From 59c1d76a4bf8696ea09072d2dbeacf70a9abe68b Mon Sep 17 00:00:00 2001 From: = <=> Date: Tue, 24 Feb 2026 21:15:27 -0500 Subject: [PATCH] initial --- Generate_Model.py | 65 + Markov.py | 41 + helpy.py | 13 + out.json | 1 + potter_sample.txt | Bin 0 -> 284842 bytes simple.txt | 0 test.json | 1 + test.txt | 2 + text/1.txt | 22748 +++++++++++ text/2.txt | 9106 +++++ text/3.txt | 4265 +++ text/4.txt | 22310 +++++++++++ text/5.txt | 12724 +++++++ text/Harry_Potter_all_books_preprocessed.txt | 1 + text/frank.txt | 7317 ++++ text/ulysses.txt | 33214 +++++++++++++++++ 16 files changed, 111808 insertions(+) create mode 100644 Generate_Model.py create mode 100644 Markov.py create mode 100644 helpy.py create mode 100644 out.json create mode 100644 potter_sample.txt create mode 100644 simple.txt create mode 100644 test.json create mode 100644 test.txt create mode 100644 text/1.txt create mode 100644 text/2.txt create mode 100644 text/3.txt create mode 100644 text/4.txt create mode 100644 text/5.txt create mode 100644 text/Harry_Potter_all_books_preprocessed.txt create mode 100644 text/frank.txt create mode 100644 text/ulysses.txt diff --git a/Generate_Model.py b/Generate_Model.py new file mode 100644 index 0000000..021683b --- /dev/null +++ b/Generate_Model.py @@ -0,0 +1,65 @@ +import json +import argparse +import os + +def get_token(file): + punct_tokens = '",.!?;:-_' + word = "" + for line in file: + for c in line: + if c.isspace(): + if word != "": yield word + word = "" + continue + if c in punct_tokens: + yield word + yield c + word = "" + else: + word += c + +def update_model(model, file): + token_stream = get_token(file) + former = next(token_stream) + current = next(token_stream) + while True: + try: + prior = next(token_stream) + except: + break + if former not in model: + model[former] = { "_count": 1 } + else: + model[former]["_count"] += 1 + if current not in model[former]: + model[former][current] = { "_count": 1 } + else: + model[former][current]["_count"] += 1 + if prior not in model[former][current]: + model[former][current][prior] = { "_count": 1 } + else: + model[former][current][prior]["_count"] += 1 + former = current + current = prior + +def main(args): + if args.model: + with open(args.model) as m_file: model = json.load(m_file) + else: + model = {} + if os.path.isdir(args.input): + files = os.listdir(args.input) + files = list(map(lambda d: f"{args.input}/{d}", files)) + else: + files = [args.input] + for f_name in files: + with open(f_name, 'r', encoding='utf-8') as file: update_model(model, file) + with open(args.out, "w") as m_file: json.dump(model, m_file) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument('input') + parser.add_argument('-m', '--model', default='') + parser.add_argument('-o', '--out', default='out.json') + main(parser.parse_args()) \ No newline at end of file diff --git a/Markov.py b/Markov.py new file mode 100644 index 0000000..466fa74 --- /dev/null +++ b/Markov.py @@ -0,0 +1,41 @@ +import random +import json +import argparse + +def select(model: dict): + m_filtered = list(filter(lambda i: i[0] != "_count", model.items())) + return random.choices( + list(map(lambda i: i[0], m_filtered)), + list(map(lambda i: i[1]["_count"], m_filtered)), + k=1 + )[0] + +def generate_token(model, former, current): + p = random.random() + if p <= 0.90: + try: + return select(model[former][current]) + except: pass + if p <= 0.98: + try: + return select(model[current]) + except: pass + return select(model) + +def main(args): + with open(args.model) as m_file: model = json.load(m_file) + former = select(model) + current = select(model[former]) + print(f"{former} {current} ", end="") + for _ in range(args.size - 2): + prior = generate_token(model, former, current) + print(prior + " ", end="") + former = current + current = prior + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument('model') + parser.add_argument('-s', '--size', default=100, type=int) + main(parser.parse_args()) \ No newline at end of file diff --git a/helpy.py b/helpy.py new file mode 100644 index 0000000..51c3a7c --- /dev/null +++ b/helpy.py @@ -0,0 +1,13 @@ +import wx + +class MainWindow(wx.Frame): + def __init__(self, parent, title): + wx.Frame.__init__(self, parent, title=title, size=(200,100)) + self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE) + self.CreateStatusBar() # A Statusbar in the bottom of the window + + self.Show(True) + +app = wx.App(False) +frame = MainWindow(None, "Sample editor") +app.MainLoop() \ No newline at end of file diff --git a/out.json b/out.json new file mode 100644 index 0000000..affe9dd --- /dev/null +++ b/out.json @@ -0,0 +1 @@ +{"THE": {"_count": 209, "BOY": {"_count": 4, "WHO": {"_count": 1}, "IS": {"_count": 2}, "": {"_count": 1}}, "VANASHIG": {"_count": 1, "GLASS": {"_count": 1}}, "LETTERS": {"_count": 1, "FROM": {"_count": 1}}, "KEEPER": {"_count": 3, "OF": {"_count": 1}, "": {"_count": 1}, "UNLESS": {"_count": 1}}, "KEYS": {"_count": 1, "BOOM": {"_count": 1}}, "JOURNEY": {"_count": 1, "FROM": {"_count": 1}}, "SORTING": {"_count": 2, "HAT": {"_count": 1}, "HATS": {"_count": 1}}, "POTIONS": {"_count": 1, "MASTER": {"_count": 1}}, "MIDNIGHT": {"_count": 1, "DUEL": {"_count": 1}}, "CHARMS": {"_count": 1, "CORRIDOR": {"_count": 1}}, "PARCEL": {"_count": 1, "AT": {"_count": 1}}, "TABLE": {"_count": 1, "": {"_count": 1}}, "MIRROR": {"_count": 1, "OF": {"_count": 1}}, "NORWEGIAN": {"_count": 1, "RIDGEBACK": {"_count": 1}}, "FORBIDDEN": {"_count": 1, "FOREST": {"_count": 1}}, "TRAPDOOR": {"_count": 1, "In": {"_count": 1}}, "MAN": {"_count": 1, "WITH": {"_count": 1}}, "WORST": {"_count": 1, "BIRTHDAY": {"_count": 1}}, "\u2018M": {"_count": 1, "WORD": {"_count": 1}}, "BURROW": {"_count": 3, "Ron": {"_count": 1}, "": {"_count": 1}, "By": {"_count": 1}}, "WHOMPING": {"_count": 1, "WILLOW": {"_count": 1}}, "CAR": {"_count": 1, "I": {"_count": 1}}, "DEATHDAY": {"_count": 1, "PARTY": {"_count": 1}}, "CHAMBER": {"_count": 2, "OF": {"_count": 2}}, "HEIR": {"_count": 2, "BEWARE": {"_count": 1}, "OF": {"_count": 1}}, "WRITING": {"_count": 1, "ON": {"_count": 1}}, "WALL": {"_count": 1, "Whats": {"_count": 1}}, "ROGUE": {"_count": 1, "BLUDGER": {"_count": 1}}, "DUELING": {"_count": 1, "CLUB": {"_count": 1}}, "POLY": {"_count": 1, "JUICE": {"_count": 1}}, "MINISTRY": {"_count": 7, "OF": {"_count": 6}, "Mr": {"_count": 1}}, "VERY": {"_count": 1, "SECRET": {"_count": 1}}, "BIRD": {"_count": 3, "": {"_count": 3}}, "KNIGHT": {"_count": 1, "BUS": {"_count": 1}}, "LEAKY": {"_count": 1, "CAULDRON": {"_count": 1}}, "FIREBOLT": {"_count": 2, "This": {"_count": 1}, "Harry": {"_count": 1}}, "DEMENTOR": {"_count": 1, "Tom": {"_count": 1}}, "BOGGART": {"_count": 1, "IN": {"_count": 1}}, "WARDROBE": {"_count": 1, "Malfoy": {"_count": 1}}, "FAT": {"_count": 1, "LADY": {"_count": 1}}, "MARAUDERS": {"_count": 2, "MAP": {"_count": 2}}, "MURDERIN": {"_count": 1, "TRAITOR": {"_count": 1}}, "PATRONUS": {"_count": 1, "Harry": {"_count": 1}}, "FLOOR": {"_count": 1, "": {"_count": 1}}, "COMMENTARY": {"_count": 1, "": {"_count": 1}}, "ENTRANCE": {"_count": 1, "HALL": {"_count": 1}}, "QUIDDITCH": {"_count": 4, "FINAL": {"_count": 1}, "WORLD": {"_count": 2}, "LEAGUE": {"_count": 1}}, "CUP": {"_count": 1, "": {"_count": 1}}, "QUAFFLE": {"_count": 3, "IS": {"_count": 1}, "IN": {"_count": 2}}, "SCORING": {"_count": 1, "AREA": {"_count": 1}}, "TIME": {"_count": 1, "": {"_count": 1}}, "SERVANT": {"_count": 1, "OF": {"_count": 1}}, "WAY": {"_count": 1, "POTTER": {"_count": 1}}, "DEMENTORS": {"_count": 2, "KISS": {"_count": 1}, "": {"_count": 1}}, "WRONG": {"_count": 1, "MAN": {"_count": 1}}, "RIDDLE": {"_count": 1, "HOUSE": {"_count": 1}}, "SCAR": {"_count": 1, "Harry": {"_count": 1}}, "INVITATION": {"_count": 1, "By": {"_count": 1}}, "TICKETS": {"_count": 1, "Ireland": {"_count": 1}}, "PORTKEY": {"_count": 1, "Harry": {"_count": 1}}, "SALEM": {"_count": 1, "WITCHES": {"_count": 1}}, "SNITCH": {"_count": 1, "BUT": {"_count": 1}}, "DARK": {"_count": 3, "MARK": {"_count": 1}, "ARTS": {"_count": 1}, "LORD": {"_count": 1}}, "HOGWARTS": {"_count": 4, "EXPRESS": {"_count": 1}, "HIGH": {"_count": 2}, "GOBSTONES": {"_count": 1}}, "TRIWIZARD": {"_count": 1, "TOURNAMENT": {"_count": 1}}, "UNFORGIVABLE": {"_count": 1, "CURSES": {"_count": 1}}, "GOBLET": {"_count": 1, "OF": {"_count": 1}}, "FOUR": {"_count": 1, "CHAMPIONS": {"_count": 1}}, "WEIGHING": {"_count": 1, "OF": {"_count": 1}}, "WANDS": {"_count": 1, "When": {"_count": 1}}, "HUNGARIAN": {"_count": 1, "HORNTAIL": {"_count": 1}}, "FIRST": {"_count": 1, "TASK": {"_count": 1}}, "HOUSEELF": {"_count": 1, "LIBERATION": {"_count": 1}}, "UNEXPECTED": {"_count": 1, "TASK": {"_count": 1}}, "YULE": {"_count": 1, "BALL": {"_count": 1}}, "EGG": {"_count": 1, "AND": {"_count": 1}}, "EYE": {"_count": 2, "As": {"_count": 1}, "OF": {"_count": 1}}, "SECOND": {"_count": 2, "TASK": {"_count": 1}, "WAR": {"_count": 1}}, "MADNESS": {"_count": 1, "OF": {"_count": 1}}, "DREAM": {"_count": 1, "It": {"_count": 1}}, "PENSIEVE": {"_count": 1, "The": {"_count": 1}}, "THIRD": {"_count": 1, "TASK": {"_count": 1}}, "DEATH": {"_count": 2, "EATERS": {"_count": 1}, "OF": {"_count": 1}}, "PARTING": {"_count": 1, "OF": {"_count": 1}}, "WAYS": {"_count": 1, "Dumbledore": {"_count": 1}}, "BEGINNING": {"_count": 1, "When": {"_count": 1}}, "ADVANCED": {"_count": 1, "GUARD": {"_count": 1}}, "MEETINGS": {"_count": 1, "BIG": {"_count": 1}}, "DURSLEYS": {"_count": 2, "FOR": {"_count": 1}, "DEPARTING": {"_count": 1}}, "SORCERERS": {"_count": 1, "STONE": {"_count": 1}}, "ORDER": {"_count": 1, "OF": {"_count": 1}}, "PHOENIX": {"_count": 2, "Your": {"_count": 1}, "LAMENT": {"_count": 1}}, "NOBLE": {"_count": 2, "AND": {"_count": 2}}, "HOUSE": {"_count": 3, "The": {"_count": 1}, "OF": {"_count": 2}}, "HEARING": {"_count": 1, "Harry": {"_count": 1}}, "WOES": {"_count": 1, "OF": {"_count": 1}}, "ANCIENT": {"_count": 1, "RUNES": {"_count": 1}}, "HOGS": {"_count": 1, "HEAD": {"_count": 1}}, "HIGH": {"_count": 3, "INQUISITOR": {"_count": 3}}, "LION": {"_count": 1, "AND": {"_count": 1}}, "SERPENT": {"_count": 1, "Harry": {"_count": 1}}, "SNAKE": {"_count": 1, "Hermione": {"_count": 1}}, "ENTRAIL": {"_count": 1, "EXPELLING": {"_count": 1}}, "CLOSED": {"_count": 1, "WARD": {"_count": 1}}, "GENERAL": {"_count": 1, "IDEA": {"_count": 1}}, "BEETLE": {"_count": 1, "AT": {"_count": 1}}, "TRUTH": {"_count": 2, "ABOUT": {"_count": 1}, "AT": {"_count": 1}}, "NIGHT": {"_count": 1, "I": {"_count": 1}}, "CENTAUR": {"_count": 1, "AND": {"_count": 1}}, "SNEAK": {"_count": 1, "Ill": {"_count": 1}}, "DEPARTMENT": {"_count": 2, "OF": {"_count": 2}}, "FIRE": {"_count": 1, "Im": {"_count": 1}}, "VEIL": {"_count": 1, "Black": {"_count": 1}}, "PROPHECY": {"_count": 2, "": {"_count": 2}}, "ONLY": {"_count": 1, "ONE": {"_count": 1}}, "LOST": {"_count": 2, "PROPHECY": {"_count": 1}, "DIADEM": {"_count": 1}}, "WEIRD": {"_count": 1, "SISTERS": {"_count": 1}}, "OTHER": {"_count": 1, "MINISTER": {"_count": 1}}, "CHOSEN": {"_count": 1, "ONE": {"_count": 1}}, "CONSTIPATION": {"_count": 1, "SENSATION": {"_count": 1}}, "NATION": {"_count": 1, "": {"_count": 1}}, "SLUG": {"_count": 1, "CLUB": {"_count": 1}}, "HALFBLOOD": {"_count": 1, "PRINCE": {"_count": 1}}, "SECRET": {"_count": 1, "RIDDLE": {"_count": 1}}, "UNBREAKABLE": {"_count": 1, "VOW": {"_count": 1}}, "UNKNOWABLE": {"_count": 1, "ROOM": {"_count": 1}}, "BURIAL": {"_count": 1, "Patches": {"_count": 1}}, "BATHROOM": {"_count": 1, "": {"_count": 1}}, "SEER": {"_count": 1, "OVERHEARD": {"_count": 1}}, "CAVE": {"_count": 1, "Harry": {"_count": 1}}, "LIGHTNINGSTRUCK": {"_count": 1, "TOWER": {"_count": 1}}, "PRINCE": {"_count": 1, "Harry": {"_count": 1}}, "WHITE": {"_count": 1, "TOMB": {"_count": 1}}, "SEVEN": {"_count": 1, "POTTERS": {"_count": 1}}, "GHOUL": {"_count": 1, "IN": {"_count": 1}}, "WILL": {"_count": 1, "OF": {"_count": 1}}, "WEDDING": {"_count": 1, "Three": {"_count": 1}}, "BRIBE": {"_count": 1, "If": {"_count": 1}}, "UPCOMING": {"_count": 1, "BIOGRAPHY": {"_count": 1}}, "MUGGLEBORN": {"_count": 2, "REGISTRATION": {"_count": 2}}, "MINISTER": {"_count": 1, "Below": {"_count": 1}}, "THIEF": {"_count": 1, "Harry": {"_count": 1}}, "GOBLINS": {"_count": 1, "REVENGE": {"_count": 1}}, "LIFE": {"_count": 1, "AND": {"_count": 1}}, "MUGGLES": {"_count": 1, "OWN": {"_count": 1}}, "GREATER": {"_count": 2, "GOOD": {"_count": 2}}, "SILVER": {"_count": 1, "DOE": {"_count": 1}}, "QUIBBLER": {"_count": 1, "": {"_count": 1}}, "DIRIGIBLE": {"_count": 1, "PLUMS": {"_count": 1}}, "TALE": {"_count": 1, "OF": {"_count": 1}}, "THREE": {"_count": 1, "BROTHERS": {"_count": 1}}, "DEATHLY": {"_count": 1, "HALLOWS": {"_count": 1}}, "WANDMAKER": {"_count": 1, "It": {"_count": 1}}, "FINAL": {"_count": 1, "HIDING": {"_count": 1}}, "MISSING": {"_count": 1, "MIRROR": {"_count": 1}}, "SACKING": {"_count": 1, "OF": {"_count": 1}}, "BATTLE": {"_count": 1, "OF": {"_count": 1}}, "ELDER": {"_count": 1, "WAND": {"_count": 1}}, "PRINCES": {"_count": 1, "TALE": {"_count": 1}}, "FOREST": {"_count": 1, "AGAIN": {"_count": 1}}, "FLAW": {"_count": 1, "IN": {"_count": 1}}, "PLAN": {"_count": 1, "He": {"_count": 1}}}, "BOY": {"_count": 8, "WHO": {"_count": 1, "LIVED": {"_count": 1}}, "IS": {"_count": 2, "BEHIND": {"_count": 2}}, "": {"_count": 4, "!": {"_count": 4}}, "GRAWPY": {"_count": 1, "": {"_count": 1}}}, "WHO": {"_count": 9, "LIVED": {"_count": 1, "Mr": {"_count": 1}}, "IS": {"_count": 1, "THIS": {"_count": 1}}, "ARE": {"_count": 1, "YOU": {"_count": 1}}, "SAVED": {"_count": 2, "THE": {"_count": 1}, "BOTH": {"_count": 1}}, "GOT": {"_count": 1, "RID": {"_count": 1}}, "HAD": {"_count": 2, "TO": {"_count": 2}}, "SAW": {"_count": 1, "HIM": {"_count": 1}}}, "LIVED": {"_count": 1, "Mr": {"_count": 1, "and": {"_count": 1}}}, "Mr": {"_count": 1279, "and": {"_count": 49, "Mrs": {"_count": 49}}, "Dursley": {"_count": 31, "was": {"_count": 2}, "hummed": {"_count": 1}, "picked": {"_count": 1}, "as": {"_count": 1}, "didnt": {"_count": 1}, "blinked": {"_count": 1}, "drove": {"_count": 1}, "gave": {"_count": 1}, "couldnt": {"_count": 1}, "that": {"_count": 1}, "arrived": {"_count": 1}, "always": {"_count": 1}, "however": {"_count": 1}, "stopped": {"_count": 1}, "realized": {"_count": 1}, "around": {"_count": 1}, "stood": {"_count": 1}, "loudly": {"_count": 1}, "wondered": {"_count": 2}, "tried": {"_count": 1}, "sat": {"_count": 1}, "mumbled": {"_count": 1}, "his": {"_count": 1}, "crept": {"_count": 1}, "lay": {"_count": 1}, "might": {"_count": 1}, "had": {"_count": 1}, "jumped": {"_count": 1}, "": {"_count": 1}}, "Paws": {"_count": 1, "and": {"_count": 1}}, "H": {"_count": 4, "": {"_count": 4}}, "Potter": {"_count": 58, "We": {"_count": 3}, "welcome": {"_count": 1}, "cant": {"_count": 1}, "Im": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 25}, "I": {"_count": 3}, "do": {"_count": 1}, "Mr": {"_count": 2}, "Please": {"_count": 1}, "he": {"_count": 1}, "dont": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "Further": {"_count": 1}, "not": {"_count": 1}, "dear": {"_count": 1}, "said": {"_count": 4}, "she": {"_count": 2}, "let": {"_count": 1}, "has": {"_count": 1}, "false": {"_count": 1}, "whatever": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 3, "Potters": {"_count": 1}, "Potter": {"_count": 2}}, "Ollivander": {"_count": 53, "moved": {"_count": 1}, "had": {"_count": 4}, "touched": {"_count": 1}, "suddenly": {"_count": 1}, "sharply": {"_count": 1}, "giving": {"_count": 1}, "was": {"_count": 2}, "snatched": {"_count": 1}, "": {"_count": 7}, "pulled": {"_count": 1}, "cried": {"_count": 1}, "fixed": {"_count": 1}, "too": {"_count": 1}, "bowed": {"_count": 1}, "before": {"_count": 1}, "stepping": {"_count": 1}, "and": {"_count": 2}, "yes": {"_count": 1}, "ran": {"_count": 1}, "scooping": {"_count": 1}, "with": {"_count": 1}, "sent": {"_count": 1}, "this": {"_count": 1}, "handing": {"_count": 1}, "his": {"_count": 1}, "explained": {"_count": 1}, "wasnt": {"_count": 1}, "spent": {"_count": 1}, "wrote": {"_count": 1}, "have": {"_count": 1}, "has": {"_count": 1}, "who": {"_count": 1}, "Im": {"_count": 1}, "I": {"_count": 1}, "intervened": {"_count": 1}, "said": {"_count": 3}, "one": {"_count": 1}, "leaves": {"_count": 1}, "down": {"_count": 1}, "could": {"_count": 1}}, "Filch": {"_count": 20, "the": {"_count": 3}, "says": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}, "wont": {"_count": 1}, "at": {"_count": 1}, "restore": {"_count": 1}, "many": {"_count": 1}, "s": {"_count": 1}, "": {"_count": 2}, "has": {"_count": 2}, "is": {"_count": 1}, "having": {"_count": 1}, "our": {"_count": 1}, "would": {"_count": 1}, "and": {"_count": 1}}, "Weasley": {"_count": 557, "": {"_count": 78}, "was": {"_count": 34}, "took": {"_count": 4}, "blinked": {"_count": 2}, "blankly": {"_count": 2}, "eagerly": {"_count": 2}, "liked": {"_count": 1}, "passing": {"_count": 1}, "helping": {"_count": 1}, "panted": {"_count": 1}, "sharply": {"_count": 1}, "with": {"_count": 10}, "indignantly": {"_count": 1}, "delightedly": {"_count": 1}, "struggling": {"_count": 1}, "nodding": {"_count": 1}, "flushed": {"_count": 1}, "had": {"_count": 23}, "and": {"_count": 25}, "off": {"_count": 1}, "started": {"_count": 2}, "nearly": {"_count": 1}, "glanced": {"_count": 1}, "dashed": {"_count": 1}, "went": {"_count": 1}, "owned": {"_count": 1}, "said": {"_count": 17}, "Miss": {"_count": 2}, "he": {"_count": 3}, "in": {"_count": 7}, "flabbergasted": {"_count": 1}, "followed": {"_count": 1}, "told": {"_count": 2}, "six": {"_count": 1}, "who": {"_count": 15}, "sitting": {"_count": 2}, "put": {"_count": 2}, "looking": {"_count": 9}, "heavily": {"_count": 2}, "wearily": {"_count": 2}, "marched": {"_count": 1}, "glancing": {"_count": 1}, "kept": {"_count": 6}, "strolled": {"_count": 1}, "quietly": {"_count": 6}, "flinched": {"_count": 1}, "but": {"_count": 7}, "talking": {"_count": 1}, "works": {"_count": 1}, "say": {"_count": 1}, "Cornelius": {"_count": 1}, "drove": {"_count": 1}, "even": {"_count": 2}, "its": {"_count": 1}, "vaguely": {"_count": 1}, "Fred": {"_count": 4}, "brushing": {"_count": 1}, "lowering": {"_count": 1}, "thunderstruck": {"_count": 1}, "brightly": {"_count": 4}, "swinging": {"_count": 1}, "might": {"_count": 1}, "taking": {"_count": 3}, "however": {"_count": 1}, "thought": {"_count": 1}, "felt": {"_count": 1}, "pointing": {"_count": 2}, "you": {"_count": 2}, "alone": {"_count": 1}, "did": {"_count": 4}, "desperately": {"_count": 1}, "angrily": {"_count": 3}, "shouted": {"_count": 3}, "blasting": {"_count": 1}, "appeared": {"_count": 1}, "hesitated": {"_count": 1}, "eyed": {"_count": 1}, "mildly": {"_count": 1}, "frowning": {"_count": 2}, "conjured": {"_count": 1}, "tucking": {"_count": 1}, "now": {"_count": 1}, "matteroffactly": {"_count": 1}, "smiling": {"_count": 6}, "on": {"_count": 2}, "as": {"_count": 5}, "pointed": {"_count": 1}, "replacing": {"_count": 1}, "quickly": {"_count": 3}, "one": {"_count": 1}, "Mr": {"_count": 1}, "picking": {"_count": 1}, "returned": {"_count": 1}, "puzzled": {"_count": 1}, "closely": {"_count": 1}, "nervously": {"_count": 1}, "his": {"_count": 3}, "anxiously": {"_count": 1}, "Been": {"_count": 1}, "happily": {"_count": 1}, "dropped": {"_count": 3}, "mopping": {"_count": 1}, "handed": {"_count": 1}, "cordially": {"_count": 1}, "jumped": {"_count": 1}, "grinning": {"_count": 1}, "continued": {"_count": 1}, "under": {"_count": 1}, "looked": {"_count": 6}, "asked": {"_count": 3}, "suggested": {"_count": 1}, "heaved": {"_count": 1}, "spotting": {"_count": 1}, "were": {"_count": 1}, "leaning": {"_count": 1}, "over": {"_count": 3}, "implored": {"_count": 1}, "agreed": {"_count": 1}, "got": {"_count": 1}, "called": {"_count": 2}, "sleepily": {"_count": 1}, "right": {"_count": 1}, "tore": {"_count": 1}, "striding": {"_count": 1}, "very": {"_count": 1}, "loudly": {"_count": 3}, "tensely": {"_count": 1}, "coming": {"_count": 1}, "impatiently": {"_count": 1}, "bending": {"_count": 2}, "explained": {"_count": 2}, "winced": {"_count": 1}, "woke": {"_count": 1}, "soothingly": {"_count": 1}, "insisted": {"_count": 1}, "scanned": {"_count": 1}, "nor": {"_count": 1}, "came": {"_count": 2}, "irritably": {"_count": 1}, "unscrewing": {"_count": 1}, "scribbling": {"_count": 1}, "groaned": {"_count": 1}, "still": {"_count": 3}, "calling": {"_count": 1}, "to": {"_count": 2}, "vanished": {"_count": 1}, "appears": {"_count": 1}, "found": {"_count": 1}, "while": {"_count": 2}, "Bill": {"_count": 2}, "shaking": {"_count": 1}, "Sirius": {"_count": 1}, "shortly": {"_count": 2}, "smiled": {"_count": 1}, "checked": {"_count": 1}, "upstairs": {"_count": 1}, "unbolted": {"_count": 1}, "beaming": {"_count": 1}, "delighted": {"_count": 1}, "folded": {"_count": 1}, "reached": {"_count": 1}, "I": {"_count": 1}, "holding": {"_count": 1}, "clearly": {"_count": 1}, "stepped": {"_count": 1}, "gesturing": {"_count": 1}, "firmly": {"_count": 3}, "through": {"_count": 1}, "joined": {"_count": 1}, "moved": {"_count": 1}, "muttered": {"_count": 1}, "Harry": {"_count": 1}, "those": {"_count": 1}, "Im": {"_count": 2}, "stood": {"_count": 1}, "shoving": {"_count": 1}, "coolly": {"_count": 1}, "apologetically": {"_count": 1}, "rifled": {"_count": 1}, "unfolded": {"_count": 1}, "left": {"_count": 2}, "skidded": {"_count": 1}, "cursed": {"_count": 1}, "seized": {"_count": 2}, "stumbled": {"_count": 1}, "broke": {"_count": 3}, "wonderingly": {"_count": 1}, "gripped": {"_count": 1}, "curtly": {"_count": 1}, "though": {"_count": 2}, "when": {"_count": 2}, "emerged": {"_count": 1}, "here": {"_count": 1}, "has": {"_count": 1}, "could": {"_count": 2}, "wasnt": {"_count": 1}, "something": {"_count": 1}, "cheerfully": {"_count": 1}, "reminded": {"_count": 1}, "sadly": {"_count": 1}, "grimly": {"_count": 1}, "last": {"_count": 1}, "another": {"_count": 1}, "propped": {"_count": 1}, "a": {"_count": 1}, "airily": {"_count": 1}, "imploringly": {"_count": 1}, "walking": {"_count": 1}, "the": {"_count": 1}, "again": {"_count": 1}, "meekly": {"_count": 1}, "back": {"_count": 1}, "their": {"_count": 1}, "genially": {"_count": 1}, "led": {"_count": 2}, "or": {"_count": 1}, "turning": {"_count": 1}, "pleasantly": {"_count": 1}, "turned": {"_count": 2}, "brought": {"_count": 1}, "looks": {"_count": 1}, "glaring": {"_count": 1}, "she": {"_count": 1}, "can": {"_count": 1}, "exploding": {"_count": 1}, "forestalled": {"_count": 1}, "sounding": {"_count": 1}, "slowly": {"_count": 1}, "whose": {"_count": 1}, "at": {"_count": 1}, "everything": {"_count": 1}, "that": {"_count": 1}, "bustled": {"_count": 1}, "opened": {"_count": 1}, "Vernon": {"_count": 1}, "kindfaced": {"_count": 1}, "shout": {"_count": 1}, "Kingsley": {"_count": 1}, "replied": {"_count": 1}, "gave": {"_count": 2}, "exchange": {"_count": 1}, "normally": {"_count": 1}, "examined": {"_count": 1}, "repaired": {"_count": 1}, "walked": {"_count": 1}, "glare": {"_count": 1}, "fiercely": {"_count": 1}, "stroking": {"_count": 1}}, "Nicolas": {"_count": 1, "Flamel": {"_count": 1}}, "Flamel": {"_count": 1, "who": {"_count": 1}}, "Longbottom": {"_count": 2, "nothing": {"_count": 1}, "": {"_count": 1}}, "Baron": {"_count": 1, "sir": {"_count": 1}}, "Ronald": {"_count": 4, "Weasley": {"_count": 4}}, "Malfoy": {"_count": 62, "": {"_count": 12}, "crossed": {"_count": 1}, "with": {"_count": 2}, "what": {"_count": 1}, "taking": {"_count": 1}, "coldly": {"_count": 1}, "more": {"_count": 1}, "his": {"_count": 2}, "shortly": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 2}, "knocking": {"_count": 1}, "apart": {"_count": 1}, "had": {"_count": 3}, "come": {"_count": 1}, "told": {"_count": 1}, "smoothly": {"_count": 1}, "almost": {"_count": 1}, "s": {"_count": 1}, "went": {"_count": 1}, "sharply": {"_count": 1}, "closely": {"_count": 1}, "and": {"_count": 1}, "slowly": {"_count": 1}, "straight": {"_count": 1}, "shot": {"_count": 1}, "forced": {"_count": 1}, "please": {"_count": 1}, "he": {"_count": 1}, "ripped": {"_count": 1}, "was": {"_count": 2}, "quite": {"_count": 1}, "has": {"_count": 1}, "states": {"_count": 1}, "then": {"_count": 1}, "down": {"_count": 1}, "holding": {"_count": 1}, "looked": {"_count": 1}, "didnt": {"_count": 1}, "into": {"_count": 1}, "stopped": {"_count": 1}, "raising": {"_count": 1}, "as": {"_count": 1}, "purely": {"_count": 1}, "interjected": {"_count": 1}}, "Neville": {"_count": 1, "Longbottom": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "Mason": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "stayed": {"_count": 1}}, "Weasleys": {"_count": 42, "eyes": {"_count": 1}, "car": {"_count": 3}, "resignation": {"_count": 1}, "ears": {"_count": 1}, "voice": {"_count": 3}, "wand": {"_count": 1}, "party": {"_count": 1}, "neck": {"_count": 1}, "which": {"_count": 1}, "hand": {"_count": 4}, "hands": {"_count": 1}, "continual": {"_count": 1}, "dingy": {"_count": 1}, "obsessions": {"_count": 1}, "overflowing": {"_count": 1}, "mouth": {"_count": 1}, "face": {"_count": 1}, "shoulder": {"_count": 2}, "head": {"_count": 1}, "body": {"_count": 1}, "lifeless": {"_count": 1}, "answer": {"_count": 1}, "ward": {"_count": 1}, "weary": {"_count": 1}, "look": {"_count": 1}, "birthday": {"_count": 1}, "vests": {"_count": 1}, "old": {"_count": 1}, "Patronus": {"_count": 1}, "file": {"_count": 1}, "folder": {"_count": 1}, "arm": {"_count": 1}, "anger": {"_count": 1}, "": {"_count": 1}}, "Borgin": {"_count": 18, "": {"_count": 4}, "in": {"_count": 2}, "but": {"_count": 1}, "s": {"_count": 1}, "to": {"_count": 1}, "fixed": {"_count": 1}, "abandoning": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "dropped": {"_count": 1}, "disappeared": {"_count": 1}, "an": {"_count": 1}, "coldly": {"_count": 1}, "squinted": {"_count": 1}}, "Malfoys": {"_count": 6, "lip": {"_count": 2}, "list": {"_count": 1}, "white": {"_count": 1}, "cold": {"_count": 1}, "eyes": {"_count": 1}}, "Grangers": {"_count": 1, "hand": {"_count": 1}}, "Angus": {"_count": 1, "Fleet": {"_count": 1}}, "Creevey": {"_count": 1, "said": {"_count": 1}}, "Lucius": {"_count": 4, "Malfoy": {"_count": 4}}, "Hagrid": {"_count": 1, "Further": {"_count": 1}}, "Filchs": {"_count": 2, "filing": {"_count": 1}, "office": {"_count": 1}}, "Moony": {"_count": 2, "presents": {"_count": 1}, "and": {"_count": 1}}, "Prongs": {"_count": 1, "agrees": {"_count": 1}}, "Padfoot": {"_count": 1, "would": {"_count": 1}}, "Wormtail": {"_count": 2, "bids": {"_count": 1}, "or": {"_count": 1}}, "Black": {"_count": 1, "Sirius": {"_count": 1}}, "or": {"_count": 1, "Mrs": {"_count": 1}}, "Crouch": {"_count": 153, "": {"_count": 47}, "is": {"_count": 10}, "was": {"_count": 5}, "that": {"_count": 2}, "losing": {"_count": 1}, "has": {"_count": 3}, "had": {"_count": 5}, "looking": {"_count": 1}, "his": {"_count": 2}, "accepting": {"_count": 1}, "dryly": {"_count": 1}, "raised": {"_count": 1}, "sharply": {"_count": 2}, "made": {"_count": 1}, "turning": {"_count": 1}, "seemed": {"_count": 2}, "sounding": {"_count": 1}, "did": {"_count": 3}, "Mr": {"_count": 1}, "still": {"_count": 1}, "I": {"_count": 2}, "cold": {"_count": 1}, "shouted": {"_count": 1}, "curtly": {"_count": 1}, "added": {"_count": 1}, "her": {"_count": 1}, "stared": {"_count": 1}, "took": {"_count": 1}, "will": {"_count": 2}, "deserves": {"_count": 1}, "Percys": {"_count": 1}, "have": {"_count": 1}, "and": {"_count": 3}, "however": {"_count": 1}, "Professor": {"_count": 1}, "who": {"_count": 4}, "turned": {"_count": 2}, "with": {"_count": 1}, "came": {"_count": 1}, "anymore": {"_count": 1}, "what": {"_count": 1}, "Harry": {"_count": 1}, "isnt": {"_count": 1}, "suffered": {"_count": 1}, "to": {"_count": 2}, "Harrys": {"_count": 1}, "wanted": {"_count": 1}, "thinks": {"_count": 1}, "been": {"_count": 1}, "breaking": {"_count": 1}, "lately": {"_count": 1}, "might": {"_count": 1}, "appeared": {"_count": 1}, "we": {"_count": 1}, "breathed": {"_count": 1}, "said": {"_count": 1}, "say": {"_count": 1}, "coming": {"_count": 1}, "or": {"_count": 1}, "attacked": {"_count": 1}, "evaporated": {"_count": 1}, "actually": {"_count": 1}, "standing": {"_count": 1}, "nodding": {"_count": 1}, "looked": {"_count": 2}, "coldly": {"_count": 1}, "spat": {"_count": 1}, "but": {"_count": 1}, "of": {"_count": 1}, "too": {"_count": 1}, "would": {"_count": 1}, "as": {"_count": 1}}, "Diggory": {"_count": 41, "": {"_count": 7}, "and": {"_count": 3}, "squared": {"_count": 1}, "shout": {"_count": 1}, "reemerged": {"_count": 1}, "deposited": {"_count": 1}, "called": {"_count": 1}, "said": {"_count": 1}, "held": {"_count": 1}, "but": {"_count": 2}, "seemed": {"_count": 1}, "sternly": {"_count": 1}, "brandishing": {"_count": 1}, "incredulously": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 1}, "looking": {"_count": 2}, "raised": {"_count": 1}, "shouted": {"_count": 1}, "with": {"_count": 1}, "roared": {"_count": 1}, "impatiently": {"_count": 1}, "to": {"_count": 1}, "looked": {"_count": 2}, "handed": {"_count": 1}, "calling": {"_count": 1}, "you": {"_count": 1}, "do": {"_count": 1}, "youre": {"_count": 1}, "sobbed": {"_count": 1}}, "Roberts": {"_count": 18, "": {"_count": 6}, "consulting": {"_count": 1}, "trying": {"_count": 1}, "as": {"_count": 1}, "scrutinizing": {"_count": 1}, "rummaged": {"_count": 1}, "didnt": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "had": {"_count": 1}}, "Payne": {"_count": 1, "": {"_count": 1}}, "Robertss": {"_count": 2, "front": {"_count": 1}, "eyes": {"_count": 1}}, "Bagman": {"_count": 20, "was": {"_count": 1}, "rubbish": {"_count": 1}, "is": {"_count": 3}, "and": {"_count": 1}, "said": {"_count": 4}, "wants": {"_count": 1}, "are": {"_count": 1}, "comes": {"_count": 1}, "": {"_count": 3}, "will": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 1}, "down": {"_count": 1}}, "Oblansk": {"_count": 1, "Obalonsk": {"_count": 1}}, "well": {"_count": 1, "hes": {"_count": 1}}, "Crouchs": {"_count": 12, "face": {"_count": 1}, "feet": {"_count": 2}, "elf": {"_count": 1}, "position": {"_count": 1}, "personal": {"_count": 1}, "fury": {"_count": 1}, "eyes": {"_count": 2}, "voice": {"_count": 1}, "son": {"_count": 1}, "disappearance": {"_count": 1}}, "Diggorys": {"_count": 6, "feet": {"_count": 1}, "head": {"_count": 4}, "mouth": {"_count": 1}}, "Moody": {"_count": 2, "s": {"_count": 1}, "had": {"_count": 1}}, "Bartemius": {"_count": 1, "Crouch": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "Summers": {"_count": 1, "of": {"_count": 1}}, "Krum": {"_count": 4, "if": {"_count": 1}, "": {"_count": 2}, "will": {"_count": 1}}, "Ollivanders": {"_count": 1, "shop": {"_count": 1}}, "Potters": {"_count": 1, "score": {"_count": 1}}, "Fudge": {"_count": 5, "arrived": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "Cedric": {"_count": 1, "Diggory": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "Goyle": {"_count": 1, "s": {"_count": 1}}, "Tibbies": {"_count": 3, "on": {"_count": 1}, "under": {"_count": 1}, "came": {"_count": 1}}, "Prentice": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Thomas": {"_count": 2, "": {"_count": 2}}, "ThomasY": {"_count": 1, "trilled": {"_count": 1}}, "PotteryouhavealreadylostyourHouseten": {"_count": 1, "pointsdonotmakemattersworseforyourself": {"_count": 1}}, "Slinkhard": {"_count": 2, "doesnt": {"_count": 1}, "s": {"_count": 1}}, "Finnigan": {"_count": 3, "kindly": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "Bode": {"_count": 5, "he": {"_count": 1}, "who": {"_count": 1}, "whose": {"_count": 1}, "to": {"_count": 1}, "throttled": {"_count": 1}}, "Bodes": {"_count": 2, "ward": {"_count": 1}, "bedside": {"_count": 1}}, "Gaunt": {"_count": 12, "": {"_count": 4}, "spoke": {"_count": 1}, "said": {"_count": 4}, "please": {"_count": 1}, "Ogden": {"_count": 1}, "your": {"_count": 1}}, "Shunpike": {"_count": 1, "21": {"_count": 1}}, "Dumberton": {"_count": 1, "sorry": {"_count": 1}}, "Burke": {"_count": 5, "would": {"_count": 1}, "wishes": {"_count": 1}, "phooey": {"_count": 1}, "": {"_count": 1}, "Ive": {"_count": 1}}, "Riddle": {"_count": 1, "our": {"_count": 1}}, "Tonks": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "Lovegood": {"_count": 19, "seizing": {"_count": 1}, "": {"_count": 7}, "wants": {"_count": 1}, "said": {"_count": 2}, "whats": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}, "Ive": {"_count": 1}, "how": {"_count": 1}, "Hermione": {"_count": 1}, "does": {"_count": 1}, "could": {"_count": 1}}, "Doge": {"_count": 2, "Im": {"_count": 1}, "": {"_count": 1}}, "Magical": {"_count": 1, "Maintenance": {"_count": 1}}, "Cattermole": {"_count": 1, "had": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Brilliant": {"_count": 1, "theres": {"_count": 1}}}, "and": {"_count": 25685, "Mrs": {"_count": 83, "Dursley": {"_count": 5}, "Figg": {"_count": 2}, "Weasley": {"_count": 53}, "Norris": {"_count": 3}, "Mason": {"_count": 2}, "Granger": {"_count": 3}, "Weasleys": {"_count": 4}, "Riddle": {"_count": 1}, "Fudge": {"_count": 1}, "Longbottom": {"_count": 1}, "Diggory": {"_count": 1}, "Potters": {"_count": 1}, "Blacks": {"_count": 1}, "Black": {"_count": 2}, "Montague": {"_count": 1}, "Cole": {"_count": 1}, "Cattermole": {"_count": 1}}, "blonde": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 73, "nearly": {"_count": 1}, "almost": {"_count": 1}, "you": {"_count": 1}, "to": {"_count": 9}, "little": {"_count": 2}, "no": {"_count": 4}, "suffered": {"_count": 1}, "halfforgotten": {"_count": 1}, "hoped": {"_count": 1}, "apparently": {"_count": 1}, "waited": {"_count": 2}, "agreed": {"_count": 1}, "been": {"_count": 2}, "concluded": {"_count": 2}, "them": {"_count": 1}, "a": {"_count": 5}, "started": {"_count": 2}, "he": {"_count": 1}, "made": {"_count": 1}, "once": {"_count": 1}, "arranged": {"_count": 1}, "certainly": {"_count": 1}, "many": {"_count": 1}, "soon": {"_count": 1}, "come": {"_count": 1}, "already": {"_count": 1}, "not": {"_count": 2}, "Snapes": {"_count": 1}, "dragged": {"_count": 1}, "mended": {"_count": 1}, "shown": {"_count": 1}, "just": {"_count": 2}, "finally": {"_count": 1}, "only": {"_count": 1}, "written": {"_count": 1}, "Snape": {"_count": 1}, "soot": {"_count": 1}, "undoubtedly": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}, "identical": {"_count": 1}, "received": {"_count": 1}, "certain": {"_count": 1}, "never": {"_count": 1}, "practiced": {"_count": 1}, "followed": {"_count": 1}, "asked": {"_count": 1}, "tried": {"_count": 1}, "decided": {"_count": 1}, "stood": {"_count": 1}}, "in": {"_count": 84, "their": {"_count": 1}, "the": {"_count": 29}, "a": {"_count": 12}, "Harrys": {"_count": 2}, "came": {"_count": 2}, "what": {"_count": 1}, "pride": {"_count": 1}, "March": {"_count": 1}, "those": {"_count": 1}, "an": {"_count": 2}, "any": {"_count": 7}, "seconds": {"_count": 1}, "both": {"_count": 1}, "observing": {"_count": 1}, "its": {"_count": 1}, "his": {"_count": 3}, "full": {"_count": 1}, "her": {"_count": 1}, "doing": {"_count": 2}, "marking": {"_count": 1}, "desperate": {"_count": 1}, "front": {"_count": 2}, "two": {"_count": 1}, "silence": {"_count": 1}, "case": {"_count": 1}, "golden": {"_count": 1}, "danger": {"_count": 1}, "one": {"_count": 1}, "that": {"_count": 2}, "ways": {"_count": 1}, "some": {"_count": 1}}, "their": {"_count": 59, "greatest": {"_count": 1}, "kind": {"_count": 1}, "younger": {"_count": 1}, "sister": {"_count": 1}, "potion": {"_count": 1}, "flushed": {"_count": 1}, "flimsy": {"_count": 1}, "later": {"_count": 1}, "expression": {"_count": 1}, "son": {"_count": 2}, "three": {"_count": 1}, "styles": {"_count": 1}, "Houses": {"_count": 1}, "markings": {"_count": 1}, "bodies": {"_count": 2}, "grownup": {"_count": 1}, "graves": {"_count": 1}, "faces": {"_count": 1}, "wands": {"_count": 1}, "admirers": {"_count": 1}, "suckers": {"_count": 1}, "partners": {"_count": 5}, "gardens": {"_count": 1}, "pleasures": {"_count": 1}, "freedom": {"_count": 1}, "teeth": {"_count": 1}, "families": {"_count": 2}, "pupilless": {"_count": 1}, "founders": {"_count": 1}, "copies": {"_count": 1}, "eyes": {"_count": 1}, "visitors": {"_count": 1}, "sanity": {"_count": 1}, "usual": {"_count": 1}, "moons": {"_count": 1}, "wand": {"_count": 1}, "ghostly": {"_count": 1}, "guests": {"_count": 1}, "punishments": {"_count": 1}, "icy": {"_count": 1}, "fathers": {"_count": 1}, "front": {"_count": 1}, "obsession": {"_count": 1}, "arms": {"_count": 1}, "clothing": {"_count": 1}, "scabbed": {"_count": 1}, "expressions": {"_count": 1}, "breath": {"_count": 1}, "presence": {"_count": 1}, "tramping": {"_count": 1}, "cries": {"_count": 1}, "guide": {"_count": 1}}, "her": {"_count": 113, "goodfornothing": {"_count": 1}, "mother": {"_count": 2}, "glasses": {"_count": 1}, "bad": {"_count": 1}, "eyes": {"_count": 14}, "husband": {"_count": 3}, "tea": {"_count": 1}, "fingernails": {"_count": 1}, "writings": {"_count": 1}, "heavy": {"_count": 1}, "mouth": {"_count": 3}, "soul": {"_count": 1}, "hands": {"_count": 2}, "memory": {"_count": 1}, "arms": {"_count": 1}, "lip": {"_count": 1}, "students": {"_count": 1}, "gigantic": {"_count": 1}, "gang": {"_count": 1}, "photographer": {"_count": 1}, "hand": {"_count": 1}, "skirt": {"_count": 1}, "crocodileskin": {"_count": 1}, "friend": {"_count": 6}, "face": {"_count": 5}, "voice": {"_count": 8}, "sister": {"_count": 3}, "robes": {"_count": 2}, "fellow": {"_count": 4}, "feet": {"_count": 1}, "conviction": {"_count": 1}, "hair": {"_count": 3}, "portrait": {"_count": 1}, "bushy": {"_count": 1}, "frostiness": {"_count": 1}, "gaze": {"_count": 1}, "clipboard": {"_count": 3}, "wings": {"_count": 1}, "spectacles": {"_count": 1}, "childrens": {"_count": 1}, "curly": {"_count": 1}, "minions": {"_count": 1}, "cloak": {"_count": 1}, "anyway": {"_count": 1}, "nose": {"_count": 1}, "head": {"_count": 1}, "note": {"_count": 1}, "rosy": {"_count": 1}, "long": {"_count": 1}, "Spectrespecs": {"_count": 1}, "papery": {"_count": 1}, "in": {"_count": 1}, "Patronus": {"_count": 1}, "mouse": {"_count": 1}, "Cackling": {"_count": 1}, "father": {"_count": 1}, "fellows": {"_count": 1}, "forehead": {"_count": 1}, "silences": {"_count": 1}, "friends": {"_count": 1}, "whole": {"_count": 1}, "spell": {"_count": 1}, "tone": {"_count": 1}, "brother": {"_count": 1}, "beady": {"_count": 1}, "love": {"_count": 1}, "green": {"_count": 1}, "blazing": {"_count": 1}}, "mysterious": {"_count": 4, "things": {"_count": 1}, "against": {"_count": 1}, "objects": {"_count": 1}, "branch": {"_count": 1}}, "tried": {"_count": 46, "to": {"_count": 40}, "not": {"_count": 1}, "it": {"_count": 1}, "again": {"_count": 1}, "staring": {"_count": 1}, "hard": {"_count": 1}, "by": {"_count": 1}}, "throwing": {"_count": 20, "his": {"_count": 2}, "them": {"_count": 5}, "back": {"_count": 3}, "himself": {"_count": 2}, "stones": {"_count": 1}, "anxious": {"_count": 1}, "it": {"_count": 6}}, "backed": {"_count": 6, "out": {"_count": 2}, "away": {"_count": 4}}, "stared": {"_count": 61, "at": {"_count": 22}, "around": {"_count": 5}, "hungrily": {"_count": 1}, "bewildered": {"_count": 1}, "out": {"_count": 4}, "openmouthed": {"_count": 1}, "furiously": {"_count": 1}, "stared": {"_count": 1}, "inscrutably": {"_count": 1}, "over": {"_count": 3}, "right": {"_count": 1}, "up": {"_count": 5}, "in": {"_count": 2}, "back": {"_count": 2}, "moodily": {"_count": 1}, "as": {"_count": 1}, "through": {"_count": 1}, "fixedly": {"_count": 1}, "meditatively": {"_count": 1}, "down": {"_count": 3}, "determinedly": {"_count": 1}, "hastily": {"_count": 1}, "into": {"_count": 1}}, "up": {"_count": 27, "the": {"_count": 17}, "up": {"_count": 1}, "a": {"_count": 3}, "to": {"_count": 2}, "through": {"_count": 2}, "toward": {"_count": 2}}, "put": {"_count": 51, "the": {"_count": 4}, "your": {"_count": 1}, "it": {"_count": 14}, "his": {"_count": 7}, "her": {"_count": 3}, "them": {"_count": 7}, "our": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 4}, "an": {"_count": 2}, "on": {"_count": 2}, "down": {"_count": 1}, "yours": {"_count": 1}, "up": {"_count": 1}, "some": {"_count": 1}, "graffiti": {"_count": 1}}, "his": {"_count": 358, "eyes": {"_count": 23}, "nose": {"_count": 7}, "feet": {"_count": 3}, "parents": {"_count": 4}, "marks": {"_count": 1}, "fists": {"_count": 1}, "work": {"_count": 2}, "friends": {"_count": 13}, "spirits": {"_count": 1}, "robes": {"_count": 4}, "brothers": {"_count": 1}, "tree": {"_count": 1}, "reflection": {"_count": 1}, "own": {"_count": 5}, "hair": {"_count": 3}, "crossbow": {"_count": 1}, "wife": {"_count": 5}, "scar": {"_count": 5}, "broomstick": {"_count": 1}, "father": {"_count": 7}, "schoolmates": {"_count": 1}, "glasses": {"_count": 4}, "faithful": {"_count": 1}, "hands": {"_count": 7}, "arm": {"_count": 2}, "wavy": {"_count": 1}, "face": {"_count": 10}, "growing": {"_count": 1}, "ridiculous": {"_count": 1}, "ink": {"_count": 1}, "friend": {"_count": 2}, "Muggle": {"_count": 2}, "first": {"_count": 1}, "family": {"_count": 3}, "five": {"_count": 1}, "birthday": {"_count": 1}, "heart": {"_count": 9}, "pale": {"_count": 1}, "great": {"_count": 3}, "gang": {"_count": 3}, "tone": {"_count": 2}, "fat": {"_count": 2}, "Nimbus": {"_count": 1}, "mothers": {"_count": 2}, "huge": {"_count": 1}, "muddy": {"_count": 1}, "nostrils": {"_count": 1}, "shouts": {"_count": 1}, "grin": {"_count": 1}, "voice": {"_count": 12}, "wet": {"_count": 1}, "wand": {"_count": 9}, "very": {"_count": 1}, "head": {"_count": 3}, "light": {"_count": 1}, "rider": {"_count": 1}, "bedroom": {"_count": 1}, "eye": {"_count": 2}, "tongue": {"_count": 3}, "legs": {"_count": 2}, "best": {"_count": 1}, "narrow": {"_count": 1}, "toothbrush": {"_count": 1}, "followers": {"_count": 2}, "thoughts": {"_count": 1}, "goatee": {"_count": 1}, "fellow": {"_count": 2}, "blue": {"_count": 1}, "smile": {"_count": 1}, "magical": {"_count": 7}, "fingers": {"_count": 2}, "Firebolt": {"_count": 1}, "plans": {"_count": 1}, "stomach": {"_count": 3}, "reindeer": {"_count": 1}, "wide": {"_count": 1}, "cat": {"_count": 1}, "cushion": {"_count": 1}, "rapidly": {"_count": 1}, "bag": {"_count": 1}, "insides": {"_count": 2}, "fall": {"_count": 1}, "lopsided": {"_count": 1}, "companions": {"_count": 1}, "magically": {"_count": 1}, "beam": {"_count": 1}, "ghost": {"_count": 1}, "old": {"_count": 1}, "means": {"_count": 1}, "cold": {"_count": 1}, "door": {"_count": 1}, "trunk": {"_count": 1}, "vision": {"_count": 1}, "eldest": {"_count": 1}, "cousin": {"_count": 1}, "brother": {"_count": 1}, "lip": {"_count": 1}, "hand": {"_count": 5}, "answer": {"_count": 1}, "thin": {"_count": 1}, "dislike": {"_count": 1}, "memory": {"_count": 2}, "complexion": {"_count": 1}, "left": {"_count": 1}, "cronies": {"_count": 1}, "desperation": {"_count": 1}, "Healer": {"_count": 1}, "girlfriend": {"_count": 2}, "Death": {"_count": 2}, "Junior": {"_count": 1}, "three": {"_count": 3}, "cabin": {"_count": 1}, "Mistress": {"_count": 1}, "mouth": {"_count": 4}, "feeling": {"_count": 1}, "aim": {"_count": 1}, "captor": {"_count": 1}, "mask": {"_count": 1}, "attacker": {"_count": 1}, "round": {"_count": 1}, "empty": {"_count": 1}, "full": {"_count": 1}, "mum": {"_count": 1}, "bowler": {"_count": 1}, "reassurances": {"_count": 1}, "bushy": {"_count": 1}, "evenings": {"_count": 1}, "Order": {"_count": 1}, "arms": {"_count": 1}, "children": {"_count": 1}, "daughter": {"_count": 2}, "dad": {"_count": 2}, "spells": {"_count": 1}, "black": {"_count": 2}, "expression": {"_count": 1}, "mother": {"_count": 4}, "whole": {"_count": 2}, "body": {"_count": 1}, "breathing": {"_count": 1}, "determination": {"_count": 1}, "grandparents": {"_count": 1}, "cheeks": {"_count": 1}, "essay": {"_count": 1}, "manners": {"_count": 1}, "dreams": {"_count": 3}, "Invisibility": {"_count": 1}, "gingeryblond": {"_count": 1}, "sister": {"_count": 1}, "performance": {"_count": 1}, "brain": {"_count": 2}, "youthful": {"_count": 1}, "startled": {"_count": 1}, "opponent": {"_count": 1}, "breath": {"_count": 1}, "rucksack": {"_count": 3}, "terror": {"_count": 2}, "hood": {"_count": 1}, "knees": {"_count": 1}, "protegee": {"_count": 1}, "shining": {"_count": 1}, "dress": {"_count": 1}, "closest": {"_count": 1}, "longfingered": {"_count": 1}, "deep": {"_count": 1}, "lantern": {"_count": 1}, "words": {"_count": 1}, "foot": {"_count": 1}, "suffering": {"_count": 1}, "handsome": {"_count": 1}, "gaze": {"_count": 1}, "delight": {"_count": 1}, "lips": {"_count": 1}, "mind": {"_count": 1}, "clever": {"_count": 1}, "clothes": {"_count": 2}, "general": {"_count": 1}, "bars": {"_count": 1}, "fury": {"_count": 2}, "ears": {"_count": 1}, "odd": {"_count": 1}, "mates": {"_count": 1}, "white": {"_count": 1}, "surroundings": {"_count": 1}, "cruelty": {"_count": 1}, "schemes": {"_count": 1}, "red": {"_count": 2}}, "wearing": {"_count": 12, "an": {"_count": 3}, "broken": {"_count": 1}, "a": {"_count": 3}, "cloaks": {"_count": 2}, "the": {"_count": 2}, "what": {"_count": 1}}, "a": {"_count": 587, "few": {"_count": 27}, "huge": {"_count": 2}, "VCR": {"_count": 1}, "friend": {"_count": 2}, "moment": {"_count": 7}, "burning": {"_count": 1}, "letter": {"_count": 2}, "snake": {"_count": 1}, "couple": {"_count": 11}, "pair": {"_count": 9}, "chilly": {"_count": 1}, "fierce": {"_count": 1}, "wild": {"_count": 1}, "bottle": {"_count": 3}, "roll": {"_count": 3}, "small": {"_count": 9}, "stalactite": {"_count": 1}, "collapsible": {"_count": 1}, "quarter": {"_count": 4}, "half": {"_count": 16}, "stream": {"_count": 4}, "big": {"_count": 2}, "large": {"_count": 15}, "long": {"_count": 10}, "smiling": {"_count": 1}, "number": {"_count": 5}, "magnificent": {"_count": 1}, "nice": {"_count": 4}, "second": {"_count": 7}, "sharp": {"_count": 1}, "little": {"_count": 9}, "wide": {"_count": 2}, "trick": {"_count": 1}, "loud": {"_count": 3}, "nasty": {"_count": 1}, "frown": {"_count": 1}, "foul": {"_count": 1}, "horrible": {"_count": 1}, "bitter": {"_count": 1}, "hair": {"_count": 1}, "quiver": {"_count": 1}, "palomino": {"_count": 1}, "stranger": {"_count": 1}, "castle": {"_count": 1}, "towering": {"_count": 2}, "lump": {"_count": 1}, "very": {"_count": 13}, "biting": {"_count": 1}, "speeding": {"_count": 1}, "wand": {"_count": 3}, "staring": {"_count": 1}, "rat": {"_count": 1}, "guard": {"_count": 1}, "branch": {"_count": 1}, "jug": {"_count": 1}, "hundred": {"_count": 2}, "damp": {"_count": 1}, "boy": {"_count": 4}, "third": {"_count": 1}, "jet": {"_count": 2}, "single": {"_count": 3}, "tunic": {"_count": 1}, "broad": {"_count": 2}, "minute": {"_count": 1}, "vampire": {"_count": 1}, "witch": {"_count": 2}, "nightcap": {"_count": 1}, "gasp": {"_count": 1}, "crackling": {"_count": 1}, "rotting": {"_count": 1}, "golden": {"_count": 1}, "silence": {"_count": 2}, "note": {"_count": 1}, "prickling": {"_count": 1}, "stone": {"_count": 1}, "thoroughly": {"_count": 1}, "beard": {"_count": 1}, "tangle": {"_count": 1}, "light": {"_count": 2}, "tiny": {"_count": 3}, "good": {"_count": 3}, "blaze": {"_count": 1}, "gleaming": {"_count": 1}, "beady": {"_count": 1}, "sudden": {"_count": 2}, "bit": {"_count": 7}, "newspaper": {"_count": 1}, "grin": {"_count": 2}, "Handbook": {"_count": 1}, "lot": {"_count": 3}, "box": {"_count": 3}, "vein": {"_count": 1}, "broomstick": {"_count": 1}, "fat": {"_count": 2}, "cup": {"_count": 2}, "yelp": {"_count": 1}, "shivering": {"_count": 1}, "silvery": {"_count": 2}, "threelegged": {"_count": 1}, "voice": {"_count": 7}, "skeletal": {"_count": 1}, "blast": {"_count": 1}, "handsome": {"_count": 2}, "pinstriped": {"_count": 1}, "sullenfaced": {"_count": 1}, "NoseBiting": {"_count": 1}, "Slytherin": {"_count": 1}, "shadowy": {"_count": 1}, "door": {"_count": 2}, "werewolf": {"_count": 1}, "rumbling": {"_count": 1}, "murderer": {"_count": 1}, "swift": {"_count": 1}, "great": {"_count": 12}, "flickering": {"_count": 1}, "cold": {"_count": 1}, "face": {"_count": 1}, "quill": {"_count": 3}, "poncho": {"_count": 2}, "punctured": {"_count": 1}, "look": {"_count": 3}, "short": {"_count": 4}, "strong": {"_count": 3}, "nose": {"_count": 2}, "woman": {"_count": 3}, "flash": {"_count": 6}, "load": {"_count": 1}, "sweatshirt": {"_count": 1}, "crumpled": {"_count": 1}, "vivid": {"_count": 1}, "leprechaun": {"_count": 1}, "thousand": {"_count": 1}, "spooky": {"_count": 1}, "roar": {"_count": 1}, "rushing": {"_count": 1}, "tawny": {"_count": 2}, "pale": {"_count": 1}, "rather": {"_count": 3}, "thin": {"_count": 2}, "detention": {"_count": 2}, "smile": {"_count": 1}, "bunch": {"_count": 1}, "gigantic": {"_count": 1}, "Chinese": {"_count": 1}, "simple": {"_count": 1}, "possibility": {"_count": 1}, "burn": {"_count": 1}, "group": {"_count": 3}, "cupboard": {"_count": 1}, "newt": {"_count": 1}, "choker": {"_count": 1}, "wave": {"_count": 2}, "flask": {"_count": 1}, "trim": {"_count": 1}, "trickle": {"_count": 1}, "mildly": {"_count": 1}, "pointed": {"_count": 4}, "fool": {"_count": 1}, "narrow": {"_count": 1}, "set": {"_count": 2}, "sense": {"_count": 2}, "goblet": {"_count": 1}, "drowsy": {"_count": 1}, "high": {"_count": 1}, "soft": {"_count": 1}, "hearing": {"_count": 1}, "leather": {"_count": 1}, "sweetish": {"_count": 1}, "heap": {"_count": 1}, "split": {"_count": 1}, "heavy": {"_count": 3}, "stack": {"_count": 1}, "criminal": {"_count": 1}, "much": {"_count": 1}, "rattle": {"_count": 1}, "houseelf": {"_count": 2}, "diagram": {"_count": 1}, "sallowskinned": {"_count": 1}, "perfectly": {"_count": 1}, "squashy": {"_count": 1}, "picture": {"_count": 2}, "handful": {"_count": 2}, "Percylike": {"_count": 1}, "caged": {"_count": 1}, "shrilly": {"_count": 1}, "matching": {"_count": 2}, "beaming": {"_count": 1}, "clatter": {"_count": 1}, "broken": {"_count": 1}, "funny": {"_count": 1}, "bowtruckle": {"_count": 1}, "parcel": {"_count": 1}, "Bludger": {"_count": 1}, "Chaser": {"_count": 1}, "sheet": {"_count": 1}, "Hufflepuff": {"_count": 1}, "place": {"_count": 3}, "real": {"_count": 1}, "promising": {"_count": 1}, "haversack": {"_count": 1}, "softened": {"_count": 1}, "sniff": {"_count": 1}, "positive": {"_count": 1}, "laugh": {"_count": 1}, "rush": {"_count": 1}, "grubbylooking": {"_count": 1}, "snarl": {"_count": 2}, "lovely": {"_count": 1}, "grimly": {"_count": 1}, "piece": {"_count": 1}, "cherub": {"_count": 1}, "basin": {"_count": 1}, "toughlooking": {"_count": 1}, "cloud": {"_count": 1}, "thud": {"_count": 1}, "reckless": {"_count": 1}, "girl": {"_count": 1}, "faint": {"_count": 1}, "gash": {"_count": 1}, "fail": {"_count": 1}, "thick": {"_count": 2}, "duncolored": {"_count": 1}, "lift": {"_count": 1}, "fiery": {"_count": 1}, "hummingbird": {"_count": 1}, "scream": {"_count": 3}, "truly": {"_count": 1}, "yell": {"_count": 1}, "score": {"_count": 1}, "cool": {"_count": 1}, "future": {"_count": 1}, "select": {"_count": 1}, "shower": {"_count": 2}, "sock": {"_count": 1}, "bright": {"_count": 1}, "sphinx": {"_count": 1}, "certain": {"_count": 1}, "rickety": {"_count": 1}, "clinking": {"_count": 1}, "squeal": {"_count": 1}, "mess": {"_count": 1}, "packet": {"_count": 1}, "housecoat": {"_count": 1}, "dusty": {"_count": 1}, "bus": {"_count": 1}, "brightly": {"_count": 1}, "disgruntled": {"_count": 1}, "squawk": {"_count": 1}, "knife": {"_count": 1}, "copy": {"_count": 1}, "swooning": {"_count": 1}, "Knut": {"_count": 1}, "resignedlooking": {"_count": 1}, "scarless": {"_count": 1}, "breathless": {"_count": 1}, "poor": {"_count": 1}, "dementor": {"_count": 1}, "free": {"_count": 1}, "disadvantage": {"_count": 1}, "moving": {"_count": 1}, "crack": {"_count": 2}, "man": {"_count": 1}, "liar": {"_count": 1}, "plate": {"_count": 1}, "distraction": {"_count": 1}, "tarnished": {"_count": 2}, "lack": {"_count": 1}, "distinctly": {"_count": 1}, "young": {"_count": 1}, "slightly": {"_count": 1}, "spectacular": {"_count": 1}, "constant": {"_count": 1}, "puff": {"_count": 1}, "considerable": {"_count": 1}, "brilliant": {"_count": 1}, "conservatory": {"_count": 1}, "leg": {"_count": 1}, "ghost": {"_count": 2}, "cheat": {"_count": 1}, "crash": {"_count": 1}, "view": {"_count": 1}, "spurt": {"_count": 1}, "sick": {"_count": 1}, "battle": {"_count": 1}, "curse": {"_count": 1}, "dancing": {"_count": 1}, "gold": {"_count": 1}, "desire": {"_count": 1}, "red": {"_count": 1}, "ladder": {"_count": 1}, "squat": {"_count": 2}, "burst": {"_count": 2}, "groan": {"_count": 1}, "slighter": {"_count": 1}, "chandelier": {"_count": 1}, "supper": {"_count": 1}, "cloaked": {"_count": 1}, "shriek": {"_count": 1}, "wizard": {"_count": 1}, "scowl": {"_count": 1}, "rubberbulbed": {"_count": 1}, "distant": {"_count": 1}, "kind": {"_count": 1}, "baby": {"_count": 1}, "wreath": {"_count": 1}, "steaming": {"_count": 1}, "slight": {"_count": 1}, "series": {"_count": 1}, "blur": {"_count": 1}, "younger": {"_count": 1}, "skull": {"_count": 1}, "horde": {"_count": 1}, "gush": {"_count": 1}, "semicircle": {"_count": 1}, "dozen": {"_count": 1}, "rough": {"_count": 1}, "pewter": {"_count": 1}, "Caterwauling": {"_count": 1}, "bronze": {"_count": 1}, "shattering": {"_count": 1}, "length": {"_count": 1}, "silver": {"_count": 1}, "surge": {"_count": 1}, "battered": {"_count": 1}, "tiara": {"_count": 1}, "gray": {"_count": 1}, "fox": {"_count": 1}, "longfingered": {"_count": 1}, "waste": {"_count": 1}, "skinny": {"_count": 1}, "fragment": {"_count": 1}, "connection": {"_count": 1}, "Harry": {"_count": 1}, "whisper": {"_count": 1}, "singularly": {"_count": 1}, "lure": {"_count": 1}, "wayward": {"_count": 1}, "shout": {"_count": 1}, "grunt": {"_count": 1}, "longing": {"_count": 1}}, "gazed": {"_count": 8, "openmouthed": {"_count": 1}, "at": {"_count": 2}, "upward": {"_count": 2}, "down": {"_count": 1}, "up": {"_count": 1}, "for": {"_count": 1}}, "shouted": {"_count": 20, "a": {"_count": 1}, "that": {"_count": 1}, "out": {"_count": 1}, "Rictusempral": {"_count": 1}, "ExpelliarmusV": {"_count": 1}, "Come": {"_count": 1}, "Its": {"_count": 1}, "Expelliarmus": {"_count": 2}, "Stupefyl": {"_count": 1}, "GR": {"_count": 1}, "so": {"_count": 1}, "STUPEFY": {"_count": 1}, "STUP": {"_count": 1}, "Hogwarts": {"_count": 1}, "Dishonored": {"_count": 1}, "Wingardium": {"_count": 1}, "over": {"_count": 1}, "And": {"_count": 1}, "DescendoV": {"_count": 1}}, "walk": {"_count": 4, "across": {"_count": 1}, "right": {"_count": 1}, "through": {"_count": 1}, "until": {"_count": 1}}, "he": {"_count": 760, "couldnt": {"_count": 9}, "said": {"_count": 11}, "could": {"_count": 23}, "slept": {"_count": 1}, "took": {"_count": 8}, "still": {"_count": 3}, "was": {"_count": 97}, "snorted": {"_count": 1}, "remembered": {"_count": 2}, "needs": {"_count": 2}, "wont": {"_count": 3}, "started": {"_count": 5}, "leaned": {"_count": 1}, "got": {"_count": 5}, "had": {"_count": 39}, "caught": {"_count": 2}, "must": {"_count": 4}, "left": {"_count": 8}, "told": {"_count": 4}, "muttered": {"_count": 3}, "says": {"_count": 3}, "accidentally": {"_count": 1}, "sloped": {"_count": 2}, "threw": {"_count": 2}, "toppled": {"_count": 2}, "swooped": {"_count": 1}, "knew": {"_count": 14}, "stared": {"_count": 2}, "looked": {"_count": 22}, "didnt": {"_count": 8}, "turned": {"_count": 14}, "crashed": {"_count": 1}, "drained": {"_count": 1}, "put": {"_count": 3}, "would": {"_count": 5}, "seemed": {"_count": 7}, "hardly": {"_count": 2}, "tucked": {"_count": 1}, "slammed": {"_count": 4}, "patted": {"_count": 1}, "gulped": {"_count": 2}, "set": {"_count": 2}, "let": {"_count": 1}, "began": {"_count": 5}, "can": {"_count": 2}, "drifted": {"_count": 1}, "pulled": {"_count": 10}, "added": {"_count": 3}, "fled": {"_count": 1}, "saw": {"_count": 16}, "doubled": {"_count": 1}, "paused": {"_count": 1}, "ducked": {"_count": 1}, "hurried": {"_count": 4}, "wasnt": {"_count": 6}, "Harry": {"_count": 5}, "moved": {"_count": 1}, "and": {"_count": 12}, "nodded": {"_count": 1}, "jumped": {"_count": 2}, "suddenly": {"_count": 5}, "slid": {"_count": 2}, "shot": {"_count": 1}, "pocketed": {"_count": 1}, "felt": {"_count": 25}, "waited": {"_count": 2}, "belonged": {"_count": 1}, "reckons": {"_count": 1}, "tripped": {"_count": 1}, "landed": {"_count": 2}, "bowed": {"_count": 2}, "went": {"_count": 2}, "wants": {"_count": 3}, "shoved": {"_count": 4}, "broke": {"_count": 2}, "died": {"_count": 2}, "reappeared": {"_count": 1}, "climbed": {"_count": 2}, "stood": {"_count": 7}, "came": {"_count": 3}, "alerted": {"_count": 1}, "seems": {"_count": 3}, "flung": {"_count": 4}, "mightve": {"_count": 1}, "pushed": {"_count": 1}, "stooped": {"_count": 1}, "stalked": {"_count": 2}, "scampered": {"_count": 1}, "bent": {"_count": 1}, "tried": {"_count": 4}, "rolled": {"_count": 1}, "writhed": {"_count": 1}, "swayed": {"_count": 1}, "aimed": {"_count": 1}, "gave": {"_count": 2}, "should": {"_count": 1}, "slipped": {"_count": 2}, "did": {"_count": 9}, "groped": {"_count": 1}, "somehow": {"_count": 1}, "hoped": {"_count": 1}, "fixed": {"_count": 1}, "played": {"_count": 1}, "fell": {"_count": 12}, "beckoned": {"_count": 1}, "brandished": {"_count": 1}, "wanted": {"_count": 3}, "cant": {"_count": 1}, "wondered": {"_count": 3}, "understood": {"_count": 1}, "as": {"_count": 1}, "waved": {"_count": 1}, "stuffed": {"_count": 1}, "entered": {"_count": 1}, "launched": {"_count": 2}, "damn": {"_count": 1}, "insisted": {"_count": 1}, "puts": {"_count": 1}, "never": {"_count": 2}, "hit": {"_count": 2}, "sat": {"_count": 1}, "desisted": {"_count": 1}, "knocked": {"_count": 1}, "like": {"_count": 1}, "certainly": {"_count": 1}, "heard": {"_count": 7}, "wouldnt": {"_count": 1}, "lost": {"_count": 1}, "seized": {"_count": 4}, "placed": {"_count": 1}, "dashed": {"_count": 3}, "kept": {"_count": 3}, "led": {"_count": 6}, "slouched": {"_count": 1}, "brushed": {"_count": 1}, "actually": {"_count": 3}, "sprinted": {"_count": 1}, "kicked": {"_count": 1}, "even": {"_count": 1}, "swept": {"_count": 1}, "quickened": {"_count": 1}, "attacked": {"_count": 1}, "picked": {"_count": 1}, "are": {"_count": 1}, "has": {"_count": 4}, "merely": {"_count": 1}, "headed": {"_count": 1}, "found": {"_count": 6}, "spoke": {"_count": 1}, "so": {"_count": 1}, "pointed": {"_count": 1}, "is": {"_count": 1}, "watched": {"_count": 1}, "thrust": {"_count": 2}, "ran": {"_count": 4}, "might": {"_count": 1}, "grinned": {"_count": 1}, "made": {"_count": 1}, "doubted": {"_count": 1}, "spent": {"_count": 1}, "rounded": {"_count": 1}, "carried": {"_count": 1}, "snatched": {"_count": 2}, "himself": {"_count": 1}, "delivered": {"_count": 1}, "awoke": {"_count": 1}, "flew": {"_count": 1}, "quite": {"_count": 1}, "dreaded": {"_count": 1}, "meant": {"_count": 1}, "worked": {"_count": 1}, "submitted": {"_count": 1}, "halfwished": {"_count": 1}, "realized": {"_count": 1}, "often": {"_count": 1}, "darted": {"_count": 1}, "stretched": {"_count": 1}, "will": {"_count": 2}, "streaked": {"_count": 1}, "glanced": {"_count": 1}, "jerked": {"_count": 1}, "guessed": {"_count": 1}, "distinctly": {"_count": 1}, "imagined": {"_count": 1}, "marched": {"_count": 1}, "sought": {"_count": 1}, "collapsed": {"_count": 2}, "fought": {"_count": 2}, "lay": {"_count": 1}, "keeled": {"_count": 1}, "hated": {"_count": 1}, "almost": {"_count": 2}, "barely": {"_count": 1}, "embraced": {"_count": 1}, "raised": {"_count": 5}, "blinked": {"_count": 1}, "received": {"_count": 1}, "used": {"_count": 1}, "rose": {"_count": 2}, "hissed": {"_count": 1}, "greeted": {"_count": 1}, "spat": {"_count": 2}, "absolutely": {"_count": 1}, "introduced": {"_count": 1}, "finally": {"_count": 1}, "thought": {"_count": 5}, "doesnt": {"_count": 1}, "Dean": {"_count": 1}, "demanded": {"_count": 1}, "crossed": {"_count": 1}, "asked": {"_count": 2}, "shifted": {"_count": 1}, "tipped": {"_count": 2}, "too": {"_count": 3}, "shook": {"_count": 2}, "feels": {"_count": 1}, "knows": {"_count": 1}, "noticed": {"_count": 2}, "preferred": {"_count": 1}, "leapt": {"_count": 1}, "walked": {"_count": 2}, "stopped": {"_count": 2}, "hadnt": {"_count": 1}, "licked": {"_count": 1}, "stumbled": {"_count": 1}, "explained": {"_count": 2}, "forgot": {"_count": 1}, "lifted": {"_count": 1}, "opened": {"_count": 3}, "jabbed": {"_count": 1}, "smashed": {"_count": 1}, "resumed": {"_count": 2}, "uttered": {"_count": 1}, "drank": {"_count": 1}, "prowled": {"_count": 1}, "glared": {"_count": 1}, "retreated": {"_count": 1}, "fired": {"_count": 1}, "read": {"_count": 1}, "advanced": {"_count": 1}, "needed": {"_count": 1}, "screamed": {"_count": 1}, "reacted": {"_count": 1}, "became": {"_count": 1}, "reached": {"_count": 2}, "strode": {"_count": 2}, "drew": {"_count": 2}, "glimpsed": {"_count": 1}, "cried": {"_count": 1}, "buckled": {"_count": 1}, "wrenched": {"_count": 1}, "continued": {"_count": 1}, "dropped": {"_count": 3}, "sank": {"_count": 1}, "clung": {"_count": 1}, "closed": {"_count": 1}, "passed": {"_count": 1}, "strained": {"_count": 1}, "thinks": {"_count": 1}, "recognized": {"_count": 1}, "nearly": {"_count": 1}, "Ron": {"_count": 1}, "crumpled": {"_count": 1}, "spluttered": {"_count": 1}, "heaved": {"_count": 1}, "spotted": {"_count": 1}}, "stroked": {"_count": 3, "his": {"_count": 2}, "Crookshanks": {"_count": 1}}, "when": {"_count": 82, "he": {"_count": 14}, "Dudley": {"_count": 1}, "the": {"_count": 7}, "Harry": {"_count": 11}, "Scabbers": {"_count": 1}, "they": {"_count": 13}, "Riddle": {"_count": 1}, "she": {"_count": 7}, "Mrs": {"_count": 1}, "sounds": {"_count": 1}, "its": {"_count": 1}, "I": {"_count": 3}, "youve": {"_count": 1}, "you": {"_count": 2}, "Im": {"_count": 1}, "nobody": {"_count": 1}, "Sir": {"_count": 1}, "Ron": {"_count": 1}, "Professor": {"_count": 2}, "hes": {"_count": 1}, "have": {"_count": 1}, "it": {"_count": 4}, "all": {"_count": 1}, "theres": {"_count": 1}, "none": {"_count": 1}, "youre": {"_count": 1}, "Mundungus": {"_count": 1}, "nothing": {"_count": 1}}, "almost": {"_count": 15, "fell": {"_count": 2}, "knocking": {"_count": 1}, "crying": {"_count": 1}, "as": {"_count": 2}, "toppled": {"_count": 1}, "flattening": {"_count": 1}, "immediately": {"_count": 1}, "fearful": {"_count": 1}, "collided": {"_count": 1}, "walked": {"_count": 1}, "bowled": {"_count": 1}, "gagged": {"_count": 1}, "at": {"_count": 1}}, "walked": {"_count": 63, "off": {"_count": 4}, "to": {"_count": 4}, "back": {"_count": 8}, "shakily": {"_count": 1}, "up": {"_count": 2}, "straight": {"_count": 1}, "forward": {"_count": 4}, "purposefully": {"_count": 1}, "through": {"_count": 2}, "toward": {"_count": 3}, "quietly": {"_count": 1}, "a": {"_count": 1}, "right": {"_count": 1}, "out": {"_count": 4}, "past": {"_count": 2}, "over": {"_count": 2}, "with": {"_count": 1}, "around": {"_count": 4}, "on": {"_count": 2}, "away": {"_count": 10}, "swiftly": {"_count": 1}, "slowly": {"_count": 2}, "still": {"_count": 1}, "deeper": {"_count": 1}}, "set": {"_count": 58, "off": {"_count": 33}, "them": {"_count": 2}, "fire": {"_count": 2}, "me": {"_count": 1}, "out": {"_count": 2}, "up": {"_count": 1}, "his": {"_count": 2}, "to": {"_count": 5}, "a": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 2}, "himself": {"_count": 1}, "high": {"_count": 1}, "": {"_count": 1}, "Seamus": {"_count": 1}}, "it": {"_count": 202, "didnt": {"_count": 3}, "was": {"_count": 61}, "simply": {"_count": 1}, "will": {"_count": 2}, "shot": {"_count": 1}, "wasnt": {"_count": 4}, "slid": {"_count": 2}, "crashed": {"_count": 1}, "shouted": {"_count": 1}, "gives": {"_count": 2}, "sounded": {"_count": 4}, "said": {"_count": 1}, "looked": {"_count": 3}, "fell": {"_count": 2}, "doesnt": {"_count": 3}, "would": {"_count": 7}, "lit": {"_count": 1}, "hit": {"_count": 1}, "splintered": {"_count": 1}, "Put": {"_count": 1}, "turned": {"_count": 3}, "began": {"_count": 1}, "came": {"_count": 2}, "upset": {"_count": 1}, "landed": {"_count": 1}, "streamed": {"_count": 1}, "amused": {"_count": 1}, "felt": {"_count": 1}, "had": {"_count": 7}, "uttered": {"_count": 1}, "is": {"_count": 11}, "cannot": {"_count": 1}, "emitted": {"_count": 1}, "sort": {"_count": 2}, "giggles": {"_count": 1}, "comes": {"_count": 1}, "flew": {"_count": 4}, "can": {"_count": 1}, "took": {"_count": 5}, "struck": {"_count": 1}, "spun": {"_count": 1}, "vanished": {"_count": 1}, "rebounded": {"_count": 2}, "appeared": {"_count": 1}, "still": {"_count": 1}, "all": {"_count": 3}, "seemed": {"_count": 5}, "became": {"_count": 2}, "sounds": {"_count": 1}, "zoomed": {"_count": 1}, "wasn": {"_count": 1}, "occurred": {"_count": 1}, "soared": {"_count": 2}, "swung": {"_count": 1}, "lay": {"_count": 2}, "broke": {"_count": 1}, "could": {"_count": 3}, "never": {"_count": 1}, "opened": {"_count": 1}, "certainly": {"_count": 1}, "rather": {"_count": 1}, "ignited": {"_count": 1}, "it": {"_count": 1}, "paid": {"_count": 1}, "snapped": {"_count": 1}, "might": {"_count": 1}, "showed": {"_count": 1}, "goes": {"_count": 1}, "worked": {"_count": 1}, "spoke": {"_count": 1}, "echoed": {"_count": 1}, "glowed": {"_count": 1}, "must": {"_count": 1}, "went": {"_count": 1}, "slithered": {"_count": 1}, "just": {"_count": 1}, "even": {"_count": 1}, "steadied": {"_count": 1}, "gave": {"_count": 1}, "regurgitated": {"_count": 1}, "dangled": {"_count": 1}}, "how": {"_count": 36, "Dudley": {"_count": 1}, "to": {"_count": 6}, "did": {"_count": 3}, "he": {"_count": 5}, "youve": {"_count": 1}, "many": {"_count": 1}, "it": {"_count": 1}, "Voldemort": {"_count": 1}, "Luna": {"_count": 1}, "were": {"_count": 1}, "stupid": {"_count": 1}, "she": {"_count": 1}, "Fudge": {"_count": 1}, "much": {"_count": 2}, "they": {"_count": 2}, "horrible": {"_count": 1}, "Hagrid": {"_count": 1}, "long": {"_count": 1}, "the": {"_count": 2}, "trusting": {"_count": 1}, "good": {"_count": 1}, "could": {"_count": 1}}, "are": {"_count": 13, "hardly": {"_count": 1}, "therefore": {"_count": 3}, "reborn": {"_count": 1}, "about": {"_count": 1}, "historically": {"_count": 1}, "doing": {"_count": 1}, "now": {"_count": 1}, "unaffected": {"_count": 1}, "taking": {"_count": 1}, "pretty": {"_count": 1}, "following": {"_count": 1}}, "Dundee": {"_count": 1, "have": {"_count": 1}}, "angry": {"_count": 13, "": {"_count": 7}, "had": {"_count": 1}, "he": {"_count": 1}, "voice": {"_count": 1}, "faces": {"_count": 1}, "At": {"_count": 1}, "confronting": {"_count": 1}}, "there": {"_count": 159, "were": {"_count": 20}, "was": {"_count": 81}, "between": {"_count": 1}, "among": {"_count": 2}, "reflected": {"_count": 1}, "along": {"_count": 2}, "could": {"_count": 2}, "until": {"_count": 1}, "at": {"_count": 2}, "doesnt": {"_count": 1}, "fighting": {"_count": 1}, "trying": {"_count": 2}, "have": {"_count": 1}, "on": {"_count": 3}, "adult": {"_count": 1}, "they": {"_count": 1}, "wasnt": {"_count": 1}, "a": {"_count": 3}, "people": {"_count": 1}, "": {"_count": 2}, "would": {"_count": 1}, "hasnt": {"_count": 1}, "goes": {"_count": 1}, "are": {"_count": 4}, "to": {"_count": 2}, "arent": {"_count": 1}, "sure": {"_count": 1}, "stood": {"_count": 5}, "will": {"_count": 2}, "sat": {"_count": 1}, "behind": {"_count": 1}, "alone": {"_count": 1}, "seemed": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "flashed": {"_count": 1}, "it": {"_count": 1}, "ahead": {"_count": 1}, "shone": {"_count": 1}, "younger": {"_count": 1}, "and": {"_count": 1}}, "peered": {"_count": 19, "down": {"_count": 2}, "inside": {"_count": 4}, "keenly": {"_count": 1}, "intently": {"_count": 1}, "over": {"_count": 1}, "into": {"_count": 3}, "out": {"_count": 1}, "around": {"_count": 1}, "under": {"_count": 1}, "instead": {"_count": 1}, "through": {"_count": 3}}, "Petunia": {"_count": 3, "thought": {"_count": 1}, "could": {"_count": 1}, "to": {"_count": 1}}, "turned": {"_count": 102, "over": {"_count": 3}, "toward": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 31}, "the": {"_count": 4}, "it": {"_count": 10}, "along": {"_count": 1}, "frowning": {"_count": 1}, "sloping": {"_count": 1}, "again": {"_count": 1}, "her": {"_count": 1}, "around": {"_count": 6}, "himself": {"_count": 1}, "his": {"_count": 8}, "squinting": {"_count": 1}, "more": {"_count": 1}, "Get": {"_count": 1}, "into": {"_count": 2}, "round": {"_count": 1}, "on": {"_count": 2}, "": {"_count": 3}, "spy": {"_count": 1}, "away": {"_count": 5}, "a": {"_count": 3}, "him": {"_count": 1}, "gracefully": {"_count": 1}, "excitedly": {"_count": 1}, "miserably": {"_count": 1}, "left": {"_count": 1}, "up": {"_count": 1}, "from": {"_count": 1}, "beaming": {"_count": 1}, "hissing": {"_count": 1}, "back": {"_count": 1}, "rubbing": {"_count": 1}, "corners": {"_count": 1}}, "silently": {"_count": 5, "youd": {"_count": 1}, "toward": {"_count": 1}, "Harry": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 1}}, "its": {"_count": 74, "eyes": {"_count": 1}, "all": {"_count": 2}, "the": {"_count": 1}, "mane": {"_count": 1}, "rude": {"_count": 1}, "going": {"_count": 2}, "gnarled": {"_count": 1}, "high": {"_count": 1}, "very": {"_count": 2}, "escape": {"_count": 1}, "bound": {"_count": 1}, "great": {"_count": 1}, "forked": {"_count": 1}, "face": {"_count": 2}, "head": {"_count": 1}, "pinpoint": {"_count": 1}, "Katie": {"_count": 2}, "branches": {"_count": 1}, "shout": {"_count": 1}, "rather": {"_count": 1}, "got": {"_count": 2}, "extremely": {"_count": 1}, "dragons": {"_count": 1}, "grounds": {"_count": 1}, "more": {"_count": 1}, "not": {"_count": 5}, "four": {"_count": 1}, "fleshy": {"_count": 1}, "getting": {"_count": 1}, "down": {"_count": 1}, "own": {"_count": 1}, "uses": {"_count": 3}, "Io": {"_count": 1}, "only": {"_count": 1}, "Warrington": {"_count": 2}, "Pucey": {"_count": 1}, "serious": {"_count": 1}, "lucky": {"_count": 1}, "three": {"_count": 1}, "definitely": {"_count": 2}, "like": {"_count": 1}, "actually": {"_count": 1}, "probably": {"_count": 1}, "because": {"_count": 1}, "staff": {"_count": 1}, "supposed": {"_count": 1}, "quite": {"_count": 1}, "rays": {"_count": 1}, "consequences": {"_count": 1}, "certainly": {"_count": 1}, "incredibly": {"_count": 2}, "no": {"_count": 1}, "an": {"_count": 1}, "horn": {"_count": 1}, "under": {"_count": 1}, "us": {"_count": 1}, "full": {"_count": 1}, "bellows": {"_count": 1}, "flickering": {"_count": 1}}, "very": {"_count": 31, "old": {"_count": 1}, "stupid": {"_count": 1}, "eerie": {"_count": 1}, "ugly": {"_count": 1}, "reasonably": {"_count": 1}, "carefully": {"_count": 3}, "noisy": {"_count": 1}, "tired": {"_count": 1}, "luckily": {"_count": 1}, "clearly": {"_count": 1}, "white": {"_count": 1}, "horrible": {"_count": 1}, "hard": {"_count": 1}, "enthusiastically": {"_count": 1}, "soon": {"_count": 1}, "deep": {"_count": 1}, "much": {"_count": 1}, "light": {"_count": 1}, "strong": {"_count": 1}, "dimly": {"_count": 1}, "unconvincing": {"_count": 1}, "dirty": {"_count": 1}, "slow": {"_count": 1}, "interested": {"_count": 1}, "well": {"_count": 1}, "occasionally": {"_count": 1}, "goodlooking": {"_count": 1}, "importantly": {"_count": 1}, "domineering": {"_count": 1}}, "beard": {"_count": 21, "which": {"_count": 1}, "hid": {"_count": 1}, "but": {"_count": 1}, "halfmoon": {"_count": 1}, "sopping": {"_count": 1}, "shining": {"_count": 1}, "looked": {"_count": 1}, "": {"_count": 5}, "upon": {"_count": 1}, "and": {"_count": 1}, "were": {"_count": 2}, "so": {"_count": 1}, "flying": {"_count": 1}, "standing": {"_count": 1}, "streaming": {"_count": 1}, "the": {"_count": 1}}, "highheeled": {"_count": 1, "buckled": {"_count": 1}}, "sparkling": {"_count": 1, "behind": {"_count": 1}}, "crooked": {"_count": 1, "as": {"_count": 1}}, "muttered": {"_count": 27, "I": {"_count": 2}, "hello": {"_count": 1}, "Mischief": {"_count": 1}, "Lumos": {"_count": 1}, "Ferula": {"_count": 1}, "to": {"_count": 1}, "Quietus": {"_count": 1}, "something": {"_count": 3}, "Imperio": {"_count": 1}, "CrucioV": {"_count": 1}, "the": {"_count": 3}, "Renneruate": {"_count": 1}, "out": {"_count": 1}, "as": {"_count": 1}, "Alohomora": {"_count": 1}, "Portus": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "She": {"_count": 1}, "MuffliatoV": {"_count": 1}, "Dirk": {"_count": 1}, "Hermione": {"_count": 1}}, "clicked": {"_count": 4, "it": {"_count": 2}, "in": {"_count": 1}, "her": {"_count": 1}}, "parties": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 180, "The": {"_count": 1}, "Hagrids": {"_count": 1}, "she": {"_count": 1}, "About": {"_count": 1}, "Anything": {"_count": 1}, "She": {"_count": 1}, "there": {"_count": 1}, "So": {"_count": 3}, "Wingardium": {"_count": 2}, "If": {"_count": 2}, "Alas": {"_count": 1}, "That": {"_count": 1}, "Now": {"_count": 1}, "youd": {"_count": 1}, "Muggles": {"_count": 1}, "Professor": {"_count": 2}, "together": {"_count": 3}, "Its": {"_count": 2}, "You": {"_count": 5}, "Well": {"_count": 4}, "Honestly": {"_count": 1}, "suddenly": {"_count": 1}, "Youre": {"_count": 2}, "Thats": {"_count": 1}, "Dyou": {"_count": 1}, "Father": {"_count": 1}, "Why": {"_count": 1}, "Aparecium": {"_count": 1}, "in": {"_count": 10}, "carefully": {"_count": 1}, "loudly": {"_count": 3}, "very": {"_count": 2}, "How": {"_count": 4}, "Where": {"_count": 1}, "Harry": {"_count": 1}, "Ive": {"_count": 3}, "with": {"_count": 6}, "abruptly": {"_count": 1}, "One": {"_count": 1}, "Possibly": {"_count": 1}, "Oh": {"_count": 3}, "Imperviusl": {"_count": 2}, "I": {"_count": 8}, "thickly": {"_count": 1}, "Yer": {"_count": 1}, "But": {"_count": 1}, "Acciol": {"_count": 1}, "Sonorusl": {"_count": 1}, "quickly": {"_count": 1}, "Rennervatel": {"_count": 1}, "Imperio": {"_count": 2}, "Moody": {"_count": 1}, "Explain": {"_count": 1}, "Sirius": {"_count": 2}, "Wed": {"_count": 1}, "Parvati": {"_count": 1}, "Im": {"_count": 1}, "Funny": {"_count": 1}, "Great": {"_count": 1}, "Never": {"_count": 1}, "Go": {"_count": 1}, "Wet": {"_count": 1}, "A": {"_count": 1}, "Shes": {"_count": 1}, "he": {"_count": 1}, "No": {"_count": 1}, "Rennervate": {"_count": 1}, "Good": {"_count": 2}, "Whatever": {"_count": 1}, "Master": {"_count": 1}, "quietly": {"_count": 1}, "rather": {"_count": 1}, "no": {"_count": 1}, "breathlessly": {"_count": 1}, "Do": {"_count": 2}, "calmly": {"_count": 1}, "nothing": {"_count": 5}, "grimly": {"_count": 1}, "What": {"_count": 1}, "again": {"_count": 2}, "Yes": {"_count": 1}, "her": {"_count": 1}, "Welcome": {"_count": 1}, "out": {"_count": 1}, "Fred": {"_count": 1}, "Alohomora": {"_count": 2}, "Five": {"_count": 1}, "so": {"_count": 2}, "Prime": {"_count": 1}, "This": {"_count": 1}, "firmly": {"_count": 1}, "Reparo": {"_count": 3}, "Levicorpusl": {"_count": 1}, "baldly": {"_count": 1}, "Stop": {"_count": 1}, "Lets": {"_count": 2}, "Theres": {"_count": 1}, "Riddle": {"_count": 1}, "hoarsely": {"_count": 1}, "Langlockl": {"_count": 1}, "defiantly": {"_count": 1}, "Aguamenti": {"_count": 1}, "Tergeo": {"_count": 1}, "Accio": {"_count": 2}, "Happy": {"_count": 1}, "Daddy": {"_count": 1}, "Yeah": {"_count": 1}, "Obliviate": {"_count": 1}, "Homenum": {"_count": 1}, "Stupefyl": {"_count": 1}, "that": {"_count": 1}, "Whos": {"_count": 1}, "Am": {"_count": 1}, "you": {"_count": 1}, "It": {"_count": 1}, "and": {"_count": 1}, "without": {"_count": 1}}, "did": {"_count": 24, "not": {"_count": 21}, "a": {"_count": 1}, "so": {"_count": 1}, "his": {"_count": 1}}, "James": {"_count": 25, "Potter": {"_count": 6}, "": {"_count": 4}, "were": {"_count": 1}, "Sirius": {"_count": 1}, "transformed": {"_count": 1}, "to": {"_count": 3}, "died": {"_count": 1}, "and": {"_count": 2}, "only": {"_count": 1}, "stood": {"_count": 1}, "whatever": {"_count": 1}, "buried": {"_count": 1}, "lay": {"_count": 1}, "put": {"_count": 1}}, "patted": {"_count": 5, "her": {"_count": 2}, "Harry": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "thats": {"_count": 31, "why": {"_count": 5}, "saying": {"_count": 1}, "nothing": {"_count": 1}, "a": {"_count": 2}, "what": {"_count": 2}, "supposed": {"_count": 1}, "not": {"_count": 3}, "Bode": {"_count": 1}, "definitely": {"_count": 1}, "with": {"_count": 1}, "Emmeline": {"_count": 1}, "the": {"_count": 3}, "right": {"_count": 1}, "where": {"_count": 1}, "because": {"_count": 1}, "just": {"_count": 1}, "odd": {"_count": 1}, "if": {"_count": 1}, "that": {"_count": 1}, "all": {"_count": 1}, "when": {"_count": 1}}, "dabbed": {"_count": 2, "at": {"_count": 2}}, "examined": {"_count": 13, "it": {"_count": 6}, "every": {"_count": 1}, "at": {"_count": 1}, "himself": {"_count": 1}, "them": {"_count": 2}, "the": {"_count": 1}, "its": {"_count": 1}}, "uncle": {"_count": 29, "": {"_count": 6}, "will": {"_count": 2}, "hadnt": {"_count": 1}, "never": {"_count": 1}, "furious": {"_count": 1}, "about": {"_count": 1}, "stared": {"_count": 1}, "and": {"_count": 2}, "so": {"_count": 1}, "at": {"_count": 1}, "let": {"_count": 1}, "didnt": {"_count": 1}, "er": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}, "exchanged": {"_count": 1}, "could": {"_count": 1}, "later": {"_count": 1}, "not": {"_count": 1}, "before": {"_count": 1}, "would": {"_count": 1}, "are": {"_count": 1}}, "pointing": {"_count": 20, "at": {"_count": 8}, "to": {"_count": 2}, "": {"_count": 2}, "in": {"_count": 2}, "up": {"_count": 1}, "toward": {"_count": 1}, "as": {"_count": 1}, "she": {"_count": 1}, "Slytherins": {"_count": 1}, "his": {"_count": 1}}, "live": {"_count": 13, "here": {"_count": 1}, "in": {"_count": 3}, "many": {"_count": 1}, "with": {"_count": 4}, "to": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 1}, "down": {"_count": 1}}, "talk": {"_count": 13, "": {"_count": 1}, "to": {"_count": 9}, "at": {"_count": 1}, "among": {"_count": 1}, "yes": {"_count": 1}}, "then": {"_count": 475, "said": {"_count": 31}, "came": {"_count": 3}, "the": {"_count": 16}, "because": {"_count": 1}, "walked": {"_count": 2}, "forced": {"_count": 1}, "told": {"_count": 1}, "Uncle": {"_count": 1}, "went": {"_count": 2}, "if": {"_count": 4}, "he": {"_count": 25}, "to": {"_count": 13}, "paced": {"_count": 1}, "quite": {"_count": 3}, "hed": {"_count": 1}, "started": {"_count": 3}, "looked": {"_count": 5}, "became": {"_count": 1}, "at": {"_count": 5}, "it": {"_count": 8}, "come": {"_count": 1}, "start": {"_count": 1}, "glared": {"_count": 1}, "rushed": {"_count": 1}, "sped": {"_count": 1}, "pelted": {"_count": 1}, "shot": {"_count": 1}, "fell": {"_count": 6}, "ordered": {"_count": 1}, "making": {"_count": 2}, "shut": {"_count": 1}, "put": {"_count": 1}, "Harry": {"_count": 3}, "a": {"_count": 10}, "his": {"_count": 4}, "yes": {"_count": 2}, "everybody": {"_count": 1}, "banged": {"_count": 1}, "Dad": {"_count": 1}, "she": {"_count": 10}, "He": {"_count": 4}, "louder": {"_count": 1}, "out": {"_count": 5}, "go": {"_count": 3}, "darted": {"_count": 1}, "hurried": {"_count": 2}, "glaring": {"_count": 1}, "Dobby": {"_count": 1}, "Professor": {"_count": 3}, "began": {"_count": 2}, "headed": {"_count": 2}, "taking": {"_count": 1}, "as": {"_count": 2}, "wrote": {"_count": 1}, "moving": {"_count": 1}, "someone": {"_count": 1}, "smashed": {"_count": 2}, "silence": {"_count": 2}, "I": {"_count": 10}, "Myrtle": {"_count": 1}, "something": {"_count": 4}, "hitting": {"_count": 1}, "pretend": {"_count": 1}, "carried": {"_count": 1}, "flapped": {"_count": 1}, "into": {"_count": 2}, "slowly": {"_count": 1}, "propelled": {"_count": 1}, "scampered": {"_count": 1}, "they": {"_count": 8}, "screamed": {"_count": 1}, "well": {"_count": 6}, "buried": {"_count": 1}, "turned": {"_count": 4}, "on": {"_count": 3}, "straightened": {"_count": 1}, "without": {"_count": 3}, "Ron": {"_count": 2}, "saw": {"_count": 1}, "It": {"_count": 1}, "stood": {"_count": 1}, "Wormtail": {"_count": 1}, "Without": {"_count": 1}, "incredibly": {"_count": 1}, "nodded": {"_count": 1}, "quickly": {"_count": 1}, "with": {"_count": 11}, "His": {"_count": 2}, "wiping": {"_count": 1}, "up": {"_count": 3}, "spoke": {"_count": 3}, "finally": {"_count": 1}, "crunching": {"_count": 1}, "try": {"_count": 1}, "sparks": {"_count": 1}, "bounced": {"_count": 1}, "back": {"_count": 5}, "clapped": {"_count": 1}, "left": {"_count": 1}, "staring": {"_count": 1}, "we": {"_count": 7}, "": {"_count": 6}, "did": {"_count": 1}, "where": {"_count": 1}, "lunchtime": {"_count": 1}, "Cho": {"_count": 1}, "Mr": {"_count": 1}, "loads": {"_count": 1}, "stopped": {"_count": 1}, "Dumbledore": {"_count": 1}, "of": {"_count": 2}, "down": {"_count": 1}, "unmistakably": {"_count": 1}, "you": {"_count": 2}, "stops": {"_count": 1}, "send": {"_count": 1}, "Stunned": {"_count": 1}, "another": {"_count": 3}, "like": {"_count": 1}, "waved": {"_count": 1}, "placing": {"_count": 1}, "held": {"_count": 3}, "returned": {"_count": 1}, "moved": {"_count": 2}, "formed": {"_count": 1}, "just": {"_count": 3}, "others": {"_count": 1}, "those": {"_count": 1}, "Rons": {"_count": 1}, "mounting": {"_count": 1}, "Aunt": {"_count": 1}, "according": {"_count": 1}, "oldfashioned": {"_count": 1}, "close": {"_count": 1}, "jerked": {"_count": 1}, "sprouted": {"_count": 1}, "choked": {"_count": 1}, "gave": {"_count": 2}, "when": {"_count": 1}, "applauded": {"_count": 1}, "patrol": {"_count": 2}, "stared": {"_count": 1}, "produce": {"_count": 1}, "realized": {"_count": 1}, "reappeared": {"_count": 1}, "plunged": {"_count": 2}, "look": {"_count": 1}, "copy": {"_count": 1}, "theres": {"_count": 1}, "leapt": {"_count": 1}, "looking": {"_count": 2}, "vanished": {"_count": 1}, "laughed": {"_count": 1}, "fly": {"_count": 1}, "disappeared": {"_count": 2}, "pulled": {"_count": 1}, "Fred": {"_count": 1}, "sat": {"_count": 1}, "what": {"_count": 1}, "skeletal": {"_count": 1}, "broke": {"_count": 1}, "this": {"_count": 1}, "raising": {"_count": 1}, "terror": {"_count": 1}, "followed": {"_count": 1}, "got": {"_count": 2}, "let": {"_count": 1}, "closed": {"_count": 2}, "sent": {"_count": 1}, "Umbridge": {"_count": 1}, "poked": {"_count": 1}, "trooped": {"_count": 1}, "more": {"_count": 1}, "caught": {"_count": 2}, "bellowed": {"_count": 1}, "rocketed": {"_count": 1}, "flung": {"_count": 1}, "crumpled": {"_count": 2}, "losing": {"_count": 1}, "opened": {"_count": 1}, "being": {"_count": 1}, "sank": {"_count": 1}, "steered": {"_count": 1}, "swooping": {"_count": 1}, "Fleurs": {"_count": 1}, "students": {"_count": 1}, "very": {"_count": 1}, "consulted": {"_count": 1}, "there": {"_count": 3}, "her": {"_count": 1}, "dived": {"_count": 1}, "Snape": {"_count": 3}, "Ill": {"_count": 2}, "landed": {"_count": 1}, "found": {"_count": 1}, "letting": {"_count": 1}, "ran": {"_count": 1}, "set": {"_count": 1}, "stepped": {"_count": 1}, "passed": {"_count": 1}, "pounded": {"_count": 1}, "Malfoy": {"_count": 1}, "later": {"_count": 1}, "Ive": {"_count": 1}, "youre": {"_count": 1}, "made": {"_count": 1}, "dropped": {"_count": 2}, "Voldemort": {"_count": 1}, "falling": {"_count": 1}, "extracted": {"_count": 1}, "after": {"_count": 1}, "\u2018Bad": {"_count": 1}, "punched": {"_count": 1}, "Hermione": {"_count": 1}, "Lupin": {"_count": 1}, "added": {"_count": 1}, "squinting": {"_count": 1}, "straight": {"_count": 1}, "Id": {"_count": 2}, "YouKnow": {"_count": 1}, "all": {"_count": 3}, "But": {"_count": 1}, "help": {"_count": 1}, "greeted": {"_count": 1}, "gulped": {"_count": 1}, "even": {"_count": 1}, "Doge": {"_count": 1}, "Michael": {"_count": 1}, "Youre": {"_count": 1}, "your": {"_count": 1}, "an": {"_count": 1}}, "down": {"_count": 118, "the": {"_count": 53}, "on": {"_count": 7}, "Ron": {"_count": 1}, "in": {"_count": 13}, "a": {"_count": 3}, "Magnolia": {"_count": 1}, "howling": {"_count": 1}, "like": {"_count": 1}, "looking": {"_count": 1}, "several": {"_count": 1}, "it": {"_count": 2}, "waving": {"_count": 1}, "applauding": {"_count": 1}, "": {"_count": 9}, "of": {"_count": 1}, "behind": {"_count": 1}, "before": {"_count": 2}, "he": {"_count": 2}, "outside": {"_count": 1}, "Harrys": {"_count": 1}, "their": {"_count": 1}, "past": {"_count": 1}, "peering": {"_count": 1}, "then": {"_count": 1}, "between": {"_count": 1}, "his": {"_count": 2}, "Aunt": {"_count": 1}, "up": {"_count": 1}, "and": {"_count": 3}, "below": {"_count": 1}, "beams": {"_count": 1}, "aisles": {"_count": 1}}, "landed": {"_count": 32, "on": {"_count": 9}, "noiselessly": {"_count": 1}, "with": {"_count": 8}, "in": {"_count": 5}, "neatly": {"_count": 1}, "gently": {"_count": 1}, "point": {"_count": 1}, "himself": {"_count": 1}, "twenty": {"_count": 1}, "open": {"_count": 1}, "a": {"_count": 1}, "lightly": {"_count": 1}, "at": {"_count": 1}}, "at": {"_count": 49, "least": {"_count": 2}, "the": {"_count": 15}, "last": {"_count": 11}, "this": {"_count": 2}, "that": {"_count": 2}, "once": {"_count": 8}, "first": {"_count": 1}, "peace": {"_count": 1}, "five": {"_count": 1}, "a": {"_count": 1}, "Hermione": {"_count": 1}, "his": {"_count": 1}, "times": {"_count": 1}, "their": {"_count": 1}, "bay": {"_count": 1}}, "so": {"_count": 52, "wild": {"_count": 1}, "did": {"_count": 11}, "were": {"_count": 1}, "was": {"_count": 2}, "crooked": {"_count": 1}, "many": {"_count": 2}, "obvious": {"_count": 1}, "looking": {"_count": 1}, "freckly": {"_count": 1}, "on": {"_count": 2}, "to": {"_count": 1}, "Voldemort": {"_count": 1}, "Ive": {"_count": 1}, "sorry": {"_count": 1}, "he": {"_count": 1}, "helped": {"_count": 1}, "can": {"_count": 1}, "do": {"_count": 3}, "utter": {"_count": 1}, "you": {"_count": 1}, "much": {"_count": 1}, "forth": {"_count": 1}, "I": {"_count": 3}, "steeply": {"_count": 1}, "turned": {"_count": 1}, "finished": {"_count": 1}, "we": {"_count": 1}, "have": {"_count": 1}, "uncertain": {"_count": 1}, "will": {"_count": 1}, "they": {"_count": 1}, "nearly": {"_count": 1}, "still": {"_count": 1}, "does": {"_count": 1}, "it": {"_count": 1}}, "Professor": {"_count": 53, "McGonagall": {"_count": 19}, "Dumbledore": {"_count": 6}, "Flitwick": {"_count": 4}, "Quirrell": {"_count": 1}, "Sinistra": {"_count": 1}, "Lupin": {"_count": 5}, "Trelawney": {"_count": 6}, "Trelawneys": {"_count": 3}, "Snape": {"_count": 2}, "Karkaroff": {"_count": 1}, "GrubblyPlank": {"_count": 1}, "Moody": {"_count": 1}, "McGonagalls": {"_count": 1}, "Umbridge": {"_count": 1}, "Sprout": {"_count": 1}}, "gave": {"_count": 36, "him": {"_count": 8}, "Hermione": {"_count": 1}, "a": {"_count": 6}, "it": {"_count": 10}, "them": {"_count": 1}, "very": {"_count": 1}, "Mrs": {"_count": 1}, "the": {"_count": 3}, "an": {"_count": 2}, "Grawps": {"_count": 1}, "every": {"_count": 1}, "Ron": {"_count": 1}}, "burying": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "looked": {"_count": 161, "at": {"_count": 16}, "intently": {"_count": 1}, "like": {"_count": 2}, "instead": {"_count": 1}, "extremely": {"_count": 2}, "up": {"_count": 22}, "desperate": {"_count": 1}, "until": {"_count": 1}, "out": {"_count": 5}, "as": {"_count": 4}, "right": {"_count": 1}, "down": {"_count": 21}, "around": {"_count": 32}, "back": {"_count": 6}, "": {"_count": 2}, "over": {"_count": 5}, "quickly": {"_count": 1}, "from": {"_count": 3}, "sideways": {"_count": 1}, "almost": {"_count": 1}, "Professor": {"_count": 1}, "directly": {"_count": 1}, "curiously": {"_count": 1}, "suspiciously": {"_count": 1}, "across": {"_count": 2}, "much": {"_count": 1}, "into": {"_count": 3}, "straight": {"_count": 1}, "forbidding": {"_count": 1}, "behind": {"_count": 1}, "alertly": {"_count": 1}, "sternly": {"_count": 1}, "very": {"_count": 2}, "vaguely": {"_count": 1}, "away": {"_count": 4}, "mortified": {"_count": 1}, "in": {"_count": 1}, "suddenly": {"_count": 1}, "mournfully": {"_count": 1}, "upset": {"_count": 1}, "inquiringly": {"_count": 1}, "momentarily": {"_count": 1}, "more": {"_count": 1}, "terrified": {"_count": 1}, "expectantly": {"_count": 1}, "rather": {"_count": 1}}, "the": {"_count": 1165, "twinkling": {"_count": 1}, "racing": {"_count": 1}, "first": {"_count": 5}, "zoo": {"_count": 1}, "address": {"_count": 1}, "postcard": {"_count": 1}, "dairy": {"_count": 1}, "fireplace": {"_count": 1}, "whistling": {"_count": 1}, "worlds": {"_count": 1}, "very": {"_count": 1}, "next": {"_count": 13}, "owl": {"_count": 2}, "sea": {"_count": 2}, "trains": {"_count": 1}, "bartender": {"_count": 1}, "heartstrings": {"_count": 1}, "tape": {"_count": 1}, "scraping": {"_count": 2}, "people": {"_count": 4}, "poor": {"_count": 1}, "three": {"_count": 13}, "youngest": {"_count": 1}, "boy": {"_count": 3}, "roundfaced": {"_count": 1}, "positions": {"_count": 1}, "broomstick": {"_count": 1}, "little": {"_count": 6}, "hat": {"_count": 3}, "table": {"_count": 4}, "portrait": {"_count": 3}, "boys": {"_count": 1}, "movements": {"_count": 1}, "Weasley": {"_count": 3}, "sugar": {"_count": 1}, "other": {"_count": 9}, "grass": {"_count": 3}, "others": {"_count": 29}, "pair": {"_count": 7}, "four": {"_count": 3}, "door": {"_count": 10}, "trapdoor": {"_count": 2}, "Bludgers": {"_count": 1}, "kind": {"_count": 1}, "shuffling": {"_count": 1}, "echoes": {"_count": 1}, "trolls": {"_count": 1}, "lake": {"_count": 3}, "cheerful": {"_count": 1}, "rest": {"_count": 21}, "Gryffindors": {"_count": 4}, "game": {"_count": 2}, "Great": {"_count": 5}, "common": {"_count": 2}, "fun": {"_count": 1}, "Weasleys": {"_count": 10}, "Quidditch": {"_count": 2}, "coming": {"_count": 1}, "egg": {"_count": 2}, "Invisibility": {"_count": 3}, "more": {"_count": 1}, "damp": {"_count": 3}, "knight": {"_count": 1}, "white": {"_count": 1}, "second": {"_count": 4}, "voice": {"_count": 4}, "ropes": {"_count": 1}, "points": {"_count": 1}, "silver": {"_count": 1}, "sweater": {"_count": 1}, "whole": {"_count": 5}, "hedge": {"_count": 1}, "distant": {"_count": 3}, "car": {"_count": 4}, "fiasco": {"_count": 2}, "postal": {"_count": 1}, "Dursleys": {"_count": 4}, "sort": {"_count": 1}, "dirty": {"_count": 1}, "prospect": {"_count": 4}, "engine": {"_count": 1}, "windshield": {"_count": 1}, "decision": {"_count": 1}, "two": {"_count": 9}, "dormitories": {"_count": 1}, "moment": {"_count": 1}, "arrows": {"_count": 1}, "ground": {"_count": 2}, "tartan": {"_count": 1}, "Kwikspell": {"_count": 2}, "Fat": {"_count": 4}, "crowd": {"_count": 3}, "ghosts": {"_count": 1}, "loud": {"_count": 2}, "most": {"_count": 2}, "lacewings": {"_count": 1}, "Dark": {"_count": 3}, "boomslang": {"_count": 1}, "only": {"_count": 9}, "various": {"_count": 1}, "bell": {"_count": 1}, "snake": {"_count": 12}, "color": {"_count": 1}, "bird": {"_count": 1}, "dead": {"_count": 1}, "bout": {"_count": 1}, "faded": {"_count": 1}, "monster": {"_count": 2}, "one": {"_count": 4}, "evening": {"_count": 1}, "drawer": {"_count": 1}, "unicorns": {"_count": 1}, "class": {"_count": 2}, "quiet": {"_count": 2}, "rustling": {"_count": 2}, "doors": {"_count": 4}, "Basilisk": {"_count": 1}, "staffroom": {"_count": 1}, "emerald": {"_count": 1}, "Squibs": {"_count": 1}, "letters": {"_count": 1}, "Sorting": {"_count": 6}, "best": {"_count": 3}, "basilisk": {"_count": 3}, "wand": {"_count": 1}, "celebration": {"_count": 1}, "middle": {"_count": 1}, "television": {"_count": 1}, "salmon": {"_count": 1}, "fence": {"_count": 1}, "pebbledashed": {"_count": 1}, "hand": {"_count": 4}, "beds": {"_count": 2}, "Knight": {"_count": 1}, "sound": {"_count": 9}, "seven": {"_count": 1}, "warning": {"_count": 1}, "Shrieking": {"_count": 1}, "scenery": {"_count": 1}, "Weasel": {"_count": 1}, "floor": {"_count": 3}, "lights": {"_count": 5}, "delapidated": {"_count": 1}, "effect": {"_count": 1}, "clatter": {"_count": 4}, "many": {"_count": 1}, "fire": {"_count": 4}, "winding": {"_count": 1}, "book": {"_count": 1}, "ends": {"_count": 2}, "hippogriff": {"_count": 1}, "spiders": {"_count": 2}, "boggart": {"_count": 1}, "potholes": {"_count": 1}, "way": {"_count": 2}, "Seeker": {"_count": 1}, "long": {"_count": 2}, "enchanted": {"_count": 2}, "whispering": {"_count": 1}, "rain": {"_count": 2}, "true": {"_count": 1}, "room": {"_count": 8}, "dementors": {"_count": 6}, "lines": {"_count": 1}, "fact": {"_count": 8}, "muddy": {"_count": 1}, "castle": {"_count": 1}, "opening": {"_count": 1}, "teachers": {"_count": 1}, "hems": {"_count": 1}, "Broomstick": {"_count": 1}, "handle": {"_count": 2}, "dementor": {"_count": 5}, "Gryffindor": {"_count": 3}, "Firebolt": {"_count": 1}, "big": {"_count": 1}, "Marauders": {"_count": 3}, "Committee": {"_count": 1}, "superconscious": {"_count": 1}, "dog": {"_count": 2}, "Slytherins": {"_count": 3}, "stadium": {"_count": 2}, "usual": {"_count": 1}, "heat": {"_count": 2}, "spiral": {"_count": 1}, "executioner": {"_count": 1}, "front": {"_count": 2}, "screaming": {"_count": 1}, "village": {"_count": 1}, "struggling": {"_count": 1}, "ghost": {"_count": 1}, "girl": {"_count": 3}, "voices": {"_count": 2}, "word": {"_count": 3}, "thud": {"_count": 2}, "old": {"_count": 3}, "end": {"_count": 2}, "empty": {"_count": 1}, "police": {"_count": 1}, "plan": {"_count": 1}, "hearth": {"_count": 1}, "sorts": {"_count": 1}, "video": {"_count": 1}, "contents": {"_count": 1}, "trunk": {"_count": 2}, "fish": {"_count": 1}, "nine": {"_count": 1}, "warm": {"_count": 1}, "turnups": {"_count": 1}, "moon": {"_count": 1}, "nearest": {"_count": 1}, "tickets": {"_count": 1}, "Fawcetts": {"_count": 1}, "mist": {"_count": 1}, "balls": {"_count": 1}, "noise": {"_count": 3}, "rosette": {"_count": 1}, "Bulgarian": {"_count": 1}, "leprechauns": {"_count": 1}, "furious": {"_count": 1}, "odd": {"_count": 1}, "top": {"_count": 3}, "smoky": {"_count": 1}, "Burrow": {"_count": 1}, "Daily": {"_count": 1}, "last": {"_count": 7}, "flames": {"_count": 1}, "girls": {"_count": 2}, "twins": {"_count": 1}, "train": {"_count": 2}, "windows": {"_count": 2}, "glass": {"_count": 1}, "Hufflepuffs": {"_count": 2}, "stool": {"_count": 1}, "stormy": {"_count": 1}, "students": {"_count": 3}, "selection": {"_count": 1}, "Hall": {"_count": 1}, "mysterious": {"_count": 1}, "ferret": {"_count": 1}, "spider": {"_count": 3}, "noisy": {"_count": 1}, "proceeds": {"_count": 1}, "regurgitated": {"_count": 1}, "pain": {"_count": 5}, "Hogwarts": {"_count": 1}, "dim": {"_count": 1}, "champion": {"_count": 1}, "suit": {"_count": 1}, "Beauxbatons": {"_count": 2}, "standing": {"_count": 1}, "rules": {"_count": 1}, "International": {"_count": 4}, "panel": {"_count": 1}, "message": {"_count": 1}, "parchment": {"_count": 1}, "photographer": {"_count": 2}, "fear": {"_count": 2}, "tight": {"_count": 1}, "Stunning": {"_count": 1}, "picture": {"_count": 1}, "number": {"_count": 1}, "numbers": {"_count": 1}, "hundreds": {"_count": 2}, "Horntail": {"_count": 1}, "ball": {"_count": 2}, "suits": {"_count": 1}, "TonTongue": {"_count": 1}, "handknitted": {"_count": 1}, "edges": {"_count": 2}, "aftermath": {"_count": 1}, "fires": {"_count": 2}, "mountains": {"_count": 1}, "fluttering": {"_count": 1}, "greenhouse": {"_count": 1}, "reasons": {"_count": 1}, "map": {"_count": 1}, "golden": {"_count": 10}, "wailing": {"_count": 1}, "chunk": {"_count": 1}, "Death": {"_count": 12}, "story": {"_count": 1}, "cloak": {"_count": 1}, "side": {"_count": 1}, "toes": {"_count": 1}, "knot": {"_count": 1}, "elf": {"_count": 3}, "worst": {"_count": 4}, "rippling": {"_count": 1}, "owls": {"_count": 1}, "envelope": {"_count": 1}, "illuminated": {"_count": 1}, "lamps": {"_count": 2}, "fiery": {"_count": 1}, "breeze": {"_count": 1}, "wispy": {"_count": 1}, "thing": {"_count": 4}, "FourPoint": {"_count": 1}, "Durmstrang": {"_count": 2}, "knowledge": {"_count": 3}, "rumbling": {"_count": 1}, "champions": {"_count": 1}, "skrewts": {"_count": 1}, "shapeshifter": {"_count": 1}, "short": {"_count": 2}, "man": {"_count": 5}, "sobbing": {"_count": 1}, "dream": {"_count": 1}, "connected": {"_count": 1}, "cup": {"_count": 2}, "unconscious": {"_count": 1}, "brilliance": {"_count": 1}, "houseelf": {"_count": 2}, "cut": {"_count": 1}, "black": {"_count": 3}, "goblet": {"_count": 1}, "Durmstrangs": {"_count": 1}, "soles": {"_count": 1}, "resultant": {"_count": 1}, "discovery": {"_count": 1}, "whisper": {"_count": 1}, "hairs": {"_count": 1}, "mundane": {"_count": 1}, "widescreen": {"_count": 1}, "world": {"_count": 1}, "third": {"_count": 1}, "unmistakable": {"_count": 2}, "back": {"_count": 2}, "cage": {"_count": 1}, "sickle": {"_count": 1}, "square": {"_count": 1}, "candelabra": {"_count": 1}, "Order": {"_count": 14}, "scrolls": {"_count": 1}, "bread": {"_count": 1}, "waistband": {"_count": 1}, "Ministrys": {"_count": 1}, "blood": {"_count": 1}, "brats": {"_count": 1}, "rattling": {"_count": 1}, "same": {"_count": 2}, "wizard": {"_count": 2}, "lift": {"_count": 3}, "womans": {"_count": 1}, "heavily": {"_count": 1}, "frizzyhaired": {"_count": 1}, "toadlike": {"_count": 1}, "Minister": {"_count": 4}, "wastepaper": {"_count": 1}, "Longbottoms": {"_count": 1}, "orb": {"_count": 1}, "rainstreaked": {"_count": 1}, "startofterm": {"_count": 1}, "faces": {"_count": 1}, "boldest": {"_count": 1}, "presence": {"_count": 1}, "memory": {"_count": 2}, "vision": {"_count": 1}, "lowburning": {"_count": 1}, "paper": {"_count": 1}, "bag": {"_count": 1}, "BlastEnded": {"_count": 1}, "freshly": {"_count": 2}, "Snitch": {"_count": 1}, "Ministry": {"_count": 7}, "ruffle": {"_count": 1}, "place": {"_count": 2}, "exam": {"_count": 2}, "sight": {"_count": 2}, "socks": {"_count": 1}, "cold": {"_count": 2}, "looks": {"_count": 1}, "lostandfound": {"_count": 1}, "steps": {"_count": 1}, "crackling": {"_count": 1}, "FoeGlass": {"_count": 1}, "D": {"_count": 2}, "Heads": {"_count": 3}, "ceiling": {"_count": 1}, "temperature": {"_count": 1}, "mood": {"_count": 1}, "games": {"_count": 1}, "sky": {"_count": 2}, "fourteen": {"_count": 1}, "din": {"_count": 1}, "Quaffle": {"_count": 1}, "bellowing": {"_count": 1}, "power": {"_count": 1}, "steak": {"_count": 1}, "greenhouses": {"_count": 1}, "phoenix": {"_count": 1}, "smoke": {"_count": 2}, "circumstances": {"_count": 1}, "soft": {"_count": 1}, "small": {"_count": 1}, "entire": {"_count": 1}, "relieved": {"_count": 1}, "walls": {"_count": 4}, "tenth": {"_count": 1}, "crime": {"_count": 1}, "sallowfaced": {"_count": 1}, "rune": {"_count": 1}, "deals": {"_count": 1}, "Ministers": {"_count": 1}, "dates": {"_count": 2}, "jar": {"_count": 1}, "stone": {"_count": 2}, "freckled": {"_count": 1}, "shadow": {"_count": 1}, "corridor": {"_count": 2}, "occasional": {"_count": 1}, "tufted": {"_count": 1}, "bushes": {"_count": 1}, "tone": {"_count": 1}, "giant": {"_count": 1}, "trees": {"_count": 1}, "tiniest": {"_count": 1}, "gray": {"_count": 1}, "practice": {"_count": 1}, "scribbling": {"_count": 1}, "lawn": {"_count": 2}, "moonlight": {"_count": 1}, "sand": {"_count": 1}, "figure": {"_count": 1}, "wretched": {"_count": 1}, "Three": {"_count": 1}, "fifty": {"_count": 1}, "monstrous": {"_count": 1}, "centaurs": {"_count": 1}, "blundering": {"_count": 1}, "pavement": {"_count": 1}, "houseelfs": {"_count": 1}, "six": {"_count": 1}, "grilles": {"_count": 2}, "candles": {"_count": 1}, "center": {"_count": 1}, "wall": {"_count": 1}, "shelves": {"_count": 1}, "mans": {"_count": 2}, "house": {"_count": 1}, "onearmed": {"_count": 1}, "water": {"_count": 1}, "tiny": {"_count": 1}, "creatures": {"_count": 1}, "goblin": {"_count": 6}, "stillness": {"_count": 2}, "legs": {"_count": 1}, "closest": {"_count": 1}, "eyes": {"_count": 1}, "othersll": {"_count": 1}, "grounds": {"_count": 1}, "new": {"_count": 1}, "Prime": {"_count": 1}, "strain": {"_count": 2}, "Chancellor": {"_count": 1}, "Muggle": {"_count": 2}, "opposition": {"_count": 1}, "fox": {"_count": 1}, "Sorcerers": {"_count": 1}, "artificial": {"_count": 1}, "sofa": {"_count": 1}, "highly": {"_count": 1}, "lightningshaped": {"_count": 1}, "swirling": {"_count": 1}, "powerful": {"_count": 2}, "soup": {"_count": 1}, "teetering": {"_count": 1}, "wish": {"_count": 1}, "attractiveness": {"_count": 1}, "grimfaced": {"_count": 1}, "weight": {"_count": 2}, "faroff": {"_count": 1}, "muffled": {"_count": 1}, "gates": {"_count": 1}, "gargoyle": {"_count": 1}, "cork": {"_count": 2}, "swishing": {"_count": 2}, "view": {"_count": 1}, "flow": {"_count": 1}, "stove": {"_count": 1}, "pretty": {"_count": 1}, "frantic": {"_count": 1}, "bar": {"_count": 1}, "weather": {"_count": 1}, "package": {"_count": 1}, "still": {"_count": 1}, "conversation": {"_count": 1}, "attendant": {"_count": 1}, "older": {"_count": 1}, "furniture": {"_count": 1}, "young": {"_count": 1}, "good": {"_count": 1}, "gnarled": {"_count": 1}, "bowl": {"_count": 1}, "Chasers": {"_count": 1}, "large": {"_count": 1}, "sounds": {"_count": 2}, "maniacal": {"_count": 1}, "HalfBlood": {"_count": 1}, "cries": {"_count": 1}, "gravy": {"_count": 1}, "indistinguishable": {"_count": 1}, "scuffedup": {"_count": 1}, "difficulties": {"_count": 1}, "Pensieve": {"_count": 1}, "time": {"_count": 2}, "thuggish": {"_count": 1}, "pallid": {"_count": 1}, "incantation": {"_count": 1}, "truth": {"_count": 2}, "possibility": {"_count": 1}, "sensation": {"_count": 1}, "cat": {"_count": 1}, "toadstool": {"_count": 1}, "locket": {"_count": 5}, "whites": {"_count": 1}, "slitlike": {"_count": 1}, "stretch": {"_count": 1}, "Mimbulus": {"_count": 1}, "transformation": {"_count": 1}, "bin": {"_count": 1}, "Saturday": {"_count": 2}, "varied": {"_count": 1}, "calm": {"_count": 1}, "reason": {"_count": 4}, "rock": {"_count": 1}, "light": {"_count": 1}, "silence": {"_count": 2}, "creature": {"_count": 1}, "werewolf": {"_count": 2}, "squat": {"_count": 1}, "mute": {"_count": 1}, "rubies": {"_count": 1}, "stitch": {"_count": 1}, "toughened": {"_count": 1}, "wild": {"_count": 1}, "enormous": {"_count": 1}, "curse": {"_count": 2}, "spell": {"_count": 1}, "magical": {"_count": 1}, "poisoned": {"_count": 1}, "mournful": {"_count": 1}, "witch": {"_count": 1}, "Malfoys": {"_count": 1}, "great": {"_count": 5}, "awe": {"_count": 1}, "guilty": {"_count": 1}, "sister": {"_count": 1}, "lies": {"_count": 1}, "charm": {"_count": 2}, "sidecar": {"_count": 3}, "motorbike": {"_count": 2}, "airborne": {"_count": 1}, "Muggles": {"_count": 1}, "remaining": {"_count": 1}, "whiteblue": {"_count": 1}, "bike": {"_count": 1}, "newspapers": {"_count": 1}, "terrors": {"_count": 1}, "confusion": {"_count": 1}, "less": {"_count": 2}, "screams": {"_count": 1}, "nearby": {"_count": 1}, "outline": {"_count": 2}, "lantern": {"_count": 1}, "Hopping": {"_count": 1}, "Seven": {"_count": 1}, "writer": {"_count": 1}, "waitress": {"_count": 1}, "bedclothes": {"_count": 1}, "photograph": {"_count": 1}, "music": {"_count": 1}, "contemptuous": {"_count": 1}, "Mudblood": {"_count": 1}, "dignity": {"_count": 1}, "Muggleborns": {"_count": 1}, "thin": {"_count": 1}, "grinding": {"_count": 1}, "kid": {"_count": 1}, "Pretense": {"_count": 1}, "Cloak": {"_count": 2}, "potion": {"_count": 1}, "ferrety": {"_count": 1}, "Head": {"_count": 1}, "Dangers": {"_count": 1}, "hopelessness": {"_count": 1}, "despair": {"_count": 1}, "darkness": {"_count": 1}, "lockets": {"_count": 1}, "lifts": {"_count": 1}, "question": {"_count": 1}, "Wizarding": {"_count": 1}, "merry": {"_count": 1}, "river": {"_count": 1}, "Lovegood": {"_count": 1}, "excitement": {"_count": 1}, "heart": {"_count": 1}, "outofsight": {"_count": 1}, "slippery": {"_count": 1}, "lane": {"_count": 1}, "Horcrux": {"_count": 3}, "unmade": {"_count": 1}, "shop": {"_count": 1}, "child": {"_count": 1}, "mother": {"_count": 1}, "quality": {"_count": 1}, "emptiness": {"_count": 1}, "wandtip": {"_count": 1}, "beam": {"_count": 1}, "arms": {"_count": 1}, "real": {"_count": 1}, "RiddleHarry": {"_count": 1}, "RiddleHermione": {"_count": 1}, "stained": {"_count": 1}, "forest": {"_count": 1}, "sword": {"_count": 3}, "cupboards": {"_count": 1}, "Wand": {"_count": 1}, "thundering": {"_count": 1}, "cuts": {"_count": 1}, "glorious": {"_count": 1}, "unnamed": {"_count": 1}, "prisoners": {"_count": 1}, "rusty": {"_count": 1}, "luminescent": {"_count": 1}, "motionless": {"_count": 1}, "horror": {"_count": 1}, "skeletal": {"_count": 1}, "frail": {"_count": 1}, "rushing": {"_count": 1}, "rows": {"_count": 1}, "pile": {"_count": 1}, "lightning": {"_count": 1}, "blackthorn": {"_count": 1}, "feel": {"_count": 2}, "surprising": {"_count": 1}, "glowing": {"_count": 1}, "goblins": {"_count": 1}, "dragons": {"_count": 2}, "clanking": {"_count": 2}, "cool": {"_count": 1}, "pictures": {"_count": 1}, "curve": {"_count": 1}, "scream": {"_count": 1}, "footsteps": {"_count": 1}, "barman": {"_count": 1}, "intensity": {"_count": 1}, "flashing": {"_count": 1}, "bangs": {"_count": 2}, "Carrows": {"_count": 2}, "entrance": {"_count": 1}, "earthy": {"_count": 1}, "bronze": {"_count": 1}, "rotting": {"_count": 1}, "musical": {"_count": 1}, "Room": {"_count": 1}, "members": {"_count": 1}, "diadem": {"_count": 1}, "painted": {"_count": 1}, "Vanishing": {"_count": 1}, "detritus": {"_count": 1}, "Slytherin": {"_count": 1}, "creaking": {"_count": 1}, "fingers": {"_count": 1}, "scene": {"_count": 1}, "job": {"_count": 1}, "attempts": {"_count": 1}, "mourners": {"_count": 1}, "deathly": {"_count": 1}, "gleam": {"_count": 1}, "stunted": {"_count": 1}, "lifting": {"_count": 1}, "whimperings": {"_count": 1}, "hinge": {"_count": 1}, "Boy": {"_count": 1}, "defenders": {"_count": 1}, "twangs": {"_count": 1}, "snakes": {"_count": 1}, "roars": {"_count": 2}, "thunderous": {"_count": 1}, "watching": {"_count": 2}, "Shield": {"_count": 1}, "Elder": {"_count": 1}, "cheers": {"_count": 1}, "rebirth": {"_count": 1}, "pride": {"_count": 1}, "gratitude": {"_count": 1}, "portraits": {"_count": 1}, "breath": {"_count": 1}, "redheaded": {"_count": 1}, "blurred": {"_count": 1}}, "join": {"_count": 10, "the": {"_count": 2}, "me": {"_count": 3}, "them": {"_count": 1}, "us": {"_count": 2}, "": {"_count": 1}, "Cedric": {"_count": 1}}, "kicked": {"_count": 18, "the": {"_count": 3}, "hard": {"_count": 1}, "off": {"_count": 6}, "at": {"_count": 1}, "it": {"_count": 2}, "back": {"_count": 1}, "Mostafa": {"_count": 1}, "him": {"_count": 1}, "several": {"_count": 1}, "up": {"_count": 1}}, "off": {"_count": 27, "into": {"_count": 1}, "they": {"_count": 3}, "he": {"_count": 2}, "we": {"_count": 1}, "she": {"_count": 1}, "through": {"_count": 1}, "particularly": {"_count": 1}, "up": {"_count": 2}, "ever": {"_count": 2}, "across": {"_count": 2}, "all": {"_count": 1}, "along": {"_count": 3}, "the": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 1}, "said": {"_count": 1}, "seemed": {"_count": 1}}, "took": {"_count": 64, "out": {"_count": 13}, "the": {"_count": 9}, "off": {"_count": 8}, "another": {"_count": 4}, "hold": {"_count": 1}, "huge": {"_count": 1}, "up": {"_count": 1}, "a": {"_count": 10}, "careful": {"_count": 1}, "it": {"_count": 2}, "his": {"_count": 1}, "me": {"_count": 1}, "all": {"_count": 1}, "to": {"_count": 1}, "Hedwig": {"_count": 1}, "particular": {"_count": 1}, "their": {"_count": 2}, "from": {"_count": 1}, "one": {"_count": 2}, "several": {"_count": 1}, "little": {"_count": 1}, "her": {"_count": 1}}, "twelve": {"_count": 5, "balls": {"_count": 1}, "percent": {"_count": 2}, "points": {"_count": 1}, "to": {"_count": 1}}, "with": {"_count": 63, "a": {"_count": 29}, "nothing": {"_count": 1}, "another": {"_count": 2}, "Hedwig": {"_count": 1}, "great": {"_count": 1}, "immense": {"_count": 1}, "Builtin": {"_count": 1}, "every": {"_count": 2}, "extraordinary": {"_count": 1}, "tears": {"_count": 1}, "fighting": {"_count": 1}, "each": {"_count": 2}, "no": {"_count": 1}, "me": {"_count": 1}, "good": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}, "an": {"_count": 2}, "many": {"_count": 1}, "small": {"_count": 1}, "it": {"_count": 2}, "Ron": {"_count": 1}, "any": {"_count": 1}, "one": {"_count": 1}, "barely": {"_count": 1}, "Harry": {"_count": 1}, "yells": {"_count": 1}, "echoing": {"_count": 1}, "hard": {"_count": 1}}, "tidy": {"_count": 1, "under": {"_count": 1}}, "pinched": {"_count": 1, "by": {"_count": 1}}, "saying": {"_count": 11, "in": {"_count": 2}, "loudly": {"_count": 1}, "a": {"_count": 1}, "Touch": {"_count": 1}, "she": {"_count": 1}, "your": {"_count": 1}, "shed": {"_count": 1}, "Episkey": {"_count": 1}, "Oh": {"_count": 1}, "Its": {"_count": 1}}, "lit": {"_count": 4, "up": {"_count": 1}, "by": {"_count": 1}, "a": {"_count": 1}, "upper": {"_count": 1}}, "now": {"_count": 68, "the": {"_count": 6}, "that": {"_count": 1}, "hes": {"_count": 5}, "Ron": {"_count": 1}, "people": {"_count": 1}, "": {"_count": 1}, "didnt": {"_count": 1}, "because": {"_count": 1}, "I": {"_count": 2}, "Harry": {"_count": 3}, "weve": {"_count": 3}, "showed": {"_count": 1}, "this": {"_count": 1}, "all": {"_count": 1}, "Hagrids": {"_count": 1}, "sitting": {"_count": 1}, "we": {"_count": 1}, "in": {"_count": 1}, "look": {"_count": 1}, "oh": {"_count": 1}, "Dumbledores": {"_count": 1}, "wished": {"_count": 1}, "her": {"_count": 1}, "burst": {"_count": 1}, "she": {"_count": 2}, "squeezed": {"_count": 1}, "pointed": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "made": {"_count": 1}, "watched": {"_count": 1}, "looked": {"_count": 1}, "he": {"_count": 6}, "turned": {"_count": 1}, "Harper": {"_count": 1}, "youve": {"_count": 1}, "able": {"_count": 1}, "seemed": {"_count": 1}, "three": {"_count": 1}, "for": {"_count": 1}, "Ted": {"_count": 1}, "his": {"_count": 1}, "little": {"_count": 1}, "there": {"_count": 1}, "Ariana": {"_count": 1}, "everything": {"_count": 1}, "Snape": {"_count": 1}, "Voldemort": {"_count": 1}}, "kissed": {"_count": 8, "by": {"_count": 1}, "him": {"_count": 5}, "the": {"_count": 2}}, "started": {"_count": 77, "looking": {"_count": 1}, "running": {"_count": 1}, "trying": {"_count": 2}, "talking": {"_count": 1}, "licking": {"_count": 1}, "to": {"_count": 21}, "at": {"_count": 1}, "toward": {"_count": 2}, "pulling": {"_count": 1}, "flicking": {"_count": 1}, "back": {"_count": 1}, "banging": {"_count": 1}, "beating": {"_count": 1}, "rubbing": {"_count": 1}, "across": {"_count": 1}, "up": {"_count": 2}, "wishing": {"_count": 1}, "emptying": {"_count": 1}, "twitching": {"_count": 1}, "work": {"_count": 1}, "making": {"_count": 2}, "threatening": {"_count": 1}, "turning": {"_count": 1}, "skating": {"_count": 1}, "testing": {"_count": 1}, "gabbling": {"_count": 1}, "jinxing": {"_count": 1}, "pushing": {"_count": 1}, "tugging": {"_count": 1}, "down": {"_count": 1}, "walking": {"_count": 3}, "applauding": {"_count": 1}, "cutting": {"_count": 1}, "slicing": {"_count": 1}, "asking": {"_count": 1}, "serving": {"_count": 1}, "dealing": {"_count": 1}, "but": {"_count": 1}, "fussing": {"_count": 1}, "sorting": {"_count": 1}, "scribbling": {"_count": 1}, "circling": {"_count": 1}, "practicing": {"_count": 1}, "signing": {"_count": 1}, "again": {"_count": 1}, "snatching": {"_count": 1}, "bullying": {"_count": 1}, "peeling": {"_count": 1}, "punching": {"_count": 1}, "casting": {"_count": 1}, "muttering": {"_count": 1}}, "after": {"_count": 40, "pulling": {"_count": 1}, "a": {"_count": 21}, "several": {"_count": 1}, "regarding": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 3}, "skirting": {"_count": 1}, "another": {"_count": 1}, "doffing": {"_count": 1}, "lunch": {"_count": 1}, "telling": {"_count": 1}, "checking": {"_count": 1}, "great": {"_count": 1}, "retrieving": {"_count": 1}, "Sirius": {"_count": 1}, "making": {"_count": 1}, "I": {"_count": 1}}, "that": {"_count": 151, "was": {"_count": 10}, "Hagrid": {"_count": 1}, "the": {"_count": 12}, "sort": {"_count": 1}, "monster": {"_count": 1}, "all": {"_count": 1}, "most": {"_count": 1}, "he": {"_count": 19}, "Harry": {"_count": 2}, "you": {"_count": 10}, "makes": {"_count": 2}, "they": {"_count": 5}, "Ravenclaw": {"_count": 1}, "green": {"_count": 1}, "a": {"_count": 2}, "had": {"_count": 1}, "Ron": {"_count": 1}, "Wood": {"_count": 1}, "I": {"_count": 2}, "Id": {"_count": 1}, "in": {"_count": 2}, "his": {"_count": 3}, "Bill": {"_count": 1}, "staring": {"_count": 1}, "night": {"_count": 1}, "Sirius": {"_count": 1}, "perhaps": {"_count": 1}, "Cedric": {"_count": 1}, "many": {"_count": 1}, "Horntail": {"_count": 1}, "watching": {"_count": 1}, "doesnt": {"_count": 1}, "boy": {"_count": 2}, "Madam": {"_count": 1}, "it": {"_count": 3}, "any": {"_count": 1}, "trying": {"_count": 1}, "flying": {"_count": 1}, "Ministry": {"_count": 1}, "Dads": {"_count": 1}, "theres": {"_count": 1}, "several": {"_count": 2}, "is": {"_count": 2}, "Umbridge": {"_count": 1}, "made": {"_count": 1}, "she": {"_count": 5}, "barmans": {"_count": 1}, "Bludger": {"_count": 1}, "room": {"_count": 1}, "could": {"_count": 1}, "judging": {"_count": 1}, "might": {"_count": 1}, "odd": {"_count": 1}, "means": {"_count": 1}, "your": {"_count": 1}, "person": {"_count": 1}, "nobody": {"_count": 1}, "includes": {"_count": 1}, "Weasley": {"_count": 1}, "thing": {"_count": 1}, "ought": {"_count": 1}, "hed": {"_count": 1}, "to": {"_count": 2}, "as": {"_count": 1}, "now": {"_count": 1}, "evening": {"_count": 1}, "we": {"_count": 3}, "of": {"_count": 1}, "Dean": {"_count": 1}, "massive": {"_count": 1}, "when": {"_count": 1}, "exposes": {"_count": 1}, "their": {"_count": 1}, "little": {"_count": 1}, "Dumbledore": {"_count": 1}, "must": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 1}, "Snape": {"_count": 1}, "would": {"_count": 1}, "Kingsley": {"_count": 1}}, "hated": {"_count": 2, "exercise": {"_count": 1}, "himself": {"_count": 1}}, "skinny": {"_count": 6, "for": {"_count": 2}, "with": {"_count": 1}, "and": {"_count": 1}, "wizard": {"_count": 1}, "ankles": {"_count": 1}}, "skinnier": {"_count": 1, "than": {"_count": 1}}, "Dudley": {"_count": 33, "was": {"_count": 1}, "on": {"_count": 1}, "then": {"_count": 1}, "were": {"_count": 4}, "could": {"_count": 1}, "": {"_count": 3}, "had": {"_count": 6}, "banged": {"_count": 1}, "by": {"_count": 1}, "promptly": {"_count": 1}, "into": {"_count": 1}, "screamed": {"_count": 1}, "looking": {"_count": 1}, "in": {"_count": 2}, "rattled": {"_count": 1}, "and": {"_count": 2}, "jumped": {"_count": 1}, "hurrying": {"_count": 1}, "skulking": {"_count": 1}, "Harrys": {"_count": 1}, "following": {"_count": 1}}, "bright": {"_count": 5, "green": {"_count": 1}, "powders": {"_count": 1}, "blue": {"_count": 1}, "pink": {"_count": 1}, "": {"_count": 1}}, "thick": {"_count": 11, "blond": {"_count": 1}, "mancrushing": {"_count": 1}, "pearly": {"_count": 2}, "streamers": {"_count": 1}, "black": {"_count": 3}, "walls": {"_count": 1}, "or": {"_count": 1}, "with": {"_count": 1}}, "bacon": {"_count": 5, "on": {"_count": 1}, "beneath": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "father": {"_count": 19, "": {"_count": 8}, "oh": {"_count": 1}, "beamed": {"_count": 1}, "smiling": {"_count": 1}, "but": {"_count": 1}, "Sirius": {"_count": 1}, "in": {"_count": 1}, "were": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}, "Lupin": {"_count": 1}, "and": {"_count": 1}}, "Daddy": {"_count": 1, "": {"_count": 1}}, "grabbed": {"_count": 13, "the": {"_count": 3}, "him": {"_count": 1}, "Quirrells": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}, "Errols": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}, "Hermione": {"_count": 1}, "Professor": {"_count": 1}, "Luna": {"_count": 1}}, "Aunt": {"_count": 27, "Petunia": {"_count": 23}, "Petunias": {"_count": 2}, "Marge": {"_count": 2}}, "Uncle": {"_count": 29, "Vernon": {"_count": 26}, "Vernons": {"_count": 3}}, "worried": {"_count": 6, "": {"_count": 3}, "or": {"_count": 1}, "he": {"_count": 1}, "voice": {"_count": 1}}, "Tufty": {"_count": 1, "again": {"_count": 1}}, "maybe": {"_count": 3, "even": {"_count": 1}, "he": {"_count": 1}, "years": {"_count": 1}}, "find": {"_count": 43, "the": {"_count": 9}, "them": {"_count": 3}, "out": {"_count": 8}, "Justin": {"_count": 1}, "theres": {"_count": 1}, "him": {"_count": 2}, "Vicky": {"_count": 1}, "his": {"_count": 1}, "an": {"_count": 1}, "me": {"_count": 2}, "a": {"_count": 1}, "someone": {"_count": 1}, "we": {"_count": 1}, "Ron": {"_count": 2}, "Umbridge": {"_count": 1}, "himself": {"_count": 1}, "Slughorn": {"_count": 1}, "something": {"_count": 2}, "themselves": {"_count": 1}, "Mundungus": {"_count": 1}, "to": {"_count": 1}, "her": {"_count": 1}}, "leave": {"_count": 9, "him": {"_count": 1}, "it": {"_count": 1}, "Hagrid": {"_count": 1}, "your": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}, "her": {"_count": 1}, "everyone": {"_count": 1}, "the": {"_count": 1}}, "wailed": {"_count": 1, "his": {"_count": 1}}, "youll": {"_count": 11, "be": {"_count": 6}, "lose": {"_count": 1}, "wish": {"_count": 1}, "see": {"_count": 1}, "pay": {"_count": 1}, "back": {"_count": 1}}, "cut": {"_count": 2, "his": {"_count": 1}, "Cho": {"_count": 1}}, "taped": {"_count": 1, "glasses": {"_count": 1}}, "to": {"_count": 65, "his": {"_count": 14}, "curl": {"_count": 1}, "their": {"_count": 2}, "ask": {"_count": 1}, "read": {"_count": 1}, "Rons": {"_count": 1}, "my": {"_count": 1}, "deliver": {"_count": 1}, "see": {"_count": 2}, "her": {"_count": 1}, "add": {"_count": 1}, "hear": {"_count": 1}, "Harrys": {"_count": 4}, "follow": {"_count": 1}, "Filch": {"_count": 1}, "resume": {"_count": 1}, "punish": {"_count": 1}, "keep": {"_count": 2}, "do": {"_count": 1}, "patrol": {"_count": 1}, "reassure": {"_count": 2}, "interpret": {"_count": 1}, "bring": {"_count": 1}, "spread": {"_count": 1}, "help": {"_count": 1}, "be": {"_count": 1}, "know": {"_count": 1}, "introduce": {"_count": 1}, "plot": {"_count": 1}, "Hermione": {"_count": 1}, "have": {"_count": 1}, "tell": {"_count": 2}, "contaminate": {"_count": 1}, "Ginny": {"_count": 1}, "Harry": {"_count": 2}, "leave": {"_count": 1}, "bind": {"_count": 1}, "this": {"_count": 1}, "fink": {"_count": 1}, "the": {"_count": 1}, "send": {"_count": 1}, "all": {"_count": 1}, "use": {"_count": 1}}, "Piers": {"_count": 5, "to": {"_count": 1}, "sniggered": {"_count": 1}, "large": {"_count": 1}, "who": {"_count": 1}, "wanted": {"_count": 1}}, "Harry": {"_count": 617, "were": {"_count": 10}, "was": {"_count": 42}, "read": {"_count": 3}, "shared": {"_count": 1}, "sat": {"_count": 6}, "felt": {"_count": 27}, "noticed": {"_count": 6}, "made": {"_count": 1}, "followed": {"_count": 11}, "leaned": {"_count": 4}, "not": {"_count": 1}, "nodded": {"_count": 2}, "recognized": {"_count": 3}, "heard": {"_count": 14}, "woke": {"_count": 1}, "looked": {"_count": 14}, "knew": {"_count": 28}, "": {"_count": 8}, "didnt": {"_count": 4}, "swung": {"_count": 1}, "had": {"_count": 21}, "slipped": {"_count": 2}, "stood": {"_count": 5}, "and": {"_count": 30}, "nearly": {"_count": 1}, "sitting": {"_count": 1}, "Hermione": {"_count": 2}, "streaked": {"_count": 1}, "ran": {"_count": 1}, "amazed": {"_count": 2}, "still": {"_count": 3}, "couldnt": {"_count": 6}, "settled": {"_count": 1}, "saw": {"_count": 48}, "after": {"_count": 2}, "if": {"_count": 1}, "found": {"_count": 5}, "suddenly": {"_count": 3}, "only": {"_count": 1}, "could": {"_count": 25}, "walked": {"_count": 8}, "suspiciously": {"_count": 1}, "together": {"_count": 2}, "Fred": {"_count": 1}, "Potter": {"_count": 9}, "who": {"_count": 6}, "edged": {"_count": 1}, "thinking": {"_count": 1}, "realized": {"_count": 7}, "shook": {"_count": 1}, "thought": {"_count": 12}, "both": {"_count": 3}, "shaking": {"_count": 2}, "reached": {"_count": 2}, "as": {"_count": 1}, "distinctly": {"_count": 3}, "realizing": {"_count": 1}, "threw": {"_count": 1}, "lay": {"_count": 1}, "stared": {"_count": 6}, "remembered": {"_count": 2}, "looking": {"_count": 3}, "wanted": {"_count": 1}, "Ron": {"_count": 8}, "drew": {"_count": 2}, "though": {"_count": 1}, "pulled": {"_count": 2}, "wheeled": {"_count": 1}, "caught": {"_count": 5}, "running": {"_count": 1}, "we": {"_count": 1}, "got": {"_count": 3}, "gave": {"_count": 2}, "wandered": {"_count": 1}, "pointing": {"_count": 1}, "another": {"_count": 1}, "filing": {"_count": 1}, "suspected": {"_count": 1}, "vividly": {"_count": 1}, "stopped": {"_count": 1}, "stuffed": {"_count": 1}, "grabbed": {"_count": 1}, "pocketed": {"_count": 1}, "bought": {"_count": 1}, "himself": {"_count": 1}, "following": {"_count": 1}, "youre": {"_count": 1}, "have": {"_count": 1}, "wondered": {"_count": 7}, "having": {"_count": 1}, "dived": {"_count": 2}, "grinned": {"_count": 1}, "squinting": {"_count": 1}, "dug": {"_count": 1}, "used": {"_count": 1}, "backed": {"_count": 1}, "went": {"_count": 4}, "a": {"_count": 1}, "said": {"_count": 3}, "let": {"_count": 4}, "wasted": {"_count": 1}, "set": {"_count": 1}, "in": {"_count": 4}, "closely": {"_count": 1}, "peering": {"_count": 1}, "somehow": {"_count": 1}, "beside": {"_count": 1}, "astonished": {"_count": 1}, "wobbled": {"_count": 1}, "his": {"_count": 1}, "broke": {"_count": 3}, "entered": {"_count": 1}, "laughed": {"_count": 1}, "did": {"_count": 7}, "recognizing": {"_count": 1}, "without": {"_count": 1}, "he": {"_count": 2}, "clapping": {"_count": 1}, "succeeded": {"_count": 1}, "came": {"_count": 3}, "listened": {"_count": 1}, "can": {"_count": 1}, "staring": {"_count": 1}, "climbed": {"_count": 2}, "halfrising": {"_count": 1}, "immobile": {"_count": 1}, "tensed": {"_count": 1}, "awoke": {"_count": 1}, "I": {"_count": 1}, "moving": {"_count": 1}, "simply": {"_count": 1}, "hurried": {"_count": 3}, "stretched": {"_count": 1}, "slid": {"_count": 2}, "with": {"_count": 1}, "elbowed": {"_count": 1}, "hot": {"_count": 1}, "whirled": {"_count": 1}, "dashed": {"_count": 1}, "placed": {"_count": 2}, "dear": {"_count": 1}, "zip": {"_count": 1}, "into": {"_count": 1}, "instinctively": {"_count": 2}, "led": {"_count": 1}, "pushed": {"_count": 1}, "PPotter": {"_count": 1}, "obeyed": {"_count": 1}, "kept": {"_count": 2}, "fell": {"_count": 2}, "joined": {"_count": 2}, "remained": {"_count": 1}, "sank": {"_count": 1}, "took": {"_count": 2}, "guessed": {"_count": 3}, "for": {"_count": 1}, "sped": {"_count": 2}, "resumed": {"_count": 2}, "leapt": {"_count": 1}, "helped": {"_count": 1}, "struggled": {"_count": 1}, "glimpsed": {"_count": 1}, "understood": {"_count": 2}, "approached": {"_count": 1}, "attempted": {"_count": 1}, "filled": {"_count": 1}, "mirrored": {"_count": 1}, "tapped": {"_count": 1}, "jumped": {"_count": 1}, "retired": {"_count": 1}, "seized": {"_count": 1}, "to": {"_count": 1}, "lifted": {"_count": 1}, "on": {"_count": 1}, "grasped": {"_count": 1}, "spun": {"_count": 1}, "gripped": {"_count": 2}, "cut": {"_count": 1}, "continued": {"_count": 1}, "murmured": {"_count": 1}, "pressed": {"_count": 1}, "received": {"_count": 1}, "tried": {"_count": 1}, "turned": {"_count": 3}, "sidled": {"_count": 1}, "awestruck": {"_count": 1}, "sprinted": {"_count": 1}, "turning": {"_count": 1}, "shouted": {"_count": 1}, "the": {"_count": 1}, "whose": {"_count": 1}, "expected": {"_count": 1}, "back": {"_count": 1}, "standing": {"_count": 1}}, "yelled": {"_count": 13, "at": {"_count": 1}, "as": {"_count": 3}, "Obliviatel": {"_count": 1}, "Team": {"_count": 1}, "Impedimental": {"_count": 2}, "Stupefy": {"_count": 1}, "Confringo": {"_count": 1}, "Stupefyl": {"_count": 1}, "I": {"_count": 1}, "HAGGER": {"_count": 1}}, "dark": {"_count": 10, "in": {"_count": 1}, "green": {"_count": 1}, "once": {"_count": 1}, "EXPECTO": {"_count": 1}, "shapes": {"_count": 1}, "": {"_count": 1}, "within": {"_count": 1}, "and": {"_count": 1}, "robes": {"_count": 1}, "The": {"_count": 1}}, "snakes": {"_count": 1, "were": {"_count": 1}}, "slithering": {"_count": 1, "over": {"_count": 1}}, "stone": {"_count": 2, "": {"_count": 1}, "indifferent": {"_count": 1}}, "crushed": {"_count": 2, "it": {"_count": 2}}, "winked": {"_count": 2, "too": {"_count": 1}, "": {"_count": 1}}, "gasped": {"_count": 6, "the": {"_count": 1}, "Troll": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "STUPEFY": {"_count": 1}, "for": {"_count": 1}}, "over": {"_count": 27, "again": {"_count": 14}, "with": {"_count": 1}, "the": {"_count": 2}, "Lavender": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 2}, "in": {"_count": 2}, "this": {"_count": 1}, "their": {"_count": 1}}, "get": {"_count": 89, "him": {"_count": 1}, "it": {"_count": 13}, "the": {"_count": 3}, "a": {"_count": 4}, "off": {"_count": 1}, "to": {"_count": 3}, "Ron": {"_count": 1}, "you": {"_count": 6}, "on": {"_count": 3}, "all": {"_count": 1}, "out": {"_count": 3}, "our": {"_count": 1}, "yourself": {"_count": 1}, "another": {"_count": 1}, "new": {"_count": 1}, "into": {"_count": 1}, "his": {"_count": 2}, "ready": {"_count": 2}, "themselves": {"_count": 1}, "someone": {"_count": 3}, "this": {"_count": 1}, "back": {"_count": 5}, "us": {"_count": 1}, "outside": {"_count": 1}, "an": {"_count": 1}, "in": {"_count": 1}, "some": {"_count": 2}, "me": {"_count": 1}, "your": {"_count": 3}, "rescued": {"_count": 1}, "inventing": {"_count": 1}, "packed": {"_count": 1}, "rid": {"_count": 2}, "those": {"_count": 1}, "changed": {"_count": 1}, "more": {"_count": 1}, "Defense": {"_count": 1}, "Hagrid": {"_count": 1}, "everyones": {"_count": 1}, "Madam": {"_count": 2}, "attacked": {"_count": 1}, "that": {"_count": 1}, "help": {"_count": 1}, "here": {"_count": 1}, "them": {"_count": 1}, "one": {"_count": 1}, "Flitwick": {"_count": 1}, "inside": {"_count": 1}}, "of": {"_count": 34, "course": {"_count": 16}, "the": {"_count": 3}, "my": {"_count": 1}, "how": {"_count": 4}, "Kreacher": {"_count": 1}, "tinkling": {"_count": 1}, "themselves": {"_count": 1}, "despair": {"_count": 1}, "longing": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hogwarts": {"_count": 1}, "Voldemorts": {"_count": 1}, "purer": {"_count": 1}}, "dreamed": {"_count": 1, "of": {"_count": 1}}, "broken": {"_count": 5, "glasses": {"_count": 1}, "window": {"_count": 1}, "windows": {"_count": 1}, "quills": {"_count": 1}, "furniture": {"_count": 1}}, "nobody": {"_count": 18, "liked": {"_count": 1}, "else": {"_count": 2}, "moved": {"_count": 1}, "was": {"_count": 2}, "will": {"_count": 2}, "not": {"_count": 1}, "knew": {"_count": 2}, "to": {"_count": 1}, "heard": {"_count": 1}, "other": {"_count": 1}, "at": {"_count": 1}, "Harry": {"_count": 1}, "died": {"_count": 1}, "seems": {"_count": 1}}, "first": {"_count": 1, "time": {"_count": 1}}, "Gordon": {"_count": 1, "were": {"_count": 1}}, "stupid": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "stupidest": {"_count": 1, "of": {"_count": 1}}, "thinking": {"_count": 6, "about": {"_count": 1}, "longingly": {"_count": 1}, "disconsolately": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}}, "for": {"_count": 54, "the": {"_count": 10}, "some": {"_count": 2}, "a": {"_count": 20}, "fifteen": {"_count": 1}, "that": {"_count": 1}, "once": {"_count": 1}, "all": {"_count": 7}, "this": {"_count": 1}, "Harry": {"_count": 2}, "one": {"_count": 2}, "whom": {"_count": 1}, "good": {"_count": 2}, "Professor": {"_count": 1}, "which": {"_count": 1}, "you": {"_count": 1}, "Kreacher": {"_count": 1}}, "practice": {"_count": 5, "": {"_count": 2}, "dueling": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}}, "she": {"_count": 181, "didnt": {"_count": 1}, "was": {"_count": 21}, "had": {"_count": 8}, "sprinted": {"_count": 1}, "whipped": {"_count": 1}, "suddenly": {"_count": 2}, "cursed": {"_count": 1}, "rolled": {"_count": 1}, "them": {"_count": 1}, "stopped": {"_count": 2}, "started": {"_count": 1}, "stalked": {"_count": 1}, "marched": {"_count": 2}, "cant": {"_count": 3}, "knows": {"_count": 1}, "bit": {"_count": 1}, "shrieked": {"_count": 1}, "lost": {"_count": 1}, "wont": {"_count": 1}, "too": {"_count": 2}, "seized": {"_count": 2}, "took": {"_count": 1}, "said": {"_count": 2}, "couldnt": {"_count": 1}, "seemed": {"_count": 2}, "pulled": {"_count": 5}, "struggled": {"_count": 1}, "and": {"_count": 3}, "blinked": {"_count": 1}, "walked": {"_count": 2}, "swung": {"_count": 3}, "ripped": {"_count": 1}, "would": {"_count": 2}, "let": {"_count": 4}, "grinned": {"_count": 1}, "turned": {"_count": 4}, "swept": {"_count": 2}, "went": {"_count": 3}, "truly": {"_count": 1}, "told": {"_count": 1}, "got": {"_count": 2}, "Harry": {"_count": 3}, "sat": {"_count": 1}, "strode": {"_count": 2}, "seems": {"_count": 1}, "threw": {"_count": 4}, "looked": {"_count": 4}, "never": {"_count": 2}, "set": {"_count": 2}, "doesnt": {"_count": 1}, "died": {"_count": 1}, "did": {"_count": 3}, "screeched": {"_count": 1}, "repaired": {"_count": 1}, "broke": {"_count": 1}, "blew": {"_count": 1}, "smiled": {"_count": 2}, "unfurled": {"_count": 1}, "made": {"_count": 1}, "touched": {"_count": 1}, "says": {"_count": 1}, "paused": {"_count": 1}, "raised": {"_count": 2}, "throws": {"_count": 1}, "settled": {"_count": 1}, "led": {"_count": 4}, "wouldnt": {"_count": 1}, "now": {"_count": 1}, "admitted": {"_count": 1}, "gave": {"_count": 1}, "ran": {"_count": 1}, "revolved": {"_count": 1}, "drew": {"_count": 1}, "dropped": {"_count": 2}, "backed": {"_count": 2}, "left": {"_count": 1}, "returned": {"_count": 1}, "swooped": {"_count": 1}, "heard": {"_count": 1}, "wiggled": {"_count": 1}, "answered": {"_count": 1}, "checked": {"_count": 1}, "ushered": {"_count": 1}, "lives": {"_count": 1}, "rushed": {"_count": 1}, "began": {"_count": 2}, "come": {"_count": 1}, "toppled": {"_count": 1}, "tottered": {"_count": 1}, "wore": {"_count": 1}, "placed": {"_count": 1}, "put": {"_count": 1}, "alone": {"_count": 1}, "greeted": {"_count": 1}, "stretched": {"_count": 1}, "pointed": {"_count": 1}, "lifted": {"_count": 1}, "wiped": {"_count": 1}, "forced": {"_count": 1}, "staggered": {"_count": 1}, "dragged": {"_count": 1}, "flounced": {"_count": 1}, "sounded": {"_count": 1}, "spoke": {"_count": 1}}, "flat": {"_count": 3, "straw": {"_count": 1}, "slimy": {"_count": 1}, "": {"_count": 1}}, "grownup": {"_count": 1, "": {"_count": 1}}, "flop": {"_count": 1, "of": {"_count": 1}}, "went": {"_count": 47, "to": {"_count": 10}, "down": {"_count": 8}, "outside": {"_count": 3}, "out": {"_count": 3}, "back": {"_count": 6}, "over": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 3}, "off": {"_count": 1}, "on": {"_count": 4}, "about": {"_count": 1}, "downstairs": {"_count": 1}, "berserk": {"_count": 1}, "regularly": {"_count": 1}, "while": {"_count": 1}, "inside": {"_count": 1}, "with": {"_count": 1}}, "heavy": {"_count": 7, "made": {"_count": 1}, "thudded": {"_count": 1}, "books": {"_count": 1}, "rain": {"_count": 1}, "gold": {"_count": 1}, "collide": {"_count": 1}, "eyebrows": {"_count": 1}}, "slowly": {"_count": 9, "began": {"_count": 1}, "they": {"_count": 1}, "tremulously": {"_count": 1}, "itll": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 1}, "Please": {"_count": 1}, "and": {"_count": 1}, "Snape": {"_count": 1}}, "flipped": {"_count": 2, "over": {"_count": 1}, "open": {"_count": 1}}, "glancing": {"_count": 7, "at": {"_count": 1}, "out": {"_count": 1}, "around": {"_count": 2}, "toward": {"_count": 1}, "anxiously": {"_count": 1}, "over": {"_count": 1}}, "read": {"_count": 33, "the": {"_count": 6}, "HOGWARTS": {"_count": 2}, "ALBUS": {"_count": 1}, "it": {"_count": 4}, "1": {"_count": 1}, "furiously": {"_count": 1}, "KWIKSPELL": {"_count": 1}, "aloud": {"_count": 5}, "Nonmagic": {"_count": 1}, "MINISTRY": {"_count": 1}, "Dear": {"_count": 1}, "BLACK": {"_count": 1}, "on": {"_count": 1}, "out": {"_count": 1}, "The": {"_count": 1}, "what": {"_count": 1}, "chapter": {"_count": 1}, "\u2018James": {"_count": 1}, "by": {"_count": 1}, "greedily": {"_count": 1}}, "made": {"_count": 40, "a": {"_count": 7}, "up": {"_count": 1}, "you": {"_count": 1}, "their": {"_count": 3}, "them": {"_count": 1}, "for": {"_count": 1}, "his": {"_count": 7}, "something": {"_count": 1}, "to": {"_count": 5}, "notes": {"_count": 1}, "him": {"_count": 3}, "an": {"_count": 2}, "directly": {"_count": 1}, "quite": {"_count": 1}, "sure": {"_count": 1}, "it": {"_count": 1}, "complicated": {"_count": 1}, "strange": {"_count": 1}, "the": {"_count": 1}}, "threw": {"_count": 57, "them": {"_count": 6}, "him": {"_count": 7}, "it": {"_count": 18}, "the": {"_count": 4}, "her": {"_count": 3}, "himself": {"_count": 5}, "each": {"_count": 1}, "herself": {"_count": 2}, "back": {"_count": 3}, "his": {"_count": 1}, "themselves": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "open": {"_count": 1}, "down": {"_count": 1}, "one": {"_count": 2}}, "floor": {"_count": 7, "": {"_count": 4}, "soaking": {"_count": 1}, "and": {"_count": 2}}, "I": {"_count": 350, "have": {"_count": 16}, "must": {"_count": 4}, "cant": {"_count": 10}, "hope": {"_count": 3}, "will": {"_count": 14}, "saw": {"_count": 6}, "ask": {"_count": 2}, "didnt": {"_count": 6}, "am": {"_count": 11}, "thought": {"_count": 9}, "wrote": {"_count": 1}, "are": {"_count": 10}, "ignored": {"_count": 1}, "blame": {"_count": 1}, "could": {"_count": 5}, "succeeded": {"_count": 1}, "sort": {"_count": 1}, "apologize": {"_count": 1}, "trust": {"_count": 1}, "um": {"_count": 1}, "was": {"_count": 12}, "dont": {"_count": 19}, "couldnt": {"_count": 5}, "repeated": {"_count": 1}, "need": {"_count": 3}, "got": {"_count": 2}, "know": {"_count": 11}, "asked": {"_count": 2}, "want": {"_count": 8}, "shudder": {"_count": 1}, "can": {"_count": 7}, "do": {"_count": 4}, "think": {"_count": 17}, "heard": {"_count": 7}, "looked": {"_count": 1}, "lost": {"_count": 1}, "certainly": {"_count": 2}, "went": {"_count": 1}, "swear": {"_count": 1}, "had": {"_count": 11}, "beg": {"_count": 1}, "daresay": {"_count": 2}, "invented": {"_count": 2}, "comes": {"_count": 1}, "died": {"_count": 1}, "found": {"_count": 2}, "say": {"_count": 1}, "doubt": {"_count": 1}, "gazed": {"_count": 1}, "only": {"_count": 2}, "expect": {"_count": 1}, "were": {"_count": 8}, "regret": {"_count": 2}, "quite": {"_count": 1}, "killed": {"_count": 1}, "waited": {"_count": 1}, "said": {"_count": 4}, "followed": {"_count": 2}, "stood": {"_count": 1}, "alone": {"_count": 1}, "did": {"_count": 3}, "wont": {"_count": 2}, "might": {"_count": 2}, "remembered": {"_count": 1}, "for": {"_count": 1}, "nextdoor": {"_count": 1}, "get": {"_count": 1}, "grew": {"_count": 1}, "managed": {"_count": 2}, "believe": {"_count": 4}, "shall": {"_count": 8}, "shouldve": {"_count": 1}, "nearly": {"_count": 1}, "mean": {"_count": 2}, "wouldve": {"_count": 2}, "suppose": {"_count": 2}, "really": {"_count": 2}, "kicked": {"_count": 1}, "prefer": {"_count": 1}, "answered": {"_count": 1}, "proceeded": {"_count": 1}, "suggest": {"_count": 1}, "assure": {"_count": 1}, "may": {"_count": 1}, "seem": {"_count": 1}, "persuaded": {"_count": 1}, "ripped": {"_count": 1}, "to": {"_count": 1}, "promised": {"_count": 1}, "used": {"_count": 2}, "almost": {"_count": 1}, "admit": {"_count": 1}, "tell": {"_count": 1}, "ave": {"_count": 1}, "wanted": {"_count": 2}, "knew": {"_count": 2}, "landed": {"_count": 1}, "work": {"_count": 1}, "promise": {"_count": 1}, "wouldnt": {"_count": 2}, "would": {"_count": 1}, "havent": {"_count": 1}, "overshot": {"_count": 1}, "the": {"_count": 2}, "remember": {"_count": 1}, "stand": {"_count": 1}, "panicked": {"_count": 1}, "came": {"_count": 2}, "ducked": {"_count": 1}, "left": {"_count": 1}, "count": {"_count": 1}, "urge": {"_count": 1}, "wondered": {"_count": 1}, "understand": {"_count": 1}, "I": {"_count": 1}, "live": {"_count": 1}, "ought": {"_count": 1}, "clear": {"_count": 1}, "order": {"_count": 1}, "taught": {"_count": 1}, "brought": {"_count": 1}, "reckon": {"_count": 1}, "look": {"_count": 1}, "Disapparated": {"_count": 1}, "": {"_count": 1}, "never": {"_count": 1}, "pulled": {"_count": 1}, "master": {"_count": 1}, "put": {"_count": 1}}, "one": {"_count": 38, "where": {"_count": 1}, "of": {"_count": 13}, "will": {"_count": 1}, "family": {"_count": 1}, "man": {"_count": 1}, "Hufflepuff": {"_count": 2}, "made": {"_count": 1}, "daughter": {"_count": 1}, "side": {"_count": 1}, "he": {"_count": 1}, "day": {"_count": 1}, "who": {"_count": 1}, "large": {"_count": 1}, "locked": {"_count": 1}, "wizard": {"_count": 1}, "that": {"_count": 1}, "guttering": {"_count": 1}, "gnarled": {"_count": 1}, "by": {"_count": 2}, "\u2018Exceeds": {"_count": 1}, "supposedly": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}, "victim": {"_count": 1}}, "things": {"_count": 6, "that": {"_count": 1}, "": {"_count": 3}, "Plumbers": {"_count": 1}, "like": {"_count": 1}}, "stretched": {"_count": 8, "out": {"_count": 2}, "": {"_count": 3}, "it": {"_count": 1}, "its": {"_count": 1}, "yawning": {"_count": 1}}, "thrown": {"_count": 7, "his": {"_count": 1}, "it": {"_count": 3}, "them": {"_count": 1}, "against": {"_count": 1}, "from": {"_count": 1}}, "bitterly": {"_count": 1, "wishing": {"_count": 1}}, "ran": {"_count": 39, "down": {"_count": 1}, "to": {"_count": 4}, "from": {"_count": 2}, "out": {"_count": 2}, "up": {"_count": 3}, "into": {"_count": 1}, "toward": {"_count": 1}, "slipping": {"_count": 1}, "at": {"_count": 3}, "flat": {"_count": 1}, "for": {"_count": 5}, "ran": {"_count": 1}, "her": {"_count": 1}, "through": {"_count": 1}, "hard": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "along": {"_count": 2}, "with": {"_count": 1}, "as": {"_count": 1}, "off": {"_count": 1}, "headfirst": {"_count": 1}, "you": {"_count": 1}, "away": {"_count": 1}, "backward": {"_count": 1}}, "round": {"_count": 6, "his": {"_count": 2}, "howling": {"_count": 1}, "their": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}}, "they": {"_count": 249, "seemed": {"_count": 2}, "left": {"_count": 5}, "sped": {"_count": 4}, "clambered": {"_count": 1}, "were": {"_count": 38}, "sat": {"_count": 4}, "had": {"_count": 18}, "learn": {"_count": 1}, "walked": {"_count": 3}, "marched": {"_count": 2}, "ran": {"_count": 3}, "spent": {"_count": 2}, "couldnt": {"_count": 1}, "kept": {"_count": 3}, "didnt": {"_count": 2}, "could": {"_count": 4}, "might": {"_count": 1}, "trundled": {"_count": 1}, "all": {"_count": 12}, "both": {"_count": 5}, "needed": {"_count": 1}, "set": {"_count": 3}, "inched": {"_count": 1}, "entered": {"_count": 3}, "make": {"_count": 2}, "heard": {"_count": 9}, "too": {"_count": 2}, "saw": {"_count": 6}, "turned": {"_count": 4}, "came": {"_count": 2}, "are": {"_count": 2}, "disappeared": {"_count": 1}, "got": {"_count": 3}, "started": {"_count": 2}, "burst": {"_count": 1}, "let": {"_count": 1}, "sprinted": {"_count": 1}, "stepped": {"_count": 4}, "fell": {"_count": 1}, "found": {"_count": 2}, "looked": {"_count": 4}, "Hermione": {"_count": 1}, "told": {"_count": 2}, "wont": {"_count": 2}, "flash": {"_count": 1}, "stopped": {"_count": 1}, "climbed": {"_count": 3}, "will": {"_count": 3}, "have": {"_count": 1}, "slammed": {"_count": 1}, "hurried": {"_count": 4}, "went": {"_count": 4}, "wore": {"_count": 1}, "bowed": {"_count": 1}, "need": {"_count": 1}, "became": {"_count": 1}, "made": {"_count": 2}, "waved": {"_count": 1}, "pleaded": {"_count": 1}, "pushed": {"_count": 1}, "just": {"_count": 1}, "followed": {"_count": 2}, "swayed": {"_count": 1}, "joined": {"_count": 1}, "know": {"_count": 2}, "would": {"_count": 3}, "crunched": {"_count": 1}, "nodded": {"_count": 1}, "greeted": {"_count": 1}, "work": {"_count": 1}, "passed": {"_count": 2}, "ascended": {"_count": 1}, "hastened": {"_count": 1}, "stood": {"_count": 2}, "dashed": {"_count": 1}, "flew": {"_count": 1}, "dragged": {"_count": 1}, "lost": {"_count": 1}, "began": {"_count": 1}, "beat": {"_count": 1}, "usually": {"_count": 1}, "cant": {"_count": 2}, "shook": {"_count": 1}, "sank": {"_count": 1}, "brought": {"_count": 1}, "immediately": {"_count": 1}, "want": {"_count": 1}, "jumped": {"_count": 2}, "illuminated": {"_count": 1}, "rushed": {"_count": 1}, "remained": {"_count": 1}, "used": {"_count": 1}, "edged": {"_count": 1}, "did": {"_count": 1}, "tortured": {"_count": 1}, "slipped": {"_count": 1}, "raced": {"_count": 1}, "collided": {"_count": 1}, "placed": {"_count": 1}, "start": {"_count": 1}, "acted": {"_count": 1}, "crumpled": {"_count": 1}}, "dressed": {"_count": 5, "silently": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}, "they": {"_count": 1}, "as": {"_count": 1}}, "squashy": {"_count": 2, "on": {"_count": 1}, "armchairs": {"_count": 1}}, "make": {"_count": 24, "a": {"_count": 2}, "it": {"_count": 6}, "sure": {"_count": 7}, "one": {"_count": 1}, "notes": {"_count": 1}, "yourselves": {"_count": 1}, "his": {"_count": 2}, "me": {"_count": 2}, "no": {"_count": 1}, "your": {"_count": 1}}, "by": {"_count": 36, "the": {"_count": 28}, "Christmas": {"_count": 1}, "checking": {"_count": 1}, "all": {"_count": 1}, "walking": {"_count": 1}, "its": {"_count": 1}, "planting": {"_count": 1}, "Rons": {"_count": 1}, "his": {"_count": 1}}, "nailed": {"_count": 2, "up": {"_count": 1}, "in": {"_count": 1}}, "me": {"_count": 34, "said": {"_count": 4}, "thats": {"_count": 1}, "": {"_count": 14}, "expelled": {"_count": 1}, "Harry": {"_count": 1}, "quite": {"_count": 1}, "funny": {"_count": 1}, "have": {"_count": 1}, "here": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 3}, "promise": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "Ron": {"_count": 1}}, "nails": {"_count": 1, "and": {"_count": 1}}, "boarded": {"_count": 1, "up": {"_count": 1}}, "back": {"_count": 42, "doors": {"_count": 1}, "again": {"_count": 13}, "into": {"_count": 10}, "last": {"_count": 1}, "onto": {"_count": 1}, "upstairs": {"_count": 1}, "to": {"_count": 8}, "up": {"_count": 2}, "but": {"_count": 1}, "": {"_count": 1}, "toward": {"_count": 1}, "breathing": {"_count": 1}, "as": {"_count": 1}}, "jumped": {"_count": 11, "at": {"_count": 1}, "": {"_count": 2}, "off": {"_count": 1}, "backward": {"_count": 2}, "aside": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 2}, "neatly": {"_count": 1}}, "hidden": {"_count": 5, "inside": {"_count": 1}, "them": {"_count": 1}, "": {"_count": 1}, "beneath": {"_count": 1}, "magical": {"_count": 1}}, "rather": {"_count": 19, "ill": {"_count": 2}, "large": {"_count": 2}, "attractive": {"_count": 1}, "cramped": {"_count": 1}, "moldylooking": {"_count": 1}, "sooner": {"_count": 1}, "snoutlike": {"_count": 1}, "miserable": {"_count": 1}, "dingy": {"_count": 1}, "thought": {"_count": 1}, "bloody": {"_count": 1}, "more": {"_count": 1}, "hairy": {"_count": 1}, "lower": {"_count": 1}, "unnerving": {"_count": 1}, "less": {"_count": 1}, "mousy": {"_count": 1}}, "caught": {"_count": 9, "him": {"_count": 1}, "it": {"_count": 4}, "sight": {"_count": 1}, "Fred": {"_count": 1}, "Rons": {"_count": 1}, "them": {"_count": 1}}, "were": {"_count": 47, "in": {"_count": 2}, "off": {"_count": 1}, "ready": {"_count": 1}, "not": {"_count": 1}, "going": {"_count": 1}, "just": {"_count": 2}, "pulling": {"_count": 1}, "talking": {"_count": 1}, "getting": {"_count": 1}, "out": {"_count": 1}, "walking": {"_count": 2}, "making": {"_count": 1}, "starting": {"_count": 1}, "looking": {"_count": 2}, "standing": {"_count": 2}, "pointing": {"_count": 1}, "able": {"_count": 1}, "soon": {"_count": 3}, "replaced": {"_count": 1}, "now": {"_count": 2}, "leaving": {"_count": 1}, "sobbing": {"_count": 1}, "trying": {"_count": 1}, "climbing": {"_count": 1}, "responsible": {"_count": 1}, "attempting": {"_count": 1}, "wheeling": {"_count": 1}, "busy": {"_count": 1}, "still": {"_count": 2}, "jockeying": {"_count": 1}, "edging": {"_count": 1}, "about": {"_count": 2}, "already": {"_count": 1}, "There": {"_count": 1}, "racing": {"_count": 1}, "lost": {"_count": 1}, "pursuing": {"_count": 1}}, "computer": {"_count": 1, "in": {"_count": 1}}, "drive": {"_count": 1, "in": {"_count": 1}}, "hed": {"_count": 10, "never": {"_count": 1}, "be": {"_count": 2}, "better": {"_count": 1}, "explain": {"_count": 1}, "manage": {"_count": 1}, "had": {"_count": 1}, "given": {"_count": 1}, "fallen": {"_count": 1}, "take": {"_count": 1}}, "damp": {"_count": 4, "musty": {"_count": 1}, "underfoot": {"_count": 1}, "from": {"_count": 1}, "again": {"_count": 1}}, "wondering": {"_count": 9, "": {"_count": 1}, "which": {"_count": 1}, "whether": {"_count": 5}, "where": {"_count": 1}, "what": {"_count": 1}}, "cold": {"_count": 14, "tinned": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 4}, "a": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 2}, "separated": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}}, "following": {"_count": 3, "her": {"_count": 2}, "Krum": {"_count": 1}}, "disappeared": {"_count": 32, "": {"_count": 4}, "off": {"_count": 1}, "from": {"_count": 7}, "up": {"_count": 2}, "into": {"_count": 4}, "through": {"_count": 4}, "down": {"_count": 2}, "behind": {"_count": 5}, "followed": {"_count": 1}, "in": {"_count": 1}, "inside": {"_count": 1}}, "you": {"_count": 103, "could": {"_count": 1}, "heard": {"_count": 1}, "wouldnt": {"_count": 2}, "still": {"_count": 3}, "know": {"_count": 7}, "mustnt": {"_count": 1}, "can": {"_count": 11}, "will": {"_count": 11}, "havent": {"_count": 3}, "two": {"_count": 2}, "couldnt": {"_count": 1}, "see": {"_count": 1}, "you": {"_count": 1}, "sort": {"_count": 1}, "Well": {"_count": 1}, "are": {"_count": 1}, "did": {"_count": 1}, "unfortunately": {"_count": 1}, "sir": {"_count": 1}, "dont": {"_count": 3}, "were": {"_count": 3}, "Dumbledore": {"_count": 1}, "wont": {"_count": 2}, "have": {"_count": 1}, "always": {"_count": 1}, "11": {"_count": 1}, "had": {"_count": 1}, "survive": {"_count": 1}, "might": {"_count": 1}, "": {"_count": 2}, "must": {"_count": 2}, "went": {"_count": 1}, "being": {"_count": 1}, "really": {"_count": 1}, "she": {"_count": 1}, "sent": {"_count": 1}, "dead": {"_count": 1}, "would": {"_count": 1}, "didnt": {"_count": 1}, "inherit": {"_count": 1}, "survived": {"_count": 1}, "very": {"_count": 1}, "do": {"_count": 1}, "a": {"_count": 2}, "shouldve": {"_count": 1}, "think": {"_count": 2}, "never": {"_count": 1}, "took": {"_count": 1}, "cant": {"_count": 3}, "reckon": {"_count": 1}, "following": {"_count": 1}, "hadnt": {"_count": 1}, "stab": {"_count": 1}, "need": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "shall": {"_count": 2}, "get": {"_count": 1}, "come": {"_count": 1}}, "didnt": {"_count": 16, "answer": {"_count": 2}, "speak": {"_count": 3}, "trouble": {"_count": 1}, "talk": {"_count": 1}, "try": {"_count": 1}, "want": {"_count": 1}, "wince": {"_count": 1}, "seem": {"_count": 1}, "hear": {"_count": 1}, "have": {"_count": 1}, "Dumbledore": {"_count": 1}, "that": {"_count": 1}, "know": {"_count": 1}}, "rain": {"_count": 4, "crept": {"_count": 1}, "sounded": {"_count": 1}, "lashed": {"_count": 1}, "added": {"_count": 1}}, "sliding": {"_count": 4, "led": {"_count": 1}, "beneath": {"_count": 1}, "on": {"_count": 1}, "he": {"_count": 1}}, "empty": {"_count": 15, "": {"_count": 5}, "and": {"_count": 2}, "before": {"_count": 1}, "across": {"_count": 1}, "when": {"_count": 1}, "drawing": {"_count": 1}, "as": {"_count": 1}, "common": {"_count": 1}, "fireplace": {"_count": 1}, "beside": {"_count": 1}}, "four": {"_count": 5, "bananas": {"_count": 1}, "or": {"_count": 2}, "seats": {"_count": 1}, "": {"_count": 1}}, "shriveled": {"_count": 3, "up": {"_count": 1}, "many": {"_count": 1}, "it": {"_count": 1}}, "more": {"_count": 62, "ferociously": {"_count": 1}, "children": {"_count": 1}, "interesting": {"_count": 1}, "nervous": {"_count": 2}, "slugs": {"_count": 1}, "loudly": {"_count": 1}, "days": {"_count": 1}, "hurried": {"_count": 1}, "stairs": {"_count": 1}, "footsteps": {"_count": 1}, "dangerous": {"_count": 2}, "exuberant": {"_count": 1}, "terrible": {"_count": 4}, "powerful": {"_count": 3}, "important": {"_count": 1}, "than": {"_count": 2}, "like": {"_count": 1}, "irritated": {"_count": 1}, "complicated": {"_count": 1}, "menacing": {"_count": 1}, "accurately": {"_count": 1}, "gangly": {"_count": 1}, "furiously": {"_count": 1}, "offensive": {"_count": 1}, "batty": {"_count": 1}, "confident": {"_count": 2}, "welcoming": {"_count": 1}, "as": {"_count": 1}, "people": {"_count": 1}, "toadlike": {"_count": 1}, "onerous": {"_count": 1}, "nettled": {"_count": 1}, "gruesome": {"_count": 1}, "prone": {"_count": 1}, "quietly": {"_count": 1}, "frequent": {"_count": 1}, "glass": {"_count": 1}, "pronounced": {"_count": 1}, "brutal": {"_count": 1}, "rapidly": {"_count": 1}, "talented": {"_count": 1}, "ragged": {"_count": 1}, "Mum": {"_count": 1}, "suspicious": {"_count": 1}, "uncontained": {"_count": 1}, "painful": {"_count": 1}, "warming": {"_count": 1}, "powerfully": {"_count": 1}, "detailed": {"_count": 1}, "of": {"_count": 2}, "aware": {"_count": 1}, "crowded": {"_count": 1}}, "watched": {"_count": 32, "his": {"_count": 3}, "as": {"_count": 2}, "with": {"_count": 2}, "for": {"_count": 1}, "buildings": {"_count": 1}, "the": {"_count": 3}, "Professor": {"_count": 1}, "Lupin": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 4}, "Dennis": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}, "them": {"_count": 3}, "": {"_count": 2}, "Cedric": {"_count": 1}, "Aunt": {"_count": 1}, "Pansy": {"_count": 1}, "Fleur": {"_count": 1}, "Ginny": {"_count": 1}}, "fitted": {"_count": 3, "it": {"_count": 3}}, "saw": {"_count": 186, "that": {"_count": 41}, "the": {"_count": 25}, "a": {"_count": 17}, "to": {"_count": 5}, "quite": {"_count": 1}, "other": {"_count": 1}, "before": {"_count": 1}, "him": {"_count": 4}, "Hermione": {"_count": 2}, "Nearly": {"_count": 1}, "Justin": {"_count": 1}, "its": {"_count": 1}, "Rons": {"_count": 1}, "Harry": {"_count": 5}, "it": {"_count": 1}, "Malfoy": {"_count": 3}, "you": {"_count": 2}, "Ron": {"_count": 5}, "Neville": {"_count": 1}, "six": {"_count": 1}, "with": {"_count": 3}, "his": {"_count": 5}, "an": {"_count": 3}, "something": {"_count": 4}, "lights": {"_count": 1}, "at": {"_count": 1}, "Mr": {"_count": 2}, "floating": {"_count": 1}, "illuminated": {"_count": 1}, "Hedwig": {"_count": 1}, "Angelina": {"_count": 2}, "MadEye": {"_count": 1}, "Cedric": {"_count": 2}, "Madam": {"_count": 1}, "Fleur": {"_count": 1}, "Moaning": {"_count": 1}, "instead": {"_count": 1}, "Moody": {"_count": 1}, "light": {"_count": 1}, "number": {"_count": 1}, "Cho": {"_count": 1}, "all": {"_count": 1}, "her": {"_count": 1}, "how": {"_count": 1}, "Professor": {"_count": 2}, "Hagrid": {"_count": 3}, "Hagrids": {"_count": 1}, "five": {"_count": 1}, "half": {"_count": 1}, "Bellatrix": {"_count": 1}, "Narcissa": {"_count": 1}, "what": {"_count": 2}, "Snape": {"_count": 1}, "nothing": {"_count": 3}, "sparks": {"_count": 1}, "Mrs": {"_count": 1}, "Ginnys": {"_count": 1}, "Kendra": {"_count": 1}, "Harrys": {"_count": 1}, "as": {"_count": 1}, "upon": {"_count": 1}, "ahead": {"_count": 1}, "terror": {"_count": 1}, "deep": {"_count": 1}, "Ginny": {"_count": 1}, "both": {"_count": 1}, "Voldemort": {"_count": 1}}, "entering": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "what": {"_count": 42, "he": {"_count": 5}, "a": {"_count": 2}, "would": {"_count": 2}, "sort": {"_count": 1}, "remained": {"_count": 2}, "was": {"_count": 7}, "is": {"_count": 4}, "the": {"_count": 1}, "do": {"_count": 1}, "it": {"_count": 1}, "use": {"_count": 1}, "looked": {"_count": 3}, "did": {"_count": 1}, "had": {"_count": 3}, "sounded": {"_count": 2}, "if": {"_count": 1}, "measures": {"_count": 1}, "hes": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "have": {"_count": 1}}, "Grounds": {"_count": 1, "at": {"_count": 1}}, "shook": {"_count": 29, "Harrys": {"_count": 2}, "his": {"_count": 7}, "the": {"_count": 1}, "hands": {"_count": 2}, "it": {"_count": 5}, "her": {"_count": 4}, "their": {"_count": 2}, "him": {"_count": 1}, "from": {"_count": 1}, "them": {"_count": 2}, "": {"_count": 1}, "Rons": {"_count": 1}}, "began": {"_count": 128, "taking": {"_count": 1}, "to": {"_count": 70}, "rubbing": {"_count": 1}, "sweeping": {"_count": 1}, "dragging": {"_count": 1}, "shuffling": {"_count": 2}, "brandishing": {"_count": 1}, "tearing": {"_count": 2}, "squinting": {"_count": 1}, "shouting": {"_count": 1}, "breaking": {"_count": 1}, "counting": {"_count": 1}, "zooming": {"_count": 1}, "chopping": {"_count": 1}, "jotting": {"_count": 1}, "arguing": {"_count": 1}, "throwing": {"_count": 2}, "searching": {"_count": 1}, "banging": {"_count": 1}, "wailing": {"_count": 1}, "snapping": {"_count": 1}, "ticking": {"_count": 1}, "shunting": {"_count": 1}, "attaching": {"_count": 1}, "walking": {"_count": 1}, "examining": {"_count": 1}, "pacing": {"_count": 1}, "filing": {"_count": 1}, "piling": {"_count": 1}, "Snapes": {"_count": 1}, "scribbling": {"_count": 3}, "questioning": {"_count": 1}, "beating": {"_count": 1}, "shaking": {"_count": 1}, "swatting": {"_count": 1}, "rifling": {"_count": 1}, "wending": {"_count": 1}, "leaping": {"_count": 1}, "spinning": {"_count": 1}, "marking": {"_count": 1}, "shoveling": {"_count": 1}, "playing": {"_count": 1}, "swirling": {"_count": 1}, "pulling": {"_count": 2}, "his": {"_count": 1}, "rummaging": {"_count": 2}, "siphoning": {"_count": 1}, "dabbing": {"_count": 1}, "swinging": {"_count": 1}, "tugging": {"_count": 1}, "reeling": {"_count": 1}, "at": {"_count": 1}}, "smell": {"_count": 1, "of": {"_count": 1}}, "wiped": {"_count": 7, "his": {"_count": 3}, "them": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}}, "stuff": {"_count": 10, "": {"_count": 5}, "from": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 2}, "and": {"_count": 1}}, "dad": {"_count": 24, "he": {"_count": 1}, "werent": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 8}, "are": {"_count": 2}, "wouldnt": {"_count": 2}, "why": {"_count": 1}, "You": {"_count": 1}, "again": {"_count": 1}, "dying": {"_count": 1}, "and": {"_count": 2}, "gone": {"_count": 1}, "appear": {"_count": 1}, "were": {"_count": 1}}, "sank": {"_count": 13, "even": {"_count": 1}, "into": {"_count": 4}, "his": {"_count": 1}, "down": {"_count": 1}, "onto": {"_count": 2}, "back": {"_count": 1}, "it": {"_count": 1}, "shaking": {"_count": 1}, "inches": {"_count": 1}}, "WIZARDRY": {"_count": 2, "Headmaster": {"_count": 1}, "UNIFORM": {"_count": 1}}, "Wizardry": {"_count": 18, "": {"_count": 9}, "this": {"_count": 2}, "where": {"_count": 1}, "and": {"_count": 1}, "has": {"_count": 1}, "the": {"_count": 1}, "reinstated": {"_count": 1}, "because": {"_count": 1}, "was": {"_count": 1}}, "equipment": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 21, "yet": {"_count": 1}, "what": {"_count": 4}, "the": {"_count": 5}, "side": {"_count": 1}, "its": {"_count": 2}, "his": {"_count": 2}, "Wormtail": {"_count": 1}, "inside": {"_count": 2}, "a": {"_count": 1}, "under": {"_count": 2}}, "sat": {"_count": 51, "down": {"_count": 39}, "knitting": {"_count": 1}, "quickly": {"_count": 1}, "with": {"_count": 2}, "bolt": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 3}, "primly": {"_count": 1}, "back": {"_count": 2}}, "closed": {"_count": 35, "it": {"_count": 6}, "the": {"_count": 15}, "his": {"_count": 9}, "their": {"_count": 1}, "her": {"_count": 1}, "its": {"_count": 1}, "tightly": {"_count": 1}, "then": {"_count": 1}}, "came": {"_count": 17, "home": {"_count": 1}, "out": {"_count": 2}, "swiftly": {"_count": 1}, "to": {"_count": 9}, "facetoface": {"_count": 1}, "in": {"_count": 1}, "over": {"_count": 1}, "quietly": {"_count": 1}}, "Lily": {"_count": 8, "that": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 2}, "alive": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "laughed": {"_count": 1}}, "got": {"_count": 29, "married": {"_count": 1}, "herself": {"_count": 1}, "his": {"_count": 1}, "up": {"_count": 3}, "Emeric": {"_count": 1}, "into": {"_count": 8}, "to": {"_count": 4}, "caught": {"_count": 2}, "a": {"_count": 3}, "really": {"_count": 1}, "dressed": {"_count": 1}, "out": {"_count": 1}, "thrown": {"_count": 1}, "there": {"_count": 1}}, "we": {"_count": 62, "got": {"_count": 1}, "continue": {"_count": 1}, "cant": {"_count": 1}, "were": {"_count": 6}, "all": {"_count": 3}, "couldve": {"_count": 1}, "thought": {"_count": 3}, "can": {"_count": 10}, "beg": {"_count": 1}, "never": {"_count": 2}, "went": {"_count": 1}, "shall": {"_count": 1}, "beat": {"_count": 1}, "couldnt": {"_count": 3}, "ask": {"_count": 1}, "er": {"_count": 1}, "are": {"_count": 3}, "dont": {"_count": 2}, "will": {"_count": 3}, "have": {"_count": 1}, "had": {"_count": 1}, "havent": {"_count": 2}, "must": {"_count": 1}, "wont": {"_count": 3}, "cccant": {"_count": 1}, "know": {"_count": 1}, "suspect": {"_count": 1}, "gave": {"_count": 1}, "heard": {"_count": 1}, "met": {"_count": 1}, "saw": {"_count": 1}, "wait": {"_count": 1}, "werent": {"_count": 1}}, "blew": {"_count": 6, "his": {"_count": 2}, "": {"_count": 2}, "hard": {"_count": 1}, "up": {"_count": 1}}, "as": {"_count": 114, "for": {"_count": 2}, "it": {"_count": 5}, "Percy": {"_count": 1}, "far": {"_count": 3}, "you": {"_count": 2}, "Im": {"_count": 1}, "Harry": {"_count": 10}, "Ginny": {"_count": 1}, "more": {"_count": 1}, "he": {"_count": 26}, "cold": {"_count": 1}, "Lockhart": {"_count": 1}, "the": {"_count": 11}, "this": {"_count": 1}, "his": {"_count": 4}, "I": {"_count": 1}, "one": {"_count": 2}, "Professor": {"_count": 2}, "well": {"_count": 1}, "Wood": {"_count": 1}, "their": {"_count": 1}, "Buckbeaks": {"_count": 1}, "darkness": {"_count": 1}, "high": {"_count": 1}, "they": {"_count": 11}, "another": {"_count": 1}, "part": {"_count": 1}, "an": {"_count": 1}, "though": {"_count": 2}, "those": {"_count": 1}, "Snape": {"_count": 1}, "Miss": {"_count": 1}, "usual": {"_count": 1}, "Marietta": {"_count": 1}, "Grawp": {"_count": 1}, "she": {"_count": 3}, "such": {"_count": 2}, "Rita": {"_count": 1}, "neither": {"_count": 1}, "a": {"_count": 2}, "Hermione": {"_count": 1}, "her": {"_count": 1}}, "drew": {"_count": 17, "a": {"_count": 1}, "his": {"_count": 1}, "back": {"_count": 2}, "out": {"_count": 9}, "up": {"_count": 1}, "himself": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}}, "fell": {"_count": 61, "silent": {"_count": 6}, "onto": {"_count": 1}, "into": {"_count": 3}, "asleep": {"_count": 5}, "to": {"_count": 10}, "over": {"_count": 4}, "off": {"_count": 1}, "back": {"_count": 3}, "twitching": {"_count": 1}, "out": {"_count": 3}, "with": {"_count": 4}, "rapidly": {"_count": 2}, "backward": {"_count": 1}, "as": {"_count": 1}, "silently": {"_count": 1}, "slowly": {"_count": 1}, "softly": {"_count": 1}, "lightly": {"_count": 1}, "easily": {"_count": 1}, "in": {"_count": 1}, "gracefully": {"_count": 1}, "sideways": {"_count": 1}, "away": {"_count": 1}, "flat": {"_count": 1}, "forward": {"_count": 1}, "grazing": {"_count": 1}, "tripping": {"_count": 1}, "from": {"_count": 1}, "neatly": {"_count": 1}, "and": {"_count": 1}}, "sitting": {"_count": 10, "back": {"_count": 1}, "on": {"_count": 2}, "down": {"_count": 4}, "beside": {"_count": 1}, "astride": {"_count": 1}, "room": {"_count": 1}}, "respect": {"_count": 2, "blazing": {"_count": 1}, "": {"_count": 1}}, "proud": {"_count": 5, "felt": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "bullied": {"_count": 1, "by": {"_count": 1}}, "hell": {"_count": 5, "be": {"_count": 3}, "go": {"_count": 1}, "crush": {"_count": 1}}, "wands": {"_count": 1, "and": {"_count": 1}}, "If": {"_count": 1, "he": {"_count": 1}}, "wizardry": {"_count": 1, "in": {"_count": 1}}, "whirled": {"_count": 2, "it": {"_count": 2}}, "slammed": {"_count": 16, "the": {"_count": 6}, "them": {"_count": 1}, "it": {"_count": 3}, "into": {"_count": 2}, "his": {"_count": 2}, "him": {"_count": 1}, "against": {"_count": 1}}, "weve": {"_count": 11, "got": {"_count": 6}, "been": {"_count": 2}, "started": {"_count": 1}, "seen": {"_count": 1}, "told": {"_count": 1}}, "Hagrid": {"_count": 54, "s": {"_count": 1}, "could": {"_count": 2}, "led": {"_count": 1}, "made": {"_count": 2}, "had": {"_count": 3}, "took": {"_count": 1}, "was": {"_count": 5}, "would": {"_count": 1}, "burst": {"_count": 1}, "ran": {"_count": 1}, "": {"_count": 3}, "who": {"_count": 2}, "hurrying": {"_count": 1}, "a": {"_count": 1}, "were": {"_count": 2}, "but": {"_count": 1}, "came": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "now": {"_count": 1}, "threw": {"_count": 1}, "roared": {"_count": 1}, "running": {"_count": 1}, "says": {"_count": 1}, "set": {"_count": 1}, "decided": {"_count": 1}, "together": {"_count": 1}, "drank": {"_count": 1}, "poured": {"_count": 1}, "moved": {"_count": 1}, "walked": {"_count": 1}, "said": {"_count": 1}, "squeezed": {"_count": 1}, "only": {"_count": 1}, "hurtled": {"_count": 1}, "several": {"_count": 1}, "shouted": {"_count": 1}, "standing": {"_count": 1}, "pounded": {"_count": 1}, "and": {"_count": 2}, "stumbled": {"_count": 1}}, "jerked": {"_count": 5, "it": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 2}, "and": {"_count": 1}}, "dropped": {"_count": 23, "the": {"_count": 4}, "a": {"_count": 3}, "it": {"_count": 4}, "with": {"_count": 1}, "pipes": {"_count": 1}, "to": {"_count": 2}, "their": {"_count": 1}, "his": {"_count": 2}, "an": {"_count": 1}, "him": {"_count": 1}, "Secrets": {"_count": 1}, "her": {"_count": 1}, "onto": {"_count": 1}}, "carried": {"_count": 11, "on": {"_count": 2}, "the": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "out": {"_count": 2}, "his": {"_count": 2}, "around": {"_count": 1}, "him": {"_count": 1}}, "looking": {"_count": 89, "at": {"_count": 8}, "longingly": {"_count": 1}, "round": {"_count": 2}, "wildly": {"_count": 1}, "dignified": {"_count": 1}, "happy": {"_count": 1}, "excited": {"_count": 1}, "anxious": {"_count": 1}, "around": {"_count": 9}, "irritable": {"_count": 1}, "as": {"_count": 4}, "delighted": {"_count": 1}, "uncharacteristically": {"_count": 1}, "from": {"_count": 1}, "up": {"_count": 7}, "over": {"_count": 1}, "awestruck": {"_count": 1}, "dejected": {"_count": 1}, "indignantly": {"_count": 1}, "expectantly": {"_count": 1}, "nervous": {"_count": 1}, "extremely": {"_count": 1}, "very": {"_count": 4}, "back": {"_count": 3}, "agitated": {"_count": 1}, "twice": {"_count": 1}, "to": {"_count": 1}, "slowly": {"_count": 1}, "down": {"_count": 2}, "positively": {"_count": 1}, "fearfully": {"_count": 1}, "so": {"_count": 1}, "timidly": {"_count": 1}, "guilty": {"_count": 1}, "slightly": {"_count": 1}, "anxiously": {"_count": 1}, "daggers": {"_count": 1}, "grumpy": {"_count": 1}, "equally": {"_count": 1}, "like": {"_count": 1}, "quite": {"_count": 1}, "awkward": {"_count": 1}, "out": {"_count": 2}, "morosely": {"_count": 1}, "ahead": {"_count": 1}, "putupon": {"_count": 1}, "despite": {"_count": 1}, "suspicious": {"_count": 1}, "stern": {"_count": 1}, "mutinous": {"_count": 1}, "rather": {"_count": 1}, "wary": {"_count": 1}, "suddenly": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}, "behind": {"_count": 1}, "left": {"_count": 1}}, "learn": {"_count": 4, "magic": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 2}}, "scratching": {"_count": 3, "his": {"_count": 3}}, "rob": {"_count": 1, "Gringotts": {"_count": 1}}, "thought": {"_count": 21, "about": {"_count": 2}, "Not": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 4}, "it": {"_count": 2}, "they": {"_count": 1}, "youd": {"_count": 1}, "gloomily": {"_count": 1}, "his": {"_count": 1}, "no": {"_count": 1}, "how": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 1}, "we": {"_count": 1}, "theyd": {"_count": 1}}, "Fungi": {"_count": 6, "by": {"_count": 1}, "": {"_count": 3}, "didnt": {"_count": 1}, "with": {"_count": 1}}, "Potions": {"_count": 4, "by": {"_count": 1}, "": {"_count": 1}, "up": {"_count": 1}, "and": {"_count": 1}}, "Where": {"_count": 3, "to": {"_count": 3}}, "complained": {"_count": 1, "loudly": {"_count": 1}}, "music": {"_count": 1, "stores": {"_count": 1}}, "cinemas": {"_count": 1, "but": {"_count": 1}}, "broomsticks": {"_count": 1, "": {"_count": 1}}, "shabby": {"_count": 5, "": {"_count": 2}, "looking": {"_count": 1}, "allnight": {"_count": 1}, "square": {"_count": 1}}, "smiled": {"_count": 8, "at": {"_count": 4}, "widely": {"_count": 1}, "benignly": {"_count": 1}, "down": {"_count": 1}, "he": {"_count": 1}}, "making": {"_count": 11, "Harrys": {"_count": 1}, "bizarre": {"_count": 1}, "him": {"_count": 1}, "sure": {"_count": 3}, "sneering": {"_count": 1}, "friends": {"_count": 1}, "it": {"_count": 1}, "notes": {"_count": 1}, "a": {"_count": 1}}, "silent": {"_count": 15, "": {"_count": 6}, "hat": {"_count": 1}, "said": {"_count": 1}, "specter": {"_count": 1}, "and": {"_count": 1}, "while": {"_count": 1}, "for": {"_count": 1}, "listening": {"_count": 1}, "so": {"_count": 1}, "under": {"_count": 1}}, "seized": {"_count": 19, "his": {"_count": 1}, "the": {"_count": 8}, "it": {"_count": 1}, "a": {"_count": 2}, "Dumbledore": {"_count": 1}, "Nevilles": {"_count": 1}, "one": {"_count": 1}, "her": {"_count": 1}, "Katies": {"_count": 1}, "hold": {"_count": 1}, "Georges": {"_count": 1}}, "again": {"_count": 29, "Doris": {"_count": 1}, "why": {"_count": 1}, "Ron": {"_count": 1}, "that": {"_count": 2}, "the": {"_count": 2}, "": {"_count": 3}, "Harry": {"_count": 2}, "glancing": {"_count": 1}, "to": {"_count": 2}, "speaking": {"_count": 1}, "they": {"_count": 2}, "and": {"_count": 4}, "at": {"_count": 2}, "no": {"_count": 1}, "Dumbledore": {"_count": 1}, "until": {"_count": 1}, "had": {"_count": 1}, "his": {"_count": 1}}, "out": {"_count": 95, "into": {"_count": 8}, "of": {"_count": 73}, "on": {"_count": 1}, "including": {"_count": 1}, "onto": {"_count": 3}, "through": {"_count": 3}, "came": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 2}}, "wider": {"_count": 3, "a": {"_count": 1}, "to": {"_count": 1}, "finally": {"_count": 1}}, "Snowy": {"_count": 1, "": {"_count": 1}}, "strange": {"_count": 2, "silver": {"_count": 1}, "and": {"_count": 1}}, "eels": {"_count": 1, "eyes": {"_count": 1}}, "rolls": {"_count": 2, "of": {"_count": 2}}, "gold": {"_count": 27, "was": {"_count": 1}, "sparks": {"_count": 3}, "badge": {"_count": 1}, "in": {"_count": 2}, "plumage": {"_count": 1}, "and": {"_count": 3}, "bracelets": {"_count": 1}, "fall": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}, "moving": {"_count": 1}, "cheered": {"_count": 1}, "the": {"_count": 1}, "hangings": {"_count": 1}, "a": {"_count": 1}, "streamers": {"_count": 1}, "flowers": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 1}, "gleamed": {"_count": 1}, "its": {"_count": 1}}, "feet": {"_count": 6, "": {"_count": 1}, "and": {"_count": 1}, "stuck": {"_count": 1}, "were": {"_count": 1}, "all": {"_count": 1}, "giving": {"_count": 1}}, "yet": {"_count": 31, "more": {"_count": 2}, "he": {"_count": 7}, "Dumbledore": {"_count": 1}, "": {"_count": 2}, "again": {"_count": 1}, "quite": {"_count": 1}, "his": {"_count": 2}, "nobody": {"_count": 1}, "there": {"_count": 3}, "Harry": {"_count": 3}, "it": {"_count": 2}, "wonderful": {"_count": 1}, "all": {"_count": 1}, "Harrys": {"_count": 1}, "here": {"_count": 1}, "did": {"_count": 1}, "to": {"_count": 1}}, "thirteen": {"_count": 11, "": {"_count": 2}, "now": {"_count": 1}, "had": {"_count": 1}, "if": {"_count": 1}, "was": {"_count": 1}, "whereas": {"_count": 1}, "followed": {"_count": 1}, "said": {"_count": 1}, "watching": {"_count": 1}, "but": {"_count": 1}}, "twisted": {"_count": 9, "around": {"_count": 3}, "itself": {"_count": 1}, "and": {"_count": 1}, "themselves": {"_count": 1}, "furling": {"_count": 1}, "up": {"_count": 1}, "underfoot": {"_count": 1}}, "stalagmites": {"_count": 1, "grew": {"_count": 1}}, "twentynine": {"_count": 1, "Knuts": {"_count": 1}}, "can": {"_count": 2, "we": {"_count": 1}, "be": {"_count": 1}}, "gathering": {"_count": 2, "speed": {"_count": 1}, "up": {"_count": 1}}, "colder": {"_count": 5, "as": {"_count": 1}, "than": {"_count": 2}, "with": {"_count": 1}, "": {"_count": 1}}, "pulled": {"_count": 125, "him": {"_count": 17}, "on": {"_count": 7}, "out": {"_count": 33}, "": {"_count": 6}, "his": {"_count": 5}, "the": {"_count": 11}, "as": {"_count": 1}, "hard": {"_count": 1}, "Millicent": {"_count": 1}, "it": {"_count": 6}, "off": {"_count": 6}, "them": {"_count": 5}, "a": {"_count": 3}, "Harry": {"_count": 4}, "Rons": {"_count": 1}, "Harrys": {"_count": 1}, "open": {"_count": 1}, "her": {"_count": 5}, "up": {"_count": 2}, "back": {"_count": 1}, "every": {"_count": 1}, "but": {"_count": 2}, "one": {"_count": 1}, "herself": {"_count": 1}, "toward": {"_count": 1}, "Percy": {"_count": 1}, "at": {"_count": 1}}, "trapped": {"_count": 1, "in": {"_count": 1}}, "tucked": {"_count": 9, "it": {"_count": 6}, "under": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}}, "dont": {"_count": 17, "talk": {"_count": 2}, "be": {"_count": 2}, "think": {"_count": 1}, "breathe": {"_count": 1}, "worry": {"_count": 1}, "give": {"_count": 1}, "do": {"_count": 1}, "move": {"_count": 1}, "come": {"_count": 1}, "touch": {"_count": 1}, "forget": {"_count": 3}, "let": {"_count": 1}, "tell": {"_count": 1}}, "mothers": {"_count": 1, "up": {"_count": 1}}, "Ill": {"_count": 29, "smuggle": {"_count": 1}, "try": {"_count": 1}, "bring": {"_count": 1}, "act": {"_count": 1}, "give": {"_count": 2}, "be": {"_count": 8}, "just": {"_count": 1}, "get": {"_count": 2}, "have": {"_count": 1}, "bet": {"_count": 4}, "tell": {"_count": 1}, "never": {"_count": 2}, "take": {"_count": 1}, "put": {"_count": 1}, "sit": {"_count": 1}, "go": {"_count": 1}}, "less": {"_count": 5, "every": {"_count": 1}, "imposing": {"_count": 1}, "pressure": {"_count": 1}, "human": {"_count": 1}, "powerful": {"_count": 1}}, "every": {"_count": 22, "now": {"_count": 5}, "time": {"_count": 2}, "one": {"_count": 5}, "good": {"_count": 1}, "meddler": {"_count": 1}, "wand": {"_count": 1}, "spell": {"_count": 1}, "thought": {"_count": 1}, "free": {"_count": 1}, "plant": {"_count": 1}, "blister": {"_count": 1}, "Ravenclaw": {"_count": 1}, "combatant": {"_count": 1}}, "ends": {"_count": 2, "up": {"_count": 1}, "with": {"_count": 1}}, "wizard": {"_count": 9, "if": {"_count": 1}, "themselves": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "witnesses": {"_count": 1}, "parents": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 1}}, "raspberry": {"_count": 1, "with": {"_count": 1}}, "quills": {"_count": 6, "": {"_count": 1}, "people": {"_count": 1}, "kept": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}}, "theres": {"_count": 10, "four": {"_count": 1}, "a": {"_count": 2}, "its": {"_count": 1}, "the": {"_count": 1}, "no": {"_count": 4}, "nobody": {"_count": 1}}, "Hufflepuff": {"_count": 11, "": {"_count": 1}, "were": {"_count": 2}, "tables": {"_count": 6}, "are": {"_count": 1}, "he": {"_count": 1}}, "Blotts": {"_count": 20, "where": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 8}, "today": {"_count": 1}, "the": {"_count": 2}, "ten": {"_count": 1}, "and": {"_count": 2}, "bookshop": {"_count": 1}, "under": {"_count": 1}, "with": {"_count": 1}, "looking": {"_count": 1}}, "Countercurses": {"_count": 1, "Bewitch": {"_count": 1}}, "Befuddle": {"_count": 1, "Your": {"_count": 1}}, "Much": {"_count": 1, "Much": {"_count": 1}}, "rotted": {"_count": 1, "cabbages": {"_count": 1}}, "snarled": {"_count": 1, "claws": {"_count": 1}}, "minuscule": {"_count": 1, "glittery": {"_count": 1}}, "full": {"_count": 8, "of": {"_count": 8}}, "flickering": {"_count": 1, "jewelbright": {"_count": 1}}, "yeh": {"_count": 2, "gotta": {"_count": 1}, "bow": {"_count": 1}}, "silence": {"_count": 14, "in": {"_count": 1}, "": {"_count": 3}, "fell": {"_count": 9}, "was": {"_count": 1}}, "excellent": {"_count": 1, "for": {"_count": 1}}, "dragon": {"_count": 5, "heartstring": {"_count": 4}, "blood": {"_count": 1}}, "flexible": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "give": {"_count": 11, "it": {"_count": 1}, "all": {"_count": 1}, "him": {"_count": 4}, "the": {"_count": 1}, "that": {"_count": 1}, "everyone": {"_count": 1}, "her": {"_count": 1}, "himself": {"_count": 1}}, "feeling": {"_count": 9, "foolish": {"_count": 1}, "slightly": {"_count": 2}, "his": {"_count": 2}, "cold": {"_count": 1}, "happier": {"_count": 1}, "insulted": {"_count": 1}, "that": {"_count": 1}}, "phoenix": {"_count": 7, "feather": {"_count": 5}, "wand": {"_count": 2}}, "unicorn": {"_count": 3, "hair": {"_count": 3}}, "higher": {"_count": 13, "on": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "until": {"_count": 1}, "blazing": {"_count": 1}, "squealing": {"_count": 1}, "than": {"_count": 2}, "they": {"_count": 2}, "he": {"_count": 1}, "London": {"_count": 1}, "now": {"_count": 1}}, "supple": {"_count": 2, "": {"_count": 2}}, "clapped": {"_count": 8, "and": {"_count": 2}, "as": {"_count": 1}, "her": {"_count": 1}, "Nearly": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "Mr": {"_count": 54, "Ollivander": {"_count": 3}, "Malfoy": {"_count": 6}, "Borgin": {"_count": 2}, "Weasley": {"_count": 26}, "Crouch": {"_count": 3}, "Ludo": {"_count": 1}, "Bagman": {"_count": 2}, "Summers": {"_count": 1}, "Crouchs": {"_count": 1}, "Harry": {"_count": 1}, "Tibbies": {"_count": 1}, "and": {"_count": 6}, "Filch": {"_count": 1}}, "wrapped": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "themselves": {"_count": 1}}, "eyebrows": {"_count": 1, "he": {"_count": 1}}, "pressed": {"_count": 12, "his": {"_count": 5}, "their": {"_count": 1}, "herself": {"_count": 1}, "down": {"_count": 1}, "her": {"_count": 2}, "the": {"_count": 1}, "together": {"_count": 1}}, "three": {"_count": 12, "quarters": {"_count": 3}, "days": {"_count": 1}, "people": {"_count": 3}, "times": {"_count": 1}, "Death": {"_count": 1}, "glasses": {"_count": 1}, "truants": {"_count": 1}, "redheaded": {"_count": 1}}, "threequarters": {"_count": 17, "": {"_count": 8}, "came": {"_count": 1}, "at": {"_count": 1}, "which": {"_count": 2}, "and": {"_count": 2}, "by": {"_count": 1}, "materialized": {"_count": 1}, "where": {"_count": 1}}, "was": {"_count": 221, "too": {"_count": 2}, "even": {"_count": 2}, "relieved": {"_count": 1}, "threatening": {"_count": 1}, "afraid": {"_count": 1}, "amazed": {"_count": 1}, "startled": {"_count": 1}, "muttering": {"_count": 1}, "now": {"_count": 20}, "trailing": {"_count": 1}, "chuckling": {"_count": 1}, "halfway": {"_count": 2}, "beating": {"_count": 1}, "thinking": {"_count": 1}, "losing": {"_count": 1}, "being": {"_count": 2}, "clearly": {"_count": 2}, "as": {"_count": 1}, "looking": {"_count": 5}, "just": {"_count": 3}, "followed": {"_count": 1}, "wearing": {"_count": 4}, "told": {"_count": 2}, "quickly": {"_count": 1}, "shortly": {"_count": 1}, "absentmindedly": {"_count": 1}, "grazing": {"_count": 1}, "staring": {"_count": 4}, "holding": {"_count": 5}, "gone": {"_count": 3}, "explaining": {"_count": 1}, "walking": {"_count": 1}, "inexplicably": {"_count": 1}, "passing": {"_count": 1}, "whirling": {"_count": 1}, "still": {"_count": 3}, "soon": {"_count": 2}, "careful": {"_count": 1}, "about": {"_count": 1}, "pulling": {"_count": 3}, "pointing": {"_count": 3}, "gazing": {"_count": 1}, "eyeing": {"_count": 1}, "plainly": {"_count": 1}, "acting": {"_count": 1}, "immediately": {"_count": 1}, "tugging": {"_count": 1}, "none": {"_count": 1}, "rolling": {"_count": 1}, "attempting": {"_count": 3}, "leading": {"_count": 1}, "facing": {"_count": 2}, "handsome": {"_count": 1}, "blasting": {"_count": 1}, "dragging": {"_count": 2}, "hugging": {"_count": 1}, "second": {"_count": 1}, "making": {"_count": 2}, "grinding": {"_count": 1}, "killed": {"_count": 1}, "sucking": {"_count": 1}, "not": {"_count": 3}, "lying": {"_count": 1}, "circling": {"_count": 1}, "striding": {"_count": 1}, "absorbed": {"_count": 2}, "starting": {"_count": 1}, "intending": {"_count": 1}, "replaced": {"_count": 1}, "thoroughly": {"_count": 1}, "waiting": {"_count": 1}, "sure": {"_count": 4}, "surprised": {"_count": 1}, "sitting": {"_count": 1}, "on": {"_count": 1}, "determined": {"_count": 3}, "therefore": {"_count": 3}, "talking": {"_count": 2}, "fretting": {"_count": 1}, "very": {"_count": 1}, "apparently": {"_count": 1}, "asleep": {"_count": 1}, "leaning": {"_count": 1}, "rubbing": {"_count": 1}, "scooping": {"_count": 1}, "one": {"_count": 1}, "reading": {"_count": 3}, "unavailable": {"_count": 1}, "patting": {"_count": 1}, "flopping": {"_count": 1}, "stowing": {"_count": 1}, "watching": {"_count": 1}, "pleased": {"_count": 1}, "knocked": {"_count": 1}, "proceeding": {"_count": 1}, "again": {"_count": 2}, "offering": {"_count": 1}, "the": {"_count": 1}, "reduced": {"_count": 2}, "at": {"_count": 1}, "climbing": {"_count": 1}, "promptly": {"_count": 1}, "gasping": {"_count": 1}, "already": {"_count": 1}, "taking": {"_count": 1}, "set": {"_count": 1}, "instantly": {"_count": 1}, "blocked": {"_count": 1}, "lit": {"_count": 1}, "fiddling": {"_count": 1}, "almost": {"_count": 2}, "inwardly": {"_count": 1}, "scanning": {"_count": 1}, "breathing": {"_count": 1}, "thanking": {"_count": 1}, "resolved": {"_count": 1}, "kindling": {"_count": 1}, "merely": {"_count": 1}, "refusing": {"_count": 1}, "glad": {"_count": 2}, "twisting": {"_count": 1}, "keen": {"_count": 1}, "back": {"_count": 1}, "itching": {"_count": 1}, "delighted": {"_count": 1}, "drawing": {"_count": 1}, "dismounting": {"_count": 1}, "trying": {"_count": 1}, "slammed": {"_count": 1}, "guiding": {"_count": 1}, "hit": {"_count": 1}, "a": {"_count": 1}, "topped": {"_count": 1}, "running": {"_count": 2}, "dazzled": {"_count": 1}, "sprawled": {"_count": 1}, "gripping": {"_count": 1}, "extinguished": {"_count": 1}, "slowly": {"_count": 1}, "scared": {"_count": 1}, "distracted": {"_count": 1}, "dragged": {"_count": 1}, "caught": {"_count": 1}, "momentarily": {"_count": 1}, "visited": {"_count": 1}, "going": {"_count": 1}, "quite": {"_count": 1}, "evidently": {"_count": 1}}, "nervous": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "wheeled": {"_count": 3, "it": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "start": {"_count": 14, "tapping": {"_count": 1}, "pacing": {"_count": 1}, "trying": {"_count": 1}, "working": {"_count": 1}, "drinking": {"_count": 1}, "handing": {"_count": 1}, "shouting": {"_count": 1}, "that": {"_count": 1}, "throwing": {"_count": 1}, "fighting": {"_count": 1}, "kissing": {"_count": 1}, "doing": {"_count": 1}, "appealing": {"_count": 1}, "pulling": {"_count": 1}}, "ten": {"_count": 12, "": {"_count": 8}, "pin": {"_count": 1}, "pushing": {"_count": 1}, "until": {"_count": 1}, "however": {"_count": 1}}, "youngest": {"_count": 2, "of": {"_count": 1}, "brother": {"_count": 1}}, "gangling": {"_count": 2, "with": {"_count": 2}}, "nearer": {"_count": 15, "he": {"_count": 1}, "to": {"_count": 2}, "with": {"_count": 1}, "but": {"_count": 2}, "his": {"_count": 1}, "in": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "He": {"_count": 1}, "Hermione": {"_count": 1}, "rough": {"_count": 1}, "and": {"_count": 1}, "thundered": {"_count": 1}}, "Three": {"_count": 1, "Quarters": {"_count": 1}}, "heave": {"_count": 1, "his": {"_count": 1}}, "twice": {"_count": 2, "he": {"_count": 2}}, "help": {"_count": 17, "": {"_count": 2}, "Harry": {"_count": 1}, "your": {"_count": 2}, "Bill": {"_count": 1}, "me": {"_count": 4}, "you": {"_count": 1}, "Ron": {"_count": 1}, "get": {"_count": 1}, "us": {"_count": 1}, "and": {"_count": 1}, "yourselves": {"_count": 1}, "R": {"_count": 1}}, "hear": {"_count": 6, "what": {"_count": 1}, "Hello": {"_count": 1}, "every": {"_count": 1}, "more": {"_count": 1}, "in": {"_count": 1}, "rushing": {"_count": 1}}, "see": {"_count": 68, "him": {"_count": 7}, "if": {"_count": 11}, "himself": {"_count": 1}, "Hagrid": {"_count": 3}, "said": {"_count": 1}, "Hermione": {"_count": 1}, "Lockhart": {"_count": 1}, "": {"_count": 4}, "outside": {"_count": 1}, "what": {"_count": 8}, "you": {"_count": 4}, "exactly": {"_count": 1}, "He": {"_count": 1}, "Professor": {"_count": 2}, "it": {"_count": 1}, "their": {"_count": 1}, "everyone": {"_count": 1}, "an": {"_count": 1}, "how": {"_count": 3}, "whether": {"_count": 1}, "me": {"_count": 2}, "us": {"_count": 1}, "Madam": {"_count": 1}, "Arthur": {"_count": 1}, "where": {"_count": 1}, "Dumbledore": {"_count": 1}, "Slughorn": {"_count": 1}, "hadnt": {"_count": 1}, "his": {"_count": 1}, "Xenophilius": {"_count": 1}, "Lovegood": {"_count": 1}, "too": {"_count": 1}, "the": {"_count": 1}}, "waved": {"_count": 15, "": {"_count": 2}, "at": {"_count": 4}, "one": {"_count": 1}, "his": {"_count": 2}, "furiously": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 2}, "their": {"_count": 1}, "Ron": {"_count": 1}}, "George": {"_count": 305, "Weasley": {"_count": 21}, "mess": {"_count": 1}, "": {"_count": 19}, "had": {"_count": 31}, "out": {"_count": 1}, "were": {"_count": 29}, "all": {"_count": 2}, "stole": {"_count": 1}, "have": {"_count": 4}, "Rons": {"_count": 3}, "climbed": {"_count": 1}, "heave": {"_count": 1}, "pushed": {"_count": 2}, "threw": {"_count": 1}, "seized": {"_count": 1}, "look": {"_count": 1}, "ambled": {"_count": 1}, "together": {"_count": 2}, "rounded": {"_count": 1}, "followed": {"_count": 3}, "mustve": {"_count": 1}, "who": {"_count": 13}, "jumping": {"_count": 1}, "the": {"_count": 1}, "managed": {"_count": 1}, "dived": {"_count": 1}, "however": {"_count": 1}, "at": {"_count": 3}, "singing": {"_count": 1}, "challenged": {"_count": 1}, "sat": {"_count": 2}, "went": {"_count": 1}, "heaved": {"_count": 1}, "told": {"_count": 2}, "they": {"_count": 1}, "and": {"_count": 5}, "looked": {"_count": 6}, "peering": {"_count": 1}, "inside": {"_count": 1}, "never": {"_count": 1}, "reckon": {"_count": 1}, "asking": {"_count": 1}, "tried": {"_count": 2}, "hit": {"_count": 1}, "said": {"_count": 7}, "left": {"_count": 3}, "came": {"_count": 3}, "he": {"_count": 2}, "just": {"_count": 1}, "are": {"_count": 5}, "quickly": {"_count": 1}, "choked": {"_count": 1}, "as": {"_count": 1}, "cant": {"_count": 1}, "will": {"_count": 1}, "hissed": {"_count": 1}, "his": {"_count": 2}, "set": {"_count": 3}, "debating": {"_count": 2}, "find": {"_count": 1}, "sitting": {"_count": 1}, "hidden": {"_count": 1}, "joined": {"_count": 1}, "cleanshaven": {"_count": 1}, "should": {"_count": 1}, "nicking": {"_count": 1}, "confided": {"_count": 1}, "in": {"_count": 2}, "accosted": {"_count": 1}, "suspiciously": {"_count": 1}, "fairly": {"_count": 1}, "turned": {"_count": 4}, "for": {"_count": 1}, "kicked": {"_count": 2}, "she": {"_count": 2}, "vanished": {"_count": 1}, "on": {"_count": 1}, "buried": {"_count": 1}, "bellowed": {"_count": 1}, "can": {"_count": 1}, "opened": {"_count": 1}, "leaping": {"_count": 1}, "crossed": {"_count": 1}, "Apparated": {"_count": 2}, "exchanged": {"_count": 1}, "burst": {"_count": 1}, "roaring": {"_count": 1}, "dropped": {"_count": 1}, "to": {"_count": 2}, "disappeared": {"_count": 1}, "doing": {"_count": 1}, "d": {"_count": 1}, "beadily": {"_count": 1}, "sniggered": {"_count": 1}, "walking": {"_count": 1}, "werent": {"_count": 1}, "now": {"_count": 1}, "both": {"_count": 1}, "if": {"_count": 1}, "always": {"_count": 1}, "exchange": {"_count": 1}, "converged": {"_count": 1}, "let": {"_count": 1}, "zoomed": {"_count": 1}, "route": {"_count": 1}, "appeared": {"_count": 2}, "taking": {"_count": 1}, "only": {"_count": 1}, "proud": {"_count": 1}, "marched": {"_count": 1}, "entered": {"_count": 1}, "sloped": {"_count": 1}, "still": {"_count": 1}, "disentangled": {"_count": 1}, "handed": {"_count": 1}, "leapt": {"_count": 1}, "off": {"_count": 1}, "wandered": {"_count": 1}, "hiding": {"_count": 1}, "dangling": {"_count": 1}, "got": {"_count": 2}, "whose": {"_count": 1}, "wheeled": {"_count": 1}, "around": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}, "called": {"_count": 1}, "but": {"_count": 1}, "send": {"_count": 1}, "setting": {"_count": 1}, "started": {"_count": 1}, "gave": {"_count": 2}, "also": {"_count": 1}, "did": {"_count": 1}, "didnt": {"_count": 1}, "grinning": {"_count": 1}, "instead": {"_count": 1}, "transform": {"_count": 1}, "bewitched": {"_count": 1}, "standing": {"_count": 1}, "taught": {"_count": 1}, "led": {"_count": 1}, "wouldve": {"_count": 1}}, "Ron": {"_count": 523, "": {"_count": 29}, "stood": {"_count": 4}, "picking": {"_count": 1}, "took": {"_count": 3}, "he": {"_count": 2}, "were": {"_count": 27}, "managed": {"_count": 2}, "exchanged": {"_count": 7}, "who": {"_count": 15}, "pretended": {"_count": 1}, "walked": {"_count": 6}, "jumped": {"_count": 2}, "thought": {"_count": 3}, "but": {"_count": 1}, "headed": {"_count": 4}, "overheard": {"_count": 1}, "knocked": {"_count": 2}, "tried": {"_count": 1}, "had": {"_count": 29}, "gave": {"_count": 2}, "wasnt": {"_count": 1}, "barely": {"_count": 1}, "read": {"_count": 2}, "rolling": {"_count": 1}, "wouldnt": {"_count": 1}, "spent": {"_count": 4}, "beamed": {"_count": 1}, "too": {"_count": 1}, "wheeled": {"_count": 1}, "went": {"_count": 11}, "didnt": {"_count": 1}, "their": {"_count": 1}, "passed": {"_count": 2}, "together": {"_count": 13}, "straightened": {"_count": 1}, "identical": {"_count": 1}, "grabbing": {"_count": 1}, "reappeared": {"_count": 1}, "peered": {"_count": 1}, "followed": {"_count": 8}, "stared": {"_count": 8}, "both": {"_count": 18}, "as": {"_count": 3}, "inside": {"_count": 2}, "sat": {"_count": 7}, "sank": {"_count": 1}, "Weasley": {"_count": 2}, "and": {"_count": 20}, "plunged": {"_count": 1}, "slouched": {"_count": 1}, "felt": {"_count": 1}, "in": {"_count": 7}, "painfully": {"_count": 1}, "get": {"_count": 1}, "right": {"_count": 1}, "listened": {"_count": 2}, "looked": {"_count": 19}, "first": {"_count": 1}, "the": {"_count": 3}, "hid": {"_count": 1}, "pulled": {"_count": 3}, "put": {"_count": 1}, "opened": {"_count": 1}, "hurried": {"_count": 4}, "to": {"_count": 4}, "motioning": {"_count": 1}, "forced": {"_count": 1}, "waited": {"_count": 3}, "backed": {"_count": 1}, "came": {"_count": 2}, "entered": {"_count": 1}, "shook": {"_count": 2}, "lagged": {"_count": 1}, "kept": {"_count": 1}, "jump": {"_count": 3}, "could": {"_count": 3}, "leaned": {"_count": 4}, "paced": {"_count": 1}, "being": {"_count": 2}, "gazed": {"_count": 2}, "so": {"_count": 2}, "approached": {"_count": 3}, "are": {"_count": 1}, "led": {"_count": 2}, "threw": {"_count": 2}, "made": {"_count": 2}, "got": {"_count": 2}, "glanced": {"_count": 3}, "scowled": {"_count": 1}, "quickly": {"_count": 1}, "packed": {"_count": 1}, "simply": {"_count": 2}, "supposed": {"_count": 1}, "Good": {"_count": 1}, "left": {"_count": 7}, "off": {"_count": 1}, "climbed": {"_count": 3}, "How": {"_count": 1}, "mounted": {"_count": 1}, "choked": {"_count": 1}, "not": {"_count": 1}, "proceeded": {"_count": 1}, "they": {"_count": 1}, "clambered": {"_count": 1}, "lay": {"_count": 1}, "clambering": {"_count": 1}, "some": {"_count": 1}, "edged": {"_count": 1}, "up": {"_count": 2}, "appealing": {"_count": 1}, "out": {"_count": 1}, "loudly": {"_count": 1}, "seized": {"_count": 2}, "grinned": {"_count": 4}, "set": {"_count": 2}, "what": {"_count": 1}, "ever": {"_count": 1}, "watched": {"_count": 2}, "rather": {"_count": 1}, "Harry": {"_count": 1}, "started": {"_count": 2}, "loaded": {"_count": 1}, "piece": {"_count": 1}, "met": {"_count": 2}, "on": {"_count": 2}, "continued": {"_count": 1}, "froze": {"_count": 1}, "returned": {"_count": 2}, "saw": {"_count": 1}, "did": {"_count": 3}, "still": {"_count": 2}, "into": {"_count": 1}, "couldnt": {"_count": 1}, "from": {"_count": 1}, "picked": {"_count": 1}, "winced": {"_count": 1}, "looking": {"_count": 2}, "was": {"_count": 4}, "all": {"_count": 1}, "told": {"_count": 3}, "slowly": {"_count": 1}, "said": {"_count": 3}, "while": {"_count": 1}, "muttered": {"_count": 1}, "dragged": {"_count": 1}, "pinned": {"_count": 1}, "halfway": {"_count": 1}, "carefully": {"_count": 1}, "Dean": {"_count": 1}, "merely": {"_count": 1}, "reached": {"_count": 1}, "now": {"_count": 1}, "goggled": {"_count": 1}, "yeah": {"_count": 1}, "fiddled": {"_count": 1}, "enthusiastically": {"_count": 1}, "plainly": {"_count": 1}, "wanted": {"_count": 1}, "leapt": {"_count": 2}, "stepped": {"_count": 1}, "snoring": {"_count": 1}, "already": {"_count": 1}, "laughed": {"_count": 1}, "eagerly": {"_count": 1}, "handed": {"_count": 1}, "arrived": {"_count": 1}, "whipped": {"_count": 1}, "found": {"_count": 1}, "whiled": {"_count": 1}, "changed": {"_count": 1}, "amazed": {"_count": 1}, "tightly": {"_count": 1}, "thumped": {"_count": 1}, "fell": {"_count": 2}, "would": {"_count": 2}, "joined": {"_count": 3}, "struggling": {"_count": 1}, "along": {"_count": 1}, "attempting": {"_count": 1}, "rolled": {"_count": 1}, "shouted": {"_count": 1}, "join": {"_count": 1}, "beat": {"_count": 1}, "tugged": {"_count": 1}, "stalked": {"_count": 1}, "saved": {"_count": 1}, "Lavender": {"_count": 1}, "surfaced": {"_count": 1}, "hastened": {"_count": 1}, "a": {"_count": 1}, "scratching": {"_count": 1}, "you": {"_count": 1}, "somehow": {"_count": 1}, "dived": {"_count": 1}, "seemed": {"_count": 1}, "with": {"_count": 1}, "groaned": {"_count": 1}, "for": {"_count": 1}, "Hermione": {"_count": 1}, "turn": {"_count": 1}, "used": {"_count": 1}, "half": {"_count": 1}, "crept": {"_count": 1}, "darted": {"_count": 1}, "by": {"_count": 1}, "whose": {"_count": 1}, "murmuring": {"_count": 1}, "agreed": {"_count": 1}, "obliterated": {"_count": 1}, "glared": {"_count": 1}, "stabbed": {"_count": 1}, "escaped": {"_count": 1}, "launched": {"_count": 1}, "look": {"_count": 1}, "copied": {"_count": 1}, "holding": {"_count": 1}, "appearing": {"_count": 1}, "hurtled": {"_count": 1}, "punched": {"_count": 1}, "caught": {"_count": 1}, "vomiting": {"_count": 1}}, "Georges": {"_count": 40, "jokes": {"_count": 4}, "bedroom": {"_count": 2}, "jealous": {"_count": 1}, "Filibuster": {"_count": 1}, "wildest": {"_count": 1}, "absence": {"_count": 1}, "room": {"_count": 3}, "mutinous": {"_count": 1}, "fake": {"_count": 1}, "plans": {"_count": 1}, "owl": {"_count": 1}, "heads": {"_count": 1}, "loud": {"_count": 1}, "bucket": {"_count": 1}, "Cleansweeps": {"_count": 2}, "broomsticks": {"_count": 1}, "flight": {"_count": 1}, "Wildfire": {"_count": 1}, "example": {"_count": 1}, "departure": {"_count": 1}, "dramatic": {"_count": 1}, "swamp": {"_count": 1}, "boxes": {"_count": 1}, "idea": {"_count": 1}, "shop": {"_count": 2}, "stick": {"_count": 1}, "windows": {"_count": 1}, "products": {"_count": 1}, "love": {"_count": 1}, "SpellCheck": {"_count": 1}, "": {"_count": 1}, "friend": {"_count": 1}}, "cousin": {"_count": 3, "are": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "Charlie": {"_count": 18, "have": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}, "are": {"_count": 2}, "": {"_count": 2}, "both": {"_count": 1}, "directed": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 3}, "entered": {"_count": 1}, "decided": {"_count": 1}, "sped": {"_count": 1}, "had": {"_count": 1}, "stood": {"_count": 1}}, "everyone": {"_count": 16, "thinks": {"_count": 1}, "": {"_count": 1}, "shuffled": {"_count": 1}, "else": {"_count": 2}, "who": {"_count": 1}, "jumped": {"_count": 2}, "looked": {"_count": 1}, "turned": {"_count": 2}, "in": {"_count": 3}, "fell": {"_count": 1}, "Fear": {"_count": 1}}, "Percys": {"_count": 2, "old": {"_count": 1}, "Ravenclaw": {"_count": 1}}, "hes": {"_count": 40, "useless": {"_count": 1}, "been": {"_count": 5}, "had": {"_count": 1}, "ill": {"_count": 1}, "dangerous": {"_count": 1}, "on": {"_count": 1}, "got": {"_count": 1}, "still": {"_count": 1}, "tired": {"_count": 1}, "sitting": {"_count": 1}, "a": {"_count": 2}, "going": {"_count": 2}, "trying": {"_count": 1}, "always": {"_count": 2}, "gone": {"_count": 1}, "dealt": {"_count": 1}, "managed": {"_count": 1}, "concentrating": {"_count": 1}, "back": {"_count": 1}, "using": {"_count": 1}, "off": {"_count": 1}, "heading": {"_count": 1}, "an": {"_count": 2}, "roped": {"_count": 1}, "too": {"_count": 1}, "not": {"_count": 4}, "never": {"_count": 1}, "behind": {"_count": 1}, "told": {"_count": 1}}, "never": {"_count": 15, "getting": {"_count": 1}, "would": {"_count": 1}, "did": {"_count": 1}, "missed": {"_count": 1}, "find": {"_count": 1}, "came": {"_count": 1}, "mind": {"_count": 2}, "have": {"_count": 1}, "darken": {"_count": 1}, "be": {"_count": 1}, "look": {"_count": 1}, "troubled": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}}, "until": {"_count": 2, "Hagrid": {"_count": 1}, "I": {"_count": 1}}, "impressed": {"_count": 4, "": {"_count": 4}}, "sheep": {"_count": 1, "": {"_count": 1}}, "lanes": {"_count": 1, "flick": {"_count": 1}}, "silver": {"_count": 15, "he": {"_count": 1}, "volume": {"_count": 1}, "to": {"_count": 1}, "like": {"_count": 1}, "stars": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "streamers": {"_count": 1}, "": {"_count": 2}, "came": {"_count": 1}, "were": {"_count": 1}, "sliding": {"_count": 1}, "that": {"_count": 1}, "light": {"_count": 1}}, "paid": {"_count": 2, "the": {"_count": 2}}, "seven": {"_count": 6, "bronze": {"_count": 1}, "sets": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}}, "tipped": {"_count": 8, "it": {"_count": 2}, "the": {"_count": 2}, "his": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}}, "unwrapped": {"_count": 4, "it": {"_count": 3}, "the": {"_count": 1}}, "candies": {"_count": 1, "the": {"_count": 1}}, "wizards": {"_count": 64, "": {"_count": 9}, "still": {"_count": 2}, "all": {"_count": 4}, "than": {"_count": 2}, "have": {"_count": 1}, "of": {"_count": 2}, "suffered": {"_count": 1}, "on": {"_count": 2}, "in": {"_count": 6}, "until": {"_count": 1}, "seeing": {"_count": 1}, "talented": {"_count": 1}, "who": {"_count": 2}, "had": {"_count": 1}, "there": {"_count": 1}, "this": {"_count": 1}, "were": {"_count": 5}, "was": {"_count": 2}, "gathered": {"_count": 1}, "being": {"_count": 1}, "clamoring": {"_count": 1}, "around": {"_count": 2}, "along": {"_count": 1}, "made": {"_count": 1}, "robes": {"_count": 1}, "including": {"_count": 1}, "hed": {"_count": 1}, "most": {"_count": 1}, "got": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}, "sat": {"_count": 2}, "seemed": {"_count": 1}, "as": {"_count": 1}, "moving": {"_count": 1}, "shrieked": {"_count": 1}}, "picked": {"_count": 17, "up": {"_count": 14}, "it": {"_count": 2}, "at": {"_count": 1}}, "flowing": {"_count": 1, "silver": {"_count": 1}}, "mustache": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "were": {"_count": 1}, "no": {"_count": 1}}, "Ive": {"_count": 14, "got": {"_count": 8}, "only": {"_count": 1}, "been": {"_count": 1}, "had": {"_count": 1}, "heard": {"_count": 1}, "just": {"_count": 1}, "learned": {"_count": 1}}, "Wizards": {"_count": 1, "cards": {"_count": 1}}, "Morgana": {"_count": 1, "but": {"_count": 1}}, "Merlin": {"_count": 1, "": {"_count": 1}}, "peppermint": {"_count": 1, "and": {"_count": 1}}, "marmalade": {"_count": 3, "but": {"_count": 1}, "Ron": {"_count": 1}, "in": {"_count": 1}}, "liver": {"_count": 2, "and": {"_count": 1}, "spots": {"_count": 1}}, "tripe": {"_count": 1, "": {"_count": 1}}, "bit": {"_count": 1, "into": {"_count": 1}}, "something": {"_count": 17, "white": {"_count": 2}, "came": {"_count": 1}, "gold": {"_count": 2}, "jumped": {"_count": 1}, "clutched": {"_count": 1}, "fell": {"_count": 1}, "of": {"_count": 1}, "dark": {"_count": 1}, "flowery": {"_count": 1}, "enormous": {"_count": 1}, "bulky": {"_count": 1}, "in": {"_count": 1}, "less": {"_count": 1}, "like": {"_count": 1}, "was": {"_count": 1}}, "fast": {"_count": 12, "asleep": {"_count": 1}, "that": {"_count": 2}, "as": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "blurring": {"_count": 1}, "upon": {"_count": 1}, "into": {"_count": 1}}, "youre": {"_count": 15, "in": {"_count": 2}, "bound": {"_count": 1}, "out": {"_count": 1}, "getting": {"_count": 1}, "planning": {"_count": 1}, "his": {"_count": 1}, "really": {"_count": 1}, "famous": {"_count": 1}, "still": {"_count": 1}, "so": {"_count": 1}, "not": {"_count": 1}, "about": {"_count": 1}, "white": {"_count": 1}, "supposed": {"_count": 1}}, "The": {"_count": 6, "Rise": {"_count": 2}, "Standard": {"_count": 1}, "train": {"_count": 1}, "Practical": {"_count": 1}, "Tales": {"_count": 1}}, "Fall": {"_count": 3, "of": {"_count": 3}}, "Great": {"_count": 1, "Wizarding": {"_count": 1}}, "look": {"_count": 22, "for": {"_count": 5}, "through": {"_count": 1}, "comforting": {"_count": 1}, "its": {"_count": 1}, "at": {"_count": 5}, "where": {"_count": 1}, "up": {"_count": 1}, "after": {"_count": 3}, "he": {"_count": 1}, "jinxes": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 1}}, "Dad": {"_count": 32, "were": {"_count": 2}, "bought": {"_count": 1}, "are": {"_count": 2}, "cant": {"_count": 2}, "to": {"_count": 1}, "say": {"_count": 2}, "dropped": {"_count": 1}, "gave": {"_count": 1}, "would": {"_count": 1}, "might": {"_count": 1}, "then": {"_count": 1}, "reckon": {"_count": 1}, "couldnt": {"_count": 1}, "wont": {"_count": 1}, "Ron": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "talking": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}, "said": {"_count": 1}, "got": {"_count": 1}, "know": {"_count": 1}, "and": {"_count": 2}, "youre": {"_count": 1}, "a": {"_count": 1}, "always": {"_count": 1}}, "Bills": {"_count": 2, "in": {"_count": 1}, "been": {"_count": 1}}, "this": {"_count": 37, "is": {"_count": 5}, "mirrors": {"_count": 1}, "could": {"_count": 1}, "time": {"_count": 12}, "summer": {"_count": 1}, "years": {"_count": 1}, "one": {"_count": 3}, "matter": {"_count": 1}, "great": {"_count": 1}, "was": {"_count": 4}, "shade": {"_count": 1}, "head": {"_count": 1}, "must": {"_count": 1}, "charming": {"_count": 1}, "went": {"_count": 1}, "accounts": {"_count": 1}, "made": {"_count": 1}}, "itll": {"_count": 7, "rub": {"_count": 1}, "look": {"_count": 1}, "run": {"_count": 1}, "help": {"_count": 1}, "all": {"_count": 1}, "be": {"_count": 1}, "do": {"_count": 1}}, "Goyle": {"_count": 139, "were": {"_count": 18}, "looking": {"_count": 2}, "sniggered": {"_count": 4}, "who": {"_count": 9}, "behind": {"_count": 2}, "up": {"_count": 1}, "": {"_count": 20}, "but": {"_count": 1}, "sizing": {"_count": 1}, "chuckled": {"_count": 2}, "pushed": {"_count": 1}, "howled": {"_count": 1}, "single": {"_count": 1}, "cant": {"_count": 1}, "find": {"_count": 1}, "coming": {"_count": 1}, "we": {"_count": 1}, "and": {"_count": 5}, "seemed": {"_count": 2}, "werent": {"_count": 1}, "cheered": {"_count": 1}, "had": {"_count": 8}, "flexed": {"_count": 1}, "was": {"_count": 1}, "when": {"_count": 1}, "laughed": {"_count": 1}, "laughing": {"_count": 1}, "right": {"_count": 1}, "bent": {"_count": 1}, "spun": {"_count": 1}, "caught": {"_count": 1}, "stood": {"_count": 1}, "looked": {"_count": 1}, "kept": {"_count": 1}, "his": {"_count": 1}, "Weasley": {"_count": 1}, "guffawed": {"_count": 2}, "the": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 2}, "descending": {"_count": 1}, "leered": {"_count": 1}, "during": {"_count": 1}, "each": {"_count": 1}, "carrying": {"_count": 1}, "any": {"_count": 1}, "lumbering": {"_count": 1}, "he": {"_count": 1}, "gave": {"_count": 1}, "wouldve": {"_count": 1}, "I": {"_count": 1}, "are": {"_count": 1}, "almost": {"_count": 1}, "a": {"_count": 1}, "roared": {"_count": 1}, "cracked": {"_count": 1}, "loudly": {"_count": 1}, "emerged": {"_count": 1}, "flanking": {"_count": 1}, "resembled": {"_count": 1}, "now": {"_count": 1}, "with": {"_count": 1}, "intend": {"_count": 1}, "Theyre": {"_count": 1}, "just": {"_count": 1}, "as": {"_count": 2}, "keeping": {"_count": 1}, "moving": {"_count": 1}, "appeared": {"_count": 1}, "transforming": {"_count": 1}, "Harry": {"_count": 1}, "love": {"_count": 1}, "through": {"_count": 1}, "remained": {"_count": 1}}, "Malfoy": {"_count": 34, "backed": {"_count": 1}, "were": {"_count": 3}, "": {"_count": 5}, "stopped": {"_count": 1}, "stepped": {"_count": 1}, "busy": {"_count": 1}, "barely": {"_count": 1}, "into": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "whispered": {"_count": 1}, "heard": {"_count": 1}, "laughed": {"_count": 1}, "wants": {"_count": 1}, "would": {"_count": 1}, "sniggering": {"_count": 1}, "looked": {"_count": 1}, "said": {"_count": 1}, "knows": {"_count": 1}, "saying": {"_count": 1}, "Dumbledore": {"_count": 1}, "left": {"_count": 1}, "might": {"_count": 1}, "seemed": {"_count": 1}, "who": {"_count": 1}, "however": {"_count": 1}, "Didnt": {"_count": 1}, "s": {"_count": 1}}, "hit": {"_count": 25, "the": {"_count": 10}, "me": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 3}, "another": {"_count": 1}, "her": {"_count": 3}, "Alicia": {"_count": 1}, "one": {"_count": 1}, "Dumbledore": {"_count": 1}, "Percy": {"_count": 1}, "him": {"_count": 1}, "George": {"_count": 1}}, "forests": {"_count": 1, "under": {"_count": 1}}, "joined": {"_count": 11, "the": {"_count": 3}, "her": {"_count": 1}, "Hermione": {"_count": 2}, "Voldemort": {"_count": 1}, "Harry": {"_count": 1}, "HeWhoMust": {"_count": 1}, "in": {"_count": 1}, "forces": {"_count": 1}}, "finally": {"_count": 15, "stopped": {"_count": 3}, "fallen": {"_count": 1}, "Harry": {"_count": 1}, "Fred": {"_count": 1}, "reached": {"_count": 1}, "one": {"_count": 1}, "realized": {"_count": 1}, "falling": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 2}, "at": {"_count": 1}, "he": {"_count": 1}}, "stumbling": {"_count": 2, "they": {"_count": 1}, "up": {"_count": 1}}, "towers": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "draw": {"_count": 1}}, "Hermione": {"_count": 929, "": {"_count": 81}, "were": {"_count": 63}, "was": {"_count": 7}, "moved": {"_count": 5}, "sat": {"_count": 15}, "he": {"_count": 5}, "joined": {"_count": 7}, "squeezed": {"_count": 3}, "looked": {"_count": 29}, "had": {"_count": 51}, "playing": {"_count": 1}, "meanwhile": {"_count": 2}, "in": {"_count": 9}, "would": {"_count": 12}, "argued": {"_count": 1}, "very": {"_count": 1}, "rushed": {"_count": 2}, "tried": {"_count": 1}, "didnt": {"_count": 3}, "walked": {"_count": 4}, "covered": {"_count": 1}, "the": {"_count": 6}, "shook": {"_count": 4}, "kept": {"_count": 5}, "and": {"_count": 28}, "followed": {"_count": 5}, "what": {"_count": 4}, "came": {"_count": 4}, "s": {"_count": 10}, "shivered": {"_count": 1}, "stayed": {"_count": 2}, "you": {"_count": 2}, "took": {"_count": 6}, "shouted": {"_count": 2}, "charged": {"_count": 1}, "at": {"_count": 2}, "stood": {"_count": 8}, "passed": {"_count": 1}, "Granger": {"_count": 1}, "with": {"_count": 4}, "as": {"_count": 12}, "strolled": {"_count": 2}, "fought": {"_count": 1}, "grabbed": {"_count": 2}, "left": {"_count": 11}, "inside": {"_count": 1}, "she": {"_count": 1}, "who": {"_count": 20}, "sitting": {"_count": 1}, "supported": {"_count": 2}, "finished": {"_count": 1}, "about": {"_count": 8}, "froze": {"_count": 1}, "clattering": {"_count": 1}, "panting": {"_count": 1}, "exchanged": {"_count": 11}, "all": {"_count": 4}, "led": {"_count": 1}, "that": {"_count": 5}, "chose": {"_count": 2}, "to": {"_count": 17}, "signed": {"_count": 1}, "used": {"_count": 1}, "emerged": {"_count": 3}, "reached": {"_count": 1}, "seemed": {"_count": 9}, "made": {"_count": 3}, "both": {"_count": 12}, "tomorrow": {"_count": 1}, "can": {"_count": 3}, "waited": {"_count": 2}, "ate": {"_count": 2}, "set": {"_count": 8}, "checked": {"_count": 1}, "heaved": {"_count": 1}, "turned": {"_count": 6}, "away": {"_count": 2}, "stared": {"_count": 6}, "however": {"_count": 4}, "entered": {"_count": 7}, "climbed": {"_count": 5}, "descended": {"_count": 1}, "werent": {"_count": 1}, "practiced": {"_count": 1}, "proceeded": {"_count": 2}, "went": {"_count": 7}, "glowed": {"_count": 1}, "put": {"_count": 2}, "answered": {"_count": 1}, "hurried": {"_count": 2}, "they": {"_count": 1}, "looking": {"_count": 1}, "because": {"_count": 1}, "insisted": {"_count": 2}, "shouting": {"_count": 1}, "watched": {"_count": 5}, "whip": {"_count": 1}, "approached": {"_count": 2}, "brought": {"_count": 2}, "burst": {"_count": 2}, "removed": {"_count": 1}, "plenty": {"_count": 1}, "lost": {"_count": 1}, "whipped": {"_count": 2}, "picked": {"_count": 1}, "seized": {"_count": 1}, "almost": {"_count": 1}, "paused": {"_count": 1}, "dashed": {"_count": 2}, "might": {"_count": 2}, "for": {"_count": 4}, "stop": {"_count": 1}, "together": {"_count": 15}, "alone": {"_count": 5}, "walking": {"_count": 2}, "hidden": {"_count": 1}, "tightened": {"_count": 1}, "listened": {"_count": 1}, "chasing": {"_count": 1}, "slid": {"_count": 1}, "jumped": {"_count": 3}, "ran": {"_count": 3}, "slipped": {"_count": 2}, "crept": {"_count": 1}, "thought": {"_count": 1}, "are": {"_count": 5}, "will": {"_count": 2}, "excitedly": {"_count": 1}, "stepped": {"_count": 1}, "goodbye": {"_count": 1}, "knew": {"_count": 3}, "Hes": {"_count": 1}, "on": {"_count": 2}, "worked": {"_count": 1}, "go": {"_count": 1}, "beadily": {"_count": 1}, "spun": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 3}, "raised": {"_count": 4}, "through": {"_count": 2}, "Mr": {"_count": 1}, "loaded": {"_count": 1}, "examined": {"_count": 1}, "pick": {"_count": 1}, "began": {"_count": 1}, "but": {"_count": 4}, "returned": {"_count": 3}, "also": {"_count": 1}, "when": {"_count": 1}, "urged": {"_count": 1}, "decided": {"_count": 1}, "peered": {"_count": 1}, "beyond": {"_count": 1}, "going": {"_count": 1}, "arrived": {"_count": 3}, "spent": {"_count": 4}, "found": {"_count": 2}, "hadnt": {"_count": 1}, "got": {"_count": 2}, "laughed": {"_count": 5}, "asked": {"_count": 2}, "draw": {"_count": 1}, "having": {"_count": 2}, "ordered": {"_count": 2}, "glaring": {"_count": 1}, "drawing": {"_count": 1}, "unable": {"_count": 1}, "searched": {"_count": 1}, "off": {"_count": 1}, "caught": {"_count": 4}, "stopped": {"_count": 2}, "sniping": {"_count": 1}, "snarling": {"_count": 1}, "helped": {"_count": 1}, "do": {"_count": 1}, "applauding": {"_count": 1}, "grouped": {"_count": 1}, "talked": {"_count": 1}, "struggled": {"_count": 1}, "though": {"_count": 1}, "busy": {"_count": 1}, "again": {"_count": 4}, "winced": {"_count": 1}, "said": {"_count": 3}, "everything": {"_count": 3}, "beamed": {"_count": 2}, "did": {"_count": 6}, "then": {"_count": 1}, "scanned": {"_count": 1}, "sighed": {"_count": 1}, "immediately": {"_count": 2}, "Harry": {"_count": 2}, "exactly": {"_count": 1}, "joining": {"_count": 1}, "bent": {"_count": 1}, "considered": {"_count": 1}, "nodded": {"_count": 3}, "before": {"_count": 2}, "groaned": {"_count": 2}, "retreated": {"_count": 3}, "some": {"_count": 1}, "already": {"_count": 1}, "his": {"_count": 1}, "finally": {"_count": 1}, "not": {"_count": 1}, "laugh": {"_count": 1}, "while": {"_count": 2}, "headed": {"_count": 1}, "gave": {"_count": 2}, "under": {"_count": 1}, "forward": {"_count": 1}, "than": {"_count": 1}, "persisted": {"_count": 1}, "threw": {"_count": 2}, "grimly": {"_count": 1}, "edged": {"_count": 1}, "glanced": {"_count": 1}, "dragged": {"_count": 2}, "clambered": {"_count": 1}, "forced": {"_count": 1}, "gasped": {"_count": 2}, "exchange": {"_count": 1}, "vanished": {"_count": 1}, "against": {"_count": 1}, "reflected": {"_count": 1}, "momentarily": {"_count": 1}, "shuffled": {"_count": 1}, "bickered": {"_count": 1}, "disappeared": {"_count": 1}, "say": {"_count": 1}, "sped": {"_count": 2}, "unrolling": {"_count": 1}, "sniffed": {"_count": 1}, "bade": {"_count": 1}, "staring": {"_count": 1}, "pulling": {"_count": 1}, "staggered": {"_count": 1}, "drew": {"_count": 2}, "snatched": {"_count": 1}, "started": {"_count": 2}, "stalked": {"_count": 1}, "rose": {"_count": 1}, "once": {"_count": 1}, "Aragog": {"_count": 1}, "hurrying": {"_count": 1}, "emerging": {"_count": 1}, "couldnt": {"_count": 1}, "showed": {"_count": 1}, "Felix": {"_count": 1}, "Rons": {"_count": 1}, "seem": {"_count": 1}, "know": {"_count": 2}, "dont": {"_count": 1}, "so": {"_count": 1}, "Id": {"_count": 1}, "too": {"_count": 1}, "continued": {"_count": 1}, "pretending": {"_count": 1}, "smiled": {"_count": 1}, "their": {"_count": 1}, "loudly": {"_count": 1}, "exchanging": {"_count": 1}, "reappeared": {"_count": 1}, "over": {"_count": 1}, "quite": {"_count": 1}, "taking": {"_count": 1}, "half": {"_count": 1}, "each": {"_count": 1}, "now": {"_count": 1}, "felt": {"_count": 1}, "reeled": {"_count": 1}, "dived": {"_count": 1}, "clutching": {"_count": 1}, "it": {"_count": 1}, "weirdly": {"_count": 1}, "The": {"_count": 1}, "have": {"_count": 1}, "nose": {"_count": 1}, "out": {"_count": 1}, "coated": {"_count": 1}, "look": {"_count": 1}, "standing": {"_count": 1}, "Their": {"_count": 1}, "understand": {"_count": 1}, "raked": {"_count": 1}, "kneeling": {"_count": 1}, "gazed": {"_count": 1}, "cried": {"_count": 1}, "outside": {"_count": 1}, "screamed": {"_count": 1}, "from": {"_count": 1}, "down": {"_count": 1}, "behind": {"_count": 1}, "only": {"_count": 1}, "crammed": {"_count": 1}, "pointed": {"_count": 1}, "into": {"_count": 2}, "flat": {"_count": 1}, "still": {"_count": 1}, "struck": {"_count": 1}, "backed": {"_count": 1}, "trying": {"_count": 1}, "Ernie": {"_count": 1}, "must": {"_count": 1}, "gripped": {"_count": 1}, "broke": {"_count": 1}, "pelted": {"_count": 1}, "flattened": {"_count": 1}, "gathered": {"_count": 1}, "closed": {"_count": 1}, "could": {"_count": 1}, "helping": {"_count": 1}}, "pebbles": {"_count": 2, "": {"_count": 1}, "everywhere": {"_count": 1}}, "crowded": {"_count": 1, "around": {"_count": 1}}, "knocked": {"_count": 19, "three": {"_count": 2}, "": {"_count": 3}, "over": {"_count": 1}, "one": {"_count": 1}, "Parvatis": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "it": {"_count": 1}, "loudly": {"_count": 1}, "once": {"_count": 1}, "Professor": {"_count": 1}, "out": {"_count": 1}, "but": {"_count": 1}, "upon": {"_count": 1}}, "Harrys": {"_count": 36, "first": {"_count": 1}, "wand": {"_count": 2}, "broom": {"_count": 1}, "leg": {"_count": 1}, "heart": {"_count": 6}, "sense": {"_count": 1}, "fist": {"_count": 1}, "cloudy": {"_count": 1}, "question": {"_count": 1}, "mind": {"_count": 1}, "brain": {"_count": 1}, "names": {"_count": 1}, "mattress": {"_count": 1}, "feeling": {"_count": 1}, "mutual": {"_count": 1}, "spirits": {"_count": 1}, "stomach": {"_count": 3}, "mood": {"_count": 1}, "new": {"_count": 1}, "body": {"_count": 1}, "imagination": {"_count": 1}, "eyes": {"_count": 2}, "insides": {"_count": 1}, "not": {"_count": 1}, "nose": {"_count": 1}, "old": {"_count": 1}, "attention": {"_count": 1}}, "spend": {"_count": 1, "free": {"_count": 1}}, "Slytherin": {"_count": 13, "": {"_count": 3}, "will": {"_count": 1}, "would": {"_count": 2}, "won": {"_count": 1}, "four": {"_count": 1}, "left": {"_count": 1}, "who": {"_count": 1}, "I": {"_count": 1}, "students": {"_count": 1}, "he": {"_count": 1}}, "each": {"_count": 12, "has": {"_count": 1}, "of": {"_count": 5}, "the": {"_count": 1}, "time": {"_count": 1}, "attempting": {"_count": 1}, "began": {"_count": 1}, "would": {"_count": 1}, "felt": {"_count": 1}}, "on": {"_count": 35, "Rons": {"_count": 1}, "while": {"_count": 1}, "one": {"_count": 2}, "his": {"_count": 2}, "it": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 6}, "went": {"_count": 1}, "balance": {"_count": 1}, "top": {"_count": 3}, "her": {"_count": 1}, "Saturday": {"_count": 1}, "Friday": {"_count": 1}, "learning": {"_count": 1}, "Christmas": {"_count": 1}, "question": {"_count": 1}, "asking": {"_count": 1}, "punctuated": {"_count": 1}, "they": {"_count": 2}, "Dumbledores": {"_count": 1}, "and": {"_count": 1}, "side": {"_count": 1}, "each": {"_count": 1}}, "lead": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "slightly": {"_count": 10, "transparent": {"_count": 1}, "smaller": {"_count": 1}, "eerie": {"_count": 1}, "shorter": {"_count": 1}, "desperate": {"_count": 1}, "bulging": {"_count": 1}, "ashamed": {"_count": 1}, "harassed": {"_count": 1}, "afraid": {"_count": 1}, "haughty": {"_count": 1}}, "hardly": {"_count": 3, "glancing": {"_count": 1}, "a": {"_count": 1}, "seemed": {"_count": 1}}, "forget": {"_count": 3, "I": {"_count": 1}, "to": {"_count": 1}, "what": {"_count": 1}}, "tights": {"_count": 1, "had": {"_count": 1}}, "follow": {"_count": 4, "me": {"_count": 2}, "him": {"_count": 1}, "Ted": {"_count": 1}}, "through": {"_count": 18, "a": {"_count": 3}, "the": {"_count": 11}, "arent": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "his": {"_count": 1}}, "splendid": {"_count": 2, "place": {"_count": 1}, "hall": {"_count": 1}}, "thousands": {"_count": 3, "of": {"_count": 3}}, "goblets": {"_count": 6, "": {"_count": 1}, "sparkle": {"_count": 1}, "before": {"_count": 1}, "gleamed": {"_count": 1}, "and": {"_count": 1}, "silver": {"_count": 1}}, "frayed": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "extremely": {"_count": 7, "dirty": {"_count": 1}, "ugly": {"_count": 2}, "poor": {"_count": 1}, "dangerous": {"_count": 1}, "powerful": {"_count": 1}, "plump": {"_count": 1}}, "tall": {"_count": 1, "For": {"_count": 1}}, "chivalry": {"_count": 2, "Set": {"_count": 1}, "set": {"_count": 1}}, "loyal": {"_count": 2, "Those": {"_count": 1}, "friend": {"_count": 1}}, "learning": {"_count": 1, "Will": {"_count": 1}}, "sit": {"_count": 13, "on": {"_count": 2}, "down": {"_count": 8}, "with": {"_count": 1}, "at": {"_count": 1}, "over": {"_count": 1}}, "Susan": {"_count": 1, "scuttled": {"_count": 1}}, "jammed": {"_count": 1, "the": {"_count": 1}}, "Path": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 51, "put": {"_count": 1}, "come": {"_count": 1}, "only": {"_count": 1}, "until": {"_count": 4}, "speaking": {"_count": 1}, "noticing": {"_count": 1}, "hate": {"_count": 1}, "even": {"_count": 2}, "dark": {"_count": 1}, "trying": {"_count": 1}, "everyones": {"_count": 1}, "talking": {"_count": 1}, "as": {"_count": 1}, "sound": {"_count": 1}, "told": {"_count": 1}, "asked": {"_count": 1}, "at": {"_count": 2}, "embarrassed": {"_count": 1}, "yours": {"_count": 2}, "a": {"_count": 2}, "been": {"_count": 1}, "take": {"_count": 1}, "taking": {"_count": 1}, "know": {"_count": 1}, "realize": {"_count": 1}, "wanting": {"_count": 1}, "done": {"_count": 1}, "Nevilles": {"_count": 1}, "to": {"_count": 5}, "an": {"_count": 1}, "expect": {"_count": 1}, "pleased": {"_count": 1}, "realizing": {"_count": 1}, "immortality": {"_count": 1}, "just": {"_count": 1}, "think": {"_count": 1}, "give": {"_count": 1}, "let": {"_count": 1}, "any": {"_count": 1}, "knowing": {"_count": 1}}, "cheered": {"_count": 1, "": {"_count": 1}}, "lamb": {"_count": 1, "chops": {"_count": 1}}, "steak": {"_count": 1, "boiled": {"_count": 1}}, "robes": {"_count": 7, "stained": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}, "remained": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "jam": {"_count": 1, "doughnuts": {"_count": 1}}, "shes": {"_count": 20, "a": {"_count": 1}, "never": {"_count": 2}, "pretty": {"_count": 1}, "washed": {"_count": 1}, "got": {"_count": 1}, "really": {"_count": 1}, "found": {"_count": 1}, "the": {"_count": 3}, "ducked": {"_count": 1}, "afraid": {"_count": 1}, "sent": {"_count": 1}, "not": {"_count": 1}, "too": {"_count": 1}, "just": {"_count": 1}, "seeing": {"_count": 1}, "now": {"_count": 1}, "still": {"_count": 1}}, "force": {"_count": 3, "some": {"_count": 1}, "Snape": {"_count": 1}, "you": {"_count": 1}}, "into": {"_count": 34, "the": {"_count": 23}, "trouble": {"_count": 1}, "bed": {"_count": 1}, "his": {"_count": 3}, "my": {"_count": 1}, "a": {"_count": 3}, "Professor": {"_count": 1}, "her": {"_count": 1}}, "sleepy": {"_count": 5, "looked": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "voices": {"_count": 1}, "until": {"_count": 1}}, "sallow": {"_count": 1, "skin": {"_count": 1}}, "watered": {"_count": 4, "": {"_count": 1}, "the": {"_count": 1}, "Hmph": {"_count": 1}, "at": {"_count": 1}}, "bald": {"_count": 2, "Or": {"_count": 1}, "rather": {"_count": 1}}, "bits": {"_count": 4, "of": {"_count": 4}}, "pointed": {"_count": 45, "as": {"_count": 1}, "his": {"_count": 4}, "at": {"_count": 6}, "it": {"_count": 13}, "them": {"_count": 2}, "purple": {"_count": 1}, "to": {"_count": 4}, "straight": {"_count": 1}, "toward": {"_count": 2}, "hat": {"_count": 1}, "openly": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 2}, "chin": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}, "silences": {"_count": 1}, "blur": {"_count": 1}, "out": {"_count": 1}}, "hanging": {"_count": 2, "tapestries": {"_count": 1}, "from": {"_count": 1}}, "dragging": {"_count": 5, "their": {"_count": 1}, "Black": {"_count": 1}, "Harry": {"_count": 2}, "him": {"_count": 1}}, "vanished": {"_count": 35, "dropping": {"_count": 1}, "": {"_count": 13}, "from": {"_count": 6}, "too": {"_count": 1}, "behind": {"_count": 2}, "then": {"_count": 1}, "immediately": {"_count": 1}, "image": {"_count": 1}, "in": {"_count": 2}, "with": {"_count": 1}, "into": {"_count": 4}, "to": {"_count": 1}, "leaving": {"_count": 1}}, "found": {"_count": 47, "themselves": {"_count": 7}, "out": {"_count": 1}, "herself": {"_count": 1}, "himself": {"_count": 13}, "Harry": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 1}, "myself": {"_count": 1}, "Ron": {"_count": 1}, "Professor": {"_count": 1}, "that": {"_count": 4}, "yourself": {"_count": 1}, "the": {"_count": 2}, "five": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 3}, "Cho": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 1}, "him": {"_count": 2}, "Tonks": {"_count": 1}, "Fred": {"_count": 1}}, "heavier": {"_count": 4, "he": {"_count": 1}, "as": {"_count": 1}, "than": {"_count": 1}, "it": {"_count": 1}}, "shaking": {"_count": 15, "": {"_count": 5}, "Harry": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 3}, "their": {"_count": 1}, "uncontrollably": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "until": {"_count": 1}}, "fortytwo": {"_count": 1, "staircases": {"_count": 1}}, "doors": {"_count": 2, "that": {"_count": 1}, "until": {"_count": 1}}, "screech": {"_count": 1, "GOT": {"_count": 1}}, "shed": {"_count": 3, "whisk": {"_count": 1}, "have": {"_count": 2}}, "could": {"_count": 14, "pop": {"_count": 1}, "see": {"_count": 1}, "not": {"_count": 6}, "have": {"_count": 2}, "easily": {"_count": 1}, "no": {"_count": 1}, "think": {"_count": 1}, "read": {"_count": 1}}, "fungi": {"_count": 1, "and": {"_count": 1}}, "dates": {"_count": 1, "and": {"_count": 1}}, "Uric": {"_count": 1, "the": {"_count": 1}}, "toppled": {"_count": 4, "out": {"_count": 2}, "immediately": {"_count": 1}, "over": {"_count": 1}}, "clever": {"_count": 3, "she": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}}, "dangerous": {"_count": 12, "magic": {"_count": 2}, "plants": {"_count": 1}, "whatever": {"_count": 1}, "voice": {"_count": 1}, "": {"_count": 2}, "though": {"_count": 1}, "journey": {"_count": 1}, "overconfidence": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}}, "couldnt": {"_count": 4, "wait": {"_count": 1}, "change": {"_count": 1}, "be": {"_count": 1}, "resist": {"_count": 1}}, "pointy": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 5, "him": {"_count": 1}, "Flitwick": {"_count": 1}, "its": {"_count": 1}, "": {"_count": 1}, "her": {"_count": 1}}, "dropping": {"_count": 9, "letters": {"_count": 2}, "to": {"_count": 2}, "the": {"_count": 1}, "like": {"_count": 1}, "heavily": {"_count": 1}, "it": {"_count": 2}}, "packages": {"_count": 4, "onto": {"_count": 1}, "into": {"_count": 1}, "were": {"_count": 1}, "to": {"_count": 1}}, "have": {"_count": 30, "a": {"_count": 16}, "some": {"_count": 4}, "him": {"_count": 1}, "dinner": {"_count": 2}, "ago": {"_count": 1}, "decided": {"_count": 1}, "her": {"_count": 1}, "twelve": {"_count": 1}, "done": {"_count": 2}, "another": {"_count": 1}}, "sent": {"_count": 15, "Hedwig": {"_count": 1}, "it": {"_count": 2}, "up": {"_count": 1}, "a": {"_count": 2}, "Voldemort": {"_count": 1}, "him": {"_count": 2}, "them": {"_count": 1}, "to": {"_count": 2}, "another": {"_count": 1}, "spells": {"_count": 1}, "for": {"_count": 1}}, "would": {"_count": 12, "have": {"_count": 1}, "be": {"_count": 2}, "probably": {"_count": 1}, "like": {"_count": 1}, "finish": {"_count": 1}, "give": {"_count": 1}, "awake": {"_count": 1}, "attract": {"_count": 1}, "she": {"_count": 1}, "not": {"_count": 1}, "soon": {"_count": 1}}, "exact": {"_count": 1, "art": {"_count": 1}}, "wolfsbane": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}, "Seamus": {"_count": 31, "winked": {"_count": 1}, "falling": {"_count": 1}, "swished": {"_count": 1}, "had": {"_count": 3}, "Harry": {"_count": 1}, "came": {"_count": 2}, "Finnigan": {"_count": 2}, "Finnigans": {"_count": 1}, "were": {"_count": 6}, "who": {"_count": 1}, "": {"_count": 2}, "instead": {"_count": 1}, "out": {"_count": 1}, "clattered": {"_count": 1}, "for": {"_count": 1}, "grinned": {"_count": 1}, "roared": {"_count": 1}, "continued": {"_count": 1}, "alone": {"_count": 1}, "sitting": {"_count": 1}, "you": {"_count": 1}}, "wormwood": {"_count": 1, "make": {"_count": 1}}, "parchment": {"_count": 4, "": {"_count": 2}, "next": {"_count": 1}, "and": {"_count": 1}}, "crush": {"_count": 1, "snake": {"_count": 1}}, "legs": {"_count": 15, "": {"_count": 2}, "and": {"_count": 1}, "crossed": {"_count": 2}, "too": {"_count": 1}, "were": {"_count": 2}, "two": {"_count": 1}, "tightly": {"_count": 1}, "snapped": {"_count": 2}, "in": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}}, "meet": {"_count": 4, "Hagrid": {"_count": 1}, "them": {"_count": 1}, "me": {"_count": 1}, "in": {"_count": 1}}, "several": {"_count": 21, "booming": {"_count": 1}, "live": {"_count": 1}, "slugs": {"_count": 1}, "Slytherins": {"_count": 1}, "bags": {"_count": 1}, "turrets": {"_count": 1}, "people": {"_count": 1}, "more": {"_count": 1}, "new": {"_count": 1}, "lights": {"_count": 1}, "large": {"_count": 1}, "others": {"_count": 1}, "of": {"_count": 1}, "tantrums": {"_count": 1}, "broken": {"_count": 1}, "nasty": {"_count": 1}, "woolly": {"_count": 1}, "terrified": {"_count": 1}, "pale": {"_count": 1}, "things": {"_count": 1}, "blackbirds": {"_count": 1}}, "pheasants": {"_count": 1, "were": {"_count": 1}}, "putting": {"_count": 6, "rock": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "drooled": {"_count": 1, "all": {"_count": 1}}, "offered": {"_count": 7, "him": {"_count": 1}, "them": {"_count": 2}, "to": {"_count": 2}, "Hedwig": {"_count": 1}, "around": {"_count": 1}}, "Gryffindor": {"_count": 8, "and": {"_count": 2}, "Tower": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}, "was": {"_count": 1}, "rubies": {"_count": 1}, "where": {"_count": 1}}, "told": {"_count": 26, "long": {"_count": 1}, "her": {"_count": 2}, "me": {"_count": 4}, "them": {"_count": 6}, "him": {"_count": 5}, "all": {"_count": 1}, "Harry": {"_count": 1}, "us": {"_count": 2}, "Dad": {"_count": 1}, "Draco": {"_count": 1}, "Umbridge": {"_count": 2}}, "showed": {"_count": 8, "them": {"_count": 2}, "him": {"_count": 2}, "it": {"_count": 4}}, "if": {"_count": 60, "it": {"_count": 3}, "they": {"_count": 5}, "he": {"_count": 5}, "you": {"_count": 14}, "Harry": {"_count": 2}, "the": {"_count": 2}, "I": {"_count": 8}, "Malfoy": {"_count": 1}, "we": {"_count": 3}, "your": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}, "any": {"_count": 1}, "anyone": {"_count": 1}, "were": {"_count": 1}, "Im": {"_count": 1}, "one": {"_count": 2}, "Arthur": {"_count": 1}, "theres": {"_count": 1}, "she": {"_count": 2}, "Fleur": {"_count": 1}, "Coote": {"_count": 1}, "my": {"_count": 1}, "Hogwarts": {"_count": 1}}, "yellow": {"_count": 4, "eyes": {"_count": 1}, "shapes": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "some": {"_count": 25, "of": {"_count": 7}, "third": {"_count": 1}, "sullen": {"_count": 1}, "bagpipes": {"_count": 1}, "Pepperup": {"_count": 1}, "fruit": {"_count": 1}, "muttered": {"_count": 1}, "peace": {"_count": 1}, "fourth": {"_count": 1}, "cant": {"_count": 1}, "tea": {"_count": 1}, "mince": {"_count": 1}, "loud": {"_count": 1}, "to": {"_count": 1}, "way": {"_count": 1}, "people": {"_count": 1}, "glasses": {"_count": 1}, "flying": {"_count": 1}, "toppled": {"_count": 1}}, "say": {"_count": 15, "\u2018Up": {"_count": 1}, "\u2018Mischief": {"_count": 1}, "sorry": {"_count": 1}, "\u2018Dissendium": {"_count": 1}, "the": {"_count": 1}, "How": {"_count": 1}, "he": {"_count": 1}, "theyre": {"_count": 1}, "goodbye": {"_count": 1}, "no": {"_count": 1}, "yeah": {"_count": 1}, "something": {"_count": 1}, "excellent": {"_count": 1}, "that": {"_count": 1}, "hello": {"_count": 1}}, "Nevilles": {"_count": 6, "hadnt": {"_count": 1}, "pet": {"_count": 1}, "toad": {"_count": 1}, "robes": {"_count": 1}, "already": {"_count": 1}, "injuries": {"_count": 1}}, "jumpy": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "frightened": {"_count": 6, "of": {"_count": 1}, "but": {"_count": 1}, "every": {"_count": 1}, "": {"_count": 2}, "tones": {"_count": 1}}, "WHAM": {"_count": 1, "a": {"_count": 1}}, "Neville": {"_count": 68, "lay": {"_count": 1}, "": {"_count": 5}, "tried": {"_count": 1}, "were": {"_count": 7}, "at": {"_count": 1}, "dropped": {"_count": 1}, "Longbottom": {"_count": 2}, "was": {"_count": 3}, "Longbottoms": {"_count": 1}, "pulled": {"_count": 1}, "looked": {"_count": 2}, "choked": {"_count": 1}, "set": {"_count": 1}, "climbed": {"_count": 2}, "jumped": {"_count": 1}, "got": {"_count": 1}, "returned": {"_count": 1}, "decided": {"_count": 1}, "changed": {"_count": 1}, "looking": {"_count": 2}, "followed": {"_count": 2}, "stowed": {"_count": 1}, "had": {"_count": 2}, "and": {"_count": 3}, "laughed": {"_count": 1}, "found": {"_count": 1}, "now": {"_count": 2}, "gave": {"_count": 2}, "whose": {"_count": 1}, "brought": {"_count": 1}, "departed": {"_count": 1}, "kept": {"_count": 1}, "dived": {"_count": 1}, "Dolohov": {"_count": 1}, "again": {"_count": 1}, "caught": {"_count": 1}, "took": {"_count": 1}, "nodded": {"_count": 1}, "from": {"_count": 1}, "snored": {"_count": 1}, "picked": {"_count": 1}, "put": {"_count": 1}, "went": {"_count": 1}, "ran": {"_count": 1}, "said": {"_count": 1}, "bringing": {"_count": 1}}, "snatching": {"_count": 4, "something": {"_count": 1}, "Harrys": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}}, "taken": {"_count": 5, "off": {"_count": 1}, "down": {"_count": 1}, "a": {"_count": 1}, "orders": {"_count": 1}, "aim": {"_count": 1}}, "heard": {"_count": 19, "screams": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 3}, "their": {"_count": 1}, "a": {"_count": 5}, "three": {"_count": 1}, "Cedric": {"_count": 1}, "something": {"_count": 1}, "Lucius": {"_count": 1}, "voices": {"_count": 1}, "Avada": {"_count": 1}, "both": {"_count": 1}}, "gasps": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "an": {"_count": 45, "admiring": {"_count": 1}, "old": {"_count": 5}, "empty": {"_count": 2}, "anxious": {"_count": 1}, "extremely": {"_count": 1}, "oldfashioned": {"_count": 1}, "unearthly": {"_count": 1}, "executioner": {"_count": 1}, "unnatural": {"_count": 1}, "eyeball": {"_count": 1}, "uplifted": {"_count": 1}, "opportunity": {"_count": 1}, "expression": {"_count": 3}, "unpleasant": {"_count": 1}, "excellent": {"_count": 1}, "army": {"_count": 1}, "insane": {"_count": 1}, "echoing": {"_count": 1}, "overflowing": {"_count": 1}, "article": {"_count": 1}, "outbreak": {"_count": 1}, "extra": {"_count": 1}, "assortment": {"_count": 1}, "awkward": {"_count": 1}, "elderly": {"_count": 2}, "open": {"_count": 1}, "overcoat": {"_count": 1}, "eager": {"_count": 1}, "iron": {"_count": 1}, "enormous": {"_count": 2}, "insubstantial": {"_count": 1}, "aspidistra": {"_count": 1}, "invisible": {"_count": 1}, "ominous": {"_count": 1}, "object": {"_count": 1}, "earthquaking": {"_count": 1}}, "grasped": {"_count": 6, "the": {"_count": 4}, "each": {"_count": 1}, "his": {"_count": 1}}, "held": {"_count": 39, "the": {"_count": 2}, "it": {"_count": 14}, "him": {"_count": 5}, "out": {"_count": 8}, "up": {"_count": 2}, "open": {"_count": 1}, "them": {"_count": 2}, "his": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "hostage": {"_count": 1}, "tight": {"_count": 1}}, "streaked": {"_count": 6, "back": {"_count": 1}, "off": {"_count": 2}, "with": {"_count": 1}, "toward": {"_count": 1}, "hair": {"_count": 1}}, "Goyles": {"_count": 6, "triumphant": {"_count": 1}, "theyre": {"_count": 1}, "hair": {"_count": 1}, "huge": {"_count": 1}, "reactions": {"_count": 1}, "prance": {"_count": 1}}, "still": {"_count": 37, "Professor": {"_count": 1}, "yawning": {"_count": 1}, "see": {"_count": 1}, "wearing": {"_count": 1}, "sobbing": {"_count": 1}, "grinning": {"_count": 1}, "unable": {"_count": 1}, "no": {"_count": 1}, "looked": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 3}, "wasnt": {"_count": 1}, "rather": {"_count": 1}, "in": {"_count": 1}, "Dumbledore": {"_count": 1}, "pinching": {"_count": 1}, "as": {"_count": 1}, "gritty": {"_count": 1}, "giggling": {"_count": 1}, "gives": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 3}, "cowering": {"_count": 1}, "upon": {"_count": 1}, "borne": {"_count": 1}, "shooting": {"_count": 1}, "bearing": {"_count": 1}, "and": {"_count": 1}, "except": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}, "survived": {"_count": 1}, "they": {"_count": 1}}, "marched": {"_count": 14, "along": {"_count": 1}, "through": {"_count": 1}, "him": {"_count": 2}, "them": {"_count": 1}, "directly": {"_count": 1}, "off": {"_count": 2}, "in": {"_count": 1}, "back": {"_count": 1}, "straight": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}, "out": {"_count": 1}}, "poked": {"_count": 1, "her": {"_count": 1}}, "staring": {"_count": 32, "at": {"_count": 13}, "": {"_count": 4}, "down": {"_count": 3}, "around": {"_count": 4}, "hopelessly": {"_count": 2}, "wildly": {"_count": 1}, "after": {"_count": 1}, "straight": {"_count": 1}, "from": {"_count": 1}, "blankly": {"_count": 1}, "out": {"_count": 1}}, "kidney": {"_count": 1, "pie": {"_count": 1}}, "gaped": {"_count": 2, "at": {"_count": 1}, "speechless": {"_count": 1}}, "hurried": {"_count": 52, "over": {"_count": 4}, "off": {"_count": 10}, "from": {"_count": 1}, "through": {"_count": 1}, "footsteps": {"_count": 1}, "out": {"_count": 6}, "upstairs": {"_count": 1}, "to": {"_count": 4}, "away": {"_count": 4}, "back": {"_count": 3}, "into": {"_count": 2}, "up": {"_count": 3}, "toward": {"_count": 2}, "straight": {"_count": 1}, "on": {"_count": 2}, "forward": {"_count": 1}, "along": {"_count": 3}, "onward": {"_count": 1}, "around": {"_count": 1}, "after": {"_count": 1}}, "youve": {"_count": 6, "got": {"_count": 5}, "er": {"_count": 1}}, "scowl": {"_count": 2, "": {"_count": 2}}, "Malfoyll": {"_count": 1, "be": {"_count": 1}}, "nothing": {"_count": 8, "happens": {"_count": 1}, "you": {"_count": 1}, "Dobby": {"_count": 1}, "more": {"_count": 1}, "under": {"_count": 1}, "happened": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}}, "punch": {"_count": 2, "him": {"_count": 1}, "each": {"_count": 1}}, "spoke": {"_count": 10, "to": {"_count": 4}, "instead": {"_count": 1}, "quietly": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "in": {"_count": 1}}, "crept": {"_count": 4, "across": {"_count": 1}, "toward": {"_count": 1}, "back": {"_count": 1}, "out": {"_count": 1}}, "climbed": {"_count": 16, "through": {"_count": 3}, "narrow": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 1}, "down": {"_count": 1}, "up": {"_count": 2}, "into": {"_count": 2}, "over": {"_count": 1}, "back": {"_count": 1}}, "wait": {"_count": 13, "for": {"_count": 9}, "by": {"_count": 1}, "here": {"_count": 1}, "until": {"_count": 1}, "to": {"_count": 1}}, "used": {"_count": 5, "it": {"_count": 4}, "him": {"_count": 1}}, "beckoned": {"_count": 9, "them": {"_count": 3}, "Harry": {"_count": 4}, "": {"_count": 1}, "again": {"_count": 1}}, "tiptoed": {"_count": 2, "toward": {"_count": 1}, "inside": {"_count": 1}}, "Crabbe": {"_count": 4, "werent": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "running": {"_count": 1}}, "statues": {"_count": 1, "winked": {"_count": 1}}, "petrified": {"_count": 2, "they": {"_count": 1}, "pleading": {"_count": 1}}, "broke": {"_count": 14, "into": {"_count": 8}, "your": {"_count": 1}, "down": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "my": {"_count": 1}}, "crashing": {"_count": 2, "were": {"_count": 1}, "the": {"_count": 1}}, "galloped": {"_count": 2, "down": {"_count": 1}, "toward": {"_count": 1}}, "wiping": {"_count": 7, "his": {"_count": 2}, "confetti": {"_count": 1}, "her": {"_count": 2}, "them": {"_count": 1}, "sweat": {"_count": 1}}, "spluttering": {"_count": 2, "": {"_count": 1}, "Mundungus": {"_count": 1}}, "whispered": {"_count": 16, "Alohomora": {"_count": 1}, "a": {"_count": 1}, "Look": {"_count": 1}, "something": {"_count": 3}, "He": {"_count": 1}, "I": {"_count": 2}, "in": {"_count": 1}, "urgently": {"_count": 2}, "so": {"_count": 1}, "Did": {"_count": 1}, "for": {"_count": 1}, "Levicorpus": {"_count": 1}}, "Filch": {"_count": 9, "cursing": {"_count": 1}, "were": {"_count": 1}, "would": {"_count": 1}, "both": {"_count": 2}, "bursting": {"_count": 1}, "with": {"_count": 1}, "had": {"_count": 1}, "gnashing": {"_count": 1}}, "quivering": {"_count": 2, "in": {"_count": 1}, "ominously": {"_count": 1}}, "death": {"_count": 3, "hed": {"_count": 1}, "": {"_count": 1}, "AND": {"_count": 1}}, "collapsed": {"_count": 5, "trembling": {"_count": 1}, "onto": {"_count": 2}, "": {"_count": 1}, "with": {"_count": 1}}, "felt": {"_count": 50, "it": {"_count": 6}, "the": {"_count": 7}, "around": {"_count": 1}, "his": {"_count": 7}, "as": {"_count": 2}, "so": {"_count": 1}, "something": {"_count": 1}, "a": {"_count": 7}, "himself": {"_count": 2}, "suddenly": {"_count": 1}, "two": {"_count": 1}, "me": {"_count": 1}, "heartened": {"_count": 1}, "that": {"_count": 2}, "very": {"_count": 1}, "goose": {"_count": 1}, "Fangs": {"_count": 1}, "cautiously": {"_count": 1}, "its": {"_count": 1}, "Voldemort": {"_count": 1}, "not": {"_count": 1}, "Hermione": {"_count": 1}, "closer": {"_count": 1}, "another": {"_count": 1}}, "spite": {"_count": 1, "on": {"_count": 1}}, "your": {"_count": 32, "brothers": {"_count": 1}, "families": {"_count": 1}, "father": {"_count": 1}, "hippogriff": {"_count": 1}, "food": {"_count": 1}, "markings": {"_count": 1}, "family": {"_count": 2}, "friends": {"_count": 2}, "Ministry": {"_count": 1}, "staff": {"_count": 1}, "owl": {"_count": 1}, "eyes": {"_count": 1}, "temper": {"_count": 1}, "future": {"_count": 1}, "home": {"_count": 1}, "brains": {"_count": 1}, "guts": {"_count": 1}, "careful": {"_count": 2}, "human": {"_count": 1}, "mind": {"_count": 1}, "aunt": {"_count": 1}, "arm": {"_count": 1}, "hairs": {"_count": 1}, "parents": {"_count": 1}, "ah": {"_count": 1}, "sister": {"_count": 1}, "Ravenclaws": {"_count": 1}, "brother": {"_count": 1}, "precious": {"_count": 1}}, "confusion": {"_count": 2, "": {"_count": 2}}, "shiny": {"_count": 6, "with": {"_count": 1}, "": {"_count": 2}, "bald": {"_count": 1}, "and": {"_count": 2}}, "Nimbus": {"_count": 1, "Two": {"_count": 1}}, "try": {"_count": 20, "and": {"_count": 9}, "to": {"_count": 5}, "out": {"_count": 1}, "Stunning": {"_count": 1}, "from": {"_count": 1}, "again": {"_count": 2}, "for": {"_count": 1}}, "stop": {"_count": 7, "the": {"_count": 2}, "it": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}, "you": {"_count": 1}, "talking": {"_count": 1}}, "freed": {"_count": 1, "one": {"_count": 1}}, "managed": {"_count": 6, "to": {"_count": 5}, "a": {"_count": 1}}, "strapping": {"_count": 2, "it": {"_count": 1}, "with": {"_count": 1}}, "knock": {"_count": 2, "them": {"_count": 1}, "me": {"_count": 1}}, "score": {"_count": 2, "with": {"_count": 1}, "Bulgarias": {"_count": 1}}, "last": {"_count": 3, "ball": {"_count": 1}, "time": {"_count": 1}, "heard": {"_count": 1}}, "difficult": {"_count": 6, "to": {"_count": 2}, "times": {"_count": 1}, "essay": {"_count": 1}, "years": {"_count": 1}, "week": {"_count": 1}}, "Quaffle": {"_count": 1, "to": {"_count": 1}}, "fifty": {"_count": 15, "points": {"_count": 10}, "languages": {"_count": 1}, "Chocolate": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "others": {"_count": 1}}, "Wood": {"_count": 6, "was": {"_count": 1}, "to": {"_count": 1}, "shook": {"_count": 1}, "": {"_count": 1}, "approached": {"_count": 1}, "pulled": {"_count": 1}}, "flick": {"_count": 2, "remember": {"_count": 1}, "": {"_count": 1}}, "flicked": {"_count": 4, "but": {"_count": 1}, "through": {"_count": 2}, "his": {"_count": 1}}, "long": {"_count": 10, "": {"_count": 1}, "gorillaish": {"_count": 1}, "scaly": {"_count": 1}, "wild": {"_count": 1}, "black": {"_count": 3}, "slanting": {"_count": 1}, "haired": {"_count": 1}, "ones": {"_count": 1}}, "hovered": {"_count": 3, "about": {"_count": 2}, "like": {"_count": 1}}, "wasnt": {"_count": 3, "seen": {"_count": 1}, "at": {"_count": 1}, "even": {"_count": 1}}, "wanted": {"_count": 6, "to": {"_count": 4}, "me": {"_count": 1}, "it": {"_count": 1}}, "ceiling": {"_count": 8, "while": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 2}, "identical": {"_count": 1}, "of": {"_count": 1}, "cracked": {"_count": 1}, "were": {"_count": 1}}, "terror": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "lock": {"_count": 3, "it": {"_count": 2}, "them": {"_count": 1}}, "seizing": {"_count": 4, "a": {"_count": 1}, "Harrys": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}}, "paused": {"_count": 4, "again": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}, "looking": {"_count": 1}}, "flailed": {"_count": 1, "its": {"_count": 1}}, "loud": {"_count": 6, "footsteps": {"_count": 1}, "noises": {"_count": 1}, "laughing": {"_count": 1}, "conversation": {"_count": 1}, "talk": {"_count": 1}, "applause": {"_count": 1}}, "fetch": {"_count": 9, "anyone": {"_count": 1}, "the": {"_count": 2}, "me": {"_count": 1}, "you": {"_count": 1}, "your": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}, "Snape": {"_count": 1}}, "here": {"_count": 10, "she": {"_count": 1}, "Come": {"_count": 1}, "was": {"_count": 2}, "Bagman": {"_count": 1}, "he": {"_count": 1}, "comes": {"_count": 1}, "I": {"_count": 1}, "are": {"_count": 1}, "to": {"_count": 1}}, "entered": {"_count": 13, "": {"_count": 7}, "the": {"_count": 5}, "happily": {"_count": 1}}, "noisy": {"_count": 3, "": {"_count": 2}, "again": {"_count": 1}}, "knocking": {"_count": 4, "out": {"_count": 1}, "the": {"_count": 1}, "over": {"_count": 1}, "off": {"_count": 1}}, "enormous": {"_count": 3, "beaverskin": {"_count": 1}, "teardrops": {"_count": 1}, "bloodshot": {"_count": 1}}, "fastest": {"_count": 1, "players": {"_count": 1}}, "turn": {"_count": 7, "up": {"_count": 2}, "them": {"_count": 2}, "it": {"_count": 1}, "on": {"_count": 1}, "toward": {"_count": 1}}, "Rons": {"_count": 38, "Charms": {"_count": 1}, "wand": {"_count": 1}, "stupefied": {"_count": 1}, "utter": {"_count": 2}, "jaw": {"_count": 1}, "four": {"_count": 1}, "room": {"_count": 1}, "table": {"_count": 2}, "last": {"_count": 1}, "restraint": {"_count": 1}, "wands": {"_count": 1}, "friend": {"_count": 1}, "friends": {"_count": 1}, "conversation": {"_count": 1}, "lack": {"_count": 1}, "names": {"_count": 1}, "and": {"_count": 1}, "taunts": {"_count": 1}, "were": {"_count": 2}, "mother": {"_count": 1}, "direction": {"_count": 1}, "bedroom": {"_count": 3}, "mugs": {"_count": 1}, "faces": {"_count": 1}, "memories": {"_count": 1}, "feeble": {"_count": 1}, "head": {"_count": 1}, "desire": {"_count": 1}, "showing": {"_count": 1}, "fit": {"_count": 1}, "ears": {"_count": 1}, "just": {"_count": 1}, "confused": {"_count": 1}}, "mangled": {"_count": 1, "": {"_count": 1}}, "steal": {"_count": 2, "something": {"_count": 1}, "the": {"_count": 1}}, "Dean": {"_count": 39, "the": {"_count": 1}, "who": {"_count": 4}, "Thomas": {"_count": 5}, "hung": {"_count": 1}, "bringing": {"_count": 1}, "had": {"_count": 3}, "": {"_count": 4}, "waving": {"_count": 1}, "narrowly": {"_count": 1}, "muttering": {"_count": 1}, "scramble": {"_count": 1}, "were": {"_count": 1}, "but": {"_count": 1}, "leaving": {"_count": 1}, "row": {"_count": 1}, "to": {"_count": 1}, "came": {"_count": 1}, "split": {"_count": 1}, "arent": {"_count": 1}, "would": {"_count": 1}, "joined": {"_count": 1}, "neither": {"_count": 1}, "sitting": {"_count": 1}, "can": {"_count": 1}, "entered": {"_count": 1}, "relaid": {"_count": 1}, "not": {"_count": 1}}, "hoping": {"_count": 5, "his": {"_count": 1}, "against": {"_count": 1}, "to": {"_count": 1}, "very": {"_count": 1}, "that": {"_count": 1}}, "no": {"_count": 48, "the": {"_count": 1}, "less": {"_count": 1}, "said": {"_count": 1}, "one": {"_count": 12}, "numbers": {"_count": 1}, "Muggle": {"_count": 1}, "monster": {"_count": 1}, "more": {"_count": 4}, "lights": {"_count": 1}, "harm": {"_count": 1}, "ones": {"_count": 1}, "sense": {"_count": 1}, "visible": {"_count": 1}, "excuses": {"_count": 1}, "doubt": {"_count": 2}, "mother": {"_count": 1}, "world": {"_count": 1}, "sooner": {"_count": 2}, "doors": {"_count": 1}, "witnesses": {"_count": 1}, "Beaters": {"_count": 1}, "sign": {"_count": 1}, "you": {"_count": 1}, "moment": {"_count": 1}, "": {"_count": 1}, "Healer": {"_count": 1}, "reliance": {"_count": 1}, "conscience": {"_count": 1}, "keyhole": {"_count": 1}, "explanations": {"_count": 1}, "wandmaker": {"_count": 1}, "man": {"_count": 1}}, "OUCH": {"_count": 1, "that": {"_count": 1}}, "Johnson": {"_count": 1, "back": {"_count": 1}}, "moans": {"_count": 2, "from": {"_count": 2}}, "peering": {"_count": 6, "skyward": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 1}, "over": {"_count": 1}}, "Woods": {"_count": 1, "game": {"_count": 1}}, "once": {"_count": 18, "a": {"_count": 3}, "I": {"_count": 1}, "what": {"_count": 1}, "young": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}, "again": {"_count": 3}, "she": {"_count": 1}, "or": {"_count": 1}, "Uncle": {"_count": 1}, "Fleur": {"_count": 1}, "inside": {"_count": 1}, "they": {"_count": 1}, "started": {"_count": 1}}, "Fred": {"_count": 24, "Weasley": {"_count": 1}, "and": {"_count": 10}, "revved": {"_count": 1}, "": {"_count": 2}, "vanished": {"_count": 1}, "became": {"_count": 1}, "were": {"_count": 1}, "said": {"_count": 1}, "left": {"_count": 1}, "George": {"_count": 1}, "if": {"_count": 1}, "led": {"_count": 1}, "Im": {"_count": 1}, "was": {"_count": 1}}, "Chaser": {"_count": 1, "Bell": {"_count": 1}}, "speeds": {"_count": 1, "toward": {"_count": 1}}, "neck": {"_count": 9, "they": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}, "were": {"_count": 1}}, "disgusting": {"_count": 1, "bit": {"_count": 1}}, "revolting": {"_count": 1, "foul": {"_count": 1}}, "knees": {"_count": 11, "": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 1}, "now": {"_count": 1}, "in": {"_count": 1}, "searching": {"_count": 1}, "ready": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}}, "twitching": {"_count": 4, "as": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "heap": {"_count": 1}}, "pull": {"_count": 4, "Harry": {"_count": 1}, "himself": {"_count": 1}, "his": {"_count": 1}, "faces": {"_count": 1}}, "circled": {"_count": 1, "beneath": {"_count": 1}}, "scored": {"_count": 2, "five": {"_count": 1}, "seventeen": {"_count": 1}}, "Lee": {"_count": 18, "Jordan": {"_count": 12}, "swore": {"_count": 2}, "exchanged": {"_count": 1}, "ignored": {"_count": 1}, "collected": {"_count": 1}, "roared": {"_count": 1}}, "seventy": {"_count": 2, "points": {"_count": 1}, "two": {"_count": 1}}, "kill": {"_count": 15, "Harry": {"_count": 1}, "me": {"_count": 3}, "werewolves": {"_count": 1}, "you": {"_count": 5}, "Voldemort": {"_count": 2}, "him": {"_count": 2}, "her": {"_count": 1}}, "Snape": {"_count": 60, "wasnt": {"_count": 1}, "": {"_count": 11}, "came": {"_count": 3}, "Harry": {"_count": 1}, "went": {"_count": 2}, "have": {"_count": 1}, "in": {"_count": 1}, "now": {"_count": 1}, "turned": {"_count": 1}, "hurrying": {"_count": 1}, "s": {"_count": 1}, "standing": {"_count": 1}, "were": {"_count": 4}, "had": {"_count": 3}, "of": {"_count": 1}, "been": {"_count": 1}, "beckoned": {"_count": 1}, "looked": {"_count": 5}, "moved": {"_count": 2}, "treat": {"_count": 1}, "both": {"_count": 1}, "looking": {"_count": 1}, "lowered": {"_count": 1}, "keeled": {"_count": 1}, "was": {"_count": 2}, "hated": {"_count": 1}, "stepped": {"_count": 1}, "knew": {"_count": 1}, "Stan": {"_count": 1}, "I": {"_count": 1}, "did": {"_count": 1}, "seized": {"_count": 1}, "stood": {"_count": 1}, "faced": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "be": {"_count": 8, "grateful": {"_count": 1}, "done": {"_count": 1}, "careful": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}, "damned": {"_count": 1}, "forgiven": {"_count": 1}}, "smirking": {"_count": 1, "": {"_count": 1}}, "mistletoe": {"_count": 3, "hung": {"_count": 1}, "crisscrossing": {"_count": 1}, "were": {"_count": 1}}, "save": {"_count": 5, "us": {"_count": 1}, "my": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "yourself": {"_count": 1}}, "A": {"_count": 1, "Study": {"_count": 1}}, "titles": {"_count": 1, "she": {"_count": 1}}, "only": {"_count": 23, "read": {"_count": 1}, "hope": {"_count": 1}, "girl": {"_count": 1}, "Black": {"_count": 1}, "returned": {"_count": 1}, "Fleur": {"_count": 1}, "with": {"_count": 1}, "when": {"_count": 2}, "if": {"_count": 1}, "his": {"_count": 1}, "one": {"_count": 2}, "valuable": {"_count": 1}, "place": {"_count": 1}, "narrowly": {"_count": 1}, "vaguely": {"_count": 1}, "hours": {"_count": 1}, "grudgingly": {"_count": 1}, "to": {"_count": 1}, "now": {"_count": 1}, "he": {"_count": 1}, "weapon": {"_count": 1}}, "plotting": {"_count": 1, "ways": {"_count": 1}}, "battered": {"_count": 2, "": {"_count": 1}, "umbrellas": {"_count": 1}}, "scrawled": {"_count": 2, "across": {"_count": 1}, "a": {"_count": 1}}, "enclose": {"_count": 1, "your": {"_count": 1}}, "my": {"_count": 31, "aunt": {"_count": 1}, "head": {"_count": 1}, "potions": {"_count": 1}, "bloods": {"_count": 1}, "friend": {"_count": 2}, "husband": {"_count": 1}, "own": {"_count": 1}, "best": {"_count": 1}, "mother": {"_count": 4}, "grandmother": {"_count": 1}, "scar": {"_count": 1}, "body": {"_count": 1}, "possession": {"_count": 1}, "old": {"_count": 2}, "cousin": {"_count": 2}, "throats": {"_count": 1}, "Death": {"_count": 1}, "dad": {"_count": 1}, "talents": {"_count": 1}, "unborn": {"_count": 1}, "brilliant": {"_count": 1}, "sister": {"_count": 1}, "terrible": {"_count": 1}, "temptation": {"_count": 1}, "father": {"_count": 1}}, "oh": {"_count": 4, "no": {"_count": 1}, "Harry": {"_count": 1}, "its": {"_count": 2}}, "mines": {"_count": 1, "always": {"_count": 1}}, "silvery": {"_count": 2, "gray": {"_count": 1}, "Invisibility": {"_count": 1}}, "really": {"_count": 3, "valuable": {"_count": 1}, "excellent": {"_count": 1}, "noisy": {"_count": 1}}, "warm": {"_count": 4, "": {"_count": 2}, "next": {"_count": 1}, "up": {"_count": 1}}, "Forge": {"_count": 1, "": {"_count": 1}}, "boiled": {"_count": 1, "potatoes": {"_count": 1}}, "cranberry": {"_count": 1, "sauce": {"_count": 1}}, "stacks": {"_count": 1, "of": {"_count": 1}}, "engulfed": {"_count": 1, "them": {"_count": 1}}, "redder": {"_count": 2, "in": {"_count": 1}, "as": {"_count": 1}}, "blushed": {"_count": 3, "her": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}}, "gasping": {"_count": 3, "for": {"_count": 1}, "from": {"_count": 1}, "Harry": {"_count": 1}}, "Christmas": {"_count": 2, "cake": {"_count": 1}, "puddings": {"_count": 1}}, "watch": {"_count": 13, "Percy": {"_count": 1}, "out": {"_count": 1}, "you": {"_count": 2}, "what": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 1}, "how": {"_count": 1}}, "whoever": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "cake": {"_count": 2, "and": {"_count": 1}, "on": {"_count": 1}}, "shadows": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 37, "though": {"_count": 4}, "now": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 2}, "in": {"_count": 3}, "more": {"_count": 3}, "he": {"_count": 1}, "asked": {"_count": 1}, "Pansy": {"_count": 1}, "their": {"_count": 1}, "Aunt": {"_count": 1}, "to": {"_count": 1}, "those": {"_count": 1}, "made": {"_count": 1}, "the": {"_count": 3}, "slightly": {"_count": 1}, "worse": {"_count": 1}, "taller": {"_count": 1}, "if": {"_count": 2}, "gave": {"_count": 1}, "after": {"_count": 1}, "Dirk": {"_count": 1}, "that": {"_count": 1}, "Bellatrix": {"_count": 1}, "with": {"_count": 1}, "less": {"_count": 1}}, "balancing": {"_count": 2, "it": {"_count": 2}}, "somebodys": {"_count": 2, "been": {"_count": 1}, "shopping": {"_count": 1}}, "chairs": {"_count": 3, "were": {"_count": 1}, "in": {"_count": 1}, "stood": {"_count": 1}}, "scared": {"_count": 7, "looking": {"_count": 1}, "": {"_count": 3}, "as": {"_count": 1}, "too": {"_count": 1}, "and": {"_count": 1}}, "waving": {"_count": 16, "": {"_count": 1}, "at": {"_count": 3}, "energetically": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}, "Hermiones": {"_count": 1}, "to": {"_count": 1}, "her": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 1}, "carving": {"_count": 1}, "even": {"_count": 1}}, "reach": {"_count": 1, "them": {"_count": 1}}, "go": {"_count": 17, "back": {"_count": 3}, "straight": {"_count": 1}, "and": {"_count": 3}, "Its": {"_count": 1}, "there": {"_count": 1}, "through": {"_count": 1}, "right": {"_count": 1}, "down": {"_count": 1}, "ahead": {"_count": 1}, "Snape": {"_count": 1}, "": {"_count": 2}, "into": {"_count": 1}}, "Im": {"_count": 41, "Head": {"_count": 1}, "holding": {"_count": 1}, "much": {"_count": 2}, "going": {"_count": 4}, "calling": {"_count": 1}, "not": {"_count": 4}, "sure": {"_count": 11}, "obviously": {"_count": 1}, "sorry": {"_count": 1}, "afraid": {"_count": 1}, "just": {"_count": 1}, "wearing": {"_count": 1}, "a": {"_count": 2}, "here": {"_count": 1}, "willing": {"_count": 1}, "the": {"_count": 2}, "getting": {"_count": 1}, "having": {"_count": 1}, "starting": {"_count": 1}, "doing": {"_count": 1}, "pleased": {"_count": 1}, "guessing": {"_count": 1}}, "left": {"_count": 34, "": {"_count": 5}, "the": {"_count": 14}, "his": {"_count": 1}, "through": {"_count": 2}, "him": {"_count": 1}, "one": {"_count": 1}, "you": {"_count": 1}, "them": {"_count": 4}, "at": {"_count": 1}, "without": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}}, "visit": {"_count": 9, "Hagrid": {"_count": 5}, "me": {"_count": 2}, "Ron": {"_count": 1}, "your": {"_count": 1}}, "anyway": {"_count": 4, "youve": {"_count": 1}, "the": {"_count": 2}, "love": {"_count": 1}}, "gone": {"_count": 5, "and": {"_count": 1}, "down": {"_count": 1}, "": {"_count": 2}, "wandering": {"_count": 1}}, "disappointment": {"_count": 3, "that": {"_count": 1}, "washed": {"_count": 1}, "made": {"_count": 1}}, "muddy": {"_count": 3, "practice": {"_count": 1}, "": {"_count": 2}}, "pretending": {"_count": 6, "to": {"_count": 2}, "Im": {"_count": 3}, "she": {"_count": 1}}, "performed": {"_count": 2, "the": {"_count": 2}}, "opera": {"_count": 1, "lover": {"_count": 1}}, "sixtyfifth": {"_count": 1, "birthday": {"_count": 1}}, "fiftyeight": {"_count": 1, "": {"_count": 1}}, "stops": {"_count": 1, "you": {"_count": 1}}, "sixtyfive": {"_count": 1, "is": {"_count": 1}}, "cheers": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "yelps": {"_count": 1, "coming": {"_count": 1}}, "hugging": {"_count": 3, "Parvati": {"_count": 1}, "her": {"_count": 1}, "each": {"_count": 1}}, "tightlipped": {"_count": 1, "then": {"_count": 1}}, "lower": {"_count": 11, "brushing": {"_count": 1}, "went": {"_count": 1}, "making": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}, "they": {"_count": 2}, "until": {"_count": 1}, "into": {"_count": 1}, "the": {"_count": 2}}, "decided": {"_count": 10, "where": {"_count": 1}, "to": {"_count": 4}, "his": {"_count": 1}, "it": {"_count": 1}, "dementors": {"_count": 1}, "never": {"_count": 1}, "Id": {"_count": 1}}, "strode": {"_count": 19, "out": {"_count": 2}, "off": {"_count": 5}, "over": {"_count": 2}, "past": {"_count": 1}, "away": {"_count": 2}, "quickly": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}, "straight": {"_count": 1}, "around": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}}, "Snapes": {"_count": 6, "trying": {"_count": 1}, "": {"_count": 1}, "conversation": {"_count": 1}, "face": {"_count": 2}, "row": {"_count": 1}}, "Quirrell": {"_count": 2, "would": {"_count": 1}, "lunged": {"_count": 1}}, "thinner": {"_count": 1, "but": {"_count": 1}}, "colorcoding": {"_count": 1, "all": {"_count": 1}}, "yawning": {"_count": 3, "Harry": {"_count": 1}, "": {"_count": 2}}, "Ireland": {"_count": 4, "From": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "Hebridean": {"_count": 1, "Blacks": {"_count": 1}}, "Profit": {"_count": 1, "its": {"_count": 1}}, "excited": {"_count": 4, "": {"_count": 3}, "voice": {"_count": 1}}, "bulging": {"_count": 5, "orange": {"_count": 1}, "green": {"_count": 1}, "pale": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}}, "chicken": {"_count": 1, "feathers": {"_count": 1}}, "Norberts": {"_count": 1, "going": {"_count": 1}}, "take": {"_count": 24, "him": {"_count": 1}, "you": {"_count": 1}, "what": {"_count": 1}, "over": {"_count": 1}, "it": {"_count": 3}, "his": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 1}, "their": {"_count": 1}, "out": {"_count": 1}, "one": {"_count": 1}, "care": {"_count": 1}, "me": {"_count": 1}, "them": {"_count": 1}, "Nagini": {"_count": 1}, "your": {"_count": 1}, "charge": {"_count": 1}, "up": {"_count": 1}, "my": {"_count": 1}}, "Norbert": {"_count": 1, "": {"_count": 1}}, "ready": {"_count": 6, "in": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 2}, "Coote": {"_count": 1}}, "stepped": {"_count": 12, "underneath": {"_count": 1}, "carefully": {"_count": 1}, "forward": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 2}, "onto": {"_count": 2}, "over": {"_count": 1}, "back": {"_count": 2}, "inside": {"_count": 1}}, "along": {"_count": 9, "the": {"_count": 6}, "a": {"_count": 2}, "corridors": {"_count": 1}}, "thanked": {"_count": 1, "them": {"_count": 1}}, "waited": {"_count": 20, "without": {"_count": 1}, "": {"_count": 7}, "for": {"_count": 9}, "unusually": {"_count": 1}, "breath": {"_count": 1}, "his": {"_count": 1}}, "wild": {"_count": 1, "coverup": {"_count": 1}}, "creeping": {"_count": 1, "around": {"_count": 1}}, "believed": {"_count": 3, "it": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}}, "hurt": {"_count": 1, "": {"_count": 1}}, "cant": {"_count": 3, "do": {"_count": 1}, "remember": {"_count": 1}, "complain": {"_count": 1}}, "admired": {"_count": 2, "people": {"_count": 1}, "from": {"_count": 1}}, "Hufflepuffs": {"_count": 2, "turned": {"_count": 1}, "were": {"_count": 1}}, "cheering": {"_count": 2, "Thanks": {"_count": 1}, "swept": {"_count": 1}}, "people": {"_count": 6, "still": {"_count": 1}, "flooded": {"_count": 1}, "kept": {"_count": 1}, "began": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 1}}, "spying": {"_count": 1, "": {"_count": 1}}, "working": {"_count": 4, "in": {"_count": 1}, "silently": {"_count": 1}, "conditions": {"_count": 2}}, "spells": {"_count": 3, "by": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "goblin": {"_count": 3, "rebellions": {"_count": 1}, "applauded": {"_count": 1}, "made": {"_count": 1}}, "leading": {"_count": 9, "them": {"_count": 3}, "the": {"_count": 2}, "Harry": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}}, "pain": {"_count": 5, "are": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "crossed": {"_count": 1}}, "Fang": {"_count": 10, "took": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "stood": {"_count": 1}, "bounded": {"_count": 1}, "thudded": {"_count": 1}, "was": {"_count": 1}, "returning": {"_count": 1}, "howling": {"_count": 1}, "galloping": {"_count": 1}}, "hoisted": {"_count": 6, "them": {"_count": 2}, "himself": {"_count": 3}, "him": {"_count": 1}}, "Hermiones": {"_count": 35, "jaws": {"_count": 1}, "bewildered": {"_count": 1}, "voices": {"_count": 1}, "grinning": {"_count": 1}, "faces": {"_count": 3}, "friendship": {"_count": 1}, "wands": {"_count": 2}, "hiding": {"_count": 1}, "great": {"_count": 1}, "benefit": {"_count": 1}, "hands": {"_count": 1}, "reactions": {"_count": 1}, "": {"_count": 1}, "table": {"_count": 1}, "too": {"_count": 1}, "bad": {"_count": 1}, "but": {"_count": 1}, "answers": {"_count": 1}, "robes": {"_count": 1}, "voice": {"_count": 1}, "attitudes": {"_count": 1}, "laps": {"_count": 1}, "gazes": {"_count": 1}, "slow": {"_count": 1}, "opinions": {"_count": 1}, "tension": {"_count": 1}, "whereabouts": {"_count": 1}, "various": {"_count": 1}, "arms": {"_count": 2}, "united": {"_count": 1}, "heads": {"_count": 1}}, "bodied": {"_count": 1, "and": {"_count": 1}}, "wilderlooking": {"_count": 1, "than": {"_count": 1}}, "Bane": {"_count": 3, "until": {"_count": 1}, "came": {"_count": 1}, "behind": {"_count": 1}}, "stood": {"_count": 25, "looking": {"_count": 1}, "at": {"_count": 1}, "back": {"_count": 4}, "up": {"_count": 4}, "shaking": {"_count": 1}, "themselves": {"_count": 1}, "there": {"_count": 2}, "scowling": {"_count": 1}, "facing": {"_count": 2}, "beside": {"_count": 1}, "before": {"_count": 2}, "staring": {"_count": 1}, "over": {"_count": 1}, "waiting": {"_count": 1}, "out": {"_count": 1}, "now": {"_count": 1}}, "deeper": {"_count": 12, "into": {"_count": 8}, "under": {"_count": 1}, "out": {"_count": 1}, "amongst": {"_count": 1}, "Harry": {"_count": 1}}, "sad": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "bolted": {"_count": 6, "so": {"_count": 1}, "down": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "front": {"_count": 1}}, "sweaty": {"_count": 5, "": {"_count": 3}, "as": {"_count": 1}, "his": {"_count": 1}}, "tail": {"_count": 3, "hair": {"_count": 1}, "flailing": {"_count": 1}, "of": {"_count": 1}}, "everything": {"_count": 45, "to": {"_count": 2}, "": {"_count": 17}, "turned": {"_count": 1}, "and": {"_count": 1}, "came": {"_count": 1}, "was": {"_count": 3}, "said": {"_count": 4}, "but": {"_count": 4}, "will": {"_count": 1}, "had": {"_count": 1}, "dont": {"_count": 1}, "became": {"_count": 1}, "cant": {"_count": 1}, "within": {"_count": 1}, "for": {"_count": 1}, "when": {"_count": 1}, "I": {"_count": 1}, "going": {"_count": 1}, "Regulus": {"_count": 1}, "went": {"_count": 1}}, "defenseless": {"_count": 2, "to": {"_count": 1}, "as": {"_count": 1}}, "power": {"_count": 4, "something": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}}, "cantered": {"_count": 2, "back": {"_count": 1}, "the": {"_count": 1}}, "Voldemorts": {"_count": 12, "waiting": {"_count": 1}, "yells": {"_count": 1}, "laughter": {"_count": 1}, "signs": {"_count": 1}, "dead": {"_count": 1}, "wands": {"_count": 1}, "wand": {"_count": 1}, "duel": {"_count": 1}, "": {"_count": 1}, "scream": {"_count": 1}, "mouth": {"_count": 1}, "wouldbe": {"_count": 1}}, "all": {"_count": 66, "this": {"_count": 2}, "sorts": {"_count": 2}, "their": {"_count": 3}, "around": {"_count": 3}, "who": {"_count": 1}, "that": {"_count": 8}, "those": {"_count": 4}, "anybody": {"_count": 1}, "the": {"_count": 11}, "his": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 3}, "three": {"_count": 3}, "too": {"_count": 1}, "along": {"_count": 1}, "staring": {"_count": 1}, "he": {"_count": 4}, "fidgeting": {"_count": 1}, "of": {"_count": 8}, "because": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}, "Romilda": {"_count": 1}, "happy": {"_count": 1}, "noise": {"_count": 1}}, "finish": {"_count": 5, "me": {"_count": 1}, "Salazar": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 2}}, "well": {"_count": 26, "behind": {"_count": 1}, "both": {"_count": 1}, "hes": {"_count": 1}, "He": {"_count": 1}, "be": {"_count": 3}, "into": {"_count": 1}, "go": {"_count": 1}, "come": {"_count": 2}, "throw": {"_count": 1}, "hidden": {"_count": 1}, "see": {"_count": 1}, "cared": {"_count": 1}, "outside": {"_count": 1}, "tell": {"_count": 1}, "you": {"_count": 1}, "sneak": {"_count": 1}, "meet": {"_count": 1}, "take": {"_count": 1}, "and": {"_count": 1}, "lose": {"_count": 1}, "just": {"_count": 1}, "say": {"_count": 1}, "divide": {"_count": 1}}, "theyd": {"_count": 2, "be": {"_count": 1}, "taken": {"_count": 1}}, "roll": {"_count": 1, "up": {"_count": 1}}, "flopped": {"_count": 2, "under": {"_count": 1}, "back": {"_count": 1}}, "sleeves": {"_count": 2, "were": {"_count": 1}, "of": {"_count": 1}}, "raised": {"_count": 23, "his": {"_count": 8}, "itself": {"_count": 2}, "it": {"_count": 1}, "their": {"_count": 1}, "himself": {"_count": 1}, "her": {"_count": 4}, "him": {"_count": 1}, "Hogwarts": {"_count": 1}, "a": {"_count": 1}, "Hermiones": {"_count": 1}, "them": {"_count": 1}, "one": {"_count": 1}}, "gloomy": {"_count": 1, "after": {"_count": 1}}, "flew": {"_count": 11, "off": {"_count": 1}, "to": {"_count": 1}, "forward": {"_count": 1}, "out": {"_count": 1}, "straight": {"_count": 1}, "pellmell": {"_count": 1}, "twittering": {"_count": 1}, "away": {"_count": 1}, "left": {"_count": 1}, "at": {"_count": 1}, "like": {"_count": 1}}, "suspicion": {"_count": 3, "": {"_count": 3}}, "gathered": {"_count": 1, "up": {"_count": 1}}, "enjoy": {"_count": 1, "the": {"_count": 1}}, "asked": {"_count": 9, "me": {"_count": 1}, "the": {"_count": 2}, "So": {"_count": 1}, "whether": {"_count": 1}, "There": {"_count": 1}, "for": {"_count": 1}, "her": {"_count": 1}, "about": {"_count": 1}}, "floated": {"_count": 5, "there": {"_count": 2}, "to": {"_count": 1}, "with": {"_count": 1}, "out": {"_count": 1}}, "open": {"_count": 3, "": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}}, "twitched": {"_count": 4, "but": {"_count": 1}, "aside": {"_count": 1}, "uncontrollably": {"_count": 1}, "her": {"_count": 1}}, "send": {"_count": 7, "Hedwig": {"_count": 2}, "it": {"_count": 1}, "Mum": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "FLUMP": {"_count": 1, "": {"_count": 1}}, "struggled": {"_count": 4, "toward": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 1}}, "faster": {"_count": 6, "the": {"_count": 1}, "than": {"_count": 2}, "elbows": {"_count": 1}, "wild": {"_count": 1}, "its": {"_count": 1}}, "warmth": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "flailing": {"_count": 3, "it": {"_count": 1}, "and": {"_count": 1}, "trying": {"_count": 1}}, "lucky": {"_count": 2, "Harry": {"_count": 1}, "they": {"_count": 1}}, "clinking": {"_count": 1, "seemed": {"_count": 1}}, "tumbling": {"_count": 1, "all": {"_count": 1}}, "sprinted": {"_count": 14, "across": {"_count": 1}, "down": {"_count": 2}, "up": {"_count": 1}, "onward": {"_count": 1}, "back": {"_count": 1}, "toward": {"_count": 2}, "away": {"_count": 1}, "off": {"_count": 2}, "forward": {"_count": 1}, "on": {"_count": 1}, "into": {"_count": 1}}, "claws": {"_count": 1, "tearing": {"_count": 1}}, "heaved": {"_count": 6, "at": {"_count": 1}, "him": {"_count": 3}, "his": {"_count": 1}, "With": {"_count": 1}}, "snatched": {"_count": 5, "but": {"_count": 1}, "glimpses": {"_count": 1}, "up": {"_count": 1}, "it": {"_count": 2}}, "dived": {"_count": 16, "so": {"_count": 1}, "at": {"_count": 1}, "under": {"_count": 1}, "headfirst": {"_count": 1}, "headlong": {"_count": 1}, "into": {"_count": 2}, "right": {"_count": 1}, "out": {"_count": 1}, "as": {"_count": 1}, "down": {"_count": 1}, "beneath": {"_count": 1}, "once": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 2}}, "stuffed": {"_count": 10, "roughly": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 6}, "her": {"_count": 1}, "him": {"_count": 1}}, "nearly": {"_count": 7, "fell": {"_count": 2}, "everybody": {"_count": 1}, "full": {"_count": 1}, "everyones": {"_count": 1}, "killed": {"_count": 1}, "always": {"_count": 1}}, "catch": {"_count": 2, "it": {"_count": 2}}, "carved": {"_count": 1, "from": {"_count": 1}}, "dragged": {"_count": 15, "him": {"_count": 10}, "them": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 2}, "Kreacher": {"_count": 1}}, "shell": {"_count": 4, "take": {"_count": 1}, "be": {"_count": 2}, "attract": {"_count": 1}}, "bowed": {"_count": 10, "leaving": {"_count": 1}, "so": {"_count": 1}, "them": {"_count": 1}, "at": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 1}, "beaming": {"_count": 1}, "low": {"_count": 2}, "obediently": {"_count": 1}}, "immediately": {"_count": 9, "a": {"_count": 1}, "swallowed": {"_count": 1}, "sending": {"_count": 1}, "resolved": {"_count": 1}, "veered": {"_count": 1}, "spotted": {"_count": 1}, "felt": {"_count": 1}, "started": {"_count": 1}, "the": {"_count": 1}}, "past": {"_count": 2, "Fluffy": {"_count": 1}, "the": {"_count": 1}}, "bravery": {"_count": 2, "and": {"_count": 2}}, "shuddered": {"_count": 2, "": {"_count": 2}}, "sharp": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "Id": {"_count": 3, "have": {"_count": 1}, "still": {"_count": 1}, "get": {"_count": 1}}, "evil": {"_count": 3, "": {"_count": 2}, "there": {"_count": 1}}, "those": {"_count": 10, "too": {"_count": 1}, "who": {"_count": 2}, "wizards": {"_count": 1}, "hidden": {"_count": 1}, "people": {"_count": 1}, "nearest": {"_count": 1}, "old": {"_count": 1}, "at": {"_count": 1}, "things": {"_count": 1}}, "tell": {"_count": 31, "me": {"_count": 4}, "us": {"_count": 2}, "her": {"_count": 5}, "him": {"_count": 7}, "Madam": {"_count": 1}, "someone": {"_count": 1}, "Sirius": {"_count": 2}, "these": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 3}, "on": {"_count": 1}, "them": {"_count": 2}, "your": {"_count": 1}}, "lie": {"_count": 2, "about": {"_count": 1}, "down": {"_count": 1}}, "opened": {"_count": 32, "them": {"_count": 2}, "it": {"_count": 11}, "for": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 7}, "his": {"_count": 8}, "her": {"_count": 1}, "": {"_count": 1}}, "scaredlooking": {"_count": 1, "at": {"_count": 1}}, "slits": {"_count": 1, "for": {"_count": 1}}, "vapor": {"_count": 1, "": {"_count": 1}}, "minds": {"_count": 1, "": {"_count": 1}}, "hung": {"_count": 4, "on": {"_count": 2}, "there": {"_count": 1}, "it": {"_count": 1}}, "other": {"_count": 6, "voices": {"_count": 1}, "protective": {"_count": 1}, "people": {"_count": 2}, "personal": {"_count": 1}, "wandmakers": {"_count": 1}}, "next": {"_count": 14, "to": {"_count": 2}, "second": {"_count": 2}, "moment": {"_count": 7}, "thing": {"_count": 3}}, "admirers": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "confiscated": {"_count": 1, "it": {"_count": 1}}, "Miss": {"_count": 9, "Granger": {"_count": 5}, "Hermione": {"_count": 2}, "Cissys": {"_count": 1}, "Lovegood": {"_count": 1}}, "agreed": {"_count": 1, "its": {"_count": 1}}, "Perenelle": {"_count": 1, "it": {"_count": 1}}, "life": {"_count": 1, "as": {"_count": 1}}, "terrible": {"_count": 4, "thing": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}, "power": {"_count": 1}}, "should": {"_count": 1, "therefore": {"_count": 1}}, "ambition": {"_count": 1, "sharing": {"_count": 1}}, "between": {"_count": 4, "you": {"_count": 1}, "them": {"_count": 1}, "wondering": {"_count": 1}, "the": {"_count": 1}}, "since": {"_count": 2, "then": {"_count": 2}}, "popped": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "exciting": {"_count": 1, "than": {"_count": 1}}, "Voldemort": {"_count": 42, "": {"_count": 8}, "met": {"_count": 1}, "had": {"_count": 2}, "so": {"_count": 1}, "was": {"_count": 3}, "were": {"_count": 3}, "the": {"_count": 1}, "splintered": {"_count": 1}, "crisscrossing": {"_count": 1}, "changed": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 1}, "will": {"_count": 1}, "too": {"_count": 1}, "well": {"_count": 1}, "moved": {"_count": 1}, "you": {"_count": 1}, "stretched": {"_count": 1}, "he": {"_count": 1}, "are": {"_count": 1}, "returned": {"_count": 1}, "leapt": {"_count": 1}, "must": {"_count": 1}, "knew": {"_count": 1}, "because": {"_count": 1}, "spoke": {"_count": 1}, "before": {"_count": 1}, "screamed": {"_count": 1}, "stared": {"_count": 1}}, "hurtled": {"_count": 4, "off": {"_count": 2}, "out": {"_count": 1}, "from": {"_count": 1}}, "instead": {"_count": 12, "of": {"_count": 8}, "its": {"_count": 1}, "picked": {"_count": 1}, "Instead": {"_count": 1}, "had": {"_count": 1}}, "burst": {"_count": 9, "into": {"_count": 3}, "open": {"_count": 2}, "on": {"_count": 1}, "through": {"_count": 1}, "apart": {"_count": 1}, "": {"_count": 1}}, "remorse": {"_count": 1, "great": {"_count": 1}}, "fiftytwo": {"_count": 1, "Ravenclaw": {"_count": 1}}, "twentysix": {"_count": 1, "and": {"_count": 1}}, "stamping": {"_count": 4, "broke": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "with": {"_count": 1}}, "outstanding": {"_count": 1, "courage": {"_count": 1}}, "seventytwo": {"_count": 1, "points": {"_count": 1}}, "cheer": {"_count": 2, "as": {"_count": 1}, "her": {"_count": 1}}, "horrified": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "laughing": {"_count": 5, "as": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}}, "tidier": {"_count": 1, "eating": {"_count": 1}}, "coats": {"_count": 1, "pulling": {"_count": 1}}, "threes": {"_count": 4, "so": {"_count": 1}, "the": {"_count": 2}, "most": {"_count": 1}}, "alarming": {"_count": 2, "the": {"_count": 1}, "statement": {"_count": 1}}, "stay": {"_count": 7, "this": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "there": {"_count": 1}, "out": {"_count": 1}}, "watching": {"_count": 12, "Harry": {"_count": 1}, "Dudley": {"_count": 1}, "himself": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 3}, "with": {"_count": 1}, "television": {"_count": 1}, "Fred": {"_count": 1}, "him": {"_count": 1}, "its": {"_count": 1}}, "ghosts": {"_count": 3, "his": {"_count": 1}, "were": {"_count": 2}}, "especially": {"_count": 3, "Quidditch": {"_count": 1}, "at": {"_count": 1}, "not": {"_count": 1}}, "fourteen": {"_count": 1, "players": {"_count": 1}}, "topoftheline": {"_count": 1, "Nimbus": {"_count": 1}}, "neckless": {"_count": 1, "with": {"_count": 1}}, "bony": {"_count": 1, "Dudley": {"_count": 1}}, "porky": {"_count": 1, "": {"_count": 1}}, "jetblack": {"_count": 1, "hair": {"_count": 1}}, "somehow": {"_count": 7, "nobody": {"_count": 1}, "seemed": {"_count": 1}, "much": {"_count": 2}, "fiercer": {"_count": 1}, "managed": {"_count": 1}, "people": {"_count": 1}}, "pour": {"_count": 1, "them": {"_count": 1}}, "hugged": {"_count": 12, "her": {"_count": 5}, "him": {"_count": 4}, "Ginny": {"_count": 1}, "Harry": {"_count": 2}}, "sealed": {"_count": 2, "before": {"_count": 1}, "the": {"_count": 1}}, "sang": {"_count": 1, "under": {"_count": 1}}, "sending": {"_count": 4, "her": {"_count": 1}, "him": {"_count": 2}, "water": {"_count": 1}}, "broomstick": {"_count": 4, "": {"_count": 1}, "at": {"_count": 1}, "down": {"_count": 1}, "he": {"_count": 1}}, "eating": {"_count": 3, "ice": {"_count": 1}, "under": {"_count": 1}, "sweets": {"_count": 1}}, "repainted": {"_count": 1, "the": {"_count": 1}}, "sugared": {"_count": 2, "violets": {"_count": 2}}, "dinner": {"_count": 2, "jackets": {"_count": 1}, "": {"_count": 1}}, "legholes": {"_count": 1, "": {"_count": 1}}, "sinking": {"_count": 2, "into": {"_count": 1}, "back": {"_count": 1}}, "pulling": {"_count": 20, "Dobby": {"_count": 1}, "him": {"_count": 3}, "Neville": {"_count": 1}, "out": {"_count": 4}, "the": {"_count": 2}, "on": {"_count": 1}, "Harrys": {"_count": 1}, "screens": {"_count": 1}, "his": {"_count": 2}, "a": {"_count": 1}, "her": {"_count": 2}, "shards": {"_count": 1}}, "modest": {"_count": 1, "said": {"_count": 1}}, "moaned": {"_count": 3, "Ah": {"_count": 1}, "rocking": {"_count": 1}, "and": {"_count": 1}}, "Dobbys": {"_count": 2, "eyes": {"_count": 1}, "blood": {"_count": 1}}, "bold": {"_count": 1, "": {"_count": 1}}, "forks": {"_count": 5, "from": {"_count": 1}, "": {"_count": 3}, "please": {"_count": 1}}, "flinging": {"_count": 2, "himself": {"_count": 1}, "it": {"_count": 1}}, "walls": {"_count": 3, "as": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "handed": {"_count": 22, "him": {"_count": 3}, "it": {"_count": 12}, "the": {"_count": 1}, "over": {"_count": 3}, "back": {"_count": 1}, "them": {"_count": 1}, "two": {"_count": 1}}, "swooped": {"_count": 3, "out": {"_count": 1}, "spiraled": {"_count": 1}, "low": {"_count": 1}}, "sizes": {"_count": 1, "and": {"_count": 1}}, "further": {"_count": 1, "spellwork": {"_count": 1}}, "gulped": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "magic": {"_count": 3, "yourself": {"_count": 1}, "should": {"_count": 1}, "": {"_count": 1}}, "evening": {"_count": 1, "": {"_count": 1}}, "wondered": {"_count": 11, "miserably": {"_count": 1}, "": {"_count": 1}, "why": {"_count": 1}, "whether": {"_count": 4}, "whom": {"_count": 1}, "occasionally": {"_count": 1}, "aloud": {"_count": 1}, "as": {"_count": 1}}, "lay": {"_count": 15, "back": {"_count": 1}, "for": {"_count": 1}, "motionless": {"_count": 3}, "down": {"_count": 2}, "quiet": {"_count": 1}, "very": {"_count": 1}, "facedown": {"_count": 2}, "on": {"_count": 1}, "there": {"_count": 2}, "quite": {"_count": 1}}, "weak": {"_count": 1, "on": {"_count": 1}}, "pushing": {"_count": 6, "it": {"_count": 1}, "the": {"_count": 1}, "carts": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 2}}, "wont": {"_count": 1, "let": {"_count": 1}}, "obviously": {"_count": 5, "I": {"_count": 1}, "": {"_count": 1}, "cured": {"_count": 1}, "they": {"_count": 1}, "for": {"_count": 1}}, "grinning": {"_count": 5, "": {"_count": 2}, "at": {"_count": 1}, "shiftily": {"_count": 1}, "maliciously": {"_count": 1}}, "stand": {"_count": 3, "back": {"_count": 2}, "lets": {"_count": 1}}, "kept": {"_count": 13, "still": {"_count": 1}, "patting": {"_count": 1}, "blotting": {"_count": 1}, "to": {"_count": 2}, "talking": {"_count": 1}, "looking": {"_count": 1}, "reverting": {"_count": 1}, "snatching": {"_count": 1}, "confusing": {"_count": 1}, "walking": {"_count": 1}, "attempting": {"_count": 1}, "glancing": {"_count": 1}}, "louder": {"_count": 17, "and": {"_count": 5}, "as": {"_count": 3}, "": {"_count": 6}, "pop": {"_count": 1}, "drowning": {"_count": 1}, "voice": {"_count": 1}}, "suddenly": {"_count": 16, "with": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 4}, "Harry": {"_count": 2}, "turned": {"_count": 1}, "furious": {"_count": 1}, "without": {"_count": 1}, "feeling": {"_count": 1}, "Harrys": {"_count": 2}, "a": {"_count": 1}, "terrible": {"_count": 1}}, "hand": {"_count": 5, "it": {"_count": 1}, "the": {"_count": 1}, "back": {"_count": 1}, "one": {"_count": 1}, "were": {"_count": 1}}, "passing": {"_count": 2, "them": {"_count": 1}, "it": {"_count": 1}}, "passed": {"_count": 15, "it": {"_count": 5}, "him": {"_count": 2}, "Moody": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 1}, "one": {"_count": 1}, "on": {"_count": 1}, "straight": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}, "into": {"_count": 1}}, "sensitive": {"_count": 1, "boy": {"_count": 1}}, "theyll": {"_count": 5, "be": {"_count": 3}, "join": {"_count": 1}, "realize": {"_count": 1}}, "gnomes": {"_count": 1, "all": {"_count": 1}}, "castles": {"_count": 1, "and": {"_count": 1}}, "places": {"_count": 1, "like": {"_count": 1}}, "spending": {"_count": 2, "a": {"_count": 1}, "increasing": {"_count": 1}}, "squirted": {"_count": 1, "boiling": {"_count": 1}}, "puts": {"_count": 1, "it": {"_count": 1}}, "clumps": {"_count": 1, "of": {"_count": 1}}, "Youre": {"_count": 1, "late": {"_count": 1}}, "One": {"_count": 4, "Minute": {"_count": 1}, "gleamed": {"_count": 1}, "like": {"_count": 1}, "": {"_count": 1}}, "buttering": {"_count": 1, "it": {"_count": 1}}, "bent": {"_count": 5, "his": {"_count": 1}, "to": {"_count": 1}, "down": {"_count": 1}, "over": {"_count": 1}, "once": {"_count": 1}}, "fork": {"_count": 10, "at": {"_count": 1}, "and": {"_count": 3}, "down": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 2}, "Ron": {"_count": 1}, "she": {"_count": 1}}, "You": {"_count": 3, "will": {"_count": 1}, "see": {"_count": 1}, "learned": {"_count": 1}}, "woe": {"_count": 1, "betide": {"_count": 1}}, "grumbling": {"_count": 1, "the": {"_count": 1}}, "leathery": {"_count": 2, "looking": {"_count": 1}, "but": {"_count": 1}}, "travelworn": {"_count": 1, "": {"_count": 1}}, "sighed": {"_count": 5, "": {"_count": 5}}, "telling": {"_count": 5, "his": {"_count": 1}, "them": {"_count": 3}, "him": {"_count": 1}}, "blinked": {"_count": 4, "": {"_count": 1}, "her": {"_count": 1}, "benignly": {"_count": 1}, "confusedly": {"_count": 1}}, "groaning": {"_count": 1, "": {"_count": 1}}, "ordered": {"_count": 4, "the": {"_count": 1}, "everyone": {"_count": 1}, "world": {"_count": 1}, "others": {"_count": 1}}, "unexpected": {"_count": 1, "": {"_count": 1}}, "small": {"_count": 4, "explosions": {"_count": 1}, "watery": {"_count": 1}, "grandfather": {"_count": 1}, "objects": {"_count": 1}}, "Ginny": {"_count": 114, "already": {"_count": 1}, "were": {"_count": 18}, "got": {"_count": 4}, "had": {"_count": 3}, "sat": {"_count": 2}, "finally": {"_count": 1}, "about": {"_count": 1}, "suddenly": {"_count": 1}, "Weasley": {"_count": 3}, "set": {"_count": 2}, "both": {"_count": 3}, "followed": {"_count": 2}, "came": {"_count": 3}, "": {"_count": 11}, "went": {"_count": 3}, "looked": {"_count": 1}, "by": {"_count": 1}, "started": {"_count": 1}, "who": {"_count": 3}, "together": {"_count": 1}, "all": {"_count": 3}, "as": {"_count": 1}, "if": {"_count": 2}, "turned": {"_count": 1}, "waved": {"_count": 1}, "became": {"_count": 1}, "angrily": {"_count": 1}, "descended": {"_count": 1}, "continued": {"_count": 1}, "waiting": {"_count": 1}, "say": {"_count": 1}, "almost": {"_count": 1}, "in": {"_count": 3}, "skimming": {"_count": 1}, "not": {"_count": 1}, "from": {"_count": 1}, "however": {"_count": 1}, "touched": {"_count": 1}, "marched": {"_count": 1}, "muffled": {"_count": 1}, "slid": {"_count": 1}, "Hermione": {"_count": 1}, "good": {"_count": 1}, "while": {"_count": 2}, "appeared": {"_count": 1}, "still": {"_count": 1}, "broke": {"_count": 1}, "having": {"_count": 1}, "lined": {"_count": 1}, "Neither": {"_count": 1}, "what": {"_count": 1}, "too": {"_count": 1}, "walked": {"_count": 1}, "and": {"_count": 2}, "filed": {"_count": 1}, "running": {"_count": 1}, "joined": {"_count": 1}, "never": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}, "staring": {"_count": 1}, "closed": {"_count": 1}}, "emerged": {"_count": 8, "with": {"_count": 1}, "on": {"_count": 1}, "onto": {"_count": 2}, "in": {"_count": 1}, "into": {"_count": 1}, "shivering": {"_count": 1}, "panting": {"_count": 1}}, "quickly": {"_count": 7, "busied": {"_count": 1}, "found": {"_count": 1}, "as": {"_count": 1}, "returned": {"_count": 1}, "said": {"_count": 1}, "reading": {"_count": 1}, "": {"_count": 1}}, "extracting": {"_count": 1, "a": {"_count": 1}}, "rescue": {"_count": 2, "you": {"_count": 1}, "Sirius": {"_count": 1}}, "flown": {"_count": 3, "away": {"_count": 1}, "off": {"_count": 1}, "into": {"_count": 1}}, "Bill": {"_count": 20, "in": {"_count": 1}, "standing": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "as": {"_count": 1}, "close": {"_count": 1}, "all": {"_count": 1}, "are": {"_count": 1}, "were": {"_count": 1}, "with": {"_count": 1}, "might": {"_count": 1}, "huddled": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "walked": {"_count": 1}, "would": {"_count": 1}, "looked": {"_count": 1}, "left": {"_count": 1}, "who": {"_count": 1}, "was": {"_count": 1}}, "Knuts": {"_count": 1, "in": {"_count": 1}}, "rose": {"_count": 6, "higher": {"_count": 1}, "as": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 1}, "again": {"_count": 1}, "rolling": {"_count": 1}}, "whipped": {"_count": 2, "George": {"_count": 1}, "through": {"_count": 1}}, "spinning": {"_count": 1, "now": {"_count": 1}}, "bruised": {"_count": 2, "covered": {"_count": 1}, "they": {"_count": 1}}, "rusty": {"_count": 2, "spiked": {"_count": 1}, "cauldrons": {"_count": 1}}, "spotted": {"_count": 4, "a": {"_count": 1}, "mirror": {"_count": 1}, "Dudley": {"_count": 1}, "the": {"_count": 1}}, "identical": {"_count": 1, "cold": {"_count": 1}}, "rang": {"_count": 1, "a": {"_count": 1}}, "badtempered": {"_count": 1, "": {"_count": 1}}, "young": {"_count": 2, "Master": {"_count": 1}, "": {"_count": 1}}, "unraveling": {"_count": 1, "it": {"_count": 1}}, "scurrying": {"_count": 1, "over": {"_count": 1}}, "plunderers": {"_count": 1, "": {"_count": 1}}, "Burkes": {"_count": 22, "looked": {"_count": 1}, "": {"_count": 5}, "which": {"_count": 2}, "said": {"_count": 3}, "ages": {"_count": 1}, "four": {"_count": 1}, "and": {"_count": 2}, "for": {"_count": 1}, "was": {"_count": 1}, "repeated": {"_count": 1}, "the": {"_count": 1}, "into": {"_count": 1}, "where": {"_count": 1}, "Albania": {"_count": 1}}, "two": {"_count": 11, "doors": {"_count": 1}, "loud": {"_count": 1}, "pairs": {"_count": 1}, "together": {"_count": 1}, "Knuts": {"_count": 1}, "visitors": {"_count": 1}, "at": {"_count": 1}, "large": {"_count": 1}, "glasses": {"_count": 1}, "huge": {"_count": 1}, "Harry": {"_count": 1}}, "returned": {"_count": 28, "them": {"_count": 1}, "several": {"_count": 1}, "to": {"_count": 16}, "with": {"_count": 3}, "well": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "holding": {"_count": 1}, "meekly": {"_count": 1}, "a": {"_count": 1}}, "shoulders": {"_count": 6, "taller": {"_count": 1}, "out": {"_count": 1}, "hunched": {"_count": 1}, "were": {"_count": 1}, "filled": {"_count": 1}, "and": {"_count": 1}}, "just": {"_count": 16, "one": {"_count": 1}, "as": {"_count": 5}, "look": {"_count": 1}, "managed": {"_count": 1}, "to": {"_count": 1}, "like": {"_count": 1}, "happening": {"_count": 1}, "blend": {"_count": 1}, "now": {"_count": 1}, "wanted": {"_count": 1}, "remember": {"_count": 1}, "Gryffindor": {"_count": 1}}, "bronze": {"_count": 3, "jangling": {"_count": 1}, "Knuts": {"_count": 2}}, "Japes": {"_count": 1, "Wizarding": {"_count": 1}}, "old": {"_count": 6, "cloaks": {"_count": 1}, "photographs": {"_count": 1}, "bottles": {"_count": 1}, "": {"_count": 1}, "Wellington": {"_count": 1}, "Bathilda": {"_count": 1}}, "deeply": {"_count": 3, "boring": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "sneaked": {"_count": 1, "up": {"_count": 1}}, "flashing": {"_count": 2, "dazzlingly": {"_count": 1}, "her": {"_count": 1}}, "positively": {"_count": 4, "shouted": {"_count": 1}, "writhing": {"_count": 1}, "screaming": {"_count": 1}, "awed": {"_count": 1}}, "clamped": {"_count": 1, "him": {"_count": 1}}, "gentlemen": {"_count": 12, "he": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 2}, "kindly": {"_count": 1}, "ghosts": {"_count": 1}, "we": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 1}}, "pride": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "extracted": {"_count": 2, "from": {"_count": 1}, "the": {"_count": 1}}, "swept": {"_count": 13, "from": {"_count": 3}, "up": {"_count": 1}, "past": {"_count": 2}, "out": {"_count": 2}, "away": {"_count": 2}, "back": {"_count": 1}, "around": {"_count": 1}, "over": {"_count": 1}}, "seemed": {"_count": 18, "to": {"_count": 9}, "constantly": {"_count": 1}, "thoroughly": {"_count": 1}, "ready": {"_count": 1}, "outraged": {"_count": 1}, "completely": {"_count": 2}, "quite": {"_count": 1}, "almost": {"_count": 1}, "as": {"_count": 1}}, "blue": {"_count": 5, "stars": {"_count": 1}, "bubbles": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "bed": {"_count": 1, "": {"_count": 1}}, "Percy": {"_count": 19, "were": {"_count": 3}, "was": {"_count": 2}, "Weasley": {"_count": 1}, "can": {"_count": 1}, "along": {"_count": 1}, "arrived": {"_count": 1}, "came": {"_count": 1}, "emerged": {"_count": 1}, "together": {"_count": 1}, "began": {"_count": 1}, "its": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "who": {"_count": 1}, "flooring": {"_count": 1}}, "tempers": {"_count": 1, "were": {"_count": 1}}, "setting": {"_count": 3, "off": {"_count": 2}, "down": {"_count": 1}}, "CRASH": {"_count": 1, "": {"_count": 1}}, "bounced": {"_count": 4, "backward": {"_count": 1}, "upward": {"_count": 1}, "him": {"_count": 1}, "off": {"_count": 1}}, "Hedwigs": {"_count": 8, "cage": {"_count": 8}}, "pushed": {"_count": 23, "with": {"_count": 1}, "Dobbys": {"_count": 1}, "the": {"_count": 4}, "himself": {"_count": 1}, "him": {"_count": 3}, "me": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 4}, "Harry": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 3}, "open": {"_count": 1}, "Malfoy": {"_count": 1}}, "reappear": {"_count": 2, "at": {"_count": 2}}, "glittering": {"_count": 5, "below": {"_count": 1}, "erupted": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}, "as": {"_count": 1}}, "foggy": {"_count": 1, "": {"_count": 1}}, "turrets": {"_count": 1, "of": {"_count": 1}}, "spectacularly": {"_count": 1, "on": {"_count": 1}}, "farther": {"_count": 6, "north": {"_count": 3}, "away": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 1}}, "drove": {"_count": 4, "them": {"_count": 1}, "it": {"_count": 1}, "away": {"_count": 1}, "her": {"_count": 1}}, "Hedwig": {"_count": 10, "jump": {"_count": 1}, "were": {"_count": 1}, "who": {"_count": 1}, "fluttered": {"_count": 1}, "had": {"_count": 1}, "gave": {"_count": 1}, "and": {"_count": 1}, "vanished": {"_count": 1}, "Rons": {"_count": 1}, "did": {"_count": 1}}, "sped": {"_count": 9, "off": {"_count": 4}, "in": {"_count": 1}, "down": {"_count": 1}, "back": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 1}}, "steaming": {"_count": 1, "the": {"_count": 1}}, "crossing": {"_count": 2, "quietly": {"_count": 1}, "off": {"_count": 1}}, "together": {"_count": 10, "he": {"_count": 4}, "they": {"_count": 6}}, "dirty": {"_count": 5, "sorted": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 2}}, "waiting": {"_count": 3, "petrified": {"_count": 1}, "in": {"_count": 1}, "eagerly": {"_count": 1}}, "halfmoon": {"_count": 2, "glasses": {"_count": 1}, "spectacles": {"_count": 1}}, "hairy": {"_count": 4, "drinking": {"_count": 1}, "loose": {"_count": 1}, "seize": {"_count": 1}, "": {"_count": 1}}, "disliked": {"_count": 1, "by": {"_count": 1}}, "greasy": {"_count": 2, "shoulderlength": {"_count": 1}, "and": {"_count": 1}}, "light": {"_count": 5, "down": {"_count": 1}, "of": {"_count": 1}, "spilling": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "smiling": {"_count": 13, "still": {"_count": 1}, "widely": {"_count": 1}, "": {"_count": 3}, "his": {"_count": 1}, "down": {"_count": 1}, "around": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "grimly": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}}, "sure": {"_count": 10, "enough": {"_count": 10}}, "valuable": {"_count": 1, "tree": {"_count": 1}}, "ham": {"_count": 2, "": {"_count": 1}, "pie": {"_count": 1}}, "creaking": {"_count": 1, "suits": {"_count": 1}}, "nodded": {"_count": 9, "in": {"_count": 1}, "": {"_count": 6}, "so": {"_count": 1}, "as": {"_count": 1}}, "gained": {"_count": 1, "the": {"_count": 1}}, "dishes": {"_count": 3, "of": {"_count": 3}}, "accidentprone": {"_count": 1, "boy": {"_count": 1}}, "gray": {"_count": 7, "fell": {"_count": 1}, "keeled": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "eyes": {"_count": 1}, "with": {"_count": 1}, "owls": {"_count": 1}}, "feathers": {"_count": 1, "": {"_count": 1}}, "slit": {"_count": 2, "it": {"_count": 1}, "pupiled": {"_count": 1}}, "spoons": {"_count": 1, "rattle": {"_count": 1}}, "echoed": {"_count": 2, "deafeningly": {"_count": 1}, "in": {"_count": 1}}, "curled": {"_count": 4, "into": {"_count": 1}, "up": {"_count": 3}}, "gradually": {"_count": 1, "a": {"_count": 1}}, "unlocked": {"_count": 1, "the": {"_count": 1}}, "fertilizer": {"_count": 1, "mingling": {"_count": 1}}, "grasping": {"_count": 3, "his": {"_count": 1}, "Harry": {"_count": 1}, "hands": {"_count": 1}}, "slid": {"_count": 15, "inside": {"_count": 1}, "down": {"_count": 5}, "the": {"_count": 1}, "sideways": {"_count": 1}, "it": {"_count": 2}, "across": {"_count": 1}, "into": {"_count": 1}, "under": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 1}}, "fluffy": {"_count": 4, "": {"_count": 1}, "but": {"_count": 1}, "blankets": {"_count": 1}, "as": {"_count": 1}}, "plunged": {"_count": 9, "the": {"_count": 2}, "it": {"_count": 1}, "his": {"_count": 2}, "straight": {"_count": 1}, "after": {"_count": 1}, "on": {"_count": 1}, "toward": {"_count": 1}}, "removed": {"_count": 5, "her": {"_count": 2}, "a": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "zap": {"_count": 1, "just": {"_count": 1}}, "gnashed": {"_count": 1, "their": {"_count": 1}}, "covered": {"_count": 14, "in": {"_count": 5}, "with": {"_count": 3}, "his": {"_count": 2}, "themselves": {"_count": 1}, "Voldemort": {"_count": 1}, "her": {"_count": 1}, "Dobby": {"_count": 1}}, "sparking": {"_count": 1, "at": {"_count": 1}}, "buried": {"_count": 5, "her": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 2}, "in": {"_count": 1}}, "scathing": {"_count": 1, "Draco": {"_count": 1}}, "thuggish": {"_count": 1, "cronies": {"_count": 1}}, "thundered": {"_count": 1, "jovially": {"_count": 1}}, "burning": {"_count": 1, "with": {"_count": 1}}, "headed": {"_count": 24, "for": {"_count": 6}, "off": {"_count": 4}, "out": {"_count": 3}, "back": {"_count": 4}, "straight": {"_count": 3}, "down": {"_count": 1}, "toward": {"_count": 1}, "through": {"_count": 1}, "up": {"_count": 1}}, "winking": {"_count": 5, "as": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 2}}, "fivetime": {"_count": 2, "winner": {"_count": 2}}, "rifled": {"_count": 1, "through": {"_count": 1}}, "nonmagic": {"_count": 1, "peoples": {"_count": 1}}, "market": {"_count": 1, "my": {"_count": 1}}, "lifted": {"_count": 9, "a": {"_count": 1}, "him": {"_count": 3}, "his": {"_count": 2}, "from": {"_count": 1}, "high": {"_count": 1}, "the": {"_count": 1}}, "about": {"_count": 13, "eight": {"_count": 1}, "the": {"_count": 2}, "in": {"_count": 2}, "his": {"_count": 2}, "Ron": {"_count": 1}, "everything": {"_count": 1}, "stretch": {"_count": 1}, "said": {"_count": 1}, "him": {"_count": 1}, "Bellatrix": {"_count": 1}}, "voices": {"_count": 1, "so": {"_count": 1}}, "rocketing": {"_count": 1, "around": {"_count": 1}}, "sprayed": {"_count": 2, "the": {"_count": 1}, "butterbeer": {"_count": 1}}, "papers": {"_count": 3, "tore": {"_count": 1}, "on": {"_count": 1}, "which": {"_count": 1}}, "books": {"_count": 10, "and": {"_count": 2}, "his": {"_count": 2}, "how": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "spilled": {"_count": 1}, "boxes": {"_count": 1}, "but": {"_count": 1}}, "bellowed": {"_count": 5, "Peskipiksi": {"_count": 1}, "OY": {"_count": 1}, "Serpensortial": {"_count": 1}, "You": {"_count": 1}, "CrucioV": {"_count": 1}}, "shut": {"_count": 5, "the": {"_count": 4}, "up": {"_count": 1}}, "stuffing": {"_count": 5, "them": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 3}}, "hitting": {"_count": 3, "tiny": {"_count": 1}, "Malfoy": {"_count": 1}, "Ernie": {"_count": 1}}, "another": {"_count": 11, "Harry": {"_count": 1}, "village": {"_count": 1}, "ow": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "four": {"_count": 1}, "two": {"_count": 1}, "weeks": {"_count": 1}, "few": {"_count": 1}, "as": {"_count": 1}}, "burly": {"_count": 1, "sixth": {"_count": 1}}, "lets": {"_count": 6, "go": {"_count": 2}, "face": {"_count": 2}, "see": {"_count": 1}, "think": {"_count": 1}}, "shivering": {"_count": 5, "slightly": {"_count": 1}, "feverishly": {"_count": 1}, "Dumbledores": {"_count": 1}, "green": {"_count": 1}, "on": {"_count": 1}}, "Colin": {"_count": 3, "Creevey": {"_count": 3}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "slumped": {"_count": 7, "panting": {"_count": 1}, "over": {"_count": 1}, "in": {"_count": 2}, "against": {"_count": 1}, "down": {"_count": 1}, "back": {"_count": 1}}, "touslehaired": {"_count": 2, "next": {"_count": 1}, "": {"_count": 1}}, "Angelina": {"_count": 4, "Johnson": {"_count": 2}, "who": {"_count": 1}, "strolled": {"_count": 1}}, "crosses": {"_count": 1, "in": {"_count": 1}}, "Katie": {"_count": 10, "had": {"_count": 2}, "Bell": {"_count": 3}, "suddenly": {"_count": 1}, "were": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "raising": {"_count": 5, "his": {"_count": 2}, "her": {"_count": 2}, "the": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 3}}, "continued": {"_count": 33, "I": {"_count": 1}, "In": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 14}, "As": {"_count": 1}, "So": {"_count": 1}, "down": {"_count": 1}, "Hermione": {"_count": 1}, "addressing": {"_count": 1}, "in": {"_count": 1}, "Well": {"_count": 1}, "as": {"_count": 1}, "You": {"_count": 1}, "what": {"_count": 1}, "shifting": {"_count": 1}, "walking": {"_count": 1}, "calmly": {"_count": 1}, "into": {"_count": 1}, "laying": {"_count": 1}, "on": {"_count": 1}}, "ducked": {"_count": 7, "out": {"_count": 2}, "but": {"_count": 1}, "her": {"_count": 1}, "and": {"_count": 1}, "back": {"_count": 1}, "around": {"_count": 1}}, "rubbing": {"_count": 7, "his": {"_count": 6}, "the": {"_count": 1}}, "become": {"_count": 3, "mysteriously": {"_count": 1}, "wider": {"_count": 1}, "one": {"_count": 1}}, "amusement": {"_count": 4, "": {"_count": 3}, "at": {"_count": 1}}, "do": {"_count": 15, "the": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 5}, "a": {"_count": 1}, "something": {"_count": 2}, "me": {"_count": 1}, "Snapes": {"_count": 1}, "not": {"_count": 2}, "as": {"_count": 1}}, "Right": {"_count": 1, "and": {"_count": 1}}, "Yeah": {"_count": 1, "": {"_count": 1}}, "Lockharts": {"_count": 1, "prattle": {"_count": 1}}, "bringing": {"_count": 5, "a": {"_count": 1}, "them": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 1}, "up": {"_count": 1}}, "students": {"_count": 1, "": {"_count": 1}}, "Hagrids": {"_count": 4, "pumpkins": {"_count": 1}, "cabin": {"_count": 1}, "head": {"_count": 1}, "motorbike": {"_count": 1}}, "splattered": {"_count": 1, "with": {"_count": 1}}, "wind": {"_count": 2, "it": {"_count": 1}, "howled": {"_count": 1}}, "Ones": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "torrential": {"_count": 1, "rain": {"_count": 1}}, "tucking": {"_count": 4, "it": {"_count": 3}, "his": {"_count": 1}}, "clean": {"_count": 7, "and": {"_count": 1}, "now": {"_count": 1}, "a": {"_count": 2}, "your": {"_count": 1}, "but": {"_count": 1}, "dry": {"_count": 1}}, "ridicule": {"_count": 1, "": {"_count": 1}}, "Head": {"_count": 1, "Polo": {"_count": 1}}, "sinew": {"_count": 1, "holding": {"_count": 1}}, "beheaded": {"_count": 1, "but": {"_count": 1}}, "muck": {"_count": 1, "everywhere": {"_count": 1}}, "followed": {"_count": 32, "Filch": {"_count": 2}, "Harry": {"_count": 2}, "still": {"_count": 1}, "Uncle": {"_count": 2}, "by": {"_count": 2}, "Hermione": {"_count": 1}, "Professor": {"_count": 2}, "him": {"_count": 4}, "": {"_count": 3}, "her": {"_count": 3}, "them": {"_count": 2}, "Ron": {"_count": 1}, "Angelina": {"_count": 1}, "Cho": {"_count": 1}, "Dumbledore": {"_count": 2}, "Tonks": {"_count": 1}, "Fred": {"_count": 1}, "the": {"_count": 1}}, "windowless": {"_count": 2, "lit": {"_count": 1}, "walls": {"_count": 1}}, "manacles": {"_count": 1, "hung": {"_count": 1}}, "distress": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "friends": {"_count": 2, "beg": {"_count": 1}, "of": {"_count": 1}}, "impressive": {"_count": 2, "you": {"_count": 1}, "a": {"_count": 1}}, "grumpy": {"_count": 2, "": {"_count": 1}, "often": {"_count": 1}}, "cheerful": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "bangs": {"_count": 5, "as": {"_count": 2}, "told": {"_count": 1}, "of": {"_count": 2}}, "candles": {"_count": 1, "and": {"_count": 1}}, "directed": {"_count": 4, "their": {"_count": 1}, "its": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}}, "flooding": {"_count": 1, "the": {"_count": 1}}, "leaning": {"_count": 7, "closer": {"_count": 1}, "on": {"_count": 1}, "forward": {"_count": 2}, "against": {"_count": 1}, "over": {"_count": 1}, "heavily": {"_count": 1}}, "transparent": {"_count": 3, "": {"_count": 1}, "but": {"_count": 2}}, "fled": {"_count": 1, "from": {"_count": 1}}, "warn": {"_count": 2, "the": {"_count": 1}, "people": {"_count": 1}}, "halted": {"_count": 1, "rearing": {"_count": 1}}, "plunging": {"_count": 1, "": {"_count": 1}}, "giving": {"_count": 6, "a": {"_count": 1}, "him": {"_count": 2}, "off": {"_count": 1}, "himself": {"_count": 1}, "Harry": {"_count": 1}}, "er": {"_count": 9, "Ha": {"_count": 1}, "not": {"_count": 1}, "take": {"_count": 1}, "just": {"_count": 1}, "I": {"_count": 1}, "place": {"_count": 1}, "He": {"_count": 1}, "finish": {"_count": 1}, "Im": {"_count": 1}}, "climbing": {"_count": 2, "into": {"_count": 1}, "through": {"_count": 1}}, "beaming": {"_count": 8, "at": {"_count": 2}, "around": {"_count": 1}, "down": {"_count": 1}, "just": {"_count": 1}, "fondly": {"_count": 1}, "": {"_count": 2}}, "excitement": {"_count": 9, "gripped": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "surrounding": {"_count": 1}, "Fred": {"_count": 1}, "surged": {"_count": 1}, "For": {"_count": 1}, "too": {"_count": 1}}, "growing": {"_count": 2, "fainter": {"_count": 1}, "larger": {"_count": 1}}, "ignoring": {"_count": 4, "Rons": {"_count": 2}, "Harrys": {"_count": 1}, "Ron": {"_count": 1}}, "leapt": {"_count": 10, "backward": {"_count": 1}, "after": {"_count": 1}, "back": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 2}, "off": {"_count": 1}, "aside": {"_count": 1}, "onto": {"_count": 1}, "out": {"_count": 1}}, "detached": {"_count": 1, "Mrs": {"_count": 1}}, "important": {"_count": 2, "hurried": {"_count": 1}, "": {"_count": 1}}, "poking": {"_count": 3, "": {"_count": 1}, "happily": {"_count": 1}, "him": {"_count": 1}}, "tapping": {"_count": 3, "Mrs": {"_count": 1}, "the": {"_count": 2}}, "frozen": {"_count": 4, "": {"_count": 2}, "hardly": {"_count": 1}, "from": {"_count": 1}}, "tearstained": {"_count": 1, "face": {"_count": 1}}, "tries": {"_count": 1, "to": {"_count": 1}}, "trying": {"_count": 17, "to": {"_count": 15}, "not": {"_count": 1}, "in": {"_count": 1}}, "unrolling": {"_count": 1, "his": {"_count": 1}}, "legends": {"_count": 1, "": {"_count": 1}}, "Salazar": {"_count": 1, "Slytherin": {"_count": 1}}, "witches": {"_count": 12, "and": {"_count": 1}, "in": {"_count": 3}, "were": {"_count": 3}, "who": {"_count": 1}, "walking": {"_count": 1}, "around": {"_count": 1}, "on": {"_count": 1}, "risking": {"_count": 1}}, "use": {"_count": 5, "it": {"_count": 2}, "his": {"_count": 1}, "of": {"_count": 1}, "Polyjuice": {"_count": 1}}, "headmistresses": {"_count": 11, "havent": {"_count": 1}, "all": {"_count": 1}, "of": {"_count": 3}, "snoozing": {"_count": 1}, "covering": {"_count": 1}, "were": {"_count": 1}, "dozed": {"_count": 1}, "in": {"_count": 1}, "around": {"_count": 1}}, "getting": {"_count": 7, "to": {"_count": 4}, "his": {"_count": 1}, "the": {"_count": 1}, "really": {"_count": 1}}, "crossed": {"_count": 7, "to": {"_count": 2}, "the": {"_count": 3}, "into": {"_count": 1}, "things": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 14}, "?": {"_count": 1}}, "coming": {"_count": 2, "over": {"_count": 1}, "to": {"_count": 1}}, "reflected": {"_count": 3, "the": {"_count": 1}, "in": {"_count": 2}}, "scratched": {"_count": 3, "and": {"_count": 1}, "myself": {"_count": 1}, "": {"_count": 1}}, "vanishing": {"_count": 5, "from": {"_count": 3}, "into": {"_count": 1}, "behind": {"_count": 1}}, "starting": {"_count": 14, "to": {"_count": 14}}, "glaring": {"_count": 9, "at": {"_count": 7}, "over": {"_count": 1}, "upward": {"_count": 1}}, "Muggleborns": {"_count": 1, "out": {"_count": 1}}, "ask": {"_count": 11, "Malfoy": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "McGonagall": {"_count": 1}, "her": {"_count": 1}, "permission": {"_count": 1}, "them": {"_count": 1}, "No": {"_count": 1}, "for": {"_count": 2}, "him": {"_count": 1}}, "sometimes": {"_count": 7, "reenacted": {"_count": 1}, "a": {"_count": 1}, "irreversible": {"_count": 1}, "it": {"_count": 1}, "killing": {"_count": 1}, "what": {"_count": 1}, "Confunded": {"_count": 1}}, "Lockhart": {"_count": 4, "got": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "stood": {"_count": 1}}, "slipped": {"_count": 13, "it": {"_count": 3}, "down": {"_count": 1}, "the": {"_count": 2}, "off": {"_count": 1}, "into": {"_count": 1}, "him": {"_count": 1}, "out": {"_count": 2}, "through": {"_count": 1}, "toward": {"_count": 1}}, "thrusting": {"_count": 1, "it": {"_count": 1}}, "moldylooking": {"_count": 1, "book": {"_count": 1}}, "knotgrass": {"_count": 1, "she": {"_count": 1}}, "hisses": {"_count": 1, "heard": {"_count": 1}}, "gripping": {"_count": 2, "rather": {"_count": 1}, "Harrys": {"_count": 1}}, "shot": {"_count": 11, "straight": {"_count": 1}, "at": {"_count": 1}, "beneath": {"_count": 1}, "a": {"_count": 2}, "off": {"_count": 2}, "down": {"_count": 1}, "upward": {"_count": 1}, "right": {"_count": 1}, "red": {"_count": 1}}, "zoomed": {"_count": 10, "toward": {"_count": 2}, "away": {"_count": 1}, "backward": {"_count": 1}, "off": {"_count": 3}, "back": {"_count": 1}, "even": {"_count": 1}, "out": {"_count": 1}}, "unseat": {"_count": 1, "as": {"_count": 1}}, "meanwhile": {"_count": 3, "the": {"_count": 1}, "Professors": {"_count": 1}, "we": {"_count": 1}}, "let": {"_count": 22, "me": {"_count": 3}, "him": {"_count": 1}, "the": {"_count": 2}, "go": {"_count": 2}, "out": {"_count": 6}, "herself": {"_count": 1}, "us": {"_count": 2}, "it": {"_count": 1}, "live": {"_count": 1}, "down": {"_count": 1}, "something": {"_count": 1}, "her": {"_count": 1}}, "rolled": {"_count": 12, "": {"_count": 1}, "off": {"_count": 1}, "over": {"_count": 6}, "large": {"_count": 1}, "the": {"_count": 1}, "dismally": {"_count": 1}, "glittering": {"_count": 1}}, "shouting": {"_count": 5, "": {"_count": 2}, "so": {"_count": 1}, "as": {"_count": 1}, "from": {"_count": 1}}, "unpleasant": {"_count": 5, "sensation": {"_count": 1}, "laughter": {"_count": 1}, "as": {"_count": 1}, "stranger": {"_count": 1}, "smile": {"_count": 1}}, "spread": {"_count": 3, "all": {"_count": 1}, "his": {"_count": 2}}, "Madam": {"_count": 12, "Pomfrey": {"_count": 8}, "Malkins": {"_count": 1}, "Rosemertas": {"_count": 1}, "Bones": {"_count": 1}, "Pince": {"_count": 1}}, "handing": {"_count": 10, "it": {"_count": 7}, "them": {"_count": 1}, "one": {"_count": 1}, "him": {"_count": 1}}, "throat": {"_count": 2, "as": {"_count": 1}, "were": {"_count": 1}}, "splutter": {"_count": 1, "": {"_count": 1}}, "inept": {"_count": 1, "teachers": {"_count": 1}}, "soaking": {"_count": 1, "wet": {"_count": 1}}, "bottles": {"_count": 1, "of": {"_count": 1}}, "hours": {"_count": 4, "later": {"_count": 1}, "to": {"_count": 1}, "until": {"_count": 1}, "ago": {"_count": 1}}, "warned": {"_count": 3, "Harry": {"_count": 1}, "me": {"_count": 2}}, "Dobby": {"_count": 16, "had": {"_count": 1}, "cannot": {"_count": 1}, "but": {"_count": 1}, "backed": {"_count": 1}, "caught": {"_count": 1}, "Dobby": {"_count": 1}, "to": {"_count": 2}, "gets": {"_count": 1}, "beamed": {"_count": 1}, "for": {"_count": 1}, "is": {"_count": 1}, "a": {"_count": 1}, "will": {"_count": 1}, "Luna": {"_count": 1}, "has": {"_count": 1}}, "forward": {"_count": 28, "shaking": {"_count": 1}, "slightly": {"_count": 1}, "past": {"_count": 1}, "as": {"_count": 3}, "across": {"_count": 1}, "to": {"_count": 1}, "over": {"_count": 3}, "on": {"_count": 6}, "in": {"_count": 1}, "": {"_count": 2}, "clutching": {"_count": 1}, "like": {"_count": 1}, "glancing": {"_count": 1}, "from": {"_count": 1}, "against": {"_count": 1}, "whether": {"_count": 1}, "and": {"_count": 1}, "right": {"_count": 1}}, "cracked": {"_count": 3, "it": {"_count": 1}, "": {"_count": 1}, "both": {"_count": 1}}, "carefully": {"_count": 4, "he": {"_count": 1}, "avoiding": {"_count": 1}, "turning": {"_count": 1}, "back": {"_count": 1}}, "wrenched": {"_count": 11, "the": {"_count": 3}, "it": {"_count": 3}, "his": {"_count": 2}, "at": {"_count": 2}, "open": {"_count": 1}}, "stretching": {"_count": 6, "his": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 3}}, "fingers": {"_count": 1, "": {"_count": 1}}, "jumping": {"_count": 2, "out": {"_count": 1}, "a": {"_count": 1}}, "therefore": {"_count": 4, "unlikely": {"_count": 1}, "no": {"_count": 1}, "more": {"_count": 1}, "considered": {"_count": 1}}, "jars": {"_count": 1, "of": {"_count": 1}}, "sputter": {"_count": 1, "": {"_count": 1}}, "lobbed": {"_count": 2, "it": {"_count": 2}}, "scooped": {"_count": 4, "out": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "bubbled": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 15, "of": {"_count": 4}, "unusually": {"_count": 1}, "particularly": {"_count": 2}, "important": {"_count": 1}, "people": {"_count": 1}, "essential": {"_count": 1}, "interestingly": {"_count": 1}, "energetic": {"_count": 1}, "unlike": {"_count": 1}, "importantly": {"_count": 1}, "ornate": {"_count": 1}}, "accompanied": {"_count": 3, "by": {"_count": 2}, "Ron": {"_count": 1}}, "called": {"_count": 10, "Gather": {"_count": 1}, "Are": {"_count": 1}, "through": {"_count": 1}, "me": {"_count": 1}, "those": {"_count": 1}, "across": {"_count": 1}, "The": {"_count": 1}, "Hedwig": {"_count": 1}, "out": {"_count": 1}, "Kreacherl": {"_count": 1}}, "has": {"_count": 3, "sportingly": {"_count": 1}, "every": {"_count": 1}, "no": {"_count": 1}}, "square": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "wasting": {"_count": 1, "no": {"_count": 1}}, "Justin": {"_count": 3, "were": {"_count": 1}, "Finch": {"_count": 1}, "hoisted": {"_count": 1}}, "Millicent": {"_count": 1, "Bulstrode": {"_count": 1}}, "FinchFletchley": {"_count": 1, "how": {"_count": 1}}, "malevolent": {"_count": 1, "bat": {"_count": 1}}, "Potter": {"_count": 4, "": {"_count": 2}, "were": {"_count": 1}, "said": {"_count": 1}}, "before": {"_count": 24, "Harry": {"_count": 9}, "his": {"_count": 2}, "he": {"_count": 4}, "hed": {"_count": 1}, "the": {"_count": 2}, "they": {"_count": 1}, "either": {"_count": 1}, "that": {"_count": 1}, "we": {"_count": 1}, "any": {"_count": 1}, "Snape": {"_count": 1}}, "stormed": {"_count": 8, "out": {"_count": 4}, "off": {"_count": 1}, "up": {"_count": 1}, "away": {"_count": 2}}, "calculating": {"_count": 1, "look": {"_count": 1}}, "neither": {"_count": 5, "Ron": {"_count": 1}, "of": {"_count": 2}, "apparently": {"_count": 1}, "did": {"_count": 1}}, "scarves": {"_count": 6, "on": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}, "against": {"_count": 1}, "were": {"_count": 1}, "to": {"_count": 1}}, "revive": {"_count": 1, "Mrs": {"_count": 1}}, "deciding": {"_count": 1, "to": {"_count": 1}}, "Ernie": {"_count": 4, "went": {"_count": 1}, "in": {"_count": 1}, "were": {"_count": 1}, "returned": {"_count": 1}}, "chasing": {"_count": 3, "the": {"_count": 1}, "what": {"_count": 1}, "its": {"_count": 1}}, "warlocks": {"_count": 1, "and": {"_count": 1}}, "solid": {"_count": 2, "which": {"_count": 1}, "as": {"_count": 1}}, "smoky": {"_count": 2, "floating": {"_count": 1}, "": {"_count": 1}}, "horizontal": {"_count": 1, "six": {"_count": 1}}, "shallow": {"_count": 3, "his": {"_count": 1}, "": {"_count": 2}}, "Nearly": {"_count": 7, "Headless": {"_count": 7}}, "Peeves": {"_count": 4, "zoomed": {"_count": 1}, "the": {"_count": 2}, "who": {"_count": 1}}, "hopped": {"_count": 2, "aside": {"_count": 1}, "on": {"_count": 1}}, "beautiful": {"_count": 6, "circular": {"_count": 1}, "veela": {"_count": 1}, "unicorn": {"_count": 1}, "sound": {"_count": 1}, "with": {"_count": 1}, "place": {"_count": 1}}, "emitting": {"_count": 3, "little": {"_count": 1}, "puffs": {"_count": 1}, "highpitched": {"_count": 1}}, "lowered": {"_count": 4, "it": {"_count": 1}, "his": {"_count": 1}, "its": {"_count": 1}, "Ron": {"_count": 1}}, "faded": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "fixed": {"_count": 6, "Harry": {"_count": 1}, "upon": {"_count": 3}, "quivering": {"_count": 1}, "itself": {"_count": 1}}, "remembered": {"_count": 2, "what": {"_count": 1}, "a": {"_count": 1}}, "hissing": {"_count": 1, "as": {"_count": 1}}, "enjoyed": {"_count": 1, "the": {"_count": 1}}, "white": {"_count": 10, "": {"_count": 2}, "as": {"_count": 2}, "looking": {"_count": 1}, "sand": {"_count": 1}, "blond": {"_count": 1}, "the": {"_count": 1}, "He": {"_count": 1}, "and": {"_count": 1}}, "carrying": {"_count": 8, "presents": {"_count": 1}, "harps": {"_count": 1}, "Crookshanks": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 1}, "cloaks": {"_count": 1}, "what": {"_count": 1}}, "dry": {"_count": 3, "from": {"_count": 1}, "on": {"_count": 1}, "as": {"_count": 1}}, "hide": {"_count": 5, "them": {"_count": 3}, "part": {"_count": 1}, "it": {"_count": 1}}, "showing": {"_count": 10, "them": {"_count": 2}, "Ginny": {"_count": 1}, "it": {"_count": 3}, "him": {"_count": 1}, "Crabbe": {"_count": 1}, "off": {"_count": 1}, "Snape": {"_count": 1}}, "mops": {"_count": 3, "Harry": {"_count": 1}, "then": {"_count": 1}, "the": {"_count": 1}}, "Goylesize": {"_count": 1, "feet": {"_count": 1}}, "add": {"_count": 1, "the": {"_count": 1}}, "frothed": {"_count": 2, "madly": {"_count": 1}, "Goyles": {"_count": 1}}, "toes": {"_count": 2, "next": {"_count": 1}, "": {"_count": 1}}, "laced": {"_count": 1, "up": {"_count": 1}}, "met": {"_count": 5, "only": {"_count": 1}, "Professor": {"_count": 1}, "up": {"_count": 1}, "nobody": {"_count": 1}, "Aberforth": {"_count": 1}}, "shocked": {"_count": 4, "Ron": {"_count": 1}, "": {"_count": 2}, "still": {"_count": 1}}, "prodding": {"_count": 2, "Crabbe": {"_count": 1}, "him": {"_count": 1}}, "motioned": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "without": {"_count": 14, "further": {"_count": 3}, "another": {"_count": 2}, "fuss": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "knowing": {"_count": 1}, "question": {"_count": 1}, "waiting": {"_count": 1}, "removing": {"_count": 1}, "looking": {"_count": 1}, "hesitating": {"_count": 1}}, "dashed": {"_count": 9, "up": {"_count": 2}, "out": {"_count": 3}, "back": {"_count": 2}, "inside": {"_count": 1}, "away": {"_count": 1}}, "placed": {"_count": 19, "them": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 2}, "it": {"_count": 5}, "the": {"_count": 4}, "its": {"_count": 2}, "right": {"_count": 1}, "Hermiones": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "holding": {"_count": 23, "their": {"_count": 1}, "up": {"_count": 2}, "it": {"_count": 6}, "out": {"_count": 6}, "his": {"_count": 2}, "its": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "Hedwigs": {"_count": 1}, "Harry": {"_count": 1}}, "harder": {"_count": 3, "than": {"_count": 1}, "to": {"_count": 2}}, "someone": {"_count": 6, "thinks": {"_count": 1}, "fell": {"_count": 1}, "laughing": {"_count": 1}, "Stunned": {"_count": 1}, "called": {"_count": 1}, "said": {"_count": 1}}, "shrieked": {"_count": 5, "Lets": {"_count": 1}, "insults": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "Harrys": {"_count": 1}}, "soggy": {"_count": 2, "": {"_count": 1}, "pages": {"_count": 1}}, "furfree": {"_count": 1, "at": {"_count": 1}}, "turning": {"_count": 17, "the": {"_count": 2}, "his": {"_count": 1}, "to": {"_count": 5}, "back": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "quickly": {"_count": 1}, "he": {"_count": 1}, "away": {"_count": 2}, "maroon": {"_count": 1}, "through": {"_count": 1}}, "secretive": {"_count": 1, "meaning": {"_count": 1}}, "stewing": {"_count": 1, "them": {"_count": 1}}, "riskier": {"_count": 1, "to": {"_count": 1}}, "suspicious": {"_count": 2, "": {"_count": 1}, "times": {"_count": 1}}, "late": {"_count": 1, "that": {"_count": 1}}, "reached": {"_count": 12, "him": {"_count": 1}, "underneath": {"_count": 1}, "toward": {"_count": 1}, "for": {"_count": 2}, "up": {"_count": 2}, "out": {"_count": 2}, "the": {"_count": 3}}, "quill": {"_count": 5, "spilled": {"_count": 1}, "and": {"_count": 3}, "crouched": {"_count": 1}}, "brought": {"_count": 4, "him": {"_count": 1}, "them": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}}, "snatch": {"_count": 1, "up": {"_count": 1}}, "partly": {"_count": 2, "because": {"_count": 1}, "cause": {"_count": 1}}, "knew": {"_count": 27, "that": {"_count": 16}, "he": {"_count": 4}, "they": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}, "too": {"_count": 1}, "it": {"_count": 1}}, "wrote": {"_count": 8, "My": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "Hope": {"_count": 1}, "I": {"_count": 1}, "DUMBLEDORES": {"_count": 1}, "it": {"_count": 1}}, "horrible": {"_count": 3, "stuffs": {"_count": 1}, "had": {"_count": 1}, "hairy": {"_count": 1}}, "shadow": {"_count": 1, "": {"_count": 1}}, "stammered": {"_count": 1, "Er": {"_count": 1}}, "twiddled": {"_count": 1, "his": {"_count": 1}}, "slouched": {"_count": 2, "out": {"_count": 1}, "roundshouldered": {"_count": 1}}, "tense": {"_count": 4, "and": {"_count": 2}, "again": {"_count": 1}, "enough": {"_count": 1}}, "Riddle": {"_count": 3, "were": {"_count": 1}, "better": {"_count": 1}, "wand": {"_count": 1}}, "It": {"_count": 2, "never": {"_count": 1}, "wasnt": {"_count": 1}}, "clicking": {"_count": 3, "": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}}, "monstrous": {"_count": 1, "creatures": {"_count": 1}}, "collar": {"_count": 1, "on": {"_count": 1}}, "sick": {"_count": 2, "of": {"_count": 1}, "leave": {"_count": 1}}, "raucous": {"_count": 1, "party": {"_count": 1}}, "jabbing": {"_count": 1, "his": {"_count": 1}}, "homework": {"_count": 3, "": {"_count": 1}, "groups": {"_count": 2}}, "throw": {"_count": 5, "them": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 3}}, "collect": {"_count": 5, "his": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}, "your": {"_count": 1}}, "shouts": {"_count": 6, "": {"_count": 2}, "echoed": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 2}}, "glassy": {"_count": 1, "": {"_count": 1}}, "matches": {"_count": 1, "are": {"_count": 1}}, "scattered": {"_count": 2, "applause": {"_count": 1}, "with": {"_count": 1}}, "stunned": {"_count": 1, "": {"_count": 1}}, "deserted": {"_count": 2, "castle": {"_count": 1}, "grounds": {"_count": 1}}, "eased": {"_count": 1, "them": {"_count": 1}}, "retreated": {"_count": 5, "into": {"_count": 2}, "": {"_count": 1}, "so": {"_count": 1}, "inside": {"_count": 1}}, "flung": {"_count": 12, "open": {"_count": 1}, "it": {"_count": 3}, "a": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "himself": {"_count": 2}, "Zabini": {"_count": 1}, "herself": {"_count": 1}, "itself": {"_count": 1}}, "satisfied": {"_count": 1, "smile": {"_count": 1}}, "whimper": {"_count": 1, "in": {"_count": 1}}, "clearly": {"_count": 7, "so": {"_count": 1}, "": {"_count": 4}, "RiddikulusV": {"_count": 1}, "Sirius": {"_count": 1}}, "lake": {"_count": 1, "alike": {"_count": 1}}, "flowers": {"_count": 2, "large": {"_count": 1}, "of": {"_count": 1}}, "any": {"_count": 3, "laughter": {"_count": 1}, "sighting": {"_count": 1}, "harm": {"_count": 1}}, "unnatural": {"_count": 1, "and": {"_count": 1}}, "cauldron": {"_count": 1, "": {"_count": 1}}, "Hannah": {"_count": 9, "stared": {"_count": 1}, "were": {"_count": 1}, "Abbott": {"_count": 5}, "at": {"_count": 1}, "gesturing": {"_count": 1}}, "failing": {"_count": 3, "to": {"_count": 3}}, "spent": {"_count": 6, "the": {"_count": 3}, "most": {"_count": 2}, "every": {"_count": 1}}, "sorrylooking": {"_count": 1, "with": {"_count": 1}}, "leaves": {"_count": 6, "they": {"_count": 1}, "to": {"_count": 1}, "showered": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}, "her": {"_count": 1}}, "rustling": {"_count": 2, "leaves": {"_count": 1}, "their": {"_count": 1}}, "stumps": {"_count": 1, "in": {"_count": 1}}, "brambles": {"_count": 1, "": {"_count": 1}}, "yelped": {"_count": 1, "even": {"_count": 1}}, "tripping": {"_count": 1, "and": {"_count": 1}}, "smeared": {"_count": 1, "with": {"_count": 1}}, "patting": {"_count": 1, "it": {"_count": 1}}, "lift": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "howling": {"_count": 2, "next": {"_count": 1}, "in": {"_count": 1}}, "years": {"_count": 8, "ago": {"_count": 3}, "to": {"_count": 1}, "hes": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}, "time": {"_count": 1}}, "blamed": {"_count": 1, "for": {"_count": 1}}, "attacking": {"_count": 1, "people": {"_count": 1}}, "daughters": {"_count": 3, "do": {"_count": 1}, "marry": {"_count": 1}, "it": {"_count": 1}}, "leaned": {"_count": 8, "back": {"_count": 2}, "against": {"_count": 3}, "out": {"_count": 1}, "toward": {"_count": 1}, "forward": {"_count": 1}}, "wan": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "scampered": {"_count": 2, "away": {"_count": 2}}, "standing": {"_count": 4, "guard": {"_count": 1}, "back": {"_count": 1}, "up": {"_count": 2}}, "prepare": {"_count": 1, "my": {"_count": 1}}, "bending": {"_count": 4, "closer": {"_count": 1}, "down": {"_count": 3}}, "monsters": {"_count": 1, "that": {"_count": 1}}, "venomous": {"_count": 1, "fangs": {"_count": 1}}, "feeble": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}}, "inform": {"_count": 1, "their": {"_count": 1}}, "because": {"_count": 3, "he": {"_count": 1}, "Ive": {"_count": 1}, "Dumbledore": {"_count": 1}}, "frowning": {"_count": 5, "at": {"_count": 3}, "slightly": {"_count": 1}, "": {"_count": 1}}, "publicity": {"_count": 1, "photos": {"_count": 1}}, "locked": {"_count": 7, "them": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 2}, "doors": {"_count": 3}}, "wandless": {"_count": 2, "Lockhart": {"_count": 1}, "in": {"_count": 1}}, "curved": {"_count": 1, "lying": {"_count": 1}}, "shift": {"_count": 1, "some": {"_count": 1}}, "moved": {"_count": 22, "forward": {"_count": 4}, "around": {"_count": 1}, "over": {"_count": 2}, "away": {"_count": 2}, "sideways": {"_count": 1}, "swiftly": {"_count": 1}, "toward": {"_count": 1}, "restlessly": {"_count": 1}, "across": {"_count": 2}, "it": {"_count": 1}, "no": {"_count": 1}, "into": {"_count": 1}, "along": {"_count": 1}, "the": {"_count": 1}, "like": {"_count": 1}, "on": {"_count": 1}}, "monkeyish": {"_count": 1, "with": {"_count": 1}}, "spun": {"_count": 5, "around": {"_count": 2}, "his": {"_count": 1}, "on": {"_count": 1}, "onto": {"_count": 1}}, "spilled": {"_count": 3, "all": {"_count": 1}, "hot": {"_count": 1}, "sausage": {"_count": 1}}, "months": {"_count": 3, "telling": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "woes": {"_count": 1, "how": {"_count": 1}}, "stronger": {"_count": 2, "on": {"_count": 1}, "than": {"_count": 1}}, "daubed": {"_count": 1, "threatening": {"_count": 1}}, "discover": {"_count": 1, "the": {"_count": 1}}, "train": {"_count": 1, "him": {"_count": 1}}, "panicked": {"_count": 2, "": {"_count": 1}, "voices": {"_count": 1}}, "stole": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "come": {"_count": 8, "down": {"_count": 1}, "to": {"_count": 2}, "any": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 2}, "away": {"_count": 1}}, "cried": {"_count": 6, "and": {"_count": 1}, "On": {"_count": 1}, "Expecto": {"_count": 1}, "Number": {"_count": 1}, "Relashiol": {"_count": 1}, "Protego": {"_count": 1}}, "became": {"_count": 5, "very": {"_count": 1}, "motionless": {"_count": 1}, "still": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "future": {"_count": 1, "Harry": {"_count": 1}}, "gleaming": {"_count": 4, "golden": {"_count": 1}, "on": {"_count": 1}, "red": {"_count": 1}, "the": {"_count": 1}}, "hissed": {"_count": 8, "but": {"_count": 1}, "slightly": {"_count": 1}, "It": {"_count": 1}, "it": {"_count": 1}, "words": {"_count": 1}, "Did": {"_count": 1}, "faintly": {"_count": 1}, "angrily": {"_count": 1}}, "tasted": {"_count": 1, "blood": {"_count": 1}}, "thin": {"_count": 6, "as": {"_count": 2}, "like": {"_count": 1}, "raised": {"_count": 1}, "and": {"_count": 1}, "squinting": {"_count": 1}}, "hard": {"_count": 6, "beneath": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "behind": {"_count": 1}, "Severus": {"_count": 1}, "he": {"_count": 1}}, "steadily": {"_count": 2, "from": {"_count": 1}, "his": {"_count": 1}}, "Fawkes": {"_count": 4, "took": {"_count": 1}, "gave": {"_count": 2}, "sat": {"_count": 1}}, "scarlet": {"_count": 1, "": {"_count": 1}}, "twisting": {"_count": 2, "screaming": {"_count": 1}, "path": {"_count": 1}}, "tears": {"_count": 4, "began": {"_count": 1}, "were": {"_count": 1}, "swam": {"_count": 1}, "still": {"_count": 1}}, "nnow": {"_count": 1, "Ill": {"_count": 1}}, "wwhatll": {"_count": 1, "Mum": {"_count": 1}}, "slime": {"_count": 2, "off": {"_count": 1}, "and": {"_count": 1}}, "moments": {"_count": 5, "later": {"_count": 5}}, "both": {"_count": 20, "of": {"_count": 8}, "Lavender": {"_count": 1}, "appearances": {"_count": 1}, "twins": {"_count": 1}, "were": {"_count": 2}, "eyes": {"_count": 1}, "Ron": {"_count": 1}, "times": {"_count": 1}, "Dumbledore": {"_count": 1}, "mistress": {"_count": 1}, "Hermione": {"_count": 1}, "Ernie": {"_count": 1}}, "settled": {"_count": 15, "on": {"_count": 1}, "himself": {"_count": 2}, "themselves": {"_count": 2}, "down": {"_count": 4}, "back": {"_count": 1}, "herself": {"_count": 2}, "somewhere": {"_count": 1}, "there": {"_count": 1}, "fully": {"_count": 1}}, "laid": {"_count": 9, "upon": {"_count": 1}, "it": {"_count": 5}, "his": {"_count": 1}, "down": {"_count": 1}, "him": {"_count": 1}}, "wide": {"_count": 5, "": {"_count": 1}, "as": {"_count": 2}, "and": {"_count": 1}, "empty": {"_count": 1}}, "forgotten": {"_count": 1, "about": {"_count": 1}}, "wiser": {"_count": 1, "wizards": {"_count": 1}}, "perhaps": {"_count": 10, "a": {"_count": 1}, "sooner": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "most": {"_count": 1}, "realized": {"_count": 1}, "disappointment": {"_count": 1}, "she": {"_count": 1}, "Disillusionment": {"_count": 1}, "he": {"_count": 1}}, "alert": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "Weasley": {"_count": 5, "shall": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 1}, "have": {"_count": 1}, "said": {"_count": 1}}, "sleep": {"_count": 4, "": {"_count": 2}, "Ron": {"_count": 1}, "there": {"_count": 1}}, "killing": {"_count": 2, "Muggleborns": {"_count": 1}, "so": {"_count": 1}}, "Riddles": {"_count": 1, "memories": {"_count": 1}}, "unclench": {"_count": 1, "": {"_count": 1}}, "apologize": {"_count": 1, "endlessly": {"_count": 1}}, "Lucius": {"_count": 5, "Malfoy": {"_count": 3}, "Malfoys": {"_count": 1}, "and": {"_count": 1}}, "sulky": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "practiced": {"_count": 2, "disarming": {"_count": 1}, "wand": {"_count": 1}}, "forbid": {"_count": 1, "him": {"_count": 1}}, "alarm": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}}, "ink": {"_count": 2, "inside": {"_count": 1}, "bottle": {"_count": 1}}, "hid": {"_count": 7, "the": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 2}, "behind": {"_count": 2}, "it": {"_count": 1}}, "checked": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "discovered": {"_count": 3, "a": {"_count": 1}, "that": {"_count": 1}, "from": {"_count": 1}}, "unfolded": {"_count": 7, "it": {"_count": 2}, "a": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 3}}, "grown": {"_count": 1, "extra": {"_count": 1}}, "our": {"_count": 7, "new": {"_count": 2}, "path": {"_count": 1}, "silence": {"_count": 2}, "hearts": {"_count": 1}, "usual": {"_count": 1}}, "final": {"_count": 6, "year": {"_count": 2}, "task": {"_count": 4}}, "spin": {"_count": 2, "": {"_count": 1}, "A": {"_count": 1}}, "isnt": {"_count": 2, "reliable": {"_count": 1}, "there": {"_count": 1}}, "played": {"_count": 2, "on": {"_count": 1}, "better": {"_count": 1}}, "glimpsed": {"_count": 2, "something": {"_count": 1}, "Snape": {"_count": 1}}, "whatever": {"_count": 7, "was": {"_count": 1}, "he": {"_count": 2}, "else": {"_count": 2}, "it": {"_count": 1}, "they": {"_count": 1}}, "sneak": {"_count": 3, "illegal": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 1}}, "scuttled": {"_count": 2, "sideways": {"_count": 1}, "off": {"_count": 1}}, "shuffled": {"_count": 5, "rapidly": {"_count": 1}, "off": {"_count": 1}, "back": {"_count": 1}, "away": {"_count": 1}, "out": {"_count": 1}}, "Errol": {"_count": 1, "watched": {"_count": 1}}, "snap": {"_count": 1, "so": {"_count": 1}}, "Fisheries": {"_count": 1, "will": {"_count": 1}}, "horsefaced": {"_count": 1, "whipped": {"_count": 1}}, "added": {"_count": 6, "Id": {"_count": 1}, "it": {"_count": 2}, "in": {"_count": 1}, "I": {"_count": 1}, "them": {"_count": 1}}, "while": {"_count": 10, "were": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 3}, "youre": {"_count": 1}, "Snape": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}, "Hagrid": {"_count": 1}}, "withdrew": {"_count": 7, "his": {"_count": 1}, "it": {"_count": 2}, "from": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "into": {"_count": 1}}, "furious": {"_count": 4, "staring": {"_count": 1}, "minutes": {"_count": 1}, "": {"_count": 2}}, "sadly": {"_count": 1, "he": {"_count": 1}}, "footsteps": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "purplefaced": {"_count": 1, "she": {"_count": 1}}, "eviltempered": {"_count": 1, "bulldog": {"_count": 1}}, "planted": {"_count": 1, "a": {"_count": 1}}, "fruitcake": {"_count": 1, "and": {"_count": 1}}, "Ripper": {"_count": 2, "was": {"_count": 1}, "the": {"_count": 1}}, "drool": {"_count": 2, "flecked": {"_count": 1}, "but": {"_count": 1}}, "escape": {"_count": 1, "from": {"_count": 1}}, "heres": {"_count": 3, "the": {"_count": 2}, "Lucius": {"_count": 1}}, "splashing": {"_count": 3, "more": {"_count": 1}, "its": {"_count": 1}, "it": {"_count": 1}}, "pinged": {"_count": 1, "off": {"_count": 1}}, "birthday": {"_count": 1, "presents": {"_count": 1}}, "headlights": {"_count": 1, "screeched": {"_count": 1}}, "scrambled": {"_count": 6, "to": {"_count": 2}, "through": {"_count": 1}, "clumsily": {"_count": 1}, "back": {"_count": 1}, "up": {"_count": 1}}, "quite": {"_count": 6, "a": {"_count": 1}, "as": {"_count": 1}, "keen": {"_count": 1}, "enough": {"_count": 1}, "easy": {"_count": 1}, "huge": {"_count": 1}}, "fence": {"_count": 1, "": {"_count": 1}}, "dincha": {"_count": 1, "": {"_count": 1}}, "shoved": {"_count": 3, "some": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 1}}, "Stan": {"_count": 2, "then": {"_count": 1}, "and": {"_count": 1}}, "trash": {"_count": 1, "cans": {"_count": 1}}, "tottered": {"_count": 1, "down": {"_count": 1}}, "rammed": {"_count": 2, "the": {"_count": 1}, "Hedwigs": {"_count": 1}}, "whether": {"_count": 5, "the": {"_count": 1}, "because": {"_count": 2}, "Potter": {"_count": 1}, "Voldemort": {"_count": 1}}, "chuckled": {"_count": 1, "": {"_count": 1}}, "Black": {"_count": 5, "with": {"_count": 1}, "caught": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "onto": {"_count": 1}}, "e": {"_count": 1, "blasted": {"_count": 1}}, "wastebaskets": {"_count": 1, "telephone": {"_count": 1}}, "trees": {"_count": 3, "and": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}}, "miserable": {"_count": 2, "on": {"_count": 1}, "at": {"_count": 1}}, "slippers": {"_count": 1, "descended": {"_count": 1}}, "benches": {"_count": 1, "squeezing": {"_count": 1}}, "helped": {"_count": 12, "Stan": {"_count": 1}, "themselves": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 3}, "himself": {"_count": 2}, "hoist": {"_count": 1}, "Professor": {"_count": 1}, "her": {"_count": 1}, "together": {"_count": 1}}, "exhausted": {"_count": 6, "": {"_count": 3}, "sort": {"_count": 1}, "owl": {"_count": 1}, "onto": {"_count": 1}}, "puffing": {"_count": 3, "from": {"_count": 1}, "out": {"_count": 1}, "on": {"_count": 1}}, "Ern": {"_count": 2, "appeared": {"_count": 1}, "as": {"_count": 1}}, "tossed": {"_count": 1, "it": {"_count": 1}}, "bearing": {"_count": 4, "a": {"_count": 2}, "my": {"_count": 1}, "the": {"_count": 1}}, "crumpets": {"_count": 1, "": {"_count": 1}}, "uncles": {"_count": 7, "house": {"_count": 2}, "doorstep": {"_count": 1}, "hospitality": {"_count": 1}, "havent": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}}, "Easter": {"_count": 2, "holidays": {"_count": 2}}, "Hang": {"_count": 1, "on": {"_count": 1}}, "shake": {"_count": 1, "of": {"_count": 1}}, "perched": {"_count": 2, "on": {"_count": 2}}, "fluttered": {"_count": 3, "down": {"_count": 1}, "to": {"_count": 1}, "onto": {"_count": 1}}, "stray": {"_count": 1, "back": {"_count": 1}}, "squeezed": {"_count": 3, "in": {"_count": 1}, "into": {"_count": 1}, "it": {"_count": 1}}, "handnumbered": {"_count": 1, "with": {"_count": 1}}, "pinpoint": {"_count": 1, "precision": {"_count": 1}}, "incorporates": {"_count": 1, "an": {"_count": 1}}, "leg": {"_count": 1, "he": {"_count": 1}}, "bought": {"_count": 1, "new": {"_count": 1}}, "Divination": {"_count": 3, "": {"_count": 2}, "Ill": {"_count": 1}}, "snapping": {"_count": 1, "aggressively": {"_count": 1}}, "consulted": {"_count": 1, "it": {"_count": 1}}, "proceeded": {"_count": 7, "toward": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "through": {"_count": 1}, "down": {"_count": 1}, "up": {"_count": 1}, "across": {"_count": 1}}, "Broken": {"_count": 1, "Balls": {"_count": 1}}, "dazedly": {"_count": 1, "consulting": {"_count": 1}}, "bumping": {"_count": 2, "into": {"_count": 1}, "along": {"_count": 1}}, "sun": {"_count": 1, "was": {"_count": 1}}, "opening": {"_count": 5, "it": {"_count": 3}, "a": {"_count": 2}}, "Mum": {"_count": 3, "and": {"_count": 1}, "went": {"_count": 1}, "starts": {"_count": 1}}, "feasting": {"_count": 1, "on": {"_count": 1}}, "scuffled": {"_count": 1, "to": {"_count": 1}}, "tutted": {"_count": 1, "loudly": {"_count": 1}}, "orange": {"_count": 3, "came": {"_count": 1}, "bow": {"_count": 1}, "stripes": {"_count": 1}}, "straightened": {"_count": 2, "up": {"_count": 1}, "like": {"_count": 1}}, "oddly": {"_count": 5, "squashed": {"_count": 1}, "eerie": {"_count": 1}, "proportioned": {"_count": 1}, "distorted": {"_count": 1}, "light": {"_count": 1}}, "relaxation": {"_count": 1, "": {"_count": 1}}, "Scabbers": {"_count": 3, "in": {"_count": 1}, "came": {"_count": 1}, "attempted": {"_count": 1}}, "bowing": {"_count": 5, "deeply": {"_count": 1}, "to": {"_count": 2}, "houseelves": {"_count": 1}, "low": {"_count": 1}}, "pack": {"_count": 3, "properly": {"_count": 1}, "up": {"_count": 2}}, "Arthur": {"_count": 6, "the": {"_count": 1}, "": {"_count": 1}, "would": {"_count": 1}, "died": {"_count": 1}, "are": {"_count": 1}, "Weasley": {"_count": 1}}, "piling": {"_count": 2, "them": {"_count": 1}, "her": {"_count": 1}}, "Hermes": {"_count": 2, "Percys": {"_count": 1}, "": {"_count": 1}}, "apparently": {"_count": 8, "very": {"_count": 1}, "convinced": {"_count": 1}, "unaware": {"_count": 1}, "with": {"_count": 1}, "not": {"_count": 1}, "Borgin": {"_count": 1}, "friendless": {"_count": 1}, "without": {"_count": 1}}, "going": {"_count": 3, "pink": {"_count": 1}, "to": {"_count": 2}}, "Crookshanks": {"_count": 11, "in": {"_count": 1}, "had": {"_count": 1}, "his": {"_count": 1}, "went": {"_count": 1}, "was": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 1}, "purring": {"_count": 1}, "could": {"_count": 1}, "mewing": {"_count": 1}}, "blocked": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "reaching": {"_count": 3, "into": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "glowing": {"_count": 1, "brilliantly": {"_count": 1}}, "Banges": {"_count": 5, "magical": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "great": {"_count": 3, "fat": {"_count": 1}, "silvery": {"_count": 1}, "bunches": {"_count": 1}}, "clotted": {"_count": 1, "cream": {"_count": 1}}, "massive": {"_count": 1, "sherbet": {"_count": 1}}, "explore": {"_count": 1, "Hogsmeade": {"_count": 1}}, "Fudge": {"_count": 7, "wouldnt": {"_count": 1}, "wouldve": {"_count": 1}, "passed": {"_count": 1}, "left": {"_count": 1}, "shook": {"_count": 1}, "turned": {"_count": 1}, "jumped": {"_count": 1}}, "sprang": {"_count": 4, "onto": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 2}}, "slept": {"_count": 3, "on": {"_count": 1}, "even": {"_count": 1}, "he": {"_count": 1}}, "darker": {"_count": 4, "while": {"_count": 1}, "than": {"_count": 1}, "street": {"_count": 1}, "": {"_count": 1}}, "Gregory": {"_count": 1, "Goyle": {"_count": 1}}, "musclely": {"_count": 1, "Crabbe": {"_count": 1}}, "walking": {"_count": 5, "carefully": {"_count": 1}, "sideways": {"_count": 1}, "forward": {"_count": 1}, "away": {"_count": 1}, "into": {"_count": 1}}, "slower": {"_count": 1, "": {"_count": 1}}, "distant": {"_count": 5, "thuds": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 2}, "all": {"_count": 1}}, "wary": {"_count": 1, "": {"_count": 1}}, "scabbed": {"_count": 1, "like": {"_count": 1}}, "above": {"_count": 7, "them": {"_count": 1}, "were": {"_count": 1}, "although": {"_count": 1}, "seemed": {"_count": 1}, "all": {"_count": 3}}, "sort": {"_count": 3, "of": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}}, "shivery": {"_count": 1, "as": {"_count": 1}}, "swaying": {"_count": 3, "in": {"_count": 1}, "slightly": {"_count": 1}, "the": {"_count": 1}}, "straw": {"_count": 1, "": {"_count": 1}}, "led": {"_count": 14, "them": {"_count": 1}, "the": {"_count": 6}, "his": {"_count": 1}, "him": {"_count": 5}, "her": {"_count": 1}}, "housed": {"_count": 1, "a": {"_count": 1}}, "cloudy": {"_count": 1, "tonight": {"_count": 1}}, "head": {"_count": 14, "of": {"_count": 3}, "back": {"_count": 1}, "straight": {"_count": 1}, "her": {"_count": 1}, "vanished": {"_count": 1}, "lines": {"_count": 1}, "Umbridge": {"_count": 1}, "still": {"_count": 1}, "shakings": {"_count": 1}, "for": {"_count": 1}, "off": {"_count": 1}, "along": {"_count": 1}}, "Girl": {"_count": 3, "to": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "drink": {"_count": 3, "": {"_count": 1}, "drink": {"_count": 1}, "at": {"_count": 1}}, "boys": {"_count": 1, "divided": {"_count": 1}}, "fried": {"_count": 1, "tomatoes": {"_count": 1}}, "leaving": {"_count": 8, "their": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}, "nothing": {"_count": 1}, "her": {"_count": 1}, "no": {"_count": 1}}, "though": {"_count": 21, "he": {"_count": 8}, "Ron": {"_count": 1}, "Harrys": {"_count": 1}, "Mr": {"_count": 1}, "there": {"_count": 1}, "it": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 2}, "her": {"_count": 1}, "Gryffindors": {"_count": 1}, "every": {"_count": 1}}, "push": {"_count": 3, "up": {"_count": 1}, "himself": {"_count": 1}, "with": {"_count": 1}}, "failed": {"_count": 5, "to": {"_count": 5}}, "gentle": {"_count": 1, "lady": {"_count": 1}}, "dizzier": {"_count": 1, "until": {"_count": 1}}, "steely": {"_count": 1, "sinew": {"_count": 1}}, "fat": {"_count": 1, "little": {"_count": 1}}, "beads": {"_count": 1, "hung": {"_count": 1}}, "hands": {"_count": 6, "were": {"_count": 2}, "which": {"_count": 1}, "some": {"_count": 1}, "dead": {"_count": 1}, "washed": {"_count": 1}}, "rings": {"_count": 1, "": {"_count": 1}}, "bustle": {"_count": 2, "of": {"_count": 2}}, "smells": {"_count": 1, "and": {"_count": 1}}, "sudden": {"_count": 1, "disappearings": {"_count": 1}}, "edged": {"_count": 2, "her": {"_count": 1}, "around": {"_count": 1}}, "shrank": {"_count": 1, "back": {"_count": 1}}, "six": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "instructing": {"_count": 1, "": {"_count": 1}}, "dear": {"_count": 3, "she": {"_count": 2}, "Aunt": {"_count": 1}}, "brush": {"_count": 1, "and": {"_count": 1}}, "swapped": {"_count": 1, "over": {"_count": 1}}, "allow": {"_count": 6, "your": {"_count": 1}, "their": {"_count": 1}, "him": {"_count": 1}, "himself": {"_count": 1}, "themselves": {"_count": 1}, "the": {"_count": 1}}, "suffering": {"_count": 1, "sorry": {"_count": 1}}, "YouKnowWho": {"_count": 2, "": {"_count": 1}, "went": {"_count": 1}}, "admiration": {"_count": 2, "": {"_count": 1}, "back": {"_count": 1}}, "Lavender": {"_count": 31, "Brown": {"_count": 6}, "whispered": {"_count": 1}, "quivered": {"_count": 1}, "were": {"_count": 3}, "both": {"_count": 1}, "come": {"_count": 1}, "went": {"_count": 1}, "could": {"_count": 1}, "thoroughly": {"_count": 1}, "seemed": {"_count": 1}, "who": {"_count": 4}, "had": {"_count": 2}, "exchanged": {"_count": 1}, "into": {"_count": 1}, "all": {"_count": 1}, "completely": {"_count": 1}, "locked": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "thrashing": {"_count": 1}}, "Ah": {"_count": 1, "of": {"_count": 1}}, "befuddling": {"_count": 1, "perfume": {"_count": 1}}, "and": {"_count": 20, "he": {"_count": 2}, "serve": {"_count": 1}, "suck": {"_count": 1}, "an": {"_count": 1}, "normalsized": {"_count": 1}, "Voldemort": {"_count": 1}, "nonsupporters": {"_count": 1}, "Harry": {"_count": 1}, "hes": {"_count": 1}, "if": {"_count": 1}, "Lee": {"_count": 1}, "send": {"_count": 1}, "all": {"_count": 1}, "clean": {"_count": 1}, "they": {"_count": 1}, "Leanne": {"_count": 1}, "Bill": {"_count": 1}, "What": {"_count": 1}, "Kreacher": {"_count": 1}}, "die": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "think": {"_count": 9, "right": {"_count": 1}, "about": {"_count": 3}, "": {"_count": 1}, "hes": {"_count": 1}, "you": {"_count": 1}, "for": {"_count": 1}, "its": {"_count": 1}}, "propped": {"_count": 3, "it": {"_count": 1}, "themselves": {"_count": 1}, "them": {"_count": 1}}, "carrot": {"_count": 1, "flew": {"_count": 1}}, "stalked": {"_count": 5, "away": {"_count": 3}, "back": {"_count": 1}, "off": {"_count": 1}}, "five": {"_count": 5, "minutes": {"_count": 2}, "each": {"_count": 1}, "more": {"_count": 1}, "glasses": {"_count": 1}}, "ripped": {"_count": 6, "off": {"_count": 2}, "back": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}, "up": {"_count": 1}}, "rip": {"_count": 1, "our": {"_count": 1}}, "tails": {"_count": 3, "of": {"_count": 1}, "accompanied": {"_count": 1}, "lashed": {"_count": 1}}, "heads": {"_count": 2, "of": {"_count": 2}}, "large": {"_count": 7, "brilliantly": {"_count": 1}, "piles": {"_count": 1}, "stone": {"_count": 1}, "done": {"_count": 1}, "misty": {"_count": 1}, "drops": {"_count": 1}, "the": {"_count": 1}}, "deadly": {"_count": 2, "looking": {"_count": 1}, "voice": {"_count": 1}}, "urging": {"_count": 1, "the": {"_count": 1}}, "tethered": {"_count": 1, "the": {"_count": 1}}, "inky": {"_count": 1, "black": {"_count": 1}}, "flexing": {"_count": 3, "their": {"_count": 1}, "its": {"_count": 1}, "her": {"_count": 1}}, "Parvati": {"_count": 13, "whispered": {"_count": 1}, "looked": {"_count": 1}, "Patil": {"_count": 3}, "to": {"_count": 1}, "squealed": {"_count": 1}, "were": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "found": {"_count": 1}, "put": {"_count": 1}, "shot": {"_count": 1}}, "soon": {"_count": 8, "people": {"_count": 1}, "saw": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "her": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "drenching": {"_count": 1, "them": {"_count": 1}}, "Gryffindors": {"_count": 2, "were": {"_count": 1}, "had": {"_count": 1}}, "bound": {"_count": 5, "up": {"_count": 1}, "itself": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "generally": {"_count": 2, "favored": {"_count": 1}, "spruced": {"_count": 1}}, "allowing": {"_count": 3, "it": {"_count": 1}, "you": {"_count": 1}, "her": {"_count": 1}}, "trembling": {"_count": 5, "": {"_count": 2}, "upon": {"_count": 1}, "hands": {"_count": 1}, "all": {"_count": 1}}, "ladles": {"_count": 1, "in": {"_count": 1}}, "dipped": {"_count": 2, "a": {"_count": 1}, "its": {"_count": 1}}, "Trevor": {"_count": 1, "the": {"_count": 1}}, "lunch": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 12, "a": {"_count": 2}, "the": {"_count": 6}, "Harrys": {"_count": 1}, "trees": {"_count": 1}, "in": {"_count": 1}, "them": {"_count": 1}}, "unmanageable": {"_count": 1, "as": {"_count": 1}}, "indeed": {"_count": 3, "Peeves": {"_count": 1}, "he": {"_count": 1}, "some": {"_count": 1}}, "straight": {"_count": 4, "down": {"_count": 1}, "to": {"_count": 1}, "nose": {"_count": 1}, "toward": {"_count": 1}}, "stopped": {"_count": 15, "right": {"_count": 1}, "at": {"_count": 2}, "just": {"_count": 1}, "fighting": {"_count": 1}, "Sirius": {"_count": 1}, "beside": {"_count": 1}, "opening": {"_count": 1}, "staring": {"_count": 1}, "neatly": {"_count": 1}, "sharply": {"_count": 1}, "outside": {"_count": 2}, "where": {"_count": 1}, "on": {"_count": 1}}, "sees": {"_count": 1, "you": {"_count": 1}}, "cry": {"_count": 3, "\u2018Riddikulus": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}}, "concentrate": {"_count": 3, "hard": {"_count": 1}, "on": {"_count": 1}, "now": {"_count": 1}}, "imagine": {"_count": 1, "how": {"_count": 1}}, "rolling": {"_count": 2, "up": {"_count": 1}, "his": {"_count": 1}}, "menacing": {"_count": 1, "Professor": {"_count": 1}}, "where": {"_count": 5, "he": {"_count": 1}, "were": {"_count": 1}, "Sirius": {"_count": 1}, "Bowman": {"_count": 1}, "had": {"_count": 1}}, "clutched": {"_count": 5, "her": {"_count": 1}, "them": {"_count": 1}, "at": {"_count": 2}, "Harrys": {"_count": 1}}, "writhed": {"_count": 1, "before": {"_count": 1}}, "summarize": {"_count": 1, "it": {"_count": 1}}, "symbols": {"_count": 5, "trying": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "lay": {"_count": 1}, "in": {"_count": 1}}, "always": {"_count": 7, "returned": {"_count": 1}, "had": {"_count": 1}, "has": {"_count": 1}, "made": {"_count": 1}, "growing": {"_count": 1}, "to": {"_count": 1}, "reaping": {"_count": 1}}, "Oliver": {"_count": 1, "Wood": {"_count": 1}}, "earned": {"_count": 1, "the": {"_count": 1}}, "wetter": {"_count": 1, "the": {"_count": 1}}, "stiff": {"_count": 1, "but": {"_count": 1}}, "completing": {"_count": 1, "some": {"_count": 1}}, "shoving": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}}, "slashing": {"_count": 1, "": {"_count": 1}}, "chased": {"_count": 2, "after": {"_count": 1}, "her": {"_count": 1}}, "bone": {"_count": 2, "": {"_count": 1}, "crossed": {"_count": 1}}, "emptied": {"_count": 4, "the": {"_count": 1}, "not": {"_count": 1}, "an": {"_count": 1}, "once": {"_count": 1}}, "scattering": {"_count": 1, "beans": {"_count": 1}}, "happily": {"_count": 2, "about": {"_count": 1}, "impervious": {"_count": 1}}, "Zonkos": {"_count": 1, "Joke": {"_count": 1}}, "yes": {"_count": 3, "the": {"_count": 1}, "hes": {"_count": 1}, "that": {"_count": 1}}, "second": {"_count": 6, "years": {"_count": 3}, "tasks": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "Belch": {"_count": 1, "Powder": {"_count": 1}}, "Whizzing": {"_count": 1, "Worms": {"_count": 1}}, "Lupin": {"_count": 39, "": {"_count": 4}, "walked": {"_count": 1}, "were": {"_count": 5}, "took": {"_count": 1}, "strode": {"_count": 1}, "stood": {"_count": 3}, "both": {"_count": 3}, "too": {"_count": 1}, "managed": {"_count": 1}, "exchange": {"_count": 1}, "do": {"_count": 1}, "who": {"_count": 1}, "had": {"_count": 3}, "laughed": {"_count": 1}, "beamed": {"_count": 1}, "think": {"_count": 1}, "each": {"_count": 1}, "and": {"_count": 3}, "ought": {"_count": 1}, "carried": {"_count": 1}, "ve": {"_count": 1}, "at": {"_count": 1}, "headed": {"_count": 1}, "vanish": {"_count": 1}}, "watchful": {"_count": 3, "": {"_count": 2}, "gazing": {"_count": 1}}, "sniffed": {"_count": 5, "it": {"_count": 2}, "loudly": {"_count": 1}, "enthusiastically": {"_count": 1}, "his": {"_count": 1}}, "shuddering": {"_count": 3, "": {"_count": 3}}, "answered": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "many": {"_count": 15, "places": {"_count": 1}, "flaming": {"_count": 1}, "tears": {"_count": 1}, "magnificent": {"_count": 1}, "of": {"_count": 3}, "people": {"_count": 1}, "others": {"_count": 1}, "flourishing": {"_count": 1}, "thanks": {"_count": 1}, "strands": {"_count": 1}, "more": {"_count": 1}, "are": {"_count": 1}, "faces": {"_count": 1}}, "hundreds": {"_count": 6, "of": {"_count": 6}}, "tables": {"_count": 4, "to": {"_count": 2}, "": {"_count": 1}, "flying": {"_count": 1}}, "Peevess": {"_count": 1, "grin": {"_count": 1}}, "grinned": {"_count": 7, "at": {"_count": 5}, "": {"_count": 1}, "Harry": {"_count": 1}}, "Flitwick": {"_count": 8, "closed": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 2}, "gasped": {"_count": 1}, "": {"_count": 1}, "those": {"_count": 1}}, "squinted": {"_count": 2, "up": {"_count": 1}, "down": {"_count": 1}}, "quietly": {"_count": 4, "": {"_count": 1}, "as": {"_count": 1}, "toward": {"_count": 1}, "her": {"_count": 1}}, "wilder": {"_count": 3, "Hannah": {"_count": 1}, "hedgerows": {"_count": 1}, "until": {"_count": 1}}, "replaced": {"_count": 6, "with": {"_count": 1}, "it": {"_count": 1}, "instead": {"_count": 1}, "or": {"_count": 1}, "on": {"_count": 1}, "them": {"_count": 1}}, "Seeker": {"_count": 2, "Cedric": {"_count": 1}, "of": {"_count": 1}}, "classrooms": {"_count": 2, "that": {"_count": 1}, "too": {"_count": 1}}, "lanterns": {"_count": 1, "were": {"_count": 1}}, "none": {"_count": 10, "more": {"_count": 1}, "of": {"_count": 6}, "other": {"_count": 1}, "will": {"_count": 1}, "shall": {"_count": 1}}, "grindylows": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "drag": {"_count": 1, "him": {"_count": 1}}, "chase": {"_count": 1, "them": {"_count": 1}}, "speedy": {"_count": 1, "but": {"_count": 1}}, "fight": {"_count": 8, "you": {"_count": 2}, "": {"_count": 2}, "again": {"_count": 1}, "your": {"_count": 1}, "I": {"_count": 1}, "or": {"_count": 1}}, "merely": {"_count": 4, "nodded": {"_count": 1}, "glad": {"_count": 1}, "shrugged": {"_count": 1}, "closed": {"_count": 1}}, "swung": {"_count": 6, "it": {"_count": 3}, "them": {"_count": 1}, "forward": {"_count": 1}, "silvery": {"_count": 1}}, "twig": {"_count": 1, "onto": {"_count": 1}}, "humiliated": {"_count": 1, "every": {"_count": 1}}, "celebrated": {"_count": 1, "having": {"_count": 1}}, "caused": {"_count": 3, "Snape": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "harmlesslooking": {"_count": 1, "": {"_count": 1}}, "despair": {"_count": 3, "they": {"_count": 1}, "All": {"_count": 1}, "": {"_count": 1}}, "happiness": {"_count": 4, "out": {"_count": 2}, "were": {"_count": 2}}, "water": {"_count": 3, "to": {"_count": 1}, "monsters": {"_count": 1}, "": {"_count": 1}}, "worked": {"_count": 1, "his": {"_count": 1}}, "jerky": {"_count": 1, "he": {"_count": 1}}, "quiet": {"_count": 8, "": {"_count": 4}, "in": {"_count": 1}, "she": {"_count": 1}, "talent": {"_count": 1}, "if": {"_count": 1}}, "innocent": {"_count": 2, "Harry": {"_count": 1}, "looking": {"_count": 1}}, "Highly": {"_count": 1, "Dangerous": {"_count": 1}}, "Prongs": {"_count": 6, "Purveyors": {"_count": 1}, "sighed": {"_count": 1}, "Fred": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "wouldve": {"_count": 1}}, "grounds": {"_count": 4, "": {"_count": 1}, "amounted": {"_count": 1}, "of": {"_count": 1}, "for": {"_count": 1}}, "pause": {"_count": 1, "to": {"_count": 1}}, "behind": {"_count": 4, "the": {"_count": 1}, "them": {"_count": 2}, "him": {"_count": 1}}, "tapped": {"_count": 13, "the": {"_count": 6}, "three": {"_count": 1}, "it": {"_count": 3}, "with": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "apprehensive": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "boxes": {"_count": 4, "": {"_count": 2}, "of": {"_count": 1}, "hastily": {"_count": 1}}, "shutting": {"_count": 1, "of": {"_count": 1}}, "suppressed": {"_count": 1, "a": {"_count": 1}}, "squeak": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "exploding": {"_count": 1, "bonbons": {"_count": 1}}, "will": {"_count": 5, "be": {"_count": 2}, "give": {"_count": 1}, "come": {"_count": 1}, "certainly": {"_count": 1}}, "break": {"_count": 2, "into": {"_count": 1}, "him": {"_count": 1}}, "shops": {"_count": 1, "were": {"_count": 1}}, "strings": {"_count": 1, "of": {"_count": 1}}, "choked": {"_count": 3, "": {"_count": 1}, "His": {"_count": 1}, "in": {"_count": 1}}, "forced": {"_count": 11, "him": {"_count": 3}, "the": {"_count": 3}, "a": {"_count": 1}, "her": {"_count": 2}, "his": {"_count": 1}, "it": {"_count": 1}}, "under": {"_count": 3, "the": {"_count": 2}, "cover": {"_count": 1}}, "crouching": {"_count": 1, "out": {"_count": 1}}, "Fudges": {"_count": 1, "feet": {"_count": 1}}, "sighs": {"_count": 1, "of": {"_count": 1}}, "minister": {"_count": 1, "as": {"_count": 1}}, "soda": {"_count": 1, "with": {"_count": 1}}, "umbrella": {"_count": 1, "Mmm": {"_count": 1}}, "is": {"_count": 9, "henceforth": {"_count": 1}, "proud": {"_count": 1}, "often": {"_count": 1}, "trying": {"_count": 2}, "active": {"_count": 1}, "walking": {"_count": 1}, "buried": {"_count": 1}, "we": {"_count": 1}}, "knowing": {"_count": 3, "that": {"_count": 1}, "who": {"_count": 1}, "what": {"_count": 1}}, "Pettigrew": {"_count": 7, "received": {"_count": 1}, "recoiled": {"_count": 1}, "": {"_count": 1}, "being": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "sat": {"_count": 1}}, "desperate": {"_count": 2, "man": {"_count": 1}, "": {"_count": 1}}, "night": {"_count": 2, "": {"_count": 2}}, "friendless": {"_count": 3, "is": {"_count": 1}, "abandoned": {"_count": 1}, "but": {"_count": 1}}, "waxy": {"_count": 2, "but": {"_count": 1}, "in": {"_count": 1}}, "glasses": {"_count": 6, "and": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "turned": {"_count": 1}, "greeted": {"_count": 1}, "a": {"_count": 1}}, "massaging": {"_count": 1, "his": {"_count": 1}}, "wake": {"_count": 4, "you": {"_count": 1}, "the": {"_count": 1}, "Severus": {"_count": 1}, "your": {"_count": 1}}, "pleading": {"_count": 1, "with": {"_count": 1}}, "serve": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "Pettigrews": {"_count": 2, "finger": {"_count": 1}, "name": {"_count": 1}}, "Malfoyd": {"_count": 1, "love": {"_count": 1}}, "freezing": {"_count": 3, "": {"_count": 1}, "air": {"_count": 1}, "my": {"_count": 1}}, "swollen": {"_count": 5, "tears": {"_count": 1}, "": {"_count": 2}, "face": {"_count": 1}, "he": {"_count": 1}}, "isolated": {"_count": 1, "": {"_count": 1}}, "laying": {"_count": 3, "a": {"_count": 1}, "it": {"_count": 2}}, "lurched": {"_count": 1, "forward": {"_count": 1}}, "mopping": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "delicious": {"_count": 1, "smell": {"_count": 1}}, "stowing": {"_count": 1, "him": {"_count": 1}}, "aimed": {"_count": 3, "a": {"_count": 1}, "another": {"_count": 1}, "jinxes": {"_count": 1}}, "causing": {"_count": 8, "Ron": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 3}, "several": {"_count": 1}, "him": {"_count": 1}, "harm": {"_count": 1}}, "picking": {"_count": 6, "up": {"_count": 6}}, "whistled": {"_count": 1, "in": {"_count": 1}}, "spitting": {"_count": 3, "at": {"_count": 1}, "without": {"_count": 1}, "gold": {"_count": 1}}, "rage": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "all": {"_count": 1}, "reared": {"_count": 1}}, "useless": {"_count": 3, "he": {"_count": 1}, "objects": {"_count": 1}, "owner": {"_count": 1}}, "devoted": {"_count": 1, "himself": {"_count": 1}}, "tugged": {"_count": 7, "": {"_count": 3}, "the": {"_count": 2}, "it": {"_count": 1}, "him": {"_count": 1}}, "McGonagall": {"_count": 5, "": {"_count": 1}, "were": {"_count": 2}, "are": {"_count": 1}, "and": {"_count": 1}}, "mouth": {"_count": 4, "clenched": {"_count": 1}, "very": {"_count": 1}, "hot": {"_count": 1}, "He": {"_count": 1}}, "toasted": {"_count": 2, "them": {"_count": 1}, "her": {"_count": 1}}, "faced": {"_count": 7, "Ron": {"_count": 2}, "the": {"_count": 1}, "Dudley": {"_count": 1}, "them": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "buy": {"_count": 2, "a": {"_count": 2}}, "impatient": {"_count": 1, "tuh": {"_count": 1}}, "indicated": {"_count": 1, "that": {"_count": 1}}, "teach": {"_count": 3, "you": {"_count": 1}, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "moving": {"_count": 9, "into": {"_count": 1}, "together": {"_count": 1}, "without": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "around": {"_count": 2}, "on": {"_count": 1}}, "him": {"_count": 5, "Voldemort": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "alone": {"_count": 1}, "plus": {"_count": 1}}, "softer": {"_count": 2, "again": {"_count": 1}, "than": {"_count": 1}}, "strangely": {"_count": 1, "empty": {"_count": 1}}, "listening": {"_count": 8, "to": {"_count": 3}, "": {"_count": 1}, "intently": {"_count": 1}, "sneakily": {"_count": 1}, "raptly": {"_count": 1}, "in": {"_count": 1}}, "file": {"_count": 1, "upon": {"_count": 1}}, "snapped": {"_count": 2, "when": {"_count": 1}, "viciously": {"_count": 1}}, "imitated": {"_count": 2, "Professor": {"_count": 1}, "a": {"_count": 1}}, "worst": {"_count": 3, "weapon": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "suck": {"_count": 1, "out": {"_count": 1}}, "heart": {"_count": 1, "are": {"_count": 1}}, "win": {"_count": 2, "wont": {"_count": 1}, "again": {"_count": 1}}, "reluctantly": {"_count": 1, "swung": {"_count": 1}}, "shoot": {"_count": 2, "a": {"_count": 1}, "golden": {"_count": 1}}, "raced": {"_count": 1, "a": {"_count": 1}}, "within": {"_count": 7, "ten": {"_count": 1}, "minutes": {"_count": 4}, "five": {"_count": 1}, "seconds": {"_count": 1}}, "wishing": {"_count": 2, "it": {"_count": 1}, "I": {"_count": 1}}, "insisted": {"_count": 4, "that": {"_count": 3}, "they": {"_count": 1}}, "illuminated": {"_count": 2, "its": {"_count": 1}, "them": {"_count": 1}}, "stuck": {"_count": 2, "it": {"_count": 1}, "up": {"_count": 1}}, "Jordan": {"_count": 1, "": {"_count": 1}}, "noticing": {"_count": 2, "that": {"_count": 1}, "how": {"_count": 1}}, "Cho": {"_count": 17, "fell": {"_count": 1}, "thinking": {"_count": 1}, "were": {"_count": 2}, "Chang": {"_count": 1}, "all": {"_count": 1}, "glared": {"_count": 1}, "looked": {"_count": 1}, "praising": {"_count": 1}, "leaving": {"_count": 1}, "slightly": {"_count": 1}, "approached": {"_count": 1}, "passed": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}, "but": {"_count": 1}, "sat": {"_count": 1}}, "tore": {"_count": 6, "after": {"_count": 1}, "at": {"_count": 2}, "back": {"_count": 1}, "away": {"_count": 1}, "down": {"_count": 1}}, "roared": {"_count": 3, "Expecto": {"_count": 1}, "higher": {"_count": 1}, "with": {"_count": 1}}, "pleased": {"_count": 2, "": {"_count": 2}}, "Marcus": {"_count": 1, "Flint": {"_count": 1}}, "cowardly": {"_count": 1, "attempt": {"_count": 1}}, "Social": {"_count": 1, "Habits": {"_count": 1}}, "twenty": {"_count": 6, "two": {"_count": 1}, "percent": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "or": {"_count": 1}, "more": {"_count": 1}}, "hair": {"_count": 2, "net": {"_count": 1}, "gleamed": {"_count": 1}}, "ahead": {"_count": 3, "he": {"_count": 2}, "were": {"_count": 1}}, "aaRRRRRRRRRRRRGGGGGHHHHH": {"_count": 1, "": {"_count": 1}}, "pinning": {"_count": 1, "his": {"_count": 1}}, "outside": {"_count": 3, "the": {"_count": 2}, "these": {"_count": 1}}, "comparing": {"_count": 1, "the": {"_count": 1}}, "unblocked": {"_count": 1, "": {"_count": 1}}, "woken": {"_count": 1, "people": {"_count": 1}}, "forbidden": {"_count": 1, "anyone": {"_count": 1}}, "judging": {"_count": 3, "by": {"_count": 3}}, "clearing": {"_count": 1, "a": {"_count": 1}}, "doubling": {"_count": 2, "back": {"_count": 2}}, "prodded": {"_count": 5, "Ron": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "cause": {"_count": 2, "a": {"_count": 1}, "more": {"_count": 1}}, "tricks": {"_count": 1, "to": {"_count": 1}}, "breezy": {"_count": 3, "and": {"_count": 2}, "courtyard": {"_count": 1}}, "dank": {"_count": 1, "overgrown": {"_count": 1}}, "adding": {"_count": 8, "to": {"_count": 1}, "her": {"_count": 2}, "another": {"_count": 1}, "them": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "You": {"_count": 1}}, "smoothing": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 1}}, "begs": {"_count": 1, "him": {"_count": 1}}, "advises": {"_count": 1, "him": {"_count": 1}}, "forgettin": {"_count": 1, "all": {"_count": 1}}, "gazing": {"_count": 7, "around": {"_count": 1}, "longingly": {"_count": 1}, "up": {"_count": 1}, "at": {"_count": 3}, "into": {"_count": 1}}, "external": {"_count": 1, "eyes": {"_count": 1}}, "cramming": {"_count": 1, "Unfogging": {"_count": 1}}, "Fowl": {"_count": 1, "or": {"_count": 1}}, "slouching": {"_count": 2, "away": {"_count": 1}, "off": {"_count": 1}}, "frequently": {"_count": 2, "dashed": {"_count": 1}, "that": {"_count": 1}}, "muttering": {"_count": 5, "to": {"_count": 2}, "very": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "woke": {"_count": 1, "with": {"_count": 1}}, "LIONS": {"_count": 1, "FOR": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "Alicia": {"_count": 9, "flew": {"_count": 1}, "sped": {"_count": 1}, "": {"_count": 2}, "whose": {"_count": 1}, "passes": {"_count": 1}, "hugged": {"_count": 1}, "are": {"_count": 1}, "Spinnet": {"_count": 1}}, "Derrick": {"_count": 4, "zooming": {"_count": 1}, "collided": {"_count": 1}, "took": {"_count": 1}, "": {"_count": 1}}, "Bole": {"_count": 3, "and": {"_count": 1}, "have": {"_count": 1}, "managed": {"_count": 1}}, "YES": {"_count": 1, "": {"_count": 1}}, "sobbed": {"_count": 3, "unrestrainedly": {"_count": 1}, "at": {"_count": 1}, "that": {"_count": 1}}, "Katies": {"_count": 1, "voices": {"_count": 1}}, "bodies": {"_count": 3, "pressing": {"_count": 1}, "were": {"_count": 1}, "however": {"_count": 1}}, "sultry": {"_count": 1, "and": {"_count": 1}}, "flopping": {"_count": 1, "down": {"_count": 1}}, "examining": {"_count": 10, "it": {"_count": 4}, "them": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}, "what": {"_count": 1}}, "Gramatica": {"_count": 1, "": {"_count": 1}}, "ashenfaced": {"_count": 2, "comparing": {"_count": 1}, "his": {"_count": 1}}, "bemoaning": {"_count": 1, "the": {"_count": 1}}, "Astronomy": {"_count": 1, "": {"_count": 1}}, "also": {"_count": 11, "gave": {"_count": 1}, "shook": {"_count": 1}, "under": {"_count": 1}, "that": {"_count": 1}, "because": {"_count": 1}, "a": {"_count": 1}, "how": {"_count": 1}, "broke": {"_count": 1}, "Harry": {"_count": 1}, "who": {"_count": 1}, "the": {"_count": 1}}, "battle": {"_count": 1, "with": {"_count": 1}}, "argues": {"_count": 1, "his": {"_count": 1}}, "Buckbeak": {"_count": 8, "didnt": {"_count": 1}, "stood": {"_count": 1}, "flashed": {"_count": 1}, "turned": {"_count": 1}, "were": {"_count": 1}, "Harry": {"_count": 1}, "tossed": {"_count": 1}, "the": {"_count": 1}}, "joking": {"_count": 2, "heading": {"_count": 1}, "loudly": {"_count": 1}}, "shattered": {"_count": 6, "all": {"_count": 1}, "": {"_count": 2}, "The": {"_count": 1}, "into": {"_count": 1}, "it": {"_count": 1}}, "much": {"_count": 11, "scrambling": {"_count": 1}, "darker": {"_count": 1}, "more": {"_count": 2}, "less": {"_count": 4}, "good": {"_count": 1}, "swearing": {"_count": 1}, "gulping": {"_count": 1}}, "pawed": {"_count": 2, "the": {"_count": 2}}, "mens": {"_count": 1, "voices": {"_count": 1}}, "thud": {"_count": 1, "of": {"_count": 1}}, "uneven": {"_count": 1, "": {"_count": 1}}, "pelted": {"_count": 3, "away": {"_count": 1}, "heads": {"_count": 1}, "toward": {"_count": 1}}, "fall": {"_count": 3, "too": {"_count": 1}, "backward": {"_count": 1}, "in": {"_count": 1}}, "torso": {"_count": 4, "were": {"_count": 2}, "": {"_count": 1}, "of": {"_count": 1}}, "keep": {"_count": 12, "your": {"_count": 2}, "a": {"_count": 2}, "you": {"_count": 2}, "an": {"_count": 2}, "climbing": {"_count": 1}, "missing": {"_count": 1}, "him": {"_count": 1}, "fighting": {"_count": 1}}, "lunged": {"_count": 1, "forward": {"_count": 1}}, "wouldnt": {"_count": 2, "shift": {"_count": 1}, "have": {"_count": 1}}, "bleeding": {"_count": 3, "at": {"_count": 1}, "hands": {"_count": 1}, "on": {"_count": 1}}, "embraced": {"_count": 2, "Black": {"_count": 1}, "Dudley": {"_count": 1}}, "realize": {"_count": 2, "that": {"_count": 1}, "he": {"_count": 1}}, "enter": {"_count": 1, "Hagrids": {"_count": 1}}, "overbalanced": {"_count": 1, "and": {"_count": 1}}, "howls": {"_count": 1, "the": {"_count": 1}}, "tired": {"_count": 2, "": {"_count": 2}}, "Sirius": {"_count": 38, "here": {"_count": 1}, "": {"_count": 4}, "are": {"_count": 2}, "had": {"_count": 5}, "would": {"_count": 1}, "got": {"_count": 1}, "were": {"_count": 4}, "knows": {"_count": 1}, "gets": {"_count": 1}, "was": {"_count": 1}, "listens": {"_count": 1}, "looked": {"_count": 2}, "followed": {"_count": 1}, "and": {"_count": 3}, "advanced": {"_count": 1}, "eyed": {"_count": 1}, "told": {"_count": 1}, "have": {"_count": 1}, "wouldnt": {"_count": 1}, "barely": {"_count": 1}, "Black": {"_count": 1}, "imitated": {"_count": 1}, "at": {"_count": 1}, "stopped": {"_count": 1}}, "touch": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}}, "roaming": {"_count": 1, "the": {"_count": 1}}, "Hogsmeade": {"_count": 1, "than": {"_count": 1}}, "sign": {"_count": 1, "it": {"_count": 1}}, "bitten": {"_count": 2, "somebody": {"_count": 1}, "": {"_count": 1}}, "others": {"_count": 4, "safety": {"_count": 2}, "laughed": {"_count": 1}, "might": {"_count": 1}}, "Dumbledores": {"_count": 14, "trust": {"_count": 1}, "never": {"_count": 1}, "shrewd": {"_count": 1}, "simply": {"_count": 1}, "going": {"_count": 1}, "clear": {"_count": 1}, "been": {"_count": 1}, "magnificent": {"_count": 1}, "top": {"_count": 1}, "hand": {"_count": 1}, "promise": {"_count": 1}, "uninjured": {"_count": 1}, "name": {"_count": 1}, "decision": {"_count": 1}}, "ankles": {"_count": 3, "he": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 1}}, "untied": {"_count": 1, "him": {"_count": 1}}, "Peter": {"_count": 4, "tracked": {"_count": 1}, "you": {"_count": 1}, "Pettigrew": {"_count": 2}}, "wringing": {"_count": 1, "his": {"_count": 1}}, "snarling": {"_count": 2, "on": {"_count": 1}, "at": {"_count": 1}}, "casual": {"_count": 1, "": {"_count": 1}}, "Remus": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "Lupin": {"_count": 1}}, "lunacy": {"_count": 1, "but": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "gagged": {"_count": 2, "": {"_count": 1}, "Black": {"_count": 1}}, "checking": {"_count": 2, "his": {"_count": 2}}, "occasionally": {"_count": 1, "whimpering": {"_count": 1}}, "clear": {"_count": 8, "his": {"_count": 1}, "from": {"_count": 2}, "": {"_count": 1}, "as": {"_count": 1}, "of": {"_count": 1}, "in": {"_count": 1}, "There": {"_count": 1}}, "died": {"_count": 6, "": {"_count": 3}, "and": {"_count": 1}, "twenty": {"_count": 1}, "leaving": {"_count": 1}}, "brighter": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Granger": {"_count": 1, "Minister": {"_count": 1}}, "treat": {"_count": 1, "him": {"_count": 1}}, "Dumbledore": {"_count": 69, "turned": {"_count": 1}, "came": {"_count": 2}, "could": {"_count": 1}, "shook": {"_count": 1}, "chuckled": {"_count": 1}, "himself": {"_count": 1}, "be": {"_count": 1}, "was": {"_count": 3}, "are": {"_count": 2}, "hurried": {"_count": 1}, "and": {"_count": 4}, "got": {"_count": 1}, "there": {"_count": 1}, "were": {"_count": 7}, "but": {"_count": 1}, "stood": {"_count": 3}, "out": {"_count": 1}, "said": {"_count": 2}, "would": {"_count": 1}, "": {"_count": 4}, "s": {"_count": 2}, "had": {"_count": 9}, "have": {"_count": 1}, "made": {"_count": 1}, "wont": {"_count": 1}, "approached": {"_count": 1}, "hampered": {"_count": 1}, "kicked": {"_count": 1}, "too": {"_count": 1}, "both": {"_count": 1}, "knew": {"_count": 1}, "left": {"_count": 1}, "sagged": {"_count": 1}, "smiled": {"_count": 1}, "laughed": {"_count": 1}, "gradually": {"_count": 1}, "dabbed": {"_count": 1}, "sat": {"_count": 1}, "did": {"_count": 1}, "nodded": {"_count": 1}, "beamed": {"_count": 1}}, "shapes": {"_count": 1, "rushed": {"_count": 1}}, "grab": {"_count": 2, "Pettigrew": {"_count": 1}, "it": {"_count": 1}}, "Macnair": {"_count": 2, "the": {"_count": 1}, "need": {"_count": 1}}, "approached": {"_count": 7, "Buckbeak": {"_count": 1}, "the": {"_count": 4}, "Bagman": {"_count": 1}, "Mrs": {"_count": 1}}, "dug": {"_count": 1, "their": {"_count": 1}}, "lashing": {"_count": 1, "out": {"_count": 1}}, "disappear": {"_count": 3, "from": {"_count": 2}, "back": {"_count": 1}}, "haring": {"_count": 1, "toward": {"_count": 1}}, "prod": {"_count": 1, "the": {"_count": 1}}, "weaving": {"_count": 3, "slightly": {"_count": 1}, "through": {"_count": 1}, "across": {"_count": 1}}, "tied": {"_count": 3, "it": {"_count": 2}, "as": {"_count": 1}}, "pity": {"_count": 2, "": {"_count": 2}}, "show": {"_count": 6, "the": {"_count": 1}, "Snape": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}, "them": {"_count": 1}}, "interfere": {"_count": 1, "said": {"_count": 1}}, "charge": {"_count": 2, "at": {"_count": 2}}, "lifting": {"_count": 1, "the": {"_count": 1}}, "smaller": {"_count": 1, "as": {"_count": 1}}, "listened": {"_count": 10, "": {"_count": 1}, "intently": {"_count": 2}, "more": {"_count": 1}, "to": {"_count": 6}}, "notify": {"_count": 1, "the": {"_count": 1}}, "taking": {"_count": 14, "out": {"_count": 2}, "their": {"_count": 2}, "his": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 3}, "it": {"_count": 2}, "Harrys": {"_count": 1}, "aim": {"_count": 1}, "each": {"_count": 1}}, "later": {"_count": 2, "Harry": {"_count": 1}, "every": {"_count": 1}}, "shows": {"_count": 1, "himself": {"_count": 1}}, "laughed": {"_count": 5, "with": {"_count": 1}, "sourly": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "until": {"_count": 1}}, "contented": {"_count": 1, "as": {"_count": 1}}, "reread": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "every": {"_count": 1}}, "dads": {"_count": 2, "best": {"_count": 1}, "house": {"_count": 1}}, "ivy": {"_count": 2, "spreading": {"_count": 1}, "crossing": {"_count": 1}}, "easily": {"_count": 1, "the": {"_count": 1}}, "grandest": {"_count": 1, "building": {"_count": 1}}, "unoccupied": {"_count": 1, "": {"_count": 1}}, "roused": {"_count": 1, "as": {"_count": 1}}, "ill": {"_count": 2, "disguised": {"_count": 1}, "": {"_count": 1}}, "rude": {"_count": 1, "and": {"_count": 1}}, "announced": {"_count": 2, "to": {"_count": 2}}, "dingy": {"_count": 1, "police": {"_count": 1}}, "pale": {"_count": 5, "": {"_count": 3}, "because": {"_count": 1}, "erupted": {"_count": 1}}, "changed": {"_count": 2, "everything": {"_count": 1}, "the": {"_count": 1}}, "amid": {"_count": 1, "a": {"_count": 1}}, "yelling": {"_count": 4, "croakily": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}, "abuse": {"_count": 1}}, "grandparents": {"_count": 1, "thought": {"_count": 1}}, "limped": {"_count": 6, "downstairs": {"_count": 1}, "over": {"_count": 1}, "heavily": {"_count": 1}, "off": {"_count": 1}, "away": {"_count": 1}, "from": {"_count": 1}}, "removing": {"_count": 1, "a": {"_count": 1}}, "stick": {"_count": 3, "": {"_count": 1}, "together": {"_count": 1}, "to": {"_count": 1}}, "closer": {"_count": 7, "grasping": {"_count": 1}, "What": {"_count": 1}, "": {"_count": 3}, "to": {"_count": 1}, "claws": {"_count": 1}}, "fearful": {"_count": 3, "": {"_count": 3}}, "rotated": {"_count": 1, "it": {"_count": 1}}, "doublechecking": {"_count": 1, "identities": {"_count": 1}}, "Muggles": {"_count": 2, "": {"_count": 1}, "Albus": {"_count": 1}}, "Frank": {"_count": 4, "could": {"_count": 1}, "remained": {"_count": 1}, "was": {"_count": 1}, "Bryce": {"_count": 1}}, "criminals": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "me": {"_count": 1}}, "Wormtail": {"_count": 9, "had": {"_count": 1}, "lifted": {"_count": 1}, "sobbing": {"_count": 1}, "let": {"_count": 2}, "eyes": {"_count": 1}, "remained": {"_count": 1}, "included": {"_count": 1}, "roared": {"_count": 1}}, "assorted": {"_count": 3, "spellbooks": {"_count": 1}, "meat": {"_count": 1}, "hangerson": {"_count": 1}}, "injury": {"_count": 1, "": {"_count": 1}}, "injuries": {"_count": 1, "they": {"_count": 1}}, "painless": {"_count": 1, "": {"_count": 1}}, "despised": {"_count": 2, "magic": {"_count": 1}, "him": {"_count": 1}}, "killed": {"_count": 5, "his": {"_count": 1}, "Cedric": {"_count": 1}, "Kendra": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}}, "mother": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "incredibly": {"_count": 1, "it": {"_count": 1}}, "whispers": {"_count": 2, "followed": {"_count": 1}, "": {"_count": 1}}, "panicky": {"_count": 1, "": {"_count": 1}}, "check": {"_count": 4, "Common": {"_count": 1}, "that": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "Afflictions": {"_count": 2, "": {"_count": 2}}, "longnosed": {"_count": 1, "freckled": {"_count": 1}}, "chucked": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "goings": {"_count": 1, "of": {"_count": 1}}, "weight": {"_count": 1, "of": {"_count": 1}}, "cakes": {"_count": 2, "chocolate": {"_count": 1}, "from": {"_count": 1}}, "burgers": {"_count": 1, "and": {"_count": 1}}, "filled": {"_count": 2, "instead": {"_count": 1}, "it": {"_count": 1}}, "vegetables": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "Sports": {"_count": 8, "": {"_count": 3}, "said": {"_count": 1}, "have": {"_count": 1}, "of": {"_count": 1}, "Ludo": {"_count": 1}, "incorporating": {"_count": 1}}, "tickets": {"_count": 1, "are": {"_count": 1}}, "which": {"_count": 17, "fell": {"_count": 1}, "formed": {"_count": 1}, "Neville": {"_count": 1}, "he": {"_count": 4}, "was": {"_count": 2}, "Voldemort": {"_count": 1}, "made": {"_count": 1}, "reduced": {"_count": 1}, "now": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}, "took": {"_count": 1}, "carried": {"_count": 1}}, "whoop": {"_count": 1, "": {"_count": 1}}, "hurled": {"_count": 1, "himself": {"_count": 1}}, "hastily": {"_count": 5, "added": {"_count": 1}, "took": {"_count": 1}, "gulped": {"_count": 1}, "began": {"_count": 1}, "returned": {"_count": 1}}, "soared": {"_count": 10, "out": {"_count": 3}, "up": {"_count": 1}, "down": {"_count": 2}, "toward": {"_count": 1}, "off": {"_count": 1}, "away": {"_count": 1}, "back": {"_count": 1}}, "cranny": {"_count": 1, "of": {"_count": 1}}, "irritable": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "intimidating": {"_count": 1, "": {"_count": 1}}, "grated": {"_count": 1, "celery": {"_count": 1}}, "expensive": {"_count": 1, "their": {"_count": 1}}, "nerves": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "scrapings": {"_count": 2, "were": {"_count": 1}, "Xenophilius": {"_count": 1}}, "loose": {"_count": 1, "chippings": {"_count": 1}}, "straightening": {"_count": 3, "his": {"_count": 2}, "up": {"_count": 1}}, "balding": {"_count": 1, "he": {"_count": 1}}, "examine": {"_count": 2, "the": {"_count": 1}, "everything": {"_count": 1}}, "attack": {"_count": 4, "": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "them": {"_count": 1}}, "attempted": {"_count": 15, "to": {"_count": 12}, "murder": {"_count": 1}, "robbery": {"_count": 1}, "theft": {"_count": 1}}, "sputtering": {"_count": 2, "on": {"_count": 1}, "Ron": {"_count": 1}}, "sputtered": {"_count": 1, "worse": {"_count": 1}}, "lying": {"_count": 2, "on": {"_count": 2}}, "Dudleys": {"_count": 2, "tongue": {"_count": 1}, "footsteps": {"_count": 1}}, "blisters": {"_count": 1, "under": {"_count": 1}}, "stockier": {"_count": 1, "than": {"_count": 1}}, "lanky": {"_count": 2, "": {"_count": 1}, "Hermione": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "ate": {"_count": 1, "it": {"_count": 1}}, "redhaired": {"_count": 1, "was": {"_count": 1}}, "trick": {"_count": 1, "sweets": {"_count": 1}}, "burned": {"_count": 7, "all": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "sloping": {"_count": 1, "ceiling": {"_count": 1}}, "twittering": {"_count": 1, "madly": {"_count": 1}}, "pans": {"_count": 6, "out": {"_count": 1}, "everywhere": {"_count": 1}, "heaped": {"_count": 1}, "hanging": {"_count": 1}, "above": {"_count": 1}, "had": {"_count": 1}}, "lighting": {"_count": 1, "it": {"_count": 1}}, "unless": {"_count": 5, "they": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}}, "anxiety": {"_count": 3, "": {"_count": 2}, "about": {"_count": 1}}, "conjured": {"_count": 1, "tablecloths": {"_count": 1}}, "salad": {"_count": 1, "": {"_count": 1}}, "ended": {"_count": 2, "up": {"_count": 2}}, "ninety": {"_count": 1, "to": {"_count": 1}}, "Scotland": {"_count": 1, "was": {"_count": 1}}, "owned": {"_count": 1, "one": {"_count": 1}}, "honeysuckle": {"_count": 1, "": {"_count": 1}}, "closely": {"_count": 1, "pursued": {"_count": 1}}, "peaceful": {"_count": 2, "": {"_count": 1}, "here": {"_count": 1}}, "PerPerPercy": {"_count": 1, "": {"_count": 1}}, "reappearing": {"_count": 1, "almost": {"_count": 1}}, "understood": {"_count": 4, "that": {"_count": 2}, "as": {"_count": 1}, "": {"_count": 1}}, "splinched": {"_count": 1, "themselves": {"_count": 1}}, "drowsy": {"_count": 1, "": {"_count": 1}}, "toffees": {"_count": 1, "zoomed": {"_count": 1}}, "behave": {"_count": 1, "yourselves": {"_count": 1}}, "trains": {"_count": 1, "remember": {"_count": 1}}, "playing": {"_count": 1, "with": {"_count": 1}}, "squinting": {"_count": 4, "around": {"_count": 1}, "up": {"_count": 2}, "at": {"_count": 1}}, "Control": {"_count": 12, "of": {"_count": 11}, "She": {"_count": 1}}, "swirling": {"_count": 3, "color": {"_count": 2}, "within": {"_count": 1}}, "Cedric": {"_count": 21, "were": {"_count": 1}, "hadnt": {"_count": 1}, "": {"_count": 5}, "too": {"_count": 1}, "made": {"_count": 1}, "climbed": {"_count": 1}, "stuck": {"_count": 1}, "hurried": {"_count": 1}, "stood": {"_count": 1}, "had": {"_count": 1}, "right": {"_count": 1}, "now": {"_count": 1}, "his": {"_count": 1}, "both": {"_count": 1}, "and": {"_count": 1}, "along": {"_count": 1}, "to": {"_count": 1}}, "grumpylooking": {"_count": 1, "wizards": {"_count": 1}}, "pay": {"_count": 5, "me": {"_count": 1}, "the": {"_count": 2}, "attention": {"_count": 1}, "his": {"_count": 1}}, "Quaffles": {"_count": 1, "at": {"_count": 1}}, "fountain": {"_count": 1, "": {"_count": 1}}, "pegs": {"_count": 1, "should": {"_count": 1}}, "kitchen": {"_count": 1, "": {"_count": 1}}, "saucepans": {"_count": 1, "": {"_count": 1}}, "roasting": {"_count": 1, "what": {"_count": 1}}, "red": {"_count": 5, "was": {"_count": 1}, "lanterns": {"_count": 1}, "she": {"_count": 1}, "light": {"_count": 1}, "and": {"_count": 1}}, "scowling": {"_count": 1, "at": {"_count": 1}}, "promptly": {"_count": 1, "dropped": {"_count": 1}}, "Ministry": {"_count": 2, "members": {"_count": 1}, "together": {"_count": 1}}, "Croaker": {"_count": 1, "": {"_count": 1}}, "sausages": {"_count": 2, "when": {"_count": 2}}, "black": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "eyes": {"_count": 1}}, "rosy": {"_count": 1, "complexion": {"_count": 1}}, "little": {"_count": 3, "Agatha": {"_count": 1}, "gold": {"_count": 1}, "though": {"_count": 1}}, "Gobbledegook": {"_count": 1, "and": {"_count": 1}}, "Troll": {"_count": 1, "": {"_count": 1}}, "grunt": {"_count": 1, "": {"_count": 1}}, "stoked": {"_count": 1, "the": {"_count": 1}}, "tie": {"_count": 3, "": {"_count": 1}, "up": {"_count": 1}, "reeking": {"_count": 1}}, "collectible": {"_count": 1, "figures": {"_count": 1}}, "dials": {"_count": 1, "": {"_count": 1}}, "laughter": {"_count": 5, "snatches": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "echoing": {"_count": 1}}, "right": {"_count": 16, "": {"_count": 4}, "to": {"_count": 2}, "up": {"_count": 1}, "along": {"_count": 1}, "the": {"_count": 1}, "eyes": {"_count": 1}, "through": {"_count": 1}, "for": {"_count": 1}, "arm": {"_count": 1}, "as": {"_count": 1}, "came": {"_count": 1}, "Harry": {"_count": 1}}, "situated": {"_count": 1, "exactly": {"_count": 1}}, "shape": {"_count": 3, "of": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "settle": {"_count": 1, "down": {"_count": 1}}, "thereafter": {"_count": 2, "remained": {"_count": 1}, "he": {"_count": 1}}, "introduced": {"_count": 1, "him": {"_count": 1}}, "excitedly": {"_count": 2, "pointing": {"_count": 1}, "at": {"_count": 1}}, "Draco": {"_count": 5, "Malfoy": {"_count": 4}, "of": {"_count": 1}}, "whiteblond": {"_count": 1, "hair": {"_count": 1}}, "slim": {"_count": 1, "she": {"_count": 1}}, "Injuries": {"_count": 9, "Arthur": {"_count": 1}, "decline": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 1}, "If": {"_count": 1}, "are": {"_count": 1}, "the": {"_count": 1}}, "twentysecond": {"_count": 1, "Quidditch": {"_count": 1}}, "polished": {"_count": 2, "them": {"_count": 1}, "by": {"_count": 1}}, "blissfully": {"_count": 1, "blank": {"_count": 1}}, "aahed": {"_count": 1, "as": {"_count": 1}}, "merged": {"_count": 1, "they": {"_count": 1}}, "seats": {"_count": 1, "": {"_count": 1}}, "rummaging": {"_count": 1, "around": {"_count": 1}}, "sallowskinned": {"_count": 1, "with": {"_count": 1}}, "slowed": {"_count": 1, "the": {"_count": 1}}, "Moran": {"_count": 1, "bearing": {"_count": 1}}, "Levski": {"_count": 1, "soaring": {"_count": 1}}, "formed": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "applause": {"_count": 6, "from": {"_count": 3}, "without": {"_count": 1}, "sent": {"_count": 1}, "": {"_count": 1}}, "Vulchanov": {"_count": 4, "the": {"_count": 1}, "landed": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}}, "Bulgaria": {"_count": 1, "was": {"_count": 1}}, "Lynch": {"_count": 2, "plummeted": {"_count": 1}, "dived": {"_count": 1}}, "spiraled": {"_count": 1, "off": {"_count": 1}}, "playbyplay": {"_count": 1, "buttons": {"_count": 1}}, "weightless": {"_count": 1, "": {"_count": 1}}, "focused": {"_count": 1, "them": {"_count": 1}}, "thirty": {"_count": 3, "points": {"_count": 1}, "seven": {"_count": 1}, "": {"_count": 1}}, "Mostafas": {"_count": 1, "long": {"_count": 1}}, "Troy": {"_count": 1, "takes": {"_count": 1}}, "erupted": {"_count": 2, "into": {"_count": 1}, "onto": {"_count": 1}}, "sixty": {"_count": 1, "points": {"_count": 1}}, "veela": {"_count": 1, "to": {"_count": 1}}, "refused": {"_count": 3, "to": {"_count": 3}}, "forlorn": {"_count": 1, "": {"_count": 1}}, "Bagman": {"_count": 5, "called": {"_count": 1}, "hurried": {"_count": 1}, "were": {"_count": 1}, "perhaps": {"_count": 1}, "was": {"_count": 1}}, "distinctly": {"_count": 2, "roundshouldered": {"_count": 1}, "shabby": {"_count": 1}}, "Connolly": {"_count": 1, "the": {"_count": 1}}, "Quigley": {"_count": 1, "lifted": {"_count": 1}}, "leprechauns": {"_count": 1, "kept": {"_count": 1}}, "given": {"_count": 4, "the": {"_count": 1}, "away": {"_count": 1}, "it": {"_count": 1}, "back": {"_count": 1}}, "clambered": {"_count": 3, "into": {"_count": 1}, "out": {"_count": 1}, "all": {"_count": 1}}, "picturing": {"_count": 1, "again": {"_count": 1}}, "imagined": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "noises": {"_count": 1, "like": {"_count": 1}}, "drunken": {"_count": 1, "yells": {"_count": 1}}, "children": {"_count": 7, "": {"_count": 2}, "and": {"_count": 1}, "as": {"_count": 1}, "with": {"_count": 1}, "all": {"_count": 1}, "your": {"_count": 1}}, "hooted": {"_count": 2, "with": {"_count": 1}, "angrily": {"_count": 1}}, "thither": {"_count": 3, "by": {"_count": 1}, "as": {"_count": 1}, "peering": {"_count": 1}}, "finding": {"_count": 4, "himself": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "labored": {"_count": 1, "to": {"_count": 1}}, "squeaking": {"_count": 1, "as": {"_count": 1}}, "unjust": {"_count": 1, "systems": {"_count": 1}}, "who": {"_count": 28, "seemed": {"_count": 1}, "was": {"_count": 6}, "isnt": {"_count": 1}, "has": {"_count": 2}, "should": {"_count": 1}, "had": {"_count": 2}, "knew": {"_count": 1}, "alone": {"_count": 1}, "were": {"_count": 1}, "is": {"_count": 1}, "cares": {"_count": 1}, "can": {"_count": 1}, "better": {"_count": 1}, "else": {"_count": 1}, "have": {"_count": 1}, "dotes": {"_count": 1}, "died": {"_count": 1}, "amongst": {"_count": 1}, "knows": {"_count": 1}, "accepted": {"_count": 1}, "deserved": {"_count": 1}}, "rosyfaced": {"_count": 1, "there": {"_count": 1}}, "strained": {"_count": 3, "": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "roundshouldered": {"_count": 1, "much": {"_count": 1}}, "terrified": {"_count": 6, "": {"_count": 2}, "voice": {"_count": 2}, "in": {"_count": 1}, "and": {"_count": 1}}, "Ludo": {"_count": 6, "Bagman": {"_count": 6}}, "disorientated": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "bulbous": {"_count": 1, "nose": {"_count": 1}}, "myself": {"_count": 3, "": {"_count": 2}, "singlehanded": {"_count": 1}}, "detest": {"_count": 1, "the": {"_count": 1}}, "pick": {"_count": 1, "it": {"_count": 1}}, "onto": {"_count": 10, "Mr": {"_count": 1}, "the": {"_count": 9}}, "rotten": {"_count": 1, "that": {"_count": 1}}, "torture": {"_count": 3, "people": {"_count": 1}, "an": {"_count": 1}, "how": {"_count": 1}}, "whiskey": {"_count": 1, "": {"_count": 1}}, "dump": {"_count": 1, "my": {"_count": 1}}, "everybody": {"_count": 8, "from": {"_count": 1}, "sat": {"_count": 1}, "fell": {"_count": 1}, "moved": {"_count": 1}, "else": {"_count": 2}, "was": {"_count": 1}, "looked": {"_count": 1}}, "work": {"_count": 4, "were": {"_count": 1}, "out": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}}, "toyed": {"_count": 1, "unenthusiastically": {"_count": 1}}, "weeks": {"_count": 5, "said": {"_count": 1}, "": {"_count": 1}, "oh": {"_count": 1}, "we": {"_count": 1}, "Harry": {"_count": 1}}, "zooming": {"_count": 1, "around": {"_count": 1}}, "refills": {"_count": 1, "for": {"_count": 1}}, "essence": {"_count": 1, "of": {"_count": 1}}, "matching": {"_count": 2, "lace": {"_count": 1}, "nightcap": {"_count": 1}}, "preparing": {"_count": 5, "to": {"_count": 4}, "a": {"_count": 1}}, "fired": {"_count": 1, "rubbish": {"_count": 1}}, "MadEyes": {"_count": 1, "supposed": {"_count": 1}}, "transferred": {"_count": 1, "it": {"_count": 1}}, "Pigwidgeon": {"_count": 7, "was": {"_count": 1}, "who": {"_count": 2}, "hooted": {"_count": 1}, "": {"_count": 1}, "twittered": {"_count": 1}, "at": {"_count": 1}}, "parents": {"_count": 2, "on": {"_count": 1}, "centaurs": {"_count": 1}}, "Durmstrang": {"_count": 10, "doesnt": {"_count": 1}, "": {"_count": 1}, "will": {"_count": 3}, "differed": {"_count": 1}, "even": {"_count": 1}, "to": {"_count": 1}, "champions": {"_count": 1}, "seemed": {"_count": 1}}, "Beauxbatons": {"_count": 2, "like": {"_count": 1}, "students": {"_count": 1}}, "bring": {"_count": 9, "a": {"_count": 1}, "him": {"_count": 3}, "up": {"_count": 1}, "it": {"_count": 1}, "me": {"_count": 1}, "some": {"_count": 1}, "them": {"_count": 1}}, "brother": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "squashing": {"_count": 2, "it": {"_count": 2}}, "eyes": {"_count": 1, "narrowed": {"_count": 1}}, "shimmering": {"_count": 2, "behind": {"_count": 1}, "on": {"_count": 1}}, "exploded": {"_count": 1, "": {"_count": 1}}, "semitransparent": {"_count": 1, "Nick": {"_count": 1}}, "insuring": {"_count": 1, "that": {"_count": 1}}, "emptying": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "sisters": {"_count": 4, "usually": {"_count": 1}, "": {"_count": 1}, "are": {"_count": 1}, "will": {"_count": 1}}, "theyre": {"_count": 12, "identical": {"_count": 1}, "happy": {"_count": 1}, "talking": {"_count": 1}, "thrilled": {"_count": 1}, "definitely": {"_count": 1}, "at": {"_count": 1}, "all": {"_count": 4}, "coming": {"_count": 1}, "not": {"_count": 1}}, "moons": {"_count": 1, "": {"_count": 1}}, "purple": {"_count": 4, "clouds": {"_count": 1}, "from": {"_count": 1}, "all": {"_count": 1}, "there": {"_count": 1}}, "mouthed": {"_count": 3, "I": {"_count": 1}, "wordlessly": {"_count": 1}, "Good": {"_count": 1}}, "girls": {"_count": 3, "with": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 1}}, "mayhem": {"_count": 1, "": {"_count": 1}}, "pensions": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "muscle": {"_count": 1, "that": {"_count": 1}}, "securing": {"_count": 1, "it": {"_count": 1}}, "pounding": {"_count": 2, "rain": {"_count": 1}, "against": {"_count": 1}}, "EverBashing": {"_count": 1, "Boomerangs": {"_count": 1}}, "continuing": {"_count": 6, "throughout": {"_count": 1}, "to": {"_count": 4}, "in": {"_count": 1}}, "energy": {"_count": 4, "but": {"_count": 1}, "persecuting": {"_count": 1}, "shouting": {"_count": 1}, "into": {"_count": 1}}, "beady": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "replied": {"_count": 2, "in": {"_count": 1}, "I": {"_count": 1}}, "gestured": {"_count": 2, "the": {"_count": 1}, "wordlessly": {"_count": 1}}, "applauded": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "Magical": {"_count": 1, "Games": {"_count": 1}}, "riches": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "seventh": {"_count": 6, "year": {"_count": 1}, "people": {"_count": 1}, "years": {"_count": 4}}, "remaining": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "rested": {"_count": 1, "as": {"_count": 1}}, "banging": {"_count": 4, "as": {"_count": 1}, "all": {"_count": 1}, "into": {"_count": 1}, "coming": {"_count": 1}}, "swarmed": {"_count": 1, "toward": {"_count": 1}}, "clanked": {"_count": 1, "laughing": {"_count": 1}}, "disappearing": {"_count": 1, "through": {"_count": 1}}, "screaming": {"_count": 9, "": {"_count": 1}, "they": {"_count": 1}, "as": {"_count": 1}, "several": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 1}}, "bluffing": {"_count": 1, "their": {"_count": 1}}, "Care": {"_count": 2, "of": {"_count": 2}}, "deposited": {"_count": 4, "a": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}}, "straining": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "slimy": {"_count": 1, "looking": {"_count": 1}}, "bite": {"_count": 1, "all": {"_count": 1}}, "potatoes": {"_count": 1, "": {"_count": 1}}, "departed": {"_count": 10, "at": {"_count": 1}, "": {"_count": 6}, "Crabbe": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}}, "shawls": {"_count": 3, "": {"_count": 1}, "around": {"_count": 2}}, "poufs": {"_count": 1, "that": {"_count": 1}}, "bangles": {"_count": 2, "glittered": {"_count": 1}, "clinking": {"_count": 1}}, "seated": {"_count": 2, "herself": {"_count": 2}}, "dullwitted": {"_count": 1, "and": {"_count": 1}}, "calculation": {"_count": 1, "of": {"_count": 1}}, "speaking": {"_count": 5, "very": {"_count": 1}, "into": {"_count": 1}, "as": {"_count": 2}, "to": {"_count": 1}}, "potentially": {"_count": 2, "embarrassing": {"_count": 1}, "lethal": {"_count": 1}}, "gravelly": {"_count": 2, "": {"_count": 2}}, "humiliation": {"_count": 2, "looked": {"_count": 1}, "said": {"_count": 1}}, "shown": {"_count": 2, "it": {"_count": 1}, "him": {"_count": 1}}, "queued": {"_count": 1, "up": {"_count": 1}}, "frightening": {"_count": 1, "as": {"_count": 1}}, "scarred": {"_count": 1, "face": {"_count": 1}}, "werewolves": {"_count": 2, "is": {"_count": 1}, "and": {"_count": 1}}, "contorted": {"_count": 1, "than": {"_count": 1}}, "forms": {"_count": 1, "": {"_count": 1}}, "polite": {"_count": 1, "to": {"_count": 1}}, "landing": {"_count": 2, "on": {"_count": 1}, "loudly": {"_count": 1}}, "jerk": {"_count": 1, "more": {"_count": 1}}, "unmarked": {"_count": 1, "too": {"_count": 1}}, "run": {"_count": 6, "": {"_count": 3}, "the": {"_count": 1}, "off": {"_count": 1}, "leaving": {"_count": 1}}, "drown": {"_count": 1, "powerless": {"_count": 1}}, "point": {"_count": 3, "them": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 1}}, "Cruciatus": {"_count": 1, "are": {"_count": 1}}, "nor": {"_count": 4, "it": {"_count": 1}, "I": {"_count": 1}, "as": {"_count": 1}, "was": {"_count": 1}}, "gentler": {"_count": 1, "growl": {"_count": 1}}, "Moody": {"_count": 11, "turn": {"_count": 1}, "I": {"_count": 1}, "get": {"_count": 1}, "kept": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "growled": {"_count": 1}, "had": {"_count": 1}, "knew": {"_count": 1}}, "Moodys": {"_count": 2, "been": {"_count": 1}, "voice": {"_count": 1}}, "asks": {"_count": 3, "questions": {"_count": 1}, "any": {"_count": 1}, "if": {"_count": 1}}, "charts": {"_count": 1, "to": {"_count": 1}}, "Jupiter": {"_count": 1, "": {"_count": 1}}, "lobbing": {"_count": 1, "it": {"_count": 1}}, "Campaign": {"_count": 1, "for": {"_count": 1}}, "acting": {"_count": 1, "as": {"_count": 1}}, "drafty": {"_count": 1, "because": {"_count": 1}}, "voles": {"_count": 1, "": {"_count": 1}}, "demanding": {"_count": 3, "than": {"_count": 1}, "that": {"_count": 2}}, "fixing": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "worry": {"_count": 2, "in": {"_count": 1}, "about": {"_count": 1}}, "assemble": {"_count": 1, "in": {"_count": 1}}, "wincing": {"_count": 2, "as": {"_count": 1}, "again": {"_count": 1}}, "Argus": {"_count": 1, "Filch": {"_count": 1}}, "green": {"_count": 8, "with": {"_count": 1}, "collided": {"_count": 1}, "he": {"_count": 1}, "wherever": {"_count": 1}, "light": {"_count": 2}, "of": {"_count": 1}, "jets": {"_count": 1}}, "snake": {"_count": 2, "united": {"_count": 1}, "branded": {"_count": 1}}, "conversing": {"_count": 2, "in": {"_count": 2}}, "Selective": {"_count": 1, "History": {"_count": 1}}, "applied": {"_count": 2, "himself": {"_count": 1}, "the": {"_count": 1}}, "enslaved": {"_count": 1, "": {"_count": 1}}, "brainwashed": {"_count": 1, "": {"_count": 1}}, "rushed": {"_count": 2, "back": {"_count": 1}, "him": {"_count": 1}}, "lined": {"_count": 3, "up": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "greet": {"_count": 1, "him": {"_count": 1}}, "sucking": {"_count": 1, "sound": {"_count": 1}}, "shrewd": {"_count": 1, "": {"_count": 1}}, "Madame": {"_count": 12, "Maxime": {"_count": 9}, "Delacour": {"_count": 2}, "Delacours": {"_count": 1}}, "trust": {"_count": 6, "that": {"_count": 1}, "each": {"_count": 1}, "": {"_count": 1}, "How": {"_count": 1}, "to": {"_count": 1}, "me": {"_count": 1}}, "enjoyable": {"_count": 1, "": {"_count": 1}}, "engage": {"_count": 1, "him": {"_count": 1}}, "severe": {"_count": 2, "parting": {"_count": 1}, "haircut": {"_count": 1}}, "school": {"_count": 2, "clearly": {"_count": 1}, "equipment": {"_count": 1}}, "drop": {"_count": 1, "it": {"_count": 1}}, "Karkaroff": {"_count": 6, "had": {"_count": 1}, "would": {"_count": 1}, "both": {"_count": 1}, "was": {"_count": 1}, "came": {"_count": 1}, "slid": {"_count": 1}}, "fear": {"_count": 12, "came": {"_count": 1}, "these": {"_count": 1}, "": {"_count": 5}, "swelled": {"_count": 1}, "bubbled": {"_count": 1}, "amongst": {"_count": 1}, "had": {"_count": 1}, "burned": {"_count": 1}}, "organized": {"_count": 1, "them": {"_count": 1}}, "emitted": {"_count": 2, "sparks": {"_count": 1}, "a": {"_count": 1}}, "Fangs": {"_count": 2, "booming": {"_count": 2}}, "dead": {"_count": 3, "birds": {"_count": 1}, "looking": {"_count": 1}, "was": {"_count": 1}}, "arguing": {"_count": 1, "with": {"_count": 1}}, "expectant": {"_count": 1, "as": {"_count": 1}}, "slouch": {"_count": 1, "up": {"_count": 1}}, "chatting": {"_count": 2, "died": {"_count": 1}, "merrily": {"_count": 1}}, "borne": {"_count": 1, "upon": {"_count": 1}}, "stumbled": {"_count": 4, "slightly": {"_count": 1}, "": {"_count": 1}, "toward": {"_count": 1}, "over": {"_count": 1}}, "Fleur": {"_count": 30, "Delacour": {"_count": 1}, "were": {"_count": 4}, "": {"_count": 4}, "had": {"_count": 2}, "waving": {"_count": 1}, "and": {"_count": 4}, "covert": {"_count": 1}, "lined": {"_count": 1}, "slid": {"_count": 1}, "together": {"_count": 1}, "Ah": {"_count": 1}, "would": {"_count": 1}, "came": {"_count": 1}, "our": {"_count": 1}, "took": {"_count": 1}, "werent": {"_count": 1}, "Dean": {"_count": 1}, "both": {"_count": 1}, "was": {"_count": 1}, "knew": {"_count": 1}}, "brooding": {"_count": 1, "was": {"_count": 1}}, "addressing": {"_count": 1, "the": {"_count": 1}}, "considerable": {"_count": 2, "height": {"_count": 1}, "volume": {"_count": 1}}, "nasty": {"_count": 1, "laugh": {"_count": 1}}, "negotiations": {"_count": 1, "and": {"_count": 1}}, "compromises": {"_count": 1, "I": {"_count": 1}}, "smashed": {"_count": 10, "it": {"_count": 2}, "": {"_count": 3}, "on": {"_count": 3}, "the": {"_count": 1}, "open": {"_count": 1}}, "Viktor": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "time": {"_count": 3, "consuming": {"_count": 1}, "of": {"_count": 1}, "away": {"_count": 1}}, "noise": {"_count": 2, "": {"_count": 1}, "filled": {"_count": 1}}, "powerless": {"_count": 1, "": {"_count": 1}}, "whistling": {"_count": 1, "": {"_count": 1}}, "peanuts": {"_count": 1, "into": {"_count": 1}}, "climb": {"_count": 1, "up": {"_count": 1}}, "facing": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "brushing": {"_count": 1, "straw": {"_count": 1}}, "smacked": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "colorless": {"_count": 1, "they": {"_count": 1}}, "elongated": {"_count": 1, "crabs": {"_count": 1}}, "persuade": {"_count": 4, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}}, "lunascopes": {"_count": 1, "": {"_count": 1}}, "days": {"_count": 2, "seemed": {"_count": 1}, "and": {"_count": 1}}, "ricocheted": {"_count": 2, "off": {"_count": 2}}, "Malfoys": {"_count": 2, "hit": {"_count": 1}, "derisive": {"_count": 1}}, "sprinting": {"_count": 1, "to": {"_count": 1}}, "bounded": {"_count": 2, "forward": {"_count": 2}}, "curiously": {"_count": 1, "rigid": {"_count": 1}}, "cozy": {"_count": 1, "": {"_count": 1}}, "closing": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "its": {"_count": 1}}, "magicked": {"_count": 2, "into": {"_count": 2}}, "Ritas": {"_count": 1, "clawed": {"_count": 1}}, "place": {"_count": 1, "it": {"_count": 1}}, "talking": {"_count": 10, "to": {"_count": 3}, "with": {"_count": 1}, "calmly": {"_count": 1}, "about": {"_count": 1}, "much": {"_count": 1}, "youve": {"_count": 1}, "and": {"_count": 1}, "fast": {"_count": 1}}, "containing": {"_count": 1, "": {"_count": 1}}, "duckfooted": {"_count": 1, "toward": {"_count": 1}}, "contained": {"_count": 1, "a": {"_count": 1}}, "cleared": {"_count": 2, "his": {"_count": 2}}, "champions": {"_count": 1, "what": {"_count": 1}}, "unrolled": {"_count": 3, "it": {"_count": 2}, "his": {"_count": 1}}, "Longbottom": {"_count": 2, "have": {"_count": 1}, "Potter": {"_count": 1}}, "stalking": {"_count": 2, "past": {"_count": 1}, "off": {"_count": 1}}, "apologized": {"_count": 1, "for": {"_count": 1}}, "appointed": {"_count": 1, "them": {"_count": 1}}, "treasurer": {"_count": 1, "": {"_count": 1}}, "relaxed": {"_count": 2, "": {"_count": 1}, "Tonks": {"_count": 1}}, "unruffled": {"_count": 1, "": {"_count": 1}}, "striding": {"_count": 4, "off": {"_count": 1}, "over": {"_count": 1}, "about": {"_count": 2}}, "men": {"_count": 1, "darting": {"_count": 1}}, "snorting": {"_count": 1, "torrents": {"_count": 1}}, "fasten": {"_count": 1, "them": {"_count": 1}}, "sunken": {"_count": 2, "surrounded": {"_count": 1}, "into": {"_count": 1}}, "reading": {"_count": 5, "between": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 2}}, "too": {"_count": 2, "powerfully": {"_count": 1}, "dangerous": {"_count": 1}}, "Vexed": {"_count": 1, "": {"_count": 1}}, "Krum": {"_count": 17, "": {"_count": 5}, "will": {"_count": 1}, "hadnt": {"_count": 2}, "were": {"_count": 2}, "slouched": {"_count": 1}, "all": {"_count": 1}, "who": {"_count": 1}, "left": {"_count": 1}, "started": {"_count": 1}, "looked": {"_count": 1}, "reckons": {"_count": 1}}, "lies": {"_count": 4, "": {"_count": 1}, "thats": {"_count": 2}, "courage": {"_count": 1}}, "Maxime": {"_count": 1, "wont": {"_count": 1}}, "clammy": {"_count": 3, "": {"_count": 2}, "looking": {"_count": 1}}, "bared": {"_count": 1, "its": {"_count": 1}}, "captured": {"_count": 1, "the": {"_count": 1}}, "hearing": {"_count": 1, "the": {"_count": 1}}, "absolutely": {"_count": 1, "upon": {"_count": 1}}, "stopping": {"_count": 1, "dead": {"_count": 1}}, "groans": {"_count": 1, "from": {"_count": 1}}, "unfurling": {"_count": 1, "her": {"_count": 1}}, "keeping": {"_count": 2, "those": {"_count": 1}, "one": {"_count": 1}}, "applauding": {"_count": 1, "as": {"_count": 1}}, "reveal": {"_count": 1, "that": {"_count": 1}}, "easy": {"_count": 1, "does": {"_count": 1}}, "stung": {"_count": 1, "but": {"_count": 1}}, "squashed": {"_count": 2, "half": {"_count": 1}, "in": {"_count": 1}}, "welcoming": {"_count": 1, "": {"_count": 1}}, "compared": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "enable": {"_count": 1, "you": {"_count": 1}}, "frowned": {"_count": 4, "at": {"_count": 3}, "": {"_count": 1}}, "dodged": {"_count": 2, "the": {"_count": 1}, "out": {"_count": 1}}, "yells": {"_count": 6, "again": {"_count": 1}, "reverberating": {"_count": 1}, "echoed": {"_count": 1}, "surrounding": {"_count": 1}, "HARRY": {"_count": 1}, "of": {"_count": 1}}, "flagons": {"_count": 2, "of": {"_count": 2}}, "butterbeer": {"_count": 1, "on": {"_count": 1}}, "sparks": {"_count": 1, "and": {"_count": 1}}, "weighing": {"_count": 1, "it": {"_count": 1}}, "prised": {"_count": 1, "it": {"_count": 1}}, "completely": {"_count": 5, "empty": {"_count": 1}, "as": {"_count": 2}, "herself": {"_count": 1}, "your": {"_count": 1}}, "screechy": {"_count": 1, "wailing": {"_count": 1}}, "spat": {"_count": 3, "it": {"_count": 1}, "out": {"_count": 1}, "a": {"_count": 1}}, "He": {"_count": 1, "stopped": {"_count": 1}}, "stir": {"_count": 2, "them": {"_count": 1}, "my": {"_count": 1}}, "salaries": {"_count": 1, "": {"_count": 1}}, "sleet": {"_count": 3, "to": {"_count": 1}, "pounded": {"_count": 1}, "": {"_count": 1}}, "needed": {"_count": 1, "their": {"_count": 1}}, "barricaded": {"_count": 1, "themselves": {"_count": 1}}, "cuts": {"_count": 2, "finally": {"_count": 1}, "from": {"_count": 1}}, "flattened": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "tightened": {"_count": 1, "it": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "predictions": {"_count": 1, "but": {"_count": 1}}, "decorated": {"_count": 2, "with": {"_count": 2}}, "tickled": {"_count": 1, "the": {"_count": 1}}, "odd": {"_count": 2, "socks": {"_count": 1}, "smells": {"_count": 1}}, "tricked": {"_count": 1, "Mr": {"_count": 1}}, "Winky": {"_count": 5, "jobs": {"_count": 1}, "find": {"_count": 1}, "came": {"_count": 1}, "being": {"_count": 1}, "up": {"_count": 1}}, "curtsying": {"_count": 3, "as": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "blouse": {"_count": 1, "with": {"_count": 1}}, "splashed": {"_count": 2, "down": {"_count": 1}, "out": {"_count": 1}}, "embarrassing": {"_count": 1, "": {"_count": 1}}, "finds": {"_count": 1, "out": {"_count": 1}}, "happy": {"_count": 6, "tears": {"_count": 1}, "": {"_count": 4}, "relationship": {"_count": 1}}, "fistbeating": {"_count": 1, "": {"_count": 1}}, "weekends": {"_count": 1, "off": {"_count": 1}}, "screeched": {"_count": 1, "You": {"_count": 1}}, "bawled": {"_count": 1, "": {"_count": 1}}, "goggling": {"_count": 2, "at": {"_count": 2}}, "finished": {"_count": 3, "their": {"_count": 1}, "Because": {"_count": 1}, "by": {"_count": 1}}, "pies": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "shrivel": {"_count": 1, "": {"_count": 1}}, "whispering": {"_count": 4, "in": {"_count": 1}, "believed": {"_count": 1}, "behind": {"_count": 1}, "Hello": {"_count": 1}}, "fewer": {"_count": 1, "laughs": {"_count": 1}}, "vicious": {"_count": 1, "goblin": {"_count": 1}}, "hadnt": {"_count": 1, "opened": {"_count": 1}}, "consequently": {"_count": 2, "forgot": {"_count": 1}, "he": {"_count": 1}}, "popular": {"_count": 1, "and": {"_count": 1}}, "savory": {"_count": 1, "puddings": {"_count": 1}}, "normalsized": {"_count": 1, "": {"_count": 1}}, "foulest": {"_count": 1, "mustard": {"_count": 1}}, "undo": {"_count": 2, "any": {"_count": 1}, "enough": {"_count": 1}}, "Fizzing": {"_count": 1, "Whizbees": {"_count": 1}}, "paying": {"_count": 1, "for": {"_count": 1}}, "trooped": {"_count": 1, "back": {"_count": 1}}, "cuffs": {"_count": 1, "": {"_count": 1}}, "fluttering": {"_count": 1, "over": {"_count": 1}}, "Padma": {"_count": 6, "and": {"_count": 1}, "as": {"_count": 1}, "were": {"_count": 2}, "Patil": {"_count": 2}}, "Roger": {"_count": 6, "Davies": {"_count": 4}, "fall": {"_count": 1}, "Daviess": {"_count": 1}}, "eef": {"_count": 1, "a": {"_count": 1}}, "torn": {"_count": 2, "": {"_count": 2}}, "sniggering": {"_count": 2, "and": {"_count": 1}, "heartily": {"_count": 1}}, "satisfaction": {"_count": 1, "on": {"_count": 1}}, "spotting": {"_count": 1, "Harry": {"_count": 1}}, "twinkled": {"_count": 1, "as": {"_count": 1}}, "hushed": {"_count": 1, "as": {"_count": 1}}, "clearer": {"_count": 3, "for": {"_count": 1}, "than": {"_count": 1}, "in": {"_count": 1}}, "Davies": {"_count": 1, "looked": {"_count": 1}}, "hummed": {"_count": 1, "loudly": {"_count": 1}}, "Cedrics": {"_count": 3, "idea": {"_count": 1}, "faces": {"_count": 1}, "body": {"_count": 1}}, "toward": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "catching": {"_count": 2, "Harry": {"_count": 2}}, "approach": {"_count": 1, "with": {"_count": 1}}, "kindly": {"_count": 1, "when": {"_count": 1}}, "ferociouslooking": {"_count": 2, "man": {"_count": 1}, "female": {"_count": 1}}, "fire": {"_count": 1, "crabs": {"_count": 1}}, "brutal": {"_count": 1, "the": {"_count": 1}}, "daddies": {"_count": 1, "are": {"_count": 1}}, "banged": {"_count": 3, "on": {"_count": 1}, "lower": {"_count": 1}, "his": {"_count": 1}}, "suggested": {"_count": 1, "a": {"_count": 1}}, "Bertha": {"_count": 2, "Jorkins": {"_count": 2}}, "accepting": {"_count": 1, "his": {"_count": 1}}, "exited": {"_count": 1, "after": {"_count": 1}}, "anyone": {"_count": 5, "will": {"_count": 1}, "you": {"_count": 1}, "whos": {"_count": 2}, "who": {"_count": 1}}, "twiddling": {"_count": 2, "it": {"_count": 1}, "their": {"_count": 1}}, "havent": {"_count": 1, "any": {"_count": 1}}, "refuse": {"_count": 1, "to": {"_count": 1}}, "smooth": {"_count": 2, "he": {"_count": 1}, "as": {"_count": 1}}, "outofbounds": {"_count": 1, "by": {"_count": 1}}, "secret": {"_count": 2, "passageways": {"_count": 1}, "hie": {"_count": 1}}, "bubbles": {"_count": 1, "which": {"_count": 1}}, "dressing": {"_count": 2, "gown": {"_count": 2}}, "treading": {"_count": 1, "water": {"_count": 1}}, "foamy": {"_count": 1, "water": {"_count": 1}}, "reverberating": {"_count": 1, "off": {"_count": 1}}, "ages": {"_count": 1, "": {"_count": 1}}, "merpeople": {"_count": 2, "would": {"_count": 1}, "and": {"_count": 1}}, "reminded": {"_count": 1, "her": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloak": {"_count": 1}}, "stolen": {"_count": 1, "a": {"_count": 1}}, "wailing": {"_count": 2, "Yes": {"_count": 1}, "overhead": {"_count": 1}}, "pocketing": {"_count": 1, "it": {"_count": 1}}, "unfolding": {"_count": 1, "it": {"_count": 1}}, "incidentally": {"_count": 1, "": {"_count": 1}}, "Crouch": {"_count": 4, "and": {"_count": 1}, "was": {"_count": 1}, "so": {"_count": 1}, "is": {"_count": 1}}, "whole": {"_count": 6, "weekends": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 3}, "men": {"_count": 1}}, "icy": {"_count": 2, "depths": {"_count": 1}, "drafts": {"_count": 1}}, "ponds": {"_count": 1, "that": {"_count": 1}}, "Forgotten": {"_count": 1, "Bewitchments": {"_count": 1}}, "Charmes": {"_count": 1, "with": {"_count": 1}}, "Their": {"_count": 3, "Solutions": {"_count": 1}, "Derivation": {"_count": 1}, "CounterActions": {"_count": 1}}, "What": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "charms": {"_count": 5, "books": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "were": {"_count": 1}, "a": {"_count": 1}}, "struggling": {"_count": 1, "not": {"_count": 1}}, "heading": {"_count": 2, "through": {"_count": 1}, "toward": {"_count": 1}}, "Dennis": {"_count": 4, "Creevey": {"_count": 2}, "": {"_count": 1}, "Bishop": {"_count": 1}}, "accidentally": {"_count": 1, "splattering": {"_count": 1}}, "socks": {"_count": 4, "pulled": {"_count": 1}, "hidden": {"_count": 1}, "off": {"_count": 1}, "which": {"_count": 1}}, "waded": {"_count": 1, "out": {"_count": 1}}, "rubbery": {"_count": 1, "like": {"_count": 1}}, "jeering": {"_count": 4, "from": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "of": {"_count": 1}}, "nose": {"_count": 2, "": {"_count": 2}}, "ghostly": {"_count": 1, "under": {"_count": 1}}, "fumbled": {"_count": 1, "for": {"_count": 1}}, "swam": {"_count": 2, "as": {"_count": 1}, "gracefully": {"_count": 1}}, "gills": {"_count": 1, "talking": {"_count": 1}}, "fine": {"_count": 1, "streams": {"_count": 1}}, "Krumre": {"_count": 1, "coming": {"_count": 1}}, "according": {"_count": 3, "to": {"_count": 3}}, "biting": {"_count": 1, "at": {"_count": 1}}, "Fleurs": {"_count": 18, "sister": {"_count": 2}, "wedding": {"_count": 5}, "appearing": {"_count": 1}, "father": {"_count": 1}, "new": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 4}, "room": {"_count": 1}, "bed": {"_count": 1}, "cottage": {"_count": 1}}, "air": {"_count": 1, "were": {"_count": 1}}, "panting": {"_count": 3, "pulled": {"_count": 1}, "somewhere": {"_count": 1}, "in": {"_count": 1}}, "confused": {"_count": 7, "but": {"_count": 1}, "him": {"_count": 1}, "by": {"_count": 2}, "while": {"_count": 1}, "Voldemort": {"_count": 1}, "": {"_count": 1}}, "annoyed": {"_count": 3, "": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}}, "nail": {"_count": 1, "to": {"_count": 1}}, "relief": {"_count": 4, "that": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "arms": {"_count": 4, "and": {"_count": 2}, "": {"_count": 2}}, "merits": {"_count": 1, "full": {"_count": 1}}, "hostages": {"_count": 1, "back": {"_count": 1}}, "faces": {"_count": 2, "every": {"_count": 1}, "": {"_count": 1}}, "hero": {"_count": 1, "of": {"_count": 1}}, "insists": {"_count": 1, "that": {"_count": 1}}, "vivacious": {"_count": 1, "fourthyear": {"_count": 1}}, "snorted": {"_count": 1, "with": {"_count": 1}}, "determinedly": {"_count": 1, "avoided": {"_count": 1}}, "curse": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "mop": {"_count": 1, "up": {"_count": 1}}, "ingredients": {"_count": 1, "back": {"_count": 1}}, "rocks": {"_count": 1, "": {"_count": 1}}, "stony": {"_count": 1, "path": {"_count": 1}}, "allowed": {"_count": 5, "Hermione": {"_count": 1}, "Voldemort": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "stroke": {"_count": 1, "his": {"_count": 1}}, "matted": {"_count": 2, "once": {"_count": 1}, "hair": {"_count": 1}}, "bread": {"_count": 2, "": {"_count": 2}}, "tearing": {"_count": 2, "off": {"_count": 1}, "it": {"_count": 1}}, "powerhungry": {"_count": 1, "": {"_count": 1}}, "authorized": {"_count": 1, "the": {"_count": 1}}, "cruel": {"_count": 1, "as": {"_count": 1}}, "return": {"_count": 2, "him": {"_count": 1}, "to": {"_count": 1}}, "plenty": {"_count": 1, "stop": {"_count": 1}}, "drained": {"_count": 4, "it": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}}, "Wilkes": {"_count": 1, "they": {"_count": 1}}, "cunning": {"_count": 2, "enough": {"_count": 1}, "and": {"_count": 1}}, "rubbed": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "flask": {"_count": 1, "and": {"_count": 1}}, "bustling": {"_count": 1, "around": {"_count": 1}}, "unwashed": {"_count": 1, "": {"_count": 1}}, "slopping": {"_count": 2, "butterbeer": {"_count": 2}}, "noble": {"_count": 2, "and": {"_count": 1}, "thing": {"_count": 1}}, "poke": {"_count": 1, "hie": {"_count": 1}}, "miss": {"_count": 2, "": {"_count": 2}}, "masters": {"_count": 1, "to": {"_count": 1}}, "holidays": {"_count": 1, "and": {"_count": 1}}, "proper": {"_count": 2, "clothes": {"_count": 1}, "": {"_count": 1}}, "listen": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "kippers": {"_count": 1, "were": {"_count": 1}}, "yellowish": {"_count": 1, "green": {"_count": 1}}, "sniffing": {"_count": 1, "it": {"_count": 1}}, "giggling": {"_count": 3, "behind": {"_count": 1}, "": {"_count": 1}, "together": {"_count": 1}}, "Yorkshire": {"_count": 1, "puddings": {"_count": 1}}, "although": {"_count": 11, "she": {"_count": 3}, "his": {"_count": 2}, "this": {"_count": 1}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 3}}, "recording": {"_count": 1, "equipment": {"_count": 1}}, "radar": {"_count": 1, "and": {"_count": 1}}, "irritated": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "crisscrossed": {"_count": 1, "in": {"_count": 1}}, "Hagridll": {"_count": 1, "have": {"_count": 1}}, "Hermyownninny": {"_count": 1, "": {"_count": 1}}, "bloody": {"_count": 2, "his": {"_count": 1}, "said": {"_count": 1}}, "gesticulating": {"_count": 1, "Mr": {"_count": 1}}, "vagrants": {"_count": 1, "": {"_count": 1}}, "son": {"_count": 5, "will": {"_count": 1}, "were": {"_count": 1}, "youre": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "squatted": {"_count": 1, "down": {"_count": 1}}, "jump": {"_count": 2, "aside": {"_count": 1}, "": {"_count": 1}}, "skidding": {"_count": 1, "to": {"_count": 1}}, "says": {"_count": 4, "he": {"_count": 1}, "that": {"_count": 1}, "\u2018A": {"_count": 1}, "\u2018111": {"_count": 1}}, "gently": {"_count": 1, "lifted": {"_count": 1}}, "streak": {"_count": 1, "away": {"_count": 1}}, "agitated": {"_count": 1, "": {"_count": 1}}, "corruption": {"_count": 1, "in": {"_count": 1}}, "tree": {"_count": 1, "roots": {"_count": 1}}, "know": {"_count": 4, "what": {"_count": 1}, "that": {"_count": 2}, "whats": {"_count": 1}}, "stubbly": {"_count": 1, "chin": {"_count": 1}}, "arm": {"_count": 1, "yourself": {"_count": 1}}, "Disarming": {"_count": 1, "": {"_count": 1}}, "promise": {"_count": 1, "him": {"_count": 1}}, "reawoken": {"_count": 1, "by": {"_count": 1}}, "sobbing": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "retraced": {"_count": 1, "his": {"_count": 1}}, "hesitated": {"_count": 1, "listening": {"_count": 1}}, "falling": {"_count": 8, "gently": {"_count": 1}, "into": {"_count": 1}, "backward": {"_count": 1}, "rapidly": {"_count": 3}, "masonry": {"_count": 1}, "as": {"_count": 1}}, "running": {"_count": 4, "his": {"_count": 1}, "toward": {"_count": 1}, "a": {"_count": 1}, "down": {"_count": 1}}, "ragged": {"_count": 4, "Sorting": {"_count": 1}, "robes": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "swirled": {"_count": 3, "smoothly": {"_count": 1}, "it": {"_count": 1}, "around": {"_count": 1}}, "rows": {"_count": 5, "of": {"_count": 5}}, "pitched": {"_count": 1, "headfirst": {"_count": 1}}, "uttered": {"_count": 1, "a": {"_count": 1}}, "forbidding": {"_count": 2, "air": {"_count": 1}, "Voldemorts": {"_count": 1}}, "rottenlooking": {"_count": 1, "hands": {"_count": 1}}, "glided": {"_count": 3, "back": {"_count": 2}, "onto": {"_count": 1}}, "goatee": {"_count": 1, "were": {"_count": 1}}, "snaked": {"_count": 2, "their": {"_count": 1}, "around": {"_count": 1}}, "totally": {"_count": 1, "renounce": {"_count": 1}}, "am": {"_count": 4, "filled": {"_count": 1}, "expecting": {"_count": 1}, "delighted": {"_count": 1}, "the": {"_count": 1}}, "nonsupporters": {"_count": 1, "of": {"_count": 1}}, "Mulciber": {"_count": 2, "we": {"_count": 1}, "": {"_count": 1}}, "lean": {"_count": 1, "and": {"_count": 1}}, "muscular": {"_count": 1, "": {"_count": 1}}, "dislike": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "grayer": {"_count": 2, "than": {"_count": 1}, "and": {"_count": 1}}, "heavily": {"_count": 3, "hooded": {"_count": 1}, "lidded": {"_count": 1}, "graffitied": {"_count": 1}}, "subjecting": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "may": {"_count": 3, "they": {"_count": 1}, "be": {"_count": 1}, "you": {"_count": 1}}, "Albus": {"_count": 9, "Dumbledore": {"_count": 3}, "out": {"_count": 1}, "": {"_count": 2}, "settled": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "rippling": {"_count": 1, "beneath": {"_count": 1}}, "memories": {"_count": 5, "crammed": {"_count": 1}, "could": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 1}, "though": {"_count": 1}}, "examines": {"_count": 1, "them": {"_count": 1}}, "links": {"_count": 1, "you": {"_count": 1}}, "opaque": {"_count": 2, "once": {"_count": 1}, "the": {"_count": 1}}, "wearier": {"_count": 1, "than": {"_count": 1}}, "hate": {"_count": 1, "toward": {"_count": 1}}, "realized": {"_count": 7, "with": {"_count": 1}, "that": {"_count": 4}, "what": {"_count": 1}, "it": {"_count": 1}}, "enchanted": {"_count": 1, "barriers": {"_count": 1}}, "obstruct": {"_count": 1, "attackers": {"_count": 1}}, "however": {"_count": 1, "well": {"_count": 1}}, "possibly": {"_count": 3, "dangerous": {"_count": 2}, "violent": {"_count": 1}}, "giants": {"_count": 2, "too": {"_count": 1}, "would": {"_count": 1}}, "waggling": {"_count": 1, "their": {"_count": 1}}, "reminisced": {"_count": 1, "at": {"_count": 1}}, "Urg": {"_count": 1, "the": {"_count": 1}}, "glanced": {"_count": 8, "at": {"_count": 3}, "sideways": {"_count": 1}, "through": {"_count": 1}, "over": {"_count": 1}, "around": {"_count": 1}, "back": {"_count": 1}}, "Cornelius": {"_count": 2, "Fudge": {"_count": 2}}, "creepy": {"_count": 1, "": {"_count": 1}}, "wish": {"_count": 1, "to": {"_count": 1}}, "celebrating": {"_count": 1, "with": {"_count": 1}}, "tripped": {"_count": 1, "over": {"_count": 1}}, "sky": {"_count": 1, "": {"_count": 1}}, "move": {"_count": 3, "or": {"_count": 1}, "without": {"_count": 1}, "for": {"_count": 1}}, "disqualified": {"_count": 1, "from": {"_count": 1}}, "distort": {"_count": 2, "on": {"_count": 1}, "like": {"_count": 1}}, "rebounded": {"_count": 1, "Harry": {"_count": 1}}, "chose": {"_count": 2, "a": {"_count": 1}, "them": {"_count": 1}}, "branches": {"_count": 2, "until": {"_count": 1}, "still": {"_count": 1}}, "recited": {"_count": 1, "First": {"_count": 1}}, "tells": {"_count": 1, "naught": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "answer": {"_count": 2, "me": {"_count": 1}, "her": {"_count": 1}}, "repeated": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "amazed": {"_count": 1, "at": {"_count": 1}}, "avoid": {"_count": 2, "colliding": {"_count": 1}, "awkward": {"_count": 1}}, "razorsharp": {"_count": 1, "pincers": {"_count": 1}}, "strewing": {"_count": 1, "the": {"_count": 1}}, "overgrown": {"_count": 1, "graveyard": {"_count": 1}}, "expressionless": {"_count": 1, "as": {"_count": 1}}, "revealed": {"_count": 4, "something": {"_count": 1}, "themselves": {"_count": 1}, "a": {"_count": 1}, "thoughts": {"_count": 1}}, "blind": {"_count": 3, "but": {"_count": 1}, "in": {"_count": 1}, "again": {"_count": 1}}, "scaly": {"_count": 2, "looking": {"_count": 1}, "erupted": {"_count": 1}}, "snakelike": {"_count": 1, "with": {"_count": 1}}, "moaning": {"_count": 5, "with": {"_count": 1}, "still": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}}, "blood": {"_count": 7, "seeping": {"_count": 1}, "pouring": {"_count": 1}, "but": {"_count": 1}, "filling": {"_count": 1}, "limping": {"_count": 1}, "traitors": {"_count": 1}, "": {"_count": 1}}, "skeletally": {"_count": 1, "thin": {"_count": 1}}, "flexed": {"_count": 1, "the": {"_count": 1}}, "exultant": {"_count": 1, "": {"_count": 1}}, "crying": {"_count": 2, "": {"_count": 1}, "Thieves": {"_count": 1}}, "masked": {"_count": 2, "": {"_count": 1}, "figures": {"_count": 1}}, "kissing": {"_count": 3, "his": {"_count": 1}, "him": {"_count": 1}, "fiercely": {"_count": 1}}, "healthy": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "ignorance": {"_count": 1, "and": {"_count": 1}}, "bewitchment": {"_count": 1, "": {"_count": 1}}, "traitorous": {"_count": 1, "as": {"_count": 1}}, "Lord": {"_count": 4, "Voldemort": {"_count": 4}}, "aiding": {"_count": 1, "your": {"_count": 1}}, "unwittingly": {"_count": 1, "provided": {"_count": 1}}, "perform": {"_count": 1, "the": {"_count": 1}}, "searching": {"_count": 2, "for": {"_count": 1}, "the": {"_count": 1}}, "gullible": {"_count": 1, "wandered": {"_count": 1}}, "upon": {"_count": 3, "Harry": {"_count": 1}, "catching": {"_count": 1}, "this": {"_count": 1}}, "body": {"_count": 2, "were": {"_count": 1}, "never": {"_count": 1}}, "pitiless": {"_count": 1, "": {"_count": 1}}, "poor": {"_count": 1, "wizard": {"_count": 1}}, "strong": {"_count": 3, "enough": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "protection": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}}, "play": {"_count": 1, "then": {"_count": 1}}, "vibrating": {"_count": 1, "": {"_count": 1}}, "free": {"_count": 4, "of": {"_count": 1}, "tickets": {"_count": 1}, "for": {"_count": 1}, "from": {"_count": 1}}, "welcome": {"_count": 2, "thing": {"_count": 1}, "in": {"_count": 1}}, "echoing": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "surveyed": {"_count": 4, "Harry": {"_count": 3}, "the": {"_count": 1}}, "straighten": {"_count": 3, "up": {"_count": 3}}, "untidyhaired": {"_count": 1, "like": {"_count": 1}}, "graves": {"_count": 1, "pelting": {"_count": 1}}, "color": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "exhaustion": {"_count": 2, "kept": {"_count": 1}, "that": {"_count": 1}}, "misted": {"_count": 1, "came": {"_count": 1}}, "independence": {"_count": 1, "that": {"_count": 1}}, "marked": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "why": {"_count": 14, "": {"_count": 3}, "they": {"_count": 1}, "could": {"_count": 1}, "you": {"_count": 1}, "ten": {"_count": 1}, "there": {"_count": 1}, "should": {"_count": 1}, "Harrys": {"_count": 1}, "are": {"_count": 1}, "she": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "sixth": {"_count": 1, "keys": {"_count": 1}}, "starved": {"_count": 1, "in": {"_count": 1}}, "chunks": {"_count": 2, "of": {"_count": 2}}, "poured": {"_count": 7, "three": {"_count": 2}, "herself": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "one": {"_count": 1}, "Snapes": {"_count": 1}}, "caretaker": {"_count": 1, "": {"_count": 1}}, "Dark": {"_count": 2, "detectors": {"_count": 1}, "objects": {"_count": 1}}, "ropes": {"_count": 1, "flew": {"_count": 1}}, "swayed": {"_count": 3, "again": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}}, "gaunt": {"_count": 3, "as": {"_count": 1}, "twisted": {"_count": 1}, "his": {"_count": 1}}, "strengthening": {"_count": 1, "him": {"_count": 1}}, "weary": {"_count": 1, "as": {"_count": 1}}, "prepared": {"_count": 2, "to": {"_count": 2}}, "character": {"_count": 1, "": {"_count": 1}}, "resettled": {"_count": 1, "itself": {"_count": 1}}, "peace": {"_count": 1, "and": {"_count": 1}}, "certainly": {"_count": 1, "not": {"_count": 1}}, "magical": {"_count": 1, "eye": {"_count": 1}}, "drank": {"_count": 8, "a": {"_count": 1}, "to": {"_count": 1}, "once": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "some": {"_count": 2}, "and": {"_count": 1}}, "Severus": {"_count": 3, "have": {"_count": 2}, "there": {"_count": 1}}, "blinking": {"_count": 3, "he": {"_count": 1}, "slowly": {"_count": 1}, "hard": {"_count": 1}}, "obstinate": {"_count": 1, "look": {"_count": 1}}, "retreating": {"_count": 1, "further": {"_count": 1}}, "greatest": {"_count": 2, "Ministers": {"_count": 1}, "of": {"_count": 1}}, "history": {"_count": 1, "will": {"_count": 1}}, "Apparate": {"_count": 1, "instantly": {"_count": 1}}, "horror": {"_count": 2, "": {"_count": 1}, "paralyzed": {"_count": 1}}, "sunny": {"_count": 1, "day": {"_count": 1}}, "wagging": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "saucers": {"_count": 1, "on": {"_count": 1}}, "theirs": {"_count": 1, "were": {"_count": 1}}, "palest": {"_count": 1, "faces": {"_count": 1}}, "raise": {"_count": 3, "your": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 1}}, "promote": {"_count": 1, "magical": {"_count": 1}}, "enmity": {"_count": 2, "is": {"_count": 2}}, "language": {"_count": 1, "are": {"_count": 1}}, "kind": {"_count": 1, "and": {"_count": 1}}, "brave": {"_count": 3, "because": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "leafy": {"_count": 1, "its": {"_count": 1}}, "freely": {"_count": 1, "than": {"_count": 1}}, "Potters": {"_count": 1, "Dumbledores": {"_count": 1}}, "Mugglelovers": {"_count": 1, "first": {"_count": 1}}, "lawns": {"_count": 1, "that": {"_count": 1}}, "yellowing": {"_count": 1, "the": {"_count": 1}}, "lawnmowing": {"_count": 1, "pursuits": {"_count": 1}}, "destruction": {"_count": 1, "were": {"_count": 1}}, "elbows": {"_count": 1, "preparing": {"_count": 1}}, "spot": {"_count": 1, "the": {"_count": 1}}, "released": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "been": {"_count": 4, "tied": {"_count": 1}, "just": {"_count": 1}, "ousted": {"_count": 1}, "in": {"_count": 1}}, "consolation": {"_count": 1, "instead": {"_count": 1}}, "anytime": {"_count": 1, "after": {"_count": 1}}, "\u2018Dinky": {"_count": 1, "Diddydums": {"_count": 1}}, "Wisteria": {"_count": 3, "Walk": {"_count": 3}}, "lightless": {"_count": 1, "the": {"_count": 1}}, "defeated": {"_count": 1, "": {"_count": 1}}, "dissolved": {"_count": 2, "into": {"_count": 2}}, "streetlamps": {"_count": 3, "burst": {"_count": 1}, "": {"_count": 1}, "chimneys": {"_count": 1}}, "sweat": {"_count": 2, "was": {"_count": 1}, "ran": {"_count": 1}}, "carry": {"_count": 2, "Dudley": {"_count": 1}, "false": {"_count": 1}}, "stale": {"_count": 2, "tobacco": {"_count": 1}, "food": {"_count": 1}}, "bloodshot": {"_count": 4, "baggy": {"_count": 1}, "": {"_count": 1}, "eyes": {"_count": 1}, "and": {"_count": 1}}, "whacked": {"_count": 1, "Mundungus": {"_count": 1}}, "staggered": {"_count": 4, "onward": {"_count": 1}, "up": {"_count": 1}, "looking": {"_count": 1}, "as": {"_count": 1}}, "larger": {"_count": 2, "oddly": {"_count": 1}, "the": {"_count": 1}}, "vomited": {"_count": 2, "all": {"_count": 1}, "over": {"_count": 1}}, "anger": {"_count": 3, "Harry": {"_count": 2}, "on": {"_count": 1}}, "numb": {"_count": 4, "": {"_count": 3}, "not": {"_count": 1}}, "explain": {"_count": 5, "how": {"_count": 1}, "why": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}}, "ruffledlooking": {"_count": 1, "barn": {"_count": 1}}, "blotchily": {"_count": 1, "in": {"_count": 1}}, "risk": {"_count": 2, "being": {"_count": 1}, "revealing": {"_count": 1}}, "quieter": {"_count": 2, "to": {"_count": 1}, "all": {"_count": 1}}, "bellowing": {"_count": 1, "": {"_count": 1}}, "despite": {"_count": 2, "the": {"_count": 2}}, "believe": {"_count": 1, "he": {"_count": 1}}, "voice": {"_count": 1, "rising": {"_count": 1}}, "croaked": {"_count": 3, "So": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 1}}, "slamming": {"_count": 6, "it": {"_count": 1}, "the": {"_count": 5}}, "narrowing": {"_count": 2, "his": {"_count": 2}}, "squawked": {"_count": 1, "if": {"_count": 1}}, "hitching": {"_count": 1, "up": {"_count": 1}}, "itched": {"_count": 1, "with": {"_count": 1}}, "frustration": {"_count": 3, "grinding": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}}, "clenching": {"_count": 1, "his": {"_count": 1}}, "Mundungus": {"_count": 14, "Fletcher": {"_count": 2}, "who": {"_count": 1}, "looked": {"_count": 1}, "were": {"_count": 3}, "had": {"_count": 1}, "drove": {"_count": 1}, "drank": {"_count": 1}, "": {"_count": 2}, "seemed": {"_count": 1}, "hit": {"_count": 1}}, "tying": {"_count": 1, "the": {"_count": 1}}, "plans": {"_count": 1, "for": {"_count": 1}}, "shabbier": {"_count": 1, "than": {"_count": 1}}, "short": {"_count": 1, "spiky": {"_count": 1}}, "wore": {"_count": 4, "a": {"_count": 3}, "an": {"_count": 1}}, "electric": {"_count": 1, "blue": {"_count": 1}}, "Hestia": {"_count": 2, "Jones": {"_count": 2}}, "interest": {"_count": 1, "": {"_count": 1}}, "Disguise": {"_count": 1, "during": {"_count": 1}}, "Tracking": {"_count": 1, "Im": {"_count": 1}}, "scales": {"_count": 1, "all": {"_count": 1}}, "droppings": {"_count": 1, "vanished": {"_count": 1}}, "joy": {"_count": 1, "a": {"_count": 1}}, "Sturgis": {"_count": 1, "Podmore": {"_count": 1}}, "texture": {"_count": 1, "of": {"_count": 1}}, "blacks": {"_count": 1, "and": {"_count": 1}}, "earring": {"_count": 1, "gleaming": {"_count": 1}}, "grids": {"_count": 1, "interspersed": {"_count": 1}}, "television": {"_count": 1, "aerials": {"_count": 1}}, "dismounted": {"_count": 1, "on": {"_count": 1}}, "heaps": {"_count": 1, "of": {"_count": 1}}, "Tonks": {"_count": 25, "followed": {"_count": 1}, "carrying": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 3}, "are": {"_count": 2}, "sitting": {"_count": 1}, "shouted": {"_count": 1}, "who": {"_count": 1}, "leaned": {"_count": 1}, "had": {"_count": 2}, "went": {"_count": 1}, "helped": {"_count": 1}, "should": {"_count": 2}, "shall": {"_count": 1}, "their": {"_count": 1}, "together": {"_count": 1}, "both": {"_count": 1}, "pale": {"_count": 1}, "lying": {"_count": 1}, "pierced": {"_count": 1}}, "memorize": {"_count": 1, "": {"_count": 1}}, "grimy": {"_count": 1, "windows": {"_count": 1}}, "releasing": {"_count": 1, "the": {"_count": 1}}, "threadbare": {"_count": 3, "carpet": {"_count": 1}, "hearthrug": {"_count": 1}, "overcoat": {"_count": 1}}, "ageblackened": {"_count": 1, "portraits": {"_count": 1}}, "paler": {"_count": 1, "than": {"_count": 1}}, "freckles": {"_count": 1, "were": {"_count": 1}}, "nibbled": {"_count": 1, "his": {"_count": 1}}, "resentful": {"_count": 5, "thought": {"_count": 1}, "he": {"_count": 1}, "tone": {"_count": 1}, "": {"_count": 2}}, "stuffs": {"_count": 1, "been": {"_count": 1}}, "informed": {"_count": 1, "a": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "wash": {"_count": 1, "them": {"_count": 1}}, "prominent": {"_count": 2, "nose": {"_count": 1}, "members": {"_count": 1}}, "bolts": {"_count": 1, "behind": {"_count": 1}}, "vileness": {"_count": 1, "": {"_count": 1}}, "sweeping": {"_count": 1, "his": {"_count": 1}}, "bitter": {"_count": 3, "Siriuss": {"_count": 1}, "cold": {"_count": 1}, "disappointment": {"_count": 1}}, "food": {"_count": 1, "from": {"_count": 1}}, "wrenching": {"_count": 1, "the": {"_count": 1}}, "spilling": {"_count": 1, "almost": {"_count": 1}}, "cutlery": {"_count": 1, "and": {"_count": 1}}, "tackle": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "nicked": {"_count": 2, "all": {"_count": 1}, "his": {"_count": 1}}, "wrong": {"_count": 1, "Mundungus": {"_count": 1}}, "custard": {"_count": 2, "later": {"_count": 1}, "creams": {"_count": 1}}, "adults": {"_count": 1, "responsible": {"_count": 1}}, "Well": {"_count": 1, "leave": {"_count": 1}}, "cleaned": {"_count": 1, "them": {"_count": 1}}, "inviting": {"_count": 1, "him": {"_count": 1}}, "storming": {"_count": 1, "at": {"_count": 1}}, "winces": {"_count": 1, "at": {"_count": 1}}, "convince": {"_count": 1, "as": {"_count": 1}}, "advice": {"_count": 1, "said": {"_count": 1}}, "having": {"_count": 6, "Aurors": {"_count": 1}, "purebloods": {"_count": 1}, "to": {"_count": 1}, "fought": {"_count": 1}, "a": {"_count": 2}}, "losing": {"_count": 1, "his": {"_count": 1}}, "wise": {"_count": 1, "to": {"_count": 1}}, "bang": {"_count": 1, "on": {"_count": 1}}, "blackmails": {"_count": 1, "them": {"_count": 1}}, "gloomier": {"_count": 1, "than": {"_count": 1}}, "breakfasted": {"_count": 1, "quickly": {"_count": 1}}, "mouths": {"_count": 1, "": {"_count": 1}}, "wails": {"_count": 2, "that": {"_count": 1}, "stabbed": {"_count": 1}}, "rejoined": {"_count": 2, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "thumb": {"_count": 1, "": {"_count": 1}}, "least": {"_count": 2, "pleasant": {"_count": 1}, "of": {"_count": 1}}, "Kingsley": {"_count": 12, "Fred": {"_count": 1}, "Shacklebolt": {"_count": 1}, "look": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 2}, "said": {"_count": 2}, "both": {"_count": 1}, "nodded": {"_count": 1}, "all": {"_count": 1}}, "goes": {"_count": 1, "on": {"_count": 1}}, "screams": {"_count": 4, "from": {"_count": 1}, "and": {"_count": 1}, "other": {"_count": 1}, "echoed": {"_count": 1}}, "watery": {"_count": 2, "gray": {"_count": 1}, "eye": {"_count": 1}}, "doggedly": {"_count": 1, "toward": {"_count": 1}}, "traitors": {"_count": 2, "and": {"_count": 2}}, "thieves": {"_count": 1, "poor": {"_count": 1}}, "Araminta": {"_count": 1, "Meliflua": {"_count": 1}}, "Narcissa": {"_count": 4, "": {"_count": 2}, "whose": {"_count": 1}, "Malfoy": {"_count": 1}}, "Arthurs": {"_count": 3, "something": {"_count": 1}, "learned": {"_count": 1}, "heading": {"_count": 1}}, "proclaimed": {"_count": 1, "her": {"_count": 1}}, "call": {"_count": 3, "as": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "restoring": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "calling": {"_count": 4, "Sirius": {"_count": 1}, "When": {"_count": 1}, "Rons": {"_count": 1}, "out": {"_count": 1}}, "motto": {"_count": 1, "was": {"_count": 1}}, "abetted": {"_count": 1, "by": {"_count": 1}}, "scum": {"_count": 1, "": {"_count": 1}}, "snatches": {"_count": 1, "of": {"_count": 1}}, "coat": {"_count": 1, "though": {"_count": 1}}, "casting": {"_count": 2, "anxious": {"_count": 1}, "him": {"_count": 1}}, "ordering": {"_count": 1, "him": {"_count": 1}}, "Tshirt": {"_count": 1, "at": {"_count": 1}}, "curly": {"_count": 2, "this": {"_count": 1}, "signature": {"_count": 1}}, "eggs": {"_count": 4, "": {"_count": 1}, "toward": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}}, "rechecking": {"_count": 1, "the": {"_count": 1}}, "women": {"_count": 4, "carrying": {"_count": 1}, "and": {"_count": 2}, "have": {"_count": 1}}, "plainly": {"_count": 1, "as": {"_count": 1}}, "business": {"_count": 2, "": {"_count": 2}}, "attach": {"_count": 2, "it": {"_count": 1}, "them": {"_count": 1}}, "present": {"_count": 2, "your": {"_count": 2}}, "widening": {"_count": 2, "rose": {"_count": 2}}, "changing": {"_count": 1, "like": {"_count": 1}}, "cracks": {"_count": 1, "of": {"_count": 1}}, "clattering": {"_count": 2, "a": {"_count": 1}, "beneath": {"_count": 1}}, "Irish": {"_count": 1, "Quidditch": {"_count": 1}}, "Ludicrous": {"_count": 1, "Patents": {"_count": 1}}, "Apparation": {"_count": 1, "Test": {"_count": 1}}, "flashed": {"_count": 1, "as": {"_count": 1}}, "Spirit": {"_count": 2, "Divisions": {"_count": 2}}, "Pest": {"_count": 2, "Advisory": {"_count": 2}}, "Catastrophes": {"_count": 2, "including": {"_count": 1}, "": {"_count": 1}}, "MuggleWorthy": {"_count": 1, "Excuse": {"_count": 1}}, "Wizengamot": {"_count": 2, "Administration": {"_count": 2}}, "photographs": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "articles": {"_count": 1, "from": {"_count": 1}}, "placing": {"_count": 5, "it": {"_count": 1}, "them": {"_count": 2}, "a": {"_count": 1}, "his": {"_count": 1}}, "Castle": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "venue": {"_count": 1, "it": {"_count": 1}}, "jabbed": {"_count": 2, "impatiently": {"_count": 1}, "him": {"_count": 1}}, "pummelled": {"_count": 1, "the": {"_count": 1}}, "torches": {"_count": 1, "in": {"_count": 1}}, "keyholes": {"_count": 1, "": {"_count": 1}}, "bind": {"_count": 1, "whoever": {"_count": 1}}, "fidgeting": {"_count": 1, "restlessly": {"_count": 1}}, "hastened": {"_count": 4, "past": {"_count": 1}, "straight": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}}, "lofty": {"_count": 1, "voice": {"_count": 1}}, "produced": {"_count": 2, "silver": {"_count": 1}, "parchment": {"_count": 1}}, "upsetting": {"_count": 1, "a": {"_count": 1}}, "packing": {"_count": 2, "them": {"_count": 1}, "until": {"_count": 1}}, "nastier": {"_count": 1, "and": {"_count": 1}}, "bewitching": {"_count": 1, "them": {"_count": 1}}, "foolish": {"_count": 2, "": {"_count": 2}}, "centaurs": {"_count": 1, "they": {"_count": 1}}, "surlier": {"_count": 1, "than": {"_count": 1}}, "Kreacher": {"_count": 6, "wheezed": {"_count": 1}, "must": {"_count": 1}, "made": {"_count": 1}, "was": {"_count": 1}, "swapped": {"_count": 1}, "could": {"_count": 1}}, "belched": {"_count": 2, "loudly": {"_count": 1}, "flame": {"_count": 1}}, "Defensive": {"_count": 1, "Magical": {"_count": 1}}, "bustled": {"_count": 2, "from": {"_count": 1}, "off": {"_count": 1}}, "choose": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "pretended": {"_count": 5, "to": {"_count": 5}}, "truthful": {"_count": 1, "voice": {"_count": 1}}, "hitched": {"_count": 1, "a": {"_count": 1}}, "belongings": {"_count": 1, "from": {"_count": 1}}, "stow": {"_count": 1, "them": {"_count": 1}}, "MadEye": {"_count": 4, "Moody": {"_count": 1}, "who": {"_count": 1}, "are": {"_count": 1}, "and": {"_count": 1}}, "eldest": {"_count": 1, "brother": {"_count": 1}}, "declined": {"_count": 1, "the": {"_count": 1}}, "waist": {"_count": 1, "length": {"_count": 1}}, "compromised": {"_count": 1, "by": {"_count": 1}}, "choking": {"_count": 4, "on": {"_count": 2}, "found": {"_count": 1}, "Mundungus": {"_count": 1}}, "inbuilt": {"_count": 1, "vibration": {"_count": 1}}, "Alice": {"_count": 2, "Longbottom": {"_count": 2}}, "pitted": {"_count": 1, "face": {"_count": 1}}, "Gideon": {"_count": 1, "Prewett": {"_count": 1}}, "P": {"_count": 1, "PPercys": {"_count": 1}}, "gamboled": {"_count": 1, "around": {"_count": 1}}, "maintaining": {"_count": 1, "a": {"_count": 1}}, "protuberant": {"_count": 1, "eyes": {"_count": 1}}, "spattered": {"_count": 2, "Luna": {"_count": 1}, "the": {"_count": 1}}, "groaned": {"_count": 1, "": {"_count": 1}}, "Loony": {"_count": 1, "Lovegood": {"_count": 1}}, "dripping": {"_count": 3, "in": {"_count": 2}, "onto": {"_count": 1}}, "girl": {"_count": 2, "from": {"_count": 1}, "he": {"_count": 1}}, "screwing": {"_count": 1, "up": {"_count": 1}}, "flap": {"_count": 1, "her": {"_count": 1}}, "scanned": {"_count": 5, "the": {"_count": 4}, "it": {"_count": 1}}, "Luna": {"_count": 42, "": {"_count": 6}, "made": {"_count": 1}, "were": {"_count": 3}, "Lovegood": {"_count": 1}, "her": {"_count": 1}, "said": {"_count": 1}, "who": {"_count": 3}, "escape": {"_count": 1}, "hurrying": {"_count": 1}, "youre": {"_count": 1}, "squashed": {"_count": 1}, "rose": {"_count": 1}, "sprint": {"_count": 1}, "had": {"_count": 2}, "alone": {"_count": 1}, "is": {"_count": 1}, "probably": {"_count": 1}, "along": {"_count": 1}, "gathering": {"_count": 1}, "slept": {"_count": 1}, "to": {"_count": 2}, "hurried": {"_count": 2}, "walked": {"_count": 1}, "stood": {"_count": 1}, "jogged": {"_count": 1}, "ran": {"_count": 2}, "running": {"_count": 1}, "sped": {"_count": 1}, "all": {"_count": 1}}, "lamps": {"_count": 1, "came": {"_count": 1}}, "pets": {"_count": 1, "assembled": {"_count": 1}}, "hoisting": {"_count": 2, "Hedwigs": {"_count": 1}, "the": {"_count": 1}}, "sinister": {"_count": 1, "": {"_count": 1}}, "Pansy": {"_count": 7, "Parkinson": {"_count": 6}, "looked": {"_count": 1}}, "darned": {"_count": 1, "with": {"_count": 1}}, "Gryffndor": {"_count": 1, "": {"_count": 1}}, "Ravenclaw": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "true": {"_count": 2, "": {"_count": 1}, "master": {"_count": 1}}, "fears": {"_count": 1, "": {"_count": 1}}, "Divided": {"_count": 1, "sought": {"_count": 1}}, "stool": {"_count": 1, "and": {"_count": 1}}, "drinking": {"_count": 1, "are": {"_count": 1}}, "soft": {"_count": 1, "": {"_count": 1}}, "sixtysecond": {"_count": 1, "time": {"_count": 1}}, "littlegirlish": {"_count": 1, "and": {"_count": 1}}, "honed": {"_count": 2, "by": {"_count": 1}, "but": {"_count": 1}}, "headmistress": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "decay": {"_count": 1, "": {"_count": 1}}, "tested": {"_count": 1, "traditions": {"_count": 1}}, "new": {"_count": 2, "between": {"_count": 1}, "parchment": {"_count": 1}}, "change": {"_count": 5, "between": {"_count": 1}, "": {"_count": 3}, "into": {"_count": 1}}, "innovation": {"_count": 1, "": {"_count": 1}}, "rightly": {"_count": 2, "so": {"_count": 1}, "seeing": {"_count": 1}}, "outworn": {"_count": 1, "must": {"_count": 1}}, "accountability": {"_count": 1, "intent": {"_count": 1}}, "pruning": {"_count": 1, "wherever": {"_count": 1}}, "claiming": {"_count": 1, "to": {"_count": 1}}, "rickety": {"_count": 1, "old": {"_count": 1}}, "talked": {"_count": 2, "about": {"_count": 1}, "to": {"_count": 1}}, "eager": {"_count": 2, "at": {"_count": 1}, "to": {"_count": 1}}, "extinguished": {"_count": 1, "the": {"_count": 1}}, "showering": {"_count": 1, "the": {"_count": 1}}, "double": {"_count": 1, "Defense": {"_count": 1}}, "squeezing": {"_count": 1, "onto": {"_count": 1}}, "tantrums": {"_count": 1, "": {"_count": 1}}, "materials": {"_count": 1, "and": {"_count": 1}}, "premises": {"_count": 1, "too": {"_count": 1}}, "soothe": {"_count": 1, "agitation": {"_count": 1}}, "method": {"_count": 1, "Snape": {"_count": 1}}, "quantities": {"_count": 1, "the": {"_count": 1}}, "corked": {"_count": 1, "flagons": {"_count": 1}}, "helping": {"_count": 3, "herself": {"_count": 1}, "himself": {"_count": 1}, "Mrs": {"_count": 1}}, "offended": {"_count": 1, "": {"_count": 1}}, "brandished": {"_count": 1, "it": {"_count": 1}}, "angrylooking": {"_count": 1, "wolfhound": {"_count": 1}}, "overstuffed": {"_count": 1, "poufs": {"_count": 1}}, "grades": {"_count": 1, "matter": {"_count": 1}}, "fragmented": {"_count": 1, "hasnt": {"_count": 1}}, "received": {"_count": 4, "a": {"_count": 3}, "another": {"_count": 1}}, "cleverer": {"_count": 2, "than": {"_count": 2}}, "wrongfooted": {"_count": 1, "as": {"_count": 1}}, "stern": {"_count": 1, "it": {"_count": 1}}, "anxious": {"_count": 5, "and": {"_count": 2}, "": {"_count": 3}}, "fought": {"_count": 3, "you": {"_count": 1}, "a": {"_count": 1}, "its": {"_count": 1}}, "trotted": {"_count": 1, "to": {"_count": 1}}, "rainy": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "study": {"_count": 1, "": {"_count": 1}}, "hippogriffs": {"_count": 1, "had": {"_count": 1}}, "attempting": {"_count": 5, "to": {"_count": 5}}, "related": {"_count": 1, "in": {"_count": 1}}, "escaped": {"_count": 3, "from": {"_count": 1}, "both": {"_count": 1}, "he": {"_count": 1}}, "flounced": {"_count": 1, "away": {"_count": 1}}, "defiant": {"_count": 1, "": {"_count": 1}}, "smelling": {"_count": 1, "strongly": {"_count": 1}}, "artifacts": {"_count": 1, "for": {"_count": 1}}, "concealment": {"_count": 2, "": {"_count": 1}, "charms": {"_count": 1}}, "cloths": {"_count": 1, "": {"_count": 1}}, "punishments": {"_count": 3, "certainly": {"_count": 1}, "afresh": {"_count": 1}, "he": {"_count": 1}}, "Sinistra": {"_count": 1, "gave": {"_count": 1}}, "Umbridge": {"_count": 12, "a": {"_count": 1}, "would": {"_count": 1}, "herself": {"_count": 1}, "the": {"_count": 1}, "have": {"_count": 1}, "at": {"_count": 1}, "leapt": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "is": {"_count": 1}, "who": {"_count": 1}, "was": {"_count": 1}}, "inflamed": {"_count": 1, "Harry": {"_count": 1}}, "Good": {"_count": 2, "night": {"_count": 1}, "grief": {"_count": 1}}, "sodden": {"_count": 1, "as": {"_count": 1}}, "might": {"_count": 3, "with": {"_count": 1}, "do": {"_count": 1}, "never": {"_count": 1}}, "smarting": {"_count": 1, "": {"_count": 1}}, "bled": {"_count": 1, "": {"_count": 1}}, "Geoffrey": {"_count": 1, "Hooper": {"_count": 1}}, "Vickys": {"_count": 1, "involved": {"_count": 1}}, "bobbles": {"_count": 1, "and": {"_count": 1}}, "savored": {"_count": 1, "the": {"_count": 1}}, "candy": {"_count": 1, "wrappers": {"_count": 1}}, "pose": {"_count": 1, "all": {"_count": 1}}, "interesting": {"_count": 1, "but": {"_count": 1}}, "mewing": {"_count": 1, "hungrily": {"_count": 1}}, "sentenced": {"_count": 1, "to": {"_count": 1}}, "jeers": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "whose": {"_count": 7, "voices": {"_count": 1}, "hair": {"_count": 1}, "magical": {"_count": 1}, "face": {"_count": 3}, "death": {"_count": 1}}, "slowing": {"_count": 1, "to": {"_count": 1}}, "screamed": {"_count": 7, "with": {"_count": 1}, "Incarcerousl": {"_count": 1}, "Leanne": {"_count": 1}, "apparently": {"_count": 1}, "Ron": {"_count": 1}, "But": {"_count": 1}, "Avada": {"_count": 1}}, "missed": {"_count": 3, "by": {"_count": 1}, "Ginny": {"_count": 1}, "us": {"_count": 1}}, "doing": {"_count": 2, "so": {"_count": 1}, "nothing": {"_count": 1}}, "skill": {"_count": 2, "": {"_count": 2}}, "swerving": {"_count": 1, "in": {"_count": 1}}, "stomped": {"_count": 1, "off": {"_count": 1}}, "must": {"_count": 4, "firstly": {"_count": 1}, "therefore": {"_count": 1}, "once": {"_count": 1}, "suffer": {"_count": 1}}, "probably": {"_count": 3, "more": {"_count": 2}, "Neville": {"_count": 1}}, "actions": {"_count": 1, "either": {"_count": 1}}, "congratulations": {"_count": 1, "again": {"_count": 1}}, "correct": {"_count": 2, "them": {"_count": 1}, "us": {"_count": 1}}, "codes": {"_count": 1, "are": {"_count": 1}}, "Death": {"_count": 4, "Eaters": {"_count": 4}}, "tagged": {"_count": 1, "last": {"_count": 1}}, "providing": {"_count": 1, "the": {"_count": 1}}, "objective": {"_count": 1, "evaluation": {"_count": 1}}, "delusional": {"_count": 1, "exAuror": {"_count": 1}}, "Chief": {"_count": 1, "Warlock": {"_count": 1}}, "Tiberius": {"_count": 1, "Ogden": {"_count": 1}}, "faked": {"_count": 1, "a": {"_count": 1}}, "swallowing": {"_count": 2, "it": {"_count": 1}, "before": {"_count": 1}}, "D": {"_count": 1, "for": {"_count": 1}}, "date": {"_count": 3, "of": {"_count": 3}}, "interpret": {"_count": 1, "each": {"_count": 1}}, "posing": {"_count": 1, "questions": {"_count": 1}}, "early": {"_count": 2, "death": {"_count": 1}, "there": {"_count": 1}}, "commence": {"_count": 1, "chapter": {"_count": 1}}, "bouncing": {"_count": 1, "on": {"_count": 1}}, "wandered": {"_count": 1, "among": {"_count": 1}}, "nifflers": {"_count": 1, "I": {"_count": 1}}, "kneazles": {"_count": 1, "make": {"_count": 1}}, "knarls": {"_count": 1, "you": {"_count": 1}}, "liked": {"_count": 1, "it": {"_count": 1}}, "pickled": {"_count": 1, "murtlap": {"_count": 1}}, "experienced": {"_count": 2, "a": {"_count": 2}}, "destroyed": {"_count": 1, "Riddle": {"_count": 1}}, "dying": {"_count": 3, "except": {"_count": 1}, "every": {"_count": 1}, "and": {"_count": 1}}, "cleanliness": {"_count": 1, "": {"_count": 1}}, "triplechecked": {"_count": 1, "the": {"_count": 1}}, "Terry": {"_count": 2, "Boot": {"_count": 2}}, "counting": {"_count": 2, "his": {"_count": 2}}, "rummaged": {"_count": 3, "in": {"_count": 1}, "within": {"_count": 1}, "for": {"_count": 1}}, "predictable": {"_count": 1, "": {"_count": 1}}, "slopped": {"_count": 1, "butterbeer": {"_count": 1}}, "acromantulas": {"_count": 1, "and": {"_count": 1}}, "lethallooking": {"_count": 1, "metal": {"_count": 1}}, "cheerfully": {"_count": 1, "put": {"_count": 1}}, "trod": {"_count": 1, "on": {"_count": 1}}, "lounged": {"_count": 1, "in": {"_count": 1}}, "bewitched": {"_count": 2, "her": {"_count": 1}, "birds": {"_count": 1}}, "Clubs": {"_count": 1, "are": {"_count": 1}}, "approval": {"_count": 1, "of": {"_count": 1}}, "ogling": {"_count": 1, "Harry": {"_count": 1}}, "trustworthy": {"_count": 1, "No": {"_count": 1}}, "thumping": {"_count": 2, "Harry": {"_count": 1}, "of": {"_count": 1}}, "Smith": {"_count": 1, "": {"_count": 1}}, "nudges": {"_count": 1, "until": {"_count": 1}}, "hope": {"_count": 2, "she": {"_count": 1}, "that": {"_count": 1}}, "screwed": {"_count": 1, "it": {"_count": 1}}, "fists": {"_count": 1, "clenched": {"_count": 1}}, "brims": {"_count": 1, "of": {"_count": 1}}, "thrust": {"_count": 5, "the": {"_count": 3}, "it": {"_count": 1}, "his": {"_count": 1}}, "somewhat": {"_count": 1, "hysterical": {"_count": 1}}, "extra": {"_count": 1, "Potions": {"_count": 1}}, "whooping": {"_count": 1, "crowd": {"_count": 1}}, "sound": {"_count": 4, "of": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}}, "disapproving": {"_count": 3, "sniffs": {"_count": 1}, "mutterings": {"_count": 1}, "but": {"_count": 1}}, "simply": {"_count": 4, "begs": {"_count": 1}, "learn": {"_count": 1}, "resolved": {"_count": 1}, "stood": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "activity": {"_count": 1, "that": {"_count": 1}}, "cawing": {"_count": 1, "ravens": {"_count": 1}}, "confiscate": {"_count": 1, "the": {"_count": 1}}, "glared": {"_count": 4, "at": {"_count": 4}}, "ugly": {"_count": 2, "raven": {"_count": 1}, "we": {"_count": 1}}, "replacing": {"_count": 3, "it": {"_count": 2}, "them": {"_count": 1}}, "close": {"_count": 5, "its": {"_count": 1}, "to": {"_count": 2}, "in": {"_count": 1}, "": {"_count": 1}}, "overcrowded": {"_count": 1, "classroom": {"_count": 1}}, "curtains": {"_count": 1, "of": {"_count": 1}}, "disgruntled": {"_count": 1, "team": {"_count": 1}}, "winced": {"_count": 2, "with": {"_count": 1}, "at": {"_count": 1}}, "swinging": {"_count": 2, "it": {"_count": 1}, "her": {"_count": 1}}, "rereading": {"_count": 1, "a": {"_count": 1}}, "sneezewort": {"_count": 1, "and": {"_count": 1}}, "Befuddlement": {"_count": 2, "Draughts": {"_count": 2}}, "recklessness": {"_count": 1, "": {"_count": 1}}, "comfortable": {"_count": 4, "in": {"_count": 1}, "as": {"_count": 1}, "bed": {"_count": 1}, "here": {"_count": 1}}, "innumerable": {"_count": 1, "socks": {"_count": 1}}, "tonight": {"_count": 2, "sir": {"_count": 1}, "Somewhere": {"_count": 1}}, "clap": {"_count": 1, "his": {"_count": 1}}, "Go": {"_count": 1, "Room": {"_count": 1}}, "mash": {"_count": 1, "": {"_count": 1}}, "scanning": {"_count": 2, "it": {"_count": 2}}, "unity": {"_count": 1, "dont": {"_count": 1}}, "folding": {"_count": 1, "his": {"_count": 1}}, "divided": {"_count": 1, "up": {"_count": 1}}, "mainly": {"_count": 1, "responsible": {"_count": 1}}, "punished": {"_count": 1, "by": {"_count": 1}}, "fours": {"_count": 1, "watching": {"_count": 1}}, "whenever": {"_count": 3, "he": {"_count": 3}}, "obstructed": {"_count": 1, "her": {"_count": 1}}, "intimidation": {"_count": 1, "": {"_count": 1}}, "considerably": {"_count": 1, "larger": {"_count": 1}}, "driving": {"_count": 1, "rain": {"_count": 1}}, "November": {"_count": 1, "arrived": {"_count": 1}}, "hats": {"_count": 2, "silver": {"_count": 1}, "and": {"_count": 1}}, "rosettes": {"_count": 1, "": {"_count": 1}}, "dreamy": {"_count": 2, "voice": {"_count": 1}, "": {"_count": 1}}, "whistles": {"_count": 1, "": {"_count": 1}}, "smirked": {"_count": 1, "tapping": {"_count": 1}}, "Montague": {"_count": 1, "reached": {"_count": 1}}, "nice": {"_count": 1, "Bludger": {"_count": 1}}, "Spinnets": {"_count": 1, "away": {"_count": 1}}, "booing": {"_count": 2, "and": {"_count": 1}, "from": {"_count": 1}}, "singing": {"_count": 2, "dodges": {"_count": 1}, "\u2018Ive": {"_count": 1}}, "Warrington": {"_count": 1, "drops": {"_count": 1}}, "Puceys": {"_count": 1, "dodged": {"_count": 1}}, "Pucey": {"_count": 1, "has": {"_count": 1}}, "resumed": {"_count": 3, "his": {"_count": 3}}, "scooted": {"_count": 1, "off": {"_count": 1}}, "punching": {"_count": 1, "the": {"_count": 1}}, "Weasleys": {"_count": 1, "pigsty": {"_count": 1}}, "fainter": {"_count": 3, "until": {"_count": 2}, "": {"_count": 1}}, "removal": {"_count": 1, "of": {"_count": 1}}, "removals": {"_count": 1, "of": {"_count": 1}}, "cautiously": {"_count": 1, "they": {"_count": 1}}, "smoke": {"_count": 4, "coiling": {"_count": 1}, "were": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 1}}, "hurrying": {"_count": 2, "to": {"_count": 2}}, "slapped": {"_count": 2, "it": {"_count": 2}}, "slapping": {"_count": 2, "it": {"_count": 2}}, "spluttered": {"_count": 1, "and": {"_count": 1}}, "attacked": {"_count": 4, "my": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}}, "squat": {"_count": 1, "rippled": {"_count": 1}}, "loudly": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "Hogwarts": {"_count": 2, "High": {"_count": 1}, "A": {"_count": 1}}, "congealed": {"_count": 1, "blood": {"_count": 1}}, "hedgehogs": {"_count": 1, "stuff": {"_count": 1}}, "cast": {"_count": 6, "a": {"_count": 2}, "wildly": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 1}}, "rap": {"_count": 1, "hard": {"_count": 1}}, "sticking": {"_count": 3, "his": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 1}}, "expanded": {"_count": 1, "his": {"_count": 1}}, "nervously": {"_count": 1, "expectant": {"_count": 1}}, "cloak": {"_count": 1, "again": {"_count": 1}}, "upset": {"_count": 1, "": {"_count": 1}}, "performing": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Jack": {"_count": 1, "Sloper": {"_count": 1}}, "stacked": {"_count": 1, "them": {"_count": 1}}, "puffy": {"_count": 4, "": {"_count": 3}, "as": {"_count": 1}}, "brain": {"_count": 1, "": {"_count": 1}}, "hilarity": {"_count": 1, "to": {"_count": 1}}, "painful": {"_count": 3, "": {"_count": 2}, "silence": {"_count": 1}}, "being": {"_count": 2, "alone": {"_count": 1}, "thrown": {"_count": 1}}, "crossingsout": {"_count": 1, "Hermione": {"_count": 1}}, "sealing": {"_count": 1, "it": {"_count": 1}}, "struck": {"_count": 1, "once": {"_count": 1}}, "prescribing": {"_count": 1, "useless": {"_count": 1}}, "sharper": {"_count": 1, "voice": {"_count": 1}}, "addressed": {"_count": 3, "one": {"_count": 1}, "his": {"_count": 1}, "Bill": {"_count": 1}}, "mistresses": {"_count": 2, "on": {"_count": 1}, "were": {"_count": 1}}, "drooling": {"_count": 2, "most": {"_count": 1}, "all": {"_count": 1}}, "Dilys": {"_count": 2, "were": {"_count": 1}, "may": {"_count": 1}}, "approaching": {"_count": 2, "the": {"_count": 1}, "as": {"_count": 1}}, "wooden": {"_count": 1, "quite": {"_count": 1}}, "observed": {"_count": 1, "Dumbledore": {"_count": 1}}, "coiled": {"_count": 1, "in": {"_count": 1}}, "undulating": {"_count": 1, "in": {"_count": 1}}, "conditions": {"_count": 1, "of": {"_count": 1}}, "murmured": {"_count": 6, "Portus": {"_count": 1}, "Aguamenti": {"_count": 1}, "Accio": {"_count": 2}, "Confundo": {"_count": 1}, "Lumos": {"_count": 1}}, "focusing": {"_count": 1, "upon": {"_count": 1}}, "unbidden": {"_count": 1, "unwanted": {"_count": 1}}, "somewhere": {"_count": 1, "close": {"_count": 1}}, "shrug": {"_count": 1, "and": {"_count": 1}}, "half": {"_count": 6, "a": {"_count": 2}, "the": {"_count": 2}, "raised": {"_count": 1}, "of": {"_count": 1}}, "clenched": {"_count": 1, "it": {"_count": 1}}, "downed": {"_count": 1, "the": {"_count": 1}}, "joyfully": {"_count": 1, "jumping": {"_count": 1}}, "toast": {"_count": 1, "Harry": {"_count": 1}}, "thank": {"_count": 2, "him": {"_count": 1}, "goodness": {"_count": 1}}, "hoped": {"_count": 3, "they": {"_count": 2}, "that": {"_count": 1}}, "awake": {"_count": 1, "to": {"_count": 1}}, "talkative": {"_count": 1, "as": {"_count": 1}}, "sweatshirts": {"_count": 1, "and": {"_count": 1}}, "Mad": {"_count": 1, "Eye": {"_count": 1}}, "assuring": {"_count": 1, "him": {"_count": 1}}, "stumped": {"_count": 3, "along": {"_count": 1}, "away": {"_count": 1}, "over": {"_count": 1}}, "Dowse": {"_count": 2, "Ltd": {"_count": 2}}, "modeling": {"_count": 1, "fashions": {"_count": 1}}, "perusing": {"_count": 1, "out": {"_count": 1}}, "hold": {"_count": 1, "it": {"_count": 1}}, "posters": {"_count": 1, "saying": {"_count": 1}}, "ANTIDOTES": {"_count": 1, "ARE": {"_count": 1}}, "pranced": {"_count": 2, "sideways": {"_count": 1}, "across": {"_count": 1}}, "incorrectly": {"_count": 1, "applied": {"_count": 1}}, "relieved": {"_count": 1, "to": {"_count": 1}}, "seeing": {"_count": 3, "whom": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}}, "nodding": {"_count": 1, "toward": {"_count": 1}}, "sickly": {"_count": 1, "and": {"_count": 1}}, "memory": {"_count": 1, "modification": {"_count": 1}}, "separated": {"_count": 1, "five": {"_count": 1}}, "inserted": {"_count": 1, "it": {"_count": 1}}, "heat": {"_count": 2, "rushing": {"_count": 1}, "were": {"_count": 1}}, "squirm": {"_count": 1, "like": {"_count": 1}}, "Phineas": {"_count": 7, "Nigelluss": {"_count": 1}, "Nigellus": {"_count": 6}}, "seething": {"_count": 1, "with": {"_count": 1}}, "ever": {"_count": 1, "more": {"_count": 1}}, "injure": {"_count": 1, "what": {"_count": 1}}, "aching": {"_count": 1, "": {"_count": 1}}, "miles": {"_count": 1, "": {"_count": 1}}, "stayed": {"_count": 1, "": {"_count": 1}}, "ignored": {"_count": 2, "her": {"_count": 1}, "both": {"_count": 1}}, "crammed": {"_count": 1, "it": {"_count": 1}}, "decorating": {"_count": 1, "with": {"_count": 1}}, "beards": {"_count": 1, "": {"_count": 1}}, "Its": {"_count": 3, "Use": {"_count": 2}, "okay": {"_count": 1}}, "hexes": {"_count": 4, "it": {"_count": 1}, "but": {"_count": 1}, "of": {"_count": 1}, "scribbled": {"_count": 1}}, "sounded": {"_count": 1, "as": {"_count": 1}}, "oldfashioned": {"_count": 1, "boiler": {"_count": 1}}, "smelly": {"_count": 1, "old": {"_count": 1}}, "moldy": {"_count": 2, "old": {"_count": 1}, "cups": {"_count": 1}}, "coins": {"_count": 1, "that": {"_count": 1}}, "blankets": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "trifle": {"_count": 1, "having": {"_count": 1}}, "shining": {"_count": 2, "white": {"_count": 1}, "": {"_count": 1}}, "icicles": {"_count": 1, "glittered": {"_count": 1}}, "screwdrivers": {"_count": 1, "": {"_count": 1}}, "suggesting": {"_count": 1, "horrible": {"_count": 1}}, "trailing": {"_count": 2, "behind": {"_count": 1}, "shawls": {"_count": 1}}, "unquestioned": {"_count": 1, "but": {"_count": 1}}, "cowered": {"_count": 1, "as": {"_count": 1}}, "worn": {"_count": 1, "now": {"_count": 1}}, "deadlooking": {"_count": 2, "": {"_count": 1}, "once": {"_count": 1}}, "begged": {"_count": 2, "him": {"_count": 2}}, "remain": {"_count": 1, "in": {"_count": 1}}, "plants": {"_count": 1, "suspended": {"_count": 1}}, "influence": {"_count": 2, "": {"_count": 1}, "over": {"_count": 1}}, "manylayered": {"_count": 1, "thing": {"_count": 1}}, "mental": {"_count": 3, "safety": {"_count": 1}, "stuff": {"_count": 1}, "stories": {"_count": 1}}, "space": {"_count": 2, "matter": {"_count": 1}, "ahead": {"_count": 1}}, "vulnerable": {"_count": 1, "when": {"_count": 1}}, "emotions": {"_count": 1, "": {"_count": 1}}, "deliberately": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}}, "himself": {"_count": 2, "until": {"_count": 1}, "in": {"_count": 1}}, "sharing": {"_count": 1, "his": {"_count": 1}}, "feelings": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 1}}, "unconcerned": {"_count": 2, "": {"_count": 2}}, "angrier": {"_count": 1, "though": {"_count": 1}}, "calm": {"_count": 4, "you": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "down": {"_count": 1}}, "deduced": {"_count": 1, "": {"_count": 1}}, "Freds": {"_count": 4, "hand": {"_count": 1}, "and": {"_count": 1}, "they": {"_count": 1}, "eyes": {"_count": 1}}, "cool": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "Fabian": {"_count": 1, "Prewett": {"_count": 1}}, "straggly": {"_count": 1, "in": {"_count": 1}}, "permanent": {"_count": 1, "incapacitation": {"_count": 1}}, "beg": {"_count": 1, "the": {"_count": 1}}, "cautious": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 4, "and": {"_count": 2}, "": {"_count": 1}, "robes": {"_count": 1}}, "mobility": {"_count": 1, "improved": {"_count": 1}}, "narrowly": {"_count": 1, "missed": {"_count": 1}}, "cousins": {"_count": 1, "who": {"_count": 1}}, "Sprout": {"_count": 7, "huddled": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 2}, "sprinting": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}}, "Heptomology": {"_count": 1, "insisting": {"_count": 1}}, "shooting": {"_count": 1, "terrified": {"_count": 1}}, "countercurse": {"_count": 1, "Harry": {"_count": 1}}, "meaningfully": {"_count": 1, "from": {"_count": 1}}, "regular": {"_count": 1, "classes": {"_count": 1}}, "warmer": {"_count": 3, "weather": {"_count": 1}, "as": {"_count": 1}, "hand": {"_count": 1}}, "Kirke": {"_count": 2, "theyre": {"_count": 1}, "shrieking": {"_count": 1}}, "Chang": {"_count": 1, "": {"_count": 1}}, "shrieking": {"_count": 3, "in": {"_count": 1}, "Potty": {"_count": 1}, "": {"_count": 1}}, "messing": {"_count": 1, "about": {"_count": 1}}, "cheery": {"_count": 1, "": {"_count": 1}}, "hiccuping": {"_count": 1, "slightly": {"_count": 1}}, "mournfullooking": {"_count": 1, "Hagrid": {"_count": 1}}, "groped": {"_count": 2, "within": {"_count": 1}, "inside": {"_count": 1}}, "unkempt": {"_count": 2, "around": {"_count": 1}, "": {"_count": 1}}, "halfway": {"_count": 1, "to": {"_count": 1}}, "stirred": {"_count": 2, "her": {"_count": 1}, "once": {"_count": 1}}, "runs": {"_count": 1, "out": {"_count": 1}}, "snog": {"_count": 1, "Cedric": {"_count": 1}}, "hopefully": {"_count": 2, "youd": {"_count": 1}, "goalsaving": {"_count": 1}}, "Logograms": {"_count": 1, "": {"_count": 1}}, "tension": {"_count": 1, "between": {"_count": 1}}, "incredulity": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "forty": {"_count": 2, "versus": {"_count": 1}, "": {"_count": 1}}, "Summerbys": {"_count": 1, "got": {"_count": 1}}, "guilt": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "gripped": {"_count": 1}}, "address": {"_count": 1, "Harry": {"_count": 1}}, "flapping": {"_count": 1, "their": {"_count": 1}}, "crumpling": {"_count": 1, "up": {"_count": 1}}, "letters": {"_count": 1, "on": {"_count": 1}}, "pockets": {"_count": 1, "": {"_count": 1}}, "Eat": {"_count": 1, "dung": {"_count": 1}}, "longfingered": {"_count": 1, "": {"_count": 1}}, "selling": {"_count": 1, "their": {"_count": 1}}, "dreams": {"_count": 2, "Potter": {"_count": 2}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "sloppy": {"_count": 1, "Potter": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "sack": {"_count": 1, "any": {"_count": 1}}, "sseek": {"_count": 1, "my": {"_count": 1}}, "astonishingly": {"_count": 1, "blue": {"_count": 1}}, "windows": {"_count": 1, "so": {"_count": 1}}, "stars": {"_count": 1, "emerged": {"_count": 1}}, "observe": {"_count": 1, "the": {"_count": 1}}, "burns": {"_count": 1, "and": {"_count": 1}}, "indignant": {"_count": 2, "voice": {"_count": 2}}, "fettered": {"_count": 1, "by": {"_count": 1}}, "impartial": {"_count": 1, "": {"_count": 1}}, "flame": {"_count": 1, "": {"_count": 1}}, "mallowsweet": {"_count": 1, "there": {"_count": 1}}, "Firenze": {"_count": 2, "told": {"_count": 1}, "lay": {"_count": 1}}, "problems": {"_count": 1, "again": {"_count": 1}}, "sympathy": {"_count": 4, "": {"_count": 2}, "Molly": {"_count": 1}, "from": {"_count": 1}}, "serious": {"_count": 1, "": {"_count": 1}}, "stamped": {"_count": 3, "on": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}}, "Marietta": {"_count": 6, "gave": {"_count": 1}, "out": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "were": {"_count": 1}}, "cheeks": {"_count": 1, "to": {"_count": 1}}, "fatherly": {"_count": 1, "look": {"_count": 1}}, "curses": {"_count": 3, "the": {"_count": 1}, "flew": {"_count": 1}, "at": {"_count": 1}}, "frankly": {"_count": 2, "I": {"_count": 1}, "youve": {"_count": 1}}, "somebody": {"_count": 2, "cried": {"_count": 1}, "erupted": {"_count": 1}}, "Dawlish": {"_count": 2, "lay": {"_count": 1}, "are": {"_count": 1}}, "scurried": {"_count": 4, "away": {"_count": 1}, "from": {"_count": 2}, "hastily": {"_count": 1}}, "hiding": {"_count": 1, "places": {"_count": 1}}, "padlocked": {"_count": 1, "to": {"_count": 1}}, "exiting": {"_count": 1, "backward": {"_count": 1}}, "dashing": {"_count": 1, "out": {"_count": 1}}, "momentum": {"_count": 1, "the": {"_count": 1}}, "Filchs": {"_count": 2, "yells": {"_count": 1}, "raised": {"_count": 1}}, "quaking": {"_count": 1, "with": {"_count": 1}}, "exhaling": {"_count": 1, "flame": {"_count": 1}}, "informing": {"_count": 2, "her": {"_count": 2}}, "soot": {"_count": 1, "blackened": {"_count": 1}}, "emotion": {"_count": 1, "and": {"_count": 1}}, "beckoning": {"_count": 1, "her": {"_count": 1}}, "cope": {"_count": 1, "with": {"_count": 1}}, "copper": {"_count": 1, "and": {"_count": 1}}, "cramped": {"_count": 1, "": {"_count": 1}}, "rumpled": {"_count": 1, "up": {"_count": 1}}, "peaky": {"_count": 1, "was": {"_count": 1}}, "bored": {"_count": 2, "but": {"_count": 1}, "by": {"_count": 1}}, "startlingly": {"_count": 1, "green": {"_count": 1}}, "hexing": {"_count": 1, "anyone": {"_count": 1}}, "unhappy": {"_count": 1, "was": {"_count": 1}}, "slunk": {"_count": 2, "away": {"_count": 1}, "out": {"_count": 1}}, "forth": {"_count": 2, "to": {"_count": 1}, "between": {"_count": 1}}, "carelessly": {"_count": 1, "rewrapped": {"_count": 1}}, "notices": {"_count": 1, "concerning": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "substantial": {"_count": 1, "dangerrelated": {"_count": 1}}, "frisking": {"_count": 2, "all": {"_count": 1}, "with": {"_count": 1}}, "using": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "snide": {"_count": 1, "remarks": {"_count": 1}}, "arrived": {"_count": 2, "out": {"_count": 1}, "here": {"_count": 1}}, "aptitude": {"_count": 2, "tests": {"_count": 2}}, "antidotes": {"_count": 1, "are": {"_count": 1}}, "\u2018Exceeds": {"_count": 1, "Expectations": {"_count": 1}}, "dedication": {"_count": 1, "because": {"_count": 1}}, "Negotiation": {"_count": 1, "": {"_count": 1}}, "donned": {"_count": 1, "the": {"_count": 1}}, "table": {"_count": 1, "legs": {"_count": 1}}, "jinx": {"_count": 1, "him": {"_count": 1}}, "inhale": {"_count": 1, "a": {"_count": 1}}, "movement": {"_count": 1, "coming": {"_count": 1}}, "iron": {"_count": 1, "peg": {"_count": 1}}, "Stinkpellets": {"_count": 1, "were": {"_count": 1}}, "vomiting": {"_count": 1, "students": {"_count": 1}}, "toppling": {"_count": 1, "statues": {"_count": 1}}, "vases": {"_count": 1, "": {"_count": 1}}, "snuffed": {"_count": 1, "out": {"_count": 1}}, "blowing": {"_count": 1, "loud": {"_count": 1}}, "wriggled": {"_count": 1, "pointlessly": {"_count": 1}}, "dancing": {"_count": 1, "light": {"_count": 1}}, "sought": {"_count": 1, "to": {"_count": 1}}, "unexpectedly": {"_count": 2, "": {"_count": 2}}, "forged": {"_count": 1, "a": {"_count": 1}}, "remembering": {"_count": 2, "very": {"_count": 1}, "her": {"_count": 1}}, "thickets": {"_count": 1, "of": {"_count": 1}}, "scratches": {"_count": 2, "": {"_count": 1}, "up": {"_count": 1}}, "mopped": {"_count": 1, "his": {"_count": 1}}, "boughs": {"_count": 1, "that": {"_count": 1}}, "shifted": {"_count": 1, "in": {"_count": 1}}, "dabbing": {"_count": 2, "at": {"_count": 1}, "rouge": {"_count": 1}}, "shapeless": {"_count": 1, "the": {"_count": 1}}, "agility": {"_count": 1, "": {"_count": 1}}, "deluged": {"_count": 1, "Hagrid": {"_count": 1}}, "whimpering": {"_count": 2, "": {"_count": 1}, "noises": {"_count": 1}}, "bearded": {"_count": 1, "Bane": {"_count": 1}}, "dishonored": {"_count": 1, "us": {"_count": 1}}, "secrets": {"_count": 1, "among": {"_count": 1}}, "knows": {"_count": 1, "me": {"_count": 1}}, "forefinger": {"_count": 1, "a": {"_count": 1}}, "wakefulness": {"_count": 1, "had": {"_count": 1}}, "details": {"_count": 1, "of": {"_count": 1}}, "times": {"_count": 1, "of": {"_count": 1}}, "Self": {"_count": 1, "Correcting": {"_count": 1}}, "diving": {"_count": 1, "under": {"_count": 1}}, "Charms": {"_count": 1, "when": {"_count": 1}}, "McGonagalls": {"_count": 1, "furious": {"_count": 1}}, "b": {"_count": 1, "describe": {"_count": 1}}, "Daphne": {"_count": 1, "Greengrass": {"_count": 1}}, "baldest": {"_count": 1, "examiner": {"_count": 1}}, "Growth": {"_count": 1, "Charms": {"_count": 1}}, "neglected": {"_count": 1, "to": {"_count": 1}}, "submerged": {"_count": 1, "themselves": {"_count": 1}}, "theories": {"_count": 1, "": {"_count": 1}}, "defensive": {"_count": 1, "spells": {"_count": 1}}, "knotted": {"_count": 1, "hands": {"_count": 1}}, "yawned": {"_count": 1, "beside": {"_count": 1}}, "Sunday": {"_count": 1, "studying": {"_count": 1}}, "rounded": {"_count": 1, "off": {"_count": 1}}, "Uranus": {"_count": 1, "get": {"_count": 1}}, "Tofty": {"_count": 1, "strolled": {"_count": 1}}, "planets": {"_count": 1, "they": {"_count": 1}}, "refocused": {"_count": 1, "it": {"_count": 1}}, "noticed": {"_count": 2, "that": {"_count": 2}}, "brandishing": {"_count": 3, "his": {"_count": 1}, "banners": {"_count": 1}, "the": {"_count": 1}}, "castle": {"_count": 1, "the": {"_count": 1}}, "begun": {"_count": 3, "to": {"_count": 3}}, "arose": {"_count": 1, "from": {"_count": 1}}, "savor": {"_count": 1, "their": {"_count": 1}}, "slack": {"_count": 1, "": {"_count": 1}}, "Liechtenstein": {"_count": 1, "": {"_count": 1}}, "pages": {"_count": 1, "": {"_count": 1}}, "purposeful": {"_count": 2, "tread": {"_count": 1}, "": {"_count": 1}}, "glass": {"_count": 3, "spheres": {"_count": 1}, "": {"_count": 1}, "rained": {"_count": 1}}, "awoke": {"_count": 1, "still": {"_count": 1}}, "below": {"_count": 4, "him": {"_count": 1}, "that": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "inflexible": {"_count": 2, "perhaps": {"_count": 1}, "air": {"_count": 1}}, "pacing": {"_count": 1, "up": {"_count": 1}}, "tip": {"_count": 1, "her": {"_count": 1}}, "impatience": {"_count": 1, "Harry": {"_count": 1}}, "loyalty": {"_count": 1, "": {"_count": 1}}, "Siriuss": {"_count": 2, "knife": {"_count": 1}, "true": {"_count": 1}}, "wall": {"_count": 3, "": {"_count": 2}, "watching": {"_count": 1}}, "panic": {"_count": 4, "that": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 2}}, "remove": {"_count": 1, "the": {"_count": 1}}, "sycophantically": {"_count": 1, "": {"_count": 1}}, "hatred": {"_count": 3, "he": {"_count": 1}, "bubbling": {"_count": 1}, "etched": {"_count": 1}}, "falsely": {"_count": 1, "sweet": {"_count": 1}}, "scufflings": {"_count": 1, "resultant": {"_count": 1}}, "blank": {"_count": 1, "as": {"_count": 1}}, "breathing": {"_count": 1, "heavily": {"_count": 1}}, "nnnow": {"_count": 1, "weve": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "suspiciously": {"_count": 1, "around": {"_count": 1}}, "greed": {"_count": 1, "that": {"_count": 1}}, "disappointed": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "seize": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "loaded": {"_count": 1, "pointing": {"_count": 1}}, "Headmistress": {"_count": 1, "and": {"_count": 1}}, "High": {"_count": 1, "Inquisitor": {"_count": 1}}, "tightening": {"_count": 1, "of": {"_count": 1}}, "trapping": {"_count": 1, "his": {"_count": 1}}, "reared": {"_count": 2, "onto": {"_count": 1}, "more": {"_count": 1}}, "rearing": {"_count": 1, "a": {"_count": 1}}, "insults": {"_count": 1, "": {"_count": 1}}, "quiver": {"_count": 1, "of": {"_count": 1}}, "arrows": {"_count": 2, "waiting": {"_count": 1}, "were": {"_count": 1}}, "adjusting": {"_count": 1, "her": {"_count": 1}}, "marching": {"_count": 1, "over": {"_count": 1}}, "swallowed": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "gullies": {"_count": 1, "below": {"_count": 1}}, "rounder": {"_count": 1, "on": {"_count": 1}}, "rattling": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "And": {"_count": 1, "howre": {"_count": 1}}, "erase": {"_count": 1, "the": {"_count": 1}}, "clutching": {"_count": 4, "his": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}, "stitches": {"_count": 1}}, "rectangular": {"_count": 1, "and": {"_count": 1}}, "descending": {"_count": 1, "in": {"_count": 1}}, "crumbling": {"_count": 1, "that": {"_count": 1}}, "sway": {"_count": 1, "": {"_count": 1}}, "murmuring": {"_count": 2, "was": {"_count": 1}, "I": {"_count": 1}}, "sounding": {"_count": 2, "much": {"_count": 1}, "as": {"_count": 1}}, "tortured": {"_count": 2, "and": {"_count": 1}, "Harry": {"_count": 1}}, "longing": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "carriage": {"_count": 1, "hanging": {"_count": 1}}, "appeared": {"_count": 5, "to": {"_count": 4}, "not": {"_count": 1}}, "outnumbered": {"_count": 1, "two": {"_count": 1}}, "fort": {"_count": 1, "what": {"_count": 1}}, "skull": {"_count": 1, "like": {"_count": 1}}, "Bellatrixs": {"_count": 1, "shouts": {"_count": 1}}, "Bode": {"_count": 1, "": {"_count": 1}}, "splintered": {"_count": 3, "wood": {"_count": 2}, "china": {"_count": 1}}, "shards": {"_count": 1, "of": {"_count": 1}}, "safe": {"_count": 5, "in": {"_count": 3}, "": {"_count": 1}, "not": {"_count": 1}}, "search": {"_count": 1, "and": {"_count": 1}}, "Avery": {"_count": 2, "through": {"_count": 1}, "": {"_count": 1}}, "unhatching": {"_count": 1, "toward": {"_count": 1}}, "charged": {"_count": 3, "after": {"_count": 1}, "The": {"_count": 1}, "at": {"_count": 1}}, "slide": {"_count": 2, "off": {"_count": 1}, "unconscious": {"_count": 1}}, "balder": {"_count": 1, "the": {"_count": 1}}, "stubble": {"_count": 1, "retracting": {"_count": 1}}, "chin": {"_count": 2, "": {"_count": 1}, "dond": {"_count": 1}}, "bewildered": {"_count": 2, "to": {"_count": 1}, "Hermione": {"_count": 1}}, "unable": {"_count": 2, "to": {"_count": 2}}, "connected": {"_count": 1, "with": {"_count": 1}}, "recoiled": {"_count": 1, "clutching": {"_count": 1}}, "Dolohov": {"_count": 6, "looked": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "peering": {"_count": 1}, "turned": {"_count": 1}, "stepped": {"_count": 1}}, "blunderings": {"_count": 1, "of": {"_count": 1}}, "overturning": {"_count": 1, "desks": {"_count": 1}}, "repair": {"_count": 1, "itself": {"_count": 1}}, "writhing": {"_count": 4, "as": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "through": {"_count": 1}}, "Bellatrix": {"_count": 6, "triumphant": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 2}, "Lestranges": {"_count": 1}}, "GO": {"_count": 2, "": {"_count": 2}}, "thrashing": {"_count": 1, "and": {"_count": 1}}, "effortlessly": {"_count": 1, "as": {"_count": 1}}, "surprise": {"_count": 2, "on": {"_count": 1}, "He": {"_count": 1}}, "viciously": {"_count": 1, "but": {"_count": 1}}, "cries": {"_count": 3, "Kingsley": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}}, "remained": {"_count": 1, "still": {"_count": 1}}, "Herbiones": {"_count": 1, "unconscious": {"_count": 1}}, "shriek": {"_count": 2, "with": {"_count": 2}}, "blackhooded": {"_count": 1, "his": {"_count": 1}}, "reappeared": {"_count": 1, "beside": {"_count": 1}}, "flightless": {"_count": 1, "": {"_count": 1}}, "indistinct": {"_count": 1, "upon": {"_count": 1}}, "immobile": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Disapparated": {"_count": 4, "": {"_count": 3}, "reappearing": {"_count": 1}}, "awaiting": {"_count": 1, "your": {"_count": 1}}, "centaur": {"_count": 1, "now": {"_count": 1}}, "trembled": {"_count": 1, "noisily": {"_count": 1}}, "whirring": {"_count": 2, "serenely": {"_count": 1}, "portraits": {"_count": 1}}, "squirmed": {"_count": 1, "": {"_count": 1}}, "fright": {"_count": 1, "and": {"_count": 1}}, "energetic": {"_count": 1, "man": {"_count": 1}}, "such": {"_count": 1, "men": {"_count": 1}}, "lure": {"_count": 1, "you": {"_count": 1}}, "fragments": {"_count": 1, "of": {"_count": 1}}, "feels": {"_count": 1, "": {"_count": 1}}, "thoughts": {"_count": 1, "that": {"_count": 1}}, "misdirect": {"_count": 1, "your": {"_count": 1}}, "pupil": {"_count": 1, "he": {"_count": 1}}, "possess": {"_count": 1, "you": {"_count": 1}}, "ease": {"_count": 1, "the": {"_count": 1}}, "interpreted": {"_count": 1, "this": {"_count": 1}}, "wife": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "neglect": {"_count": 2, "often": {"_count": 1}, "of": {"_count": 1}}, "abused": {"_count": 2, "our": {"_count": 1}, "Snape": {"_count": 1}}, "storm": {"_count": 2, "at": {"_count": 2}}, "intended": {"_count": 1, "": {"_count": 1}}, "delighted": {"_count": 2, "to": {"_count": 1}, "faces": {"_count": 1}}, "violent": {"_count": 2, "": {"_count": 1}, "isnt": {"_count": 1}}, "powerful": {"_count": 3, "protective": {"_count": 1}, "potion": {"_count": 1}, "properties": {"_count": 1}}, "sooner": {"_count": 1, "much": {"_count": 1}}, "strength": {"_count": 1, "": {"_count": 1}}, "faceless": {"_count": 2, "people": {"_count": 1}, "": {"_count": 1}}, "creatures": {"_count": 1, "were": {"_count": 1}}, "rescued": {"_count": 1, "him": {"_count": 1}}, "particularly": {"_count": 1, "since": {"_count": 1}}, "drift": {"_count": 1, "inside": {"_count": 1}}, "either": {"_count": 1, "must": {"_count": 1}}, "among": {"_count": 1, "us": {"_count": 1}}, "flustered": {"_count": 1, "as": {"_count": 1}}, "personal": {"_count": 1, "defense": {"_count": 1}}, "reinstated": {"_count": 1, "Chief": {"_count": 1}}, "slander": {"_count": 1, "": {"_count": 1}}, "slandering": {"_count": 1, "though": {"_count": 1}}, "leaf": {"_count": 1, "in": {"_count": 1}}, "Trelawney": {"_count": 1, "are": {"_count": 1}}, "splashes": {"_count": 1, "drifting": {"_count": 1}}, "preferred": {"_count": 1, "it": {"_count": 1}}, "fresh": {"_count": 1, "inside": {"_count": 1}}, "barely": {"_count": 3, "noticing": {"_count": 1}, "missing": {"_count": 1}, "a": {"_count": 1}}, "dangerously": {"_count": 1, "wobbling": {"_count": 1}}, "miserably": {"_count": 1, "back": {"_count": 1}}, "clothes": {"_count": 4, "with": {"_count": 1}, "thinking": {"_count": 1}, "": {"_count": 2}}, "grief": {"_count": 4, "that": {"_count": 1}, "and": {"_count": 1}, "thundering": {"_count": 1}, "": {"_count": 1}}, "jinxes": {"_count": 1, "Harry": {"_count": 1}}, "Pumpkin": {"_count": 1, "Pasties": {"_count": 1}}, "hysterical": {"_count": 1, "letters": {"_count": 1}}, "Chos": {"_count": 1, "eyes": {"_count": 1}}, "trousers": {"_count": 2, "": {"_count": 1}, "each": {"_count": 1}}, "embarrassed": {"_count": 4, "": {"_count": 1}, "that": {"_count": 1}, "smile": {"_count": 1}, "one": {"_count": 1}}, "insignificant": {"_count": 1, "a": {"_count": 1}}, "collided": {"_count": 2, "painfully": {"_count": 1}, "with": {"_count": 1}}, "wellpublicized": {"_count": 2, "murders": {"_count": 1}, "attack": {"_count": 1}}, "property": {"_count": 1, "": {"_count": 1}}, "arranged": {"_count": 1, "his": {"_count": 1}}, "unfazed": {"_count": 1, "expression": {"_count": 1}}, "gesturing": {"_count": 1, "toward": {"_count": 1}}, "Vance": {"_count": 1, "murders": {"_count": 1}}, "scheming": {"_count": 1, "when": {"_count": 1}}, "introduce": {"_count": 1, "himself": {"_count": 1}}, "shaken": {"_count": 1, "his": {"_count": 1}}, "prevented": {"_count": 1, "the": {"_count": 1}}, "instructed": {"_count": 1, "his": {"_count": 1}}, "sphinxes": {"_count": 1, "would": {"_count": 1}}, "fretful": {"_count": 1, "and": {"_count": 1}}, "sternly": {"_count": 1, "surprised": {"_count": 1}}, "steps": {"_count": 1, "must": {"_count": 1}}, "twirling": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "corroded": {"_count": 1, "expansion": {"_count": 1}}, "order": {"_count": 1, "in": {"_count": 1}}, "center": {"_count": 2, "": {"_count": 1}, "Including": {"_count": 1}}, "countryside": {"_count": 1, "spreading": {"_count": 1}}, "hopelessness": {"_count": 1, "in": {"_count": 1}}, "toughness": {"_count": 1, "the": {"_count": 1}}, "exchanged": {"_count": 1, "an": {"_count": 1}}, "ominous": {"_count": 1, "": {"_count": 1}}, "deep": {"_count": 2, "darkness": {"_count": 1}, "and": {"_count": 1}}, "draining": {"_count": 1, "it": {"_count": 1}}, "unworthy": {"_count": 1, "Quirrell": {"_count": 1}}, "murder": {"_count": 2, "of": {"_count": 1}, "said": {"_count": 1}}, "selfsatisfied": {"_count": 1, "as": {"_count": 1}}, "therein": {"_count": 1, "lies": {"_count": 1}}, "steered": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 2}}, "wound": {"_count": 1, "its": {"_count": 1}}, "interlinked": {"_count": 1, "with": {"_count": 1}}, "sweet": {"_count": 1, "wrappers": {"_count": 1}}, "But": {"_count": 4, "the": {"_count": 1}, "she": {"_count": 1}, "before": {"_count": 1}, "it": {"_count": 1}}, "Disillusionment": {"_count": 2, "Charms": {"_count": 2}}, "family": {"_count": 1, "so": {"_count": 1}}, "unsticking": {"_count": 1, "his": {"_count": 1}}, "trainers": {"_count": 3, "jumped": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "sipped": {"_count": 1, "": {"_count": 1}}, "beat": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "Dudders": {"_count": 1, "doesnt": {"_count": 1}}, "expressing": {"_count": 1, "the": {"_count": 1}}, "often": {"_count": 1, "cruelty": {"_count": 1}}, "pursue": {"_count": 1, "that": {"_count": 1}}, "redoubled": {"_count": 1, "his": {"_count": 1}}, "IVe": {"_count": 1, "been": {"_count": 1}}, "forceful": {"_count": 1, "personality": {"_count": 1}}, "china": {"_count": 1, "lay": {"_count": 1}}, "glutinous": {"_count": 1, "was": {"_count": 1}}, "reignited": {"_count": 1, "a": {"_count": 1}}, "alighted": {"_count": 1, "whole": {"_count": 1}}, "untarnished": {"_count": 1, "upon": {"_count": 1}}, "holes": {"_count": 1, "healed": {"_count": 1}}, "tinkling": {"_count": 3, "the": {"_count": 1}, "across": {"_count": 1}, "its": {"_count": 1}}, "prices": {"_count": 1, "are": {"_count": 1}}, "colleague": {"_count": 1, "of": {"_count": 1}}, "cluttered": {"_count": 1, "yet": {"_count": 1}}, "footstools": {"_count": 2, "drinks": {"_count": 1}, "": {"_count": 1}}, "plump": {"_count": 1, "cushions": {"_count": 1}}, "blackened": {"_count": 1, "fingers": {"_count": 1}}, "Slughorn": {"_count": 13, "looked": {"_count": 2}, "jumped": {"_count": 1}, "appeared": {"_count": 1}, "were": {"_count": 2}, "watched": {"_count": 1}, "it": {"_count": 1}, "directed": {"_count": 1}, "s": {"_count": 1}, "began": {"_count": 1}, "traipsed": {"_count": 1}, "blasted": {"_count": 1}}, "visitors": {"_count": 1, "craving": {"_count": 1}}, "opinions": {"_count": 1, "could": {"_count": 1}}, "living": {"_count": 2, "on": {"_count": 1}, "room": {"_count": 1}}, "fidgeted": {"_count": 1, "as": {"_count": 1}}, "vivid": {"_count": 1, "mental": {"_count": 1}}, "juicy": {"_count": 1, "flies": {"_count": 1}}, "particular": {"_count": 1, "meaning": {"_count": 1}}, "fathers": {"_count": 1, "son": {"_count": 1}}, "Molly": {"_count": 2, "all": {"_count": 1}, "and": {"_count": 1}}, "stepping": {"_count": 1, "out": {"_count": 1}}, "mousy": {"_count": 1, "brown": {"_count": 1}}, "Confiscation": {"_count": 2, "of": {"_count": 2}}, "Protective": {"_count": 2, "Objects": {"_count": 2}}, "toasters": {"_count": 1, "and": {"_count": 1}}, "usually": {"_count": 1, "hung": {"_count": 1}}, "dusty": {"_count": 1, "traveling": {"_count": 1}}, "slumping": {"_count": 1, "back": {"_count": 1}}, "willowy": {"_count": 1, "with": {"_count": 1}}, "chickens": {"_count": 1, "": {"_count": 1}}, "Georgeve": {"_count": 1, "left": {"_count": 1}}, "sporting": {"_count": 1, "a": {"_count": 1}}, "evasive": {"_count": 1, "enchantments": {"_count": 1}}, "Abrasions": {"_count": 1, "": {"_count": 1}}, "Herbology": {"_count": 1, "he": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "whipping": {"_count": 1, "her": {"_count": 1}}, "grim": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "patched": {"_count": 1, "than": {"_count": 1}}, "booklists": {"_count": 1, "arrived": {"_count": 1}}, "Ollivander": {"_count": 4, "went": {"_count": 1}, "vanished": {"_count": 1}, "Harry": {"_count": 1}, "set": {"_count": 1}}, "Ginnys": {"_count": 6, "pleasure": {"_count": 1}, "new": {"_count": 1}, "obsessive": {"_count": 1}, "time": {"_count": 1}, "luck": {"_count": 1}, "voices": {"_count": 1}}, "oblivious": {"_count": 1, "to": {"_count": 1}}, "toothless": {"_count": 2, "remained": {"_count": 1}, "landlord": {"_count": 1}}, "rapped": {"_count": 1, "a": {"_count": 1}}, "cauldrons": {"_count": 1, "were": {"_count": 1}}, "Inferi": {"_count": 1, "A": {"_count": 1}}, "Tattings": {"_count": 1, "": {"_count": 1}}, "Eeylops": {"_count": 1, "on": {"_count": 1}}, "SmartAnswer": {"_count": 1, "varieties": {"_count": 1}}, "virtually": {"_count": 2, "undetectable": {"_count": 1}, "silent": {"_count": 1}}, "minor": {"_count": 1, "drooling": {"_count": 1}}, "rope": {"_count": 1, "tricks": {"_count": 1}}, "mind": {"_count": 3, "you": {"_count": 1}, "power": {"_count": 1}, "felt": {"_count": 1}}, "loathing": {"_count": 1, "Malfoy": {"_count": 1}}, "Gabrielle": {"_count": 3, "will": {"_count": 1}, "made": {"_count": 1}, "both": {"_count": 1}}, "dirt": {"_count": 1, "spattered": {"_count": 1}}, "flanking": {"_count": 1, "the": {"_count": 1}}, "secondly": {"_count": 2, "because": {"_count": 1}, "Harry": {"_count": 1}}, "She": {"_count": 1, "was": {"_count": 1}}, "gawping": {"_count": 1, "he": {"_count": 1}}, "embarrassment": {"_count": 1, "": {"_count": 1}}, "confidently": {"_count": 1, "": {"_count": 1}}, "dust": {"_count": 2, "in": {"_count": 1}, "Deafened": {"_count": 1}}, "nervouslooking": {"_count": 1, "gave": {"_count": 1}}, "accepted": {"_count": 1, "what": {"_count": 1}}, "Rufus": {"_count": 2, "Scrimgeour": {"_count": 1}, "too": {"_count": 1}}, "succulent": {"_count": 1, "piece": {"_count": 1}}, "Zabini": {"_count": 8, "were": {"_count": 2}, "followed": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "borrow": {"_count": 1, "that": {"_count": 1}}, "invited": {"_count": 1, "me": {"_count": 1}}, "Nott": {"_count": 2, "didnt": {"_count": 1}, "both": {"_count": 1}}, "better": {"_count": 3, "things": {"_count": 2}, "than": {"_count": 1}}, "muscled": {"_count": 1, "his": {"_count": 1}}, "wet": {"_count": 2, "over": {"_count": 1}, "was": {"_count": 1}}, "step": {"_count": 1, "on": {"_count": 1}}, "miserablelooking": {"_count": 1, "as": {"_count": 1}}, "rants": {"_count": 1, "about": {"_count": 1}}, "irrevocably": {"_count": 1, "beyond": {"_count": 1}}, "torment": {"_count": 1, "Harry": {"_count": 1}}, "glow": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "siphoned": {"_count": 1, "off": {"_count": 1}}, "shoulder": {"_count": 1, "as": {"_count": 1}}, "reproachful": {"_count": 1, "": {"_count": 1}}, "gaining": {"_count": 1, "in": {"_count": 1}}, "strain": {"_count": 1, "as": {"_count": 1}}, "relax": {"_count": 1, "": {"_count": 1}}, "halting": {"_count": 1, "a": {"_count": 1}}, "stowed": {"_count": 2, "it": {"_count": 2}}, "priorities": {"_count": 1, "": {"_count": 1}}, "eternal": {"_count": 1, "": {"_count": 1}}, "inventive": {"_count": 1, "as": {"_count": 1}}, "blankeyed": {"_count": 1, "slumped": {"_count": 1}}, "quickthinking": {"_count": 1, "": {"_count": 1}}, "Slughorns": {"_count": 1, "belly": {"_count": 1}}, "potion": {"_count": 1, "kits": {"_count": 1}}, "inflating": {"_count": 1, "his": {"_count": 1}}, "whisper": {"_count": 1, "something": {"_count": 1}}, "undivided": {"_count": 1, "attention": {"_count": 1}}, "disastrous": {"_count": 1, "to": {"_count": 1}}, "gurgle": {"_count": 1, "of": {"_count": 1}}, "decipher": {"_count": 1, "the": {"_count": 1}}, "bushier": {"_count": 1, "in": {"_count": 1}}, "dogeared": {"_count": 1, "": {"_count": 1}}, "hurriedly": {"_count": 3, "put": {"_count": 1}, "striking": {"_count": 1}, "thrust": {"_count": 1}}, "journeying": {"_count": 1, "together": {"_count": 1}}, "persuaded": {"_count": 1, "him": {"_count": 1}}, "shimmered": {"_count": 1, "neither": {"_count": 1}}, "spats": {"_count": 1, "over": {"_count": 1}}, "graveyard": {"_count": 1, "clearly": {"_count": 1}}, "potholed": {"_count": 1, "sloping": {"_count": 1}}, "drawn": {"_count": 1, "his": {"_count": 1}}, "Ogden": {"_count": 2, "was": {"_count": 1}, "yelled": {"_count": 1}}, "wrinkled": {"_count": 1, "face": {"_count": 1}}, "filth": {"_count": 2, "": {"_count": 1}, "dishonoring": {"_count": 1}}, "crooning": {"_count": 1, "softly": {"_count": 1}}, "dull": {"_count": 1, "and": {"_count": 1}}, "crack": {"_count": 1, "in": {"_count": 1}}, "vanish": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "singsong": {"_count": 1, "": {"_count": 1}}, "pureblood": {"_count": 1, "all": {"_count": 1}}, "gulping": {"_count": 1, "for": {"_count": 1}}, "Morfin": {"_count": 3, "fell": {"_count": 1}, "were": {"_count": 1}, "s": {"_count": 1}}, "clopping": {"_count": 1, "sounds": {"_count": 1}}, "rasping": {"_count": 1, "": {"_count": 1}}, "firing": {"_count": 1, "hexes": {"_count": 1}}, "indicating": {"_count": 2, "that": {"_count": 2}}, "subsequently": {"_count": 1, "convicted": {"_count": 1}}, "violence": {"_count": 1, "that": {"_count": 1}}, "poverty": {"_count": 1, "with": {"_count": 1}}, "\u2018taken": {"_count": 1, "in": {"_count": 1}}, "Transfiguration": {"_count": 1, "too": {"_count": 1}}, "fly": {"_count": 1, "once": {"_count": 1}}, "Ritchie": {"_count": 1, "Coote": {"_count": 1}}, "jeered": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "booed": {"_count": 2, "and": {"_count": 1}, "loudly": {"_count": 1}}, "McLaggen": {"_count": 1, "returned": {"_count": 1}}, "resisting": {"_count": 1, "joining": {"_count": 1}}, "stingers": {"_count": 1, "attempt": {"_count": 1}}, "feed": {"_count": 2, "giant": {"_count": 1}, "you": {"_count": 1}}, "untruthfully": {"_count": 1, "that": {"_count": 1}}, "whiled": {"_count": 1, "away": {"_count": 1}}, "shortcuts": {"_count": 1, "on": {"_count": 1}}, "revisions": {"_count": 1, "that": {"_count": 1}}, "alterations": {"_count": 1, "but": {"_count": 1}}, "riffled": {"_count": 1, "through": {"_count": 1}}, "deciphered": {"_count": 1, "one": {"_count": 1}}, "gloves": {"_count": 2, "Rons": {"_count": 1}, "": {"_count": 1}}, "occupying": {"_count": 1, "at": {"_count": 1}}, "spirits": {"_count": 1, "": {"_count": 1}}, "strip": {"_count": 1, "the": {"_count": 1}}, "attractive": {"_count": 1, "barmaid": {"_count": 1}}, "trudged": {"_count": 1, "on": {"_count": 1}}, "Leanne": {"_count": 5, "had": {"_count": 1}, "were": {"_count": 1}, "let": {"_count": 1}, "up": {"_count": 1}, "seemed": {"_count": 1}}, "smelled": {"_count": 4, "of": {"_count": 1}, "horrible": {"_count": 1}, "like": {"_count": 1}, "salty": {"_count": 1}}, "offering": {"_count": 1, "it": {"_count": 1}}, "uncorking": {"_count": 1, "it": {"_count": 1}}, "pretty": {"_count": 1, "far": {"_count": 1}}, "Caractacus": {"_count": 1, "Burke": {"_count": 1}}, "satisfyingly": {"_count": 1, "accurate": {"_count": 1}}, "Eric": {"_count": 1, "Whalleys": {"_count": 1}}, "mismatched": {"_count": 1, "": {"_count": 1}}, "arrangements": {"_count": 1, "for": {"_count": 1}}, "Marvolo": {"_count": 1, "for": {"_count": 1}}, "Billy": {"_count": 1, "had": {"_count": 1}}, "admonitions": {"_count": 1, "to": {"_count": 1}}, "visitor": {"_count": 1, "": {"_count": 1}}, "appraisingly": {"_count": 1, "at": {"_count": 1}}, "boy": {"_count": 1, "staring": {"_count": 1}}, "seconds": {"_count": 2, "later": {"_count": 2}}, "ominously": {"_count": 1, "of": {"_count": 1}}, "domination": {"_count": 2, "": {"_count": 2}}, "created": {"_count": 1, "the": {"_count": 1}}, "knotting": {"_count": 1, "them": {"_count": 1}}, "Queen": {"_count": 1, "Slug": {"_count": 1}}, "swear": {"_count": 1, "that": {"_count": 1}}, "Demelza": {"_count": 3, "": {"_count": 1}, "were": {"_count": 1}, "scored": {"_count": 1}}, "Coote": {"_count": 2, "were": {"_count": 1}, "instead": {"_count": 1}}, "unfortunately": {"_count": 1, "the": {"_count": 1}}, "Beaters": {"_count": 1, "left": {"_count": 1}}, "drawing": {"_count": 2, "his": {"_count": 1}, "out": {"_count": 1}}, "sister": {"_count": 12, "all": {"_count": 1}, "followed": {"_count": 1}, "": {"_count": 3}, "running": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 1}, "to": {"_count": 1}, "back": {"_count": 1}, "for": {"_count": 1}}, "Phlegm": {"_count": 1, "": {"_count": 1}}, "surly": {"_count": 1, "with": {"_count": 1}}, "hopeless": {"_count": 1, "as": {"_count": 1}}, "sicklooking": {"_count": 1, "": {"_count": 1}}, "boos": {"_count": 2, "": {"_count": 2}}, "Ravenclaws": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "clapping": {"_count": 2, "Harry": {"_count": 1}, "greeted": {"_count": 1}}, "Vaisey": {"_count": 1, "couldnt": {"_count": 1}}, "batting": {"_count": 1, "their": {"_count": 1}}, "awkwardness": {"_count": 1, "Hi": {"_count": 1}}, "erectly": {"_count": 1, "toward": {"_count": 1}}, "clawing": {"_count": 1, "at": {"_count": 1}}, "tinsel": {"_count": 1, "had": {"_count": 1}}, "forearms": {"_count": 1, "still": {"_count": 1}}, "dotted": {"_count": 1, "an": {"_count": 1}}, "cough": {"_count": 1, "potions": {"_count": 1}}, "frogmarched": {"_count": 1, "him": {"_count": 1}}, "stuffy": {"_count": 1, "and": {"_count": 1}}, "bathed": {"_count": 1, "in": {"_count": 1}}, "emaciated": {"_count": 1, "with": {"_count": 1}}, "gum": {"_count": 1, "disease": {"_count": 1}}, "imprisonment": {"_count": 2, "has": {"_count": 1}, "in": {"_count": 1}}, "Squibs": {"_count": 1, "and": {"_count": 1}}, "\u2018three": {"_count": 1, "arrests": {"_count": 1}}, "releases": {"_count": 1, "": {"_count": 1}}, "searched": {"_count": 1, "the": {"_count": 1}}, "lowering": {"_count": 1, "his": {"_count": 1}}, "awkwardlooking": {"_count": 1, "and": {"_count": 1}}, "battlescarred": {"_count": 1, "very": {"_count": 1}}, "Scrimgeours": {"_count": 1, "tone": {"_count": 1}}, "friendly": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "certain": {"_count": 1, "measures": {"_count": 1}}, "safely": {"_count": 1, "to": {"_count": 1}}, "Buck": {"_count": 1, "I": {"_count": 1}}, "recounted": {"_count": 1, "all": {"_count": 1}}, "trilled": {"_count": 1, "Guess": {"_count": 1}}, "burnt": {"_count": 1, "looking": {"_count": 1}}, "unmoving": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "increased": {"_count": 1, "his": {"_count": 1}}, "thirsty": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "charm": {"_count": 2, "me": {"_count": 1}, "them": {"_count": 1}}, "questioning": {"_count": 1, "Muggle": {"_count": 1}}, "naturally": {"_count": 1, "wished": {"_count": 1}}, "rotting": {"_count": 2, "food": {"_count": 1}, "hands": {"_count": 1}}, "handsome": {"_count": 5, "the": {"_count": 1}, "and": {"_count": 2}, "oliveskinned": {"_count": 1}, "as": {"_count": 1}}, "knife": {"_count": 1, "held": {"_count": 1}}, "asking": {"_count": 1, "questions": {"_count": 1}}, "revenging": {"_count": 1, "himself": {"_count": 1}}, "boastful": {"_count": 1, "confession": {"_count": 1}}, "good": {"_count": 1, "night": {"_count": 1}}, "ankledeep": {"_count": 1, "in": {"_count": 1}}, "tangles": {"_count": 1, "of": {"_count": 1}}, "soften": {"_count": 2, "him": {"_count": 1}, "Slughorn": {"_count": 1}}, "reappearances": {"_count": 1, "had": {"_count": 1}}, "jostling": {"_count": 1, "as": {"_count": 1}}, "breaking": {"_count": 3, "up": {"_count": 1}, "their": {"_count": 1}, "like": {"_count": 1}}, "speeding": {"_count": 1, "up": {"_count": 1}}, "Dunghead": {"_count": 1, "": {"_count": 1}}, "tiny": {"_count": 6, "moving": {"_count": 1}, "golden": {"_count": 1}, "bewitched": {"_count": 1}, "kitchen": {"_count": 1}, "little": {"_count": 1}, "eyes": {"_count": 1}}, "Apparition": {"_count": 3, "he": {"_count": 1}, "": {"_count": 1}, "impossible": {"_count": 1}}, "silky": {"_count": 1, "": {"_count": 1}}, "celebrate": {"_count": 1, "Mr": {"_count": 1}}, "pouches": {"_count": 1, "while": {"_count": 1}}, "demanded": {"_count": 1, "to": {"_count": 1}}, "frightenedlooking": {"_count": 1, "until": {"_count": 1}}, "werent": {"_count": 1, "although": {"_count": 1}}, "provide": {"_count": 1, "Harry": {"_count": 1}}, "keen": {"_count": 2, "to": {"_count": 2}}, "Peakes": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "hadnt": {"_count": 1}}, "Slytherins": {"_count": 1, "below": {"_count": 1}}, "mishit": {"_count": 1, "it": {"_count": 1}}, "squeaks": {"_count": 1, "filled": {"_count": 1}}, "kick": {"_count": 1, "and": {"_count": 1}}, "exasperation": {"_count": 1, "on": {"_count": 1}}, "determining": {"_count": 1, "to": {"_count": 1}}, "poisoned": {"_count": 1, "the": {"_count": 1}}, "speculation": {"_count": 1, "": {"_count": 1}}, "stranger": {"_count": 1, "": {"_count": 1}}, "convinced": {"_count": 1, "of": {"_count": 1}}, "oldest": {"_count": 1, "house": {"_count": 1}}, "elf": {"_count": 1, "jumped": {"_count": 1}}, "celestial": {"_count": 1, "globes": {"_count": 1}}, "Hepzibah": {"_count": 3, "simpered": {"_count": 1}, "gave": {"_count": 1}, "turned": {"_count": 1}}, "actually": {"_count": 1, "pinching": {"_count": 1}}, "restored": {"_count": 1, "it": {"_count": 1}}, "littleknown": {"_count": 1, "poison": {"_count": 1}}, "charmed": {"_count": 1, "her": {"_count": 1}}, "locket": {"_count": 1, "": {"_count": 1}}, "undamaged": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "building": {"_count": 1, "up": {"_count": 1}}, "blurred": {"_count": 1, "they": {"_count": 1}}, "done": {"_count": 3, "much": {"_count": 2}, "it": {"_count": 1}}, "feared": {"_count": 2, "he": {"_count": 1}, "him": {"_count": 1}}, "rematerialize": {"_count": 1, "inside": {"_count": 1}}, "day": {"_count": 1, "croaked": {"_count": 1}}, "spy": {"_count": 2, "on": {"_count": 2}}, "disturbed": {"_count": 1, "by": {"_count": 1}}, "unyielding": {"_count": 1, "": {"_count": 1}}, "organizing": {"_count": 1, "their": {"_count": 1}}, "hasnt": {"_count": 1, "got": {"_count": 1}}, "desperation": {"_count": 1, "or": {"_count": 1}}, "How": {"_count": 1, "to": {"_count": 1}}, "unformulated": {"_count": 1, "plans": {"_count": 1}}, "waking": {"_count": 1, "": {"_count": 1}}, "nosetweaking": {"_count": 1, "": {"_count": 1}}, "breathed": {"_count": 1, "in": {"_count": 1}}, "grass": {"_count": 1, "for": {"_count": 1}}, "touched": {"_count": 4, "": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}}, "tangled": {"_count": 2, "": {"_count": 1}, "beard": {"_count": 1}}, "faithful": {"_count": 2, "friendship": {"_count": 1}, "servant": {"_count": 1}}, "velvet": {"_count": 1, "smoking": {"_count": 1}}, "questioned": {"_count": 1, "him": {"_count": 1}}, "witchard": {"_count": 1, "o": {"_count": 1}}, "resorted": {"_count": 1, "to": {"_count": 1}}, "snored": {"_count": 1, "on": {"_count": 1}}, "longer": {"_count": 1, "the": {"_count": 1}}, "clanking": {"_count": 2, "up": {"_count": 1}, "goblins": {"_count": 1}}, "alarmed": {"_count": 1, "me": {"_count": 1}}, "outrage": {"_count": 1, "": {"_count": 1}}, "accurate": {"_count": 1, "summary": {"_count": 1}}, "these": {"_count": 2, "crucial": {"_count": 1}, "experiences": {"_count": 1}}, "robbed": {"_count": 1, "of": {"_count": 1}}, "whom": {"_count": 2, "Lucius": {"_count": 1}, "he": {"_count": 1}}, "diminished": {"_count": 1, "soul": {"_count": 1}}, "remarkable": {"_count": 1, "thing": {"_count": 1}}, "acted": {"_count": 1, "on": {"_count": 1}}, "strikes": {"_count": 1, "back": {"_count": 1}}, "destroy": {"_count": 5, "": {"_count": 1}, "the": {"_count": 2}, "them": {"_count": 1}, "Horcruxes": {"_count": 1}}, "redirecting": {"_count": 1, "his": {"_count": 1}}, "surrounded": {"_count": 2, "by": {"_count": 1}, "it": {"_count": 1}}, "ponder": {"_count": 1, "what": {"_count": 1}}, "shrugging": {"_count": 1, "but": {"_count": 1}}, "soul": {"_count": 2, "of": {"_count": 2}}, "assumed": {"_count": 3, "he": {"_count": 1}, "that": {"_count": 1}, "an": {"_count": 1}}, "chest": {"_count": 1, "as": {"_count": 1}}, "staggering": {"_count": 2, "Harry": {"_count": 1}, "around": {"_count": 1}}, "traced": {"_count": 1, "it": {"_count": 1}}, "sob": {"_count": 1, "with": {"_count": 1}}, "friend": {"_count": 1, "": {"_count": 1}}, "roads": {"_count": 1, "bordered": {"_count": 1}}, "damaged": {"_count": 1, "furniture": {"_count": 1}}, "Fanged": {"_count": 1, "Frisbees": {"_count": 1}}, "pointless": {"_count": 1, "work": {"_count": 1}}, "fiftysix": {"_count": 1, "": {"_count": 1}}, "Romilda": {"_count": 1, "Vane": {"_count": 1}}, "sullen": {"_count": 1, "with": {"_count": 1}}, "cackling": {"_count": 1, "loudly": {"_count": 1}}, "dumped": {"_count": 1, "them": {"_count": 1}}, "resentment": {"_count": 2, "fought": {"_count": 1}, "swelled": {"_count": 1}}, "risky": {"_count": 1, "had": {"_count": 1}}, "paced": {"_count": 1, "up": {"_count": 1}}, "exercising": {"_count": 1, "every": {"_count": 1}}, "sweating": {"_count": 2, "rather": {"_count": 1}, "": {"_count": 1}}, "wood": {"_count": 2, "smoke": {"_count": 1}, "": {"_count": 1}}, "starstrewn": {"_count": 1, "sky": {"_count": 1}}, "churning": {"_count": 1, "below": {"_count": 1}}, "boats": {"_count": 1, "cannot": {"_count": 1}}, "ours": {"_count": 1, "lies": {"_count": 1}}, "weighed": {"_count": 1, "him": {"_count": 1}}, "seaweed": {"_count": 1, "he": {"_count": 1}}, "glimmered": {"_count": 1, "like": {"_count": 1}}, "caressed": {"_count": 1, "it": {"_count": 1}}, "touching": {"_count": 1, "but": {"_count": 1}}, "exposing": {"_count": 1, "the": {"_count": 1}}, "sprites": {"_count": 1, "": {"_count": 1}}, "grip": {"_count": 1, "something": {"_count": 1}}, "unqualified": {"_count": 1, "": {"_count": 1}}, "forgetful": {"_count": 1, "when": {"_count": 1}}, "darkness": {"_count": 2, "nothing": {"_count": 1}, "they": {"_count": 1}}, "beneath": {"_count": 1, "them": {"_count": 1}}, "refilled": {"_count": 1, "it": {"_count": 1}}, "lunging": {"_count": 1, "forward": {"_count": 1}}, "everywhere": {"_count": 2, "Harry": {"_count": 2}}, "surely": {"_count": 1, "back": {"_count": 1}}, "faltered": {"_count": 1, "they": {"_count": 1}}, "damper": {"_count": 1, "than": {"_count": 1}}, "Ronald": {"_count": 1, "Weasley": {"_count": 1}}, "comfort": {"_count": 2, "from": {"_count": 1}, "her": {"_count": 1}}, "badly": {"_count": 1, "judged": {"_count": 1}}, "pass": {"_count": 2, "that": {"_count": 1}, "information": {"_count": 1}}, "conversational": {"_count": 1, "but": {"_count": 1}}, "means": {"_count": 1, "": {"_count": 1}}, "whiskers": {"_count": 2, "whose": {"_count": 1}, "with": {"_count": 1}}, "unmistakably": {"_count": 1, "of": {"_count": 1}}, "wand": {"_count": 3, "were": {"_count": 1}, "pointing": {"_count": 1}, "": {"_count": 1}}, "shock": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "slippery": {"_count": 2, "on": {"_count": 1}, "where": {"_count": 1}}, "pajamaclad": {"_count": 1, "Hufflepuffs": {"_count": 1}}, "miraculously": {"_count": 1, "his": {"_count": 1}}, "contempt": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "screeching": {"_count": 1, "as": {"_count": 1}}, "dog": {"_count": 1, "hair": {"_count": 1}}, "alive": {"_count": 1, "body": {"_count": 1}}, "pains": {"_count": 1, "in": {"_count": 1}}, "inescapable": {"_count": 1, "was": {"_count": 1}}, "teachers": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "crouched": {"_count": 1, "down": {"_count": 1}}, "incomprehensible": {"_count": 1, "truth": {"_count": 1}}, "intend": {"_count": 2, "to": {"_count": 2}}, "disarmed": {"_count": 1, "him": {"_count": 1}}, "infamy": {"_count": 1, "feverishly": {"_count": 1}}, "Nymphadora": {"_count": 1, "were": {"_count": 1}}, "lost": {"_count": 2, "track": {"_count": 1}, "loved": {"_count": 1}}, "Greyback": {"_count": 2, "were": {"_count": 1}, "wheeled": {"_count": 1}}, "untroubled": {"_count": 1, "": {"_count": 1}}, "Professors": {"_count": 1, "Sprout": {"_count": 1}}, "trickling": {"_count": 1, "down": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "hour": {"_count": 1, "by": {"_count": 1}}, "winding": {"_count": 1, "path": {"_count": 1}}, "eliminated": {"_count": 1, "before": {"_count": 1}}, "hornrimmed": {"_count": 1, "glasses": {"_count": 1}}, "smart": {"_count": 1, "old": {"_count": 1}}, "dignified": {"_count": 1, "in": {"_count": 1}}, "Grawp": {"_count": 4, "patted": {"_count": 1}, "who": {"_count": 1}, "s": {"_count": 1}, "peered": {"_count": 1}}, "tweak": {"_count": 1, "and": {"_count": 1}}, "undeniably": {"_count": 1, "than": {"_count": 1}}, "stroking": {"_count": 1, "her": {"_count": 1}}, "Aurors": {"_count": 1, "wont": {"_count": 1}}, "Yaxley": {"_count": 10, "sped": {"_count": 1}, "as": {"_count": 1}, "lingered": {"_count": 1}, "subsided": {"_count": 1}, "but": {"_count": 1}, "were": {"_count": 1}, "still": {"_count": 1}, "and": {"_count": 2}, "rejoined": {"_count": 1}}, "sumptuously": {"_count": 1, "decorated": {"_count": 1}}, "ornate": {"_count": 1, "table": {"_count": 1}}, "chance": {"_count": 2, "those": {"_count": 1}, "and": {"_count": 1}}, "shadowed": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 2, "again": {"_count": 2}}, "demeanor": {"_count": 1, "where": {"_count": 1}}, "impassive": {"_count": 1, "Bellatrix": {"_count": 1}}, "imploring": {"_count": 1, "": {"_count": 1}}, "Charity": {"_count": 1, "fell": {"_count": 1}}, "polluting": {"_count": 1, "the": {"_count": 1}}, "creaked": {"_count": 1, "": {"_count": 1}}, "slithered": {"_count": 1, "from": {"_count": 1}}, "swearing": {"_count": 1, "under": {"_count": 1}}, "withdrawn": {"_count": 1, "it": {"_count": 1}}, "POTTER": {"_count": 1, "STINKS": {"_count": 1}}, "wornout": {"_count": 1, "Sneakoscope": {"_count": 1}}, "greenish": {"_count": 1, "hue": {"_count": 1}}, "encouragement": {"_count": 2, "with": {"_count": 1}, "while": {"_count": 1}}, "Adalbert": {"_count": 1, "Waffling": {"_count": 1}}, "unlike": {"_count": 1, "Albus": {"_count": 1}}, "cannot": {"_count": 1, "have": {"_count": 1}}, "observing": {"_count": 1, "foreign": {"_count": 1}}, "sole": {"_count": 1, "breadwinner": {"_count": 1}}, "Albuss": {"_count": 1, "feeling": {"_count": 1}}, "Aberforth": {"_count": 5, "but": {"_count": 1}, "": {"_count": 1}, "wore": {"_count": 1}, "in": {"_count": 1}, "looked": {"_count": 1}}, "Grindelwald": {"_count": 4, "in": {"_count": 1}, "put": {"_count": 1}, "parted": {"_count": 1}, "I": {"_count": 1}}, "silverhaired": {"_count": 1, "and": {"_count": 1}}, "Lies": {"_count": 6, "of": {"_count": 4}, "ofAlbus": {"_count": 2}}, "longstanding": {"_count": 1, "friend": {"_count": 1}}, "laughs": {"_count": 1, "": {"_count": 1}}, "extraordinary": {"_count": 1, "life": {"_count": 1}}, "disturbing": {"_count": 2, "phase": {"_count": 1}, "Nagini": {"_count": 1}}, "fury": {"_count": 3, "rose": {"_count": 1}, "he": {"_count": 1}, "mounted": {"_count": 1}}, "unpacking": {"_count": 1, "and": {"_count": 1}}, "repacking": {"_count": 1, "the": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "mistrusted": {"_count": 1, "": {"_count": 1}}, "Dedalus": {"_count": 2, "Diggle": {"_count": 1}, "to": {"_count": 1}}, "explosions": {"_count": 1, "and": {"_count": 1}}, "derailments": {"_count": 1, "and": {"_count": 1}}, "downstairs": {"_count": 1, "": {"_count": 1}}, "knobs": {"_count": 1, "said": {"_count": 1}}, "astonished": {"_count": 1, "himself": {"_count": 1}}, "wrung": {"_count": 1, "Harrys": {"_count": 1}}, "bag": {"_count": 1, "near": {"_count": 1}}, "umbrellas": {"_count": 1, "remembering": {"_count": 1}}, "goggles": {"_count": 1, "and": {"_count": 1}}, "chattering": {"_count": 1, "they": {"_count": 1}}, "hangdog": {"_count": 1, "with": {"_count": 1}}, "grimaced": {"_count": 2, "the": {"_count": 1}, "as": {"_count": 1}}, "vice": {"_count": 1, "versa": {"_count": 1}}, "owl": {"_count": 2, "cages": {"_count": 1}, "onto": {"_count": 1}}, "luggageladen": {"_count": 1, "Harrys": {"_count": 1}}, "pathetic": {"_count": 1, "as": {"_count": 1}}, "avoided": {"_count": 1, "it": {"_count": 1}}, "zigzagged": {"_count": 1, "Harry": {"_count": 1}}, "leather": {"_count": 1, "that": {"_count": 1}}, "expected": {"_count": 1, "him": {"_count": 1}}, "giddy": {"_count": 1, "": {"_count": 1}}, "kinder": {"_count": 1, "": {"_count": 1}}, "Ted": {"_count": 1, "exchanged": {"_count": 1}}, "insincere": {"_count": 1, "": {"_count": 1}}, "line": {"_count": 1, "had": {"_count": 1}}, "apologies": {"_count": 1, "Harry": {"_count": 1}}, "wed": {"_count": 1, "missed": {"_count": 1}}, "Dung": {"_count": 1, "were": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "zat": {"_count": 1, "eez": {"_count": 1}}, "completeness": {"_count": 1, "of": {"_count": 1}}, "blackmailed": {"_count": 1, "Did": {"_count": 1}}, "awkward": {"_count": 1, "silence": {"_count": 1}}, "throb": {"_count": 1, "and": {"_count": 1}}, "frustrated": {"_count": 1, "he": {"_count": 1}}, "planning": {"_count": 1, "shell": {"_count": 1}}, "served": {"_count": 1, "apple": {"_count": 1}}, "Grammatica": {"_count": 1, "onto": {"_count": 1}}, "hiccuped": {"_count": 1, "": {"_count": 1}}, "retied": {"_count": 1, "it": {"_count": 1}}, "defiance": {"_count": 1, "": {"_count": 1}}, "Monica": {"_count": 2, "Wilkins": {"_count": 2}}, "interrogate": {"_count": 1, "them": {"_count": 1}}, "size": {"_count": 1, "and": {"_count": 1}}, "trace": {"_count": 1, "the": {"_count": 1}}, "stooped": {"_count": 1, "to": {"_count": 1}}, "After": {"_count": 1, "you": {"_count": 1}}, "Not": {"_count": 1, "at": {"_count": 1}}, "jabbering": {"_count": 1, "away": {"_count": 1}}, "flutter": {"_count": 1, "excitedly": {"_count": 1}}, "purely": {"_count": 1, "for": {"_count": 1}}, "Monsieur": {"_count": 1, "Delacour": {"_count": 1}}, "unencumbered": {"_count": 1, "whereas": {"_count": 1}}, "announce": {"_count": 1, "that": {"_count": 1}}, "drape": {"_count": 1, "themselves": {"_count": 1}}, "bushes": {"_count": 2, "": {"_count": 1}, "searching": {"_count": 1}}, "direct": {"_count": 1, "contact": {"_count": 1}}, "Testament": {"_count": 1, "of": {"_count": 1}}, "restore": {"_count": 1, "it": {"_count": 1}}, "instructive": {"_count": 1, "": {"_count": 1}}, "peeling": {"_count": 1, "in": {"_count": 1}}, "Scrimgeour": {"_count": 1, "leaned": {"_count": 1}}, "insubordination": {"_count": 1, "": {"_count": 1}}, "displayed": {"_count": 1, "to": {"_count": 1}}, "lamented": {"_count": 1, "the": {"_count": 1}}, "R": {"_count": 1, "": {"_count": 1}}, "unresponsive": {"_count": 1, "": {"_count": 1}}, "\u2018Cinderella": {"_count": 1, "Whats": {"_count": 1}}, "bees": {"_count": 1, "were": {"_count": 1}}, "hedgerow": {"_count": 1, "": {"_count": 1}}, "tight": {"_count": 2, "in": {"_count": 1}, "Again": {"_count": 1}}, "darting": {"_count": 2, "past": {"_count": 1}, "around": {"_count": 1}}, "reinforced": {"_count": 1, "seat": {"_count": 1}}, "Xenophilius": {"_count": 1, "toward": {"_count": 1}}, "feathery": {"_count": 1, "pink": {"_count": 1}}, "beamed": {"_count": 1, "at": {"_count": 1}}, "chimes": {"_count": 1, "to": {"_count": 1}}, "surrounding": {"_count": 1, "countryside": {"_count": 1}}, "firewhisky": {"_count": 1, "others": {"_count": 1}}, "sandwiches": {"_count": 1, "": {"_count": 1}}, "congratulate": {"_count": 1, "them": {"_count": 1}}, "dance": {"_count": 1, "he": {"_count": 1}}, "glowered": {"_count": 1, "at": {"_count": 1}}, "moths": {"_count": 1, "began": {"_count": 1}}, "Doge": {"_count": 1, "looked": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "plopped": {"_count": 1, "herself": {"_count": 1}}, "solemn": {"_count": 1, "at": {"_count": 1}}, "respectable": {"_count": 1, "and": {"_count": 1}}, "encouraged": {"_count": 1, "to": {"_count": 1}}, "talented": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "bleat": {"_count": 1, "feebly": {"_count": 1}}, "Jamess": {"_count": 1, "to": {"_count": 1}}, "act": {"_count": 1, "naturally": {"_count": 1}}, "coffee": {"_count": 1, "": {"_count": 1}}, "brief": {"_count": 1, "as": {"_count": 1}}, "land": {"_count": 1, "upon": {"_count": 1}}, "camp": {"_count": 1, "in": {"_count": 1}}, "dawn": {"_count": 1, "and": {"_count": 1}}, "abuse": {"_count": 1, "as": {"_count": 1}}, "pictures": {"_count": 1, "that": {"_count": 1}}, "glazed": {"_count": 1, "eyes": {"_count": 1}}, "happier": {"_count": 1, "than": {"_count": 1}}, "wateryeyed": {"_count": 1, "flushed": {"_count": 1}}, "included": {"_count": 1, "": {"_count": 1}}, "sundry": {"_count": 1, "pages": {"_count": 1}}, "crumpled": {"_count": 2, "": {"_count": 1}, "insensible": {"_count": 1}}, "already": {"_count": 1, "zooming": {"_count": 1}}, "crawled": {"_count": 1, "under": {"_count": 1}}, "armchair": {"_count": 1, "": {"_count": 1}}, "rran": {"_count": 1, "": {"_count": 1}}, "Disapparate": {"_count": 1, "in": {"_count": 1}}, "Master": {"_count": 1, "Regulus": {"_count": 1}}, "wept": {"_count": 1, "": {"_count": 1}}, "swimming": {"_count": 1, "in": {"_count": 1}}, "Regulus": {"_count": 2, "certainly": {"_count": 1}, "s": {"_count": 1}}, "parroted": {"_count": 1, "their": {"_count": 1}}, "\u2018Miss": {"_count": 1, "Bella": {"_count": 1}}, "misery": {"_count": 1, "and": {"_count": 1}}, "assured": {"_count": 1, "him": {"_count": 1}}, "glistened": {"_count": 1, "off": {"_count": 1}}, "purposes": {"_count": 1, "theyre": {"_count": 1}}, "gratitude": {"_count": 1, "he": {"_count": 1}}, "rallying": {"_count": 1, "point": {"_count": 1}}, "halfbloods": {"_count": 1, "swear": {"_count": 1}}, "wished": {"_count": 1, "that": {"_count": 1}}, "Everything": {"_count": 1, "is": {"_count": 1}}, "normal": {"_count": 2, "smiling": {"_count": 1}, "witches": {"_count": 1}}, "haughty": {"_count": 1, "Kendra": {"_count": 1}}, "relocate": {"_count": 1, "to": {"_count": 1}}, "neighbors": {"_count": 2, "who": {"_count": 1}, "often": {"_count": 1}}, "tobacco": {"_count": 1, "smoke": {"_count": 1}}, "accomplices": {"_count": 1, "": {"_count": 1}}, "brown": {"_count": 2, "": {"_count": 1}, "over": {"_count": 1}}, "plates": {"_count": 1, "already": {"_count": 1}}, "handdrawn": {"_count": 1, "maps": {"_count": 1}}, "values": {"_count": 1, "Like": {"_count": 1}}, "cutting": {"_count": 1, "off": {"_count": 1}}, "perused": {"_count": 1, "the": {"_count": 1}}, "teaching": {"_count": 1, "or": {"_count": 1}}, "protect": {"_count": 1, "the": {"_count": 1}}, "ladled": {"_count": 1, "out": {"_count": 1}}, "hills": {"_count": 1, "a": {"_count": 1}}, "communicate": {"_count": 1, "with": {"_count": 1}}, "maps": {"_count": 1, "that": {"_count": 1}}, "learned": {"_count": 1, "by": {"_count": 1}}, "notes": {"_count": 1, "now": {"_count": 1}}, "unbolted": {"_count": 1, "the": {"_count": 1}}, "treacle": {"_count": 1, "tart": {"_count": 1}}, "hot": {"_count": 2, "rolls": {"_count": 1}, "stickiness": {"_count": 1}}, "promising": {"_count": 1, "to": {"_count": 1}}, "near": {"_count": 1, "suffocation": {"_count": 1}}, "retched": {"_count": 1, "trying": {"_count": 1}}, "ferrety": {"_count": 1, "as": {"_count": 1}}, "marry": {"_count": 1, "a": {"_count": 1}}, "Support": {"_count": 1, "Staff": {"_count": 1}}, "occupation": {"_count": 1, "upon": {"_count": 1}}, "squares": {"_count": 1, "of": {"_count": 1}}, "dried": {"_count": 1, "flowers": {"_count": 1}}, "notebooks": {"_count": 1, "and": {"_count": 1}}, "Spellotape": {"_count": 1, "enchanted": {"_count": 1}}, "clips": {"_count": 1, "but": {"_count": 1}}, "baskets": {"_count": 1, "of": {"_count": 1}}, "wildeyed": {"_count": 1, "Ron": {"_count": 1}}, "carpeted": {"_count": 1, "corridors": {"_count": 1}}, "shockingly": {"_count": 1, "amid": {"_count": 1}}, "Alfred": {"_count": 1, "Cattermole": {"_count": 1}}, "dangled": {"_count": 1, "over": {"_count": 1}}, "obliterated": {"_count": 1, "his": {"_count": 1}}, "leaped": {"_count": 1, "toward": {"_count": 1}}, "melted": {"_count": 1, "into": {"_count": 1}}, "punched": {"_count": 1, "him": {"_count": 1}}, "twigs": {"_count": 2, "": {"_count": 1}, "told": {"_count": 1}}, "darkest": {"_count": 1, "": {"_count": 1}}, "oppressive": {"_count": 1, "though": {"_count": 1}}, "friendlier": {"_count": 1, "a": {"_count": 1}}, "poles": {"_count": 1, "": {"_count": 1}}, "mugs": {"_count": 1, "from": {"_count": 1}}, "Mugglerepelling": {"_count": 1, "charms": {"_count": 1}}, "squirrels": {"_count": 1, "": {"_count": 1}}, "stewed": {"_count": 1, "in": {"_count": 1}}, "eerily": {"_count": 1, "bound": {"_count": 1}}, "bigger": {"_count": 2, "until": {"_count": 1}, "as": {"_count": 1}}, "Gregorovitch": {"_count": 1, "s": {"_count": 1}}, "Georgeish": {"_count": 1, "air": {"_count": 1}}, "resilientlooking": {"_count": 1, "tree": {"_count": 1}}, "discuss": {"_count": 1, "what": {"_count": 1}}, "impressions": {"_count": 1, "on": {"_count": 1}}, "mouthing": {"_count": 1, "the": {"_count": 1}}, "realizing": {"_count": 1, "as": {"_count": 1}}, "startling": {"_count": 1, "both": {"_count": 1}}, "gloom": {"_count": 1, "": {"_count": 1}}, "hunger": {"_count": 1, "made": {"_count": 1}}, "irascible": {"_count": 1, "": {"_count": 1}}, "brooded": {"_count": 1, "over": {"_count": 1}}, "Burke": {"_count": 1, "were": {"_count": 1}}, "throttle": {"_count": 1, "him": {"_count": 1}}, "marble": {"_count": 1, "floors": {"_count": 1}}, "secluded": {"_count": 1, "spot": {"_count": 1}}, "pebbly": {"_count": 1, "cove": {"_count": 1}}, "whereabouts": {"_count": 1, "Harry": {"_count": 1}}, "rambling": {"_count": 1, "journey": {"_count": 1}}, "moan": {"_count": 1, "and": {"_count": 1}}, "gush": {"_count": 1, "of": {"_count": 1}}, "scraping": {"_count": 2, "noises": {"_count": 1}, "drew": {"_count": 1}}, "fed": {"_count": 1, "the": {"_count": 1}}, "unmelodious": {"_count": 1, "tongue": {"_count": 1}}, "flames": {"_count": 1, "": {"_count": 1}}, "pleasant": {"_count": 1, "voice": {"_count": 1}}, "tin": {"_count": 1, "mugs": {"_count": 1}}, "Gornuk": {"_count": 2, "laughed": {"_count": 1}, "may": {"_count": 1}}, "Dirks": {"_count": 1, "laughter": {"_count": 1}}, "cruelly": {"_count": 1, "said": {"_count": 1}}, "retching": {"_count": 3, "plus": {"_count": 1}, "soaking": {"_count": 1}, "": {"_count": 1}}, "sniggered": {"_count": 1, "": {"_count": 1}}, "Mummyll": {"_count": 1, "be": {"_count": 1}}, "farfetched": {"_count": 1, "their": {"_count": 1}}, "propping": {"_count": 1, "it": {"_count": 1}}, "consented": {"_count": 1, "to": {"_count": 1}}, "taunting": {"_count": 1, "kind": {"_count": 1}}, "tinned": {"_count": 1, "pears": {"_count": 1}}, "hamlets": {"_count": 1, "attracted": {"_count": 1}}, "Ottery": {"_count": 1, "St": {"_count": 1}}, "agreeing": {"_count": 1, "whenever": {"_count": 1}}, "Disapparating": {"_count": 1, "while": {"_count": 1}}, "pop": {"_count": 1, "music": {"_count": 1}}, "untouched": {"_count": 1, "": {"_count": 1}}, "Muriel": {"_count": 1, "had": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "anticipation": {"_count": 1, "": {"_count": 1}}, "flurry": {"_count": 1, "of": {"_count": 1}}, "lungs": {"_count": 1, "": {"_count": 1}}, "Arianas": {"_count": 1, "": {"_count": 1}}, "snow": {"_count": 1, "but": {"_count": 1}}, "thickly": {"_count": 1, "rusted": {"_count": 1}}, "weeds": {"_count": 1, "like": {"_count": 1}}, "hobbled": {"_count": 1, "off": {"_count": 1}}, "mottled": {"_count": 1, "against": {"_count": 1}}, "mildewed": {"_count": 1, "smell": {"_count": 1}}, "Bathilda": {"_count": 1, "he": {"_count": 1}}, "narrow": {"_count": 1, "Harry": {"_count": 1}}, "ricocheting": {"_count": 1, "back": {"_count": 1}}, "windy": {"_count": 1, "two": {"_count": 1}}, "rightness": {"_count": 1, "in": {"_count": 1}}, "forearm": {"_count": 1, "to": {"_count": 1}}, "forehead": {"_count": 1, "but": {"_count": 1}}, "naked": {"_count": 1, "as": {"_count": 1}}, "undreamedof": {"_count": 1, "terrors": {"_count": 1}}, "unaided": {"_count": 1, "Nothing": {"_count": 1}}, "eventually": {"_count": 1, "he": {"_count": 1}}, "delicate": {"_count": 1, "": {"_count": 1}}, "prizes": {"_count": 1, "however": {"_count": 1}}, "appalled": {"_count": 1, "though": {"_count": 1}}, "establishing": {"_count": 1, "Wizard": {"_count": 1}}, "caring": {"_count": 1, "for": {"_count": 1}}, "disappearances": {"_count": 1, "his": {"_count": 1}}, "wisdom": {"_count": 1, "": {"_count": 1}}, "spiraling": {"_count": 1, "against": {"_count": 1}}, "Muggleborn": {"_count": 1, "rights": {"_count": 1}}, "prowlings": {"_count": 1, "from": {"_count": 1}}, "dazzling": {"_count": 1, "picking": {"_count": 1}}, "angled": {"_count": 1, "the": {"_count": 1}}, "coughing": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "feel": {"_count": 1, "the": {"_count": 1}}, "entwined": {"_count": 1, "herself": {"_count": 1}}, "claim": {"_count": 1, "him": {"_count": 1}}, "fierce": {"_count": 2, "": {"_count": 2}}, "curiosity": {"_count": 1, "": {"_count": 1}}, "bluish": {"_count": 1, "like": {"_count": 1}}, "packed": {"_count": 1, "it": {"_count": 1}}, "saved": {"_count": 1, "Harry": {"_count": 1}}, "reduce": {"_count": 1, "the": {"_count": 1}}, "tune": {"_count": 1, "it": {"_count": 1}}, "clues": {"_count": 1, "The": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "war": {"_count": 1, "said": {"_count": 1}}, "theyve": {"_count": 3, "gone": {"_count": 1}, "been": {"_count": 1}, "gorn": {"_count": 1}}, "bushy": {"_count": 1, "crowns": {"_count": 1}}, "bore": {"_count": 1, "a": {"_count": 1}}, "birds": {"_count": 1, "in": {"_count": 1}}, "workplace": {"_count": 1, "and": {"_count": 1}}, "entirely": {"_count": 1, "round": {"_count": 1}}, "wheels": {"_count": 1, "": {"_count": 1}}, "clatters": {"_count": 1, "": {"_count": 1}}, "highly": {"_count": 1, "magical": {"_count": 1}}, "mesmerized": {"_count": 1, "": {"_count": 1}}, "joining": {"_count": 1, "Harry": {"_count": 1}}, "admiring": {"_count": 1, "Deaths": {"_count": 1}}, "suffered": {"_count": 1, "": {"_count": 1}}, "equals": {"_count": 1, "they": {"_count": 1}}, "circle": {"_count": 2, "in": {"_count": 1}, "representing": {"_count": 1}}, "truly": {"_count": 2, "renders": {"_count": 2}}, "endures": {"_count": 2, "eternally": {"_count": 2}}, "impenetrable": {"_count": 2, "concealment": {"_count": 2}}, "test": {"_count": 1, "them": {"_count": 1}}, "Livius": {"_count": 1, "": {"_count": 1}}, "Ignotus": {"_count": 1, "": {"_count": 1}}, "numerous": {"_count": 1, "Quibblers": {"_count": 1}}, "captioned": {"_count": 1, "with": {"_count": 1}}, "paper": {"_count": 1, "and": {"_count": 1}}, "rubble": {"_count": 2, "flew": {"_count": 1}, "and": {"_count": 1}}, "fallen": {"_count": 2, "backward": {"_count": 1}, "": {"_count": 1}}, "blow": {"_count": 1, "us": {"_count": 1}}, "Nargles": {"_count": 1, "": {"_count": 1}}, "wonder": {"_count": 1, "erupted": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "chasing": {"_count": 1}}, "persisted": {"_count": 1, "through": {"_count": 1}}, "depressing": {"_count": 1, "": {"_count": 1}}, "exhorting": {"_count": 1, "the": {"_count": 1}}, "Romulus": {"_count": 1, "Lee": {"_count": 1}}, "Daily": {"_count": 1, "Prophet": {"_count": 1}}, "Dirk": {"_count": 1, "Cresswell": {"_count": 1}}, "worth": {"_count": 1, "saving": {"_count": 1}}, "shame": {"_count": 3, "welled": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "crashes": {"_count": 1, "the": {"_count": 1}}, "Grey": {"_count": 1, "back": {"_count": 1}}, "sores": {"_count": 1, "at": {"_count": 1}}, "Griphook": {"_count": 11, "in": {"_count": 1}, "the": {"_count": 1}, "are": {"_count": 1}, "entered": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "tightened": {"_count": 1}, "followed": {"_count": 1}, "trotting": {"_count": 1}, "landed": {"_count": 1}, "who": {"_count": 1}}, "Scabior": {"_count": 1, "": {"_count": 1}}, "coils": {"_count": 1, "into": {"_count": 1}}, "pink": {"_count": 1, "every": {"_count": 1}}, "irresistible": {"_count": 1, "force": {"_count": 1}}, "musty": {"_count": 1, "room": {"_count": 1}}, "struggle": {"_count": 1, "against": {"_count": 1}}, "disoriented": {"_count": 1, "many": {"_count": 1}}, "upstairs": {"_count": 1, "Hermione": {"_count": 1}}, "determined": {"_count": 1, "": {"_count": 1}}, "hers": {"_count": 1, "flew": {"_count": 1}}, "Greybacks": {"_count": 1, "wands": {"_count": 1}}, "stormy": {"_count": 1, "sea": {"_count": 1}}, "chains": {"_count": 1, "falling": {"_count": 1}}, "wrested": {"_count": 1, "the": {"_count": 1}}, "Narcissas": {"_count": 1, "wand": {"_count": 1}}, "understanding": {"_count": 2, "blossomed": {"_count": 1}, "was": {"_count": 1}}, "stripped": {"_count": 1, "off": {"_count": 1}}, "unsteady": {"_count": 1, "on": {"_count": 1}}, "faintly": {"_count": 1, "gold": {"_count": 1}}, "separately": {"_count": 1, "": {"_count": 1}}, "elves": {"_count": 1, "are": {"_count": 1}}, "goblins": {"_count": 3, "": {"_count": 1}, "I": {"_count": 1}, "have": {"_count": 1}}, "armor": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "it": {"_count": 1}}, "imprisoned": {"_count": 1, "by": {"_count": 1}}, "arouses": {"_count": 1, "such": {"_count": 1}}, "duplicating": {"_count": 1, "the": {"_count": 1}}, "whitewashed": {"_count": 1, "": {"_count": 1}}, "flow": {"_count": 1, "of": {"_count": 1}}, "best": {"_count": 2, "protected": {"_count": 1}, "home": {"_count": 1}}, "various": {"_count": 1, "fungi": {"_count": 1}}, "twinkling": {"_count": 1, "in": {"_count": 1}}, "diamonds": {"_count": 1, "said": {"_count": 1}}, "challenging": {"_count": 1, "": {"_count": 1}}, "form": {"_count": 1, "a": {"_count": 1}}, "bade": {"_count": 1, "me": {"_count": 1}}, "crackled": {"_count": 1, "and": {"_count": 1}}, "repayment": {"_count": 1, "are": {"_count": 1}}, "treasure": {"_count": 1, "that": {"_count": 1}}, "wavy": {"_count": 1, "he": {"_count": 1}}, "fleeing": {"_count": 1, "as": {"_count": 1}}, "Travers": {"_count": 1, "headed": {"_count": 1}}, "veins": {"_count": 1, "connecting": {"_count": 1}}, "Bogrod": {"_count": 2, "who": {"_count": 1}, "must": {"_count": 1}}, "beardless": {"_count": 1, "again": {"_count": 1}}, "flaky": {"_count": 1, "during": {"_count": 1}}, "guessed": {"_count": 1, "that": {"_count": 1}}, "Flagrante": {"_count": 1, "Curses": {"_count": 1}}, "multiply": {"_count": 1, "but": {"_count": 1}}, "crevice": {"_count": 1, "turning": {"_count": 1}}, "replicas": {"_count": 1, "burst": {"_count": 1}}, "inspiration": {"_count": 1, "or": {"_count": 1}}, "crumbled": {"_count": 1, "": {"_count": 1}}, "launched": {"_count": 1, "itself": {"_count": 1}}, "blistered": {"_count": 1, "skin": {"_count": 1}}, "fresher": {"_count": 1, "air": {"_count": 1}}, "rivers": {"_count": 1, "winding": {"_count": 1}}, "glossy": {"_count": 1, "ribbon": {"_count": 1}}, "towns": {"_count": 1, "gliding": {"_count": 1}}, "lakes": {"_count": 1, "coppery": {"_count": 1}}, "plummeted": {"_count": 1, "feetfirst": {"_count": 1}}, "mud": {"_count": 1, "than": {"_count": 1}}, "ttwo": {"_count": 1, "accomplices": {"_count": 1}}, "precious": {"_count": 1, "had": {"_count": 1}}, "carelessness": {"_count": 1, "prove": {"_count": 1}}, "low": {"_count": 1, "after": {"_count": 1}}, "risen": {"_count": 1, "into": {"_count": 1}}, "hooded": {"_count": 3, "Death": {"_count": 1}, "men": {"_count": 1}, "others": {"_count": 1}}, "horned": {"_count": 1, "erupted": {"_count": 1}}, "summoned": {"_count": 1, "him": {"_count": 1}}, "poisons": {"_count": 1, "when": {"_count": 1}}, "wine": {"_count": 1, "": {"_count": 1}}, "uncertainties": {"_count": 1, "about": {"_count": 1}}, "harmless": {"_count": 1, "": {"_count": 1}}, "repulsion": {"_count": 1, "he": {"_count": 1}}, "taught": {"_count": 1, "the": {"_count": 1}}, "Ariana": {"_count": 1, "": {"_count": 1}}, "veined": {"_count": 1, "hands": {"_count": 1}}, "dementors": {"_count": 1, "waiting": {"_count": 1}}, "relatives": {"_count": 1, "on": {"_count": 1}}, "Grans": {"_count": 1, "on": {"_count": 1}}, "Michael": {"_count": 1, "Corner": {"_count": 1}}, "located": {"_count": 1, "his": {"_count": 1}}, "Lunas": {"_count": 1, "dots": {"_count": 1}}, "painted": {"_count": 1, "with": {"_count": 1}}, "bookcases": {"_count": 1, "and": {"_count": 1}}, "Stun": {"_count": 1, "Amycus": {"_count": 1}}, "whats": {"_count": 1, "the": {"_count": 1}}, "smacking": {"_count": 1, "himself": {"_count": 1}}, "affection": {"_count": 1, "for": {"_count": 1}}, "cowardice": {"_count": 1, "said": {"_count": 1}}, "solidified": {"_count": 2, "in": {"_count": 2}}, "Sprouts": {"_count": 1, "yells": {"_count": 1}}, "suits": {"_count": 1, "of": {"_count": 1}}, "spiked": {"_count": 1, "balls": {"_count": 1}}, "prefects": {"_count": 1, "": {"_count": 1}}, "everyones": {"_count": 1, "meeting": {"_count": 1}}, "Her": {"_count": 1, "eyes": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "calmly": {"_count": 1, "and": {"_count": 1}}, "overwhelmed": {"_count": 1, "saw": {"_count": 1}}, "fruitlessly": {"_count": 1, "as": {"_count": 1}}, "drifted": {"_count": 2, "away": {"_count": 1}, "sideways": {"_count": 1}}, "floorlength": {"_count": 1, "cloak": {"_count": 1}}, "retrieved": {"_count": 1, "the": {"_count": 1}}, "furry": {"_count": 1, "detached": {"_count": 1}}, "ribcracking": {"_count": 1, "hug": {"_count": 1}}, "crumble": {"_count": 1, "": {"_count": 1}}, "operated": {"_count": 1, "alone": {"_count": 1}}, "breeches": {"_count": 1, "in": {"_count": 1}}, "cloaks": {"_count": 1, "cramming": {"_count": 1}}, "rogues": {"_count": 1, "dogs": {"_count": 1}}, "scoundrels": {"_count": 1, "drive": {"_count": 1}}, "assist": {"_count": 1, "him": {"_count": 1}}, "responded": {"_count": 1, "with": {"_count": 1}}, "roaring": {"_count": 1, "his": {"_count": 1}}, "unidentifiable": {"_count": 1, "junk": {"_count": 1}}, "dragons": {"_count": 1, "rose": {"_count": 1}}, "horns": {"_count": 1, "and": {"_count": 1}}, "pitching": {"_count": 1, "into": {"_count": 1}}, "shields": {"_count": 1, "a": {"_count": 1}}, "tarry": {"_count": 1, "seemed": {"_count": 1}}, "clawed": {"_count": 1, "at": {"_count": 1}}, "shield": {"_count": 2, "his": {"_count": 1}, "others": {"_count": 1}}, "semidarkness": {"_count": 1, "He": {"_count": 1}}, "singed": {"_count": 1, "sleeve": {"_count": 1}}, "inquisitive": {"_count": 1, "to": {"_count": 1}}, "seek": {"_count": 1, "him": {"_count": 1}}, "tank": {"_count": 1, "": {"_count": 1}}, "Dont": {"_count": 1, "even": {"_count": 1}}, "unmasked": {"_count": 1, "dueled": {"_count": 1}}, "smash": {"_count": 1, "through": {"_count": 1}}, "Hogwartians": {"_count": 1, "alike": {"_count": 1}}, "blows": {"_count": 1, "as": {"_count": 1}}, "saving": {"_count": 1, "Hagrid": {"_count": 1}}, "expire": {"_count": 1, "he": {"_count": 1}}, "fade": {"_count": 1, "and": {"_count": 1}}, "booms": {"_count": 1, "of": {"_count": 1}}, "plain": {"_count": 1, "The": {"_count": 1}}, "coiling": {"_count": 2, "like": {"_count": 1}, "the": {"_count": 1}}, "precisely": {"_count": 1, "as": {"_count": 1}}, "uncoiled": {"_count": 1, "or": {"_count": 1}}, "pulse": {"_count": 1, "Pain": {"_count": 1}}, "child": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "blotchy": {"_count": 1, "and": {"_count": 1}}, "hug": {"_count": 1, "her": {"_count": 1}}, "peacefullooking": {"_count": 1, "apparently": {"_count": 1}}, "disapproval": {"_count": 1, "": {"_count": 1}}, "lingered": {"_count": 1, "upon": {"_count": 1}}, "uncomfortable": {"_count": 1, "and": {"_count": 1}}, "dirtyhaired": {"_count": 1, "in": {"_count": 1}}, "twirled": {"_count": 2, "it": {"_count": 1}, "and": {"_count": 1}}, "shredded": {"_count": 1, "more": {"_count": 1}}, "hooting": {"_count": 1, "at": {"_count": 1}}, "firmly": {"_count": 1, "turned": {"_count": 1}}, "Lilys": {"_count": 1, "eyebrows": {"_count": 1}}, "Averys": {"_count": 1, "idea": {"_count": 1}}, "strayed": {"_count": 1, "inadvertently": {"_count": 1}}, "taunted": {"_count": 1, "him": {"_count": 1}}, "colors": {"_count": 2, "until": {"_count": 1}, "of": {"_count": 1}}, "impertinent": {"_count": 1, "You": {"_count": 1}}, "reasonably": {"_count": 1, "talented": {"_count": 1}}, "Rogers": {"_count": 1, "retreating": {"_count": 1}}, "guidance": {"_count": 1, "he": {"_count": 1}}, "messy": {"_count": 1, "affair": {"_count": 1}}, "real": {"_count": 1, "anger": {"_count": 1}}, "latched": {"_count": 1, "itself": {"_count": 1}}, "protected": {"_count": 1, "by": {"_count": 1}}, "lied": {"_count": 1, "for": {"_count": 1}}, "valor": {"_count": 1, "and": {"_count": 1}}, "nerve": {"_count": 1, "and": {"_count": 1}}, "bounding": {"_count": 1, "heart": {"_count": 1}}, "obediently": {"_count": 1, "he": {"_count": 1}}, "descended": {"_count": 1, "through": {"_count": 1}}, "rock": {"_count": 1, "cakes": {"_count": 1}}, "giant": {"_count": 1, "grubs": {"_count": 1}}, "ruffled": {"_count": 1, "and": {"_count": 1}}, "younger": {"_count": 1, "by": {"_count": 1}}, "easier": {"_count": 1, "than": {"_count": 1}}, "trussed": {"_count": 1, "tied": {"_count": 1}}, "uncoiling": {"_count": 1, "in": {"_count": 1}}, "rough": {"_count": 1, "flayedlooking": {"_count": 1}}, "fragile": {"_count": 1, "and": {"_count": 1}}, "wounded": {"_count": 1, "though": {"_count": 1}}, "upright": {"_count": 1, "wearing": {"_count": 1}}, "rebuilt": {"_count": 1, "his": {"_count": 1}}, "childrens": {"_count": 1, "tales": {"_count": 1}}, "innocence": {"_count": 1, "Voldemort": {"_count": 1}}, "understands": {"_count": 2, "nothing": {"_count": 1}, "that": {"_count": 1}}, "tremble": {"_count": 1, "": {"_count": 1}}, "untested": {"_count": 1, "": {"_count": 1}}, "qualities": {"_count": 1, "of": {"_count": 1}}, "mortal": {"_count": 1, "enemy": {"_count": 1}}, "defend": {"_count": 1, "Dumbledore": {"_count": 1}}, "bitterness": {"_count": 1, "": {"_count": 1}}, "wasted": {"_count": 1, "I": {"_count": 1}}, "infinitely": {"_count": 1, "more": {"_count": 1}}, "unstable": {"_count": 1, "sister": {"_count": 1}}, "caution": {"_count": 1, "": {"_count": 1}}, "stupidity": {"_count": 1, "but": {"_count": 1}}, "makes": {"_count": 1, "him": {"_count": 1}}, "jubilation": {"_count": 1, "at": {"_count": 1}}, "solicitous": {"_count": 1, "murmurs": {"_count": 1}}, "considered": {"_count": 1, "what": {"_count": 1}}, "lifeless": {"_count": 1, "and": {"_count": 1}}, "shrieks": {"_count": 1, "of": {"_count": 1}}, "visible": {"_count": 1, "in": {"_count": 1}}, "unprotected": {"_count": 1, "standing": {"_count": 1}}, "pummeled": {"_count": 1, "them": {"_count": 1}}, "homeowners": {"_count": 1, "of": {"_count": 1}}, "Magorian": {"_count": 1, "burst": {"_count": 1}}, "cleavers": {"_count": 1, "and": {"_count": 1}}, "stabbing": {"_count": 1, "at": {"_count": 1}}, "shins": {"_count": 1, "of": {"_count": 1}}, "smiting": {"_count": 1, "all": {"_count": 1}}, "elation": {"_count": 1, "as": {"_count": 1}}, "sniveled": {"_count": 1, "behind": {"_count": 1}}, "permitted": {"_count": 1, "me": {"_count": 1}}, "insane": {"_count": 1, "it": {"_count": 1}}, "shrunken": {"_count": 1, "the": {"_count": 1}}, "unknowing": {"_count": 1, "": {"_count": 1}}, "mourning": {"_count": 1, "of": {"_count": 1}}, "celebration": {"_count": 1, "": {"_count": 1}}, "symbol": {"_count": 1, "their": {"_count": 1}}, "pupils": {"_count": 1, "ghosts": {"_count": 1}}, "house": {"_count": 1, "elves": {"_count": 1}}, "bloodstains": {"_count": 1, "occurred": {"_count": 1}}, "tragedy": {"_count": 1, "of": {"_count": 1}}, "amazement": {"_count": 1, "when": {"_count": 1}}, "returning": {"_count": 1, "Death": {"_count": 1}}, "blearyeyed": {"_count": 1, "though": {"_count": 1}}, "curious": {"_count": 1, "": {"_count": 1}}, "courageous": {"_count": 1, "decision": {"_count": 1}}, "sleepdeprived": {"_count": 1, "state": {"_count": 1}}, "golden": {"_count": 1, "as": {"_count": 1}}, "Hugo": {"_count": 2, "Roses": {"_count": 1}, "laughed": {"_count": 1}}, "Rose": {"_count": 2, "looked": {"_count": 1}, "craned": {"_count": 1}}, "trolley": {"_count": 1, "and": {"_count": 1}}, "A1": {"_count": 1, "will": {"_count": 1}}, "sincere": {"_count": 1, "that": {"_count": 1}}}, "Mrs": {"_count": 888, "Dursley": {"_count": 19, "of": {"_count": 1}, "was": {"_count": 2}, "pretended": {"_count": 1}, "woke": {"_count": 1}, "gossiped": {"_count": 1}, "on": {"_count": 1}, "she": {"_count": 1}, "had": {"_count": 1}, "came": {"_count": 1}, "looked": {"_count": 1}, "": {"_count": 2}, "sipped": {"_count": 1}, "stiffly": {"_count": 1}, "fell": {"_count": 1}, "they": {"_count": 1}, "gave": {"_count": 1}, "We": {"_count": 1}}, "Potter": {"_count": 1, "was": {"_count": 1}}, "Dursleys": {"_count": 2, "sister": {"_count": 1}, "scream": {"_count": 1}}, "Next": {"_count": 1, "Doors": {"_count": 1}}, "Figgs": {"_count": 4, "broken": {"_count": 1}, "cabbagesmelling": {"_count": 1}, "": {"_count": 1}, "house": {"_count": 1}}, "Figg": {"_count": 46, "a": {"_count": 2}, "made": {"_count": 1}, "had": {"_count": 4}, "as": {"_count": 2}, "wasnt": {"_count": 1}, "an": {"_count": 1}, "their": {"_count": 1}, "wringing": {"_count": 1}, "hysterically": {"_count": 1}, "tottered": {"_count": 1}, "panting": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 6}, "raised": {"_count": 1}, "still": {"_count": 1}, "furiously": {"_count": 1}, "impatiently": {"_count": 1}, "staring": {"_count": 1}, "was": {"_count": 2}, "what": {"_count": 1}, "knew": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 2}, "indignantly": {"_count": 1}, "at": {"_count": 1}, "quickly": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}, "her": {"_count": 1}, "finished": {"_count": 1}, "repeated": {"_count": 1}, "cast": {"_count": 1}}, "Norris": {"_count": 55, "a": {"_count": 2}, "Id": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 13}, "but": {"_count": 2}, "came": {"_count": 2}, "are": {"_count": 1}, "skulking": {"_count": 1}, "turned": {"_count": 1}, "the": {"_count": 2}, "streaking": {"_count": 1}, "from": {"_count": 1}, "on": {"_count": 1}, "his": {"_count": 1}, "with": {"_count": 1}, "Ron": {"_count": 1}, "had": {"_count": 2}, "back": {"_count": 1}, "only": {"_count": 1}, "was": {"_count": 4}, "turn": {"_count": 1}, "were": {"_count": 1}, "gave": {"_count": 1}, "who": {"_count": 2}, "slinking": {"_count": 1}, "cast": {"_count": 1}, "is": {"_count": 1}, "slunk": {"_count": 1}, "inside": {"_count": 1}, "Filch": {"_count": 1}, "or": {"_count": 1}}, "Weasley": {"_count": 606, "were": {"_count": 8}, "smiled": {"_count": 2}, "": {"_count": 88}, "was": {"_count": 34}, "came": {"_count": 3}, "in": {"_count": 4}, "prodding": {"_count": 1}, "had": {"_count": 27}, "snapped": {"_count": 1}, "but": {"_count": 3}, "beamed": {"_count": 2}, "her": {"_count": 7}, "swelled": {"_count": 1}, "fussed": {"_count": 1}, "and": {"_count": 29}, "offered": {"_count": 1}, "starting": {"_count": 1}, "woke": {"_count": 1}, "took": {"_count": 3}, "told": {"_count": 2}, "now": {"_count": 1}, "Knockturn": {"_count": 1}, "sharply": {"_count": 7}, "felt": {"_count": 1}, "setting": {"_count": 3}, "beside": {"_count": 1}, "conjured": {"_count": 1}, "dashed": {"_count": 1}, "glanced": {"_count": 2}, "looking": {"_count": 3}, "then": {"_count": 1}, "who": {"_count": 11}, "let": {"_count": 5}, "s": {"_count": 5}, "led": {"_count": 1}, "tall": {"_count": 1}, "entered": {"_count": 5}, "depositing": {"_count": 1}, "frowning": {"_count": 2}, "snorted": {"_count": 1}, "briskly": {"_count": 1}, "called": {"_count": 4}, "shrilly": {"_count": 1}, "obviously": {"_count": 1}, "that": {"_count": 2}, "kissed": {"_count": 1}, "talking": {"_count": 1}, "until": {"_count": 1}, "eyeing": {"_count": 1}, "hugged": {"_count": 2}, "would": {"_count": 4}, "however": {"_count": 1}, "wearing": {"_count": 1}, "usually": {"_count": 1}, "what": {"_count": 2}, "repeated": {"_count": 1}, "about": {"_count": 2}, "alone": {"_count": 1}, "slammed": {"_count": 1}, "jabbed": {"_count": 1}, "putting": {"_count": 1}, "fingering": {"_count": 1}, "Fred": {"_count": 1}, "said": {"_count": 14}, "heaving": {"_count": 1}, "marching": {"_count": 1}, "pointed": {"_count": 3}, "furiously": {"_count": 1}, "managed": {"_count": 1}, "Language": {"_count": 1}, "muttered": {"_count": 1}, "a": {"_count": 4}, "choking": {"_count": 1}, "looked": {"_count": 6}, "distractedly": {"_count": 2}, "sighed": {"_count": 1}, "flaring": {"_count": 1}, "gently": {"_count": 2}, "shrewdly": {"_count": 1}, "hurrying": {"_count": 2}, "as": {"_count": 6}, "breaking": {"_count": 1}, "crossly": {"_count": 2}, "fondly": {"_count": 2}, "flushing": {"_count": 1}, "appeared": {"_count": 2}, "rummaging": {"_count": 1}, "breathlessly": {"_count": 1}, "sternly": {"_count": 1}, "left": {"_count": 3}, "whispered": {"_count": 5}, "Bill": {"_count": 5}, "chivvied": {"_count": 1}, "smiling": {"_count": 1}, "only": {"_count": 1}, "pursing": {"_count": 1}, "grinned": {"_count": 1}, "showing": {"_count": 1}, "lowering": {"_count": 1}, "brightly": {"_count": 3}, "much": {"_count": 1}, "you": {"_count": 2}, "whiled": {"_count": 1}, "nodded": {"_count": 2}, "angrily": {"_count": 2}, "forced": {"_count": 1}, "screamed": {"_count": 1}, "set": {"_count": 2}, "held": {"_count": 2}, "quickly": {"_count": 1}, "emerged": {"_count": 1}, "why": {"_count": 1}, "I": {"_count": 1}, "exasperatedly": {"_count": 1}, "darted": {"_count": 1}, "abandoned": {"_count": 1}, "cleared": {"_count": 1}, "sounding": {"_count": 3}, "will": {"_count": 1}, "hesitated": {"_count": 3}, "stirred": {"_count": 1}, "shrieked": {"_count": 1}, "raged": {"_count": 1}, "turned": {"_count": 4}, "went": {"_count": 1}, "coldly": {"_count": 1}, "threw": {"_count": 3}, "on": {"_count": 3}, "placing": {"_count": 1}, "the": {"_count": 2}, "rounding": {"_count": 1}, "breathing": {"_count": 1}, "fiercely": {"_count": 1}, "standing": {"_count": 1}, "spoke": {"_count": 1}, "beckoned": {"_count": 1}, "followed": {"_count": 1}, "closed": {"_count": 2}, "Hermione": {"_count": 2}, "at": {"_count": 3}, "mopped": {"_count": 1}, "finally": {"_count": 1}, "kept": {"_count": 4}, "recalled": {"_count": 1}, "trying": {"_count": 1}, "pursed": {"_count": 2}, "Sirius": {"_count": 1}, "placed": {"_count": 1}, "sat": {"_count": 2}, "made": {"_count": 2}, "backed": {"_count": 1}, "absently": {"_count": 1}, "did": {"_count": 3}, "returned": {"_count": 1}, "still": {"_count": 2}, "yawned": {"_count": 1}, "sobbed": {"_count": 6}, "moaned": {"_count": 2}, "just": {"_count": 2}, "to": {"_count": 3}, "gave": {"_count": 1}, "silly": {"_count": 1}, "bellowed": {"_count": 1}, "over": {"_count": 3}, "despairingly": {"_count": 1}, "stiffly": {"_count": 1}, "lengthening": {"_count": 1}, "anxiously": {"_count": 2}, "shoved": {"_count": 1}, "shrank": {"_count": 1}, "might": {"_count": 1}, "must": {"_count": 1}, "lifted": {"_count": 1}, "by": {"_count": 1}, "moved": {"_count": 2}, "reached": {"_count": 1}, "bending": {"_count": 1}, "warningly": {"_count": 1}, "we": {"_count": 1}, "leaning": {"_count": 1}, "calling": {"_count": 1}, "after": {"_count": 2}, "suspiciously": {"_count": 1}, "with": {"_count": 3}, "shriek": {"_count": 1}, "poking": {"_count": 1}, "reprovingly": {"_count": 1}, "withdrew": {"_count": 1}, "leading": {"_count": 1}, "hugging": {"_count": 1}, "appealing": {"_count": 1}, "dressed": {"_count": 1}, "short": {"_count": 1}, "rapping": {"_count": 1}, "slid": {"_count": 1}, "nodding": {"_count": 1}, "possibly": {"_count": 1}, "ended": {"_count": 1}, "jumped": {"_count": 1}, "into": {"_count": 1}, "opened": {"_count": 1}, "hesitantly": {"_count": 1}, "glance": {"_count": 1}, "good": {"_count": 1}, "like": {"_count": 1}, "across": {"_count": 1}, "popped": {"_count": 1}, "tried": {"_count": 1}, "soothingly": {"_count": 1}, "youre": {"_count": 1}, "patiently": {"_count": 1}, "squeezed": {"_count": 1}, "proudly": {"_count": 1}, "put": {"_count": 1}, "passed": {"_count": 1}, "pointedly": {"_count": 1}, "firing": {"_count": 1}, "though": {"_count": 1}, "nervously": {"_count": 1}, "checking": {"_count": 1}, "gazing": {"_count": 1}, "warily": {"_count": 1}, "loudly": {"_count": 1}, "tartly": {"_count": 1}, "consulting": {"_count": 1}, "cried": {"_count": 2}, "helped": {"_count": 1}, "through": {"_count": 1}, "wiping": {"_count": 1}, "joined": {"_count": 1}, "herself": {"_count": 1}, "suddenly": {"_count": 1}, "could": {"_count": 2}, "straightening": {"_count": 1}, "tearfully": {"_count": 1}, "dissolved": {"_count": 1}, "hurried": {"_count": 2}, "seized": {"_count": 1}, "darting": {"_count": 1}, "bent": {"_count": 2}, "raised": {"_count": 1}, "aside": {"_count": 1}, "fell": {"_count": 1}, "reappeared": {"_count": 1}, "for": {"_count": 1}, "ran": {"_count": 2}, "back": {"_count": 1}, "detached": {"_count": 1}, "wanted": {"_count": 1}, "cook": {"_count": 1}, "magicked": {"_count": 1}, "from": {"_count": 1}, "cut": {"_count": 1}, "shouting": {"_count": 1}, "whose": {"_count": 1}, "too": {"_count": 1}, "carrying": {"_count": 1}, "stood": {"_count": 1}, "beaming": {"_count": 1}, "watching": {"_count": 1}, "force": {"_count": 1}, "coming": {"_count": 1}, "restore": {"_count": 1}, "strolled": {"_count": 1}, "shouted": {"_count": 1}, "burst": {"_count": 1}}, "Norriss": {"_count": 4, "Christmas": {"_count": 1}, "fur": {"_count": 1}, "fate": {"_count": 1}, "lamplike": {"_count": 1}}, "Mason": {"_count": 6, "": {"_count": 4}, "back": {"_count": 1}, "screamed": {"_count": 1}}, "Masons": {"_count": 1, "head": {"_count": 1}}, "Weasleys": {"_count": 43, "sons": {"_count": 1}, "book": {"_count": 1}, "eyes": {"_count": 4}, "age": {"_count": 1}, "face": {"_count": 3}, "yells": {"_count": 1}, "tight": {"_count": 1}, "": {"_count": 2}, "bedroom": {"_count": 1}, "argument": {"_count": 1}, "letter": {"_count": 2}, "was": {"_count": 1}, "excellent": {"_count": 1}, "usual": {"_count": 1}, "charm": {"_count": 1}, "purge": {"_count": 1}, "lower": {"_count": 1}, "back": {"_count": 2}, "line": {"_count": 1}, "voice": {"_count": 2}, "preoccupation": {"_count": 1}, "family": {"_count": 1}, "patched": {"_count": 1}, "boggart": {"_count": 1}, "piercing": {"_count": 1}, "displeasure": {"_count": 1}, "accusations": {"_count": 1}, "handknitted": {"_count": 1}, "favorite": {"_count": 1}, "expression": {"_count": 1}, "tearful": {"_count": 1}, "room": {"_count": 1}, "hand": {"_count": 1}, "ministrations": {"_count": 1}}, "Granger": {"_count": 3, "": {"_count": 1}, "who": {"_count": 1}, "would": {"_count": 1}}, "Hetty": {"_count": 1, "Bayliss": {"_count": 1}}, "Skowers": {"_count": 3, "AllPurpose": {"_count": 3}}, "Riddle": {"_count": 1, "had": {"_count": 1}}, "Finnigan": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "Roberts": {"_count": 1, "upside": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "Longbottom": {"_count": 11, "": {"_count": 3}, "are": {"_count": 1}, "continued": {"_count": 1}, "knew": {"_count": 1}, "sharply": {"_count": 1}, "angrily": {"_count": 1}, "went": {"_count": 1}, "sounding": {"_count": 1}, "drawing": {"_count": 1}}, "Diggory": {"_count": 2, "": {"_count": 1}, "s": {"_count": 1}}, "Number": {"_count": 1, "Seven": {"_count": 1}}, "Polkiss": {"_count": 1, "give": {"_count": 1}}, "Petunia": {"_count": 1, "Dursley": {"_count": 1}}, "Blacks": {"_count": 6, "earsplitting": {"_count": 1}, "screeches": {"_count": 3}, "screaming": {"_count": 1}, "portrait": {"_count": 1}}, "Potters": {"_count": 1, "for": {"_count": 1}}, "Black": {"_count": 8, "and": {"_count": 2}, "started": {"_count": 1}, "her": {"_count": 1}, "continued": {"_count": 1}, "must": {"_count": 1}, "At": {"_count": 1}, "instead": {"_count": 1}}, "Purkiss": {"_count": 1, "": {"_count": 1}}, "Montague": {"_count": 1, "marching": {"_count": 1}}, "Augusta": {"_count": 1, "Longbottom": {"_count": 1}}, "Weasleyish": {"_count": 1, "glare": {"_count": 1}}, "Cole": {"_count": 18, "who": {"_count": 2}, "simply": {"_count": 1}, "blinked": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 2}, "helping": {"_count": 1}, "nodded": {"_count": 1}, "helped": {"_count": 1}, "pulled": {"_count": 1}, "frowning": {"_count": 1}, "took": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}, "closed": {"_count": 1}, "had": {"_count": 2}}, "Coles": {"_count": 2, "desktop": {"_count": 1}, "eyes": {"_count": 1}}, "Tonkss": {"_count": 1, "resemblance": {"_count": 1}}, "Tonks": {"_count": 1, "wanting": {"_count": 1}}, "Cattermole": {"_count": 24, "on": {"_count": 1}, "stumbled": {"_count": 1}, "gave": {"_count": 1}, "burst": {"_count": 1}, "sobbed": {"_count": 1}, "and": {"_count": 3}, "Umbridge": {"_count": 1}, "nodded": {"_count": 1}, "": {"_count": 6}, "let": {"_count": 1}, "looked": {"_count": 2}, "to": {"_count": 1}, "had": {"_count": 1}, "pulled": {"_count": 1}, "by": {"_count": 1}, "s": {"_count": 1}}, "Cattermoles": {"_count": 4, "sobs": {"_count": 1}, "name": {"_count": 1}, "questionnaire": {"_count": 1}, "papers": {"_count": 1}}, "Miss": {"_count": 2, "Bagshot": {"_count": 2}}}, "Dursley": {"_count": 85, "of": {"_count": 1, "number": {"_count": 1}}, "was": {"_count": 5, "the": {"_count": 1}, "thin": {"_count": 1}, "enraged": {"_count": 1}, "in": {"_count": 1}, "no": {"_count": 1}}, "s": {"_count": 2, "had": {"_count": 1}, "so": {"_count": 1}}, "pretended": {"_count": 1, "she": {"_count": 1}}, "woke": {"_count": 1, "up": {"_count": 1}}, "hummed": {"_count": 1, "as": {"_count": 1}}, "gossiped": {"_count": 1, "away": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "didnt": {"_count": 1, "realize": {"_count": 1}}, "blinked": {"_count": 1, "and": {"_count": 1}}, "drove": {"_count": 1, "around": {"_count": 1}}, "gave": {"_count": 2, "himself": {"_count": 1}, "a": {"_count": 1}}, "couldnt": {"_count": 1, "bear": {"_count": 1}}, "that": {"_count": 1, "this": {"_count": 1}}, "arrived": {"_count": 1, "in": {"_count": 1}}, "always": {"_count": 1, "sat": {"_count": 1}}, "however": {"_count": 1, "had": {"_count": 1}}, "stopped": {"_count": 1, "dead": {"_count": 1}}, "she": {"_count": 1, "always": {"_count": 1}}, "realized": {"_count": 1, "that": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "stood": {"_count": 1, "rooted": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "wondered": {"_count": 2, "": {"_count": 1}, "whether": {"_count": 1}}, "had": {"_count": 5, "had": {"_count": 1}, "seen": {"_count": 1}, "been": {"_count": 2}, "entered": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "sat": {"_count": 1, "frozen": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "looked": {"_count": 1, "shocked": {"_count": 1}}, "mumbled": {"_count": 1, "": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "!": {"_count": 2}}, "sipped": {"_count": 1, "her": {"_count": 1}}, "stiffly": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "crept": {"_count": 1, "to": {"_count": 1}}, "fell": {"_count": 1, "asleep": {"_count": 1}}, "lay": {"_count": 1, "awake": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "they": {"_count": 1, "wouldnt": {"_count": 1}}, "yeh": {"_count": 1, "great": {"_count": 1}}, "don": {"_count": 1, "worry": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "Im": {"_count": 1, "warning": {"_count": 1}}, "jumped": {"_count": 1, "to": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}, "family": {"_count": 1, "of": {"_count": 1}}, "speaking": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "We": {"_count": 1, "have": {"_count": 1}}, "household": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "uncle": {"_count": 1}}, "wending": {"_count": 1, "his": {"_count": 1}}, "The": {"_count": 1, "Kitchen": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "whose": {"_count": 1, "mustache": {"_count": 1}}, "said": {"_count": 2, "nothing": {"_count": 1}, "now": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "waved": {"_count": 1, "her": {"_count": 1}}, "hunched": {"_count": 1, "his": {"_count": 1}}, "abruptly": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "marched": {"_count": 1, "as": {"_count": 1}}}, "of": {"_count": 21542, "number": {"_count": 18, "four": {"_count": 7}, "fours": {"_count": 1}, "two": {"_count": 2}, "twelve": {"_count": 8}}, "a": {"_count": 801, "firm": {"_count": 1}, "headlight": {"_count": 1}, "morning": {"_count": 1}, "small": {"_count": 19}, "big": {"_count": 1}, "forest": {"_count": 2}, "plowed": {"_count": 1}, "multilevel": {"_count": 1}, "man": {"_count": 14}, "son": {"_count": 2}, "flutter": {"_count": 1}, "passage": {"_count": 2}, "powerful": {"_count": 2}, "station": {"_count": 1}, "run": {"_count": 1}, "box": {"_count": 2}, "pumpkin": {"_count": 1}, "great": {"_count": 5}, "nasty": {"_count": 2}, "balloon": {"_count": 1}, "very": {"_count": 14}, "spiral": {"_count": 2}, "joke": {"_count": 5}, "troublesome": {"_count": 1}, "head": {"_count": 2}, "shock": {"_count": 3}, "goat": {"_count": 2}, "book": {"_count": 1}, "library": {"_count": 1}, "large": {"_count": 23}, "bottle": {"_count": 3}, "wizards": {"_count": 1}, "classroom": {"_count": 2}, "monstrous": {"_count": 1}, "soccer": {"_count": 1}, "flash": {"_count": 1}, "tall": {"_count": 4}, "centaur": {"_count": 1}, "tree": {"_count": 4}, "unicorn": {"_count": 2}, "giant": {"_count": 2}, "postage": {"_count": 1}, "huge": {"_count": 2}, "name": {"_count": 3}, "solid": {"_count": 1}, "sight": {"_count": 1}, "pudding": {"_count": 1}, "cupboard": {"_count": 3}, "rope": {"_count": 1}, "brilliant": {"_count": 1}, "pair": {"_count": 3}, "fish": {"_count": 1}, "hurry": {"_count": 1}, "doorway": {"_count": 1}, "charging": {"_count": 1}, "nobody": {"_count": 2}, "Quidditch": {"_count": 3}, "well": {"_count": 1}, "window": {"_count": 4}, "tombstone": {"_count": 1}, "girl": {"_count": 4}, "deadly": {"_count": 1}, "few": {"_count": 8}, "Babbling": {"_count": 1}, "bicorn": {"_count": 1}, "boomslang": {"_count": 2}, "crazy": {"_count": 1}, "dinner": {"_count": 1}, "nose": {"_count": 3}, "picture": {"_count": 1}, "Dark": {"_count": 1}, "decent": {"_count": 1}, "griffin": {"_count": 1}, "plan": {"_count": 3}, "booger": {"_count": 1}, "voice": {"_count": 4}, "giveaway": {"_count": 4}, "muffled": {"_count": 1}, "Sorcerer": {"_count": 1}, "variety": {"_count": 1}, "moralebooster": {"_count": 1}, "laterunning": {"_count": 1}, "line": {"_count": 1}, "holdup": {"_count": 1}, "second": {"_count": 13}, "Muggle": {"_count": 6}, "fire": {"_count": 1}, "circle": {"_count": 2}, "vast": {"_count": 1}, "chair": {"_count": 3}, "dark": {"_count": 3}, "vivid": {"_count": 1}, "foul": {"_count": 1}, "swan": {"_count": 3}, "likelylooking": {"_count": 1}, "football": {"_count": 1}, "hundred": {"_count": 3}, "steering": {"_count": 1}, "sunkenfaced": {"_count": 1}, "massacre": {"_count": 1}, "street": {"_count": 2}, "bag": {"_count": 1}, "crowded": {"_count": 1}, "dementor": {"_count": 4}, "fat": {"_count": 2}, "swooning": {"_count": 1}, "place": {"_count": 1}, "fainting": {"_count": 1}, "bare": {"_count": 1}, "narrow": {"_count": 1}, "lump": {"_count": 1}, "bullet": {"_count": 2}, "doze": {"_count": 1}, "grindylow": {"_count": 1}, "potion": {"_count": 1}, "swimming": {"_count": 1}, "feast": {"_count": 2}, "single": {"_count": 5}, "humpbacked": {"_count": 1}, "bell": {"_count": 1}, "door": {"_count": 6}, "secret": {"_count": 1}, "cornered": {"_count": 1}, "normal": {"_count": 2}, "tablecloth": {"_count": 1}, "brandnew": {"_count": 1}, "suit": {"_count": 1}, "Bludger": {"_count": 1}, "mad": {"_count": 1}, "shining": {"_count": 1}, "true": {"_count": 1}, "thick": {"_count": 1}, "convicted": {"_count": 1}, "struggle": {"_count": 4}, "growing": {"_count": 1}, "plump": {"_count": 2}, "wizard": {"_count": 3}, "grin": {"_count": 3}, "stranger": {"_count": 1}, "death": {"_count": 1}, "blind": {"_count": 1}, "broom": {"_count": 3}, "good": {"_count": 3}, "school": {"_count": 1}, "heavy": {"_count": 1}, "pet": {"_count": 1}, "darkened": {"_count": 2}, "stair": {"_count": 1}, "cloak": {"_count": 2}, "hippogriff": {"_count": 1}, "young": {"_count": 4}, "lifetime": {"_count": 1}, "way": {"_count": 5}, "surprise": {"_count": 1}, "favor": {"_count": 1}, "liein": {"_count": 1}, "walk": {"_count": 1}, "miles": {"_count": 1}, "hindrance": {"_count": 1}, "salami": {"_count": 1}, "wasp": {"_count": 1}, "powerfully": {"_count": 1}, "magical": {"_count": 1}, "contrast": {"_count": 1}, "strong": {"_count": 1}, "gigantic": {"_count": 1}, "show": {"_count": 1}, "scene": {"_count": 1}, "clump": {"_count": 2}, "family": {"_count": 2}, "spell": {"_count": 1}, "noise": {"_count": 1}, "feather": {"_count": 1}, "grandmother": {"_count": 1}, "flight": {"_count": 1}, "fifth": {"_count": 1}, "hero": {"_count": 2}, "skrewt": {"_count": 1}, "project": {"_count": 1}, "tightly": {"_count": 1}, "flying": {"_count": 1}, "group": {"_count": 1}, "kind": {"_count": 2}, "panel": {"_count": 1}, "childs": {"_count": 1}, "plank": {"_count": 1}, "different": {"_count": 4}, "prominent": {"_count": 1}, "deep": {"_count": 3}, "growl": {"_count": 1}, "champion": {"_count": 1}, "tragic": {"_count": 1}, "veela": {"_count": 1}, "particularly": {"_count": 4}, "phoenix": {"_count": 1}, "friendly": {"_count": 1}, "block": {"_count": 1}, "haven": {"_count": 1}, "stack": {"_count": 1}, "simple": {"_count": 1}, "number": {"_count": 2}, "dragon": {"_count": 2}, "dog": {"_count": 1}, "delivery": {"_count": 1}, "bowl": {"_count": 1}, "house": {"_count": 2}, "break": {"_count": 1}, "floaty": {"_count": 1}, "bad": {"_count": 1}, "fair": {"_count": 1}, "short": {"_count": 1}, "toilet": {"_count": 3}, "cat": {"_count": 2}, "floorboard": {"_count": 1}, "mouth": {"_count": 1}, "career": {"_count": 1}, "village": {"_count": 1}, "mile": {"_count": 2}, "shark": {"_count": 1}, "hostage": {"_count": 1}, "completely": {"_count": 1}, "mania": {"_count": 1}, "gang": {"_count": 1}, "liability": {"_count": 1}, "wash": {"_count": 1}, "wand": {"_count": 6}, "dungeon": {"_count": 1}, "frail": {"_count": 1}, "bitterness": {"_count": 1}, "path": {"_count": 1}, "woman": {"_count": 1}, "fine": {"_count": 1}, "deserted": {"_count": 1}, "crouched": {"_count": 1}, "human": {"_count": 2}, "faithful": {"_count": 1}, "foe": {"_count": 1}, "horde": {"_count": 1}, "ship": {"_count": 1}, "crowd": {"_count": 2}, "boys": {"_count": 1}, "lunatic": {"_count": 3}, "curse": {"_count": 1}, "pure": {"_count": 1}, "threat": {"_count": 1}, "plea": {"_count": 1}, "welcome": {"_count": 1}, "garage": {"_count": 1}, "new": {"_count": 2}, "basset": {"_count": 1}, "disturbance": {"_count": 1}, "sudden": {"_count": 13}, "mother": {"_count": 1}, "stereo": {"_count": 1}, "twisted": {"_count": 1}, "chain": {"_count": 2}, "derelict": {"_count": 1}, "dying": {"_count": 1}, "long": {"_count": 4}, "gloomy": {"_count": 1}, "weirdo": {"_count": 1}, "building": {"_count": 3}, "Bludgers": {"_count": 1}, "tight": {"_count": 1}, "fold": {"_count": 1}, "class": {"_count": 1}, "blood": {"_count": 1}, "circular": {"_count": 1}, "slit": {"_count": 1}, "dismantled": {"_count": 1}, "magazine": {"_count": 1}, "dither": {"_count": 2}, "celebration": {"_count": 1}, "treat": {"_count": 1}, "boggart": {"_count": 1}, "laugh": {"_count": 4}, "reason": {"_count": 2}, "fellow": {"_count": 1}, "mood": {"_count": 1}, "year": {"_count": 1}, "nightmare": {"_count": 1}, "fake": {"_count": 1}, "rainwashed": {"_count": 1}, "knot": {"_count": 1}, "double": {"_count": 1}, "desk": {"_count": 1}, "Dungbomb": {"_count": 1}, "corridor": {"_count": 3}, "screech": {"_count": 1}, "column": {"_count": 1}, "reverie": {"_count": 1}, "dream": {"_count": 1}, "challenge": {"_count": 1}, "wild": {"_count": 1}, "fashion": {"_count": 1}, "back": {"_count": 2}, "sensitive": {"_count": 1}, "chew": {"_count": 1}, "problem": {"_count": 2}, "feeble": {"_count": 1}, "bookshelf": {"_count": 1}, "face": {"_count": 2}, "journey": {"_count": 2}, "couple": {"_count": 1}, "ride": {"_count": 1}, "tan": {"_count": 1}, "funny": {"_count": 2}, "teaspoon": {"_count": 3}, "cleverlooking": {"_count": 1}, "solitary": {"_count": 1}, "witch": {"_count": 2}, "rather": {"_count": 1}, "Firebolt": {"_count": 1}, "toad": {"_count": 1}, "danger": {"_count": 1}, "paperback": {"_count": 1}, "busy": {"_count": 1}, "coincidence": {"_count": 1}, "gruesome": {"_count": 1}, "job": {"_count": 1}, "horse": {"_count": 1}, "hoof": {"_count": 1}, "brightly": {"_count": 1}, "wink": {"_count": 1}, "whole": {"_count": 2}, "soppylooking": {"_count": 1}, "meadow": {"_count": 1}, "smile": {"_count": 2}, "diversion": {"_count": 1}, "relief": {"_count": 1}, "change": {"_count": 1}, "twig": {"_count": 1}, "beach": {"_count": 1}, "towering": {"_count": 1}, "Substantive": {"_count": 1}, "club": {"_count": 1}, "troll": {"_count": 2}, "badger": {"_count": 1}, "Switching": {"_count": 1}, "bowtruckle": {"_count": 1}, "telescope": {"_count": 1}, "punishment": {"_count": 1}, "a": {"_count": 1}, "medieval": {"_count": 1}, "tear": {"_count": 1}, "falling": {"_count": 1}, "chained": {"_count": 1}, "billowing": {"_count": 1}, "creature": {"_count": 1}, "hook": {"_count": 1}, "sleeping": {"_count": 1}, "connection": {"_count": 1}, "throat": {"_count": 1}, "prophecy": {"_count": 2}, "boy": {"_count": 2}, "last": {"_count": 1}, "far": {"_count": 1}, "quill": {"_count": 1}, "rest": {"_count": 1}, "disused": {"_count": 1}, "drowned": {"_count": 1}, "mediocre": {"_count": 1}, "chance": {"_count": 1}, "third": {"_count": 2}, "rift": {"_count": 1}, "fallen": {"_count": 1}, "body": {"_count": 2}, "sideboard": {"_count": 1}, "quiet": {"_count": 1}, "highflier": {"_count": 1}, "pile": {"_count": 2}, "flair": {"_count": 1}, "dustbin": {"_count": 1}, "squeeze": {"_count": 1}, "husband": {"_count": 1}, "handsome": {"_count": 1}, "pirate": {"_count": 1}, "cage": {"_count": 2}, "demented": {"_count": 1}, "compere": {"_count": 1}, "favorite": {"_count": 1}, "smirk": {"_count": 1}, "search": {"_count": 1}, "fraud": {"_count": 1}, "Potter": {"_count": 1}, "blunt": {"_count": 1}, "nonverbal": {"_count": 1}, "broomstick": {"_count": 1}, "better": {"_count": 2}, "swagger": {"_count": 1}, "halfbrother": {"_count": 1}, "junk": {"_count": 1}, "prat": {"_count": 1}, "horsedrawn": {"_count": 1}, "grapefruit": {"_count": 1}, "mass": {"_count": 1}, "thicket": {"_count": 1}, "whoopsadaisy": {"_count": 1}, "question": {"_count": 1}, "worm": {"_count": 1}, "recollection": {"_count": 1}, "bezoar": {"_count": 2}, "stampeding": {"_count": 1}, "longhaired": {"_count": 1}, "risk": {"_count": 1}, "distant": {"_count": 1}, "melting": {"_count": 1}, "brain": {"_count": 1}, "departed": {"_count": 3}, "massive": {"_count": 1}, "Pekingese": {"_count": 1}, "certain": {"_count": 1}, "Horcrux": {"_count": 1}, "sevenpart": {"_count": 2}, "master": {"_count": 1}, "highly": {"_count": 1}, "soul": {"_count": 1}, "dilemma": {"_count": 1}, "page": {"_count": 2}, "nearby": {"_count": 2}, "Seer": {"_count": 1}, "much": {"_count": 1}, "blazing": {"_count": 1}, "tiny": {"_count": 1}, "pedestal": {"_count": 1}, "fragment": {"_count": 1}, "streetlamp": {"_count": 1}, "friend": {"_count": 2}, "fight": {"_count": 1}, "jinx": {"_count": 1}, "mess": {"_count": 1}, "mystery": {"_count": 1}, "looker": {"_count": 1}, "row": {"_count": 1}, "parents": {"_count": 1}, "beech": {"_count": 1}, "heartbeat": {"_count": 1}, "mans": {"_count": 1}, "clever": {"_count": 1}, "savage": {"_count": 1}, "Mugglehater": {"_count": 1}, "teenage": {"_count": 1}, "thestral": {"_count": 1}, "close": {"_count": 1}, "departure": {"_count": 1}, "dustbinlid": {"_count": 1}, "will": {"_count": 1}, "pretext": {"_count": 1}, "Snitch": {"_count": 1}, "disputed": {"_count": 1}, "damper": {"_count": 1}, "redheaded": {"_count": 1}, "summers": {"_count": 1}, "badtempered": {"_count": 1}, "CrumpleHorned": {"_count": 2}, "vot": {"_count": 1}, "Wrackspurt": {"_count": 1}, "shadowy": {"_count": 1}, "familiar": {"_count": 2}, "stag": {"_count": 1}, "daredevil": {"_count": 1}, "position": {"_count": 1}, "fireplace": {"_count": 1}, "Ministry": {"_count": 3}, "crab": {"_count": 1}, "red": {"_count": 1}, "locket": {"_count": 1}, "kitten": {"_count": 1}, "glossy": {"_count": 1}, "lift": {"_count": 1}, "guy": {"_count": 1}, "bunk": {"_count": 1}, "bacon": {"_count": 1}, "lower": {"_count": 1}, "snide": {"_count": 1}, "Scottish": {"_count": 1}, "Fidelius": {"_count": 1}, "photograph": {"_count": 1}, "cluttered": {"_count": 1}, "world": {"_count": 1}, "compass": {"_count": 1}, "chapter": {"_count": 1}, "frozen": {"_count": 1}, "sycamore": {"_count": 1}, "hill": {"_count": 1}, "slap": {"_count": 1}, "frosted": {"_count": 1}, "workbench": {"_count": 1}, "beautiful": {"_count": 1}, "wellknown": {"_count": 1}, "stone": {"_count": 1}, "Hover": {"_count": 1}, "field": {"_count": 1}, "garden": {"_count": 1}, "lot": {"_count": 1}, "tower": {"_count": 1}, "dragonfly": {"_count": 1}, "crown": {"_count": 1}, "trove": {"_count": 1}, "windmill": {"_count": 1}, "denser": {"_count": 1}, "blonde": {"_count": 1}, "comedown": {"_count": 1}, "track": {"_count": 1}, "lead": {"_count": 1}, "birds": {"_count": 1}, "bookcase": {"_count": 1}, "century": {"_count": 1}, "pearly": {"_count": 1}, "dead": {"_count": 1}, "cathedral": {"_count": 1}, "city": {"_count": 1}, "flaming": {"_count": 1}, "thousand": {"_count": 1}, "yawning": {"_count": 1}, "moment": {"_count": 1}, "desolate": {"_count": 1}, "table": {"_count": 1}, "snake": {"_count": 1}, "desire": {"_count": 1}, "child": {"_count": 2}, "damaged": {"_count": 1}, "bomb": {"_count": 1}}, "neck": {"_count": 1, "which": {"_count": 1}}, "her": {"_count": 319, "time": {"_count": 1}, "sister": {"_count": 1}, "cats": {"_count": 1}, "sons": {"_count": 2}, "": {"_count": 22}, "put": {"_count": 1}, "seat": {"_count": 2}, "Filch": {"_count": 1}, "gown": {"_count": 1}, "face": {"_count": 10}, "to": {"_count": 1}, "said": {"_count": 2}, "arms": {"_count": 2}, "cage": {"_count": 5}, "flaming": {"_count": 1}, "hands": {"_count": 1}, "bag": {"_count": 6}, "vivid": {"_count": 1}, "finger": {"_count": 1}, "robes": {"_count": 8}, "muffled": {"_count": 1}, "all": {"_count": 1}, "head": {"_count": 10}, "pocket": {"_count": 3}, "that": {"_count": 1}, "own": {"_count": 4}, "blankets": {"_count": 1}, "toilet": {"_count": 1}, "mangled": {"_count": 1}, "deepest": {"_count": 1}, "life": {"_count": 1}, "visits": {"_count": 1}, "favorite": {"_count": 1}, "tweed": {"_count": 1}, "fingers": {"_count": 1}, "mouth": {"_count": 7}, "feet": {"_count": 2}, "book": {"_count": 2}, "interference": {"_count": 1}, "professional": {"_count": 1}, "eyes": {"_count": 5}, "flinching": {"_count": 1}, "bangles": {"_count": 1}, "whistle": {"_count": 1}, "office": {"_count": 5}, "wand": {"_count": 17}, "but": {"_count": 1}, "squashed": {"_count": 1}, "tea": {"_count": 1}, "limp": {"_count": 1}, "plait": {"_count": 1}, "neck": {"_count": 1}, "enormous": {"_count": 1}, "picture": {"_count": 2}, "handsome": {"_count": 1}, "crocodileskin": {"_count": 1}, "large": {"_count": 1}, "Ravenclaw": {"_count": 1}, "eggs": {"_count": 1}, "clothes": {"_count": 1}, "great": {"_count": 1}, "crying": {"_count": 1}, "skirt": {"_count": 1}, "Potions": {"_count": 1}, "classmates": {"_count": 1}, "hat": {"_count": 1}, "front": {"_count": 1}, "plate": {"_count": 1}, "carriage": {"_count": 1}, "ill": {"_count": 2}, "stepladder": {"_count": 1}, "did": {"_count": 2}, "way": {"_count": 2}, "sacrifice": {"_count": 1}, "hand": {"_count": 4}, "tartan": {"_count": 1}, "words": {"_count": 2}, "chair": {"_count": 3}, "BatBogey": {"_count": 1}, "voice": {"_count": 3}, "balancing": {"_count": 1}, "coming": {"_count": 1}, "cubicle": {"_count": 1}, "carpet": {"_count": 1}, "short": {"_count": 1}, "son": {"_count": 1}, "upsidedown": {"_count": 1}, "grasp": {"_count": 1}, "audience": {"_count": 1}, "pink": {"_count": 2}, "eye": {"_count": 1}, "reach": {"_count": 2}, "handbag": {"_count": 2}, "laden": {"_count": 1}, "jumping": {"_count": 1}, "grip": {"_count": 2}, "goblet": {"_count": 1}, "airborne": {"_count": 1}, "now": {"_count": 1}, "mightve": {"_count": 1}, "Daily": {"_count": 1}, "drove": {"_count": 1}, "reverie": {"_count": 2}, "nose": {"_count": 2}, "usually": {"_count": 1}, "wings": {"_count": 1}, "anywhere": {"_count": 1}, "inspection": {"_count": 1}, "shawl": {"_count": 2}, "arm": {"_count": 3}, "the": {"_count": 2}, "quill": {"_count": 4}, "bony": {"_count": 1}, "dressing": {"_count": 1}, "portrait": {"_count": 1}, "desk": {"_count": 2}, "romper": {"_count": 1}, "leg": {"_count": 2}, "fellow": {"_count": 1}, "beauty": {"_count": 1}, "drink": {"_count": 3}, "glass": {"_count": 2}, "grubby": {"_count": 1}, "trunks": {"_count": 1}, "spoon": {"_count": 1}, "so": {"_count": 1}, "classroom": {"_count": 1}, "chatting": {"_count": 1}, "sharp": {"_count": 1}, "twitched": {"_count": 1}, "captor": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 2}, "tongue": {"_count": 1}, "spells": {"_count": 1}, "sisters": {"_count": 2}, "silence": {"_count": 1}, "tears": {"_count": 1}, "wrists": {"_count": 1}, "sight": {"_count": 1}, "husbands": {"_count": 1}, "desertion": {"_count": 1}, "carrying": {"_count": 1}, "pregnancy": {"_count": 1}, "powers": {"_count": 1}, "with": {"_count": 1}, "furious": {"_count": 1}, "phial": {"_count": 1}, "poison": {"_count": 1}, "possession": {"_count": 1}, "trailing": {"_count": 1}, "greatest": {"_count": 1}, "robe": {"_count": 2}, "greenhouses": {"_count": 1}, "as": {"_count": 1}, "many": {"_count": 1}, "glittering": {"_count": 1}, "leaking": {"_count": 1}, "briskness": {"_count": 1}, "brothers": {"_count": 1}, "cozy": {"_count": 1}, "waist": {"_count": 1}, "speech": {"_count": 1}, "one": {"_count": 1}, "will": {"_count": 1}, "shoes": {"_count": 1}, "foot": {"_count": 1}, "hair": {"_count": 1}, "new": {"_count": 2}, "Umbridges": {"_count": 1}, "walking": {"_count": 1}, "shirt": {"_count": 1}, "I": {"_count": 1}, "bunk": {"_count": 1}, "She": {"_count": 1}, "back": {"_count": 1}, "on": {"_count": 1}, "when": {"_count": 1}, "at": {"_count": 1}, "rages": {"_count": 2}, "old": {"_count": 1}, "senses": {"_count": 1}, "mothers": {"_count": 1}, "sandals": {"_count": 1}, "brimful": {"_count": 1}, "husband": {"_count": 1}, "lips": {"_count": 1}, "enchanted": {"_count": 1}}, "them": {"_count": 868, "noticed": {"_count": 2}, "werent": {"_count": 1}, "had": {"_count": 39}, "next": {"_count": 1}, "": {"_count": 112}, "stood": {"_count": 4}, "put": {"_count": 3}, "and": {"_count": 28}, "jump": {"_count": 4}, "in": {"_count": 11}, "were": {"_count": 49}, "as": {"_count": 8}, "knew": {"_count": 4}, "was": {"_count": 27}, "say": {"_count": 1}, "have": {"_count": 3}, "curses": {"_count": 1}, "apart": {"_count": 2}, "disappeared": {"_count": 2}, "that": {"_count": 6}, "glided": {"_count": 1}, "started": {"_count": 5}, "could": {"_count": 19}, "toppled": {"_count": 1}, "sprinted": {"_count": 2}, "said": {"_count": 12}, "are": {"_count": 12}, "since": {"_count": 2}, "look": {"_count": 2}, "Miss": {"_count": 1}, "looking": {"_count": 7}, "followed": {"_count": 2}, "dropped": {"_count": 1}, "made": {"_count": 5}, "werewolves": {"_count": 1}, "he": {"_count": 6}, "listened": {"_count": 1}, "sat": {"_count": 4}, "what": {"_count": 1}, "pull": {"_count": 1}, "a": {"_count": 6}, "hardly": {"_count": 1}, "called": {"_count": 1}, "her": {"_count": 1}, "but": {"_count": 6}, "bent": {"_count": 3}, "pummeled": {"_count": 1}, "seized": {"_count": 1}, "back": {"_count": 1}, "fly": {"_count": 1}, "held": {"_count": 1}, "pulled": {"_count": 1}, "realized": {"_count": 1}, "making": {"_count": 1}, "examined": {"_count": 1}, "squinting": {"_count": 1}, "stared": {"_count": 7}, "swung": {"_count": 1}, "chewed": {"_count": 1}, "now": {"_count": 5}, "not": {"_count": 1}, "fell": {"_count": 2}, "flung": {"_count": 2}, "may": {"_count": 1}, "then": {"_count": 4}, "books": {"_count": 1}, "turned": {"_count": 2}, "spoke": {"_count": 7}, "seemed": {"_count": 12}, "find": {"_count": 1}, "holding": {"_count": 3}, "the": {"_count": 11}, "sitting": {"_count": 1}, "joined": {"_count": 1}, "pointed": {"_count": 1}, "is": {"_count": 4}, "has": {"_count": 2}, "kept": {"_count": 3}, "go": {"_count": 1}, "with": {"_count": 6}, "left": {"_count": 6}, "tipped": {"_count": 1}, "wont": {"_count": 2}, "either": {"_count": 1}, "from": {"_count": 2}, "felt": {"_count": 1}, "even": {"_count": 4}, "Crookshanks": {"_count": 1}, "looked": {"_count": 21}, "dragging": {"_count": 1}, "gliding": {"_count": 1}, "died": {"_count": 1}, "ended": {"_count": 1}, "running": {"_count": 1}, "been": {"_count": 1}, "came": {"_count": 1}, "smiled": {"_count": 1}, "headed": {"_count": 2}, "where": {"_count": 2}, "crowded": {"_count": 1}, "grown": {"_count": 1}, "wearing": {"_count": 6}, "Disapparated": {"_count": 1}, "hurtled": {"_count": 2}, "Mr": {"_count": 1}, "shouted": {"_count": 2}, "surged": {"_count": 1}, "tonight": {"_count": 1}, "marched": {"_count": 1}, "except": {"_count": 1}, "before": {"_count": 4}, "together": {"_count": 1}, "on": {"_count": 4}, "to": {"_count": 13}, "asleep": {"_count": 1}, "recovered": {"_count": 1}, "representing": {"_count": 1}, "standing": {"_count": 3}, "they": {"_count": 4}, "Harry": {"_count": 6}, "filled": {"_count": 1}, "than": {"_count": 2}, "eating": {"_count": 1}, "sprouted": {"_count": 1}, "pressed": {"_count": 1}, "however": {"_count": 2}, "talking": {"_count": 3}, "squashed": {"_count": 1}, "she": {"_count": 2}, "sporting": {"_count": 2}, "would": {"_count": 5}, "moved": {"_count": 2}, "set": {"_count": 4}, "clearly": {"_count": 1}, "waving": {"_count": 1}, "when": {"_count": 2}, "though": {"_count": 1}, "for": {"_count": 4}, "giggled": {"_count": 1}, "extremely": {"_count": 1}, "too": {"_count": 1}, "having": {"_count": 3}, "apparently": {"_count": 1}, "emerged": {"_count": 1}, "appeared": {"_count": 1}, "jumped": {"_count": 4}, "bowed": {"_count": 1}, "picked": {"_count": 1}, "really": {"_count": 3}, "hanging": {"_count": 1}, "whispered": {"_count": 1}, "walked": {"_count": 2}, "proceeded": {"_count": 1}, "approaching": {"_count": 1}, "shortened": {"_count": 1}, "lasted": {"_count": 1}, "still": {"_count": 3}, "drawing": {"_count": 1}, "contains": {"_count": 1}, "whipped": {"_count": 1}, "cornered": {"_count": 1}, "around": {"_count": 2}, "down": {"_count": 2}, "peering": {"_count": 1}, "all": {"_count": 4}, "Hedwigs": {"_count": 1}, "again": {"_count": 1}, "beside": {"_count": 1}, "my": {"_count": 1}, "coming": {"_count": 1}, "or": {"_count": 2}, "soon": {"_count": 1}, "But": {"_count": 1}, "leaned": {"_count": 1}, "nudged": {"_count": 1}, "spent": {"_count": 1}, "lapsed": {"_count": 1}, "brought": {"_count": 1}, "trying": {"_count": 2}, "scrambled": {"_count": 1}, "landed": {"_count": 1}, "I": {"_count": 1}, "deliberately": {"_count": 1}, "hesitated": {"_count": 1}, "asked": {"_count": 1}, "croaked": {"_count": 1}, "lost": {"_count": 2}, "ran": {"_count": 3}, "lifted": {"_count": 2}, "yet": {"_count": 2}, "hung": {"_count": 1}, "will": {"_count": 2}, "seventh": {"_count": 1}, "waved": {"_count": 1}, "anyway": {"_count": 1}, "squeezed": {"_count": 2}, "preferred": {"_count": 1}, "passing": {"_count": 1}, "it": {"_count": 1}, "understand": {"_count": 1}, "stepped": {"_count": 3}, "seem": {"_count": 1}, "afraid": {"_count": 1}, "you": {"_count": 2}, "became": {"_count": 2}, "which": {"_count": 2}, "did": {"_count": 1}, "narrowly": {"_count": 1}, "exchanged": {"_count": 1}, "struggled": {"_count": 1}, "fifth": {"_count": 1}, "took": {"_count": 1}, "concerning": {"_count": 1}, "upside": {"_count": 1}, "tripping": {"_count": 1}, "Draco": {"_count": 1}, "wanted": {"_count": 2}, "both": {"_count": 1}, "tried": {"_count": 1}, "here": {"_count": 2}, "theyll": {"_count": 1}, "paused": {"_count": 1}, "raised": {"_count": 3}, "struck": {"_count": 1}, "rigid": {"_count": 1}, "chased": {"_count": 2}, "grabbed": {"_count": 1}, "tore": {"_count": 1}, "gave": {"_count": 1}, "into": {"_count": 2}, "Thats": {"_count": 1}, "bound": {"_count": 2}, "of": {"_count": 1}, "gazed": {"_count": 1}, "strode": {"_count": 1}, "under": {"_count": 1}, "suspicious": {"_count": 1}, "showing": {"_count": 1}, "sniggered": {"_count": 1}, "Ron": {"_count": 1}, "concerned": {"_count": 1}, "watched": {"_count": 1}, "stated": {"_count": 1}, "blocking": {"_count": 1}, "lying": {"_count": 1}, "scored": {"_count": 1}, "mentioned": {"_count": 1}, "like": {"_count": 1}, "trooped": {"_count": 1}, "actually": {"_count": 2}, "abusing": {"_count": 1}, "after": {"_count": 1}, "Nott": {"_count": 1}, "Marvolos": {"_count": 1}, "shaking": {"_count": 1}, "realize": {"_count": 1}, "girls": {"_count": 1}, "do": {"_count": 1}, "crumpled": {"_count": 1}, "stumbled": {"_count": 1}, "who": {"_count": 2}, "his": {"_count": 1}, "Hagrids": {"_count": 1}, "light": {"_count": 1}, "Gibbon": {"_count": 1}, "blocked": {"_count": 1}, "There": {"_count": 1}, "out": {"_count": 1}, "broke": {"_count": 1}, "by": {"_count": 1}, "quiet": {"_count": 1}, "Death": {"_count": 1}, "answered": {"_count": 1}, "gasped": {"_count": 2}, "we": {"_count": 1}, "alone": {"_count": 1}, "Voldemort": {"_count": 1}, "adding": {"_count": 1}, "shout": {"_count": 1}, "drew": {"_count": 1}, "Kreacher": {"_count": 1}, "might": {"_count": 2}, "inside": {"_count": 1}, "deep": {"_count": 1}, "trundled": {"_count": 1}, "melding": {"_count": 1}, "accused": {"_count": 1}, "dared": {"_count": 1}, "nowhere": {"_count": 1}, "knowing": {"_count": 1}, "their": {"_count": 1}, "aloud": {"_count": 1}, "up": {"_count": 1}, "first": {"_count": 1}, "Rons": {"_count": 1}, "got": {"_count": 1}, "concentrating": {"_count": 1}, "returned": {"_count": 1}, "can": {"_count": 1}, "sighed": {"_count": 1}, "against": {"_count": 1}, "at": {"_count": 2}, "obscure": {"_count": 1}, "glanced": {"_count": 1}, "barring": {"_count": 1}, "visible": {"_count": 1}, "rose": {"_count": 1}, "smaller": {"_count": 1}, "perched": {"_count": 1}, "dueling": {"_count": 1}, "blow": {"_count": 1}, "large": {"_count": 1}, "only": {"_count": 1}, "hurried": {"_count": 1}, "beseeching": {"_count": 1}, "being": {"_count": 1}, "through": {"_count": 1}, "ever": {"_count": 1}, "pressing": {"_count": 1}, "determined": {"_count": 1}}, "the": {"_count": 4857, "street": {"_count": 10}, "light": {"_count": 9}, "rain": {"_count": 3}, "ground": {"_count": 2}, "cat": {"_count": 3}, "markings": {"_count": 1}, "air": {"_count": 8}, "London": {"_count": 1}, "day": {"_count": 15}, "frying": {"_count": 2}, "boys": {"_count": 8}, "Dursleys": {"_count": 14}, "school": {"_count": 40}, "tank": {"_count": 3}, "house": {"_count": 21}, "way": {"_count": 102}, "boa": {"_count": 1}, "reptile": {"_count": 1}, "shop": {"_count": 18}, "Brazilian": {"_count": 1}, "lot": {"_count": 5}, "holidays": {"_count": 14}, "smell": {"_count": 4}, "mail": {"_count": 2}, "lights": {"_count": 1}, "front": {"_count": 16}, "two": {"_count": 18}, "head": {"_count": 17}, "fireplace": {"_count": 10}, "hotel": {"_count": 1}, "car": {"_count": 17}, "week": {"_count": 4}, "rock": {"_count": 4}, "hut": {"_count": 1}, "sofa": {"_count": 4}, "storm": {"_count": 2}, "room": {"_count": 118}, "pockets": {"_count": 1}, "sound": {"_count": 5}, "thing": {"_count": 7}, "age": {"_count": 3}, "boat": {"_count": 3}, "following": {"_count": 2}, "students": {"_count": 18}, "moon": {"_count": 2}, "doors": {"_count": 6}, "cart": {"_count": 2}, "station": {"_count": 5}, "open": {"_count": 7}, "country": {"_count": 4}, "chattering": {"_count": 1}, "window": {"_count": 61}, "train": {"_count": 9}, "redhaired": {"_count": 1}, "compartment": {"_count": 5}, "twins": {"_count": 5}, "Dark": {"_count": 27}, "twelve": {"_count": 4}, "Twentieth": {"_count": 2}, "seven": {"_count": 1}, "game": {"_count": 7}, "pale": {"_count": 2}, "first": {"_count": 19}, "sweets": {"_count": 1}, "castle": {"_count": 55}, "year": {"_count": 10}, "rest": {"_count": 14}, "whole": {"_count": 9}, "chamber": {"_count": 4}, "hall": {"_count": 28}, "stool": {"_count": 2}, "four": {"_count": 7}, "Fat": {"_count": 14}, "hat": {"_count": 6}, "High": {"_count": 2}, "Chocolate": {"_count": 2}, "food": {"_count": 1}, "Weasley": {"_count": 5}, "term": {"_count": 7}, "few": {"_count": 9}, "Great": {"_count": 28}, "corridor": {"_count": 26}, "towers": {"_count": 1}, "treacle": {"_count": 1}, "ghosts": {"_count": 2}, "planets": {"_count": 5}, "staff": {"_count": 9}, "most": {"_count": 16}, "lesson": {"_count": 25}, "note": {"_count": 1}, "dungeons": {"_count": 1}, "softly": {"_count": 1}, "dungeon": {"_count": 21}, "forbidden": {"_count": 1}, "lessons": {"_count": 1}, "grounds": {"_count": 6}, "twigs": {"_count": 1}, "class": {"_count": 59}, "grass": {"_count": 4}, "feeling": {"_count": 2}, "Gryffindor": {"_count": 17}, "afternoon": {"_count": 4}, "points": {"_count": 1}, "darkness": {"_count": 20}, "Bogies": {"_count": 2}, "parcel": {"_count": 1}, "marble": {"_count": 11}, "field": {"_count": 21}, "little": {"_count": 7}, "goal": {"_count": 4}, "hoops": {"_count": 2}, "Bludgers": {"_count": 3}, "team": {"_count": 24}, "Chasers": {"_count": 3}, "teachers": {"_count": 15}, "trolls": {"_count": 3}, "shadows": {"_count": 6}, "troll": {"_count": 1}, "delicious": {"_count": 1}, "sheets": {"_count": 1}, "locker": {"_count": 2}, "corner": {"_count": 24}, "Quaffle": {"_count": 3}, "Snitch": {"_count": 9}, "Weasleys": {"_count": 7}, "stands": {"_count": 10}, "sort": {"_count": 9}, "new": {"_count": 10}, "library": {"_count": 15}, "restricted": {"_count": 1}, "crackers": {"_count": 1}, "dormitory": {"_count": 10}, "other": {"_count": 32}, "mirror": {"_count": 9}, "desks": {"_count": 5}, "Mirror": {"_count": 1}, "Christmas": {"_count": 2}, "card": {"_count": 1}, "Sorcerers": {"_count": 2}, "door": {"_count": 31}, "dive": {"_count": 6}, "branches": {"_count": 2}, "tree": {"_count": 5}, "clearing": {"_count": 10}, "gamekeepers": {"_count": 1}, "fire": {"_count": 27}, "forest": {"_count": 38}, "night": {"_count": 14}, "tower": {"_count": 14}, "stairs": {"_count": 42}, "classroom": {"_count": 11}, "dark": {"_count": 11}, "wind": {"_count": 7}, "trees": {"_count": 22}, "staffroom": {"_count": 2}, "plan": {"_count": 7}, "Stone": {"_count": 1}, "Gryffindors": {"_count": 8}, "enchantments": {"_count": 2}, "portrait": {"_count": 16}, "dogs": {"_count": 1}, "cloak": {"_count": 2}, "trapdoor": {"_count": 3}, "bottom": {"_count": 2}, "same": {"_count": 7}, "heart": {"_count": 3}, "passageway": {"_count": 1}, "cloud": {"_count": 1}, "black": {"_count": 5}, "greatest": {"_count": 1}, "line": {"_count": 8}, "glass": {"_count": 9}, "toilets": {"_count": 2}, "morning": {"_count": 7}, "kitchen": {"_count": 25}, "family": {"_count": 17}, "corners": {"_count": 6}, "reason": {"_count": 1}, "gleaming": {"_count": 1}, "fridge": {"_count": 3}, "garden": {"_count": 3}, "grubby": {"_count": 1}, "closet": {"_count": 2}, "pillowcase": {"_count": 1}, "freezer": {"_count": 1}, "non": {"_count": 1}, "International": {"_count": 14}, "bowl": {"_count": 2}, "cage": {"_count": 4}, "back": {"_count": 12}, "violet": {"_count": 1}, "red": {"_count": 2}, "pocket": {"_count": 3}, "gnomes": {"_count": 2}, "shabby": {"_count": 1}, "tiny": {"_count": 3}, "village": {"_count": 12}, "time": {"_count": 6}, "flowerpot": {"_count": 1}, "wrong": {"_count": 2}, "rooms": {"_count": 2}, "cabinet": {"_count": 1}, "neck": {"_count": 3}, "white": {"_count": 3}, "limelight": {"_count": 1}, "summer": {"_count": 12}, "yard": {"_count": 3}, "Muggles": {"_count": 1}, "trolley": {"_count": 1}, "Restriction": {"_count": 1}, "fun": {"_count": 1}, "water": {"_count": 21}, "steering": {"_count": 2}, "Evening": {"_count": 2}, "mad": {"_count": 2}, "park": {"_count": 1}, "fat": {"_count": 1}, "crowd": {"_count": 36}, "common": {"_count": 9}, "staircase": {"_count": 11}, "paper": {"_count": 4}, "greenhouse": {"_count": 1}, "Mandrake": {"_count": 3}, "tufty": {"_count": 1}, "earth": {"_count": 4}, "Venomous": {"_count": 1}, "Bandon": {"_count": 1}, "smashed": {"_count": 2}, "pixies": {"_count": 2}, "remaining": {"_count": 3}, "picture": {"_count": 7}, "pitch": {"_count": 12}, "previous": {"_count": 9}, "highest": {"_count": 3}, "stadium": {"_count": 11}, "bush": {"_count": 2}, "largest": {"_count": 4}, "cabin": {"_count": 7}, "matter": {"_count": 3}, "dying": {"_count": 2}, "bestseller": {"_count": 1}, "office": {"_count": 18}, "envelopes": {"_count": 2}, "roomier": {"_count": 1}, "dance": {"_count": 3}, "stinking": {"_count": 1}, "toilet": {"_count": 3}, "pack": {"_count": 1}, "Headless": {"_count": 1}, "second": {"_count": 7}, "Heir": {"_count": 2}, "hanging": {"_count": 1}, "Lockharts": {"_count": 1}, "opposite": {"_count": 2}, "crime": {"_count": 2}, "Chamber": {"_count": 5}, "very": {"_count": 6}, "Slytherins": {"_count": 7}, "recipe": {"_count": 1}, "potions": {"_count": 3}, "more": {"_count": 3}, "Wagga": {"_count": 1}, "best": {"_count": 10}, "season": {"_count": 7}, "Bludger": {"_count": 1}, "end": {"_count": 18}, "hospital": {"_count": 4}, "filthy": {"_count": 1}, "houseelfs": {"_count": 3}, "magical": {"_count": 4}, "camera": {"_count": 2}, "cauldron": {"_count": 4}, "leeches": {"_count": 1}, "large": {"_count": 7}, "Swelling": {"_count": 1}, "firework": {"_count": 1}, "famous": {"_count": 2}, "battling": {"_count": 2}, "duels": {"_count": 1}, "thick": {"_count": 2}, "Hufflepuffs": {"_count": 4}, "Astronomy": {"_count": 8}, "ashes": {"_count": 1}, "Polyjuice": {"_count": 3}, "disembodied": {"_count": 1}, "people": {"_count": 18}, "operation": {"_count": 2}, "banisters": {"_count": 2}, "bristles": {"_count": 1}, "lock": {"_count": 1}, "bubbling": {"_count": 1}, "laundry": {"_count": 1}, "potion": {"_count": 10}, "glasses": {"_count": 2}, "cracked": {"_count": 1}, "bathroom": {"_count": 2}, "Daily": {"_count": 21}, "Misuse": {"_count": 3}, "Slytherin": {"_count": 10}, "books": {"_count": 4}, "book": {"_count": 9}, "trophy": {"_count": 1}, "occasion": {"_count": 3}, "fortysix": {"_count": 1}, "dwarfs": {"_count": 1}, "dwarf": {"_count": 1}, "younger": {"_count": 1}, "diary": {"_count": 7}, "page": {"_count": 8}, "recent": {"_count": 3}, "long": {"_count": 8}, "Mandrakes": {"_count": 1}, "nonmagical": {"_count": 1}, "Lockhart": {"_count": 1}, "headmaster": {"_count": 3}, "spiders": {"_count": 3}, "headlights": {"_count": 1}, "creatures": {"_count": 1}, "hollow": {"_count": 2}, "misty": {"_count": 1}, "eyes": {"_count": 7}, "girl": {"_count": 7}, "legs": {"_count": 4}, "table": {"_count": 28}, "rooster": {"_count": 2}, "cloaks": {"_count": 1}, "copper": {"_count": 2}, "pipe": {"_count": 2}, "stone": {"_count": 10}, "stomach": {"_count": 1}, "wizards": {"_count": 9}, "nearest": {"_count": 10}, "Hogwarts": {"_count": 10}, "serpents": {"_count": 1}, "basilisks": {"_count": 1}, "dead": {"_count": 4}, "basilisk": {"_count": 1}, "chairs": {"_count": 3}, "drawers": {"_count": 1}, "final": {"_count": 3}, "last": {"_count": 12}, "essays": {"_count": 1}, "mouthpiece": {"_count": 1}, "worst": {"_count": 4}, "racket": {"_count": 1}, "ink": {"_count": 1}, "wizarding": {"_count": 3}, "things": {"_count": 4}, "wrapping": {"_count": 1}, "Hogsmeade": {"_count": 6}, "basic": {"_count": 1}, "dining": {"_count": 1}, "fortune": {"_count": 1}, "bus": {"_count": 10}, "knees": {"_count": 1}, "Knight": {"_count": 5}, "crisis": {"_count": 1}, "sunken": {"_count": 2}, "bravest": {"_count": 2}, "hand": {"_count": 3}, "Accidental": {"_count": 2}, "incident": {"_count": 2}, "parlor": {"_count": 1}, "wardrobe": {"_count": 9}, "children": {"_count": 1}, "galaxy": {"_count": 1}, "usual": {"_count": 3}, "Monster": {"_count": 2}, "Invisible": {"_count": 1}, "invisible": {"_count": 1}, "Azkaban": {"_count": 3}, "beast": {"_count": 1}, "name": {"_count": 11}, "trunk": {"_count": 4}, "pistons": {"_count": 1}, "racks": {"_count": 1}, "dementors": {"_count": 12}, "journey": {"_count": 5}, "platform": {"_count": 3}, "next": {"_count": 14}, "dementor": {"_count": 2}, "prisoners": {"_count": 2}, "lake": {"_count": 33}, "knights": {"_count": 1}, "frame": {"_count": 3}, "main": {"_count": 4}, "future": {"_count": 2}, "tea": {"_count": 2}, "blue": {"_count": 3}, "Forbidden": {"_count": 13}, "paddock": {"_count": 3}, "beasts": {"_count": 1}, "chains": {"_count": 1}, "smooth": {"_count": 2}, "hippogriff": {"_count": 2}, "crinkled": {"_count": 1}, "steps": {"_count": 5}, "keyhole": {"_count": 2}, "boggart": {"_count": 3}, "fiftyfoothigh": {"_count": 1}, "darkening": {"_count": 2}, "top": {"_count": 10}, "bag": {"_count": 4}, "group": {"_count": 8}, "walls": {"_count": 3}, "third": {"_count": 4}, "conversation": {"_count": 5}, "topics": {"_count": 1}, "werewolf": {"_count": 2}, "thunder": {"_count": 1}, "mud": {"_count": 1}, "weekend": {"_count": 3}, "running": {"_count": 3}, "oneeyed": {"_count": 3}, "parchment": {"_count": 4}, "map": {"_count": 5}, "sixth": {"_count": 2}, "passages": {"_count": 1}, "sweetshop": {"_count": 1}, "Three": {"_count": 10}, "woods": {"_count": 3}, "Potters": {"_count": 3}, "Magical": {"_count": 3}, "roaring": {"_count": 1}, "shelter": {"_count": 1}, "handle": {"_count": 1}, "Inner": {"_count": 1}, "question": {"_count": 4}, "deserted": {"_count": 3}, "packing": {"_count": 1}, "case": {"_count": 1}, "chocolate": {"_count": 2}, "Firebolt": {"_count": 5}, "victim": {"_count": 1}, "weird": {"_count": 1}, "old": {"_count": 12}, "others": {"_count": 22}, "shadowy": {"_count": 4}, "match": {"_count": 10}, "barriers": {"_count": 1}, "Ravenclaw": {"_count": 1}, "milling": {"_count": 1}, "utmost": {"_count": 5}, "girls": {"_count": 8}, "hangings": {"_count": 1}, "security": {"_count": 2}, "hill": {"_count": 6}, "path": {"_count": 5}, "chute": {"_count": 1}, "witchs": {"_count": 1}, "Cheering": {"_count": 1}, "ladder": {"_count": 1}, "entire": {"_count": 1}, "conditions": {"_count": 1}, "flight": {"_count": 1}, "Firebolts": {"_count": 1}, "tasks": {"_count": 1}, "Committee": {"_count": 4}, "exams": {"_count": 3}, "setting": {"_count": 1}, "brutes": {"_count": 1}, "Whomping": {"_count": 2}, "hole": {"_count": 3}, "deep": {"_count": 1}, "tangle": {"_count": 1}, "wall": {"_count": 7}, "tunnel": {"_count": 4}, "Willow": {"_count": 2}, "cords": {"_count": 2}, "rat": {"_count": 1}, "manacle": {"_count": 1}, "faint": {"_count": 1}, "ward": {"_count": 10}, "West": {"_count": 4}, "hourglass": {"_count": 1}, "distant": {"_count": 1}, "executioner": {"_count": 1}, "dog": {"_count": 1}, "entrances": {"_count": 2}, "lower": {"_count": 2}, "rope": {"_count": 1}, "Order": {"_count": 30}, "secret": {"_count": 4}, "home": {"_count": 2}, "tale": {"_count": 2}, "Riddle": {"_count": 4}, "Riddles": {"_count": 4}, "windows": {"_count": 9}, "passage": {"_count": 8}, "armchair": {"_count": 1}, "flames": {"_count": 8}, "chair": {"_count": 10}, "square": {"_count": 2}, "report": {"_count": 1}, "neighbors": {"_count": 2}, "fact": {"_count": 4}, "Quidditch": {"_count": 7}, "ordinary": {"_count": 3}, "word": {"_count": 3}, "seat": {"_count": 2}, "living": {"_count": 7}, "three": {"_count": 7}, "powder": {"_count": 1}, "hearth": {"_count": 1}, "sideboard": {"_count": 2}, "stuff": {"_count": 1}, "Ministry": {"_count": 28}, "beds": {"_count": 3}, "posters": {"_count": 1}, "opinion": {"_count": 1}, "Improper": {"_count": 1}, "Wellington": {"_count": 1}, "commotion": {"_count": 4}, "hilltop": {"_count": 1}, "Hufflepuff": {"_count": 2}, "campsite": {"_count": 2}, "sports": {"_count": 1}, "wood": {"_count": 6}, "poles": {"_count": 1}, "tent": {"_count": 22}, "giggles": {"_count": 1}, "queue": {"_count": 7}, "weight": {"_count": 1}, "Goblin": {"_count": 3}, "moment": {"_count": 3}, "devil": {"_count": 1}, "players": {"_count": 2}, "immense": {"_count": 1}, "row": {"_count": 5}, "Department": {"_count": 19}, "box": {"_count": 5}, "Minister": {"_count": 4}, "Bulgarian": {"_count": 1}, "dancing": {"_count": 3}, "Irish": {"_count": 1}, "veela": {"_count": 4}, "Bulgarians": {"_count": 1}, "figures": {"_count": 2}, "marchers": {"_count": 2}, "trouble": {"_count": 2}, "uneven": {"_count": 1}, "skull": {"_count": 1}, "Code": {"_count": 1}, "green": {"_count": 4}, "masked": {"_count": 2}, "letter": {"_count": 4}, "Portkeys": {"_count": 1}, "Guidelines": {"_count": 1}, "attic": {"_count": 1}, "hands": {"_count": 1}, "halfpacked": {"_count": 1}, "taxis": {"_count": 1}, "possibilities": {"_count": 1}, "endless": {"_count": 1}, "ceiling": {"_count": 6}, "Hall": {"_count": 23}, "entrance": {"_count": 4}, "nose": {"_count": 1}, "normal": {"_count": 1}, "mans": {"_count": 3}, "stranger": {"_count": 1}, "participating": {"_count": 3}, "older": {"_count": 1}, "soil": {"_count": 1}, "boxes": {"_count": 5}, "stepladder": {"_count": 1}, "celestial": {"_count": 1}, "jar": {"_count": 3}, "Unforgivable": {"_count": 3}, "Mediterranean": {"_count": 2}, "holes": {"_count": 2}, "Defense": {"_count": 1}, "horrors": {"_count": 1}, "eighteenth": {"_count": 2}, "sign": {"_count": 2}, "thirtieth": {"_count": 1}, "School": {"_count": 1}, "post": {"_count": 3}, "carriage": {"_count": 5}, "horses": {"_count": 2}, "lawns": {"_count": 1}, "lakes": {"_count": 1}, "whirlpool": {"_count": 1}, "Beauxbatons": {"_count": 4}, "feast": {"_count": 3}, "listening": {"_count": 1}, "Tournament": {"_count": 1}, "casket": {"_count": 1}, "golden": {"_count": 8}, "veelagirl": {"_count": 1}, "Triwizard": {"_count": 9}, "entrants": {"_count": 1}, "drops": {"_count": 1}, "Goblet": {"_count": 4}, "goblet": {"_count": 3}, "hundreds": {"_count": 2}, "firelight": {"_count": 2}, "unknown": {"_count": 3}, "tournament": {"_count": 1}, "pumpkins": {"_count": 1}, "Bouncing": {"_count": 1}, "champions": {"_count": 4}, "skrewts": {"_count": 3}, "schools": {"_count": 2}, "anger": {"_count": 1}, "blackboard": {"_count": 1}, "judges": {"_count": 3}, "broom": {"_count": 2}, "Wands": {"_count": 1}, "five": {"_count": 3}, "QuickQuotes": {"_count": 1}, "article": {"_count": 2}, "company": {"_count": 1}, "villagers": {"_count": 1}, "enormous": {"_count": 3}, "dragon": {"_count": 3}, "enclosure": {"_count": 4}, "wizard": {"_count": 5}, "world": {"_count": 4}, "spiral": {"_count": 2}, "POTTER": {"_count": 1}, "panic": {"_count": 1}, "quivering": {"_count": 1}, "Summoning": {"_count": 2}, "dragonfree": {"_count": 1}, "purple": {"_count": 1}, "Horntail": {"_count": 1}, "noise": {"_count": 4}, "scoring": {"_count": 1}, "Hungarian": {"_count": 1}, "skrewt": {"_count": 1}, "various": {"_count": 2}, "giant": {"_count": 5}, "brick": {"_count": 1}, "surrounding": {"_count": 9}, "chance": {"_count": 2}, "Cannons": {"_count": 1}, "color": {"_count": 1}, "icicleladen": {"_count": 1}, "party": {"_count": 4}, "twenty": {"_count": 1}, "universe": {"_count": 1}, "Cup": {"_count": 1}, "watching": {"_count": 1}, "winding": {"_count": 1}, "bushes": {"_count": 2}, "reindeers": {"_count": 1}, "ball": {"_count": 1}, "homework": {"_count": 1}, "egg": {"_count": 2}, "unicorn": {"_count": 1}, "giants": {"_count": 4}, "unpleasant": {"_count": 1}, "mummies": {"_count": 1}, "ship": {"_count": 1}, "shops": {"_count": 2}, "pub": {"_count": 6}, "happy": {"_count": 1}, "floor": {"_count": 6}, "fluffy": {"_count": 1}, "swimmingpoolsized": {"_count": 1}, "taps": {"_count": 3}, "bath": {"_count": 3}, "bubblefilled": {"_count": 1}, "eggs": {"_count": 1}, "snoozing": {"_count": 1}, "portraits": {"_count": 10}, "scene": {"_count": 6}, "champion": {"_count": 1}, "trick": {"_count": 1}, "Charms": {"_count": 1}, "brown": {"_count": 1}, "owl": {"_count": 2}, "Deep": {"_count": 1}, "broomstick": {"_count": 1}, "oncoming": {"_count": 4}, "weed": {"_count": 2}, "grindylows": {"_count": 2}, "muddy": {"_count": 1}, "gloom": {"_count": 1}, "mermaid": {"_count": 1}, "houses": {"_count": 1}, "knife": {"_count": 2}, "merpeople": {"_count": 1}, "BubbleHead": {"_count": 1}, "double": {"_count": 2}, "mountain": {"_count": 3}, "lane": {"_count": 2}, "Death": {"_count": 48}, "houseelves": {"_count": 1}, "Durmstrang": {"_count": 2}, "letters": {"_count": 1}, "crates": {"_count": 1}, "nifflers": {"_count": 1}, "patch": {"_count": 1}, "Easter": {"_count": 3}, "maze": {"_count": 8}, "growing": {"_count": 1}, "curtained": {"_count": 1}, "solar": {"_count": 2}, "moons": {"_count": 1}, "Sorting": {"_count": 2}, "inside": {"_count": 3}, "basin": {"_count": 6}, "silvery": {"_count": 1}, "mysterious": {"_count": 2}, "witches": {"_count": 6}, "bench": {"_count": 1}, "Council": {"_count": 1}, "present": {"_count": 1}, "Pensieve": {"_count": 8}, "screaming": {"_count": 1}, "curse": {"_count": 2}, "side": {"_count": 3}, "spells": {"_count": 4}, "person": {"_count": 1}, "poem": {"_count": 1}, "cups": {"_count": 2}, "task": {"_count": 1}, "hood": {"_count": 1}, "grave": {"_count": 6}, "father": {"_count": 1}, "servant": {"_count": 1}, "enemy": {"_count": 1}, "great": {"_count": 2}, "swishing": {"_count": 1}, "immensity": {"_count": 1}, "circle": {"_count": 6}, "men": {"_count": 2}, "one": {"_count": 2}, "beams": {"_count": 1}, "beads": {"_count": 1}, "tip": {"_count": 2}, "solidest": {"_count": 1}, "wand": {"_count": 9}, "pain": {"_count": 4}, "Tri": {"_count": 1}, "cup": {"_count": 3}, "man": {"_count": 3}, "FoeGlass": {"_count": 1}, "ancient": {"_count": 1}, "desk": {"_count": 5}, "wands": {"_count": 4}, "real": {"_count": 2}, "feather": {"_count": 1}, "trials": {"_count": 1}, "ways": {"_count": 1}, "truth": {"_count": 2}, "interview": {"_count": 1}, "InterHouse": {"_count": 1}, "qualities": {"_count": 1}, "fourth": {"_count": 2}, "Divination": {"_count": 2}, "music": {"_count": 2}, "newsreaders": {"_count": 1}, "point": {"_count": 2}, "route": {"_count": 1}, "pair": {"_count": 1}, "low": {"_count": 1}, "Southeast": {"_count": 1}, "gang": {"_count": 2}, "alley": {"_count": 2}, "alleyway": {"_count": 3}, "draining": {"_count": 1}, "Decree": {"_count": 3}, "evening": {"_count": 3}, "strip": {"_count": 1}, "envelope": {"_count": 1}, "drive": {"_count": 3}, "mess": {"_count": 1}, "harness": {"_count": 1}, "snug": {"_count": 1}, "cars": {"_count": 1}, "guard": {"_count": 1}, "Phoenix": {"_count": 54}, "": {"_count": 2}, "peeling": {"_count": 1}, "floorboards": {"_count": 1}, "bedrooms": {"_count": 1}, "canvas": {"_count": 2}, "smelly": {"_count": 1}, "Ministrys": {"_count": 1}, "Wizarding": {"_count": 11}, "community": {"_count": 1}, "hunt": {"_count": 1}, "Chairmanship": {"_count": 1}, "chain": {"_count": 2}, "curtains": {"_count": 4}, "Puking": {"_count": 1}, "mantelpiece": {"_count": 1}, "tapestry": {"_count": 2}, "place": {"_count": 6}, "objects": {"_count": 1}, "Black": {"_count": 3}, "looming": {"_count": 1}, "hearing": {"_count": 2}, "metal": {"_count": 2}, "Atrium": {"_count": 4}, "telephone": {"_count": 6}, "lefthand": {"_count": 2}, "centaurs": {"_count": 7}, "goblins": {"_count": 5}, "pool": {"_count": 8}, "stream": {"_count": 1}, "Ban": {"_count": 1}, "lift": {"_count": 6}, "memos": {"_count": 1}, "hiccuping": {"_count": 1}, "chest": {"_count": 1}, "twelfth": {"_count": 1}, "Wizengamot": {"_count": 7}, "illegality": {"_count": 1}, "Impressive": {"_count": 1}, "We": {"_count": 1}, "Patronus": {"_count": 1}, "passing": {"_count": 1}, "elf": {"_count": 2}, "cupboards": {"_count": 2}, "antiVoldemort": {"_count": 2}, "droppings": {"_count": 1}, "photograph": {"_count": 4}, "Frog": {"_count": 1}, "limegreen": {"_count": 1}, "mass": {"_count": 1}, "popular": {"_count": 1}, "goblin": {"_count": 4}, "magazine": {"_count": 2}, "articles": {"_count": 1}, "gates": {"_count": 3}, "competitiveness": {"_count": 1}, "meal": {"_count": 1}, "faces": {"_count": 1}, "breathiness": {"_count": 1}, "speech": {"_count": 1}, "crowds": {"_count": 1}, "terrible": {"_count": 2}, "Kenmare": {"_count": 1}, "said": {"_count": 1}, "instructions": {"_count": 4}, "lunch": {"_count": 1}, "spindly": {"_count": 2}, "remotest": {"_count": 1}, "inkwells": {"_count": 1}, "piles": {"_count": 1}, "whisperers": {"_count": 2}, "lawn": {"_count": 1}, "joke": {"_count": 1}, "sinister": {"_count": 1}, "quill": {"_count": 1}, "bowtruckle": {"_count": 2}, "bed": {"_count": 1}, "persons": {"_count": 1}, "vaulted": {"_count": 1}, "Prophet": {"_count": 4}, "Ord": {"_count": 1}, "newspaper": {"_count": 6}, "pile": {"_count": 3}, "goals": {"_count": 1}, "scroll": {"_count": 1}, "milk": {"_count": 1}, "current": {"_count": 1}, "Inquisitor": {"_count": 1}, "words": {"_count": 3}, "Oracle": {"_count": 3}, "inspection": {"_count": 1}, "celebrated": {"_count": 1}, "classs": {"_count": 1}, "loudest": {"_count": 1}, "spell": {"_count": 5}, "date": {"_count": 2}, "animal": {"_count": 1}, "He": {"_count": 2}, "Chinese": {"_count": 1}, "Zonkos": {"_count": 1}, "Hogs": {"_count": 5}, "rebellion": {"_count": 1}, "orange": {"_count": 2}, "chew": {"_count": 2}, "Silencing": {"_count": 1}, "changing": {"_count": 4}, "braine": {"_count": 2}, "voice": {"_count": 2}, "hearthrug": {"_count": 1}, "image": {"_count": 1}, "twentyfive": {"_count": 1}, "wouldbe": {"_count": 1}, "cushions": {"_count": 1}, "D": {"_count": 13}, "mystery": {"_count": 1}, "members": {"_count": 2}, "coins": {"_count": 1}, "competing": {"_count": 1}, "spectators": {"_count": 1}, "singing": {"_count": 1}, "sky": {"_count": 4}, "bruising": {"_count": 1}, "cabins": {"_count": 1}, "carcass": {"_count": 1}, "bitter": {"_count": 1}, "decorations": {"_count": 1}, "idiots": {"_count": 1}, "big": {"_count": 2}, "mattress": {"_count": 1}, "fragile": {"_count": 1}, "blackened": {"_count": 2}, "pantry": {"_count": 1}, "six": {"_count": 1}, "crackling": {"_count": 1}, "vision": {"_count": 2}, "dream": {"_count": 2}, "bedstead": {"_count": 1}, "attack": {"_count": 1}, "city": {"_count": 1}, "ugly": {"_count": 3}, "patients": {"_count": 1}, "warlock": {"_count": 1}, "string": {"_count": 1}, "taint": {"_count": 1}, "cupboard": {"_count": 2}, "depression": {"_count": 1}, "skin": {"_count": 2}, "Janus": {"_count": 1}, "situation": {"_count": 3}, "original": {"_count": 4}, "sullens": {"_count": 1}, "mind": {"_count": 1}, "road": {"_count": 3}, "shortcomings": {"_count": 1}, "connection": {"_count": 1}, "charmed": {"_count": 1}, "snake": {"_count": 3}, "brutal": {"_count": 1}, "witch": {"_count": 6}, "torture": {"_count": 1}, "dangerous": {"_count": 1}, "plant": {"_count": 2}, "ten": {"_count": 2}, "convicts": {"_count": 2}, "plain": {"_count": 1}, "fourteenth": {"_count": 1}, "oak": {"_count": 2}, "escaped": {"_count": 1}, "small": {"_count": 4}, "slurping": {"_count": 1}, "crocodile": {"_count": 1}, "undiscovered": {"_count": 1}, "windowless": {"_count": 1}, "story": {"_count": 2}, "cubicles": {"_count": 2}, "cool": {"_count": 1}, "shelves": {"_count": 1}, "jars": {"_count": 1}, "signs": {"_count": 1}, "Room": {"_count": 2}, "knot": {"_count": 1}, "corpulent": {"_count": 1}, "details": {"_count": 1}, "Inquisitorial": {"_count": 5}, "hourglasses": {"_count": 1}, "foul": {"_count": 1}, "horrible": {"_count": 2}, "hot": {"_count": 2}, "larger": {"_count": 1}, "dragons": {"_count": 3}, "rockets": {"_count": 1}, "fireworks": {"_count": 1}, "sparklers": {"_count": 1}, "examination": {"_count": 1}, "blackhaired": {"_count": 1}, "look": {"_count": 1}, "fifth": {"_count": 2}, "Summer": {"_count": 1}, "contents": {"_count": 2}, "empty": {"_count": 2}, "diversion": {"_count": 1}, "east": {"_count": 1}, "Snackboxes": {"_count": 1}, "sleeping": {"_count": 1}, "skins": {"_count": 1}, "bough": {"_count": 1}, "ropes": {"_count": 1}, "pine": {"_count": 2}, "quiver": {"_count": 1}, "\u2018our": {"_count": 1}, "beech": {"_count": 1}, "procedure": {"_count": 1}, "written": {"_count": 1}, "examiners": {"_count": 1}, "stars": {"_count": 1}, "squattest": {"_count": 1}, "parapet": {"_count": 1}, "exam": {"_count": 1}, "notes": {"_count": 1}, "high": {"_count": 1}, "blazing": {"_count": 1}, "seriousness": {"_count": 1}, "Transfiguration": {"_count": 1}, "bust": {"_count": 1}, "sixthyear": {"_count": 1}, "squad": {"_count": 1}, "monster": {"_count": 1}, "gray": {"_count": 2}, "galloping": {"_count": 1}, "Kacky": {"_count": 1}, "thestral": {"_count": 1}, "streetlights": {"_count": 1}, "dozen": {"_count": 1}, "brains": {"_count": 1}, "brain": {"_count": 1}, "lowered": {"_count": 1}, "cold": {"_count": 4}, "archway": {"_count": 3}, "tattered": {"_count": 1}, "veil": {"_count": 1}, "bell": {"_count": 4}, "closest": {"_count": 1}, "rows": {"_count": 1}, "dusty": {"_count": 1}, "clogging": {"_count": 1}, "Seers": {"_count": 1}, "face": {"_count": 1}, "baby": {"_count": 1}, "Time": {"_count": 1}, "full": {"_count": 1}, "prophecy": {"_count": 13}, "handsome": {"_count": 1}, "fountain": {"_count": 1}, "shield": {"_count": 1}, "headless": {"_count": 1}, "houseelf": {"_count": 2}, "statues": {"_count": 1}, "statue": {"_count": 3}, "headmasters": {"_count": 1}, "amount": {"_count": 1}, "delicate": {"_count": 1}, "pictures": {"_count": 1}, "horror": {"_count": 1}, "Blacks": {"_count": 1}, "failings": {"_count": 1}, "Orders": {"_count": 2}, "pact": {"_count": 1}, "instruments": {"_count": 1}, "gift": {"_count": 1}, "boy": {"_count": 4}, "many": {"_count": 5}, "force": {"_count": 1}, "events": {"_count": 1}, "Sunday": {"_count": 1}, "broken": {"_count": 4}, "secrets": {"_count": 2}, "hexes": {"_count": 1}, "river": {"_count": 4}, "memo": {"_count": 1}, "election": {"_count": 1}, "stilldumbstruck": {"_count": 1}, "Exchequer": {"_count": 1}, "painting": {"_count": 1}, "rim": {"_count": 1}, "North": {"_count": 1}, "government": {"_count": 1}, "bank": {"_count": 3}, "streetlamps": {"_count": 1}, "dirty": {"_count": 2}, "elfmade": {"_count": 1}, "streetlamp": {"_count": 1}, "Auror": {"_count": 4}, "tough": {"_count": 1}, "stripy": {"_count": 1}, "Dursley": {"_count": 1}, "legacy": {"_count": 1}, "shrieking": {"_count": 1}, "past": {"_count": 1}, "number": {"_count": 1}, "piano": {"_count": 1}, "overstuffed": {"_count": 1}, "newly": {"_count": 1}, "repaired": {"_count": 1}, "brightest": {"_count": 1}, "responsibility": {"_count": 1}, "chill": {"_count": 1}, "Burrow": {"_count": 6}, "hour": {"_count": 3}, "lantern": {"_count": 3}, "temporary": {"_count": 1}, "smoke": {"_count": 1}, "telescope": {"_count": 1}, "Burrows": {"_count": 1}, "special": {"_count": 1}, "sleeves": {"_count": 1}, "tub": {"_count": 1}, "cases": {"_count": 1}, "strings": {"_count": 2}, "cardboard": {"_count": 1}, "Aurors": {"_count": 3}, "chilling": {"_count": 1}, "clear": {"_count": 1}, "stories": {"_count": 2}, "Holyhead": {"_count": 2}, "scenery": {"_count": 1}, "luggage": {"_count": 2}, "seats": {"_count": 1}, "applause": {"_count": 1}, "news": {"_count": 1}, "nosestamping": {"_count": 1}, "throng": {"_count": 2}, "strength": {"_count": 1}, "grandson": {"_count": 1}, "Inferius": {"_count": 1}, "Beaters": {"_count": 2}, "type": {"_count": 3}, "dagger": {"_count": 1}, "tips": {"_count": 1}, "HalfBlood": {"_count": 2}, "weeks": {"_count": 1}, "crystal": {"_count": 1}, "bottle": {"_count": 2}, "brambles": {"_count": 2}, "valley": {"_count": 2}, "cottage": {"_count": 3}, "pus": {"_count": 1}, "pots": {"_count": 1}, "Gaunts": {"_count": 5}, "dreadful": {"_count": 1}, "breadth": {"_count": 1}, "silliest": {"_count": 1}, "Keepers": {"_count": 1}, "Office": {"_count": 1}, "trip": {"_count": 1}, "Princes": {"_count": 2}, "mouth": {"_count": 1}, "curvy": {"_count": 1}, "package": {"_count": 1}, "bad": {"_count": 1}, "good": {"_count": 2}, "worlds": {"_count": 1}, "evidence": {"_count": 1}, "swirling": {"_count": 1}, "memory": {"_count": 4}, "gin": {"_count": 1}, "strangled": {"_count": 1}, "gnarled": {"_count": 1}, "World": {"_count": 1}, "reasons": {"_count": 1}, "opening": {"_count": 1}, "Bat": {"_count": 1}, "elusive": {"_count": 2}, "whistle": {"_count": 1}, "castles": {"_count": 4}, "bottles": {"_count": 2}, "Weird": {"_count": 1}, "horse": {"_count": 1}, "Rotfang": {"_count": 2}, "list": {"_count": 1}, "wireless": {"_count": 2}, "frozen": {"_count": 3}, "only": {"_count": 3}, "rhododendron": {"_count": 1}, "House": {"_count": 1}, "weak": {"_count": 1}, "murdered": {"_count": 1}, "unworthy": {"_count": 1}, "general": {"_count": 1}, "bathrooms": {"_count": 1}, "rainwashed": {"_count": 1}, "oakmatured": {"_count": 1}, "yelling": {"_count": 1}, "sun": {"_count": 3}, "Harry": {"_count": 1}, "Malfoys": {"_count": 1}, "Malfoy": {"_count": 1}, "approaching": {"_count": 1}, "danger": {"_count": 2}, "Award": {"_count": 1}, "elfs": {"_count": 3}, "existence": {"_count": 1}, "irritating": {"_count": 1}, "meeting": {"_count": 1}, "jigsaw": {"_count": 1}, "magic": {"_count": 1}, "scales": {"_count": 1}, "courtyard": {"_count": 1}, "swagger": {"_count": 1}, "mission": {"_count": 2}, "treetops": {"_count": 1}, "pit": {"_count": 1}, "drink": {"_count": 1}, "illegal": {"_count": 1}, "candle": {"_count": 1}, "lateness": {"_count": 1}, "soul": {"_count": 1}, "self": {"_count": 1}, "problem": {"_count": 1}, "honor": {"_count": 1}, "fake": {"_count": 4}, "sink": {"_count": 1}, "questions": {"_count": 1}, "stretch": {"_count": 1}, "topmost": {"_count": 1}, "remorse": {"_count": 1}, "fiery": {"_count": 1}, "smells": {"_count": 1}, "waves": {"_count": 1}, "cave": {"_count": 2}, "rough": {"_count": 1}, "kind": {"_count": 1}, "standards": {"_count": 1}, "boats": {"_count": 1}, "cavern": {"_count": 1}, "island": {"_count": 1}, "Mark": {"_count": 2}, "ramparts": {"_count": 1}, "action": {"_count": 2}, "fighters": {"_count": 3}, "chaos": {"_count": 1}, "fleeing": {"_count": 1}, "crescent": {"_count": 1}, "trapped": {"_count": 1}, "umbrella": {"_count": 1}, "tallest": {"_count": 2}, "ornate": {"_count": 1}, "dust": {"_count": 2}, "increasing": {"_count": 1}, "Leaky": {"_count": 2}, "robe": {"_count": 1}, "centaur": {"_count": 1}, "Inferi": {"_count": 1}, "singers": {"_count": 1}, "Horcruxes": {"_count": 4}, "mens": {"_count": 1}, "hedge": {"_count": 1}, "straight": {"_count": 1}, "palefaced": {"_count": 1}, "watchers": {"_count": 2}, "gaze": {"_count": 1}, "true": {"_count": 1}, "purebloods": {"_count": 1}, "intervening": {"_count": 1}, "enchanted": {"_count": 1}, "rubbish": {"_count": 2}, "days": {"_count": 1}, "sad": {"_count": 1}, "Egyptian": {"_count": 1}, "terror": {"_count": 1}, "flawed": {"_count": 1}, "dung": {"_count": 1}, "unannounced": {"_count": 1}, "washing": {"_count": 1}, "protective": {"_count": 2}, "flask": {"_count": 1}, "diversions": {"_count": 1}, "sidecar": {"_count": 1}, "engine": {"_count": 1}, "exhaust": {"_count": 1}, "bikes": {"_count": 1}, "plummeting": {"_count": 1}, "motorbikes": {"_count": 1}, "bike": {"_count": 1}, "blackness": {"_count": 2}, "debris": {"_count": 1}, "pond": {"_count": 1}, "sneering": {"_count": 1}, "missing": {"_count": 1}, "concerned": {"_count": 1}, "Fidelius": {"_count": 1}, "battle": {"_count": 7}, "grease": {"_count": 1}, "creature": {"_count": 2}, "attraction": {"_count": 1}, "Darkest": {"_count": 4}, "piece": {"_count": 1}, "latest": {"_count": 1}, "wash": {"_count": 1}, "allwitch": {"_count": 1}, "bedroom": {"_count": 3}, "freshly": {"_count": 1}, "rewards": {"_count": 1}, "rubyencrusted": {"_count": 1}, "wedding": {"_count": 2}, "bees": {"_count": 1}, "marquee": {"_count": 5}, "sunlit": {"_count": 1}, "tables": {"_count": 1}, "crowded": {"_count": 1}, "ones": {"_count": 1}, "astonished": {"_count": 1}, "foamy": {"_count": 1}, "explosion": {"_count": 1}, "hallway": {"_count": 1}, "carpet": {"_count": 1}, "silver": {"_count": 5}, "daunting": {"_count": 1}, "pieces": {"_count": 1}, "drawer": {"_count": 1}, "faded": {"_count": 1}, "fffamily": {"_count": 1}, "lamplit": {"_count": 1}, "Marauders": {"_count": 1}, "wolf": {"_count": 1}, "encounter": {"_count": 1}, "apparently": {"_count": 1}, "junk": {"_count": 3}, "pan": {"_count": 1}, "Londoners": {"_count": 1}, "chilly": {"_count": 1}, "cubicle": {"_count": 1}, "handsomely": {"_count": 1}, "distinctive": {"_count": 1}, "vases": {"_count": 1}, "Decoy": {"_count": 1}, "brush": {"_count": 1}, "courtroom": {"_count": 1}, "arms": {"_count": 1}, "balustrade": {"_count": 2}, "Patronuses": {"_count": 1}, "Muggleborns": {"_count": 1}, "fear": {"_count": 1}, "Cattermoles": {"_count": 1}, "laughing": {"_count": 1}, "twin": {"_count": 6}, "skies": {"_count": 1}, "mist": {"_count": 1}, "Horcrux": {"_count": 4}, "thief": {"_count": 2}, "flesh": {"_count": 1}, "kids": {"_count": 1}, "upper": {"_count": 1}, "transparent": {"_count": 1}, "gaping": {"_count": 1}, "bunk": {"_count": 1}, "sagging": {"_count": 1}, "names": {"_count": 1}, "nineteenth": {"_count": 1}, "narrow": {"_count": 2}, "slippery": {"_count": 1}, "graveyard": {"_count": 2}, "violence": {"_count": 1}, "cottages": {"_count": 2}, "locket": {"_count": 10}, "collection": {"_count": 1}, "candlelit": {"_count": 1}, "bite": {"_count": 1}, "ruined": {"_count": 1}, "photographs": {"_count": 1}, "Barnabus": {"_count": 1}, "bestkept": {"_count": 1}, "doe": {"_count": 1}, "wandlight": {"_count": 1}, "footsteps": {"_count": 1}, "sword": {"_count": 4}, "incalculable": {"_count": 1}, "damn": {"_count": 1}, "lockets": {"_count": 1}, "radio": {"_count": 1}, "triangular": {"_count": 1}, "orchard": {"_count": 1}, "printing": {"_count": 3}, "beautiful": {"_count": 1}, "cluttered": {"_count": 1}, "Deathly": {"_count": 9}, "Gurdyroot": {"_count": 1}, "brothers": {"_count": 1}, "adventure": {"_count": 1}, "powerful": {"_count": 1}, "Elder": {"_count": 8}, "Hallows": {"_count": 6}, "magazines": {"_count": 1}, "collapsing": {"_count": 1}, "earliest": {"_count": 1}, "Peverells": {"_count": 1}, "idea": {"_count": 1}, "Resurrection": {"_count": 1}, "murders": {"_count": 1}, "source": {"_count": 1}, "sentence": {"_count": 2}, "Snatchers": {"_count": 2}, "abstract": {"_count": 1}, "slammed": {"_count": 1}, "fierce": {"_count": 1}, "phoenix": {"_count": 1}, "wandmakers": {"_count": 1}, "Mudblood": {"_count": 1}, "wreckage": {"_count": 1}, "drawing": {"_count": 1}, "streak": {"_count": 1}, "destination": {"_count": 1}, "flower": {"_count": 1}, "sitting": {"_count": 1}, "sea": {"_count": 4}, "dressing": {"_count": 1}, "stilldark": {"_count": 1}, "Deathstick": {"_count": 1}, "beloved": {"_count": 1}, "airy": {"_count": 1}, "deepest": {"_count": 2}, "wine": {"_count": 1}, "blackthorn": {"_count": 1}, "planned": {"_count": 1}, "beaded": {"_count": 1}, "inn": {"_count": 1}, "guards": {"_count": 2}, "counter": {"_count": 1}, "leather": {"_count": 1}, "vault": {"_count": 4}, "Clankers": {"_count": 1}, "fallen": {"_count": 2}, "blade": {"_count": 1}, "swelling": {"_count": 1}, "advancing": {"_count": 1}, "capital": {"_count": 1}, "smaller": {"_count": 1}, "wet": {"_count": 1}, "hooded": {"_count": 1}, "bar": {"_count": 1}, "burden": {"_count": 1}, "sides": {"_count": 1}, "painted": {"_count": 1}, "leaders": {"_count": 1}, "wearer": {"_count": 1}, "poltergeists": {"_count": 1}, "eagle": {"_count": 1}, "Carrow": {"_count": 1}, "knocker": {"_count": 1}, "descending": {"_count": 1}, "crushing": {"_count": 1}, "reconciliation": {"_count": 1}, "fighting": {"_count": 1}, "passageways": {"_count": 1}, "pouch": {"_count": 1}, "swarming": {"_count": 1}, "lost": {"_count": 1}, "Gray": {"_count": 1}, "destabilized": {"_count": 1}, "aisle": {"_count": 1}, "countless": {"_count": 1}, "cursed": {"_count": 1}, "retreating": {"_count": 1}, "substances": {"_count": 1}, "building": {"_count": 1}, "assault": {"_count": 1}, "punishment": {"_count": 1}, "gigantic": {"_count": 1}, "spider": {"_count": 1}, "doorway": {"_count": 1}, "bodies": {"_count": 1}, "swing": {"_count": 2}, "Carrows": {"_count": 1}, "incontrovertible": {"_count": 1}, "spitting": {"_count": 1}, "agonized": {"_count": 1}, "enchantment": {"_count": 1}, "power": {"_count": 1}, "revolution": {"_count": 1}, "fascination": {"_count": 1}, "conquering": {"_count": 1}, "BodyBind": {"_count": 1}, "clashing": {"_count": 1}, "stampeding": {"_count": 1}, "Seeker": {"_count": 1}, "scarlet": {"_count": 1}, "mingled": {"_count": 1}, "fourposter": {"_count": 1}, "laden": {"_count": 1}, "excuse": {"_count": 1}}, "something": {"_count": 25, "peculiar": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 6}, "said": {"_count": 2}, "labeled": {"_count": 1}, "huge": {"_count": 1}, "very": {"_count": 1}, "moving": {"_count": 1}, "happy": {"_count": 3}, "like": {"_count": 1}, "breaking": {"_count": 1}, "much": {"_count": 1}, "from": {"_count": 1}, "a": {"_count": 1}, "shiny": {"_count": 1}, "to": {"_count": 1}}, "Privet": {"_count": 15, "Drive": {"_count": 15}}, "": {"_count": 37, "?": {"_count": 6}, ".": {"_count": 26}, "!": {"_count": 5}}, "his": {"_count": 1204, "mind": {"_count": 19}, "hair": {"_count": 5}, "halfmoon": {"_count": 7}, "face": {"_count": 19}, "cloak": {"_count": 10}, "newspaper": {"_count": 2}, "cupboard": {"_count": 3}, "favorite": {"_count": 4}, "life": {"_count": 20}, "ribs": {"_count": 1}, "hand": {"_count": 38}, "reach": {"_count": 1}, "mustache": {"_count": 3}, "black": {"_count": 4}, "coat": {"_count": 3}, "own": {"_count": 49}, "sideways": {"_count": 1}, "pocket": {"_count": 26}, "eyes": {"_count": 32}, "umbrella": {"_count": 1}, "neck": {"_count": 13}, "long": {"_count": 7}, "nose": {"_count": 13}, "family": {"_count": 6}, "wand": {"_count": 55}, "childhood": {"_count": 1}, "pile": {"_count": 1}, "legs": {"_count": 3}, "eye": {"_count": 11}, "and": {"_count": 2}, "control": {"_count": 2}, "broom": {"_count": 3}, "turban": {"_count": 1}, "bed": {"_count": 18}, "fourposter": {"_count": 5}, "reflection": {"_count": 2}, "grandfathers": {"_count": 1}, "trunk": {"_count": 16}, "robes": {"_count": 36}, "seat": {"_count": 8}, "stomach": {"_count": 19}, "voice": {"_count": 15}, "small": {"_count": 2}, "homework": {"_count": 1}, "archenemy": {"_count": 1}, "former": {"_count": 1}, "triumph": {"_count": 1}, "strength": {"_count": 3}, "situation": {"_count": 1}, "room": {"_count": 4}, "childrens": {"_count": 1}, "socks": {"_count": 2}, "glasses": {"_count": 4}, "autobiography": {"_count": 1}, "shoe": {"_count": 2}, "jacket": {"_count": 5}, "sweaty": {"_count": 2}, "window": {"_count": 1}, "back": {"_count": 2}, "office": {"_count": 5}, "head": {"_count": 41}, "lungs": {"_count": 1}, "mouth": {"_count": 27}, "airy": {"_count": 1}, "bulbous": {"_count": 1}, "pouchy": {"_count": 1}, "forehead": {"_count": 1}, "parchment": {"_count": 5}, "trance": {"_count": 1}, "powers": {"_count": 4}, "attacker": {"_count": 2}, "hands": {"_count": 9}, "massive": {"_count": 2}, "wits": {"_count": 2}, "shaggy": {"_count": 1}, "being": {"_count": 1}, "Polyjuice": {"_count": 1}, "fingers": {"_count": 7}, "bedside": {"_count": 2}, "Oh": {"_count": 1}, "chairs": {"_count": 1}, "body": {"_count": 11}, "courage": {"_count": 1}, "said": {"_count": 1}, "usually": {"_count": 1}, "trunks": {"_count": 1}, "old": {"_count": 5}, "name": {"_count": 3}, "arm": {"_count": 7}, "shoes": {"_count": 1}, "eaglefeather": {"_count": 1}, "quill": {"_count": 3}, "books": {"_count": 2}, "wizarding": {"_count": 1}, "friends": {"_count": 3}, "enormous": {"_count": 4}, "neat": {"_count": 1}, "clock": {"_count": 1}, "book": {"_count": 1}, "heart": {"_count": 3}, "money": {"_count": 1}, "vault": {"_count": 1}, "bottlegreen": {"_count": 1}, "teacup": {"_count": 1}, "inside": {"_count": 1}, "fellow": {"_count": 4}, "badge": {"_count": 1}, "collapsing": {"_count": 1}, "armor": {"_count": 1}, "hut": {"_count": 1}, "feathers": {"_count": 1}, "Nimbus": {"_count": 2}, "chair": {"_count": 10}, "robe": {"_count": 4}, "other": {"_count": 5}, "bushy": {"_count": 2}, "best": {"_count": 1}, "mothers": {"_count": 3}, "manic": {"_count": 1}, "filing": {"_count": 1}, "memory": {"_count": 1}, "tankard": {"_count": 1}, "doubleagent": {"_count": 1}, "mother": {"_count": 6}, "parents": {"_count": 8}, "leather": {"_count": 1}, "gigantic": {"_count": 1}, "promise": {"_count": 1}, "briefcase": {"_count": 1}, "rat": {"_count": 1}, "feeble": {"_count": 1}, "moment": {"_count": 1}, "four": {"_count": 2}, "dive": {"_count": 1}, "sentence": {"_count": 2}, "bottlebrush": {"_count": 1}, "clawlike": {"_count": 1}, "kind": {"_count": 3}, "power": {"_count": 2}, "paws": {"_count": 1}, "formless": {"_count": 1}, "collar": {"_count": 1}, "sleek": {"_count": 2}, "tableclothsized": {"_count": 1}, "things": {"_count": 1}, "feet": {"_count": 8}, "desk": {"_count": 3}, "extremely": {"_count": 1}, "tiny": {"_count": 1}, "bedroom": {"_count": 2}, "trousers": {"_count": 1}, "swollen": {"_count": 1}, "boss": {"_count": 1}, "jeans": {"_count": 6}, "yellowandblack": {"_count": 1}, "tea": {"_count": 3}, "Omnioculars": {"_count": 3}, "ears": {"_count": 4}, "way": {"_count": 3}, "vision": {"_count": 1}, "cottage": {"_count": 1}, "record": {"_count": 1}, "water": {"_count": 1}, "schedule": {"_count": 1}, "wooden": {"_count": 1}, "twisted": {"_count": 1}, "lap": {"_count": 1}, "empty": {"_count": 2}, "brain": {"_count": 4}, "sack": {"_count": 1}, "students": {"_count": 1}, "fame": {"_count": 1}, "usual": {"_count": 1}, "cabin": {"_count": 8}, "or": {"_count": 1}, "ways": {"_count": 1}, "": {"_count": 3}, "sock": {"_count": 1}, "blind": {"_count": 1}, "model": {"_count": 1}, "tie": {"_count": 1}, "Exploding": {"_count": 1}, "card": {"_count": 1}, "shorts": {"_count": 2}, "wages": {"_count": 1}, "cuffs": {"_count": 1}, "dress": {"_count": 1}, "Blinky": {"_count": 1}, "pointed": {"_count": 1}, "reign": {"_count": 1}, "father": {"_count": 7}, "something": {"_count": 1}, "pajamas": {"_count": 2}, "map": {"_count": 1}, "ankle": {"_count": 1}, "sharks": {"_count": 1}, "scarab": {"_count": 1}, "cauldron": {"_count": 4}, "rope": {"_count": 1}, "son": {"_count": 2}, "career": {"_count": 1}, "fork": {"_count": 1}, "wiggling": {"_count": 1}, "eyelids": {"_count": 2}, "normal": {"_count": 1}, "free": {"_count": 1}, "names": {"_count": 1}, "information": {"_count": 1}, "Quidditchplaying": {"_count": 1}, "deepseated": {"_count": 1}, "moleskin": {"_count": 1}, "silver": {"_count": 1}, "right": {"_count": 8}, "torn": {"_count": 1}, "debt": {"_count": 1}, "skin": {"_count": 1}, "Quidditch": {"_count": 2}, "grizzled": {"_count": 1}, "servant": {"_count": 1}, "continued": {"_count": 1}, "trainers": {"_count": 2}, "gang": {"_count": 1}, "cousin": {"_count": 1}, "frustration": {"_count": 1}, "Adams": {"_count": 2}, "apathetic": {"_count": 1}, "two": {"_count": 1}, "first": {"_count": 3}, "Muggle": {"_count": 1}, "least": {"_count": 1}, "Ministry": {"_count": 1}, "loincloth": {"_count": 1}, "Transfiguration": {"_count": 1}, "hearing": {"_count": 3}, "Tshirt": {"_count": 1}, "actions": {"_count": 1}, "feelings": {"_count": 1}, "arrival": {"_count": 2}, "new": {"_count": 2}, "dreams": {"_count": 1}, "plate": {"_count": 1}, "time": {"_count": 1}, "holiday": {"_count": 1}, "death": {"_count": 1}, "copy": {"_count": 2}, "torpor": {"_count": 1}, "classmates": {"_count": 3}, "second": {"_count": 2}, "dismissal": {"_count": 1}, "skull": {"_count": 2}, "guilt": {"_count": 1}, "outburst": {"_count": 1}, "butterbeer": {"_count": 3}, "vast": {"_count": 2}, "detention": {"_count": 1}, "morale": {"_count": 1}, "bucketshaped": {"_count": 1}, "mates": {"_count": 1}, "words": {"_count": 1}, "appearance": {"_count": 2}, "teeth": {"_count": 4}, "cuts": {"_count": 1}, "lesson": {"_count": 1}, "work": {"_count": 1}, "Slytherin": {"_count": 1}, "jinxes": {"_count": 1}, "portrait": {"_count": 2}, "plans": {"_count": 2}, "turkey": {"_count": 1}, "castles": {"_count": 1}, "cage": {"_count": 1}, "behavior": {"_count": 1}, "knees": {"_count": 1}, "anger": {"_count": 1}, "bag": {"_count": 8}, "dormitory": {"_count": 1}, "picture": {"_count": 2}, "arms": {"_count": 4}, "pewter": {"_count": 1}, "thoughts": {"_count": 4}, "tail": {"_count": 1}, "momentary": {"_count": 1}, "interlocked": {"_count": 1}, "notetaking": {"_count": 1}, "waistcoat": {"_count": 2}, "iguana": {"_count": 1}, "ambitions": {"_count": 1}, "telescope": {"_count": 1}, "unconscious": {"_count": 1}, "chart": {"_count": 1}, "bald": {"_count": 1}, "fury": {"_count": 1}, "thestrals": {"_count": 1}, "chest": {"_count": 2}, "eyebrows": {"_count": 1}, "pale": {"_count": 1}, "welcome": {"_count": 1}, "dandelion": {"_count": 1}, "pawns": {"_count": 1}, "political": {"_count": 1}, "Junior": {"_count": 1}, "next": {"_count": 2}, "term": {"_count": 1}, "frame": {"_count": 3}, "bowler": {"_count": 1}, "followers": {"_count": 2}, "uncle": {"_count": 2}, "working": {"_count": 1}, "favorites": {"_count": 1}, "collection": {"_count": 1}, "preoccupied": {"_count": 1}, "letters": {"_count": 1}, "ambition": {"_count": 1}, "days": {"_count": 1}, "place": {"_count": 1}, "tardiness": {"_count": 1}, "attention": {"_count": 1}, "duties": {"_count": 1}, "frock": {"_count": 1}, "armchair": {"_count": 3}, "Captaincy": {"_count": 1}, "chosen": {"_count": 1}, "rock": {"_count": 1}, "tears": {"_count": 1}, "walrus": {"_count": 1}, "suitcase": {"_count": 1}, "velvet": {"_count": 1}, "suit": {"_count": 1}, "Death": {"_count": 1}, "bullying": {"_count": 1}, "form": {"_count": 1}, "gloves": {"_count": 1}, "newfound": {"_count": 1}, "camp": {"_count": 1}, "cold": {"_count": 1}, "years": {"_count": 1}, "sixteenth": {"_count": 1}, "dirty": {"_count": 1}, "little": {"_count": 2}, "House": {"_count": 1}, "insistence": {"_count": 1}, "team": {"_count": 1}, "feebler": {"_count": 1}, "schooling": {"_count": 1}, "honesty": {"_count": 1}, "essay": {"_count": 1}, "misspelled": {"_count": 1}, "request": {"_count": 1}, "imagination": {"_count": 1}, "shirt": {"_count": 1}, "elbow": {"_count": 1}, "crinkled": {"_count": 1}, "fourteenth": {"_count": 1}, "shortcuts": {"_count": 1}, "Not": {"_count": 1}, "wine": {"_count": 1}, "box": {"_count": 1}, "soul": {"_count": 8}, "goal": {"_count": 1}, "loss": {"_count": 1}, "masters": {"_count": 1}, "Horcruxes": {"_count": 4}, "hat": {"_count": 2}, "relationship": {"_count": 2}, "reverie": {"_count": 1}, "whole": {"_count": 1}, "benumbed": {"_count": 1}, "injured": {"_count": 1}, "wandlight": {"_count": 1}, "burned": {"_count": 1}, "weight": {"_count": 1}, "sisters": {"_count": 1}, "surname": {"_count": 1}, "parentage": {"_count": 1}, "protectors": {"_count": 1}, "red": {"_count": 1}, "onto": {"_count": 1}, "immediate": {"_count": 2}, "godfathers": {"_count": 1}, "textbooks": {"_count": 1}, "papers": {"_count": 1}, "daytoday": {"_count": 1}, "sister": {"_count": 3}, "generation": {"_count": 1}, "youth": {"_count": 1}, "supposed": {"_count": 1}, "famous": {"_count": 1}, "conviction": {"_count": 1}, "dead": {"_count": 1}, "rucksack": {"_count": 4}, "fellows": {"_count": 2}, "firewhisky": {"_count": 1}, "stay": {"_count": 1}, "apple": {"_count": 1}, "Trace": {"_count": 1}, "possessions": {"_count": 1}, "will": {"_count": 1}, "Yes": {"_count": 1}, "drink": {"_count": 1}, "quiet": {"_count": 1}, "sleeping": {"_count": 1}, "brother": {"_count": 2}, "pure": {"_count": 1}, "snoutlike": {"_count": 1}, "yell": {"_count": 1}, "momentarily": {"_count": 1}, "pages": {"_count": 1}, "grip": {"_count": 1}, "color": {"_count": 1}, "sweater": {"_count": 1}, "crib": {"_count": 2}, "greatest": {"_count": 1}, "magical": {"_count": 1}, "rise": {"_count": 1}, "clothes": {"_count": 1}, "lit": {"_count": 1}, "whereabouts": {"_count": 1}, "of": {"_count": 1}, "unresisting": {"_count": 1}, "scar": {"_count": 4}, "sweat": {"_count": 1}, "slanting": {"_count": 1}, "broken": {"_count": 1}, "decision": {"_count": 1}, "hiding": {"_count": 2}, "past": {"_count": 1}, "companions": {"_count": 2}, "pain": {"_count": 1}, "crimes": {"_count": 1}, "left": {"_count": 1}, "Shield": {"_count": 1}, "traveling": {"_count": 1}, "one": {"_count": 1}, "colleagues": {"_count": 1}, "last": {"_count": 2}, "unexpected": {"_count": 1}, "gaze": {"_count": 1}, "snake": {"_count": 1}, "hooked": {"_count": 1}, "total": {"_count": 1}, "had": {"_count": 1}, "undetected": {"_count": 1}, "heaving": {"_count": 1}, "children": {"_count": 1}}, "nothing": {"_count": 18, "except": {"_count": 1}, "but": {"_count": 5}, "else": {"_count": 5}, "suspended": {"_count": 1}, "to": {"_count": 2}, "more": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "drills": {"_count": 1, "he": {"_count": 1}}, "town": {"_count": 1, "drills": {"_count": 1}}, "strangely": {"_count": 1, "dressed": {"_count": 1}}, "these": {"_count": 80, "weirdos": {"_count": 1}, "birds": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 6}, "said": {"_count": 2}, "days": {"_count": 7}, "he": {"_count": 1}, "poisons": {"_count": 1}, "exotic": {"_count": 1}, "beauties": {"_count": 1}, "cages": {"_count": 1}, "She": {"_count": 1}, "were": {"_count": 1}, "subjects": {"_count": 1}, "chipolatas": {"_count": 1}, "punishments": {"_count": 1}, "people": {"_count": 4}, "men": {"_count": 1}, "expressions": {"_count": 1}, "flashy": {"_count": 1}, "words": {"_count": 3}, "foreign": {"_count": 1}, "wizards": {"_count": 2}, "four": {"_count": 1}, "trick": {"_count": 1}, "foul": {"_count": 1}, "Harry": {"_count": 1}, "tables": {"_count": 1}, "cakes": {"_count": 1}, "books": {"_count": 1}, "things": {"_count": 3}, "hexes": {"_count": 1}, "are": {"_count": 1}, "sort": {"_count": 1}, "dementors": {"_count": 1}, "dangerous": {"_count": 1}, "creatures": {"_count": 1}, "horses": {"_count": 1}, "old": {"_count": 2}, "appeared": {"_count": 1}, "individuals": {"_count": 2}, "Death": {"_count": 1}, "signs": {"_count": 1}, "movements": {"_count": 1}, "she": {"_count": 1}, "accusations": {"_count": 1}, "somber": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}, "detours": {"_count": 1}, "phials": {"_count": 1}, "meetings": {"_count": 1}, "bites": {"_count": 1}, "important": {"_count": 1}, "chains": {"_count": 1}, "halfmagical": {"_count": 1}, "shining": {"_count": 1}, "wandless": {"_count": 1}}, "him": {"_count": 269, "": {"_count": 79}, "and": {"_count": 25}, "were": {"_count": 2}, "on": {"_count": 2}, "knocking": {"_count": 1}, "wrestling": {"_count": 1}, "both": {"_count": 1}, "holding": {"_count": 3}, "so": {"_count": 2}, "dipping": {"_count": 1}, "turned": {"_count": 1}, "while": {"_count": 2}, "any": {"_count": 1}, "but": {"_count": 6}, "when": {"_count": 1}, "was": {"_count": 7}, "his": {"_count": 8}, "the": {"_count": 4}, "seized": {"_count": 1}, "catching": {"_count": 1}, "Professor": {"_count": 2}, "from": {"_count": 1}, "they": {"_count": 1}, "Hagrid": {"_count": 1}, "a": {"_count": 2}, "as": {"_count": 6}, "first": {"_count": 1}, "he": {"_count": 11}, "for": {"_count": 3}, "two": {"_count": 1}, "their": {"_count": 1}, "had": {"_count": 3}, "you": {"_count": 2}, "at": {"_count": 2}, "being": {"_count": 1}, "like": {"_count": 1}, "which": {"_count": 2}, "just": {"_count": 1}, "hoping": {"_count": 1}, "wearing": {"_count": 1}, "up": {"_count": 1}, "all": {"_count": 1}, "that": {"_count": 5}, "trying": {"_count": 1}, "gazing": {"_count": 1}, "Hermione": {"_count": 1}, "who": {"_count": 1}, "even": {"_count": 3}, "said": {"_count": 4}, "made": {"_count": 1}, "gleaming": {"_count": 2}, "to": {"_count": 1}, "having": {"_count": 1}, "full": {"_count": 1}, "let": {"_count": 1}, "knew": {"_count": 1}, "wanted": {"_count": 1}, "in": {"_count": 2}, "with": {"_count": 2}, "framed": {"_count": 1}, "Harry": {"_count": 3}, "once": {"_count": 1}, "after": {"_count": 1}, "realized": {"_count": 1}, "torch": {"_count": 1}, "screaming": {"_count": 1}, "stir": {"_count": 1}, "are": {"_count": 2}, "too": {"_count": 1}, "speaking": {"_count": 1}, "no": {"_count": 1}, "remained": {"_count": 1}, "carrying": {"_count": 1}, "Ron": {"_count": 1}, "she": {"_count": 2}, "hes": {"_count": 1}, "several": {"_count": 1}, "Draco": {"_count": 1}, "Ginny": {"_count": 1}, "Snape": {"_count": 1}, "one": {"_count": 1}, "sitting": {"_count": 1}, "barely": {"_count": 1}, "scribbling": {"_count": 1}, "looked": {"_count": 1}, "by": {"_count": 1}, "He": {"_count": 2}, "moving": {"_count": 1}, "her": {"_count": 1}, "projecting": {"_count": 1}, "pale": {"_count": 1}, "can": {"_count": 1}, "It": {"_count": 1}, "hoped": {"_count": 1}, "my": {"_count": 1}, "ached": {"_count": 1}, "stroking": {"_count": 1}, "Of": {"_count": 1}, "hundreds": {"_count": 1}}, "what": {"_count": 151, "they": {"_count": 5}, "looked": {"_count": 22}, "to": {"_count": 3}, "": {"_count": 4}, "had": {"_count": 13}, "he": {"_count": 17}, "disgraces": {"_count": 1}, "you": {"_count": 3}, "Wood": {"_count": 1}, "half": {"_count": 1}, "was": {"_count": 13}, "Ernie": {"_count": 1}, "Uncle": {"_count": 1}, "Draco": {"_count": 1}, "seemed": {"_count": 5}, "happened": {"_count": 4}, "it": {"_count": 3}, "Ron": {"_count": 1}, "I": {"_count": 2}, "human": {"_count": 1}, "appeared": {"_count": 3}, "Ive": {"_count": 2}, "yeh": {"_count": 1}, "is": {"_count": 1}, "might": {"_count": 2}, "has": {"_count": 2}, "youd": {"_count": 1}, "Lord": {"_count": 1}, "hes": {"_count": 2}, "theyre": {"_count": 1}, "Harry": {"_count": 4}, "these": {"_count": 1}, "sounded": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 3}, "mood": {"_count": 1}, "Voldemort": {"_count": 1}, "we": {"_count": 3}, "his": {"_count": 1}, "happens": {"_count": 1}, "Dumbledore": {"_count": 1}, "Professor": {"_count": 1}, "Horcruxes": {"_count": 1}, "would": {"_count": 2}, "of": {"_count": 1}, "that": {"_count": 1}, "awaited": {"_count": 1}, "Harrys": {"_count": 1}, "nobody": {"_count": 1}, "lived": {"_count": 1}, "a": {"_count": 1}, "must": {"_count": 1}, "youll": {"_count": 1}, "were": {"_count": 1}, "truly": {"_count": 1}}, "it": {"_count": 337, "": {"_count": 92}, "he": {"_count": 8}, "I": {"_count": 8}, "into": {"_count": 1}, "Harry": {"_count": 5}, "at": {"_count": 4}, "which": {"_count": 2}, "and": {"_count": 19}, "ter": {"_count": 1}, "in": {"_count": 4}, "with": {"_count": 3}, "was": {"_count": 12}, "looking": {"_count": 2}, "fell": {"_count": 1}, "had": {"_count": 4}, "came": {"_count": 1}, "just": {"_count": 1}, "but": {"_count": 6}, "inside": {"_count": 2}, "said": {"_count": 16}, "youve": {"_count": 1}, "did": {"_count": 1}, "surely": {"_count": 1}, "everywhere": {"_count": 1}, "Rosmerta": {"_count": 1}, "the": {"_count": 8}, "before": {"_count": 3}, "between": {"_count": 1}, "Potter": {"_count": 1}, "one": {"_count": 2}, "even": {"_count": 1}, "Black": {"_count": 1}, "they": {"_count": 2}, "really": {"_count": 1}, "flew": {"_count": 1}, "on": {"_count": 1}, "now": {"_count": 1}, "an": {"_count": 1}, "again": {"_count": 1}, "where": {"_count": 1}, "though": {"_count": 1}, "propelled": {"_count": 1}, "made": {"_count": 2}, "onto": {"_count": 1}, "talking": {"_count": 1}, "a": {"_count": 3}, "Ludo": {"_count": 1}, "became": {"_count": 1}, "as": {"_count": 2}, "within": {"_count": 1}, "shone": {"_count": 1}, "longed": {"_count": 1}, "filled": {"_count": 1}, "than": {"_count": 1}, "ropes": {"_count": 1}, "all": {"_count": 8}, "Petunia": {"_count": 1}, "telling": {"_count": 1}, "Mudbloods": {"_count": 1}, "followed": {"_count": 2}, "if": {"_count": 1}, "Molly": {"_count": 1}, "sick": {"_count": 1}, "Peeves": {"_count": 1}, "including": {"_count": 1}, "to": {"_count": 1}, "being": {"_count": 2}, "without": {"_count": 1}, "from": {"_count": 1}, "opening": {"_count": 1}, "because": {"_count": 1}, "Muggles": {"_count": 1}, "showed": {"_count": 1}, "hers": {"_count": 1}, "stretched": {"_count": 1}, "their": {"_count": 2}, "landed": {"_count": 1}, "out": {"_count": 1}, "appeared": {"_count": 1}, "too": {"_count": 1}, "it": {"_count": 3}, "there": {"_count": 1}, "when": {"_count": 1}, "knocked": {"_count": 2}, "mattered": {"_count": 1}, "draped": {"_count": 1}, "mate": {"_count": 1}, "Narcissa": {"_count": 1}, "ought": {"_count": 1}, "Instead": {"_count": 1}, "another": {"_count": 1}, "for": {"_count": 2}, "Ron": {"_count": 3}, "reached": {"_count": 1}, "that": {"_count": 1}, "Ive": {"_count": 1}, "down": {"_count": 1}, "or": {"_count": 1}, "happening": {"_count": 1}, "not": {"_count": 1}, "overdone": {"_count": 1}, "got": {"_count": 1}, "Malfoy": {"_count": 1}, "He": {"_count": 1}, "created": {"_count": 1}, "hes": {"_count": 1}, "threatened": {"_count": 1}, "particularly": {"_count": 1}, "how": {"_count": 2}, "can": {"_count": 1}, "turned": {"_count": 1}, "spelling": {"_count": 1}, "done": {"_count": 1}, "Dirk": {"_count": 1}, "isnt": {"_count": 1}, "sear": {"_count": 1}, "off": {"_count": 1}, "pitchblack": {"_count": 1}, "straightaway": {"_count": 1}, "himself": {"_count": 1}, "anyone": {"_count": 1}, "seemed": {"_count": 1}, "sort": {"_count": 1}, "left": {"_count": 1}, "She": {"_count": 1}, "like": {"_count": 1}, "They": {"_count": 1}, "right": {"_count": 1}, "Id": {"_count": 1}, "his": {"_count": 1}, "so": {"_count": 2}, "have": {"_count": 1}}, "people": {"_count": 102, "called": {"_count": 1}, "passed": {"_count": 1}, "who": {"_count": 9}, "craning": {"_count": 1}, "had": {"_count": 2}, "watching": {"_count": 1}, "hurrying": {"_count": 2}, "standing": {"_count": 2}, "hugging": {"_count": 1}, "dont": {"_count": 1}, "bearing": {"_count": 1}, "halfway": {"_count": 1}, "gathered": {"_count": 1}, "here": {"_count": 1}, "skirting": {"_count": 1}, "moving": {"_count": 5}, "in": {"_count": 3}, "around": {"_count": 3}, "staring": {"_count": 1}, "was": {"_count": 1}, "outside": {"_count": 1}, "the": {"_count": 1}, "running": {"_count": 1}, "he": {"_count": 1}, "came": {"_count": 2}, "": {"_count": 12}, "but": {"_count": 1}, "were": {"_count": 2}, "wearing": {"_count": 1}, "nervous": {"_count": 1}, "wouldnt": {"_count": 1}, "said": {"_count": 2}, "thought": {"_count": 1}, "Id": {"_count": 1}, "pressed": {"_count": 1}, "making": {"_count": 1}, "volunteered": {"_count": 1}, "fifty": {"_count": 1}, "below": {"_count": 1}, "wanted": {"_count": 1}, "though": {"_count": 1}, "at": {"_count": 2}, "some": {"_count": 1}, "stared": {"_count": 1}, "out": {"_count": 1}, "Hermione": {"_count": 1}, "laughed": {"_count": 1}, "being": {"_count": 1}, "will": {"_count": 1}, "now": {"_count": 2}, "are": {"_count": 1}, "to": {"_count": 1}, "should": {"_count": 1}, "have": {"_count": 1}, "use": {"_count": 1}, "go": {"_count": 1}, "thats": {"_count": 1}, "congratulating": {"_count": 1}, "whod": {"_count": 1}, "Harry": {"_count": 1}, "waiting": {"_count": 1}, "most": {"_count": 1}, "on": {"_count": 1}, "must": {"_count": 1}, "you": {"_count": 1}, "remained": {"_count": 1}, "marching": {"_count": 1}}, "imagination": {"_count": 1, "": {"_count": 1}}, "sightings": {"_count": 1, "of": {"_count": 1}}, "owls": {"_count": 11, "tonight": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "and": {"_count": 2}, "of": {"_count": 1}, "all": {"_count": 1}, "shooting": {"_count": 1}, "came": {"_count": 1}, "nestled": {"_count": 1}}, "shooting": {"_count": 2, "stars": {"_count": 1}, "heavy": {"_count": 1}}, "tea": {"_count": 41, "": {"_count": 14}, "and": {"_count": 8}, "with": {"_count": 3}, "Percy": {"_count": 1}, "wiped": {"_count": 1}, "said": {"_count": 1}, "leaves": {"_count": 3}, "in": {"_count": 3}, "too": {"_count": 1}, "trailed": {"_count": 1}, "into": {"_count": 1}, "after": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "trembling": {"_count": 1}}, "funnylooking": {"_count": 1, "people": {"_count": 1}}, "well": {"_count": 3, "he": {"_count": 2}, "wishers": {"_count": 1}}, "sleepiness": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 227, "window": {"_count": 1}, "necks": {"_count": 2}, "reach": {"_count": 1}, "compartment": {"_count": 3}, "first": {"_count": 2}, "minds": {"_count": 5}, "brooms": {"_count": 3}, "free": {"_count": 2}, "lesson": {"_count": 1}, "way": {"_count": 6}, "men": {"_count": 1}, "own": {"_count": 13}, "trolleys": {"_count": 1}, "trunks": {"_count": 2}, "old": {"_count": 2}, "beds": {"_count": 3}, "tea": {"_count": 1}, "hairs": {"_count": 1}, "precious": {"_count": 1}, "lives": {"_count": 3}, "fellow": {"_count": 3}, "skins": {"_count": 2}, "glass": {"_count": 1}, "compartments": {"_count": 3}, "eyes": {"_count": 3}, "dungeon": {"_count": 1}, "next": {"_count": 2}, "hands": {"_count": 4}, "dying": {"_count": 1}, "table": {"_count": 1}, "little": {"_count": 1}, "movements": {"_count": 1}, "owners": {"_count": 1}, "cloaks": {"_count": 1}, "clubs": {"_count": 1}, "visit": {"_count": 1}, "crystal": {"_count": 1}, "ears": {"_count": 1}, "class": {"_count": 1}, "faces": {"_count": 5}, "wands": {"_count": 2}, "ways": {"_count": 1}, "best": {"_count": 2}, "vision": {"_count": 1}, "murderer": {"_count": 1}, "room": {"_count": 1}, "fake": {"_count": 1}, "seats": {"_count": 1}, "breakfast": {"_count": 1}, "uniforms": {"_count": 1}, "friends": {"_count": 2}, "wits": {"_count": 1}, "school": {"_count": 1}, "plates": {"_count": 1}, "previous": {"_count": 2}, "predictions": {"_count": 1}, "project": {"_count": 1}, "subjects": {"_count": 1}, "beards": {"_count": 1}, "paddock": {"_count": 1}, "classes": {"_count": 1}, "rosebush": {"_count": 1}, "backs": {"_count": 1}, "dormitories": {"_count": 1}, "Charms": {"_count": 1}, "hats": {"_count": 1}, "efforts": {"_count": 1}, "master": {"_count": 1}, "voices": {"_count": 3}, "usual": {"_count": 1}, "cool": {"_count": 1}, "life": {"_count": 1}, "line": {"_count": 1}, "black": {"_count": 1}, "wings": {"_count": 1}, "families": {"_count": 1}, "favorite": {"_count": 1}, "footsteps": {"_count": 1}, "lessons": {"_count": 3}, "robes": {"_count": 3}, "last": {"_count": 3}, "chairs": {"_count": 1}, "head": {"_count": 1}, "names": {"_count": 1}, "most": {"_count": 1}, "meetings": {"_count": 1}, "fourth": {"_count": 1}, "frames": {"_count": 2}, "bottles": {"_count": 1}, "chests": {"_count": 1}, "departure": {"_count": 2}, "victims": {"_count": 2}, "pictures": {"_count": 2}, "fathers": {"_count": 1}, "information": {"_count": 1}, "upcoming": {"_count": 1}, "silence": {"_count": 1}, "exams": {"_count": 2}, "heads": {"_count": 2}, "telescopes": {"_count": 1}, "overturned": {"_count": 1}, "wild": {"_count": 1}, "pawing": {"_count": 1}, "kind": {"_count": 1}, "mounts": {"_count": 1}, "thestral": {"_count": 1}, "laughter": {"_count": 1}, "dormitory": {"_count": 1}, "headquarters": {"_count": 1}, "company": {"_count": 2}, "friendship": {"_count": 1}, "disastrous": {"_count": 1}, "runaway": {"_count": 1}, "enormous": {"_count": 1}, "top": {"_count": 1}, "conversation": {"_count": 1}, "Owl": {"_count": 1}, "behavior": {"_count": 1}, "two": {"_count": 1}, "space": {"_count": 1}, "trusted": {"_count": 1}, "dinner": {"_count": 1}, "tails": {"_count": 1}, "soul": {"_count": 1}, "rare": {"_count": 1}, "great": {"_count": 1}, "mourning": {"_count": 1}, "pointless": {"_count": 1}, "time": {"_count": 1}, "arms": {"_count": 1}, "knowledge": {"_count": 1}, "mother": {"_count": 1}, "expressions": {"_count": 1}, "recent": {"_count": 1}, "approach": {"_count": 1}, "family": {"_count": 2}, "scattered": {"_count": 1}, "plan": {"_count": 1}, "corners": {"_count": 1}, "speculations": {"_count": 1}, "kids": {"_count": 1}, "worries": {"_count": 1}, "possessions": {"_count": 1}, "facts": {"_count": 1}, "sacrifice": {"_count": 1}, "seventeenyearold": {"_count": 1}, "suffering": {"_count": 1}, "prison": {"_count": 1}, "magic": {"_count": 1}, "goblets": {"_count": 1}, "attempted": {"_count": 1}, "sleeping": {"_count": 1}, "spells": {"_count": 1}, "scrutiny": {"_count": 1}, "soft": {"_count": 1}, "disembodied": {"_count": 1}, "current": {"_count": 1}, "hero": {"_count": 1}}, "Muggle": {"_count": 22, "sweet": {"_count": 1}, "trick": {"_count": 1}, "Artifacts": {"_count": 7}, "stuff": {"_count": 1}, "parentage": {"_count": 2}, "money": {"_count": 1}, "descent": {"_count": 1}, "clothes": {"_count": 1}, "childrens": {"_count": 1}, "dueling": {"_count": 1}, "towns": {"_count": 1}, "marked": {"_count": 1}, "attacks": {"_count": 1}, "motorcycles": {"_count": 1}, "borns": {"_count": 1}}, "saying": {"_count": 4, "Voldemorts": {"_count": 1}, "me": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}}, "all": {"_count": 128, "the": {"_count": 30}, "places": {"_count": 1}, "for": {"_count": 1}, "necessary": {"_count": 1}, "people": {"_count": 3}, "his": {"_count": 5}, "were": {"_count": 2}, "of": {"_count": 4}, "pplaces": {"_count": 1}, "time": {"_count": 5}, "shapes": {"_count": 1}, "who": {"_count": 1}, "this": {"_count": 3}, "in": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 8}, "he": {"_count": 7}, "magical": {"_count": 1}, "was": {"_count": 3}, "that": {"_count": 2}, "is": {"_count": 1}, "Dudleys": {"_count": 1}, "food": {"_count": 1}, "these": {"_count": 3}, "you": {"_count": 1}, "bore": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 2}, "thought": {"_count": 2}, "an": {"_count": 1}, "charges": {"_count": 4}, "to": {"_count": 1}, "those": {"_count": 1}, "thirty": {"_count": 1}, "Ron": {"_count": 1}, "bewitching": {"_count": 1}, "Dolores": {"_count": 1}, "emotion": {"_count": 3}, "with": {"_count": 1}, "youre": {"_count": 1}, "we": {"_count": 2}, "Rons": {"_count": 1}, "her": {"_count": 1}, "reminders": {"_count": 1}, "color": {"_count": 1}, "I": {"_count": 1}, "Muffliato": {"_count": 1}, "but": {"_count": 2}, "its": {"_count": 1}, "why": {"_count": 1}, "Hogwarts": {"_count": 1}, "our": {"_count": 1}, "Wizardkind": {"_count": 1}, "discipline": {"_count": 1}, "responsibility": {"_count": 1}, "though": {"_count": 1}}, "heaven": {"_count": 1, "did": {"_count": 1}}, "course": {"_count": 338, "": {"_count": 57}, "it": {"_count": 7}, "he": {"_count": 15}, "I": {"_count": 26}, "you": {"_count": 11}, "Harry": {"_count": 3}, "but": {"_count": 16}, "its": {"_count": 2}, "nothing": {"_count": 1}, "someone": {"_count": 1}, "the": {"_count": 7}, "there": {"_count": 4}, "lie": {"_count": 1}, "that": {"_count": 16}, "had": {"_count": 6}, "How": {"_count": 1}, "said": {"_count": 27}, "without": {"_count": 1}, "Its": {"_count": 1}, "a": {"_count": 3}, "everyone": {"_count": 1}, "step": {"_count": 1}, "by": {"_count": 2}, "have": {"_count": 2}, "not": {"_count": 12}, "exceptionally": {"_count": 1}, "working": {"_count": 1}, "YouKnow": {"_count": 1}, "we": {"_count": 6}, "Black": {"_count": 1}, "hes": {"_count": 2}, "your": {"_count": 2}, "they": {"_count": 8}, "Snape": {"_count": 1}, "if": {"_count": 5}, "Potter": {"_count": 1}, "be": {"_count": 6}, "moving": {"_count": 1}, "was": {"_count": 5}, "for": {"_count": 2}, "their": {"_count": 1}, "e": {"_count": 1}, "too": {"_count": 1}, "because": {"_count": 1}, "would": {"_count": 3}, "Mrs": {"_count": 1}, "an": {"_count": 1}, "she": {"_count": 5}, "banned": {"_count": 1}, "hed": {"_count": 1}, "with": {"_count": 1}, "being": {"_count": 1}, "to": {"_count": 3}, "about": {"_count": 1}, "anytime": {"_count": 1}, "Sirius": {"_count": 1}, "theyre": {"_count": 1}, "looks": {"_count": 1}, "many": {"_count": 1}, "been": {"_count": 1}, "shes": {"_count": 1}, "Ill": {"_count": 1}, "still": {"_count": 1}, "thatll": {"_count": 1}, "forbidden": {"_count": 1}, "Professor": {"_count": 1}, "wed": {"_count": 1}, "well": {"_count": 2}, "dreamed": {"_count": 1}, "nobody": {"_count": 2}, "take": {"_count": 1}, "more": {"_count": 1}, "of": {"_count": 2}, "passed": {"_count": 1}, "another": {"_count": 1}, "captains": {"_count": 1}, "Zabini": {"_count": 1}, "one": {"_count": 1}, "Captain": {"_count": 1}, "seemed": {"_count": 1}, "his": {"_count": 1}, "natural": {"_count": 1}, "while": {"_count": 1}, "and": {"_count": 2}, "proves": {"_count": 1}, "as": {"_count": 1}, "existence": {"_count": 1}, "never": {"_count": 1}, "Im": {"_count": 1}, "deeply": {"_count": 1}, "secretly": {"_count": 1}, "think": {"_count": 1}, "people": {"_count": 1}, "devastated": {"_count": 1}, "Dumbledore": {"_count": 1}, "make": {"_count": 1}, "You": {"_count": 1}, "Dora": {"_count": 1}, "is": {"_count": 1}}, "bushy": {"_count": 4, "black": {"_count": 1}, "brown": {"_count": 2}, "gray": {"_count": 1}}, "trash": {"_count": 1, "can": {"_count": 1}}, "blankets": {"_count": 5, "": {"_count": 4}, "on": {"_count": 1}}, "jetblack": {"_count": 1, "hair": {"_count": 1}}, "lightning": {"_count": 10, "": {"_count": 3}, "came": {"_count": 1}, "illuminated": {"_count": 1}, "was": {"_count": 1}, "flashed": {"_count": 1}, "that": {"_count": 1}, "crossed": {"_count": 1}, "but": {"_count": 1}}, "light": {"_count": 88, "sped": {"_count": 1}, "on": {"_count": 4}, "reading": {"_count": 1}, "was": {"_count": 4}, "so": {"_count": 1}, "flamed": {"_count": 1}, "fell": {"_count": 1}, "and": {"_count": 14}, "in": {"_count": 5}, "": {"_count": 7}, "reunited": {"_count": 1}, "farther": {"_count": 1}, "shot": {"_count": 3}, "now": {"_count": 2}, "looking": {"_count": 1}, "connected": {"_count": 1}, "beyond": {"_count": 1}, "still": {"_count": 1}, "were": {"_count": 2}, "moved": {"_count": 1}, "right": {"_count": 1}, "vanished": {"_count": 1}, "flew": {"_count": 6}, "had": {"_count": 1}, "that": {"_count": 2}, "the": {"_count": 1}, "caused": {"_count": 1}, "it": {"_count": 1}, "ahead": {"_count": 2}, "cast": {"_count": 1}, "later": {"_count": 1}, "from": {"_count": 2}, "within": {"_count": 1}, "Harry": {"_count": 1}, "hit": {"_count": 1}, "grunts": {"_count": 1}, "over": {"_count": 2}, "down": {"_count": 1}, "burst": {"_count": 1}, "they": {"_count": 1}, "whizzed": {"_count": 1}, "revealed": {"_count": 1}, "kind": {"_count": 1}, "flying": {"_count": 2}, "where": {"_count": 1}}, "pictures": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "bed": {"_count": 30, "and": {"_count": 10}, "roaming": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "crossed": {"_count": 1}, "": {"_count": 3}, "on": {"_count": 1}, "again": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}, "after": {"_count": 1}, "out": {"_count": 2}, "opened": {"_count": 1}, "to": {"_count": 1}, "so": {"_count": 1}, "said": {"_count": 1}}, "Dudleys": {"_count": 10, "and": {"_count": 1}, "brown": {"_count": 1}, "old": {"_count": 1}, "watch": {"_count": 1}, "large": {"_count": 1}, "massive": {"_count": 2}, "arm": {"_count": 1}, "leather": {"_count": 1}, "lowfat": {"_count": 1}}, "Scotch": {"_count": 1, "tape": {"_count": 1}}, "egg": {"_count": 3, "and": {"_count": 1}, "yolk": {"_count": 1}, "too": {"_count": 1}}, "cabbage": {"_count": 1, "and": {"_count": 1}}, "anything": {"_count": 19, "else": {"_count": 3}, "to": {"_count": 8}, "connected": {"_count": 1}, "that": {"_count": 1}, "Ive": {"_count": 1}, "": {"_count": 2}, "around": {"_count": 1}, "he": {"_count": 1}, "valuable": {"_count": 1}}, "Harry": {"_count": 93, "coming": {"_count": 1}, "he": {"_count": 2}, "being": {"_count": 1}, "carrying": {"_count": 1}, "": {"_count": 18}, "Potter": {"_count": 10}, "Ron": {"_count": 4}, "standing": {"_count": 1}, "down": {"_count": 1}, "and": {"_count": 17}, "who": {"_count": 3}, "moved": {"_count": 1}, "his": {"_count": 1}, "falling": {"_count": 1}, "took": {"_count": 1}, "doing": {"_count": 1}, "with": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "headed": {"_count": 1}, "Pansy": {"_count": 1}, "or": {"_count": 1}, "but": {"_count": 2}, "so": {"_count": 1}, "giving": {"_count": 1}, "are": {"_count": 1}, "on": {"_count": 1}, "still": {"_count": 1}, "Potters": {"_count": 3}, "said": {"_count": 1}, "then": {"_count": 1}, "bellowing": {"_count": 1}, "before": {"_count": 2}, "again": {"_count": 1}, "yet": {"_count": 1}, "finished": {"_count": 1}, "yes": {"_count": 1}, "yearned": {"_count": 1}, "ached": {"_count": 1}, "looking": {"_count": 1}, "muttered": {"_count": 1}}, "kitchen": {"_count": 1, "scissors": {"_count": 1}}, "hitting": {"_count": 1, "him": {"_count": 1}}, "lizards": {"_count": 1, "and": {"_count": 1}}, "wood": {"_count": 15, "and": {"_count": 3}, "up": {"_count": 1}, "roaring": {"_count": 1}, "against": {"_count": 1}, "nymphs": {"_count": 1}, "each": {"_count": 1}, "lice": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "under": {"_count": 1}, "remained": {"_count": 1}, "that": {"_count": 1}}, "boredom": {"_count": 1, "itself": {"_count": 1}}, "horror": {"_count": 17, "": {"_count": 5}, "on": {"_count": 2}, "he": {"_count": 2}, "which": {"_count": 1}, "Harry": {"_count": 2}, "that": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "or": {"_count": 1}, "never": {"_count": 1}}, "strong": {"_count": 5, "sweet": {"_count": 1}, "tea": {"_count": 1}, "clammy": {"_count": 1}, "green": {"_count": 1}, "gray": {"_count": 1}}, "green": {"_count": 51, "light": {"_count": 35}, "smoke": {"_count": 1}, "eyes": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 6}, "flames": {"_count": 1}, "screaming": {"_count": 1}, "sparks": {"_count": 1}}, "some": {"_count": 39, "unknown": {"_count": 2}, "amber": {"_count": 1}, "basic": {"_count": 1}, "excited": {"_count": 1}, "giant": {"_count": 1}, "sinisterlooking": {"_count": 1}, "dreadful": {"_count": 2}, "worn": {"_count": 1}, "kind": {"_count": 4}, "stupid": {"_count": 1}, "help": {"_count": 1}, "poor": {"_count": 1}, "sort": {"_count": 2}, "fascinating": {"_count": 1}, "purple": {"_count": 2}, "black": {"_count": 1}, "crackpot": {"_count": 1}, "fresh": {"_count": 1}, "diseased": {"_count": 1}, "smoking": {"_count": 1}, "anxiouslooking": {"_count": 1}, "monstrous": {"_count": 1}, "enormous": {"_count": 1}, "sixteen": {"_count": 1}, "other": {"_count": 1}, "years": {"_count": 1}, "of": {"_count": 1}, "use": {"_count": 1}, "secret": {"_count": 1}, "Dark": {"_count": 2}, "great": {"_count": 1}}, "hope": {"_count": 7, "": {"_count": 2}, "for": {"_count": 2}, "or": {"_count": 1}, "to": {"_count": 1}, "burgeoned": {"_count": 1}}, "chocolate": {"_count": 11, "cake": {"_count": 1}, "into": {"_count": 3}, "in": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}, "with": {"_count": 1}, "from": {"_count": 1}, "liqueurs": {"_count": 1}}, "old": {"_count": 27, "elephant": {"_count": 1}, "porridge": {"_count": 1}, "tosh": {"_count": 1}, "socks": {"_count": 1}, "headmasters": {"_count": 3}, "Head": {"_count": 1}, "mismatched": {"_count": 1}, "parchment": {"_count": 2}, "boy": {"_count": 1}, "rubbish": {"_count": 1}, "photographs": {"_count": 1}, "when": {"_count": 1}, "witches": {"_count": 1}, "railings": {"_count": 1}, "underwear": {"_count": 1}, "Wellington": {"_count": 1}, "books": {"_count": 2}, "tobacco": {"_count": 1}, "Prophets": {"_count": 1}, "Potions": {"_count": 1}, "age": {"_count": 1}, "shelves": {"_count": 1}, "furniture": {"_count": 1}}, "letters": {"_count": 6, "on": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 1}, "in": {"_count": 1}}, "Wight": {"_count": 1, "a": {"_count": 1}}, "yellowish": {"_count": 2, "parchment": {"_count": 2}}, "arms": {"_count": 9, "a": {"_count": 1}, "out": {"_count": 1}, "lion": {"_count": 1}, "two": {"_count": 1}, "reach": {"_count": 1}, "engraved": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "because": {"_count": 1}}, "unfolding": {"_count": 1, "his": {"_count": 1}}, "traffic": {"_count": 3, "lights": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 200, "croaked": {"_count": 1}, "Mr": {"_count": 1}, "know": {"_count": 3}, "will": {"_count": 8}, "is": {"_count": 1}, "knows": {"_count": 1}, "": {"_count": 47}, "get": {"_count": 1}, "do": {"_count": 2}, "she": {"_count": 3}, "Malfoy": {"_count": 1}, "are": {"_count": 3}, "Ill": {"_count": 1}, "dear": {"_count": 1}, "the": {"_count": 1}, "havent": {"_count": 1}, "want": {"_count": 1}, "he": {"_count": 3}, "remembered": {"_count": 1}, "need": {"_count": 1}, "youngsters": {"_count": 1}, "can": {"_count": 2}, "said": {"_count": 11}, "please": {"_count": 1}, "wont": {"_count": 1}, "Perce": {"_count": 1}, "fall": {"_count": 1}, "to": {"_count": 12}, "left": {"_count": 1}, "that": {"_count": 2}, "and": {"_count": 4}, "return": {"_count": 1}, "seen": {"_count": 1}, "ever": {"_count": 2}, "not": {"_count": 1}, "into": {"_count": 1}, "you": {"_count": 1}, "before": {"_count": 3}, "youll": {"_count": 1}, "all": {"_count": 2}, "did": {"_count": 1}, "conjured": {"_count": 1}, "pay": {"_count": 1}, "wishing": {"_count": 1}, "including": {"_count": 1}, "this": {"_count": 1}, "as": {"_count": 3}, "so": {"_count": 1}, "stand": {"_count": 1}, "Harry": {"_count": 2}, "tonight": {"_count": 1}, "later": {"_count": 1}, "in": {"_count": 2}, "thought": {"_count": 1}, "keep": {"_count": 1}, "been": {"_count": 1}, "for": {"_count": 1}, "what": {"_count": 1}, "careful": {"_count": 1}, "who": {"_count": 3}, "with": {"_count": 1}, "over": {"_count": 1}, "would": {"_count": 3}, "have": {"_count": 3}, "youve": {"_count": 2}, "meeting": {"_count": 1}, "could": {"_count": 1}, "were": {"_count": 1}, "a": {"_count": 1}, "\u2018Disturbed": {"_count": 1}, "going": {"_count": 1}, "my": {"_count": 1}, "anyway": {"_count": 1}, "Potter": {"_count": 1}, "than": {"_count": 1}, "Prime": {"_count": 1}, "look": {"_count": 1}, "hunting": {"_count": 1}, "scraped": {"_count": 1}, "manage": {"_count": 1}, "sir": {"_count": 2}, "being": {"_count": 1}, "may": {"_count": 1}, "found": {"_count": 1}, "What": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 1}, "getting": {"_count": 1}, "whispering": {"_count": 1}, "because": {"_count": 1}, "its": {"_count": 1}, "but": {"_count": 1}, "attempt": {"_count": 1}, "understands": {"_count": 1}, "Severus": {"_count": 1}, "little": {"_count": 1}}, "spiders": {"_count": 7, "fell": {"_count": 1}, "scuttling": {"_count": 1}, "": {"_count": 2}, "moving": {"_count": 1}, "it": {"_count": 1}, "clicking": {"_count": 1}}, "books": {"_count": 35, "": {"_count": 9}, "to": {"_count": 1}, "as": {"_count": 1}, "already": {"_count": 1}, "thousands": {"_count": 1}, "and": {"_count": 5}, "in": {"_count": 1}, "surrounding": {"_count": 1}, "for": {"_count": 3}, "onto": {"_count": 1}, "on": {"_count": 2}, "it": {"_count": 1}, "that": {"_count": 1}, "debating": {"_count": 1}, "so": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "behind": {"_count": 1}, "no": {"_count": 1}, "woolly": {"_count": 1}}, "Dudley": {"_count": 7, "bawling": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}, "shielding": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}, "pounding": {"_count": 1}}, "confused": {"_count": 2, "fighting": {"_count": 1}, "Hufflepuffs": {"_count": 1}}, "nails": {"_count": 1, "if": {"_count": 1}}, "fruitcake": {"_count": 2, "Aunt": {"_count": 1}, "on": {"_count": 1}}, "hand": {"_count": 5, "": {"_count": 3}, "again": {"_count": 1}, "and": {"_count": 1}}, "passing": {"_count": 6, "cars": {"_count": 1}, "the": {"_count": 1}, "first": {"_count": 1}, "History": {"_count": 1}, "Muggles": {"_count": 1}, "secret": {"_count": 1}}, "television": {"_count": 1, "then": {"_count": 1}}, "Uncle": {"_count": 22, "Vernons": {"_count": 16}, "Vernon": {"_count": 6}}, "seaweed": {"_count": 1, "the": {"_count": 1}}, "chips": {"_count": 2, "each": {"_count": 1}, "but": {"_count": 1}}, "those": {"_count": 65, "letters": {"_count": 1}, "old": {"_count": 1}, "who": {"_count": 7}, "he": {"_count": 1}, "times": {"_count": 1}, "rare": {"_count": 1}, "Muggles": {"_count": 1}, "brilliant": {"_count": 1}, "new": {"_count": 1}, "itll": {"_count": 1}, "poor": {"_count": 1}, "": {"_count": 1}, "dangerous": {"_count": 1}, "theyre": {"_count": 1}, "when": {"_count": 1}, "Fudge": {"_count": 1}, "sunken": {"_count": 1}, "nutters": {"_count": 1}, "in": {"_count": 1}, "vertical": {"_count": 1}, "next": {"_count": 1}, "taps": {"_count": 1}, "eclairs": {"_count": 1}, "Bludgers": {"_count": 1}, "unnaturally": {"_count": 1}, "tiny": {"_count": 1}, "around": {"_count": 1}, "dragonish": {"_count": 1}, "dementors": {"_count": 1}, "cuts": {"_count": 1}, "touching": {"_count": 1}, "strange": {"_count": 1}, "already": {"_count": 1}, "boils": {"_count": 1}, "classrooms": {"_count": 1}, "Catherine": {"_count": 1}, "applying": {"_count": 1}, "things": {"_count": 4}, "saves": {"_count": 1}, "questions": {"_count": 1}, "burned": {"_count": 1}, "wizards": {"_count": 1}, "uncomfortable": {"_count": 1}, "whom": {"_count": 1}, "with": {"_count": 1}, "creatures": {"_count": 1}, "scribbled": {"_count": 1}, "sitting": {"_count": 1}, "at": {"_count": 1}, "inexplicable": {"_count": 1}, "wide": {"_count": 1}, "superstitions": {"_count": 1}, "resisting": {"_count": 1}, "goblin": {"_count": 1}, "before": {"_count": 1}, "nearest": {"_count": 1}}, "reaching": {"_count": 1, "them": {"_count": 1}}, "floor": {"_count": 2, "he": {"_count": 1}, "space": {"_count": 1}}, "thunder": {"_count": 8, "that": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "followed": {"_count": 1}, "overhead": {"_count": 1}, "shook": {"_count": 1}, "and": {"_count": 1}}, "hair": {"_count": 8, "and": {"_count": 2}, "had": {"_count": 1}, "he": {"_count": 1}, "out": {"_count": 1}, "swinging": {"_count": 1}, "so": {"_count": 1}, "that": {"_count": 1}}, "rubber": {"_count": 2, "and": {"_count": 1}, "boots": {"_count": 1}}, "Keys": {"_count": 2, "and": {"_count": 1}, "at": {"_count": 1}}, "things": {"_count": 31, "out": {"_count": 2}, "": {"_count": 4}, "in": {"_count": 2}, "Harry": {"_count": 1}, "trying": {"_count": 1}, "that": {"_count": 6}, "Mr": {"_count": 1}, "and": {"_count": 1}, "Im": {"_count": 1}, "dont": {"_count": 1}, "did": {"_count": 1}, "for": {"_count": 1}, "now": {"_count": 1}, "isnt": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}, "funny": {"_count": 1}, "said": {"_count": 2}, "back": {"_count": 1}, "like": {"_count": 1}}, "sausages": {"_count": 3, "a": {"_count": 1}, "with": {"_count": 1}, "toward": {"_count": 1}}, "sizzling": {"_count": 1, "sausage": {"_count": 1}}, "yeh": {"_count": 8, "said": {"_count": 3}, "how": {"_count": 1}, "yer": {"_count": 1}, "ter": {"_count": 1}, "committin": {"_count": 1}, "": {"_count": 1}}, "Merlin": {"_count": 14, "First": {"_count": 7}, "Third": {"_count": 2}, "Second": {"_count": 1}, "hit": {"_count": 1}, "are": {"_count": 1}, "said": {"_count": 1}, "most": {"_count": 1}}, "Wizards": {"_count": 14, "Dear": {"_count": 1}, "If": {"_count": 1}, "Conference": {"_count": 1}, "Statute": {"_count": 2}, "because": {"_count": 2}, "British": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 1}, "was": {"_count": 1}}, "Witchcraft": {"_count": 18, "and": {"_count": 18}}, "parchment": {"_count": 129, "": {"_count": 25}, "potion": {"_count": 1}, "from": {"_count": 7}, "inside": {"_count": 1}, "that": {"_count": 7}, "but": {"_count": 1}, "and": {"_count": 16}, "more": {"_count": 1}, "within": {"_count": 1}, "on": {"_count": 5}, "with": {"_count": 4}, "off": {"_count": 2}, "he": {"_count": 1}, "around": {"_count": 1}, "in": {"_count": 4}, "littered": {"_count": 1}, "toward": {"_count": 3}, "Bagman": {"_count": 1}, "a": {"_count": 2}, "bearing": {"_count": 1}, "at": {"_count": 2}, "tied": {"_count": 3}, "out": {"_count": 2}, "into": {"_count": 3}, "fluttered": {"_count": 1}, "shot": {"_count": 1}, "which": {"_count": 5}, "belongs": {"_count": 1}, "folded": {"_count": 1}, "for": {"_count": 2}, "was": {"_count": 1}, "over": {"_count": 1}, "the": {"_count": 2}, "goblets": {"_count": 1}, "left": {"_count": 1}, "others": {"_count": 1}, "came": {"_count": 1}, "Kingsley": {"_count": 1}, "one": {"_count": 1}, "old": {"_count": 1}, "we": {"_count": 1}, "now": {"_count": 1}, "fell": {"_count": 1}, "zoomed": {"_count": 1}, "kissed": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}, "covered": {"_count": 1}, "is": {"_count": 1}, "again": {"_count": 1}, "soared": {"_count": 1}, "opened": {"_count": 1}}, "frog": {"_count": 5, "spawn": {"_count": 3}, "liver": {"_count": 1}, "": {"_count": 1}}, "having": {"_count": 15, "a": {"_count": 3}, "relatives": {"_count": 1}, "spotted": {"_count": 1}, "successfully": {"_count": 1}, "gotten": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}, "responsibility": {"_count": 1}, "tried": {"_count": 1}, "been": {"_count": 2}, "caused": {"_count": 1}, "to": {"_count": 1}}, "yer": {"_count": 1, "mum": {"_count": 1}}, "being": {"_count": 52, "speared": {"_count": 1}, "left": {"_count": 1}, "a": {"_count": 7}, "able": {"_count": 1}, "Head": {"_count": 1}, "squashed": {"_count": 1}, "seen": {"_count": 1}, "given": {"_count": 1}, "innocent": {"_count": 1}, "forced": {"_count": 1}, "just": {"_count": 1}, "taught": {"_count": 1}, "freed": {"_count": 1}, "named": {"_count": 1}, "Death": {"_count": 2}, "kept": {"_count": 1}, "back": {"_count": 1}, "expelled": {"_count": 1}, "the": {"_count": 1}, "overheard": {"_count": 3}, "unclean": {"_count": 1}, "sent": {"_count": 1}, "watched": {"_count": 1}, "interrogated": {"_count": 1}, "human": {"_count": 1}, "glad": {"_count": 1}, "discovered": {"_count": 1}, "\u2018hoodwinked": {"_count": 1}, "thought": {"_count": 1}, "\u2018Dumbledore": {"_count": 1}, "dependent": {"_count": 1}, "half": {"_count": 1}, "\u2018half": {"_count": 1}, "unable": {"_count": 1}, "his": {"_count": 1}, "addressed": {"_count": 1}, "separated": {"_count": 1}, "an": {"_count": 1}, "roughly": {"_count": 1}, "stuck": {"_count": 1}, "dragged": {"_count": 1}, "said": {"_count": 1}, "shut": {"_count": 1}}, "an": {"_count": 105, "umbrella": {"_count": 1}, "empty": {"_count": 2}, "upstairs": {"_count": 1}, "enormous": {"_count": 3}, "oak": {"_count": 1}, "effort": {"_count": 2}, "ancient": {"_count": 1}, "old": {"_count": 7}, "eye": {"_count": 3}, "idiot": {"_count": 6}, "ominous": {"_count": 1}, "hour": {"_count": 11}, "open": {"_count": 1}, "outdoor": {"_count": 1}, "elevenyearold": {"_count": 1}, "evening": {"_count": 2}, "unmoving": {"_count": 1}, "alarmed": {"_count": 1}, "owl": {"_count": 2}, "effect": {"_count": 1}, "hours": {"_count": 2}, "impressive": {"_count": 1}, "axe": {"_count": 2}, "assortment": {"_count": 2}, "approaching": {"_count": 1}, "occasional": {"_count": 1}, "inch": {"_count": 2}, "elf": {"_count": 1}, "elephant": {"_count": 1}, "anchor": {"_count": 1}, "understatement": {"_count": 1}, "impregnable": {"_count": 1}, "Auror": {"_count": 1}, "eagle": {"_count": 2}, "acidgreen": {"_count": 1}, "exam": {"_count": 1}, "Unforgivable": {"_count": 1}, "overlarge": {"_count": 1}, "arm": {"_count": 1}, "accident": {"_count": 2}, "engine": {"_count": 1}, "unkempt": {"_count": 1}, "even": {"_count": 1}, "impression": {"_count": 1}, "outsider": {"_count": 1}, "interesting": {"_count": 1}, "enchanted": {"_count": 1}, "obscure": {"_count": 1}, "unfamiliar": {"_count": 1}, "odd": {"_count": 1}, "improvement": {"_count": 1}, "overstatement": {"_count": 1}, "egg": {"_count": 1}, "argument": {"_count": 1}, "unexpected": {"_count": 1}, "immensely": {"_count": 1}, "ugly": {"_count": 2}, "arch": {"_count": 1}, "emerald": {"_count": 1}, "emaciated": {"_count": 1}, "eyewatering": {"_count": 1}, "object": {"_count": 3}, "achievement": {"_count": 1}, "ornate": {"_count": 2}, "obelisk": {"_count": 1}, "ironclad": {"_count": 1}}, "em": {"_count": 25, "came": {"_count": 2}, "knew": {"_count": 1}, "they": {"_count": 1}, "have": {"_count": 1}, "ter": {"_count": 1}, "said": {"_count": 1}, "wan": {"_count": 1}, "": {"_count": 4}, "woke": {"_count": 1}, "went": {"_count": 1}, "were": {"_count": 1}, "Hagrid": {"_count": 1}, "would": {"_count": 1}, "in": {"_count": 1}, "even": {"_count": 1}, "left": {"_count": 1}, "look": {"_count": 1}, "can": {"_count": 1}, "Greyback": {"_count": 1}, "facetoface": {"_count": 1}, "till": {"_count": 1}}, "us": {"_count": 154, "reckon": {"_count": 1}, "": {"_count": 30}, "Ill": {"_count": 1}, "and": {"_count": 10}, "finds": {"_count": 1}, "has": {"_count": 4}, "if": {"_count": 2}, "will": {"_count": 5}, "are": {"_count": 2}, "he": {"_count": 2}, "Wood": {"_count": 1}, "know": {"_count": 1}, "who": {"_count": 10}, "can": {"_count": 3}, "have": {"_count": 3}, "must": {"_count": 1}, "seems": {"_count": 1}, "is": {"_count": 7}, "most": {"_count": 1}, "it": {"_count": 2}, "in": {"_count": 3}, "too": {"_count": 1}, "should": {"_count": 1}, "were": {"_count": 3}, "to": {"_count": 3}, "wins": {"_count": 1}, "wouldnt": {"_count": 1}, "she": {"_count": 1}, "drown": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}, "suffered": {"_count": 1}, "had": {"_count": 1}, "only": {"_count": 1}, "sleep": {"_count": 1}, "was": {"_count": 1}, "left": {"_count": 1}, "believe": {"_count": 1}, "saw": {"_count": 1}, "with": {"_count": 2}, "turned": {"_count": 1}, "cant": {"_count": 1}, "actually": {"_count": 1}, "ran": {"_count": 1}, "Snape": {"_count": 1}, "could": {"_count": 4}, "said": {"_count": 4}, "at": {"_count": 1}, "expressed": {"_count": 1}, "according": {"_count": 1}, "wanted": {"_count": 1}, "again": {"_count": 1}, "need": {"_count": 1}, "believes": {"_count": 1}, "would": {"_count": 1}, "screeched": {"_count": 1}, "attacked": {"_count": 1}, "I": {"_count": 1}, "couldve": {"_count": 1}, "nor": {"_count": 1}, "fly": {"_count": 1}, "wont": {"_count": 1}, "really": {"_count": 1}, "getting": {"_count": 1}, "against": {"_count": 1}, "that": {"_count": 1}, "never": {"_count": 1}, "Disapparated": {"_count": 1}, "go": {"_count": 1}, "Questers": {"_count": 1}, "did": {"_count": 1}, "stays": {"_count": 1}, "a": {"_count": 1}}, "feeling": {"_count": 1, "pleased": {"_count": 1}}, "rubbish": {"_count": 6, "spell": {"_count": 1}, "": {"_count": 3}, "lay": {"_count": 1}, "along": {"_count": 1}}, "witchcraft": {"_count": 3, "and": {"_count": 1}, "there": {"_count": 1}, "here": {"_count": 1}}, "violet": {"_count": 3, "light": {"_count": 1}, "socks": {"_count": 1}, "": {"_count": 1}}, "sunlight": {"_count": 8, "the": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "falling": {"_count": 2}, "it": {"_count": 1}, "crisscrossed": {"_count": 1}, "stretching": {"_count": 1}}, "Hagrid": {"_count": 40, "who": {"_count": 2}, "s": {"_count": 19}, "expelled": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 2}, "looking": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 2}, "being": {"_count": 1}, "in": {"_count": 1}, "sprinting": {"_count": 1}, "illuminated": {"_count": 1}, "smashing": {"_count": 1}, "hiccuping": {"_count": 1}}, "keys": {"_count": 4, "slug": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}}, "string": {"_count": 1, "peppermint": {"_count": 1}}, "strangelooking": {"_count": 1, "coins": {"_count": 1}}, "sausage": {"_count": 2, "he": {"_count": 1}, "flying": {"_count": 1}}, "water": {"_count": 33, "in": {"_count": 1}, "trickling": {"_count": 1}, "on": {"_count": 1}, "somewhere": {"_count": 1}, "stretched": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 7}, "down": {"_count": 1}, "out": {"_count": 2}, "as": {"_count": 1}, "half": {"_count": 1}, "and": {"_count": 3}, "blinked": {"_count": 1}, "would": {"_count": 1}, "were": {"_count": 1}, "it": {"_count": 1}, "kept": {"_count": 1}, "from": {"_count": 1}, "monsters": {"_count": 1}, "flew": {"_count": 1}, "streamed": {"_count": 1}, "weeds": {"_count": 1}}, "miles": {"_count": 4, "under": {"_count": 1}, "for": {"_count": 1}, "away": {"_count": 2}}, "hunger": {"_count": 2, "tryin": {"_count": 1}, "on": {"_count": 1}}, "Magic": {"_count": 273, "": {"_count": 66}, "do": {"_count": 1}, "by": {"_count": 7}, "which": {"_count": 1}, "has": {"_count": 6}, "and": {"_count": 19}, "Potter": {"_count": 1}, "will": {"_count": 4}, "Harry": {"_count": 3}, "anyway": {"_count": 1}, "homework": {"_count": 1}, "bickering": {"_count": 1}, "was": {"_count": 6}, "he": {"_count": 3}, "raided": {"_count": 1}, "is": {"_count": 3}, "wouldnt": {"_count": 1}, "his": {"_count": 1}, "essay": {"_count": 2}, "representatives": {"_count": 1}, "confirmed": {"_count": 2}, "Cornelius": {"_count": 3}, "got": {"_count": 2}, "himself": {"_count": 5}, "said": {"_count": 6}, "would": {"_count": 1}, "cars": {"_count": 2}, "business": {"_count": 1}, "caught": {"_count": 1}, "classroom": {"_count": 4}, "downward": {"_count": 1}, "on": {"_count": 3}, "hovered": {"_count": 1}, "keeps": {"_count": 1}, "so": {"_count": 1}, "dont": {"_count": 1}, "wizards": {"_count": 1}, "witches": {"_count": 1}, "but": {"_count": 1}, "car": {"_count": 1}, "like": {"_count": 1}, "that": {"_count": 1}, "Office": {"_count": 5}, "Mr": {"_count": 1}, "I": {"_count": 2}, "they": {"_count": 1}, "lot": {"_count": 2}, "have": {"_count": 2}, "Im": {"_count": 1}, "had": {"_count": 3}, "to": {"_count": 4}, "witch": {"_count": 1}, "she": {"_count": 1}, "given": {"_count": 2}, "Now": {"_count": 1}, "knowing": {"_count": 1}, "exam": {"_count": 1}, "now": {"_count": 1}, "it": {"_count": 1}, "we": {"_count": 1}, "Dumbledore": {"_count": 1}, "at": {"_count": 2}, "expelling": {"_count": 1}, "lost": {"_count": 1}, "hearing": {"_count": 1}, "with": {"_count": 1}, "wishes": {"_count": 2}, "Amelia": {"_count": 1}, "these": {"_count": 1}, "does": {"_count": 1}, "or": {"_count": 2}, "denied": {"_count": 1}, "five": {"_count": 1}, "double": {"_count": 1}, "guarantees": {"_count": 1}, "lesson": {"_count": 2}, "watch": {"_count": 1}, "passed": {"_count": 1}, "Are": {"_count": 1}, "Order": {"_count": 1}, "expelled": {"_count": 1}, "Secrets": {"_count": 1}, "announced": {"_count": 1}, "worker": {"_count": 1}, "offered": {"_count": 2}, "the": {"_count": 2}, "countersigned": {"_count": 1}, "handpicked": {"_count": 1}, "as": {"_count": 1}, "without": {"_count": 1}, "must": {"_count": 1}, "permits": {"_count": 1}, "employees": {"_count": 1}, "visitors": {"_count": 1}, "when": {"_count": 2}, "you": {"_count": 1}, "are": {"_count": 1}, "itself": {"_count": 1}, "took": {"_count": 1}, "only": {"_count": 1}, "premises": {"_count": 1}, "after": {"_count": 1}, "during": {"_count": 1}, "Rufus": {"_count": 1}, "leaflet": {"_count": 2}, "can": {"_count": 1}, "D": {"_count": 1}, "posters": {"_count": 1}, "put": {"_count": 1}, "Youre": {"_count": 1}, "approved": {"_count": 1}, "yes": {"_count": 1}, "from": {"_count": 1}, "Malfoy": {"_count": 1}, "for": {"_count": 1}, "Apparition": {"_count": 1}, "over": {"_count": 1}, "within": {"_count": 1}, "content": {"_count": 1}, "coming": {"_count": 1}, "wait": {"_count": 1}, "if": {"_count": 1}, "in": {"_count": 1}, "not": {"_count": 1}}, "everything": {"_count": 16, "yeh": {"_count": 1}, "and": {"_count": 2}, "except": {"_count": 1}, "that": {"_count": 3}, "his": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "else": {"_count": 2}, "disappearing": {"_count": 1}, "Mrs": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}}, "paper": {"_count": 21, "he": {"_count": 2}, "that": {"_count": 1}, "lying": {"_count": 1}, "right": {"_count": 1}, "clutched": {"_count": 1}, "her": {"_count": 1}, "was": {"_count": 1}, "fell": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 4}, "which": {"_count": 1}, "with": {"_count": 1}, "I": {"_count": 1}, "books": {"_count": 1}, "under": {"_count": 1}}, "plain": {"_count": 1, "work": {"_count": 1}}, "protective": {"_count": 2, "gloves": {"_count": 1}, "flame": {"_count": 1}}, "each": {"_count": 13, "of": {"_count": 4}, "other": {"_count": 3}, "as": {"_count": 1}, "": {"_count": 1}, "member": {"_count": 1}, "hand": {"_count": 1}, "day": {"_count": 1}, "others": {"_count": 1}}, "Spells": {"_count": 13, "Grade": {"_count": 12}, "that": {"_count": 1}}, "ordinary": {"_count": 3, "people": {"_count": 2}, "golf": {"_count": 1}}, "wizard": {"_count": 14, "gold": {"_count": 1}, "money": {"_count": 1}, "crackers": {"_count": 1}, "photographs": {"_count": 1}, "fires": {"_count": 1}, "if": {"_count": 1}, "Malfoy": {"_count": 1}, "chess": {"_count": 2}, "pictures": {"_count": 1}, "prison": {"_count": 1}, "army": {"_count": 1}, "duels": {"_count": 1}, "worth": {"_count": 1}}, "humor": {"_count": 7, "he": {"_count": 1}, "": {"_count": 1}, "would": {"_count": 1}, "then": {"_count": 1}, "but": {"_count": 2}, "is": {"_count": 1}}, "sherry": {"_count": 2, "": {"_count": 1}, "even": {"_count": 1}}, "chatter": {"_count": 2, "stopped": {"_count": 1}, "filling": {"_count": 1}}, "chairs": {"_count": 5, "and": {"_count": 2}, "as": {"_count": 1}, "there": {"_count": 1}, "had": {"_count": 1}}, "your": {"_count": 140, "teachers": {"_count": 1}, "House": {"_count": 2}, "business": {"_count": 11}, "aunts": {"_count": 1}, "greatness": {"_count": 1}, "goodness": {"_count": 1}, "career": {"_count": 1}, "mouth": {"_count": 2}, "way": {"_count": 2}, "best": {"_count": 1}, "beatings": {"_count": 1}, "parents": {"_count": 4}, "choice": {"_count": 1}, "aunt": {"_count": 1}, "vacation": {"_count": 1}, "seat": {"_count": 1}, "nasty": {"_count": 1}, "life": {"_count": 1}, "body": {"_count": 3}, "father": {"_count": 1}, "age": {"_count": 1}, "mind": {"_count": 4}, "miserable": {"_count": 1}, "manners": {"_count": 1}, "hand": {"_count": 3}, "pocket": {"_count": 1}, "vault": {"_count": 2}, "eyes": {"_count": 1}, "birth": {"_count": 1}, "nerves": {"_count": 1}, "throats": {"_count": 1}, "magical": {"_count": 1}, "hair": {"_count": 3}, "name": {"_count": 1}, "robes": {"_count": 3}, "birthday": {"_count": 1}, "ideas": {"_count": 1}, "favorite": {"_count": 1}, "experience": {"_count": 1}, "Ministry": {"_count": 1}, "book": {"_count": 1}, "exiled": {"_count": 1}, "dormitory": {"_count": 2}, "old": {"_count": 1}, "whereabouts": {"_count": 1}, "decisions": {"_count": 1}, "potion": {"_count": 3}, "families": {"_count": 1}, "expulsion": {"_count": 1}, "back": {"_count": 1}, "mother": {"_count": 1}, "brothers": {"_count": 1}, "own": {"_count": 1}, "parentage": {"_count": 1}, "attention": {"_count": 1}, "Skiving": {"_count": 1}, "imagination": {"_count": 1}, "inspection": {"_count": 4}, "inspec": {"_count": 1}, "colleagues": {"_count": 1}, "late": {"_count": 1}, "beds": {"_count": 1}, "taste": {"_count": 1}, "brooms": {"_count": 1}, "facts": {"_count": 1}, "bravery": {"_count": 1}, "kind": {"_count": 1}, "friend": {"_count": 1}, "fellow": {"_count": 1}, "first": {"_count": 1}, "people": {"_count": 2}, "true": {"_count": 1}, "ability": {"_count": 1}, "school": {"_count": 1}, "assistance": {"_count": 1}, "fathers": {"_count": 1}, "friends": {"_count": 1}, "uncle": {"_count": 1}, "Uncle": {"_count": 1}, "suspicions": {"_count": 1}, "wardrobe": {"_count": 1}, "spellbooks": {"_count": 1}, "eyebrows": {"_count": 1}, "hoop": {"_count": 1}, "considerable": {"_count": 1}, "opinion": {"_count": 1}, "doings": {"_count": 1}, "loss": {"_count": 1}, "forest": {"_count": 1}, "soul": {"_count": 2}, "schoolbooks": {"_count": 1}, "guards": {"_count": 1}, "position": {"_count": 1}, "lot": {"_count": 1}, "protection": {"_count": 1}, "hairs": {"_count": 1}, "underpants": {"_count": 1}, "absence": {"_count": 1}, "daughter": {"_count": 1}, "bed": {"_count": 1}, "dead": {"_count": 1}, "mothers": {"_count": 1}, "enormous": {"_count": 1}, "fighters": {"_count": 1}}, "magic": {"_count": 33, "do": {"_count": 1}, "already": {"_count": 1}, "": {"_count": 9}, "and": {"_count": 1}, "in": {"_count": 2}, "tricks": {"_count": 1}, "behind": {"_count": 1}, "to": {"_count": 2}, "out": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}, "seals": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 2}, "youre": {"_count": 1}, "that": {"_count": 1}, "further": {"_count": 1}, "Dumbledore": {"_count": 2}, "caused": {"_count": 1}, "of": {"_count": 1}, "hitherto": {"_count": 1}}, "sight": {"_count": 135, "": {"_count": 51}, "he": {"_count": 1}, "Harry": {"_count": 6}, "too": {"_count": 1}, "as": {"_count": 4}, "whenever": {"_count": 1}, "then": {"_count": 2}, "again": {"_count": 5}, "their": {"_count": 2}, "and": {"_count": 7}, "but": {"_count": 4}, "listening": {"_count": 1}, "leaving": {"_count": 1}, "however": {"_count": 1}, "up": {"_count": 1}, "above": {"_count": 1}, "of": {"_count": 6}, "Ron": {"_count": 3}, "behind": {"_count": 2}, "beyond": {"_count": 1}, "on": {"_count": 2}, "in": {"_count": 3}, "the": {"_count": 1}, "with": {"_count": 1}, "his": {"_count": 1}, "through": {"_count": 1}, "along": {"_count": 1}, "a": {"_count": 2}, "heading": {"_count": 1}, "snigger": {"_count": 1}, "one": {"_count": 1}, "peering": {"_count": 1}, "blackness": {"_count": 1}, "SIRIUS": {"_count": 1}, "ahead": {"_count": 1}, "thats": {"_count": 1}, "giving": {"_count": 1}, "under": {"_count": 1}, "before": {"_count": 1}, "to": {"_count": 2}, "all": {"_count": 1}, "beneath": {"_count": 3}, "down": {"_count": 1}, "they": {"_count": 1}, "Hermione": {"_count": 1}, "for": {"_count": 1}, "struggling": {"_count": 1}}, "cauldrons": {"_count": 2, "outside": {"_count": 1}, "that": {"_count": 1}}, "about": {"_count": 5, "Harrys": {"_count": 1}, "sixteen": {"_count": 2}, "study": {"_count": 1}, "five": {"_count": 1}}, "bat": {"_count": 2, "spleens": {"_count": 1}, "droppings": {"_count": 1}}, "spell": {"_count": 2, "books": {"_count": 1}, "right": {"_count": 1}}, "scarlet": {"_count": 12, "and": {"_count": 2}, "light": {"_count": 2}, "ink": {"_count": 1}, "swam": {"_count": 1}, "below": {"_count": 1}, "roared": {"_count": 1}, "woman": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "doors": {"_count": 2, "silver": {"_count": 1}, "": {"_count": 1}}, "greed": {"_count": 1, "For": {"_count": 1}}, "goblins": {"_count": 8, "bowed": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}, "Fudge": {"_count": 1}, "seemed": {"_count": 1}}, "moldy": {"_count": 2, "dog": {"_count": 1}, "bread": {"_count": 1}}, "numbers": {"_count": 2, "": {"_count": 1}, "overcome": {"_count": 1}}, "rubies": {"_count": 2, "as": {"_count": 1}, "fell": {"_count": 1}}, "twisting": {"_count": 1, "passages": {"_count": 1}}, "fire": {"_count": 22, "at": {"_count": 2}, "I": {"_count": 1}, "held": {"_count": 1}, "and": {"_count": 5}, "": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 1}, "shot": {"_count": 1}, "from": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 3}, "moving": {"_count": 1}, "vanished": {"_count": 1}, "issued": {"_count": 1}}, "gold": {"_count": 37, "coins": {"_count": 2}, "but": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 6}, "silver": {"_count": 1}, "and": {"_count": 3}, "more": {"_count": 1}, "embossed": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "ahead": {"_count": 1}, "across": {"_count": 1}, "in": {"_count": 2}, "or": {"_count": 1}, "descending": {"_count": 1}, "out": {"_count": 1}, "on": {"_count": 3}, "off": {"_count": 1}, "hes": {"_count": 1}, "embroidery": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "desperate": {"_count": 1}, "he": {"_count": 1}}, "silver": {"_count": 23, "": {"_count": 2}, "Sickles": {"_count": 1}, "light": {"_count": 3}, "escaped": {"_count": 1}, "mist": {"_count": 1}, "his": {"_count": 1}, "were": {"_count": 1}, "smoke": {"_count": 3}, "vapor": {"_count": 2}, "symbols": {"_count": 1}, "dagger": {"_count": 1}, "memories": {"_count": 1}, "and": {"_count": 2}, "hair": {"_count": 1}, "stars": {"_count": 1}, "in": {"_count": 1}}, "little": {"_count": 11, "bronze": {"_count": 1}, "boats": {"_count": 2}, "else": {"_count": 2}, "Ravenclaws": {"_count": 1}, "lacquered": {"_count": 1}, "cakes": {"_count": 1}, "excursions": {"_count": 1}, "sleep": {"_count": 1}, "or": {"_count": 1}}, "money": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "servant": {"_count": 1, "isnt": {"_count": 1}}, "savage": {"_count": 4, "lives": {"_count": 1}, "triumph": {"_count": 2}, "pleasure": {"_count": 1}}, "Hogwarts": {"_count": 77, "until": {"_count": 1}, "and": {"_count": 6}, "before": {"_count": 2}, "was": {"_count": 2}, "prefects": {"_count": 1}, "castle": {"_count": 2}, "A": {"_count": 1}, "headmasters": {"_count": 1}, "": {"_count": 16}, "School": {"_count": 8}, "students": {"_count": 1}, "paintings": {"_count": 1}, "he": {"_count": 1}, "would": {"_count": 1}, "Which": {"_count": 1}, "they": {"_count": 1}, "including": {"_count": 1}, "said": {"_count": 1}, "all": {"_count": 1}, "has": {"_count": 3}, "Junior": {"_count": 1}, "but": {"_count": 1}, "may": {"_count": 2}, "appeared": {"_count": 1}, "s": {"_count": 1}, "is": {"_count": 1}, "are": {"_count": 1}, "legend": {"_count": 1}, "where": {"_count": 2}, "inhabitants": {"_count": 1}, "Dumbledore": {"_count": 1}, "she": {"_count": 1}, "when": {"_count": 1}, "his": {"_count": 1}, "proving": {"_count": 1}, "itself": {"_count": 1}, "of": {"_count": 1}, "Harry": {"_count": 1}, "Castle": {"_count": 1}, "were": {"_count": 2}, "at": {"_count": 1}, "swarmed": {"_count": 1}}, "ink": {"_count": 11, "that": {"_count": 2}, "still": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "and": {"_count": 2}, "then": {"_count": 1}, "smashed": {"_count": 1}, "with": {"_count": 1}}, "postage": {"_count": 1, "stamps": {"_count": 1}}, "silk": {"_count": 2, "books": {"_count": 1}, "and": {"_count": 1}}, "peculiar": {"_count": 1, "symbols": {"_count": 1}}, "scales": {"_count": 2, "for": {"_count": 1}, "with": {"_count": 1}}, "bad": {"_count": 4, "eggs": {"_count": 3}, "news": {"_count": 1}}, "slimy": {"_count": 1, "stuff": {"_count": 1}}, "herbs": {"_count": 1, "dried": {"_count": 1}}, "feathers": {"_count": 1, "strings": {"_count": 1}}, "fangs": {"_count": 1, "and": {"_count": 1}}, "rustling": {"_count": 1, "and": {"_count": 1}}, "Fine": {"_count": 1, "Wands": {"_count": 1}}, "new": {"_count": 7, "questions": {"_count": 1}, "noises": {"_count": 1}, "subjects": {"_count": 1}, "quills": {"_count": 1}, "breeds": {"_count": 1}, "students": {"_count": 1}, "life": {"_count": 1}}, "narrow": {"_count": 3, "boxes": {"_count": 1}, "rows": {"_count": 1}, "stone": {"_count": 1}}, "willow": {"_count": 1, "": {"_count": 1}}, "dragons": {"_count": 6, "": {"_count": 1}, "blood": {"_count": 5}}, "tried": {"_count": 1, "wands": {"_count": 1}}, "red": {"_count": 37, "and": {"_count": 5}, "sparks": {"_count": 4}, "tartan": {"_count": 1}, "light": {"_count": 24}, "hair": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}}, "fact": {"_count": 21, "": {"_count": 3}, "said": {"_count": 3}, "he": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "I": {"_count": 4}, "Ive": {"_count": 2}, "she": {"_count": 1}, "Minerva": {"_count": 1}, "hes": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "August": {"_count": 9, "he": {"_count": 1}, "": {"_count": 4}, "said": {"_count": 2}, "gabbled": {"_count": 1}, "as": {"_count": 1}}, "funny": {"_count": 3, "looks": {"_count": 1}, "little": {"_count": 1}, "custardcolored": {"_count": 1}}, "Hedwig": {"_count": 4, "": {"_count": 3}, "perhaps": {"_count": 1}}, "tourists": {"_count": 1, "came": {"_count": 1}}, "control": {"_count": 8, "he": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "over": {"_count": 2}, "Green": {"_count": 1}, "unable": {"_count": 1}}, "every": {"_count": 17, "color": {"_count": 2}, "pupil": {"_count": 1}, "class": {"_count": 1}, "single": {"_count": 1}, "school": {"_count": 1}, "breed": {"_count": 1}, "person": {"_count": 1}, "sentence": {"_count": 1}, "one": {"_count": 2}, "exam": {"_count": 1}, "shop": {"_count": 1}, "Occlumency": {"_count": 1}, "student": {"_count": 1}, "issue": {"_count": 1}, "Hogwarts": {"_count": 1}}, "way": {"_count": 19, "over": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 13}, "but": {"_count": 1}, "Bagman": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 1}}, "heavy": {"_count": 10, "trunks": {"_count": 1}, "spellbooks": {"_count": 1}, "black": {"_count": 1}, "footsteps": {"_count": 1}, "iron": {"_count": 1}, "knives": {"_count": 1}, "oak": {"_count": 1}, "books": {"_count": 2}, "objects": {"_count": 1}}, "great": {"_count": 29, "surprise": {"_count": 3}, "bitterness": {"_count": 1}, "big": {"_count": 1}, "chunks": {"_count": 1}, "annoyance": {"_count": 1}, "gloom": {"_count": 1}, "energy": {"_count": 1}, "contentment": {"_count": 1}, "trouble": {"_count": 1}, "ambition": {"_count": 1}, "excitement": {"_count": 1}, "tension": {"_count": 1}, "dislike": {"_count": 2}, "frustration": {"_count": 1}, "danger": {"_count": 1}, "smugness": {"_count": 1}, "distaste": {"_count": 1}, "trepidation": {"_count": 1}, "good": {"_count": 1}, "treachery": {"_count": 1}, "importance": {"_count": 2}, "indignation": {"_count": 1}, "anticipation": {"_count": 1}, "lumps": {"_count": 1}, "complexity": {"_count": 1}}, "that": {"_count": 86, "on": {"_count": 1}, "bishop": {"_count": 1}, "castle": {"_count": 1}, "school": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 12}, "year": {"_count": 1}, "poor": {"_count": 1}, "dread": {"_count": 1}, "great": {"_count": 1}, "diary": {"_count": 2}, "cat": {"_count": 1}, "mad": {"_count": 1}, "hippogriffs": {"_count": 1}, "dimly": {"_count": 1}, "masked": {"_count": 1}, "Skeeter": {"_count": 1}, "houseelf": {"_count": 1}, "statue": {"_count": 1}, "elf": {"_count": 1}, "Truth": {"_count": 1}, "chair": {"_count": 1}, "Potter": {"_count": 2}, "Muggleloving": {"_count": 1}, "one": {"_count": 2}, "can": {"_count": 1}, "beam": {"_count": 1}, "terrible": {"_count": 1}, "because": {"_count": 1}, "maze": {"_count": 1}, "information": {"_count": 1}, "rag": {"_count": 1}, "day": {"_count": 1}, "magazine": {"_count": 1}, "house": {"_count": 2}, "blunder": {"_count": 1}, "I": {"_count": 1}, "archway": {"_count": 1}, "joke": {"_count": 1}, "horrible": {"_count": 1}, "prophecy": {"_count": 1}, "said": {"_count": 1}, "Muggle": {"_count": 1}, "during": {"_count": 1}, "flowery": {"_count": 1}, "side": {"_count": 1}, "conversation": {"_count": 1}, "same": {"_count": 2}, "crime": {"_count": 1}, "little": {"_count": 1}, "sort": {"_count": 1}, "potion": {"_count": 1}, "are": {"_count": 1}, "greenish": {"_count": 1}, "hand": {"_count": 1}, "cupboard": {"_count": 1}, "mornings": {"_count": 1}, "lucky": {"_count": 1}, "from": {"_count": 1}, "spell": {"_count": 1}, "cave": {"_count": 1}, "fireplace": {"_count": 1}, "fatal": {"_count": 1}, "says": {"_count": 1}, "He": {"_count": 1}, "place": {"_count": 1}, "cold": {"_count": 1}, "hour": {"_count": 1}, "possibility": {"_count": 1}, "sacrifice": {"_count": 1}}, "excitement": {"_count": 15, "": {"_count": 5}, "he": {"_count": 2}, "and": {"_count": 1}, "rose": {"_count": 1}, "wondering": {"_count": 1}, "that": {"_count": 1}, "Harry": {"_count": 1}, "was": {"_count": 1}, "This": {"_count": 1}, "earlier": {"_count": 1}}, "Fred": {"_count": 21, "and": {"_count": 19}, "Lupin": {"_count": 1}, "Tonks": {"_count": 1}}, "Quidditch": {"_count": 14, "": {"_count": 3}, "Potter": {"_count": 1}, "only": {"_count": 1}, "doesnt": {"_count": 1}, "that": {"_count": 1}, "Hassan": {"_count": 1}, "in": {"_count": 2}, "Teams": {"_count": 1}, "teams": {"_count": 1}, "practice": {"_count": 1}, "Keepers": {"_count": 1}}, "London": {"_count": 6, "": {"_count": 2}, "lay": {"_count": 1}, "swept": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}}, "cows": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "other": {"_count": 18, "strange": {"_count": 1}, "stupid": {"_count": 1}, "teachers": {"_count": 2}, "people": {"_count": 4}, "peoples": {"_count": 2}, "departments": {"_count": 1}, "articles": {"_count": 1}, "things": {"_count": 1}, "Wizarding": {"_count": 1}, "students": {"_count": 1}, "forbidden": {"_count": 1}, "Hogwarts": {"_count": 1}, "stories": {"_count": 1}}, "Chocolate": {"_count": 8, "Frogs": {"_count": 4}, "Frog": {"_count": 1}, "Cauldrons": {"_count": 3}}, "Dumbledore": {"_count": 46, "": {"_count": 6}, "s": {"_count": 16}, "But": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "feeling": {"_count": 1}, "leading": {"_count": 1}, "as": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "opened": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 5}, "striding": {"_count": 1}, "their": {"_count": 1}, "wearing": {"_count": 1}, "his": {"_count": 1}, "have": {"_count": 1}, "Apparating": {"_count": 1}, "behind": {"_count": 2}}, "modern": {"_count": 2, "times": {"_count": 1}, "magic": {"_count": 1}}, "Woodcraft": {"_count": 1, "Alberic": {"_count": 1}}, "Bertie": {"_count": 1, "Botts": {"_count": 1}}, "voice": {"_count": 18, "lots": {"_count": 1}, "": {"_count": 8}, "that": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 2}, "in": {"_count": 1}, "was": {"_count": 1}}, "Scabbers": {"_count": 1, "whiskers": {"_count": 1}}, "fear": {"_count": 18, "every": {"_count": 1}, "flitted": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 6}, "": {"_count": 4}, "of": {"_count": 1}, "or": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "what": {"_count": 1}}, "entering": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "heads": {"_count": 2, "": {"_count": 2}}, "ivy": {"_count": 1, "that": {"_count": 1}}, "underground": {"_count": 1, "harbor": {"_count": 1}}, "stone": {"_count": 9, "steps": {"_count": 6}, "stairs": {"_count": 1}, "": {"_count": 1}, "wall": {"_count": 1}}, "hundreds": {"_count": 12, "of": {"_count": 10}, "and": {"_count": 2}}, "voices": {"_count": 10, "from": {"_count": 1}, "above": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 1}, "interrupted": {"_count": 1}, "on": {"_count": 1}, "He": {"_count": 1}, "outside": {"_count": 1}, "students": {"_count": 1}, "Everyone": {"_count": 1}}, "test": {"_count": 1, "I": {"_count": 1}}, "double": {"_count": 3, "doors": {"_count": 2}, "takes": {"_count": 1}}, "candles": {"_count": 11, "that": {"_count": 2}, "": {"_count": 2}, "floating": {"_count": 2}, "which": {"_count": 2}, "many": {"_count": 1}, "sitting": {"_count": 1}, "whose": {"_count": 1}}, "faces": {"_count": 4, "staring": {"_count": 2}, "around": {"_count": 1}, "both": {"_count": 1}}, "thing": {"_count": 31, "noticing": {"_count": 1}, "": {"_count": 6}, "thatll": {"_count": 1}, "Malfoy": {"_count": 1}, "you": {"_count": 3}, "in": {"_count": 1}, "Professor": {"_count": 1}, "skulked": {"_count": 1}, "Hagrid": {"_count": 1}, "shed": {"_count": 1}, "that": {"_count": 3}, "not": {"_count": 1}, "ought": {"_count": 1}, "is": {"_count": 1}, "are": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "socalled": {"_count": 1}, "Fred": {"_count": 1}, "hed": {"_count": 1}, "youd": {"_count": 1}}, "toil": {"_count": 1, "Or": {"_count": 1}}, "wit": {"_count": 1, "and": {"_count": 1}}, "line": {"_count": 4, "put": {"_count": 1}, "and": {"_count": 1}, "A": {"_count": 1}, "": {"_count": 1}}, "laughter": {"_count": 40, "to": {"_count": 2}, "that": {"_count": 3}, "": {"_count": 14}, "followed": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 6}, "Malfoyl": {"_count": 1}, "from": {"_count": 3}, "then": {"_count": 1}, "sounded": {"_count": 1}, "Pansy": {"_count": 1}, "among": {"_count": 1}, "indeed": {"_count": 1}, "Hermione": {"_count": 1}, "issuing": {"_count": 1}, "music": {"_count": 1}, "instantly": {"_count": 1}}, "twin": {"_count": 1, "girls": {"_count": 1}}, "courage": {"_count": 2, "I": {"_count": 1}, "said": {"_count": 1}}, "icecold": {"_count": 2, "water": {"_count": 2}}, "Gryffindor": {"_count": 55, "Tower": {"_count": 6}, "House": {"_count": 13}, "what": {"_count": 1}, "there": {"_count": 1}, "students": {"_count": 1}, "found": {"_count": 1}, "Professor": {"_count": 1}, "heading": {"_count": 1}, "supporters": {"_count": 1}, "with": {"_count": 2}, "": {"_count": 6}, "common": {"_count": 1}, "are": {"_count": 2}, "reverse": {"_count": 1}, "dodges": {"_count": 1}, "table": {"_count": 1}, "remains": {"_count": 1}, "is": {"_count": 1}, "leave": {"_count": 1}, "was": {"_count": 2}, "in": {"_count": 1}, "just": {"_count": 1}, "gripped": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}, "if": {"_count": 1}, "lying": {"_count": 2}, "remained": {"_count": 1}, "lay": {"_count": 1}}, "ice": {"_count": 6, "cream": {"_count": 1}, "cascade": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "thinking": {"_count": 1}, "seemed": {"_count": 1}}, "apple": {"_count": 1, "pies": {"_count": 1}}, "me": {"_count": 43, "he": {"_count": 1}, "she": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 16}, "wont": {"_count": 1}, "alarmed": {"_count": 1}, "going": {"_count": 1}, "as": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 2}, "with": {"_count": 1}, "a": {"_count": 1}, "since": {"_count": 1}, "Dumbledore": {"_count": 1}, "earlier": {"_count": 1}, "ever": {"_count": 1}, "and": {"_count": 4}, "Malfoys": {"_count": 1}, "in": {"_count": 1}, "arent": {"_count": 1}, "once": {"_count": 1}, "not": {"_count": 1}, "that": {"_count": 2}}, "Blackpool": {"_count": 1, "pier": {"_count": 1}}, "our": {"_count": 58, "older": {"_count": 2}, "hearts": {"_count": 1}, "feet": {"_count": 1}, "kind": {"_count": 5}, "new": {"_count": 1}, "most": {"_count": 1}, "number": {"_count": 3}, "other": {"_count": 2}, "success": {"_count": 1}, "actions": {"_count": 1}, "lives": {"_count": 2}, "department": {"_count": 1}, "manifesto": {"_count": 1}, "first": {"_count": 1}, "champions": {"_count": 1}, "private": {"_count": 1}, "fellows": {"_count": 1}, "times": {"_count": 1}, "duel": {"_count": 1}, "possessions": {"_count": 1}, "gold": {"_count": 1}, "noble": {"_count": 1}, "research": {"_count": 1}, "guard": {"_count": 1}, "parents": {"_count": 1}, "cave": {"_count": 1}, "necks": {"_count": 1}, "races": {"_count": 1}, "Charms": {"_count": 1}, "discussion": {"_count": 1}, "centaur": {"_count": 1}, "products": {"_count": 1}, "enemies": {"_count": 1}, "previous": {"_count": 1}, "story": {"_count": 1}, "little": {"_count": 1}, "colleagues": {"_count": 1}, "oldest": {"_count": 1}, "trip": {"_count": 1}, "lot": {"_count": 2}, "guests": {"_count": 1}, "two": {"_count": 1}, "displeasure": {"_count": 1}, "books": {"_count": 1}, "regular": {"_count": 1}, "wands": {"_count": 1}, "help": {"_count": 1}, "schemes": {"_count": 1}}, "bounds": {"_count": 2, "to": {"_count": 2}}, "dangerous": {"_count": 2, "beasts": {"_count": 1}, "situations": {"_count": 1}}, "air": {"_count": 4, "Dead": {"_count": 1}, "had": {"_count": 1}, "Harry": {"_count": 1}, "from": {"_count": 1}}, "fluff": {"_count": 2, "So": {"_count": 1}, "in": {"_count": 1}}, "food": {"_count": 15, "": {"_count": 3}, "could": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 2}, "without": {"_count": 1}, "then": {"_count": 1}, "dinner": {"_count": 1}, "with": {"_count": 1}, "they": {"_count": 1}, "coincided": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "walking": {"_count": 3, "sticks": {"_count": 1}, "straight": {"_count": 1}, "in": {"_count": 1}}, "armor": {"_count": 33, "as": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 5}, "near": {"_count": 1}, "and": {"_count": 6}, "or": {"_count": 1}, "next": {"_count": 1}, "clanked": {"_count": 1}, "repacking": {"_count": 1}, "at": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 2}, "whose": {"_count": 2}, "from": {"_count": 1}, "that": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 1}, "stepped": {"_count": 1}, "in": {"_count": 1}, "behind": {"_count": 1}, "jumped": {"_count": 1}, "brandished": {"_count": 1}}, "squashy": {"_count": 3, "armchairs": {"_count": 2}, "purple": {"_count": 1}}, "chalk": {"_count": 4, "or": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 2}}, "many": {"_count": 10, "to": {"_count": 1}, "candles": {"_count": 1}, "eyes": {"_count": 1}, "long": {"_count": 1}, "fullgrown": {"_count": 1}, "owls": {"_count": 1}, "better": {"_count": 1}, "students": {"_count": 1}, "quills": {"_count": 1}, "reasons": {"_count": 1}}, "different": {"_count": 6, "stars": {"_count": 1}, "kinds": {"_count": 1}, "nationalities": {"_count": 1}, "colors": {"_count": 1}, "languages": {"_count": 1}, "colored": {"_count": 1}}, "complicated": {"_count": 1, "notes": {"_count": 1}}, "garlic": {"_count": 3, "which": {"_count": 1}, "as": {"_count": 1}, "when": {"_count": 1}}, "Slytherin": {"_count": 36, "House": {"_count": 3}, "we": {"_count": 1}, "fifth": {"_count": 1}, "alone": {"_count": 2}, "Houses": {"_count": 1}, "": {"_count": 6}, "seriously": {"_count": 1}, "get": {"_count": 1}, "had": {"_count": 2}, "the": {"_count": 1}, "why": {"_count": 1}, "didnt": {"_count": 1}, "said": {"_count": 3}, "on": {"_count": 1}, "high": {"_count": 1}, "glittered": {"_count": 1}, "tearing": {"_count": 1}, "girls": {"_count": 4}, "cronies": {"_count": 1}, "attempts": {"_count": 1}, "and": {"_count": 1}, "I": {"_count": 1}}, "homework": {"_count": 21, "the": {"_count": 1}, "": {"_count": 5}, "that": {"_count": 3}, "to": {"_count": 2}, "they": {"_count": 3}, "he": {"_count": 1}, "awaiting": {"_count": 1}, "had": {"_count": 1}, "for": {"_count": 1}, "would": {"_count": 1}, "perhaps": {"_count": 1}, "lifted": {"_count": 1}}, "toast": {"_count": 16, "before": {"_count": 1}, "wheedled": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 3}, "or": {"_count": 1}, "which": {"_count": 1}, "into": {"_count": 1}, "toward": {"_count": 1}, "he": {"_count": 1}, "slipping": {"_count": 1}}, "dark": {"_count": 16, "tunnels": {"_count": 1}, "they": {"_count": 1}, "wooden": {"_count": 1}, "blood": {"_count": 1}, "gray": {"_count": 2}, "greens": {"_count": 1}, "stone": {"_count": 1}, "curtain": {"_count": 1}, "smoke": {"_count": 1}, "green": {"_count": 1}, "trees": {"_count": 1}, "glamour": {"_count": 1}, "rock": {"_count": 1}, "bank": {"_count": 1}, "ice": {"_count": 1}}, "potionmaking": {"_count": 2, "he": {"_count": 1}, "its": {"_count": 1}}, "keeping": {"_count": 10, "a": {"_count": 2}, "the": {"_count": 1}, "Harry": {"_count": 1}, "cool": {"_count": 1}, "himself": {"_count": 1}, "Sirius": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}, "goblinmade": {"_count": 1}}, "liquids": {"_count": 1, "that": {"_count": 1}}, "dunderheads": {"_count": 1, "as": {"_count": 1}}, "asphodel": {"_count": 1, "to": {"_count": 1}}, "wormwood": {"_count": 1, "": {"_count": 1}}, "Living": {"_count": 3, "Death": {"_count": 3}}, "aconite": {"_count": 1, "": {"_count": 1}}, "acid": {"_count": 1, "green": {"_count": 1}}, "galoshes": {"_count": 1, "were": {"_count": 1}}, "Fang": {"_count": 3, "who": {"_count": 1}, "attempting": {"_count": 1}, "scrabbling": {"_count": 1}}, "Dark": {"_count": 10, "wizards": {"_count": 1}, "Magic": {"_count": 8}, "creatures": {"_count": 1}}, "myself": {"_count": 2, "on": {"_count": 1}, "Of": {"_count": 1}}, "Malfoy": {"_count": 19, "": {"_count": 3}, "Crabbe": {"_count": 2}, "Harry": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "shouting": {"_count": 1}, "ready": {"_count": 1}, "he": {"_count": 1}, "telling": {"_count": 1}, "docking": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}, "who": {"_count": 1}, "between": {"_count": 1}, "Manor": {"_count": 2}}, "yourself": {"_count": 7, "said": {"_count": 2}, "after": {"_count": 1}, "Dobby": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}, "heres": {"_count": 1}}, "West": {"_count": 2, "Ham": {"_count": 1}, "Tower": {"_count": 1}}, "accidents": {"_count": 1, "even": {"_count": 1}}, "sweets": {"_count": 8, "from": {"_count": 1}, "back": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "including": {"_count": 1}, "to": {"_count": 1}, "Quidditch": {"_count": 1}, "": {"_count": 1}}, "white": {"_count": 16, "smoke": {"_count": 1}, "hair": {"_count": 4}, "rabbits": {"_count": 1}, "linen": {"_count": 1}, "among": {"_count": 1}, "marble": {"_count": 3}, "steam": {"_count": 1}, "berries": {"_count": 1}, "eyeball": {"_count": 1}, "light": {"_count": 2}}, "earshot": {"_count": 18, "than": {"_count": 1}, "": {"_count": 4}, "then": {"_count": 1}, "of": {"_count": 6}, "and": {"_count": 1}, "Harry": {"_count": 1}, "whether": {"_count": 1}, "before": {"_count": 1}, "he": {"_count": 1}, "searching": {"_count": 1}}, "fierce": {"_count": 3, "joy": {"_count": 1}, "approval": {"_count": 1}, "pride": {"_count": 1}}, "girls": {"_count": 9, "back": {"_count": 1}, "tiptoed": {"_count": 1}, "that": {"_count": 1}, "tended": {"_count": 1}, "lurking": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "who": {"_count": 1}, "appeared": {"_count": 1}}, "Flitwicks": {"_count": 2, "class": {"_count": 1}, "office": {"_count": 1}}, "steak": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Gregory": {"_count": 1, "the": {"_count": 1}}, "teachers": {"_count": 7, "neither": {"_count": 1}, "from": {"_count": 1}, "many": {"_count": 1}, "er": {"_count": 1}, "on": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}}, "snuffling": {"_count": 1, "": {"_count": 1}}, "moonlight": {"_count": 8, "from": {"_count": 1}, "": {"_count": 1}, "through": {"_count": 1}, "lay": {"_count": 2}, "on": {"_count": 1}, "clearly": {"_count": 1}, "upon": {"_count": 1}}, "suits": {"_count": 2, "of": {"_count": 2}}, "delight": {"_count": 11, "": {"_count": 3}, "but": {"_count": 1}, "at": {"_count": 2}, "came": {"_count": 1}, "sighs": {"_count": 1}, "leapt": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "Peeves": {"_count": 4, "whooshing": {"_count": 1}, "treachery": {"_count": 1}, "": {"_count": 1}, "bellowing": {"_count": 1}}, "Harrys": {"_count": 130, "bathrobe": {"_count": 1}, "neck": {"_count": 7}, "face": {"_count": 3}, "shortcuts": {"_count": 1}, "robe": {"_count": 1}, "life": {"_count": 1}, "very": {"_count": 1}, "reach": {"_count": 2}, "window": {"_count": 1}, "hand": {"_count": 10}, "favorite": {"_count": 1}, "sentence": {"_count": 1}, "way": {"_count": 1}, "bed": {"_count": 4}, "Christmas": {"_count": 1}, "bag": {"_count": 2}, "trunk": {"_count": 1}, "wand": {"_count": 6}, "entire": {"_count": 1}, "head": {"_count": 10}, "robes": {"_count": 10}, "best": {"_count": 1}, "most": {"_count": 1}, "whose": {"_count": 1}, "faults": {"_count": 1}, "difficulties": {"_count": 1}, "thoughts": {"_count": 1}, "worries": {"_count": 1}, "faithful": {"_count": 1}, "cloak": {"_count": 1}, "chair": {"_count": 2}, "death": {"_count": 2}, "hands": {"_count": 4}, "other": {"_count": 1}, "stomach": {"_count": 1}, "Defense": {"_count": 1}, "school": {"_count": 1}, "mattress": {"_count": 1}, "House": {"_count": 2}, "predictions": {"_count": 1}, "worst": {"_count": 1}, "haddock": {"_count": 1}, "bubblebath": {"_count": 1}, "arms": {"_count": 1}, "father": {"_count": 1}, "eyes": {"_count": 2}, "train": {"_count": 1}, "parents": {"_count": 1}, "socks": {"_count": 1}, "guard": {"_count": 1}, "shoulder": {"_count": 1}, "potion": {"_count": 1}, "right": {"_count": 1}, "letter": {"_count": 1}, "folder": {"_count": 1}, "knights": {"_count": 1}, "body": {"_count": 1}, "fingers": {"_count": 1}, "chest": {"_count": 1}, "forgiveness": {"_count": 1}, "statue": {"_count": 1}, "mouth": {"_count": 1}, "cauldron": {"_count": 1}, "and": {"_count": 1}, "vision": {"_count": 1}, "textbooks": {"_count": 1}, "voice": {"_count": 1}, "supporters": {"_count": 1}, "hair": {"_count": 2}, "limited": {"_count": 1}, "expression": {"_count": 1}, "throat": {"_count": 1}, "skull": {"_count": 1}, "brain": {"_count": 1}, "IF": {"_count": 1}, "departure": {"_count": 1}, "three": {"_count": 1}}, "rolling": {"_count": 1, "mad": {"_count": 1}}, "time": {"_count": 58, "wondering": {"_count": 1}, "when": {"_count": 1}, "knowing": {"_count": 1}, "shut": {"_count": 2}, "for": {"_count": 2}, "over": {"_count": 1}, "reading": {"_count": 1}, "before": {"_count": 7}, "Ron": {"_count": 1}, "": {"_count": 12}, "being": {"_count": 1}, "Hermione": {"_count": 1}, "poring": {"_count": 1}, "until": {"_count": 1}, "to": {"_count": 10}, "though": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}, "then": {"_count": 1}, "muttering": {"_count": 1}, "did": {"_count": 1}, "with": {"_count": 1}, "worrying": {"_count": 1}, "do": {"_count": 1}, "within": {"_count": 1}, "she": {"_count": 2}, "said": {"_count": 1}, "knew": {"_count": 1}, "Dads": {"_count": 1}}, "guessing": {"_count": 2, "what": {"_count": 1}, "here": {"_count": 1}}, "getting": {"_count": 18, "back": {"_count": 1}, "Malfoy": {"_count": 1}, "along": {"_count": 1}, "to": {"_count": 1}, "inside": {"_count": 3}, "into": {"_count": 1}, "herself": {"_count": 1}, "out": {"_count": 1}, "rid": {"_count": 1}, "stuff": {"_count": 1}, "the": {"_count": 2}, "shot": {"_count": 1}, "a": {"_count": 1}, "hurt": {"_count": 1}, "through": {"_count": 1}}, "jealousy": {"_count": 3, "and": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 1}}, "trouble": {"_count": 25, "keeping": {"_count": 1}, "": {"_count": 9}, "like": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "before": {"_count": 1}, "by": {"_count": 1}, "she": {"_count": 1}, "for": {"_count": 1}, "or": {"_count": 1}, "getting": {"_count": 2}, "about": {"_count": 1}, "stopping": {"_count": 1}, "when": {"_count": 1}}, "neat": {"_count": 1, "straight": {"_count": 1}}, "seats": {"_count": 4, "were": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "causing": {"_count": 1}}, "like": {"_count": 1, "basketball": {"_count": 1}}, "broken": {"_count": 13, "jaws": {"_count": 1}, "wands": {"_count": 1}, "rock": {"_count": 1}, "Sneakoscopes": {"_count": 1}, "glass": {"_count": 2}, "and": {"_count": 2}, "mirror": {"_count": 2}, "china": {"_count": 1}, "trunks": {"_count": 1}, "furniture": {"_count": 1}}, "human": {"_count": 5, "Bludgers": {"_count": 1}, "bones": {"_count": 2}, "prey": {"_count": 1}, "Transfiguration": {"_count": 1}}, "baking": {"_count": 2, "pumpkin": {"_count": 1}, "salmon": {"_count": 1}}, "\u2018f": {"_count": 1, "and": {"_count": 1}}, "Professor": {"_count": 36, "Dumbledores": {"_count": 2}, "Binns": {"_count": 1}, "McGonagalls": {"_count": 3}, "Trelawney": {"_count": 5}, "Trelawneys": {"_count": 5}, "Snape": {"_count": 3}, "Lupins": {"_count": 2}, "Dumbledore": {"_count": 1}, "McGonagall": {"_count": 3}, "Lockhart": {"_count": 1}, "GrubblyPlank": {"_count": 2}, "Quirrell": {"_count": 1}, "Umbridge": {"_count": 2}, "Umbridges": {"_count": 1}, "Quirrells": {"_count": 1}, "Flitwicks": {"_count": 1}, "Flitwick": {"_count": 1}, "Sprouts": {"_count": 1}}, "public": {"_count": 1, "toilet": {"_count": 1}}, "gigantic": {"_count": 2, "feet": {"_count": 1}, "paws": {"_count": 1}}, "breath": {"_count": 17, "": {"_count": 5}, "from": {"_count": 3}, "and": {"_count": 3}, "but": {"_count": 1}, "check": {"_count": 1}, "only": {"_count": 1}, "behind": {"_count": 1}, "made": {"_count": 1}, "she": {"_count": 1}}, "winning": {"_count": 5, "fifty": {"_count": 1}, "fell": {"_count": 1}, "the": {"_count": 2}, "were": {"_count": 1}}, "tackling": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 139, "": {"_count": 11}, "though": {"_count": 1}, "nonsense": {"_count": 2}, "simple": {"_count": 1}, "room": {"_count": 1}, "nature": {"_count": 2}, "Ron": {"_count": 1}, "Colin": {"_count": 1}, "behavior": {"_count": 2}, "skin": {"_count": 1}, "rock": {"_count": 1}, "castle": {"_count": 3}, "diary": {"_count": 1}, "incident": {"_count": 1}, "lesson": {"_count": 1}, "potion": {"_count": 3}, "wardrobe": {"_count": 1}, "year": {"_count": 3}, "school": {"_count": 4}, "time": {"_count": 1}, "statement": {"_count": 1}, "starts": {"_count": 1}, "could": {"_count": 1}, "said": {"_count": 1}, "summer": {"_count": 1}, "suggestion": {"_count": 1}, "one": {"_count": 5}, "conversation": {"_count": 1}, "excellent": {"_count": 1}, "she": {"_count": 1}, "but": {"_count": 2}, "bath": {"_count": 1}, "Dobby": {"_count": 1}, "because": {"_count": 2}, "Harry": {"_count": 2}, "listening": {"_count": 1}, "breach": {"_count": 1}, "house": {"_count": 2}, "lack": {"_count": 1}, "if": {"_count": 1}, "kitchen": {"_count": 1}, "boys": {"_count": 1}, "hearing": {"_count": 1}, "within": {"_count": 1}, "Potter": {"_count": 1}, "was": {"_count": 2}, "class": {"_count": 1}, "homework": {"_count": 1}, "second": {"_count": 1}, "stuff": {"_count": 1}, "speech": {"_count": 1}, "question": {"_count": 1}, "idea": {"_count": 3}, "added": {"_count": 1}, "business": {"_count": 1}, "magnitude": {"_count": 1}, "rubbish": {"_count": 1}, "group": {"_count": 1}, "old": {"_count": 1}, "no": {"_count": 1}, "alive": {"_count": 1}, "clutched": {"_count": 1}, "already": {"_count": 1}, "bunch": {"_count": 1}, "uncomfortable": {"_count": 1}, "extremely": {"_count": 1}, "front": {"_count": 1}, "story": {"_count": 1}, "owl": {"_count": 1}, "place": {"_count": 2}, "likes": {"_count": 1}, "a": {"_count": 1}, "comfortable": {"_count": 1}, "without": {"_count": 1}, "morning": {"_count": 1}, "to": {"_count": 1}, "strangest": {"_count": 1}, "team": {"_count": 1}, "Fenrir": {"_count": 1}, "happy": {"_count": 1}, "disastrous": {"_count": 1}, "Hall": {"_count": 1}, "seemed": {"_count": 1}, "and": {"_count": 1}, "oakmatured": {"_count": 1}, "suited": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}, "wrecked": {"_count": 1}, "agony": {"_count": 1}, "with": {"_count": 1}, "letter": {"_count": 1}, "news": {"_count": 1}, "theory": {"_count": 1}, "row": {"_count": 1}, "The": {"_count": 1}, "damning": {"_count": 1}, "himself": {"_count": 1}, "mess": {"_count": 1}, "cellar": {"_count": 1}, "wand": {"_count": 1}, "can": {"_count": 1}, "corridor": {"_count": 1}, "tunnel": {"_count": 1}, "years": {"_count": 1}}, "training": {"_count": 2, "Gryffindor": {"_count": 1}, "hell": {"_count": 1}}, "committing": {"_count": 1, "a": {"_count": 1}}, "Snape": {"_count": 16, "": {"_count": 2}, "s": {"_count": 8}, "in": {"_count": 1}, "was": {"_count": 1}, "instead": {"_count": 1}, "on": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}}, "fried": {"_count": 4, "sausages": {"_count": 1}, "egg": {"_count": 2}, "fish": {"_count": 1}}, "everyone": {"_count": 8, "looking": {"_count": 2}, "elses": {"_count": 1}, "watching": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 3}}, "Oliver": {"_count": 1, "Woods": {"_count": 1}}, "binoculars": {"_count": 1, "around": {"_count": 1}}, "looptheloops": {"_count": 1, "to": {"_count": 1}}, "speed": {"_count": 6, "WHAM": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "nobody": {"_count": 1}}, "rage": {"_count": 16, "echoed": {"_count": 1}, "": {"_count": 3}, "Black": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 1}, "about": {"_count": 1}, "and": {"_count": 3}, "Gaunt": {"_count": 1}, "Morfin": {"_count": 1}, "In": {"_count": 1}, "of": {"_count": 1}, "felt": {"_count": 1}}, "cheating": {"_count": 2, "Jordan": {"_count": 1}, "ensued": {"_count": 1}}, "looking": {"_count": 5, "up": {"_count": 1}, "extrafestive": {"_count": 1}, "at": {"_count": 3}}, "snow": {"_count": 8, "": {"_count": 4}, "and": {"_count": 2}, "on": {"_count": 1}, "hit": {"_count": 1}}, "lionfish": {"_count": 2, "ignored": {"_count": 1}, "and": {"_count": 1}}, "students": {"_count": 39, "who": {"_count": 3}, "pressing": {"_count": 1}, "before": {"_count": 1}, "in": {"_count": 1}, "congregated": {"_count": 1}, "drew": {"_count": 1}, "on": {"_count": 2}, "shes": {"_count": 1}, "filed": {"_count": 1}, "at": {"_count": 3}, "rolling": {"_count": 1}, "ambling": {"_count": 1}, "now": {"_count": 1}, "were": {"_count": 2}, "was": {"_count": 1}, "starting": {"_count": 1}, "swimming": {"_count": 1}, "returning": {"_count": 1}, "began": {"_count": 1}, "bent": {"_count": 1}, "": {"_count": 3}, "standing": {"_count": 1}, "streaming": {"_count": 1}, "Scrimgeour": {"_count": 1}, "I": {"_count": 1}, "most": {"_count": 1}, "finally": {"_count": 1}, "have": {"_count": 1}, "had": {"_count": 1}, "including": {"_count": 1}, "past": {"_count": 1}}, "Potions": {"_count": 5, "they": {"_count": 1}, "to": {"_count": 1}, "master": {"_count": 1}, "that": {"_count": 1}, "sir": {"_count": 1}}, "Hagrids": {"_count": 20, "must": {"_count": 1}, "yet": {"_count": 1}, "hut": {"_count": 1}, "grip": {"_count": 1}, "house": {"_count": 2}, "patchwork": {"_count": 1}, "wardrobe": {"_count": 1}, "front": {"_count": 1}, "back": {"_count": 1}, "door": {"_count": 1}, "wild": {"_count": 1}, "shoulder": {"_count": 1}, "cabin": {"_count": 3}, "absence": {"_count": 1}, "story": {"_count": 1}, "face": {"_count": 1}, "are": {"_count": 1}}, "Malfoys": {"_count": 9, "robes": {"_count": 1}, "grip": {"_count": 1}, "jeering": {"_count": 1}, "wand": {"_count": 2}, "hands": {"_count": 1}, "behavior": {"_count": 1}, "hair": {"_count": 1}, "rudeness": {"_count": 1}}, "holly": {"_count": 8, "and": {"_count": 5}, "eleven": {"_count": 1}, "not": {"_count": 1}, "still": {"_count": 1}}, "Our": {"_count": 2, "Time": {"_count": 1}, "Fellow": {"_count": 1}}, "Recent": {"_count": 2, "Developments": {"_count": 2}}, "thousands": {"_count": 5, "of": {"_count": 5}}, "shelves": {"_count": 7, "hundreds": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}, "covered": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "subjects": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "advice": {"_count": 4, "at": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}}, "packages": {"_count": 1, "at": {"_count": 1}}, "homemade": {"_count": 4, "fudge": {"_count": 1}, "mince": {"_count": 1}, "toffee": {"_count": 1}, "Cauldron": {"_count": 1}}, "Every": {"_count": 2, "Flavor": {"_count": 2}}, "awe": {"_count": 1, "on": {"_count": 1}}, "roast": {"_count": 5, "and": {"_count": 1}, "pork": {"_count": 1}, "chicken": {"_count": 1}, "beef": {"_count": 1}, "pike": {"_count": 1}}, "chipolatas": {"_count": 1, "tureens": {"_count": 1}}, "buttered": {"_count": 2, "peas": {"_count": 1}, "toast": {"_count": 1}}, "thick": {"_count": 14, "rich": {"_count": 1}, "woolen": {"_count": 2}, "trees": {"_count": 1}, "gray": {"_count": 1}, "yellowishgreen": {"_count": 1}, "grayish": {"_count": 1}, "knobbly": {"_count": 1}, "gluey": {"_count": 1}, "knotgrass": {"_count": 1}, "hair": {"_count": 1}, "steaming": {"_count": 1}, "white": {"_count": 1}, "golden": {"_count": 1}}, "blue": {"_count": 2, "smoke": {"_count": 1}, "light": {"_count": 1}}, "nonexplodable": {"_count": 1, "luminous": {"_count": 1}}, "turkey": {"_count": 3, "sandwiches": {"_count": 1}, "and": {"_count": 1}, "off": {"_count": 1}}, "desks": {"_count": 5, "and": {"_count": 1}, "examining": {"_count": 1}, "": {"_count": 1}, "until": {"_count": 1}, "toward": {"_count": 1}}, "Filch": {"_count": 6, "and": {"_count": 1}, "the": {"_count": 1}, "who": {"_count": 1}, "or": {"_count": 1}, "s": {"_count": 2}}, "invisible": {"_count": 4, "people": {"_count": 1}, "dementors": {"_count": 1}, "creatures": {"_count": 1}, "beams": {"_count": 1}}, "ache": {"_count": 1, "inside": {"_count": 1}}, "Mrs": {"_count": 19, "Norris": {"_count": 2}, "Weasleys": {"_count": 6}, "Weasley": {"_count": 8}, "Skowers": {"_count": 1}, "Black": {"_count": 2}}, "Erised": {"_count": 7, "": {"_count": 2}, "shows": {"_count": 1}, "like": {"_count": 1}, "again": {"_count": 1}, "four": {"_count": 1}, "and": {"_count": 1}}, "ever": {"_count": 3, "finding": {"_count": 1}, "being": {"_count": 1}, "returning": {"_count": 1}}, "mud": {"_count": 7, "": {"_count": 2}, "to": {"_count": 1}, "wind": {"_count": 1}, "out": {"_count": 1}, "hit": {"_count": 1}, "littered": {"_count": 1}}, "practice": {"_count": 5, "but": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "alchemy": {"_count": 1, "is": {"_count": 1}}, "Life": {"_count": 5, "which": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}, "does": {"_count": 1}}, "Gringotts": {"_count": 6, "": {"_count": 3}, "will": {"_count": 1}, "were": {"_count": 1}, "notify": {"_count": 1}}, "treating": {"_count": 1, "werewolf": {"_count": 1}}, "overtaking": {"_count": 1, "Slytherin": {"_count": 1}}, "weekly": {"_count": 1, "torture": {"_count": 1}}, "Woods": {"_count": 1, "pep": {"_count": 1}}, "wanting": {"_count": 5, "to": {"_count": 5}}, "fists": {"_count": 2, "that": {"_count": 1}, "on": {"_count": 1}}, "now": {"_count": 2, "no": {"_count": 1}, "but": {"_count": 1}}, "trees": {"_count": 13, "until": {"_count": 1}, "however": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 2}, "behind": {"_count": 2}, "had": {"_count": 1}, "toward": {"_count": 1}, "as": {"_count": 1}}, "hocuspocus": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "enchantments": {"_count": 5, "probably": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "more": {"_count": 1}}, "smile": {"_count": 1, "and": {"_count": 1}}, "summer": {"_count": 2, "coming": {"_count": 1}, "air": {"_count": 1}}, "place": {"_count": 7, "in": {"_count": 1}, "an": {"_count": 1}, "this": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "was": {"_count": 1}}, "working": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "Great": {"_count": 2, "Britain": {"_count": 1}, "Hangleton": {"_count": 1}}, "1709": {"_count": 1, "everyone": {"_count": 1}}, "horns": {"_count": 1, "and": {"_count": 1}}, "sparks": {"_count": 5, "flew": {"_count": 2}, "shot": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}}, "its": {"_count": 66, "snout": {"_count": 1}, "nostrils": {"_count": 1}, "moons": {"_count": 1}, "misery": {"_count": 1}, "massive": {"_count": 1}, "long": {"_count": 1}, "tether": {"_count": 1}, "branches": {"_count": 1}, "tail": {"_count": 1}, "bottle": {"_count": 1}, "load": {"_count": 1}, "eye": {"_count": 1}, "burden": {"_count": 1}, "gone": {"_count": 1}, "way": {"_count": 4}, "black": {"_count": 1}, "scabbard": {"_count": 1}, "leap": {"_count": 1}, "own": {"_count": 6}, "mighty": {"_count": 1}, "windows": {"_count": 2}, "diamondpatterned": {"_count": 1}, "legs": {"_count": 2}, "last": {"_count": 2}, "magic": {"_count": 1}, "witches": {"_count": 1}, "hind": {"_count": 2}, "previous": {"_count": 2}, "fires": {"_count": 1}, "end": {"_count": 2}, "elegant": {"_count": 1}, "robes": {"_count": 1}, "wing": {"_count": 1}, "wings": {"_count": 1}, "large": {"_count": 1}, "owner": {"_count": 3}, "nine": {"_count": 1}, "frequent": {"_count": 1}, "secrets": {"_count": 1}, "snug": {"_count": 1}, "true": {"_count": 1}, "my": {"_count": 1}, "existence": {"_count": 1}, "petals": {"_count": 1}, "case": {"_count": 1}, "owners": {"_count": 1}, "pocket": {"_count": 1}, "defenses": {"_count": 1}, "bracket": {"_count": 1}, "arc": {"_count": 1}}, "nowhere": {"_count": 24, "as": {"_count": 1}, "Harry": {"_count": 1}, "something": {"_count": 1}, "": {"_count": 3}, "between": {"_count": 1}, "next": {"_count": 1}, "so": {"_count": 1}, "toward": {"_count": 1}, "I": {"_count": 1}, "seized": {"_count": 1}, "Unable": {"_count": 1}, "rammed": {"_count": 1}, "a": {"_count": 2}, "her": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "born": {"_count": 1}}, "mine": {"_count": 16, "who": {"_count": 2}, "The": {"_count": 1}, "isnt": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 3}, "have": {"_count": 1}, "said": {"_count": 2}, "to": {"_count": 1}, "Horace": {"_count": 1}, "and": {"_count": 1}, "author": {"_count": 1}, "sorry": {"_count": 1}}, "how": {"_count": 28, "bad": {"_count": 1}, "they": {"_count": 2}, "Malfoy": {"_count": 1}, "much": {"_count": 3}, "he": {"_count": 2}, "it": {"_count": 2}, "wet": {"_count": 1}, "impressive": {"_count": 1}, "Cho": {"_count": 1}, "and": {"_count": 2}, "Hermione": {"_count": 1}, "to": {"_count": 2}, "far": {"_count": 2}, "unpleasant": {"_count": 1}, "frightened": {"_count": 1}, "since": {"_count": 1}, "many": {"_count": 2}, "the": {"_count": 1}, "Death": {"_count": 1}}, "Norbert": {"_count": 4, "and": {"_count": 1}, "": {"_count": 3}}, "my": {"_count": 105, "books": {"_count": 2}, "own": {"_count": 4}, "more": {"_count": 1}, "career": {"_count": 2}, "year": {"_count": 1}, "Japanese": {"_count": 1}, "letters": {"_count": 1}, "mind": {"_count": 1}, "book": {"_count": 1}, "Scintillation": {"_count": 1}, "best": {"_count": 3}, "hands": {"_count": 1}, "head": {"_count": 2}, "secrets": {"_count": 2}, "soul": {"_count": 1}, "saucer": {"_count": 1}, "colleagues": {"_count": 2}, "arm": {"_count": 1}, "bed": {"_count": 1}, "life": {"_count": 4}, "followers": {"_count": 1}, "intray": {"_count": 1}, "students": {"_count": 2}, "sight": {"_count": 1}, "grandmuzzers": {"_count": 1}, "old": {"_count": 2}, "desk": {"_count": 1}, "room": {"_count": 1}, "dads": {"_count": 1}, "Ministry": {"_count": 1}, "late": {"_count": 1}, "power": {"_count": 1}, "experiments": {"_count": 1}, "faithful": {"_count": 1}, "Death": {"_count": 1}, "last": {"_count": 1}, "mothers": {"_count": 2}, "hairs": {"_count": 1}, "fathers": {"_count": 4}, "hair": {"_count": 1}, "house": {"_count": 2}, "fleshl": {"_count": 1}, "usual": {"_count": 1}, "hand": {"_count": 1}, "ban": {"_count": 1}, "scar": {"_count": 1}, "natural": {"_count": 1}, "position": {"_count": 1}, "arrival": {"_count": 1}, "grans": {"_count": 1}, "office": {"_count": 1}, "time": {"_count": 1}, "possessions": {"_count": 1}, "treachery": {"_count": 1}, "alltime": {"_count": 1}, "way": {"_count": 2}, "little": {"_count": 1}, "trunk": {"_count": 1}, "mistress": {"_count": 1}, "third": {"_count": 1}, "Aurors": {"_count": 1}, "journey": {"_count": 1}, "years": {"_count": 1}, "dear": {"_count": 1}, "affliction": {"_count": 1}, "handbag": {"_count": 1}, "race": {"_count": 2}, "forebears": {"_count": 1}, "family": {"_count": 2}, "pocket": {"_count": 1}, "interest": {"_count": 1}, "hire": {"_count": 1}, "brothers": {"_count": 1}, "perfidy": {"_count": 1}, "freedom": {"_count": 1}, "friends": {"_count": 1}, "birth": {"_count": 1}, "sisters": {"_count": 1}, "parents": {"_count": 1}, "rough": {"_count": 1}, "shame": {"_count": 1}, "noble": {"_count": 1}}, "two": {"_count": 13, "people": {"_count": 3}, "Quidditch": {"_count": 1}, "dormitory": {"_count": 1}, "oldfashioned": {"_count": 1}, "thirteenyearold": {"_count": 1}, "enormous": {"_count": 1}, "school": {"_count": 1}, "paths": {"_count": 1}, "fully": {"_count": 1}, "faithful": {"_count": 1}, "teenage": {"_count": 1}}, "jig": {"_count": 1, "": {"_count": 1}}, "night": {"_count": 10, "let": {"_count": 1}, "": {"_count": 7}, "with": {"_count": 1}, "probably": {"_count": 1}}, "any": {"_count": 33, "of": {"_count": 6}, "more": {"_count": 1}, "kind": {"_count": 2}, "reply": {"_count": 2}, "one": {"_count": 1}, "use": {"_count": 1}, "importance": {"_count": 1}, "Dark": {"_count": 1}, "Death": {"_count": 1}, "Muggles": {"_count": 1}, "witch": {"_count": 1}, "description": {"_count": 1}, "class": {"_count": 1}, "anti": {"_count": 1}, "way": {"_count": 2}, "improvement": {"_count": 1}, "mitigating": {"_count": 1}, "other": {"_count": 1}, "human": {"_count": 1}, "plans": {"_count": 1}, "student": {"_count": 1}, "measure": {"_count": 1}, "": {"_count": 1}, "object": {"_count": 1}, "magic": {"_count": 1}}, "whats": {"_count": 5, "been": {"_count": 1}, "hidden": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 1}, "happening": {"_count": 1}}, "such": {"_count": 12, "a": {"_count": 6}, "confusion": {"_count": 1}, "glory": {"_count": 1}, "smugness": {"_count": 1}, "vicious": {"_count": 1}, "power": {"_count": 1}, "breathtaking": {"_count": 1}}, "points": {"_count": 1, "in": {"_count": 1}}, "himself": {"_count": 33, "that": {"_count": 1}, "Harry": {"_count": 2}, "": {"_count": 8}, "from": {"_count": 1}, "in": {"_count": 5}, "crouching": {"_count": 1}, "and": {"_count": 3}, "winning": {"_count": 1}, "took": {"_count": 1}, "raising": {"_count": 1}, "again": {"_count": 1}, "all": {"_count": 1}, "whenever": {"_count": 1}, "he": {"_count": 1}, "have": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}, "mastered": {"_count": 1}, "latched": {"_count": 1}}, "magical": {"_count": 22, "discoveries": {"_count": 1}, "blood": {"_count": 2}, "creatures": {"_count": 2}, "people": {"_count": 1}, "creature": {"_count": 2}, "power": {"_count": 3}, "knowledge": {"_count": 1}, "potions": {"_count": 1}, "damage": {"_count": 1}, "education": {"_count": 2}, "inventions": {"_count": 1}, "concealment": {"_count": 1}, "ability": {"_count": 1}, "graffiti": {"_count": 1}, "disturbance": {"_count": 1}, "protection": {"_count": 1}}, "adventure": {"_count": 2, "was": {"_count": 1}, "a": {"_count": 1}}, "explaining": {"_count": 4, "": {"_count": 1}, "it": {"_count": 1}, "something": {"_count": 1}, "features": {"_count": 1}}, "poking": {"_count": 2, "around": {"_count": 1}, "shredded": {"_count": 1}}, "Jupiter": {"_count": 1, "toward": {"_count": 1}}, "studying": {"_count": 3, "lost": {"_count": 1}, "": {"_count": 1}, "themselves": {"_count": 1}}, "running": {"_count": 5, "off": {"_count": 1}, "things": {"_count": 1}, "to": {"_count": 1}, "footsteps": {"_count": 1}, "at": {"_count": 1}}, "arrows": {"_count": 4, "hung": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}, "soared": {"_count": 1}}, "panic": {"_count": 20, "in": {"_count": 5}, "on": {"_count": 1}, "turned": {"_count": 1}, "Harry": {"_count": 2}, "were": {"_count": 1}, "he": {"_count": 1}, "inside": {"_count": 1}, "could": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 3}, "Im": {"_count": 1}}, "silverblue": {"_count": 1, "blood": {"_count": 1}}, "unicorn": {"_count": 1, "blood": {"_count": 1}}, "leaves": {"_count": 7, "around": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 1}, "far": {"_count": 1}, "but": {"_count": 1}, "overhead": {"_count": 1}}, "more": {"_count": 10, "galloping": {"_count": 1}, "slugs": {"_count": 1}, "spiders": {"_count": 1}, "sleep": {"_count": 1}, "deaths": {"_count": 1}, "of": {"_count": 1}, "than": {"_count": 1}, "footsteps": {"_count": 1}, "spells": {"_count": 1}, "loss": {"_count": 1}}, "lowhanging": {"_count": 1, "branches": {"_count": 1}}, "Firenzes": {"_count": 1, "head": {"_count": 1}}, "nobody": {"_count": 1, "who": {"_count": 1}}, "seconds": {"_count": 5, "though": {"_count": 1}, "the": {"_count": 1}, "Malfoy": {"_count": 1}, "there": {"_count": 1}, "Hermione": {"_count": 1}}, "comfort": {"_count": 8, "": {"_count": 4}, "to": {"_count": 1}, "of": {"_count": 1}, "not": {"_count": 1}, "though": {"_count": 1}}, "exam": {"_count": 1, "nerves": {"_count": 1}}, "Voldemort": {"_count": 13, "certainly": {"_count": 1}, "said": {"_count": 1}, "lurking": {"_count": 1}, "that": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 3}, "I": {"_count": 1}, "and": {"_count": 1}, "gazing": {"_count": 1}, "himself": {"_count": 1}, "But": {"_count": 1}}, "answering": {"_count": 2, "questions": {"_count": 1}, "Harrys": {"_count": 1}}, "Conduct": {"_count": 1, "or": {"_count": 1}}, "Elfric": {"_count": 1, "the": {"_count": 1}}, "peas": {"_count": 1, "": {"_count": 1}}, "secret": {"_count": 1, "he": {"_count": 1}}, "shock": {"_count": 18, "and": {"_count": 5}, "frozen": {"_count": 1}, "identical": {"_count": 1}, "": {"_count": 4}, "a": {"_count": 1}, "crashed": {"_count": 1}, "as": {"_count": 1}, "from": {"_count": 1}, "visible": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}}, "here": {"_count": 38, "tonight": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 17}, "Harry": {"_count": 1}, "in": {"_count": 1}, "Im": {"_count": 1}, "said": {"_count": 3}, "Hermione": {"_count": 1}, "for": {"_count": 1}, "you": {"_count": 1}, "quickly": {"_count": 2}, "at": {"_count": 1}, "theyre": {"_count": 1}, "safely": {"_count": 2}, "Thicknesse": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}}, "wind": {"_count": 9, "sounded": {"_count": 1}, "disturbed": {"_count": 1}, "and": {"_count": 3}, "the": {"_count": 1}, "might": {"_count": 1}, "made": {"_count": 1}, "then": {"_count": 1}}, "stairs": {"_count": 11, "they": {"_count": 1}, "shouts": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 2}, "lined": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "below": {"_count": 1}, "down": {"_count": 1}, "still": {"_count": 1}}, "climbing": {"_count": 1, "down": {"_count": 1}}, "thump": {"_count": 1, "he": {"_count": 1}}, "plant": {"_count": 2, "": {"_count": 1}, "thing": {"_count": 1}}, "small": {"_count": 6, "jewel": {"_count": 1}, "goblin": {"_count": 1}, "scuffles": {"_count": 1}, "twittering": {"_count": 1}, "everyday": {"_count": 1}, "metal": {"_count": 1}}, "rainbow": {"_count": 1, "feathers": {"_count": 1}}, "three": {"_count": 28, "of": {"_count": 1}, "we": {"_count": 1}, "Neville": {"_count": 1}, "Im": {"_count": 1}, "years": {"_count": 2}, "": {"_count": 6}, "people": {"_count": 3}, "and": {"_count": 1}, "then": {"_count": 5}, "or": {"_count": 2}, "hundred": {"_count": 1}, "they": {"_count": 1}, "new": {"_count": 1}, "prisoners": {"_count": 1}, "separate": {"_count": 1}}, "limp": {"_count": 1, "black": {"_count": 1}}, "logic": {"_count": 1, "theyd": {"_count": 1}}, "bottles": {"_count": 5, "muttering": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "hats": {"_count": 1}}, "thin": {"_count": 24, "air": {"_count": 23}, "lines": {"_count": 1}}, "doing": {"_count": 10, "was": {"_count": 2}, "nothing": {"_count": 1}, "it": {"_count": 2}, "this": {"_count": 1}, "so": {"_count": 1}, "things": {"_count": 1}, "my": {"_count": 1}, "precisely": {"_count": 1}}, "ridiculous": {"_count": 1, "ideas": {"_count": 1}}, "Quirrell": {"_count": 1, "keep": {"_count": 1}}, "KILL": {"_count": 1, "HIM": {"_count": 1}}, "glasses": {"_count": 2, "": {"_count": 2}}, "Albus": {"_count": 18, "Dumbledore": {"_count": 12}, "accompanying": {"_count": 1}, "Dumbledores": {"_count": 3}, "Percival": {"_count": 1}, "with": {"_count": 1}}, "amazement": {"_count": 3, "on": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "choosing": {"_count": 1, "precisely": {"_count": 1}}, "coming": {"_count": 2, "back": {"_count": 1}, "catastrophe": {"_count": 1}}, "hatred": {"_count": 5, "greed": {"_count": 1}, "": {"_count": 2}, "beyond": {"_count": 1}, "so": {"_count": 1}}, "wanted": {"_count": 2, "to": {"_count": 1}, "wizards": {"_count": 1}}, "stopping": {"_count": 2, "us": {"_count": 1}, "Fred": {"_count": 1}}, "cheering": {"_count": 5, "and": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 1}, "Neville": {"_count": 1}}, "chess": {"_count": 3, "Hogwarts": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "cool": {"_count": 4, "logic": {"_count": 1}, "water": {"_count": 1}, "if": {"_count": 1}, "green": {"_count": 1}}, "bravery": {"_count": 3, "to": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "explosion": {"_count": 2, "had": {"_count": 1}, "took": {"_count": 1}}, "applause": {"_count": 9, "for": {"_count": 2}, "and": {"_count": 4}, "as": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "decoration": {"_count": 1, "": {"_count": 1}}, "boats": {"_count": 1, "that": {"_count": 1}}, "speaking": {"_count": 3, "said": {"_count": 1}, "uncomfortable": {"_count": 1}, "": {"_count": 1}}, "fun": {"_count": 5, "with": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "to": {"_count": 1}}, "deepest": {"_count": 8, "shame": {"_count": 1}, "gloom": {"_count": 1}, "loathing": {"_count": 3}, "black": {"_count": 1}, "disgust": {"_count": 1}, "remorse": {"_count": 1}}, "one": {"_count": 43, "year": {"_count": 1}, "of": {"_count": 20}, "student": {"_count": 1}, "cradling": {"_count": 1}, "commenting": {"_count": 1}, "hour": {"_count": 1}, "who": {"_count": 2}, "particularly": {"_count": 1}, "Hermione": {"_count": 1}, "whose": {"_count": 1}, "thing": {"_count": 2}, "explaining": {"_count": 1}, "bit": {"_count": 1}, "blared": {"_count": 1}, "Caractacus": {"_count": 1}, "mind": {"_count": 1}, "that": {"_count": 1}, "like": {"_count": 1}, "small": {"_count": 1}, "corridor": {"_count": 1}, "being": {"_count": 1}, "is": {"_count": 1}}, "unlocking": {"_count": 1, "Hedwigs": {"_count": 1}}, "school": {"_count": 16, "": {"_count": 5}, "record": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}, "rules": {"_count": 1}, "discipline": {"_count": 1}, "sneered": {"_count": 1}, "robes": {"_count": 1}, "blamed": {"_count": 1}, "without": {"_count": 1}}, "weeks": {"_count": 8, "back": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 1}, "teaching": {"_count": 1}, "ago": {"_count": 2}, "after": {"_count": 1}}, "last": {"_count": 14, "term": {"_count": 6}, "year": {"_count": 5}, "night": {"_count": 1}, "minute": {"_count": 1}, "nights": {"_count": 1}}, "whipped": {"_count": 1, "cream": {"_count": 1}}, "bread": {"_count": 8, "and": {"_count": 5}, "": {"_count": 1}, "Harry": {"_count": 1}, "some": {"_count": 1}}, "cheese": {"_count": 3, "on": {"_count": 1}, "covered": {"_count": 1}, "": {"_count": 1}}, "tennis": {"_count": 1, "balls": {"_count": 1}}, "watery": {"_count": 1, "adoration": {"_count": 1}}, "gratitude": {"_count": 10, "": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "toward": {"_count": 2}, "to": {"_count": 1}, "again": {"_count": 1}, "for": {"_count": 2}, "and": {"_count": 1}}, "knives": {"_count": 3, "and": {"_count": 3}}, "making": {"_count": 8, "horrible": {"_count": 1}, "him": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 3}, "sure": {"_count": 1}, "Horcruxes": {"_count": 1}}, "He": {"_count": 4, "WhoMustNotBeNamed": {"_count": 3}, "fancies": {"_count": 1}}, "envelopes": {"_count": 3, "from": {"_count": 1}, "": {"_count": 2}}, "reach": {"_count": 6, "": {"_count": 3}, "with": {"_count": 1}, "Voldemorts": {"_count": 1}, "for": {"_count": 1}}, "cream": {"_count": 1, "and": {"_count": 1}}, "after": {"_count": 1, "dinner": {"_count": 1}}, "birds": {"_count": 6, "of": {"_count": 1}, "now": {"_count": 1}, "was": {"_count": 2}, "erupting": {"_count": 1}, "outside": {"_count": 1}}, "residence": {"_count": 3, "this": {"_count": 1}, "shortly": {"_count": 2}}, "Underage": {"_count": 10, "Sorcery": {"_count": 7}, "Wizardry": {"_count": 3}}, "Warlocks": {"_count": 2, "Statute": {"_count": 1}, "for": {"_count": 1}}, "Secrecy": {"_count": 13, "": {"_count": 2}, "now": {"_count": 1}, "we": {"_count": 2}, "been": {"_count": 1}, "about": {"_count": 1}, "by": {"_count": 1}, "breached": {"_count": 1}, "or": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "unbalanced": {"_count": 1}}, "relenting": {"_count": 1, "and": {"_count": 1}}, "magicking": {"_count": 1, "himself": {"_count": 1}}, "canned": {"_count": 1, "soup": {"_count": 1}}, "deep": {"_count": 12, "disgust": {"_count": 2}, "trays": {"_count": 1}, "plum": {"_count": 1}, "resentment": {"_count": 1}, "skepticism": {"_count": 1}, "satisfaction": {"_count": 1}, "slow": {"_count": 1}, "attraction": {"_count": 1}, "crimson": {"_count": 1}, "red": {"_count": 1}, "dislike": {"_count": 1}}, "straw": {"_count": 2, "": {"_count": 2}}, "Muggles": {"_count": 15, "It": {"_count": 1}, "whod": {"_count": 1}, "an": {"_count": 1}, "lifting": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 6}, "strapping": {"_count": 1}, "even": {"_count": 1}}, "wizards": {"_count": 24, "think": {"_count": 1}, "": {"_count": 5}, "to": {"_count": 2}, "robes": {"_count": 1}, "was": {"_count": 2}, "speeding": {"_count": 1}, "tightly": {"_count": 1}, "never": {"_count": 1}, "followed": {"_count": 1}, "behind": {"_count": 1}, "my": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 3}, "playing": {"_count": 1}, "in": {"_count": 1}, "faced": {"_count": 1}}, "drawers": {"_count": 8, "when": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "beside": {"_count": 1}, "on": {"_count": 1}, "off": {"_count": 1}}, "anyone": {"_count": 11, "at": {"_count": 1}, "Harry": {"_count": 1}, "finding": {"_count": 1}, "who": {"_count": 1}, "from": {"_count": 1}, "whod": {"_count": 1}, "": {"_count": 1}, "else": {"_count": 2}, "nearby": {"_count": 1}, "near": {"_count": 1}}, "YouKnowWho": {"_count": 5, "": {"_count": 2}, "she": {"_count": 1}, "but": {"_count": 1}, "Then": {"_count": 1}}, "dung": {"_count": 1, "Dad": {"_count": 1}}, "stuff": {"_count": 14, "to": {"_count": 1}, "": {"_count": 3}, "your": {"_count": 1}, "youd": {"_count": 1}, "that": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "in": {"_count": 2}, "from": {"_count": 1}, "you": {"_count": 2}}, "fields": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 3, "never": {"_count": 1}, "there": {"_count": 1}, "I": {"_count": 1}}, "weeds": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "frogs": {"_count": 1, "": {"_count": 1}}, "gnomes": {"_count": 2, "in": {"_count": 1}, "sneaking": {"_count": 1}}, "bright": {"_count": 14, "brown": {"_count": 1}, "yellow": {"_count": 1}, "badges": {"_count": 1}, "turquoise": {"_count": 2}, "purple": {"_count": 1}, "red": {"_count": 1}, "blue": {"_count": 2}, "sunlight": {"_count": 1}, "white": {"_count": 1}, "pink": {"_count": 1}, "interest": {"_count": 1}, "light": {"_count": 1}}, "orange": {"_count": 4, "the": {"_count": 1}, "juice": {"_count": 1}, "radishes": {"_count": 1}, "light": {"_count": 1}}, "comics": {"_count": 1, "that": {"_count": 1}}, "Martin": {"_count": 1, "Miggs": {"_count": 1}}, "sun": {"_count": 1, "": {"_count": 1}}, "Self": {"_count": 1, "Shuffling": {"_count": 1}}, "Ginnys": {"_count": 6, "things": {"_count": 1}, "cheek": {"_count": 1}, "arm": {"_count": 1}, "head": {"_count": 1}, "too": {"_count": 1}, "chair": {"_count": 1}}, "Lockhart": {"_count": 4, "books": {"_count": 1}, "": {"_count": 1}, "watching": {"_count": 1}, "on": {"_count": 1}}, "glittering": {"_count": 7, "powder": {"_count": 2}, "hornets": {"_count": 1}, "brass": {"_count": 1}, "wind": {"_count": 1}, "beads": {"_count": 1}, "blue": {"_count": 1}}, "Floo": {"_count": 2, "powder": {"_count": 2}}, "hot": {"_count": 12, "ash": {"_count": 1}, "chocolate": {"_count": 2}, "bright": {"_count": 1}, "butterbeer": {"_count": 3}, "water": {"_count": 2}, "liquid": {"_count": 1}, "prickly": {"_count": 1}, "soup": {"_count": 1}}, "fireplaces": {"_count": 3, "and": {"_count": 1}, "there": {"_count": 1}, "below": {"_count": 1}}, "cards": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}}, "skulls": {"_count": 4, "": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 2}}, "assistance": {"_count": 2, "": {"_count": 2}}, "pincenez": {"_count": 1, "to": {"_count": 1}}, "anger": {"_count": 10, "": {"_count": 2}, "and": {"_count": 3}, "but": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "from": {"_count": 1}}, "Glory": {"_count": 3, "": {"_count": 1}, "said": {"_count": 2}}, "thieves": {"_count": 1, "and": {"_count": 1}}, "no": {"_count": 10, "wizard": {"_count": 1}, "importance": {"_count": 1}, "that": {"_count": 1}, "answer": {"_count": 1}, "Gryffindor": {"_count": 1}, "more": {"_count": 1}, "real": {"_count": 2}, "alternative": {"_count": 1}, "feeling": {"_count": 1}}, "hangmans": {"_count": 1, "rope": {"_count": 1}}, "opals": {"_count": 1, "Caution": {"_count": 1}}, "Nineteen": {"_count": 1, "Muggle": {"_count": 1}}, "shops": {"_count": 2, "devoted": {"_count": 1}, "but": {"_count": 1}}, "shrunken": {"_count": 2, "heads": {"_count": 2}}, "ashes": {"_count": 3, "back": {"_count": 1}, "": {"_count": 2}}, "fingernails": {"_count": 1, "cascaded": {"_count": 1}}, "dragon": {"_count": 6, "dung": {"_count": 3}, "hide": {"_count": 1}, "liver": {"_count": 1}, "eggs": {"_count": 1}}, "steps": {"_count": 9, "to": {"_count": 3}, "because": {"_count": 1}, "three": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}, "one": {"_count": 1}, "led": {"_count": 1}}, "Hermiones": {"_count": 16, "parents": {"_count": 1}, "stall": {"_count": 1}, "impossible": {"_count": 1}, "robes": {"_count": 2}, "face": {"_count": 1}, "that": {"_count": 1}, "potion": {"_count": 1}, "quill": {"_count": 1}, "least": {"_count": 1}, "arms": {"_count": 1}, "bed": {"_count": 1}, "canaries": {"_count": 1}, "bag": {"_count": 1}, "wand": {"_count": 1}, "chair": {"_count": 1}}, "coins": {"_count": 1, "into": {"_count": 1}}, "Chudley": {"_count": 1, "Cannon": {"_count": 1}}, "Quality": {"_count": 1, "Quidditch": {"_count": 1}}, "witches": {"_count": 16, "around": {"_count": 1}, "and": {"_count": 14}, "broke": {"_count": 1}}, "The": {"_count": 30, "Standard": {"_count": 2}, "Monster": {"_count": 2}, "Dark": {"_count": 1}, "Quibbler": {"_count": 16}, "Hobgoblins": {"_count": 1}, "Dream": {"_count": 4}, "Healers": {"_count": 1}, "Tales": {"_count": 2}, "Life": {"_count": 1}}, "forget": {"_count": 1, "menot": {"_count": 1}}, "purple": {"_count": 8, "smoke": {"_count": 2}, "writing": {"_count": 1}, "silk": {"_count": 1}, "robes": {"_count": 1}, "dumpling": {"_count": 1}, "lanterns": {"_count": 1}, "light": {"_count": 1}}, "charge": {"_count": 1, "The": {"_count": 1}}, "Defense": {"_count": 7, "Against": {"_count": 7}}, "Gilderoy": {"_count": 1, "Lockhart": {"_count": 1}}, "Lockharts": {"_count": 5, "books": {"_count": 2}, "classroom": {"_count": 1}, "eyes": {"_count": 1}, "face": {"_count": 1}}, "A": {"_count": 9, "Beginners": {"_count": 1}, "Guide": {"_count": 1}, "Thousand": {"_count": 1}, "History": {"_count": 5}, "Cauldron": {"_count": 1}}, "metal": {"_count": 8, "as": {"_count": 1}, "on": {"_count": 2}, "wand": {"_count": 1}, "rather": {"_count": 1}, "and": {"_count": 2}, "tools": {"_count": 1}}, "Get": {"_count": 1, "him": {"_count": 1}}, "Toadstools": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 33, "when": {"_count": 1}, "straining": {"_count": 1}, "and": {"_count": 13}, "or": {"_count": 1}, "wiping": {"_count": 1}, "who": {"_count": 3}, "": {"_count": 2}, "Hermione": {"_count": 2}, "Mrs": {"_count": 1}, "crushing": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "anxiously": {"_count": 1}, "having": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 1}}, "welcome": {"_count": 4, "he": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}}, "Filibuster": {"_count": 2, "fireworks": {"_count": 2}}, "muttering": {"_count": 6, "about": {"_count": 1}, "the": {"_count": 2}, "from": {"_count": 1}, "at": {"_count": 2}}, "Hedwigs": {"_count": 4, "continuing": {"_count": 1}, "cage": {"_count": 2}, "beak": {"_count": 1}}, "Thingy": {"_count": 1, "But": {"_count": 1}}, "curious": {"_count": 4, "Muggles": {"_count": 1}, "people": {"_count": 1}, "silver": {"_count": 1}, "Ravenclaws": {"_count": 1}}, "taps": {"_count": 1, "from": {"_count": 1}}, "eyeballs": {"_count": 1, "floating": {"_count": 1}}, "parked": {"_count": 1, "cars": {"_count": 1}}, "cloud": {"_count": 2, "pressing": {"_count": 1}, "staining": {"_count": 1}}, "fluffy": {"_count": 3, "cloud": {"_count": 1}, "white": {"_count": 1}, "black": {"_count": 1}}, "snowy": {"_count": 2, "cloud": {"_count": 1}, "tombstones": {"_count": 1}}, "toffees": {"_count": 1, "in": {"_count": 1}}, "seeing": {"_count": 5, "Freds": {"_count": 1}, "something": {"_count": 2}, "Hagrid": {"_count": 1}, "how": {"_count": 1}}, "clouds": {"_count": 1, "": {"_count": 1}}, "steam": {"_count": 8, "were": {"_count": 1}, "had": {"_count": 1}, "issued": {"_count": 1}, "billowing": {"_count": 1}, "and": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 1}, "evaporated": {"_count": 1}}, "blows": {"_count": 1, "from": {"_count": 1}}, "pointed": {"_count": 2, "black": {"_count": 2}}, "scaredlooking": {"_count": 2, "first": {"_count": 2}}, "aquamarine": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 9, "glass": {"_count": 1}, "splinters": {"_count": 1}, "parchment": {"_count": 1}, "shiny": {"_count": 1}, "square": {"_count": 1}, "blotches": {"_count": 1}, "bins": {"_count": 1}, "white": {"_count": 1}, "curved": {"_count": 1}}, "revolting": {"_count": 1, "things": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Peebles": {"_count": 1, "reported": {"_count": 1}}, "pure": {"_count": 7, "venom": {"_count": 1}, "terror": {"_count": 1}, "gold": {"_count": 1}, "spite": {"_count": 1}, "loathing": {"_count": 1}, "water": {"_count": 1}, "silvery": {"_count": 1}}, "sandwiches": {"_count": 1, "two": {"_count": 1}}, "iced": {"_count": 3, "pumpkin": {"_count": 2}, "juice": {"_count": 1}}, "chicken": {"_count": 4, "and": {"_count": 1}, "legs": {"_count": 2}, "": {"_count": 1}}, "pumpkin": {"_count": 15, "juice": {"_count": 14}, "tart": {"_count": 1}}, "clapping": {"_count": 1, "": {"_count": 1}}, "porridge": {"_count": 5, "plates": {"_count": 1}, "and": {"_count": 1}, "toward": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}}, "kippers": {"_count": 1, "mountains": {"_count": 1}}, "eggs": {"_count": 7, "and": {"_count": 5}, "": {"_count": 1}, "her": {"_count": 1}}, "Voyages": {"_count": 1, "with": {"_count": 1}}, "sound": {"_count": 6, "filled": {"_count": 1}, "that": {"_count": 1}, "deafened": {"_count": 1}, "from": {"_count": 1}, "greeted": {"_count": 2}}, "talk": {"_count": 7, "broke": {"_count": 1}, "from": {"_count": 1}, "burst": {"_count": 1}, "in": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "Rons": {"_count": 43, "head": {"_count": 2}, "hand": {"_count": 3}, "wand": {"_count": 1}, "bishops": {"_count": 1}, "four": {"_count": 1}, "pocket": {"_count": 2}, "robes": {"_count": 3}, "grip": {"_count": 1}, "legs": {"_count": 1}, "favorite": {"_count": 1}, "and": {"_count": 3}, "dress": {"_count": 1}, "chair": {"_count": 1}, "involving": {"_count": 1}, "brothers": {"_count": 1}, "grasp": {"_count": 1}, "tryout": {"_count": 1}, "mouth": {"_count": 1}, "bed": {"_count": 1}, "expression": {"_count": 1}, "words": {"_count": 1}, "recent": {"_count": 1}, "gargling": {"_count": 1}, "better": {"_count": 1}, "arm": {"_count": 1}, "raised": {"_count": 1}, "pajamas": {"_count": 1}, "who": {"_count": 1}, "father": {"_count": 1}, "left": {"_count": 1}, "bunk": {"_count": 1}, "departure": {"_count": 1}, "jacket": {"_count": 1}, "appearance": {"_count": 1}, "voice": {"_count": 1}}, "bandages": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "guilt": {"_count": 9, "Harry": {"_count": 1}, "thinking": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}, "upon": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "inside": {"_count": 1}, "and": {"_count": 1}}, "earth": {"_count": 9, "on": {"_count": 3}, "as": {"_count": 1}, "while": {"_count": 1}, "nearly": {"_count": 1}, "rose": {"_count": 1}, "beside": {"_count": 1}, "that": {"_count": 1}}, "turquoise": {"_count": 1, "his": {"_count": 1}}, "interest": {"_count": 11, "": {"_count": 2}, "a": {"_count": 1}, "and": {"_count": 2}, "around": {"_count": 1}, "as": {"_count": 1}, "you": {"_count": 1}, "why": {"_count": 1}, "in": {"_count": 1}, "pulling": {"_count": 1}}, "damp": {"_count": 2, "earth": {"_count": 1}, "clothing": {"_count": 1}}, "minutes": {"_count": 8, "late": {"_count": 1}, "however": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}, "the": {"_count": 1}, "so": {"_count": 1}, "later": {"_count": 1}, "to": {"_count": 1}}, "differentcolored": {"_count": 1, "earmuffs": {"_count": 1}}, "most": {"_count": 2, "antidotes": {"_count": 1}, "wizards": {"_count": 1}}, "earmuffs": {"_count": 1, "said": {"_count": 1}}, "surprise": {"_count": 17, "that": {"_count": 2}, "on": {"_count": 1}, "": {"_count": 5}, "saw": {"_count": 1}, "but": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}, "or": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}}, "roots": {"_count": 1, "a": {"_count": 1}}, "pots": {"_count": 1, "here": {"_count": 1}}, "exercise": {"_count": 1, "as": {"_count": 1}}, "rotten": {"_count": 2, "eggs": {"_count": 1}, "food": {"_count": 1}}, "bangs": {"_count": 3, "like": {"_count": 1}, "Harry": {"_count": 1}, "interspersed": {"_count": 1}}, "perfect": {"_count": 1, "coat": {"_count": 1}}, "afternoon": {"_count": 2, "classes": {"_count": 1}, "lessons": {"_count": 1}}, "Travels": {"_count": 2, "with": {"_count": 2}}, "Witch": {"_count": 4, "Weeklys": {"_count": 2}, "Weekly": {"_count": 2}}, "Ogdens": {"_count": 3, "Old": {"_count": 2}, "frock": {"_count": 1}}, "disbelief": {"_count": 1, "on": {"_count": 1}}, "evil": {"_count": 5, "and": {"_count": 1}, "or": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "magic": {"_count": 1}}, "haircare": {"_count": 1, "potions": {"_count": 1}}, "terror": {"_count": 15, "": {"_count": 3}, "and": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 2}, "upon": {"_count": 1}, "the": {"_count": 1}, "were": {"_count": 1}, "as": {"_count": 1}, "swept": {"_count": 1}, "threw": {"_count": 1}, "to": {"_count": 1}, "rent": {"_count": 1}}, "budgies": {"_count": 1, "arguing": {"_count": 1}}, "dawn": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "hell": {"_count": 1}}, "mist": {"_count": 3, "hung": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "trollish": {"_count": 1, "cunning": {"_count": 1}}, "room": {"_count": 1, "for": {"_count": 1}}, "fine": {"_count": 3, "gold": {"_count": 2}, "silk": {"_count": 1}}, "dust": {"_count": 17, "from": {"_count": 1}, "except": {"_count": 1}, "rose": {"_count": 3}, "a": {"_count": 1}, "as": {"_count": 1}, "every": {"_count": 1}, "filled": {"_count": 1}, "and": {"_count": 3}, "half": {"_count": 1}, "on": {"_count": 1}, "Coughing": {"_count": 1}, "covered": {"_count": 1}, "of": {"_count": 1}}, "palest": {"_count": 1, "mauve": {"_count": 1}}, "times": {"_count": 15, "but": {"_count": 1}, "": {"_count": 4}, "I": {"_count": 3}, "having": {"_count": 1}, "before": {"_count": 2}, "and": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "firstly": {"_count": 1}}, "treacle": {"_count": 6, "toffee": {"_count": 3}, "onto": {"_count": 1}, "tart": {"_count": 2}}, "slugs": {"_count": 1, "made": {"_count": 1}}, "gasped": {"_count": 1, "Ron": {"_count": 1}}, "magenta": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "robes": {"_count": 1}}, "expression": {"_count": 3, "": {"_count": 2}, "they": {"_count": 1}}, "breathtaking": {"_count": 1, "icecold": {"_count": 1}}, "polish": {"_count": 1, "into": {"_count": 1}}, "colds": {"_count": 1, "among": {"_count": 1}}, "bullets": {"_count": 1, "thundered": {"_count": 1}}, "garden": {"_count": 1, "sheds": {"_count": 1}}, "pain": {"_count": 36, "and": {"_count": 9}, "His": {"_count": 2}, "receding": {"_count": 1}, "Neville": {"_count": 1}, "": {"_count": 8}, "Ron": {"_count": 2}, "in": {"_count": 2}, "from": {"_count": 2}, "escape": {"_count": 1}, "to": {"_count": 1}, "attempted": {"_count": 1}, "thunderous": {"_count": 1}, "was": {"_count": 1}, "as": {"_count": 1}, "or": {"_count": 1}, "echoing": {"_count": 1}, "he": {"_count": 1}}, "skin": {"_count": 3, "and": {"_count": 1}, "seemed": {"_count": 1}, "There": {"_count": 1}}, "lamplike": {"_count": 1, "yellow": {"_count": 1}}, "deputy": {"_count": 1, "in": {"_count": 1}}, "muddy": {"_count": 5, "footprints": {"_count": 1}, "dolphinsized": {"_count": 1}, "water": {"_count": 1}, "backdrop": {"_count": 1}, "Polyjuice": {"_count": 1}}, "chains": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "step": {"_count": 1, "in": {"_count": 1}}, "Topsham": {"_count": 1, "writes": {"_count": 1}}, "attention": {"_count": 5, "at": {"_count": 1}, "": {"_count": 2}, "except": {"_count": 1}, "to": {"_count": 1}}, "Didsbury": {"_count": 1, "says": {"_count": 1}}, "fury": {"_count": 19, "": {"_count": 4}, "echoing": {"_count": 1}, "such": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}, "lifted": {"_count": 1}, "and": {"_count": 2}, "that": {"_count": 2}, "Dolores": {"_count": 1}, "Hagrid": {"_count": 1}, "exploded": {"_count": 1}, "relishing": {"_count": 1}, "vibrated": {"_count": 1}, "building": {"_count": 1}}, "Magical": {"_count": 96, "Creatures": {"_count": 58}, "Me": {"_count": 1}, "Catastrophes": {"_count": 1}, "Games": {"_count": 7}, "Transportation": {"_count": 2}, "Education": {"_count": 3}, "Mess": {"_count": 1}, "Cooperation": {"_count": 1}, "Law": {"_count": 13}, "Brethren": {"_count": 3}, "Transport": {"_count": 2}, "Accidents": {"_count": 2}, "Hieroglyphs": {"_count": 1}, "Maintenance": {"_count": 1}}, "telling": {"_count": 7, "Ron": {"_count": 2}, "them": {"_count": 1}, "Lupin": {"_count": 1}, "people": {"_count": 1}, "me": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Percy": {"_count": 8, "bellowing": {"_count": 1}, "it": {"_count": 1}, "mind": {"_count": 1}, "fussy": {"_count": 1}, "turning": {"_count": 1}, "Weasley": {"_count": 2}, "apart": {"_count": 1}}, "tangerine": {"_count": 1, "stars": {"_count": 1}}, "dancing": {"_count": 5, "skeletons": {"_count": 1}, "they": {"_count": 1}, "light": {"_count": 1}, "trolls": {"_count": 2}}, "pearlywhite": {"_count": 1, "translucent": {"_count": 1}}, "thirty": {"_count": 1, "musical": {"_count": 1}}, "gloomy": {"_count": 1, "nuns": {"_count": 1}}, "pale": {"_count": 8, "and": {"_count": 1}, "blancmange": {"_count": 1}, "pink": {"_count": 1}, "green": {"_count": 2}, "yellow": {"_count": 1}, "blue": {"_count": 1}, "imitations": {"_count": 1}}, "peanuts": {"_count": 1, "covered": {"_count": 1}}, "Nicks": {"_count": 2, "face": {"_count": 1}, "transparent": {"_count": 1}}, "astonishment": {"_count": 2, "so": {"_count": 1}, "broken": {"_count": 1}}, "Head": {"_count": 1, "Hockey": {"_count": 1}}, "black": {"_count": 18, "candles": {"_count": 1}, "smoke": {"_count": 2}, "legs": {"_count": 1}, "velvet": {"_count": 2}, "": {"_count": 2}, "satin": {"_count": 1}, "mud": {"_count": 1}, "liquid": {"_count": 2}, "hair": {"_count": 1}, "trees": {"_count": 1}, "dragon": {"_count": 1}, "stone": {"_count": 1}, "and": {"_count": 1}, "mountains": {"_count": 1}}, "distant": {"_count": 1, "thunder": {"_count": 1}}, "feet": {"_count": 9, "climbing": {"_count": 1}, "was": {"_count": 1}, "wearing": {"_count": 1}, "in": {"_count": 1}, "retreating": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "up": {"_count": 1}}, "wellfed": {"_count": 1, "people": {"_count": 1}}, "movement": {"_count": 14, "across": {"_count": 1}, "close": {"_count": 2}, "": {"_count": 2}, "could": {"_count": 1}, "from": {"_count": 1}, "in": {"_count": 1}, "this": {"_count": 1}, "though": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "because": {"_count": 1}, "of": {"_count": 1}}, "candlelight": {"_count": 3, "watching": {"_count": 1}, "illuminating": {"_count": 1}, "": {"_count": 1}}, "attacks": {"_count": 2, "the": {"_count": 1}, "on": {"_count": 1}}, "counting": {"_count": 1, "the": {"_count": 1}}, "murders": {"_count": 1, "he": {"_count": 1}}, "foreboding": {"_count": 6, "increased": {"_count": 2}, "Professor": {"_count": 1}, "": {"_count": 2}, "it": {"_count": 1}}, "suspicious": {"_count": 1, "circumstances": {"_count": 1}}, "ghosts": {"_count": 3, "theyll": {"_count": 1}, "whenever": {"_count": 1}, "": {"_count": 1}}, "certain": {"_count": 3, "privileges": {"_count": 1}, "herbs": {"_count": 1}, "acts": {"_count": 1}}, "bell": {"_count": 1, "said": {"_count": 1}}, "Muggleborn": {"_count": 1, "wizards": {"_count": 1}}, "European": {"_count": 1, "Wizards": {"_count": 1}}, "Secrets": {"_count": 51, "": {"_count": 18}, "said": {"_count": 4}, "so": {"_count": 1}, "unleash": {"_count": 1}, "Has": {"_count": 1}, "for": {"_count": 3}, "is": {"_count": 4}, "has": {"_count": 1}, "was": {"_count": 3}, "with": {"_count": 1}, "fifty": {"_count": 1}, "and": {"_count": 3}, "closed": {"_count": 1}, "out": {"_count": 1}, "itself": {"_count": 1}, "forsaken": {"_count": 1}, "might": {"_count": 1}, "to": {"_count": 2}, "which": {"_count": 1}, "reopened": {"_count": 1}, "of": {"_count": 1}}, "1289": {"_count": 1, "looked": {"_count": 1}}, "Sardinian": {"_count": 1, "sorcerers": {"_count": 1}}, "which": {"_count": 54, "you": {"_count": 3}, "the": {"_count": 3}, "had": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 7}, "he": {"_count": 6}, "Mrs": {"_count": 1}, "has": {"_count": 1}, "depicted": {"_count": 1}, "were": {"_count": 6}, "takes": {"_count": 1}, "Aunt": {"_count": 1}, "Uncle": {"_count": 1}, "every": {"_count": 1}, "can": {"_count": 1}, "even": {"_count": 1}, "stood": {"_count": 2}, "concern": {"_count": 1}, "sat": {"_count": 1}, "Rons": {"_count": 1}, "glowed": {"_count": 1}, "made": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 3}, "Ron": {"_count": 1}, "his": {"_count": 1}, "protruded": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 2}, "of": {"_count": 1}}, "monster": {"_count": 2, "which": {"_count": 1}, "Voldemort": {"_count": 1}}, "evidence": {"_count": 6, "that": {"_count": 2}, "even": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "for": {"_count": 1}}, "chipped": {"_count": 1, "sinks": {"_count": 1}}, "complete": {"_count": 4, "shock": {"_count": 1}, "disbelief": {"_count": 1}, "unreality": {"_count": 1}, "indifference": {"_count": 1}}, "permission": {"_count": 2, "from": {"_count": 1}, "to": {"_count": 1}}, "werewolf": {"_count": 2, "attacks": {"_count": 1}, "Remus": {"_count": 1}}, "intense": {"_count": 2, "pain": {"_count": 1}, "dislike": {"_count": 1}}, "ingredients": {"_count": 4, "": {"_count": 3}, "that": {"_count": 1}}, "whoever": {"_count": 2, "we": {"_count": 1}, "were": {"_count": 1}}, "facing": {"_count": 1, "a": {"_count": 1}}, "lying": {"_count": 1, "there": {"_count": 1}}, "day": {"_count": 5, "with": {"_count": 1}, "after": {"_count": 1}, "one": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "slime": {"_count": 1, "Malfoy": {"_count": 1}}, "noise": {"_count": 13, "greeted": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "around": {"_count": 1}, "within": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}, "shouting": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}}, "Adrian": {"_count": 1, "Pucey": {"_count": 1}}, "rollercoaster": {"_count": 1, "ride": {"_count": 1}}, "rain": {"_count": 11, "to": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 4}, "that": {"_count": 1}, "on": {"_count": 2}, "clattering": {"_count": 1}, "were": {"_count": 1}}, "twirl": {"_count": 1, "in": {"_count": 1}}, "whistling": {"_count": 1, "and": {"_count": 1}}, "teeth": {"_count": 1, "": {"_count": 1}}, "Gryffindors": {"_count": 11, "pressing": {"_count": 1}, "are": {"_count": 1}, "in": {"_count": 1}, "hourglass": {"_count": 1}, "six": {"_count": 1}, "that": {"_count": 1}, "or": {"_count": 2}, "sword": {"_count": 3}}, "legs": {"_count": 4, "around": {"_count": 1}, "and": {"_count": 2}, "that": {"_count": 1}}, "pajamas": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "questions": {"_count": 3, "well": {"_count": 1}, "about": {"_count": 1}, "to": {"_count": 1}}, "Slytherins": {"_count": 11, "in": {"_count": 1}, "one": {"_count": 1}, "heir": {"_count": 1}, "with": {"_count": 1}, "had": {"_count": 1}, "came": {"_count": 1}, "broke": {"_count": 1}, "who": {"_count": 1}, "seen": {"_count": 1}, "surviving": {"_count": 1}, "monster": {"_count": 1}}, "poor": {"_count": 3, "Dobby": {"_count": 1}, "Hagrids": {"_count": 1}, "Kreacher": {"_count": 1}}, "miserable": {"_count": 1, "ecstasy": {"_count": 1}}, "grapes": {"_count": 1, "next": {"_count": 1}}, "Colins": {"_count": 1, "rigid": {"_count": 1}}, "burnt": {"_count": 1, "plastic": {"_count": 1}}, "Hermione": {"_count": 30, "s": {"_count": 14}, "lying": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 2}, "clutching": {"_count": 1}, "Grangers": {"_count": 1}, "he": {"_count": 1}, "jumping": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 4}, "had": {"_count": 1}}, "knotgrass": {"_count": 1, "and": {"_count": 1}}, "monsters": {"_count": 1, "in": {"_count": 1}}, "December": {"_count": 2, "Professor": {"_count": 1}, "brought": {"_count": 1}}, "Freds": {"_count": 4, "Filibuster": {"_count": 1}, "and": {"_count": 1}, "pocket": {"_count": 1}, "jeans": {"_count": 1}}, "antidote": {"_count": 2, "and": {"_count": 1}, "here": {"_count": 1}}, "quickstep": {"_count": 1, "": {"_count": 1}}, "greenish": {"_count": 3, "smoke": {"_count": 3}}, "FinchFletchley": {"_count": 1, "up": {"_count": 1}}, "wiggling": {"_count": 1, "action": {"_count": 1}}, "vanishing": {"_count": 1, "flew": {"_count": 1}}, "deciding": {"_count": 1, "to": {"_count": 1}}, "catching": {"_count": 3, "something": {"_count": 1}, "the": {"_count": 1}, "fire": {"_count": 1}}, "set": {"_count": 1, "it": {"_count": 1}}, "Salazar": {"_count": 5, "Slytherin": {"_count": 5}}, "high": {"_count": 3, "bookshelves": {"_count": 1}, "jinks": {"_count": 1}, "anticipation": {"_count": 1}}, "runin": {"_count": 1, "with": {"_count": 1}}, "Ernies": {"_count": 1, "face": {"_count": 1}}, "blood": {"_count": 25, "youve": {"_count": 1}, "and": {"_count": 1}, "oozing": {"_count": 1}, "flying": {"_count": 1}, "fell": {"_count": 1}, "": {"_count": 5}, "traitors": {"_count": 1}, "running": {"_count": 1}, "from": {"_count": 2}, "he": {"_count": 1}, "grew": {"_count": 1}, "the": {"_count": 2}, "was": {"_count": 1}, "seemed": {"_count": 1}, "coming": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}, "as": {"_count": 1}, "appear": {"_count": 1}}, "drumroll": {"_count": 2, "against": {"_count": 1}, "in": {"_count": 1}}, "whom": {"_count": 59, "still": {"_count": 1}, "were": {"_count": 23}, "had": {"_count": 6}, "seemed": {"_count": 5}, "was": {"_count": 2}, "appeared": {"_count": 1}, "decided": {"_count": 1}, "looked": {"_count": 5}, "gave": {"_count": 1}, "bowed": {"_count": 1}, "ignored": {"_count": 1}, "do": {"_count": 1}, "judging": {"_count": 1}, "sent": {"_count": 1}, "you": {"_count": 1}, "shouted": {"_count": 1}, "wanted": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "did": {"_count": 1}, "moved": {"_count": 1}, "I": {"_count": 1}, "clutched": {"_count": 1}}, "dread": {"_count": 7, "for": {"_count": 1}, "as": {"_count": 1}, "returned": {"_count": 1}, "He": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}}, "smoke": {"_count": 12, "": {"_count": 4}, "and": {"_count": 1}, "rather": {"_count": 1}, "rising": {"_count": 1}, "everything": {"_count": 1}, "vanished": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 1}, "without": {"_count": 1}}, "ash": {"_count": 3, "on": {"_count": 1}, "treated": {"_count": 1}, "and": {"_count": 1}}, "Fawkes": {"_count": 1, "catching": {"_count": 1}}, "interesting": {"_count": 2, "facts": {"_count": 1}, "powers": {"_count": 1}}, "rule": {"_count": 1, "breaking": {"_count": 1}}, "eggnog": {"_count": 2, "he": {"_count": 1}, "from": {"_count": 1}}, "luck": {"_count": 5, "Malfoy": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}, "that": {"_count": 1}}, "Christmas": {"_count": 9, "pudding": {"_count": 1}, "in": {"_count": 1}, "dinner": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "presents": {"_count": 1}, "roses": {"_count": 2}, "trees": {"_count": 1}}, "Crabbes": {"_count": 3, "and": {"_count": 2}, "comic": {"_count": 1}}, "trifle": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "triumph": {"_count": 7, "on": {"_count": 3}, "and": {"_count": 2}, "both": {"_count": 1}, "": {"_count": 1}}, "Crabbe": {"_count": 5, "s": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 2}, "or": {"_count": 1}}, "Moste": {"_count": 1, "Potente": {"_count": 1}}, "yellow": {"_count": 3, "": {"_count": 1}, "liquid": {"_count": 1}, "newspaper": {"_count": 1}}, "Millicent": {"_count": 2, "Bulstrode": {"_count": 2}}, "wiry": {"_count": 1, "bristles": {"_count": 1}}, "dull": {"_count": 2, "deepset": {"_count": 1}, "color": {"_count": 1}}, "stiff": {"_count": 1, "": {"_count": 1}}, "bare": {"_count": 2, "damp": {"_count": 1}, "ankle": {"_count": 1}}, "empty": {"_count": 2, "chairs": {"_count": 1}, "leather": {"_count": 1}}, "Colin": {"_count": 1, "\u2018Potter": {"_count": 1}}, "thems": {"_count": 3, "killed": {"_count": 1}, "caved": {"_count": 1}, "got": {"_count": 1}}, "concern": {"_count": 4, "": {"_count": 1}, "for": {"_count": 1}, "eyes": {"_count": 1}, "on": {"_count": 1}}, "rumor": {"_count": 1, "about": {"_count": 1}}, "medicine": {"_count": 2, "": {"_count": 2}}, "Moaning": {"_count": 3, "Myrtles": {"_count": 3}}, "yet": {"_count": 2, "more": {"_count": 1}, "another": {"_count": 1}}, "writing": {"_count": 3, "on": {"_count": 1}, "horrible": {"_count": 1}, "to": {"_count": 1}}, "February": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "creature": {"_count": 2, "lives": {"_count": 1}, "their": {"_count": 1}}, "why": {"_count": 2, "it": {"_count": 1}, "nothing": {"_count": 1}}, "Hufflepuff": {"_count": 7, "didnt": {"_count": 1}, "emerging": {"_count": 1}, "both": {"_count": 1}, "House": {"_count": 1}, "wobbling": {"_count": 1}, "with": {"_count": 1}, "set": {"_count": 1}}, "SkeleGro": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "arranging": {"_count": 1, "this": {"_count": 1}}, "first": {"_count": 7, "years": {"_count": 7}}, "Draco": {"_count": 8, "Malfoy": {"_count": 7}, "Severus": {"_count": 1}}, "Charms": {"_count": 5, "belching": {"_count": 1}, "homework": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "notes": {"_count": 1}}, "terrible": {"_count": 3, "things": {"_count": 1}, "stuff": {"_count": 1}, "beauty": {"_count": 1}}, "June": {"_count": 4, "": {"_count": 1}, "one": {"_count": 1}, "at": {"_count": 1}, "continued": {"_count": 1}}, "color": {"_count": 10, "and": {"_count": 3}, "": {"_count": 3}, "in": {"_count": 2}, "when": {"_count": 1}, "mounted": {"_count": 1}}, "fifty": {"_count": 3, "years": {"_count": 1}, "feet": {"_count": 1}, "for": {"_count": 1}}, "missing": {"_count": 2, "anything": {"_count": 1}, "teeth": {"_count": 1}}, "penetrating": {"_count": 1, "stare": {"_count": 1}}, "Riddle": {"_count": 4, "at": {"_count": 2}, "ever": {"_count": 1}, "in": {"_count": 1}}, "razorsharp": {"_count": 1, "pincers": {"_count": 1}}, "leaping": {"_count": 1, "toadstools": {"_count": 1}}, "Ancient": {"_count": 3, "Runes": {"_count": 2}, "Rune": {"_count": 1}}, "Riddles": {"_count": 3, "diary": {"_count": 2}, "mouth": {"_count": 1}}, "tactics": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "Houses": {"_count": 10, "will": {"_count": 1}, "should": {"_count": 1}, "were": {"_count": 1}, "office": {"_count": 1}, "tried": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "moved": {"_count": 1}, "Slughorn": {"_count": 1}, "out": {"_count": 1}}, "sneaking": {"_count": 2, "out": {"_count": 1}, "through": {"_count": 1}}, "boiling": {"_count": 2, "water": {"_count": 2}}, "clothes": {"_count": 5, "a": {"_count": 1}, "your": {"_count": 1}, "so": {"_count": 1}, "putting": {"_count": 1}, "still": {"_count": 1}}, "view": {"_count": 5, "said": {"_count": 2}, "": {"_count": 2}, "of": {"_count": 1}}, "pressure": {"_count": 2, "": {"_count": 1}, "trying": {"_count": 1}}, "Suspension": {"_count": 1, "youll": {"_count": 1}}, "yours": {"_count": 12, "will": {"_count": 1}, "": {"_count": 6}, "Potter": {"_count": 1}, "Neville": {"_count": 1}, "to": {"_count": 1}, "Ronald": {"_count": 1}, "I": {"_count": 1}}, "withered": {"_count": 1, "stalks": {"_count": 1}}, "buoyant": {"_count": 1, "": {"_count": 1}}, "someone": {"_count": 9, "explaining": {"_count": 1}, "though": {"_count": 1}, "stumbling": {"_count": 1}, "having": {"_count": 1}, "who": {"_count": 1}, "from": {"_count": 1}, "called": {"_count": 1}, "elses": {"_count": 1}, "if": {"_count": 1}}, "Exploding": {"_count": 4, "Snap": {"_count": 4}}, "general": {"_count": 4, "direction": {"_count": 1}, "advice": {"_count": 1}, "agreement": {"_count": 1}, "debris": {"_count": 1}}, "thorns": {"_count": 1, "and": {"_count": 1}}, "dense": {"_count": 1, "branches": {"_count": 1}}, "shining": {"_count": 2, "black": {"_count": 1}, "copper": {"_count": 1}}, "carthorses": {"_count": 1, "eight": {"_count": 1}}, "silent": {"_count": 2, "scream": {"_count": 1}, "people": {"_count": 1}}, "respect": {"_count": 4, "for": {"_count": 3}, "to": {"_count": 1}}, "clicking": {"_count": 2, "and": {"_count": 2}}, "talking": {"_count": 4, "": {"_count": 1}, "to": {"_count": 2}, "facetoface": {"_count": 1}}, "sky": {"_count": 4, "": {"_count": 1}, "visible": {"_count": 2}, "was": {"_count": 1}}, "sending": {"_count": 4, "us": {"_count": 1}, "sparks": {"_count": 1}, "regular": {"_count": 1}, "his": {"_count": 1}}, "mutinous": {"_count": 1, "muttering": {"_count": 1}}, "falling": {"_count": 5, "silent": {"_count": 1}, "water": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}, "down": {"_count": 1}}, "revealing": {"_count": 2, "forbidden": {"_count": 1}, "impostors": {"_count": 1}}, "Hufflepuffs": {"_count": 3, "to": {"_count": 1}, "cup": {"_count": 2}}, "Serpents": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 6, "is": {"_count": 1}, "ago": {"_count": 2}, "": {"_count": 2}, "died": {"_count": 1}}, "killing": {"_count": 9, "are": {"_count": 1}, "him": {"_count": 3}, "the": {"_count": 1}, "our": {"_count": 1}, "people": {"_count": 1}, "one": {"_count": 1}, "you": {"_count": 1}}, "Halloween": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "wardrobe": {"_count": 1, "to": {"_count": 1}}, "activity": {"_count": 2, "going": {"_count": 1}, "as": {"_count": 1}}, "work": {"_count": 7, "Harry": {"_count": 1}, "to": {"_count": 2}, "they": {"_count": 1}, "": {"_count": 1}, "though": {"_count": 1}, "our": {"_count": 1}}, "seized": {"_count": 1, "up": {"_count": 1}}, "utter": {"_count": 4, "terror": {"_count": 1}, "horror": {"_count": 1}, "incomprehension": {"_count": 1}, "rubbish": {"_count": 1}}, "snake": {"_count": 1, "skin": {"_count": 1}}, "tunnel": {"_count": 1, "ceiling": {"_count": 1}}, "pillars": {"_count": 1, "a": {"_count": 1}}, "Ginny": {"_count": 10, "": {"_count": 4}, "anyway": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}}, "Lord": {"_count": 16, "Voldemort": {"_count": 9}, "Voldemorts": {"_count": 7}}, "serpents": {"_count": 1, "": {"_count": 1}}, "claws": {"_count": 2, "beside": {"_count": 1}, "deep": {"_count": 1}}, "focus": {"_count": 7, "": {"_count": 5}, "his": {"_count": 1}, "and": {"_count": 1}}, "borrowed": {"_count": 1, "time": {"_count": 1}}, "going": {"_count": 9, "black": {"_count": 1}, "to": {"_count": 4}, "up": {"_count": 1}, "down": {"_count": 1}, "there": {"_count": 1}, "said": {"_count": 1}}, "tears": {"_count": 11, "was": {"_count": 1}, "": {"_count": 9}, "again": {"_count": 1}}, "wings": {"_count": 7, "Fawkes": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "like": {"_count": 1}, "from": {"_count": 1}, "above": {"_count": 1}}, "slowly": {"_count": 1, "shifting": {"_count": 1}}, "Fawkess": {"_count": 1, "strangely": {"_count": 1}}, "there": {"_count": 5, "alive": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}}, "Albania": {"_count": 2, "": {"_count": 2}}, "abject": {"_count": 1, "terror": {"_count": 1}}, "blazing": {"_count": 1, "sunshine": {"_count": 1}}, "year": {"_count": 1, "": {"_count": 1}}, "holiday": {"_count": 2, "work": {"_count": 1}, "preferring": {"_count": 1}}, "mingled": {"_count": 15, "fury": {"_count": 3}, "drink": {"_count": 1}, "dread": {"_count": 1}, "defiance": {"_count": 1}, "curiosity": {"_count": 1}, "panic": {"_count": 1}, "disgust": {"_count": 1}, "disappointment": {"_count": 1}, "fear": {"_count": 1}, "resentment": {"_count": 1}, "exasperation": {"_count": 1}, "surprise": {"_count": 1}, "relief": {"_count": 1}}, "thanks": {"_count": 3, "and": {"_count": 1}, "whilst": {"_count": 1}, "looking": {"_count": 1}}, "meeting": {"_count": 3, "you": {"_count": 1}, "there": {"_count": 1}, "your": {"_count": 1}}, "very": {"_count": 12, "difficult": {"_count": 1}, "thick": {"_count": 1}, "strong": {"_count": 1}, "overgrown": {"_count": 1}, "hot": {"_count": 2}, "bushy": {"_count": 1}, "long": {"_count": 1}, "tight": {"_count": 1}, "cool": {"_count": 1}, "early": {"_count": 1}, "very": {"_count": 1}}, "Fleetwoods": {"_count": 1, "HighFinish": {"_count": 1}}, "gleaming": {"_count": 3, "silver": {"_count": 1}, "yellow": {"_count": 1}, "warmth": {"_count": 1}}, "DoItYourself": {"_count": 2, "Broomcare": {"_count": 2}}, "Monsters": {"_count": 6, "before": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}, "which": {"_count": 1}, "on": {"_count": 1}}, "Hogsmeade": {"_count": 14, "on": {"_count": 1}, "first": {"_count": 1}, "every": {"_count": 1}, "residents": {"_count": 1}, "station": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 3}, "past": {"_count": 1}, "was": {"_count": 1}, "up": {"_count": 1}, "heard": {"_count": 1}, "and": {"_count": 1}}, "mustache": {"_count": 1, "": {"_count": 1}}, "Black": {"_count": 9, "should": {"_count": 1}, "than": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 4}, "his": {"_count": 1}}, "Agriculture": {"_count": 1, "and": {"_count": 1}}, "dog": {"_count": 1, "biscuits": {"_count": 1}}, "entertainment": {"_count": 1, "": {"_count": 1}}, "horrified": {"_count": 3, "trance": {"_count": 2}, "delight": {"_count": 1}}, "glass": {"_count": 14, "at": {"_count": 1}, "flew": {"_count": 1}, "on": {"_count": 1}, "carried": {"_count": 1}, "and": {"_count": 2}, "when": {"_count": 1}, "jars": {"_count": 1}, "balls": {"_count": 1}, "upon": {"_count": 1}, "thundered": {"_count": 1}, "out": {"_count": 1}, "ashtray": {"_count": 1}, "he": {"_count": 1}}, "trying": {"_count": 11, "to": {"_count": 9}, "": {"_count": 1}, "from": {"_count": 1}}, "gravel": {"_count": 1, "outside": {"_count": 1}}, "Vernon": {"_count": 1, "and": {"_count": 1}}, "extreme": {"_count": 2, "force": {"_count": 1}, "age": {"_count": 1}}, "life": {"_count": 13, "at": {"_count": 2}, "": {"_count": 2}, "within": {"_count": 1}, "in": {"_count": 1}, "if": {"_count": 1}, "instead": {"_count": 1}, "apart": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "against": {"_count": 1}, "from": {"_count": 1}}, "wine": {"_count": 14, "": {"_count": 6}, "shoot": {"_count": 1}, "lowered": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "down": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}}, "breeding": {"_count": 1, "she": {"_count": 1}}, "Marges": {"_count": 2, "stay": {"_count": 1}, "feet": {"_count": 1}}, "brandy": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}}, "pie": {"_count": 1, "": {"_count": 1}}, "dragging": {"_count": 2, "his": {"_count": 1}, "Ron": {"_count": 1}}, "contacting": {"_count": 1, "them": {"_count": 1}}, "spellbooks": {"_count": 5, "and": {"_count": 1}, "set": {"_count": 1}, "": {"_count": 1}, "lay": {"_count": 1}, "potion": {"_count": 1}}, "wheels": {"_count": 1, "and": {"_count": 1}}, "unease": {"_count": 4, "Harry": {"_count": 1}, "back": {"_count": 1}, "until": {"_count": 1}, "that": {"_count": 1}}, "lampposts": {"_count": 1, "mailboxes": {"_count": 1}}, "chuckle": {"_count": 1, "at": {"_count": 1}}, "Blacks": {"_count": 4, "true": {"_count": 1}, "gaunt": {"_count": 1}, "head": {"_count": 1}, "story": {"_count": 1}}, "twelve": {"_count": 3, "years": {"_count": 1}, "innocent": {"_count": 1}, "Grimmauld": {"_count": 1}}, "Sirius": {"_count": 28, "Black": {"_count": 9}, "was": {"_count": 1}, "straight": {"_count": 1}, "cornered": {"_count": 1}, "and": {"_count": 1}, "Kreacher": {"_count": 1}, "being": {"_count": 2}, "": {"_count": 3}, "alone": {"_count": 1}, "when": {"_count": 1}, "into": {"_count": 1}, "anywhere": {"_count": 1}, "none": {"_count": 1}, "trapped": {"_count": 1}, "again": {"_count": 1}, "so": {"_count": 1}, "pits": {"_count": 1}}, "witnesses": {"_count": 2, "an": {"_count": 1}, "that": {"_count": 1}}, "YouKnowOo": {"_count": 1, "he": {"_count": 1}}, "You": {"_count": 3, "KnowOo": {"_count": 1}, "Know": {"_count": 1}, "stay": {"_count": 1}}, "hours": {"_count": 9, "go": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 1}, "they": {"_count": 1}, "sleep": {"_count": 1}, "I": {"_count": 1}, "ago": {"_count": 1}}, "Miss": {"_count": 2, "Marjorie": {"_count": 1}, "Mudblood": {"_count": 1}}, "underage": {"_count": 4, "magic": {"_count": 2}, "family": {"_count": 1}, "wizards": {"_count": 1}}, "raw": {"_count": 3, "liver": {"_count": 1}, "beef": {"_count": 1}, "meat": {"_count": 1}}, "self": {"_count": 2, "control": {"_count": 1}, "anymore": {"_count": 1}}, "solid": {"_count": 2, "gold": {"_count": 1}, "evidence": {"_count": 1}}, "150": {"_count": 1, "miles": {"_count": 1}}, "potions": {"_count": 1, "ingredients": {"_count": 1}}, "paving": {"_count": 1, "slabs": {"_count": 1}}, "enormous": {"_count": 7, "relief": {"_count": 1}, "purple": {"_count": 1}, "excitement": {"_count": 1}, "smugness": {"_count": 1}, "lungs": {"_count": 1}, "filthy": {"_count": 1}, "wings": {"_count": 1}}, "Invisibility": {"_count": 6, "cost": {"_count": 1}, "Spell": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "Miss": {"_count": 1}}, "term": {"_count": 21, "so": {"_count": 1}, "": {"_count": 9}, "for": {"_count": 1}, "approached": {"_count": 1}, "feast": {"_count": 1}, "became": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "seemed": {"_count": 1}, "and": {"_count": 1}, "unhampered": {"_count": 1}, "his": {"_count": 1}, "well": {"_count": 1}}, "wall": {"_count": 6, "was": {"_count": 1}, "three": {"_count": 1}, "then": {"_count": 1}, "opposite": {"_count": 1}, "": {"_count": 1}, "beyond": {"_count": 1}}, "doubleended": {"_count": 1, "newts": {"_count": 1}}, "ravens": {"_count": 1, "a": {"_count": 1}}, "sleek": {"_count": 1, "black": {"_count": 1}}, "skipping": {"_count": 1, "game": {"_count": 1}}, "soap": {"_count": 1, "landed": {"_count": 1}}, "opinion": {"_count": 1, "thought": {"_count": 1}}, "cars": {"_count": 5, "said": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "including": {"_count": 1}, "on": {"_count": 1}}, "angry": {"_count": 7, "voices": {"_count": 1}, "wolverines": {"_count": 1}, "veela": {"_count": 1}, "bees": {"_count": 1}, "tears": {"_count": 1}, "muttering": {"_count": 1}, "centaurs": {"_count": 1}}, "Azkaban": {"_count": 19, "he": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 6}, "who": {"_count": 2}, "just": {"_count": 1}, "if": {"_count": 1}, "anyway": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}, "would": {"_count": 1}, "fortress": {"_count": 1}, "in": {"_count": 1}, "were": {"_count": 1}}, "rat": {"_count": 3, "tonic": {"_count": 1}, "he": {"_count": 1}, "droppings": {"_count": 1}}, "visiting": {"_count": 2, "Hogsmeade": {"_count": 1}, "the": {"_count": 1}}, "Magnolia": {"_count": 2, "Crescent": {"_count": 2}}, "dripping": {"_count": 1, "tea": {"_count": 1}}, "Penelope": {"_count": 1, "Clearwater": {"_count": 1}}, "leaving": {"_count": 7, "they": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "which": {"_count": 1}, "him": {"_count": 1}}, "trunks": {"_count": 4, "spitting": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "pavement": {"_count": 1, "toward": {"_count": 1}}, "emerald": {"_count": 2, "velvet": {"_count": 1}, "and": {"_count": 1}}, "stronger": {"_count": 1, "stuff": {"_count": 1}}, "neatly": {"_count": 1, "knotted": {"_count": 1}}, "whistle": {"_count": 1, "was": {"_count": 1}}, "strawberry": {"_count": 1, "mousse": {"_count": 1}}, "Historical": {"_count": 1, "Sorcery": {"_count": 1}}, "Crookshankss": {"_count": 1, "basket": {"_count": 1}}, "Cauldron": {"_count": 3, "Cakes": {"_count": 3}}, "flames": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "rigid": {"_count": 1, "and": {"_count": 1}}, "glided": {"_count": 1, "away": {"_count": 1}}, "flu": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "shame": {"_count": 5, "": {"_count": 1}, "in": {"_count": 1}, "spread": {"_count": 1}, "on": {"_count": 1}, "or": {"_count": 1}}, "mold": {"_count": 2, "and": {"_count": 1}, "that": {"_count": 1}}, "magnificent": {"_count": 1, "wrought": {"_count": 1}}, "cold": {"_count": 12, "sickness": {"_count": 1}, "swept": {"_count": 1}, "water": {"_count": 1}, "and": {"_count": 1}, "night": {"_count": 2}, "fury": {"_count": 1}, "salt": {"_count": 1}, "tea": {"_count": 2}, "salty": {"_count": 1}, "undulated": {"_count": 1}}, "sarcasm": {"_count": 1, "in": {"_count": 1}}, "long": {"_count": 6, "silver": {"_count": 1}, "silvery": {"_count": 1}, "black": {"_count": 1}, "motheaten": {"_count": 1}, "corridors": {"_count": 1}, "gray": {"_count": 1}}, "importance": {"_count": 1, "said": {"_count": 1}}, "freeze": {"_count": 1, "your": {"_count": 1}}, "anxiety": {"_count": 3, "in": {"_count": 1}, "that": {"_count": 1}, "nagging": {"_count": 1}}, "North": {"_count": 3, "Tower": {"_count": 3}}, "grass": {"_count": 8, "hanging": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "Barty": {"_count": 1}, "across": {"_count": 1}, "in": {"_count": 1}, "or": {"_count": 1}, "at": {"_count": 1}}, "stout": {"_count": 1, "heart": {"_count": 1}}, "women": {"_count": 1, "in": {"_count": 1}}, "noble": {"_count": 3, "heart": {"_count": 1}, "selfsacrifice": {"_count": 1}, "stock": {"_count": 1}}, "perfume": {"_count": 1, "as": {"_count": 1}}, "tattered": {"_count": 1, "playing": {"_count": 1}}, "teacups": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "loud": {"_count": 4, "bangs": {"_count": 2}, "sixth": {"_count": 1}, "voices": {"_count": 1}}, "Divination": {"_count": 7, "this": {"_count": 1}, "requires": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 2}, "teacher": {"_count": 1}, "to": {"_count": 1}}, "October": {"_count": 7, "": {"_count": 5}, "however": {"_count": 1}, "they": {"_count": 1}}, "Unfogging": {"_count": 4, "the": {"_count": 4}}, "breaking": {"_count": 9, "china": {"_count": 5}, "the": {"_count": 1}, "glass": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}}, "soggy": {"_count": 1, "brown": {"_count": 1}}, "cross": {"_count": 1, "": {"_count": 1}}, "death": {"_count": 18, "": {"_count": 6}, "some": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 2}, "he": {"_count": 1}, "was": {"_count": 1}, "through": {"_count": 1}, "it": {"_count": 1}, "something": {"_count": 1}, "which": {"_count": 1}, "Grindelwald": {"_count": 1}, "because": {"_count": 1}}, "Death": {"_count": 22, "Omens": {"_count": 1}, "Eaters": {"_count": 12}, "Eater": {"_count": 2}, "": {"_count": 5}, "said": {"_count": 1}, "Harry": {"_count": 1}}, "greeting": {"_count": 4, "a": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}}, "stew": {"_count": 2, "toward": {"_count": 1}, "an": {"_count": 1}}, "fright": {"_count": 3, "": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}}, "guesswork": {"_count": 2, "if": {"_count": 1}, "and": {"_count": 1}}, "meat": {"_count": 1, "and": {"_count": 1}}, "paddock": {"_count": 1, "": {"_count": 1}}, "rope": {"_count": 3, "": {"_count": 1}, "tying": {"_count": 1}, "around": {"_count": 1}}, "horses": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "see": {"_count": 1, "what": {"_count": 1}}, "Buckbeaks": {"_count": 3, "wing": {"_count": 1}, "rope": {"_count": 1}, "safety": {"_count": 1}}, "steely": {"_count": 1, "talons": {"_count": 1}}, "whatever": {"_count": 8, "was": {"_count": 1}, "it": {"_count": 2}, "happened": {"_count": 1}, "Fred": {"_count": 1}, "had": {"_count": 1}, "Xenophilius": {"_count": 1}, "schemes": {"_count": 1}}, "grimace": {"_count": 1, "": {"_count": 1}}, "malicious": {"_count": 1, "laughter": {"_count": 1}}, "loathing": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "mock": {"_count": 2, "sorrow": {"_count": 1}, "concern": {"_count": 1}}, "influence": {"_count": 3, "you": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}}, "leech": {"_count": 1, "juice": {"_count": 1}}, "hushed": {"_count": 1, "silence": {"_count": 1}}, "Trevor": {"_count": 2, "and": {"_count": 1}, "received": {"_count": 1}}, "pixies": {"_count": 1, "to": {"_count": 1}}, "chewing": {"_count": 2, "gum": {"_count": 1}, "": {"_count": 1}}, "mind": {"_count": 6, "": {"_count": 4}, "I": {"_count": 1}, "than": {"_count": 1}}, "Lupin": {"_count": 1, "who": {"_count": 1}}, "crystal": {"_count": 3, "balls": {"_count": 1}, "and": {"_count": 1}, "flew": {"_count": 1}}, "ten": {"_count": 7, "": {"_count": 3}, "from": {"_count": 1}, "feet": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}}, "castles": {"_count": 1, "and": {"_count": 1}}, "deserted": {"_count": 1, "battlefields": {"_count": 1}}, "desperation": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "furious": {"_count": 1, "pride": {"_count": 1}}, "determination": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "finally": {"_count": 2, "winning": {"_count": 1}, "burst": {"_count": 1}}, "Stink": {"_count": 1, "Pellets": {"_count": 1}}, "copying": {"_count": 1, "pursed": {"_count": 1}}, "names": {"_count": 3, "that": {"_count": 2}, "before": {"_count": 1}}, "chattering": {"_count": 3, "first": {"_count": 2}, "girls": {"_count": 1}}, "fighting": {"_count": 4, "the": {"_count": 1}, "us": {"_count": 1}, "their": {"_count": 1}, "behind": {"_count": 1}}, "potion": {"_count": 9, "": {"_count": 3}, "every": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}}, "brilliantly": {"_count": 1, "colored": {"_count": 1}}, "tiny": {"_count": 4, "black": {"_count": 2}, "wings": {"_count": 1}, "little": {"_count": 1}}, "fudge": {"_count": 1, "they": {"_count": 1}}, "candlefilled": {"_count": 1, "pumpkins": {"_count": 1}}, "fluttering": {"_count": 1, "live": {"_count": 1}}, "formation": {"_count": 1, "gliding": {"_count": 1}}, "canvas": {"_count": 3, "littered": {"_count": 1}, "in": {"_count": 1}, "rope": {"_count": 1}}, "wreckage": {"_count": 1, "or": {"_count": 1}}, "Argyllshire": {"_count": 1, "on": {"_count": 1}}, "Sir": {"_count": 4, "Cadogan": {"_count": 2}, "Cadogans": {"_count": 1}, "Nicholas": {"_count": 1}}, "Madam": {"_count": 8, "Hooch": {"_count": 1}, "Hoochs": {"_count": 1}, "Marchbanks": {"_count": 1}, "Pinces": {"_count": 1}, "Malkin": {"_count": 1}, "Pince": {"_count": 1}, "Pomfreys": {"_count": 1}, "Pomfrey": {"_count": 1}}, "organization": {"_count": 1, "": {"_count": 1}}, "agreement": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "deadly": {"_count": 1, "calm": {"_count": 1}}, "informing": {"_count": 1, "Professor": {"_count": 1}}, "turn": {"_count": 1, "Miss": {"_count": 1}}, "mice": {"_count": 4, "around": {"_count": 1}, "and": {"_count": 1}, "dont": {"_count": 1}, "": {"_count": 1}}, "cloaks": {"_count": 3, "and": {"_count": 1}, "swung": {"_count": 1}, "": {"_count": 1}}, "Wood": {"_count": 1, "through": {"_count": 1}}, "fresh": {"_count": 6, "determination": {"_count": 1}, "flobberworms": {"_count": 1}, "and": {"_count": 1}, "clean": {"_count": 1}, "salty": {"_count": 1}, "water": {"_count": 1}}, "slowed": {"_count": 1, "down": {"_count": 1}}, "splintered": {"_count": 2, "wood": {"_count": 1}, "silver": {"_count": 1}}, "visitors": {"_count": 3, "all": {"_count": 1}, "said": {"_count": 1}, "who": {"_count": 1}}, "earwiggy": {"_count": 1, "flowers": {"_count": 1}}, "fruit": {"_count": 2, "": {"_count": 2}}, "clammy": {"_count": 1, "rotted": {"_count": 1}}, "both": {"_count": 4, "arms": {"_count": 1}, "ends": {"_count": 1}, "nostrils": {"_count": 1}, "": {"_count": 1}}, "complaints": {"_count": 1, "about": {"_count": 1}}, "parchmenti": {"_count": 1, "Professor": {"_count": 1}}, "indignation": {"_count": 3, "on": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "wisps": {"_count": 1, "of": {"_count": 1}}, "fixing": {"_count": 1, "it": {"_count": 1}}, "wintery": {"_count": 1, "sunlight": {"_count": 1}}, "antidementor": {"_count": 1, "lessons": {"_count": 1}}, "November": {"_count": 3, "Harrys": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "Which": {"_count": 2, "Broomstick": {"_count": 2}}, "festive": {"_count": 1, "cheer": {"_count": 1}}, "bother": {"_count": 2, "with": {"_count": 1}, "at": {"_count": 1}}, "Aids": {"_count": 1, "to": {"_count": 1}}, "passages": {"_count": 1, "he": {"_count": 1}}, "Honeydukes": {"_count": 11, "": {"_count": 2}, "to": {"_count": 2}, "he": {"_count": 1}, "best": {"_count": 1}, "sweets": {"_count": 1}, "Sweetshop": {"_count": 1}, "chocolate": {"_count": 1}, "chocolates": {"_count": 1}, "a": {"_count": 1}}, "lawbreakers": {"_count": 1, "said": {"_count": 1}}, "inches": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "wooden": {"_count": 1, "crates": {"_count": 1}}, "Jelly": {"_count": 1, "Slugs": {"_count": 1}}, "nougat": {"_count": 1, "shimmering": {"_count": 1}}, "coconut": {"_count": 1, "ice": {"_count": 1}}, "Fizzing": {"_count": 2, "Whizbees": {"_count": 2}}, "sixth": {"_count": 1, "years": {"_count": 1}}, "bloodflavored": {"_count": 1, "lollipops": {"_count": 1}}, "Cockroach": {"_count": 3, "Clusters": {"_count": 2}, "Cluster": {"_count": 1}}, "crisp": {"_count": 1, "snow": {"_count": 1}}, "enchanted": {"_count": 3, "candles": {"_count": 1}, "fireworks": {"_count": 1}, "water": {"_count": 1}}, "woman": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "rowdy": {"_count": 2, "warlocks": {"_count": 1}, "boys": {"_count": 1}}, "snowflakes": {"_count": 1, "shortly": {"_count": 1}}, "chair": {"_count": 2, "legs": {"_count": 2}}, "mulled": {"_count": 2, "mead": {"_count": 2}}, "Fudges": {"_count": 2, "thick": {"_count": 1}, "hands": {"_count": 1}}, "troublemakers": {"_count": 1, "I": {"_count": 1}}, "low": {"_count": 3, "rumble": {"_count": 1}, "throbbing": {"_count": 1}, "hills": {"_count": 1}}, "useful": {"_count": 2, "spies": {"_count": 1}, "information": {"_count": 1}}, "information": {"_count": 11, "to": {"_count": 1}, "with": {"_count": 1}, "outside": {"_count": 1}, "": {"_count": 4}, "about": {"_count": 1}, "he": {"_count": 1}, "on": {"_count": 1}, "of": {"_count": 1}}, "Pettigrew": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 1}, "facing": {"_count": 1}}, "bloodstained": {"_count": 1, "robes": {"_count": 1}}, "five": {"_count": 5, "noses": {"_count": 1}, "hundred": {"_count": 1}, "N": {"_count": 1}, "": {"_count": 1}, "has": {"_count": 1}}, "endofterm": {"_count": 1, "high": {"_count": 1}}, "film": {"_count": 2, "Sirius": {"_count": 1}, "Ha": {"_count": 1}}, "hers": {"_count": 6, "betrayed": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "Marietta": {"_count": 1}}, "ours": {"_count": 4, "": {"_count": 1}, "that": {"_count": 1}, "my": {"_count": 1}, "said": {"_count": 1}}, "subject": {"_count": 6, "its": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 3}, "if": {"_count": 1}}, "Mr": {"_count": 17, "Lucius": {"_count": 1}, "Weasley": {"_count": 3}, "Roberts": {"_count": 2}, "Diggorys": {"_count": 1}, "Crouch": {"_count": 4}, "Weasleys": {"_count": 3}, "Bodes": {"_count": 1}, "Bode": {"_count": 1}, "Potter": {"_count": 1}}, "Dangerous": {"_count": 8, "Creatures": {"_count": 8}}, "hippogriffbaiting": {"_count": 1, "said": {"_count": 1}}, "help": {"_count": 5, "with": {"_count": 2}, "Thats": {"_count": 1}, "if": {"_count": 1}, "wanting": {"_count": 1}}, "dusty": {"_count": 4, "volumes": {"_count": 1}, "sunlight": {"_count": 1}, "orbs": {"_count": 1}, "floor": {"_count": 1}}, "marauding": {"_count": 1, "beasts": {"_count": 1}}, "cooking": {"_count": 3, "pervaded": {"_count": 1}, "sherry": {"_count": 2}}, "parcels": {"_count": 2, "had": {"_count": 1}, "onto": {"_count": 1}}, "nut": {"_count": 1, "brittle": {"_count": 1}}, "maroon": {"_count": 2, "socks": {"_count": 2}}, "Galleons": {"_count": 9, "on": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 2}, "goes": {"_count": 1}, "ostentatiously": {"_count": 1}, "not": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "tinsel": {"_count": 1, "tied": {"_count": 1}}, "fur": {"_count": 1, "seemed": {"_count": 1}}, "fate": {"_count": 1, "": {"_count": 1}}, "soft": {"_count": 5, "scream": {"_count": 1}, "dappled": {"_count": 1}, "golden": {"_count": 2}, "ashes": {"_count": 1}}, "mad": {"_count": 3, "axemen": {"_count": 1}, "laughter": {"_count": 2}}, "monks": {"_count": 1, "several": {"_count": 1}}, "mead": {"_count": 8, "": {"_count": 2}, "was": {"_count": 1}, "Black": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}, "each": {"_count": 1}, "which": {"_count": 1}}, "HighFinish": {"_count": 1, "Polish": {"_count": 1}}, "state": {"_count": 1, "would": {"_count": 1}}, "antijinx": {"_count": 1, "tests": {"_count": 1}}, "salamanders": {"_count": 1, "for": {"_count": 1}}, "class": {"_count": 6, "": {"_count": 5}, "schedules": {"_count": 1}}, "maddening": {"_count": 1, "superiority": {"_count": 1}}, "anti": {"_count": 2, "dementor": {"_count": 1}, "werewolf": {"_count": 1}}, "positive": {"_count": 2, "force": {"_count": 1}, "adoration": {"_count": 1}}, "silvery": {"_count": 5, "gas": {"_count": 1}, "light": {"_count": 2}, "blonde": {"_count": 1}, "hair": {"_count": 1}}, "piercing": {"_count": 1, "cold": {"_count": 1}}, "highpitched": {"_count": 1, "laughter": {"_count": 1}}, "happy": {"_count": 2, "enough": {"_count": 1}, "couples": {"_count": 1}}, "team": {"_count": 2, "practices": {"_count": 1}, "spirit": {"_count": 1}}, "extensive": {"_count": 1, "notes": {"_count": 1}}, "energy": {"_count": 1, "as": {"_count": 1}}, "mouth": {"_count": 1, "under": {"_count": 1}}, "butterbeer": {"_count": 19, "": {"_count": 5}, "pumpkin": {"_count": 1}, "under": {"_count": 1}, "and": {"_count": 3}, "rolled": {"_count": 1}, "fell": {"_count": 1}, "onto": {"_count": 1}, "George": {"_count": 1}, "caps": {"_count": 1}, "clutched": {"_count": 1}, "in": {"_count": 1}, "corks": {"_count": 1}, "choked": {"_count": 1}}, "recovery": {"_count": 1, "": {"_count": 1}}, "moaning": {"_count": 1, "": {"_count": 1}}, "fervent": {"_count": 2, "admiration": {"_count": 1}, "admirers": {"_count": 1}}, "ecstasy": {"_count": 1, "on": {"_count": 1}}, "eyes": {"_count": 3, "gleaming": {"_count": 1}, "following": {"_count": 1}, "upon": {"_count": 1}}, "guard": {"_count": 1, "of": {"_count": 1}}, "honor": {"_count": 7, "": {"_count": 2}, "around": {"_count": 1}, "flanked": {"_count": 1}, "on": {"_count": 1}, "singing": {"_count": 1}, "not": {"_count": 1}}, "excited": {"_count": 6, "muttering": {"_count": 1}, "interest": {"_count": 1}, "voices": {"_count": 1}, "girls": {"_count": 1}, "chatter": {"_count": 1}, "laughter": {"_count": 1}}, "special": {"_count": 1, "features": {"_count": 1}}, "choice": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "background": {"_count": 2, "information": {"_count": 1}, "for": {"_count": 1}}, "disappointment": {"_count": 2, "from": {"_count": 1}, "in": {"_count": 1}}, "Cho": {"_count": 4, "she": {"_count": 1}, "the": {"_count": 1}, "through": {"_count": 1}, "drew": {"_count": 1}}, "British": {"_count": 1, "Muggles": {"_count": 1}}, "utmost": {"_count": 3, "terror": {"_count": 1}, "contempt": {"_count": 1}, "horror": {"_count": 1}}, "terrified": {"_count": 3, "squeaks": {"_count": 1}, "disobedience": {"_count": 1}, "Muggleborns": {"_count": 1}}, "tighter": {"_count": 1, "security": {"_count": 1}}, "surly": {"_count": 1, "security": {"_count": 1}}, "detail": {"_count": 1, "": {"_count": 1}}, "filthy": {"_count": 4, "hair": {"_count": 1}, "matted": {"_count": 1}, "Quidditch": {"_count": 1}, "clothing": {"_count": 1}}, "secondyear": {"_count": 1, "girls": {"_count": 1}}, "Nevilles": {"_count": 6, "cornflakes": {"_count": 1}, "usual": {"_count": 1}, "robes": {"_count": 1}, "parents": {"_count": 1}, "floundering": {"_count": 1}, "interview": {"_count": 1}}, "dead": {"_count": 4, "ferrets": {"_count": 1}, "puffskeins": {"_count": 1}, "rats": {"_count": 1}, "cockroaches": {"_count": 1}}, "Bath": {"_count": 1, "buns": {"_count": 1}}, "turning": {"_count": 3, "up": {"_count": 1}, "into": {"_count": 1}, "right": {"_count": 1}}, "relief": {"_count": 9, "that": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 3}, "broke": {"_count": 1}, "at": {"_count": 1}, "swept": {"_count": 1}, "Hermione": {"_count": 1}}, "pirouette": {"_count": 1, "in": {"_count": 1}}, "suppressed": {"_count": 2, "triumph": {"_count": 2}}, "talent": {"_count": 1, "on": {"_count": 1}}, "malice": {"_count": 1, "": {"_count": 1}}, "sour": {"_count": 1, "milk": {"_count": 1}}, "glorious": {"_count": 1, "heroism": {"_count": 1}}, "Zonkos": {"_count": 1, "tricks": {"_count": 1}}, "Messrs": {"_count": 1, "": {"_count": 1}}, "expertise": {"_count": 1, "Lupin": {"_count": 1}}, "doddery": {"_count": 1, "old": {"_count": 1}}, "pearly": {"_count": 2, "white": {"_count": 2}}, "fog": {"_count": 1, "tonight": {"_count": 1}}, "Hippogriff": {"_count": 2, "Psychology": {"_count": 1}, "Brutality": {"_count": 1}}, "punishment": {"_count": 1, "": {"_count": 1}}, "Buckbeak": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "action": {"_count": 7, "": {"_count": 3}, "he": {"_count": 1}, "made": {"_count": 1}, "and": {"_count": 1}, "come": {"_count": 1}}, "breakfast": {"_count": 2, "urging": {"_count": 1}, "right": {"_count": 1}}, "suns": {"_count": 1, "a": {"_count": 1}}, "boos": {"_count": 1, "from": {"_count": 1}}, "Flints": {"_count": 1, "head": {"_count": 1}}, "Lees": {"_count": 1, "commentary": {"_count": 1}}, "Katie": {"_count": 2, "and": {"_count": 1}, "Bell": {"_count": 1}}, "seizing": {"_count": 1, "the": {"_count": 1}}, "sudden": {"_count": 2, "concentration": {"_count": 1}, "violent": {"_count": 1}}, "Bole": {"_count": 1, "and": {"_count": 1}}, "cheers": {"_count": 1, "from": {"_count": 1}}, "revenge": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "holding": {"_count": 4, "onto": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}}, "crimson": {"_count": 1, "supporters": {"_count": 1}}, "Gobstones": {"_count": 2, "or": {"_count": 1}, "and": {"_count": 1}}, "lazing": {"_count": 1, "around": {"_count": 1}}, "Numerology": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "bedtime": {"_count": 1, "reading": {"_count": 1}}, "nerves": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "hysterical": {"_count": 2, "laughter": {"_count": 1}, "sarcasm": {"_count": 1}}, "opportunity": {"_count": 2, "to": {"_count": 1}, "as": {"_count": 1}}, "checking": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "vindictive": {"_count": 3, "pleasure": {"_count": 2}, "fury": {"_count": 1}}, "Fortescue": {"_count": 1, "s": {"_count": 1}}, "obstacle": {"_count": 1, "course": {"_count": 1}}, "potholes": {"_count": 1, "full": {"_count": 1}}, "Red": {"_count": 1, "Caps": {"_count": 1}}, "marsh": {"_count": 1, "while": {"_count": 1}}, "lastminute": {"_count": 1, "studying": {"_count": 1}}, "seizure": {"_count": 1, "": {"_count": 1}}, "longawaited": {"_count": 1, "freedom": {"_count": 1}}, "men": {"_count": 4, "was": {"_count": 1}, "who": {"_count": 1}, "on": {"_count": 1}, "reached": {"_count": 1}}, "indistinct": {"_count": 1, "male": {"_count": 1}}, "Scabberss": {"_count": 1, "squeaks": {"_count": 1}}, "was": {"_count": 1, "Ron": {"_count": 1}}, "dim": {"_count": 2, "light": {"_count": 2}}, "furniture": {"_count": 1, "was": {"_count": 1}}, "using": {"_count": 6, "it": {"_count": 1}, "the": {"_count": 3}, "magic": {"_count": 2}}, "hands": {"_count": 5, "grabbed": {"_count": 1}, "and": {"_count": 1}, "seized": {"_count": 1}, "": {"_count": 2}}, "standing": {"_count": 5, "upright": {"_count": 1}, "on": {"_count": 1}, "there": {"_count": 1}, "staring": {"_count": 1}, "in": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "bodies": {"_count": 1, "and": {"_count": 1}}, "front": {"_count": 2, "claws": {"_count": 1}, "steps": {"_count": 1}}, "urgency": {"_count": 1, "in": {"_count": 1}}, "Peter": {"_count": 2, "Pettigrew": {"_count": 1}, "they": {"_count": 1}}, "stories": {"_count": 1, "": {"_count": 1}}, "animal": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "skins": {"_count": 1}}, "Jamess": {"_count": 2, "talent": {"_count": 1}, "face": {"_count": 1}}, "Snapes": {"_count": 14, "wand": {"_count": 2}, "smirk": {"_count": 1}, "thin": {"_count": 1}, "dungeon": {"_count": 2}, "essay": {"_count": 1}, "office": {"_count": 1}, "desk": {"_count": 1}, "thoughts": {"_count": 2}, "": {"_count": 1}, "regime": {"_count": 1}, "last": {"_count": 1}}, "rats": {"_count": 3, "hows": {"_count": 1}, "onto": {"_count": 1}, "as": {"_count": 1}}, "bluewhite": {"_count": 1, "light": {"_count": 1}}, "weight": {"_count": 2, "in": {"_count": 1}, "couldnt": {"_count": 1}}, "sweat": {"_count": 2, "breaking": {"_count": 1}, "and": {"_count": 1}}, "Pettigrews": {"_count": 3, "face": {"_count": 1}, "reach": {"_count": 1}, "clutching": {"_count": 1}}, "driving": {"_count": 1, "them": {"_count": 1}}, "allies": {"_count": 1, "": {"_count": 1}}, "vermin": {"_count": 1, "is": {"_count": 1}}, "filth": {"_count": 4, "would": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "shouted": {"_count": 1}}, "rock": {"_count": 7, "protruding": {"_count": 1}, "such": {"_count": 1}, "beside": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "gigantic": {"_count": 1}, "beneath": {"_count": 1}}, "savaging": {"_count": 1, "branches": {"_count": 1}}, "strength": {"_count": 2, "he": {"_count": 2}}, "themselves": {"_count": 8, "": {"_count": 2}, "behind": {"_count": 1}, "to": {"_count": 1}, "upon": {"_count": 1}, "but": {"_count": 1}, "hanging": {"_count": 1}, "removed": {"_count": 1}}, "license": {"_count": 1, "by": {"_count": 1}}, "Cornelius": {"_count": 5, "Fudge": {"_count": 4}, "Fudges": {"_count": 1}}, "murder": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "sixteen": {"_count": 3, "he": {"_count": 1}, "years": {"_count": 2}}, "explanations": {"_count": 2, "": {"_count": 2}}, "proof": {"_count": 1, "to": {"_count": 1}}, "eyewitnesses": {"_count": 1, "swore": {"_count": 1}}, "events": {"_count": 6, "is": {"_count": 1}, "you": {"_count": 1}, "changed": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "without": {"_count": 1}}, "overturning": {"_count": 1, "Siriuss": {"_count": 1}}, "colors": {"_count": 2, "and": {"_count": 2}}, "golden": {"_count": 19, "sunlight": {"_count": 1}, "steps": {"_count": 1}, "light": {"_count": 4}, "statues": {"_count": 1}, "gates": {"_count": 1}, "cherubs": {"_count": 1}, "rubble": {"_count": 1}, "liquid": {"_count": 1}, "potion": {"_count": 2}, "birds": {"_count": 1}, "fire": {"_count": 1}, "balloons": {"_count": 1}, "matchsticks": {"_count": 1}, "streetlights": {"_count": 1}, "chairs": {"_count": 1}}, "Macnair": {"_count": 1, "": {"_count": 1}}, "execution": {"_count": 1, "Hagrid": {"_count": 1}}, "amusement": {"_count": 1, "in": {"_count": 1}}, "song": {"_count": 2, "": {"_count": 1}, "rose": {"_count": 1}}, "alarm": {"_count": 1, "and": {"_count": 1}}, "anybody": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "dementors": {"_count": 12, "across": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 2}, "to": {"_count": 1}, "into": {"_count": 1}, "Harry": {"_count": 1}, "around": {"_count": 1}, "then": {"_count": 1}, "was": {"_count": 1}}, "another": {"_count": 7, "Hogsmeade": {"_count": 1}, "year": {"_count": 1}, "Gryffindor": {"_count": 1}, "one": {"_count": 1}, "lift": {"_count": 1}, "Potterwatch": {"_count": 1}, "set": {"_count": 1}}, "lives": {"_count": 1, "last": {"_count": 1}}, "became": {"_count": 1, "normal": {"_count": 1}}, "real": {"_count": 2, "predictions": {"_count": 1}, "desperation": {"_count": 1}}, "hearing": {"_count": 10, "it": {"_count": 1}, "a": {"_count": 1}, "about": {"_count": 1}, "something": {"_count": 1}, "disapproving": {"_count": 1}, "everything": {"_count": 1}, "that": {"_count": 2}, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "smuggling": {"_count": 1, "the": {"_count": 1}}, "Siriuss": {"_count": 19, "escape": {"_count": 1}, "answer": {"_count": 1}, "letter": {"_count": 1}, "words": {"_count": 1}, "meal": {"_count": 1}, "face": {"_count": 1}, "mother": {"_count": 4}, "knife": {"_count": 2}, "whereabouts": {"_count": 1}, "personal": {"_count": 1}, "living": {"_count": 1}, "old": {"_count": 1}, "bike": {"_count": 1}, "enchanted": {"_count": 1}, "mirror": {"_count": 1}}, "proposals": {"_count": 1, "to": {"_count": 1}}, "returning": {"_count": 3, "to": {"_count": 3}}, "O": {"_count": 3, "": {"_count": 3}}, "dignified": {"_count": 1, "disapproval": {"_count": 1}}, "harms": {"_count": 3, "way": {"_count": 3}}, "finding": {"_count": 9, "me": {"_count": 2}, "himself": {"_count": 1}, "everything": {"_count": 1}, "my": {"_count": 1}, "one": {"_count": 1}, "out": {"_count": 2}, "and": {"_count": 1}}, "presents": {"_count": 3, "from": {"_count": 1}, "at": {"_count": 1}, "waiting": {"_count": 1}}, "platform": {"_count": 1, "nine": {"_count": 1}}, "Little": {"_count": 6, "Hangleton": {"_count": 5}, "Whinging": {"_count": 1}}, "natural": {"_count": 1, "causes": {"_count": 1}}, "crowds": {"_count": 1, "and": {"_count": 1}}, "Frank": {"_count": 3, "didnt": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "doctors": {"_count": 1, "had": {"_count": 1}}, "unmistakable": {"_count": 1, "bewilderment": {"_count": 1}}, "curiosity": {"_count": 3, "for": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}}, "suspicion": {"_count": 1, "Frank": {"_count": 1}}, "inhabitants": {"_count": 1, "started": {"_count": 1}}, "throwing": {"_count": 3, "stones": {"_count": 1}, "Fanged": {"_count": 1}, "you": {"_count": 1}}, "refilling": {"_count": 1, "his": {"_count": 1}}, "decay": {"_count": 1, "ears": {"_count": 1}}, "footsteps": {"_count": 5, "or": {"_count": 1}, "coming": {"_count": 1}, "as": {"_count": 1}, "mounting": {"_count": 1}, "outside": {"_count": 1}}, "icy": {"_count": 4, "wind": {"_count": 2}, "lake": {"_count": 1}, "water": {"_count": 1}}, "Franks": {"_count": 1, "neck": {"_count": 1}}, "earwax": {"_count": 1, "he": {"_count": 1}}, "unusual": {"_count": 2, "activity": {"_count": 1}, "things": {"_count": 1}}, "only": {"_count": 3, "two": {"_count": 1}, "a": {"_count": 2}}, "menace": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "nursing": {"_count": 1, "me": {"_count": 1}}, "abandoning": {"_count": 1, "the": {"_count": 1}}, "sullenness": {"_count": 1, "in": {"_count": 1}}, "brilliance": {"_count": 2, "I": {"_count": 1}, "came": {"_count": 1}}, "remorse": {"_count": 4, "with": {"_count": 1}, "it": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "fit": {"_count": 2, "or": {"_count": 1}, "together": {"_count": 1}}, "firelight": {"_count": 1, "he": {"_count": 1}}, "escape": {"_count": 1, "was": {"_count": 1}}, "fourteen": {"_count": 1, "looked": {"_count": 1}}, "Saturday": {"_count": 2, "morning": {"_count": 1}, "and": {"_count": 1}}, "July": {"_count": 6, "": {"_count": 2}, "nearly": {"_count": 1}, "that": {"_count": 1}, "too": {"_count": 1}, "You": {"_count": 1}}, "curses": {"_count": 3, "as": {"_count": 1}, "against": {"_count": 1}, "and": {"_count": 1}}, "palm": {"_count": 1, "trees": {"_count": 1}}, "crumpled": {"_count": 1, "pieces": {"_count": 1}}, "computer": {"_count": 1, "thing": {"_count": 1}}, "unsweetened": {"_count": 1, "grapefruit": {"_count": 1}}, "bullying": {"_count": 1, "in": {"_count": 1}}, "sugarfree": {"_count": 1, "snacks": {"_count": 1}}, "disapproval": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "ripping": {"_count": 1, "paper": {"_count": 1}}, "children": {"_count": 1, "with": {"_count": 1}}, "annoyance": {"_count": 5, "": {"_count": 2}, "or": {"_count": 1}, "as": {"_count": 1}, "pass": {"_count": 1}}, "International": {"_count": 9, "Magical": {"_count": 9}}, "birthday": {"_count": 2, "cake": {"_count": 2}}, "shabbiness": {"_count": 1, "": {"_count": 1}}, "mistake": {"_count": 1, "tell": {"_count": 1}}, "rubble": {"_count": 2, "and": {"_count": 2}}, "brick": {"_count": 2, "this": {"_count": 1}, "houses": {"_count": 1}}, "batteries": {"_count": 1, "": {"_count": 1}}, "emeraldgreen": {"_count": 1, "flames": {"_count": 1}}, "bossing": {"_count": 1, "everyone": {"_count": 1}}, "leather": {"_count": 1, "but": {"_count": 1}}, "behavior": {"_count": 4, "seriously": {"_count": 1}, "we": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}}, "order": {"_count": 7, "forms": {"_count": 1}, "said": {"_count": 1}, "too": {"_count": 1}, "Seamus": {"_count": 1}, "am": {"_count": 1}, "": {"_count": 2}}, "fifteen": {"_count": 2, "": {"_count": 2}}, "almost": {"_count": 1, "three": {"_count": 1}}, "international": {"_count": 1, "law": {"_count": 1}}, "potatoes": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "cutlery": {"_count": 3, "from": {"_count": 1}, "on": {"_count": 2}}, "increasingly": {"_count": 1, "stale": {"_count": 1}}, "Department": {"_count": 3, "": {"_count": 1}, "first": {"_count": 1}, "said": {"_count": 1}}, "elderflower": {"_count": 1, "wine": {"_count": 1}}, "thickbottomed": {"_count": 1, "cauldrons": {"_count": 1}}, "treasure": {"_count": 1, "said": {"_count": 1}}, "potato": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Seeker": {"_count": 1, "on": {"_count": 1}}, "fertilizer": {"_count": 2, "from": {"_count": 1}, "the": {"_count": 1}}, "jeans": {"_count": 2, "slightly": {"_count": 1}, "a": {"_count": 1}}, "age": {"_count": 17, "and": {"_count": 2}, "that": {"_count": 1}, "though": {"_count": 1}, "none": {"_count": 1}, "": {"_count": 3}, "Theyre": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "or": {"_count": 2}, "next": {"_count": 1}, "any": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 1}}, "paperwork": {"_count": 1, "I": {"_count": 1}}, "adult": {"_count": 1, "wizards": {"_count": 1}}, "where": {"_count": 8, "he": {"_count": 4}, "each": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "they": {"_count": 1}}, "Georges": {"_count": 4, "pocket": {"_count": 1}, "jacket": {"_count": 1}, "hands": {"_count": 1}, "ears": {"_count": 1}}, "unlikely": {"_count": 1, "places": {"_count": 1}}, "Stoatshead": {"_count": 1, "Hill": {"_count": 1}}, "Ottery": {"_count": 2, "St": {"_count": 2}}, "objects": {"_count": 9, "are": {"_count": 1}, "forbidden": {"_count": 1}, "books": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 2}, "surrounding": {"_count": 1}, "hidden": {"_count": 1}, "beside": {"_count": 1}}, "around": {"_count": 2, "seventeen": {"_count": 1}, "fifteen": {"_count": 1}}, "said": {"_count": 6, "Mr": {"_count": 1}, "Fred": {"_count": 1}, "Snape": {"_count": 1}, "Harry": {"_count": 2}, "Malfoy": {"_count": 1}}, "misty": {"_count": 1, "moor": {"_count": 1}}, "tired": {"_count": 1, "and": {"_count": 1}}, "used": {"_count": 1, "Portkeys": {"_count": 1}}, "tents": {"_count": 6, "rising": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 2}, "they": {"_count": 1}, "upheld": {"_count": 1}}, "days": {"_count": 7, "ago": {"_count": 2}, "of": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "later": {"_count": 1}}, "hubcaps": {"_count": 1, "ten": {"_count": 1}}, "pre": {"_count": 1, "bookings": {"_count": 1}}, "foreigners": {"_count": 1, "": {"_count": 1}}, "rally": {"_count": 1, "said": {"_count": 1}}, "dreamy": {"_count": 1, "unconcern": {"_count": 1}}, "striped": {"_count": 2, "silk": {"_count": 1}, "pajamas": {"_count": 1}}, "shabby": {"_count": 1, "twoman": {"_count": 1}}, "style": {"_count": 1, "as": {"_count": 1}}, "cats": {"_count": 4, "": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}, "as": {"_count": 1}}, "saucepans": {"_count": 1, "and": {"_count": 1}}, "middleaged": {"_count": 2, "American": {"_count": 1}, "witches": {"_count": 1}}, "conversation": {"_count": 8, "in": {"_count": 2}, "no": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}, "was": {"_count": 1}, "at": {"_count": 1}, "grew": {"_count": 1}}, "shamrocks": {"_count": 1, "so": {"_count": 1}}, "pinstriped": {"_count": 2, "trousers": {"_count": 2}}, "teenagers": {"_count": 2, "whom": {"_count": 1}, "in": {"_count": 1}}, "so": {"_count": 4, "many": {"_count": 3}, "much": {"_count": 1}}, "thoroughfare": {"_count": 1, "to": {"_count": 1}}, "Mysteries": {"_count": 48, "top": {"_count": 1}, "": {"_count": 15}, "said": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 4}, "sir": {"_count": 1}, "Potter": {"_count": 2}, "its": {"_count": 1}, "employee": {"_count": 1}, "almost": {"_count": 1}, "corridor": {"_count": 3}, "past": {"_count": 1}, "he": {"_count": 2}, "that": {"_count": 1}, "again": {"_count": 1}, "full": {"_count": 1}, "so": {"_count": 1}, "has": {"_count": 1}, "right": {"_count": 1}, "floor": {"_count": 1}, "Cornelius": {"_count": 1}, "tonight": {"_count": 1}, "for": {"_count": 1}, "before": {"_count": 1}, "interrupted": {"_count": 1}, "Dont": {"_count": 1}, "reveals": {"_count": 1}}, "wild": {"_count": 1, "excitement": {"_count": 1}}, "haggardlooking": {"_count": 1, "Ministry": {"_count": 1}}, "stunned": {"_count": 2, "disapproval": {"_count": 1}, "disbelief": {"_count": 1}}, "pokerstiff": {"_count": 1, "disapproval": {"_count": 1}}, "Bertha": {"_count": 2, "Jorkins": {"_count": 2}}, "direction": {"_count": 2, "": {"_count": 1}, "suited": {"_count": 1}}, "impatience": {"_count": 5, "in": {"_count": 2}, "that": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "tweezers": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "halfbow": {"_count": 1, "that": {"_count": 1}}, "Proscribed": {"_count": 1, "Charmable": {"_count": 1}}, "midges": {"_count": 1, "": {"_count": 1}}, "waiting": {"_count": 3, "wizards": {"_count": 1}, "would": {"_count": 1}, "up": {"_count": 1}}, "pretence": {"_count": 1, "disappeared": {"_count": 1}}, "blatant": {"_count": 1, "magic": {"_count": 1}}, "extraordinary": {"_count": 2, "merchandise": {"_count": 1}, "power": {"_count": 1}}, "Firebolts": {"_count": 1, "that": {"_count": 1}}, "famous": {"_count": 2, "players": {"_count": 1}, "Healers": {"_count": 1}}, "Viktor": {"_count": 4, "Krum": {"_count": 4}}, "weird": {"_count": 2, "knobs": {"_count": 1}, "magnet": {"_count": 1}}, "singing": {"_count": 1, "": {"_count": 1}}, "feverish": {"_count": 1, "excitement": {"_count": 1}}, "shouting": {"_count": 3, "witches": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "side": {"_count": 1, "plates": {"_count": 1}}, "English": {"_count": 3, "": {"_count": 2}, "an": {"_count": 1}}, "flags": {"_count": 1, "waved": {"_count": 1}}, "prey": {"_count": 3, "": {"_count": 2}, "upon": {"_count": 1}}, "Mullet": {"_count": 1, "and": {"_count": 1}}, "roars": {"_count": 1, "and": {"_count": 1}}, "elbows": {"_count": 1, "": {"_count": 1}}, "Mostafa": {"_count": 1, "and": {"_count": 1}}, "ferocity": {"_count": 1, "beyond": {"_count": 1}}, "mediwizards": {"_count": 1, "blasted": {"_count": 1}}, "Omniocular": {"_count": 1, "lenses": {"_count": 1}}, "Connollys": {"_count": 1, "clutching": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "cocoa": {"_count": 1, "together": {"_count": 1}}, "Krums": {"_count": 3, "more": {"_count": 1}, "head": {"_count": 1}, "wand": {"_count": 1}}, "flying": {"_count": 8, "like": {"_count": 1}, "": {"_count": 3}, "carpets": {"_count": 1}, "heels": {"_count": 1}, "than": {"_count": 1}, "silver": {"_count": 1}}, "bushes": {"_count": 4, "nearby": {"_count": 1}, "": {"_count": 3}}, "Dobby": {"_count": 5, "Every": {"_count": 1}, "in": {"_count": 1}, "s": {"_count": 1}, "no": {"_count": 1}, "you": {"_count": 1}}, "young": {"_count": 4, "wizards": {"_count": 3}, "witches": {"_count": 1}}, "riot": {"_count": 1, "going": {"_count": 1}}, "dry": {"_count": 1, "grass": {"_count": 1}}, "Krum": {"_count": 3, "out": {"_count": 1}, "slouching": {"_count": 1}, "": {"_count": 1}}, "Magics": {"_count": 4, "out": {"_count": 1}, "troubles": {"_count": 1}, "in": {"_count": 1}, "still": {"_count": 1}}, "darkness": {"_count": 6, "Harrys": {"_count": 1}, "once": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "so": {"_count": 1}}, "popping": {"_count": 1, "noises": {"_count": 1}}, "twenty": {"_count": 3, "wizards": {"_count": 1}, "feet": {"_count": 1}, "golden": {"_count": 1}}, "flashes": {"_count": 1, "and": {"_count": 1}}, "fiery": {"_count": 4, "red": {"_count": 1}, "sparks": {"_count": 1}, "gold": {"_count": 1}, "beasts": {"_count": 1}}, "Wand": {"_count": 1, "Use": {"_count": 1}}, "discovering": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "what": {"_count": 1}}, "heights": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "frightened": {"_count": 1, "looking": {"_count": 1}}, "lies": {"_count": 1, "about": {"_count": 1}}, "NonWizard": {"_count": 1, "Part": {"_count": 1}}, "reference": {"_count": 1, "books": {"_count": 1}}, "One": {"_count": 2, "Thousand": {"_count": 2}}, "restarting": {"_count": 1, "Weasleys": {"_count": 1}}, "headlines": {"_count": 1, "in": {"_count": 1}}, "Pigwidgeons": {"_count": 1, "cage": {"_count": 1}}, "socks": {"_count": 4, "next": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}}, "belladonna": {"_count": 1, "": {"_count": 1}}, "disgust": {"_count": 4, "behind": {"_count": 1}, "having": {"_count": 1}, "were": {"_count": 1}, "on": {"_count": 1}}, "freshly": {"_count": 5, "laundered": {"_count": 3}, "turned": {"_count": 1}, "dug": {"_count": 1}}, "MadEye": {"_count": 4, "Moody": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}}, "Dumbledores": {"_count": 24, "isnt": {"_count": 1}, "": {"_count": 1}, "desk": {"_count": 3}, "name": {"_count": 1}, "help": {"_count": 1}, "lot": {"_count": 1}, "has": {"_count": 1}, "eccentric": {"_count": 1}, "face": {"_count": 1}, "as": {"_count": 1}, "pocket": {"_count": 1}, "life": {"_count": 1}, "death": {"_count": 1}, "long": {"_count": 1}, "achievements": {"_count": 2}, "own": {"_count": 1}, "obituary": {"_count": 1}, "collection": {"_count": 1}, "corpse": {"_count": 1}, "Army": {"_count": 2}}, "enemies": {"_count": 1, "though": {"_count": 1}}, "Filibusters": {"_count": 1, "Fabulous": {"_count": 1}}, "wish": {"_count": 1, "I": {"_count": 1}}, "riffraff": {"_count": 1, "": {"_count": 1}}, "emphasis": {"_count": 2, "on": {"_count": 2}}, "rivalry": {"_count": 1, "between": {"_count": 1}}, "wearing": {"_count": 2, "these": {"_count": 1}, "upsidedown": {"_count": 1}}, "glory": {"_count": 3, "to": {"_count": 1}, "Hufflepuff": {"_count": 1}, "Head": {"_count": 1}}, "carriages": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "winged": {"_count": 1, "boars": {"_count": 1}}, "second": {"_count": 3, "years": {"_count": 2}, "sight": {"_count": 1}}, "circumstances": {"_count": 1, "Harry": {"_count": 1}}, "cushions": {"_count": 3, "beside": {"_count": 1}, "on": {"_count": 1}, "they": {"_count": 1}}, "renown": {"_count": 1, "Whose": {"_count": 1}}, "admission": {"_count": 1, "And": {"_count": 1}}, "mashed": {"_count": 2, "potato": {"_count": 1}, "potatoes": {"_count": 1}}, "cleaning": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "ghostly": {"_count": 2, "skin": {"_count": 1}, "Harrys": {"_count": 1}}, "Yorkshire": {"_count": 1, "pudding": {"_count": 1}}, "grizzled": {"_count": 4, "dark": {"_count": 1}, "gray": {"_count": 2}, "hair": {"_count": 1}}, "weathered": {"_count": 1, "wood": {"_count": 1}}, "carved": {"_count": 3, "wooden": {"_count": 1}, "pumpkins": {"_count": 1}, "humans": {"_count": 1}}, "hosting": {"_count": 1, "a": {"_count": 1}}, "wizardry": {"_count": 1, "Hogwarts": {"_count": 1}}, "establishing": {"_count": 1, "ties": {"_count": 1}}, "Beauxbatons": {"_count": 4, "and": {"_count": 1}, "we": {"_count": 1}, "boys": {"_count": 1}, "Academy": {"_count": 1}}, "outrage": {"_count": 7, "at": {"_count": 1}, "": {"_count": 4}, "seemed": {"_count": 1}, "but": {"_count": 1}}, "drops": {"_count": 2, "of": {"_count": 2}}, "Aging": {"_count": 1, "Potion": {"_count": 1}}, "risk": {"_count": 1, "": {"_count": 1}}, "dazzling": {"_count": 5, "new": {"_count": 1}, "gold": {"_count": 1}, "orange": {"_count": 1}, "sun": {"_count": 2}}, "pewter": {"_count": 1, "gray": {"_count": 1}}, "aging": {"_count": 1, "themselves": {"_count": 1}}, "jam": {"_count": 2, "to": {"_count": 2}}, "brown": {"_count": 4, "and": {"_count": 1}, "rice": {"_count": 1}, "hair": {"_count": 1}, "as": {"_count": 1}}, "liquid": {"_count": 1, "": {"_count": 1}}, "petrol": {"_count": 2, "": {"_count": 1}, "gushed": {"_count": 1}}, "acne": {"_count": 1, "bubotuber": {"_count": 1}}, "pimples": {"_count": 2, "": {"_count": 1}, "still": {"_count": 1}}, "rotting": {"_count": 2, "fish": {"_count": 1}, "rubbish": {"_count": 1}}, "occupied": {"_count": 1, "chintz": {"_count": 1}}, "beads": {"_count": 2, "chains": {"_count": 1}, "she": {"_count": 1}}, "fortunetelling": {"_count": 1, "was": {"_count": 1}}, "Saturn": {"_count": 1, "said": {"_count": 1}}, "resentment": {"_count": 1, "in": {"_count": 1}}, "power": {"_count": 12, "in": {"_count": 1}, "": {"_count": 2}, "thirteen": {"_count": 1}, "radiated": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "around": {"_count": 1}, "now": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}}, "birth": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "timetables": {"_count": 1, "and": {"_count": 1}}, "angles": {"_count": 1, "": {"_count": 1}}, "Arnold": {"_count": 1, "Weasley": {"_count": 1}}, "highly": {"_count": 1, "aggressive": {"_count": 1}}, "Mad": {"_count": 1, "Eye": {"_count": 1}}, "House": {"_count": 12, "": {"_count": 2}, "said": {"_count": 1}, "of": {"_count": 1}, "during": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "shouted": {"_count": 1}, "converged": {"_count": 1}, "an": {"_count": 1}}, "Housell": {"_count": 1, "be": {"_count": 1}}, "meaning": {"_count": 3, "": {"_count": 2}, "behind": {"_count": 1}}, "vindictiveness": {"_count": 1, "over": {"_count": 1}}, "nervous": {"_count": 4, "collapse": {"_count": 1}, "giggling": {"_count": 1}, "pleasure": {"_count": 1}, "excitement": {"_count": 1}}, "horned": {"_count": 1, "toads": {"_count": 1}}, "displaying": {"_count": 1, "overt": {"_count": 1}}, "assent": {"_count": 4, "": {"_count": 2}, "throughout": {"_count": 1}, "and": {"_count": 1}}, "character": {"_count": 3, "and": {"_count": 3}}, "blinding": {"_count": 2, "green": {"_count": 1}, "realization": {"_count": 1}}, "speeding": {"_count": 2, "death": {"_count": 1}, "up": {"_count": 1}}, "spectacular": {"_count": 1, "show": {"_count": 1}}, "Moodys": {"_count": 11, "gnarled": {"_count": 1}, "lesson": {"_count": 1}, "punishment": {"_count": 1}, "mismatched": {"_count": 1}, "office": {"_count": 2}, "book": {"_count": 1}, "head": {"_count": 2}, "wooden": {"_count": 1}, "own": {"_count": 1}}, "pride": {"_count": 4, "in": {"_count": 3}, "and": {"_count": 1}}, "calculations": {"_count": 1, "": {"_count": 1}}, "scrawled": {"_count": 1, "notes": {"_count": 1}}, "Mars": {"_count": 3, "and": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}}, "misery": {"_count": 5, "shell": {"_count": 1}, "fighting": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "since": {"_count": 1}}, "er": {"_count": 2, "burns": {"_count": 1}, "head": {"_count": 1}}, "misfortune": {"_count": 1, "he": {"_count": 1}}, "Elfish": {"_count": 2, "Welfare": {"_count": 2}}, "strange": {"_count": 2, "rumors": {"_count": 1}, "creatures": {"_count": 1}}, "retirement": {"_count": 4, "which": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "quite": {"_count": 1, "astonishing": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "Transfiguration": {"_count": 4, "homework": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}, "Today": {"_count": 1}}, "ideas": {"_count": 2, "for": {"_count": 1}, "brain": {"_count": 1}}, "Father": {"_count": 1, "Christmas": {"_count": 1}}, "firstyear": {"_count": 1, "girls": {"_count": 1}}, "judges": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "1792": {"_count": 1, "when": {"_count": 1}}, "enthusiasm": {"_count": 1, "had": {"_count": 1}}, "anticipation": {"_count": 1, "in": {"_count": 1}}, "shaggy": {"_count": 1, "matted": {"_count": 1}}, "dishes": {"_count": 1, "in": {"_count": 1}}, "shellfish": {"_count": 1, "stew": {"_count": 1}}, "silveryblonde": {"_count": 1, "hair": {"_count": 1}}, "unfamiliar": {"_count": 1, "desserts": {"_count": 1}}, "tension": {"_count": 2, "seemed": {"_count": 1}, "leaving": {"_count": 1}}, "upturned": {"_count": 1, "faces": {"_count": 1}}, "explanation": {"_count": 2, "before": {"_count": 1}, "but": {"_count": 1}}, "polite": {"_count": 4, "applause": {"_count": 1}, "interest": {"_count": 1}, "but": {"_count": 1}, "indifference": {"_count": 1}}, "deduction": {"_count": 1, "and": {"_count": 1}}, "Fire": {"_count": 28, "": {"_count": 10}, "once": {"_count": 2}, "he": {"_count": 2}, "stood": {"_count": 1}, "had": {"_count": 2}, "now": {"_count": 1}, "turned": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}, "are": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}, "said": {"_count": 1}, "they": {"_count": 1}, "under": {"_count": 1}}, "seventeen": {"_count": 4, "will": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 2}}, "heart": {"_count": 6, "once": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 1}}, "Ravenclaw": {"_count": 10, "and": {"_count": 1}, "": {"_count": 4}, "on": {"_count": 1}, "is": {"_count": 2}, "Tower": {"_count": 2}}, "live": {"_count": 1, "bats": {"_count": 1}}, "S": {"_count": 2, "": {"_count": 2}}, "cured": {"_count": 1, "hams": {"_count": 1}}, "badges": {"_count": 1, "back": {"_count": 1}}, "theirs": {"_count": 3, "would": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}}, "semidarkness": {"_count": 1, "": {"_count": 1}}, "flame": {"_count": 11, "shot": {"_count": 4}, "though": {"_count": 1}, "in": {"_count": 2}, "which": {"_count": 1}, "and": {"_count": 1}, "flew": {"_count": 1}, "to": {"_count": 1}}, "support": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "scurrying": {"_count": 1, "feet": {"_count": 1}}, "zis": {"_count": 2, "Dumblydorr": {"_count": 1}, "ugly": {"_count": 1}}, "candidates": {"_count": 1, "from": {"_count": 1}}, "greasy": {"_count": 3, "black": {"_count": 3}}, "everybody": {"_count": 2, "watching": {"_count": 1}, "still": {"_count": 1}}, "impatient": {"_count": 1, "disbelief": {"_count": 1}}, "Fires": {"_count": 1, "just": {"_count": 1}}, "zat": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 7, "Moody": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 1}, "now": {"_count": 1}, "clinging": {"_count": 1}, "that": {"_count": 1}}, "mess": {"_count": 1, "and": {"_count": 1}}, "dream": {"_count": 2, "": {"_count": 1}, "interpretation": {"_count": 1}}, "sanity": {"_count": 1, "but": {"_count": 1}}, "grin": {"_count": 1, "": {"_count": 1}}, "disappearing": {"_count": 1, "into": {"_count": 1}}, "hero": {"_count": 1, "was": {"_count": 1}}, "perches": {"_count": 1, "looking": {"_count": 1}}, "crates": {"_count": 1, "each": {"_count": 1}}, "pentup": {"_count": 1, "energy": {"_count": 1}}, "attacking": {"_count": 2, "his": {"_count": 1}, "anybody": {"_count": 1}}, "simpering": {"_count": 1, "girls": {"_count": 1}}, "torture": {"_count": 1, "": {"_count": 1}}, "detentions": {"_count": 3, "": {"_count": 2}, "was": {"_count": 1}}, "velvet": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 8, "and": {"_count": 2}, "appearing": {"_count": 1}, "parchment": {"_count": 2}, "at": {"_count": 1}, "tipped": {"_count": 1}, "": {"_count": 1}}, "flowers": {"_count": 3, "burst": {"_count": 1}, "had": {"_count": 1}, "out": {"_count": 1}}, "robe": {"_count": 1, "from": {"_count": 1}}, "Cedrics": {"_count": 4, "wand": {"_count": 1}, "face": {"_count": 1}, "yells": {"_count": 1}, "house": {"_count": 1}}, "difficult": {"_count": 1, "and": {"_count": 1}}, "Dungbombs": {"_count": 3, "but": {"_count": 1}, "Sirius": {"_count": 1}, "said": {"_count": 1}}, "unpleasantness": {"_count": 1, "too": {"_count": 1}}, "admiration": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "giggling": {"_count": 3, "girls": {"_count": 2}, "from": {"_count": 1}}, "barely": {"_count": 1, "controlled": {"_count": 1}}, "molten": {"_count": 4, "panic": {"_count": 1}, "glass": {"_count": 1}, "gold": {"_count": 2}}, "reading": {"_count": 1, "the": {"_count": 1}}, "Support": {"_count": 1, "Cedric": {"_count": 1}}, "axle": {"_count": 1, "grease": {"_count": 1}}, "stars": {"_count": 1, "on": {"_count": 1}}, "sinewy": {"_count": 1, "scalyblack": {"_count": 1}}, "Charlies": {"_count": 1, "fellow": {"_count": 1}}, "huge": {"_count": 2, "granitegray": {"_count": 1}, "bangs": {"_count": 1}}, "longing": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "toward": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "four": {"_count": 8, "dragons": {"_count": 1}, "or": {"_count": 2}, "people": {"_count": 2}, "hours": {"_count": 1}, "Hogwarts": {"_count": 1}, "a": {"_count": 1}}, "shocking": {"_count": 2, "information": {"_count": 1}, "pink": {"_count": 1}}, "Switching": {"_count": 1, "it": {"_count": 1}}, "blank": {"_count": 5, "buzzing": {"_count": 1}, "parchment": {"_count": 1}, "wall": {"_count": 2}, "white": {"_count": 1}}, "Basic": {"_count": 1, "Hexes": {"_count": 1}}, "sixthyear": {"_count": 1, "friends": {"_count": 1}}, "inky": {"_count": 1, "quills": {"_count": 1}}, "exceptionally": {"_count": 1, "odd": {"_count": 1}}, "accident": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "tissues": {"_count": 1, "ready": {"_count": 1}}, "nervousness": {"_count": 1, "so": {"_count": 1}}, "showing": {"_count": 4, "nerves": {"_count": 1}, "it": {"_count": 2}, "us": {"_count": 1}}, "pairs": {"_count": 1, "of": {"_count": 1}}, "hoarse": {"_count": 1, "grunt": {"_count": 1}}, "marshmallow": {"_count": 1, "": {"_count": 1}}, "shimmering": {"_count": 3, "transparent": {"_count": 1}, "golden": {"_count": 1}, "silver": {"_count": 1}}, "exasperation": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "adrenaline": {"_count": 1, "": {"_count": 1}}, "worked": {"_count": 2, "because": {"_count": 1}, "too": {"_count": 1}}, "charm": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "sunshine": {"_count": 1, "arent": {"_count": 1}}, "exactly": {"_count": 1, "how": {"_count": 1}}, "cakes": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "singlemalt": {"_count": 1, "whiskey": {"_count": 1}}, "numerous": {"_count": 1, "burns": {"_count": 1}}, "lively": {"_count": 1, "interest": {"_count": 1}}, "communicating": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "than": {"_count": 1}}, "extraconcentrated": {"_count": 1, "ghost": {"_count": 1}}, "racing": {"_count": 1, "feet": {"_count": 1}}, "ending": {"_count": 1, "up": {"_count": 1}}, "happiness": {"_count": 3, "": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 1}}, "garments": {"_count": 2, "Harry": {"_count": 1}, "was": {"_count": 1}}, "dressing": {"_count": 3, "himself": {"_count": 1}, "zem": {"_count": 1}, "like": {"_count": 1}}, "biscuits": {"_count": 1, "": {"_count": 1}}, "giggle": {"_count": 1, "": {"_count": 1}}, "Winky": {"_count": 2, "": {"_count": 1}, "about": {"_count": 1}}, "Bagman": {"_count": 1, "though": {"_count": 1}}, "frilly": {"_count": 1, "dress": {"_count": 1}}, "asking": {"_count": 3, "a": {"_count": 1}, "what": {"_count": 1}, "himself": {"_count": 1}}, "opening": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "wellbeing": {"_count": 1, "no": {"_count": 1}}, "continuing": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "remorse": {"_count": 1}}, "embarrassment": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "look": {"_count": 5, "": {"_count": 1}, "that": {"_count": 1}, "she": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}}, "cake": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "trolls": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "blind": {"_count": 1, "horror": {"_count": 1}}, "came": {"_count": 3, "over": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}}, "Neville": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}, "Dean": {"_count": 1}}, "giggles": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "rich": {"_count": 1, "warming": {"_count": 1}}, "herself": {"_count": 4, "that": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "she": {"_count": 1}}, "thirdyear": {"_count": 1, "girls": {"_count": 1}}, "recklessly": {"_count": 1, "brave": {"_count": 1}}, "spirit": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "broomsticks": {"_count": 3, "upon": {"_count": 1}, "extricated": {"_count": 1}, "to": {"_count": 1}}, "Snitches": {"_count": 1, "": {"_count": 1}}, "Britain": {"_count": 3, "and": {"_count": 3}}, "Cribbages": {"_count": 1, "Wizarding": {"_count": 1}}, "silvergray": {"_count": 1, "satin": {"_count": 1}}, "lawn": {"_count": 2, "right": {"_count": 1}, "between": {"_count": 1}}, "grotto": {"_count": 1, "full": {"_count": 1}}, "fairy": {"_count": 1, "lights": {"_count": 1}}, "actual": {"_count": 1, "living": {"_count": 1}}, "thistles": {"_count": 1, "around": {"_count": 1}}, "garlands": {"_count": 1, "of": {"_count": 1}}, "mistletoe": {"_count": 2, "and": {"_count": 1}, "had": {"_count": 1}}, "lavender": {"_count": 1, "silk": {"_count": 1}}, "dining": {"_count": 1, "surely": {"_count": 1}}, "extra": {"_count": 2, "work": {"_count": 1}, "food": {"_count": 1}}, "learning": {"_count": 1, "that": {"_count": 1}}, "assuming": {"_count": 1, "I": {"_count": 1}}, "chamber": {"_count": 1, "pots": {"_count": 1}}, "goulash": {"_count": 1, "": {"_count": 1}}, "diamond": {"_count": 1, "glittering": {"_count": 1}}, "Fleur": {"_count": 4, "": {"_count": 2}, "shook": {"_count": 1}, "and": {"_count": 1}}, "drums": {"_count": 1, "several": {"_count": 1}}, "Parvati": {"_count": 2, "at": {"_count": 1}, "s": {"_count": 1}}, "injury": {"_count": 1, "and": {"_count": 1}}, "contacts": {"_count": 1, "of": {"_count": 1}}, "scene": {"_count": 1, "they": {"_count": 1}}, "fairies": {"_count": 1, "rose": {"_count": 1}}, "Boris": {"_count": 2, "the": {"_count": 2}}, "Sleekeazys": {"_count": 1, "Hair": {"_count": 1}}, "prejudice": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "rubbishy": {"_count": 1, "help": {"_count": 1}}, "newsprint": {"_count": 2, "": {"_count": 1}, "out": {"_count": 1}}, "gamekeeper": {"_count": 1, "at": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "horrific": {"_count": 1, "creatures": {"_count": 1}}, "lessons": {"_count": 4, "that": {"_count": 1}, "while": {"_count": 1}, "you": {"_count": 1}, "to": {"_count": 1}}, "ceasing": {"_count": 1, "his": {"_count": 1}}, "intimidation": {"_count": 1, "however": {"_count": 1}}, "extinction": {"_count": 1, "by": {"_count": 1}}, "HeWho": {"_count": 1, "MustNotBeNamed": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "associating": {"_count": 1, "with": {"_count": 1}}, "horrible": {"_count": 5, "stuff": {"_count": 1}, "misfortune": {"_count": 1}, "hot": {"_count": 1}, "stories": {"_count": 1}, "compression": {"_count": 1}}, "Gobbledegook": {"_count": 1, "": {"_count": 1}}, "frowns": {"_count": 1, "creased": {"_count": 1}}, "starting": {"_count": 1, "up": {"_count": 1}}, "Ugly": {"_count": 1, "Goblins": {"_count": 1}}, "dealing": {"_count": 1, "with": {"_count": 1}}, "digging": {"_count": 1, "": {"_count": 1}}, "tangled": {"_count": 1, "wire": {"_count": 1}}, "bubble": {"_count": 1, "bath": {"_count": 1}}, "footballs": {"_count": 1, "another": {"_count": 1}}, "lengths": {"_count": 2, "before": {"_count": 1}, "of": {"_count": 1}}, "understanding": {"_count": 3, "": {"_count": 1}, "shot": {"_count": 1}, "Harry": {"_count": 1}}, "bubbles": {"_count": 3, "in": {"_count": 1}, "kept": {"_count": 1}, "burst": {"_count": 1}}, "Myrtles": {"_count": 1, "bathroom": {"_count": 1}}, "eerie": {"_count": 1, "voices": {"_count": 1}}, "Polyjuice": {"_count": 9, "Potion": {"_count": 8}, "leaving": {"_count": 1}}, "swollen": {"_count": 1, "eyes": {"_count": 1}}, "cornering": {"_count": 2, "Peeves": {"_count": 1}, "Malfoy": {"_count": 1}}, "dawning": {"_count": 5, "comprehension": {"_count": 3}, "horror": {"_count": 1}, "wonder": {"_count": 1}}, "forced": {"_count": 3, "calm": {"_count": 3}}, "finetune": {"_count": 1, "it": {"_count": 1}}, "belly": {"_count": 1, "flop": {"_count": 1}}, "Wizarding": {"_count": 11, "Secrecy": {"_count": 1}, "fireplaces": {"_count": 1}, "law": {"_count": 1}, "history": {"_count": 3}, "families": {"_count": 3}, "children": {"_count": 1}, "knowledge": {"_count": 1}}, "Moody": {"_count": 1, "he": {"_count": 1}}, "chilly": {"_count": 4, "water": {"_count": 1}, "rain": {"_count": 2}, "cloud": {"_count": 1}}, "next": {"_count": 1, "Hogsmeade": {"_count": 1}}, "poisonous": {"_count": 1, "fangs": {"_count": 1}}, "spells": {"_count": 6, "hidden": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "Hagrid": {"_count": 1}}, "shredded": {"_count": 1, "mandrake": {"_count": 1}}, "Olde": {"_count": 1, "and": {"_count": 1}}, "Weird": {"_count": 1, "Wizarding": {"_count": 1}}, "as": {"_count": 1, "many": {"_count": 1}}, "underwater": {"_count": 1, "exploits": {"_count": 1}}, "EighteenthCentury": {"_count": 1, "Charms": {"_count": 1}}, "roundeyed": {"_count": 1, "surprise": {"_count": 1}}, "hexes": {"_count": 1, "and": {"_count": 1}}, "Where": {"_count": 1, "Theres": {"_count": 1}}, "gillyweed": {"_count": 1, "out": {"_count": 1}}, "rippling": {"_count": 1, "tangled": {"_count": 1}}, "weed": {"_count": 3, "": {"_count": 1}, "around": {"_count": 1}, "tying": {"_count": 1}}, "haunting": {"_count": 1, "mersong": {"_count": 1}}, "merpeople": {"_count": 4, "on": {"_count": 1}, "was": {"_count": 2}, "singing": {"_count": 1}}, "crude": {"_count": 1, "stone": {"_count": 1}}, "pebbles": {"_count": 1, "around": {"_count": 1}}, "statue": {"_count": 1, "a": {"_count": 1}}, "shark": {"_count": 1, "fangs": {"_count": 1}}, "Madame": {"_count": 2, "Maxime": {"_count": 1}, "Delacour": {"_count": 1}}, "pleasure": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "stupidity": {"_count": 1, "was": {"_count": 1}}, "screechy": {"_count": 1, "noises": {"_count": 1}}, "kidnap": {"_count": 1, "in": {"_count": 1}}, "road": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "todays": {"_count": 2, "potion": {"_count": 1}, "Charms": {"_count": 1}}, "adolescence": {"_count": 1, "writes": {"_count": 1}}, "love": {"_count": 4, "since": {"_count": 1}, "potions": {"_count": 1}, "Lily": {"_count": 1}, "loyalty": {"_count": 1}}, "of": {"_count": 3, "scarlet": {"_count": 1}, "all": {"_count": 1}, "pale": {"_count": 1}}, "scarab": {"_count": 1, "beetles": {"_count": 1}}, "pulled": {"_count": 1, "me": {"_count": 1}}, "armadillo": {"_count": 1, "bile": {"_count": 1}}, "ground": {"_count": 5, "that": {"_count": 2}, "a": {"_count": 1}, "and": {"_count": 1}, "surrounded": {"_count": 1}}, "Bartemius": {"_count": 1, "Crouch": {"_count": 1}}, "critical": {"_count": 1, "illness": {"_count": 1}}, "Crouch": {"_count": 2, "better": {"_count": 1}, "": {"_count": 1}}, "Barty": {"_count": 2, "Crouchs": {"_count": 1}, "Crouch": {"_count": 1}}, "illness": {"_count": 1, "before": {"_count": 1}}, "irritation": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "frustration": {"_count": 3, "": {"_count": 2}, "peaked": {"_count": 1}}, "grindylows": {"_count": 1, "Harry": {"_count": 1}}, "dinner": {"_count": 2, "wafted": {"_count": 1}, "he": {"_count": 1}}, "eclairs": {"_count": 1, "was": {"_count": 1}}, "covering": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "knowing": {"_count": 6, "how": {"_count": 1}, "him": {"_count": 1}, "shes": {"_count": 1}, "which": {"_count": 2}, "what": {"_count": 1}}, "open": {"_count": 5, "crates": {"_count": 1}, "and": {"_count": 1}, "hostility": {"_count": 1}, "warfare": {"_count": 1}, "sky": {"_count": 1}}, "habit": {"_count": 3, "as": {"_count": 1}, "and": {"_count": 1}, "than": {"_count": 1}}, "bubotuber": {"_count": 2, "pus": {"_count": 2}}, "pus": {"_count": 1, "": {"_count": 1}}, "difficulty": {"_count": 1, "managing": {"_count": 1}}, "hexdeflection": {"_count": 1, "that": {"_count": 1}}, "Twitchy": {"_count": 1, "Ears": {"_count": 1}}, "Hate": {"_count": 1, "Rita": {"_count": 1}}, "eavesdropping": {"_count": 1, "as": {"_count": 1}}, "Easter": {"_count": 1, "eggs": {"_count": 1}}, "toffee": {"_count": 2, "": {"_count": 1}, "eclairs": {"_count": 1}}, "May": {"_count": 2, "Professor": {"_count": 1}, "": {"_count": 1}}, "creatures": {"_count": 6, "": {"_count": 1}, "that": {"_count": 1}, "whom": {"_count": 1}, "who": {"_count": 1}, "most": {"_count": 1}, "Harry": {"_count": 1}}, "Durmstrang": {"_count": 2, "students": {"_count": 1}, "Institute": {"_count": 1}}, "spittle": {"_count": 1, "was": {"_count": 1}}, "thunderous": {"_count": 1, "footfalls": {"_count": 1}}, "closer": {"_count": 1, "international": {"_count": 1}}, "rebuilding": {"_count": 1, "old": {"_count": 1}}, "forgetting": {"_count": 1, "old": {"_count": 1}}, "Karkaroffs": {"_count": 1, "furs": {"_count": 1}}, "obstacles": {"_count": 2, "guarding": {"_count": 1}, "was": {"_count": 1}}, "odd": {"_count": 2, "things": {"_count": 1}, "plants": {"_count": 1}}, "foul": {"_count": 1, "play": {"_count": 1}}, "previous": {"_count": 3, "headmasters": {"_count": 3}}, "silverwhite": {"_count": 1, "shining": {"_count": 1}}, "adults": {"_count": 1, "and": {"_count": 1}}, "strangled": {"_count": 1, "whisper": {"_count": 1}}, "benches": {"_count": 3, "rising": {"_count": 1}, "opposite": {"_count": 1}, "and": {"_count": 1}}, "use": {"_count": 5, "to": {"_count": 2}, "out": {"_count": 1}, "": {"_count": 2}}, "dissent": {"_count": 1, "through": {"_count": 1}}, "wellplaced": {"_count": 1, "wizards": {"_count": 1}}, "sporting": {"_count": 1, "event": {"_count": 1}}, "imprisonment": {"_count": 3, "in": {"_count": 1}, "": {"_count": 2}}, "petrified": {"_count": 1, "": {"_count": 1}}, "capturing": {"_count": 1, "an": {"_count": 1}}, "violence": {"_count": 2, "you": {"_count": 1}, "from": {"_count": 1}}, "Voldemorts": {"_count": 31, "ascent": {"_count": 1}, "robes": {"_count": 1}, "father": {"_count": 4}, "wand": {"_count": 7}, "victims": {"_count": 1}, "speech": {"_count": 1}, "name": {"_count": 3}, "reign": {"_count": 1}, "thoughts": {"_count": 2}, "soul": {"_count": 4}, "followers": {"_count": 1}, "shattered": {"_count": 1}, "mind": {"_count": 1}, "remaining": {"_count": 1}, "own": {"_count": 1}, "giants": {"_count": 1}}, "living": {"_count": 4, "people": {"_count": 1}, "creatures": {"_count": 1}, "room": {"_count": 1}, "with": {"_count": 1}}, "thoughts": {"_count": 1, "that": {"_count": 1}}, "investigation": {"_count": 1, "": {"_count": 1}}, "bugging": {"_count": 1, "": {"_count": 1}}, "strain": {"_count": 2, "": {"_count": 2}}, "true": {"_count": 1, "he": {"_count": 1}}, "security": {"_count": 5, "": {"_count": 1}, "Harry": {"_count": 1}, "before": {"_count": 1}, "now": {"_count": 1}, "thinking": {"_count": 1}}, "distance": {"_count": 2, "between": {"_count": 2}}, "enchantment": {"_count": 1, "": {"_count": 1}}, "endless": {"_count": 1, "space": {"_count": 1}}, "increasing": {"_count": 2, "unease": {"_count": 1}, "desperation": {"_count": 1}}, "wandlight": {"_count": 3, "hit": {"_count": 1}, "but": {"_count": 1}, "fell": {"_count": 1}}, "middle": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "animals": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "paths": {"_count": 1, "up": {"_count": 1}}, "eight": {"_count": 1, "shining": {"_count": 1}}, "hairy": {"_count": 1, "legs": {"_count": 1}}, "resolution": {"_count": 1, "he": {"_count": 1}}, "robes": {"_count": 9, "": {"_count": 1}, "that": {"_count": 3}, "on": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "two": {"_count": 1}, "reappearing": {"_count": 1}}, "vision": {"_count": 5, "and": {"_count": 2}, "": {"_count": 2}, "battling": {"_count": 1}}, "Wormtail": {"_count": 8, "tending": {"_count": 1}, "who": {"_count": 1}, "stepped": {"_count": 1}, "and": {"_count": 1}, "after": {"_count": 1}, "piercing": {"_count": 1}, "scurrying": {"_count": 1}, "dead": {"_count": 1}}, "material": {"_count": 2, "blocking": {"_count": 1}, "gagging": {"_count": 1}}, "revulsion": {"_count": 4, "on": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "mixed": {"_count": 1}}, "Wormtails": {"_count": 2, "robes": {"_count": 1}, "wheezy": {"_count": 1}}, "cruel": {"_count": 2, "satisfaction": {"_count": 1}, "dreams": {"_count": 1}}, "commoners": {"_count": 1, "of": {"_count": 1}}, "Mudbloods": {"_count": 4, "and": {"_count": 1}, "oh": {"_count": 1}, "in": {"_count": 1}, "do": {"_count": 1}}, "loyalty": {"_count": 1, "but": {"_count": 1}}, "Muggletorture": {"_count": 1, "I": {"_count": 1}}, "listening": {"_count": 2, "Death": {"_count": 1}, "to": {"_count": 1}}, "others": {"_count": 1, "": {"_count": 1}}, "hiding": {"_count": 6, "by": {"_count": 1}, "here": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "stealing": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "Ministry": {"_count": 5, "wizards": {"_count": 1}, "employees": {"_count": 1}, "security": {"_count": 1}, "TimeTurners": {"_count": 1}, "officials": {"_count": 1}}, "watching": {"_count": 2, "Death": {"_count": 2}}, "graves": {"_count": 2, "": {"_count": 1}, "Dumbledore": {"_count": 1}}, "just": {"_count": 2, "around": {"_count": 1}, "laundered": {"_count": 1}}, "phoenix": {"_count": 3, "song": {"_count": 1}, "feather": {"_count": 2}}, "Cedric": {"_count": 8, "Diggory": {"_count": 3}, "stood": {"_count": 1}, "take": {"_count": 1}, "must": {"_count": 1}, "dead": {"_count": 1}, "dying": {"_count": 1}}, "encouragement": {"_count": 4, "to": {"_count": 1}, "all": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}}, "James": {"_count": 3, "Potter": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "either": {"_count": 2, "of": {"_count": 1}, "while": {"_count": 1}}, "tracking": {"_count": 1, "his": {"_count": 1}}, "cunning": {"_count": 2, "I": {"_count": 1}, "unplumbed": {"_count": 1}}, "pit": {"_count": 1, "an": {"_count": 1}}, "tonight": {"_count": 2, "our": {"_count": 1}, "was": {"_count": 1}}, "fair": {"_count": 1, "hair": {"_count": 1}}, "completely": {"_count": 2, "clear": {"_count": 1}, "silent": {"_count": 1}}, "despair": {"_count": 6, "": {"_count": 3}, "inside": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}}, "numbness": {"_count": 2, "and": {"_count": 1}, "where": {"_count": 1}}, "reverse": {"_count": 1, "echo": {"_count": 1}}, "muffled": {"_count": 1, "scream": {"_count": 1}}, "reliving": {"_count": 1, "it": {"_count": 1}}, "Veritaserum": {"_count": 3, "he": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "Fudge": {"_count": 6, "as": {"_count": 1}, "with": {"_count": 1}, "leaned": {"_count": 1}, "I": {"_count": 1}, "who": {"_count": 1}, "stepping": {"_count": 1}}, "disruption": {"_count": 3, "in": {"_count": 1}, "particularly": {"_count": 1}, "": {"_count": 1}}, "office": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "friendship": {"_count": 4, "now": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "distinguishing": {"_count": 1, "one": {"_count": 1}}, "summoning": {"_count": 1, "us": {"_count": 1}}, "apprehension": {"_count": 5, "on": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "dreamless": {"_count": 1, "sleep": {"_count": 1}}, "doughy": {"_count": 1, "cookies": {"_count": 1}}, "attack": {"_count": 1, "was": {"_count": 1}}, "blunder": {"_count": 1, "of": {"_count": 1}}, "ripple": {"_count": 1, "crossed": {"_count": 1}}, "painful": {"_count": 2, "internal": {"_count": 1}, "intensity": {"_count": 1}}, "ringing": {"_count": 1, "in": {"_count": 1}}, "fireworks": {"_count": 2, "within": {"_count": 1}, "and": {"_count": 1}}, "jinxes": {"_count": 1, "with": {"_count": 1}}, "hosepipes": {"_count": 1, "had": {"_count": 1}}, "tempting": {"_count": 1, "in": {"_count": 1}}, "stranded": {"_count": 1, "holidaymakers": {"_count": 1}}, "contact": {"_count": 1, "from": {"_count": 1}}, "hopelessness": {"_count": 4, "that": {"_count": 1}, "spread": {"_count": 1}, "filling": {"_count": 1}, "engulfed": {"_count": 1}}, "handling": {"_count": 1, "much": {"_count": 1}}, "proper": {"_count": 1, "news": {"_count": 1}}, "caution": {"_count": 3, "and": {"_count": 2}, "that": {"_count": 1}}, "tantalizing": {"_count": 1, "hints": {"_count": 1}}, "warm": {"_count": 2, "dry": {"_count": 1}, "grass": {"_count": 1}}, "provoking": {"_count": 2, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "jewelbright": {"_count": 1, "colors": {"_count": 1}}, "nasty": {"_count": 3, "Harrys": {"_count": 1}, "look": {"_count": 1}, "incidents": {"_count": 1}}, "pillows": {"_count": 1, "or": {"_count": 1}}, "vapor": {"_count": 1, "shot": {"_count": 1}}, "gray": {"_count": 2, "slimy": {"_count": 1}, "in": {"_count": 1}}, "fainting": {"_count": 1, "His": {"_count": 1}}, "detecting": {"_count": 1, "underage": {"_count": 1}}, "cat": {"_count": 2, "food": {"_count": 2}}, "Mundungus": {"_count": 5, "she": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "Fletcher": {"_count": 1}, "would": {"_count": 1}}, "sick": {"_count": 2, "": {"_count": 2}}, "OWLS": {"_count": 1, "": {"_count": 1}}, "numb": {"_count": 1, "dread": {"_count": 1}}, "approximately": {"_count": 1, "twentytwo": {"_count": 1}}, "spit": {"_count": 2, "hit": {"_count": 1}, "tea": {"_count": 1}}, "sympathy": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "forcing": {"_count": 3, "his": {"_count": 1}, "entry": {"_count": 1}, "himself": {"_count": 1}}, "argument": {"_count": 2, "then": {"_count": 1}, "we": {"_count": 1}}, "car": {"_count": 2, "doors": {"_count": 1}, "exhausts": {"_count": 1}}, "stupor": {"_count": 1, "thinking": {"_count": 1}}, "spiky": {"_count": 2, "hair": {"_count": 1}, "acidgreen": {"_count": 1}}, "flick": {"_count": 1, "She": {"_count": 1}}, "wiggle": {"_count": 1, "and": {"_count": 1}}, "householdy": {"_count": 1, "spells": {"_count": 1}}, "lights": {"_count": 3, "below": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}}, "traveling": {"_count": 2, "by": {"_count": 1}, "without": {"_count": 1}}, "unkempt": {"_count": 2, "grass": {"_count": 2}}, "bulging": {"_count": 1, "bin": {"_count": 1}}, "news": {"_count": 3, "the": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "private": {"_count": 2, "lessons": {"_count": 1}, "army": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "failing": {"_count": 1, "to": {"_count": 1}}, "fleshcolored": {"_count": 2, "string": {"_count": 2}}, "houseelf": {"_count": 1, "heads": {"_count": 1}}, "dirt": {"_count": 4, "and": {"_count": 1}, "has": {"_count": 1}, "sweat": {"_count": 2}}, "pipe": {"_count": 3, "smoke": {"_count": 3}}, "meetings": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "rags": {"_count": 1, "gave": {"_count": 1}}, "burning": {"_count": 3, "socks": {"_count": 1}, "themselves": {"_count": 1}, "gold": {"_count": 1}}, "affection": {"_count": 4, "for": {"_count": 3}, "": {"_count": 1}}, "responsibility": {"_count": 1, "now": {"_count": 1}}, "plates": {"_count": 1, "and": {"_count": 1}}, "doxies": {"_count": 1, "too": {"_count": 1}}, "Page": {"_count": 1, "llOHarry": {"_count": 1}}, "Bills": {"_count": 2, "words": {"_count": 1}, "mangled": {"_count": 1}}, "rhubarb": {"_count": 2, "crumble": {"_count": 2}}, "drowsiness": {"_count": 1, "gone": {"_count": 1}}, "abandoned": {"_count": 1, "butterbeer": {"_count": 1}}, "yous": {"_count": 2, "putting": {"_count": 1}, "got": {"_count": 1}}, "looks": {"_count": 1, "before": {"_count": 1}}, "weapon": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "overage": {"_count": 1, "wizards": {"_count": 1}}, "bedsprings": {"_count": 1, "and": {"_count": 1}}, "screams": {"_count": 1, "and": {"_count": 1}}, "dishonor": {"_count": 3, "filthy": {"_count": 1}, "to": {"_count": 1}, "taint": {"_count": 1}}, "Doxycide": {"_count": 1, "it": {"_count": 1}}, "rusty": {"_count": 2, "daggers": {"_count": 1}, "bedsprings": {"_count": 1}}, "tarnished": {"_count": 2, "silver": {"_count": 1}, "scales": {"_count": 1}}, "precariously": {"_count": 1, "balanced": {"_count": 1}}, "adopted": {"_count": 1, "me": {"_count": 1}}, "Muggleborns": {"_count": 4, "and": {"_count": 1}, "are": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "service": {"_count": 2, "or": {"_count": 1}, "he": {"_count": 1}}, "beheading": {"_count": 1, "houseelves": {"_count": 1}}, "Andromedas": {"_count": 2, "burn": {"_count": 2}}, "moral": {"_count": 1, "support": {"_count": 1}}, "concentration": {"_count": 3, "as": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "ancient": {"_count": 4, "seals": {"_count": 1}, "looking": {"_count": 1}, "magic": {"_count": 1}, "magical": {"_count": 1}}, "whose": {"_count": 4, "occupants": {"_count": 1}, "head": {"_count": 1}, "mouth": {"_count": 1}, "startled": {"_count": 1}}, "Kreachers": {"_count": 7, "ancestors": {"_count": 1}, "cupboard": {"_count": 2}, "treasures": {"_count": 1}, "looked": {"_count": 1}, "absence": {"_count": 1}, "cooking": {"_count": 1}}, "pieces": {"_count": 1, "of": {"_count": 1}}, "early": {"_count": 2, "morning": {"_count": 2}}, "besuited": {"_count": 1, "men": {"_count": 1}}, "Apparators": {"_count": 1, "and": {"_count": 1}}, "Law": {"_count": 1, "and": {"_count": 1}}, "memos": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "hurricanes": {"_count": 1, "last": {"_count": 1}}, "cubicles": {"_count": 1, "like": {"_count": 1}}, "Kingsleys": {"_count": 1, "cubicle": {"_count": 1}}, "oak": {"_count": 2, "doors": {"_count": 1}, "matured": {"_count": 1}}, "files": {"_count": 1, "": {"_count": 1}}, "postboxes": {"_count": 1, "he": {"_count": 1}}, "frank": {"_count": 1, "curiosity": {"_count": 1}}, "recognition": {"_count": 4, "from": {"_count": 1}, "a": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 1}}, "Percys": {"_count": 3, "sanctimonious": {"_count": 1}, "letter": {"_count": 1}, "most": {"_count": 1}}, "Rights": {"_count": 1, "the": {"_count": 1}}, "Wisteria": {"_count": 1, "Walk": {"_count": 1}}, "exceptional": {"_count": 1, "circumstances": {"_count": 1}}, "justice": {"_count": 1, "said": {"_count": 1}}, "cockandbull": {"_count": 1, "stories": {"_count": 1}}, "coolness": {"_count": 1, "behind": {"_count": 1}}, "puce": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "clearing": {"_count": 1, "the": {"_count": 1}}, "conviction": {"_count": 1, "": {"_count": 1}}, "spare": {"_count": 2, "quills": {"_count": 1}, "hair": {"_count": 1}}, "creeping": {"_count": 2, "servility": {"_count": 1}, "shadows": {"_count": 1}}, "war": {"_count": 1, "dance": {"_count": 1}}, "giddy": {"_count": 1, "relief": {"_count": 1}}, "since": {"_count": 1, "we": {"_count": 1}}, "September": {"_count": 9, "the": {"_count": 1}, "when": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "there": {"_count": 1}, "was": {"_count": 1}}, "dress": {"_count": 3, "robes": {"_count": 3}}, "clean": {"_count": 3, "robes": {"_count": 1}, "air": {"_count": 2}}, "ill": {"_count": 1, "usage": {"_count": 1}}, "responding": {"_count": 1, "by": {"_count": 1}}, "elf": {"_count": 1, "rights": {"_count": 1}}, "nonsense": {"_count": 2, "as": {"_count": 1}, "in": {"_count": 1}}, "thinking": {"_count": 2, "theyre": {"_count": 1}, "too": {"_count": 1}}, "knarl": {"_count": 2, "quills": {"_count": 1}, "droppings": {"_count": 1}}, "poison": {"_count": 3, "because": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "Spanish": {"_count": 1, "oak": {"_count": 1}}, "Amelia": {"_count": 1, "Bones": {"_count": 1}}, "inventing": {"_count": 2, "an": {"_count": 1}, "Dark": {"_count": 1}}, "crying": {"_count": 1, "her": {"_count": 1}}, "carpet": {"_count": 2, "where": {"_count": 1}, "from": {"_count": 1}}, "madness": {"_count": 2, "talking": {"_count": 1}, "when": {"_count": 1}}, "commotion": {"_count": 1, "in": {"_count": 1}}, "carrying": {"_count": 1, "them": {"_count": 1}}, "MUDBLOODSl": {"_count": 1, "SCUM": {"_count": 1}}, "Tonks": {"_count": 3, "Lupin": {"_count": 1}, "but": {"_count": 1}, "remaining": {"_count": 1}}, "loss": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "pulling": {"_count": 3, "his": {"_count": 1}, "off": {"_count": 1}, "on": {"_count": 1}}, "distinct": {"_count": 1, "dottiness": {"_count": 1}}, "rummaging": {"_count": 1, "pulled": {"_count": 1}}, "Frog": {"_count": 1, "": {"_count": 1}}, "pained": {"_count": 2, "concentration": {"_count": 1}, "grimace": {"_count": 1}}, "mirth": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "Luna": {"_count": 2, "Lovegood": {"_count": 1}, "Lovegoods": {"_count": 1}}, "18": {"_count": 1, "Acanthia": {"_count": 1}}, "blackmail": {"_count": 1, "illegal": {"_count": 1}}, "moon": {"_count": 1, "frogs": {"_count": 1}}, "Firs": {"_count": 1, "years": {"_count": 1}}, "moving": {"_count": 4, "along": {"_count": 1}, "images": {"_count": 1}, "him": {"_count": 1}, "statues": {"_count": 1}}, "cronies": {"_count": 1, "including": {"_count": 1}}, "turrets": {"_count": 1, "jetblack": {"_count": 1}}, "prominent": {"_count": 1, "pouchy": {"_count": 1}}, "sharpest": {"_count": 1, "mind": {"_count": 1}}, "friend": {"_count": 1, "on": {"_count": 1}}, "unexpected": {"_count": 1, "surprises": {"_count": 1}}, "vegetables": {"_count": 1, "bread": {"_count": 1}}, "groan": {"_count": 1, "of": {"_count": 1}}, "chops": {"_count": 1, "and": {"_count": 1}}, "seeking": {"_count": 1, "an": {"_count": 1}}, "cowardice": {"_count": 2, "in": {"_count": 1}, "had": {"_count": 1}}, "speech": {"_count": 7, "": {"_count": 2}, "at": {"_count": 1}, "very": {"_count": 1}, "but": {"_count": 2}, "with": {"_count": 1}}, "whichever": {"_count": 1, "words": {"_count": 1}}, "eating": {"_count": 2, "and": {"_count": 1}, "anything": {"_count": 1}}, "staff": {"_count": 6, "were": {"_count": 1}, "an": {"_count": 1}, "short": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}, "immediately": {"_count": 1}}, "dislike": {"_count": 1, "that": {"_count": 1}}, "vital": {"_count": 1, "importance": {"_count": 1}}, "teaching": {"_count": 3, "": {"_count": 1}, "his": {"_count": 1}, "too": {"_count": 1}}, "governing": {"_count": 1, "this": {"_count": 1}}, "tune": {"_count": 1, "": {"_count": 1}}, "judgment": {"_count": 1, "": {"_count": 1}}, "openness": {"_count": 1, "effectiveness": {"_count": 1}}, "waffle": {"_count": 1, "to": {"_count": 1}}, "concealed": {"_count": 1, "shortcuts": {"_count": 1}}, "dilapidated": {"_count": 2, "squashy": {"_count": 1}, "brick": {"_count": 1}}, "ensuring": {"_count": 1, "that": {"_count": 1}}, "contempt": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "Seamuss": {"_count": 1, "robes": {"_count": 1}}, "asperity": {"_count": 1, "": {"_count": 1}}, "interHouse": {"_count": 1, "unity": {"_count": 1}}, "fourthyear": {"_count": 2, "Ravenclaws": {"_count": 1}, "girls": {"_count": 1}}, "Seamus": {"_count": 1, "as": {"_count": 1}}, "Nosebleed": {"_count": 2, "Nougat": {"_count": 2}}, "academic": {"_count": 1, "achievement": {"_count": 1}}, "market": {"_count": 1, "research": {"_count": 1}}, "Binns": {"_count": 1, "s": {"_count": 1}}, "giant": {"_count": 3, "wars": {"_count": 1}, "scissors": {"_count": 1}, "serpents": {"_count": 1}}, "Chos": {"_count": 4, "robes": {"_count": 1}, "parting": {"_count": 1}, "head": {"_count": 1}, "anger": {"_count": 1}}, "farewell": {"_count": 2, "said": {"_count": 1}, "explaining": {"_count": 1}}, "Peace": {"_count": 2, "a": {"_count": 1}, "said": {"_count": 1}}, "multicolored": {"_count": 2, "steam": {"_count": 1}, "sparks": {"_count": 1}}, "syrup": {"_count": 1, "of": {"_count": 1}}, "hellebore": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "moonstone": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "justmixed": {"_count": 1, "cement": {"_count": 1}}, "predicting": {"_count": 2, "his": {"_count": 1}, "even": {"_count": 1}}, "insect": {"_count": 1, "with": {"_count": 1}}, "battered": {"_count": 1, "leatherbound": {"_count": 1}}, "divining": {"_count": 1, "the": {"_count": 1}}, "divination": {"_count": 1, "": {"_count": 1}}, "dreams": {"_count": 2, "in": {"_count": 2}}, "moonstones": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "defensive": {"_count": 2, "magic": {"_count": 2}}, "scratching": {"_count": 1, "quills": {"_count": 1}}, "Defensive": {"_count": 7, "Magical": {"_count": 7}}, "determined": {"_count": 2, "sweetness": {"_count": 1}, "calm": {"_count": 1}}, "study": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "cookies": {"_count": 1, "lying": {"_count": 1}}, "papers": {"_count": 2, "on": {"_count": 1}, "from": {"_count": 1}}, "Ginger": {"_count": 1, "Newt": {"_count": 1}}, "stuffing": {"_count": 2, "leaked": {"_count": 1}, "it": {"_count": 1}}, "innocentlooking": {"_count": 1, "first": {"_count": 1}}, "Fainting": {"_count": 1, "Fancies": {"_count": 1}}, "Fancies": {"_count": 1, "back": {"_count": 1}}, "confidence": {"_count": 6, "": {"_count": 2}, "from": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "in": {"_count": 1}}, "twigs": {"_count": 3, "in": {"_count": 1}, "Harry": {"_count": 1}, "soft": {"_count": 1}}, "beetlebrown": {"_count": 1, "eyes": {"_count": 1}}, "wand": {"_count": 1, "quality": {"_count": 1}}, "Umbridge": {"_count": 10, "letting": {"_count": 1}, "deepened": {"_count": 1}, "too": {"_count": 1}, "and": {"_count": 2}, "merely": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}, "while": {"_count": 1}}, "wrongdoing": {"_count": 1, "and": {"_count": 1}}, "dried": {"_count": 4, "flowers": {"_count": 3}, "herbs": {"_count": 1}}, "ornamental": {"_count": 1, "plates": {"_count": 1}}, "politeness": {"_count": 1, "": {"_count": 1}}, "weakness": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "ugly": {"_count": 1, "old": {"_count": 1}}, "madeup": {"_count": 2, "dreams": {"_count": 2}}, "shoes": {"_count": 2, "she": {"_count": 1}, "Quickly": {"_count": 1}}, "finishing": {"_count": 2, "that": {"_count": 1}, "Lord": {"_count": 1}}, "wills": {"_count": 1, "and": {"_count": 1}}, "bowtruckles": {"_count": 1, "for": {"_count": 1}}, "tiredness": {"_count": 1, "": {"_count": 1}}, "Lachlan": {"_count": 1, "the": {"_count": 1}}, "shifting": {"_count": 1, "himself": {"_count": 1}}, "Umbridges": {"_count": 8, "quill": {"_count": 1}, "office": {"_count": 2}, "grasp": {"_count": 1}, "fire": {"_count": 1}, "corridor": {"_count": 2}, "blouse": {"_count": 1}}, "recent": {"_count": 1, "nosebleeds": {"_count": 1}}, "good": {"_count": 5, "Quidditch": {"_count": 1}, "fortune": {"_count": 1}, "itll": {"_count": 1}, "quality": {"_count": 1}, "the": {"_count": 1}}, "societies": {"_count": 1, "she": {"_count": 1}}, "crumpledup": {"_count": 1, "bits": {"_count": 1}}, "Paracelsus": {"_count": 1, "halfway": {"_count": 1}}, "Wilfred": {"_count": 1, "the": {"_count": 1}}, "bacon": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "catcalls": {"_count": 2, "and": {"_count": 1}, "angry": {"_count": 1}}, "Sunday": {"_count": 2, "in": {"_count": 1}, "catching": {"_count": 1}}, "knitting": {"_count": 1, "needles": {"_count": 1}}, "shapeless": {"_count": 1, "elf": {"_count": 1}}, "losing": {"_count": 4, "your": {"_count": 1}, "MadEye": {"_count": 1}, "his": {"_count": 1}, "Fred": {"_count": 1}}, "Potters": {"_count": 2, "behavior": {"_count": 1}, "meeting": {"_count": 1}}, "petty": {"_count": 1, "criminals": {"_count": 1}}, "association": {"_count": 1, "with": {"_count": 1}}, "pages": {"_count": 1, "as": {"_count": 1}}, "Kreacher": {"_count": 2, "": {"_count": 2}}, "bitterness": {"_count": 1, "in": {"_count": 1}}, "Dolores": {"_count": 4, "Umbridge": {"_count": 4}}, "Educational": {"_count": 3, "Decree": {"_count": 3}}, "\u2018Hogwarts": {"_count": 1, "High": {"_count": 1}}, "managing": {"_count": 1, "the": {"_count": 1}}, "Inquisitor": {"_count": 1, "to": {"_count": 1}}, "venom": {"_count": 1, "antidotes": {"_count": 1}}, "baseline": {"_count": 1, "arent": {"_count": 1}}, "prophetic": {"_count": 1, "dreams": {"_count": 1}}, "complaint": {"_count": 1, "Potter": {"_count": 1}}, "shell": {"_count": 1, "have": {"_count": 1}}, "glee": {"_count": 1, "": {"_count": 1}}, "captive": {"_count": 1, "bowtruckles": {"_count": 1}}, "absence": {"_count": 1, "": {"_count": 1}}, "Dean": {"_count": 5, "Thomas": {"_count": 3}, "she": {"_count": 1}, "": {"_count": 1}}, "strained": {"_count": 1, "and": {"_count": 1}}, "murtlap": {"_count": 5, "tentacles": {"_count": 1}, "essence": {"_count": 3}, "": {"_count": 1}}, "fervor": {"_count": 1, "that": {"_count": 1}}, "china": {"_count": 3, "": {"_count": 1}, "on": {"_count": 1}, "flew": {"_count": 1}}, "Asiatic": {"_count": 1, "AntiVenoms": {"_count": 1}}, "centuries": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "on": {"_count": 1}}, "wiping": {"_count": 1, "out": {"_count": 1}}, "involuntary": {"_count": 1, "twitch": {"_count": 1}}, "freak": {"_count": 1, "and": {"_count": 1}}, "impressed": {"_count": 1, "agreement": {"_count": 1}}, "heliopaths": {"_count": 1, "said": {"_count": 1}}, "They": {"_count": 2, "dont": {"_count": 1}, "both": {"_count": 1}}, "eyewitness": {"_count": 1, "accounts": {"_count": 1}}, "putting": {"_count": 2, "their": {"_count": 1}, "yourself": {"_count": 1}}, "contract": {"_count": 1, "": {"_count": 1}}, "fastening": {"_count": 1, "the": {"_count": 1}}, "Smith": {"_count": 1, "just": {"_count": 1}}, "pheasantfeather": {"_count": 1, "quills": {"_count": 1}}, "quills": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}}, "autumn": {"_count": 1, "sunshine": {"_count": 1}}, "immense": {"_count": 2, "satisfaction": {"_count": 1}, "power": {"_count": 1}}, "secondhand": {"_count": 1, "spellbooks": {"_count": 1}}, "cute": {"_count": 1, "freckles": {"_count": 1}}, "Binnss": {"_count": 1, "door": {"_count": 1}}, "somebody": {"_count": 3, "to": {"_count": 1}, "small": {"_count": 1}, "": {"_count": 1}}, "communication": {"_count": 5, "in": {"_count": 3}, "the": {"_count": 1}, "I": {"_count": 1}}, "burned": {"_count": 1, "rubber": {"_count": 1}}, "sleepless": {"_count": 1, "nights": {"_count": 1}}, "hats": {"_count": 1, "": {"_count": 1}}, "Skiving": {"_count": 1, "Snackbox": {"_count": 1}}, "retching": {"_count": 1, "cheering": {"_count": 1}}, "vomit": {"_count": 2, "hitting": {"_count": 1}, "": {"_count": 1}}, "powdered": {"_count": 1, "griffin": {"_count": 1}}, "croaking": {"_count": 1, "bullfrogs": {"_count": 1}}, "ordering": {"_count": 1, "Dungbombs": {"_count": 1}}, "somebodys": {"_count": 2, "head": {"_count": 1}, "briefcase": {"_count": 1}}, "gossiping": {"_count": 2, "students": {"_count": 1}, "thirdyear": {"_count": 1}}, "shapes": {"_count": 1, "a": {"_count": 1}}, "knobbly": {"_count": 1, "knitted": {"_count": 1}}, "scurvygrass": {"_count": 1, "lovage": {"_count": 1}}, "producing": {"_count": 3, "hotheadedness": {"_count": 2}, "the": {"_count": 1}}, "Requirement": {"_count": 60, "": {"_count": 17}, "and": {"_count": 5}, "is": {"_count": 1}, "for": {"_count": 2}, "while": {"_count": 1}, "working": {"_count": 1}, "during": {"_count": 1}, "opened": {"_count": 1}, "I": {"_count": 1}, "on": {"_count": 2}, "so": {"_count": 2}, "without": {"_count": 1}, "she": {"_count": 1}, "but": {"_count": 2}, "all": {"_count": 1}, "again": {"_count": 2}, "he": {"_count": 1}, "to": {"_count": 1}, "repeated": {"_count": 1}, "trying": {"_count": 1}, "hes": {"_count": 1}, "or": {"_count": 1}, "was": {"_count": 2}, "said": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "vanished": {"_count": 2}, "sweat": {"_count": 1}, "swam": {"_count": 1}, "might": {"_count": 1}, "grew": {"_count": 1}, "the": {"_count": 1}, "had": {"_count": 1}}, "raindrops": {"_count": 1, "hard": {"_count": 1}}, "Barnabas": {"_count": 3, "the": {"_count": 3}}, "Dobbys": {"_count": 4, "Dumbledore": {"_count": 1}, "habits": {"_count": 1}, "grave": {"_count": 2}}, "aged": {"_count": 2, "parchment": {"_count": 1}, "wood": {"_count": 1}}, "instruments": {"_count": 1, "such": {"_count": 1}}, "Common": {"_count": 1, "Curses": {"_count": 1}}, "Jinxes": {"_count": 1, "for": {"_count": 1}}, "appreciative": {"_count": 1, "murmuring": {"_count": 1}}, "shouts": {"_count": 1, "of": {"_count": 1}}, "Expelliarmusl": {"_count": 1, "Wands": {"_count": 1}}, "shoddy": {"_count": 1, "spellwork": {"_count": 1}}, "wands": {"_count": 5, "clattered": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "talisman": {"_count": 1, "inside": {"_count": 1}}, "sportsmanship": {"_count": 1, "were": {"_count": 1}}, "Hey": {"_count": 1, "Potty": {"_count": 1}}, "insults": {"_count": 1, "jeers": {"_count": 1}}, "howling": {"_count": 1, "winds": {"_count": 1}}, "cereals": {"_count": 1, "": {"_count": 1}}, "milk": {"_count": 1, "at": {"_count": 1}}, "Lunas": {"_count": 2, "hat": {"_count": 1}, "bed": {"_count": 1}}, "direct": {"_count": 1, "sunlight": {"_count": 1}}, "Bludger": {"_count": 1, "range": {"_count": 1}}, "Beaters": {"_count": 1, "Fred": {"_count": 1}}, "verses": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "meanwhile": {"_count": 1}}, "Angelina": {"_count": 2, "Alicia": {"_count": 1}, "Katie": {"_count": 1}}, "releasing": {"_count": 2, "George": {"_count": 1}, "him": {"_count": 1}}, "detention": {"_count": 2, "": {"_count": 1}, "every": {"_count": 1}}, "privileges": {"_count": 3, "or": {"_count": 1}, "pertaining": {"_count": 1}, "as": {"_count": 1}}, "purpleandblack": {"_count": 1, "bruises": {"_count": 1}}, "mince": {"_count": 1, "instead": {"_count": 1}}, "satisfaction": {"_count": 2, "": {"_count": 1}, "replaced": {"_count": 1}}, "innocent": {"_count": 2, "determination": {"_count": 1}, "surprise": {"_count": 1}}, "Fangs": {"_count": 1, "mouth": {"_count": 1}}, "face": {"_count": 1, "that": {"_count": 1}}, "roughin": {"_count": 1, "it": {"_count": 1}}, "drawin": {"_count": 1, "attention": {"_count": 1}}, "rapping": {"_count": 1, "on": {"_count": 1}}, "footprints": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "France": {"_count": 1, "fer": {"_count": 1}}, "flesh": {"_count": 3, "stripping": {"_count": 1}, "they": {"_count": 1}, "was": {"_count": 1}}, "comprehension": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "renewed": {"_count": 1, "giggles": {"_count": 1}}, "dimwitted": {"_count": 1, "troll": {"_count": 1}}, "Weasley": {"_count": 7, "Is": {"_count": 6}, "relatives": {"_count": 1}}, "intermittent": {"_count": 1, "cries": {"_count": 1}}, "Impedimental": {"_count": 1, "People": {"_count": 1}}, "nargles": {"_count": 1, "though": {"_count": 1}}, "kissing": {"_count": 2, "would": {"_count": 1}, "him": {"_count": 1}}, "person": {"_count": 3, "cries": {"_count": 1}, "whod": {"_count": 1}, "whereas": {"_count": 1}}, "patted": {"_count": 1, "her": {"_count": 1}}, "frightening": {"_count": 1, "possibilities": {"_count": 1}}, "opportunities": {"_count": 1, "to": {"_count": 1}}, "starry": {"_count": 2, "sky": {"_count": 2}}, "luring": {"_count": 1, "her": {"_count": 1}}, "sleeps": {"_count": 1, "opened": {"_count": 1}}, "emerging": {"_count": 2, "in": {"_count": 1}, "from": {"_count": 1}}, "grim": {"_count": 2, "satisfaction": {"_count": 1}, "understanding": {"_count": 1}}, "protest": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "which": {"_count": 1}}, "duty": {"_count": 1, "": {"_count": 1}}, "tartan": {"_count": 1, "": {"_count": 1}}, "stale": {"_count": 2, "drink": {"_count": 1}, "sweat": {"_count": 1}}, "shoppers": {"_count": 2, "plainly": {"_count": 1}, "": {"_count": 1}}, "electrical": {"_count": 1, "gadgets": {"_count": 1}}, "date": {"_count": 2, "": {"_count": 1}, "copies": {"_count": 1}}, "AARGH": {"_count": 1, "jinx": {"_count": 1}}, "normal": {"_count": 2, "speech": {"_count": 1}, "magic": {"_count": 1}}, "panelled": {"_count": 1, "oak": {"_count": 1}}, "Grimmauld": {"_count": 6, "Place": {"_count": 5}, "Places": {"_count": 1}}, "particularly": {"_count": 3, "uneven": {"_count": 1}, "vicious": {"_count": 1}, "unpleasant": {"_count": 1}}, "Phineas": {"_count": 4, "Nigellus": {"_count": 4}}, "excellent": {"_count": 2, "books": {"_count": 1}, "swear": {"_count": 1}}, "EveryFlavor": {"_count": 1, "Beans": {"_count": 1}}, "den": {"_count": 1, "said": {"_count": 1}}, "assorted": {"_count": 1, "rags": {"_count": 1}}, "gifts": {"_count": 1, "": {"_count": 1}}, "fusewire": {"_count": 1, "and": {"_count": 1}}, "wounds": {"_count": 1, "it": {"_count": 1}}, "mirthless": {"_count": 2, "laughter": {"_count": 2}}, "brutallooking": {"_count": 1, "Healers": {"_count": 1}}, "spattergroit": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "eels": {"_count": 2, "eyes": {"_count": 1}, "all": {"_count": 1}}, "photographs": {"_count": 2, "toward": {"_count": 1}, "": {"_count": 1}}, "fan": {"_count": 1, "mail": {"_count": 1}}, "distracting": {"_count": 1, "the": {"_count": 1}}, "helping": {"_count": 2, "Neville": {"_count": 1}, "himself": {"_count": 1}}, "dogs": {"_count": 1, "said": {"_count": 1}}, "letting": {"_count": 4, "me": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}}, "safety": {"_count": 2, "no": {"_count": 1}, "on": {"_count": 1}}, "brass": {"_count": 2, "bedsteads": {"_count": 1}, "pots": {"_count": 1}}, "mismatched": {"_count": 1, "chairs": {"_count": 1}}, "hairpin": {"_count": 1, "bends": {"_count": 1}}, "robbing": {"_count": 1, "": {"_count": 1}}, "insulting": {"_count": 1, "Harry": {"_count": 1}}, "\u2018mind": {"_count": 1, "reading": {"_count": 1}}, "connection": {"_count": 1, "between": {"_count": 1}}, "resistance": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "emotion": {"_count": 1, "": {"_count": 1}}, "shrieks": {"_count": 1, "of": {"_count": 1}}, "joke": {"_count": 1, "shop": {"_count": 1}}, "invisibility": {"_count": 1, "beyond": {"_count": 1}}, "Gideon": {"_count": 1, "and": {"_count": 1}}, "leaking": {"_count": 1, "Ministry": {"_count": 1}}, "yesterday": {"_count": 1, "evening": {"_count": 1}}, "ketchup": {"_count": 1, "and": {"_count": 1}}, "Devils": {"_count": 2, "Snare": {"_count": 2}}, "Ravenclaws": {"_count": 6, "to": {"_count": 2}, "": {"_count": 2}, "or": {"_count": 1}, "all": {"_count": 1}}, "airiness": {"_count": 1, "he": {"_count": 1}}, "reflected": {"_count": 3, "fame": {"_count": 1}, "gold": {"_count": 1}, "sunlight": {"_count": 1}}, "Screechsnap": {"_count": 1, "seedlings": {"_count": 1}}, "much": {"_count": 2, "renewed": {"_count": 1}, "interest": {"_count": 1}}, "jokes": {"_count": 1, "among": {"_count": 1}}, "Bellatrix": {"_count": 7, "and": {"_count": 2}, "Lestrange": {"_count": 3}, "Lestranges": {"_count": 1}, "looking": {"_count": 1}}, "deflecting": {"_count": 1, "minor": {"_count": 1}}, "aerial": {"_count": 1, "that": {"_count": 1}}, "laughs": {"_count": 1, "you": {"_count": 1}}, "uneaten": {"_count": 1, "toast": {"_count": 1}}, "Portree": {"_count": 1, "is": {"_count": 1}}, "snide": {"_count": 1, "giggles": {"_count": 1}}, "confetti": {"_count": 2, "in": {"_count": 1}, "over": {"_count": 1}}, "coffee": {"_count": 1, "Harry": {"_count": 1}}, "drinking": {"_count": 1, "mates": {"_count": 1}}, "withdrawing": {"_count": 1, "an": {"_count": 1}}, "false": {"_count": 1, "jewels": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "attack": {"_count": 1}}, "firewhisky": {"_count": 5, "down": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "then": {"_count": 1}}, "fee": {"_count": 1, "am": {"_count": 1}}, "Stinksap": {"_count": 1, "was": {"_count": 1}}, "CrumpleHorned": {"_count": 1, "Snorkacks": {"_count": 1}}, "chickenandham": {"_count": 1, "pie": {"_count": 1}}, "havent": {"_count": 1, "they": {"_count": 1}}, "crumble": {"_count": 1, "disappeared": {"_count": 1}}, "six": {"_count": 3, "and": {"_count": 1}, "are": {"_count": 1}, "when": {"_count": 1}}, "Spellmans": {"_count": 3, "Syllabary": {"_count": 3}}, "agony": {"_count": 4, "": {"_count": 1}, "he": {"_count": 1}, "Kreacher": {"_count": 1}, "from": {"_count": 1}}, "memories": {"_count": 1, "of": {"_count": 1}}, "grumbling": {"_count": 1, "resentment": {"_count": 1}}, "mounting": {"_count": 1, "excitement": {"_count": 1}}, "faint": {"_count": 2, "blue": {"_count": 2}}, "Marchs": {"_count": 1, "edition": {"_count": 1}}, "Shock": {"_count": 1, "Spells": {"_count": 1}}, "squeaking": {"_count": 1, "sugar": {"_count": 1}}, "sheer": {"_count": 3, "irritation": {"_count": 1}, "luck": {"_count": 1}, "desperation": {"_count": 1}}, "Rookwood": {"_count": 1, "Harry": {"_count": 1}}, "images": {"_count": 1, "and": {"_count": 1}}, "tall": {"_count": 1, "Slytherins": {"_count": 1}}, "gloating": {"_count": 2, "enjoyment": {"_count": 1}, "pleasure": {"_count": 1}}, "grief": {"_count": 6, "": {"_count": 2}, "dragging": {"_count": 1}, "upon": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}}, "onlookers": {"_count": 2, "toward": {"_count": 1}, "knew": {"_count": 1}}, "Dismissal": {"_count": 1, "signed": {"_count": 1}}, "slanting": {"_count": 1, "shafts": {"_count": 1}}, "humans": {"_count": 1, "said": {"_count": 1}}, "ants": {"_count": 1, "to": {"_count": 1}}, "centaurs": {"_count": 4, "which": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "battle": {"_count": 2, "shines": {"_count": 1}, "": {"_count": 1}}, "fume": {"_count": 1, "and": {"_count": 1}}, "following": {"_count": 1, "them": {"_count": 1}}, "worries": {"_count": 1, "and": {"_count": 1}}, "Fantastic": {"_count": 1, "Beasts": {"_count": 1}}, "nice": {"_count": 1, "arent": {"_count": 1}}, "selfpunishment": {"_count": 1, "made": {"_count": 1}}, "vicious": {"_count": 2, "satisfaction": {"_count": 1}, "anger": {"_count": 1}}, "nods": {"_count": 1, "and": {"_count": 1}}, "several": {"_count": 3, "minutes": {"_count": 1}, "people": {"_count": 1}, "staffing": {"_count": 1}}, "close": {"_count": 1, "set": {"_count": 1}}, "fellow": {"_count": 1, "students": {"_count": 1}}, "Mariettas": {"_count": 1, "face": {"_count": 1}}, "sign": {"_count": 1, "language": {"_count": 1}}, "Kingsley": {"_count": 4, "": {"_count": 1}, "Shacklebolt": {"_count": 3}}, "Requirements": {"_count": 2, "wall": {"_count": 1}, "door": {"_count": 1}}, "warning": {"_count": 1, "at": {"_count": 1}}, "causing": {"_count": 2, "real": {"_count": 1}, "a": {"_count": 1}}, "mayhem": {"_count": 1, "said": {"_count": 1}}, "scudding": {"_count": 1, "white": {"_count": 1}}, "hungry": {"_count": 1, "students": {"_count": 1}}, "adding": {"_count": 1, "milk": {"_count": 1}}, "greenandgold": {"_count": 1, "sparks": {"_count": 1}}, "brilliant": {"_count": 2, "silver": {"_count": 1}, "flame": {"_count": 1}}, "freezing": {"_count": 1, "in": {"_count": 1}}, "business": {"_count": 1, "no": {"_count": 1}}, "escaped": {"_count": 2, "firecrackers": {"_count": 1}, "fireworks": {"_count": 1}}, "advanced": {"_count": 1, "disruption": {"_count": 1}}, "towering": {"_count": 1, "shelves": {"_count": 1}}, "shivering": {"_count": 2, "light": {"_count": 1}, "blue": {"_count": 1}}, "casual": {"_count": 1, "elegance": {"_count": 1}}, "scrap": {"_count": 1, "parchment": {"_count": 1}}, "laughing": {"_count": 2, "girls": {"_count": 1}, "people": {"_count": 1}}, "rumpling": {"_count": 1, "up": {"_count": 1}}, "avid": {"_count": 1, "anticipation": {"_count": 1}}, "purest": {"_count": 2, "loathing": {"_count": 1}, "sunlight": {"_count": 1}}, "mixed": {"_count": 1, "swearwords": {"_count": 1}}, "graying": {"_count": 3, "underpants": {"_count": 1}, "hair": {"_count": 1}, "teeth": {"_count": 1}}, "becoming": {"_count": 3, "Minister": {"_count": 1}, "an": {"_count": 2}}, "inspiration": {"_count": 3, "": {"_count": 2}, "Harry": {"_count": 1}}, "start": {"_count": 1, "thinking": {"_count": 1}}, "pamphlets": {"_count": 2, "leaflets": {"_count": 1}, "that": {"_count": 1}}, "individual": {"_count": 1, "appointments": {"_count": 1}}, "St": {"_count": 3, "": {"_count": 3}}, "when": {"_count": 2, "to": {"_count": 1}, "we": {"_count": 1}}, "disrupting": {"_count": 1, "leisure": {"_count": 1}}, "uproar": {"_count": 1, "why": {"_count": 1}}, "diversion": {"_count": 1, "is": {"_count": 1}}, "whispered": {"_count": 1, "admonitions": {"_count": 1}}, "dire": {"_count": 2, "warnings": {"_count": 1}, "retribution": {"_count": 1}}, "taunts": {"_count": 1, "and": {"_count": 1}}, "maybe": {"_count": 1, "being": {"_count": 1}}, "difference": {"_count": 1, "but": {"_count": 1}}, "taking": {"_count": 5, "this": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}, "matters": {"_count": 1}}, "powder": {"_count": 1, "and": {"_count": 1}}, "ourselves": {"_count": 1, "sometimes": {"_count": 1}}, "removing": {"_count": 1, "it": {"_count": 1}}, "punting": {"_count": 1, "students": {"_count": 1}}, "TroublemakersinChief": {"_count": 1, "": {"_count": 1}}, "chaos": {"_count": 1, "Peeves": {"_count": 1}}, "blackboards": {"_count": 1, "and": {"_count": 1}}, "screaming": {"_count": 1, "students": {"_count": 1}}, "windows": {"_count": 2, "flooded": {"_count": 1}, "as": {"_count": 1}}, "tarantulas": {"_count": 1, "in": {"_count": 1}}, "cackling": {"_count": 1, "and": {"_count": 1}}, "thorn": {"_count": 1, "through": {"_count": 1}}, "fence": {"_count": 1, "or": {"_count": 1}}, "bracken": {"_count": 1, "": {"_count": 1}}, "makes": {"_count": 1, "you": {"_count": 1}}, "misshapen": {"_count": 1, "yellow": {"_count": 1}}, "halfbricks": {"_count": 1, "": {"_count": 1}}, "apparent": {"_count": 1, "displeasure": {"_count": 1}}, "further": {"_count": 3, "falling": {"_count": 1}, "Horcrux": {"_count": 1}, "harm": {"_count": 1}}, "needles": {"_count": 1, "and": {"_count": 1}}, "detached": {"_count": 2, "pleasure": {"_count": 1}, "satisfaction": {"_count": 1}}, "foals": {"_count": 1, "is": {"_count": 1}}, "mules": {"_count": 1, "like": {"_count": 1}}, "nettles": {"_count": 2, "they": {"_count": 1}, "and": {"_count": 1}}, "clear": {"_count": 2, "blue": {"_count": 1}, "liquid": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "twig": {"_count": 2, "and": {"_count": 2}}, "murderous": {"_count": 1, "centaurs": {"_count": 1}}, "jabbering": {"_count": 1, "Hufflepuffs": {"_count": 1}}, "greenandsilverclad": {"_count": 1, "Slytherins": {"_count": 1}}, "Daviess": {"_count": 1, "so": {"_count": 1}}, "temper": {"_count": 2, "than": {"_count": 1}, "": {"_count": 1}}, "total": {"_count": 3, "incredulity": {"_count": 1}, "devastation": {"_count": 1}, "submersion": {"_count": 1}}, "Intermediate": {"_count": 1, "Transfiguration": {"_count": 1}}, "diagrams": {"_count": 1, "showing": {"_count": 1}}, "opera": {"_count": 1, "glasses": {"_count": 1}}, "interrogating": {"_count": 1, "people": {"_count": 1}}, "Baruffios": {"_count": 1, "Brain": {"_count": 1}}, "post": {"_count": 1, "next": {"_count": 1}}, "Achievements": {"_count": 1, "in": {"_count": 1}}, "flamingos": {"_count": 1, "causing": {"_count": 1}}, "Jupiters": {"_count": 1, "moons": {"_count": 1}}, "starving": {"_count": 1, "BlastEnded": {"_count": 1}}, "goblin": {"_count": 1, "riots": {"_count": 1}}, "Liechtenstein": {"_count": 3, "refused": {"_count": 1}, "because": {"_count": 1}, "": {"_count": 1}}, "examinations": {"_count": 1, "": {"_count": 1}}, "row": {"_count": 2, "ninetyseven": {"_count": 2}}, "workers": {"_count": 1, "": {"_count": 1}}, "Aurors": {"_count": 5, "undetected": {"_count": 1}, "dedicated": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "will": {"_count": 1}}, "reasons": {"_count": 1, "": {"_count": 1}}, "Myst": {"_count": 1, "": {"_count": 1}}, "VVoldemorts": {"_count": 1, "Harry": {"_count": 1}}, "Garroting": {"_count": 1, "Gas": {"_count": 1}}, "solidarity": {"_count": 1, "and": {"_count": 1}}, "suffocation": {"_count": 1, "": {"_count": 1}}, "struggling": {"_count": 2, "students": {"_count": 1}, "limbs": {"_count": 1}}, "tedious": {"_count": 2, "paperwork": {"_count": 1}, "hard": {"_count": 1}}, "worse": {"_count": 1, "turmoil": {"_count": 1}}, "anguish": {"_count": 1, "but": {"_count": 1}}, "eagerness": {"_count": 1, "and": {"_count": 1}}, "exams": {"_count": 1, "not": {"_count": 1}}, "uncertainty": {"_count": 1, "in": {"_count": 1}}, "hooves": {"_count": 3, "": {"_count": 1}, "surrounding": {"_count": 1}, "as": {"_count": 1}}, "bowstrings": {"_count": 1, "around": {"_count": 1}}, "land": {"_count": 1, "An": {"_count": 1}}, "midair": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "approval": {"_count": 3, "met": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "Grawp": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "or": {"_count": 1}}, "bows": {"_count": 2, "and": {"_count": 2}}, "branches": {"_count": 1, "": {"_count": 1}}, "Grawps": {"_count": 1, "blood": {"_count": 1}}, "transport": {"_count": 3, "whatsoever": {"_count": 1}, "that": {"_count": 1}, "left": {"_count": 1}}, "Stunners": {"_count": 1, "a": {"_count": 1}}, "lodging": {"_count": 1, "his": {"_count": 1}}, "knees": {"_count": 2, "tighten": {"_count": 1}, "obscured": {"_count": 1}}, "position": {"_count": 1, "just": {"_count": 1}}, "buildings": {"_count": 1, "streams": {"_count": 1}}, "headlights": {"_count": 1, "like": {"_count": 1}}, "dreaming": {"_count": 2, "about": {"_count": 1}, "and": {"_count": 1}}, "deepgreen": {"_count": 1, "water": {"_count": 1}}, "beauty": {"_count": 1, "about": {"_count": 1}}, "minuscule": {"_count": 1, "marching": {"_count": 1}}, "blueglowing": {"_count": 1, "candles": {"_count": 1}}, "shelf": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Lucius": {"_count": 5, "Malfoy": {"_count": 4}, "Malfoys": {"_count": 1}}, "prophecy": {"_count": 2, "are": {"_count": 1}, "": {"_count": 1}}, "crashing": {"_count": 1, "glass": {"_count": 1}}, "Prophecy": {"_count": 6, "both": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 2}, "has": {"_count": 1}}, "variously": {"_count": 1, "shaped": {"_count": 1}}, "Look": {"_count": 1, "out": {"_count": 1}}, "bow": {"_count": 1, "": {"_count": 1}}, "planets": {"_count": 1, "it": {"_count": 1}}, "frenzied": {"_count": 1, "tap": {"_count": 1}}, "Stunning": {"_count": 1, "Spells": {"_count": 1}}, "Dubbledorel": {"_count": 1, "said": {"_count": 1}}, "electric": {"_count": 1, "charge": {"_count": 1}}, "Bellatrixs": {"_count": 2, "robes": {"_count": 1}, "most": {"_count": 1}}, "preparation": {"_count": 1, "months": {"_count": 1}}, "effort": {"_count": 1, "": {"_count": 1}}, "destroying": {"_count": 4, "a": {"_count": 2}, "it": {"_count": 1}, "them": {"_count": 1}}, "whimper": {"_count": 1, "staring": {"_count": 1}}, "playing": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "damage": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "if": {"_count": 1}, "cannot": {"_count": 1}}, "Armando": {"_count": 3, "Dippet": {"_count": 3}}, "headmaster": {"_count": 1, "and": {"_count": 1}}, "Arthur": {"_count": 1, "Weasleys": {"_count": 1}}, "even": {"_count": 1, "greater": {"_count": 1}}, "banning": {"_count": 1, "him": {"_count": 1}}, "father": {"_count": 1, "and": {"_count": 1}}, "dreadful": {"_count": 1, "guilt": {"_count": 1}}, "exhaustion": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "nameless": {"_count": 1, "and": {"_count": 1}}, "thirteen": {"_count": 1, "my": {"_count": 1}}, "Godric": {"_count": 5, "Gryffindor": {"_count": 5}}, "recalling": {"_count": 1, "it": {"_count": 1}}, "conquering": {"_count": 1, "Lord": {"_count": 1}}, "parents": {"_count": 2, "having": {"_count": 1}, "were": {"_count": 1}}, "nature": {"_count": 1, "": {"_count": 1}}, "followers": {"_count": 1, "known": {"_count": 1}}, "Dr": {"_count": 1, "": {"_count": 1}}, "truth": {"_count": 3, "": {"_count": 2}, "were": {"_count": 1}}, "Frogs": {"_count": 1, "beside": {"_count": 1}}, "Trelawney": {"_count": 1, "for": {"_count": 1}}, "sapphires": {"_count": 1, "fell": {"_count": 1}}, "juice": {"_count": 2, "": {"_count": 2}}, "hastening": {"_count": 1, "his": {"_count": 1}}, "yerself": {"_count": 1, "then": {"_count": 1}}, "passersby": {"_count": 1, "behind": {"_count": 1}}, "shrubs": {"_count": 1, "and": {"_count": 1}}, "pity": {"_count": 6, "intensified": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 2}, "mingled": {"_count": 1}, "he": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "articles": {"_count": 1, "about": {"_count": 1}}, "would": {"_count": 1, "fill": {"_count": 1}}, "oddballs": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 1, "who": {"_count": 1}}, "policemen": {"_count": 1, "that": {"_count": 1}}, "That": {"_count": 1, "can": {"_count": 1}}, "sleep": {"_count": 1, "during": {"_count": 1}}, "muddybrown": {"_count": 1, "canvas": {"_count": 1}}, "considerable": {"_count": 1, "panic": {"_count": 1}}, "amber": {"_count": 1, "liquid": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "smugness": {"_count": 2, "at": {"_count": 1}, "excitement": {"_count": 1}}, "materializing": {"_count": 1, "out": {"_count": 1}}, "Misinformation": {"_count": 1, "has": {"_count": 1}}, "Obliviators": {"_count": 1, "out": {"_count": 1}}, "publicity": {"_count": 1, "": {"_count": 1}}, "law": {"_count": 1, "and": {"_count": 1}}, "tawny": {"_count": 1, "hair": {"_count": 1}}, "wirerimmed": {"_count": 1, "spectacles": {"_count": 1}}, "shrewdness": {"_count": 1, "and": {"_count": 1}}, "Healers": {"_count": 1, "from": {"_count": 1}}, "developments": {"_count": 1, "Prime": {"_count": 1}}, "hysteria": {"_count": 1, "in": {"_count": 1}}, "neglect": {"_count": 1, "as": {"_count": 1}}, "bloodred": {"_count": 1, "wine": {"_count": 1}}, "jail": {"_count": 1, "it": {"_count": 1}}, "interrupting": {"_count": 2, "why": {"_count": 1}, "": {"_count": 1}}, "dangers": {"_count": 1, "": {"_count": 1}}, "Emmeline": {"_count": 1, "Vance": {"_count": 1}}, "tight": {"_count": 2, "corners": {"_count": 1}, "spots": {"_count": 1}}, "triumphant": {"_count": 2, "laughter": {"_count": 1}, "trickery": {"_count": 1}}, "untidy": {"_count": 1, "black": {"_count": 1}}, "newspapers": {"_count": 3, "sat": {"_count": 1}, "sitting": {"_count": 1}, "Harry": {"_count": 1}}, "Scrimgeour": {"_count": 3, "taking": {"_count": 1}, "was": {"_count": 1}, "before": {"_count": 1}}, "countercurses": {"_count": 1, "and": {"_count": 1}}, "emergency": {"_count": 1, "measures": {"_count": 1}}, "crisps": {"_count": 1, "across": {"_count": 1}}, "trainers": {"_count": 1, "in": {"_count": 1}}, "reminding": {"_count": 1, "Aunt": {"_count": 1}}, "benign": {"_count": 1, "interest": {"_count": 1}}, "foolishness": {"_count": 1, "": {"_count": 1}}, "honeycolored": {"_count": 1, "liquid": {"_count": 1}}, "Vernons": {"_count": 1, "head": {"_count": 1}}, "\u2018Black": {"_count": 1, "": {"_count": 1}}, "unpleasant": {"_count": 1, "retorts": {"_count": 1}}, "wont": {"_count": 1, "wont": {"_count": 1}}, "owning": {"_count": 1, "him": {"_count": 1}}, "frantic": {"_count": 1, "gulping": {"_count": 1}}, "colorchange": {"_count": 1, "ink": {"_count": 1}}, "occasions": {"_count": 1, "is": {"_count": 1}}, "chill": {"_count": 1, "emanating": {"_count": 1}}, "insight": {"_count": 1, "into": {"_count": 1}}, "Budleigh": {"_count": 1, "Babberton": {"_count": 1}}, "denying": {"_count": 1, "us": {"_count": 1}}, "Inferi": {"_count": 3, "to": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "lilac": {"_count": 3, "silk": {"_count": 1}, "by": {"_count": 1}, "described": {"_count": 1}}, "hurting": {"_count": 2, "his": {"_count": 1}, "one": {"_count": 1}}, "chocolates": {"_count": 1, "and": {"_count": 1}}, "Sneakoscopes": {"_count": 1, "and": {"_count": 1}}, "touch": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "derision": {"_count": 1, "out": {"_count": 1}}, "club": {"_count": 1, "of": {"_count": 1}}, "benefit": {"_count": 1, "in": {"_count": 1}}, "words": {"_count": 2, "he": {"_count": 2}}, "showering": {"_count": 1, "you": {"_count": 1}}, "inconvenience": {"_count": 1, "to": {"_count": 1}}, "sleepy": {"_count": 1, "chickens": {"_count": 1}}, "bubblegumpink": {"_count": 1, "hair": {"_count": 1}}, "Counterfeit": {"_count": 2, "Defensive": {"_count": 2}}, "cursed": {"_count": 1, "Sneakoscopes": {"_count": 1}}, "sheets": {"_count": 1, "in": {"_count": 1}}, "soup": {"_count": 1, "in": {"_count": 1}}, "unmarked": {"_count": 1, "sealed": {"_count": 1}}, "perfection": {"_count": 1, "she": {"_count": 1}}, "decisions": {"_count": 1, "theyd": {"_count": 1}}, "glamour": {"_count": 1, "": {"_count": 1}}, "mental": {"_count": 1, "thing": {"_count": 1}}, "right": {"_count": 3, "werent": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}}, "regret": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "there": {"_count": 1}}, "survival": {"_count": 1, "if": {"_count": 1}}, "disappearances": {"_count": 1, "odd": {"_count": 1}}, "deaths": {"_count": 1, "now": {"_count": 1}}, "dementor": {"_count": 1, "attacks": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "Rubeus": {"_count": 1, "Hagrid": {"_count": 1}}, "Florean": {"_count": 1, "Fortescues": {"_count": 1}}, "shabbylooking": {"_count": 1, "stalls": {"_count": 1}}, "scum": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "witchs": {"_count": 1, "and": {"_count": 1}}, "owl": {"_count": 2, "nuts": {"_count": 2}}, "Weasleys": {"_count": 2, "Wizard": {"_count": 2}}, "goods": {"_count": 1, "that": {"_count": 1}}, "moan": {"_count": 1, "beside": {"_count": 1}}, "trick": {"_count": 1, "wands": {"_count": 1}}, "briefs": {"_count": 1, "when": {"_count": 1}}, "delighted": {"_count": 3, "tenyearolds": {"_count": 1}, "incredulity": {"_count": 1}, "surprise": {"_count": 1}}, "gallows": {"_count": 1, "both": {"_count": 1}}, "card": {"_count": 1, "and": {"_count": 1}}, "Shield": {"_count": 1, "Cloaks": {"_count": 1}}, "weirdlooking": {"_count": 1, "black": {"_count": 1}}, "violently": {"_count": 1, "pink": {"_count": 1}}, "round": {"_count": 1, "balls": {"_count": 1}}, "sinister": {"_count": 1, "objects": {"_count": 1}}, "Mystery": {"_count": 1, "": {"_count": 1}}, "discussing": {"_count": 1, "it": {"_count": 1}}, "Advanced": {"_count": 25, "Rune": {"_count": 1}, "PotionMaking": {"_count": 21}, "Potion": {"_count": 3}}, "Phlegm": {"_count": 1, "around": {"_count": 1}}, "selfpeeling": {"_count": 1, "sprouts": {"_count": 1}}, "gaping": {"_count": 1, "and": {"_count": 1}}, "free": {"_count": 1, "Spectrespecs": {"_count": 1}}, "silently": {"_count": 1, "staring": {"_count": 1}}, "psychedelic": {"_count": 1, "spectacles": {"_count": 1}}, "lunch": {"_count": 1, "in": {"_count": 1}}, "makeup": {"_count": 1, "that": {"_count": 1}}, "Slughorns": {"_count": 3, "welcome": {"_count": 1}, "party": {"_count": 1}, "office": {"_count": 1}}, "rolls": {"_count": 1, "": {"_count": 1}}, "pheasant": {"_count": 3, "in": {"_count": 1}, "until": {"_count": 1}, "then": {"_count": 1}}, "pies": {"_count": 1, "somehow": {"_count": 1}}, "Zabini": {"_count": 1, "s": {"_count": 1}}, "boys": {"_count": 2, "like": {"_count": 1}, "but": {"_count": 1}}, "devotion": {"_count": 1, "he": {"_count": 1}}, "unfriendly": {"_count": 1, "Slytherins": {"_count": 1}}, "thestraldrawn": {"_count": 1, "carriages": {"_count": 1}}, "helpfulness": {"_count": 1, "I": {"_count": 1}}, "thumbscrews": {"_count": 1, "": {"_count": 1}}, "Severus": {"_count": 3, "Snape": {"_count": 2}, "then": {"_count": 1}}, "tinkling": {"_count": 1, "plates": {"_count": 1}}, "gateau": {"_count": 1, "": {"_count": 1}}, "evenings": {"_count": 1, "to": {"_count": 1}}, "shepherding": {"_count": 1, "the": {"_count": 1}}, "mission": {"_count": 1, "would": {"_count": 1}}, "Confronting": {"_count": 1, "the": {"_count": 1}}, "nonverbal": {"_count": 2, "spells": {"_count": 2}}, "break": {"_count": 1, "speculating": {"_count": 1}}, "vapors": {"_count": 1, "and": {"_count": 1}}, "Potioneers": {"_count": 1, "": {"_count": 1}}, "obsessive": {"_count": 1, "love": {"_count": 1}}, "Felix": {"_count": 7, "Felicis": {"_count": 6}, "said": {"_count": 1}}, "bluish": {"_count": 1, "steam": {"_count": 1}}, "instructions": {"_count": 1, "": {"_count": 1}}, "incredulous": {"_count": 1, "delight": {"_count": 1}}, "page": {"_count": 1, "fiftytwo": {"_count": 1}}, "Re": {"_count": 1, "materialization": {"_count": 1}}, "dirtylooking": {"_count": 1, "playing": {"_count": 1}}, "spades": {"_count": 4, "conflict": {"_count": 1}, "an": {"_count": 1}, "violence": {"_count": 1}, "a": {"_count": 1}}, "accusation": {"_count": 1, "from": {"_count": 1}}, "memory": {"_count": 4, "into": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}, "came": {"_count": 1}}, "wildest": {"_count": 1, "guesswork": {"_count": 1}}, "velvety": {"_count": 2, "green": {"_count": 1}, "blackness": {"_count": 1}}, "Ogden": {"_count": 3, "who": {"_count": 2}, "on": {"_count": 1}}, "disagreeing": {"_count": 1, "but": {"_count": 1}}, "squalidlooking": {"_count": 1, "pots": {"_count": 1}}, "muck": {"_count": 1, "": {"_count": 1}}, "purebloods": {"_count": 1, "wizards": {"_count": 1}}, "Morfin": {"_count": 2, "Morfin": {"_count": 1}, "by": {"_count": 1}}, "incomprehensible": {"_count": 1, "hissing": {"_count": 1}}, "instability": {"_count": 1, "and": {"_count": 1}}, "marrying": {"_count": 1, "their": {"_count": 1}}, "sense": {"_count": 1, "coupled": {"_count": 1}}, "arrogance": {"_count": 1, "and": {"_count": 1}}, "family": {"_count": 1, "heirlooms": {"_count": 1}}, "blissful": {"_count": 1, "relaxation": {"_count": 1}}, "practicing": {"_count": 1, "nonverbal": {"_count": 1}}, "kipper": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "disdain": {"_count": 1, "before": {"_count": 1}}, "Herbology": {"_count": 1, "to": {"_count": 1}}, "McLaggen": {"_count": 3, "and": {"_count": 1}, "You": {"_count": 1}, "so": {"_count": 1}}, "doxy": {"_count": 1, "eggs": {"_count": 1}}, "spin": {"_count": 1, "on": {"_count": 1}}, "mahoganybrown": {"_count": 1, "tea": {"_count": 1}}, "maggots": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "supper": {"_count": 1, "tonight": {"_count": 1}}, "apothecaries": {"_count": 1, "and": {"_count": 1}}, "persuading": {"_count": 1, "Snape": {"_count": 1}}, "wintry": {"_count": 1, "disapproval": {"_count": 1}}, "crystalized": {"_count": 4, "pineapple": {"_count": 4}}, "grubbylooking": {"_count": 1, "objects": {"_count": 1}}, "warlocks": {"_count": 3, "sitting": {"_count": 1}, "into": {"_count": 1}, "having": {"_count": 1}}, "agreeing": {"_count": 1, "to": {"_count": 1}}, "blame": {"_count": 1, "at": {"_count": 1}}, "awful": {"_count": 1, "finality": {"_count": 1}}, "Katies": {"_count": 2, "fate": {"_count": 1}, "substitute": {"_count": 1}}, "feigning": {"_count": 1, "deafness": {"_count": 1}}, "story": {"_count": 1, "all": {"_count": 1}}, "Marvolos": {"_count": 2, "treasured": {"_count": 1}, "last": {"_count": 1}}, "plum": {"_count": 1, "velvet": {"_count": 1}}, "iron": {"_count": 1, "gates": {"_count": 1}}, "perfectly": {"_count": 1, "blank": {"_count": 1}}, "gin": {"_count": 6, "and": {"_count": 2}, "": {"_count": 3}, "slopping": {"_count": 1}}, "Tom": {"_count": 4, "Riddles": {"_count": 1}, "Riddle": {"_count": 3}}, "grayish": {"_count": 1, "tunic": {"_count": 1}}, "threadbare": {"_count": 1, "clothes": {"_count": 1}}, "stolen": {"_count": 2, "objects": {"_count": 1}, "articles": {"_count": 1}}, "equipment": {"_count": 1, "and": {"_count": 1}}, "Toms": {"_count": 1, "muttered": {"_count": 1}}, "\u2018Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "secateurs": {"_count": 1, "Harry": {"_count": 1}}, "vines": {"_count": 1, "and": {"_count": 1}}, "unfortunately": {"_count": 1, "he": {"_count": 1}}, "FleshEating": {"_count": 1, "Trees": {"_count": 1}}, "tubers": {"_count": 2, "wriggling": {"_count": 1}, "had": {"_count": 1}}, "snogging": {"_count": 1, "done": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "toadspawn": {"_count": 1, "": {"_count": 1}}, "shattering": {"_count": 1, "glass": {"_count": 1}}, "trust": {"_count": 2, "": {"_count": 2}}, "Smiths": {"_count": 1, "commentary": {"_count": 1}}, "letdown": {"_count": 1, "he": {"_count": 1}}, "twittering": {"_count": 1, "yellow": {"_count": 1}}, "bravado": {"_count": 1, "and": {"_count": 1}}, "fat": {"_count": 1, "golden": {"_count": 1}}, "Lavender": {"_count": 3, "Brown": {"_count": 2}, "and": {"_count": 1}}, "Quintessence": {"_count": 1, "aware": {"_count": 1}}, "silence": {"_count": 4, "I": {"_count": 1}, "or": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "Romilda": {"_count": 1, "Vane": {"_count": 1}}, "mirrors": {"_count": 1, "they": {"_count": 1}}, "canaries": {"_count": 1, "": {"_count": 1}}, "gossip": {"_count": 1, "": {"_count": 1}}, "spangled": {"_count": 1, "silver": {"_count": 1}}, "houseelves": {"_count": 4, "were": {"_count": 1}, "and": {"_count": 1}, "far": {"_count": 1}, "": {"_count": 1}}, "Blood": {"_count": 1, "Brothers": {"_count": 1}}, "Firenze": {"_count": 1, "Harry": {"_count": 1}}, "ability": {"_count": 1, "I": {"_count": 1}}, "mischiefdetection": {"_count": 1, "in": {"_count": 1}}, "outraged": {"_count": 1, "disappointment": {"_count": 1}}, "sprouts": {"_count": 1, "for": {"_count": 1}}, "hitherto": {"_count": 1, "unsuspected": {"_count": 1}}, "Hot": {"_count": 3, "Strong": {"_count": 3}}, "months": {"_count": 2, "I": {"_count": 1}, "however": {"_count": 1}}, "Me": {"_count": 1, "": {"_count": 1}}, "incomprehension": {"_count": 1, "": {"_count": 1}}, "reasoned": {"_count": 1, "argument": {"_count": 1}}, "adopting": {"_count": 1, "": {"_count": 1}}, "fashion": {"_count": 1, "like": {"_count": 1}}, "werewolves": {"_count": 1, "and": {"_count": 1}}, "bitten": {"_count": 1, "children": {"_count": 1}}, "giving": {"_count": 1, "Kreacher": {"_count": 1}}, "confidences": {"_count": 1, "I": {"_count": 1}}, "parting": {"_count": 2, "": {"_count": 1}, "probably": {"_count": 1}}, "McGonagalls": {"_count": 1, "office": {"_count": 1}}, "drunk": {"_count": 1, "monks": {"_count": 1}}, "Won": {"_count": 1, "Won": {"_count": 1}}, "vertical": {"_count": 1, "wrestling": {"_count": 1}}, "fivehundred": {"_count": 1, "year": {"_count": 1}}, "nerve": {"_count": 1, "asking": {"_count": 1}}, "Apparition": {"_count": 4, "Lessons": {"_count": 1}, "": {"_count": 3}}, "store": {"_count": 1, "was": {"_count": 1}}, "Scrimgeours": {"_count": 2, "appointment": {"_count": 1}, "murder": {"_count": 1}}, "friends": {"_count": 2, "": {"_count": 1}, "got": {"_count": 1}}, "selfimportance": {"_count": 1, "": {"_count": 1}}, "Parseltongue": {"_count": 1, "in": {"_count": 1}}, "outward": {"_count": 1, "arrogance": {"_count": 1}}, "overwhelming": {"_count": 1, "evidence": {"_count": 1}}, "dedicated": {"_count": 1, "friends": {"_count": 1}}, "cruelty": {"_count": 1, "": {"_count": 1}}, "prefects": {"_count": 1, "in": {"_count": 1}}, "crusted": {"_count": 1, "pots": {"_count": 1}}, "skilled": {"_count": 1, "Legilimency": {"_count": 1}}, "Slughorn": {"_count": 3, "with": {"_count": 1}, "and": {"_count": 2}}, "selecting": {"_count": 1, "antidotes": {"_count": 1}}, "antidotes": {"_count": 1, "Just": {"_count": 1}}, "bezoars": {"_count": 1, "": {"_count": 1}}, "Professors": {"_count": 1, "McGonagall": {"_count": 1}}, "space": {"_count": 4, "in": {"_count": 1}, "actually": {"_count": 1}, "": {"_count": 2}}, "staggering": {"_count": 1, "people": {"_count": 1}}, "pirouetting": {"_count": 1, "leap": {"_count": 1}}, "random": {"_count": 2, "body": {"_count": 1}, "words": {"_count": 1}}, "tingling": {"_count": 2, "in": {"_count": 1}, "warmth": {"_count": 1}}, "apparently": {"_count": 2, "blank": {"_count": 1}, "painful": {"_count": 1}}, "singed": {"_count": 1, "material": {"_count": 1}}, "pants": {"_count": 1, "": {"_count": 1}}, "illfeeling": {"_count": 1, "toward": {"_count": 1}}, "nicknames": {"_count": 1, "for": {"_count": 1}}, "March": {"_count": 1, "by": {"_count": 1}}, "lucky": {"_count": 1, "potion": {"_count": 1}}, "common": {"_count": 1, "sense": {"_count": 1}}, "disappointed": {"_count": 1, "love": {"_count": 1}}, "buying": {"_count": 1, "Zonkos": {"_count": 1}}, "rue": {"_count": 1, "": {"_count": 1}}, "Mag": {"_count": 1, "Dont": {"_count": 1}}, "Argus": {"_count": 1, "Filch": {"_count": 1}}, "hints": {"_count": 1, "that": {"_count": 1}}, "indepth": {"_count": 1, "chats": {"_count": 1}}, "girlfriends": {"_count": 1, "while": {"_count": 1}}, "\u2018overexertion": {"_count": 1, "said": {"_count": 1}}, "badly": {"_count": 1, "suppressed": {"_count": 1}}, "thrilled": {"_count": 1, "that": {"_count": 1}}, "lamplight": {"_count": 1, "above": {"_count": 1}}, "regrowing": {"_count": 1, "an": {"_count": 1}}, "bones": {"_count": 1, "in": {"_count": 1}}, "scuffling": {"_count": 2, "and": {"_count": 1}, "from": {"_count": 1}}, "wart": {"_count": 1, "plasters": {"_count": 1}}, "swirling": {"_count": 1, "memory": {"_count": 1}}, "retrieving": {"_count": 1, "the": {"_count": 1}}, "diving": {"_count": 1, "into": {"_count": 1}}, "Hokey": {"_count": 1, "": {"_count": 1}}, "job": {"_count": 1, "": {"_count": 1}}, "Galatea": {"_count": 1, "Merrythought": {"_count": 1}}, "Hepzibah": {"_count": 3, "Smith": {"_count": 2}, "s": {"_count": 1}}, "goldembossed": {"_count": 1, "books": {"_count": 1}}, "orbs": {"_count": 1, "and": {"_count": 1}}, "roses": {"_count": 1, "from": {"_count": 1}}, "corsets": {"_count": 1, "and": {"_count": 1}}, "powers": {"_count": 2, "its": {"_count": 1}, "attributed": {"_count": 1}}, "poisoning": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "Hogwartss": {"_count": 2, "founders": {"_count": 1}, "secrets": {"_count": 1}}, "Minister": {"_count": 2, "Three": {"_count": 1}, "of": {"_count": 1}}, "pleasant": {"_count": 1, "expectancy": {"_count": 1}}, "servants": {"_count": 1, "": {"_count": 1}}, "April": {"_count": 1, "had": {"_count": 1}}, "signing": {"_count": 1, "up": {"_count": 1}}, "slipping": {"_count": 3, "him": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}}, "quill": {"_count": 1, "are": {"_count": 1}}, "fell": {"_count": 1, "apart": {"_count": 1}}, "tricking": {"_count": 1, "him": {"_count": 1}}, "messing": {"_count": 1, "around": {"_count": 1}}, "mundanely": {"_count": 1, "blank": {"_count": 1}}, "I": {"_count": 3, "need": {"_count": 1}, "dont": {"_count": 1}, "think": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "approaching": {"_count": 2, "summer": {"_count": 1}, "him": {"_count": 1}}, "saving": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "An": {"_count": 1, "Elixir": {"_count": 1}}, "peppermint": {"_count": 1, "havent": {"_count": 1}}, "excessive": {"_count": 1, "singing": {"_count": 1}}, "infinite": {"_count": 1, "opportunity": {"_count": 1}}, "Insanity": {"_count": 1, "": {"_count": 1}}, "elation": {"_count": 1, "increasing": {"_count": 1}}, "leafy": {"_count": 1, "plants": {"_count": 1}}, "edible": {"_count": 1, "flesh": {"_count": 1}}, "arachnids": {"_count": 1, "whose": {"_count": 1}}, "crash": {"_count": 1, "onto": {"_count": 1}}, "bowtruckle": {"_count": 1, "husbandry": {"_count": 1}}, "drink": {"_count": 1, "that": {"_count": 1}}, "To": {"_count": 1, "friendship": {"_count": 1}}, "reluctant": {"_count": 1, "people": {"_count": 1}}, "violation": {"_count": 1, "it": {"_count": 1}}, "soul": {"_count": 10, "I": {"_count": 1}, "concealed": {"_count": 1}, "is": {"_count": 1}, "will": {"_count": 1}, "in": {"_count": 2}, "inside": {"_count": 2}, "trapped": {"_count": 1}, "unmissed": {"_count": 1}}, "seemly": {"_count": 1, "modesty": {"_count": 1}}, "Portkeys": {"_count": 1, "Harry": {"_count": 1}}, "stupendous": {"_count": 1, "importance": {"_count": 1}}, "fingers": {"_count": 1, "that": {"_count": 1}}, "collecting": {"_count": 1, "four": {"_count": 1}}, "eleven": {"_count": 2, "when": {"_count": 1}, "on": {"_count": 1}}, "seventh": {"_count": 1, "years": {"_count": 1}}, "thrashing": {"_count": 1, "Ravenclaw": {"_count": 1}}, "rival": {"_count": 1, "Houses": {"_count": 1}}, "euphoria": {"_count": 1, "and": {"_count": 1}}, "scarring": {"_count": 1, "but": {"_count": 1}}, "guide": {"_count": 1, "and": {"_count": 1}}, "mishandled": {"_count": 1, "magic": {"_count": 1}}, "congealed": {"_count": 1, "potions": {"_count": 1}}, "hidden": {"_count": 2, "junk": {"_count": 1}, "objects": {"_count": 1}}, "commentary": {"_count": 1, "or": {"_count": 1}}, "Remus": {"_count": 1, "Lupin": {"_count": 1}}, "celebration": {"_count": 1, "erupted": {"_count": 1}}, "laying": {"_count": 1, "hands": {"_count": 1}}, "Jimmy": {"_count": 1, "Peakes": {"_count": 1}}, "whooping": {"_count": 1, "voices": {"_count": 1}}, "retelling": {"_count": 1, "her": {"_count": 1}}, "doom": {"_count": 1, "": {"_count": 1}}, "cartomancy": {"_count": 1, "": {"_count": 1}}, "calling": {"_count": 1, "upon": {"_count": 1}}, "restraint": {"_count": 1, "to": {"_count": 1}}, "accompanying": {"_count": 1, "Dumbledore": {"_count": 1}}, "balledup": {"_count": 1, "socks": {"_count": 1}}, "disguising": {"_count": 1, "ones": {"_count": 1}}, "sorts": {"_count": 1, "about": {"_count": 1}}, "terrorizing": {"_count": 1, "them": {"_count": 1}}, "jagged": {"_count": 1, "niches": {"_count": 1}}, "salt": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "ineptitude": {"_count": 1, "than": {"_count": 1}}, "smooth": {"_count": 2, "glassy": {"_count": 1}, "rock": {"_count": 1}}, "demons": {"_count": 1, "kelpies": {"_count": 1}}, "tentacles": {"_count": 1, "rising": {"_count": 1}}, "wisdom": {"_count": 1, "": {"_count": 1}}, "flat": {"_count": 1, "dark": {"_count": 1}}, "thirst": {"_count": 1, "but": {"_count": 1}}, "defending": {"_count": 1, "himself": {"_count": 1}}, "passage": {"_count": 1, "between": {"_count": 1}}, "Rosmertas": {"_count": 1, "": {"_count": 1}}, "bewildered": {"_count": 1, "and": {"_count": 1}}, "thankfulness": {"_count": 1, "Harry": {"_count": 1}}, "folded": {"_count": 1, "parchment": {"_count": 1}}, "flowery": {"_count": 1, "scent": {"_count": 1}}, "trances": {"_count": 1, "turning": {"_count": 1}}, "Vanishing": {"_count": 1, "Cabinets": {"_count": 1}}, "Darkness": {"_count": 1, "Powder": {"_count": 1}}, "curse": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "Bill": {"_count": 5, "you": {"_count": 1}, "Fleur": {"_count": 2}, "and": {"_count": 2}}, "Lupins": {"_count": 2, "robes": {"_count": 1}, "cloak": {"_count": 1}}, "Tonkss": {"_count": 2, "Patronus": {"_count": 1}, "parents": {"_count": 1}}, "reasonably": {"_count": 1, "wellknown": {"_count": 1}}, "loophole": {"_count": 1, "some": {"_count": 1}}, "mothballs": {"_count": 1, "": {"_count": 1}}, "sorrowful": {"_count": 1, "understanding": {"_count": 1}}, "delicacy": {"_count": 1, "The": {"_count": 1}}, "protection": {"_count": 1, "you": {"_count": 1}}, "peace": {"_count": 1, "left": {"_count": 1}}, "overhanging": {"_count": 1, "trees": {"_count": 1}}, "impressive": {"_count": 1, "wroughtiron": {"_count": 1}}, "salute": {"_count": 1, "and": {"_count": 1}}, "late": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "jeering": {"_count": 1, "laughter": {"_count": 1}}, "cup": {"_count": 1, "together": {"_count": 1}}, "toilet": {"_count": 1, "paper": {"_count": 1}}, "debris": {"_count": 1, "like": {"_count": 1}}, "bitter": {"_count": 1, "memories": {"_count": 1}}, "Charity": {"_count": 1, "Burbage": {"_count": 1}}, "unwanted": {"_count": 1, "notoriety": {"_count": 1}}, "note": {"_count": 1, "that": {"_count": 1}}, "personal": {"_count": 1, "responsibility": {"_count": 1}}, "Ariana": {"_count": 4, "had": {"_count": 1}, "from": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 1}}, "Xraying": {"_count": 1, "Harry": {"_count": 1}}, "humiliation": {"_count": 1, "": {"_count": 1}}, "Practical": {"_count": 1, "Defensive": {"_count": 1}}, "serene": {"_count": 1, "silverbearded": {"_count": 1}}, "pound": {"_count": 1, "cake": {"_count": 1}}, "freshest": {"_count": 1, "gossip": {"_count": 1}}, "Elphias": {"_count": 1, "Doge": {"_count": 1}}, "Lake": {"_count": 1, "Windermere": {"_count": 1}}, "inaccuracy": {"_count": 1, "have": {"_count": 1}}, "important": {"_count": 2, "toes": {"_count": 1}, "things": {"_count": 1}}, "nastiness": {"_count": 1, "but": {"_count": 1}}, "Grindelwald": {"_count": 3, "": {"_count": 1}, "is": {"_count": 1}, "s": {"_count": 1}}, "legend": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "admirers": {"_count": 1, "meanwhile": {"_count": 1}}, "mirror": {"_count": 2, "danced": {"_count": 1}, "this": {"_count": 1}}, "brightest": {"_count": 2, "blue": {"_count": 2}}, "Aunt": {"_count": 2, "Petunias": {"_count": 2}}, "claptrap": {"_count": 1, "said": {"_count": 1}}, "\u2018my": {"_count": 1, "lot": {"_count": 1}}, "layabout": {"_count": 1, "wizards": {"_count": 1}}, "bemusement": {"_count": 1, "and": {"_count": 1}}, "chums": {"_count": 1, "said": {"_count": 1}}, "shadows": {"_count": 1, "in": {"_count": 1}}, "solitude": {"_count": 1, "had": {"_count": 1}}, "plan": {"_count": 2, "growled": {"_count": 1}, "because": {"_count": 1}}, "obvious": {"_count": 1, "once": {"_count": 1}}, "complacency": {"_count": 1, "": {"_count": 1}}, "brooms": {"_count": 1, "": {"_count": 1}}, "wrenching": {"_count": 1, "metal": {"_count": 1}}, "acceleration": {"_count": 1, "": {"_count": 1}}, "Stanley": {"_count": 1, "Shunpike": {"_count": 1}}, "defiance": {"_count": 2, "inside": {"_count": 1}, "and": {"_count": 1}}, "replacing": {"_count": 1, "his": {"_count": 1}}, "earrelated": {"_count": 1, "humor": {"_count": 1}}, "unreality": {"_count": 1, "firing": {"_count": 1}}, "skullduggery": {"_count": 1, "": {"_count": 1}}, "startled": {"_count": 1, "eyes": {"_count": 1}}, "unendurable": {"_count": 1, "agony": {"_count": 1}}, "research": {"_count": 2, "said": {"_count": 1}, "on": {"_count": 1}}, "\u2018stuff": {"_count": 1, "": {"_count": 1}}, "nonstop": {"_count": 1, "cutlery": {"_count": 1}}, "colormatching": {"_count": 1, "favors": {"_count": 1}}, "de": {"_count": 1, "gnoming": {"_count": 1}}, "canapes": {"_count": 1, "however": {"_count": 1}}, "jobs": {"_count": 1, "that": {"_count": 1}}, "Merlins": {"_count": 3, "saggy": {"_count": 1}, "pants": {"_count": 1}, "most": {"_count": 1}}, "resignation": {"_count": 1, "and": {"_count": 1}}, "tact": {"_count": 1, "": {"_count": 1}}, "pustules": {"_count": 1, "": {"_count": 1}}, "repeating": {"_count": 1, "the": {"_count": 1}}, "basilisk": {"_count": 1, "fangs": {"_count": 1}}, "died": {"_count": 1, "when": {"_count": 1}}, "or": {"_count": 1, "dependent": {"_count": 1}}, "wedding": {"_count": 1, "presents": {"_count": 1}}, "capering": {"_count": 1, "gnomes": {"_count": 1}}, "laundry": {"_count": 1, "in": {"_count": 1}}, "Gorgovitch": {"_count": 2, "": {"_count": 2}}, "unsaid": {"_count": 1, "things": {"_count": 1}}, "Gwenog": {"_count": 1, "Jones": {"_count": 1}}, "Charlie": {"_count": 1, "Lupin": {"_count": 1}}, "Twelve": {"_count": 1, "FailSafe": {"_count": 1}}, "burns": {"_count": 1, "and": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}, "Beedle": {"_count": 12, "the": {"_count": 12}}, "perseverance": {"_count": 1, "and": {"_count": 1}}, "anticlimax": {"_count": 1, "": {"_count": 1}}, "wasting": {"_count": 1, "their": {"_count": 1}}, "Happy": {"_count": 1, "Birthday": {"_count": 1}}, "Fair": {"_count": 1, "Fortune": {"_count": 1}}, "Babbitty": {"_count": 1, "Rabbitty": {"_count": 1}}, "whiterobed": {"_count": 1, "waiters": {"_count": 1}}, "fragile": {"_count": 1, "golden": {"_count": 1}}, "pretty": {"_count": 1, "French": {"_count": 1}}, "candyfloss": {"_count": 1, "he": {"_count": 1}}, "eggyolk": {"_count": 1, "yellow": {"_count": 1}}, "jittery": {"_count": 1, "anticipation": {"_count": 1}}, "amethystcolored": {"_count": 1, "robes": {"_count": 1}}, "lace": {"_count": 1, "": {"_count": 1}}, "paradise": {"_count": 1, "and": {"_count": 1}}, "tarts": {"_count": 1, "and": {"_count": 1}}, "Gurdyroots": {"_count": 2, "": {"_count": 2}}, "Fleurs": {"_count": 3, "I": {"_count": 1}, "cousins": {"_count": 1}, "coats": {"_count": 1}}, "champagne": {"_count": 5, "that": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "belched": {"_count": 1}, "which": {"_count": 1}}, "stuffed": {"_count": 1, "frogs": {"_count": 1}}, "witch": {"_count": 1, "who": {"_count": 1}}, "actually": {"_count": 1, "imprisoning": {"_count": 1}}, "imprisoning": {"_count": 1, "her": {"_count": 1}}, "Albuss": {"_count": 1, "": {"_count": 1}}, "bringing": {"_count": 1, "back": {"_count": 1}}, "merry": {"_count": 1, "pubgoers": {"_count": 1}}, "grease": {"_count": 1, "lay": {"_count": 1}}, "burly": {"_count": 1, "workmen": {"_count": 1}}, "metallic": {"_count": 1, "clicks": {"_count": 1}}, "watered": {"_count": 1, "ink": {"_count": 1}}, "gallantry": {"_count": 1, "and": {"_count": 1}}, "Godrics": {"_count": 3, "Hollow": {"_count": 3}}, "mysterious": {"_count": 1, "objects": {"_count": 1}}, "disturbed": {"_count": 1, "mice": {"_count": 1}}, "bikiniclad": {"_count": 1, "Muggle": {"_count": 1}}, "gangs": {"_count": 1, "with": {"_count": 1}}, "quiet": {"_count": 2, "eruption": {"_count": 1}, "footsteps": {"_count": 1}}, "Regulus": {"_count": 2, "Arcturus": {"_count": 1}, "Black": {"_count": 1}}, "former": {"_count": 1, "grandeur": {"_count": 1}}, "value": {"_count": 1, "there": {"_count": 1}}, "Wartcap": {"_count": 1, "powder": {"_count": 1}}, "dirty": {"_count": 1, "old": {"_count": 1}}, "Natures": {"_count": 1, "Nobility": {"_count": 1}}, "ownership": {"_count": 2, "had": {"_count": 1}, "payment": {"_count": 1}}, "unsuccessful": {"_count": 1, "Transfigurations": {"_count": 1}}, "surrender": {"_count": 1, "": {"_count": 1}}, "coziness": {"_count": 1, "to": {"_count": 1}}, "identification": {"_count": 1, "or": {"_count": 1}}, "everyday": {"_count": 1, "business": {"_count": 1}}, "distaste": {"_count": 1, "she": {"_count": 1}}, "socalled": {"_count": 1, "Muggleborns": {"_count": 1}}, "weeding": {"_count": 1, "out": {"_count": 1}}, "Wizard": {"_count": 1, "descent": {"_count": 1}}, "newly": {"_count": 1, "purchased": {"_count": 1}}, "photos": {"_count": 1, "of": {"_count": 1}}, "Native": {"_count": 1, "Americans": {"_count": 1}}, "admitting": {"_count": 1, "that": {"_count": 1}}, "Arianas": {"_count": 1, "existence": {"_count": 1}}, "lowering": {"_count": 1, "the": {"_count": 1}}, "bleedin": {"_count": 1, "eroes": {"_count": 1}}, "Mundunguss": {"_count": 1, "nose": {"_count": 1}}, "pattering": {"_count": 1, "feet": {"_count": 1}}, "inactivity": {"_count": 1, "looking": {"_count": 1}}, "oldfashioned": {"_count": 1, "robes": {"_count": 1}}, "scribbled": {"_count": 1, "notes": {"_count": 1}}, "delicate": {"_count": 1, "silver": {"_count": 1}}, "notes": {"_count": 1, "and": {"_count": 1}}, "openmouthed": {"_count": 1, "serpents": {"_count": 1}}, "Gregorovitch": {"_count": 2, "the": {"_count": 1}, "who": {"_count": 1}}, "puffy": {"_count": 1, "eyed": {"_count": 1}}, "Mafalda": {"_count": 1, "Hopkirk": {"_count": 1}}, "pastilles": {"_count": 1, "in": {"_count": 1}}, "hairs": {"_count": 1, "from": {"_count": 1}}, "unconscious": {"_count": 1, "bodies": {"_count": 1}}, "Mafaldas": {"_count": 1, "tokens": {"_count": 1}}, "oddly": {"_count": 1, "dressed": {"_count": 1}}, "flushing": {"_count": 1, "": {"_count": 1}}, "booted": {"_count": 1, "feet": {"_count": 1}}, "naked": {"_count": 1, "bodies": {"_count": 1}}, "Cattermole": {"_count": 1, "Yaxley": {"_count": 1}}, "colored": {"_count": 3, "paper": {"_count": 1}, "smoke": {"_count": 1}, "hangings": {"_count": 1}}, "pamphletmakers": {"_count": 1, "Harry": {"_count": 1}}, "acrid": {"_count": 1, "black": {"_count": 1}}, "folders": {"_count": 1, "each": {"_count": 1}}, "bewitching": {"_count": 1, "its": {"_count": 1}}, "extracting": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "steady": {"_count": 1, "dripping": {"_count": 1}}, "offices": {"_count": 2, "have": {"_count": 1}, "": {"_count": 1}}, "Decoy": {"_count": 1, "Detonators": {"_count": 1}}, "casting": {"_count": 1, "the": {"_count": 1}}, "documents": {"_count": 1, "balanced": {"_count": 1}}, "Runcorn": {"_count": 1, "echoed": {"_count": 1}}, "compressing": {"_count": 1, "bands": {"_count": 1}}, "Splinching": {"_count": 1, "as": {"_count": 1}}, "Dittany": {"_count": 1, "Bag": {"_count": 1}}, "jumpers": {"_count": 1, "heels": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}, "lookout": {"_count": 1, "": {"_count": 1}}, "mouthfuls": {"_count": 1, "Ron": {"_count": 1}}, "rubbery": {"_count": 1, "mushrooms": {"_count": 1}}, "innocence": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "consternation": {"_count": 1, "and": {"_count": 1}}, "Perkinss": {"_count": 1, "old": {"_count": 1}}, "toadstools": {"_count": 1, "": {"_count": 1}}, "near": {"_count": 1, "starvation": {"_count": 1}}, "dreary": {"_count": 1, "litany": {"_count": 1}}, "exile": {"_count": 1, "These": {"_count": 1}}, "cliffs": {"_count": 1, "to": {"_count": 1}}, "passtheparcel": {"_count": 1, "where": {"_count": 1}}, "increased": {"_count": 1, "fear": {"_count": 1}}, "fallen": {"_count": 1, "leaves": {"_count": 1}}, "charred": {"_count": 2, "gray": {"_count": 1}, "desks": {"_count": 1}}, "Elemental": {"_count": 2, "Transfigur": {"_count": 1}, "Transfiguration": {"_count": 1}}, "dislodged": {"_count": 2, "stones": {"_count": 1}, "snow": {"_count": 1}}, "fish": {"_count": 1, "against": {"_count": 1}}, "rattling": {"_count": 1, "guttural": {"_count": 1}}, "company": {"_count": 1, "": {"_count": 1}}, "munching": {"_count": 1, "then": {"_count": 1}}, "choking": {"_count": 1, "and": {"_count": 1}}, "thumping": {"_count": 1, "by": {"_count": 1}}, "Xeno": {"_count": 1, "Lovegoods": {"_count": 1}}, "Crumple": {"_count": 1, "Horned": {"_count": 1}}, "art": {"_count": 1, "": {"_count": 1}}, "contradiction": {"_count": 1, "said": {"_count": 1}}, "pureblood": {"_count": 1, "": {"_count": 1}}, "mutiny": {"_count": 1, "from": {"_count": 1}}, "England": {"_count": 2, "where": {"_count": 1}, "were": {"_count": 1}}, "spaghetti": {"_count": 1, "Bolognese": {"_count": 1}}, "childrens": {"_count": 1, "stories": {"_count": 1}}, "anywhere": {"_count": 1, "else": {"_count": 1}}, "Tinworth": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "hauntings": {"_count": 1, "that": {"_count": 1}}, "Bathilda": {"_count": 2, "Bagshot": {"_count": 2}}, "carols": {"_count": 1, "from": {"_count": 1}}, "Hannahs": {"_count": 1, "": {"_count": 1}}, "tombstones": {"_count": 1, "away": {"_count": 1}}, "churchgoers": {"_count": 1, "were": {"_count": 1}}, "Lily": {"_count": 2, "and": {"_count": 1}, "Evanss": {"_count": 1}}, "houses": {"_count": 1, "": {"_count": 1}}, "31": {"_count": 1, "October": {"_count": 1}}, "transparent": {"_count": 2, "skin": {"_count": 1}, "figures": {"_count": 1}}, "unwashed": {"_count": 1, "clothes": {"_count": 1}}, "scant": {"_count": 1, "white": {"_count": 1}}, "joy": {"_count": 1, "and": {"_count": 1}}, "broomstick": {"_count": 1, "or": {"_count": 1}}, "purpose": {"_count": 4, "and": {"_count": 1}, "that": {"_count": 2}, "in": {"_count": 1}}, "Bathildas": {"_count": 2, "house": {"_count": 1}, "neck": {"_count": 1}}, "Ollivander": {"_count": 2, "kidnapped": {"_count": 1}, "the": {"_count": 1}}, "Kendras": {"_count": 1, "death": {"_count": 1}}, "triedandtested": {"_count": 1, "reporting": {"_count": 1}}, "hard": {"_count": 1, "fact": {"_count": 1}}, "Most": {"_count": 1, "Dangerous": {"_count": 1}}, "All": {"_count": 1, "Time": {"_count": 1}}, "awards": {"_count": 1, "and": {"_count": 1}}, "Gellert": {"_count": 1, "Grindelwald": {"_count": 1}}, "lads": {"_count": 1, "his": {"_count": 1}}, "overthrowing": {"_count": 1, "the": {"_count": 1}}, "turmoil": {"_count": 1, "fatalities": {"_count": 1}}, "exposure": {"_count": 1, "as": {"_count": 1}}, "goodness": {"_count": 1, "and": {"_count": 1}}, "packing": {"_count": 1, "up": {"_count": 1}}, "powdery": {"_count": 1, "snow": {"_count": 1}}, "guardian": {"_count": 1, "of": {"_count": 1}}, "clothing": {"_count": 1, "": {"_count": 1}}, "hypnosis": {"_count": 1, "didnt": {"_count": 1}}, "nights": {"_count": 1, "when": {"_count": 1}}, "made": {"_count": 1, "up": {"_count": 1}}, "Snatchers": {"_count": 3, "Hermione": {"_count": 1}, "": {"_count": 1}, "watching": {"_count": 1}}, "riverbank": {"_count": 1, "where": {"_count": 1}}, "pulsing": {"_count": 1, "and": {"_count": 1}}, "floated": {"_count": 1, "toward": {"_count": 1}}, "scouring": {"_count": 1, "the": {"_count": 1}}, "kids": {"_count": 3, "stories": {"_count": 1}, "more": {"_count": 1}, "thundering": {"_count": 1}}, "blackthorn": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 1, "at": {"_count": 1}}, "toy": {"_count": 1, "houses": {"_count": 1}}, "hills": {"_count": 2, "": {"_count": 2}}, "whitebeaded": {"_count": 1, "mistletoe": {"_count": 1}}, "clattering": {"_count": 1, "and": {"_count": 1}}, "illassorted": {"_count": 1, "teacups": {"_count": 1}}, "distraction": {"_count": 1, "from": {"_count": 1}}, "sugar": {"_count": 1, "into": {"_count": 1}}, "skepticism": {"_count": 1, "out": {"_count": 1}}, "not": {"_count": 1, "laughing": {"_count": 1}}, "Emeric": {"_count": 1, "the": {"_count": 1}}, "elder": {"_count": 1, "never": {"_count": 1}}, "Destiny": {"_count": 5, "they": {"_count": 1}, "arent": {"_count": 1}, "or": {"_count": 1}, "the": {"_count": 1}, "is": {"_count": 1}}, "sickening": {"_count": 1, "metallic": {"_count": 1}}, "Rowena": {"_count": 2, "Ravenclaw": {"_count": 2}}, "torn": {"_count": 1, "parchment": {"_count": 1}}, "possessing": {"_count": 1, "them": {"_count": 1}}, "fabulous": {"_count": 2, "discoveries": {"_count": 1}, "treasures": {"_count": 1}}, "smokegray": {"_count": 1, "and": {"_count": 1}}, "Horcruxes": {"_count": 2, "Harry": {"_count": 1}, "said": {"_count": 1}}, "grape": {"_count": 1, "hyacinths": {"_count": 1}}, "house": {"_count": 1, "calls": {"_count": 1}}, "Ted": {"_count": 2, "Tonks": {"_count": 2}}, "Gornuk": {"_count": 1, "was": {"_count": 1}}, "injuries": {"_count": 1, "inflicted": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 1}, "himself": {"_count": 1}}, "remaining": {"_count": 1, "in": {"_count": 1}}, "mystery": {"_count": 1, "is": {"_count": 1}}, "knuckles": {"_count": 1, "hitting": {"_count": 1}}, "hobnailed": {"_count": 1, "boots": {"_count": 1}}, "Mudblood": {"_count": 1, "Slytherins": {"_count": 1}}, "trepidation": {"_count": 1, "in": {"_count": 1}}, "calmly": {"_count": 1, "euphoric": {"_count": 1}}, "will": {"_count": 1, "Harry": {"_count": 1}}, "Greybacks": {"_count": 1, "boots": {"_count": 1}}, "inadequacy": {"_count": 1, "": {"_count": 1}}, "wroughtiron": {"_count": 1, "gates": {"_count": 1}}, "reluctance": {"_count": 1, "even": {"_count": 1}}, "She": {"_count": 1, "stopped": {"_count": 1}}, "Narcissa": {"_count": 1, "and": {"_count": 1}}, "supplication": {"_count": 1, "": {"_count": 1}}, "Nurmengard": {"_count": 1, "and": {"_count": 1}}, "mercy": {"_count": 1, "": {"_count": 1}}, "someones": {"_count": 1, "hand": {"_count": 1}}, "driftwood": {"_count": 2, "burning": {"_count": 1}, "": {"_count": 1}}, "wandlore": {"_count": 1, "with": {"_count": 1}}, "extending": {"_count": 1, "our": {"_count": 1}}, "belonging": {"_count": 1, "to": {"_count": 1}}, "authenticity": {"_count": 1, "": {"_count": 1}}, "incredible": {"_count": 1, "fascination": {"_count": 1}}, "controlled": {"_count": 1, "euphoria": {"_count": 1}}, "doubts": {"_count": 1, "doubts": {"_count": 1}}, "goblinwork": {"_count": 1, "": {"_count": 1}}, "historys": {"_count": 1, "right": {"_count": 1}}, "Shell": {"_count": 3, "Cottage": {"_count": 3}}, "sauce": {"_count": 1, "on": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "siege": {"_count": 2, "Tidings": {"_count": 1}, "with": {"_count": 1}}, "bargain": {"_count": 1, "with": {"_count": 1}}, "discomfort": {"_count": 1, "as": {"_count": 1}}, "goblinmade": {"_count": 1, "objects": {"_count": 1}}, "Griphook": {"_count": 1, "": {"_count": 1}}, "ragged": {"_count": 1, "people": {"_count": 1}}, "prosperouslooking": {"_count": 1, "passersby": {"_count": 1}}, "dirtying": {"_count": 1, "himself": {"_count": 1}}, "consorting": {"_count": 1, "with": {"_count": 1}}, "concealment": {"_count": 1, "and": {"_count": 1}}, "wonder": {"_count": 1, "that": {"_count": 1}}, "realization": {"_count": 1, "Harry": {"_count": 1}}, "jangling": {"_count": 1, "metal": {"_count": 1}}, "Lestrange": {"_count": 1, "": {"_count": 1}}, "heady": {"_count": 1, "control": {"_count": 1}}, "goblets": {"_count": 2, "so": {"_count": 1}, "and": {"_count": 1}}, "expanding": {"_count": 1, "gold": {"_count": 1}}, "fake": {"_count": 1, "Galleons": {"_count": 1}}, "clanking": {"_count": 1, "growing": {"_count": 1}}, "redhot": {"_count": 2, "treasure": {"_count": 1}, "objects": {"_count": 1}}, "replicating": {"_count": 1, "treasure": {"_count": 1}}, "steering": {"_count": 1, "the": {"_count": 1}}, "matte": {"_count": 1, "and": {"_count": 1}}, "dittany": {"_count": 1, "onto": {"_count": 1}}, "lake": {"_count": 1, "water": {"_count": 1}}, "denial": {"_count": 1, "left": {"_count": 1}}, "calm": {"_count": 1, "cooled": {"_count": 1}}, "bolts": {"_count": 1, "nearby": {"_count": 1}}, "vacant": {"_count": 1, "sweetness": {"_count": 1}}, "Aberforth": {"_count": 1, "s": {"_count": 1}}, "unkemptness": {"_count": 1, "suggested": {"_count": 1}}, "stunts": {"_count": 1, "": {"_count": 1}}, "lamps": {"_count": 1, "and": {"_count": 1}}, "crown": {"_count": 1, "said": {"_count": 1}}, "Alecto": {"_count": 1, "Carrow": {"_count": 1}}, "clinking": {"_count": 1, "glass": {"_count": 1}}, "hardly": {"_count": 1, "noticing": {"_count": 1}}, "pursuing": {"_count": 1, "daggers": {"_count": 1}}, "puffing": {"_count": 1, "Slughorn": {"_count": 1}}, "desperate": {"_count": 1, "disappointment": {"_count": 1}}, "snowballed": {"_count": 1, "": {"_count": 1}}, "whispering": {"_count": 1, "broke": {"_count": 1}}, "older": {"_count": 1, "Ravenclaws": {"_count": 1}}, "fighters": {"_count": 3, "up": {"_count": 1}, "into": {"_count": 1}, "below": {"_count": 1}}, "dots": {"_count": 1, "now": {"_count": 1}}, "she": {"_count": 1, "stammered": {"_count": 1}}, "defeating": {"_count": 1, "the": {"_count": 1}}, "penitence": {"_count": 1, "": {"_count": 1}}, "longgone": {"_count": 1, "students": {"_count": 1}}, "junk": {"_count": 4, "he": {"_count": 1}, "of": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}}, "Hidden": {"_count": 1, "Things": {"_count": 1}}, "range": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "abnormal": {"_count": 1, "size": {"_count": 1}}, "heavylooking": {"_count": 1, "broomsticks": {"_count": 1}}, "generations": {"_count": 1, "of": {"_count": 1}}, "hunted": {"_count": 1, "students": {"_count": 1}}, "devouring": {"_count": 1, "flame": {"_count": 1}}, "dueling": {"_count": 1, "filled": {"_count": 1}}, "sea": {"_count": 1, "urchin": {"_count": 1}}, "Aragogs": {"_count": 1, "descendants": {"_count": 1}}, "galloping": {"_count": 1, "desks": {"_count": 1}}, "duelers": {"_count": 1, "": {"_count": 1}}, "Snargaluff": {"_count": 1, "juice": {"_count": 1}}, "Venomous": {"_count": 1, "Tentacula": {"_count": 1}}, "lions": {"_count": 1, "": {"_count": 1}}, "hideous": {"_count": 1, "yells": {"_count": 1}}, "concentrated": {"_count": 1, "blackness": {"_count": 1}}, "slippery": {"_count": 1, "cloth": {"_count": 1}}, "yew": {"_count": 1, "did": {"_count": 1}}, "victory": {"_count": 2, "I": {"_count": 1}, "Harry": {"_count": 1}}, "marble": {"_count": 1, "and": {"_count": 1}}, "helpers": {"_count": 1, "": {"_count": 1}}, "reckless": {"_count": 1, "abandonment": {"_count": 1}}, "crumpling": {"_count": 1, "on": {"_count": 1}}, "wholehearted": {"_count": 1, "enjoyment": {"_count": 1}}, "Apparently": {"_count": 1, "wizards": {"_count": 1}}, "cuttlebone": {"_count": 1, "": {"_count": 1}}, "Occlumency": {"_count": 1, "whose": {"_count": 1}}, "minds": {"_count": 1, "": {"_count": 1}}, "decoys": {"_count": 1, "that": {"_count": 1}}, "need": {"_count": 1, "and": {"_count": 1}}, "handing": {"_count": 1, "yourself": {"_count": 1}}, "descendants": {"_count": 1, "he": {"_count": 1}}, "hideand": {"_count": 1, "seek": {"_count": 1}}, "midnight": {"_count": 1, "blue": {"_count": 1}}, "railing": {"_count": 1, "here": {"_count": 1}}, "unspeakable": {"_count": 1, "evil": {"_count": 1}}, "Ignotus": {"_count": 1, "Peverell": {"_count": 1}}, "uniting": {"_count": 1, "the": {"_count": 1}}, "hearts": {"_count": 1, "what": {"_count": 1}}, "insanity": {"_count": 1, "of": {"_count": 1}}, "vain": {"_count": 1, "curiosity": {"_count": 1}}, "survivors": {"_count": 1, "took": {"_count": 1}}, "brave": {"_count": 1, "Regulus": {"_count": 1}}, "greater": {"_count": 1, "men": {"_count": 1}}, "dying": {"_count": 1, "chose": {"_count": 1}}, "purer": {"_count": 1, "blood": {"_count": 1}}, "Nagini": {"_count": 1, "spinning": {"_count": 1}}, "jubilation": {"_count": 1, "and": {"_count": 1}}, "pedestrians": {"_count": 1, "sparkled": {"_count": 1}}, "reaction": {"_count": 1, "": {"_count": 1}}, "departure": {"_count": 1, "could": {"_count": 1}}}, "number": {"_count": 186, "four": {"_count": 24, "Privet": {"_count": 13}, "the": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 6}, "on": {"_count": 1}, "first": {"_count": 1}, "without": {"_count": 1}}, "fours": {"_count": 2, "drive": {"_count": 1}, "garden": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "nine": {"_count": 4, "over": {"_count": 1}, "into": {"_count": 1}, "button": {"_count": 2}}, "ten": {"_count": 3, "over": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 1}, ".": {"_count": 5}}, "of": {"_count": 87, "other": {"_count": 3}, "accidents": {"_count": 1}, "muddy": {"_count": 1}, "murders": {"_count": 1}, "curious": {"_count": 1}, "times": {"_count": 4}, "useful": {"_count": 1}, "team": {"_count": 1}, "small": {"_count": 3}, "unusual": {"_count": 1}, "wizards": {"_count": 1}, "witches": {"_count": 1}, "reference": {"_count": 1}, "Filibusters": {"_count": 1}, "large": {"_count": 2}, "highly": {"_count": 1}, "unfamiliar": {"_count": 1}, "pink": {"_count": 1}, "exceptionally": {"_count": 1}, "bright": {"_count": 1}, "fluffy": {"_count": 1}, "creatures": {"_count": 1}, "Durmstrang": {"_count": 1}, "students": {"_count": 2}, "missing": {"_count": 1}, "spells": {"_count": 1}, "people": {"_count": 5}, "tarnished": {"_count": 1}, "ancient": {"_count": 1}, "cockandbull": {"_count": 1}, "minutes": {"_count": 1}, "ugly": {"_count": 1}, "letters": {"_count": 1}, "goblins": {"_count": 1}, "jokes": {"_count": 1}, "golden": {"_count": 1}, "Galleons": {"_count": 1}, "fellow": {"_count": 1}, "pearly": {"_count": 1}, "sapphires": {"_count": 1}, "tight": {"_count": 1}, "spellbooks": {"_count": 1}, "the": {"_count": 1}, "unpleasant": {"_count": 1}, "occasions": {"_count": 1}, "unmarked": {"_count": 1}, "shabbylooking": {"_count": 1}, "weirdlooking": {"_count": 1}, "round": {"_count": 1}, "witnesses": {"_count": 1}, "girls": {"_count": 1}, "houseelves": {"_count": 1}, "maggots": {"_count": 1}, "nasty": {"_count": 1}, "nicknames": {"_count": 1}, "brass": {"_count": 1}, "bewildered": {"_count": 1}, "Death": {"_count": 1}, "pustules": {"_count": 1}, "purple": {"_count": 1}, "burns": {"_count": 1}, "Weasley": {"_count": 1}, "heavy": {"_count": 1}, "things": {"_count": 1}, "Wizarding": {"_count": 1}, "oldfashioned": {"_count": 1}, "oddly": {"_count": 1}, "photographs": {"_count": 1}, "books": {"_count": 1}, "house": {"_count": 1}, "ragged": {"_count": 1}, "older": {"_count": 1}, "huge": {"_count": 1}, "faces": {"_count": 1}}, "hold": {"_count": 1, "only": {"_count": 1}}, "Justin": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "two": {"_count": 4, "suddenly": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 1}, "Laburnum": {"_count": 1}}, "eleven": {"_count": 4, "on": {"_count": 1}, "he": {"_count": 1}, "thudded": {"_count": 1}, "to": {"_count": 1}}, "twelve": {"_count": 24, "was": {"_count": 1}, "would": {"_count": 1}, "Grimmauld": {"_count": 14}, "which": {"_count": 1}, "slammed": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "were": {"_count": 1}, "itself": {"_count": 1}, "Harry": {"_count": 1}}, "will": {"_count": 2, "leave": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "chart": {"_count": 1, "": {"_count": 1}}, "use": {"_count": 1, "Muggle": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "any": {"_count": 1}}, "three": {"_count": 1, "around": {"_count": 1}}, "one": {"_count": 1, "tied": {"_count": 1}}, "shot": {"_count": 1, "out": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "recognize": {"_count": 1}}, "thirteen": {"_count": 2, "": {"_count": 2}}, "referring": {"_count": 1, "to": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "ninetythree": {"_count": 1, "Diagon": {"_count": 1}}, "ninety": {"_count": 2, "seven": {"_count": 1}, "two": {"_count": 1}}, "ninetyseven": {"_count": 1, "he": {"_count": 1}}, "called": {"_count": 1, "A": {"_count": 1}}, "wouldnt": {"_count": 1, "seven": {"_count": 1}}, "agree": {"_count": 1, "that": {"_count": 1}}, "17": {"_count": 1, "to": {"_count": 1}}}, "four": {"_count": 243, "Privet": {"_count": 13, "Drive": {"_count": 13}}, "the": {"_count": 1, "first": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 3}}, "on": {"_count": 2, "the": {"_count": 1}, "one": {"_count": 1}}, "times": {"_count": 4, "bigger": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}, "a": {"_count": 1}}, "bedrooms": {"_count": 1, "one": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "bananas": {"_count": 1, "": {"_count": 1}}, "balls": {"_count": 4, "sorta": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "burst": {"_count": 1}}, "boys": {"_count": 1, "all": {"_count": 1}}, "sandwiches": {"_count": 1, "inside": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "Houses": {"_count": 1, "are": {"_count": 1}}, "long": {"_count": 8, "tables": {"_count": 1}, "crowded": {"_count": 1}, "House": {"_count": 5}, "wooden": {"_count": 1}}, "tables": {"_count": 2, "and": {"_count": 1}, "emptied": {"_count": 1}}, "people": {"_count": 5, "left": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 2}, "emerged": {"_count": 1}}, "posters": {"_count": 1, "hung": {"_count": 1}}, "of": {"_count": 23, "them": {"_count": 18}, "whom": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}, "Gryffindors": {"_count": 1}}, "differentsized": {"_count": 1, "balls": {"_count": 1}}, "feet": {"_count": 4, "above": {"_count": 1}, "seven": {"_count": 1}, "long": {"_count": 1}, "taller": {"_count": 1}}, "broomsticks": {"_count": 1, "came": {"_count": 1}}, "squares": {"_count": 1, "to": {"_count": 1}}, "First": {"_count": 1, "however": {"_count": 1}}, "hundred": {"_count": 8, "and": {"_count": 7}, "points": {"_count": 1}}, "flying": {"_count": 1, "balls": {"_count": 1}}, "weeks": {"_count": 6, "he": {"_count": 1}, "what": {"_count": 1}, "after": {"_count": 1}, "packing": {"_count": 1}, "taking": {"_count": 1}, "seemed": {"_count": 1}}, "plates": {"_count": 1, "were": {"_count": 1}}, "Hogwarts": {"_count": 3, "houses": {"_count": 1}, "Houses": {"_count": 1}, "students": {"_count": 1}}, "hours": {"_count": 3, "": {"_count": 1}, "staring": {"_count": 1}, "later": {"_count": 1}}, "greatest": {"_count": 1, "witches": {"_count": 1}}, "school": {"_count": 1, "Houses": {"_count": 1}}, "poster": {"_count": 7, "": {"_count": 1}, "and": {"_count": 2}, "beds": {"_count": 1}, "leaving": {"_count": 1}, "shut": {"_count": 1}, "took": {"_count": 1}}, "sizes": {"_count": 1, "too": {"_count": 1}}, "months": {"_count": 2, "since": {"_count": 1}, "could": {"_count": 1}}, "Mudbloods": {"_count": 1, "and": {"_count": 1}}, "without": {"_count": 1, "her": {"_count": 1}}, "ill": {"_count": 1, "assorted": {"_count": 1}}, "sets": {"_count": 2, "of": {"_count": 2}}, "he": {"_count": 1, "pointed": {"_count": 1}}, "men": {"_count": 1, "climb": {"_count": 1}}, "superb": {"_count": 1, "birthday": {"_count": 1}}, "beds": {"_count": 1, "that": {"_count": 1}}, "bunk": {"_count": 1, "beds": {"_count": 1}}, "struggling": {"_count": 1, "figures": {"_count": 1}}, "wizards": {"_count": 1, "of": {"_count": 1}}, "founders": {"_count": 4, "Formed": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}, "objects": {"_count": 1}}, "chairs": {"_count": 3, "two": {"_count": 1}, "who": {"_count": 1}, "with": {"_count": 1}}, "dragons": {"_count": 1, "and": {"_count": 1}}, "one": {"_count": 1, "for": {"_count": 1}}, "House": {"_count": 5, "tables": {"_count": 5}}, "years": {"_count": 16, "": {"_count": 3}, "experience": {"_count": 1}, "of": {"_count": 1}, "bothered": {"_count": 1}, "ago": {"_count": 6}, "had": {"_count": 1}, "so": {"_count": 1}, "previously": {"_count": 2}}, "or": {"_count": 6, "five": {"_count": 5}, "fivehour": {"_count": 1}}, "floors": {"_count": 3, "and": {"_count": 1}, "below": {"_count": 2}}, "paws": {"_count": 1, "but": {"_count": 1}}, "elves": {"_count": 1, "": {"_count": 1}}, "barn": {"_count": 1, "owls": {"_count": 1}}, "in": {"_count": 5, "front": {"_count": 1}, "the": {"_count": 4}}, "patrollers": {"_count": 1, "": {"_count": 1}}, "lines": {"_count": 1, "": {"_count": 1}}, "solid": {"_count": 1, "weeks": {"_count": 1}}, "mates": {"_count": 1, "behind": {"_count": 1}}, "days": {"_count": 4, "": {"_count": 2}, "in": {"_count": 1}, "left": {"_count": 1}}, "tiny": {"_count": 1, "fists": {"_count": 1}}, "Department": {"_count": 2, "for": {"_count": 2}}, "good": {"_count": 1, "friends": {"_count": 1}}, "Had": {"_count": 1, "once": {"_count": 1}}, "Were": {"_count": 1, "whittled": {"_count": 1}}, "more": {"_count": 2, "Quidditch": {"_count": 1}, "hours": {"_count": 1}}, "pretty": {"_count": 1, "high": {"_count": 1}}, "legs": {"_count": 3, "with": {"_count": 1}, "said": {"_count": 2}}, "five": {"_count": 2, "more": {"_count": 1}, "penalties": {"_count": 1}}, "seats": {"_count": 2, "behind": {"_count": 1}, "ahead": {"_count": 1}}, "NonRetaliation": {"_count": 1, "and": {"_count": 1}}, "successive": {"_count": 1, "classes": {"_count": 1}}, "very": {"_count": 2, "short": {"_count": 1}, "thin": {"_count": 1}}, "sturdy": {"_count": 1, "little": {"_count": 1}}, "exams": {"_count": 1, "left": {"_count": 1}}, "Stunners": {"_count": 1, "had": {"_count": 1}}, "In": {"_count": 1, "your": {"_count": 1}}, "four": {"_count": 1, "two": {"_count": 1}}, "two": {"_count": 1, "": {"_count": 1}}, "What": {"_count": 1, "the": {"_count": 1}}, "inches": {"_count": 1, "since": {"_count": 1}}, "Slytherins": {"_count": 2, "had": {"_count": 1}, "took": {"_count": 1}}, "Ravenclaws": {"_count": 1, "": {"_count": 1}}, "penalties": {"_count": 1, "out": {"_count": 1}}, "saw": {"_count": 1, "what": {"_count": 1}}, "Heads": {"_count": 1, "of": {"_count": 1}}, "its": {"_count": 1, "only": {"_count": 1}}, "Horcruxes": {"_count": 2, "remain": {"_count": 1}, "out": {"_count": 1}}, "strangers": {"_count": 1, "It": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "short": {"_count": 1, "weeks": {"_count": 1}}, "pursuing": {"_count": 1, "Death": {"_count": 1}}, "creators": {"_count": 1, "of": {"_count": 1}}, "other": {"_count": 1, "prisoners": {"_count": 1}}, "legged": {"_count": 1, "across": {"_count": 1}}, "a": {"_count": 1, "short": {"_count": 1}}}, "Privet": {"_count": 85, "Drive": {"_count": 85, "were": {"_count": 1}, "but": {"_count": 3}, "no": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 26}, "glowed": {"_count": 1}, "which": {"_count": 1}, "had": {"_count": 4}, "on": {"_count": 1}, "Little": {"_count": 3}, "With": {"_count": 1}, "and": {"_count": 4}, "would": {"_count": 2}, "ever": {"_count": 1}, "for": {"_count": 5}, "was": {"_count": 6}, "because": {"_count": 1}, "Harry": {"_count": 2}, "a": {"_count": 1}, "only": {"_count": 1}, "looked": {"_count": 1}, "tomorrow": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "this": {"_count": 3}, "She": {"_count": 1}, "fell": {"_count": 1}, "all": {"_count": 1}, "cut": {"_count": 1}, "after": {"_count": 1}, "in": {"_count": 1}, "together": {"_count": 1}, "rather": {"_count": 1}, "so": {"_count": 1}, "its": {"_count": 1}, "by": {"_count": 1}}}, "Drive": {"_count": 85, "were": {"_count": 1, "proud": {"_count": 1}}, "but": {"_count": 3, "there": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "no": {"_count": 1, "looking": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "hed": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 25}, "?": {"_count": 1}}, "glowed": {"_count": 1, "suddenly": {"_count": 1}}, "which": {"_count": 1, "lay": {"_count": 1}}, "had": {"_count": 4, "hardly": {"_count": 1}, "reached": {"_count": 1}, "retreated": {"_count": 1}, "vanished": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "Little": {"_count": 3, "Whinging": {"_count": 3}}, "With": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 4, "get": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "suddenly": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 2}}, "ever": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 5, "Christmas": {"_count": 2}, "two": {"_count": 1}, "the": {"_count": 2}}, "was": {"_count": 6, "the": {"_count": 1}, "coursing": {"_count": 1}, "absurd": {"_count": 1}, "extremely": {"_count": 1}, "full": {"_count": 1}, "deserted": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "Harry": {"_count": 2, "would": {"_count": 1}, "got": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "looked": {"_count": 1, "exactly": {"_count": 1}}, "tomorrow": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "with": {"_count": 1, "Dudley": {"_count": 1}}, "this": {"_count": 3, "long": {"_count": 1}, "coming": {"_count": 1}, "summer": {"_count": 1}}, "She": {"_count": 1, "caught": {"_count": 1}}, "fell": {"_count": 1, "away": {"_count": 1}}, "all": {"_count": 1, "summer": {"_count": 1}}, "cut": {"_count": 1, "himself": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "in": {"_count": 1, "six": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "reluctantly": {"_count": 1}}, "so": {"_count": 1, "briefly": {"_count": 1}}, "its": {"_count": 1, "windows": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "were": {"_count": 4567, "proud": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "perfectly": {"_count": 2, "normal": {"_count": 1}, "lovely": {"_count": 1}}, "the": {"_count": 96, "last": {"_count": 4}, "eyes": {"_count": 1}, "only": {"_count": 15}, "classes": {"_count": 1}, "books": {"_count": 1}, "following": {"_count": 1}, "others": {"_count": 1}, "one": {"_count": 5}, "white": {"_count": 1}, "words": {"_count": 5}, "youngest": {"_count": 1}, "best": {"_count": 5}, "muffled": {"_count": 1}, "heroic": {"_count": 1}, "dementors": {"_count": 2}, "reason": {"_count": 1}, "tiny": {"_count": 1}, "cleverest": {"_count": 1}, "spy": {"_count": 2}, "days": {"_count": 1}, "Weasleys": {"_count": 1}, "families": {"_count": 1}, "Death": {"_count": 1}, "more": {"_count": 1}, "most": {"_count": 1}, "other": {"_count": 1}, "size": {"_count": 1}, "sort": {"_count": 1}, "same": {"_count": 2}, "tapestry": {"_count": 1}, "blank": {"_count": 1}, "ones": {"_count": 4}, "D": {"_count": 1}, "fire": {"_count": 1}, "worst": {"_count": 1}, "height": {"_count": 1}, "two": {"_count": 1}, "runes": {"_count": 1}, "bunches": {"_count": 1}, "whimpers": {"_count": 1}, "shouts": {"_count": 1}, "three": {"_count": 2}, "Skiving": {"_count": 1}, "scars": {"_count": 1}, "forerunners": {"_count": 1}, "crackling": {"_count": 1}, "halfdozen": {"_count": 1}, "evidence": {"_count": 1}, "Marauders": {"_count": 2}, "biggest": {"_count": 1}, "qualities": {"_count": 1}, "high": {"_count": 1}, "longest": {"_count": 1}, "original": {"_count": 1}, "master": {"_count": 1}, "blurred": {"_count": 1}, "first": {"_count": 1}, "flames": {"_count": 1}, "seventh": {"_count": 1}}, "as": {"_count": 16, "unDursleyish": {"_count": 1}, "good": {"_count": 2}, "thick": {"_count": 1}, "close": {"_count": 1}, "vividly": {"_count": 1}, "round": {"_count": 1}, "nothing": {"_count": 1}, "dull": {"_count": 1}, "black": {"_count": 1}, "surprised": {"_count": 1}, "warm": {"_count": 1}, "bad": {"_count": 1}, "hushed": {"_count": 1}, "unattainable": {"_count": 1}, "insignificant": {"_count": 1}}, "driven": {"_count": 1, "out": {"_count": 1}}, "whispering": {"_count": 7, "excitedly": {"_count": 4}, "together": {"_count": 1}, "to": {"_count": 1}, "amongst": {"_count": 1}}, "obviously": {"_count": 3, "collecting": {"_count": 1}, "in": {"_count": 1}, "very": {"_count": 1}}, "saying": {"_count": 15, "": {"_count": 7}, "Bet": {"_count": 1}, "wed": {"_count": 1}, "met": {"_count": 1}, "their": {"_count": 1}, "Dumbledore": {"_count": 1}, "about": {"_count": 1}, "could": {"_count": 1}, "Narcissa": {"_count": 1}}, "lots": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 79, "lot": {"_count": 5}, "witch": {"_count": 1}, "bit": {"_count": 7}, "hundred": {"_count": 3}, "cheery": {"_count": 1}, "very": {"_count": 2}, "few": {"_count": 6}, "dozen": {"_count": 2}, "family": {"_count": 1}, "floor": {"_count": 1}, "row": {"_count": 1}, "story": {"_count": 1}, "priceless": {"_count": 1}, "foot": {"_count": 2}, "rag": {"_count": 1}, "werewolf": {"_count": 1}, "resurrected": {"_count": 1}, "searchlight": {"_count": 1}, "particularly": {"_count": 1}, "ferret": {"_count": 1}, "different": {"_count": 1}, "ghost": {"_count": 1}, "show": {"_count": 1}, "grenade": {"_count": 1}, "golfball": {"_count": 1}, "rather": {"_count": 1}, "throne": {"_count": 1}, "nightmare": {"_count": 1}, "longstanding": {"_count": 1}, "bloodshot": {"_count": 1}, "beautiful": {"_count": 1}, "pale": {"_count": 1}, "cert": {"_count": 1}, "mildly": {"_count": 1}, "precocious": {"_count": 1}, "couple": {"_count": 2}, "dozenodd": {"_count": 1}, "muddy": {"_count": 1}, "baby": {"_count": 1}, "child": {"_count": 1}, "Death": {"_count": 2}, "He": {"_count": 1}, "goner": {"_count": 1}, "pair": {"_count": 1}, "little": {"_count": 2}, "stranger": {"_count": 1}, "kid": {"_count": 1}, "motley": {"_count": 1}, "birthday": {"_count": 1}, "question": {"_count": 1}, "wonderful": {"_count": 1}, "head": {"_count": 1}, "coat": {"_count": 1}, "number": {"_count": 1}, "strangers": {"_count": 1}, "piercing": {"_count": 1}}, "waiting": {"_count": 10, "for": {"_count": 4}, "": {"_count": 2}, "listening": {"_count": 1}, "in": {"_count": 1}, "still": {"_count": 1}, "Everything": {"_count": 1}}, "related": {"_count": 1, "to": {"_count": 1}}, "involved": {"_count": 2, "there": {"_count": 1}, "in": {"_count": 1}}, "both": {"_count": 56, "long": {"_count": 2}, "looking": {"_count": 3}, "clutching": {"_count": 2}, "asleep": {"_count": 1}, "abroad": {"_count": 1}, "wide": {"_count": 1}, "staring": {"_count": 1}, "out": {"_count": 1}, "scowling": {"_count": 1}, "twitching": {"_count": 1}, "beckoning": {"_count": 1}, "wearing": {"_count": 2}, "in": {"_count": 2}, "killed": {"_count": 1}, "grateful": {"_count": 1}, "damaged": {"_count": 1}, "being": {"_count": 1}, "Stunned": {"_count": 1}, "laughing": {"_count": 1}, "speaking": {"_count": 1}, "making": {"_count": 1}, "screaming": {"_count": 1}, "giggling": {"_count": 1}, "smirking": {"_count": 1}, "watching": {"_count": 1}, "headless": {"_count": 1}, "crying": {"_count": 1}, "nearer": {"_count": 1}, "blackened": {"_count": 1}, "gaping": {"_count": 1}, "listening": {"_count": 1}, "helping": {"_count": 1}, "there": {"_count": 2}, "sitting": {"_count": 1}, "soaring": {"_count": 1}, "old": {"_count": 1}, "hitting": {"_count": 1}, "gone": {"_count": 1}, "satisfyingly": {"_count": 1}, "safely": {"_count": 1}, "charged": {"_count": 1}, "wondering": {"_count": 1}, "goners": {"_count": 1}, "sobbing": {"_count": 1}, "really": {"_count": 1}, "scratching": {"_count": 1}, "now": {"_count": 1}, "aiming": {"_count": 1}, "whole": {"_count": 1}}, "light": {"_count": 1, "bright": {"_count": 1}}, "two": {"_count": 15, "tiny": {"_count": 1}, "large": {"_count": 1}, "The": {"_count": 1}, "dark": {"_count": 1}, "more": {"_count": 1}, "dementors": {"_count": 1}, "of": {"_count": 2}, "chairs": {"_count": 1}, "and": {"_count": 1}, "thestrals": {"_count": 1}, "men": {"_count": 1}, "bodies": {"_count": 1}, "in": {"_count": 1}, "loud": {"_count": 1}}, "bound": {"_count": 7, "to": {"_count": 6}, "tightly": {"_count": 1}}, "moving": {"_count": 21, "around": {"_count": 5}, "looking": {"_count": 1}, "in": {"_count": 3}, "into": {"_count": 1}, "": {"_count": 3}, "away": {"_count": 1}, "along": {"_count": 1}, "upward": {"_count": 1}, "toward": {"_count": 1}, "you": {"_count": 1}, "tonight": {"_count": 1}, "Arry": {"_count": 1}, "inexorably": {"_count": 1}}, "like": {"_count": 8, "baby": {"_count": 1}, "lead": {"_count": 1}, "chips": {"_count": 1}, "me": {"_count": 1}, "potatofilled": {"_count": 1}, "nothing": {"_count": 1}, "large": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 40, "": {"_count": 8}, "outside": {"_count": 1}, "But": {"_count": 1}, "you": {"_count": 2}, "a": {"_count": 1}, "for": {"_count": 2}, "both": {"_count": 1}, "along": {"_count": 1}, "Snape": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 2}, "if": {"_count": 1}, "by": {"_count": 1}, "such": {"_count": 1}, "they": {"_count": 1}, "in": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 3}, "last": {"_count": 1}, "any": {"_count": 1}, "before": {"_count": 1}, "at": {"_count": 1}, "too": {"_count": 1}, "we": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "still": {"_count": 1}}, "holding": {"_count": 6, "up": {"_count": 1}, "them": {"_count": 1}, "half": {"_count": 1}, "hands": {"_count": 1}, "daggers": {"_count": 1}, "their": {"_count": 1}}, "old": {"_count": 1, "clothes": {"_count": 1}}, "out": {"_count": 14, "today": {"_count": 1}, "in": {"_count": 2}, "of": {"_count": 9}, "": {"_count": 1}, "there": {"_count": 1}}, "just": {"_count": 32, "a": {"_count": 3}, "interested": {"_count": 1}, "getting": {"_count": 1}, "as": {"_count": 2}, "about": {"_count": 2}, "discussing": {"_count": 3}, "going": {"_count": 2}, "telling": {"_count": 1}, "too": {"_count": 1}, "talking": {"_count": 2}, "inside": {"_count": 1}, "waiting": {"_count": 1}, "trying": {"_count": 1}, "wondering": {"_count": 3}, "like": {"_count": 1}, "dreaming": {"_count": 1}, "er": {"_count": 1}, "floating": {"_count": 1}, "lurking": {"_count": 1}, "having": {"_count": 1}, "strolling": {"_count": 1}, "there": {"_count": 1}}, "starting": {"_count": 14, "to": {"_count": 12}, "some": {"_count": 1}, "now": {"_count": 1}}, "crawling": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 24, "a": {"_count": 3}, "the": {"_count": 10}, "fire": {"_count": 5}, "his": {"_count": 1}, "an": {"_count": 1}, "their": {"_count": 1}, "your": {"_count": 1}, "speaking": {"_count": 1}, "duty": {"_count": 1}}, "leaning": {"_count": 2, "right": {"_count": 1}, "forward": {"_count": 1}}, "all": {"_count": 128, "back": {"_count": 1}, "big": {"_count": 1}, "quite": {"_count": 1}, "really": {"_count": 1}, "very": {"_count": 2}, "gathered": {"_count": 1}, "so": {"_count": 1}, "wearing": {"_count": 3}, "the": {"_count": 2}, "taller": {"_count": 1}, "hanging": {"_count": 1}, "in": {"_count": 4}, "sitting": {"_count": 3}, "underage": {"_count": 1}, "nodding": {"_count": 1}, "for": {"_count": 2}, "there": {"_count": 1}, "covered": {"_count": 3}, "a": {"_count": 1}, "these": {"_count": 2}, "squeaking": {"_count": 1}, "closed": {"_count": 2}, "shouting": {"_count": 1}, "different": {"_count": 1}, "glaring": {"_count": 1}, "happily": {"_count": 1}, "looking": {"_count": 7}, "going": {"_count": 2}, "boarded": {"_count": 1}, "dead": {"_count": 1}, "moving": {"_count": 2}, "talking": {"_count": 2}, "busy": {"_count": 1}, "speeding": {"_count": 1}, "sporting": {"_count": 1}, "staring": {"_count": 4}, "perfectly": {"_count": 1}, "crammed": {"_count": 1}, "agreed": {"_count": 1}, "severely": {"_count": 1}, "draped": {"_count": 1}, "wondering": {"_count": 1}, "safe": {"_count": 1}, "here": {"_count": 1}, "right": {"_count": 1}, "extremely": {"_count": 1}, "clustered": {"_count": 1}, "heading": {"_count": 1}, "watching": {"_count": 3}, "supposed": {"_count": 2}, "Aurors": {"_count": 1}, "lying": {"_count": 1}, "keen": {"_count": 1}, "surprised": {"_count": 2}, "regarding": {"_count": 1}, "getting": {"_count": 1}, "Hermiones": {"_count": 1}, "snoozing": {"_count": 1}, "saying": {"_count": 1}, "keeping": {"_count": 1}, "flung": {"_count": 1}, "upset": {"_count": 1}, "trapped": {"_count": 1}, "idiots": {"_count": 1}, "bullyin": {"_count": 1}, "seated": {"_count": 1}, "bleating": {"_count": 1}, "standing": {"_count": 1}, "thinking": {"_count": 3}, "yelling": {"_count": 1}, "gazing": {"_count": 1}, "knocked": {"_count": 1}, "over": {"_count": 1}, "clearly": {"_count": 1}, "determinedly": {"_count": 1}, "too": {"_count": 1}, "searched": {"_count": 1}, "trying": {"_count": 1}, "inside": {"_count": 1}, "observing": {"_count": 1}, "at": {"_count": 1}, "of": {"_count": 1}, "fighting": {"_count": 1}, "imagining": {"_count": 1}, "laughing": {"_count": 1}, "safer": {"_count": 1}, "being": {"_count": 1}, "waving": {"_count": 1}, "still": {"_count": 1}, "gawping": {"_count": 1}, "he": {"_count": 1}, "behind": {"_count": 1}, "with": {"_count": 1}, "thrown": {"_count": 1}, "backing": {"_count": 1}, "empty": {"_count": 1}}, "asleep": {"_count": 2, "yet": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 6, "couldnt": {"_count": 1}, "heard": {"_count": 1}, "just": {"_count": 1}, "said": {"_count": 1}, "seemed": {"_count": 1}, "doubted": {"_count": 1}}, "no": {"_count": 52, "photographs": {"_count": 1}, "girls": {"_count": 1}, "longer": {"_count": 14}, "closer": {"_count": 1}, "seats": {"_count": 1}, "nearer": {"_count": 1}, "doors": {"_count": 1}, "bent": {"_count": 1}, "use": {"_count": 1}, "numerals": {"_count": 1}, "sooner": {"_count": 1}, "waiters": {"_count": 1}, "windows": {"_count": 2}, "pictures": {"_count": 1}, "streetlamps": {"_count": 1}, "such": {"_count": 1}, "teachers": {"_count": 1}, "dementors": {"_count": 1}, "trees": {"_count": 1}, "fires": {"_count": 1}, "glittering": {"_count": 1}, "more": {"_count": 3}, "good": {"_count": 1}, "Outstandings": {"_count": 1}, "Aurors": {"_count": 1}, "waves": {"_count": 1}, "radishes": {"_count": 1}, "ropes": {"_count": 1}, "clothes": {"_count": 1}, "books": {"_count": 1}, "match": {"_count": 2}, "lights": {"_count": 2}, "whites": {"_count": 1}, "flashes": {"_count": 1}}, "his": {"_count": 11, "only": {"_count": 1}, "mother": {"_count": 2}, "first": {"_count": 1}, "shoes": {"_count": 1}, "speciality": {"_count": 1}, "oldest": {"_count": 1}, "firstborn": {"_count": 1}, "knees": {"_count": 1}, "most": {"_count": 1}, "eyes": {"_count": 1}}, "too": {"_count": 17, "": {"_count": 2}, "close": {"_count": 1}, "small": {"_count": 1}, "many": {"_count": 3}, "tight": {"_count": 1}, "heavy": {"_count": 1}, "busy": {"_count": 1}, "good": {"_count": 1}, "young": {"_count": 4}, "damn": {"_count": 1}, "late": {"_count": 1}}, "still": {"_count": 116, "in": {"_count": 3}, "glowing": {"_count": 1}, "at": {"_count": 2}, "discussing": {"_count": 1}, "spots": {"_count": 1}, "to": {"_count": 1}, "watching": {"_count": 3}, "plummeting": {"_count": 1}, "being": {"_count": 1}, "moving": {"_count": 2}, "flooding": {"_count": 1}, "coursing": {"_count": 1}, "slits": {"_count": 1}, "fast": {"_count": 1}, "on": {"_count": 2}, "shining": {"_count": 1}, "and": {"_count": 1}, "fixed": {"_count": 3}, "alive": {"_count": 3}, "ten": {"_count": 1}, "apt": {"_count": 1}, "gaping": {"_count": 1}, "standing": {"_count": 3}, "fighting": {"_count": 3}, "burning": {"_count": 1}, "upon": {"_count": 1}, "smoking": {"_count": 1}, "gazing": {"_count": 3}, "with": {"_count": 1}, "watering": {"_count": 1}, "gathered": {"_count": 1}, "clutching": {"_count": 1}, "just": {"_count": 1}, "tending": {"_count": 2}, "doing": {"_count": 1}, "two": {"_count": 1}, "drawn": {"_count": 1}, "staring": {"_count": 2}, "waiting": {"_count": 2}, "sitting": {"_count": 1}, "abroad": {"_count": 1}, "shocked": {"_count": 1}, "glaring": {"_count": 1}, "the": {"_count": 1}, "lying": {"_count": 1}, "singing": {"_count": 1}, "bolted": {"_count": 1}, "listening": {"_count": 1}, "raised": {"_count": 1}, "smirking": {"_count": 1}, "whispering": {"_count": 1}, "thinking": {"_count": 1}, "plenty": {"_count": 1}, "getting": {"_count": 2}, "there": {"_count": 2}, "inside": {"_count": 1}, "unable": {"_count": 1}, "flaming": {"_count": 1}, "flying": {"_count": 2}, "arguing": {"_count": 1}, "battling": {"_count": 1}, "flashes": {"_count": 1}, "dancing": {"_count": 1}, "so": {"_count": 1}, "a": {"_count": 1}, "deep": {"_count": 1}, "many": {"_count": 1}, "pointing": {"_count": 1}, "allowed": {"_count": 1}, "zooming": {"_count": 1}, "mysteries": {"_count": 1}, "murky": {"_count": 1}, "closed": {"_count": 1}, "falling": {"_count": 1}, "running": {"_count": 1}, "echoing": {"_count": 1}, "going": {"_count": 1}, "library": {"_count": 1}, "": {"_count": 1}, "craning": {"_count": 1}, "scarlet": {"_count": 1}, "turning": {"_count": 1}, "wearing": {"_count": 1}, "happy": {"_count": 1}, "clustered": {"_count": 1}, "five": {"_count": 1}, "beaming": {"_count": 1}, "probing": {"_count": 1}, "users": {"_count": 1}, "scattered": {"_count": 1}, "missing": {"_count": 1}, "discernible": {"_count": 1}, "masked": {"_count": 1}}, "full": {"_count": 9, "of": {"_count": 7}, "except": {"_count": 1}, "to": {"_count": 1}}, "in": {"_count": 59, "the": {"_count": 16}, "a": {"_count": 8}, "it": {"_count": 1}, "danger": {"_count": 2}, "very": {"_count": 1}, "class": {"_count": 2}, "that": {"_count": 1}, "her": {"_count": 1}, "our": {"_count": 1}, "on": {"_count": 1}, "conversation": {"_count": 1}, "great": {"_count": 1}, "bed": {"_count": 1}, "an": {"_count": 1}, "close": {"_count": 1}, "complete": {"_count": 1}, "this": {"_count": 1}, "St": {"_count": 1}, "trouble": {"_count": 3}, "first": {"_count": 1}, "near": {"_count": 1}, "more": {"_count": 2}, "separate": {"_count": 1}, "front": {"_count": 1}, "Diagon": {"_count": 1}, "Hogsmeade": {"_count": 2}, "here": {"_count": 1}, "for": {"_count": 1}, "Ritas": {"_count": 1}, "": {"_count": 1}, "tears": {"_count": 1}}, "going": {"_count": 130, "": {"_count": 6}, "even": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 107}, "they": {"_count": 1}, "hed": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}, "back": {"_count": 2}, "wrong": {"_count": 1}, "first": {"_count": 1}, "out": {"_count": 1}, "ahead": {"_count": 1}, "up": {"_count": 1}, "till": {"_count": 1}, "after": {"_count": 1}}, "never": {"_count": 14, "exactly": {"_count": 1}, "mentioned": {"_count": 1}, "going": {"_count": 2}, "caught": {"_count": 1}, "used": {"_count": 1}, "quite": {"_count": 1}, "good": {"_count": 1}, "detected": {"_count": 1}, "satisfactorily": {"_count": 1}, "much": {"_count": 1}, "a": {"_count": 1}, "seen": {"_count": 1}, "the": {"_count": 1}}, "only": {"_count": 26, "two": {"_count": 3}, "four": {"_count": 2}, "just": {"_count": 2}, "three": {"_count": 4}, "halfclosed": {"_count": 1}, "going": {"_count": 1}, "ten": {"_count": 1}, "saying": {"_count": 1}, "a": {"_count": 3}, "there": {"_count": 2}, "six": {"_count": 1}, "muttering": {"_count": 1}, "supposed": {"_count": 1}, "part": {"_count": 1}, "around": {"_count": 1}, "seven": {"_count": 1}}, "drowned": {"_count": 11, "by": {"_count": 5}, "out": {"_count": 1}, "in": {"_count": 2}, "as": {"_count": 1}, "until": {"_count": 1}, "": {"_count": 1}}, "crinkled": {"_count": 1, "in": {"_count": 1}}, "cowering": {"_count": 2, "against": {"_count": 1}, "with": {"_count": 1}}, "they": {"_count": 28, "": {"_count": 6}, "out": {"_count": 1}, "didnt": {"_count": 1}, "going": {"_count": 5}, "all": {"_count": 2}, "supposed": {"_count": 1}, "talking": {"_count": 2}, "doing": {"_count": 3}, "playing": {"_count": 1}, "the": {"_count": 1}, "hiding": {"_count": 1}, "studying": {"_count": 1}, "looked": {"_count": 1}, "at": {"_count": 1}, "after": {"_count": 1}}, "afraid": {"_count": 2, "some": {"_count": 1}, "thought": {"_count": 1}}, "clenched": {"_count": 5, "": {"_count": 1}, "the": {"_count": 1}, "upon": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}}, "weirdos": {"_count": 1, "no": {"_count": 1}}, "you": {"_count": 61, "expelled": {"_count": 1}, "Potter": {"_count": 1}, "thinking": {"_count": 2}, "doing": {"_count": 7}, "": {"_count": 13}, "when": {"_count": 3}, "doin": {"_count": 1}, "said": {"_count": 2}, "saying": {"_count": 6}, "going": {"_count": 2}, "dear": {"_count": 1}, "Peeves": {"_count": 1}, "Dumbledore": {"_count": 1}, "asking": {"_count": 1}, "talking": {"_count": 1}, "lurking": {"_count": 1}, "wouldnt": {"_count": 1}, "attacking": {"_count": 1}, "anyway": {"_count": 1}, "trying": {"_count": 2}, "that": {"_count": 1}, "Snivellus": {"_count": 1}, "planning": {"_count": 1}, "a": {"_count": 1}, "not": {"_count": 3}, "late": {"_count": 1}, "this": {"_count": 1}, "expecting": {"_count": 1}, "in": {"_count": 1}, "after": {"_count": 1}}, "best": {"_count": 2, "left": {"_count": 1}, "suited": {"_count": 1}}, "sitting": {"_count": 45, "in": {"_count": 10}, "on": {"_count": 6}, "": {"_count": 7}, "puffyeyed": {"_count": 1}, "opposite": {"_count": 1}, "at": {"_count": 6}, "apart": {"_count": 1}, "right": {"_count": 1}, "to": {"_count": 1}, "around": {"_count": 3}, "staring": {"_count": 1}, "with": {"_count": 2}, "side": {"_count": 2}, "beside": {"_count": 1}, "together": {"_count": 2}}, "facing": {"_count": 7, "an": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 1}, "six": {"_count": 1}, "when": {"_count": 1}, "that": {"_count": 1}}, "shops": {"_count": 1, "selling": {"_count": 1}}, "showing": {"_count": 4, "people": {"_count": 1}, "no": {"_count": 1}, "one": {"_count": 1}, "moral": {"_count": 1}}, "little": {"_count": 2, "railway": {"_count": 1}, "we": {"_count": 1}}, "off": {"_count": 7, "": {"_count": 4}, "hitting": {"_count": 1}, "fighting": {"_count": 1}, "to": {"_count": 1}}, "mounds": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 33, "a": {"_count": 1}, "call": {"_count": 1}, "keep": {"_count": 2}, "use": {"_count": 1}, "walk": {"_count": 1}, "be": {"_count": 4}, "stop": {"_count": 1}, "enter": {"_count": 1}, "Disapparate": {"_count": 1}, "work": {"_count": 1}, "return": {"_count": 2}, "have": {"_count": 1}, "start": {"_count": 1}, "wait": {"_count": 1}, "do": {"_count": 2}, "act": {"_count": 1}, "remain": {"_count": 1}, "pursue": {"_count": 1}, "go": {"_count": 1}, "help": {"_count": 1}, "patrol": {"_count": 1}, "join": {"_count": 1}, "arrive": {"_count": 1}, "Apparate": {"_count": 1}, "part": {"_count": 1}, "meet": {"_count": 1}, "dismount": {"_count": 1}}, "our": {"_count": 1, "kind": {"_count": 1}}, "hes": {"_count": 1, "grown": {"_count": 1}}, "stacked": {"_count": 3, "to": {"_count": 1}, "three": {"_count": 1}, "untidily": {"_count": 1}}, "almost": {"_count": 14, "nose": {"_count": 2}, "at": {"_count": 3}, "as": {"_count": 2}, "exactly": {"_count": 1}, "deserted": {"_count": 1}, "the": {"_count": 1}, "anywhere": {"_count": 1}, "there": {"_count": 1}, "certainly": {"_count": 1}, "completely": {"_count": 1}}, "gawking": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 13, "all": {"_count": 1}, "him": {"_count": 3}, "us": {"_count": 1}, "her": {"_count": 2}, "me": {"_count": 1}, "Cho": {"_count": 1}, "you": {"_count": 1}, "Professor": {"_count": 1}, "them": {"_count": 1}, "Hagrid": {"_count": 1}}, "when": {"_count": 3, "Hagrid": {"_count": 1}, "hed": {"_count": 1}, "you": {"_count": 1}}, "empty": {"_count": 7, "": {"_count": 2}, "brandy": {"_count": 1}, "their": {"_count": 1}, "and": {"_count": 2}, "words": {"_count": 1}}, "very": {"_count": 20, "interesting": {"_count": 1}, "nice": {"_count": 1}, "dark": {"_count": 2}, "highly": {"_count": 1}, "small": {"_count": 1}, "relieved": {"_count": 1}, "fashionable": {"_count": 1}, "different": {"_count": 1}, "rude": {"_count": 1}, "heavily": {"_count": 1}, "popular": {"_count": 1}, "painful": {"_count": 1}, "bright": {"_count": 1}, "close": {"_count": 2}, "broad": {"_count": 1}, "slim": {"_count": 1}, "strange": {"_count": 1}, "high": {"_count": 1}}, "watching": {"_count": 17, "a": {"_count": 2}, "him": {"_count": 3}, "apprehensively": {"_count": 1}, "them": {"_count": 1}, "": {"_count": 2}, "through": {"_count": 1}, "All": {"_count": 1}, "its": {"_count": 1}, "their": {"_count": 2}, "what": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "laughing": {"_count": 15, "": {"_count": 3}, "at": {"_count": 5}, "harder": {"_count": 1}, "again": {"_count": 2}, "to": {"_count": 1}, "Hermione": {"_count": 1}, "below": {"_count": 1}, "together": {"_count": 1}}, "already": {"_count": 26, "packed": {"_count": 1}, "there": {"_count": 2}, "stretched": {"_count": 1}, "invisible": {"_count": 1}, "in": {"_count": 3}, "standing": {"_count": 1}, "lengthening": {"_count": 1}, "seated": {"_count": 1}, "sprinting": {"_count": 1}, "hurrying": {"_count": 1}, "getting": {"_count": 1}, "full": {"_count": 1}, "sitting": {"_count": 1}, "deep": {"_count": 1}, "asleep": {"_count": 1}, "objecting": {"_count": 1}, "heading": {"_count": 1}, "wearing": {"_count": 1}, "approaching": {"_count": 1}, "climbing": {"_count": 1}, "sore": {"_count": 1}, "glimmering": {"_count": 1}, "strewn": {"_count": 1}}, "back": {"_count": 16, "": {"_count": 1}, "to": {"_count": 2}, "George": {"_count": 1}, "on": {"_count": 2}, "at": {"_count": 3}, "above": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 4}, "and": {"_count": 1}}, "clearly": {"_count": 5, "one": {"_count": 1}, "doing": {"_count": 1}, "born": {"_count": 1}, "visible": {"_count": 1}, "right": {"_count": 1}}, "speeding": {"_count": 1, "past": {"_count": 1}}, "quiet": {"_count": 1, "for": {"_count": 1}}, "Bertie": {"_count": 1, "Botts": {"_count": 1}}, "four": {"_count": 3, "sandwiches": {"_count": 1}, "differentsized": {"_count": 1}, "of": {"_count": 1}}, "woods": {"_count": 1, "twisting": {"_count": 1}}, "thickset": {"_count": 1, "and": {"_count": 1}}, "more": {"_count": 22, "rats": {"_count": 1}, "pressing": {"_count": 1}, "draining": {"_count": 1}, "than": {"_count": 3}, "or": {"_count": 1}, "likely": {"_count": 1}, "courses": {"_count": 1}, "important": {"_count": 1}, "patched": {"_count": 1}, "concerned": {"_count": 1}, "figures": {"_count": 1}, "doors": {"_count": 1}, "shocked": {"_count": 1}, "involved": {"_count": 1}, "often": {"_count": 1}, "people": {"_count": 1}, "dementors": {"_count": 1}, "widely": {"_count": 1}, "duelers": {"_count": 1}, "even": {"_count": 1}}, "some": {"_count": 5, "of": {"_count": 2}, "very": {"_count": 1}, "sort": {"_count": 1}, "mighty": {"_count": 1}}, "nearly": {"_count": 4, "there": {"_count": 1}, "thrown": {"_count": 1}, "upon": {"_count": 1}, "": {"_count": 1}}, "followed": {"_count": 2, "into": {"_count": 1}, "": {"_count": 1}}, "carried": {"_count": 1, "along": {"_count": 1}}, "lit": {"_count": 6, "with": {"_count": 1}, "": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "now": {"_count": 1}}, "floating": {"_count": 4, "in": {"_count": 1}, "over": {"_count": 1}, "dreaming": {"_count": 1}, "through": {"_count": 1}}, "laid": {"_count": 2, "with": {"_count": 1}, "on": {"_count": 1}}, "now": {"_count": 79, "piled": {"_count": 1}, "waving": {"_count": 1}, "inky": {"_count": 1}, "reddening": {"_count": 1}, "flying": {"_count": 1}, "moving": {"_count": 2}, "emerging": {"_count": 1}, "barred": {"_count": 1}, "two": {"_count": 1}, "crammed": {"_count": 1}, "bowling": {"_count": 1}, "several": {"_count": 1}, "a": {"_count": 1}, "spending": {"_count": 1}, "streaming": {"_count": 1}, "on": {"_count": 3}, "accompanied": {"_count": 1}, "blocked": {"_count": 1}, "": {"_count": 1}, "trickling": {"_count": 1}, "hidden": {"_count": 1}, "rolling": {"_count": 1}, "gliding": {"_count": 1}, "leading": {"_count": 1}, "standing": {"_count": 4}, "washing": {"_count": 1}, "waiting": {"_count": 1}, "grazing": {"_count": 1}, "over": {"_count": 1}, "growing": {"_count": 2}, "sitting": {"_count": 5}, "only": {"_count": 2}, "working": {"_count": 1}, "ranged": {"_count": 1}, "so": {"_count": 2}, "inside": {"_count": 1}, "trundling": {"_count": 1}, "helping": {"_count": 1}, "laughing": {"_count": 1}, "flexing": {"_count": 1}, "sticking": {"_count": 1}, "neck": {"_count": 1}, "landing": {"_count": 1}, "tinged": {"_count": 1}, "speeding": {"_count": 1}, "favorites": {"_count": 1}, "chained": {"_count": 1}, "soaring": {"_count": 1}, "vying": {"_count": 1}, "dawdling": {"_count": 1}, "silhouetted": {"_count": 1}, "telling": {"_count": 1}, "swimming": {"_count": 1}, "the": {"_count": 2}, "raining": {"_count": 1}, "dueling": {"_count": 1}, "seeing": {"_count": 1}, "expected": {"_count": 1}, "too": {"_count": 1}, "ten": {"_count": 1}, "sleeping": {"_count": 1}, "halfclosed": {"_count": 1}, "pitching": {"_count": 1}, "singing": {"_count": 1}, "examining": {"_count": 1}}, "married": {"_count": 3, "": {"_count": 3}}, "talking": {"_count": 31, "about": {"_count": 16}, "in": {"_count": 1}, "when": {"_count": 1}, "excitedly": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 2}, "Mr": {"_count": 1}, "to": {"_count": 3}, "quietly": {"_count": 2}, "or": {"_count": 1}, "so": {"_count": 1}, "of": {"_count": 1}}, "not": {"_count": 115, "allowed": {"_count": 6}, "telling": {"_count": 1}, "working": {"_count": 2}, "stupid": {"_count": 1}, "wiping": {"_count": 1}, "six": {"_count": 1}, "supposed": {"_count": 7}, "": {"_count": 2}, "careful": {"_count": 1}, "losing": {"_count": 1}, "going": {"_count": 8}, "for": {"_count": 2}, "out": {"_count": 1}, "using": {"_count": 1}, "exactly": {"_count": 1}, "the": {"_count": 8}, "aware": {"_count": 2}, "moving": {"_count": 3}, "alone": {"_count": 1}, "as": {"_count": 4}, "so": {"_count": 1}, "enough": {"_count": 1}, "sure": {"_count": 3}, "nearly": {"_count": 1}, "laughing": {"_count": 1}, "enslaved": {"_count": 1}, "narrowed": {"_count": 1}, "taking": {"_count": 1}, "being": {"_count": 3}, "welcoming": {"_count": 1}, "at": {"_count": 1}, "trying": {"_count": 1}, "fussy": {"_count": 1}, "felt": {"_count": 1}, "high": {"_count": 2}, "succeeding": {"_count": 1}, "obscured": {"_count": 1}, "hard": {"_count": 1}, "here": {"_count": 1}, "looking": {"_count": 1}, "sweeping": {"_count": 1}, "satisfied": {"_count": 1}, "improving": {"_count": 1}, "bothering": {"_count": 1}, "fussed": {"_count": 1}, "discussing": {"_count": 1}, "his": {"_count": 1}, "frightened": {"_count": 1}, "under": {"_count": 1}, "shamming": {"_count": 1}, "complaining": {"_count": 1}, "coming": {"_count": 1}, "far": {"_count": 2}, "a": {"_count": 1}, "spending": {"_count": 1}, "Scrimgeour": {"_count": 1}, "counting": {"_count": 1}, "afraid": {"_count": 1}, "selling": {"_count": 1}, "Slughorns": {"_count": 1}, "staying": {"_count": 1}, "those": {"_count": 1}, "yet": {"_count": 2}, "dangerous": {"_count": 1}, "heading": {"_count": 1}, "alike": {"_count": 1}, "friends": {"_count": 1}, "very": {"_count": 1}, "about": {"_count": 1}, "speaking": {"_count": 1}, "living": {"_count": 1}, "visited": {"_count": 1}, "overheard": {"_count": 1}, "hidden": {"_count": 1}}, "left": {"_count": 8, "singing": {"_count": 1}, "in": {"_count": 2}, "alone": {"_count": 1}, "with": {"_count": 1}, "beside": {"_count": 1}, "to": {"_count": 1}, "were": {"_count": 1}}, "doors": {"_count": 2, "that": {"_count": 1}, "all": {"_count": 1}}, "trying": {"_count": 18, "to": {"_count": 18}}, "late": {"_count": 4, "for": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 1}}, "lost": {"_count": 5, "was": {"_count": 1}, "to": {"_count": 2}, "from": {"_count": 1}, "": {"_count": 1}}, "rescued": {"_count": 1, "by": {"_count": 1}}, "used": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "each": {"_count": 1, "given": {"_count": 1}}, "witches": {"_count": 2, "and": {"_count": 2}}, "black": {"_count": 3, "like": {"_count": 1}, "": {"_count": 1}, "drapes": {"_count": 1}}, "cold": {"_count": 2, "and": {"_count": 2}}, "shaking": {"_count": 8, "with": {"_count": 3}, "as": {"_count": 1}, "slightly": {"_count": 1}, "his": {"_count": 1}, "so": {"_count": 1}, "worse": {"_count": 1}}, "low": {"_count": 2, "": {"_count": 2}}, "outside": {"_count": 2, "the": {"_count": 1}, "Ministry": {"_count": 1}}, "hanging": {"_count": 7, "from": {"_count": 2}, "a": {"_count": 1}, "on": {"_count": 1}, "out": {"_count": 1}, "more": {"_count": 1}, "off": {"_count": 1}}, "shapeless": {"_count": 1, "lumps": {"_count": 1}}, "delighted": {"_count": 2, "to": {"_count": 1}, "when": {"_count": 1}}, "looking": {"_count": 47, "for": {"_count": 8}, "straight": {"_count": 1}, "as": {"_count": 1}, "stonyfaced": {"_count": 1}, "puzzled": {"_count": 1}, "at": {"_count": 8}, "utterly": {"_count": 1}, "extremely": {"_count": 1}, "deeply": {"_count": 1}, "very": {"_count": 2}, "daggers": {"_count": 1}, "up": {"_count": 3}, "scared": {"_count": 1}, "scandalized": {"_count": 1}, "mutinous": {"_count": 1}, "forward": {"_count": 1}, "around": {"_count": 2}, "down": {"_count": 3}, "rather": {"_count": 2}, "particularly": {"_count": 1}, "and": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 1}, "positively": {"_count": 1}, "after": {"_count": 1}, "into": {"_count": 1}}, "half": {"_count": 6, "hoping": {"_count": 1}, "a": {"_count": 3}, "convinced": {"_count": 1}, "gummed": {"_count": 1}}, "swaying": {"_count": 3, "darkly": {"_count": 2}, "like": {"_count": 1}}, "twenty": {"_count": 2, "broomsticks": {"_count": 1}, "feet": {"_count": 1}}, "clapping": {"_count": 1, "": {"_count": 1}}, "lucky": {"_count": 6, "": {"_count": 1}, "but": {"_count": 1}, "well": {"_count": 1}, "they": {"_count": 1}, "said": {"_count": 1}, "hell": {"_count": 1}}, "enough": {"_count": 3, "to": {"_count": 2}, "chapters": {"_count": 1}}, "or": {"_count": 3, "where": {"_count": 1}, "how": {"_count": 1}, "debating": {"_count": 1}}, "quite": {"_count": 11, "keen": {"_count": 1}, "sure": {"_count": 1}, "deserted": {"_count": 1}, "as": {"_count": 1}, "motionless": {"_count": 1}, "a": {"_count": 1}, "capable": {"_count": 1}, "silent": {"_count": 1}, "right": {"_count": 1}, "alone": {"_count": 1}, "obliterated": {"_count": 1}}, "raised": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}}, "high": {"_count": 1, "enough": {"_count": 1}}, "three": {"_count": 3, "golden": {"_count": 1}, "bodies": {"_count": 1}, "teenagers": {"_count": 1}}, "fifty": {"_count": 1, "feet": {"_count": 1}}, "up": {"_count": 14, "in": {"_count": 3}, "to": {"_count": 9}, "at": {"_count": 1}, "on": {"_count": 1}}, "becoming": {"_count": 6, "more": {"_count": 2}, "moody": {"_count": 1}, "sorer": {"_count": 1}, "louder": {"_count": 1}, "overwhelming": {"_count": 1}}, "ready": {"_count": 7, "to": {"_count": 4}, "": {"_count": 1}, "for": {"_count": 2}}, "supposed": {"_count": 33, "to": {"_count": 33}}, "so": {"_count": 40, "long": {"_count": 2}, "close": {"_count": 1}, "thick": {"_count": 2}, "busy": {"_count": 2}, "horribly": {"_count": 1}, "miserable": {"_count": 1}, "small": {"_count": 1}, "many": {"_count": 2}, "short": {"_count": 2}, "exhausted": {"_count": 1}, "clearly": {"_count": 1}, "tired": {"_count": 2}, "stiff": {"_count": 1}, "tall": {"_count": 1}, "but": {"_count": 1}, "very": {"_count": 2}, "keen": {"_count": 1}, "foul": {"_count": 1}, "encrusted": {"_count": 1}, "often": {"_count": 2}, "deep": {"_count": 1}, "few": {"_count": 1}, "intent": {"_count": 2}, "swollen": {"_count": 1}, "sorry": {"_count": 1}, "desperate": {"_count": 1}, "good": {"_count": 1}, "interested": {"_count": 1}, "extraordinarily": {"_count": 1}, "mismatched": {"_count": 1}, "far": {"_count": 1}}, "white": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "seven": {"_count": 2, "hundred": {"_count": 1}, "people": {"_count": 1}}, "usually": {"_count": 7, "the": {"_count": 1}, "light": {"_count": 1}, "on": {"_count": 1}, "tied": {"_count": 1}, "gleaming": {"_count": 1}, "inseparable": {"_count": 1}, "shipped": {"_count": 1}}, "standing": {"_count": 50, "with": {"_count": 2}, "on": {"_count": 5}, "up": {"_count": 5}, "nervously": {"_count": 1}, "in": {"_count": 13}, "beneath": {"_count": 1}, "underneath": {"_count": 1}, "there": {"_count": 1}, "around": {"_count": 2}, "huddled": {"_count": 1}, "looking": {"_count": 1}, "instead": {"_count": 1}, "behind": {"_count": 2}, "outside": {"_count": 1}, "right": {"_count": 2}, "at": {"_count": 3}, "waiting": {"_count": 1}, "apparently": {"_count": 1}, "all": {"_count": 1}, "alone": {"_count": 1}, "together": {"_count": 1}, "There": {"_count": 1}, "looked": {"_count": 1}, "hand": {"_count": 1}}, "sure": {"_count": 8, "it": {"_count": 2}, "shed": {"_count": 1}, "you": {"_count": 2}, "were": {"_count": 1}, "beyond": {"_count": 1}, "to": {"_count": 1}}, "other": {"_count": 5, "teachers": {"_count": 1}, "reasons": {"_count": 1}, "bodies": {"_count": 1}, "Horcruxes": {"_count": 1}, "women": {"_count": 1}}, "inside": {"_count": 6, "alone": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}, "their": {"_count": 1}}, "wide": {"_count": 8, "": {"_count": 1}, "and": {"_count": 4}, "with": {"_count": 1}, "dilated": {"_count": 1}, "he": {"_count": 1}}, "changing": {"_count": 2, "into": {"_count": 2}}, "cheering": {"_count": 4, "": {"_count": 1}, "Ginny": {"_count": 1}, "out": {"_count": 1}, "him": {"_count": 1}}, "pointing": {"_count": 5, "up": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}, "directly": {"_count": 1}}, "punished": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "Professor": {"_count": 2, "Snapes": {"_count": 1}, "Dumbledore": {"_count": 1}}, "staying": {"_count": 5, "too": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "we": {"_count": 1}, "at": {"_count": 1}}, "busy": {"_count": 2, "with": {"_count": 1}, "swapping": {"_count": 1}}, "having": {"_count": 14, "too": {"_count": 1}, "a": {"_count": 4}, "what": {"_count": 1}, "the": {"_count": 2}, "great": {"_count": 1}, "an": {"_count": 2}, "their": {"_count": 1}, "silent": {"_count": 1}, "conversations": {"_count": 1}}, "able": {"_count": 14, "to": {"_count": 14}}, "fun": {"_count": 2, "to": {"_count": 1}, "I": {"_count": 1}}, "alive": {"_count": 6, "which": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "then": {"_count": 1}, "sentient": {"_count": 1}}, "gone": {"_count": 16, "": {"_count": 8}, "Harry": {"_count": 1}, "but": {"_count": 1}, "before": {"_count": 1}, "where": {"_count": 1}, "replaced": {"_count": 1}, "There": {"_count": 1}, "and": {"_count": 2}}, "wearing": {"_count": 16, "blue": {"_count": 1}, "off": {"_count": 1}, "green": {"_count": 1}, "cloaks": {"_count": 2}, "a": {"_count": 2}, "large": {"_count": 1}, "glum": {"_count": 1}, "crowns": {"_count": 1}, "those": {"_count": 1}, "expressions": {"_count": 1}, "jeans": {"_count": 1}, "it": {"_count": 1}, "jackets": {"_count": 1}, "around": {"_count": 1}}, "called": {"_count": 6, "Gred": {"_count": 1}, "Anthony": {"_count": 1}, "upon": {"_count": 1}, "forward": {"_count": 2}, "All": {"_count": 1}}, "nothing": {"_count": 3, "like": {"_count": 1}, "more": {"_count": 2}}, "piled": {"_count": 3, "against": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "at": {"_count": 24, "least": {"_count": 4}, "school": {"_count": 3}, "the": {"_count": 9}, "some": {"_count": 1}, "his": {"_count": 2}, "headquarters": {"_count": 1}, "a": {"_count": 1}, "war": {"_count": 1}, "Slughorns": {"_count": 1}, "Arianas": {"_count": 1}}, "dead": {"_count": 6, "with": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "you": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 19}, "?": {"_count": 5}, "!": {"_count": 2}}, "turning": {"_count": 4, "into": {"_count": 1}, "to": {"_count": 1}, "slowly": {"_count": 1}, "searching": {"_count": 1}}, "wondering": {"_count": 3, "whether": {"_count": 1}, "if": {"_count": 1}, "what": {"_count": 1}}, "gold": {"_count": 1, "youd": {"_count": 1}}, "right": {"_count": 14, "it": {"_count": 2}, "outside": {"_count": 2}, "behind": {"_count": 1}, "in": {"_count": 2}, "werent": {"_count": 2}, "her": {"_count": 1}, "Ive": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "keeping": {"_count": 3, "dragons": {"_count": 1}, "up": {"_count": 2}}, "surprised": {"_count": 2, "to": {"_count": 1}, "at": {"_count": 1}}, "closed": {"_count": 7, "": {"_count": 3}, "so": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "thinking": {"_count": 10, "the": {"_count": 2}, "about": {"_count": 2}, "of": {"_count": 3}, "right": {"_count": 1}, "this": {"_count": 1}, "bringing": {"_count": 1}}, "getting": {"_count": 17, "": {"_count": 1}, "rid": {"_count": 1}, "too": {"_count": 1}, "desperate": {"_count": 1}, "better": {"_count": 3}, "closer": {"_count": 1}, "very": {"_count": 1}, "on": {"_count": 2}, "every": {"_count": 1}, "now": {"_count": 1}, "anywhere": {"_count": 1}, "near": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 1}}, "deep": {"_count": 4, "cracks": {"_count": 1}, "purple": {"_count": 1}, "in": {"_count": 1}, "scratch": {"_count": 1}}, "huge": {"_count": 2, "compared": {"_count": 1}, "in": {"_count": 1}}, "poisonous": {"_count": 1, "": {"_count": 1}}, "cornered": {"_count": 1, "": {"_count": 1}}, "suffering": {"_count": 3, "too": {"_count": 1}, "from": {"_count": 1}, "Umbridgeitis": {"_count": 1}}, "due": {"_count": 4, "to": {"_count": 4}}, "delivered": {"_count": 1, "to": {"_count": 1}}, "expelled": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "gonna": {"_count": 2, "do": {"_count": 1}, "split": {"_count": 1}}, "being": {"_count": 30, "watched": {"_count": 3}, "sucked": {"_count": 1}, "Xrayed": {"_count": 1}, "shepherded": {"_count": 1}, "led": {"_count": 1}, "spurred": {"_count": 1}, "contorted": {"_count": 1}, "emptied": {"_count": 1}, "shown": {"_count": 1}, "so": {"_count": 1}, "quite": {"_count": 1}, "extracted": {"_count": 1}, "noisy": {"_count": 1}, "pulled": {"_count": 1}, "prevented": {"_count": 1}, "forced": {"_count": 2}, "pushed": {"_count": 1}, "set": {"_count": 1}, "carried": {"_count": 1}, "really": {"_count": 1}, "searched": {"_count": 1}, "chased": {"_count": 1}, "moved": {"_count": 2}, "realistic": {"_count": 1}, "treated": {"_count": 1}, "released": {"_count": 1}}, "makin": {"_count": 1, "": {"_count": 1}}, "changin": {"_count": 1, "groups": {"_count": 1}}, "splashes": {"_count": 1, "on": {"_count": 1}}, "stuck": {"_count": 7, "out": {"_count": 1}, "looking": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}}, "passing": {"_count": 3, "through": {"_count": 1}, "beneath": {"_count": 1}, "the": {"_count": 1}}, "given": {"_count": 4, "for": {"_count": 1}, "something": {"_count": 1}, "new": {"_count": 1}, "additional": {"_count": 1}}, "tickling": {"_count": 1, "the": {"_count": 1}}, "rolled": {"_count": 1, "up": {"_count": 1}}, "playing": {"_count": 7, "cards": {"_count": 1}, "some": {"_count": 2}, "Slytherin": {"_count": 1}, "in": {"_count": 1}, "wizard": {"_count": 1}, "tricks": {"_count": 1}}, "Harry": {"_count": 3, "began": {"_count": 1}, "didnt": {"_count": 1}, "": {"_count": 1}}, "glittering": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "about": {"_count": 25, "to": {"_count": 16}, "anything": {"_count": 1}, "a": {"_count": 4}, "fifty": {"_count": 2}, "that": {"_count": 1}, "as": {"_count": 1}}, "jammed": {"_count": 2, "together": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 5, "carved": {"_count": 1}, "it": {"_count": 1}, "sure": {"_count": 1}, "I": {"_count": 1}, "how": {"_count": 1}}, "trembling": {"_count": 5, "": {"_count": 3}, "too": {"_count": 1}, "so": {"_count": 1}}, "trapped": {"_count": 4, "": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "here": {"_count": 1}}, "brave": {"_count": 2, "": {"_count": 1}, "enough": {"_count": 1}}, "blistering": {"_count": 1, "before": {"_count": 1}}, "responsible": {"_count": 2, "for": {"_count": 2}}, "doing": {"_count": 28, "very": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 2}, "": {"_count": 7}, "Harry": {"_count": 1}, "no": {"_count": 1}, "floating": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 1}, "here": {"_count": 1}, "something": {"_count": 1}, "was": {"_count": 1}, "then": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}, "said": {"_count": 1}, "will": {"_count": 1}}, "I": {"_count": 4, "couldnt": {"_count": 1}, "KNOW": {"_count": 1}, "wouldnt": {"_count": 1}, "see": {"_count": 1}}, "dashing": {"_count": 2, "up": {"_count": 1}, "from": {"_count": 1}}, "steamrollered": {"_count": 1, "by": {"_count": 1}}, "beside": {"_count": 2, "themselves": {"_count": 1}, "the": {"_count": 1}}, "celebrating": {"_count": 1, "the": {"_count": 1}}, "packed": {"_count": 4, "Nevilles": {"_count": 1}, "with": {"_count": 2}, "to": {"_count": 1}}, "handed": {"_count": 1, "out": {"_count": 1}}, "boarding": {"_count": 2, "the": {"_count": 1}, "an": {"_count": 1}}, "unhappy": {"_count": 1, "to": {"_count": 1}}, "what": {"_count": 2, "wizards": {"_count": 1}, "looked": {"_count": 1}}, "concerned": {"_count": 3, "having": {"_count": 1}, "Hermione": {"_count": 1}, "and": {"_count": 1}}, "famous": {"_count": 2, "": {"_count": 1}, "enough": {"_count": 1}}, "coming": {"_count": 18, "to": {"_count": 3}, "from": {"_count": 3}, "through": {"_count": 2}, "down": {"_count": 1}, "": {"_count": 2}, "up": {"_count": 1}, "back": {"_count": 1}, "closer": {"_count": 1}, "toward": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}, "just": {"_count": 1}}, "slipping": {"_count": 3, "down": {"_count": 1}, "out": {"_count": 1}, "over": {"_count": 1}}, "screams": {"_count": 4, "from": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "amongst": {"_count": 1}}, "aching": {"_count": 2, "with": {"_count": 1}, "horribly": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "pulled": {"_count": 1, "clean": {"_count": 1}}, "safely": {"_count": 8, "in": {"_count": 3}, "stowed": {"_count": 1}, "back": {"_count": 1}, "inside": {"_count": 1}, "immersed": {"_count": 1}, "on": {"_count": 1}}, "held": {"_count": 3, "up": {"_count": 1}, "in": {"_count": 2}}, "perched": {"_count": 2, "on": {"_count": 2}}, "pecking": {"_count": 1, "their": {"_count": 1}}, "taller": {"_count": 1, "than": {"_count": 1}}, "things": {"_count": 1, "like": {"_count": 1}}, "deceiving": {"_count": 2, "him": {"_count": 2}}, "starving": {"_count": 1, "him": {"_count": 1}}, "clean": {"_count": 1, "which": {"_count": 1}}, "plenty": {"_count": 3, "of": {"_count": 3}}, "gnarled": {"_count": 1, "trees": {"_count": 1}}, "dusty": {"_count": 1, "and": {"_count": 1}}, "considered": {"_count": 1, "perfectly": {"_count": 1}}, "planning": {"_count": 12, "to": {"_count": 8}, "next": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "marching": {"_count": 2, "up": {"_count": 1}, "the": {"_count": 1}}, "slapping": {"_count": 1, "his": {"_count": 1}}, "churning": {"_count": 1, "inside": {"_count": 1}}, "Ron": {"_count": 5, "Fred": {"_count": 1}, "stammered": {"_count": 1}, "and": {"_count": 3}}, "bowed": {"_count": 1, "into": {"_count": 1}}, "led": {"_count": 1, "off": {"_count": 1}}, "reached": {"_count": 1, "by": {"_count": 1}}, "stocking": {"_count": 1, "up": {"_count": 1}}, "by": {"_count": 3, "no": {"_count": 2}, "the": {"_count": 1}}, "something": {"_count": 4, "unpleasant": {"_count": 1}, "filthy": {"_count": 1}, "recently": {"_count": 1}, "disgusting": {"_count": 1}}, "leaving": {"_count": 12, "": {"_count": 5}, "the": {"_count": 4}, "that": {"_count": 1}, "you": {"_count": 1}, "tomorrow": {"_count": 1}}, "running": {"_count": 9, "very": {"_count": 1}, "high": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 2}, "it": {"_count": 1}, "in": {"_count": 1}, "between": {"_count": 1}, "for": {"_count": 1}}, "blossoming": {"_count": 2, "in": {"_count": 1}, "out": {"_count": 1}}, "issuing": {"_count": 1, "from": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 2}, "tension": {"_count": 1}}, "falling": {"_count": 7, "gathering": {"_count": 1}, "sharply": {"_count": 1}, "back": {"_count": 2}, "from": {"_count": 1}, "through": {"_count": 1}, "thick": {"_count": 1}}, "pummeling": {"_count": 1, "every": {"_count": 1}}, "hovering": {"_count": 3, "in": {"_count": 1}, "over": {"_count": 1}, "lazily": {"_count": 1}}, "lined": {"_count": 3, "with": {"_count": 3}}, "seen": {"_count": 3, "he": {"_count": 1}, "Wed": {"_count": 1}, "crossing": {"_count": 1}}, "hardly": {"_count": 6, "any": {"_count": 2}, "out": {"_count": 2}, "difficult": {"_count": 1}, "ever": {"_count": 1}}, "cut": {"_count": 4, "short": {"_count": 1}, "off": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "swiveling": {"_count": 1, "around": {"_count": 1}}, "burning": {"_count": 3, "with": {"_count": 1}, "in": {"_count": 1}, "blue": {"_count": 1}}, "kept": {"_count": 2, "": {"_count": 1}, "well": {"_count": 1}}, "lying": {"_count": 6, "on": {"_count": 4}, "in": {"_count": 2}}, "growing": {"_count": 13, "there": {"_count": 1}, "right": {"_count": 1}, "at": {"_count": 1}, "numb": {"_count": 1}, "larger": {"_count": 2}, "fainter": {"_count": 2}, "out": {"_count": 1}, "louder": {"_count": 3}, "stronger": {"_count": 1}}, "visible": {"_count": 7, "": {"_count": 1}, "even": {"_count": 1}, "on": {"_count": 1}, "through": {"_count": 1}, "between": {"_count": 2}, "in": {"_count": 1}}, "joined": {"_count": 4, "at": {"_count": 1}, "ten": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}}, "always": {"_count": 6, "hard": {"_count": 1}, "slow": {"_count": 1}, "saying": {"_count": 1}, "accompanied": {"_count": 1}, "going": {"_count": 1}, "such": {"_count": 1}}, "sniggering": {"_count": 3, "stupidly": {"_count": 1}, "at": {"_count": 1}, "twisting": {"_count": 1}}, "electric": {"_count": 1, "blue": {"_count": 1}}, "making": {"_count": 11, "": {"_count": 1}, "their": {"_count": 3}, "a": {"_count": 2}, "two": {"_count": 1}, "here": {"_count": 1}, "very": {"_count": 1}, "the": {"_count": 1}, "came": {"_count": 1}}, "gleaming": {"_count": 3, "with": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "yawning": {"_count": 1, "side": {"_count": 1}}, "drawn": {"_count": 5, "many": {"_count": 1}, "to": {"_count": 1}, "down": {"_count": 1}, "upward": {"_count": 1}, "and": {"_count": 1}}, "awake": {"_count": 4, "": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "walking": {"_count": 17, "onto": {"_count": 1}, "across": {"_count": 2}, "upstairs": {"_count": 1}, "": {"_count": 1}, "along": {"_count": 2}, "back": {"_count": 3}, "slowly": {"_count": 1}, "down": {"_count": 1}, "quickly": {"_count": 1}, "toward": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}, "curved": {"_count": 1}}, "reduced": {"_count": 1, "to": {"_count": 1}}, "crossing": {"_count": 1, "the": {"_count": 1}}, "paralyzed": {"_count": 1, "with": {"_count": 1}}, "gathered": {"_count": 2, "around": {"_count": 2}}, "within": {"_count": 3, "twenty": {"_count": 1}, "sight": {"_count": 1}, "a": {"_count": 1}}, "alone": {"_count": 6, "": {"_count": 3}, "now": {"_count": 1}, "together": {"_count": 1}, "in": {"_count": 1}}, "countless": {"_count": 1, "framed": {"_count": 1}}, "twisting": {"_count": 2, "together": {"_count": 1}, "in": {"_count": 1}}, "popping": {"_count": 6, "a": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 2}, "inside": {"_count": 1}, "out": {"_count": 1}}, "rumors": {"_count": 3, "that": {"_count": 2}, "about": {"_count": 1}}, "long": {"_count": 4, "thin": {"_count": 1}, "pointed": {"_count": 1}, "fingered": {"_count": 1}, "before": {"_count": 1}}, "heaped": {"_count": 1, "on": {"_count": 1}}, "hurrying": {"_count": 5, "back": {"_count": 1}, "away": {"_count": 2}, "through": {"_count": 1}, "toward": {"_count": 1}}, "crashing": {"_count": 1, "into": {"_count": 1}}, "punctuated": {"_count": 2, "by": {"_count": 2}}, "hundreds": {"_count": 3, "of": {"_count": 2}, "and": {"_count": 1}}, "tired": {"_count": 1, "and": {"_count": 1}}, "deprived": {"_count": 1, "of": {"_count": 1}}, "much": {"_count": 5, "better": {"_count": 2}, "more": {"_count": 2}, "tempted": {"_count": 1}}, "unworthy": {"_count": 1, "to": {"_count": 1}}, "yesterday": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "shunted": {"_count": 2, "along": {"_count": 1}, "through": {"_count": 1}}, "scuttling": {"_count": 3, "apparently": {"_count": 1}, "over": {"_count": 1}, "around": {"_count": 1}}, "flaking": {"_count": 1, "and": {"_count": 1}}, "barricaded": {"_count": 1, "in": {"_count": 1}}, "guaranteed": {"_count": 1, "some": {"_count": 1}}, "ignoring": {"_count": 1, "her": {"_count": 1}}, "bright": {"_count": 2, "pink": {"_count": 1}, "green": {"_count": 1}}, "brighter": {"_count": 1, "than": {"_count": 1}}, "anxious": {"_count": 1, "to": {"_count": 1}}, "realized": {"_count": 1, "as": {"_count": 1}}, "peering": {"_count": 3, "at": {"_count": 2}, "through": {"_count": 1}}, "treated": {"_count": 1, "like": {"_count": 1}}, "footsteps": {"_count": 4, "coming": {"_count": 1}, "and": {"_count": 1}, "down": {"_count": 1}, "running": {"_count": 1}}, "around": {"_count": 5, "he": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "though": {"_count": 1}}, "taking": {"_count": 9, "turns": {"_count": 2}, "place": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 2}, "a": {"_count": 2}, "it": {"_count": 1}}, "carrying": {"_count": 10, "him": {"_count": 2}, "something": {"_count": 1}, "that": {"_count": 1}, "spears": {"_count": 2}, "tottering": {"_count": 1}, "large": {"_count": 1}, "some": {"_count": 2}}, "frightened": {"_count": 1, "of": {"_count": 1}}, "egging": {"_count": 1, "the": {"_count": 1}}, "indeed": {"_count": 6, "sitting": {"_count": 1}, "supporting": {"_count": 1}, "stirring": {"_count": 1}, "coming": {"_count": 1}, "alone": {"_count": 1}, "attempting": {"_count": 1}}, "close": {"_count": 5, "together": {"_count": 1}, "to": {"_count": 2}, "by": {"_count": 2}}, "covered": {"_count": 6, "with": {"_count": 2}, "up": {"_count": 1}, "in": {"_count": 3}}, "snoozing": {"_count": 3, "gently": {"_count": 1}, "in": {"_count": 2}}, "particularly": {"_count": 2, "difficult": {"_count": 1}, "afraid": {"_count": 1}}, "dull": {"_count": 1, "and": {"_count": 1}}, "woken": {"_count": 2, "very": {"_count": 1}, "on": {"_count": 1}}, "far": {"_count": 3, "more": {"_count": 1}, "too": {"_count": 1}, "from": {"_count": 1}}, "sending": {"_count": 2, "them": {"_count": 1}, "shafts": {"_count": 1}}, "interrogating": {"_count": 2, "him": {"_count": 1}, "us": {"_count": 1}}, "bulging": {"_count": 4, "like": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}, "bookcases": {"_count": 1}}, "agony": {"_count": 1, "in": {"_count": 1}}, "clouding": {"_count": 2, "his": {"_count": 2}}, "deserted": {"_count": 4, "": {"_count": 2}, "Bagman": {"_count": 1}, "and": {"_count": 1}}, "silhouetted": {"_count": 2, "around": {"_count": 1}, "against": {"_count": 1}}, "purebloods": {"_count": 1, "the": {"_count": 1}}, "any": {"_count": 4, "slower": {"_count": 1}, "lights": {"_count": 1}, "books": {"_count": 1}, "number": {"_count": 1}}, "greatly": {"_count": 1, "improved": {"_count": 1}}, "once": {"_count": 6, "again": {"_count": 4}, "emerald": {"_count": 1}, "three": {"_count": 1}}, "completely": {"_count": 8, "blank": {"_count": 1}, "stationary": {"_count": 1}, "fleshless": {"_count": 1}, "silent": {"_count": 1}, "distracted": {"_count": 1}, "covered": {"_count": 1}, "open": {"_count": 1}, "dry": {"_count": 1}}, "fast": {"_count": 2, "leaving": {"_count": 1}, "asleep": {"_count": 1}}, "cutting": {"_count": 3, "them": {"_count": 1}, "into": {"_count": 1}, "a": {"_count": 1}}, "lining": {"_count": 1, "up": {"_count": 1}}, "crying": {"_count": 3, "with": {"_count": 1}, "anxious": {"_count": 1}, "and": {"_count": 1}}, "drenched": {"_count": 2, "in": {"_count": 2}}, "hidden": {"_count": 5, "": {"_count": 2}, "seized": {"_count": 1}, "then": {"_count": 1}, "behind": {"_count": 1}}, "boos": {"_count": 1, "and": {"_count": 1}}, "grumbling": {"_count": 1, "about": {"_count": 1}}, "found": {"_count": 4, "near": {"_count": 1}, "with": {"_count": 2}, "": {"_count": 1}}, "these": {"_count": 2, "words": {"_count": 1}, "Azkaban": {"_count": 1}}, "hampered": {"_count": 1, "of": {"_count": 1}}, "listening": {"_count": 6, "curiously": {"_count": 1}, "": {"_count": 1}, "eagerly": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}}, "tree": {"_count": 1, "roots": {"_count": 1}}, "scratched": {"_count": 1, "and": {"_count": 1}}, "fixed": {"_count": 15, "on": {"_count": 5}, "directly": {"_count": 1}, "upon": {"_count": 7}, "unblinkingly": {"_count": 1}, "alike": {"_count": 1}}, "thrown": {"_count": 4, "onto": {"_count": 1}, "into": {"_count": 3}}, "soon": {"_count": 10, "crashing": {"_count": 1}, "coming": {"_count": 1}, "caught": {"_count": 1}, "arguing": {"_count": 1}, "stowing": {"_count": 1}, "immersed": {"_count": 1}, "striding": {"_count": 1}, "out": {"_count": 1}, "a": {"_count": 1}, "covered": {"_count": 1}}, "congratulating": {"_count": 1, "each": {"_count": 1}}, "we": {"_count": 2, "were": {"_count": 1}, "human": {"_count": 1}}, "killed": {"_count": 3, "": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}}, "flashing": {"_count": 1, "": {"_count": 1}}, "sorry": {"_count": 3, "you": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "flared": {"_count": 1, "thats": {"_count": 1}}, "jumbled": {"_count": 2, "untidily": {"_count": 1}, "together": {"_count": 1}}, "pressed": {"_count": 1, "over": {"_count": 1}}, "thundering": {"_count": 5, "to": {"_count": 1}, "down": {"_count": 1}, "along": {"_count": 1}, "up": {"_count": 2}}, "wasting": {"_count": 3, "time": {"_count": 2}, "our": {"_count": 1}}, "carved": {"_count": 1, "their": {"_count": 1}}, "real": {"_count": 3, "their": {"_count": 1}, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "destroyed": {"_count": 1, "": {"_count": 1}}, "strong": {"_count": 1, "you": {"_count": 1}}, "gripping": {"_count": 2, "a": {"_count": 2}}, "but": {"_count": 3, "he": {"_count": 1}, "seemed": {"_count": 1}, "now": {"_count": 1}}, "fantastic": {"_count": 1, "Fawkes": {"_count": 1}}, "trickling": {"_count": 1, "down": {"_count": 1}}, "flying": {"_count": 14, "upward": {"_count": 1}, "everywhere": {"_count": 2}, "from": {"_count": 2}, "out": {"_count": 1}, "along": {"_count": 1}, "thisll": {"_count": 1}, "that": {"_count": 1}, "directly": {"_count": 1}, "extremely": {"_count": 1}, "in": {"_count": 1}, "past": {"_count": 1}, "through": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "meddlesome": {"_count": 1, "fools": {"_count": 1}}, "knocked": {"_count": 3, "into": {"_count": 1}, "out": {"_count": 1}, "aside": {"_count": 1}}, "canceled": {"_count": 1, "but": {"_count": 1}}, "allowed": {"_count": 7, "to": {"_count": 4}, "in": {"_count": 2}, "a": {"_count": 1}}, "Harrys": {"_count": 3, "only": {"_count": 2}, "favorite": {"_count": 1}}, "Muggles": {"_count": 3, "and": {"_count": 1}, "who": {"_count": 1}, "because": {"_count": 1}}, "speaking": {"_count": 2, "from": {"_count": 1}, "in": {"_count": 1}}, "itching": {"_count": 1, "with": {"_count": 1}}, "fascinating": {"_count": 1, "": {"_count": 1}}, "bared": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}}, "reproachful": {"_count": 1, "its": {"_count": 1}}, "flooding": {"_count": 3, "it": {"_count": 1}, "onto": {"_count": 1}, "into": {"_count": 1}}, "dispatched": {"_count": 1, "to": {"_count": 1}}, "however": {"_count": 1, "things": {"_count": 1}}, "pulling": {"_count": 5, "it": {"_count": 1}, "off": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}}, "open": {"_count": 4, "and": {"_count": 1}, "to": {"_count": 1}, "too": {"_count": 1}, "Harry": {"_count": 1}}, "arriving": {"_count": 1, "in": {"_count": 1}}, "ogling": {"_count": 1, "the": {"_count": 1}}, "oozing": {"_count": 1, "slowly": {"_count": 1}}, "cats": {"_count": 1, "of": {"_count": 1}}, "humming": {"_count": 1, "loudly": {"_count": 1}}, "clamped": {"_count": 1, "tightly": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "climbing": {"_count": 7, "the": {"_count": 3}, "back": {"_count": 1}, "to": {"_count": 1}, "through": {"_count": 2}}, "crouching": {"_count": 2, "in": {"_count": 1}, "ahead": {"_count": 1}}, "stationed": {"_count": 1, "all": {"_count": 1}}, "interrupted": {"_count": 2, "by": {"_count": 2}}, "rather": {"_count": 4, "giggly": {"_count": 1}, "red": {"_count": 1}, "yellow": {"_count": 1}, "feeble": {"_count": 1}}, "panting": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "well": {"_count": 3, "made": {"_count": 1}, "out": {"_count": 1}, "shut": {"_count": 1}}, "chasing": {"_count": 2, "backward": {"_count": 1}, "me": {"_count": 1}}, "sticking": {"_count": 1, "curiously": {"_count": 1}}, "plunged": {"_count": 2, "into": {"_count": 2}}, "lanterns": {"_count": 1, "above": {"_count": 1}}, "kneeling": {"_count": 1, "next": {"_count": 1}}, "recovering": {"_count": 1, "from": {"_count": 1}}, "framed": {"_count": 1, "with": {"_count": 1}}, "taken": {"_count": 3, "ill": {"_count": 1}, "from": {"_count": 1}, "there": {"_count": 1}}, "sorted": {"_count": 1, "into": {"_count": 1}}, "eager": {"_count": 1, "for": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "crammed": {"_count": 6, "inside": {"_count": 1}, "with": {"_count": 3}, "in": {"_count": 1}, "": {"_count": 1}}, "draped": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "encrusted": {"_count": 1, "with": {"_count": 1}}, "reading": {"_count": 3, "the": {"_count": 1}, "just": {"_count": 1}, "a": {"_count": 1}}, "telling": {"_count": 4, "Harry": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 1}}, "chortling": {"_count": 1, "": {"_count": 1}}, "funny": {"_count": 1, "Hagrid": {"_count": 1}}, "plotting": {"_count": 2, "how": {"_count": 1}, "to": {"_count": 1}}, "tossing": {"_count": 1, "their": {"_count": 1}}, "narrowed": {"_count": 3, "maliciously": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "bowing": {"_count": 1, "nervously": {"_count": 1}}, "among": {"_count": 3, "the": {"_count": 1}, "those": {"_count": 2}}, "cooking": {"_count": 1, "up": {"_count": 1}}, "halfway": {"_count": 8, "through": {"_count": 3}, "toward": {"_count": 2}, "out": {"_count": 1}, "across": {"_count": 2}}, "preparing": {"_count": 2, "their": {"_count": 1}, "a": {"_count": 1}}, "shining": {"_count": 3, "malevolently": {"_count": 1}, "through": {"_count": 1}, "with": {"_count": 1}}, "exchanged": {"_count": 1, "as": {"_count": 1}}, "heading": {"_count": 9, "for": {"_count": 3}, "back": {"_count": 2}, "upstairs": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}, "north": {"_count": 1}}, "patched": {"_count": 1, "and": {"_count": 1}}, "equipped": {"_count": 1, "with": {"_count": 1}}, "working": {"_count": 6, "together": {"_count": 1}, "on": {"_count": 3}, "properly": {"_count": 1}, "nearby": {"_count": 1}}, "dreading": {"_count": 1, "Binky": {"_count": 1}}, "possibly": {"_count": 1, "the": {"_count": 1}}, "twinkling": {"_count": 2, "": {"_count": 1}, "behind": {"_count": 1}}, "giving": {"_count": 7, "out": {"_count": 1}, "off": {"_count": 2}, "you": {"_count": 1}, "her": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}}, "swimming": {"_count": 4, "lazily": {"_count": 1}, "with": {"_count": 2}, "": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}, "asking": {"_count": 3, "one": {"_count": 1}, "Voldemort": {"_count": 1}, "for": {"_count": 1}}, "drifting": {"_count": 7, "about": {"_count": 1}, "toward": {"_count": 1}, "across": {"_count": 1}, "away": {"_count": 1}, "around": {"_count": 1}, "in": {"_count": 1}, "past": {"_count": 1}}, "sleeping": {"_count": 1, "outdoors": {"_count": 1}}, "present": {"_count": 1, "": {"_count": 1}}, "approaching": {"_count": 4, "from": {"_count": 1}, "and": {"_count": 2}, "the": {"_count": 1}}, "rising": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "also": {"_count": 7, "there": {"_count": 1}, "drenched": {"_count": 1}, "in": {"_count": 1}, "spare": {"_count": 1}, "two": {"_count": 2}, "wet": {"_count": 1}}, "extremely": {"_count": 3, "bloodshot": {"_count": 1}, "irritated": {"_count": 1}, "busy": {"_count": 1}}, "horrible": {"_count": 2, "but": {"_count": 1}, "Harry": {"_count": 1}}, "dark": {"_count": 3, "shadows": {"_count": 2}, "": {"_count": 1}}, "really": {"_count": 12, "behind": {"_count": 1}, "up": {"_count": 1}, "sorry": {"_count": 2}, "good": {"_count": 2}, "waging": {"_count": 1}, "brave": {"_count": 2}, "struggling": {"_count": 1}, "in": {"_count": 1}, "wizards": {"_count": 1}}, "made": {"_count": 10, "of": {"_count": 7}, "by": {"_count": 1}, "for": {"_count": 1}, "their": {"_count": 1}}, "forbidden": {"_count": 1, "to": {"_count": 1}}, "revealed": {"_count": 2, "one": {"_count": 1}, "to": {"_count": 1}}, "wrapped": {"_count": 4, "in": {"_count": 2}, "tightly": {"_count": 1}, "around": {"_count": 1}}, "shelves": {"_count": 1, "upon": {"_count": 1}}, "Special": {"_count": 1, "Effects": {"_count": 1}}, "ludicrous": {"_count": 1, "": {"_count": 1}}, "peanuts": {"_count": 1, "": {"_count": 1}}, "holly": {"_count": 1, "wreaths": {"_count": 1}}, "freezing": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "entering": {"_count": 1, "the": {"_count": 1}}, "checking": {"_count": 1, "for": {"_count": 1}}, "dangling": {"_count": 1, "a": {"_count": 1}}, "brothers": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 4, "Fudge": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 2}}, "that": {"_count": 2, "Black": {"_count": 1}, "night": {"_count": 1}}, "hiding": {"_count": 2, "him": {"_count": 1}, "their": {"_count": 1}}, "innocent": {"_count": 1, "": {"_count": 1}}, "strung": {"_count": 2, "along": {"_count": 1}, "from": {"_count": 1}}, "Rons": {"_count": 2, "stifled": {"_count": 1}, "arm": {"_count": 1}}, "glad": {"_count": 4, "when": {"_count": 1}, "to": {"_count": 3}}, "dissolving": {"_count": 1, "": {"_count": 1}}, "alight": {"_count": 2, "again": {"_count": 1}, "with": {"_count": 1}}, "tears": {"_count": 3, "on": {"_count": 1}, "pouring": {"_count": 1}, "of": {"_count": 1}}, "friends": {"_count": 4, "at": {"_count": 2}, "once": {"_count": 1}, "": {"_count": 1}}, "several": {"_count": 15, "long": {"_count": 2}, "open": {"_count": 1}, "faces": {"_count": 1}, "posters": {"_count": 1}, "vases": {"_count": 1}, "feet": {"_count": 1}, "steps": {"_count": 1}, "frantic": {"_count": 1}, "large": {"_count": 1}, "distinct": {"_count": 1}, "plunks": {"_count": 1}, "shops": {"_count": 1}, "generations": {"_count": 1}, "screams": {"_count": 1}}, "stronger": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Malfoy": {"_count": 1, "Crabbe": {"_count": 1}}, "reappearing": {"_count": 1, "": {"_count": 1}}, "paying": {"_count": 1, "more": {"_count": 1}}, "jokes": {"_count": 1, "and": {"_count": 1}}, "boring": {"_count": 3, "into": {"_count": 2}, "once": {"_count": 1}}, "for": {"_count": 3, "lesser": {"_count": 1}, "at": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "writing": {"_count": 2, "upon": {"_count": 1}, "swearwords": {"_count": 1}}, "pacing": {"_count": 1, "and": {"_count": 1}}, "scared": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}}, "experimenting": {"_count": 1, "with": {"_count": 1}}, "abandoned": {"_count": 1, "in": {"_count": 1}}, "dealing": {"_count": 4, "with": {"_count": 4}}, "applauding": {"_count": 3, "them": {"_count": 1}, "and": {"_count": 1}, "him": {"_count": 1}}, "feeling": {"_count": 3, "like": {"_count": 1}, "": {"_count": 1}, "quite": {"_count": 1}}, "enormous": {"_count": 2, "": {"_count": 1}, "bloodshot": {"_count": 1}}, "rapidly": {"_count": 1, "resorting": {"_count": 1}}, "swooping": {"_count": 2, "around": {"_count": 1}, "toward": {"_count": 1}}, "sparkling": {"_count": 1, "maliciously": {"_count": 1}}, "raining": {"_count": 1, "down": {"_count": 1}}, "hoisted": {"_count": 1, "onto": {"_count": 1}}, "forced": {"_count": 11, "to": {"_count": 6}, "finally": {"_count": 1}, "backward": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}, "from": {"_count": 1}}, "representatives": {"_count": 1, "of": {"_count": 1}}, "stinging": {"_count": 1, "with": {"_count": 1}}, "unfocused": {"_count": 3, "and": {"_count": 3}}, "striding": {"_count": 2, "past": {"_count": 1}, "up": {"_count": 1}}, "darting": {"_count": 3, "all": {"_count": 1}, "from": {"_count": 1}, "around": {"_count": 1}}, "casting": {"_count": 3, "a": {"_count": 2}, "in": {"_count": 1}}, "broken": {"_count": 3, "Harry": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "creaking": {"_count": 2, "as": {"_count": 2}}, "stains": {"_count": 1, "all": {"_count": 1}}, "traveling": {"_count": 4, "around": {"_count": 1}, "": {"_count": 1}, "along": {"_count": 1}, "farther": {"_count": 1}}, "gritted": {"_count": 1, "with": {"_count": 1}}, "echoing": {"_count": 1, "up": {"_count": 1}}, "witnesses": {"_count": 1, "who": {"_count": 1}}, "built": {"_count": 1, "for": {"_count": 1}}, "were": {"_count": 3, "terrible": {"_count": 1}, "bad": {"_count": 1}, "involved": {"_count": 1}}, "terrible": {"_count": 1, "": {"_count": 1}}, "hearing": {"_count": 1, "particularly": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "near": {"_count": 1, "misses": {"_count": 1}}, "young": {"_count": 2, "thoughtless": {"_count": 1}, "": {"_count": 1}}, "here": {"_count": 13, "": {"_count": 5}, "in": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}, "Hagrid": {"_count": 1}, "to": {"_count": 1}, "already": {"_count": 1}, "disguised": {"_count": 1}, "last": {"_count": 1}}, "harmless": {"_count": 1, "you": {"_count": 1}}, "suddenly": {"_count": 12, "overbright": {"_count": 1}, "dim": {"_count": 1}, "extinguished": {"_count": 1}, "dazzled": {"_count": 1}, "illuminated": {"_count": 1}, "looking": {"_count": 2}, "gleaming": {"_count": 1}, "devoid": {"_count": 1}, "dancing": {"_count": 1}, "engulfed": {"_count": 1}, "falling": {"_count": 1}}, "sprouting": {"_count": 1, "a": {"_count": 1}}, "squeaking": {"_count": 1, "around": {"_count": 1}}, "after": {"_count": 4, "me": {"_count": 1}, "potion": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}}, "annoyed": {"_count": 1, "with": {"_count": 1}}, "less": {"_count": 3, "less": {"_count": 1}, "amused": {"_count": 1}, "trustworthy": {"_count": 1}}, "confused": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "tied": {"_count": 1, "to": {"_count": 1}}, "hunching": {"_count": 1, "": {"_count": 1}}, "curling": {"_count": 1, "into": {"_count": 1}}, "locked": {"_count": 2, "jaw": {"_count": 1}, "in": {"_count": 1}}, "gashes": {"_count": 1, "across": {"_count": 1}}, "appearing": {"_count": 2, "out": {"_count": 1}, "one": {"_count": 1}}, "encircling": {"_count": 1, "them": {"_count": 1}}, "closing": {"_count": 11, "in": {"_count": 9}, "on": {"_count": 1}, "": {"_count": 1}}, "forcing": {"_count": 4, "his": {"_count": 1}, "their": {"_count": 2}, "themselves": {"_count": 1}}, "pounding": {"_count": 1, "he": {"_count": 1}}, "under": {"_count": 5, "the": {"_count": 3}, "seventeen": {"_count": 1}, "it": {"_count": 1}}, "screwing": {"_count": 1, "up": {"_count": 1}}, "obscuring": {"_count": 1, "the": {"_count": 1}}, "emerging": {"_count": 7, "out": {"_count": 3}, "from": {"_count": 2}, "on": {"_count": 2}}, "missing": {"_count": 7, "": {"_count": 5}, "from": {"_count": 2}}, "gliding": {"_count": 5, "quietly": {"_count": 1}, "slowly": {"_count": 1}, "back": {"_count": 1}, "up": {"_count": 1}, "toward": {"_count": 1}}, "soaring": {"_count": 6, "upward": {"_count": 2}, "around": {"_count": 1}, "up": {"_count": 1}, "weightlessly": {"_count": 1}, "back": {"_count": 1}}, "drawing": {"_count": 4, "nearer": {"_count": 2}, "to": {"_count": 1}, "ever": {"_count": 1}}, "helping": {"_count": 2, "Sirius": {"_count": 1}, "him": {"_count": 1}}, "scarce": {"_count": 1, "": {"_count": 1}}, "summoned": {"_count": 1, "and": {"_count": 1}}, "rewarded": {"_count": 1, "for": {"_count": 1}}, "buried": {"_count": 1, "in": {"_count": 1}}, "At": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 6, "extraordinary": {"_count": 1}, "fer": {"_count": 1}, "alarm": {"_count": 1}, "unreliable": {"_count": 1}, "inexpressible": {"_count": 1}, "inch": {"_count": 1}}, "zooming": {"_count": 3, "in": {"_count": 2}, "delightedly": {"_count": 1}}, "unavoidable": {"_count": 1, "if": {"_count": 1}}, "plainly": {"_count": 1, "still": {"_count": 1}}, "ever": {"_count": 1, "any": {"_count": 1}}, "intercepted": {"_count": 1, "he": {"_count": 1}}, "dentists": {"_count": 1, "": {"_count": 1}}, "connected": {"_count": 2, "however": {"_count": 1}, "to": {"_count": 1}}, "transparent": {"_count": 1, "": {"_count": 1}}, "folded": {"_count": 3, "her": {"_count": 1}, "he": {"_count": 1}, "upon": {"_count": 1}}, "pursed": {"_count": 1, "and": {"_count": 1}}, "identical": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "hoping": {"_count": 3, "for": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}}, "muscular": {"_count": 1, "and": {"_count": 1}}, "presently": {"_count": 1, "narrowed": {"_count": 1}}, "actually": {"_count": 4, "making": {"_count": 1}, "mounds": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 1}}, "Ordinary": {"_count": 1, "Wizarding": {"_count": 1}}, "whirling": {"_count": 1, "and": {"_count": 1}}, "groaning": {"_count": 2, "under": {"_count": 2}}, "settling": {"_count": 1, "themselves": {"_count": 1}}, "fluttering": {"_count": 2, "low": {"_count": 1}, "each": {"_count": 1}}, "unmistakably": {"_count": 1, "more": {"_count": 1}}, "headed": {"_count": 1, "": {"_count": 1}}, "dressed": {"_count": 2, "as": {"_count": 1}, "for": {"_count": 1}}, "crocheted": {"_count": 1, "covers": {"_count": 1}}, "riding": {"_count": 1, "toy": {"_count": 1}}, "striking": {"_count": 1, "matches": {"_count": 1}}, "hailed": {"_count": 1, "by": {"_count": 1}}, "stretched": {"_count": 1, "tightly": {"_count": 1}}, "banned": {"_count": 1, "of": {"_count": 1}}, "Apparating": {"_count": 2, "every": {"_count": 1}, "": {"_count": 1}}, "luminous": {"_count": 1, "rosettes": {"_count": 1}}, "squealing": {"_count": 1, "the": {"_count": 1}}, "waved": {"_count": 1, "there": {"_count": 1}}, "tiny": {"_count": 3, "models": {"_count": 1}, "and": {"_count": 1}, "words": {"_count": 1}}, "carpeted": {"_count": 1, "in": {"_count": 1}}, "scrawling": {"_count": 1, "upon": {"_count": 1}}, "oddly": {"_count": 2, "familiar": {"_count": 1}, "ruffled": {"_count": 1}}, "someone": {"_count": 1, "I": {"_count": 1}}, "none": {"_count": 2, "other": {"_count": 1}, "the": {"_count": 1}}, "women": {"_count": 1, "": {"_count": 1}}, "filling": {"_count": 2, "the": {"_count": 1}, "up": {"_count": 1}}, "throwing": {"_count": 2, "the": {"_count": 1}, "food": {"_count": 1}}, "superb": {"_count": 1, "": {"_count": 1}}, "whacking": {"_count": 1, "the": {"_count": 1}}, "acting": {"_count": 3, "without": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}}, "elongating": {"_count": 1, "into": {"_count": 1}}, "bursting": {"_count": 1, "from": {"_count": 1}}, "barely": {"_count": 8, "heard": {"_count": 1}, "twenty": {"_count": 1}, "distinguishable": {"_count": 1}, "concealing": {"_count": 1}, "touching": {"_count": 1}, "feet": {"_count": 1}, "three": {"_count": 1}, "over": {"_count": 1}}, "flecks": {"_count": 1, "of": {"_count": 1}}, "revving": {"_count": 1, "up": {"_count": 1}}, "expecting": {"_count": 1, "that": {"_count": 1}}, "dancing": {"_count": 5, "gleefully": {"_count": 1}, "nearby": {"_count": 2}, "so": {"_count": 1}, "flecks": {"_count": 1}}, "waving": {"_count": 2, "all": {"_count": 1}, "at": {"_count": 1}}, "shrinking": {"_count": 2, "back": {"_count": 1}, "their": {"_count": 1}}, "blooming": {"_count": 1, "spectacularly": {"_count": 1}}, "numb": {"_count": 3, "with": {"_count": 2}, "": {"_count": 1}}, "hooded": {"_count": 2, "and": {"_count": 2}}, "puppeteers": {"_count": 1, "and": {"_count": 1}}, "marionettes": {"_count": 1, "operated": {"_count": 1}}, "joining": {"_count": 2, "the": {"_count": 2}}, "blundering": {"_count": 1, "through": {"_count": 1}}, "reverberating": {"_count": 1, "around": {"_count": 1}}, "nowhere": {"_count": 1, "to": {"_count": 1}}, "cackling": {"_count": 1, "over": {"_count": 1}}, "discovered": {"_count": 1, "moments": {"_count": 1}}, "levitating": {"_count": 1, "people": {"_count": 1}}, "treating": {"_count": 1, "her": {"_count": 1}}, "Voldemorts": {"_count": 1, "supporters": {"_count": 1}}, "You": {"_count": 2, "Know": {"_count": 1}, "KnowWho": {"_count": 1}}, "done": {"_count": 2, "for": {"_count": 1}, "at": {"_count": 1}}, "Death": {"_count": 4, "Eaters": {"_count": 4}}, "sadly": {"_count": 1, "disappointed": {"_count": 1}}, "removed": {"_count": 2, "from": {"_count": 2}}, "currently": {"_count": 3, "pointing": {"_count": 1}, "in": {"_count": 1}, "sitting": {"_count": 1}}, "bottle": {"_count": 1, "green": {"_count": 1}}, "accompanied": {"_count": 2, "by": {"_count": 2}}, "together": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "swirling": {"_count": 2, "across": {"_count": 1}, "more": {"_count": 1}}, "wet": {"_count": 1, "it": {"_count": 1}}, "shivering": {"_count": 4, "with": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "Prized": {"_count": 1, "far": {"_count": 1}}, "Most": {"_count": 1, "worthy": {"_count": 1}}, "replaced": {"_count": 1, "instantly": {"_count": 1}}, "mouthing": {"_count": 1, "soundlessly": {"_count": 1}}, "many": {"_count": 8, "of": {"_count": 1}, "things": {"_count": 1}, "shadowy": {"_count": 1}, "cuts": {"_count": 1}, "crossingsout": {"_count": 1}, "cobwebbed": {"_count": 1}, "pictures": {"_count": 1}, "cries": {"_count": 1}}, "discussing": {"_count": 7, "magical": {"_count": 1}, "the": {"_count": 2}, "those": {"_count": 1}, "said": {"_count": 1}, "isnt": {"_count": 1}, "his": {"_count": 1}}, "hungry": {"_count": 1, "said": {"_count": 1}}, "addressed": {"_count": 1, "": {"_count": 1}}, "chuckling": {"_count": 1, "appreciatively": {"_count": 1}}, "born": {"_count": 3, "in": {"_count": 1}, "may": {"_count": 1}, "": {"_count": 1}}, "distinguishable": {"_count": 1, "": {"_count": 1}}, "seeing": {"_count": 4, "the": {"_count": 1}, "right": {"_count": 1}, "into": {"_count": 1}, "each": {"_count": 1}}, "accusing": {"_count": 1, "him": {"_count": 1}}, "nestled": {"_count": 1, "here": {"_count": 1}}, "required": {"_count": 2, "to": {"_count": 2}}, "deeply": {"_count": 1, "amused": {"_count": 1}}, "injured": {"_count": 1, "during": {"_count": 1}}, "reluctant": {"_count": 1, "to": {"_count": 1}}, "ordering": {"_count": 3, "their": {"_count": 1}, "Dungbombs": {"_count": 1}, "him": {"_count": 1}}, "staring": {"_count": 16, "up": {"_count": 1}, "curiously": {"_count": 1}, "at": {"_count": 10}, "over": {"_count": 1}, "transfixed": {"_count": 1}, "out": {"_count": 1}, "apparently": {"_count": 1}}, "gazing": {"_count": 1, "hopefully": {"_count": 1}}, "forming": {"_count": 3, "on": {"_count": 1}, "before": {"_count": 1}, "in": {"_count": 1}}, "disembarking": {"_count": 1, "they": {"_count": 1}}, "frantically": {"_count": 1, "searching": {"_count": 1}}, "picking": {"_count": 3, "up": {"_count": 1}, "us": {"_count": 1}, "their": {"_count": 1}}, "definitely": {"_count": 5, "foreign": {"_count": 1}, "somewhere": {"_count": 1}, "in": {"_count": 1}, "going": {"_count": 1}, "his": {"_count": 1}}, "level": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "hurled": {"_count": 1, "out": {"_count": 1}}, "likely": {"_count": 3, "to": {"_count": 3}}, "beardless": {"_count": 1, "yet": {"_count": 1}}, "straggling": {"_count": 1, "along": {"_count": 1}}, "extinguished": {"_count": 6, "plunging": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "at": {"_count": 1}, "Pain": {"_count": 1}}, "sobbing": {"_count": 1, "with": {"_count": 1}}, "grouped": {"_count": 4, "around": {"_count": 1}, "all": {"_count": 1}, "halfway": {"_count": 1}, "on": {"_count": 1}}, "colder": {"_count": 1, "than": {"_count": 1}}, "screaming": {"_count": 3, "applauding": {"_count": 1}, "in": {"_count": 1}, "sobbing": {"_count": 1}}, "repotting": {"_count": 1, "Bouncing": {"_count": 1}}, "S": {"_count": 1, "": {"_count": 1}}, "springing": {"_count": 1, "up": {"_count": 1}}, "doubled": {"_count": 1, "up": {"_count": 1}}, "calling": {"_count": 1, "him": {"_count": 1}}, "ringing": {"_count": 1, "": {"_count": 1}}, "skating": {"_count": 1, "": {"_count": 1}}, "tempted": {"_count": 1, "to": {"_count": 1}}, "competing": {"_count": 1, "in": {"_count": 1}}, "hastily": {"_count": 1, "snapping": {"_count": 1}}, "upon": {"_count": 4, "Harry": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}}, "free": {"_count": 3, "to": {"_count": 2}, "of": {"_count": 1}}, "way": {"_count": 1, "beyond": {"_count": 1}}, "permitted": {"_count": 1, "to": {"_count": 1}}, "swapping": {"_count": 1, "Chocolate": {"_count": 1}}, "meeting": {"_count": 3, "at": {"_count": 1}, "Ron": {"_count": 1}, "partners": {"_count": 1}}, "shouting": {"_count": 5, "up": {"_count": 1}, "they": {"_count": 1}, "behind": {"_count": 1}, "instructions": {"_count": 1}, "and": {"_count": 1}}, "rearing": {"_count": 1, "onto": {"_count": 1}}, "shooting": {"_count": 3, "into": {"_count": 1}, "covetous": {"_count": 1}, "upward": {"_count": 1}}, "attempting": {"_count": 5, "to": {"_count": 5}}, "bringing": {"_count": 2, "her": {"_count": 1}, "highly": {"_count": 1}}, "glinting": {"_count": 1, "in": {"_count": 1}}, "wishing": {"_count": 1, "him": {"_count": 1}}, "brilliant": {"_count": 1, "": {"_count": 1}}, "fingernail": {"_count": 1, "marks": {"_count": 1}}, "amazing": {"_count": 2, "": {"_count": 1}, "coming": {"_count": 1}}, "probably": {"_count": 2, "running": {"_count": 1}, "feet": {"_count": 1}}, "mountains": {"_count": 1, "of": {"_count": 1}}, "badly": {"_count": 1, "singed": {"_count": 1}}, "lurking": {"_count": 1, "in": {"_count": 1}}, "mainly": {"_count": 1, "of": {"_count": 1}}, "clear": {"_count": 2, "of": {"_count": 2}}, "then": {"_count": 2, "sent": {"_count": 1}, "": {"_count": 1}}, "soup": {"_count": 1, "stains": {"_count": 1}}, "frightening": {"_count": 1, "but": {"_count": 1}}, "bad": {"_count": 2, "Dark": {"_count": 1}, "omens": {"_count": 1}}, "merely": {"_count": 4, "sheltering": {"_count": 1}, "making": {"_count": 1}, "knocked": {"_count": 1}, "whispering": {"_count": 1}}, "bedecked": {"_count": 1, "with": {"_count": 1}}, "people": {"_count": 5, "all": {"_count": 1}, "standing": {"_count": 1}, "listening": {"_count": 1}, "who": {"_count": 1}, "that": {"_count": 1}}, "glazed": {"_count": 1, "with": {"_count": 1}}, "outdoing": {"_count": 1, "themselves": {"_count": 1}}, "before": {"_count": 2, "he": {"_count": 2}}, "she": {"_count": 1, "said": {"_count": 1}}, "extraknobbly": {"_count": 1, "was": {"_count": 1}}, "remembering": {"_count": 1, "the": {"_count": 1}}, "edging": {"_count": 2, "through": {"_count": 1}, "nearer": {"_count": 1}}, "set": {"_count": 2, "upon": {"_count": 1}, "at": {"_count": 1}}, "backing": {"_count": 2, "away": {"_count": 2}}, "revelations": {"_count": 1, "to": {"_count": 1}}, "dying": {"_count": 3, "out": {"_count": 1}, "away": {"_count": 1}, "and": {"_count": 1}}, "expressing": {"_count": 1, "the": {"_count": 1}}, "bellowing": {"_count": 1, "at": {"_count": 1}}, "painted": {"_count": 1, "shocking": {"_count": 1}}, "dilating": {"_count": 1, "trying": {"_count": 1}}, "five": {"_count": 3, "days": {"_count": 1}, "years": {"_count": 1}, "words": {"_count": 1}}, "pure": {"_count": 1, "gold": {"_count": 1}}, "fire": {"_count": 1, "not": {"_count": 1}}, "catcalls": {"_count": 1, "and": {"_count": 1}}, "webbed": {"_count": 1, "too": {"_count": 1}}, "yellow": {"_count": 1, "as": {"_count": 1}}, "their": {"_count": 1, "broken": {"_count": 1}}, "gardens": {"_count": 1, "of": {"_count": 1}}, "lolling": {"_count": 1, "onto": {"_count": 1}}, "thick": {"_count": 3, "slimy": {"_count": 1}, "with": {"_count": 2}}, "rocks": {"_count": 1, "littering": {"_count": 1}}, "Fleur": {"_count": 1, "and": {"_count": 1}}, "positioned": {"_count": 3, "very": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}}, "of": {"_count": 6, "him": {"_count": 1}, "that": {"_count": 1}, "course": {"_count": 2}, "panelled": {"_count": 1}, "a": {"_count": 1}}, "seizing": {"_count": 2, "up": {"_count": 1}, "him": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "wrong": {"_count": 3, "": {"_count": 2}, "werent": {"_count": 1}}, "above": {"_count": 1, "water": {"_count": 1}}, "torn": {"_count": 3, "but": {"_count": 1}, "and": {"_count": 2}}, "delays": {"_count": 1, "in": {"_count": 1}}, "okay": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "fewer": {"_count": 2, "here": {"_count": 1}, "than": {"_count": 1}}, "my": {"_count": 1, "Omnioculars": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "ragged": {"_count": 1, "and": {"_count": 1}}, "mad": {"_count": 2, "and": {"_count": 2}}, "jostling": {"_count": 1, "close": {"_count": 1}}, "curiously": {"_count": 1, "flat": {"_count": 1}}, "blinking": {"_count": 1, "up": {"_count": 1}}, "water": {"_count": 1, "each": {"_count": 1}}, "nursing": {"_count": 1, "small": {"_count": 1}}, "ripped": {"_count": 6, "and": {"_count": 2}, "from": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "apart": {"_count": 1}}, "rolling": {"_count": 9, "in": {"_count": 2}, "and": {"_count": 1}, "on": {"_count": 1}, "madly": {"_count": 1}, "the": {"_count": 1}, "around": {"_count": 2}, "through": {"_count": 1}}, "yeh": {"_count": 1, "doin": {"_count": 1}}, "puffyeyed": {"_count": 1, "and": {"_count": 1}}, "halfempty": {"_count": 1, "every": {"_count": 1}}, "heavier": {"_count": 1, "than": {"_count": 1}}, "boarded": {"_count": 3, "up": {"_count": 3}}, "stirring": {"_count": 1, "": {"_count": 1}}, "watering": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 4, "your": {"_count": 1}, "seating": {"_count": 1}, "the": {"_count": 1}, "long": {"_count": 1}}, "undoubtedly": {"_count": 1, "stimulated": {"_count": 1}}, "seated": {"_count": 1, "around": {"_count": 1}}, "concealed": {"_count": 1, "were": {"_count": 1}}, "surveying": {"_count": 1, "Karkaroff": {"_count": 1}}, "Which": {"_count": 1, "was": {"_count": 1}}, "important": {"_count": 1, "supporters": {"_count": 1}}, "caught": {"_count": 4, "passing": {"_count": 1}, "trespassing": {"_count": 1}, "": {"_count": 2}}, "titters": {"_count": 1, "from": {"_count": 1}}, "faithful": {"_count": 2, "": {"_count": 2}}, "marked": {"_count": 2, "with": {"_count": 1}, "by": {"_count": 1}}, "tortured": {"_count": 2, "for": {"_count": 1}, "into": {"_count": 1}}, "safe": {"_count": 3, "": {"_count": 3}}, "putting": {"_count": 2, "most": {"_count": 1}, "in": {"_count": 1}}, "smirking": {"_count": 4, "": {"_count": 2}, "this": {"_count": 1}, "skeptically": {"_count": 1}}, "incredible": {"_count": 2, "against": {"_count": 1}, "": {"_count": 1}}, "mentioned": {"_count": 1, "": {"_count": 1}}, "underwater": {"_count": 1, "again": {"_count": 1}}, "luring": {"_count": 1, "him": {"_count": 1}}, "glued": {"_count": 1, "to": {"_count": 1}}, "opponents": {"_count": 1, "came": {"_count": 1}}, "square": {"_count": 1, "": {"_count": 1}}, "crackling": {"_count": 1, "flames": {"_count": 1}}, "thin": {"_count": 1, "and": {"_count": 1}}, "slits": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "plentiful": {"_count": 1, "for": {"_count": 1}}, "ill": {"_count": 1, "adapted": {"_count": 1}}, "powerful": {"_count": 2, "and": {"_count": 1}, "enchantments": {"_count": 1}}, "untied": {"_count": 1, "": {"_count": 1}}, "filled": {"_count": 1, "": {"_count": 1}}, "bending": {"_count": 2, "him": {"_count": 1}, "over": {"_count": 1}}, "piercing": {"_count": 1, "every": {"_count": 1}}, "surging": {"_count": 2, "through": {"_count": 1}, "into": {"_count": 1}}, "enclosed": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "sliding": {"_count": 3, "up": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 1}}, "squeezing": {"_count": 1, "itself": {"_count": 1}}, "voices": {"_count": 3, "everywhere": {"_count": 1}, "coming": {"_count": 1}, "echoing": {"_count": 1}}, "repeated": {"_count": 1, "the": {"_count": 1}}, "sharpening": {"_count": 1, "had": {"_count": 1}}, "disappearing": {"_count": 1, "the": {"_count": 1}}, "hurried": {"_count": 4, "footsteps": {"_count": 3}, "away": {"_count": 1}}, "times": {"_count": 3, "when": {"_count": 2}, "Dumbledore": {"_count": 1}}, "brief": {"_count": 1, "periods": {"_count": 1}}, "blazing": {"_count": 2, "though": {"_count": 1}, "now": {"_count": 1}}, "easy": {"_count": 1, "": {"_count": 1}}, "periods": {"_count": 1, "when": {"_count": 1}}, "angry": {"_count": 1, "blotches": {"_count": 1}}, "balled": {"_count": 1, "into": {"_count": 1}}, "mere": {"_count": 2, "byproducts": {"_count": 1}, "feet": {"_count": 1}}, "acquitted": {"_count": 1, "of": {"_count": 1}}, "advancing": {"_count": 2, "upon": {"_count": 1}, "gliding": {"_count": 1}}, "eyeing": {"_count": 1, "each": {"_count": 1}}, "skirting": {"_count": 1, "him": {"_count": 1}}, "formulating": {"_count": 1, "their": {"_count": 1}}, "ended": {"_count": 1, "by": {"_count": 1}}, "blackmailing": {"_count": 1, "": {"_count": 1}}, "peeling": {"_count": 1, "away": {"_count": 1}}, "astonishingly": {"_count": 1, "stupid": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "unsheathing": {"_count": 1, "a": {"_count": 1}}, "wheeling": {"_count": 2, "along": {"_count": 1}, "to": {"_count": 1}}, "terrified": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "muffled": {"_count": 3, "between": {"_count": 1}, "inside": {"_count": 1}, "and": {"_count": 1}}, "surrounded": {"_count": 4, "by": {"_count": 2}, "": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 1, "almost": {"_count": 1}}, "intelligent": {"_count": 1, "": {"_count": 1}}, "sucked": {"_count": 1, "out": {"_count": 1}}, "saving": {"_count": 1, "their": {"_count": 1}}, "dementoids": {"_count": 1, "doing": {"_count": 1}}, "crushed": {"_count": 1, "in": {"_count": 1}}, "throbbing": {"_count": 1, "painfully": {"_count": 1}}, "crowded": {"_count": 1, "around": {"_count": 1}}, "introduced": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "strewn": {"_count": 1, "over": {"_count": 1}}, "struggling": {"_count": 2, "to": {"_count": 1}, "through": {"_count": 1}}, "examining": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "car": {"_count": 1, "headlights": {"_count": 1}}, "screwed": {"_count": 1, "up": {"_count": 1}}, "shaped": {"_count": 1, "like": {"_count": 1}}, "useless": {"_count": 1, "but": {"_count": 1}}, "safest": {"_count": 1, "with": {"_count": 1}}, "collapsing": {"_count": 1, "all": {"_count": 1}}, "chopping": {"_count": 1, "meat": {"_count": 1}}, "added": {"_count": 1, "to": {"_count": 1}}, "crossed": {"_count": 1, "and": {"_count": 1}}, "clattering": {"_count": 1, "around": {"_count": 1}}, "cantering": {"_count": 1, "softly": {"_count": 1}}, "buzzing": {"_count": 2, "as": {"_count": 1}, "with": {"_count": 1}}, "your": {"_count": 3, "parents": {"_count": 1}, "own": {"_count": 1}, "mother": {"_count": 1}}, "disowned": {"_count": 1, "": {"_count": 1}}, "depositing": {"_count": 1, "the": {"_count": 1}}, "congregated": {"_count": 1, "his": {"_count": 1}}, "possible": {"_count": 1, "even": {"_count": 1}}, "fully": {"_count": 3, "dressed": {"_count": 1}, "open": {"_count": 1}, "raised": {"_count": 1}}, "squirming": {"_count": 2, "": {"_count": 2}}, "sinking": {"_count": 1, "slowly": {"_count": 1}}, "continually": {"_count": 2, "moving": {"_count": 1}, "approaching": {"_count": 1}}, "paneled": {"_count": 1, "in": {"_count": 1}}, "angling": {"_count": 1, "for": {"_count": 1}}, "glowing": {"_count": 2, "like": {"_count": 1}, "jewel": {"_count": 1}}, "tottering": {"_count": 1, "piles": {"_count": 1}}, "twiddling": {"_count": 1, "their": {"_count": 1}}, "bare": {"_count": 1, "there": {"_count": 1}}, "heavy": {"_count": 2, "wooden": {"_count": 1}, "footfalls": {"_count": 1}}, "muttering": {"_count": 6, "": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 2}, "mutinously": {"_count": 1}, "together": {"_count": 1}}, "The": {"_count": 2, "witch": {"_count": 1}, "air": {"_count": 1}}, "frowning": {"_count": 1, "and": {"_count": 1}}, "big": {"_count": 1, "": {"_count": 1}}, "ordered": {"_count": 1, "there": {"_count": 1}}, "large": {"_count": 2, "round": {"_count": 1}, "silk": {"_count": 1}}, "suggesting": {"_count": 1, "that": {"_count": 1}}, "dementors": {"_count": 2, "which": {"_count": 1}, "all": {"_count": 1}}, "hands": {"_count": 1, "in": {"_count": 1}}, "filing": {"_count": 2, "out": {"_count": 1}, "past": {"_count": 1}}, "tried": {"_count": 1, "by": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "most": {"_count": 4, "unlikely": {"_count": 1}, "suggestive": {"_count": 1}, "favorably": {"_count": 1}, "unhappy": {"_count": 1}}, "expensive": {"_count": 1, "": {"_count": 1}}, "huddled": {"_count": 2, "in": {"_count": 1}, "together": {"_count": 1}}, "financing": {"_count": 1, "their": {"_count": 1}}, "upstairs": {"_count": 1, "in": {"_count": 1}}, "partially": {"_count": 1, "obscured": {"_count": 1}}, "beaming": {"_count": 1, "up": {"_count": 1}}, "doomed": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "outnumbered": {"_count": 2, "twenty": {"_count": 1}, "two": {"_count": 1}}, "listed": {"_count": 1, "the": {"_count": 1}}, "winning": {"_count": 1, "the": {"_count": 1}}, "blocking": {"_count": 1, "the": {"_count": 1}}, "creatures": {"_count": 1, "standing": {"_count": 1}}, "dragonish": {"_count": 1, "and": {"_count": 1}}, "dotted": {"_count": 1, "about": {"_count": 1}}, "meant": {"_count": 1, "to": {"_count": 1}}, "exchanging": {"_count": 2, "remarks": {"_count": 1}, "startled": {"_count": 1}}, "warming": {"_count": 1, "their": {"_count": 1}}, "pinning": {"_count": 1, "something": {"_count": 1}}, "prefects": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "bickering": {"_count": 1, "too": {"_count": 1}}, "choosing": {"_count": 1, "to": {"_count": 1}}, "chewing": {"_count": 3, "something": {"_count": 1}, "then": {"_count": 1}, "the": {"_count": 1}}, "slumping": {"_count": 1, "unconscious": {"_count": 1}}, "practicing": {"_count": 4, "though": {"_count": 1}, "a": {"_count": 1}, "Stunning": {"_count": 1}, "basic": {"_count": 1}}, "squatting": {"_count": 1, "on": {"_count": 1}}, "training": {"_count": 1, "during": {"_count": 1}}, "woolly": {"_count": 1, "hats": {"_count": 1}}, "purple": {"_count": 2, "patches": {"_count": 1}, "shadows": {"_count": 1}}, "aquiver": {"_count": 1, "and": {"_count": 1}}, "true": {"_count": 4, "": {"_count": 4}}, "irresponsible": {"_count": 1, "then": {"_count": 1}}, "howling": {"_count": 1, "with": {"_count": 1}}, "stamping": {"_count": 1, "their": {"_count": 1}}, "disturbed": {"_count": 1, "your": {"_count": 1}}, "facetoface": {"_count": 1, "then": {"_count": 1}}, "scrabbling": {"_count": 1, "around": {"_count": 1}}, "finally": {"_count": 1, "over": {"_count": 1}}, "unsurprised": {"_count": 1, "to": {"_count": 1}}, "closely": {"_count": 1, "followed": {"_count": 1}}, "youre": {"_count": 1, "right": {"_count": 1}}, "pulsing": {"_count": 1, "with": {"_count": 1}}, "bent": {"_count": 1, "the": {"_count": 1}}, "students": {"_count": 1, "coming": {"_count": 1}}, "recalled": {"_count": 1, "to": {"_count": 1}}, "wrestling": {"_count": 1, "with": {"_count": 1}}, "unsuccessful": {"_count": 1, "": {"_count": 1}}, "soaked": {"_count": 2, "through": {"_count": 2}}, "sweeping": {"_count": 2, "the": {"_count": 2}}, "bandylegged": {"_count": 1, "and": {"_count": 1}}, "inches": {"_count": 1, "from": {"_count": 1}}, "enthusiastic": {"_count": 1, "but": {"_count": 1}}, "resisting": {"_count": 2, "her": {"_count": 1}, "Voldemort": {"_count": 1}}, "often": {"_count": 3, "rearranged": {"_count": 1}, "joined": {"_count": 1}, "hushed": {"_count": 1}}, "using": {"_count": 2, "the": {"_count": 2}}, "put": {"_count": 1, "on": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "seriously": {"_count": 1, "considering": {"_count": 1}}, "singing": {"_count": 3, "though": {"_count": 1}, "Weasley": {"_count": 1}, "Odo": {"_count": 1}}, "released": {"_count": 1, "and": {"_count": 1}}, "roaring": {"_count": 1, "THATS": {"_count": 1}}, "saved": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "sprinting": {"_count": 2, "at": {"_count": 1}, "in": {"_count": 1}}, "disconsolate": {"_count": 1, "and": {"_count": 1}}, "slumped": {"_count": 1, "around": {"_count": 1}}, "good": {"_count": 1, "signs": {"_count": 1}}, "hopeful": {"_count": 1, "when": {"_count": 1}}, "visitin": {"_count": 1, "him": {"_count": 1}}, "gettin": {"_count": 1, "on": {"_count": 1}}, "keepin": {"_count": 1, "outta": {"_count": 1}}, "sleepin": {"_count": 1, "an": {"_count": 1}}, "sneakin": {"_count": 1, "round": {"_count": 1}}, "silent": {"_count": 3, "again": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 2, "o": {"_count": 1}, "of": {"_count": 1}}, "enjoying": {"_count": 3, "themselves": {"_count": 1}, "dinner": {"_count": 1}, "a": {"_count": 1}}, "studyin": {"_count": 1, "today": {"_count": 1}}, "creeping": {"_count": 3, "toward": {"_count": 1}, "furtively": {"_count": 1}, "down": {"_count": 1}}, "following": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "breathless": {"_count": 1, "and": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "werent": {"_count": 1, "you": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "twisted": {"_count": 1, "all": {"_count": 1}}, "shifting": {"_count": 1, "around": {"_count": 1}}, "ushered": {"_count": 1, "inside": {"_count": 1}}, "those": {"_count": 2, "of": {"_count": 1}, "inexplicable": {"_count": 1}}, "answer": {"_count": 1, "enough": {"_count": 1}}, "eating": {"_count": 2, "lunch": {"_count": 1}, "breakfast": {"_count": 1}}, "buses": {"_count": 1, "rumbling": {"_count": 1}}, "\u2018on": {"_count": 1, "duty": {"_count": 1}}, "guarding": {"_count": 1, "it": {"_count": 1}}, "pumping": {"_count": 1, "through": {"_count": 1}}, "skiing": {"_count": 1, "with": {"_count": 1}}, "presumably": {"_count": 1, "supposed": {"_count": 1}}, "stale": {"_count": 1, "bread": {"_count": 1}}, "scurrying": {"_count": 1, "for": {"_count": 1}}, "Aurors": {"_count": 1, "you": {"_count": 1}}, "gaping": {"_count": 1, "back": {"_count": 1}}, "melting": {"_count": 1, "": {"_count": 1}}, "squaring": {"_count": 1, "up": {"_count": 1}}, "leaping": {"_count": 3, "out": {"_count": 1}, "like": {"_count": 1}, "into": {"_count": 1}}, "demonstrating": {"_count": 1, "their": {"_count": 1}}, "silently": {"_count": 1, "jeering": {"_count": 1}}, "tapping": {"_count": 1, "their": {"_count": 1}}, "unable": {"_count": 2, "to": {"_count": 2}}, "buying": {"_count": 1, "": {"_count": 1}}, "legendary": {"_count": 1, "": {"_count": 1}}, "relatives": {"_count": 1, "of": {"_count": 1}}, "unrelated": {"_count": 1, "to": {"_count": 1}}, "decent": {"_count": 1, "": {"_count": 1}}, "waltzing": {"_count": 1, "around": {"_count": 1}}, "jockeying": {"_count": 1, "for": {"_count": 1}}, "bombarding": {"_count": 1, "me": {"_count": 1}}, "damp": {"_count": 1, "": {"_count": 1}}, "lopsided": {"_count": 1, "so": {"_count": 1}}, "trailing": {"_count": 1, "haphazardly": {"_count": 1}}, "oohs": {"_count": 1, "and": {"_count": 1}}, "forewarned": {"_count": 1, "of": {"_count": 1}}, "whizzing": {"_count": 1, "lethally": {"_count": 1}}, "ricocheting": {"_count": 1, "off": {"_count": 1}}, "exploding": {"_count": 1, "like": {"_count": 1}}, "heroes": {"_count": 1, "that": {"_count": 1}}, "wonderful": {"_count": 1, "fireworks": {"_count": 1}}, "firing": {"_count": 1, "review": {"_count": 1}}, "ebbing": {"_count": 1, "and": {"_count": 1}}, "hazel": {"_count": 1, "his": {"_count": 1}}, "excellent": {"_count": 1, "": {"_count": 1}}, "sick": {"_count": 1, "of": {"_count": 1}}, "invisible": {"_count": 4, "": {"_count": 3}, "when": {"_count": 1}}, "stopping": {"_count": 2, "in": {"_count": 1}, "there": {"_count": 1}}, "bored": {"_count": 1, "he": {"_count": 1}}, "sometimes": {"_count": 1, "arrogant": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "hurtling": {"_count": 3, "along": {"_count": 1}, "toward": {"_count": 1}, "through": {"_count": 1}}, "dropped": {"_count": 1, "so": {"_count": 1}}, "criminals": {"_count": 1, "": {"_count": 1}}, "ranged": {"_count": 1, "dusty": {"_count": 1}}, "spotted": {"_count": 1, "": {"_count": 1}}, "cobwebs": {"_count": 1, "but": {"_count": 1}}, "curled": {"_count": 1, "up": {"_count": 1}}, "attached": {"_count": 1, "creaked": {"_count": 1}}, "lovably": {"_count": 1, "harmless": {"_count": 1}}, "slung": {"_count": 1, "over": {"_count": 1}}, "numerous": {"_count": 1, "scratches": {"_count": 1}}, "devoted": {"_count": 1, "to": {"_count": 1}}, "captured": {"_count": 1, "and": {"_count": 1}}, "bathed": {"_count": 1, "in": {"_count": 1}}, "observing": {"_count": 1, "": {"_count": 1}}, "lights": {"_count": 1, "on": {"_count": 1}}, "scratching": {"_count": 1, "on": {"_count": 1}}, "basking": {"_count": 1, "in": {"_count": 1}}, "heavily": {"_count": 1, "bandaged": {"_count": 1}}, "heard": {"_count": 1, "in": {"_count": 1}}, "retreating": {"_count": 1, "in": {"_count": 1}}, "even": {"_count": 2, "further": {"_count": 1}, "thought": {"_count": 1}}, "descending": {"_count": 2, "at": {"_count": 1}, "into": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "blurred": {"_count": 1, "to": {"_count": 1}}, "breeding": {"_count": 1, "No": {"_count": 1}}, "faint": {"_count": 1, "whispering": {"_count": 1}}, "Hermiones": {"_count": 1, "": {"_count": 1}}, "cries": {"_count": 2, "of": {"_count": 2}}, "bewitching": {"_count": 1, "the": {"_count": 1}}, "spinning": {"_count": 1, "around": {"_count": 1}}, "blurs": {"_count": 1, "": {"_count": 1}}, "dueling": {"_count": 2, "their": {"_count": 1}, "and": {"_count": 1}}, "yells": {"_count": 1, "one": {"_count": 1}}, "fused": {"_count": 1, "together": {"_count": 1}}, "correct": {"_count": 1, "Voldemort": {"_count": 1}}, "unlikely": {"_count": 1, "to": {"_count": 1}}, "eleven": {"_count": 1, "": {"_count": 1}}, "slaughtered": {"_count": 1, "in": {"_count": 1}}, "exceptional": {"_count": 1, "": {"_count": 1}}, "older": {"_count": 1, "and": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "neither": {"_count": 2, "fair": {"_count": 1}, "ghost": {"_count": 1}}, "er": {"_count": 1, "mistaken": {"_count": 1}}, "streaks": {"_count": 1, "of": {"_count": 1}}, "happy": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "told": {"_count": 4, "not": {"_count": 2}, "": {"_count": 1}, "didnt": {"_count": 1}}, "craving": {"_count": 1, "more": {"_count": 1}}, "rounding": {"_count": 1, "up": {"_count": 1}}, "indecent": {"_count": 1, "but": {"_count": 1}}, "nudging": {"_count": 1, "them": {"_count": 1}}, "childless": {"_count": 1, "": {"_count": 1}}, "iron": {"_count": 1, "bands": {"_count": 1}}, "nearing": {"_count": 1, "a": {"_count": 1}}, "soft": {"_count": 2, "chairs": {"_count": 1}, "clean": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "letting": {"_count": 1, "on": {"_count": 1}}, "contaminated": {"_count": 1, "or": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "reasonably": {"_count": 1, "well": {"_count": 1}}, "marred": {"_count": 1, "by": {"_count": 1}}, "bins": {"_count": 1, "full": {"_count": 1}}, "importing": {"_count": 1, "it": {"_count": 1}}, "cloistered": {"_count": 1, "in": {"_count": 1}}, "impossible": {"_count": 1, "to": {"_count": 1}}, "nearest": {"_count": 1, "the": {"_count": 1}}, "snarling": {"_count": 1, "at": {"_count": 1}}, "gawping": {"_count": 1, "at": {"_count": 1}}, "better": {"_count": 4, "off": {"_count": 2}, "with": {"_count": 1}, "without": {"_count": 1}}, "moved": {"_count": 1, "back": {"_count": 1}}, "havin": {"_count": 1, "a": {"_count": 1}}, "illegal": {"_count": 1, "and": {"_count": 1}}, "securely": {"_count": 1, "ensconced": {"_count": 1}}, "directions": {"_count": 1, "for": {"_count": 1}}, "mossy": {"_count": 1, "and": {"_count": 1}}, "small": {"_count": 2, "and": {"_count": 1}, "noises": {"_count": 1}}, "scum": {"_count": 1, "do": {"_count": 1}}, "dirt": {"_count": 1, "on": {"_count": 1}}, "overpowered": {"_count": 1, "removed": {"_count": 1}}, "unstable": {"_count": 1, "and": {"_count": 1}}, "receiving": {"_count": 1, "more": {"_count": 1}}, "keen": {"_count": 1, "to": {"_count": 1}}, "nervously": {"_count": 1, "clutching": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "": {"_count": 1}}, "magnificent": {"_count": 1, "said": {"_count": 1}}, "leading": {"_count": 2, "to": {"_count": 1}, "sixty": {"_count": 1}}, "earning": {"_count": 1, "him": {"_count": 1}}, "abusing": {"_count": 1, "it": {"_count": 1}}, "smuggling": {"_count": 1, "Dark": {"_count": 1}}, "enveloped": {"_count": 1, "by": {"_count": 1}}, "cozily": {"_count": 1, "closeted": {"_count": 1}}, "arguing": {"_count": 1, "": {"_count": 1}}, "rattling": {"_count": 1, "in": {"_count": 1}}, "auburn": {"_count": 1, "": {"_count": 1}}, "flushed": {"_count": 1, "her": {"_count": 1}}, "flickering": {"_count": 1, "back": {"_count": 1}}, "surprisingly": {"_count": 1, "well": {"_count": 1}}, "this": {"_count": 1, "close": {"_count": 1}}, "entirely": {"_count": 1, "elder": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "greeted": {"_count": 1, "with": {"_count": 1}}, "Slytherin": {"_count": 2, "players": {"_count": 1}, "taunts": {"_count": 1}}, "whose": {"_count": 1, "": {"_count": 1}}, "secretly": {"_count": 1, "in": {"_count": 1}}, "entwined": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "attracting": {"_count": 1, "a": {"_count": 1}}, "fact": {"_count": 1, "did": {"_count": 1}}, "negotiating": {"_count": 1, "their": {"_count": 1}}, "bearing": {"_count": 1, "so": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "certainly": {"_count": 1, "alone": {"_count": 1}}, "eighteen": {"_count": 2, "": {"_count": 2}}, "setting": {"_count": 1, "off": {"_count": 1}}, "washing": {"_count": 1, "our": {"_count": 1}}, "whipped": {"_count": 1, "out": {"_count": 1}}, "seventeen": {"_count": 1, "": {"_count": 1}}, "snoring": {"_count": 1, "gently": {"_count": 1}}, "perplexed": {"_count": 1, "": {"_count": 1}}, "blamed": {"_count": 1, "by": {"_count": 1}}, "uncomfortable": {"_count": 1, "enough": {"_count": 1}}, "temporarily": {"_count": 1, "detained": {"_count": 1}}, "living": {"_count": 1, "proof": {"_count": 1}}, "Dogbreath": {"_count": 1, "and": {"_count": 1}}, "mine": {"_count": 1, "I": {"_count": 1}}, "asked": {"_count": 2, "ter": {"_count": 1}, "how": {"_count": 1}}, "generally": {"_count": 2, "much": {"_count": 1}, "rather": {"_count": 1}}, "patchy": {"_count": 1, "every": {"_count": 1}}, "dazzling": {"_count": 1, "flashes": {"_count": 1}}, "unconscious": {"_count": 1, "he": {"_count": 1}}, "deciding": {"_count": 1, "which": {"_count": 1}}, "cabinets": {"_count": 1, "full": {"_count": 1}}, "hollowed": {"_count": 1, "but": {"_count": 1}}, "whole": {"_count": 1, "and": {"_count": 1}}, "waxy": {"_count": 1, "and": {"_count": 1}}, "fellow": {"_count": 1, "sixth": {"_count": 1}}, "boiling": {"_count": 1, "Yeah": {"_count": 1}}, "beginning": {"_count": 2, "to": {"_count": 2}}, "acromantulas": {"_count": 1, "in": {"_count": 1}}, "puffy": {"_count": 2, "red": {"_count": 1}, "and": {"_count": 1}}, "intrested": {"_count": 1, "in": {"_count": 1}}, "yer": {"_count": 1, "mum": {"_count": 1}}, "bloodstains": {"_count": 1, "floating": {"_count": 1}}, "alleyways": {"_count": 1, "and": {"_count": 1}}, "thousands": {"_count": 1, "and": {"_count": 1}}, "winged": {"_count": 1, "catapults": {"_count": 1}}, "chipped": {"_count": 1, "bottles": {"_count": 1}}, "suspended": {"_count": 3, "in": {"_count": 1}, "all": {"_count": 1}, "improbably": {"_count": 1}}, "hurt": {"_count": 1, "": {"_count": 1}}, "rudely": {"_count": 1, "interrupted": {"_count": 1}}, "uncommonly": {"_count": 1, "good": {"_count": 1}}, "slippery": {"_count": 1, "with": {"_count": 1}}, "bodies": {"_count": 1, "floating": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "askew": {"_count": 1, "his": {"_count": 1}}, "racing": {"_count": 2, "each": {"_count": 2}}, "fighting": {"_count": 3, "on": {"_count": 1}, "again": {"_count": 1}, "to": {"_count": 1}}, "renewed": {"_count": 1, "sounds": {"_count": 1}}, "linked": {"_count": 1, "": {"_count": 1}}, "smears": {"_count": 1, "of": {"_count": 1}}, "grazes": {"_count": 1, "on": {"_count": 1}}, "losing": {"_count": 1, "said": {"_count": 1}}, "bouncing": {"_count": 1, "off": {"_count": 1}}, "pouring": {"_count": 3, "into": {"_count": 1}, "from": {"_count": 1}, "down": {"_count": 1}}, "spending": {"_count": 2, "all": {"_count": 1}, "many": {"_count": 1}}, "blank": {"_count": 1, "stretches": {"_count": 1}}, "blinding": {"_count": 1, "him": {"_count": 1}}, "hunting": {"_count": 3, "Voldemort": {"_count": 1}, "Horcruxes": {"_count": 1}, "them": {"_count": 1}}, "smoke": {"_count": 1, "": {"_count": 1}}, "vertical": {"_count": 1, "": {"_count": 1}}, "sunken": {"_count": 2, "and": {"_count": 2}}, "disposed": {"_count": 1, "to": {"_count": 1}}, "privileged": {"_count": 1, "to": {"_count": 1}}, "todays": {"_count": 1, "Daily": {"_count": 1}}, "queuing": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "operating": {"_count": 1, "to": {"_count": 1}}, "dismounting": {"_count": 1, "from": {"_count": 1}}, "six": {"_count": 1, "Harry": {"_count": 1}}, "betting": {"_count": 1, "theyll": {"_count": 1}}, "Streetlights": {"_count": 1, "above": {"_count": 1}}, "Hagrid": {"_count": 1, "weve": {"_count": 1}}, "pursuing": {"_count": 3, "them": {"_count": 2}, "the": {"_count": 1}}, "swallowed": {"_count": 1, "by": {"_count": 1}}, "aiming": {"_count": 1, "for": {"_count": 1}}, "chased": {"_count": 1, "Death": {"_count": 1}}, "wider": {"_count": 1, "and": {"_count": 1}}, "ambushed": {"_count": 1, "where": {"_count": 1}}, "third": {"_count": 1, "and": {"_count": 1}}, "directly": {"_count": 1, "involved": {"_count": 1}}, "Hermione": {"_count": 1, "now": {"_count": 1}}, "Bill": {"_count": 2, "Fleur": {"_count": 1}, "and": {"_count": 1}}, "precisely": {"_count": 1, "the": {"_count": 1}}, "Id": {"_count": 1, "agree": {"_count": 1}}, "helpful": {"_count": 1, "pleasant": {"_count": 1}}, "pleased": {"_count": 1, "with": {"_count": 1}}, "finishing": {"_count": 1, "their": {"_count": 1}}, "scarlet": {"_count": 1, "Hermione": {"_count": 1}}, "placed": {"_count": 1, "end": {"_count": 1}}, "singled": {"_count": 1, "out": {"_count": 1}}, "wedged": {"_count": 1, "together": {"_count": 1}}, "passed": {"_count": 1, "from": {"_count": 1}}, "brought": {"_count": 2, "up": {"_count": 2}}, "Ginevra": {"_count": 1, "": {"_count": 1}}, "goodness": {"_count": 1, "its": {"_count": 1}}, "occupied": {"_count": 1, "The": {"_count": 1}}, "Disapparating": {"_count": 1, "the": {"_count": 1}}, "buffeted": {"_count": 1, "by": {"_count": 1}}, "safer": {"_count": 1, "out": {"_count": 1}}, "pressing": {"_count": 2, "against": {"_count": 1}, "on": {"_count": 1}}, "everywhere": {"_count": 1, "draping": {"_count": 1}}, "smashing": {"_count": 1, "up": {"_count": 1}}, "rough": {"_count": 1, "": {"_count": 1}}, "yelling": {"_count": 1, "your": {"_count": 1}}, "spiked": {"_count": 1, "black": {"_count": 1}}, "decoratively": {"_count": 1, "carved": {"_count": 1}}, "embroidered": {"_count": 1, "with": {"_count": 1}}, "accused": {"_count": 1, "of": {"_count": 1}}, "infectious": {"_count": 1, "": {"_count": 1}}, "streaked": {"_count": 1, "with": {"_count": 1}}, "pages": {"_count": 1, "which": {"_count": 1}}, "intent": {"_count": 1, "upon": {"_count": 1}}, "exposed": {"_count": 1, "and": {"_count": 1}}, "concentrating": {"_count": 1, "upon": {"_count": 1}}, "deaf": {"_count": 1, "to": {"_count": 1}}, "dazzled": {"_count": 1, "by": {"_count": 1}}, "slowly": {"_count": 1, "slipping": {"_count": 1}}, "SecretKeepers": {"_count": 1, "so": {"_count": 1}}, "intruders": {"_count": 1, "": {"_count": 1}}, "caused": {"_count": 1, "by": {"_count": 1}}, "comfortably": {"_count": 1, "well": {"_count": 1}}, "experts": {"_count": 1, "at": {"_count": 1}}, "clambering": {"_count": 1, "down": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "foolhardy": {"_count": 1, "in": {"_count": 1}}, "disappointed": {"_count": 1, "you": {"_count": 1}}, "sobs": {"_count": 1, "": {"_count": 1}}, "moments": {"_count": 2, "when": {"_count": 2}}, "notable": {"_count": 1, "homes": {"_count": 1}}, "Christmas": {"_count": 1, "shopping": {"_count": 1}}, "crisscrossing": {"_count": 1, "in": {"_count": 1}}, "unaccompanied": {"_count": 1, "": {"_count": 1}}, "fading": {"_count": 1, "away": {"_count": 1}}, "steep": {"_count": 1, "and": {"_count": 1}}, "camping": {"_count": 1, "": {"_count": 1}}, "surely": {"_count": 1, "Deaths": {"_count": 1}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "distracted": {"_count": 1, "I": {"_count": 1}}, "serious": {"_count": 1, "about": {"_count": 1}}, "different": {"_count": 1, "itd": {"_count": 1}}, "piles": {"_count": 1, "upon": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "investigating": {"_count": 1, "headed": {"_count": 1}}, "learned": {"_count": 1, "in": {"_count": 1}}, "new": {"_count": 1, "to": {"_count": 1}}, "taught": {"_count": 1, "different": {"_count": 1}}, "prat": {"_count": 1, "enough": {"_count": 1}}, "hugging": {"_count": 1, "": {"_count": 1}}, "scurryings": {"_count": 1, "and": {"_count": 1}}, "opening": {"_count": 1, "all": {"_count": 1}}, "united": {"_count": 1, "in": {"_count": 1}}, "sharing": {"_count": 2, "had": {"_count": 1}, "the": {"_count": 1}}, "needed": {"_count": 1, "of": {"_count": 1}}, "pushing": {"_count": 2, "over": {"_count": 1}, "the": {"_count": 1}}, "breaking": {"_count": 1, "across": {"_count": 1}}, "branded": {"_count": 1, "with": {"_count": 1}}, "dragged": {"_count": 1, "to": {"_count": 1}}, "squeezed": {"_count": 1, "tightly": {"_count": 1}}, "pushed": {"_count": 1, "over": {"_count": 1}}, "shoved": {"_count": 1, "and": {"_count": 1}}, "extraordinarily": {"_count": 1, "alike": {"_count": 1}}, "inaudible": {"_count": 1, "for": {"_count": 1}}, "lifeless": {"_count": 1, "the": {"_count": 1}}, "bidden": {"_count": 1, "as": {"_count": 1}}, "mistaken": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 1, "or": {"_count": 1}}, "turned": {"_count": 1, "toward": {"_count": 1}}, "dirty": {"_count": 1, "": {"_count": 1}}, "laying": {"_count": 1, "the": {"_count": 1}}, "exhilarating": {"_count": 1, "": {"_count": 1}}, "continuing": {"_count": 1, "to": {"_count": 1}}, "wellprepared": {"_count": 1, "for": {"_count": 1}}, "trusting": {"_count": 1, "to": {"_count": 1}}, "confined": {"_count": 1, "to": {"_count": 1}}, "aware": {"_count": 1, "that": {"_count": 1}}, "deeper": {"_count": 1, "than": {"_count": 1}}, "realizing": {"_count": 1, "it": {"_count": 1}}, "milkily": {"_count": 1, "pink": {"_count": 1}}, "truly": {"_count": 1, "trapped": {"_count": 1}}, "waistdeep": {"_count": 1, "in": {"_count": 1}}, "hard": {"_count": 1, "as": {"_count": 1}}, "shut": {"_count": 1, "tight": {"_count": 1}}, "cars": {"_count": 1, "pouring": {"_count": 1}}, "wincing": {"_count": 1, "as": {"_count": 1}}, "slain": {"_count": 1, "all": {"_count": 1}}, "noises": {"_count": 1, "of": {"_count": 1}}, "Xraying": {"_count": 1, "the": {"_count": 1}}, "hatching": {"_count": 1, "all": {"_count": 1}}, "briefly": {"_count": 1, "occluded": {"_count": 1}}, "gouge": {"_count": 1, "marks": {"_count": 1}}, "smooth": {"_count": 1, "stone": {"_count": 1}}, "mouthy": {"_count": 1, "but": {"_count": 1}}, "communicating": {"_count": 1, "it": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "engulfed": {"_count": 1, "hugged": {"_count": 1}}, "absent": {"_count": 1, "": {"_count": 1}}, "Terry": {"_count": 1, "Boot": {"_count": 1}}, "nodding": {"_count": 1, "some": {"_count": 1}}, "hung": {"_count": 1, "with": {"_count": 1}}, "echoed": {"_count": 1, "in": {"_count": 1}}, "tables": {"_count": 1, "chairs": {"_count": 1}}, "gasps": {"_count": 1, "and": {"_count": 1}}, "animals": {"_count": 1, "too": {"_count": 1}}, "Oliver": {"_count": 1, "Wood": {"_count": 1}}, "threatening": {"_count": 2, "to": {"_count": 2}}, "owls": {"_count": 1, "everywhere": {"_count": 1}}, "evacuating": {"_count": 1, "Harry": {"_count": 1}}, "another": {"_count": 1, "Horcrux": {"_count": 1}}, "crumbling": {"_count": 1, "to": {"_count": 1}}, "feeding": {"_count": 1, "was": {"_count": 1}}, "circling": {"_count": 1, "them": {"_count": 1}}, "flung": {"_count": 1, "into": {"_count": 1}}, "embracing": {"_count": 1, "again": {"_count": 1}}, "assaulted": {"_count": 1, "with": {"_count": 1}}, "weaving": {"_count": 1, "and": {"_count": 1}}, "bowled": {"_count": 1, "aside": {"_count": 1}}, "swarming": {"_count": 3, "away": {"_count": 1}, "through": {"_count": 1}, "forward": {"_count": 1}}, "loud": {"_count": 1, "in": {"_count": 1}}, "stained": {"_count": 1, "with": {"_count": 1}}, "swinging": {"_count": 1, "backward": {"_count": 1}}, "A": {"_count": 1, "few": {"_count": 1}}, "rendering": {"_count": 1, "him": {"_count": 1}}, "strolling": {"_count": 1, "together": {"_count": 1}}, "protecting": {"_count": 1, "him": {"_count": 1}}, "Lupin": {"_count": 1, "and": {"_count": 1}}, "dripping": {"_count": 1, "from": {"_count": 1}}, "numbered": {"_count": 1, "": {"_count": 1}}, "concentrated": {"_count": 1, "in": {"_count": 1}}, "backups": {"_count": 1, "others": {"_count": 1}}, "fetching": {"_count": 1, "him": {"_count": 1}}, "passenger": {"_count": 1, "not": {"_count": 1}}, "sweating": {"_count": 1, "as": {"_count": 1}}, "clothed": {"_count": 1, "": {"_count": 1}}, "directed": {"_count": 1, "only": {"_count": 1}}, "severe": {"_count": 1, "": {"_count": 1}}, "simply": {"_count": 1, "gifted": {"_count": 1}}, "evenly": {"_count": 1, "matched": {"_count": 1}}, "exceedingly": {"_count": 1, "gentle": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "movements": {"_count": 1, "from": {"_count": 1}}, "scattering": {"_count": 1, "the": {"_count": 1}}, "trampled": {"_count": 1, "by": {"_count": 1}}, "hacking": {"_count": 1, "and": {"_count": 1}}, "folding": {"_count": 1, "under": {"_count": 1}}, "stifled": {"_count": 1, "at": {"_count": 1}}, "children": {"_count": 1, "": {"_count": 1}}, "fleeing": {"_count": 1, "or": {"_count": 1}}, "me": {"_count": 1, "she": {"_count": 1}}, "rejoicing": {"_count": 1, "at": {"_count": 1}}, "named": {"_count": 1, "for": {"_count": 1}}, "slamming": {"_count": 1, "all": {"_count": 1}}}, "proud": {"_count": 49, "to": {"_count": 5, "say": {"_count": 1}, "present": {"_count": 1}, "keep": {"_count": 1}, "be": {"_count": 2}}, "of": {"_count": 17, "having": {"_count": 2}, "now": {"_count": 1}, "anything": {"_count": 1}, "yourself": {"_count": 1}, "me": {"_count": 2}, "you": {"_count": 3}, "": {"_count": 1}, "it": {"_count": 3}, "the": {"_count": 1}, "being": {"_count": 2}}, "felt": {"_count": 1, "quite": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "though": {"_count": 1, "wont": {"_count": 1}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Bellatrix": {"_count": 1}}, "and": {"_count": 3, "important": {"_count": 1}, "that": {"_count": 1}, "very": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "way": {"_count": 1}}, "Neville": {"_count": 1, "proud": {"_count": 1}}, "highcheekboned": {"_count": 1, "face": {"_count": 1}}, "at": {"_count": 1, "how": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "or": {"_count": 1, "vain": {"_count": 1}}, "so": {"_count": 2, "proud": {"_count": 1}, "happy": {"_count": 1}}}, "to": {"_count": 26675, "say": {"_count": 280, "that": {"_count": 22}, "something": {"_count": 20}, "Harry": {"_count": 4}, "Go": {"_count": 1}, "thank": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 35}, "I": {"_count": 6}, "a": {"_count": 3}, "Or": {"_count": 1}, "sorry": {"_count": 1}, "goodbye": {"_count": 10}, "to": {"_count": 15}, "he": {"_count": 6}, "is": {"_count": 3}, "thats": {"_count": 1}, "Shh": {"_count": 1}, "on": {"_count": 5}, "about": {"_count": 5}, "so": {"_count": 1}, "All": {"_count": 1}, "for": {"_count": 2}, "look": {"_count": 1}, "was": {"_count": 1}, "hello": {"_count": 3}, "if": {"_count": 2}, "its": {"_count": 1}, "who": {"_count": 2}, "Oh": {"_count": 1}, "anything": {"_count": 13}, "but": {"_count": 4}, "and": {"_count": 2}, "Sirius": {"_count": 1}, "any": {"_count": 3}, "where": {"_count": 1}, "loudly": {"_count": 1}, "hed": {"_count": 1}, "which": {"_count": 1}, "w": {"_count": 1}, "this": {"_count": 6}, "it": {"_count": 6}, "their": {"_count": 1}, "seventeen": {"_count": 1}, "To": {"_count": 1}, "fine": {"_count": 1}, "good": {"_count": 2}, "yeh": {"_count": 1}, "Harrys": {"_count": 1}, "Mr": {"_count": 1}, "her": {"_count": 1}, "whatever": {"_count": 1}, "because": {"_count": 2}, "his": {"_count": 1}, "do": {"_count": 1}, "well": {"_count": 1}, "the": {"_count": 7}, "your": {"_count": 1}, "while": {"_count": 1}, "said": {"_count": 4}, "what": {"_count": 6}, "either": {"_count": 1}, "exactly": {"_count": 1}, "whether": {"_count": 2}, "Im": {"_count": 1}, "Its": {"_count": 1}, "stuck": {"_count": 1}, "hes": {"_count": 1}, "however": {"_count": 2}, "first": {"_count": 1}, "everything": {"_count": 2}, "seems": {"_count": 1}, "Voldemort": {"_count": 1}, "\u2018Hagrid": {"_count": 1}, "did": {"_count": 1}, "Good": {"_count": 1}, "nothing": {"_count": 3}, "or": {"_count": 2}, "you": {"_count": 1}, "some": {"_count": 1}, "except": {"_count": 2}, "wands": {"_count": 1}, "beamed": {"_count": 1}, "probably": {"_count": 1}, "muttered": {"_count": 1}, "as": {"_count": 1}, "next": {"_count": 1}, "in": {"_count": 1}, "younger": {"_count": 1}, "The": {"_count": 1}, "too": {"_count": 1}, "another": {"_count": 1}, "keeping": {"_count": 1}, "not": {"_count": 1}, "And": {"_count": 1}, "she": {"_count": 1}, "Dirk": {"_count": 1}, "they": {"_count": 1}, "more": {"_count": 2}, "Rons": {"_count": 1}, "Fragmented": {"_count": 1}, "Yes": {"_count": 1}}, "be": {"_count": 1498, "involved": {"_count": 1}, "": {"_count": 36}, "a": {"_count": 104}, "older": {"_count": 1}, "any": {"_count": 4}, "thankful": {"_count": 1}, "frightened": {"_count": 2}, "allowed": {"_count": 4}, "spending": {"_count": 2}, "good": {"_count": 3}, "coming": {"_count": 7}, "so": {"_count": 5}, "up": {"_count": 5}, "trying": {"_count": 9}, "nice": {"_count": 3}, "made": {"_count": 6}, "left": {"_count": 3}, "in": {"_count": 49}, "inside": {"_count": 3}, "at": {"_count": 5}, "better": {"_count": 1}, "brave": {"_count": 2}, "unwrapped": {"_count": 1}, "careful": {"_count": 12}, "pepper": {"_count": 1}, "settling": {"_count": 1}, "slowing": {"_count": 1}, "taking": {"_count": 4}, "arguing": {"_count": 1}, "Sorted": {"_count": 1}, "asking": {"_count": 3}, "sorted": {"_count": 4}, "chosen": {"_count": 3}, "very": {"_count": 9}, "surprised": {"_count": 2}, "the": {"_count": 34}, "changing": {"_count": 2}, "enjoying": {"_count": 6}, "full": {"_count": 4}, "expelled": {"_count": 4}, "something": {"_count": 3}, "being": {"_count": 1}, "brilliant": {"_count": 1}, "late": {"_count": 3}, "somewhere": {"_count": 3}, "quiet": {"_count": 3}, "that": {"_count": 2}, "straining": {"_count": 1}, "working": {"_count": 8}, "sending": {"_count": 1}, "really": {"_count": 7}, "driving": {"_count": 1}, "away": {"_count": 1}, "looking": {"_count": 6}, "taken": {"_count": 4}, "out": {"_count": 8}, "speaking": {"_count": 2}, "doing": {"_count": 9}, "sick": {"_count": 4}, "nursed": {"_count": 1}, "gamekeeper": {"_count": 1}, "fair": {"_count": 1}, "proud": {"_count": 4}, "seen": {"_count": 23}, "getting": {"_count": 12}, "thinking": {"_count": 7}, "as": {"_count": 4}, "able": {"_count": 33}, "punished": {"_count": 2}, "picking": {"_count": 1}, "cursed": {"_count": 1}, "more": {"_count": 5}, "waiting": {"_count": 4}, "guarding": {"_count": 2}, "chessmen": {"_count": 1}, "distracted": {"_count": 1}, "Harrys": {"_count": 2}, "missing": {"_count": 1}, "sure": {"_count": 10}, "rude": {"_count": 2}, "plotting": {"_count": 1}, "this": {"_count": 1}, "spinning": {"_count": 2}, "on": {"_count": 19}, "spent": {"_count": 1}, "Minister": {"_count": 3}, "done": {"_count": 10}, "caving": {"_count": 1}, "Snape": {"_count": 1}, "swept": {"_count": 3}, "turning": {"_count": 6}, "damaged": {"_count": 1}, "frank": {"_count": 1}, "first": {"_count": 1}, "dragged": {"_count": 2}, "nodding": {"_count": 1}, "back": {"_count": 11}, "found": {"_count": 5}, "music": {"_count": 1}, "honest": {"_count": 9}, "educated": {"_count": 1}, "untrustworthy": {"_count": 1}, "some": {"_count": 6}, "related": {"_count": 2}, "fighting": {"_count": 3}, "picked": {"_count": 2}, "stewed": {"_count": 1}, "joking": {"_count": 2}, "sent": {"_count": 4}, "asleep": {"_count": 7}, "attacked": {"_count": 8}, "packed": {"_count": 1}, "facetoface": {"_count": 1}, "amazed": {"_count": 1}, "thrown": {"_count": 4}, "aggravating": {"_count": 1}, "from": {"_count": 3}, "used": {"_count": 4}, "hiding": {"_count": 4}, "sunset": {"_count": 1}, "postponed": {"_count": 1}, "thoroughly": {"_count": 2}, "werewolves": {"_count": 1}, "sloping": {"_count": 1}, "pressing": {"_count": 1}, "closing": {"_count": 1}, "tired": {"_count": 1}, "alive": {"_count": 2}, "almost": {"_count": 2}, "proved": {"_count": 1}, "discovered": {"_count": 2}, "prepared": {"_count": 3}, "following": {"_count": 4}, "exactly": {"_count": 1}, "replaced": {"_count": 6}, "true": {"_count": 3}, "keeping": {"_count": 3}, "caught": {"_count": 7}, "unconscious": {"_count": 3}, "with": {"_count": 5}, "boring": {"_count": 1}, "swelling": {"_count": 2}, "deserted": {"_count": 3}, "held": {"_count": 1}, "Neville": {"_count": 1}, "arrested": {"_count": 1}, "prefects": {"_count": 1}, "impossible": {"_count": 1}, "murdered": {"_count": 2}, "to": {"_count": 5}, "much": {"_count": 4}, "using": {"_count": 2}, "holding": {"_count": 4}, "fooled": {"_count": 1}, "entertaining": {"_count": 1}, "giant": {"_count": 1}, "having": {"_count": 6}, "poisoned": {"_count": 1}, "tucking": {"_count": 1}, "handed": {"_count": 5}, "crying": {"_count": 1}, "he": {"_count": 3}, "closed": {"_count": 1}, "practicing": {"_count": 3}, "told": {"_count": 4}, "blown": {"_count": 1}, "one": {"_count": 5}, "an": {"_count": 15}, "real": {"_count": 2}, "another": {"_count": 3}, "tapping": {"_count": 1}, "struggling": {"_count": 2}, "killed": {"_count": 7}, "steered": {"_count": 2}, "quite": {"_count": 4}, "checked": {"_count": 1}, "after": {"_count": 1}, "anything": {"_count": 2}, "refusing": {"_count": 1}, "checking": {"_count": 2}, "your": {"_count": 3}, "executed": {"_count": 1}, "fixed": {"_count": 1}, "our": {"_count": 3}, "loads": {"_count": 1}, "horrible": {"_count": 1}, "fine": {"_count": 3}, "going": {"_count": 9}, "celebrating": {"_count": 1}, "led": {"_count": 2}, "withering": {"_count": 1}, "tested": {"_count": 3}, "chattering": {"_count": 1}, "three": {"_count": 1}, "trusted": {"_count": 2}, "sagging": {"_count": 1}, "burning": {"_count": 1}, "us": {"_count": 1}, "pondering": {"_count": 1}, "gained": {"_count": 4}, "considering": {"_count": 1}, "given": {"_count": 5}, "traveling": {"_count": 3}, "moving": {"_count": 4}, "carried": {"_count": 1}, "listening": {"_count": 7}, "difficult": {"_count": 2}, "okay": {"_count": 1}, "bouncing": {"_count": 2}, "dead": {"_count": 5}, "even": {"_count": 1}, "chewing": {"_count": 1}, "connected": {"_count": 1}, "causing": {"_count": 2}, "suffocating": {"_count": 1}, "Charlie": {"_count": 1}, "Head": {"_count": 4}, "Ireland": {"_count": 1}, "his": {"_count": 4}, "pitched": {"_count": 1}, "greatly": {"_count": 1}, "gambling": {"_count": 1}, "quivering": {"_count": 1}, "falling": {"_count": 1}, "reading": {"_count": 2}, "handfuls": {"_count": 1}, "showing": {"_count": 2}, "alone": {"_count": 6}, "mined": {"_count": 1}, "kidding": {"_count": 1}, "starting": {"_count": 2}, "all": {"_count": 9}, "about": {"_count": 4}, "wearing": {"_count": 2}, "rather": {"_count": 3}, "scarred": {"_count": 1}, "making": {"_count": 4}, "greeted": {"_count": 1}, "shared": {"_count": 1}, "visualizing": {"_count": 1}, "alert": {"_count": 2}, "old": {"_count": 2}, "drowning": {"_count": 1}, "only": {"_count": 2}, "undergoing": {"_count": 1}, "catching": {"_count": 1}, "built": {"_count": 1}, "here": {"_count": 15}, "sitting": {"_count": 4}, "breathing": {"_count": 1}, "entered": {"_count": 1}, "axle": {"_count": 1}, "speculating": {"_count": 1}, "selected": {"_count": 1}, "telling": {"_count": 1}, "performed": {"_count": 1}, "far": {"_count": 1}, "cornered": {"_count": 1}, "kept": {"_count": 2}, "around": {"_count": 2}, "scared": {"_count": 1}, "not": {"_count": 1}, "quick": {"_count": 3}, "armed": {"_count": 1}, "last": {"_count": 3}, "knocked": {"_count": 1}, "disturbed": {"_count": 1}, "offering": {"_count": 1}, "outside": {"_count": 2}, "deep": {"_count": 2}, "badly": {"_count": 1}, "feeling": {"_count": 3}, "pretty": {"_count": 4}, "paid": {"_count": 1}, "ashamed": {"_count": 3}, "funny": {"_count": 1}, "staying": {"_count": 1}, "obsessed": {"_count": 1}, "fewer": {"_count": 1}, "fact": {"_count": 1}, "spotted": {"_count": 1}, "socks": {"_count": 1}, "Father": {"_count": 1}, "fined": {"_count": 1}, "overheard": {"_count": 3}, "giants": {"_count": 1}, "above": {"_count": 1}, "heard": {"_count": 1}, "too": {"_count": 3}, "sneaking": {"_count": 1}, "ill": {"_count": 3}, "aiming": {"_count": 1}, "disqualified": {"_count": 1}, "turned": {"_count": 2}, "down": {"_count": 1}, "nothing": {"_count": 2}, "beneath": {"_count": 1}, "Beater": {"_count": 1}, "Death": {"_count": 1}, "unhappy": {"_count": 2}, "served": {"_count": 1}, "expecting": {"_count": 2}, "boiled": {"_count": 1}, "banned": {"_count": 1}, "continually": {"_count": 1}, "talking": {"_count": 4}, "boiling": {"_count": 1}, "fed": {"_count": 2}, "benches": {"_count": 1}, "pointing": {"_count": 1}, "of": {"_count": 2}, "clinging": {"_count": 1}, "linked": {"_count": 1}, "studying": {"_count": 1}, "researching": {"_count": 1}, "patrolling": {"_count": 1}, "rescued": {"_count": 2}, "close": {"_count": 1}, "part": {"_count": 2}, "stirring": {"_count": 2}, "water": {"_count": 1}, "raised": {"_count": 1}, "assured": {"_count": 1}, "no": {"_count": 1}, "had": {"_count": 1}, "me": {"_count": 6}, "concealed": {"_count": 2}, "controlled": {"_count": 1}, "returned": {"_count": 1}, "demanding": {"_count": 2}, "winking": {"_count": 1}, "acting": {"_count": 1}, "discreet": {"_count": 1}, "beyond": {"_count": 1}, "writing": {"_count": 1}, "punishable": {"_count": 1}, "congratulated": {"_count": 1}, "completely": {"_count": 3}, "rash": {"_count": 1}, "expected": {"_count": 2}, "stuck": {"_count": 2}, "home": {"_count": 1}, "hell": {"_count": 1}, "standing": {"_count": 5}, "suspicious": {"_count": 1}, "introduced": {"_count": 1}, "known": {"_count": 2}, "ready": {"_count": 1}, "packing": {"_count": 1}, "running": {"_count": 1}, "flying": {"_count": 1}, "behind": {"_count": 2}, "famous": {"_count": 1}, "rags": {"_count": 1}, "cleared": {"_count": 1}, "tempted": {"_count": 2}, "tailing": {"_count": 2}, "filled": {"_count": 1}, "overruled": {"_count": 1}, "accurate": {"_count": 1}, "adjusting": {"_count": 1}, "several": {"_count": 1}, "cleaning": {"_count": 1}, "there": {"_count": 13}, "empty": {"_count": 3}, "slightly": {"_count": 1}, "somehow": {"_count": 1}, "paying": {"_count": 2}, "revolting": {"_count": 1}, "rummaging": {"_count": 1}, "begging": {"_count": 1}, "lying": {"_count": 2}, "Sirius": {"_count": 2}, "recaptured": {"_count": 1}, "cooked": {"_count": 1}, "shunted": {"_count": 1}, "believed": {"_count": 1}, "parted": {"_count": 1}, "their": {"_count": 1}, "friends": {"_count": 4}, "drinking": {"_count": 1}, "recognized": {"_count": 1}, "preserved": {"_count": 1}, "perfected": {"_count": 1}, "prohibited": {"_count": 2}, "isnt": {"_count": 1}, "added": {"_count": 1}, "stirred": {"_count": 1}, "lowered": {"_count": 1}, "said": {"_count": 4}, "eaten": {"_count": 1}, "rectified": {"_count": 1}, "caned": {"_count": 1}, "free": {"_count": 2}, "what": {"_count": 3}, "channeling": {"_count": 1}, "shining": {"_count": 1}, "bothered": {"_count": 2}, "or": {"_count": 1}, "rubbish": {"_count": 1}, "tarred": {"_count": 1}, "appointed": {"_count": 1}, "possessed": {"_count": 1}, "vanished": {"_count": 1}, "sympathetic": {"_count": 2}, "perusing": {"_count": 1}, "taught": {"_count": 1}, "earthy": {"_count": 1}, "meeting": {"_count": 1}, "properly": {"_count": 1}, "modest": {"_count": 1}, "admired": {"_count": 1}, "dangerous": {"_count": 1}, "worrying": {"_count": 2}, "forming": {"_count": 1}, "called": {"_count": 1}, "relocated": {"_count": 1}, "issuing": {"_count": 1}, "staring": {"_count": 2}, "crowns": {"_count": 1}, "nervous": {"_count": 2}, "Montagues": {"_count": 1}, "safe": {"_count": 3}, "stopped": {"_count": 3}, "bleeding": {"_count": 1}, "set": {"_count": 2}, "seeing": {"_count": 1}, "put": {"_count": 1}, "straightening": {"_count": 1}, "kissing": {"_count": 1}, "sleeping": {"_count": 2}, "nearer": {"_count": 1}, "moved": {"_count": 1}, "just": {"_count": 1}, "highly": {"_count": 1}, "anyway": {"_count": 1}, "regaining": {"_count": 1}, "teaching": {"_count": 3}, "opened": {"_count": 1}, "perused": {"_count": 1}, "provoked": {"_count": 1}, "Harry": {"_count": 2}, "thin": {"_count": 1}, "upset": {"_count": 1}, "ousted": {"_count": 1}, "enough": {"_count": 1}, "passing": {"_count": 1}, "playing": {"_count": 1}, "slaughtered": {"_count": 1}, "entirely": {"_count": 1}, "emptying": {"_count": 1}, "absorbed": {"_count": 2}, "quoting": {"_count": 1}, "trembling": {"_count": 1}, "The": {"_count": 1}, "absolutely": {"_count": 1}, "learning": {"_count": 1}, "extra": {"_count": 1}, "anybody": {"_count": 1}, "laboring": {"_count": 1}, "hoping": {"_count": 1}, "gaining": {"_count": 1}, "growing": {"_count": 3}, "fifteen": {"_count": 1}, "humiliated": {"_count": 1}, "limping": {"_count": 1}, "Aurors": {"_count": 1}, "like": {"_count": 2}, "revolving": {"_count": 1}, "observed": {"_count": 1}, "charming": {"_count": 1}, "floating": {"_count": 1}, "chucked": {"_count": 1}, "perfectly": {"_count": 1}, "incredible": {"_count": 1}, "halted": {"_count": 1}, "leading": {"_count": 1}, "adding": {"_count": 1}, "attempting": {"_count": 1}, "over": {"_count": 1}, "mounting": {"_count": 1}, "fired": {"_count": 1}, "speeding": {"_count": 1}, "stone": {"_count": 1}, "conveying": {"_count": 1}, "handing": {"_count": 1}, "unhurt": {"_count": 1}, "happy": {"_count": 1}, "barred": {"_count": 1}, "young": {"_count": 1}, "pitied": {"_count": 1}, "easing": {"_count": 1}, "invincible": {"_count": 1}, "deflected": {"_count": 1}, "off": {"_count": 1}, "encumbered": {"_count": 1}, "seventeen": {"_count": 1}, "coping": {"_count": 1}, "but": {"_count": 2}, "married": {"_count": 3}, "giving": {"_count": 3}, "dissolving": {"_count": 1}, "flippant": {"_count": 1}, "shopping": {"_count": 1}, "asked": {"_count": 2}, "less": {"_count": 1}, "qualified": {"_count": 1}, "sliding": {"_count": 2}, "mended": {"_count": 1}, "wellrested": {"_count": 1}, "stunned": {"_count": 1}, "jinxing": {"_count": 1}, "pleased": {"_count": 1}, "spectacular": {"_count": 1}, "filling": {"_count": 1}, "treated": {"_count": 1}, "correspondingly": {"_count": 1}, "heading": {"_count": 1}, "pure": {"_count": 1}, "fun": {"_count": 1}, "gone": {"_count": 2}, "named": {"_count": 1}, "Riddle": {"_count": 1}, "different": {"_count": 1}, "dismissed": {"_count": 1}, "my": {"_count": 2}, "Hermione": {"_count": 2}, "pals": {"_count": 1}, "excited": {"_count": 1}, "near": {"_count": 1}, "six": {"_count": 1}, "woken": {"_count": 1}, "serious": {"_count": 1}, "solid": {"_count": 3}, "shot": {"_count": 1}, "demonstrating": {"_count": 1}, "sugar": {"_count": 1}, "Unplottable": {"_count": 1}, "concentrating": {"_count": 1}, "complicated": {"_count": 1}, "you": {"_count": 4}, "Apparating": {"_count": 1}, "tonight": {"_count": 1}, "wasted": {"_count": 1}, "passed": {"_count": 1}, "positively": {"_count": 1}, "rid": {"_count": 2}, "knitting": {"_count": 1}, "endured": {"_count": 1}, "walking": {"_count": 1}, "talked": {"_count": 1}, "afraid": {"_count": 1}, "hidden": {"_count": 2}, "facing": {"_count": 2}, "keen": {"_count": 1}, "feared": {"_count": 2}, "drunk": {"_count": 1}, "ripped": {"_count": 1}, "protecting": {"_count": 1}, "Slytherins": {"_count": 1}, "lost": {"_count": 3}, "laid": {"_count": 1}, "completed": {"_count": 1}, "Dumbledores": {"_count": 1}, "restraining": {"_count": 1}, "susceptible": {"_count": 1}, "unoccupied": {"_count": 1}, "outsiders": {"_count": 1}, "guilty": {"_count": 1}, "meteoric": {"_count": 1}, "frustratingly": {"_count": 1}, "addressed": {"_count": 1}, "rippling": {"_count": 1}, "second": {"_count": 1}, "identifying": {"_count": 1}, "cleaned": {"_count": 1}, "worn": {"_count": 1}, "Beedle": {"_count": 1}, "emitting": {"_count": 1}, "surrounded": {"_count": 1}, "polished": {"_count": 1}, "most": {"_count": 1}, "presented": {"_count": 1}, "clear": {"_count": 1}, "tingling": {"_count": 1}, "gleaning": {"_count": 1}, "right": {"_count": 1}, "dying": {"_count": 1}, "beaten": {"_count": 1}, "fainting": {"_count": 1}, "recording": {"_count": 1}, "fast": {"_count": 1}, "leaves": {"_count": 1}, "sufficient": {"_count": 1}, "two": {"_count": 1}, "lied": {"_count": 1}, "sidetracked": {"_count": 1}, "haunted": {"_count": 1}, "fatally": {"_count": 1}, "interviewed": {"_count": 1}, "uninhabited": {"_count": 1}, "Lunas": {"_count": 1}, "steeling": {"_count": 1}, "glad": {"_count": 1}, "truly": {"_count": 1}, "unlucky": {"_count": 1}, "invisible": {"_count": 1}, "Stan": {"_count": 1}, "\u2018Rapier": {"_count": 1}, "barely": {"_count": 1}, "SkeleGro": {"_count": 1}, "freed": {"_count": 1}, "considered": {"_count": 1}, "overeard": {"_count": 1}, "Bellatrixs": {"_count": 1}, "approaching": {"_count": 1}, "shaken": {"_count": 1}, "sobbing": {"_count": 1}, "utterly": {"_count": 1}, "Defense": {"_count": 1}, "I": {"_count": 1}, "solidifying": {"_count": 1}, "contained": {"_count": 1}, "her": {"_count": 1}, "large": {"_count": 1}, "thwarted": {"_count": 1}, "leaking": {"_count": 1}, "wrestling": {"_count": 1}, "ddoing": {"_count": 1}, "clever": {"_count": 1}, "rearranged": {"_count": 1}, "refuses": {"_count": 1}, "pleading": {"_count": 1}, "valuable": {"_count": 1}, "watching": {"_count": 1}, "sensed": {"_count": 1}, "white": {"_count": 1}, "examined": {"_count": 1}, "waving": {"_count": 1}}, "think": {"_count": 200, "what": {"_count": 7}, "of": {"_count": 45}, "he": {"_count": 12}, "about": {"_count": 36}, "hed": {"_count": 1}, "they": {"_count": 3}, "she": {"_count": 2}, "much": {"_count": 2}, "things": {"_count": 2}, "better": {"_count": 2}, "its": {"_count": 2}, "youre": {"_count": 3}, "": {"_count": 12}, "that": {"_count": 16}, "Hagrid": {"_count": 1}, "I": {"_count": 3}, "how": {"_count": 3}, "and": {"_count": 1}, "it": {"_count": 8}, "the": {"_count": 5}, "Harry": {"_count": 2}, "carefully": {"_count": 1}, "Hermione": {"_count": 2}, "straight": {"_count": 1}, "there": {"_count": 2}, "was": {"_count": 1}, "whats": {"_count": 1}, "Snapes": {"_count": 1}, "for": {"_count": 1}, "his": {"_count": 1}, "theres": {"_count": 1}, "or": {"_count": 2}, "perhaps": {"_count": 1}, "we": {"_count": 2}, "constituted": {"_count": 1}, "youd": {"_count": 1}, "only": {"_count": 1}, "my": {"_count": 1}, "up": {"_count": 1}, "more": {"_count": 1}, "isnt": {"_count": 1}, "now": {"_count": 1}, "over": {"_count": 1}, "this": {"_count": 1}, "Id": {"_count": 1}, "you": {"_count": 1}, "weve": {"_count": 1}, "Snape": {"_count": 1}, "like": {"_count": 1}}, "suggest": {"_count": 13, "that": {"_count": 7}, "a": {"_count": 1}, "hes": {"_count": 2}, "his": {"_count": 1}, "as": {"_count": 1}, "again": {"_count": 1}}, "kiss": {"_count": 14, "Dudley": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 3}, "his": {"_count": 2}, "him": {"_count": 4}, "whomever": {"_count": 1}, "Mrs": {"_count": 1}}, "look": {"_count": 274, "again": {"_count": 1}, "after": {"_count": 15}, "at": {"_count": 106}, "on": {"_count": 1}, "like": {"_count": 10}, "forward": {"_count": 7}, "for": {"_count": 18}, "as": {"_count": 10}, "in": {"_count": 7}, "excitedly": {"_count": 1}, "down": {"_count": 5}, "through": {"_count": 2}, "Dumbledore": {"_count": 1}, "": {"_count": 6}, "up": {"_count": 12}, "around": {"_count": 5}, "pleased": {"_count": 1}, "inside": {"_count": 2}, "past": {"_count": 1}, "into": {"_count": 6}, "so": {"_count": 1}, "comical": {"_count": 1}, "innocent": {"_count": 2}, "mildly": {"_count": 1}, "right": {"_count": 1}, "curious": {"_count": 1}, "outside": {"_count": 1}, "and": {"_count": 2}, "impressive": {"_count": 1}, "out": {"_count": 4}, "too": {"_count": 1}, "a": {"_count": 1}, "quite": {"_count": 1}, "really": {"_count": 1}, "And": {"_count": 2}, "guilty": {"_count": 1}, "gloomy": {"_count": 1}, "back": {"_count": 4}, "critically": {"_count": 1}, "behind": {"_count": 1}, "puzzled": {"_count": 1}, "over": {"_count": 3}, "bemused": {"_count": 1}, "worried": {"_count": 2}, "far": {"_count": 1}, "modest": {"_count": 1}, "to": {"_count": 2}, "very": {"_count": 1}, "round": {"_count": 1}, "Umbridge": {"_count": 1}, "ashamed": {"_count": 1}, "where": {"_count": 1}, "small": {"_count": 1}, "moody": {"_count": 1}, "toward": {"_count": 1}, "questioningly": {"_count": 1}, "suspicious": {"_count": 1}, "away": {"_count": 2}, "directly": {"_count": 1}, "Harry": {"_count": 1}, "cold": {"_count": 1}, "Ron": {"_count": 1}, "when": {"_count": 1}}, "get": {"_count": 663, "that": {"_count": 5}, "bored": {"_count": 2}, "a": {"_count": 43}, "the": {"_count": 30}, "out": {"_count": 47}, "comfortable": {"_count": 1}, "em": {"_count": 2}, "away": {"_count": 16}, "his": {"_count": 8}, "to": {"_count": 40}, "up": {"_count": 21}, "annoyed": {"_count": 1}, "on": {"_count": 9}, "into": {"_count": 19}, "onto": {"_count": 4}, "round": {"_count": 2}, "if": {"_count": 1}, "started": {"_count": 6}, "him": {"_count": 18}, "caught": {"_count": 2}, "back": {"_count": 33}, "in": {"_count": 24}, "it": {"_count": 16}, "them": {"_count": 7}, "us": {"_count": 4}, "plates": {"_count": 1}, "past": {"_count": 23}, "everyone": {"_count": 1}, "himself": {"_count": 1}, "inside": {"_count": 8}, "through": {"_count": 23}, "rid": {"_count": 29}, "any": {"_count": 2}, "rich": {"_count": 1}, "expelled": {"_count": 1}, "across": {"_count": 1}, "off": {"_count": 2}, "you": {"_count": 22}, "all": {"_count": 6}, "Lucius": {"_count": 1}, "trolleys": {"_count": 1}, "one": {"_count": 4}, "near": {"_count": 5}, "upstairs": {"_count": 2}, "outside": {"_count": 3}, "this": {"_count": 4}, "help": {"_count": 1}, "mixed": {"_count": 1}, "my": {"_count": 4}, "loose": {"_count": 1}, "undressed": {"_count": 1}, "her": {"_count": 8}, "Aunt": {"_count": 1}, "involved": {"_count": 1}, "used": {"_count": 1}, "your": {"_count": 2}, "myself": {"_count": 2}, "some": {"_count": 6}, "Harrys": {"_count": 1}, "hold": {"_count": 7}, "there": {"_count": 12}, "angry": {"_count": 1}, "at": {"_count": 6}, "Hagrid": {"_count": 3}, "their": {"_count": 5}, "hurt": {"_count": 2}, "Harry": {"_count": 2}, "slightly": {"_count": 1}, "nearer": {"_count": 1}, "dressed": {"_count": 2}, "prime": {"_count": 1}, "here": {"_count": 1}, "seats": {"_count": 1}, "dirtier": {"_count": 1}, "flying": {"_count": 1}, "something": {"_count": 1}, "yours": {"_count": 1}, "over": {"_count": 2}, "an": {"_count": 7}, "shot": {"_count": 1}, "Krums": {"_count": 1}, "Fleur": {"_count": 1}, "Quidditch": {"_count": 1}, "what": {"_count": 1}, "down": {"_count": 1}, "ready": {"_count": 2}, "closer": {"_count": 2}, "more": {"_count": 1}, "gold": {"_count": 1}, "Dumbledore": {"_count": 1}, "Alastor": {"_count": 1}, "going": {"_count": 5}, "under": {"_count": 2}, "stuff": {"_count": 1}, "premises": {"_count": 1}, "power": {"_count": 1}, "Crabbe": {"_count": 1}, "matey": {"_count": 1}, "people": {"_count": 1}, "together": {"_count": 1}, "Ron": {"_count": 1}, "home": {"_count": 3}, "eggs": {"_count": 1}, "between": {"_count": 1}, "worse": {"_count": 1}, "": {"_count": 1}, "herself": {"_count": 1}, "lucky": {"_count": 2}, "yourself": {"_count": 1}, "Filch": {"_count": 1}, "whatever": {"_count": 1}, "me": {"_count": 3}, "Sturgis": {"_count": 1}, "Neville": {"_count": 1}, "Tonks": {"_count": 1}, "detention": {"_count": 2}, "wrong": {"_count": 1}, "straight": {"_count": 1}, "seriously": {"_count": 1}, "Borgin": {"_count": 1}, "ten": {"_count": 1}, "revenge": {"_count": 1}, "too": {"_count": 2}, "free": {"_count": 1}, "venom": {"_count": 1}, "our": {"_count": 1}, "water": {"_count": 1}, "within": {"_count": 1}, "married": {"_count": 1}, "run": {"_count": 1}, "information": {"_count": 1}, "Bernie": {"_count": 1}, "dark": {"_count": 1}, "sidetracked": {"_count": 1}, "these": {"_count": 1}, "as": {"_count": 1}, "organized": {"_count": 1}, "better": {"_count": 1}}, "see": {"_count": 597, "that": {"_count": 29}, "anything": {"_count": 6}, "huge": {"_count": 1}, "if": {"_count": 22}, "and": {"_count": 2}, "more": {"_count": 2}, "what": {"_count": 44}, "fabulous": {"_count": 1}, "you": {"_count": 47}, "by": {"_count": 1}, "them": {"_count": 19}, "didnt": {"_count": 1}, "over": {"_count": 2}, "whether": {"_count": 27}, "": {"_count": 13}, "his": {"_count": 4}, "your": {"_count": 3}, "all": {"_count": 1}, "my": {"_count": 1}, "something": {"_count": 6}, "through": {"_count": 3}, "a": {"_count": 22}, "Slytherin": {"_count": 2}, "him": {"_count": 32}, "Professor": {"_count": 15}, "where": {"_count": 12}, "Hagrid": {"_count": 9}, "why": {"_count": 3}, "the": {"_count": 58}, "Harry": {"_count": 10}, "how": {"_count": 11}, "Draco": {"_count": 1}, "Hermione": {"_count": 7}, "who": {"_count": 13}, "some": {"_count": 2}, "Justin": {"_count": 1}, "Goyle": {"_count": 1}, "me": {"_count": 14}, "Malfoy": {"_count": 2}, "past": {"_count": 3}, "one": {"_count": 2}, "death": {"_count": 1}, "Hedwig": {"_count": 1}, "Professors": {"_count": 1}, "us": {"_count": 2}, "Fred": {"_count": 5}, "Black": {"_count": 1}, "every": {"_count": 1}, "it": {"_count": 14}, "her": {"_count": 13}, "distinctly": {"_count": 1}, "Percys": {"_count": 1}, "very": {"_count": 1}, "out": {"_count": 1}, "whos": {"_count": 1}, "from": {"_count": 1}, "Madam": {"_count": 1}, "had": {"_count": 3}, "Peeves": {"_count": 1}, "Sirius": {"_count": 3}, "inside": {"_count": 2}, "Dumbledore": {"_count": 5}, "vare": {"_count": 1}, "further": {"_count": 1}, "would": {"_count": 1}, "Harrys": {"_count": 2}, "as": {"_count": 2}, "he": {"_count": 1}, "beyond": {"_count": 1}, "Ron": {"_count": 4}, "someone": {"_count": 2}, "Siriuss": {"_count": 1}, "such": {"_count": 1}, "Neville": {"_count": 1}, "in": {"_count": 1}, "their": {"_count": 5}, "McGonagall": {"_count": 1}, "just": {"_count": 1}, "sparks": {"_count": 1}, "Hagrids": {"_count": 1}, "Arthur": {"_count": 1}, "Broderick": {"_count": 1}, "Voldemort": {"_count": 2}, "both": {"_count": 1}, "patches": {"_count": 1}, "looked": {"_count": 1}, "moving": {"_count": 1}, "an": {"_count": 2}, "Phineas": {"_count": 1}, "or": {"_count": 2}, "Fudge": {"_count": 1}, "Buckbeak": {"_count": 1}, "Slughorn": {"_count": 2}, "im": {"_count": 1}, "Mrs": {"_count": 1}, "but": {"_count": 2}, "Mr": {"_count": 1}, "youre": {"_count": 1}, "Morfin": {"_count": 1}, "Merope": {"_count": 1}, "Riddle": {"_count": 1}, "this": {"_count": 1}, "Susan": {"_count": 1}, "Zacharias": {"_count": 1}, "much": {"_count": 1}, "into": {"_count": 2}, "Katie": {"_count": 1}, "disappointment": {"_count": 1}, "Dean": {"_count": 1}, "good": {"_count": 1}, "whod": {"_count": 1}, "Auntie": {"_count": 1}, "Kreacher": {"_count": 1}, "is": {"_count": 1}, "webs": {"_count": 1}, "Ginny": {"_count": 1}, "after": {"_count": 1}, "himself": {"_count": 1}, "beneath": {"_count": 1}, "fresh": {"_count": 1}, "each": {"_count": 1}, "Lovegood": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 1}, "our": {"_count": 1}, "Bogrod": {"_count": 1}, "enormous": {"_count": 1}, "Severus": {"_count": 1}, "Ariana": {"_count": 1}}, "the": {"_count": 2296, "window": {"_count": 33}, "bakers": {"_count": 1}, "ground": {"_count": 55}, "spot": {"_count": 15}, "bedroom": {"_count": 4}, "cat": {"_count": 1}, "rumors": {"_count": 1}, "man": {"_count": 6}, "front": {"_count": 32}, "other": {"_count": 35}, "zoo": {"_count": 2}, "reptile": {"_count": 1}, "ceiling": {"_count": 12}, "glass": {"_count": 4}, "kitchen": {"_count": 13}, "library": {"_count": 22}, "post": {"_count": 2}, "brokendown": {"_count": 1}, "lumpy": {"_count": 2}, "sofa": {"_count": 5}, "owl": {"_count": 1}, "door": {"_count": 69}, "floor": {"_count": 73}, "station": {"_count": 4}, "record": {"_count": 1}, "old": {"_count": 3}, "right": {"_count": 24}, "boy": {"_count": 6}, "walls": {"_count": 1}, "train": {"_count": 1}, "Dursleys": {"_count": 22}, "wall": {"_count": 7}, "living": {"_count": 3}, "hospital": {"_count": 38}, "large": {"_count": 4}, "plump": {"_count": 1}, "twins": {"_count": 3}, "compartment": {"_count": 4}, "pile": {"_count": 1}, "Dark": {"_count": 19}, "school": {"_count": 27}, "cliff": {"_count": 3}, "upper": {"_count": 5}, "heavens": {"_count": 3}, "stool": {"_count": 3}, "whole": {"_count": 5}, "first": {"_count": 6}, "Bloody": {"_count": 1}, "tall": {"_count": 1}, "outofbounds": {"_count": 1}, "greenhouses": {"_count": 2}, "moment": {"_count": 3}, "Great": {"_count": 26}, "castle": {"_count": 68}, "forbidden": {"_count": 1}, "left": {"_count": 23}, "rest": {"_count": 8}, "Muggles": {"_count": 2}, "day": {"_count": 1}, "portrait": {"_count": 8}, "third": {"_count": 7}, "others": {"_count": 16}, "end": {"_count": 15}, "dormitory": {"_count": 15}, "Quidditch": {"_count": 15}, "delicious": {"_count": 1}, "dormitories": {"_count": 4}, "staffroom": {"_count": 6}, "Slytherin": {"_count": 6}, "stand": {"_count": 1}, "Restricted": {"_count": 1}, "next": {"_count": 7}, "note": {"_count": 1}, "touch": {"_count": 1}, "mirror": {"_count": 8}, "fire": {"_count": 10}, "Gryffindor": {"_count": 20}, "girls": {"_count": 6}, "match": {"_count": 7}, "breaking": {"_count": 1}, "broomshed": {"_count": 1}, "hut": {"_count": 1}, "edge": {"_count": 9}, "table": {"_count": 9}, "top": {"_count": 15}, "entrance": {"_count": 11}, "very": {"_count": 12}, "lake": {"_count": 5}, "bowl": {"_count": 2}, "winds": {"_count": 4}, "common": {"_count": 27}, "Stone": {"_count": 3}, "owlery": {"_count": 3}, "gloom": {"_count": 1}, "light": {"_count": 8}, "bottles": {"_count": 1}, "one": {"_count": 2}, "well": {"_count": 1}, "kitchens": {"_count": 5}, "feast": {"_count": 8}, "endofyear": {"_count": 1}, "fleet": {"_count": 1}, "Muggle": {"_count": 4}, "Forbidden": {"_count": 2}, "dining": {"_count": 1}, "lounge": {"_count": 1}, "catflap": {"_count": 1}, "open": {"_count": 2}, "east": {"_count": 1}, "sink": {"_count": 1}, "gnomeholes": {"_count": 1}, "roots": {"_count": 2}, "holder": {"_count": 2}, "Weasleys": {"_count": 9}, "Leaky": {"_count": 5}, "bookshop": {"_count": 1}, "back": {"_count": 12}, "name": {"_count": 3}, "fireside": {"_count": 4}, "Burrow": {"_count": 10}, "Grangers": {"_count": 1}, "car": {"_count": 3}, "cold": {"_count": 1}, "red": {"_count": 2}, "crowd": {"_count": 5}, "wise": {"_count": 1}, "stands": {"_count": 2}, "need": {"_count": 1}, "School": {"_count": 3}, "size": {"_count": 5}, "skin": {"_count": 3}, "dark": {"_count": 4}, "desk": {"_count": 6}, "Kwikspell": {"_count": 1}, "deathday": {"_count": 2}, "packed": {"_count": 1}, "dreadful": {"_count": 1}, "legend": {"_count": 1}, "message": {"_count": 1}, "stalls": {"_count": 1}, "Chamber": {"_count": 6}, "author": {"_count": 1}, "eradication": {"_count": 1}, "anxious": {"_count": 1}, "list": {"_count": 3}, "lowly": {"_count": 1}, "bottom": {"_count": 10}, "empty": {"_count": 6}, "still": {"_count": 1}, "potion": {"_count": 2}, "supermarket": {"_count": 1}, "long": {"_count": 3}, "dungeons": {"_count": 8}, "teachers": {"_count": 3}, "annoyance": {"_count": 1}, "people": {"_count": 1}, "gargoyle": {"_count": 2}, "present": {"_count": 5}, "bed": {"_count": 8}, "House": {"_count": 1}, "cabin": {"_count": 2}, "forest": {"_count": 6}, "worst": {"_count": 4}, "scene": {"_count": 3}, "rumbling": {"_count": 1}, "rescue": {"_count": 1}, "chill": {"_count": 1}, "silly": {"_count": 1}, "vaulted": {"_count": 1}, "hilt": {"_count": 2}, "diary": {"_count": 2}, "mouth": {"_count": 1}, "infirmary": {"_count": 1}, "fact": {"_count": 16}, "book": {"_count": 5}, "bathroom": {"_count": 7}, "neighbors": {"_count": 2}, "Weasley": {"_count": 2}, "remaining": {"_count": 1}, "fez": {"_count": 1}, "television": {"_count": 1}, "story": {"_count": 2}, "frantic": {"_count": 1}, "night": {"_count": 6}, "Knight": {"_count": 1}, "scar": {"_count": 3}, "candlelight": {"_count": 1}, "bus": {"_count": 1}, "broom": {"_count": 2}, "Apothecary": {"_count": 1}, "Magical": {"_count": 2}, "cage": {"_count": 1}, "wire": {"_count": 1}, "glossy": {"_count": 1}, "mayor": {"_count": 1}, "brandnew": {"_count": 1}, "bar": {"_count": 4}, "parlor": {"_count": 1}, "muffled": {"_count": 1}, "head": {"_count": 5}, "driver": {"_count": 1}, "tips": {"_count": 4}, "grounds": {"_count": 5}, "prefects": {"_count": 3}, "hidden": {"_count": 2}, "schedule": {"_count": 1}, "staff": {"_count": 3}, "subjects": {"_count": 2}, "picture": {"_count": 5}, "crystal": {"_count": 1}, "pink": {"_count": 1}, "resonances": {"_count": 1}, "dogs": {"_count": 2}, "fence": {"_count": 4}, "hippogriff": {"_count": 2}, "crowded": {"_count": 2}, "Ministry": {"_count": 38}, "dementors": {"_count": 11}, "surface": {"_count": 6}, "classroom": {"_count": 1}, "boys": {"_count": 13}, "place": {"_count": 12}, "hall": {"_count": 7}, "edges": {"_count": 1}, "Fat": {"_count": 5}, "stadium": {"_count": 5}, "broomhandle": {"_count": 1}, "noise": {"_count": 1}, "foot": {"_count": 9}, "Shrieking": {"_count": 1}, "fireplace": {"_count": 6}, "Potters": {"_count": 3}, "Committee": {"_count": 2}, "dream": {"_count": 1}, "perfectly": {"_count": 1}, "Firebolt": {"_count": 2}, "wizard": {"_count": 7}, "chambers": {"_count": 1}, "tail": {"_count": 2}, "tower": {"_count": 3}, "locker": {"_count": 1}, "Grim": {"_count": 1}, "commentary": {"_count": 1}, "doorways": {"_count": 1}, "oneeyed": {"_count": 2}, "hearing": {"_count": 1}, "threatening": {"_count": 1}, "headmaster": {"_count": 4}, "parchment": {"_count": 3}, "ball": {"_count": 15}, "trapdoor": {"_count": 1}, "field": {"_count": 3}, "appeal": {"_count": 1}, "execution": {"_count": 1}, "seventh": {"_count": 6}, "test": {"_count": 1}, "west": {"_count": 1}, "rumble": {"_count": 1}, "tree": {"_count": 5}, "trunk": {"_count": 3}, "four": {"_count": 5}, "fourposter": {"_count": 1}, "Defense": {"_count": 1}, "ashen": {"_count": 1}, "mainland": {"_count": 1}, "knot": {"_count": 1}, "earth": {"_count": 2}, "idea": {"_count": 2}, "cupboard": {"_count": 1}, "person": {"_count": 1}, "opposite": {"_count": 2}, "gates": {"_count": 3}, "truth": {"_count": 2}, "Owl": {"_count": 1}, "suddenly": {"_count": 1}, "big": {"_count": 1}, "house": {"_count": 6}, "police": {"_count": 1}, "sliver": {"_count": 1}, "silence": {"_count": 2}, "fridge": {"_count": 1}, "occasion": {"_count": 1}, "letter": {"_count": 1}, "tiny": {"_count": 1}, "enemy": {"_count": 1}, "last": {"_count": 4}, "Floo": {"_count": 4}, "stove": {"_count": 2}, "Cup": {"_count": 1}, "World": {"_count": 1}, "way": {"_count": 3}, "lightning": {"_count": 1}, "boot": {"_count": 1}, "kilted": {"_count": 1}, "Diggorys": {"_count": 1}, "campsite": {"_count": 3}, "Puddlemere": {"_count": 1}, "balls": {"_count": 1}, "boil": {"_count": 1}, "Top": {"_count": 3}, "inevitable": {"_count": 1}, "tents": {"_count": 1}, "wizards": {"_count": 2}, "final": {"_count": 1}, "racket": {"_count": 1}, "verbal": {"_count": 1}, "hooded": {"_count": 1}, "sounds": {"_count": 2}, "elf": {"_count": 3}, "tent": {"_count": 7}, "home": {"_count": 1}, "hooting": {"_count": 1}, "family": {"_count": 1}, "bedraggled": {"_count": 1}, "threelegged": {"_count": 1}, "fires": {"_count": 1}, "Hogwarts": {"_count": 1}, "storm": {"_count": 1}, "troubled": {"_count": 1}, "conclusion": {"_count": 3}, "aid": {"_count": 2}, "offenders": {"_count": 1}, "class": {"_count": 3}, "unlucky": {"_count": 1}, "Owlery": {"_count": 10}, "deserted": {"_count": 1}, "displeasure": {"_count": 1}, "job": {"_count": 5}, "Ravenclaw": {"_count": 1}, "brim": {"_count": 4}, "doors": {"_count": 1}, "ship": {"_count": 1}, "skrewts": {"_count": 1}, "ones": {"_count": 1}, "gentle": {"_count": 1}, "chest": {"_count": 2}, "demanding": {"_count": 1}, "staircase": {"_count": 2}, "country": {"_count": 2}, "leg": {"_count": 3}, "parents": {"_count": 1}, "champions": {"_count": 2}, "barn": {"_count": 2}, "Beauxbatons": {"_count": 1}, "Horntail": {"_count": 1}, "several": {"_count": 1}, "ancient": {"_count": 1}, "dragons": {"_count": 2}, "order": {"_count": 1}, "enclosure": {"_count": 1}, "excitable": {"_count": 1}, "painting": {"_count": 3}, "nearest": {"_count": 3}, "elves": {"_count": 1}, "WWN": {"_count": 1}, "banisters": {"_count": 1}, "ghost": {"_count": 1}, "dungeon": {"_count": 4}, "iced": {"_count": 1}, "addressee": {"_count": 1}, "loop": {"_count": 1}, "music": {"_count": 1}, "public": {"_count": 2}, "Durmstrang": {"_count": 1}, "point": {"_count": 7}, "oafs": {"_count": 1}, "Three": {"_count": 5}, "egg": {"_count": 1}, "goblins": {"_count": 3}, "cloak": {"_count": 1}, "side": {"_count": 4}, "Yule": {"_count": 4}, "map": {"_count": 2}, "Marauders": {"_count": 1}, "potential": {"_count": 1}, "most": {"_count": 1}, "pages": {"_count": 1}, "bursting": {"_count": 1}, "judges": {"_count": 1}, "shadows": {"_count": 2}, "statue": {"_count": 4}, "song": {"_count": 1}, "depths": {"_count": 1}, "water": {"_count": 4}, "bank": {"_count": 1}, "bewitched": {"_count": 1}, "bell": {"_count": 1}, "trouble": {"_count": 1}, "level": {"_count": 2}, "second": {"_count": 3}, "stile": {"_count": 1}, "surrounding": {"_count": 1}, "mountain": {"_count": 1}, "carriage": {"_count": 1}, "Daily": {"_count": 2}, "student": {"_count": 1}, "cave": {"_count": 2}, "Ive": {"_count": 1}, "boundaries": {"_count": 1}, "snake": {"_count": 2}, "chair": {"_count": 4}, "activities": {"_count": 1}, "vote": {"_count": 1}, "righthand": {"_count": 1}, "Cruciatus": {"_count": 1}, "basin": {"_count": 2}, "Pensieve": {"_count": 2}, "seething": {"_count": 1}, "Death": {"_count": 6}, "vast": {"_count": 1}, "grass": {"_count": 1}, "center": {"_count": 1}, "Stunned": {"_count": 1}, "hedge": {"_count": 1}, "cup": {"_count": 3}, "headstone": {"_count": 3}, "rim": {"_count": 2}, "cauldron": {"_count": 2}, "brand": {"_count": 1}, "houses": {"_count": 1}, "world": {"_count": 1}, "two": {"_count": 2}, "gravestone": {"_count": 1}, "Portkey": {"_count": 2}, "Longbottom": {"_count": 1}, "oak": {"_count": 2}, "office": {"_count": 1}, "pains": {"_count": 1}, "contrary": {"_count": 4}, "giants": {"_count": 3}, "lips": {"_count": 1}, "decor": {"_count": 1}, "news": {"_count": 4}, "stupid": {"_count": 1}, "pain": {"_count": 2}, "prizegiving": {"_count": 1}, "toaster": {"_count": 1}, "magical": {"_count": 1}, "dishwasher": {"_count": 1}, "gang": {"_count": 1}, "Darkest": {"_count": 1}, "Order": {"_count": 5}, "Minister": {"_count": 10}, "room": {"_count": 4}, "din": {"_count": 2}, "attack": {"_count": 2}, "Middle": {"_count": 1}, "tapestry": {"_count": 1}, "Malfoys": {"_count": 1}, "facts": {"_count": 1}, "pops": {"_count": 1}, "presence": {"_count": 3}, "ninth": {"_count": 2}, "courtroom": {"_count": 1}, "fountain": {"_count": 1}, "Herbology": {"_count": 1}, "wardrobe": {"_count": 1}, "dead": {"_count": 1}, "article": {"_count": 1}, "widest": {"_count": 1}, "moon": {"_count": 1}, "magazine": {"_count": 1}, "coach": {"_count": 1}, "Wizarding": {"_count": 4}, "noble": {"_count": 1}, "weighty": {"_count": 1}, "new": {"_count": 1}, "wider": {"_count": 1}, "team": {"_count": 3}, "fourth": {"_count": 1}, "sacred": {"_count": 1}, "introduction": {"_count": 1}, "chairs": {"_count": 1}, "matter": {"_count": 1}, "questions": {"_count": 1}, "windows": {"_count": 1}, "owls": {"_count": 1}, "sugar": {"_count": 1}, "pitch": {"_count": 6}, "far": {"_count": 2}, "goalposts": {"_count": 1}, "air": {"_count": 1}, "Seekers": {"_count": 1}, "kind": {"_count": 1}, "misguided": {"_count": 1}, "teaching": {"_count": 1}, "task": {"_count": 3}, "date": {"_count": 1}, "mouse": {"_count": 1}, "diagram": {"_count": 1}, "weekend": {"_count": 1}, "farthest": {"_count": 1}, "group": {"_count": 2}, "counter": {"_count": 1}, "notice": {"_count": 1}, "curlyhaired": {"_count": 1}, "Hogs": {"_count": 6}, "highbacked": {"_count": 1}, "downpour": {"_count": 1}, "middle": {"_count": 2}, "basement": {"_count": 3}, "goblin": {"_count": 1}, "interest": {"_count": 1}, "many": {"_count": 2}, "fourteen": {"_count": 1}, "usual": {"_count": 2}, "changing": {"_count": 2}, "prematch": {"_count": 1}, "students": {"_count": 1}, "enormous": {"_count": 1}, "kettle": {"_count": 2}, "Gurg": {"_count": 1}, "abandoned": {"_count": 1}, "mug": {"_count": 1}, "Obliteration": {"_count": 1}, "knees": {"_count": 1}, "approaching": {"_count": 1}, "grave": {"_count": 1}, "D": {"_count": 1}, "bird": {"_count": 1}, "clock": {"_count": 1}, "queue": {"_count": 1}, "witch": {"_count": 1}, "fore": {"_count": 1}, "werewolf": {"_count": 1}, "furryfaced": {"_count": 1}, "mumbling": {"_count": 1}, "Yes": {"_count": 1}, "plain": {"_count": 1}, "courtrooms": {"_count": 3}, "Department": {"_count": 13}, "bloke": {"_count": 1}, "only": {"_count": 4}, "recapture": {"_count": 1}, "clasp": {"_count": 1}, "same": {"_count": 4}, "busy": {"_count": 1}, "startled": {"_count": 2}, "standard": {"_count": 1}, "palomino": {"_count": 1}, "wide": {"_count": 1}, "headmasters": {"_count": 4}, "headmistress": {"_count": 1}, "waiting": {"_count": 1}, "appreciative": {"_count": 1}, "corner": {"_count": 2}, "packaging": {"_count": 1}, "body": {"_count": 3}, "fifth": {"_count": 1}, "position": {"_count": 1}, "Formation": {"_count": 1}, "smashing": {"_count": 1}, "weapon": {"_count": 1}, "lair": {"_count": 1}, "battered": {"_count": 1}, "lifts": {"_count": 2}, "lowest": {"_count": 1}, "brilliant": {"_count": 1}, "shelf": {"_count": 1}, "Aurors": {"_count": 1}, "Hall": {"_count": 1}, "mans": {"_count": 2}, "step": {"_count": 1}, "dais": {"_count": 1}, "shield": {"_count": 1}, "possibility": {"_count": 2}, "perch": {"_count": 1}, "gaping": {"_count": 1}, "years": {"_count": 1}, "dangers": {"_count": 1}, "challenge": {"_count": 1}, "subject": {"_count": 1}, "black": {"_count": 1}, "wand": {"_count": 5}, "keeper": {"_count": 1}, "return": {"_count": 1}, "endofterm": {"_count": 1}, "Prime": {"_count": 3}, "sisters": {"_count": 1}, "recent": {"_count": 1}, "small": {"_count": 1}, "service": {"_count": 1}, "best": {"_count": 1}, "protection": {"_count": 2}, "eldest": {"_count": 1}, "Blacks": {"_count": 1}, "Potter": {"_count": 1}, "sitting": {"_count": 3}, "crooked": {"_count": 1}, "prophecy": {"_count": 1}, "party": {"_count": 5}, "ends": {"_count": 1}, "handle": {"_count": 1}, "voices": {"_count": 1}, "sensational": {"_count": 1}, "addition": {"_count": 1}, "steep": {"_count": 1}, "village": {"_count": 6}, "cottage": {"_count": 2}, "copse": {"_count": 1}, "girl": {"_count": 1}, "HalfBlood": {"_count": 1}, "goal": {"_count": 2}, "roof": {"_count": 2}, "flamboyantly": {"_count": 1}, "poor": {"_count": 1}, "countryside": {"_count": 1}, "seaside": {"_count": 1}, "moody": {"_count": 1}, "correct": {"_count": 1}, "verge": {"_count": 1}, "partyl": {"_count": 1}, "keyhole": {"_count": 1}, "sprouts": {"_count": 1}, "sprout": {"_count": 1}, "boat": {"_count": 2}, "gnome": {"_count": 1}, "spare": {"_count": 1}, "shameful": {"_count": 1}, "stone": {"_count": 1}, "murder": {"_count": 1}, "Gaunt": {"_count": 1}, "crime": {"_count": 1}, "good": {"_count": 1}, "chapter": {"_count": 1}, "Golpalott": {"_count": 1}, "memory": {"_count": 1}, "toast": {"_count": 1}, "ward": {"_count": 1}, "marble": {"_count": 3}, "much": {"_count": 1}, "Dumbledore": {"_count": 1}, "cabinet": {"_count": 2}, "seat": {"_count": 1}, "toes": {"_count": 1}, "not": {"_count": 1}, "Room": {"_count": 7}, "nerves": {"_count": 1}, "rear": {"_count": 1}, "burial": {"_count": 1}, "Baron": {"_count": 1}, "secret": {"_count": 1}, "death": {"_count": 3}, "forefront": {"_count": 1}, "pushing": {"_count": 1}, "solid": {"_count": 1}, "smooth": {"_count": 1}, "waters": {"_count": 1}, "spiral": {"_count": 2}, "accompaniment": {"_count": 1}, "ramparts": {"_count": 1}, "force": {"_count": 1}, "sound": {"_count": 1}, "lack": {"_count": 1}, "strangest": {"_count": 1}, "source": {"_count": 1}, "upsidedown": {"_count": 1}, "deepest": {"_count": 1}, "experiments": {"_count": 1}, "store": {"_count": 1}, "Wizengamot": {"_count": 2}, "relationship": {"_count": 1}, "rucksack": {"_count": 1}, "danger": {"_count": 2}, "safe": {"_count": 1}, "sidecar": {"_count": 1}, "bike": {"_count": 2}, "sky": {"_count": 1}, "plan": {"_count": 2}, "pair": {"_count": 1}, "sideboard": {"_count": 1}, "coop": {"_count": 1}, "books": {"_count": 1}, "darkness": {"_count": 1}, "object": {"_count": 1}, "sickbed": {"_count": 1}, "bridesmaids": {"_count": 1}, "Chudley": {"_count": 1}, "garden": {"_count": 1}, "will": {"_count": 1}, "wedding": {"_count": 2}, "Snitch": {"_count": 4}, "great": {"_count": 2}, "marquee": {"_count": 2}, "gnomes": {"_count": 1}, "dance": {"_count": 1}, "waltzlike": {"_count": 1}, "extreme": {"_count": 1}, "Dumbledores": {"_count": 1}, "drawing": {"_count": 2}, "desperate": {"_count": 1}, "islands": {"_count": 1}, "underground": {"_count": 2}, "island": {"_count": 1}, "stark": {"_count": 1}, "horror": {"_count": 1}, "bridge": {"_count": 1}, "locket": {"_count": 1}, "label": {"_count": 1}, "names": {"_count": 1}, "proceedings": {"_count": 1}, "court": {"_count": 1}, "Dementors": {"_count": 1}, "single": {"_count": 1}, "raised": {"_count": 1}, "questionnaire": {"_count": 1}, "Selwyns": {"_count": 1}, "Muggleborns": {"_count": 1}, "punched": {"_count": 1}, "Cattermoles": {"_count": 1}, "blood": {"_count": 1}, "limit": {"_count": 1}, "outskirts": {"_count": 1}, "shadowy": {"_count": 1}, "narrow": {"_count": 1}, "armpit": {"_count": 1}, "pounding": {"_count": 1}, "comfortable": {"_count": 1}, "weird": {"_count": 1}, "graveyard": {"_count": 1}, "church": {"_count": 1}, "mother": {"_count": 1}, "caption": {"_count": 1}, "International": {"_count": 2}, "oppression": {"_count": 1}, "twisted": {"_count": 1}, "sword": {"_count": 3}, "pools": {"_count": 1}, "pool": {"_count": 1}, "radio": {"_count": 1}, "full": {"_count": 1}, "machine": {"_count": 1}, "orange": {"_count": 1}, "tea": {"_count": 1}, "sign": {"_count": 1}, "oldest": {"_count": 1}, "mortal": {"_count": 1}, "Hallows": {"_count": 1}, "Lovegoods": {"_count": 1}, "coast": {"_count": 1}, "veiled": {"_count": 1}, "outside": {"_count": 1}, "diaphragm": {"_count": 1}, "taut": {"_count": 1}, "topmost": {"_count": 1}, "prisoners": {"_count": 1}, "cellar": {"_count": 3}, "humans": {"_count": 1}, "essentials": {"_count": 1}, "beauty": {"_count": 1}, "murmuring": {"_count": 1}, "heart": {"_count": 1}, "Lestranges": {"_count": 1}, "objects": {"_count": 2}, "rush": {"_count": 1}, "Snatchers": {"_count": 1}, "sea": {"_count": 1}, "little": {"_count": 1}, "malevolent": {"_count": 1}, "few": {"_count": 1}, "wood": {"_count": 1}, "jagged": {"_count": 1}, "metallic": {"_count": 1}, "Gaunts": {"_count": 1}, "footsteps": {"_count": 1}, "stars": {"_count": 1}, "Carrows": {"_count": 2}, "breast": {"_count": 1}, "skull": {"_count": 1}, "angry": {"_count": 1}, "tunnel": {"_count": 2}, "evacuation": {"_count": 1}, "three": {"_count": 2}, "shattered": {"_count": 1}, "stretch": {"_count": 1}, "opening": {"_count": 1}, "protracted": {"_count": 1}, "mercy": {"_count": 1}, "watchers": {"_count": 1}, "original": {"_count": 1}, "bereaved": {"_count": 1}}, "concentrate": {"_count": 21, "on": {"_count": 9}, "when": {"_count": 1}, "": {"_count": 4}, "with": {"_count": 1}, "in": {"_count": 1}, "your": {"_count": 1}, "even": {"_count": 1}, "and": {"_count": 1}, "hard": {"_count": 2}}, "buy": {"_count": 36, "himself": {"_count": 2}, "his": {"_count": 3}, "parchment": {"_count": 1}, "as": {"_count": 1}, "my": {"_count": 3}, "some": {"_count": 2}, "your": {"_count": 2}, "me": {"_count": 3}, "ink": {"_count": 1}, "their": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 4}, "drinks": {"_count": 1}, "another": {"_count": 1}, "Dobby": {"_count": 1}, "with": {"_count": 1}, "cat": {"_count": 1}, "too": {"_count": 1}, "them": {"_count": 1}, "that": {"_count": 1}, "Dark": {"_count": 1}, "books": {"_count": 1}, "our": {"_count": 1}}, "them": {"_count": 110, "but": {"_count": 1}, "pointing": {"_count": 1}, "": {"_count": 42}, "that": {"_count": 4}, "either": {"_count": 1}, "Hagrid": {"_count": 1}, "thought": {"_count": 1}, "and": {"_count": 10}, "as": {"_count": 1}, "said": {"_count": 2}, "bent": {"_count": 1}, "whispered": {"_count": 1}, "when": {"_count": 1}, "I": {"_count": 1}, "leapt": {"_count": 1}, "sat": {"_count": 1}, "teeter": {"_count": 1}, "so": {"_count": 1}, "all": {"_count": 2}, "too": {"_count": 1}, "doing": {"_count": 1}, "Ron": {"_count": 2}, "yawning": {"_count": 1}, "first": {"_count": 1}, "to": {"_count": 1}, "something": {"_count": 1}, "looking": {"_count": 2}, "whats": {"_count": 1}, "diagnosing": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 2}, "truthfully": {"_count": 1}, "a": {"_count": 2}, "by": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}, "about": {"_count": 1}, "on": {"_count": 1}, "just": {"_count": 1}, "these": {"_count": 1}, "over": {"_count": 2}, "there": {"_count": 1}, "again": {"_count": 1}, "pretend": {"_count": 1}, "if": {"_count": 1}, "Sorry": {"_count": 1}, "yet": {"_count": 1}, "now": {"_count": 1}, "it": {"_count": 1}, "And": {"_count": 1}}, "his": {"_count": 653, "office": {"_count": 9}, "car": {"_count": 1}, "wife": {"_count": 1}, "boots": {"_count": 1}, "aunt": {"_count": 3}, "great": {"_count": 3}, "horror": {"_count": 6}, "mouth": {"_count": 12}, "feet": {"_count": 195}, "forehead": {"_count": 6}, "bed": {"_count": 6}, "room": {"_count": 3}, "relief": {"_count": 5}, "astonishment": {"_count": 3}, "doom": {"_count": 1}, "head": {"_count": 6}, "broomstick": {"_count": 4}, "legs": {"_count": 2}, "broom": {"_count": 1}, "own": {"_count": 11}, "father": {"_count": 1}, "side": {"_count": 5}, "left": {"_count": 13}, "senses": {"_count": 7}, "knees": {"_count": 23}, "front": {"_count": 2}, "hind": {"_count": 1}, "sides": {"_count": 3}, "lips": {"_count": 11}, "surprise": {"_count": 5}, "followers": {"_count": 2}, "pale": {"_count": 1}, "toast": {"_count": 1}, "bedroom": {"_count": 5}, "cage": {"_count": 1}, "nose": {"_count": 5}, "plate": {"_count": 3}, "fat": {"_count": 2}, "sweater": {"_count": 1}, "eyes": {"_count": 11}, "son": {"_count": 2}, "hiding": {"_count": 1}, "face": {"_count": 12}, "right": {"_count": 11}, "desk": {"_count": 14}, "": {"_count": 1}, "hands": {"_count": 4}, "throat": {"_count": 4}, "fingertips": {"_count": 1}, "dormitory": {"_count": 2}, "delight": {"_count": 2}, "wand": {"_count": 4}, "houseelf": {"_count": 1}, "birthdays": {"_count": 1}, "present": {"_count": 1}, "chest": {"_count": 10}, "trunk": {"_count": 5}, "strange": {"_count": 1}, "whiskers": {"_count": 1}, "seat": {"_count": 5}, "gamekeeping": {"_count": 1}, "question": {"_count": 1}, "brooms": {"_count": 1}, "star": {"_count": 1}, "skin": {"_count": 4}, "figure": {"_count": 1}, "poor": {"_count": 1}, "mother": {"_count": 2}, "memory": {"_count": 2}, "pajamas": {"_count": 1}, "chilling": {"_count": 1}, "body": {"_count": 4}, "fire": {"_count": 1}, "bedside": {"_count": 1}, "boss": {"_count": 1}, "elbows": {"_count": 1}, "life": {"_count": 1}, "brain": {"_count": 2}, "scaly": {"_count": 1}, "battered": {"_count": 1}, "very": {"_count": 3}, "cottage": {"_count": 1}, "voice": {"_count": 2}, "friends": {"_count": 1}, "parents": {"_count": 3}, "seats": {"_count": 1}, "glasses": {"_count": 1}, "colleagues": {"_count": 1}, "arm": {"_count": 3}, "neck": {"_count": 1}, "lessthan": {"_count": 1}, "headboard": {"_count": 1}, "porridge": {"_count": 1}, "mismatched": {"_count": 1}, "predictions": {"_count": 1}, "hut": {"_count": 2}, "scrambled": {"_count": 1}, "students": {"_count": 1}, "or": {"_count": 1}, "decision": {"_count": 2}, "dragon": {"_count": 1}, "leg": {"_count": 3}, "goatee": {"_count": 1}, "dresser": {"_count": 1}, "fellow": {"_count": 1}, "determination": {"_count": 1}, "ginger": {"_count": 2}, "aid": {"_count": 2}, "temple": {"_count": 5}, "word": {"_count": 1}, "Muggle": {"_count": 1}, "master": {"_count": 1}, "service": {"_count": 1}, "house": {"_count": 2}, "favorite": {"_count": 1}, "disbelieving": {"_count": 1}, "surroundings": {"_count": 3}, "dark": {"_count": 1}, "return": {"_count": 1}, "pocket": {"_count": 1}, "ear": {"_count": 1}, "quill": {"_count": 1}, "neighbor": {"_count": 1}, "finger": {"_count": 1}, "level": {"_count": 1}, "shoulders": {"_count": 3}, "chin": {"_count": 2}, "more": {"_count": 1}, "lap": {"_count": 1}, "shoulder": {"_count": 1}, "potion": {"_count": 2}, "sausages": {"_count": 1}, "swollen": {"_count": 1}, "eye": {"_count": 1}, "signing": {"_count": 1}, "thoughts": {"_count": 2}, "death": {"_count": 1}, "baked": {"_count": 1}, "Death": {"_count": 2}, "first": {"_count": 1}, "hair": {"_count": 1}, "cauldron": {"_count": 3}, "twin": {"_count": 1}, "telescope": {"_count": 3}, "bow": {"_count": 1}, "amazement": {"_count": 1}, "cost": {"_count": 2}, "creed": {"_count": 1}, "delighted": {"_count": 1}, "fullest": {"_count": 1}, "her": {"_count": 1}, "vast": {"_count": 1}, "fork": {"_count": 1}, "comic": {"_count": 1}, "treacle": {"_count": 1}, "hand": {"_count": 1}, "conversation": {"_count": 1}, "friend": {"_count": 1}, "daughter": {"_count": 2}, "early": {"_count": 1}, "stupid": {"_count": 1}, "family": {"_count": 1}, "new": {"_count": 2}, "post": {"_count": 1}, "usual": {"_count": 1}, "throbbing": {"_count": 1}, "vastness": {"_count": 1}, "better": {"_count": 1}, "utter": {"_count": 1}, "advantage": {"_count": 1}, "Horcruxes": {"_count": 1}, "copy": {"_count": 1}, "full": {"_count": 1}, "spinedeep": {"_count": 1}, "mind": {"_count": 1}, "bloody": {"_count": 1}, "halfbrother": {"_count": 1}, "triumphs": {"_count": 1}, "misery": {"_count": 1}, "last": {"_count": 1}, "grave": {"_count": 1}, "case": {"_count": 1}, "hearts": {"_count": 1}, "problem": {"_count": 1}, "change": {"_count": 1}, "next": {"_count": 1}, "cupboard": {"_count": 1}, "warning": {"_count": 1}, "mate": {"_count": 1}, "touch": {"_count": 1}, "defense": {"_count": 1}, "forearm": {"_count": 2}, "midriff": {"_count": 1}, "nearstrangulation": {"_count": 1}, "heart": {"_count": 1}, "kids": {"_count": 1}, "men": {"_count": 1}, "goal": {"_count": 1}, "faded": {"_count": 1}, "senior": {"_count": 1}, "will": {"_count": 1}, "fellows": {"_count": 1}, "account": {"_count": 1}, "sister": {"_count": 1}, "stomach": {"_count": 1}}, "disturb": {"_count": 6, "him": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}, "anyone": {"_count": 1}, "you": {"_count": 2}}, "pull": {"_count": 55, "himself": {"_count": 7}, "it": {"_count": 7}, "his": {"_count": 4}, "her": {"_count": 4}, "the": {"_count": 7}, "free": {"_count": 1}, "Quirrell": {"_count": 1}, "with": {"_count": 1}, "Harry": {"_count": 2}, "up": {"_count": 2}, "some": {"_count": 1}, "out": {"_count": 2}, "open": {"_count": 1}, "aside": {"_count": 1}, "him": {"_count": 2}, "off": {"_count": 2}, "a": {"_count": 1}, "Potter": {"_count": 1}, "away": {"_count": 2}, "them": {"_count": 2}, "Hermione": {"_count": 1}, "herself": {"_count": 2}, "Luna": {"_count": 1}}, "mention": {"_count": 45, "anything": {"_count": 1}, "the": {"_count": 10}, "it": {"_count": 7}, "hungry": {"_count": 1}, "endless": {"_count": 1}, "that": {"_count": 2}, "sporadic": {"_count": 1}, "childish": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}, "how": {"_count": 1}, "very": {"_count": 1}, "annoyed": {"_count": 1}, "Grawp": {"_count": 1}, "Voldemorts": {"_count": 1}, "done": {"_count": 1}, "staring": {"_count": 1}, "what": {"_count": 1}, "much": {"_count": 1}, "his": {"_count": 3}, "them": {"_count": 1}, "a": {"_count": 1}, "smuggling": {"_count": 1}, "extremely": {"_count": 1}, "": {"_count": 1}, "desperately": {"_count": 1}}, "act": {"_count": 33, "normally": {"_count": 2}, "": {"_count": 5}, "like": {"_count": 3}, "if": {"_count": 1}, "before": {"_count": 1}, "and": {"_count": 3}, "their": {"_count": 1}, "as": {"_count": 8}, "rashly": {"_count": 1}, "the": {"_count": 1}, "breathed": {"_count": 1}, "so": {"_count": 1}, "until": {"_count": 1}, "stupid": {"_count": 1}, "fast": {"_count": 1}, "there": {"_count": 1}, "your": {"_count": 1}}, "bed": {"_count": 98, "he": {"_count": 2}, "": {"_count": 34}, "let": {"_count": 1}, "with": {"_count": 3}, "looking": {"_count": 1}, "all": {"_count": 1}, "exhausted": {"_count": 1}, "Neville": {"_count": 1}, "after": {"_count": 2}, "and": {"_count": 3}, "dear": {"_count": 1}, "before": {"_count": 3}, "said": {"_count": 7}, "at": {"_count": 1}, "unable": {"_count": 1}, "go": {"_count": 1}, "but": {"_count": 3}, "He": {"_count": 1}, "Harry": {"_count": 1}, "early": {"_count": 4}, "Hermione": {"_count": 1}, "as": {"_count": 2}, "put": {"_count": 1}, "Snape": {"_count": 2}, "no": {"_count": 1}, "too": {"_count": 2}, "where": {"_count": 1}, "she": {"_count": 1}, "some": {"_count": 1}, "right": {"_count": 1}, "on": {"_count": 1}, "shortly": {"_count": 1}, "an": {"_count": 1}, "so": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 1}, "comforting": {"_count": 1}, "by": {"_count": 1}, "cursing": {"_count": 1}, "yawned": {"_count": 1}, "whispered": {"_count": 1}, "until": {"_count": 1}, "that": {"_count": 1}}, "catch": {"_count": 74, "the": {"_count": 11}, "one": {"_count": 3}, "me": {"_count": 2}, "because": {"_count": 1}, "it": {"_count": 4}, "": {"_count": 4}, "his": {"_count": 2}, "him": {"_count": 5}, "what": {"_count": 1}, "you": {"_count": 3}, "up": {"_count": 11}, "Slytherins": {"_count": 1}, "a": {"_count": 2}, "Scabbers": {"_count": 1}, "Black": {"_count": 5}, "every": {"_count": 1}, "those": {"_count": 2}, "noises": {"_count": 1}, "Dumbledores": {"_count": 1}, "on": {"_count": 1}, "Fudges": {"_count": 1}, "them": {"_count": 1}, "Professor": {"_count": 1}, "hold": {"_count": 1}, "miscreants": {"_count": 1}, "Hermione": {"_count": 1}, "Rons": {"_count": 1}, "her": {"_count": 1}, "Malfoy": {"_count": 1}, "Snape": {"_count": 1}, "these": {"_count": 1}, "sight": {"_count": 1}}, "explain": {"_count": 35, "why": {"_count": 4}, "everything": {"_count": 2}, "that": {"_count": 2}, "anything": {"_count": 1}, "this": {"_count": 2}, "said": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 2}, "how": {"_count": 2}, "if": {"_count": 1}, "but": {"_count": 3}, "to": {"_count": 1}, "in": {"_count": 1}, "We": {"_count": 1}, "what": {"_count": 3}, "himself": {"_count": 1}, "satisfactorily": {"_count": 1}, "about": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}}, "Jim": {"_count": 1, "McGuffin": {"_count": 1}}, "tell": {"_count": 328, "me": {"_count": 42}, "her": {"_count": 11}, "the": {"_count": 28}, "him": {"_count": 40}, "Harry": {"_count": 3}, "Ron": {"_count": 15}, "whether": {"_count": 2}, "them": {"_count": 28}, "us": {"_count": 25}, "Hagrid": {"_count": 1}, "you": {"_count": 48}, "all": {"_count": 1}, "a": {"_count": 1}, "where": {"_count": 1}, "because": {"_count": 2}, "anyone": {"_count": 8}, "Fudge": {"_count": 1}, "it": {"_count": 2}, "on": {"_count": 1}, "Snape": {"_count": 3}, "anybody": {"_count": 2}, "Mrs": {"_count": 3}, "your": {"_count": 1}, "which": {"_count": 2}, "with": {"_count": 1}, "Moody": {"_count": 1}, "himself": {"_count": 2}, "Dumbledore": {"_count": 7}, "Sirius": {"_count": 3}, "what": {"_count": 3}, "tales": {"_count": 3}, "Umbridge": {"_count": 1}, "someone": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 6}, "Fred": {"_count": 1}, "people": {"_count": 2}, "lies": {"_count": 1}, "I": {"_count": 2}, "Hermione": {"_count": 2}, "Lucius": {"_count": 1}, "Professor": {"_count": 1}, "Crabbe": {"_count": 1}, "their": {"_count": 1}, "of": {"_count": 1}, "Ginny": {"_count": 1}, "whose": {"_count": 1}, "everyone": {"_count": 2}, "who": {"_count": 2}, "Dobby": {"_count": 1}, "Malfoy": {"_count": 1}, "Moaning": {"_count": 1}, "his": {"_count": 1}, "Mum": {"_count": 1}, "my": {"_count": 1}, "any": {"_count": 1}, "that": {"_count": 1}, "for": {"_count": 1}}, "her": {"_count": 276, "": {"_count": 37}, "feet": {"_count": 49}, "match": {"_count": 1}, "every": {"_count": 1}, "put": {"_count": 1}, "mouth": {"_count": 12}, "saying": {"_count": 1}, "new": {"_count": 1}, "tipping": {"_count": 1}, "lips": {"_count": 6}, "stall": {"_count": 1}, "forehead": {"_count": 2}, "was": {"_count": 1}, "and": {"_count": 9}, "said": {"_count": 2}, "leg": {"_count": 3}, "with": {"_count": 2}, "all": {"_count": 2}, "voice": {"_count": 3}, "Harry": {"_count": 1}, "again": {"_count": 2}, "table": {"_count": 1}, "job": {"_count": 1}, "because": {"_count": 2}, "If": {"_count": 1}, "office": {"_count": 6}, "memory": {"_count": 1}, "husband": {"_count": 3}, "master": {"_count": 1}, "masters": {"_count": 1}, "toast": {"_count": 1}, "sliding": {"_count": 1}, "students": {"_count": 1}, "waist": {"_count": 1}, "headmistress": {"_count": 1}, "full": {"_count": 4}, "that": {"_count": 2}, "seat": {"_count": 2}, "mulled": {"_count": 1}, "a": {"_count": 1}, "knees": {"_count": 4}, "crying": {"_count": 1}, "rock": {"_count": 1}, "bewilderment": {"_count": 1}, "trying": {"_count": 1}, "mother": {"_count": 1}, "in": {"_count": 3}, "scaly": {"_count": 1}, "when": {"_count": 1}, "sons": {"_count": 2}, "eager": {"_count": 1}, "Molly": {"_count": 1}, "long": {"_count": 1}, "talk": {"_count": 1}, "fluffy": {"_count": 1}, "fellow": {"_count": 2}, "taste": {"_count": 1}, "usual": {"_count": 1}, "room": {"_count": 2}, "chair": {"_count": 1}, "desk": {"_count": 1}, "boss": {"_count": 1}, "like": {"_count": 2}, "own": {"_count": 1}, "conversations": {"_count": 1}, "toes": {"_count": 1}, "Angelina": {"_count": 1}, "rather": {"_count": 1}, "last": {"_count": 1}, "friend": {"_count": 2}, "eyelashes": {"_count": 1}, "letter": {"_count": 1}, "children": {"_count": 1}, "no": {"_count": 1}, "translation": {"_count": 1}, "by": {"_count": 1}, "chest": {"_count": 3}, "for": {"_count": 2}, "wasnt": {"_count": 1}, "side": {"_count": 2}, "eyes": {"_count": 1}, "oddly": {"_count": 1}, "pimples": {"_count": 1}, "shoulders": {"_count": 1}, "his": {"_count": 2}, "very": {"_count": 1}, "afterward": {"_count": 1}, "star": {"_count": 1}, "Umbridge": {"_count": 1}, "head": {"_count": 1}, "sister": {"_count": 5}, "ribs": {"_count": 1}, "if": {"_count": 2}, "hair": {"_count": 1}, "other": {"_count": 1}, "she": {"_count": 2}, "presence": {"_count": 1}, "over": {"_count": 1}, "throat": {"_count": 1}, "corner": {"_count": 1}, "abilities": {"_count": 1}, "Leanne": {"_count": 1}, "properly": {"_count": 1}, "lately": {"_count": 1}, "he": {"_count": 2}, "at": {"_count": 1}, "I": {"_count": 1}, "teachers": {"_count": 1}, "normal": {"_count": 1}, "to": {"_count": 1}, "casual": {"_count": 1}, "fate": {"_count": 1}, "about": {"_count": 1}, "sobbing": {"_count": 1}, "face": {"_count": 1}, "attempts": {"_count": 1}, "bunk": {"_count": 1}, "as": {"_count": 1}, "didnt": {"_count": 1}, "however": {"_count": 1}, "fullest": {"_count": 2}, "explain": {"_count": 1}, "aid": {"_count": 1}}, "do": {"_count": 659, "with": {"_count": 106}, "anything": {"_count": 13}, "as": {"_count": 4}, "": {"_count": 121}, "magic": {"_count": 5}, "was": {"_count": 15}, "it": {"_count": 78}, "like": {"_count": 1}, "is": {"_count": 12}, "a": {"_count": 13}, "any": {"_count": 3}, "this": {"_count": 9}, "all": {"_count": 4}, "but": {"_count": 4}, "he": {"_count": 9}, "yet": {"_count": 1}, "what": {"_count": 11}, "much": {"_count": 1}, "the": {"_count": 25}, "kept": {"_count": 1}, "in": {"_count": 4}, "something": {"_count": 18}, "mmagic": {"_count": 1}, "extra": {"_count": 2}, "spells": {"_count": 1}, "Memory": {"_count": 1}, "that": {"_count": 13}, "because": {"_count": 2}, "except": {"_count": 2}, "him": {"_count": 1}, "break": {"_count": 1}, "for": {"_count": 6}, "everything": {"_count": 3}, "so": {"_count": 14}, "and": {"_count": 8}, "Im": {"_count": 1}, "his": {"_count": 6}, "you": {"_count": 6}, "when": {"_count": 1}, "Malfoys": {"_count": 1}, "to": {"_count": 5}, "first": {"_count": 2}, "werewolves": {"_count": 1}, "before": {"_count": 2}, "up": {"_count": 4}, "said": {"_count": 4}, "too": {"_count": 1}, "or": {"_count": 1}, "since": {"_count": 1}, "not": {"_count": 2}, "more": {"_count": 3}, "normally": {"_count": 1}, "would": {"_count": 1}, "really": {"_count": 1}, "today": {"_count": 1}, "endof": {"_count": 1}, "dont": {"_count": 1}, "our": {"_count": 2}, "Harry": {"_count": 6}, "next": {"_count": 7}, "your": {"_count": 5}, "thanks": {"_count": 1}, "every": {"_count": 1}, "snore": {"_count": 1}, "theyre": {"_count": 1}, "their": {"_count": 1}, "at": {"_count": 3}, "then": {"_count": 2}, "if": {"_count": 2}, "horrific": {"_count": 1}, "Stun": {"_count": 1}, "battle": {"_count": 1}, "how": {"_count": 1}, "Hagrid": {"_count": 1}, "now": {"_count": 2}, "whatever": {"_count": 3}, "mysterious": {"_count": 1}, "about": {"_count": 1}, "together": {"_count": 1}, "after": {"_count": 2}, "two": {"_count": 1}, "Mr": {"_count": 1}, "theyve": {"_count": 1}, "stuff": {"_count": 1}, "Snapes": {"_count": 1}, "on": {"_count": 1}, "Dont": {"_count": 1}, "than": {"_count": 2}, "well": {"_count": 1}, "startling": {"_count": 1}, "himself": {"_count": 1}, "us": {"_count": 2}, "them": {"_count": 1}, "Snivelly": {"_count": 1}, "Charms": {"_count": 1}, "some": {"_count": 3}, "Thats": {"_count": 1}, "Siriuss": {"_count": 1}, "Occlumency": {"_count": 1}, "already": {"_count": 1}, "ere": {"_count": 1}, "isnt": {"_count": 1}, "me": {"_count": 1}, "enough": {"_count": 1}, "without": {"_count": 2}, "turn": {"_count": 1}, "either": {"_count": 1}, "I": {"_count": 2}, "ballet": {"_count": 1}, "just": {"_count": 2}, "Professor": {"_count": 1}, "alone": {"_count": 1}, "thats": {"_count": 1}, "mumbled": {"_count": 1}, "my": {"_count": 1}, "someone": {"_count": 1}, "stay": {"_count": 1}, "we": {"_count": 1}, "Griphook": {"_count": 1}, "though": {"_count": 1}, "once": {"_count": 1}, "there": {"_count": 1}, "What": {"_count": 1}, "stopped": {"_count": 1}, "A": {"_count": 1}}, "a": {"_count": 352, "pair": {"_count": 3}, "roar": {"_count": 1}, "close": {"_count": 3}, "sticky": {"_count": 1}, "school": {"_count": 3}, "bustling": {"_count": 1}, "halt": {"_count": 69}, "free": {"_count": 2}, "Galleon": {"_count": 1}, "Sickle": {"_count": 1}, "pound": {"_count": 1}, "wizards": {"_count": 2}, "platform": {"_count": 1}, "tiny": {"_count": 1}, "boat": {"_count": 1}, "fleet": {"_count": 1}, "new": {"_count": 2}, "treacle": {"_count": 1}, "teacher": {"_count": 3}, "very": {"_count": 5}, "sudden": {"_count": 4}, "baked": {"_count": 1}, "doorway": {"_count": 1}, "window": {"_count": 2}, "good": {"_count": 1}, "Nimbus": {"_count": 1}, "walk": {"_count": 1}, "black": {"_count": 1}, "tumbledown": {"_count": 1}, "pile": {"_count": 1}, "perch": {"_count": 1}, "small": {"_count": 7}, "large": {"_count": 4}, "secondhand": {"_count": 1}, "spiral": {"_count": 1}, "row": {"_count": 1}, "tray": {"_count": 1}, "spiky": {"_count": 1}, "lot": {"_count": 1}, "man": {"_count": 2}, "salamander": {"_count": 1}, "knight": {"_count": 1}, "ghost": {"_count": 1}, "HairRaising": {"_count": 1}, "prearranged": {"_count": 1}, "few": {"_count": 1}, "Petrified": {"_count": 1}, "jam": {"_count": 1}, "third": {"_count": 2}, "piece": {"_count": 1}, "tripledecker": {"_count": 1}, "door": {"_count": 3}, "girl": {"_count": 1}, "carriage": {"_count": 1}, "word": {"_count": 3}, "stop": {"_count": 2}, "long": {"_count": 3}, "broomstick": {"_count": 1}, "whisper": {"_count": 8}, "tadpole": {"_count": 1}, "dazzling": {"_count": 1}, "notice": {"_count": 1}, "common": {"_count": 1}, "real": {"_count": 4}, "Gryffindor": {"_count": 1}, "hundred": {"_count": 2}, "desk": {"_count": 2}, "nervous": {"_count": 1}, "tidal": {"_count": 1}, "quiet": {"_count": 3}, "fly": {"_count": 1}, "tree": {"_count": 3}, "clear": {"_count": 1}, "shadowy": {"_count": 1}, "splint": {"_count": 1}, "buildup": {"_count": 1}, "gate": {"_count": 1}, "cart": {"_count": 1}, "houseelf": {"_count": 2}, "circular": {"_count": 1}, "chat": {"_count": 1}, "witch": {"_count": 2}, "picture": {"_count": 1}, "bare": {"_count": 1}, "table": {"_count": 3}, "sentence": {"_count": 1}, "stake": {"_count": 1}, "nearby": {"_count": 3}, "standstill": {"_count": 2}, "room": {"_count": 1}, "polished": {"_count": 1}, "Cornish": {"_count": 1}, "dusky": {"_count": 1}, "creature": {"_count": 1}, "body": {"_count": 1}, "rudimentary": {"_count": 1}, "graveyard": {"_count": 1}, "boy": {"_count": 1}, "jingle": {"_count": 1}, "hearing": {"_count": 2}, "beaklike": {"_count": 1}, "certain": {"_count": 1}, "dining": {"_count": 1}, "search": {"_count": 2}, "flight": {"_count": 1}, "lucky": {"_count": 1}, "Muggle": {"_count": 2}, "tall": {"_count": 2}, "chant": {"_count": 1}, "first": {"_count": 1}, "kipper": {"_count": 1}, "Ginger": {"_count": 1}, "decision": {"_count": 1}, "storm": {"_count": 1}, "teammate": {"_count": 1}, "sermon": {"_count": 1}, "code": {"_count": 1}, "member": {"_count": 2}, "cheering": {"_count": 1}, "tower": {"_count": 1}, "giant": {"_count": 1}, "pulp": {"_count": 2}, "puffy": {"_count": 1}, "Cho": {"_count": 1}, "shout": {"_count": 1}, "rest": {"_count": 1}, "different": {"_count": 2}, "Chocolate": {"_count": 1}, "dingy": {"_count": 1}, "main": {"_count": 1}, "viaduct": {"_count": 1}, "windswept": {"_count": 1}, "shelf": {"_count": 1}, "chorus": {"_count": 1}, "piercing": {"_count": 1}, "ripe": {"_count": 1}, "thunderstruck": {"_count": 1}, "secret": {"_count": 1}, "Defense": {"_count": 1}, "stout": {"_count": 1}, "bit": {"_count": 1}, "hard": {"_count": 1}, "salute": {"_count": 1}, "box": {"_count": 1}, "matteroffact": {"_count": 1}, "light": {"_count": 1}, "parent": {"_count": 1}, "handful": {"_count": 1}, "board": {"_count": 1}, "past": {"_count": 1}, "living": {"_count": 1}, "poorly": {"_count": 1}, "stint": {"_count": 1}, "former": {"_count": 1}, "scream": {"_count": 1}, "violent": {"_count": 1}, "clock": {"_count": 1}, "vast": {"_count": 1}, "jerky": {"_count": 1}, "complete": {"_count": 1}, "firstperiod": {"_count": 1}, "corner": {"_count": 2}, "murderous": {"_count": 1}, "spot": {"_count": 2}, "party": {"_count": 2}, "Christmas": {"_count": 1}, "lesson": {"_count": 1}, "person": {"_count": 1}, "wizard": {"_count": 1}, "stocky": {"_count": 1}, "tea": {"_count": 1}, "murderer": {"_count": 1}, "renewed": {"_count": 1}, "deadline": {"_count": 1}, "source": {"_count": 2}, "bunch": {"_count": 1}, "chair": {"_count": 1}, "seventeenyearold": {"_count": 1}, "wedding": {"_count": 2}, "lie": {"_count": 1}, "motorcycle": {"_count": 1}, "halfremembered": {"_count": 1}, "cave": {"_count": 1}, "halfwerewolf": {"_count": 1}, "number": {"_count": 2}, "rosy": {"_count": 1}, "flask": {"_count": 1}, "quill": {"_count": 1}, "Peaceful": {"_count": 1}, "lonely": {"_count": 1}, "supermarket": {"_count": 1}, "backfiring": {"_count": 1}, "brokendown": {"_count": 1}, "leather": {"_count": 1}, "second": {"_count": 1}, "fierce": {"_count": 1}, "gas": {"_count": 1}, "Gringotts": {"_count": 1}, "skeleton": {"_count": 1}, "goblin": {"_count": 1}, "silver": {"_count": 1}, "fistful": {"_count": 1}, "rickety": {"_count": 1}, "lavatory": {"_count": 1}, "terrible": {"_count": 1}, "grown": {"_count": 1}, "thin": {"_count": 1}, "woman": {"_count": 1}, "human": {"_count": 1}, "lover": {"_count": 1}, "point": {"_count": 1}}, "come": {"_count": 204, "near": {"_count": 1}, "upstairs": {"_count": 1}, "in": {"_count": 5}, "back": {"_count": 25}, "you": {"_count": 1}, "and": {"_count": 30}, "out": {"_count": 10}, "pelting": {"_count": 1}, "directly": {"_count": 1}, "Harry": {"_count": 1}, "bursting": {"_count": 1}, "across": {"_count": 6}, "up": {"_count": 7}, "from": {"_count": 3}, "but": {"_count": 5}, "amongst": {"_count": 1}, "after": {"_count": 4}, "forward": {"_count": 2}, "": {"_count": 13}, "to": {"_count": 25}, "along": {"_count": 6}, "said": {"_count": 1}, "down": {"_count": 3}, "early": {"_count": 1}, "downstairs": {"_count": 1}, "by": {"_count": 2}, "into": {"_count": 4}, "anywhere": {"_count": 1}, "any": {"_count": 1}, "youve": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 9}, "here": {"_count": 3}, "Madame": {"_count": 1}, "without": {"_count": 1}, "over": {"_count": 1}, "too": {"_count": 2}, "quietly": {"_count": 1}, "wouldnt": {"_count": 1}, "Think": {"_count": 1}, "personally": {"_count": 1}, "or": {"_count": 1}, "off": {"_count": 1}, "trying": {"_count": 1}, "on": {"_count": 3}, "Professor": {"_count": 1}, "I": {"_count": 1}, "then": {"_count": 1}, "tomorrow": {"_count": 1}, "round": {"_count": 1}, "as": {"_count": 1}, "its": {"_count": 1}, "two": {"_count": 1}, "for": {"_count": 1}, "first": {"_count": 1}, "home": {"_count": 1}, "through": {"_count": 1}}, "tuck": {"_count": 1, "into": {"_count": 1}}, "realize": {"_count": 19, "that": {"_count": 8}, "he": {"_count": 2}, "what": {"_count": 3}, "was": {"_count": 1}, "Sirius": {"_count": 1}, "at": {"_count": 1}, "it": {"_count": 1}, "how": {"_count": 1}, "Harry": {"_count": 1}}, "amuse": {"_count": 2, "him": {"_count": 1}, "rather": {"_count": 1}}, "it": {"_count": 106, "": {"_count": 33}, "werent": {"_count": 1}, "and": {"_count": 7}, "Harry": {"_count": 2}, "getting": {"_count": 1}, "when": {"_count": 3}, "Just": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 2}, "said": {"_count": 2}, "after": {"_count": 1}, "down": {"_count": 1}, "thats": {"_count": 1}, "read": {"_count": 1}, "they": {"_count": 1}, "now": {"_count": 1}, "once": {"_count": 1}, "a": {"_count": 1}, "still": {"_count": 1}, "which": {"_count": 1}, "watching": {"_count": 1}, "instead": {"_count": 2}, "held": {"_count": 1}, "but": {"_count": 1}, "tomorrow": {"_count": 1}, "just": {"_count": 1}, "that": {"_count": 2}, "for": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 3}, "again": {"_count": 1}, "was": {"_count": 1}, "Alicia": {"_count": 1}, "too": {"_count": 1}, "safely": {"_count": 1}, "do": {"_count": 2}, "felt": {"_count": 1}, "while": {"_count": 2}, "if": {"_count": 2}, "than": {"_count": 1}, "on": {"_count": 1}, "its": {"_count": 1}, "or": {"_count": 1}, "nor": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}, "next": {"_count": 1}, "in": {"_count": 1}, "well": {"_count": 1}, "until": {"_count": 1}, "er": {"_count": 1}, "He": {"_count": 1}, "Cattermole": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "even": {"_count": 1}}, "smile": {"_count": 15, "at": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 1}, "back": {"_count": 2}, "or": {"_count": 1}, "naturally": {"_count": 1}, "blandly": {"_count": 2}, "benignly": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}}, "notice": {"_count": 26, "something": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}, "the": {"_count": 4}, "that": {"_count": 5}, "immediately": {"_count": 1}, "anything": {"_count": 1}, "Ron": {"_count": 1}, "what": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}, "much": {"_count": 1}, "Harrys": {"_count": 1}, "these": {"_count": 1}, "us": {"_count": 1}, "them": {"_count": 2}, "our": {"_count": 1}}, "celebrate": {"_count": 9, "for": {"_count": 1}, "Slytherin": {"_count": 1}, "the": {"_count": 2}, "with": {"_count": 2}, "": {"_count": 1}, "your": {"_count": 1}, "even": {"_count": 1}}, "lose": {"_count": 18, "our": {"_count": 1}, "him": {"_count": 1}, "and": {"_count": 1}, "any": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 2}, "by": {"_count": 1}, "another": {"_count": 1}, "face": {"_count": 1}, "your": {"_count": 1}, "confidence": {"_count": 1}, "now": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "height": {"_count": 1}}, "have": {"_count": 548, "disappeared": {"_count": 2}, "gone": {"_count": 5}, "a": {"_count": 60}, "forgotten": {"_count": 7}, "got": {"_count": 1}, "that": {"_count": 1}, "built": {"_count": 1}, "some": {"_count": 4}, "been": {"_count": 48}, "an": {"_count": 7}, "struck": {"_count": 2}, "another": {"_count": 2}, "noticed": {"_count": 13}, "changed": {"_count": 2}, "given": {"_count": 3}, "to": {"_count": 47}, "him": {"_count": 5}, "died": {"_count": 2}, "realized": {"_count": 4}, "done": {"_count": 8}, "met": {"_count": 2}, "leaked": {"_count": 1}, "memorized": {"_count": 1}, "something": {"_count": 5}, "turned": {"_count": 3}, "heard": {"_count": 10}, "forgiven": {"_count": 1}, "left": {"_count": 3}, "jammed": {"_count": 2}, "many": {"_count": 1}, "reached": {"_count": 3}, "recovered": {"_count": 1}, "mastered": {"_count": 1}, "mislaid": {"_count": 1}, "woken": {"_count": 1}, "slid": {"_count": 1}, "\u2018trials": {"_count": 1}, "lost": {"_count": 6}, "company": {"_count": 2}, "shown": {"_count": 1}, "planned": {"_count": 1}, "fallen": {"_count": 5}, "told": {"_count": 3}, "your": {"_count": 4}, "guessed": {"_count": 1}, "come": {"_count": 5}, "shaken": {"_count": 1}, "taken": {"_count": 9}, "swung": {"_count": 1}, "survived": {"_count": 3}, "said": {"_count": 2}, "Harry": {"_count": 1}, "eaten": {"_count": 2}, "spotted": {"_count": 1}, "bowed": {"_count": 1}, "fun": {"_count": 3}, "dazed": {"_count": 1}, "faces": {"_count": 1}, "sent": {"_count": 1}, "dress": {"_count": 2}, "grown": {"_count": 2}, "swum": {"_count": 1}, "the": {"_count": 5}, "mouths": {"_count": 1}, "rushed": {"_count": 1}, "attained": {"_count": 1}, "made": {"_count": 3}, "pulled": {"_count": 2}, "become": {"_count": 8}, "settled": {"_count": 1}, "stopped": {"_count": 3}, "confirmed": {"_count": 1}, "developed": {"_count": 2}, "suspected": {"_count": 1}, "any": {"_count": 7}, "shrunk": {"_count": 1}, "inherited": {"_count": 1}, "paid": {"_count": 2}, "had": {"_count": 2}, "vanished": {"_count": 2}, "transfigured": {"_count": 1}, "Snapes": {"_count": 1}, "inflated": {"_count": 1}, "searched": {"_count": 1}, "found": {"_count": 3}, "knowledge": {"_count": 1}, "parents": {"_count": 1}, "thought": {"_count": 1}, "sprouted": {"_count": 1}, "surged": {"_count": 1}, "caused": {"_count": 2}, "sprung": {"_count": 1}, "his": {"_count": 2}, "missed": {"_count": 1}, "someone": {"_count": 1}, "spies": {"_count": 1}, "cut": {"_count": 1}, "walked": {"_count": 1}, "overlooked": {"_count": 1}, "swollen": {"_count": 1}, "explained": {"_count": 2}, "scattered": {"_count": 1}, "them": {"_count": 2}, "flown": {"_count": 1}, "touched": {"_count": 1}, "seen": {"_count": 2}, "nothing": {"_count": 1}, "two": {"_count": 1}, "swelled": {"_count": 1}, "followed": {"_count": 1}, "traveled": {"_count": 1}, "dragged": {"_count": 1}, "": {"_count": 4}, "escaped": {"_count": 1}, "merpeople": {"_count": 1}, "worked": {"_count": 2}, "restricted": {"_count": 1}, "held": {"_count": 1}, "everything": {"_count": 1}, "formed": {"_count": 1}, "perfected": {"_count": 1}, "Quidditch": {"_count": 1}, "our": {"_count": 1}, "it": {"_count": 6}, "appeared": {"_count": 1}, "known": {"_count": 1}, "asked": {"_count": 1}, "breakfast": {"_count": 1}, "enjoyed": {"_count": 1}, "brought": {"_count": 3}, "forged": {"_count": 1}, "visited": {"_count": 1}, "extended": {"_count": 1}, "only": {"_count": 1}, "dreams": {"_count": 1}, "learned": {"_count": 2}, "their": {"_count": 1}, "couldnt": {"_count": 1}, "witnessed": {"_count": 1}, "decided": {"_count": 1}, "caught": {"_count": 1}, "meddled": {"_count": 1}, "felt": {"_count": 1}, "opened": {"_count": 1}, "accepted": {"_count": 1}, "spread": {"_count": 1}, "recently": {"_count": 1}, "nearhuman": {"_count": 1}, "shouted": {"_count": 1}, "unsteadied": {"_count": 1}, "repaired": {"_count": 1}, "thoroughly": {"_count": 1}, "allowed": {"_count": 1}, "fifty": {"_count": 1}, "lessened": {"_count": 1}, "lasted": {"_count": 1}, "robbed": {"_count": 1}, "much": {"_count": 1}, "deserted": {"_count": 1}, "cooler": {"_count": 1}, "you": {"_count": 4}, "increased": {"_count": 1}, "landed": {"_count": 2}, "particularly": {"_count": 1}, "progressed": {"_count": 1}, "no": {"_count": 2}, "hidden": {"_count": 1}, "yielded": {"_count": 1}, "me": {"_count": 2}, "returned": {"_count": 2}, "brushed": {"_count": 1}, "awoken": {"_count": 2}, "read": {"_count": 1}, "bought": {"_count": 1}, "recognized": {"_count": 2}, "healed": {"_count": 1}, "killed": {"_count": 1}, "happened": {"_count": 1}, "put": {"_count": 3}, "expected": {"_count": 2}, "registered": {"_count": 1}, "anything": {"_count": 1}, "lots": {"_count": 1}, "Malfoy": {"_count": 1}, "such": {"_count": 1}, "both": {"_count": 1}, "stolen": {"_count": 1}, "Hagrid": {"_count": 1}, "reserved": {"_count": 1}, "Katie": {"_count": 1}, "glimpsed": {"_count": 1}, "detected": {"_count": 1}, "acted": {"_count": 1}, "forced": {"_count": 1}, "exhausted": {"_count": 2}, "placed": {"_count": 1}, "led": {"_count": 1}, "amplified": {"_count": 1}, "power": {"_count": 1}, "slunk": {"_count": 1}, "powerful": {"_count": 1}, "experienced": {"_count": 1}, "nested": {"_count": 1}, "understood": {"_count": 2}, "gained": {"_count": 1}, "this": {"_count": 1}, "obtained": {"_count": 2}, "\u2018stolen": {"_count": 1}, "Mr": {"_count": 1}, "abandoned": {"_count": 1}, "misgivings": {"_count": 1}, "referred": {"_count": 1}, "frozen": {"_count": 1}, "in": {"_count": 1}, "enough": {"_count": 1}, "hosted": {"_count": 1}, "worse": {"_count": 1}, "her": {"_count": 1}, "disguised": {"_count": 1}, "lifted": {"_count": 1}, "suffered": {"_count": 1}, "magical": {"_count": 1}, "run": {"_count": 1}, "risen": {"_count": 1}, "joined": {"_count": 1}, "passed": {"_count": 1}, "sped": {"_count": 1}, "bypassed": {"_count": 1}}, "persuade": {"_count": 26, "people": {"_count": 2}, "Hermione": {"_count": 1}, "Uncle": {"_count": 1}, "a": {"_count": 2}, "her": {"_count": 3}, "others": {"_count": 1}, "them": {"_count": 2}, "the": {"_count": 3}, "him": {"_count": 5}, "you": {"_count": 1}, "Hagrid": {"_count": 1}, "an": {"_count": 1}, "Professor": {"_count": 1}, "Slughorn": {"_count": 2}}, "call": {"_count": 43, "him": {"_count": 10}, "her": {"_count": 3}, "me": {"_count": 4}, "timeout": {"_count": 1}, "us": {"_count": 1}, "": {"_count": 3}, "someone": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 2}, "on": {"_count": 2}, "anyone": {"_count": 2}, "out": {"_count": 1}, "after": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "Potter": {"_count": 1}, "you": {"_count": 2}, "back": {"_count": 2}, "them": {"_count": 1}, "off": {"_count": 1}}, "use": {"_count": 115, "them": {"_count": 5}, "on": {"_count": 3}, "the": {"_count": 25}, "it": {"_count": 16}, "magic": {"_count": 15}, "Dark": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 11}, "": {"_count": 2}, "its": {"_count": 1}, "this": {"_count": 3}, "Neville": {"_count": 1}, "him": {"_count": 3}, "another": {"_count": 1}, "his": {"_count": 2}, "Hedwig": {"_count": 1}, "one": {"_count": 2}, "every": {"_count": 1}, "gillyweed": {"_count": 1}, "owls": {"_count": 1}, "force": {"_count": 1}, "thats": {"_count": 1}, "our": {"_count": 1}, "Sirius": {"_count": 2}, "Umbridges": {"_count": 1}, "others": {"_count": 1}, "you": {"_count": 1}, "any": {"_count": 1}, "in": {"_count": 1}, "Veritaserum": {"_count": 1}, "Voldemorts": {"_count": 1}, "an": {"_count": 2}, "decoys": {"_count": 1}, "that": {"_count": 1}, "Occlumency": {"_count": 2}, "as": {"_count": 1}}, "discuss": {"_count": 37, "the": {"_count": 8}, "his": {"_count": 3}, "tactics": {"_count": 1}, "when": {"_count": 1}, "elf": {"_count": 1}, "their": {"_count": 2}, "it": {"_count": 3}, "what": {"_count": 2}, "with": {"_count": 4}, "and": {"_count": 1}, "your": {"_count": 1}, "first": {"_count": 1}, "Sirius": {"_count": 1}, "Siriuss": {"_count": 1}, "Tom": {"_count": 1}, "this": {"_count": 2}, "": {"_count": 2}, "Ron": {"_count": 1}, "whether": {"_count": 1}}, "believe": {"_count": 54, "it": {"_count": 8}, "there": {"_count": 2}, "before": {"_count": 1}, "that": {"_count": 13}, "": {"_count": 3}, "you": {"_count": 1}, "he": {"_count": 3}, "him": {"_count": 3}, "its": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "me": {"_count": 1}, "YouKnow": {"_count": 2}, "as": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}, "half": {"_count": 1}, "ill": {"_count": 1}, "He": {"_count": 1}, "actually": {"_count": 1}, "his": {"_count": 1}, "these": {"_count": 1}, "hes": {"_count": 1}, "in": {"_count": 1}, "everything": {"_count": 1}}, "find": {"_count": 311, "the": {"_count": 25}, "their": {"_count": 3}, "his": {"_count": 9}, "someone": {"_count": 1}, "out": {"_count": 64}, "me": {"_count": 8}, "them": {"_count": 10}, "how": {"_count": 1}, "itself": {"_count": 1}, "a": {"_count": 34}, "Ron": {"_count": 7}, "you": {"_count": 7}, "Harry": {"_count": 2}, "Mr": {"_count": 1}, "it": {"_count": 13}, "in": {"_count": 1}, "him": {"_count": 13}, "her": {"_count": 5}, "another": {"_count": 3}, "unless": {"_count": 1}, "Fred": {"_count": 2}, "that": {"_count": 12}, "something": {"_count": 3}, "paid": {"_count": 1}, "Scabbers": {"_count": 1}, "himself": {"_count": 6}, "an": {"_count": 3}, "all": {"_count": 1}, "excuses": {"_count": 1}, "words": {"_count": 3}, "Mrs": {"_count": 1}, "members": {"_count": 1}, "inside": {"_count": 1}, "seats": {"_count": 1}, "yourself": {"_count": 1}, "Neville": {"_count": 1}, "Hermione": {"_count": 4}, "Pigwidgeon": {"_count": 1}, "work": {"_count": 1}, "anything": {"_count": 2}, "one": {"_count": 3}, "us": {"_count": 3}, "my": {"_count": 2}, "Voldemort": {"_count": 1}, "treasure": {"_count": 1}, "more": {"_count": 2}, "themselves": {"_count": 1}, "Asiatic": {"_count": 1}, "coins": {"_count": 1}, "somewhere": {"_count": 2}, "Professor": {"_count": 2}, "meaning": {"_count": 1}, "Cho": {"_count": 1}, "Sirius": {"_count": 1}, "Snape": {"_count": 2}, "intimidating": {"_count": 1}, "": {"_count": 5}, "Dumbledores": {"_count": 1}, "and": {"_count": 4}, "Fleur": {"_count": 1}, "many": {"_count": 2}, "what": {"_count": 1}, "time": {"_count": 1}, "McLaggens": {"_count": 1}, "Dark": {"_count": 1}, "Celestina": {"_count": 1}, "Scrimgeour": {"_count": 1}, "McLaggen": {"_count": 1}, "evidence": {"_count": 1}, "anyone": {"_count": 1}, "this": {"_count": 1}, "Dumbledore": {"_count": 1}, "herself": {"_count": 1}, "Kreacher": {"_count": 1}, "sustenance": {"_count": 1}, "any": {"_count": 1}, "Bathildas": {"_count": 1}, "Order": {"_count": 1}}, "kill": {"_count": 126, "the": {"_count": 11}, "you": {"_count": 22}, "it": {"_count": 1}, "me": {"_count": 23}, "Harry": {"_count": 8}, "": {"_count": 8}, "someone": {"_count": 2}, "myself": {"_count": 2}, "of": {"_count": 1}, "him": {"_count": 10}, "anyone": {"_count": 2}, "anybody": {"_count": 1}, "each": {"_count": 1}, "Black": {"_count": 3}, "us": {"_count": 4}, "all": {"_count": 1}, "and": {"_count": 1}, "her": {"_count": 1}, "one": {"_count": 1}, "rather": {"_count": 1}, "Mundungus": {"_count": 1}, "half": {"_count": 1}, "whoever": {"_count": 2}, "on": {"_count": 1}, "Harrys": {"_count": 1}, "Slughorn": {"_count": 1}, "his": {"_count": 2}, "by": {"_count": 1}, "Voldemort": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "yer": {"_count": 1}, "Potter": {"_count": 1}, "them": {"_count": 2}, "if": {"_count": 1}, "himself": {"_count": 1}, "wiped": {"_count": 1}, "with": {"_count": 1}, "any": {"_count": 1}}, "stop": {"_count": 153, "him": {"_count": 30}, "his": {"_count": 3}, "talking": {"_count": 1}, "the": {"_count": 9}, "you": {"_count": 7}, "it": {"_count": 5}, "himself": {"_count": 7}, "Muggles": {"_count": 1}, "Malfoy": {"_count": 1}, "me": {"_count": 6}, "Snape": {"_count": 2}, "Gryffindor": {"_count": 1}, "her": {"_count": 5}, "Harry": {"_count": 4}, "them": {"_count": 5}, "Fred": {"_count": 2}, "said": {"_count": 1}, "now": {"_count": 1}, "these": {"_count": 1}, "at": {"_count": 2}, "any": {"_count": 1}, "so": {"_count": 2}, "trusting": {"_count": 1}, "laughing": {"_count": 1}, "clapping": {"_count": 1}, "people": {"_count": 3}, "Crookshanks": {"_count": 1}, "us": {"_count": 4}, "Voldemort": {"_count": 3}, "anyone": {"_count": 1}, "Ron": {"_count": 1}, "celebrating": {"_count": 1}, "herself": {"_count": 3}, "shielding": {"_count": 1}, "Hermione": {"_count": 2}, "there": {"_count": 1}, "Rita": {"_count": 1}, "themselves": {"_count": 1}, "Crouch": {"_count": 1}, "heart": {"_count": 1}, "and": {"_count": 4}, "just": {"_count": 1}, "using": {"_count": 1}, "Mum": {"_count": 1}, "this": {"_count": 2}, "": {"_count": 3}, "Olympe": {"_count": 1}, "over": {"_count": 1}, "telling": {"_count": 1}, "giving": {"_count": 2}, "for": {"_count": 1}, "troll": {"_count": 1}, "searching": {"_count": 1}, "Bill": {"_count": 1}, "following": {"_count": 1}, "seeing": {"_count": 2}, "wizards": {"_count": 1}, "but": {"_count": 1}, "saying": {"_count": 1}, "looking": {"_count": 1}}, "Dumbledore": {"_count": 78, "though": {"_count": 1}, "": {"_count": 24}, "to": {"_count": 3}, "at": {"_count": 1}, "said": {"_count": 3}, "right": {"_count": 1}, "we": {"_count": 1}, "was": {"_count": 1}, "bending": {"_count": 1}, "His": {"_count": 1}, "whose": {"_count": 1}, "theyre": {"_count": 1}, "and": {"_count": 4}, "confirming": {"_count": 1}, "s": {"_count": 6}, "behind": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 5}, "transformed": {"_count": 1}, "that": {"_count": 2}, "who": {"_count": 3}, "then": {"_count": 2}, "even": {"_count": 1}, "anyway": {"_count": 1}, "too": {"_count": 1}, "whitefaced": {"_count": 1}, "his": {"_count": 1}, "twice": {"_count": 1}, "or": {"_count": 1}, "in": {"_count": 1}, "during": {"_count": 1}, "Ronald": {"_count": 1}, "how": {"_count": 1}, "the": {"_count": 1}, "loyal": {"_count": 1}}, "bring": {"_count": 44, "Harry": {"_count": 1}, "silence": {"_count": 1}, "him": {"_count": 5}, "Peter": {"_count": 1}, "food": {"_count": 1}, "the": {"_count": 5}, "you": {"_count": 3}, "into": {"_count": 1}, "was": {"_count": 1}, "protection": {"_count": 1}, "our": {"_count": 1}, "all": {"_count": 1}, "off": {"_count": 3}, "every": {"_count": 1}, "her": {"_count": 1}, "Ron": {"_count": 1}, "your": {"_count": 1}, "its": {"_count": 1}, "up": {"_count": 1}, "protective": {"_count": 1}, "guests": {"_count": 2}, "love": {"_count": 1}, "that": {"_count": 1}, "down": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Voldemort": {"_count": 2}, "back": {"_count": 2}, "them": {"_count": 1}, "through": {"_count": 1}}, "him": {"_count": 419, "when": {"_count": 3}, "sir": {"_count": 2}, "once": {"_count": 4}, "": {"_count": 128}, "an": {"_count": 1}, "buried": {"_count": 1}, "slipped": {"_count": 1}, "and": {"_count": 32}, "at": {"_count": 10}, "telling": {"_count": 1}, "by": {"_count": 2}, "so": {"_count": 1}, "in": {"_count": 15}, "I": {"_count": 2}, "Neville": {"_count": 1}, "anymore": {"_count": 1}, "about": {"_count": 3}, "who": {"_count": 2}, "was": {"_count": 7}, "all": {"_count": 2}, "on": {"_count": 4}, "said": {"_count": 9}, "opened": {"_count": 1}, "as": {"_count": 13}, "almost": {"_count": 2}, "Good": {"_count": 1}, "he": {"_count": 4}, "Professor": {"_count": 1}, "with": {"_count": 3}, "now": {"_count": 9}, "that": {"_count": 20}, "because": {"_count": 3}, "holding": {"_count": 1}, "out": {"_count": 3}, "bobbing": {"_count": 1}, "but": {"_count": 4}, "between": {"_count": 1}, "blowing": {"_count": 1}, "eh": {"_count": 1}, "than": {"_count": 2}, "trotted": {"_count": 1}, "looking": {"_count": 4}, "what": {"_count": 2}, "wouldnt": {"_count": 1}, "bending": {"_count": 1}, "any": {"_count": 1}, "before": {"_count": 2}, "awake": {"_count": 1}, "are": {"_count": 1}, "yesterday": {"_count": 1}, "weve": {"_count": 1}, "Ron": {"_count": 5}, "Malfoy": {"_count": 1}, "going": {"_count": 1}, "to": {"_count": 11}, "even": {"_count": 3}, "if": {"_count": 6}, "intoning": {"_count": 1}, "or": {"_count": 2}, "no": {"_count": 1}, "from": {"_count": 3}, "whatsoever": {"_count": 1}, "every": {"_count": 1}, "the": {"_count": 4}, "you": {"_count": 1}, "why": {"_count": 1}, "it": {"_count": 1}, "whether": {"_count": 2}, "hopeful": {"_count": 1}, "during": {"_count": 1}, "not": {"_count": 2}, "do": {"_count": 1}, "hadnt": {"_count": 1}, "for": {"_count": 4}, "this": {"_count": 2}, "didnt": {"_count": 1}, "a": {"_count": 3}, "under": {"_count": 2}, "am": {"_count": 1}, "isnt": {"_count": 1}, "Hermione": {"_count": 1}, "She": {"_count": 2}, "properly": {"_count": 1}, "just": {"_count": 1}, "again": {"_count": 1}, "announcing": {"_count": 1}, "though": {"_count": 2}, "myself": {"_count": 1}, "persuade": {"_count": 1}, "Neither": {"_count": 1}, "bald": {"_count": 1}, "didn": {"_count": 1}, "while": {"_count": 1}, "Harry": {"_count": 1}, "how": {"_count": 1}, "first": {"_count": 1}, "seconds": {"_count": 1}, "never": {"_count": 1}, "opposite": {"_count": 1}, "possess": {"_count": 1}, "mere": {"_count": 1}, "they": {"_count": 1}, "crooned": {"_count": 1}, "hardly": {"_count": 1}, "like": {"_count": 1}, "then": {"_count": 2}, "He": {"_count": 1}, "born": {"_count": 1}, "standing": {"_count": 1}, "The": {"_count": 1}, "Take": {"_count": 1}, "beyond": {"_count": 1}}, "turn": {"_count": 58, "any": {"_count": 1}, "him": {"_count": 2}, "it": {"_count": 3}, "back": {"_count": 4}, "you": {"_count": 3}, "around": {"_count": 2}, "into": {"_count": 4}, "right": {"_count": 1}, "to": {"_count": 4}, "and": {"_count": 1}, "sideways": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 3}, "up": {"_count": 11}, "off": {"_count": 1}, "away": {"_count": 3}, "out": {"_count": 1}, "their": {"_count": 1}, "": {"_count": 2}, "your": {"_count": 2}, "blue": {"_count": 1}, "over": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}, "vinegar": {"_count": 1}, "again": {"_count": 1}, "them": {"_count": 1}}, "take": {"_count": 245, "it": {"_count": 23}, "him": {"_count": 7}, "the": {"_count": 32}, "Rons": {"_count": 2}, "a": {"_count": 25}, "care": {"_count": 2}, "over": {"_count": 5}, "his": {"_count": 10}, "sides": {"_count": 3}, "on": {"_count": 6}, "that": {"_count": 4}, "them": {"_count": 6}, "you": {"_count": 11}, "Dobby": {"_count": 1}, "three": {"_count": 1}, "my": {"_count": 2}, "into": {"_count": 1}, "another": {"_count": 4}, "down": {"_count": 2}, "any": {"_count": 2}, "fifty": {"_count": 1}, "no": {"_count": 1}, "Malfoy": {"_count": 1}, "this": {"_count": 3}, "their": {"_count": 3}, "your": {"_count": 3}, "Harry": {"_count": 4}, "every": {"_count": 1}, "Winky": {"_count": 1}, "an": {"_count": 1}, "some": {"_count": 1}, "notes": {"_count": 3}, "much": {"_count": 1}, "photographs": {"_count": 1}, "off": {"_count": 4}, "clothes": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 7}, "up": {"_count": 1}, "advantage": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 3}, "Ron": {"_count": 1}, "longer": {"_count": 1}, "Harrys": {"_count": 3}, "me": {"_count": 1}, "all": {"_count": 3}, "time": {"_count": 2}, "five": {"_count": 1}, "points": {"_count": 1}, "lessons": {"_count": 1}, "out": {"_count": 2}, "part": {"_count": 3}, "one": {"_count": 1}, "Occlumency": {"_count": 1}, "hold": {"_count": 1}, "exams": {"_count": 1}, "Jack": {"_count": 1}, "I": {"_count": 1}, "students": {"_count": 1}, "even": {"_count": 1}, "place": {"_count": 3}, "Hagrid": {"_count": 1}, "Sirius": {"_count": 1}, "ten": {"_count": 2}, "away": {"_count": 1}, "its": {"_count": 1}, "bites": {"_count": 1}, "Slughorn": {"_count": 1}, "matters": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "responsibility": {"_count": 1}, "charge": {"_count": 1}, "anything": {"_count": 1}, "true": {"_count": 1}, "everything": {"_count": 1}, "groups": {"_count": 1}, "anothers": {"_count": 1}, "what": {"_count": 1}, "full": {"_count": 1}}, "trust": {"_count": 14, "Hagrid": {"_count": 2}, "me": {"_count": 1}, "him": {"_count": 2}, "people": {"_count": 2}, "each": {"_count": 1}, "that": {"_count": 1}, "they": {"_count": 1}, "Bellatrix": {"_count": 1}, "": {"_count": 3}}, "what": {"_count": 37, "was": {"_count": 5}, "your": {"_count": 1}, "Hagrid": {"_count": 3}, "had": {"_count": 1}, "Moody": {"_count": 1}, "he": {"_count": 5}, "Professor": {"_count": 1}, "Lord": {"_count": 1}, "": {"_count": 1}, "hes": {"_count": 1}, "you": {"_count": 1}, "Umbridge": {"_count": 1}, "I": {"_count": 2}, "Mrs": {"_count": 1}, "is": {"_count": 1}, "to": {"_count": 2}, "should": {"_count": 1}, "attracts": {"_count": 1}, "Filch": {"_count": 1}, "Horcruxes": {"_count": 1}, "youre": {"_count": 1}, "Voldemort": {"_count": 1}, "do": {"_count": 1}, "might": {"_count": 1}, "they": {"_count": 1}}, "me": {"_count": 236, "": {"_count": 76}, "once": {"_count": 1}, "on": {"_count": 2}, "bet": {"_count": 1}, "all": {"_count": 4}, "for": {"_count": 3}, "and": {"_count": 10}, "dont": {"_count": 1}, "by": {"_count": 1}, "that": {"_count": 13}, "said": {"_count": 12}, "its": {"_count": 1}, "Myrtle": {"_count": 1}, "again": {"_count": 2}, "Wondering": {"_count": 1}, "anymore": {"_count": 2}, "not": {"_count": 2}, "Slytherin": {"_count": 1}, "or": {"_count": 2}, "Harry": {"_count": 5}, "if": {"_count": 4}, "you": {"_count": 1}, "hut": {"_count": 1}, "Potter": {"_count": 2}, "yet": {"_count": 1}, "before": {"_count": 2}, "directly": {"_count": 1}, "immediately": {"_count": 1}, "in": {"_count": 4}, "he": {"_count": 3}, "as": {"_count": 2}, "Right": {"_count": 1}, "Black": {"_count": 1}, "please": {"_count": 1}, "but": {"_count": 3}, "RUN": {"_count": 1}, "He": {"_count": 1}, "nothing": {"_count": 2}, "quickly": {"_count": 1}, "like": {"_count": 3}, "Ron": {"_count": 1}, "however": {"_count": 1}, "this": {"_count": 1}, "Snape": {"_count": 1}, "here": {"_count": 2}, "at": {"_count": 2}, "to": {"_count": 3}, "more": {"_count": 2}, "leaving": {"_count": 1}, "reliving": {"_count": 1}, "was": {"_count": 2}, "Cornelius": {"_count": 1}, "Vernon": {"_count": 1}, "e": {"_count": 1}, "though": {"_count": 1}, "Ill": {"_count": 2}, "about": {"_count": 3}, "I": {"_count": 1}, "because": {"_count": 2}, "last": {"_count": 1}, "mam": {"_count": 1}, "Oh": {"_count": 1}, "too": {"_count": 1}, "growled": {"_count": 1}, "just": {"_count": 2}, "The": {"_count": 1}, "very": {"_count": 1}, "much": {"_count": 1}, "youd": {"_count": 1}, "Im": {"_count": 3}, "wouldnt": {"_count": 1}, "\u2018I": {"_count": 1}, "Hermione": {"_count": 2}, "than": {"_count": 1}, "through": {"_count": 1}, "But": {"_count": 1}, "then": {"_count": 1}, "when": {"_count": 1}, "Gregorovitch": {"_count": 1}, "babbles": {"_count": 1}, "LISTEN": {"_count": 1}, "have": {"_count": 1}, "the": {"_count": 1}, "magically": {"_count": 1}, "wont": {"_count": 1}}, "their": {"_count": 144, "street": {"_count": 1}, "table": {"_count": 5}, "corner": {"_count": 1}, "problems": {"_count": 1}, "families": {"_count": 2}, "dormitory": {"_count": 4}, "feet": {"_count": 23}, "great": {"_count": 1}, "hot": {"_count": 1}, "footsteps": {"_count": 1}, "discussion": {"_count": 1}, "dark": {"_count": 1}, "underground": {"_count": 1}, "surprise": {"_count": 2}, "original": {"_count": 3}, "House": {"_count": 2}, "Defense": {"_count": 1}, "right": {"_count": 9}, "rooms": {"_count": 1}, "mouths": {"_count": 1}, "barrel": {"_count": 1}, "Chaser": {"_count": 1}, "common": {"_count": 3}, "own": {"_count": 4}, "positions": {"_count": 1}, "left": {"_count": 4}, "spectacular": {"_count": 1}, "bulky": {"_count": 1}, "campsites": {"_count": 1}, "daily": {"_count": 1}, "compartment": {"_count": 2}, "neighbors": {"_count": 1}, "bags": {"_count": 2}, "workload": {"_count": 1}, "dormitories": {"_count": 4}, "advantage": {"_count": 1}, "fallen": {"_count": 1}, "counterparts": {"_count": 1}, "recently": {"_count": 1}, "highest": {"_count": 1}, "fullest": {"_count": 2}, "desk": {"_count": 1}, "empty": {"_count": 1}, "bulbs": {"_count": 1}, "food": {"_count": 1}, "work": {"_count": 1}, "tasks": {"_count": 1}, "chests": {"_count": 1}, "skeletons": {"_count": 1}, "name": {"_count": 1}, "bickering": {"_count": 1}, "owners": {"_count": 2}, "usual": {"_count": 2}, "brains": {"_count": 1}, "intense": {"_count": 1}, "lips": {"_count": 1}, "mother": {"_count": 1}, "familys": {"_count": 1}, "senses": {"_count": 1}, "prolonged": {"_count": 1}, "classrooms": {"_count": 1}, "source": {"_count": 1}, "telescopes": {"_count": 1}, "star": {"_count": 1}, "angry": {"_count": 1}, "bodies": {"_count": 1}, "deaths": {"_count": 1}, "gold": {"_count": 1}, "carriages": {"_count": 1}, "Heads": {"_count": 1}, "scales": {"_count": 1}, "habit": {"_count": 1}, "best": {"_count": 1}, "supporters": {"_count": 1}, "little": {"_count": 1}, "conversation": {"_count": 1}, "first": {"_count": 1}, "ankles": {"_count": 1}, "places": {"_count": 1}, "inadequate": {"_count": 1}, "presence": {"_count": 1}, "troubles": {"_count": 1}, "isolation": {"_count": 1}, "plans": {"_count": 1}, "beds": {"_count": 1}, "proper": {"_count": 1}}, "happen": {"_count": 37, "": {"_count": 11}, "to": {"_count": 11}, "are": {"_count": 1}, "ever": {"_count": 2}, "in": {"_count": 2}, "when": {"_count": 2}, "if": {"_count": 1}, "anymore": {"_count": 1}, "something": {"_count": 1}, "said": {"_count": 1}, "now": {"_count": 2}, "and": {"_count": 1}, "before": {"_count": 1}}, "put": {"_count": 82, "out": {"_count": 2}, "up": {"_count": 6}, "it": {"_count": 9}, "down": {"_count": 2}, "himself": {"_count": 1}, "a": {"_count": 8}, "him": {"_count": 5}, "them": {"_count": 4}, "me": {"_count": 1}, "you": {"_count": 3}, "Fudge": {"_count": 1}, "on": {"_count": 4}, "forward": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}, "Stop": {"_count": 1}, "their": {"_count": 3}, "the": {"_count": 6}, "your": {"_count": 1}, "my": {"_count": 2}, "plenty": {"_count": 1}, "into": {"_count": 2}, "us": {"_count": 1}, "her": {"_count": 1}, "training": {"_count": 1}, "past": {"_count": 1}, "his": {"_count": 5}, "in": {"_count": 4}, "too": {"_count": 1}, "righ": {"_count": 1}, "anything": {"_count": 1}, "all": {"_count": 1}}, "remember": {"_count": 46, "the": {"_count": 3}, "left": {"_count": 1}, "that": {"_count": 5}, "to": {"_count": 1}, "where": {"_count": 1}, "everything": {"_count": 1}, "what": {"_count": 3}, "it": {"_count": 3}, "how": {"_count": 3}, "": {"_count": 8}, "telling": {"_count": 1}, "page": {"_count": 1}, "Sirius": {"_count": 1}, "something": {"_count": 2}, "why": {"_count": 2}, "names": {"_count": 1}, "when": {"_count": 2}, "as": {"_count": 1}, "those": {"_count": 1}, "all": {"_count": 1}, "exactly": {"_count": 1}, "me": {"_count": 1}, "every": {"_count": 1}, "wrenching": {"_count": 1}}, "spiders": {"_count": 1, "because": {"_count": 1}}, "Harry": {"_count": 369, "as": {"_count": 29}, "made": {"_count": 1}, "found": {"_count": 1}, "who": {"_count": 18}, "": {"_count": 115}, "so": {"_count": 2}, "and": {"_count": 57}, "in": {"_count": 6}, "through": {"_count": 2}, "with": {"_count": 4}, "during": {"_count": 1}, "Hermione": {"_count": 2}, "but": {"_count": 5}, "began": {"_count": 1}, "any": {"_count": 1}, "took": {"_count": 1}, "Potter": {"_count": 6}, "not": {"_count": 1}, "Ron": {"_count": 10}, "Itll": {"_count": 1}, "the": {"_count": 2}, "looking": {"_count": 4}, "that": {"_count": 12}, "no": {"_count": 1}, "for": {"_count": 2}, "to": {"_count": 6}, "handing": {"_count": 1}, "grabbed": {"_count": 1}, "by": {"_count": 1}, "one": {"_count": 1}, "standing": {"_count": 2}, "even": {"_count": 1}, "seizing": {"_count": 1}, "than": {"_count": 1}, "So": {"_count": 1}, "how": {"_count": 1}, "still": {"_count": 1}, "like": {"_count": 2}, "shut": {"_count": 1}, "grinning": {"_count": 1}, "all": {"_count": 2}, "either": {"_count": 1}, "away": {"_count": 1}, "announcing": {"_count": 1}, "Bagman": {"_count": 1}, "about": {"_count": 1}, "too": {"_count": 2}, "get": {"_count": 2}, "whenever": {"_count": 1}, "she": {"_count": 1}, "frowning": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 3}, "reaching": {"_count": 1}, "Me": {"_count": 1}, "on": {"_count": 1}, "Shes": {"_count": 1}, "pulling": {"_count": 1}, "Well": {"_count": 1}, "until": {"_count": 1}, "while": {"_count": 1}, "asking": {"_count": 1}, "contradicted": {"_count": 1}, "had": {"_count": 2}, "from": {"_count": 1}, "what": {"_count": 1}, "removing": {"_count": 1}, "her": {"_count": 2}, "behind": {"_count": 1}, "shell": {"_count": 1}, "over": {"_count": 2}, "carrying": {"_count": 1}, "Ginny": {"_count": 1}, "he": {"_count": 1}, "swinging": {"_count": 1}, "however": {"_count": 1}, "rather": {"_count": 1}, "alone": {"_count": 1}, "outside": {"_count": 1}, "theyre": {"_count": 1}, "being": {"_count": 1}, "just": {"_count": 1}, "it": {"_count": 1}, "now": {"_count": 2}, "my": {"_count": 1}, "Did": {"_count": 1}, "youll": {"_count": 1}, "croaked": {"_count": 1}, "skulking": {"_count": 1}, "instantly": {"_count": 1}, "why": {"_count": 1}, "Everything": {"_count": 1}, "if": {"_count": 1}}, "wear": {"_count": 23, "were": {"_count": 1}, "Dudleys": {"_count": 1}, "under": {"_count": 1}, "the": {"_count": 2}, "on": {"_count": 2}, "clothes": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "other": {"_count": 1}, "handknitted": {"_count": 1}, "off": {"_count": 2}, "it": {"_count": 3}, "your": {"_count": 1}, "sun": {"_count": 1}, "my": {"_count": 1}, "Death": {"_count": 2}}, "answer": {"_count": 39, "it": {"_count": 3}, "when": {"_count": 1}, "": {"_count": 4}, "a": {"_count": 4}, "that": {"_count": 3}, "back": {"_count": 1}, "to": {"_count": 4}, "Daily": {"_count": 1}, "he": {"_count": 1}, "or": {"_count": 1}, "yet": {"_count": 1}, "charges": {"_count": 1}, "and": {"_count": 1}, "Uncle": {"_count": 1}, "questions": {"_count": 2}, "well": {"_count": 1}, "the": {"_count": 3}, "this": {"_count": 1}, "you": {"_count": 1}, "Slughorn": {"_count": 1}, "her": {"_count": 1}, "in": {"_count": 1}, "then": {"_count": 1}}, "adventure": {"_count": 1, "parks": {"_count": 1}}, "feel": {"_count": 59, "sorry": {"_count": 1}, "that": {"_count": 7}, "definitely": {"_count": 2}, "warm": {"_count": 1}, "sharp": {"_count": 1}, "too": {"_count": 1}, "jealous": {"_count": 1}, "quite": {"_count": 1}, "scared": {"_count": 1}, "very": {"_count": 2}, "ashamed": {"_count": 1}, "the": {"_count": 2}, "slightly": {"_count": 2}, "worried": {"_count": 1}, "anxious": {"_count": 1}, "sick": {"_count": 1}, "exhausted": {"_count": 1}, "cold": {"_count": 2}, "angry": {"_count": 1}, "irritated": {"_count": 1}, "properly": {"_count": 1}, "dizzy": {"_count": 1}, "really": {"_count": 1}, "his": {"_count": 3}, "them": {"_count": 1}, "nervous": {"_count": 1}, "": {"_count": 2}, "confident": {"_count": 1}, "about": {"_count": 1}, "grateful": {"_count": 1}, "numb": {"_count": 1}, "awkward": {"_count": 1}, "Voldemorts": {"_count": 1}, "or": {"_count": 1}, "like": {"_count": 1}, "annoyed": {"_count": 1}, "pleased": {"_count": 1}, "some": {"_count": 1}, "a": {"_count": 1}, "resentful": {"_count": 1}, "inside": {"_count": 1}, "not": {"_count": 1}, "him": {"_count": 1}, "being": {"_count": 1}, "except": {"_count": 1}}, "watch": {"_count": 85, "what": {"_count": 2}, "Hagrid": {"_count": 1}, "out": {"_count": 2}, "": {"_count": 9}, "as": {"_count": 3}, "my": {"_count": 1}, "our": {"_count": 2}, "him": {"_count": 7}, "the": {"_count": 21}, "his": {"_count": 1}, "Flint": {"_count": 1}, "Ron": {"_count": 2}, "than": {"_count": 1}, "like": {"_count": 1}, "while": {"_count": 1}, "at": {"_count": 1}, "Krum": {"_count": 1}, "it": {"_count": 2}, "Neville": {"_count": 1}, "their": {"_count": 1}, "Harry": {"_count": 3}, "Cho": {"_count": 1}, "Dudleys": {"_count": 1}, "Hermiones": {"_count": 1}, "her": {"_count": 2}, "over": {"_count": 2}, "from": {"_count": 1}, "this": {"_count": 2}, "Fudges": {"_count": 1}, "Umbridge": {"_count": 1}, "its": {"_count": 1}, "Dumbledore": {"_count": 1}, "after": {"_count": 1}, "Snape": {"_count": 1}, "neglect": {"_count": 1}, "Hermione": {"_count": 1}, "them": {"_count": 1}, "Ginnys": {"_count": 1}, "Slughorn": {"_count": 1}}, "cry": {"_count": 16, "loudly": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 5}, "about": {"_count": 1}, "Surely": {"_count": 1}, "weakly": {"_count": 1}, "out": {"_count": 1}, "Seize": {"_count": 1}, "in": {"_count": 2}, "again": {"_count": 1}, "It": {"_count": 1}}, "Harrys": {"_count": 69, "Im": {"_count": 1}, "surprise": {"_count": 1}, "relief": {"_count": 3}, "amazement": {"_count": 2}, "horror": {"_count": 5}, "": {"_count": 1}, "window": {"_count": 1}, "house": {"_count": 1}, "stammers": {"_count": 1}, "right": {"_count": 3}, "and": {"_count": 2}, "disappointment": {"_count": 2}, "growing": {"_count": 1}, "cheek": {"_count": 2}, "elbow": {"_count": 1}, "cup": {"_count": 1}, "enormous": {"_count": 2}, "bed": {"_count": 3}, "side": {"_count": 3}, "a": {"_count": 1}, "slight": {"_count": 1}, "great": {"_count": 2}, "left": {"_count": 2}, "cut": {"_count": 1}, "wand": {"_count": 1}, "so": {"_count": 1}, "raised": {"_count": 1}, "inquiring": {"_count": 1}, "attempt": {"_count": 1}, "face": {"_count": 1}, "indignation": {"_count": 1}, "on": {"_count": 1}, "utter": {"_count": 1}, "story": {"_count": 2}, "bewilderment": {"_count": 1}, "physical": {"_count": 1}, "aid": {"_count": 1}, "forehead": {"_count": 1}, "questioning": {"_count": 2}, "toast": {"_count": 1}, "presence": {"_count": 1}, "scar": {"_count": 2}, "bewildered": {"_count": 1}, "discomfort": {"_count": 1}, "lot": {"_count": 1}, "Cloak": {"_count": 1}, "despair": {"_count": 1}}, "hide": {"_count": 54, "that": {"_count": 1}, "behind": {"_count": 4}, "except": {"_count": 1}, "his": {"_count": 4}, "You": {"_count": 1}, "it": {"_count": 2}, "up": {"_count": 1}, "their": {"_count": 1}, "from": {"_count": 3}, "the": {"_count": 5}, "in": {"_count": 3}, "": {"_count": 2}, "himself": {"_count": 1}, "bony": {"_count": 1}, "said": {"_count": 2}, "a": {"_count": 1}, "them": {"_count": 2}, "her": {"_count": 7}, "inside": {"_count": 1}, "what": {"_count": 1}, "my": {"_count": 3}, "you": {"_count": 2}, "Ariana": {"_count": 1}, "this": {"_count": 1}, "Hagrid": {"_count": 1}, "then": {"_count": 1}, "stuff": {"_count": 1}}, "force": {"_count": 29, "him": {"_count": 3}, "their": {"_count": 3}, "Quirrell": {"_count": 1}, "Goyle": {"_count": 1}, "entry": {"_count": 1}, "Scabbers": {"_count": 1}, "the": {"_count": 5}, "Ron": {"_count": 1}, "them": {"_count": 2}, "through": {"_count": 2}, "his": {"_count": 3}, "me": {"_count": 1}, "you": {"_count": 2}, "someone": {"_count": 1}, "then": {"_count": 1}, "itself": {"_count": 1}}, "become": {"_count": 34, "until": {"_count": 1}, "": {"_count": 1}, "invisible": {"_count": 3}, "Id": {"_count": 1}, "less": {"_count": 1}, "killers": {"_count": 1}, "the": {"_count": 4}, "school": {"_count": 1}, "an": {"_count": 6}, "Minister": {"_count": 2}, "so": {"_count": 1}, "traitors": {"_count": 1}, "competent": {"_count": 1}, "visible": {"_count": 1}, "outstanding": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 2}, "all": {"_count": 1}, "or": {"_count": 1}, "powerful": {"_count": 1}, "just": {"_count": 1}, "aware": {"_count": 1}}, "go": {"_count": 427, "wrong": {"_count": 3}, "and": {"_count": 48}, "home": {"_count": 12}, "": {"_count": 41}, "what": {"_count": 1}, "said": {"_count": 5}, "to": {"_count": 72}, "back": {"_count": 36}, "making": {"_count": 1}, "over": {"_count": 2}, "somewhere": {"_count": 1}, "when": {"_count": 4}, "Lee": {"_count": 1}, "were": {"_count": 1}, "looking": {"_count": 5}, "through": {"_count": 5}, "outside": {"_count": 1}, "first": {"_count": 2}, "she": {"_count": 1}, "you": {"_count": 2}, "on": {"_count": 13}, "up": {"_count": 6}, "in": {"_count": 4}, "downhill": {"_count": 1}, "A": {"_count": 1}, "wandering": {"_count": 2}, "Harry": {"_count": 4}, "ahead": {"_count": 1}, "You": {"_count": 1}, "What": {"_count": 1}, "If": {"_count": 1}, "giving": {"_count": 1}, "away": {"_count": 2}, "at": {"_count": 2}, "out": {"_count": 4}, "next": {"_count": 3}, "near": {"_count": 4}, "into": {"_count": 17}, "after": {"_count": 3}, "ter": {"_count": 1}, "but": {"_count": 4}, "for": {"_count": 5}, "that": {"_count": 2}, "before": {"_count": 4}, "would": {"_count": 1}, "dropping": {"_count": 1}, "incognito": {"_count": 1}, "showing": {"_count": 1}, "Molly": {"_count": 1}, "he": {"_count": 3}, "I": {"_count": 1}, "down": {"_count": 10}, "with": {"_count": 13}, "until": {"_count": 2}, "there": {"_count": 2}, "red": {"_count": 1}, "otherwise": {"_count": 1}, "south": {"_count": 1}, "upsetting": {"_count": 1}, "extrafast": {"_count": 1}, "please": {"_count": 1}, "off": {"_count": 1}, "very": {"_count": 1}, "leaving": {"_count": 1}, "walking": {"_count": 1}, "sneaking": {"_count": 1}, "berserk": {"_count": 1}, "northwest": {"_count": 1}, "about": {"_count": 1}, "now": {"_count": 4}, "cautiously": {"_count": 1}, "straight": {"_count": 3}, "strolling": {"_count": 1}, "slow": {"_count": 1}, "an": {"_count": 1}, "incapable": {"_count": 1}, "youd": {"_count": 1}, "too": {"_count": 4}, "within": {"_count": 1}, "everybody": {"_count": 1}, "then": {"_count": 2}, "round": {"_count": 1}, "even": {"_count": 2}, "right": {"_count": 1}, "awry": {"_count": 1}, "mad": {"_count": 1}, "wont": {"_count": 1}, "riding": {"_count": 1}, "though": {"_count": 1}, "upon": {"_count": 1}, "theres": {"_count": 1}, "extra": {"_count": 1}, "numb": {"_count": 1}, "either": {"_count": 1}, "wherever": {"_count": 1}, "inside": {"_count": 1}, "upstairs": {"_count": 1}, "further": {"_count": 1}, "forth": {"_count": 1}, "dancing": {"_count": 1}, "camping": {"_count": 1}, "the": {"_count": 1}, "He": {"_count": 1}, "careful": {"_count": 1}, "seeing": {"_count": 1}}, "Aunt": {"_count": 9, "Petunia": {"_count": 6}, "Marge": {"_count": 3}}, "complain": {"_count": 9, "about": {"_count": 3}, "to": {"_count": 1}, "too": {"_count": 1}, "that": {"_count": 1}, "its": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "walk": {"_count": 46, "a": {"_count": 3}, "into": {"_count": 2}, "toward": {"_count": 5}, "much": {"_count": 1}, "around": {"_count": 2}, "through": {"_count": 3}, "too": {"_count": 1}, "across": {"_count": 1}, "along": {"_count": 2}, "rustling": {"_count": 1}, "with": {"_count": 2}, "up": {"_count": 3}, "away": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 2}, "out": {"_count": 1}, "on": {"_count": 2}, "and": {"_count": 1}, "down": {"_count": 1}, "past": {"_count": 2}, "she": {"_count": 1}, "straight": {"_count": 2}, "sedately": {"_count": 1}, "slowly": {"_count": 1}, "from": {"_count": 1}, "palely": {"_count": 1}, "": {"_count": 1}, "calmly": {"_count": 1}}, "finish": {"_count": 40, "the": {"_count": 5}, "me": {"_count": 1}, "it": {"_count": 6}, "": {"_count": 3}, "these": {"_count": 1}, "cleaning": {"_count": 1}, "so": {"_count": 1}, "his": {"_count": 4}, "him": {"_count": 3}, "off": {"_count": 3}, "for": {"_count": 1}, "her": {"_count": 1}, "anyway": {"_count": 1}, "this": {"_count": 1}, "your": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "Potter": {"_count": 1}, "them": {"_count": 2}, "my": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "last": {"_count": 8, "": {"_count": 1}, "him": {"_count": 3}, "exam": {"_count": 1}, "Potter": {"_count": 1}, "longer": {"_count": 1}, "year": {"_count": 1}}, "wake": {"_count": 21, "you": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 8}, "Neville": {"_count": 1}, "Ron": {"_count": 1}, "anything": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}, "every": {"_count": 1}, "Hermione": {"_count": 2}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "visit": {"_count": 58, "the": {"_count": 11}, "each": {"_count": 1}, "Charlie": {"_count": 1}, "me": {"_count": 3}, "Hagrid": {"_count": 5}, "Potter": {"_count": 1}, "her": {"_count": 2}, "Hermione": {"_count": 2}, "Hogsmeade": {"_count": 5}, "one": {"_count": 1}, "Zonkos": {"_count": 1}, "Diagon": {"_count": 1}, "Hogwarts": {"_count": 2}, "him": {"_count": 4}, "Winky": {"_count": 1}, "your": {"_count": 1}, "": {"_count": 1}, "Grawp": {"_count": 1}, "his": {"_count": 3}, "clutching": {"_count": 1}, "should": {"_count": 1}, "Madam": {"_count": 1}, "while": {"_count": 1}, "Slughorn": {"_count": 1}, "Dumbledore": {"_count": 1}, "or": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "said": {"_count": 1}, "Gringotts": {"_count": 1}}, "Brazil": {"_count": 1, "": {"_count": 1}}, "squeeze": {"_count": 4, "him": {"_count": 1}, "through": {"_count": 1}, "in": {"_count": 1}, "side": {"_count": 1}}, "death": {"_count": 14, "": {"_count": 4}, "that": {"_count": 1}, "anyway": {"_count": 1}, "threats": {"_count": 1}, "Harry": {"_count": 2}, "when": {"_count": 1}, "with": {"_count": 1}, "or": {"_count": 1}, "is": {"_count": 1}, "by": {"_count": 1}}, "run": {"_count": 50, "and": {"_count": 2}, "first": {"_count": 1}, "into": {"_count": 7}, "back": {"_count": 1}, "around": {"_count": 5}, "down": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 5}, "but": {"_count": 1}, "blindly": {"_count": 1}, "through": {"_count": 1}, "for": {"_count": 5}, "away": {"_count": 3}, "full": {"_count": 1}, "in": {"_count": 1}, "amok": {"_count": 1}, "Ive": {"_count": 1}, "now": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}, "right": {"_count": 1}, "with": {"_count": 1}, "out": {"_count": 1}, "he": {"_count": 1}, "not": {"_count": 1}, "his": {"_count": 2}, "had": {"_count": 1}, "forward": {"_count": 1}}, "ask": {"_count": 131, "questions": {"_count": 3}, "a": {"_count": 2}, "first": {"_count": 1}, "hundreds": {"_count": 1}, "": {"_count": 8}, "someone": {"_count": 1}, "him": {"_count": 8}, "who": {"_count": 1}, "the": {"_count": 3}, "Ron": {"_count": 1}, "Snape": {"_count": 1}, "Wood": {"_count": 1}, "them": {"_count": 5}, "you": {"_count": 25}, "me": {"_count": 4}, "Harry": {"_count": 3}, "What": {"_count": 1}, "whether": {"_count": 3}, "for": {"_count": 4}, "I": {"_count": 1}, "Youve": {"_count": 1}, "why": {"_count": 2}, "Professor": {"_count": 2}, "burst": {"_count": 1}, "what": {"_count": 5}, "their": {"_count": 1}, "about": {"_count": 2}, "but": {"_count": 1}, "Cho": {"_count": 2}, "where": {"_count": 1}, "Neville": {"_count": 1}, "everyone": {"_count": 1}, "anyone": {"_count": 1}, "Alastor": {"_count": 1}, "whatever": {"_count": 1}, "her": {"_count": 6}, "something": {"_count": 2}, "without": {"_count": 1}, "directly": {"_count": 1}, "said": {"_count": 2}, "Loony": {"_count": 1}, "Sirius": {"_count": 1}, "how": {"_count": 1}, "Dean": {"_count": 1}, "than": {"_count": 1}, "that": {"_count": 1}, "before": {"_count": 1}, "it": {"_count": 4}, "Ginny": {"_count": 1}, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 3}, "Slughorn": {"_count": 1}, "Rons": {"_count": 1}, "You": {"_count": 1}}, "know": {"_count": 249, "him": {"_count": 2}, "he": {"_count": 8}, "the": {"_count": 8}, "where": {"_count": 17}, "Hagrid": {"_count": 1}, "its": {"_count": 4}, "what": {"_count": 36}, "how": {"_count": 16}, "that": {"_count": 24}, "something": {"_count": 2}, "our": {"_count": 1}, "": {"_count": 30}, "who": {"_count": 3}, "about": {"_count": 10}, "were": {"_count": 1}, "if": {"_count": 2}, "Mrs": {"_count": 2}, "whos": {"_count": 2}, "hed": {"_count": 2}, "everything": {"_count": 4}, "which": {"_count": 2}, "when": {"_count": 3}, "had": {"_count": 1}, "each": {"_count": 1}, "fine": {"_count": 1}, "whats": {"_count": 4}, "it": {"_count": 2}, "foreign": {"_count": 1}, "you": {"_count": 6}, "more": {"_count": 2}, "his": {"_count": 1}, "my": {"_count": 1}, "spilled": {"_count": 1}, "exactly": {"_count": 4}, "But": {"_count": 1}, "anything": {"_count": 4}, "said": {"_count": 2}, "Molly": {"_count": 1}, "too": {"_count": 2}, "Malfoys": {"_count": 2}, "by": {"_count": 1}, "however": {"_count": 1}, "Potter": {"_count": 1}, "If": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 2}, "why": {"_count": 4}, "all": {"_count": 2}, "is": {"_count": 1}, "youll": {"_count": 1}, "as": {"_count": 1}, "was": {"_count": 1}, "either": {"_count": 1}, "things": {"_count": 2}, "aha": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 2}, "whether": {"_count": 2}, "Professor": {"_count": 1}, "though": {"_count": 1}, "but": {"_count": 2}, "I": {"_count": 1}}, "vanish": {"_count": 16, "the": {"_count": 3}, "and": {"_count": 2}, "instantly": {"_count": 1}, "": {"_count": 3}, "from": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 1}, "then": {"_count": 1}, "in": {"_count": 1}, "leaving": {"_count": 1}}, "disagree": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "join": {"_count": 74, "in": {"_count": 9}, "his": {"_count": 2}, "them": {"_count": 12}, "you": {"_count": 2}, "": {"_count": 3}, "the": {"_count": 14}, "Errol": {"_count": 1}, "forces": {"_count": 1}, "her": {"_count": 2}, "us": {"_count": 6}, "that": {"_count": 1}, "S": {"_count": 2}, "spew": {"_count": 1}, "Parvati": {"_count": 1}, "Harry": {"_count": 1}, "Hedwig": {"_count": 1}, "I": {"_count": 1}, "him": {"_count": 5}, "YouKnow": {"_count": 1}, "an": {"_count": 1}, "Dumbledore": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "what": {"_count": 1}, "friends": {"_count": 1}, "those": {"_count": 1}, "You": {"_count": 1}}, "secondary": {"_count": 1, "school": {"_count": 1}}, "Stonewall": {"_count": 2, "High": {"_count": 2}}, "London": {"_count": 20, "to": {"_count": 4}, "in": {"_count": 1}, "before": {"_count": 1}, "tomorrow": {"_count": 1}, "": {"_count": 7}, "next": {"_count": 1}, "Ron": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "if": {"_count": 1}, "than": {"_count": 1}}, "speak": {"_count": 102, "": {"_count": 25}, "calmly": {"_count": 1}, "to": {"_count": 28}, "yet": {"_count": 1}, "about": {"_count": 1}, "but": {"_count": 8}, "Parseltongue": {"_count": 2}, "when": {"_count": 1}, "loudly": {"_count": 1}, "couldnt": {"_count": 1}, "and": {"_count": 2}, "several": {"_count": 1}, "YouKnowWho": {"_count": 1}, "of": {"_count": 8}, "he": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 4}, "long": {"_count": 1}, "with": {"_count": 1}, "or": {"_count": 1}, "out": {"_count": 2}, "We": {"_count": 1}, "said": {"_count": 1}, "owing": {"_count": 1}, "ill": {"_count": 1}, "again": {"_count": 1}, "please": {"_count": 1}, "for": {"_count": 1}, "Severus": {"_count": 1}}, "laugh": {"_count": 43, "": {"_count": 17}, "or": {"_count": 2}, "at": {"_count": 3}, "for": {"_count": 1}, "a": {"_count": 2}, "as": {"_count": 3}, "but": {"_count": 3}, "along": {"_count": 1}, "again": {"_count": 2}, "himself": {"_count": 1}, "he": {"_count": 1}, "themselves": {"_count": 1}, "loudly": {"_count": 1}, "Mumll": {"_count": 1}, "remembering": {"_count": 1}, "about": {"_count": 1}, "and": {"_count": 2}}, "argue": {"_count": 21, "": {"_count": 3}, "but": {"_count": 5}, "back": {"_count": 2}, "his": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 2}, "with": {"_count": 3}, "said": {"_count": 1}, "or": {"_count": 1}, "even": {"_count": 1}, "so": {"_count": 1}}, "open": {"_count": 41, "the": {"_count": 11}, "a": {"_count": 4}, "": {"_count": 3}, "it": {"_count": 11}, "any": {"_count": 1}, "his": {"_count": 2}, "and": {"_count": 2}, "Harrys": {"_count": 1}, "your": {"_count": 1}, "again": {"_count": 1}, "for": {"_count": 1}, "this": {"_count": 1}, "Reguluss": {"_count": 1}, "using": {"_count": 1}}, "snatch": {"_count": 4, "it": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}}, "you": {"_count": 199, "": {"_count": 66}, "by": {"_count": 1}, "this": {"_count": 2}, "what": {"_count": 2}, "Professor": {"_count": 2}, "reciting": {"_count": 1}, "than": {"_count": 1}, "Hagrid": {"_count": 2}, "two": {"_count": 1}, "Mr": {"_count": 1}, "boy": {"_count": 1}, "Harry": {"_count": 7}, "too": {"_count": 1}, "said": {"_count": 6}, "then": {"_count": 2}, "meet": {"_count": 1}, "the": {"_count": 2}, "in": {"_count": 4}, "all": {"_count": 9}, "if": {"_count": 2}, "but": {"_count": 3}, "sir": {"_count": 1}, "and": {"_count": 5}, "he": {"_count": 4}, "was": {"_count": 1}, "Ron": {"_count": 1}, "last": {"_count": 1}, "Poliakoff": {"_count": 1}, "normally": {"_count": 1}, "But": {"_count": 1}, "Potter": {"_count": 2}, "after": {"_count": 2}, "that": {"_count": 2}, "Fudge": {"_count": 1}, "Diddy": {"_count": 1}, "mate": {"_count": 2}, "to": {"_count": 3}, "see": {"_count": 1}, "Dumbledore": {"_count": 1}, "how": {"_count": 2}, "Cedric": {"_count": 1}, "oughtnt": {"_count": 1}, "about": {"_count": 3}, "again": {"_count": 2}, "during": {"_count": 1}, "Umbridge": {"_count": 1}, "lateri": {"_count": 1}, "hes": {"_count": 1}, "dolt": {"_count": 1}, "my": {"_count": 1}, "is": {"_count": 2}, "can": {"_count": 1}, "some": {"_count": 1}, "students": {"_count": 1}, "bears": {"_count": 1}, "or": {"_count": 2}, "without": {"_count": 1}, "three": {"_count": 1}, "Prime": {"_count": 1}, "for": {"_count": 1}, "I": {"_count": 2}, "filthy": {"_count": 1}, "of": {"_count": 2}, "would": {"_count": 1}, "ever": {"_count": 1}, "it": {"_count": 1}, "anyway": {"_count": 2}, "perhaps": {"_count": 1}, "now": {"_count": 2}, "youre": {"_count": 1}, "Vernon": {"_count": 1}, "Remus": {"_count": 1}, "lot": {"_count": 1}, "reacted": {"_count": 1}, "here": {"_count": 1}, "while": {"_count": 1}, "ugly": {"_count": 1}, "she": {"_count": 1}, "a": {"_count": 1}, "youll": {"_count": 1}}, "green": {"_count": 1, "faster": {"_count": 1}}, "grab": {"_count": 15, "the": {"_count": 4}, "his": {"_count": 1}, "a": {"_count": 1}, "hold": {"_count": 2}, "Crookshanks": {"_count": 1}, "her": {"_count": 1}, "Cedrics": {"_count": 1}, "it": {"_count": 2}, "him": {"_count": 1}, "Luna": {"_count": 1}}, "read": {"_count": 91, "it": {"_count": 17}, "that": {"_count": 1}, "": {"_count": 14}, "as": {"_count": 2}, "the": {"_count": 14}, "smirking": {"_count": 1}, "minds": {"_count": 1}, "aloud": {"_count": 3}, "Wanderings": {"_count": 1}, "up": {"_count": 2}, "in": {"_count": 1}, "frowning": {"_count": 1}, "about": {"_count": 1}, "his": {"_count": 3}, "Hogwarts": {"_count": 2}, "on": {"_count": 1}, "an": {"_count": 1}, "this": {"_count": 3}, "you": {"_count": 1}, "whereupon": {"_count": 1}, "three": {"_count": 1}, "out": {"_count": 1}, "when": {"_count": 1}, "was": {"_count": 1}, "your": {"_count": 1}, "them": {"_count": 3}, "what": {"_count": 1}, "a": {"_count": 1}, "The": {"_count": 1}, "these": {"_count": 1}, "due": {"_count": 1}, "from": {"_count": 1}, "any": {"_count": 1}, "Proud": {"_count": 1}, "runes": {"_count": 1}, "Now": {"_count": 1}, "fairy": {"_count": 1}, "Voldemorts": {"_count": 1}}, "being": {"_count": 9, "ignored": {"_count": 2}, "treated": {"_count": 1}, "unseated": {"_count": 1}, "lectured": {"_count": 1}, "expelled": {"_count": 1}, "very": {"_count": 1}, "brave": {"_count": 1}, "stuck": {"_count": 1}}, "listen": {"_count": 43, "at": {"_count": 2}, "to": {"_count": 20}, "": {"_count": 5}, "over": {"_count": 1}, "hidden": {"_count": 1}, "because": {"_count": 1}, "again": {"_count": 2}, "and": {"_count": 2}, "too": {"_count": 3}, "if": {"_count": 1}, "in": {"_count": 3}, "the": {"_count": 1}, "He": {"_count": 1}}, "move": {"_count": 75, "everything": {"_count": 1}, "": {"_count": 12}, "around": {"_count": 4}, "while": {"_count": 2}, "youll": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 4}, "into": {"_count": 2}, "the": {"_count": 2}, "them": {"_count": 1}, "sick": {"_count": 1}, "said": {"_count": 1}, "again": {"_count": 1}, "aside": {"_count": 2}, "her": {"_count": 2}, "through": {"_count": 3}, "too": {"_count": 1}, "in": {"_count": 2}, "up": {"_count": 1}, "one": {"_count": 1}, "on": {"_count": 3}, "toward": {"_count": 2}, "to": {"_count": 2}, "between": {"_count": 1}, "you": {"_count": 1}, "sideways": {"_count": 1}, "at": {"_count": 2}, "an": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 3}, "and": {"_count": 3}, "back": {"_count": 1}, "or": {"_count": 1}, "anywhere": {"_count": 1}, "Harry": {"_count": 1}, "farther": {"_count": 1}, "upward": {"_count": 1}, "they": {"_count": 1}, "seemed": {"_count": 1}, "quickly": {"_count": 1}, "as": {"_count": 1}}, "this": {"_count": 70, "room": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 6}, "\u2018Dumbledore": {"_count": 1}, "place": {"_count": 2}, "to": {"_count": 1}, "extraordinary": {"_count": 1}, "neck": {"_count": 1}, "said": {"_count": 2}, "ruddy": {"_count": 1}, "so": {"_count": 1}, "\u2018If": {"_count": 1}, "afternoon": {"_count": 1}, "sort": {"_count": 2}, "ball": {"_count": 1}, "he": {"_count": 2}, "country": {"_count": 3}, "office": {"_count": 2}, "conversation": {"_count": 1}, "inquiry": {"_count": 1}, "it": {"_count": 1}, "article": {"_count": 1}, "tragic": {"_count": 1}, "battered": {"_count": 1}, "tedious": {"_count": 1}, "time": {"_count": 1}, "\u2018Are": {"_count": 1}, "tactic": {"_count": 1}, "school": {"_count": 3}, "day": {"_count": 2}, "but": {"_count": 1}, "house": {"_count": 1}, "lot": {"_count": 1}, "notion": {"_count": 1}, "was": {"_count": 1}, "Diagon": {"_count": 1}, "Hogwarts": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}, "whispered": {"_count": 1}, "ominous": {"_count": 1}, "and": {"_count": 1}, "way": {"_count": 1}, "point": {"_count": 1}, "castle": {"_count": 1}, "crucial": {"_count": 1}, "a": {"_count": 1}, "end": {"_count": 1}, "spot": {"_count": 3}, "brief": {"_count": 1}, "from": {"_count": 1}, "odd": {"_count": 1}, "doesnt": {"_count": 1}}, "wrestle": {"_count": 5, "Dudley": {"_count": 1}, "trolls": {"_count": 1}, "with": {"_count": 2}, "it": {"_count": 1}}, "your": {"_count": 73, "cupboard": {"_count": 1}, "glasses": {"_count": 2}, "dormitory": {"_count": 1}, "head": {"_count": 1}, "dormitories": {"_count": 1}, "strengths": {"_count": 2}, "memories": {"_count": 1}, "Uncle": {"_count": 1}, "parent": {"_count": 1}, "partner": {"_count": 1}, "toad": {"_count": 1}, "common": {"_count": 1}, "usual": {"_count": 1}, "office": {"_count": 3}, "personal": {"_count": 1}, "face": {"_count": 3}, "name": {"_count": 1}, "lessons": {"_count": 1}, "class": {"_count": 1}, "testimony": {"_count": 1}, "house": {"_count": 1}, "room": {"_count": 1}, "hearing": {"_count": 1}, "home": {"_count": 1}, "own": {"_count": 1}, "age": {"_count": 1}, "mother": {"_count": 4}, "careers": {"_count": 1}, "future": {"_count": 1}, "Head": {"_count": 1}, "cabin": {"_count": 2}, "whereabouts": {"_count": 1}, "bedroom": {"_count": 1}, "wand": {"_count": 1}, "subject": {"_count": 1}, "examination": {"_count": 1}, "aid": {"_count": 1}, "cost": {"_count": 1}, "": {"_count": 2}, "account": {"_count": 1}, "mum": {"_count": 1}, "eye": {"_count": 1}, "nose": {"_count": 1}, "story": {"_count": 1}, "party": {"_count": 1}, "original": {"_count": 1}, "poor": {"_count": 1}, "chances": {"_count": 1}, "uvula": {"_count": 1}, "body": {"_count": 1}, "expectations": {"_count": 1}, "chest": {"_count": 1}, "family": {"_count": 1}, "vault": {"_count": 2}, "curfew": {"_count": 1}, "little": {"_count": 1}, "friends": {"_count": 1}, "son": {"_count": 1}, "parents": {"_count": 1}, "appearance": {"_count": 1}, "children": {"_count": 1}}, "wait": {"_count": 47, "for": {"_count": 18}, "": {"_count": 4}, "and": {"_count": 3}, "only": {"_count": 1}, "until": {"_count": 8}, "outside": {"_count": 1}, "much": {"_count": 1}, "long": {"_count": 1}, "so": {"_count": 1}, "here": {"_count": 2}, "on": {"_count": 1}, "a": {"_count": 1}, "or": {"_count": 1}, "Nymphadora": {"_count": 1}, "to": {"_count": 1}, "ten": {"_count": 1}, "Arry": {"_count": 1}}, "work": {"_count": 94, "that": {"_count": 2}, "it": {"_count": 7}, "tonight": {"_count": 1}, "the": {"_count": 2}, "at": {"_count": 5}, "Riddles": {"_count": 1}, "pruning": {"_count": 1}, "for": {"_count": 4}, "": {"_count": 9}, "very": {"_count": 1}, "out": {"_count": 14}, "in": {"_count": 7}, "on": {"_count": 4}, "you": {"_count": 1}, "searching": {"_count": 2}, "here": {"_count": 1}, "when": {"_count": 1}, "or": {"_count": 1}, "hard": {"_count": 1}, "Harry": {"_count": 1}, "against": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "do": {"_count": 1}, "Ron": {"_count": 2}, "harder": {"_count": 2}, "to": {"_count": 1}, "this": {"_count": 2}, "but": {"_count": 2}, "as": {"_count": 1}, "a": {"_count": 2}, "there": {"_count": 1}, "any": {"_count": 1}, "its": {"_count": 1}, "He": {"_count": 1}, "like": {"_count": 1}, "some": {"_count": 1}, "alone": {"_count": 1}, "metal": {"_count": 1}, "chopping": {"_count": 1}, "muttering": {"_count": 1}, "something": {"_count": 1}, "spells": {"_count": 1}}, "knock": {"_count": 13, "in": {"_count": 1}, "over": {"_count": 1}, "players": {"_count": 1}, "points": {"_count": 1}, "people": {"_count": 1}, "the": {"_count": 3}, "Harry": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}, "on": {"_count": 1}}, "talk": {"_count": 142, "to": {"_count": 77}, "much": {"_count": 1}, "about": {"_count": 22}, "": {"_count": 9}, "through": {"_count": 1}, "now": {"_count": 2}, "sensibly": {"_count": 1}, "then": {"_count": 1}, "facetoface": {"_count": 1}, "said": {"_count": 1}, "their": {"_count": 1}, "opened": {"_count": 1}, "when": {"_count": 1}, "in": {"_count": 3}, "Harry": {"_count": 1}, "him": {"_count": 1}, "over": {"_count": 1}, "so": {"_count": 1}, "but": {"_count": 1}, "her": {"_count": 1}, "anymore": {"_count": 1}, "of": {"_count": 1}, "at": {"_count": 1}, "them": {"_count": 1}, "told": {"_count": 1}, "first": {"_count": 1}, "this": {"_count": 1}, "tactics": {"_count": 1}, "again": {"_count": 1}, "into": {"_count": 1}, "if": {"_count": 1}, "fast": {"_count": 1}, "she": {"_count": 1}, "later": {"_count": 1}}, "leave": {"_count": 142, "": {"_count": 18}, "it": {"_count": 5}, "Harry": {"_count": 3}, "the": {"_count": 40}, "me": {"_count": 2}, "their": {"_count": 3}, "her": {"_count": 4}, "behind": {"_count": 1}, "and": {"_count": 2}, "school": {"_count": 3}, "him": {"_count": 3}, "as": {"_count": 1}, "you": {"_count": 4}, "them": {"_count": 2}, "nobody": {"_count": 1}, "now": {"_count": 2}, "but": {"_count": 2}, "Moody": {"_count": 1}, "half": {"_count": 1}, "your": {"_count": 2}, "this": {"_count": 3}, "with": {"_count": 3}, "at": {"_count": 3}, "Grimmauld": {"_count": 2}, "Sirius": {"_count": 1}, "his": {"_count": 2}, "Hogwarts": {"_count": 3}, "Hagrid": {"_count": 1}, "my": {"_count": 2}, "we": {"_count": 1}, "before": {"_count": 2}, "those": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 2}, "Dumbledores": {"_count": 1}, "in": {"_count": 2}, "early": {"_count": 1}, "so": {"_count": 1}, "without": {"_count": 1}, "Tonks": {"_count": 1}, "here": {"_count": 1}, "from": {"_count": 1}, "He": {"_count": 1}, "us": {"_count": 1}, "its": {"_count": 1}, "that": {"_count": 1}, "too": {"_count": 1}}, "pack": {"_count": 11, "his": {"_count": 1}, "up": {"_count": 3}, "a": {"_count": 1}, "something": {"_count": 1}, "your": {"_count": 1}, "away": {"_count": 2}, "tonight": {"_count": 1}, "the": {"_count": 1}}, "eat": {"_count": 50, "or": {"_count": 2}, "before": {"_count": 1}, "them": {"_count": 2}, "on": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 10}, "some": {"_count": 1}, "fourth": {"_count": 1}, "anything": {"_count": 1}, "that": {"_count": 2}, "Scabbers": {"_count": 2}, "Ron": {"_count": 1}, "it": {"_count": 1}, "while": {"_count": 1}, "him": {"_count": 1}, "than": {"_count": 1}, "beneath": {"_count": 1}, "another": {"_count": 1}, "so": {"_count": 1}, "at": {"_count": 2}, "drink": {"_count": 1}, "Harry": {"_count": 2}, "this": {"_count": 1}, "when": {"_count": 2}, "but": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "more": {"_count": 1}, "except": {"_count": 1}, "and": {"_count": 2}, "enough": {"_count": 1}}, "hear": {"_count": 163, "her": {"_count": 8}, "what": {"_count": 12}, "how": {"_count": 2}, "all": {"_count": 2}, "Hagrid": {"_count": 1}, "youre": {"_count": 2}, "Snape": {"_count": 1}, "the": {"_count": 16}, "once": {"_count": 1}, "this": {"_count": 3}, "": {"_count": 8}, "why": {"_count": 1}, "anything": {"_count": 3}, "a": {"_count": 6}, "that": {"_count": 12}, "more": {"_count": 2}, "him": {"_count": 8}, "his": {"_count": 4}, "my": {"_count": 2}, "whether": {"_count": 1}, "about": {"_count": 7}, "explanations": {"_count": 1}, "me": {"_count": 2}, "were": {"_count": 1}, "your": {"_count": 2}, "Miss": {"_count": 1}, "who": {"_count": 1}, "it": {"_count": 12}, "exactly": {"_count": 2}, "O": {"_count": 1}, "details": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}, "whats": {"_count": 1}, "these": {"_count": 2}, "something": {"_count": 1}, "any": {"_count": 2}, "does": {"_count": 1}, "she": {"_count": 1}, "Siriuss": {"_count": 2}, "news": {"_count": 2}, "you": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}, "some": {"_count": 2}, "Im": {"_count": 1}, "Voldemorts": {"_count": 1}, "Uncle": {"_count": 1}, "Hermione": {"_count": 1}, "Fred": {"_count": 1}, "he": {"_count": 1}, "from": {"_count": 2}, "of": {"_count": 2}, "I": {"_count": 1}, "words": {"_count": 1}, "sounds": {"_count": 1}, "himself": {"_count": 1}, "or": {"_count": 1}, "over": {"_count": 1}, "truly": {"_count": 1}, "cheers": {"_count": 1}}, "rain": {"_count": 7, "": {"_count": 3}, "Harry": {"_count": 1}, "blurring": {"_count": 1}, "or": {"_count": 1}, "as": {"_count": 1}}, "stay": {"_count": 82, "somewhere": {"_count": 1}, "on": {"_count": 7}, "here": {"_count": 9}, "at": {"_count": 8}, "alive": {"_count": 1}, "that": {"_count": 1}, "about": {"_count": 1}, "put": {"_count": 4}, "calm": {"_count": 1}, "the": {"_count": 2}, "over": {"_count": 2}, "in": {"_count": 5}, "out": {"_count": 1}, "upright": {"_count": 1}, "with": {"_count": 3}, "conscious": {"_count": 1}, "any": {"_count": 1}, "": {"_count": 8}, "there": {"_count": 4}, "Mrs": {"_count": 1}, "indoors": {"_count": 1}, "away": {"_count": 1}, "Vernon": {"_count": 1}, "for": {"_count": 2}, "awake": {"_count": 1}, "Fudgell": {"_count": 1}, "hidden": {"_count": 2}, "up": {"_count": 1}, "recited": {"_count": 1}, "longterm": {"_count": 1}, "behind": {"_count": 1}, "mate": {"_count": 1}, "still": {"_count": 2}, "anywhere": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 2}}, "lend": {"_count": 4, "us": {"_count": 1}, "you": {"_count": 3}}, "start": {"_count": 59, "a": {"_count": 7}, "": {"_count": 8}, "proving": {"_count": 1}, "making": {"_count": 1}, "somewhere": {"_count": 1}, "Harrys": {"_count": 1}, "telling": {"_count": 1}, "any": {"_count": 1}, "this": {"_count": 1}, "feeding": {"_count": 1}, "pouring": {"_count": 1}, "their": {"_count": 1}, "Be": {"_count": 1}, "hinkypunks": {"_count": 1}, "berating": {"_count": 1}, "studying": {"_count": 1}, "beating": {"_count": 1}, "and": {"_count": 1}, "offering": {"_count": 1}, "one": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}, "asking": {"_count": 1}, "using": {"_count": 1}, "shrieking": {"_count": 1}, "McGonagalls": {"_count": 1}, "with": {"_count": 3}, "handing": {"_count": 1}, "shouting": {"_count": 1}, "all": {"_count": 1}, "we": {"_count": 1}, "again": {"_count": 1}, "its": {"_count": 1}, "you": {"_count": 1}, "our": {"_count": 1}, "work": {"_count": 1}, "performing": {"_count": 1}, "investigating": {"_count": 1}, "discussing": {"_count": 1}, "my": {"_count": 1}, "without": {"_count": 1}, "straightaway": {"_count": 1}, "crawling": {"_count": 1}, "looking": {"_count": 1}}, "deliver": {"_count": 16, "mail": {"_count": 2}, "valentines": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 2}, "their": {"_count": 1}, "him": {"_count": 1}, "Firenzes": {"_count": 1}, "these": {"_count": 1}, "it": {"_count": 1}, "unknown": {"_count": 1}, "messages": {"_count": 1}}, "curl": {"_count": 4, "up": {"_count": 3}, "his": {"_count": 1}}, "fall": {"_count": 37, "in": {"_count": 8}, "": {"_count": 7}, "right": {"_count": 1}, "off": {"_count": 3}, "for": {"_count": 2}, "ill": {"_count": 1}, "outside": {"_count": 1}, "into": {"_count": 4}, "by": {"_count": 1}, "through": {"_count": 1}, "asleep": {"_count": 2}, "to": {"_count": 2}, "more": {"_count": 1}, "shatter": {"_count": 1}, "seconds": {"_count": 1}, "back": {"_count": 1}}, "steal": {"_count": 32, "one": {"_count": 1}, "whatever": {"_count": 1}, "it": {"_count": 4}, "": {"_count": 2}, "the": {"_count": 6}, "food": {"_count": 2}, "Hermione": {"_count": 1}, "anything": {"_count": 1}, "something": {"_count": 1}, "this": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 3}, "at": {"_count": 1}, "my": {"_count": 1}, "so": {"_count": 1}, "over": {"_count": 2}, "back": {"_count": 1}, "Gryffindors": {"_count": 1}, "his": {"_count": 1}}, "annoy": {"_count": 8, "him": {"_count": 2}, "Hermione": {"_count": 1}, "Rita": {"_count": 2}, "Mum": {"_count": 1}, "me": {"_count": 1}, "his": {"_count": 1}}, "yeh": {"_count": 3, "": {"_count": 1}, "an": {"_count": 1}, "Id": {"_count": 1}}, "make": {"_count": 306, "tea": {"_count": 3}, "it": {"_count": 15}, "himself": {"_count": 6}, "up": {"_count": 11}, "sure": {"_count": 44}, "him": {"_count": 15}, "out": {"_count": 18}, "the": {"_count": 16}, "a": {"_count": 35}, "them": {"_count": 12}, "some": {"_count": 4}, "most": {"_count": 1}, "his": {"_count": 12}, "anyway": {"_count": 1}, "its": {"_count": 3}, "Your": {"_count": 1}, "their": {"_count": 2}, "in": {"_count": 1}, "herself": {"_count": 1}, "you": {"_count": 8}, "anyone": {"_count": 2}, "any": {"_count": 3}, "me": {"_count": 4}, "others": {"_count": 1}, "which": {"_count": 1}, "Harry": {"_count": 3}, "other": {"_count": 1}, "Buckbeak": {"_count": 1}, "difficulties": {"_count": 1}, "said": {"_count": 1}, "about": {"_count": 2}, "Hermione": {"_count": 1}, "yourself": {"_count": 1}, "Hagrid": {"_count": 1}, "various": {"_count": 1}, "her": {"_count": 3}, "controversial": {"_count": 1}, "absolutely": {"_count": 4}, "regular": {"_count": 1}, "your": {"_count": 2}, "of": {"_count": 2}, "contacts": {"_count": 1}, "this": {"_count": 2}, "Mugglehunting": {"_count": 1}, "friends": {"_count": 1}, "way": {"_count": 2}, "lots": {"_count": 1}, "much": {"_count": 1}, "those": {"_count": 1}, "is": {"_count": 1}, "suggestions": {"_count": 1}, "Dumbledore": {"_count": 1}, "Lord": {"_count": 1}, "arrangements": {"_count": 1}, "room": {"_count": 2}, "quite": {"_count": 1}, "themselves": {"_count": 1}, "life": {"_count": 1}, "objects": {"_count": 1}, "no": {"_count": 1}, "Kreachers": {"_count": 1}, "my": {"_count": 1}, "hushing": {"_count": 1}, "different": {"_count": 1}, "an": {"_count": 5}, "further": {"_count": 1}, "after": {"_count": 1}, "and": {"_count": 1}, "Tom": {"_count": 1}, "spells": {"_count": 1}, "Ron": {"_count": 1}, "notes": {"_count": 1}, "Malfoy": {"_count": 1}, "one": {"_count": 1}, "repayment": {"_count": 1}, "more": {"_count": 1}, "sense": {"_count": 4}, "payment": {"_count": 1}, "eye": {"_count": 1}, "plans": {"_count": 1}, "threats": {"_count": 1}, "another": {"_count": 1}, "into": {"_count": 1}, "good": {"_count": 1}, "helping": {"_count": 1}, "soup": {"_count": 1}, "swords": {"_count": 1}, "contact": {"_count": 1}, "myself": {"_count": 1}, "": {"_count": 1}, "amends": {"_count": 1}}, "stare": {"_count": 35, "at": {"_count": 20}, "into": {"_count": 2}, "down": {"_count": 2}, "closely": {"_count": 2}, "up": {"_count": 1}, "unseeingly": {"_count": 1}, "": {"_count": 2}, "avidly": {"_count": 1}, "incredulously": {"_count": 1}, "and": {"_count": 1}, "after": {"_count": 1}, "blankly": {"_count": 1}}, "fill": {"_count": 15, "the": {"_count": 5}, "his": {"_count": 2}, "in": {"_count": 2}, "you": {"_count": 1}, "an": {"_count": 1}, "another": {"_count": 1}, "all": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}}, "school": {"_count": 32, "after": {"_count": 1}, "with": {"_count": 4}, "without": {"_count": 1}, "sir": {"_count": 1}, "Dobby": {"_count": 1}, "havent": {"_count": 1}, "to": {"_count": 2}, "he": {"_count": 1}, "another": {"_count": 1}, "and": {"_count": 1}, "tonight": {"_count": 1}, "": {"_count": 6}, "so": {"_count": 1}, "or": {"_count": 1}, "Sirius": {"_count": 1}, "Hagrid": {"_count": 1}, "would": {"_count": 1}, "please": {"_count": 1}, "then": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}}, "explode": {"_count": 5, "": {"_count": 2}, "but": {"_count": 1}, "when": {"_count": 1}, "with": {"_count": 1}}, "Mr": {"_count": 45, "H": {"_count": 1}, "Nicolas": {"_count": 1}, "Ronald": {"_count": 1}, "Harry": {"_count": 1}, "Neville": {"_count": 1}, "and": {"_count": 3}, "Malfoy": {"_count": 1}, "Weasley": {"_count": 18}, "Filch": {"_count": 1}, "Crouch": {"_count": 6}, "Robertss": {"_count": 1}, "Oblansk": {"_count": 1}, "Ollivander": {"_count": 3}, "Weasleys": {"_count": 2}, "Filchs": {"_count": 1}, "Fudge": {"_count": 1}, "Gaunt": {"_count": 1}, "Lovegood": {"_count": 1}}, "inform": {"_count": 6, "you": {"_count": 4}, "the": {"_count": 1}, "our": {"_count": 1}}, "that": {"_count": 44, "rubbish": {"_count": 1}, "that": {"_count": 1}, "was": {"_count": 2}, "school": {"_count": 1}, "corridor": {"_count": 1}, "Snitch": {"_count": 1}, "to": {"_count": 1}, "You": {"_count": 1}, "most": {"_count": 1}, "story": {"_count": 1}, "St": {"_count": 1}, "": {"_count": 8}, "so": {"_count": 1}, "first": {"_count": 1}, "witch": {"_count": 1}, "Filch": {"_count": 1}, "in": {"_count": 1}, "too": {"_count": 1}, "I": {"_count": 2}, "tombstone": {"_count": 1}, "which": {"_count": 1}, "toilet": {"_count": 1}, "grindstone": {"_count": 1}, "circular": {"_count": 1}, "eh": {"_count": 1}, "same": {"_count": 1}, "door": {"_count": 1}, "book": {"_count": 1}, "Muggle": {"_count": 1}, "aspect": {"_count": 1}, "bloke": {"_count": 1}, "bit": {"_count": 1}, "House": {"_count": 1}, "farflung": {"_count": 1}, "thin": {"_count": 1}}, "draw": {"_count": 21, "a": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 4}, "breath": {"_count": 2}, "attention": {"_count": 3}, "it": {"_count": 2}, "out": {"_count": 1}, "ahead": {"_count": 1}, "your": {"_count": 2}, "courage": {"_count": 1}, "his": {"_count": 2}, "every": {"_count": 1}}, "Vol": {"_count": 1, "sorry": {"_count": 1}}, "die": {"_count": 50, "": {"_count": 18}, "a": {"_count": 1}, "he": {"_count": 1}, "while": {"_count": 1}, "and": {"_count": 2}, "fighting": {"_count": 1}, "or": {"_count": 1}, "trying": {"_count": 2}, "for": {"_count": 9}, "either": {"_count": 1}, "like": {"_count": 1}, "crouching": {"_count": 1}, "kneeling": {"_count": 1}, "upright": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "when": {"_count": 1}, "Harry": {"_count": 1}, "would": {"_count": 1}, "to": {"_count": 1}, "undefeated": {"_count": 1}}, "carry": {"_count": 17, "on": {"_count": 4}, "or": {"_count": 1}, "an": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "tea": {"_count": 1}, "several": {"_count": 1}, "through": {"_count": 1}, "he": {"_count": 1}, "him": {"_count": 1}, "around": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 2}}, "lock": {"_count": 11, "him": {"_count": 1}, "them": {"_count": 1}, "away": {"_count": 1}, "you": {"_count": 2}, "his": {"_count": 1}, "Harry": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}}, "kick": {"_count": 7, "him": {"_count": 2}, "something": {"_count": 1}, "it": {"_count": 1}, "himself": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "give": {"_count": 172, "in": {"_count": 3}, "him": {"_count": 22}, "it": {"_count": 8}, "you": {"_count": 21}, "Mrs": {"_count": 1}, "up": {"_count": 8}, "way": {"_count": 2}, "Hagrid": {"_count": 1}, "me": {"_count": 13}, "us": {"_count": 7}, "Harry": {"_count": 5}, "out": {"_count": 2}, "Colin": {"_count": 1}, "them": {"_count": 8}, "Ron": {"_count": 2}, "my": {"_count": 2}, "Scabbers": {"_count": 1}, "Ireland": {"_count": 1}, "any": {"_count": 3}, "your": {"_count": 1}, "Ogwarts": {"_count": 1}, "our": {"_count": 1}, "their": {"_count": 2}, "yourself": {"_count": 1}, "an": {"_count": 4}, "the": {"_count": 13}, "back": {"_count": 2}, "his": {"_count": 4}, "Dobby": {"_count": 1}, "her": {"_count": 3}, "evidence": {"_count": 1}, "to": {"_count": 1}, "Stubby": {"_count": 1}, "Snape": {"_count": 1}, "Umbridge": {"_count": 1}, "a": {"_count": 4}, "service": {"_count": 1}, "Ginny": {"_count": 1}, "himself": {"_count": 3}, "neither": {"_count": 1}, "satisfactory": {"_count": 1}, "full": {"_count": 1}, "that": {"_count": 2}, "Crack": {"_count": 1}, "chase": {"_count": 1}, "MadEye": {"_count": 1}, "away": {"_count": 1}, "Bill": {"_count": 1}, "Voldemort": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 1}, "Neville": {"_count": 1}}, "point": {"_count": 11, "at": {"_count": 2}, "new": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 1}, "out": {"_count": 3}, "their": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}}, "attack": {"_count": 32, "Hagrid": {"_count": 1}, "Justin": {"_count": 1}, "Muggleborns": {"_count": 1}, "next": {"_count": 1}, "me": {"_count": 4}, "us": {"_count": 2}, "the": {"_count": 1}, "": {"_count": 2}, "you": {"_count": 6}, "him": {"_count": 4}, "but": {"_count": 1}, "them": {"_count": 1}, "children": {"_count": 1}, "Dumbledore": {"_count": 1}, "any": {"_count": 1}, "Snape": {"_count": 1}, "back": {"_count": 1}, "her": {"_count": 1}, "and": {"_count": 1}}, "wave": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}}, "imagine": {"_count": 14, "him": {"_count": 2}, "it": {"_count": 1}, "what": {"_count": 2}, "his": {"_count": 1}, "dementors": {"_count": 1}, "Rons": {"_count": 1}, "going": {"_count": 1}, "how": {"_count": 2}, "two": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}}, "try": {"_count": 107, "and": {"_count": 63}, "to": {"_count": 13}, "on": {"_count": 2}, "since": {"_count": 1}, "it": {"_count": 4}, "other": {"_count": 1}, "for": {"_count": 2}, "what": {"_count": 1}, "anything": {"_count": 1}, "looping": {"_count": 1}, "havent": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 3}, "a": {"_count": 2}, "out": {"_count": 4}, "over": {"_count": 1}, "again": {"_count": 1}, "firewhisky": {"_count": 1}, "that": {"_count": 1}, "dissuading": {"_count": 1}, "another": {"_count": 1}, "too": {"_count": 1}}, "keep": {"_count": 279, "it": {"_count": 16}, "up": {"_count": 24}, "": {"_count": 1}, "things": {"_count": 1}, "looking": {"_count": 2}, "a": {"_count": 15}, "his": {"_count": 32}, "bringing": {"_count": 1}, "your": {"_count": 6}, "eye": {"_count": 1}, "running": {"_count": 4}, "putting": {"_count": 2}, "the": {"_count": 10}, "an": {"_count": 10}, "Quirrell": {"_count": 2}, "hold": {"_count": 2}, "Snape": {"_count": 2}, "my": {"_count": 3}, "Hagrid": {"_count": 1}, "you": {"_count": 6}, "reminding": {"_count": 1}, "him": {"_count": 16}, "them": {"_count": 9}, "himself": {"_count": 3}, "famous": {"_count": 1}, "her": {"_count": 11}, "Scabbers": {"_count": 1}, "themselves": {"_count": 3}, "this": {"_count": 2}, "out": {"_count": 5}, "in": {"_count": 2}, "smooth": {"_count": 1}, "water": {"_count": 1}, "on": {"_count": 1}, "foreign": {"_count": 1}, "me": {"_count": 3}, "changing": {"_count": 2}, "practicing": {"_count": 1}, "those": {"_count": 1}, "swimming": {"_count": 1}, "going": {"_count": 3}, "everything": {"_count": 1}, "that": {"_count": 4}, "Mr": {"_count": 1}, "watch": {"_count": 4}, "talking": {"_count": 7}, "quiet": {"_count": 1}, "walking": {"_count": 1}, "shouting": {"_count": 1}, "normal": {"_count": 1}, "eating": {"_count": 1}, "examining": {"_count": 1}, "pace": {"_count": 1}, "track": {"_count": 2}, "our": {"_count": 1}, "healing": {"_count": 1}, "playing": {"_count": 1}, "calm": {"_count": 1}, "taking": {"_count": 1}, "from": {"_count": 1}, "Sirius": {"_count": 2}, "students": {"_count": 1}, "Ron": {"_count": 1}, "as": {"_count": 1}, "all": {"_count": 1}, "rereading": {"_count": 1}, "asking": {"_count": 1}, "something": {"_count": 1}, "I": {"_count": 1}, "these": {"_count": 1}, "at": {"_count": 1}, "part": {"_count": 1}, "drinking": {"_count": 2}, "their": {"_count": 4}, "hushed": {"_count": 1}, "George": {"_count": 1}, "fear": {"_count": 1}, "using": {"_count": 1}, "moving": {"_count": 1}, "thinking": {"_count": 1}, "Dumbledore": {"_count": 1}, "any": {"_count": 1}, "us": {"_count": 3}, "resisting": {"_count": 1}, "Bogrod": {"_count": 1}, "fighting": {"_count": 2}, "em": {"_count": 1}, "Lily": {"_count": 1}, "Ignotuss": {"_count": 1}}, "Transfiguration": {"_count": 4, "by": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}}, "Find": {"_count": 3, "Them": {"_count": 3}}, "SelfProtection": {"_count": 2, "by": {"_count": 1}, "and": {"_count": 1}}, "getting": {"_count": 8, "there": {"_count": 1}, "back": {"_count": 1}, "onto": {"_count": 1}, "trampled": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "students": {"_count": 1}, "into": {"_count": 1}}, "shake": {"_count": 20, "your": {"_count": 1}, "Harrys": {"_count": 4}, "hands": {"_count": 2}, "off": {"_count": 3}, "Neville": {"_count": 1}, "": {"_count": 2}, "everyone": {"_count": 1}, "him": {"_count": 2}, "her": {"_count": 1}, "uncontrollably": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}}, "meet": {"_count": 76, "you": {"_count": 9}, "when": {"_count": 1}, "them": {"_count": 8}, "Ron": {"_count": 1}, "": {"_count": 5}, "me": {"_count": 5}, "nobody": {"_count": 1}, "him": {"_count": 7}, "To": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 8}, "her": {"_count": 3}, "in": {"_count": 1}, "it": {"_count": 1}, "Dark": {"_count": 1}, "Professor": {"_count": 1}, "us": {"_count": 3}, "and": {"_count": 2}, "Harry": {"_count": 1}, "that": {"_count": 2}, "Cho": {"_count": 1}, "other": {"_count": 1}, "Hermione": {"_count": 3}, "Bellatrix": {"_count": 1}, "Sibyll": {"_count": 1}, "Eldred": {"_count": 1}, "Slughorn": {"_count": 1}, "Snape": {"_count": 1}, "barriers": {"_count": 1}, "Harrys": {"_count": 1}}, "ppick": {"_count": 1, "up": {"_count": 1}}, "himself": {"_count": 48, "": {"_count": 11}, "not": {"_count": 1}, "why": {"_count": 1}, "at": {"_count": 2}, "Take": {"_count": 1}, "was": {"_count": 1}, "because": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 2}, "than": {"_count": 5}, "but": {"_count": 1}, "if": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 3}, "slightly": {"_count": 1}, "after": {"_count": 1}, "still": {"_count": 1}, "bless": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "feverishly": {"_count": 1}, "Ron": {"_count": 1}, "then": {"_count": 1}, "any": {"_count": 1}, "as": {"_count": 3}, "had": {"_count": 1}, "that": {"_count": 1}, "yet": {"_count": 1}}, "Diagon": {"_count": 13, "Alley": {"_count": 13}}, "count": {"_count": 6, "leading": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "Aberforth": {"_count": 1}}, "Hagrid": {"_count": 40, "I": {"_count": 2}, "over": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 12}, "and": {"_count": 3}, "unless": {"_count": 1}, "when": {"_count": 3}, "again": {"_count": 1}, "this": {"_count": 1}, "s": {"_count": 4}, "without": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 2}, "wasnt": {"_count": 1}, "not": {"_count": 1}, "said": {"_count": 2}, "or": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}}, "both": {"_count": 5, "vaults": {"_count": 1}, "your": {"_count": 1}, "hands": {"_count": 1}, "people": {"_count": 1}, "of": {"_count": 1}}, "lean": {"_count": 5, "against": {"_count": 3}, "closer": {"_count": 2}}, "Griphook": {"_count": 7, "": {"_count": 2}, "and": {"_count": 2}, "first": {"_count": 3}}, "pin": {"_count": 3, "it": {"_count": 3}}, "drag": {"_count": 10, "them": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 2}, "him": {"_count": 2}, "himself": {"_count": 1}, "up": {"_count": 1}, "back": {"_count": 2}}, "play": {"_count": 32, "for": {"_count": 2}, "that": {"_count": 1}, "": {"_count": 6}, "chess": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "our": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 1}, "on": {"_count": 3}, "Quidditch": {"_count": 3}, "before": {"_count": 1}, "games": {"_count": 1}, "dirty": {"_count": 1}, "along": {"_count": 1}, "little": {"_count": 1}, "was": {"_count": 1}, "with": {"_count": 1}}, "show": {"_count": 78, "he": {"_count": 3}, "the": {"_count": 6}, "you": {"_count": 13}, "me": {"_count": 4}, "his": {"_count": 4}, "them": {"_count": 5}, "off": {"_count": 3}, "a": {"_count": 4}, "that": {"_count": 4}, "him": {"_count": 6}, "himself": {"_count": 2}, "support": {"_count": 1}, "theyd": {"_count": 1}, "Snape": {"_count": 1}, "how": {"_count": 1}, "manners": {"_count": 1}, "those": {"_count": 1}, "people": {"_count": 1}, "it": {"_count": 2}, "any": {"_count": 1}, "us": {"_count": 2}, "dunnit": {"_count": 1}, "thumb": {"_count": 1}, "Dumbledore": {"_count": 1}, "slightly": {"_count": 1}, "this": {"_count": 1}, "Mr": {"_count": 1}, "on": {"_count": 1}, "curiosity": {"_count": 1}, "in": {"_count": 1}, "two": {"_count": 1}, "yourselves": {"_count": 1}, "your": {"_count": 1}}, "curse": {"_count": 10, "Dudley": {"_count": 1}, "you": {"_count": 1}, "their": {"_count": 1}, "hers": {"_count": 1}, "Snape": {"_count": 2}, "everyone": {"_count": 1}, "many": {"_count": 1}, "James": {"_count": 1}, "him": {"_count": 1}}, "I": {"_count": 8, "know": {"_count": 1}, "was": {"_count": 1}, "SUPPOSE": {"_count": 1}, "mean": {"_count": 1}, "think": {"_count": 1}, "have": {"_count": 1}, "dont": {"_count": 1}, "wont": {"_count": 1}}, "": {"_count": 158, ".": {"_count": 102}, "?": {"_count": 41}, "!": {"_count": 15}}, "tingle": {"_count": 2, "with": {"_count": 1}, "as": {"_count": 1}}, "nose": {"_count": 8, "": {"_count": 3}, "into": {"_count": 1}, "with": {"_count": 3}, "hopefully": {"_count": 1}}, "finger": {"_count": 1, "then": {"_count": 1}}, "elbow": {"_count": 2, "shoulder": {"_count": 1}, "and": {"_count": 1}}, "floor": {"_count": 1, "knee": {"_count": 1}}, "armpit": {"_count": 1, "and": {"_count": 1}}, "worry": {"_count": 55, "well": {"_count": 1}, "she": {"_count": 1}, "about": {"_count": 33}, "yet": {"_count": 1}, "Harry": {"_count": 1}, "youll": {"_count": 1}, "people": {"_count": 1}, "Professor": {"_count": 1}, "for": {"_count": 1}, "grunted": {"_count": 1}, "I": {"_count": 1}, "them": {"_count": 1}, "that": {"_count": 1}, "They": {"_count": 1}, "not": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}, "my": {"_count": 1}, "at": {"_count": 1}}, "vacuum": {"_count": 1, "anymore": {"_count": 1}}, "sleep": {"_count": 37, "Harry": {"_count": 1}, "": {"_count": 13}, "in": {"_count": 4}, "he": {"_count": 1}, "even": {"_count": 1}, "but": {"_count": 1}, "until": {"_count": 1}, "his": {"_count": 2}, "and": {"_count": 2}, "prevent": {"_count": 1}, "said": {"_count": 1}, "waking": {"_count": 1}, "every": {"_count": 1}, "at": {"_count": 2}, "out": {"_count": 1}, "on": {"_count": 2}, "looking": {"_count": 1}, "here": {"_count": 1}}, "September": {"_count": 2, "the": {"_count": 2}}, "Kings": {"_count": 11, "Cross": {"_count": 11}}, "let": {"_count": 79, "them": {"_count": 16}, "off": {"_count": 1}, "her": {"_count": 3}, "that": {"_count": 1}, "me": {"_count": 5}, "him": {"_count": 14}, "go": {"_count": 4}, "his": {"_count": 2}, "it": {"_count": 4}, "Black": {"_count": 1}, "Malfoy": {"_count": 1}, "Pettigrew": {"_count": 1}, "Frank": {"_count": 1}, "Uncle": {"_count": 1}, "us": {"_count": 3}, "Harry": {"_count": 3}, "people": {"_count": 1}, "Voldemort": {"_count": 1}, "you": {"_count": 6}, "MadEye": {"_count": 1}, "your": {"_count": 1}, "Hagrid": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}, "anyone": {"_count": 1}, "the": {"_count": 1}, "six": {"_count": 1}, "this": {"_count": 1}, "Gellert": {"_count": 1}}, "to": {"_count": 12, "go": {"_count": 2}, "get": {"_count": 3}, "poison": {"_count": 1}, "kill": {"_count": 1}, "Dobby": {"_count": 1}, "round": {"_count": 1}, "help": {"_count": 1}, "end": {"_count": 1}, "reach": {"_count": 1}}, "Hogwarts": {"_count": 97, "": {"_count": 48}, "and": {"_count": 6}, "said": {"_count": 2}, "he": {"_count": 2}, "also": {"_count": 1}, "but": {"_count": 2}, "either": {"_count": 1}, "since": {"_count": 1}, "ever": {"_count": 1}, "had": {"_count": 2}, "when": {"_count": 2}, "do": {"_count": 1}, "shell": {"_count": 1}, "where": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 4}, "then": {"_count": 1}, "without": {"_count": 1}, "so": {"_count": 2}, "safely": {"_count": 1}, "sir": {"_count": 2}, "drew": {"_count": 1}, "on": {"_count": 1}, "students": {"_count": 1}, "School": {"_count": 1}, "If": {"_count": 1}, "as": {"_count": 1}, "tomorrow": {"_count": 1}, "with": {"_count": 1}, "through": {"_count": 1}, "intending": {"_count": 1}, "Ive": {"_count": 1}, "desperately": {"_count": 1}, "Dumbledore": {"_count": 1}, "before": {"_count": 1}}, "Smeltings": {"_count": 1, "": {"_count": 1}}, "attract": {"_count": 4, "a": {"_count": 1}, "small": {"_count": 1}, "his": {"_count": 1}, "trouble": {"_count": 1}}, "panic": {"_count": 1, "": {"_count": 1}}, "four": {"_count": 3, "boys": {"_count": 1}, "What": {"_count": 1}, "or": {"_count": 1}}, "blink": {"_count": 7, "in": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}, "or": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}}, "hurry": {"_count": 8, "up": {"_count": 2}, "": {"_count": 1}, "toward": {"_count": 1}, "Im": {"_count": 1}, "upstairs": {"_count": 1}, "or": {"_count": 1}, "Travers": {"_count": 1}}, "How": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "platforms": {"_count": 1, "nine": {"_count": 1}}, "smash": {"_count": 3, "right": {"_count": 1}, "this": {"_count": 1}, "several": {"_count": 1}}, "one": {"_count": 37, "another": {"_count": 12}, "side": {"_count": 9}, "of": {"_count": 10}, "though": {"_count": 1}, "": {"_count": 3}, "by": {"_count": 1}, "thousand": {"_count": 1}}, "shove": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "lift": {"_count": 4, "it": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "jerk": {"_count": 2, "out": {"_count": 1}, "around": {"_count": 1}}, "themselves": {"_count": 14, "Oh": {"_count": 1}, "and": {"_count": 1}, "working": {"_count": 1}, "mostly": {"_count": 1}, "": {"_count": 6}, "in": {"_count": 1}, "by": {"_count": 1}, "again": {"_count": 1}, "that": {"_count": 1}}, "but": {"_count": 5, "it": {"_count": 1}, "then": {"_count": 1}, "another": {"_count": 1}, "she": {"_count": 1}, "whats": {"_count": 1}}, "live": {"_count": 30, "with": {"_count": 11}, "up": {"_count": 3}, "remember": {"_count": 1}, "Potter": {"_count": 1}, "longer": {"_count": 1}, "here": {"_count": 3}, "": {"_count": 1}, "off": {"_count": 1}, "there": {"_count": 2}, "in": {"_count": 1}, "at": {"_count": 1}, "among": {"_count": 1}, "together": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 1}}, "staring": {"_count": 4, "out": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 2}}, "afford": {"_count": 5, "an": {"_count": 1}, "all": {"_count": 1}, "some": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "cheer": {"_count": 6, "Ron": {"_count": 2}, "him": {"_count": 2}, "Harry": {"_count": 1}, "about": {"_count": 1}}, "learn": {"_count": 30, "": {"_count": 2}, "Im": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 3}, "magic": {"_count": 1}, "a": {"_count": 1}, "how": {"_count": 3}, "your": {"_count": 1}, "any": {"_count": 1}, "some": {"_count": 2}, "from": {"_count": 3}, "Defense": {"_count": 1}, "Hermione": {"_count": 2}, "to": {"_count": 4}, "Occlumency": {"_count": 1}, "spells": {"_count": 1}, "what": {"_count": 1}, "more": {"_count": 1}}, "miss": {"_count": 19, "anything": {"_count": 2}, "the": {"_count": 7}, "your": {"_count": 1}, "": {"_count": 2}, "things": {"_count": 1}, "more": {"_count": 1}, "dealing": {"_count": 1}, "spark": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}}, "share": {"_count": 21, "before": {"_count": 1}, "it": {"_count": 2}, "": {"_count": 2}, "his": {"_count": 3}, "my": {"_count": 1}, "Harrys": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 4}, "someone": {"_count": 1}, "your": {"_count": 1}, "with": {"_count": 1}}, "collect": {"_count": 13, "famous": {"_count": 1}, "bags": {"_count": 1}, "the": {"_count": 1}, "information": {"_count": 1}, "some": {"_count": 1}, "one": {"_count": 1}, "you": {"_count": 1}, "trophies": {"_count": 2}, "this": {"_count": 1}, "it": {"_count": 1}, "hair": {"_count": 1}, "possessions": {"_count": 1}}, "hang": {"_count": 10, "around": {"_count": 3}, "on": {"_count": 2}, "up": {"_count": 1}, "suspended": {"_count": 1}, "themselves": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 1}}, "nibble": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "rob": {"_count": 3, "a": {"_count": 1}, "Gringotts": {"_count": 1}, "me": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 1}, "such": {"_count": 1}, "no": {"_count": 1}}, "fight": {"_count": 52, "us": {"_count": 1}, "Malfoy": {"_count": 2}, "that": {"_count": 1}, "what": {"_count": 1}, "them": {"_count": 4}, "": {"_count": 8}, "down": {"_count": 2}, "her": {"_count": 1}, "off": {"_count": 3}, "the": {"_count": 5}, "rather": {"_count": 1}, "and": {"_count": 2}, "my": {"_count": 1}, "No": {"_count": 1}, "YouKnow": {"_count": 1}, "back": {"_count": 1}, "his": {"_count": 1}, "your": {"_count": 1}, "but": {"_count": 1}, "each": {"_count": 1}, "Dobby": {"_count": 1}, "to": {"_count": 2}, "dementors": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 1}, "anymore": {"_count": 1}, "for": {"_count": 1}, "when": {"_count": 1}, "along": {"_count": 1}, "screaming": {"_count": 1}, "in": {"_count": 1}, "again": {"_count": 1}}, "Ron": {"_count": 146, "Ron": {"_count": 1}, "": {"_count": 45}, "to": {"_count": 3}, "and": {"_count": 50}, "in": {"_count": 2}, "whispered": {"_count": 1}, "by": {"_count": 1}, "explaining": {"_count": 1}, "she": {"_count": 1}, "but": {"_count": 3}, "Lets": {"_count": 1}, "whose": {"_count": 1}, "bound": {"_count": 1}, "or": {"_count": 1}, "sweeping": {"_count": 1}, "as": {"_count": 4}, "who": {"_count": 10}, "nor": {"_count": 1}, "bent": {"_count": 1}, "again": {"_count": 1}, "feeling": {"_count": 1}, "And": {"_count": 1}, "Hermione": {"_count": 3}, "said": {"_count": 1}, "pushing": {"_count": 1}, "under": {"_count": 1}, "when": {"_count": 2}, "ready": {"_count": 1}, "STUBEFYl": {"_count": 1}, "already": {"_count": 1}, "about": {"_count": 1}, "with": {"_count": 1}, "even": {"_count": 1}}, "our": {"_count": 23, "side": {"_count": 1}, "enemies": {"_count": 1}, "friends": {"_count": 1}, "home": {"_count": 1}, "common": {"_count": 2}, "ranks": {"_count": 1}, "second": {"_count": 1}, "inquiry": {"_count": 1}, "house": {"_count": 2}, "foreign": {"_count": 1}, "letter": {"_count": 1}, "brooms": {"_count": 1}, "family": {"_count": 1}, "cause": {"_count": 1}, "sister": {"_count": 1}, "new": {"_count": 1}, "old": {"_count": 1}, "aid": {"_count": 1}, "daughter": {"_count": 1}, "school": {"_count": 1}, "prefects": {"_count": 1}}, "Hermione": {"_count": 88, "": {"_count": 27}, "so": {"_count": 3}, "as": {"_count": 2}, "who": {"_count": 7}, "Black": {"_count": 1}, "and": {"_count": 13}, "dangling": {"_count": 1}, "that": {"_count": 3}, "s": {"_count": 5}, "is": {"_count": 1}, "in": {"_count": 1}, "Ron": {"_count": 1}, "raised": {"_count": 1}, "said": {"_count": 1}, "Granger": {"_count": 2}, "was": {"_count": 1}, "all": {"_count": 1}, "smirking": {"_count": 1}, "during": {"_count": 1}, "any": {"_count": 1}, "he": {"_count": 1}, "Okay": {"_count": 1}, "moving": {"_count": 1}, "read": {"_count": 1}, "both": {"_count": 1}, "were": {"_count": 1}, "Look": {"_count": 1}, "rolling": {"_count": 1}, "while": {"_count": 1}, "standing": {"_count": 1}, "huddled": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "screamed": {"_count": 1}}, "cross": {"_count": 8, "": {"_count": 2}, "off": {"_count": 2}, "this": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}}, "whichever": {"_count": 1, "House": {"_count": 1}}, "flatten": {"_count": 4, "his": {"_count": 3}, "it": {"_count": 1}}, "lead": {"_count": 10, "Harry": {"_count": 1}, "another": {"_count": 1}, "them": {"_count": 1}, "Right": {"_count": 1}, "to": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}}, "avoid": {"_count": 57, "all": {"_count": 2}, "was": {"_count": 1}, "it": {"_count": 8}, "the": {"_count": 15}, "trouble": {"_count": 1}, "a": {"_count": 4}, "attracting": {"_count": 1}, "": {"_count": 1}, "Snapes": {"_count": 1}, "any": {"_count": 1}, "him": {"_count": 1}, "catching": {"_count": 1}, "her": {"_count": 1}, "another": {"_count": 2}, "sliding": {"_count": 1}, "Harrys": {"_count": 1}, "anyone": {"_count": 1}, "Malfoy": {"_count": 1}, "watching": {"_count": 1}, "breathing": {"_count": 1}, "detection": {"_count": 1}, "looking": {"_count": 1}, "hitting": {"_count": 3}, "them": {"_count": 2}, "answering": {"_count": 1}, "brushing": {"_count": 1}, "capture": {"_count": 1}, "telling": {"_count": 1}}, "sing": {"_count": 5, "Oh": {"_count": 1}, "carols": {"_count": 1}, "about": {"_count": 1}, "Weasley": {"_count": 1}, "opera": {"_count": 1}}, "each": {"_count": 53, "of": {"_count": 7}, "other": {"_count": 39}, "lesson": {"_count": 1}, "his": {"_count": 1}, "dragon": {"_count": 1}, "student": {"_count": 1}, "side": {"_count": 1}, "person": {"_count": 1}, "second": {"_count": 1}}, "sit": {"_count": 65, "down": {"_count": 17}, "next": {"_count": 4}, "on": {"_count": 7}, "with": {"_count": 5}, "in": {"_count": 6}, "up": {"_count": 5}, "there": {"_count": 4}, "here": {"_count": 5}, "it": {"_count": 1}, "for": {"_count": 1}, "while": {"_count": 1}, "still": {"_count": 1}, "tight": {"_count": 1}, "the": {"_count": 1}, "rather": {"_count": 1}, "at": {"_count": 1}, "they": {"_count": 1}, "beside": {"_count": 2}, "alone": {"_count": 1}}, "Hannah": {"_count": 1, "": {"_count": 1}}, "Ravenclaw": {"_count": 5, "too": {"_count": 1}, "and": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}, "Tower": {"_count": 1}}, "decide": {"_count": 39, "": {"_count": 1}, "with": {"_count": 1}, "what": {"_count": 6}, "on": {"_count": 2}, "where": {"_count": 2}, "how": {"_count": 5}, "Harry": {"_count": 1}, "upon": {"_count": 2}, "who": {"_count": 1}, "that": {"_count": 5}, "whats": {"_count": 1}, "for": {"_count": 1}, "is": {"_count": 1}, "which": {"_count": 4}, "whether": {"_count": 1}, "to": {"_count": 1}, "once": {"_count": 1}, "said": {"_count": 1}, "Ron": {"_count": 1}, "Horcruxes": {"_count": 1}}, "jog": {"_count": 6, "back": {"_count": 1}, "to": {"_count": 2}, "Ron": {"_count": 1}, "along": {"_count": 1}, "in": {"_count": 1}}, "MacDougal": {"_count": 1, "Morag": {"_count": 1}}, "prove": {"_count": 17, "yourself": {"_count": 2}, "said": {"_count": 1}, "she": {"_count": 1}, "what": {"_count": 1}, "he": {"_count": 2}, "hes": {"_count": 1}, "it": {"_count": 2}, "my": {"_count": 1}, "myself": {"_count": 1}, "himself": {"_count": 2}, "them": {"_count": 1}, "to": {"_count": 1}, "Voldemorts": {"_count": 1}}, "greatness": {"_count": 2, "no": {"_count": 2}}, "of": {"_count": 1, "course": {"_count": 1}}, "behead": {"_count": 1, "him": {"_count": 1}}, "help": {"_count": 150, "us": {"_count": 6}, "him": {"_count": 27}, "": {"_count": 16}, "Fred": {"_count": 1}, "Harry": {"_count": 5}, "me": {"_count": 13}, "whoever": {"_count": 1}, "sir": {"_count": 1}, "her": {"_count": 9}, "a": {"_count": 2}, "them": {"_count": 5}, "Hagrid": {"_count": 4}, "Sirius": {"_count": 2}, "you": {"_count": 16}, "this": {"_count": 2}, "Bellowing": {"_count": 1}, "the": {"_count": 3}, "Cedric": {"_count": 1}, "solve": {"_count": 1}, "myself": {"_count": 1}, "Aunt": {"_count": 1}, "Bill": {"_count": 1}, "Tonks": {"_count": 1}, "themselves": {"_count": 2}, "Professor": {"_count": 1}, "and": {"_count": 2}, "Ginny": {"_count": 1}, "with": {"_count": 2}, "others": {"_count": 1}, "were": {"_count": 1}, "pointing": {"_count": 1}, "Neville": {"_count": 1}, "Draco": {"_count": 1}, "but": {"_count": 2}, "herself": {"_count": 1}, "himl": {"_count": 1}, "Malfoy": {"_count": 1}, "Scrimgeour": {"_count": 1}, "himself": {"_count": 2}, "Dumbledore": {"_count": 1}, "fight": {"_count": 1}, "Potter": {"_count": 1}, "identify": {"_count": 1}, "Mums": {"_count": 1}, "not": {"_count": 1}, "it": {"_count": 1}, "Jets": {"_count": 1}, "an": {"_count": 1}}, "Malfoy": {"_count": 10, "who": {"_count": 3}, "here": {"_count": 1}, "": {"_count": 2}, "bent": {"_count": 1}, "since": {"_count": 1}, "to": {"_count": 1}, "like": {"_count": 1}}, "Professor": {"_count": 63, "Dumbledore": {"_count": 7}, "Quirrell": {"_count": 1}, "McGonagall": {"_count": 19}, "McGonagalls": {"_count": 2}, "Trelawneys": {"_count": 4}, "Trelawney": {"_count": 4}, "Lupins": {"_count": 1}, "Snape": {"_count": 4}, "Vector": {"_count": 1}, "Dumbledorel": {"_count": 1}, "Sinistra": {"_count": 3}, "Moody": {"_count": 1}, "Sprout": {"_count": 2}, "Moodys": {"_count": 1}, "Binns": {"_count": 2}, "Umbridge": {"_count": 2}, "Flitwick": {"_count": 2}, "GrubblyPlank": {"_count": 1}, "GrubblyPlanks": {"_count": 1}, "Slughorn": {"_count": 2}, "Dippet": {"_count": 1}, "Snapes": {"_count": 1}}, "everyone": {"_count": 7, "knows": {"_count": 1}, "who": {"_count": 1}, "else": {"_count": 2}, "in": {"_count": 1}, "gathered": {"_count": 1}, "said": {"_count": 1}}, "all": {"_count": 27, "pupils": {"_count": 1}, "students": {"_count": 1}, "fours": {"_count": 1}, "last": {"_count": 1}, "your": {"_count": 2}, "of": {"_count": 5}, "the": {"_count": 4}, "sorts": {"_count": 3}, "her": {"_count": 1}, "my": {"_count": 1}, "below": {"_count": 1}, "those": {"_count": 1}, "but": {"_count": 1}, "Wizarding": {"_count": 1}, "these": {"_count": 1}, "intents": {"_count": 1}, "our": {"_count": 1}}, "remind": {"_count": 9, "you": {"_count": 4}, "me": {"_count": 2}, "her": {"_count": 2}, "him": {"_count": 1}}, "Percy": {"_count": 11, "": {"_count": 4}, "but": {"_count": 2}, "dismantling": {"_count": 1}, "who": {"_count": 2}, "asking": {"_count": 1}, "about": {"_count": 1}}, "us": {"_count": 36, "prefects": {"_count": 1}, "": {"_count": 8}, "said": {"_count": 2}, "than": {"_count": 1}, "to": {"_count": 2}, "now": {"_count": 1}, "is": {"_count": 1}, "in": {"_count": 1}, "did": {"_count": 1}, "this": {"_count": 1}, "later": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 2}, "before": {"_count": 1}, "for": {"_count": 1}, "which": {"_count": 1}, "as": {"_count": 1}, "if": {"_count": 3}, "once": {"_count": 1}, "the": {"_count": 1}, "together": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "Al": {"_count": 1}}, "reveal": {"_count": 31, "a": {"_count": 10}, "an": {"_count": 1}, "voluminous": {"_count": 1}, "the": {"_count": 7}, "her": {"_count": 2}, "skinny": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 1}, "Susan": {"_count": 1}, "himself": {"_count": 1}, "itself": {"_count": 1}, "human": {"_count": 1}, "oneself": {"_count": 1}, "how": {"_count": 1}}, "Slytherin": {"_count": 7, "at": {"_count": 1}, "so": {"_count": 1}, "just": {"_count": 1}, "for": {"_count": 1}, "bad": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "pass": {"_count": 52, "him": {"_count": 4}, "these": {"_count": 1}, "": {"_count": 9}, "on": {"_count": 4}, "out": {"_count": 2}, "Dobby": {"_count": 1}, "a": {"_count": 2}, "up": {"_count": 3}, "the": {"_count": 5}, "very": {"_count": 1}, "was": {"_count": 1}, "this": {"_count": 1}, "another": {"_count": 1}, "your": {"_count": 1}, "Umbridges": {"_count": 1}, "information": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 2}, "it": {"_count": 2}, "their": {"_count": 1}, "from": {"_count": 1}, "us": {"_count": 1}, "off": {"_count": 3}, "by": {"_count": 1}, "without": {"_count": 1}, "safely": {"_count": 1}}, "classes": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}}, "jump": {"_count": 12, "": {"_count": 2}, "aside": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 2}, "this": {"_count": 1}, "with": {"_count": 1}, "out": {"_count": 1}, "backward": {"_count": 1}, "and": {"_count": 1}, "back": {"_count": 1}}, "break": {"_count": 60, "into": {"_count": 8}, "your": {"_count": 2}, "through": {"_count": 4}, "his": {"_count": 5}, "": {"_count": 1}, "the": {"_count": 10}, "rules": {"_count": 3}, "apart": {"_count": 1}, "free": {"_count": 2}, "out": {"_count": 3}, "our": {"_count": 1}, "it": {"_count": 5}, "down": {"_count": 2}, "them": {"_count": 1}, "coiled": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "Dumbledores": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 1}, "up": {"_count": 1}, "open": {"_count": 3}, "anything": {"_count": 1}, "this": {"_count": 1}}, "magic": {"_count": 1, "as": {"_count": 1}}, "study": {"_count": 12, "the": {"_count": 1}, "Herbology": {"_count": 1}, "magic": {"_count": 1}, "them": {"_count": 1}, "Divination": {"_count": 1}, "in": {"_count": 1}, "Defense": {"_count": 1}, "": {"_count": 2}, "Occlumency": {"_count": 1}, "Occlu": {"_count": 1}, "for": {"_count": 1}}, "teach": {"_count": 49, "leaving": {"_count": 1}, "": {"_count": 6}, "you": {"_count": 16}, "one": {"_count": 1}, "today": {"_count": 1}, "with": {"_count": 1}, "them": {"_count": 6}, "they": {"_count": 1}, "Defense": {"_count": 1}, "Care": {"_count": 1}, "at": {"_count": 2}, "your": {"_count": 2}, "anyone": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 2}, "Grawp": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}, "Potter": {"_count": 1}, "any": {"_count": 1}, "Dumbledores": {"_count": 1}}, "stand": {"_count": 46, "on": {"_count": 2}, "out": {"_count": 1}, "up": {"_count": 10}, "next": {"_count": 3}, "in": {"_count": 3}, "him": {"_count": 1}, "ready": {"_count": 1}, "guard": {"_count": 4}, "for": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 3}, "around": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "but": {"_count": 1}, "behind": {"_count": 1}, "between": {"_count": 2}, "alongside": {"_count": 1}, "here": {"_count": 1}, "beside": {"_count": 2}, "": {"_count": 2}, "properly": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}}, "was": {"_count": 2, "Defense": {"_count": 1}, "Hagrid": {"_count": 1}}, "ward": {"_count": 4, "off": {"_count": 3}, "Harry": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "bottle": {"_count": 2, "fame": {"_count": 1}, "up": {"_count": 1}}, "an": {"_count": 39, "infusion": {"_count": 2}, "unexpected": {"_count": 1}, "invisible": {"_count": 2}, "urgent": {"_count": 1}, "antiques": {"_count": 1}, "uneven": {"_count": 1}, "old": {"_count": 2}, "orphanage": {"_count": 1}, "Arithmancy": {"_count": 1}, "obsession": {"_count": 1}, "outsider": {"_count": 2}, "event": {"_count": 1}, "almost": {"_count": 1}, "unnatural": {"_count": 1}, "abrupt": {"_count": 6}, "armchair": {"_count": 1}, "advertisement": {"_count": 1}, "Organization": {"_count": 1}, "end": {"_count": 1}, "overemotional": {"_count": 1}, "irate": {"_count": 1}, "estrangement": {"_count": 1}, "elf": {"_count": 1}, "innocent": {"_count": 1}, "elderly": {"_count": 1}, "elder": {"_count": 1}, "inn": {"_count": 1}, "even": {"_count": 1}, "open": {"_count": 1}, "unsteady": {"_count": 1}}, "mixing": {"_count": 1, "up": {"_count": 1}}, "cure": {"_count": 4, "boils": {"_count": 1}, "her": {"_count": 1}, "seasickness": {"_count": 1}, "Hedwig": {"_count": 1}}, "like": {"_count": 10, "": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 2}, "being": {"_count": 2}, "that": {"_count": 1}, "this": {"_count": 1}, "using": {"_count": 1}, "the": {"_count": 1}}, "melt": {"_count": 4, "Seamuss": {"_count": 1}, "away": {"_count": 2}, "": {"_count": 1}}, "pop": {"_count": 5, "up": {"_count": 2}, "for": {"_count": 1}, "with": {"_count": 1}, "into": {"_count": 1}}, "Neville": {"_count": 15, "": {"_count": 5}, "who": {"_count": 4}, "no": {"_count": 1}, "Longbottom": {"_count": 2}, "but": {"_count": 2}, "pulling": {"_count": 1}}, "add": {"_count": 15, "the": {"_count": 3}, "to": {"_count": 2}, "tea": {"_count": 1}, "that": {"_count": 1}, "insult": {"_count": 1}, "a": {"_count": 2}, "": {"_count": 2}, "your": {"_count": 2}, "another": {"_count": 1}}, "three": {"_count": 8, "they": {"_count": 1}, "cast": {"_count": 1}, "stillempty": {"_count": 1}, "fat": {"_count": 1}, "Have": {"_count": 1}, "years": {"_count": 1}, "delicious": {"_count": 1}, "objects": {"_count": 1}}, "Fang": {"_count": 1, "sometime": {"_count": 1}}, "really": {"_count": 7, "hate": {"_count": 1}, "like": {"_count": 1}, "get": {"_count": 1}, "worry": {"_count": 1}, "want": {"_count": 1}, "feel": {"_count": 1}, "mean": {"_count": 1}}, "refuse": {"_count": 6, "Harry": {"_count": 1}, "anyway": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "when": {"_count": 1}, "that": {"_count": 1}}, "learning": {"_count": 1, "to": {"_count": 1}}, "fly": {"_count": 28, "more": {"_count": 1}, "": {"_count": 4}, "again": {"_count": 2}, "around": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "off": {"_count": 1}, "on": {"_count": 1}, "Buckbeak": {"_count": 2}, "from": {"_count": 1}, "first": {"_count": 1}, "downstairs": {"_count": 1}, "at": {"_count": 2}, "as": {"_count": 1}, "you": {"_count": 1}, "wont": {"_count": 1}, "without": {"_count": 1}, "about": {"_count": 1}, "out": {"_count": 1}, "better": {"_count": 1}, "away": {"_count": 1}, "through": {"_count": 1}}, "end": {"_count": 20, "with": {"_count": 1}, "up": {"_count": 10}, "yet": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 2}, "Feeling": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "officially": {"_count": 1}, "in": {"_count": 1}}, "vibrate": {"_count": 6, "if": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "with": {"_count": 1}}, "mount": {"_count": 6, "their": {"_count": 2}, "the": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "drift": {"_count": 3, "lazily": {"_count": 1}, "past": {"_count": 1}, "toward": {"_count": 1}}, "face": {"_count": 77, "Malfoy": {"_count": 2}, "the": {"_count": 23}, "Snape": {"_count": 3}, "Voldemort": {"_count": 2}, "each": {"_count": 1}, "him": {"_count": 11}, "Harry": {"_count": 7}, "them": {"_count": 4}, "": {"_count": 2}, "it": {"_count": 3}, "Arthur": {"_count": 1}, "Dumbledore": {"_count": 2}, "his": {"_count": 3}, "Angelina": {"_count": 1}, "her": {"_count": 2}, "Dean": {"_count": 1}, "Narcissa": {"_count": 1}, "packing": {"_count": 1}, "a": {"_count": 1}, "breakfast": {"_count": 1}, "forward": {"_count": 1}, "some": {"_count": 1}, "Ron": {"_count": 2}, "their": {"_count": 1}}, "sneer": {"_count": 4, "but": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 1}}, "save": {"_count": 52, "your": {"_count": 5}, "up": {"_count": 1}, "yourself": {"_count": 1}, "you": {"_count": 5}, "me": {"_count": 3}, "Harry": {"_count": 3}, "the": {"_count": 3}, "it": {"_count": 1}, "more": {"_count": 1}, "Buckbeak": {"_count": 1}, "him": {"_count": 8}, "a": {"_count": 1}, "them": {"_count": 1}, "my": {"_count": 2}, "our": {"_count": 1}, "that": {"_count": 1}, "someone": {"_count": 2}, "Sirius": {"_count": 2}, "himself": {"_count": 3}, "her": {"_count": 1}, "every": {"_count": 1}, "Ron": {"_count": 1}, "their": {"_count": 1}, "Harrys": {"_count": 1}, "em": {"_count": 1}, "others": {"_count": 1}}, "defend": {"_count": 20, "himself": {"_count": 8}, "yourselves": {"_count": 3}, "yourself": {"_count": 2}, "you": {"_count": 1}, "a": {"_count": 1}, "ourselves": {"_count": 2}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}}, "delight": {"_count": 2, "": {"_count": 1}, "Uncle": {"_count": 1}}, "win": {"_count": 24, "that": {"_count": 1}, "the": {"_count": 10}, "": {"_count": 4}, "Harry": {"_count": 1}, "today": {"_count": 1}, "a": {"_count": 1}, "us": {"_count": 1}, "as": {"_count": 2}, "any": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}}, "Dean": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "block": {"_count": 14, "them": {"_count": 1}, "the": {"_count": 3}, "unfriendly": {"_count": 1}, "Harrys": {"_count": 1}, "Percy": {"_count": 1}, "out": {"_count": 4}, "her": {"_count": 1}, "up": {"_count": 1}, "your": {"_count": 1}}, "beat": {"_count": 17, "Malfoy": {"_count": 2}, "you": {"_count": 1}, "away": {"_count": 1}, "the": {"_count": 1}, "Slytherin": {"_count": 1}, "a": {"_count": 1}, "very": {"_count": 1}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "Draco": {"_count": 1}, "off": {"_count": 1}, "Harrys": {"_count": 1}, "out": {"_count": 1}, "Voldemort": {"_count": 1}}, "Mrs": {"_count": 17, "Norris": {"_count": 5}, "Weasley": {"_count": 9}, "Malfoy": {"_count": 1}, "Weasleys": {"_count": 2}}, "follow": {"_count": 43, "him": {"_count": 11}, "because": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 6}, "Ron": {"_count": 1}, "": {"_count": 5}, "Fudge": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 2}, "her": {"_count": 2}, "his": {"_count": 2}, "Lupin": {"_count": 1}, "what": {"_count": 1}, "James": {"_count": 1}, "school": {"_count": 1}, "Malfoy": {"_count": 1}, "any": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "midnight": {"_count": 1}}, "creep": {"_count": 6, "down": {"_count": 1}, "along": {"_count": 2}, "up": {"_count": 1}, "upward": {"_count": 1}, "very": {"_count": 1}}, "Gryffindor": {"_count": 51, "Tower": {"_count": 41}, "taken": {"_count": 1}, "said": {"_count": 1}, "Ravenclaw": {"_count": 1}, "for": {"_count": 3}, "": {"_count": 3}, "common": {"_count": 1}}, "unwrap": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 2}}, "understand": {"_count": 40, "even": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 5}, "pleading": {"_count": 1}, "at": {"_count": 1}, "weve": {"_count": 1}, "": {"_count": 7}, "a": {"_count": 1}, "that": {"_count": 3}, "said": {"_count": 2}, "how": {"_count": 3}, "we": {"_count": 1}, "in": {"_count": 1}, "why": {"_count": 2}, "Professor": {"_count": 1}, "is": {"_count": 1}, "what": {"_count": 1}, "by": {"_count": 1}, "he": {"_count": 2}, "me": {"_count": 1}, "him": {"_count": 1}, "because": {"_count": 1}, "about": {"_count": 1}}, "score": {"_count": 3, "a": {"_count": 1}, "Harry": {"_count": 1}, "goals": {"_count": 1}}, "escape": {"_count": 26, "the": {"_count": 5}, "": {"_count": 7}, "from": {"_count": 1}, "justice": {"_count": 1}, "Lord": {"_count": 1}, "Azkaban": {"_count": 1}, "toward": {"_count": 1}, "him": {"_count": 1}, "like": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "Fleurs": {"_count": 1}, "The": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}}, "protect": {"_count": 34, "their": {"_count": 2}, "you": {"_count": 6}, "Harry": {"_count": 2}, "him": {"_count": 6}, "Black": {"_count": 1}, "them": {"_count": 2}, "hung": {"_count": 1}, "herself": {"_count": 2}, "yourself": {"_count": 1}, "himself": {"_count": 2}, "themselves": {"_count": 1}, "the": {"_count": 3}, "my": {"_count": 1}, "his": {"_count": 1}, "Muggle": {"_count": 1}, "and": {"_count": 1}, "unable": {"_count": 1}}, "weave": {"_count": 1, "in": {"_count": 1}}, "practice": {"_count": 26, "": {"_count": 5}, "that": {"_count": 1}, "today": {"_count": 1}, "on": {"_count": 2}, "constant": {"_count": 1}, "the": {"_count": 3}, "defensive": {"_count": 1}, "Vanishing": {"_count": 1}, "if": {"_count": 1}, "jinxes": {"_count": 1}, "They": {"_count": 1}, "with": {"_count": 2}, "wont": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 1}, "Disapparating": {"_count": 1}, "said": {"_count": 1}}, "either": {"_count": 4, "of": {"_count": 2}, "which": {"_count": 1}, "said": {"_count": 1}}, "fear": {"_count": 10, "the": {"_count": 1}, "assassination": {"_count": 1}, "them": {"_count": 1}, "from": {"_count": 3}, "that": {"_count": 1}, "": {"_count": 1}, "hot": {"_count": 1}, "for": {"_count": 1}}, "clean": {"_count": 8, "": {"_count": 1}, "themselves": {"_count": 1}, "up": {"_count": 1}, "them": {"_count": 1}, "out": {"_count": 3}, "all": {"_count": 1}}, "faint": {"_count": 6, "": {"_count": 2}, "with": {"_count": 1}, "and": {"_count": 1}, "vomit": {"_count": 1}, "he": {"_count": 1}}, "fasten": {"_count": 1, "his": {"_count": 1}}, "rip": {"_count": 6, "him": {"_count": 1}, "it": {"_count": 3}, "Hermione": {"_count": 1}, "Dean": {"_count": 1}}, "shut": {"_count": 22, "the": {"_count": 3}, "Neville": {"_count": 1}, "his": {"_count": 4}, "him": {"_count": 2}, "up": {"_count": 3}, "Malfoy": {"_count": 1}, "your": {"_count": 1}, "her": {"_count": 1}, "down": {"_count": 2}, "this": {"_count": 1}, "these": {"_count": 1}, "yourself": {"_count": 1}, "it": {"_count": 1}}, "empty": {"_count": 12, "his": {"_count": 7}, "as": {"_count": 1}, "it": {"_count": 2}, "yourself": {"_count": 1}, "into": {"_count": 1}}, "he": {"_count": 8, "had": {"_count": 1}, "seemed": {"_count": 1}, "growled": {"_count": 1}, "an": {"_count": 1}, "was": {"_count": 1}, "snarled": {"_count": 1}, "hung": {"_count": 1}, "recognized": {"_count": 1}}, "forget": {"_count": 11, "": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "about": {"_count": 2}, "Myrtles": {"_count": 1}, "Rita": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}, "what": {"_count": 1}}, "loud": {"_count": 3, "cheers": {"_count": 3}}, "Alicia": {"_count": 6, "Spinnet": {"_count": 3}, "and": {"_count": 1}, "who": {"_count": 2}}, "Johnson": {"_count": 2, "and": {"_count": 1}, "Angelina": {"_count": 1}}, "sc": {"_count": 1, "no": {"_count": 1}}, "yell": {"_count": 10, "as": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "with": {"_count": 2}, "Fairy": {"_count": 1}, "too": {"_count": 1}, "fer": {"_count": 1}, "for": {"_count": 1}, "this": {"_count": 1}}, "Flint": {"_count": 1, "and": {"_count": 1}}, "anyone": {"_count": 22, "Im": {"_count": 1}, "in": {"_count": 1}, "who": {"_count": 2}, "": {"_count": 5}, "even": {"_count": 1}, "Harry": {"_count": 1}, "else": {"_count": 5}, "before": {"_count": 1}, "about": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}, "Borgin": {"_count": 1}, "foolish": {"_count": 1}}, "buck": {"_count": 2, "him": {"_count": 1}, "their": {"_count": 1}}, "roll": {"_count": 10, "over": {"_count": 3}, "it": {"_count": 1}, "right": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}, "we": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 1}}, "hold": {"_count": 42, "on": {"_count": 7}, "a": {"_count": 4}, "Snape": {"_count": 1}, "his": {"_count": 4}, "him": {"_count": 7}, "her": {"_count": 4}, "Ron": {"_count": 1}, "open": {"_count": 1}, "onto": {"_count": 1}, "Buckbeak": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}, "them": {"_count": 1}, "out": {"_count": 1}, "your": {"_count": 1}, "much": {"_count": 1}, "some": {"_count": 1}, "in": {"_count": 2}, "for": {"_count": 1}}, "clamber": {"_count": 3, "back": {"_count": 1}, "through": {"_count": 1}, "into": {"_count": 1}}, "sixty": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "guard": {"_count": 6, "the": {"_count": 1}, "her": {"_count": 1}, "myself": {"_count": 1}, "it": {"_count": 1}, "against": {"_count": 1}, "his": {"_count": 1}}, "battle": {"_count": 1, "their": {"_count": 1}}, "health": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "taunting": {"_count": 1, "Harry": {"_count": 1}}, "Privet": {"_count": 9, "Drive": {"_count": 9}}, "Romania": {"_count": 1, "to": {"_count": 1}}, "earn": {"_count": 5, "some": {"_count": 1}, "a": {"_count": 2}, "himself": {"_count": 1}, "gold": {"_count": 1}}, "begin": {"_count": 8, "not": {"_count": 1}, "": {"_count": 5}, "muttered": {"_count": 1}, "but": {"_count": 1}}, "search": {"_count": 15, "while": {"_count": 1}, "every": {"_count": 1}, "for": {"_count": 2}, "my": {"_count": 1}, "": {"_count": 1}, "Snapes": {"_count": 1}, "it": {"_count": 3}, "the": {"_count": 3}, "far": {"_count": 1}, "an": {"_count": 1}}, "lunch": {"_count": 5, "": {"_count": 3}, "where": {"_count": 1}, "with": {"_count": 1}}, "someone": {"_count": 7, "else": {"_count": 2}, "was": {"_count": 1}, "more": {"_count": 1}, "that": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 1}}, "bother": {"_count": 9, "him": {"_count": 2}, "you": {"_count": 3}, "telling": {"_count": 1}, "trying": {"_count": 1}, "coming": {"_count": 1}, "his": {"_count": 1}}, "where": {"_count": 35, "he": {"_count": 5}, "the": {"_count": 7}, "Professor": {"_count": 2}, "they": {"_count": 2}, "Harry": {"_count": 6}, "Malfoy": {"_count": 1}, "Fred": {"_count": 1}, "Dumbledore": {"_count": 2}, "Tonks": {"_count": 1}, "Hermione": {"_count": 1}, "hes": {"_count": 1}, "Ron": {"_count": 2}, "Rons": {"_count": 1}, "Griphook": {"_count": 1}, "her": {"_count": 1}, "Lucius": {"_count": 1}}, "clap": {"_count": 5, "his": {"_count": 1}, "too": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "and": {"_count": 14, "Im": {"_count": 1}, "not": {"_count": 1}, "feeling": {"_count": 1}, "would": {"_count": 1}, "a": {"_count": 1}, "dont": {"_count": 1}, "now": {"_count": 1}, "I": {"_count": 1}, "hes": {"_count": 2}, "consented": {"_count": 1}, "after": {"_count": 1}, "protected": {"_count": 1}, "thats": {"_count": 1}}, "yourself": {"_count": 3, "all": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "ice": {"_count": 2, "": {"_count": 1}, "Rons": {"_count": 1}}, "dwell": {"_count": 5, "on": {"_count": 3}, "again": {"_count": 1}, "ever": {"_count": 1}}, "skimming": {"_count": 1, "through": {"_count": 1}}, "George": {"_count": 9, "to": {"_count": 1}, "Weasley": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "adding": {"_count": 1}, "who": {"_count": 1}}, "pick": {"_count": 33, "on": {"_count": 1}, "up": {"_count": 19}, "the": {"_count": 2}, "it": {"_count": 6}, "a": {"_count": 1}, "you": {"_count": 2}, "him": {"_count": 1}, "her": {"_count": 1}}, "concern": {"_count": 1, "He": {"_count": 1}}, "climb": {"_count": 21, "through": {"_count": 2}, "the": {"_count": 8}, "": {"_count": 2}, "fast": {"_count": 1}, "Stoatshead": {"_count": 1}, "laboriously": {"_count": 1}, "that": {"_count": 1}, "up": {"_count": 2}, "out": {"_count": 1}, "into": {"_count": 1}, "slowly": {"_count": 1}}, "bunny": {"_count": 1, "hop": {"_count": 1}}, "walking": {"_count": 1, "all": {"_count": 1}}, "lie": {"_count": 12, "down": {"_count": 2}, "here": {"_count": 1}, "you": {"_count": 1}, "awake": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "upon": {"_count": 1}, "curled": {"_count": 1}, "for": {"_count": 1}, "low": {"_count": 1}}, "exchange": {"_count": 4, "mystified": {"_count": 1}, "the": {"_count": 1}, "gleeful": {"_count": 1}, "": {"_count": 1}}, "herself": {"_count": 14, "": {"_count": 5}, "in": {"_count": 1}, "and": {"_count": 2}, "she": {"_count": 1}, "for": {"_count": 1}, "when": {"_count": 1}, "wringing": {"_count": 1}, "as": {"_count": 1}, "than": {"_count": 1}}, "hurt": {"_count": 20, "Harry": {"_count": 2}, "him": {"_count": 3}, "you": {"_count": 6}, "Black": {"_count": 1}, "more": {"_count": 1}, "himself": {"_count": 1}, "yourself": {"_count": 1}, "Dumbledore": {"_count": 2}, "Hermione": {"_count": 1}, "her": {"_count": 1}, "other": {"_count": 1}}, "pressure": {"_count": 2, "you": {"_count": 1}, "and": {"_count": 1}}, "Snape": {"_count": 26, "": {"_count": 7}, "at": {"_count": 1}, "s": {"_count": 3}, "who": {"_count": 2}, "he": {"_count": 1}, "for": {"_count": 2}, "please": {"_count": 1}, "you": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 5}, "like": {"_count": 1}, "in": {"_count": 1}}, "check": {"_count": 63, "that": {"_count": 23}, "on": {"_count": 8}, "how": {"_count": 2}, "the": {"_count": 8}, "under": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}, "whether": {"_count": 3}, "if": {"_count": 2}, "you": {"_count": 1}, "some": {"_count": 1}, "weve": {"_count": 1}, "": {"_count": 3}, "something": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}, "said": {"_count": 2}, "didnt": {"_count": 1}, "Harrys": {"_count": 1}, "where": {"_count": 1}}, "Nicolas": {"_count": 2, "Flamel": {"_count": 1}, "and": {"_count": 1}}, "relax": {"_count": 6, "with": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}, "when": {"_count": 1}}, "Inferno": {"_count": 1, "A": {"_count": 1}}, "skip": {"_count": 3, "Herbology": {"_count": 1}, "Divination": {"_count": 1}, "up": {"_count": 1}}, "Herbology": {"_count": 3, "and": {"_count": 1}, "barked": {"_count": 1}, "with": {"_count": 1}}, "Hagrids": {"_count": 24, "with": {"_count": 1}, "waist": {"_count": 1}, "its": {"_count": 1}, "front": {"_count": 1}, "house": {"_count": 3}, "hut": {"_count": 3}, "though": {"_count": 1}, "": {"_count": 6}, "three": {"_count": 1}, "said": {"_count": 1}, "cabin": {"_count": 2}, "on": {"_count": 1}, "Ive": {"_count": 1}, "was": {"_count": 1}}, "its": {"_count": 31, "skinny": {"_count": 1}, "feet": {"_count": 2}, "knees": {"_count": 1}, "legs": {"_count": 1}, "lonely": {"_count": 1}, "owner": {"_count": 1}, "proper": {"_count": 1}, "right": {"_count": 1}, "fullest": {"_count": 1}, "fellows": {"_count": 1}, "body": {"_count": 2}, "residents": {"_count": 1}, "subject": {"_count": 1}, "members": {"_count": 1}, "previous": {"_count": 2}, "normal": {"_count": 2}, "original": {"_count": 2}, "front": {"_count": 1}, "shelf": {"_count": 1}, "back": {"_count": 3}, "box": {"_count": 1}, "size": {"_count": 1}, "new": {"_count": 1}, "true": {"_count": 1}}, "stroke": {"_count": 3, "the": {"_count": 2}, "Hedwig": {"_count": 1}}, "reason": {"_count": 2, "with": {"_count": 2}}, "Charlie": {"_count": 1, "to": {"_count": 1}}, "send": {"_count": 37, "him": {"_count": 2}, "Charlie": {"_count": 1}, "you": {"_count": 4}, "home": {"_count": 1}, "all": {"_count": 1}, "an": {"_count": 1}, "letters": {"_count": 2}, "this": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "us": {"_count": 1}, "the": {"_count": 1}, "someone": {"_count": 1}, "off": {"_count": 1}, "a": {"_count": 6}, "me": {"_count": 1}, "up": {"_count": 1}, "they": {"_count": 1}, "out": {"_count": 1}, "envoys": {"_count": 1}, "messages": {"_count": 1}, "them": {"_count": 2}, "word": {"_count": 1}, "one": {"_count": 1}, "anyone": {"_count": 1}, "for": {"_count": 1}}, "cover": {"_count": 16, "two": {"_count": 1}, "it": {"_count": 1}, "up": {"_count": 4}, "the": {"_count": 2}, "herself": {"_count": 1}, "all": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "their": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}}, "twice": {"_count": 2, "its": {"_count": 2}}, "Madam": {"_count": 16, "Pomfrey": {"_count": 11}, "Pince": {"_count": 1}, "Hooch": {"_count": 2}, "Puddifoots": {"_count": 1}, "Malkins": {"_count": 1}}, "borrow": {"_count": 13, "one": {"_count": 2}, "Hermes": {"_count": 1}, "Harrys": {"_count": 1}, "a": {"_count": 3}, "Ministry": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "another": {"_count": 1}, "it": {"_count": 1}}, "calm": {"_count": 10, "Ron": {"_count": 1}, "him": {"_count": 1}, "Hermione": {"_count": 1}, "anxiety": {"_count": 1}, "yourself": {"_count": 1}, "down": {"_count": 3}, "himself": {"_count": 1}, "herself": {"_count": 1}}, "change": {"_count": 25, "the": {"_count": 5}, "into": {"_count": 4}, "for": {"_count": 1}, "direction": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "time": {"_count": 1}, "it": {"_count": 2}, "": {"_count": 2}, "their": {"_count": 1}, "out": {"_count": 1}, "his": {"_count": 2}, "your": {"_count": 1}, "at": {"_count": 1}, "its": {"_count": 1}}, "risk": {"_count": 9, "it": {"_count": 3}, "his": {"_count": 1}, "missing": {"_count": 1}, "everything": {"_count": 2}, "transferring": {"_count": 1}, "what": {"_count": 1}}, "Norbert": {"_count": 1, "if": {"_count": 1}}, "breathe": {"_count": 12, "properly": {"_count": 1}, "fire": {"_count": 1}, "steam": {"_count": 1}, "": {"_count": 2}, "underwater": {"_count": 1}, "again": {"_count": 1}, "Harry": {"_count": 3}, "and": {"_count": 1}, "but": {"_count": 1}}, "warn": {"_count": 11, "you": {"_count": 6}, "them": {"_count": 1}, "him": {"_count": 1}, "The": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "comfort": {"_count": 7, "him": {"_count": 1}, "her": {"_count": 3}, "Cho": {"_count": 1}, "each": {"_count": 1}, "it": {"_count": 1}}, "spread": {"_count": 9, "Harry": {"_count": 1}, "through": {"_count": 1}, "down": {"_count": 1}, "like": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "all": {"_count": 1}, "out": {"_count": 1}}, "lower": {"_count": 4, "their": {"_count": 2}, "your": {"_count": 1}, "Griphook": {"_count": 1}}, "repair": {"_count": 6, "the": {"_count": 4}, "wounds": {"_count": 1}, "it": {"_count": 1}}, "meddle": {"_count": 1, "in": {"_count": 1}}, "Wood": {"_count": 4, "and": {"_count": 2}, "": {"_count": 1}, "this": {"_count": 1}}, "resign": {"_count": 2, "from": {"_count": 1}, "first": {"_count": 1}}, "interfere": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "back": {"_count": 8, "us": {"_count": 1}, "away": {"_count": 4}, "two": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 1}}, "fire": {"_count": 1, "": {"_count": 1}}, "shoot": {"_count": 6, "me": {"_count": 1}, "forward": {"_count": 1}, "jets": {"_count": 1}, "and": {"_count": 1}, "across": {"_count": 1}, "backward": {"_count": 1}}, "Ronan": {"_count": 1, "": {"_count": 1}}, "drink": {"_count": 17, "its": {"_count": 1}, "something": {"_count": 1}, "": {"_count": 4}, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "from": {"_count": 1}, "his": {"_count": 1}, "Polyjuice": {"_count": 1}, "all": {"_count": 1}, "again": {"_count": 1}, "Veritaserum": {"_count": 1}, "it": {"_count": 2}, "this": {"_count": 1}}, "set": {"_count": 31, "ourselves": {"_count": 1}, "fire": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}, "for": {"_count": 1}, "off": {"_count": 5}, "pixies": {"_count": 1}, "a": {"_count": 2}, "her": {"_count": 2}, "out": {"_count": 2}, "up": {"_count": 4}, "him": {"_count": 1}, "foot": {"_count": 3}, "them": {"_count": 1}, "about": {"_count": 1}, "conditions": {"_count": 1}, "an": {"_count": 1}, "something": {"_count": 1}, "store": {"_count": 1}}, "slay": {"_count": 2, "a": {"_count": 1}, "owing": {"_count": 1}}, "gain": {"_count": 8, "would": {"_count": 1}, "your": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "by": {"_count": 1}, "a": {"_count": 1}, "fame": {"_count": 1}, "her": {"_count": 1}}, "full": {"_count": 9, "strength": {"_count": 3}, "height": {"_count": 1}, "and": {"_count": 1}, "fitness": {"_count": 1}, "power": {"_count": 2}, "health": {"_count": 1}}, "return": {"_count": 56, "to": {"_count": 32}, "": {"_count": 3}, "people": {"_count": 1}, "next": {"_count": 1}, "with": {"_count": 3}, "all": {"_count": 2}, "when": {"_count": 1}, "Cedrics": {"_count": 1}, "and": {"_count": 1}, "my": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 2}, "once": {"_count": 1}, "here": {"_count": 2}, "students": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}}, "power": {"_count": 21, "who": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 8}, "and": {"_count": 3}, "he": {"_count": 1}, "instead": {"_count": 1}, "three": {"_count": 1}, "not": {"_count": 1}, "are": {"_count": 2}, "when": {"_count": 1}, "over": {"_count": 1}}, "life": {"_count": 20, "awaiting": {"_count": 1}, "": {"_count": 6}, "and": {"_count": 6}, "again": {"_count": 1}, "imprisonment": {"_count": 1}, "too": {"_count": 1}, "at": {"_count": 1}, "with": {"_count": 1}, "so": {"_count": 1}, "while": {"_count": 1}}, "examine": {"_count": 27, "the": {"_count": 8}, "this": {"_count": 1}, "a": {"_count": 2}, "her": {"_count": 1}, "Riddles": {"_count": 2}, "Aidan": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 2}, "Hedwigs": {"_count": 1}, "more": {"_count": 1}, "whatever": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 3}, "and": {"_count": 1}, "Alecto": {"_count": 1}}, "ignore": {"_count": 22, "the": {"_count": 10}, "it": {"_count": 1}, "magic": {"_count": 1}, "Nevilles": {"_count": 1}, "this": {"_count": 1}, "more": {"_count": 1}, "him": {"_count": 1}, "so": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "their": {"_count": 1}}, "fret": {"_count": 1, "about": {"_count": 1}}, "want": {"_count": 22, "to": {"_count": 19}, "a": {"_count": 1}, "their": {"_count": 1}, "revenge": {"_count": 1}}, "something": {"_count": 18, "": {"_count": 3}, "gold": {"_count": 1}, "like": {"_count": 1}, "barely": {"_count": 1}, "said": {"_count": 2}, "then": {"_count": 1}, "funny": {"_count": 1}, "resembling": {"_count": 1}, "awful": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 1}, "that": {"_count": 1}, "with": {"_count": 1}, "else": {"_count": 1}}, "waste": {"_count": 10, "any": {"_count": 2}, "those": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}, "our": {"_count": 1}, "five": {"_count": 1}, "But": {"_count": 1}, "one": {"_count": 1}, "so": {"_count": 1}}, "people": {"_count": 6, "": {"_count": 3}, "looking": {"_count": 1}, "who": {"_count": 2}}, "impress": {"_count": 7, "upon": {"_count": 4}, "the": {"_count": 1}, "Cho": {"_count": 1}, "": {"_count": 1}}, "droop": {"_count": 3, "": {"_count": 2}, "he": {"_count": 1}}, "drop": {"_count": 17, "": {"_count": 1}, "the": {"_count": 1}, "off": {"_count": 3}, "dead": {"_count": 1}, "Muggle": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}, "him": {"_count": 1}, "whatever": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 2}, "in": {"_count": 1}, "mud": {"_count": 1}}, "struggle": {"_count": 9, "because": {"_count": 1}, "": {"_count": 1}, "against": {"_count": 2}, "on": {"_count": 1}, "with": {"_count": 2}, "through": {"_count": 1}, "more": {"_count": 1}}, "twist": {"_count": 3, "snakelike": {"_count": 1}, "sinuously": {"_count": 1}, "violently": {"_count": 1}}, "free": {"_count": 16, "herself": {"_count": 1}, "himself": {"_count": 6}, "his": {"_count": 3}, "itself": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "themselves": {"_count": 1}, "her": {"_count": 1}, "Ron": {"_count": 1}}, "close": {"_count": 23, "in": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 8}, "all": {"_count": 1}, "your": {"_count": 6}, "down": {"_count": 2}, "around": {"_count": 1}, "upon": {"_count": 1}}, "touch": {"_count": 27, "the": {"_count": 13}, "a": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 8}, "owls": {"_count": 1}, "some": {"_count": 1}, "his": {"_count": 1}, "your": {"_count": 1}}, "direct": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "checkmate": {"_count": 1, "the": {"_count": 1}}, "convince": {"_count": 14, "himself": {"_count": 6}, "certain": {"_count": 1}, "Fudge": {"_count": 1}, "Mr": {"_count": 1}, "people": {"_count": 1}, "a": {"_count": 1}, "anyone": {"_count": 1}, "him": {"_count": 1}, "ourselves": {"_count": 1}}, "referee": {"_count": 1, "your": {"_count": 1}}, "head": {"_count": 5, "me": {"_count": 1}, "back": {"_count": 1}, "her": {"_count": 1}, "down": {"_count": 1}, "with": {"_count": 1}}, "bite": {"_count": 9, "Snape": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}, "Pansy": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "him": {"_count": 1}, "and": {"_count": 1}, "just": {"_count": 1}}, "finding": {"_count": 4, "the": {"_count": 2}, "out": {"_count": 1}, "another": {"_count": 1}}, "frighten": {"_count": 6, "me": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}, "anyone": {"_count": 1}, "two": {"_count": 1}, "to": {"_count": 1}}, "my": {"_count": 52, "master": {"_count": 3}, "list": {"_count": 1}, "most": {"_count": 1}, "brother": {"_count": 1}, "astonishment": {"_count": 1}, "quiet": {"_count": 1}, "office": {"_count": 11}, "senses": {"_count": 1}, "body": {"_count": 1}, "will": {"_count": 1}, "hiding": {"_count": 1}, "parents": {"_count": 1}, "fathers": {"_count": 1}, "son": {"_count": 2}, "mother": {"_count": 2}, "song": {"_count": 1}, "desk": {"_count": 1}, "neck": {"_count": 1}, "other": {"_count": 1}, "thoughts": {"_count": 1}, "bed": {"_count": 1}, "advantage": {"_count": 1}, "school": {"_count": 1}, "father": {"_count": 1}, "successor": {"_count": 1}, "arm": {"_count": 1}, "upholstery": {"_count": 1}, "dad": {"_count": 1}, "defense": {"_count": 1}, "errors": {"_count": 1}, "wife": {"_count": 1}, "house": {"_count": 2}, "chest": {"_count": 1}, "hand": {"_count": 1}, "vault": {"_count": 1}, "Death": {"_count": 1}, "village": {"_count": 1}}, "hate": {"_count": 6, "me": {"_count": 1}, "my": {"_count": 1}, "Kreacher": {"_count": 1}, "him": {"_count": 2}, "normal": {"_count": 1}}, "seek": {"_count": 5, "it": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}, "Hallows": {"_count": 1}}, "edge": {"_count": 2, "to": {"_count": 1}, "forward": {"_count": 1}}, "Quirrells": {"_count": 1, "head": {"_count": 1}}, "create": {"_count": 6, "a": {"_count": 3}, "enough": {"_count": 1}, "an": {"_count": 1}, "more": {"_count": 1}}, "split": {"_count": 9, "in": {"_count": 1}, "up": {"_count": 3}, "the": {"_count": 1}, "open": {"_count": 2}, "you": {"_count": 1}, "again": {"_count": 1}}, "perform": {"_count": 21, "a": {"_count": 2}, "spells": {"_count": 1}, "simple": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 3}, "an": {"_count": 2}, "": {"_count": 2}, "another": {"_count": 1}, "any": {"_count": 1}, "magic": {"_count": 2}, "BubbleHead": {"_count": 1}, "well": {"_count": 1}, "said": {"_count": 1}, "brutal": {"_count": 1}, "as": {"_count": 1}}, "throw": {"_count": 21, "Harry": {"_count": 1}, "something": {"_count": 2}, "a": {"_count": 2}, "Gadding": {"_count": 1}, "Lupin": {"_count": 1}, "at": {"_count": 2}, "off": {"_count": 4}, "up": {"_count": 4}, "Millicent": {"_count": 1}, "me": {"_count": 1}, "books": {"_count": 1}, "them": {"_count": 1}}, "prevent": {"_count": 27, "that": {"_count": 1}, "any": {"_count": 1}, "this": {"_count": 1}, "himself": {"_count": 6}, "them": {"_count": 2}, "it": {"_count": 5}, "me": {"_count": 1}, "him": {"_count": 3}, "his": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "YouKnowWho": {"_count": 1}, "Voldemort": {"_count": 2}}, "in": {"_count": 6, "which": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 2}, "front": {"_count": 1}, "the": {"_count": 1}}, "dry": {"_count": 2, "his": {"_count": 1}, "up": {"_count": 1}}, "hating": {"_count": 1, "your": {"_count": 1}}, "fling": {"_count": 4, "her": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "contact": {"_count": 7, "Dumbledore": {"_count": 1}, "me": {"_count": 2}, "those": {"_count": 1}, "him": {"_count": 2}, "Sirius": {"_count": 1}}, "normal": {"_count": 16, "": {"_count": 3}, "next": {"_count": 1}, "by": {"_count": 2}, "with": {"_count": 1}, "watching": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}, "between": {"_count": 1}, "once": {"_count": 1}, "must": {"_count": 1}, "said": {"_count": 1}, "then": {"_count": 1}}, "dish": {"_count": 2, "out": {"_count": 1}, "the": {"_count": 1}}, "quiver": {"_count": 1, "": {"_count": 1}}, "Miss": {"_count": 3, "Hermione": {"_count": 1}, "Fawcett": {"_count": 1}, "Bellatrix": {"_count": 1}}, "flying": {"_count": 1, "around": {"_count": 1}}, "heave": {"_count": 3, "Dudley": {"_count": 1}, "the": {"_count": 1}, "himself": {"_count": 1}}, "how": {"_count": 11, "Harry": {"_count": 1}, "he": {"_count": 5}, "these": {"_count": 1}, "well": {"_count": 1}, "hed": {"_count": 1}, "they": {"_count": 2}}, "believing": {"_count": 1, "the": {"_count": 1}}, "dinner": {"_count": 10, "and": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "if": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 2}, "at": {"_count": 1}, "alone": {"_count": 1}}, "welcome": {"_count": 7, "them": {"_count": 1}, "their": {"_count": 1}, "two": {"_count": 1}, "back": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "write": {"_count": 30, "an": {"_count": 2}, "up": {"_count": 2}, "to": {"_count": 3}, "back": {"_count": 2}, "pausing": {"_count": 1}, "next": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 1}, "": {"_count": 3}, "down": {"_count": 1}, "three": {"_count": 1}, "\u2018": {"_count": 1}, "him": {"_count": 2}, "sunlight": {"_count": 1}, "another": {"_count": 1}, "for": {"_count": 1}, "looking": {"_count": 1}, "about": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}, "their": {"_count": 1}}, "drills": {"_count": 1, "": {"_count": 1}}, "exist": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "regain": {"_count": 9, "power": {"_count": 1}, "control": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 2}, "some": {"_count": 1}, "a": {"_count": 1}, "feeling": {"_count": 1}}, "duck": {"_count": 7, "as": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 2}, "more": {"_count": 1}, "": {"_count": 1}, "below": {"_count": 1}}, "Dudleys": {"_count": 2, "bait": {"_count": 1}, "eyes": {"_count": 1}}, "two": {"_count": 5, "slices": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}, "wizard": {"_count": 1}, "seats": {"_count": 1}}, "collapse": {"_count": 2, "on": {"_count": 1}, "under": {"_count": 1}}, "shout": {"_count": 19, "out": {"_count": 3}, "anymore": {"_count": 1}, "through": {"_count": 1}, "at": {"_count": 4}, "Dont": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 2}, "April": {"_count": 1}, "about": {"_count": 1}, "the": {"_count": 1}, "or": {"_count": 1}, "back": {"_count": 1}, "for": {"_count": 1}}, "Hedwig": {"_count": 5, "who": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}, "grabbing": {"_count": 1}}, "offend": {"_count": 5, "you": {"_count": 1}, "the": {"_count": 1}, "Aunt": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}}, "control": {"_count": 13, "himself": {"_count": 1}, "": {"_count": 2}, "them": {"_count": 2}, "the": {"_count": 2}, "his": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 2}, "that": {"_count": 1}, "their": {"_count": 1}}, "punish": {"_count": 15, "himself": {"_count": 5}, "you": {"_count": 1}, "him": {"_count": 2}, "Harry": {"_count": 2}, "them": {"_count": 3}, "Hogwarts": {"_count": 1}, "to": {"_count": 1}}, "serve": {"_count": 8, "one": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "foot": {"_count": 19, "in": {"_count": 4}, "walked": {"_count": 1}, "was": {"_count": 1}, "picked": {"_count": 1}, "Harry": {"_count": 2}, "he": {"_count": 1}, "staring": {"_count": 1}, "": {"_count": 6}, "the": {"_count": 1}, "patting": {"_count": 1}}, "gloss": {"_count": 2, "the": {"_count": 1}, "over": {"_count": 1}}, "within": {"_count": 2, "an": {"_count": 1}, "about": {"_count": 1}}, "expulsion": {"_count": 1, "from": {"_count": 1}}, "fit": {"_count": 19, "bars": {"_count": 1}, "into": {"_count": 4}, "socks": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "itself": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 1}, "at": {"_count": 1}, "through": {"_count": 1}, "everything": {"_count": 2}, "inside": {"_count": 1}}, "Hedwigs": {"_count": 6, "cage": {"_count": 3}, "leg": {"_count": 3}}, "said": {"_count": 27, "Ron": {"_count": 1}, "Fred": {"_count": 2}, "Harry": {"_count": 9}, "Black": {"_count": 1}, "a": {"_count": 1}, "Hermione": {"_count": 3}, "Dumbledore": {"_count": 2}, "Mr": {"_count": 1}, "Sirius": {"_count": 1}, "Cho": {"_count": 1}, "Umbridge": {"_count": 1}, "Moody": {"_count": 1}, "Uncle": {"_count": 1}, "Luna": {"_count": 1}, "Ginny": {"_count": 1}}, "hand": {"_count": 12, "it": {"_count": 4}, "in": {"_count": 1}, "out": {"_count": 1}, "of": {"_count": 1}, "over": {"_count": 2}, "": {"_count": 2}, "by": {"_count": 1}}, "ear": {"_count": 4, "": {"_count": 2}, "you": {"_count": 1}, "that": {"_count": 1}}, "stretch": {"_count": 6, "her": {"_count": 1}, "its": {"_count": 2}, "out": {"_count": 3}}, "glide": {"_count": 3, "alongside": {"_count": 1}, "toward": {"_count": 1}, "amongst": {"_count": 1}}, "letting": {"_count": 1, "something": {"_count": 1}}, "All": {"_count": 2, "three": {"_count": 1}, "of": {"_count": 1}}, "feed": {"_count": 6, "the": {"_count": 2}, "them": {"_count": 1}, "himself": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}}, "de": {"_count": 1, "gnome": {"_count": 1}}, "degnome": {"_count": 1, "a": {"_count": 1}}, "Household": {"_count": 2, "Pests": {"_count": 2}}, "inspect": {"_count": 7, "it": {"_count": 1}, "Azkaban": {"_count": 1}, "her": {"_count": 1}, "other": {"_count": 1}, "my": {"_count": 1}, "place": {"_count": 1}, "Hagrid": {"_count": 1}}, "swing": {"_count": 7, "it": {"_count": 1}, "backward": {"_count": 1}, "forward": {"_count": 1}, "around": {"_count": 1}, "one": {"_count": 1}, "shut": {"_count": 1}, "closed": {"_count": 1}}, "nothing": {"_count": 3, "so": {"_count": 1}, "if": {"_count": 1}, "The": {"_count": 1}}, "convict": {"_count": 2, "anyone": {"_count": 1}, "you": {"_count": 1}}, "any": {"_count": 18, "lengths": {"_count": 4}, "of": {"_count": 6}, "means": {"_count": 1}, "use": {"_count": 1}, "students": {"_count": 1}, "witch": {"_count": 1}, "parties": {"_count": 1}, "more": {"_count": 1}, "Hogwarts": {"_count": 1}, "worthy": {"_count": 1}}, "enchanting": {"_count": 1, "you": {"_count": 1}}, "um": {"_count": 1, "tell": {"_count": 1}}, "feature": {"_count": 1, "The": {"_count": 1}}, "breakfast": {"_count": 17, "to": {"_count": 1}, "early": {"_count": 1}, "from": {"_count": 1}, "the": {"_count": 2}, "where": {"_count": 1}, "feeling": {"_count": 1}, "with": {"_count": 2}, "": {"_count": 3}, "when": {"_count": 1}, "on": {"_count": 1}, "together": {"_count": 1}, "and": {"_count": 1}, "bringing": {"_count": 1}}, "knocking": {"_count": 1, "things": {"_count": 1}}, "retrieve": {"_count": 23, "the": {"_count": 13}, "your": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 2}, "it": {"_count": 2}, "his": {"_count": 2}, "Professor": {"_count": 1}}, "clear": {"_count": 23, "the": {"_count": 2}, "off": {"_count": 2}, "": {"_count": 1}, "that": {"_count": 1}, "up": {"_count": 2}, "out": {"_count": 2}, "and": {"_count": 1}, "you": {"_count": 2}, "in": {"_count": 1}, "his": {"_count": 2}, "a": {"_count": 1}, "it": {"_count": 4}, "at": {"_count": 1}, "Harrys": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "choose": {"_count": 10, "from": {"_count": 1}, "their": {"_count": 1}, "": {"_count": 1}, "last": {"_count": 1}, "your": {"_count": 3}, "for": {"_count": 1}, "between": {"_count": 1}, "Gryffindor": {"_count": 1}}, "Floo": {"_count": 2, "powder": {"_count": 2}}, "bear": {"_count": 6, "all": {"_count": 1}, "in": {"_count": 1}, "down": {"_count": 1}, "witness": {"_count": 1}, "it": {"_count": 1}, "ridicule": {"_count": 1}}, "peer": {"_count": 11, "through": {"_count": 4}, "at": {"_count": 2}, "into": {"_count": 2}, "nervously": {"_count": 1}, "around": {"_count": 1}, "amongst": {"_count": 1}}, "appear": {"_count": 14, "less": {"_count": 1}, "since": {"_count": 1}, "but": {"_count": 1}, "well": {"_count": 2}, "": {"_count": 3}, "cool": {"_count": 1}, "as": {"_count": 1}, "over": {"_count": 1}, "alone": {"_count": 1}, "in": {"_count": 1}, "busy": {"_count": 1}}, "trouble": {"_count": 2, "you": {"_count": 1}, "them": {"_count": 1}}, "Draco": {"_count": 5, "": {"_count": 1}, "and": {"_count": 1}, "like": {"_count": 1}, "Malfoy": {"_count": 2}}, "more": {"_count": 8, "than": {"_count": 2}, "porridge": {"_count": 1}, "taradiddles": {"_count": 1}, "neighing": {"_count": 1}, "gin": {"_count": 1}, "butterbeer": {"_count": 1}, "woods": {"_count": 1}}, "haggle": {"_count": 1, "": {"_count": 1}}, "Date": {"_count": 1, "": {"_count": 1}}, "brush": {"_count": 3, "him": {"_count": 1}, "his": {"_count": 1}, "up": {"_count": 1}}, "every": {"_count": 8, "stride": {"_count": 1}, "word": {"_count": 2}, "student": {"_count": 1}, "other": {"_count": 1}, "one": {"_count": 1}, "particle": {"_count": 1}, "socalled": {"_count": 1}}, "Gringotts": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "introduce": {"_count": 11, "them": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 2}, "": {"_count": 1}, "Professor": {"_count": 1}, "me": {"_count": 1}, "Death": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "430": {"_count": 1, "p": {"_count": 1}}, "sidle": {"_count": 2, "back": {"_count": 1}, "over": {"_count": 1}}, "present": {"_count": 9, "him": {"_count": 1}, "THE": {"_count": 1}, "yourself": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "evidence": {"_count": 1}, "witnesses": {"_count": 1}, "a": {"_count": 1}, "themselves": {"_count": 1}}, "pay": {"_count": 20, "for": {"_count": 5}, "Frank": {"_count": 1}, "attention": {"_count": 2}, "back": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}, "anyway": {"_count": 1}, "to": {"_count": 1}, "close": {"_count": 1}, "Mr": {"_count": 1}, "said": {"_count": 1}, "an": {"_count": 1}, "their": {"_count": 2}, "my": {"_count": 1}}, "travel": {"_count": 5, "": {"_count": 2}, "past": {"_count": 1}, "this": {"_count": 1}, "by": {"_count": 1}}, "wall": {"_count": 1, "for": {"_count": 1}}, "Molly": {"_count": 2, "he": {"_count": 1}, "Mr": {"_count": 1}}, "wonder": {"_count": 5, "when": {"_count": 1}, "whether": {"_count": 1}, "": {"_count": 2}, "aloud": {"_count": 1}}, "eleven": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "disappear": {"_count": 10, "casually": {"_count": 1}, "into": {"_count": 1}, "then": {"_count": 1}, "did": {"_count": 1}, "to": {"_count": 1}, "completely": {"_count": 1}, "and": {"_count": 1}, "their": {"_count": 1}, "": {"_count": 2}}, "animals": {"_count": 1, "from": {"_count": 1}}, "Apparate": {"_count": 20, "": {"_count": 4}, "yet": {"_count": 1}, "said": {"_count": 1}, "or": {"_count": 2}, "theyll": {"_count": 1}, "every": {"_count": 1}, "in": {"_count": 1}, "outside": {"_count": 1}, "so": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}, "just": {"_count": 1}, "out": {"_count": 1}, "very": {"_count": 1}, "to": {"_count": 2}}, "excitement": {"_count": 1, "": {"_count": 1}}, "wide": {"_count": 1, "purplish": {"_count": 1}}, "admit": {"_count": 28, "that": {"_count": 8}, "she": {"_count": 1}, "he": {"_count": 2}, "a": {"_count": 1}, "them": {"_count": 4}, "it": {"_count": 5}, "him": {"_count": 3}, "on": {"_count": 1}, "to": {"_count": 1}, "however": {"_count": 1}, "something": {"_count": 1}}, "sink": {"_count": 18, "into": {"_count": 2}, "through": {"_count": 2}, "his": {"_count": 2}, "in": {"_count": 5}, "": {"_count": 1}, "back": {"_count": 1}, "beneath": {"_count": 1}, "low": {"_count": 1}, "again": {"_count": 2}, "its": {"_count": 1}}, "whine": {"_count": 1, "": {"_count": 1}}, "squint": {"_count": 3, "through": {"_count": 1}, "at": {"_count": 2}}, "shudder": {"_count": 2, "and": {"_count": 2}}, "mend": {"_count": 9, "it": {"_count": 2}, "The": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "something": {"_count": 2}, "that": {"_count": 1}, "just": {"_count": 1}}, "hit": {"_count": 13, "them": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 3}, "Malfoy": {"_count": 1}, "Fred": {"_count": 1}, "him": {"_count": 2}, "solid": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}}, "place": {"_count": 14, "the": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 4}, "yourselves": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "inside": {"_count": 1}, "their": {"_count": 1}}, "arrive": {"_count": 11, "with": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 2}, "two": {"_count": 1}, "for": {"_count": 1}, "Roger": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}, "suddenly": {"_count": 1}}, "police": {"_count": 1, "": {"_count": 1}}, "expel": {"_count": 7, "you": {"_count": 4}, "Hogwarts": {"_count": 1}, "Potter": {"_count": 1}, "him": {"_count": 1}}, "fetch": {"_count": 15, "Professor": {"_count": 2}, "their": {"_count": 1}, "Fleur": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 3}, "him": {"_count": 2}, "Harry": {"_count": 1}, "you": {"_count": 1}, "Snape": {"_count": 1}, "his": {"_count": 1}, "wine": {"_count": 1}}, "sample": {"_count": 1, "Snape": {"_count": 1}}, "scramble": {"_count": 1, "in": {"_count": 1}}, "smoke": {"_count": 4, "at": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}}, "crop": {"_count": 1, "up": {"_count": 1}}, "doctor": {"_count": 1, "a": {"_count": 1}}, "seize": {"_count": 17, "a": {"_count": 1}, "the": {"_count": 5}, "his": {"_count": 1}, "up": {"_count": 1}, "control": {"_count": 1}, "power": {"_count": 2}, "it": {"_count": 2}, "himself": {"_count": 1}, "him": {"_count": 1}, "Freds": {"_count": 1}, "people": {"_count": 1}}, "remove": {"_count": 21, "them": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 5}, "themselves": {"_count": 1}, "it": {"_count": 4}, "Azkaban": {"_count": 1}, "him": {"_count": 1}, "anything": {"_count": 1}, "something": {"_count": 1}, "Dolores": {"_count": 1}, "": {"_count": 1}, "Krum": {"_count": 1}, "all": {"_count": 1}}, "squash": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "transfigure": {"_count": 1, "his": {"_count": 1}}, "Lockharts": {"_count": 3, "side": {"_count": 1}, "office": {"_count": 2}}, "date": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}}, "54": {"_count": 1, "": {"_count": 1}}, "Lockhart": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "rid": {"_count": 10, "the": {"_count": 1}, "it": {"_count": 1}, "themselves": {"_count": 1}, "himself": {"_count": 3}, "your": {"_count": 1}, "their": {"_count": 1}, "us": {"_count": 1}, "its": {"_count": 1}}, "business": {"_count": 2, "He": {"_count": 1}, "": {"_count": 1}}, "arm": {"_count": 3, "you": {"_count": 2}, "or": {"_count": 1}}, "wizardkind": {"_count": 1, "": {"_count": 1}}, "scream": {"_count": 10, "said": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 2}, "too": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "Mudbloods": {"_count": 1}}, "wreck": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 5, "nip": {"_count": 1}, "from": {"_count": 1}, "ignore": {"_count": 1}, "walk": {"_count": 1}, "miss": {"_count": 1}}, "reach": {"_count": 30, "the": {"_count": 13}, "Malfoy": {"_count": 1}, "for": {"_count": 1}, "Scabbers": {"_count": 1}, "it": {"_count": 2}, "here": {"_count": 1}, "his": {"_count": 2}, "now": {"_count": 1}, "Pulling": {"_count": 1}, "our": {"_count": 1}, "Kings": {"_count": 1}, "them": {"_count": 1}, "Neville": {"_count": 1}, "this": {"_count": 1}, "him": {"_count": 2}}, "explaining": {"_count": 1, "the": {"_count": 1}}, "fourth": {"_count": 2, "year": {"_count": 1}, "years": {"_count": 1}}, "wiggle": {"_count": 1, "over": {"_count": 1}}, "snore": {"_count": 1, "": {"_count": 1}}, "circumstances": {"_count": 1, "beyond": {"_count": 1}}, "shoulder": {"_count": 7, "facing": {"_count": 1}, "height": {"_count": 2}, "wands": {"_count": 2}, "some": {"_count": 1}, "gazing": {"_count": 1}}, "train": {"_count": 4, "their": {"_count": 1}, "you": {"_count": 1}, "Professor": {"_count": 1}, "trolls": {"_count": 1}}, "slits": {"_count": 2, "": {"_count": 1}, "through": {"_count": 1}}, "raise": {"_count": 20, "some": {"_count": 1}, "a": {"_count": 2}, "werewolf": {"_count": 1}, "his": {"_count": 3}, "them": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 4}, "you": {"_count": 1}, "her": {"_count": 2}, "Harrys": {"_count": 1}, "himself": {"_count": 2}, "him": {"_count": 1}}, "dive": {"_count": 6, "in": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}, "once": {"_count": 1}, "sideways": {"_count": 1}}, "criticize": {"_count": 7, "a": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 2}, "Ron": {"_count": 1}, "our": {"_count": 1}, "or": {"_count": 1}}, "eight": {"_count": 4, "and": {"_count": 1}, "Exclusive": {"_count": 1}, "Id": {"_count": 1}, "that": {"_count": 1}}, "Gladys": {"_count": 1, "Gudgeon": {"_count": 1}}, "chill": {"_count": 1, "the": {"_count": 1}}, "agree": {"_count": 3, "": {"_count": 1}, "wholeheartedly": {"_count": 1}, "not": {"_count": 1}}, "participate": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "connect": {"_count": 3, "him": {"_count": 1}, "this": {"_count": 1}, "their": {"_count": 1}}, "Nearly": {"_count": 4, "Headless": {"_count": 4}}, "cause": {"_count": 5, "havoc": {"_count": 1}, "trouble": {"_count": 1}, "": {"_count": 1}, "severe": {"_count": 1}, "pain": {"_count": 1}}, "crash": {"_count": 4, "it": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "Sir": {"_count": 2, "Patrick": {"_count": 1}, "Cadogan": {"_count": 1}}, "warm": {"_count": 2, "up": {"_count": 2}}, "Moaning": {"_count": 3, "Myrtle": {"_count": 1}, "Myrtles": {"_count": 2}}, "recapture": {"_count": 3, "his": {"_count": 1}, "Black": {"_count": 1}, "the": {"_count": 1}}, "whom": {"_count": 15, "stone": {"_count": 1}, "Harry": {"_count": 3}, "their": {"_count": 1}, "they": {"_count": 2}, "she": {"_count": 2}, "Sibyll": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "Filch": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "deserted": {"_count": 1}, "also": {"_count": 1}, "to": {"_count": 1}}, "provide": {"_count": 6, "the": {"_count": 1}, "for": {"_count": 1}, "a": {"_count": 2}, "me": {"_count": 1}, "protection": {"_count": 1}}, "procure": {"_count": 4, "some": {"_count": 2}, "a": {"_count": 1}, "treasures": {"_count": 1}}, "mean": {"_count": 20, "": {"_count": 7}, "something": {"_count": 1}, "he": {"_count": 1}, "\u2018not": {"_count": 1}, "that": {"_count": 2}, "number": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 2}, "nonverbal": {"_count": 1}, "Well": {"_count": 1}, "Fleur": {"_count": 1}, "\u2018invincible": {"_count": 1}}, "frame": {"_count": 1, "us": {"_count": 1}}, "no": {"_count": 12, "effect": {"_count": 1}, "one": {"_count": 2}, "time": {"_count": 1}, "good": {"_count": 5}, "harm": {"_count": 1}, "doubt": {"_count": 1}, "chance": {"_count": 1}}, "Petrify": {"_count": 1, "Filch": {"_count": 1}}, "spend": {"_count": 18, "a": {"_count": 2}, "the": {"_count": 10}, "twelve": {"_count": 1}, "six": {"_count": 1}, "an": {"_count": 1}, "Christmas": {"_count": 1}, "it": {"_count": 2}}, "scrape": {"_count": 5, "tubeworms": {"_count": 1}, "passes": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "some": {"_count": 1}}, "History": {"_count": 3, "of": {"_count": 3}}, "long": {"_count": 3, "enough": {"_count": 1}, "journeys": {"_count": 1}, "hair": {"_count": 1}}, "copy": {"_count": 3, "down": {"_count": 1}, "such": {"_count": 1}, "out": {"_count": 1}}, "grow": {"_count": 10, "between": {"_count": 1}, "quickly": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}, "dimmer": {"_count": 1}, "alarmingly": {"_count": 1}, "up": {"_count": 2}, "less": {"_count": 1}, "larger": {"_count": 1}}, "unseal": {"_count": 1, "the": {"_count": 1}}, "purge": {"_count": 1, "the": {"_count": 1}}, "history": {"_count": 1, "to": {"_count": 1}}, "solid": {"_count": 1, "believable": {"_count": 1}}, "upset": {"_count": 4, "you": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "But": {"_count": 1}}, "rest": {"_count": 14, "somewhere": {"_count": 1}, "on": {"_count": 4}, "between": {"_count": 1}, "pointing": {"_count": 1}, "sprawled": {"_count": 1}, "with": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 2}, "across": {"_count": 1}, "in": {"_count": 1}}, "bustle": {"_count": 1, "them": {"_count": 1}}, "mess": {"_count": 2, "up": {"_count": 1}, "things": {"_count": 1}}, "Mum": {"_count": 1, "": {"_count": 1}}, "son": {"_count": 2, "": {"_count": 1}, "mother": {"_count": 1}}, "class": {"_count": 7, "": {"_count": 1}, "now": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "without": {"_count": 1}, "thats": {"_count": 1}, "would": {"_count": 1}}, "sign": {"_count": 13, "for": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 3}, "my": {"_count": 1}, "it": {"_count": 1}, "too": {"_count": 1}, "youve": {"_count": 1}, "their": {"_count": 1}, "an": {"_count": 1}, "after": {"_count": 1}, "his": {"_count": 1}}, "dedicate": {"_count": 1, "my": {"_count": 1}}, "less": {"_count": 1, "able": {"_count": 1}}, "detect": {"_count": 4, "a": {"_count": 2}, "Voldemorts": {"_count": 1}, "Death": {"_count": 1}}, "chicken": {"_count": 2, "out": {"_count": 1}, "and": {"_count": 1}}, "wish": {"_count": 9, "Harry": {"_count": 2}, "him": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "Id": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 2}}, "Woods": {"_count": 2, "usual": {"_count": 1}, "standard": {"_count": 1}}, "speed": {"_count": 4, "them": {"_count": 1}, "toward": {"_count": 1}, "up": {"_count": 1}, "across": {"_count": 1}}, "reply": {"_count": 6, "": {"_count": 2}, "but": {"_count": 1}, "scathingly": {"_count": 1}, "\u2018Good": {"_count": 1}, "\u2018Yes": {"_count": 1}}, "zero": {"_count": 3, "The": {"_count": 1}, "and": {"_count": 1}, "Ron": {"_count": 1}}, "signal": {"_count": 4, "to": {"_count": 1}, "break": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "forfeit": {"_count": 1, "the": {"_count": 1}}, "resume": {"_count": 5, "play": {"_count": 1}, "the": {"_count": 2}, "Occlumency": {"_count": 1}, "his": {"_count": 1}}, "dodge": {"_count": 1, "the": {"_count": 1}}, "fix": {"_count": 10, "your": {"_count": 1}, "that": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "so": {"_count": 1}}, "er": {"_count": 8, "tidy": {"_count": 1}, "let": {"_count": 1}, "give": {"_count": 1}, "what": {"_count": 1}, "Remedial": {"_count": 1}, "\u2018bring": {"_count": 1}, "mention": {"_count": 1}, "ensure": {"_count": 1}}, "wont": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "certainly": {"_count": 1, "but": {"_count": 1}}, "stuff": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "it": {"_count": 1}}, "regrow": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "distract": {"_count": 10, "him": {"_count": 3}, "Stan": {"_count": 1}, "himself": {"_count": 1}, "or": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "them": {"_count": 2}}, "iron": {"_count": 3, "his": {"_count": 1}, "pegs": {"_count": 1}, "it": {"_count": 1}}, "repeat": {"_count": 8, "itself": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 2}, "any": {"_count": 1}, "instructions": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}}, "sneak": {"_count": 13, "up": {"_count": 2}, "into": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 1}, "before": {"_count": 1}, "down": {"_count": 2}, "something": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 2}, "upstairs": {"_count": 1}}, "Colin": {"_count": 1, "Creevey": {"_count": 1}}, "worm": {"_count": 3, "a": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 1}}, "bully": {"_count": 4, "Neville": {"_count": 1}, "their": {"_count": 1}, "people": {"_count": 1}, "": {"_count": 1}}, "fizz": {"_count": 1, "and": {"_count": 1}}, "swell": {"_count": 4, "like": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "bigger": {"_count": 1}}, "restore": {"_count": 5, "calm": {"_count": 2}, "HeWhoMustNotBeNamed": {"_count": 1}, "me": {"_count": 1}, "Voldemort": {"_count": 1}}, "Goyles": {"_count": 1, "cauldron": {"_count": 1}}, "stir": {"_count": 3, "feverishly": {"_count": 1}, "were": {"_count": 1}, "counterclockwise": {"_count": 1}}, "sprawl": {"_count": 1, "on": {"_count": 1}}, "disarm": {"_count": 5, "your": {"_count": 1}, "them": {"_count": 1}, "Snape": {"_count": 1}, "Anthony": {"_count": 1}, "me": {"_count": 1}}, "bewitch": {"_count": 5, "Malfoy": {"_count": 1}, "them": {"_count": 1}, "Quaffles": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "strike": {"_count": 16, "": {"_count": 5}, "at": {"_count": 1}, "now": {"_count": 1}, "to": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "Lupin": {"_count": 1}, "There": {"_count": 1}, "on": {"_count": 1}, "without": {"_count": 1}, "again": {"_count": 1}, "but": {"_count": 1}}, "eye": {"_count": 4, "with": {"_count": 2}, "": {"_count": 1}, "level": {"_count": 1}}, "snakes": {"_count": 8, "": {"_count": 4}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}}, "Potter": {"_count": 5, "he": {"_count": 2}, "Karkaroff": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}}, "Justins": {"_count": 1, "": {"_count": 1}}, "Ernie": {"_count": 4, "with": {"_count": 1}, "and": {"_count": 3}}, "waft": {"_count": 1, "Nearly": {"_count": 1}}, "book": {"_count": 1, "seats": {"_count": 1}}, "sprout": {"_count": 1, "fangs": {"_count": 1}}, "march": {"_count": 1, "ahead": {"_count": 1}}, "support": {"_count": 10, "the": {"_count": 2}, "a": {"_count": 1}, "Blacks": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 2}, "himself": {"_count": 1}, "its": {"_count": 1}}, "soften": {"_count": 2, "by": {"_count": 1}, "me": {"_count": 1}}, "enjoy": {"_count": 12, "Christmas": {"_count": 1}, "more": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "with": {"_count": 1}, "themselves": {"_count": 1}}, "finalize": {"_count": 1, "their": {"_count": 1}}, "investigate": {"_count": 15, "Malfoy": {"_count": 1}, "the": {"_count": 4}, "more": {"_count": 1}, "Peeves": {"_count": 1}, "these": {"_count": 1}, "Snape": {"_count": 1}, "": {"_count": 3}, "anyone": {"_count": 1}, "a": {"_count": 1}, "Mum": {"_count": 1}}, "strangle": {"_count": 7, "me": {"_count": 1}, "unwitting": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}, "three": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}}, "Goyle": {"_count": 3, "and": {"_count": 1}, "s": {"_count": 1}, "Now": {"_count": 1}}, "spill": {"_count": 7, "a": {"_count": 1}, "the": {"_count": 2}, "from": {"_count": 1}, "They": {"_count": 1}, "too": {"_count": 1}, "magical": {"_count": 1}}, "Myrtle": {"_count": 3, "gurgling": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}}, "hush": {"_count": 1, "it": {"_count": 1}}, "hoist": {"_count": 4, "up": {"_count": 1}, "Ginny": {"_count": 1}, "Dudley": {"_count": 1}, "it": {"_count": 1}}, "Dad": {"_count": 2, "tomorrow": {"_count": 1}, "said": {"_count": 1}}, "spare": {"_count": 13, "her": {"_count": 2}, "the": {"_count": 1}, "for": {"_count": 3}, "": {"_count": 1}, "a": {"_count": 2}, "on": {"_count": 1}, "if": {"_count": 1}, "his": {"_count": 1}, "Hermione": {"_count": 1}}, "brown": {"_count": 1, "": {"_count": 1}}, "poke": {"_count": 4, "it": {"_count": 1}, "Grawp": {"_count": 1}, "him": {"_count": 1}, "around": {"_count": 1}}, "wander": {"_count": 4, "around": {"_count": 1}, "off": {"_count": 2}, "freely": {"_count": 1}}, "flush": {"_count": 4, "it": {"_count": 2}, "": {"_count": 1}, "ourselves": {"_count": 1}}, "chuck": {"_count": 2, "it": {"_count": 1}, "me": {"_count": 1}}, "shine": {"_count": 4, "weakly": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}}, "report": {"_count": 15, "that": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 2}, "me": {"_count": 1}, "": {"_count": 1}, "anything": {"_count": 1}, "any": {"_count": 1}, "him": {"_count": 1}, "to": {"_count": 2}, "back": {"_count": 1}, "what": {"_count": 1}, "it": {"_count": 1}, "those": {"_count": 1}}, "hibernate": {"_count": 1, "for": {"_count": 1}}, "match": {"_count": 8, "": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 2}, "Bellatrix": {"_count": 1}, "Voldemorts": {"_count": 1}}, "enter": {"_count": 30, "into": {"_count": 1}, "her": {"_count": 2}, "the": {"_count": 9}, "Weasley": {"_count": 1}, "": {"_count": 5}, "hell": {"_count": 1}, "wouldnt": {"_count": 1}, "and": {"_count": 1}, "my": {"_count": 2}, "it": {"_count": 1}, "muttered": {"_count": 1}, "his": {"_count": 1}, "Hogsmeade": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "Hogwarts": {"_count": 1}}, "whip": {"_count": 3, "up": {"_count": 1}, "you": {"_count": 1}, "yourselves": {"_count": 1}}, "include": {"_count": 3, "Ginny": {"_count": 1}, "some": {"_count": 1}, "Screaming": {"_count": 1}}, "Arry": {"_count": 1, "Potter": {"_count": 1}}, "evaporate": {"_count": 1, "on": {"_count": 1}}, "disperse": {"_count": 1, "the": {"_count": 1}}, "Crabbe": {"_count": 11, "and": {"_count": 9}, "": {"_count": 1}, "Goyle": {"_count": 1}}, "scribble": {"_count": 4, "back": {"_count": 1}, "skidding": {"_count": 1}, "down": {"_count": 1}, "for": {"_count": 1}}, "release": {"_count": 8, "it": {"_count": 3}, "Montague": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 2}, "us": {"_count": 1}}, "blow": {"_count": 4, "as": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "press": {"_count": 7, "his": {"_count": 2}, "the": {"_count": 2}, "my": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "butt": {"_count": 3, "in": {"_count": 3}}, "name": {"_count": 2, "me": {"_count": 1}, "it": {"_count": 1}}, "allow": {"_count": 21, "you": {"_count": 1}, "some": {"_count": 1}, "them": {"_count": 3}, "me": {"_count": 1}, "himself": {"_count": 1}, "her": {"_count": 2}, "room": {"_count": 1}, "the": {"_count": 3}, "Mrs": {"_count": 1}, "Fred": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}, "Voldemort": {"_count": 1}, "a": {"_count": 1}}, "remain": {"_count": 42, "at": {"_count": 4}, "calm": {"_count": 2}, "inside": {"_count": 2}, "airborne": {"_count": 2}, "in": {"_count": 6}, "alone": {"_count": 1}, "unnamed": {"_count": 1}, "here": {"_count": 1}, "still": {"_count": 1}, "on": {"_count": 1}, "convinced": {"_count": 1}, "alert": {"_count": 1}, "behind": {"_count": 3}, "vigilant": {"_count": 1}, "out": {"_count": 1}, "friends": {"_count": 1}, "intact": {"_count": 1}, "upright": {"_count": 1}, "open": {"_count": 3}, "a": {"_count": 1}, "hidden": {"_count": 1}, "silent": {"_count": 1}, "present": {"_count": 2}, "with": {"_count": 1}, "unsullied": {"_count": 1}, "limp": {"_count": 1}}, "Riddle": {"_count": 1, "from": {"_count": 1}}, "roam": {"_count": 1, "the": {"_count": 1}}, "squeal": {"_count": 1, "on": {"_count": 1}}, "some": {"_count": 12, "Muggle": {"_count": 1}, "of": {"_count": 2}, "more": {"_count": 1}, "foreign": {"_count": 1}, "presentopening": {"_count": 1}, "very": {"_count": 1}, "degree": {"_count": 1}, "lengths": {"_count": 1}, "friends": {"_count": 1}, "obscure": {"_count": 1}, "stupid": {"_count": 1}}, "revive": {"_count": 4, "those": {"_count": 2}, "Mr": {"_count": 1}, "her": {"_count": 1}}, "deal": {"_count": 18, "with": {"_count": 18}}, "brilliant": {"_count": 1, "sunshine": {"_count": 1}}, "tumultuous": {"_count": 4, "applause": {"_count": 3}, "roars": {"_count": 1}}, "anybodys": {"_count": 1, "office": {"_count": 1}}, "address": {"_count": 5, "the": {"_count": 1}, "Harry": {"_count": 1}, "them": {"_count": 1}, "Mrs": {"_count": 1}, "those": {"_count": 1}}, "nods": {"_count": 1, "and": {"_count": 1}}, "Cornelius": {"_count": 2, "Fudge": {"_count": 2}}, "growl": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "step": {"_count": 10, "aside": {"_count": 1}, "inside": {"_count": 2}, "in": {"_count": 1}, "back": {"_count": 1}, "toward": {"_count": 1}, "hastily": {"_count": 1}, "into": {"_count": 1}, "deliberately": {"_count": 1}, "ahead": {"_count": 1}}, "those": {"_count": 18, "who": {"_count": 9}, "they": {"_count": 1}, "elves": {"_count": 1}, "around": {"_count": 1}, "dunces": {"_count": 1}, "ingredients": {"_count": 1}, "few": {"_count": 2}, "listeners": {"_count": 1}, "of": {"_count": 1}}, "apply": {"_count": 3, "for": {"_count": 1}, "with": {"_count": 1}, "Occlumency": {"_count": 1}}, "vomit": {"_count": 3, "into": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 1}}, "tip": {"_count": 5, "an": {"_count": 1}, "Ron": {"_count": 1}, "with": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "going": {"_count": 1, "into": {"_count": 1}}, "stiffen": {"_count": 1, "his": {"_count": 1}}, "pounce": {"_count": 1, "said": {"_count": 1}}, "shield": {"_count": 5, "their": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 2}, "themselves": {"_count": 1}}, "trundling": {"_count": 1, "around": {"_count": 1}}, "pound": {"_count": 5, "in": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 1}, "through": {"_count": 1}, "the": {"_count": 1}}, "Azkaban": {"_count": 32, "": {"_count": 11}, "we": {"_count": 1}, "he": {"_count": 1}, "just": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "tonight": {"_count": 1}, "because": {"_count": 1}, "without": {"_count": 2}, "while": {"_count": 1}, "in": {"_count": 1}, "rather": {"_count": 1}, "for": {"_count": 2}, "to": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}, "when": {"_count": 1}, "either": {"_count": 1}}, "inch": {"_count": 2, "slowly": {"_count": 1}, "toward": {"_count": 1}}, "Aragog": {"_count": 3, "hearing": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 1}}, "Seamus": {"_count": 3, "": {"_count": 1}, "Finnigan": {"_count": 1}, "who": {"_count": 1}}, "receive": {"_count": 8, "your": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 2}, "such": {"_count": 1}, "low": {"_count": 1}, "some": {"_count": 1}, "Voldemorts": {"_count": 1}}, "anybody": {"_count": 14, "": {"_count": 4}, "and": {"_count": 1}, "who": {"_count": 5}, "else": {"_count": 2}, "in": {"_count": 1}, "without": {"_count": 1}}, "tear": {"_count": 5, "it": {"_count": 1}, "at": {"_count": 1}, "flesh": {"_count": 1}, "his": {"_count": 1}, "each": {"_count": 1}}, "if": {"_count": 3, "": {"_count": 1}, "I": {"_count": 1}, "youre": {"_count": 1}}, "McGonagall": {"_count": 6, "": {"_count": 1}, "for": {"_count": 1}, "clutched": {"_count": 1}, "say": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "tackle": {"_count": 3, "the": {"_count": 2}, "dementors": {"_count": 1}}, "track": {"_count": 9, "these": {"_count": 1}, "him": {"_count": 1}, "down": {"_count": 5}, "them": {"_count": 1}, "anyone": {"_count": 1}}, "haunt": {"_count": 2, "Olive": {"_count": 1}, "him": {"_count": 1}}, "spin": {"_count": 8, "": {"_count": 1}, "very": {"_count": 1}, "like": {"_count": 1}, "around": {"_count": 1}, "as": {"_count": 1}, "yet": {"_count": 1}, "out": {"_count": 1}, "they": {"_count": 1}}, "slide": {"_count": 6, "into": {"_count": 1}, "slowly": {"_count": 1}, "down": {"_count": 1}, "dreamlike": {"_count": 1}, "off": {"_count": 1}, "through": {"_count": 1}}, "need": {"_count": 8, "me": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 2}, "them": {"_count": 1}, "all": {"_count": 1}, "many": {"_count": 1}, "that": {"_count": 1}}, "inject": {"_count": 2, "some": {"_count": 1}, "a": {"_count": 1}}, "shift": {"_count": 5, "the": {"_count": 1}, "his": {"_count": 2}, "aside": {"_count": 1}, "it": {"_count": 1}}, "pretend": {"_count": 14, "these": {"_count": 1}, "to": {"_count": 2}, "that": {"_count": 3}, "": {"_count": 1}, "it": {"_count": 2}, "she": {"_count": 1}, "he": {"_count": 2}, "not": {"_count": 1}, "youve": {"_count": 1}}, "flicker": {"_count": 1, "": {"_count": 1}}, "clamp": {"_count": 1, "them": {"_count": 1}}, "crane": {"_count": 2, "his": {"_count": 2}}, "side": {"_count": 11, "": {"_count": 6}, "and": {"_count": 1}, "quite": {"_count": 1}, "of": {"_count": 1}, "behind": {"_count": 1}, "as": {"_count": 1}}, "confide": {"_count": 7, "in": {"_count": 3}, "these": {"_count": 1}, "suspicions": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "charm": {"_count": 1, "the": {"_count": 1}}, "dispose": {"_count": 3, "of": {"_count": 3}}, "old": {"_count": 2, "Armando": {"_count": 1}, "Kreacher": {"_count": 1}}, "solve": {"_count": 4, "the": {"_count": 2}, "for": {"_count": 1}, "though": {"_count": 1}}, "defeat": {"_count": 1, "the": {"_count": 1}}, "trace": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 2}}, "murder": {"_count": 5, "Harrys": {"_count": 1}, "Sirius": {"_count": 1}, "him": {"_count": 2}, "many": {"_count": 1}}, "disappoint": {"_count": 1, "you": {"_count": 1}}, "scare": {"_count": 5, "Riddle": {"_count": 1}, "most": {"_count": 1}, "them": {"_count": 1}, "off": {"_count": 1}, "Snape": {"_count": 1}}, "swallow": {"_count": 5, "him": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "Stinksap": {"_count": 1}, "a": {"_count": 1}}, "pour": {"_count": 5, "down": {"_count": 1}, "himself": {"_count": 1}, "some": {"_count": 1}, "from": {"_count": 1}, "out": {"_count": 1}}, "RRiddle": {"_count": 1, "made": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "sound": {"_count": 21, "so": {"_count": 1}, "as": {"_count": 4}, "innocently": {"_count": 1}, "": {"_count": 1}, "disdainful": {"_count": 1}, "a": {"_count": 1}, "unconcerned": {"_count": 1}, "more": {"_count": 1}, "like": {"_count": 1}, "casual": {"_count": 4}, "braver": {"_count": 1}, "interested": {"_count": 1}, "argumentative": {"_count": 1}, "robustly": {"_count": 1}, "afraid": {"_count": 1}}, "enchant": {"_count": 1, "Ginny": {"_count": 1}}, "thank": {"_count": 3, "you": {"_count": 3}}, "suspend": {"_count": 1, "me": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "Dobby": {"_count": 6, "": {"_count": 2}, "I": {"_count": 1}, "looked": {"_count": 1}, "who": {"_count": 1}, "saying": {"_count": 1}}, "several": {"_count": 4, "Hogwarts": {"_count": 1}, "times": {"_count": 1}, "warlocks": {"_count": 1}, "cries": {"_count": 1}}, "wring": {"_count": 3, "his": {"_count": 1}, "Hagrids": {"_count": 1}, "any": {"_count": 1}}, "shriek": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "admire": {"_count": 5, "Uncle": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 2}, "Siriuss": {"_count": 1}}, "suppose": {"_count": 2, "they": {"_count": 1}, "that": {"_count": 1}}, "slam": {"_count": 5, "it": {"_count": 1}, "the": {"_count": 3}, "her": {"_count": 1}}, "gulp": {"_count": 2, "some": {"_count": 1}, "endless": {"_count": 1}}, "light": {"_count": 7, "up": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "about": {"_count": 1}, "that": {"_count": 1}, "For": {"_count": 1}}, "clip": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "befriend": {"_count": 2, "giant": {"_count": 1}, "Harry": {"_count": 1}}, "register": {"_count": 5, "its": {"_count": 1}, "his": {"_count": 1}, "yourself": {"_count": 2}, "as": {"_count": 1}}, "Rons": {"_count": 15, "and": {"_count": 2}, "brother": {"_count": 1}, "disgust": {"_count": 1}, "": {"_count": 1}, "left": {"_count": 1}, "who": {"_count": 1}, "plight": {"_count": 1}, "abysmal": {"_count": 1}, "juice": {"_count": 1}, "attic": {"_count": 2}, "with": {"_count": 1}, "side": {"_count": 1}, "Auntie": {"_count": 1}}, "care": {"_count": 15, "": {"_count": 3}, "whether": {"_count": 1}, "said": {"_count": 1}, "nor": {"_count": 1}, "for": {"_count": 5}, "about": {"_count": 1}, "how": {"_count": 2}, "the": {"_count": 1}}, "Uncle": {"_count": 13, "Vernon": {"_count": 10}, "Vernons": {"_count": 3}}, "earth": {"_count": 7, "with": {"_count": 1}, "": {"_count": 2}, "is": {"_count": 1}, "but": {"_count": 1}, "around": {"_count": 1}, "in": {"_count": 1}}, "Marge": {"_count": 1, "": {"_count": 1}}, "brood": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "burn": {"_count": 10, "with": {"_count": 1}, "so": {"_count": 1}, "evermore": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 2}, "red": {"_count": 1}, "feeling": {"_count": 1}, "away": {"_count": 1}, "in": {"_count": 1}}, "fuss": {"_count": 2, "Petunia": {"_count": 1}, "about": {"_count": 1}}, "Cure": {"_count": 1, "Reluctant": {"_count": 1}}, "blood": {"_count": 2, "as": {"_count": 1}, "traitors": {"_count": 1}}, "gape": {"_count": 1, "at": {"_count": 1}}, "expand": {"_count": 2, "her": {"_count": 1}, "and": {"_count": 1}}, "rise": {"_count": 16, "off": {"_count": 1}, "": {"_count": 2}, "will": {"_count": 1}, "again": {"_count": 2}, "moments": {"_count": 1}, "Bagman": {"_count": 1}, "slowly": {"_count": 1}, "rapidly": {"_count": 1}, "before": {"_count": 1}, "from": {"_count": 1}, "suddenly": {"_count": 1}, "to": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}}, "Muggle": {"_count": 3, "police": {"_count": 1}, "house": {"_count": 1}, "schools": {"_count": 1}}, "Ernies": {"_count": 1, "": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "Stan": {"_count": 3, "with": {"_count": 1}, "and": {"_count": 1}, "Shunpike": {"_count": 1}}, "YouKnowOo": {"_count": 1, "they": {"_count": 1}}, "land": {"_count": 6, "him": {"_count": 2}, "at": {"_count": 1}, "his": {"_count": 1}, "with": {"_count": 2}}, "Aberdeen": {"_count": 1, "": {"_count": 1}}, "Ern": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "cold": {"_count": 1, "steely": {"_count": 1}}, "pink": {"_count": 1, "shot": {"_count": 1}}, "Fudge": {"_count": 8, "and": {"_count": 2}, "": {"_count": 2}, "who": {"_count": 1}, "again": {"_count": 1}, "on": {"_count": 1}, "as": {"_count": 1}}, "exercise": {"_count": 4, "a": {"_count": 1}, "great": {"_count": 1}, "some": {"_count": 2}}, "aerodynamic": {"_count": 1, "perfection": {"_count": 1}}, "replenish": {"_count": 1, "his": {"_count": 1}}, "fortunetelling": {"_count": 1, "": {"_count": 1}}, "Do": {"_count": 2, "When": {"_count": 1}, "with": {"_count": 1}}, "tidy": {"_count": 1, "the": {"_count": 1}}, "chat": {"_count": 4, "Neville": {"_count": 1}, "": {"_count": 1}, "up": {"_count": 1}, "just": {"_count": 1}}, "Flourish": {"_count": 3, "and": {"_count": 3}}, "dig": {"_count": 3, "me": {"_count": 1}, "himself": {"_count": 1}, "the": {"_count": 1}}, "belong": {"_count": 6, "to": {"_count": 5}, "in": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "bet": {"_count": 6, "he": {"_count": 2}, "everything": {"_count": 1}, "that": {"_count": 1}, "shed": {"_count": 1}, "perhaps": {"_count": 1}}, "congratulate": {"_count": 5, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Mr": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}}, "Errols": {"_count": 1, "leg": {"_count": 1}}, "slow": {"_count": 5, "down": {"_count": 4}, "you": {"_count": 1}}, "suck": {"_count": 2, "something": {"_count": 1}, "all": {"_count": 1}}, "push": {"_count": 21, "his": {"_count": 2}, "himself": {"_count": 4}, "Crookshanks": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 4}, "it": {"_count": 3}, "her": {"_count": 1}, "Harry": {"_count": 2}, "open": {"_count": 1}, "past": {"_count": 1}, "these": {"_count": 1}}, "pieces": {"_count": 3, "like": {"_count": 1}, "in": {"_count": 1}, "before": {"_count": 1}}, "engulf": {"_count": 2, "him": {"_count": 2}}, "another": {"_count": 14, "year": {"_count": 1}, "Quidditch": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "small": {"_count": 1}, "family": {"_count": 1}, "helping": {"_count": 1}, "portrait": {"_count": 1}, "booming": {"_count": 1}, "aproned": {"_count": 1}, "healthy": {"_count": 1}, "of": {"_count": 1}, "had": {"_count": 1}, "door": {"_count": 1}}, "harm": {"_count": 1, "you": {"_count": 1}}, "everything": {"_count": 3, "he": {"_count": 1}, "that": {"_count": 1}, "else": {"_count": 1}}, "sausages": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Fred": {"_count": 13, "and": {"_count": 6}, "": {"_count": 4}, "pulled": {"_count": 1}, "who": {"_count": 1}, "Remus": {"_count": 1}}, "North": {"_count": 3, "Tower": {"_count": 3}}, "scorn": {"_count": 2, "at": {"_count": 1}, "a": {"_count": 1}}, "flop": {"_count": 2, "back": {"_count": 1}, "out": {"_count": 1}}, "mop": {"_count": 5, "his": {"_count": 1}, "up": {"_count": 4}}, "Divination": {"_count": 5, "said": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 1}}, "penetrate": {"_count": 10, "the": {"_count": 2}, "it": {"_count": 1}, "Mrs": {"_count": 1}, "his": {"_count": 2}, "": {"_count": 1}, "so": {"_count": 1}, "what": {"_count": 1}, "every": {"_count": 1}}, "nervous": {"_count": 1, "face": {"_count": 1}}, "few": {"_count": 1, "": {"_count": 1}}, "reading": {"_count": 1, "the": {"_count": 1}}, "palmistry": {"_count": 1, "": {"_count": 1}}, "Lavender": {"_count": 4, "Brown": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 1}}, "divide": {"_count": 3, "into": {"_count": 2}, "the": {"_count": 1}}, "drain": {"_count": 4, "away": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}}, "select": {"_count": 2, "one": {"_count": 1}, "another": {"_count": 1}}, "suffer": {"_count": 7, "but": {"_count": 1}, "": {"_count": 1}, "an": {"_count": 1}, "nothing": {"_count": 1}, "lasting": {"_count": 1}, "as": {"_count": 1}, "any": {"_count": 1}}, "stifle": {"_count": 4, "their": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}}, "appreciate": {"_count": 6, "the": {"_count": 1}, "what": {"_count": 2}, "dimly": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}}, "hair": {"_count": 1, "each": {"_count": 1}}, "disrupt": {"_count": 1, "the": {"_count": 1}}, "water": {"_count": 4, "but": {"_count": 1}, "from": {"_count": 2}, "just": {"_count": 1}}, "Buckbeak": {"_count": 5, "but": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}, "flinging": {"_count": 1}}, "slip": {"_count": 13, "off": {"_count": 1}, "through": {"_count": 1}, "by": {"_count": 1}, "him": {"_count": 1}, "inside": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 2}, "you": {"_count": 1}, "something": {"_count": 1}, "between": {"_count": 1}, "Katie": {"_count": 1}}, "bend": {"_count": 3, "its": {"_count": 1}, "to": {"_count": 2}}, "milk": {"_count": 2, "it": {"_count": 1}, "Nagini": {"_count": 1}}, "chop": {"_count": 2, "them": {"_count": 1}, "potion": {"_count": 1}}, "splash": {"_count": 1, "back": {"_count": 1}}, "stew": {"_count": 2, "before": {"_count": 1}, "in": {"_count": 1}}, "wash": {"_count": 6, "their": {"_count": 1}, "his": {"_count": 1}, "your": {"_count": 1}, "this": {"_count": 1}, "Harry": {"_count": 1}, "yes": {"_count": 1}}, "Longbottoms": {"_count": 1, "toad": {"_count": 1}}, "produce": {"_count": 8, "a": {"_count": 5}, "an": {"_count": 1}, "hot": {"_count": 1}, "Patronuses": {"_count": 1}}, "entrust": {"_count": 1, "him": {"_count": 1}}, "assume": {"_count": 5, "a": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "plan": {"_count": 4, "a": {"_count": 1}, "our": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 1}}, "Parvati": {"_count": 5, "and": {"_count": 2}, "": {"_count": 1}, "who": {"_count": 1}, "Patil": {"_count": 1}}, "much": {"_count": 3, "": {"_count": 1}, "teaching": {"_count": 1}, "trouble": {"_count": 1}}, "bludgeon": {"_count": 1, "those": {"_count": 1}}, "kappas": {"_count": 1, "creepy": {"_count": 1}}, "dread": {"_count": 1, "the": {"_count": 1}}, "haunting": {"_count": 1, "Professor": {"_count": 1}}, "occupy": {"_count": 5, "him": {"_count": 2}, "the": {"_count": 2}, "yourself": {"_count": 1}}, "repel": {"_count": 7, "the": {"_count": 3}, "dementors": {"_count": 2}, "Nevilles": {"_count": 1}, "a": {"_count": 1}}, "blush": {"_count": 1, "": {"_count": 1}}, "finally": {"_count": 1, "see": {"_count": 1}}, "complete": {"_count": 9, "": {"_count": 1}, "the": {"_count": 3}, "said": {"_count": 1}, "Harrys": {"_count": 1}, "journeys": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}}, "giggle": {"_count": 4, "": {"_count": 2}, "again": {"_count": 1}, "still": {"_count": 1}}, "Hogsmeade": {"_count": 11, "": {"_count": 5}, "Harry": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 1}, "either": {"_count": 1}, "station": {"_count": 1}, "said": {"_count": 1}}, "endure": {"_count": 13, "everyone": {"_count": 1}, "Draco": {"_count": 1}, "people": {"_count": 1}, "over": {"_count": 1}, "Deans": {"_count": 1}, "Sirius": {"_count": 1}, "before": {"_count": 1}, "any": {"_count": 1}, "only": {"_count": 1}, "from": {"_count": 1}, "this": {"_count": 1}, "on": {"_count": 1}, "fifteen": {"_count": 1}}, "forge": {"_count": 1, "Uncle": {"_count": 1}}, "deny": {"_count": 5, "that": {"_count": 2}, "for": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 1}}, "materialize": {"_count": 1, "in": {"_count": 1}}, "making": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "poison": {"_count": 10, "Lupin": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 1}, "an": {"_count": 1}, "them": {"_count": 1}, "Potter": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 2}, "it": {"_count": 1}}, "bursting": {"_count": 2, "with": {"_count": 2}}, "tiny": {"_count": 3, "little": {"_count": 2}, "fluctuations": {"_count": 1}}, "conduct": {"_count": 3, "a": {"_count": 1}, "yourselves": {"_count": 1}, "them": {"_count": 1}}, "buzz": {"_count": 1, "excitedly": {"_count": 1}}, "linger": {"_count": 4, "": {"_count": 2}, "long": {"_count": 1}, "overlong": {"_count": 1}}, "duels": {"_count": 1, "and": {"_count": 1}}, "volunteer": {"_count": 1, "": {"_count": 1}}, "oversee": {"_count": 1, "your": {"_count": 1}}, "string": {"_count": 2, "two": {"_count": 1}, "together": {"_count": 1}}, "wrongfoot": {"_count": 1, "us": {"_count": 1}}, "restrain": {"_count": 7, "herself": {"_count": 1}, "Black": {"_count": 1}, "him": {"_count": 1}, "and": {"_count": 1}, "Fleur": {"_count": 1}, "their": {"_count": 1}, "Ron": {"_count": 1}}, "arrange": {"_count": 4, "your": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "scrub": {"_count": 2, "out": {"_count": 1}, "the": {"_count": 1}}, "roar": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "drown": {"_count": 5, "himself": {"_count": 2}, "the": {"_count": 1}, "out": {"_count": 1}, "there": {"_count": 1}}, "now": {"_count": 6, "": {"_count": 3}, "all": {"_count": 1}, "that": {"_count": 1}, "sprang": {"_count": 1}}, "pile": {"_count": 1, "books": {"_count": 1}}, "bits": {"_count": 1, "": {"_count": 1}}, "reduce": {"_count": 1, "you": {"_count": 1}}, "grip": {"_count": 4, "Harrys": {"_count": 1}, "tightly": {"_count": 1}, "too": {"_count": 1}, "each": {"_count": 1}}, "sea": {"_count": 1, "but": {"_count": 1}}, "stoop": {"_count": 2, "quickly": {"_count": 1}, "to": {"_count": 1}}, "resist": {"_count": 15, "": {"_count": 2}, "giving": {"_count": 1}, "the": {"_count": 3}, "Umbridge": {"_count": 1}, "Voldemort": {"_count": 1}, "temptation": {"_count": 1}, "them": {"_count": 1}, "physical": {"_count": 1}, "only": {"_count": 1}, "me": {"_count": 1}, "any": {"_count": 1}, "man": {"_count": 1}}, "grin": {"_count": 4, "": {"_count": 1}, "in": {"_count": 1}, "again": {"_count": 1}, "as": {"_count": 1}}, "blossom": {"_count": 2, "across": {"_count": 1}, "from": {"_count": 1}}, "Magical": {"_count": 2, "MischiefMakers": {"_count": 1}, "Attack": {"_count": 1}}, "wipe": {"_count": 10, "it": {"_count": 2}, "his": {"_count": 2}, "their": {"_count": 2}, "the": {"_count": 1}, "slime": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}}, "sniff": {"_count": 4, "at": {"_count": 1}, "hopefully": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "Honeydukes": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "sustain": {"_count": 2, "him": {"_count": 1}, "heavy": {"_count": 1}}, "heat": {"_count": 2, "every": {"_count": 1}, "very": {"_count": 1}}, "divulge": {"_count": 3, "it": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "YouKnowWho": {"_count": 5, "": {"_count": 2}, "said": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}}, "declare": {"_count": 2, "his": {"_count": 1}, "undying": {"_count": 1}}, "em": {"_count": 2, "anymore": {"_count": 1}, "": {"_count": 1}}, "smithereens": {"_count": 1, "": {"_count": 1}}, "rejoin": {"_count": 10, "YouKnowWho": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 2}, "their": {"_count": 2}}, "Black": {"_count": 4, "Ive": {"_count": 1}, "": {"_count": 1}, "himself": {"_count": 1}, "and": {"_count": 1}}, "sob": {"_count": 7, "and": {"_count": 1}, "": {"_count": 2}, "into": {"_count": 1}, "rocking": {"_count": 1}, "tears": {"_count": 1}, "so": {"_count": 1}}, "uphold": {"_count": 2, "the": {"_count": 1}, "our": {"_count": 1}}, "hop": {"_count": 1, "up": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "roast": {"_count": 1, "potatoes": {"_count": 1}}, "forgive": {"_count": 4, "my": {"_count": 1}, "them": {"_count": 1}, "others": {"_count": 1}, "Harry": {"_count": 1}}, "crystal": {"_count": 2, "gaze": {"_count": 1}, "gazing": {"_count": 1}}, "slaughter": {"_count": 1, "the": {"_count": 1}}, "polish": {"_count": 1, "it": {"_count": 1}}, "twigends": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 2, "Wood": {"_count": 1}, "come": {"_count": 1}}, "strip": {"_count": 3, "it": {"_count": 1}, "pupils": {"_count": 1}, "off": {"_count": 1}}, "after": {"_count": 1, "his": {"_count": 1}}, "survive": {"_count": 11, "but": {"_count": 1}, "without": {"_count": 2}, "the": {"_count": 1}, "underwater": {"_count": 2}, "at": {"_count": 1}, "": {"_count": 4}}, "recall": {"_count": 7, "as": {"_count": 1}, "what": {"_count": 2}, "the": {"_count": 2}, "Dumbledore": {"_count": 1}, "others": {"_count": 1}}, "sweep": {"_count": 3, "silently": {"_count": 1}, "the": {"_count": 1}, "back": {"_count": 1}}, "continue": {"_count": 26, "I": {"_count": 1}, "studying": {"_count": 1}, "talking": {"_count": 1}, "his": {"_count": 2}, "playing": {"_count": 1}, "": {"_count": 2}, "its": {"_count": 1}, "Siriuss": {"_count": 1}, "at": {"_count": 1}, "Care": {"_count": 1}, "with": {"_count": 4}, "to": {"_count": 3}, "enslaving": {"_count": 1}, "smiling": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 2}, "Dumbledores": {"_count": 1}, "along": {"_count": 1}}, "hover": {"_count": 4, "between": {"_count": 1}, "on": {"_count": 1}, "like": {"_count": 1}, "halfheartedly": {"_count": 1}}, "echoes": {"_count": 1, "of": {"_count": 1}}, "five": {"_count": 3, "a": {"_count": 1}, "Harry": {"_count": 2}}, "fathom": {"_count": 2, "the": {"_count": 2}}, "drive": {"_count": 5, "the": {"_count": 1}, "all": {"_count": 1}, "anyone": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "destroy": {"_count": 23, "utterly": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 5}, "your": {"_count": 4}, "you": {"_count": 1}, "HeWhoMustNotBe": {"_count": 1}, "You": {"_count": 1}, "it": {"_count": 7}, "Horcruxes": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 1}}, "Hermiones": {"_count": 5, "table": {"_count": 1}, "slight": {"_count": 1}, "delight": {"_count": 1}, "weight": {"_count": 1}, "left": {"_count": 1}}, "snuff": {"_count": 1, "it": {"_count": 1}}, "obey": {"_count": 12, "his": {"_count": 1}, "Voldemort": {"_count": 1}, "": {"_count": 5}, "Harry": {"_count": 1}, "me": {"_count": 1}, "orders": {"_count": 1}, "the": {"_count": 1}, "Voldemorts": {"_count": 1}}, "yours": {"_count": 2, "Malfoy": {"_count": 1}, "and": {"_count": 1}}, "Which": {"_count": 2, "Broomstick": {"_count": 2}}, "mark": {"_count": 4, "him": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "tail": {"_count": 5, "him": {"_count": 2}, "me": {"_count": 1}, "Draco": {"_count": 1}, "Malfoy": {"_count": 1}}, "sabotage": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "our": {"_count": 1}}, "extricate": {"_count": 3, "himself": {"_count": 1}, "his": {"_count": 1}, "Hermione": {"_count": 1}}, "bury": {"_count": 6, "the": {"_count": 1}, "Aragog": {"_count": 1}, "him": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}, "my": {"_count": 1}}, "insist": {"_count": 1, "that": {"_count": 1}}, "fluffyslippered": {"_count": 1, "toes": {"_count": 1}}, "recognize": {"_count": 13, "a": {"_count": 2}, "them": {"_count": 1}, "that": {"_count": 3}, "you": {"_count": 1}, "each": {"_count": 1}, "situations": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 2}}, "mouse": {"_count": 1, "holes": {"_count": 1}}, "matching": {"_count": 1, "the": {"_count": 1}}, "accept": {"_count": 23, "they": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 2}, "so": {"_count": 1}, "your": {"_count": 1}, "more": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 1}, "help": {"_count": 1}, "that": {"_count": 6}, "N": {"_count": 1}, "this": {"_count": 1}, "into": {"_count": 1}, "he": {"_count": 1}}, "youl": {"_count": 1, "I": {"_count": 1}}, "respond": {"_count": 6, "but": {"_count": 2}, "": {"_count": 2}, "with": {"_count": 1}, "should": {"_count": 1}}, "Bill": {"_count": 5, "in": {"_count": 1}, "Charlie": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "tread": {"_count": 3, "on": {"_count": 3}}, "fulfill": {"_count": 4, "even": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}}, "rub": {"_count": 7, "it": {"_count": 4}, "the": {"_count": 1}, "together": {"_count": 1}, "their": {"_count": 1}}, "Weasley": {"_count": 2, "when": {"_count": 1}, "Potter": {"_count": 1}}, "provoke": {"_count": 3, "him": {"_count": 2}, "you": {"_count": 1}}, "yield": {"_count": 1, "the": {"_count": 1}}, "interrupt": {"_count": 8, "": {"_count": 1}, "but": {"_count": 2}, "what": {"_count": 1}, "Dumbledore": {"_count": 1}, "me": {"_count": 2}, "his": {"_count": 1}}, "Lupin": {"_count": 13, "": {"_count": 4}, "instead": {"_count": 1}, "whats": {"_count": 1}, "about": {"_count": 1}, "and": {"_count": 2}, "than": {"_count": 1}, "Ron": {"_count": 1}, "out": {"_count": 1}, "or": {"_count": 1}}, "protest": {"_count": 4, "": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}}, "lure": {"_count": 4, "you": {"_count": 2}, "me": {"_count": 1}, "into": {"_count": 1}}, "repay": {"_count": 2, "them": {"_count": 1}, "you": {"_count": 1}}, "Charms": {"_count": 2, "": {"_count": 2}}, "See": {"_count": 2, "when": {"_count": 1}, "as": {"_count": 1}}, "snigger": {"_count": 2, "uncontrollably": {"_count": 1}, "heartily": {"_count": 1}}, "settle": {"_count": 5, "down": {"_count": 1}, "to": {"_count": 1}, "her": {"_count": 1}, "something": {"_count": 1}, "arguments": {"_count": 1}}, "tears": {"_count": 6, "": {"_count": 4}, "himself": {"_count": 1}, "now": {"_count": 1}}, "Crookshanks": {"_count": 2, "": {"_count": 2}}, "trip": {"_count": 2, "him": {"_count": 1}, "Snape": {"_count": 1}}, "enormous": {"_count": 4, "applause": {"_count": 1}, "size": {"_count": 2}, "pegs": {"_count": 1}}, "bleed": {"_count": 2, "": {"_count": 1}, "afresh": {"_count": 1}}, "Montague": {"_count": 2, "and": {"_count": 1}, "Montague": {"_count": 1}}, "tug": {"_count": 4, "the": {"_count": 2}, "her": {"_count": 1}, "Griphook": {"_count": 1}}, "ten": {"_count": 4, "and": {"_count": 2}, "said": {"_count": 1}, "dark": {"_count": 1}}, "aim": {"_count": 4, "both": {"_count": 1}, "properly": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}}, "greater": {"_count": 1, "heights": {"_count": 1}}, "twenty": {"_count": 1, "": {"_count": 1}}, "attend": {"_count": 11, "several": {"_count": 1}, "the": {"_count": 2}, "Hogwarts": {"_count": 1}, "a": {"_count": 2}, "Fridays": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "still": {"_count": 1, "be": {"_count": 1}}, "thicken": {"_count": 1, "and": {"_count": 1}}, "wade": {"_count": 3, "across": {"_count": 1}, "back": {"_count": 1}, "through": {"_count": 1}}, "witness": {"_count": 1, "an": {"_count": 1}}, "cram": {"_count": 3, "in": {"_count": 1}, "a": {"_count": 1}, "themselves": {"_count": 1}}, "joke": {"_count": 1, "about": {"_count": 1}}, "predict": {"_count": 1, "anything": {"_count": 1}}, "execute": {"_count": 1, "at": {"_count": 1}}, "marble": {"_count": 1, "it": {"_count": 1}}, "wrench": {"_count": 3, "himself": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}}, "Voldemort": {"_count": 26, "": {"_count": 11}, "said": {"_count": 3}, "who": {"_count": 2}, "unless": {"_count": 1}, "and": {"_count": 2}, "yet": {"_count": 1}, "while": {"_count": 1}, "however": {"_count": 1}, "through": {"_count": 1}, "the": {"_count": 1}, "disheveled": {"_count": 1}, "was": {"_count": 1}}, "avenge": {"_count": 2, "his": {"_count": 1}, "my": {"_count": 1}}, "Blacks": {"_count": 1, "side": {"_count": 1}}, "pace": {"_count": 12, "up": {"_count": 5}, "": {"_count": 3}, "around": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "yet": {"_count": 1}}, "commit": {"_count": 4, "the": {"_count": 2}, "murder": {"_count": 1}, "himself": {"_count": 1}}, "will": {"_count": 1, "Professor": {"_count": 1}}, "marvel": {"_count": 1, "inwardly": {"_count": 1}}, "wane": {"_count": 1, "again": {"_count": 1}}, "transform": {"_count": 6, "": {"_count": 3}, "into": {"_count": 2}, "while": {"_count": 1}}, "communicate": {"_count": 5, "to": {"_count": 1}, "you": {"_count": 1}, "with": {"_count": 2}, "without": {"_count": 1}}, "Peter": {"_count": 1, "at": {"_count": 1}}, "blame": {"_count": 5, "I": {"_count": 1}, "him": {"_count": 2}, "": {"_count": 1}, "Snape": {"_count": 1}}, "squeak": {"_count": 1, "without": {"_count": 1}}, "Pettigrew": {"_count": 2, "his": {"_count": 1}, "and": {"_count": 1}}, "dart": {"_count": 3, "toward": {"_count": 1}, "upward": {"_count": 1}, "back": {"_count": 1}}, "sense": {"_count": 4, "animal": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}, "freedom": {"_count": 1}}, "boast": {"_count": 3, "about": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}}, "tie": {"_count": 5, "him": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}, "these": {"_count": 1}}, "Snapes": {"_count": 12, "wrists": {"_count": 1}, "desk": {"_count": 4}, "dungeon": {"_count": 4}, "office": {"_count": 1}, "reports": {"_count": 1}, "defense": {"_count": 1}}, "Lupins": {"_count": 1, "right": {"_count": 1}}, "manage": {"_count": 5, "it": {"_count": 2}, "that": {"_count": 2}, "": {"_count": 1}}, "jaw": {"_count": 1, "claws": {"_count": 1}}, "silence": {"_count": 5, "as": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 2}}, "obscure": {"_count": 2, "his": {"_count": 2}}, "chant": {"_count": 2, "Expecto": {"_count": 1}, "as": {"_count": 1}}, "blot": {"_count": 1, "the": {"_count": 1}}, "pat": {"_count": 5, "it": {"_count": 1}, "them": {"_count": 1}, "Buckbeak": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}}, "judge": {"_count": 7, "by": {"_count": 1}, "other": {"_count": 1}, "isnt": {"_count": 1}, "the": {"_count": 2}, "your": {"_count": 1}, "that": {"_count": 1}}, "Sirius": {"_count": 43, "hes": {"_count": 1}, "Black": {"_count": 1}, "that": {"_count": 2}, "I": {"_count": 2}, "Sirius": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 8}, "before": {"_count": 1}, "": {"_count": 7}, "saying": {"_count": 1}, "with": {"_count": 1}, "casting": {"_count": 1}, "telling": {"_count": 1}, "to": {"_count": 3}, "the": {"_count": 1}, "Ron": {"_count": 1}, "but": {"_count": 1}, "whose": {"_count": 1}, "about": {"_count": 2}, "he": {"_count": 1}, "in": {"_count": 2}, "Hes": {"_count": 1}, "as": {"_count": 1}, "again": {"_count": 1}}, "stem": {"_count": 5, "the": {"_count": 5}}, "overrule": {"_count": 1, "the": {"_count": 1}}, "midnight": {"_count": 4, "": {"_count": 3}, "he": {"_count": 1}}, "rule": {"_count": 5, "out": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "rubbish": {"_count": 1}}, "seem": {"_count": 2, "impossible": {"_count": 1}, "as": {"_count": 1}}, "fumble": {"_count": 2, "with": {"_count": 2}}, "execution": {"_count": 1, "by": {"_count": 1}}, "strain": {"_count": 2, "against": {"_count": 1}, "a": {"_count": 1}}, "Siriuss": {"_count": 7, "window": {"_count": 1}, "wish": {"_count": 1}, "grandfather": {"_count": 1}, "": {"_count": 1}, "house": {"_count": 1}, "aid": {"_count": 1}, "mirror": {"_count": 1}}, "freeze": {"_count": 2, "the": {"_count": 1}, "solid": {"_count": 1}}, "retreat": {"_count": 3, "": {"_count": 2}, "immediately": {"_count": 1}}, "untie": {"_count": 2, "Buckbeak": {"_count": 1}, "by": {"_count": 1}}, "quieten": {"_count": 1, "him": {"_count": 1}}, "rescue": {"_count": 11, "Sirius": {"_count": 3}, "the": {"_count": 1}, "Ron": {"_count": 1}, "me": {"_count": 1}, "was": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 2}, "them": {"_count": 1}}, "tap": {"_count": 2, "sharply": {"_count": 1}, "": {"_count": 1}}, "informing": {"_count": 1, "the": {"_count": 1}}, "interview": {"_count": 1, "you": {"_count": 1}}, "magically": {"_count": 1, "lock": {"_count": 1}}, "administer": {"_count": 1, "the": {"_count": 1}}, "laughing": {"_count": 1, "": {"_count": 1}}, "safety": {"_count": 4, "and": {"_count": 1}, "not": {"_count": 1}, "upon": {"_count": 1}, "": {"_count": 1}}, "freedom": {"_count": 2, "Harry": {"_count": 1}, "was": {"_count": 1}}, "having": {"_count": 4, "his": {"_count": 1}, "Harrys": {"_count": 1}, "tampered": {"_count": 1}, "been": {"_count": 1}}, "owl": {"_count": 1, "post": {"_count": 1}}, "glimpse": {"_count": 1, "me": {"_count": 1}}, "telling": {"_count": 3, "you": {"_count": 1}, "off": {"_count": 1}, "him": {"_count": 1}}, "apologize": {"_count": 3, "for": {"_count": 2}, "and": {"_count": 1}}, "mix": {"_count": 3, "he": {"_count": 1}, "with": {"_count": 1}, "antidotes": {"_count": 1}}, "Who": {"_count": 2, "else": {"_count": 1}, "said": {"_count": 1}}, "tend": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "suppress": {"_count": 8, "them": {"_count": 1}, "her": {"_count": 1}, "unpleasant": {"_count": 1}, "all": {"_count": 1}, "a": {"_count": 1}, "news": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 1}}, "contend": {"_count": 2, "with": {"_count": 2}}, "ease": {"_count": 6, "the": {"_count": 1}, "him": {"_count": 1}, "slightly": {"_count": 1}, "Snape": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}}, "explore": {"_count": 4, "the": {"_count": 2}, "he": {"_count": 1}, "his": {"_count": 1}}, "desert": {"_count": 1, "me": {"_count": 1}}, "Your": {"_count": 1, "Lordship": {"_count": 1}}, "spoil": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "hiss": {"_count": 2, "and": {"_count": 1}, "on": {"_count": 1}}, "master": {"_count": 3, "himself": {"_count": 2}, "his": {"_count": 1}}, "English": {"_count": 1, "again": {"_count": 1}}, "Nagini": {"_count": 2, "there": {"_count": 1}, "": {"_count": 1}}, "interest": {"_count": 5, "the": {"_count": 1}, "himself": {"_count": 1}, "you": {"_count": 1}, "Slughorn": {"_count": 1}, "a": {"_count": 1}}, "Lord": {"_count": 9, "Voldemort": {"_count": 8}, "Voldemorts": {"_count": 1}}, "survey": {"_count": 1, "the": {"_count": 1}}, "pain": {"_count": 2, "and": {"_count": 2}}, "bizarre": {"_count": 1, "accidents": {"_count": 1}}, "St": {"_count": 17, "": {"_count": 17}}, "discover": {"_count": 17, "on": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 4}, "their": {"_count": 1}, "the": {"_count": 1}, "where": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "what": {"_count": 2}, "as": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "swim": {"_count": 8, "before": {"_count": 1}, "in": {"_count": 4}, "a": {"_count": 1}, "with": {"_count": 1}, "across": {"_count": 1}}, "phrase": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "flee": {"_count": 5, "for": {"_count": 1}, "from": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "if": {"_count": 1}}, "cut": {"_count": 7, "his": {"_count": 1}, "some": {"_count": 1}, "Hermione": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 2}, "firewood": {"_count": 1}}, "spotting": {"_count": 1, "fingerprints": {"_count": 1}}, "recover": {"_count": 8, "from": {"_count": 2}, "what": {"_count": 3}, "it": {"_count": 1}, "his": {"_count": 1}, "more": {"_count": 1}}, "pronounce": {"_count": 2, "him": {"_count": 1}, "properly": {"_count": 1}}, "glare": {"_count": 4, "": {"_count": 1}, "at": {"_count": 2}, "into": {"_count": 1}}, "overhear": {"_count": 2, "Harry": {"_count": 1}, "said": {"_count": 1}}, "dress": {"_count": 3, "properly": {"_count": 1}, "": {"_count": 2}}, "fright": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 2, "so": {"_count": 1}, "telling": {"_count": 1}}, "OUCH": {"_count": 1, "": {"_count": 1}}, "BANG": {"_count": 1, "": {"_count": 1}}, "actually": {"_count": 1, "say": {"_count": 1}}, "conceal": {"_count": 9, "himself": {"_count": 1}, "Dudley": {"_count": 1}, "their": {"_count": 1}, "how": {"_count": 1}, "from": {"_count": 2}, "his": {"_count": 1}, "anything": {"_count": 1}, "you": {"_count": 1}}, "burst": {"_count": 14, "out": {"_count": 1}, "through": {"_count": 2}, "with": {"_count": 2}, "": {"_count": 2}, "into": {"_count": 2}, "where": {"_count": 1}, "off": {"_count": 1}, "the": {"_count": 2}, "open": {"_count": 1}}, "shatter": {"_count": 3, "in": {"_count": 1}, "it": {"_count": 1}, "under": {"_count": 1}}, "test": {"_count": 8, "them": {"_count": 1}, "your": {"_count": 2}, "one": {"_count": 1}, "it": {"_count": 2}, "our": {"_count": 1}, "Hermione": {"_count": 1}}, "sell": {"_count": 12, "it": {"_count": 1}, "to": {"_count": 2}, "a": {"_count": 1}, "her": {"_count": 2}, "itself": {"_count": 1}, "before": {"_count": 1}, "stolen": {"_count": 1}, "Hermione": {"_count": 1}, "us": {"_count": 1}, "for": {"_count": 1}}, "standardize": {"_count": 1, "cauldron": {"_count": 1}}, "anything": {"_count": 8, "else": {"_count": 1}, "that": {"_count": 1}, "dodgy": {"_count": 1}, "": {"_count": 1}, "during": {"_count": 1}, "next": {"_count": 1}, "you": {"_count": 1}, "very": {"_count": 1}}, "OH": {"_count": 1, "NOT": {"_count": 1}}, "Albania": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "department": {"_count": 1, "for": {"_count": 1}}, "organize": {"_count": 4, "right": {"_count": 1}, "eh": {"_count": 1}, "": {"_count": 1}, "defense": {"_count": 1}}, "Transylvania": {"_count": 1, "three": {"_count": 1}}, "Uganda": {"_count": 1, "and": {"_count": 1}}, "ladle": {"_count": 1, "porridge": {"_count": 1}}, "fine": {"_count": 1, "a": {"_count": 1}}, "nasty": {"_count": 1, "complications": {"_count": 1}}, "sort": {"_count": 15, "them": {"_count": 1}, "it": {"_count": 3}, "out": {"_count": 6}, "this": {"_count": 2}, "of": {"_count": 1}, "everything": {"_count": 1}, "you": {"_count": 1}}, "right": {"_count": 3, "on": {"_count": 1}, "as": {"_count": 1}, "Albus": {"_count": 1}}, "congregate": {"_count": 1, "without": {"_count": 1}}, "smuggle": {"_count": 4, "as": {"_count": 1}, "things": {"_count": 1}, "it": {"_count": 2}}, "accommodate": {"_count": 3, "them": {"_count": 1}, "three": {"_count": 1}, "so": {"_count": 1}}, "stagger": {"_count": 1, "the": {"_count": 1}}, "transport": {"_count": 2, "wizards": {"_count": 1}, "people": {"_count": 1}}, "deepest": {"_count": 1, "blue": {"_count": 1}}, "peel": {"_count": 3, "the": {"_count": 1}, "sprouts": {"_count": 1}, "off": {"_count": 1}}, "using": {"_count": 2, "the": {"_count": 1}, "magic": {"_count": 1}}, "erect": {"_count": 1, "a": {"_count": 1}}, "wizards": {"_count": 1, "Harry": {"_count": 1}}, "skim": {"_count": 1, "the": {"_count": 1}}, "cook": {"_count": 3, "breakfast": {"_count": 1}, "anything": {"_count": 1}, "": {"_count": 1}}, "seed": {"_count": 2, "the": {"_count": 1}, "but": {"_count": 1}}, "export": {"_count": 1, "here": {"_count": 1}}, "eh": {"_count": 2, "Barty": {"_count": 1}, "": {"_count": 1}}, "disclose": {"_count": 1, "it": {"_count": 1}}, "dash": {"_count": 2, "away": {"_count": 1}, "Mrs": {"_count": 1}}, "Dobbys": {"_count": 1, "head": {"_count": 1}}, "cadge": {"_count": 1, "all": {"_count": 1}}, "guess": {"_count": 7, "what": {"_count": 2}, "that": {"_count": 1}, "who": {"_count": 1}, "the": {"_count": 1}, "youve": {"_count": 1}, "how": {"_count": 1}}, "dance": {"_count": 8, "and": {"_count": 1}, "in": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 2}, "by": {"_count": 1}, "at": {"_count": 1}}, "soar": {"_count": 4, "over": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 2}}, "wild": {"_count": 1, "applause": {"_count": 1}}, "rival": {"_count": 2, "Uncle": {"_count": 1}, "his": {"_count": 1}}, "Mullet": {"_count": 1, "": {"_count": 1}}, "Moran": {"_count": 1, "": {"_count": 1}}, "Ireland": {"_count": 2, "": {"_count": 2}}, "thirtyzero": {"_count": 1, "and": {"_count": 1}}, "scatter": {"_count": 1, "and": {"_count": 1}}, "Ginny": {"_count": 11, "who": {"_count": 2}, "as": {"_count": 2}, "and": {"_count": 3}, "throwing": {"_count": 1}, "": {"_count": 1}, "laughing": {"_count": 1}, "that": {"_count": 1}}, "task": {"_count": 1, "for": {"_count": 1}}, "form": {"_count": 8, "the": {"_count": 2}, "a": {"_count": 2}, "one": {"_count": 1}, "an": {"_count": 1}, "words": {"_count": 1}, "in": {"_count": 1}}, "collide": {"_count": 2, "there": {"_count": 1}, "with": {"_count": 1}}, "separate": {"_count": 3, "the": {"_count": 1}, "Houses": {"_count": 1}, "": {"_count": 1}}, "convey": {"_count": 2, "with": {"_count": 1}, "by": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "Beauxbatons": {"_count": 1, "said": {"_count": 1}}, "Another": {"_count": 1, "loud": {"_count": 1}}, "illuminate": {"_count": 5, "the": {"_count": 3}, "as": {"_count": 1}, "Aragogs": {"_count": 1}}, "Where": {"_count": 1, "did": {"_count": 1}}, "rock": {"_count": 3, "backward": {"_count": 3}}, "conjure": {"_count": 8, "the": {"_count": 2}, "that": {"_count": 1}, "it": {"_count": 2}, "a": {"_count": 2}, "faded": {"_count": 1}}, "accusing": {"_count": 1, "the": {"_count": 1}}, "tremble": {"_count": 5, "worse": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "Xenophilius": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "Winky": {"_count": 2, "": {"_count": 1}, "being": {"_count": 1}}, "sack": {"_count": 3, "her": {"_count": 1}, "bad": {"_count": 1}, "Arthur": {"_count": 1}}, "unmask": {"_count": 1, "any": {"_count": 1}}, "levitating": {"_count": 1, "Muggles": {"_count": 1}}, "Stoatshead": {"_count": 1, "Hill": {"_count": 1}}, "everybodys": {"_count": 1, "surprise": {"_count": 1}}, "quash": {"_count": 2, "the": {"_count": 1}, "these": {"_count": 1}}, "contain": {"_count": 8, "himself": {"_count": 3}, "his": {"_count": 1}, "Harry": {"_count": 1}, "three": {"_count": 1}, "it": {"_count": 2}}, "cinders": {"_count": 1, "": {"_count": 1}}, "traveling": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "elves": {"_count": 1, "": {"_count": 1}}, "unstick": {"_count": 1, "Pigwidgeons": {"_count": 1}}, "Disapparate": {"_count": 14, "": {"_count": 3}, "and": {"_count": 2}, "with": {"_count": 1}, "Harry": {"_count": 2}, "just": {"_count": 1}, "before": {"_count": 1}, "separately": {"_count": 1}, "under": {"_count": 1}, "without": {"_count": 1}, "there": {"_count": 1}}, "rely": {"_count": 4, "on": {"_count": 4}}, "order": {"_count": 5, "three": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}}, "muffle": {"_count": 1, "his": {"_count": 1}}, "theirs": {"_count": 1, "": {"_count": 1}}, "Durmstrang": {"_count": 1, "rather": {"_count": 1}}, "An": {"_count": 1, "Appraisal": {"_count": 1}}, "plot": {"_count": 2, "on": {"_count": 1}, "her": {"_count": 1}}, "overflow": {"_count": 1, "": {"_count": 1}}, "possess": {"_count": 11, "a": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "magical": {"_count": 1}, "them": {"_count": 2}, "Harry": {"_count": 2}, "it": {"_count": 1}, "fabulous": {"_count": 1}, "the": {"_count": 1}}, "scratch": {"_count": 7, "said": {"_count": 1}, "on": {"_count": 1}, "Fangs": {"_count": 1}, "": {"_count": 3}, "away": {"_count": 1}}, "students": {"_count": 3, "as": {"_count": 1}, "poking": {"_count": 1}, "and": {"_count": 1}}, "represent": {"_count": 3, "each": {"_count": 1}, "their": {"_count": 1}, "Slytherin": {"_count": 1}}, "host": {"_count": 1, "the": {"_count": 1}}, "reinstate": {"_count": 2, "the": {"_count": 2}}, "ensure": {"_count": 26, "that": {"_count": 16}, "she": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 1}, "an": {"_count": 1}, "their": {"_count": 1}, "Harrys": {"_count": 1}}, "compete": {"_count": 15, "for": {"_count": 1}, "": {"_count": 4}, "that": {"_count": 1}, "also": {"_count": 1}, "in": {"_count": 4}, "if": {"_count": 1}, "asnt": {"_count": 1}, "against": {"_count": 1}, "Stupefy": {"_count": 1}}, "impose": {"_count": 1, "an": {"_count": 1}}, "cope": {"_count": 8, "with": {"_count": 8}}, "MadEye": {"_count": 5, "Moody": {"_count": 3}, "s": {"_count": 1}, "Harry": {"_count": 1}}, "fool": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "oops": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "desperate": {"_count": 1, "measures": {"_count": 1}}, "tempt": {"_count": 2, "the": {"_count": 2}}, "stamp": {"_count": 4, "on": {"_count": 4}}, "lamb": {"_count": 1, "chops": {"_count": 1}}, "shovel": {"_count": 1, "down": {"_count": 1}}, "consider": {"_count": 6, "the": {"_count": 4}, "it": {"_count": 1}, "": {"_count": 1}}, "mask": {"_count": 1, "the": {"_count": 1}}, "account": {"_count": 3, "for": {"_count": 3}}, "modify": {"_count": 2, "several": {"_count": 1}, "the": {"_count": 1}}, "limp": {"_count": 1, "toward": {"_count": 1}}, "disembowel": {"_count": 1, "a": {"_count": 1}}, "Moodys": {"_count": 1, "first": {"_count": 1}}, "cartwheel": {"_count": 1, "in": {"_count": 1}}, "twitch": {"_count": 2, "horribly": {"_count": 1}, "": {"_count": 1}}, "torture": {"_count": 6, "someone": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}, "your": {"_count": 1}, "back": {"_count": 1}}, "evade": {"_count": 4, "Moodys": {"_count": 1}, "death": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "scuttle": {"_count": 1, "frantically": {"_count": 1}}, "relive": {"_count": 5, "the": {"_count": 2}, "it": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "develop": {"_count": 2, "a": {"_count": 1}, "terrible": {"_count": 1}}, "secure": {"_count": 6, "houseelves": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "Morfins": {"_count": 1}, "it": {"_count": 1}}, "blab": {"_count": 1, "": {"_count": 1}}, "overturn": {"_count": 1, "a": {"_count": 1}}, "demonstrate": {"_count": 10, "its": {"_count": 1}, "this": {"_count": 1}, "your": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 1}, "their": {"_count": 1}, "what": {"_count": 2}}, "beckon": {"_count": 1, "students": {"_count": 1}}, "spring": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "a": {"_count": 1}}, "double": {"_count": 4, "": {"_count": 1}, "back": {"_count": 1}, "Herbology": {"_count": 1}, "up": {"_count": 1}}, "research": {"_count": 2, "antidotes": {"_count": 1}, "my": {"_count": 1}}, "observe": {"_count": 4, "the": {"_count": 1}, "what": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "proceed": {"_count": 4, "owing": {"_count": 1}, "with": {"_count": 2}, "could": {"_count": 1}}, "greet": {"_count": 9, "our": {"_count": 1}, "them": {"_count": 3}, "him": {"_count": 2}, "Hermione": {"_count": 1}, "any": {"_count": 1}, "you": {"_count": 1}}, "student": {"_count": 1, "like": {"_count": 1}}, "curb": {"_count": 1, "Hermione": {"_count": 1}}, "pursue": {"_count": 4, "justice": {"_count": 1}, "the": {"_count": 2}, "once": {"_count": 1}}, "rattling": {"_count": 1, "around": {"_count": 1}}, "Well": {"_count": 1, "we": {"_count": 1}}, "nick": {"_count": 2, "food": {"_count": 1}, "Gryffindors": {"_count": 1}}, "wherever": {"_count": 2, "hes": {"_count": 1}, "Malfoy": {"_count": 1}}, "handle": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "Krum": {"_count": 6, "": {"_count": 3}, "and": {"_count": 1}, "before": {"_count": 1}, "who": {"_count": 1}}, "black": {"_count": 3, "pudding": {"_count": 1}, "trunk": {"_count": 1}, "out": {"_count": 1}}, "Madame": {"_count": 7, "Maxime": {"_count": 6}, "Delacour": {"_count": 1}}, "clarify": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Dumbledores": {"_count": 10, "long": {"_count": 1}, "office": {"_count": 5}, "explanation": {"_count": 1}, "stooge": {"_count": 1}, "gargoyle": {"_count": 1}, "will": {"_count": 1}}, "sharpen": {"_count": 1, "": {"_count": 1}}, "submit": {"_count": 3, "themselves": {"_count": 1}, "to": {"_count": 2}}, "temptation": {"_count": 1, "said": {"_count": 1}}, "injury": {"_count": 2, "there": {"_count": 1}, "but": {"_count": 1}}, "age": {"_count": 1, "themselves": {"_count": 1}}, "scowl": {"_count": 2, "heavily": {"_count": 1}, "over": {"_count": 1}}, "donate": {"_count": 1, "a": {"_count": 1}}, "tame": {"_count": 2, "his": {"_count": 1}, "and": {"_count": 1}}, "comment": {"_count": 3, "she": {"_count": 1}, "on": {"_count": 2}}, "fancy": {"_count": 3, "the": {"_count": 1}, "Harry": {"_count": 1}, "Tonks": {"_count": 1}}, "bluewhite": {"_count": 1, "": {"_count": 1}}, "everybody": {"_count": 3, "what": {"_count": 1}, "even": {"_count": 1}, "when": {"_count": 1}}, "whisper": {"_count": 3, "urgently": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "Bagman": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}}, "discern": {"_count": 4, "the": {"_count": 1}, "shapes": {"_count": 1}, "Ron": {"_count": 1}, "amongst": {"_count": 1}}, "front": {"_count": 1, "said": {"_count": 1}}, "Karkaroff": {"_count": 1, "and": {"_count": 1}}, "occur": {"_count": 3, "": {"_count": 1}, "to": {"_count": 2}}, "bamboozle": {"_count": 1, "that": {"_count": 1}}, "deprive": {"_count": 2, "them": {"_count": 1}, "Voldemort": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "waylay": {"_count": 1, "him": {"_count": 1}}, "translate": {"_count": 2, "this": {"_count": 1}, "runes": {"_count": 1}}, "seeing": {"_count": 3, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "Malfoys": {"_count": 1}}, "feeling": {"_count": 1, "like": {"_count": 1}}, "reassure": {"_count": 5, "him": {"_count": 1}, "one": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}}, "Pansy": {"_count": 3, "Parkinson": {"_count": 3}}, "brew": {"_count": 4, "them": {"_count": 1}, "Polyjuice": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}}, "Cedric": {"_count": 8, "looking": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 3}, "who": {"_count": 1}, "Diggory": {"_count": 1}, "She": {"_count": 1}}, "Fleur": {"_count": 5, "with": {"_count": 1}, "Delacour": {"_count": 2}, "and": {"_count": 2}}, "Voldemorts": {"_count": 3, "wand": {"_count": 1}, "thoughts": {"_count": 1}, "rage": {"_count": 1}}, "resort": {"_count": 2, "to": {"_count": 2}}, "pickle": {"_count": 1, "rats": {"_count": 1}}, "spy": {"_count": 9, "on": {"_count": 6}, "for": {"_count": 1}, "upon": {"_count": 2}}, "myself": {"_count": 3, "": {"_count": 3}}, "awkward": {"_count": 1, "questions": {"_count": 1}}, "time": {"_count": 8, "in": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "your": {"_count": 1}, "Harry": {"_count": 1}, "anger": {"_count": 1}}, "prepare": {"_count": 7, "his": {"_count": 1}, "for": {"_count": 2}, "but": {"_count": 1}, "himself": {"_count": 1}, "such": {"_count": 1}, "you": {"_count": 1}}, "comb": {"_count": 2, "his": {"_count": 1}, "Hermiones": {"_count": 1}}, "heavy": {"_count": 1, "leather": {"_count": 1}}, "tighten": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "reverence": {"_count": 1, "": {"_count": 1}}, "spot": {"_count": 3, "at": {"_count": 1}, "the": {"_count": 1}, "patterns": {"_count": 1}}, "improve": {"_count": 6, "were": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 2}, "but": {"_count": 1}, "": {"_count": 1}}, "absorb": {"_count": 2, "yet": {"_count": 1}, "the": {"_count": 1}}, "overcome": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}, "not": {"_count": 1}}, "flick": {"_count": 3, "through": {"_count": 2}, "off": {"_count": 1}}, "ring": {"_count": 3, "Ill": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}}, "Advanced": {"_count": 1, "Transfiguration": {"_count": 1}}, "disable": {"_count": 1, "my": {"_count": 1}}, "skive": {"_count": 2, "off": {"_count": 2}}, "Saturn": {"_count": 2, "at": {"_count": 1}, "like": {"_count": 1}}, "retracing": {"_count": 1, "Cedrics": {"_count": 1}}, "focus": {"_count": 5, "his": {"_count": 1}, "on": {"_count": 3}, "upon": {"_count": 1}}, "stave": {"_count": 2, "him": {"_count": 1}, "off": {"_count": 1}}, "swat": {"_count": 1, "her": {"_count": 1}}, "shorten": {"_count": 1, "the": {"_count": 1}}, "subdue": {"_count": 3, "the": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}}, "food": {"_count": 3, "he": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}}, "consult": {"_count": 4, "the": {"_count": 2}, "Ron": {"_count": 1}, "his": {"_count": 1}}, "Id": {"_count": 1, "be": {"_count": 1}}, "rope": {"_count": 1, "us": {"_count": 1}}, "squirm": {"_count": 1, "chuckling": {"_count": 1}}, "shrink": {"_count": 4, "it": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}, "a": {"_count": 1}}, "love": {"_count": 3, "him": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "socialize": {"_count": 1, "with": {"_count": 1}}, "taking": {"_count": 1, "on": {"_count": 1}}, "heighten": {"_count": 1, "Harrys": {"_count": 1}}, "invite": {"_count": 7, "him": {"_count": 1}, "you": {"_count": 2}, "his": {"_count": 1}, "Miss": {"_count": 1}, "mumbled": {"_count": 1}, "us": {"_count": 1}}, "real": {"_count": 1, "hooting": {"_count": 1}}, "extract": {"_count": 11, "Peeves": {"_count": 1}, "one": {"_count": 1}, "feelings": {"_count": 1}, "from": {"_count": 3}, "his": {"_count": 2}, "the": {"_count": 1}, "this": {"_count": 1}, "enough": {"_count": 1}}, "hiding": {"_count": 2, "filling": {"_count": 1}, "in": {"_count": 1}}, "grit": {"_count": 1, "our": {"_count": 1}}, "quite": {"_count": 1, "like": {"_count": 1}}, "overlook": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "Diggory": {"_count": 1, "and": {"_count": 1}}, "subside": {"_count": 1, "his": {"_count": 1}}, "Christmas": {"_count": 2, "enjoying": {"_count": 1}, "Day": {"_count": 1}}, "treat": {"_count": 3, "food": {"_count": 1}, "dragon": {"_count": 1}, "people": {"_count": 1}}, "startle": {"_count": 1, "her": {"_count": 1}}, "somebody": {"_count": 9, "over": {"_count": 1}, "hed": {"_count": 1}, "deaf": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "wellknown": {"_count": 1}, "who": {"_count": 1}}, "consciousness": {"_count": 1, "he": {"_count": 1}}, "cushion": {"_count": 1, "his": {"_count": 1}}, "wrap": {"_count": 1, "them": {"_count": 1}}, "leak": {"_count": 1, "with": {"_count": 1}}, "unlock": {"_count": 1, "any": {"_count": 1}}, "Roger": {"_count": 2, "Davies": {"_count": 2}}, "wildly": {"_count": 1, "enthusiastic": {"_count": 1}}, "describe": {"_count": 3, "Hermione": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}}, "pluck": {"_count": 1, "up": {"_count": 1}}, "jinx": {"_count": 10, "him": {"_count": 1}, "me": {"_count": 2}, "Dudley": {"_count": 1}, "you": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 1}, "Dean": {"_count": 1}, "Dawlish": {"_count": 1}}, "wend": {"_count": 3, "their": {"_count": 2}, "his": {"_count": 1}}, "Cho": {"_count": 5, "": {"_count": 2}, "as": {"_count": 1}, "about": {"_count": 1}, "Chang": {"_count": 1}}, "lessons": {"_count": 2, "weighed": {"_count": 1}, "": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "terrify": {"_count": 1, "the": {"_count": 1}}, "elope": {"_count": 1, "for": {"_count": 1}}, "cheat": {"_count": 1, "": {"_count": 1}}, "ruin": {"_count": 1, "someone": {"_count": 1}}, "lick": {"_count": 4, "his": {"_count": 1}, "their": {"_count": 2}, "her": {"_count": 1}}, "banish": {"_count": 1, "the": {"_count": 1}}, "shelve": {"_count": 1, "his": {"_count": 1}}, "rulebreaking": {"_count": 1, "Harry": {"_count": 1}}, "underwater": {"_count": 2, "creatures": {"_count": 1}, "survival": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "forgo": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "prowl": {"_count": 1, "this": {"_count": 1}}, "meeting": {"_count": 1, "you": {"_count": 1}}, "Moody": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Barty": {"_count": 3, "Crouch": {"_count": 3}}, "tricky": {"_count": 1, "questions": {"_count": 1}}, "operate": {"_count": 4, "an": {"_count": 1}, "the": {"_count": 1}, "alone": {"_count": 2}}, "hope": {"_count": 6, "that": {"_count": 2}, "for": {"_count": 2}, "it": {"_count": 1}, "one": {"_count": 1}}, "Transfigure": {"_count": 2, "yourself": {"_count": 1}, "or": {"_count": 1}}, "capture": {"_count": 5, "two": {"_count": 1}, "Harry": {"_count": 1}, "Potter": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "confess": {"_count": 4, "that": {"_count": 2}, "": {"_count": 1}, "finally": {"_count": 1}}, "chivvy": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "Medieval": {"_count": 1, "Sorcery": {"_count": 1}}, "shiver": {"_count": 3, "violently": {"_count": 1}, "": {"_count": 1}, "There": {"_count": 1}}, "loom": {"_count": 1, "suddenly": {"_count": 1}}, "rot": {"_count": 1, "": {"_count": 1}}, "mime": {"_count": 1, "a": {"_count": 1}}, "hack": {"_count": 3, "at": {"_count": 3}}, "propel": {"_count": 1, "himself": {"_count": 1}}, "award": {"_count": 1, "marks": {"_count": 1}}, "great": {"_count": 2, "effect": {"_count": 1}, "applause": {"_count": 1}}, "engage": {"_count": 2, "Hermione": {"_count": 1}, "him": {"_count": 1}}, "And": {"_count": 1, "what": {"_count": 1}}, "Fascinating": {"_count": 1, "though": {"_count": 1}}, "flash": {"_count": 1, "POTTER": {"_count": 1}}, "continued": {"_count": 1, "gales": {"_count": 1}}, "trot": {"_count": 1, "away": {"_count": 1}}, "rush": {"_count": 3, "forward": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}}, "devour": {"_count": 1, "the": {"_count": 1}}, "confirm": {"_count": 3, "rumors": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "wolf": {"_count": 1, "down": {"_count": 1}}, "tarnish": {"_count": 1, "his": {"_count": 1}}, "becoming": {"_count": 1, "Minister": {"_count": 1}}, "Snuffles": {"_count": 3, "Harry": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "hie": {"_count": 1, "pry": {"_count": 1}}, "wages": {"_count": 1, "and": {"_count": 1}}, "prolong": {"_count": 1, "their": {"_count": 1}}, "awake": {"_count": 2, "swooshing": {"_count": 1}, "in": {"_count": 1}}, "erupt": {"_count": 2, "in": {"_count": 2}}, "Viktor": {"_count": 2, "": {"_count": 1}, "Krum": {"_count": 1}}, "eavesdrop": {"_count": 5, "she": {"_count": 1}, "on": {"_count": 2}, "": {"_count": 2}}, "up": {"_count": 1, "the": {"_count": 1}}, "cost": {"_count": 1, "him": {"_count": 1}}, "loosen": {"_count": 3, "Crouchs": {"_count": 1}, "your": {"_count": 1}, "it": {"_count": 1}}, "draft": {"_count": 1, "a": {"_count": 1}}, "trigger": {"_count": 1, "another": {"_count": 1}}, "The": {"_count": 1, "headmaster": {"_count": 1}}, "Disapparating": {"_count": 1, "or": {"_count": 1}}, "swear": {"_count": 4, "by": {"_count": 1}, "loudly": {"_count": 1}, "vengeance": {"_count": 1}, "at": {"_count": 1}}, "lecture": {"_count": 1, "me": {"_count": 1}}, "kidnap": {"_count": 1, "Crouch": {"_count": 1}}, "Neptune": {"_count": 1, "": {"_count": 1}}, "Godric": {"_count": 1, "Gryffindor": {"_count": 1}}, "swirl": {"_count": 4, "very": {"_count": 2}, "around": {"_count": 1}, "so": {"_count": 1}}, "Albus": {"_count": 7, "Dumbledore": {"_count": 2}, "": {"_count": 1}, "describing": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 2}}, "round": {"_count": 3, "up": {"_count": 2}, "off": {"_count": 1}}, "assist": {"_count": 4, "in": {"_count": 2}, "me": {"_count": 1}, "with": {"_count": 1}}, "ally": {"_count": 1, "itself": {"_count": 1}}, "affect": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "revolve": {"_count": 3, "slowly": {"_count": 1}, "very": {"_count": 1}, "on": {"_count": 1}}, "siphon": {"_count": 1, "them": {"_count": 1}}, "conclusions": {"_count": 1, "about": {"_count": 1}}, "Nevilles": {"_count": 2, "snores": {"_count": 1}, "bed": {"_count": 1}}, "blast": {"_count": 3, "solid": {"_count": 1}, "it": {"_count": 1}, "open": {"_count": 1}}, "cast": {"_count": 8, "a": {"_count": 2}, "the": {"_count": 1}, "spells": {"_count": 1}, "light": {"_count": 1}, "doubt": {"_count": 1}, "their": {"_count": 1}, "aside": {"_count": 1}}, "influence": {"_count": 1, "it": {"_count": 1}}, "lay": {"_count": 7, "hands": {"_count": 3}, "aside": {"_count": 1}, "off": {"_count": 1}, "a": {"_count": 2}}, "other": {"_count": 7, "matters": {"_count": 1}, "creatures": {"_count": 1}, "people": {"_count": 2}, "pursuits": {"_count": 1}, "believers": {"_count": 1}, "magical": {"_count": 1}}, "converse": {"_count": 1, "with": {"_count": 1}}, "correct": {"_count": 3, "her": {"_count": 1}, "those": {"_count": 1}, "it": {"_count": 1}}, "fade": {"_count": 1, "from": {"_count": 1}}, "station": {"_count": 1, "themselves": {"_count": 1}}, "navy": {"_count": 1, "": {"_count": 1}}, "combat": {"_count": 1, "a": {"_count": 1}}, "hurl": {"_count": 1, "himself": {"_count": 1}}, "ankles": {"_count": 1, "to": {"_count": 1}}, "bubble": {"_count": 4, "but": {"_count": 1}, "at": {"_count": 2}, "and": {"_count": 1}}, "velvety": {"_count": 1, "blackness": {"_count": 1}}, "circle": {"_count": 4, "in": {"_count": 1}, "": {"_count": 1}, "each": {"_count": 2}}, "grave": {"_count": 1, "": {"_count": 1}}, "expect": {"_count": 12, "more": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 1}, "from": {"_count": 2}, "in": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "too": {"_count": 1}, "and": {"_count": 1}, "Hestia": {"_count": 1}, "when": {"_count": 1}}, "immortality": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "conquer": {"_count": 4, "death": {"_count": 2}, "Muggles": {"_count": 1}, "yours": {"_count": 1}}, "supervise": {"_count": 3, "him": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "accompany": {"_count": 10, "him": {"_count": 7}, "the": {"_count": 1}, "his": {"_count": 1}, "us": {"_count": 1}}, "inhabit": {"_count": 2, "while": {"_count": 1}, "or": {"_count": 1}}, "embrace": {"_count": 3, "mortal": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "achieve": {"_count": 3, "this": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "attempt": {"_count": 11, "kidnap": {"_count": 1}, "to": {"_count": 7}, "N": {"_count": 1}, "it": {"_count": 1}, "another": {"_count": 1}}, "duel": {"_count": 5, "Harry": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "and": {"_count": 1}}, "beg": {"_count": 1, "": {"_count": 1}}, "emit": {"_count": 2, "echoing": {"_count": 1}, "a": {"_count": 1}}, "Cedrics": {"_count": 2, "and": {"_count": 1}, "memory": {"_count": 1}}, "pry": {"_count": 1, "him": {"_count": 1}}, "cavort": {"_count": 1, "in": {"_count": 1}}, "manipulate": {"_count": 2, "Potter": {"_count": 1}, "and": {"_count": 1}}, "fail": {"_count": 5, "": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 1}, "Ginny": {"_count": 1}, "Death": {"_count": 1}}, "whispered": {"_count": 1, "Moody": {"_count": 1}}, "regenerate": {"_count": 2, "and": {"_count": 1}, "making": {"_count": 1}}, "acceptance": {"_count": 1, "and": {"_count": 1}}, "Professors": {"_count": 1, "McGonagall": {"_count": 1}}, "swivel": {"_count": 2, "in": {"_count": 1}, "around": {"_count": 1}}, "bind": {"_count": 3, "me": {"_count": 1}, "his": {"_count": 1}, "Voldemort": {"_count": 1}}, "question": {"_count": 10, "him": {"_count": 5}, "Crouch": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "Ollivander": {"_count": 1}}, "Crouch": {"_count": 1, "now": {"_count": 1}}, "postpone": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "your": {"_count": 1}}, "regurgitate": {"_count": 1, "spells": {"_count": 1}}, "But": {"_count": 3, "the": {"_count": 1}, "nobody": {"_count": 1}, "then": {"_count": 1}}, "sputter": {"_count": 1, "still": {"_count": 1}}, "radiate": {"_count": 2, "that": {"_count": 1}, "from": {"_count": 1}}, "excellent": {"_count": 1, "causes": {"_count": 1}}, "rebuild": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "alert": {"_count": 2, "Remus": {"_count": 1}, "Snape": {"_count": 1}}, "overpower": {"_count": 1, "him": {"_count": 1}}, "speculate": {"_count": 1, "about": {"_count": 1}}, "lies": {"_count": 1, "and": {"_count": 1}}, "further": {"_count": 1, "and": {"_count": 1}}, "gamble": {"_count": 1, "and": {"_count": 1}}, "disembark": {"_count": 1, "": {"_count": 1}}, "drought": {"_count": 1, "": {"_count": 1}}, "passersby": {"_count": 1, "": {"_count": 1}}, "asking": {"_count": 2, "him": {"_count": 1}, "Lupin": {"_count": 1}}, "tea": {"_count": 2, "anywhere": {"_count": 1}, "next": {"_count": 1}}, "unclench": {"_count": 1, "": {"_count": 1}}, "waterski": {"_count": 1, "": {"_count": 1}}, "crawl": {"_count": 5, "out": {"_count": 1}, "home": {"_count": 1}, "over": {"_count": 1}, "toward": {"_count": 1}, "": {"_count": 1}}, "lipread": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 31, "he": {"_count": 7}, "a": {"_count": 3}, "House": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 2}, "way": {"_count": 1}, "I": {"_count": 3}, "somebody": {"_count": 1}, "girls": {"_count": 1}, "they": {"_count": 3}, "Dumbledore": {"_count": 1}, "Hagrid": {"_count": 1}, "Draco": {"_count": 1}, "Hermione": {"_count": 2}, "Master": {"_count": 1}, "she": {"_count": 1}}, "perfectly": {"_count": 1, "ordinary": {"_count": 1}}, "squatting": {"_count": 1, "among": {"_count": 1}}, "silhouette": {"_count": 1, "a": {"_count": 1}}, "punch": {"_count": 3, "harder": {"_count": 1}, "every": {"_count": 1}, "kick": {"_count": 1}}, "taunt": {"_count": 1, "him": {"_count": 1}}, "vent": {"_count": 2, "some": {"_count": 1}, "her": {"_count": 1}}, "Magnolia": {"_count": 1, "Crescent": {"_count": 1}}, "guffaws": {"_count": 1, "from": {"_count": 1}}, "Daddy": {"_count": 1, "now": {"_count": 1}}, "Dont": {"_count": 1, "you": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "lis": {"_count": 1, "But": {"_count": 1}}, "normality": {"_count": 1, "": {"_count": 1}}, "stow": {"_count": 2, "his": {"_count": 1}, "in": {"_count": 1}}, "snap": {"_count": 3, "under": {"_count": 1}, "back": {"_count": 1}, "it": {"_count": 1}}, "staying": {"_count": 1, "undercover": {"_count": 1}}, "Mummy": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "reawaken": {"_count": 1, "": {"_count": 1}}, "override": {"_count": 1, "the": {"_count": 1}}, "surrender": {"_count": 1, "his": {"_count": 1}}, "Dudley": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "quiet": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "misery": {"_count": 1, "or": {"_count": 1}}, "ache": {"_count": 1, "again": {"_count": 1}}, "Little": {"_count": 1, "Whinging": {"_count": 1}}, "arrest": {"_count": 5, "you": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 2}, "us": {"_count": 1}}, "living": {"_count": 1, "fulltime": {"_count": 1}}, "smell": {"_count": 2, "and": {"_count": 1}, "differently": {"_count": 1}}, "fold": {"_count": 1, "themselves": {"_count": 1}}, "Disillusion": {"_count": 1, "you": {"_count": 1}}, "headquarters": {"_count": 1, "and": {"_count": 1}}, "recede": {"_count": 1, "into": {"_count": 1}}, "unfreeze": {"_count": 1, "him": {"_count": 1}}, "houseelves": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "eemprove": {"_count": 1, "er": {"_count": 1}}, "worship": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "town": {"_count": 1, "I": {"_count": 1}}, "Kreacher": {"_count": 10, "too": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "But": {"_count": 1}, "Kreacher": {"_count": 1}, "wasnt": {"_count": 1}, "does": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}}, "gather": {"_count": 5, "up": {"_count": 1}, "closer": {"_count": 1}, "himself": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "hurtle": {"_count": 3, "through": {"_count": 2}, "over": {"_count": 1}}, "chase": {"_count": 5, "": {"_count": 1}, "him": {"_count": 1}, "away": {"_count": 1}, "after": {"_count": 2}}, "Hes": {"_count": 1, "not": {"_count": 1}}, "build": {"_count": 3, "up": {"_count": 2}, "himself": {"_count": 1}}, "recruit": {"_count": 3, "the": {"_count": 1}, "more": {"_count": 1}, "students": {"_count": 1}}, "overthrow": {"_count": 2, "him": {"_count": 1}, "Snape": {"_count": 1}}, "destabilize": {"_count": 2, "him": {"_count": 1}, "me": {"_count": 1}}, "discredit": {"_count": 3, "him": {"_count": 1}, "Albus": {"_count": 1}, "Arthur": {"_count": 1}}, "hes": {"_count": 1, "going": {"_count": 1}}, "peoples": {"_count": 1, "houses": {"_count": 1}}, "pacify": {"_count": 1, "Hedwig": {"_count": 1}}, "hunt": {"_count": 3, "every": {"_count": 1}, "you": {"_count": 1}, "her": {"_count": 1}}, "experiment": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "unprofitable": {"_count": 1, "boredom": {"_count": 1}}, "permeate": {"_count": 1, "the": {"_count": 1}}, "boot": {"_count": 4, "but": {"_count": 1}, "": {"_count": 2}, "Thats": {"_count": 1}}, "mutter": {"_count": 1, "": {"_count": 1}}, "Rodolphus": {"_count": 1, "Lestrange": {"_count": 1}}, "Wizardkind": {"_count": 1, "on": {"_count": 1}}, "puncture": {"_count": 2, "his": {"_count": 1}, "them": {"_count": 1}}, "decontaminate": {"_count": 1, "finally": {"_count": 1}}, "threaten": {"_count": 3, "him": {"_count": 2}, "Borgin": {"_count": 1}}, "oh": {"_count": 1, "yes": {"_count": 1}}, "Grimmauld": {"_count": 6, "Place": {"_count": 6}}, "Tonks": {"_count": 5, "What": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "itll": {"_count": 1}}, "Amelia": {"_count": 1, "Bones": {"_count": 1}}, "Muggles": {"_count": 3, "going": {"_count": 1}, "and": {"_count": 1}, "has": {"_count": 1}}, "escort": {"_count": 5, "Harry": {"_count": 1}, "them": {"_count": 2}, "Sibyll": {"_count": 1}, "you": {"_count": 1}}, "depart": {"_count": 4, "": {"_count": 1}, "undetected": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}}, "posters": {"_count": 1, "of": {"_count": 1}}, "Kingsley": {"_count": 4, "Shacklebolt": {"_count": 1}, "Mr": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "wire": {"_count": 1, "a": {"_count": 1}}, "descend": {"_count": 4, "": {"_count": 1}, "to": {"_count": 1}, "jangling": {"_count": 1}, "the": {"_count": 1}}, "slacken": {"_count": 1, "as": {"_count": 1}}, "tot": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "school": {"_count": 1}}, "confiscate": {"_count": 2, "wands": {"_count": 1}, "the": {"_count": 1}}, "await": {"_count": 4, "your": {"_count": 1}, "trial": {"_count": 1}, "us": {"_count": 1}, "the": {"_count": 1}}, "wriggle": {"_count": 3, "out": {"_count": 2}, "and": {"_count": 1}}, "Fudges": {"_count": 1, "office": {"_count": 1}}, "prize": {"_count": 1, "off": {"_count": 1}}, "S": {"_count": 1, "": {"_count": 1}}, "stroll": {"_count": 1, "across": {"_count": 1}}, "sulk": {"_count": 1, "because": {"_count": 1}}, "attach": {"_count": 2, "it": {"_count": 1}, "yourself": {"_count": 1}}, "gaze": {"_count": 10, "into": {"_count": 1}, "intently": {"_count": 1}, "up": {"_count": 2}, "enthralled": {"_count": 1}, "out": {"_count": 1}, "at": {"_count": 3}, "avidly": {"_count": 1}}, "behave": {"_count": 2, "myself": {"_count": 1}, "I": {"_count": 1}}, "seventy": {"_count": 1, "in": {"_count": 1}}, "hearing": {"_count": 2, "it": {"_count": 1}, "Ritas": {"_count": 1}}, "rouse": {"_count": 4, "her": {"_count": 1}, "him": {"_count": 1}, "their": {"_count": 1}, "Uncle": {"_count": 1}}, "patrol": {"_count": 5, "the": {"_count": 5}}, "abuse": {"_count": 2, "your": {"_count": 1}, "McLaggen": {"_count": 1}}, "leap": {"_count": 3, "up": {"_count": 1}, "inside": {"_count": 1}, "the": {"_count": 1}}, "Gain": {"_count": 1, "Gringotts": {"_count": 1}}, "cooperate": {"_count": 2, "peacefully": {"_count": 1}, "with": {"_count": 1}}, "page": {"_count": 11, "fiftyseven": {"_count": 1}, "five": {"_count": 2}, "17": {"_count": 1}, "nineteen": {"_count": 2}, "thirtyfour": {"_count": 1}, "ten": {"_count": 2}, "what": {"_count": 1}, "two": {"_count": 1}}, "giant": {"_count": 1, "bats": {"_count": 1}}, "Luna": {"_count": 7, "": {"_count": 1}, "to": {"_count": 1}, "repeating": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}, "Ernie": {"_count": 1}}, "daring": {"_count": 1, "Gryffindor": {"_count": 1}}, "describing": {"_count": 1, "the": {"_count": 1}}, "exploding": {"_count": 1, "point": {"_count": 1}}, "reconcile": {"_count": 1, "them": {"_count": 1}}, "Euan": {"_count": 1, "Abercrombie": {"_count": 1}}, "giving": {"_count": 1, "the": {"_count": 1}}, "relate": {"_count": 1, "and": {"_count": 1}}, "glow": {"_count": 2, "red": {"_count": 1}, "more": {"_count": 1}}, "react": {"_count": 5, "angrily": {"_count": 1}, "when": {"_count": 2}, "well": {"_count": 1}, "": {"_count": 1}}, "O": {"_count": 3, "": {"_count": 3}}, "steer": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "mortifying": {"_count": 1, "": {"_count": 1}}, "tauten": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 1}, "He": {"_count": 1}}, "reflect": {"_count": 3, "that": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "exactly": {"_count": 1, "the": {"_count": 1}}, "simmer": {"_count": 2, "for": {"_count": 2}}, "gouge": {"_count": 1, "out": {"_count": 1}}, "shepherds": {"_count": 1, "pie": {"_count": 1}}, "ascend": {"_count": 1, "the": {"_count": 1}}, "Sibyll": {"_count": 1, "Trelawneys": {"_count": 1}}, "interpret": {"_count": 2, "each": {"_count": 1}, "their": {"_count": 1}}, "Basic": {"_count": 1, "Principles": {"_count": 1}}, "or": {"_count": 6, "indeed": {"_count": 1}, "lead": {"_count": 1}, "to": {"_count": 1}, "planted": {"_count": 1}, "not": {"_count": 1}, "down": {"_count": 1}}, "indicate": {"_count": 6, "that": {"_count": 3}, "talking": {"_count": 1}, "amused": {"_count": 1}, "disappearance": {"_count": 1}}, "frown": {"_count": 3, "at": {"_count": 3}}, "spells": {"_count": 1, "that": {"_count": 1}}, "Dolores": {"_count": 2, "Umbridges": {"_count": 1}, "Umbridge": {"_count": 1}}, "mind": {"_count": 3, "him": {"_count": 1}, "them": {"_count": 1}, "without": {"_count": 1}}, "employ": {"_count": 2, "someone": {"_count": 1}, "a": {"_count": 1}}, "retaliate": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "first": {"_count": 3, "year": {"_count": 1}, "years": {"_count": 1}, "": {"_count": 1}}, "Put": {"_count": 1, "us": {"_count": 1}}, "crackle": {"_count": 1, "with": {"_count": 1}}, "trick": {"_count": 1, "them": {"_count": 1}}, "crack": {"_count": 6, "down": {"_count": 1}, "into": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 2}, "Mr": {"_count": 1}}, "bulge": {"_count": 2, "excitedly": {"_count": 1}, "For": {"_count": 1}}, "deeply": {"_count": 1, "appreciate": {"_count": 1}}, "suit": {"_count": 1, "the": {"_count": 1}}, "reinforce": {"_count": 1, "the": {"_count": 1}}, "parchment": {"_count": 1, "": {"_count": 1}}, "Keep": {"_count": 1, "": {"_count": 1}}, "race": {"_count": 5, "and": {"_count": 1}, "": {"_count": 3}, "Voldemort": {"_count": 1}}, "while": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "clasp": {"_count": 1, "in": {"_count": 1}}, "shrivel": {"_count": 1, "with": {"_count": 1}}, "six": {"_count": 1, "months": {"_count": 1}}, "playing": {"_count": 2, "height": {"_count": 2}}, "Angelina": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "thin": {"_count": 5, "again": {"_count": 1}, "": {"_count": 2}, "air": {"_count": 1}, "slits": {"_count": 1}}, "court": {"_count": 1, "Potter": {"_count": 1}}, "sever": {"_count": 2, "ties": {"_count": 1}, "the": {"_count": 1}}, "advise": {"_count": 1, "you": {"_count": 1}}, "Mother": {"_count": 2, "at": {"_count": 1}, "while": {"_count": 1}}, "blind": {"_count": 1, "you": {"_count": 1}}, "Umbridge": {"_count": 5, "that": {"_count": 2}, "and": {"_count": 1}, "almost": {"_count": 1}, "": {"_count": 1}}, "concerns": {"_count": 1, "voiced": {"_count": 1}}, "effect": {"_count": 2, "improvements": {"_count": 1}, "an": {"_count": 1}}, "grips": {"_count": 1, "with": {"_count": 1}}, "fair": {"_count": 1, "and": {"_count": 1}}, "subversive": {"_count": 1, "goblin": {"_count": 1}}, "chapter": {"_count": 2, "three": {"_count": 1}, "thirty": {"_count": 1}}, "ageappropriate": {"_count": 1, "subjects": {"_count": 1}}, "retort": {"_count": 2, "but": {"_count": 1}, "looking": {"_count": 1}}, "vanishing": {"_count": 1, "kittens": {"_count": 1}}, "crick": {"_count": 1, "his": {"_count": 1}}, "knit": {"_count": 1, "more": {"_count": 1}}, "distinguish": {"_count": 3, "between": {"_count": 1}, "above": {"_count": 1}, "passwords": {"_count": 1}}, "protrude": {"_count": 1, "slightly": {"_count": 1}}, "Wheres": {"_count": 1, "the": {"_count": 1}}, "display": {"_count": 1, "him": {"_count": 1}}, "Is": {"_count": 1, "it": {"_count": 1}}, "weasel": {"_count": 1, "out": {"_count": 1}}, "thump": {"_count": 1, "him": {"_count": 1}}, "actively": {"_count": 1, "prevent": {"_count": 1}}, "purchase": {"_count": 2, "well": {"_count": 1}, "a": {"_count": 1}}, "harp": {"_count": 1, "on": {"_count": 1}}, "chunter": {"_count": 1, "under": {"_count": 1}}, "smart": {"_count": 1, "in": {"_count": 1}}, "barter": {"_count": 1, "certain": {"_count": 1}}, "reform": {"_count": 4, "may": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "You": {"_count": 1, "realize": {"_count": 1}}, "intercept": {"_count": 1, "Hedwig": {"_count": 1}}, "reseal": {"_count": 1, "the": {"_count": 1}}, "triumph": {"_count": 1, "over": {"_count": 1}}, "orange": {"_count": 2, "": {"_count": 1}, "juice": {"_count": 1}}, "appoint": {"_count": 2, "you": {"_count": 1}, "a": {"_count": 1}}, "Know": {"_count": 1, "as": {"_count": 1}}, "relinquish": {"_count": 1, "that": {"_count": 1}}, "protracted": {"_count": 1, "applause": {"_count": 1}}, "paw": {"_count": 1, "Siriuss": {"_count": 1}}, "He": {"_count": 4, "broke": {"_count": 1}, "WhoMustNotBeNamed": {"_count": 1}, "is": {"_count": 1}, "could": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "butterbeer": {"_count": 1, "there": {"_count": 1}}, "elect": {"_count": 1, "a": {"_count": 1}}, "vote": {"_count": 1, "on": {"_count": 1}}, "so": {"_count": 5, "we": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "dont": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "disentangle": {"_count": 3, "himself": {"_count": 1}, "separate": {"_count": 1}, "the": {"_count": 1}}, "dust": {"_count": 1, "": {"_count": 1}}, "mimic": {"_count": 1, "his": {"_count": 1}}, "engrave": {"_count": 1, "the": {"_count": 1}}, "confuse": {"_count": 1, "it": {"_count": 1}}, "disguise": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 2}}, "hex": {"_count": 2, "Gryffindor": {"_count": 1}, "Kingsley": {"_count": 1}}, "Malfoys": {"_count": 1, "team": {"_count": 1}}, "sap": {"_count": 1, "the": {"_count": 1}}, "crush": {"_count": 2, "Angelinas": {"_count": 1}, "people": {"_count": 1}}, "Warrington": {"_count": 2, "who": {"_count": 1}, "Warrington": {"_count": 1}}, "Pucey": {"_count": 2, "Puceys": {"_count": 1}, "Johnson": {"_count": 1}}, "Bell": {"_count": 1, "this": {"_count": 1}}, "associate": {"_count": 4, "with": {"_count": 3}, "himself": {"_count": 1}}, "alter": {"_count": 1, "such": {"_count": 1}}, "ban": {"_count": 1, "these": {"_count": 1}}, "comprehend": {"_count": 2, "what": {"_count": 1}, "": {"_count": 1}}, "chair": {"_count": 1, "trying": {"_count": 1}}, "crouch": {"_count": 1, "to": {"_count": 1}}, "beam": {"_count": 1, "at": {"_count": 1}}, "simplify": {"_count": 1, "things": {"_count": 1}}, "weed": {"_count": 1, "out": {"_count": 1}}, "zoom": {"_count": 1, "up": {"_count": 1}}, "steam": {"_count": 1, "as": {"_count": 1}}, "half": {"_count": 2, "of": {"_count": 1}, "a": {"_count": 1}}, "tree": {"_count": 1, "peering": {"_count": 1}}, "gorge": {"_count": 1, "on": {"_count": 1}}, "bone": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "decorate": {"_count": 1, "the": {"_count": 1}}, "utter": {"_count": 3, "Did": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 1}}, "Stun": {"_count": 6, "anything": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 1}, "one": {"_count": 1}, "Even": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "reverberate": {"_count": 2, "in": {"_count": 1}, "through": {"_count": 1}}, "Elfrida": {"_count": 1, "Craggs": {"_count": 1}}, "feign": {"_count": 2, "sleep": {"_count": 2}}, "intrude": {"_count": 3, "upon": {"_count": 1}, "wouldnt": {"_count": 1}, "said": {"_count": 1}}, "recount": {"_count": 1, "his": {"_count": 1}}, "deflect": {"_count": 3, "more": {"_count": 1}, "it": {"_count": 1}, "any": {"_count": 1}}, "urge": {"_count": 1, "him": {"_count": 1}}, "seat": {"_count": 1, "them": {"_count": 1}}, "scarlet": {"_count": 1, "with": {"_count": 1}}, "maim": {"_count": 1, "and": {"_count": 1}}, "note": {"_count": 1, "that": {"_count": 1}}, "adolescent": {"_count": 1, "agonizing": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "deflate": {"_count": 1, "under": {"_count": 1}}, "sew": {"_count": 1, "your": {"_count": 1}}, "permanently": {"_count": 1, "wipe": {"_count": 1}}, "paper": {"_count": 1, "your": {"_count": 1}}, "orders": {"_count": 1, "more": {"_count": 1}}, "Buckbeaks": {"_count": 1, "room": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "announce": {"_count": 2, "his": {"_count": 1}, "that": {"_count": 1}}, "pump": {"_count": 1, "very": {"_count": 1}}, "deserve": {"_count": 1, "this": {"_count": 1}}, "delegate": {"_count": 1, "less": {"_count": 1}}, "whatever": {"_count": 3, "that": {"_count": 1}, "was": {"_count": 1}, "took": {"_count": 1}}, "offer": {"_count": 11, "Mr": {"_count": 1}, "them": {"_count": 1}, "me": {"_count": 1}, "Tom": {"_count": 1}, "you": {"_count": 1}, "words": {"_count": 1}, "help": {"_count": 3}, "him": {"_count": 2}}, "even": {"_count": 2, "if": {"_count": 1}, "glance": {"_count": 1}}, "ride": {"_count": 4, "on": {"_count": 2}, "to": {"_count": 1}, "home": {"_count": 1}}, "dispel": {"_count": 1, "his": {"_count": 1}}, "lighten": {"_count": 1, "the": {"_count": 1}}, "savor": {"_count": 1, "the": {"_count": 1}}, "delve": {"_count": 1, "into": {"_count": 1}}, "Legilimency": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "politeness": {"_count": 1, "why": {"_count": 1}}, "access": {"_count": 1, "your": {"_count": 1}}, "Occlumency": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "summon": {"_count": 7, "any": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 2}, "her": {"_count": 1}, "a": {"_count": 1}}, "memories": {"_count": 1, "you": {"_count": 1}}, "books": {"_count": 1, "quills": {"_count": 1}}, "reporters": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 1, "once": {"_count": 1}}, "muster": {"_count": 1, "a": {"_count": 1}}, "who": {"_count": 1, "should": {"_count": 1}}, "injuries": {"_count": 1, "or": {"_count": 1}}, "glance": {"_count": 2, "up": {"_count": 1}, "around": {"_count": 1}}, "extend": {"_count": 2, "his": {"_count": 2}}, "excuse": {"_count": 1, "his": {"_count": 1}}, "Mingle": {"_count": 1, "with": {"_count": 1}}, "seconds": {"_count": 1, "a": {"_count": 1}}, "Seeking": {"_count": 1, "anyway": {"_count": 1}}, "Umbridges": {"_count": 4, "attention": {"_count": 1}, "and": {"_count": 1}, "office": {"_count": 1}, "conversation": {"_count": 1}}, "resemble": {"_count": 2, "extracts": {"_count": 1}, "neon": {"_count": 1}}, "peruse": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "express": {"_count": 6, "their": {"_count": 1}, "a": {"_count": 1}, "aloud": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}}, "dismiss": {"_count": 1, "my": {"_count": 1}}, "divine": {"_count": 2, "by": {"_count": 1}, "meaning": {"_count": 1}}, "abandon": {"_count": 6, "it": {"_count": 3}, "his": {"_count": 1}, "Plan": {"_count": 1}, "your": {"_count": 1}}, "producing": {"_count": 1, "it": {"_count": 1}}, "bang": {"_count": 2, "his": {"_count": 1}, "as": {"_count": 1}}, "nine": {"_count": 1, "if": {"_count": 1}}, "galloping": {"_count": 1, "gargoyles": {"_count": 1}}, "Marietta": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 3, "meetings": {"_count": 1}, "two": {"_count": 1}, "and": {"_count": 1}}, "humans": {"_count": 2, "Professor": {"_count": 1}, "said": {"_count": 1}}, "manhandle": {"_count": 1, "my": {"_count": 1}}, "Kingsleys": {"_count": 1, "whisper": {"_count": 1}}, "bad": {"_count": 2, "dreams": {"_count": 1}, "even": {"_count": 1}}, "dock": {"_count": 3, "a": {"_count": 1}, "points": {"_count": 2}}, "maneuver": {"_count": 2, "it": {"_count": 1}, "knives": {"_count": 1}}, "reread": {"_count": 1, "what": {"_count": 1}}, "maintain": {"_count": 6, "a": {"_count": 2}, "an": {"_count": 1}, "secrecy": {"_count": 1}, "possession": {"_count": 1}, "their": {"_count": 1}}, "deliberate": {"_count": 1, "the": {"_count": 1}}, "Evans": {"_count": 1, "": {"_count": 1}}, "review": {"_count": 1, "Ancient": {"_count": 1}}, "underline": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "liaise": {"_count": 2, "with": {"_count": 2}}, "guarantee": {"_count": 1, "you": {"_count": 1}}, "Gregory": {"_count": 1, "the": {"_count": 1}}, "stoking": {"_count": 1, "the": {"_count": 1}}, "dissuade": {"_count": 1, "him": {"_count": 1}}, "Binns": {"_count": 1, "or": {"_count": 1}}, "concoct": {"_count": 1, "an": {"_count": 1}}, "undergo": {"_count": 1, "a": {"_count": 1}}, "cough": {"_count": 1, "": {"_count": 1}}, "contradict": {"_count": 2, "you": {"_count": 1}, "her": {"_count": 1}}, "coach": {"_count": 1, "you": {"_count": 1}}, "frolic": {"_count": 1, "on": {"_count": 1}}, "wrongdoers": {"_count": 1, "in": {"_count": 1}}, "number": {"_count": 1, "ninetythree": {"_count": 1}}, "prefer": {"_count": 1, "to": {"_count": 1}}, "gnaw": {"_count": 1, "the": {"_count": 1}}, "heart": {"_count": 1, "": {"_count": 1}}, "topple": {"_count": 2, "into": {"_count": 1}, "and": {"_count": 1}}, "studying": {"_count": 1, "his": {"_count": 1}}, "Hufflepuff": {"_count": 2, "next": {"_count": 1}, "": {"_count": 1}}, "emselves": {"_count": 1, "bu": {"_count": 1}}, "civilize": {"_count": 1, "the": {"_count": 1}}, "delude": {"_count": 1, "himself": {"_count": 1}}, "Magorian": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "mild": {"_count": 1, "surprise": {"_count": 1}}, "swerve": {"_count": 1, "to": {"_count": 1}}, "reality": {"_count": 1, "in": {"_count": 1}}, "straighten": {"_count": 2, "his": {"_count": 2}}, "wilt": {"_count": 1, "with": {"_count": 1}}, "reviewing": {"_count": 1, "those": {"_count": 1}}, "badger": {"_count": 1, "him": {"_count": 1}}, "induce": {"_count": 2, "panic": {"_count": 1}, "an": {"_count": 1}}, "concentration": {"_count": 1, "mental": {"_count": 1}}, "harbor": {"_count": 1, "at": {"_count": 1}}, "reenter": {"_count": 4, "the": {"_count": 4}}, "mutate": {"_count": 1, "into": {"_count": 1}}, "multiply": {"_count": 1, "her": {"_count": 1}}, "correctly": {"_count": 1, "identify": {"_count": 1}}, "warrant": {"_count": 1, "such": {"_count": 1}}, "rage": {"_count": 4, "": {"_count": 1}, "and": {"_count": 2}, "at": {"_count": 1}}, "doze": {"_count": 1, "off": {"_count": 1}}, "better": {"_count": 1, "control": {"_count": 1}}, "flood": {"_count": 3, "out": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "establish": {"_count": 1, "whether": {"_count": 1}}, "bank": {"_count": 1, "on": {"_count": 1}}, "chip": {"_count": 2, "in": {"_count": 1}, "away": {"_count": 1}}, "itself": {"_count": 1, "on": {"_count": 1}}, "slit": {"_count": 1, "his": {"_count": 1}}, "interrogate": {"_count": 3, "Potter": {"_count": 1}, "him": {"_count": 1}, "your": {"_count": 1}}, "mature": {"_count": 1, "so": {"_count": 1}}, "uuse": {"_count": 1, "it": {"_count": 1}}, "ssort": {"_count": 1, "you": {"_count": 1}}, "stride": {"_count": 4, "toward": {"_count": 1}, "away": {"_count": 1}, "into": {"_count": 1}, "blindly": {"_count": 1}}, "worse": {"_count": 1, "": {"_count": 1}}, "howl": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "clench": {"_count": 1, "his": {"_count": 1}}, "gush": {"_count": 1, "into": {"_count": 1}}, "flutter": {"_count": 1, "and": {"_count": 1}}, "bottom": {"_count": 2, "withdrew": {"_count": 1}, "Lupin": {"_count": 1}}, "skulk": {"_count": 1, "down": {"_count": 1}}, "A": {"_count": 1, "": {"_count": 1}}, "constrict": {"_count": 1, "and": {"_count": 1}}, "chest": {"_count": 1, "height": {"_count": 1}}, "cling": {"_count": 6, "on": {"_count": 1}, "to": {"_count": 4}, "onto": {"_count": 1}}, "Death": {"_count": 2, "Eater": {"_count": 1}, "Eaters": {"_count": 1}}, "sprint": {"_count": 3, "in": {"_count": 1}, "toward": {"_count": 1}, "along": {"_count": 1}}, "babyhood": {"_count": 1, "once": {"_count": 1}}, "mouth": {"_count": 1, "through": {"_count": 1}}, "kneel": {"_count": 2, "at": {"_count": 1}, "or": {"_count": 1}}, "rotate": {"_count": 2, "once": {"_count": 1}, "again": {"_count": 1}}, "bench": {"_count": 1, "toward": {"_count": 1}}, "bargain": {"_count": 1, "Potter": {"_count": 1}}, "losing": {"_count": 1, "family": {"_count": 1}}, "articulate": {"_count": 1, "a": {"_count": 1}}, "stone": {"_count": 2, "seat": {"_count": 1}, "and": {"_count": 1}}, "flounder": {"_count": 1, "Ib": {"_count": 1}}, "emerge": {"_count": 2, "at": {"_count": 1}, "about": {"_count": 1}}, "chorus": {"_count": 1, "I": {"_count": 1}}, "doing": {"_count": 3, "I": {"_count": 1}, "things": {"_count": 1}, "what": {"_count": 1}}, "claim": {"_count": 1, "responsibility": {"_count": 1}}, "portrait": {"_count": 1, "calling": {"_count": 1}}, "nod": {"_count": 1, "": {"_count": 1}}, "justify": {"_count": 1, "himself": {"_count": 1}}, "\u2018get": {"_count": 1, "out": {"_count": 1}}, "betray": {"_count": 4, "us": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "Sirius": {"_count": 1}}, "regard": {"_count": 2, "Sirius": {"_count": 1}, "any": {"_count": 1}}, "min": {"_count": 1, "it": {"_count": 1}}, "vanquish": {"_count": 2, "the": {"_count": 2}}, "parents": {"_count": 2, "who": {"_count": 2}}, "mine": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "reside": {"_count": 1, "in": {"_count": 1}}, "continuing": {"_count": 1, "in": {"_count": 1}}, "elementary": {"_count": 1, "home": {"_count": 1}}, "Take": {"_count": 1, "Over": {"_count": 1}}, "Sweden": {"_count": 1, "this": {"_count": 1}}, "Add": {"_count": 1, "some": {"_count": 1}}, "fend": {"_count": 1, "off": {"_count": 1}}, "ambush": {"_count": 3, "Harry": {"_count": 1}, "you": {"_count": 1}, "us": {"_count": 1}}, "stage": {"_count": 1, "the": {"_count": 1}}, "ooze": {"_count": 1, "": {"_count": 1}}, "hug": {"_count": 6, "Hermione": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 2}, "some": {"_count": 1}}, "bristle": {"_count": 1, "with": {"_count": 1}}, "outweigh": {"_count": 1, "even": {"_count": 1}}, "enumerate": {"_count": 1, "all": {"_count": 1}}, "keeping": {"_count": 1, "the": {"_count": 1}}, "prise": {"_count": 6, "it": {"_count": 2}, "herself": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "off": {"_count": 1}}, "notify": {"_count": 1, "you": {"_count": 1}}, "blackmail": {"_count": 1, "like": {"_count": 1}}, "glower": {"_count": 1, "at": {"_count": 1}}, "discompose": {"_count": 1, "him": {"_count": 1}}, "listening": {"_count": 1, "at": {"_count": 1}}, "Narcissa": {"_count": 2, "and": {"_count": 2}}, "thwart": {"_count": 3, "him": {"_count": 2}, "Lord": {"_count": 1}}, "succeed": {"_count": 3, "he": {"_count": 1}, "": {"_count": 2}}, "clutch": {"_count": 2, "his": {"_count": 1}, "at": {"_count": 1}}, "ctd": {"_count": 1, "": {"_count": 1}}, "unpack": {"_count": 1, "again": {"_count": 1}}, "laughter": {"_count": 1, "he": {"_count": 1}}, "own": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "choke": {"_count": 2, "": {"_count": 2}}, "rechristen": {"_count": 1, "him": {"_count": 1}}, "stick": {"_count": 5, "the": {"_count": 1}, "together": {"_count": 2}, "this": {"_count": 1}, "with": {"_count": 1}}, "coercion": {"_count": 1, "torture": {"_count": 1}}, "Ciceron": {"_count": 1, "Harkiss": {"_count": 1}}, "declaring": {"_count": 1, "my": {"_count": 1}}, "sympathize": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "handpick": {"_count": 1, "favorites": {"_count": 1}}, "recommend": {"_count": 1, "the": {"_count": 1}}, "require": {"_count": 1, "an": {"_count": 1}}, "deplore": {"_count": 1, "how": {"_count": 1}}, "carrying": {"_count": 1, "it": {"_count": 1}}, "manifest": {"_count": 1, "themselves": {"_count": 1}}, "emanate": {"_count": 2, "a": {"_count": 1}, "from": {"_count": 1}}, "float": {"_count": 1, "out": {"_count": 1}}, "explained": {"_count": 1, "Hermione": {"_count": 1}}, "lessen": {"_count": 1, "her": {"_count": 1}}, "detach": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "wiping": {"_count": 1, "glasses": {"_count": 1}}, "view": {"_count": 2, "hidden": {"_count": 1}, "then": {"_count": 1}}, "undersixteens": {"_count": 1, "": {"_count": 1}}, "moderate": {"_count": 1, "hexes": {"_count": 1}}, "scurry": {"_count": 1, "out": {"_count": 1}}, "twentyfour": {"_count": 1, "hours": {"_count": 1}}, "blackheads": {"_count": 1, "but": {"_count": 1}}, "reserve": {"_count": 1, "something": {"_count": 1}}, "Borgin": {"_count": 5, "who": {"_count": 1}, "and": {"_count": 4}}, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}, "negotiate": {"_count": 1, "while": {"_count": 1}}, "such": {"_count": 3, "things": {"_count": 2}, "people": {"_count": 1}}, "McLaggen": {"_count": 2, "instead": {"_count": 1}, "to": {"_count": 1}}, "print": {"_count": 1, "inaccuracies": {"_count": 1}}, "Zabini": {"_count": 1, "without": {"_count": 1}}, "wellconnected": {"_count": 1, "people": {"_count": 1}}, "please": {"_count": 2, "Malfoy": {"_count": 1}, "": {"_count": 1}}, "bigger": {"_count": 2, "and": {"_count": 2}}, "mar": {"_count": 1, "his": {"_count": 1}}, "disarrange": {"_count": 1, "the": {"_count": 1}}, "Healing": {"_count": 1, "Spells": {"_count": 1}}, "blaze": {"_count": 1, "whitehot": {"_count": 1}}, "unite": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "comport": {"_count": 1, "himself": {"_count": 1}}, "somewhere": {"_count": 1, "between": {"_count": 1}}, "raucous": {"_count": 1, "laughter": {"_count": 1}}, "teaching": {"_count": 1, "Potions": {"_count": 1}}, "abide": {"_count": 1, "by": {"_count": 1}}, "file": {"_count": 3, "out": {"_count": 1}, "past": {"_count": 2}}, "retell": {"_count": 1, "the": {"_count": 1}}, "retie": {"_count": 1, "the": {"_count": 1}}, "N": {"_count": 3, "": {"_count": 3}}, "respect": {"_count": 1, "the": {"_count": 1}}, "undo": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "Arithmancy": {"_count": 1, "while": {"_count": 1}}, "Hector": {"_count": 1, "DagworthGranger": {"_count": 1}}, "Nott": {"_count": 1, "and": {"_count": 1}}, "manufacture": {"_count": 1, "or": {"_count": 1}}, "decipher": {"_count": 3, "the": {"_count": 2}, "and": {"_count": 1}}, "ours": {"_count": 1, "said": {"_count": 1}}, "molelike": {"_count": 1, "specks": {"_count": 1}}, "approach": {"_count": 6, "it": {"_count": 2}, "me": {"_count": 1}, "her": {"_count": 2}, "his": {"_count": 1}}, "Morfin": {"_count": 5, "": {"_count": 3}, "Or": {"_count": 1}, "in": {"_count": 1}}, "throttle": {"_count": 1, "her": {"_count": 1}}, "Ogden": {"_count": 2, "": {"_count": 1}, "received": {"_count": 1}}, "Marvolos": {"_count": 1, "": {"_count": 1}}, "deduce": {"_count": 1, "what": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "meals": {"_count": 1, "at": {"_count": 1}}, "seventh": {"_count": 1, "years": {"_count": 1}}, "heckle": {"_count": 1, "everyone": {"_count": 1}}, "general": {"_count": 2, "applause": {"_count": 1}, "astonishment": {"_count": 1}}, "Katies": {"_count": 1, "wailing": {"_count": 1}}, "Katie": {"_count": 2, "Bell": {"_count": 1}, "": {"_count": 1}}, "ground": {"_count": 1, "since": {"_count": 1}}, "Martha": {"_count": 1, "Billy": {"_count": 1}}, "nobody": {"_count": 5, "in": {"_count": 2}, "else": {"_count": 1}, "but": {"_count": 2}}, "gin": {"_count": 1, "drinking": {"_count": 1}}, "helpers": {"_count": 1, "and": {"_count": 1}}, "little": {"_count": 1, "Amy": {"_count": 1}}, "displace": {"_count": 1, "an": {"_count": 1}}, "serpents": {"_count": 1, "did": {"_count": 1}}, "certain": {"_count": 2, "features": {"_count": 1}, "points": {"_count": 1}}, "Gwenog": {"_count": 1, "Jones": {"_count": 1}}, "juice": {"_count": 1, "Snargaluff": {"_count": 1}}, "bridge": {"_count": 1, "the": {"_count": 1}}, "regret": {"_count": 3, "his": {"_count": 3}}, "Demelza": {"_count": 1, "and": {"_count": 1}}, "stray": {"_count": 1, "anywhere": {"_count": 1}}, "lash": {"_count": 1, "out": {"_count": 1}}, "intervene": {"_count": 1, "before": {"_count": 1}}, "sag": {"_count": 1, "on": {"_count": 1}}, "Coote": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "ram": {"_count": 1, "him": {"_count": 1}}, "brake": {"_count": 1, "Professor": {"_count": 1}}, "backfire": {"_count": 1, "like": {"_count": 1}}, "Slughorns": {"_count": 6, "Christmas": {"_count": 2}, "party": {"_count": 3}, "office": {"_count": 1}}, "refine": {"_count": 1, "his": {"_count": 1}}, "twitter": {"_count": 1, "in": {"_count": 1}}, "converge": {"_count": 1, "underneath": {"_count": 1}}, "navigate": {"_count": 1, "mistletoefree": {"_count": 1}}, "snog": {"_count": 1, "me": {"_count": 1}}, "Libatius": {"_count": 1, "Borages": {"_count": 1}}, "Slughorn": {"_count": 5, "s": {"_count": 3}, "handing": {"_count": 1}, "believing": {"_count": 1}}, "imitate": {"_count": 3, "her": {"_count": 1}, "Celestina": {"_count": 1}, "him": {"_count": 1}}, "ponder": {"_count": 1, "in": {"_count": 1}}, "publish": {"_count": 1, "by": {"_count": 1}}, "grant": {"_count": 1, "me": {"_count": 1}}, "\u2018A": {"_count": 1, "Hundred": {"_count": 1}}, "scoop": {"_count": 2, "Snape": {"_count": 1}, "up": {"_count": 1}}, "gatecrash": {"_count": 1, "happy": {"_count": 1}}, "success": {"_count": 1, "Draco": {"_count": 1}}, "Scrimgeour": {"_count": 2, "about": {"_count": 1}, "the": {"_count": 1}}, "embark": {"_count": 1, "on": {"_count": 1}}, "whether": {"_count": 4, "or": {"_count": 3}, "the": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "contaminate": {"_count": 1, "as": {"_count": 1}}, "unleash": {"_count": 1, "him": {"_count": 1}}, "victims": {"_count": 1, "ensuring": {"_count": 1}}, "marshal": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "revenge": {"_count": 1, "ourselves": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "hasnt": {"_count": 1, "she": {"_count": 1}}, "mull": {"_count": 1, "that": {"_count": 1}}, "Gawain": {"_count": 1, "Robards": {"_count": 1}}, "disassociate": {"_count": 1, "yourself": {"_count": 1}}, "carve": {"_count": 2, "into": {"_count": 1}, "for": {"_count": 1}}, "plant": {"_count": 1, "a": {"_count": 1}}, "corner": {"_count": 2, "you": {"_count": 1}, "Slughorn": {"_count": 1}}, "permit": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 2}}, "contribute": {"_count": 1, "": {"_count": 1}}, "dazzle": {"_count": 1, "Harrys": {"_count": 1}}, "\u2018the": {"_count": 1, "big": {"_count": 1}}, "coax": {"_count": 1, "it": {"_count": 1}}, "enforce": {"_count": 1, "their": {"_count": 1}}, "rework": {"_count": 1, "the": {"_count": 1}}, "Veritaserum": {"_count": 1, "with": {"_count": 1}}, "wrest": {"_count": 1, "the": {"_count": 1}}, "Phineas": {"_count": 1, "replied": {"_count": 1}}, "grasp": {"_count": 4, "what": {"_count": 1}, "that": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "exclaim": {"_count": 1, "in": {"_count": 1}}, "lull": {"_count": 1, "him": {"_count": 1}}, "reschedule": {"_count": 1, "Quidditch": {"_count": 1}}, "Magick": {"_count": 1, "Moste": {"_count": 1}}, "enable": {"_count": 2, "you": {"_count": 1}, "my": {"_count": 1}}, "position": {"_count": 2, "a": {"_count": 1}, "himself": {"_count": 1}}, "secondguess": {"_count": 1, "what": {"_count": 1}}, "rummage": {"_count": 2, "in": {"_count": 1}, "after": {"_count": 1}}, "locate": {"_count": 4, "on": {"_count": 1}, "Malfoy": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}}, "is": {"_count": 1, "stupid": {"_count": 1}}, "Splinch": {"_count": 1, "themselves": {"_count": 1}}, "Romilda": {"_count": 1, "Vane": {"_count": 1}}, "moan": {"_count": 2, "I": {"_count": 1}, "aloud": {"_count": 1}}, "surprise": {"_count": 1, "him": {"_count": 1}}, "bump": {"_count": 2, "off": {"_count": 1}, "into": {"_count": 1}}, "owe": {"_count": 1, "you": {"_count": 1}}, "meself": {"_count": 1, "so": {"_count": 1}}, "sixteen": {"_count": 1, "yearolds": {"_count": 1}}, "Potions": {"_count": 1, "where": {"_count": 1}}, "gauge": {"_count": 1, "how": {"_count": 1}}, "deafening": {"_count": 1, "cheers": {"_count": 1}}, "enrage": {"_count": 1, "them": {"_count": 1}}, "enlighten": {"_count": 1, "her": {"_count": 1}}, "reminisce": {"_count": 1, "about": {"_count": 1}}, "unravel": {"_count": 1, "stores": {"_count": 1}}, "reapply": {"_count": 1, "in": {"_count": 1}}, "part": {"_count": 3, "with": {"_count": 1}, "company": {"_count": 1}, "from": {"_count": 1}}, "inquire": {"_count": 2, "Oh": {"_count": 1}, "further": {"_count": 1}}, "Burke": {"_count": 1, "not": {"_count": 1}}, "suspect": {"_count": 3, "Hokey": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 1}}, "pause": {"_count": 2, "once": {"_count": 1}, "floating": {"_count": 1}}, "dictate": {"_count": 1, "the": {"_count": 1}}, "request": {"_count": 3, "again": {"_count": 1}, "a": {"_count": 1}, "trays": {"_count": 1}}, "command": {"_count": 1, "": {"_count": 1}}, "\u2018Roonil": {"_count": 1, "Wazlib": {"_count": 1}}, "No": {"_count": 1, "of": {"_count": 1}}, "gag": {"_count": 1, "on": {"_count": 1}}, "concede": {"_count": 1, "that": {"_count": 1}}, "merely": {"_count": 1, "irritate": {"_count": 1}}, "slop": {"_count": 1, "over": {"_count": 1}}, "devote": {"_count": 1, "an": {"_count": 1}}, "contemplate": {"_count": 3, "the": {"_count": 2}, "quite": {"_count": 1}}, "outside": {"_count": 1, "Madam": {"_count": 1}}, "Avoid": {"_count": 1, "Them": {"_count": 1}}, "everyones": {"_count": 1, "relatives": {"_count": 1}}, "Induce": {"_count": 1, "Euphoria": {"_count": 1}}, "taste": {"_count": 2, "some": {"_count": 1}, "my": {"_count": 1}}, "counterbalance": {"_count": 1, "the": {"_count": 1}}, "outshine": {"_count": 1, "Harry": {"_count": 1}}, "Aragogs": {"_count": 1, "memory": {"_count": 1}}, "convert": {"_count": 1, "into": {"_count": 1}}, "refill": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "elfmade": {"_count": 1, "wine": {"_count": 1}}, "warble": {"_count": 1, "the": {"_count": 1}}, "refilling": {"_count": 1, "their": {"_count": 1}}, "plead": {"_count": 2, "with": {"_count": 1}, "her": {"_count": 1}}, "aid": {"_count": 1, "you": {"_count": 1}}, "before": {"_count": 1, "turning": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "wheedle": {"_count": 2, "information": {"_count": 1}, "the": {"_count": 1}}, "store": {"_count": 1, "it": {"_count": 1}}, "reopen": {"_count": 2, "the": {"_count": 1}, "because": {"_count": 1}}, "immortal": {"_count": 1, "as": {"_count": 1}}, "conclude": {"_count": 4, "that": {"_count": 4}}, "behold": {"_count": 1, "": {"_count": 1}}, "mutilate": {"_count": 1, "his": {"_count": 1}}, "tweak": {"_count": 1, "the": {"_count": 1}}, "complicate": {"_count": 1, "matters": {"_count": 1}}, "intimidate": {"_count": 1, "opposing": {"_count": 1}}, "root": {"_count": 2, "him": {"_count": 1}, "out": {"_count": 1}}, "disobey": {"_count": 1, "": {"_count": 1}}, "wail": {"_count": 1, "and": {"_count": 1}}, "shimmer": {"_count": 1, "before": {"_count": 1}}, "gossip": {"_count": 2, "over": {"_count": 1}, "about": {"_count": 1}}, "ah": {"_count": 1, "deposit": {"_count": 1}}, "refrain": {"_count": 1, "from": {"_count": 1}}, "steady": {"_count": 3, "himself": {"_count": 3}}, "To": {"_count": 1, "what": {"_count": 1}}, "boulders": {"_count": 1, "that": {"_count": 1}}, "sail": {"_count": 1, "in": {"_count": 1}}, "Summon": {"_count": 2, "the": {"_count": 2}}, "immediately": {"_count": 1, "kill": {"_count": 1}}, "cower": {"_count": 1, "as": {"_count": 1}}, "pant": {"_count": 1, "": {"_count": 1}}, "crude": {"_count": 1, "and": {"_count": 1}}, "differ": {"_count": 1, "on": {"_count": 1}}, "lurk": {"_count": 1, "in": {"_count": 1}}, "overtake": {"_count": 1, "the": {"_count": 1}}, "shred": {"_count": 1, "his": {"_count": 1}}, "heal": {"_count": 1, "fully": {"_count": 1}}, "song": {"_count": 1, "that": {"_count": 1}}, "digest": {"_count": 1, "the": {"_count": 1}}, "marry": {"_count": 6, "me": {"_count": 1}, "him": {"_count": 2}, "her": {"_count": 1}, "a": {"_count": 1}, "before": {"_count": 1}}, "mock": {"_count": 1, "them": {"_count": 1}}, "journey": {"_count": 1, "alone": {"_count": 1}}, "pulse": {"_count": 2, "through": {"_count": 1}, "": {"_count": 1}}, "overwhelm": {"_count": 3, "him": {"_count": 2}, "Professor": {"_count": 1}}, "vividest": {"_count": 1, "pink": {"_count": 1}}, "Godrics": {"_count": 17, "Hollow": {"_count": 17}}, "transfer": {"_count": 1, "the": {"_count": 1}}, "subjugate": {"_count": 1, "the": {"_count": 1}}, "issue": {"_count": 2, "from": {"_count": 2}}, "desire": {"_count": 1, "for": {"_count": 1}}, "attain": {"_count": 1, "it": {"_count": 1}}, "praise": {"_count": 1, "his": {"_count": 1}}, "eclipse": {"_count": 1, "that": {"_count": 1}}, "Aberforth": {"_count": 2, "it": {"_count": 1}, "Ab": {"_count": 1}}, "value": {"_count": 2, "in": {"_count": 1}, "bravery": {"_count": 1}}, "twelve": {"_count": 1, "for": {"_count": 1}}, "replace": {"_count": 1, "them": {"_count": 1}}, "restart": {"_count": 1, "his": {"_count": 1}}, "qualify": {"_count": 1, "for": {"_count": 1}}, "outrun": {"_count": 2, "wizards": {"_count": 1}, "Voldemort": {"_count": 1}}, "grapple": {"_count": 1, "with": {"_count": 1}}, "outrage": {"_count": 1, "as": {"_count": 1}}, "repress": {"_count": 1, "an": {"_count": 1}}, "teeter": {"_count": 1, "on": {"_count": 1}}, "house": {"_count": 1, "to": {"_count": 1}}, "garden": {"_count": 1, "with": {"_count": 1}}, "Tonkss": {"_count": 2, "parents": {"_count": 2}}, "froth": {"_count": 1, "and": {"_count": 1}}, "Disarm": {"_count": 3, "Stan": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}}, "swoop": {"_count": 2, "out": {"_count": 1}, "under": {"_count": 1}}, "suicidal": {"_count": 1, "": {"_count": 1}}, "Downing": {"_count": 1, "Street": {"_count": 1}}, "dawn": {"_count": 1, "on": {"_count": 1}}, "grimaces": {"_count": 1, "of": {"_count": 1}}, "sniffed": {"_count": 1, "Tonks": {"_count": 1}}, "pitying": {"_count": 1, "": {"_count": 1}}, "mistrust": {"_count": 1, "his": {"_count": 1}}, "prickle": {"_count": 3, "and": {"_count": 1}, "again": {"_count": 2}}, "relay": {"_count": 1, "news": {"_count": 1}}, "delay": {"_count": 4, "you": {"_count": 1}, "She": {"_count": 1}, "at": {"_count": 1}, "him": {"_count": 1}}, "Australia": {"_count": 1, "which": {"_count": 1}}, "Get": {"_count": 1, "to": {"_count": 1}}, "Riddles": {"_count": 1, "diary": {"_count": 1}}, "volunteering": {"_count": 1, "to": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "Charm": {"_count": 2, "Witches": {"_count": 2}}, "breaking": {"_count": 2, "point": {"_count": 2}}, "gold": {"_count": 1, "": {"_count": 1}}, "reliable": {"_count": 1, "historical": {"_count": 1}}, "why": {"_count": 1, "Dumbledore": {"_count": 1}}, "oversleep": {"_count": 1, "tomorrow": {"_count": 1}}, "camouflage": {"_count": 1, "him": {"_count": 1}}, "snake": {"_count": 1, "its": {"_count": 1}}, "assister": {"_count": 1, "vous": {"_count": 1}}, "declaim": {"_count": 1, "in": {"_count": 1}}, "challenge": {"_count": 1, "Luna": {"_count": 1}}, "down": {"_count": 1, "an": {"_count": 1}}, "afternoons": {"_count": 1, "spent": {"_count": 1}}, "compliment": {"_count": 1, "her": {"_count": 1}}, "shock": {"_count": 1, "make": {"_count": 1}}, "Grindelvald": {"_count": 1, "taught": {"_count": 1}}, "integrate": {"_count": 1, "into": {"_count": 1}}, "Bathilda": {"_count": 2, "Albus": {"_count": 1}, "": {"_count": 1}}, "elate": {"_count": 1, "her": {"_count": 1}}, "Rita": {"_count": 2, "Skeeter": {"_count": 2}}, "plunge": {"_count": 1, "the": {"_count": 1}}, "ignite": {"_count": 1, "the": {"_count": 1}}, "succumb": {"_count": 1, "": {"_count": 1}}, "James": {"_count": 2, "was": {"_count": 1}, "three": {"_count": 1}}, "wouldnt": {"_count": 1, "she": {"_count": 1}}, "advertise": {"_count": 1, "his": {"_count": 1}}, "emphasize": {"_count": 1, "the": {"_count": 1}}, "ccome": {"_count": 1, "home": {"_count": 1}}, "switch": {"_count": 1, "the": {"_count": 1}}, "Regulus": {"_count": 1, "and": {"_count": 1}}, "totter": {"_count": 2, "a": {"_count": 1}, "then": {"_count": 1}}, "reappear": {"_count": 3, "": {"_count": 1}, "blindfolded": {"_count": 1}, "for": {"_count": 1}}, "Nymphadora": {"_count": 2, "usually": {"_count": 1}, "Tonks": {"_count": 1}}, "Tottenham": {"_count": 1, "Court": {"_count": 1}}, "person": {"_count": 1, "when": {"_count": 1}}, "memorize": {"_count": 1, "it": {"_count": 1}}, "dump": {"_count": 1, "her": {"_count": 1}}, "hum": {"_count": 2, "with": {"_count": 1}, "they": {"_count": 1}}, "twinkle": {"_count": 1, "even": {"_count": 1}}, "uproot": {"_count": 2, "the": {"_count": 1}, "himself": {"_count": 1}}, "Mundunguss": {"_count": 1, "baggy": {"_count": 1}}, "fink": {"_count": 1, "meself": {"_count": 1}}, "eccentric": {"_count": 1, "dressers": {"_count": 1}}, "spoon": {"_count": 1, "soup": {"_count": 1}}, "undermine": {"_count": 1, "Snape": {"_count": 1}}, "flit": {"_count": 1, "between": {"_count": 1}}, "don": {"_count": 1, "the": {"_count": 1}}, "fantasize": {"_count": 1, "about": {"_count": 1}}, "expound": {"_count": 1, "upon": {"_count": 1}}, "claw": {"_count": 1, "his": {"_count": 1}}, "LADIES": {"_count": 1, "": {"_count": 1}}, "searching": {"_count": 1, "it": {"_count": 1}}, "grope": {"_count": 3, "in": {"_count": 2}, "inside": {"_count": 1}}, "hoot": {"_count": 1, "feebly": {"_count": 1}}, "simply": {"_count": 2, "knock": {"_count": 1}, "practice": {"_count": 1}}, "Reginald": {"_count": 1, "Cattermole": {"_count": 1}}, "Maisie": {"_count": 1, "Ellie": {"_count": 1}}, "bolster": {"_count": 1, "her": {"_count": 1}}, "duplicate": {"_count": 2, "it": {"_count": 2}}, "fireplace": {"_count": 1, "sealing": {"_count": 1}}, "seal": {"_count": 1, "all": {"_count": 1}}, "suffocate": {"_count": 1, "he": {"_count": 1}}, "Gregorovitch": {"_count": 1, "": {"_count": 1}}, "rumble": {"_count": 1, "from": {"_count": 1}}, "obtain": {"_count": 1, "eggs": {"_count": 1}}, "scavenge": {"_count": 1, "nothing": {"_count": 1}}, "purple": {"_count": 1, "moors": {"_count": 1}}, "Gamps": {"_count": 2, "Law": {"_count": 2}}, "course": {"_count": 1, "through": {"_count": 1}}, "determine": {"_count": 1, "the": {"_count": 1}}, "bringing": {"_count": 1, "out": {"_count": 1}}, "meander": {"_count": 1, "up": {"_count": 1}}, "pore": {"_count": 1, "over": {"_count": 1}}, "knots": {"_count": 1, "of": {"_count": 1}}, "Muriel": {"_count": 1, "she": {"_count": 1}}, "chance": {"_count": 1, "Dumbledore": {"_count": 1}}, "wishing": {"_count": 1, "at": {"_count": 1}}, "gasp": {"_count": 1, "and": {"_count": 1}}, "ceiling": {"_count": 2, "Harry": {"_count": 1}, "with": {"_count": 1}}, "broken": {"_count": 1, "dressing": {"_count": 1}}, "knowing": {"_count": 1, "what": {"_count": 1}}, "barricade": {"_count": 2, "herself": {"_count": 1}, "the": {"_count": 1}}, "stomach": {"_count": 1, "the": {"_count": 1}}, "acquaintance": {"_count": 1, "with": {"_count": 1}}, "Britain": {"_count": 1, "however": {"_count": 1}}, "poor": {"_count": 1, "Albus": {"_count": 1}}, "hesitate": {"_count": 1, "": {"_count": 1}}, "Grindelwald": {"_count": 1, "didnt": {"_count": 1}}, "Nurmengard": {"_count": 2, "": {"_count": 1}, "FOR": {"_count": 1}}, "fighting": {"_count": 1, "the": {"_count": 1}}, "distant": {"_count": 1, "crackles": {"_count": 1}}, "submerge": {"_count": 1, "himself": {"_count": 1}}, "second": {"_count": 1, "gasping": {"_count": 1}}, "facedown": {"_count": 1, "in": {"_count": 1}}, "kip": {"_count": 1, "under": {"_count": 1}}, "hey": {"_count": 1, "": {"_count": 1}}, "wield": {"_count": 1, "the": {"_count": 1}}, "visualize": {"_count": 1, "it": {"_count": 1}}, "pity": {"_count": 1, "it": {"_count": 1}}, "blend": {"_count": 1, "in": {"_count": 1}}, "wound": {"_count": 1, "": {"_count": 1}}, "resurface": {"_count": 1, "how": {"_count": 1}}, "abate": {"_count": 1, "overnight": {"_count": 1}}, "debating": {"_count": 1, "the": {"_count": 1}}, "enlarge": {"_count": 1, "and": {"_count": 1}}, "tune": {"_count": 1, "in": {"_count": 1}}, "It": {"_count": 1, "wont": {"_count": 1}}, "enhance": {"_count": 1, "the": {"_count": 1}}, "balance": {"_count": 1, "precariously": {"_count": 1}}, "sugar": {"_count": 1, "": {"_count": 1}}, "humiliate": {"_count": 1, "Death": {"_count": 1}}, "instruct": {"_count": 1, "": {"_count": 1}}, "Egbert": {"_count": 1, "the": {"_count": 1}}, "Beedle": {"_count": 1, "the": {"_count": 1}}, "reverse": {"_count": 1, "death": {"_count": 1}}, "swap": {"_count": 1, "your": {"_count": 1}}, "kid": {"_count": 1, "yourself": {"_count": 1}}, "equal": {"_count": 1, "it": {"_count": 1}}, "images": {"_count": 1, "sharp": {"_count": 1}}, "ever": {"_count": 1, "more": {"_count": 1}}, "regular": {"_count": 1, "contributor": {"_count": 1}}, "appeal": {"_count": 1, "to": {"_count": 1}}, "emulate": {"_count": 1, "their": {"_count": 1}}, "\u2018Purebloods": {"_count": 1, "first": {"_count": 1}}, "\u2018Death": {"_count": 1, "Eaters": {"_count": 1}}, "Romulus": {"_count": 1, "for": {"_count": 1}}, "PotterwatcM": {"_count": 1, "And": {"_count": 1}}, "news": {"_count": 1, "concerning": {"_count": 1}}, "refer": {"_count": 2, "to": {"_count": 1}, "us": {"_count": 1}}, "broadcast": {"_count": 1, "again": {"_count": 1}}, "Greyback": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "acclimatize": {"_count": 1, "then": {"_count": 1}}, "shuffle": {"_count": 2, "around": {"_count": 1}, "across": {"_count": 1}}, "Rowle": {"_count": 1, "and": {"_count": 1}}, "Mudblood": {"_count": 1, "in": {"_count": 1}}, "writhe": {"_count": 1, "and": {"_count": 1}}, "Bellatrix": {"_count": 2, "": {"_count": 1}, "Lestrange": {"_count": 1}}, "diminish": {"_count": 1, "it": {"_count": 1}}, "Muriels": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "target": {"_count": 1, "the": {"_count": 1}}, "acknowledge": {"_count": 1, "its": {"_count": 1}}, "Ollivander": {"_count": 3, "": {"_count": 3}}, "channel": {"_count": 1, "your": {"_count": 1}}, "enthrall": {"_count": 1, "him": {"_count": 1}}, "violate": {"_count": 1, "his": {"_count": 1}}, "reconstruct": {"_count": 1, "the": {"_count": 1}}, "dislike": {"_count": 1, "wizards": {"_count": 1}}, "Griphooks": {"_count": 1, "preference": {"_count": 1}}, "relish": {"_count": 1, "the": {"_count": 1}}, "Bills": {"_count": 2, "arm": {"_count": 1}, "Auntie": {"_count": 1}}, "Xenophilius": {"_count": 1, "": {"_count": 1}}, "recreate": {"_count": 1, "the": {"_count": 1}}, "wizard": {"_count": 2, "": {"_count": 1}, "without": {"_count": 1}}, "renege": {"_count": 1, "on": {"_count": 1}}, "Teddy": {"_count": 1, "Lupin": {"_count": 1}}, "antagonize": {"_count": 1, "her": {"_count": 1}}, "slice": {"_count": 1, "it": {"_count": 1}}, "escaping": {"_count": 1, "the": {"_count": 1}}, "wing": {"_count": 1, "it": {"_count": 1}}, "encounter": {"_count": 2, "yet": {"_count": 1}, "an": {"_count": 1}}, "whirl": {"_count": 1, "and": {"_count": 1}}, "vacate": {"_count": 1, "the": {"_count": 1}}, "Xenophiliuss": {"_count": 1, "house": {"_count": 1}}, "youV": {"_count": 1, "he": {"_count": 1}}, "Travers": {"_count": 1, "but": {"_count": 1}}, "potential": {"_count": 1, "thieves": {"_count": 1}}, "recoil": {"_count": 1, "a": {"_count": 1}}, "flow": {"_count": 1, "from": {"_count": 1}}, "Helga": {"_count": 1, "Hufflepuff": {"_count": 1}}, "replicate": {"_count": 1, "": {"_count": 1}}, "dismount": {"_count": 1, "remained": {"_count": 1}}, "crave": {"_count": 1, "cooler": {"_count": 1}}, "seriousness": {"_count": 1, "": {"_count": 1}}, "We": {"_count": 1, "need": {"_count": 1}}, "cart": {"_count": 1, "me": {"_count": 1}}, "\u2018Got": {"_count": 1, "to": {"_count": 1}}, "doubt": {"_count": 1, "again": {"_count": 1}}, "Albuss": {"_count": 1, "trip": {"_count": 1}}, "pierce": {"_count": 1, "Harrys": {"_count": 1}}, "jeer": {"_count": 1, "or": {"_count": 1}}, "slope": {"_count": 2, "upward": {"_count": 2}}, "unseen": {"_count": 1, "people": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "soothe": {"_count": 1, "the": {"_count": 1}}, "Padma": {"_count": 1, "Michael": {"_count": 1}}, "dormitories": {"_count": 1, "above": {"_count": 1}}, "covet": {"_count": 1, "the": {"_count": 1}}, "discovering": {"_count": 1, "where": {"_count": 1}}, "lob": {"_count": 1, "them": {"_count": 1}}, "painting": {"_count": 1, "beside": {"_count": 1}}, "bat": {"_count": 1, "them": {"_count": 1}}, "entering": {"_count": 1, "the": {"_count": 1}}, "im": {"_count": 1, "": {"_count": 1}}, "soot": {"_count": 1, "at": {"_count": 1}}, "cease": {"_count": 1, "so": {"_count": 1}}, "throb": {"_count": 1, "and": {"_count": 1}}, "staunch": {"_count": 1, "the": {"_count": 1}}, "litter": {"_count": 1, "the": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}, "Mary": {"_count": 1, "Macdonald": {"_count": 1}}, "others": {"_count": 1, "as": {"_count": 1}}, "compose": {"_count": 1, "an": {"_count": 1}}, "eliminate": {"_count": 1, "all": {"_count": 1}}, "invent": {"_count": 1, "themselves": {"_count": 1}}, "whimper": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "strengthen": {"_count": 1, "himself": {"_count": 1}}, "daughter": {"_count": 1, "right": {"_count": 1}}, "Ignotuss": {"_count": 1, "last": {"_count": 1}}, "fruition": {"_count": 1, "all": {"_count": 1}}, "verify": {"_count": 1, "": {"_count": 1}}, "humiliation": {"_count": 1, "to": {"_count": 1}}, "intimate": {"_count": 1, "to": {"_count": 1}}, "sacrifice": {"_count": 1, "themselves": {"_count": 1}}, "oppose": {"_count": 1, "me": {"_count": 1}}, "dare": {"_count": 1, "too": {"_count": 1}}, "House": {"_count": 1, "anymore": {"_count": 1}}, "Confund": {"_count": 1, "the": {"_count": 1}}, "Rose": {"_count": 1, "who": {"_count": 1}}}, "say": {"_count": 865, "that": {"_count": 64, "they": {"_count": 2}, "handing": {"_count": 1}, "": {"_count": 7}, "like": {"_count": 1}, "he": {"_count": 6}, "the": {"_count": 1}, "she": {"_count": 3}, "hed": {"_count": 1}, "Dumbledore": {"_count": 2}, "you": {"_count": 1}, "his": {"_count": 1}, "Scabbers": {"_count": 1}, "from": {"_count": 1}, "your": {"_count": 1}, "said": {"_count": 5}, "I": {"_count": 6}, "GrubblyPlank": {"_count": 1}, "its": {"_count": 2}, "Potter": {"_count": 1}, "at": {"_count": 1}, "this": {"_count": 1}, "on": {"_count": 1}, "itll": {"_count": 1}, "nor": {"_count": 1}, "age": {"_count": 1}, "even": {"_count": 1}, "there": {"_count": 2}, "nighttime": {"_count": 1}, "Professor": {"_count": 1}, "nobody": {"_count": 1}, "Elphias": {"_count": 1}, "how": {"_count": 1}, "Dirk": {"_count": 1}, "but": {"_count": 1}, "dont": {"_count": 1}, "it": {"_count": 2}, "we": {"_count": 1}}, "if": {"_count": 15, "the": {"_count": 1}, "Im": {"_count": 1}, "Gryffindor": {"_count": 1}, "Potters": {"_count": 1}, "he": {"_count": 5}, "Harry": {"_count": 1}, "it": {"_count": 1}, "she": {"_count": 3}, "they": {"_count": 1}}, "something": {"_count": 28, "to": {"_count": 6}, "a": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 4}, "": {"_count": 4}, "about": {"_count": 2}, "like": {"_count": 2}, "angry": {"_count": 1}, "his": {"_count": 1}, "harsh": {"_count": 1}, "Vernon": {"_count": 1}, "funny": {"_count": 1}, "consoling": {"_count": 1}, "though": {"_count": 1}, "piped": {"_count": 1}}, "another": {"_count": 11, "word": {"_count": 11}}, "even": {"_count": 1, "if": {"_count": 1}}, "goodbye": {"_count": 16, "to": {"_count": 8}, "": {"_count": 3}, "again": {"_count": 1}, "afterward": {"_count": 1}, "as": {"_count": 1}, "now": {"_count": 1}, "for": {"_count": 1}}, "": {"_count": 99, "?": {"_count": 35}, ".": {"_count": 55}, "!": {"_count": 9}}, "Harry": {"_count": 5, "was": {"_count": 1}, "that": {"_count": 2}, "deliberately": {"_count": 1}, "": {"_count": 1}}, "Go": {"_count": 1, "cupboard": {"_count": 1}}, "thank": {"_count": 2, "you": {"_count": 2}}, "no": {"_count": 12, "ter": {"_count": 2}, "teh": {"_count": 1}, "to": {"_count": 1}, "more": {"_count": 4}, "send": {"_count": 1}, "": {"_count": 3}}, "once": {"_count": 1, "yehve": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "it": {"_count": 37, "again": {"_count": 2}, "should": {"_count": 1}, "myself": {"_count": 1}, "in": {"_count": 1}, "goes": {"_count": 1}, "wasnt": {"_count": 1}, "was": {"_count": 9}, "had": {"_count": 2}, "wasn": {"_count": 1}, "makes": {"_count": 1}, "": {"_count": 2}, "like": {"_count": 2}, "for": {"_count": 1}, "it": {"_count": 1}, "aloud": {"_count": 1}, "Dumbledore": {"_count": 1}, "will": {"_count": 2}, "but": {"_count": 2}, "does": {"_count": 1}, "doesnt": {"_count": 1}, "is": {"_count": 1}, "anymore": {"_count": 1}, "so": {"_count": 1}}, "he": {"_count": 19, "died": {"_count": 2}, "met": {"_count": 1}, "always": {"_count": 1}, "was": {"_count": 6}, "doesnt": {"_count": 1}, "broke": {"_count": 1}, "became": {"_count": 1}, "has": {"_count": 1}, "mumbled": {"_count": 1}, "doesn": {"_count": 1}, "had": {"_count": 1}, "feared": {"_count": 1}, "showed": {"_count": 1}}, "hes": {"_count": 12, "still": {"_count": 1}, "not": {"_count": 1}, "half": {"_count": 1}, "been": {"_count": 1}, "getting": {"_count": 1}, "gone": {"_count": 1}, "a": {"_count": 1}, "visiting": {"_count": 1}, "better": {"_count": 1}, "dead": {"_count": 1}, "using": {"_count": 1}, "ill": {"_count": 1}}, "theres": {"_count": 1, "dragons": {"_count": 1}}, "there": {"_count": 2, "are": {"_count": 2}}, "said": {"_count": 9, "Hagrid": {"_count": 1}, "Dot": {"_count": 1}, "Mrs": {"_count": 1}, "Hermione": {"_count": 3}, "Dumbledore": {"_count": 1}, "Ron": {"_count": 1}, "Cho": {"_count": 1}}, "the": {"_count": 19, "new": {"_count": 1}, "name": {"_count": 4}, "same": {"_count": 1}, "sooner": {"_count": 1}, "words": {"_count": 2}, "word": {"_count": 3}, "thing": {"_count": 1}, "Dark": {"_count": 3}, "incantation": {"_count": 1}, "Prime": {"_count": 1}, "Cloak": {"_count": 1}}, "I": {"_count": 23, "agree": {"_count": 1}, "sold": {"_count": 1}, "was": {"_count": 3}, "did": {"_count": 1}, "can": {"_count": 1}, "am": {"_count": 1}, "had": {"_count": 1}, "think": {"_count": 1}, "wish": {"_count": 1}, "dreamed": {"_count": 1}, "would": {"_count": 1}, "suppose": {"_count": 1}, "feel": {"_count": 1}, "shouldve": {"_count": 1}, "didnt": {"_count": 1}, "dont": {"_count": 2}, "cant": {"_count": 1}, "blame": {"_count": 1}, "saw": {"_count": 1}, "like": {"_count": 1}}, "look": {"_count": 2, "at": {"_count": 2}}, "your": {"_count": 6, "father": {"_count": 1}, "little": {"_count": 1}, "brothers": {"_count": 1}, "aunt": {"_count": 1}, "agapanthus": {"_count": 1}, "party": {"_count": 1}}, "anything": {"_count": 59, "": {"_count": 22}, "Justin": {"_count": 1}, "to": {"_count": 7}, "but": {"_count": 3}, "stupid": {"_count": 1}, "at": {"_count": 1}, "else": {"_count": 5}, "so": {"_count": 1}, "important": {"_count": 1}, "you": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 2}, "for": {"_count": 1}, "might": {"_count": 1}, "about": {"_count": 3}, "like": {"_count": 1}, "partly": {"_count": 1}, "interesting": {"_count": 1}, "before": {"_count": 2}, "said": {"_count": 2}, "either": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 1}, "taken": {"_count": 1}}, "every": {"_count": 1, "flavor": {"_count": 1}}, "we": {"_count": 8, "ought": {"_count": 1}, "werent": {"_count": 1}, "find": {"_count": 1}, "go": {"_count": 3}, "take": {"_count": 1}, "jump": {"_count": 1}}, "what": {"_count": 9, "are": {"_count": 1}, "you": {"_count": 1}, "was": {"_count": 2}, "the": {"_count": 1}, "he": {"_count": 3}, "weve": {"_count": 1}}, "a": {"_count": 14, "few": {"_count": 4}, "word": {"_count": 6}, "round": {"_count": 1}, "more": {"_count": 1}, "certain": {"_count": 1}, "full": {"_count": 1}}, "\u2018Up": {"_count": 1, "": {"_count": 1}}, "\u2018Quidditch": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 6, "he": {"_count": 2}, "I": {"_count": 3}, "you": {"_count": 1}}, "nothing": {"_count": 6, "if": {"_count": 2}, "she": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}}, "please": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "youve": {"_count": 4, "got": {"_count": 3}, "been": {"_count": 1}}, "you": {"_count": 14, "were": {"_count": 3}, "remember": {"_count": 1}, "have": {"_count": 2}, "drew": {"_count": 1}, "look": {"_count": 1}, "Professor": {"_count": 1}, "do": {"_count": 1}, "Harry": {"_count": 1}, "had": {"_count": 1}, "Draco": {"_count": 1}, "got": {"_count": 1}}, "Or": {"_count": 1, "else": {"_count": 1}}, "hed": {"_count": 4, "lost": {"_count": 1}, "thought": {"_count": 1}, "betrayed": {"_count": 1}, "never": {"_count": 1}}, "sorry": {"_count": 4, "as": {"_count": 1}, "": {"_count": 2}, "suggested": {"_count": 1}}, "or": {"_count": 4, "think": {"_count": 1}, "do": {"_count": 2}, "to": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 30, "comfort": {"_count": 1}, "Harry": {"_count": 2}, "you": {"_count": 6}, "Professor": {"_count": 1}, "that": {"_count": 2}, "me": {"_count": 2}, "Potter": {"_count": 1}, "old": {"_count": 1}, "her": {"_count": 3}, "him": {"_count": 3}, "this": {"_count": 1}, "a": {"_count": 1}, "each": {"_count": 1}, "such": {"_count": 1}, "one": {"_count": 1}, "us": {"_count": 1}, "them": {"_count": 1}, "somebody": {"_count": 1}}, "is": {"_count": 11, "going": {"_count": 2}, "more": {"_count": 1}, "name": {"_count": 1}, "the": {"_count": 1}, "\u2018We": {"_count": 1}, "supposed": {"_count": 1}, "much": {"_count": 1}, "unimportant": {"_count": 1}, "that": {"_count": 1}, "dont": {"_count": 1}}, "thats": {"_count": 3, "terrible": {"_count": 1}, "affected": {"_count": 1}, "Potter": {"_count": 1}}, "May": {"_count": 1, "I": {"_count": 1}}, "Shh": {"_count": 2, "": {"_count": 2}}, "on": {"_count": 5, "the": {"_count": 5}}, "about": {"_count": 9, "that": {"_count": 2}, "Professor": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "Quidditch": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 2}}, "as": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "where": {"_count": 4, "youre": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 7, "when": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 3}, "she": {"_count": 1}, "": {"_count": 1}}, "All": {"_count": 1, "right": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 2}, "herself": {"_count": 1}, "the": {"_count": 1}}, "theyve": {"_count": 3, "been": {"_count": 1}, "had": {"_count": 1}, "got": {"_count": 1}}, "how": {"_count": 4, "nice": {"_count": 1}, "do": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}}, "was": {"_count": 1, "going": {"_count": 1}}, "hello": {"_count": 7, "when": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 3}, "ter": {"_count": 1}}, "in": {"_count": 8, "Gadding": {"_count": 1}, "a": {"_count": 3}, "front": {"_count": 1}, "these": {"_count": 1}, "this": {"_count": 1}, "four": {"_count": 1}}, "itd": {"_count": 1, "be": {"_count": 1}}, "Slytherin": {"_count": 1, "lead": {"_count": 1}}, "Through": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 6, "been": {"_count": 1}, "really": {"_count": 1}, "going": {"_count": 1}, "jinxed": {"_count": 1}, "your": {"_count": 2}}, "Unfair": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 5, "more": {"_count": 3}, "of": {"_count": 2}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "who": {"_count": 5, "can": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 2}, "may": {"_count": 1}}, "Oh": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 6, "Ron": {"_count": 1}, "were": {"_count": 1}, "then": {"_count": 1}, "Hermione": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 1}}, "\u2018yes": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 4, "closed": {"_count": 1}, "throw": {"_count": 1}, "he": {"_count": 1}, "resorted": {"_count": 1}}, "Sirius": {"_count": 3, "Blacks": {"_count": 1}, "Black": {"_count": 1}, "is": {"_count": 1}}, "quite": {"_count": 1, "clearly": {"_count": 1}}, "Ron": {"_count": 1, "is": {"_count": 1}}, "\u2018Mischief": {"_count": 1, "managed": {"_count": 1}}, "came": {"_count": 1, "floating": {"_count": 1}}, "YouKnowWho": {"_count": 1, "alone": {"_count": 1}}, "loudly": {"_count": 1, "If": {"_count": 1}}, "\u2018Dissendium": {"_count": 1, "said": {"_count": 1}}, "which": {"_count": 2, "face": {"_count": 1}, "of": {"_count": 1}}, "w": {"_count": 1, "would": {"_count": 1}}, "Pettigrew": {"_count": 1, "could": {"_count": 1}}, "such": {"_count": 2, "a": {"_count": 1}, "things": {"_count": 1}}, "this": {"_count": 12, "before": {"_count": 1}, "out": {"_count": 1}, "wasnt": {"_count": 1}, "for": {"_count": 2}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}, "is": {"_count": 1}, "Bill": {"_count": 1}}, "yes": {"_count": 2, "send": {"_count": 1}, "said": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "names": {"_count": 1}}, "Ogwarts": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 3, "name": {"_count": 2}, "supporters": {"_count": 1}}, "happened": {"_count": 1, "": {"_count": 1}}, "MadEye": {"_count": 1, "": {"_count": 1}}, "seventeen": {"_count": 1, "years": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "To": {"_count": 1, "kill": {"_count": 1}}, "everything": {"_count": 3, "I": {"_count": 1}, "that": {"_count": 1}, "replied": {"_count": 1}}, "Support": {"_count": 1, "Harry": {"_count": 1}}, "fine": {"_count": 1, "but": {"_count": 1}}, "shed": {"_count": 1, "be": {"_count": 1}}, "Transfigure": {"_count": 1, "it": {"_count": 1}}, "How": {"_count": 1, "does": {"_count": 1}}, "worst": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 3, "night": {"_count": 3}}, "yeh": {"_count": 1, "were": {"_count": 1}}, "Harrys": {"_count": 1, "a": {"_count": 1}}, "Dobby": {"_count": 1, "could": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "her": {"_count": 2, "name": {"_count": 1}, "father": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "brusquely": {"_count": 1, "to": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 1}, "were": {"_count": 1}}, "much": {"_count": 4, "more": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "\u2018theres": {"_count": 1, "some": {"_count": 1}}, "old": {"_count": 1, "MadEyes": {"_count": 1}}, "things": {"_count": 1, "are": {"_count": 1}}, "Dumbledore": {"_count": 2, "trusts": {"_count": 1}, "knows": {"_count": 1}}, "Crouch": {"_count": 1, "was": {"_count": 1}}, "probable": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "top": {"_count": 1, "experts": {"_count": 1}}, "Kill": {"_count": 1, "the": {"_count": 1}}, "theyre": {"_count": 2, "from": {"_count": 1}, "not": {"_count": 1}}, "well": {"_count": 1, "done": {"_count": 1}}, "while": {"_count": 1, "Hermione": {"_count": 1}}, "m": {"_count": 1, "name": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "Dont": {"_count": 1, "call": {"_count": 1}}, "they": {"_count": 3, "were": {"_count": 1}, "havent": {"_count": 1}, "forced": {"_count": 1}}, "Cleared": {"_count": 1, "Harry": {"_count": 1}}, "either": {"_count": 1, "was": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "overhead": {"_count": 1, "Ask": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "whether": {"_count": 2, "Rons": {"_count": 1}, "he": {"_count": 1}}, "only": {"_count": 1, "this": {"_count": 1}}, "youd": {"_count": 1, "written": {"_count": 1}}, "YouKnowWhos": {"_count": 2, "back": {"_count": 2}}, "Im": {"_count": 3, "not": {"_count": 1}, "looking": {"_count": 1}, "surprised": {"_count": 1}}, "next": {"_count": 2, "Wednesday": {"_count": 1}, "": {"_count": 1}}, "didn": {"_count": 1, "seem": {"_count": 1}}, "Fangs": {"_count": 1, "near": {"_count": 1}}, "sharply": {"_count": 1, "to": {"_count": 1}}, "prefers": {"_count": 1, "the": {"_count": 1}}, "Its": {"_count": 1, "okay": {"_count": 1}}, "stuck": {"_count": 1, "here": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "however": {"_count": 2, "Sirius": {"_count": 1}, "that": {"_count": 1}}, "\u2018Sorry": {"_count": 1, "everyone": {"_count": 1}}, "bloods": {"_count": 1, "important": {"_count": 1}}, "murmured": {"_count": 1, "Ron": {"_count": 1}}, "first": {"_count": 1, "how": {"_count": 1}}, "she": {"_count": 2, "thinks": {"_count": 1}, "went": {"_count": 1}}, "yeah": {"_count": 1, "and": {"_count": 1}}, "youre": {"_count": 3, "averaging": {"_count": 1}, "taking": {"_count": 1}, "prepared": {"_count": 1}}, "\u2018brother": {"_count": 1, "said": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "Cruciol": {"_count": 1, "The": {"_count": 1}}, "Voldemort": {"_count": 1, "knows": {"_count": 1}}, "\u2018Sirius": {"_count": 1, "are": {"_count": 1}}, "\u2018Hagrid": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "go": {"_count": 1, "you": {"_count": 1}}, "Good": {"_count": 2, "but": {"_count": 1}, "evening": {"_count": 1}}, "almost": {"_count": 1, "entirely": {"_count": 1}}, "Siriuss": {"_count": 1, "name": {"_count": 1}}, "my": {"_count": 1, "name": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "\u2018back": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "never": {"_count": 2, "allowing": {"_count": 1}, "admitted": {"_count": 1}}, "excellent": {"_count": 1, "was": {"_count": 1}}, "except": {"_count": 2, "Oh": {"_count": 1}, "Kreacher": {"_count": 1}}, "His": {"_count": 1, "godfathers": {"_count": 1}}, "wands": {"_count": 1, "away": {"_count": 1}}, "beamed": {"_count": 1, "Luna": {"_count": 1}}, "more": {"_count": 4, "than": {"_count": 2}, "in": {"_count": 1}, "on": {"_count": 1}}, "Morfin": {"_count": 1, "": {"_count": 1}}, "whod": {"_count": 1, "given": {"_count": 1}}, "Katie": {"_count": 1, "got": {"_count": 1}}, "just": {"_count": 2, "now": {"_count": 1}, "say": {"_count": 1}}, "can": {"_count": 1, "change": {"_count": 1}}, "probably": {"_count": 1, "work": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "them": {"_count": 1, "as": {"_count": 1}}, "Snape": {"_count": 1, "isnt": {"_count": 1}}, "Dumbledores": {"_count": 1, "wrong": {"_count": 1}}, "prevented": {"_count": 1, "this": {"_count": 1}}, "Id": {"_count": 3, "like": {"_count": 2}, "paid": {"_count": 1}}, "Romilda": {"_count": 1, "": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "Why": {"_count": 1, "didnt": {"_count": 1}}, "Ill": {"_count": 2, "have": {"_count": 1}, "get": {"_count": 1}}, "\u2018I": {"_count": 1, "told": {"_count": 1}}, "younger": {"_count": 1, "fitter": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "tha": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 1, "last": {"_count": 1}}, "doing": {"_count": 1, "what": {"_count": 1}}, "Be": {"_count": 1, "careful": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "Hogwarts": {"_count": 1, "is": {"_count": 1}}, "still": {"_count": 1, "that": {"_count": 1}}, "youll": {"_count": 1, "have": {"_count": 1}}, "now": {"_count": 1, "is": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "ten": {"_count": 1, "miles": {"_count": 1}}, "He": {"_count": 1, "lost": {"_count": 1}}, "keeping": {"_count": 1, "it": {"_count": 1}}, "not": {"_count": 1, "least": {"_count": 1}}, "Ginevras": {"_count": 1, "dress": {"_count": 1}}, "Elphias": {"_count": 1, "but": {"_count": 1}}, "And": {"_count": 1, "why": {"_count": 1}}, "Dirk": {"_count": 1, "Im": {"_count": 1}}, "amended": {"_count": 1, "Ted": {"_count": 1}}, "Krum": {"_count": 1, "reckoned": {"_count": 1}}, "Rons": {"_count": 1, "name": {"_count": 1}}, "\u2018For": {"_count": 1, "the": {"_count": 1}}, "They": {"_count": 1, "were": {"_count": 1}}, "\u2018master": {"_count": 1, "of": {"_count": 1}}, "Royal": {"_count": 1, "to": {"_count": 1}}, "Fragmented": {"_count": 1, "visions": {"_count": 1}}, "Yes": {"_count": 1, "but": {"_count": 1}}, "Alecto": {"_count": 1, "was": {"_count": 1}}, "fairer": {"_count": 1, "than": {"_count": 1}}, "then": {"_count": 1, "Slytherin": {"_count": 1}}}, "that": {"_count": 9698, "they": {"_count": 324, "were": {"_count": 103}, "came": {"_count": 1}, "saw": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 53}, "followed": {"_count": 1}, "could": {"_count": 28}, "skidded": {"_count": 1}, "didnt": {"_count": 2}, "contained": {"_count": 1}, "werent": {"_count": 3}, "would": {"_count": 19}, "reached": {"_count": 2}, "might": {"_count": 8}, "did": {"_count": 6}, "are": {"_count": 9}, "jumped": {"_count": 1}, "staggered": {"_count": 1}, "go": {"_count": 1}, "all": {"_count": 5}, "and": {"_count": 2}, "needed": {"_count": 1}, "need": {"_count": 1}, "kept": {"_count": 1}, "ricocheted": {"_count": 2}, "appeared": {"_count": 1}, "arrived": {"_count": 1}, "come": {"_count": 1}, "couldnt": {"_count": 2}, "open": {"_count": 1}, "ought": {"_count": 3}, "want": {"_count": 1}, "carried": {"_count": 1}, "knew": {"_count": 5}, "do": {"_count": 1}, "wanted": {"_count": 1}, "have": {"_count": 3}, "avoided": {"_count": 1}, "leave": {"_count": 1}, "Might": {"_count": 1}, "felt": {"_count": 2}, "flashed": {"_count": 1}, "practice": {"_count": 1}, "returned": {"_count": 1}, "obscured": {"_count": 1}, "became": {"_count": 2}, "rebounded": {"_count": 1}, "turn": {"_count": 1}, "now": {"_count": 1}, "should": {"_count": 1}, "rang": {"_count": 1}, "like": {"_count": 2}, "unwittingly": {"_count": 1}, "faced": {"_count": 1}, "collapsed": {"_count": 1}, "havent": {"_count": 2}, "slithered": {"_count": 1}, "still": {"_count": 1}, "alone": {"_count": 1}, "looked": {"_count": 1}, "never": {"_count": 1}, "corrected": {"_count": 1}, "will": {"_count": 2}, "at": {"_count": 1}, "themselves": {"_count": 1}, "know": {"_count": 1}, "hardly": {"_count": 1}, "really": {"_count": 1}, "stood": {"_count": 2}, "woke": {"_count": 1}, "tried": {"_count": 1}, "sensed": {"_count": 1}, "take": {"_count": 1}, "formed": {"_count": 1}, "climbed": {"_count": 1}, "understood": {"_count": 1}, "rolled": {"_count": 1}, "use": {"_count": 1}, "wear": {"_count": 1}, "said": {"_count": 1}}, "somebody": {"_count": 9, "would": {"_count": 1}, "close": {"_count": 1}, "at": {"_count": 1}, "might": {"_count": 1}, "else": {"_count": 2}, "must": {"_count": 1}, "had": {"_count": 1}, "stood": {"_count": 1}}, "the": {"_count": 565, "Potters": {"_count": 2}, "man": {"_count": 2}, "nations": {"_count": 1}, "wind": {"_count": 2}, "big": {"_count": 1}, "sea": {"_count": 1}, "beetle": {"_count": 1}, "Dursleys": {"_count": 11}, "seats": {"_count": 2}, "tape": {"_count": 1}, "phoenix": {"_count": 3}, "Great": {"_count": 2}, "forest": {"_count": 3}, "other": {"_count": 6}, "people": {"_count": 5}, "only": {"_count": 7}, "spectators": {"_count": 1}, "paint": {"_count": 1}, "Snitch": {"_count": 1}, "Slytherins": {"_count": 2}, "figures": {"_count": 1}, "Stone": {"_count": 1}, "Easter": {"_count": 1}, "exams": {"_count": 2}, "place": {"_count": 4}, "exam": {"_count": 1}, "end": {"_count": 2}, "car": {"_count": 2}, "Ministry": {"_count": 15}, "luggage": {"_count": 1}, "hat": {"_count": 1}, "Whomping": {"_count": 2}, "feast": {"_count": 2}, "room": {"_count": 7}, "best": {"_count": 3}, "sun": {"_count": 2}, "Gryffindor": {"_count": 2}, "Slytherin": {"_count": 3}, "Bloody": {"_count": 1}, "Sorting": {"_count": 2}, "coast": {"_count": 5}, "Chamber": {"_count": 2}, "last": {"_count": 6}, "Mandrakes": {"_count": 2}, "girl": {"_count": 1}, "little": {"_count": 2}, "wizard": {"_count": 2}, "thing": {"_count": 5}, "monster": {"_count": 1}, "attacker": {"_count": 1}, "school": {"_count": 5}, "headmaster": {"_count": 2}, "whole": {"_count": 9}, "common": {"_count": 2}, "stars": {"_count": 2}, "ground": {"_count": 1}, "darkness": {"_count": 3}, "leafstrewn": {"_count": 1}, "spider": {"_count": 1}, "words": {"_count": 5}, "dark": {"_count": 1}, "entrance": {"_count": 1}, "rest": {"_count": 8}, "new": {"_count": 2}, "Weasleys": {"_count": 2}, "safest": {"_count": 1}, "job": {"_count": 2}, "parent": {"_count": 1}, "subject": {"_count": 1}, "Nimbus": {"_count": 1}, "others": {"_count": 2}, "dementors": {"_count": 3}, "return": {"_count": 1}, "idea": {"_count": 2}, "House": {"_count": 1}, "dementor": {"_count": 1}, "charm": {"_count": 1}, "ginger": {"_count": 1}, "evidence": {"_count": 1}, "stadium": {"_count": 1}, "castle": {"_count": 3}, "statue": {"_count": 1}, "tiny": {"_count": 1}, "burden": {"_count": 1}, "match": {"_count": 1}, "Committee": {"_count": 1}, "the": {"_count": 1}, "milk": {"_count": 1}, "boggart": {"_count": 1}, "Dark": {"_count": 11}, "hippogriff": {"_count": 1}, "security": {"_count": 1}, "old": {"_count": 1}, "older": {"_count": 1}, "Riddles": {"_count": 1}, "boys": {"_count": 3}, "hand": {"_count": 1}, "time": {"_count": 2}, "owl": {"_count": 1}, "Weasley": {"_count": 1}, "sounds": {"_count": 1}, "footlong": {"_count": 1}, "sauce": {"_count": 1}, "Muggle": {"_count": 1}, "leprechauns": {"_count": 1}, "Irish": {"_count": 1}, "lanterns": {"_count": 3}, "glass": {"_count": 2}, "list": {"_count": 1}, "InterHouse": {"_count": 1}, "Triwizard": {"_count": 2}, "tournament": {"_count": 2}, "twins": {"_count": 2}, "absence": {"_count": 1}, "door": {"_count": 2}, "surface": {"_count": 1}, "Hufflepuffs": {"_count": 1}, "reason": {"_count": 2}, "solution": {"_count": 1}, "trauma": {"_count": 1}, "cloak": {"_count": 1}, "dragons": {"_count": 1}, "position": {"_count": 1}, "Horntail": {"_count": 1}, "air": {"_count": 1}, "fourth": {"_count": 1}, "champions": {"_count": 1}, "top": {"_count": 1}, "ball": {"_count": 1}, "Daily": {"_count": 5}, "flagon": {"_count": 1}, "sound": {"_count": 1}, "torches": {"_count": 1}, "scars": {"_count": 2}, "mermen": {"_count": 1}, "merpeople": {"_count": 2}, "delay": {"_count": 1}, "entire": {"_count": 1}, "houseelves": {"_count": 1}, "name": {"_count": 1}, "interview": {"_count": 1}, "scar": {"_count": 1}, "spells": {"_count": 1}, "eyes": {"_count": 1}, "Aurors": {"_count": 1}, "boy": {"_count": 6}, "gaps": {"_count": 1}, "Cruciatus": {"_count": 1}, "thread": {"_count": 1}, "book": {"_count": 1}, "usual": {"_count": 1}, "truth": {"_count": 1}, "cracking": {"_count": 1}, "question": {"_count": 2}, "murder": {"_count": 1}, "Disillusionment": {"_count": 1}, "heads": {"_count": 1}, "Orders": {"_count": 1}, "creatures": {"_count": 1}, "tinkling": {"_count": 1}, "light": {"_count": 4}, "term": {"_count": 1}, "policy": {"_count": 1}, "monocles": {"_count": 1}, "behavior": {"_count": 1}, "law": {"_count": 1}, "houses": {"_count": 1}, "Tutshill": {"_count": 1}, "first": {"_count": 2}, "five": {"_count": 1}, "prospect": {"_count": 2}, "ache": {"_count": 1}, "cut": {"_count": 2}, "skin": {"_count": 1}, "Keeper": {"_count": 1}, "group": {"_count": 1}, "next": {"_count": 3}, "stranger": {"_count": 1}, "founders": {"_count": 1}, "classs": {"_count": 1}, "danger": {"_count": 1}, "practice": {"_count": 1}, "elf": {"_count": 2}, "news": {"_count": 1}, "presence": {"_count": 1}, "Quidditch": {"_count": 1}, "Gryffindors": {"_count": 1}, "team": {"_count": 1}, "High": {"_count": 1}, "knees": {"_count": 1}, "holiday": {"_count": 1}, "study": {"_count": 1}, "doorbell": {"_count": 1}, "stuffed": {"_count": 1}, "day": {"_count": 1}, "process": {"_count": 1}, "weapon": {"_count": 1}, "wild": {"_count": 1}, "speakers": {"_count": 1}, "breakout": {"_count": 1}, "final": {"_count": 1}, "poster": {"_count": 1}, "crying": {"_count": 1}, "onlookers": {"_count": 1}, "power": {"_count": 1}, "future": {"_count": 1}, "fight": {"_count": 1}, "cup": {"_count": 3}, "thought": {"_count": 1}, "most": {"_count": 1}, "examiners": {"_count": 1}, "rat": {"_count": 1}, "glowing": {"_count": 1}, "portraits": {"_count": 2}, "dense": {"_count": 1}, "din": {"_count": 1}, "blade": {"_count": 1}, "Death": {"_count": 8}, "newcomers": {"_count": 1}, "prophecies": {"_count": 1}, "person": {"_count": 3}, "one": {"_count": 1}, "eavesdropper": {"_count": 1}, "terrible": {"_count": 1}, "writer": {"_count": 1}, "government": {"_count": 1}, "Minister": {"_count": 2}, "long": {"_count": 1}, "Prime": {"_count": 2}, "curtains": {"_count": 1}, "two": {"_count": 2}, "disturbance": {"_count": 1}, "prophecy": {"_count": 2}, "house": {"_count": 1}, "protection": {"_count": 1}, "pair": {"_count": 2}, "Nosebleed": {"_count": 1}, "humming": {"_count": 1}, "Prophet": {"_count": 1}, "chains": {"_count": 2}, "wearing": {"_count": 1}, "silence": {"_count": 1}, "potions": {"_count": 1}, "buttons": {"_count": 1}, "previous": {"_count": 1}, "margins": {"_count": 1}, "potion": {"_count": 2}, "Prince": {"_count": 4}, "rafters": {"_count": 1}, "dead": {"_count": 1}, "snake": {"_count": 2}, "family": {"_count": 1}, "atmosphere": {"_count": 1}, "lessons": {"_count": 1}, "HalfBlood": {"_count": 1}, "voices": {"_count": 1}, "bowl": {"_count": 1}, "promising": {"_count": 1}, "angel": {"_count": 1}, "Ministrys": {"_count": 1}, "famous": {"_count": 1}, "contents": {"_count": 1}, "true": {"_count": 1}, "class": {"_count": 1}, "sixth": {"_count": 1}, "tables": {"_count": 1}, "Muffliato": {"_count": 1}, "Pensieve": {"_count": 1}, "socalled": {"_count": 1}, "right": {"_count": 2}, "huge": {"_count": 1}, "supply": {"_count": 1}, "soul": {"_count": 1}, "loss": {"_count": 1}, "diary": {"_count": 2}, "postLavender": {"_count": 1}, "nag": {"_count": 1}, "parents": {"_count": 1}, "ceiling": {"_count": 1}, "Inferi": {"_count": 2}, "secret": {"_count": 1}, "brother": {"_count": 1}, "Mark": {"_count": 1}, "full": {"_count": 1}, "music": {"_count": 1}, "hospital": {"_count": 1}, "situation": {"_count": 1}, "dormitory": {"_count": 1}, "grounds": {"_count": 1}, "task": {"_count": 1}, "shelter": {"_count": 1}, "Order": {"_count": 1}, "woman": {"_count": 1}, "brothers": {"_count": 1}, "Wizarding": {"_count": 2}, "bright": {"_count": 1}, "battle": {"_count": 2}, "voice": {"_count": 1}, "three": {"_count": 3}, "faint": {"_count": 1}, "more": {"_count": 1}, "Horcrux": {"_count": 2}, "deceaseds": {"_count": 1}, "title": {"_count": 1}, "latter": {"_count": 1}, "locket": {"_count": 4}, "burning": {"_count": 1}, "capture": {"_count": 1}, "plan": {"_count": 1}, "papers": {"_count": 1}, "paper": {"_count": 1}, "same": {"_count": 1}, "gaudy": {"_count": 1}, "object": {"_count": 1}, "bleeding": {"_count": 1}, "answer": {"_count": 1}, "sword": {"_count": 1}, "carols": {"_count": 1}, "chatter": {"_count": 1}, "figure": {"_count": 1}, "front": {"_count": 1}, "face": {"_count": 1}, "doe": {"_count": 1}, "symbol": {"_count": 1}, "stone": {"_count": 1}, "youngest": {"_count": 1}, "ancient": {"_count": 1}, "possessor": {"_count": 1}, "Peverells": {"_count": 1}, "Deathly": {"_count": 1}, "connection": {"_count": 1}, "remains": {"_count": 1}, "Snatcher": {"_count": 1}, "SkeleGro": {"_count": 1}, "Elder": {"_count": 2}, "way": {"_count": 1}, "goblin": {"_count": 4}, "arrangement": {"_count": 1}, "back": {"_count": 1}, "wand": {"_count": 1}, "Snatchers": {"_count": 1}, "inhabitants": {"_count": 1}, "goblins": {"_count": 1}, "inside": {"_count": 1}, "vault": {"_count": 1}, "dragon": {"_count": 1}, "golden": {"_count": 1}, "diadem": {"_count": 1}, "side": {"_count": 1}, "body": {"_count": 1}, "opening": {"_count": 1}, "residents": {"_count": 1}, "moment": {"_count": 1}, "Peverell": {"_count": 1}, "ring": {"_count": 1}, "Invisibility": {"_count": 1}, "trees": {"_count": 1}, "worlds": {"_count": 1}, "Imperiused": {"_count": 1}, "innocent": {"_count": 1}, "damage": {"_count": 1}}, "": {"_count": 366, ".": {"_count": 169}, "?": {"_count": 135}, "!": {"_count": 62}}, "strange": {"_count": 3, "and": {"_count": 1}, "smile": {"_count": 1}, "green": {"_count": 1}}, "he": {"_count": 947, "noticed": {"_count": 1}, "caught": {"_count": 2}, "walked": {"_count": 3}, "had": {"_count": 183}, "would": {"_count": 69}, "couldnt": {"_count": 9}, "should": {"_count": 8}, "took": {"_count": 2}, "said": {"_count": 7}, "parted": {"_count": 1}, "was": {"_count": 225}, "and": {"_count": 16}, "hadnt": {"_count": 6}, "didnt": {"_count": 18}, "wasnt": {"_count": 8}, "wanted": {"_count": 10}, "thought": {"_count": 11}, "prodded": {"_count": 1}, "might": {"_count": 23}, "went": {"_count": 2}, "only": {"_count": 1}, "will": {"_count": 6}, "could": {"_count": 72}, "felt": {"_count": 8}, "Hermione": {"_count": 1}, "looked": {"_count": 14}, "himself": {"_count": 3}, "realized": {"_count": 3}, "yearned": {"_count": 1}, "blocked": {"_count": 1}, "needed": {"_count": 7}, "knew": {"_count": 12}, "wouldnt": {"_count": 4}, "bullied": {"_count": 1}, "called": {"_count": 1}, "quickly": {"_count": 1}, "hardly": {"_count": 1}, "saw": {"_count": 9}, "got": {"_count": 2}, "hold": {"_count": 1}, "used": {"_count": 2}, "once": {"_count": 1}, "kept": {"_count": 7}, "never": {"_count": 4}, "Harry": {"_count": 1}, "did": {"_count": 23}, "worked": {"_count": 1}, "seemed": {"_count": 2}, "really": {"_count": 3}, "gave": {"_count": 2}, "ever": {"_count": 3}, "terrified": {"_count": 1}, "added": {"_count": 2}, "preferred": {"_count": 1}, "wondered": {"_count": 1}, "understood": {"_count": 1}, "received": {"_count": 1}, "ought": {"_count": 4}, "dropped": {"_count": 2}, "owed": {"_count": 1}, "cant": {"_count": 2}, "found": {"_count": 5}, "has": {"_count": 9}, "alone": {"_count": 3}, "retched": {"_count": 1}, "almost": {"_count": 2}, "touched": {"_count": 1}, "no": {"_count": 1}, "turned": {"_count": 1}, "Percy": {"_count": 1}, "is": {"_count": 3}, "fully": {"_count": 1}, "leaves": {"_count": 1}, "clapped": {"_count": 1}, "grunted": {"_count": 1}, "deserves": {"_count": 1}, "wants": {"_count": 2}, "loathed": {"_count": 1}, "ended": {"_count": 1}, "slipped": {"_count": 2}, "can": {"_count": 5}, "managed": {"_count": 2}, "poked": {"_count": 1}, "doubted": {"_count": 2}, "sent": {"_count": 1}, "tell": {"_count": 1}, "clearly": {"_count": 1}, "experienced": {"_count": 1}, "laughed": {"_count": 1}, "thinks": {"_count": 1}, "too": {"_count": 4}, "exists": {"_count": 2}, "Ron": {"_count": 1}, "must": {"_count": 11}, "or": {"_count": 1}, "recognized": {"_count": 2}, "staggered": {"_count": 1}, "sensed": {"_count": 1}, "heard": {"_count": 1}, "does": {"_count": 1}, "left": {"_count": 1}, "influences": {"_count": 1}, "came": {"_count": 3}, "feels": {"_count": 1}, "treasured": {"_count": 1}, "lost": {"_count": 1}, "owned": {"_count": 1}, "bought": {"_count": 1}, "need": {"_count": 1}, "reduced": {"_count": 1}, "refused": {"_count": 1}, "searched": {"_count": 1}, "wore": {"_count": 1}, "waved": {"_count": 1}, "trusted": {"_count": 1}, "join": {"_count": 1}, "liked": {"_count": 1}, "whispered": {"_count": 1}, "tried": {"_count": 1}, "created": {"_count": 1}, "threw": {"_count": 1}, "stopped": {"_count": 1}, "not": {"_count": 1}, "returned": {"_count": 1}, "now": {"_count": 1}, "died": {"_count": 1}, "still": {"_count": 1}, "dabbled": {"_count": 1}, "despised": {"_count": 1}, "actually": {"_count": 1}, "remembered": {"_count": 1}, "winced": {"_count": 1}, "resigned": {"_count": 1}, "believed": {"_count": 2}, "vanished": {"_count": 1}, "always": {"_count": 1}, "traveled": {"_count": 1}, "entered": {"_count": 1}, "made": {"_count": 1}, "shouted": {"_count": 1}, "both": {"_count": 1}, "keeps": {"_count": 1}, "lifted": {"_count": 1}, "forced": {"_count": 1}, "may": {"_count": 1}, "craved": {"_count": 1}}, "said": {"_count": 84, "Privet": {"_count": 1}, "Professor": {"_count": 4}, "quite": {"_count": 1}, "Hagrid": {"_count": 3}, "only": {"_count": 1}, "Harry": {"_count": 23}, "didnt": {"_count": 1}, "Hermione": {"_count": 7}, "Ron": {"_count": 6}, "Riddle": {"_count": 1}, "Dumbledore": {"_count": 9}, "Ginny": {"_count": 1}, "Mrs": {"_count": 1}, "Lupin": {"_count": 2}, "Black": {"_count": 1}, "Mr": {"_count": 4}, "Bagman": {"_count": 2}, "Moody": {"_count": 1}, "Sirius": {"_count": 3}, "George": {"_count": 2}, "Angelina": {"_count": 1}, "Rita": {"_count": 1}, "a": {"_count": 1}, "Malfoy": {"_count": 1}, "Slughorn": {"_count": 1}, "Fred": {"_count": 2}, "Scrimgeour": {"_count": 1}, "Krum": {"_count": 1}, "Aberforth": {"_count": 1}}, "day": {"_count": 27, "": {"_count": 13}, "we": {"_count": 1}, "during": {"_count": 1}, "Aunt": {"_count": 1}, "comes": {"_count": 1}, "though": {"_count": 1}, "I": {"_count": 1}, "nor": {"_count": 1}, "but": {"_count": 1}, "when": {"_count": 1}, "there": {"_count": 1}, "she": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "more": {"_count": 1}}, "there": {"_count": 99, "seemed": {"_count": 2}, "was": {"_count": 42}, "were": {"_count": 16}, "": {"_count": 2}, "would": {"_count": 6}, "used": {"_count": 1}, "might": {"_count": 4}, "has": {"_count": 1}, "ought": {"_count": 1}, "are": {"_count": 9}, "is": {"_count": 5}, "could": {"_count": 1}, "had": {"_count": 3}, "have": {"_count": 2}, "wont": {"_count": 1}, "will": {"_count": 1}, "really": {"_count": 1}, "intensely": {"_count": 1}}, "a": {"_count": 59, "couple": {"_count": 1}, "funny": {"_count": 1}, "Hover": {"_count": 1}, "girl": {"_count": 1}, "Seeker": {"_count": 1}, "monster": {"_count": 1}, "piece": {"_count": 1}, "whole": {"_count": 1}, "Sneakoscope": {"_count": 1}, "better": {"_count": 1}, "dash": {"_count": 1}, "chill": {"_count": 1}, "new": {"_count": 1}, "single": {"_count": 1}, "famous": {"_count": 1}, "man": {"_count": 1}, "brightly": {"_count": 1}, "great": {"_count": 2}, "number": {"_count": 1}, "midget": {"_count": 1}, "student": {"_count": 1}, "tent": {"_count": 1}, "tawny": {"_count": 1}, "soft": {"_count": 1}, "fourteenyear": {"_count": 1}, "dribble": {"_count": 1}, "female": {"_count": 1}, "lot": {"_count": 2}, "fullscale": {"_count": 1}, "Tornados": {"_count": 1}, "theoretical": {"_count": 1}, "certain": {"_count": 3}, "person": {"_count": 1}, "second": {"_count": 2}, "very": {"_count": 1}, "crime": {"_count": 1}, "guard": {"_count": 1}, "dream": {"_count": 1}, "busy": {"_count": 1}, "dormant": {"_count": 1}, "Muggleborn": {"_count": 1}, "Patronus": {"_count": 1}, "scowling": {"_count": 1}, "convicted": {"_count": 1}, "long": {"_count": 1}, "fierce": {"_count": 1}, "slightly": {"_count": 1}, "threat": {"_count": 1}, "full": {"_count": 1}, "Death": {"_count": 1}, "cloak": {"_count": 1}, "dark": {"_count": 1}, "fictional": {"_count": 1}, "circle": {"_count": 1}}, "man": {"_count": 8, "had": {"_count": 1}, "": {"_count": 2}, "chose": {"_count": 1}, "and": {"_count": 1}, "hes": {"_count": 1}, "in": {"_count": 2}}, "this": {"_count": 75, "was": {"_count": 22}, "boy": {"_count": 3}, "year": {"_count": 3}, "time": {"_count": 7}, "wasnt": {"_count": 2}, "September": {"_count": 1}, "umbrella": {"_count": 1}, "diary": {"_count": 1}, "unknown": {"_count": 1}, "dreadful": {"_count": 1}, "map": {"_count": 1}, "one": {"_count": 1}, "tournament": {"_count": 1}, "is": {"_count": 1}, "ball": {"_count": 1}, "hardly": {"_count": 1}, "news": {"_count": 2}, "shows": {"_count": 1}, "letter": {"_count": 1}, "matter": {"_count": 1}, "sort": {"_count": 1}, "mess": {"_count": 1}, "thrilling": {"_count": 1}, "could": {"_count": 1}, "liking": {"_count": 1}, "did": {"_count": 1}, "long": {"_count": 1}, "connection": {"_count": 1}, "information": {"_count": 1}, "trip": {"_count": 1}, "might": {"_count": 2}, "would": {"_count": 4}, "will": {"_count": 1}, "potion": {"_count": 1}, "jagged": {"_count": 1}, "Lord": {"_count": 1}, "woman": {"_count": 1}, "point": {"_count": 1}}, "would": {"_count": 69, "be": {"_count": 12}, "take": {"_count": 5}, "have": {"_count": 6}, "make": {"_count": 11}, "get": {"_count": 1}, "help": {"_count": 1}, "spread": {"_count": 1}, "subdue": {"_count": 1}, "probably": {"_count": 1}, "enable": {"_count": 2}, "pass": {"_count": 1}, "otherwise": {"_count": 1}, "interest": {"_count": 1}, "determine": {"_count": 1}, "require": {"_count": 1}, "happen": {"_count": 3}, "fit": {"_count": 1}, "not": {"_count": 2}, "he": {"_count": 1}, "surely": {"_count": 1}, "ensure": {"_count": 1}, "give": {"_count": 1}, "implant": {"_count": 1}, "do": {"_count": 1}, "come": {"_count": 1}, "tend": {"_count": 1}, "somehow": {"_count": 1}, "seem": {"_count": 1}, "put": {"_count": 1}, "destroy": {"_count": 1}, "deflect": {"_count": 1}, "paralyze": {"_count": 1}, "now": {"_count": 1}, "mean": {"_count": 1}, "lead": {"_count": 1}}, "morning": {"_count": 14, "": {"_count": 8}, "and": {"_count": 2}, "at": {"_count": 1}, "feeling": {"_count": 1}, "might": {"_count": 1}, "or": {"_count": 1}}, "afternoon": {"_count": 16, "and": {"_count": 1}, "": {"_count": 6}, "Harry": {"_count": 3}, "as": {"_count": 1}, "which": {"_count": 1}, "but": {"_count": 1}, "they": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}}, "made": {"_count": 59, "passersby": {"_count": 1}, "the": {"_count": 11}, "him": {"_count": 16}, "them": {"_count": 1}, "their": {"_count": 1}, "Harry": {"_count": 5}, "his": {"_count": 7}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "up": {"_count": 1}, "her": {"_count": 5}, "Neville": {"_count": 1}, "sense": {"_count": 1}, "everyone": {"_count": 1}, "several": {"_count": 1}, "you": {"_count": 1}, "Malfoy": {"_count": 1}, "it": {"_count": 1}, "great": {"_count": 1}, "Voldemort": {"_count": 1}}, "was": {"_count": 297, "": {"_count": 6}, "happening": {"_count": 1}, "Dedalus": {"_count": 1}, "where": {"_count": 3}, "shaped": {"_count": 1}, "the": {"_count": 18}, "never": {"_count": 2}, "possible": {"_count": 1}, "lying": {"_count": 1}, "searched": {"_count": 2}, "before": {"_count": 3}, "empty": {"_count": 1}, "going": {"_count": 2}, "both": {"_count": 2}, "Harry": {"_count": 1}, "why": {"_count": 3}, "Neville": {"_count": 1}, "waiting": {"_count": 1}, "a": {"_count": 12}, "whats": {"_count": 1}, "VoZ": {"_count": 1}, "spreading": {"_count": 2}, "always": {"_count": 1}, "very": {"_count": 2}, "what": {"_count": 6}, "nothing": {"_count": 2}, "making": {"_count": 5}, "almost": {"_count": 4}, "blowing": {"_count": 1}, "moving": {"_count": 4}, "cutting": {"_count": 1}, "worth": {"_count": 2}, "attacking": {"_count": 1}, "carrying": {"_count": 2}, "years": {"_count": 2}, "lurking": {"_count": 1}, "nagging": {"_count": 1}, "my": {"_count": 4}, "burning": {"_count": 1}, "its": {"_count": 1}, "half": {"_count": 1}, "about": {"_count": 2}, "no": {"_count": 4}, "obvious": {"_count": 1}, "completely": {"_count": 1}, "oozing": {"_count": 1}, "only": {"_count": 1}, "aiming": {"_count": 1}, "drowning": {"_count": 1}, "weighing": {"_count": 1}, "lowering": {"_count": 1}, "much": {"_count": 3}, "filtering": {"_count": 1}, "not": {"_count": 13}, "bothering": {"_count": 1}, "flooding": {"_count": 1}, "protruding": {"_count": 1}, "sending": {"_count": 1}, "now": {"_count": 2}, "emitting": {"_count": 2}, "louder": {"_count": 1}, "restraining": {"_count": 1}, "filling": {"_count": 1}, "contaminating": {"_count": 1}, "as": {"_count": 2}, "how": {"_count": 1}, "Hagrid": {"_count": 2}, "more": {"_count": 3}, "said": {"_count": 2}, "smoking": {"_count": 2}, "easy": {"_count": 1}, "his": {"_count": 6}, "most": {"_count": 2}, "certainly": {"_count": 3}, "wise": {"_count": 1}, "all": {"_count": 6}, "unbelievable": {"_count": 1}, "cornering": {"_count": 1}, "Hagrids": {"_count": 1}, "gradually": {"_count": 1}, "ages": {"_count": 1}, "with": {"_count": 1}, "nowhere": {"_count": 1}, "undoable": {"_count": 1}, "still": {"_count": 1}, "in": {"_count": 4}, "so": {"_count": 1}, "Winky": {"_count": 1}, "when": {"_count": 2}, "that": {"_count": 1}, "strangled": {"_count": 1}, "flat": {"_count": 1}, "Wormtail": {"_count": 1}, "perhaps": {"_count": 1}, "shaking": {"_count": 1}, "clear": {"_count": 1}, "vibrating": {"_count": 1}, "Sirius": {"_count": 1}, "drawing": {"_count": 1}, "starting": {"_count": 1}, "from": {"_count": 1}, "trailing": {"_count": 1}, "hiccuping": {"_count": 1}, "quite": {"_count": 2}, "off": {"_count": 1}, "it": {"_count": 1}, "luck": {"_count": 1}, "clearly": {"_count": 2}, "causing": {"_count": 1}, "removed": {"_count": 1}, "pretty": {"_count": 1}, "coming": {"_count": 1}, "labelled": {"_count": 1}, "tuned": {"_count": 1}, "nice": {"_count": 1}, "hundreds": {"_count": 1}, "out": {"_count": 2}, "headed": {"_count": 1}, "on": {"_count": 1}, "leaning": {"_count": 1}, "horrible": {"_count": 1}, "cold": {"_count": 1}, "slipping": {"_count": 1}, "pressing": {"_count": 1}, "locked": {"_count": 1}, "carried": {"_count": 1}, "keeping": {"_count": 1}, "perched": {"_count": 1}, "good": {"_count": 1}, "unfortunately": {"_count": 1}, "fun": {"_count": 1}, "sticking": {"_count": 1}, "Morfin": {"_count": 1}, "Tom": {"_count": 1}, "one": {"_count": 2}, "jarringly": {"_count": 1}, "jostling": {"_count": 1}, "pure": {"_count": 1}, "throwing": {"_count": 1}, "deserted": {"_count": 1}, "seen": {"_count": 1}, "was": {"_count": 1}, "once": {"_count": 1}, "there": {"_count": 2}, "bound": {"_count": 1}, "stupid": {"_count": 1}, "supposed": {"_count": 1}, "light": {"_count": 1}, "resolved": {"_count": 1}, "then": {"_count": 1}, "over": {"_count": 1}, "just": {"_count": 1}, "echoed": {"_count": 2}, "really": {"_count": 2}, "advisable": {"_count": 1}, "like": {"_count": 2}, "probably": {"_count": 1}, "later": {"_count": 1}, "bleedin": {"_count": 1}, "shockingly": {"_count": 1}, "and": {"_count": 1}, "creeping": {"_count": 1}, "sent": {"_count": 1}, "evidently": {"_count": 1}, "beyond": {"_count": 1}, "flecked": {"_count": 1}, "swallowed": {"_count": 1}, "for": {"_count": 1}, "rustling": {"_count": 1}, "Rons": {"_count": 1}, "fine": {"_count": 1}, "Diagon": {"_count": 1}, "because": {"_count": 1}, "impossible": {"_count": 1}, "foolish": {"_count": 1}, "screaming": {"_count": 1}, "left": {"_count": 1}, "hidden": {"_count": 1}, "pouring": {"_count": 1}}, "but": {"_count": 16, "its": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 1}, "theres": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "were": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 1}, "for": {"_count": 1}, "dont": {"_count": 1}, "one": {"_count": 1}, "he": {"_count": 1}, "just": {"_count": 1}}, "have": {"_count": 12, "been": {"_count": 4}, "looked": {"_count": 1}, "reached": {"_count": 1}, "cropped": {"_count": 1}, "captured": {"_count": 1}, "happened": {"_count": 1}, "flown": {"_count": 1}, "dogged": {"_count": 1}, "passed": {"_count": 1}}, "instead": {"_count": 3, "of": {"_count": 3}}, "even": {"_count": 21, "if": {"_count": 5}, "people": {"_count": 1}, "taunting": {"_count": 1}, "Lockhart": {"_count": 1}, "though": {"_count": 2}, "Fred": {"_count": 1}, "Scabbers": {"_count": 1}, "with": {"_count": 1}, "Moodys": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}, "Uncle": {"_count": 1}, "their": {"_count": 1}, "Snape": {"_count": 1}, "in": {"_count": 1}}, "might": {"_count": 38, "be": {"_count": 3}, "help": {"_count": 2}, "have": {"_count": 10}, "go": {"_count": 1}, "embarrass": {"_count": 1}, "make": {"_count": 2}, "interest": {"_count": 2}, "lead": {"_count": 2}, "enable": {"_count": 1}, "include": {"_count": 1}, "point": {"_count": 1}, "lighten": {"_count": 1}, "upset": {"_count": 1}, "cheer": {"_count": 1}, "mean": {"_count": 1}, "not": {"_count": 1}, "occur": {"_count": 1}, "cause": {"_count": 1}, "show": {"_count": 1}, "proclaim": {"_count": 1}, "wake": {"_count": 1}, "penetrate": {"_count": 1}, "work": {"_count": 1}}, "swept": {"_count": 2, "the": {"_count": 2}}, "are": {"_count": 14, "flying": {"_count": 1}, "yeh": {"_count": 1}, "worst": {"_count": 1}, "Muggle": {"_count": 1}, "used": {"_count": 1}, "you": {"_count": 2}, "happening": {"_count": 2}, "making": {"_count": 1}, "sometimes": {"_count": 1}, "supposed": {"_count": 1}, "really": {"_count": 1}, "now": {"_count": 1}}, "Professor": {"_count": 40, "McGonagall": {"_count": 7}, "Snape": {"_count": 7}, "Kettleburn": {"_count": 1}, "Lupins": {"_count": 1}, "Lupin": {"_count": 2}, "Dumbledore": {"_count": 3}, "Trelawney": {"_count": 7}, "Snapes": {"_count": 1}, "": {"_count": 2}, "GrubblyPlank": {"_count": 2}, "Hagrid": {"_count": 1}, "Umbridge": {"_count": 1}, "Sprout": {"_count": 1}, "Merrythought": {"_count": 2}, "said": {"_count": 1}, "Dumbledores": {"_count": 1}}, "whatever": {"_count": 6, "everyone": {"_count": 1}, "attacked": {"_count": 1}, "happens": {"_count": 2}, "you": {"_count": 1}, "might": {"_count": 1}}, "last": {"_count": 9, "night": {"_count": 1}, "match": {"_count": 1}, "one": {"_count": 2}, "Quidditch": {"_count": 1}, "bit": {"_count": 1}, "year": {"_count": 1}, "piece": {"_count": 1}, "horrific": {"_count": 1}}, "Lily": {"_count": 3, "and": {"_count": 1}, "had": {"_count": 1}, "Potter": {"_count": 1}}, "theyre": {"_count": 4, "dead": {"_count": 1}, "singing": {"_count": 1}, "angry": {"_count": 1}, "convinced": {"_count": 1}}, "little": {"_count": 11, "boy": {"_count": 1}, "bit": {"_count": 2}, "snag": {"_count": 1}, "Delacour": {"_count": 1}, "slut": {"_count": 1}, "scene": {"_count": 1}, "girl": {"_count": 1}, "golden": {"_count": 1}, "of": {"_count": 1}, "wizard": {"_count": 1}}, "when": {"_count": 30, "he": {"_count": 8}, "youre": {"_count": 1}, "Percy": {"_count": 1}, "no": {"_count": 1}, "thirteen": {"_count": 1}, "the": {"_count": 1}, "Voldemort": {"_count": 1}, "James": {"_count": 1}, "left": {"_count": 1}, "I": {"_count": 2}, "Potter": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 2}, "we": {"_count": 3}, "she": {"_count": 1}, "shaken": {"_count": 1}, "at": {"_count": 1}, "my": {"_count": 1}}, "until": {"_count": 5, "hes": {"_count": 1}, "further": {"_count": 1}, "sixth": {"_count": 1}, "now": {"_count": 1}, "his": {"_count": 1}}, "motorcycle": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 3, "": {"_count": 1}, "youve": {"_count": 1}, "we": {"_count": 1}}, "scar": {"_count": 7, "forever": {"_count": 1}, "": {"_count": 2}, "sometimes": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 1}, "like": {"_count": 1}}, "is": {"_count": 55, "a": {"_count": 1}, "": {"_count": 4}, "he": {"_count": 3}, "his": {"_count": 1}, "out": {"_count": 1}, "true": {"_count": 2}, "needed": {"_count": 1}, "the": {"_count": 4}, "to": {"_count": 5}, "who": {"_count": 1}, "we": {"_count": 1}, "all": {"_count": 2}, "what": {"_count": 2}, "as": {"_count": 1}, "troubling": {"_count": 1}, "they": {"_count": 1}, "not": {"_count": 1}, "why": {"_count": 2}, "no": {"_count": 1}, "very": {"_count": 1}, "kept": {"_count": 1}, "at": {"_count": 1}, "neither": {"_count": 2}, "will": {"_count": 1}, "crucial": {"_count": 1}, "my": {"_count": 1}, "impossible": {"_count": 1}, "weird": {"_count": 1}, "an": {"_count": 1}, "untarnished": {"_count": 1}, "ready": {"_count": 1}, "controlled": {"_count": 1}, "so": {"_count": 1}, "necessary": {"_count": 1}, "most": {"_count": 1}, "Harry": {"_count": 1}, "beyond": {"_count": 1}, "your": {"_count": 1}}, "usually": {"_count": 5, "shone": {"_count": 1}, "covered": {"_count": 1}, "produces": {"_count": 1}, "littered": {"_count": 1}, "guarded": {"_count": 1}}, "Privet": {"_count": 3, "Drive": {"_count": 3}}, "at": {"_count": 17, "this": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 2}, "Hogwarts": {"_count": 1}, "once": {"_count": 3}, "all": {"_count": 3}, "last": {"_count": 1}, "that": {"_count": 2}, "seven": {"_count": 1}, "times": {"_count": 1}, "first": {"_count": 1}}, "fateful": {"_count": 1, "news": {"_count": 1}}, "another": {"_count": 3, "boy": {"_count": 1}, "goal": {"_count": 1}, "shared": {"_count": 1}}, "Harry": {"_count": 273, "needed": {"_count": 3}, "and": {"_count": 13}, "had": {"_count": 44}, "didnt": {"_count": 1}, "could": {"_count": 22}, "": {"_count": 2}, "Potters": {"_count": 1}, "thought": {"_count": 4}, "really": {"_count": 1}, "opened": {"_count": 1}, "now": {"_count": 3}, "wasnt": {"_count": 1}, "remembered": {"_count": 1}, "kept": {"_count": 1}, "was": {"_count": 41}, "Ron": {"_count": 9}, "realized": {"_count": 1}, "Potter": {"_count": 10}, "is": {"_count": 3}, "felt": {"_count": 5}, "murmured": {"_count": 1}, "attacked": {"_count": 1}, "muttered": {"_count": 1}, "noticed": {"_count": 1}, "barely": {"_count": 2}, "never": {"_count": 1}, "missed": {"_count": 1}, "might": {"_count": 2}, "played": {"_count": 1}, "hadnt": {"_count": 3}, "suddenly": {"_count": 1}, "heard": {"_count": 1}, "should": {"_count": 5}, "couldnt": {"_count": 2}, "climbed": {"_count": 1}, "recognized": {"_count": 3}, "who": {"_count": 1}, "walked": {"_count": 1}, "knew": {"_count": 8}, "finally": {"_count": 1}, "supposed": {"_count": 1}, "wanted": {"_count": 1}, "would": {"_count": 8}, "managed": {"_count": 1}, "actually": {"_count": 4}, "alone": {"_count": 1}, "did": {"_count": 5}, "fell": {"_count": 1}, "started": {"_count": 1}, "packed": {"_count": 1}, "told": {"_count": 1}, "let": {"_count": 1}, "will": {"_count": 1}, "gets": {"_count": 1}, "saw": {"_count": 2}, "stared": {"_count": 1}, "doubted": {"_count": 1}, "found": {"_count": 2}, "gaped": {"_count": 1}, "jumped": {"_count": 2}, "suspected": {"_count": 1}, "guessed": {"_count": 1}, "can": {"_count": 1}, "tried": {"_count": 1}, "frequently": {"_count": 1}, "seemed": {"_count": 1}, "though": {"_count": 1}, "has": {"_count": 1}, "turns": {"_count": 1}, "returned": {"_count": 1}, "reacted": {"_count": 1}, "he": {"_count": 1}, "dyeh": {"_count": 1}, "said": {"_count": 2}, "understood": {"_count": 1}, "almost": {"_count": 1}, "got": {"_count": 1}, "hoped": {"_count": 1}, "came": {"_count": 1}, "owns": {"_count": 1}, "associated": {"_count": 1}, "but": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "fully": {"_count": 1}, "staggered": {"_count": 1}, "how": {"_count": 1}, "she": {"_count": 1}, "already": {"_count": 1}, "took": {"_count": 1}}, "way": {"_count": 20, "all": {"_count": 1}, "": {"_count": 7}, "she": {"_count": 1}, "about": {"_count": 1}, "without": {"_count": 1}, "if": {"_count": 1}, "ter": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 2}, "myself": {"_count": 1}, "these": {"_count": 1}, "or": {"_count": 1}, "screamed": {"_count": 1}}, "lay": {"_count": 6, "smoothly": {"_count": 1}, "thick": {"_count": 1}, "scattered": {"_count": 2}, "halfsubmerged": {"_count": 1}, "upon": {"_count": 1}}, "Dudley": {"_count": 15, "looked": {"_count": 2}, "and": {"_count": 2}, "had": {"_count": 3}, "only": {"_count": 1}, "was": {"_count": 4}, "kept": {"_count": 1}, "learning": {"_count": 1}, "appeared": {"_count": 1}}, "popkin": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 39, "right": {"_count": 1}, "the": {"_count": 7}, "pupils": {"_count": 1}, "of": {"_count": 5}, "seemed": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 3}, "danger": {"_count": 1}, "by": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 1}, "those": {"_count": 1}, "along": {"_count": 1}, "just": {"_count": 1}, "family": {"_count": 1}, "your": {"_count": 1}, "was": {"_count": 2}, "thought": {"_count": 1}, "boys": {"_count": 1}, "reason": {"_count": 1}, "these": {"_count": 1}, "day": {"_count": 1}, "had": {"_count": 1}}, "moment": {"_count": 59, "the": {"_count": 7}, "Uncle": {"_count": 2}, "Hagrid": {"_count": 1}, "a": {"_count": 3}, "on": {"_count": 3}, "Neville": {"_count": 1}, "and": {"_count": 4}, "Madam": {"_count": 1}, "there": {"_count": 7}, "": {"_count": 3}, "Hedwig": {"_count": 1}, "which": {"_count": 2}, "Harry": {"_count": 3}, "Mrs": {"_count": 1}, "Snape": {"_count": 1}, "Crookshanks": {"_count": 1}, "another": {"_count": 1}, "to": {"_count": 2}, "however": {"_count": 1}, "carrying": {"_count": 1}, "meant": {"_count": 1}, "peered": {"_count": 1}, "could": {"_count": 1}, "determined": {"_count": 1}, "so": {"_count": 1}, "Dobby": {"_count": 1}, "they": {"_count": 1}, "something": {"_count": 1}, "that": {"_count": 1}, "Hermione": {"_count": 1}, "of": {"_count": 1}, "testing": {"_count": 1}, "he": {"_count": 1}}, "Mrs": {"_count": 19, "Figg": {"_count": 1}, "Weasley": {"_count": 15}, "Longbottom": {"_count": 1}, "Cole": {"_count": 2}}, "couldnt": {"_count": 1, "understand": {"_count": 1}}, "if": {"_count": 53, "he": {"_count": 13}, "Im": {"_count": 1}, "you": {"_count": 7}, "we": {"_count": 3}, "they": {"_count": 3}, "the": {"_count": 2}, "I": {"_count": 5}, "it": {"_count": 3}, "Cedric": {"_count": 1}, "Potter": {"_count": 1}, "Krum": {"_count": 1}, "training": {"_count": 1}, "there": {"_count": 1}, "Snape": {"_count": 1}, "only": {"_count": 1}, "that": {"_count": 1}, "anyone": {"_count": 1}, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}, "Goyle": {"_count": 1}, "a": {"_count": 1}, "she": {"_count": 1}, "presented": {"_count": 1}, "this": {"_count": 1}}, "cupboard": {"_count": 3, "from": {"_count": 1}, "off": {"_count": 1}, "should": {"_count": 1}}, "horrible": {"_count": 5, "scar": {"_count": 1}, "Skeeter": {"_count": 1}, "wide": {"_count": 1}, "conversation": {"_count": 1}, "sensation": {"_count": 1}}, "wasnt": {"_count": 15, "school": {"_count": 1}, "my": {"_count": 1}, "pink": {"_count": 1}, "all": {"_count": 1}, "why": {"_count": 1}, "a": {"_count": 2}, "Harrys": {"_count": 1}, "right": {"_count": 1}, "really": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "skill": {"_count": 1}, "enough": {"_count": 1}}, "it": {"_count": 312, "wasnt": {"_count": 3}, "was": {"_count": 152}, "swung": {"_count": 1}, "happened": {"_count": 1}, "reflected": {"_count": 1}, "struck": {"_count": 1}, "had": {"_count": 22}, "is": {"_count": 19}, "resembled": {"_count": 1}, "would": {"_count": 19}, "passed": {"_count": 1}, "now": {"_count": 1}, "wont": {"_count": 1}, "did": {"_count": 1}, "bounced": {"_count": 1}, "matters": {"_count": 2}, "should": {"_count": 1}, "has": {"_count": 1}, "kept": {"_count": 1}, "looked": {"_count": 10}, "requires": {"_count": 1}, "distracted": {"_count": 1}, "smelled": {"_count": 1}, "needs": {"_count": 1}, "dented": {"_count": 1}, "turned": {"_count": 1}, "fainted": {"_count": 1}, "ripped": {"_count": 1}, "soared": {"_count": 2}, "might": {"_count": 4}, "covered": {"_count": 2}, "sounded": {"_count": 2}, "slopped": {"_count": 1}, "said": {"_count": 2}, "merely": {"_count": 1}, "therefore": {"_count": 1}, "stuck": {"_count": 1}, "took": {"_count": 1}, "blasted": {"_count": 1}, "came": {"_count": 1}, "flashed": {"_count": 1}, "became": {"_count": 3}, "stood": {"_count": 1}, "caught": {"_count": 1}, "may": {"_count": 1}, "concerns": {"_count": 1}, "cannot": {"_count": 1}, "glowed": {"_count": 1}, "whipped": {"_count": 1}, "wouldnt": {"_count": 1}, "removed": {"_count": 1}, "hadnt": {"_count": 1}, "seemed": {"_count": 2}, "wobbled": {"_count": 1}, "carried": {"_count": 1}, "will": {"_count": 3}, "drowned": {"_count": 1}, "occurred": {"_count": 1}, "extended": {"_count": 1}, "healed": {"_count": 1}, "could": {"_count": 3}, "hurt": {"_count": 1}, "must": {"_count": 4}, "then": {"_count": 1}, "felt": {"_count": 1}, "ought": {"_count": 1}, "worked": {"_count": 1}, "gets": {"_count": 1}, "happens": {"_count": 1}, "broke": {"_count": 1}, "contained": {"_count": 1}, "can": {"_count": 1}, "completed": {"_count": 1}, "swelled": {"_count": 1}, "slipped": {"_count": 1}}, "car": {"_count": 4, "crash": {"_count": 1}, "to": {"_count": 1}, "five": {"_count": 1}, "backfire": {"_count": 1}}, "strangers": {"_count": 1, "in": {"_count": 1}}, "Dudleys": {"_count": 1, "gang": {"_count": 1}}, "odd": {"_count": 3, "Harry": {"_count": 1}, "feeling": {"_count": 1}, "mechanical": {"_count": 1}}, "tasted": {"_count": 1, "as": {"_count": 1}}, "looked": {"_count": 30, "like": {"_count": 8}, "as": {"_count": 10}, "horribly": {"_count": 2}, "quite": {"_count": 1}, "suspiciously": {"_count": 1}, "all": {"_count": 1}, "less": {"_count": 1}, "to": {"_count": 1}, "something": {"_count": 1}, "not": {"_count": 1}, "unkempt": {"_count": 1}, "very": {"_count": 1}, "so": {"_count": 1}}, "letter": {"_count": 4, "he": {"_count": 1}, "than": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}}, "dangerous": {"_count": 2, "nonsense": {"_count": 1}, "how": {"_count": 1}}, "wouldnt": {"_count": 4, "fit": {"_count": 1}, "open": {"_count": 1}, "do": {"_count": 1}, "really": {"_count": 1}}, "room": {"_count": 9, "": {"_count": 2}, "you": {"_count": 1}, "come": {"_count": 1}, "full": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "with": {"_count": 1}, "was": {"_count": 1}}, "meant": {"_count": 14, "theyd": {"_count": 1}, "yes": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "Wormtail": {"_count": 1}, "Grawp": {"_count": 1}, "": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 2}, "to": {"_count": 1}, "light": {"_count": 1}}, "their": {"_count": 34, "very": {"_count": 1}, "sudden": {"_count": 1}, "heads": {"_count": 3}, "exams": {"_count": 1}, "Seekers": {"_count": 1}, "best": {"_count": 1}, "faces": {"_count": 2}, "robes": {"_count": 1}, "bulk": {"_count": 1}, "letters": {"_count": 1}, "lives": {"_count": 1}, "vivid": {"_count": 1}, "burden": {"_count": 1}, "absence": {"_count": 1}, "wands": {"_count": 1}, "families": {"_count": 2}, "conversations": {"_count": 1}, "mother": {"_count": 1}, "Captain": {"_count": 1}, "quarry": {"_count": 1}, "lifes": {"_count": 1}, "masters": {"_count": 1}, "next": {"_count": 1}, "owners": {"_count": 1}, "living": {"_count": 1}, "safety": {"_count": 1}, "store": {"_count": 1}, "plan": {"_count": 1}, "appearance": {"_count": 1}, "fellows": {"_count": 1}}, "no": {"_count": 23, "one": {"_count": 6}, "": {"_count": 1}, "magic": {"_count": 1}, "Malfoys": {"_count": 1}, "ones": {"_count": 2}, "harm": {"_count": 1}, "student": {"_count": 1}, "way": {"_count": 1}, "underage": {"_count": 2}, "Muggles": {"_count": 1}, "sound": {"_count": 1}, "copy": {"_count": 1}, "normal": {"_count": 1}, "longer": {"_count": 1}, "Wizarding": {"_count": 1}, "golden": {"_count": 1}}, "started": {"_count": 1, "near": {"_count": 1}}, "hed": {"_count": 29, "be": {"_count": 4}, "brought": {"_count": 1}, "somehow": {"_count": 1}, "already": {"_count": 1}, "have": {"_count": 1}, "been": {"_count": 5}, "walked": {"_count": 1}, "got": {"_count": 1}, "gotten": {"_count": 1}, "worry": {"_count": 1}, "rather": {"_count": 1}, "left": {"_count": 2}, "pretended": {"_count": 1}, "passed": {"_count": 1}, "done": {"_count": 2}, "gone": {"_count": 1}, "smashed": {"_count": 1}, "kill": {"_count": 1}, "made": {"_count": 1}, "known": {"_count": 1}}, "funny": {"_count": 3, "crunching": {"_count": 1}, "clicking": {"_count": 1}, "old": {"_count": 1}}, "his": {"_count": 117, "head": {"_count": 5}, "broom": {"_count": 1}, "nose": {"_count": 3}, "feet": {"_count": 4}, "whole": {"_count": 2}, "wife": {"_count": 2}, "parents": {"_count": 3}, "photographic": {"_count": 1}, "neck": {"_count": 1}, "legs": {"_count": 3}, "glasses": {"_count": 3}, "chances": {"_count": 1}, "place": {"_count": 1}, "time": {"_count": 1}, "servants": {"_count": 1}, "wasnt": {"_count": 1}, "support": {"_count": 1}, "poundage": {"_count": 1}, "uncle": {"_count": 2}, "ruff": {"_count": 1}, "smile": {"_count": 1}, "ears": {"_count": 1}, "old": {"_count": 1}, "robes": {"_count": 1}, "cushion": {"_count": 1}, "voice": {"_count": 3}, "father": {"_count": 7}, "scars": {"_count": 1}, "eyes": {"_count": 2}, "scar": {"_count": 2}, "insistence": {"_count": 1}, "mind": {"_count": 1}, "face": {"_count": 3}, "Tshirt": {"_count": 1}, "batty": {"_count": 1}, "massive": {"_count": 1}, "boss": {"_count": 1}, "part": {"_count": 1}, "return": {"_count": 1}, "poster": {"_count": 1}, "heart": {"_count": 1}, "hand": {"_count": 2}, "pencillike": {"_count": 1}, "knees": {"_count": 1}, "memory": {"_count": 1}, "insides": {"_count": 2}, "first": {"_count": 1}, "bad": {"_count": 1}, "waist": {"_count": 1}, "scope": {"_count": 1}, "toes": {"_count": 1}, "slipperclad": {"_count": 1}, "life": {"_count": 2}, "gaze": {"_count": 1}, "hunch": {"_count": 1}, "great": {"_count": 2}, "team": {"_count": 1}, "feelings": {"_count": 1}, "next": {"_count": 1}, "fathers": {"_count": 1}, "reputation": {"_count": 1}, "tongue": {"_count": 1}, "flailing": {"_count": 1}, "lips": {"_count": 1}, "anger": {"_count": 2}, "fingertips": {"_count": 1}, "inexpert": {"_count": 1}, "chair": {"_count": 1}, "dead": {"_count": 1}, "greatest": {"_count": 1}, "early": {"_count": 1}, "future": {"_count": 1}, "closest": {"_count": 1}, "attitude": {"_count": 1}, "quarry": {"_count": 1}, "admirers": {"_count": 1}, "death": {"_count": 1}, "mouth": {"_count": 1}, "theory": {"_count": 1}, "distaste": {"_count": 1}, "Horcrux": {"_count": 1}, "wand": {"_count": 1}}, "you": {"_count": 246, "leave": {"_count": 2}, "have": {"_count": 30}, "nneed": {"_count": 1}, "should": {"_count": 5}, "had": {"_count": 16}, "Filch": {"_count": 1}, "wouldnt": {"_count": 1}, "didnt": {"_count": 3}, "remain": {"_count": 2}, "do": {"_count": 4}, "": {"_count": 5}, "can": {"_count": 9}, "could": {"_count": 5}, "two": {"_count": 1}, "were": {"_count": 21}, "a": {"_count": 1}, "belong": {"_count": 1}, "send": {"_count": 1}, "approve": {"_count": 1}, "find": {"_count": 1}, "complete": {"_count": 1}, "bear": {"_count": 1}, "Ron": {"_count": 2}, "ever": {"_count": 1}, "will": {"_count": 9}, "are": {"_count": 36}, "dont": {"_count": 3}, "mention": {"_count": 2}, "lot": {"_count": 2}, "cant": {"_count": 2}, "would": {"_count": 9}, "performed": {"_count": 1}, "broke": {"_count": 1}, "understand": {"_count": 3}, "shouted": {"_count": 1}, "all": {"_count": 1}, "brought": {"_count": 1}, "alone": {"_count": 1}, "prove": {"_count": 1}, "wanted": {"_count": 2}, "seem": {"_count": 1}, "achieved": {"_count": 1}, "know": {"_count": 6}, "sort": {"_count": 1}, "might": {"_count": 1}, "go": {"_count": 1}, "live": {"_count": 1}, "pathetic": {"_count": 1}, "felt": {"_count": 1}, "still": {"_count": 1}, "knew": {"_count": 1}, "possess": {"_count": 1}, "allow": {"_count": 1}, "and": {"_count": 3}, "yourself": {"_count": 1}, "take": {"_count": 1}, "must": {"_count": 2}, "need": {"_count": 1}, "particularly": {"_count": 1}, "get": {"_count": 1}, "really": {"_count": 1}, "ought": {"_count": 1}, "also": {"_count": 1}, "interfered": {"_count": 1}, "cherish": {"_count": 1}, "met": {"_count": 1}, "put": {"_count": 1}, "returned": {"_count": 1}, "permit": {"_count": 1}, "consider": {"_count": 1}, "even": {"_count": 1}, "purchased": {"_count": 1}, "deserve": {"_count": 1}, "suspect": {"_count": 1}, "obey": {"_count": 1}, "Fenrir": {"_count": 1}, "did": {"_count": 1}, "thought": {"_count": 1}, "Britons": {"_count": 1}, "dread": {"_count": 1}, "believe": {"_count": 1}, "continue": {"_count": 1}, "already": {"_count": 1}, "tried": {"_count": 1}, "too": {"_count": 1}, "give": {"_count": 1}, "crouched": {"_count": 1}}, "tea": {"_count": 1, "then": {"_count": 1}}, "sounded": {"_count": 13, "like": {"_count": 5}, "to": {"_count": 1}, "shrill": {"_count": 1}, "very": {"_count": 1}, "uncannily": {"_count": 1}, "horribly": {"_count": 1}, "as": {"_count": 1}, "almost": {"_count": 1}, "agonizing": {"_count": 1}}, "reminds": {"_count": 2, "me": {"_count": 2}}, "rubbish": {"_count": 4, "said": {"_count": 2}, "Rita": {"_count": 1}, "I": {"_count": 1}}, "and": {"_count": 19, "disappeared": {"_count": 1}, "well": {"_count": 1}, "a": {"_count": 1}, "no": {"_count": 1}, "the": {"_count": 3}, "not": {"_count": 1}, "was": {"_count": 1}, "told": {"_count": 1}, "inviting": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "when": {"_count": 1}, "I": {"_count": 1}, "second": {"_count": 1}, "then": {"_count": 1}, "saw": {"_count": 1}, "he": {"_count": 1}}, "that": {"_count": 14, "school": {"_count": 1}, "was": {"_count": 2}, "thing": {"_count": 3}, "broom": {"_count": 1}, "elf": {"_count": 1}, "means": {"_count": 1}, "gets": {"_count": 1}, "would": {"_count": 1}, "memory": {"_count": 1}, "little": {"_count": 1}, "diary": {"_count": 1}}, "school": {"_count": 4, "and": {"_count": 1}, "food": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "Potter": {"_count": 20, "at": {"_count": 1}, "is": {"_count": 2}, "has": {"_count": 3}, "said": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "wants": {"_count": 1}, "might": {"_count": 2}, "she": {"_count": 1}, "boy": {"_count": 1}, "you": {"_count": 1}, "had": {"_count": 1}, "survived": {"_count": 1}, "will": {"_count": 1}, "was": {"_count": 1}}, "sad": {"_count": 1, "knew": {"_count": 1}}, "mark": {"_count": 3, "on": {"_count": 1}, "upon": {"_count": 1}, "the": {"_count": 1}}, "night": {"_count": 61, "he": {"_count": 3}, "": {"_count": 20}, "they": {"_count": 2}, "you": {"_count": 1}, "except": {"_count": 1}, "was": {"_count": 2}, "knew": {"_count": 1}, "last": {"_count": 1}, "the": {"_count": 1}, "Wormtail": {"_count": 2}, "in": {"_count": 4}, "explaining": {"_count": 1}, "Harry": {"_count": 4}, "talking": {"_count": 1}, "seemed": {"_count": 2}, "when": {"_count": 2}, "and": {"_count": 3}, "his": {"_count": 1}, "after": {"_count": 2}, "it": {"_count": 2}, "daringly": {"_count": 1}, "of": {"_count": 1}, "so": {"_count": 1}, "Voldemort": {"_count": 1}, "which": {"_count": 1}}, "had": {"_count": 220, "ever": {"_count": 1}, "just": {"_count": 9}, "been": {"_count": 40}, "happened": {"_count": 13}, "passed": {"_count": 2}, "replaced": {"_count": 1}, "a": {"_count": 4}, "killed": {"_count": 2}, "rolled": {"_count": 1}, "turned": {"_count": 3}, "dripped": {"_count": 1}, "never": {"_count": 2}, "spoken": {"_count": 1}, "begun": {"_count": 1}, "left": {"_count": 1}, "dropped": {"_count": 1}, "covered": {"_count": 1}, "shed": {"_count": 1}, "followed": {"_count": 1}, "stated": {"_count": 1}, "decayed": {"_count": 1}, "lodged": {"_count": 1}, "appeared": {"_count": 6}, "rekindled": {"_count": 1}, "descended": {"_count": 1}, "started": {"_count": 1}, "disposed": {"_count": 1}, "delivered": {"_count": 1}, "awoken": {"_count": 2}, "three": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 2}, "lit": {"_count": 1}, "filled": {"_count": 3}, "pulled": {"_count": 1}, "not": {"_count": 3}, "supplied": {"_count": 1}, "flared": {"_count": 3}, "encircled": {"_count": 1}, "buzzed": {"_count": 1}, "haunted": {"_count": 1}, "almost": {"_count": 2}, "revived": {"_count": 1}, "emerged": {"_count": 1}, "blasted": {"_count": 1}, "plagued": {"_count": 1}, "settled": {"_count": 1}, "spilled": {"_count": 1}, "developed": {"_count": 1}, "tried": {"_count": 1}, "attached": {"_count": 1}, "overwhelmed": {"_count": 1}, "stopped": {"_count": 1}, "nothing": {"_count": 7}, "by": {"_count": 1}, "served": {"_count": 1}, "already": {"_count": 1}, "flown": {"_count": 1}, "sprouted": {"_count": 1}, "fangs": {"_count": 1}, "damaged": {"_count": 1}, "changed": {"_count": 1}, "occurred": {"_count": 2}, "once": {"_count": 4}, "spread": {"_count": 1}, "he": {"_count": 1}, "spun": {"_count": 1}, "caused": {"_count": 3}, "burst": {"_count": 2}, "subsided": {"_count": 1}, "elapsed": {"_count": 2}, "resulted": {"_count": 1}, "pressed": {"_count": 1}, "slunk": {"_count": 1}, "I": {"_count": 1}, "betrayed": {"_count": 1}, "lain": {"_count": 1}, "cracked": {"_count": 1}, "for": {"_count": 1}, "certainly": {"_count": 2}, "won": {"_count": 1}, "now": {"_count": 2}, "to": {"_count": 2}, "little": {"_count": 1}, "anybody": {"_count": 1}, "bitten": {"_count": 1}, "recently": {"_count": 1}, "taught": {"_count": 1}, "become": {"_count": 1}, "long": {"_count": 1}, "altered": {"_count": 1}, "taken": {"_count": 4}, "done": {"_count": 1}, "dogged": {"_count": 1}, "possessed": {"_count": 1}, "made": {"_count": 2}, "so": {"_count": 1}, "rushed": {"_count": 1}, "actually": {"_count": 1}, "suffered": {"_count": 1}, "survived": {"_count": 1}, "lived": {"_count": 1}, "the": {"_count": 1}, "stirred": {"_count": 1}, "forced": {"_count": 1}, "come": {"_count": 4}, "led": {"_count": 1}, "belonged": {"_count": 1}, "seemed": {"_count": 1}, "riddled": {"_count": 1}, "eluded": {"_count": 1}, "claimed": {"_count": 1}, "sailed": {"_count": 1}, "recorded": {"_count": 1}, "escaped": {"_count": 1}}, "ridiculous": {"_count": 3, "haircut": {"_count": 1}, "Grim": {"_count": 1}, "thing": {"_count": 1}}, "Hagrid": {"_count": 43, "was": {"_count": 11}, "sat": {"_count": 1}, "and": {"_count": 2}, "didnt": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 8}, "would": {"_count": 2}, "has": {"_count": 1}, "couldnt": {"_count": 2}, "thought": {"_count": 2}, "will": {"_count": 1}, "wouldnt": {"_count": 3}, "is": {"_count": 1}, "did": {"_count": 2}, "wasnt": {"_count": 1}, "knew": {"_count": 1}, "never": {"_count": 1}, "might": {"_count": 1}, "must": {"_count": 1}}, "ter": {"_count": 3, "anyone": {"_count": 2}, "finish": {"_count": 1}}, "people": {"_count": 15, "liked": {"_count": 1}, "would": {"_count": 3}, "were": {"_count": 1}, "born": {"_count": 1}, "around": {"_count": 1}, "have": {"_count": 1}, "at": {"_count": 1}, "need": {"_count": 1}, "in": {"_count": 1}, "really": {"_count": 1}, "knew": {"_count": 1}, "slipped": {"_count": 1}, "had": {"_count": 1}}, "theres": {"_count": 5, "still": {"_count": 1}, "Lupin": {"_count": 1}, "someone": {"_count": 1}, "nothing": {"_count": 1}, "probably": {"_count": 1}}, "led": {"_count": 27, "up": {"_count": 2}, "somewhere": {"_count": 1}, "into": {"_count": 2}, "from": {"_count": 1}, "to": {"_count": 12}, "upstairs": {"_count": 1}, "toward": {"_count": 1}, "back": {"_count": 1}, "off": {"_count": 3}, "backstage": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "sold": {"_count": 1, "spell": {"_count": 1}}, "only": {"_count": 19, "he": {"_count": 2}, "Harry": {"_count": 4}, "his": {"_count": 1}, "Ginny": {"_count": 1}, "one": {"_count": 2}, "got": {"_count": 1}, "proved": {"_count": 1}, "the": {"_count": 3}, "three": {"_count": 1}, "knew": {"_count": 1}, "fragments": {"_count": 1}, "exist": {"_count": 1}}, "nervous": {"_count": 1, "": {"_count": 1}}, "twisted": {"_count": 3, "and": {"_count": 2}, "themselves": {"_count": 1}}, "towered": {"_count": 2, "over": {"_count": 1}, "to": {"_count": 1}}, "should": {"_count": 6, "be": {"_count": 3}, "have": {"_count": 1}, "stop": {"_count": 1}, "only": {"_count": 1}}, "theyd": {"_count": 5, "be": {"_count": 2}, "avoided": {"_count": 1}, "lit": {"_count": 1}, "gone": {"_count": 1}}, "changed": {"_count": 2, "color": {"_count": 1}, "to": {"_count": 1}}, "level": {"_count": 1, "": {"_count": 1}}, "held": {"_count": 2, "a": {"_count": 1}, "about": {"_count": 1}}, "chooses": {"_count": 1, "the": {"_count": 1}}, "did": {"_count": 16, "it": {"_count": 3}, "": {"_count": 1}, "not": {"_count": 9}, "he": {"_count": 1}, "she": {"_count": 1}, "justice": {"_count": 1}}, "wand": {"_count": 6, "was": {"_count": 1}, "": {"_count": 3}, "away": {"_count": 1}, "abnormally": {"_count": 1}}, "one": {"_count": 53, "": {"_count": 6}, "behind": {"_count": 1}, "does": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}, "Malfoy": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 9}, "nor": {"_count": 1}, "said": {"_count": 3}, "day": {"_count": 2}, "reminding": {"_count": 1}, "is": {"_count": 1}, "might": {"_count": 1}, "moment": {"_count": 1}, "doesnt": {"_count": 1}, "or": {"_count": 1}, "did": {"_count": 1}, "boy": {"_count": 1}, "on": {"_count": 1}, "like": {"_count": 1}, "its": {"_count": 1}, "plus": {"_count": 1}, "lied": {"_count": 1}, "eye": {"_count": 2}, "didnt": {"_count": 1}, "Oh": {"_count": 1}, "out": {"_count": 1}, "safe": {"_count": 2}, "ladies": {"_count": 1}, "had": {"_count": 1}, "over": {"_count": 1}, "she": {"_count": 1}, "isnt": {"_count": 1}, "last": {"_count": 1}}, "Aunt": {"_count": 4, "Petunia": {"_count": 4}}, "ruddy": {"_count": 1, "tail": {"_count": 1}}, "Hedwig": {"_count": 5, "was": {"_count": 3}, "would": {"_count": 1}, "landed": {"_count": 1}}, "left": {"_count": 3, "at": {"_count": 1}, "her": {"_count": 1}, "craters": {"_count": 1}}, "barrier": {"_count": 2, "and": {"_count": 1}, "so": {"_count": 1}}, "blackhaired": {"_count": 1, "boy": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "on": {"_count": 15, "his": {"_count": 1}, "": {"_count": 1}, "your": {"_count": 4}, "said": {"_count": 1}, "the": {"_count": 6}, "this": {"_count": 1}, "no": {"_count": 1}}, "nothing": {"_count": 14, "would": {"_count": 2}, "had": {"_count": 1}, "out": {"_count": 1}, "could": {"_count": 3}, "not": {"_count": 2}, "worse": {"_count": 1}, "seemed": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}, "we": {"_count": 1}}, "Dumbledore": {"_count": 102, "s": {"_count": 4}, "might": {"_count": 5}, "had": {"_count": 29}, "was": {"_count": 14}, "could": {"_count": 3}, "trusts": {"_count": 2}, "would": {"_count": 11}, "": {"_count": 1}, "may": {"_count": 1}, "is": {"_count": 3}, "will": {"_count": 1}, "looked": {"_count": 1}, "for": {"_count": 1}, "understood": {"_count": 1}, "did": {"_count": 2}, "wanted": {"_count": 2}, "has": {"_count": 1}, "valued": {"_count": 1}, "drank": {"_count": 1}, "reached": {"_count": 1}, "never": {"_count": 2}, "refused": {"_count": 1}, "carried": {"_count": 1}, "took": {"_count": 1}, "who": {"_count": 1}, "Harrys": {"_count": 1}, "That": {"_count": 1}, "what": {"_count": 1}, "left": {"_count": 1}, "ought": {"_count": 1}, "went": {"_count": 1}, "delayed": {"_count": 1}, "set": {"_count": 1}, "really": {"_count": 1}, "borrowed": {"_count": 1}, "himself": {"_count": 1}}, "theyve": {"_count": 2, "left": {"_count": 1}, "got": {"_count": 1}}, "with": {"_count": 7, "the": {"_count": 1}, "dogs": {"_count": 1}, "Lupins": {"_count": 1}, "Umbridge": {"_count": 1}, "just": {"_count": 1}, "Peruvian": {"_count": 1}, "my": {"_count": 1}}, "again": {"_count": 12, "Ron": {"_count": 1}, "said": {"_count": 3}, "Potter": {"_count": 1}, "do": {"_count": 1}, "Harry": {"_count": 1}, "Ill": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 1}}, "hid": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "everyone": {"_count": 16, "else": {"_count": 4}, "in": {"_count": 4}, "was": {"_count": 2}, "could": {"_count": 2}, "go": {"_count": 1}, "whos": {"_count": 1}, "should": {"_count": 1}, "sees": {"_count": 1}}, "were": {"_count": 36, "floating": {"_count": 1}, "covered": {"_count": 1}, "thundering": {"_count": 1}, "humming": {"_count": 1}, "playing": {"_count": 1}, "here": {"_count": 1}, "all": {"_count": 1}, "still": {"_count": 1}, "definitely": {"_count": 1}, "mainly": {"_count": 1}, "then": {"_count": 1}, "revelations": {"_count": 1}, "packed": {"_count": 1}, "now": {"_count": 1}, "usually": {"_count": 1}, "once": {"_count": 1}, "car": {"_count": 1}, "possible": {"_count": 1}, "continually": {"_count": 1}, "twiddling": {"_count": 1}, "true": {"_count": 1}, "not": {"_count": 2}, "unrelated": {"_count": 1}, "hovering": {"_count": 1}, "never": {"_count": 1}, "windows": {"_count": 1}, "drifting": {"_count": 1}, "almost": {"_count": 1}, "indeed": {"_count": 1}, "earning": {"_count": 1}, "attracting": {"_count": 1}, "visible": {"_count": 1}, "forcing": {"_count": 1}, "so": {"_count": 1}, "wrapped": {"_count": 1}}, "seemed": {"_count": 28, "the": {"_count": 2}, "to": {"_count": 19}, "alive": {"_count": 1}, "oddly": {"_count": 1}, "unchanged": {"_count": 1}, "unlikely": {"_count": 1}, "part": {"_count": 1}, "ten": {"_count": 1}, "themselves": {"_count": 1}}, "shone": {"_count": 1, "as": {"_count": 1}}, "sort": {"_count": 13, "of": {"_count": 12}, "he": {"_count": 1}}, "teacher": {"_count": 1, "talking": {"_count": 1}}, "we": {"_count": 72, "are": {"_count": 9}, "found": {"_count": 1}, "never": {"_count": 1}, "have": {"_count": 11}, "could": {"_count": 1}, "dont": {"_count": 2}, "wouldnt": {"_count": 1}, "will": {"_count": 4}, "alone": {"_count": 1}, "find": {"_count": 1}, "I": {"_count": 1}, "may": {"_count": 1}, "would": {"_count": 3}, "had": {"_count": 2}, "can": {"_count": 3}, "cant": {"_count": 1}, "met": {"_count": 1}, "all": {"_count": 2}, "might": {"_count": 2}, "needed": {"_count": 1}, "know": {"_count": 1}, "forced": {"_count": 1}, "told": {"_count": 1}, "promised": {"_count": 1}, "did": {"_count": 1}, "report": {"_count": 1}, "remove": {"_count": 1}, "offer": {"_count": 1}, "remain": {"_count": 1}, "also": {"_count": 1}, "left": {"_count": 1}, "werewolves": {"_count": 1}, "ought": {"_count": 2}, "press": {"_count": 1}, "secure": {"_count": 1}, "didnt": {"_count": 1}, "were": {"_count": 3}, "should": {"_count": 1}, "both": {"_count": 1}, "inform": {"_count": 1}}, "as": {"_count": 17, "well": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 2}, "long": {"_count": 1}, "an": {"_count": 1}, "Hogsmeade": {"_count": 1}, "he": {"_count": 2}, "far": {"_count": 2}, "she": {"_count": 1}, "High": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "Mr": {"_count": 1}, "innocent": {"_count": 1}}, "twice": {"_count": 1, "Percy": {"_count": 1}}, "werent": {"_count": 2, "really": {"_count": 1}, "his": {"_count": 1}}, "unluckily": {"_count": 1, "turned": {"_count": 1}}, "Quirrell": {"_count": 1, "was": {"_count": 1}}, "creep": {"_count": 1, "through": {"_count": 1}}, "she": {"_count": 227, "wasnt": {"_count": 2}, "hadnt": {"_count": 1}, "was": {"_count": 57}, "seemed": {"_count": 2}, "started": {"_count": 1}, "did": {"_count": 5}, "could": {"_count": 16}, "had": {"_count": 51}, "allowed": {"_count": 1}, "went": {"_count": 1}, "couldnt": {"_count": 3}, "looked": {"_count": 7}, "will": {"_count": 3}, "disobeyed": {"_count": 1}, "wanted": {"_count": 4}, "knew": {"_count": 3}, "would": {"_count": 14}, "like": {"_count": 1}, "appeared": {"_count": 1}, "expected": {"_count": 1}, "understood": {"_count": 2}, "thought": {"_count": 2}, "has": {"_count": 3}, "might": {"_count": 6}, "added": {"_count": 1}, "doesnt": {"_count": 1}, "and": {"_count": 2}, "must": {"_count": 2}, "now": {"_count": 2}, "predict": {"_count": 1}, "demonstrate": {"_count": 1}, "ought": {"_count": 2}, "too": {"_count": 3}, "put": {"_count": 1}, "stood": {"_count": 1}, "didnt": {"_count": 2}, "despised": {"_count": 1}, "said": {"_count": 1}, "used": {"_count": 1}, "made": {"_count": 2}, "stormed": {"_count": 1}, "punctured": {"_count": 1}, "kept": {"_count": 1}, "handed": {"_count": 1}, "supported": {"_count": 1}, "liked": {"_count": 1}, "still": {"_count": 2}, "asked": {"_count": 1}, "heard": {"_count": 1}, "communicated": {"_count": 1}, "died": {"_count": 1}, "agreed": {"_count": 1}, "considered": {"_count": 1}, "missed": {"_count": 1}}, "down": {"_count": 5, "": {"_count": 1}, "IVe": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 2}}, "almost": {"_count": 4, "broke": {"_count": 1}, "unseated": {"_count": 1}, "dislodged": {"_count": 1}, "drowned": {"_count": 1}}, "old": {"_count": 8, "git": {"_count": 1}, "Franks": {"_count": 1}, "bloke": {"_count": 1}, "fraud": {"_count": 1}, "toad": {"_count": 1}, "arch": {"_count": 1}, "curtain": {"_count": 1}, "grave": {"_count": 1}}, "cat": {"_count": 5, "Mrs": {"_count": 1}, "": {"_count": 1}, "away": {"_count": 1}, "out": {"_count": 1}, "Id": {"_count": 1}}, "Snape": {"_count": 46, "liked": {"_count": 1}, "was": {"_count": 9}, "wouldnt": {"_count": 2}, "could": {"_count": 2}, "would": {"_count": 1}, "needs": {"_count": 1}, "had": {"_count": 14}, "s": {"_count": 3}, "wanted": {"_count": 1}, "didnt": {"_count": 1}, "really": {"_count": 1}, "and": {"_count": 2}, "kept": {"_count": 1}, "opened": {"_count": 1}, "despite": {"_count": 1}, "must": {"_count": 1}, "boy": {"_count": 2}, "so": {"_count": 1}, "should": {"_count": 1}}, "someone": {"_count": 11, "had": {"_count": 2}, "was": {"_count": 1}, "on": {"_count": 1}, "would": {"_count": 2}, "inside": {"_count": 1}, "must": {"_count": 1}, "surely": {"_count": 1}, "unwelcome": {"_count": 1}, "threw": {"_count": 1}}, "Gringotts": {"_count": 1, "breakin": {"_count": 1}}, "same": {"_count": 5, "day": {"_count": 1}, "Mugg": {"_count": 1}, "deserted": {"_count": 1}, "wild": {"_count": 1}, "measured": {"_count": 1}}, "grubby": {"_count": 1, "little": {"_count": 1}}, "been": {"_count": 3, "what": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "none": {"_count": 15, "of": {"_count": 13}, "would": {"_count": 1}, "but": {"_count": 1}}, "package": {"_count": 3, "just": {"_count": 1}, "tore": {"_count": 1}, "without": {"_count": 1}}, "youll": {"_count": 1, "make": {"_count": 1}}, "always": {"_count": 5, "seemed": {"_count": 1}, "took": {"_count": 1}, "filled": {"_count": 1}, "culminated": {"_count": 1}, "sounds": {"_count": 1}}, "Malfoy": {"_count": 19, "had": {"_count": 5}, "was": {"_count": 6}, "hadnt": {"_count": 1}, "and": {"_count": 1}, "looked": {"_count": 1}, "Crabbe": {"_count": 2}, "really": {"_count": 1}, "did": {"_count": 1}, "would": {"_count": 1}}, "some": {"_count": 16, "of": {"_count": 10}, "form": {"_count": 1}, "Extendable": {"_count": 1}, "fresh": {"_count": 1}, "wounds": {"_count": 1}, "spell": {"_count": 1}, "wizards": {"_count": 1}}, "stupid": {"_count": 13, "thing": {"_count": 1}, "article": {"_count": 1}, "umbrella": {"_count": 1}, "hat": {"_count": 1}, "dream": {"_count": 1}, "I": {"_count": 1}, "tea": {"_count": 1}, "Snitch": {"_count": 1}, "song": {"_count": 1}, "then": {"_count": 1}, "book": {"_count": 1}, "Marietta": {"_count": 1}, "bleeding": {"_count": 1}}, "here": {"_count": 3, "Malfoy": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}}, "broom": {"_count": 6, "": {"_count": 2}, "just": {"_count": 1}, "was": {"_count": 1}, "Potter": {"_count": 1}, "cupboard": {"_count": 1}}, "your": {"_count": 37, "first": {"_count": 1}, "flying": {"_count": 1}, "own": {"_count": 2}, "successor": {"_count": 1}, "examination": {"_count": 1}, "worries": {"_count": 1}, "pincushion": {"_count": 1}, "sheets": {"_count": 1}, "stay": {"_count": 1}, "Age": {"_count": 1}, "wands": {"_count": 1}, "scar": {"_count": 2}, "lot": {"_count": 2}, "presence": {"_count": 1}, "views": {"_count": 1}, "dad": {"_count": 1}, "pitiful": {"_count": 1}, "father": {"_count": 1}, "mother": {"_count": 1}, "teachers": {"_count": 1}, "top": {"_count": 1}, "son": {"_count": 1}, "fathers": {"_count": 1}, "enemy": {"_count": 1}, "powers": {"_count": 1}, "unintentional": {"_count": 1}, "reception": {"_count": 1}, "birthday": {"_count": 1}, "sister": {"_count": 1}, "brother": {"_count": 1}, "wand": {"_count": 2}, "hot": {"_count": 1}, "hero": {"_count": 1}}, "thing": {"_count": 30, "in": {"_count": 3}, "you": {"_count": 2}, "hanging": {"_count": 1}, "on": {"_count": 1}, "Dobby": {"_count": 1}, "": {"_count": 3}, "nearly": {"_count": 1}, "around": {"_count": 1}, "out": {"_count": 2}, "the": {"_count": 1}, "up": {"_count": 1}, "about": {"_count": 1}, "to": {"_count": 2}, "outside": {"_count": 1}, "entered": {"_count": 1}, "dont": {"_count": 1}, "youre": {"_count": 1}, "have": {"_count": 1}, "at": {"_count": 1}, "somewhere": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}}, "Quidditch": {"_count": 5, "Cup": {"_count": 3}, "match": {"_count": 1}, "practice": {"_count": 1}}, "youre": {"_count": 15, "back": {"_count": 1}, "not": {"_count": 4}, "helping": {"_count": 1}, "calling": {"_count": 1}, "supposed": {"_count": 1}, "going": {"_count": 2}, "holding": {"_count": 1}, "a": {"_count": 1}, "putting": {"_count": 1}, "never": {"_count": 1}, "wearing": {"_count": 1}}, "easily": {"_count": 2, "": {"_count": 2}}, "I": {"_count": 187, "was": {"_count": 22}, "got": {"_count": 1}, "must": {"_count": 3}, "suppose": {"_count": 1}, "recorded": {"_count": 1}, "have": {"_count": 17}, "will": {"_count": 3}, "need": {"_count": 1}, "would": {"_count": 13}, "never": {"_count": 2}, "didnt": {"_count": 3}, "am": {"_count": 19}, "arrived": {"_count": 1}, "disappeared": {"_count": 1}, "had": {"_count": 9}, "knew": {"_count": 2}, "can": {"_count": 3}, "could": {"_count": 4}, "know": {"_count": 6}, "routinely": {"_count": 1}, "despise": {"_count": 1}, "found": {"_count": 1}, "want": {"_count": 3}, "ever": {"_count": 1}, "fully": {"_count": 1}, "simply": {"_count": 1}, "might": {"_count": 3}, "I": {"_count": 1}, "cant": {"_count": 1}, "looked": {"_count": 1}, "think": {"_count": 3}, "failed": {"_count": 1}, "unlike": {"_count": 1}, "believe": {"_count": 2}, "mean": {"_count": 1}, "wouldnt": {"_count": 1}, "told": {"_count": 2}, "sent": {"_count": 1}, "do": {"_count": 4}, "dont": {"_count": 2}, "shall": {"_count": 3}, "did": {"_count": 5}, "ought": {"_count": 1}, "should": {"_count": 1}, "rather": {"_count": 1}, "wanted": {"_count": 1}, "took": {"_count": 2}, "preferred": {"_count": 1}, "stayed": {"_count": 1}, "remained": {"_count": 1}, "thought": {"_count": 1}, "managed": {"_count": 1}, "owned": {"_count": 1}, "help": {"_count": 1}, "arrange": {"_count": 1}, "understood": {"_count": 1}, "in": {"_count": 1}, "gleaned": {"_count": 1}, "wasnt": {"_count": 1}, "smell": {"_count": 1}, "myself": {"_count": 1}, "wonder": {"_count": 1}, "trust": {"_count": 1}, "suspected": {"_count": 1}, "hear": {"_count": 1}, "heard": {"_count": 1}, "met": {"_count": 1}, "became": {"_count": 1}, "and": {"_count": 1}, "cannot": {"_count": 2}, "wished": {"_count": 1}, "give": {"_count": 1}, "underestimate": {"_count": 1}, "actually": {"_count": 1}}, "Curse": {"_count": 1, "of": {"_count": 1}}, "dont": {"_count": 5, "you": {"_count": 3}, "come": {"_count": 1}, "say": {"_count": 1}}, "simple": {"_count": 1, "": {"_count": 1}}, "filled": {"_count": 11, "the": {"_count": 9}, "Professor": {"_count": 1}, "his": {"_count": 1}}, "monster": {"_count": 3, "": {"_count": 2}, "fixation": {"_count": 1}}, "pig": {"_count": 1, "snout": {"_count": 1}}, "locked": {"_count": 1, "up": {"_count": 1}}, "meeting": {"_count": 1, "the": {"_count": 1}}, "Ive": {"_count": 8, "got": {"_count": 3}, "written": {"_count": 1}, "never": {"_count": 1}, "read": {"_count": 1}, "been": {"_count": 1}, "seen": {"_count": 1}}, "evening": {"_count": 28, "without": {"_count": 1}, "": {"_count": 4}, "they": {"_count": 1}, "of": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "after": {"_count": 1}, "and": {"_count": 2}, "on": {"_count": 1}, "because": {"_count": 1}, "he": {"_count": 2}, "but": {"_count": 2}, "when": {"_count": 3}, "in": {"_count": 2}, "however": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 1}, "it": {"_count": 1}}, "nice": {"_count": 1, "wrist": {"_count": 1}}, "Hermione": {"_count": 61, "was": {"_count": 13}, "Granger": {"_count": 1}, "at": {"_count": 1}, "didnt": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 18}, "said": {"_count": 3}, "wasnt": {"_count": 1}, "could": {"_count": 3}, "seized": {"_count": 1}, "there": {"_count": 1}, "should": {"_count": 1}, "scowled": {"_count": 1}, "made": {"_count": 1}, "and": {"_count": 2}, "would": {"_count": 1}, "might": {"_count": 2}, "Ill": {"_count": 1}, "too": {"_count": 3}, "really": {"_count": 1}, "sleep": {"_count": 1}, "s": {"_count": 1}, "agreed": {"_count": 1}, "gave": {"_count": 1}}, "came": {"_count": 9, "into": {"_count": 2}, "out": {"_count": 1}, "under": {"_count": 1}, "up": {"_count": 1}, "with": {"_count": 1}, "back": {"_count": 1}, "flying": {"_count": 1}, "trundling": {"_count": 1}}, "case": {"_count": 10, "": {"_count": 1}, "perhaps": {"_count": 1}, "Potter": {"_count": 2}, "I": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 2}, "well": {"_count": 1}, "there": {"_count": 1}}, "Ron": {"_count": 83, "admitted": {"_count": 1}, "and": {"_count": 13}, "noticed": {"_count": 1}, "had": {"_count": 17}, "thought": {"_count": 1}, "look": {"_count": 1}, "was": {"_count": 19}, "kept": {"_count": 2}, "couldnt": {"_count": 1}, "wasnt": {"_count": 1}, "wouldnt": {"_count": 1}, "or": {"_count": 1}, "took": {"_count": 1}, "could": {"_count": 5}, "said": {"_count": 1}, "might": {"_count": 2}, "understand": {"_count": 1}, "would": {"_count": 3}, "Luna": {"_count": 1}, "did": {"_count": 2}, "": {"_count": 1}, "Weasley": {"_count": 1}, "snapped": {"_count": 1}, "sighed": {"_count": 1}, "considered": {"_count": 1}, "begged": {"_count": 1}, "stumped": {"_count": 1}, "seemed": {"_count": 1}}, "Seekers": {"_count": 1, "were": {"_count": 1}}, "most": {"_count": 7, "serious": {"_count": 1}, "people": {"_count": 1}, "unfortunate": {"_count": 1}, "wizards": {"_count": 1}, "often": {"_count": 1}, "venoms": {"_count": 1}, "unfortunately": {"_count": 1}}, "although": {"_count": 3, "people": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "could": {"_count": 29, "be": {"_count": 9}, "have": {"_count": 3}, "fool": {"_count": 1}, "impair": {"_count": 1}, "seat": {"_count": 1}, "mean": {"_count": 2}, "vanquish": {"_count": 1}, "possibly": {"_count": 1}, "see": {"_count": 1}, "not": {"_count": 2}, "just": {"_count": 1}, "take": {"_count": 1}, "happen": {"_count": 2}, "easily": {"_count": 1}, "go": {"_count": 1}, "move": {"_count": 1}}, "youve": {"_count": 8, "got": {"_count": 3}, "known": {"_count": 1}, "packed": {"_count": 1}, "been": {"_count": 1}, "lived": {"_count": 1}, "grown": {"_count": 1}}, "rule": {"_count": 1, "up": {"_count": 1}}, "threeheaded": {"_count": 3, "dog": {"_count": 3}}, "troll": {"_count": 1, "in": {"_count": 1}}, "dog": {"_count": 4, "guarding": {"_count": 1}, "an": {"_count": 1}, "can": {"_count": 1}, "said": {"_count": 1}}, "girl": {"_count": 8, "is": {"_count": 2}, "": {"_count": 1}, "who": {"_count": 2}, "pulled": {"_count": 1}, "say": {"_count": 1}, "I": {"_count": 1}}, "must": {"_count": 10, "have": {"_count": 2}, "mean": {"_count": 2}, "be": {"_count": 4}, "Harry": {"_count": 1}, "always": {"_count": 1}}, "obvious": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "open": {"_count": 1, "and": {"_count": 1}}, "Harrys": {"_count": 16, "broom": {"_count": 1}, "good": {"_count": 1}, "parents": {"_count": 1}, "flobberworm": {"_count": 1}, "name": {"_count": 1}, "brain": {"_count": 1}, "knees": {"_count": 1}, "mother": {"_count": 1}, "use": {"_count": 1}, "giant": {"_count": 1}, "feet": {"_count": 2}, "new": {"_count": 1}, "eyes": {"_count": 1}, "thoughts": {"_count": 1}, "insides": {"_count": 1}}, "to": {"_count": 32, "a": {"_count": 3}, "do": {"_count": 1}, "the": {"_count": 4}, "that": {"_count": 1}, "beat": {"_count": 1}, "pass": {"_count": 1}, "his": {"_count": 1}, "shut": {"_count": 1}, "get": {"_count": 1}, "help": {"_count": 1}, "anyone": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}, "achieve": {"_count": 1}, "be": {"_count": 1}, "mean": {"_count": 1}, "belong": {"_count": 1}, "say": {"_count": 1}, "me": {"_count": 1}, "attack": {"_count": 1}, "Snape": {"_count": 1}, "Morfin": {"_count": 1}, "Dumbledore": {"_count": 2}, "Kreacher": {"_count": 1}, "walk": {"_count": 1}, "try": {"_count": 1}}, "don": {"_count": 2, "concern": {"_count": 1}, "want": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "nobody": {"_count": 34, "found": {"_count": 1}, "tried": {"_count": 1}, "is": {"_count": 1}, "would": {"_count": 2}, "was": {"_count": 7}, "had": {"_count": 3}, "from": {"_count": 1}, "else": {"_count": 2}, "seemed": {"_count": 2}, "under": {"_count": 1}, "should": {"_count": 1}, "could": {"_count": 4}, "ask": {"_count": 1}, "has": {"_count": 2}, "in": {"_count": 1}, "within": {"_count": 1}, "hearing": {"_count": 1}, "mattered": {"_count": 1}, "but": {"_count": 1}}, "hut": {"_count": 1, "of": {"_count": 1}}, "dogs": {"_count": 2, "guardin": {"_count": 1}, "guarding": {"_count": 1}}, "ones": {"_count": 1, "from": {"_count": 1}}, "separated": {"_count": 3, "these": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 1}}, "didnt": {"_count": 9, "look": {"_count": 2}, "concern": {"_count": 1}, "you": {"_count": 1}, "suit": {"_count": 1}, "keep": {"_count": 1}, "stop": {"_count": 1}, "reach": {"_count": 1}, "tell": {"_count": 1}}, "of": {"_count": 17, "his": {"_count": 2}, "twelve": {"_count": 1}, "catching": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 3}, "Hermiones": {"_count": 1}, "headmaster": {"_count": 1}, "Madam": {"_count": 1}, "course": {"_count": 1}, "Hagrid": {"_count": 1}, "an": {"_count": 1}, "their": {"_count": 1}}, "mirror": {"_count": 4, "": {"_count": 3}, "could": {"_count": 1}}, "sir": {"_count": 4, "": {"_count": 3}, "he": {"_count": 1}}, "help": {"_count": 4, "": {"_count": 1}, "will": {"_count": 1}, "you": {"_count": 1}, "Sirius": {"_count": 1}}, "admirable": {"_count": 1, "cloak": {"_count": 1}}, "Wood": {"_count": 2, "was": {"_count": 2}}, "Neville": {"_count": 14, "choked": {"_count": 1}, "would": {"_count": 2}, "sorry": {"_count": 1}, "had": {"_count": 3}, "deserved": {"_count": 1}, "Parvati": {"_count": 1}, "could": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}, "Dean": {"_count": 1}, "was": {"_count": 1}}, "makes": {"_count": 11, "gold": {"_count": 1}, "me": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 2}, "sense": {"_count": 2}, "you": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}}, "Study": {"_count": 1, "of": {"_count": 1}}, "silver": {"_count": 1, "beard": {"_count": 1}}, "beast": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 19, "said": {"_count": 1}, "": {"_count": 6}, "they": {"_count": 1}, "stood": {"_count": 1}, "it": {"_count": 1}, "filled": {"_count": 1}, "not": {"_count": 1}, "I": {"_count": 1}, "What": {"_count": 1}, "that": {"_count": 1}, "hes": {"_count": 1}, "resembled": {"_count": 1}, "whispered": {"_count": 1}, "But": {"_count": 1}}, "followed": {"_count": 5, "he": {"_count": 1}, "Lockhart": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "Fluffy": {"_count": 2, "was": {"_count": 2}}, "got": {"_count": 4, "their": {"_count": 1}, "to": {"_count": 2}, "me": {"_count": 1}}, "out": {"_count": 10, "an": {"_count": 1}, "of": {"_count": 2}, "by": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 3}, "can": {"_count": 1}, "when": {"_count": 1}}, "goes": {"_count": 3, "on": {"_count": 2}, "for": {"_count": 1}}, "dragons": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "feels": {"_count": 1, "like": {"_count": 1}}, "book": {"_count": 12, "Malfoy": {"_count": 1}, "said": {"_count": 3}, "on": {"_count": 1}, "but": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 2}, "when": {"_count": 1}, "back": {"_count": 1}, "Miss": {"_count": 1}}, "Norbert": {"_count": 1, "was": {"_count": 1}}, "things": {"_count": 2, "couldnt": {"_count": 1}, "bad": {"_count": 1}}, "Longbottom": {"_count": 1, "here": {"_count": 1}}, "recorded": {"_count": 1, "the": {"_count": 1}}, "oaf": {"_count": 1, "": {"_count": 1}}, "forest": {"_count": 1, "he": {"_count": 1}}, "disappeared": {"_count": 1, "into": {"_count": 1}}, "stuff": {"_count": 13, "shinin": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}, "about": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}, "off": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 1}, "to": {"_count": 1}}, "lives": {"_count": 3, "in": {"_count": 3}}, "shouldn": {"_count": 1, "be": {"_count": 1}}, "sound": {"_count": 1, "like": {"_count": 1}}, "stood": {"_count": 13, "out": {"_count": 1}, "alone": {"_count": 1}, "in": {"_count": 2}, "beside": {"_count": 2}, "there": {"_count": 1}, "upon": {"_count": 1}, "at": {"_count": 2}, "on": {"_count": 2}, "ajar": {"_count": 1}}, "unicorn": {"_count": 1, "": {"_count": 1}}, "secret": {"_count": 1, "": {"_count": 1}}, "desperate": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 27, "bring": {"_count": 1}, "mean": {"_count": 1}, "revive": {"_count": 1}, "encourage": {"_count": 1}, "": {"_count": 3}, "be": {"_count": 2}, "judge": {"_count": 1}, "enable": {"_count": 1}, "destabilize": {"_count": 1}, "make": {"_count": 1}, "open": {"_count": 1}, "remind": {"_count": 1}, "leave": {"_count": 1}, "do": {"_count": 5}, "force": {"_count": 1}, "give": {"_count": 1}, "by": {"_count": 1}, "prevent": {"_count": 1}, "undoubtedly": {"_count": 1}, "save": {"_count": 1}}, "clearing": {"_count": 1, "back": {"_count": 1}}, "Voldemorts": {"_count": 8, "coming": {"_count": 1}, "powerful": {"_count": 1}, "long": {"_count": 1}, "back": {"_count": 1}, "information": {"_count": 1}, "hand": {"_count": 1}, "keeping": {"_count": 1}, "was": {"_count": 1}}, "what": {"_count": 26, "Hagrid": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "you": {"_count": 5}, "theyre": {"_count": 1}, "he": {"_count": 5}, "they": {"_count": 1}, "I": {"_count": 2}, "she": {"_count": 3}, "it": {"_count": 1}, "Snape": {"_count": 1}, "youre": {"_count": 1}, "Aragog": {"_count": 1}, "the": {"_count": 1}, "about": {"_count": 1}}, "unusual": {"_count": 1, "yeh": {"_count": 1}}, "stranger": {"_count": 1, "how": {"_count": 1}}, "cloak": {"_count": 7, "it": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "are": {"_count": 1}, "back": {"_count": 1}}, "Sn": {"_count": 1, "that": {"_count": 1}}, "someones": {"_count": 1, "going": {"_count": 1}}, "note": {"_count": 3, "I": {"_count": 1}, "Moody": {"_count": 1}, "the": {"_count": 1}}, "part": {"_count": 4, "of": {"_count": 3}, "connected": {"_count": 1}}, "trapdoor": {"_count": 1, "tonight": {"_count": 1}}, "hole": {"_count": 1, "and": {"_count": 1}}, "good": {"_count": 7, "at": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "an": {"_count": 1}}, "bishop": {"_count": 2, "and": {"_count": 1}, "Hermione": {"_count": 1}}, "castle": {"_count": 1, "": {"_count": 1}}, "happen": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "leaves": {"_count": 3, "you": {"_count": 1}, "Quirrells": {"_count": 1}, "a": {"_count": 1}}, "Im": {"_count": 16, "going": {"_count": 1}, "not": {"_count": 2}, "better": {"_count": 1}, "that": {"_count": 1}, "Already": {"_count": 1}, "sorry": {"_count": 1}, "supposed": {"_count": 2}, "trustworthy": {"_count": 1}, "aware": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "working": {"_count": 1}, "seriously": {"_count": 1}, "my": {"_count": 1}}, "for": {"_count": 25, "all": {"_count": 2}, "": {"_count": 8}, "your": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 5}, "ages": {"_count": 1}, "the": {"_count": 2}, "anyway": {"_count": 1}, "some": {"_count": 1}, "want": {"_count": 1}, "us": {"_count": 1}, "years": {"_count": 1}}, "time": {"_count": 22, "trying": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 2}, "on": {"_count": 1}, "my": {"_count": 1}, "at": {"_count": 1}, "than": {"_count": 1}, "came": {"_count": 1}, "illegal": {"_count": 1}, "he": {"_count": 2}, "Snape": {"_count": 1}, "for": {"_count": 1}, "forth": {"_count": 1}, "yes": {"_count": 1}, "already": {"_count": 2}}, "very": {"_count": 19, "day": {"_count": 2}, "funny": {"_count": 1}, "moment": {"_count": 7}, "mistake": {"_count": 1}, "interesting": {"_count": 1}, "amusing": {"_count": 1}, "little": {"_count": 1}, "morning": {"_count": 1}, "subject": {"_count": 1}, "evening": {"_count": 1}, "afternoon": {"_count": 1}, "fishy": {"_count": 1}}, "Stone": {"_count": 1, "in": {"_count": 1}}, "Voldemort": {"_count": 55, "could": {"_count": 4}, "the": {"_count": 2}, "his": {"_count": 1}, "had": {"_count": 16}, "was": {"_count": 8}, "s": {"_count": 2}, "wanted": {"_count": 1}, "might": {"_count": 2}, "would": {"_count": 3}, "sent": {"_count": 1}, "envisaged": {"_count": 1}, "knew": {"_count": 2}, "took": {"_count": 1}, "returned": {"_count": 1}, "considered": {"_count": 1}, "is": {"_count": 1}, "has": {"_count": 1}, "spoke": {"_count": 1}, "must": {"_count": 1}, "sought": {"_count": 3}, "seemed": {"_count": 1}, "suspected": {"_count": 1}}, "means": {"_count": 10, "he": {"_count": 1}, "\u2018great": {"_count": 1}, "much": {"_count": 1}, "were": {"_count": 2}, "": {"_count": 1}, "I": {"_count": 2}, "but": {"_count": 1}, "that": {"_count": 1}}, "love": {"_count": 2, "as": {"_count": 1}, "is": {"_count": 1}}, "true": {"_count": 3, "": {"_count": 3}}, "took": {"_count": 7, "a": {"_count": 1}, "him": {"_count": 1}, "place": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "flight": {"_count": 1}}, "Gryffindor": {"_count": 6, "now": {"_count": 1}, "had": {"_count": 2}, "won": {"_count": 1}, "only": {"_count": 1}, "might": {"_count": 1}}, "erupted": {"_count": 3, "from": {"_count": 1}, "over": {"_count": 1}, "between": {"_count": 1}}, "Goyle": {"_count": 2, "who": {"_count": 1}, "and": {"_count": 1}}, "sailed": {"_count": 1, "across": {"_count": 1}}, "anyone": {"_count": 6, "could": {"_count": 1}, "else": {"_count": 2}, "whos": {"_count": 1}, "lived": {"_count": 1}, "was": {"_count": 1}}, "owl": {"_count": 4, "itll": {"_count": 1}, "Pig": {"_count": 1}, "if": {"_count": 1}, "shes": {"_count": 1}}, "owls": {"_count": 1, "let": {"_count": 1}}, "shook": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "today": {"_count": 1, "happened": {"_count": 1}}, "stopped": {"_count": 2, "them": {"_count": 2}}, "freak": {"_count": 2, "place": {"_count": 1}, "school": {"_count": 1}}, "any": {"_count": 5, "magical": {"_count": 1}, "of": {"_count": 1}, "attempt": {"_count": 1}, "woman": {"_count": 1}, "wizard": {"_count": 1}}, "risks": {"_count": 1, "notice": {"_count": 1}}, "small": {"_count": 4, "amounts": {"_count": 1}, "Ludo": {"_count": 1}, "black": {"_count": 1}, "service": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 1}, "But": {"_count": 1}, "with": {"_count": 1}}, "Draco": {"_count": 8, "Malfoy": {"_count": 4}, "should": {"_count": 1}, "succeeds": {"_count": 1}, "": {"_count": 1}, "here": {"_count": 1}}, "coming": {"_count": 2, "up": {"_count": 1}, "": {"_count": 1}}, "wretched": {"_count": 3, "car": {"_count": 1}, "Skeeter": {"_count": 1}, "poltergeist": {"_count": 1}}, "garden": {"_count": 1, "when": {"_count": 1}}, "stump": {"_count": 1, "": {"_count": 1}}, "mustve": {"_count": 1, "been": {"_count": 1}}, "keeps": {"_count": 5, "shrinking": {"_count": 1}, "up": {"_count": 1}, "returning": {"_count": 1}, "wounds": {"_count": 1}, "me": {"_count": 1}}, "law": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 10, "rubbish": {"_count": 2}, "boy": {"_count": 1}, "taxi": {"_count": 1}, "house": {"_count": 1}, "said": {"_count": 1}, "whispered": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 1}, "slaughter": {"_count": 1}}, "eh": {"_count": 2, "": {"_count": 2}}, "everybody": {"_count": 4, "there": {"_count": 1}, "should": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "fits": {"_count": 2, "in": {"_count": 1}, "said": {"_count": 1}}, "blocked": {"_count": 1, "it": {"_count": 1}}, "Charlie": {"_count": 1, "was": {"_count": 1}}, "Well": {"_count": 1, "": {"_count": 1}}, "flea": {"_count": 1, "bitten": {"_count": 1}}, "may": {"_count": 5, "indeed": {"_count": 1}, "not": {"_count": 1}, "very": {"_count": 1}, "be": {"_count": 2}}, "ran": {"_count": 5, "all": {"_count": 2}, "along": {"_count": 1}, "over": {"_count": 1}, "around": {"_count": 1}}, "sped": {"_count": 1, "along": {"_count": 1}}, "exactly": {"_count": 1, "matched": {"_count": 1}}, "emitted": {"_count": 2, "puffs": {"_count": 1}, "a": {"_count": 1}}, "bloke": {"_count": 4, "from": {"_count": 1}, "who": {"_count": 1}, "would": {"_count": 1}, "Perkins": {"_count": 1}}, "headed": {"_count": 1, "back": {"_count": 1}}, "included": {"_count": 1, "all": {"_count": 1}}, "bounced": {"_count": 1, "from": {"_count": 1}}, "Mr": {"_count": 22, "Weasley": {"_count": 10}, "Weasleys": {"_count": 3}, "and": {"_count": 3}, "Roberts": {"_count": 1}, "Crouch": {"_count": 2}, "Moody": {"_count": 1}, "Ollivander": {"_count": 1}, "Potter": {"_count": 1}}, "Fred": {"_count": 10, "could": {"_count": 1}, "and": {"_count": 7}, "had": {"_count": 1}, "was": {"_count": 1}}, "shed": {"_count": 2, "left": {"_count": 1}, "given": {"_count": 1}}, "Hedwigs": {"_count": 3, "cage": {"_count": 1}, "large": {"_count": 1}, "feathers": {"_count": 1}}, "gave": {"_count": 5, "way": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}}, "hits": {"_count": 1, "back": {"_count": 1}}, "told": {"_count": 7, "Harry": {"_count": 5}, "him": {"_count": 1}, "not": {"_count": 1}}, "considerable": {"_count": 1, "damage": {"_count": 1}}, "happy": {"_count": 3, "power": {"_count": 1}, "moment": {"_count": 1}, "could": {"_count": 1}}, "or": {"_count": 5, "anything": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "their": {"_count": 1}, "was": {"_count": 1}}, "its": {"_count": 19, "that": {"_count": 1}, "mine": {"_count": 1}, "eyes": {"_count": 1}, "safe": {"_count": 1}, "name": {"_count": 1}, "very": {"_count": 1}, "regular": {"_count": 1}, "wrong": {"_count": 1}, "not": {"_count": 2}, "a": {"_count": 1}, "just": {"_count": 1}, "dragon": {"_count": 1}, "legs": {"_count": 1}, "down": {"_count": 1}, "light": {"_count": 1}, "protection": {"_count": 1}, "such": {"_count": 1}, "one": {"_count": 1}}, "first": {"_count": 3, "taste": {"_count": 1}, "year": {"_count": 1}, "broom": {"_count": 1}}, "because": {"_count": 3, "it": {"_count": 1}, "Crouch": {"_count": 1}, "I": {"_count": 1}}, "business": {"_count": 1, "with": {"_count": 1}}, "smelled": {"_count": 2, "of": {"_count": 1}, "strongly": {"_count": 1}}, "special": {"_count": 2, "myself": {"_count": 1}, "": {"_count": 1}}, "handing": {"_count": 1, "out": {"_count": 1}}, "my": {"_count": 17, "favorite": {"_count": 1}, "ideal": {"_count": 1}, "dear": {"_count": 1}, "feelings": {"_count": 1}, "hand": {"_count": 2}, "mother": {"_count": 1}, "predecessor": {"_count": 1}, "greatgreatgrandson": {"_count": 1}, "worst": {"_count": 1}, "priority": {"_count": 1}, "plan": {"_count": 1}, "particular": {"_count": 1}, "memorys": {"_count": 1}, "personal": {"_count": 1}, "brother": {"_count": 1}, "Lord": {"_count": 1}}, "scores": {"_count": 1, "goals": {"_count": 1}}, "clear": {"_count": 2, "": {"_count": 1}, "domed": {"_count": 1}}, "trouble": {"_count": 1, "didnt": {"_count": 1}}, "Hagrids": {"_count": 4, "old": {"_count": 1}, "been": {"_count": 1}, "cabin": {"_count": 1}, "voice": {"_count": 1}}, "voice": {"_count": 10, "that": {"_count": 1}, "again": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "inside": {"_count": 1}, "made": {"_count": 1}, "but": {"_count": 1}, "too": {"_count": 1}, "could": {"_count": 1}}, "her": {"_count": 39, "whole": {"_count": 1}, "hands": {"_count": 2}, "nostrils": {"_count": 1}, "mouth": {"_count": 1}, "information": {"_count": 1}, "face": {"_count": 4}, "sobs": {"_count": 1}, "brand": {"_count": 1}, "talons": {"_count": 1}, "long": {"_count": 2}, "quill": {"_count": 1}, "hand": {"_count": 1}, "monocle": {"_count": 1}, "magazine": {"_count": 1}, "tartan": {"_count": 1}, "knees": {"_count": 2}, "disapproval": {"_count": 1}, "fellow": {"_count": 1}, "eyes": {"_count": 3}, "father": {"_count": 1}, "self": {"_count": 1}, "resemblance": {"_count": 1}, "magical": {"_count": 1}, "unrequited": {"_count": 1}, "need": {"_count": 1}, "tiny": {"_count": 1}, "voice": {"_count": 1}, "silhouette": {"_count": 1}, "warm": {"_count": 1}, "family": {"_count": 1}, "body": {"_count": 1}}, "getting": {"_count": 1, "hit": {"_count": 1}}, "Filch": {"_count": 4, "wasnt": {"_count": 1}, "had": {"_count": 2}, "would": {"_count": 1}}, "however": {"_count": 3, "if": {"_count": 1}, "angry": {"_count": 1}, "or": {"_count": 1}}, "appeared": {"_count": 3, "to": {"_count": 2}, "more": {"_count": 1}}, "supposed": {"_count": 16, "to": {"_count": 16}}, "killed": {"_count": 4, "her": {"_count": 1}, "their": {"_count": 1}, "Sirius": {"_count": 1}, "my": {"_count": 1}}, "corridor": {"_count": 5, "": {"_count": 1}, "Ive": {"_count": 1}, "every": {"_count": 1}, "at": {"_count": 1}, "ending": {"_count": 1}}, "writing": {"_count": 2, "on": {"_count": 1}, "desk": {"_count": 1}}, "junk": {"_count": 1, "about": {"_count": 1}}, "ever": {"_count": 3, "happened": {"_count": 2}, "became": {"_count": 1}}, "year": {"_count": 5, "a": {"_count": 1}, "time": {"_count": 1}, "": {"_count": 2}, "both": {"_count": 1}}, "Hogwarts": {"_count": 5, "was": {"_count": 2}, "couldnt": {"_count": 1}, "has": {"_count": 1}, "can": {"_count": 1}}, "magical": {"_count": 1, "learning": {"_count": 1}}, "Slytherin": {"_count": 4, "had": {"_count": 1}, "ever": {"_count": 1}, "House": {"_count": 2}}, "water": {"_count": 1, "on": {"_count": 1}}, "come": {"_count": 2, "from": {"_count": 1}, "as": {"_count": 1}}, "reminded": {"_count": 2, "Harry": {"_count": 2}}, "shredded": {"_count": 1, "skin": {"_count": 1}}, "yet": {"_count": 3, "though": {"_count": 1}, "Does": {"_count": 1}, "another": {"_count": 1}}, "Snitch": {"_count": 1, "before": {"_count": 1}}, "Bludger": {"_count": 5, "stopped": {"_count": 1}, "said": {"_count": 1}, "try": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 1}}, "can": {"_count": 14, "sometimes": {"_count": 1}, "think": {"_count": 3}, "happen": {"_count": 3}, "burn": {"_count": 1}, "kill": {"_count": 1}, "she": {"_count": 1}, "dock": {"_count": 1}, "be": {"_count": 1}, "possibly": {"_count": 1}, "raise": {"_count": 1}}, "history": {"_count": 1, "is": {"_count": 1}}, "neither": {"_count": 5, "Filch": {"_count": 1}, "had": {"_count": 1}, "your": {"_count": 2}, "of": {"_count": 1}}, "Colin": {"_count": 1, "Creevey": {"_count": 1}}, "person": {"_count": 2, "is": {"_count": 1}, "has": {"_count": 1}}, "rang": {"_count": 2, "ten": {"_count": 1}, "through": {"_count": 1}}, "blocking": {"_count": 1, "thing": {"_count": 1}}, "Lockhart": {"_count": 2, "couldnt": {"_count": 1}, "was": {"_count": 1}}, "snake": {"_count": 6, "not": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 2}, "attack": {"_count": 1}, "forth": {"_count": 1}}, "hard": {"_count": 3, "to": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}}, "Justin": {"_count": 2, "might": {"_count": 1}, "was": {"_count": 1}}, "attack": {"_count": 1, "by": {"_count": 1}}, "greeted": {"_count": 3, "him": {"_count": 1}, "this": {"_count": 1}, "these": {"_count": 1}}, "after": {"_count": 8, "I": {"_count": 2}, "two": {"_count": 3}, "the": {"_count": 2}, "all": {"_count": 1}}, "resembled": {"_count": 4, "a": {"_count": 2}, "an": {"_count": 1}, "golden": {"_count": 1}}, "kid": {"_count": 1, "was": {"_count": 1}}, "students": {"_count": 3, "could": {"_count": 1}, "below": {"_count": 1}, "werent": {"_count": 1}}, "covered": {"_count": 2, "Goyle": {"_count": 1}, "Dobby": {"_count": 1}}, "hair": {"_count": 1, "was": {"_count": 1}}, "Creevey": {"_count": 1, "in": {"_count": 1}}, "jumpedup": {"_count": 1, "Granger": {"_count": 1}}, "Crabbe": {"_count": 3, "looked": {"_count": 1}, "had": {"_count": 2}}, "Madam": {"_count": 5, "Pomfrey": {"_count": 4}, "Pomfreys": {"_count": 1}}, "burned": {"_count": 1, "your": {"_count": 1}}, "name": {"_count": 4, "": {"_count": 2}, "said": {"_count": 1}, "before": {"_count": 1}}, "wouldve": {"_count": 2, "done": {"_count": 1}, "been": {"_count": 1}}, "lying": {"_count": 2, "around": {"_count": 1}, "down": {"_count": 1}}, "like": {"_count": 5, "its": {"_count": 1}, "pillars": {"_count": 1}, "\u2018doctor": {"_count": 1}, "Abbott": {"_count": 1}, "the": {"_count": 1}}, "back": {"_count": 1, "said": {"_count": 1}}, "happened": {"_count": 7, "at": {"_count": 2}, "to": {"_count": 1}, "around": {"_count": 1}, "it": {"_count": 1}, "when": {"_count": 1}, "between": {"_count": 1}}, "such": {"_count": 3, "a": {"_count": 2}, "artifacts": {"_count": 1}}, "You": {"_count": 4, "live": {"_count": 1}, "theenk": {"_count": 1}, "KnowWho": {"_count": 2}}, "poor": {"_count": 4, "little": {"_count": 1}, "Professor": {"_count": 1}, "besotted": {"_count": 1}, "stick": {"_count": 1}}, "Riddle": {"_count": 6, "was": {"_count": 2}, "has": {"_count": 1}, "wanted": {"_count": 1}, "really": {"_count": 1}, "climbed": {"_count": 1}}, "taking": {"_count": 1, "Hagrid": {"_count": 1}}, "temper": {"_count": 1, "of": {"_count": 1}}, "Ernie": {"_count": 1, "and": {"_count": 1}}, "question": {"_count": 3, "Harry": {"_count": 1}, "already": {"_count": 1}, "could": {"_count": 1}}, "both": {"_count": 5, "of": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "have": {"_count": 1}, "had": {"_count": 1}}, "dwells": {"_count": 1, "in": {"_count": 1}}, "dread": {"_count": 1, "creature": {"_count": 1}}, "bathroom": {"_count": 1, "and": {"_count": 1}}, "drove": {"_count": 3, "the": {"_count": 1}, "away": {"_count": 1}, "him": {"_count": 1}}, "precise": {"_count": 9, "moment": {"_count": 9}}, "seat": {"_count": 1, "Ginny": {"_count": 1}}, "thats": {"_count": 1, "nothing": {"_count": 1}}, "roam": {"_count": 1, "our": {"_count": 1}}, "Ravenclaw": {"_count": 3, "prefect": {"_count": 2}, "flattened": {"_count": 1}}, "Ginny": {"_count": 9, "might": {"_count": 1}, "said": {"_count": 1}, "did": {"_count": 1}, "Neville": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 2}, "and": {"_count": 1}}, "fell": {"_count": 6, "almost": {"_count": 1}, "off": {"_count": 1}, "seemed": {"_count": 1}, "to": {"_count": 3}}, "great": {"_count": 3, "oaf": {"_count": 1}, "hairy": {"_count": 1}, "silent": {"_count": 1}}, "killing": {"_count": 1, "Mudbloods": {"_count": 1}}, "Fawkes": {"_count": 2, "had": {"_count": 2}}, "saved": {"_count": 2, "you": {"_count": 2}}, "bird": {"_count": 1, "come": {"_count": 1}}, "Aragog": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "Lord": {"_count": 7, "Voldemort": {"_count": 7}}, "cheers": {"_count": 1, "me": {"_count": 1}}, "show": {"_count": 1, "what": {"_count": 1}}, "Arthur": {"_count": 2, "Weasleys": {"_count": 1}, "Weasley": {"_count": 1}}, "diary": {"_count": 7, "Mr": {"_count": 1}, "back": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "read": {"_count": 1}, "was": {"_count": 1}, "she": {"_count": 1}}, "unfortunately": {"_count": 1, "Professor": {"_count": 1}}, "anyway": {"_count": 1, "Ron": {"_count": 1}}, "Uncle": {"_count": 8, "Vernon": {"_count": 6}, "Vernons": {"_count": 2}}, "telephone": {"_count": 1, "call": {"_count": 1}}, "picture": {"_count": 4, "of": {"_count": 3}, "": {"_count": 1}}, "Black": {"_count": 10, "is": {"_count": 3}, "could": {"_count": 2}, "would": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "might": {"_count": 1}, "as": {"_count": 1}}, "maniacs": {"_count": 1, "escaped": {"_count": 1}}, "hangings": {"_count": 1, "the": {"_count": 1}}, "story": {"_count": 5, "boy": {"_count": 1}, "out": {"_count": 1}, "Harry": {"_count": 1}, "then": {"_count": 1}, "when": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}, "St": {"_count": 1, "": {"_count": 1}}, "ungrateful": {"_count": 1, "tone": {"_count": 1}}, "casual": {"_count": 1, "way": {"_count": 1}}, "escaped": {"_count": 1, "prisoner": {"_count": 1}}, "criminal": {"_count": 1, "or": {"_count": 1}}, "Stan": {"_count": 1, "Shunpike": {"_count": 1}}, "Muggles": {"_count": 1, "use": {"_count": 1}}, "fast": {"_count": 2, "": {"_count": 2}}, "place": {"_count": 7, "": {"_count": 5}, "he": {"_count": 1}, "without": {"_count": 1}}, "Arry": {"_count": 1, "Potter": {"_count": 1}}, "remains": {"_count": 1, "said": {"_count": 1}}, "tested": {"_count": 1, "Harrys": {"_count": 1}}, "just": {"_count": 8, "to": {"_count": 1}, "about": {"_count": 1}, "last": {"_count": 1}, "proves": {"_count": 1}, "shows": {"_count": 1}, "because": {"_count": 1}, "leaves": {"_count": 1}, "missed": {"_count": 1}}, "Scabbers": {"_count": 6, "had": {"_count": 1}, "was": {"_count": 4}, "once": {"_count": 1}}, "witch": {"_count": 3, "said": {"_count": 1}, "who": {"_count": 1}, "borrowing": {"_count": 1}}, "hanging": {"_count": 1, "over": {"_count": 1}}, "Blacks": {"_count": 2, "after": {"_count": 1}, "been": {"_count": 1}}, "bothered": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "Ill": {"_count": 4, "be": {"_count": 1}, "have": {"_count": 2}, "do": {"_count": 1}}, "noise": {"_count": 4, "": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}}, "make": {"_count": 3, "you": {"_count": 1}, "sense": {"_count": 1}, "": {"_count": 1}}, "luggage": {"_count": 1, "had": {"_count": 1}}, "chocolate": {"_count": 1, "you": {"_count": 1}}, "about": {"_count": 11, "": {"_count": 9}, "a": {"_count": 1}, "how": {"_count": 1}}, "expression": {"_count": 2, "only": {"_count": 1}, "shes": {"_count": 1}}, "Arithmancy": {"_count": 2, "nine": {"_count": 1}, "witch": {"_count": 1}}, "trespass": {"_count": 1, "upon": {"_count": 1}}, "descending": {"_count": 1, "too": {"_count": 1}}, "books": {"_count": 2, "wouldnt": {"_count": 1}, "not": {"_count": 1}}, "looks": {"_count": 4, "like": {"_count": 4}}, "before": {"_count": 11, "": {"_count": 7}, "the": {"_count": 1}, "said": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 1}}, "haunts": {"_count": 1, "churchyards": {"_count": 1}}, "early": {"_count": 1, "as": {"_count": 1}}, "Sibyll": {"_count": 2, "Trelawney": {"_count": 1}, "": {"_count": 1}}, "cup": {"_count": 1, "": {"_count": 1}}, "bits": {"_count": 2, "of": {"_count": 2}}, "bound": {"_count": 4, "it": {"_count": 1}, "Lupin": {"_count": 1}, "him": {"_count": 2}}, "try": {"_count": 1, "and": {"_count": 1}}, "thick": {"_count": 1, "skull": {"_count": 1}}, "poured": {"_count": 1, "from": {"_count": 1}}, "gum": {"_count": 1, "out": {"_count": 1}}, "repels": {"_count": 1, "a": {"_count": 1}}, "really": {"_count": 9, "finishes": {"_count": 1}, "roared": {"_count": 1}, "flew": {"_count": 1}, "wasnt": {"_count": 1}, "is": {"_count": 2}, "how": {"_count": 1}, "and": {"_count": 2}}, "frightens": {"_count": 1, "you": {"_count": 1}}, "vulturetopped": {"_count": 1, "hat": {"_count": 1}}, "green": {"_count": 1, "dress": {"_count": 1}}, "big": {"_count": 6, "red": {"_count": 1}, "stupid": {"_count": 1}, "bushy": {"_count": 1}, "you": {"_count": 1}, "mirror": {"_count": 1}, "Hufflepuff": {"_count": 1}}, "scares": {"_count": 1, "you": {"_count": 1}}, "banshee": {"_count": 1, "": {"_count": 1}}, "hat": {"_count": 1, "": {"_count": 1}}, "lurked": {"_count": 2, "wherever": {"_count": 1}, "in": {"_count": 1}}, "zoomed": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 31, "front": {"_count": 1}, "the": {"_count": 7}, "your": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 3}, "mind": {"_count": 2}, "writing": {"_count": 1}, "Harrys": {"_count": 1}, "another": {"_count": 1}, "time": {"_count": 1}, "Percys": {"_count": 1}, "their": {"_count": 1}, "twentyfour": {"_count": 1}, "his": {"_count": 2}, "entering": {"_count": 1}, "themselves": {"_count": 1}, "killing": {"_count": 1}, "all": {"_count": 1}, "that": {"_count": 1}, "an": {"_count": 1}, "these": {"_count": 1}}, "animal": {"_count": 1, "": {"_count": 1}}, "greatly": {"_count": 4, "annoyed": {"_count": 1}, "enhanced": {"_count": 1}, "amused": {"_count": 1}, "dilutes": {"_count": 1}}, "so": {"_count": 3, "he": {"_count": 1}, "far": {"_count": 1}, "intrigued": {"_count": 1}}, "directly": {"_count": 1, "Lupin": {"_count": 1}}, "helps": {"_count": 1, "": {"_count": 1}}, "ended": {"_count": 1, "with": {"_count": 1}}, "strips": {"_count": 1, "of": {"_count": 1}}, "Sirius": {"_count": 44, "Black": {"_count": 6}, "was": {"_count": 13}, "had": {"_count": 8}, "Buckbeak": {"_count": 1}, "hadnt": {"_count": 1}, "managing": {"_count": 1}, "spoke": {"_count": 1}, "is": {"_count": 1}, "might": {"_count": 2}, "wanted": {"_count": 1}, "isnt": {"_count": 1}, "11": {"_count": 1}, "who": {"_count": 1}, "died": {"_count": 1}, "remain": {"_count": 1}, "took": {"_count": 1}, "did": {"_count": 1}, "also": {"_count": 1}, "knew": {"_count": 1}}, "still": {"_count": 7, "filled": {"_count": 1}, "haunts": {"_count": 1}, "attached": {"_count": 1}, "resides": {"_count": 1}, "showed": {"_count": 1}, "doesnt": {"_count": 1}, "had": {"_count": 1}}, "everything": {"_count": 1, "was": {"_count": 1}}, "tall": {"_count": 1, "goodlooking": {"_count": 1}}, "extra": {"_count": 1, "torches": {"_count": 1}}, "gale": {"_count": 1, "": {"_count": 1}}, "distracted": {"_count": 1, "him": {"_count": 1}}, "every": {"_count": 11, "inch": {"_count": 2}, "head": {"_count": 1}, "single": {"_count": 3}, "occupant": {"_count": 1}, "step": {"_count": 1}, "syllable": {"_count": 1}, "time": {"_count": 2}}, "screaming": {"_count": 1, "voice": {"_count": 1}}, "angry": {"_count": 1, "": {"_count": 1}}, "walk": {"_count": 1, "this": {"_count": 1}}, "excitement": {"_count": 1, "": {"_count": 1}}, "dementor": {"_count": 1, "on": {"_count": 1}}, "persisted": {"_count": 1, "into": {"_count": 1}}, "turned": {"_count": 6, "out": {"_count": 3}, "almost": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}}, "Georges": {"_count": 1, "wand": {"_count": 1}}, "proclaimed": {"_count": 1, "Messrs": {"_count": 1}}, "oneeyed": {"_count": 1, "old": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "map": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "mdear": {"_count": 1, "": {"_count": 1}}, "work": {"_count": 3, "": {"_count": 2}, "then": {"_count": 1}}, "half": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "flyin": {"_count": 1, "motorbike": {"_count": 1}}, "motorbike": {"_count": 1, "what": {"_count": 1}}, "matters": {"_count": 6, "to": {"_count": 2}, "would": {"_count": 1}, "within": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}}, "fat": {"_count": 2, "little": {"_count": 1}, "head": {"_count": 1}}, "Fang": {"_count": 1, "": {"_count": 1}}, "dripped": {"_count": 1, "down": {"_count": 1}}, "date": {"_count": 1, "": {"_count": 1}}, "hardly": {"_count": 1, "any": {"_count": 1}}, "much": {"_count": 6, "on": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "out": {"_count": 1}, "dislike": {"_count": 1}, "": {"_count": 1}}, "match": {"_count": 1, "": {"_count": 1}}, "detention": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "unless": {"_count": 2, "Scabbers": {"_count": 1}, "they": {"_count": 1}}, "Shooting": {"_count": 1, "Star": {"_count": 1}}, "Lupin": {"_count": 10, "had": {"_count": 2}, "wouldnt": {"_count": 1}, "was": {"_count": 1}, "wanted": {"_count": 1}, "at": {"_count": 1}, "stop": {"_count": 1}, "might": {"_count": 1}, "nearly": {"_count": 1}, "": {"_count": 1}}, "acts": {"_count": 1, "as": {"_count": 1}}, "idea": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}}, "awaits": {"_count": 1, "Sirius": {"_count": 1}}, "Crookshanks": {"_count": 5, "was": {"_count": 2}, "had": {"_count": 2}, "fell": {"_count": 1}}, "Cho": {"_count": 4, "Chang": {"_count": 2}, "had": {"_count": 2}}, "Alicia": {"_count": 2, "Spinnet": {"_count": 1}, "had": {"_count": 1}}, "those": {"_count": 8, "eyes": {"_count": 1}, "people": {"_count": 1}, "who": {"_count": 3}, "are": {"_count": 1}, "of": {"_count": 1}, "wands": {"_count": 1}}, "Firebolt": {"_count": 1, "go": {"_count": 1}}, "Buckbeaks": {"_count": 1, "trial": {"_count": 1}}, "vampire": {"_count": 1, "essay": {"_count": 1}}, "hippogriffs": {"_count": 2, "as": {"_count": 1}, "escape": {"_count": 1}}, "Snapes": {"_count": 4, "face": {"_count": 1}, "dislike": {"_count": 1}, "accusation": {"_count": 1}, "on": {"_count": 1}}, "an": {"_count": 5, "idiot": {"_count": 1}, "hour": {"_count": 1}, "area": {"_count": 1}, "illegal": {"_count": 1}, "illness": {"_count": 1}}, "insults": {"_count": 1, "anybody": {"_count": 1}}, "up": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "its": {"_count": 1}}, "from": {"_count": 7, "the": {"_count": 2}, "me": {"_count": 1}, "YouKnowWho": {"_count": 1}, "said": {"_count": 1}, "Siriuss": {"_count": 1}, "History": {"_count": 1}}, "Miss": {"_count": 3, "Granger": {"_count": 3}}, "amount": {"_count": 1, "to": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "something": {"_count": 14, "very": {"_count": 1}, "was": {"_count": 8}, "had": {"_count": 3}, "dramatic": {"_count": 1}, "strange": {"_count": 1}}, "sounds": {"_count": 3, "as": {"_count": 1}, "like": {"_count": 1}, "about": {"_count": 1}}, "11": {"_count": 2, "count": {"_count": 1}, "be": {"_count": 1}}, "met": {"_count": 2, "them": {"_count": 1}, "Harrys": {"_count": 1}}, "mean": {"_count": 18, "the": {"_count": 2}, "she": {"_count": 2}, "": {"_count": 9}, "theyve": {"_count": 1}, "were": {"_count": 1}, "that": {"_count": 2}, "then": {"_count": 1}}, "leg": {"_count": 1, "even": {"_count": 1}}, "missed": {"_count": 1, "Harrys": {"_count": 1}}, "essay": {"_count": 2, "hoping": {"_count": 1}, "for": {"_count": 1}}, "leads": {"_count": 3, "to": {"_count": 3}}, "freezes": {"_count": 1, "it": {"_count": 1}}, "Id": {"_count": 6, "betrayed": {"_count": 2}, "led": {"_count": 1}, "never": {"_count": 1}, "have": {"_count": 1}, "make": {"_count": 1}}, "being": {"_count": 3, "an": {"_count": 1}, "intercepted": {"_count": 1}, "Dumbledores": {"_count": 1}}, "far": {"_count": 7, "": {"_count": 1}, "from": {"_count": 2}, "said": {"_count": 1}, "away": {"_count": 1}, "he": {"_count": 1}, "out": {"_count": 1}}, "shouted": {"_count": 2, "": {"_count": 1}, "Professor": {"_count": 1}}, "mad": {"_count": 2, "cat": {"_count": 1}, "headdress": {"_count": 1}}, "rat": {"_count": 1, "What": {"_count": 1}}, "Pettigrew": {"_count": 2, "took": {"_count": 1}, "could": {"_count": 1}}, "alerted": {"_count": 1, "him": {"_count": 1}}, "Headmaster": {"_count": 1, "": {"_count": 1}}, "werewolves": {"_count": 1, "are": {"_count": 1}}, "hourglass": {"_count": 1, "thing": {"_count": 1}}, "going": {"_count": 3, "to": {"_count": 2}, "down": {"_count": 1}}, "without": {"_count": 4, "being": {"_count": 1}, "realizing": {"_count": 1}, "telling": {"_count": 1}, "another": {"_count": 1}}, "cloud": {"_count": 1, "was": {"_count": 1}}, "Patronus": {"_count": 1, "would": {"_count": 1}}, "weve": {"_count": 5, "got": {"_count": 3}, "tried": {"_count": 1}, "wanted": {"_count": 1}}, "James": {"_count": 2, "would": {"_count": 1}, "and": {"_count": 1}}, "predicting": {"_count": 1, "the": {"_count": 1}}, "particular": {"_count": 8, "Patronus": {"_count": 1}, "barrier": {"_count": 1}, "moment": {"_count": 1}, "day": {"_count": 1}, "excursion": {"_count": 1}, "brotherly": {"_count": 1}, "book": {"_count": 1}, "place": {"_count": 1}}, "Frank": {"_count": 3, "Bryce": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}}, "each": {"_count": 4, "of": {"_count": 1}, "was": {"_count": 1}, "tuber": {"_count": 1}, "had": {"_count": 1}}, "woke": {"_count": 1, "him": {"_count": 1}}, "many": {"_count": 14, "of": {"_count": 7}, "wizards": {"_count": 1}, "admit": {"_count": 1}, "teachers": {"_count": 1}, "students": {"_count": 2}, "have": {"_count": 1}, "heads": {"_count": 1}}, "right": {"_count": 7, "": {"_count": 5}, "now": {"_count": 1}, "in": {"_count": 1}}, "dimly": {"_count": 1, "lit": {"_count": 1}}, "went": {"_count": 5, "wrong": {"_count": 1}, "through": {"_count": 1}, "He": {"_count": 1}, "quite": {"_count": 1}, "on": {"_count": 1}}, "heads": {"_count": 1, "turned": {"_count": 1}}, "wherever": {"_count": 1, "Sirius": {"_count": 1}}, "precedes": {"_count": 1, "sunrise": {"_count": 1}}, "not": {"_count": 9, "even": {"_count": 3}, "only": {"_count": 1}, "one": {"_count": 2}, "blustered": {"_count": 1}, "that": {"_count": 1}, "enough": {"_count": 1}}, "unnaturalness": {"_count": 1, "under": {"_count": 1}}, "Bill": {"_count": 6, "had": {"_count": 2}, "and": {"_count": 2}, "will": {"_count": 1}, "Fred": {"_count": 1}}, "zigzagged": {"_count": 1, "through": {"_count": 1}}, "report": {"_count": 1, "will": {"_count": 1}}, "seriously": {"_count": 2, "endanger": {"_count": 1}, "scared": {"_count": 1}}, "event": {"_count": 1, "is": {"_count": 1}}, "Apparating": {"_count": 1, "meant": {"_count": 1}}, "deceived": {"_count": 1, "nobody": {"_count": 1}}, "daybreak": {"_count": 1, "was": {"_count": 1}}, "read": {"_count": 4, "WEEZLY": {"_count": 1}, "THE": {"_count": 1}, "REUSABLE": {"_count": 1}, "SEVERUS": {"_count": 1}}, "once": {"_count": 7, "Bill": {"_count": 1}, "he": {"_count": 1}, "more": {"_count": 1}, "you": {"_count": 1}, "Voldemort": {"_count": 1}, "we": {"_count": 1}, "people": {"_count": 1}}, "stretched": {"_count": 3, "in": {"_count": 1}, "over": {"_count": 1}, "between": {"_count": 1}}, "rose": {"_count": 4, "only": {"_count": 1}, "from": {"_count": 1}, "right": {"_count": 1}, "to": {"_count": 1}}, "lot": {"_count": 4, "": {"_count": 2}, "loose": {"_count": 1}, "how": {"_count": 1}}, "fire": {"_count": 3, "started": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "Ireland": {"_count": 1, "wins": {"_count": 1}}, "Percy": {"_count": 7, "hissed": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "appeared": {"_count": 1}, "wanted": {"_count": 1}, "Weasley": {"_count": 1}}, "convincing": {"_count": 1, "in": {"_count": 1}}, "played": {"_count": 1, "their": {"_count": 1}}, "ten": {"_count": 3, "cathedrals": {"_count": 1}, "high": {"_count": 1}, "more": {"_count": 1}}, "suggested": {"_count": 8, "there": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 3}, "he": {"_count": 1}, "frail": {"_count": 1}}, "mattered": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "Bagman": {"_count": 5, "only": {"_count": 1}, "was": {"_count": 3}, "wanted": {"_count": 1}}, "Krum": {"_count": 3, "hardly": {"_count": 1}, "was": {"_count": 2}}, "boys": {"_count": 1, "yelled": {"_count": 1}}, "staring": {"_count": 1, "through": {"_count": 1}}, "look": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "move": {"_count": 1, "was": {"_count": 1}}, "quite": {"_count": 1, "suddenly": {"_count": 1}}, "size": {"_count": 1, "hard": {"_count": 1}}, "Mudblood": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "masked": {"_count": 1, "lot": {"_count": 1}}, "Mark": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "spell": {"_count": 7, "": {"_count": 3}, "did": {"_count": 1}, "Will": {"_count": 1}, "you": {"_count": 1}, "to": {"_count": 1}}, "wands": {"_count": 2, "told": {"_count": 1}, "done": {"_count": 1}}, "skull": {"_count": 2, "thing": {"_count": 2}}, "lots": {"_count": 1, "of": {"_count": 1}}, "paper": {"_count": 2, "I": {"_count": 1}, "was": {"_count": 1}}, "several": {"_count": 11, "bodies": {"_count": 2}, "owls": {"_count": 1}, "of": {"_count": 3}, "people": {"_count": 3}, "Muggles": {"_count": 1}, "teachers": {"_count": 1}}, "journey": {"_count": 1, "in": {"_count": 1}}, "conjured": {"_count": 1, "the": {"_count": 1}}, "elf": {"_count": 3, "while": {"_count": 1}, "Winky": {"_count": 1}, "": {"_count": 1}}, "nutter": {"_count": 1, "Your": {"_count": 1}}, "boy": {"_count": 6, "down": {"_count": 1}, "": {"_count": 2}, "has": {"_count": 1}, "who": {"_count": 1}, "have": {"_count": 1}}, "flashed": {"_count": 1, "across": {"_count": 1}}, "has": {"_count": 11, "not": {"_count": 2}, "arisen": {"_count": 1}, "happened": {"_count": 2}, "held": {"_count": 1}, "scented": {"_count": 1}, "proved": {"_count": 1}, "been": {"_count": 2}, "suffered": {"_count": 1}}, "pointy": {"_count": 1, "thing": {"_count": 1}}, "wont": {"_count": 4, "matter": {"_count": 1}, "be": {"_count": 1}, "make": {"_count": 1}, "activate": {"_count": 1}}, "cluttered": {"_count": 1, "the": {"_count": 1}}, "trance": {"_count": 1, "had": {"_count": 1}}, "Saturn": {"_count": 1, "was": {"_count": 1}}, "cant": {"_count": 4, "be": {"_count": 2}, "have": {"_count": 1}, "you": {"_count": 1}}, "porky": {"_count": 1, "or": {"_count": 1}}, "echoed": {"_count": 9, "through": {"_count": 4}, "around": {"_count": 1}, "noisily": {"_count": 1}, "across": {"_count": 2}, "the": {"_count": 1}}, "Moodys": {"_count": 1, "rolling": {"_count": 1}}, "then": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "away": {"_count": 4, "Miss": {"_count": 1}, "right": {"_count": 1}, "will": {"_count": 1}, "now": {"_count": 1}}, "Nevilles": {"_count": 3, "hands": {"_count": 1}, "favorite": {"_count": 1}, "screams": {"_count": 1}}, "spider": {"_count": 3, "": {"_count": 1}, "just": {"_count": 1}, "jerking": {"_count": 1}}, "needs": {"_count": 2, "a": {"_count": 1}, "watching": {"_count": 1}}, "doesnt": {"_count": 8, "matter": {"_count": 2}, "mean": {"_count": 4}, "make": {"_count": 1}, "seem": {"_count": 1}}, "nevertheless": {"_count": 2, "carried": {"_count": 2}}, "buys": {"_count": 1, "a": {"_count": 1}}, "perhaps": {"_count": 3, "he": {"_count": 2}, "you": {"_count": 1}}, "Siriuss": {"_count": 4, "reply": {"_count": 1}, "head": {"_count": 1}, "will": {"_count": 1}, "parents": {"_count": 1}}, "Moody": {"_count": 4, "had": {"_count": 1}, "was": {"_count": 2}, "wasnt": {"_count": 1}}, "profile": {"_count": 1, "": {"_count": 1}}, "cold": {"_count": 3, "said": {"_count": 1}, "cruel": {"_count": 2}}, "goblet": {"_count": 9, "youre": {"_count": 1}, "knowing": {"_count": 1}, "": {"_count": 3}, "into": {"_count": 1}, "did": {"_count": 1}, "I": {"_count": 1}, "shouldnt": {"_count": 1}}, "normally": {"_count": 1, "bore": {"_count": 1}}, "Warrington": {"_count": 1, "got": {"_count": 1}}, "aftershave": {"_count": 1, "": {"_count": 1}}, "Madame": {"_count": 2, "Maxime": {"_count": 2}}, "myself": {"_count": 1, "Dumbledore": {"_count": 1}}, "Dumblydorr": {"_count": 1, "must": {"_count": 1}}, "dream": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "Lee": {"_count": 1, "had": {"_count": 1}}, "line": {"_count": 1, "said": {"_count": 1}}, "Violet": {"_count": 1, "shes": {"_count": 1}}, "Rons": {"_count": 5, "bed": {"_count": 1}, "version": {"_count": 1}, "niffler": {"_count": 1}, "face": {"_count": 1}, "support": {"_count": 1}}, "Hufflepuff": {"_count": 1, "House": {"_count": 1}}, "Cedric": {"_count": 9, "was": {"_count": 2}, "looked": {"_count": 1}, "had": {"_count": 3}, "might": {"_count": 1}, "died": {"_count": 1}, "Diggory": {"_count": 1}}, "difficult": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 2}, "ter": {"_count": 1}}, "burnt": {"_count": 1, "brightly": {"_count": 1}}, "contrasted": {"_count": 1, "oddly": {"_count": 1}}, "suited": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "tournament": {"_count": 2, "would": {"_count": 1}, "hes": {"_count": 1}}, "sustained": {"_count": 1, "Harry": {"_count": 1}}, "learning": {"_count": 1, "the": {"_count": 1}}, "Wonky": {"_count": 1, "Faint": {"_count": 1}}, "bluegray": {"_count": 1, "and": {"_count": 1}}, "Daily": {"_count": 1, "Prophet": {"_count": 1}}, "Azkaban": {"_count": 1, "had": {"_count": 1}}, "deadened": {"_count": 1, "haunted": {"_count": 1}}, "Skeeter": {"_count": 6, "womans": {"_count": 1}, "cow": {"_count": 1}, "woman": {"_count": 3}, "has": {"_count": 1}}, "Ministry": {"_count": 2, "of": {"_count": 1}, "hearing": {"_count": 1}}, "imbues": {"_count": 1, "their": {"_count": 1}}, "Maxime": {"_count": 1, "and": {"_count": 1}}, "Fleur": {"_count": 3, "showed": {"_count": 1}, "girl": {"_count": 1}, "was": {"_count": 1}}, "Horntail": {"_count": 2, "was": {"_count": 1}, "Harry": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "smoked": {"_count": 1, "and": {"_count": 1}}, "kind": {"_count": 3, "of": {"_count": 3}}, "dragon": {"_count": 2, "": {"_count": 2}}, "Karkaroff": {"_count": 2, "had": {"_count": 1}, "could": {"_count": 1}}, "week": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "six": {"_count": 3, "or": {"_count": 1}, "people": {"_count": 1}, "extra": {"_count": 1}}, "spew": {"_count": 1, "stuff": {"_count": 1}}, "kitchen": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 12, "": {"_count": 10}, "Harry": {"_count": 1}, "on": {"_count": 1}}, "Crouch": {"_count": 2, "man": {"_count": 1}, "had": {"_count": 1}}, "does": {"_count": 5, "NOT": {"_count": 1}, "not": {"_count": 3}, "it": {"_count": 1}}, "Padma": {"_count": 1, "Patils": {"_count": 1}}, "hex": {"_count": 1, "on": {"_count": 1}}, "egg": {"_count": 8, "you": {"_count": 1}, "": {"_count": 2}, "clue": {"_count": 2}, "Harry": {"_count": 1}, "No": {"_count": 1}, "for": {"_count": 1}}, "houseelf": {"_count": 1, "of": {"_count": 1}}, "revolting": {"_count": 1, "Skeeter": {"_count": 1}}, "Davies": {"_count": 2, "was": {"_count": 2}}, "eye": {"_count": 1, "should": {"_count": 1}}, "wizards": {"_count": 4, "took": {"_count": 1}, "would": {"_count": 1}, "have": {"_count": 1}, "cannot": {"_count": 1}}, "golden": {"_count": 2, "egg": {"_count": 1}, "symbols": {"_count": 1}}, "statue": {"_count": 1, "of": {"_count": 1}}, "Christmas": {"_count": 2, "was": {"_count": 2}}, "February": {"_count": 1, "the": {"_count": 1}}, "caused": {"_count": 10, "many": {"_count": 1}, "Hedwig": {"_count": 1}, "Malfoy": {"_count": 1}, "everyone": {"_count": 1}, "Seamus": {"_count": 1}, "Lord": {"_count": 1}, "the": {"_count": 1}, "toenails": {"_count": 1}, "half": {"_count": 1}, "Dumbledore": {"_count": 1}}, "remained": {"_count": 2, "joined": {"_count": 1}, "was": {"_count": 1}}, "woman": {"_count": 6, "": {"_count": 2}, "wrote": {"_count": 1}, "is": {"_count": 1}, "she": {"_count": 1}, "over": {"_count": 1}}, "point": {"_count": 8, "": {"_count": 2}, "this": {"_count": 1}, "forcing": {"_count": 1}, "had": {"_count": 1}, "onward": {"_count": 1}, "it": {"_count": 1}, "looked": {"_count": 1}}, "be": {"_count": 7, "do": {"_count": 1}, "": {"_count": 2}, "\u2018drowning": {"_count": 1}, "a": {"_count": 1}, "real": {"_count": 1}, "to": {"_count": 1}}, "excuse": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "foul": {"_count": 1, "Skeeter": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "Myrtle": {"_count": 1, "had": {"_count": 1}}, "lake": {"_count": 2, "was": {"_count": 1}, "Potter": {"_count": 1}}, "bath": {"_count": 1, "with": {"_count": 1}}, "correctly": {"_count": 1, "Snape": {"_count": 1}}, "never": {"_count": 2, "come": {"_count": 1}, "again": {"_count": 1}}, "Dumbledores": {"_count": 6, "very": {"_count": 1}, "safety": {"_count": 1}, "been": {"_count": 1}, "body": {"_count": 2}, "Army": {"_count": 1}}, "these": {"_count": 6, "wouldnt": {"_count": 1}, "crimes": {"_count": 1}, "problems": {"_count": 1}, "examinations": {"_count": 1}, "individuals": {"_count": 1}, "meetings": {"_count": 1}}, "Drought": {"_count": 1, "Charm": {"_count": 1}}, "felt": {"_count": 2, "as": {"_count": 1}, "flattened": {"_count": 1}}, "bore": {"_count": 4, "no": {"_count": 1}, "evidence": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "lined": {"_count": 3, "what": {"_count": 1}, "the": {"_count": 2}}, "Krums": {"_count": 1, "new": {"_count": 1}}, "song": {"_count": 3, "thing": {"_count": 1}, "seriously": {"_count": 1}, "that": {"_count": 1}}, "Viktor": {"_count": 2, "Krum": {"_count": 2}}, "Pansy": {"_count": 1, "had": {"_count": 1}}, "next": {"_count": 3, "time": {"_count": 2}, "June": {"_count": 1}}, "table": {"_count": 1, "in": {"_count": 1}}, "three": {"_count": 3, "drops": {"_count": 2}, "people": {"_count": 1}}, "Truth": {"_count": 1, "Potion": {"_count": 1}}, "screamed": {"_count": 1, "loudly": {"_count": 1}}, "ill": {"_count": 1, "if": {"_count": 1}}, "box": {"_count": 2, "said": {"_count": 1}, "that": {"_count": 1}}, "bring": {"_count": 1, "out": {"_count": 1}}, "threatened": {"_count": 2, "to": {"_count": 1}, "rudeness": {"_count": 1}}, "tell": {"_count": 1, "you": {"_count": 1}}, "quiet": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "gillyweed": {"_count": 1, "Dobby": {"_count": 1}}, "sirs": {"_count": 1, "and": {"_count": 1}}, "digs": {"_count": 1, "up": {"_count": 1}}, "Chudley": {"_count": 1, "Cannon": {"_count": 1}}, "Weatherby": {"_count": 2, "send": {"_count": 1}, "will": {"_count": 1}}, "memo": {"_count": 1, "from": {"_count": 1}}, "kindly": {"_count": 1, "alert": {"_count": 1}}, "serious": {"_count": 1, "theyd": {"_count": 1}}, "hes": {"_count": 12, "not": {"_count": 2}, "out": {"_count": 1}, "become": {"_count": 1}, "the": {"_count": 1}, "come": {"_count": 1}, "mad": {"_count": 1}, "dangerous": {"_count": 1}, "back": {"_count": 1}, "sided": {"_count": 1}, "about": {"_count": 1}, "dead": {"_count": 1}}, "practicing": {"_count": 1, "it": {"_count": 1}}, "sticking": {"_count": 1, "his": {"_count": 1}}, "illuminated": {"_count": 3, "the": {"_count": 2}, "St": {"_count": 1}}, "rows": {"_count": 1, "and": {"_count": 1}}, "reverberated": {"_count": 1, "around": {"_count": 1}}, "basin": {"_count": 1, "in": {"_count": 1}}, "long": {"_count": 4, "ago": {"_count": 1}, "pierced": {"_count": 1}, "dirtyblonde": {"_count": 1}, "and": {"_count": 1}}, "chair": {"_count": 1, "with": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 4, "operated": {"_count": 1}, "has": {"_count": 2}, "and": {"_count": 1}}, "stuffs": {"_count": 1, "your": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "failed": {"_count": 2, "said": {"_count": 1}, "to": {"_count": 1}}, "court": {"_count": 1, "thing": {"_count": 1}}, "deflected": {"_count": 1, "minor": {"_count": 1}}, "Shield": {"_count": 1, "Charm": {"_count": 1}}, "maze": {"_count": 4, "safely": {"_count": 1}, "preferably": {"_count": 1}, "tonight": {"_count": 1}, "": {"_count": 1}}, "Potters": {"_count": 3, "brain": {"_count": 1}, "been": {"_count": 1}, "put": {"_count": 1}}, "working": {"_count": 2, "at": {"_count": 1}, "in": {"_count": 1}}, "evenings": {"_count": 1, "task": {"_count": 1}}, "image": {"_count": 1, "of": {"_count": 1}}, "badly": {"_count": 1, "": {"_count": 1}}, "intersected": {"_count": 1, "with": {"_count": 1}}, "contained": {"_count": 3, "an": {"_count": 1}, "several": {"_count": 1}, "the": {"_count": 1}}, "bundle": {"_count": 1, "opened": {"_count": 1}}, "flat": {"_count": 1, "and": {"_count": 1}}, "pierced": {"_count": 1, "the": {"_count": 1}}, "Wormtail": {"_count": 1, "was": {"_count": 1}}, "house": {"_count": 5, "upon": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 2}, "where": {"_count": 1}}, "fool": {"_count": 1, "who": {"_count": 1}}, "champion": {"_count": 1, "of": {"_count": 1}}, "Lucius": {"_count": 4, "": {"_count": 1}, "Malfoy": {"_count": 2}, "would": {"_count": 1}}, "soon": {"_count": 1, "Macnair": {"_count": 1}}, "faithful": {"_count": 1, "servant": {"_count": 1}}, "our": {"_count": 3, "young": {"_count": 1}, "father": {"_count": 1}, "relationship": {"_count": 1}}, "possessed": {"_count": 1, "them": {"_count": 1}}, "fate": {"_count": 1, "favors": {"_count": 1}}, "revived": {"_count": 1, "me": {"_count": 1}}, "Muggleloving": {"_count": 1, "fool": {"_count": 1}}, "satisfaction": {"_count": 1, "": {"_count": 1}}, "thread": {"_count": 1, "of": {"_count": 1}}, "bead": {"_count": 2, "moved": {"_count": 1}, "of": {"_count": 1}}, "till": {"_count": 1, "morning": {"_count": 1}}, "indefinable": {"_count": 2, "sense": {"_count": 1}, "air": {"_count": 1}}, "fact": {"_count": 1, "straightaway": {"_count": 1}}, "gold": {"_count": 1, "said": {"_count": 1}}, "distinguish": {"_count": 1, "Hufflepuff": {"_count": 1}}, "few": {"_count": 1, "wizards": {"_count": 1}}, "ship": {"_count": 1, "without": {"_count": 1}}, "tree": {"_count": 1, "": {"_count": 1}}, "bet": {"_count": 1, "we": {"_count": 1}}, "heralded": {"_count": 1, "the": {"_count": 1}}, "trembled": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "Dobby": {"_count": 7, "was": {"_count": 2}, "did": {"_count": 1}, "had": {"_count": 1}, "can": {"_count": 1}, "": {"_count": 1}, "deserved": {"_count": 1}}, "delivered": {"_count": 1, "the": {"_count": 1}}, "graveyard": {"_count": 4, "and": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 2}}, "tombstone": {"_count": 1, "and": {"_count": 1}}, "summer": {"_count": 1, "": {"_count": 1}}, "whenever": {"_count": 1, "Dudley": {"_count": 1}}, "halfway": {"_count": 1, "along": {"_count": 1}}, "boxing": {"_count": 1, "title": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "madhouse": {"_count": 1, "you": {"_count": 1}}, "awful": {"_count": 2, "boy": {"_count": 1}, "shriveled": {"_count": 1}}, "works": {"_count": 2, "against": {"_count": 1}, "though": {"_count": 1}}, "alleyway": {"_count": 5, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "on": {"_count": 1}, "is": {"_count": 1}}, "divided": {"_count": 1, "the": {"_count": 1}}, "settles": {"_count": 1, "it": {"_count": 1}}, "flying": {"_count": 1, "Ford": {"_count": 1}}, "Howler": {"_count": 3, "from": {"_count": 1}, "been": {"_count": 1}, "": {"_count": 1}}, "comforting": {"_count": 1, "idea": {"_count": 1}}, "burglars": {"_count": 1, "would": {"_count": 1}}, "lured": {"_count": 1, "them": {"_count": 1}}, "scum": {"_count": 1, "wore": {"_count": 1}}, "plate": {"_count": 1, "when": {"_count": 1}}, "likely": {"_count": 1, "": {"_count": 1}}, "nearly": {"_count": 5, "knocked": {"_count": 1}, "everyone": {"_count": 1}, "unseated": {"_count": 1}, "six": {"_count": 1}, "cracked": {"_count": 1}}, "well": {"_count": 4, "though": {"_count": 1}, "done": {"_count": 1}, "": {"_count": 1}, "since": {"_count": 1}}, "relieved": {"_count": 1, "the": {"_count": 1}}, "settled": {"_count": 1, "the": {"_count": 1}}, "nobodys": {"_count": 2, "having": {"_count": 1}, "proved": {"_count": 1}}, "Dads": {"_count": 1, "got": {"_count": 1}}, "shes": {"_count": 3, "got": {"_count": 2}, "good": {"_count": 1}}, "normal": {"_count": 2, "Hermione": {"_count": 1}, "for": {"_count": 1}}, "goblin": {"_count": 1, "family": {"_count": 1}}, "finally": {"_count": 1, "she": {"_count": 1}}, "helped": {"_count": 1, "": {"_count": 1}}, "YouKnowWho": {"_count": 6, "really": {"_count": 1}, "is": {"_count": 2}, "was": {"_count": 1}, "had": {"_count": 1}, "asked": {"_count": 1}}, "houseelfs": {"_count": 1, "been": {"_count": 1}}, "running": {"_count": 1, "a": {"_count": 1}}, "rendered": {"_count": 2, "Extendable": {"_count": 1}, "her": {"_count": 1}}, "flattened": {"_count": 1, "his": {"_count": 1}}, "Kreacher": {"_count": 7, "did": {"_count": 1}, "coming": {"_count": 1}, "must": {"_count": 1}, "could": {"_count": 2}, "was": {"_count": 1}, "had": {"_count": 1}}, "required": {"_count": 1, "a": {"_count": 1}}, "rattled": {"_count": 1, "them": {"_count": 1}}, "firelegs": {"_count": 1, "report": {"_count": 1}}, "which": {"_count": 6, "led": {"_count": 1}, "phoenix": {"_count": 1}, "is": {"_count": 1}, "strengthens": {"_count": 1}, "strengthen": {"_count": 1}, "gives": {"_count": 1}}, "rested": {"_count": 1, "halfway": {"_count": 1}}, "age": {"_count": 3, "": {"_count": 2}, "had": {"_count": 1}}, "goaded": {"_count": 1, "Harry": {"_count": 1}}, "under": {"_count": 3, "the": {"_count": 1}, "Educational": {"_count": 1}, "his": {"_count": 1}}, "terrible": {"_count": 7, "rattling": {"_count": 1}, "woman": {"_count": 1}, "winged": {"_count": 1}, "snakelike": {"_count": 1}, "night": {"_count": 1}, "potion": {"_count": 1}, "place": {"_count": 1}}, "two": {"_count": 4, "dementors": {"_count": 1}, "of": {"_count": 3}}, "magic": {"_count": 4, "may": {"_count": 1}, "is": {"_count": 1}, "can": {"_count": 1}, "will": {"_count": 1}}, "threaten": {"_count": 2, "the": {"_count": 2}}, "occasion": {"_count": 5, "accepting": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 2}, "not": {"_count": 1}}, "says": {"_count": 3, "this": {"_count": 1}, "the": {"_count": 1}, "Gryffindor": {"_count": 1}}, "toilet": {"_count": 1, "in": {"_count": 1}}, "mans": {"_count": 1, "voice": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "involves": {"_count": 1, "sneaking": {"_count": 1}}, "flapped": {"_count": 2, "around": {"_count": 1}, "flailed": {"_count": 1}}, "living": {"_count": 2, "at": {"_count": 1}, "in": {"_count": 1}}, "term": {"_count": 1, "started": {"_count": 1}}, "badges": {"_count": 1, "must": {"_count": 1}}, "boggart": {"_count": 1, "before": {"_count": 1}}, "interesting": {"_count": 1, "": {"_count": 1}}, "barely": {"_count": 1, "an": {"_count": 1}}, "complete": {"_count": 1, "cow": {"_count": 1}}, "Fudges": {"_count": 1, "dearest": {"_count": 1}}, "GrubblyPlank": {"_count": 3, "woman": {"_count": 1}, "womans": {"_count": 2}}, "matched": {"_count": 1, "the": {"_count": 1}}, "Umbridge": {"_count": 10, "woman": {"_count": 3}, "is": {"_count": 1}, "was": {"_count": 1}, "tried": {"_count": 1}, "with": {"_count": 1}, "had": {"_count": 2}, "would": {"_count": 1}}, "ought": {"_count": 7, "to": {"_count": 7}}, "scorches": {"_count": 1, "": {"_count": 1}}, "attitude": {"_count": 1, "said": {"_count": 1}}, "runs": {"_count": 1, "in": {"_count": 1}}, "cardigan": {"_count": 1, "Parvati": {"_count": 1}}, "young": {"_count": 2, "when": {"_count": 1}, "mans": {"_count": 1}}, "Seamuss": {"_count": 1, "mother": {"_count": 1}}, "grindstone": {"_count": 1, "theyll": {"_count": 1}}, "between": {"_count": 2, "Neville": {"_count": 1}, "Dumbledore": {"_count": 1}}, "often": {"_count": 2, "comes": {"_count": 1}, "spoke": {"_count": 1}}, "more": {"_count": 3, "and": {"_count": 1}, "than": {"_count": 1}, "breakthroughs": {"_count": 1}}, "YouKnow": {"_count": 3, "Who": {"_count": 1}, "Whos": {"_count": 2}}, "homework": {"_count": 1, "get": {"_count": 1}}, "Seamus": {"_count": 1, "had": {"_count": 1}}, "overgrown": {"_count": 1, "moron": {"_count": 1}}, "Parvati": {"_count": 2, "and": {"_count": 2}}, "worsened": {"_count": 1, "dramatically": {"_count": 1}}, "blended": {"_count": 1, "only": {"_count": 1}}, "dreadful": {"_count": 1, "though": {"_count": 1}}, "beam": {"_count": 1, "of": {"_count": 1}}, "Weasleys": {"_count": 1, "riding": {"_count": 1}}, "hairstyle": {"_count": 1, "anyway": {"_count": 1}}, "nosebleed": {"_count": 1, "": {"_count": 1}}, "Angelina": {"_count": 1, "had": {"_count": 1}}, "Hermes": {"_count": 1, "": {"_count": 1}}, "knowledge": {"_count": 1, "for": {"_count": 1}}, "figures": {"_count": 1, "said": {"_count": 1}}, "Fudge": {"_count": 5, "doesnt": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "has": {"_count": 1}}, "Luna": {"_count": 2, "Lovegood": {"_count": 1}, "and": {"_count": 1}}, "Albus": {"_count": 5, "Dumbledore": {"_count": 3}, "too": {"_count": 1}, "s": {"_count": 1}}, "information": {"_count": 3, "private": {"_count": 1}, "": {"_count": 2}}, "stand": {"_count": 2, "for": {"_count": 1}, "in": {"_count": 1}}, "bad": {"_count": 4, "": {"_count": 1}, "at": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}}, "concerns": {"_count": 1, "you": {"_count": 1}}, "involved": {"_count": 2, "eating": {"_count": 1}, "Ginny": {"_count": 1}}, "clipboard": {"_count": 1, "and": {"_count": 1}}, "counterjinxes": {"_count": 1, "are": {"_count": 1}}, "minor": {"_count": 1, "drawback": {"_count": 1}}, "fair": {"_count": 1, "how": {"_count": 1}}, "correct": {"_count": 2, "": {"_count": 1}, "Miss": {"_count": 1}}, "maybe": {"_count": 1, "the": {"_count": 1}}, "S": {"_count": 2, "": {"_count": 2}}, "mate": {"_count": 1, "said": {"_count": 1}}, "calmed": {"_count": 1, "Harry": {"_count": 1}}, "hag": {"_count": 1, "teaching": {"_count": 1}}, "fullgrown": {"_count": 1, "wizards": {"_count": 1}}, "lunatic": {"_count": 1, "elf": {"_count": 1}}, "set": {"_count": 1, "his": {"_count": 1}}, "other": {"_count": 3, "pub": {"_count": 1}, "people": {"_count": 1}, "wand": {"_count": 1}}, "keeping": {"_count": 1, "your": {"_count": 1}}, "given": {"_count": 1, "her": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "sword": {"_count": 4, "in": {"_count": 1}, "was": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 1}}, "Sorcerous": {"_count": 1, "Stone": {"_count": 1}}, "suits": {"_count": 1, "everyone": {"_count": 1}}, "gallop": {"_count": 1, "across": {"_count": 1}}, "McGonagall": {"_count": 4, "would": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "blasted": {"_count": 1}}, "George": {"_count": 2, "was": {"_count": 1}, "has": {"_count": 1}}, "list": {"_count": 3, "lying": {"_count": 1}, "I": {"_count": 1}, "under": {"_count": 1}}, "nights": {"_count": 1, "Quidditch": {"_count": 1}}, "pub": {"_count": 1, "": {"_count": 1}}, "Michael": {"_count": 1, "Corner": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "Umbridges": {"_count": 1, "sign": {"_count": 1}}, "channels": {"_count": 1, "of": {"_count": 1}}, "weapon": {"_count": 2, "over": {"_count": 1}, "probably": {"_count": 1}}, "barmans": {"_count": 1, "got": {"_count": 1}}, "clears": {"_count": 1, "that": {"_count": 1}}, "storm": {"_count": 1, "": {"_count": 1}}, "everyones": {"_count": 1, "face": {"_count": 1}}, "tapestry": {"_count": 1, "of": {"_count": 1}}, "Dobbys": {"_count": 1, "plans": {"_count": 1}}, "safe": {"_count": 1, "": {"_count": 1}}, "also": {"_count": 1, "led": {"_count": 1}}, "supported": {"_count": 3, "him": {"_count": 1}, "so": {"_count": 1}, "the": {"_count": 1}}, "bit": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "save": {"_count": 1, "you": {"_count": 1}}, "visibility": {"_count": 1, "would": {"_count": 1}}, "Montague": {"_count": 1, "was": {"_count": 1}}, "thug": {"_count": 1, "Crabbe": {"_count": 1}}, "justified": {"_count": 1, "what": {"_count": 1}}, "counts": {"_count": 1, "as": {"_count": 1}}, "wound": {"_count": 2, "me": {"_count": 1}, "between": {"_count": 1}}, "mos": {"_count": 1, "wizards": {"_count": 1}}, "firs": {"_count": 1, "day": {"_count": 1}}, "by": {"_count": 7, "now": {"_count": 1}, "raising": {"_count": 1}, "the": {"_count": 3}, "sundown": {"_count": 1}, "their": {"_count": 1}}, "hot": {"_count": 1, "air": {"_count": 1}}, "loud": {"_count": 1, "slow": {"_count": 1}}, "rude": {"_count": 1, "when": {"_count": 1}}, "thickened": {"_count": 1, "and": {"_count": 1}}, "excellent": {"_count": 1, "clock": {"_count": 1}}, "floated": {"_count": 4, "gently": {"_count": 1}, "up": {"_count": 1}, "unsupported": {"_count": 1}, "in": {"_count": 1}}, "instant": {"_count": 4, "that": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}}, "matter": {"_count": 3, "": {"_count": 2}, "when": {"_count": 1}}, "accursed": {"_count": 1, "houseelf": {"_count": 1}}, "Tonks": {"_count": 2, "whose": {"_count": 1}, "had": {"_count": 1}}, "quietly": {"_count": 1, "through": {"_count": 1}}, "dummies": {"_count": 1, "could": {"_count": 1}}, "cut": {"_count": 1, "people": {"_count": 1}}, "snakes": {"_count": 3, "fangs": {"_count": 1}, "venom": {"_count": 1}, "got": {"_count": 1}}, "fellow": {"_count": 1, "over": {"_count": 1}}, "following": {"_count": 1, "Dumbledore": {"_count": 1}}, "less": {"_count": 1, "than": {"_count": 1}}, "Mundungus": {"_count": 3, "or": {"_count": 1}, "has": {"_count": 1}, "had": {"_count": 1}}, "New": {"_count": 1, "Theory": {"_count": 1}}, "perfume": {"_count": 1, "is": {"_count": 1}}, "filthy": {"_count": 2, "old": {"_count": 1}, "sign": {"_count": 1}}, "marked": {"_count": 4, "the": {"_count": 4}}, "revealed": {"_count": 1, "dazzlingly": {"_count": 1}}, "wrapper": {"_count": 1, "in": {"_count": 1}}, "criticism": {"_count": 1, "simply": {"_count": 1}}, "members": {"_count": 2, "of": {"_count": 2}}, "intensified": {"_count": 1, "with": {"_count": 1}}, "contradict": {"_count": 1, "the": {"_count": 1}}, "similar": {"_count": 1, "powers": {"_count": 1}}, "door": {"_count": 3, "when": {"_count": 1}, "remained": {"_count": 1}, "": {"_count": 1}}, "Dean": {"_count": 3, "and": {"_count": 2}, "would": {"_count": 1}}, "Healer": {"_count": 1, "Strout": {"_count": 1}}, "grumbled": {"_count": 1, "Ron": {"_count": 1}}, "inspection": {"_count": 1, "didn": {"_count": 1}}, "jeopardized": {"_count": 1, "his": {"_count": 1}}, "frequently": {"_count": 1, "kept": {"_count": 1}}, "HeWho": {"_count": 1, "MustNotBeNamed": {"_count": 1}}, "angle": {"_count": 1, "We": {"_count": 1}}, "shows": {"_count": 1, "Harry": {"_count": 1}}, "rag": {"_count": 1, "": {"_count": 1}}, "Roger": {"_count": 1, "Davies": {"_count": 1}}, "maddeningly": {"_count": 1, "patient": {"_count": 1}}, "Yes": {"_count": 1, "it": {"_count": 1}}, "magazine": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "pulsed": {"_count": 1, "with": {"_count": 1}}, "chink": {"_count": 1, "of": {"_count": 1}}, "Trelawneys": {"_count": 1, "terrifying": {"_count": 1}}, "statement": {"_count": 1, "is": {"_count": 1}}, "Trelawney": {"_count": 1, "had": {"_count": 1}}, "Sprouts": {"_count": 1, "got": {"_count": 1}}, "ladder": {"_count": 1, "": {"_count": 1}}, "Wizardkind": {"_count": 1, "is": {"_count": 1}}, "humans": {"_count": 1, "were": {"_count": 1}}, "Dolores": {"_count": 1, "is": {"_count": 1}}, "while": {"_count": 4, "everyone": {"_count": 1}, "his": {"_count": 2}, "we": {"_count": 1}}, "sentence": {"_count": 1, "Granger": {"_count": 1}}, "Vanishing": {"_count": 1, "Cabinet": {"_count": 1}}, "recalled": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "identify": {"_count": 1, "the": {"_count": 1}}, "judging": {"_count": 1, "from": {"_count": 1}}, "carried": {"_count": 1, "the": {"_count": 1}}, "simpering": {"_count": 1, "laugh": {"_count": 1}}, "False": {"_count": 1, "hope": {"_count": 1}}, "concludes": {"_count": 1, "our": {"_count": 1}}, "sometime": {"_count": 1, "during": {"_count": 1}}, "five": {"_count": 2, "minutes": {"_count": 1}, "years": {"_count": 1}}, "teachers": {"_count": 1, "like": {"_count": 1}}, "master": {"_count": 1, "of": {"_count": 1}}, "hoisted": {"_count": 1, "the": {"_count": 1}}, "itll": {"_count": 2, "be": {"_count": 1}, "throw": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "cavernous": {"_count": 1, "room": {"_count": 1}}, "why": {"_count": 4, "were": {"_count": 1}, "youre": {"_count": 1}, "you": {"_count": 2}}, "sometimes": {"_count": 5, "all": {"_count": 1}, "happens": {"_count": 1}, "disrupted": {"_count": 1}, "contained": {"_count": 1}, "ticked": {"_count": 1}}, "put": {"_count": 2, "tha": {"_count": 1}, "paid": {"_count": 1}}, "formed": {"_count": 2, "a": {"_count": 1}, "this": {"_count": 1}}, "involve": {"_count": 1, "exactly": {"_count": 1}}, "Grawpy": {"_count": 1, "": {"_count": 1}}, "Grawps": {"_count": 1, "fist": {"_count": 1}}, "fanged": {"_count": 1, "monsters": {"_count": 1}}, "Grawp": {"_count": 2, "would": {"_count": 1}, "was": {"_count": 1}}, "either": {"_count": 2, "of": {"_count": 1}, "outcome": {"_count": 1}}, "confident": {"_count": 1, "but": {"_count": 1}}, "cheating": {"_count": 1, "will": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "exam": {"_count": 1, "time": {"_count": 1}}, "new": {"_count": 1, "door": {"_count": 1}}, "light": {"_count": 2, "spilled": {"_count": 1}, "you": {"_count": 1}}, "Fangs": {"_count": 1, "limp": {"_count": 1}}, "glistened": {"_count": 1, "in": {"_count": 1}}, "Bonaccord": {"_count": 1, "had": {"_count": 1}}, "already": {"_count": 2, "": {"_count": 2}}, "blunder": {"_count": 1, "now": {"_count": 1}}, "tone": {"_count": 2, "with": {"_count": 1}, "began": {"_count": 1}}, "Peeves": {"_count": 1, "is": {"_count": 1}}, "schoolchildren": {"_count": 1, "should": {"_count": 1}}, "twenty": {"_count": 2, "feet": {"_count": 1}, "five": {"_count": 1}}, "\u2018Any": {"_count": 1, "attack": {"_count": 1}}, "fussed": {"_count": 1, "to": {"_count": 1}}, "isnt": {"_count": 1, "being": {"_count": 1}}, "dark": {"_count": 2, "room": {"_count": 1}, "water": {"_count": 1}}, "arch": {"_count": 1, "was": {"_count": 1}}, "glowed": {"_count": 1, "with": {"_count": 1}}, "stretch": {"_count": 1, "of": {"_count": 1}}, "prophecy": {"_count": 4, "Jugson": {"_count": 1}, "in": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "circular": {"_count": 1, "room": {"_count": 1}}, "Hermiones": {"_count": 3, "fiery": {"_count": 1}, "mania": {"_count": 1}, "support": {"_count": 1}}, "weird": {"_count": 2, "Harry": {"_count": 1}, "obsessive": {"_count": 1}}, "knocked": {"_count": 1, "all": {"_count": 1}}, "curtain": {"_count": 1, "he": {"_count": 1}}, "archway": {"_count": 1, "when": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "emanated": {"_count": 2, "from": {"_count": 2}}, "Portkey": {"_count": 1, "": {"_count": 1}}, "calm": {"_count": 1, "old": {"_count": 1}}, "hatefully": {"_count": 1, "calm": {"_count": 1}}, "cryptic": {"_count": 1, "warning": {"_count": 1}}, "nor": {"_count": 1, "will": {"_count": 1}}, "flows": {"_count": 1, "in": {"_count": 1}}, "allowing": {"_count": 1, "you": {"_count": 1}}, "faced": {"_count": 1, "you": {"_count": 1}}, "twelve": {"_count": 1, "was": {"_count": 1}}, "smashed": {"_count": 2, "was": {"_count": 1}, "wasnt": {"_count": 1}}, "reside": {"_count": 1, "there": {"_count": 1}}, "veil": {"_count": 1, "he": {"_count": 1}}, "HeWhoMustNotBe": {"_count": 2, "Named": {"_count": 2}}, "interview": {"_count": 2, "with": {"_count": 1}, "Harry": {"_count": 1}}, "joke": {"_count": 1, "shop": {"_count": 1}}, "path": {"_count": 1, "": {"_count": 1}}, "passersby": {"_count": 1, "actually": {"_count": 1}}, "bridge": {"_count": 1, "collapsing": {"_count": 1}}, "cough": {"_count": 1, "": {"_count": 1}}, "ugly": {"_count": 1, "little": {"_count": 1}}, "encompassed": {"_count": 1, "everything": {"_count": 1}}, "warning": {"_count": 1, "then": {"_count": 1}}, "despite": {"_count": 1, "Fudges": {"_count": 1}}, "deficient": {"_count": 1, "though": {"_count": 1}}, "morale": {"_count": 1, "is": {"_count": 1}}, "murder": {"_count": 1, "was": {"_count": 1}}, "gets": {"_count": 1, "us": {"_count": 1}}, "drain": {"_count": 1, "hope": {"_count": 1}}, "Rufus": {"_count": 3, "Scrimgeour": {"_count": 2}, "found": {"_count": 1}}, "Bellatrix": {"_count": 3, "": {"_count": 1}, "will": {"_count": 1}, "gloried": {"_count": 1}}, "Avery": {"_count": 1, "Yaxley": {"_count": 1}}, "ally": {"_count": 1, "might": {"_count": 1}}, "murdering": {"_count": 1, "his": {"_count": 1}}, "measures": {"_count": 1, "include": {"_count": 1}}, "coated": {"_count": 1, "the": {"_count": 1}}, "speech": {"_count": 1, "would": {"_count": 1}}, "hung": {"_count": 4, "in": {"_count": 2}, "there": {"_count": 1}, "all": {"_count": 1}}, "ownership": {"_count": 1, "has": {"_count": 1}}, "simplifies": {"_count": 1, "matters": {"_count": 1}}, "flighty": {"_count": 1, "temptress": {"_count": 1}}, "conversation": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "leaflet": {"_count": 1, "it": {"_count": 1}}, "incidentally": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 11, "had": {"_count": 5}, "was": {"_count": 3}, "might": {"_count": 1}, "would": {"_count": 1}, "knew": {"_count": 1}}, "pestilential": {"_count": 1, "school": {"_count": 1}}, "against": {"_count": 1, "me": {"_count": 1}}, "Amelia": {"_count": 1, "Boness": {"_count": 1}}, "comfort": {"_count": 1, "again": {"_count": 1}}, "actually": {"_count": 1, "make": {"_count": 1}}, "Mums": {"_count": 1, "bringing": {"_count": 1}}, "exciting": {"_count": 2, "": {"_count": 1}, "things": {"_count": 1}}, "downtoearth": {"_count": 1, "": {"_count": 1}}, "pin": {"_count": 1, "will": {"_count": 1}}, "glittered": {"_count": 1, "with": {"_count": 1}}, "shops": {"_count": 1, "here": {"_count": 1}}, "revolved": {"_count": 1, "popped": {"_count": 1}}, "clashed": {"_count": 1, "magnificently": {"_count": 1}}, "bruisell": {"_count": 1, "be": {"_count": 1}}, "direction": {"_count": 1, "murmured": {"_count": 1}}, "includes": {"_count": 1, "my": {"_count": 1}}, "cabinet": {"_count": 1, "You": {"_count": 1}}, "er": {"_count": 1, "boy": {"_count": 1}}, "shriveledup": {"_count": 1, "arm": {"_count": 1}}, "needed": {"_count": 2, "fixing": {"_count": 1}, "lookouts": {"_count": 1}}, "idiot": {"_count": 1, "from": {"_count": 1}}, "Weasley": {"_count": 2, "girl": {"_count": 2}}, "important": {"_count": 1, "these": {"_count": 1}}, "surrounded": {"_count": 5, "the": {"_count": 3}, "him": {"_count": 2}}, "compartment": {"_count": 1, "I": {"_count": 1}}, "Auror": {"_count": 1, "Dumbledore": {"_count": 1}}, "bursting": {"_count": 1, "into": {"_count": 1}}, "during": {"_count": 3, "those": {"_count": 1}, "the": {"_count": 2}}, "unfixed": {"_count": 1, "indestructible": {"_count": 1}}, "Sloper": {"_count": 1, "would": {"_count": 1}}, "forces": {"_count": 1, "the": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "ordinary": {"_count": 1, "day": {"_count": 1}}, "lucky": {"_count": 2, "day": {"_count": 1}, "number": {"_count": 1}}, "flowery": {"_count": 1, "smell": {"_count": 1}}, "stored": {"_count": 1, "and": {"_count": 1}}, "reduced": {"_count": 1, "his": {"_count": 1}}, "Morfin": {"_count": 1, "performed": {"_count": 1}}, "hovel": {"_count": 1, "cleared": {"_count": 1}}, "cottage": {"_count": 1, "belongs": {"_count": 1}}, "flourished": {"_count": 1, "through": {"_count": 1}}, "Merope": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "who": {"_count": 1}}, "Aguamenti": {"_count": 1, "Charm": {"_count": 1}}, "persecution": {"_count": 1, "from": {"_count": 1}}, "evil": {"_count": 1, "woman": {"_count": 1}}, "graffitied": {"_count": 1, "copy": {"_count": 1}}, "days": {"_count": 1, "copy": {"_count": 1}}, "winning": {"_count": 1, "their": {"_count": 1}}, "McLaggen": {"_count": 3, "might": {"_count": 1}, "anyway": {"_count": 1}, "had": {"_count": 1}}, "fourth": {"_count": 1, "penalty": {"_count": 1}}, "side": {"_count": 1, "of": {"_count": 1}}, "dishonest": {"_count": 1, "Hermione": {"_count": 1}}, "glued": {"_count": 1, "the": {"_count": 1}}, "lengthy": {"_count": 1, "conversations": {"_count": 1}}, "potion": {"_count": 2, "book": {"_count": 1}, "": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}, "Zonkos": {"_count": 1, "Joke": {"_count": 1}}, "haunt": {"_count": 1, "of": {"_count": 1}}, "necklace": {"_count": 9, "Professor": {"_count": 1}, "You": {"_count": 1}, "can": {"_count": 1}, "within": {"_count": 1}, "said": {"_count": 1}, "nor": {"_count": 1}, "business": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "plainly": {"_count": 2, "said": {"_count": 1}, "wished": {"_count": 1}}, "Katie": {"_count": 2, "herself": {"_count": 1}, "will": {"_count": 1}}, "completely": {"_count": 1, "covered": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "fronted": {"_count": 1, "a": {"_count": 1}}, "tied": {"_count": 1, "him": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "enigmatic": {"_count": 1, "note": {"_count": 1}}, "over": {"_count": 1, "Harry": {"_count": 1}}, "honesty": {"_count": 1, "was": {"_count": 1}}, "drink": {"_count": 1, "": {"_count": 1}}, "Malfoys": {"_count": 1, "gone": {"_count": 1}}, "signaled": {"_count": 1, "the": {"_count": 1}}, "encircled": {"_count": 1, "him": {"_count": 1}}, "Romilda": {"_count": 1, "Vane": {"_count": 1}}, "low": {"_count": 1, "": {"_count": 1}}, "Sybill": {"_count": 1, "why": {"_count": 1}}, "nighttime": {"_count": 1, "prowlings": {"_count": 1}}, "intrigued": {"_count": 2, "him": {"_count": 1}, "me": {"_count": 1}}, "Celestina": {"_count": 1, "grew": {"_count": 1}}, "shouldnt": {"_count": 1, "have": {"_count": 1}}, "youd": {"_count": 3, "looked": {"_count": 1}, "like": {"_count": 1}, "better": {"_count": 1}}, "Severus": {"_count": 1, "questioned": {"_count": 1}}, "though": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}, "Scrimgeour": {"_count": 6, "could": {"_count": 1}, "was": {"_count": 3}, "said": {"_count": 1}, "had": {"_count": 1}}, "seem": {"_count": 1, "as": {"_count": 1}}, "Grey": {"_count": 1, "back": {"_count": 1}}, "ricocheted": {"_count": 1, "off": {"_count": 1}}, "causes": {"_count": 1, "me": {"_count": 1}}, "chance": {"_count": 1, "": {"_count": 1}}, "crime": {"_count": 1, "": {"_count": 1}}, "impenetrable": {"_count": 1, "darkness": {"_count": 1}}, "disturbed": {"_count": 1, "him": {"_count": 1}}, "apparently": {"_count": 1, "was": {"_count": 1}}, "memory": {"_count": 15, "has": {"_count": 1}, "": {"_count": 4}, "Harry": {"_count": 1}, "from": {"_count": 4}, "is": {"_count": 1}, "off": {"_count": 1}, "she": {"_count": 1}, "if": {"_count": 1}, "shows": {"_count": 1}}, "Golpalotts": {"_count": 1, "Third": {"_count": 1}}, "assuming": {"_count": 1, "we": {"_count": 1}}, "added": {"_count": 1, "component": {"_count": 1}}, "destination": {"_count": 1, "now": {"_count": 1}}, "signified": {"_count": 1, "each": {"_count": 1}}, "stop": {"_count": 1, "you": {"_count": 1}}, "bottle": {"_count": 1, "to": {"_count": 1}}, "tasty": {"_count": 1, "for": {"_count": 1}}, "wine": {"_count": 1, "or": {"_count": 1}}, "Katies": {"_count": 1, "attack": {"_count": 1}}, "easy": {"_count": 3, "is": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "toenail": {"_count": 1, "thing": {"_count": 1}}, "Potty": {"_count": 1, "": {"_count": 1}}, "flowed": {"_count": 2, "all": {"_count": 1}, "from": {"_count": 1}}, "showed": {"_count": 3, "he": {"_count": 1}, "his": {"_count": 1}, "at": {"_count": 1}}, "shop": {"_count": 1, "Ive": {"_count": 1}}, "crossed": {"_count": 2, "Voldemorts": {"_count": 1}, "his": {"_count": 1}}, "announced": {"_count": 1, "the": {"_count": 1}}, "thanks": {"_count": 1, "said": {"_count": 1}}, "How": {"_count": 1, "dyou": {"_count": 1}}, "befits": {"_count": 1, "his": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "Apparition": {"_count": 1, "Test": {"_count": 1}}, "girls": {"_count": 1, "bathroom": {"_count": 1}}, "late": {"_count": 1, "but": {"_count": 1}}, "Fenrir": {"_count": 1, "Greyback": {"_count": 1}}, "grayish": {"_count": 1, "tinge": {"_count": 1}}, "lived": {"_count": 2, "in": {"_count": 1}, "a": {"_count": 1}}, "politics": {"_count": 1, "would": {"_count": 1}}, "aspect": {"_count": 1, "of": {"_count": 1}}, "Slytherins": {"_count": 1, "monster": {"_count": 1}}, "precious": {"_count": 1, "fragment": {"_count": 1}}, "anybody": {"_count": 2, "wishing": {"_count": 1}, "who": {"_count": 1}}, "having": {"_count": 2, "secured": {"_count": 1}, "six": {"_count": 1}}, "reflected": {"_count": 1, "your": {"_count": 1}}, "That": {"_count": 1, "one": {"_count": 1}}, "backfired": {"_count": 1, "off": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "Prince": {"_count": 1, "person": {"_count": 1}}, "Sectumsempra": {"_count": 1, "spell": {"_count": 1}}, "fifty": {"_count": 1, "people": {"_count": 1}}, "sighed": {"_count": 1, "Harry": {"_count": 1}}, "smoothly": {"_count": 1, "impenetrable": {"_count": 1}}, "concealed": {"_count": 1, "Professor": {"_count": 1}}, "rather": {"_count": 1, "uncouth": {"_count": 1}}, "promise": {"_count": 1, "but": {"_count": 1}}, "ignited": {"_count": 1, "Harrys": {"_count": 1}}, "bangs": {"_count": 1, "and": {"_count": 1}}, "seems": {"_count": 3, "to": {"_count": 2}, "too": {"_count": 1}}, "broke": {"_count": 1, "the": {"_count": 1}}, "mysterious": {"_count": 1, "greenish": {"_count": 1}}, "jumped": {"_count": 1, "out": {"_count": 1}}, "dwell": {"_count": 1, "in": {"_count": 1}}, "greenish": {"_count": 1, "light": {"_count": 1}}, "phosphorescent": {"_count": 1, "glow": {"_count": 1}}, "prevented": {"_count": 1, "him": {"_count": 1}}, "ring": {"_count": 3, "of": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "feeling": {"_count": 1, "of": {"_count": 1}}, "broken": {"_count": 1, "Vanishing": {"_count": 1}}, "called": {"_count": 1, "themselves": {"_count": 1}}, "offensive": {"_count": 1, "word": {"_count": 1}}, "cannot": {"_count": 1, "be": {"_count": 1}}, "exploded": {"_count": 1, "": {"_count": 1}}, "momentarily": {"_count": 1, "silhouetted": {"_count": 1}}, "mumbled": {"_count": 1, "Hagrid": {"_count": 1}}, "Death": {"_count": 2, "Eaters": {"_count": 2}}, "huge": {"_count": 2, "blond": {"_count": 1}, "Death": {"_count": 1}}, "confirmed": {"_count": 1, "what": {"_count": 1}}, "hand": {"_count": 1, "thing": {"_count": 1}}, "massive": {"_count": 1, "Death": {"_count": 1}}, "pupil": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "lake": {"_count": 1}}, "sooner": {"_count": 1, "or": {"_count": 1}}, "Bungs": {"_count": 1, "or": {"_count": 1}}, "tower": {"_count": 1, "top": {"_count": 1}}, "drew": {"_count": 2, "scandalized": {"_count": 1}, "us": {"_count": 1}}, "anything": {"_count": 1, "as": {"_count": 1}}, "score": {"_count": 1, "": {"_count": 1}}, "displeases": {"_count": 1, "you": {"_count": 1}}, "infects": {"_count": 1, "us": {"_count": 1}}, "flickered": {"_count": 1, "feebly": {"_count": 1}}, "mornings": {"_count": 1, "Daily": {"_count": 1}}, "Ariana": {"_count": 5, "s": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}}, "legendary": {"_count": 1, "duel": {"_count": 1}}, "need": {"_count": 2, "": {"_count": 1}, "sorting": {"_count": 1}}, "Skeeters": {"_count": 1, "book": {"_count": 1}}, "four": {"_count": 1, "short": {"_count": 1}}, "Grindelwald": {"_count": 3, "simply": {"_count": 1}, "had": {"_count": 1}, "chose": {"_count": 1}}, "intriguing": {"_count": 1, "note": {"_count": 1}}, "exposes": {"_count": 1, "you": {"_count": 1}}, "Kingsley": {"_count": 3, "bloke": {"_count": 1}, "had": {"_count": 1}, "Shacklebolt": {"_count": 1}}, "attacked": {"_count": 1, "us": {"_count": 1}}, "front": {"_count": 1, "door": {"_count": 1}}, "detects": {"_count": 1, "magical": {"_count": 1}}, "plan": {"_count": 1, "scuppered": {"_count": 1}}, "tattoo": {"_count": 1, "said": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "happening": {"_count": 1, "": {"_count": 1}}, "sent": {"_count": 2, "earth": {"_count": 1}, "them": {"_count": 1}}, "confused": {"_count": 1, "them": {"_count": 1}}, "MadEye": {"_count": 3, "wouldnt": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}}, "reason": {"_count": 2, "that": {"_count": 1}, "he": {"_count": 1}}, "existed": {"_count": 1, "between": {"_count": 1}}, "connection": {"_count": 4, "open": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}}, "Azkabans": {"_count": 1, "seen": {"_count": 1}}, "cowardly": {"_count": 1, "little": {"_count": 1}}, "number": {"_count": 1, "of": {"_count": 1}}, "ghouls": {"_count": 1, "were": {"_count": 1}}, "gives": {"_count": 1, "explicit": {"_count": 1}}, "answering": {"_count": 1, "questions": {"_count": 1}}, "Deluminator": {"_count": 1, "": {"_count": 1}}, "charming": {"_count": 1, "little": {"_count": 1}}, "bite": {"_count": 1, "though": {"_count": 1}}, "Lunas": {"_count": 1, "father": {"_count": 1}}, "sign": {"_count": 1, "for": {"_count": 1}}, "Xenophilius": {"_count": 2, "doesnt": {"_count": 1}, "had": {"_count": 1}}, "Ollivander": {"_count": 3, "had": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 1}}, "tosh": {"_count": 1, "there": {"_count": 1}}, "Elphias": {"_count": 1, "cackled": {"_count": 1}}, "obituary": {"_count": 1, "of": {"_count": 1}}, "sister": {"_count": 1, "of": {"_count": 1}}, "Cloak": {"_count": 2, "on": {"_count": 1}, "back": {"_count": 1}}, "talking": {"_count": 1, "Patronus": {"_count": 1}}, "spoke": {"_count": 1, "with": {"_count": 1}}, "kept": {"_count": 1, "them": {"_count": 1}}, "Muriel": {"_count": 1, "had": {"_count": 1}}, "shot": {"_count": 1, "bolts": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "locket": {"_count": 2, "and": {"_count": 1}, "could": {"_count": 1}}, "cave": {"_count": 1, "said": {"_count": 1}}, "Regulus": {"_count": 1, "changed": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "fireplace": {"_count": 1, "seeking": {"_count": 1}}, "Kendra": {"_count": 2, "thought": {"_count": 1}, "made": {"_count": 1}}, "littered": {"_count": 1, "the": {"_count": 1}}, "bearded": {"_count": 1, "bloke": {"_count": 1}}, "identified": {"_count": 1, "their": {"_count": 1}}, "job": {"_count": 1, "Cattermole": {"_count": 1}}, "fluttered": {"_count": 1, "around": {"_count": 1}}, "problem": {"_count": 1, "solved": {"_count": 1}}, "coiled": {"_count": 1, "snakelike": {"_count": 1}}, "poisonous": {"_count": 1, "duck": {"_count": 1}}, "reached": {"_count": 2, "right": {"_count": 1}, "Harry": {"_count": 1}}, "stealing": {"_count": 1, "sense": {"_count": 1}}, "description": {"_count": 1, "": {"_count": 1}}, "brought": {"_count": 1, "the": {"_count": 1}}, "brutish": {"_count": 1, "face": {"_count": 1}}, "quickwitted": {"_count": 1, "though": {"_count": 1}}, "currently": {"_count": 1, "lay": {"_count": 1}}, "Gregorovitch": {"_count": 5, "had": {"_count": 4}, "didnt": {"_count": 1}}, "Horcrux": {"_count": 1, "lying": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "descended": {"_count": 1, "to": {"_count": 1}}, "Ted": {"_count": 1, "": {"_count": 1}}, "son": {"_count": 1, "said": {"_count": 1}}, "muck": {"_count": 1, "Dirk": {"_count": 1}}, "Dirk": {"_count": 1, "murmured": {"_count": 1}}, "possibly": {"_count": 1, "be": {"_count": 1}}, "swords": {"_count": 2, "impregnated": {"_count": 1}, "a": {"_count": 1}}, "symbol": {"_count": 3, "she": {"_count": 1}, "was": {"_count": 1}, "you": {"_count": 1}}, "shall": {"_count": 4, "be": {"_count": 4}}, "flanked": {"_count": 1, "it": {"_count": 1}}, "tore": {"_count": 1, "apart": {"_count": 1}}, "offered": {"_count": 1, "Harry": {"_count": 1}}, "throbbed": {"_count": 1, "with": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "mingled": {"_count": 1, "with": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "weapons": {"_count": 1, "could": {"_count": 1}}, "wrong": {"_count": 1, "didnt": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "fatal": {"_count": 1, "name": {"_count": 1}}, "Aberforth": {"_count": 2, "says": {"_count": 1}, "knew": {"_count": 1}}, "Bathilda": {"_count": 1, "exhibited": {"_count": 1}}, "power": {"_count": 2, "gives": {"_count": 1}, "was": {"_count": 1}}, "across": {"_count": 1, "her": {"_count": 1}}, "\u2018right": {"_count": 1, "to": {"_count": 1}}, "wide": {"_count": 1, "sky": {"_count": 1}}, "defined": {"_count": 1, "a": {"_count": 1}}, "closed": {"_count": 1, "around": {"_count": 1}}, "doe": {"_count": 3, "": {"_count": 3}}, "deer": {"_count": 1, "coming": {"_count": 1}}, "pool": {"_count": 1, "": {"_count": 1}}, "hill": {"_count": 1, "all": {"_count": 1}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "tells": {"_count": 2, "the": {"_count": 2}}, "links": {"_count": 1, "Dumbledore": {"_count": 1}}, "view": {"_count": 1, "": {"_count": 1}}, "horn": {"_count": 1, "": {"_count": 1}}, "knuckleheaded": {"_count": 1, "young": {"_count": 1}}, "crude": {"_count": 1, "sense": {"_count": 1}}, "anythings": {"_count": 1, "real": {"_count": 1}}, "exists": {"_count": 1, "too": {"_count": 1}}, "storys": {"_count": 2, "just": {"_count": 1}, "why": {"_count": 1}}, "theirs": {"_count": 1, "are": {"_count": 1}}, "tray": {"_count": 1, "for": {"_count": 1}}, "Peverell": {"_count": 1, "bloke": {"_count": 1}}, "became": {"_count": 1, "the": {"_count": 1}}, "stone": {"_count": 1, "": {"_count": 1}}, "hidden": {"_count": 1, "": {"_count": 1}}, "Muggleborn": {"_count": 1, "Dean": {"_count": 1}}, "Rubeus": {"_count": 1, "Hagrid": {"_count": 1}}, "brings": {"_count": 1, "us": {"_count": 1}}, "done": {"_count": 1, "to": {"_count": 1}}, "jeered": {"_count": 1, "Scabior": {"_count": 1}}, "callous": {"_count": 1, "voice": {"_count": 1}}, "Greyback": {"_count": 2, "was": {"_count": 1}, "could": {"_count": 1}}, "muffled": {"_count": 1, "their": {"_count": 1}}, "caught": {"_count": 1, "Potter": {"_count": 1}}, "dirty": {"_count": 1, "little": {"_count": 1}}, "whispered": {"_count": 1, "Ron": {"_count": 1}}, "burst": {"_count": 1, "with": {"_count": 1}}, "cellar": {"_count": 1, "": {"_count": 1}}, "Ginnys": {"_count": 1, "on": {"_count": 1}}, "lies": {"_count": 1, "inside": {"_count": 1}}, "vault": {"_count": 2, "is": {"_count": 1}, "but": {"_count": 1}}, "hasnt": {"_count": 1, "chosen": {"_count": 1}}, "changes": {"_count": 1, "hands": {"_count": 1}}, "mines": {"_count": 1, "broken": {"_count": 1}}, "yours": {"_count": 1, "broke": {"_count": 1}}, "rush": {"_count": 1, "of": {"_count": 1}}, "heady": {"_count": 1, "sense": {"_count": 1}}, "marble": {"_count": 1, "or": {"_count": 1}}, "Gabrielle": {"_count": 1, "had": {"_count": 1}}, "Griphook": {"_count": 3, "would": {"_count": 1}, "was": {"_count": 1}, "knew": {"_count": 1}}, "bargain": {"_count": 1, "involves": {"_count": 1}}, "tortured": {"_count": 1, "Nevilles": {"_count": 1}}, "He": {"_count": 1, "looked": {"_count": 1}}, "Bellatrixs": {"_count": 1, "wand": {"_count": 1}}, "resided": {"_count": 1, "in": {"_count": 1}}, "glanced": {"_count": 1, "off": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}, "Alecto": {"_count": 1, "had": {"_count": 1}}, "impression": {"_count": 1, "": {"_count": 1}}, "preceded": {"_count": 1, "murder": {"_count": 1}}, "presses": {"_count": 1, "against": {"_count": 1}}, "House": {"_count": 1, "": {"_count": 1}}, "diadems": {"_count": 1, "at": {"_count": 1}}, "farflung": {"_count": 1, "forest": {"_count": 1}}, "lowly": {"_count": 1, "tree": {"_count": 1}}, "soared": {"_count": 1, "from": {"_count": 1}}, "snapped": {"_count": 1, "its": {"_count": 1}}, "destroy": {"_count": 1, "Horcruxes": {"_count": 1}}, "fragment": {"_count": 2, "of": {"_count": 2}}, "thin": {"_count": 1, "stick": {"_count": 1}}, "pulled": {"_count": 1, "at": {"_count": 1}}, "expressed": {"_count": 1, "agony": {"_count": 1}}, "troubled": {"_count": 1, "Lord": {"_count": 1}}, "clogged": {"_count": 1, "the": {"_count": 1}}, "protected": {"_count": 1, "the": {"_count": 1}}, "controlled": {"_count": 1, "sense": {"_count": 1}}, "hour": {"_count": 1, "you": {"_count": 1}}, "tunnel": {"_count": 1, "by": {"_count": 1}}, "strengthens": {"_count": 1, "over": {"_count": 1}}, "breaking": {"_count": 1, "the": {"_count": 1}}, "spends": {"_count": 1, "so": {"_count": 1}}, "collapsing": {"_count": 1, "building": {"_count": 1}}, "word": {"_count": 1, "": {"_count": 1}}, "funeral": {"_count": 1, "drum": {"_count": 1}}, "summers": {"_count": 1, "night": {"_count": 1}}, "possibility": {"_count": 1, "smothered": {"_count": 1}}, "grew": {"_count": 1, "closely": {"_count": 1}}, "moved": {"_count": 2, "were": {"_count": 1}, "slowly": {"_count": 1}}, "high": {"_count": 1, "sparkling": {"_count": 1}}, "enchantment": {"_count": 1, "survives": {"_count": 1}}, "sacrifice": {"_count": 1, "he": {"_count": 1}}, "shared": {"_count": 1, "a": {"_count": 1}}, "snuffed": {"_count": 1, "out": {"_count": 1}}, "lie": {"_count": 1, "to": {"_count": 1}}, "explained": {"_count": 1, "everything": {"_count": 1}}, "fewer": {"_count": 1, "souls": {"_count": 1}}, "lifted": {"_count": 1, "him": {"_count": 1}}, "birds": {"_count": 1, "rose": {"_count": 1}}, "yeh": {"_count": 1, "didn": {"_count": 1}}, "patrolled": {"_count": 1, "the": {"_count": 1}}, "perfect": {"_count": 1, "circle": {"_count": 1}}, "deafened": {"_count": 1, "him": {"_count": 1}}, "fear": {"_count": 1, "was": {"_count": 1}}}, "they": {"_count": 4439, "were": {"_count": 657, "perfectly": {"_count": 1}, "saying": {"_count": 10}, "related": {"_count": 1}, "all": {"_count": 32}, "he": {"_count": 4}, "too": {"_count": 4}, "going": {"_count": 23}, "proud": {"_count": 1}, "weirdos": {"_count": 1}, "facing": {"_count": 5}, "in": {"_count": 8}, "our": {"_count": 1}, "with": {"_count": 2}, "when": {"_count": 1}, "watching": {"_count": 2}, "speeding": {"_count": 1}, "married": {"_count": 3}, "obviously": {"_count": 1}, "lost": {"_count": 2}, "trying": {"_count": 5}, "rescued": {"_count": 1}, "used": {"_count": 1}, "each": {"_count": 1}, "witches": {"_count": 1}, "they": {"_count": 2}, "lucky": {"_count": 1}, "or": {"_count": 2}, "quite": {"_count": 2}, "fifty": {"_count": 1}, "ready": {"_count": 1}, "supposed": {"_count": 11}, "looking": {"_count": 3}, "sure": {"_count": 3}, "up": {"_count": 1}, "able": {"_count": 7}, "gone": {"_count": 3}, "": {"_count": 8}, "back": {"_count": 6}, "surprised": {"_count": 2}, "getting": {"_count": 2}, "a": {"_count": 9}, "already": {"_count": 3}, "being": {"_count": 8}, "so": {"_count": 8}, "about": {"_count": 5}, "there": {"_count": 7}, "and": {"_count": 3}, "blistering": {"_count": 1}, "boarding": {"_count": 2}, "concerned": {"_count": 3}, "marching": {"_count": 1}, "bowed": {"_count": 1}, "running": {"_count": 2}, "still": {"_count": 11}, "hardly": {"_count": 2}, "alone": {"_count": 3}, "shunted": {"_count": 1}, "barricaded": {"_count": 1}, "guaranteed": {"_count": 1}, "ignoring": {"_count": 1}, "frightened": {"_count": 1}, "having": {"_count": 2}, "sniggering": {"_count": 1}, "safely": {"_count": 3}, "fast": {"_count": 1}, "right": {"_count": 2}, "hidden": {"_count": 2}, "making": {"_count": 1}, "moving": {"_count": 3}, "off": {"_count": 2}, "soon": {"_count": 1}, "nearly": {"_count": 1}, "congratulating": {"_count": 1}, "flying": {"_count": 4}, "knocked": {"_count": 1}, "allowed": {"_count": 1}, "both": {"_count": 12}, "now": {"_count": 5}, "thundering": {"_count": 1}, "stationed": {"_count": 1}, "interrupted": {"_count": 1}, "plunged": {"_count": 2}, "best": {"_count": 1}, "only": {"_count": 4}, "talking": {"_count": 7}, "funny": {"_count": 1}, "plotting": {"_count": 2}, "cooking": {"_count": 1}, "preparing": {"_count": 1}, "fixed": {"_count": 1}, "giving": {"_count": 2}, "joined": {"_count": 1}, "well": {"_count": 1}, "the": {"_count": 8}, "doing": {"_count": 5}, "peanuts": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "glad": {"_count": 2}, "friends": {"_count": 1}, "scared": {"_count": 3}, "feeling": {"_count": 1}, "representatives": {"_count": 1}, "built": {"_count": 1}, "hearing": {"_count": 1}, "because": {"_count": 1}, "confused": {"_count": 1}, "encircling": {"_count": 1}, "heading": {"_count": 5}, "soaring": {"_count": 3}, "unavoidable": {"_count": 1}, "plainly": {"_count": 1}, "ever": {"_count": 1}, "connected": {"_count": 2}, "left": {"_count": 1}, "actually": {"_count": 1}, "planning": {"_count": 4}, "almost": {"_count": 3}, "stuck": {"_count": 2}, "indeed": {"_count": 2}, "hailed": {"_count": 1}, "waved": {"_count": 1}, "covered": {"_count": 1}, "cutting": {"_count": 1}, "forced": {"_count": 4}, "never": {"_count": 3}, "I": {"_count": 2}, "treating": {"_count": 1}, "sadly": {"_count": 1}, "due": {"_count": 1}, "more": {"_count": 2}, "bottle": {"_count": 1}, "working": {"_count": 3}, "jammed": {"_count": 1}, "accompanied": {"_count": 1}, "very": {"_count": 2}, "dead": {"_count": 2}, "required": {"_count": 1}, "less": {"_count": 1}, "sitting": {"_count": 2}, "standing": {"_count": 7}, "staring": {"_count": 1}, "wearing": {"_count": 1}, "level": {"_count": 1}, "likely": {"_count": 2}, "repotting": {"_count": 1}, "S": {"_count": 1}, "calling": {"_count": 1}, "alive": {"_count": 2}, "free": {"_count": 1}, "way": {"_count": 1}, "meeting": {"_count": 1}, "among": {"_count": 1}, "wishing": {"_count": 1}, "clear": {"_count": 2}, "merely": {"_count": 2}, "before": {"_count": 1}, "awake": {"_count": 1}, "extraknobbly": {"_count": 1}, "to": {"_count": 9}, "just": {"_count": 3}, "hoping": {"_count": 2}, "dying": {"_count": 1}, "extremely": {"_count": 1}, "bellowing": {"_count": 1}, "attempting": {"_count": 1}, "after": {"_count": 2}, "pure": {"_count": 1}, "helping": {"_count": 1}, "carrying": {"_count": 1}, "nothing": {"_count": 1}, "smiling": {"_count": 1}, "wrong": {"_count": 1}, "above": {"_count": 1}, "walking": {"_count": 2}, "blinking": {"_count": 1}, "at": {"_count": 3}, "safe": {"_count": 1}, "putting": {"_count": 1}, "not": {"_count": 16}, "mentioned": {"_count": 1}, "opponents": {"_count": 1}, "asking": {"_count": 1}, "closing": {"_count": 2}, "enclosed": {"_count": 2}, "formulating": {"_count": 1}, "wheeling": {"_count": 1}, "of": {"_count": 3}, "out": {"_count": 3}, "saving": {"_count": 1}, "here": {"_count": 2}, "introduced": {"_count": 1}, "climbing": {"_count": 3}, "disowned": {"_count": 1}, "depositing": {"_count": 1}, "really": {"_count": 4}, "congregated": {"_count": 1}, "waiting": {"_count": 2}, "angling": {"_count": 1}, "ordered": {"_count": 1}, "most": {"_count": 1}, "completely": {"_count": 2}, "doomed": {"_count": 1}, "picking": {"_count": 1}, "passing": {"_count": 2}, "five": {"_count": 1}, "ripped": {"_count": 1}, "practicing": {"_count": 2}, "training": {"_count": 1}, "irresponsible": {"_count": 1}, "facetoface": {"_count": 1}, "unsurprised": {"_count": 1}, "halfway": {"_count": 2}, "leaving": {"_count": 1}, "recalled": {"_count": 1}, "taking": {"_count": 2}, "soaked": {"_count": 1}, "true": {"_count": 3}, "seriously": {"_count": 1}, "within": {"_count": 2}, "Death": {"_count": 1}, "gettin": {"_count": 1}, "real": {"_count": 1}, "bad": {"_count": 1}, "yet": {"_count": 1}, "shifting": {"_count": 1}, "eating": {"_count": 1}, "bound": {"_count": 1}, "famous": {"_count": 1}, "buying": {"_count": 1}, "bombarding": {"_count": 1}, "on": {"_count": 2}, "acting": {"_count": 1}, "no": {"_count": 4}, "laughing": {"_count": 1}, "forewarned": {"_count": 1}, "suffering": {"_count": 1}, "cobwebs": {"_count": 1}, "called": {"_count": 2}, "examining": {"_count": 1}, "observing": {"_count": 1}, "casting": {"_count": 1}, "inside": {"_count": 1}, "once": {"_count": 1}, "retreating": {"_count": 1}, "even": {"_count": 1}, "traveling": {"_count": 1}, "hurtling": {"_count": 1}, "mere": {"_count": 1}, "Hermiones": {"_count": 1}, "saved": {"_count": 1}, "discussing": {"_count": 2}, "neither": {"_count": 1}, "indecent": {"_count": 1}, "nudging": {"_count": 1}, "letting": {"_count": 1}, "reasonably": {"_count": 1}, "securely": {"_count": 1}, "clearly": {"_count": 1}, "dealing": {"_count": 1}, "better": {"_count": 1}, "hurrying": {"_count": 1}, "enveloped": {"_count": 1}, "currently": {"_count": 1}, "this": {"_count": 1}, "away": {"_count": 1}, "fact": {"_count": 1}, "bearing": {"_count": 1}, "told": {"_count": 1}, "usually": {"_count": 1}, "woken": {"_count": 1}, "together": {"_count": 2}, "as": {"_count": 2}, "waxy": {"_count": 1}, "enjoying": {"_count": 1}, "late": {"_count": 1}, "your": {"_count": 1}, "uncommonly": {"_count": 1}, "coming": {"_count": 3}, "bouncing": {"_count": 1}, "drawn": {"_count": 1}, "surrounded": {"_count": 1}, "Streetlights": {"_count": 1}, "Hagrid": {"_count": 1}, "aiming": {"_count": 1}, "Hermione": {"_count": 1}, "precisely": {"_count": 1}, "unable": {"_count": 1}, "Muggles": {"_count": 1}, "smashing": {"_count": 1}, "rough": {"_count": 1}, "infectious": {"_count": 1}, "intent": {"_count": 1}, "exposed": {"_count": 1}, "gliding": {"_count": 1}, "caused": {"_count": 1}, "comfortably": {"_count": 1}, "playing": {"_count": 1}, "punished": {"_count": 1}, "three": {"_count": 1}, "seeing": {"_count": 1}, "unaccompanied": {"_count": 1}, "camping": {"_count": 1}, "also": {"_count": 1}, "investigating": {"_count": 1}, "found": {"_count": 1}, "lifeless": {"_count": 1}, "bidden": {"_count": 1}, "mistaken": {"_count": 1}, "wizards": {"_count": 1}, "wellprepared": {"_count": 1}, "sharing": {"_count": 1}, "trusting": {"_count": 1}, "hunting": {"_count": 1}, "but": {"_count": 1}, "Xraying": {"_count": 1}, "hatching": {"_count": 1}, "listening": {"_count": 1}, "empty": {"_count": 1}, "feeding": {"_count": 1}, "embracing": {"_count": 1}, "bowled": {"_count": 1}, "brought": {"_count": 1}, "holding": {"_count": 1}, "approaching": {"_count": 1}, "children": {"_count": 1}, "invisible": {"_count": 2}}, "just": {"_count": 15, "didnt": {"_count": 1}, "hurtled": {"_count": 1}, "keep": {"_count": 1}, "chuck": {"_count": 1}, "liked": {"_count": 1}, "But": {"_count": 1}, "dont": {"_count": 1}, "like": {"_count": 1}, "had": {"_count": 1}, "polish": {"_count": 1}, "cant": {"_count": 1}, "soar": {"_count": 1}, "want": {"_count": 1}, "took": {"_count": 1}, "turn": {"_count": 1}}, "wanted": {"_count": 15, "but": {"_count": 1}, "to": {"_count": 11}, "me": {"_count": 1}, "more": {"_count": 1}, "so": {"_count": 1}}, "also": {"_count": 1, "had": {"_count": 1}}, "could": {"_count": 166, "bear": {"_count": 1}, "see": {"_count": 18}, "hurry": {"_count": 1}, "read": {"_count": 1}, "have": {"_count": 7}, "the": {"_count": 2}, "fly": {"_count": 1}, "find": {"_count": 4}, "spear": {"_count": 1}, "tell": {"_count": 3}, "send": {"_count": 1}, "suspend": {"_count": 1}, "make": {"_count": 4}, "hear": {"_count": 20}, "talk": {"_count": 3}, "": {"_count": 4}, "practice": {"_count": 1}, "without": {"_count": 1}, "away": {"_count": 1}, "play": {"_count": 1}, "follow": {"_count": 1}, "do": {"_count": 4}, "only": {"_count": 2}, "slide": {"_count": 1}, "resist": {"_count": 2}, "not": {"_count": 13}, "get": {"_count": 3}, "cover": {"_count": 1}, "even": {"_count": 1}, "bent": {"_count": 1}, "they": {"_count": 2}, "skirting": {"_count": 1}, "Buckbeak": {"_count": 1}, "take": {"_count": 1}, "be": {"_count": 6}, "all": {"_count": 2}, "still": {"_count": 2}, "Apparate": {"_count": 1}, "easily": {"_count": 1}, "sneak": {"_count": 1}, "happily": {"_count": 1}, "hardly": {"_count": 4}, "say": {"_count": 2}, "ascertain": {"_count": 1}, "descend": {"_count": 1}, "now": {"_count": 1}, "glimpse": {"_count": 1}, "start": {"_count": 1}, "toward": {"_count": 1}, "pull": {"_count": 1}, "dress": {"_count": 1}, "complicate": {"_count": 1}, "while": {"_count": 1}, "close": {"_count": 1}, "no": {"_count": 2}, "for": {"_count": 1}, "escape": {"_count": 1}, "past": {"_count": 1}, "disabuse": {"_count": 1}, "but": {"_count": 1}, "dodge": {"_count": 1}, "reach": {"_count": 1}, "speak": {"_count": 1}, "detect": {"_count": 1}, "work": {"_count": 2}, "enter": {"_count": 1}, "Disapparate": {"_count": 1}, "help": {"_count": 1}, "recite": {"_count": 1}, "return": {"_count": 1}, "over": {"_count": 1}, "rescue": {"_count": 1}, "slip": {"_count": 1}, "move": {"_count": 1}, "chew": {"_count": 1}, "up": {"_count": 1}, "carry": {"_count": 1}}, "hadnt": {"_count": 7, "met": {"_count": 1}, "found": {"_count": 1}, "been": {"_count": 1}, "seen": {"_count": 1}, "covered": {"_count": 1}, "taken": {"_count": 1}, "said": {"_count": 1}}, "had": {"_count": 466, "never": {"_count": 6}, "leapt": {"_count": 1}, "been": {"_count": 58}, "wrenched": {"_count": 1}, "left": {"_count": 11}, "set": {"_count": 3}, "an": {"_count": 2}, "to": {"_count": 22}, "finished": {"_count": 9}, "noticed": {"_count": 2}, "none": {"_count": 1}, "mastered": {"_count": 1}, "all": {"_count": 12}, "entered": {"_count": 5}, "climbed": {"_count": 1}, "painted": {"_count": 1}, "one": {"_count": 1}, "both": {"_count": 2}, "something": {"_count": 2}, "Hagrid": {"_count": 1}, "met": {"_count": 5}, "lost": {"_count": 2}, "tackled": {"_count": 1}, "escaped": {"_count": 1}, "only": {"_count": 5}, "nothing": {"_count": 1}, "hit": {"_count": 2}, "pictured": {"_count": 1}, "eaten": {"_count": 3}, "arrived": {"_count": 7}, "double": {"_count": 1}, "now": {"_count": 3}, "started": {"_count": 4}, "better": {"_count": 2}, "just": {"_count": 16}, "lit": {"_count": 2}, "heard": {"_count": 11}, "dragged": {"_count": 1}, "hoped": {"_count": 1}, "found": {"_count": 7}, "reached": {"_count": 16}, "knocked": {"_count": 2}, "emerged": {"_count": 1}, "Professor": {"_count": 1}, "a": {"_count": 11}, "sat": {"_count": 5}, "fallen": {"_count": 2}, "passed": {"_count": 6}, "rehearsed": {"_count": 1}, "already": {"_count": 4}, "had": {"_count": 8}, "no": {"_count": 9}, "chased": {"_count": 1}, "achieved": {"_count": 1}, "taken": {"_count": 4}, "killed": {"_count": 1}, "come": {"_count": 10}, "risen": {"_count": 1}, "once": {"_count": 1}, "their": {"_count": 2}, "assured": {"_count": 1}, "given": {"_count": 1}, "formed": {"_count": 1}, "yet": {"_count": 2}, "undoubtedly": {"_count": 1}, "closed": {"_count": 1}, "overheard": {"_count": 3}, "made": {"_count": 4}, "received": {"_count": 2}, "removed": {"_count": 2}, "gotten": {"_count": 2}, "balled": {"_count": 1}, "developed": {"_count": 1}, "walked": {"_count": 3}, "managed": {"_count": 3}, "planned": {"_count": 1}, "said": {"_count": 2}, "forgotten": {"_count": 1}, "seen": {"_count": 7}, "done": {"_count": 6}, "copied": {"_count": 1}, "disappeared": {"_count": 2}, "gone": {"_count": 3}, "neglected": {"_count": 1}, "finally": {"_count": 1}, "thought": {"_count": 1}, "become": {"_count": 3}, "needed": {"_count": 1}, "sneaked": {"_count": 1}, "fun": {"_count": 1}, "watched": {"_count": 1}, "ever": {"_count": 4}, "used": {"_count": 1}, "felt": {"_count": 1}, "obviously": {"_count": 1}, "those": {"_count": 1}, "murmured": {"_count": 1}, "swallowed": {"_count": 1}, "feared": {"_count": 1}, "tied": {"_count": 1}, "brought": {"_count": 1}, "hurtled": {"_count": 1}, "stopped": {"_count": 2}, "barely": {"_count": 2}, "not": {"_count": 10}, "read": {"_count": 1}, "placed": {"_count": 1}, "spent": {"_count": 3}, "after": {"_count": 2}, "won": {"_count": 1}, "good": {"_count": 1}, "expected": {"_count": 1}, "back": {"_count": 1}, "committed": {"_count": 1}, "kept": {"_count": 1}, "agreed": {"_count": 1}, "the": {"_count": 4}, "continued": {"_count": 1}, "Potions": {"_count": 1}, "opened": {"_count": 1}, "exhausted": {"_count": 1}, "great": {"_count": 1}, "witnessed": {"_count": 1}, "followed": {"_count": 1}, "first": {"_count": 2}, "": {"_count": 1}, "exams": {"_count": 1}, "overdosed": {"_count": 1}, "hardly": {"_count": 1}, "got": {"_count": 1}, "argued": {"_count": 1}, "criticized": {"_count": 1}, "always": {"_count": 3}, "glimpsed": {"_count": 1}, "congealed": {"_count": 1}, "time": {"_count": 1}, "broken": {"_count": 2}, "murdered": {"_count": 1}, "certainly": {"_count": 1}, "abandoned": {"_count": 1}, "shared": {"_count": 1}, "at": {"_count": 1}, "this": {"_count": 1}, "relaxed": {"_count": 1}, "built": {"_count": 1}, "Apparated": {"_count": 1}, "slept": {"_count": 1}, "settled": {"_count": 1}, "camped": {"_count": 1}, "pitched": {"_count": 2}, "cast": {"_count": 1}, "ensured": {"_count": 1}, "surreptitiously": {"_count": 1}, "talked": {"_count": 1}, "arranged": {"_count": 1}, "discussed": {"_count": 1}, "appeared": {"_count": 2}, "traveled": {"_count": 1}, "last": {"_count": 1}, "moments": {"_count": 1}, "enjoyed": {"_count": 1}, "infiltrated": {"_count": 1}, "decided": {"_count": 1}, "blasted": {"_count": 1}, "frequently": {"_count": 1}}, "didnt": {"_count": 48, "want": {"_count": 2}, "fail": {"_count": 1}, "speak": {"_count": 1}, "have": {"_count": 6}, "until": {"_count": 1}, "find": {"_count": 2}, "see": {"_count": 2}, "trust": {"_count": 1}, "": {"_count": 1}, "give": {"_count": 1}, "attract": {"_count": 1}, "surprise": {"_count": 1}, "fly": {"_count": 1}, "move": {"_count": 2}, "seem": {"_count": 2}, "agree": {"_count": 1}, "desert": {"_count": 1}, "look": {"_count": 1}, "say": {"_count": 1}, "eat": {"_count": 1}, "get": {"_count": 3}, "yet": {"_count": 1}, "need": {"_count": 2}, "work": {"_count": 1}, "report": {"_count": 1}, "tell": {"_count": 1}, "expect": {"_count": 1}, "know": {"_count": 3}, "kill": {"_count": 1}, "talk": {"_count": 1}, "keep": {"_count": 1}, "split": {"_count": 1}, "mean": {"_count": 1}}, "pointed": {"_count": 1, "and": {"_count": 1}}, "made": {"_count": 35, "him": {"_count": 2}, "their": {"_count": 21}, "no": {"_count": 1}, "sure": {"_count": 2}, "contact": {"_count": 2}, "lovely": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 2}, "on": {"_count": 1}, "so": {"_count": 1}}, "normally": {"_count": 2, "pretended": {"_count": 1}, "were": {"_count": 1}}, "went": {"_count": 50, "upstairs": {"_count": 2}, "to": {"_count": 5}, "again": {"_count": 1}, "out": {"_count": 2}, "into": {"_count": 2}, "through": {"_count": 3}, "emerging": {"_count": 1}, "straight": {"_count": 2}, "their": {"_count": 1}, "back": {"_count": 3}, "down": {"_count": 9}, "": {"_count": 6}, "near": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 1}, "off": {"_count": 2}, "up": {"_count": 2}, "together": {"_count": 1}, "for": {"_count": 2}, "on": {"_count": 1}, "Harry": {"_count": 1}, "looking": {"_count": 1}}, "wouldnt": {"_count": 14, "be": {"_count": 1}, "because": {"_count": 1}, "work": {"_count": 1}, "see": {"_count": 1}, "remember": {"_count": 1}, "have": {"_count": 1}, "hear": {"_count": 1}, "do": {"_count": 1}, "need": {"_count": 1}, "he": {"_count": 1}, "help": {"_count": 1}, "would": {"_count": 1}, "let": {"_count": 1}, "want": {"_count": 1}}, "looked": {"_count": 26, "up": {"_count": 3}, "like": {"_count": 5}, "so": {"_count": 1}, "into": {"_count": 2}, "burned": {"_count": 1}, "through": {"_count": 1}, "less": {"_count": 1}, "scared": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 4}, "swinging": {"_count": 1}, "back": {"_count": 1}, "down": {"_count": 1}, "oddly": {"_count": 1}, "directly": {"_count": 1}, "for": {"_count": 1}}, "both": {"_count": 17, "looked": {"_count": 1}, "pretended": {"_count": 1}, "backed": {"_count": 1}, "keeled": {"_count": 1}, "turned": {"_count": 1}, "opened": {"_count": 1}, "had": {"_count": 3}, "grinned": {"_count": 1}, "glared": {"_count": 1}, "took": {"_count": 1}, "held": {"_count": 1}, "bent": {"_count": 1}, "ought": {"_count": 1}, "end": {"_count": 1}, "were": {"_count": 1}}, "werent": {"_count": 23, "listening": {"_count": 1}, "going": {"_count": 3}, "sure": {"_count": 2}, "already": {"_count": 1}, "as": {"_count": 1}, "there": {"_count": 2}, "interested": {"_count": 1}, "taken": {"_count": 1}, "allowed": {"_count": 2}, "about": {"_count": 1}, "entirely": {"_count": 1}, "they": {"_count": 1}, "doing": {"_count": 1}, "happy": {"_count": 1}, "genuinely": {"_count": 1}, "But": {"_count": 1}, "separated": {"_count": 1}, "really": {"_count": 1}}, "dont": {"_count": 35, "said": {"_count": 4}, "get": {"_count": 1}, "seem": {"_count": 4}, "move": {"_count": 1}, "think": {"_count": 1}, "even": {"_count": 1}, "really": {"_count": 1}, "need": {"_count": 1}, "crease": {"_count": 1}, "look": {"_count": 6}, "know": {"_count": 2}, "exactly": {"_count": 1}, "shut": {"_count": 1}, "add": {"_count": 1}, "take": {"_count": 1}, "mention": {"_count": 1}, "and": {"_count": 1}, "work": {"_count": 1}, "see": {"_count": 1}, "tell": {"_count": 1}, "want": {"_count": 1}, "kill": {"_count": 1}, "show": {"_count": 1}}, "seemed": {"_count": 14, "to": {"_count": 13}, "too": {"_count": 1}}, "bought": {"_count": 1, "him": {"_count": 1}}, "watched": {"_count": 15, "a": {"_count": 1}, "the": {"_count": 3}, "Malfoy": {"_count": 1}, "Snape": {"_count": 1}, "it": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 1}, "stones": {"_count": 1}, "several": {"_count": 1}, "their": {"_count": 1}, "him": {"_count": 1}, "these": {"_count": 1}, "Harry": {"_count": 1}}, "always": {"_count": 3, "did": {"_count": 1}, "chase": {"_count": 1}, "do": {"_count": 1}}, "possibly": {"_count": 2, "know": {"_count": 1}, "can": {"_count": 1}}, "cant": {"_count": 24, "deliver": {"_count": 1}, "be": {"_count": 3}, "see": {"_count": 2}, "usually": {"_count": 1}, "find": {"_count": 2}, "said": {"_count": 1}, "just": {"_count": 1}, "possibly": {"_count": 1}, "spot": {"_count": 1}, "get": {"_count": 3}, "expel": {"_count": 1}, "do": {"_count": 2}, "have": {"_count": 2}, "contradict": {"_count": 1}, "admit": {"_count": 1}, "all": {"_count": 1}}, "couldnt": {"_count": 23, "go": {"_count": 1}, "see": {"_count": 6}, "aff": {"_count": 1}, "carry": {"_count": 1}, "risk": {"_count": 2}, "hear": {"_count": 2}, "stop": {"_count": 1}, "": {"_count": 1}, "restrain": {"_count": 1}, "be": {"_count": 2}, "get": {"_count": 1}, "possibly": {"_count": 1}, "have": {"_count": 1}, "find": {"_count": 1}, "save": {"_count": 1}}, "drove": {"_count": 2, "": {"_count": 1}, "wizards": {"_count": 1}}, "reached": {"_count": 80, "the": {"_count": 57}, "a": {"_count": 8}, "his": {"_count": 2}, "it": {"_count": 2}, "Hagrids": {"_count": 1}, "open": {"_count": 1}, "their": {"_count": 2}, "to": {"_count": 1}, "number": {"_count": 1}, "Gryffindors": {"_count": 1}, "Care": {"_count": 1}, "compartment": {"_count": 1}, "what": {"_count": 1}, "through": {"_count": 1}}, "got": {"_count": 37, "back": {"_count": 2}, "getting": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 5}, "near": {"_count": 1}, "up": {"_count": 2}, "there": {"_count": 1}, "off": {"_count": 1}, "their": {"_count": 2}, "into": {"_count": 2}, "soaked": {"_count": 1}, "excited": {"_count": 1}, "to": {"_count": 1}, "too": {"_count": 1}, "together": {"_count": 2}, "her": {"_count": 1}, "him": {"_count": 1}, "separated": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 1}, "chased": {"_count": 1}, "through": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "really": {"_count": 1}, "married": {"_count": 1}}, "knew": {"_count": 32, "what": {"_count": 2}, "was": {"_count": 1}, "why": {"_count": 1}, "for": {"_count": 1}, "someone": {"_count": 1}, "": {"_count": 1}, "things": {"_count": 1}, "only": {"_count": 1}, "better": {"_count": 1}, "wed": {"_count": 1}, "you": {"_count": 1}, "each": {"_count": 2}, "Winky": {"_count": 1}, "no": {"_count": 1}, "anything": {"_count": 1}, "the": {"_count": 1}, "we": {"_count": 1}, "of": {"_count": 1}, "had": {"_count": 1}, "or": {"_count": 1}, "it": {"_count": 2}, "exactly": {"_count": 1}, "from": {"_count": 1}, "there": {"_count": 1}, "that": {"_count": 1}, "not": {"_count": 1}, "Xenophilius": {"_count": 1}, "youre": {"_count": 1}, "Tom": {"_count": 1}}, "": {"_count": 123, "?": {"_count": 121}, ".": {"_count": 2}}, "await": {"_count": 1, "my": {"_count": 1}}, "left": {"_count": 38, "and": {"_count": 2}, "Eeylops": {"_count": 1}, "the": {"_count": 21}, "Hagrid": {"_count": 1}, "Percy": {"_count": 1}, "trying": {"_count": 1}, "school": {"_count": 1}, "his": {"_count": 1}, "together": {"_count": 1}, "Flitwicks": {"_count": 1}, "gaps": {"_count": 1}, "Good": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "both": {"_count": 1}, "them": {"_count": 1}}, "died": {"_count": 4, "in": {"_count": 1}, "": {"_count": 1}, "Id": {"_count": 1}, "said": {"_count": 1}}, "couldve": {"_count": 1, "done": {"_count": 1}}, "been": {"_count": 6, "turned": {"_count": 1}, "able": {"_count": 1}, "unblemished": {"_count": 1}, "sent": {"_count": 1}, "happening": {"_count": 1}, "away": {"_count": 1}}, "sped": {"_count": 8, "off": {"_count": 1}, "past": {"_count": 2}, "out": {"_count": 1}, "right": {"_count": 1}, "through": {"_count": 1}, "up": {"_count": 1}, "toward": {"_count": 1}}, "did": {"_count": 49, "this": {"_count": 1}, "yes": {"_count": 1}, "it": {"_count": 3}, "their": {"_count": 1}, "rather": {"_count": 1}, "": {"_count": 3}, "on": {"_count": 2}, "giving": {"_count": 1}, "find": {"_count": 1}, "catch": {"_count": 1}, "to": {"_count": 1}, "something": {"_count": 1}, "not": {"_count": 22}, "so": {"_count": 3}, "divide": {"_count": 1}, "laugh": {"_count": 1}, "nothing": {"_count": 1}, "said": {"_count": 1}, "everyone": {"_count": 1}, "my": {"_count": 1}, "She": {"_count": 1}}, "clambered": {"_count": 3, "up": {"_count": 2}, "out": {"_count": 1}}, "walked": {"_count": 54, "through": {"_count": 3}, "in": {"_count": 2}, "up": {"_count": 4}, "inside": {"_count": 1}, "down": {"_count": 7}, "out": {"_count": 3}, "cautiously": {"_count": 1}, "all": {"_count": 1}, "back": {"_count": 5}, "past": {"_count": 1}, "on": {"_count": 1}, "into": {"_count": 2}, "Oh": {"_count": 1}, "Harry": {"_count": 1}, "quickly": {"_count": 1}, "swiftly": {"_count": 1}, "around": {"_count": 3}, "and": {"_count": 2}, "": {"_count": 2}, "the": {"_count": 2}, "but": {"_count": 2}, "along": {"_count": 1}, "toward": {"_count": 1}, "farther": {"_count": 1}, "slowly": {"_count": 1}, "across": {"_count": 1}, "forward": {"_count": 1}, "their": {"_count": 1}, "away": {"_count": 1}}, "say": {"_count": 19, "said": {"_count": 2}, "every": {"_count": 1}, "": {"_count": 1}, "Sirius": {"_count": 1}, "hes": {"_count": 3}, "if": {"_count": 1}, "yes": {"_count": 1}, "no": {"_count": 1}, "at": {"_count": 1}, "its": {"_count": 2}, "old": {"_count": 1}, "something": {"_count": 1}, "theyve": {"_count": 1}, "never": {"_count": 1}, "your": {"_count": 1}}, "climbed": {"_count": 27, "a": {"_count": 2}, "the": {"_count": 9}, "carefully": {"_count": 1}, "toward": {"_count": 1}, "inside": {"_count": 1}, "their": {"_count": 1}, "fully": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "into": {"_count": 2}, "out": {"_count": 1}, "it": {"_count": 1}, "another": {"_count": 1}, "through": {"_count": 1}, "higher": {"_count": 1}, "as": {"_count": 1}}, "waved": {"_count": 3, "and": {"_count": 1}, "back": {"_count": 1}, "their": {"_count": 1}}, "passed": {"_count": 67, "saying": {"_count": 1}, "or": {"_count": 1}, "the": {"_count": 14}, "corridors": {"_count": 1}, "along": {"_count": 1}, "Malfoy": {"_count": 2}, "Harry": {"_count": 2}, "": {"_count": 6}, "a": {"_count": 5}, "and": {"_count": 4}, "over": {"_count": 2}, "in": {"_count": 3}, "right": {"_count": 2}, "Hagrids": {"_count": 1}, "Amos": {"_count": 1}, "here": {"_count": 1}, "which": {"_count": 1}, "between": {"_count": 1}, "Its": {"_count": 1}, "one": {"_count": 1}, "Scrivenshafts": {"_count": 1}, "Ginny": {"_count": 1}, "through": {"_count": 4}, "leering": {"_count": 1}, "but": {"_count": 1}, "large": {"_count": 1}, "Lavender": {"_count": 1}, "it": {"_count": 1}, "more": {"_count": 1}, "out": {"_count": 1}, "before": {"_count": 1}, "they": {"_count": 1}, "as": {"_count": 1}}, "plunged": {"_count": 2, "even": {"_count": 1}, "off": {"_count": 1}}, "complained": {"_count": 1, "how": {"_count": 1}}, "hurtled": {"_count": 5, "round": {"_count": 1}, "toward": {"_count": 1}, "around": {"_count": 1}, "after": {"_count": 1}, "past": {"_count": 1}}, "stood": {"_count": 26, "blinking": {"_count": 1}, "came": {"_count": 1}, "terrified": {"_count": 1}, "Dumbledore": {"_count": 1}, "in": {"_count": 3}, "up": {"_count": 1}, "": {"_count": 2}, "again": {"_count": 1}, "less": {"_count": 1}, "listening": {"_count": 1}, "looking": {"_count": 2}, "waiting": {"_count": 1}, "quite": {"_count": 1}, "staring": {"_count": 1}, "beneath": {"_count": 1}, "like": {"_count": 1}, "facing": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "braced": {"_count": 1}}, "get": {"_count": 15, "there": {"_count": 1}, "the": {"_count": 2}, "home": {"_count": 1}, "all": {"_count": 1}, "near": {"_count": 1}, "too": {"_count": 2}, "up": {"_count": 1}, "paid": {"_count": 1}, "premises": {"_count": 1}, "you": {"_count": 1}, "here": {"_count": 2}, "old": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "should": {"_count": 7, "let": {"_count": 1}, "keep": {"_count": 1}, "sit": {"_count": 1}, "have": {"_count": 1}, "teach": {"_count": 1}, "": {"_count": 1}, "stop": {"_count": 1}}, "saw": {"_count": 67, "yeh": {"_count": 1}, "their": {"_count": 2}, "this": {"_count": 1}, "not": {"_count": 1}, "flat": {"_count": 1}, "to": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 6}, "a": {"_count": 5}, "one": {"_count": 2}, "that": {"_count": 6}, "was": {"_count": 2}, "him": {"_count": 7}, "signs": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "why": {"_count": 1}, "Sirius": {"_count": 1}, "two": {"_count": 2}, "another": {"_count": 1}, "movement": {"_count": 1}, "more": {"_count": 1}, "Cho": {"_count": 1}, "Harry": {"_count": 1}, "three": {"_count": 1}, "Mr": {"_count": 1}, "it": {"_count": 1}, "Mrs": {"_count": 1}, "about": {"_count": 1}, "Viktor": {"_count": 1}, "Malfoy": {"_count": 1}, "at": {"_count": 2}, "Lupin": {"_count": 1}, "what": {"_count": 1}, "Draco": {"_count": 1}, "nobody": {"_count": 1}, "you": {"_count": 2}, "students": {"_count": 1}, "as": {"_count": 1}, "scared": {"_count": 1}, "Alecto": {"_count": 1}}, "visited": {"_count": 2, "the": {"_count": 1}, "Zonkos": {"_count": 1}}, "make": {"_count": 7, "me": {"_count": 1}, "highly": {"_count": 1}, "you": {"_count": 2}, "sitting": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "stepped": {"_count": 17, "inside": {"_count": 3}, "into": {"_count": 2}, "over": {"_count": 3}, "carefully": {"_count": 1}, "through": {"_count": 1}, "out": {"_count": 6}, "forward": {"_count": 1}}, "snapped": {"_count": 1, "it": {"_count": 1}}, "sat": {"_count": 18, "down": {"_count": 13}, "and": {"_count": 1}, "side": {"_count": 1}, "in": {"_count": 2}, "it": {"_count": 1}}, "expect": {"_count": 2, "great": {"_count": 1}, "to": {"_count": 1}}, "acted": {"_count": 3, "as": {"_count": 1}, "didnt": {"_count": 1}, "like": {"_count": 1}}, "like": {"_count": 8, "": {"_count": 1}, "you": {"_count": 1}, "their": {"_count": 1}, "doesnt": {"_count": 1}, "see": {"_count": 1}, "the": {"_count": 1}, "Voldemort": {"_count": 1}, "him": {"_count": 1}}, "still": {"_count": 8, "get": {"_count": 1}, "had": {"_count": 2}, "seemed": {"_count": 1}, "need": {"_count": 1}, "dont": {"_count": 1}, "together": {"_count": 1}, "havent": {"_count": 1}}, "learn": {"_count": 2, "quick": {"_count": 1}, "said": {"_count": 1}}, "mean": {"_count": 2, "every": {"_count": 1}, "\u2018no": {"_count": 1}}, "shook": {"_count": 3, "their": {"_count": 1}, "hands": {"_count": 2}}, "put": {"_count": 8, "me": {"_count": 1}, "their": {"_count": 2}, "him": {"_count": 1}, "my": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 1}}, "took": {"_count": 16, "anything": {"_count": 1}, "": {"_count": 3}, "their": {"_count": 5}, "notes": {"_count": 2}, "another": {"_count": 1}, "marks": {"_count": 1}, "off": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "can": {"_count": 34, "afford": {"_count": 1}, "never": {"_count": 1}, "be": {"_count": 4}, "leech": {"_count": 1}, "escape": {"_count": 1}, "have": {"_count": 1}, "handle": {"_count": 1}, "control": {"_count": 1}, "": {"_count": 1}, "do": {"_count": 1}, "wait": {"_count": 1}, "steer": {"_count": 1}, "said": {"_count": 1}, "understand": {"_count": 2}, "get": {"_count": 1}, "recognize": {"_count": 1}, "look": {"_count": 2}, "tell": {"_count": 1}, "help": {"_count": 1}, "and": {"_count": 1}, "detect": {"_count": 1}, "gain": {"_count": 1}, "make": {"_count": 1}, "all": {"_count": 1}, "prove": {"_count": 1}, "Apparate": {"_count": 1}, "barely": {"_count": 1}, "think": {"_count": 1}, "avoid": {"_count": 1}}, "thought": {"_count": 15, "there": {"_count": 1}, "I": {"_count": 2}, "it": {"_count": 1}, "Arithmancy": {"_count": 1}, "they": {"_count": 4}, "of": {"_count": 1}, "that": {"_count": 1}, "Voldemort": {"_count": 1}, "about": {"_count": 1}, "Malfoy": {"_count": 1}, "he": {"_count": 1}}, "followed": {"_count": 13, "Hagrid": {"_count": 1}, "Quirrell": {"_count": 1}, "the": {"_count": 4}, "Neville": {"_count": 1}, "her": {"_count": 1}, "Hermione": {"_count": 1}, "his": {"_count": 1}, "Professor": {"_count": 1}, "Mr": {"_count": 1}, "him": {"_count": 1}}, "sailed": {"_count": 1, "nearer": {"_count": 1}}, "all": {"_count": 74, "bent": {"_count": 1}, "said": {"_count": 2}, "invisible": {"_count": 1}, "swooped": {"_count": 1}, "sat": {"_count": 5}, "read": {"_count": 1}, "separated": {"_count": 1}, "hurried": {"_count": 3}, "proceeded": {"_count": 1}, "climbed": {"_count": 2}, "watched": {"_count": 2}, "left": {"_count": 1}, "gasped": {"_count": 1}, "go": {"_count": 3}, "refused": {"_count": 1}, "looked": {"_count": 6}, "jumped": {"_count": 1}, "made": {"_count": 2}, "sending": {"_count": 1}, "think": {"_count": 1}, "bore": {"_count": 1}, "seemed": {"_count": 4}, "went": {"_count": 2}, "forgotten": {"_count": 1}, "thought": {"_count": 1}, "wake": {"_count": 1}, "found": {"_count": 1}, "knew": {"_count": 1}, "fillup": {"_count": 1}, "headed": {"_count": 1}, "believed": {"_count": 1}, "took": {"_count": 2}, "know": {"_count": 1}, "show": {"_count": 1}, "so": {"_count": 1}, "turned": {"_count": 2}, "averted": {"_count": 1}, "were": {"_count": 1}, "Neville": {"_count": 1}, "seem": {"_count": 1}, "lookin": {"_count": 1}, "stood": {"_count": 1}, "began": {"_count": 1}, "passed": {"_count": 1}, "accompanied": {"_count": 1}, "thinks": {"_count": 1}, "traipsed": {"_count": 1}, "clambered": {"_count": 1}, "hate": {"_count": 1}, "have": {"_count": 1}, "staring": {"_count": 1}}, "would": {"_count": 90, "usually": {"_count": 2}, "move": {"_count": 1}, "overtake": {"_count": 1}, "lose": {"_count": 1}, "be": {"_count": 16}, "get": {"_count": 1}, "not": {"_count": 9}, "never": {"_count": 3}, "end": {"_count": 1}, "remember": {"_count": 1}, "desert": {"_count": 1}, "change": {"_count": 1}, "take": {"_count": 1}, "surely": {"_count": 1}, "make": {"_count": 3}, "raise": {"_count": 1}, "find": {"_count": 2}, "have": {"_count": 9}, "need": {"_count": 2}, "": {"_count": 2}, "probably": {"_count": 1}, "look": {"_count": 1}, "it": {"_count": 1}, "know": {"_count": 2}, "fail": {"_count": 1}, "all": {"_count": 5}, "next": {"_count": 1}, "give": {"_count": 1}, "want": {"_count": 1}, "become": {"_count": 1}, "win": {"_count": 1}, "come": {"_count": 1}, "soon": {"_count": 1}, "said": {"_count": 1}, "continue": {"_count": 1}, "do": {"_count": 2}, "notice": {"_count": 1}, "attract": {"_count": 1}, "learn": {"_count": 1}, "set": {"_count": 1}, "catch": {"_count": 1}, "consider": {"_count": 1}, "miss": {"_count": 1}, "lead": {"_count": 1}, "cause": {"_count": 1}}, "sort": {"_count": 2, "us": {"_count": 1}, "of": {"_count": 1}}, "arrived": {"_count": 21, "": {"_count": 3}, "at": {"_count": 7}, "in": {"_count": 5}, "early": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "an": {"_count": 1}, "Hermione": {"_count": 1}}, "glided": {"_count": 1, "across": {"_count": 1}}, "came": {"_count": 16, "to": {"_count": 6}, "much": {"_count": 1}, "quiet": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 2}, "back": {"_count": 1}, "shuffling": {"_count": 1}, "into": {"_count": 2}, "at": {"_count": 1}}, "are": {"_count": 79, "just": {"_count": 1}, "Nitwit": {"_count": 1}, "the": {"_count": 1}, "or": {"_count": 1}, "a": {"_count": 1}, "theyre": {"_count": 2}, "traced": {"_count": 1}, "extremely": {"_count": 1}, "prepared": {"_count": 1}, "angrier": {"_count": 1}, "and": {"_count": 2}, "with": {"_count": 2}, "in": {"_count": 7}, "here": {"_count": 1}, "": {"_count": 11}, "said": {"_count": 3}, "about": {"_count": 1}, "did": {"_count": 1}, "there": {"_count": 1}, "entombed": {"_count": 1}, "our": {"_count": 1}, "up": {"_count": 1}, "not": {"_count": 3}, "still": {"_count": 1}, "currently": {"_count": 1}, "coming": {"_count": 1}, "s": {"_count": 1}, "very": {"_count": 1}, "free": {"_count": 1}, "absolutely": {"_count": 1}, "paid": {"_count": 1}, "so": {"_count": 1}, "wasting": {"_count": 1}, "now": {"_count": 1}, "he": {"_count": 1}, "both": {"_count": 1}, "delivered": {"_count": 1}, "doing": {"_count": 1}, "too": {"_count": 1}, "but": {"_count": 2}, "curious": {"_count": 1}, "more": {"_count": 1}, "better": {"_count": 1}, "at": {"_count": 1}, "sir": {"_count": 1}, "gone": {"_count": 1}, "merely": {"_count": 1}, "ask": {"_count": 1}, "together": {"_count": 1}, "scared": {"_count": 1}, "of": {"_count": 1}, "allowed": {"_count": 1}, "because": {"_count": 1}, "Romulus": {"_count": 1}, "secure": {"_count": 1}}, "liked": {"_count": 2, "him": {"_count": 1}, "was": {"_count": 1}}, "start": {"_count": 5, "right": {"_count": 1}, "trying": {"_count": 1}, "trampling": {"_count": 1}, "attacking": {"_count": 1}, "training": {"_count": 1}}, "started": {"_count": 11, "throwing": {"_count": 1}, "to": {"_count": 4}, "up": {"_count": 2}, "shooting": {"_count": 1}, "winning": {"_count": 1}, "discussing": {"_count": 1}, "coming": {"_count": 1}}, "set": {"_count": 30, "off": {"_count": 27}, "eyes": {"_count": 1}, "fire": {"_count": 1}, "to": {"_count": 1}}, "found": {"_count": 39, "their": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 5}, "Hagrid": {"_count": 1}, "Percy": {"_count": 1}, "her": {"_count": 2}, "themselves": {"_count": 6}, "it": {"_count": 2}, "Sir": {"_count": 1}, "out": {"_count": 2}, "was": {"_count": 1}, "that": {"_count": 2}, "an": {"_count": 2}, "nothing": {"_count": 1}, "spiders": {"_count": 1}, "Professor": {"_count": 1}, "him": {"_count": 3}, "ways": {"_count": 1}, "Madam": {"_count": 1}, "us": {"_count": 1}, "Lily": {"_count": 1}}, "pulled": {"_count": 4, "on": {"_count": 3}, "it": {"_count": 1}}, "learned": {"_count": 1, "how": {"_count": 1}}, "scribbled": {"_count": 1, "down": {"_count": 1}}, "believed": {"_count": 5, "this": {"_count": 1}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 1}}, "caught": {"_count": 5, "every": {"_count": 1}, "him": {"_count": 2}, "sight": {"_count": 2}}, "heard": {"_count": 67, "a": {"_count": 16}, "someone": {"_count": 2}, "Filch": {"_count": 1}, "him": {"_count": 4}, "the": {"_count": 12}, "quick": {"_count": 1}, "it": {"_count": 1}, "something": {"_count": 1}, "hurrying": {"_count": 1}, "was": {"_count": 1}, "footsteps": {"_count": 2}, "voices": {"_count": 3}, "movement": {"_count": 2}, "Hermione": {"_count": 1}, "Fudge": {"_count": 1}, "her": {"_count": 5}, "their": {"_count": 1}, "Mr": {"_count": 1}, "Moodys": {"_count": 1}, "an": {"_count": 1}, "words": {"_count": 1}, "distant": {"_count": 1}, "Sirius": {"_count": 1}, "Mrs": {"_count": 1}, "what": {"_count": 1}, "raucous": {"_count": 1}, "more": {"_count": 1}, "Bellatrixs": {"_count": 1}, "Bellatrix": {"_count": 1}}, "told": {"_count": 9, "Hagrid": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 2}, "me": {"_count": 4}, "her": {"_count": 1}}, "spotted": {"_count": 6, "a": {"_count": 1}, "Mrs": {"_count": 1}, "Crabbe": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}, "Cormac": {"_count": 1}}, "marched": {"_count": 9, "down": {"_count": 1}, "on": {"_count": 1}, "off": {"_count": 2}, "with": {"_count": 1}, "them": {"_count": 1}, "": {"_count": 1}, "through": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "crept": {"_count": 6, "nearer": {"_count": 1}, "along": {"_count": 2}, "out": {"_count": 1}, "toward": {"_count": 2}}, "might": {"_count": 39, "be": {"_count": 10}, "as": {"_count": 2}, "come": {"_count": 2}, "know": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 1}, "invite": {"_count": 1}, "want": {"_count": 1}, "prefer": {"_count": 1}, "no": {"_count": 1}, "Take": {"_count": 1}, "not": {"_count": 2}, "take": {"_count": 1}, "hit": {"_count": 1}, "destroy": {"_count": 1}, "discuss": {"_count": 1}, "have": {"_count": 4}, "hear": {"_count": 1}, "check": {"_count": 1}, "wonder": {"_count": 1}, "find": {"_count": 1}, "help": {"_count": 1}, "give": {"_count": 1}, "commence": {"_count": 1}}, "scurried": {"_count": 1, "silently": {"_count": 1}}, "began": {"_count": 8, "to": {"_count": 6}, "filling": {"_count": 1}, "": {"_count": 1}}, "swung": {"_count": 2, "around": {"_count": 1}, "them": {"_count": 1}}, "ripped": {"_count": 1, "through": {"_count": 1}}, "ran": {"_count": 12, "for": {"_count": 1}, "they": {"_count": 2}, "inside": {"_count": 1}, "down": {"_count": 1}, "across": {"_count": 1}, "": {"_count": 3}, "back": {"_count": 2}, "past": {"_count": 1}}, "slammed": {"_count": 2, "into": {"_count": 1}, "the": {"_count": 1}}, "pushed": {"_count": 7, "helplessly": {"_count": 1}, "their": {"_count": 3}, "him": {"_count": 1}, "past": {"_count": 1}, "the": {"_count": 1}}, "piled": {"_count": 1, "through": {"_count": 1}}, "go": {"_count": 7, "Peeves": {"_count": 1}, "": {"_count": 2}, "back": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 1}}, "almost": {"_count": 1, "flew": {"_count": 1}}, "hardly": {"_count": 4, "cared": {"_count": 1}, "ever": {"_count": 1}, "knew": {"_count": 1}, "had": {"_count": 1}}, "think": {"_count": 18, "theyre": {"_count": 3}, "are": {"_count": 1}, "he": {"_count": 3}, "the": {"_count": 1}, "theyll": {"_count": 1}, "anymore": {"_count": 1}, "Im": {"_count": 3}, "I": {"_count": 2}, "they": {"_count": 1}, "Id": {"_count": 1}, "that": {"_count": 1}}, "spent": {"_count": 5, "a": {"_count": 1}, "an": {"_count": 1}, "two": {"_count": 1}, "most": {"_count": 1}, "together": {"_count": 1}}, "really": {"_count": 10, "wanted": {"_count": 1}, "needed": {"_count": 1}, "were": {"_count": 3}, "mean": {"_count": 1}, "dont": {"_count": 1}, "want": {"_count": 1}, "loathed": {"_count": 1}, "got": {"_count": 1}}, "play": {"_count": 1, "with": {"_count": 1}}, "for": {"_count": 3, "": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}}, "crack": {"_count": 1, "my": {"_count": 1}}, "nearly": {"_count": 1, "always": {"_count": 1}}, "trudged": {"_count": 2, "back": {"_count": 1}, "up": {"_count": 1}}, "woke": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "hurried": {"_count": 18, "past": {"_count": 1}, "back": {"_count": 4}, "nearer": {"_count": 1}, "up": {"_count": 1}, "upstairs": {"_count": 1}, "out": {"_count": 2}, "inside": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 1}, "across": {"_count": 1}, "after": {"_count": 1}, "over": {"_count": 1}, "on": {"_count": 1}, "off": {"_count": 1}}, "jostled": {"_count": 1, "their": {"_count": 1}}, "joined": {"_count": 14, "the": {"_count": 12}, "in": {"_count": 1}, "a": {"_count": 1}}, "said": {"_count": 19, "together": {"_count": 2}, "and": {"_count": 1}, "goodbye": {"_count": 2}, "ad": {"_count": 1}, "youd": {"_count": 2}, "pretending": {"_count": 1}, "in": {"_count": 1}, "were": {"_count": 1}, "downstairs": {"_count": 1}, "said": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "Yes": {"_count": 1}, "about": {"_count": 1}, "bath": {"_count": 1}, "would": {"_count": 1}}, "have": {"_count": 32, "": {"_count": 3}, "seen": {"_count": 1}, "been": {"_count": 4}, "reached": {"_count": 1}, "weve": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 5}, "made": {"_count": 1}, "believed": {"_count": 1}, "called": {"_count": 1}, "said": {"_count": 1}, "real": {"_count": 1}, "achieved": {"_count": 1}, "moved": {"_count": 1}, "a": {"_count": 1}, "shunned": {"_count": 1}, "ever": {"_count": 1}, "sustained": {"_count": 1}, "now": {"_count": 1}, "proven": {"_count": 1}, "no": {"_count": 1}, "lived": {"_count": 1}, "set": {"_count": 1}}, "sprinted": {"_count": 5, "back": {"_count": 2}, "up": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "entered": {"_count": 41, "November": {"_count": 1}, "the": {"_count": 19}, "Lockharts": {"_count": 1}, "": {"_count": 8}, "and": {"_count": 2}, "London": {"_count": 1}, "March": {"_count": 1}, "June": {"_count": 1}, "Hagrid": {"_count": 1}, "Wisteria": {"_count": 1}, "Harrys": {"_count": 1}, "Transfiguration": {"_count": 1}, "was": {"_count": 1}, "Hogsmeade": {"_count": 1}, "but": {"_count": 1}}, "hung": {"_count": 2, "in": {"_count": 1}, "limp": {"_count": 1}}, "kept": {"_count": 8, "as": {"_count": 1}, "shouting": {"_count": 1}, "Harry": {"_count": 1}, "me": {"_count": 1}, "rising": {"_count": 1}, "moving": {"_count": 1}, "to": {"_count": 1}, "reciting": {"_count": 1}}, "going": {"_count": 8, "to": {"_count": 8}}, "only": {"_count": 3, "had": {"_count": 1}, "know": {"_count": 1}, "take": {"_count": 1}}, "know": {"_count": 20, "who": {"_count": 1}, "things": {"_count": 1}, "anyone": {"_count": 1}, "youre": {"_count": 2}, "the": {"_count": 3}, "every": {"_count": 1}, "weve": {"_count": 1}, "something": {"_count": 1}, "theyve": {"_count": 1}, "anything": {"_count": 1}, "I": {"_count": 2}, "where": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}, "how": {"_count": 1}, "there": {"_count": 1}}, "returned": {"_count": 9, "to": {"_count": 7}, "safely": {"_count": 1}, "": {"_count": 1}}, "walk": {"_count": 1, "into": {"_count": 1}}, "won": {"_count": 6, "their": {"_count": 1}, "fair": {"_count": 1}, "want": {"_count": 1}, "by": {"_count": 2}, "Ginny": {"_count": 1}}, "recognized": {"_count": 2, "at": {"_count": 1}, "the": {"_count": 1}}, "be": {"_count": 4, "allowed": {"_count": 1}, "able": {"_count": 1}, "": {"_count": 1}, "down": {"_count": 1}}, "wished": {"_count": 1, "him": {"_count": 1}}, "choose": {"_count": 1, "people": {"_count": 1}}, "feel": {"_count": 2, "sorry": {"_count": 1}, "it": {"_count": 1}}, "knocked": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "refused": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "struggled": {"_count": 6, "through": {"_count": 2}, "toward": {"_count": 1}, "Harry": {"_count": 1}, "Wormtails": {"_count": 1}, "and": {"_count": 1}}, "mustnt": {"_count": 2, "be": {"_count": 1}, "know": {"_count": 1}}, "managed": {"_count": 9, "to": {"_count": 8}, "it": {"_count": 1}}, "never": {"_count": 4, "knew": {"_count": 1}, "came": {"_count": 1}, "finds": {"_count": 1}, "quite": {"_count": 1}}, "heaved": {"_count": 3, "Norbert": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "shrank": {"_count": 1, "into": {"_count": 1}}, "throw": {"_count": 1, "off": {"_count": 1}}, "waited": {"_count": 4, "Norbert": {"_count": 1}, "for": {"_count": 1}, "however": {"_count": 1}, "till": {"_count": 1}}, "ever": {"_count": 3, "make": {"_count": 1}, "knew": {"_count": 1}, "got": {"_count": 1}}, "suddenly": {"_count": 2, "have": {"_count": 1}, "stopped": {"_count": 1}}, "insulted": {"_count": 1, "him": {"_count": 1}}, "called": {"_count": 1, "him": {"_count": 1}}, "deserved": {"_count": 1, "what": {"_count": 1}}, "let": {"_count": 7, "the": {"_count": 2}, "that": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 1}, "buy": {"_count": 1}}, "stopped": {"_count": 6, "talking": {"_count": 2}, "dancing": {"_count": 1}, "fairly": {"_count": 1}, "quivering": {"_count": 1}, "dead": {"_count": 1}}, "tried": {"_count": 6, "to": {"_count": 6}}, "wandered": {"_count": 2, "down": {"_count": 1}, "up": {"_count": 1}}, "slipped": {"_count": 4, "out": {"_count": 2}, "gratefully": {"_count": 1}, "outside": {"_count": 1}}, "approached": {"_count": 18, "the": {"_count": 10}, "it": {"_count": 1}, "": {"_count": 4}, "barking": {"_count": 1}, "and": {"_count": 1}, "Umbridges": {"_count": 1}}, "strained": {"_count": 1, "against": {"_count": 1}}, "met": {"_count": 12, "a": {"_count": 1}, "Fred": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}, "in": {"_count": 1}, "Neville": {"_count": 1}, "again": {"_count": 1}, "Hermione": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}, "crowds": {"_count": 1}, "Death": {"_count": 1}}, "lost": {"_count": 6, "": {"_count": 2}, "their": {"_count": 1}, "sight": {"_count": 1}, "by": {"_count": 2}}, "will": {"_count": 19, "die": {"_count": 1}, "knock": {"_count": 1}, "be": {"_count": 4}, "test": {"_count": 1}, "do": {"_count": 1}, "all": {"_count": 2}, "not": {"_count": 2}, "gouge": {"_count": 1}, "realize": {"_count": 1}, "really": {"_count": 1}, "said": {"_count": 1}, "need": {"_count": 1}, "have": {"_count": 1}, "at": {"_count": 1}}, "gasped": {"_count": 1, "in": {"_count": 1}}, "moved": {"_count": 16, "forward": {"_count": 3}, "on": {"_count": 1}, "hovering": {"_count": 1}, "toward": {"_count": 2}, "off": {"_count": 1}, "to": {"_count": 1}, "deeper": {"_count": 1}, "away": {"_count": 1}, "into": {"_count": 2}, "shimmering": {"_count": 1}, "in": {"_count": 1}, "through": {"_count": 1}}, "stared": {"_count": 4, "at": {"_count": 3}, "directly": {"_count": 1}}, "notice": {"_count": 2, "if": {"_count": 1}, "the": {"_count": 1}}, "reminds": {"_count": 1, "me": {"_count": 1}}, "11": {"_count": 2, "expel": {"_count": 1}, "be": {"_count": 1}}, "end": {"_count": 2, "up": {"_count": 2}}, "hit": {"_count": 8, "the": {"_count": 5}, "": {"_count": 1}, "him": {"_count": 1}, "solid": {"_count": 1}}, "cowered": {"_count": 1, "as": {"_count": 1}}, "crossed": {"_count": 8, "the": {"_count": 7}, "to": {"_count": 1}}, "storm": {"_count": 1, "up": {"_count": 1}}, "need": {"_count": 5, "it": {"_count": 1}, "to": {"_count": 1}, "rest": {"_count": 1}, "an": {"_count": 1}, "gold": {"_count": 1}}, "threw": {"_count": 2, "apples": {"_count": 1}, "at": {"_count": 1}}, "slurped": {"_count": 1, "happily": {"_count": 1}}, "headed": {"_count": 8, "for": {"_count": 1}, "toward": {"_count": 2}, "back": {"_count": 2}, "up": {"_count": 1}, "down": {"_count": 1}, "farther": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "trundled": {"_count": 1, "out": {"_count": 1}}, "skidded": {"_count": 2, "to": {"_count": 2}}, "broke": {"_count": 7, "into": {"_count": 2}, "apart": {"_count": 4}, "and": {"_count": 1}}, "shot": {"_count": 2, "straight": {"_count": 1}, "up": {"_count": 1}}, "burst": {"_count": 4, "out": {"_count": 1}, "at": {"_count": 1}, "into": {"_count": 1}, "through": {"_count": 1}}, "landed": {"_count": 4, "smoothly": {"_count": 1}, "upon": {"_count": 1}, "squarely": {"_count": 1}, "in": {"_count": 1}}, "flew": {"_count": 13, "farther": {"_count": 2}, "back": {"_count": 2}, "toward": {"_count": 1}, "the": {"_count": 1}, "until": {"_count": 1}, "through": {"_count": 1}, "into": {"_count": 1}, "lower": {"_count": 1}, "over": {"_count": 3}}, "missed": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "seized": {"_count": 2, "the": {"_count": 1}, "three": {"_count": 1}}, "rose": {"_count": 5, "and": {"_count": 1}, "up": {"_count": 2}, "from": {"_count": 1}, "obscuring": {"_count": 1}}, "expected": {"_count": 1, "it": {"_count": 1}}, "neared": {"_count": 3, "the": {"_count": 2}, "Hagrids": {"_count": 1}}, "needed": {"_count": 9, "to": {"_count": 6}, "now": {"_count": 1}, "help": {"_count": 1}, "and": {"_count": 1}}, "havent": {"_count": 13, "invented": {"_count": 1}, "made": {"_count": 1}, "a": {"_count": 1}, "got": {"_count": 1}, "done": {"_count": 1}, "changed": {"_count": 1}, "put": {"_count": 1}, "really": {"_count": 1}, "come": {"_count": 1}, "worked": {"_count": 1}, "caught": {"_count": 1}, "already": {"_count": 1}, "handed": {"_count": 1}}, "contained": {"_count": 2, "details": {"_count": 1}, "words": {"_count": 1}}, "backtracked": {"_count": 1, "quickly": {"_count": 1}}, "lied": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 26, "a": {"_count": 5}, "into": {"_count": 5}, "the": {"_count": 5}, "up": {"_count": 2}, "to": {"_count": 2}, "off": {"_count": 1}, "onto": {"_count": 1}, "away": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 2}}, "edged": {"_count": 3, "nearer": {"_count": 1}, "into": {"_count": 1}, "through": {"_count": 1}}, "inched": {"_count": 2, "toward": {"_count": 1}, "slowly": {"_count": 1}}, "asked": {"_count": 3, "what": {"_count": 1}, "to": {"_count": 1}, "him": {"_count": 1}}, "find": {"_count": 9, "out": {"_count": 2}, "him": {"_count": 1}, "me": {"_count": 1}, "Voldemort": {"_count": 1}, "us": {"_count": 2}, "you": {"_count": 1}, "But": {"_count": 1}}, "fought": {"_count": 2, "their": {"_count": 1}, "like": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 2, "ran": {"_count": 1}, "kill": {"_count": 1}}, "scanned": {"_count": 2, "the": {"_count": 2}}, "gathered": {"_count": 3, "around": {"_count": 2}, "round": {"_count": 1}}, "happen": {"_count": 1, "go": {"_count": 1}}, "ventured": {"_count": 1, "forth": {"_count": 1}}, "retaliated": {"_count": 1, "they": {"_count": 1}}, "finished": {"_count": 1, "each": {"_count": 1}}, "raised": {"_count": 3, "their": {"_count": 3}}, "stuffed": {"_count": 1, "the": {"_count": 1}}, "behave": {"_count": 1, "": {"_count": 1}}, "crashed": {"_count": 1, "up": {"_count": 1}}, "brought": {"_count": 3, "her": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}}, "too": {"_count": 5, "sank": {"_count": 1}, "were": {"_count": 2}, "exited": {"_count": 1}, "could": {"_count": 1}}, "forgot": {"_count": 1, "the": {"_count": 1}}, "closed": {"_count": 2, "Hogwarts": {"_count": 1}, "the": {"_count": 1}}, "decided": {"_count": 4, "that": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "Hogwarts": {"_count": 1}}, "became": {"_count": 10, "hopeful": {"_count": 1}, "": {"_count": 1}, "Animagi": {"_count": 1}, "too": {"_count": 1}, "silvery": {"_count": 1}, "narrower": {"_count": 1}, "gigantic": {"_count": 1}, "like": {"_count": 1}, "Horcruxes": {"_count": 1}, "distant": {"_count": 1}}, "pored": {"_count": 1, "over": {"_count": 1}}, "suspect": {"_count": 2, "Hagrid": {"_count": 1}, "said": {"_count": 1}}, "agreed": {"_count": 2, "Malfoy": {"_count": 1}, "silently": {"_count": 1}}, "supposed": {"_count": 4, "to": {"_count": 3}, "a": {"_count": 1}}, "pursued": {"_count": 1, "their": {"_count": 1}}, "strode": {"_count": 5, "across": {"_count": 1}, "past": {"_count": 2}, "along": {"_count": 1}, "down": {"_count": 1}}, "hastily": {"_count": 1, "fed": {"_count": 1}}, "noticed": {"_count": 3, "that": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}}, "call": {"_count": 5, "the": {"_count": 2}, "it": {"_count": 1}, "you": {"_count": 2}}, "squeezed": {"_count": 1, "past": {"_count": 1}}, "wake": {"_count": 2, "her": {"_count": 1}, "up": {"_count": 1}}, "distinctly": {"_count": 2, "heard": {"_count": 2}}, "expelled": {"_count": 1, "her": {"_count": 1}}, "prove": {"_count": 1, "it": {"_count": 1}}, "hear": {"_count": 1, "what": {"_count": 1}}, "lived": {"_count": 1, "in": {"_count": 1}}, "use": {"_count": 4, "the": {"_count": 1}, "it": {"_count": 1}, "instead": {"_count": 1}, "decoys": {"_count": 1}}, "clearly": {"_count": 1, "arent": {"_count": 1}}, "don": {"_count": 3, "": {"_count": 1}, "give": {"_count": 1}, "like": {"_count": 1}}, "Ern": {"_count": 2, "": {"_count": 2}}, "cornered": {"_count": 1, "Black": {"_count": 1}}, "lose": {"_count": 1, "a": {"_count": 1}}, "paid": {"_count": 1, "for": {"_count": 1}}, "dug": {"_count": 1, "into": {"_count": 1}}, "save": {"_count": 1, "Harry": {"_count": 1}}, "listened": {"_count": 1, "to": {"_count": 1}}, "disappeared": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}}, "accompanied": {"_count": 1, "her": {"_count": 1}}, "do": {"_count": 22, "said": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 2}, "look": {"_count": 1}, "terrible": {"_count": 1}, "to": {"_count": 2}, "as": {"_count": 1}, "expel": {"_count": 1}, "not": {"_count": 5}, "work": {"_count": 1}, "in": {"_count": 1}, "were": {"_count": 1}, "seem": {"_count": 1}, "nothing": {"_count": 1}}, "crowded": {"_count": 1, "around": {"_count": 1}}, "must": {"_count": 9, "be": {"_count": 2}, "have": {"_count": 4}, "pay": {"_count": 1}, "always": {"_count": 1}, "and": {"_count": 1}}, "jumped": {"_count": 4, "a": {"_count": 1}, "from": {"_count": 1}, "apart": {"_count": 1}, "into": {"_count": 1}}, "reckon": {"_count": 1, "Sirius": {"_count": 1}}, "studied": {"_count": 1, "Red": {"_count": 1}}, "spoke": {"_count": 5, "to": {"_count": 2}, "": {"_count": 1}, "looking": {"_count": 1}, "again": {"_count": 1}}, "stripped": {"_count": 1, "fat": {"_count": 1}}, "seated": {"_count": 1, "themselves": {"_count": 1}}, "want": {"_count": 16, "to": {"_count": 10}, "": {"_count": 3}, "photos": {"_count": 1}, "that": {"_count": 1}, "is": {"_count": 1}}, "staggered": {"_count": 2, "sideways": {"_count": 1}, "and": {"_count": 1}}, "beat": {"_count": 3, "Ravenclaw": {"_count": 2}, "the": {"_count": 1}}, "affect": {"_count": 1, "me": {"_count": 1}}, "glory": {"_count": 1, "in": {"_count": 1}}, "drain": {"_count": 1, "peace": {"_count": 1}}, "crisscrossed": {"_count": 1, "they": {"_count": 1}}, "fanned": {"_count": 1, "into": {"_count": 1}}, "used": {"_count": 3, "to": {"_count": 1}, "sign": {"_count": 1}, "the": {"_count": 1}}, "named": {"_count": 1, "him": {"_count": 1}}, "was": {"_count": 4, "killed": {"_count": 1}, "spread": {"_count": 1}, "sittin": {"_count": 1}, "badly": {"_count": 1}}, "wish": {"_count": 3, "to": {"_count": 3}}, "clamp": {"_count": 1, "their": {"_count": 1}}, "kill": {"_count": 1, "": {"_count": 1}}, "develop": {"_count": 1, "a": {"_count": 1}}, "prepared": {"_count": 3, "to": {"_count": 3}}, "rounded": {"_count": 4, "the": {"_count": 4}}, "er": {"_count": 4, "werent": {"_count": 1}, "they": {"_count": 2}, "dementy": {"_count": 1}}, "and": {"_count": 5, "now": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 2}, "the": {"_count": 1}}, "leaned": {"_count": 2, "on": {"_count": 1}, "casually": {"_count": 1}}, "cut": {"_count": 2, "off": {"_count": 1}, "into": {"_count": 1}}, "come": {"_count": 7, "up": {"_count": 1}, "down": {"_count": 1}, "from": {"_count": 2}, "back": {"_count": 1}, "looking": {"_count": 1}, "look": {"_count": 1}}, "playing": {"_count": 2, "at": {"_count": 2}}, "gone": {"_count": 2, "": {"_count": 2}}, "changed": {"_count": 4, "into": {"_count": 2}, "the": {"_count": 1}, "out": {"_count": 1}}, "ate": {"_count": 5, "their": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "lunch": {"_count": 1}, "and": {"_count": 1}}, "whispered": {"_count": 1, "together": {"_count": 1}}, "fell": {"_count": 8, "backward": {"_count": 1}, "on": {"_count": 3}, "asleep": {"_count": 2}, "far": {"_count": 1}, "silent": {"_count": 1}}, "already": {"_count": 1, "know": {"_count": 1}}, "become": {"_count": 1, "and": {"_count": 1}}, "opened": {"_count": 3, "my": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}}, "lowered": {"_count": 2, "their": {"_count": 1}, "her": {"_count": 1}}, "descended": {"_count": 2, "held": {"_count": 1}, "toward": {"_count": 1}}, "tramped": {"_count": 2, "through": {"_count": 1}, "on": {"_count": 1}}, "darted": {"_count": 2, "out": {"_count": 1}, "around": {"_count": 1}}, "glimpsed": {"_count": 1, "the": {"_count": 1}}, "peered": {"_count": 1, "around": {"_count": 1}}, "awoke": {"_count": 1, "and": {"_count": 1}}, "d": {"_count": 1, "have": {"_count": 1}}, "most": {"_count": 1, "certainly": {"_count": 1}}, "drive": {"_count": 1, "some": {"_count": 1}}, "done": {"_count": 3, "this": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "ricocheted": {"_count": 2, "off": {"_count": 2}}, "pull": {"_count": 2, "themselves": {"_count": 1}, "him": {"_count": 1}}, "carry": {"_count": 1, "on": {"_count": 1}}, "wont": {"_count": 9, "listen": {"_count": 1}, "hurt": {"_count": 1}, "be": {"_count": 3}, "": {"_count": 1}, "know": {"_count": 1}, "actually": {"_count": 1}, "like": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "finally": {"_count": 10, "managed": {"_count": 1}, "got": {"_count": 1}, "reached": {"_count": 2}, "regained": {"_count": 1}, "found": {"_count": 1}, "laid": {"_count": 1}, "did": {"_count": 1}, "swallowed": {"_count": 1}, "went": {"_count": 1}}, "belonged": {"_count": 1, "to": {"_count": 1}}, "cook": {"_count": 1, "on": {"_count": 1}}, "drew": {"_count": 8, "level": {"_count": 1}, "nearer": {"_count": 6}, "their": {"_count": 1}}, "wear": {"_count": 2, "these": {"_count": 1}, "it": {"_count": 1}}, "talking": {"_count": 2, "about": {"_count": 2}}, "flash": {"_count": 1, "up": {"_count": 1}}, "emerged": {"_count": 6, "on": {"_count": 1}, "at": {"_count": 1}, "into": {"_count": 3}, "from": {"_count": 1}}, "stuck": {"_count": 1, "out": {"_count": 1}}, "rested": {"_count": 2, "upon": {"_count": 2}}, "is": {"_count": 2, "told": {"_count": 1}, "giving": {"_count": 1}}, "considered": {"_count": 1, "anyone": {"_count": 1}}, "appeared": {"_count": 3, "to": {"_count": 2}, "there": {"_count": 1}}, "positioned": {"_count": 1, "themselves": {"_count": 1}}, "formed": {"_count": 3, "a": {"_count": 1}, "": {"_count": 1}, "their": {"_count": 1}}, "launched": {"_count": 2, "themselves": {"_count": 2}}, "handed": {"_count": 1, "to": {"_count": 1}}, "retraced": {"_count": 1, "their": {"_count": 1}}, "shouted": {"_count": 3, "words": {"_count": 1}, "in": {"_count": 1}, "now": {"_count": 1}}, "Disapparated": {"_count": 5, "": {"_count": 2}, "to": {"_count": 1}, "next": {"_count": 1}, "a": {"_count": 1}}, "killed": {"_count": 6, "said": {"_count": 1}, "Cedric": {"_count": 1}, "each": {"_count": 1}, "him": {"_count": 3}}, "Disapparate": {"_count": 1, "when": {"_count": 1}}, "worked": {"_count": 3, "very": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "doing": {"_count": 4, "it": {"_count": 1}, "here": {"_count": 2}, "in": {"_count": 1}}, "changing": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 3, "is": {"_count": 1}, "Umbridge": {"_count": 1}, "you": {"_count": 1}}, "relived": {"_count": 1, "the": {"_count": 1}}, "probably": {"_count": 2, "dont": {"_count": 1}, "thought": {"_count": 1}}, "hurry": {"_count": 2, "up": {"_count": 2}}, "filed": {"_count": 3, "along": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 1}}, "flickered": {"_count": 1, "over": {"_count": 1}}, "blast": {"_count": 1, "off": {"_count": 1}}, "eat": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "turn": {"_count": 3, "out": {"_count": 2}, "up": {"_count": 1}}, "reveal": {"_count": 1, "only": {"_count": 1}}, "simply": {"_count": 4, "seen": {"_count": 1}, "stared": {"_count": 1}, "waved": {"_count": 1}, "hung": {"_count": 1}}, "usually": {"_count": 7, "liked": {"_count": 1}, "did": {"_count": 2}, "come": {"_count": 1}, "had": {"_count": 1}, "eat": {"_count": 1}, "got": {"_count": 1}}, "felt": {"_count": 6, "their": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 2}, "very": {"_count": 1}, "as": {"_count": 1}}, "recrossed": {"_count": 1, "the": {"_count": 1}}, "bring": {"_count": 1, "cloaks": {"_count": 1}}, "perform": {"_count": 1, "each": {"_count": 1}}, "sleeping": {"_count": 1, "then": {"_count": 1}}, "enjoyed": {"_count": 1, "themselves": {"_count": 1}}, "hoodwinked": {"_count": 1, "a": {"_count": 1}}, "submitted": {"_count": 1, "Potters": {"_count": 1}}, "attempted": {"_count": 2, "to": {"_count": 2}}, "avoided": {"_count": 2, "making": {"_count": 1}, "where": {"_count": 1}}, "hoped": {"_count": 1, "they": {"_count": 1}}, "forced": {"_count": 2, "deep": {"_count": 1}, "her": {"_count": 1}}, "gotta": {"_count": 1, "do": {"_count": 1}}, "release": {"_count": 1, "him": {"_count": 1}}, "retired": {"_count": 1, "to": {"_count": 1}}, "practiced": {"_count": 3, "": {"_count": 2}, "looking": {"_count": 1}}, "at": {"_count": 4, "least": {"_count": 3}, "Bellatrix": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "ought": {"_count": 8, "to": {"_count": 8}}, "hibernate": {"_count": 1, "or": {"_count": 1}}, "fancied": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "sniggered": {"_count": 1, "through": {"_count": 1}}, "seen": {"_count": 1, "what": {"_count": 1}}, "bowed": {"_count": 2, "very": {"_count": 1}, "delightedly": {"_count": 1}}, "says": {"_count": 1, "and": {"_count": 1}}, "saying": {"_count": 1, "if": {"_count": 1}}, "has": {"_count": 1, "made": {"_count": 1}}, "gave": {"_count": 3, "the": {"_count": 1}, "cries": {"_count": 1}, "them": {"_count": 1}}, "resembled": {"_count": 1, "mosscolored": {"_count": 1}}, "waltzed": {"_count": 1, "through": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "carried": {"_count": 4, "different": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 2}}, "grow": {"_count": 3, "horns": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}}, "chuck": {"_count": 1, "it": {"_count": 1}}, "wore": {"_count": 1, "thick": {"_count": 1}}, "laughed": {"_count": 1, "harder": {"_count": 1}}, "perhaps": {"_count": 1, "eat": {"_count": 1}}, "swam": {"_count": 1, "nearer": {"_count": 1}}, "catch": {"_count": 2, "you": {"_count": 1}, "it": {"_count": 1}}, "shrieked": {"_count": 1, "in": {"_count": 1}}, "proceeded": {"_count": 2, "down": {"_count": 2}}, "Ron": {"_count": 2, "": {"_count": 2}}, "keep": {"_count": 2, "going": {"_count": 1}, "on": {"_count": 1}}, "mustve": {"_count": 1, "done": {"_count": 1}}, "wouldve": {"_count": 2, "been": {"_count": 1}, "recognized": {"_count": 1}}, "sneaked": {"_count": 1, "into": {"_count": 1}}, "believe": {"_count": 4, "as": {"_count": 1}, "hes": {"_count": 1}, "you": {"_count": 1}, "others": {"_count": 1}}, "rot": {"_count": 1, "there": {"_count": 1}}, "concerned": {"_count": 2, "the": {"_count": 1}, "themselves": {"_count": 1}}, "not": {"_count": 4, "": {"_count": 1}, "with": {"_count": 1}, "realize": {"_count": 1}, "like": {"_count": 1}}, "swore": {"_count": 1, "eternal": {"_count": 1}}, "pleaded": {"_count": 1, "innocence": {"_count": 1}}, "now": {"_count": 4, "pay": {"_count": 1}, "seemed": {"_count": 1}, "saw": {"_count": 1}, "": {"_count": 1}}, "echoed": {"_count": 1, "through": {"_count": 1}}, "circled": {"_count": 3, "the": {"_count": 1}, "and": {"_count": 1}, "each": {"_count": 1}}, "hid": {"_count": 1, "their": {"_count": 1}}, "shouting": {"_count": 1, "about": {"_count": 1}}, "arguing": {"_count": 1, "about": {"_count": 1}}, "explain": {"_count": 1, "everything": {"_count": 1}}, "leave": {"_count": 1, "Harry": {"_count": 1}}, "played": {"_count": 2, "chess": {"_count": 1}, "a": {"_count": 1}}, "touched": {"_count": 1, "upon": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "spoken": {"_count": 1, "to": {"_count": 1}}, "hiding": {"_count": 1, "now": {"_count": 1}}, "actually": {"_count": 2, "exist": {"_count": 1}, "reach": {"_count": 1}}, "sentenced": {"_count": 1, "you": {"_count": 1}}, "DO": {"_count": 1, "": {"_count": 1}}, "suck": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "kiss": {"_count": 1, "you": {"_count": 1}}, "deserted": {"_count": 1, "Azkaban": {"_count": 1}}, "ruled": {"_count": 1, "against": {"_count": 1}}, "these": {"_count": 1, "Muggles": {"_count": 1}}, "take": {"_count": 7, "out": {"_count": 1}, "them": {"_count": 1}, "off": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}, "refuge": {"_count": 1}, "": {"_count": 1}}, "soared": {"_count": 4, "upward": {"_count": 2}, "straight": {"_count": 1}, "up": {"_count": 1}}, "promoted": {"_count": 1, "him": {"_count": 1}}, "um": {"_count": 1, "they": {"_count": 1}}, "mention": {"_count": 2, "you": {"_count": 1}, "them": {"_count": 1}}, "abide": {"_count": 2, "by": {"_count": 2}}, "feared": {"_count": 1, "that": {"_count": 1}}, "eh": {"_count": 1, "Harry": {"_count": 1}}, "emptied": {"_count": 1, "the": {"_count": 1}}, "gleaned": {"_count": 1, "very": {"_count": 1}}, "flapped": {"_count": 1, "idly": {"_count": 1}}, "clattered": {"_count": 1, "upward": {"_count": 1}}, "streaked": {"_count": 1, "past": {"_count": 1}}, "settle": {"_count": 1, "down": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "glide": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}, "sucked": {"_count": 1, "on": {"_count": 1}}, "attacked": {"_count": 1, "without": {"_count": 1}}, "mounted": {"_count": 2, "the": {"_count": 2}}, "scrubbed": {"_count": 1, "out": {"_count": 1}}, "lead": {"_count": 1, "perhaps": {"_count": 1}}, "lingered": {"_count": 2, "casually": {"_count": 1}, "for": {"_count": 1}}, "swayed": {"_count": 1, "where": {"_count": 1}}, "revealed": {"_count": 1, "a": {"_count": 1}}, "traveled": {"_count": 2, "farther": {"_count": 1}, "into": {"_count": 1}}, "dream": {"_count": 1, "that": {"_count": 1}}, "Might": {"_count": 1, "someday": {"_count": 1}}, "once": {"_count": 3, "were": {"_count": 2}, "sentenced": {"_count": 1}}, "suffered": {"_count": 1, "through": {"_count": 1}}, "loved": {"_count": 1, "hearing": {"_count": 1}}, "give": {"_count": 1, "it": {"_count": 1}}, "chanted": {"_count": 2, "back": {"_count": 1}, "drearily": {"_count": 1}}, "smashed": {"_count": 1, "and": {"_count": 1}}, "generally": {"_count": 1, "live": {"_count": 1}}, "traipsed": {"_count": 1, "across": {"_count": 1}}, "healed": {"_count": 1, "over": {"_count": 1}}, "lured": {"_count": 1, "him": {"_count": 1}}, "trailed": {"_count": 2, "back": {"_count": 1}, "behind": {"_count": 1}}, "remain": {"_count": 1, "mixed": {"_count": 1}}, "loathed": {"_count": 1, "Umbridge": {"_count": 1}}, "understand": {"_count": 2, "very": {"_count": 1}, "that": {"_count": 1}}, "sometimes": {"_count": 2, "shared": {"_count": 1}, "got": {"_count": 1}}, "accept": {"_count": 1, "that": {"_count": 1}}, "queued": {"_count": 3, "up": {"_count": 2}, "outside": {"_count": 1}}, "expecting": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "flashed": {"_count": 1, "and": {"_count": 1}}, "even": {"_count": 2, "admired": {"_count": 1}, "got": {"_count": 1}}, "giggled": {"_count": 1, "happily": {"_count": 1}}, "exchanged": {"_count": 1, "significant": {"_count": 1}}, "finds": {"_count": 1, "them": {"_count": 1}}, "needs": {"_count": 1, "it": {"_count": 1}}, "splashed": {"_count": 1, "across": {"_count": 1}}, "wheeled": {"_count": 1, "around": {"_count": 1}}, "practice": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "obscured": {"_count": 1, "her": {"_count": 1}}, "stiffened": {"_count": 1, "looking": {"_count": 1}}, "deserve": {"_count": 1, "rather": {"_count": 1}}, "crunched": {"_count": 1, "excitedly": {"_count": 1}}, "hidden": {"_count": 1, "": {"_count": 1}}, "ares": {"_count": 1, "very": {"_count": 1}}, "reckons": {"_count": 1, "in": {"_count": 1}}, "try": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "translated": {"_count": 1, "fer": {"_count": 1}}, "understood": {"_count": 4, "what": {"_count": 1}, "every": {"_count": 1}, "each": {"_count": 1}, "": {"_count": 1}}, "dropped": {"_count": 2, "me": {"_count": 1}, "it": {"_count": 1}}, "sent": {"_count": 1, "ter": {"_count": 1}}, "attack": {"_count": 1, "you": {"_count": 1}}, "backed": {"_count": 2, "away": {"_count": 1}, "against": {"_count": 1}}, "grudgingly": {"_count": 2, "remained": {"_count": 1}, "started": {"_count": 1}}, "dried": {"_count": 1, "out": {"_count": 1}}, "prefer": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "aren": {"_count": 1, "unlucky": {"_count": 1}}, "laid": {"_count": 3, "out": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "nodded": {"_count": 1, "each": {"_count": 1}}, "greeted": {"_count": 1, "Tonks": {"_count": 1}}, "doctors": {"_count": 1, "": {"_count": 1}}, "searched": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "strolled": {"_count": 1, "casually": {"_count": 1}}, "work": {"_count": 3, "very": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "rolled": {"_count": 2, "to": {"_count": 1}, "back": {"_count": 1}}, "stand": {"_count": 2, "no": {"_count": 1}, "for": {"_count": 1}}, "check": {"_count": 1, "what": {"_count": 1}}, "abstained": {"_count": 1, "from": {"_count": 1}}, "rebounded": {"_count": 1, "upon": {"_count": 1}}, "he": {"_count": 1, "meant": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "guided": {"_count": 1, "her": {"_count": 1}}, "vanished": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "through": {"_count": 1}}, "ascended": {"_count": 3, "the": {"_count": 3}}, "certainly": {"_count": 1, "would": {"_count": 1}}, "caused": {"_count": 1, "plenty": {"_count": 1}}, "mated": {"_count": 1, "come": {"_count": 1}}, "panted": {"_count": 1, "along": {"_count": 1}}, "rejoined": {"_count": 1, "the": {"_count": 1}}, "gloated": {"_count": 1, "enough": {"_count": 1}}, "persuaded": {"_count": 1, "him": {"_count": 1}}, "copied": {"_count": 1, "down": {"_count": 1}}, "hastened": {"_count": 1, "toward": {"_count": 1}}, "dared": {"_count": 2, "let": {"_count": 1}, "past": {"_count": 1}}, "permitted": {"_count": 1, "themselves": {"_count": 1}}, "belong": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "poked": {"_count": 2, "themselves": {"_count": 1}, "him": {"_count": 1}}, "stung": {"_count": 1, "and": {"_count": 1}}, "delayed": {"_count": 1, "was": {"_count": 1}}, "hesitated": {"_count": 1, "": {"_count": 1}}, "sank": {"_count": 2, "down": {"_count": 1}, "still": {"_count": 1}}, "dashed": {"_count": 2, "inside": {"_count": 1}, "down": {"_count": 1}}, "fish": {"_count": 1, "": {"_count": 1}}, "drifted": {"_count": 1, "in": {"_count": 1}}, "regained": {"_count": 1, "the": {"_count": 1}}, "hurt": {"_count": 1, "the": {"_count": 1}}, "barely": {"_count": 2, "supported": {"_count": 1}, "spoke": {"_count": 1}}, "rang": {"_count": 1, "like": {"_count": 1}}, "forget": {"_count": 1, "what": {"_count": 1}}, "refer": {"_count": 1, "can": {"_count": 1}}, "settled": {"_count": 4, "down": {"_count": 3}, "on": {"_count": 1}}, "unwittingly": {"_count": 1, "chose": {"_count": 1}}, "faced": {"_count": 2, "each": {"_count": 1}, "the": {"_count": 1}}, "grasped": {"_count": 1, "right": {"_count": 1}}, "collapsed": {"_count": 1, "upon": {"_count": 1}}, "dragged": {"_count": 2, "him": {"_count": 1}, "Luna": {"_count": 1}}, "treat": {"_count": 2, "you": {"_count": 1}, "houseelves": {"_count": 1}}, "reappeared": {"_count": 1, "at": {"_count": 1}}, "wouldn": {"_count": 1, "dare": {"_count": 1}}, "ask": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "gained": {"_count": 1, "the": {"_count": 1}}, "insisted": {"_count": 1, "in": {"_count": 1}}, "slithered": {"_count": 1, "clinking": {"_count": 1}}, "tucked": {"_count": 1, "into": {"_count": 1}}, "remained": {"_count": 4, "in": {"_count": 1}, "close": {"_count": 1}, "quite": {"_count": 1}, "there": {"_count": 1}}, "reluctantly": {"_count": 1, "left": {"_count": 1}}, "deviated": {"_count": 1, "from": {"_count": 1}}, "yielded": {"_count": 1, "poorer": {"_count": 1}}, "swirled": {"_count": 1, "and": {"_count": 1}}, "tell": {"_count": 3, "in": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "studying": {"_count": 1, "as": {"_count": 1}}, "held": {"_count": 2, "the": {"_count": 2}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "hate": {"_count": 1, "theyd": {"_count": 1}}, "stayed": {"_count": 1, "": {"_count": 1}}, "grabbed": {"_count": 1, "Katies": {"_count": 1}}, "whisper": {"_count": 1, "to": {"_count": 1}}, "alone": {"_count": 1, "are": {"_count": 1}}, "scored": {"_count": 1, "and": {"_count": 1}}, "showed": {"_count": 1, "Ginny": {"_count": 1}}, "beautiful": {"_count": 1, "": {"_count": 1}}, "contemplated": {"_count": 1, "each": {"_count": 1}}, "assembled": {"_count": 1, "in": {"_count": 1}}, "finish": {"_count": 1, "off": {"_count": 1}}, "continued": {"_count": 4, "to": {"_count": 3}, "their": {"_count": 1}}, "row": {"_count": 1, "about": {"_count": 1}}, "corrected": {"_count": 1, "themselves": {"_count": 1}}, "if": {"_count": 1, "hes": {"_count": 1}}, "didn": {"_count": 1, "eat": {"_count": 1}}, "immediately": {"_count": 1, "began": {"_count": 1}}, "bore": {"_count": 1, "him": {"_count": 1}}, "oppress": {"_count": 1, "": {"_count": 1}}, "gaped": {"_count": 1, "at": {"_count": 1}}, "fear": {"_count": 1, "light": {"_count": 1}}, "lifted": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "Albus": {"_count": 1}}, "join": {"_count": 1, "you": {"_count": 1}}, "directed": {"_count": 1, "their": {"_count": 1}}, "scattered": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "taken": {"_count": 1, "Dumbledores": {"_count": 1}}, "stowed": {"_count": 1, "their": {"_count": 1}}, "themselves": {"_count": 1, "would": {"_count": 1}}, "mistrust": {"_count": 1, "everything": {"_count": 1}}, "professed": {"_count": 1, "to": {"_count": 1}}, "reestablished": {"_count": 1, "if": {"_count": 1}}, "protect": {"_count": 1, "us": {"_count": 1}}, "feed": {"_count": 1, "off": {"_count": 1}}, "swerve": {"_count": 1, "to": {"_count": 1}}, "fallen": {"_count": 1, "back": {"_count": 1}}, "to": {"_count": 1, "mean": {"_count": 1}}, "realize": {"_count": 3, "how": {"_count": 2}, "what": {"_count": 1}}, "getting": {"_count": 1, "married": {"_count": 1}}, "zoomed": {"_count": 1, "out": {"_count": 1}}, "seem": {"_count": 1, "and": {"_count": 1}}, "trooped": {"_count": 1, "out": {"_count": 1}}, "led": {"_count": 1, "the": {"_count": 1}}, "illuminated": {"_count": 1, "the": {"_count": 1}}, "helped": {"_count": 1, "Mrs": {"_count": 1}}, "repeated": {"_count": 1, "the": {"_count": 1}}, "care": {"_count": 1, "theyre": {"_count": 1}}, "horrified": {"_count": 1, "Doge": {"_count": 1}}, "mightve": {"_count": 1, "been": {"_count": 1}}, "reversed": {"_count": 1, "the": {"_count": 1}}, "rushed": {"_count": 1, "toward": {"_count": 1}}, "after": {"_count": 1, "do": {"_count": 1}}, "disappear": {"_count": 1, "": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "interrogated": {"_count": 1, "those": {"_count": 1}}, "bothering": {"_count": 1, "to": {"_count": 1}}, "preferred": {"_count": 1, "": {"_count": 1}}, "clanked": {"_count": 1, "down": {"_count": 1}}, "sensed": {"_count": 2, "him": {"_count": 1}, "that": {"_count": 1}}, "stop": {"_count": 1, "us": {"_count": 1}}, "shut": {"_count": 1, "and": {"_count": 1}}, "escaped": {"_count": 1, "said": {"_count": 1}}, "cast": {"_count": 2, "wherever": {"_count": 1}, "curses": {"_count": 1}}, "devoured": {"_count": 1, "scrambled": {"_count": 1}}, "dreaded": {"_count": 1, "the": {"_count": 1}}, "realized": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "extinguished": {"_count": 1, "their": {"_count": 1}}, "eavesdropped": {"_count": 1, "now": {"_count": 1}}, "propped": {"_count": 1, "the": {"_count": 1}}, "cannot": {"_count": 1, "travel": {"_count": 1}}, "vacated": {"_count": 1, "this": {"_count": 1}}, "devoted": {"_count": 1, "themselves": {"_count": 1}}, "talked": {"_count": 1, "about": {"_count": 1}}, "sidled": {"_count": 1, "past": {"_count": 1}}, "twisted": {"_count": 1, "in": {"_count": 1}}, "break": {"_count": 1, "now": {"_count": 1}}, "track": {"_count": 1, "people": {"_count": 1}}, "Our": {"_count": 1, "age": {"_count": 1}}, "departed": {"_count": 1, "this": {"_count": 1}}, "exist": {"_count": 1, "": {"_count": 1}}, "crop": {"_count": 1, "up": {"_count": 1}}, "argued": {"_count": 1, "in": {"_count": 1}}, "breathed": {"_count": 1, "": {"_count": 1}}, "pitched": {"_count": 1, "the": {"_count": 1}}, "continue": {"_count": 1, "to": {"_count": 1}}, "protected": {"_count": 1, "": {"_count": 1}}, "deny": {"_count": 1, "us": {"_count": 1}}, "chose": {"_count": 1, "to": {"_count": 1}}, "examine": {"_count": 1, "them": {"_count": 1}}, "first": {"_count": 1, "met": {"_count": 1}}, "sounded": {"_count": 1, "feebler": {"_count": 1}}, "mend": {"_count": 1, "themselves": {"_count": 1}}, "swerved": {"_count": 1, "between": {"_count": 1}}, "discovered": {"_count": 1, "that": {"_count": 1}}, "flopped": {"_count": 1, "sodden": {"_count": 1}}, "dabbed": {"_count": 1, "essence": {"_count": 1}}, "swigged": {"_count": 1, "their": {"_count": 1}}, "sense": {"_count": 1, "fear": {"_count": 1}}, "live": {"_count": 1, "now": {"_count": 1}}, "locked": {"_count": 1, "him": {"_count": 1}}, "tortured": {"_count": 1, "him": {"_count": 1}}, "bit": {"_count": 1, "off": {"_count": 1}}, "help": {"_count": 1, "": {"_count": 1}}, "shuffled": {"_count": 1, "in": {"_count": 1}}, "dangled": {"_count": 1, "beneath": {"_count": 1}}, "raced": {"_count": 2, "and": {"_count": 1}, "along": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "mentioned": {"_count": 1, "how": {"_count": 1}}, "hauled": {"_count": 1, "Fred": {"_count": 1}}, "placed": {"_count": 1, "him": {"_count": 1}}, "retreated": {"_count": 1, "under": {"_count": 1}}, "watch": {"_count": 1, "him": {"_count": 1}}, "discussed": {"_count": 1, "was": {"_count": 1}}, "may": {"_count": 1, "not": {"_count": 1}}, "The": {"_count": 1, "awfulness": {"_count": 1}}, "fascinated": {"_count": 2, "him": {"_count": 1}, "both": {"_count": 1}}, "yelled": {"_count": 1, "in": {"_count": 1}}, "Neville": {"_count": 1, "Longbottom": {"_count": 1}}, "crumpled": {"_count": 1, "not": {"_count": 1}}, "wove": {"_count": 1, "and": {"_count": 1}}, "two": {"_count": 1, "": {"_count": 1}}, "thundered": {"_count": 1, "toward": {"_count": 1}}, "danced": {"_count": 1, "up": {"_count": 1}}}, "perfectly": {"_count": 99, "normal": {"_count": 5, "thank": {"_count": 1}, "owlfree": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}}, "ordinary": {"_count": 2, "things": {"_count": 1}, "noises": {"_count": 1}}, "cheerful": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 30, "what": {"_count": 5}, "theyd": {"_count": 1}, "how": {"_count": 1}, "that": {"_count": 14}, "I": {"_count": 1}, "you": {"_count": 1}, "without": {"_count": 1}, "whom": {"_count": 1}, "why": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}}, "confident": {"_count": 1, "this": {"_count": 1}}, "friendly": {"_count": 2, "again": {"_count": 1}, "way": {"_count": 1}}, "positioned": {"_count": 2, "turquoise": {"_count": 1}, "to": {"_count": 1}}, "happy": {"_count": 4, "again": {"_count": 1}, "to": {"_count": 2}, "with": {"_count": 1}}, "safe": {"_count": 4, "at": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "there": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "smooth": {"_count": 1, "streamlined": {"_count": 1}}, "controlled": {"_count": 1, "dive": {"_count": 1}}, "until": {"_count": 1, "she": {"_count": 1}}, "okay": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "against": {"_count": 1, "them": {"_count": 1}}, "clear": {"_count": 5, "that": {"_count": 1}, "who": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 2}}, "capable": {"_count": 2, "of": {"_count": 2}}, "calm": {"_count": 2, "as": {"_count": 1}, "expression": {"_count": 1}}, "manicured": {"_count": 1, "lawns": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "audibly": {"_count": 1, "Nasty": {"_count": 1}}, "entitled": {"_count": 1, "to": {"_count": 1}}, "true": {"_count": 5, "his": {"_count": 1}, "": {"_count": 2}, "although": {"_count": 1}, "fear": {"_count": 1}}, "desperate": {"_count": 1, "": {"_count": 1}}, "unconcerned": {"_count": 1, "that": {"_count": 1}}, "round": {"_count": 1, "and": {"_count": 1}}, "honest": {"_count": 1, "after": {"_count": 1}}, "plain": {"_count": 2, "that": {"_count": 2}}, "untroubled": {"_count": 1, "by": {"_count": 1}}, "blank": {"_count": 1, "paper": {"_count": 1}}, "in": {"_count": 1, "order": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "predictable": {"_count": 1, "but": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "alert": {"_count": 1, "every": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "lovely": {"_count": 1, "to": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "circular": {"_count": 1, "so": {"_count": 1}}, "possible": {"_count": 1, "to": {"_count": 1}}, "preserved": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "sure": {"_count": 1, "that": {"_count": 1}}}, "normal": {"_count": 107, "thank": {"_count": 1, "you": {"_count": 1}}, "owlfree": {"_count": 1, "morning": {"_count": 1}}, "cat": {"_count": 1, "behavior": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 4, "and": {"_count": 3}, "this": {"_count": 1}}, "as": {"_count": 6, "talking": {"_count": 1}, "it": {"_count": 2}, "play": {"_count": 1}, "Filch": {"_count": 1}, "a": {"_count": 1}}, "mirror": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "!": {"_count": 1}}, "next": {"_count": 1, "year": {"_count": 1}}, "boy": {"_count": 2, "": {"_count": 1}, "cares": {"_count": 1}}, "by": {"_count": 2, "now": {"_count": 1}, "Madam": {"_count": 1}}, "size": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "with": {"_count": 1, "only": {"_count": 1}}, "persons": {"_count": 2, "view": {"_count": 1}, "life": {"_count": 1}}, "and": {"_count": 5, "everything": {"_count": 1}, "focused": {"_count": 1}, "Ginny": {"_count": 1}, "nobody": {"_count": 1}, "perusing": {"_count": 1}}, "Black": {"_count": 1, "seemed": {"_count": 1}}, "people": {"_count": 3, "are": {"_count": 1}, "": {"_count": 2}}, "again": {"_count": 2, "and": {"_count": 2}}, "schedule": {"_count": 1, "again": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "youve": {"_count": 1}}, "way": {"_count": 3, "because": {"_count": 1}, "": {"_count": 2}}, "for": {"_count": 2, "wizards": {"_count": 1}, "a": {"_count": 1}}, "clothes": {"_count": 1, "thats": {"_count": 1}}, "watching": {"_count": 1, "closely": {"_count": 1}}, "speed": {"_count": 1, "youre": {"_count": 1}}, "clock": {"_count": 1, "mortal": {"_count": 1}}, "though": {"_count": 1, "is": {"_count": 1}}, "eye": {"_count": 10, "and": {"_count": 1}, "was": {"_count": 4}, "moving": {"_count": 1}, "on": {"_count": 3}, "authority": {"_count": 1}}, "state": {"_count": 2, "": {"_count": 2}}, "girl": {"_count": 1, "": {"_count": 1}}, "circumstances": {"_count": 1, "but": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "Hermione": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "the": {"_count": 1}}, "ones": {"_count": 1, "": {"_count": 1}}, "leg": {"_count": 1, "regrew": {"_count": 1}}, "conversation": {"_count": 1, "going": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "tones": {"_count": 1, "And": {"_count": 1}}, "humans": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "English": {"_count": 1, "": {"_count": 1}}, "speech": {"_count": 1, "or": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "bumps": {"_count": 1, "an": {"_count": 1}}, "dreams": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "boy": {"_count": 1}}, "society": {"_count": 1, "and": {"_count": 1}}, "wizards": {"_count": 1, "": {"_count": 1}}, "lessons": {"_count": 1, "would": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "darkness": {"_count": 1, "": {"_count": 1}}, "appearance": {"_count": 1, "and": {"_count": 1}}, "dinner": {"_count": 1, "would": {"_count": 1}}, "smiling": {"_count": 1, "serenely": {"_count": 1}}, "clothing": {"_count": 1, "": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "magic": {"_count": 1, "meanwhile": {"_count": 1}}, "blue": {"_count": 1, "they": {"_count": 1}}, "fire": {"_count": 1, "Crabbe": {"_count": 1}}}, "thank": {"_count": 74, "you": {"_count": 59, "very": {"_count": 7}, "said": {"_count": 10}, "but": {"_count": 2}, "what": {"_count": 1}, "Miss": {"_count": 1}, "": {"_count": 11}, "its": {"_count": 1}, "Get": {"_count": 1}, "Ludo": {"_count": 1}, "Weatherby": {"_count": 1}, "Professor": {"_count": 1}, "boys": {"_count": 1}, "yes": {"_count": 1}, "Master": {"_count": 1}, "murmured": {"_count": 1}, "for": {"_count": 6}, "panted": {"_count": 1}, "Minerva": {"_count": 1}, "she": {"_count": 1}, "Phineas": {"_count": 1}, "to": {"_count": 1}, "But": {"_count": 1}, "at": {"_count": 1}, "were": {"_count": 1}, "Bill": {"_count": 1}, "enough": {"_count": 2}, "thanks": {"_count": 1}}, "goodness": {"_count": 9, "": {"_count": 4}, "thank": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "said": {"_count": 1}}, "the": {"_count": 1, "fortysix": {"_count": 1}}, "GO": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 2, "for": {"_count": 2}}, "God": {"_count": 2, "Mrs": {"_count": 1}, "she": {"_count": 1}}}, "you": {"_count": 10218, "very": {"_count": 25, "much": {"_count": 13}, "different": {"_count": 1}, "often": {"_count": 1}, "kindly": {"_count": 2}, "well": {"_count": 5}, "unfairly": {"_count": 1}, "Well": {"_count": 1}, "clear": {"_count": 1}}, "saw": {"_count": 32, "on": {"_count": 1}, "faithful": {"_count": 1}, "yourself": {"_count": 1}, "his": {"_count": 1}, "my": {"_count": 1}, "they": {"_count": 2}, "is": {"_count": 1}, "them": {"_count": 1}, "someone": {"_count": 1}, "him": {"_count": 2}, "it": {"_count": 2}, "Dad": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "what": {"_count": 2}, "her": {"_count": 1}, "proof": {"_count": 1}, "Rookwood": {"_count": 1}, "how": {"_count": 2}, "was": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "Mr": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}}, "havent": {"_count": 42, "heard": {"_count": 1}, "said": {"_count": 4}, "counted": {"_count": 1}, "been": {"_count": 6}, "got": {"_count": 8}, "sold": {"_count": 1}, "they": {"_count": 1}, "already": {"_count": 1}, "really": {"_count": 1}, "finished": {"_count": 1}, "improved": {"_count": 1}, "broken": {"_count": 1}, "seen": {"_count": 1}, "passed": {"_count": 1}, "told": {"_count": 2}, "still": {"_count": 1}, "noticed": {"_count": 4}, "had": {"_count": 1}, "watched": {"_count": 1}, "made": {"_count": 1}, "even": {"_count": 1}, "just": {"_count": 1}, "pressed": {"_count": 1}}, "": {"_count": 1112, "?": {"_count": 580}, ".": {"_count": 406}, "!": {"_count": 126}}, "know": {"_count": 464, "": {"_count": 122}, "it": {"_count": 8}, "do": {"_count": 1}, "with": {"_count": 3}, "to": {"_count": 2}, "the": {"_count": 19}, "you": {"_count": 3}, "Id": {"_count": 1}, "what": {"_count": 35}, "I": {"_count": 7}, "hes": {"_count": 2}, "its": {"_count": 3}, "turning": {"_count": 1}, "Quirrell": {"_count": 1}, "whats": {"_count": 2}, "about": {"_count": 13}, "because": {"_count": 3}, "everything": {"_count": 1}, "who": {"_count": 12}, "my": {"_count": 2}, "underage": {"_count": 1}, "in": {"_count": 2}, "better": {"_count": 2}, "Harry": {"_count": 9}, "but": {"_count": 5}, "where": {"_count": 7}, "nonmagic": {"_count": 1}, "a": {"_count": 1}, "even": {"_count": 1}, "Percy": {"_count": 2}, "anything": {"_count": 2}, "something": {"_count": 1}, "that": {"_count": 11}, "itd": {"_count": 1}, "and": {"_count": 10}, "attacked": {"_count": 1}, "said": {"_count": 20}, "much": {"_count": 2}, "Potter": {"_count": 1}, "theyre": {"_count": 2}, "Hermione": {"_count": 2}, "how": {"_count": 12}, "as": {"_count": 6}, "now": {"_count": 2}, "working": {"_count": 1}, "any": {"_count": 1}, "them": {"_count": 2}, "he": {"_count": 13}, "Lupin": {"_count": 1}, "if": {"_count": 4}, "owl": {"_count": 1}, "so": {"_count": 1}, "they": {"_count": 2}, "Ive": {"_count": 2}, "weve": {"_count": 1}, "his": {"_count": 2}, "whether": {"_count": 1}, "Arthur": {"_count": 1}, "Wormtail": {"_count": 1}, "MadEye": {"_count": 1}, "Ron": {"_count": 1}, "which": {"_count": 1}, "three": {"_count": 1}, "perfectly": {"_count": 1}, "Rons": {"_count": 1}, "no": {"_count": 2}, "You": {"_count": 1}, "international": {"_count": 1}, "Agrid": {"_count": 1}, "she": {"_count": 5}, "Winky": {"_count": 1}, "We": {"_count": 1}, "when": {"_count": 4}, "some": {"_count": 1}, "not": {"_count": 2}, "A": {"_count": 1}, "Will": {"_count": 1}, "nobody": {"_count": 1}, "Im": {"_count": 1}, "get": {"_count": 1}, "Lucius": {"_count": 1}, "theres": {"_count": 2}, "youre": {"_count": 3}, "why": {"_count": 5}, "this": {"_count": 4}, "Fred": {"_count": 1}, "we": {"_count": 1}, "there": {"_count": 1}, "still": {"_count": 1}, "trying": {"_count": 1}, "lovely": {"_count": 1}, "Dragon": {"_count": 1}, "somethings": {"_count": 1}, "all": {"_count": 1}, "nasty": {"_count": 1}, "one": {"_count": 2}, "challenge": {"_count": 1}, "everyone": {"_count": 1}, "Bertie": {"_count": 1}, "Riddles": {"_count": 1}, "her": {"_count": 2}, "Professor": {"_count": 1}, "once": {"_count": 1}, "then": {"_count": 1}, "within": {"_count": 1}, "like": {"_count": 1}, "me": {"_count": 1}, "over": {"_count": 1}, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 2}, "full": {"_count": 1}, "Gregorovitch": {"_count": 1}, "Mundungus": {"_count": 1}, "after": {"_count": 1}, "him": {"_count": 1}, "were": {"_count": 1}, "instead": {"_count": 1}, "is": {"_count": 1}, "dont": {"_count": 1}, "pretended": {"_count": 1}, "more": {"_count": 1}, "Neville": {"_count": 1}}, "ask": {"_count": 30, "me": {"_count": 21}, "an": {"_count": 1}, "him": {"_count": 1}, "such": {"_count": 1}, "Yes": {"_count": 1}, "someone": {"_count": 1}, "Sanguini": {"_count": 1}, "that": {"_count": 2}, "us": {"_count": 1}}, "here": {"_count": 16, "Professor": {"_count": 1}, "Potter": {"_count": 2}, "": {"_count": 5}, "in": {"_count": 2}, "to": {"_count": 1}, "for": {"_count": 1}, "safely": {"_count": 1}, "you": {"_count": 1}, "Mafalda": {"_count": 1}, "said": {"_count": 1}}, "could": {"_count": 92, "have": {"_count": 10}, "usually": {"_count": 1}, "imagine": {"_count": 2}, "make": {"_count": 2}, "go": {"_count": 2}, "see": {"_count": 2}, "think": {"_count": 1}, "call": {"_count": 1}, "Ron": {"_count": 1}, "ask": {"_count": 2}, "tell": {"_count": 3}, "want": {"_count": 1}, "carry": {"_count": 1}, "buy": {"_count": 1}, "do": {"_count": 3}, "possibly": {"_count": 2}, "come": {"_count": 5}, "say": {"_count": 3}, "be": {"_count": 2}, "never": {"_count": 1}, "speak": {"_count": 1}, "": {"_count": 2}, "pass": {"_count": 1}, "get": {"_count": 2}, "hand": {"_count": 1}, "all": {"_count": 2}, "almost": {"_count": 1}, "give": {"_count": 1}, "win": {"_count": 1}, "help": {"_count": 1}, "bring": {"_count": 2}, "end": {"_count": 2}, "use": {"_count": 3}, "beat": {"_count": 1}, "for": {"_count": 1}, "resume": {"_count": 1}, "hear": {"_count": 1}, "just": {"_count": 2}, "she": {"_count": 1}, "transform": {"_count": 1}, "draw": {"_count": 1}, "seriously": {"_count": 1}, "meet": {"_count": 1}, "test": {"_count": 1}, "find": {"_count": 2}, "not": {"_count": 1}, "send": {"_count": 1}, "so": {"_count": 1}, "start": {"_count": 1}, "visit": {"_count": 1}, "steal": {"_count": 1}, "ave": {"_count": 1}, "hope": {"_count": 1}, "claim": {"_count": 1}, "said": {"_count": 1}, "oblige": {"_count": 1}, "avoid": {"_count": 1}}, "care": {"_count": 11, "for": {"_count": 1}, "about": {"_count": 4}, "": {"_count": 3}, "what": {"_count": 2}, "how": {"_count": 1}}, "said": {"_count": 178, "Professor": {"_count": 4}, "a": {"_count": 3}, "Harry": {"_count": 37}, "Dumbledore": {"_count": 12}, "Ron": {"_count": 19}, "Colin": {"_count": 1}, "Peeves": {"_count": 1}, "Hermione": {"_count": 10}, "to": {"_count": 1}, "Riddle": {"_count": 3}, "the": {"_count": 7}, "I": {"_count": 1}, "Parvati": {"_count": 1}, "Fred": {"_count": 2}, "Buckbeak": {"_count": 1}, "Lupin": {"_count": 3}, "it": {"_count": 6}, "theyd": {"_count": 1}, "Wormtail": {"_count": 1}, "Mr": {"_count": 3}, "its": {"_count": 1}, "Karkaroff": {"_count": 1}, "this": {"_count": 1}, "Moody": {"_count": 2}, "Dobby": {"_count": 1}, "George": {"_count": 1}, "Madam": {"_count": 1}, "Sirius": {"_count": 2}, "so": {"_count": 1}, "they": {"_count": 1}, "Uncle": {"_count": 1}, "Tonks": {"_count": 4}, "Luna": {"_count": 3}, "she": {"_count": 1}, "Nearly": {"_count": 1}, "": {"_count": 2}, "yourself": {"_count": 2}, "Mrs": {"_count": 3}, "Ginny": {"_count": 3}, "\u2018out": {"_count": 1}, "Snape": {"_count": 2}, "you": {"_count": 4}, "James": {"_count": 1}, "Neville": {"_count": 2}, "not": {"_count": 1}, "that": {"_count": 1}, "Ogden": {"_count": 1}, "Scrimgeour": {"_count": 3}, "Slughorn": {"_count": 3}, "Twycross": {"_count": 1}, "Voldemort": {"_count": 1}, "youd": {"_count": 2}, "one": {"_count": 1}, "Fleur": {"_count": 1}, "after": {"_count": 1}, "Lees": {"_count": 1}, "Travers": {"_count": 1}, "Lily": {"_count": 1}}, "Id": {"_count": 4, "be": {"_count": 1}, "read": {"_count": 1}, "booked": {"_count": 1}, "like": {"_count": 1}}, "cant": {"_count": 77, "mean": {"_count": 1}, "": {"_count": 1}, "pretend": {"_count": 1}, "expect": {"_count": 2}, "share": {"_count": 1}, "tame": {"_count": 1}, "control": {"_count": 1}, "magic": {"_count": 1}, "start": {"_count": 1}, "see": {"_count": 3}, "say": {"_count": 2}, "get": {"_count": 3}, "give": {"_count": 1}, "ride": {"_count": 1}, "have": {"_count": 3}, "attach": {"_count": 1}, "commentate": {"_count": 1}, "go": {"_count": 3}, "imagine": {"_count": 1}, "miss": {"_count": 1}, "even": {"_count": 2}, "abuse": {"_count": 1}, "slip": {"_count": 1}, "aim": {"_count": 1}, "help": {"_count": 3}, "seriously": {"_count": 1}, "stop": {"_count": 2}, "and": {"_count": 1}, "call": {"_count": 2}, "advertise": {"_count": 1}, "test": {"_count": 1}, "put": {"_count": 2}, "blame": {"_count": 2}, "but": {"_count": 1}, "Apparate": {"_count": 2}, "said": {"_count": 2}, "honestly": {"_count": 1}, "trust": {"_count": 2}, "cure": {"_count": 1}, "possibly": {"_count": 1}, "evade": {"_count": 1}, "break": {"_count": 1}, "deny": {"_count": 1}, "be": {"_count": 1}, "do": {"_count": 3}, "tell": {"_count": 1}, "dance": {"_count": 1}, "remember": {"_count": 1}, "once": {"_count": 1}, "use": {"_count": 1}, "confirm": {"_count": 1}, "rebuild": {"_count": 1}, "repair": {"_count": 1}, "take": {"_count": 1}, "understand": {"_count": 1}}, "think": {"_count": 169, "you": {"_count": 12}, "he": {"_count": 5}, "of": {"_count": 9}, "thats": {"_count": 4}, "all": {"_count": 1}, "this": {"_count": 2}, "what": {"_count": 1}, "it": {"_count": 5}, "its": {"_count": 11}, "theyll": {"_count": 2}, "youll": {"_count": 3}, "": {"_count": 20}, "youre": {"_count": 8}, "youd": {"_count": 4}, "hes": {"_count": 5}, "we": {"_count": 4}, "Harry": {"_count": 2}, "is": {"_count": 1}, "Blacks": {"_count": 2}, "that": {"_count": 10}, "said": {"_count": 2}, "I": {"_count": 15}, "they": {"_count": 2}, "theyve": {"_count": 1}, "theyd": {"_count": 1}, "Rita": {"_count": 1}, "wed": {"_count": 3}, "Snape": {"_count": 1}, "hed": {"_count": 1}, "Karkaroff": {"_count": 1}, "youve": {"_count": 2}, "the": {"_count": 3}, "just": {"_count": 1}, "Im": {"_count": 2}, "now": {"_count": 1}, "Miss": {"_count": 1}, "about": {"_count": 1}, "Umbridge": {"_count": 1}, "were": {"_count": 3}, "Voldemortll": {"_count": 1}, "securitys": {"_count": 1}, "Malfoyd": {"_count": 1}, "shes": {"_count": 1}, "Slughorn": {"_count": 1}, "there": {"_count": 1}, "every": {"_count": 1}, "Potter": {"_count": 2}, "Id": {"_count": 1}, "theres": {"_count": 1}, "Dumbledore": {"_count": 2}, "so": {"_count": 1}, "if": {"_count": 1}}, "can": {"_count": 230, "explain": {"_count": 2}, "get": {"_count": 12}, "while": {"_count": 1}, "find": {"_count": 2}, "say": {"_count": 5}, "then": {"_count": 1}, "back": {"_count": 1}, "look": {"_count": 2}, "never": {"_count": 2}, "jump": {"_count": 1}, "tell": {"_count": 8}, "polish": {"_count": 1}, "go": {"_count": 6}, "": {"_count": 13}, "chew": {"_count": 1}, "cure": {"_count": 1}, "just": {"_count": 3}, "partner": {"_count": 2}, "trace": {"_count": 1}, "please": {"_count": 2}, "can": {"_count": 2}, "imagine": {"_count": 4}, "speak": {"_count": 1}, "ask": {"_count": 3}, "come": {"_count": 7}, "try": {"_count": 1}, "suck": {"_count": 1}, "see": {"_count": 11}, "lend": {"_count": 1}, "skin": {"_count": 1}, "do": {"_count": 21}, "prove": {"_count": 2}, "manage": {"_count": 1}, "help": {"_count": 3}, "play": {"_count": 1}, "spend": {"_count": 1}, "enchant": {"_count": 1}, "call": {"_count": 2}, "cope": {"_count": 1}, "perform": {"_count": 1}, "muster": {"_count": 1}, "borrow": {"_count": 2}, "bet": {"_count": 2}, "have": {"_count": 6}, "said": {"_count": 5}, "mix": {"_count": 1}, "okay": {"_count": 2}, "keep": {"_count": 1}, "guess": {"_count": 1}, "answer": {"_count": 2}, "still": {"_count": 3}, "for": {"_count": 1}, "beat": {"_count": 1}, "wait": {"_count": 1}, "stay": {"_count": 3}, "withstand": {"_count": 1}, "be": {"_count": 3}, "apply": {"_count": 1}, "choose": {"_count": 1}, "study": {"_count": 1}, "spot": {"_count": 2}, "stand": {"_count": 1}, "accomplish": {"_count": 1}, "think": {"_count": 3}, "produce": {"_count": 4}, "leave": {"_count": 1}, "take": {"_count": 3}, "remember": {"_count": 1}, "give": {"_count": 5}, "put": {"_count": 2}, "round": {"_count": 1}, "close": {"_count": 1}, "Im": {"_count": 1}, "control": {"_count": 1}, "you": {"_count": 1}, "understand": {"_count": 1}, "talk": {"_count": 1}, "start": {"_count": 1}, "kill": {"_count": 1}, "feel": {"_count": 1}, "sort": {"_count": 1}, "save": {"_count": 1}, "let": {"_count": 1}, "show": {"_count": 1}, "fix": {"_count": 1}, "write": {"_count": 1}, "hardly": {"_count": 1}, "But": {"_count": 1}, "Apparate": {"_count": 1}, "persuade": {"_count": 1}, "sleep": {"_count": 1}, "postpone": {"_count": 1}, "use": {"_count": 1}, "love": {"_count": 1}, "rustle": {"_count": 1}, "avoid": {"_count": 1}, "possibly": {"_count": 3}, "make": {"_count": 1}, "transform": {"_count": 1}, "increase": {"_count": 1}, "usually": {"_count": 1}, "gift": {"_count": 1}, "discover": {"_count": 1}}, "see": {"_count": 152, "how": {"_count": 3}, "him": {"_count": 4}, "Ill": {"_count": 1}, "": {"_count": 44}, "his": {"_count": 6}, "what": {"_count": 9}, "all": {"_count": 1}, "when": {"_count": 2}, "clearly": {"_count": 1}, "Fred": {"_count": 1}, "certain": {"_count": 1}, "anyone": {"_count": 3}, "we": {"_count": 1}, "Ive": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 8}, "Ginny": {"_count": 1}, "and": {"_count": 2}, "Lucius": {"_count": 1}, "Percy": {"_count": 1}, "that": {"_count": 2}, "in": {"_count": 3}, "them": {"_count": 3}, "me": {"_count": 2}, "within": {"_count": 1}, "Sirius": {"_count": 1}, "I": {"_count": 1}, "just": {"_count": 1}, "elf": {"_count": 1}, "it": {"_count": 4}, "dont": {"_count": 1}, "her": {"_count": 3}, "Voldemort": {"_count": 1}, "fit": {"_count": 1}, "so": {"_count": 2}, "said": {"_count": 5}, "whats": {"_count": 1}, "wearing": {"_count": 1}, "now": {"_count": 2}, "die": {"_count": 1}, "this": {"_count": 1}, "wanders": {"_count": 1}, "everything": {"_count": 1}, "anything": {"_count": 2}, "Harry": {"_count": 2}, "its": {"_count": 1}, "much": {"_count": 1}, "a": {"_count": 1}, "Ah": {"_count": 1}, "why": {"_count": 1}, "had": {"_count": 1}, "Malfoy": {"_count": 1}, "he": {"_count": 2}, "whereas": {"_count": 1}, "hes": {"_count": 1}, "who": {"_count": 1}, "believers": {"_count": 1}, "where": {"_count": 1}, "sense": {"_count": 1}, "you": {"_count": 1}}, "get": {"_count": 106, "that": {"_count": 5}, "here": {"_count": 3}, "there": {"_count": 1}, "all": {"_count": 4}, "out": {"_count": 5}, "Friday": {"_count": 1}, "": {"_count": 3}, "us": {"_count": 1}, "it": {"_count": 8}, "shown": {"_count": 1}, "the": {"_count": 5}, "to": {"_count": 3}, "into": {"_count": 6}, "them": {"_count": 3}, "ot": {"_count": 1}, "an": {"_count": 1}, "Harry": {"_count": 1}, "any": {"_count": 1}, "too": {"_count": 2}, "back": {"_count": 3}, "this": {"_count": 5}, "our": {"_count": 1}, "a": {"_count": 2}, "stabbed": {"_count": 1}, "your": {"_count": 4}, "on": {"_count": 1}, "now": {"_count": 1}, "in": {"_count": 5}, "yourself": {"_count": 1}, "past": {"_count": 1}, "up": {"_count": 2}, "my": {"_count": 1}, "P": {"_count": 1}, "involved": {"_count": 1}, "rid": {"_count": 1}, "these": {"_count": 3}, "Sibyll": {"_count": 1}, "enough": {"_count": 1}, "thrown": {"_count": 1}, "him": {"_count": 2}, "away": {"_count": 2}, "used": {"_count": 1}, "no": {"_count": 1}, "those": {"_count": 1}, "outside": {"_count": 1}, "It": {"_count": 1}, "around": {"_count": 1}, "something": {"_count": 1}, "some": {"_count": 1}, "inside": {"_count": 1}, "letters": {"_count": 1}}, "do": {"_count": 114, "something": {"_count": 5}, "you": {"_count": 6}, "know": {"_count": 3}, "": {"_count": 19}, "see": {"_count": 1}, "it": {"_count": 13}, "anything": {"_count": 1}, "not": {"_count": 12}, "this": {"_count": 5}, "Mr": {"_count": 1}, "that": {"_count": 11}, "said": {"_count": 5}, "look": {"_count": 1}, "how": {"_count": 1}, "hang": {"_count": 1}, "well": {"_count": 1}, "want": {"_count": 1}, "with": {"_count": 4}, "to": {"_count": 2}, "dont": {"_count": 1}, "everything": {"_count": 1}, "any": {"_count": 1}, "if": {"_count": 1}, "do": {"_count": 1}, "sound": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}, "cause": {"_count": 1}, "Harry": {"_count": 1}, "Dursley": {"_count": 1}, "go": {"_count": 1}, "Tom": {"_count": 1}, "care": {"_count": 1}, "magic": {"_count": 2}, "fly": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}, "Dragomir": {"_count": 1}}, "soon": {"_count": 6, "I": {"_count": 2}, "": {"_count": 1}, "Ron": {"_count": 1}, "enough": {"_count": 1}, "mate": {"_count": 1}}, "would": {"_count": 73, "expect": {"_count": 1}, "find": {"_count": 1}, "move": {"_count": 1}, "think": {"_count": 1}, "attend": {"_count": 1}, "have": {"_count": 17}, "be": {"_count": 9}, "go": {"_count": 2}, "": {"_count": 4}, "kindly": {"_count": 1}, "I": {"_count": 1}, "want": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}, "prefer": {"_count": 2}, "not": {"_count": 5}, "never": {"_count": 2}, "know": {"_count": 1}, "meet": {"_count": 1}, "take": {"_count": 1}, "understand": {"_count": 1}, "like": {"_count": 4}, "when": {"_count": 1}, "and": {"_count": 1}, "help": {"_count": 1}, "care": {"_count": 1}, "join": {"_count": 1}, "rather": {"_count": 1}, "give": {"_count": 1}, "he": {"_count": 1}, "succeed": {"_count": 1}, "put": {"_count": 1}, "please": {"_count": 1}, "show": {"_count": 1}, "fail": {"_count": 1}, "make": {"_count": 1}}, "up": {"_count": 39, "yet": {"_count": 1}, "at": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 5}, "a": {"_count": 3}, "to": {"_count": 10}, "said": {"_count": 1}, "What": {"_count": 1}, "in": {"_count": 2}, "mind": {"_count": 1}, "here": {"_count": 2}, "okay": {"_count": 1}, "Fred": {"_count": 1}, "over": {"_count": 1}, "on": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "by": {"_count": 1}, "Padfoot": {"_count": 1}, "some": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 293, "look": {"_count": 3}, "tell": {"_count": 11}, "Kings": {"_count": 1}, "ask": {"_count": 4}, "call": {"_count": 3}, "find": {"_count": 3}, "refuse": {"_count": 1}, "warn": {"_count": 1}, "get": {"_count": 9}, "death": {"_count": 1}, "do": {"_count": 10}, "remember": {"_count": 1}, "stay": {"_count": 5}, "put": {"_count": 1}, "join": {"_count": 4}, "say": {"_count": 3}, "remain": {"_count": 3}, "step": {"_count": 1}, "receive": {"_count": 1}, "appear": {"_count": 2}, "grab": {"_count": 2}, "go": {"_count": 10}, "deal": {"_count": 1}, "sign": {"_count": 1}, "be": {"_count": 6}, "give": {"_count": 3}, "show": {"_count": 2}, "take": {"_count": 7}, "sit": {"_count": 3}, "something": {"_count": 1}, "this": {"_count": 2}, "present": {"_count": 1}, "forgive": {"_count": 1}, "well": {"_count": 1}, "shut": {"_count": 4}, "run": {"_count": 1}, "yield": {"_count": 1}, "See": {"_count": 1}, "see": {"_count": 2}, "the": {"_count": 10}, "perform": {"_count": 1}, "": {"_count": 2}, "destroy": {"_count": 1}, "Mr": {"_count": 1}, "fight": {"_count": 2}, "keep": {"_count": 4}, "brew": {"_count": 1}, "wear": {"_count": 2}, "help": {"_count": 2}, "prepare": {"_count": 1}, "come": {"_count": 9}, "cheat": {"_count": 1}, "Transfigure": {"_count": 1}, "drop": {"_count": 2}, "Dumbledore": {"_count": 1}, "fetch": {"_count": 1}, "swear": {"_count": 1}, "greet": {"_count": 1}, "make": {"_count": 6}, "Hogwarts": {"_count": 1}, "him": {"_count": 1}, "stand": {"_count": 2}, "postpone": {"_count": 1}, "demonstrate": {"_count": 1}, "question": {"_count": 1}, "lay": {"_count": 2}, "set": {"_count": 2}, "win": {"_count": 3}, "anything": {"_count": 1}, "know": {"_count": 5}, "decide": {"_count": 2}, "full": {"_count": 1}, "pursue": {"_count": 1}, "your": {"_count": 3}, "wash": {"_count": 1}, "work": {"_count": 1}, "scrape": {"_count": 1}, "concentrate": {"_count": 2}, "reply": {"_count": 1}, "turn": {"_count": 3}, "use": {"_count": 5}, "write": {"_count": 1}, "finish": {"_count": 1}, "just": {"_count": 1}, "speak": {"_count": 1}, "visit": {"_count": 2}, "have": {"_count": 11}, "study": {"_count": 1}, "learn": {"_count": 2}, "close": {"_count": 2}, "empty": {"_count": 1}, "escort": {"_count": 1}, "hurt": {"_count": 1}, "manhandle": {"_count": 1}, "drink": {"_count": 1}, "become": {"_count": 2}, "judge": {"_count": 1}, "stretch": {"_count": 1}, "talk": {"_count": 1}, "provide": {"_count": 2}, "break": {"_count": 1}, "walk": {"_count": 1}, "But": {"_count": 1}, "protect": {"_count": 1}, "ten": {"_count": 1}, "her": {"_count": 1}, "leave": {"_count": 4}, "escape": {"_count": 1}, "save": {"_count": 1}, "my": {"_count": 1}, "bring": {"_count": 1}, "send": {"_count": 1}, "conduct": {"_count": 1}, "survive": {"_count": 1}, "meet": {"_count": 2}, "divulge": {"_count": 1}, "understand": {"_count": 1}, "Phineas": {"_count": 1}, "practice": {"_count": 1}, "place": {"_count": 1}, "tail": {"_count": 1}, "follow": {"_count": 1}, "rise": {"_count": 1}, "copy": {"_count": 1}, "hide": {"_count": 1}, "flee": {"_count": 1}, "hurry": {"_count": 1}, "try": {"_count": 1}, "attack": {"_count": 1}, "accompany": {"_count": 1}, "change": {"_count": 1}, "Nagini": {"_count": 1}, "answer": {"_count": 1}, "Tottenham": {"_count": 1}, "abandon": {"_count": 1}, "stop": {"_count": 1}, "bury": {"_count": 1}, "hear": {"_count": 1}, "enter": {"_count": 1}, "im": {"_count": 1}, "die": {"_count": 1}, "life": {"_count": 1}, "possess": {"_count": 1}, "spare": {"_count": 1}, "think": {"_count": 1}, "tea": {"_count": 1}}, "dare": {"_count": 15, "let": {"_count": 1}, "": {"_count": 4}, "call": {"_count": 1}, "blame": {"_count": 2}, "insult": {"_count": 1}, "touch": {"_count": 1}, "besmirch": {"_count": 1}, "Did": {"_count": 1}, "dont": {"_count": 1}, "talk": {"_count": 1}, "speak": {"_count": 1}}, "say": {"_count": 61, "": {"_count": 14}, "there": {"_count": 1}, "youve": {"_count": 2}, "that": {"_count": 5}, "in": {"_count": 1}, "its": {"_count": 1}, "\u2018yes": {"_count": 1}, "it": {"_count": 4}, "is": {"_count": 2}, "to": {"_count": 7}, "so": {"_count": 2}, "thats": {"_count": 1}, "something": {"_count": 1}, "Dumbledore": {"_count": 1}, "you": {"_count": 4}, "anything": {"_count": 1}, "anyway": {"_count": 1}, "YouKnow": {"_count": 1}, "murmured": {"_count": 1}, "\u2018brother": {"_count": 1}, "\u2018Sirius": {"_count": 1}, "hes": {"_count": 1}, "\u2018back": {"_count": 1}, "Morfin": {"_count": 1}, "Romilda": {"_count": 1}, "right": {"_count": 1}, "Elphias": {"_count": 1}, "\u2018master": {"_count": 1}, "Royal": {"_count": 1}}, "another": {"_count": 4, "two": {"_count": 1}, "autograph": {"_count": 1}, "hint": {"_count": 1}, "explanation": {"_count": 1}}, "he": {"_count": 38, "had": {"_count": 1}, "said": {"_count": 12}, "snarled": {"_count": 2}, "looked": {"_count": 2}, "erupted": {"_count": 1}, "moaned": {"_count": 1}, "thinks": {"_count": 1}, "was": {"_count": 3}, "shouted": {"_count": 1}, "told": {"_count": 2}, "growled": {"_count": 1}, "lowered": {"_count": 1}, "did": {"_count": 1}, "wasnt": {"_count": 1}, "is": {"_count": 1}, "barked": {"_count": 1}, "actually": {"_count": 1}, "already": {"_count": 1}, "bellowed": {"_count": 1}, "never": {"_count": 1}, "whispered": {"_count": 2}}, "now": {"_count": 23, "boy": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 5}, "wherever": {"_count": 1}, "can": {"_count": 1}, "do": {"_count": 1}, "take": {"_count": 1}, "Ive": {"_count": 1}, "Potter": {"_count": 1}, "Harry": {"_count": 1}, "weve": {"_count": 1}, "I": {"_count": 1}, "know": {"_count": 2}, "to": {"_count": 1}, "theyre": {"_count": 1}}, "come": {"_count": 42, "from": {"_count": 4}, "at": {"_count": 1}, "bounding": {"_count": 1}, "out": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 3}, "in": {"_count": 4}, "to": {"_count": 3}, "up": {"_count": 2}, "here": {"_count": 5}, "Harry": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 2}, "if": {"_count": 1}, "via": {"_count": 1}, "down": {"_count": 2}, "over": {"_count": 1}, "back": {"_count": 1}, "after": {"_count": 1}, "home": {"_count": 1}, "along": {"_count": 1}, "Hagrid": {"_count": 1}, "of": {"_count": 2}, "with": {"_count": 1}}, "Harry": {"_count": 114, "": {"_count": 53}, "dear": {"_count": 2}, "looked": {"_count": 1}, "to": {"_count": 1}, "whether": {"_count": 1}, "pointed": {"_count": 2}, "said": {"_count": 15}, "Potter": {"_count": 7}, "began": {"_count": 1}, "its": {"_count": 1}, "told": {"_count": 3}, "is": {"_count": 1}, "he": {"_count": 3}, "that": {"_count": 1}, "and": {"_count": 4}, "snapped": {"_count": 1}, "Hagrid": {"_count": 1}, "shall": {"_count": 1}, "repeated": {"_count": 1}, "muttered": {"_count": 2}, "dont": {"_count": 1}, "gasped": {"_count": 1}, "Ron": {"_count": 1}, "she": {"_count": 1}, "always": {"_count": 1}, "as": {"_count": 1}, "because": {"_count": 1}, "when": {"_count": 1}, "Potters": {"_count": 1}, "Im": {"_count": 1}, "but": {"_count": 1}, "I": {"_count": 1}}, "doing": {"_count": 74, "checking": {"_count": 1}, "magic": {"_count": 1}, "": {"_count": 29}, "in": {"_count": 4}, "down": {"_count": 4}, "here": {"_count": 16}, "wandering": {"_count": 1}, "Percy": {"_count": 1}, "Muggle": {"_count": 1}, "anything": {"_count": 1}, "Weasley": {"_count": 1}, "Harry": {"_count": 1}, "out": {"_count": 1}, "under": {"_count": 1}, "that": {"_count": 2}, "his": {"_count": 1}, "Potter": {"_count": 1}, "up": {"_count": 1}, "with": {"_count": 2}, "now": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}}, "croaked": {"_count": 1, "Uncle": {"_count": 1}}, "by": {"_count": 3, "mistake": {"_count": 1}, "your": {"_count": 1}, "any": {"_count": 1}}, "moved": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 115, "me": {"_count": 9}, "of": {"_count": 1}, "Malfoyll": {"_count": 1}, "Malfoy": {"_count": 1}, "you": {"_count": 2}, "your": {"_count": 9}, "Snape": {"_count": 1}, "Professor": {"_count": 2}, "its": {"_count": 1}, "I": {"_count": 9}, "how": {"_count": 1}, "Ron": {"_count": 4}, "all": {"_count": 1}, "Mrs": {"_count": 1}, "walked": {"_count": 1}, "the": {"_count": 8}, "fifty": {"_count": 1}, "him": {"_count": 1}, "Remus": {"_count": 1}, "Macnair": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 2}, "Longbottom": {"_count": 1}, "make": {"_count": 1}, "er": {"_count": 1}, "Harry": {"_count": 1}, "Hermyownninny": {"_count": 1}, "Dumbledore": {"_count": 3}, "are": {"_count": 1}, "when": {"_count": 1}, "Arthur": {"_count": 2}, "Madame": {"_count": 1}, "youve": {"_count": 1}, "didnt": {"_count": 1}, "his": {"_count": 1}, "hand": {"_count": 1}, "liked": {"_count": 1}, "dying": {"_count": 1}, "straight": {"_count": 1}, "himself": {"_count": 1}, "hopefully": {"_count": 1}, "practice": {"_count": 1}, "everything": {"_count": 1}, "Hermione": {"_count": 2}, "Voldemort": {"_count": 3}, "in": {"_count": 2}, "her": {"_count": 2}, "sooner": {"_count": 1}, "Sirius": {"_count": 1}, "Lord": {"_count": 2}, "Dad": {"_count": 1}, "youll": {"_count": 1}, "a": {"_count": 1}, "Goyle": {"_count": 1}, "Im": {"_count": 1}, "many": {"_count": 1}, "help": {"_count": 1}, "Lavender": {"_count": 1}, "Luna": {"_count": 1}, "will": {"_count": 1}, "Everything": {"_count": 1}, "trying": {"_count": 1}, "we": {"_count": 1}, "Grindelwald": {"_count": 1}, "Ariana": {"_count": 1}, "Miss": {"_count": 1}, "lied": {"_count": 1}, "so": {"_count": 1}, "A1": {"_count": 1}}, "this": {"_count": 25, "badly": {"_count": 1}, "year": {"_count": 1}, "time": {"_count": 2}, "is": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 6}, "I": {"_count": 1}, "bag": {"_count": 1}, "morning": {"_count": 2}, "prophecy": {"_count": 1}, "Friday": {"_count": 1}, "weekend": {"_count": 1}, "evening": {"_count": 2}, "at": {"_count": 1}, "over": {"_count": 1}, "Snitch": {"_count": 1}, "nutter": {"_count": 1}}, "all": {"_count": 123, "back": {"_count": 1}, "smarten": {"_count": 1}, "doing": {"_count": 2}, "that": {"_count": 4}, "copying": {"_count": 1}, "waiting": {"_count": 1}, "been": {"_count": 1}, "right": {"_count": 35}, "go": {"_count": 1}, "summer": {"_count": 1}, "up": {"_count": 1}, "before": {"_count": 1}, "hear": {"_count": 1}, "in": {"_count": 2}, "into": {"_count": 1}, "and": {"_count": 3}, "to": {"_count": 13}, "get": {"_count": 2}, "sandwiches": {"_count": 1}, "today": {"_count": 1}, "are": {"_count": 1}, "from": {"_count": 1}, "later": {"_count": 3}, "the": {"_count": 4}, "sooner": {"_count": 1}, "": {"_count": 9}, "said": {"_count": 2}, "for": {"_count": 1}, "whole": {"_count": 1}, "believed": {"_count": 1}, "when": {"_count": 1}, "you": {"_count": 2}, "tonight": {"_count": 1}, "please": {"_count": 1}, "whether": {"_count": 1}, "once": {"_count": 1}, "covered": {"_count": 1}, "downstairs": {"_count": 1}, "know": {"_count": 1}, "do": {"_count": 1}, "permission": {"_count": 1}, "this": {"_count": 4}, "a": {"_count": 1}, "OUCH": {"_count": 1}, "so": {"_count": 1}, "sorts": {"_count": 1}, "head": {"_count": 1}, "need": {"_count": 1}, "along": {"_count": 1}, "an": {"_count": 1}, "her": {"_count": 1}}, "Mr": {"_count": 11, "H": {"_count": 1}, "Potter": {"_count": 4}, "Borgin": {"_count": 1}, "Roberts": {"_count": 1}, "Crouch": {"_count": 1}, "Bagman": {"_count": 1}, "Lovegood": {"_count": 1}, "Ollivander": {"_count": 1}}, "werent": {"_count": 22, "eleven": {"_count": 1}, "speaking": {"_count": 1}, "killed": {"_count": 1}, "allowed": {"_count": 2}, "intending": {"_count": 1}, "one": {"_count": 1}, "dreaming": {"_count": 2}, "going": {"_count": 1}, "thinking": {"_count": 1}, "just": {"_count": 1}, "there": {"_count": 2}, "in": {"_count": 1}, "ordering": {"_count": 1}, "attacking": {"_count": 1}, "looking": {"_count": 1}, "a": {"_count": 1}, "I": {"_count": 1}, "dead": {"_count": 1}, "the": {"_count": 1}}, "Im": {"_count": 7, "armed": {"_count": 1}, "sure": {"_count": 1}, "your": {"_count": 1}, "very": {"_count": 1}, "not": {"_count": 2}, "no": {"_count": 1}}, "you": {"_count": 25, "was": {"_count": 1}, "just": {"_count": 2}, "do": {"_count": 1}, "I": {"_count": 1}, "great": {"_count": 1}, "look": {"_count": 1}, "stupid": {"_count": 1}, "wont": {"_count": 1}, "must": {"_count": 1}, "will": {"_count": 2}, "reminded": {"_count": 1}, "cant": {"_count": 1}, "ought": {"_count": 1}, "reckon": {"_count": 1}, "can": {"_count": 1}, "dont": {"_count": 2}, "His": {"_count": 1}, "need": {"_count": 1}, "spineless": {"_count": 1}, "go": {"_count": 1}, "are": {"_count": 1}, "did": {"_count": 1}}, "was": {"_count": 11, "only": {"_count": 2}, "all": {"_count": 1}, "scared": {"_count": 1}, "famous": {"_count": 1}, "about": {"_count": 1}, "that": {"_count": 2}, "an": {"_count": 1}, "feelin": {"_count": 1}, "looking": {"_count": 1}}, "leave": {"_count": 13, "at": {"_count": 1}, "Hogwarts": {"_count": 2}, "": {"_count": 2}, "us": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}, "your": {"_count": 1}, "now": {"_count": 1}, "her": {"_count": 1}, "therell": {"_count": 1}, "Ted": {"_count": 1}}, "but": {"_count": 21, "the": {"_count": 2}, "we": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 1}, "Sirius": {"_count": 1}, "my": {"_count": 1}, "theyre": {"_count": 1}, "not": {"_count": 1}, "youve": {"_count": 1}, "dont": {"_count": 2}, "I": {"_count": 3}, "if": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}, "Harry": {"_count": 1}, "remained": {"_count": 1}, "only": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 281, "": {"_count": 32}, "boy": {"_count": 1}, "here": {"_count": 8}, "at": {"_count": 1}, "waiting": {"_count": 1}, "well": {"_count": 2}, "an": {"_count": 3}, "expelled": {"_count": 2}, "Harry": {"_count": 10}, "that": {"_count": 1}, "not": {"_count": 19}, "a": {"_count": 8}, "older": {"_count": 1}, "ready": {"_count": 3}, "to": {"_count": 4}, "good": {"_count": 1}, "now": {"_count": 5}, "of": {"_count": 5}, "Potter": {"_count": 3}, "he": {"_count": 4}, "all": {"_count": 4}, "eh": {"_count": 1}, "fond": {"_count": 1}, "said": {"_count": 9}, "Ron": {"_count": 2}, "dear": {"_count": 1}, "dreading": {"_count": 2}, "then": {"_count": 5}, "concentrating": {"_count": 1}, "Professor": {"_count": 1}, "very": {"_count": 4}, "already": {"_count": 1}, "they": {"_count": 1}, "saying": {"_count": 2}, "suggesting": {"_count": 1}, "still": {"_count": 4}, "Diddy": {"_count": 1}, "Ludo": {"_count": 1}, "familiar": {"_count": 1}, "she": {"_count": 3}, "under": {"_count": 3}, "wholeheartedly": {"_count": 1}, "our": {"_count": 1}, "alone": {"_count": 1}, "taking": {"_count": 2}, "about": {"_count": 2}, "holding": {"_count": 1}, "nothing": {"_count": 2}, "playing": {"_count": 2}, "out": {"_count": 1}, "are": {"_count": 1}, "you": {"_count": 3}, "tired": {"_count": 1}, "referring": {"_count": 1}, "against": {"_count": 1}, "prepared": {"_count": 1}, "Sirius": {"_count": 1}, "required": {"_count": 2}, "fifteen": {"_count": 1}, "Dumbledores": {"_count": 2}, "intending": {"_count": 2}, "too": {"_count": 2}, "doing": {"_count": 4}, "likely": {"_count": 1}, "missing": {"_count": 1}, "going": {"_count": 1}, "surprised": {"_count": 1}, "afraid": {"_count": 1}, "writing": {"_count": 1}, "honestly": {"_count": 1}, "the": {"_count": 8}, "in": {"_count": 3}, "able": {"_count": 1}, "unsure": {"_count": 1}, "being": {"_count": 1}, "quite": {"_count": 2}, "Agnes": {"_count": 1}, "asleep": {"_count": 1}, "sharing": {"_count": 1}, "gaining": {"_count": 1}, "making": {"_count": 2}, "allowing": {"_count": 1}, "telling": {"_count": 2}, "neither": {"_count": 1}, "foolish": {"_count": 1}, "Headmistress": {"_count": 1}, "serious": {"_count": 1}, "no": {"_count": 1}, "accompanied": {"_count": 1}, "keeping": {"_count": 1}, "feeling": {"_count": 2}, "close": {"_count": 1}, "imagining": {"_count": 1}, "there": {"_count": 1}, "agreeable": {"_count": 1}, "Albus": {"_count": 1}, "She": {"_count": 1}, "Verity": {"_count": 1}, "I": {"_count": 1}, "enjoying": {"_count": 1}, "one": {"_count": 1}, "summoning": {"_count": 1}, "forgetting": {"_count": 1}, "accepting": {"_count": 1}, "thank": {"_count": 1}, "suspected": {"_count": 1}, "trying": {"_count": 1}, "placing": {"_count": 1}, "normal": {"_count": 1}, "\u2018the": {"_count": 2}, "seventeen": {"_count": 1}, "eligible": {"_count": 1}, "take": {"_count": 1}, "Tom": {"_count": 1}, "known": {"_count": 1}, "free": {"_count": 1}, "attacking": {"_count": 1}, "lucky": {"_count": 1}, "packed": {"_count": 1}, "Uncle": {"_count": 1}, "youre": {"_count": 1}, "dropping": {"_count": 1}, "abandoning": {"_count": 1}, "opening": {"_count": 1}, "Hermione": {"_count": 1}, "any": {"_count": 1}, "safe": {"_count": 1}, "preparing": {"_count": 1}, "Severus": {"_count": 1}, "closeted": {"_count": 1}, "forced": {"_count": 1}, "right": {"_count": 1}}, "mean": {"_count": 74, "ter": {"_count": 1}, "": {"_count": 34}, "youre": {"_count": 1}, "once": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "by": {"_count": 5}, "you": {"_count": 3}, "Peeves": {"_count": 1}, "Sirius": {"_count": 1}, "Agrid": {"_count": 1}, "said": {"_count": 5}, "my": {"_count": 2}, "Remus": {"_count": 1}, "boy": {"_count": 1}, "Professor": {"_count": 1}, "sent": {"_count": 1}, "\u2018help": {"_count": 1}, "\u2018at": {"_count": 1}, "to": {"_count": 3}, "\u2018tried": {"_count": 1}, "\u2018in": {"_count": 1}, "Him": {"_count": 1}, "Minister": {"_count": 1}, "\u2018something": {"_count": 1}, "\u2018e": {"_count": 1}, "its": {"_count": 1}, "\u2018got": {"_count": 1}}, "that": {"_count": 74, "you": {"_count": 8}, "scar": {"_count": 2}, "this": {"_count": 2}, "dragons": {"_count": 1}, "it": {"_count": 4}, "if": {"_count": 2}, "because": {"_count": 1}, "special": {"_count": 1}, "taking": {"_count": 1}, "Professor": {"_count": 3}, "I": {"_count": 8}, "": {"_count": 3}, "idea": {"_count": 1}, "he": {"_count": 2}, "night": {"_count": 1}, "the": {"_count": 5}, "your": {"_count": 2}, "Hagrid": {"_count": 1}, "next": {"_count": 1}, "Dumbledore": {"_count": 1}, "bad": {"_count": 1}, "HeWho": {"_count": 1}, "way": {"_count": 1}, "three": {"_count": 1}, "hes": {"_count": 1}, "when": {"_count": 2}, "Siriuss": {"_count": 1}, "Sybill": {"_count": 1}, "that": {"_count": 1}, "Ive": {"_count": 1}, "spell": {"_count": 1}, "does": {"_count": 1}, "book": {"_count": 1}, "sword": {"_count": 1}, "theres": {"_count": 1}, "for": {"_count": 1}, "two": {"_count": 1}, "said": {"_count": 3}, "Im": {"_count": 1}, "impression": {"_count": 1}, "had": {"_count": 1}}, "have": {"_count": 209, "been": {"_count": 24}, "to": {"_count": 23}, "two": {"_count": 1}, "discovered": {"_count": 1}, "come": {"_count": 2}, "another": {"_count": 1}, "the": {"_count": 6}, "er": {"_count": 1}, "an": {"_count": 4}, "done": {"_count": 4}, "told": {"_count": 2}, "a": {"_count": 9}, "it": {"_count": 5}, "learned": {"_count": 3}, "need": {"_count": 2}, "chosen": {"_count": 1}, "covered": {"_count": 1}, "spoken": {"_count": 1}, "heard": {"_count": 3}, "arrived": {"_count": 1}, "no": {"_count": 6}, "your": {"_count": 1}, "become": {"_count": 2}, "dribbled": {"_count": 1}, "still": {"_count": 1}, "Ron": {"_count": 1}, "ever": {"_count": 4}, "important": {"_count": 1}, "names": {"_count": 1}, "some": {"_count": 1}, "anything": {"_count": 1}, "not": {"_count": 7}, "achieved": {"_count": 1}, "now": {"_count": 2}, "put": {"_count": 1}, "already": {"_count": 3}, "lost": {"_count": 1}, "I": {"_count": 2}, "you": {"_count": 2}, "said": {"_count": 3}, "all": {"_count": 1}, "other": {"_count": 1}, "devised": {"_count": 1}, "studied": {"_count": 2}, "stopped": {"_count": 1}, "any": {"_count": 5}, "applied": {"_count": 1}, "never": {"_count": 2}, "": {"_count": 1}, "noticed": {"_count": 2}, "every": {"_count": 2}, "mapped": {"_count": 1}, "broken": {"_count": 1}, "felt": {"_count": 1}, "long": {"_count": 1}, "proved": {"_count": 1}, "Prime": {"_count": 1}, "clearly": {"_count": 1}, "had": {"_count": 3}, "guessed": {"_count": 2}, "always": {"_count": 1}, "invited": {"_count": 2}, "indeed": {"_count": 1}, "also": {"_count": 1}, "inflicted": {"_count": 1}, "at": {"_count": 2}, "evidently": {"_count": 1}, "seen": {"_count": 2}, "attempted": {"_count": 1}, "borrowed": {"_count": 1}, "inherited": {"_count": 1}, "confided": {"_count": 1}, "many": {"_count": 1}, "exerted": {"_count": 1}, "exercised": {"_count": 1}, "left": {"_count": 1}, "remained": {"_count": 1}, "retrieved": {"_count": 1}, "that": {"_count": 1}, "succeeded": {"_count": 1}, "earned": {"_count": 1}, "endured": {"_count": 1}, "reached": {"_count": 1}, "my": {"_count": 1}, "managed": {"_count": 1}, "perhaps": {"_count": 1}, "hurt": {"_count": 1}, "spotted": {"_count": 1}, "shown": {"_count": 1}, "Griphook": {"_count": 1}, "struck": {"_count": 1}, "performed": {"_count": 1}, "sustained": {"_count": 1}, "what": {"_count": 1}, "killed": {"_count": 1}, "leadership": {"_count": 1}, "less": {"_count": 1}, "magic": {"_count": 1}}, "stop": {"_count": 12, "him": {"_count": 1}, "messing": {"_count": 1}, "saying": {"_count": 1}, "playing": {"_count": 1}, "me": {"_count": 2}, "acting": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "pretending": {"_count": 1}, "harping": {"_count": 1}, "it": {"_count": 1}}, "grew": {"_count": 1, "up": {"_count": 1}}, "not": {"_count": 49, "be": {"_count": 1}, "to": {"_count": 23}, "see": {"_count": 1}, "understand": {"_count": 2}, "Wormtail": {"_count": 3}, "Crabbe": {"_count": 1}, "": {"_count": 4}, "been": {"_count": 1}, "wonder": {"_count": 1}, "Neville": {"_count": 1}, "return": {"_count": 1}, "Snape": {"_count": 1}, "understood": {"_count": 1}, "know": {"_count": 1}, "currently": {"_count": 1}, "think": {"_count": 1}, "only": {"_count": 1}, "that": {"_count": 1}, "returned": {"_count": 1}, "obeyed": {"_count": 1}, "ask": {"_count": 1}}, "please": {"_count": 27, "she": {"_count": 1}, "let": {"_count": 1}, "to": {"_count": 3}, "make": {"_count": 1}, "put": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 9}, "inform": {"_count": 1}, "Mr": {"_count": 1}, "not": {"_count": 1}, "stop": {"_count": 1}, "come": {"_count": 1}, "drop": {"_count": 1}, "Master": {"_count": 1}, "tell": {"_count": 1}, "Dont": {"_count": 1}, "give": {"_count": 1}}, "write": {"_count": 3, "it": {"_count": 1}, "back": {"_count": 1}, "with": {"_count": 1}}, "too": {"_count": 21, "": {"_count": 6}, "Mr": {"_count": 1}, "said": {"_count": 2}, "Weasley": {"_count": 1}, "Hagrid": {"_count": 1}, "Arthur": {"_count": 1}, "you": {"_count": 1}, "Longbottom": {"_count": 1}, "Neville": {"_count": 1}, "Dilys": {"_count": 1}, "Stebbins": {"_count": 1}, "much": {"_count": 1}, "poor": {"_count": 1}, "but": {"_count": 1}, "badly": {"_count": 1}}, "got": {"_count": 60, "that": {"_count": 1}, "your": {"_count": 2}, "expelled": {"_count": 1}, "left": {"_count": 1}, "in": {"_count": 3}, "to": {"_count": 2}, "any": {"_count": 2}, "something": {"_count": 1}, "all": {"_count": 2}, "over": {"_count": 2}, "a": {"_count": 5}, "": {"_count": 2}, "here": {"_count": 4}, "it": {"_count": 6}, "past": {"_count": 1}, "back": {"_count": 4}, "lost": {"_count": 1}, "him": {"_count": 2}, "into": {"_count": 1}, "there": {"_count": 1}, "used": {"_count": 1}, "what": {"_count": 1}, "on": {"_count": 1}, "this": {"_count": 1}, "enough": {"_count": 1}, "me": {"_count": 1}, "through": {"_count": 1}, "Occlumency": {"_count": 1}, "for": {"_count": 1}, "Muggle": {"_count": 1}, "anything": {"_count": 3}, "the": {"_count": 2}, "away": {"_count": 1}}, "an": {"_count": 12, "thats": {"_count": 1}, "hed": {"_count": 1}, "weve": {"_count": 1}, "owl": {"_count": 1}, "I": {"_count": 1}, "me": {"_count": 1}, "explanation": {"_count": 1}, "overview": {"_count": 1}, "item": {"_count": 1}, "that": {"_count": 1}, "old": {"_count": 1}, "edge": {"_count": 1}}, "lived": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "listen": {"_count": 8, "here": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 3}, "ter": {"_count": 1}, "said": {"_count": 1}}, "probably": {"_count": 1, "nothing": {"_count": 1}}, "Dursley": {"_count": 1, "Im": {"_count": 1}}, "one": {"_count": 8, "more": {"_count": 1}, "": {"_count": 2}, "thing": {"_count": 1}, "for": {"_count": 1}, "hundred": {"_count": 1}, "chance": {"_count": 1}, "didnt": {"_count": 1}}, "finished": {"_count": 2, "him": {"_count": 1}, "yet": {"_count": 1}}, "stumped": {"_count": 1, "him": {"_count": 1}}, "must": {"_count": 63, "have": {"_count": 11}, "know": {"_count": 9}, "be": {"_count": 10}, "not": {"_count": 5}, "admit": {"_count": 2}, "see": {"_count": 2}, "do": {"_count": 1}, "catch": {"_count": 1}, "get": {"_count": 3}, "take": {"_count": 1}, "remember": {"_count": 1}, "feel": {"_count": 1}, "said": {"_count": 1}, "surely": {"_count": 1}, "act": {"_count": 1}, "study": {"_count": 1}, "promise": {"_count": 1}, "need": {"_count": 1}, "drop": {"_count": 1}, "understand": {"_count": 3}, "": {"_count": 1}, "follow": {"_count": 1}, "tell": {"_count": 2}, "plant": {"_count": 1}, "believe": {"_count": 1}}, "wait": {"_count": 10, "youll": {"_count": 1}, "its": {"_count": 1}, "til": {"_count": 1}, "until": {"_count": 2}, "theyre": {"_count": 1}, "said": {"_count": 1}, "over": {"_count": 1}, "till": {"_count": 2}}, "hes": {"_count": 5, "not": {"_count": 2}, "usually": {"_count": 1}, "alive": {"_count": 1}, "never": {"_count": 1}}, "wont": {"_count": 26, "stop": {"_count": 1}, "go": {"_count": 2}, "you": {"_count": 1}, "": {"_count": 1}, "let": {"_count": 3}, "have": {"_count": 1}, "believe": {"_count": 1}, "be": {"_count": 3}, "stray": {"_count": 1}, "need": {"_count": 1}, "look": {"_count": 1}, "talk": {"_count": 1}, "kill": {"_count": 1}, "tell": {"_count": 2}, "forget": {"_count": 1}, "help": {"_count": 1}, "give": {"_count": 1}, "mind": {"_count": 1}, "like": {"_count": 1}, "get": {"_count": 1}}, "supposed": {"_count": 6, "to": {"_count": 6}}, "expelled": {"_count": 1, "": {"_count": 1}}, "heard": {"_count": 22, "Uncle": {"_count": 1}, "what": {"_count": 5}, "Harry": {"_count": 1}, "me": {"_count": 1}, "Professor": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 3}, "Ali": {"_count": 1}, "anything": {"_count": 1}, "were": {"_count": 1}, "Snape": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 2}, "that": {"_count": 1}}, "gettin": {"_count": 1, "things": {"_count": 1}}, "be": {"_count": 17, "mad": {"_count": 1}, "nearly": {"_count": 1}, "sure": {"_count": 4}, "wanting": {"_count": 1}, "so": {"_count": 1}, "Mr": {"_count": 1}, "worrying": {"_count": 1}, "unwilling": {"_count": 1}, "very": {"_count": 1}, "clever": {"_count": 1}, "wandering": {"_count": 1}, "in": {"_count": 1}, "teaching": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 77, "magic": {"_count": 1}, "prefect": {"_count": 3}, "Hogwarts": {"_count": 1}, "Seeker": {"_count": 1}, "Weasley": {"_count": 1}, "fortune": {"_count": 1}, "common": {"_count": 1}, "few": {"_count": 2}, "toilet": {"_count": 1}, "racing": {"_count": 1}, "taste": {"_count": 1}, "lesson": {"_count": 2}, "laugh": {"_count": 1}, "speedy": {"_count": 1}, "ghost": {"_count": 1}, "skinny": {"_count": 1}, "little": {"_count": 2}, "clue": {"_count": 1}, "hard": {"_count": 2}, "real": {"_count": 1}, "bit": {"_count": 2}, "Muggle": {"_count": 1}, "seat": {"_count": 1}, "collecting": {"_count": 1}, "drink": {"_count": 3}, "picture": {"_count": 1}, "question": {"_count": 2}, "curse": {"_count": 1}, "Christmas": {"_count": 1}, "couple": {"_count": 1}, "pology": {"_count": 1}, "pleasant": {"_count": 2}, "detention": {"_count": 1}, "Ministrytrained": {"_count": 1}, "": {"_count": 1}, "time": {"_count": 1}, "realistic": {"_count": 1}, "weeks": {"_count": 1}, "castiron": {"_count": 1}, "free": {"_count": 1}, "report": {"_count": 1}, "you": {"_count": 1}, "cough": {"_count": 1}, "Babbling": {"_count": 1}, "lingering": {"_count": 1}, "false": {"_count": 1}, "double": {"_count": 1}, "tour": {"_count": 1}, "diversion": {"_count": 1}, "splitsecond": {"_count": 1}, "letter": {"_count": 1}, "glass": {"_count": 1}, "place": {"_count": 1}, "wizard": {"_count": 2}, "love": {"_count": 1}, "birthday": {"_count": 1}, "furious": {"_count": 1}, "magical": {"_count": 1}, "long": {"_count": 1}, "million": {"_count": 2}, "happy": {"_count": 1}, "second": {"_count": 1}, "mission": {"_count": 1}, "worthy": {"_count": 1}}, "at": {"_count": 38, "last": {"_count": 2}, "Hogwarts": {"_count": 3}, "the": {"_count": 13}, "b": {"_count": 1}, "Quidditch": {"_count": 1}, "five": {"_count": 2}, "dinner": {"_count": 3}, "least": {"_count": 2}, "six": {"_count": 1}, "twelve": {"_count": 1}, "all": {"_count": 3}, "Potions": {"_count": 1}, "that": {"_count": 1}, "once": {"_count": 1}, "Christmas": {"_count": 2}, "Bill": {"_count": 1}}, "Diggles": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 17, "": {"_count": 1}, "you": {"_count": 5}, "starting": {"_count": 1}, "Ron": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}, "morning": {"_count": 1}, "impersonating": {"_count": 1}, "dinner": {"_count": 1}, "she": {"_count": 1}, "now": {"_count": 1}, "I": {"_count": 1}}, "hear": {"_count": 44, "that": {"_count": 4}, "about": {"_count": 6}, "this": {"_count": 1}, "something": {"_count": 2}, "him": {"_count": 4}, "it": {"_count": 2}, "me": {"_count": 11}, "someone": {"_count": 1}, "us": {"_count": 2}, "a": {"_count": 1}, "Fleur": {"_count": 1}, "": {"_count": 2}, "popkin": {"_count": 1}, "anything": {"_count": 1}, "theres": {"_count": 1}, "what": {"_count": 3}, "you": {"_count": 1}}, "how": {"_count": 22, "ppleased": {"_count": 1}, "to": {"_count": 10}, "glad": {"_count": 1}, "you": {"_count": 2}, "much": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 2}, "very": {"_count": 1}, "appalled": {"_count": 1}}, "teach": {"_count": 3, "Professor": {"_count": 1}, "me": {"_count": 1}, "us": {"_count": 1}}, "nneed": {"_count": 2, "it": {"_count": 1}, "to": {"_count": 1}}, "seek": {"_count": 6, "beneath": {"_count": 2}, "stays": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "within": {"_count": 1}}, "down": {"_count": 11, "to": {"_count": 2}, "": {"_count": 1}, "for": {"_count": 1}, "here": {"_count": 1}, "there": {"_count": 2}, "at": {"_count": 1}, "He": {"_count": 1}, "now": {"_count": 1}, "said": {"_count": 1}}, "check": {"_count": 3, "to": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "11": {"_count": 17, "be": {"_count": 3}, "forgive": {"_count": 1}, "say": {"_count": 1}, "get": {"_count": 1}, "have": {"_count": 4}, "tire": {"_count": 1}, "all": {"_count": 1}, "notice": {"_count": 1}, "find": {"_count": 3}, "agree": {"_count": 1}}, "done": {"_count": 10, "my": {"_count": 1}, "to": {"_count": 3}, "with": {"_count": 2}, "Youre": {"_count": 1}, "enough": {"_count": 1}, "": {"_count": 2}}, "wrote": {"_count": 4, "": {"_count": 1}, "that": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}}, "again": {"_count": 14, "": {"_count": 5}, "said": {"_count": 1}, "do": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "Severus": {"_count": 1}, "on": {"_count": 1}, "Ill": {"_count": 1}, "All": {"_count": 1}, "marking": {"_count": 1}}, "dont": {"_count": 136, "use": {"_count": 1}, "give": {"_count": 3}, "say": {"_count": 1}, "mind": {"_count": 11}, "have": {"_count": 3}, "forget": {"_count": 2}, "think": {"_count": 9}, "know": {"_count": 19}, "hurry": {"_count": 2}, "": {"_count": 6}, "want": {"_count": 21}, "chuck": {"_count": 1}, "need": {"_count": 5}, "believe": {"_count": 2}, "like": {"_count": 4}, "seriously": {"_count": 1}, "open": {"_count": 2}, "reckon": {"_count": 4}, "even": {"_count": 4}, "move": {"_count": 1}, "ask": {"_count": 2}, "care": {"_count": 3}, "understand": {"_count": 5}, "notice": {"_count": 1}, "take": {"_count": 1}, "get": {"_count": 2}, "said": {"_count": 2}, "just": {"_count": 1}, "watch": {"_count": 1}, "stop": {"_count": 1}, "shut": {"_count": 1}, "fancy": {"_count": 1}, "stand": {"_count": 1}, "she": {"_count": 1}, "come": {"_count": 2}, "if": {"_count": 1}, "let": {"_count": 1}, "drink": {"_count": 1}, "deserve": {"_count": 1}, "start": {"_count": 1}, "really": {"_count": 1}, "count": {"_count": 1}, "remember": {"_count": 1}, "owe": {"_count": 1}}, "will": {"_count": 157, "never": {"_count": 1}, "be": {"_count": 28}, "put": {"_count": 3}, "learn": {"_count": 1}, "hardly": {"_count": 1}, "really": {"_count": 1}, "now": {"_count": 1}, "receive": {"_count": 2}, "have": {"_count": 9}, "know": {"_count": 1}, "said": {"_count": 1}, "both": {"_count": 1}, "let": {"_count": 2}, "find": {"_count": 10}, "all": {"_count": 6}, "excuse": {"_count": 2}, "raise": {"_count": 1}, "See": {"_count": 1}, "not": {"_count": 10}, "": {"_count": 2}, "allow": {"_count": 1}, "Potter": {"_count": 1}, "go": {"_count": 1}, "contribute": {"_count": 1}, "agree": {"_count": 1}, "each": {"_count": 1}, "face": {"_count": 1}, "see": {"_count": 3}, "do": {"_count": 8}, "pay": {"_count": 1}, "renew": {"_count": 1}, "revive": {"_count": 1}, "step": {"_count": 1}, "prove": {"_count": 1}, "cease": {"_count": 1}, "need": {"_count": 5}, "kindly": {"_count": 2}, "if": {"_count": 2}, "come": {"_count": 1}, "say": {"_count": 2}, "get": {"_count": 1}, "confine": {"_count": 1}, "therefore": {"_count": 1}, "understand": {"_count": 4}, "fetch": {"_count": 1}, "bleed": {"_count": 1}, "remember": {"_count": 3}, "no": {"_count": 1}, "always": {"_count": 2}, "grunted": {"_count": 1}, "grasp": {"_count": 1}, "forgive": {"_count": 1}, "enter": {"_count": 1}, "stand": {"_count": 3}, "sit": {"_count": 1}, "address": {"_count": 1}, "of": {"_count": 1}, "give": {"_count": 2}, "Harry": {"_count": 1}, "obey": {"_count": 1}, "count": {"_count": 1}, "kill": {"_count": 1}, "ever": {"_count": 1}, "follow": {"_count": 1}, "eventually": {"_count": 1}, "organize": {"_count": 1}, "make": {"_count": 1}, "join": {"_count": 1}}, "should": {"_count": 47, "be": {"_count": 8}, "have": {"_count": 5}, "mention": {"_count": 1}, "know": {"_count": 4}, "hand": {"_count": 1}, "take": {"_count": 1}, "never": {"_count": 2}, "ask": {"_count": 1}, "go": {"_count": 3}, "tell": {"_count": 2}, "not": {"_count": 2}, "Ron": {"_count": 1}, "said": {"_count": 2}, "hear": {"_count": 2}, "complain": {"_count": 1}, "do": {"_count": 2}, "continue": {"_count": 1}, "really": {"_count": 1}, "touch": {"_count": 1}, "master": {"_count": 1}, "you": {"_count": 1}, "forget": {"_count": 1}, "feel": {"_count": 1}, "all": {"_count": 1}, "look": {"_count": 1}}, "worry": {"_count": 3, "Harry": {"_count": 1}, "abou": {"_count": 1}, "about": {"_count": 1}}, "gave": {"_count": 7, "me": {"_count": 3}, "it": {"_count": 1}, "us": {"_count": 1}, "Krum": {"_count": 1}, "Professor": {"_count": 1}}, "going": {"_count": 56, "to": {"_count": 39}, "": {"_count": 8}, "somewhere": {"_count": 1}, "with": {"_count": 3}, "public": {"_count": 1}, "do": {"_count": 1}, "out": {"_count": 1}, "away": {"_count": 1}, "alone": {"_count": 1}}, "had": {"_count": 70, "to": {"_count": 14}, "managed": {"_count": 2}, "a": {"_count": 6}, "more": {"_count": 1}, "with": {"_count": 1}, "died": {"_count": 1}, "threatened": {"_count": 1}, "any": {"_count": 4}, "": {"_count": 2}, "anywhere": {"_count": 1}, "anything": {"_count": 1}, "it": {"_count": 1}, "your": {"_count": 2}, "the": {"_count": 4}, "drowned": {"_count": 1}, "bought": {"_count": 1}, "that": {"_count": 2}, "read": {"_count": 1}, "shortly": {"_count": 2}, "been": {"_count": 3}, "had": {"_count": 1}, "seen": {"_count": 1}, "said": {"_count": 1}, "gone": {"_count": 1}, "already": {"_count": 2}, "triumphantly": {"_count": 1}, "proved": {"_count": 1}, "enough": {"_count": 1}, "never": {"_count": 2}, "become": {"_count": 1}, "actually": {"_count": 1}, "lots": {"_count": 1}, "agreed": {"_count": 1}, "skinny": {"_count": 1}, "not": {"_count": 1}, "only": {"_count": 1}, "conquered": {"_count": 1}}, "go": {"_count": 73, "first": {"_count": 1}, "": {"_count": 13}, "with": {"_count": 2}, "alone": {"_count": 1}, "to": {"_count": 3}, "there": {"_count": 1}, "after": {"_count": 1}, "move": {"_count": 1}, "but": {"_count": 1}, "Macmillan": {"_count": 1}, "off": {"_count": 2}, "the": {"_count": 1}, "down": {"_count": 1}, "Madam": {"_count": 1}, "said": {"_count": 4}, "running": {"_count": 1}, "into": {"_count": 2}, "then": {"_count": 4}, "Ron": {"_count": 2}, "at": {"_count": 1}, "up": {"_count": 1}, "Harry": {"_count": 2}, "upsetting": {"_count": 1}, "take": {"_count": 1}, "and": {"_count": 4}, "he": {"_count": 3}, "Sirius": {"_count": 1}, "He": {"_count": 1}, "Fudge": {"_count": 1}, "feeling": {"_count": 1}, "thought": {"_count": 1}, "worryin": {"_count": 1}, "on": {"_count": 1}, "Dumbledore": {"_count": 1}, "out": {"_count": 1}, "ahead": {"_count": 1}, "talking": {"_count": 1}, "when": {"_count": 1}, "if": {"_count": 1}, "son": {"_count": 1}, "for": {"_count": 1}, "snogging": {"_count": 1}, "in": {"_count": 1}}, "next": {"_count": 11, "the": {"_count": 1}, "summer": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "Hermione": {"_count": 1}, "Christmas": {"_count": 1}, "wanted": {"_count": 1}, "so": {"_count": 1}, "she": {"_count": 1}}, "call": {"_count": 15, "yourself": {"_count": 1}, "me": {"_count": 2}, "him": {"_count": 3}, "a": {"_count": 1}, "Voldemort": {"_count": 1}, "us": {"_count": 1}, "trials": {"_count": 1}, "getting": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}, "everyone": {"_count": 1}}, "tell": {"_count": 42, "Im": {"_count": 1}, "him": {"_count": 4}, "such": {"_count": 1}, "them": {"_count": 3}, "us": {"_count": 4}, "me": {"_count": 14}, "Professor": {"_count": 1}, "the": {"_count": 3}, "she": {"_count": 1}, "her": {"_count": 3}, "Katie": {"_count": 1}, "which": {"_count": 2}, "Dumbledore": {"_count": 1}, "": {"_count": 2}, "kids": {"_count": 1}}, "there": {"_count": 18, "": {"_count": 9}, "and": {"_count": 1}, "too": {"_count": 1}, "apart": {"_count": 1}, "its": {"_count": 1}, "was": {"_count": 3}, "she": {"_count": 1}, "safe": {"_count": 1}}, "two": {"_count": 72, "this": {"_count": 1}, "said": {"_count": 3}, "read": {"_count": 1}, "": {"_count": 7}, "were": {"_count": 3}, "say": {"_count": 1}, "will": {"_count": 1}, "she": {"_count": 2}, "again": {"_count": 1}, "come": {"_count": 1}, "didnt": {"_count": 1}, "are": {"_count": 5}, "flying": {"_count": 1}, "okay": {"_count": 1}, "been": {"_count": 2}, "doin": {"_count": 1}, "tragically": {"_count": 1}, "prefects": {"_count": 1}, "laughing": {"_count": 1}, "not": {"_count": 1}, "doing": {"_count": 4}, "up": {"_count": 2}, "join": {"_count": 1}, "at": {"_count": 1}, "because": {"_count": 1}, "the": {"_count": 1}, "got": {"_count": 1}, "could": {"_count": 1}, "ever": {"_count": 1}, "get": {"_count": 1}, "or": {"_count": 1}, "sit": {"_count": 1}, "would": {"_count": 1}, "He": {"_count": 1}, "decided": {"_count": 1}, "had": {"_count": 2}, "I": {"_count": 1}, "ter": {"_count": 1}, "months": {"_count": 1}, "he": {"_count": 2}, "hurry": {"_count": 1}, "can": {"_count": 1}, "stay": {"_count": 1}, "lay": {"_count": 1}, "later": {"_count": 1}, "talking": {"_count": 1}, "left": {"_count": 1}, "fit": {"_count": 1}, "isnt": {"_count": 1}, "as": {"_count": 1}}, "behave": {"_count": 2, "yourselves": {"_count": 1}, "yourself": {"_count": 1}}, "goggle": {"_count": 1, "at": {"_count": 1}}, "loads": {"_count": 2, "of": {"_count": 1}, "more": {"_count": 1}}, "later": {"_count": 23, "then": {"_count": 5}, "on": {"_count": 1}, "Dont": {"_count": 1}, "Fred": {"_count": 1}, "said": {"_count": 2}, "Arthur": {"_count": 1}, "Dobby": {"_count": 1}, "": {"_count": 6}, "Harry": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 2}, "Al": {"_count": 1}}, "really": {"_count": 42, "Harry": {"_count": 1}, "got": {"_count": 1}, "": {"_count": 4}, "are": {"_count": 2}, "blow": {"_count": 1}, "want": {"_count": 7}, "think": {"_count": 15}, "havent": {"_count": 1}, "did": {"_count": 1}, "But": {"_count": 1}, "who": {"_count": 1}, "shouldnt": {"_count": 1}, "needed": {"_count": 1}, "didnt": {"_count": 1}, "ought": {"_count": 1}, "telling": {"_count": 1}, "tell": {"_count": 1}, "have": {"_count": 1}}, "went": {"_count": 8, "to": {"_count": 1}, "looking": {"_count": 1}, "back": {"_count": 1}, "wrong": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}, "after": {"_count": 1}, "into": {"_count": 1}}, "of": {"_count": 16, "all": {"_count": 3}, "course": {"_count": 9}, "the": {"_count": 2}, "ordering": {"_count": 1}, "it": {"_count": 1}}, "shouldnt": {"_count": 14, "": {"_count": 1}, "really": {"_count": 1}, "take": {"_count": 1}, "have": {"_count": 4}, "be": {"_count": 2}, "accuse": {"_count": 1}, "and": {"_count": 2}, "send": {"_count": 1}, "said": {"_count": 1}}, "for": {"_count": 46, "one": {"_count": 1}, "Gryffindor": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 8}, "me": {"_count": 1}, "the": {"_count": 5}, "Christmas": {"_count": 1}, "my": {"_count": 1}, "telling": {"_count": 4}, "him": {"_count": 1}, "ages": {"_count": 2}, "your": {"_count": 3}, "messing": {"_count": 1}, "another": {"_count": 1}, "being": {"_count": 1}, "months": {"_count": 2}, "so": {"_count": 1}, "three": {"_count": 1}, "hours": {"_count": 2}, "information": {"_count": 1}, "saying": {"_count": 1}, "Professor": {"_count": 1}, "taking": {"_count": 1}, "five": {"_count": 1}, "afters": {"_count": 1}, "Harrys": {"_count": 1}, "years": {"_count": 1}}, "wouldnt": {"_count": 35, "know": {"_count": 2}, "open": {"_count": 1}, "tell": {"_count": 2}, "catch": {"_count": 1}, "believe": {"_count": 2}, "want": {"_count": 4}, "it": {"_count": 1}, "mind": {"_count": 3}, "forget": {"_count": 1}, "": {"_count": 1}, "like": {"_count": 2}, "understand": {"_count": 2}, "be": {"_count": 4}, "said": {"_count": 2}, "have": {"_count": 4}, "dance": {"_count": 1}, "need": {"_count": 1}, "say": {"_count": 1}}, "want": {"_count": 98, "it": {"_count": 2}, "me": {"_count": 4}, "": {"_count": 8}, "to": {"_count": 53}, "her": {"_count": 2}, "with": {"_count": 2}, "this": {"_count": 1}, "proof": {"_count": 1}, "your": {"_count": 2}, "that": {"_count": 2}, "the": {"_count": 2}, "food": {"_count": 1}, "isnt": {"_count": 2}, "dinner": {"_count": 1}, "anyway": {"_count": 1}, "Harry": {"_count": 2}, "detention": {"_count": 1}, "sugar": {"_count": 1}, "us": {"_count": 2}, "anything": {"_count": 1}, "someone": {"_count": 1}, "all": {"_count": 1}, "people": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "him": {"_count": 1}, "from": {"_count": 1}}, "seen": {"_count": 17, "a": {"_count": 1}, "anythin": {"_count": 2}, "something": {"_count": 1}, "my": {"_count": 2}, "Ron": {"_count": 2}, "enough": {"_count": 1}, "": {"_count": 2}, "this": {"_count": 1}, "her": {"_count": 1}, "what": {"_count": 1}, "Harry": {"_count": 1}, "Remus": {"_count": 2}}, "I": {"_count": 55, "brought": {"_count": 1}, "wouldnt": {"_count": 2}, "heard": {"_count": 1}, "didnt": {"_count": 2}, "was": {"_count": 6}, "wanted": {"_count": 3}, "want": {"_count": 1}, "knew": {"_count": 3}, "saw": {"_count": 4}, "said": {"_count": 1}, "thought": {"_count": 2}, "would": {"_count": 3}, "watched": {"_count": 1}, "know": {"_count": 1}, "had": {"_count": 1}, "am": {"_count": 2}, "did": {"_count": 2}, "asked": {"_count": 1}, "swear": {"_count": 1}, "have": {"_count": 1}, "urge": {"_count": 1}, "do": {"_count": 2}, "really": {"_count": 1}, "say": {"_count": 1}, "shall": {"_count": 1}, "wont": {"_count": 1}, "make": {"_count": 1}, "take": {"_count": 1}, "dont": {"_count": 4}, "picked": {"_count": 1}, "beg": {"_count": 1}, "can": {"_count": 1}}, "look": {"_count": 30, "": {"_count": 2}, "if": {"_count": 1}, "good": {"_count": 1}, "at": {"_count": 7}, "in": {"_count": 2}, "tonight": {"_count": 1}, "more": {"_count": 1}, "dead": {"_count": 1}, "terrible": {"_count": 2}, "just": {"_count": 1}, "down": {"_count": 1}, "like": {"_count": 1}, "are": {"_count": 1}, "better": {"_count": 1}, "for": {"_count": 1}, "after": {"_count": 2}, "as": {"_count": 1}, "underfed": {"_count": 1}, "much": {"_count": 1}, "a": {"_count": 1}}, "sure": {"_count": 31, "thats": {"_count": 1}, "": {"_count": 14}, "youre": {"_count": 4}, "you": {"_count": 6}, "youve": {"_count": 2}, "about": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}}, "is": {"_count": 13, "it": {"_count": 3}, "to": {"_count": 1}, "highly": {"_count": 1}, "uncanny": {"_count": 1}, "setting": {"_count": 1}, "a": {"_count": 3}, "": {"_count": 1}, "getting": {"_count": 1}, "he": {"_count": 1}}, "Potter": {"_count": 30, "he": {"_count": 4}, "but": {"_count": 1}, "": {"_count": 19}, "will": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "about": {"_count": 1}, "or": {"_count": 1}}, "still": {"_count": 21, "seem": {"_count": 1}, "got": {"_count": 1}, "saw": {"_count": 1}, "there": {"_count": 1}, "show": {"_count": 1}, "think": {"_count": 1}, "not": {"_count": 1}, "doubt": {"_count": 1}, "getting": {"_count": 1}, "havent": {"_count": 1}, "believed": {"_count": 1}, "claim": {"_count": 1}, "interested": {"_count": 1}, "with": {"_count": 1}, "looking": {"_count": 1}, "stick": {"_count": 1}, "We": {"_count": 1}, "didnt": {"_count": 1}, "expect": {"_count": 1}, "here": {"_count": 1}, "arent": {"_count": 1}}, "with": {"_count": 19, "something": {"_count": 1}, "bits": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "reference": {"_count": 1}, "a": {"_count": 3}, "your": {"_count": 1}, "fibs": {"_count": 1}, "all": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}, "Phlegm": {"_count": 1}, "this": {"_count": 1}, "me": {"_count": 2}, "my": {"_count": 1}}, "mind": {"_count": 15, "leaving": {"_count": 1}, "moving": {"_count": 1}, "taking": {"_count": 1}, "telling": {"_count": 1}, "she": {"_count": 1}, "not": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 3}, "just": {"_count": 1}, "running": {"_count": 1}, "": {"_count": 1}, "if": {"_count": 2}}, "Hagrid": {"_count": 10, "": {"_count": 4}, "said": {"_count": 5}, "and": {"_count": 1}}, "take": {"_count": 26, "your": {"_count": 1}, "the": {"_count": 4}, "Mrs": {"_count": 1}, "a": {"_count": 3}, "Sirius": {"_count": 1}, "this": {"_count": 2}, "my": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 5}, "someones": {"_count": 1}, "her": {"_count": 1}, "private": {"_count": 1}, "dittany": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 1}}, "in": {"_count": 101, "Hufflepuff": {"_count": 1}, "the": {"_count": 21}, "your": {"_count": 4}, "he": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 13}, "every": {"_count": 1}, "Slytherin": {"_count": 1}, "Rubeus": {"_count": 1}, "Gryffindor": {"_count": 2}, "private": {"_count": 1}, "Hogsmeade": {"_count": 1}, "Honeydukes": {"_count": 1}, "there": {"_count": 2}, "Divination": {"_count": 1}, "": {"_count": 7}, "turn": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "again": {"_count": 1}, "Diagon": {"_count": 1}, "that": {"_count": 2}, "for": {"_count": 2}, "here": {"_count": 1}, "an": {"_count": 1}, "this": {"_count": 2}, "government": {"_count": 1}, "touch": {"_count": 1}, "like": {"_count": 1}, "bed": {"_count": 1}, "class": {"_count": 1}, "detention": {"_count": 3}, "danger": {"_count": 1}, "my": {"_count": 4}, "school": {"_count": 1}, "around": {"_count": 1}, "half": {"_count": 1}, "great": {"_count": 1}, "such": {"_count": 1}, "spiders": {"_count": 1}, "any": {"_count": 1}, "person": {"_count": 1}, "due": {"_count": 3}, "to": {"_count": 1}, "overnight": {"_count": 1}, "his": {"_count": 1}, "at": {"_count": 1}, "peace": {"_count": 1}}, "may": {"_count": 23, "not": {"_count": 1}, "only": {"_count": 1}, "leave": {"_count": 2}, "visit": {"_count": 1}, "have": {"_count": 4}, "well": {"_count": 1}, "invite": {"_count": 1}, "lose": {"_count": 1}, "do": {"_count": 2}, "go": {"_count": 2}, "be": {"_count": 3}, "stay": {"_count": 2}, "know": {"_count": 1}, "ensure": {"_count": 1}}, "Where": {"_count": 1, "you": {"_count": 1}}, "ought": {"_count": 27, "to": {"_count": 25}, "not": {"_count": 2}}, "on": {"_count": 24, "the": {"_count": 10}, "anytime": {"_count": 1}, "this": {"_count": 1}, "about": {"_count": 3}, "her": {"_count": 2}, "your": {"_count": 3}, "a": {"_count": 1}, "my": {"_count": 1}, "that": {"_count": 1}, "Potterwatch": {"_count": 1}}, "youre": {"_count": 4, "Nearly": {"_count": 1}, "not": {"_count": 2}, "safe": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "trot": {"_count": 2, "": {"_count": 1}, "along": {"_count": 1}}, "asked": {"_count": 4, "politely": {"_count": 1}, "me": {"_count": 2}, "you": {"_count": 1}}, "were": {"_count": 231, "trying": {"_count": 1}, "late": {"_count": 2}, "afraid": {"_count": 1}, "going": {"_count": 11}, "lucky": {"_count": 1}, "up": {"_count": 5}, "expelled": {"_count": 1}, "playing": {"_count": 1}, "the": {"_count": 8}, "doing": {"_count": 5}, "thinking": {"_count": 2}, "about": {"_count": 2}, "egging": {"_count": 1}, "particularly": {"_count": 1}, "any": {"_count": 1}, "supposed": {"_count": 5}, "sure": {"_count": 1}, "sorry": {"_count": 1}, "on": {"_count": 1}, "strong": {"_count": 1}, "at": {"_count": 5}, "looking": {"_count": 4}, "well": {"_count": 1}, "having": {"_count": 1}, "taken": {"_count": 1}, "telling": {"_count": 2}, "right": {"_count": 3}, "back": {"_count": 2}, "dreading": {"_count": 1}, "": {"_count": 3}, "innocent": {"_count": 1}, "said": {"_count": 3}, "always": {"_count": 1}, "a": {"_count": 9}, "now": {"_count": 1}, "in": {"_count": 6}, "here": {"_count": 4}, "harmless": {"_count": 1}, "squeaking": {"_count": 1}, "still": {"_count": 4}, "there": {"_count": 6}, "knocked": {"_count": 1}, "only": {"_count": 2}, "helping": {"_count": 1}, "not": {"_count": 3}, "coming": {"_count": 2}, "someone": {"_count": 1}, "discovered": {"_count": 1}, "alive": {"_count": 2}, "hungry": {"_count": 1}, "clearly": {"_count": 1}, "born": {"_count": 3}, "staying": {"_count": 1}, "with": {"_count": 5}, "tempted": {"_count": 1}, "competing": {"_count": 1}, "bringing": {"_count": 1}, "more": {"_count": 2}, "brilliant": {"_count": 1}, "both": {"_count": 1}, "like": {"_count": 1}, "thrown": {"_count": 1}, "showing": {"_count": 1}, "probably": {"_count": 1}, "undoubtedly": {"_count": 1}, "too": {"_count": 2}, "caught": {"_count": 1}, "incredible": {"_count": 2}, "blackmailing": {"_count": 1}, "you": {"_count": 1}, "intelligent": {"_count": 1}, "stuck": {"_count": 1}, "safest": {"_count": 1}, "collapsing": {"_count": 1}, "suggesting": {"_count": 1}, "tried": {"_count": 1}, "then": {"_count": 1}, "ordering": {"_count": 1}, "unsuccessful": {"_count": 1}, "one": {"_count": 1}, "just": {"_count": 3}, "positioned": {"_count": 1}, "\u2018on": {"_count": 1}, "skiing": {"_count": 1}, "wearing": {"_count": 2}, "inside": {"_count": 1}, "You": {"_count": 1}, "planning": {"_count": 1}, "bored": {"_count": 1}, "out": {"_count": 1}, "muttering": {"_count": 1}, "when": {"_count": 1}, "eleven": {"_count": 1}, "exceptional": {"_count": 1}, "happy": {"_count": 1}, "craving": {"_count": 1}, "once": {"_count": 1}, "facing": {"_count": 1}, "to": {"_count": 2}, "better": {"_count": 1}, "unstable": {"_count": 1}, "magnificent": {"_count": 1}, "sitting": {"_count": 1}, "being": {"_count": 3}, "quite": {"_count": 1}, "prepared": {"_count": 1}, "blamed": {"_count": 1}, "wrong": {"_count": 2}, "unconscious": {"_count": 1}, "getting": {"_count": 2}, "eighteen": {"_count": 1}, "able": {"_count": 1}, "hurt": {"_count": 1}, "never": {"_count": 1}, "saying": {"_count": 1}, "all": {"_count": 1}, "hunting": {"_count": 1}, "very": {"_count": 1}, "ambushed": {"_count": 1}, "seeing": {"_count": 1}, "close": {"_count": 1}, "singled": {"_count": 1}, "Ginevra": {"_count": 1}, "goodness": {"_count": 1}, "even": {"_count": 1}, "told": {"_count": 1}, "an": {"_count": 1}, "disappointed": {"_count": 1}, "dead": {"_count": 1}, "around": {"_count": 1}, "new": {"_count": 1}, "prat": {"_count": 1}, "so": {"_count": 1}, "really": {"_count": 1}, "The": {"_count": 1}, "threatening": {"_count": 1}, "that": {"_count": 1}, "named": {"_count": 1}}, "met": {"_count": 6, "him": {"_count": 3}, "Tom": {"_count": 1}, "challenges": {"_count": 1}, "the": {"_count": 1}}, "invisible": {"_count": 1, "grab": {"_count": 1}}, "like": {"_count": 57, "to": {"_count": 6}, "hundreds": {"_count": 1}, "came": {"_count": 1}, "longs": {"_count": 1}, "said": {"_count": 5}, "Harry": {"_count": 2}, "": {"_count": 7}, "a": {"_count": 3}, "Care": {"_count": 1}, "about": {"_count": 1}, "it": {"_count": 4}, "just": {"_count": 1}, "its": {"_count": 1}, "us": {"_count": 1}, "my": {"_count": 2}, "the": {"_count": 3}, "question": {"_count": 1}, "when": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 3}, "cooking": {"_count": 1}, "and": {"_count": 2}, "your": {"_count": 1}, "Ive": {"_count": 1}, "they": {"_count": 1}, "Elphias": {"_count": 1}, "having": {"_count": 1}, "that": {"_count": 1}, "bowtruckles": {"_count": 1}}, "arent": {"_count": 9, "as": {"_count": 1}, "I": {"_count": 1}, "going": {"_count": 1}, "prepared": {"_count": 1}, "sticking": {"_count": 1}, "even": {"_count": 1}, "supposed": {"_count": 1}, "wanted": {"_count": 1}, "dispensable": {"_count": 1}}, "try": {"_count": 11, "her": {"_count": 1}, "and": {"_count": 2}, "it": {"_count": 1}, "Mr": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}, "hooking": {"_count": 1}, "Meteolojinx": {"_count": 1}, "to": {"_count": 1}}, "from": {"_count": 20, "most": {"_count": 1}, "ever": {"_count": 1}, "the": {"_count": 5}, "me": {"_count": 2}, "their": {"_count": 1}, "winning": {"_count": 1}, "my": {"_count": 1}, "doing": {"_count": 1}, "below": {"_count": 1}, "Albus": {"_count": 1}, "here": {"_count": 1}, "possession": {"_count": 1}, "your": {"_count": 1}, "whatevers": {"_count": 1}, "hurting": {"_count": 1}}, "added": {"_count": 1, "the": {"_count": 1}}, "what": {"_count": 33, "was": {"_count": 3}, "the": {"_count": 2}, "that": {"_count": 1}, "kind": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "illegal": {"_count": 1}, "hes": {"_count": 2}, "it": {"_count": 2}, "Dobby": {"_count": 2}, "Cedric": {"_count": 1}, "youre": {"_count": 1}, "you": {"_count": 3}, "wonderful": {"_count": 1}, "now": {"_count": 1}, "Voldemort": {"_count": 1}, "twenty": {"_count": 1}, "I": {"_count": 2}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}, "to": {"_count": 2}, "were": {"_count": 1}}, "couldnt": {"_count": 18, "learn": {"_count": 1}, "afford": {"_count": 1}, "have": {"_count": 3}, "use": {"_count": 2}, "wait": {"_count": 1}, "kill": {"_count": 1}, "really": {"_count": 1}, "said": {"_count": 1}, "Ron": {"_count": 1}, "move": {"_count": 1}, "get": {"_count": 1}, "be": {"_count": 1}, "come": {"_count": 1}, "Apparate": {"_count": 1}, "make": {"_count": 1}}, "if": {"_count": 25, "theres": {"_count": 3}, "you": {"_count": 9}, "youve": {"_count": 1}, "someone": {"_count": 1}, "I": {"_count": 3}, "my": {"_count": 1}, "your": {"_count": 1}, "yeh": {"_count": 1}, "it": {"_count": 2}, "were": {"_count": 1}, "there": {"_count": 1}, "all": {"_count": 1}}, "hold": {"_count": 4, "it": {"_count": 1}, "him": {"_count": 1}, "Cornelius": {"_count": 1}, "in": {"_count": 1}}, "flew": {"_count": 1, "too": {"_count": 1}}, "kick": {"_count": 1, "off": {"_count": 1}}, "off": {"_count": 17, "that": {"_count": 2}, "the": {"_count": 2}, "homework": {"_count": 1}, "as": {"_count": 1}, "all": {"_count": 1}, "buying": {"_count": 1}, "on": {"_count": 3}, "he": {"_count": 1}, "for": {"_count": 1}, "your": {"_count": 1}, "my": {"_count": 1}, "using": {"_count": 1}, "when": {"_count": 1}}, "might": {"_count": 55, "have": {"_count": 9}, "not": {"_count": 4}, "like": {"_count": 4}, "well": {"_count": 1}, "think": {"_count": 2}, "find": {"_count": 4}, "hear": {"_count": 1}, "force": {"_count": 1}, "want": {"_count": 5}, "be": {"_count": 10}, "even": {"_count": 2}, "turn": {"_count": 1}, "just": {"_count": 2}, "try": {"_count": 1}, "look": {"_count": 1}, "tell": {"_count": 1}, "say": {"_count": 1}, "as": {"_count": 1}, "consider": {"_count": 1}, "take": {"_count": 1}, "bury": {"_count": 1}, "seize": {"_count": 1}}, "serious": {"_count": 3, "Professor": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "getting": {"_count": 8, "the": {"_count": 1}, "through": {"_count": 1}, "on": {"_count": 2}, "all": {"_count": 1}, "out": {"_count": 2}, "together": {"_count": 1}}, "die": {"_count": 7, "said": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "too": {"_count": 1}, "during": {"_count": 1}, "": {"_count": 1}, "anyway": {"_count": 1}}, "knows": {"_count": 1, "enough": {"_count": 1}}, "mustnt": {"_count": 3, "go": {"_count": 2}, "": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "only": {"_count": 8, "care": {"_count": 1}, "so": {"_count": 1}, "witnessed": {"_count": 1}, "just": {"_count": 1}, "split": {"_count": 1}, "the": {"_count": 1}, "laid": {"_count": 1}, "called": {"_count": 1}}, "just": {"_count": 46, "remember": {"_count": 1}, "see": {"_count": 2}, "in": {"_count": 1}, "let": {"_count": 3}, "need": {"_count": 2}, "drop": {"_count": 1}, "been": {"_count": 1}, "told": {"_count": 2}, "said": {"_count": 3}, "did": {"_count": 1}, "walked": {"_count": 2}, "keep": {"_count": 2}, "go": {"_count": 1}, "set": {"_count": 1}, "dont": {"_count": 2}, "tell": {"_count": 2}, "grab": {"_count": 1}, "want": {"_count": 1}, "take": {"_count": 1}, "because": {"_count": 1}, "talked": {"_count": 1}, "do": {"_count": 1}, "crane": {"_count": 1}, "turn": {"_count": 1}, "buck": {"_count": 1}, "decided": {"_count": 1}, "needed": {"_count": 1}, "think": {"_count": 1}, "had": {"_count": 1}, "read": {"_count": 1}, "learned": {"_count": 1}, "say": {"_count": 2}, "move": {"_count": 1}, "saved": {"_count": 1}}, "she": {"_count": 12, "said": {"_count": 7}, "went": {"_count": 1}, "added": {"_count": 3}, "replied": {"_count": 1}}, "found": {"_count": 14, "me": {"_count": 2}, "out": {"_count": 7}, "another": {"_count": 1}, "them": {"_count": 1}, "yourself": {"_count": 1}, "Sirius": {"_count": 1}, "": {"_count": 1}}, "Hermione": {"_count": 16, "gasped": {"_count": 1}, "said": {"_count": 4}, "you": {"_count": 1}, "listen": {"_count": 1}, "worked": {"_count": 1}, "": {"_count": 6}, "whispered": {"_count": 1}, "called": {"_count": 1}}, "Filch": {"_count": 2, "knew": {"_count": 1}, "": {"_count": 1}}, "didnt": {"_count": 56, "say": {"_count": 1}, "expect": {"_count": 1}, "answer": {"_count": 1}, "do": {"_count": 3}, "read": {"_count": 1}, "come": {"_count": 3}, "dare": {"_count": 1}, "have": {"_count": 3}, "get": {"_count": 4}, "know": {"_count": 1}, "see": {"_count": 3}, "hand": {"_count": 1}, "you": {"_count": 1}, "use": {"_count": 1}, "tell": {"_count": 3}, "fall": {"_count": 1}, "want": {"_count": 2}, "spot": {"_count": 1}, "volunteer": {"_count": 1}, "happen": {"_count": 1}, "take": {"_count": 1}, "waste": {"_count": 1}, "believe": {"_count": 2}, "he": {"_count": 1}, "said": {"_count": 2}, "give": {"_count": 1}, "she": {"_count": 1}, "need": {"_count": 2}, "hurt": {"_count": 1}, "disappear": {"_count": 1}, "hear": {"_count": 2}, "return": {"_count": 1}, "fly": {"_count": 1}, "notice": {"_count": 1}, "": {"_count": 1}, "really": {"_count": 1}, "approve": {"_count": 1}, "bother": {"_count": 1}}, "wanted": {"_count": 22, "to": {"_count": 17}, "ttto": {"_count": 1}, "me": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "Im": {"_count": 1}}, "tonight": {"_count": 4, "on": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "the": {"_count": 49, "rules": {"_count": 1}, "mirror": {"_count": 1}, "right": {"_count": 1}, "effort": {"_count": 1}, "seriousness": {"_count": 1}, "bug": {"_count": 1}, "thumbs": {"_count": 1}, "generous": {"_count": 1}, "thing": {"_count": 1}, "very": {"_count": 2}, "night": {"_count": 1}, "basic": {"_count": 1}, "Invisibility": {"_count": 1}, "circumstances": {"_count": 1}, "same": {"_count": 1}, "official": {"_count": 1}, "Firebolt": {"_count": 1}, "final": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 2}, "letters": {"_count": 1}, "cup": {"_count": 1}, "dragons": {"_count": 1}, "Order": {"_count": 1}, "grades": {"_count": 1}, "moment": {"_count": 2}, "names": {"_count": 1}, "truth": {"_count": 2}, "Im": {"_count": 1}, "chance": {"_count": 1}, "place": {"_count": 2}, "possibility": {"_count": 1}, "scar": {"_count": 1}, "whole": {"_count": 1}, "first": {"_count": 1}, "stupid": {"_count": 1}, "imprint": {"_count": 1}, "person": {"_count": 1}, "Boy": {"_count": 1}, "girl": {"_count": 1}, "horn": {"_count": 1}, "SecretKeeper": {"_count": 1}, "wouldbe": {"_count": 1}, "boy": {"_count": 1}}, "out": {"_count": 27, "with": {"_count": 1}, "of": {"_count": 16}, "for": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 3}, "here": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "turn": {"_count": 4, "out": {"_count": 1}, "up": {"_count": 1}, "seventeen": {"_count": 2}}, "follow": {"_count": 4, "my": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "him": {"_count": 1}}, "smell": {"_count": 1, "something": {"_count": 1}}, "stick": {"_count": 3, "a": {"_count": 1}, "up": {"_count": 1}, "close": {"_count": 1}}, "thinking": {"_count": 2, "of": {"_count": 1}, "coming": {"_count": 1}}, "foolish": {"_count": 2, "girl": {"_count": 1}, "boy": {"_count": 1}}, "we": {"_count": 10, "did": {"_count": 1}, "were": {"_count": 1}, "would": {"_count": 1}, "really": {"_count": 1}, "still": {"_count": 1}, "havent": {"_count": 1}, "are": {"_count": 1}, "had": {"_count": 1}, "should": {"_count": 1}, "cant": {"_count": 1}}, "learn": {"_count": 5, "": {"_count": 1}, "much": {"_count": 1}, "how": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 1}}, "than": {"_count": 4, "me": {"_count": 1}, "this": {"_count": 1}, "PrettyBoy": {"_count": 1}, "I": {"_count": 1}}, "need": {"_count": 53, "your": {"_count": 1}, "is": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 19}, "help": {"_count": 3}, "a": {"_count": 2}, "Harry": {"_count": 1}, "Mr": {"_count": 1}, "not": {"_count": 1}, "more": {"_count": 2}, "me": {"_count": 4}, "it": {"_count": 2}, "all": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 2}, "three": {"_count": 1}, "feeding": {"_count": 1}, "he": {"_count": 1}, "leaves": {"_count": 1}, "them": {"_count": 1}, "at": {"_count": 1}, "us": {"_count": 1}, "worry": {"_count": 1}, "one": {"_count": 1}, "in": {"_count": 1}, "like": {"_count": 1}}, "catch": {"_count": 3, "sight": {"_count": 1}, "that": {"_count": 1}, "up": {"_count": 1}}, "attacked": {"_count": 3, "before": {"_count": 1}, "me": {"_count": 1}, "Moody": {"_count": 1}}, "talking": {"_count": 30, "about": {"_count": 27}, "to": {"_count": 2}, "": {"_count": 1}}, "All": {"_count": 1, "right": {"_count": 1}}, "forget": {"_count": 3, "what": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}}, "trying": {"_count": 7, "to": {"_count": 7}}, "mentioned": {"_count": 2, "Nicolas": {"_count": 1}, "Grindelwald": {"_count": 1}}, "needed": {"_count": 3, "a": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}}, "looking": {"_count": 2, "for": {"_count": 1}, "so": {"_count": 1}}, "find": {"_count": 25, "anything": {"_count": 1}, "me": {"_count": 2}, "amusing": {"_count": 1}, "out": {"_count": 8}, "a": {"_count": 1}, "Harrys": {"_count": 1}, "him": {"_count": 1}, "Hogwarts": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 2}, "everything": {"_count": 1}, "one": {"_count": 1}, "something": {"_count": 1}, "us": {"_count": 2}, "this": {"_count": 1}}, "expect": {"_count": 11, "turnips": {"_count": 1}, "to": {"_count": 6}, "me": {"_count": 2}, "him": {"_count": 1}, "that": {"_count": 1}}, "wearing": {"_count": 1, "yours": {"_count": 1}}, "Professor": {"_count": 9, "if": {"_count": 1}, "Sprout": {"_count": 1}, "": {"_count": 2}, "Karkaroff": {"_count": 1}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}, "McGonagall": {"_count": 1}, "Snape": {"_count": 1}}, "eating": {"_count": 2, "anything": {"_count": 1}, "the": {"_count": 1}}, "knock": {"_count": 1, "something": {"_count": 1}}, "sir": {"_count": 11, "": {"_count": 5}, "surely": {"_count": 1}, "never": {"_count": 1}, "Her": {"_count": 1}, "anything": {"_count": 1}, "said": {"_count": 1}, "very": {"_count": 1}}, "ever": {"_count": 38, "do": {"_count": 3}, "seen": {"_count": 6}, "need": {"_count": 1}, "heard": {"_count": 3}, "hear": {"_count": 2}, "wonder": {"_count": 1}, "returned": {"_count": 1}, "been": {"_count": 3}, "bothered": {"_count": 1}, "Hem": {"_count": 1}, "get": {"_count": 1}, "": {"_count": 1}, "wondered": {"_count": 1}, "going": {"_count": 1}, "taken": {"_count": 1}, "let": {"_count": 2}, "since": {"_count": 2}, "find": {"_count": 1}, "discuss": {"_count": 1}, "defeat": {"_count": 1}, "even": {"_count": 1}, "done": {"_count": 1}, "visited": {"_count": 1}, "come": {"_count": 1}}, "put": {"_count": 16, "that": {"_count": 2}, "another": {"_count": 1}, "your": {"_count": 1}, "some": {"_count": 1}, "in": {"_count": 2}, "Bulbadox": {"_count": 1}, "them": {"_count": 2}, "it": {"_count": 2}, "the": {"_count": 1}, "on": {"_count": 2}, "myself": {"_count": 1}}, "something": {"_count": 21, "": {"_count": 9}, "really": {"_count": 1}, "Ginny": {"_count": 1}, "else": {"_count": 3}, "to": {"_count": 2}, "foreign": {"_count": 1}, "if": {"_count": 1}, "or": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}}, "mad": {"_count": 5, "said": {"_count": 1}, "": {"_count": 3}, "old": {"_count": 1}}, "collect": {"_count": 1, "them": {"_count": 1}}, "Weasley": {"_count": 2, "": {"_count": 2}}, "Malfoy": {"_count": 5, "he": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "You": {"_count": 3, "know": {"_count": 1}, "dont": {"_count": 1}, "wont": {"_count": 1}}, "been": {"_count": 52, "": {"_count": 13}, "telling": {"_count": 2}, "stopping": {"_count": 1}, "answering": {"_count": 1}, "feeding": {"_count": 1}, "setting": {"_count": 1}, "beaten": {"_count": 1}, "imagining": {"_count": 1}, "listening": {"_count": 2}, "Barty": {"_count": 1}, "one": {"_count": 1}, "here": {"_count": 1}, "spying": {"_count": 2}, "\u2018Big": {"_count": 1}, "beating": {"_count": 1}, "lying": {"_count": 1}, "expelled": {"_count": 1}, "furious": {"_count": 1}, "attacked": {"_count": 1}, "getting": {"_count": 1}, "doing": {"_count": 5}, "teaching": {"_count": 2}, "taking": {"_count": 1}, "visiting": {"_count": 1}, "practicing": {"_count": 1}, "communicating": {"_count": 2}, "keeping": {"_count": 1}, "up": {"_count": 2}, "then": {"_count": 1}, "complaining": {"_count": 1}}, "studying": {"_count": 1, "for": {"_count": 1}}, "already": {"_count": 10, "know": {"_count": 8}, "knew": {"_count": 1}, "were": {"_count": 1}}, "crazy": {"_count": 2, "": {"_count": 2}}, "reciting": {"_count": 1, "the": {"_count": 1}}, "lot": {"_count": 24, "up": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 2}, "you": {"_count": 2}, "": {"_count": 5}, "got": {"_count": 1}, "sneaking": {"_count": 1}, "ave": {"_count": 1}, "had": {"_count": 1}, "can": {"_count": 1}, "disappeared": {"_count": 1}, "who": {"_count": 1}, "play": {"_count": 1}, "hes": {"_count": 1}, "arent": {"_count": 1}, "to": {"_count": 1}, "are": {"_count": 1}, "traffick": {"_count": 1}}, "as": {"_count": 28, "a": {"_count": 12}, "Seeker": {"_count": 1}, "soon": {"_count": 1}, "the": {"_count": 1}, "far": {"_count": 1}, "though": {"_count": 1}, "some": {"_count": 1}, "I": {"_count": 2}, "he": {"_count": 2}, "his": {"_count": 2}, "well": {"_count": 2}, "friends": {"_count": 1}, "bait": {"_count": 1}}, "live": {"_count": 7, "in": {"_count": 1}, "with": {"_count": 3}, "here": {"_count": 2}, "Severus": {"_count": 1}}, "eh": {"_count": 2, "": {"_count": 2}}, "Ronan": {"_count": 1, "said": {"_count": 1}}, "stay": {"_count": 10, "with": {"_count": 1}, "at": {"_count": 2}, "alive": {"_count": 1}, "inside": {"_count": 1}, "": {"_count": 1}, "here": {"_count": 2}, "there": {"_count": 1}, "in": {"_count": 1}}, "ride": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 4, "shame": {"_count": 1}, "lies": {"_count": 1}, "longer": {"_count": 1}, "": {"_count": 1}}, "realize": {"_count": 10, "who": {"_count": 1}, "how": {"_count": 1}, "that": {"_count": 2}, "were": {"_count": 1}, "this": {"_count": 1}, "havent": {"_count": 1}, "hes": {"_count": 1}, "": {"_count": 2}}, "saved": {"_count": 8, "me": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 1}, "Pettigrews": {"_count": 1}, "the": {"_count": 1}, "Arthur": {"_count": 1}, "my": {"_count": 1}}, "alive": {"_count": 5, "even": {"_count": 1}, "Harry": {"_count": 1}, "until": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "back": {"_count": 22, "to": {"_count": 3}, "through": {"_count": 1}, "here": {"_count": 4}, "there": {"_count": 2}, "next": {"_count": 1}, "this": {"_count": 1}, "down": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 2}, "again": {"_count": 1}, "with": {"_count": 1}, "okay": {"_count": 1}, "from": {"_count": 1}}, "Firenze": {"_count": 1, "murmured": {"_count": 1}}, "won": {"_count": 4, "Norbert": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "talk": {"_count": 8, "to": {"_count": 4}, "he": {"_count": 1}, "ter": {"_count": 1}, "about": {"_count": 2}}, "mention": {"_count": 7, "Hogwarts": {"_count": 1}, "it": {"_count": 6}}, "three": {"_count": 23, "doing": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 4}, "said": {"_count": 1}, "Mr": {"_count": 1}, "years": {"_count": 1}, "fancy": {"_count": 1}, "get": {"_count": 1}, "she": {"_count": 1}, "hadnt": {"_count": 1}, "again": {"_count": 1}, "fer": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "whats": {"_count": 1}, "have": {"_count": 2}, "included": {"_count": 1}, "I": {"_count": 1}, "arent": {"_count": 1}}, "understand": {"_count": 28, "": {"_count": 9}, "Longbottom": {"_count": 1}, "me": {"_count": 7}, "when": {"_count": 1}, "Harry": {"_count": 1}, "dont": {"_count": 1}, "what": {"_count": 2}, "how": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}, "Quidditch": {"_count": 1}, "popkin": {"_count": 1}, "now": {"_count": 1}}, "ghoulie": {"_count": 1, "or": {"_count": 1}}, "both": {"_count": 8, "": {"_count": 3}, "that": {"_count": 1}, "go": {"_count": 1}, "up": {"_count": 1}, "later": {"_count": 1}, "feeling": {"_count": 1}}, "pay": {"_count": 5, "attention": {"_count": 4}, "for": {"_count": 1}}, "free": {"_count": 3, "to": {"_count": 2}, "rein": {"_count": 1}}, "reckons": {"_count": 1, "next": {"_count": 1}}, "while": {"_count": 5, "safety": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "wearing": {"_count": 1}, "he": {"_count": 1}}, "whichever": {"_count": 1, "you": {"_count": 1}}, "move": {"_count": 2, "ahead": {"_count": 1}, "please": {"_count": 1}}, "wish": {"_count": 13, "to": {"_count": 7}, "Lavender": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 2}}, "these": {"_count": 3, "clues": {"_count": 1}, "days": {"_count": 2}}, "taste": {"_count": 2, "them": {"_count": 1}, "it": {"_count": 1}}, "dead": {"_count": 3, "": {"_count": 2}, "too": {"_count": 1}}, "give": {"_count": 13, "me": {"_count": 4}, "her": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 3}, "them": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "hate": {"_count": 3, "to": {"_count": 1}, "those": {"_count": 1}, "Trelawney": {"_count": 1}}, "leaves": {"_count": 1, "its": {"_count": 1}}, "make": {"_count": 12, "a": {"_count": 2}, "of": {"_count": 2}, "it": {"_count": 1}, "sure": {"_count": 1}, "such": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 1}, "that": {"_count": 1}, "another": {"_count": 1}}, "your": {"_count": 6, "fathers": {"_count": 1}, "saintly": {"_count": 1}, "gold": {"_count": 1}, "family": {"_count": 1}, "question": {"_count": 1}, "liberty": {"_count": 1}}, "missed": {"_count": 2, "the": {"_count": 1}, "something": {"_count": 1}}, "hadnt": {"_count": 19, "told": {"_count": 2}, "written": {"_count": 1}, "found": {"_count": 1}, "had": {"_count": 1}, "entered": {"_count": 1}, "worked": {"_count": 1}, "explained": {"_count": 1}, "given": {"_count": 1}, "noticed": {"_count": 5}, "left": {"_count": 1}, "put": {"_count": 1}, "been": {"_count": 2}, "come": {"_count": 1}}, "Ill": {"_count": 4, "send": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}, "come": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 2}, "yeah": {"_count": 1}}, "son": {"_count": 3, "": {"_count": 3}}, "Petunia": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 8, "to": {"_count": 1}, "this": {"_count": 1}, "these": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "with": {"_count": 2}}, "bought": {"_count": 1, "your": {"_count": 1}}, "boy": {"_count": 6, "": {"_count": 4}, "but": {"_count": 1}, "I": {"_count": 1}}, "even": {"_count": 6, "got": {"_count": 1}, "come": {"_count": 1}, "if": {"_count": 1}, "Slughorn": {"_count": 1}, "understand": {"_count": 1}, "tell": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 2}}, "Jiggery": {"_count": 1, "pokeryV": {"_count": 1}}, "or": {"_count": 13, "anything": {"_count": 1}, "not": {"_count": 2}, "prevent": {"_count": 1}, "I": {"_count": 2}, "your": {"_count": 1}, "Dumbledore": {"_count": 1}, "else": {"_count": 1}, "are": {"_count": 1}, "theyll": {"_count": 1}, "anyone": {"_count": 1}, "this": {"_count": 1}}, "shut": {"_count": 6, "your": {"_count": 2}, "that": {"_count": 1}, "up": {"_count": 3}}, "warning": {"_count": 2, "me": {"_count": 1}, "that": {"_count": 1}}, "What": {"_count": 3, "the": {"_count": 1}, "dyou": {"_count": 1}, "do": {"_count": 1}}, "home": {"_count": 3, "with": {"_count": 1}, "": {"_count": 2}}, "grab": {"_count": 2, "anything": {"_count": 1}, "hold": {"_count": 1}}, "whos": {"_count": 2, "supposed": {"_count": 1}, "stationed": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "coming": {"_count": 9, "back": {"_count": 1}, "into": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 1}, "here": {"_count": 1}, "Im": {"_count": 1}, "out": {"_count": 1}}, "anyway": {"_count": 9, "said": {"_count": 1}, "": {"_count": 5}, "whats": {"_count": 1}, "Malfoy": {"_count": 1}, "he": {"_count": 1}}, "any": {"_count": 11, "idea": {"_count": 6}, "theory": {"_count": 1}, "longer": {"_count": 1}, "whisper": {"_count": 1}, "favors": {"_count": 1}, "of": {"_count": 1}}, "dear": {"_count": 6, "she": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "boy": {"_count": 1}}, "ourselves": {"_count": 1, "if": {"_count": 1}}, "She": {"_count": 2, "flicked": {"_count": 1}, "did": {"_count": 1}}, "made": {"_count": 14, "sure": {"_count": 2}, "": {"_count": 1}, "a": {"_count": 4}, "one": {"_count": 1}, "with": {"_count": 1}, "us": {"_count": 1}, "your": {"_count": 1}, "me": {"_count": 1}, "it": {"_count": 2}}, "Rons": {"_count": 1, "told": {"_count": 1}}, "my": {"_count": 16, "bedroom": {"_count": 1}, "dear": {"_count": 5}, "famous": {"_count": 1}, "suspicions": {"_count": 1}, "views": {"_count": 2}, "notes": {"_count": 1}, "poor": {"_count": 1}, "Lord": {"_count": 1}, "wand": {"_count": 1}, "family": {"_count": 1}, "brave": {"_count": 1}}, "starting": {"_count": 1, "at": {"_count": 1}}, "used": {"_count": 2, "a": {"_count": 1}, "on": {"_count": 1}}, "did": {"_count": 59, "twelve": {"_count": 1}, "this": {"_count": 2}, "fly": {"_count": 1}, "you": {"_count": 2}, "in": {"_count": 2}, "flag": {"_count": 1}, "": {"_count": 8}, "really": {"_count": 1}, "your": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 3}, "see": {"_count": 1}, "Dobby": {"_count": 1}, "not": {"_count": 10}, "promise": {"_count": 1}, "Harry": {"_count": 2}, "Mark": {"_count": 1}, "Potter": {"_count": 1}, "was": {"_count": 1}, "witness": {"_count": 1}, "exactly": {"_count": 1}, "I": {"_count": 2}, "said": {"_count": 3}, "when": {"_count": 1}, "by": {"_count": 1}, "magic": {"_count": 1}, "flushing": {"_count": 1}, "what": {"_count": 2}, "he": {"_count": 1}, "for": {"_count": 1}, "do": {"_count": 1}, "last": {"_count": 1}, "to": {"_count": 1}}, "loved": {"_count": 2, "that": {"_count": 1}, "Lily": {"_count": 1}}, "overtime": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "Ill": {"_count": 1}}, "keep": {"_count": 14, "Weasley": {"_count": 1}, "it": {"_count": 2}, "missing": {"_count": 1}, "banging": {"_count": 1}, "close": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "sending": {"_count": 1}, "groping": {"_count": 1}, "talking": {"_count": 1}, "your": {"_count": 1}, "looking": {"_count": 1}}, "Pulling": {"_count": 1, "himself": {"_count": 1}}, "vanishing": {"_count": 1, "": {"_count": 1}}, "fly": {"_count": 2, "it": {"_count": 1}, "out": {"_count": 1}}, "okay": {"_count": 17, "": {"_count": 14}, "Hagrid": {"_count": 2}, "Harry": {"_count": 1}}, "believe": {"_count": 8, "our": {"_count": 2}, "him": {"_count": 1}, "us": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 1}, "these": {"_count": 1}, "that": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "send": {"_count": 2, "us": {"_count": 1}, "him": {"_count": 1}}, "expected": {"_count": 3, "Ron": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}}, "Dont": {"_count": 1, "tell": {"_count": 1}}, "running": {"_count": 2, "away": {"_count": 1}, "along": {"_count": 1}}, "work": {"_count": 3, "": {"_count": 1}, "extrahard": {"_count": 1}, "with": {"_count": 1}}, "read": {"_count": 7, "his": {"_count": 1}, "": {"_count": 2}, "them": {"_count": 1}, "this": {"_count": 2}, "it": {"_count": 1}}, "outlined": {"_count": 1, "all": {"_count": 1}}, "survived": {"_count": 3, "when": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "sign": {"_count": 5, "it": {"_count": 2}, "my": {"_count": 1}, "here": {"_count": 1}, "youre": {"_count": 1}}, "away": {"_count": 5, "from": {"_count": 2}, "": {"_count": 2}, "before": {"_count": 1}}, "remembered": {"_count": 1, "that": {"_count": 1}}, "against": {"_count": 3, "the": {"_count": 1}, "Voldemorts": {"_count": 1}, "Horace": {"_count": 1}}, "whilst": {"_count": 1, "I": {"_count": 1}}, "remain": {"_count": 4, "calm": {"_count": 1}, "Sibyll": {"_count": 1}, "": {"_count": 1}, "pure": {"_count": 1}}, "Lucius": {"_count": 3, "Malfoys": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 1}}, "playing": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "filthy": {"_count": 4, "little": {"_count": 3}, "pilfering": {"_count": 1}}, "mighta": {"_count": 1, "bin": {"_count": 1}}, "particularly": {"_count": 2, "": {"_count": 1}, "enjoyed": {"_count": 1}}, "dripping": {"_count": 1, "mud": {"_count": 1}}, "Kwikspell": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 18, "the": {"_count": 3}, "your": {"_count": 1}, "": {"_count": 2}, "Snape": {"_count": 1}, "thirty": {"_count": 1}, "last": {"_count": 1}, "it": {"_count": 2}, "being": {"_count": 1}, "mine": {"_count": 1}, "Harry": {"_count": 1}, "Hogwarts": {"_count": 2}, "keeping": {"_count": 1}, "that": {"_count": 1}}, "fed": {"_count": 1, "a": {"_count": 1}}, "Look": {"_count": 1, "food": {"_count": 1}}, "walk": {"_count": 3, "through": {"_count": 1}, "out": {"_count": 1}, "away": {"_count": 1}}, "Myrtle": {"_count": 2, "": {"_count": 2}}, "Gilderoy": {"_count": 1, "said": {"_count": 1}}, "speak": {"_count": 4, "is": {"_count": 1}, "to": {"_count": 2}, "of": {"_count": 1}}, "such": {"_count": 3, "a": {"_count": 3}}, "paid": {"_count": 1, "me": {"_count": 1}}, "Ron": {"_count": 21, "": {"_count": 7}, "and": {"_count": 4}, "Hermione": {"_count": 2}, "Him": {"_count": 1}, "broke": {"_count": 1}, "told": {"_count": 1}, "snapped": {"_count": 1}, "that": {"_count": 1}, "added": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}}, "whispering": {"_count": 2, "": {"_count": 1}, "behind": {"_count": 1}}, "feel": {"_count": 25, "like": {"_count": 2}, "the": {"_count": 2}, "brave": {"_count": 1}, "safe": {"_count": 1}, "how": {"_count": 1}, "all": {"_count": 2}, "to": {"_count": 1}, "about": {"_count": 3}, "now": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 1}, "special": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 1}, "after": {"_count": 1}, "": {"_count": 1}, "Georgie": {"_count": 1}, "a": {"_count": 1}, "up": {"_count": 1}, "it": {"_count": 1}}, "into": {"_count": 13, "somebody": {"_count": 1}, "trouble": {"_count": 1}, "the": {"_count": 2}, "an": {"_count": 1}, "someone": {"_count": 1}, "Houses": {"_count": 1}, "harm": {"_count": 1}, "oblivion": {"_count": 1}, "it": {"_count": 1}, "my": {"_count": 1}, "one": {"_count": 1}, "your": {"_count": 1}}, "trapped": {"_count": 1, "that": {"_count": 1}}, "when": {"_count": 23, "that": {"_count": 1}, "you": {"_count": 6}, "I": {"_count": 3}, "he": {"_count": 3}, "weve": {"_count": 1}, "we": {"_count": 1}, "its": {"_count": 1}, "they": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 1}, "were": {"_count": 1}, "she": {"_count": 1}, "hell": {"_count": 1}}, "escort": {"_count": 1, "him": {"_count": 1}}, "heed": {"_count": 1, "Dobby": {"_count": 1}}, "triumphed": {"_count": 1, "over": {"_count": 1}}, "earned": {"_count": 2, "fifty": {"_count": 1}, "it": {"_count": 1}}, "reckon": {"_count": 9, "Slytherins": {"_count": 1}, "we": {"_count": 2}, "Ludo": {"_count": 1}, "hes": {"_count": 1}, "Katie": {"_count": 1}, "hed": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}}, "youngsters": {"_count": 1, "to": {"_count": 1}}, "Miss": {"_count": 5, "Brown": {"_count": 1}, "Granger": {"_count": 1}, "him": {"_count": 1}, "Johnson": {"_count": 1}, "Parkinson": {"_count": 1}}, "it": {"_count": 6, "would": {"_count": 2}, "had": {"_count": 1}, "will": {"_count": 2}, "was": {"_count": 1}}, "A": {"_count": 1, "bad": {"_count": 1}}, "show": {"_count": 9, "me": {"_count": 3}, "the": {"_count": 1}, "Harry": {"_count": 1}, "em": {"_count": 2}, "up": {"_count": 1}, "all": {"_count": 1}}, "speaking": {"_count": 3, "Parseltongue": {"_count": 2}, "to": {"_count": 1}}, "sounded": {"_count": 1, "like": {"_count": 1}}, "remember": {"_count": 23, "": {"_count": 6}, "him": {"_count": 1}, "who": {"_count": 2}, "the": {"_count": 3}, "your": {"_count": 1}, "what": {"_count": 1}, "stuff": {"_count": 1}, "Moody": {"_count": 1}, "when": {"_count": 1}, "er": {"_count": 1}, "everything": {"_count": 1}, "asking": {"_count": 1}, "me": {"_count": 1}, "Arthur": {"_count": 1}, "it": {"_count": 1}}, "bandy": {"_count": 1, "about": {"_count": 1}}, "noticed": {"_count": 6, "that": {"_count": 1}, "": {"_count": 2}, "Riddles": {"_count": 1}, "Professor": {"_count": 1}, "how": {"_count": 1}}, "rotter": {"_count": 3, "oh": {"_count": 1}, "": {"_count": 1}, "song": {"_count": 1}}, "ripping": {"_count": 1, "out": {"_count": 1}}, "No": {"_count": 1, "really": {"_count": 1}}, "Crabbe": {"_count": 1, "": {"_count": 1}}, "Go": {"_count": 1, "away": {"_count": 1}}, "cra2y": {"_count": 1, "": {"_count": 1}}, "theres": {"_count": 4, "nothing": {"_count": 1}, "something": {"_count": 2}, "definitely": {"_count": 1}}, "inside": {"_count": 2, "my": {"_count": 1}, "": {"_count": 1}}, "sent": {"_count": 2, "me": {"_count": 1}, "this": {"_count": 1}}, "meant": {"_count": 4, "to": {"_count": 1}, "get": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}}, "doin": {"_count": 3, "here": {"_count": 1}, "down": {"_count": 1}, "with": {"_count": 1}}, "apply": {"_count": 2, "for": {"_count": 2}}, "five": {"_count": 3, "Galleons": {"_count": 1}, "oclock": {"_count": 1}, "years": {"_count": 1}}, "people": {"_count": 2, "realize": {"_count": 1}, "do": {"_count": 1}}, "never": {"_count": 13, "never": {"_count": 1}, "told": {"_count": 2}, "did": {"_count": 1}, "know": {"_count": 2}, "tried": {"_count": 1}, "paused": {"_count": 1}, "make": {"_count": 1}, "realized": {"_count": 2}, "dreamed": {"_count": 1}, "saw": {"_count": 1}}, "imagine": {"_count": 5, "me": {"_count": 1}, "what": {"_count": 2}, "Potter": {"_count": 1}, "wants": {"_count": 1}}, "shell": {"_count": 1, "go": {"_count": 1}}, "anything": {"_count": 13, "she": {"_count": 1}, "": {"_count": 3}, "Fudge": {"_count": 1}, "Harry": {"_count": 1}, "these": {"_count": 1}, "his": {"_count": 1}, "for": {"_count": 1}, "Dumbledore": {"_count": 1}, "shes": {"_count": 1}, "though": {"_count": 1}, "will": {"_count": 1}}, "Mrs": {"_count": 2, "Norris": {"_count": 1}, "Miss": {"_count": 1}}, "saying": {"_count": 22, "just": {"_count": 1}, "you": {"_count": 3}, "": {"_count": 6}, "Malfoy": {"_count": 1}, "Karkaroff": {"_count": 1}, "that": {"_count": 2}, "whoever": {"_count": 1}, "he": {"_count": 1}, "about": {"_count": 2}, "Harry": {"_count": 1}, "before": {"_count": 1}, "what": {"_count": 1}, "theres": {"_count": 1}}, "knew": {"_count": 23, "what": {"_count": 5}, "he": {"_count": 3}, "Im": {"_count": 1}, "my": {"_count": 2}, "the": {"_count": 1}, "him": {"_count": 1}, "Arthur": {"_count": 1}, "where": {"_count": 1}, "said": {"_count": 1}, "such": {"_count": 1}, "Professor": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}, "Albus": {"_count": 1}, "this": {"_count": 1}, "enough": {"_count": 1}}, "then": {"_count": 13, "Gilderoy": {"_count": 1}, "said": {"_count": 3}, "": {"_count": 5}, "it": {"_count": 1}, "at": {"_count": 1}, "Dumby": {"_count": 1}, "youve": {"_count": 1}}, "blabbing": {"_count": 1, "my": {"_count": 1}}, "died": {"_count": 1, "said": {"_count": 1}}, "hardly": {"_count": 2, "seem": {"_count": 1}, "ate": {"_count": 1}}, "Tom": {"_count": 2, "": {"_count": 1}, "youll": {"_count": 1}}, "guessed": {"_count": 1, "yet": {"_count": 1}}, "came": {"_count": 12, "in": {"_count": 2}, "around": {"_count": 1}, "to": {"_count": 3}, "out": {"_count": 1}, "back": {"_count": 2}, "butting": {"_count": 1}, "here": {"_count": 1}, "straight": {"_count": 1}}, "meet": {"_count": 3, "you": {"_count": 1}, "your": {"_count": 1}, "some": {"_count": 1}}, "framed": {"_count": 1, "him": {"_count": 1}}, "whod": {"_count": 1, "been": {"_count": 1}}, "escape": {"_count": 5, "with": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}}, "survive": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "lost": {"_count": 3, "your": {"_count": 3}}, "killing": {"_count": 1, "me": {"_count": 1}}, "last": {"_count": 9, "year": {"_count": 3}, "time": {"_count": 2}, "night": {"_count": 2}, "Monday": {"_count": 1}, "week": {"_count": 1}}, "after": {"_count": 7, "all": {"_count": 2}, "my": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 2}}, "twelve": {"_count": 1, "years": {"_count": 1}}, "kill": {"_count": 2, "that": {"_count": 1}, "a": {"_count": 1}}, "thought": {"_count": 15, "how": {"_count": 1}, "was": {"_count": 2}, "about": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}, "us": {"_count": 1}, "youd": {"_count": 2}, "of": {"_count": 3}, "Dumbledore": {"_count": 1}, "wed": {"_count": 1}, "just": {"_count": 1}}, "broke": {"_count": 2, "any": {"_count": 1}, "the": {"_count": 1}}, "belong": {"_count": 4, "in": {"_count": 1}, "": {"_count": 3}}, "stopped": {"_count": 4, "the": {"_count": 1}, "jumping": {"_count": 1}, "taking": {"_count": 1}, "it": {"_count": 1}}, "caught": {"_count": 4, "the": {"_count": 2}, "her": {"_count": 1}, "up": {"_count": 1}}, "And": {"_count": 2, "he": {"_count": 1}, "then": {"_count": 1}}, "right": {"_count": 5, "": {"_count": 2}, "back": {"_count": 1}, "oh": {"_count": 1}, "for": {"_count": 1}}, "attend": {"_count": 1, "St": {"_count": 1}}, "smirk": {"_count": 1, "at": {"_count": 1}}, "hard": {"_count": 1, "enough": {"_count": 1}}, "approve": {"_count": 2, "the": {"_count": 1}, "said": {"_count": 1}}, "Marge": {"_count": 1, "": {"_count": 1}}, "nasty": {"_count": 1, "little": {"_count": 1}}, "anywhere": {"_count": 1, "you": {"_count": 1}}, "flagged": {"_count": 1, "us": {"_count": 1}}, "dint": {"_count": 1, "tell": {"_count": 1}}, "wandering": {"_count": 1, "off": {"_count": 1}}, "isnt": {"_count": 3, "it": {"_count": 2}, "going": {"_count": 1}}, "theyd": {"_count": 2, "have": {"_count": 1}, "changed": {"_count": 1}}, "planning": {"_count": 6, "to": {"_count": 6}}, "Crookshanks": {"_count": 1, "": {"_count": 1}}, "forgot": {"_count": 1, "your": {"_count": 1}}, "mark": {"_count": 2, "my": {"_count": 2}}, "old": {"_count": 2, "boy": {"_count": 1}, "besom": {"_count": 1}}, "Perce": {"_count": 1, "said": {"_count": 1}}, "sometimes": {"_count": 2, "have": {"_count": 1}, "sir": {"_count": 1}}, "its": {"_count": 9, "a": {"_count": 1}, "more": {"_count": 1}, "YouKnowWhos": {"_count": 1}, "her": {"_count": 1}, "Dumbledore": {"_count": 1}, "only": {"_count": 1}, "Potter": {"_count": 1}, "all": {"_count": 1}, "true": {"_count": 1}}, "smoke": {"_count": 1, "at": {"_count": 1}}, "levitate": {"_count": 1, "a": {"_count": 1}}, "permission": {"_count": 2, "Harry": {"_count": 1}, "to": {"_count": 1}}, "fall": {"_count": 1, "off": {"_count": 1}}, "faint": {"_count": 1, "as": {"_count": 1}}, "become": {"_count": 3, "befuddled": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "Ive": {"_count": 4, "fixed": {"_count": 1}, "invented": {"_count": 1}, "dreamed": {"_count": 1}, "got": {"_count": 1}}, "knaves": {"_count": 1, "you": {"_count": 1}}, "dogs": {"_count": 1, "": {"_count": 1}}, "scurvy": {"_count": 2, "braggart": {"_count": 1}, "dog": {"_count": 1}}, "rogue": {"_count": 1, "": {"_count": 1}}, "muttered": {"_count": 1, "Ron": {"_count": 1}}, "helping": {"_count": 1, "and": {"_count": 1}}, "Oooooooh": {"_count": 1, "": {"_count": 1}}, "started": {"_count": 2, "to": {"_count": 1}, "hunting": {"_count": 1}}, "great": {"_count": 1, "ugly": {"_count": 1}}, "insult": {"_count": 1, "them": {"_count": 1}}, "lie": {"_count": 2, "Hermione": {"_count": 1}, "to": {"_count": 1}}, "carrying": {"_count": 1, "all": {"_count": 1}}, "counted": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "Neville": {"_count": 1}}, "Peeves": {"_count": 4, "he": {"_count": 1}, "Peeves": {"_count": 1}, "Ill": {"_count": 1}, "": {"_count": 1}}, "Dean": {"_count": 1, "said": {"_count": 1}}, "Lupin": {"_count": 1, "but": {"_count": 1}}, "spotted": {"_count": 1, "it": {"_count": 1}}, "most": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "misunderstand": {"_count": 1, "me": {"_count": 1}}, "picture": {"_count": 1, "those": {"_count": 1}}, "dread": {"_count": 4, "him": {"_count": 1}, "will": {"_count": 2}, "is": {"_count": 1}}, "lots": {"_count": 1, "of": {"_count": 1}}, "let": {"_count": 12, "me": {"_count": 7}, "him": {"_count": 2}, "go": {"_count": 1}, "in": {"_count": 1}, "these": {"_count": 1}}, "fear": {"_count": 2, "most": {"_count": 1}, "handing": {"_count": 1}}, "capable": {"_count": 1, "of": {"_count": 1}}, "some": {"_count": 11, "butterbeer": {"_count": 1}, "proof": {"_count": 1}, "good": {"_count": 2}, "idea": {"_count": 1}, "advice": {"_count": 1}, "time": {"_count": 1}, "said": {"_count": 1}, "scales": {"_count": 1}, "clue": {"_count": 1}, "hair": {"_count": 1}}, "appointed": {"_count": 1, "I": {"_count": 1}}, "telling": {"_count": 9, "me": {"_count": 8}, "us": {"_count": 1}}, "criticize": {"_count": 1, "the": {"_count": 1}}, "recognize": {"_count": 3, "and": {"_count": 1}, "our": {"_count": 1}, "that": {"_count": 1}}, "mangy": {"_count": 1, "cur": {"_count": 1}}, "silly": {"_count": 5, "girl": {"_count": 4}, "little": {"_count": 1}}, "feeling": {"_count": 9, "": {"_count": 6}, "all": {"_count": 2}, "sick": {"_count": 1}}, "fell": {"_count": 5, "": {"_count": 2}, "waved": {"_count": 1}, "off": {"_count": 1}, "over": {"_count": 1}}, "sort": {"_count": 2, "of": {"_count": 2}}, "hit": {"_count": 2, "the": {"_count": 1}, "Malfoy": {"_count": 1}}, "onto": {"_count": 1, "a": {"_count": 1}}, "floating": {"_count": 1, "on": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "long": {"_count": 2, "enough": {"_count": 2}}, "mightve": {"_count": 2, "noticed": {"_count": 1}, "told": {"_count": 1}}, "complete": {"_count": 1, "your": {"_count": 1}}, "Rosmerta": {"_count": 1, "mdear": {"_count": 1}}, "blown": {"_count": 1, "into": {"_count": 1}}, "yellowbellied": {"_count": 1, "mongrels": {"_count": 1}}, "bear": {"_count": 2, "no": {"_count": 1}, "that": {"_count": 1}}, "left": {"_count": 14, "his": {"_count": 2}, "Hagrid": {"_count": 1}, "your": {"_count": 2}, "": {"_count": 3}, "them": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 1}, "him": {"_count": 1}, "and": {"_count": 1}}, "informed": {"_count": 1, "": {"_count": 1}}, "ordered": {"_count": 2, "a": {"_count": 2}}, "tutting": {"_count": 1, "at": {"_count": 1}}, "Well": {"_count": 2, "isnt": {"_count": 1}, "he": {"_count": 1}}, "so": {"_count": 27, "well": {"_count": 2}, "early": {"_count": 1}, "they": {"_count": 2}, "you": {"_count": 1}, "young": {"_count": 1}, "long": {"_count": 1}, "happy": {"_count": 1}, "much": {"_count": 3}, "Severus": {"_count": 1}, "rightly": {"_count": 1}, "which": {"_count": 1}, "interested": {"_count": 1}, "she": {"_count": 1}, "far": {"_count": 1}, "said": {"_count": 1}, "quickly": {"_count": 1}, "determined": {"_count": 2}, "wet": {"_count": 2}, "I": {"_count": 2}, "obsessed": {"_count": 1}}, "conjure": {"_count": 1, "it": {"_count": 1}}, "mustve": {"_count": 2, "known": {"_count": 1}, "seen": {"_count": 1}}, "staying": {"_count": 3, "alive": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}}, "once": {"_count": 3, "weve": {"_count": 1}, "I": {"_count": 1}, "saw": {"_count": 1}}, "ridden": {"_count": 1, "it": {"_count": 1}}, "often": {"_count": 1, "find": {"_count": 1}}, "win": {"_count": 1, "said": {"_count": 1}}, "Now": {"_count": 2, "really": {"_count": 1}, "you": {"_count": 1}}, "twod": {"_count": 1, "value": {"_count": 1}}, "return": {"_count": 2, "to": {"_count": 1}, "anything": {"_count": 1}}, "told": {"_count": 20, "Can": {"_count": 1}, "them": {"_count": 2}, "us": {"_count": 5}, "the": {"_count": 1}, "your": {"_count": 1}, "me": {"_count": 6}, "him": {"_count": 2}, "Snape": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "conceal": {"_count": 1, "": {"_count": 1}}, "foul": {"_count": 1, "you": {"_count": 1}}, "evil": {"_count": 2, "Hermione": {"_count": 1}, "hag": {"_count": 1}}, "sufficient": {"_count": 1, "practice": {"_count": 1}}, "peer": {"_count": 1, "into": {"_count": 1}}, "growing": {"_count": 1, "ever": {"_count": 1}}, "quite": {"_count": 6, "sure": {"_count": 3}, "soon": {"_count": 2}, "the": {"_count": 1}}, "open": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "tap": {"_count": 1, "it": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "idiot": {"_count": 2, "its": {"_count": 1}, "sorry": {"_count": 1}}, "stupid": {"_count": 4, "rat": {"_count": 1}, "great": {"_count": 1}, "little": {"_count": 1}, "old": {"_count": 1}}, "stinking": {"_count": 2, "cat": {"_count": 2}}, "switched": {"_count": 1, "": {"_count": 1}}, "known": {"_count": 2, "": {"_count": 1}, "this": {"_count": 1}}, "cross": {"_count": 1, "the": {"_count": 1}}, "labeled": {"_count": 1, "Sirius": {"_count": 1}}, "owe": {"_count": 2, "Harry": {"_count": 1}, "me": {"_count": 1}}, "months": {"_count": 1, "ago": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}, "killed": {"_count": 3, "my": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "Peter": {"_count": 4, "if": {"_count": 1}, "": {"_count": 2}, "Ill": {"_count": 1}}, "until": {"_count": 2, "weve": {"_count": 1}, "morning": {"_count": 1}}, "SecretKeeper": {"_count": 1, "because": {"_count": 1}}, "why": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "touching": {"_count": 1, "them": {"_count": 1}}, "sleep": {"_count": 1, "in": {"_count": 1}}, "deny": {"_count": 1, "it": {"_count": 1}}, "Get": {"_count": 1, "off": {"_count": 1}}, "transform": {"_count": 1, "Peter": {"_count": 1}}, "insane": {"_count": 2, "": {"_count": 2}}, "Minister": {"_count": 1, "": {"_count": 1}}, "upstairs": {"_count": 2, "": {"_count": 2}}, "stand": {"_count": 6, "this": {"_count": 1}, "accused": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "still": {"_count": 1}}, "Not": {"_count": 1, "to": {"_count": 1}}, "Snape": {"_count": 4, "": {"_count": 2}, "went": {"_count": 1}, "as": {"_count": 1}}, "Dumbledore": {"_count": 11, "": {"_count": 5}, "you": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 1}, "turned": {"_count": 1}, "cut": {"_count": 1}}, "Headmaster": {"_count": 2, "": {"_count": 1}, "Professor": {"_count": 1}}, "produce": {"_count": 1, "that": {"_count": 1}}, "passed": {"_count": 2, "your": {"_count": 1}, "though": {"_count": 1}}, "reach": {"_count": 1, "your": {"_count": 1}}, "where": {"_count": 3, "in": {"_count": 1}, "youre": {"_count": 1}, "Voldemort": {"_count": 1}}, "during": {"_count": 3, "our": {"_count": 1}, "the": {"_count": 1}, "these": {"_count": 1}}, "which": {"_count": 2, "I": {"_count": 1}, "is": {"_count": 1}}, "allowed": {"_count": 1, "me": {"_count": 1}}, "volunteer": {"_count": 1, "to": {"_count": 1}}, "Wormtail": {"_count": 4, "": {"_count": 2}, "courage": {"_count": 1}, "though": {"_count": 1}}, "none": {"_count": 2, "at": {"_count": 2}}, "flinch": {"_count": 1, "when": {"_count": 1}}, "shudder": {"_count": 1, "when": {"_count": 1}}, "touch": {"_count": 2, "me": {"_count": 1}, "will": {"_count": 1}}, "seem": {"_count": 7, "so": {"_count": 1}, "to": {"_count": 4}, "cleverer": {"_count": 1}, "sadly": {"_count": 1}}, "unfortunately": {"_count": 1, "fulfill": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "attended": {"_count": 1, "Hogwarts": {"_count": 1}}, "whether": {"_count": 4, "the": {"_count": 1}, "you": {"_count": 2}, "to": {"_count": 1}}, "working": {"_count": 1, "on": {"_count": 1}}, "calling": {"_count": 2, "that": {"_count": 1}, "me": {"_count": 1}}, "count": {"_count": 4, "making": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "Quirrell": {"_count": 1}}, "youll": {"_count": 5, "be": {"_count": 2}, "just": {"_count": 1}, "": {"_count": 1}, "have": {"_count": 1}}, "tomorrow": {"_count": 2, "in": {"_count": 1}, "Dumbledore": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "betting": {"_count": 1, "": {"_count": 1}}, "excellent": {"_count": 1, "odds": {"_count": 1}}, "Ludo": {"_count": 1, "said": {"_count": 1}}, "everywhere": {"_count": 2, "": {"_count": 1}, "all": {"_count": 1}}, "Weatherby": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Dimitrov": {"_count": 1, "": {"_count": 1}}, "better": {"_count": 2, "be": {"_count": 1}, "": {"_count": 1}}, "conjured": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "picked": {"_count": 1, "it": {"_count": 1}}, "accuse": {"_count": 2, "my": {"_count": 1}, "me": {"_count": 1}}, "however": {"_count": 2, "to": {"_count": 1}, "irksome": {"_count": 1}}, "Father": {"_count": 1, "said": {"_count": 1}}, "asking": {"_count": 2, "if": {"_count": 1}, "me": {"_count": 1}}, "expecting": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "pack": {"_count": 1, "them": {"_count": 1}}, "Fred": {"_count": 3, "": {"_count": 1}, "told": {"_count": 1}, "and": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "enter": {"_count": 3, "your": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "alas": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "countercurses": {"_count": 1, "and": {"_count": 1}}, "taught": {"_count": 2, "what": {"_count": 1}, "him": {"_count": 1}}, "completely": {"_count": 2, "fine": {"_count": 1}, "without": {"_count": 1}}, "prefer": {"_count": 3, "to": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}}, "wanting": {"_count": 1, "ze": {"_count": 1}}, "thats": {"_count": 3, "not": {"_count": 2}, "what": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "drop": {"_count": 1, "your": {"_count": 1}}, "eat": {"_count": 2, "enough": {"_count": 1}, "the": {"_count": 1}}, "Poliakoff": {"_count": 1, "snapped": {"_count": 1}}, "seventeen": {"_count": 1, "then": {"_count": 1}}, "lotd": {"_count": 1, "forgotten": {"_count": 1}}, "including": {"_count": 1, "the": {"_count": 1}}, "Severus": {"_count": 8, "said": {"_count": 1}, "": {"_count": 4}, "watch": {"_count": 1}, "Really": {"_count": 1}, "because": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "recently": {"_count": 1, "got": {"_count": 1}}, "entirely": {"_count": 1, "seriously": {"_count": 1}}, "use": {"_count": 5, "the": {"_count": 2}, "their": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "who": {"_count": 16, "gets": {"_count": 1}, "are": {"_count": 4}, "found": {"_count": 1}, "have": {"_count": 1}, "made": {"_count": 1}, "comes": {"_count": 1}, "acts": {"_count": 1}, "knew": {"_count": 1}, "should": {"_count": 1}, "do": {"_count": 1}, "havent": {"_count": 1}, "uses": {"_count": 1}, "would": {"_count": 1}}, "competing": {"_count": 1, "": {"_count": 1}}, "posted": {"_count": 2, "on": {"_count": 1}, "of": {"_count": 1}}, "doesn": {"_count": 1, "it": {"_count": 1}}, "normally": {"_count": 1, "": {"_count": 1}}, "decide": {"_count": 3, "to": {"_count": 2}, "which": {"_count": 1}}, "keen": {"_count": 1, "to": {"_count": 1}}, "first": {"_count": 4, "please": {"_count": 1}, "joined": {"_count": 1}, "this": {"_count": 1}, "disarmed": {"_count": 1}}, "ensure": {"_count": 1, "that": {"_count": 1}}, "start": {"_count": 3, "crying": {"_count": 1}, "feeling": {"_count": 1}, "on": {"_count": 1}}, "dropped": {"_count": 1, "your": {"_count": 1}}, "accidentally": {"_count": 1, "trod": {"_count": 1}}, "late": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "showing": {"_count": 1, "me": {"_count": 1}}, "swapped": {"_count": 1, "its": {"_count": 1}}, "laddie": {"_count": 1, "": {"_count": 1}}, "best": {"_count": 1, "at": {"_count": 1}}, "watching": {"_count": 1, "this": {"_count": 1}}, "though": {"_count": 3, "": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "youve": {"_count": 4, "got": {"_count": 2}, "never": {"_count": 1}, "only": {"_count": 1}}, "felt": {"_count": 4, "facing": {"_count": 1}, "Voldemort": {"_count": 1}, "the": {"_count": 1}, "lucky": {"_count": 1}}, "weren": {"_count": 1, "allowed": {"_count": 1}}, "Dobby": {"_count": 2, "": {"_count": 2}}, "miss": {"_count": 3, "": {"_count": 1}, "any": {"_count": 1}, "he": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 2, "at": {"_count": 1}, "he": {"_count": 1}}, "takin": {"_count": 1, "": {"_count": 1}}, "hang": {"_count": 1, "around": {"_count": 1}}, "cannot": {"_count": 8, "pretend": {"_count": 1}, "be": {"_count": 2}, "deny": {"_count": 1}, "": {"_count": 1}, "win": {"_count": 2}, "reveal": {"_count": 1}}, "paying": {"_count": 1, "attention": {"_count": 1}}, "offered": {"_count": 2, "Cedric": {"_count": 1}, "us": {"_count": 1}}, "boys": {"_count": 1, "": {"_count": 1}}, "My": {"_count": 2, "parents": {"_count": 1}, "dear": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "they": {"_count": 4, "would": {"_count": 1}, "suck": {"_count": 1}, "just": {"_count": 2}}, "reminded": {"_count": 1, "me": {"_count": 1}}, "orders": {"_count": 2, "to": {"_count": 1}, "Dobby": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "ideas": {"_count": 1, "Potter": {"_count": 1}}, "choose": {"_count": 2, "what": {"_count": 1}, "to": {"_count": 1}}, "couldve": {"_count": 1, "turned": {"_count": 1}}, "bring": {"_count": 6, "her": {"_count": 1}, "anything": {"_count": 1}, "him": {"_count": 2}, "it": {"_count": 1}, "us": {"_count": 1}}, "prat": {"_count": 2, "said": {"_count": 1}, "dont": {"_count": 1}}, "ages": {"_count": 1, "to": {"_count": 1}}, "elped": {"_count": 1, "Yeah": {"_count": 1}}, "fair": {"_count": 1, "warning": {"_count": 1}}, "breaking": {"_count": 1, "into": {"_count": 1}}, "spilling": {"_count": 1, "your": {"_count": 1}}, "watch": {"_count": 1, "your": {"_count": 1}}, "shes": {"_count": 4, "obsessed": {"_count": 1}, "definitely": {"_count": 1}, "seeing": {"_count": 1}, "given": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "shouldve": {"_count": 2, "seen": {"_count": 1}, "heard": {"_count": 1}}, "cAMe": {"_count": 1, "from": {"_count": 1}}, "split": {"_count": 4, "up": {"_count": 1}, "your": {"_count": 3}}, "buy": {"_count": 2, "these": {"_count": 1}, "spellbooks": {"_count": 1}}, "bugged": {"_count": 1, "said": {"_count": 1}}, "valk": {"_count": 1, "vith": {"_count": 1}}, "haff": {"_count": 1, "not": {"_count": 1}}, "yes": {"_count": 1, "very": {"_count": 1}}, "sneak": {"_count": 2, "Potter": {"_count": 1}, "something": {"_count": 1}}, "enough": {"_count": 5, "times": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}}, "blackmailing": {"_count": 1, "": {"_count": 1}}, "theyre": {"_count": 3, "on": {"_count": 1}, "after": {"_count": 1}, "not": {"_count": 1}}, "thinks": {"_count": 1, "happened": {"_count": 1}}, "Albus": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "Karkaroff": {"_count": 1, "from": {"_count": 1}}, "information": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "presumably": {"_count": 1, "led": {"_count": 1}}, "those": {"_count": 1, "sorts": {"_count": 1}}, "pass": {"_count": 4, "": {"_count": 2}, "today": {"_count": 1}, "it": {"_count": 1}}, "promised": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "Master": {"_count": 2, "": {"_count": 2}}, "answer": {"_count": 1, "my": {"_count": 1}}, "helped": {"_count": 5, "return": {"_count": 1}, "me": {"_count": 2}, "the": {"_count": 1}, "Arthur": {"_count": 1}}, "present": {"_count": 1, "a": {"_count": 1}}, "ran": {"_count": 2, "from": {"_count": 1}, "out": {"_count": 1}}, "murmured": {"_count": 1, "Macnair": {"_count": 1}}, "Goyle": {"_count": 1, "": {"_count": 1}}, "Nott": {"_count": 1, "said": {"_count": 1}}, "managed": {"_count": 6, "to": {"_count": 5}, "the": {"_count": 1}}, "face": {"_count": 1, "me": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 3, "likely": {"_count": 1}, "too": {"_count": 1}, "all": {"_count": 1}}, "high": {"_count": 1, "for": {"_count": 1}}, "possess": {"_count": 3, "and": {"_count": 1}, "your": {"_count": 1}, "in": {"_count": 1}}, "bad": {"_count": 1, "boy": {"_count": 1}}, "took": {"_count": 6, "the": {"_count": 2}, "it": {"_count": 2}, "a": {"_count": 1}, "that": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "finally": {"_count": 1, "feel": {"_count": 1}}, "maintained": {"_count": 1, "the": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "questioning": {"_count": 1, "him": {"_count": 1}}, "disturbing": {"_count": 1, "these": {"_count": 1}}, "their": {"_count": 2, "names": {"_count": 1}, "lives": {"_count": 1}}, "accept": {"_count": 2, "that": {"_count": 1}, "my": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "always": {"_count": 5, "have": {"_count": 1}, "liked": {"_count": 1}, "supported": {"_count": 1}, "had": {"_count": 2}}, "hire": {"_count": 1, "werewolves": {"_count": 1}}, "mate": {"_count": 4, "said": {"_count": 4}}, "drew": {"_count": 1, "with": {"_count": 1}}, "lurking": {"_count": 1, "under": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "details": {"_count": 2, "here": {"_count": 1}, "on": {"_count": 1}}, "everything": {"_count": 9, "when": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}, "I": {"_count": 1}, "Dumbledore": {"_count": 1}, "was": {"_count": 1}}, "Dud": {"_count": 1, "": {"_count": 1}}, "point": {"_count": 1, "that": {"_count": 1}}, "ddoing": {"_count": 1, "": {"_count": 1}}, "ddo": {"_count": 1, "": {"_count": 1}}, "fight": {"_count": 1, "off": {"_count": 1}}, "useless": {"_count": 3, "lump": {"_count": 1}, "skiving": {"_count": 1}, "sack": {"_count": 1}}, "enjoyed": {"_count": 3, "it": {"_count": 2}, "that": {"_count": 1}}, "undercover": {"_count": 1, "": {"_count": 1}}, "worthless": {"_count": 1, "pile": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "wander": {"_count": 1, "around": {"_count": 1}}, "Diddy": {"_count": 1, "": {"_count": 1}}, "performed": {"_count": 1, "the": {"_count": 1}}, "admit": {"_count": 1, "it": {"_count": 1}}, "Kiss": {"_count": 1, "you": {"_count": 1}}, "knowwhat": {"_count": 2, "youve": {"_count": 1}, "": {"_count": 1}}, "normal": {"_count": 1, "but": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "\u2018Nymphadora": {"_count": 1, "muttered": {"_count": 1}}, "arrive": {"_count": 1, "": {"_count": 1}}, "worried": {"_count": 1, "about": {"_count": 1}}, "er": {"_count": 3, "bother": {"_count": 1}, "been": {"_count": 1}, "quite": {"_count": 1}}, "important": {"_count": 1, "stuff": {"_count": 1}}, "befoul": {"_count": 1, "the": {"_count": 1}}, "horrible": {"_count": 1, "old": {"_count": 1}}, "learned": {"_count": 3, "about": {"_count": 1}, "the": {"_count": 1}, "some": {"_count": 1}}, "messed": {"_count": 1, "it": {"_count": 1}}, "kidding": {"_count": 1, "": {"_count": 1}}, "ill": {"_count": 2, "George": {"_count": 1}, "": {"_count": 1}}, "throw": {"_count": 1, "up": {"_count": 1}}, "swallow": {"_count": 1, "the": {"_count": 1}}, "practically": {"_count": 2, "royal": {"_count": 2}}, "Eric": {"_count": 1, "said": {"_count": 1}}, "ready": {"_count": 2, "": {"_count": 1}, "yet": {"_count": 1}}, "Amelia": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 2, "houseelf": {"_count": 1}, "news": {"_count": 1}}, "appear": {"_count": 1, "inadvertently": {"_count": 1}}, "certainly": {"_count": 1, "seem": {"_count": 1}}, "guilty": {"_count": 1, "not": {"_count": 1}}, "straight": {"_count": 1, "back": {"_count": 1}}, "continue": {"_count": 5, "to": {"_count": 5}}, "more": {"_count": 9, "pajamas": {"_count": 1}, "than": {"_count": 1}, "license": {"_count": 1}, "closely": {"_count": 1}, "pain": {"_count": 1}, "confident": {"_count": 1}, "and": {"_count": 1}, "completely": {"_count": 1}, "time": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "careful": {"_count": 1, "what": {"_count": 1}}, "treated": {"_count": 1, "her": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "turned": {"_count": 3, "the": {"_count": 1}, "up": {"_count": 2}}, "unlike": {"_count": 1, "me": {"_count": 1}}, "step": {"_count": 2, "out": {"_count": 1}, "this": {"_count": 1}}, "Still": {"_count": 1, "I": {"_count": 1}}, "pal": {"_count": 1, "Im": {"_count": 1}}, "actually": {"_count": 4, "": {"_count": 1}, "stick": {"_count": 1}, "enjoy": {"_count": 1}, "as": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "shrivel": {"_count": 1, "up": {"_count": 1}}, "attacking": {"_count": 2, "her": {"_count": 1}, "him": {"_count": 1}}, "copies": {"_count": 1, "of": {"_count": 1}}, "Cedric": {"_count": 1, "Diggory": {"_count": 1}}, "shouting": {"_count": 1, "about": {"_count": 1}}, "shouted": {"_count": 2, "at": {"_count": 1}, "about": {"_count": 1}}, "much": {"_count": 3, "more": {"_count": 1}, "with": {"_count": 1}, "less": {"_count": 1}}, "detention": {"_count": 2, "every": {"_count": 1}, "": {"_count": 1}}, "fought": {"_count": 4, "him": {"_count": 1}, "off": {"_count": 2}, "YouKnowWho": {"_count": 1}}, "oughtnt": {"_count": 1, "it": {"_count": 1}}, "hiding": {"_count": 1, "here": {"_count": 1}}, "play": {"_count": 2, "Keeper": {"_count": 1}, "for": {"_count": 1}}, "good": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "lines": {"_count": 1, "": {"_count": 1}}, "called": {"_count": 2, "Katie": {"_count": 1}, "me": {"_count": 1}}, "earlier": {"_count": 1, "Potter": {"_count": 1}}, "around": {"_count": 6, "Harry": {"_count": 4}, "": {"_count": 1}, "Potter": {"_count": 1}}, "afterward": {"_count": 1, "go": {"_count": 1}}, "trained": {"_count": 1, "in": {"_count": 1}}, "chucked": {"_count": 1, "back": {"_count": 1}}, "presented": {"_count": 1, "this": {"_count": 1}}, "dream": {"_count": 2, "this": {"_count": 1}, "about": {"_count": 1}}, "using": {"_count": 3, "a": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "whatsoever": {"_count": 1, "": {"_count": 1}}, "received": {"_count": 1, "my": {"_count": 1}}, "receive": {"_count": 1, "enough": {"_count": 1}}, "teaching": {"_count": 4, "us": {"_count": 3}, "them": {"_count": 1}}, "Umbridge": {"_count": 1, "might": {"_count": 1}}, "brought": {"_count": 3, "Diggorys": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "lateri": {"_count": 1, "Ill": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}, "walked": {"_count": 1, "out": {"_count": 1}}, "organizing": {"_count": 1, "this": {"_count": 1}}, "meeting": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "after": {"_count": 1}}, "honestly": {"_count": 2, "trust": {"_count": 1}, "like": {"_count": 1}}, "checked": {"_count": 1, "the": {"_count": 1}}, "tripped": {"_count": 1, "over": {"_count": 1}}, "perform": {"_count": 1, "as": {"_count": 1}}, "deserve": {"_count": 2, "it": {"_count": 1}, "detention": {"_count": 1}}, "overrode": {"_count": 1, "me": {"_count": 1}}, "Minerva": {"_count": 4, "how": {"_count": 1}, "": {"_count": 1}, "simpered": {"_count": 1}, "but": {"_count": 1}}, "resign": {"_count": 1, "said": {"_count": 1}}, "blaming": {"_count": 1, "yourself": {"_count": 1}}, "talked": {"_count": 1, "to": {"_count": 1}}, "sustain": {"_count": 1, "those": {"_count": 1}}, "aware": {"_count": 1, "Umbridge": {"_count": 1}}, "awful": {"_count": 1, "twisted": {"_count": 1}}, "weeks": {"_count": 1, "ago": {"_count": 1}}, "kiss": {"_count": 1, "": {"_count": 1}}, "writing": {"_count": 1, "the": {"_count": 1}}, "dreamed": {"_count": 2, "this": {"_count": 1}, "you": {"_count": 1}}, "watched": {"_count": 2, "this": {"_count": 1}, "die": {"_count": 1}}, "perhaps": {"_count": 2, "standing": {"_count": 1}, "but": {"_count": 1}}, "Phineas": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "lend": {"_count": 1, "us": {"_count": 1}}, "risking": {"_count": 1, "your": {"_count": 1}}, "reading": {"_count": 1, "do": {"_count": 1}}, "Arthur": {"_count": 3, "": {"_count": 2}, "wouldnt": {"_count": 1}}, "being": {"_count": 5, "attacked": {"_count": 1}, "the": {"_count": 1}, "rude": {"_count": 1}, "\u2018the": {"_count": 1}, "in": {"_count": 1}}, "arrived": {"_count": 4, "": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 2}}, "slept": {"_count": 1, "this": {"_count": 1}}, "dolt": {"_count": 1, "said": {"_count": 1}}, "alone": {"_count": 5, "feel": {"_count": 1}, "recognize": {"_count": 1}, "are": {"_count": 1}, "Potter": {"_count": 1}, "and": {"_count": 1}}, "overheard": {"_count": 1, "last": {"_count": 1}}, "thrashing": {"_count": 1, "around": {"_count": 1}}, "pleasel": {"_count": 1, "They": {"_count": 1}}, "pockmarked": {"_count": 1, "and": {"_count": 1}}, "naughty": {"_count": 1, "boy": {"_count": 1}}, "wandered": {"_count": 1, "off": {"_count": 1}}, "leaving": {"_count": 4, "already": {"_count": 1}, "": {"_count": 1}, "Professor": {"_count": 1}, "Ginny": {"_count": 1}}, "Snivellus": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "afraid": {"_count": 2, "he": {"_count": 1}, "my": {"_count": 1}}, "risked": {"_count": 2, "a": {"_count": 1}, "your": {"_count": 1}}, "having": {"_count": 2, "those": {"_count": 1}, "breakfast": {"_count": 1}}, "shout": {"_count": 1, "his": {"_count": 1}}, "Occlumency": {"_count": 4, "": {"_count": 3}, "I": {"_count": 1}}, "prove": {"_count": 1, "more": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "resist": {"_count": 1, "": {"_count": 1}}, "wasted": {"_count": 1, "time": {"_count": 1}}, "big": {"_count": 1, "secondrateri": {"_count": 1}}, "suspected": {"_count": 1, "Snape": {"_count": 1}}, "mdears": {"_count": 1, "": {"_count": 1}}, "obviously": {"_count": 2, "want": {"_count": 1}, "know": {"_count": 1}}, "\u2018Disturbed": {"_count": 1, "teenage": {"_count": 1}}, "rather": {"_count": 3, "a": {"_count": 1}, "than": {"_count": 2}}, "promise": {"_count": 3, "to": {"_count": 1}, "you": {"_count": 1}, "goblins": {"_count": 1}}, "upset": {"_count": 1, "Cho": {"_count": 1}}, "jealous": {"_count": 1, "": {"_count": 1}}, "liked": {"_count": 1, "her": {"_count": 1}}, "because": {"_count": 8, "they": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 2}, "its": {"_count": 1}, "I": {"_count": 1}, "unfortunately": {"_count": 1}, "it": {"_count": 1}}, "Rookwood": {"_count": 1, "said": {"_count": 1}}, "ccant": {"_count": 1, "sack": {"_count": 1}}, "whats": {"_count": 2, "wrong": {"_count": 1}, "happened": {"_count": 1}}, "warned": {"_count": 1, "me": {"_count": 1}}, "Fortescue": {"_count": 1, "that": {"_count": 1}}, "understood": {"_count": 3, "the": {"_count": 2}, "Wormtail": {"_count": 1}}, "shaking": {"_count": 1, "your": {"_count": 1}}, "written": {"_count": 1, "it": {"_count": 1}}, "achieved": {"_count": 1, "\u2018Outstanding": {"_count": 1}}, "attempt": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "intend": {"_count": 1, "to": {"_count": 1}}, "raw": {"_count": 1, "would": {"_count": 1}}, "maam": {"_count": 1, "": {"_count": 1}}, "Argus": {"_count": 1, "she": {"_count": 1}}, "panted": {"_count": 2, "Professor": {"_count": 1}, "Sloper": {"_count": 1}}, "seeking": {"_count": 1, "a": {"_count": 1}}, "between": {"_count": 1, "Acceptable": {"_count": 1}}, "showed": {"_count": 2, "a": {"_count": 1}, "us": {"_count": 1}}, "nightly": {"_count": 1, "I": {"_count": 1}}, "achieve": {"_count": 1, "the": {"_count": 1}}, "Senior": {"_count": 1, "Undersecretary": {"_count": 1}}, "lessons": {"_count": 3, "": {"_count": 1}, "when": {"_count": 1}, "if": {"_count": 1}}, "learning": {"_count": 2, "Occlumency": {"_count": 1}, "to": {"_count": 1}}, "armed": {"_count": 1, "": {"_count": 1}}, "lotll": {"_count": 1, "have": {"_count": 1}}, "Wha": {"_count": 1, "no": {"_count": 1}}, "ended": {"_count": 3, "up": {"_count": 2}, "it": {"_count": 1}}, "human": {"_count": 2, "said": {"_count": 2}}, "grinning": {"_count": 1, "": {"_count": 1}}, "scream": {"_count": 1, "": {"_count": 1}}, "students": {"_count": 1, "without": {"_count": 1}}, "yelling": {"_count": 1, "about": {"_count": 1}}, "otherwise": {"_count": 1, "Im": {"_count": 1}}, "somehow": {"_count": 1, "discrediting": {"_count": 1}}, "wriggled": {"_count": 1, "out": {"_count": 1}}, "annoy": {"_count": 1, "any": {"_count": 1}}, "certain": {"_count": 1, "areas": {"_count": 1}}, "animals": {"_count": 1, "": {"_count": 1}}, "heading": {"_count": 2, "into": {"_count": 1}, "if": {"_count": 1}}, "behind": {"_count": 1, "": {"_count": 1}}, "smash": {"_count": 2, "it": {"_count": 1}, "down": {"_count": 1}}, "across": {"_count": 1, "it": {"_count": 1}}, "help": {"_count": 7, "Ginny": {"_count": 1}, "yourself": {"_count": 1}, "us": {"_count": 3}, "me": {"_count": 2}}, "love": {"_count": 2, "him": {"_count": 1}, "my": {"_count": 1}}, "pathetic": {"_count": 1, "little": {"_count": 1}}, "smashed": {"_count": 1, "my": {"_count": 1}}, "proceed": {"_count": 1, "downstairs": {"_count": 1}}, "listened": {"_count": 1, "to": {"_count": 1}}, "His": {"_count": 1, "voice": {"_count": 1}}, "bears": {"_count": 1, "all": {"_count": 1}}, "rejoined": {"_count": 1, "the": {"_count": 1}}, "warnings": {"_count": 1, "when": {"_count": 1}}, "exists": {"_count": 1, "": {"_count": 1}}, "entered": {"_count": 2, "so": {"_count": 1}, "the": {"_count": 1}}, "witnessed": {"_count": 2, "the": {"_count": 1}, "Katies": {"_count": 1}}, "briefly": {"_count": 1, "a": {"_count": 1}}, "without": {"_count": 2, "even": {"_count": 1}, "enduring": {"_count": 1}}, "attempted": {"_count": 2, "to": {"_count": 2}}, "decided": {"_count": 6, "to": {"_count": 4}, "that": {"_count": 1}, "not": {"_count": 1}}, "blame": {"_count": 1, "dont": {"_count": 1}}, "seriously": {"_count": 1, "in": {"_count": 1}}, "myself": {"_count": 1, "though": {"_count": 1}}, "grudgingly": {"_count": 1, "furiously": {"_count": 1}}, "houseroom": {"_count": 1, "may": {"_count": 1}}, "lay": {"_count": 3, "in": {"_count": 2}, "down": {"_count": 1}}, "acquitted": {"_count": 1, "yourself": {"_count": 1}}, "struggled": {"_count": 1, "to": {"_count": 1}}, "struggling": {"_count": 1, "under": {"_count": 1}}, "backfired": {"_count": 1, "": {"_count": 1}}, "powers": {"_count": 1, "and": {"_count": 1}}, "threatening": {"_count": 2, "me": {"_count": 1}, "": {"_count": 1}}, "Prime": {"_count": 2, "Minister": {"_count": 2}}, "drinks": {"_count": 1, "and": {"_count": 1}}, "oh": {"_count": 2, "yes": {"_count": 1}, "my": {"_count": 1}}, "remained": {"_count": 1, "at": {"_count": 1}}, "believed": {"_count": 1, "dead": {"_count": 1}}, "stayed": {"_count": 1, "Yes": {"_count": 1}}, "He": {"_count": 3, "shares": {"_count": 1}, "turned": {"_count": 1}, "fastened": {"_count": 1}}, "disagree": {"_count": 2, "with": {"_count": 1}, "that": {"_count": 1}}, "full": {"_count": 1, "credit": {"_count": 1}}, "discussed": {"_count": 1, "this": {"_count": 1}}, "foresaw": {"_count": 1, "his": {"_count": 1}}, "implicitly": {"_count": 1, "still": {"_count": 1}}, "overlook": {"_count": 1, "Dumbledores": {"_count": 1}}, "require": {"_count": 2, "Narcissa": {"_count": 1}, "": {"_count": 1}}, "beyond": {"_count": 1, "all": {"_count": 1}}, "swear": {"_count": 1, "it": {"_count": 1}}, "listening": {"_count": 2, "Narcissa": {"_count": 1}, "": {"_count": 1}}, "carry": {"_count": 1, "out": {"_count": 1}}, "inherit": {"_count": 1, "all": {"_count": 1}}, "number": {"_count": 1, "twelve": {"_count": 1}}, "allow": {"_count": 1, "Harry": {"_count": 1}}, "also": {"_count": 2, "saw": {"_count": 1}, "noticed": {"_count": 1}}, "bringing": {"_count": 1, "in": {"_count": 1}}, "treat": {"_count": 1, "teachers": {"_count": 1}}, "Horace": {"_count": 1, "would": {"_count": 1}}, "stuff": {"_count": 1, "": {"_count": 1}}, "yourself": {"_count": 2, "are": {"_count": 1}, "will": {"_count": 1}}, "hungry": {"_count": 1, "Harry": {"_count": 1}}, "persuaded": {"_count": 1, "Horace": {"_count": 1}}, "unexpectedly": {"_count": 1, "like": {"_count": 1}}, "scared": {"_count": 1, "": {"_count": 1}}, "equal": {"_count": 1, "status": {"_count": 1}}, "attack": {"_count": 1, "my": {"_count": 1}}, "girls": {"_count": 1, "found": {"_count": 1}}, "join": {"_count": 1, "us": {"_count": 1}}, "Cormac": {"_count": 1, "said": {"_count": 1}}, "hunting": {"_count": 1, "nogtails": {"_count": 1}}, "Blaise": {"_count": 1, "and": {"_count": 1}}, "till": {"_count": 1, "the": {"_count": 1}}, "blimey": {"_count": 1, "whatve": {"_count": 1}}, "therefore": {"_count": 2, "to": {"_count": 2}}, "notice": {"_count": 1, "anything": {"_count": 1}}, "qualify": {"_count": 1, "for": {"_count": 1}}, "applied": {"_count": 1, "to": {"_count": 1}}, "scraped": {"_count": 1, "an": {"_count": 1}}, "manage": {"_count": 3, "to": {"_count": 3}}, "holding": {"_count": 1, "trials": {"_count": 1}}, "possibly": {"_count": 3, "be": {"_count": 2}, "believe": {"_count": 1}}, "spoke": {"_count": 1, "Harry": {"_count": 1}}, "lucky": {"_count": 1, "": {"_count": 1}}, "fifteen": {"_count": 1, "years": {"_count": 1}}, "injure": {"_count": 1, "your": {"_count": 1}}, "pureblood": {"_count": 1, "": {"_count": 1}}, "pointless": {"_count": 1, "lump": {"_count": 1}}, "marked": {"_count": 1, "out": {"_count": 1}}, "sneered": {"_count": 1, "Gaunt": {"_count": 1}}, "injured": {"_count": 1, "your": {"_count": 1}}, "\u2018the": {"_count": 1, "Chosen": {"_count": 1}}, "stuck": {"_count": 1, "to": {"_count": 1}}, "set": {"_count": 1, "the": {"_count": 1}}, "selling": {"_count": 1, "this": {"_count": 1}}, "Leanne": {"_count": 1, "": {"_count": 1}}, "four": {"_count": 1, "saw": {"_count": 1}}, "accosted": {"_count": 1, "him": {"_count": 1}}, "family": {"_count": 1, "": {"_count": 1}}, "nonmagical": {"_count": 1, "people": {"_count": 1}}, "enjoy": {"_count": 1, "your": {"_count": 1}}, "King": {"_count": 1, "and": {"_count": 1}}, "played": {"_count": 1, "really": {"_count": 1}}, "confiscate": {"_count": 1, "them": {"_count": 1}}, "thatll": {"_count": 1, "stop": {"_count": 1}}, "drink": {"_count": 2, "because": {"_count": 1}, "the": {"_count": 1}}, "depraved": {"_count": 1, "boy": {"_count": 1}}, "dyed": {"_count": 1, "your": {"_count": 1}}, "chose": {"_count": 1, "Loony": {"_count": 1}}, "interfered": {"_count": 1, "at": {"_count": 1}}, "issue": {"_count": 1, "him": {"_count": 1}}, "Draco": {"_count": 5, "said": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 3}}, "butting": {"_count": 1, "in": {"_count": 1}}, "break": {"_count": 2, "it": {"_count": 1}, "into": {"_count": 1}}, "demonstrate": {"_count": 1, "the": {"_count": 1}}, "throwing": {"_count": 1, "knives": {"_count": 1}}, "appreciate": {"_count": 2, "how": {"_count": 1}, "the": {"_count": 1}}, "warm": {"_count": 1, "tonight": {"_count": 1}}, "trust": {"_count": 2, "Dumbledores": {"_count": 1}, "me": {"_count": 1}}, "remind": {"_count": 1, "me": {"_count": 1}}, "spoken": {"_count": 1, "to": {"_count": 1}}, "faced": {"_count": 1, "HeWhoMustNotBe": {"_count": 1}}, "cherish": {"_count": 1, "an": {"_count": 1}}, "chuck": {"_count": 1, "them": {"_count": 1}}, "chucking": {"_count": 1, "the": {"_count": 1}}, "convince": {"_count": 1, "everyone": {"_count": 1}}, "rushing": {"_count": 1, "to": {"_count": 1}}, "hoping": {"_count": 3, "that": {"_count": 2}, "to": {"_count": 1}}, "So": {"_count": 1, "thats": {"_count": 1}}, "argued": {"_count": 1, "": {"_count": 1}}, "definitely": {"_count": 1, "still": {"_count": 1}}, "Avery": {"_count": 2, "": {"_count": 2}}, "mentioning": {"_count": 1, "them": {"_count": 1}}, "homework": {"_count": 1, "Harry": {"_count": 1}}, "approach": {"_count": 1, "Slughorn": {"_count": 1}}, "sighed": {"_count": 1, "Ron": {"_count": 1}}, "exist": {"_count": 1, "said": {"_count": 1}}, "doesnt": {"_count": 1, "she": {"_count": 1}}, "introduce": {"_count": 1, "me": {"_count": 1}}, "calm": {"_count": 1, "when": {"_count": 1}}, "seeing": {"_count": 1, "": {"_count": 1}}, "hammer": {"_count": 1, "McLag": {"_count": 1}}, "unceremoniously": {"_count": 1, "from": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "agree": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "reasonably": {"_count": 1, "firm": {"_count": 1}}, "flowers": {"_count": 1, "he": {"_count": 1}}, "clever": {"_count": 1, "boy": {"_count": 1}}, "sit": {"_count": 1, "down": {"_count": 1}}, "permit": {"_count": 1, "me": {"_count": 1}}, "command": {"_count": 1, "": {"_count": 1}}, "consider": {"_count": 1, "them": {"_count": 1}}, "luck": {"_count": 1, "as": {"_count": 1}}, "changing": {"_count": 1, "your": {"_count": 1}}, "ditch": {"_count": 1, "her": {"_count": 1}}, "Ronald": {"_count": 1, "Weasley": {"_count": 1}}, "woke": {"_count": 1, "me": {"_count": 1}}, "sorry": {"_count": 1, "I": {"_count": 1}}, "stronger": {"_count": 2, "to": {"_count": 2}}, "described": {"_count": 1, "to": {"_count": 1}}, "Voldemort": {"_count": 1, "himself": {"_count": 1}}, "stared": {"_count": 1, "into": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "soaking": {"_count": 1, "": {"_count": 1}}, "purchased": {"_count": 1, "from": {"_count": 1}}, "outperforming": {"_count": 1, "her": {"_count": 1}}, "aargh": {"_count": 1, "": {"_count": 1}}, "suspect": {"_count": 1, "them": {"_count": 1}}, "obey": {"_count": 1, "any": {"_count": 1}}, "Apparate": {"_count": 1, "as": {"_count": 1}}, "acting": {"_count": 2, "alone": {"_count": 1}, "for": {"_count": 1}}, "smuggle": {"_count": 1, "them": {"_count": 1}}, "resorted": {"_count": 1, "to": {"_count": 1}}, "continued": {"_count": 1, "Dumbledore": {"_count": 1}}, "Fenrir": {"_count": 1, "": {"_count": 1}}, "cowardly": {"_count": 1, "Coward": {"_count": 1}}, "forgotten": {"_count": 1, "our": {"_count": 1}}, "coward": {"_count": 1, "DONT": {"_count": 1}}, "fix": {"_count": 1, "them": {"_count": 1}}, "hoped": {"_count": 1, "": {"_count": 1}}, "Everard": {"_count": 1, "said": {"_count": 1}}, "anymore": {"_count": 2, "": {"_count": 2}}, "sooner": {"_count": 1, "": {"_count": 1}}, "wherever": {"_count": 2, "youre": {"_count": 1}, "it": {"_count": 1}}, "whatever": {"_count": 1, "happens": {"_count": 1}}, "Yaxley": {"_count": 1, "the": {"_count": 1}}, "babysit": {"_count": 1, "the": {"_count": 1}}, "Vernon": {"_count": 2, "Dursley": {"_count": 1}, "cause": {"_count": 1}}, "hostage": {"_count": 1, "Id": {"_count": 1}}, "tried": {"_count": 3, "to": {"_count": 2}, "and": {"_count": 1}}, "casts": {"_count": 1, "a": {"_count": 1}}, "cornered": {"_count": 1, "good": {"_count": 1}}, "theyve": {"_count": 1, "all": {"_count": 1}}, "cooperate": {"_count": 1, "": {"_count": 1}}, "spineless": {"_count": 1, "worm": {"_count": 1}}, "word": {"_count": 1, "or": {"_count": 1}}, "checkin": {"_count": 1, "me": {"_count": 1}}, "Remus": {"_count": 1, "": {"_count": 1}}, "reacted": {"_count": 1, "instinctively": {"_count": 1}}, "cleaned": {"_count": 2, "out": {"_count": 2}}, "destroy": {"_count": 1, "a": {"_count": 1}}, "ave": {"_count": 3, "been": {"_count": 1}, "met": {"_count": 1}, "a": {"_count": 1}}, "ze": {"_count": 1, "smoothest": {"_count": 1}}, "Scrimgeour": {"_count": 1, "went": {"_count": 1}}, "account": {"_count": 1, "for": {"_count": 1}}, "nearly": {"_count": 2, "swallowed": {"_count": 1}, "gave": {"_count": 1}}, "changed": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "merely": {"_count": 1, "been": {"_count": 1}}, "William": {"_count": 1, "Arthur": {"_count": 1}}, "bonded": {"_count": 1, "for": {"_count": 1}}, "Britons": {"_count": 1, "set": {"_count": 1}}, "skated": {"_count": 1, "over": {"_count": 1}}, "worshipped": {"_count": 1, "Dumbledore": {"_count": 1}}, "Barry": {"_count": 1, "": {"_count": 1}}, "Muriel": {"_count": 1, "": {"_count": 1}}, "packed": {"_count": 2, "my": {"_count": 1}, "up": {"_count": 1}}, "On": {"_count": 1, "the": {"_count": 1}}, "thank": {"_count": 2, "you": {"_count": 2}}, "steal": {"_count": 1, "it": {"_count": 1}}, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}, "Kreacher": {"_count": 1, "he": {"_count": 1}}, "Regulus": {"_count": 1, "died": {"_count": 1}}, "Overkill": {"_count": 1, "mate": {"_count": 1}}, "visited": {"_count": 1, "them": {"_count": 1}}, "confide": {"_count": 2, "in": {"_count": 1}, "much": {"_count": 1}}, "suggest": {"_count": 2, "such": {"_count": 1}, "": {"_count": 1}}, "stripped": {"_count": 1, "this": {"_count": 1}}, "smiled": {"_count": 1, "Hermione": {"_count": 1}}, "today": {"_count": 2, "": {"_count": 2}}, "looked": {"_count": 2, "like": {"_count": 1}, "through": {"_count": 1}}, "laid": {"_count": 2, "information": {"_count": 1}, "hands": {"_count": 1}}, "struggle": {"_count": 1, "you": {"_count": 1}}, "upon": {"_count": 1, "your": {"_count": 1}}, "seal": {"_count": 1, "the": {"_count": 1}}, "contradicting": {"_count": 1, "me": {"_count": 1}}, "control": {"_count": 1, "what": {"_count": 1}}, "Shut": {"_count": 1, "up": {"_count": 1}}, "side": {"_count": 1, "with": {"_count": 1}}, "Griphook": {"_count": 2, "": {"_count": 2}}, "Ted": {"_count": 1, "": {"_count": 1}}, "removed": {"_count": 1, "me": {"_count": 1}}, "Bathilda": {"_count": 1, "": {"_count": 1}}, "mental": {"_count": 2, "": {"_count": 2}}, "dived": {"_count": 1, "": {"_count": 1}}, "jumped": {"_count": 1, "in": {"_count": 1}}, "following": {"_count": 1, "": {"_count": 1}}, "stab": {"_count": 1, "it": {"_count": 1}}, "desire": {"_count": 1, "is": {"_count": 1}}, "happier": {"_count": 1, "without": {"_count": 1}}, "glad": {"_count": 1, "of": {"_count": 1}}, "beside": {"_count": 1, "Harry": {"_count": 1}}, "compared": {"_count": 1, "with": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "111": {"_count": 1, "stop": {"_count": 1}}, "personally": {"_count": 1, "": {"_count": 1}}, "referring": {"_count": 1, "to": {"_count": 1}}, "young": {"_count": 1, "lady": {"_count": 1}}, "kept": {"_count": 1, "your": {"_count": 1}}, "immortal": {"_count": 1, "a": {"_count": 1}}, "maintain": {"_count": 1, "as": {"_count": 1}}, "has": {"_count": 1, "got": {"_count": 1}}, "ugly": {"_count": 1, "": {"_count": 1}}, "ginger": {"_count": 3, "": {"_count": 3}}, "girly": {"_count": 1, "": {"_count": 1}}, "wore": {"_count": 1, "glasses": {"_count": 1}}, "summon": {"_count": 1, "im": {"_count": 1}}, "defy": {"_count": 1, "your": {"_count": 1}}, "mend": {"_count": 1, "this": {"_count": 1}}, "identify": {"_count": 1, "these": {"_count": 1}}, "\u2018worthy": {"_count": 1, "to": {"_count": 1}}, "explain": {"_count": 1, "how": {"_count": 1}}, "Thats": {"_count": 1, "great": {"_count": 1}}, "wonder": {"_count": 1, "why": {"_count": 1}}, "Bill": {"_count": 1, "": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}, "missy": {"_count": 1, "": {"_count": 1}}, "close": {"_count": 1, "the": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "pretty": {"_count": 1, "skint": {"_count": 1}}, "neednt": {"_count": 1, "wake": {"_count": 1}}, "search": {"_count": 1, "for": {"_count": 1}}, "Pomona": {"_count": 1, "said": {"_count": 1}}, "blithering": {"_count": 1, "idiot": {"_count": 1}}, "fool": {"_count": 1, "Peevesl": {"_count": 1}}, "Peakes": {"_count": 1, "": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "thanks": {"_count": 1, "": {"_count": 1}}, "theirs": {"_count": 1, "": {"_count": 1}}, "wreck": {"_count": 1, "the": {"_count": 1}}, "joke": {"_count": 1, "since": {"_count": 1}}, "twofaced": {"_count": 1, "bastard": {"_count": 1}}, "understands": {"_count": 1, "Potter": {"_count": 1}}, "Let": {"_count": 1, "me": {"_count": 1}}, "James": {"_count": 1, "Potter": {"_count": 1}}, "Mudblood": {"_count": 1, "it": {"_count": 1}}, "relay": {"_count": 1, "to": {"_count": 1}}, "truly": {"_count": 1, "loved": {"_count": 1}}, "insist": {"_count": 1, "": {"_count": 1}}, "tempted": {"_count": 1, "to": {"_count": 1}}, "realized": {"_count": 1, "that": {"_count": 1}}, "intending": {"_count": 1, "to": {"_count": 1}}, "place": {"_count": 1, "yourself": {"_count": 1}}, "agreed": {"_count": 1, "to": {"_count": 1}}, "shall": {"_count": 2, "not": {"_count": 1}, "be": {"_count": 1}}, "grown": {"_count": 1, "to": {"_count": 1}}, "recognized": {"_count": 1, "a": {"_count": 1}}, "forgive": {"_count": 2, "me": {"_count": 2}}, "Then": {"_count": 1, "you": {"_count": 1}}, "possessed": {"_count": 1, "that": {"_count": 1}}, "planned": {"_count": 1, "your": {"_count": 1}}, "his": {"_count": 1, "body": {"_count": 1}}, "crouched": {"_count": 1, "and": {"_count": 1}}, "dying": {"_count": 1, "now": {"_count": 1}}, "Riddle": {"_count": 2, "": {"_count": 2}}, "threatened": {"_count": 1, "her": {"_count": 1}}, "little": {"_count": 1, "boy": {"_count": 1}}, "murdered": {"_count": 1, "the": {"_count": 1}}, "beat": {"_count": 1, "him": {"_count": 1}}, "inherited": {"_count": 1, "your": {"_count": 1}}, "married": {"_count": 1, "a": {"_count": 1}}}, "very": {"_count": 1921, "much": {"_count": 74, "": {"_count": 18}, "Severus": {"_count": 1}, "Minister": {"_count": 1}, "indeed": {"_count": 1}, "whether": {"_count": 1}, "said": {"_count": 5}, "like": {"_count": 2}, "mistaken": {"_count": 4}, "but": {"_count": 1}, "sir": {"_count": 1}, "in": {"_count": 1}, "if": {"_count": 2}, "that": {"_count": 6}, "to": {"_count": 2}, "as": {"_count": 2}, "wanted": {"_count": 2}, "just": {"_count": 1}, "though": {"_count": 1}, "Mundungus": {"_count": 1}, "Luna": {"_count": 1}, "looking": {"_count": 1}, "Professor": {"_count": 3}, "Ernie": {"_count": 1}, "it": {"_count": 1}, "at": {"_count": 2}, "on": {"_count": 1}, "wrong": {"_count": 1}, "had": {"_count": 1}, "hope": {"_count": 1}, "have": {"_count": 1}, "anymore": {"_count": 1}, "and": {"_count": 1}, "perhaps": {"_count": 1}, "ever": {"_count": 1}, "Master": {"_count": 1}, "for": {"_count": 1}, "ended": {"_count": 1}}, "large": {"_count": 15, "mustache": {"_count": 1}, "and": {"_count": 5}, "box": {"_count": 1}, "tank": {"_count": 1}, "was": {"_count": 1}, "lunch": {"_count": 1}, "collection": {"_count": 1}, "BlastEnded": {"_count": 1}, "round": {"_count": 1}, "bubble": {"_count": 1}, "shaggy": {"_count": 1}}, "useful": {"_count": 2, "as": {"_count": 1}, "when": {"_count": 1}}, "good": {"_count": 64, "mood": {"_count": 2}, "": {"_count": 6}, "is": {"_count": 1}, "chance": {"_count": 2}, "player": {"_count": 1}, "for": {"_count": 1}, "omen": {"_count": 1}, "reason": {"_count": 3}, "audience": {"_count": 1}, "looking": {"_count": 1}, "at": {"_count": 4}, "Quidditch": {"_count": 2}, "broom": {"_count": 1}, "company": {"_count": 1}, "teacher": {"_count": 2}, "too": {"_count": 1}, "friend": {"_count": 1}, "flier": {"_count": 1}, "job": {"_count": 2}, "month": {"_count": 1}, "Potter": {"_count": 1}, "indeed": {"_count": 1}, "way": {"_count": 1}, "Head": {"_count": 1}, "she": {"_count": 1}, "swimmer": {"_count": 1}, "already": {"_count": 1}, "considering": {"_count": 1}, "business": {"_count": 1}, "fight": {"_count": 1}, "with": {"_count": 1}, "show": {"_count": 1}, "friends": {"_count": 1}, "said": {"_count": 1}, "idea": {"_count": 2}, "poor": {"_count": 1}, "fifty": {"_count": 1}, "Minister": {"_count": 1}, "price": {"_count": 1}, "time": {"_count": 1}, "imitation": {"_count": 1}, "wizard": {"_count": 1}, "interrupted": {"_count": 1}, "not": {"_count": 1}, "Occlumens": {"_count": 1}, "snapped": {"_count": 1}, "Bills": {"_count": 1}, "hiding": {"_count": 1}}, "unusually": {"_count": 1, "today": {"_count": 1}}, "well": {"_count": 60, "what": {"_count": 1}, "thought": {"_count": 1}, "on": {"_count": 2}, "she": {"_count": 1}, "he": {"_count": 3}, "said": {"_count": 6}, "groomed": {"_count": 1}, "by": {"_count": 1}, "until": {"_count": 1}, "both": {"_count": 1}, "": {"_count": 9}, "informed": {"_count": 1}, "did": {"_count": 1}, "Snape": {"_count": 1}, "its": {"_count": 1}, "but": {"_count": 2}, "for": {"_count": 2}, "very": {"_count": 1}, "snapped": {"_count": 1}, "connected": {"_count": 1}, "even": {"_count": 1}, "because": {"_count": 1}, "placed": {"_count": 1}, "whereas": {"_count": 1}, "indeed": {"_count": 1}, "though": {"_count": 1}, "respected": {"_count": 1}, "Neville": {"_count": 1}, "know": {"_count": 5}, "you": {"_count": 2}, "Potter": {"_count": 1}, "then": {"_count": 1}, "thoughtout": {"_count": 1}, "done": {"_count": 1}, "were": {"_count": 1}, "Harry": {"_count": 1}, "Severus": {"_count": 1}}, "wrong": {"_count": 4, "he": {"_count": 1}, "boys": {"_count": 1}, "indeed": {"_count": 1}, "of": {"_count": 1}}, "old": {"_count": 19, "judging": {"_count": 1}, "indeed": {"_count": 1}, "and": {"_count": 2}, "very": {"_count": 2}, "library": {"_count": 1}, "always": {"_count": 1}, "piece": {"_count": 2}, "wizard": {"_count": 2}, "pair": {"_count": 1}, "he": {"_count": 1}, "family": {"_count": 1}, "": {"_count": 1}, "stooped": {"_count": 1}, "houseelf": {"_count": 1}, "wand": {"_count": 1}}, "long": {"_count": 40, "and": {"_count": 2}, "purple": {"_count": 1}, "fingers": {"_count": 1}, "day": {"_count": 2}, "dimly": {"_count": 1}, "time": {"_count": 16}, "": {"_count": 4}, "very": {"_count": 1}, "fleshcolored": {"_count": 1}, "even": {"_count": 1}, "letter": {"_count": 1}, "life": {"_count": 1}, "tiring": {"_count": 1}, "article": {"_count": 1}, "hours": {"_count": 1}, "highpitched": {"_count": 1}, "piece": {"_count": 1}, "but": {"_count": 1}, "unless": {"_count": 1}, "way": {"_count": 1}}, "day": {"_count": 3, "YouKnowWho": {"_count": 1}, "shaken": {"_count": 1}, "not": {"_count": 1}}, "odd": {"_count": 18, "watch": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 2}, "up": {"_count": 1}, "places": {"_count": 1}, "next": {"_count": 1}, "strained": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 2}, "was": {"_count": 1}, "indeed": {"_count": 1}, "place": {"_count": 1}, "happened": {"_count": 1}, "the": {"_count": 1}, "Tonks": {"_count": 1}, "wizard": {"_count": 1}}, "seriously": {"_count": 14, "over": {"_count": 1}, "": {"_count": 5}, "around": {"_count": 1}, "So": {"_count": 1}, "whoever": {"_count": 1}, "Yeh": {"_count": 1}, "at": {"_count": 2}, "his": {"_count": 1}, "or": {"_count": 1}}, "scratchy": {"_count": 1, "whiskery": {"_count": 1}}, "sad": {"_count": 4, "but": {"_count": 1}, "about": {"_count": 2}, "because": {"_count": 1}}, "muffled": {"_count": 1, "voice": {"_count": 1}}, "last": {"_count": 28, "place": {"_count": 1}, "time": {"_count": 1}, "one": {"_count": 1}, "exam": {"_count": 1}, "thing": {"_count": 5}, "person": {"_count": 2}, "hope": {"_count": 2}, "of": {"_count": 2}, "weekend": {"_count": 1}, "rays": {"_count": 1}, "second": {"_count": 2}, "cubicle": {"_count": 1}, "day": {"_count": 2}, "carriage": {"_count": 2}, "subject": {"_count": 1}, "moment": {"_count": 1}, "house": {"_count": 1}, "recollection": {"_count": 1}}, "moment": {"_count": 14, "people": {"_count": 1}, "": {"_count": 4}, "something": {"_count": 1}, "up": {"_count": 1}, "a": {"_count": 1}, "Hermione": {"_count": 1}, "when": {"_count": 1}, "wizards": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "fat": {"_count": 3, "and": {"_count": 1}, "woman": {"_count": 2}}, "fast": {"_count": 47, "": {"_count": 12}, "about": {"_count": 1}, "he": {"_count": 3}, "the": {"_count": 1}, "and": {"_count": 3}, "something": {"_count": 1}, "Harry": {"_count": 2}, "in": {"_count": 3}, "swerve": {"_count": 1}, "backward": {"_count": 1}, "as": {"_count": 3}, "completely": {"_count": 1}, "his": {"_count": 1}, "PEEVES": {"_count": 1}, "Mistress": {"_count": 1}, "walk": {"_count": 1}, "along": {"_count": 1}, "feverish": {"_count": 1}, "indeed": {"_count": 2}, "Snitch": {"_count": 1}, "now": {"_count": 1}, "they": {"_count": 1}, "but": {"_count": 1}, "growing": {"_count": 1}, "Apparently": {"_count": 1}, "Actually": {"_count": 1}}, "thin": {"_count": 7, "scar": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 2}, "woman": {"_count": 1}, "and": {"_count": 1}, "spindly": {"_count": 1}}, "nasty": {"_count": 10, "that": {"_count": 1}, "": {"_count": 1}, "position": {"_count": 1}, "silence": {"_count": 2}, "look": {"_count": 2}, "smell": {"_count": 1}, "and": {"_count": 1}, "temper": {"_count": 1}}, "angry": {"_count": 9, "letter": {"_count": 1}, "moved": {"_count": 1}, "with": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 2}, "look": {"_count": 1}, "indeed": {"_count": 1}, "repeated": {"_count": 1}}, "sunny": {"_count": 1, "Saturday": {"_count": 1}}, "slowly": {"_count": 24, "it": {"_count": 2}, "and": {"_count": 4}, "": {"_count": 5}, "dragging": {"_count": 1}, "he": {"_count": 2}, "from": {"_count": 2}, "as": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 2}, "his": {"_count": 2}, "toward": {"_count": 1}, "Slughorn": {"_count": 1}}, "funny": {"_count": 12, "": {"_count": 3}, "feeling": {"_count": 1}, "story": {"_count": 2}, "going": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 1}, "Hermione": {"_count": 1}, "again": {"_count": 1}, "things": {"_count": 1}}, "confused": {"_count": 3, "milkman": {"_count": 1}, "youve": {"_count": 1}, "thoughts": {"_count": 1}}, "cold": {"_count": 14, "outside": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 1}, "voice": {"_count": 1}, "by": {"_count": 1}, "look": {"_count": 2}, "because": {"_count": 1}, "trickled": {"_count": 1}, "now": {"_count": 1}}, "happy": {"_count": 19, "birthday": {"_count": 2}, "": {"_count": 4}, "about": {"_count": 3}, "memory": {"_count": 1}, "with": {"_count": 6}, "to": {"_count": 1}, "indeed": {"_count": 1}, "if": {"_count": 1}}, "pale": {"_count": 6, "whispered": {"_count": 1}, "": {"_count": 3}, "eyebrows": {"_count": 1}, "indeed": {"_count": 1}}, "white": {"_count": 15, "": {"_count": 4}, "left": {"_count": 1}, "and": {"_count": 6}, "even": {"_count": 1}, "gave": {"_count": 1}, "in": {"_count": 2}}, "dirty": {"_count": 5, "spotted": {"_count": 1}, "room": {"_count": 1}, "bottles": {"_count": 1}, "look": {"_count": 2}}, "painful": {"_count": 5, "was": {"_count": 1}, "death": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "difficult": {"_count": 26, "hed": {"_count": 1}, "Youll": {"_count": 1}, "": {"_count": 3}, "ter": {"_count": 2}, "spells": {"_count": 1}, "now": {"_count": 1}, "to": {"_count": 9}, "indeed": {"_count": 2}, "business": {"_count": 1}, "for": {"_count": 2}, "time": {"_count": 1}, "job": {"_count": 1}, "some": {"_count": 1}}, "dark": {"_count": 8, "and": {"_count": 1}, "cloudy": {"_count": 1}, "when": {"_count": 1}, "now": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}, "not": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 5, "": {"_count": 3}, "of": {"_count": 2}}, "green": {"_count": 2, "and": {"_count": 2}}, "least": {"_count": 8, "but": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "every": {"_count": 1}, "we": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "special": {"_count": 1, "circumstances": {"_count": 1}}, "strict": {"_count": 4, "library": {"_count": 1}, "": {"_count": 2}, "Ministry": {"_count": 1}}, "dust": {"_count": 1, "and": {"_count": 1}}, "powerful": {"_count": 4, "and": {"_count": 1}, "smell": {"_count": 1}, "magical": {"_count": 1}, "Memory": {"_count": 1}}, "tightly": {"_count": 12, "as": {"_count": 1}, "": {"_count": 6}, "and": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}}, "curious": {"_count": 3, "": {"_count": 1}, "indeed": {"_count": 1}, "to": {"_count": 1}}, "quiet": {"_count": 13, "said": {"_count": 1}, "": {"_count": 8}, "voice": {"_count": 2}, "even": {"_count": 1}, "birthday": {"_count": 1}}, "kind": {"_count": 9, "smile": {"_count": 1}, "face": {"_count": 1}, "nature": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "of": {"_count": 1}, "Harry": {"_count": 2}}, "interesting": {"_count": 9, "": {"_count": 2}, "read": {"_count": 1}, "place": {"_count": 1}, "arent": {"_count": 2}, "anymore": {"_count": 1}, "question": {"_count": 1}, "said": {"_count": 1}}, "important": {"_count": 19, "": {"_count": 4}, "ceremony": {"_count": 1}, "too": {"_count": 1}, "anymore": {"_count": 1}, "I": {"_count": 1}, "day": {"_count": 1}, "wizards": {"_count": 1}, "for": {"_count": 2}, "he": {"_count": 1}, "that": {"_count": 2}, "story": {"_count": 1}, "job": {"_count": 1}, "why": {"_count": 1}, "news": {"_count": 1}}, "solid": {"_count": 2, "": {"_count": 2}}, "stern": {"_count": 2, "": {"_count": 1}, "face": {"_count": 1}}, "batteredlooking": {"_count": 1, "wand": {"_count": 1}}, "best": {"_count": 8, "school": {"_count": 1}, "wishes": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}, "thing": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "efforts": {"_count": 1}}, "childishly": {"_count": 1, "racing": {"_count": 1}}, "nervous": {"_count": 4, "": {"_count": 2}, "speaking": {"_count": 1}, "now": {"_count": 1}}, "peculiar": {"_count": 2, "in": {"_count": 1}, "noises": {"_count": 1}}, "suddenly": {"_count": 6, "": {"_count": 2}, "on": {"_count": 1}, "because": {"_count": 1}, "Crookshanks": {"_count": 1}, "knocking": {"_count": 1}}, "slow": {"_count": 5, "funeral": {"_count": 1}, "and": {"_count": 1}, "work": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "end": {"_count": 18, "of": {"_count": 13}, "": {"_count": 2}, "and": {"_count": 1}, "a": {"_count": 1}, "said": {"_count": 1}}, "strange": {"_count": 15, "dream": {"_count": 2}, "": {"_count": 4}, "angle": {"_count": 1}, "things": {"_count": 1}, "sight": {"_count": 1}, "to": {"_count": 2}, "mood": {"_count": 1}, "location": {"_count": 1}, "sometimes": {"_count": 1}, "happened": {"_count": 1}}, "hard": {"_count": 45, "to": {"_count": 19}, "on": {"_count": 3}, "as": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 3}, "not": {"_count": 1}, "indeed": {"_count": 1}, "against": {"_count": 2}, "pinch": {"_count": 1}, "at": {"_count": 2}, "his": {"_count": 1}, "squealing": {"_count": 1}, "too": {"_count": 1}, "spilling": {"_count": 1}, "over": {"_count": 1}, "with": {"_count": 1}, "neither": {"_count": 1}, "from": {"_count": 1}, "while": {"_count": 1}}, "first": {"_count": 10, "morning": {"_count": 1}, "week": {"_count": 1}, "piece": {"_count": 1}, "train": {"_count": 1}, "journey": {"_count": 1}, "time": {"_count": 1}, "day": {"_count": 1}, "meeting": {"_count": 2}, "evening": {"_count": 1}}, "impressed": {"_count": 3, "and": {"_count": 1}, "youve": {"_count": 1}, "by": {"_count": 1}}, "relieved": {"_count": 3, "to": {"_count": 2}, "He": {"_count": 1}}, "untidy": {"_count": 4, "scrawl": {"_count": 1}, "": {"_count": 1}, "black": {"_count": 1}, "and": {"_count": 1}}, "pleased": {"_count": 17, "when": {"_count": 1}, "with": {"_count": 5}, "to": {"_count": 6}, "about": {"_count": 1}, "": {"_count": 2}, "too": {"_count": 1}, "that": {"_count": 1}}, "selfish": {"_count": 1, "of": {"_count": 1}}, "bad": {"_count": 11, "mood": {"_count": 3}, "temper": {"_count": 1}, "Dobby": {"_count": 1}, "for": {"_count": 1}, "feeling": {"_count": 1}, "wizard": {"_count": 1}, "about": {"_count": 1}, "or": {"_count": 1}, "news": {"_count": 1}}, "brave": {"_count": 5, "and": {"_count": 2}, "wasnt": {"_count": 1}, "then": {"_count": 1}, "of": {"_count": 1}}, "stupid": {"_count": 3, "He": {"_count": 1}, "but": {"_count": 1}, "thing": {"_count": 1}}, "disappointed": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "embarrassed": {"_count": 2, "pause": {"_count": 1}, "as": {"_count": 1}}, "noisy": {"_count": 4, "that": {"_count": 1}, "tears": {"_count": 1}, "because": {"_count": 1}, "affair": {"_count": 1}}, "nice": {"_count": 17, "but": {"_count": 1}, "and": {"_count": 1}, "place": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}, "little": {"_count": 1}, "indeed": {"_count": 2}, "man": {"_count": 1}, "thing": {"_count": 2}, "person": {"_count": 1}, "of": {"_count": 1}, "change": {"_count": 1}, "reading": {"_count": 1}}, "bright": {"_count": 6, "and": {"_count": 1}, "spotlight": {"_count": 2}, "of": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}}, "hopeful": {"_count": 1, "": {"_count": 1}}, "small": {"_count": 22, "parcel": {"_count": 1}, "pile": {"_count": 1}, "mousyhaired": {"_count": 2}, "very": {"_count": 1}, "slugs": {"_count": 1}, "package": {"_count": 1}, "and": {"_count": 3}, "improvement": {"_count": 1}, "voice": {"_count": 2}, "child": {"_count": 1}, "boy": {"_count": 1}, "watery": {"_count": 1}, "": {"_count": 2}, "wink": {"_count": 1}, "Harry": {"_count": 1}, "unbiased": {"_count": 1}, "girl": {"_count": 1}}, "lumpy": {"_count": 1, "parcel": {"_count": 1}}, "tasty": {"_count": 1, "": {"_count": 1}}, "light": {"_count": 3, "": {"_count": 2}, "breeze": {"_count": 1}}, "eerie": {"_count": 1, "": {"_count": 1}}, "heavy": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "load": {"_count": 1}}, "close": {"_count": 18, "": {"_count": 1}, "to": {"_count": 13}, "together": {"_count": 2}, "at": {"_count": 1}, "call": {"_count": 1}}, "pretty": {"_count": 10, "woman": {"_count": 1}, "girl": {"_count": 3}, "it": {"_count": 1}, "she": {"_count": 1}, "indeed": {"_count": 1}, "even": {"_count": 1}, "with": {"_count": 1}, "arent": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "heart": {"_count": 7, "of": {"_count": 6}, "": {"_count": 1}}, "dangerous": {"_count": 5, "and": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "edge": {"_count": 8, "of": {"_count": 7}, "tense": {"_count": 1}}, "worried": {"_count": 4, "": {"_count": 2}, "very": {"_count": 1}, "croaked": {"_count": 1}}, "glad": {"_count": 8, "they": {"_count": 2}, "the": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}, "theyve": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}}, "scared": {"_count": 3, "until": {"_count": 1}, "Im": {"_count": 1}, "Harry": {"_count": 1}}, "frightened": {"_count": 5, "but": {"_count": 2}, "": {"_count": 3}}, "imprecise": {"_count": 1, "branch": {"_count": 1}}, "fishy": {"_count": 2, "thing": {"_count": 1}, "family": {"_count": 1}}, "great": {"_count": 13, "wizard": {"_count": 3}, "pleasure": {"_count": 2}, "relief": {"_count": 1}, "surprise": {"_count": 2}, "": {"_count": 2}, "deal": {"_count": 2}, "astonishment": {"_count": 1}}, "vicious": {"_count": 1, "but": {"_count": 1}}, "battered": {"_count": 3, "now": {"_count": 1}, "copy": {"_count": 1}, "looking": {"_count": 1}}, "frightening": {"_count": 4, "in": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "hygienic": {"_count": 1, "and": {"_count": 1}}, "very": {"_count": 12, "long": {"_count": 2}, "advanced": {"_count": 1}, "strange": {"_count": 1}, "interesting": {"_count": 1}, "close": {"_count": 2}, "much": {"_count": 2}, "many": {"_count": 1}, "gallant": {"_count": 1}, "sorry": {"_count": 1}}, "deeply": {"_count": 2, "this": {"_count": 1}, "that": {"_count": 1}}, "skin": {"_count": 1, "": {"_count": 1}}, "interested": {"_count": 12, "in": {"_count": 10}, "to": {"_count": 1}, "": {"_count": 1}}, "sore": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 7, "": {"_count": 2}, "and": {"_count": 1}, "staring": {"_count": 1}, "one": {"_count": 1}, "with": {"_count": 1}, "like": {"_count": 1}}, "sight": {"_count": 1, "of": {"_count": 1}}, "mysterious": {"_count": 1, "past": {"_count": 1}}, "thing": {"_count": 4, "Harry": {"_count": 1}, "that": {"_count": 1}, "they": {"_count": 1}, "Dumbledore": {"_count": 1}}, "ugly": {"_count": 5, "doll": {"_count": 1}, "look": {"_count": 3}, "dummy": {"_count": 1}}, "disturbed": {"_count": 2, "meeting": {"_count": 1}, "by": {"_count": 1}}, "common": {"_count": 2, "name": {"_count": 1}, "gift": {"_count": 1}}, "oddly": {"_count": 2, "this": {"_count": 1}, "indeed": {"_count": 1}}, "rusty": {"_count": 1, "cauldron": {"_count": 1}}, "sweet": {"_count": 3, "of": {"_count": 1}, "Snape": {"_count": 1}, "togezzer": {"_count": 1}}, "audible": {"_count": 1, "whisper": {"_count": 1}}, "prone": {"_count": 1, "to": {"_count": 1}}, "busy": {"_count": 8, "with": {"_count": 1}, "said": {"_count": 1}, "very": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 3}, "nobody": {"_count": 1}}, "reasonably": {"_count": 1, "priced": {"_count": 1}}, "ambitious": {"_count": 1, "Percy": {"_count": 1}}, "different": {"_count": 10, "idea": {"_count": 1}, "from": {"_count": 2}, "voice": {"_count": 1}, "": {"_count": 1}, "smile": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "around": {"_count": 1}, "reasons": {"_count": 1}}, "late": {"_count": 6, "and": {"_count": 2}, "Harry": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "pleasure": {"_count": 1}}, "deep": {"_count": 7, "trouble": {"_count": 1}, "down": {"_count": 1}, "": {"_count": 1}, "sleep": {"_count": 1}, "the": {"_count": 1}, "sigh": {"_count": 1}, "shade": {"_count": 1}}, "valuable": {"_count": 6, "Whomping": {"_count": 1}, "Dark": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 1}, "Death": {"_count": 1}}, "crooked": {"_count": 2, "nose": {"_count": 2}}, "young": {"_count": 2, "": {"_count": 1}, "man": {"_count": 1}}, "back": {"_count": 6, "of": {"_count": 4}, "chapter": {"_count": 1}, "a": {"_count": 1}}, "grumpy": {"_count": 2, "but": {"_count": 1}, "with": {"_count": 1}}, "big": {"_count": 3, "this": {"_count": 1}, "with": {"_count": 1}, "cat": {"_count": 1}}, "reverse": {"_count": 1, "of": {"_count": 1}}, "countercurse": {"_count": 1, "that": {"_count": 1}}, "similar": {"_count": 2, "happening": {"_count": 1}, "to": {"_count": 1}}, "farfetched": {"_count": 1, "if": {"_count": 1}}, "awkward": {"_count": 1, "pause": {"_count": 1}}, "sensational": {"_count": 1, "even": {"_count": 1}}, "corridor": {"_count": 1, "where": {"_count": 1}}, "next": {"_count": 5, "Defense": {"_count": 1}, "day": {"_count": 2}, "morning": {"_count": 2}}, "favorite": {"_count": 1, "book": {"_count": 1}}, "unpleasant": {"_count": 2, "illustrations": {"_count": 1}, "": {"_count": 1}}, "stiff": {"_count": 2, "": {"_count": 1}, "leg": {"_count": 1}}, "suspicious": {"_count": 4, "": {"_count": 1}, "if": {"_count": 2}, "said": {"_count": 1}}, "obvious": {"_count": 3, "what": {"_count": 1}, "": {"_count": 1}, "tick": {"_count": 1}}, "near": {"_count": 6, "miss": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 2}, "Harry": {"_count": 1}}, "ill": {"_count": 2, "": {"_count": 1}, "person": {"_count": 1}}, "somber": {"_count": 2, "": {"_count": 2}}, "handsome": {"_count": 5, "most": {"_count": 1}, "darkhaired": {"_count": 1}, "little": {"_count": 1}, "": {"_count": 2}}, "early": {"_count": 5, "by": {"_count": 1}, "and": {"_count": 1}, "memories": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}}, "ends": {"_count": 1, "of": {"_count": 1}}, "forced": {"_count": 2, "laugh": {"_count": 1}, "conversation": {"_count": 1}}, "own": {"_count": 2, "ink": {"_count": 1}, "that": {"_count": 1}}, "dungeon": {"_count": 1, "in": {"_count": 1}}, "serious": {"_count": 11, "worry": {"_count": 1}, "voice": {"_count": 2}, "I": {"_count": 1}, "": {"_count": 1}, "trouble": {"_count": 1}, "for": {"_count": 1}, "indeed": {"_count": 1}, "accusation": {"_count": 1}, "look": {"_count": 1}, "problem": {"_count": 1}}, "irksome": {"_count": 1, "": {"_count": 1}}, "subdued": {"_count": 3, "there": {"_count": 1}, "in": {"_count": 1}, "all": {"_count": 1}}, "formally": {"_count": 1, "I": {"_count": 1}}, "crowded": {"_count": 2, "these": {"_count": 1}, "as": {"_count": 1}}, "quickly": {"_count": 8, "now": {"_count": 2}, "": {"_count": 2}, "and": {"_count": 1}, "he": {"_count": 1}, "Ginny": {"_count": 1}, "that": {"_count": 1}}, "center": {"_count": 4, "of": {"_count": 4}}, "sleepy": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "too": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "uncomfortable": {"_count": 5, "": {"_count": 1}, "feeling": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 1}, "ten": {"_count": 1}}, "stall": {"_count": 1, "": {"_count": 1}}, "pregnant": {"_count": 1, "pause": {"_count": 1}}, "dry": {"_count": 5, "": {"_count": 4}, "now": {"_count": 1}}, "boring": {"_count": 2, "having": {"_count": 1}, "": {"_count": 1}}, "amusing": {"_count": 4, "": {"_count": 2}, "oh": {"_count": 1}, "she": {"_count": 1}}, "person": {"_count": 1, "I": {"_count": 1}}, "worst": {"_count": 4, "of": {"_count": 1}, "thing": {"_count": 1}, "": {"_count": 1}, "part": {"_count": 1}}, "rare": {"_count": 4, "gift": {"_count": 1}, "and": {"_count": 1}, "effect": {"_count": 1}, "steaks": {"_count": 1}}, "carefully": {"_count": 6, "he": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}, "into": {"_count": 1}}, "medieval": {"_count": 1, "attitude": {"_count": 1}}, "loud": {"_count": 4, "voices": {"_count": 1}, "crashing": {"_count": 1}, "hoot": {"_count": 1}, "crack": {"_count": 1}}, "exciting": {"_count": 3, "and": {"_count": 1}, "mind": {"_count": 1}, "event": {"_count": 1}}, "little": {"_count": 24, "neck": {"_count": 1}, "I": {"_count": 1}, "aura": {"_count": 1}, "patience": {"_count": 1}, "time": {"_count": 3}, "and": {"_count": 1}, "because": {"_count": 1}, "progress": {"_count": 2}, "daylight": {"_count": 2}, "then": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 2}, "cooperation": {"_count": 1}, "traffic": {"_count": 1}, "air": {"_count": 1}, "effort": {"_count": 1}, "to": {"_count": 2}, "English": {"_count": 1}}, "like": {"_count": 9, "Uncle": {"_count": 1}, "her": {"_count": 2}, "your": {"_count": 2}, "his": {"_count": 1}, "Stinksap": {"_count": 1}, "tonight": {"_count": 1}, "the": {"_count": 1}}, "firm": {"_count": 1, "grip": {"_count": 1}}, "red": {"_count": 9, "": {"_count": 2}, "and": {"_count": 1}, "put": {"_count": 1}, "in": {"_count": 2}, "indeed": {"_count": 1}, "his": {"_count": 1}, "eyes": {"_count": 1}}, "thick": {"_count": 4, "glasses": {"_count": 1}, "gloves": {"_count": 1}, "neck": {"_count": 1}, "layer": {"_count": 1}}, "comfortable": {"_count": 2, "": {"_count": 1}, "lying": {"_count": 1}}, "sorry": {"_count": 9, "Harry": {"_count": 1}, "indeed": {"_count": 1}, "to": {"_count": 3}, "he": {"_count": 1}, "Professor": {"_count": 1}, "but": {"_count": 1}, "I": {"_count": 1}}, "comfortablelooking": {"_count": 1, "bed": {"_count": 1}}, "weird": {"_count": 1, "night": {"_count": 1}}, "formidablelooking": {"_count": 1, "grandmother": {"_count": 1}}, "brown": {"_count": 1, "both": {"_count": 1}}, "strained": {"_count": 3, "": {"_count": 1}, "smile": {"_count": 1}, "and": {"_count": 1}}, "taken": {"_count": 4, "with": {"_count": 2}, "aback": {"_count": 2}}, "idea": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "enjoyable": {"_count": 3, "affair": {"_count": 1}, "lesson": {"_count": 1}, "morning": {"_count": 1}}, "full": {"_count": 1, "and": {"_count": 1}}, "remote": {"_count": 1, "": {"_count": 1}}, "uneventful": {"_count": 1, "compared": {"_count": 1}}, "cheap": {"_count": 1, "one": {"_count": 1}}, "sick": {"_count": 3, "when": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "tired": {"_count": 1, "now": {"_count": 1}}, "tense": {"_count": 4, "silence": {"_count": 1}, "": {"_count": 1}, "voice": {"_count": 1}, "at": {"_count": 1}}, "matterof": {"_count": 1, "fact": {"_count": 1}}, "woolly": {"_count": 1, "she": {"_count": 1}}, "easy": {"_count": 3, "Malfoy": {"_count": 1}, "to": {"_count": 2}}, "offputting": {"_count": 1, "but": {"_count": 1}}, "mistake": {"_count": 1, "tried": {"_count": 1}}, "clearly": {"_count": 7, "Neville": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "of": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}}, "mention": {"_count": 1, "of": {"_count": 1}}, "eyes": {"_count": 3, "": {"_count": 1}, "the": {"_count": 2}}, "brittle": {"_count": 1, "": {"_count": 1}}, "kindly": {"_count": 3, "concocted": {"_count": 1}, "did": {"_count": 1}, "invited": {"_count": 1}}, "lucky": {"_count": 11, "to": {"_count": 4}, "he": {"_count": 2}, "I": {"_count": 1}, "Rita": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "distressed": {"_count": 1, "but": {"_count": 1}}, "slightly": {"_count": 11, "off": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 1}, "as": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 1}, "closer": {"_count": 1}}, "exposed": {"_count": 1, "Potter": {"_count": 1}}, "strong": {"_count": 6, "side": {"_count": 1}, "tea": {"_count": 1}, "": {"_count": 2}, "inclination": {"_count": 1}, "see": {"_count": 1}}, "smug": {"_count": 2, "indeed": {"_count": 1}, "about": {"_count": 1}}, "behind": {"_count": 2, "you": {"_count": 1}, "on": {"_count": 1}}, "apprehensive": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "violent": {"_count": 2, "tree": {"_count": 1}, "bishop": {"_count": 1}}, "inconvenient": {"_count": 1, "time": {"_count": 1}}, "grateful": {"_count": 1, "": {"_count": 1}}, "worn": {"_count": 1, "piece": {"_count": 1}}, "narrow": {"_count": 3, "low": {"_count": 1}, "": {"_count": 1}, "tunnel": {"_count": 1}}, "clear": {"_count": 6, "idea": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "instructions": {"_count": 1}}, "skinny": {"_count": 2, "patches": {"_count": 1}, "indeed": {"_count": 1}}, "miserable": {"_count": 1, "if": {"_count": 1}}, "grave": {"_count": 1, "announcement": {"_count": 1}}, "luckily": {"_count": 1, "I": {"_count": 1}}, "things": {"_count": 1, "that": {"_count": 1}}, "short": {"_count": 10, "space": {"_count": 1}, "man": {"_count": 1}, "and": {"_count": 1}, "list": {"_count": 1}, "time": {"_count": 1}, "gray": {"_count": 1}, "letter": {"_count": 1}, "wiry": {"_count": 1}, "legs": {"_count": 1}, "journey": {"_count": 1}}, "complicatedlooking": {"_count": 1, "number": {"_count": 1}}, "fine": {"_count": 7, "old": {"_count": 1}, "gold": {"_count": 1}, "indeed": {"_count": 1}, "powder": {"_count": 1}, "person": {"_count": 1}, "Headmaster": {"_count": 1}, "": {"_count": 1}}, "sharply": {"_count": 1, "she": {"_count": 1}}, "horrible": {"_count": 2, "yellowandorange": {"_count": 1}, "hairy": {"_count": 1}}, "rarely": {"_count": 3, "there": {"_count": 1}, "heard": {"_count": 1}, "got": {"_count": 1}}, "rough": {"_count": 1, "crowd": {"_count": 1}}, "touching": {"_count": 2, "": {"_count": 1}, "sneered": {"_count": 1}}, "quick": {"_count": 3, "thinking": {"_count": 1}, "": {"_count": 1}, "succession": {"_count": 1}}, "awkwardly": {"_count": 2, "on": {"_count": 1}, "for": {"_count": 1}}, "thirsty": {"_count": 1, "": {"_count": 1}}, "front": {"_count": 3, "row": {"_count": 1}, "of": {"_count": 1}, "where": {"_count": 1}}, "grim": {"_count": 1, "smile": {"_count": 1}}, "severe": {"_count": 1, "punishments": {"_count": 1}}, "quietly": {"_count": 19, "": {"_count": 7}, "to": {"_count": 3}, "indeed": {"_count": 2}, "so": {"_count": 1}, "and": {"_count": 1}, "prodding": {"_count": 1}, "for": {"_count": 1}, "glancing": {"_count": 1}, "pushed": {"_count": 1}, "as": {"_count": 1}}, "preoccupied": {"_count": 1, "air": {"_count": 1}}, "upset": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "low": {"_count": 6, "tunnel": {"_count": 1}, "and": {"_count": 3}, "voice": {"_count": 2}}, "disordered": {"_count": 1, "dusty": {"_count": 1}}, "intently": {"_count": 5, "": {"_count": 2}, "at": {"_count": 2}, "for": {"_count": 1}}, "recent": {"_count": 1, "discovery": {"_count": 1}}, "breathless": {"_count": 1, "voice": {"_count": 1}}, "weak": {"_count": 3, "and": {"_count": 1}, "he": {"_count": 1}, "sharing": {"_count": 1}}, "groggy": {"_count": 1, "": {"_count": 1}}, "round": {"_count": 1, "": {"_count": 1}}, "bizarre": {"_count": 1, "dream": {"_count": 1}}, "shaken": {"_count": 1, "": {"_count": 1}}, "advanced": {"_count": 1, "magic": {"_count": 1}}, "tight": {"_count": 6, "around": {"_count": 1}, "corner": {"_count": 1}, "": {"_count": 1}, "holes": {"_count": 1}, "rubber": {"_count": 1}, "schedule": {"_count": 1}}, "blearyeyed": {"_count": 1, "Hagrid": {"_count": 1}}, "proud": {"_count": 3, "of": {"_count": 2}, "indeed": {"_count": 1}}, "noble": {"_count": 1, "thing": {"_count": 1}}, "fluffy": {"_count": 1, "Snitch": {"_count": 1}}, "deaf": {"_count": 1, "his": {"_count": 1}}, "gifted": {"_count": 4, "boy": {"_count": 1}, "Seer": {"_count": 1}, "witch": {"_count": 1}, "student": {"_count": 1}}, "sour": {"_count": 1, "look": {"_count": 1}}, "sarcastically": {"_count": 1, "": {"_count": 1}}, "resentfully": {"_count": 1, "Goodbye": {"_count": 1}}, "bushy": {"_count": 2, "brown": {"_count": 1}, "hair": {"_count": 1}}, "annoyed": {"_count": 2, "expression": {"_count": 1}, "that": {"_count": 1}}, "careful": {"_count": 7, "about": {"_count": 2}, "of": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 1}, "what": {"_count": 1}, "they": {"_count": 1}}, "friendly": {"_count": 2, "as": {"_count": 1}, "said": {"_count": 1}}, "windswept": {"_count": 2, "everybody": {"_count": 1}, "had": {"_count": 1}}, "inexpertly": {"_count": 1, "The": {"_count": 1}}, "surly": {"_count": 1, "face": {"_count": 1}}, "overgrown": {"_count": 2, "schoolboy": {"_count": 1}, "grass": {"_count": 1}}, "highly": {"_count": 5, "polished": {"_count": 1}, "of": {"_count": 3}, "colored": {"_count": 1}}, "pink": {"_count": 3, "around": {"_count": 1}, "and": {"_count": 2}}, "generous": {"_count": 1, "contribution": {"_count": 1}}, "impressive": {"_count": 2, "right": {"_count": 1}, "indeed": {"_count": 1}}, "rude": {"_count": 3, "sign": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "disgruntled": {"_count": 2, "that": {"_count": 1}, "turned": {"_count": 1}}, "offensive": {"_count": 2, "term": {"_count": 1}, "": {"_count": 1}}, "vulnerable": {"_count": 1, "": {"_count": 1}}, "raw": {"_count": 1, "deal": {"_count": 1}}, "loudly": {"_count": 12, "": {"_count": 4}, "so": {"_count": 3}, "closing": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 2}, "considering": {"_count": 1}}, "far": {"_count": 7, "but": {"_count": 1}, "away": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "there": {"_count": 1}, "just": {"_count": 1}}, "angrily": {"_count": 3, "": {"_count": 3}}, "surprised": {"_count": 8, "if": {"_count": 3}, "that": {"_count": 2}, "": {"_count": 2}, "therefore": {"_count": 1}}, "sensitive": {"_count": 1, "sort": {"_count": 1}}, "informative": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "shell": {"_count": 1, "shocked": {"_count": 1}}, "feeble": {"_count": 2, "and": {"_count": 1}, "joke": {"_count": 1}}, "fashionable": {"_count": 1, "in": {"_count": 1}}, "successful": {"_count": 1, "": {"_count": 1}}, "popular": {"_count": 6, "once": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "dinner": {"_count": 1}}, "entertaining": {"_count": 2, "and": {"_count": 1}, "results": {"_count": 1}}, "tactful": {"_count": 1, "way": {"_count": 1}}, "attentive": {"_count": 1, "in": {"_count": 1}}, "middle": {"_count": 7, "of": {"_count": 7}}, "heavily": {"_count": 3, "bandaged": {"_count": 2}, "now": {"_count": 1}}, "sure": {"_count": 1, "therefore": {"_count": 1}}, "cozy": {"_count": 1, "sitting": {"_count": 1}}, "cross": {"_count": 1, "indeed": {"_count": 1}}, "cautiously": {"_count": 1, "so": {"_count": 1}}, "real": {"_count": 1, "But": {"_count": 1}}, "tall": {"_count": 3, "all": {"_count": 1}, "figure": {"_count": 1}, "and": {"_count": 1}}, "aware": {"_count": 3, "of": {"_count": 3}}, "simple": {"_count": 4, "Karkaroff": {"_count": 1}, "Id": {"_count": 1}, "to": {"_count": 1}, "white": {"_count": 1}}, "anxious": {"_count": 3, "indeed": {"_count": 1}, "under": {"_count": 1}, "": {"_count": 1}}, "ingenious": {"_count": 2, "theory": {"_count": 1}, "Hermione": {"_count": 1}}, "melodramatic": {"_count": 1, "to": {"_count": 1}}, "patronizing": {"_count": 1, "look": {"_count": 1}}, "fond": {"_count": 5, "of": {"_count": 5}}, "risky": {"_count": 2, "especially": {"_count": 1}, "business": {"_count": 1}}, "suspiciously": {"_count": 1, "looking": {"_count": 1}}, "likely": {"_count": 1, "shed": {"_count": 1}}, "decent": {"_count": 1, "thing": {"_count": 1}}, "meaningfully": {"_count": 1, "at": {"_count": 1}}, "widely": {"_count": 1, "and": {"_count": 1}}, "brightly": {"_count": 1, "and": {"_count": 1}}, "final": {"_count": 1, "sort": {"_count": 1}}, "intrested": {"_count": 1, "in": {"_count": 1}}, "famous": {"_count": 3, "musical": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 1}}, "mischievously": {"_count": 1, "and": {"_count": 1}}, "shocked": {"_count": 3, "": {"_count": 3}}, "selfconscious": {"_count": 1, "but": {"_count": 1}}, "neat": {"_count": 4, "job": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}}, "frilly": {"_count": 1, "robes": {"_count": 1}}, "enthusiastically": {"_count": 1, "at": {"_count": 1}}, "dazed": {"_count": 1, "look": {"_count": 1}}, "soon": {"_count": 5, "many": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "because": {"_count": 1}}, "gracefully": {"_count": 1, "for": {"_count": 1}}, "smoothly": {"_count": 1, "since": {"_count": 1}}, "prominent": {"_count": 2, "chin": {"_count": 1}, "ears": {"_count": 1}}, "cool": {"_count": 2, "toward": {"_count": 1}, "people": {"_count": 1}}, "closely": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "clever": {"_count": 6, "": {"_count": 1}, "method": {"_count": 1}, "growled": {"_count": 1}, "plan": {"_count": 1}, "I": {"_count": 1}, "game": {"_count": 1}}, "satisfied": {"_count": 1, "about": {"_count": 1}}, "keen": {"_count": 4, "to": {"_count": 4}}, "abruptly": {"_count": 2, "her": {"_count": 1}, "": {"_count": 1}}, "hoarse": {"_count": 1, "voice": {"_count": 1}}, "glumlooking": {"_count": 1, "girl": {"_count": 1}}, "reluctant": {"_count": 2, "to": {"_count": 2}}, "dubious": {"_count": 1, "magical": {"_count": 1}}, "brain": {"_count": 1, "felt": {"_count": 1}}, "hot": {"_count": 5, "potion": {"_count": 1}, "on": {"_count": 1}, "soup": {"_count": 1}, "and": {"_count": 1}, "all": {"_count": 1}}, "superior": {"_count": 1, "": {"_count": 1}}, "familiar": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "voice": {"_count": 1}}, "foot": {"_count": 1, "of": {"_count": 1}}, "doglike": {"_count": 1, "way": {"_count": 1}}, "outspoken": {"_count": 1, "against": {"_count": 1}}, "harsh": {"_count": 1, "measures": {"_count": 1}}, "cheery": {"_count": 1, "welcome": {"_count": 1}}, "ashamed": {"_count": 1, "": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "straightforward": {"_count": 1, "": {"_count": 1}}, "often": {"_count": 1, "said": {"_count": 1}}, "firmly": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "veil": {"_count": 1, "": {"_count": 1}}, "fortunate": {"_count": 1, "indeed": {"_count": 1}}, "able": {"_count": 1, "headmistress": {"_count": 1}}, "beautiful": {"_count": 2, "circular": {"_count": 1}, "tiara": {"_count": 1}}, "noticeable": {"_count": 1, "difference": {"_count": 1}}, "same": {"_count": 8, "said": {"_count": 2}, "beech": {"_count": 1}, "large": {"_count": 1}, "": {"_count": 1}, "little": {"_count": 1}, "summer": {"_count": 1}, "thing": {"_count": 1}}, "grounds": {"_count": 1, "": {"_count": 1}}, "sharp": {"_count": 2, "look": {"_count": 1}, "and": {"_count": 1}}, "effective": {"_count": 1, "but": {"_count": 1}}, "chance": {"_count": 1, "I": {"_count": 1}}, "forest": {"_count": 1, "where": {"_count": 1}}, "bones": {"_count": 1, "were": {"_count": 1}}, "dimly": {"_count": 1, "Harry": {"_count": 1}}, "disappointing": {"_count": 2, "fathers": {"_count": 1}, "indeed": {"_count": 1}}, "bitterly": {"_count": 1, "": {"_count": 1}}, "clean": {"_count": 1, "cars": {"_count": 1}}, "hastily": {"_count": 1, "and": {"_count": 1}}, "whitefaced": {"_count": 1, "and": {"_count": 1}}, "powerfully": {"_count": 1, "at": {"_count": 1}}, "conscious": {"_count": 4, "of": {"_count": 3}, "that": {"_count": 1}}, "grubby": {"_count": 1, "hand": {"_count": 1}}, "loyal": {"_count": 1, "to": {"_count": 1}}, "pronounced": {"_count": 1, "and": {"_count": 1}}, "unconvincing": {"_count": 1, "start": {"_count": 1}}, "malevolently": {"_count": 1, "and": {"_count": 1}}, "top": {"_count": 6, "of": {"_count": 5}, "deck": {"_count": 1}}, "bottom": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "limited": {"_count": 1, "there": {"_count": 1}}, "mournful": {"_count": 1, "face": {"_count": 1}}, "austere": {"_count": 1, "expressions": {"_count": 1}}, "supercilious": {"_count": 1, "look": {"_count": 1}}, "wellrehearsed": {"_count": 1, "story": {"_count": 1}}, "warm": {"_count": 1, "summers": {"_count": 1}}, "convincing": {"_count": 1, "witness": {"_count": 1}}, "accurately": {"_count": 1, "": {"_count": 1}}, "wide": {"_count": 1, "slack": {"_count": 1}}, "lonely": {"_count": 1, "for": {"_count": 1}}, "earnestly": {"_count": 1, "to": {"_count": 1}}, "tattered": {"_count": 1, "old": {"_count": 1}}, "exhausting": {"_count": 1, "morning": {"_count": 1}}, "solidlooking": {"_count": 1, "beasts": {"_count": 1}}, "pointed": {"_count": 1, "teeth": {"_count": 1}}, "attentively": {"_count": 1, "and": {"_count": 1}}, "probably": {"_count": 1, "be": {"_count": 1}}, "dull": {"_count": 4, "work": {"_count": 1}, "without": {"_count": 1}, "indeed": {"_count": 1}, "was": {"_count": 1}}, "irritating": {"_count": 2, "fashion": {"_count": 1}, "having": {"_count": 1}}, "irresponsible": {"_count": 3, "wizards": {"_count": 1}, "indeed": {"_count": 1}, "to": {"_count": 1}}, "poor": {"_count": 3, "job": {"_count": 1}, "even": {"_count": 1}, "results": {"_count": 1}}, "instant": {"_count": 1, "that": {"_count": 1}}, "tips": {"_count": 2, "of": {"_count": 2}}, "damaging": {"_count": 1, "to": {"_count": 1}}, "fire": {"_count": 1, "the": {"_count": 1}}, "extended": {"_count": 1, "leave": {"_count": 1}}, "skeptically": {"_count": 1, "": {"_count": 1}}, "dusty": {"_count": 2, "very": {"_count": 1}, "and": {"_count": 1}}, "highpitched": {"_count": 1, "again": {"_count": 1}}, "spotty": {"_count": 1, "": {"_count": 1}}, "slight": {"_count": 1, "": {"_count": 1}}, "flustered": {"_count": 1, "": {"_count": 1}}, "topmost": {"_count": 1, "bobble": {"_count": 1}}, "vivid": {"_count": 1, "": {"_count": 1}}, "drunk": {"_count": 1, "": {"_count": 1}}, "halfheartedly": {"_count": 1, "": {"_count": 1}}, "supportive": {"_count": 1, "of": {"_count": 1}}, "nose": {"_count": 1, "doing": {"_count": 1}}, "excited": {"_count": 1, "when": {"_count": 1}}, "interestin": {"_count": 1, "Hermione": {"_count": 1}}, "mixed": {"_count": 1, "up": {"_count": 1}}, "shaky": {"_count": 2, "laugh": {"_count": 2}}, "faintly": {"_count": 1, "still": {"_count": 1}}, "recently": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "few": {"_count": 6, "of": {"_count": 1}, "wizards": {"_count": 2}, "followers": {"_count": 1}, "": {"_count": 1}, "substances": {"_count": 1}}, "unusual": {"_count": 2, "occurrence": {"_count": 1}, "move": {"_count": 1}}, "stout": {"_count": 1, "woman": {"_count": 1}}, "unfairly": {"_count": 1, "": {"_count": 1}}, "disapproving": {"_count": 1, "Umbridge": {"_count": 1}}, "offended": {"_count": 1, "as": {"_count": 1}}, "definite": {"_count": 1, "on": {"_count": 1}}, "silly": {"_count": 1, "expression": {"_count": 1}}, "floor": {"_count": 1, "of": {"_count": 1}}, "shrewd": {"_count": 1, "idea": {"_count": 1}}, "goodlooking": {"_count": 2, "his": {"_count": 1}, "orphan": {"_count": 1}}, "handsomely": {"_count": 1, "so": {"_count": 1}}, "responsible": {"_count": 1, "job": {"_count": 1}}, "obtuse": {"_count": 1, "even": {"_count": 1}}, "distracting": {"_count": 1, "": {"_count": 1}}, "tiny": {"_count": 1, "cough": {"_count": 1}}, "high": {"_count": 3, "skills": {"_count": 1}, "level": {"_count": 1}, "up": {"_count": 1}}, "concerned": {"_count": 2, "": {"_count": 2}}, "unfair": {"_count": 1, "you": {"_count": 1}}, "excitable": {"_count": 1, "crowd": {"_count": 1}}, "dispirited": {"_count": 1, "since": {"_count": 1}}, "vividly": {"_count": 1, "what": {"_count": 1}}, "oversize": {"_count": 1, "human": {"_count": 1}}, "broad": {"_count": 2, "and": {"_count": 2}}, "watery": {"_count": 1, "way": {"_count": 1}}, "unsteady": {"_count": 1, "voice": {"_count": 1}}, "tree": {"_count": 1, "": {"_count": 1}}, "agitated": {"_count": 2, "and": {"_count": 1}, "Madam": {"_count": 1}}, "deferentially": {"_count": 1, "": {"_count": 1}}, "oldest": {"_count": 1, "and": {"_count": 1}}, "badly": {"_count": 3, "": {"_count": 1}, "hurt": {"_count": 1}, "indeed": {"_count": 1}}, "uneasy": {"_count": 1, "": {"_count": 1}}, "shallow": {"_count": 1, "way": {"_count": 1}}, "night": {"_count": 2, "that": {"_count": 1}, "another": {"_count": 1}}, "complimentary": {"_count": 1, "about": {"_count": 1}}, "morning": {"_count": 1, "": {"_count": 1}}, "briefly": {"_count": 1, "and": {"_count": 1}}, "office": {"_count": 2, "savoring": {"_count": 1}, "he": {"_count": 1}}, "Well": {"_count": 1, "were": {"_count": 1}}, "faint": {"_count": 1, "pop": {"_count": 1}}, "secret": {"_count": 1, "": {"_count": 1}}, "pleasant": {"_count": 2, "Ill": {"_count": 1}, "it": {"_count": 1}}, "admirable": {"_count": 1, "and": {"_count": 1}}, "gracious": {"_count": 1, "": {"_count": 1}}, "ard": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "anxiouslooking": {"_count": 1, "Mrs": {"_count": 1}}, "unlikely": {"_count": 1, "Harry": {"_count": 1}}, "subject": {"_count": 1, "even": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}, "occasionally": {"_count": 1, "": {"_count": 1}}, "ancient": {"_count": 1, "Wizarding": {"_count": 1}}, "slick": {"_count": 1, "attack": {"_count": 1}}, "unwell": {"_count": 1, "although": {"_count": 1}}, "shop": {"_count": 1, "whence": {"_count": 1}}, "slim": {"_count": 1, "": {"_count": 1}}, "carrying": {"_count": 1, "whisper": {"_count": 1}}, "characterbuilding": {"_count": 1, "stuff": {"_count": 1}}, "protective": {"_count": 1, "of": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "wet": {"_count": 1, "kiss": {"_count": 1}}, "pinkfaced": {"_count": 1, "and": {"_count": 1}}, "enthusiastic": {"_count": 1, "": {"_count": 1}}, "touched": {"_count": 1, "Harry": {"_count": 1}}, "nosy": {"_count": 1, "about": {"_count": 1}}, "tolerant": {"_count": 1, "anymore": {"_count": 1}}, "evening": {"_count": 1, "": {"_count": 1}}, "guarded": {"_count": 1, "with": {"_count": 1}}, "crudely": {"_count": 1, "done": {"_count": 1}}, "outset": {"_count": 1, "of": {"_count": 1}}, "importantly": {"_count": 1, "Voldemort": {"_count": 1}}, "rich": {"_count": 1, "witch": {"_count": 1}}, "seat": {"_count": 1, "by": {"_count": 1}}, "characteristic": {"_count": 1, "gesture": {"_count": 1}}, "afternoon": {"_count": 1, "but": {"_count": 1}}, "dreadful": {"_count": 1, "": {"_count": 1}}, "Dark": {"_count": 2, "stuff": {"_count": 1}, "indeed": {"_count": 1}}, "vaguely": {"_count": 1, "in": {"_count": 1}}, "unfortunate": {"_count": 1, "": {"_count": 1}}, "distinctive": {"_count": 1, "traces": {"_count": 1}}, "bitter": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "hungry": {"_count": 1, "": {"_count": 1}}, "nearly": {"_count": 1, "late": {"_count": 1}}, "eve": {"_count": 1, "of": {"_count": 1}}, "many": {"_count": 1, "": {"_count": 1}}, "typical": {"_count": 1, "of": {"_count": 1}}, "antiwerewolf": {"_count": 1, "at": {"_count": 1}}, "nicelooking": {"_count": 1, "Krum": {"_count": 1}}, "domineering": {"_count": 1, "the": {"_count": 1}}, "precisely": {"_count": 1, "onto": {"_count": 1}}, "tempting": {"_count": 1, "offer": {"_count": 1}}, "alike": {"_count": 1, "for": {"_count": 1}}, "existence": {"_count": 1, "continued": {"_count": 1}}, "air": {"_count": 1, "in": {"_count": 1}}, "spot": {"_count": 1, "on": {"_count": 1}}, "gallant": {"_count": 1, "of": {"_count": 1}}, "soul": {"_count": 1, "seemed": {"_count": 1}}, "humorous": {"_count": 1, "about": {"_count": 1}}, "height": {"_count": 1, "of": {"_count": 1}}, "softly": {"_count": 1, "": {"_count": 1}}, "tip": {"_count": 1, "of": {"_count": 1}}}, "much": {"_count": 1028, "": {"_count": 70, ".": {"_count": 61}, "?": {"_count": 5}, "!": {"_count": 4}}, "of": {"_count": 37, "her": {"_count": 1}, "a": {"_count": 14}, "their": {"_count": 2}, "yourself": {"_count": 1}, "your": {"_count": 3}, "this": {"_count": 3}, "the": {"_count": 4}, "Bagman": {"_count": 1}, "an": {"_count": 2}, "Sunday": {"_count": 1}, "what": {"_count": 1}, "Professor": {"_count": 1}, "him": {"_count": 1}, "life": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 77, "quiver": {"_count": 1}, "I": {"_count": 7}, "touched": {"_count": 1}, "you": {"_count": 3}, "he": {"_count": 5}, "they": {"_count": 4}, "a": {"_count": 14}, "hed": {"_count": 1}, "his": {"_count": 5}, "the": {"_count": 3}, "Neville": {"_count": 1}, "we": {"_count": 3}, "Hermione": {"_count": 1}, "mine": {"_count": 1}, "it": {"_count": 2}, "Cedric": {"_count": 1}, "possible": {"_count": 3}, "Ron": {"_count": 1}, "though": {"_count": 2}, "yer": {"_count": 1}, "Transfigured": {"_count": 1}, "most": {"_count": 1}, "an": {"_count": 1}, "normal": {"_count": 1}, "her": {"_count": 1}, "Golgomath": {"_count": 1}, "anything": {"_count": 1}, "losing": {"_count": 1}, "looked": {"_count": 1}, "three": {"_count": 1}, "Harrys": {"_count": 1}, "look": {"_count": 1}, "held": {"_count": 1}, "she": {"_count": 1}, "mentioned": {"_count": 1}, "any": {"_count": 1}, "Albus": {"_count": 1}}, "sense": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "to": {"_count": 31, "be": {"_count": 1}, "Harrys": {"_count": 1}, "learn": {"_count": 2}, "think": {"_count": 1}, "do": {"_count": 5}, "stand": {"_count": 1}, "eat": {"_count": 1}, "boast": {"_count": 1}, "say": {"_count": 1}, "the": {"_count": 2}, "ask": {"_count": 1}, "speak": {"_count": 1}, "tell": {"_count": 2}, "hope": {"_count": 1}, "take": {"_count": 1}, "sink": {"_count": 1}, "hold": {"_count": 1}, "worry": {"_count": 1}, "complain": {"_count": 1}, "you": {"_count": 2}, "Hermione": {"_count": 1}, "expect": {"_count": 1}, "believe": {"_count": 1}}, "since": {"_count": 3, "Madam": {"_count": 1}, "I": {"_count": 1}, "leaving": {"_count": 1}}, "better": {"_count": 18, "off": {"_count": 4}, "than": {"_count": 7}, "summer": {"_count": 1}, "here": {"_count": 1}, "son": {"_count": 1}, "shorter": {"_count": 1}, "now": {"_count": 1}, "employed": {"_count": 1}, "prepared": {"_count": 1}}, "time": {"_count": 22, "had": {"_count": 2}, "as": {"_count": 3}, "he": {"_count": 2}, "to": {"_count": 1}, "in": {"_count": 3}, "they": {"_count": 2}, "said": {"_count": 1}, "was": {"_count": 1}, "for": {"_count": 3}, "": {"_count": 2}, "dangling": {"_count": 1}, "it": {"_count": 1}}, "neck": {"_count": 1, "small": {"_count": 1}}, "room": {"_count": 3, "": {"_count": 1}, "inside": {"_count": 1}, "here": {"_count": 1}}, "later": {"_count": 6, "wishing": {"_count": 1}, "listening": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 1}, "than": {"_count": 1}, "Voldemort": {"_count": 1}}, "yeh": {"_count": 1, "didnt": {"_count": 1}}, "like": {"_count": 12, "a": {"_count": 2}, "going": {"_count": 1}, "singing": {"_count": 1}, "Peeves": {"_count": 1}, "exposing": {"_count": 1}, "Boys": {"_count": 1}, "Hermiones": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 2}, "an": {"_count": 1}}, "left": {"_count": 2, "ter": {"_count": 1}, "to": {"_count": 1}}, "Harry": {"_count": 3, "cost": {"_count": 1}, "admitted": {"_count": 1}, "": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "speed": {"_count": 1, "then": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 2}}, "except": {"_count": 1, "Hermione": {"_count": 1}}, "farther": {"_count": 7, "they": {"_count": 2}, "away": {"_count": 1}, "into": {"_count": 1}, "north": {"_count": 1}, "": {"_count": 1}, "than": {"_count": 1}}, "they": {"_count": 7, "pulled": {"_count": 1}, "were": {"_count": 1}, "always": {"_count": 1}, "can": {"_count": 1}, "knew": {"_count": 1}, "could": {"_count": 1}, "did": {"_count": 1}}, "on": {"_count": 4, "top": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}, "Trelawneys": {"_count": 1}}, "space": {"_count": 2, "as": {"_count": 1}, "in": {"_count": 1}}, "chance": {"_count": 5, "of": {"_count": 3}, "to": {"_count": 1}, "": {"_count": 1}}, "good": {"_count": 4, "": {"_count": 1}, "in": {"_count": 2}, "itll": {"_count": 1}}, "more": {"_count": 95, "luck": {"_count": 1}, "slowly": {"_count": 1}, "than": {"_count": 8}, "": {"_count": 1}, "of": {"_count": 2}, "frightened": {"_count": 1}, "quickly": {"_count": 1}, "trouble": {"_count": 2}, "money": {"_count": 1}, "important": {"_count": 5}, "like": {"_count": 6}, "difficulty": {"_count": 1}, "interested": {"_count": 2}, "crowded": {"_count": 1}, "likable": {"_count": 1}, "exciting": {"_count": 2}, "enthusiasm": {"_count": 1}, "aware": {"_count": 1}, "interesting": {"_count": 1}, "satisfactory": {"_count": 1}, "as": {"_count": 1}, "serious": {"_count": 2}, "stiffly": {"_count": 1}, "scope": {"_count": 1}, "pressing": {"_count": 2}, "tempted": {"_count": 1}, "powerful": {"_count": 2}, "confident": {"_count": 1}, "comfortable": {"_count": 1}, "enjoyable": {"_count": 1}, "insubstantial": {"_count": 1}, "businesslike": {"_count": 1}, "human": {"_count": 1}, "thought": {"_count": 1}, "indeed": {"_count": 1}, "impressive": {"_count": 2}, "convenient": {"_count": 1}, "time": {"_count": 1}, "bad": {"_count": 1}, "difficult": {"_count": 2}, "relaxed": {"_count": 1}, "quietly": {"_count": 1}, "scared": {"_count": 1}, "suspense": {"_count": 1}, "damage": {"_count": 1}, "persuadable": {"_count": 1}, "advanced": {"_count": 1}, "likely": {"_count": 1}, "effective": {"_count": 1}, "interest": {"_count": 1}, "sense": {"_count": 2}, "about": {"_count": 1}, "solid": {"_count": 1}, "awake": {"_count": 1}, "accomplished": {"_count": 1}, "harm": {"_count": 1}, "Hermiones": {"_count": 1}, "sinister": {"_count": 1}, "disposed": {"_count": 1}, "terrible": {"_count": 1}, "bearable": {"_count": 1}, "at": {"_count": 1}, "highly": {"_count": 1}, "she": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 1}, "straightforward": {"_count": 1}, "in": {"_count": 1}, "real": {"_count": 1}}, "nicer": {"_count": 1, "for": {"_count": 1}}, "longer": {"_count": 29, "": {"_count": 6}, "Not": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "but": {"_count": 1}, "than": {"_count": 2}, "examining": {"_count": 1}, "and": {"_count": 2}, "legs": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 3}, "yeah": {"_count": 1}, "would": {"_count": 1}, "It": {"_count": 1}, "it": {"_count": 1}, "now": {"_count": 1}, "all": {"_count": 1}, "He": {"_count": 2}}, "about": {"_count": 16, "Flamel": {"_count": 1}, "Your": {"_count": 1}, "it": {"_count": 2}, "Hogsmeade": {"_count": 1}, "those": {"_count": 1}, "the": {"_count": 3}, "unicorns": {"_count": 1}, "being": {"_count": 1}, "youknowwhat": {"_count": 1}, "\u2018Professor": {"_count": 1}, "them": {"_count": 1}, "": {"_count": 1}, "Voldemort": {"_count": 1}}, "before": {"_count": 1, "bed": {"_count": 1}}, "nearer": {"_count": 2, "theyd": {"_count": 1}, "was": {"_count": 1}}, "homework": {"_count": 8, "on": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "weve": {"_count": 2}, "he": {"_count": 1}, "for": {"_count": 1}}, "fun": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "already": {"_count": 1, "so": {"_count": 1}}, "had": {"_count": 2, "he": {"_count": 1}, "been": {"_count": 1}}, "easier": {"_count": 8, "": {"_count": 2}, "to": {"_count": 2}, "in": {"_count": 1}, "it": {"_count": 1}, "pretending": {"_count": 1}, "thanks": {"_count": 1}}, "mistaken": {"_count": 11, "if": {"_count": 2}, "he": {"_count": 2}, "Mostafa": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "something": {"_count": 1}, "Rita": {"_count": 1}, "and": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "money": {"_count": 2, "and": {"_count": 1}, "you": {"_count": 1}}, "it": {"_count": 5, "was": {"_count": 2}, "gave": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}}, "for": {"_count": 6, "both": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 1}, "those": {"_count": 1}}, "said": {"_count": 15, "Ron": {"_count": 3}, "Mr": {"_count": 1}, "Dumbledore": {"_count": 4}, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}, "Umbridge": {"_count": 1}, "Hermione": {"_count": 2}, "Lupin": {"_count": 1}, "Snape": {"_count": 1}}, "she": {"_count": 4, "looked": {"_count": 1}, "liked": {"_count": 1}, "was": {"_count": 1}, "hates": {"_count": 1}}, "much": {"_count": 7, "more": {"_count": 2}, "worse": {"_count": 1}, "easier": {"_count": 1}, "harder": {"_count": 1}, "happier": {"_count": 1}, "longer": {"_count": 1}}, "atten": {"_count": 1, "Harry": {"_count": 1}}, "further": {"_count": 3, "can": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "darker": {"_count": 3, "beneath": {"_count": 1}, "than": {"_count": 2}}, "youve": {"_count": 2, "taken": {"_count": 1}, "learned": {"_count": 1}}, "worse": {"_count": 14, "than": {"_count": 6}, "": {"_count": 4}, "cases": {"_count": 1}, "mutterings": {"_count": 1}, "happened": {"_count": 1}, "damage": {"_count": 1}}, "but": {"_count": 10, "no": {"_count": 1}, "she": {"_count": 1}, "its": {"_count": 1}, "ate": {"_count": 1}, "I": {"_count": 3}, "if": {"_count": 1}, "Harry": {"_count": 1}, "under": {"_count": 1}}, "response": {"_count": 1, "from": {"_count": 1}}, "persecution": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 18, "said": {"_count": 3}, "should": {"_count": 2}, "got": {"_count": 1}, "had": {"_count": 4}, "dare": {"_count": 1}, "hated": {"_count": 1}, "didnt": {"_count": 1}, "now": {"_count": 1}, "loathed": {"_count": 1}, "stands": {"_count": 1}, "wanted": {"_count": 1}, "liked": {"_count": 1}}, "I": {"_count": 5, "came": {"_count": 1}, "can": {"_count": 1}, "hexed": {"_count": 1}, "know": {"_count": 1}, "like": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "twirling": {"_count": 1, "of": {"_count": 1}}, "too": {"_count": 20, "large": {"_count": 1}, "heavy": {"_count": 1}, "big": {"_count": 1}, "young": {"_count": 3}, "busy": {"_count": 1}, "dark": {"_count": 1}, "small": {"_count": 2}, "late": {"_count": 1}, "soon": {"_count": 1}, "close": {"_count": 1}, "preoccupied": {"_count": 1}, "trivial": {"_count": 1}, "old": {"_count": 1}, "surprised": {"_count": 1}, "much": {"_count": 1}, "long": {"_count": 1}, "loudly": {"_count": 1}}, "use": {"_count": 4, "to": {"_count": 1}, "itll": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "sleep": {"_count": 1, "because": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "taller": {"_count": 6, "than": {"_count": 1}, "himself": {"_count": 1}, "had": {"_count": 1}, "standing": {"_count": 1}, "from": {"_count": 1}, "they": {"_count": 1}}, "rather": {"_count": 7, "stay": {"_count": 1}, "spend": {"_count": 1}, "be": {"_count": 2}, "have": {"_count": 2}, "you": {"_count": 1}}, "that": {"_count": 21, "he": {"_count": 5}, "she": {"_count": 1}, "his": {"_count": 2}, "they": {"_count": 3}, "Padma": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "Miss": {"_count": 1}, "everyone": {"_count": 1}, "day": {"_count": 1}, "there": {"_count": 2}, "Mrs": {"_count": 1}, "none": {"_count": 1}}, "you": {"_count": 6, "have": {"_count": 2}, "might": {"_count": 1}, "liked": {"_count": 1}, "feel": {"_count": 1}, "do": {"_count": 1}}, "life": {"_count": 1, "left": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "it": {"_count": 1}}, "gold": {"_count": 3, "the": {"_count": 1}, "hed": {"_count": 1}, "thread": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}, "common": {"_count": 1}}, "OUCH": {"_count": 1, "": {"_count": 1}}, "luggage": {"_count": 1, "youve": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "being": {"_count": 1, "made": {"_count": 1}}, "help": {"_count": 2, "in": {"_count": 1}, "he": {"_count": 1}}, "difficulty": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 6, "class": {"_count": 1}, "worse": {"_count": 2}, "simplest": {"_count": 1}, "better": {"_count": 1}, "same": {"_count": 1}}, "closer": {"_count": 2, "at": {"_count": 1}, "miss": {"_count": 1}}, "trouble": {"_count": 9, "": {"_count": 2}, "Lupin": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}, "mate": {"_count": 1}, "Harry": {"_count": 1}, "wed": {"_count": 1}, "he": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "mead": {"_count": 1, "": {"_count": 1}}, "lettuce": {"_count": 1, "": {"_count": 1}}, "difference": {"_count": 2, "said": {"_count": 1}, "now": {"_count": 1}}, "less": {"_count": 19, "fun": {"_count": 1}, "coordinated": {"_count": 1}, "impressive": {"_count": 1}, "laughter": {"_count": 1}, "easy": {"_count": 1}, "stupid": {"_count": 1}, "likely": {"_count": 1}, "lined": {"_count": 1}, "sympathetic": {"_count": 1}, "accompanied": {"_count": 1}, "than": {"_count": 2}, "valuable": {"_count": 1}, "light": {"_count": 1}, "pronounced": {"_count": 1}, "mess": {"_count": 1}, "since": {"_count": 1}, "shabby": {"_count": 1}, "": {"_count": 1}}, "applause": {"_count": 1, "for": {"_count": 1}}, "experience": {"_count": 4, "with": {"_count": 1}, "of": {"_count": 2}, "as": {"_count": 1}}, "store": {"_count": 4, "by": {"_count": 4}}, "scrambling": {"_count": 1, "to": {"_count": 1}}, "harder": {"_count": 7, "for": {"_count": 2}, "to": {"_count": 5}}, "indeed": {"_count": 1, "Minister": {"_count": 1}}, "special": {"_count": 1, "treatment": {"_count": 1}}, "Im": {"_count": 1, "looking": {"_count": 1}}, "stronger": {"_count": 3, "My": {"_count": 1}, "and": {"_count": 1}, "than": {"_count": 1}}, "whether": {"_count": 1, "a": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "anymore": {"_count": 3, "poor": {"_count": 1}, "So": {"_count": 1}, "": {"_count": 1}}, "singing": {"_count": 1, "and": {"_count": 1}}, "quieter": {"_count": 3, "": {"_count": 1}, "perhaps": {"_count": 1}, "than": {"_count": 1}}, "deeper": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "warmer": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "dignity": {"_count": 1, "as": {"_count": 1}}, "consultation": {"_count": 1, "of": {"_count": 1}}, "higher": {"_count": 2, "than": {"_count": 2}}, "lower": {"_count": 1, "and": {"_count": 1}}, "attention": {"_count": 9, "said": {"_count": 1}, "until": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}, "if": {"_count": 1}, "to": {"_count": 1}, "left": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "larger": {"_count": 5, "than": {"_count": 3}, "began": {"_count": 1}, "in": {"_count": 1}}, "louder": {"_count": 3, "round": {"_count": 1}, "than": {"_count": 1}, "": {"_count": 1}}, "earlier": {"_count": 2, "than": {"_count": 2}}, "hair": {"_count": 2, "": {"_count": 2}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "older": {"_count": 7, "giving": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "than": {"_count": 2}, "much": {"_count": 1}, "persons": {"_count": 1}}, "a": {"_count": 4, "report": {"_count": 1}, "person": {"_count": 1}, "bedroom": {"_count": 1}, "Death": {"_count": 1}}, "persuasion": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "noise": {"_count": 2, "hurrying": {"_count": 1}, "that": {"_count": 1}}, "is": {"_count": 2, "going": {"_count": 1}, "Professor": {"_count": 1}}, "smaller": {"_count": 4, "than": {"_count": 1}, "and": {"_count": 2}, "though": {"_count": 1}}, "interference": {"_count": 1, "students": {"_count": 1}}, "leisure": {"_count": 1, "and": {"_count": 1}}, "miss": {"_count": 1, "he": {"_count": 1}}, "sir": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 4, "any": {"_count": 1}, "not": {"_count": 1}, "he": {"_count": 1}, "hed": {"_count": 1}}, "unpleasantness": {"_count": 1, "in": {"_count": 1}}, "when": {"_count": 2, "their": {"_count": 1}, "Dumbledore": {"_count": 1}}, "damage": {"_count": 3, "had": {"_count": 2}, "to": {"_count": 1}}, "rowdier": {"_count": 1, "than": {"_count": 1}}, "faster": {"_count": 1, "": {"_count": 1}}, "bother": {"_count": 1, "to": {"_count": 1}}, "practice": {"_count": 1, "": {"_count": 1}}, "perfumed": {"_count": 1, "foam": {"_count": 1}}, "right": {"_count": 2, "to": {"_count": 1}, "as": {"_count": 1}}, "wanted": {"_count": 2, "to": {"_count": 2}}, "heavier": {"_count": 1, "things": {"_count": 1}}, "younger": {"_count": 6, "than": {"_count": 1}, "his": {"_count": 1}, "Horace": {"_count": 1}, "Slughorn": {"_count": 1}, "man": {"_count": 1}, "and": {"_count": 1}}, "food": {"_count": 2, "as": {"_count": 1}, "from": {"_count": 1}}, "magic": {"_count": 1, "in": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "calmer": {"_count": 1, "somehow": {"_count": 1}}, "importance": {"_count": 1, "and": {"_count": 1}}, "just": {"_count": 1, "at": {"_count": 1}}, "power": {"_count": 2, "did": {"_count": 1}, "McGonagalls": {"_count": 1}}, "teaching": {"_count": 1, "did": {"_count": 1}}, "curiosity": {"_count": 1, "and": {"_count": 1}}, "messier": {"_count": 1, "than": {"_count": 1}}, "quicker": {"_count": 2, "if": {"_count": 1}, "than": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "Mundungus": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 3, "speaking": {"_count": 1}, "on": {"_count": 1}, "always": {"_count": 1}}, "popular": {"_count": 1, "support": {"_count": 1}}, "cleverer": {"_count": 2, "than": {"_count": 1}, "and": {"_count": 1}}, "we": {"_count": 4, "couldnt": {"_count": 1}, "cant": {"_count": 1}, "lost": {"_count": 1}, "can": {"_count": 1}}, "information": {"_count": 2, "as": {"_count": 1}, "can": {"_count": 1}}, "having": {"_count": 1, "to": {"_count": 1}}, "mold": {"_count": 1, "weve": {"_count": 1}}, "Luna": {"_count": 1, "informed": {"_count": 1}}, "looking": {"_count": 1, "forward": {"_count": 1}}, "Professor": {"_count": 5, "Umbridge": {"_count": 1}, "GrubblyPlank": {"_count": 1}, "McGonagall": {"_count": 1}, "": {"_count": 2}}, "emptier": {"_count": 1, "upstairs": {"_count": 1}}, "consoled": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "": {"_count": 1}}, "Ernie": {"_count": 1, "said": {"_count": 1}}, "success": {"_count": 1, "as": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "breakfast": {"_count": 1}, "such": {"_count": 1}}, "meaningless": {"_count": 1, "roaring": {"_count": 1}}, "headway": {"_count": 2, "with": {"_count": 1}, "against": {"_count": 1}}, "shabbier": {"_count": 1, "Lupin": {"_count": 1}}, "greater": {"_count": 1, "one": {"_count": 1}}, "by": {"_count": 1, "ourselves": {"_count": 1}}, "either": {"_count": 1, "admitted": {"_count": 1}}, "wrong": {"_count": 1, "footed": {"_count": 1}}, "automatic": {"_count": 1, "I": {"_count": 1}}, "truth": {"_count": 2, "in": {"_count": 1}, "there": {"_count": 1}}, "Umbridge": {"_count": 1, "was": {"_count": 1}}, "an": {"_count": 1, "Invisibility": {"_count": 1}}, "movement": {"_count": 1, "and": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "used": {"_count": 3, "in": {"_count": 2}, "": {"_count": 1}}, "happier": {"_count": 3, "now": {"_count": 1}, "than": {"_count": 1}, "and": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "pain": {"_count": 3, "as": {"_count": 2}, "I": {"_count": 1}}, "disposed": {"_count": 1, "to": {"_count": 1}}, "has": {"_count": 2, "he": {"_count": 1}, "always": {"_count": 1}}, "hope": {"_count": 1, "that": {"_count": 1}}, "fear": {"_count": 1, "as": {"_count": 1}}, "dragon": {"_count": 1, "manure": {"_count": 1}}, "renewed": {"_count": 1, "muttering": {"_count": 1}}, "progress": {"_count": 1, "at": {"_count": 1}}, "faith": {"_count": 1, "in": {"_count": 1}}, "going": {"_count": 2, "on": {"_count": 2}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "do": {"_count": 2, "they": {"_count": 1}, "you": {"_count": 1}}, "fancy": {"_count": 2, "banking": {"_count": 1}, "doing": {"_count": 1}}, "everything": {"_count": 1, "": {"_count": 1}}, "grumbling": {"_count": 1, "among": {"_count": 1}}, "moren": {"_count": 1, "she": {"_count": 1}}, "his": {"_count": 4, "forest": {"_count": 1}, "conscience": {"_count": 1}, "feet": {"_count": 1}, "absence": {"_count": 1}}, "tempted": {"_count": 1, "by": {"_count": 1}}, "have": {"_count": 1, "liked": {"_count": 1}}, "concern": {"_count": 1, "and": {"_count": 1}}, "inclination": {"_count": 1, "to": {"_count": 1}}, "care": {"_count": 3, "he": {"_count": 1}, "each": {"_count": 1}, "did": {"_count": 1}}, "brighter": {"_count": 2, "though": {"_count": 1}, "when": {"_count": 1}}, "angrier": {"_count": 1, "than": {"_count": 1}}, "interest": {"_count": 1, "or": {"_count": 1}}, "sooner": {"_count": 1, "than": {"_count": 1}}, "bigger": {"_count": 2, "more": {"_count": 1}, "than": {"_count": 1}}, "leaks": {"_count": 1, "as": {"_count": 1}}, "Ive": {"_count": 2, "just": {"_count": 1}, "been": {"_count": 1}}, "ankle": {"_count": 1, "in": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "risk": {"_count": 1, "of": {"_count": 1}}, "talk": {"_count": 2, "on": {"_count": 1}, "about": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}, "juice": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 2, "in": {"_count": 1}, "obvious": {"_count": 1}}, "muttering": {"_count": 1, "in": {"_count": 1}}, "did": {"_count": 2, "Malfoy": {"_count": 1}, "you": {"_count": 1}}, "preferred": {"_count": 2, "this": {"_count": 2}}, "out": {"_count": 1, "for": {"_count": 1}}, "bitterness": {"_count": 1, "there": {"_count": 1}}, "ash": {"_count": 1, "on": {"_count": 1}}, "painstaking": {"_count": 1, "effort": {"_count": 1}}, "with": {"_count": 1, "this": {"_count": 1}}, "fer": {"_count": 1, "granted": {"_count": 1}}, "wind": {"_count": 1, "they": {"_count": 1}}, "humor": {"_count": 1, "in": {"_count": 1}}, "flatter": {"_count": 1, "box": {"_count": 1}}, "sneered": {"_count": 1, "Snape": {"_count": 1}}, "from": {"_count": 1, "boys": {"_count": 1}}, "thats": {"_count": 1, "worth": {"_count": 1}}, "what": {"_count": 1, "happened": {"_count": 1}}, "perhaps": {"_count": 1, "had": {"_count": 1}}, "upon": {"_count": 1, "Luciuss": {"_count": 1}}, "tyrants": {"_count": 1, "fear": {"_count": 1}}, "need": {"_count": 1, "": {"_count": 1}}, "anger": {"_count": 1, "from": {"_count": 1}}, "contempt": {"_count": 3, "as": {"_count": 2}, "in": {"_count": 1}}, "trust": {"_count": 1, "in": {"_count": 1}}, "keener": {"_count": 1, "than": {"_count": 1}}, "blame": {"_count": 1, "on": {"_count": 1}}, "thought": {"_count": 1, "": {"_count": 1}}, "danger": {"_count": 1, "youll": {"_count": 1}}, "tidier": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "all": {"_count": 1}}, "swearing": {"_count": 1, "": {"_count": 1}}, "tastier": {"_count": 1, "than": {"_count": 1}}, "blood": {"_count": 2, "": {"_count": 1}, "already": {"_count": 1}}, "gulping": {"_count": 1, "of": {"_count": 1}}, "kinder": {"_count": 1, "than": {"_count": 1}}, "understanding": {"_count": 1, "in": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "Master": {"_count": 1, "said": {"_count": 1}}, "else": {"_count": 1, "into": {"_count": 1}}, "relies": {"_count": 1, "on": {"_count": 1}}, "dislike": {"_count": 1, "": {"_count": 1}}, "slower": {"_count": 1, "and": {"_count": 1}}, "light": {"_count": 1, "as": {"_count": 1}}, "colder": {"_count": 1, "he": {"_count": 1}}, "straighter": {"_count": 1, "in": {"_count": 1}}, "tougher": {"_count": 1, "than": {"_count": 1}}, "Dobby": {"_count": 1, "for": {"_count": 1}}, "matter": {"_count": 1, "to": {"_count": 1}}, "altered": {"_count": 1, "now": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "Muggle": {"_count": 1, "blood": {"_count": 1}}, "pure": {"_count": 1, "blood": {"_count": 1}}, "depended": {"_count": 1, "on": {"_count": 1}}, "pushing": {"_count": 1, "and": {"_count": 1}}, "tighter": {"_count": 1, "squeeze": {"_count": 1}}, "din": {"_count": 1, "that": {"_count": 1}}}, "": {"_count": 85587, ".": {"_count": 67789, "They": {"_count": 1270}, "Mr": {"_count": 214}, "He": {"_count": 4787}, "Mrs": {"_count": 131}, "The": {"_count": 3124}, "This": {"_count": 401}, "When": {"_count": 381}, "None": {"_count": 41}, "At": {"_count": 267}, "Little": {"_count": 18}, "It": {"_count": 1647}, "For": {"_count": 213}, "There": {"_count": 870}, "What": {"_count": 969}, "As": {"_count": 456}, "But": {"_count": 1394}, "People": {"_count": 68}, "yes": {"_count": 29}, "If": {"_count": 530}, "Most": {"_count": 49}, "Hed": {"_count": 55}, "Fear": {"_count": 4}, "no": {"_count": 32}, "Potter": {"_count": 80}, "Come": {"_count": 218}, "Or": {"_count": 56}, "but": {"_count": 156}, "Sorry": {"_count": 68}, "On": {"_count": 138}, "Shoo": {"_count": 1}, "Was": {"_count": 71}, "Trying": {"_count": 14}, "She": {"_count": 1012}, "Although": {"_count": 18}, "Experts": {"_count": 1}, "And": {"_count": 1430}, "Going": {"_count": 9}, "Viewers": {"_count": 1}, "Shooting": {"_count": 2}, "Er": {"_count": 131}, "After": {"_count": 158}, "No": {"_count": 616}, "Why": {"_count": 308}, "Owls": {"_count": 2}, "shooting": {"_count": 2}, "and": {"_count": 280}, "So": {"_count": 551}, "Well": {"_count": 961}, "maybe": {"_count": 16}, "it": {"_count": 56}, "you": {"_count": 89}, "her": {"_count": 2}, "Instead": {"_count": 35}, "Whats": {"_count": 226}, "Nasty": {"_count": 6}, "Oh": {"_count": 601}, "Yes": {"_count": 370}, "While": {"_count": 37}, "if": {"_count": 26}, "His": {"_count": 500}, "How": {"_count": 387}, "In": {"_count": 243}, "A": {"_count": 858}, "Nothing": {"_count": 84}, "Albus": {"_count": 22}, "Twelve": {"_count": 5}, "Dumbledore": {"_count": 397}, "Fancy": {"_count": 6}, "Her": {"_count": 117}, "My": {"_count": 221}, "Youd": {"_count": 51}, "All": {"_count": 320}, "Professor": {"_count": 416}, "I": {"_count": 3514}, "Flocks": {"_count": 1}, "You": {"_count": 1549}, "Weve": {"_count": 119}, "We": {"_count": 592}, "Would": {"_count": 36}, "Theyre": {"_count": 113}, "Everyone": {"_count": 90}, "Voldemort": {"_count": 114}, "Only": {"_count": 74}, "Its": {"_count": 638}, "Lily": {"_count": 18}, "he": {"_count": 133}, "Thats": {"_count": 256}, "all": {"_count": 22}, "of": {"_count": 15}, "Ive": {"_count": 295}, "Harry": {"_count": 3880}, "Really": {"_count": 47}, "Famous": {"_count": 3}, "Hagrids": {"_count": 28}, "Im": {"_count": 461}, "Hagrid": {"_count": 297}, "Young": {"_count": 3}, "Inside": {"_count": 24}, "Under": {"_count": 12}, "Is": {"_count": 122}, "Hell": {"_count": 28}, "Couldnt": {"_count": 19}, "Scars": {"_count": 1}, "Could": {"_count": 36}, "Then": {"_count": 530}, "Shhh": {"_count": 1}, "Yeah": {"_count": 370}, "G": {"_count": 2}, "Wiping": {"_count": 1}, "Good": {"_count": 178}, "One": {"_count": 175}, "Ten": {"_count": 35}, "Yet": {"_count": 41}, "Up": {"_count": 25}, "Are": {"_count": 133}, "Nearly": {"_count": 34}, "Dudleys": {"_count": 8}, "Exactly": {"_count": 25}, "Perhaps": {"_count": 84}, "Dont": {"_count": 251}, "Uncle": {"_count": 85}, "Comb": {"_count": 1}, "About": {"_count": 30}, "Dudley": {"_count": 63}, "Aunt": {"_count": 50}, "Thirtysix": {"_count": 1}, "Darling": {"_count": 2}, "Hows": {"_count": 20}, "Finally": {"_count": 47}, "thirty": {"_count": 1}, "Thirtynine": {"_count": 2}, "Atta": {"_count": 1}, "Bad": {"_count": 7}, "Every": {"_count": 75}, "Now": {"_count": 345}, "That": {"_count": 262}, "Dinky": {"_count": 1}, "dont": {"_count": 9}, "want": {"_count": 4}, "him": {"_count": 6}, "ttto": {"_count": 1}, "Just": {"_count": 194}, "Piers": {"_count": 4}, "Half": {"_count": 30}, "Once": {"_count": 99}, "Next": {"_count": 47}, "Another": {"_count": 30}, "": {"_count": 193}, "roaring": {"_count": 1}, "Behind": {"_count": 36}, "Make": {"_count": 12}, "Do": {"_count": 125}, "Slowly": {"_count": 34}, "Where": {"_count": 150}, "Boa": {"_count": 1}, "DUDLEY": {"_count": 5}, "Out": {"_count": 34}, "Caught": {"_count": 4}, "Thanksss": {"_count": 1}, "Until": {"_count": 4}, "Sometimes": {"_count": 15}, "Very": {"_count": 126}, "Everybody": {"_count": 26}, "3": {"_count": 8}, "By": {"_count": 74}, "Want": {"_count": 20}, "Smeltings": {"_count": 1}, "k": {"_count": 8}, "Your": {"_count": 100}, "Itll": {"_count": 32}, "Get": {"_count": 88}, "Poke": {"_count": 1}, "Three": {"_count": 48}, "Who": {"_count": 117}, "Turning": {"_count": 9}, "Hurry": {"_count": 14}, "Marges": {"_count": 2}, "Ate": {"_count": 2}, "Dad": {"_count": 21}, "Whod": {"_count": 6}, "Within": {"_count": 15}, "PPPetunia": {"_count": 1}, "Vernon": {"_count": 7}, "Let": {"_count": 85}, "OUT": {"_count": 5}, "we": {"_count": 25}, "Wheres": {"_count": 44}, "Whos": {"_count": 45}, "SILENCE": {"_count": 1}, "youre": {"_count": 10}, "Take": {"_count": 43}, "Other": {"_count": 12}, "From": {"_count": 57}, "make": {"_count": 5}, "Yesterday": {"_count": 2}, "Today": {"_count": 12}, "Go": {"_count": 82}, "Someone": {"_count": 46}, "Surely": {"_count": 22}, "See": {"_count": 81}, "Twentyfour": {"_count": 1}, "\u2022k": {"_count": 6}, "Were": {"_count": 144}, "Even": {"_count": 98}, "Shake": {"_count": 2}, "shake": {"_count": 1}, "Scuse": {"_count": 2}, "Ill": {"_count": 206}, "Daddys": {"_count": 3}, "Great": {"_count": 22}, "Monday": {"_count": 2}, "Of": {"_count": 146}, "Still": {"_count": 56}, "Found": {"_count": 3}, "Perched": {"_count": 2}, "Storm": {"_count": 1}, "Icy": {"_count": 1}, "Obviously": {"_count": 11}, "Spray": {"_count": 2}, "Five": {"_count": 29}, "Four": {"_count": 20}, "Maybe": {"_count": 101}, "Thirty": {"_count": 1}, "twenty": {"_count": 2}, "ten": {"_count": 3}, "nine": {"_count": 3}, "two": {"_count": 16}, "one": {"_count": 15}, "BOOM": {"_count": 2}, "THE": {"_count": 69}, "Budge": {"_count": 2}, "An": {"_count": 122}, "Las": {"_count": 2}, "Yeh": {"_count": 33}, "Anyway": {"_count": 86}, "Got": {"_count": 45}, "True": {"_count": 13}, "Rubeus": {"_count": 3}, "Id": {"_count": 92}, "Soon": {"_count": 13}, "Nobody": {"_count": 74}, "Yer": {"_count": 12}, "Call": {"_count": 4}, "ALL": {"_count": 1}, "DURSLEY": {"_count": 1}, "Youre": {"_count": 215}, "yeh": {"_count": 3}, "Stop": {"_count": 27}, "STOP": {"_count": 5}, "Ah": {"_count": 110}, "With": {"_count": 122}, "Chf": {"_count": 1}, "Warlock": {"_count": 1}, "Please": {"_count": 67}, "Term": {"_count": 2}, "Yours": {"_count": 6}, "Taking": {"_count": 7}, "Weathers": {"_count": 1}, "Hope": {"_count": 10}, "Hes": {"_count": 298}, "Knew": {"_count": 11}, "Blimey": {"_count": 40}, "bad": {"_count": 3}, "Worse": {"_count": 6}, "Nah": {"_count": 11}, "Don": {"_count": 25}, "Dark": {"_count": 7}, "Didnt": {"_count": 53}, "terrible": {"_count": 5}, "Course": {"_count": 37}, "Horribly": {"_count": 1}, "Reckon": {"_count": 8}, "Head": {"_count": 3}, "probably": {"_count": 3}, "Wanted": {"_count": 4}, "Never": {"_count": 73}, "Something": {"_count": 68}, "Took": {"_count": 10}, "Brought": {"_count": 2}, "Load": {"_count": 3}, "Pointing": {"_count": 4}, "Disappeared": {"_count": 1}, "Vanished": {"_count": 1}, "Same": {"_count": 11}, "Makes": {"_count": 2}, "Codswallop": {"_count": 2}, "Dunno": {"_count": 19}, "Some": {"_count": 70}, "Too": {"_count": 16}, "Cause": {"_count": 3}, "To": {"_count": 101}, "Not": {"_count": 244}, "every": {"_count": 2}, "chased": {"_count": 1}, "dreading": {"_count": 1}, "Havent": {"_count": 19}, "Seven": {"_count": 11}, "Pulling": {"_count": 5}, "Shouldnta": {"_count": 1}, "Meant": {"_count": 2}, "Be": {"_count": 27}, "Gotta": {"_count": 6}, "DIAGON": {"_count": 1}, "Tap": {"_count": 3}, "Theres": {"_count": 153}, "Look": {"_count": 150}, "finally": {"_count": 1}, "Give": {"_count": 36}, "Knuts": {"_count": 1}, "Best": {"_count": 14}, "Urn": {"_count": 1}, "Dyeh": {"_count": 2}, "Wizards": {"_count": 8}, "Have": {"_count": 80}, "Gringotts": {"_count": 6}, "Run": {"_count": 4}, "Goblins": {"_count": 10}, "Hogwarts": {"_count": 18}, "Fetchin": {"_count": 1}, "Flew": {"_count": 2}, "Seems": {"_count": 3}, "Spells": {"_count": 1}, "Deep": {"_count": 2}, "Yehd": {"_count": 3}, "Ministry": {"_count": 11}, "Bungler": {"_count": 1}, "Passersby": {"_count": 1}, "Crikey": {"_count": 1}, "Their": {"_count": 62}, "Before": {"_count": 58}, "Bless": {"_count": 6}, "what": {"_count": 34}, "Welcome": {"_count": 15}, "Doris": {"_count": 2}, "Always": {"_count": 16}, "Delighted": {"_count": 3}, "Did": {"_count": 137}, "PPPotter": {"_count": 1}, "Nnot": {"_count": 1}, "Youll": {"_count": 72}, "Must": {"_count": 7}, "Told": {"_count": 14}, "Poor": {"_count": 14}, "Brilliant": {"_count": 13}, "Scared": {"_count": 4}, "Right": {"_count": 136}, "Cauldrons": {"_count": 1}, "Several": {"_count": 44}, "Standing": {"_count": 12}, "Like": {"_count": 67}, "Morning": {"_count": 11}, "Griphook": {"_count": 18}, "Cant": {"_count": 50}, "Dumbledores": {"_count": 40}, "Moren": {"_count": 2}, "Harrys": {"_count": 185}, "Columns": {"_count": 1}, "Heaps": {"_count": 1}, "Seventeen": {"_count": 3}, "Vault": {"_count": 2}, "Stand": {"_count": 21}, "Might": {"_count": 5}, "Listen": {"_count": 78}, "Madam": {"_count": 72}, "Hello": {"_count": 51}, "Play": {"_count": 3}, "Know": {"_count": 8}, "Wizard": {"_count": 3}, "Better": {"_count": 15}, "YouKnowWho": {"_count": 5}, "Vol": {"_count": 1}, "Barrels": {"_count": 1}, "Outside": {"_count": 8}, "Tell": {"_count": 48}, "Twenty": {"_count": 5}, "this": {"_count": 17}, "Peeling": {"_count": 1}, "c": {"_count": 1}, "Nice": {"_count": 32}, "Those": {"_count": 36}, "Eleven": {"_count": 4}, "Pliable": {"_count": 1}, "Thirteenandahalf": {"_count": 1}, "Yew": {"_count": 2}, "Powerful": {"_count": 2}, "well": {"_count": 88}, "Oak": {"_count": 1}, "Hmmm": {"_count": 5}, "Which": {"_count": 35}, "Hold": {"_count": 13}, "Try": {"_count": 11}, "Beechwood": {"_count": 1}, "Nine": {"_count": 4}, "Maple": {"_count": 1}, "Quite": {"_count": 21}, "Tricky": {"_count": 4}, "how": {"_count": 24}, "curious": {"_count": 1}, "Curious": {"_count": 4}, "Everything": {"_count": 25}, "Yehve": {"_count": 7}, "First": {"_count": 29}, "Any": {"_count": 23}, "Thank": {"_count": 70}, "Funny": {"_count": 13}, "Magic": {"_count": 3}, "Platform": {"_count": 2}, "Barking": {"_count": 2}, "Two": {"_count": 62}, "Getting": {"_count": 10}, "According": {"_count": 14}, "packed": {"_count": 1}, "Each": {"_count": 17}, "Heart": {"_count": 3}, "Fred": {"_count": 126}, "Honestly": {"_count": 12}, "Excuse": {"_count": 18}, "Smoke": {"_count": 2}, "Oy": {"_count": 6}, "Thanks": {"_count": 75}, "Arent": {"_count": 13}, "Ron": {"_count": 670}, "Mom": {"_count": 4}, "aah": {"_count": 11}, "Shut": {"_count": 24}, "Hang": {"_count": 28}, "Because": {"_count": 59}, "Hey": {"_count": 38}, "Youve": {"_count": 110}, "Saw": {"_count": 3}, "Georg": {"_count": 1}, "Houses": {"_count": 1}, "Anyone": {"_count": 19}, "Everywhere": {"_count": 5}, "Bye": {"_count": 12}, "Wow": {"_count": 16}, "Wish": {"_count": 17}, "Bill": {"_count": 38}, "Percy": {"_count": 64}, "Rons": {"_count": 54}, "Around": {"_count": 6}, "Hungry": {"_count": 1}, "Swap": {"_count": 1}, "Underneath": {"_count": 5}, "Can": {"_count": 68}, "do": {"_count": 9}, "Help": {"_count": 17}, "Weird": {"_count": 6}, "George": {"_count": 28}, "Bleaargh": {"_count": 1}, "Mind": {"_count": 16}, "Unicorn": {"_count": 2}, "Has": {"_count": 15}, "Sunshine": {"_count": 2}, "Scabbers": {"_count": 14}, "Am": {"_count": 4}, "Goodness": {"_count": 5}, "Whatever": {"_count": 15}, "Stupid": {"_count": 6}, "Gryffindor": {"_count": 14}, "Gloom": {"_count": 1}, "Charlies": {"_count": 4}, "Both": {"_count": 56}, "Draco": {"_count": 38}, "Think": {"_count": 28}, "Unless": {"_count": 14}, "Say": {"_count": 13}, "Goyle": {"_count": 6}, "Said": {"_count": 15}, "Cmon": {"_count": 44}, "Neville": {"_count": 112}, "Yehll": {"_count": 4}, "Heads": {"_count": 3}, "Trevor": {"_count": 1}, "7": {"_count": 8}, "Pearlywhite": {"_count": 1}, "New": {"_count": 7}, "Move": {"_count": 9}, "Feeling": {"_count": 22}, "These": {"_count": 31}, "Dotted": {"_count": 1}, "Mainly": {"_count": 1}, "Abbott": {"_count": 1}, "Bones": {"_count": 1}, "Boot": {"_count": 1}, "Brocklehurst": {"_count": 1}, "Bulstrode": {"_count": 1}, "FinchFletchley": {"_count": 2}, "Finnigan": {"_count": 1}, "Granger": {"_count": 3}, "GRYFFINDOR": {"_count": 2}, "Malfoy": {"_count": 153}, "Moon": {"_count": 2}, "Parkinson": {"_count": 1}, "then": {"_count": 28}, "Hmm": {"_count": 12}, "Difficult": {"_count": 3}, "Plenty": {"_count": 3}, "Thomas": {"_count": 1}, "Turpin": {"_count": 1}, "Mad": {"_count": 5}, "Potatoes": {"_count": 1}, "Resident": {"_count": 1}, "Looking": {"_count": 34}, "Slytherins": {"_count": 5}, "Blocks": {"_count": 1}, "Me": {"_count": 28}, "Bit": {"_count": 11}, "Ouch": {"_count": 16}, "Nnothing": {"_count": 1}, "Harder": {"_count": 2}, "Knows": {"_count": 5}, "Ahem": {"_count": 3}, "Quidditch": {"_count": 10}, "Off": {"_count": 11}, "Peeves": {"_count": 28}, "Oooooooh": {"_count": 1}, "Ickle": {"_count": 1}, "Here": {"_count": 102}, "Password": {"_count": 5}, "Caput": {"_count": 1}, "Wearing": {"_count": 1}, "Filch": {"_count": 34}, "Break": {"_count": 3}, "Easily": {"_count": 2}, "Binns": {"_count": 2}, "Strict": {"_count": 1}, "Transfiguration": {"_count": 1}, "Lots": {"_count": 3}, "Friday": {"_count": 1}, "Double": {"_count": 5}, "Snapes": {"_count": 29}, "Hedwig": {"_count": 26}, "Send": {"_count": 5}, "Snape": {"_count": 238}, "Potions": {"_count": 7}, "Our": {"_count": 30}, "More": {"_count": 36}, "Hermione": {"_count": 577}, "Tut": {"_count": 4}, "Lets": {"_count": 100}, "Thought": {"_count": 23}, "Sit": {"_count": 22}, "Over": {"_count": 32}, "Things": {"_count": 6}, "Idiot": {"_count": 1}, "Back": {"_count": 14}, "Hams": {"_count": 1}, "Fang": {"_count": 15}, "Rubbish": {"_count": 6}, "Had": {"_count": 44}, "Flying": {"_count": 3}, "Typical": {"_count": 2}, "Privately": {"_count": 2}, "Gran": {"_count": 2}, "youve": {"_count": 4}, "Scowling": {"_count": 4}, "Stick": {"_count": 1}, "Keep": {"_count": 31}, "Broken": {"_count": 3}, "Ooh": {"_count": 4}, "Hovering": {"_count": 1}, "iVo": {"_count": 5}, "Blood": {"_count": 11}, "Catch": {"_count": 1}, "HARRY": {"_count": 9}, "Follow": {"_count": 14}, "Wood": {"_count": 28}, "Woods": {"_count": 3}, "Charlie": {"_count": 12}, "Ever": {"_count": 6}, "Light": {"_count": 6}, "Heaven": {"_count": 1}, "Flattened": {"_count": 1}, "Seeker": {"_count": 1}, "Bet": {"_count": 14}, "Having": {"_count": 15}, "Tonight": {"_count": 9}, "Wands": {"_count": 7}, "Crabbe": {"_count": 33}, "Midnight": {"_count": 5}, "Catching": {"_count": 4}, "Neither": {"_count": 35}, "Goodbye": {"_count": 15}, "Halfpast": {"_count": 1}, "Dyou": {"_count": 58}, "Fine": {"_count": 32}, "Cups": {"_count": 1}, "Sniff": {"_count": 1}, "Horrorstruck": {"_count": 2}, "Nevilles": {"_count": 16}, "RUN": {"_count": 5}, "Wandering": {"_count": 2}, "Naughty": {"_count": 1}, "Should": {"_count": 16}, "STUDENTS": {"_count": 1}, "Quick": {"_count": 18}, "NOTHING": {"_count": 1}, "10": {"_count": 7}, "Indeed": {"_count": 31}, "Oliver": {"_count": 11}, "McGonagall": {"_count": 9}, "Comets": {"_count": 1}, "Potters": {"_count": 4}, "Sleek": {"_count": 1}, "Hundreds": {"_count": 4}, "Okay": {"_count": 80}, "Compared": {"_count": 2}, "Swish": {"_count": 1}, "Seamus": {"_count": 23}, "Wingardium": {"_count": 1}, "Prefects": {"_count": 3}, "Ducking": {"_count": 1}, "Peering": {"_count": 1}, "Quietly": {"_count": 5}, "Hermionel": {"_count": 4}, "Confuse": {"_count": 1}, "Howling": {"_count": 1}, "Urgh": {"_count": 6}, "Quirrell": {"_count": 19}, "Hopes": {"_count": 1}, "Miss": {"_count": 21}, "said": {"_count": 115}, "Students": {"_count": 14}, "Pig": {"_count": 1}, "QUIDDITCH": {"_count": 1}, "Hardly": {"_count": 8}, "Unfortunately": {"_count": 18}, "Library": {"_count": 2}, "Wonder": {"_count": 17}, "Blasted": {"_count": 1}, "GET": {"_count": 6}, "Seekers": {"_count": 2}, "Many": {"_count": 33}, "Meanwhile": {"_count": 39}, "Mount": {"_count": 6}, "Fifteen": {"_count": 2}, "Bin": {"_count": 9}, "Kept": {"_count": 3}, "Way": {"_count": 1}, "Slytherin": {"_count": 11}, "Neck": {"_count": 1}, "Foul": {"_count": 3}, "Down": {"_count": 7}, "Red": {"_count": 1}, "Flint": {"_count": 6}, "Lee": {"_count": 8}, "Suddenly": {"_count": 11}, "Marcus": {"_count": 1}, "Reaching": {"_count": 2}, "Bright": {"_count": 3}, "Scooping": {"_count": 1}, "Fluffy": {"_count": 1}, "Worst": {"_count": 3}, "Disgusted": {"_count": 1}, "Hi": {"_count": 49}, "WEASLEY": {"_count": 3}, "Festoons": {"_count": 1}, "Itd": {"_count": 10}, "However": {"_count": 97}, "Merry": {"_count": 8}, "Will": {"_count": 29}, "Taped": {"_count": 1}, "Sure": {"_count": 21}, "Written": {"_count": 3}, "Use": {"_count": 11}, "Anuthinq": {"_count": 1}, "P": {"_count": 23}, "Christmas": {"_count": 3}, "Flaming": {"_count": 1}, "Excitement": {"_count": 2}, "Stepping": {"_count": 2}, "Setting": {"_count": 2}, "Panicking": {"_count": 2}, "Wherever": {"_count": 6}, "Breathing": {"_count": 4}, "Shame": {"_count": 8}, "IVo": {"_count": 2}, "there": {"_count": 14}, "Except": {"_count": 12}, "Sitting": {"_count": 7}, "Strange": {"_count": 3}, "Does": {"_count": 26}, "whatever": {"_count": 2}, "Ronald": {"_count": 2}, "Men": {"_count": 4}, "Sir": {"_count": 49}, "NICHOLAS": {"_count": 1}, "Whens": {"_count": 1}, "Chess": {"_count": 1}, "Speaking": {"_count": 4}, "Pretend": {"_count": 1}, "Report": {"_count": 1}, "Stay": {"_count": 18}, "Nicolas": {"_count": 1}, "itll": {"_count": 2}, "Theyd": {"_count": 16}, "Finish": {"_count": 1}, "Longbottom": {"_count": 6}, "been": {"_count": 4}, "excellent": {"_count": 3}, "Jc": {"_count": 3}, "Clearly": {"_count": 4}, "Gliding": {"_count": 2}, "Below": {"_count": 3}, "ddont": {"_count": 1}, "II": {"_count": 5}, "Bbut": {"_count": 1}, "NORBERT": {"_count": 1}, "Whenever": {"_count": 4}, "Moaning": {"_count": 11}, "Jus": {"_count": 15}, "Theyll": {"_count": 33}, "Dragons": {"_count": 5}, "Dragon": {"_count": 2}, "Common": {"_count": 2}, "O": {"_count": 5}, "Number": {"_count": 5}, "lets": {"_count": 4}, "Won": {"_count": 1}, "Isnt": {"_count": 20}, "Set": {"_count": 2}, "Norbert": {"_count": 2}, "Studying": {"_count": 2}, "Wednesday": {"_count": 2}, "Shell": {"_count": 19}, "Dear": {"_count": 30}, "Trouble": {"_count": 5}, "Love": {"_count": 3}, "Anything": {"_count": 17}, "Norberts": {"_count": 1}, "Aargh": {"_count": 1}, "Byebye": {"_count": 1}, "Mommy": {"_count": 1}, "Forgetting": {"_count": 2}, "Detention": {"_count": 4}, "Malfoys": {"_count": 15}, "Chuckling": {"_count": 2}, "going": {"_count": 2}, "gone": {"_count": 3}, "Excuses": {"_count": 1}, "Add": {"_count": 3}, "Explain": {"_count": 7}, "Fifty": {"_count": 7}, "Theyve": {"_count": 29}, "Resign": {"_count": 1}, "Walking": {"_count": 3}, "Quirrells": {"_count": 3}, "Thatll": {"_count": 11}, "Meet": {"_count": 5}, "hard": {"_count": 1}, "hang": {"_count": 4}, "Ahead": {"_count": 2}, "Shouldve": {"_count": 3}, "Abou": {"_count": 1}, "Copyin": {"_count": 1}, "Holding": {"_count": 7}, "Show": {"_count": 5}, "Wed": {"_count": 25}, "Ronan": {"_count": 2}, "Mars": {"_count": 4}, "Unusually": {"_count": 1}, "Hullo": {"_count": 2}, "Ruddy": {"_count": 5}, "they": {"_count": 17}, "jus": {"_count": 2}, "its": {"_count": 24}, "aaRGH": {"_count": 2}, "Firenze": {"_count": 9}, "Remember": {"_count": 28}, "Bane": {"_count": 4}, "Whys": {"_count": 10}, "THROUGH": {"_count": 1}, "never": {"_count": 13}, "Finished": {"_count": 2}, "Mighta": {"_count": 1}, "so": {"_count": 31}, "an": {"_count": 14}, "yeah": {"_count": 25}, "Forget": {"_count": 8}, "Hanging": {"_count": 1}, "Enough": {"_count": 7}, "Flitwick": {"_count": 2}, "Petrificus": {"_count": 6}, "Whatve": {"_count": 8}, "Seeing": {"_count": 7}, "Looks": {"_count": 14}, "Cold": {"_count": 3}, "Lucky": {"_count": 12}, "Devils": {"_count": 2}, "HAVE": {"_count": 1}, "ARE": {"_count": 2}, "Wriggling": {"_count": 2}, "sounds": {"_count": 2}, "Probably": {"_count": 18}, "Ready": {"_count": 21}, "Facing": {"_count": 1}, "White": {"_count": 5}, "look": {"_count": 4}, "Leaves": {"_count": 1}, "Twice": {"_count": 15}, "NO": {"_count": 13}, "Shaking": {"_count": 6}, "Eyes": {"_count": 6}, "Choose": {"_count": 2}, "Grab": {"_count": 2}, "Hermiones": {"_count": 31}, "Books": {"_count": 4}, "tried": {"_count": 2}, "Ropes": {"_count": 1}, "Scurrying": {"_count": 2}, "Trust": {"_count": 8}, "Tried": {"_count": 1}, "Lord": {"_count": 21}, "Since": {"_count": 11}, "decided": {"_count": 1}, "is": {"_count": 11}, "Somehow": {"_count": 8}, "Dare": {"_count": 1}, "facetoface": {"_count": 1}, "Master": {"_count": 44}, "for": {"_count": 19}, "Petrified": {"_count": 2}, "Mere": {"_count": 1}, "why": {"_count": 14}, "or": {"_count": 38}, "LIAR": {"_count": 2}, "she": {"_count": 28}, "NEVER": {"_count": 1}, "Seize": {"_count": 1}, "down": {"_count": 3}, "Tokens": {"_count": 1}, "Destroyed": {"_count": 1}, "not": {"_count": 27}, "Nevertheless": {"_count": 26}, "things": {"_count": 4}, "Alas": {"_count": 4}, "put": {"_count": 3}, "when": {"_count": 11}, "to": {"_count": 30}, "Useful": {"_count": 2}, "your": {"_count": 7}, "Fire": {"_count": 3}, "Absolutely": {"_count": 10}, "Harryl": {"_count": 2}, "Flamels": {"_count": 1}, "Sending": {"_count": 3}, "Smiling": {"_count": 7}, "Sent": {"_count": 3}, "knew": {"_count": 3}, "dyeh": {"_count": 1}, "Fortunately": {"_count": 5}, "Second": {"_count": 7}, "Gryffindors": {"_count": 4}, "Third": {"_count": 5}, "Busy": {"_count": 2}, "Shes": {"_count": 91}, "Nonsense": {"_count": 3}, "Pass": {"_count": 4}, "Petunia": {"_count": 12}, "May": {"_count": 21}, "Excellent": {"_count": 45}, "Precisely": {"_count": 11}, "Perfect": {"_count": 5}, "happy": {"_count": 1}, "Countless": {"_count": 1}, "Underage": {"_count": 1}, "Todays": {"_count": 4}, "Whyre": {"_count": 1}, "Hocus": {"_count": 1}, "MUUUUM": {"_count": 1}, "Eat": {"_count": 9}, "Upstairs": {"_count": 3}, "DOBBYS": {"_count": 2}, "Such": {"_count": 7}, "Ththank": {"_count": 1}, "Dobby": {"_count": 107}, "Ssit": {"_count": 1}, "Thinking": {"_count": 6}, "that": {"_count": 34}, "Wwhat": {"_count": 6}, "powers": {"_count": 1}, "Friends": {"_count": 4}, "Mouth": {"_count": 2}, "tell": {"_count": 8}, "theyll": {"_count": 2}, "please": {"_count": 17}, "Cream": {"_count": 1}, "Read": {"_count": 6}, "Enjoy": {"_count": 3}, "Forgot": {"_count": 1}, "Slipped": {"_count": 1}, "Otherwise": {"_count": 8}, "Supposing": {"_count": 1}, "Exhausted": {"_count": 2}, "Leave": {"_count": 20}, "cut": {"_count": 1}, "Moonlight": {"_count": 2}, "Grinning": {"_count": 5}, "Tie": {"_count": 1}, "Panting": {"_count": 8}, "Watch": {"_count": 10}, "Inch": {"_count": 1}, "THAT": {"_count": 1}, "Definitely": {"_count": 9}, "Someones": {"_count": 13}, "Houseelves": {"_count": 6}, "Judging": {"_count": 7}, "Percys": {"_count": 10}, "Hopefully": {"_count": 2}, "Ottery": {"_count": 1}, "Catchpole": {"_count": 6}, "Lower": {"_count": 5}, "Touchdown": {"_count": 1}, "Beds": {"_count": 1}, "YOU": {"_count": 13}, "Arthur": {"_count": 23}, "Ginny": {"_count": 97}, "Mum": {"_count": 28}, "Yawning": {"_count": 1}, "Muggles": {"_count": 12}, "Gerroff": {"_count": 1}, "Pitiful": {"_count": 1}, "Dads": {"_count": 4}, "Find": {"_count": 5}, "Mortlake": {"_count": 1}, "Sell": {"_count": 1}, "Ccars": {"_count": 1}, "Imagine": {"_count": 13}, "Ninth": {"_count": 1}, "AT": {"_count": 1}, "Fascinating": {"_count": 3}, "Ingenious": {"_count": 2}, "Pretending": {"_count": 3}, "Letters": {"_count": 2}, "SECONDYEAR": {"_count": 1}, "Lockharts": {"_count": 4}, "Lovely": {"_count": 9}, "Errol": {"_count": 5}, "W": {"_count": 126}, "L": {"_count": 76}, "s": {"_count": 52}, "Ordinary": {"_count": 1}, "Stored": {"_count": 1}, "Floo": {"_count": 3}, "DDiagon": {"_count": 1}, "Dizzy": {"_count": 1}, "Evillooking": {"_count": 1}, "Nose": {"_count": 2}, "Seconds": {"_count": 18}, "Special": {"_count": 2}, "famous": {"_count": 1}, "everyone": {"_count": 3}, "Selling": {"_count": 1}, "Insert": {"_count": 1}, "Ha": {"_count": 12}, "Cursed": {"_count": 2}, "Muttering": {"_count": 4}, "Clutching": {"_count": 2}, "Skulkin": {"_count": 1}, "Lousy": {"_count": 2}, "Mollys": {"_count": 2}, "Knockturn": {"_count": 1}, "Guess": {"_count": 4}, "Molly": {"_count": 20}, "Filibusters": {"_count": 1}, "m": {"_count": 5}, "mind": {"_count": 2}, "Gilderoy": {"_count": 9}, "Together": {"_count": 17}, "Ladies": {"_count": 8}, "Staggering": {"_count": 3}, "drawled": {"_count": 1}, "Lucius": {"_count": 17}, "Dozens": {"_count": 1}, "Rotten": {"_count": 1}, "brawling": {"_count": 1}, "5": {"_count": 5}, "Whatre": {"_count": 20}, "Check": {"_count": 4}, "Uhoh": {"_count": 5}, "Dip": {"_count": 1}, "Due": {"_count": 2}, "London": {"_count": 1}, "Stars": {"_count": 2}, "Straight": {"_count": 5}, "Narrow": {"_count": 3}, "Glancing": {"_count": 3}, "IVoooooo": {"_count": 1}, "Steam": {"_count": 4}, "aargh": {"_count": 3}, "Reverse": {"_count": 1}, "Loud": {"_count": 4}, "Dadll": {"_count": 1}, "Stiff": {"_count": 1}, "Innumerable": {"_count": 2}, "Overhead": {"_count": 2}, "Through": {"_count": 13}, "Last": {"_count": 17}, "Cruel": {"_count": 1}, "at": {"_count": 10}, "Six": {"_count": 10}, "his": {"_count": 10}, "Silence": {"_count": 18}, "Doesnt": {"_count": 14}, "Skip": {"_count": 1}, "Arms": {"_count": 1}, "Inspired": {"_count": 2}, "Night": {"_count": 9}, "Unbelievablel": {"_count": 1}, "Cool": {"_count": 10}, "Amazing": {"_count": 3}, "6": {"_count": 1}, "Mails": {"_count": 1}, "Open": {"_count": 9}, "STEALING": {"_count": 1}, "LETTER": {"_count": 1}, "ABSOLUTELY": {"_count": 1}, "Completely": {"_count": 8}, "Stood": {"_count": 1}, "Gave": {"_count": 4}, "Natural": {"_count": 3}, "Mandrake": {"_count": 1}, "Justin": {"_count": 7}, "Wasnt": {"_count": 5}, "Awfully": {"_count": 2}, "Unable": {"_count": 2}, "\u2018Its": {"_count": 1}, "Defense": {"_count": 6}, "Everyones": {"_count": 8}, "Colin": {"_count": 6}, "Jealous": {"_count": 4}, "Weasley": {"_count": 18}, "Deaf": {"_count": 1}, "Lockhart": {"_count": 27}, "Dean": {"_count": 20}, "Freshly": {"_count": 1}, "Devilish": {"_count": 1}, "Hands": {"_count": 5}, "Whassamatter": {"_count": 1}, "Stifflegged": {"_count": 1}, "Angelina": {"_count": 12}, "Oooh": {"_count": 8}, "Givin": {"_count": 1}, "Gettin": {"_count": 2}, "Mudbloods": {"_count": 3}, "Dirty": {"_count": 1}, "Bu": {"_count": 3}, "Spect": {"_count": 2}, "Least": {"_count": 3}, "Treacle": {"_count": 2}, "Fer": {"_count": 4}, "should": {"_count": 3}, "Met": {"_count": 3}, "Argus": {"_count": 1}, "Certainly": {"_count": 22}, "Eight": {"_count": 3}, "Answering": {"_count": 1}, "hell": {"_count": 2}, "Saturday": {"_count": 3}, "come": {"_count": 7}, "Fourteen": {"_count": 4}, "d": {"_count": 1}, "Raindrops": {"_count": 1}, "half": {"_count": 1}, "Fuming": {"_count": 4}, "Drawn": {"_count": 1}, "Filth": {"_count": 3}, "Mess": {"_count": 1}, "Wooden": {"_count": 1}, "Dung": {"_count": 3}, "frog": {"_count": 1}, "rat": {"_count": 1}, "wheres": {"_count": 1}, "Name": {"_count": 3}, "Crime": {"_count": 2}, "befouling": {"_count": 1}, "suggested": {"_count": 1}, "Dabbing": {"_count": 1}, "PEEVES": {"_count": 2}, "Nettles": {"_count": 2}, "J": {"_count": 4}, "Prod": {"_count": 1}, "Stuffing": {"_count": 1}, "Sounds": {"_count": 4}, "Rain": {"_count": 6}, "Shall": {"_count": 27}, "Careful": {"_count": 9}, "Turn": {"_count": 8}, "Large": {"_count": 5}, "Almost": {"_count": 6}, "Unlike": {"_count": 7}, "Nibbles": {"_count": 1}, "Heard": {"_count": 3}, "Rude": {"_count": 1}, "Myrtle": {"_count": 11}, "Enjoying": {"_count": 3}, "Nick": {"_count": 5}, "Live": {"_count": 1}, "Pudding": {"_count": 1}, "rip": {"_count": 1}, "tear": {"_count": 2}, "kill": {"_count": 2}, "time": {"_count": 2}, "Distantly": {"_count": 2}, "Looc": {"_count": 1}, "Foothigh": {"_count": 1}, "ENEMIES": {"_count": 1}, "Shouldnt": {"_count": 7}, "Enemies": {"_count": 1}, "9": {"_count": 5}, "Much": {"_count": 5}, "Ask": {"_count": 14}, "Without": {"_count": 31}, "Innocent": {"_count": 2}, "Professer": {"_count": 1}, "Hearing": {"_count": 2}, "mightve": {"_count": 1}, "Kind": {"_count": 3}, "Stuff": {"_count": 2}, "Nor": {"_count": 17}, "Somewhere": {"_count": 15}, "History": {"_count": 4}, "Ancient": {"_count": 1}, "the": {"_count": 78}, "Reliable": {"_count": 1}, "Naturally": {"_count": 16}, "better": {"_count": 2}, "Hiya": {"_count": 2}, "Scorch": {"_count": 2}, "Level": {"_count": 7}, "RON": {"_count": 2}, "Clues": {"_count": 1}, "Handing": {"_count": 1}, "Hard": {"_count": 4}, "Simple": {"_count": 1}, "Homework": {"_count": 4}, "Wait": {"_count": 40}, "Possibly": {"_count": 6}, "Tomorrows": {"_count": 1}, "Moste": {"_count": 1}, "Lacewing": {"_count": 1}, "think": {"_count": 7}, "Chest": {"_count": 1}, "Close": {"_count": 10}, "Gotcha": {"_count": 1}, "\u2018Get": {"_count": 1}, "Higher": {"_count": 2}, "Slightly": {"_count": 4}, "Training": {"_count": 1}, "WHAM": {"_count": 1}, "Dimly": {"_count": 3}, "Aha": {"_count": 8}, "Lie": {"_count": 3}, "Poking": {"_count": 2}, "Regrowing": {"_count": 1}, "Filthy": {"_count": 3}, "Unbelievable": {"_count": 2}, "Hours": {"_count": 1}, "Tis": {"_count": 4}, "Minerva": {"_count": 10}, "Melted": {"_count": 1}, "surely": {"_count": 2}, "who": {"_count": 5}, "Conjuring": {"_count": 1}, "Deliberately": {"_count": 1}, "Thursday": {"_count": 2}, "Knowing": {"_count": 6}, "Goyles": {"_count": 2}, "Time": {"_count": 14}, "Face": {"_count": 3}, "three": {"_count": 11}, "Finite": {"_count": 1}, "Pinch": {"_count": 1}, "Allow": {"_count": 1}, "Enraged": {"_count": 2}, "Snake": {"_count": 1}, "Shivering": {"_count": 3}, "Resisting": {"_count": 2}, "Between": {"_count": 5}, "Hannah": {"_count": 2}, "Clearing": {"_count": 1}, "Ernie": {"_count": 16}, "Justins": {"_count": 1}, "Upside": {"_count": 2}, "Lemon": {"_count": 1}, "just": {"_count": 16}, "Fawkes": {"_count": 16}, "Phoenixes": {"_count": 1}, "Curiously": {"_count": 2}, "Us": {"_count": 3}, "Wake": {"_count": 1}, "once": {"_count": 2}, "Immediately": {"_count": 4}, "Eh": {"_count": 6}, "Nothings": {"_count": 2}, "Stomachache": {"_count": 1}, "Fathers": {"_count": 4}, "Saint": {"_count": 1}, "whoever": {"_count": 2}, "Azkaban": {"_count": 5}, "Luckily": {"_count": 4}, "Medicine": {"_count": 1}, "Leaving": {"_count": 7}, "Ooooooh": {"_count": 1}, "MMillicent": {"_count": 1}, "even": {"_count": 7}, "Dangerous": {"_count": 1}, "M": {"_count": 7}, "Riddle": {"_count": 39}, "T": {"_count": 32}, "Riddles": {"_count": 8}, "Couldve": {"_count": 4}, "Undaunted": {"_count": 2}, "Prefect": {"_count": 6}, "now": {"_count": 10}, "Rather": {"_count": 5}, "Wash": {"_count": 2}, "Happy": {"_count": 8}, "Hot": {"_count": 1}, "Losing": {"_count": 4}, "Leering": {"_count": 1}, "Hand": {"_count": 6}, "Snarling": {"_count": 1}, "Excited": {"_count": 2}, "Oozing": {"_count": 1}, "OK": {"_count": 1}, "Enter": {"_count": 4}, "Muggle": {"_count": 7}, "Dippet": {"_count": 2}, "Particularly": {"_count": 3}, "gotta": {"_count": 1}, "in": {"_count": 24}, "Evening": {"_count": 6}, "CORNELIUS": {"_count": 1}, "During": {"_count": 4}, "Again": {"_count": 17}, "\u2018Hello": {"_count": 1}, "Confused": {"_count": 2}, "Depends": {"_count": 1}, "let": {"_count": 6}, "Loads": {"_count": 8}, "Wondering": {"_count": 6}, "another": {"_count": 1}, "Tom": {"_count": 18}, "Teachers": {"_count": 2}, "Thankfully": {"_count": 1}, "Nothin": {"_count": 3}, "Cornelius": {"_count": 13}, "Thingsve": {"_count": 1}, "Ministrys": {"_count": 2}, "Wouldnt": {"_count": 18}, "Already": {"_count": 6}, "Dreadful": {"_count": 1}, "Admirable": {"_count": 1}, "Fudge": {"_count": 60}, "Thatd": {"_count": 3}, "Therell": {"_count": 4}, "ARAGOG": {"_count": 1}, "Pity": {"_count": 6}, "Preferring": {"_count": 1}, "Worried": {"_count": 3}, "Hear": {"_count": 4}, "Apparently": {"_count": 34}, "Struggling": {"_count": 2}, "Craning": {"_count": 3}, "Spiders": {"_count": 3}, "Aragog": {"_count": 8}, "Strangers": {"_count": 1}, "Kill": {"_count": 10}, "Click": {"_count": 1}, "Years": {"_count": 3}, "Feet": {"_count": 2}, "Evidently": {"_count": 8}, "Escaping": {"_count": 1}, "Exams": {"_count": 2}, "Hermionell": {"_count": 1}, "Spit": {"_count": 2}, "Mark": {"_count": 2}, "Frankly": {"_count": 1}, "Prepare": {"_count": 1}, "Gone": {"_count": 13}, "Making": {"_count": 5}, "Pipes": {"_count": 3}, "\u2018Her": {"_count": 1}, "Taken": {"_count": 1}, "Werent": {"_count": 3}, "Ddid": {"_count": 1}, "Vvery": {"_count": 1}, "Near": {"_count": 2}, "Shed": {"_count": 4}, "Darkness": {"_count": 4}, "Robes": {"_count": 2}, "Urgent": {"_count": 4}, "Myrtles": {"_count": 1}, "Ooooh": {"_count": 5}, "English": {"_count": 1}, "Whitefaced": {"_count": 1}, "Boys": {"_count": 8}, "Lumosl": {"_count": 2}, "Huge": {"_count": 1}, "Towering": {"_count": 1}, "Ginnyl": {"_count": 1}, "Ginnys": {"_count": 9}, "Preserved": {"_count": 1}, "Lying": {"_count": 9}, "far": {"_count": 2}, "Anger": {"_count": 2}, "on": {"_count": 10}, "as": {"_count": 12}, "Music": {"_count": 1}, "Patched": {"_count": 1}, "Speak": {"_count": 3}, "Waiting": {"_count": 2}, "LEAVE": {"_count": 3}, "KILL": {"_count": 1}, "Dead": {"_count": 10}, "Fawkess": {"_count": 2}, "Thick": {"_count": 3}, "Alone": {"_count": 2}, "Phoenix": {"_count": 1}, "healing": {"_count": 1}, "Ink": {"_count": 1}, "Led": {"_count": 1}, "Hit": {"_count": 3}, "Hasnt": {"_count": 9}, "Odd": {"_count": 4}, "Relief": {"_count": 2}, "Wwhats": {"_count": 1}, "has": {"_count": 6}, "traveled": {"_count": 1}, "sank": {"_count": 1}, "Older": {"_count": 1}, "Bed": {"_count": 3}, "Impaled": {"_count": 1}, "because": {"_count": 9}, "Dully": {"_count": 1}, "Godric": {"_count": 1}, "Ignoring": {"_count": 7}, "Prove": {"_count": 2}, "Quickly": {"_count": 3}, "Farewell": {"_count": 4}, "OWL": {"_count": 2}, "HELLO": {"_count": 1}, "WHO": {"_count": 3}, "IM": {"_count": 1}, "THERE": {"_count": 2}, "HOW": {"_count": 3}, "Barely": {"_count": 9}, "Remembering": {"_count": 6}, "Gazing": {"_count": 2}, "Silhouetted": {"_count": 1}, "Fingers": {"_count": 2}, "Plump": {"_count": 1}, "Bills": {"_count": 5}, "Apart": {"_count": 3}, "Praying": {"_count": 1}, "Wont": {"_count": 9}, "Noticing": {"_count": 1}, "Deciding": {"_count": 3}, "Extremely": {"_count": 1}, "AUNT": {"_count": 1}, "Far": {"_count": 3}, "Sh": {"_count": 2}, "Ripper": {"_count": 3}, "Margell": {"_count": 1}, "Watching": {"_count": 3}, "Firstly": {"_count": 7}, "Secondly": {"_count": 2}, "Brutuss": {"_count": 6}, "Duddys": {"_count": 1}, "Mummys": {"_count": 1}, "Abandoning": {"_count": 3}, "Whatsits": {"_count": 1}, "Knocking": {"_count": 1}, "Ronll": {"_count": 1}, "Tea": {"_count": 3}, "Shards": {"_count": 1}, "Marge": {"_count": 3}, "thats": {"_count": 14}, "Aah": {"_count": 1}, "Pardon": {"_count": 1}, "Ratty": {"_count": 1}, "Weak": {"_count": 2}, "Underbred": {"_count": 1}, "Grasp": {"_count": 1}, "Unemployed": {"_count": 1}, "MORE": {"_count": 1}, "Proud": {"_count": 1}, "NOOOOOOO": {"_count": 2}, "COME": {"_count": 3}, "Whichever": {"_count": 3}, "begin": {"_count": 1}, "Lumos": {"_count": 8}, "Gold": {"_count": 3}, "Fell": {"_count": 1}, "Choo": {"_count": 3}, "Woss": {"_count": 2}, "Ere": {"_count": 3}, "Candles": {"_count": 2}, "Stan": {"_count": 12}, "Them": {"_count": 4}, "Sirius": {"_count": 119}, "Black": {"_count": 38}, "Scarylookin": {"_count": 1}, "Broad": {"_count": 2}, "Big": {"_count": 10}, "Orrible": {"_count": 1}, "Laughed": {"_count": 1}, "Cos": {"_count": 1}, "Serves": {"_count": 2}, "after": {"_count": 4}, "Ole": {"_count": 1}, "Frightenin": {"_count": 1}, "Talk": {"_count": 4}, "Ear": {"_count": 1}, "Righto": {"_count": 2}, "Old": {"_count": 6}, "BANG": {"_count": 5}, "Ern": {"_count": 2}, "Ow": {"_count": 5}, "Running": {"_count": 3}, "Punishment": {"_count": 1}, "Circumstances": {"_count": 1}, "Room": {"_count": 1}, "best": {"_count": 1}, "Fudges": {"_count": 4}, "Arrived": {"_count": 1}, "Irish": {"_count": 1}, "Price": {"_count": 2}, "Torn": {"_count": 1}, "Unfogging": {"_count": 1}, "Somebody": {"_count": 14}, "Brandnew": {"_count": 1}, "Errols": {"_count": 1}, "Poisonous": {"_count": 2}, "Bang": {"_count": 1}, "Hm": {"_count": 1}, "Blacks": {"_count": 14}, "Simply": {"_count": 3}, "Dinner": {"_count": 3}, "Howre": {"_count": 18}, "Sos": {"_count": 1}, "makes": {"_count": 2}, "hes": {"_count": 15}, "Unbidden": {"_count": 1}, "Later": {"_count": 4}, "Guards": {"_count": 1}, "Promise": {"_count": 2}, "Swear": {"_count": 1}, "Though": {"_count": 47}, "Lupin": {"_count": 87}, "youll": {"_count": 4}, "Pepper": {"_count": 1}, "Crookshanks": {"_count": 37}, "Midafternoon": {"_count": 1}, "Potty": {"_count": 2}, "Quiet": {"_count": 1}, "a": {"_count": 39}, "Firs": {"_count": 5}, "Shove": {"_count": 1}, "Terrible": {"_count": 4}, "Kindly": {"_count": 10}, "Dementors": {"_count": 16}, "Congratulations": {"_count": 4}, "great": {"_count": 3}, "came": {"_count": 1}, "Overcome": {"_count": 1}, "TALONS": {"_count": 1}, "Ignore": {"_count": 4}, "Came": {"_count": 1}, "Sort": {"_count": 2}, "honesly": {"_count": 1}, "Puffing": {"_count": 1}, "\u2018Sibyll": {"_count": 1}, "Parvati": {"_count": 24}, "Incidentally": {"_count": 3}, "Lavender": {"_count": 15}, "Collect": {"_count": 1}, "Swill": {"_count": 1}, "thank": {"_count": 6}, "Broaden": {"_count": 1}, "\u2018A": {"_count": 3}, "my": {"_count": 22}, "danger": {"_count": 1}, "Silently": {"_count": 5}, "Everybodys": {"_count": 1}, "Grims": {"_count": 1}, "Yesterdays": {"_count": 1}, "Hasn": {"_count": 1}, "Righ": {"_count": 8}, "God": {"_count": 4}, "Trotting": {"_count": 2}, "Gee": {"_count": 1}, "Hippogriffs": {"_count": 2}, "Beauiful": {"_count": 1}, "Easy": {"_count": 5}, "Buckbeak": {"_count": 23}, "Thas": {"_count": 12}, "covered": {"_count": 1}, "moanin": {"_count": 1}, "School": {"_count": 3}, "Shoulda": {"_count": 2}, "done": {"_count": 1}, "S": {"_count": 16}, "Tears": {"_count": 8}, "Ar": {"_count": 4}, "Stuck": {"_count": 1}, "WHAT": {"_count": 5}, "YEH": {"_count": 1}, "Settle": {"_count": 3}, "Change": {"_count": 1}, "Seen": {"_count": 4}, "Orange": {"_count": 1}, "Class": {"_count": 1}, "Puzzled": {"_count": 1}, "Loony": {"_count": 3}, "Td": {"_count": 2}, "Boggarts": {"_count": 1}, "Wardrobes": {"_count": 1}, "riddikulusV": {"_count": 1}, "hmmm": {"_count": 1}, "always": {"_count": 4}, "green": {"_count": 1}, "Hooknosed": {"_count": 1}, "R": {"_count": 6}, "Crack": {"_count": 12}, "became": {"_count": 1}, "RiddikulusV": {"_count": 2}, "five": {"_count": 2}, "Talking": {"_count": 7}, "Spanking": {"_count": 1}, "Full": {"_count": 6}, "End": {"_count": 2}, "Halloween": {"_count": 1}, "Clever": {"_count": 2}, "OY": {"_count": 2}, "H": {"_count": 1}, "Staying": {"_count": 1}, "Fortuna": {"_count": 1}, "Water": {"_count": 3}, "Cup": {"_count": 2}, "Lupins": {"_count": 12}, "Disgusting": {"_count": 1}, "Dervish": {"_count": 1}, "Peoples": {"_count": 1}, "Ashamed": {"_count": 1}, "Crying": {"_count": 1}, "Sleep": {"_count": 3}, "Disguised": {"_count": 1}, "Headmaster": {"_count": 4}, "Frightened": {"_count": 4}, "goodness": {"_count": 1}, "Flints": {"_count": 3}, "Strong": {"_count": 2}, "Diggorys": {"_count": 1}, "Seriously": {"_count": 4}, "werewolves": {"_count": 1}, "Cursing": {"_count": 1}, "Cedric": {"_count": 49}, "Fasteri": {"_count": 1}, "stand": {"_count": 2}, "have": {"_count": 9}, "Scariest": {"_count": 1}, "hooded": {"_count": 1}, "cold": {"_count": 1}, "screaming": {"_count": 1}, "Mustve": {"_count": 3}, "Hufflepuffll": {"_count": 1}, "Shot": {"_count": 1}, "about": {"_count": 7}, "Lures": {"_count": 1}, "furious": {"_count": 1}, "soul": {"_count": 1}, "emotions": {"_count": 1}, "quite": {"_count": 4}, "Snow": {"_count": 9}, "Psst": {"_count": 2}, "Early": {"_count": 1}, "Moony": {"_count": 4}, "Astounded": {"_count": 1}, "Noble": {"_count": 1}, "Aids": {"_count": 1}, "Dissendiurrd": {"_count": 1}, "Honeydukes": {"_count": 1}, "Creamy": {"_count": 1}, "Ugh": {"_count": 1}, "BY": {"_count": 3}, "Hogsmeade": {"_count": 3}, "Professors": {"_count": 6}, "Dripping": {"_count": 1}, "Staring": {"_count": 4}, "Rosmerta": {"_count": 5}, "Necessary": {"_count": 2}, "unfortunate": {"_count": 1}, "Ringleaders": {"_count": 1}, "Inseparable": {"_count": 1}, "James": {"_count": 15}, "Powers": {"_count": 1}, "Shh": {"_count": 4}, "\u2018I": {"_count": 7}, "Maddened": {"_count": 1}, "Pettigrew": {"_count": 15}, "Heroworshipped": {"_count": 1}, "Eyewitnesses": {"_count": 1}, "Blew": {"_count": 1}, "foolish": {"_count": 1}, "Bodies": {"_count": 1}, "pointless": {"_count": 1}, "Kep": {"_count": 1}, "day": {"_count": 2}, "Long": {"_count": 6}, "tryin": {"_count": 1}, "Heres": {"_count": 5}, "maroon": {"_count": 1}, "see": {"_count": 12}, "whod": {"_count": 2}, "Crackers": {"_count": 1}, "Dig": {"_count": 1}, "Sibyll": {"_count": 2}, "Tripe": {"_count": 1}, "Severus": {"_count": 26}, "Derek": {"_count": 1}, "Coming": {"_count": 7}, "Jinxed": {"_count": 1}, "Waving": {"_count": 1}, "Classes": {"_count": 1}, "Expecto": {"_count": 15}, "Concentrating": {"_count": 4}, "big": {"_count": 2}, "wake": {"_count": 1}, "EXPECTO": {"_count": 5}, "Ravenclaw": {"_count": 1}, "Doing": {"_count": 2}, "Seemed": {"_count": 4}, "youd": {"_count": 5}, "\u2018As": {"_count": 1}, "January": {"_count": 1}, "Butterbeer": {"_count": 1}, "anything": {"_count": 5}, "lost": {"_count": 1}, "Speechless": {"_count": 1}, "Closeup": {"_count": 1}, "Arithmancy": {"_count": 1}, "LOOK": {"_count": 2}, "HES": {"_count": 2}, "Personally": {"_count": 12}, "Dumbledored": {"_count": 3}, "turn": {"_count": 1}, "Put": {"_count": 12}, "KNOCK": {"_count": 1}, "Distracted": {"_count": 2}, "Plunging": {"_count": 1}, "Alicia": {"_count": 2}, "Party": {"_count": 2}, "Anxious": {"_count": 1}, "Disoriented": {"_count": 1}, "Doors": {"_count": 1}, "Perce": {"_count": 1}, "PROFESSOR": {"_count": 3}, "SNAPES": {"_count": 2}, "Throughout": {"_count": 1}, "like": {"_count": 10}, "holding": {"_count": 1}, "Hedve": {"_count": 2}, "WAIT": {"_count": 2}, "Spose": {"_count": 2}, "Averting": {"_count": 1}, "Buckbeaks": {"_count": 2}, "Him": {"_count": 4}, "Goin": {"_count": 1}, "Bitten": {"_count": 2}, "reckon": {"_count": 1}, "Gawd": {"_count": 1}, "Crouching": {"_count": 3}, "Suppose": {"_count": 1}, "SPLATTER": {"_count": 1}, "Floating": {"_count": 1}, "Strutting": {"_count": 1}, "Rules": {"_count": 1}, "Rage": {"_count": 2}, "Spare": {"_count": 1}, "Reveal": {"_count": 1}, "Childish": {"_count": 1}, "Bought": {"_count": 2}, "ages": {"_count": 1}, "Execution": {"_count": 1}, "Beaky": {"_count": 3}, "Sall": {"_count": 1}, "Sno": {"_count": 3}, "Wh": {"_count": 3}, "Glowing": {"_count": 1}, "\u2018the": {"_count": 1}, "Crystal": {"_count": 1}, "Ooooo": {"_count": 1}, "Oooooo": {"_count": 2}, "Locker": {"_count": 1}, "Threequarters": {"_count": 1}, "Widely": {"_count": 1}, "Captains": {"_count": 3}, "Penalty": {"_count": 2}, "YES": {"_count": 3}, "Superb": {"_count": 1}, "Katie": {"_count": 5}, "THIRTYZERO": {"_count": 1}, "WHOOSH": {"_count": 1}, "Bole": {"_count": 2}, "Fiftyten": {"_count": 1}, "Sixtyten": {"_count": 1}, "Moments": {"_count": 2}, "Seventytwenty": {"_count": 1}, "aaRRRGH": {"_count": 1}, "SHE": {"_count": 3}, "Wave": {"_count": 1}, "Thrust": {"_count": 1}, "Words": {"_count": 2}, "E": {"_count": 55}, "Mine": {"_count": 5}, "Beakys": {"_count": 1}, "Flushed": {"_count": 1}, "pity": {"_count": 1}, "Whyd": {"_count": 1}, "Nope": {"_count": 6}, "Howd": {"_count": 3}, "um": {"_count": 4}, "Relieved": {"_count": 1}, "before": {"_count": 1}, "will": {"_count": 2}, "Rise": {"_count": 1}, "had": {"_count": 5}, "Lost": {"_count": 8}, "specially": {"_count": 1}, "Wan": {"_count": 2}, "threatened": {"_count": 1}, "Wrote": {"_count": 1}, "Yehre": {"_count": 3}, "Silent": {"_count": 1}, "Fudgell": {"_count": 1}, "Whether": {"_count": 11}, "Gotchal": {"_count": 1}, "Dazed": {"_count": 2}, "Abruptly": {"_count": 1}, "Paper": {"_count": 1}, "Ghosts": {"_count": 2}, "Nox": {"_count": 1}, "Wand": {"_count": 5}, "ExpelliarmusV": {"_count": 3}, "Brave": {"_count": 1}, "trying": {"_count": 1}, "WERE": {"_count": 3}, "Mystified": {"_count": 1}, "unless": {"_count": 6}, "without": {"_count": 2}, "MOONY": {"_count": 1}, "Ridiculous": {"_count": 1}, "Peter": {"_count": 6}, "Peters": {"_count": 1}, "Sneaking": {"_count": 1}, "hoping": {"_count": 1}, "anyway": {"_count": 6}, "lucky": {"_count": 2}, "DONT": {"_count": 2}, "Vengeance": {"_count": 1}, "pleased": {"_count": 1}, "YOURE": {"_count": 1}, "JUST": {"_count": 1}, "Expelliarmus": {"_count": 1}, "ever": {"_count": 3}, "since": {"_count": 2}, "croaked": {"_count": 2}, "HE": {"_count": 4}, "Force": {"_count": 1}, "Sorted": {"_count": 1}, "me": {"_count": 4}, "must": {"_count": 5}, "Voldemorts": {"_count": 18}, "helped": {"_count": 2}, "too": {"_count": 6}, "become": {"_count": 1}, "perfectly": {"_count": 1}, "ready": {"_count": 1}, "\u2018Hes": {"_count": 1}, "thin": {"_count": 1}, "Believe": {"_count": 4}, "Throat": {"_count": 1}, "Remus": {"_count": 10}, "wouldnt": {"_count": 2}, "Forgive": {"_count": 5}, "gasped": {"_count": 2}, "havent": {"_count": 1}, "kind": {"_count": 2}, "Sweet": {"_count": 3}, "clever": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 3}, "YOUD": {"_count": 1}, "DIED": {"_count": 1}, "Thin": {"_count": 1}, "Bandages": {"_count": 1}, "Hair": {"_count": 1}, "Crookshankss": {"_count": 2}, "iVooo": {"_count": 1}, "Noooo": {"_count": 1}, "completely": {"_count": 2}, "Fog": {"_count": 1}, "expecto": {"_count": 3}, "Facedown": {"_count": 2}, "Fighting": {"_count": 4}, "raising": {"_count": 1}, "someone": {"_count": 5}, "HERMIONES": {"_count": 2}, "shocking": {"_count": 1}, "miracle": {"_count": 1}, "by": {"_count": 5}, "Order": {"_count": 1}, "weve": {"_count": 5}, "Consider": {"_count": 3}, "Extraordinary": {"_count": 2}, "Minister": {"_count": 4}, "Confunded": {"_count": 2}, "their": {"_count": 2}, "OH": {"_count": 2}, "Thirteenth": {"_count": 1}, "Footsteps": {"_count": 4}, "Safe": {"_count": 2}, "Macnair": {"_count": 5}, "sentenced": {"_count": 1}, "quietly": {"_count": 1}, "Search": {"_count": 4}, "Gotchcd": {"_count": 1}, "Clouds": {"_count": 1}, "from": {"_count": 4}, "yet": {"_count": 10}, "followed": {"_count": 2}, "okay": {"_count": 9}, "Whoever": {"_count": 5}, "Prongs": {"_count": 1}, "Alohomoral": {"_count": 1}, "only": {"_count": 3}, "Control": {"_count": 2}, "Calm": {"_count": 7}, "Fellow": {"_count": 1}, "cantve": {"_count": 1}, "thought": {"_count": 3}, "Resigned": {"_count": 2}, "Says": {"_count": 10}, "Greater": {"_count": 1}, "especially": {"_count": 2}, "Godfather": {"_count": 2}, "keep": {"_count": 4}, "check": {"_count": 1}, "Elderly": {"_count": 1}, "Frank": {"_count": 19}, "Unfriendly": {"_count": 1}, "War": {"_count": 1}, "Horrible": {"_count": 3}, "Weeds": {"_count": 1}, "Brow": {"_count": 1}, "Owing": {"_count": 3}, "Plainly": {"_count": 1}, "Laying": {"_count": 1}, "perhaps": {"_count": 9}, "Silencel": {"_count": 1}, "Wormtail": {"_count": 31}, "Rreally": {"_count": 1}, "Wormtails": {"_count": 6}, "are": {"_count": 9}, "Horrified": {"_count": 3}, "Nagini": {"_count": 3}, "Inindeed": {"_count": 1}, "Invite": {"_count": 1}, "Rolls": {"_count": 1}, "Privet": {"_count": 1}, "Asleep": {"_count": 2}, "Write": {"_count": 2}, "Siriuss": {"_count": 11}, "Bewildered": {"_count": 2}, "Hoping": {"_count": 5}, "Allowing": {"_count": 1}, "Dumpy": {"_count": 1}, "Played": {"_count": 1}, "Normal": {"_count": 1}, "OUCH": {"_count": 5}, "Mums": {"_count": 7}, "BACK": {"_count": 1}, "Lunch": {"_count": 2}, "Normally": {"_count": 2}, "Either": {"_count": 5}, "Voices": {"_count": 1}, "Damn": {"_count": 4}, "Eclectic": {"_count": 1}, "ouch": {"_count": 2}, "Winking": {"_count": 1}, "Yep": {"_count": 9}, "Incendio": {"_count": 1}, "Flames": {"_count": 2}, "Tye": {"_count": 1}, "Joke": {"_count": 3}, "Fake": {"_count": 1}, "Front": {"_count": 1}, "Pigwidgeon": {"_count": 9}, "Knives": {"_count": 1}, "Ludo": {"_count": 14}, "with": {"_count": 8}, "Bulgaria": {"_count": 1}, "Krums": {"_count": 2}, "Went": {"_count": 3}, "Shocking": {"_count": 2}, "Prefer": {"_count": 1}, "Walk": {"_count": 2}, "Acciol": {"_count": 2}, "Unobtrusive": {"_count": 1}, "stuff": {"_count": 3}, "Whew": {"_count": 1}, "Amos": {"_count": 7}, "Ceds": {"_count": 1}, "muttered": {"_count": 4}, "Site": {"_count": 1}, "Diggory": {"_count": 4}, "second": {"_count": 1}, "ask": {"_count": 2}, "Beyond": {"_count": 5}, "Foreign": {"_count": 1}, "Aye": {"_count": 1}, "Weirdos": {"_count": 1}, "Obliviate": {"_count": 2}, "Instantly": {"_count": 4}, "Needs": {"_count": 2}, "lax": {"_count": 2}, "Halfway": {"_count": 9}, "Oddly": {"_count": 1}, "ny": {"_count": 1}, "Krum": {"_count": 30}, "Viktor": {"_count": 17}, "\u2018Really": {"_count": 1}, "Splintered": {"_count": 1}, "Oops": {"_count": 3}, "Arnold": {"_count": 1}, "theyre": {"_count": 11}, "Ahoy": {"_count": 1}, "Bagman": {"_count": 24}, "go": {"_count": 3}, "any": {"_count": 3}, "Cheers": {"_count": 8}, "Bartyll": {"_count": 1}, "memory": {"_count": 2}, "Barty": {"_count": 4}, "Pull": {"_count": 1}, "Ali": {"_count": 2}, "Fairly": {"_count": 1}, "Organizing": {"_count": 1}, "Glad": {"_count": 6}, "Salesmen": {"_count": 1}, "Been": {"_count": 10}, "Omnioculars": {"_count": 1}, "slow": {"_count": 1}, "Bargain": {"_count": 1}, "Fair": {"_count": 3}, "Seats": {"_count": 1}, "bless": {"_count": 1}, "Prime": {"_count": 2}, "Top": {"_count": 3}, "Gladrags": {"_count": 1}, "Ideas": {"_count": 1}, "Winky": {"_count": 42}, "Paying": {"_count": 1}, "Wild": {"_count": 1}, "National": {"_count": 1}, "Highly": {"_count": 3}, "oh": {"_count": 13}, "ah": {"_count": 8}, "Edging": {"_count": 1}, "Mungos": {"_count": 55}, "Slimy": {"_count": 2}, "welcome": {"_count": 1}, "Thousands": {"_count": 1}, "Veelal": {"_count": 1}, "Veela": {"_count": 1}, "except": {"_count": 4}, "Jumping": {"_count": 2}, "Angry": {"_count": 2}, "Huh": {"_count": 1}, "Honestlyl": {"_count": 1}, "Squinting": {"_count": 5}, "Leprechauns": {"_count": 1}, "Ivanova": {"_count": 1}, "Zograf": {"_count": 1}, "Presenting": {"_count": 1}, "Theeeeeeeeyre": {"_count": 1}, "Hawkshead": {"_count": 1}, "Porskoff": {"_count": 1}, "Across": {"_count": 5}, "Furious": {"_count": 4}, "Volkov": {"_count": 1}, "Dimitrov": {"_count": 3}, "Lynch": {"_count": 3}, "Fool": {"_count": 1}, "Wronski": {"_count": 1}, "Hassan": {"_count": 1}, "Mostafa": {"_count": 2}, "Levski": {"_count": 1}, "Timeout": {"_count": 1}, "IRELAND": {"_count": 1}, "KRUM": {"_count": 1}, "Flags": {"_count": 1}, "Veil": {"_count": 3}, "Aidan": {"_count": 1}, "shame": {"_count": 1}, "Raucous": {"_count": 1}, "PotteA": {"_count": 1}, "High": {"_count": 1}, "Tents": {"_count": 1}, "Tripped": {"_count": 1}, "Hadnt": {"_count": 3}, "Scare": {"_count": 1}, "Beauxbatons": {"_count": 2}, "right": {"_count": 11}, "\u2018House": {"_count": 1}, "Farther": {"_count": 1}, "some": {"_count": 3}, "MORSMORDREl": {"_count": 1}, "YouKnowWhos": {"_count": 4}, "STUPEFYl": {"_count": 1}, "Raising": {"_count": 1}, "Stunned": {"_count": 6}, "Crouch": {"_count": 20}, "Watched": {"_count": 3}, "Elf": {"_count": 3}, "carried": {"_count": 2}, "Winkys": {"_count": 4}, "Prior": {"_count": 1}, "Deletrius": {"_count": 1}, "precious": {"_count": 1}, "finding": {"_count": 1}, "Mmmaster": {"_count": 2}, "embarrassing": {"_count": 1}, "Death": {"_count": 8}, "culprits": {"_count": 1}, "national": {"_count": 1}, "Rita": {"_count": 33}, "greater": {"_count": 1}, "Hedwigs": {"_count": 4}, "Complaining": {"_count": 1}, "Mundungus": {"_count": 18}, "Home": {"_count": 1}, "Thered": {"_count": 1}, "Bung": {"_count": 1}, "Dress": {"_count": 3}, "robes": {"_count": 1}, "show": {"_count": 2}, "ABOARD": {"_count": 1}, "Heavy": {"_count": 3}, "Made": {"_count": 6}, "MadEye": {"_count": 25}, "Fanks": {"_count": 1}, "Birds": {"_count": 3}, "Moody": {"_count": 63}, "Sees": {"_count": 1}, "Father": {"_count": 4}, "Durmstrang": {"_count": 2}, "Durmstrangs": {"_count": 2}, "heard": {"_count": 2}, "Laughing": {"_count": 4}, "Ronl": {"_count": 2}, "making": {"_count": 1}, "\u2018Fathers": {"_count": 1}, "Leaning": {"_count": 1}, "Lightning": {"_count": 1}, "Drenched": {"_count": 1}, "Into": {"_count": 2}, "Golden": {"_count": 1}, "Pearly": {"_count": 1}, "Brothers": {"_count": 1}, "Tiny": {"_count": 6}, "Sings": {"_count": 1}, "Ackerley": {"_count": 1}, "RAVENCLAW": {"_count": 1}, "Stewart": {"_count": 1}, "Baddock": {"_count": 1}, "Branstone": {"_count": 1}, "Dennis": {"_count": 1}, "Pritchard": {"_count": 1}, "Tuck": {"_count": 2}, "Wreaked": {"_count": 1}, "Pots": {"_count": 1}, "Place": {"_count": 1}, "Terrified": {"_count": 2}, "Pumpkin": {"_count": 1}, "Sick": {"_count": 3}, "Slave": {"_count": 1}, "Spotted": {"_count": 1}, "MacLEye": {"_count": 1}, "Eager": {"_count": 1}, "Bedtime": {"_count": 1}, "Balderdash": {"_count": 3}, "Mental": {"_count": 2}, "Chos": {"_count": 4}, "MADEYE": {"_count": 1}, "outside": {"_count": 1}, "Herbology": {"_count": 2}, "damn": {"_count": 1}, "Divination": {"_count": 2}, "Instinctively": {"_count": 2}, "Bubotubers": {"_count": 1}, "Pus": {"_count": 1}, "Wear": {"_count": 2}, "Squeezing": {"_count": 2}, "Thisll": {"_count": 3}, "Silly": {"_count": 1}, "Mornin": {"_count": 1}, "Beer": {"_count": 1}, "Eurgh": {"_count": 4}, "Ony": {"_count": 5}, "most": {"_count": 2}, "Human": {"_count": 1}, "Born": {"_count": 2}, "Saturn": {"_count": 1}, "tragic": {"_count": 1}, "Recently": {"_count": 1}, "Unsurprisingly": {"_count": 1}, "Stinking": {"_count": 1}, "Teaching": {"_count": 2}, "Teach": {"_count": 1}, "Supercool": {"_count": 1}, "Mazing": {"_count": 1}, "Moodys": {"_count": 13}, "Curses": {"_count": 1}, "Total": {"_count": 1}, "CONSTANT": {"_count": 2}, "Engorgio": {"_count": 2}, "Reducio": {"_count": 1}, "Pain": {"_count": 1}, "anyone": {"_count": 2}, "Avada": {"_count": 8}, "exactly": {"_count": 1}, "those": {"_count": 3}, "copy": {"_count": 1}, "Interesting": {"_count": 3}, "Attacks": {"_count": 1}, "Telling": {"_count": 2}, "erm": {"_count": 3}, "Mercury": {"_count": 1}, "cool": {"_count": 1}, "Venus": {"_count": 1}, "Shortly": {"_count": 3}, "\u2018Spew": {"_count": 1}, "Stands": {"_count": 1}, "SPEW": {"_count": 1}, "BEAUXBATONS": {"_count": 1}, "Drop": {"_count": 4}, "jump": {"_count": 1}, "Jump": {"_count": 3}, "Lessons": {"_count": 2}, "Rumors": {"_count": 5}, "Enormous": {"_count": 2}, "badge": {"_count": 2}, "Hedwigll": {"_count": 1}, "Denniss": {"_count": 1}, "Dumblydorr": {"_count": 1}, "Skrewts": {"_count": 2}, "Zey": {"_count": 4}, "Karkaroff": {"_count": 23}, "bet": {"_count": 1}, "Bouillabaisse": {"_count": 1}, "Thrivin": {"_count": 1}, "Cho": {"_count": 26}, "Bartemius": {"_count": 1}, "Anybody": {"_count": 2}, "Aspiring": {"_count": 1}, "Tomorrow": {"_count": 6}, "Done": {"_count": 2}, "Madame": {"_count": 13}, "badges": {"_count": 2}, "Coughing": {"_count": 2}, "Eau": {"_count": 1}, "Drawing": {"_count": 2}, "Sparks": {"_count": 2}, "Bravo": {"_count": 1}, "Disappointed": {"_count": 2}, "Automatically": {"_count": 2}, "through": {"_count": 2}, "Fleur": {"_count": 35}, "lady": {"_count": 1}, "Cest": {"_count": 1}, "Ogwarts": {"_count": 1}, "Binding": {"_count": 1}, "Convenient": {"_count": 2}, "funny": {"_count": 2}, "Imagining": {"_count": 1}, "Courage": {"_count": 1}, "very": {"_count": 14}, "hed": {"_count": 4}, "feeble": {"_count": 1}, "plotting": {"_count": 1}, "Insisting": {"_count": 1}, "theyd": {"_count": 1}, "Erm": {"_count": 11}, "Whose": {"_count": 5}, "Predictably": {"_count": 3}, "everythin": {"_count": 1}, "Exceptionally": {"_count": 1}, "Being": {"_count": 5}, "FurnunculusV": {"_count": 1}, "DensaugeoV": {"_count": 1}, "Jets": {"_count": 3}, "Hospital": {"_count": 1}, "Lood": {"_count": 1}, "Pansy": {"_count": 11}, "POTTER": {"_count": 2}, "Antidotes": {"_count": 1}, "nothing": {"_count": 6}, "Testing": {"_count": 1}, "Reluctantly": {"_count": 1}, "Champions": {"_count": 1}, "Frowning": {"_count": 2}, "Dumbledorel": {"_count": 1}, "Mademoiselle": {"_count": 1}, "inflexible": {"_count": 1}, "rosewood": {"_count": 1}, "dear": {"_count": 2}, "however": {"_count": 2}, "Containing": {"_count": 1}, "ash": {"_count": 1}, "pleasantly": {"_count": 1}, "hornbeam": {"_count": 1}, "Avis": {"_count": 1}, "Eventually": {"_count": 2}, "Photos": {"_count": 1}, "Entering": {"_count": 2}, "Admittedly": {"_count": 6}, "good": {"_count": 9}, "Stunningly": {"_count": 1}, "members": {"_count": 3}, "cheering": {"_count": 1}, "notebook": {"_count": 2}, "Straightening": {"_count": 1}, "Mesmerized": {"_count": 1}, "Stunning": {"_count": 2}, "Stupefy": {"_count": 5}, "Vicious": {"_count": 1}, "\u2018": {"_count": 7}, "\u2018He": {"_count": 2}, "Trusting": {"_count": 1}, "Nearby": {"_count": 2}, "Karkaroffs": {"_count": 6}, "Dressed": {"_count": 1}, "Alarmed": {"_count": 1}, "\u2018Talonclipping": {"_count": 1}, "treating": {"_count": 1}, "\u2018Dragons": {"_count": 1}, "practice": {"_count": 1}, "Instant": {"_count": 1}, "pepper": {"_count": 1}, "horn": {"_count": 1}, "Pausing": {"_count": 4}, "Diffindol": {"_count": 3}, "Parchment": {"_count": 1}, "brandnew": {"_count": 1}, "fair": {"_count": 1}, "were": {"_count": 7}, "Shadowy": {"_count": 1}, "Secrecy": {"_count": 1}, "Vibrates": {"_count": 1}, "found": {"_count": 1}, "Cheatings": {"_count": 1}, "got": {"_count": 3}, "whispered": {"_count": 5}, "Concentrate": {"_count": 1}, "Accio": {"_count": 12}, "could": {"_count": 5}, "yelled": {"_count": 2}, "nearly": {"_count": 3}, "more": {"_count": 8}, "listening": {"_count": 1}, "up": {"_count": 2}, "Picking": {"_count": 1}, "turned": {"_count": 1}, "Fits": {"_count": 1}, "Sounded": {"_count": 2}, "\u2018Anything": {"_count": 1}, "get": {"_count": 3}, "Canary": {"_count": 1}, "Drafty": {"_count": 1}, "BlastEnded": {"_count": 2}, "where": {"_count": 7}, "interesting": {"_count": 1}, "did": {"_count": 8}, "balderdash": {"_count": 1}, "DDobby": {"_count": 1}, "Practice": {"_count": 2}, "can": {"_count": 3}, "Assuming": {"_count": 3}, "Dance": {"_count": 1}, "Traditionally": {"_count": 1}, "Girls": {"_count": 3}, "Moreover": {"_count": 4}, "\u2018Never": {"_count": 3}, "\u2018Potter": {"_count": 1}, "Evil": {"_count": 2}, "Springing": {"_count": 2}, "Ruining": {"_count": 1}, "Mmm": {"_count": 2}, "Whore": {"_count": 2}, "Everlasting": {"_count": 1}, "Wangoballwime": {"_count": 1}, "Fairy": {"_count": 1}, "Eloise": {"_count": 1}, "Padma": {"_count": 3}, "Twitchy": {"_count": 1}, "straight": {"_count": 2}, "Clear": {"_count": 4}, "\u2018Constant": {"_count": 1}, "Dobbyl": {"_count": 1}, "presents": {"_count": 1}, "Socks": {"_count": 1}, "Lairy": {"_count": 1}, "Animal": {"_count": 2}, "Padmas": {"_count": 1}, "\u2018Tm": {"_count": 11}, "Ve": {"_count": 1}, "Igor": {"_count": 2}, "Zis": {"_count": 1}, "zey": {"_count": 2}, "Roger": {"_count": 3}, "Hermyohnee": {"_count": 1}, "Hermownninny": {"_count": 1}, "Viktors": {"_count": 1}, "Vare": {"_count": 1}, "Flee": {"_count": 1}, "Squeals": {"_count": 1}, "Momen": {"_count": 1}, "might": {"_count": 2}, "Used": {"_count": 3}, "Sorta": {"_count": 1}, "enough": {"_count": 2}, "blimey": {"_count": 2}, "take": {"_count": 2}, "Fourth": {"_count": 3}, "Passwords": {"_count": 1}, "RITA": {"_count": 1}, "Soft": {"_count": 1}, "Hate": {"_count": 1}, "DUMBLEDORES": {"_count": 2}, "Bloodthirsty": {"_count": 1}, "proper": {"_count": 1}, "Missing": {"_count": 3}, "whereas": {"_count": 1}, "Absolute": {"_count": 1}, "Bladvak": {"_count": 1}, "er": {"_count": 13}, "stopped": {"_count": 1}, "Blowed": {"_count": 1}, "couple": {"_count": 1}, "Worrying": {"_count": 1}, "U": {"_count": 1}, "didnt": {"_count": 1}, "Snappy": {"_count": 1}, "Lo": {"_count": 2}, "Living": {"_count": 2}, "Tha": {"_count": 3}, "Died": {"_count": 3}, "trusts": {"_count": 1}, "Gives": {"_count": 2}, "thas": {"_count": 2}, "theres": {"_count": 3}, "Beat": {"_count": 1}, "Reluctant": {"_count": 1}, "Magnificent": {"_count": 2}, "open": {"_count": 2}, "\u2018Come": {"_count": 1}, "Ages": {"_count": 1}, "Underwater": {"_count": 1}, "sometimes": {"_count": 1}, "Tactless": {"_count": 1}, "Olive": {"_count": 1}, "ooooh": {"_count": 1}, "thanks": {"_count": 7}, "something": {"_count": 12}, "Egg": {"_count": 1}, "Hiding": {"_count": 1}, "Dumbledorell": {"_count": 1}, "Clunk": {"_count": 10}, "Pajama": {"_count": 1}, "Potion": {"_count": 1}, "students": {"_count": 3}, "Aurors": {"_count": 1}, "Spots": {"_count": 2}, "Meaning": {"_count": 3}, "Map": {"_count": 2}, "Merlins": {"_count": 7}, "dyou": {"_count": 5}, "Obedient": {"_count": 1}, "Familiar": {"_count": 1}, "Weekend": {"_count": 1}, "Care": {"_count": 1}, "Easier": {"_count": 2}, "don": {"_count": 1}, "give": {"_count": 4}, "Closest": {"_count": 1}, "Bring": {"_count": 5}, "e": {"_count": 1}, "theyve": {"_count": 3}, "\u2018But": {"_count": 2}, "\u2018Too": {"_count": 1}, "here": {"_count": 3}, "Waistdeep": {"_count": 1}, "Small": {"_count": 9}, "Relashio": {"_count": 1}, "faces": {"_count": 1}, "Merpeople": {"_count": 2}, "leave": {"_count": 2}, "Darting": {"_count": 1}, "water": {"_count": 1}, "both": {"_count": 3}, "Gabrielle": {"_count": 3}, "Merchieftainess": {"_count": 1}, "Applause": {"_count": 1}, "PADFOOT": {"_count": 1}, "Pansys": {"_count": 1}, "Deprived": {"_count": 2}, "Scarlet": {"_count": 1}, "reading": {"_count": 1}, "\u2018Harry": {"_count": 3}, "Determined": {"_count": 3}, "Boomslang": {"_count": 1}, "Gillyweed": {"_count": 1}, "Keen": {"_count": 4}, "Tethered": {"_count": 1}, "Chicken": {"_count": 1}, "Fulfilling": {"_count": 1}, "Phrases": {"_count": 1}, "house": {"_count": 1}, "St": {"_count": 2}, "Terror": {"_count": 4}, "panic": {"_count": 1}, "confusion": {"_count": 1}, "Crouchs": {"_count": 6}, "gotten": {"_count": 1}, "Grief": {"_count": 2}, "Wasted": {"_count": 1}, "next": {"_count": 1}, "Rosier": {"_count": 2}, "Avery": {"_count": 3}, "whats": {"_count": 4}, "Blustering": {"_count": 1}, "itd": {"_count": 2}, "Unwilling": {"_count": 1}, "HarRy": {"_count": 1}, "GO": {"_count": 1}, "\u2018You": {"_count": 1}, "Undiluted": {"_count": 1}, "Thesere": {"_count": 1}, "whos": {"_count": 1}, "Count": {"_count": 1}, "Vanishes": {"_count": 1}, "\u2018Yehre": {"_count": 1}, "\u2018Yer": {"_count": 1}, "Chuck": {"_count": 2}, "Wrong": {"_count": 1}, "Bugged": {"_count": 1}, "ooh": {"_count": 1}, "Gets": {"_count": 3}, "Growing": {"_count": 1}, "Vill": {"_count": 1}, "Hermyownninny": {"_count": 1}, "Vot": {"_count": 4}, "Vosnt": {"_count": 1}, "stupid": {"_count": 1}, "thing": {"_count": 1}, "Warn": {"_count": 1}, "escaped": {"_count": 1}, "Bertha": {"_count": 4}, "dead": {"_count": 3}, "stronger": {"_count": 2}, "Sher": {"_count": 1}, "Lead": {"_count": 5}, "somewhere": {"_count": 3}, "Wouldve": {"_count": 2}, "Treachery": {"_count": 1}, "Apologize": {"_count": 2}, "z": {"_count": 2}, "hows": {"_count": 1}, "remind": {"_count": 1}, "Georges": {"_count": 3}, "Carry": {"_count": 5}, "Summoned": {"_count": 1}, "Broke": {"_count": 1}, "constant": {"_count": 1}, "Constant": {"_count": 1}, "Snuffles": {"_count": 3}, "1": {"_count": 5}, "Crucio": {"_count": 3}, "Sherbet": {"_count": 1}, "Fizzing": {"_count": 3}, "Droobles": {"_count": 1}, "Bertie": {"_count": 1}, "Chocolate": {"_count": 3}, "Sugar": {"_count": 1}, "Cockroach": {"_count": 1}, "Lowering": {"_count": 1}, "Chains": {"_count": 1}, "Evan": {"_count": 1}, "Rookwood": {"_count": 4}, "Augustus": {"_count": 2}, "Ludovic": {"_count": 1}, "Despicable": {"_count": 2}, "Mother": {"_count": 3}, "Undoubtedly": {"_count": 6}, "Curiosity": {"_count": 1}, "Continue": {"_count": 1}, "within": {"_count": 1}, "particularly": {"_count": 1}, "remember": {"_count": 3}, "\u2018Ludo": {"_count": 1}, "Tired": {"_count": 2}, "Breakfast": {"_count": 4}, "Alarming": {"_count": 1}, "Parseltongue": {"_count": 1}, "Similarly": {"_count": 1}, "shes": {"_count": 3}, "Oi": {"_count": 6}, "Fleurs": {"_count": 4}, "Surprise": {"_count": 1}, "Beaten": {"_count": 1}, "Confident": {"_count": 1}, "Bagmans": {"_count": 1}, "Point": {"_count": 3}, "Left": {"_count": 5}, "left": {"_count": 1}, "Reductol": {"_count": 1}, "Impedimental": {"_count": 3}, "Someonell": {"_count": 1}, "otherwise": {"_count": 1}, "Cedrics": {"_count": 2}, "Answer": {"_count": 4}, "Remain": {"_count": 1}, "thatd": {"_count": 2}, "\u2018middle": {"_count": 1}, "Spy": {"_count": 1}, "spy": {"_count": 1}, "FLESH": {"_count": 1}, "TOM": {"_count": 1}, "Bone": {"_count": 1}, "Flesh": {"_count": 1}, "Bblood": {"_count": 1}, "forcibly": {"_count": 1}, "resurrect": {"_count": 1}, "Robe": {"_count": 1}, "Whiter": {"_count": 1}, "slowly": {"_count": 1}, "Thirteen": {"_count": 2}, "thirteen": {"_count": 1}, "Trembling": {"_count": 2}, "Cruciol": {"_count": 2}, "Worthless": {"_count": 1}, "Momentarily": {"_count": 1}, "destroying": {"_count": 1}, "pain": {"_count": 1}, "four": {"_count": 2}, "thwarted": {"_count": 1}, "PRIORI": {"_count": 1}, "Bow": {"_count": 2}, "Whitehot": {"_count": 2}, "say": {"_count": 1}, "Killed": {"_count": 3}, "hold": {"_count": 3}, "first": {"_count": 2}, "tall": {"_count": 1}, "NOW": {"_count": 2}, "Gripping": {"_count": 3}, "VERITASERUM": {"_count": 1}, "Shock": {"_count": 1}, "waiting": {"_count": 2}, "hospital": {"_count": 2}, "Along": {"_count": 5}, "drink": {"_count": 1}, "Drink": {"_count": 7}, "prepared": {"_count": 1}, "Decent": {"_count": 1}, "closer": {"_count": 1}, "Understanding": {"_count": 2}, "Polyjuice": {"_count": 3}, "Minutes": {"_count": 2}, "Step": {"_count": 4}, "Staged": {"_count": 1}, "Rewards": {"_count": 1}, "Ensure": {"_count": 1}, "Forced": {"_count": 1}, "iVoooo": {"_count": 1}, "Covered": {"_count": 2}, "Turned": {"_count": 1}, "Numbing": {"_count": 1}, "Priori": {"_count": 1}, "am": {"_count": 2}, "less": {"_count": 1}, "Regrettable": {"_count": 1}, "Unnoticed": {"_count": 3}, "YouKnow": {"_count": 3}, "returned": {"_count": 1}, "certainly": {"_count": 1}, "Headaches": {"_count": 1}, "Also": {"_count": 3}, "Remove": {"_count": 1}, "Envoys": {"_count": 1}, "Fail": {"_count": 1}, "Poppy": {"_count": 1}, "Known": {"_count": 2}, "Migh": {"_count": 3}, "Secret": {"_count": 1}, "Olympe": {"_count": 2}, "Further": {"_count": 1}, "was": {"_count": 8}, "Theirs": {"_count": 1}, "Differences": {"_count": 1}, "Arry": {"_count": 4}, "Alvays": {"_count": 1}, "into": {"_count": 1}, "Blinded": {"_count": 2}, "Exploding": {"_count": 2}, "Ignored": {"_count": 1}, "Turns": {"_count": 5}, "Borrowed": {"_count": 2}, "although": {"_count": 5}, "Cars": {"_count": 1}, "Dudders": {"_count": 1}, "Bungy": {"_count": 1}, "Listening": {"_count": 2}, "arent": {"_count": 3}, "Often": {"_count": 2}, "old": {"_count": 3}, "Neighborhood": {"_count": 1}, "Seeking": {"_count": 2}, "Magnolia": {"_count": 1}, "squealed": {"_count": 1}, "Round": {"_count": 1}, "Whereas": {"_count": 4}, "\u2018Dont": {"_count": 2}, "Wwhere": {"_count": 1}, "Ccut": {"_count": 1}, "Stumbling": {"_count": 1}, "THIS": {"_count": 1}, "Wheeling": {"_count": 2}, "Trees": {"_count": 3}, "Diddy": {"_count": 1}, "DIDDY": {"_count": 1}, "Phone": {"_count": 1}, "BOY": {"_count": 1}, "Narrowly": {"_count": 1}, "OWLS": {"_count": 2}, "DO": {"_count": 5}, "AHA": {"_count": 2}, "Pointed": {"_count": 1}, "SHUT": {"_count": 1}, "Ttripped": {"_count": 1}, "felt": {"_count": 2}, "Following": {"_count": 2}, "SIT": {"_count": 1}, "Kiss": {"_count": 1}, "Fought": {"_count": 1}, "FOR": {"_count": 2}, "Arthurs": {"_count": 3}, "Oho": {"_count": 8}, "Murdered": {"_count": 2}, "REMEMBER": {"_count": 1}, "Understand": {"_count": 2}, "Burglars": {"_count": 1}, "PProfessor": {"_count": 1}, "Wotcher": {"_count": 4}, "Lilys": {"_count": 2}, "Elementary": {"_count": 1}, "Ffine": {"_count": 1}, "Nymphadora": {"_count": 2}, "Emmeline": {"_count": 1}, "Brooms": {"_count": 1}, "Confined": {"_count": 1}, "Tonks": {"_count": 18}, "Kingsley": {"_count": 15}, "Metamorphmagi": {"_count": 1}, "cried": {"_count": 2}, "wand": {"_count": 1}, "Locomotor": {"_count": 1}, "Disillusionment": {"_count": 1}, "Tonksll": {"_count": 1}, "Lupinll": {"_count": 1}, "Bearing": {"_count": 1}, "Town": {"_count": 1}, "Bear": {"_count": 3}, "NUMBER": {"_count": 1}, "Pressing": {"_count": 1}, "Pecked": {"_count": 1}, "SO": {"_count": 2}, "BUT": {"_count": 3}, "CANTVE": {"_count": 1}, "Headquarters": {"_count": 1}, "Extendable": {"_count": 3}, "Giving": {"_count": 3}, "Git": {"_count": 2}, "Nutter": {"_count": 1}, "Dammit": {"_count": 1}, "Tonksl": {"_count": 1}, "K": {"_count": 10}, "Yooooul": {"_count": 1}, "Journey": {"_count": 2}, "Somen": {"_count": 1}, "Owe": {"_count": 1}, "asking": {"_count": 1}, "Finest": {"_count": 2}, "Opposite": {"_count": 1}, "Screwing": {"_count": 1}, "hair": {"_count": 1}, "Page": {"_count": 4}, "Beg": {"_count": 2}, "\u2018Youre": {"_count": 1}, "others": {"_count": 1}, "Working": {"_count": 1}, "demort": {"_count": 1}, "Cover": {"_count": 1}, "Kreachers": {"_count": 9}, "Deftly": {"_count": 1}, "Moment": {"_count": 1}, "Testers": {"_count": 1}, "WE": {"_count": 2}, "COMPLETELY": {"_count": 1}, "Acting": {"_count": 1}, "Smells": {"_count": 1}, "Kreacher": {"_count": 56}, "comes": {"_count": 1}, "cousin": {"_count": 1}, "Andromedas": {"_count": 1}, "Lestrange": {"_count": 3}, "Bellatrix": {"_count": 24}, "Rodolphus": {"_count": 1}, "Despite": {"_count": 6}, "Mmmorning": {"_count": 1}, "Porridge": {"_count": 1}, "Amelia": {"_count": 2}, "Wonderfully": {"_count": 1}, "six": {"_count": 1}, "Visitor": {"_count": 2}, "Tallest": {"_count": 1}, "Grouped": {"_count": 1}, "Glittering": {"_count": 3}, "Jostled": {"_count": 2}, "droppings": {"_count": 1}, "Memos": {"_count": 1}, "Newspaper": {"_count": 1}, "Department": {"_count": 2}, "Courtroom": {"_count": 1}, "8": {"_count": 1}, "Empty": {"_count": 2}, "Disciplinary": {"_count": 1}, "Interrogators": {"_count": 1}, "Court": {"_count": 1}, "Perfectly": {"_count": 1}, "Arabella": {"_count": 1}, "given": {"_count": 1}, "describe": {"_count": 1}, "dreadful": {"_count": 1}, "Clause": {"_count": 1}, "Serious": {"_count": 1}, "Laws": {"_count": 1}, "cleared": {"_count": 1}, "Mugglebaiting": {"_count": 1}, "Patronus": {"_count": 1}, "Snakelike": {"_count": 1}, "delay": {"_count": 1}, "Eric": {"_count": 1}, "Scar": {"_count": 1}, "Suit": {"_count": 1}, "Booklists": {"_count": 1}, "Freds": {"_count": 3}, "Winning": {"_count": 1}, "ickle": {"_count": 1}, "wow": {"_count": 3}, "Match": {"_count": 1}, "Desk": {"_count": 1}, "naught": {"_count": 1}, "getting": {"_count": 1}, "Venomous": {"_count": 1}, "Wiv": {"_count": 1}, "Original": {"_count": 1}, "Benjy": {"_count": 2}, "shift": {"_count": 1}, "brother": {"_count": 1}, "Sturgis": {"_count": 6}, "Caradoc": {"_count": 1}, "Elphias": {"_count": 3}, "Gideon": {"_count": 1}, "budge": {"_count": 1}, "listen": {"_count": 2}, "Sprawled": {"_count": 1}, "Rrriddikulus": {"_count": 1}, "Rriddikulus": {"_count": 1}, "riddikulus": {"_count": 1}, "Dddont": {"_count": 1}, "Cut": {"_count": 1}, "COULD": {"_count": 1}, "Guard": {"_count": 1}, "WILL": {"_count": 1}, "Onto": {"_count": 1}, "Luna": {"_count": 37}, "Lunas": {"_count": 4}, "Wit": {"_count": 1}, "Mimbulus": {"_count": 4}, "Liquid": {"_count": 1}, "Ssorry": {"_count": 1}, "hello": {"_count": 1}, "Um": {"_count": 6}, "hi": {"_count": 2}, "bye": {"_count": 1}, "Scour": {"_count": 1}, "Boy": {"_count": 1}, "baboons": {"_count": 1}, "backside": {"_count": 2}, "Utterly": {"_count": 1}, "Baboons": {"_count": 1}, "CORRUPTION": {"_count": 1}, "Rifling": {"_count": 1}, "Manners": {"_count": 1}, "Sniggering": {"_count": 1}, "firs": {"_count": 1}, "Wings": {"_count": 1}, "cant": {"_count": 2}, "XX": {"_count": 1}, "Rattling": {"_count": 1}, "Unwillingly": {"_count": 1}, "hurt": {"_count": 2}, "Branched": {"_count": 1}, "Fat": {"_count": 2}, "Peaceful": {"_count": 1}, "Rising": {"_count": 1}, "Euan": {"_count": 1}, "GALLONS": {"_count": 1}, "Tryouts": {"_count": 1}, "load": {"_count": 1}, "Fifth": {"_count": 3}, "year": {"_count": 5}, "Patricia": {"_count": 1}, "Kenneth": {"_count": 1}, "\u2018Ask": {"_count": 1}, "Bound": {"_count": 2}, "further": {"_count": 1}, "Moronic": {"_count": 1}, "displeasure": {"_count": 1}, "Start": {"_count": 1}, "\u2018Add": {"_count": 1}, "Evanesco": {"_count": 1}, "Serve": {"_count": 1}, "Bickering": {"_count": 1}, "Dream": {"_count": 2}, "Copy": {"_count": 1}, "2": {"_count": 2}, "Learning": {"_count": 1}, "Placing": {"_count": 1}, "Using": {"_count": 2}, "Misbehavior": {"_count": 1}, "progress": {"_count": 1}, "DETENTION": {"_count": 1}, "\u2018The": {"_count": 8}, "Feel": {"_count": 2}, "Onlookers": {"_count": 1}, "today": {"_count": 1}, "level": {"_count": 4}, "Oooooh": {"_count": 1}, "Smirking": {"_count": 2}, "snarled": {"_count": 1}, "Ernies": {"_count": 1}, "Less": {"_count": 5}, "instead": {"_count": 1}, "Laugh": {"_count": 1}, "Vicky": {"_count": 1}, "Twisted": {"_count": 1}, "PERCY": {"_count": 1}, "Considering": {"_count": 1}, "Sealing": {"_count": 1}, "Funnily": {"_count": 1}, "Subtlety": {"_count": 1}, "Putting": {"_count": 1}, "blah": {"_count": 1}, "\u2018Ministry": {"_count": 1}, "killed": {"_count": 1}, "broke": {"_count": 2}, "Podmore": {"_count": 2}, "Pay": {"_count": 1}, "sorry": {"_count": 2}, "shall": {"_count": 5}, "Jupiters": {"_count": 1}, "Trained": {"_count": 1}, "Unconvinced": {"_count": 1}, "\u2018Thats": {"_count": 1}, "\u2018Dumbledore": {"_count": 1}, "\u2018This": {"_count": 3}, "\u2018Many": {"_count": 1}, "Among": {"_count": 2}, "Wizengamot": {"_count": 1}, "\u2018Hogwarts": {"_count": 1}, "Umbridge": {"_count": 35}, "standard": {"_count": 2}, "Boor": {"_count": 1}, "grades": {"_count": 2}, "Charms": {"_count": 4}, "Asked": {"_count": 1}, "Whove": {"_count": 1}, "Trelawney": {"_count": 2}, "Angelinall": {"_count": 1}, "Divide": {"_count": 1}, "drowning": {"_count": 1}, "would": {"_count": 2}, "wait": {"_count": 1}, "Fraid": {"_count": 1}, "Overall": {"_count": 2}, "Jolly": {"_count": 2}, "ie": {"_count": 1}, "Awful": {"_count": 2}, "usually": {"_count": 1}, "Uh": {"_count": 1}, "facing": {"_count": 2}, "night": {"_count": 1}, "Reparo": {"_count": 4}, "IN": {"_count": 2}, "dodgy": {"_count": 1}, "Cough": {"_count": 2}, "Zacharias": {"_count": 6}, "EDUCATIONAL": {"_count": 1}, "Permission": {"_count": 1}, "Signed": {"_count": 5}, "Whatll": {"_count": 2}, "Injured": {"_count": 1}, "Thestrals": {"_count": 3}, "\u2018Same": {"_count": 1}, "apparently": {"_count": 1}, "Release": {"_count": 3}, "Salamander": {"_count": 1}, "Hark": {"_count": 1}, "Insinuations": {"_count": 1}, "Unfounded": {"_count": 1}, "may": {"_count": 1}, "Keeping": {"_count": 5}, "Wedve": {"_count": 1}, "Caved": {"_count": 1}, "Umbridges": {"_count": 5}, "Silenciol": {"_count": 5}, "Ravens": {"_count": 1}, "Silencio": {"_count": 1}, "wondering": {"_count": 1}, "sort": {"_count": 2}, "reckless": {"_count": 1}, "living": {"_count": 2}, "egg": {"_count": 1}, "feel": {"_count": 1}, "angry": {"_count": 1}, "plans": {"_count": 1}, "moste": {"_count": 1}, "therefore": {"_count": 1}, "confusing": {"_count": 1}, "enter": {"_count": 1}, "Whozair": {"_count": 1}, "Dobbys": {"_count": 2}, "Especially": {"_count": 4}, "Mostly": {"_count": 1}, "Somewhat": {"_count": 1}, "SelfDefensive": {"_count": 1}, "Whoa": {"_count": 3}, "Basically": {"_count": 1}, "Smith": {"_count": 3}, "Expelliarmusl": {"_count": 4}, "Expelliarmiousl": {"_count": 1}, "meetings": {"_count": 9}, "Warringtons": {"_count": 1}, "October": {"_count": 1}, "Montague": {"_count": 4}, "Bletchley": {"_count": 1}, "Pucey": {"_count": 1}, "Saved": {"_count": 2}, "Spend": {"_count": 1}, "Provoked": {"_count": 1}, "Dolores": {"_count": 4}, "Hem": {"_count": 2}, "\u2018Educational": {"_count": 1}, "hem": {"_count": 1}, "etc": {"_count": 1}, "Ban": {"_count": 1}, "Banned": {"_count": 2}, "Sove": {"_count": 1}, "Join": {"_count": 1}, "HAGRIDS": {"_count": 1}, "Greenish": {"_count": 2}, "Giants": {"_count": 2}, "obvious": {"_count": 1}, "Nosy": {"_count": 1}, "Interferin": {"_count": 1}, "Pretty": {"_count": 5}, "Mountains": {"_count": 2}, "Whadda": {"_count": 1}, "Ran": {"_count": 2}, "Partly": {"_count": 2}, "T3out": {"_count": 1}, "Bout": {"_count": 2}, "Caused": {"_count": 1}, "Sittin": {"_count": 1}, "Skin": {"_count": 1}, "Food": {"_count": 2}, "Didn": {"_count": 1}, "Karkus": {"_count": 2}, "Listened": {"_count": 1}, "Promised": {"_count": 1}, "Karkuss": {"_count": 1}, "Humanlookin": {"_count": 1}, "Wouldnta": {"_count": 1}, "Spent": {"_count": 1}, "Couple": {"_count": 5}, "Likes": {"_count": 1}, "Fiery": {"_count": 1}, "spect": {"_count": 1}, "Cave": {"_count": 2}, "Wasn": {"_count": 2}, "Golgomaths": {"_count": 2}, "mother": {"_count": 1}, "forget": {"_count": 2}, "Huddled": {"_count": 1}, "Lips": {"_count": 1}, "Whas": {"_count": 3}, "over": {"_count": 1}, "Friend": {"_count": 1}, "sensitive": {"_count": 1}, "inspectin": {"_count": 1}, "Trelawneys": {"_count": 1}, "special": {"_count": 1}, "Lisen": {"_count": 1}, "Gits": {"_count": 2}, "Gather": {"_count": 1}, "resort": {"_count": 1}, "crude": {"_count": 1}, "sign": {"_count": 1}, "language": {"_count": 1}, "poor": {"_count": 1}, "short": {"_count": 1}, "term": {"_count": 1}, "signs": {"_count": 1}, "pleasure": {"_count": 1}, "idea": {"_count": 1}, "violence": {"_count": 1}, "\u2018Mazin": {"_count": 1}, "Whom": {"_count": 1}, "\u2018Students": {"_count": 1}, "intimidated": {"_count": 1}, "admit": {"_count": 1}, "frightened": {"_count": 1}, "Unheard": {"_count": 1}, "December": {"_count": 1}, "meeting": {"_count": 4}, "Mistletoe": {"_count": 2}, "Replaced": {"_count": 1}, "Andrew": {"_count": 1}, "Space": {"_count": 1}, "Wha": {"_count": 7}, "learning": {"_count": 1}, "wonder": {"_count": 1}, "Disregarding": {"_count": 1}, "HA": {"_count": 1}, "Wet": {"_count": 1}, "shed": {"_count": 1}, "room": {"_count": 2}, "sitting": {"_count": 1}, "ST": {"_count": 1}, "MUNGOS": {"_count": 2}, "~": {"_count": 1}, "Everard": {"_count": 4}, "Phineas": {"_count": 12}, "IVe": {"_count": 1}, "Visit": {"_count": 1}, "Insubordination": {"_count": 1}, "Dereliction": {"_count": 1}, "Bacon": {"_count": 1}, "Nowhere": {"_count": 1}, "Theory": {"_count": 1}, "Witches": {"_count": 1}, "Doctors": {"_count": 1}, "CREATUREINDUCED": {"_count": 1}, "MAGICAL": {"_count": 1}, "g": {"_count": 1}, "dragon": {"_count": 1}, "SPELL": {"_count": 1}, "VISITORS": {"_count": 1}, "Ward": {"_count": 1}, "CHRISTMAS": {"_count": 1}, "Tonkss": {"_count": 2}, "Family": {"_count": 4}, "Spell": {"_count": 1}, "complementary": {"_count": 1}, "Stitches": {"_count": 1}, "Taught": {"_count": 1}, "Gladys": {"_count": 1}, "Helped": {"_count": 2}, "Squash": {"_count": 1}, "involved": {"_count": 1}, "Merely": {"_count": 3}, "Study": {"_count": 1}, "Occlumency": {"_count": 1}, "Extra": {"_count": 1}, "unlike": {"_count": 1}, "gave": {"_count": 1}, "Cured": {"_count": 1}, "Healer": {"_count": 2}, "Chairs": {"_count": 1}, "Hedgerows": {"_count": 1}, "Flecks": {"_count": 1}, "IIll": {"_count": 1}, "sir": {"_count": 4}, "Thoughts": {"_count": 1}, "Eye": {"_count": 1}, "Brace": {"_count": 1}, "LegilimensV": {"_count": 1}, "Flashes": {"_count": 1}, "Repel": {"_count": 1}, "Focus": {"_count": 1}, "Fools": {"_count": 1}, "Realized": {"_count": 1}, "fine": {"_count": 2}, "Headless": {"_count": 1}, "Maniacal": {"_count": 1}, "Jubilant": {"_count": 2}, "dunno": {"_count": 3}, "really": {"_count": 3}, "Antonin": {"_count": 1}, "MASS": {"_count": 1}, "horrible": {"_count": 1}, "TRAGIC": {"_count": 1}, "Healers": {"_count": 1}, "Bode": {"_count": 6}, "Bes": {"_count": 2}, "Nowadays": {"_count": 1}, "Cute": {"_count": 1}, "Women": {"_count": 2}, "Unemployment": {"_count": 1}, "Sucking": {"_count": 1}, "Twentyfive": {"_count": 1}, "\u2018Important": {"_count": 1}, "Daddy": {"_count": 3}, "SEEN": {"_count": 1}, "tough": {"_count": 1}, "talking": {"_count": 1}, "Actually": {"_count": 1}, "\u2018Having": {"_count": 1}, "red": {"_count": 1}, "NOOOOOOOOO": {"_count": 1}, "Arrested": {"_count": 1}, "Remind": {"_count": 2}, "Correct": {"_count": 5}, "Protegol": {"_count": 3}, "Others": {"_count": 1}, "Incapable": {"_count": 1}, "Blow": {"_count": 1}, "sighed": {"_count": 1}, "Impossible": {"_count": 1}, "Classroom": {"_count": 1}, "Herd": {"_count": 1}, "Centaurs": {"_count": 2}, "Parvatis": {"_count": 1}, "Trivial": {"_count": 1}, "lessons": {"_count": 2}, "received": {"_count": 1}, "closest": {"_count": 1}, "squeaked": {"_count": 1}, "Trip": {"_count": 1}, "Mariettas": {"_count": 1}, "Evidence": {"_count": 1}, "Marietta": {"_count": 2}, "DumbledoresArmy": {"_count": 1}, "Statement": {"_count": 1}, "Duplicate": {"_count": 1}, "Snag": {"_count": 1}, "Dawlish": {"_count": 2}, "Dust": {"_count": 2}, "Grimmauld": {"_count": 2}, "Lording": {"_count": 1}, "Afraid": {"_count": 1}, "Macmillan": {"_count": 1}, "Weasel": {"_count": 1}, "Noticed": {"_count": 1}, "Filchs": {"_count": 1}, "Guilty": {"_count": 1}, "Yerse": {"_count": 1}, "tea": {"_count": 1}, "Rockets": {"_count": 1}, "Sparklers": {"_count": 1}, "Firecrackers": {"_count": 1}, "Impressive": {"_count": 1}, "Filibuster": {"_count": 1}, "Beaming": {"_count": 2}, "Weasleys": {"_count": 1}, "rebellious": {"_count": 1}, "Seething": {"_count": 1}, "Snapetheteenager": {"_count": 1}, "Jamess": {"_count": 3}, "Roundshouldered": {"_count": 1}, "Loved": {"_count": 1}, "\u2018Give": {"_count": 1}, "paper": {"_count": 2}, "Snivellus": {"_count": 1}, "Scourgifyl": {"_count": 1}, "Disentangling": {"_count": 1}, "Evans": {"_count": 1}, "Reading": {"_count": 1}, "Wincing": {"_count": 1}, "Amusing": {"_count": 2}, "CAREER": {"_count": 1}, "Times": {"_count": 6}, "\u2018Much": {"_count": 1}, "Directly": {"_count": 2}, "Undeterred": {"_count": 1}, "Whoops": {"_count": 1}, "classes": {"_count": 1}, "Poisons": {"_count": 1}, "Dashing": {"_count": 1}, "Sticking": {"_count": 1}, "Approval": {"_count": 2}, "Prominent": {"_count": 1}, "GRAWP": {"_count": 1}, "Dungbombs": {"_count": 1}, "Warrington": {"_count": 1}, "Shrieking": {"_count": 1}, "Cackling": {"_count": 1}, "Specially": {"_count": 1}, "Bradley": {"_count": 1}, "Davies": {"_count": 1}, "Chang": {"_count": 1}, "Till": {"_count": 1}, "while": {"_count": 2}, "Cleverest": {"_count": 1}, "fill": {"_count": 1}, "withou": {"_count": 1}, "cmon": {"_count": 2}, "Sleepin": {"_count": 1}, "teachin": {"_count": 1}, "Grawp": {"_count": 5}, "Company": {"_count": 1}, "BAD": {"_count": 1}, "VERY": {"_count": 1}, "Servitude": {"_count": 1}, "Henceforth": {"_count": 1}, "Grawps": {"_count": 1}, "Eights": {"_count": 1}, "Grans": {"_count": 1}, "Dingles": {"_count": 1}, "AutoAnswer": {"_count": 1}, "results": {"_count": 5}, "Examined": {"_count": 1}, "Figures": {"_count": 2}, "Cries": {"_count": 1}, "Galloping": {"_count": 1}, "RUDDY": {"_count": 1}, "Describe": {"_count": 1}, "Bonaccord": {"_count": 1}, "patches": {"_count": 1}, "Lift": {"_count": 1}, "Pressure": {"_count": 1}, "last": {"_count": 1}, "during": {"_count": 1}, "Hers": {"_count": 1}, "Liar": {"_count": 1}, "LiaA": {"_count": 1}, "Padfoot": {"_count": 1}, "Millicent": {"_count": 1}, "Weapon": {"_count": 1}, "them": {"_count": 1}, "FIGHT": {"_count": 1}, "Senior": {"_count": 1}, "Beasts": {"_count": 1}, "Nooooo": {"_count": 1}, "Noooooo": {"_count": 1}, "unhand": {"_count": 1}, "nooooo": {"_count": 1}, "Lifting": {"_count": 1}, "Hagger": {"_count": 1}, "Haggeii": {"_count": 1}, "WHERE": {"_count": 1}, "Wandless": {"_count": 2}, "Pebblesized": {"_count": 1}, "Smart": {"_count": 2}, "together": {"_count": 1}, "Twilight": {"_count": 1}, "Presumably": {"_count": 1}, "Whoevers": {"_count": 1}, "Visitors": {"_count": 1}, "glitters": {"_count": 1}, "Aquavirius": {"_count": 1}, "Brains": {"_count": 1}, "Glimmering": {"_count": 1}, "FlagrateV": {"_count": 1}, "Unsupported": {"_count": 1}, "Nobodys": {"_count": 2}, "locked": {"_count": 1}, "Drifting": {"_count": 1}, "Beneath": {"_count": 8}, "eightyfive": {"_count": 1}, "Ninetyseven": {"_count": 1}, "Anywhere": {"_count": 1}, "B": {"_count": 12}, "D": {"_count": 2}, "Expecting": {"_count": 2}, "35": {"_count": 1}, "voices": {"_count": 1}, "Alohomora": {"_count": 2}, "GINNY": {"_count": 1}, "Veering": {"_count": 1}, "Collo": {"_count": 1}, "WEVE": {"_count": 1}, "HERMIONE": {"_count": 3}, "Dolohov": {"_count": 2}, "speak": {"_count": 1}, "Whaddever": {"_count": 1}, "Whaddid": {"_count": 1}, "Dats": {"_count": 1}, "Raise": {"_count": 1}, "ha": {"_count": 1}, "Colloportus": {"_count": 1}, "Colloportusl": {"_count": 1}, "Honest": {"_count": 1}, "STUBEFYl": {"_count": 1}, "STUBEFY": {"_count": 1}, "Inwardly": {"_count": 1}, "STUBE": {"_count": 1}, "DOND": {"_count": 1}, "Tarantallegrcd": {"_count": 1}, "SIRIUS": {"_count": 2}, "Ib": {"_count": 2}, "Deyre": {"_count": 1}, "Slipping": {"_count": 3}, "YOUVE": {"_count": 1}, "Tall": {"_count": 2}, "Months": {"_count": 1}, "AVADA": {"_count": 1}, "Above": {"_count": 2}, "MASTER": {"_count": 1}, "Hehere": {"_count": 1}, "Holds": {"_count": 1}, "IVE": {"_count": 1}, "Youth": {"_count": 1}, "Indifference": {"_count": 1}, "Thus": {"_count": 3}, "prouder": {"_count": 1}, "Ought": {"_count": 1}, "Sibylls": {"_count": 1}, "Consequently": {"_count": 1}, "\u2018neither": {"_count": 1}, "Details": {"_count": 1}, "Ubblys": {"_count": 1}, "perceived": {"_count": 1}, "forced": {"_count": 1}, "\u2018YouKnow": {"_count": 1}, "Sulking": {"_count": 1}, "Evryone": {"_count": 1}, "Disappointment": {"_count": 1}, "loss": {"_count": 1}, "Wanting": {"_count": 1}, "Michael": {"_count": 2}, "Business": {"_count": 1}, "T3ye": {"_count": 1}, "Stretching": {"_count": 1}, "Sincerely": {"_count": 2}, "Furthermore": {"_count": 1}, "hesitated": {"_count": 1}, "Occasionally": {"_count": 4}, "Fve": {"_count": 1}, "Middle": {"_count": 1}, "HeWhoMust": {"_count": 1}, "Requesting": {"_count": 1}, "Rufus": {"_count": 5}, "Scrimgeour": {"_count": 26}, "SPINNERS": {"_count": 1}, "Cissy": {"_count": 4}, "Side": {"_count": 3}, "mistaken": {"_count": 2}, "Bella": {"_count": 2}, "Narcisscd": {"_count": 1}, "Rubbing": {"_count": 1}, "Narcissa": {"_count": 12}, "tempt": {"_count": 1}, "Bellatrixs": {"_count": 5}, "lately": {"_count": 1}, "Owl": {"_count": 1}, "Scrimgeours": {"_count": 1}, "Newly": {"_count": 1}, "Observing": {"_count": 1}, "Particular": {"_count": 1}, "Review": {"_count": 1}, "4": {"_count": 1}, "Agree": {"_count": 1}, "Unconfirmed": {"_count": 1}, "Beside": {"_count": 4}, "Hastily": {"_count": 4}, "Downstairs": {"_count": 3}, "Halfmoon": {"_count": 1}, "Doubtful": {"_count": 1}, "HORACE": {"_count": 1}, "Courtesy": {"_count": 1}, "Inferi": {"_count": 1}, "Cushions": {"_count": 1}, "Ohol": {"_count": 1}, "Slughorn": {"_count": 32}, "Hmpf": {"_count": 2}, "Wheezy": {"_count": 1}, "Rheumatism": {"_count": 1}, "Fatigue": {"_count": 1}, "Reactions": {"_count": 1}, "Slughorns": {"_count": 3}, "Idiotic": {"_count": 1}, "Vivacious": {"_count": 1}, "Charming": {"_count": 4}, "Upset": {"_count": 1}, "Wonderful": {"_count": 3}, "Horace": {"_count": 2}, "Braced": {"_count": 1}, "Permit": {"_count": 1}, "interrupted": {"_count": 1}, "Spoken": {"_count": 1}, "Private": {"_count": 1}, "which": {"_count": 4}, "AN": {"_count": 1}, "Declare": {"_count": 1}, "Bread": {"_count": 1}, "Mollywobbles": {"_count": 1}, "Gnight": {"_count": 1}, "Shielding": {"_count": 1}, "Wuzzgoinon": {"_count": 1}, "Starting": {"_count": 1}, "Eet": {"_count": 1}, "private": {"_count": 1}, "powerful": {"_count": 1}, "antijinxes": {"_count": 1}, "ORDINARY": {"_count": 1}, "Shops": {"_count": 1}, "Fortescue": {"_count": 1}, "Diagon": {"_count": 2}, "Protect": {"_count": 1}, "ninetyfour": {"_count": 1}, "Casual": {"_count": 1}, "\u2018One": {"_count": 1}, "Handy": {"_count": 2}, "Pygmy": {"_count": 1}, "Miniature": {"_count": 1}, "Given": {"_count": 3}, "Borgin": {"_count": 2}, "Humming": {"_count": 1}, "kept": {"_count": 1}, "Worth": {"_count": 1}, "Annoyed": {"_count": 1}, "Au": {"_count": 1}, "be": {"_count": 1}, "stay": {"_count": 1}, "Quibbler": {"_count": 1}, "Cherry": {"_count": 1}, "\u2018That": {"_count": 2}, "Perplexed": {"_count": 3}, "F": {"_count": 1}, "Slug": {"_count": 1}, "Blaise": {"_count": 1}, "Pheasant": {"_count": 1}, "Outstanding": {"_count": 1}, "Anapneo": {"_count": 1}, "Zabini": {"_count": 2}, "Belby": {"_count": 1}, "McLaggen": {"_count": 6}, "Crouched": {"_count": 1}, "Sixteen": {"_count": 1}, "SNAPE": {"_count": 1}, "Episkey": {"_count": 1}, "Antiintruder": {"_count": 1}, "Securitys": {"_count": 1}, "everything": {"_count": 1}, "Whereve": {"_count": 1}, "Hat": {"_count": 1}, "advising": {"_count": 1}, "Bumped": {"_count": 1}, "Whispers": {"_count": 1}, "Seemingly": {"_count": 1}, "Pip": {"_count": 1}, "Los": {"_count": 1}, "Whole": {"_count": 1}, "Fanged": {"_count": 1}, "Hmph": {"_count": 1}, "class": {"_count": 2}, "work": {"_count": 1}, "Typically": {"_count": 1}, "Pathetic": {"_count": 3}, "Whenre": {"_count": 1}, "grade": {"_count": 1}, "lags": {"_count": 1}, "Scales": {"_count": 1}, "Featured": {"_count": 1}, "Amortentia": {"_count": 1}, "Desperately": {"_count": 1}, "highly": {"_count": 1}, "sporting": {"_count": 1}, "Bending": {"_count": 2}, "seven": {"_count": 2}, "Puked": {"_count": 1}, "Specialis": {"_count": 1}, "Knave": {"_count": 1}, "Acid": {"_count": 1}, "survive": {"_count": 1}, "Ogden": {"_count": 6}, "Morfin": {"_count": 15}, "Defend": {"_count": 1}, "Busybodies": {"_count": 1}, "Intruders": {"_count": 1}, "Mdaughter": {"_count": 1}, "Merope": {"_count": 7}, "Pick": {"_count": 1}, "Gaunt": {"_count": 4}, "\u2018Morfin": {"_count": 1}, "Scum": {"_count": 1}, "Slytherinsl": {"_count": 1}, "Salazar": {"_count": 1}, "\u2018Darling": {"_count": 2}, "roared": {"_count": 2}, "Marvolo": {"_count": 5}, "Lack": {"_count": 1}, "Incredibly": {"_count": 1}, "Nonverbal": {"_count": 1}, "\u2018Stanley": {"_count": 1}, "Cormac": {"_count": 3}, "Romilda": {"_count": 3}, "Pleased": {"_count": 3}, "Mumbling": {"_count": 1}, "Missed": {"_count": 1}, "gulped": {"_count": 1}, "Aragogs": {"_count": 2}, "bit": {"_count": 1}, "SILVER": {"_count": 1}, "Nvbl": {"_count": 1}, "Dangling": {"_count": 2}, "Unlucky": {"_count": 1}, "Gimme": {"_count": 1}, "Gasping": {"_count": 1}, "Lemme": {"_count": 1}, "Away": {"_count": 1}, "Dilligrout": {"_count": 2}, "Caractacus": {"_count": 1}, "MRS": {"_count": 1}, "Pouring": {"_count": 1}, "Smacking": {"_count": 1}, "odd": {"_count": 1}, "Billy": {"_count": 1}, "\u2018Professor": {"_count": 1}, "FELIX": {"_count": 1}, "Gwenog": {"_count": 1}, "wed": {"_count": 1}, "Wrestling": {"_count": 1}, "supposed": {"_count": 1}, "natural": {"_count": 1}, "ENOUGH": {"_count": 1}, "Peakes": {"_count": 1}, "Demelza": {"_count": 1}, "Cheer": {"_count": 2}, "Coffee": {"_count": 1}, "Conditions": {"_count": 1}, "Thinks": {"_count": 1}, "Avoiding": {"_count": 1}, "Renewed": {"_count": 1}, "does": {"_count": 1}, "Oppugno": {"_count": 1}, "Gerremoffme": {"_count": 1}, "Despoiled": {"_count": 1}, "Desecrated": {"_count": 1}, "Baubles": {"_count": 2}, "Sooner": {"_count": 1}, "Anyonel": {"_count": 1}, "Worple": {"_count": 1}, "Instinctive": {"_count": 1}, "Emerging": {"_count": 1}, "cannot": {"_count": 1}, "almost": {"_count": 2}, "Stupefied": {"_count": 1}, "marvelous": {"_count": 1}, "Eez": {"_count": 1}, "Werewolves": {"_count": 1}, "readymade": {"_count": 1}, "Fenrir": {"_count": 2}, "Greyback": {"_count": 10}, "Bite": {"_count": 1}, "Jinxes": {"_count": 1}, "Classy": {"_count": 1}, "Snogging": {"_count": 1}, "Parsnips": {"_count": 1}, "Gravy": {"_count": 1}, "\u2018Stand": {"_count": 1}, "Locking": {"_count": 1}, "Abstinence": {"_count": 1}, "Overindulged": {"_count": 1}, "APPARITION": {"_count": 1}, "Cost": {"_count": 1}, "Dum": {"_count": 1}, "SideAlong": {"_count": 1}, "Rigidly": {"_count": 1}, "Few": {"_count": 1}, "Robbed": {"_count": 1}, "Marvolos": {"_count": 2}, "\u2018Hell": {"_count": 2}, "Tampered": {"_count": 1}, "BIRTHDAY": {"_count": 1}, "Horcruxes": {"_count": 4}, "UP": {"_count": 1}, "Infuriated": {"_count": 1}, "Purplishgray": {"_count": 1}, "Oldfashioned": {"_count": 1}, "Destination": {"_count": 2}, "THREE": {"_count": 2}, "Adjust": {"_count": 1}, "Splinching": {"_count": 1}, "thus": {"_count": 1}, "Twycross": {"_count": 2}, "Fastening": {"_count": 1}, "Determination": {"_count": 1}, "Deliberation": {"_count": 1}, "February": {"_count": 1}, "Frustration": {"_count": 2}, "awkward": {"_count": 1}, "Pickmeup": {"_count": 1}, "hmm": {"_count": 1}, "meant": {"_count": 1}, "Foam": {"_count": 1}, "ELF": {"_count": 1}, "Anythings": {"_count": 1}, "Ermynee": {"_count": 1}, "Chamber": {"_count": 3}, "Shhhh": {"_count": 1}, "Coote": {"_count": 1}, "Swearing": {"_count": 1}, "Seventyforty": {"_count": 1}, "distant": {"_count": 1}, "Final": {"_count": 1}, "Losers": {"_count": 1}, "kicky": {"_count": 1}, "Tweaky": {"_count": 1}, "LORD": {"_count": 1}, "Deeply": {"_count": 1}, "Polite": {"_count": 1}, "Hokey": {"_count": 2}, "Lean": {"_count": 2}, "Burke": {"_count": 1}, "Hepzibah": {"_count": 1}, "Risking": {"_count": 1}, "forgive": {"_count": 4}, "woefully": {"_count": 1}, "Nicked": {"_count": 1}, "Frustrated": {"_count": 1}, "Late": {"_count": 2}, "\u2018Ghosts": {"_count": 1}, "Goading": {"_count": 1}, "people": {"_count": 1}, "Goes": {"_count": 1}, "AFTER": {"_count": 1}, "Felix": {"_count": 1}, "determination": {"_count": 1}, "deliberation": {"_count": 1}, "Cheered": {"_count": 1}, "Euphoria": {"_count": 1}, "Seized": {"_count": 1}, "Touching": {"_count": 1}, "seems": {"_count": 1}, "Cornin": {"_count": 1}, "Sad": {"_count": 1}, "Interested": {"_count": 1}, "tha": {"_count": 1}, "beauiful": {"_count": 1}, "nor": {"_count": 1}, "Longer": {"_count": 1}, "HORCRUXES": {"_count": 1}, "Fantastic": {"_count": 2}, "Project": {"_count": 1}, "few": {"_count": 1}, "Splitting": {"_count": 1}, "Killing": {"_count": 2}, "\u2018Further": {"_count": 1}, "Therefore": {"_count": 2}, "Thereafter": {"_count": 2}, "isnt": {"_count": 1}, "Hufflepuffs": {"_count": 1}, "SECTUMSEMPRA": {"_count": 1}, "looks": {"_count": 1}, "Coward": {"_count": 1}, "Leanne": {"_count": 1}, "Luck": {"_count": 2}, "Pushing": {"_count": 3}, "fourth": {"_count": 1}, "Ominously": {"_count": 1}, "Apprehended": {"_count": 1}, "Aubreys": {"_count": 1}, "Biting": {"_count": 1}, "Quid": {"_count": 1}, "Prince": {"_count": 2}, "omens": {"_count": 1}, "whooping": {"_count": 1}, "Whooping": {"_count": 1}, "Calamity": {"_count": 1}, "Disaster": {"_count": 1}, "Boiling": {"_count": 1}, "AND": {"_count": 1}, "Share": {"_count": 1}, "Lights": {"_count": 1}, "Payment": {"_count": 1}, "Age": {"_count": 1}, "moaned": {"_count": 1}, "Hating": {"_count": 1}, "Renneruate": {"_count": 1}, "Aguamenti": {"_count": 4}, "Wordlessly": {"_count": 1}, "welldesigned": {"_count": 1}, "Save": {"_count": 1}, "Sodden": {"_count": 1}, "Closing": {"_count": 2}, "Dread": {"_count": 3}, "wherever": {"_count": 1}, "poisoning": {"_count": 1}, "Enchanted": {"_count": 1}, "Jokes": {"_count": 1}, "Shocks": {"_count": 1}, "Delicious": {"_count": 2}, "Dracos": {"_count": 1}, "FLIGHT": {"_count": 1}, "ran": {"_count": 1}, "Impedimenta": {"_count": 1}, "Cruc": {"_count": 2}, "Fangs": {"_count": 1}, "Fight": {"_count": 3}, "Mustering": {"_count": 1}, "HAGRID": {"_count": 5}, "Snot": {"_count": 1}, "Theyllve": {"_count": 1}, "Incomprehensible": {"_count": 1}, "Faces": {"_count": 2}, "\u2018Mudblood": {"_count": 1}, "Gibbon": {"_count": 1}, "curses": {"_count": 1}, "Mmoved": {"_count": 1}, "Parents": {"_count": 2}, "Seconded": {"_count": 1}, "Ugly": {"_count": 1}, "Rupert": {"_count": 1}, "Pure": {"_count": 1}, "ashamed": {"_count": 1}, "Hulking": {"_count": 1}, "Nobility": {"_count": 1}, "intellectual": {"_count": 1}, "greatness": {"_count": 1}, "Likewise": {"_count": 1}, "months": {"_count": 1}, "years": {"_count": 1}, "Moving": {"_count": 3}, "Released": {"_count": 1}, "News": {"_count": 1}, "Peacocks": {"_count": 1}, "Yaxley": {"_count": 9}, "Gravel": {"_count": 1}, "Illumination": {"_count": 1}, "Charity": {"_count": 2}, "Kneeling": {"_count": 1}, "inside": {"_count": 1}, "ALBUS": {"_count": 1}, "Scarcely": {"_count": 1}, "Immersed": {"_count": 1}, "Stripping": {"_count": 1}, "WHY": {"_count": 1}, "Greeting": {"_count": 1}, "Skeeter": {"_count": 2}, "Revulsion": {"_count": 1}, "Lies": {"_count": 2}, "began": {"_count": 1}, "Hestia": {"_count": 3}, "Sso": {"_count": 1}, "Ssuch": {"_count": 1}, "ssaying": {"_count": 1}, "Dedaluss": {"_count": 1}, "Dominating": {"_count": 1}, "Wrenching": {"_count": 1}, "Pius": {"_count": 1}, "Altogether": {"_count": 1}, "Bah": {"_count": 1}, "Clinging": {"_count": 1}, "Ted": {"_count": 1}, "Throwing": {"_count": 1}, "Le": {"_count": 1}, "Repeating": {"_count": 1}, "Followed": {"_count": 1}, "Traverss": {"_count": 1}, "Sectumsempra": {"_count": 1}, "Saintlike": {"_count": 1}, "Hole": {"_count": 1}, "Color": {"_count": 1}, "MadEyes": {"_count": 1}, "Escaped": {"_count": 1}, "Luciuss": {"_count": 1}, "exists": {"_count": 1}, "between": {"_count": 2}, "Startled": {"_count": 1}, "Wendell": {"_count": 1}, "Descendo": {"_count": 1}, "Spattergroit": {"_count": 1}, "shouldnt": {"_count": 1}, "person": {"_count": 1}, "Secrets": {"_count": 3}, "Remorse": {"_count": 1}, "Basilisk": {"_count": 1}, "Maman": {"_count": 1}, "Papa": {"_count": 1}, "Bouncing": {"_count": 1}, "Enchantee": {"_count": 1}, "Monsieur": {"_count": 1}, "Opportunities": {"_count": 1}, "Millamants": {"_count": 1}, "\u2018Gregorovitch": {"_count": 1}, "Record": {"_count": 1}, "Slick": {"_count": 1}, "Reveling": {"_count": 1}, "Unwrap": {"_count": 1}, "Explains": {"_count": 1}, "ozzerwise": {"_count": 1}, "chocolates": {"_count": 1}, "Mokeskin": {"_count": 1}, "Hide": {"_count": 2}, "\u2018To": {"_count": 2}, "persevere": {"_count": 1}, "Dusk": {"_count": 1}, "Remembered": {"_count": 1}, "raised": {"_count": 1}, "regret": {"_count": 1}, "Muffliato": {"_count": 2}, "Writing": {"_count": 1}, "Engraved": {"_count": 2}, "\u2018Babbitty": {"_count": 1}, "Cried": {"_count": 1}, "Brightly": {"_count": 1}, "Exotic": {"_count": 1}, "Xenophilius": {"_count": 14}, "Ours": {"_count": 1}, "Bidding": {"_count": 1}, "Goblinmade": {"_count": 2}, "Nightmare": {"_count": 1}, "Cousin": {"_count": 1}, "Trumpetlike": {"_count": 1}, "Smooth": {"_count": 1}, "Barny": {"_count": 1}, "Sign": {"_count": 1}, "Grindelwald": {"_count": 9}, "unusual": {"_count": 1}, "Vy": {"_count": 1}, "Gregorovitch": {"_count": 3}, "Doge": {"_count": 2}, "Auntie": {"_count": 2}, "Muggleborn": {"_count": 2}, "proud": {"_count": 1}, "Squibs": {"_count": 1}, "much": {"_count": 1}, "Numbly": {"_count": 1}, "Muriel": {"_count": 4}, "Bathilda": {"_count": 11}, "Graceful": {"_count": 2}, "Guests": {"_count": 1}, "Tottenham": {"_count": 1}, "Expulsol": {"_count": 1}, "Ddiffindo": {"_count": 1}, "Lock": {"_count": 1}, "Faintly": {"_count": 1}, "Bathroom": {"_count": 1}, "Desperate": {"_count": 2}, "Wormy": {"_count": 2}, "Lurching": {"_count": 1}, "Impatiently": {"_count": 1}, "Regulus": {"_count": 4}, "l": {"_count": 1}, "Reguluss": {"_count": 1}, "Refusing": {"_count": 1}, "MMaster": {"_count": 1}, "Wizarding": {"_count": 3}, "Restless": {"_count": 1}, "Wrapped": {"_count": 1}, "Effectively": {"_count": 1}, "Declaring": {"_count": 1}, "\u2018Recent": {"_count": 1}, "Muggleborns": {"_count": 2}, "Attendance": {"_count": 1}, "Baby": {"_count": 1}, "Slammed": {"_count": 1}, "Walked": {"_count": 1}, "Ariana": {"_count": 2}, "Wildeyed": {"_count": 1}, "Whave": {"_count": 1}, "Fletcher": {"_count": 1}, "bleedin": {"_count": 1}, "Bleedin": {"_count": 1}, "MAGIC": {"_count": 1}, "Shutting": {"_count": 1}, "Shoes": {"_count": 1}, "\u2018Severus": {"_count": 1}, "Opening": {"_count": 1}, "Aware": {"_count": 1}, "Grunting": {"_count": 1}, "Dawn": {"_count": 2}, "Invisibility": {"_count": 1}, "Decoy": {"_count": 1}, "Puking": {"_count": 1}, "Nicely": {"_count": 2}, "Stowing": {"_count": 1}, "Blooming": {"_count": 1}, "Previously": {"_count": 1}, "Raining": {"_count": 1}, "Yaxleys": {"_count": 1}, "Travers": {"_count": 5}, "Needed": {"_count": 1}, "Runcorn": {"_count": 2}, "Panic": {"_count": 2}, "ARTHUR": {"_count": 1}, "FAMILY": {"_count": 1}, "NB": {"_count": 1}, "SECURITY": {"_count": 1}, "Angrier": {"_count": 1}, "Mmorning": {"_count": 1}, "Meteolojinx": {"_count": 1}, "Married": {"_count": 1}, "Eightandthreequarter": {"_count": 1}, "\u2018Parents": {"_count": 1}, "Icecold": {"_count": 1}, "Relashiol": {"_count": 2}, "Disguise": {"_count": 1}, "Expec": {"_count": 1}, "Reg": {"_count": 2}, "Purer": {"_count": 1}, "RReg": {"_count": 1}, "LETS": {"_count": 2}, "Unstopper": {"_count": 1}, "Gloomy": {"_count": 1}, "Salvio": {"_count": 2}, "Protego": {"_count": 4}, "Repello": {"_count": 1}, "Tent": {"_count": 1}, "ErectoV": {"_count": 1}, "Sudden": {"_count": 1}, "Mastering": {"_count": 1}, "Nameless": {"_count": 1}, "fallen": {"_count": 1}, "Elax": {"_count": 1}, "Accordingly": {"_count": 1}, "Repressing": {"_count": 1}, "Autumn": {"_count": 1}, "Refused": {"_count": 1}, "Word": {"_count": 1}, "Duties": {"_count": 1}, "Gornuk": {"_count": 1}, "Xeno": {"_count": 1}, "Thieving": {"_count": 1}, "Problem": {"_count": 1}, "GODRICS": {"_count": 1}, "Cudgel": {"_count": 1}, "Hopelessness": {"_count": 1}, "Grindelwalds": {"_count": 1}, "\u2018Upon": {"_count": 1}, "Convinced": {"_count": 2}, "Cottages": {"_count": 1}, "Strung": {"_count": 1}, "Villagers": {"_count": 1}, "Deeper": {"_count": 4}, "JAMES": {"_count": 1}, "BATHILDAS": {"_count": 1}, "Leading": {"_count": 1}, "Yesss": {"_count": 1}, "Frozen": {"_count": 1}, "Glass": {"_count": 1}, "ripped": {"_count": 1}, "Mend": {"_count": 1}, "Impenetrable": {"_count": 1}, "Timidly": {"_count": 1}, "\u2018Dear": {"_count": 1}, "Dogbreath": {"_count": 1}, "Kendra": {"_count": 1}, "Educated": {"_count": 1}, "Hitherto": {"_count": 1}, "Profoundly": {"_count": 1}, "Gellert": {"_count": 1}, "Terribly": {"_count": 1}, "Aberforth": {"_count": 6}, "Caution": {"_count": 1}, "Diffindo": {"_count": 1}, "Contemplating": {"_count": 1}, "Thrashing": {"_count": 1}, "Choking": {"_count": 1}, "Shuddering": {"_count": 1}, "Yyou": {"_count": 1}, "Straightaway": {"_count": 1}, "Stab": {"_count": 3}, "Finishing": {"_count": 1}, "Saving": {"_count": 1}, "Simultaneously": {"_count": 1}, "Spitting": {"_count": 1}, "Rack": {"_count": 1}, "Snatchers": {"_count": 1}, "Gosh": {"_count": 1}, "\u2018Ron": {"_count": 1}, "Mines": {"_count": 1}, "XEN": {"_count": 1}, "Patronuses": {"_count": 2}, "Outvoted": {"_count": 1}, "Alls": {"_count": 1}, "EDITOR": {"_count": 1}, "LOVEGOOD": {"_count": 1}, "QuicklyV": {"_count": 1}, "Delicately": {"_count": 1}, "helping": {"_count": 1}, "rather": {"_count": 1}, "Cowardly": {"_count": 1}, "Fetching": {"_count": 1}, "Surprised": {"_count": 1}, "Modeled": {"_count": 1}, "\u2018Wit": {"_count": 2}, "Witness": {"_count": 1}, "\u2018There": {"_count": 1}, "\u2018In": {"_count": 2}, "\u2018And": {"_count": 5}, "\u2018So": {"_count": 1}, "\u2018Then": {"_count": 2}, "Deaths": {"_count": 1}, "\u2018Meanwhile": {"_count": 1}, "\u2018Yet": {"_count": 1}, "Conqueror": {"_count": 2}, "Vanquisher": {"_count": 2}, "Closeminded": {"_count": 2}, "Peverell": {"_count": 1}, "Ignotus": {"_count": 1}, "\u2018Jinx": {"_count": 1}, "\u2018Wand": {"_count": 1}, "Beedle": {"_count": 1}, "perfect": {"_count": 1}, "friends": {"_count": 2}, "upstairs": {"_count": 1}, "Deprimo": {"_count": 1}, "such": {"_count": 1}, "\u2018Extinct": {"_count": 1}, "ITS": {"_count": 1}, "bits": {"_count": 1}, "Limited": {"_count": 1}, "Obsession": {"_count": 1}, "master": {"_count": 1}, "Upper": {"_count": 1}, "Potterwatch": {"_count": 1}, "apologize": {"_count": 1}, "\u2018River": {"_count": 1}, "Listeners": {"_count": 2}, "Excellently": {"_count": 1}, "\u2018Support": {"_count": 1}, "\u2018Rodent": {"_count": 1}, "\u2018Rapier": {"_count": 1}, "Agreed": {"_count": 2}, "Unknown": {"_count": 1}, "Bardy": {"_count": 1}, "Aggiden": {"_count": 1}, "Accident": {"_count": 3}, "Mean": {"_count": 1}, "Bind": {"_count": 1}, "Veery": {"_count": 1}, "\u2018ermione": {"_count": 1}, "Scabior": {"_count": 1}, "Sword": {"_count": 1}, "Stupefyl": {"_count": 2}, "Line": {"_count": 1}, "DOB": {"_count": 1}, "Cautiously": {"_count": 1}, "NOOOOOOOOOOOO": {"_count": 1}, "Hoisting": {"_count": 1}, "DOBBY": {"_count": 1}, "HELP": {"_count": 1}, "though": {"_count": 3}, "Hallows": {"_count": 4}, "Loss": {"_count": 1}, "Moved": {"_count": 1}, "Fidelius": {"_count": 1}, "Griphooks": {"_count": 1}, "Wandcarriers": {"_count": 1}, "Mudblood": {"_count": 1}, "Bits": {"_count": 2}, "Ollivanders": {"_count": 1}, "Feigning": {"_count": 1}, "Holly": {"_count": 1}, "Ollivander": {"_count": 7}, "Walnut": {"_count": 1}, "Unyielding": {"_count": 1}, "Hawthorn": {"_count": 1}, "Reasonably": {"_count": 1}, "Subtle": {"_count": 1}, "Chestnut": {"_count": 1}, "Nineanda": {"_count": 1}, "Brittle": {"_count": 1}, "Wandlore": {"_count": 1}, "Legends": {"_count": 1}, "Against": {"_count": 1}, "formidable": {"_count": 1}, "Immensely": {"_count": 1}, "SHELL": {"_count": 1}, "Changes": {"_count": 1}, "Zat": {"_count": 1}, "Ze": {"_count": 1}, "Seizing": {"_count": 1}, "Moonstones": {"_count": 1}, "Everythings": {"_count": 1}, "Adding": {"_count": 1}, "Mme": {"_count": 1}, "Andromeda": {"_count": 1}, "Goblin": {"_count": 1}, "Dealings": {"_count": 1}, "GRINGOTTS": {"_count": 1}, "escape": {"_count": 1}, "\u2018Im": {"_count": 1}, "identification": {"_count": 1}, "Identification": {"_count": 1}, "Act": {"_count": 1}, "Imperio": {"_count": 1}, "CCushioning": {"_count": 1}, "Bogrod": {"_count": 1}, "Hoisted": {"_count": 1}, "Impervius": {"_count": 1}, "Liberacorpus": {"_count": 1}, "Sliding": {"_count": 1}, "Glinting": {"_count": 1}, "Mmy": {"_count": 1}, "Imimpostors": {"_count": 1}, "Impostors": {"_count": 1}, "Disapparate": {"_count": 1}, "Shouts": {"_count": 1}, "Stag": {"_count": 2}, "Curfews": {"_count": 1}, "Ravenous": {"_count": 1}, "Iits": {"_count": 1}, "till": {"_count": 1}, "Grand": {"_count": 1}, "Tou": {"_count": 1}, "Larger": {"_count": 1}, "Brass": {"_count": 1}, "Amycus": {"_count": 2}, "Alecto": {"_count": 2}, "Thing": {"_count": 1}, "Multicolored": {"_count": 1}, "Surpassed": {"_count": 1}, "Thereve": {"_count": 1}, "Aberforths": {"_count": 1}, "Centuries": {"_count": 1}, "Ravenclaws": {"_count": 2}, "ALECTO": {"_count": 1}, "Hunched": {"_count": 2}, "Hatred": {"_count": 1}, "Sprout": {"_count": 1}, "Piertotum": {"_count": 1}, "Man": {"_count": 1}, "evacuation": {"_count": 1}, "Nicks": {"_count": 1}, "Generations": {"_count": 2}, "Concealed": {"_count": 1}, "Albania": {"_count": 1}, "Sense": {"_count": 1}, "flattering": {"_count": 1}, "Saying": {"_count": 1}, "Voice": {"_count": 1}, "Smashed": {"_count": 1}, "Wherere": {"_count": 1}, "Mandrakes": {"_count": 1}, "Braggarts": {"_count": 1}, "Genius": {"_count": 1}, "01": {"_count": 1}, "Winners": {"_count": 1}, "Decided": {"_count": 1}, "CCrabbe": {"_count": 2}, "Thicknesse": {"_count": 1}, "Rounding": {"_count": 1}, "Duro": {"_count": 1}, "Argh": {"_count": 1}, "Screams": {"_count": 2}, "Stun": {"_count": 1}, "Shapes": {"_count": 1}, "Skilled": {"_count": 1}, "Capture": {"_count": 1}, "Silvery": {"_count": 1}, "Dispose": {"_count": 1}, "Treat": {"_count": 1}, "Emeralds": {"_count": 1}, "Part": {"_count": 2}, "Mummy": {"_count": 2}, "Tuney": {"_count": 3}, "Petunias": {"_count": 1}, "weirdos": {"_count": 1}, "Freak": {"_count": 1}, "\u2018Gryffindor": {"_count": 1}, "Slytherinl": {"_count": 1}, "safe": {"_count": 1}, "mediocre": {"_count": 1}, "Sorely": {"_count": 1}, "Tempted": {"_count": 1}, "Slow": {"_count": 1}, "Offer": {"_count": 1}, "Ultimately": {"_count": 1}, "Information": {"_count": 1}, "Identical": {"_count": 1}, "Calls": {"_count": 1}, "Ripples": {"_count": 1}, "Dying": {"_count": 1}, "Quicker": {"_count": 1}, "Invisible": {"_count": 1}, "KINGS": {"_count": 1}, "Happiness": {"_count": 2}, "Kings": {"_count": 1}, "Trapped": {"_count": 1}, "somehow": {"_count": 1}, "Invincible": {"_count": 1}, "Reality": {"_count": 1}, "lay": {"_count": 1}, "board": {"_count": 1}, "Various": {"_count": 1}, "Examine": {"_count": 1}, "Branches": {"_count": 1}, "BANE": {"_count": 1}, "NOT": {"_count": 1}, "screamed": {"_count": 1}, "Than": {"_count": 1}, "try": {"_count": 1}, "Blank": {"_count": 1}, "Painstakingly": {"_count": 1}, "ayue": {"_count": 1}, "Albuss": {"_count": 1}, "Indistinct": {"_count": 1}, "Detached": {"_count": 1}, "Rose": {"_count": 1}, "Parked": {"_count": 1}, "Granddad": {"_count": 1}, "Teddys": {"_count": 1}, "Teddy": {"_count": 1}}, "?": {"_count": 10864, "It": {"_count": 123}, "Mr": {"_count": 23}, "Well": {"_count": 155}, "Owls": {"_count": 1}, "Mysterious": {"_count": 1}, "And": {"_count": 139}, "As": {"_count": 33}, "Funny": {"_count": 1}, "snapped": {"_count": 16}, "I": {"_count": 476}, "Howard": {"_count": 1}, "Harry": {"_count": 725}, "Could": {"_count": 10}, "If": {"_count": 41}, "she": {"_count": 142}, "When": {"_count": 22}, "A": {"_count": 64}, "All": {"_count": 24}, "About": {"_count": 6}, "faltered": {"_count": 1}, "Its": {"_count": 69}, "We": {"_count": 61}, "Yes": {"_count": 186}, "Ive": {"_count": 39}, "cried": {"_count": 5}, "repeated": {"_count": 36}, "These": {"_count": 7}, "Professor": {"_count": 44}, "She": {"_count": 99}, "Borrowed": {"_count": 1}, "No": {"_count": 228}, "whispered": {"_count": 32}, "Even": {"_count": 8}, "asked": {"_count": 403}, "his": {"_count": 1}, "Two": {"_count": 5}, "Dudley": {"_count": 10}, "said": {"_count": 1760}, "On": {"_count": 7}, "The": {"_count": 211}, "Uncle": {"_count": 9}, "he": {"_count": 425}, "He": {"_count": 274}, "sneered": {"_count": 7}, "You": {"_count": 167}, "Watching": {"_count": 1}, "Should": {"_count": 5}, "Tell": {"_count": 11}, "That": {"_count": 38}, "Only": {"_count": 11}, "Aunt": {"_count": 8}, "Was": {"_count": 32}, "One": {"_count": 10}, "barked": {"_count": 7}, "Hagrid": {"_count": 45}, "My": {"_count": 26}, "Yeh": {"_count": 7}, "Never": {"_count": 13}, "Kept": {"_count": 1}, "gasped": {"_count": 9}, "An": {"_count": 13}, "Gallopin": {"_count": 1}, "Knew": {"_count": 1}, "Oh": {"_count": 162}, "What": {"_count": 148}, "Gulpin": {"_count": 1}, "Good": {"_count": 6}, "Some": {"_count": 4}, "Him": {"_count": 1}, "How": {"_count": 68}, "Hed": {"_count": 10}, "Hadnt": {"_count": 6}, "Mm": {"_count": 1}, "But": {"_count": 161}, "Just": {"_count": 25}, "Yeah": {"_count": 116}, "Come": {"_count": 17}, "Of": {"_count": 41}, "Why": {"_count": 68}, "Blimey": {"_count": 4}, "Things": {"_count": 1}, "Wanted": {"_count": 1}, "Were": {"_count": 19}, "Might": {"_count": 6}, "Cant": {"_count": 11}, "DDefense": {"_count": 1}, "Told": {"_count": 2}, "Vampires": {"_count": 1}, "Hags": {"_count": 1}, "Harrys": {"_count": 15}, "Got": {"_count": 6}, "Stalagmites": {"_count": 1}, "the": {"_count": 8}, "Mmm": {"_count": 1}, "Hes": {"_count": 38}, "Where": {"_count": 27}, "Theyre": {"_count": 14}, "They": {"_count": 79}, "School": {"_count": 2}, "Years": {"_count": 1}, "Er": {"_count": 45}, "Not": {"_count": 44}, "Yer": {"_count": 2}, "Im": {"_count": 51}, "Grunt": {"_count": 1}, "Nine": {"_count": 2}, "Sorry": {"_count": 7}, "Now": {"_count": 18}, "Rons": {"_count": 9}, "George": {"_count": 7}, "Are": {"_count": 23}, "Coming": {"_count": 4}, "Weve": {"_count": 16}, "Guess": {"_count": 2}, "Know": {"_count": 4}, "Who": {"_count": 28}, "Asked": {"_count": 1}, "Their": {"_count": 3}, "Fred": {"_count": 13}, "Ron": {"_count": 207}, "Horrible": {"_count": 1}, "Starving": {"_count": 1}, "Sprouts": {"_count": 1}, "Nevilles": {"_count": 3}, "Lets": {"_count": 6}, "Nothing": {"_count": 25}, "Malfoy": {"_count": 20}, "Youd": {"_count": 4}, "Youll": {"_count": 5}, "Hagrids": {"_count": 5}, "Mind": {"_count": 3}, "shouted": {"_count": 19}, "In": {"_count": 28}, "Sir": {"_count": 10}, "Gryffindors": {"_count": 1}, "There": {"_count": 67}, "Next": {"_count": 2}, "Did": {"_count": 38}, "Whispers": {"_count": 1}, "Powdered": {"_count": 1}, "Hermione": {"_count": 148}, "Snape": {"_count": 40}, "At": {"_count": 17}, "Neville": {"_count": 10}, "Thought": {"_count": 4}, "Thats": {"_count": 37}, "Cheer": {"_count": 1}, "Yet": {"_count": 5}, "9": {"_count": 1}, "Malfoys": {"_count": 3}, "Give": {"_count": 4}, "Up": {"_count": 1}, "Wood": {"_count": 6}, "thought": {"_count": 1}, "Absolutely": {"_count": 1}, "Youre": {"_count": 12}, "Throw": {"_count": 1}, "breathed": {"_count": 9}, "Tut": {"_count": 1}, "Filch": {"_count": 5}, "Shant": {"_count": 1}, "Gringotts": {"_count": 1}, "came": {"_count": 6}, "Whats": {"_count": 25}, "Three": {"_count": 2}, "Search": {"_count": 2}, "Wheeling": {"_count": 1}, "Dunno": {"_count": 15}, "but": {"_count": 9}, "Getting": {"_count": 2}, "Nope": {"_count": 4}, "Seamus": {"_count": 6}, "moaned": {"_count": 1}, "Leave": {"_count": 2}, "Hoping": {"_count": 1}, "Bit": {"_count": 5}, "Send": {"_count": 1}, "Had": {"_count": 21}, "Before": {"_count": 5}, "Percy": {"_count": 5}, "Something": {"_count": 13}, "squawked": {"_count": 3}, "After": {"_count": 4}, "Can": {"_count": 16}, "Obviously": {"_count": 2}, "Look": {"_count": 9}, "Anyone": {"_count": 1}, "Bbbut": {"_count": 1}, "before": {"_count": 1}, "Beats": {"_count": 2}, "Someone": {"_count": 7}, "Thanks": {"_count": 4}, "By": {"_count": 6}, "Hurry": {"_count": 1}, "Snot": {"_count": 1}, "Yehll": {"_count": 2}, "Silvery": {"_count": 1}, "Get": {"_count": 9}, "To": {"_count": 10}, "Erm": {"_count": 4}, "Ronan": {"_count": 2}, "Anythin": {"_count": 1}, "Mars": {"_count": 1}, "Theres": {"_count": 7}, "Bane": {"_count": 1}, "Nah": {"_count": 6}, "Do": {"_count": 27}, "growled": {"_count": 11}, "Centaurs": {"_count": 1}, "Firenze": {"_count": 2}, "Or": {"_count": 31}, "panted": {"_count": 4}, "Lucky": {"_count": 2}, "Mighta": {"_count": 1}, "So": {"_count": 36}, "Dyou": {"_count": 10}, "Id": {"_count": 10}, "Right": {"_count": 9}, "were": {"_count": 1}, "it": {"_count": 2}, "Hell": {"_count": 1}, "Positive": {"_count": 3}, "Quirrell": {"_count": 1}, "Certainly": {"_count": 13}, "Unfortunately": {"_count": 2}, "Help": {"_count": 3}, "Dumbledore": {"_count": 50}, "Your": {"_count": 15}, "Ah": {"_count": 22}, "\u2018to": {"_count": 1}, "and": {"_count": 10}, "snarled": {"_count": 5}, "Ill": {"_count": 21}, "Theyll": {"_count": 8}, "Vernon": {"_count": 3}, "From": {"_count": 5}, "Havent": {"_count": 3}, "Better": {"_count": 6}, "Dobby": {"_count": 17}, "Escape": {"_count": 1}, "Almost": {"_count": 2}, "Would": {"_count": 19}, "Locked": {"_count": 1}, "Must": {"_count": 2}, "Our": {"_count": 3}, "never": {"_count": 2}, "Mrs": {"_count": 13}, "Very": {"_count": 15}, "\u2018Let": {"_count": 1}, "interrupted": {"_count": 3}, "Hello": {"_count": 1}, "Lost": {"_count": 2}, "Have": {"_count": 17}, "croaked": {"_count": 8}, "Greenhouse": {"_count": 1}, "Judging": {"_count": 1}, "Plenty": {"_count": 3}, "Hermiones": {"_count": 4}, "Signed": {"_count": 1}, "Loud": {"_count": 1}, "Gilderoy": {"_count": 1}, "2": {"_count": 1}, "3": {"_count": 1}, "Half": {"_count": 2}, "roared": {"_count": 12}, "six": {"_count": 1}, "Werent": {"_count": 1}, "Is": {"_count": 30}, "Colin": {"_count": 2}, "Any": {"_count": 4}, "called": {"_count": 13}, "squealed": {"_count": 3}, "Furious": {"_count": 1}, "Lockhart": {"_count": 2}, "Perhaps": {"_count": 10}, "Great": {"_count": 2}, "Keeping": {"_count": 2}, "Anything": {"_count": 4}, "Find": {"_count": 1}, "Ever": {"_count": 1}, "Nearly": {"_count": 6}, "Fat": {"_count": 1}, "Head": {"_count": 1}, "This": {"_count": 27}, "Attracted": {"_count": 1}, "choked": {"_count": 1}, "Course": {"_count": 11}, "Granger": {"_count": 2}, "Please": {"_count": 3}, "Nonsense": {"_count": 1}, "Someones": {"_count": 3}, "muttered": {"_count": 8}, "Gryffindor": {"_count": 3}, "Shredded": {"_count": 1}, "yelled": {"_count": 13}, "Bludgers": {"_count": 1}, "Youve": {"_count": 7}, "Dobbys": {"_count": 1}, "Madam": {"_count": 4}, "Fine": {"_count": 8}, "Knowing": {"_count": 1}, "Excellent": {"_count": 3}, "Scared": {"_count": 1}, "Listen": {"_count": 6}, "Enemies": {"_count": 1}, "Ernie": {"_count": 3}, "Canceled": {"_count": 1}, "Whys": {"_count": 1}, "people": {"_count": 1}, "Whose": {"_count": 2}, "Goyles": {"_count": 1}, "Crabbe": {"_count": 4}, "Wh": {"_count": 1}, "Ha": {"_count": 3}, "Far": {"_count": 1}, "glugged": {"_count": 1}, "Dont": {"_count": 26}, "His": {"_count": 22}, "Still": {"_count": 6}, "Halfblood": {"_count": 2}, "Riddle": {"_count": 3}, "Thatd": {"_count": 2}, "Because": {"_count": 48}, "Isnt": {"_count": 5}, "For": {"_count": 20}, "People": {"_count": 3}, "THE": {"_count": 5}, "howled": {"_count": 1}, "Ginny": {"_count": 15}, "Whatll": {"_count": 2}, "piped": {"_count": 2}, "Shes": {"_count": 8}, "Instead": {"_count": 1}, "Wwheres": {"_count": 1}, "Fawkes": {"_count": 2}, "Back": {"_count": 3}, "Instinctively": {"_count": 1}, "Enenchant": {"_count": 1}, "Surely": {"_count": 6}, "spat": {"_count": 2}, "Proud": {"_count": 2}, "HELLO": {"_count": 1}, "CAN": {"_count": 1}, "RON": {"_count": 1}, "Will": {"_count": 14}, "Lunatic": {"_count": 1}, "Ripper": {"_count": 1}, "St": {"_count": 1}, "Then": {"_count": 9}, "sniggered": {"_count": 2}, "Stan": {"_count": 4}, "Yep": {"_count": 7}, "Stuck": {"_count": 1}, "Eleven": {"_count": 1}, "Somewhere": {"_count": 1}, "Ar": {"_count": 5}, "Don": {"_count": 2}, "While": {"_count": 3}, "yelped": {"_count": 2}, "Most": {"_count": 4}, "Inee": {"_count": 1}, "Gas": {"_count": 1}, "Blew": {"_count": 1}, "E": {"_count": 1}, "Diagon": {"_count": 1}, "Beer": {"_count": 1}, "Brandy": {"_count": 1}, "Fudge": {"_count": 12}, "laughed": {"_count": 2}, "Keep": {"_count": 2}, "or": {"_count": 1}, "squeaked": {"_count": 5}, "Dad": {"_count": 4}, "Probably": {"_count": 7}, "shrugged": {"_count": 2}, "Poor": {"_count": 1}, "Wheres": {"_count": 11}, "Here": {"_count": 5}, "Defense": {"_count": 1}, "Anyway": {"_count": 6}, "Stick": {"_count": 1}, "Spect": {"_count": 2}, "Ouch": {"_count": 1}, "Whos": {"_count": 6}, "\u2018Tm": {"_count": 2}, "Draw": {"_count": 1}, "Lavender": {"_count": 3}, "Everyone": {"_count": 3}, "Emboldened": {"_count": 1}, "simpered": {"_count": 1}, "Didnt": {"_count": 12}, "Daily": {"_count": 1}, "Need": {"_count": 1}, "Trying": {"_count": 3}, "Precisely": {"_count": 1}, "prompted": {"_count": 1}, "d": {"_count": 1}, "N": {"_count": 2}, "Hey": {"_count": 5}, "Hogsmeade": {"_count": 1}, "Strong": {"_count": 1}, "Lupin": {"_count": 16}, "Maybe": {"_count": 20}, "Everything": {"_count": 4}, "Hiding": {"_count": 1}, "None": {"_count": 3}, "chorused": {"_count": 1}, "Diggory": {"_count": 1}, "Hops": {"_count": 1}, "Am": {"_count": 3}, "Wow": {"_count": 2}, "Hear": {"_count": 1}, "Naturally": {"_count": 3}, "Fact": {"_count": 1}, "Again": {"_count": 5}, "\u2018If": {"_count": 1}, "interjected": {"_count": 4}, "Theyd": {"_count": 3}, "Dead": {"_count": 1}, "Yehve": {"_count": 1}, "Which": {"_count": 6}, "Scurvy": {"_count": 1}, "Sirius": {"_count": 16}, "With": {"_count": 5}, "Okay": {"_count": 6}, "Seriously": {"_count": 1}, "Tomorrow": {"_count": 1}, "Ravenclawll": {"_count": 1}, "SCABBERS": {"_count": 1}, "so": {"_count": 1}, "GET": {"_count": 2}, "Ask": {"_count": 1}, "Black": {"_count": 6}, "Dreaming": {"_count": 1}, "Nobody": {"_count": 9}, "Panting": {"_count": 1}, "W": {"_count": 1}, "Divination": {"_count": 1}, "\u2018Around": {"_count": 1}, "Down": {"_count": 1}, "P": {"_count": 1}, "Theyve": {"_count": 4}, "HeWhoMustNotBeNamed": {"_count": 2}, "Five": {"_count": 1}, "Stay": {"_count": 2}, "Unless": {"_count": 3}, "Ages": {"_count": 1}, "Both": {"_count": 4}, "Azkaban": {"_count": 1}, "BANG": {"_count": 1}, "Miss": {"_count": 2}, "told": {"_count": 1}, "Peter": {"_count": 1}, "Thank": {"_count": 3}, "HOW": {"_count": 2}, "Pettigrew": {"_count": 1}, "Personally": {"_count": 1}, "Headmaster": {"_count": 1}, "Hows": {"_count": 1}, "Couldnt": {"_count": 3}, "Wormtail": {"_count": 4}, "they": {"_count": 3}, "Leavin": {"_count": 1}, "Prongs": {"_count": 1}, "Crookshanks": {"_count": 2}, "sputtered": {"_count": 1}, "Dear": {"_count": 1}, "Laughing": {"_count": 1}, "Gracious": {"_count": 1}, "Has": {"_count": 7}, "TonTongue": {"_count": 1}, "Bill": {"_count": 6}, "": {"_count": 11}, "Went": {"_count": 2}, "Mum": {"_count": 2}, "Charlie": {"_count": 2}, "Cedric": {"_count": 5}, "Cedrics": {"_count": 1}, "Aye": {"_count": 2}, "Weasley": {"_count": 3}, "Dads": {"_count": 1}, "Ludo": {"_count": 1}, "Eh": {"_count": 5}, "Freedom": {"_count": 1}, "Winky": {"_count": 4}, "Ready": {"_count": 2}, "bellowed": {"_count": 7}, "Wherere": {"_count": 1}, "Nous": {"_count": 1}, "Bet": {"_count": 2}, "Honestly": {"_count": 1}, "Out": {"_count": 4}, "Barty": {"_count": 2}, "Comprehension": {"_count": 1}, "Conjure": {"_count": 1}, "Amos": {"_count": 1}, "Arthur": {"_count": 6}, "Use": {"_count": 2}, "spluttered": {"_count": 3}, "Rumors": {"_count": 2}, "Hedwig": {"_count": 2}, "YouKnowWho": {"_count": 2}, "More": {"_count": 2}, "Wont": {"_count": 2}, "Going": {"_count": 2}, "Either": {"_count": 2}, "Little": {"_count": 1}, "Twas": {"_count": 1}, "See": {"_count": 4}, "Wha": {"_count": 4}, "Fancy": {"_count": 1}, "Spose": {"_count": 1}, "aah": {"_count": 1}, "Moody": {"_count": 4}, "shrieked": {"_count": 6}, "Beyond": {"_count": 1}, "Several": {"_count": 4}, "Another": {"_count": 3}, "Dumbledores": {"_count": 3}, "Think": {"_count": 8}, "Broomsticks": {"_count": 1}, "Madame": {"_count": 2}, "Warm": {"_count": 1}, "Blooming": {"_count": 1}, "Viktor": {"_count": 2}, "Really": {"_count": 2}, "Over": {"_count": 1}, "Too": {"_count": 2}, "Yehd": {"_count": 1}, "Bagman": {"_count": 4}, "burst": {"_count": 1}, "Voldemort": {"_count": 16}, "Balderdash": {"_count": 1}, "Brilliant": {"_count": 1}, "Straight": {"_count": 1}, "Ten": {"_count": 1}, "Around": {"_count": 2}, "Roun": {"_count": 1}, "Double": {"_count": 1}, "Nervous": {"_count": 1}, "Worried": {"_count": 1}, "Angry": {"_count": 1}, "Enchantingly": {"_count": 1}, "Polished": {"_count": 1}, "Since": {"_count": 2}, "Her": {"_count": 12}, "Pansy": {"_count": 1}, "Ignore": {"_count": 1}, "Shhh": {"_count": 3}, "Bongsewer": {"_count": 1}, "Yehre": {"_count": 1}, "Jus": {"_count": 3}, "Whatve": {"_count": 1}, "Karkaroff": {"_count": 3}, "Bertha": {"_count": 2}, "Outside": {"_count": 2}, "Sure": {"_count": 2}, "Arent": {"_count": 1}, "Share": {"_count": 1}, "says": {"_count": 1}, "Lasso": {"_count": 1}, "Cheers": {"_count": 1}, "Angelina": {"_count": 3}, "Giggling": {"_count": 1}, "Hermionel": {"_count": 1}, "Parvati": {"_count": 5}, "Stupid": {"_count": 1}, "Obvious": {"_count": 1}, "Padma": {"_count": 1}, "Krum": {"_count": 6}, "Shame": {"_count": 1}, "Moi": {"_count": 1}, "upon": {"_count": 1}, "Does": {"_count": 4}, "Take": {"_count": 2}, "Been": {"_count": 2}, "Looking": {"_count": 2}, "Society": {"_count": 1}, "Showing": {"_count": 1}, "\u2018Disgraced": {"_count": 1}, "Rita": {"_count": 3}, "Barricade": {"_count": 1}, "Nevertheless": {"_count": 1}, "Sometimes": {"_count": 2}, "Slow": {"_count": 1}, "Hang": {"_count": 5}, "Oooh": {"_count": 3}, "Moaning": {"_count": 1}, "Wake": {"_count": 1}, "Believes": {"_count": 1}, "Moodys": {"_count": 2}, "Advice": {"_count": 1}, "Time": {"_count": 2}, "Fleur": {"_count": 4}, "Known": {"_count": 1}, "\u2018A": {"_count": 1}, "Clearing": {"_count": 1}, "Loads": {"_count": 1}, "Says": {"_count": 1}, "Ought": {"_count": 2}, "Crouchs": {"_count": 2}, "Begging": {"_count": 1}, "Crouch": {"_count": 2}, "Igor": {"_count": 1}, "Hasn": {"_count": 1}, "Magine": {"_count": 1}, "\u2018I": {"_count": 1}, "Exempt": {"_count": 1}, "Fleetingly": {"_count": 1}, "Flesh": {"_count": 1}, "Dig": {"_count": 1}, "Killed": {"_count": 1}, "Clunk": {"_count": 1}, "Magical": {"_count": 1}, "Feed": {"_count": 1}, "sobbed": {"_count": 2}, "Potters": {"_count": 1}, "Carried": {"_count": 1}, "Minerva": {"_count": 1}, "blustered": {"_count": 3}, "Preposterous": {"_count": 1}, "Nightmares": {"_count": 1}, "Possibly": {"_count": 2}, "Extend": {"_count": 1}, "Pretended": {"_count": 1}, "Bugging": {"_count": 1}, "Me": {"_count": 3}, "Buy": {"_count": 1}, "Gave": {"_count": 1}, "Listening": {"_count": 1}, "Aha": {"_count": 1}, "Malcolm": {"_count": 1}, "Shut": {"_count": 2}, "Cause": {"_count": 2}, "Seven": {"_count": 1}, "Eight": {"_count": 1}, "Tad": {"_count": 1}, "Point": {"_count": 2}, "Ststop": {"_count": 1}, "DUDLEY": {"_count": 1}, "VERNON": {"_count": 1}, "Slowly": {"_count": 2}, "Felt": {"_count": 1}, "De": {"_count": 1}, "Lord": {"_count": 2}, "Looks": {"_count": 1}, "Remember": {"_count": 6}, "Go": {"_count": 3}, "YOU": {"_count": 2}, "Whenever": {"_count": 1}, "Cauldron": {"_count": 1}, "Broom": {"_count": 1}, "Tonks": {"_count": 6}, "YOUVE": {"_count": 1}, "WHO": {"_count": 4}, "Every": {"_count": 3}, "ME": {"_count": 1}, "WHY": {"_count": 1}, "Voldemorti": {"_count": 1}, "Ears": {"_count": 1}, "Mundungus": {"_count": 1}, "Cos": {"_count": 1}, "demanded": {"_count": 31}, "Kreacher": {"_count": 11}, "Range": {"_count": 1}, "Us": {"_count": 1}, "Picking": {"_count": 1}, "Least": {"_count": 1}, "Muffins": {"_count": 1}, "Kippers": {"_count": 1}, "Bacon": {"_count": 1}, "Toast": {"_count": 1}, "AntiMuggle": {"_count": 1}, "exactly": {"_count": 1}, "boomed": {"_count": 1}, "Highly": {"_count": 1}, "snorted": {"_count": 3}, "Gold": {"_count": 1}, "Standing": {"_count": 1}, "Night": {"_count": 1}, "grunted": {"_count": 2}, "Molly": {"_count": 1}, "Beneath": {"_count": 1}, "Notorious": {"_count": 1}, "Startling": {"_count": 1}, "Sources": {"_count": 1}, "Ginnys": {"_count": 1}, "Those": {"_count": 2}, "Thatll": {"_count": 1}, "Like": {"_count": 2}, "Contact": {"_count": 1}, "O": {"_count": 1}, "Wed": {"_count": 1}, "Attacking": {"_count": 1}, "Draco": {"_count": 4}, "Neither": {"_count": 1}, "Binns": {"_count": 1}, "Wands": {"_count": 1}, "stated": {"_count": 1}, "inquired": {"_count": 7}, "Hearing": {"_count": 1}, "Seeing": {"_count": 1}, "Speaking": {"_count": 3}, "Potter": {"_count": 5}, "Pur": {"_count": 1}, "Bowtruckles": {"_count": 1}, "Friday": {"_count": 1}, "Cho": {"_count": 1}, "Open": {"_count": 2}, "\u2018Dreadful": {"_count": 1}, "Troll": {"_count": 1}, "Giving": {"_count": 3}, "Goyle": {"_count": 2}, "Last": {"_count": 1}, "Ho": {"_count": 1}, "suggested": {"_count": 9}, "one": {"_count": 1}, "Many": {"_count": 2}, "Wrong": {"_count": 1}, "Mimbulus": {"_count": 1}, "Anytime": {"_count": 1}, "Everybody": {"_count": 1}, "Sooner": {"_count": 1}, "screamed": {"_count": 3}, "Hem": {"_count": 1}, "Cornelius": {"_count": 1}, "Dreadful": {"_count": 2}, "Everlasting": {"_count": 1}, "Bloke": {"_count": 1}, "Maniac": {"_count": 1}, "Without": {"_count": 1}, "II": {"_count": 1}, "Immensely": {"_count": 1}, "Thestrals": {"_count": 1}, "\u2018Appears": {"_count": 1}, "Umbridge": {"_count": 3}, "Numbly": {"_count": 1}, "Inside": {"_count": 2}, "OUT": {"_count": 1}, "Useful": {"_count": 1}, "Shouldnt": {"_count": 2}, "Stuff": {"_count": 1}, "Siriuss": {"_count": 1}, "smirked": {"_count": 1}, "Typical": {"_count": 1}, "Fifth": {"_count": 1}, "Hasnt": {"_count": 2}, "Teach": {"_count": 2}, "Shall": {"_count": 2}, "Agnes": {"_count": 1}, "Lockharts": {"_count": 1}, "Friends": {"_count": 1}, "Clever": {"_count": 1}, "Extra": {"_count": 1}, "HARRY": {"_count": 1}, "Itd": {"_count": 1}, "Today": {"_count": 1}, "Betrayed": {"_count": 1}, "Distraught": {"_count": 1}, "Misunderstood": {"_count": 1}, "Girls": {"_count": 1}, "Be": {"_count": 1}, "Rookwoods": {"_count": 1}, "Remove": {"_count": 1}, "POTTER": {"_count": 1}, "amended": {"_count": 1}, "cut": {"_count": 1}, "Marietta": {"_count": 1}, "Tonight": {"_count": 1}, "\u2018Come": {"_count": 1}, "Merlins": {"_count": 3}, "Coffee": {"_count": 1}, "Pumpkin": {"_count": 2}, "at": {"_count": 1}, "Quills": {"_count": 1}, "Nicked": {"_count": 1}, "Nno": {"_count": 1}, "Huh": {"_count": 1}, "continued": {"_count": 2}, "Umbridges": {"_count": 1}, "Christmas": {"_count": 1}, "Spoken": {"_count": 1}, "Pretty": {"_count": 1}, "Itll": {"_count": 2}, "was": {"_count": 2}, "Ony": {"_count": 1}, "Hold": {"_count": 1}, "Less": {"_count": 1}, "thinking": {"_count": 1}, "Saw": {"_count": 1}, "Harold": {"_count": 1}, "MadEye": {"_count": 3}, "Somebody": {"_count": 2}, "Weapon": {"_count": 1}, "Yyyes": {"_count": 1}, "Luna": {"_count": 3}, "STUPEF": {"_count": 1}, "LUNA": {"_count": 1}, "DUBBLEDORE": {"_count": 1}, "past": {"_count": 1}, "Hatred": {"_count": 1}, "Bin": {"_count": 2}, "Though": {"_count": 1}, "Nick": {"_count": 2}, "Amelia": {"_count": 1}, "Narcissa": {"_count": 2}, "Fooled": {"_count": 1}, "Bellatrix": {"_count": 5}, "Hardly": {"_count": 2}, "Snapes": {"_count": 2}, "Later": {"_count": 1}, "Fortunately": {"_count": 1}, "Bearing": {"_count": 1}, "began": {"_count": 6}, "Dragon": {"_count": 2}, "Slughorn": {"_count": 8}, "Mostly": {"_count": 1}, "Mums": {"_count": 1}, "Same": {"_count": 2}, "6": {"_count": 1}, "Dragged": {"_count": 1}, "Guaranteed": {"_count": 1}, "Big": {"_count": 1}, "Sixteen": {"_count": 1}, "McLaggen": {"_count": 1}, "Belby": {"_count": 2}, "beamed": {"_count": 1}, "True": {"_count": 2}, "Zabini": {"_count": 1}, "Petrificus": {"_count": 1}, "Normal": {"_count": 1}, "Potions": {"_count": 1}, "Sright": {"_count": 1}, "Morfin": {"_count": 2}, "Centuries": {"_count": 1}, "Gaunt": {"_count": 1}, "Hanging": {"_count": 1}, "Merope": {"_count": 1}, "Voldemorts": {"_count": 1}, "Wasnt": {"_count": 1}, "Looked": {"_count": 1}, "Oi": {"_count": 2}, "Feelin": {"_count": 1}, "Reckon": {"_count": 1}, "Shh": {"_count": 1}, "Haltingly": {"_count": 1}, "Impertinent": {"_count": 1}, "However": {"_count": 3}, "Definitely": {"_count": 3}, "Whatever": {"_count": 1}, "\u2018Professor": {"_count": 1}, "Captain": {"_count": 1}, "Gotcha": {"_count": 1}, "Fishy": {"_count": 1}, "look": {"_count": 1}, "Hi": {"_count": 1}, "First": {"_count": 1}, "Slughorns": {"_count": 1}, "Rufus": {"_count": 1}, "Cormac": {"_count": 1}, "Careful": {"_count": 2}, "Mphf": {"_count": 1}, "Pretending": {"_count": 1}, "Lupins": {"_count": 1}, "Prince": {"_count": 1}, "Hmmm": {"_count": 1}, "Tonkss": {"_count": 1}, "Soon": {"_count": 1}, "Marvolo": {"_count": 2}, "iVo": {"_count": 1}, "WRONG": {"_count": 1}, "Breakfast": {"_count": 1}, "Drop": {"_count": 1}, "Let": {"_count": 2}, "Meaning": {"_count": 1}, "Therell": {"_count": 1}, "Cracked": {"_count": 1}, "Quietly": {"_count": 1}, "Exactly": {"_count": 3}, "Somehow": {"_count": 2}, "Pick": {"_count": 2}, "Helga": {"_count": 1}, "Devoted": {"_count": 1}, "guffawed": {"_count": 1}, "Wish": {"_count": 1}, "Vividly": {"_count": 1}, "Mmmm": {"_count": 1}, "Unorthodox": {"_count": 1}, "Liked": {"_count": 1}, "Tom": {"_count": 1}, "Wouldnt": {"_count": 1}, "Correct": {"_count": 1}, "Seizing": {"_count": 1}, "Saying": {"_count": 1}, "Gleefully": {"_count": 1}, "Into": {"_count": 2}, "Water": {"_count": 2}, "\u2018Did": {"_count": 1}, "Frightens": {"_count": 1}, "Mall": {"_count": 1}, "Stupe": {"_count": 1}, "Speak": {"_count": 1}, "Whatre": {"_count": 1}, "Righ": {"_count": 1}, "Under": {"_count": 1}, "According": {"_count": 1}, "Wordlessly": {"_count": 1}, "Tobias": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Everywheres": {"_count": 1}, "Once": {"_count": 1}, "Elm": {"_count": 1}, "Cut": {"_count": 1}, "WHAT": {"_count": 1}, "Hestia": {"_count": 1}, "\u2018Harry": {"_count": 1}, "Kingsley": {"_count": 1}, "Saintlike": {"_count": 1}, "exclaimed": {"_count": 1}, "R": {"_count": 2}, "\u2018Cconstant": {"_count": 1}, "Dragomir": {"_count": 1}, "Vaguely": {"_count": 1}, "Norbert": {"_count": 1}, "Aall": {"_count": 1}, "Put": {"_count": 1}, "Evidently": {"_count": 1}, "Interesting": {"_count": 1}, "Remembered": {"_count": 1}, "Grindelvald": {"_count": 1}, "Doges": {"_count": 1}, "screeched": {"_count": 3}, "Off": {"_count": 1}, "Doge": {"_count": 1}, "cackled": {"_count": 1}, "groaned": {"_count": 2}, "Undetectable": {"_count": 1}, "Ditch": {"_count": 1}, "Nerves": {"_count": 1}, "DumblecLores": {"_count": 1}, "Information": {"_count": 1}, "Bathilda": {"_count": 4}, "Regulus": {"_count": 1}, "echoed": {"_count": 2}, "Master": {"_count": 1}, "Impossible": {"_count": 1}, "Shell": {"_count": 1}, "Setting": {"_count": 1}, "greeted": {"_count": 1}, "Death": {"_count": 1}, "Das": {"_count": 1}, "Reluctantly": {"_count": 1}, "Chuck": {"_count": 1}, "Forcing": {"_count": 1}, "Try": {"_count": 1}, "Nice": {"_count": 1}, "Yyes": {"_count": 1}, "Speeding": {"_count": 1}, "Yaxleys": {"_count": 1}, "Ttook": {"_count": 1}, "Wait": {"_count": 1}, "Patronuses": {"_count": 1}, "STOP": {"_count": 1}, "Seal": {"_count": 1}, "Splinched": {"_count": 1}, "Respect": {"_count": 1}, "Sick": {"_count": 1}, "Accio": {"_count": 1}, "Similar": {"_count": 1}, "Hard": {"_count": 1}, "Run": {"_count": 1}, "scoffed": {"_count": 1}, "Phineas": {"_count": 5}, "\u2018Please": {"_count": 1}, "Plunk": {"_count": 1}, "Finding": {"_count": 1}, "Hmm": {"_count": 3}, "Apparently": {"_count": 2}, "Godrics": {"_count": 1}, "Hours": {"_count": 1}, "Screamed": {"_count": 1}, "Ignoring": {"_count": 1}, "Alas": {"_count": 1}, "Grindelwald": {"_count": 1}, "Long": {"_count": 1}, "Whoever": {"_count": 1}, "Xenophilius": {"_count": 8}, "Much": {"_count": 1}, "Prove": {"_count": 1}, "History": {"_count": 1}, "\u2018Dont": {"_count": 1}, "\u2018Mayborn": {"_count": 1}, "Excuse": {"_count": 1}, "Sending": {"_count": 1}, "Work": {"_count": 2}, "Hallows": {"_count": 1}, "\u2018The": {"_count": 1}, "Lee": {"_count": 1}, "Vol": {"_count": 1}, "Stung": {"_count": 1}, "rasped": {"_count": 2}, "Penelope": {"_count": 1}, "Nod": {"_count": 1}, "Doh": {"_count": 1}, "Slytherin": {"_count": 1}, "ere": {"_count": 1}, "Lucius": {"_count": 1}, "Stupefyl": {"_count": 1}, "Greyback": {"_count": 1}, "ANSWER": {"_count": 2}, "Griphook": {"_count": 2}, "Painful": {"_count": 1}, "Ollivander": {"_count": 5}, "Priori": {"_count": 1}, "stammered": {"_count": 2}, "Travers": {"_count": 1}, "Ow": {"_count": 1}, "Hide": {"_count": 1}, "Aargh": {"_count": 1}, "Kill": {"_count": 2}, "Pleasant": {"_count": 1}, "Easy": {"_count": 1}, "Sort": {"_count": 1}, "Ariana": {"_count": 1}, "Aberforth": {"_count": 1}, "Free": {"_count": 1}, "shot": {"_count": 1}, "Released": {"_count": 1}, "Room": {"_count": 1}, "Plan": {"_count": 1}, "Daddys": {"_count": 1}, "Ravenclaws": {"_count": 1}, "Alecto": {"_count": 1}, "Amycus": {"_count": 1}, "Protego": {"_count": 1}, "Seen": {"_count": 1}, "Heard": {"_count": 1}, "puffed": {"_count": 1}, "mimicked": {"_count": 1}, "Fiendfyre": {"_count": 1}, "Mustve": {"_count": 1}, "Grawp": {"_count": 1}, "wheezed": {"_count": 1}, "Petunia": {"_count": 2}, "Lily": {"_count": 4}, "Lilys": {"_count": 2}, "Tuney": {"_count": 1}, "James": {"_count": 2}, "Saved": {"_count": 1}, "DONT": {"_count": 1}, "murmured": {"_count": 1}, "Mine": {"_count": 1}, "Lately": {"_count": 1}, "Always": {"_count": 1}, "Terror": {"_count": 1}, "Until": {"_count": 2}, "QUIET": {"_count": 1}, "Chaos": {"_count": 1}, "taunted": {"_count": 1}, "jeered": {"_count": 1}, "Accident": {"_count": 2}, "Accidents": {"_count": 1}, "Love": {"_count": 1}, "Possessing": {"_count": 1}, "Albus": {"_count": 1}, "Snogging": {"_count": 1}}, "!": {"_count": 6934, "He": {"_count": 170}, "The": {"_count": 153}, "But": {"_count": 146}, "Rejoice": {"_count": 1}, "Even": {"_count": 2}, "And": {"_count": 161}, "said": {"_count": 1135}, "Perhaps": {"_count": 2}, "Its": {"_count": 52}, "Hell": {"_count": 9}, "Exactly": {"_count": 3}, "Famous": {"_count": 2}, "Cant": {"_count": 5}, "hissed": {"_count": 4}, "Sssorry": {"_count": 1}, "THE": {"_count": 6}, "Get": {"_count": 13}, "Now": {"_count": 21}, "Harry": {"_count": 437}, "she": {"_count": 154}, "he": {"_count": 234}, "Dudley": {"_count": 7}, "MR": {"_count": 1}, "COME": {"_count": 2}, "YOU": {"_count": 4}, "shouted": {"_count": 96}, "Oh": {"_count": 41}, "They": {"_count": 66}, "demanded": {"_count": 2}, "roared": {"_count": 51}, "Didnt": {"_count": 5}, "yelled": {"_count": 63}, "snapped": {"_count": 15}, "\u2018Mr": {"_count": 1}, "OUT": {"_count": 6}, "Uncle": {"_count": 4}, "Everyone": {"_count": 2}, "It": {"_count": 63}, "A": {"_count": 55}, "There": {"_count": 41}, "Ah": {"_count": 11}, "I": {"_count": 238}, "Did": {"_count": 4}, "knows": {"_count": 1}, "An": {"_count": 10}, "Wizard": {"_count": 1}, "You": {"_count": 115}, "shrieked": {"_count": 33}, "How": {"_count": 39}, "She": {"_count": 61}, "CAR": {"_count": 1}, "Suppose": {"_count": 1}, "Yer": {"_count": 3}, "Nah": {"_count": 3}, "cried": {"_count": 57}, "Griphook": {"_count": 3}, "Dont": {"_count": 19}, "Look": {"_count": 20}, "So": {"_count": 30}, "Rubeus": {"_count": 1}, "Yes": {"_count": 33}, "piped": {"_count": 2}, "Cmere": {"_count": 1}, "With": {"_count": 15}, "their": {"_count": 1}, "Well": {"_count": 63}, "Ron": {"_count": 136}, "Scabbers": {"_count": 1}, "Firs": {"_count": 2}, "All": {"_count": 24}, "Slipping": {"_count": 1}, "Hagrid": {"_count": 34}, "Is": {"_count": 2}, "HUFFLEPUFF": {"_count": 5}, "RAVENCLAW": {"_count": 2}, "Sometimes": {"_count": 2}, "Hermione": {"_count": 136}, "Malfoy": {"_count": 18}, "As": {"_count": 14}, "We": {"_count": 51}, "Before": {"_count": 5}, "Blubber": {"_count": 1}, "Oddment": {"_count": 1}, "Tweak": {"_count": 1}, "Thank": {"_count": 9}, "Best": {"_count": 2}, "What": {"_count": 80}, "barked": {"_count": 19}, "Hes": {"_count": 28}, "snarled": {"_count": 26}, "UP": {"_count": 1}, "everyone": {"_count": 1}, "His": {"_count": 8}, "Ive": {"_count": 26}, "Peeves": {"_count": 1}, "Ducking": {"_count": 1}, "This": {"_count": 28}, "Ha": {"_count": 2}, "Told": {"_count": 3}, "Haa": {"_count": 1}, "For": {"_count": 10}, "Oliver": {"_count": 2}, "squeaked": {"_count": 20}, "Percy": {"_count": 10}, "Stick": {"_count": 1}, "No": {"_count": 43}, "Stay": {"_count": 1}, "Excuse": {"_count": 1}, "Flushed": {"_count": 1}, "Snape": {"_count": 35}, "Thats": {"_count": 24}, "Hermiones": {"_count": 4}, "Sorry": {"_count": 6}, "Gryffindor": {"_count": 5}, "screamed": {"_count": 21}, "Red": {"_count": 2}, "growled": {"_count": 6}, "Youve": {"_count": 16}, "Im": {"_count": 29}, "Wishing": {"_count": 1}, "Hey": {"_count": 5}, "Fred": {"_count": 17}, "and": {"_count": 29}, "Snapes": {"_count": 3}, "George": {"_count": 3}, "Neville": {"_count": 13}, "Are": {"_count": 6}, "Anyone": {"_count": 2}, "Harrys": {"_count": 19}, "Someone": {"_count": 3}, "Where": {"_count": 15}, "Weve": {"_count": 15}, "Everyones": {"_count": 1}, "Norbert": {"_count": 1}, "Wheres": {"_count": 3}, "Brilliant": {"_count": 1}, "Wandering": {"_count": 1}, "Come": {"_count": 19}, "Only": {"_count": 3}, "Bane": {"_count": 1}, "Have": {"_count": 5}, "Firenze": {"_count": 1}, "Of": {"_count": 11}, "If": {"_count": 40}, "SO": {"_count": 1}, "Havent": {"_count": 3}, "Losing": {"_count": 1}, "Voldemort": {"_count": 7}, "whispered": {"_count": 23}, "Broomsticks": {"_count": 1}, "Quirrell": {"_count": 2}, "SEIZE": {"_count": 1}, "screeched": {"_count": 2}, "KILL": {"_count": 2}, "Sir": {"_count": 1}, "Bertie": {"_count": 1}, "Ear": {"_count": 1}, "Madam": {"_count": 3}, "Yeh": {"_count": 1}, "Ill": {"_count": 15}, "sobbed": {"_count": 10}, "VOLDEMORT": {"_count": 1}, "Dumbledore": {"_count": 25}, "Hopefully": {"_count": 1}, "My": {"_count": 17}, "Got": {"_count": 1}, "At": {"_count": 4}, "See": {"_count": 7}, "Still": {"_count": 4}, "sniffed": {"_count": 1}, "howled": {"_count": 5}, "Hurry": {"_count": 2}, "choked": {"_count": 5}, "Bad": {"_count": 2}, "Speak": {"_count": 1}, "Quick": {"_count": 2}, "In": {"_count": 11}, "Say": {"_count": 1}, "Then": {"_count": 10}, "Yours": {"_count": 1}, "HES": {"_count": 3}, "Mrs": {"_count": 20}, "Gerroff": {"_count": 1}, "squealed": {"_count": 22}, "\u2018and": {"_count": 1}, "After": {"_count": 2}, "Your": {"_count": 11}, "Over": {"_count": 3}, "Whats": {"_count": 19}, "When": {"_count": 12}, "from": {"_count": 2}, "the": {"_count": 9}, "Silhouetted": {"_count": 1}, "STOP": {"_count": 2}, "Flying": {"_count": 1}, "\u2018Its": {"_count": 1}, "Pinned": {"_count": 1}, "beamed": {"_count": 4}, "Take": {"_count": 4}, "Wait": {"_count": 2}, "Colin": {"_count": 1}, "Wood": {"_count": 11}, "Marcus": {"_count": 1}, "Lockhart": {"_count": 4}, "Broke": {"_count": 1}, "Id": {"_count": 5}, "Most": {"_count": 2}, "Follow": {"_count": 1}, "on": {"_count": 1}, "Filch": {"_count": 5}, "Kwikspell": {"_count": 1}, "Warlock": {"_count": 1}, "Fascinated": {"_count": 1}, "Why": {"_count": 22}, "MYRTLE": {"_count": 1}, "Ugly": {"_count": 1}, "Miserable": {"_count": 2}, "Something": {"_count": 4}, "Youll": {"_count": 4}, "Hullo": {"_count": 1}, "Signed": {"_count": 1}, "Out": {"_count": 1}, "Indeed": {"_count": 1}, "Such": {"_count": 3}, "Dobby": {"_count": 16}, "Better": {"_count": 1}, "moaned": {"_count": 6}, "breathed": {"_count": 3}, "SILENCE": {"_count": 1}, "Can": {"_count": 9}, "Wouldnt": {"_count": 1}, "called": {"_count": 24}, "Stop": {"_count": 5}, "cackled": {"_count": 3}, "ATTACK": {"_count": 1}, "ANOTHER": {"_count": 1}, "NO": {"_count": 3}, "RUN": {"_count": 1}, "ATTaaCK": {"_count": 1}, "Crash": {"_count": 1}, "Ernie": {"_count": 1}, "Uhoh": {"_count": 1}, "Mopping": {"_count": 1}, "Ten": {"_count": 2}, "Fifty": {"_count": 1}, "Who": {"_count": 10}, "Professor": {"_count": 18}, "Arry": {"_count": 1}, "Ginny": {"_count": 10}, "Stand": {"_count": 3}, "Therell": {"_count": 2}, "Calm": {"_count": 1}, "it": {"_count": 3}, "several": {"_count": 2}, "Mind": {"_count": 1}, "Halfway": {"_count": 1}, "Weasley": {"_count": 2}, "Nick": {"_count": 3}, "Spiders": {"_count": 1}, "Not": {"_count": 10}, "came": {"_count": 8}, "Do": {"_count": 11}, "but": {"_count": 3}, "LEAVE": {"_count": 2}, "SNIFF": {"_count": 1}, "Him": {"_count": 1}, "Amazing": {"_count": 1}, "Sword": {"_count": 1}, "Least": {"_count": 1}, "or": {"_count": 1}, "NEVER": {"_count": 1}, "DONT": {"_count": 2}, "Try": {"_count": 1}, "Love": {"_count": 1}, "Think": {"_count": 1}, "Aunt": {"_count": 5}, "bellowed": {"_count": 26}, "boomed": {"_count": 6}, "Stanley": {"_count": 1}, "Ern": {"_count": 2}, "Stan": {"_count": 1}, "Guess": {"_count": 1}, "Es": {"_count": 1}, "Unless": {"_count": 3}, "HARRY": {"_count": 6}, "Hows": {"_count": 1}, "retorted": {"_count": 1}, "gasped": {"_count": 15}, "Ouch": {"_count": 1}, "Granger": {"_count": 1}, "New": {"_count": 1}, "Woooooooo": {"_count": 1}, "Right": {"_count": 6}, "Bin": {"_count": 2}, "Back": {"_count": 2}, "On": {"_count": 3}, "Yeah": {"_count": 32}, "Coincidence": {"_count": 1}, "That": {"_count": 16}, "Great": {"_count": 4}, "Shut": {"_count": 3}, "Pat": {"_count": 1}, "Feeling": {"_count": 2}, "AN": {"_count": 1}, "LETTIN": {"_count": 1}, "7": {"_count": 1}, "Forward": {"_count": 2}, "Parvati": {"_count": 7}, "becoming": {"_count": 1}, "Dean": {"_count": 4}, "of": {"_count": 2}, "Crookshanks": {"_count": 2}, "Theres": {"_count": 11}, "Remember": {"_count": 2}, "Hi": {"_count": 4}, "Er": {"_count": 7}, "spat": {"_count": 6}, "Sneaking": {"_count": 1}, "About": {"_count": 3}, "Honeydukes": {"_count": 1}, "Lights": {"_count": 1}, "Cmon": {"_count": 1}, "Slytherin": {"_count": 1}, "Give": {"_count": 4}, "Resigned": {"_count": 1}, "Ice": {"_count": 1}, "peppermint": {"_count": 1}, "fragile": {"_count": 1}, "Course": {"_count": 4}, "chimed": {"_count": 1}, "Jus": {"_count": 1}, "Alas": {"_count": 1}, "Lets": {"_count": 6}, "Further": {"_count": 1}, "down": {"_count": 1}, "Scared": {"_count": 1}, "lied": {"_count": 1}, "Presents": {"_count": 1}, "Blimey": {"_count": 6}, "Nothing": {"_count": 2}, "Never": {"_count": 3}, "Which": {"_count": 1}, "Password": {"_count": 2}, "Youd": {"_count": 6}, "Seriously": {"_count": 2}, "Very": {"_count": 5}, "Run": {"_count": 3}, "Lupin": {"_count": 14}, "Listen": {"_count": 7}, "Oddsbodikins": {"_count": 1}, "LOOK": {"_count": 1}, "SCABBERS": {"_count": 1}, "AND": {"_count": 2}, "Just": {"_count": 10}, "Penelope": {"_count": 1}, "Okay": {"_count": 8}, "Potters": {"_count": 2}, "ARE": {"_count": 1}, "Ravenclaw": {"_count": 1}, "Must": {"_count": 2}, "Detention": {"_count": 2}, "NOOOOOOOOOOOOOOOOO": {"_count": 1}, "Sirius": {"_count": 4}, "Slashed": {"_count": 1}, "Woke": {"_count": 2}, "Read": {"_count": 1}, "Pull": {"_count": 1}, "Cold": {"_count": 2}, "Utterly": {"_count": 2}, "Severus": {"_count": 4}, "Were": {"_count": 10}, "Together": {"_count": 2}, "Seamus": {"_count": 4}, "Bed": {"_count": 1}, "Wake": {"_count": 1}, "Huh": {"_count": 1}, "Sall": {"_count": 1}, "Behind": {"_count": 2}, "Argh": {"_count": 1}, "nice": {"_count": 1}, "TENZERO": {"_count": 1}, "Angelina": {"_count": 4}, "Penalty": {"_count": 2}, "SHES": {"_count": 1}, "TWENTYZERO": {"_count": 1}, "Lee": {"_count": 3}, "Relieved": {"_count": 1}, "Montague": {"_count": 1}, "TAKE": {"_count": 1}, "Wont": {"_count": 1}, "SHE": {"_count": 2}, "Go": {"_count": 12}, "Sunset": {"_count": 1}, "CAT": {"_count": 1}, "Too": {"_count": 1}, "HE": {"_count": 2}, "Black": {"_count": 5}, "Youre": {"_count": 12}, "Running": {"_count": 1}, "Thin": {"_count": 1}, "Pettigrew": {"_count": 5}, "Blacks": {"_count": 1}, "Precisely": {"_count": 1}, "whined": {"_count": 1}, "THEN": {"_count": 1}, "One": {"_count": 4}, "Expecto": {"_count": 1}, "Peter": {"_count": 1}, "Minister": {"_count": 1}, "sputtered": {"_count": 1}, "Someones": {"_count": 2}, "From": {"_count": 4}, "Nobodys": {"_count": 1}, "Gone": {"_count": 1}, "Bless": {"_count": 1}, "Beaky": {"_count": 1}, "Buckbeak": {"_count": 1}, "Lupins": {"_count": 1}, "THIS": {"_count": 1}, "Fudge": {"_count": 7}, "puffed": {"_count": 1}, "Dad": {"_count": 3}, "Dear": {"_count": 1}, "Frank": {"_count": 1}, "Nobody": {"_count": 3}, "Outside": {"_count": 1}, "Mr": {"_count": 16}, "Rons": {"_count": 5}, "Tall": {"_count": 1}, "raged": {"_count": 1}, "Empty": {"_count": 2}, "Two": {"_count": 3}, "Shouldnt": {"_count": 1}, "Parents": {"_count": 1}, "Ludo": {"_count": 2}, "Bagman": {"_count": 12}, "Could": {"_count": 1}, "Mermish": {"_count": 1}, "Barty": {"_count": 2}, "4": {"_count": 1}, "Straight": {"_count": 1}, "": {"_count": 5}, "Welcome": {"_count": 1}, "Next": {"_count": 1}, "Levski": {"_count": 3}, "Vulchanov": {"_count": 1}, "Volkov": {"_count": 1}, "aand": {"_count": 2}, "Ryan": {"_count": 1}, "Troy": {"_count": 3}, "Mullet": {"_count": 1}, "Moran": {"_count": 3}, "Quigley": {"_count": 1}, "Dimitrov": {"_count": 2}, "Ivanova": {"_count": 1}, "Charlie": {"_count": 4}, "echoed": {"_count": 1}, "Ministry": {"_count": 1}, "Half": {"_count": 3}, "Veil": {"_count": 1}, "Bill": {"_count": 1}, "Winky": {"_count": 7}, "one": {"_count": 1}, "Voldemorts": {"_count": 3}, "Unconscious": {"_count": 1}, "Shed": {"_count": 2}, "Amos": {"_count": 1}, "repeated": {"_count": 1}, "Urgent": {"_count": 1}, "First": {"_count": 2}, "Wheeeeeeeeee": {"_count": 1}, "Keep": {"_count": 5}, "SLYTHERIN": {"_count": 2}, "Cauldwell": {"_count": 1}, "Creevey": {"_count": 1}, "Tiny": {"_count": 1}, "Cool": {"_count": 1}, "Wow": {"_count": 2}, "Dennis": {"_count": 1}, "became": {"_count": 1}, "joined": {"_count": 1}, "Quirke": {"_count": 1}, "Slave": {"_count": 1}, "Chocolate": {"_count": 1}, "Chop": {"_count": 1}, "Thought": {"_count": 1}, "Oooh": {"_count": 2}, "FURTHER": {"_count": 1}, "Several": {"_count": 1}, "Moody": {"_count": 4}, "Or": {"_count": 4}, "Our": {"_count": 5}, "Theyll": {"_count": 2}, "Miss": {"_count": 3}, "Students": {"_count": 3}, "Viktor": {"_count": 1}, "Thanks": {"_count": 3}, "Without": {"_count": 1}, "Up": {"_count": 1}, "Gentlemen": {"_count": 1}, "Krums": {"_count": 1}, "Somewhere": {"_count": 1}, "exploded": {"_count": 1}, "Ze": {"_count": 1}, "Maybe": {"_count": 10}, "Jealous": {"_count": 1}, "Champion": {"_count": 1}, "Isn": {"_count": 2}, "Whos": {"_count": 2}, "Goodo": {"_count": 1}, "Fleur": {"_count": 2}, "they": {"_count": 1}, "Careful": {"_count": 1}, "Applause": {"_count": 1}, "Theyre": {"_count": 7}, "while": {"_count": 1}, "Rita": {"_count": 1}, "Shell": {"_count": 1}, "Hogwarts": {"_count": 1}, "Ashamed": {"_count": 1}, "Will": {"_count": 1}, "Like": {"_count": 2}, "Leave": {"_count": 2}, "Her": {"_count": 4}, "Said": {"_count": 1}, "Pigwidgeons": {"_count": 1}, "Isnt": {"_count": 2}, "Pigwidgeon": {"_count": 1}, "Against": {"_count": 1}, "People": {"_count": 2}, "To": {"_count": 6}, "Karkaroffs": {"_count": 1}, "as": {"_count": 4}, "Anuzzer": {"_count": 1}, "Alfgiant": {"_count": 1}, "before": {"_count": 1}, "at": {"_count": 2}, "Crabbe": {"_count": 2}, "Everything": {"_count": 1}, "Silly": {"_count": 1}, "Breaking": {"_count": 1}, "School": {"_count": 1}, "Somebody": {"_count": 1}, "Prowl": {"_count": 1}, "Mine": {"_count": 1}, "Potter": {"_count": 5}, "Meaning": {"_count": 2}, "Interesting": {"_count": 1}, "Chos": {"_count": 1}, "Gabrielle": {"_count": 1}, "Pansy": {"_count": 1}, "Shes": {"_count": 6}, "Anything": {"_count": 1}, "whimpered": {"_count": 2}, "scoffed": {"_count": 1}, "Hate": {"_count": 1}, "Krum": {"_count": 1}, "Lie": {"_count": 2}, "Karkaroff": {"_count": 1}, "Coulda": {"_count": 1}, "Tryin": {"_count": 1}, "then": {"_count": 2}, "Once": {"_count": 2}, "Cockroach": {"_count": 1}, "Mulciber": {"_count": 2}, "Rookwood": {"_count": 1}, "Old": {"_count": 1}, "Mother": {"_count": 2}, "Throw": {"_count": 1}, "Crouch": {"_count": 1}, "Father": {"_count": 3}, "Potteri": {"_count": 1}, "Let": {"_count": 6}, "Tied": {"_count": 1}, "More": {"_count": 2}, "Riddikulusl": {"_count": 1}, "Ers": {"_count": 1}, "Cedric": {"_count": 2}, "Impedimenta": {"_count": 1}, "Stupefy": {"_count": 1}, "Forgive": {"_count": 2}, "ImperioV": {"_count": 1}, "HarryV": {"_count": 2}, "Dead": {"_count": 1}, "Mad": {"_count": 2}, "Good": {"_count": 11}, "wailed": {"_count": 6}, "Headmaster": {"_count": 1}, "blustered": {"_count": 1}, "Lord": {"_count": 1}, "Lucius": {"_count": 3}, "Avery": {"_count": 1}, "These": {"_count": 4}, "Insane": {"_count": 1}, "Mudbloods": {"_count": 1}, "Nope": {"_count": 1}, "Anyway": {"_count": 5}, "Mary": {"_count": 1}, "Again": {"_count": 1}, "Help": {"_count": 3}, "Boo": {"_count": 1}, "\u2018Come": {"_count": 1}, "Mum": {"_count": 3}, "YOURE": {"_count": 1}, "WHATEVER": {"_count": 1}, "Wand": {"_count": 1}, "Dementors": {"_count": 3}, "Diddy": {"_count": 2}, "Phone": {"_count": 1}, "FINE": {"_count": 1}, "Owls": {"_count": 1}, "Itll": {"_count": 1}, "Hedwigs": {"_count": 1}, "Time": {"_count": 1}, "YOUVE": {"_count": 1}, "ME": {"_count": 1}, "Scum": {"_count": 1}, "Byproducts": {"_count": 1}, "interrupted": {"_count": 3}, "Personally": {"_count": 1}, "Perkins": {"_count": 1}, "Those": {"_count": 1}, "Breathing": {"_count": 2}, "Beaming": {"_count": 1}, "gulped": {"_count": 1}, "Harnessed": {"_count": 1}, "Nice": {"_count": 2}, "Midgets": {"_count": 1}, "someone": {"_count": 2}, "Pocket": {"_count": 1}, "groaned": {"_count": 2}, "sang": {"_count": 2}, "Rain": {"_count": 1}, "Rubbish": {"_count": 1}, "Luna": {"_count": 5}, "Itd": {"_count": 1}, "Katies": {"_count": 1}, "Five": {"_count": 1}, "Another": {"_count": 5}, "Wha": {"_count": 1}, "Excellent": {"_count": 1}, "Cho": {"_count": 2}, "GEORGE": {"_count": 1}, "1VO": {"_count": 1}, "Explain": {"_count": 1}, "exclaimed": {"_count": 1}, "Yehre": {"_count": 1}, "Didn": {"_count": 1}, "Don": {"_count": 1}, "stormed": {"_count": 1}, "Umbridge": {"_count": 4}, "Harryl": {"_count": 1}, "Phineas": {"_count": 1}, "PHINEAS": {"_count": 1}, "Shall": {"_count": 1}, "Easy": {"_count": 1}, "KREACHER": {"_count": 1}, "Young": {"_count": 1}, "Their": {"_count": 1}, "Gilderoy": {"_count": 1}, "Whove": {"_count": 1}, "OCCLUMENCY": {"_count": 1}, "Manners": {"_count": 1}, "Master": {"_count": 1}, "Legilimens": {"_count": 1}, "Surely": {"_count": 2}, "Pperhaps": {"_count": 1}, "Meanwhile": {"_count": 1}, "HHogwarts": {"_count": 1}, "Lavender": {"_count": 1}, "Comprehension": {"_count": 1}, "Blatant": {"_count": 1}, "Be": {"_count": 3}, "Enough": {"_count": 1}, "Shacklebolt": {"_count": 1}, "Wise": {"_count": 1}, "wheezed": {"_count": 3}, "Please": {"_count": 7}, "Acciol": {"_count": 1}, "James": {"_count": 8}, "Certainly": {"_count": 2}, "Lily": {"_count": 2}, "Messing": {"_count": 1}, "By": {"_count": 4}, "Special": {"_count": 1}, "Harmless": {"_count": 1}, "Grawps": {"_count": 1}, "YEH": {"_count": 1}, "Magorian": {"_count": 1}, "Always": {"_count": 5}, "HERMIONE": {"_count": 4}, "WE": {"_count": 2}, "Alone": {"_count": 1}, "Outrageous": {"_count": 1}, "COWARDS": {"_count": 1}, "HAVE": {"_count": 1}, "Cowardice": {"_count": 1}, "WELL": {"_count": 1}, "Really": {"_count": 4}, "Ththat": {"_count": 1}, "Uncontrolled": {"_count": 1}, "HERMY": {"_count": 1}, "GRAWP": {"_count": 1}, "mimicked": {"_count": 1}, "Bellatrix": {"_count": 3}, "bawled": {"_count": 2}, "croaked": {"_count": 3}, "ACCIO": {"_count": 1}, "gibbered": {"_count": 1}, "in": {"_count": 1}, "great": {"_count": 1}, "Cornelius": {"_count": 1}, "Williamson": {"_count": 1}, "Kreacher": {"_count": 3}, "NICK": {"_count": 2}, "declared": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Narcissa": {"_count": 4}, "\u2018Present": {"_count": 1}, "Consider": {"_count": 1}, "Shame": {"_count": 2}, "Gracious": {"_count": 1}, "Arthur": {"_count": 2}, "Eet": {"_count": 1}, "Theyve": {"_count": 2}, "Today": {"_count": 1}, "grinned": {"_count": 1}, "\u2018Patented": {"_count": 1}, "Shh": {"_count": 1}, "Fantastic": {"_count": 1}, "Slughorn": {"_count": 3}, "chuckled": {"_count": 1}, "Zabini": {"_count": 1}, "Raising": {"_count": 1}, "chortled": {"_count": 1}, "fumed": {"_count": 1}, "\u2018One": {"_count": 1}, "Here": {"_count": 3}, "Hope": {"_count": 1}, "Merope": {"_count": 1}, "Summons": {"_count": 1}, "Know": {"_count": 1}, "Generations": {"_count": 1}, "rang": {"_count": 1}, "Open": {"_count": 1}, "\u2018Tm": {"_count": 1}, "Momentarily": {"_count": 1}, "Dangling": {"_count": 1}, "Glad": {"_count": 1}, "Nicked": {"_count": 1}, "Somethings": {"_count": 1}, "Leanne": {"_count": 1}, "Both": {"_count": 1}, "Hark": {"_count": 1}, "Smith": {"_count": 1}, "Felix": {"_count": 1}, "Wondered": {"_count": 1}, "Befouled": {"_count": 1}, "Potty": {"_count": 1}, "HermioneV": {"_count": 1}, "hiccuped": {"_count": 1}, "Some": {"_count": 1}, "Trapped": {"_count": 1}, "Report": {"_count": 1}, "jeered": {"_count": 1}, "Celestina": {"_count": 1}, "Arent": {"_count": 1}, "fluttered": {"_count": 1}, "Hmm": {"_count": 1}, "Each": {"_count": 1}, "Quickly": {"_count": 1}, "Golpalotts": {"_count": 1}, "Annoyed": {"_count": 1}, "Inside": {"_count": 1}, "Blaise": {"_count": 1}, "Step": {"_count": 1}, "McLaggen": {"_count": 2}, "giving": {"_count": 1}, "pouted": {"_count": 1}, "Tonks": {"_count": 3}, "Fiftyseventh": {"_count": 1}, "Though": {"_count": 1}, "yelped": {"_count": 2}, "Because": {"_count": 2}, "Imagine": {"_count": 1}, "Thatll": {"_count": 1}, "MURDER": {"_count": 2}, "Four": {"_count": 1}, "Dumbledores": {"_count": 1}, "protested": {"_count": 2}, "Make": {"_count": 2}, "Drink": {"_count": 1}, "Ingenious": {"_count": 1}, "sneered": {"_count": 2}, "Gulping": {"_count": 1}, "ejaculated": {"_count": 1}, "laughs": {"_count": 1}, "Skeeter": {"_count": 1}, "Sixteen": {"_count": 1}, "that": {"_count": 1}, "added": {"_count": 1}, "House": {"_count": 1}, "Dudleys": {"_count": 1}, "spluttered": {"_count": 1}, "Change": {"_count": 1}, "because": {"_count": 1}, "REPAROl": {"_count": 1}, "how": {"_count": 1}, "Hold": {"_count": 2}, "Crashed": {"_count": 1}, "Knocking": {"_count": 1}, "Le": {"_count": 1}, "Stans": {"_count": 1}, "Expelliarmus": {"_count": 2}, "would": {"_count": 1}, "6": {"_count": 1}, "Monsieur": {"_count": 1}, "trilled": {"_count": 1}, "s": {"_count": 3}, "Actually": {"_count": 1}, "Although": {"_count": 1}, "Snothin": {"_count": 1}, "Dyou": {"_count": 3}, "Gnome": {"_count": 1}, "Nowhere": {"_count": 1}, "Hello": {"_count": 2}, "Doge": {"_count": 3}, "Illinformed": {"_count": 1}, "Muriell": {"_count": 1}, "Untrue": {"_count": 1}, "Kendra": {"_count": 1}, "Bathilda": {"_count": 1}, "Diffindol": {"_count": 1}, "Gingerly": {"_count": 1}, "Otherwise": {"_count": 1}, "Tell": {"_count": 2}, "RON": {"_count": 1}, "Unable": {"_count": 1}, "Remus": {"_count": 1}, "\u2018Merlins": {"_count": 1}, "sighed": {"_count": 1}, "Abandoning": {"_count": 1}, "Clearly": {"_count": 1}, "Yaxley": {"_count": 2}, "Tut": {"_count": 1}, "SEAL": {"_count": 1}, "YOUKNOWWHO": {"_count": 1}, "shot": {"_count": 1}, "Remove": {"_count": 2}, "Slightly": {"_count": 1}, "Goblinmade": {"_count": 1}, "Disapparated": {"_count": 1}, "Long": {"_count": 2}, "RReparo": {"_count": 1}, "Ritas": {"_count": 1}, "Risk": {"_count": 1}, "Weeks": {"_count": 1}, "Bolstered": {"_count": 1}, "Using": {"_count": 1}, "Many": {"_count": 1}, "to": {"_count": 1}, "Homenum": {"_count": 1}, "Cave": {"_count": 1}, "Serves": {"_count": 1}, "Marvolo": {"_count": 1}, "Gaunt": {"_count": 1}, "Ignotus": {"_count": 1}, "Nearly": {"_count": 1}, "Roused": {"_count": 1}, "burst": {"_count": 2}, "muttered": {"_count": 2}, "demorts": {"_count": 1}, "MALFOY": {"_count": 1}, "rasped": {"_count": 2}, "Greyback": {"_count": 2}, "Ere": {"_count": 1}, "laughed": {"_count": 1}, "CRUCIO": {"_count": 1}, "Footsteps": {"_count": 1}, "Panting": {"_count": 1}, "Wizards": {"_count": 1}, "Gringotts": {"_count": 1}, "answered": {"_count": 1}, "Oo": {"_count": 1}, "Congratulations": {"_count": 1}, "Imperiol": {"_count": 1}, "Lumosl": {"_count": 1}, "Thieves": {"_count": 2}, "murmured": {"_count": 1}, "Stag": {"_count": 1}, "Brains": {"_count": 1}, "Save": {"_count": 2}, "Aberforth": {"_count": 2}, "Kept": {"_count": 1}, "Hermionel": {"_count": 1}, "Nevilles": {"_count": 1}, "Lunas": {"_count": 1}, "Amyous": {"_count": 1}, "Garn": {"_count": 1}, "\u2018Got": {"_count": 1}, "Beneath": {"_count": 1}, "Flitwicks": {"_count": 1}, "COWARD": {"_count": 1}, "Find": {"_count": 1}, "PPeeves": {"_count": 1}, "Clattering": {"_count": 1}, "Ginnys": {"_count": 1}, "While": {"_count": 1}, "Beyond": {"_count": 1}, "Cruciol": {"_count": 1}, "Avada": {"_count": 1}, "Pushing": {"_count": 1}, "Draco": {"_count": 1}, "Somehow": {"_count": 1}, "panted": {"_count": 1}, "Petunia": {"_count": 1}, "a": {"_count": 1}, "Swear": {"_count": 1}, "Lots": {"_count": 1}, "Real": {"_count": 1}, "Was": {"_count": 1}, "True": {"_count": 1}, "Watch": {"_count": 1}, "CrucioV": {"_count": 1}, "Hagrids": {"_count": 1}, "iVo": {"_count": 1}, "Set": {"_count": 1}, "Fight": {"_count": 4}, "Hundreds": {"_count": 1}, "were": {"_count": 1}, "Holding": {"_count": 1}, "Teddy": {"_count": 1}}}, ".": {"_count": 67793, "They": {"_count": 1270, "were": {"_count": 197}, "didnt": {"_count": 32}, "ate": {"_count": 2}, "werent": {"_count": 5}, "stuff": {"_count": 1}, "also": {"_count": 5}, "heard": {"_count": 18}, "could": {"_count": 33}, "drove": {"_count": 1}, "had": {"_count": 124}, "knocked": {"_count": 3}, "snapped": {"_count": 1}, "settled": {"_count": 2}, "say": {"_count": 13}, "wanted": {"_count": 5}, "passed": {"_count": 12}, "stepped": {"_count": 4}, "climbed": {"_count": 8}, "went": {"_count": 19}, "stopped": {"_count": 4}, "bought": {"_count": 3}, "reached": {"_count": 12}, "leaned": {"_count": 2}, "havent": {"_count": 4}, "crammed": {"_count": 1}, "walked": {"_count": 33}, "followed": {"_count": 11}, "crowded": {"_count": 1}, "seemed": {"_count": 12}, "all": {"_count": 32}, "finally": {"_count": 1}, "both": {"_count": 11}, "pulled": {"_count": 6}, "hadnt": {"_count": 4}, "flitted": {"_count": 1}, "sped": {"_count": 3}, "edged": {"_count": 2}, "fell": {"_count": 4}, "scrambled": {"_count": 1}, "left": {"_count": 12}, "reminded": {"_count": 1}, "shrank": {"_count": 1}, "hurried": {"_count": 14}, "oughta": {"_count": 1}, "dropped": {"_count": 2}, "sat": {"_count": 11}, "frogmarched": {"_count": 1}, "couldnt": {"_count": 8}, "tried": {"_count": 1}, "piled": {"_count": 1}, "spent": {"_count": 7}, "looked": {"_count": 25}, "found": {"_count": 10}, "would": {"_count": 7}, "showed": {"_count": 2}, "slipped": {"_count": 4}, "marched": {"_count": 4}, "inched": {"_count": 1}, "made": {"_count": 10}, "must": {"_count": 6}, "stared": {"_count": 8}, "turned": {"_count": 12}, "dont": {"_count": 10}, "tugged": {"_count": 1}, "watched": {"_count": 10}, "each": {"_count": 2}, "grabbed": {"_count": 2}, "landed": {"_count": 3}, "nodded": {"_count": 1}, "moved": {"_count": 13}, "died": {"_count": 2}, "however": {"_count": 1}, "lets": {"_count": 1}, "let": {"_count": 6}, "got": {"_count": 5}, "love": {"_count": 1}, "took": {"_count": 6}, "set": {"_count": 8}, "said": {"_count": 8}, "know": {"_count": 3}, "heaved": {"_count": 1}, "entered": {"_count": 2}, "are": {"_count": 16}, "managed": {"_count": 4}, "shut": {"_count": 1}, "squirmed": {"_count": 1}, "finished": {"_count": 3}, "reported": {"_count": 1}, "approached": {"_count": 2}, "and": {"_count": 1}, "backed": {"_count": 1}, "built": {"_count": 1}, "couldve": {"_count": 1}, "only": {"_count": 3}, "still": {"_count": 2}, "rose": {"_count": 1}, "can": {"_count": 6}, "lurked": {"_count": 1}, "stood": {"_count": 9}, "poked": {"_count": 1}, "saw": {"_count": 6}, "will": {"_count": 9}, "told": {"_count": 3}, "woke": {"_count": 1}, "wont": {"_count": 7}, "might": {"_count": 7}, "listened": {"_count": 1}, "waited": {"_count": 5}, "think": {"_count": 6}, "believed": {"_count": 1}, "thought": {"_count": 2}, "smashed": {"_count": 1}, "ran": {"_count": 5}, "hid": {"_count": 1}, "sent": {"_count": 2}, "examined": {"_count": 1}, "froze": {"_count": 1}, "strode": {"_count": 2}, "played": {"_count": 1}, "turn": {"_count": 2}, "belonged": {"_count": 1}, "ad": {"_count": 1}, "headed": {"_count": 2}, "loaded": {"_count": 1}, "sell": {"_count": 1}, "illuminated": {"_count": 1}, "waved": {"_count": 1}, "exchanged": {"_count": 3}, "knew": {"_count": 7}, "suck": {"_count": 1}, "swilled": {"_count": 1}, "see": {"_count": 2}, "should": {"_count": 4}, "wouldnt": {"_count": 3}, "reckon": {"_count": 2}, "make": {"_count": 1}, "popped": {"_count": 1}, "planted": {"_count": 1}, "have": {"_count": 7}, "infest": {"_count": 1}, "joined": {"_count": 4}, "drank": {"_count": 1}, "paced": {"_count": 1}, "cant": {"_count": 8}, "was": {"_count": 2}, "simply": {"_count": 1}, "skulked": {"_count": 1}, "mustn": {"_count": 1}, "started": {"_count": 1}, "did": {"_count": 16}, "became": {"_count": 1}, "sneaked": {"_count": 1}, "transformed": {"_count": 1}, "feel": {"_count": 1}, "pelted": {"_count": 1}, "formed": {"_count": 1}, "obviously": {"_count": 3}, "tore": {"_count": 1}, "flattened": {"_count": 2}, "rode": {"_count": 1}, "run": {"_count": 1}, "glanced": {"_count": 2}, "11": {"_count": 1}, "saved": {"_count": 1}, "dressed": {"_count": 1}, "trudged": {"_count": 3}, "spread": {"_count": 2}, "clambered": {"_count": 2}, "worked": {"_count": 1}, "denied": {"_count": 1}, "want": {"_count": 7}, "then": {"_count": 1}, "appeared": {"_count": 2}, "shared": {"_count": 1}, "come": {"_count": 2}, "get": {"_count": 2}, "need": {"_count": 1}, "caught": {"_count": 1}, "returned": {"_count": 5}, "continued": {"_count": 2}, "": {"_count": 3}, "like": {"_count": 3}, "filed": {"_count": 2}, "scanned": {"_count": 1}, "look": {"_count": 2}, "organized": {"_count": 1}, "consequently": {"_count": 1}, "placed": {"_count": 1}, "now": {"_count": 2}, "kept": {"_count": 1}, "picked": {"_count": 1}, "hide": {"_count": 1}, "prefer": {"_count": 1}, "hammered": {"_count": 1}, "leered": {"_count": 1}, "squeezed": {"_count": 1}, "lose": {"_count": 1}, "used": {"_count": 4}, "wreck": {"_count": 1}, "hastily": {"_count": 1}, "trooped": {"_count": 2}, "do": {"_count": 5}, "seem": {"_count": 1}, "glided": {"_count": 2}, "came": {"_count": 1}, "gave": {"_count": 1}, "sensed": {"_count": 2}, "shot": {"_count": 2}, "murmured": {"_count": 2}, "broke": {"_count": 1}, "altered": {"_count": 1}, "just": {"_count": 2}, "keep": {"_count": 1}, "struggled": {"_count": 1}, "shuffled": {"_count": 1}, "lit": {"_count": 1}, "descended": {"_count": 2}, "collected": {"_count": 2}, "may": {"_count": 1}, "fitted": {"_count": 1}, "flew": {"_count": 2}, "really": {"_count": 1}, "squelched": {"_count": 1}, "received": {"_count": 2}, "too": {"_count": 1}, "crept": {"_count": 6}, "beamed": {"_count": 1}, "carried": {"_count": 2}, "mostly": {"_count": 1}, "glared": {"_count": 1}, "faced": {"_count": 1}, "sounded": {"_count": 1}, "multiply": {"_count": 1}, "ask": {"_count": 1}, "exploded": {"_count": 1}, "never": {"_count": 1}, "stretched": {"_count": 1}, "traipsed": {"_count": 1}, "brought": {"_count": 2}, "tossed": {"_count": 1}, "glimmered": {"_count": 1}, "mightve": {"_count": 1}, "streaked": {"_count": 1}, "hate": {"_count": 1}, "proceeded": {"_count": 1}, "scurried": {"_count": 1}, "peered": {"_count": 1}, "even": {"_count": 1}, "float": {"_count": 1}, "avoided": {"_count": 1}, "chose": {"_count": 1}, "probably": {"_count": 2}, "won": {"_count": 1}, "bundled": {"_count": 1}, "rounded": {"_count": 1}, "rely": {"_count": 1}, "overwork": {"_count": 1}, "deposited": {"_count": 1}, "laid": {"_count": 1}, "crossed": {"_count": 1}, "met": {"_count": 1}, "visited": {"_count": 2}, "rubbed": {"_count": 1}, "recognized": {"_count": 1}, "recounted": {"_count": 1}, "vanished": {"_count": 1}, "shook": {"_count": 1}, "half": {"_count": 1}, "raced": {"_count": 1}, "combed": {"_count": 1}, "burned": {"_count": 1}, "darent": {"_count": 1}, "nearly": {"_count": 1}, "gulped": {"_count": 1}, "spun": {"_count": 1}, "shouldnt": {"_count": 2}, "drew": {"_count": 1}, "packed": {"_count": 2}, "relished": {"_count": 1}, "waded": {"_count": 1}, "certainly": {"_count": 1}, "gazed": {"_count": 1}, "explained": {"_count": 1}, "put": {"_count": 1}, "jumped": {"_count": 1}, "remained": {"_count": 1}, "consider": {"_count": 1}, "advanced": {"_count": 1}, "changed": {"_count": 1}, "paused": {"_count": 1}, "forced": {"_count": 1}, "what": {"_count": 1}, "parted": {"_count": 1}, "crawled": {"_count": 1}, "guard": {"_count": 1}, "sneak": {"_count": 1}, "resembled": {"_count": 1}, "smiled": {"_count": 1}}, "Mr": {"_count": 214, "Dursley": {"_count": 13}, "Ollivander": {"_count": 17}, "Flamel": {"_count": 1}, "Filch": {"_count": 5}, "Potter": {"_count": 3}, "Ronald": {"_count": 1}, "Vernon": {"_count": 1}, "Mason": {"_count": 1}, "Weasley": {"_count": 74}, "Weasleys": {"_count": 8}, "Malfoy": {"_count": 11}, "Borgin": {"_count": 1}, "Angus": {"_count": 1}, "Lucius": {"_count": 2}, "Moony": {"_count": 1}, "Prongs": {"_count": 1}, "Padfoot": {"_count": 1}, "Wormtail": {"_count": 1}, "Crouch": {"_count": 28}, "Roberts": {"_count": 2}, "Malfoys": {"_count": 2}, "Crouchs": {"_count": 4}, "Diggory": {"_count": 7}, "Diggorys": {"_count": 2}, "Bagman": {"_count": 6}, "Potters": {"_count": 1}, "Slinkhard": {"_count": 1}, "Finnigan": {"_count": 1}, "Gaunt": {"_count": 3}, "Shunpike": {"_count": 1}, "Burke": {"_count": 2}, "Tonks": {"_count": 1}, "and": {"_count": 4}, "Doge": {"_count": 1}, "Lovegood": {"_count": 4}, "Dumbledore": {"_count": 1}}, "He": {"_count": 4787, "was": {"_count": 613}, "got": {"_count": 43}, "drummed": {"_count": 2}, "didnt": {"_count": 67}, "yelled": {"_count": 2}, "made": {"_count": 17}, "eyed": {"_count": 1}, "looked": {"_count": 202}, "dashed": {"_count": 6}, "put": {"_count": 28}, "found": {"_count": 11}, "had": {"_count": 439}, "also": {"_count": 10}, "hurried": {"_count": 14}, "cleared": {"_count": 7}, "decided": {"_count": 5}, "couldnt": {"_count": 40}, "chuckled": {"_count": 2}, "flicked": {"_count": 4}, "clicked": {"_count": 5}, "turned": {"_count": 98}, "never": {"_count": 12}, "went": {"_count": 13}, "does": {"_count": 7}, "fell": {"_count": 6}, "bent": {"_count": 17}, "laid": {"_count": 3}, "could": {"_count": 182}, "rolled": {"_count": 10}, "wore": {"_count": 6}, "always": {"_count": 8}, "liked": {"_count": 3}, "shuffled": {"_count": 2}, "wouldnt": {"_count": 10}, "managed": {"_count": 4}, "thought": {"_count": 52}, "sat": {"_count": 29}, "handed": {"_count": 7}, "gave": {"_count": 28}, "took": {"_count": 57}, "mustnt": {"_count": 1}, "stole": {"_count": 3}, "shouted": {"_count": 4}, "stayed": {"_count": 3}, "hummed": {"_count": 1}, "drove": {"_count": 1}, "tried": {"_count": 37}, "shivered": {"_count": 1}, "lay": {"_count": 12}, "hoped": {"_count": 3}, "strode": {"_count": 17}, "meant": {"_count": 1}, "held": {"_count": 20}, "passed": {"_count": 10}, "pulled": {"_count": 51}, "threw": {"_count": 19}, "came": {"_count": 12}, "cast": {"_count": 8}, "usually": {"_count": 3}, "remembers": {"_count": 1}, "tapped": {"_count": 5}, "grinned": {"_count": 7}, "bowed": {"_count": 1}, "did": {"_count": 94}, "stroked": {"_count": 3}, "works": {"_count": 3}, "told": {"_count": 15}, "shook": {"_count": 8}, "measured": {"_count": 1}, "felt": {"_count": 90}, "raised": {"_count": 38}, "wasnt": {"_count": 26}, "paid": {"_count": 1}, "bought": {"_count": 1}, "checked": {"_count": 2}, "left": {"_count": 11}, "stopped": {"_count": 10}, "wondered": {"_count": 24}, "pushed": {"_count": 17}, "started": {"_count": 10}, "wriggled": {"_count": 2}, "glanced": {"_count": 34}, "pointed": {"_count": 12}, "seemed": {"_count": 35}, "finally": {"_count": 2}, "might": {"_count": 20}, "rummaged": {"_count": 3}, "waved": {"_count": 6}, "flopped": {"_count": 1}, "supposed": {"_count": 11}, "says": {"_count": 16}, "and": {"_count": 50}, "kept": {"_count": 29}, "heard": {"_count": 30}, "remembered": {"_count": 15}, "waited": {"_count": 13}, "seized": {"_count": 12}, "teaches": {"_count": 1}, "would": {"_count": 40}, "spoke": {"_count": 6}, "ignored": {"_count": 2}, "swept": {"_count": 4}, "let": {"_count": 16}, "grunted": {"_count": 1}, "complained": {"_count": 1}, "opened": {"_count": 20}, "hadnt": {"_count": 9}, "mounted": {"_count": 3}, "leaned": {"_count": 9}, "wanted": {"_count": 45}, "caught": {"_count": 13}, "thinks": {"_count": 6}, "bolted": {"_count": 1}, "showed": {"_count": 6}, "understood": {"_count": 2}, "then": {"_count": 14}, "crossed": {"_count": 5}, "wiped": {"_count": 5}, "wished": {"_count": 16}, "limped": {"_count": 2}, "knocked": {"_count": 3}, "sprinted": {"_count": 5}, "glared": {"_count": 3}, "gripped": {"_count": 4}, "stared": {"_count": 30}, "Ron": {"_count": 14}, "unwrapped": {"_count": 1}, "suspected": {"_count": 3}, "slipped": {"_count": 7}, "crept": {"_count": 2}, "walked": {"_count": 36}, "set": {"_count": 14}, "stumbled": {"_count": 6}, "backed": {"_count": 4}, "squeezed": {"_count": 2}, "stepped": {"_count": 13}, "whirled": {"_count": 1}, "reached": {"_count": 18}, "tore": {"_count": 2}, "must": {"_count": 16}, "said": {"_count": 34}, "recognized": {"_count": 8}, "followed": {"_count": 9}, "flew": {"_count": 4}, "glided": {"_count": 1}, "climbed": {"_count": 7}, "steadied": {"_count": 1}, "asked": {"_count": 9}, "probably": {"_count": 3}, "ushered": {"_count": 1}, "really": {"_count": 7}, "knew": {"_count": 80}, "half": {"_count": 2}, "led": {"_count": 10}, "flung": {"_count": 6}, "paced": {"_count": 2}, "nearly": {"_count": 3}, "watched": {"_count": 16}, "saw": {"_count": 36}, "received": {"_count": 1}, "sent": {"_count": 4}, "pocketed": {"_count": 2}, "ran": {"_count": 19}, "narrowed": {"_count": 1}, "lowered": {"_count": 9}, "landed": {"_count": 1}, "expected": {"_count": 6}, "rammed": {"_count": 1}, "himself": {"_count": 2}, "is": {"_count": 31}, "has": {"_count": 32}, "punished": {"_count": 1}, "clapped": {"_count": 4}, "closed": {"_count": 17}, "lies": {"_count": 2}, "blinked": {"_count": 4}, "realized": {"_count": 3}, "exchanged": {"_count": 2}, "missed": {"_count": 2}, "gazed": {"_count": 7}, "hasnt": {"_count": 6}, "jumped": {"_count": 5}, "shooed": {"_count": 1}, "dreamed": {"_count": 2}, "hates": {"_count": 2}, "takes": {"_count": 2}, "knows": {"_count": 9}, "carried": {"_count": 3}, "mopped": {"_count": 1}, "wants": {"_count": 7}, "straightened": {"_count": 3}, "dropped": {"_count": 14}, "stood": {"_count": 31}, "thrust": {"_count": 5}, "barely": {"_count": 4}, "wheeled": {"_count": 3}, "began": {"_count": 9}, "now": {"_count": 4}, "swallowed": {"_count": 7}, "just": {"_count": 10}, "guards": {"_count": 1}, "soared": {"_count": 1}, "didn": {"_count": 1}, "retched": {"_count": 2}, "winked": {"_count": 2}, "gritted": {"_count": 1}, "retrieved": {"_count": 2}, "peered": {"_count": 5}, "paused": {"_count": 13}, "believed": {"_count": 4}, "disliked": {"_count": 1}, "broke": {"_count": 4}, "scrawled": {"_count": 1}, "focused": {"_count": 1}, "should": {"_count": 7}, "blew": {"_count": 2}, "slumped": {"_count": 2}, "crumpled": {"_count": 1}, "tells": {"_count": 2}, "brandished": {"_count": 2}, "lived": {"_count": 3}, "cant": {"_count": 16}, "flipped": {"_count": 2}, "grabbed": {"_count": 5}, "read": {"_count": 10}, "banged": {"_count": 2}, "loves": {"_count": 4}, "shifted": {"_count": 1}, "mustve": {"_count": 6}, "sounds": {"_count": 2}, "continued": {"_count": 9}, "sighed": {"_count": 5}, "wouldn": {"_count": 1}, "poured": {"_count": 2}, "entered": {"_count": 2}, "even": {"_count": 5}, "scanned": {"_count": 3}, "persuaded": {"_count": 1}, "laughed": {"_count": 2}, "Harry": {"_count": 5}, "looks": {"_count": 8}, "disappeared": {"_count": 3}, "nodded": {"_count": 8}, "crashed": {"_count": 1}, "replaced": {"_count": 1}, "picked": {"_count": 14}, "helped": {"_count": 2}, "pines": {"_count": 1}, "forced": {"_count": 9}, "emptied": {"_count": 1}, "kicked": {"_count": 5}, "fumbled": {"_count": 2}, "suddenly": {"_count": 5}, "murdered": {"_count": 1}, "placed": {"_count": 5}, "drew": {"_count": 7}, "tramped": {"_count": 1}, "been": {"_count": 1}, "used": {"_count": 8}, "needs": {"_count": 2}, "hesitated": {"_count": 11}, "scowled": {"_count": 3}, "jerked": {"_count": 2}, "strolled": {"_count": 1}, "wont": {"_count": 3}, "clanked": {"_count": 1}, "emerged": {"_count": 2}, "consulted": {"_count": 2}, "hardly": {"_count": 2}, "untied": {"_count": 2}, "patted": {"_count": 2}, "swaggered": {"_count": 1}, "trickled": {"_count": 1}, "smirked": {"_count": 4}, "becomes": {"_count": 1}, "seems": {"_count": 4}, "dresses": {"_count": 1}, "accompanied": {"_count": 1}, "considered": {"_count": 1}, "drank": {"_count": 2}, "smiled": {"_count": 4}, "couldve": {"_count": 2}, "revived": {"_count": 1}, "lost": {"_count": 1}, "doubted": {"_count": 4}, "slid": {"_count": 2}, "folded": {"_count": 2}, "edged": {"_count": 1}, "advised": {"_count": 1}, "loved": {"_count": 4}, "doesnt": {"_count": 10}, "positively": {"_count": 1}, "racked": {"_count": 1}, "therefore": {"_count": 11}, "screwed": {"_count": 4}, "deserves": {"_count": 1}, "bit": {"_count": 2}, "only": {"_count": 8}, "dived": {"_count": 4}, "accelerated": {"_count": 2}, "stretched": {"_count": 9}, "approached": {"_count": 5}, "too": {"_count": 6}, "brought": {"_count": 4}, "settled": {"_count": 3}, "slithered": {"_count": 1}, "assigned": {"_count": 1}, "killed": {"_count": 6}, "fought": {"_count": 1}, "especially": {"_count": 1}, "can": {"_count": 8}, "muttered": {"_count": 1}, "hung": {"_count": 1}, "leapt": {"_count": 7}, "spun": {"_count": 2}, "explained": {"_count": 1}, "betrayed": {"_count": 3}, "certainly": {"_count": 3}, "ripped": {"_count": 2}, "likes": {"_count": 5}, "examined": {"_count": 2}, "concentrated": {"_count": 1}, "amused": {"_count": 1}, "noticed": {"_count": 3}, "unfolded": {"_count": 2}, "moved": {"_count": 13}, "annoys": {"_count": 1}, "failed": {"_count": 3}, "retreated": {"_count": 1}, "Disapparated": {"_count": 3}, "played": {"_count": 2}, "hoisted": {"_count": 2}, "speaks": {"_count": 3}, "ended": {"_count": 2}, "no": {"_count": 2}, "heaved": {"_count": 6}, "bustled": {"_count": 2}, "neither": {"_count": 2}, "spotted": {"_count": 3}, "sprang": {"_count": 1}, "acknowledged": {"_count": 1}, "surveyed": {"_count": 1}, "stumped": {"_count": 4}, "fancies": {"_count": 1}, "hastened": {"_count": 2}, "wrenched": {"_count": 5}, "will": {"_count": 22}, "chanced": {"_count": 3}, "twirled": {"_count": 1}, "gathered": {"_count": 2}, "lifted": {"_count": 2}, "ate": {"_count": 1}, "returned": {"_count": 4}, "finished": {"_count": 1}, "needed": {"_count": 4}, "spent": {"_count": 3}, "swung": {"_count": 4}, "shot": {"_count": 4}, "nudged": {"_count": 1}, "squared": {"_count": 1}, "er": {"_count": 1}, "still": {"_count": 3}, "strained": {"_count": 2}, "surely": {"_count": 1}, "offered": {"_count": 1}, "shouldnt": {"_count": 2}, "snapped": {"_count": 1}, "sank": {"_count": 3}, "lurched": {"_count": 1}, "imagined": {"_count": 3}, "pictured": {"_count": 1}, "avoided": {"_count": 2}, "twisted": {"_count": 1}, "swam": {"_count": 3}, "whipped": {"_count": 1}, "appeared": {"_count": 3}, "snatched": {"_count": 3}, "fixed": {"_count": 1}, "attempted": {"_count": 2}, "plunged": {"_count": 1}, "repressed": {"_count": 1}, "tipped": {"_count": 2}, "keeps": {"_count": 4}, "rose": {"_count": 1}, "died": {"_count": 6}, "transformed": {"_count": 2}, "enclosed": {"_count": 1}, "reminded": {"_count": 2}, "attacked": {"_count": 1}, "clambered": {"_count": 2}, "definitely": {"_count": 2}, "mentioned": {"_count": 1}, "yawned": {"_count": 1}, "marched": {"_count": 3}, "preferred": {"_count": 3}, "motioned": {"_count": 1}, "often": {"_count": 1}, "cannot": {"_count": 2}, "summoned": {"_count": 1}, "clutched": {"_count": 3}, "shut": {"_count": 2}, "met": {"_count": 6}, "weighed": {"_count": 1}, "merely": {"_count": 4}, "sounded": {"_count": 5}, "staggered": {"_count": 2}, "caressed": {"_count": 1}, "extended": {"_count": 2}, "pressed": {"_count": 4}, "flexed": {"_count": 1}, "scrambled": {"_count": 3}, "sought": {"_count": 2}, "overpowered": {"_count": 1}, "remained": {"_count": 5}, "forgave": {"_count": 1}, "agreed": {"_count": 2}, "searched": {"_count": 1}, "dismissed": {"_count": 1}, "arrived": {"_count": 2}, "tortured": {"_count": 2}, "became": {"_count": 2}, "insisted": {"_count": 1}, "witnessed": {"_count": 1}, "rocked": {"_count": 1}, "stuck": {"_count": 2}, "crammed": {"_count": 1}, "suffered": {"_count": 1}, "guessed": {"_count": 2}, "risked": {"_count": 1}, "vos": {"_count": 1}, "shuddered": {"_count": 1}, "registered": {"_count": 1}, "": {"_count": 3}, "addressed": {"_count": 3}, "applied": {"_count": 1}, "accepts": {"_count": 2}, "messed": {"_count": 1}, "tricks": {"_count": 1}, "ducked": {"_count": 2}, "pinned": {"_count": 1}, "beckoned": {"_count": 1}, "extricated": {"_count": 1}, "ought": {"_count": 5}, "awoke": {"_count": 1}, "dug": {"_count": 2}, "dumped": {"_count": 1}, "isnt": {"_count": 1}, "filed": {"_count": 1}, "stuffed": {"_count": 2}, "reckons": {"_count": 1}, "underlined": {"_count": 1}, "skipped": {"_count": 1}, "comes": {"_count": 1}, "indicated": {"_count": 2}, "pretended": {"_count": 4}, "bounded": {"_count": 1}, "regained": {"_count": 1}, "gestured": {"_count": 2}, "touched": {"_count": 2}, "zoomed": {"_count": 1}, "whacked": {"_count": 1}, "tasted": {"_count": 1}, "reared": {"_count": 1}, "sloped": {"_count": 1}, "wishes": {"_count": 2}, "rubbed": {"_count": 3}, "trudged": {"_count": 1}, "simply": {"_count": 2}, "drained": {"_count": 2}, "publishes": {"_count": 1}, "unrolled": {"_count": 1}, "rested": {"_count": 1}, "relinquished": {"_count": 1}, "swished": {"_count": 1}, "sometimes": {"_count": 1}, "scooped": {"_count": 1}, "cursed": {"_count": 1}, "shrugged": {"_count": 3}, "tilted": {"_count": 2}, "hurtled": {"_count": 3}, "inserted": {"_count": 1}, "crouched": {"_count": 4}, "grew": {"_count": 1}, "smashed": {"_count": 1}, "however": {"_count": 1}, "don": {"_count": 2}, "forgot": {"_count": 1}, "jogged": {"_count": 1}, "knelt": {"_count": 1}, "inhaled": {"_count": 1}, "stooped": {"_count": 3}, "regretted": {"_count": 1}, "stands": {"_count": 1}, "dodged": {"_count": 3}, "darted": {"_count": 2}, "tugged": {"_count": 3}, "struggled": {"_count": 2}, "aimed": {"_count": 1}, "burst": {"_count": 3}, "he": {"_count": 2}, "like": {"_count": 1}, "alerted": {"_count": 1}, "delegated": {"_count": 1}, "regarded": {"_count": 1}, "shed": {"_count": 2}, "discovered": {"_count": 1}, "chose": {"_count": 4}, "couldn": {"_count": 1}, "desisted": {"_count": 1}, "somehow": {"_count": 1}, "froze": {"_count": 1}, "lives": {"_count": 1}, "calls": {"_count": 1}, "inclined": {"_count": 1}, "trusts": {"_count": 1}, "twiddled": {"_count": 2}, "enjoys": {"_count": 2}, "taught": {"_count": 2}, "groped": {"_count": 1}, "slit": {"_count": 1}, "Ginny": {"_count": 1}, "invited": {"_count": 1}, "refused": {"_count": 2}, "soon": {"_count": 2}, "squinted": {"_count": 2}, "as": {"_count": 1}, "stomped": {"_count": 2}, "rarely": {"_count": 1}, "swilled": {"_count": 1}, "swore": {"_count": 1}, "punched": {"_count": 2}, "claims": {"_count": 1}, "peeled": {"_count": 1}, "regards": {"_count": 1}, "plans": {"_count": 1}, "called": {"_count": 1}, "accepted": {"_count": 1}, "wrote": {"_count": 1}, "accused": {"_count": 1}, "come": {"_count": 1}, "admitted": {"_count": 1}, "sniffed": {"_count": 1}, "licked": {"_count": 1}, "turfed": {"_count": 1}, "chortled": {"_count": 1}, "tumbled": {"_count": 1}, "pondered": {"_count": 1}, "refilled": {"_count": 1}, "corked": {"_count": 1}, "hid": {"_count": 2}, "brushed": {"_count": 1}, "very": {"_count": 1}, "supported": {"_count": 2}, "skidded": {"_count": 3}, "gasped": {"_count": 1}, "questioned": {"_count": 1}, "hated": {"_count": 2}, "gulped": {"_count": 2}, "launched": {"_count": 1}, "pelted": {"_count": 1}, "obeyed": {"_count": 1}, "immobilized": {"_count": 1}, "sped": {"_count": 1}, "despised": {"_count": 1}, "confessed": {"_count": 1}, "not": {"_count": 1}, "dabbled": {"_count": 1}, "bloomed": {"_count": 1}, "crawled": {"_count": 1}, "uncorked": {"_count": 1}, "gaped": {"_count": 1}, "chased": {"_count": 1}, "swooped": {"_count": 1}, "retired": {"_count": 1}, "smoothed": {"_count": 1}, "swayed": {"_count": 1}, "filled": {"_count": 1}, "headed": {"_count": 1}, "frowned": {"_count": 1}, "shoved": {"_count": 1}, "prodded": {"_count": 1}, "added": {"_count": 1}, "dragged": {"_count": 1}, "venerated": {"_count": 1}, "recounted": {"_count": 1}, "rushed": {"_count": 1}, "stowed": {"_count": 1}, "riffled": {"_count": 1}, "represents": {"_count": 1}, "changed": {"_count": 1}, "shared": {"_count": 1}, "woke": {"_count": 1}, "stirred": {"_count": 1}, "spread": {"_count": 2}, "blamed": {"_count": 1}, "experienced": {"_count": 1}, "resolved": {"_count": 1}, "bared": {"_count": 1}, "prowled": {"_count": 1}, "cut": {"_count": 1}, "selected": {"_count": 1}, "redoubled": {"_count": 1}, "disapproves": {"_count": 1}, "whispered": {"_count": 1}, "learned": {"_count": 1}, "writhed": {"_count": 1}, "already": {"_count": 1}, "allowed": {"_count": 1}, "slowed": {"_count": 1}, "tracked": {"_count": 1}, "forged": {"_count": 1}, "hit": {"_count": 1}, "yearned": {"_count": 1}, "flapped": {"_count": 1}, "envied": {"_count": 1}, "loped": {"_count": 1}, "vanished": {"_count": 1}, "lied": {"_count": 1}, "believes": {"_count": 1}, "directed": {"_count": 1}}, "Mrs": {"_count": 131, "Dursley": {"_count": 5}, "Potter": {"_count": 1}, "Figgs": {"_count": 1}, "Figg": {"_count": 6}, "Norris": {"_count": 6}, "Weasley": {"_count": 91}, "Mason": {"_count": 1}, "Skowers": {"_count": 1}, "Norriss": {"_count": 1}, "Weasleys": {"_count": 3}, "Diggory": {"_count": 1}, "Blacks": {"_count": 2}, "Finnigan": {"_count": 1}, "Cole": {"_count": 4}, "Coles": {"_count": 1}, "Cattermole": {"_count": 4}, "Cattermoles": {"_count": 1}, "Miss": {"_count": 1}}, "The": {"_count": 3124, "Dursley": {"_count": 2}, "Dursleys": {"_count": 32}, "traffic": {"_count": 1}, "Potters": {"_count": 3}, "cat": {"_count": 2}, "newscaster": {"_count": 1}, "cats": {"_count": 2}, "nearest": {"_count": 5}, "rumor": {"_count": 3}, "sun": {"_count": 16}, "room": {"_count": 32}, "table": {"_count": 3}, "only": {"_count": 49}, "whole": {"_count": 33}, "problem": {"_count": 5}, "harder": {"_count": 1}, "snake": {"_count": 14}, "great": {"_count": 8}, "keeper": {"_count": 1}, "weirdest": {"_count": 1}, "rest": {"_count": 21}, "poor": {"_count": 2}, "tub": {"_count": 1}, "monthold": {"_count": 1}, "repaired": {"_count": 1}, "woman": {"_count": 4}, "same": {"_count": 10}, "Great": {"_count": 11}, "inside": {"_count": 3}, "storm": {"_count": 1}, "lighted": {"_count": 1}, "giant": {"_count": 8}, "noise": {"_count": 3}, "anger": {"_count": 2}, "hut": {"_count": 1}, "owl": {"_count": 9}, "sky": {"_count": 19}, "boat": {"_count": 2}, "people": {"_count": 4}, "low": {"_count": 1}, "old": {"_count": 14}, "brick": {"_count": 1}, "goblin": {"_count": 14}, "rattling": {"_count": 1}, "gold": {"_count": 2}, "air": {"_count": 11}, "last": {"_count": 18}, "very": {"_count": 11}, "pile": {"_count": 1}, "wand": {"_count": 4}, "late": {"_count": 1}, "train": {"_count": 11}, "guard": {"_count": 3}, "speaker": {"_count": 3}, "thing": {"_count": 18}, "first": {"_count": 26}, "boy": {"_count": 12}, "two": {"_count": 14}, "youngest": {"_count": 3}, "oldest": {"_count": 2}, "door": {"_count": 55}, "twins": {"_count": 8}, "Weasleys": {"_count": 6}, "countryside": {"_count": 1}, "neat": {"_count": 1}, "rat": {"_count": 3}, "toadless": {"_count": 1}, "firs": {"_count": 1}, "entrance": {"_count": 8}, "stone": {"_count": 6}, "startofterm": {"_count": 1}, "Sorting": {"_count": 11}, "four": {"_count": 9}, "hundreds": {"_count": 1}, "hat": {"_count": 5}, "ghost": {"_count": 3}, "pumpkin": {"_count": 1}, "dishes": {"_count": 1}, "others": {"_count": 7}, "hooknosed": {"_count": 1}, "pain": {"_count": 11}, "hall": {"_count": 5}, "Bloody": {"_count": 2}, "ghosts": {"_count": 1}, "students": {"_count": 5}, "class": {"_count": 14}, "rock": {"_count": 1}, "vault": {"_count": 3}, "Slytherins": {"_count": 13}, "Remembrall": {"_count": 1}, "boys": {"_count": 6}, "most": {"_count": 4}, "Fat": {"_count": 6}, "passwords": {"_count": 1}, "crystal": {"_count": 1}, "minutes": {"_count": 3}, "clanging": {"_count": 2}, "forbidden": {"_count": 1}, "dog": {"_count": 3}, "Nimbus": {"_count": 1}, "Chasers": {"_count": 1}, "Bludgers": {"_count": 1}, "castle": {"_count": 9}, "feast": {"_count": 2}, "smell": {"_count": 5}, "troll": {"_count": 6}, "keys": {"_count": 1}, "shouting": {"_count": 1}, "common": {"_count": 6}, "mountains": {"_count": 1}, "Quidditch": {"_count": 4}, "day": {"_count": 7}, "Gryffindor": {"_count": 13}, "next": {"_count": 8}, "seats": {"_count": 2}, "big": {"_count": 1}, "one": {"_count": 18}, "Weasley": {"_count": 3}, "afternoons": {"_count": 2}, "lake": {"_count": 6}, "few": {"_count": 4}, "library": {"_count": 3}, "white": {"_count": 6}, "Restricted": {"_count": 2}, "lamp": {"_count": 1}, "hairs": {"_count": 2}, "dark": {"_count": 7}, "tall": {"_count": 1}, "reflections": {"_count": 1}, "snow": {"_count": 5}, "happiest": {"_count": 1}, "Mirror": {"_count": 1}, "what": {"_count": 4}, "Stone": {"_count": 1}, "idea": {"_count": 15}, "stands": {"_count": 1}, "evening": {"_count": 1}, "trees": {"_count": 3}, "Ministry": {"_count": 29}, "egg": {"_count": 1}, "baby": {"_count": 3}, "following": {"_count": 6}, "clock": {"_count": 2}, "cut": {"_count": 3}, "moon": {"_count": 4}, "forest": {"_count": 4}, "three": {"_count": 13}, "cloaked": {"_count": 1}, "hooded": {"_count": 2}, "quicker": {"_count": 1}, "blood": {"_count": 1}, "unicorns": {"_count": 1}, "planets": {"_count": 1}, "books": {"_count": 2}, "other": {"_count": 29}, "passageway": {"_count": 2}, "moment": {"_count": 40}, "horse": {"_count": 2}, "chessmen": {"_count": 2}, "smallest": {"_count": 2}, "feeling": {"_count": 2}, "evil": {"_count": 1}, "Snitch": {"_count": 9}, "smiling": {"_count": 1}, "truth": {"_count": 6}, "points": {"_count": 1}, "babble": {"_count": 2}, "din": {"_count": 2}, "effect": {"_count": 5}, "Masons": {"_count": 1}, "huge": {"_count": 3}, "trouble": {"_count": 6}, "little": {"_count": 13}, "elf": {"_count": 11}, "pudding": {"_count": 1}, "catflap": {"_count": 1}, "soup": {"_count": 1}, "car": {"_count": 10}, "Misuse": {"_count": 1}, "edge": {"_count": 1}, "kitchen": {"_count": 6}, "garden": {"_count": 2}, "Chudley": {"_count": 1}, "new": {"_count": 10}, "right": {"_count": 2}, "soot": {"_count": 1}, "sooner": {"_count": 3}, "man": {"_count": 23}, "name": {"_count": 4}, "teachers": {"_count": 6}, "vaults": {"_count": 1}, "bag": {"_count": 1}, "reason": {"_count": 3}, "real": {"_count": 6}, "crowd": {"_count": 22}, "company": {"_count": 2}, "assistant": {"_count": 1}, "tricky": {"_count": 1}, "metal": {"_count": 2}, "trains": {"_count": 1}, "wheels": {"_count": 1}, "toffees": {"_count": 1}, "nose": {"_count": 2}, "tree": {"_count": 4}, "shadowy": {"_count": 2}, "fireplace": {"_count": 1}, "red": {"_count": 3}, "Mandrake": {"_count": 1}, "cry": {"_count": 1}, "leaves": {"_count": 2}, "Howler": {"_count": 1}, "Mandrakes": {"_count": 1}, "pixies": {"_count": 1}, "bell": {"_count": 11}, "cool": {"_count": 2}, "Slytherin": {"_count": 8}, "smug": {"_count": 1}, "Gryffindors": {"_count": 8}, "candles": {"_count": 2}, "steam": {"_count": 2}, "firelight": {"_count": 1}, "sight": {"_count": 6}, "temperature": {"_count": 2}, "dungeon": {"_count": 5}, "squat": {"_count": 1}, "Wailing": {"_count": 1}, "orchestra": {"_count": 1}, "assembly": {"_count": 1}, "horses": {"_count": 1}, "voice": {"_count": 2}, "chatter": {"_count": 1}, "silent": {"_count": 2}, "tip": {"_count": 3}, "photographs": {"_count": 3}, "attack": {"_count": 3}, "story": {"_count": 5}, "heir": {"_count": 1}, "scene": {"_count": 5}, "corridor": {"_count": 3}, "floor": {"_count": 8}, "team": {"_count": 5}, "rain": {"_count": 8}, "Bludger": {"_count": 1}, "family": {"_count": 2}, "question": {"_count": 3}, "Chamber": {"_count": 3}, "holidays": {"_count": 1}, "firework": {"_count": 1}, "long": {"_count": 4}, "ceiling": {"_count": 6}, "words": {"_count": 12}, "Hufflepuffs": {"_count": 3}, "result": {"_count": 1}, "walls": {"_count": 10}, "office": {"_count": 5}, "double": {"_count": 1}, "Polyjuice": {"_count": 3}, "potion": {"_count": 5}, "labyrinthine": {"_count": 1}, "fact": {"_count": 9}, "culprit": {"_count": 1}, "dwarf": {"_count": 1}, "diary": {"_count": 6}, "ink": {"_count": 1}, "monster": {"_count": 3}, "pages": {"_count": 2}, "wizard": {"_count": 12}, "torches": {"_count": 1}, "dead": {"_count": 3}, "least": {"_count": 1}, "second": {"_count": 14}, "time": {"_count": 4}, "contents": {"_count": 3}, "bedclothes": {"_count": 1}, "teams": {"_count": 1}, "journey": {"_count": 7}, "stranger": {"_count": 4}, "Herbology": {"_count": 1}, "centaurs": {"_count": 5}, "forests": {"_count": 1}, "sides": {"_count": 1}, "massive": {"_count": 1}, "body": {"_count": 1}, "creature": {"_count": 6}, "exams": {"_count": 2}, "basilisk": {"_count": 5}, "water": {"_count": 3}, "flood": {"_count": 1}, "more": {"_count": 6}, "crowing": {"_count": 1}, "Heir": {"_count": 1}, "staffroom": {"_count": 2}, "Heads": {"_count": 5}, "tunnel": {"_count": 3}, "light": {"_count": 8}, "adventure": {"_count": 1}, "serpents": {"_count": 1}, "hollow": {"_count": 1}, "music": {"_count": 3}, "bird": {"_count": 1}, "longer": {"_count": 4}, "enormous": {"_count": 2}, "snakes": {"_count": 3}, "basilisks": {"_count": 1}, "Memory": {"_count": 1}, "governors": {"_count": 1}, "elfs": {"_count": 1}, "Dark": {"_count": 28}, "Hogwarts": {"_count": 9}, "quill": {"_count": 2}, "witch": {"_count": 5}, "fight": {"_count": 1}, "silence": {"_count": 11}, "eyes": {"_count": 2}, "clipping": {"_count": 1}, "book": {"_count": 6}, "Monster": {"_count": 2}, "public": {"_count": 1}, "reporter": {"_count": 1}, "memory": {"_count": 3}, "Hogsmeade": {"_count": 1}, "Handbook": {"_count": 1}, "cupboard": {"_count": 1}, "Knight": {"_count": 4}, "Minister": {"_count": 6}, "Decree": {"_count": 2}, "Azkaban": {"_count": 1}, "snowy": {"_count": 1}, "Firebolt": {"_count": 2}, "manager": {"_count": 1}, "doubleended": {"_count": 1}, "witchs": {"_count": 1}, "Ministrys": {"_count": 7}, "guards": {"_count": 2}, "parlor": {"_count": 1}, "bottle": {"_count": 2}, "badge": {"_count": 1}, "compartment": {"_count": 1}, "cold": {"_count": 7}, "coach": {"_count": 1}, "carriage": {"_count": 1}, "thought": {"_count": 6}, "shouts": {"_count": 1}, "shelves": {"_count": 1}, "heavily": {"_count": 2}, "falcon": {"_count": 1}, "club": {"_count": 1}, "skull": {"_count": 1}, "Grim": {"_count": 1}, "Grims": {"_count": 1}, "talons": {"_count": 1}, "hippogriffs": {"_count": 1}, "hippogriff": {"_count": 5}, "grass": {"_count": 1}, "Muggles": {"_count": 2}, "end": {"_count": 2}, "charm": {"_count": 2}, "wardrobe": {"_count": 5}, "banshee": {"_count": 2}, "legless": {"_count": 1}, "point": {"_count": 6}, "weather": {"_count": 10}, "form": {"_count": 1}, "Halloween": {"_count": 1}, "portrait": {"_count": 7}, "trick": {"_count": 2}, "grindylow": {"_count": 1}, "empty": {"_count": 5}, "post": {"_count": 3}, "food": {"_count": 2}, "lights": {"_count": 1}, "school": {"_count": 5}, "theories": {"_count": 1}, "third": {"_count": 10}, "snout": {"_count": 1}, "wind": {"_count": 5}, "Captains": {"_count": 1}, "lightning": {"_count": 2}, "horrible": {"_count": 1}, "Whomping": {"_count": 2}, "dementors": {"_count": 18}, "fortress": {"_count": 1}, "tiniest": {"_count": 1}, "word": {"_count": 2}, "passage": {"_count": 2}, "worst": {"_count": 4}, "information": {"_count": 1}, "murder": {"_count": 1}, "dormitory": {"_count": 5}, "Forbidden": {"_count": 3}, "hearing": {"_count": 1}, "trip": {"_count": 1}, "Pocket": {"_count": 1}, "Sneakoscope": {"_count": 2}, "firstyear": {"_count": 1}, "boggart": {"_count": 1}, "spell": {"_count": 9}, "incantation": {"_count": 1}, "lamps": {"_count": 3}, "dementor": {"_count": 3}, "classroom": {"_count": 3}, "match": {"_count": 3}, "Ravenclaw": {"_count": 1}, "note": {"_count": 1}, "minuscule": {"_count": 1}, "owls": {"_count": 4}, "opportunity": {"_count": 1}, "resemblance": {"_count": 1}, "parchment": {"_count": 2}, "safety": {"_count": 1}, "fates": {"_count": 1}, "Inner": {"_count": 3}, "Easter": {"_count": 1}, "enmity": {"_count": 1}, "grounds": {"_count": 4}, "sound": {"_count": 10}, "tiny": {"_count": 6}, "Committee": {"_count": 1}, "line": {"_count": 1}, "wandlight": {"_count": 2}, "windows": {"_count": 2}, "waxy": {"_count": 1}, "taunt": {"_count": 1}, "seconds": {"_count": 1}, "Professor": {"_count": 1}, "Marauders": {"_count": 1}, "bedroom": {"_count": 3}, "Shrieking": {"_count": 2}, "screams": {"_count": 2}, "villagers": {"_count": 2}, "jokes": {"_count": 1}, "biggest": {"_count": 1}, "night": {"_count": 6}, "difference": {"_count": 1}, "yelping": {"_count": 1}, "blinding": {"_count": 1}, "screaming": {"_count": 2}, "shadows": {"_count": 2}, "execution": {"_count": 1}, "footsteps": {"_count": 1}, "executioner": {"_count": 2}, "cabin": {"_count": 1}, "Patronus": {"_count": 4}, "Kiss": {"_count": 1}, "Daily": {"_count": 5}, "sweltering": {"_count": 1}, "stag": {"_count": 2}, "grindylows": {"_count": 1}, "exam": {"_count": 1}, "minute": {"_count": 2}, "Little": {"_count": 1}, "maid": {"_count": 1}, "Hanged": {"_count": 1}, "police": {"_count": 2}, "doctors": {"_count": 1}, "Riddles": {"_count": 1}, "wealthy": {"_count": 2}, "front": {"_count": 6}, "fire": {"_count": 6}, "place": {"_count": 7}, "the": {"_count": 1}, "servant": {"_count": 2}, "dim": {"_count": 1}, "pictures": {"_count": 1}, "home": {"_count": 1}, "diet": {"_count": 1}, "doorbell": {"_count": 3}, "postman": {"_count": 1}, "mustache": {"_count": 1}, "atmosphere": {"_count": 7}, "imminent": {"_count": 1}, "electric": {"_count": 1}, "source": {"_count": 2}, "top": {"_count": 5}, "Department": {"_count": 1}, "field": {"_count": 2}, "tents": {"_count": 1}, "picture": {"_count": 4}, "parting": {"_count": 1}, "Bulgarians": {"_count": 1}, "miniature": {"_count": 1}, "stairs": {"_count": 4}, "Bluebottle": {"_count": 1}, "box": {"_count": 2}, "Malfoys": {"_count": 3}, "veela": {"_count": 2}, "speed": {"_count": 1}, "Beaters": {"_count": 2}, "game": {"_count": 1}, "scoreboard": {"_count": 1}, "Irish": {"_count": 1}, "noises": {"_count": 1}, "singing": {"_count": 2}, "floating": {"_count": 1}, "colored": {"_count": 1}, "girl": {"_count": 9}, "Wimbourne": {"_count": 1}, "way": {"_count": 2}, "person": {"_count": 2}, "terror": {"_count": 1}, "thick": {"_count": 2}, "lunch": {"_count": 1}, "tips": {"_count": 1}, "coat": {"_count": 1}, "rip": {"_count": 1}, "usual": {"_count": 8}, "largest": {"_count": 1}, "buzz": {"_count": 2}, "full": {"_count": 3}, "corners": {"_count": 1}, "mouth": {"_count": 1}, "blue": {"_count": 1}, "tension": {"_count": 1}, "Triwizard": {"_count": 4}, "schools": {"_count": 1}, "heads": {"_count": 1}, "delegations": {"_count": 1}, "championsll": {"_count": 1}, "females": {"_count": 1}, "best": {"_count": 6}, "familiar": {"_count": 1}, "movements": {"_count": 2}, "perfumed": {"_count": 1}, "ferret": {"_count": 1}, "Imperius": {"_count": 2}, "Cruciatus": {"_count": 3}, "spiders": {"_count": 1}, "use": {"_count": 2}, "letter": {"_count": 3}, "Owlery": {"_count": 2}, "Blast": {"_count": 1}, "suits": {"_count": 1}, "size": {"_count": 2}, "Durmstrang": {"_count": 3}, "Beauxbatons": {"_count": 2}, "tournament": {"_count": 1}, "plates": {"_count": 1}, "houseelves": {"_count": 5}, "instructions": {"_count": 1}, "champions": {"_count": 6}, "lid": {"_count": 1}, "goblet": {"_count": 3}, "placing": {"_count": 1}, "color": {"_count": 1}, "Aging": {"_count": 1}, "decorations": {"_count": 1}, "gigantic": {"_count": 1}, "elephantine": {"_count": 1}, "look": {"_count": 3}, "Goblet": {"_count": 3}, "flames": {"_count": 1}, "champion": {"_count": 2}, "buzzing": {"_count": 1}, "faces": {"_count": 2}, "wizened": {"_count": 2}, "blast": {"_count": 1}, "prospect": {"_count": 4}, "pair": {"_count": 3}, "skrewts": {"_count": 1}, "closest": {"_count": 1}, "injustice": {"_count": 2}, "experts": {"_count": 1}, "Weighing": {"_count": 1}, "hornbeam": {"_count": 1}, "photographer": {"_count": 1}, "shock": {"_count": 3}, "article": {"_count": 2}, "days": {"_count": 1}, "Three": {"_count": 2}, "back": {"_count": 6}, "large": {"_count": 3}, "Creevey": {"_count": 1}, "dragon": {"_count": 4}, "Death": {"_count": 22}, "Firebolts": {"_count": 1}, "main": {"_count": 1}, "Horntails": {"_count": 2}, "Horntail": {"_count": 1}, "tent": {"_count": 2}, "start": {"_count": 2}, "Yule": {"_count": 2}, "pale": {"_count": 2}, "thirdyear": {"_count": 1}, "oak": {"_count": 4}, "House": {"_count": 2}, "fifth": {"_count": 4}, "Weird": {"_count": 3}, "enemy": {"_count": 1}, "creation": {"_count": 1}, "handful": {"_count": 1}, "pub": {"_count": 2}, "goblins": {"_count": 3}, "curtains": {"_count": 4}, "incomprehensible": {"_count": 1}, "Invisibility": {"_count": 1}, "map": {"_count": 3}, "wailing": {"_count": 1}, "golden": {"_count": 5}, "torchlight": {"_count": 1}, "momentary": {"_count": 1}, "excited": {"_count": 1}, "tasks": {"_count": 1}, "part": {"_count": 1}, "merpeople": {"_count": 2}, "ropes": {"_count": 1}, "merman": {"_count": 1}, "sharkman": {"_count": 1}, "judges": {"_count": 1}, "brown": {"_count": 1}, "moving": {"_count": 1}, "winding": {"_count": 1}, "cottages": {"_count": 1}, "black": {"_count": 4}, "Aurors": {"_count": 4}, "conclusion": {"_count": 1}, "Lestranges": {"_count": 2}, "elves": {"_count": 1}, "cheery": {"_count": 1}, "nifflers": {"_count": 1}, "leprechaun": {"_count": 1}, "Wronski": {"_count": 1}, "knees": {"_count": 1}, "password": {"_count": 1}, "wall": {"_count": 3}, "less": {"_count": 1}, "many": {"_count": 1}, "headmaster": {"_count": 6}, "grin": {"_count": 1}, "eyelid": {"_count": 1}, "Ministryll": {"_count": 1}, "topmost": {"_count": 1}, "dimly": {"_count": 1}, "fumes": {"_count": 1}, "gargoyle": {"_count": 3}, "patched": {"_count": 1}, "sword": {"_count": 11}, "silvery": {"_count": 4}, "surface": {"_count": 5}, "basin": {"_count": 2}, "watching": {"_count": 2}, "witches": {"_count": 1}, "jury": {"_count": 1}, "wispy": {"_count": 1}, "thoughts": {"_count": 1}, "years": {"_count": 1}, "Longbottoms": {"_count": 1}, "attacks": {"_count": 1}, "mood": {"_count": 1}, "towering": {"_count": 2}, "maze": {"_count": 1}, "path": {"_count": 3}, "sleeve": {"_count": 1}, "silver": {"_count": 10}, "world": {"_count": 1}, "cup": {"_count": 2}, "skrewt": {"_count": 1}, "quickest": {"_count": 1}, "short": {"_count": 1}, "bundle": {"_count": 1}, "liquid": {"_count": 2}, "diamond": {"_count": 1}, "cauldron": {"_count": 1}, "thin": {"_count": 2}, "scar": {"_count": 5}, "tortured": {"_count": 1}, "shiver": {"_count": 1}, "direction": {"_count": 1}, "closer": {"_count": 1}, "shadow": {"_count": 2}, "smoky": {"_count": 1}, "faithless": {"_count": 1}, "foggy": {"_count": 1}, "spellbooks": {"_count": 1}, "imposter": {"_count": 2}, "scars": {"_count": 2}, "mans": {"_count": 4}, "houseelf": {"_count": 7}, "ones": {"_count": 4}, "bond": {"_count": 2}, "smile": {"_count": 4}, "insane": {"_count": 2}, "phoenix": {"_count": 3}, "wands": {"_count": 1}, "Reverse": {"_count": 1}, "": {"_count": 1}, "skin": {"_count": 2}, "plan": {"_count": 3}, "recollections": {"_count": 1}, "carriagesll": {"_count": 1}, "opening": {"_count": 1}, "park": {"_count": 1}, "streetlamps": {"_count": 1}, "figure": {"_count": 4}, "noble": {"_count": 1}, "effort": {"_count": 1}, "star": {"_count": 1}, "distant": {"_count": 1}, "balmy": {"_count": 1}, "scrupulously": {"_count": 1}, "severity": {"_count": 1}, "vein": {"_count": 1}, "miserable": {"_count": 1}, "arrival": {"_count": 2}, "furious": {"_count": 1}, "letters": {"_count": 1}, "remains": {"_count": 1}, "pipes": {"_count": 1}, "restll": {"_count": 1}, "grimy": {"_count": 1}, "muffled": {"_count": 1}, "narrow": {"_count": 1}, "stereo": {"_count": 1}, "wizards": {"_count": 1}, "warm": {"_count": 1}, "meetings": {"_count": 2}, "gloomy": {"_count": 2}, "motheaten": {"_count": 1}, "cloud": {"_count": 1}, "stew": {"_count": 1}, "bit": {"_count": 4}, "Order": {"_count": 8}, "blank": {"_count": 3}, "weapon": {"_count": 2}, "floorboard": {"_count": 1}, "carpet": {"_count": 1}, "dedoxying": {"_count": 1}, "Mudblood": {"_count": 2}, "tapestry": {"_count": 1}, "drawing": {"_count": 4}, "china": {"_count": 1}, "hearings": {"_count": 1}, "laws": {"_count": 1}, "rundown": {"_count": 1}, "farther": {"_count": 2}, "peacockblue": {"_count": 1}, "grilles": {"_count": 2}, "lift": {"_count": 9}, "doors": {"_count": 6}, "remaining": {"_count": 3}, "Atrium": {"_count": 2}, "plump": {"_count": 1}, "accused": {"_count": 1}, "members": {"_count": 2}, "Wizengamot": {"_count": 4}, "charges": {"_count": 1}, "odds": {"_count": 1}, "Chair": {"_count": 1}, "toadlike": {"_count": 1}, "lines": {"_count": 1}, "Standard": {"_count": 1}, "Moody": {"_count": 1}, "image": {"_count": 1}, "figures": {"_count": 1}, "cartoon": {"_count": 1}, "headline": {"_count": 2}, "coaches": {"_count": 1}, "carriages": {"_count": 1}, "Houses": {"_count": 1}, "terrifiedlooking": {"_count": 1}, "rare": {"_count": 1}, "ancient": {"_count": 1}, "treasure": {"_count": 1}, "quiet": {"_count": 1}, "staff": {"_count": 2}, "enchanted": {"_count": 1}, "ingredients": {"_count": 2}, "Draught": {"_count": 1}, "constant": {"_count": 1}, "chapter": {"_count": 1}, "news": {"_count": 6}, "funny": {"_count": 1}, "surfaces": {"_count": 1}, "pause": {"_count": 1}, "detritus": {"_count": 1}, "straw": {"_count": 1}, "treetops": {"_count": 1}, "risk": {"_count": 2}, "general": {"_count": 1}, "abrupt": {"_count": 1}, "snail": {"_count": 1}, "morning": {"_count": 3}, "sign": {"_count": 2}, "Hogs": {"_count": 3}, "bay": {"_count": 1}, "barmans": {"_count": 2}, "group": {"_count": 2}, "reaction": {"_count": 1}, "veiled": {"_count": 1}, "knowledge": {"_count": 5}, "above": {"_count": 4}, "happiness": {"_count": 3}, "prefects": {"_count": 1}, "fool": {"_count": 1}, "establishment": {"_count": 1}, "Defense": {"_count": 1}, "D": {"_count": 1}, "coin": {"_count": 1}, "coins": {"_count": 1}, "Ravenclaws": {"_count": 2}, "skies": {"_count": 1}, "frosty": {"_count": 2}, "balls": {"_count": 1}, "howling": {"_count": 1}, "High": {"_count": 2}, "stolen": {"_count": 1}, "bolt": {"_count": 1}, "men": {"_count": 1}, "small": {"_count": 3}, "stuff": {"_count": 1}, "dream": {"_count": 1}, "portraits": {"_count": 6}, "instrument": {"_count": 1}, "smoke": {"_count": 2}, "important": {"_count": 4}, "shoes": {"_count": 1}, "ward": {"_count": 1}, "fleshcolored": {"_count": 1}, "tarnished": {"_count": 1}, "reception": {"_count": 1}, "Healer": {"_count": 1}, "magical": {"_count": 1}, "adults": {"_count": 1}, "bus": {"_count": 1}, "six": {"_count": 1}, "mind": {"_count": 2}, "curse": {"_count": 3}, "evidence": {"_count": 2}, "poster": {"_count": 1}, "ten": {"_count": 1}, "hair": {"_count": 1}, "scarlet": {"_count": 1}, "QuickQuotes": {"_count": 1}, "true": {"_count": 2}, "Prophet": {"_count": 1}, "Quibbleii": {"_count": 1}, "Snackboxes": {"_count": 1}, "miracle": {"_count": 1}, "message": {"_count": 2}, "kneeling": {"_count": 1}, "week": {"_count": 2}, "centaur": {"_count": 1}, "attempt": {"_count": 1}, "attemps": {"_count": 1}, "Malfoy": {"_count": 2}, "minister": {"_count": 1}, "purpose": {"_count": 1}, "latter": {"_count": 2}, "dust": {"_count": 1}, "wreckage": {"_count": 2}, "Inquisitorial": {"_count": 2}, "headmistress": {"_count": 1}, "Potter": {"_count": 1}, "fireworks": {"_count": 1}, "whizzes": {"_count": 1}, "sunlight": {"_count": 1}, "summers": {"_count": 1}, "lump": {"_count": 1}, "final": {"_count": 1}, "breaking": {"_count": 1}, "rim": {"_count": 1}, "legs": {"_count": 1}, "song": {"_count": 1}, "purposeful": {"_count": 1}, "famous": {"_count": 1}, "afternoon": {"_count": 2}, "practical": {"_count": 1}, "Astronomy": {"_count": 1}, "commotion": {"_count": 1}, "confederation": {"_count": 1}, "lock": {"_count": 1}, "garish": {"_count": 1}, "chestnutbodied": {"_count": 1}, "gray": {"_count": 1}, "clearing": {"_count": 1}, "sounds": {"_count": 2}, "CrumpleHorned": {"_count": 1}, "cooling": {"_count": 1}, "thestrals": {"_count": 1}, "scavenging": {"_count": 1}, "circular": {"_count": 2}, "pointed": {"_count": 1}, "gently": {"_count": 1}, "knot": {"_count": 1}, "cabinet": {"_count": 1}, "jet": {"_count": 1}, "babyheaded": {"_count": 1}, "recent": {"_count": 1}, "prophecy": {"_count": 6}, "laughter": {"_count": 1}, "hem": {"_count": 1}, "tank": {"_count": 1}, "brains": {"_count": 1}, "statue": {"_count": 2}, "headless": {"_count": 1}, "force": {"_count": 2}, "head": {"_count": 1}, "polished": {"_count": 1}, "delicate": {"_count": 1}, "guilt": {"_count": 1}, "fountain": {"_count": 1}, "glass": {"_count": 2}, "prophecys": {"_count": 1}, "applicant": {"_count": 1}, "slowly": {"_count": 1}, "odd": {"_count": 3}, "Ministers": {"_count": 1}, "hot": {"_count": 1}, "frustrated": {"_count": 1}, "Prime": {"_count": 16}, "bridge": {"_count": 1}, "Brockdale": {"_count": 3}, "move": {"_count": 1}, "Office": {"_count": 1}, "papers": {"_count": 1}, "fox": {"_count": 1}, "pursuer": {"_count": 1}, "sisters": {"_count": 2}, "duel": {"_count": 1}, "misty": {"_count": 1}, "nature": {"_count": 1}, "current": {"_count": 1}, "appointment": {"_count": 1}, "slightly": {"_count": 1}, "situation": {"_count": 2}, "Wizarding": {"_count": 1}, "magic": {"_count": 1}, "sensation": {"_count": 1}, "church": {"_count": 1}, "furniture": {"_count": 1}, "wandmaker": {"_count": 4}, "colorful": {"_count": 1}, "lefthand": {"_count": 1}, "righthand": {"_count": 1}, "packaging": {"_count": 1}, "proprietor": {"_count": 1}, "exception": {"_count": 2}, "corridors": {"_count": 2}, "lanterns": {"_count": 1}, "Express": {"_count": 1}, "fury": {"_count": 1}, "talk": {"_count": 1}, "castles": {"_count": 1}, "scowling": {"_count": 1}, "distribution": {"_count": 1}, "sixth": {"_count": 1}, "concentration": {"_count": 1}, "sopophorous": {"_count": 1}, "clear": {"_count": 1}, "HalfBlood": {"_count": 2}, "arm": {"_count": 1}, "lane": {"_count": 2}, "pot": {"_count": 1}, "jingling": {"_count": 3}, "sons": {"_count": 1}, "headmasters": {"_count": 2}, "process": {"_count": 1}, "walk": {"_count": 1}, "road": {"_count": 1}, "bitter": {"_count": 1}, "street": {"_count": 1}, "exceptions": {"_count": 1}, "label": {"_count": 1}, "sleetspattered": {"_count": 1}, "Pensieve": {"_count": 1}, "orphans": {"_count": 1}, "adult": {"_count": 2}, "rings": {"_count": 1}, "weekends": {"_count": 1}, "Gwenog": {"_count": 1}, "pod": {"_count": 1}, "crash": {"_count": 1}, "honest": {"_count": 1}, "whistle": {"_count": 1}, "rumors": {"_count": 2}, "omens": {"_count": 1}, "gnome": {"_count": 3}, "Chosen": {"_count": 1}, "Gaunts": {"_count": 1}, "soft": {"_count": 2}, "Muggle": {"_count": 2}, "fog": {"_count": 1}, "upshot": {"_count": 1}, "poison": {"_count": 1}, "drowsing": {"_count": 1}, "locket": {"_count": 5}, "younger": {"_count": 1}, "Dumbledore": {"_count": 4}, "aftermath": {"_count": 1}, "Inferius": {"_count": 1}, "sewers": {"_count": 1}, "Felix": {"_count": 1}, "Potions": {"_count": 1}, "careless": {"_count": 1}, "seventh": {"_count": 1}, "ring": {"_count": 3}, "battle": {"_count": 3}, "runup": {"_count": 1}, "loud": {"_count": 1}, "flow": {"_count": 1}, "bathroom": {"_count": 1}, "Prince": {"_count": 1}, "socalled": {"_count": 1}, "Room": {"_count": 1}, "lower": {"_count": 1}, "fissure": {"_count": 1}, "slimy": {"_count": 1}, "greenish": {"_count": 1}, "darkness": {"_count": 4}, "island": {"_count": 1}, "Inferi": {"_count": 1}, "protection": {"_count": 1}, "archway": {"_count": 1}, "ramparts": {"_count": 1}, "Avada": {"_count": 1}, "cases": {"_count": 1}, "death": {"_count": 1}, "beautiful": {"_count": 1}, "warmth": {"_count": 1}, "mens": {"_count": 1}, "high": {"_count": 1}, "yew": {"_count": 1}, "hallway": {"_count": 1}, "rooms": {"_count": 1}, "interest": {"_count": 1}, "Orders": {"_count": 1}, "gesture": {"_count": 1}, "dwindling": {"_count": 1}, "flash": {"_count": 1}, "advance": {"_count": 1}, "broken": {"_count": 1}, "house": {"_count": 1}, "nextdoor": {"_count": 1}, "hopes": {"_count": 1}, "pairs": {"_count": 1}, "Portkey": {"_count": 2}, "realization": {"_count": 2}, "answer": {"_count": 2}, "side": {"_count": 1}, "slightest": {"_count": 1}, "firewhisky": {"_count": 1}, "suddenness": {"_count": 1}, "bike": {"_count": 1}, "connection": {"_count": 2}, "Tracell": {"_count": 1}, "mangle": {"_count": 1}, "kindest": {"_count": 1}, "measures": {"_count": 1}, "fragment": {"_count": 1}, "Delacours": {"_count": 2}, "rusty": {"_count": 1}, "chickens": {"_count": 1}, "Norwegian": {"_count": 1}, "er": {"_count": 1}, "vast": {"_count": 1}, "solitary": {"_count": 1}, "circumstance": {"_count": 1}, "Wizard": {"_count": 1}, "supporting": {"_count": 1}, "marquee": {"_count": 1}, "tuftyhaired": {"_count": 1}, "band": {"_count": 1}, "strange": {"_count": 1}, "Lovegoods": {"_count": 1}, "cross": {"_count": 1}, "holly": {"_count": 2}, "recitation": {"_count": 1}, "author": {"_count": 1}, "Dumbledores": {"_count": 1}, "gumchewing": {"_count": 1}, "waitress": {"_count": 1}, "larger": {"_count": 1}, "Trace": {"_count": 1}, "grief": {"_count": 1}, "accusations": {"_count": 1}, "teenage": {"_count": 1}, "Black": {"_count": 1}, "drawers": {"_count": 1}, "DDark": {"_count": 1}, "houseelfs": {"_count": 1}, "presence": {"_count": 1}, "intruder": {"_count": 1}, "jinx": {"_count": 1}, "official": {"_count": 1}, "mother": {"_count": 1}, "timing": {"_count": 1}, "inhabitants": {"_count": 1}, "lurkers": {"_count": 1}, "watchers": {"_count": 1}, "quality": {"_count": 1}, "painted": {"_count": 1}, "buildings": {"_count": 1}, "plaque": {"_count": 1}, "young": {"_count": 1}, "desk": {"_count": 1}, "pamphletmakers": {"_count": 1}, "petrified": {"_count": 1}, "brats": {"_count": 1}, "S": {"_count": 1}, "stags": {"_count": 1}, "balding": {"_count": 2}, "wound": {"_count": 1}, "interior": {"_count": 1}, "tea": {"_count": 1}, "surrounding": {"_count": 1}, "hanging": {"_count": 1}, "theft": {"_count": 1}, "orphanage": {"_count": 2}, "thief": {"_count": 2}, "enchantments": {"_count": 1}, "voices": {"_count": 1}, "delicious": {"_count": 1}, "original": {"_count": 2}, "muddy": {"_count": 1}, "instant": {"_count": 1}, "villages": {"_count": 1}, "graveyard": {"_count": 1}, "life": {"_count": 1}, "beaded": {"_count": 1}, "headstone": {"_count": 1}, "hedge": {"_count": 1}, "odor": {"_count": 1}, "child": {"_count": 3}, "gate": {"_count": 1}, "green": {"_count": 2}, "wood": {"_count": 1}, "dangling": {"_count": 1}, "feeble": {"_count": 1}, "pouch": {"_count": 1}, "fires": {"_count": 1}, "Forest": {"_count": 1}, "imprint": {"_count": 1}, "ice": {"_count": 1}, "ground": {"_count": 1}, "Horcrux": {"_count": 1}, "monstrous": {"_count": 1}, "Deluminator": {"_count": 1}, "spider": {"_count": 2}, "signature": {"_count": 1}, "cluster": {"_count": 1}, "zigzagging": {"_count": 1}, "Deathly": {"_count": 4}, "Elder": {"_count": 5}, "Resurrection": {"_count": 3}, "Cloak": {"_count": 6}, "possessor": {"_count": 1}, "Deathstick": {"_count": 1}, "bed": {"_count": 1}, "Quibblers": {"_count": 1}, "bust": {"_count": 1}, "printing": {"_count": 1}, "change": {"_count": 1}, "bloody": {"_count": 1}, "downpour": {"_count": 1}, "visions": {"_count": 1}, "lot": {"_count": 1}, "Boy": {"_count": 2}, "radios": {"_count": 1}, "relish": {"_count": 1}, "Snatchers": {"_count": 1}, "werewolf": {"_count": 1}, "prisoners": {"_count": 2}, "iron": {"_count": 1}, "emaciated": {"_count": 1}, "frail": {"_count": 1}, "echoing": {"_count": 1}, "cellar": {"_count": 1}, "chandelier": {"_count": 1}, "sea": {"_count": 2}, "steady": {"_count": 1}, "safest": {"_count": 1}, "hands": {"_count": 1}, "rising": {"_count": 1}, "reddish": {"_count": 1}, "unbeatable": {"_count": 1}, "tomb": {"_count": 1}, "shrouded": {"_count": 1}, "wrappings": {"_count": 1}, "face": {"_count": 1}, "enormity": {"_count": 1}, "eye": {"_count": 1}, "tiara": {"_count": 1}, "dawn": {"_count": 1}, "bar": {"_count": 1}, "crooked": {"_count": 1}, "Probes": {"_count": 1}, "Thiefs": {"_count": 1}, "beasts": {"_count": 1}, "heat": {"_count": 1}, "blistered": {"_count": 1}, "tethered": {"_count": 1}, "scales": {"_count": 1}, "landscape": {"_count": 1}, "scream": {"_count": 1}, "flapping": {"_count": 1}, "barman": {"_count": 3}, "Carrows": {"_count": 2}, "deserted": {"_count": 1}, "slopingshouldered": {"_count": 1}, "Patronuses": {"_count": 1}, "Gray": {"_count": 1}, "Baron": {"_count": 2}, "furor": {"_count": 1}, "wandless": {"_count": 1}, "diadem": {"_count": 1}, "single": {"_count": 1}, "gargantuan": {"_count": 1}, "hand": {"_count": 1}, "flagstones": {"_count": 1}, "survivors": {"_count": 1}, "injured": {"_count": 1}, "memories": {"_count": 1}, "playground": {"_count": 1}, "flower": {"_count": 1}, "roll": {"_count": 1}, "intensity": {"_count": 1}, "hilltop": {"_count": 1}, "images": {"_count": 1}, "triangle": {"_count": 1}, "remnants": {"_count": 1}, "illusion": {"_count": 1}, "giants": {"_count": 1}, "cores": {"_count": 1}, "Hallows": {"_count": 1}, "argument": {"_count": 1}, "victorious": {"_count": 1}, "emblem": {"_count": 1}, "charging": {"_count": 1}, "yell": {"_count": 1}, "fierce": {"_count": 1}, "five": {"_count": 1}}, "This": {"_count": 401, "boy": {"_count": 2}, "bunch": {"_count": 1}, "mans": {"_count": 1}, "morning": {"_count": 2}, "is": {"_count": 111}, "he": {"_count": 1}, "was": {"_count": 58}, "reminded": {"_count": 2}, "seemed": {"_count": 3}, "hat": {"_count": 1}, "way": {"_count": 14}, "balls": {"_count": 1}, "said": {"_count": 3}, "only": {"_count": 1}, "isnt": {"_count": 13}, "wasnt": {"_count": 3}, "needs": {"_count": 1}, "couldnt": {"_count": 1}, "mirror": {"_count": 1}, "didnt": {"_count": 3}, "scar": {"_count": 1}, "could": {"_count": 2}, "makes": {"_count": 1}, "Muggle": {"_count": 1}, "thought": {"_count": 1}, "first": {"_count": 2}, "cat": {"_count": 3}, "Polyjuice": {"_count": 1}, "sir": {"_count": 1}, "settles": {"_count": 1}, "Ernie": {"_count": 1}, "left": {"_count": 3}, "must": {"_count": 2}, "circular": {"_count": 1}, "made": {"_count": 2}, "match": {"_count": 1}, "will": {"_count": 4}, "snake": {"_count": 1}, "means": {"_count": 4}, "has": {"_count": 2}, "separation": {"_count": 1}, "meant": {"_count": 4}, "directed": {"_count": 1}, "worked": {"_count": 1}, "ones": {"_count": 3}, "Potter": {"_count": 1}, "explained": {"_count": 1}, "had": {"_count": 2}, "one": {"_count": 5}, "time": {"_count": 16}, "potion": {"_count": 1}, "lesson": {"_count": 1}, "little": {"_count": 1}, "map": {"_count": 2}, "figure": {"_count": 1}, "measure": {"_count": 1}, "charm": {"_count": 1}, "did": {"_count": 3}, "Friday": {"_count": 1}, "parchment": {"_count": 1}, "helplessness": {"_count": 1}, "place": {"_count": 1}, "house": {"_count": 2}, "cringing": {"_count": 1}, "whole": {"_count": 2}, "doors": {"_count": 1}, "door": {"_count": 1}, "proposal": {"_count": 1}, "surprised": {"_count": 1}, "too": {"_count": 2}, "man": {"_count": 3}, "just": {"_count": 1}, "pair": {"_count": 1}, "puzzled": {"_count": 1}, "cannot": {"_count": 1}, "Dumbledore": {"_count": 1}, "news": {"_count": 1}, "therefore": {"_count": 1}, "tournaments": {"_count": 1}, "cheered": {"_count": 1}, "gave": {"_count": 1}, "year": {"_count": 3}, "evening": {"_count": 1}, "lot": {"_count": 2}, "egg": {"_count": 1}, "": {"_count": 3}, "class": {"_count": 1}, "then": {"_count": 2}, "looked": {"_count": 1}, "might": {"_count": 1}, "phoenix": {"_count": 1}, "Mark": {"_count": 1}, "Lord": {"_count": 1}, "sort": {"_count": 1}, "solid": {"_count": 1}, "leads": {"_count": 1}, "should": {"_count": 2}, "pronouncement": {"_count": 1}, "may": {"_count": 1}, "last": {"_count": 2}, "centaur": {"_count": 1}, "suited": {"_count": 1}, "information": {"_count": 2}, "room": {"_count": 1}, "office": {"_count": 1}, "particular": {"_count": 1}, "can": {"_count": 1}, "magic": {"_count": 1}, "idea": {"_count": 1}, "turned": {"_count": 1}, "Book": {"_count": 1}, "discussion": {"_count": 1}, "detentions": {"_count": 1}, "strategy": {"_count": 1}, "looks": {"_count": 1}, "younger": {"_count": 1}, "effectively": {"_count": 1}, "group": {"_count": 1}, "proved": {"_count": 1}, "girl": {"_count": 1}, "being": {"_count": 1}, "mantra": {"_count": 1}, "brat": {"_count": 1}, "question": {"_count": 1}, "and": {"_count": 1}, "R": {"_count": 1}, "Snitch": {"_count": 1}, "belonged": {"_count": 1}, "however": {"_count": 1}, "scant": {"_count": 1}, "picture": {"_count": 1}, "note": {"_count": 1}, "initial": {"_count": 1}, "dreadful": {"_count": 1}, "cant": {"_count": 1}, "struck": {"_count": 1}, "explains": {"_count": 1}, "feels": {"_count": 1}, "wand": {"_count": 1}, "appearance": {"_count": 1}, "coldblooded": {"_count": 1}}, "When": {"_count": 381, "Mr": {"_count": 1}, "Dudley": {"_count": 1}, "he": {"_count": 82}, "September": {"_count": 1}, "the": {"_count": 51}, "Aunt": {"_count": 2}, "I": {"_count": 25}, "they": {"_count": 45}, "it": {"_count": 7}, "everyone": {"_count": 6}, "Harry": {"_count": 36}, "Malfoy": {"_count": 1}, "Angelina": {"_count": 2}, "Professor": {"_count": 2}, "you": {"_count": 8}, "dinners": {"_count": 1}, "at": {"_count": 7}, "is": {"_count": 1}, "hed": {"_count": 5}, "Filch": {"_count": 1}, "she": {"_count": 8}, "youve": {"_count": 4}, "Snape": {"_count": 2}, "Draco": {"_count": 2}, "Hermione": {"_count": 3}, "Ive": {"_count": 2}, "in": {"_count": 1}, "Dumbledore": {"_count": 5}, "will": {"_count": 1}, "nobody": {"_count": 2}, "this": {"_count": 1}, "one": {"_count": 1}, "real": {"_count": 1}, "Cornelius": {"_count": 1}, "Mostafa": {"_count": 1}, "all": {"_count": 3}, "their": {"_count": 2}, "Fleur": {"_count": 1}, "Lupin": {"_count": 2}, "Dobby": {"_count": 1}, "we": {"_count": 8}, "Voldemort": {"_count": 2}, "none": {"_count": 1}, "Azkaban": {"_count": 1}, "Winky": {"_count": 1}, "are": {"_count": 1}, "theyre": {"_count": 1}, "Sirius": {"_count": 1}, "did": {"_count": 6}, "darkness": {"_count": 1}, "more": {"_count": 1}, "everybody": {"_count": 1}, "your": {"_count": 1}, "can": {"_count": 2}, "Alicia": {"_count": 1}, "Slytherins": {"_count": 1}, "youre": {"_count": 1}, "Ron": {"_count": 2}, "Hermiones": {"_count": 1}, "Bode": {"_count": 1}, "people": {"_count": 1}, "several": {"_count": 2}, "Harrys": {"_count": 1}, "however": {"_count": 1}, "neither": {"_count": 1}, "when": {"_count": 1}, "Ginny": {"_count": 1}, "Albus": {"_count": 1}, "were": {"_count": 1}, "Scrimgeour": {"_count": 1}, "finally": {"_count": 1}, "YouKnowWho": {"_count": 1}, "my": {"_count": 1}, "was": {"_count": 1}, "Dolohov": {"_count": 1}, "Mummys": {"_count": 1}}, "None": {"_count": 41, "of": {"_count": 40}, "at": {"_count": 1}}, "At": {"_count": 267, "half": {"_count": 3}, "last": {"_count": 60}, "that": {"_count": 24}, "school": {"_count": 1}, "this": {"_count": 14}, "first": {"_count": 6}, "the": {"_count": 65}, "breakfast": {"_count": 1}, "threethirty": {"_count": 1}, "every": {"_count": 2}, "either": {"_count": 2}, "once": {"_count": 21}, "these": {"_count": 7}, "times": {"_count": 1}, "eleven": {"_count": 1}, "eightfifteen": {"_count": 1}, "least": {"_count": 25}, "Dudleys": {"_count": 1}, "one": {"_count": 2}, "long": {"_count": 5}, "lunchtime": {"_count": 1}, "eight": {"_count": 1}, "a": {"_count": 2}, "nine": {"_count": 1}, "two": {"_count": 1}, "ze": {"_count": 1}, "Siriuss": {"_count": 1}, "which": {"_count": 1}, "Harrys": {"_count": 1}, "five": {"_count": 2}, "halfpast": {"_count": 2}, "night": {"_count": 1}, "war": {"_count": 1}, "Hogwarts": {"_count": 2}, "Beauxbatons": {"_count": 1}, "Borgin": {"_count": 2}, "any": {"_count": 1}, "her": {"_count": 1}, "sixteen": {"_count": 1}}, "Little": {"_count": 18, "tyke": {"_count": 2}, "did": {"_count": 2}, "Ginnys": {"_count": 1}, "patches": {"_count": 1}, "boy": {"_count": 1}, "Ronnie": {"_count": 1}, "stars": {"_count": 1}, "fires": {"_count": 1}, "Miss": {"_count": 2}, "though": {"_count": 2}, "woman": {"_count": 1}, "more": {"_count": 1}, "git": {"_count": 1}, "old": {"_count": 1}}, "It": {"_count": 1647, "was": {"_count": 767}, "stared": {"_count": 1}, "might": {"_count": 17}, "just": {"_count": 8}, "didnt": {"_count": 14}, "seemed": {"_count": 41}, "all": {"_count": 4}, "had": {"_count": 64}, "must": {"_count": 15}, "would": {"_count": 47}, "grew": {"_count": 1}, "looked": {"_count": 35}, "wasnt": {"_count": 46}, "could": {"_count": 15}, "winked": {"_count": 2}, "gave": {"_count": 4}, "turned": {"_count": 3}, "only": {"_count": 3}, "started": {"_count": 3}, "filled": {"_count": 1}, "took": {"_count": 29}, "sloped": {"_count": 1}, "seems": {"_count": 15}, "so": {"_count": 4}, "is": {"_count": 125}, "showed": {"_count": 2}, "towered": {"_count": 1}, "bowed": {"_count": 1}, "happened": {"_count": 9}, "said": {"_count": 4}, "contains": {"_count": 2}, "kept": {"_count": 3}, "waggled": {"_count": 1}, "lumbered": {"_count": 1}, "hesitated": {"_count": 1}, "roared": {"_count": 1}, "bit": {"_count": 2}, "stuck": {"_count": 1}, "shows": {"_count": 1}, "does": {"_count": 3}, "also": {"_count": 2}, "mustve": {"_count": 4}, "sneezed": {"_count": 1}, "snapped": {"_count": 2}, "shouldnt": {"_count": 2}, "doesnt": {"_count": 12}, "got": {"_count": 3}, "felt": {"_count": 14}, "put": {"_count": 2}, "takes": {"_count": 3}, "did": {"_count": 22}, "wouldnt": {"_count": 4}, "drives": {"_count": 1}, "definitely": {"_count": 2}, "transforms": {"_count": 1}, "hasnt": {"_count": 5}, "burned": {"_count": 2}, "means": {"_count": 12}, "opened": {"_count": 2}, "hung": {"_count": 1}, "wasn": {"_count": 2}, "looks": {"_count": 10}, "tasted": {"_count": 1}, "wont": {"_count": 7}, "lay": {"_count": 1}, "has": {"_count": 13}, "made": {"_count": 7}, "dropped": {"_count": 1}, "sat": {"_count": 1}, "lunged": {"_count": 1}, "certainly": {"_count": 2}, "cant": {"_count": 4}, "went": {"_count": 1}, "can": {"_count": 4}, "heard": {"_count": 1}, "it": {"_count": 5}, "stood": {"_count": 2}, "came": {"_count": 7}, "sounds": {"_count": 3}, "stayed": {"_count": 1}, "couldnt": {"_count": 2}, "will": {"_count": 13}, "goes": {"_count": 1}, "makes": {"_count": 5}, "served": {"_count": 1}, "closed": {"_count": 1}, "hurt": {"_count": 3}, "stopped": {"_count": 2}, "sounded": {"_count": 9}, "isnt": {"_count": 8}, "suddenly": {"_count": 1}, "hit": {"_count": 3}, "requires": {"_count": 1}, "scared": {"_count": 1}, "says": {"_count": 6}, "wouldve": {"_count": 3}, "stretched": {"_count": 2}, "": {"_count": 4}, "struck": {"_count": 1}, "most": {"_count": 1}, "returned": {"_count": 1}, "began": {"_count": 2}, "worked": {"_count": 2}, "now": {"_count": 3}, "featured": {"_count": 1}, "fluttered": {"_count": 2}, "used": {"_count": 1}, "becomes": {"_count": 1}, "woke": {"_count": 1}, "flew": {"_count": 3}, "contained": {"_count": 1}, "shivered": {"_count": 1}, "shouldve": {"_count": 2}, "az": {"_count": 1}, "cost": {"_count": 1}, "pays": {"_count": 1}, "happens": {"_count": 3}, "what": {"_count": 1}, "smelled": {"_count": 1}, "explained": {"_count": 2}, "ought": {"_count": 2}, "soared": {"_count": 1}, "may": {"_count": 3}, "pains": {"_count": 1}, "appeared": {"_count": 2}, "saved": {"_count": 1}, "became": {"_count": 2}, "helps": {"_count": 1}, "matters": {"_count": 2}, "rumbled": {"_count": 1}, "appears": {"_count": 3}, "rings": {"_count": 1}, "cannot": {"_count": 2}, "too": {"_count": 2}, "occurred": {"_count": 1}, "swung": {"_count": 3}, "remained": {"_count": 1}, "passed": {"_count": 1}, "crumbled": {"_count": 1}, "jangled": {"_count": 1}, "shattered": {"_count": 1}, "broke": {"_count": 1}, "always": {"_count": 1}, "leapt": {"_count": 1}, "led": {"_count": 1}, "bounced": {"_count": 1}, "zoomed": {"_count": 1}, "couldve": {"_count": 1}, "soon": {"_count": 1}, "sprang": {"_count": 2}, "comes": {"_count": 2}, "lived": {"_count": 1}, "confirms": {"_count": 1}, "suggested": {"_count": 1}, "really": {"_count": 2}, "spoke": {"_count": 2}, "rose": {"_count": 1}, "placed": {"_count": 1}, "fell": {"_count": 1}, "warns": {"_count": 1}, "should": {"_count": 1}, "provided": {"_count": 1}, "carries": {"_count": 1}, "occurs": {"_count": 1}, "chose": {"_count": 1}, "left": {"_count": 1}, "scuttled": {"_count": 1}, "belongs": {"_count": 2}, "cracked": {"_count": 1}, "sort": {"_count": 1}, "keeps": {"_count": 1}, "lists": {"_count": 1}, "cheered": {"_count": 1}, "feels": {"_count": 1}, "washes": {"_count": 1}, "destroyed": {"_count": 1}, "melted": {"_count": 1}, "brought": {"_count": 1}, "troubled": {"_count": 1}, "cantered": {"_count": 1}, "jabbed": {"_count": 1}, "lifted": {"_count": 1}}, "For": {"_count": 213, "a": {"_count": 101}, "some": {"_count": 11}, "one": {"_count": 16}, "your": {"_count": 3}, "the": {"_count": 33}, "an": {"_count": 2}, "heavens": {"_count": 2}, "several": {"_count": 2}, "perhaps": {"_count": 1}, "nearly": {"_count": 3}, "another": {"_count": 2}, "years": {"_count": 2}, "": {"_count": 1}, "once": {"_count": 2}, "maybe": {"_count": 1}, "those": {"_count": 2}, "about": {"_count": 1}, "that": {"_count": 1}, "for": {"_count": 1}, "this": {"_count": 1}, "Moody": {"_count": 1}, "disrupting": {"_count": 1}, "all": {"_count": 2}, "thinking": {"_count": 1}, "instance": {"_count": 2}, "permanent": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "obvious": {"_count": 1}, "future": {"_count": 1}, "old": {"_count": 1}, "freaks": {"_count": 1}, "Malfoy": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 1}, "his": {"_count": 1}, "ze": {"_count": 1}, "him": {"_count": 2}, "though": {"_count": 1}, "ten": {"_count": 1}, "Nagini": {"_count": 1}, "Lily": {"_count": 1}}, "There": {"_count": 870, "was": {"_count": 477}, "had": {"_count": 14}, "were": {"_count": 127}, "is": {"_count": 34}, "werent": {"_count": 2}, "are": {"_count": 42}, "he": {"_count": 8}, "they": {"_count": 5}, "isnt": {"_count": 10}, "have": {"_count": 9}, "": {"_count": 7}, "his": {"_count": 1}, "stood": {"_count": 3}, "you": {"_count": 25}, "may": {"_count": 3}, "might": {"_count": 5}, "wasnt": {"_count": 4}, "has": {"_count": 4}, "will": {"_count": 16}, "would": {"_count": 3}, "cant": {"_count": 2}, "seemed": {"_count": 6}, "she": {"_count": 5}, "now": {"_count": 2}, "followed": {"_count": 1}, "said": {"_count": 5}, "must": {"_count": 4}, "came": {"_count": 2}, "arent": {"_count": 4}, "can": {"_count": 4}, "re": {"_count": 1}, "just": {"_count": 1}, "yeh": {"_count": 1}, "should": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 5}, "used": {"_count": 1}, "there": {"_count": 3}, "at": {"_count": 1}, "on": {"_count": 3}, "did": {"_count": 1}, "sat": {"_count": 1}, "I": {"_count": 1}, "really": {"_count": 1}, "sure": {"_count": 1}, "shining": {"_count": 1}, "we": {"_count": 1}, "upon": {"_count": 1}, "could": {"_count": 2}, "to": {"_count": 1}, "it": {"_count": 3}, "d": {"_count": 1}, "ought": {"_count": 1}, "over": {"_count": 1}, "before": {"_count": 1}}, "What": {"_count": 969, "could": {"_count": 3}, "theyre": {"_count": 1}, "did": {"_count": 70}, "about": {"_count": 37}, "came": {"_count": 1}, "are": {"_count": 92}, "world": {"_count": 1}, "": {"_count": 132}, "sort": {"_count": 11}, "on": {"_count": 12}, "looked": {"_count": 3}, "she": {"_count": 1}, "House": {"_count": 1}, "has": {"_count": 6}, "the": {"_count": 13}, "if": {"_count": 30}, "is": {"_count": 62}, "have": {"_count": 8}, "would": {"_count": 12}, "do": {"_count": 57}, "had": {"_count": 8}, "a": {"_count": 14}, "should": {"_count": 1}, "they": {"_count": 4}, "Harry": {"_count": 3}, "happened": {"_count": 42}, "am": {"_count": 4}, "was": {"_count": 60}, "goodll": {"_count": 1}, "can": {"_count": 6}, "I": {"_count": 7}, "does": {"_count": 18}, "really": {"_count": 2}, "wouldnt": {"_count": 2}, "you": {"_count": 8}, "re": {"_count": 6}, "an": {"_count": 2}, "in": {"_count": 3}, "makes": {"_count": 5}, "voice": {"_count": 1}, "were": {"_count": 23}, "wed": {"_count": 1}, "dyou": {"_count": 63}, "he": {"_count": 8}, "we": {"_count": 5}, "yer": {"_count": 1}, "dyeh": {"_count": 1}, "now": {"_count": 5}, "interests": {"_count": 1}, "exactly": {"_count": 4}, "Voldemort": {"_count": 1}, "didja": {"_count": 1}, "powers": {"_count": 1}, "to": {"_count": 1}, "villains": {"_count": 1}, "Malfoy": {"_count": 1}, "scared": {"_count": 2}, "with": {"_count": 8}, "defenses": {"_count": 1}, "gives": {"_count": 1}, "kept": {"_count": 2}, "little": {"_count": 1}, "live": {"_count": 1}, "amazes": {"_count": 1}, "how": {"_count": 2}, "what": {"_count": 4}, "else": {"_count": 5}, "doyou": {"_count": 1}, "rules": {"_count": 1}, "make": {"_count": 1}, "seemed": {"_count": 1}, "appeared": {"_count": 2}, "yeh": {"_count": 1}, "at": {"_count": 1}, "made": {"_count": 4}, "map": {"_count": 1}, "madness": {"_count": 1}, "thing": {"_count": 1}, "appened": {"_count": 1}, "private": {"_count": 1}, "people": {"_count": 1}, "things": {"_count": 1}, "horse": {"_count": 1}, "night": {"_count": 1}, "for": {"_count": 3}, "Hermione": {"_count": 1}, "prefers": {"_count": 1}, "bedroom": {"_count": 1}, "floors": {"_count": 1}, "number": {"_count": 1}, "deal": {"_count": 1}, "kind": {"_count": 5}, "oh": {"_count": 1}, "this": {"_count": 1}, "Cornelius": {"_count": 1}, "dont": {"_count": 2}, "involvement": {"_count": 1}, "useful": {"_count": 1}, "gave": {"_count": 1}, "will": {"_count": 2}, "disturbed": {"_count": 1}, "went": {"_count": 1}, "schools": {"_count": 1}, "and": {"_count": 1}, "thoughts": {"_count": 1}, "happens": {"_count": 1}, "Muggle": {"_count": 1}, "but": {"_count": 1}, "ideas": {"_count": 1}, "intrigued": {"_count": 1}, "musta": {"_count": 1}, "say": {"_count": 1}, "of": {"_count": 1}, "house": {"_count": 1}, "memories": {"_count": 1}, "hes": {"_count": 1}, "creature": {"_count": 1}, "stabbing": {"_count": 1}, "youve": {"_count": 2}, "brings": {"_count": 1}, "caused": {"_count": 1}, "choice": {"_count": 1}, "then": {"_count": 1}, "first": {"_count": 1}, "tree": {"_count": 1}, "request": {"_count": 1}, "childish": {"_count": 1}}, "As": {"_count": 456, "Mr": {"_count": 4}, "he": {"_count": 63}, "I": {"_count": 18}, "the": {"_count": 44}, "far": {"_count": 12}, "they": {"_count": 69}, "night": {"_count": 1}, "soon": {"_count": 3}, "bad": {"_count": 1}, "Hagrids": {"_count": 1}, "a": {"_count": 15}, "though": {"_count": 8}, "Harry": {"_count": 51}, "there": {"_count": 3}, "for": {"_count": 13}, "seven": {"_count": 1}, "Gryffindors": {"_count": 1}, "much": {"_count": 1}, "usual": {"_count": 1}, "neither": {"_count": 1}, "you": {"_count": 16}, "always": {"_count": 1}, "long": {"_count": 15}, "our": {"_count": 2}, "Wood": {"_count": 1}, "she": {"_count": 12}, "eleven": {"_count": 1}, "half": {"_count": 1}, "quickly": {"_count": 1}, "Ron": {"_count": 5}, "it": {"_count": 12}, "quietly": {"_count": 3}, "to": {"_count": 2}, "Professor": {"_count": 3}, "youre": {"_count": 1}, "an": {"_count": 2}, "Percy": {"_count": 1}, "flobberworms": {"_count": 1}, "each": {"_count": 4}, "Hermione": {"_count": 2}, "Fudges": {"_count": 1}, "Mullet": {"_count": 1}, "one": {"_count": 1}, "ever": {"_count": 2}, "Karkaroff": {"_count": 1}, "if": {"_count": 6}, "Snape": {"_count": 2}, "Madam": {"_count": 1}, "Minerva": {"_count": 1}, "Hagrid": {"_count": 2}, "Uncle": {"_count": 1}, "recently": {"_count": 1}, "we": {"_count": 4}, "her": {"_count": 2}, "his": {"_count": 2}, "High": {"_count": 1}, "small": {"_count": 1}, "Harrys": {"_count": 4}, "both": {"_count": 1}, "Dumbledore": {"_count": 2}, "Dumbledores": {"_count": 1}, "Narcissa": {"_count": 2}, "in": {"_count": 1}, "their": {"_count": 1}, "Ive": {"_count": 2}, "Dedalus": {"_count": 1}, "Scrimgeour": {"_count": 2}, "Fred": {"_count": 1}, "evening": {"_count": 2}, "well": {"_count": 1}, "many": {"_count": 1}, "Bathilda": {"_count": 1}, "Grindelwald": {"_count": 1}, "darkness": {"_count": 1}, "certainly": {"_count": 1}, "Griphook": {"_count": 1}, "Amycus": {"_count": 1}, "Ginny": {"_count": 1}}, "But": {"_count": 1394, "on": {"_count": 5}, "he": {"_count": 72}, "thats": {"_count": 11}, "youre": {"_count": 15}, "how": {"_count": 27}, "I": {"_count": 131}, "all": {"_count": 5}, "today": {"_count": 1}, "the": {"_count": 71}, "worst": {"_count": 1}, "what": {"_count": 40}, "Im": {"_count": 13}, "Hagrid": {"_count": 5}, "yeh": {"_count": 2}, "its": {"_count": 11}, "Uncle": {"_count": 1}, "Dumbledore": {"_count": 14}, "they": {"_count": 18}, "you": {"_count": 67}, "yehll": {"_count": 2}, "see": {"_count": 1}, "in": {"_count": 6}, "we": {"_count": 19}, "were": {"_count": 6}, "first": {"_count": 5}, "as": {"_count": 21}, "Percyd": {"_count": 1}, "from": {"_count": 1}, "whats": {"_count": 6}, "Nimbus": {"_count": 1}, "Snapes": {"_count": 1}, "Harry": {"_count": 61}, "then": {"_count": 44}, "there": {"_count": 29}, "weve": {"_count": 6}, "this": {"_count": 17}, "whod": {"_count": 1}, "Professor": {"_count": 9}, "that": {"_count": 18}, "will": {"_count": 3}, "if": {"_count": 41}, "Neville": {"_count": 4}, "leaving": {"_count": 1}, "so": {"_count": 1}, "Snape": {"_count": 5}, "a": {"_count": 6}, "sir": {"_count": 9}, "your": {"_count": 4}, "why": {"_count": 19}, "five": {"_count": 2}, "Ive": {"_count": 8}, "doing": {"_count": 1}, "Percy": {"_count": 3}, "really": {"_count": 1}, "dear": {"_count": 2}, "Rons": {"_count": 2}, "Colin": {"_count": 1}, "unfortunately": {"_count": 4}, "Tve": {"_count": 1}, "perhaps": {"_count": 2}, "nobody": {"_count": 1}, "Hermione": {"_count": 12}, "it": {"_count": 41}, "whys": {"_count": 2}, "these": {"_count": 1}, "getting": {"_count": 1}, "who": {"_count": 2}, "not": {"_count": 8}, "mostly": {"_count": 2}, "Albus": {"_count": 1}, "their": {"_count": 2}, "luckily": {"_count": 2}, "to": {"_count": 5}, "monsters": {"_count": 1}, "his": {"_count": 8}, "Ron": {"_count": 11}, "only": {"_count": 2}, "McGonagall": {"_count": 1}, "with": {"_count": 1}, "Lockharts": {"_count": 1}, "but": {"_count": 8}, "something": {"_count": 2}, "just": {"_count": 6}, "no": {"_count": 7}, "she": {"_count": 15}, "Riddles": {"_count": 2}, "was": {"_count": 1}, "Later": {"_count": 1}, "Ginny": {"_count": 2}, "one": {"_count": 3}, "hurry": {"_count": 1}, "Dobby": {"_count": 6}, "Aunt": {"_count": 2}, "after": {"_count": 3}, "Mum": {"_count": 1}, "hes": {"_count": 11}, "theyll": {"_count": 1}, "didnt": {"_count": 1}, "look": {"_count": 3}, "Oh": {"_count": 1}, "everyone": {"_count": 1}, "s": {"_count": 1}, "Malfoy": {"_count": 1}, "before": {"_count": 12}, "nothing": {"_count": 4}, "Sirius": {"_count": 5}, "itll": {"_count": 2}, "even": {"_count": 8}, "James": {"_count": 1}, "surely": {"_count": 7}, "hed": {"_count": 2}, "youve": {"_count": 4}, "shes": {"_count": 4}, "famous": {"_count": 1}, "still": {"_count": 3}, "Blacks": {"_count": 1}, "Crookshanks": {"_count": 1}, "make": {"_count": 1}, "apart": {"_count": 1}, "of": {"_count": 8}, "Peter": {"_count": 1}, "think": {"_count": 1}, "": {"_count": 15}, "remember": {"_count": 2}, "Shh": {"_count": 1}, "trust": {"_count": 1}, "over": {"_count": 1}, "Frank": {"_count": 1}, "quiet": {"_count": 1}, "Voldemort": {"_count": 1}, "Mr": {"_count": 6}, "next": {"_count": 2}, "Bill": {"_count": 2}, "shell": {"_count": 1}, "Levskis": {"_count": 1}, "when": {"_count": 14}, "Ill": {"_count": 1}, "at": {"_count": 3}, "Mother": {"_count": 1}, "her": {"_count": 1}, "Madam": {"_count": 1}, "Harrys": {"_count": 4}, "most": {"_count": 2}, "Dumbledores": {"_count": 1}, "ze": {"_count": 1}, "evidently": {"_count": 1}, "Karkaroff": {"_count": 1}, "Madame": {"_count": 1}, "someone": {"_count": 1}, "for": {"_count": 3}, "dont": {"_count": 9}, "Rita": {"_count": 1}, "whoever": {"_count": 2}, "Winky": {"_count": 4}, "now": {"_count": 11}, "every": {"_count": 1}, "ve": {"_count": 1}, "honestly": {"_count": 1}, "would": {"_count": 2}, "some": {"_count": 1}, "Peeves": {"_count": 1}, "me": {"_count": 1}, "unless": {"_count": 2}, "Crouch": {"_count": 1}, "maybe": {"_count": 1}, "Krum": {"_count": 1}, "under": {"_count": 1}, "Cedric": {"_count": 1}, "Wormtail": {"_count": 3}, "my": {"_count": 5}, "already": {"_count": 1}, "Moody": {"_count": 2}, "Bertha": {"_count": 1}, "said": {"_count": 11}, "through": {"_count": 2}, "youll": {"_count": 2}, "oh": {"_count": 1}, "Dudley": {"_count": 1}, "Petunia": {"_count": 1}, "wheres": {"_count": 1}, "Id": {"_count": 1}, "Molly": {"_count": 1}, "theres": {"_count": 3}, "where": {"_count": 6}, "apparently": {"_count": 1}, "theyre": {"_count": 1}, "She": {"_count": 1}, "fairy": {"_count": 1}, "people": {"_count": 1}, "too": {"_count": 1}, "none": {"_count": 3}, "Ernie": {"_count": 1}, "twentynil": {"_count": 1}, "instead": {"_count": 1}, "theyve": {"_count": 2}, "thas": {"_count": 1}, "You": {"_count": 3}, "Cho": {"_count": 1}, "Rookwoods": {"_count": 1}, "Well": {"_count": 1}, "close": {"_count": 1}, "members": {"_count": 1}, "did": {"_count": 3}, "Itll": {"_count": 1}, "poor": {"_count": 1}, "somebody": {"_count": 2}, "old": {"_count": 2}, "very": {"_count": 1}, "If": {"_count": 1}, "while": {"_count": 3}, "Bills": {"_count": 1}, "wands": {"_count": 1}, "Ollivander": {"_count": 1}, "havent": {"_count": 1}, "whatre": {"_count": 1}, "taken": {"_count": 1}, "isnt": {"_count": 1}, "trials": {"_count": 1}, "Hogwarts": {"_count": 1}, "thanks": {"_count": 1}, "wasnt": {"_count": 1}, "anything": {"_count": 1}, "since": {"_count": 1}, "obviously": {"_count": 1}, "unbidden": {"_count": 1}, "seriously": {"_count": 1}, "Greyback": {"_count": 1}, "lets": {"_count": 2}, "Tonks": {"_count": 1}, "never": {"_count": 2}, "Slughorn": {"_count": 1}, "half": {"_count": 1}, "acromantula": {"_count": 1}, "firstly": {"_count": 1}, "once": {"_count": 2}, "am": {"_count": 1}, "Malfoys": {"_count": 1}, "Fawkess": {"_count": 1}, "Theres": {"_count": 1}, "mate": {"_count": 1}, "Thicknesse": {"_count": 1}, "Hestia": {"_count": 1}, "Shut": {"_count": 1}, "hopefully": {"_count": 1}, "please": {"_count": 1}, "youd": {"_count": 2}, "Master": {"_count": 1}, "here": {"_count": 2}, "Kreacher": {"_count": 1}, "by": {"_count": 1}, "let": {"_count": 3}, "according": {"_count": 2}, "wouldnt": {"_count": 1}, "well": {"_count": 3}, "Xeno": {"_count": 1}, "Aberforth": {"_count": 1}, "instinct": {"_count": 1}, "Death": {"_count": 1}, "Ah": {"_count": 1}, "mending": {"_count": 1}, "hell": {"_count": 1}, "is": {"_count": 1}, "arguing": {"_count": 1}, "within": {"_count": 1}, "Mulcibers": {"_count": 1}}, "People": {"_count": 68, "in": {"_count": 1}, "are": {"_count": 4}, "throughout": {"_count": 2}, "who": {"_count": 2}, "stared": {"_count": 3}, "jostled": {"_count": 2}, "pushed": {"_count": 1}, "lining": {"_count": 1}, "will": {"_count": 1}, "goggled": {"_count": 1}, "were": {"_count": 13}, "arent": {"_count": 1}, "herell": {"_count": 1}, "shrieked": {"_count": 1}, "say": {"_count": 1}, "looked": {"_count": 1}, "used": {"_count": 1}, "from": {"_count": 2}, "with": {"_count": 1}, "usually": {"_count": 1}, "high": {"_count": 1}, "keep": {"_count": 2}, "all": {"_count": 2}, "have": {"_count": 3}, "gawping": {"_count": 1}, "passing": {"_count": 1}, "kept": {"_count": 1}, "had": {"_count": 1}, "got": {"_count": 1}, "I": {"_count": 1}, "like": {"_count": 1}, "just": {"_count": 1}, "should": {"_count": 1}, "exiting": {"_count": 1}, "around": {"_count": 1}, "dont": {"_count": 1}, "can": {"_count": 1}, "take": {"_count": 1}, "expect": {"_count": 1}, "believe": {"_count": 1}, "seemed": {"_count": 1}, "wouldnt": {"_count": 1}, "wont": {"_count": 1}}, "yes": {"_count": 29, "that": {"_count": 1}, "look": {"_count": 1}, "": {"_count": 12}, "I": {"_count": 3}, "said": {"_count": 3}, "of": {"_count": 1}, "indeed": {"_count": 1}, "hospital": {"_count": 1}, "My": {"_count": 1}, "my": {"_count": 1}, "thisll": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 1}, "Id": {"_count": 1}}, "If": {"_count": 530, "he": {"_count": 54}, "anyone": {"_count": 7}, "the": {"_count": 22}, "there": {"_count": 5}, "they": {"_count": 26}, "it": {"_count": 32}, "I": {"_count": 40}, "yeh": {"_count": 5}, "Hagrid": {"_count": 2}, "hed": {"_count": 6}, "Id": {"_count": 6}, "only": {"_count": 18}, "either": {"_count": 2}, "any": {"_count": 3}, "youre": {"_count": 11}, "Gryffindor": {"_count": 3}, "thats": {"_count": 2}, "she": {"_count": 8}, "you": {"_count": 100}, "Snape": {"_count": 3}, "Quirrells": {"_count": 1}, "we": {"_count": 20}, "Harry": {"_count": 10}, "were": {"_count": 5}, "Idve": {"_count": 1}, "one": {"_count": 1}, "Lockharts": {"_count": 1}, "Dumbledore": {"_count": 4}, "Filch": {"_count": 2}, "a": {"_count": 2}, "its": {"_count": 6}, "Albus": {"_count": 1}, "youd": {"_count": 7}, "someone": {"_count": 2}, "youve": {"_count": 4}, "theres": {"_count": 8}, "Im": {"_count": 3}, "this": {"_count": 3}, "not": {"_count": 2}, "at": {"_count": 2}, "youll": {"_count": 3}, "Black": {"_count": 2}, "hes": {"_count": 5}, "being": {"_count": 1}, "as": {"_count": 2}, "all": {"_count": 2}, "Neville": {"_count": 1}, "Snapes": {"_count": 1}, "your": {"_count": 4}, "Fudge": {"_count": 2}, "that": {"_count": 8}, "eyes": {"_count": 1}, "Voldemorts": {"_count": 1}, "anything": {"_count": 4}, "theyd": {"_count": 2}, "anyones": {"_count": 2}, "ever": {"_count": 2}, "": {"_count": 1}, "Ive": {"_count": 2}, "truth": {"_count": 1}, "Dad": {"_count": 1}, "Sirius": {"_count": 3}, "his": {"_count": 2}, "Cedric": {"_count": 1}, "someones": {"_count": 1}, "Voldemort": {"_count": 4}, "however": {"_count": 1}, "Dudleys": {"_count": 1}, "their": {"_count": 1}, "Mum": {"_count": 1}, "some": {"_count": 1}, "Harrys": {"_count": 1}, "Dumbledores": {"_count": 1}, "Ginnys": {"_count": 1}, "my": {"_count": 1}, "in": {"_count": 1}, "Luna": {"_count": 1}, "shed": {"_count": 2}, "anybody": {"_count": 1}, "Zacharias": {"_count": 1}, "somebody": {"_count": 2}, "death": {"_count": 1}, "so": {"_count": 2}, "Ginny": {"_count": 1}, "Potter": {"_count": 1}, "Dudley": {"_count": 1}, "these": {"_count": 2}, "Thicknesse": {"_count": 1}, "Yaxley": {"_count": 1}, "He": {"_count": 1}, "surviving": {"_count": 1}, "Dean": {"_count": 1}, "theyre": {"_count": 1}}, "Most": {"_count": 49, "of": {"_count": 26}, "mysterious": {"_count": 1}, "unfortunately": {"_count": 2}, "wizards": {"_count": 2}, "unluckily": {"_count": 1}, "important": {"_count": 1}, "people": {"_count": 8}, "unfortunate": {"_count": 1}, "looked": {"_count": 1}, "Ravenclaws": {"_count": 1}, "go": {"_count": 1}, "seem": {"_count": 1}, "Harry": {"_count": 1}, "celebrated": {"_count": 1}, "must": {"_count": 1}}, "Hed": {"_count": 55, "forgotten": {"_count": 1}, "never": {"_count": 7}, "have": {"_count": 9}, "lived": {"_count": 1}, "screamed": {"_count": 1}, "just": {"_count": 5}, "lost": {"_count": 1}, "be": {"_count": 3}, "done": {"_count": 4}, "really": {"_count": 1}, "die": {"_count": 1}, "had": {"_count": 1}, "been": {"_count": 2}, "see": {"_count": 1}, "probably": {"_count": 4}, "look": {"_count": 1}, "made": {"_count": 1}, "give": {"_count": 1}, "got": {"_count": 1}, "deserve": {"_count": 1}, "love": {"_count": 1}, "better": {"_count": 1}, "heard": {"_count": 1}, "like": {"_count": 1}, "given": {"_count": 1}, "play": {"_count": 1}, "tell": {"_count": 1}, "already": {"_count": 1}}, "Fear": {"_count": 4, "flooded": {"_count": 1}, "of": {"_count": 1}, "jabbed": {"_count": 1}, "and": {"_count": 1}}, "no": {"_count": 32, "he": {"_count": 1}, "theyre": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 12}, "Ill": {"_count": 1}, "one": {"_count": 3}, "there": {"_count": 1}, "I": {"_count": 3}, "pushing": {"_count": 1}, "use": {"_count": 1}, "said": {"_count": 1}, "idea": {"_count": 2}, "help": {"_count": 1}, "sense": {"_count": 1}, "Ron": {"_count": 1}, "no": {"_count": 1}}, "Potter": {"_count": 80, "wasnt": {"_count": 1}, "The": {"_count": 3}, "": {"_count": 12}, "Room": {"_count": 1}, "did": {"_count": 1}, "where": {"_count": 1}, "follow": {"_count": 1}, "this": {"_count": 1}, "come": {"_count": 1}, "youve": {"_count": 1}, "and": {"_count": 2}, "Harry": {"_count": 2}, "had": {"_count": 1}, "I": {"_count": 4}, "you": {"_count": 5}, "trusted": {"_count": 1}, "Bell": {"_count": 1}, "said": {"_count": 2}, "is": {"_count": 3}, "Moody": {"_count": 1}, "fought": {"_count": 1}, "attacked": {"_count": 1}, "has": {"_count": 7}, "leave": {"_count": 1}, "take": {"_count": 1}, "the": {"_count": 3}, "he": {"_count": 1}, "that": {"_count": 3}, "can": {"_count": 1}, "saw": {"_count": 2}, "believed": {"_count": 1}, "ran": {"_count": 1}, "what": {"_count": 2}, "she": {"_count": 1}, "when": {"_count": 1}, "your": {"_count": 1}, "precious": {"_count": 1}, "later": {"_count": 1}, "youre": {"_count": 1}, "it": {"_count": 1}, "were": {"_count": 1}, "will": {"_count": 1}, "doesnt": {"_count": 1}}, "Come": {"_count": 218, "to": {"_count": 6}, "on": {"_count": 121}, "back": {"_count": 7}, "here": {"_count": 14}, "in": {"_count": 15}, "Draco": {"_count": 1}, "Severus": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 6}, "with": {"_count": 5}, "off": {"_count": 7}, "now": {"_count": 3}, "and": {"_count": 11}, "Dobby": {"_count": 1}, "along": {"_count": 5}, "But": {"_count": 1}, "Wormtail": {"_count": 1}, "said": {"_count": 3}, "ON": {"_count": 2}, "the": {"_count": 1}, "out": {"_count": 3}, "early": {"_count": 1}, "over": {"_count": 2}}, "Or": {"_count": 56, "Harold": {"_count": 1}, "at": {"_count": 1}, "both": {"_count": 1}, "were": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 2}, "maybe": {"_count": 3}, "we": {"_count": 1}, "I": {"_count": 3}, "did": {"_count": 1}, "have": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 4}, "well": {"_count": 1}, "A": {"_count": 1}, "they": {"_count": 2}, "it": {"_count": 1}, "else": {"_count": 1}, "that": {"_count": 1}, "rather": {"_count": 1}, "on": {"_count": 1}, "even": {"_count": 1}, "what": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 1}, "perhaps": {"_count": 2}, "why": {"_count": 1}, "are": {"_count": 3}, "Ministry": {"_count": 1}, "dyou": {"_count": 3}, "has": {"_count": 1}, "would": {"_count": 2}, "herself": {"_count": 1}, "Slughorn": {"_count": 1}, "Or": {"_count": 1}, "Dobbin": {"_count": 1}, "hes": {"_count": 1}, "someone": {"_count": 1}, "she": {"_count": 1}, "is": {"_count": 1}}, "but": {"_count": 156, "all": {"_count": 3}, "how": {"_count": 4}, "I": {"_count": 13}, "he": {"_count": 21}, "Harry": {"_count": 5}, "hes": {"_count": 1}, "where": {"_count": 1}, "there": {"_count": 4}, "your": {"_count": 1}, "now": {"_count": 3}, "Miss": {"_count": 1}, "the": {"_count": 12}, "after": {"_count": 1}, "Lord": {"_count": 1}, "massive": {"_count": 1}, "youre": {"_count": 1}, "when": {"_count": 1}, "then": {"_count": 9}, "give": {"_count": 1}, "what": {"_count": 2}, "Im": {"_count": 3}, "itll": {"_count": 1}, "youll": {"_count": 2}, "it": {"_count": 4}, "they": {"_count": 3}, "dont": {"_count": 1}, "YouKnotuWho": {"_count": 1}, "would": {"_count": 1}, "Krum": {"_count": 1}, "Arthurs": {"_count": 1}, "well": {"_count": 1}, "maybe": {"_count": 1}, "whats": {"_count": 1}, "dragons": {"_count": 1}, "Harrys": {"_count": 1}, "at": {"_count": 3}, "still": {"_count": 3}, "if": {"_count": 3}, "somehow": {"_count": 1}, "never": {"_count": 1}, "": {"_count": 2}, "shes": {"_count": 1}, "might": {"_count": 1}, "no": {"_count": 5}, "we": {"_count": 1}, "as": {"_count": 2}, "Petunia": {"_count": 1}, "to": {"_count": 2}, "Fudge": {"_count": 1}, "students": {"_count": 1}, "Mr": {"_count": 1}, "its": {"_count": 2}, "this": {"_count": 2}, "you": {"_count": 3}, "Liechtenstein": {"_count": 1}, "thats": {"_count": 2}, "again": {"_count": 1}, "theyve": {"_count": 1}, "who": {"_count": 1}, "Dumbledore": {"_count": 1}, "Malfoy": {"_count": 1}, "triumph": {"_count": 1}, "unnecessary": {"_count": 1}, "that": {"_count": 1}}, "Sorry": {"_count": 68, "he": {"_count": 6}, "Harry": {"_count": 5}, "": {"_count": 18}, "Mum": {"_count": 1}, "Colin": {"_count": 1}, "I": {"_count": 8}, "to": {"_count": 2}, "Thats": {"_count": 1}, "dyou": {"_count": 1}, "Im": {"_count": 1}, "didnt": {"_count": 1}, "Professor": {"_count": 2}, "if": {"_count": 1}, "Perce": {"_count": 1}, "said": {"_count": 6}, "about": {"_count": 5}, "she": {"_count": 1}, "Molly": {"_count": 1}, "Sirius": {"_count": 1}, "repeated": {"_count": 1}, "sorry": {"_count": 1}, "Reducio": {"_count": 1}, "Bill": {"_count": 1}, "but": {"_count": 1}}, "On": {"_count": 138, "the": {"_count": 74}, "Friday": {"_count": 2}, "Saturday": {"_count": 4}, "top": {"_count": 3}, "Harrys": {"_count": 3}, "my": {"_count": 2}, "Halloween": {"_count": 2}, "their": {"_count": 3}, "Christmas": {"_count": 2}, "Madam": {"_count": 1}, "her": {"_count": 2}, "a": {"_count": 3}, "and": {"_count": 3}, "Professor": {"_count": 1}, "Snape": {"_count": 1}, "either": {"_count": 2}, "his": {"_count": 3}, "Thursday": {"_count": 1}, "Monday": {"_count": 1}, "your": {"_count": 2}, "three": {"_count": 3}, "Fudges": {"_count": 1}, "approaching": {"_count": 1}, "duty": {"_count": 1}, "real": {"_count": 1}, "these": {"_count": 1}, "on": {"_count": 1}, "no": {"_count": 1}, "this": {"_count": 1}, "what": {"_count": 1}, "they": {"_count": 1}, "those": {"_count": 1}, "Ministry": {"_count": 1}, "Dumbledores": {"_count": 1}, "one": {"_count": 3}, "that": {"_count": 1}, "every": {"_count": 1}, "Jamess": {"_count": 1}, "Harry": {"_count": 1}}, "Shoo": {"_count": 1, "": {"_count": 1}}, "Was": {"_count": 71, "this": {"_count": 7}, "he": {"_count": 14}, "it": {"_count": 24}, "that": {"_count": 7}, "giving": {"_count": 1}, "inflating": {"_count": 1}, "the": {"_count": 3}, "Professor": {"_count": 2}, "anyone": {"_count": 1}, "Hagrid": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 3}, "she": {"_count": 1}, "Harry": {"_count": 1}, "dat": {"_count": 1}, "I": {"_count": 2}, "": {"_count": 1}}, "Trying": {"_count": 14, "to": {"_count": 7}, "hard": {"_count": 1}, "valiantly": {"_count": 1}, "very": {"_count": 1}, "not": {"_count": 3}, "with": {"_count": 1}}, "She": {"_count": 1012, "told": {"_count": 11}, "too": {"_count": 2}, "looked": {"_count": 65}, "jerked": {"_count": 2}, "threw": {"_count": 5}, "cant": {"_count": 6}, "let": {"_count": 5}, "clutched": {"_count": 1}, "held": {"_count": 7}, "and": {"_count": 12}, "pointed": {"_count": 5}, "kissed": {"_count": 2}, "hasnt": {"_count": 10}, "was": {"_count": 173}, "had": {"_count": 66}, "sat": {"_count": 6}, "pulled": {"_count": 8}, "left": {"_count": 8}, "patrolled": {"_count": 1}, "sometimes": {"_count": 1}, "turned": {"_count": 22}, "wrenched": {"_count": 2}, "opened": {"_count": 7}, "followed": {"_count": 2}, "grabbed": {"_count": 1}, "stood": {"_count": 4}, "hadnt": {"_count": 2}, "mustve": {"_count": 1}, "might": {"_count": 4}, "would": {"_count": 3}, "obviously": {"_count": 2}, "pushed": {"_count": 3}, "eyed": {"_count": 1}, "bent": {"_count": 4}, "raised": {"_count": 7}, "landed": {"_count": 2}, "struck": {"_count": 1}, "took": {"_count": 22}, "broke": {"_count": 2}, "ruffled": {"_count": 1}, "can": {"_count": 2}, "never": {"_count": 2}, "dived": {"_count": 1}, "nodded": {"_count": 5}, "leered": {"_count": 1}, "ran": {"_count": 3}, "sounded": {"_count": 8}, "didnt": {"_count": 17}, "gave": {"_count": 17}, "haunts": {"_count": 2}, "waved": {"_count": 5}, "approached": {"_count": 1}, "stalked": {"_count": 2}, "used": {"_count": 3}, "walked": {"_count": 7}, "seemed": {"_count": 11}, "tapped": {"_count": 2}, "rubbed": {"_count": 1}, "rolled": {"_count": 2}, "climbed": {"_count": 1}, "knew": {"_count": 5}, "wont": {"_count": 4}, "strangled": {"_count": 1}, "set": {"_count": 2}, "saw": {"_count": 1}, "struggled": {"_count": 1}, "put": {"_count": 3}, "stopped": {"_count": 4}, "bought": {"_count": 3}, "drew": {"_count": 4}, "leapt": {"_count": 3}, "delighted": {"_count": 1}, "also": {"_count": 2}, "burped": {"_count": 1}, "deserved": {"_count": 2}, "has": {"_count": 3}, "went": {"_count": 4}, "finally": {"_count": 1}, "settled": {"_count": 2}, "lowered": {"_count": 2}, "regrew": {"_count": 1}, "got": {"_count": 5}, "paused": {"_count": 2}, "stared": {"_count": 7}, "dropped": {"_count": 6}, "examined": {"_count": 1}, "wants": {"_count": 5}, "doesnt": {"_count": 7}, "er": {"_count": 3}, "continued": {"_count": 4}, "smiled": {"_count": 6}, "glanced": {"_count": 5}, "slammed": {"_count": 2}, "couldve": {"_count": 1}, "says": {"_count": 11}, "made": {"_count": 2}, "straightened": {"_count": 2}, "now": {"_count": 2}, "placed": {"_count": 1}, "checked": {"_count": 2}, "said": {"_count": 15}, "did": {"_count": 11}, "nipped": {"_count": 2}, "reckons": {"_count": 2}, "reached": {"_count": 4}, "caught": {"_count": 4}, "just": {"_count": 4}, "tried": {"_count": 3}, "brandished": {"_count": 2}, "read": {"_count": 2}, "spoke": {"_count": 1}, "noticed": {"_count": 1}, "stands": {"_count": 1}, "hooted": {"_count": 1}, "is": {"_count": 6}, "wasnt": {"_count": 4}, "must": {"_count": 4}, "kept": {"_count": 3}, "wore": {"_count": 1}, "unsnapped": {"_count": 1}, "shot": {"_count": 2}, "cleaned": {"_count": 1}, "bustled": {"_count": 2}, "dissolved": {"_count": 1}, "seems": {"_count": 1}, "jus": {"_count": 1}, "shouldve": {"_count": 1}, "really": {"_count": 1}, "slapped": {"_count": 1}, "wasn": {"_count": 1}, "led": {"_count": 5}, "definitely": {"_count": 2}, "Ron": {"_count": 1}, "buried": {"_count": 1}, "seized": {"_count": 2}, "died": {"_count": 1}, "swayed": {"_count": 1}, "appeared": {"_count": 3}, "shrieked": {"_count": 1}, "unfolded": {"_count": 2}, "slowly": {"_count": 1}, "moved": {"_count": 4}, "blinked": {"_count": 1}, "merely": {"_count": 3}, "persuaded": {"_count": 2}, "pitied": {"_count": 1}, "came": {"_count": 4}, "heard": {"_count": 1}, "confronted": {"_count": 1}, "spent": {"_count": 1}, "rounded": {"_count": 1}, "hugged": {"_count": 1}, "sank": {"_count": 1}, "swallowed": {"_count": 2}, "screwed": {"_count": 1}, "snatched": {"_count": 1}, "stepped": {"_count": 3}, "pressed": {"_count": 1}, "smirked": {"_count": 1}, "certainly": {"_count": 1}, "gestured": {"_count": 2}, "slid": {"_count": 2}, "closed": {"_count": 3}, "retreated": {"_count": 1}, "laughed": {"_count": 3}, "works": {"_count": 1}, "believes": {"_count": 1}, "thinks": {"_count": 4}, "rapped": {"_count": 1}, "pounded": {"_count": 1}, "handed": {"_count": 2}, "coaxed": {"_count": 1}, "folded": {"_count": 2}, "gets": {"_count": 1}, "needs": {"_count": 1}, "then": {"_count": 4}, "cornered": {"_count": 1}, "rummaged": {"_count": 1}, "knows": {"_count": 4}, "hurried": {"_count": 1}, "shouldnt": {"_count": 1}, "gulped": {"_count": 1}, "Harry": {"_count": 4}, "still": {"_count": 3}, "giggled": {"_count": 1}, "strode": {"_count": 2}, "passed": {"_count": 3}, "shook": {"_count": 5}, "wanted": {"_count": 1}, "hiccuped": {"_count": 3}, "does": {"_count": 2}, "probably": {"_count": 1}, "no": {"_count": 2}, "glared": {"_count": 2}, "scowled": {"_count": 1}, "the": {"_count": 1}, "lurked": {"_count": 1}, "gazed": {"_count": 1}, "hitched": {"_count": 2}, "leaned": {"_count": 3}, "should": {"_count": 1}, "sighed": {"_count": 2}, "hoisted": {"_count": 1}, "towered": {"_count": 1}, "hated": {"_count": 1}, "started": {"_count": 1}, "well": {"_count": 1}, "promised": {"_count": 1}, "however": {"_count": 1}, "keeled": {"_count": 1}, "aimed": {"_count": 1}, "screamed": {"_count": 3}, "reacted": {"_count": 1}, "may": {"_count": 1}, "winced": {"_count": 1}, "shrugged": {"_count": 1}, "scratched": {"_count": 1}, "crumpled": {"_count": 1}, "quieted": {"_count": 1}, "flung": {"_count": 1}, "rearranged": {"_count": 1}, "will": {"_count": 2}, "keeps": {"_count": 2}, "only": {"_count": 1}, "swung": {"_count": 1}, "jumped": {"_count": 1}, "gripped": {"_count": 1}, "hesitated": {"_count": 3}, "flapped": {"_count": 1}, "watched": {"_count": 1}, "appears": {"_count": 1}, "could": {"_count": 4}, "wouldnt": {"_count": 2}, "invited": {"_count": 1}, "squinted": {"_count": 1}, "knocked": {"_count": 2}, "patted": {"_count": 1}, "snogged": {"_count": 1}, "raced": {"_count": 1}, "barely": {"_count": 2}, "blushed": {"_count": 1}, "thrust": {"_count": 1}, "hooked": {"_count": 1}, "underlines": {"_count": 1}, "met": {"_count": 1}, "clearly": {"_count": 1}, "blew": {"_count": 1}, "ignored": {"_count": 1}, "disregarded": {"_count": 1}, "suppressed": {"_count": 1}, "cackled": {"_count": 1}, "therefore": {"_count": 1}, "ought": {"_count": 2}, "coughed": {"_count": 1}, "consulted": {"_count": 1}, "cried": {"_count": 1}, "fumbled": {"_count": 2}, "lunged": {"_count": 1}, "fell": {"_count": 1}, "smelled": {"_count": 1}, "peered": {"_count": 1}, "repeated": {"_count": 1}, "tugged": {"_count": 1}, "picked": {"_count": 1}, "": {"_count": 1}, "beamed": {"_count": 1}, "appealed": {"_count": 1}, "cut": {"_count": 1}, "kicked": {"_count": 1}, "backed": {"_count": 1}, "tasted": {"_count": 1}, "liked": {"_count": 1}, "sent": {"_count": 2}, "aint": {"_count": 1}, "refused": {"_count": 1}, "marched": {"_count": 1}, "halted": {"_count": 1}, "concealed": {"_count": 1}}, "Although": {"_count": 18, "owls": {"_count": 1}, "he": {"_count": 2}, "Hagrid": {"_count": 1}, "this": {"_count": 1}, "Slytherin": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 3}, "Snape": {"_count": 1}, "Harry": {"_count": 4}, "rather": {"_count": 1}, "how": {"_count": 1}, "Lupin": {"_count": 1}}, "Experts": {"_count": 1, "are": {"_count": 1}}, "And": {"_count": 1430, "now": {"_count": 66}, "I": {"_count": 75}, "theyve": {"_count": 2}, "where": {"_count": 4}, "dont": {"_count": 13}, "come": {"_count": 1}, "it": {"_count": 23}, "they": {"_count": 17}, "this": {"_count": 17}, "theres": {"_count": 8}, "then": {"_count": 147}, "what": {"_count": 48}, "thats": {"_count": 9}, "of": {"_count": 7}, "tried": {"_count": 1}, "look": {"_count": 2}, "have": {"_count": 3}, "she": {"_count": 27}, "my": {"_count": 4}, "so": {"_count": 26}, "youve": {"_count": 5}, "there": {"_count": 19}, "here": {"_count": 11}, "you": {"_count": 66}, "a": {"_count": 14}, "finally": {"_count": 1}, "its": {"_count": 10}, "saying": {"_count": 1}, "women": {"_count": 2}, "the": {"_count": 51}, "shes": {"_count": 5}, "that": {"_count": 16}, "send": {"_count": 1}, "youre": {"_count": 8}, "slowly": {"_count": 1}, "Ron": {"_count": 7}, "no": {"_count": 3}, "speaking": {"_count": 5}, "we": {"_count": 18}, "when": {"_count": 10}, "twenty": {"_count": 1}, "Firenze": {"_count": 1}, "Neville": {"_count": 1}, "did": {"_count": 6}, "Gryffindor": {"_count": 1}, "wed": {"_count": 1}, "he": {"_count": 86}, "Harry": {"_count": 28}, "sir": {"_count": 2}, "suddenly": {"_count": 1}, "if": {"_count": 30}, "Dudley": {"_count": 2}, "before": {"_count": 3}, "someone": {"_count": 1}, "Im": {"_count": 8}, "be": {"_count": 3}, "your": {"_count": 11}, "not": {"_count": 3}, "itd": {"_count": 1}, "whichever": {"_count": 1}, "Lockhart": {"_count": 2}, "his": {"_count": 3}, "Hermiones": {"_count": 1}, "ignoring": {"_count": 1}, "dangerous": {"_count": 1}, "were": {"_count": 3}, "how": {"_count": 15}, "from": {"_count": 4}, "everyone": {"_count": 2}, "bow": {"_count": 1}, "in": {"_count": 14}, "obviously": {"_count": 1}, "Millicent": {"_count": 1}, "whatre": {"_count": 1}, "people": {"_count": 1}, "Father": {"_count": 1}, "some": {"_count": 1}, "All": {"_count": 1}, "while": {"_count": 6}, "after": {"_count": 5}, "may": {"_count": 1}, "are": {"_count": 3}, "just": {"_count": 5}, "out": {"_count": 4}, "Riddle": {"_count": 1}, "on": {"_count": 4}, "as": {"_count": 17}, "beneath": {"_count": 1}, "Mrs": {"_count": 1}, "whats": {"_count": 8}, "between": {"_count": 1}, "quite": {"_count": 2}, "why": {"_count": 9}, "Ginny": {"_count": 3}, "twice": {"_count": 1}, "Ive": {"_count": 8}, "something": {"_count": 1}, "cowering": {"_count": 1}, "imagine": {"_count": 1}, "still": {"_count": 8}, "together": {"_count": 1}, "thirdly": {"_count": 2}, "youll": {"_count": 2}, "lets": {"_count": 3}, "with": {"_count": 9}, "without": {"_count": 6}, "theyre": {"_count": 4}, "weve": {"_count": 8}, "stop": {"_count": 1}, "last": {"_count": 3}, "therell": {"_count": 1}, "underneath": {"_count": 1}, "around": {"_count": 1}, "to": {"_count": 6}, "Snape": {"_count": 5}, "me": {"_count": 2}, "Scabbers": {"_count": 1}, "Id": {"_count": 4}, "Filch": {"_count": 2}, "walked": {"_count": 1}, "": {"_count": 16}, "at": {"_count": 5}, "many": {"_count": 1}, "get": {"_count": 1}, "Black": {"_count": 1}, "despite": {"_count": 1}, "neither": {"_count": 1}, "hes": {"_count": 6}, "sure": {"_count": 7}, "very": {"_count": 1}, "will": {"_count": 4}, "two": {"_count": 2}, "yet": {"_count": 14}, "any": {"_count": 1}, "does": {"_count": 1}, "Dumbledore": {"_count": 8}, "grinning": {"_count": 1}, "batteries": {"_count": 1}, "Wales": {"_count": 1}, "whore": {"_count": 1}, "Ludo": {"_count": 1}, "Ill": {"_count": 5}, "allow": {"_count": 1}, "within": {"_count": 1}, "Mostafa": {"_count": 1}, "yes": {"_count": 2}, "unless": {"_count": 3}, "Volkov": {"_count": 1}, "up": {"_count": 1}, "Winky": {"_count": 2}, "tonight": {"_count": 1}, "remember": {"_count": 1}, "Krum": {"_count": 2}, "since": {"_count": 2}, "for": {"_count": 4}, "Bagmans": {"_count": 1}, "Dobby": {"_count": 2}, "Professor": {"_count": 1}, "heres": {"_count": 1}, "ze": {"_count": 1}, "ten": {"_count": 1}, "Hagrid": {"_count": 2}, "these": {"_count": 2}, "helped": {"_count": 1}, "Fudge": {"_count": 1}, "several": {"_count": 1}, "one": {"_count": 2}, "Bertha": {"_count": 1}, "both": {"_count": 2}, "Viktor": {"_count": 1}, "theyll": {"_count": 1}, "all": {"_count": 5}, "keep": {"_count": 1}, "whos": {"_count": 1}, "anyway": {"_count": 4}, "who": {"_count": 4}, "Arthur": {"_count": 1}, "about": {"_count": 2}, "guess": {"_count": 3}, "Anthony": {"_count": 1}, "never": {"_count": 1}, "always": {"_count": 1}, "abandoning": {"_count": 1}, "welcome": {"_count": 1}, "sit": {"_count": 1}, "again": {"_count": 2}, "do": {"_count": 4}, "Katie": {"_count": 1}, "by": {"_count": 1}, "once": {"_count": 5}, "nobody": {"_count": 3}, "those": {"_count": 1}, "Umbridge": {"_count": 1}, "Harrys": {"_count": 3}, "banning": {"_count": 1}, "was": {"_count": 2}, "quickly": {"_count": 2}, "tell": {"_count": 1}, "oh": {"_count": 1}, "listen": {"_count": 1}, "Vol": {"_count": 1}, "off": {"_count": 1}, "Wood": {"_count": 1}, "though": {"_count": 1}, "unbelievably": {"_count": 1}, "dim": {"_count": 1}, "somehow": {"_count": 1}, "is": {"_count": 2}, "Mr": {"_count": 1}, "said": {"_count": 1}, "stopped": {"_count": 1}, "Peeves": {"_count": 1}, "Davies": {"_count": 1}, "our": {"_count": 2}, "Crabbe": {"_count": 1}, "taking": {"_count": 2}, "feeling": {"_count": 1}, "whad": {"_count": 1}, "Sirius": {"_count": 1}, "Kreacher": {"_count": 2}, "whispered": {"_count": 1}, "whatever": {"_count": 1}, "notice": {"_count": 1}, "ask": {"_count": 1}, "unfortunately": {"_count": 1}, "Herbert": {"_count": 1}, "Bellatrix": {"_count": 1}, "through": {"_count": 1}, "should": {"_count": 1}, "Ambrosius": {"_count": 1}, "lastly": {"_count": 3}, "well": {"_count": 4}, "incidentally": {"_count": 2}, "let": {"_count": 1}, "Hermione": {"_count": 3}, "times": {"_count": 1}, "Merope": {"_count": 1}, "an": {"_count": 2}, "also": {"_count": 1}, "er": {"_count": 1}, "Borgin": {"_count": 1}, "nothing": {"_count": 1}, "Vaisey": {"_count": 1}, "turning": {"_count": 1}, "please": {"_count": 1}, "Morfin": {"_count": 1}, "maybe": {"_count": 1}, "\u2018augury": {"_count": 1}, "Odo": {"_count": 1}, "isnt": {"_count": 1}, "obediently": {"_count": 1}, "pulling": {"_count": 1}, "although": {"_count": 1}, "even": {"_count": 1}, "yours": {"_count": 1}, "under": {"_count": 1}, "Fleurs": {"_count": 1}, "youd": {"_count": 2}, "Master": {"_count": 2}, "beyond": {"_count": 1}, "bring": {"_count": 1}, "mine": {"_count": 1}, "tears": {"_count": 1}, "along": {"_count": 1}, "Death": {"_count": 1}, "desire": {"_count": 1}, "beside": {"_count": 1}, "YouKnowWho": {"_count": 1}, "Grindelwald": {"_count": 1}, "another": {"_count": 1}, "Hogwarts": {"_count": 1}, "looking": {"_count": 1}, "Albus": {"_count": 1}, "none": {"_count": 1}, "Snargaluff": {"_count": 1}, "wouldnt": {"_count": 1}, "Voldemort": {"_count": 3}, "Severus": {"_count": 3}, "Ariana": {"_count": 1}}, "Going": {"_count": 9, "to": {"_count": 8}, "back": {"_count": 1}}, "Viewers": {"_count": 1, "as": {"_count": 1}}, "Shooting": {"_count": 2, "stars": {"_count": 2}}, "Er": {"_count": 131, "Petunia": {"_count": 1}, "yes": {"_count": 6}, "no": {"_count": 3}, "Uncle": {"_count": 2}, "I": {"_count": 6}, "okay": {"_count": 1}, "all": {"_count": 1}, "have": {"_count": 1}, "hello": {"_count": 1}, "said": {"_count": 14}, "Professor": {"_count": 3}, "sorry": {"_count": 1}, "arent": {"_count": 1}, "well": {"_count": 4}, "Minister": {"_count": 1}, "The": {"_count": 1}, "because": {"_count": 1}, "What": {"_count": 1}, "shall": {"_count": 1}, "how": {"_count": 2}, "are": {"_count": 3}, "Mr": {"_count": 1}, "perhaps": {"_count": 1}, "Snape": {"_count": 1}, "stranger": {"_count": 1}, "why": {"_count": 4}, "splinched": {"_count": 1}, "is": {"_count": 2}, "but": {"_count": 1}, "eau": {"_count": 1}, "yeh": {"_count": 1}, "": {"_count": 26}, "yeah": {"_count": 3}, "Cho": {"_count": 1}, "he": {"_count": 2}, "right": {"_count": 4}, "Licorice": {"_count": 1}, "thats": {"_count": 1}, "thanks": {"_count": 2}, "not": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "Silenciol": {"_count": 1}, "thestralsl": {"_count": 1}, "dyou": {"_count": 1}, "hi": {"_count": 1}, "good": {"_count": 2}, "Hagrids": {"_count": 1}, "now": {"_count": 1}, "Kreacher": {"_count": 1}, "congratulations": {"_count": 1}, "Im": {"_count": 2}, "may": {"_count": 1}, "my": {"_count": 1}, "sort": {"_count": 1}, "wohnt": {"_count": 1}, "whats": {"_count": 1}, "what": {"_count": 2}}, "After": {"_count": 158, "all": {"_count": 17}, "lunch": {"_count": 1}, "asking": {"_count": 1}, "a": {"_count": 57}, "burning": {"_count": 1}, "what": {"_count": 5}, "taking": {"_count": 1}, "half": {"_count": 3}, "dinner": {"_count": 4}, "that": {"_count": 5}, "ten": {"_count": 3}, "breakfast": {"_count": 3}, "you": {"_count": 6}, "me": {"_count": 2}, "boggarts": {"_count": 1}, "the": {"_count": 4}, "about": {"_count": 4}, "fifteen": {"_count": 1}, "hed": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}, "several": {"_count": 5}, "youd": {"_count": 1}, "looking": {"_count": 1}, "five": {"_count": 2}, "lying": {"_count": 1}, "putting": {"_count": 1}, "Im": {"_count": 1}, "months": {"_count": 1}, "weve": {"_count": 1}, "they": {"_count": 1}, "break": {"_count": 1}, "two": {"_count": 3}, "fixing": {"_count": 1}, "letting": {"_count": 1}, "Umbridge": {"_count": 1}, "three": {"_count": 1}, "an": {"_count": 2}, "glancing": {"_count": 2}, "theyve": {"_count": 1}, "opening": {"_count": 1}, "squinting": {"_count": 1}, "everyones": {"_count": 1}, "another": {"_count": 2}, "Hermione": {"_count": 1}, "their": {"_count": 1}, "I": {"_count": 1}}, "No": {"_count": 616, "she": {"_count": 10}, "thank": {"_count": 2}, "one": {"_count": 39}, "problems": {"_count": 1}, "he": {"_count": 21}, "well": {"_count": 3}, "post": {"_count": 1}, "arguments": {"_count": 1}, "said": {"_count": 83}, "two": {"_count": 1}, "no": {"_count": 32}, "dont": {"_count": 5}, "Ive": {"_count": 2}, "I": {"_count": 39}, "moren": {"_count": 1}, "sooner": {"_count": 7}, "Crabbe": {"_count": 1}, "not": {"_count": 4}, "we": {"_count": 4}, "sign": {"_count": 5}, "": {"_count": 66}, "wonder": {"_count": 6}, "more": {"_count": 7}, "were": {"_count": 2}, "listen": {"_count": 4}, "but": {"_count": 3}, "doubt": {"_count": 6}, "it": {"_count": 8}, "cards": {"_count": 1}, "croaked": {"_count": 1}, "sir": {"_count": 2}, "idea": {"_count": 11}, "ones": {"_count": 12}, "thanks": {"_count": 5}, "magic": {"_count": 3}, "Harry": {"_count": 16}, "honestly": {"_count": 2}, "second": {"_count": 1}, "Hermione": {"_count": 3}, "its": {"_count": 10}, "point": {"_count": 6}, "Fawkes": {"_count": 1}, "student": {"_count": 2}, "Dumbledore": {"_count": 2}, "Im": {"_count": 12}, "afternoon": {"_count": 1}, "dress": {"_count": 1}, "need": {"_count": 4}, "all": {"_count": 1}, "form": {"_count": 2}, "way": {"_count": 8}, "broomstick": {"_count": 1}, "Potter": {"_count": 1}, "part": {"_count": 1}, "breath": {"_count": 1}, "blood": {"_count": 1}, "cats": {"_count": 1}, "go": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 2}, "matter": {"_count": 5}, "consideration": {"_count": 1}, "this": {"_count": 2}, "really": {"_count": 1}, "ambition": {"_count": 1}, "youre": {"_count": 3}, "He": {"_count": 1}, "nonhuman": {"_count": 1}, "master": {"_count": 1}, "sound": {"_count": 1}, "surprises": {"_count": 1}, "seriously": {"_count": 1}, "longer": {"_count": 1}, "hes": {"_count": 6}, "respect": {"_count": 1}, "they": {"_count": 5}, "don": {"_count": 1}, "excuses": {"_count": 1}, "Barty": {"_count": 1}, "chance": {"_count": 2}, "Ritas": {"_count": 1}, "of": {"_count": 5}, "thats": {"_count": 2}, "my": {"_count": 2}, "you": {"_count": 13}, "spell": {"_count": 1}, "yehre": {"_count": 1}, "good": {"_count": 1}, "Andromedas": {"_count": 1}, "problem": {"_count": 10}, "trouble": {"_count": 2}, "look": {"_count": 1}, "new": {"_count": 1}, "password": {"_count": 1}, "come": {"_count": 2}, "Student": {"_count": 1}, "Professor": {"_count": 3}, "marks": {"_count": 1}, "Quidditch": {"_count": 2}, "real": {"_count": 1}, "Seeker": {"_count": 1}, "cure": {"_count": 1}, "like": {"_count": 1}, "fewer": {"_count": 2}, "sorry": {"_count": 2}, "lets": {"_count": 1}, "get": {"_count": 1}, "Bella": {"_count": 1}, "what": {"_count": 1}, "sighed": {"_count": 1}, "shortcuts": {"_count": 1}, "shes": {"_count": 1}, "nothing": {"_count": 2}, "youll": {"_count": 1}, "book": {"_count": 1}, "gasped": {"_count": 1}, "offense": {"_count": 2}, "Muggle": {"_count": 1}, "harm": {"_count": 1}, "Draco": {"_count": 1}, "Unforgivable": {"_count": 1}, "charm": {"_count": 1}, "other": {"_count": 1}, "actually": {"_count": 2}, "volunteers": {"_count": 1}, "higher": {"_count": 1}, "NO": {"_count": 1}, "news": {"_count": 1}, "agreed": {"_count": 2}, "deaths": {"_count": 1}, "wait": {"_count": 1}, "antlers": {"_count": 1}, "deal": {"_count": 1}, "snarled": {"_count": 1}, "Without": {"_count": 1}, "use": {"_count": 1}, "sword": {"_count": 1}, "surely": {"_count": 1}, "kidding": {"_count": 1}, "difference": {"_count": 1}}, "Why": {"_count": 308, "": {"_count": 53}, "not": {"_count": 18}, "were": {"_count": 4}, "would": {"_count": 11}, "is": {"_count": 6}, "are": {"_count": 13}, "should": {"_count": 5}, "isnt": {"_count": 6}, "arent": {"_count": 6}, "dont": {"_count": 24}, "me": {"_count": 1}, "do": {"_count": 13}, "havent": {"_count": 1}, "cant": {"_count": 12}, "hadnt": {"_count": 8}, "didnt": {"_count": 19}, "couldnt": {"_count": 6}, "demanded": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 6}, "go": {"_count": 1}, "dyou": {"_count": 2}, "its": {"_count": 2}, "all": {"_count": 1}, "so": {"_count": 2}, "had": {"_count": 9}, "you": {"_count": 2}, "though": {"_count": 3}, "did": {"_count": 24}, "werent": {"_count": 2}, "he": {"_count": 3}, "does": {"_count": 4}, "yes": {"_count": 2}, "else": {"_count": 2}, "have": {"_count": 6}, "in": {"_count": 1}, "wasnt": {"_count": 1}, "what": {"_count": 3}, "I": {"_count": 4}, "whats": {"_count": 2}, "could": {"_count": 1}, "where": {"_count": 1}, "shouldnt": {"_count": 2}, "will": {"_count": 1}, "wouldnt": {"_count": 1}, "us": {"_count": 1}, "has": {"_count": 1}, "exactly": {"_count": 1}, "then": {"_count": 1}, "the": {"_count": 1}, "return": {"_count": 1}, "that": {"_count": 1}, "Madam": {"_count": 1}, "doesnt": {"_count": 2}, "said": {"_count": 1}, "even": {"_count": 1}}, "Owls": {"_count": 2, "": {"_count": 1}, "hooted": {"_count": 1}}, "shooting": {"_count": 2, "stars": {"_count": 2}}, "and": {"_count": 280, "there": {"_count": 6}, "leave": {"_count": 1}, "the": {"_count": 8}, "he": {"_count": 16}, "until": {"_count": 1}, "then": {"_count": 26}, "you": {"_count": 5}, "Voldemorts": {"_count": 2}, "all": {"_count": 2}, "what": {"_count": 5}, "once": {"_count": 2}, "if": {"_count": 7}, "as": {"_count": 3}, "I": {"_count": 18}, "Hermione": {"_count": 1}, "in": {"_count": 5}, "a": {"_count": 3}, "they": {"_count": 3}, "theres": {"_count": 2}, "sometimes": {"_count": 1}, "five": {"_count": 1}, "she": {"_count": 3}, "Fred": {"_count": 1}, "yet": {"_count": 4}, "shoved": {"_count": 1}, "of": {"_count": 3}, "Dumbledores": {"_count": 1}, "Voldemort": {"_count": 2}, "James": {"_count": 1}, "to": {"_count": 1}, "were": {"_count": 1}, "now": {"_count": 9}, "Im": {"_count": 2}, "thats": {"_count": 3}, "hardly": {"_count": 1}, "again": {"_count": 2}, "Troy": {"_count": 1}, "Mr": {"_count": 2}, "that": {"_count": 2}, "hed": {"_count": 1}, "shes": {"_count": 1}, "perhaps": {"_count": 1}, "Dumbledore": {"_count": 2}, "so": {"_count": 6}, "Sirius": {"_count": 1}, "containing": {"_count": 1}, "reading": {"_count": 1}, "this": {"_count": 5}, "": {"_count": 4}, "merpeople": {"_count": 1}, "almost": {"_count": 1}, "Invisibility": {"_count": 1}, "incidentally": {"_count": 1}, "his": {"_count": 2}, "when": {"_count": 3}, "Bertha": {"_count": 1}, "and": {"_count": 2}, "unless": {"_count": 2}, "Harry": {"_count": 7}, "shed": {"_count": 1}, "Lord": {"_count": 1}, "one": {"_count": 2}, "my": {"_count": 2}, "who": {"_count": 1}, "slowly": {"_count": 2}, "it": {"_count": 5}, "very": {"_count": 1}, "always": {"_count": 1}, "after": {"_count": 3}, "youll": {"_count": 1}, "some": {"_count": 1}, "Araminta": {"_count": 1}, "dear": {"_count": 1}, "Ill": {"_count": 2}, "another": {"_count": 2}, "P": {"_count": 1}, "at": {"_count": 1}, "its": {"_count": 3}, "Cho": {"_count": 1}, "no": {"_count": 1}, "Alicia": {"_count": 1}, "Gryffindor": {"_count": 1}, "Puceys": {"_count": 1}, "Katie": {"_count": 1}, "hes": {"_count": 1}, "Ive": {"_count": 1}, "Neville": {"_count": 1}, "sure": {"_count": 1}, "before": {"_count": 1}, "well": {"_count": 1}, "none": {"_count": 1}, "laughed": {"_count": 1}, "either": {"_count": 1}, "we": {"_count": 1}, "evasive": {"_count": 1}, "Longbottom": {"_count": 1}, "watch": {"_count": 1}, "even": {"_count": 1}, "didnt": {"_count": 1}, "take": {"_count": 1}, "Vaisey": {"_count": 1}, "good": {"_count": 1}, "her": {"_count": 2}, "may": {"_count": 1}, "someone": {"_count": 1}, "getting": {"_count": 1}, "try": {"_count": 1}, "stay": {"_count": 1}, "youre": {"_count": 1}, "oh": {"_count": 1}, "by": {"_count": 1}, "hour": {"_count": 1}, "your": {"_count": 1}, "for": {"_count": 1}, "hands": {"_count": 1}, "Ron": {"_count": 1}, "how": {"_count": 2}, "Cedric": {"_count": 1}, "YouKnowWhos": {"_count": 1}, "our": {"_count": 1}, "tiny": {"_count": 1}, "those": {"_count": 1}}, "So": {"_count": 551, "": {"_count": 52}, "he": {"_count": 25}, "proud": {"_count": 2}, "if": {"_count": 6}, "thats": {"_count": 17}, "you": {"_count": 41}, "this": {"_count": 7}, "what": {"_count": 39}, "its": {"_count": 7}, "did": {"_count": 10}, "put": {"_count": 1}, "weve": {"_count": 5}, "where": {"_count": 6}, "I": {"_count": 21}, "think": {"_count": 1}, "after": {"_count": 2}, "why": {"_count": 7}, "Malfoy": {"_count": 1}, "the": {"_count": 14}, "said": {"_count": 19}, "we": {"_count": 12}, "yeh": {"_count": 2}, "now": {"_count": 3}, "me": {"_count": 1}, "it": {"_count": 7}, "Harry": {"_count": 13}, "all": {"_count": 5}, "sorry": {"_count": 3}, "that": {"_count": 8}, "youve": {"_count": 4}, "long": {"_count": 1}, "well": {"_count": 2}, "whats": {"_count": 7}, "then": {"_count": 4}, "does": {"_count": 3}, "she": {"_count": 3}, "Im": {"_count": 2}, "with": {"_count": 2}, "tell": {"_count": 4}, "do": {"_count": 3}, "at": {"_count": 3}, "clever": {"_count": 1}, "no": {"_count": 1}, "was": {"_count": 2}, "there": {"_count": 2}, "noble": {"_count": 1}, "Dobby": {"_count": 1}, "anyway": {"_count": 3}, "many": {"_count": 2}, "they": {"_count": 8}, "Ginny": {"_count": 1}, "ends": {"_count": 1}, "Hermiones": {"_count": 2}, "have": {"_count": 4}, "so": {"_count": 2}, "Ill": {"_count": 3}, "am": {"_count": 1}, "Sirius": {"_count": 1}, "whyre": {"_count": 1}, "er": {"_count": 2}, "young": {"_count": 2}, "McGonagall": {"_count": 1}, "how": {"_count": 13}, "simple": {"_count": 1}, "one": {"_count": 1}, "were": {"_count": 6}, "when": {"_count": 4}, "can": {"_count": 1}, "theyre": {"_count": 2}, "of": {"_count": 1}, "been": {"_count": 1}, "far": {"_count": 3}, "go": {"_count": 2}, "Durmstrangll": {"_count": 1}, "straight": {"_count": 1}, "youll": {"_count": 1}, "Fleur": {"_count": 1}, "watch": {"_count": 1}, "make": {"_count": 1}, "basically": {"_count": 1}, "hes": {"_count": 1}, "old": {"_count": 1}, "Cornelius": {"_count": 1}, "tired": {"_count": 1}, "Bagman": {"_count": 1}, "whove": {"_count": 1}, "would": {"_count": 2}, "everyone": {"_count": 2}, "whys": {"_count": 1}, "youre": {"_count": 5}, "got": {"_count": 1}, "who": {"_count": 2}, "silly": {"_count": 1}, "Hogwarts": {"_count": 1}, "unless": {"_count": 2}, "has": {"_count": 1}, "according": {"_count": 1}, "anyone": {"_count": 1}, "whenever": {"_count": 1}, "even": {"_count": 2}, "maybe": {"_count": 1}, "top": {"_count": 1}, "is": {"_count": 3}, "dont": {"_count": 2}, "are": {"_count": 1}, "thas": {"_count": 1}, "Macnairs": {"_count": 1}, "Potter": {"_count": 5}, "Ive": {"_count": 1}, "She": {"_count": 1}, "Lupin": {"_count": 1}, "sneered": {"_count": 1}, "Granger": {"_count": 1}, "save": {"_count": 1}, "Ron": {"_count": 1}, "be": {"_count": 1}, "which": {"_count": 1}, "Voldemort": {"_count": 5}, "whereve": {"_count": 1}, "much": {"_count": 1}, "modest": {"_count": 1}, "Zabini": {"_count": 1}, "Merope": {"_count": 1}, "thank": {"_count": 1}, "shes": {"_count": 2}, "Apparition": {"_count": 1}, "good": {"_count": 1}, "Dumbledore": {"_count": 1}, "whens": {"_count": 1}, "hows": {"_count": 1}, "Tom": {"_count": 1}, "very": {"_count": 1}, "crude": {"_count": 1}, "feeble": {"_count": 1}, "let": {"_count": 1}, "thanks": {"_count": 1}, "great": {"_count": 1}, "Mundungus": {"_count": 1}, "these": {"_count": 1}, "your": {"_count": 2}, "Kreacher": {"_count": 1}, "Death": {"_count": 2}, "Dirk": {"_count": 1}, "Rita": {"_count": 1}, "people": {"_count": 1}, "close": {"_count": 2}, "au": {"_count": 1}, "youd": {"_count": 1}}, "Well": {"_count": 961, "I": {"_count": 86}, "theyre": {"_count": 11}, "give": {"_count": 1}, "said": {"_count": 35}, "get": {"_count": 8}, "its": {"_count": 18}, "no": {"_count": 6}, "Ill": {"_count": 7}, "now": {"_count": 16}, "well": {"_count": 25}, "there": {"_count": 11}, "send": {"_count": 2}, "if": {"_count": 15}, "done": {"_count": 16}, "my": {"_count": 3}, "": {"_count": 88}, "what": {"_count": 9}, "thats": {"_count": 21}, "in": {"_count": 4}, "have": {"_count": 16}, "Ive": {"_count": 10}, "be": {"_count": 20}, "yeah": {"_count": 9}, "just": {"_count": 5}, "here": {"_count": 4}, "hurry": {"_count": 2}, "Harry": {"_count": 10}, "Voldemorts": {"_count": 1}, "of": {"_count": 13}, "then": {"_count": 22}, "whoever": {"_count": 1}, "dear": {"_count": 2}, "that": {"_count": 19}, "gotta": {"_count": 1}, "all": {"_count": 4}, "go": {"_count": 6}, "youre": {"_count": 3}, "the": {"_count": 13}, "goodbye": {"_count": 3}, "youve": {"_count": 4}, "this": {"_count": 4}, "since": {"_count": 1}, "take": {"_count": 6}, "meet": {"_count": 1}, "it": {"_count": 20}, "we": {"_count": 19}, "do": {"_count": 3}, "er": {"_count": 3}, "make": {"_count": 1}, "as": {"_count": 8}, "you": {"_count": 29}, "he": {"_count": 26}, "Id": {"_count": 6}, "Percys": {"_count": 1}, "Petunia": {"_count": 1}, "really": {"_count": 2}, "third": {"_count": 1}, "Im": {"_count": 18}, "Arthur": {"_count": 1}, "look": {"_count": 4}, "they": {"_count": 12}, "tell": {"_count": 5}, "bring": {"_count": 2}, "come": {"_count": 7}, "thank": {"_count": 2}, "when": {"_count": 1}, "lets": {"_count": 8}, "Filch": {"_count": 2}, "see": {"_count": 12}, "honestly": {"_count": 1}, "good": {"_count": 7}, "stay": {"_count": 1}, "faking": {"_count": 1}, "hello": {"_count": 2}, "Scabbers": {"_count": 1}, "hand": {"_count": 1}, "run": {"_count": 1}, "weve": {"_count": 2}, "need": {"_count": 5}, "why": {"_count": 4}, "add": {"_count": 1}, "theyll": {"_count": 2}, "with": {"_count": 2}, "hear": {"_count": 1}, "theres": {"_count": 8}, "Mr": {"_count": 4}, "Father": {"_count": 1}, "move": {"_count": 1}, "at": {"_count": 5}, "Barty": {"_count": 1}, "shall": {"_count": 2}, "borrow": {"_count": 1}, "jus": {"_count": 1}, "yeh": {"_count": 1}, "youd": {"_count": 2}, "bye": {"_count": 1}, "Dumbledore": {"_count": 3}, "thanks": {"_count": 1}, "hes": {"_count": 3}, "times": {"_count": 2}, "maybe": {"_count": 6}, "explain": {"_count": 1}, "Ritas": {"_count": 1}, "dont": {"_count": 2}, "stop": {"_count": 1}, "help": {"_count": 1}, "start": {"_count": 2}, "tie": {"_count": 1}, "one": {"_count": 2}, "fight": {"_count": 1}, "thought": {"_count": 1}, "apparently": {"_count": 1}, "Molly": {"_count": 1}, "wed": {"_count": 2}, "congratulations": {"_count": 1}, "Moody": {"_count": 1}, "II": {"_count": 1}, "itd": {"_count": 1}, "were": {"_count": 2}, "Miss": {"_count": 1}, "sit": {"_count": 1}, "she": {"_count": 5}, "learn": {"_count": 1}, "once": {"_count": 2}, "put": {"_count": 1}, "carry": {"_count": 1}, "better": {"_count": 1}, "Sirius": {"_count": 2}, "111": {"_count": 1}, "theyve": {"_count": 1}, "actually": {"_count": 2}, "yes": {"_count": 3}, "like": {"_count": 2}, "change": {"_count": 1}, "Hagrid": {"_count": 1}, "obviously": {"_count": 2}, "night": {"_count": 1}, "wait": {"_count": 1}, "to": {"_count": 1}, "everyone": {"_count": 1}, "Potter": {"_count": 6}, "for": {"_count": 2}, "write": {"_count": 1}, "wouldnt": {"_count": 1}, "thatd": {"_count": 1}, "Minerva": {"_count": 1}, "Draco": {"_count": 2}, "angry": {"_count": 1}, "o": {"_count": 1}, "thas": {"_count": 1}, "try": {"_count": 1}, "save": {"_count": 1}, "draw": {"_count": 1}, "Ib": {"_count": 1}, "your": {"_count": 1}, "not": {"_count": 1}, "Grawpys": {"_count": 1}, "Wormtails": {"_count": 1}, "continue": {"_count": 1}, "on": {"_count": 2}, "how": {"_count": 1}, "anyway": {"_count": 1}, "trust": {"_count": 1}, "reallyl": {"_count": 1}, "without": {"_count": 1}, "off": {"_count": 1}, "who": {"_count": 2}, "his": {"_count": 1}, "something": {"_count": 1}, "perhaps": {"_count": 1}, "think": {"_count": 1}, "a": {"_count": 1}, "quite": {"_count": 1}, "whats": {"_count": 1}, "their": {"_count": 1}, "drink": {"_count": 1}, "although": {"_count": 1}, "soon": {"_count": 1}, "only": {"_count": 1}, "where": {"_count": 1}, "Yaxley": {"_count": 1}, "are": {"_count": 1}, "never": {"_count": 2}, "MadEye": {"_count": 1}, "guests": {"_count": 1}, "happy": {"_count": 1}, "Fred": {"_count": 1}, "exactly": {"_count": 1}, "worth": {"_count": 1}, "Voldemort": {"_count": 1}, "Kingsley": {"_count": 1}, "does": {"_count": 1}, "sorry": {"_count": 1}, "okay": {"_count": 1}, "boy": {"_count": 1}, "goblins": {"_count": 1}, "leave": {"_count": 1}, "more": {"_count": 1}, "Travers": {"_count": 1}, "so": {"_count": 1}, "reasoned": {"_count": 1}, "say": {"_count": 1}, "Severus": {"_count": 1}, "Grindelwald": {"_count": 1}, "find": {"_count": 1}}, "maybe": {"_count": 16, "": {"_count": 3}, "he": {"_count": 3}, "I": {"_count": 1}, "youve": {"_count": 1}, "Mr": {"_count": 1}, "Moody": {"_count": 1}, "thats": {"_count": 1}, "youd": {"_count": 1}, "a": {"_count": 1}, "said": {"_count": 1}, "its": {"_count": 1}, "we": {"_count": 1}}, "it": {"_count": 56, "was": {"_count": 23}, "means": {"_count": 1}, "whispered": {"_count": 1}, "hissed": {"_count": 1}, "is": {"_count": 6}, "cantve": {"_count": 1}, "looks": {"_count": 3}, "will": {"_count": 3}, "just": {"_count": 2}, "looked": {"_count": 1}, "had": {"_count": 1}, "might": {"_count": 1}, "moved": {"_count": 1}, "trembled": {"_count": 1}, "it": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 2}, "sounds": {"_count": 1}, "made": {"_count": 1}, "couldnt": {"_count": 1}, "mustve": {"_count": 1}, "": {"_count": 2}}, "you": {"_count": 89, "know": {"_count": 15}, "really": {"_count": 1}, "go": {"_count": 2}, "saw": {"_count": 2}, "have": {"_count": 6}, "were": {"_count": 5}, "didnt": {"_count": 2}, "and": {"_count": 1}, "could": {"_count": 1}, "did": {"_count": 3}, "see": {"_count": 2}, "wouldnt": {"_count": 2}, "wont": {"_count": 1}, "you": {"_count": 1}, "look": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 5}, "do": {"_count": 3}, "never": {"_count": 1}, "tell": {"_count": 1}, "dont": {"_count": 4}, "lot": {"_count": 1}, "show": {"_count": 1}, "haff": {"_count": 1}, "can": {"_count": 1}, "will": {"_count": 2}, "promised": {"_count": 1}, "must": {"_count": 1}, "cant": {"_count": 4}, "keep": {"_count": 1}, "all": {"_count": 1}, "got": {"_count": 1}, "may": {"_count": 1}, "think": {"_count": 2}, "shouldnt": {"_count": 1}, "two": {"_count": 1}, "cannot": {"_count": 1}, "had": {"_count": 1}, "came": {"_count": 1}, "are": {"_count": 2}, "saved": {"_count": 1}, "couldnt": {"_count": 1}, "wait": {"_count": 1}}, "her": {"_count": 2, "crowd": {"_count": 1}, "voice": {"_count": 1}}, "Instead": {"_count": 35, "he": {"_count": 15}, "of": {"_count": 10}, "echoing": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "they": {"_count": 2}, "his": {"_count": 1}, "a": {"_count": 1}, "there": {"_count": 1}, "two": {"_count": 1}}, "Whats": {"_count": 226, "his": {"_count": 1}, "this": {"_count": 9}, "the": {"_count": 37}, "your": {"_count": 5}, "up": {"_count": 27}, "that": {"_count": 39}, "going": {"_count": 20}, "he": {"_count": 13}, "all": {"_count": 3}, "been": {"_count": 2}, "happen": {"_count": 1}, "a": {"_count": 3}, "happening": {"_count": 3}, "bad": {"_count": 1}, "wrong": {"_count": 15}, "Potter": {"_count": 2}, "our": {"_count": 1}, "she": {"_count": 5}, "happened": {"_count": 9}, "Hogsmeade": {"_count": 1}, "under": {"_count": 1}, "Scabbers": {"_count": 1}, "my": {"_count": 1}, "Snape": {"_count": 2}, "in": {"_count": 2}, "got": {"_count": 3}, "tactless": {"_count": 1}, "so": {"_count": 1}, "Malfoy": {"_count": 1}, "cornin": {"_count": 1}, "Dumbledore": {"_count": 1}, "more": {"_count": 1}, "worse": {"_count": 1}, "Percy": {"_count": 1}, "an": {"_count": 1}, "doing": {"_count": 1}, "eating": {"_count": 1}, "ready": {"_count": 2}, "er": {"_count": 1}, "Longbottom": {"_count": 1}, "Voldemort": {"_count": 1}, "YouKnowWho": {"_count": 1}, "Nurmengard": {"_count": 1}, "obvious": {"_count": 1}}, "Nasty": {"_count": 6, "common": {"_count": 1}, "temper": {"_count": 1}, "cut": {"_count": 1}, "little": {"_count": 1}, "night": {"_count": 1}, "things": {"_count": 1}}, "Oh": {"_count": 601, "yes": {"_count": 50}, "Albus": {"_count": 1}, "": {"_count": 35}, "I": {"_count": 31}, "he": {"_count": 10}, "these": {"_count": 1}, "well": {"_count": 17}, "said": {"_count": 32}, "sorry": {"_count": 4}, "no": {"_count": 41}, "Neville": {"_count": 2}, "him": {"_count": 1}, "Mom": {"_count": 1}, "are": {"_count": 4}, "you": {"_count": 5}, "this": {"_count": 8}, "youre": {"_count": 3}, "move": {"_count": 1}, "all": {"_count": 7}, "yeah": {"_count": 43}, "honestly": {"_count": 2}, "come": {"_count": 12}, "its": {"_count": 12}, "a": {"_count": 3}, "shut": {"_count": 6}, "lets": {"_count": 3}, "go": {"_count": 2}, "very": {"_count": 11}, "Harry": {"_count": 18}, "good": {"_count": 8}, "it": {"_count": 5}, "really": {"_count": 5}, "dear": {"_count": 13}, "Id": {"_count": 1}, "there": {"_count": 3}, "hello": {"_count": 15}, "wow": {"_count": 2}, "look": {"_count": 7}, "n": {"_count": 1}, "here": {"_count": 2}, "Ron": {"_count": 5}, "get": {"_count": 1}, "dont": {"_count": 10}, "now": {"_count": 3}, "Mr": {"_count": 1}, "she": {"_count": 3}, "Ive": {"_count": 4}, "thats": {"_count": 3}, "and": {"_count": 12}, "how": {"_count": 2}, "tremendously": {"_count": 1}, "but": {"_count": 2}, "my": {"_count": 9}, "of": {"_count": 4}, "right": {"_count": 8}, "please": {"_count": 1}, "help": {"_count": 1}, "were": {"_count": 1}, "hes": {"_count": 3}, "cheer": {"_count": 1}, "for": {"_count": 5}, "Bagmans": {"_count": 1}, "Berthas": {"_count": 1}, "talk": {"_count": 1}, "is": {"_count": 1}, "thank": {"_count": 2}, "boys": {"_count": 1}, "your": {"_count": 1}, "hurry": {"_count": 2}, "cmon": {"_count": 1}, "am": {"_count": 1}, "Im": {"_count": 9}, "hang": {"_count": 2}, "shell": {"_count": 1}, "okay": {"_count": 1}, "never": {"_count": 2}, "if": {"_count": 2}, "Master": {"_count": 1}, "Rita": {"_count": 1}, "Arthur": {"_count": 1}, "Mums": {"_count": 1}, "Alastor": {"_count": 1}, "oh": {"_count": 4}, "Molly": {"_count": 1}, "lighten": {"_count": 1}, "er": {"_count": 2}, "know": {"_count": 1}, "most": {"_count": 1}, "as": {"_count": 1}, "give": {"_count": 1}, "that": {"_count": 2}, "they": {"_count": 1}, "yeh": {"_count": 1}, "Hagrid": {"_count": 3}, "the": {"_count": 1}, "don": {"_count": 1}, "an": {"_count": 1}, "forget": {"_count": 1}, "Sirius": {"_count": 1}, "stop": {"_count": 2}, "Gilderoy": {"_count": 1}, "one": {"_count": 1}, "things": {"_count": 1}, "why": {"_count": 2}, "hi": {"_count": 3}, "let": {"_count": 1}, "gosh": {"_count": 1}, "blimey": {"_count": 3}, "bravo": {"_count": 1}, "heres": {"_count": 1}, "by": {"_count": 1}, "ello": {"_count": 1}, "ha": {"_count": 1}, "Percy": {"_count": 1}, "Perce": {"_count": 1}, "surprise": {"_count": 1}, "groaning": {"_count": 1}, "not": {"_count": 2}, "Bill": {"_count": 1}, "when": {"_count": 1}, "Aberforth": {"_count": 1}, "have": {"_count": 1}, "we": {"_count": 1}, "damn": {"_count": 1}, "Kreacher": {"_count": 1}, "remembered": {"_count": 1}, "didnt": {"_count": 1}}, "Yes": {"_count": 370, "I": {"_count": 37}, "said": {"_count": 51}, "thats": {"_count": 3}, "exactly": {"_count": 1}, "yes": {"_count": 16}, "thirteenandahalf": {"_count": 1}, "please": {"_count": 1}, "trying": {"_count": 1}, "dont": {"_count": 1}, "": {"_count": 54}, "and": {"_count": 3}, "thank": {"_count": 3}, "of": {"_count": 8}, "Severus": {"_count": 2}, "Potter": {"_count": 6}, "boy": {"_count": 1}, "sir": {"_count": 13}, "him": {"_count": 1}, "ladies": {"_count": 1}, "he": {"_count": 19}, "nice": {"_count": 1}, "perhaps": {"_count": 1}, "didnt": {"_count": 1}, "Ill": {"_count": 3}, "hes": {"_count": 6}, "but": {"_count": 11}, "you": {"_count": 5}, "Im": {"_count": 6}, "my": {"_count": 5}, "indeed": {"_count": 8}, "your": {"_count": 1}, "that": {"_count": 6}, "its": {"_count": 4}, "the": {"_count": 5}, "someone": {"_count": 1}, "everything": {"_count": 1}, "sometimes": {"_count": 1}, "all": {"_count": 2}, "there": {"_count": 1}, "well": {"_count": 6}, "Harry": {"_count": 9}, "they": {"_count": 2}, "Professor": {"_count": 1}, "Master": {"_count": 1}, "Dudley": {"_count": 1}, "we": {"_count": 5}, "it": {"_count": 8}, "Lavender": {"_count": 1}, "she": {"_count": 2}, "Miss": {"_count": 1}, "these": {"_count": 1}, "came": {"_count": 1}, "those": {"_count": 2}, "first": {"_count": 1}, "thought": {"_count": 1}, "Nevilles": {"_count": 1}, "isnt": {"_count": 2}, "Molly": {"_count": 1}, "My": {"_count": 1}, "do": {"_count": 1}, "shut": {"_count": 1}, "as": {"_count": 1}, "theyre": {"_count": 2}, "Id": {"_count": 1}, "three": {"_count": 1}, "alive": {"_count": 1}, "something": {"_count": 1}, "dragon": {"_count": 1}, "Rufus": {"_count": 1}, "Ive": {"_count": 2}, "Merope": {"_count": 1}, "Riddle": {"_count": 1}, "Snape": {"_count": 1}, "just": {"_count": 1}, "comical": {"_count": 1}, "this": {"_count": 1}, "He": {"_count": 1}, "very": {"_count": 1}, "good": {"_count": 1}, "here": {"_count": 1}, "Voldemort": {"_count": 1}, "whispered": {"_count": 1}, "even": {"_count": 1}, "if": {"_count": 1}, "Daddys": {"_count": 1}, "Peeves": {"_count": 1}, "Tonks": {"_count": 1}}, "While": {"_count": 37, "Mrs": {"_count": 1}, "he": {"_count": 5}, "Uncle": {"_count": 2}, "Hagrid": {"_count": 1}, "they": {"_count": 3}, "you": {"_count": 2}, "Ron": {"_count": 2}, "the": {"_count": 5}, "Dudley": {"_count": 1}, "still": {"_count": 1}, "Dumbledore": {"_count": 1}, "many": {"_count": 1}, "Professor": {"_count": 1}, "YouKnowWho": {"_count": 1}, "everyone": {"_count": 1}, "I": {"_count": 2}, "his": {"_count": 1}, "Neville": {"_count": 1}, "Mr": {"_count": 1}, "people": {"_count": 1}, "her": {"_count": 1}, "she": {"_count": 1}, "Xenophilius": {"_count": 1}}, "if": {"_count": 26, "it": {"_count": 4}, "Harry": {"_count": 1}, "you": {"_count": 10}, "she": {"_count": 1}, "Snape": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 2}, "hed": {"_count": 1}, "there": {"_count": 1}, "somebody": {"_count": 1}}, "His": {"_count": 501, "last": {"_count": 1}, "blue": {"_count": 3}, "aunt": {"_count": 7}, "Aunt": {"_count": 1}, "face": {"_count": 25}, "heart": {"_count": 23}, "eyes": {"_count": 39}, "name": {"_count": 2}, "names": {"_count": 3}, "school": {"_count": 3}, "twin": {"_count": 1}, "whole": {"_count": 4}, "classroom": {"_count": 1}, "turban": {"_count": 1}, "broomstick": {"_count": 1}, "stomach": {"_count": 6}, "lessons": {"_count": 1}, "broom": {"_count": 3}, "next": {"_count": 2}, "fathers": {"_count": 3}, "panic": {"_count": 1}, "mother": {"_count": 9}, "relief": {"_count": 1}, "legs": {"_count": 6}, "exam": {"_count": 1}, "insides": {"_count": 9}, "brain": {"_count": 6}, "boarhound": {"_count": 1}, "twinkling": {"_count": 1}, "arm": {"_count": 2}, "hat": {"_count": 1}, "head": {"_count": 12}, "large": {"_count": 3}, "nose": {"_count": 3}, "books": {"_count": 1}, "hands": {"_count": 7}, "spell": {"_count": 2}, "cloak": {"_count": 1}, "voice": {"_count": 20}, "breathing": {"_count": 3}, "mouth": {"_count": 7}, "hair": {"_count": 4}, "lip": {"_count": 1}, "office": {"_count": 2}, "long": {"_count": 3}, "memorys": {"_count": 1}, "own": {"_count": 6}, "great": {"_count": 3}, "jetblack": {"_count": 1}, "record": {"_count": 1}, "wand": {"_count": 7}, "potion": {"_count": 3}, "twisted": {"_count": 1}, "old": {"_count": 2}, "little": {"_count": 2}, "master": {"_count": 1}, "bes": {"_count": 1}, "finest": {"_count": 1}, "portrait": {"_count": 1}, "pale": {"_count": 3}, "jaw": {"_count": 2}, "servant": {"_count": 1}, "normally": {"_count": 1}, "teeth": {"_count": 1}, "yellow": {"_count": 1}, "thin": {"_count": 2}, "nerve": {"_count": 1}, "front": {"_count": 1}, "skin": {"_count": 2}, "lot": {"_count": 1}, "shoulders": {"_count": 1}, "Patronus": {"_count": 1}, "limbs": {"_count": 1}, "walking": {"_count": 1}, "powers": {"_count": 2}, "life": {"_count": 1}, "uncles": {"_count": 1}, "dads": {"_count": 1}, "best": {"_count": 2}, "feet": {"_count": 3}, "penfriend": {"_count": 1}, "shoes": {"_count": 1}, "revival": {"_count": 1}, "team": {"_count": 2}, "arms": {"_count": 2}, "dinners": {"_count": 1}, "small": {"_count": 1}, "normal": {"_count": 1}, "light": {"_count": 2}, "and": {"_count": 2}, "toothbrush": {"_count": 1}, "surly": {"_count": 1}, "black": {"_count": 9}, "close": {"_count": 1}, "yell": {"_count": 1}, "hand": {"_count": 10}, "immediate": {"_count": 3}, "magical": {"_count": 3}, "sodden": {"_count": 1}, "neat": {"_count": 1}, "strange": {"_count": 1}, "halfmoon": {"_count": 1}, "student": {"_count": 1}, "eyelids": {"_count": 1}, "scar": {"_count": 12}, "father": {"_count": 3}, "chosen": {"_count": 1}, "desire": {"_count": 1}, "injured": {"_count": 1}, "sleeve": {"_count": 1}, "lopsided": {"_count": 1}, "wooden": {"_count": 2}, "leg": {"_count": 1}, "hackles": {"_count": 1}, "mothers": {"_count": 1}, "expression": {"_count": 5}, "death": {"_count": 1}, "smirk": {"_count": 1}, "jeans": {"_count": 1}, "mind": {"_count": 4}, "soul": {"_count": 1}, "anger": {"_count": 1}, "owl": {"_count": 1}, "back": {"_count": 1}, "room": {"_count": 1}, "comeback": {"_count": 1}, "footsteps": {"_count": 2}, "badge": {"_count": 1}, "lovely": {"_count": 1}, "": {"_count": 1}, "pleasure": {"_count": 1}, "parents": {"_count": 3}, "fourposter": {"_count": 1}, "wide": {"_count": 1}, "gaze": {"_count": 2}, "temper": {"_count": 3}, "spirits": {"_count": 2}, "homework": {"_count": 1}, "Strengthening": {"_count": 1}, "restless": {"_count": 1}, "first": {"_count": 1}, "fingertips": {"_count": 1}, "greatest": {"_count": 1}, "body": {"_count": 6}, "forehead": {"_count": 1}, "gloom": {"_count": 1}, "morning": {"_count": 1}, "reflection": {"_count": 1}, "priority": {"_count": 1}, "attempt": {"_count": 3}, "breath": {"_count": 4}, "cold": {"_count": 1}, "appearance": {"_count": 2}, "existence": {"_count": 1}, "sense": {"_count": 1}, "left": {"_count": 1}, "comprehension": {"_count": 1}, "shiny": {"_count": 1}, "annoyance": {"_count": 1}, "previous": {"_count": 1}, "walk": {"_count": 1}, "sister": {"_count": 1}, "enormous": {"_count": 1}, "tone": {"_count": 2}, "shoulder": {"_count": 1}, "mustache": {"_count": 1}, "was": {"_count": 1}, "right": {"_count": 2}, "round": {"_count": 1}, "single": {"_count": 1}, "greedy": {"_count": 1}, "superiors": {"_count": 1}, "features": {"_count": 2}, "feeling": {"_count": 1}, "pride": {"_count": 1}, "lightheartedness": {"_count": 1}, "thoughts": {"_count": 1}, "grip": {"_count": 1}, "filthy": {"_count": 1}, "jinx": {"_count": 1}, "scars": {"_count": 1}, "animosity": {"_count": 1}, "red": {"_count": 1}, "Muggle": {"_count": 1}, "letters": {"_count": 1}, "uncle": {"_count": 1}, "missing": {"_count": 1}, "rucksack": {"_count": 1}, "pugnacious": {"_count": 1}, "cloud": {"_count": 1}, "companion": {"_count": 1}, "toy": {"_count": 1}, "attention": {"_count": 1}, "golden": {"_count": 1}, "white": {"_count": 1}, "friend": {"_count": 1}, "impulse": {"_count": 1}, "fingers": {"_count": 2}, "good": {"_count": 1}, "Cloak": {"_count": 1}, "gray": {"_count": 1}, "true": {"_count": 1}, "rage": {"_count": 1}, "instinct": {"_count": 1}, "deeply": {"_count": 1}, "domed": {"_count": 1}, "glasses": {"_count": 1}, "dark": {"_count": 1}, "color": {"_count": 1}, "fear": {"_count": 1}, "plan": {"_count": 1}, "job": {"_count": 1}, "nerveless": {"_count": 1}, "massive": {"_count": 1}, "surroundings": {"_count": 1}}, "How": {"_count": 387, "very": {"_count": 3}, "did": {"_count": 50}, "could": {"_count": 26}, "often": {"_count": 2}, "can": {"_count": 20}, "come": {"_count": 30}, "exactly": {"_count": 3}, "are": {"_count": 33}, "do": {"_count": 42}, "many": {"_count": 21}, "long": {"_count": 15}, "he": {"_count": 3}, "much": {"_count": 9}, "about": {"_count": 8}, "": {"_count": 8}, "touching": {"_count": 2}, "strange": {"_count": 3}, "may": {"_count": 1}, "will": {"_count": 1}, "was": {"_count": 10}, "thick": {"_count": 2}, "on": {"_count": 6}, "should": {"_count": 2}, "old": {"_count": 2}, "nice": {"_count": 2}, "really": {"_count": 1}, "dyou": {"_count": 13}, "is": {"_count": 7}, "does": {"_count": 3}, "extraordinarily": {"_count": 1}, "I": {"_count": 1}, "else": {"_count": 3}, "dare": {"_count": 9}, "how": {"_count": 2}, "am": {"_count": 2}, "were": {"_count": 2}, "ma": {"_count": 1}, "cool": {"_count": 2}, "Voldemort": {"_count": 1}, "James": {"_count": 1}, "then": {"_count": 1}, "big": {"_count": 2}, "good": {"_count": 1}, "this": {"_count": 1}, "would": {"_count": 4}, "well": {"_count": 1}, "lovely": {"_count": 1}, "you": {"_count": 3}, "had": {"_count": 4}, "indeed": {"_count": 2}, "has": {"_count": 1}, "Muggles": {"_count": 1}, "she": {"_count": 2}, "soon": {"_count": 2}, "important": {"_count": 1}, "goods": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "stupid": {"_count": 1}, "Grindelwald": {"_count": 1}, "longs": {"_count": 1}, "howre": {"_count": 1}}, "In": {"_count": 243, "fact": {"_count": 35}, "his": {"_count": 5}, "the": {"_count": 66}, "danger": {"_count": 1}, "me": {"_count": 1}, "here": {"_count": 5}, "an": {"_count": 6}, "a": {"_count": 20}, "soccer": {"_count": 1}, "Romania": {"_count": 1}, "one": {"_count": 7}, "their": {"_count": 3}, "that": {"_count": 6}, "Gambol": {"_count": 1}, "": {"_count": 3}, "spite": {"_count": 7}, "seconds": {"_count": 3}, "my": {"_count": 4}, "trouble": {"_count": 1}, "Flourish": {"_count": 1}, "next": {"_count": 1}, "you": {"_count": 1}, "Sites": {"_count": 1}, "case": {"_count": 3}, "complete": {"_count": 1}, "our": {"_count": 2}, "what": {"_count": 2}, "front": {"_count": 3}, "any": {"_count": 11}, "some": {"_count": 1}, "Professor": {"_count": 1}, "tribute": {"_count": 1}, "September": {"_count": 1}, "conversation": {"_count": 1}, "truth": {"_count": 3}, "second": {"_count": 1}, "reverse": {"_count": 1}, "addition": {"_count": 1}, "your": {"_count": 2}, "twos": {"_count": 2}, "her": {"_count": 1}, "St": {"_count": 1}, "large": {"_count": 1}, "there": {"_count": 2}, "spidery": {"_count": 1}, "this": {"_count": 2}, "other": {"_count": 4}, "private": {"_count": 1}, "Diagon": {"_count": 1}, "both": {"_count": 1}, "contrast": {"_count": 1}, "silence": {"_count": 2}, "its": {"_count": 1}, "fairness": {"_count": 1}, "time": {"_count": 1}, "short": {"_count": 2}, "desperation": {"_count": 1}, "general": {"_count": 1}, "opening": {"_count": 1}}, "A": {"_count": 858, "man": {"_count": 4}, "fine": {"_count": 4}, "letter": {"_count": 3}, "breeze": {"_count": 1}, "tiny": {"_count": 6}, "wildlooking": {"_count": 1}, "bald": {"_count": 1}, "giant": {"_count": 4}, "wizard": {"_count": 3}, "what": {"_count": 5}, "Muggle": {"_count": 2}, "few": {"_count": 48}, "little": {"_count": 19}, "pale": {"_count": 2}, "plump": {"_count": 2}, "low": {"_count": 2}, "pair": {"_count": 6}, "lot": {"_count": 5}, "magic": {"_count": 2}, "single": {"_count": 5}, "tinkling": {"_count": 2}, "scarlet": {"_count": 1}, "sign": {"_count": 2}, "boy": {"_count": 4}, "whistle": {"_count": 1}, "voice": {"_count": 6}, "tall": {"_count": 6}, "test": {"_count": 1}, "rip": {"_count": 1}, "moments": {"_count": 1}, "horrible": {"_count": 3}, "moment": {"_count": 13}, "bundle": {"_count": 1}, "poltergeist": {"_count": 1}, "loud": {"_count": 7}, "bezoar": {"_count": 2}, "crossbow": {"_count": 1}, "barn": {"_count": 1}, "lamp": {"_count": 2}, "Nimbus": {"_count": 1}, "game": {"_count": 1}, "thousand": {"_count": 3}, "sudden": {"_count": 5}, "second": {"_count": 16}, "note": {"_count": 1}, "Very": {"_count": 1}, "hundred": {"_count": 10}, "large": {"_count": 20}, "piercing": {"_count": 2}, "door": {"_count": 3}, "woman": {"_count": 2}, "hooded": {"_count": 2}, "couple": {"_count": 9}, "light": {"_count": 5}, "werewolf": {"_count": 3}, "bit": {"_count": 6}, "movement": {"_count": 2}, "bush": {"_count": 1}, "centaur": {"_count": 1}, "soft": {"_count": 2}, "white": {"_count": 2}, "disgusting": {"_count": 1}, "foolish": {"_count": 1}, "huge": {"_count": 3}, "storm": {"_count": 1}, "wizened": {"_count": 2}, "loin": {"_count": 1}, "plot": {"_count": 2}, "faint": {"_count": 4}, "lopsided": {"_count": 2}, "glass": {"_count": 2}, "stooping": {"_count": 2}, "study": {"_count": 1}, "harassedlooking": {"_count": 1}, "long": {"_count": 11}, "short": {"_count": 4}, "dozen": {"_count": 1}, "minute": {"_count": 5}, "very": {"_count": 8}, "delicious": {"_count": 1}, "big": {"_count": 4}, "split": {"_count": 3}, "ringing": {"_count": 1}, "picture": {"_count": 2}, "double": {"_count": 2}, "word": {"_count": 1}, "moving": {"_count": 1}, "field": {"_count": 1}, "highly": {"_count": 3}, "deathday": {"_count": 1}, "promise": {"_count": 1}, "chandelier": {"_count": 1}, "mixture": {"_count": 4}, "rumble": {"_count": 1}, "Squib": {"_count": 1}, "clock": {"_count": 1}, "rift": {"_count": 1}, "tale": {"_count": 1}, "month": {"_count": 3}, "strange": {"_count": 1}, "ray": {"_count": 2}, "jet": {"_count": 2}, "week": {"_count": 3}, "haze": {"_count": 2}, "Parselmouth": {"_count": 1}, "group": {"_count": 5}, "dead": {"_count": 3}, "number": {"_count": 3}, "fire": {"_count": 5}, "decent": {"_count": 1}, "great": {"_count": 10}, "small": {"_count": 10}, "hush": {"_count": 1}, "story": {"_count": 2}, "silver": {"_count": 4}, "traveler": {"_count": 1}, "student": {"_count": 1}, "girl": {"_count": 3}, "free": {"_count": 1}, "different": {"_count": 1}, "memory": {"_count": 1}, "smile": {"_count": 1}, "crimson": {"_count": 1}, "gleaming": {"_count": 1}, "patch": {"_count": 1}, "pearly": {"_count": 1}, "clever": {"_count": 4}, "delighted": {"_count": 1}, "list": {"_count": 1}, "special": {"_count": 2}, "feeling": {"_count": 3}, "good": {"_count": 2}, "no": {"_count": 1}, "funny": {"_count": 1}, "gigantic": {"_count": 2}, "dementor": {"_count": 2}, "wave": {"_count": 3}, "fat": {"_count": 1}, "rotting": {"_count": 1}, "bandage": {"_count": 1}, "piece": {"_count": 2}, "likely": {"_count": 2}, "sickly": {"_count": 1}, "shower": {"_count": 1}, "shrill": {"_count": 2}, "labeled": {"_count": 1}, "curvy": {"_count": 1}, "cherry": {"_count": 1}, "crater": {"_count": 1}, "hatred": {"_count": 1}, "powerful": {"_count": 3}, "Firebolt": {"_count": 3}, "really": {"_count": 2}, "thought": {"_count": 1}, "bunch": {"_count": 1}, "poor": {"_count": 1}, "hippogriff": {"_count": 2}, "mass": {"_count": 2}, "boiling": {"_count": 1}, "livid": {"_count": 1}, "whole": {"_count": 2}, "head": {"_count": 1}, "thin": {"_count": 6}, "paralyzing": {"_count": 1}, "Confundus": {"_count": 1}, "street": {"_count": 1}, "blur": {"_count": 1}, "dark": {"_count": 1}, "real": {"_count": 2}, "terrified": {"_count": 1}, "fourth": {"_count": 1}, "shadow": {"_count": 2}, "muscle": {"_count": 3}, "team": {"_count": 1}, "slight": {"_count": 3}, "stroke": {"_count": 1}, "skinny": {"_count": 1}, "weird": {"_count": 1}, "report": {"_count": 1}, "creamy": {"_count": 1}, "limited": {"_count": 1}, "map": {"_count": 2}, "Ministry": {"_count": 2}, "sense": {"_count": 2}, "rainbow": {"_count": 1}, "crowd": {"_count": 1}, "huddle": {"_count": 1}, "rustling": {"_count": 1}, "nice": {"_count": 1}, "high": {"_count": 1}, "sleeve": {"_count": 1}, "gleeful": {"_count": 1}, "dull": {"_count": 4}, "champion": {"_count": 1}, "crackling": {"_count": 1}, "booming": {"_count": 1}, "detailed": {"_count": 1}, "Revised": {"_count": 1}, "snowy": {"_count": 1}, "Portkey": {"_count": 1}, "pleasant": {"_count": 1}, "murmur": {"_count": 1}, "terrible": {"_count": 3}, "look": {"_count": 2}, "similarly": {"_count": 1}, "buzzing": {"_count": 1}, "handsome": {"_count": 3}, "paunchy": {"_count": 1}, "pause": {"_count": 1}, "slightly": {"_count": 2}, "curlyhaired": {"_count": 1}, "set": {"_count": 2}, "gurgling": {"_count": 1}, "grim": {"_count": 1}, "cluster": {"_count": 1}, "choir": {"_count": 1}, "color": {"_count": 1}, "further": {"_count": 1}, "maze": {"_count": 1}, "shallow": {"_count": 1}, "nerve": {"_count": 1}, "connection": {"_count": 1}, "dream": {"_count": 2}, "screech": {"_count": 1}, "member": {"_count": 1}, "twentyfoothigh": {"_count": 1}, "person": {"_count": 2}, "creature": {"_count": 1}, "hill": {"_count": 1}, "swishing": {"_count": 1}, "surge": {"_count": 1}, "streak": {"_count": 2}, "torrent": {"_count": 1}, "thick": {"_count": 2}, "quiet": {"_count": 1}, "witch": {"_count": 1}, "servant": {"_count": 2}, "kind": {"_count": 2}, "Sleeping": {"_count": 1}, "panicked": {"_count": 1}, "gang": {"_count": 2}, "towering": {"_count": 2}, "rushing": {"_count": 1}, "warm": {"_count": 1}, "wand": {"_count": 2}, "stag": {"_count": 1}, "pink": {"_count": 1}, "surprising": {"_count": 1}, "pungent": {"_count": 1}, "closer": {"_count": 2}, "blank": {"_count": 2}, "deadly": {"_count": 1}, "frisson": {"_count": 1}, "date": {"_count": 1}, "badly": {"_count": 1}, "narrow": {"_count": 1}, "photograph": {"_count": 1}, "regurgitating": {"_count": 1}, "stooped": {"_count": 1}, "cold": {"_count": 2}, "broad": {"_count": 2}, "dumpy": {"_count": 1}, "houseelf": {"_count": 1}, "prefect": {"_count": 1}, "silvery": {"_count": 1}, "porters": {"_count": 1}, "warning": {"_count": 1}, "balance": {"_count": 1}, "blond": {"_count": 1}, "line": {"_count": 1}, "roar": {"_count": 3}, "battered": {"_count": 1}, "corporeal": {"_count": 1}, "hand": {"_count": 3}, "confused": {"_count": 1}, "Compendium": {"_count": 1}, "": {"_count": 66}, "branch": {"_count": 1}, "tingling": {"_count": 1}, "reluctant": {"_count": 1}, "serpents": {"_count": 1}, "sweatyfaced": {"_count": 1}, "massive": {"_count": 1}, "leaden": {"_count": 1}, "prize": {"_count": 1}, "jumble": {"_count": 1}, "sallowskinned": {"_count": 1}, "way": {"_count": 1}, "violently": {"_count": 1}, "wonderful": {"_count": 1}, "fever": {"_count": 1}, "subheading": {"_count": 1}, "cracked": {"_count": 1}, "face": {"_count": 2}, "greasyhaired": {"_count": 1}, "gorgeous": {"_count": 1}, "twinkling": {"_count": 1}, "select": {"_count": 1}, "Floo": {"_count": 1}, "lovely": {"_count": 1}, "bearded": {"_count": 1}, "chink": {"_count": 2}, "harsh": {"_count": 1}, "sharp": {"_count": 2}, "Death": {"_count": 2}, "babys": {"_count": 1}, "whine": {"_count": 1}, "brain": {"_count": 1}, "figure": {"_count": 1}, "better": {"_count": 1}, "much": {"_count": 2}, "sliver": {"_count": 1}, "third": {"_count": 1}, "vivid": {"_count": 1}, "more": {"_count": 1}, "scene": {"_count": 1}, "grandfather": {"_count": 1}, "piano": {"_count": 1}, "tired": {"_count": 1}, "brutal": {"_count": 2}, "wise": {"_count": 2}, "young": {"_count": 4}, "considerable": {"_count": 1}, "warmth": {"_count": 1}, "space": {"_count": 1}, "beaming": {"_count": 1}, "startling": {"_count": 1}, "chance": {"_count": 1}, "lantern": {"_count": 1}, "fifteen": {"_count": 1}, "reasonable": {"_count": 1}, "watery": {"_count": 1}, "teacher": {"_count": 1}, "flush": {"_count": 1}, "gaggle": {"_count": 1}, "VERY": {"_count": 1}, "SLUGGISH": {"_count": 1}, "part": {"_count": 2}, "Hogsmeade": {"_count": 1}, "blinding": {"_count": 1}, "hot": {"_count": 1}, "badger": {"_count": 1}, "worthy": {"_count": 1}, "job": {"_count": 2}, "bad": {"_count": 1}, "ghost": {"_count": 1}, "Horcrux": {"_count": 1}, "corpulent": {"_count": 1}, "mere": {"_count": 1}, "flame": {"_count": 1}, "misty": {"_count": 1}, "slimy": {"_count": 1}, "lumpylooking": {"_count": 1}, "fight": {"_count": 1}, "decision": {"_count": 1}, "flash": {"_count": 1}, "seconds": {"_count": 1}, "wall": {"_count": 1}, "fairhaired": {"_count": 1}, "blue": {"_count": 1}, "hatch": {"_count": 1}, "book": {"_count": 1}, "desk": {"_count": 1}, "surprise": {"_count": 1}, "Snitch": {"_count": 1}, "host": {"_count": 1}, "chill": {"_count": 1}, "mother": {"_count": 1}, "coffinside": {"_count": 1}, "most": {"_count": 1}, "doubledecker": {"_count": 1}, "blackhaired": {"_count": 1}, "disembodied": {"_count": 1}, "pity": {"_count": 1}, "heavily": {"_count": 1}, "metal": {"_count": 1}, "copy": {"_count": 1}, "shame": {"_count": 1}, "bright": {"_count": 1}, "glint": {"_count": 1}, "symbol": {"_count": 1}, "castle": {"_count": 1}, "Christmas": {"_count": 1}, "goblin": {"_count": 1}, "thud": {"_count": 2}, "beam": {"_count": 1}, "Weasley": {"_count": 1}, "Mudblood": {"_count": 1}, "stillness": {"_count": 1}, "skeletal": {"_count": 1}, "crystal": {"_count": 1}, "weak": {"_count": 1}, "rumor": {"_count": 1}, "grin": {"_count": 1}, "strong": {"_count": 1}, "watchful": {"_count": 1}, "delicate": {"_count": 1}, "bathroom": {"_count": 1}, "hollow": {"_count": 1}, "lonely": {"_count": 1}, "roaring": {"_count": 1}, "bloodlike": {"_count": 1}, "monstrous": {"_count": 1}, "lone": {"_count": 1}, "frightened": {"_count": 1}, "swarm": {"_count": 1}, "chilly": {"_count": 1}, "wideopen": {"_count": 1}, "desperate": {"_count": 1}, "redgold": {"_count": 1}}, "Nothing": {"_count": 84, "like": {"_count": 3}, "nothing": {"_count": 1}, "Harry": {"_count": 2}, "": {"_count": 9}, "at": {"_count": 1}, "Neville": {"_count": 1}, "just": {"_count": 1}, "more": {"_count": 1}, "to": {"_count": 7}, "seemed": {"_count": 1}, "said": {"_count": 12}, "happened": {"_count": 11}, "but": {"_count": 2}, "anyone": {"_count": 1}, "lifethreatening": {"_count": 1}, "changed": {"_count": 1}, "I": {"_count": 1}, "will": {"_count": 1}, "whatsoever": {"_count": 3}, "would": {"_count": 2}, "he": {"_count": 2}, "about": {"_count": 2}, "rash": {"_count": 1}, "she": {"_count": 1}, "flew": {"_count": 1}, "wrong": {"_count": 1}, "on": {"_count": 1}, "Arthur": {"_count": 1}, "thank": {"_count": 1}, "except": {"_count": 1}, "we": {"_count": 1}, "remained": {"_count": 1}, "there": {"_count": 1}, "that": {"_count": 2}, "special": {"_count": 1}, "else": {"_count": 1}, "replied": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 1}}, "Albus": {"_count": 22, "Dumbledore": {"_count": 11}, "never": {"_count": 1}, "was": {"_count": 3}, "and": {"_count": 1}, "looked": {"_count": 1}, "Astonished": {"_count": 1}, "told": {"_count": 1}, "Severus": {"_count": 1}, "jumped": {"_count": 1}, "Rose": {"_count": 1}}, "Twelve": {"_count": 5, "times": {"_count": 1}, "feet": {"_count": 2}, "and": {"_count": 1}, "andthreequarter": {"_count": 1}}, "Dumbledore": {"_count": 397, "slipped": {"_count": 1}, "however": {"_count": 3}, "bowed": {"_count": 1}, "reached": {"_count": 4}, "nodded": {"_count": 6}, "gave": {"_count": 6}, "you": {"_count": 2}, "and": {"_count": 5}, "took": {"_count": 4}, "turned": {"_count": 4}, "s": {"_count": 11}, "conducted": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 15}, "smiled": {"_count": 10}, "hummed": {"_count": 1}, "sighed": {"_count": 3}, "now": {"_count": 4}, "raised": {"_count": 4}, "already": {"_count": 1}, "was": {"_count": 37}, "had": {"_count": 26}, "laid": {"_count": 1}, "couldnt": {"_count": 1}, "didnt": {"_count": 6}, "came": {"_count": 1}, "led": {"_count": 1}, "answered": {"_count": 1}, "always": {"_count": 2}, "never": {"_count": 2}, "saw": {"_count": 1}, "crossed": {"_count": 1}, "cleared": {"_count": 3}, "paused": {"_count": 4}, "obviously": {"_count": 1}, "left": {"_count": 4}, "wont": {"_count": 2}, "who": {"_count": 2}, "told": {"_count": 7}, "knew": {"_count": 2}, "Hes": {"_count": 1}, "the": {"_count": 2}, "hired": {"_count": 1}, "encouraged": {"_count": 1}, "111": {"_count": 1}, "just": {"_count": 1}, "Fudge": {"_count": 1}, "Macnair": {"_count": 1}, "backed": {"_count": 1}, "looked": {"_count": 8}, "beamed": {"_count": 2}, "alone": {"_count": 1}, "wouldnt": {"_count": 2}, "went": {"_count": 1}, "knows": {"_count": 1}, "started": {"_count": 1}, "though": {"_count": 1}, "remained": {"_count": 1}, "closed": {"_count": 4}, "caught": {"_count": 1}, "waited": {"_count": 3}, "magicked": {"_count": 1}, "stood": {"_count": 5}, "bent": {"_count": 3}, "Im": {"_count": 1}, "come": {"_count": 1}, "did": {"_count": 5}, "made": {"_count": 2}, "drew": {"_count": 3}, "added": {"_count": 1}, "placed": {"_count": 1}, "shook": {"_count": 2}, "merely": {"_count": 1}, "got": {"_count": 5}, "stopped": {"_count": 2}, "glanced": {"_count": 4}, "invoked": {"_count": 1}, "would": {"_count": 6}, "hes": {"_count": 1}, "said": {"_count": 3}, "he": {"_count": 1}, "walked": {"_count": 3}, "climbed": {"_count": 1}, "pulled": {"_count": 2}, "forced": {"_count": 1}, "knelt": {"_count": 1}, "joined": {"_count": 1}, "gripped": {"_count": 1}, "pushed": {"_count": 2}, "began": {"_count": 2}, "I": {"_count": 2}, "doesnt": {"_count": 2}, "sat": {"_count": 2}, "inclined": {"_count": 1}, "put": {"_count": 1}, "ought": {"_count": 1}, "continued": {"_count": 1}, "only": {"_count": 1}, "clapped": {"_count": 1}, "then": {"_count": 2}, "says": {"_count": 3}, "wanted": {"_count": 4}, "watched": {"_count": 2}, "replaced": {"_count": 1}, "marched": {"_count": 1}, "seemed": {"_count": 2}, "wants": {"_count": 1}, "is": {"_count": 3}, "trusts": {"_count": 2}, "seized": {"_count": 1}, "released": {"_count": 1}, "will": {"_count": 1}, "sacrificed": {"_count": 1}, "sped": {"_count": 1}, "flicked": {"_count": 1}, "thinks": {"_count": 2}, "heaved": {"_count": 2}, "lowered": {"_count": 1}, "stared": {"_count": 1}, "has": {"_count": 1}, "moved": {"_count": 2}, "strode": {"_count": 1}, "reentered": {"_count": 1}, "illuminated": {"_count": 1}, "knocked": {"_count": 1}, "bewitched": {"_count": 1}, "mentioned": {"_count": 1}, "uses": {"_count": 1}, "tipped": {"_count": 1}, "lengthened": {"_count": 1}, "indicated": {"_count": 2}, "stepped": {"_count": 3}, "handed": {"_count": 1}, "opened": {"_count": 2}, "listened": {"_count": 1}, "ignored": {"_count": 1}, "rose": {"_count": 1}, "tapped": {"_count": 2}, "considered": {"_count": 1}, "set": {"_count": 1}, "needs": {"_count": 1}, "landed": {"_count": 1}, "pointed": {"_count": 1}, "hesitated": {"_count": 1}, "beckoned": {"_count": 1}, "approached": {"_count": 2}, "peered": {"_count": 1}, "plunged": {"_count": 1}, "panted": {"_count": 1}, "screamed": {"_count": 1}, "drank": {"_count": 2}, "groaned": {"_count": 1}, "scooped": {"_count": 1}, "cornered": {"_count": 1}, "wandless": {"_count": 1}, "could": {"_count": 1}, "wha": {"_count": 1}, "might": {"_count": 2}, "believed": {"_count": 1}, "gone": {"_count": 1}, "removed": {"_count": 1}, "died": {"_count": 1}, "must": {"_count": 1}, "Forget": {"_count": 1}, "cannot": {"_count": 1}, "intended": {"_count": 1}, "usually": {"_count": 1}, "loved": {"_count": 1}, "grimaced": {"_count": 1}, "stated": {"_count": 1}, "patted": {"_count": 1}}, "Fancy": {"_count": 6, "seeing": {"_count": 1}, "a": {"_count": 3}, "giving": {"_count": 1}, "trying": {"_count": 1}}, "Her": {"_count": 117, "black": {"_count": 1}, "lips": {"_count": 4}, "eyes": {"_count": 16}, "shrieks": {"_count": 1}, "mouth": {"_count": 2}, "fellow": {"_count": 1}, "Pepperup": {"_count": 1}, "face": {"_count": 14}, "spirits": {"_count": 1}, "bemused": {"_count": 1}, "huge": {"_count": 1}, "great": {"_count": 4}, "arms": {"_count": 3}, "wide": {"_count": 1}, "expression": {"_count": 4}, "scolding": {"_count": 1}, "giant": {"_count": 1}, "voice": {"_count": 5}, "hair": {"_count": 7}, "head": {"_count": 1}, "jaws": {"_count": 1}, "gold": {"_count": 1}, "acnes": {"_count": 1}, "reaction": {"_count": 1}, "clothes": {"_count": 2}, "enormous": {"_count": 1}, "hands": {"_count": 3}, "attitude": {"_count": 1}, "hand": {"_count": 1}, "grizzled": {"_count": 1}, "large": {"_count": 1}, "husband": {"_count": 1}, "normally": {"_count": 1}, "tone": {"_count": 2}, "bulging": {"_count": 1}, "friend": {"_count": 2}, "parents": {"_count": 1}, "pale": {"_count": 1}, "wand": {"_count": 1}, "blood": {"_count": 1}, "usually": {"_count": 1}, "footsteps": {"_count": 1}, "stillhooded": {"_count": 1}, "amber": {"_count": 1}, "rather": {"_count": 1}, "potion": {"_count": 1}, "father": {"_count": 1}, "halffinished": {"_count": 1}, "imitations": {"_count": 1}, "name": {"_count": 1}, "slightly": {"_count": 1}, "nine": {"_count": 1}, "beaky": {"_count": 1}, "health": {"_count": 1}, "arm": {"_count": 1}, "office": {"_count": 1}, "dark": {"_count": 1}, "stoop": {"_count": 1}, "very": {"_count": 1}, "dislike": {"_count": 1}, "boy": {"_count": 1}, "son": {"_count": 1}}, "My": {"_count": 221, "dear": {"_count": 21}, "world": {"_count": 1}, "fathers": {"_count": 3}, "aunt": {"_count": 2}, "dad": {"_count": 9}, "father": {"_count": 14}, "old": {"_count": 1}, "brothers": {"_count": 2}, "Great": {"_count": 1}, "mom": {"_count": 1}, "name": {"_count": 11}, "scar": {"_count": 3}, "mistake": {"_count": 2}, "brain": {"_count": 1}, "perfect": {"_count": 1}, "friend": {"_count": 1}, "sister": {"_count": 1}, "wand": {"_count": 3}, "gran": {"_count": 2}, "dads": {"_count": 2}, "muscles": {"_count": 1}, "late": {"_count": 1}, "cat": {"_count": 2}, "office": {"_count": 5}, "subject": {"_count": 1}, "life": {"_count": 1}, "friendly": {"_count": 1}, "brother": {"_count": 2}, "books": {"_count": 1}, "whole": {"_count": 4}, "diary": {"_count": 1}, "common": {"_count": 1}, "Head": {"_count": 2}, "turn": {"_count": 1}, "my": {"_count": 1}, "dears": {"_count": 3}, "boy": {"_count": 1}, "parents": {"_count": 2}, "transformations": {"_count": 1}, "body": {"_count": 1}, "God": {"_count": 3}, "friends": {"_count": 2}, "Lord": {"_count": 28}, "wife": {"_count": 3}, "Bulgarian": {"_count": 1}, "inner": {"_count": 1}, "best": {"_count": 1}, "pupils": {"_count": 1}, "steeds": {"_count": 1}, "bag": {"_count": 1}, "poor": {"_count": 1}, "master": {"_count": 8}, "own": {"_count": 1}, "sweet": {"_count": 2}, "apologies": {"_count": 2}, "mother": {"_count": 6}, "curse": {"_count": 1}, "mind": {"_count": 1}, "masters": {"_count": 1}, "wands": {"_count": 1}, "mums": {"_count": 3}, "greatuncle": {"_count": 1}, "grans": {"_count": 2}, "family": {"_count": 1}, "": {"_count": 1}, "greatgreatgrandson": {"_count": 1}, "husband": {"_count": 1}, "son": {"_count": 3}, "herd": {"_count": 1}, "Inquisitorial": {"_count": 1}, "greatest": {"_count": 1}, "answer": {"_count": 2}, "conscience": {"_count": 1}, "only": {"_count": 2}, "our": {"_count": 1}, "fault": {"_count": 2}, "left": {"_count": 1}, "last": {"_count": 1}, "daughter": {"_count": 1}, "drink": {"_count": 1}, "knife": {"_count": 1}, "options": {"_count": 1}, "source": {"_count": 1}, "kind": {"_count": 1}, "word": {"_count": 2}, "mum": {"_count": 1}, "birthday": {"_count": 1}, "children": {"_count": 1}, "mothers": {"_count": 1}, "concern": {"_count": 1}, "Death": {"_count": 1}}, "Youd": {"_count": 51, "be": {"_count": 3}, "think": {"_count": 7}, "like": {"_count": 2}, "better": {"_count": 30}, "never": {"_count": 1}, "have": {"_count": 4}, "get": {"_count": 1}, "need": {"_count": 1}, "do": {"_count": 1}, "cancel": {"_count": 1}}, "All": {"_count": 320, "day": {"_count": 2}, "right": {"_count": 77}, "anyone": {"_count": 1}, "yours": {"_count": 1}, "Harrys": {"_count": 2}, "the": {"_count": 41}, "those": {"_count": 9}, "three": {"_count": 20}, "you": {"_count": 4}, "Neville": {"_count": 1}, "they": {"_count": 5}, "at": {"_count": 2}, "all": {"_count": 1}, "Harry": {"_count": 3}, "I": {"_count": 8}, "he": {"_count": 16}, "weve": {"_count": 1}, "seven": {"_count": 1}, "that": {"_count": 14}, "wed": {"_count": 1}, "melted": {"_count": 1}, "in": {"_count": 4}, "righ": {"_count": 8}, "his": {"_count": 1}, "students": {"_count": 2}, "further": {"_count": 1}, "teachers": {"_count": 1}, "too": {"_count": 3}, "Ive": {"_count": 1}, "along": {"_count": 2}, "down": {"_count": 1}, "cats": {"_count": 1}, "around": {"_count": 7}, "well": {"_count": 1}, "on": {"_count": 1}, "it": {"_count": 1}, "usual": {"_count": 1}, "five": {"_count": 1}, "this": {"_count": 4}, "because": {"_count": 1}, "through": {"_count": 1}, "these": {"_count": 4}, "of": {"_count": 26}, "was": {"_count": 6}, "four": {"_count": 5}, "dark": {"_count": 1}, "thanks": {"_count": 1}, "were": {"_count": 1}, "eyes": {"_count": 1}, "okay": {"_count": 1}, "across": {"_count": 1}, "their": {"_count": 1}, "been": {"_count": 1}, "channels": {"_count": 1}, "agreed": {"_count": 1}, "six": {"_count": 1}, "exstudents": {"_count": 1}, "very": {"_count": 1}, "wanting": {"_count": 1}, "new": {"_count": 1}, "seemed": {"_count": 1}, "faces": {"_count": 1}, "Ill": {"_count": 1}, "done": {"_count": 1}, "most": {"_count": 1}, "last": {"_count": 1}, "movements": {"_count": 1}, "except": {"_count": 1}, "fine": {"_count": 1}, "goblinmade": {"_count": 1}}, "Professor": {"_count": 416, "McGonagall": {"_count": 106}, "McGonagalls": {"_count": 4}, "Quirrell": {"_count": 3}, "Dumbledore": {"_count": 30}, "Binns": {"_count": 12}, "Flitwick": {"_count": 14}, "M": {"_count": 2}, "Sprout": {"_count": 14}, "please": {"_count": 1}, "I": {"_count": 5}, "Sprouts": {"_count": 3}, "S": {"_count": 1}, "Lockhart": {"_count": 4}, "Snape": {"_count": 23}, "said": {"_count": 4}, "Harry": {"_count": 7}, "Dumbledores": {"_count": 2}, "he": {"_count": 1}, "R": {"_count": 1}, "Lupin": {"_count": 26}, "Trelawney": {"_count": 41}, "drawled": {"_count": 1}, "my": {"_count": 1}, "Snapes": {"_count": 1}, "Trelawneys": {"_count": 3}, "Severus": {"_count": 1}, "Blacks": {"_count": 1}, "Lupins": {"_count": 1}, "Moody": {"_count": 9}, "Vector": {"_count": 1}, "Karkaroff": {"_count": 3}, "": {"_count": 14}, "Karkaroffs": {"_count": 1}, "Umbridge": {"_count": 39}, "GrubblyPlank": {"_count": 5}, "Umbridges": {"_count": 6}, "is": {"_count": 1}, "Marchbanks": {"_count": 1}, "Tofty": {"_count": 3}, "why": {"_count": 1}, "what": {"_count": 1}, "Slughorn": {"_count": 5}, "can": {"_count": 2}, "did": {"_count": 1}, "Im": {"_count": 2}, "Dippet": {"_count": 1}, "Professor": {"_count": 1}, "Flitwicks": {"_count": 1}, "Burbage": {"_count": 1}, "Black": {"_count": 2}, "do": {"_count": 1}, "theres": {"_count": 1}}, "I": {"_count": 3514, "heard": {"_count": 25}, "know": {"_count": 151}, "suppose": {"_count": 53}, "have": {"_count": 118}, "havent": {"_count": 30}, "cant": {"_count": 67}, "didnt": {"_count": 75}, "shall": {"_count": 46}, "wont": {"_count": 21}, "": {"_count": 21}, "had": {"_count": 45}, "want": {"_count": 64}, "WANT": {"_count": 1}, "need": {"_count": 37}, "warn": {"_count": 1}, "demand": {"_count": 1}, "can": {"_count": 60}, "mean": {"_count": 122}, "was": {"_count": 165}, "never": {"_count": 28}, "dont": {"_count": 286}, "dreamed": {"_count": 2}, "think": {"_count": 211}, "do": {"_count": 45}, "say": {"_count": 9}, "really": {"_count": 22}, "thought": {"_count": 113}, "remember": {"_count": 16}, "just": {"_count": 62}, "forbid": {"_count": 1}, "bet": {"_count": 27}, "tried": {"_count": 6}, "will": {"_count": 36}, "hope": {"_count": 40}, "suggest": {"_count": 10}, "read": {"_count": 4}, "spent": {"_count": 1}, "liked": {"_count": 4}, "start": {"_count": 1}, "tell": {"_count": 7}, "couldnt": {"_count": 15}, "told": {"_count": 41}, "wasnt": {"_count": 13}, "see": {"_count": 45}, "wouldnt": {"_count": 20}, "went": {"_count": 8}, "knew": {"_count": 42}, "found": {"_count": 12}, "don": {"_count": 13}, "hate": {"_count": 4}, "I": {"_count": 23}, "met": {"_count": 6}, "got": {"_count": 24}, "would": {"_count": 43}, "bin": {"_count": 2}, "neednt": {"_count": 1}, "wish": {"_count": 28}, "woke": {"_count": 2}, "shouldnta": {"_count": 1}, "might": {"_count": 11}, "wondered": {"_count": 4}, "saw": {"_count": 37}, "must": {"_count": 46}, "Ive": {"_count": 5}, "always": {"_count": 13}, "killed": {"_count": 3}, "believe": {"_count": 24}, "arrived": {"_count": 2}, "feared": {"_count": 2}, "am": {"_count": 135}, "brought": {"_count": 6}, "reckon": {"_count": 23}, "therefore": {"_count": 3}, "meant": {"_count": 4}, "belong": {"_count": 1}, "understand": {"_count": 9}, "expect": {"_count": 25}, "wrote": {"_count": 5}, "said": {"_count": 18}, "should": {"_count": 18}, "dunno": {"_count": 34}, "noticed": {"_count": 3}, "covered": {"_count": 1}, "booked": {"_count": 2}, "could": {"_count": 27}, "persuaded": {"_count": 3}, "smell": {"_count": 2}, "SMELL": {"_count": 1}, "personally": {"_count": 2}, "deal": {"_count": 1}, "repeat": {"_count": 4}, "wanted": {"_count": 17}, "usually": {"_count": 1}, "wonder": {"_count": 31}, "accidentally": {"_count": 1}, "spoke": {"_count": 1}, "only": {"_count": 12}, "beg": {"_count": 9}, "caught": {"_count": 2}, "simply": {"_count": 2}, "daresay": {"_count": 9}, "flatter": {"_count": 1}, "come": {"_count": 1}, "agree": {"_count": 4}, "quite": {"_count": 5}, "died": {"_count": 2}, "grew": {"_count": 2}, "decided": {"_count": 1}, "forgot": {"_count": 14}, "taught": {"_count": 2}, "ththought": {"_count": 1}, "imagine": {"_count": 3}, "walked": {"_count": 3}, "DONT": {"_count": 3}, "asked": {"_count": 9}, "bought": {"_count": 1}, "hoped": {"_count": 1}, "still": {"_count": 20}, "eard": {"_count": 1}, "notice": {"_count": 3}, "already": {"_count": 1}, "look": {"_count": 4}, "find": {"_count": 2}, "myself": {"_count": 2}, "assure": {"_count": 9}, "imagined": {"_count": 1}, "made": {"_count": 5}, "did": {"_count": 30}, "called": {"_count": 2}, "chose": {"_count": 3}, "musta": {"_count": 1}, "didn": {"_count": 2}, "shoulda": {"_count": 1}, "certainly": {"_count": 2}, "couldn": {"_count": 1}, "used": {"_count": 9}, "dare": {"_count": 1}, "frequently": {"_count": 1}, "doubt": {"_count": 9}, "shouldnt": {"_count": 3}, "learned": {"_count": 2}, "rolled": {"_count": 1}, "gave": {"_count": 3}, "happen": {"_count": 1}, "cannot": {"_count": 14}, "owe": {"_count": 2}, "give": {"_count": 3}, "drifted": {"_count": 1}, "d": {"_count": 2}, "trusted": {"_count": 2}, "helped": {"_count": 1}, "watched": {"_count": 5}, "believed": {"_count": 4}, "sometimes": {"_count": 7}, "supposed": {"_count": 1}, "as": {"_count": 1}, "set": {"_count": 2}, "realized": {"_count": 2}, "a": {"_count": 1}, "swam": {"_count": 1}, "journeyed": {"_count": 1}, "assume": {"_count": 4}, "let": {"_count": 2}, "bound": {"_count": 1}, "passed": {"_count": 1}, "feel": {"_count": 9}, "promised": {"_count": 4}, "Sirius": {"_count": 1}, "revolt": {"_count": 1}, "collect": {"_count": 1}, "hear": {"_count": 3}, "like": {"_count": 6}, "shudder": {"_count": 1}, "borrowed": {"_count": 2}, "sent": {"_count": 3}, "says": {"_count": 1}, "is": {"_count": 7}, "pull": {"_count": 1}, "dropped": {"_count": 3}, "missed": {"_count": 1}, "ask": {"_count": 10}, "definitely": {"_count": 1}, "fear": {"_count": 1}, "spose": {"_count": 12}, "shouldntve": {"_count": 1}, "ope": {"_count": 1}, "now": {"_count": 2}, "wouldve": {"_count": 3}, "estimate": {"_count": 1}, "insist": {"_count": 1}, "particularly": {"_count": 1}, "no": {"_count": 3}, "arose": {"_count": 1}, "came": {"_count": 8}, "has": {"_count": 1}, "however": {"_count": 2}, "jus": {"_count": 2}, "ave": {"_count": 2}, "well": {"_count": 6}, "refuse": {"_count": 3}, "closed": {"_count": 1}, "seal": {"_count": 1}, "yes": {"_count": 4}, "merely": {"_count": 3}, "er": {"_count": 3}, "shouldve": {"_count": 4}, "deserved": {"_count": 1}, "couldve": {"_count": 1}, "warned": {"_count": 3}, "ony": {"_count": 1}, "vant": {"_count": 1}, "vos": {"_count": 2}, "left": {"_count": 1}, "attended": {"_count": 1}, "opened": {"_count": 1}, "revenged": {"_count": 1}, "confess": {"_count": 2}, "miscalculated": {"_count": 1}, "who": {"_count": 2}, "settled": {"_count": 1}, "returned": {"_count": 5}, "disposed": {"_count": 1}, "WONT": {"_count": 1}, "expected": {"_count": 4}, "staged": {"_count": 1}, "breathed": {"_count": 1}, "Stunned": {"_count": 2}, "put": {"_count": 2}, "stole": {"_count": 4}, "awoke": {"_count": 1}, "drank": {"_count": 1}, "took": {"_count": 6}, "kept": {"_count": 3}, "also": {"_count": 2}, "pulled": {"_count": 1}, "waited": {"_count": 1}, "buried": {"_count": 1}, "trust": {"_count": 5}, "promise": {"_count": 1}, "WILL": {"_count": 1}, "offered": {"_count": 3}, "gree": {"_count": 1}, "absolutely": {"_count": 1}, "oh": {"_count": 4}, "keep": {"_count": 3}, "felt": {"_count": 2}, "that": {"_count": 1}, "not": {"_count": 1}, "recognized": {"_count": 1}, "seem": {"_count": 1}, "listen": {"_count": 1}, "take": {"_count": 4}, "what": {"_count": 5}, "fancied": {"_count": 1}, "count": {"_count": 1}, "sincerely": {"_count": 1}, "but": {"_count": 1}, "suggested": {"_count": 1}, "DID": {"_count": 1}, "prefer": {"_count": 1}, "mustve": {"_count": 2}, "contacted": {"_count": 1}, "haven": {"_count": 1}, "But": {"_count": 2}, "wouldntve": {"_count": 1}, "yelled": {"_count": 1}, "suspect": {"_count": 1}, "KNOW": {"_count": 1}, "turned": {"_count": 2}, "questioned": {"_count": 1}, "ppreciate": {"_count": 1}, "won": {"_count": 3}, "confiscated": {"_count": 1}, "mistranslated": {"_count": 1}, "spect": {"_count": 2}, "DOE": {"_count": 1}, "you": {"_count": 1}, "guessed": {"_count": 2}, "delivered": {"_count": 1}, "explained": {"_count": 1}, "suspected": {"_count": 1}, "alone": {"_count": 1}, "allowed": {"_count": 1}, "cared": {"_count": 1}, "rather": {"_count": 2}, "deeply": {"_count": 1}, "spun": {"_count": 1}, "on": {"_count": 1}, "gather": {"_count": 1}, "swear": {"_count": 4}, "squeezed": {"_count": 1}, "urge": {"_count": 1}, "implore": {"_count": 1}, "love": {"_count": 4}, "enjoy": {"_count": 1}, "Lupin": {"_count": 1}, "played": {"_count": 1}, "honestly": {"_count": 1}, "managed": {"_count": 2}, "debated": {"_count": 1}, "swore": {"_count": 1}, "nearly": {"_count": 2}, "bear": {"_count": 1}, "overheard": {"_count": 1}, "extracted": {"_count": 1}, "solemnly": {"_count": 1}, "generally": {"_count": 1}, "miss": {"_count": 3}, "confidently": {"_count": 1}, "stumbled": {"_count": 1}, "may": {"_count": 2}, "wished": {"_count": 1}, "all": {"_count": 1}, "stepped": {"_count": 1}, "face": {"_count": 1}, "messed": {"_count": 1}, "care": {"_count": 1}, "THE": {"_count": 1}, "require": {"_count": 2}, "postponed": {"_count": 1}, "mention": {"_count": 1}, "He": {"_count": 2}, "jjust": {"_count": 1}, "Hermione": {"_count": 1}, "try": {"_count": 1}, "open": {"_count": 4}, "valked": {"_count": 1}, "packed": {"_count": 1}, "recognize": {"_count": 2}, "landed": {"_count": 1}, "requested": {"_count": 1}, "bbought": {"_count": 1}, "forget": {"_count": 1}, "grow": {"_count": 1}, "mightve": {"_count": 1}, "actually": {"_count": 1}, "even": {"_count": 1}, "grabbed": {"_count": 1}, "figured": {"_count": 1}, "looked": {"_count": 1}, "how": {"_count": 1}, "respect": {"_count": 1}, "sought": {"_count": 2}, "ran": {"_count": 1}, "sealed": {"_count": 1}, "virtually": {"_count": 1}, "regret": {"_count": 1}, "command": {"_count": 1}, "speak": {"_count": 1}, "refer": {"_count": 1}, "spend": {"_count": 1}, "crave": {"_count": 1}, "resented": {"_count": 1}, "loved": {"_count": 2}, "assuaged": {"_count": 1}, "meanwhile": {"_count": 1}, "delayed": {"_count": 1}, "picked": {"_count": 1}, "overpowered": {"_count": 1}, "wonti": {"_count": 1}}, "Flocks": {"_count": 1, "of": {"_count": 1}}, "You": {"_count": 1549, "cant": {"_count": 37}, "flatter": {"_count": 1}, "know": {"_count": 137}, "dont": {"_count": 78}, "couldnt": {"_count": 10}, "think": {"_count": 27}, "could": {"_count": 19}, "are": {"_count": 88}, "never": {"_count": 11}, "knew": {"_count": 6}, "was": {"_count": 1}, "can": {"_count": 63}, "bowed": {"_count": 1}, "have": {"_count": 71}, "saw": {"_count": 9}, "all": {"_count": 13}, "11": {"_count": 1}, "just": {"_count": 20}, "should": {"_count": 25}, "said": {"_count": 17}, "wont": {"_count": 17}, "want": {"_count": 25}, "two": {"_count": 15}, "hang": {"_count": 1}, "havent": {"_count": 29}, "will": {"_count": 74}, "might": {"_count": 17}, "Potter": {"_count": 2}, "must": {"_count": 27}, "": {"_count": 17}, "realize": {"_count": 4}, "do": {"_count": 15}, "each": {"_count": 1}, "may": {"_count": 16}, "forget": {"_count": 2}, "what": {"_count": 2}, "too": {"_count": 3}, "asked": {"_count": 2}, "look": {"_count": 15}, "who": {"_count": 1}, "see": {"_count": 40}, "fed": {"_count": 1}, "had": {"_count": 12}, "shouldnt": {"_count": 9}, "drink": {"_count": 1}, "gasped": {"_count": 1}, "let": {"_count": 3}, "got": {"_count": 6}, "nearly": {"_count": 2}, "did": {"_count": 16}, "need": {"_count": 18}, "stay": {"_count": 5}, "ccant": {"_count": 1}, "didnt": {"_count": 30}, "keep": {"_count": 4}, "twove": {"_count": 1}, "be": {"_count": 1}, "couldve": {"_count": 2}, "were": {"_count": 45}, "wouldnt": {"_count": 9}, "heard": {"_count": 19}, "enjoyed": {"_count": 1}, "stopped": {"_count": 1}, "gave": {"_count": 4}, "wish": {"_count": 2}, "go": {"_count": 4}, "sleep": {"_count": 1}, "wanted": {"_count": 2}, "mean": {"_count": 17}, "met": {"_count": 1}, "wrote": {"_count": 2}, "found": {"_count": 4}, "hold": {"_count": 1}, "saved": {"_count": 7}, "happen": {"_count": 1}, "picked": {"_count": 1}, "shall": {"_count": 3}, "told": {"_count": 11}, "behave": {"_count": 1}, "mustnt": {"_count": 5}, "get": {"_count": 4}, "boy": {"_count": 3}, "ave": {"_count": 3}, "oughta": {"_count": 1}, "outta": {"_count": 1}, "bought": {"_count": 1}, "went": {"_count": 5}, "fainted": {"_count": 1}, "and": {"_count": 13}, "notice": {"_count": 2}, "remember": {"_count": 6}, "fell": {"_count": 1}, "made": {"_count": 3}, "really": {"_count": 7}, "arent": {"_count": 4}, "you": {"_count": 8}, "called": {"_count": 4}, "Harry": {"_count": 2}, "killed": {"_count": 2}, "sold": {"_count": 2}, "forgot": {"_count": 1}, "youve": {"_count": 1}, "always": {"_count": 2}, "werent": {"_count": 5}, "fly": {"_count": 1}, "thank": {"_count": 1}, "agree": {"_count": 1}, "surely": {"_count": 2}, "conjured": {"_count": 1}, "explain": {"_count": 1}, "guessed": {"_count": 1}, "helped": {"_count": 2}, "would": {"_count": 7}, "he": {"_count": 1}, "stand": {"_count": 3}, "write": {"_count": 1}, "dropped": {"_count": 1}, "wait": {"_count": 8}, "beat": {"_count": 2}, "foreign": {"_count": 1}, "not": {"_count": 1}, "is": {"_count": 6}, "goes": {"_count": 1}, "lot": {"_count": 3}, "watch": {"_count": 1}, "tell": {"_count": 2}, "seem": {"_count": 4}, "only": {"_count": 3}, "jus": {"_count": 1}, "shouldve": {"_count": 2}, "treat": {"_count": 1}, "miss": {"_count": 1}, "there": {"_count": 1}, "coming": {"_count": 1}, "bring": {"_count": 1}, "er": {"_count": 5}, "Are": {"_count": 1}, "horrible": {"_count": 1}, "used": {"_count": 3}, "ever": {"_count": 1}, "okay": {"_count": 1}, "take": {"_count": 6}, "haff": {"_count": 1}, "first": {"_count": 1}, "say": {"_count": 3}, "missed": {"_count": 2}, "planned": {"_count": 1}, "stayed": {"_count": 1}, "ask": {"_count": 4}, "returned": {"_count": 1}, "deserve": {"_count": 2}, "cannot": {"_count": 6}, "fight": {"_count": 1}, "dueled": {"_count": 1}, "fired": {"_count": 1}, "isnt": {"_count": 1}, "admit": {"_count": 1}, "caught": {"_count": 1}, "going": {"_count": 1}, "moron": {"_count": 1}, "suggest": {"_count": 1}, "ran": {"_count": 1}, "received": {"_count": 3}, "produced": {"_count": 1}, "belong": {"_count": 1}, "believe": {"_count": 4}, "arrived": {"_count": 1}, "handled": {"_count": 1}, "sound": {"_count": 3}, "disagree": {"_count": 1}, "read": {"_count": 2}, "applied": {"_count": 1}, "thought": {"_count": 1}, "ought": {"_count": 3}, "tripped": {"_count": 1}, "left": {"_count": 1}, "hag": {"_count": 1}, "survived": {"_count": 2}, "understand": {"_count": 6}, "keepin": {"_count": 1}, "lost": {"_count": 2}, "managed": {"_count": 1}, "try": {"_count": 2}, "kept": {"_count": 3}, "mark": {"_count": 1}, "hop": {"_count": 1}, "organized": {"_count": 1}, "recruited": {"_count": 1}, "filthy": {"_count": 1}, "run": {"_count": 1}, "make": {"_count": 2}, "re": {"_count": 1}, "forfeited": {"_count": 1}, "stationed": {"_count": 1}, "refused": {"_count": 1}, "took": {"_count": 3}, "sent": {"_count": 3}, "dawdled": {"_count": 1}, "hear": {"_count": 1}, "jest": {"_count": 1}, "dare": {"_count": 4}, "here": {"_count": 1}, "care": {"_count": 2}, "rose": {"_count": 1}, "delayed": {"_count": 1}, "fought": {"_count": 1}, "to": {"_count": 1}, "died": {"_count": 1}, "came": {"_count": 1}, "add": {"_count": 1}, "showed": {"_count": 1}, "reckon": {"_count": 4}, "flew": {"_count": 1}, "dislike": {"_count": 1}, "prat": {"_count": 1}, "shut": {"_count": 1}, "spiked": {"_count": 1}, "added": {"_count": 1}, "prefer": {"_count": 1}, "speak": {"_count": 1}, "sure": {"_count": 1}, "insulted": {"_count": 1}, "naughty": {"_count": 1}, "call": {"_count": 1}, "liked": {"_count": 1}, "destroyed": {"_count": 1}, "definitely": {"_count": 1}, "still": {"_count": 2}, "almost": {"_count": 1}, "theenk": {"_count": 1}, "claim": {"_count": 1}, "lied": {"_count": 1}, "sought": {"_count": 1}, "ditched": {"_count": 1}, "mustve": {"_count": 2}, "amaze": {"_count": 1}, "Barny": {"_count": 1}, "fancy": {"_count": 1}, "simply": {"_count": 1}, "tracked": {"_count": 1}, "cast": {"_count": 1}, "choose": {"_count": 1}, "crawl": {"_count": 1}, "come": {"_count": 1}, "lying": {"_count": 1}, "checked": {"_count": 1}, "enter": {"_count": 1}, "lie": {"_count": 1}, "dirty": {"_count": 1}, "understood": {"_count": 1}, "turn": {"_count": 1}, "probably": {"_count": 1}, "buried": {"_count": 1}, "dug": {"_count": 1}, "rescued": {"_count": 1}, "talk": {"_count": 1}, "bloody": {"_count": 1}, "Death": {"_count": 1}, "an": {"_count": 1}, "actually": {"_count": 1}, "hurt": {"_count": 1}, "trust": {"_count": 1}, "wonderful": {"_count": 1}, "brave": {"_count": 1}, "carry": {"_count": 1}, "show": {"_count": 1}, "no": {"_count": 1}}, "Weve": {"_count": 119, "had": {"_count": 4}, "no": {"_count": 1}, "come": {"_count": 4}, "already": {"_count": 1}, "got": {"_count": 51}, "just": {"_count": 2}, "heard": {"_count": 1}, "only": {"_count": 3}, "never": {"_count": 3}, "trained": {"_count": 1}, "won": {"_count": 1}, "decided": {"_count": 1}, "still": {"_count": 2}, "forgotten": {"_count": 2}, "lost": {"_count": 1}, "been": {"_count": 14}, "used": {"_count": 1}, "checked": {"_count": 1}, "met": {"_count": 1}, "gone": {"_count": 1}, "done": {"_count": 2}, "seen": {"_count": 2}, "taken": {"_count": 1}, "given": {"_count": 1}, "set": {"_count": 1}, "managed": {"_count": 2}, "said": {"_count": 1}, "all": {"_count": 2}, "received": {"_count": 1}, "asked": {"_count": 1}, "told": {"_count": 2}, "tried": {"_count": 1}, "missed": {"_count": 1}, "bin": {"_count": 1}, "risked": {"_count": 1}, "leaked": {"_count": 1}, "caught": {"_count": 1}, "captured": {"_count": 1}}, "We": {"_count": 592, "have": {"_count": 30}, "may": {"_count": 3}, "could": {"_count": 16}, "await": {"_count": 1}, "swore": {"_count": 1}, "use": {"_count": 1}, "havent": {"_count": 13}, "wont": {"_count": 4}, "should": {"_count": 14}, "know": {"_count": 23}, "dont": {"_count": 24}, "think": {"_count": 12}, "just": {"_count": 7}, "mustve": {"_count": 1}, "received": {"_count": 1}, "won": {"_count": 5}, "were": {"_count": 32}, "only": {"_count": 4}, "wondered": {"_count": 4}, "cant": {"_count": 23}, "might": {"_count": 3}, "want": {"_count": 6}, "had": {"_count": 16}, "must": {"_count": 14}, "would": {"_count": 2}, "hoped": {"_count": 1}, "can": {"_count": 23}, "need": {"_count": 32}, "werent": {"_count": 4}, "wanted": {"_count": 5}, "dve": {"_count": 1}, "already": {"_count": 3}, "saw": {"_count": 7}, "still": {"_count": 1}, "separate": {"_count": 1}, "are": {"_count": 31}, "always": {"_count": 2}, "keep": {"_count": 2}, "shall": {"_count": 11}, "do": {"_count": 9}, "even": {"_count": 1}, "went": {"_count": 4}, "tried": {"_count": 3}, "thought": {"_count": 14}, "shouldve": {"_count": 1}, "will": {"_count": 7}, "shouldnt": {"_count": 4}, "got": {"_count": 4}, "didnt": {"_count": 8}, "lost": {"_count": 3}, "heard": {"_count": 2}, "bequeath": {"_count": 1}, "let": {"_count": 1}, "used": {"_count": 4}, "owe": {"_count": 1}, "all": {"_count": 14}, "did": {"_count": 8}, "laughed": {"_count": 2}, "attacked": {"_count": 2}, "er": {"_count": 2}, "mustnt": {"_count": 1}, "mightve": {"_count": 1}, "sent": {"_count": 2}, "told": {"_count": 3}, "spent": {"_count": 2}, "live": {"_count": 1}, "agreed": {"_count": 2}, "found": {"_count": 2}, "caught": {"_count": 1}, "held": {"_count": 1}, "start": {"_count": 1}, "keeps": {"_count": 1}, "upholds": {"_count": 1}, "ave": {"_count": 1}, "award": {"_count": 2}, "therefore": {"_count": 1}, "is": {"_count": 2}, "has": {"_count": 1}, "seemply": {"_count": 1}, "never": {"_count": 2}, "bow": {"_count": 1}, "took": {"_count": 4}, "journeyed": {"_count": 1}, "managed": {"_count": 1}, "both": {"_count": 2}, "kept": {"_count": 1}, "ought": {"_count": 4}, "take": {"_count": 3}, "put": {"_count": 1}, "ghosts": {"_count": 1}, "believe": {"_count": 2}, "seriously": {"_count": 1}, "get": {"_count": 1}, "once": {"_count": 1}, "jus": {"_count": 1}, "was": {"_count": 3}, "chanced": {"_count": 1}, "didn": {"_count": 2}, "Slytherins": {"_count": 1}, "find": {"_count": 2}, "begin": {"_count": 2}, "watch": {"_count": 1}, "needed": {"_count": 1}, "recognized": {"_count": 1}, "jjjust": {"_count": 1}, "consider": {"_count": 1}, "wizards": {"_count": 2}, "discussed": {"_count": 1}, "came": {"_count": 1}, "entered": {"_count": 1}, "urge": {"_count": 1}, "promise": {"_count": 1}, "": {"_count": 1}, "turn": {"_count": 1}, "discuss": {"_count": 1}, "sat": {"_count": 1}, "really": {"_count": 2}, "met": {"_count": 1}, "smashed": {"_count": 1}, "danced": {"_count": 1}, "split": {"_count": 1}, "go": {"_count": 1}, "arrived": {"_count": 1}, "knew": {"_count": 1}, "hung": {"_count": 1}, "couldve": {"_count": 1}, "now": {"_count": 1}, "Narcissa": {"_count": 1}, "hope": {"_count": 1}, "we": {"_count": 2}, "woke": {"_count": 1}, "search": {"_count": 1}, "threw": {"_count": 1}, "look": {"_count": 1}, "seize": {"_count": 1}, "talked": {"_count": 1}, "make": {"_count": 1}, "like": {"_count": 1}, "borrowed": {"_count": 1}, "protest": {"_count": 1}, "left": {"_count": 1}, "moved": {"_count": 1}, "ung": {"_count": 1}, "decided": {"_count": 1}, "bring": {"_count": 1}, "wrote": {"_count": 1}}, "Would": {"_count": 36, "you": {"_count": 17}, "it": {"_count": 4}, "anyone": {"_count": 2}, "we": {"_count": 1}, "Malfoy": {"_count": 1}, "Sirius": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}, "Umbridges": {"_count": 1}, "none": {"_count": 1}, "he": {"_count": 2}, "Gregorovitch": {"_count": 1}, "James": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}}, "Theyre": {"_count": 113, "a": {"_count": 4}, "saying": {"_count": 2}, "the": {"_count": 1}, "not": {"_count": 12}, "in": {"_count": 4}, "rare": {"_count": 2}, "deep": {"_count": 1}, "keys": {"_count": 1}, "ruinin": {"_count": 1}, "called": {"_count": 1}, "startin": {"_count": 1}, "starting": {"_count": 1}, "probably": {"_count": 1}, "talking": {"_count": 2}, "here": {"_count": 1}, "horrible": {"_count": 1}, "bound": {"_count": 1}, "guarding": {"_count": 1}, "getting": {"_count": 1}, "dead": {"_count": 2}, "off": {"_count": 1}, "bringing": {"_count": 1}, "going": {"_count": 2}, "cornin": {"_count": 1}, "late": {"_count": 1}, "objects": {"_count": 1}, "what": {"_count": 1}, "old": {"_count": 1}, "having": {"_count": 2}, "working": {"_count": 2}, "all": {"_count": 7}, "gettin": {"_count": 1}, "": {"_count": 2}, "very": {"_count": 1}, "making": {"_count": 1}, "jus": {"_count": 1}, "good": {"_count": 1}, "hedges": {"_count": 1}, "enormous": {"_count": 1}, "heading": {"_count": 1}, "really": {"_count": 4}, "always": {"_count": 1}, "just": {"_count": 1}, "still": {"_count": 2}, "trying": {"_count": 1}, "doubleended": {"_count": 1}, "out": {"_count": 1}, "hats": {"_count": 1}, "tree": {"_count": 1}, "disappearing": {"_count": 1}, "spirits": {"_count": 1}, "quite": {"_count": 1}, "throbbing": {"_count": 1}, "two": {"_count": 1}, "supposed": {"_count": 1}, "sure": {"_count": 1}, "complete": {"_count": 1}, "so": {"_count": 1}, "brains": {"_count": 1}, "raking": {"_count": 1}, "definitely": {"_count": 1}, "even": {"_count": 2}, "friends": {"_count": 1}, "invisible": {"_count": 1}, "playing": {"_count": 1}, "using": {"_count": 1}, "with": {"_count": 1}, "stupid": {"_count": 1}, "through": {"_count": 1}, "frightened": {"_count": 1}, "okay": {"_count": 1}, "everywhere": {"_count": 1}, "normally": {"_count": 1}, "Imperiused": {"_count": 1}, "pleased": {"_count": 1}, "protected": {"_count": 1}, "gentle": {"_count": 1}}, "Everyone": {"_count": 90, "knows": {"_count": 4}, "seemed": {"_count": 1}, "was": {"_count": 11}, "says": {"_count": 3}, "thinks": {"_count": 2}, "starts": {"_count": 1}, "expects": {"_count": 1}, "in": {"_count": 7}, "here": {"_count": 3}, "pick": {"_count": 1}, "from": {"_count": 2}, "stand": {"_count": 1}, "stopped": {"_count": 1}, "see": {"_count": 1}, "stared": {"_count": 2}, "fell": {"_count": 1}, "take": {"_count": 1}, "traipsed": {"_count": 1}, "filed": {"_count": 1}, "line": {"_count": 1}, "thought": {"_count": 5}, "looked": {"_count": 3}, "except": {"_count": 1}, "got": {"_count": 1}, "went": {"_count": 1}, "had": {"_count": 1}, "gather": {"_count": 2}, "drew": {"_count": 1}, "ready": {"_count": 3}, "back": {"_count": 2}, "into": {"_count": 1}, "sat": {"_count": 1}, "said": {"_count": 1}, "around": {"_count": 1}, "Mr": {"_count": 1}, "wears": {"_count": 1}, "else": {"_count": 2}, "watched": {"_count": 2}, "wanted": {"_count": 1}, "believed": {"_count": 1}, "seems": {"_count": 1}, "turned": {"_count": 1}, "laughed": {"_count": 1}, "heard": {"_count": 1}, "lowered": {"_count": 1}, "but": {"_count": 1}, "all": {"_count": 1}, "kept": {"_count": 1}, "heres": {"_count": 1}, "exclaimed": {"_count": 1}, "underage": {"_count": 1}, "who": {"_count": 1}}, "Voldemort": {"_count": 114, "had": {"_count": 11}, "said": {"_count": 2}, "might": {"_count": 1}, "was": {"_count": 12}, "put": {"_count": 1}, "teach": {"_count": 1}, "went": {"_count": 1}, "would": {"_count": 4}, "and": {"_count": 1}, "got": {"_count": 1}, "slipped": {"_count": 1}, "turned": {"_count": 1}, "bent": {"_count": 1}, "examined": {"_count": 1}, "laughed": {"_count": 2}, "stood": {"_count": 3}, "however": {"_count": 3}, "ignored": {"_count": 1}, "raised": {"_count": 9}, "now": {"_count": 1}, "moved": {"_count": 2}, "let": {"_count": 1}, "smiled": {"_count": 2}, "who": {"_count": 1}, "": {"_count": 2}, "rising": {"_count": 1}, "has": {"_count": 6}, "doesnt": {"_count": 1}, "killed": {"_count": 2}, "touches": {"_count": 1}, "vanished": {"_count": 1}, "of": {"_count": 1}, "knew": {"_count": 3}, "tried": {"_count": 2}, "himself": {"_count": 1}, "Stupefied": {"_count": 1}, "reached": {"_count": 1}, "inclined": {"_count": 1}, "s": {"_count": 3}, "murdered": {"_count": 1}, "likes": {"_count": 1}, "singled": {"_count": 1}, "needed": {"_count": 2}, "will": {"_count": 1}, "uses": {"_count": 1}, "wants": {"_count": 1}, "did": {"_count": 1}, "stroked": {"_count": 1}, "Easy": {"_count": 1}, "only": {"_count": 1}, "caught": {"_count": 1}, "he": {"_count": 1}, "thought": {"_count": 1}, "dropped": {"_count": 1}, "continued": {"_count": 1}, "wanted": {"_count": 1}, "started": {"_count": 1}, "halted": {"_count": 1}, "swept": {"_count": 1}, "seemed": {"_count": 1}, "hissed": {"_count": 1}}, "Only": {"_count": 74, "because": {"_count": 3}, "the": {"_count": 7}, "joking": {"_count": 1}, "dont": {"_count": 1}, "one": {"_count": 10}, "his": {"_count": 1}, "came": {"_count": 1}, "a": {"_count": 6}, "last": {"_count": 2}, "those": {"_count": 2}, "Draco": {"_count": 1}, "I": {"_count": 1}, "if": {"_count": 2}, "innocent": {"_count": 1}, "most": {"_count": 1}, "just": {"_count": 1}, "students": {"_count": 1}, "you": {"_count": 3}, "in": {"_count": 1}, "thing": {"_count": 4}, "this": {"_count": 1}, "way": {"_count": 1}, "weve": {"_count": 1}, "Dad": {"_count": 1}, "when": {"_count": 2}, "two": {"_count": 1}, "lets": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "four": {"_count": 1}, "": {"_count": 2}, "sixteen": {"_count": 1}, "failed": {"_count": 1}, "Tom": {"_count": 1}, "time": {"_count": 1}, "Mrs": {"_count": 1}, "as": {"_count": 1}, "they": {"_count": 1}, "once": {"_count": 1}, "trouble": {"_count": 1}, "toward": {"_count": 1}}, "Its": {"_count": 638, "lucky": {"_count": 1}, "its": {"_count": 2}, "Monday": {"_count": 1}, "them": {"_count": 2}, "a": {"_count": 43}, "about": {"_count": 7}, "like": {"_count": 9}, "on": {"_count": 2}, "not": {"_count": 62}, "really": {"_count": 6}, "odd": {"_count": 2}, "that": {"_count": 4}, "for": {"_count": 3}, "obviously": {"_count": 1}, "either": {"_count": 2}, "very": {"_count": 10}, "the": {"_count": 26}, "Winggardium": {"_count": 1}, "no": {"_count": 9}, "mean": {"_count": 1}, "time": {"_count": 6}, "dangerous": {"_count": 1}, "nothin": {"_count": 1}, "an": {"_count": 3}, "here": {"_count": 2}, "people": {"_count": 2}, "hard": {"_count": 1}, "nearly": {"_count": 7}, "spiny": {"_count": 1}, "Hedwig": {"_count": 1}, "too": {"_count": 3}, "one": {"_count": 4}, "just": {"_count": 21}, "long": {"_count": 2}, "tonight": {"_count": 1}, "okay": {"_count": 17}, "obvious": {"_count": 5}, "almost": {"_count": 3}, "all": {"_count": 38}, "Dads": {"_count": 1}, "wonderful": {"_count": 1}, "your": {"_count": 6}, "gone": {"_count": 2}, "faulty": {"_count": 1}, "probably": {"_count": 2}, "never": {"_count": 2}, "trunk": {"_count": 1}, "\u2018wattlebird": {"_count": 1}, "part": {"_count": 2}, "ridiculous": {"_count": 1}, "only": {"_count": 8}, "been": {"_count": 21}, "nice": {"_count": 1}, "me": {"_count": 5}, "nothing": {"_count": 7}, "eyes": {"_count": 3}, "because": {"_count": 4}, "ready": {"_count": 1}, "Crabbe": {"_count": 1}, "awful": {"_count": 1}, "over": {"_count": 4}, "happening": {"_count": 1}, "already": {"_count": 1}, "methods": {"_count": 1}, "amazing": {"_count": 2}, "damn": {"_count": 1}, "normally": {"_count": 2}, "enough": {"_count": 2}, "my": {"_count": 10}, "late": {"_count": 1}, "coming": {"_count": 2}, "this": {"_count": 2}, "face": {"_count": 1}, "what": {"_count": 8}, "polite": {"_count": 1}, "still": {"_count": 3}, "Malfoys": {"_count": 1}, "always": {"_count": 2}, "confused": {"_count": 1}, "her": {"_count": 3}, "going": {"_count": 5}, "handle": {"_count": 1}, "stress": {"_count": 1}, "getting": {"_count": 1}, "Cho": {"_count": 1}, "from": {"_count": 2}, "us": {"_count": 5}, "bad": {"_count": 2}, "Scabbers": {"_count": 1}, "marked": {"_count": 1}, "so": {"_count": 4}, "empty": {"_count": 1}, "hooves": {"_count": 1}, "proper": {"_count": 1}, "got": {"_count": 11}, "classified": {"_count": 1}, "voice": {"_count": 2}, "slavery": {"_count": 1}, "disgusting": {"_count": 1}, "weird": {"_count": 3}, "end": {"_count": 1}, "SPEW": {"_count": 1}, "made": {"_count": 1}, "Potions": {"_count": 1}, "French": {"_count": 1}, "in": {"_count": 4}, "down": {"_count": 1}, "his": {"_count": 2}, "back": {"_count": 1}, "extrasensitive": {"_count": 1}, "marks": {"_count": 1}, "Christmas": {"_count": 2}, "hot": {"_count": 1}, "Peeves": {"_count": 1}, "mine": {"_count": 1}, "making": {"_count": 1}, "half": {"_count": 1}, "But": {"_count": 1}, "oh": {"_count": 1}, "leprechaun": {"_count": 1}, "rubbish": {"_count": 1}, "Mr": {"_count": 1}, "narrow": {"_count": 1}, "great": {"_count": 2}, "thick": {"_count": 1}, "head": {"_count": 1}, "arms": {"_count": 1}, "Arthurs": {"_count": 1}, "you": {"_count": 6}, "addressed": {"_count": 1}, "taken": {"_count": 1}, "Tonks": {"_count": 1}, "black": {"_count": 1}, "worth": {"_count": 1}, "proving": {"_count": 1}, "Doxycide": {"_count": 1}, "skin": {"_count": 1}, "ideal": {"_count": 1}, "Unplottable": {"_count": 1}, "I": {"_count": 1}, "headquarters": {"_count": 1}, "Ron": {"_count": 1}, "up": {"_count": 2}, "best": {"_count": 1}, "stressful": {"_count": 1}, "outrageous": {"_count": 1}, "more": {"_count": 1}, "bizarre": {"_count": 1}, "normal": {"_count": 1}, "good": {"_count": 3}, "nuthin": {"_count": 1}, "s": {"_count": 1}, "jus": {"_count": 1}, "Fred": {"_count": 1}, "often": {"_count": 1}, "Rons": {"_count": 1}, "our": {"_count": 1}, "these": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 7}, "lessons": {"_count": 1}, "funny": {"_count": 1}, "none": {"_count": 3}, "against": {"_count": 1}, "him": {"_count": 3}, "Professor": {"_count": 1}, "Easter": {"_count": 1}, "supposed": {"_count": 2}, "mes": {"_count": 1}, "urgent": {"_count": 2}, "hidden": {"_count": 1}, "through": {"_count": 1}, "something": {"_count": 1}, "Longbottom": {"_count": 1}, "owner": {"_count": 1}, "said": {"_count": 1}, "addled": {"_count": 1}, "lid": {"_count": 1}, "quite": {"_count": 1}, "pathetic": {"_count": 2}, "survivors": {"_count": 1}, "rude": {"_count": 1}, "high": {"_count": 1}, "Veritaserum": {"_count": 1}, "Polyjuice": {"_count": 1}, "Amortentia": {"_count": 1}, "five": {"_count": 1}, "yeh": {"_count": 1}, "Dumbledores": {"_count": 2}, "Leanne": {"_count": 1}, "tomorrow": {"_count": 1}, "mainly": {"_count": 1}, "fine": {"_count": 3}, "taking": {"_count": 1}, "terrible": {"_count": 1}, "such": {"_count": 1}, "true": {"_count": 1}, "dead": {"_count": 1}, "natural": {"_count": 1}, "McGonagalls": {"_count": 1}, "certainly": {"_count": 1}, "keeping": {"_count": 1}, "dreadful": {"_count": 1}, "pure": {"_count": 1}, "traditional": {"_count": 1}, "binding": {"_count": 1}, "better": {"_count": 1}, "ggone": {"_count": 1}, "mental": {"_count": 1}, "horrible": {"_count": 1}, "pink": {"_count": 1}, "impossible": {"_count": 1}, "brilliant": {"_count": 1}, "spine": {"_count": 1}, "theirs": {"_count": 1}, "infallible": {"_count": 1}, "Potter": {"_count": 2}, "full": {"_count": 1}, "important": {"_count": 1}, "protection": {"_count": 1}, "history": {"_count": 1}, "Travers": {"_count": 1}, "there": {"_count": 1}, "ugly": {"_count": 1}, "somewhere": {"_count": 1}, "beats": {"_count": 1}, "backfired": {"_count": 1}}, "Lily": {"_count": 18, "and": {"_count": 2}, "whose": {"_count": 1}, "Evans": {"_count": 1}, "take": {"_count": 1}, "dont": {"_count": 1}, "had": {"_count": 2}, "waited": {"_count": 1}, "come": {"_count": 1}, "obeyed": {"_count": 1}, "screamed": {"_count": 1}, "rounded": {"_count": 1}, "seemed": {"_count": 1}, "glanced": {"_count": 1}, "sat": {"_count": 1}, "took": {"_count": 1}, "who": {"_count": 1}}, "he": {"_count": 133, "said": {"_count": 19}, "couldnt": {"_count": 2}, "was": {"_count": 20}, "wont": {"_count": 1}, "muttered": {"_count": 6}, "kept": {"_count": 1}, "opened": {"_count": 1}, "whispered": {"_count": 3}, "borrowed": {"_count": 1}, "asked": {"_count": 2}, "looked": {"_count": 3}, "neednt": {"_count": 1}, "would": {"_count": 4}, "wailed": {"_count": 1}, "hadnt": {"_count": 1}, "wouldnt": {"_count": 1}, "added": {"_count": 1}, "says": {"_count": 2}, "had": {"_count": 11}, "cut": {"_count": 1}, "has": {"_count": 1}, "groped": {"_count": 1}, "always": {"_count": 1}, "could": {"_count": 3}, "just": {"_count": 2}, "put": {"_count": 3}, "alone": {"_count": 1}, "should": {"_count": 1}, "didnt": {"_count": 3}, "goes": {"_count": 1}, "mentioned": {"_count": 1}, "Harry": {"_count": 2}, "knew": {"_count": 3}, "crept": {"_count": 1}, "choked": {"_count": 1}, "murmured": {"_count": 1}, "will": {"_count": 2}, "brought": {"_count": 2}, "wasnt": {"_count": 1}, "gripped": {"_count": 1}, "died": {"_count": 1}, "mumbled": {"_count": 1}, "realized": {"_count": 1}, "joined": {"_count": 1}, "dialed": {"_count": 1}, "told": {"_count": 1}, "growled": {"_count": 1}, "thought": {"_count": 1}, "poked": {"_count": 1}, "began": {"_count": 1}, "and": {"_count": 1}, "waited": {"_count": 1}, "might": {"_count": 1}, "remembered": {"_count": 1}, "dve": {"_count": 1}, "hasnt": {"_count": 1}, "groaned": {"_count": 1}, "yelled": {"_count": 1}, "left": {"_count": 1}}, "Thats": {"_count": 256, "not": {"_count": 17}, "two": {"_count": 2}, "mine": {"_count": 1}, "what": {"_count": 25}, "better": {"_count": 4}, "the": {"_count": 16}, "Hagrid": {"_count": 2}, "it": {"_count": 8}, "your": {"_count": 4}, "a": {"_count": 15}, "why": {"_count": 20}, "you": {"_count": 2}, "top": {"_count": 1}, "friendly": {"_count": 1}, "really": {"_count": 1}, "exactly": {"_count": 2}, "chess": {"_count": 1}, "hardly": {"_count": 1}, "just": {"_count": 1}, "where": {"_count": 6}, "Moaning": {"_count": 1}, "because": {"_count": 3}, "how": {"_count": 4}, "Filch": {"_count": 1}, "Dads": {"_count": 1}, "clever": {"_count": 1}, "right": {"_count": 26}, "all": {"_count": 8}, "who": {"_count": 1}, "enough": {"_count": 3}, "obvious": {"_count": 1}, "south": {"_count": 1}, "Madam": {"_count": 1}, "my": {"_count": 6}, "weird": {"_count": 1}, "convenient": {"_count": 1}, "true": {"_count": 2}, "good": {"_count": 2}, "no": {"_count": 2}, "whats": {"_count": 2}, "if": {"_count": 2}, "sick": {"_count": 1}, "for": {"_count": 1}, "when": {"_count": 2}, "some": {"_count": 1}, "okay": {"_count": 1}, "more": {"_count": 1}, "twice": {"_count": 1}, "Fudges": {"_count": 1}, "Dumbledores": {"_count": 2}, "never": {"_count": 2}, "him": {"_count": 3}, "Marlene": {"_count": 1}, "Frank": {"_count": 1}, "Edgar": {"_count": 1}, "Dorcas": {"_count": 1}, "before": {"_count": 1}, "out": {"_count": 1}, "quite": {"_count": 2}, "cause": {"_count": 1}, "definitely": {"_count": 1}, "always": {"_count": 1}, "wholl": {"_count": 1}, "great": {"_count": 2}, "stupid": {"_count": 1}, "an": {"_count": 1}, "already": {"_count": 1}, "from": {"_count": 1}, "neither": {"_count": 1}, "me": {"_count": 1}, "only": {"_count": 1}, "settled": {"_count": 1}, "decided": {"_count": 1}, "awful": {"_count": 1}, "brilliant": {"_count": 1}, "Voldemorts": {"_count": 1}, "to": {"_count": 1}, "our": {"_count": 1}, "her": {"_count": 2}, "Dolohov": {"_count": 1}, "their": {"_count": 1}, "mental": {"_count": 1}, "that": {"_count": 1}, "thats": {"_count": 1}, "as": {"_count": 1}, "very": {"_count": 1}, "got": {"_count": 1}, "interesting": {"_count": 1}, "sort": {"_count": 1}}, "all": {"_count": 22, "the": {"_count": 1}, "right": {"_count": 6}, "YouKnowOos": {"_count": 1}, "tha": {"_count": 1}, "that": {"_count": 1}, "my": {"_count": 2}, "those": {"_count": 1}, "waving": {"_count": 1}, "righ": {"_count": 2}, "fine": {"_count": 1}, "these": {"_count": 3}, "over": {"_count": 1}, "along": {"_count": 1}}, "of": {"_count": 15, "all": {"_count": 1}, "Wizards": {"_count": 1}, "course": {"_count": 6}, "killing": {"_count": 1}, "returning": {"_count": 1}, "moonstone": {"_count": 1}, "producing": {"_count": 1}, "": {"_count": 2}, "you": {"_count": 1}}, "Ive": {"_count": 295, "been": {"_count": 53}, "written": {"_count": 1}, "got": {"_count": 73}, "already": {"_count": 8}, "read": {"_count": 4}, "seen": {"_count": 9}, "still": {"_count": 3}, "heard": {"_count": 10}, "never": {"_count": 26}, "just": {"_count": 18}, "found": {"_count": 3}, "decided": {"_count": 4}, "met": {"_count": 1}, "had": {"_count": 13}, "filled": {"_count": 1}, "noticed": {"_count": 2}, "bin": {"_count": 5}, "looked": {"_count": 1}, "bbeen": {"_count": 1}, "rewritten": {"_count": 1}, "tried": {"_count": 2}, "fixed": {"_count": 1}, "only": {"_count": 1}, "not": {"_count": 1}, "lost": {"_count": 2}, "booked": {"_count": 1}, "spent": {"_count": 1}, "waited": {"_count": 1}, "told": {"_count": 9}, "handed": {"_count": 1}, "made": {"_count": 3}, "left": {"_count": 1}, "broken": {"_count": 1}, "promised": {"_count": 1}, "taken": {"_count": 2}, "buried": {"_count": 1}, "given": {"_count": 1}, "put": {"_count": 1}, "asked": {"_count": 1}, "bbbeen": {"_count": 1}, "no": {"_count": 2}, "definitely": {"_count": 1}, "done": {"_count": 4}, "supported": {"_count": 1}, "always": {"_count": 2}, "warned": {"_count": 1}, "changed": {"_count": 2}, "said": {"_count": 3}, "packed": {"_count": 1}, "wanted": {"_count": 1}, "something": {"_count": 1}, "learned": {"_count": 1}, "": {"_count": 1}, "toldjer": {"_count": 1}, "also": {"_count": 1}, "worked": {"_count": 1}, "known": {"_count": 1}}, "Harry": {"_count": 3881, "Potter": {"_count": 64}, "heard": {"_count": 39}, "groaned": {"_count": 3}, "was": {"_count": 193}, "didnt": {"_count": 44}, "had": {"_count": 194}, "must": {"_count": 3}, "put": {"_count": 18}, "who": {"_count": 33}, "hated": {"_count": 2}, "knew": {"_count": 54}, "supposed": {"_count": 6}, "felt": {"_count": 131}, "moved": {"_count": 30}, "stared": {"_count": 67}, "peered": {"_count": 5}, "sat": {"_count": 45}, "lay": {"_count": 14}, "on": {"_count": 4}, "looked": {"_count": 193}, "seriously": {"_count": 1}, "dodged": {"_count": 3}, "picked": {"_count": 11}, "went": {"_count": 27}, "and": {"_count": 169}, "sighed": {"_count": 4}, "walked": {"_count": 27}, "turned": {"_count": 51}, "shuffled": {"_count": 1}, "could": {"_count": 158}, "privately": {"_count": 3}, "couldnt": {"_count": 30}, "opened": {"_count": 15}, "yer": {"_count": 1}, "stretched": {"_count": 3}, "realized": {"_count": 5}, "jumped": {"_count": 10}, "meanwhile": {"_count": 4}, "scrambled": {"_count": 9}, "tried": {"_count": 29}, "counted": {"_count": 2}, "dropped": {"_count": 13}, "followed": {"_count": 16}, "took": {"_count": 39}, "unfolded": {"_count": 1}, "Professor": {"_count": 1}, "wished": {"_count": 9}, "watched": {"_count": 41}, "longed": {"_count": 2}, "cheered": {"_count": 1}, "now": {"_count": 5}, "noticed": {"_count": 26}, "suddenly": {"_count": 9}, "swallowed": {"_count": 8}, "shivered": {"_count": 5}, "kept": {"_count": 13}, "wasnt": {"_count": 11}, "wanted": {"_count": 7}, "woke": {"_count": 6}, "thought": {"_count": 48}, "pushed": {"_count": 10}, "pressed": {"_count": 3}, "saw": {"_count": 78}, "shook": {"_count": 8}, "said": {"_count": 44}, "nodded": {"_count": 19}, "pulled": {"_count": 39}, "unwrapped": {"_count": 1}, "got": {"_count": 29}, "nervously": {"_count": 1}, "quickly": {"_count": 8}, "smiled": {"_count": 9}, "grinned": {"_count": 8}, "recognized": {"_count": 14}, "spotted": {"_count": 3}, "crossed": {"_count": 7}, "piled": {"_count": 1}, "laughed": {"_count": 12}, "told": {"_count": 8}, "tore": {"_count": 6}, "wondered": {"_count": 26}, "remembered": {"_count": 11}, "read": {"_count": 4}, "hadnt": {"_count": 6}, "glanced": {"_count": 52}, "ignored": {"_count": 5}, "caught": {"_count": 17}, "groped": {"_count": 2}, "ripped": {"_count": 2}, "landed": {"_count": 1}, "swung": {"_count": 6}, "then": {"_count": 2}, "stuck": {"_count": 4}, "learned": {"_count": 2}, "Ron": {"_count": 90}, "showed": {"_count": 3}, "gulped": {"_count": 1}, "you": {"_count": 16}, "clambered": {"_count": 2}, "hasnt": {"_count": 1}, "decided": {"_count": 4}, "wandered": {"_count": 2}, "waited": {"_count": 18}, "played": {"_count": 1}, "blew": {"_count": 1}, "threw": {"_count": 8}, "stuffed": {"_count": 5}, "leaned": {"_count": 12}, "lit": {"_count": 1}, "stood": {"_count": 26}, "stepped": {"_count": 15}, "sank": {"_count": 4}, "hardly": {"_count": 4}, "strained": {"_count": 1}, "bolted": {"_count": 1}, "Potters": {"_count": 4}, "": {"_count": 95}, "Malfoy": {"_count": 1}, "slid": {"_count": 2}, "everyone": {"_count": 1}, "did": {"_count": 68}, "relax": {"_count": 1}, "ran": {"_count": 12}, "handed": {"_count": 2}, "climbed": {"_count": 5}, "listened": {"_count": 5}, "breathed": {"_count": 2}, "would": {"_count": 10}, "made": {"_count": 9}, "still": {"_count": 8}, "hung": {"_count": 2}, "left": {"_count": 7}, "washed": {"_count": 1}, "however": {"_count": 19}, "whose": {"_count": 5}, "dashed": {"_count": 5}, "just": {"_count": 5}, "watch": {"_count": 1}, "backed": {"_count": 6}, "explained": {"_count": 1}, "Mr": {"_count": 1}, "enjoyed": {"_count": 1}, "found": {"_count": 17}, "well": {"_count": 3}, "muttered": {"_count": 2}, "also": {"_count": 2}, "spun": {"_count": 7}, "gaped": {"_count": 9}, "nudged": {"_count": 1}, "Harry": {"_count": 9}, "snapped": {"_count": 1}, "let": {"_count": 11}, "yanked": {"_count": 1}, "Fred": {"_count": 2}, "gave": {"_count": 10}, "braced": {"_count": 1}, "whatre": {"_count": 2}, "sprinted": {"_count": 1}, "what": {"_count": 10}, "squinted": {"_count": 10}, "only": {"_count": 3}, "returned": {"_count": 4}, "sincerely": {"_count": 1}, "flew": {"_count": 3}, "ducked": {"_count": 5}, "slumped": {"_count": 4}, "three": {"_count": 1}, "dressed": {"_count": 2}, "forced": {"_count": 2}, "she": {"_count": 4}, "started": {"_count": 11}, "arranged": {"_count": 1}, "leapt": {"_count": 6}, "this": {"_count": 9}, "fretted": {"_count": 1}, "blundered": {"_count": 1}, "stamped": {"_count": 1}, "yelled": {"_count": 3}, "unlocked": {"_count": 1}, "scratched": {"_count": 1}, "almost": {"_count": 1}, "checked": {"_count": 2}, "peeled": {"_count": 1}, "overheard": {"_count": 1}, "nearly": {"_count": 1}, "hesitated": {"_count": 12}, "paused": {"_count": 6}, "drew": {"_count": 4}, "half": {"_count": 2}, "I": {"_count": 29}, "buck": {"_count": 1}, "constantly": {"_count": 1}, "hit": {"_count": 2}, "tapped": {"_count": 2}, "its": {"_count": 5}, "fell": {"_count": 6}, "summoned": {"_count": 1}, "smoothed": {"_count": 2}, "wheeled": {"_count": 5}, "knocked": {"_count": 5}, "lowered": {"_count": 4}, "theres": {"_count": 2}, "flung": {"_count": 3}, "approached": {"_count": 5}, "sweating": {"_count": 1}, "fear": {"_count": 1}, "seized": {"_count": 13}, "blinked": {"_count": 6}, "oh": {"_count": 2}, "urged": {"_count": 2}, "bent": {"_count": 18}, "pointed": {"_count": 7}, "grabbed": {"_count": 3}, "suspected": {"_count": 2}, "finished": {"_count": 8}, "though": {"_count": 1}, "scanned": {"_count": 4}, "happened": {"_count": 1}, "froze": {"_count": 2}, "poked": {"_count": 2}, "reached": {"_count": 11}, "really": {"_count": 1}, "snatched": {"_count": 2}, "rummaged": {"_count": 1}, "wouldnt": {"_count": 5}, "held": {"_count": 6}, "already": {"_count": 1}, "unstuck": {"_count": 1}, "ate": {"_count": 1}, "spent": {"_count": 7}, "emerged": {"_count": 3}, "met": {"_count": 3}, "hoped": {"_count": 1}, "come": {"_count": 8}, "imitated": {"_count": 1}, "swear": {"_count": 1}, "fought": {"_count": 2}, "chose": {"_count": 1}, "he": {"_count": 7}, "skinned": {"_count": 1}, "glared": {"_count": 5}, "Im": {"_count": 10}, "yawned": {"_count": 1}, "raised": {"_count": 19}, "fumbled": {"_count": 1}, "whiled": {"_count": 1}, "rose": {"_count": 4}, "needed": {"_count": 1}, "behind": {"_count": 1}, "dozed": {"_count": 1}, "doubled": {"_count": 2}, "suspecting": {"_count": 1}, "traced": {"_count": 1}, "hurried": {"_count": 12}, "crept": {"_count": 4}, "squeezed": {"_count": 2}, "sneaked": {"_count": 2}, "squealed": {"_count": 1}, "deserves": {"_count": 1}, "drank": {"_count": 2}, "has": {"_count": 3}, "listen": {"_count": 1}, "doesnt": {"_count": 1}, "please": {"_count": 2}, "isnt": {"_count": 1}, "about": {"_count": 1}, "remembering": {"_count": 1}, "cast": {"_count": 3}, "if": {"_count": 4}, "accidentally": {"_count": 1}, "Ive": {"_count": 3}, "shouldered": {"_count": 1}, "stopped": {"_count": 10}, "make": {"_count": 1}, "streaked": {"_count": 1}, "dived": {"_count": 2}, "broke": {"_count": 3}, "managed": {"_count": 2}, "completely": {"_count": 1}, "feeling": {"_count": 1}, "tugged": {"_count": 2}, "stayed": {"_count": 3}, "clenched": {"_count": 2}, "closed": {"_count": 6}, "do": {"_count": 2}, "youd": {"_count": 2}, "prodded": {"_count": 1}, "at": {"_count": 1}, "set": {"_count": 2}, "clutched": {"_count": 3}, "soared": {"_count": 2}, "slightly": {"_count": 1}, "gathered": {"_count": 2}, "lunged": {"_count": 1}, "weve": {"_count": 2}, "dont": {"_count": 2}, "avoided": {"_count": 2}, "James": {"_count": 1}, "frowned": {"_count": 2}, "began": {"_count": 5}, "heaved": {"_count": 2}, "hurry": {"_count": 1}, "Hermione": {"_count": 6}, "your": {"_count": 2}, "gripped": {"_count": 3}, "hastily": {"_count": 4}, "youve": {"_count": 3}, "kneaded": {"_count": 1}, "Yes": {"_count": 1}, "massaged": {"_count": 1}, "DAD": {"_count": 1}, "He": {"_count": 4}, "retreated": {"_count": 1}, "helped": {"_count": 2}, "go": {"_count": 1}, "having": {"_count": 1}, "screwed": {"_count": 2}, "focusing": {"_count": 1}, "never": {"_count": 2}, "dug": {"_count": 1}, "snorted": {"_count": 3}, "whirled": {"_count": 4}, "thats": {"_count": 5}, "liked": {"_count": 3}, "repacked": {"_count": 1}, "guess": {"_count": 2}, "rolled": {"_count": 3}, "laid": {"_count": 3}, "whats": {"_count": 4}, "standing": {"_count": 1}, "led": {"_count": 3}, "will": {"_count": 2}, "Cedric": {"_count": 1}, "assumed": {"_count": 1}, "actually": {"_count": 1}, "imagined": {"_count": 2}, "strode": {"_count": 2}, "wrote": {"_count": 1}, "edged": {"_count": 4}, "glimpsed": {"_count": 2}, "remained": {"_count": 6}, "barely": {"_count": 4}, "youll": {"_count": 1}, "wed": {"_count": 1}, "cmon": {"_count": 1}, "thoroughly": {"_count": 1}, "called": {"_count": 1}, "shrugged": {"_count": 4}, "awoke": {"_count": 5}, "concentrated": {"_count": 1}, "definitely": {"_count": 1}, "theyre": {"_count": 2}, "fended": {"_count": 1}, "planned": {"_count": 1}, "slipped": {"_count": 4}, "amused": {"_count": 1}, "gritted": {"_count": 1}, "admitted": {"_count": 1}, "scribbled": {"_count": 1}, "panted": {"_count": 1}, "struck": {"_count": 1}, "twisted": {"_count": 2}, "slowed": {"_count": 1}, "swam": {"_count": 2}, "sped": {"_count": 5}, "swirled": {"_count": 1}, "struggled": {"_count": 3}, "darted": {"_count": 2}, "kicked": {"_count": 5}, "folded": {"_count": 1}, "tipped": {"_count": 1}, "frankly": {"_count": 1}, "gazed": {"_count": 5}, "understood": {"_count": 6}, "Id": {"_count": 3}, "Bill": {"_count": 1}, "crouched": {"_count": 2}, "following": {"_count": 1}, "both": {"_count": 1}, "swayed": {"_count": 2}, "throw": {"_count": 1}, "are": {"_count": 4}, "continue": {"_count": 1}, "is": {"_count": 1}, "take": {"_count": 2}, "continued": {"_count": 2}, "thanks": {"_count": 1}, "winked": {"_count": 1}, "repressed": {"_count": 2}, "vaulted": {"_count": 1}, "mastered": {"_count": 1}, "preferred": {"_count": 1}, "Dumbledores": {"_count": 1}, "copied": {"_count": 1}, "paced": {"_count": 1}, "descended": {"_count": 1}, "inclined": {"_count": 1}, "lost": {"_count": 3}, "touched": {"_count": 1}, "swore": {"_count": 4}, "dear": {"_count": 5}, "Sirius": {"_count": 1}, "produced": {"_count": 1}, "received": {"_count": 2}, "expected": {"_count": 3}, "swept": {"_count": 1}, "tiptoed": {"_count": 1}, "youre": {"_count": 7}, "inhaled": {"_count": 2}, "Ginny": {"_count": 2}, "recalled": {"_count": 1}, "waved": {"_count": 1}, "shoved": {"_count": 1}, "thrust": {"_count": 1}, "no": {"_count": 3}, "deliberately": {"_count": 1}, "placed": {"_count": 3}, "devoted": {"_count": 1}, "reversed": {"_count": 1}, "zoomed": {"_count": 1}, "yours": {"_count": 1}, "exchanged": {"_count": 1}, "shifted": {"_count": 1}, "considered": {"_count": 2}, "neither": {"_count": 2}, "slit": {"_count": 1}, "of": {"_count": 1}, "WHAT": {"_count": 1}, "became": {"_count": 3}, "allowed": {"_count": 1}, "endured": {"_count": 1}, "arrived": {"_count": 1}, "bit": {"_count": 3}, "dreamed": {"_count": 1}, "protested": {"_count": 1}, "mate": {"_count": 1}, "distinctly": {"_count": 1}, "flicked": {"_count": 1}, "get": {"_count": 1}, "gasped": {"_count": 2}, "recommended": {"_count": 1}, "flailed": {"_count": 1}, "replied": {"_count": 1}, "changed": {"_count": 1}, "pretended": {"_count": 2}, "reminded": {"_count": 1}, "whipped": {"_count": 1}, "interrupted": {"_count": 1}, "agreed": {"_count": 2}, "think": {"_count": 1}, "how": {"_count": 1}, "they": {"_count": 2}, "dyou": {"_count": 1}, "stabbed": {"_count": 1}, "lets": {"_count": 3}, "we": {"_count": 3}, "whispered": {"_count": 2}, "look": {"_count": 3}, "itll": {"_count": 1}, "round": {"_count": 1}, "Ib": {"_count": 1}, "released": {"_count": 2}, "contented": {"_count": 1}, "disregarded": {"_count": 1}, "thanked": {"_count": 1}, "whom": {"_count": 1}, "extracted": {"_count": 1}, "chuckled": {"_count": 1}, "merely": {"_count": 1}, "stifled": {"_count": 1}, "bade": {"_count": 1}, "choked": {"_count": 1}, "knowing": {"_count": 1}, "stowed": {"_count": 1}, "mboy": {"_count": 4}, "Blaise": {"_count": 1}, "clung": {"_count": 1}, "Ernie": {"_count": 1}, "too": {"_count": 1}, "crushed": {"_count": 1}, "proceeded": {"_count": 1}, "frequently": {"_count": 1}, "resisted": {"_count": 1}, "rather": {"_count": 3}, "sent": {"_count": 2}, "wrapped": {"_count": 2}, "obeyed": {"_count": 2}, "missed": {"_count": 1}, "passed": {"_count": 1}, "persisted": {"_count": 1}, "craned": {"_count": 1}, "accelerated": {"_count": 1}, "guessed": {"_count": 1}, "straightened": {"_count": 3}, "dawdled": {"_count": 1}, "awaited": {"_count": 1}, "where": {"_count": 1}, "toyed": {"_count": 1}, "scrutinized": {"_count": 1}, "reacted": {"_count": 1}, "fully": {"_count": 1}, "scowled": {"_count": 1}, "lurked": {"_count": 1}, "patted": {"_count": 1}, "bowed": {"_count": 1}, "have": {"_count": 1}, "laughing": {"_count": 1}, "wrenched": {"_count": 2}, "shouted": {"_count": 1}, "scooped": {"_count": 1}, "wiped": {"_count": 1}, "uttered": {"_count": 1}, "cleared": {"_count": 2}, "crumpled": {"_count": 1}, "it": {"_count": 1}, "responded": {"_count": 1}, "wheres": {"_count": 1}, "the": {"_count": 1}, "hes": {"_count": 1}, "contemplated": {"_count": 1}, "rubbed": {"_count": 2}, "Dumbledore": {"_count": 1}, "tucked": {"_count": 1}, "Kreacher": {"_count": 1}, "open": {"_count": 1}, "hastened": {"_count": 1}, "give": {"_count": 1}, "estimated": {"_count": 1}, "bellowed": {"_count": 1}, "here": {"_count": 1}, "stooped": {"_count": 2}, "Look": {"_count": 1}, "not": {"_count": 1}, "But": {"_count": 1}, "crammed": {"_count": 1}, "noted": {"_count": 1}, "experienced": {"_count": 1}, "slept": {"_count": 1}, "willed": {"_count": 1}, "addressed": {"_count": 1}, "seemed": {"_count": 2}, "dragged": {"_count": 1}, "staggered": {"_count": 1}, "fired": {"_count": 1}, "in": {"_count": 1}, "Stunned": {"_count": 1}, "directed": {"_count": 1}, "were": {"_count": 1}, "wriggled": {"_count": 1}, "lifted": {"_count": 1}, "doubted": {"_count": 1}, "sobbed": {"_count": 1}, "shut": {"_count": 1}, "twitched": {"_count": 1}}, "Really": {"_count": 47, "Dumbledore": {"_count": 1}, "": {"_count": 15}, "break": {"_count": 1}, "Severus": {"_count": 1}, "he": {"_count": 1}, "what": {"_count": 2}, "witty": {"_count": 1}, "upset": {"_count": 1}, "theyll": {"_count": 1}, "Bill": {"_count": 1}, "great": {"_count": 2}, "romantic": {"_count": 1}, "Harry": {"_count": 1}, "lovely": {"_count": 1}, "get": {"_count": 1}, "superb": {"_count": 1}, "Hagrid": {"_count": 1}, "cold": {"_count": 1}, "just": {"_count": 1}, "pleased": {"_count": 1}, "easy": {"_count": 1}, "smart": {"_count": 1}, "soon": {"_count": 1}, "you": {"_count": 1}, "stumped": {"_count": 1}, "it": {"_count": 1}, "brilliant": {"_count": 2}, "excellent": {"_count": 1}, "my": {"_count": 1}, "Mrs": {"_count": 1}}, "Famous": {"_count": 3, "before": {"_count": 1}, "Harry": {"_count": 2}}, "Hagrids": {"_count": 28, "bringing": {"_count": 1}, "face": {"_count": 1}, "records": {"_count": 1}, "in": {"_count": 1}, "roosters": {"_count": 1}, "just": {"_count": 1}, "note": {"_count": 1}, "cabin": {"_count": 1}, "real": {"_count": 1}, "beetleblack": {"_count": 1}, "been": {"_count": 1}, "deep": {"_count": 1}, "BlastEnded": {"_count": 1}, "chest": {"_count": 1}, "tough": {"_count": 1}, "back": {"_count": 1}, "hair": {"_count": 1}, "fingers": {"_count": 1}, "reappearance": {"_count": 1}, "door": {"_count": 1}, "little": {"_count": 1}, "rumbling": {"_count": 1}, "huge": {"_count": 1}, "hand": {"_count": 1}, "chair": {"_count": 1}, "fine": {"_count": 1}, "not": {"_count": 1}, "hut": {"_count": 1}}, "Im": {"_count": 461, "not": {"_count": 75}, "warning": {"_count": 4}, "dyeing": {"_count": 1}, "a": {"_count": 11}, "er": {"_count": 1}, "sorry": {"_count": 47}, "up": {"_count": 1}, "the": {"_count": 5}, "missing": {"_count": 1}, "Ron": {"_count": 2}, "halfandhalf": {"_count": 1}, "his": {"_count": 2}, "coming": {"_count": 4}, "just": {"_count": 12}, "going": {"_count": 54}, "very": {"_count": 4}, "with": {"_count": 1}, "sayin": {"_count": 1}, "sure": {"_count": 24}, "freezing": {"_count": 1}, "serious": {"_count": 2}, "worth": {"_count": 1}, "waiting": {"_count": 4}, "disgusted": {"_count": 1}, "fine": {"_count": 10}, "ready": {"_count": 1}, "glad": {"_count": 3}, "presenting": {"_count": 1}, "trying": {"_count": 10}, "locking": {"_count": 1}, "in": {"_count": 4}, "surprised": {"_count": 3}, "ony": {"_count": 1}, "no": {"_count": 2}, "holding": {"_count": 1}, "only": {"_count": 1}, "about": {"_count": 1}, "looking": {"_count": 2}, "telling": {"_count": 4}, "at": {"_count": 1}, "under": {"_count": 1}, "afraid": {"_count": 17}, "quite": {"_count": 2}, "starving": {"_count": 6}, "rather": {"_count": 1}, "okay": {"_count": 4}, "so": {"_count": 6}, "on": {"_count": 2}, "really": {"_count": 7}, "never": {"_count": 2}, "here": {"_count": 5}, "dying": {"_count": 2}, "allowed": {"_count": 1}, "takinyer": {"_count": 1}, "nearly": {"_count": 2}, "impressed": {"_count": 1}, "their": {"_count": 1}, "working": {"_count": 1}, "jus": {"_count": 1}, "grateful": {"_count": 1}, "Moony": {"_count": 1}, "off": {"_count": 2}, "getting": {"_count": 5}, "still": {"_count": 4}, "to": {"_count": 2}, "doing": {"_count": 2}, "leaving": {"_count": 1}, "mentioned": {"_count": 1}, "soak": {"_count": 1}, "back": {"_count": 1}, "guessing": {"_count": 3}, "tired": {"_count": 1}, "For": {"_count": 1}, "now": {"_count": 1}, "honored": {"_count": 1}, "onto": {"_count": 1}, "your": {"_count": 3}, "aware": {"_count": 1}, "all": {"_count": 2}, "sitting": {"_count": 1}, "youre": {"_count": 1}, "escorting": {"_count": 1}, "better": {"_count": 1}, "nobody": {"_count": 1}, "banking": {"_count": 1}, "writing": {"_count": 1}, "already": {"_count": 1}, "talking": {"_count": 5}, "Susan": {"_count": 1}, "almost": {"_count": 1}, "rubbish": {"_count": 1}, "lousy": {"_count": 1}, "supporting": {"_count": 1}, "dealin": {"_count": 1}, "": {"_count": 1}, "supposed": {"_count": 4}, "bored": {"_count": 1}, "Im": {"_count": 2}, "three": {"_count": 1}, "stationed": {"_count": 1}, "thinkin": {"_count": 1}, "Muggleborn": {"_count": 1}, "from": {"_count": 1}, "tall": {"_count": 1}, "keeping": {"_count": 1}, "used": {"_count": 1}, "pathetic": {"_count": 1}, "sick": {"_count": 1}, "pretty": {"_count": 3}, "planning": {"_count": 1}, "losing": {"_count": 1}, "an": {"_count": 1}, "standing": {"_count": 1}, "cornin": {"_count": 1}, "Ted": {"_count": 1}, "holy": {"_count": 1}, "definitely": {"_count": 1}, "hoping": {"_count": 1}, "behind": {"_count": 1}, "great": {"_count": 1}, "Harry": {"_count": 1}, "bound": {"_count": 1}, "Draco": {"_count": 1}, "dead": {"_count": 1}, "putting": {"_count": 1}, "extremely": {"_count": 1}}, "Hagrid": {"_count": 297, "said": {"_count": 8}, "looked": {"_count": 11}, "stared": {"_count": 2}, "ran": {"_count": 1}, "Hagrid": {"_count": 1}, "grunted": {"_count": 2}, "gulped": {"_count": 2}, "shuddered": {"_count": 1}, "was": {"_count": 34}, "seized": {"_count": 1}, "": {"_count": 20}, "s": {"_count": 9}, "yawned": {"_count": 1}, "drew": {"_count": 1}, "pulled": {"_count": 2}, "folded": {"_count": 1}, "who": {"_count": 5}, "took": {"_count": 2}, "grinned": {"_count": 1}, "meanwhile": {"_count": 1}, "and": {"_count": 2}, "helped": {"_count": 2}, "picked": {"_count": 1}, "almost": {"_count": 1}, "wouldnt": {"_count": 1}, "must": {"_count": 2}, "whooped": {"_count": 1}, "leaned": {"_count": 3}, "Harry": {"_count": 2}, "lived": {"_count": 1}, "like": {"_count": 1}, "had": {"_count": 17}, "could": {"_count": 2}, "however": {"_count": 2}, "dropped": {"_count": 2}, "shuffled": {"_count": 1}, "called": {"_count": 1}, "made": {"_count": 1}, "frowned": {"_count": 1}, "can": {"_count": 1}, "whats": {"_count": 1}, "you": {"_count": 4}, "greeted": {"_count": 1}, "hadnt": {"_count": 1}, "bit": {"_count": 1}, "would": {"_count": 6}, "Ive": {"_count": 1}, "told": {"_count": 1}, "hed": {"_count": 1}, "wiped": {"_count": 1}, "appeared": {"_count": 1}, "didnt": {"_count": 2}, "wasnt": {"_count": 3}, "opened": {"_count": 1}, "checked": {"_count": 1}, "has": {"_count": 4}, "is": {"_count": 2}, "the": {"_count": 2}, "untied": {"_count": 1}, "heaved": {"_count": 1}, "came": {"_count": 2}, "seemed": {"_count": 5}, "sent": {"_count": 1}, "please": {"_count": 2}, "are": {"_count": 1}, "stood": {"_count": 2}, "being": {"_count": 1}, "allowed": {"_count": 1}, "what": {"_count": 2}, "howled": {"_count": 1}, "snorted": {"_count": 1}, "went": {"_count": 1}, "poured": {"_count": 1}, "we": {"_count": 3}, "lost": {"_count": 1}, "They": {"_count": 1}, "turned": {"_count": 2}, "presided": {"_count": 1}, "shut": {"_count": 1}, "swallowed": {"_count": 1}, "perhaps": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 2}, "clapped": {"_count": 1}, "pointed": {"_count": 2}, "simply": {"_count": 2}, "sidled": {"_count": 1}, "missed": {"_count": 1}, "got": {"_count": 2}, "now": {"_count": 1}, "led": {"_count": 1}, "let": {"_count": 1}, "he": {"_count": 4}, "launched": {"_count": 1}, "beamed": {"_count": 1}, "its": {"_count": 2}, "thats": {"_count": 1}, "look": {"_count": 1}, "no": {"_count": 1}, "removed": {"_count": 1}, "kept": {"_count": 1}, "Professor": {"_count": 1}, "raised": {"_count": 2}, "himself": {"_count": 1}, "glared": {"_count": 2}, "set": {"_count": 1}, "paused": {"_count": 1}, "sighed": {"_count": 1}, "gazed": {"_count": 1}, "shrugged": {"_count": 1}, "hide": {"_count": 1}, "deposited": {"_count": 1}, "gave": {"_count": 4}, "nodded": {"_count": 1}, "jumped": {"_count": 1}, "whatre": {"_count": 1}, "did": {"_count": 2}, "why": {"_count": 1}, "she": {"_count": 1}, "when": {"_count": 1}, "shouldered": {"_count": 1}, "might": {"_count": 1}, "it": {"_count": 1}, "bowed": {"_count": 1}, "will": {"_count": 1}, "do": {"_count": 2}, "says": {"_count": 1}, "makes": {"_count": 1}, "stopped": {"_count": 1}, "Look": {"_count": 1}, "started": {"_count": 1}, "becoming": {"_count": 1}, "twitched": {"_count": 1}, "muttered": {"_count": 1}, "put": {"_count": 1}, "shook": {"_count": 1}, "sat": {"_count": 1}, "kicked": {"_count": 1}, "TURN": {"_count": 1}, "swerved": {"_count": 1}, "Accio": {"_count": 1}, "reached": {"_count": 1}, "Hermione": {"_count": 1}, "thanks": {"_count": 1}}, "Young": {"_count": 3, "Sirius": {"_count": 1}, "Percy": {"_count": 1}, "you": {"_count": 1}}, "Inside": {"_count": 24, "just": {"_count": 1}, "was": {"_count": 6}, "were": {"_count": 4}, "the": {"_count": 6}, "this": {"_count": 1}, "please": {"_count": 1}, "his": {"_count": 1}, "mmy": {"_count": 1}, "all": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "Under": {"_count": 12, "a": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 5}, "their": {"_count": 1}, "that": {"_count": 1}, "cover": {"_count": 2}}, "Is": {"_count": 122, "that": {"_count": 33}, "he": {"_count": 14}, "it": {"_count": 32}, "Lockhart": {"_count": 1}, "there": {"_count": 9}, "your": {"_count": 1}, "this": {"_count": 15}, "a": {"_count": 1}, "Harry": {"_count": 1}, "anyone": {"_count": 1}, "Bill": {"_count": 1}, "she": {"_count": 3}, "Hedwig": {"_count": 1}, "Mum": {"_count": 1}, "Serious": {"_count": 1}, "Mr": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}, "everything": {"_count": 1}, "his": {"_count": 1}, "everyone": {"_count": 1}, "Draco": {"_count": 1}}, "Hell": {"_count": 28, "have": {"_count": 3}, "be": {"_count": 13}, "lend": {"_count": 1}, "live": {"_count": 1}, "probably": {"_count": 1}, "accept": {"_count": 1}, "never": {"_count": 2}, "come": {"_count": 1}, "find": {"_count": 1}, "give": {"_count": 1}, "know": {"_count": 2}, "try": {"_count": 1}}, "Couldnt": {"_count": 19, "you": {"_count": 2}, "make": {"_count": 1}, "hold": {"_count": 1}, "have": {"_count": 4}, "see": {"_count": 1}, "move": {"_count": 1}, "do": {"_count": 1}, "remember": {"_count": 1}, "tell": {"_count": 1}, "Percy": {"_count": 1}, "resist": {"_count": 1}, "get": {"_count": 1}, "believe": {"_count": 1}, "your": {"_count": 1}, "we": {"_count": 1}}, "Scars": {"_count": 1, "can": {"_count": 1}}, "Could": {"_count": 36, "I": {"_count": 5}, "do": {"_count": 1}, "you": {"_count": 9}, "there": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 3}, "he": {"_count": 2}, "the": {"_count": 3}, "Moody": {"_count": 1}, "we": {"_count": 2}, "it": {"_count": 2}, "ony": {"_count": 1}, "Dumbledore": {"_count": 1}, "try": {"_count": 1}, "they": {"_count": 1}}, "Then": {"_count": 530, "suddenly": {"_count": 1}, "he": {"_count": 135}, "SMASH": {"_count": 1}, "she": {"_count": 30}, "there": {"_count": 13}, "Im": {"_count": 1}, "they": {"_count": 15}, "to": {"_count": 1}, "a": {"_count": 21}, "something": {"_count": 3}, "the": {"_count": 25}, "Hagrid": {"_count": 2}, "none": {"_count": 1}, "Hermione": {"_count": 6}, "hed": {"_count": 1}, "cold": {"_count": 1}, "during": {"_count": 1}, "one": {"_count": 5}, "about": {"_count": 1}, "out": {"_count": 1}, "kill": {"_count": 1}, "who": {"_count": 1}, "without": {"_count": 7}, "Dobby": {"_count": 1}, "Ron": {"_count": 6}, "Harry": {"_count": 6}, "it": {"_count": 7}, "dented": {"_count": 1}, "Dumbledore": {"_count": 5}, "someone": {"_count": 1}, "of": {"_count": 2}, "with": {"_count": 14}, "you": {"_count": 15}, "still": {"_count": 1}, "her": {"_count": 3}, "at": {"_count": 7}, "as": {"_count": 13}, "well": {"_count": 1}, "when": {"_count": 5}, "Fang": {"_count": 1}, "we": {"_count": 8}, "Professor": {"_count": 4}, "I": {"_count": 13}, "came": {"_count": 5}, "feeling": {"_count": 2}, "sit": {"_count": 1}, "RiddikulusV": {"_count": 1}, "Was": {"_count": 1}, "quite": {"_count": 4}, "Madam": {"_count": 1}, "Harrys": {"_count": 2}, "spotting": {"_count": 2}, "Fine": {"_count": 1}, "again": {"_count": 1}, "Wood": {"_count": 1}, "behind": {"_count": 1}, "Lupin": {"_count": 3}, "very": {"_count": 3}, "ignoring": {"_count": 1}, "its": {"_count": 1}, "before": {"_count": 3}, "his": {"_count": 2}, "Here": {"_count": 1}, "wand": {"_count": 1}, "while": {"_count": 1}, "just": {"_count": 2}, "two": {"_count": 3}, "from": {"_count": 1}, "slowly": {"_count": 2}, "Bill": {"_count": 1}, "youd": {"_count": 2}, "George": {"_count": 1}, "checking": {"_count": 1}, "hes": {"_count": 1}, "after": {"_count": 2}, "Moody": {"_count": 1}, "Snape": {"_count": 5}, "Maze": {"_count": 1}, "Mr": {"_count": 2}, "Fred": {"_count": 1}, "Cedric": {"_count": 1}, "": {"_count": 3}, "Wormtail": {"_count": 1}, "Dumbledores": {"_count": 1}, "Potter": {"_count": 1}, "go": {"_count": 2}, "good": {"_count": 1}, "why": {"_count": 2}, "Mrs": {"_count": 1}, "said": {"_count": 2}, "undoubtedly": {"_count": 1}, "youre": {"_count": 1}, "divide": {"_count": 1}, "seeing": {"_count": 1}, "Ill": {"_count": 2}, "shell": {"_count": 1}, "YouKnowWho": {"_count": 1}, "on": {"_count": 3}, "prove": {"_count": 1}, "leaning": {"_count": 1}, "give": {"_count": 1}, "somebody": {"_count": 2}, "tomorrow": {"_count": 1}, "high": {"_count": 1}, "if": {"_count": 3}, "three": {"_count": 1}, "heaving": {"_count": 1}, "Horace": {"_count": 1}, "six": {"_count": 1}, "Percy": {"_count": 1}, "Slughorn": {"_count": 1}, "Slughorns": {"_count": 1}, "Cadwallader": {"_count": 1}, "this": {"_count": 1}, "even": {"_count": 1}, "several": {"_count": 2}, "take": {"_count": 1}, "halfway": {"_count": 1}, "another": {"_count": 2}, "Ginny": {"_count": 2}, "Ive": {"_count": 1}, "Uncle": {"_count": 1}, "Dudley": {"_count": 1}, "attend": {"_count": 1}, "Umbridge": {"_count": 1}, "Mary": {"_count": 1}, "an": {"_count": 1}, "over": {"_count": 2}, "Ted": {"_count": 1}, "GO": {"_count": 1}, "Hermiones": {"_count": 1}, "trying": {"_count": 1}, "111": {"_count": 1}, "shake": {"_count": 1}, "Griphook": {"_count": 1}, "what": {"_count": 1}, "around": {"_count": 1}, "my": {"_count": 1}, "through": {"_count": 1}, "more": {"_count": 1}, "Neville": {"_count": 1}, "explain": {"_count": 1}}, "Shhh": {"_count": 1, "": {"_count": 1}}, "Yeah": {"_count": 370, "said": {"_count": 75}, "youll": {"_count": 2}, "but": {"_count": 18}, "": {"_count": 62}, "Dumbledores": {"_count": 1}, "Mums": {"_count": 1}, "Dads": {"_count": 1}, "shell": {"_count": 1}, "Ive": {"_count": 5}, "it": {"_count": 15}, "hes": {"_count": 1}, "came": {"_count": 1}, "right": {"_count": 4}, "thats": {"_count": 7}, "dont": {"_count": 3}, "loads": {"_count": 2}, "maybe": {"_count": 2}, "theyre": {"_count": 1}, "I": {"_count": 38}, "all": {"_count": 5}, "reckon": {"_count": 1}, "theres": {"_count": 2}, "were": {"_count": 2}, "well": {"_count": 23}, "and": {"_count": 2}, "someone": {"_count": 1}, "weve": {"_count": 2}, "you": {"_count": 6}, "thanks": {"_count": 1}, "we": {"_count": 5}, "a": {"_count": 1}, "Im": {"_count": 4}, "probably": {"_count": 1}, "Ill": {"_count": 2}, "have": {"_count": 1}, "better": {"_count": 1}, "okay": {"_count": 5}, "go": {"_count": 2}, "that": {"_count": 2}, "he": {"_count": 7}, "Percy": {"_count": 1}, "panted": {"_count": 1}, "Hermiones": {"_count": 1}, "youre": {"_count": 3}, "size": {"_count": 1}, "youve": {"_count": 1}, "its": {"_count": 2}, "his": {"_count": 1}, "fine": {"_count": 1}, "keep": {"_count": 1}, "definitely": {"_count": 1}, "something": {"_count": 1}, "look": {"_count": 1}, "so": {"_count": 2}, "bye": {"_count": 1}, "thatll": {"_count": 2}, "So": {"_count": 1}, "Umbridge": {"_count": 1}, "how": {"_count": 1}, "thas": {"_count": 2}, "on": {"_count": 1}, "not": {"_count": 1}, "sighed": {"_count": 1}, "Montague": {"_count": 1}, "itll": {"_count": 1}, "even": {"_count": 1}, "breathed": {"_count": 1}, "IVe": {"_count": 1}, "Snape": {"_count": 1}, "Harry": {"_count": 1}, "growled": {"_count": 1}, "if": {"_count": 1}, "like": {"_count": 1}, "Zabini": {"_count": 1}, "theyve": {"_count": 1}, "when": {"_count": 1}, "she": {"_count": 1}, "Ron": {"_count": 1}, "thirteen": {"_count": 1}, "me": {"_count": 1}, "ear": {"_count": 1}, "why": {"_count": 1}, "shes": {"_count": 1}, "great": {"_count": 1}, "lets": {"_count": 1}, "because": {"_count": 1}, "looks": {"_count": 1}, "of": {"_count": 1}}, "G": {"_count": 2, "night": {"_count": 1}, "": {"_count": 1}}, "Wiping": {"_count": 1, "his": {"_count": 1}}, "Good": {"_count": 178, "luck": {"_count": 24}, "said": {"_count": 15}, "Lord": {"_count": 2}, "afternoon": {"_count": 13}, "wand": {"_count": 1}, "well": {"_count": 1}, "idea": {"_count": 3}, "of": {"_count": 1}, "evening": {"_count": 13}, "day": {"_count": 13}, "good": {"_count": 4}, "lord": {"_count": 4}, "man": {"_count": 3}, "arent": {"_count": 1}, "gracious": {"_count": 7}, "": {"_count": 13}, "thinking": {"_count": 8}, "thing": {"_count": 1}, "work": {"_count": 2}, "job": {"_count": 1}, "one": {"_count": 2}, "night": {"_count": 11}, "service": {"_count": 1}, "boy": {"_count": 2}, "training": {"_count": 1}, "ter": {"_count": 1}, "to": {"_count": 3}, "point": {"_count": 1}, "Hufflepuff": {"_count": 1}, "holiday": {"_count": 1}, "grunted": {"_count": 1}, "girl": {"_count": 2}, "about": {"_count": 1}, "Quidditch": {"_count": 1}, "haul": {"_count": 1}, "catch": {"_count": 1}, "she": {"_count": 2}, "sense": {"_count": 1}, "for": {"_count": 2}, "I": {"_count": 1}, "teams": {"_count": 1}, "lesson": {"_count": 1}, "morning": {"_count": 4}, "game": {"_count": 1}, "eh": {"_count": 2}, "youll": {"_count": 1}, "plan": {"_count": 1}}, "One": {"_count": 175, "small": {"_count": 1}, "day": {"_count": 2}, "thing": {"_count": 3}, "o": {"_count": 1}, "plain": {"_count": 1}, "pair": {"_count": 1}, "winter": {"_count": 1}, "of": {"_count": 60}, "wild": {"_count": 1}, "by": {"_count": 10}, "morning": {"_count": 1}, "book": {"_count": 1}, "can": {"_count": 1}, "hour": {"_count": 3}, "more": {"_count": 3}, "good": {"_count": 1}, "two": {"_count": 10}, "person": {"_count": 1}, "long": {"_count": 1}, "look": {"_count": 2}, "minute": {"_count": 3}, "moment": {"_count": 5}, "casual": {"_count": 1}, "hopes": {"_count": 1}, "was": {"_count": 5}, "hand": {"_count": 2}, "glance": {"_count": 1}, "bewildered": {"_count": 1}, "with": {"_count": 1}, "hundred": {"_count": 1}, "year": {"_count": 2}, "drop": {"_count": 1}, "Herbology": {"_count": 1}, "down": {"_count": 1}, "side": {"_count": 1}, "tap": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 6}, "week": {"_count": 1}, "simply": {"_count": 2}, "too": {"_count": 1}, "who": {"_count": 1}, "might": {"_count": 1}, "or": {"_count": 3}, "thousand": {"_count": 1}, "fact": {"_count": 1}, "sacked": {"_count": 1}, "floor": {"_count": 1}, "Hes": {"_count": 1}, "landing": {"_count": 1}, "for": {"_count": 3}, "partner": {"_count": 1}, "tiny": {"_count": 1}, "result": {"_count": 1}, "tangled": {"_count": 1}, "end": {"_count": 1}, "alone": {"_count": 1}, "failed": {"_count": 2}, "arm": {"_count": 1}, "simple": {"_count": 2}, "fragile": {"_count": 1}, "way": {"_count": 1}, "Horcrux": {"_count": 2}, "man": {"_count": 1}, "shivering": {"_count": 1}}, "Ten": {"_count": 35, "years": {"_count": 2}, "minutes": {"_count": 6}, "and": {"_count": 1}, "points": {"_count": 9}, "weeks": {"_count": 1}, "seconds": {"_count": 1}, "Galleons": {"_count": 3}, "past": {"_count": 1}, "zero": {"_count": 1}, "": {"_count": 1}, "ten": {"_count": 1}, "feet": {"_count": 2}, "of": {"_count": 1}, "oclock": {"_count": 2}, "pairs": {"_count": 1}, "people": {"_count": 1}, "inches": {"_count": 1}}, "Yet": {"_count": 41, "Harry": {"_count": 2}, "sometimes": {"_count": 1}, "here": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 5}, "another": {"_count": 1}, "I": {"_count": 2}, "there": {"_count": 3}, "Sirius": {"_count": 1}, "those": {"_count": 1}, "somehow": {"_count": 1}, "in": {"_count": 1}, "if": {"_count": 2}, "it": {"_count": 4}, "you": {"_count": 5}, "they": {"_count": 2}, "unless": {"_count": 1}, "he": {"_count": 3}, "this": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "by": {"_count": 1}}, "Up": {"_count": 25, "": {"_count": 2}, "another": {"_count": 2}, "in": {"_count": 5}, "at": {"_count": 3}, "you": {"_count": 3}, "to": {"_count": 2}, "and": {"_count": 2}, "the": {"_count": 2}, "till": {"_count": 1}, "out": {"_count": 1}, "here": {"_count": 2}}, "Are": {"_count": 133, "you": {"_count": 121}, "all": {"_count": 1}, "there": {"_count": 3}, "they": {"_count": 3}, "are": {"_count": 1}, "we": {"_count": 4}}, "Nearly": {"_count": 34, "said": {"_count": 1}, "everything": {"_count": 1}, "Headless": {"_count": 14}, "there": {"_count": 3}, "everyone": {"_count": 4}, "six": {"_count": 1}, "failed": {"_count": 1}, "time": {"_count": 2}, "done": {"_count": 1}, "everybody": {"_count": 2}, "all": {"_count": 2}, "always": {"_count": 1}, "half": {"_count": 1}}, "Dudleys": {"_count": 8, "birthday": {"_count": 1}, "favorite": {"_count": 1}, "mouth": {"_count": 1}, "gang": {"_count": 1}, "snores": {"_count": 1}, "diet": {"_count": 1}, "gangs": {"_count": 1}, "terrified": {"_count": 1}}, "Exactly": {"_count": 25, "why": {"_count": 1}, "what": {"_count": 5}, "said": {"_count": 11}, "": {"_count": 3}, "who": {"_count": 1}, "the": {"_count": 2}, "as": {"_count": 1}, "hes": {"_count": 1}}, "Perhaps": {"_count": 84, "it": {"_count": 13}, "they": {"_count": 3}, "Harry": {"_count": 2}, "brooms": {"_count": 1}, "he": {"_count": 5}, "Snape": {"_count": 2}, "because": {"_count": 3}, "that": {"_count": 4}, "the": {"_count": 5}, "hed": {"_count": 1}, "Uncle": {"_count": 1}, "youll": {"_count": 1}, "if": {"_count": 3}, "we": {"_count": 3}, "longer": {"_count": 1}, "there": {"_count": 1}, "Dumbledore": {"_count": 3}, "she": {"_count": 2}, "this": {"_count": 2}, "another": {"_count": 1}, "tonight": {"_count": 1}, "Cho": {"_count": 1}, "said": {"_count": 1}, "Malfoy": {"_count": 1}, "you": {"_count": 7}, "your": {"_count": 2}, "in": {"_count": 1}, "youd": {"_count": 2}, "besotted": {"_count": 1}, "I": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}, "roused": {"_count": 1}, "some": {"_count": 2}, "just": {"_count": 1}, "deciding": {"_count": 1}, "Hermione": {"_count": 1}, "youve": {"_count": 1}}, "Dont": {"_count": 251, "ask": {"_count": 3}, "be": {"_count": 36}, "do": {"_count": 3}, "worry": {"_count": 27}, "talk": {"_count": 5}, "stop": {"_count": 1}, "Ginny": {"_count": 1}, "tell": {"_count": 5}, "know": {"_count": 3}, "push": {"_count": 4}, "you": {"_count": 48}, "mess": {"_count": 2}, "send": {"_count": 1}, "go": {"_count": 7}, "play": {"_count": 1}, "nag": {"_count": 1}, "want": {"_count": 3}, "mind": {"_count": 2}, "move": {"_count": 3}, "swing": {"_count": 1}, "say": {"_count": 6}, "rise": {"_count": 1}, "let": {"_count": 9}, "never": {"_count": 1}, "beat": {"_count": 1}, "bother": {"_count": 2}, "forget": {"_count": 6}, "bring": {"_count": 1}, "expect": {"_count": 2}, "give": {"_count": 1}, "complain": {"_count": 1}, "think": {"_count": 4}, "come": {"_count": 1}, "mention": {"_count": 2}, "remember": {"_count": 1}, "use": {"_count": 1}, "apologize": {"_count": 1}, "laugh": {"_count": 1}, "get": {"_count": 2}, "call": {"_count": 3}, "lie": {"_count": 1}, "vant": {"_count": 1}, "": {"_count": 2}, "break": {"_count": 1}, "the": {"_count": 1}, "put": {"_count": 2}, "leave": {"_count": 3}, "touch": {"_count": 3}, "lose": {"_count": 1}, "often": {"_count": 1}, "pay": {"_count": 1}, "start": {"_count": 2}, "look": {"_count": 4}, "sit": {"_count": 1}, "Stun": {"_count": 1}, "count": {"_count": 1}, "dont": {"_count": 1}, "argue": {"_count": 1}, "drink": {"_count": 1}, "pretend": {"_count": 2}, "cry": {"_count": 1}, "crooned": {"_count": 1}, "make": {"_count": 2}, "these": {"_count": 1}, "they": {"_count": 1}, "take": {"_count": 1}, "believe": {"_count": 1}, "listen": {"_count": 2}, "try": {"_count": 2}, "kill": {"_count": 2}, "hurt": {"_count": 1}, "duel": {"_count": 1}}, "Uncle": {"_count": 85, "Vernon": {"_count": 80}, "Vernons": {"_count": 5}}, "Comb": {"_count": 1, "your": {"_count": 1}}, "About": {"_count": 30, "once": {"_count": 2}, "a": {"_count": 3}, "twenty": {"_count": 3}, "to": {"_count": 1}, "ten": {"_count": 1}, "how": {"_count": 2}, "time": {"_count": 6}, "you": {"_count": 1}, "twice": {"_count": 1}, "Hagrid": {"_count": 1}, "Crouch": {"_count": 1}, "the": {"_count": 3}, "YouKnowWho": {"_count": 1}, "me": {"_count": 1}, "Siri": {"_count": 1}, "what": {"_count": 2}}, "Dudley": {"_count": 63, "looked": {"_count": 2}, "meanwhile": {"_count": 2}, "sat": {"_count": 1}, "began": {"_count": 1}, "stopped": {"_count": 1}, "had": {"_count": 7}, "and": {"_count": 4}, "quickly": {"_count": 1}, "stood": {"_count": 1}, "thought": {"_count": 2}, "tried": {"_count": 1}, "wasnt": {"_count": 1}, "was": {"_count": 9}, "go": {"_count": 1}, "snored": {"_count": 1}, "sniveled": {"_count": 1}, "jerked": {"_count": 1}, "squeaked": {"_count": 1}, "gets": {"_count": 1}, "put": {"_count": 1}, "": {"_count": 1}, "hitched": {"_count": 1}, "stumbled": {"_count": 1}, "would": {"_count": 1}, "smirked": {"_count": 1}, "on": {"_count": 1}, "didnt": {"_count": 1}, "suddenly": {"_count": 1}, "edged": {"_count": 1}, "whimpered": {"_count": 1}, "gave": {"_count": 1}, "lay": {"_count": 1}, "seemed": {"_count": 1}, "swayed": {"_count": 1}, "drew": {"_count": 1}, "said": {"_count": 2}, "shrank": {"_count": 1}, "did": {"_count": 1}, "raised": {"_count": 1}, "gently": {"_count": 1}, "nearly": {"_count": 1}, "puked": {"_count": 1}}, "Aunt": {"_count": 50, "Petunia": {"_count": 37}, "Petunias": {"_count": 3}, "Marge": {"_count": 8}, "Marges": {"_count": 1}, "Bellatrix": {"_count": 1}}, "Thirtysix": {"_count": 1, "he": {"_count": 1}}, "Darling": {"_count": 2, "you": {"_count": 1}, "Dodgy": {"_count": 1}}, "Hows": {"_count": 20, "that": {"_count": 1}, "yer": {"_count": 1}, "your": {"_count": 1}, "this": {"_count": 1}, "Scabbers": {"_count": 1}, "she": {"_count": 2}, "Ron": {"_count": 1}, "freedom": {"_count": 1}, "it": {"_count": 1}, "old": {"_count": 1}, "Percy": {"_count": 1}, "things": {"_count": 1}, "my": {"_count": 1}, "Lupin": {"_count": 1}, "Bill": {"_count": 1}, "George": {"_count": 1}, "Norbert": {"_count": 1}, "Gregorovitch": {"_count": 1}, "Hermione": {"_count": 1}}, "Finally": {"_count": 47, "he": {"_count": 15}, "as": {"_count": 1}, "hes": {"_count": 1}, "Harry": {"_count": 3}, "": {"_count": 1}, "Hermione": {"_count": 3}, "they": {"_count": 1}, "after": {"_count": 2}, "in": {"_count": 2}, "I": {"_count": 2}, "when": {"_count": 1}, "at": {"_count": 1}, "with": {"_count": 1}, "Sirius": {"_count": 1}, "Zeller": {"_count": 1}, "the": {"_count": 3}, "Scrimgeour": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "Uncle": {"_count": 1}, "Ron": {"_count": 1}, "having": {"_count": 1}, "we": {"_count": 1}, "Bill": {"_count": 1}}, "thirty": {"_count": 1, "": {"_count": 1}}, "Thirtynine": {"_count": 2, "sweetums": {"_count": 1}, "years": {"_count": 1}}, "Atta": {"_count": 1, "boy": {"_count": 1}}, "Bad": {"_count": 7, "news": {"_count": 2}, "business": {"_count": 1}, "blood": {"_count": 1}, "headache": {"_count": 1}, "luck": {"_count": 2}}, "Every": {"_count": 75, "year": {"_count": 5}, "now": {"_count": 11}, "single": {"_count": 5}, "night": {"_count": 2}, "morning": {"_count": 2}, "time": {"_count": 10}, "other": {"_count": 1}, "nerve": {"_count": 2}, "careful": {"_count": 1}, "inch": {"_count": 5}, "version": {"_count": 1}, "bit": {"_count": 1}, "head": {"_count": 2}, "week": {"_count": 1}, "word": {"_count": 1}, "so": {"_count": 1}, "Death": {"_count": 1}, "guest": {"_count": 1}, "day": {"_count": 2}, "few": {"_count": 2}, "headmaster": {"_count": 1}, "evening": {"_count": 1}, "eye": {"_count": 4}, "moment": {"_count": 1}, "Auror": {"_count": 1}, "secret": {"_count": 1}, "room": {"_count": 1}, "surface": {"_count": 1}, "twelve": {"_count": 1}, "tiny": {"_count": 1}, "pore": {"_count": 1}, "minor": {"_count": 1}, "part": {"_count": 1}, "drop": {"_count": 1}, "second": {"_count": 1}}, "Now": {"_count": 345, "what": {"_count": 11}, "wait": {"_count": 4}, "yer": {"_count": 1}, "you": {"_count": 14}, "he": {"_count": 25}, "they": {"_count": 6}, "whats": {"_count": 2}, "Percys": {"_count": 1}, "there": {"_count": 2}, "form": {"_count": 1}, "when": {"_count": 3}, "hed": {"_count": 1}, "if": {"_count": 14}, "Quidditch": {"_count": 1}, "theres": {"_count": 2}, "the": {"_count": 11}, "dont": {"_count": 5}, "I": {"_count": 14}, "can": {"_count": 2}, "why": {"_count": 3}, "get": {"_count": 4}, "": {"_count": 22}, "she": {"_count": 3}, "give": {"_count": 4}, "enough": {"_count": 1}, "as": {"_count": 5}, "we": {"_count": 5}, "that": {"_count": 15}, "well": {"_count": 1}, "lets": {"_count": 4}, "shed": {"_count": 1}, "who": {"_count": 2}, "be": {"_count": 1}, "listen": {"_count": 3}, "and": {"_count": 1}, "Harry": {"_count": 11}, "this": {"_count": 1}, "Im": {"_count": 1}, "then": {"_count": 10}, "now": {"_count": 4}, "have": {"_count": 1}, "hes": {"_count": 2}, "nobody": {"_count": 1}, "firs": {"_count": 1}, "said": {"_count": 6}, "Filch": {"_count": 2}, "please": {"_count": 2}, "really": {"_count": 3}, "was": {"_count": 3}, "will": {"_count": 2}, "my": {"_count": 2}, "it": {"_count": 4}, "with": {"_count": 1}, "excuse": {"_count": 1}, "look": {"_count": 2}, "mind": {"_count": 1}, "behave": {"_count": 1}, "each": {"_count": 1}, "Ron": {"_count": 2}, "yehll": {"_count": 1}, "your": {"_count": 2}, "according": {"_count": 1}, "thats": {"_count": 1}, "everyones": {"_count": 1}, "however": {"_count": 8}, "just": {"_count": 2}, "Wormtail": {"_count": 2}, "has": {"_count": 1}, "string": {"_count": 1}, "see": {"_count": 4}, "untie": {"_count": 1}, "Before": {"_count": 1}, "come": {"_count": 4}, "Emmeline": {"_count": 1}, "stay": {"_count": 1}, "go": {"_count": 2}, "Stubby": {"_count": 1}, "let": {"_count": 2}, "panicking": {"_count": 1}, "hand": {"_count": 2}, "staring": {"_count": 1}, "where": {"_count": 1}, "theyll": {"_count": 1}, "thestrals": {"_count": 1}, "how": {"_count": 3}, "in": {"_count": 1}, "Occlumency": {"_count": 1}, "seeing": {"_count": 1}, "kindly": {"_count": 1}, "Mr": {"_count": 1}, "Harrys": {"_count": 1}, "Grawpy": {"_count": 1}, "Fathers": {"_count": 1}, "turn": {"_count": 1}, "Potter": {"_count": 4}, "Sirius": {"_count": 1}, "about": {"_count": 2}, "two": {"_count": 1}, "dear": {"_count": 1}, "do": {"_count": 1}, "tell": {"_count": 1}, "all": {"_count": 1}, "is": {"_count": 1}, "drink": {"_count": 1}, "Tom": {"_count": 1}, "at": {"_count": 1}, "Ive": {"_count": 1}, "Draco": {"_count": 1}, "show": {"_count": 1}, "Lupins": {"_count": 1}, "a": {"_count": 1}, "Hermione": {"_count": 1}, "paying": {"_count": 1}, "revealed": {"_count": 1}, "fear": {"_count": 1}, "theyve": {"_count": 1}, "forced": {"_count": 1}, "Snape": {"_count": 1}, "Severus": {"_count": 1}}, "That": {"_count": 262, "cars": {"_count": 1}, "evening": {"_count": 1}, "does": {"_count": 3}, "seems": {"_count": 3}, "will": {"_count": 9}, "Quidditch": {"_count": 1}, "had": {"_count": 4}, "third": {"_count": 1}, "Stones": {"_count": 1}, "put": {"_count": 1}, "wasn": {"_count": 1}, "is": {"_count": 24}, "was": {"_count": 63}, "one": {"_count": 4}, "big": {"_count": 2}, "lot": {"_count": 1}, "familys": {"_count": 1}, "sounds": {"_count": 1}, "panted": {"_count": 1}, "tree": {"_count": 1}, "Lockharts": {"_count": 1}, "voice": {"_count": 1}, "vanishing": {"_count": 1}, "Im": {"_count": 1}, "first": {"_count": 1}, "looks": {"_count": 1}, "he": {"_count": 3}, "Ravenclaw": {"_count": 1}, "Draco": {"_count": 1}, "said": {"_count": 1}, "must": {"_count": 4}, "taps": {"_count": 1}, "boy": {"_count": 3}, "man": {"_count": 3}, "little": {"_count": 2}, "means": {"_count": 4}, "dog": {"_count": 1}, "oaf": {"_count": 1}, "suggests": {"_count": 1}, "explains": {"_count": 1}, "Committees": {"_count": 1}, "wasnt": {"_count": 6}, "meant": {"_count": 2}, "TimeTurner": {"_count": 1}, "bird": {"_count": 1}, "sort": {"_count": 1}, "doesnt": {"_count": 2}, "womans": {"_count": 1}, "idiot": {"_count": 1}, "egg": {"_count": 2}, "shut": {"_count": 1}, "do": {"_count": 1}, "sounded": {"_count": 2}, "piece": {"_count": 1}, "hurts": {"_count": 1}, "wouldnt": {"_count": 2}, "time": {"_count": 1}, "old": {"_count": 3}, "way": {"_count": 2}, "hurt": {"_count": 1}, "grave": {"_count": 1}, "scar": {"_count": 1}, "It": {"_count": 1}, "giant": {"_count": 1}, "could": {"_count": 1}, "youre": {"_count": 1}, "shouldve": {"_count": 1}, "correct": {"_count": 1}, "situation": {"_count": 1}, "Luna": {"_count": 1}, "wont": {"_count": 2}, "ought": {"_count": 1}, "Umbridge": {"_count": 1}, "Zacharias": {"_count": 1}, "foul": {"_count": 1}, "still": {"_count": 1}, "dream": {"_count": 1}, "woman": {"_count": 2}, "nights": {"_count": 1}, "bossy": {"_count": 1}, "interview": {"_count": 1}, "last": {"_count": 1}, "evil": {"_count": 1}, "blame": {"_count": 1}, "power": {"_count": 2}, "glass": {"_count": 1}, "gives": {"_count": 1}, "jobs": {"_count": 1}, "Slughorn": {"_count": 1}, "": {"_count": 2}, "ring": {"_count": 2}, "would": {"_count": 4}, "mangy": {"_count": 1}, "Katie": {"_count": 1}, "Muggle": {"_count": 1}, "thing": {"_count": 1}, "enough": {"_count": 1}, "seventh": {"_count": 1}, "I": {"_count": 2}, "potion": {"_count": 1}, "Potter": {"_count": 1}, "all": {"_count": 1}, "diary": {"_count": 1}, "couldve": {"_count": 1}, "fits": {"_count": 1}, "should": {"_count": 1}, "silly": {"_count": 1}, "sword": {"_count": 1}, "afternoon": {"_count": 1}, "makes": {"_count": 1}, "treacherous": {"_count": 1}, "much": {"_count": 1}, "she": {"_count": 1}, "horn": {"_count": 1}, "doublecrossing": {"_count": 1}, "scared": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}, "which": {"_count": 1}, "bit": {"_count": 1}, "isnt": {"_count": 1}, "wand": {"_count": 1}, "wands": {"_count": 1}}, "Dinky": {"_count": 1, "Duddydums": {"_count": 1}}, "dont": {"_count": 9, "": {"_count": 3}, "fulfill": {"_count": 1}, "ask": {"_count": 1}, "know": {"_count": 1}, "see": {"_count": 1}, "forget": {"_count": 1}, "like": {"_count": 1}}, "want": {"_count": 4, "": {"_count": 1}, "to": {"_count": 3}}, "him": {"_count": 6, "": {"_count": 5}, "and": {"_count": 1}}, "ttto": {"_count": 1, "come": {"_count": 1}}, "Just": {"_count": 194, "then": {"_count": 10}, "pack": {"_count": 1}, "yer": {"_count": 1}, "Ollivanders": {"_count": 1}, "take": {"_count": 3}, "be": {"_count": 1}, "what": {"_count": 1}, "looking": {"_count": 1}, "a": {"_count": 18}, "one": {"_count": 3}, "before": {"_count": 2}, "have": {"_count": 1}, "come": {"_count": 2}, "as": {"_count": 18}, "let": {"_count": 2}, "tell": {"_count": 2}, "the": {"_count": 4}, "five": {"_count": 1}, "Dobby": {"_count": 1}, "our": {"_count": 1}, "last": {"_count": 1}, "Mugglebaiting": {"_count": 1}, "so": {"_count": 2}, "been": {"_count": 1}, "calm": {"_count": 1}, "saying": {"_count": 1}, "for": {"_count": 4}, "because": {"_count": 7}, "do": {"_count": 4}, "you": {"_count": 2}, "promise": {"_count": 1}, "stick": {"_count": 2}, "ignore": {"_count": 2}, "keep": {"_count": 3}, "appear": {"_count": 1}, "after": {"_count": 2}, "tap": {"_count": 1}, "just": {"_count": 5}, "trying": {"_count": 2}, "had": {"_count": 1}, "to": {"_count": 1}, "standing": {"_count": 1}, "thinking": {"_count": 2}, "dont": {"_count": 4}, "put": {"_count": 1}, "Apparated": {"_count": 1}, "picture": {"_count": 1}, "reading": {"_count": 1}, "find": {"_count": 1}, "taken": {"_count": 1}, "hope": {"_count": 1}, "But": {"_count": 1}, "thought": {"_count": 2}, "my": {"_count": 1}, "tickle": {"_count": 1}, "forget": {"_count": 1}, "stay": {"_count": 2}, "go": {"_count": 2}, "like": {"_count": 4}, "try": {"_count": 4}, "answer": {"_count": 2}, "tired": {"_count": 1}, "in": {"_count": 5}, "Interdepartmental": {"_count": 1}, "round": {"_count": 1}, "caught": {"_count": 1}, "read": {"_count": 1}, "remember": {"_count": 1}, "an": {"_count": 1}, "listen": {"_count": 1}, "give": {"_count": 1}, "stop": {"_count": 1}, "think": {"_count": 1}, "outside": {"_count": 1}, "reach": {"_count": 1}, "nod": {"_count": 1}, "drop": {"_count": 1}, "time": {"_count": 1}, "now": {"_count": 2}, "didnt": {"_count": 1}, "choose": {"_count": 1}, "up": {"_count": 1}, "sling": {"_count": 1}, "about": {"_count": 1}, "dab": {"_count": 1}, "hurry": {"_count": 1}, "this": {"_count": 1}, "hang": {"_count": 1}, "get": {"_count": 2}, "drink": {"_count": 2}, "add": {"_count": 1}, "look": {"_count": 1}, "send": {"_count": 1}, "going": {"_count": 1}, "seen": {"_count": 1}}, "Piers": {"_count": 4, "was": {"_count": 1}, "and": {"_count": 1}, "Dennis": {"_count": 1}, "Polkiss": {"_count": 1}}, "Half": {"_count": 30, "an": {"_count": 7}, "terrified": {"_count": 1}, "blinded": {"_count": 1}, "a": {"_count": 6}, "the": {"_count": 5}, "giant": {"_count": 1}, "gray": {"_count": 1}, "our": {"_count": 2}, "of": {"_count": 4}, "buried": {"_count": 2}}, "Once": {"_count": 99, "Aunt": {"_count": 1}, "Hagrid": {"_count": 1}, "he": {"_count": 6}, "Or": {"_count": 1}, "the": {"_count": 10}, "term": {"_count": 1}, "again": {"_count": 12}, "theyre": {"_count": 1}, "they": {"_count": 10}, "we": {"_count": 3}, "Harry": {"_count": 1}, "you": {"_count": 2}, "every": {"_count": 1}, "out": {"_count": 3}, "a": {"_count": 3}, "my": {"_count": 1}, "or": {"_count": 10}, "everyone": {"_count": 1}, "Snape": {"_count": 1}, "before": {"_count": 1}, "sure": {"_count": 1}, "inside": {"_count": 1}, "outside": {"_count": 1}, "hed": {"_count": 1}, "James": {"_count": 1}, "breakfast": {"_count": 1}, "there": {"_count": 1}, "more": {"_count": 4}, "upon": {"_count": 1}, "in": {"_count": 2}, "when": {"_count": 1}, "Marvolo": {"_count": 1}, "free": {"_count": 1}, "it": {"_count": 1}, "Peeves": {"_count": 1}, "and": {"_count": 1}, "Im": {"_count": 1}, "youre": {"_count": 1}, "dressed": {"_count": 1}, "she": {"_count": 1}, "weve": {"_count": 1}, "were": {"_count": 1}, "Ollivander": {"_count": 1}, "past": {"_count": 1}, "through": {"_count": 1}}, "Next": {"_count": 47, "morning": {"_count": 2}, "moment": {"_count": 11}, "second": {"_count": 5}, "to": {"_count": 9}, "thing": {"_count": 4}, "term": {"_count": 1}, "he": {"_count": 1}, "came": {"_count": 2}, "they": {"_count": 1}, "Monday": {"_count": 1}, "Dumbledore": {"_count": 1}, "time": {"_count": 1}, "tell": {"_count": 1}, "": {"_count": 3}, "door": {"_count": 1}, "a": {"_count": 1}, "week": {"_count": 1}, "Mary": {"_count": 1}}, "Another": {"_count": 30, "time": {"_count": 1}, "Weasley": {"_count": 2}, "Christmas": {"_count": 1}, "few": {"_count": 1}, "year": {"_count": 1}, "large": {"_count": 1}, "attack": {"_count": 1}, "sweater": {"_count": 1}, "boggart": {"_count": 1}, "bang": {"_count": 1}, "pause": {"_count": 1}, "clap": {"_count": 1}, "flash": {"_count": 1}, "old": {"_count": 1}, "halfgiant": {"_count": 1}, "tenyearold": {"_count": 1}, "wisp": {"_count": 1}, "Remembrall": {"_count": 1}, "note": {"_count": 1}, "nights": {"_count": 1}, "teacher": {"_count": 1}, "zero": {"_count": 1}, "message": {"_count": 1}, "flick": {"_count": 1}, "ten": {"_count": 1}, "such": {"_count": 1}, "short": {"_count": 1}, "long": {"_count": 1}, "silence": {"_count": 1}}, "": {"_count": 193, ".": {"_count": 162}, "?": {"_count": 30}, "!": {"_count": 1}}, "roaring": {"_count": 1, "along": {"_count": 1}}, "Behind": {"_count": 36, "the": {"_count": 9}, "him": {"_count": 13}, "her": {"_count": 5}, "them": {"_count": 2}, "their": {"_count": 1}, "Snape": {"_count": 1}, "Harry": {"_count": 2}, "MadEyes": {"_count": 1}, "both": {"_count": 1}, "his": {"_count": 1}}, "Make": {"_count": 12, "it": {"_count": 2}, "Harry": {"_count": 1}, "Dudley": {"_count": 1}, "yerselves": {"_count": 1}, "way": {"_count": 1}, "them": {"_count": 1}, "us": {"_count": 1}, "sure": {"_count": 3}, "him": {"_count": 1}}, "Do": {"_count": 125, "it": {"_count": 5}, "you": {"_count": 82}, "they": {"_count": 4}, "either": {"_count": 1}, "something": {"_count": 3}, "we": {"_count": 2}, "tell": {"_count": 1}, "use": {"_count": 1}, "take": {"_count": 1}, "sit": {"_count": 2}, "watch": {"_count": 1}, "not": {"_count": 7}, "zey": {"_count": 1}, "nothing": {"_count": 3}, "I": {"_count": 5}, "that": {"_count": 1}, "mine": {"_count": 1}, "what": {"_count": 1}, "people": {"_count": 1}, "Mum": {"_count": 1}, "me": {"_count": 1}}, "Slowly": {"_count": 34, "very": {"_count": 2}, "the": {"_count": 8}, "Dobby": {"_count": 1}, "and": {"_count": 4}, "he": {"_count": 4}, "she": {"_count": 2}, "in": {"_count": 1}, "it": {"_count": 1}, "with": {"_count": 1}, "magnificently": {"_count": 1}, "they": {"_count": 3}, "Rons": {"_count": 1}, "tortuously": {"_count": 1}, "uncertainly": {"_count": 1}, "wheezing": {"_count": 1}, "Harry": {"_count": 1}, "under": {"_count": 1}}, "Where": {"_count": 150, "do": {"_count": 7}, "was": {"_count": 4}, "is": {"_count": 32}, "": {"_count": 8}, "on": {"_count": 1}, "should": {"_count": 1}, "did": {"_count": 8}, "re": {"_count": 3}, "there": {"_count": 3}, "exactly": {"_count": 2}, "now": {"_count": 1}, "are": {"_count": 33}, "d": {"_count": 2}, "had": {"_count": 3}, "does": {"_count": 3}, "have": {"_count": 7}, "would": {"_count": 2}, "else": {"_count": 1}, "dyou": {"_count": 3}, "ve": {"_count": 2}, "were": {"_count": 5}, "he": {"_count": 1}, "seconds": {"_count": 1}, "where": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "can": {"_count": 1}, "Ve": {"_count": 4}, "the": {"_count": 2}, "Harry": {"_count": 1}, "no": {"_count": 1}, "am": {"_count": 1}, "your": {"_count": 1}, "how": {"_count": 1}, "we": {"_count": 1}, "chivalry": {"_count": 1}}, "Boa": {"_count": 1, "Constrictor": {"_count": 1}}, "DUDLEY": {"_count": 5, "": {"_count": 3}, "COME": {"_count": 1}, "KEEP": {"_count": 1}}, "Out": {"_count": 34, "of": {"_count": 19}, "Peeves": {"_count": 1}, "on": {"_count": 2}, "outside": {"_count": 1}, "in": {"_count": 4}, "there": {"_count": 1}, "the": {"_count": 2}, "rolled": {"_count": 1}, "out": {"_count": 1}, "fell": {"_count": 1}, "he": {"_count": 1}}, "Caught": {"_count": 4, "by": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}}, "Thanksss": {"_count": 1, "amigo": {"_count": 1}}, "Until": {"_count": 4, "they": {"_count": 1}, "we": {"_count": 2}, "Friday": {"_count": 1}}, "Sometimes": {"_count": 15, "when": {"_count": 2}, "he": {"_count": 4}, "they": {"_count": 1}, "the": {"_count": 1}, "however": {"_count": 2}, "it": {"_count": 2}, "you": {"_count": 1}, "there": {"_count": 1}, "Ive": {"_count": 1}}, "Very": {"_count": 126, "strange": {"_count": 2}, "well": {"_count": 48}, "secret": {"_count": 1}, "difficult": {"_count": 1}, "nice": {"_count": 3}, "good": {"_count": 17}, "safe": {"_count": 1}, "said": {"_count": 1}, "fishy": {"_count": 1}, "latest": {"_count": 1}, "amusing": {"_count": 1}, "bad": {"_count": 1}, "slowly": {"_count": 6}, "few": {"_count": 2}, "fortunate": {"_count": 2}, "close": {"_count": 2}, "smart": {"_count": 1}, "little": {"_count": 1}, "shaken": {"_count": 1}, "wise": {"_count": 1}, "poorly": {"_count": 1}, "carefully": {"_count": 1}, "useful": {"_count": 1}, "interested": {"_count": 1}, "erm": {"_count": 1}, "interesting": {"_count": 1}, "enthusiastic": {"_count": 1}, "glad": {"_count": 1}, "nosy": {"_count": 1}, "daring": {"_count": 1}, "kind": {"_count": 1}, "possible": {"_count": 1}, "reluctantly": {"_count": 1}, "unwillingly": {"_count": 1}, "very": {"_count": 2}, "clever": {"_count": 2}, "clean": {"_count": 1}, "pleased": {"_count": 1}, "funny": {"_count": 2}, "impressive": {"_count": 1}, "quiet": {"_count": 1}, "cheeky": {"_count": 1}, "amusin": {"_count": 1}, "astute": {"_count": 1}, "thoughtful": {"_count": 1}, "brave": {"_count": 1}, "dirty": {"_count": 1}, "old": {"_count": 1}, "valuable": {"_count": 1}}, "Everybody": {"_count": 26, "knew": {"_count": 1}, "clapped": {"_count": 1}, "finished": {"_count": 1}, "was": {"_count": 4}, "knows": {"_count": 1}, "said": {"_count": 1}, "present": {"_count": 1}, "flinched": {"_count": 1}, "seemed": {"_count": 2}, "left": {"_count": 1}, "got": {"_count": 1}, "except": {"_count": 1}, "ready": {"_count": 1}, "else": {"_count": 1}, "looked": {"_count": 6}, "mounted": {"_count": 1}, "always": {"_count": 1}}, "3": {"_count": 8, "THE": {"_count": 5}, "": {"_count": 2}, "WILL": {"_count": 1}}, "By": {"_count": 74, "the": {"_count": 40}, "nightfall": {"_count": 2}, "eleven": {"_count": 1}, "next": {"_count": 1}, "far": {"_count": 1}, "means": {"_count": 1}, "that": {"_count": 1}, "seven": {"_count": 2}, "dusk": {"_count": 1}, "Gryffindor": {"_count": 1}, "half": {"_count": 1}, "cheering": {"_count": 1}, "eight": {"_count": 1}, "ten": {"_count": 1}, "breakfast": {"_count": 1}, "all": {"_count": 3}, "six": {"_count": 1}, "midmorning": {"_count": 1}, "they": {"_count": 1}, "jogging": {"_count": 1}, "yourself": {"_count": 1}, "a": {"_count": 1}, "us": {"_count": 1}, "committing": {"_count": 1}, "attempting": {"_count": 1}, "Saturday": {"_count": 1}, "repeatedly": {"_count": 1}, "now": {"_count": 1}, "day": {"_count": 1}, "sheer": {"_count": 1}, "returning": {"_count": 1}}, "Want": {"_count": 20, "to": {"_count": 10}, "a": {"_count": 6}, "one": {"_count": 2}, "me": {"_count": 1}, "their": {"_count": 1}}, "Smeltings": {"_count": 1, "boys": {"_count": 1}}, "k": {"_count": 8, "k": {"_count": 8}}, "Your": {"_count": 100, "new": {"_count": 1}, "aunt": {"_count": 3}, "world": {"_count": 1}, "father": {"_count": 13}, "platform": {"_count": 1}, "friend": {"_count": 2}, "family": {"_count": 1}, "Quidditch": {"_count": 1}, "sister": {"_count": 1}, "bird": {"_count": 1}, "moment": {"_count": 1}, "whole": {"_count": 1}, "mother": {"_count": 6}, "dad": {"_count": 3}, "mum": {"_count": 3}, "head": {"_count": 1}, "parents": {"_count": 3}, "carriage": {"_count": 1}, "owl": {"_count": 1}, "Lordship": {"_count": 1}, "scar": {"_count": 3}, "elfs": {"_count": 1}, "dark": {"_count": 1}, "dads": {"_count": 3}, "names": {"_count": 1}, "Ordinary": {"_count": 1}, "partners": {"_count": 1}, "dance": {"_count": 1}, "task": {"_count": 1}, "last": {"_count": 1}, "name": {"_count": 1}, "blunder": {"_count": 1}, "voice": {"_count": 2}, "exploits": {"_count": 1}, "fathers": {"_count": 1}, "winnings": {"_count": 1}, "potion": {"_count": 2}, "grandparents": {"_count": 1}, "Patronus": {"_count": 1}, "loyalty": {"_count": 1}, "brother": {"_count": 3}, "previous": {"_count": 1}, "practical": {"_count": 1}, "Firebolt": {"_count": 1}, "death": {"_count": 1}, "dear": {"_count": 1}, "mothers": {"_count": 1}, "son": {"_count": 1}, "only": {"_count": 1}, "bloodtraitor": {"_count": 1}, "Potions": {"_count": 1}, "nickname": {"_count": 1}, "good": {"_count": 1}, "wands": {"_count": 1}, "usband": {"_count": 1}, "GreatAunt": {"_count": 1}, "tone": {"_count": 1}, "protective": {"_count": 1}, "wand": {"_count": 2}, "times": {"_count": 1}, "efforts": {"_count": 1}, "mums": {"_count": 1}, "first": {"_count": 1}, "soul": {"_count": 1}, "courage": {"_count": 1}}, "Itll": {"_count": 32, "look": {"_count": 1}, "be": {"_count": 17}, "all": {"_count": 3}, "take": {"_count": 2}, "hear": {"_count": 1}, "help": {"_count": 3}, "die": {"_count": 1}, "clear": {"_count": 1}, "make": {"_count": 1}, "probably": {"_count": 1}, "never": {"_count": 1}}, "Get": {"_count": 88, "the": {"_count": 4}, "out": {"_count": 18}, "off": {"_count": 5}, "in": {"_count": 5}, "em": {"_count": 1}, "away": {"_count": 6}, "to": {"_count": 1}, "Madam": {"_count": 1}, "outta": {"_count": 1}, "Fang": {"_count": 1}, "up": {"_count": 11}, "back": {"_count": 6}, "too": {"_count": 1}, "goin": {"_count": 3}, "your": {"_count": 2}, "behind": {"_count": 1}, "on": {"_count": 2}, "stuffed": {"_count": 1}, "going": {"_count": 2}, "it": {"_count": 3}, "me": {"_count": 1}, "down": {"_count": 4}, "under": {"_count": 4}, "him": {"_count": 1}, "over": {"_count": 1}, "Potter": {"_count": 1}, "right": {"_count": 1}}, "Poke": {"_count": 1, "him": {"_count": 1}}, "Three": {"_count": 48, "things": {"_count": 1}, "minutes": {"_count": 2}, "sets": {"_count": 1}, "up": {"_count": 1}, "boys": {"_count": 1}, "times": {"_count": 4}, "pairs": {"_count": 2}, "of": {"_count": 3}, "Chasers": {"_count": 3}, "days": {"_count": 3}, "seconds": {"_count": 1}, "": {"_count": 3}, "two": {"_count": 2}, "glass": {"_count": 1}, "dementors": {"_count": 1}, "turns": {"_count": 1}, "hours": {"_count": 1}, "African": {"_count": 1}, "large": {"_count": 1}, "helpings": {"_count": 1}, "butterbeers": {"_count": 1}, "in": {"_count": 1}, "His": {"_count": 1}, "rows": {"_count": 1}, "black": {"_count": 1}, "Galleons": {"_count": 1}, "lessons": {"_count": 1}, "years": {"_count": 1}, "handpainted": {"_count": 1}, "objects": {"_count": 1}, "Horcruxes": {"_count": 1}, "balls": {"_count": 1}, "doors": {"_count": 1}, "more": {"_count": 1}}, "Who": {"_count": 117, "would": {"_count": 3}, "on": {"_count": 2}, "had": {"_count": 2}, "cared": {"_count": 2}, "is": {"_count": 12}, "can": {"_count": 5}, "was": {"_count": 8}, "do": {"_count": 3}, "cares": {"_count": 6}, "knows": {"_count": 3}, "dyou": {"_count": 3}, "else": {"_count": 7}, "sent": {"_count": 1}, "": {"_count": 7}, "am": {"_count": 1}, "shouted": {"_count": 1}, "did": {"_count": 4}, "wrote": {"_count": 1}, "wouldnt": {"_count": 2}, "are": {"_count": 10}, "were": {"_count": 2}, "re": {"_count": 6}, "needs": {"_count": 1}, "put": {"_count": 1}, "frightened": {"_count": 1}, "nudged": {"_count": 1}, "helped": {"_count": 1}, "used": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 3}, "does": {"_count": 1}, "told": {"_count": 1}, "then": {"_count": 1}, "overheard": {"_count": 1}, "expects": {"_count": 1}, "wants": {"_count": 3}, "heard": {"_count": 1}, "blacked": {"_count": 1}, "puts": {"_count": 1}, "suspects": {"_count": 1}, "Gregorovitch": {"_count": 1}, "could": {"_count": 1}, "shall": {"_count": 1}, "has": {"_count": 1}}, "Turning": {"_count": 9, "the": {"_count": 1}, "Pettigrew": {"_count": 1}, "back": {"_count": 1}, "he": {"_count": 1}, "southwest": {"_count": 1}, "to": {"_count": 3}, "left": {"_count": 1}}, "Hurry": {"_count": 14, "up": {"_count": 10}, "Harry": {"_count": 1}, "vont": {"_count": 1}, "The": {"_count": 1}, "Filch": {"_count": 1}}, "Marges": {"_count": 2, "ill": {"_count": 1}, "train": {"_count": 1}}, "Ate": {"_count": 2, "a": {"_count": 2}}, "Dad": {"_count": 21, "": {"_count": 2}, "Harrys": {"_count": 1}, "was": {"_count": 3}, "had": {"_count": 1}, "why": {"_count": 1}, "whats": {"_count": 1}, "we": {"_count": 1}, "couldve": {"_count": 1}, "raised": {"_count": 1}, "says": {"_count": 1}, "reckons": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 2}, "is": {"_count": 1}, "always": {"_count": 2}}, "Whod": {"_count": 6, "be": {"_count": 1}, "want": {"_count": 4}, "have": {"_count": 1}}, "Within": {"_count": 15, "seconds": {"_count": 6}, "five": {"_count": 4}, "a": {"_count": 1}, "ten": {"_count": 1}, "hours": {"_count": 1}, "minutes": {"_count": 1}, "two": {"_count": 1}}, "PPPetunia": {"_count": 1, "": {"_count": 1}}, "Vernon": {"_count": 7, "": {"_count": 1}, "Aunt": {"_count": 1}, "Dursley": {"_count": 4}, "Dudley": {"_count": 1}}, "Let": {"_count": 85, "me": {"_count": 42}, "Hedwig": {"_count": 1}, "the": {"_count": 6}, "you": {"_count": 1}, "us": {"_count": 12}, "her": {"_count": 2}, "him": {"_count": 7}, "it": {"_count": 5}, "go": {"_count": 4}, "slip": {"_count": 1}, "someone": {"_count": 1}, "em": {"_count": 2}, "let": {"_count": 1}}, "OUT": {"_count": 5, "": {"_count": 2}, "WITH": {"_count": 1}, "OF": {"_count": 2}}, "we": {"_count": 25, "wont": {"_count": 1}, "think": {"_count": 1}, "cant": {"_count": 2}, "shall": {"_count": 3}, "can": {"_count": 1}, "never": {"_count": 1}, "will": {"_count": 1}, "beg": {"_count": 1}, "couldnt": {"_count": 2}, "couldve": {"_count": 1}, "reckon": {"_count": 1}, "all": {"_count": 1}, "wanted": {"_count": 1}, "are": {"_count": 1}, "thought": {"_count": 1}, "share": {"_count": 1}, "dont": {"_count": 1}, "": {"_count": 2}, "got": {"_count": 1}, "ttried": {"_count": 1}}, "Wheres": {"_count": 44, "my": {"_count": 6}, "the": {"_count": 5}, "Percy": {"_count": 1}, "Dumbledores": {"_count": 1}, "Snape": {"_count": 1}, "Lockhart": {"_count": 1}, "Hermione": {"_count": 4}, "Professor": {"_count": 2}, "Buckbeak": {"_count": 1}, "Ron": {"_count": 2}, "Crookshanks": {"_count": 2}, "Hagrid": {"_count": 4}, "Dumbledore": {"_count": 1}, "wand": {"_count": 1}, "Voldemort": {"_count": 1}, "Tonks": {"_count": 1}, "Pig": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "Sirius": {"_count": 1}, "mine": {"_count": 1}, "Hokey": {"_count": 1}, "Hedwig": {"_count": 1}, "Luna": {"_count": 2}, "Ginny": {"_count": 1}}, "Whos": {"_count": 45, "writing": {"_count": 1}, "there": {"_count": 11}, "that": {"_count": 10}, "plotting": {"_count": 1}, "giving": {"_count": 1}, "opened": {"_count": 1}, "looking": {"_count": 1}, "this": {"_count": 1}, "avoiding": {"_count": 1}, "just": {"_count": 1}, "in": {"_count": 2}, "Kreacher": {"_count": 1}, "Hufflepuff": {"_count": 1}, "going": {"_count": 1}, "\u2018she": {"_count": 1}, "Grawp": {"_count": 1}, "she": {"_count": 1}, "Grey": {"_count": 1}, "Gregorovitch": {"_count": 1}, "supposed": {"_count": 1}, "got": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "lent": {"_count": 1}, "spying": {"_count": 1}}, "SILENCE": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 10, "really": {"_count": 1}, "on": {"_count": 1}, "going": {"_count": 1}, "not": {"_count": 1}, "too": {"_count": 1}, "cured": {"_count": 1}, "very": {"_count": 1}, "asking": {"_count": 2}, "a": {"_count": 1}}, "Take": {"_count": 43, "this": {"_count": 7}, "him": {"_count": 4}, "another": {"_count": 1}, "me": {"_count": 1}, "your": {"_count": 4}, "er": {"_count": 1}, "them": {"_count": 3}, "it": {"_count": 5}, "the": {"_count": 2}, "these": {"_count": 2}, "her": {"_count": 1}, "care": {"_count": 6}, "his": {"_count": 1}, "whatever": {"_count": 1}, "Charms": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 2}}, "Other": {"_count": 12, "shelves": {"_count": 1}, "people": {"_count": 3}, "parents": {"_count": 1}, "members": {"_count": 2}, "teachers": {"_count": 2}, "students": {"_count": 1}, "things": {"_count": 1}, "quills": {"_count": 1}}, "From": {"_count": 57, "downstairs": {"_count": 1}, "an": {"_count": 2}, "Uncle": {"_count": 1}, "inside": {"_count": 3}, "being": {"_count": 1}, "the": {"_count": 9}, "either": {"_count": 1}, "where": {"_count": 1}, "behind": {"_count": 2}, "between": {"_count": 1}, "everything": {"_count": 1}, "Red": {"_count": 1}, "sneering": {"_count": 1}, "what": {"_count": 8}, "far": {"_count": 1}, "a": {"_count": 1}, "something": {"_count": 1}, "London": {"_count": 1}, "playing": {"_count": 1}, "here": {"_count": 2}, "it": {"_count": 2}, "dawn": {"_count": 1}, "this": {"_count": 2}, "all": {"_count": 3}, "Professor": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 1}, "time": {"_count": 2}, "below": {"_count": 1}, "their": {"_count": 1}, "upstairs": {"_count": 1}, "his": {"_count": 1}}, "make": {"_count": 5, "him": {"_count": 2}, "an": {"_count": 1}, "it": {"_count": 1}, "one": {"_count": 1}}, "Yesterday": {"_count": 2, "hed": {"_count": 1}, "seemed": {"_count": 1}}, "Today": {"_count": 12, "hed": {"_count": 1}, "was": {"_count": 1}, "we": {"_count": 3}, "he": {"_count": 1}, "however": {"_count": 1}, "they": {"_count": 1}, "with": {"_count": 1}, "Hagrid": {"_count": 1}, "": {"_count": 1}, "Hermione": {"_count": 1}}, "Go": {"_count": 82, "to": {"_count": 5}, "on": {"_count": 36}, "away": {"_count": 4}, "back": {"_count": 6}, "straight": {"_count": 1}, "home": {"_count": 3}, "and": {"_count": 8}, "": {"_count": 8}, "with": {"_count": 1}, "for": {"_count": 1}, "now": {"_count": 1}, "quick": {"_count": 2}, "naked": {"_count": 1}, "Harry": {"_count": 1}, "out": {"_count": 1}, "he": {"_count": 1}, "abroad": {"_count": 1}, "both": {"_count": 1}}, "Someone": {"_count": 46, "knew": {"_count": 1}, "was": {"_count": 9}, "had": {"_count": 4}, "knocked": {"_count": 1}, "standing": {"_count": 1}, "told": {"_count": 1}, "tried": {"_count": 1}, "who": {"_count": 1}, "wouldve": {"_count": 1}, "help": {"_count": 1}, "from": {"_count": 1}, "untied": {"_count": 1}, "creeping": {"_count": 1}, "a": {"_count": 1}, "put": {"_count": 1}, "else": {"_count": 3}, "attacking": {"_count": 1}, "broke": {"_count": 1}, "larger": {"_count": 1}, "magical": {"_count": 1}, "must": {"_count": 1}, "behind": {"_count": 1}, "shut": {"_count": 1}, "couldn": {"_count": 1}, "screamed": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}, "watching": {"_count": 1}, "helped": {"_count": 1}, "sent": {"_count": 2}, "there": {"_count": 1}, "passed": {"_count": 1}}, "Surely": {"_count": 22, "that": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 8}, "youre": {"_count": 1}, "Professor": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 1}, "youve": {"_count": 1}, "thats": {"_count": 1}, "a": {"_count": 1}, "not": {"_count": 1}, "nobody": {"_count": 1}, "Dumbledore": {"_count": 1}}, "See": {"_count": 81, "he": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 8}, "yeh": {"_count": 3}, "you": {"_count": 40}, "what": {"_count": 6}, "theres": {"_count": 1}, "Professor": {"_count": 1}, "why": {"_count": 1}, "theyre": {"_count": 1}, "yer": {"_count": 1}, "Hermione": {"_count": 1}, "them": {"_count": 1}, "over": {"_count": 1}, "here": {"_count": 1}, "if": {"_count": 2}, "I": {"_count": 2}, "not": {"_count": 1}, "hes": {"_count": 1}, "with": {"_count": 1}, "its": {"_count": 1}, "this": {"_count": 2}, "the": {"_count": 1}, "it": {"_count": 1}, "ya": {"_count": 1}}, "Twentyfour": {"_count": 1, "letters": {"_count": 1}}, "\u2022k": {"_count": 6, "k": {"_count": 5}, "Jc": {"_count": 1}}, "Were": {"_count": 144, "going": {"_count": 19}, "on": {"_count": 2}, "gonna": {"_count": 2}, "you": {"_count": 4}, "coming": {"_count": 3}, "looking": {"_count": 1}, "nearly": {"_count": 4}, "only": {"_count": 1}, "a": {"_count": 2}, "running": {"_count": 2}, "there": {"_count": 1}, "attracting": {"_count": 1}, "done": {"_count": 1}, "easily": {"_count": 1}, "being": {"_count": 1}, "in": {"_count": 5}, "taking": {"_count": 2}, "all": {"_count": 8}, "friends": {"_count": 2}, "lucky": {"_count": 1}, "still": {"_count": 3}, "staying": {"_count": 2}, "witnesses": {"_count": 1}, "getting": {"_count": 1}, "not": {"_count": 18}, "playing": {"_count": 2}, "the": {"_count": 4}, "wearing": {"_count": 2}, "about": {"_count": 1}, "supposed": {"_count": 8}, "walking": {"_count": 2}, "trying": {"_count": 2}, "eating": {"_count": 2}, "just": {"_count": 3}, "they": {"_count": 2}, "too": {"_count": 1}, "seventeen": {"_count": 1}, "quite": {"_count": 1}, "your": {"_count": 1}, "of": {"_count": 1}, "were": {"_count": 1}, "having": {"_count": 1}, "well": {"_count": 1}, "bein": {"_count": 1}, "workin": {"_count": 1}, "here": {"_count": 4}, "thinking": {"_count": 1}, "goin": {"_count": 1}, "flying": {"_count": 1}, "right": {"_count": 1}, "importing": {"_count": 1}, "testing": {"_count": 1}, "off": {"_count": 1}, "leaving": {"_count": 1}, "choosing": {"_count": 1}, "one": {"_count": 1}, "Gryffindors": {"_count": 1}, "his": {"_count": 1}, "up": {"_count": 1}, "fighting": {"_count": 1}}, "Even": {"_count": 98, "Aunt": {"_count": 1}, "Professor": {"_count": 1}, "Dudley": {"_count": 1}, "Ron": {"_count": 4}, "Harry": {"_count": 3}, "better": {"_count": 1}, "the": {"_count": 11}, "blimey": {"_count": 1}, "though": {"_count": 6}, "at": {"_count": 2}, "Ravenclaws": {"_count": 1}, "Neville": {"_count": 3}, "worse": {"_count": 1}, "aside": {"_count": 1}, "full": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 10}, "Hagrid": {"_count": 2}, "when": {"_count": 1}, "you": {"_count": 2}, "Dumbledores": {"_count": 1}, "Stans": {"_count": 1}, "Muggles": {"_count": 1}, "so": {"_count": 1}, "without": {"_count": 2}, "Hermione": {"_count": 4}, "Fred": {"_count": 3}, "now": {"_count": 3}, "Pettigrews": {"_count": 1}, "Quidditch": {"_count": 1}, "inside": {"_count": 1}, "Mr": {"_count": 1}, "by": {"_count": 2}, "those": {"_count": 1}, "underage": {"_count": 1}, "lower": {"_count": 1}, "Voldemort": {"_count": 1}, "Snape": {"_count": 2}, "through": {"_count": 1}, "Fawkes": {"_count": 1}, "within": {"_count": 1}, "Zabini": {"_count": 1}, "if": {"_count": 5}, "then": {"_count": 1}, "YouKnowWho": {"_count": 1}, "this": {"_count": 1}, "after": {"_count": 2}, "assuming": {"_count": 1}, "amongst": {"_count": 1}}, "Shake": {"_count": 2, "em": {"_count": 1}, "your": {"_count": 1}}, "shake": {"_count": 1, "em": {"_count": 1}}, "Scuse": {"_count": 2, "me": {"_count": 1}, "said": {"_count": 1}}, "Ill": {"_count": 206, "take": {"_count": 6}, "get": {"_count": 13}, "show": {"_count": 5}, "kill": {"_count": 1}, "never": {"_count": 3}, "be": {"_count": 17}, "use": {"_count": 1}, "Ill": {"_count": 2}, "run": {"_count": 1}, "expect": {"_count": 1}, "buy": {"_count": 1}, "have": {"_count": 9}, "make": {"_count": 6}, "keep": {"_count": 3}, "wait": {"_count": 3}, "go": {"_count": 12}, "just": {"_count": 8}, "try": {"_count": 5}, "explain": {"_count": 3}, "leave": {"_count": 2}, "bet": {"_count": 5}, "write": {"_count": 3}, "let": {"_count": 5}, "manage": {"_count": 1}, "do": {"_count": 13}, "see": {"_count": 9}, "ask": {"_count": 3}, "speak": {"_count": 2}, "look": {"_count": 1}, "sit": {"_count": 1}, "tell": {"_count": 6}, "help": {"_count": 1}, "drag": {"_count": 1}, "meet": {"_count": 2}, "fix": {"_count": 1}, "call": {"_count": 3}, "light": {"_count": 1}, "sort": {"_count": 1}, "send": {"_count": 1}, "give": {"_count": 3}, "come": {"_count": 4}, "bear": {"_count": 2}, "talk": {"_count": 1}, "say": {"_count": 2}, "breathe": {"_count": 1}, "walk": {"_count": 1}, "ttell": {"_count": 1}, "need": {"_count": 2}, "join": {"_count": 2}, "bring": {"_count": 1}, "cover": {"_count": 1}, "drop": {"_count": 1}, "still": {"_count": 1}, "carry": {"_count": 2}, "pretend": {"_count": 1}, "plan": {"_count": 1}, "": {"_count": 1}, "admit": {"_count": 1}, "wake": {"_count": 1}, "know": {"_count": 1}, "only": {"_count": 1}, "stand": {"_count": 1}, "knock": {"_count": 1}, "want": {"_count": 1}, "prove": {"_count": 1}, "invite": {"_count": 1}, "pack": {"_count": 1}, "teach": {"_count": 1}, "understand": {"_count": 1}, "finish": {"_count": 1}, "always": {"_count": 1}, "Cruciate": {"_count": 1}, "distract": {"_count": 1}}, "Daddys": {"_count": 3, "gone": {"_count": 1}, "just": {"_count": 1}, "made": {"_count": 1}}, "Great": {"_count": 22, "drops": {"_count": 1}, "man": {"_count": 3}, "idea": {"_count": 2}, "Uncle": {"_count": 2}, "food": {"_count": 1}, "capture": {"_count": 1}, "said": {"_count": 5}, "long": {"_count": 1}, "Scott": {"_count": 1}, "billowing": {"_count": 1}, "": {"_count": 1}, "tall": {"_count": 1}, "fat": {"_count": 1}, "chunks": {"_count": 1}}, "Monday": {"_count": 2, "": {"_count": 1}, "evening": {"_count": 1}}, "Of": {"_count": 146, "course": {"_count": 137}, "all": {"_count": 4}, "what": {"_count": 1}, "the": {"_count": 1}, "some": {"_count": 1}, "others": {"_count": 1}, "houseelves": {"_count": 1}}, "Still": {"_count": 56, "you": {"_count": 1}, "got": {"_count": 2}, "firstyear": {"_count": 1}, "upset": {"_count": 1}, "if": {"_count": 1}, "tuttutting": {"_count": 1}, "here": {"_count": 1}, "standing": {"_count": 1}, "in": {"_count": 1}, "looks": {"_count": 1}, "found": {"_count": 1}, "Harry": {"_count": 3}, "out": {"_count": 1}, "": {"_count": 3}, "its": {"_count": 2}, "never": {"_count": 1}, "breathing": {"_count": 2}, "there": {"_count": 1}, "he": {"_count": 3}, "facing": {"_count": 1}, "not": {"_count": 1}, "it": {"_count": 2}, "angry": {"_count": 1}, "this": {"_count": 1}, "better": {"_count": 1}, "smiling": {"_count": 2}, "alive": {"_count": 1}, "exceptionally": {"_count": 1}, "I": {"_count": 1}, "scowling": {"_count": 1}, "singing": {"_count": 1}, "at": {"_count": 3}, "pointing": {"_count": 1}, "the": {"_count": 1}, "even": {"_count": 1}, "checking": {"_count": 1}, "looking": {"_count": 1}, "slashing": {"_count": 1}, "paralyzed": {"_count": 1}, "wearing": {"_count": 1}, "feigning": {"_count": 1}, "watching": {"_count": 1}, "hidden": {"_count": 1}}, "Found": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "em": {"_count": 1}}, "Perched": {"_count": 2, "on": {"_count": 1}, "atop": {"_count": 1}}, "Storm": {"_count": 1, "forecast": {"_count": 1}}, "Icy": {"_count": 1, "sea": {"_count": 1}}, "Obviously": {"_count": 11, "he": {"_count": 1}, "not": {"_count": 1}, "Id": {"_count": 1}, "they": {"_count": 2}, "": {"_count": 1}, "Potter": {"_count": 1}, "we": {"_count": 1}, "she": {"_count": 1}, "Malfoy": {"_count": 1}, "theres": {"_count": 1}}, "Spray": {"_count": 2, "from": {"_count": 1}, "that": {"_count": 1}}, "Five": {"_count": 29, "minutes": {"_count": 7}, "said": {"_count": 1}, "you": {"_count": 1}, "points": {"_count": 5}, "sets": {"_count": 1}, "of": {"_count": 2}, "more": {"_count": 3}, "four": {"_count": 1}, "chairs": {"_count": 1}, "oclock": {"_count": 1}, "because": {"_count": 1}, "minutesll": {"_count": 1}, "different": {"_count": 1}, "Death": {"_count": 1}, "years": {"_count": 1}, "hundred": {"_count": 1}}, "Four": {"_count": 20, "minutes": {"_count": 1}, "students": {"_count": 1}, "or": {"_count": 1}, "to": {"_count": 1}, "attacks": {"_count": 1}, "pints": {"_count": 1}, "summers": {"_count": 1}, "fully": {"_count": 1}, "": {"_count": 2}, "people": {"_count": 2}, "weeks": {"_count": 1}, "stops": {"_count": 1}, "Stunners": {"_count": 1}, "Stunning": {"_count": 1}, "Hermione": {"_count": 1}, "of": {"_count": 1}, "Ravenclaws": {"_count": 1}, "objects": {"_count": 1}}, "Maybe": {"_count": 101, "the": {"_count": 3}, "he": {"_count": 11}, "they": {"_count": 6}, "she": {"_count": 2}, "Peeves": {"_count": 1}, "Snapes": {"_count": 1}, "it": {"_count": 4}, "hes": {"_count": 5}, "its": {"_count": 9}, "well": {"_count": 1}, "youre": {"_count": 2}, "youd": {"_count": 1}, "hed": {"_count": 1}, "maybe": {"_count": 1}, "a": {"_count": 2}, "theres": {"_count": 1}, "er": {"_count": 1}, "your": {"_count": 1}, "not": {"_count": 3}, "hell": {"_count": 1}, "if": {"_count": 2}, "youve": {"_count": 1}, "shes": {"_count": 1}, "Percys": {"_count": 1}, "Id": {"_count": 1}, "hang": {"_count": 1}, "theyve": {"_count": 1}, "this": {"_count": 2}, "thats": {"_count": 2}, "": {"_count": 6}, "said": {"_count": 1}, "you": {"_count": 2}, "Malfoy": {"_count": 1}, "an": {"_count": 1}, "Ill": {"_count": 3}, "someone": {"_count": 1}, "I": {"_count": 3}, "next": {"_count": 1}, "what": {"_count": 1}, "Voldemortll": {"_count": 1}, "we": {"_count": 1}, "Sirius": {"_count": 1}, "go": {"_count": 1}, "there": {"_count": 1}, "being": {"_count": 1}, "his": {"_count": 1}, "theyre": {"_count": 1}, "Dumbledore": {"_count": 1}, "Gryffindor": {"_count": 1}, "theyll": {"_count": 1}, "once": {"_count": 1}}, "Thirty": {"_count": 1, "seconds": {"_count": 1}}, "twenty": {"_count": 2, "": {"_count": 1}, "five": {"_count": 1}}, "ten": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "nine": {"_count": 3, "maybe": {"_count": 1}, "seconds": {"_count": 1}, "people": {"_count": 1}}, "two": {"_count": 16, "": {"_count": 11}, "across": {"_count": 1}, "seconds": {"_count": 1}, "in": {"_count": 1}, "stops": {"_count": 1}, "Harry": {"_count": 1}}, "one": {"_count": 15, "": {"_count": 6}, "second": {"_count": 1}, "that": {"_count": 1}, "thing": {"_count": 1}, "would": {"_count": 1}, "of": {"_count": 1}, "two": {"_count": 2}, "Harry": {"_count": 1}, "day": {"_count": 1}}, "BOOM": {"_count": 2, "": {"_count": 2}}, "THE": {"_count": 69, "KEEPER": {"_count": 1}, "JOURNEY": {"_count": 1}, "POTIONS": {"_count": 1}, "MIRROR": {"_count": 1}, "FORBIDDEN": {"_count": 1}, "MAN": {"_count": 1}, "WORST": {"_count": 1}, "CHAMBER": {"_count": 1}, "DUELING": {"_count": 1}, "POLY": {"_count": 1}, "HEIR": {"_count": 1}, "LEAKY": {"_count": 1}, "FIREBOLT": {"_count": 1}, "QUIDDITCH": {"_count": 1}, "SERVANT": {"_count": 1}, "DEMENTORS": {"_count": 1}, "RIDDLE": {"_count": 1}, "SCAR": {"_count": 1}, "PORTKEY": {"_count": 1}, "TRIWIZARD": {"_count": 1}, "UNFORGIVABLE": {"_count": 1}, "FOUR": {"_count": 1}, "WEIGHING": {"_count": 1}, "FIRST": {"_count": 1}, "HOUSEELF": {"_count": 1}, "UNEXPECTED": {"_count": 1}, "YULE": {"_count": 1}, "EGG": {"_count": 1}, "SECOND": {"_count": 2}, "MADNESS": {"_count": 1}, "PENSIEVE": {"_count": 1}, "THIRD": {"_count": 1}, "DEATH": {"_count": 1}, "PARTING": {"_count": 1}, "BEGINNING": {"_count": 1}, "NOBLE": {"_count": 1}, "WOES": {"_count": 1}, "HOGWARTS": {"_count": 1}, "LION": {"_count": 1}, "BEETLE": {"_count": 1}, "CENTAUR": {"_count": 1}, "DEPARTMENT": {"_count": 1}, "ONLY": {"_count": 1}, "LOST": {"_count": 1}, "SECRET": {"_count": 1}, "UNBREAKABLE": {"_count": 1}, "UNKNOWABLE": {"_count": 1}, "SEER": {"_count": 1}, "CAVE": {"_count": 1}, "LIGHTNINGSTRUCK": {"_count": 1}, "WHITE": {"_count": 1}, "SEVEN": {"_count": 1}, "WEDDING": {"_count": 1}, "BRIBE": {"_count": 1}, "MUGGLEBORN": {"_count": 1}, "THIEF": {"_count": 1}, "GOBLINS": {"_count": 1}, "LIFE": {"_count": 1}, "SILVER": {"_count": 1}, "DEATHLY": {"_count": 1}, "WANDMAKER": {"_count": 1}, "FINAL": {"_count": 1}, "MISSING": {"_count": 1}, "SACKING": {"_count": 1}, "BATTLE": {"_count": 1}, "ELDER": {"_count": 1}, "PRINCES": {"_count": 1}, "FOREST": {"_count": 1}}, "Budge": {"_count": 2, "up": {"_count": 2}}, "An": {"_count": 122, "heres": {"_count": 1}, "like": {"_count": 1}, "its": {"_count": 1}, "then": {"_count": 5}, "Ive": {"_count": 2}, "don": {"_count": 2}, "anyway": {"_count": 2}, "old": {"_count": 6}, "as": {"_count": 1}, "owl": {"_count": 4}, "whatre": {"_count": 1}, "see": {"_count": 1}, "keep": {"_count": 1}, "this": {"_count": 2}, "aged": {"_count": 1}, "hour": {"_count": 4}, "bangin": {"_count": 1}, "I": {"_count": 3}, "they": {"_count": 1}, "Engorgement": {"_count": 1}, "how": {"_count": 1}, "extraordinary": {"_count": 3}, "when": {"_count": 2}, "now": {"_count": 1}, "ordinary": {"_count": 1}, "intense": {"_count": 1}, "eerie": {"_count": 2}, "immensely": {"_count": 1}, "yeh": {"_count": 3}, "them": {"_count": 1}, "unworthy": {"_count": 1}, "odd": {"_count": 7}, "animal": {"_count": 1}, "Animagus": {"_count": 2}, "he": {"_count": 2}, "easy": {"_count": 1}, "enormous": {"_count": 1}, "impartial": {"_count": 1}, "excellent": {"_count": 1}, "Age": {"_count": 1}, "extremely": {"_count": 1}, "alarmingly": {"_count": 1}, "eagle": {"_count": 1}, "you": {"_count": 3}, "empty": {"_count": 1}, "echo": {"_count": 1}, "awful": {"_count": 1}, "Aurors": {"_count": 1}, "Organization": {"_count": 1}, "Im": {"_count": 1}, "Ill": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "wha": {"_count": 1}, "ugly": {"_count": 1}, "obscure": {"_count": 1}, "escape": {"_count": 1}, "both": {"_count": 1}, "your": {"_count": 1}, "interview": {"_count": 1}, "Ron": {"_count": 1}, "hes": {"_count": 1}, "explanation": {"_count": 1}, "obvious": {"_count": 1}, "invisible": {"_count": 1}, "immense": {"_count": 1}, "alarm": {"_count": 1}, "interesting": {"_count": 1}, "invitation": {"_count": 1}, "angry": {"_count": 1}, "idea": {"_count": 1}, "answer": {"_count": 1}, "elderly": {"_count": 1}, "ornate": {"_count": 2}, "thanks": {"_count": 1}, "if": {"_count": 1}, "aisle": {"_count": 1}, "honor": {"_count": 1}, "youre": {"_count": 1}, "theres": {"_count": 1}, "unbeatable": {"_count": 1}, "initial": {"_count": 1}, "object": {"_count": 1}}, "Las": {"_count": 2, "time": {"_count": 1}, "night": {"_count": 1}}, "Yeh": {"_count": 33, "look": {"_count": 1}, "don": {"_count": 2}, "are": {"_count": 1}, "couldve": {"_count": 1}, "wont": {"_count": 1}, "shouldve": {"_count": 1}, "sure": {"_count": 1}, "can": {"_count": 4}, "always": {"_count": 1}, "climb": {"_count": 1}, "shouldnve": {"_count": 2}, "know": {"_count": 4}, "gotta": {"_count": 1}, "say": {"_count": 1}, "did": {"_count": 3}, "find": {"_count": 1}, "migh": {"_count": 1}, "no": {"_count": 1}, "yehll": {"_count": 1}, "came": {"_count": 1}, "shouldn": {"_count": 1}, "all": {"_count": 1}, "couldn": {"_count": 1}}, "Anyway": {"_count": 86, "Harry": {"_count": 4}, "this": {"_count": 1}, "what": {"_count": 3}, "He": {"_count": 1}, "wed": {"_count": 2}, "I": {"_count": 4}, "weve": {"_count": 2}, "maybe": {"_count": 1}, "who": {"_count": 1}, "when": {"_count": 1}, "they": {"_count": 3}, "you": {"_count": 2}, "well": {"_count": 1}, "we": {"_count": 3}, "Hermione": {"_count": 1}, "good": {"_count": 1}, "": {"_count": 12}, "its": {"_count": 2}, "shes": {"_count": 1}, "youd": {"_count": 1}, "your": {"_count": 1}, "whats": {"_count": 1}, "Ive": {"_count": 1}, "were": {"_count": 1}, "why": {"_count": 1}, "once": {"_count": 3}, "that": {"_count": 1}, "one": {"_count": 2}, "said": {"_count": 3}, "Mum": {"_count": 1}, "she": {"_count": 2}, "members": {"_count": 1}, "more": {"_count": 1}, "he": {"_count": 1}, "Grawpy": {"_count": 1}, "the": {"_count": 5}, "never": {"_count": 1}, "back": {"_count": 1}, "it": {"_count": 1}, "thats": {"_count": 1}, "Ill": {"_count": 1}, "She": {"_count": 1}, "sorry": {"_count": 1}, "hes": {"_count": 1}, "if": {"_count": 1}, "how": {"_count": 1}, "his": {"_count": 1}, "Fleur": {"_count": 1}, "Neville": {"_count": 1}}, "Got": {"_count": 45, "summat": {"_count": 1}, "em": {"_count": 2}, "everythin": {"_count": 1}, "it": {"_count": 5}, "the": {"_count": 1}, "time": {"_count": 1}, "to": {"_count": 9}, "this": {"_count": 1}, "a": {"_count": 5}, "enough": {"_count": 1}, "plenty": {"_count": 1}, "all": {"_count": 2}, "your": {"_count": 3}, "any": {"_count": 1}, "me": {"_count": 1}, "Potters": {"_count": 1}, "yer": {"_count": 1}, "lost": {"_count": 1}, "an": {"_count": 1}, "inside": {"_count": 1}, "evrything": {"_count": 1}, "held": {"_count": 1}, "lucky": {"_count": 1}, "you": {"_count": 1}, "got": {"_count": 1}}, "True": {"_count": 13, "I": {"_count": 1}, "Dudley": {"_count": 1}, "Seers": {"_count": 1}, "he": {"_count": 1}, "both": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 2}, "Neville": {"_count": 1}, "that": {"_count": 1}, "sighed": {"_count": 1}, "": {"_count": 2}}, "Rubeus": {"_count": 3, "Hagrid": {"_count": 2}, "": {"_count": 1}}, "Id": {"_count": 92, "not": {"_count": 1}, "like": {"_count": 11}, "have": {"_count": 8}, "be": {"_count": 6}, "take": {"_count": 3}, "give": {"_count": 1}, "swap": {"_count": 1}, "say": {"_count": 6}, "better": {"_count": 9}, "much": {"_count": 1}, "light": {"_count": 1}, "never": {"_count": 4}, "hidden": {"_count": 1}, "just": {"_count": 1}, "blow": {"_count": 1}, "hate": {"_count": 1}, "hunt": {"_count": 1}, "want": {"_count": 3}, "guess": {"_count": 1}, "Id": {"_count": 1}, "watch": {"_count": 1}, "rather": {"_count": 5}, "bet": {"_count": 1}, "try": {"_count": 2}, "had": {"_count": 1}, "feel": {"_count": 3}, "forgotten": {"_count": 3}, "put": {"_count": 1}, "find": {"_count": 1}, "imagine": {"_count": 1}, "get": {"_count": 1}, "NEVER": {"_count": 1}, "know": {"_count": 1}, "already": {"_count": 1}, "love": {"_count": 2}, "worked": {"_count": 1}, "leave": {"_count": 1}, "even": {"_count": 1}, "do": {"_count": 1}, "been": {"_count": 1}}, "Soon": {"_count": 13, "the": {"_count": 4}, "he": {"_count": 2}, "there": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 2}, "": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}}, "Nobody": {"_count": 74, "said": {"_count": 4}, "in": {"_count": 2}, "spoke": {"_count": 9}, "answered": {"_count": 1}, "bothered": {"_count": 1}, "seemed": {"_count": 6}, "would": {"_count": 3}, "knows": {"_count": 3}, "really": {"_count": 2}, "was": {"_count": 7}, "but": {"_count": 4}, "at": {"_count": 1}, "wasted": {"_count": 1}, "else": {"_count": 5}, "ever": {"_count": 2}, "looking": {"_count": 1}, "under": {"_count": 1}, "missed": {"_count": 1}, "apart": {"_count": 2}, "raised": {"_count": 1}, "could": {"_count": 3}, "laughed": {"_count": 2}, "who": {"_count": 1}, "wants": {"_count": 1}, "noticed": {"_count": 1}, "had": {"_count": 1}, "can": {"_count": 1}, "paid": {"_count": 1}, "asked": {"_count": 2}, "did": {"_count": 1}, "now": {"_count": 1}, "ran": {"_count": 1}, "approached": {"_count": 1}}, "Yer": {"_count": 12, "great": {"_count": 1}, "parents": {"_count": 1}, "ticket": {"_count": 1}, "not": {"_count": 3}, "a": {"_count": 1}, "more": {"_count": 1}, "in": {"_count": 1}, "jus": {"_count": 1}, "going": {"_count": 1}, "mum": {"_count": 1}}, "Call": {"_count": 4, "me": {"_count": 2}, "this": {"_count": 1}, "im": {"_count": 1}}, "ALL": {"_count": 1, "WHAT": {"_count": 1}}, "DURSLEY": {"_count": 1, "": {"_count": 1}}, "Youre": {"_count": 215, "famous": {"_count": 1}, "joking": {"_count": 2}, "saying": {"_count": 1}, "lucky": {"_count": 2}, "only": {"_count": 1}, "worth": {"_count": 1}, "in": {"_count": 8}, "the": {"_count": 8}, "losing": {"_count": 1}, "mad": {"_count": 1}, "right": {"_count": 6}, "going": {"_count": 19}, "too": {"_count": 4}, "never": {"_count": 1}, "driving": {"_count": 1}, "not": {"_count": 28}, "just": {"_count": 4}, "making": {"_count": 3}, "wrong": {"_count": 1}, "a": {"_count": 9}, "barely": {"_count": 2}, "ugly": {"_count": 1}, "dead": {"_count": 2}, "alive": {"_count": 2}, "fighting": {"_count": 1}, "Muggleborn": {"_count": 1}, "winding": {"_count": 1}, "expecting": {"_count": 1}, "late": {"_count": 4}, "trying": {"_count": 3}, "armed": {"_count": 1}, "both": {"_count": 1}, "nutters": {"_count": 1}, "wondering": {"_count": 1}, "talking": {"_count": 2}, "youre": {"_count": 4}, "so": {"_count": 2}, "all": {"_count": 3}, "JOKING": {"_count": 1}, "eating": {"_count": 1}, "treasurer": {"_count": 1}, "excused": {"_count": 1}, "blocking": {"_count": 1}, "doing": {"_count": 2}, "already": {"_count": 1}, "to": {"_count": 2}, "tied": {"_count": 1}, "kidding": {"_count": 7}, "scared": {"_count": 1}, "starting": {"_count": 2}, "another": {"_count": 1}, "still": {"_count": 3}, "there": {"_count": 1}, "on": {"_count": 3}, "mental": {"_count": 1}, "an": {"_count": 1}, "looking": {"_count": 1}, "absolutely": {"_count": 1}, "letting": {"_count": 1}, "related": {"_count": 1}, "Harry": {"_count": 1}, "always": {"_count": 2}, "leaving": {"_count": 3}, "setting": {"_count": 1}, "less": {"_count": 1}, "Hagrid": {"_count": 1}, "inspectin": {"_count": 1}, "getting": {"_count": 1}, "meeting": {"_count": 1}, "early": {"_count": 1}, "banned": {"_count": 1}, "supposed": {"_count": 3}, "as": {"_count": 1}, "being": {"_count": 3}, "well": {"_count": 1}, "quite": {"_count": 2}, "like": {"_count": 1}, "actually": {"_count": 3}, "covered": {"_count": 1}, "lagging": {"_count": 1}, "unbelievable": {"_count": 1}, "out": {"_count": 1}, "at": {"_count": 1}, "more": {"_count": 1}, "halfgiant": {"_count": 1}, "okay": {"_count": 2}, "amazing": {"_count": 1}, "our": {"_count": 1}, "Aberforth": {"_count": 1}, "acting": {"_count": 1}, "underage": {"_count": 1}, "sure": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 1}}, "yeh": {"_count": 3, "don": {"_count": 3}}, "Stop": {"_count": 27, "": {"_count": 7}, "right": {"_count": 1}, "Lily": {"_count": 1}, "saying": {"_count": 1}, "moving": {"_count": 1}, "it": {"_count": 4}, "worrying": {"_count": 1}, "being": {"_count": 2}, "doing": {"_count": 1}, "stop": {"_count": 1}, "STOP": {"_count": 2}, "calling": {"_count": 1}, "stirring": {"_count": 1}, "skulking": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 1}}, "STOP": {"_count": 5, "": {"_count": 3}, "THEM": {"_count": 1}, "OR": {"_count": 1}}, "Ah": {"_count": 110, "go": {"_count": 1}, "Harry": {"_count": 3}, "yes": {"_count": 12}, "music": {"_count": 1}, "Hagrid": {"_count": 1}, "said": {"_count": 14}, "": {"_count": 5}, "sir": {"_count": 3}, "well": {"_count": 11}, "the": {"_count": 1}, "heres": {"_count": 1}, "Nearly": {"_count": 1}, "Riddle": {"_count": 1}, "youre": {"_count": 3}, "he": {"_count": 2}, "starting": {"_count": 1}, "theres": {"_count": 1}, "Severus": {"_count": 1}, "if": {"_count": 1}, "now": {"_count": 2}, "Wormtail": {"_count": 1}, "you": {"_count": 2}, "this": {"_count": 1}, "right": {"_count": 2}, "here": {"_count": 2}, "why": {"_count": 1}, "excellent": {"_count": 1}, "I": {"_count": 4}, "Fudge": {"_count": 1}, "no": {"_count": 2}, "think": {"_count": 1}, "yeah": {"_count": 1}, "but": {"_count": 2}, "what": {"_count": 2}, "look": {"_count": 1}, "Agrid": {"_count": 1}, "it": {"_count": 1}, "she": {"_count": 2}, "Evans": {"_count": 1}, "shes": {"_count": 1}, "Professor": {"_count": 1}, "good": {"_count": 3}, "and": {"_count": 1}, "hello": {"_count": 1}, "that": {"_count": 2}, "poor": {"_count": 1}, "Potter": {"_count": 2}, "they": {"_count": 1}, "God": {"_count": 1}, "Probity": {"_count": 1}}, "With": {"_count": 122, "a": {"_count": 65}, "his": {"_count": 5}, "one": {"_count": 3}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 2}, "an": {"_count": 7}, "any": {"_count": 1}, "two": {"_count": 2}, "very": {"_count": 1}, "difficulty": {"_count": 2}, "the": {"_count": 6}, "every": {"_count": 1}, "some": {"_count": 1}, "everyone": {"_count": 1}, "best": {"_count": 1}, "distinction": {"_count": 1}, "brains": {"_count": 1}, "no": {"_count": 1}, "what": {"_count": 2}, "so": {"_count": 1}, "another": {"_count": 1}, "Umbridge": {"_count": 2}, "Snape": {"_count": 1}, "whom": {"_count": 1}, "great": {"_count": 1}, "half": {"_count": 1}, "that": {"_count": 1}, "YouKnowWho": {"_count": 1}, "all": {"_count": 1}, "Gregorovitch": {"_count": 1}, "Snapes": {"_count": 1}, "fumbling": {"_count": 1}, "you": {"_count": 1}, "Bills": {"_count": 1}, "screams": {"_count": 1}, "surprising": {"_count": 1}}, "Chf": {"_count": 1, "": {"_count": 1}}, "Warlock": {"_count": 1, "Supreme": {"_count": 1}}, "Please": {"_count": 67, "find": {"_count": 1}, "leave": {"_count": 2}, "wait": {"_count": 1}, "Professor": {"_count": 4}, "cheer": {"_count": 1}, "Harry": {"_count": 2}, "": {"_count": 8}, "Hermione": {"_count": 1}, "help": {"_count": 2}, "give": {"_count": 1}, "sir": {"_count": 5}, "watch": {"_count": 1}, "lets": {"_count": 2}, "consider": {"_count": 1}, "be": {"_count": 2}, "dont": {"_count": 2}, "continue": {"_count": 1}, "do": {"_count": 3}, "state": {"_count": 2}, "write": {"_count": 1}, "think": {"_count": 1}, "please": {"_count": 2}, "turn": {"_count": 1}, "Hagrid": {"_count": 1}, "sit": {"_count": 4}, "er": {"_count": 1}, "said": {"_count": 2}, "I": {"_count": 2}, "come": {"_count": 1}, "sign": {"_count": 1}, "close": {"_count": 1}, "listen": {"_count": 1}, "make": {"_count": 1}, "follow": {"_count": 1}, "take": {"_count": 1}, "just": {"_count": 1}, "she": {"_count": 1}, "get": {"_count": 1}}, "Term": {"_count": 2, "begins": {"_count": 1}, "started": {"_count": 1}}, "Yours": {"_count": 6, "sincerely": {"_count": 4}, "in": {"_count": 1}, "Professor": {"_count": 1}}, "Taking": {"_count": 7, "him": {"_count": 1}, "Dudley": {"_count": 1}, "a": {"_count": 1}, "great": {"_count": 1}, "advantage": {"_count": 1}, "it": {"_count": 1}, "deep": {"_count": 1}}, "Weathers": {"_count": 1, "horrible": {"_count": 1}}, "Hope": {"_count": 10, "youre": {"_count": 1}, "to": {"_count": 1}, "your": {"_count": 1}, "you": {"_count": 2}, "the": {"_count": 1}, "its": {"_count": 2}, "they": {"_count": 1}, "this": {"_count": 1}}, "Hes": {"_count": 298, "not": {"_count": 34}, "going": {"_count": 10}, "off": {"_count": 2}, "a": {"_count": 19}, "coming": {"_count": 5}, "gone": {"_count": 10}, "just": {"_count": 13}, "late": {"_count": 1}, "heading": {"_count": 1}, "doing": {"_count": 1}, "used": {"_count": 2}, "too": {"_count": 2}, "got": {"_count": 14}, "found": {"_count": 2}, "getting": {"_count": 2}, "ancient": {"_count": 1}, "back": {"_count": 4}, "never": {"_count": 4}, "in": {"_count": 7}, "been": {"_count": 21}, "bitter": {"_count": 1}, "probably": {"_count": 3}, "really": {"_count": 9}, "another": {"_count": 2}, "Dumbledores": {"_count": 1}, "retired": {"_count": 2}, "gorgeous": {"_count": 1}, "dumped": {"_count": 1}, "thirteen": {"_count": 1}, "faking": {"_count": 2}, "making": {"_count": 1}, "trying": {"_count": 2}, "skin": {"_count": 1}, "hiding": {"_count": 1}, "that": {"_count": 1}, "only": {"_count": 3}, "the": {"_count": 4}, "done": {"_count": 3}, "supposed": {"_count": 1}, "made": {"_count": 2}, "tethered": {"_count": 1}, "teaching": {"_count": 1}, "innocent": {"_count": 1}, "locked": {"_count": 1}, "transforming": {"_count": 1}, "there": {"_count": 2}, "still": {"_count": 5}, "packin": {"_count": 1}, "packing": {"_count": 1}, "mine": {"_count": 1}, "obsessed": {"_count": 1}, "desperate": {"_count": 1}, "here": {"_count": 3}, "seen": {"_count": 3}, "always": {"_count": 3}, "worried": {"_count": 1}, "an": {"_count": 1}, "flying": {"_count": 1}, "jealous": {"_count": 1}, "taking": {"_count": 1}, "right": {"_count": 3}, "competing": {"_count": 1}, "mad": {"_count": 1}, "at": {"_count": 2}, "sort": {"_count": 1}, "one": {"_count": 1}, "very": {"_count": 1}, "ill": {"_count": 3}, "lost": {"_count": 4}, "excellent": {"_count": 1}, "on": {"_count": 4}, "living": {"_count": 1}, "useful": {"_count": 1}, "as": {"_count": 1}, "old": {"_count": 1}, "certainly": {"_count": 1}, "absolutely": {"_count": 1}, "well": {"_count": 1}, "all": {"_count": 1}, "having": {"_count": 1}, "WHAT": {"_count": 1}, "massive": {"_count": 1}, "sleeping": {"_count": 1}, "turned": {"_count": 1}, "stopped": {"_count": 1}, "doin": {"_count": 1}, "torturing": {"_count": 1}, "\u2018the": {"_count": 1}, "your": {"_count": 1}, "loads": {"_count": 1}, "highly": {"_count": 1}, "dead": {"_count": 2}, "replaced": {"_count": 1}, "much": {"_count": 1}, "speaking": {"_count": 1}, "nicked": {"_count": 1}, "definitely": {"_count": 2}, "come": {"_count": 1}, "over": {"_count": 1}, "such": {"_count": 1}, "mentaft": {"_count": 1}, "asking": {"_count": 1}, "pretty": {"_count": 1}, "devastated": {"_count": 1}, "up": {"_count": 1}, "hurt": {"_count": 1}, "already": {"_count": 1}, "alive": {"_count": 1}, "me": {"_count": 1}, "sitting": {"_count": 1}, "wondering": {"_count": 1}, "fainted": {"_count": 1}, "gggone": {"_count": 1}, "my": {"_count": 1}, "abroad": {"_count": 1}, "enjoying": {"_count": 1}, "snogging": {"_count": 1}}, "Knew": {"_count": 11, "Of": {"_count": 1}, "wed": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 2}, "youd": {"_count": 2}, "there": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}, "yeh": {"_count": 1}}, "Blimey": {"_count": 40, "this": {"_count": 2}, "said": {"_count": 4}, "Im": {"_count": 1}, "my": {"_count": 1}, "haven": {"_count": 1}, "Ill": {"_count": 1}, "shed": {"_count": 1}, "I": {"_count": 2}, "so": {"_count": 1}, "Mum": {"_count": 1}, "it": {"_count": 2}, "Harry": {"_count": 5}, "its": {"_count": 2}, "Hagrid": {"_count": 1}, "": {"_count": 7}, "what": {"_count": 1}, "they": {"_count": 1}, "whispered": {"_count": 1}, "Dudley": {"_count": 1}, "thats": {"_count": 1}, "but": {"_count": 1}, "Neville": {"_count": 1}, "dyou": {"_count": 1}}, "bad": {"_count": 3, "": {"_count": 1}, "time": {"_count": 1}, "enough": {"_count": 1}}, "Worse": {"_count": 6, "": {"_count": 1}, "than": {"_count": 2}, "still": {"_count": 2}, "even": {"_count": 1}}, "Nah": {"_count": 11, "cant": {"_count": 1}, "were": {"_count": 1}, "Im": {"_count": 1}, "": {"_count": 2}, "its": {"_count": 1}, "well": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "hes": {"_count": 1}, "that": {"_count": 1}}, "Don": {"_count": 25, "make": {"_count": 1}, "reckon": {"_count": 2}, "mind": {"_count": 1}, "mention": {"_count": 1}, "expect": {"_count": 1}, "you": {"_count": 2}, "go": {"_count": 2}, "worry": {"_count": 4}, "think": {"_count": 1}, "listen": {"_count": 3}, "yeh": {"_count": 1}, "frighten": {"_count": 1}, "open": {"_count": 1}, "be": {"_count": 1}, "shout": {"_count": 1}, "don": {"_count": 1}, "say": {"_count": 1}}, "Dark": {"_count": 7, "days": {"_count": 1}, "deeds": {"_count": 1}, "figures": {"_count": 1}, "wizards": {"_count": 1}, "Detectors": {"_count": 1}, "Lord": {"_count": 1}, "as": {"_count": 1}}, "Didnt": {"_count": 53, "know": {"_count": 2}, "dare": {"_count": 1}, "even": {"_count": 2}, "you": {"_count": 17}, "want": {"_count": 1}, "people": {"_count": 1}, "catch": {"_count": 2}, "realize": {"_count": 2}, "they": {"_count": 3}, "care": {"_count": 1}, "make": {"_count": 1}, "she": {"_count": 1}, "like": {"_count": 2}, "sound": {"_count": 1}, "bother": {"_count": 1}, "work": {"_count": 1}, "I": {"_count": 6}, "hear": {"_count": 1}, "this": {"_count": 1}, "look": {"_count": 1}, "Aberforth": {"_count": 1}, "manage": {"_count": 1}, "1": {"_count": 1}, "the": {"_count": 1}, "Professor": {"_count": 1}}, "terrible": {"_count": 5, "things": {"_count": 1}, "thing": {"_count": 2}, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "Course": {"_count": 37, "some": {"_count": 1}, "said": {"_count": 4}, "everyone": {"_count": 1}, "he": {"_count": 3}, "hes": {"_count": 2}, "e": {"_count": 1}, "she": {"_count": 3}, "Woods": {"_count": 1}, "it": {"_count": 2}, "I": {"_count": 5}, "you": {"_count": 2}, "yehre": {"_count": 1}, "we": {"_count": 3}, "they": {"_count": 2}, "once": {"_count": 1}, "theyre": {"_count": 1}, "with": {"_count": 1}, "if": {"_count": 1}, "Grindelwald": {"_count": 1}, "not": {"_count": 1}}, "Horribly": {"_count": 1, "": {"_count": 1}}, "Reckon": {"_count": 8, "Dumbledores": {"_count": 1}, "Fredd": {"_count": 1}, "theyll": {"_count": 1}, "somethings": {"_count": 1}, "they": {"_count": 3}, "shell": {"_count": 1}}, "Head": {"_count": 3, "boy": {"_count": 1}, "hanging": {"_count": 1}, "of": {"_count": 1}}, "probably": {"_count": 3, "knew": {"_count": 1}, "top": {"_count": 1}, "the": {"_count": 1}}, "Wanted": {"_count": 4, "ter": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 1}}, "Never": {"_count": 73, "wondered": {"_count": 1}, "mess": {"_count": 1}, "mind": {"_count": 22}, "thought": {"_count": 2}, "in": {"_count": 2}, "at": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 5}, "notice": {"_count": 1}, "been": {"_count": 3}, "before": {"_count": 2}, "trust": {"_count": 1}, "saw": {"_count": 1}, "occurred": {"_count": 1}, "quite": {"_count": 1}, "bin": {"_count": 2}, "dreamed": {"_count": 1}, "wanted": {"_count": 1}, "met": {"_count": 2}, "do": {"_count": 1}, "had": {"_count": 1}, "heard": {"_count": 2}, "you": {"_count": 5}, "known": {"_count": 1}, "out": {"_count": 1}, "again": {"_count": 1}, "ever": {"_count": 1}, "used": {"_count": 1}, "try": {"_count": 1}, "stay": {"_count": 1}, "liked": {"_count": 1}, "forget": {"_count": 1}, "once": {"_count": 2}, "married": {"_count": 1}}, "Something": {"_count": 68, "very": {"_count": 5}, "really": {"_count": 1}, "fluid": {"_count": 1}, "was": {"_count": 7}, "about": {"_count": 6}, "bright": {"_count": 1}, "you": {"_count": 1}, "gold": {"_count": 1}, "in": {"_count": 2}, "wet": {"_count": 1}, "soft": {"_count": 1}, "of": {"_count": 1}, "happened": {"_count": 1}, "that": {"_count": 2}, "silverwhite": {"_count": 1}, "moving": {"_count": 1}, "had": {"_count": 3}, "flickered": {"_count": 1}, "shiny": {"_count": 1}, "stirred": {"_count": 1}, "like": {"_count": 1}, "large": {"_count": 2}, "for": {"_count": 1}, "sharp": {"_count": 1}, "he": {"_count": 5}, "worse": {"_count": 1}, "seemed": {"_count": 1}, "Malfoy": {"_count": 1}, "collided": {"_count": 1}, "hes": {"_count": 1}, "caught": {"_count": 2}, "blibbering": {"_count": 1}, "heavy": {"_count": 1}, "smells": {"_count": 1}, "wrong": {"_count": 2}, "more": {"_count": 2}, "hot": {"_count": 1}, "shifted": {"_count": 1}, "huge": {"_count": 1}, "something": {"_count": 1}, "happy": {"_count": 1}}, "Took": {"_count": 10, "yeh": {"_count": 1}, "ages": {"_count": 1}, "you": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 2}, "me": {"_count": 2}, "some": {"_count": 1}, "us": {"_count": 1}}, "Brought": {"_count": 2, "yeh": {"_count": 1}, "up": {"_count": 1}}, "Load": {"_count": 3, "of": {"_count": 3}}, "Pointing": {"_count": 4, "this": {"_count": 1}, "his": {"_count": 2}, "at": {"_count": 1}}, "Disappeared": {"_count": 1, "": {"_count": 1}}, "Vanished": {"_count": 1, "": {"_count": 1}}, "Same": {"_count": 11, "night": {"_count": 1}, "time": {"_count": 3}, "goes": {"_count": 3}, "to": {"_count": 1}, "difference": {"_count": 1}, "as": {"_count": 1}, "reason": {"_count": 1}}, "Makes": {"_count": 2, "yeh": {"_count": 1}, "a": {"_count": 1}}, "Codswallop": {"_count": 2, "in": {"_count": 2}}, "Dunno": {"_count": 19, "if": {"_count": 3}, "what": {"_count": 2}, "some": {"_count": 1}, "how": {"_count": 1}, "why": {"_count": 1}, "Then": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 6}, "where": {"_count": 1}}, "Some": {"_count": 70, "say": {"_count": 1}, "of": {"_count": 30}, "sort": {"_count": 2}, "had": {"_count": 2}, "rich": {"_count": 1}, "distance": {"_count": 1}, "people": {"_count": 6}, "day": {"_count": 1}, "Apparate": {"_count": 1}, "with": {"_count": 1}, "job": {"_count": 1}, "lesson": {"_count": 1}, "disturbance": {"_count": 1}, "Bulgarian": {"_count": 1}, "fear": {"_count": 1}, "way": {"_count": 1}, "whispered": {"_count": 1}, "looked": {"_count": 2}, "o": {"_count": 1}, "like": {"_count": 1}, "were": {"_count": 2}, "called": {"_count": 1}, "are": {"_count": 1}, "idiots": {"_count": 2}, "ten": {"_count": 1}, "would": {"_count": 1}, "students": {"_count": 1}, "excitement": {"_count": 1}, "indeed": {"_count": 1}, "inner": {"_count": 1}, "wizards": {"_count": 1}}, "Too": {"_count": 16, "weak": {"_count": 2}, "tired": {"_count": 1}, "eager": {"_count": 1}, "right": {"_count": 2}, "soon": {"_count": 1}, "much": {"_count": 2}, "bad": {"_count": 2}, "late": {"_count": 2}, "powerful": {"_count": 1}, "risky": {"_count": 1}, "polite": {"_count": 1}}, "Cause": {"_count": 3, "somethin": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}}, "To": {"_count": 101, "his": {"_count": 23}, "make": {"_count": 3}, "one": {"_count": 1}, "their": {"_count": 4}, "escape": {"_count": 2}, "Harrys": {"_count": 11}, "have": {"_count": 2}, "speak": {"_count": 1}, "business": {"_count": 1}, "try": {"_count": 2}, "cap": {"_count": 3}, "everyones": {"_count": 2}, "give": {"_count": 3}, "some": {"_count": 1}, "somebody": {"_count": 1}, "ensure": {"_count": 1}, "see": {"_count": 1}, "the": {"_count": 5}, "me": {"_count": 3}, "hold": {"_count": 1}, "find": {"_count": 1}, "Ron": {"_count": 1}, "our": {"_count": 1}, "nobodys": {"_count": 1}, "GrubblyPlank": {"_count": 1}, "reform": {"_count": 1}, "whom": {"_count": 1}, "send": {"_count": 1}, "postpone": {"_count": 1}, "disappointed": {"_count": 1}, "drink": {"_count": 1}, "Harry": {"_count": 1}, "say": {"_count": 1}, "assist": {"_count": 1}, "punish": {"_count": 1}, "complete": {"_count": 1}, "Mrs": {"_count": 1}, "know": {"_count": 1}, "general": {"_count": 1}, "cover": {"_count": 1}, "be": {"_count": 2}, "what": {"_count": 1}, "Malfoys": {"_count": 1}, "add": {"_count": 1}, "Miss": {"_count": 1}, "Siriuss": {"_count": 1}, "Teddy": {"_count": 1}, "a": {"_count": 1}, "tell": {"_count": 1}}, "Not": {"_count": 244, "a": {"_count": 17}, "spposed": {"_count": 1}, "only": {"_count": 7}, "to": {"_count": 7}, "wanting": {"_count": 3}, "Slytherin": {"_count": 1}, "if": {"_count": 5}, "arguing": {"_count": 1}, "until": {"_count": 6}, "fast": {"_count": 1}, "interested": {"_count": 1}, "for": {"_count": 5}, "today": {"_count": 3}, "now": {"_count": 4}, "unlike": {"_count": 1}, "where": {"_count": 1}, "that": {"_count": 10}, "not": {"_count": 1}, "Lucius": {"_count": 1}, "like": {"_count": 2}, "lost": {"_count": 1}, "far": {"_count": 3}, "daring": {"_count": 1}, "much": {"_count": 4}, "unless": {"_count": 7}, "dead": {"_count": 1}, "just": {"_count": 2}, "here": {"_count": 4}, "since": {"_count": 1}, "the": {"_count": 6}, "tiny": {"_count": 1}, "another": {"_count": 2}, "what": {"_count": 3}, "something": {"_count": 1}, "happy": {"_count": 1}, "entirely": {"_count": 1}, "everyone": {"_count": 2}, "yet": {"_count": 5}, "too": {"_count": 3}, "remotely": {"_count": 1}, "at": {"_count": 9}, "Harry": {"_count": 6}, "many": {"_count": 1}, "even": {"_count": 4}, "looking": {"_count": 1}, "on": {"_count": 2}, "doing": {"_count": 1}, "you": {"_count": 2}, "nice": {"_count": 1}, "pleasant": {"_count": 1}, "going": {"_count": 1}, "one": {"_count": 4}, "in": {"_count": 7}, "once": {"_count": 1}, "bad": {"_count": 1}, "against": {"_count": 1}, "all": {"_count": 3}, "hiding": {"_count": 1}, "good": {"_count": 1}, "as": {"_count": 2}, "cover": {"_count": 1}, "necessarily": {"_count": 2}, "seriously": {"_count": 1}, "our": {"_count": 1}, "surprising": {"_count": 1}, "altogether": {"_count": 1}, "really": {"_count": 6}, "of": {"_count": 2}, "about": {"_count": 1}, "with": {"_count": 2}, "feeling": {"_count": 1}, "": {"_count": 4}, "pomegranate": {"_count": 1}, "tonight": {"_count": 1}, "running": {"_count": 1}, "after": {"_count": 4}, "so": {"_count": 6}, "very": {"_count": 1}, "Potters": {"_count": 1}, "anymore": {"_count": 3}, "food": {"_count": 1}, "such": {"_count": 1}, "pretty": {"_count": 1}, "always": {"_count": 1}, "turned": {"_count": 1}, "long": {"_count": 1}, "exactly": {"_count": 1}, "while": {"_count": 1}, "when": {"_count": 1}, "content": {"_count": 1}, "Mum": {"_count": 1}, "quite": {"_count": 1}, "there": {"_count": 1}, "sure": {"_count": 1}, "enough": {"_count": 1}, "according": {"_count": 1}, "anger": {"_count": 1}, "by": {"_count": 1}, "from": {"_count": 1}, "gold": {"_count": 1}, "under": {"_count": 1}, "Albus": {"_count": 1}, "exacly": {"_count": 1}, "said": {"_count": 1}, "every": {"_count": 1}}, "every": {"_count": 2, "odd": {"_count": 1}, "hour": {"_count": 1}}, "chased": {"_count": 1, "by": {"_count": 1}}, "dreading": {"_count": 1, "going": {"_count": 1}}, "Havent": {"_count": 19, "I": {"_count": 3}, "even": {"_count": 1}, "any": {"_count": 1}, "you": {"_count": 7}, "got": {"_count": 2}, "we": {"_count": 2}, "seen": {"_count": 1}, "havent": {"_count": 1}, "go": {"_count": 1}}, "Seven": {"_count": 11, "years": {"_count": 1}, "inches": {"_count": 1}, "bottles": {"_count": 1}, "highly": {"_count": 1}, "hundred": {"_count": 1}, "past": {"_count": 1}, "green": {"_count": 1}, "O": {"_count": 1}, "stirs": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "Pulling": {"_count": 5, "Aunt": {"_count": 1}, "their": {"_count": 1}, "himself": {"_count": 1}, "out": {"_count": 2}}, "Shouldnta": {"_count": 1, "lost": {"_count": 1}}, "Meant": {"_count": 2, "ter": {"_count": 1}, "a": {"_count": 1}}, "Be": {"_count": 27, "grateful": {"_count": 1}, "that": {"_count": 1}, "warned": {"_count": 2}, "careful": {"_count": 5}, "of": {"_count": 1}, "quiet": {"_count": 2}, "cool": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 2}, "at": {"_count": 1}, "polite": {"_count": 1}, "good": {"_count": 3}, "over": {"_count": 1}, "brave": {"_count": 1}, "sure": {"_count": 2}, "very": {"_count": 1}, "pretty": {"_count": 1}}, "Gotta": {"_count": 6, "get": {"_count": 1}, "bone": {"_count": 1}, "pull": {"_count": 1}, "walk": {"_count": 1}, "go": {"_count": 1}, "see": {"_count": 1}}, "DIAGON": {"_count": 1, "ALLY": {"_count": 1}}, "Tap": {"_count": 3, "": {"_count": 3}}, "Theres": {"_count": 153, "an": {"_count": 5}, "a": {"_count": 30}, "four": {"_count": 1}, "not": {"_count": 2}, "loads": {"_count": 1}, "nothing": {"_count": 22}, "talent": {"_count": 1}, "no": {"_count": 32}, "nothin": {"_count": 1}, "blood": {"_count": 1}, "summat": {"_count": 2}, "light": {"_count": 1}, "only": {"_count": 4}, "more": {"_count": 3}, "something": {"_count": 16}, "one": {"_count": 4}, "just": {"_count": 2}, "some": {"_count": 3}, "got": {"_count": 1}, "always": {"_count": 1}, "still": {"_count": 2}, "going": {"_count": 2}, "another": {"_count": 1}, "enough": {"_count": 1}, "Ron": {"_count": 1}, "been": {"_count": 2}, "traditionally": {"_count": 1}, "Phineas": {"_count": 1}, "me": {"_count": 1}, "room": {"_count": 1}, "the": {"_count": 1}, "already": {"_count": 1}, "someone": {"_count": 3}, "this": {"_count": 1}, "really": {"_count": 1}}, "Look": {"_count": 150, "in": {"_count": 3}, "Harry": {"_count": 4}, "you": {"_count": 5}, "": {"_count": 14}, "at": {"_count": 41}, "theyre": {"_count": 2}, "there": {"_count": 1}, "Ive": {"_count": 1}, "he": {"_count": 7}, "Mom": {"_count": 1}, "this": {"_count": 2}, "Albus": {"_count": 1}, "give": {"_count": 1}, "said": {"_count": 6}, "theyve": {"_count": 1}, "He": {"_count": 2}, "and": {"_count": 1}, "Scabbers": {"_count": 1}, "heres": {"_count": 1}, "like": {"_count": 1}, "behind": {"_count": 1}, "its": {"_count": 2}, "after": {"_count": 3}, "I": {"_count": 8}, "what": {"_count": 6}, "very": {"_count": 1}, "round": {"_count": 1}, "we": {"_count": 1}, "Well": {"_count": 1}, "she": {"_count": 1}, "theres": {"_count": 2}, "drop": {"_count": 1}, "Hagrid": {"_count": 2}, "don": {"_count": 1}, "the": {"_count": 1}, "lets": {"_count": 2}, "shes": {"_count": 1}, "ah": {"_count": 1}, "who": {"_count": 2}, "Im": {"_count": 1}, "here": {"_count": 1}, "outi": {"_count": 1}, "Instant": {"_count": 1}, "hes": {"_count": 1}, "sighed": {"_count": 1}, "Hermione": {"_count": 1}, "sharp": {"_count": 2}, "hurry": {"_count": 1}, "out": {"_count": 1}, "why": {"_count": 1}, "Potions": {"_count": 1}, "when": {"_count": 1}, "for": {"_count": 2}}, "finally": {"_count": 1, "Harry": {"_count": 1}}, "Give": {"_count": 36, "him": {"_count": 2}, "us": {"_count": 3}, "that": {"_count": 2}, "it": {"_count": 10}, "the": {"_count": 3}, "me": {"_count": 10}, "Pig": {"_count": 1}, "them": {"_count": 2}, "her": {"_count": 1}, "Aragog": {"_count": 1}, "you": {"_count": 1}}, "Knuts": {"_count": 1, "": {"_count": 1}}, "Best": {"_count": 14, "be": {"_count": 1}, "do": {"_count": 1}, "not": {"_count": 2}, "go": {"_count": 1}, "idea": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 1}, "let": {"_count": 1}, "to": {"_count": 1}, "range": {"_count": 1}, "bargain": {"_count": 1}, "take": {"_count": 1}, "friends": {"_count": 1}}, "Urn": {"_count": 1, "Hagrid": {"_count": 1}}, "Dyeh": {"_count": 2, "think": {"_count": 1}, "know": {"_count": 1}}, "Wizards": {"_count": 8, "bank": {"_count": 1}, "have": {"_count": 1}, "duel": {"_count": 1}, "who": {"_count": 2}, "much": {"_count": 1}, "killed": {"_count": 1}, "of": {"_count": 1}}, "Have": {"_count": 80, "a": {"_count": 12}, "you": {"_count": 57}, "some": {"_count": 1}, "we": {"_count": 2}, "one": {"_count": 1}, "either": {"_count": 3}, "it": {"_count": 1}, "what": {"_count": 1}, "another": {"_count": 1}, "they": {"_count": 1}}, "Gringotts": {"_count": 6, "": {"_count": 1}, "is": {"_count": 2}, "said": {"_count": 1}, "goblins": {"_count": 1}, "had": {"_count": 1}}, "Run": {"_count": 4, "by": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "along": {"_count": 1}}, "Goblins": {"_count": 10, "": {"_count": 1}, "dont": {"_count": 1}, "had": {"_count": 1}, "Hermione": {"_count": 1}, "silver": {"_count": 1}, "and": {"_count": 2}, "know": {"_count": 1}, "have": {"_count": 1}, "arent": {"_count": 1}}, "Hogwarts": {"_count": 18, "business": {"_count": 2}, "dear": {"_count": 1}, "was": {"_count": 3}, "": {"_count": 2}, "Castle": {"_count": 1}, "prefects": {"_count": 1}, "has": {"_count": 1}, "needs": {"_count": 1}, "would": {"_count": 1}, "Dumbledore": {"_count": 1}, "is": {"_count": 2}, "without": {"_count": 1}, "should": {"_count": 1}}, "Fetchin": {"_count": 1, "you": {"_count": 1}}, "Flew": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Seems": {"_count": 3, "a": {"_count": 1}, "youve": {"_count": 1}, "the": {"_count": 1}}, "Spells": {"_count": 1, "enchantments": {"_count": 1}}, "Deep": {"_count": 2, "under": {"_count": 1}, "down": {"_count": 1}}, "Yehd": {"_count": 3, "die": {"_count": 1}, "think": {"_count": 2}}, "Ministry": {"_count": 11, "o": {"_count": 1}, "task": {"_count": 1}, "wizards": {"_count": 2}, "blunders": {"_count": 1}, "refuses": {"_count": 1}, "representatives": {"_count": 2}, "of": {"_count": 2}, "is": {"_count": 1}}, "Bungler": {"_count": 1, "if": {"_count": 1}}, "Passersby": {"_count": 1, "stared": {"_count": 1}}, "Crikey": {"_count": 1, "Id": {"_count": 1}}, "Their": {"_count": 62, "eyes": {"_count": 2}, "mother": {"_count": 1}, "trunks": {"_count": 3}, "teacher": {"_count": 1}, "peeling": {"_count": 1}, "ears": {"_count": 1}, "very": {"_count": 1}, "first": {"_count": 2}, "earmuffs": {"_count": 1}, "last": {"_count": 2}, "breath": {"_count": 1}, "Invisibility": {"_count": 1}, "shadows": {"_count": 1}, "best": {"_count": 1}, "Seeker": {"_count": 1}, "bulging": {"_count": 1}, "only": {"_count": 1}, "second": {"_count": 1}, "story": {"_count": 1}, "party": {"_count": 1}, "footsteps": {"_count": 3}, "worst": {"_count": 1}, "children": {"_count": 1}, "faces": {"_count": 2}, "fellow": {"_count": 1}, "tent": {"_count": 1}, "Sickles": {"_count": 1}, "thick": {"_count": 1}, "English": {"_count": 1}, "heads": {"_count": 2}, "yellowish": {"_count": 1}, "front": {"_count": 1}, "relentless": {"_count": 1}, "renown": {"_count": 1}, "glass": {"_count": 1}, "cherub": {"_count": 1}, "criminal": {"_count": 1}, "teachers": {"_count": 1}, "final": {"_count": 1}, "long": {"_count": 1}, "Page": {"_count": 1}, "dormitory": {"_count": 1}, "priority": {"_count": 1}, "blood": {"_count": 1}, "expressions": {"_count": 1}, "son": {"_count": 1}, "escape": {"_count": 1}, "protective": {"_count": 1}, "entrance": {"_count": 1}, "abandoned": {"_count": 1}, "savior": {"_count": 1}, "remains": {"_count": 1}, "wands": {"_count": 1}}, "Before": {"_count": 58, "he": {"_count": 13}, "Ron": {"_count": 2}, "Malfoy": {"_count": 1}, "Harry": {"_count": 8}, "Dumbledore": {"_count": 1}, "Fudge": {"_count": 1}, "hed": {"_count": 1}, "either": {"_count": 2}, "the": {"_count": 8}, "Snape": {"_count": 1}, "any": {"_count": 3}, "Rita": {"_count": 1}, "long": {"_count": 1}, "you": {"_count": 1}, "Voldemort": {"_count": 1}, "we": {"_count": 5}, "Wormtail": {"_count": 1}, "I": {"_count": 2}, "his": {"_count": 1}, "anybody": {"_count": 1}, "Hermione": {"_count": 2}, "they": {"_count": 1}}, "Bless": {"_count": 6, "my": {"_count": 1}, "him": {"_count": 2}, "them": {"_count": 2}, "you": {"_count": 1}}, "what": {"_count": 34, "an": {"_count": 1}, "did": {"_count": 3}, "Gilderoy": {"_count": 1}, "Id": {"_count": 1}, "youre": {"_count": 1}, "is": {"_count": 1}, "a": {"_count": 2}, "made": {"_count": 1}, "are": {"_count": 2}, "excuse": {"_count": 1}, "nonsense": {"_count": 1}, "lives": {"_count": 1}, "animal": {"_count": 1}, "do": {"_count": 1}, "color": {"_count": 1}, "would": {"_count": 1}, "were": {"_count": 1}, "about": {"_count": 3}, "if": {"_count": 1}, "sort": {"_count": 1}, "was": {"_count": 1}, "with": {"_count": 2}, "have": {"_count": 2}, "could": {"_count": 1}, "unconscious": {"_count": 1}, "": {"_count": 1}}, "Welcome": {"_count": 15, "back": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 7}, "": {"_count": 2}, "welcome": {"_count": 1}, "Patrick": {"_count": 1}, "it": {"_count": 1}, "Death": {"_count": 1}}, "Doris": {"_count": 2, "Crockford": {"_count": 2}}, "Always": {"_count": 16, "wanted": {"_count": 1}, "the": {"_count": 5}, "use": {"_count": 1}, "happy": {"_count": 1}, "thought": {"_count": 1}, "modest": {"_count": 1}, "brought": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "jump": {"_count": 1}, "I": {"_count": 1}, "good": {"_count": 1}}, "Delighted": {"_count": 3, "Mr": {"_count": 1}, "and": {"_count": 2}}, "Did": {"_count": 137, "you": {"_count": 78}, "something": {"_count": 1}, "that": {"_count": 3}, "it": {"_count": 5}, "Lucius": {"_count": 1}, "he": {"_count": 12}, "the": {"_count": 3}, "they": {"_count": 1}, "your": {"_count": 1}, "she": {"_count": 3}, "someone": {"_count": 3}, "Black": {"_count": 1}, "anyone": {"_count": 3}, "I": {"_count": 12}, "sir": {"_count": 1}, "Crouch": {"_count": 1}, "anybody": {"_count": 1}, "this": {"_count": 1}, "everyone": {"_count": 1}, "Malfoy": {"_count": 1}, "Cedric": {"_count": 1}, "Hagrid": {"_count": 1}, "things": {"_count": 1}, "Doge": {"_count": 1}}, "PPPotter": {"_count": 1, "stammered": {"_count": 1}}, "Nnot": {"_count": 1, "that": {"_count": 1}}, "Youll": {"_count": 72, "be": {"_count": 27}, "learn": {"_count": 1}, "soon": {"_count": 1}, "understand": {"_count": 1}, "have": {"_count": 8}, "find": {"_count": 1}, "need": {"_count": 4}, "meet": {"_count": 1}, "start": {"_count": 1}, "forgive": {"_count": 2}, "just": {"_count": 2}, "regret": {"_count": 1}, "see": {"_count": 9}, "try": {"_count": 1}, "come": {"_count": 1}, "put": {"_count": 3}, "leave": {"_count": 1}, "want": {"_count": 1}, "tolerate": {"_count": 1}, "notice": {"_count": 1}, "do": {"_count": 2}, "stay": {"_count": 1}, "write": {"_count": 1}}, "Must": {"_count": 7, "get": {"_count": 1}, "be": {"_count": 3}, "have": {"_count": 2}, "": {"_count": 1}}, "Told": {"_count": 14, "yeh": {"_count": 2}, "me": {"_count": 2}, "you": {"_count": 4}, "them": {"_count": 1}, "us": {"_count": 3}, "her": {"_count": 1}, "him": {"_count": 1}}, "Poor": {"_count": 14, "bloke": {"_count": 2}, "dear": {"_count": 1}, "blundering": {"_count": 1}, "thing": {"_count": 1}, "Neville": {"_count": 1}, "Errol": {"_count": 1}, "old": {"_count": 2}, "devils": {"_count": 1}, "Gryffindor": {"_count": 1}, "Mr": {"_count": 1}, "Potter": {"_count": 1}, "Severus": {"_count": 1}}, "Brilliant": {"_count": 13, "mind": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 4}, "": {"_count": 5}, "he": {"_count": 1}, "and": {"_count": 1}}, "Scared": {"_count": 4, "of": {"_count": 3}, "all": {"_count": 1}}, "Right": {"_count": 136, "stand": {"_count": 1}, "that": {"_count": 1}, "then": {"_count": 19}, "mumbled": {"_count": 1}, "said": {"_count": 37}, "": {"_count": 17}, "off": {"_count": 1}, "now": {"_count": 1}, "follow": {"_count": 1}, "were": {"_count": 2}, "heres": {"_count": 1}, "NOW": {"_count": 1}, "Im": {"_count": 2}, "ahead": {"_count": 1}, "earmuffs": {"_count": 1}, "he": {"_count": 5}, "into": {"_count": 1}, "underneath": {"_count": 1}, "in": {"_count": 2}, "youve": {"_count": 1}, "who": {"_count": 1}, "back": {"_count": 1}, "yeh": {"_count": 1}, "Neville": {"_count": 1}, "you": {"_count": 6}, "again": {"_count": 1}, "she": {"_count": 2}, "after": {"_count": 2}, "its": {"_count": 1}, "over": {"_count": 1}, "these": {"_count": 1}, "little": {"_count": 1}, "bed": {"_count": 1}, "before": {"_count": 1}, "Harry": {"_count": 2}, "got": {"_count": 1}, "I": {"_count": 1}, "well": {"_count": 5}, "on": {"_count": 1}, "yeah": {"_count": 1}, "Professor": {"_count": 1}, "sir": {"_count": 1}, "under": {"_count": 1}, "Kreacher": {"_count": 1}, "weve": {"_count": 1}, "but": {"_count": 1}, "behind": {"_count": 1}}, "Cauldrons": {"_count": 1, "All": {"_count": 1}}, "Several": {"_count": 44, "boys": {"_count": 1}, "fat": {"_count": 1}, "uneventful": {"_count": 1}, "seats": {"_count": 2}, "shot": {"_count": 1}, "people": {"_count": 8}, "large": {"_count": 1}, "of": {"_count": 10}, "sessions": {"_count": 1}, "feet": {"_count": 1}, "caught": {"_count": 1}, "grimy": {"_count": 1}, "sixthyear": {"_count": 1}, "gold": {"_count": 1}, "tons": {"_count": 1}, "bottles": {"_count": 1}, "times": {"_count": 4}, "witches": {"_count": 1}, "silent": {"_count": 1}, "looked": {"_count": 1}, "girls": {"_count": 1}, "onlookers": {"_count": 1}, "other": {"_count": 1}, "years": {"_count": 1}}, "Standing": {"_count": 12, "beside": {"_count": 1}, "on": {"_count": 2}, "in": {"_count": 2}, "over": {"_count": 1}, "at": {"_count": 1}, "ten": {"_count": 1}, "still": {"_count": 1}, "between": {"_count": 1}, "up": {"_count": 1}, "against": {"_count": 1}}, "Like": {"_count": 67, "I": {"_count": 3}, "this": {"_count": 1}, "Hagrid": {"_count": 2}, "everything": {"_count": 1}, "Harry": {"_count": 1}, "last": {"_count": 1}, "why": {"_count": 1}, "what": {"_count": 6}, "a": {"_count": 4}, "nearly": {"_count": 1}, "Id": {"_count": 1}, "trying": {"_count": 1}, "you": {"_count": 5}, "father": {"_count": 1}, "the": {"_count": 7}, "poor": {"_count": 1}, "": {"_count": 1}, "everyone": {"_count": 1}, "my": {"_count": 1}, "that": {"_count": 1}, "Dumbledore": {"_count": 2}, "every": {"_count": 1}, "Hermione": {"_count": 1}, "Fudge": {"_count": 1}, "who": {"_count": 1}, "Sirius": {"_count": 1}, "its": {"_count": 1}, "mother": {"_count": 1}, "those": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "me": {"_count": 1}, "all": {"_count": 1}, "everybody": {"_count": 1}, "Barty": {"_count": 1}, "her": {"_count": 1}, "Voldemort": {"_count": 1}, "MouldontheWold": {"_count": 1}, "it": {"_count": 2}, "Filch": {"_count": 1}, "us": {"_count": 1}, "ell": {"_count": 1}, "Umbridge": {"_count": 1}, "rain": {"_count": 1}}, "Morning": {"_count": 11, "said": {"_count": 2}, "Mum": {"_count": 1}, "all": {"_count": 1}, "Basil": {"_count": 1}, "": {"_count": 1}, "Weasley": {"_count": 1}, "Arthur": {"_count": 1}, "Harry": {"_count": 1}, "Reg": {"_count": 1}, "Albert": {"_count": 1}}, "Griphook": {"_count": 18, "": {"_count": 2}, "held": {"_count": 1}, "whistled": {"_count": 1}, "unlocked": {"_count": 1}, "here": {"_count": 1}, "he": {"_count": 1}, "grunted": {"_count": 1}, "looked": {"_count": 1}, "I": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 2}, "thank": {"_count": 1}, "flushed": {"_count": 1}, "jumped": {"_count": 1}, "how": {"_count": 1}, "handed": {"_count": 1}}, "Cant": {"_count": 50, "tell": {"_count": 1}, "stay": {"_count": 1}, "you": {"_count": 9}, "a": {"_count": 1}, "have": {"_count": 2}, "nothing": {"_count": 1}, "Harry": {"_count": 1}, "anyone": {"_count": 2}, "even": {"_count": 2}, "hear": {"_count": 2}, "hurt": {"_count": 1}, "go": {"_count": 1}, "do": {"_count": 1}, "be": {"_count": 3}, "we": {"_count": 4}, "wait": {"_count": 2}, "get": {"_count": 1}, "houseelves": {"_count": 1}, "steal": {"_count": 1}, "see": {"_count": 2}, "": {"_count": 1}, "forget": {"_count": 1}, "think": {"_count": 1}, "it": {"_count": 2}, "move": {"_count": 1}, "just": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "carry": {"_count": 1}, "thank": {"_count": 1}}, "Dumbledores": {"_count": 40, "trusted": {"_count": 1}, "silver": {"_count": 1}, "eyes": {"_count": 2}, "coming": {"_count": 1}, "anger": {"_count": 1}, "not": {"_count": 2}, "office": {"_count": 2}, "friend": {"_count": 1}, "in": {"_count": 1}, "names": {"_count": 1}, "got": {"_count": 1}, "SecretKeeper": {"_count": 1}, "head": {"_count": 1}, "Army": {"_count": 3}, "spell": {"_count": 1}, "protection": {"_count": 1}, "blue": {"_count": 1}, "man": {"_count": 1}, "fingers": {"_count": 1}, "shown": {"_count": 1}, "told": {"_count": 1}, "worried": {"_count": 1}, "angry": {"_count": 1}, "particularly": {"_count": 1}, "sigh": {"_count": 1}, "future": {"_count": 1}, "innumerable": {"_count": 1}, "triumph": {"_count": 1}, "legions": {"_count": 1}, "mother": {"_count": 1}, "father": {"_count": 1}, "dead": {"_count": 1}, "hands": {"_count": 1}, "betrayal": {"_count": 1}, "favorite": {"_count": 1}}, "Moren": {"_count": 2, "my": {"_count": 1}, "me": {"_count": 1}}, "Harrys": {"_count": 185, "eyes": {"_count": 17}, "mouth": {"_count": 5}, "stomach": {"_count": 14}, "heart": {"_count": 23}, "legs": {"_count": 1}, "broom": {"_count": 2}, "partner": {"_count": 1}, "is": {"_count": 1}, "victory": {"_count": 1}, "seemed": {"_count": 1}, "knees": {"_count": 1}, "parents": {"_count": 1}, "told": {"_count": 1}, "face": {"_count": 1}, "feeling": {"_count": 3}, "whole": {"_count": 1}, "Swelling": {"_count": 1}, "in": {"_count": 1}, "insides": {"_count": 7}, "wand": {"_count": 7}, "dead": {"_count": 1}, "other": {"_count": 2}, "got": {"_count": 2}, "immediate": {"_count": 1}, "supposed": {"_count": 1}, "numb": {"_count": 1}, "jaw": {"_count": 2}, "and": {"_count": 2}, "brain": {"_count": 3}, "mind": {"_count": 2}, "fists": {"_count": 1}, "lamp": {"_count": 1}, "confusion": {"_count": 1}, "hands": {"_count": 2}, "favorite": {"_count": 2}, "loathing": {"_count": 1}, "ears": {"_count": 1}, "head": {"_count": 4}, "nerves": {"_count": 1}, "hand": {"_count": 4}, "trunk": {"_count": 2}, "temporarily": {"_count": 1}, "two": {"_count": 1}, "bewilderment": {"_count": 1}, "arrived": {"_count": 1}, "been": {"_count": 1}, "not": {"_count": 1}, "mood": {"_count": 1}, "third": {"_count": 1}, "detentions": {"_count": 1}, "leader": {"_count": 1}, "temper": {"_count": 1}, "attention": {"_count": 2}, "scar": {"_count": 11}, "sessions": {"_count": 1}, "feet": {"_count": 1}, "mother": {"_count": 1}, "spouted": {"_count": 1}, "arms": {"_count": 2}, "misgivings": {"_count": 1}, "centaur": {"_count": 1}, "lips": {"_count": 1}, "small": {"_count": 1}, "doing": {"_count": 1}, "included": {"_count": 1}, "nose": {"_count": 1}, "thoughts": {"_count": 1}, "presents": {"_count": 1}, "already": {"_count": 1}, "going": {"_count": 1}, "voice": {"_count": 3}, "vinegar": {"_count": 1}, "throat": {"_count": 1}, "scream": {"_count": 1}, "Patronus": {"_count": 1}, "first": {"_count": 1}, "dreams": {"_count": 1}, "all": {"_count": 1}, "was": {"_count": 1}, "Invisibility": {"_count": 1}, "belief": {"_count": 1}, "spirits": {"_count": 1}, "own": {"_count": 1}, "wandlight": {"_count": 1}, "ribs": {"_count": 1}}, "Columns": {"_count": 1, "of": {"_count": 1}}, "Heaps": {"_count": 1, "of": {"_count": 1}}, "Seventeen": {"_count": 3, "silver": {"_count": 1}, "after": {"_count": 1}, "eh": {"_count": 1}}, "Vault": {"_count": 2, "seven": {"_count": 2}}, "Stand": {"_count": 21, "back": {"_count": 9}, "and": {"_count": 1}, "aside": {"_count": 4}, "up": {"_count": 5}, "away": {"_count": 1}, "still": {"_count": 1}}, "Might": {"_count": 5, "as": {"_count": 1}, "I": {"_count": 1}, "make": {"_count": 1}, "be": {"_count": 1}, "see": {"_count": 1}}, "Listen": {"_count": 78, "Harry": {"_count": 5}, "were": {"_count": 1}, "here": {"_count": 1}, "come": {"_count": 1}, "Im": {"_count": 1}, "youve": {"_count": 1}, "": {"_count": 12}, "we": {"_count": 1}, "said": {"_count": 5}, "to": {"_count": 11}, "how": {"_count": 1}, "I": {"_count": 6}, "it": {"_count": 1}, "is": {"_count": 1}, "Hagrid": {"_count": 2}, "its": {"_count": 3}, "have": {"_count": 1}, "Ive": {"_count": 3}, "youre": {"_count": 1}, "if": {"_count": 1}, "youd": {"_count": 1}, "Sirius": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "you": {"_count": 1}, "dont": {"_count": 1}, "can": {"_count": 1}, "Neville": {"_count": 2}, "your": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}, "no": {"_count": 1}, "Potter": {"_count": 1}, "Katie": {"_count": 1}, "Id": {"_count": 1}, "without": {"_count": 1}, "the": {"_count": 1}}, "Madam": {"_count": 72, "Malkin": {"_count": 3}, "Hooch": {"_count": 15}, "Pomfrey": {"_count": 34}, "Pince": {"_count": 3}, "Hoochs": {"_count": 4}, "Marsh": {"_count": 1}, "Rosmerta": {"_count": 4}, "Bones": {"_count": 2}, "Rosmertas": {"_count": 2}, "please": {"_count": 1}, "Lestrange": {"_count": 3}}, "Hello": {"_count": 51, "said": {"_count": 9}, "dear": {"_count": 1}, "Nick": {"_count": 1}, "hello": {"_count": 1}, "Peeves": {"_count": 1}, "Harry": {"_count": 9}, "he": {"_count": 1}, "Percy": {"_count": 1}, "there": {"_count": 3}, "Arnie": {"_count": 1}, "": {"_count": 5}, "Professor": {"_count": 2}, "she": {"_count": 4}, "Winky": {"_count": 1}, "Mr": {"_count": 2}, "Sirius": {"_count": 1}, "Potter": {"_count": 2}, "Fawkes": {"_count": 1}, "Hermione": {"_count": 1}, "Kreacher": {"_count": 1}, "horrible": {"_count": 1}, "again": {"_count": 1}, "Dean": {"_count": 1}}, "Play": {"_count": 3, "Quidditch": {"_count": 1}, "to": {"_count": 1}, "now": {"_count": 1}}, "Know": {"_count": 8, "what": {"_count": 3}, "youre": {"_count": 1}, "who": {"_count": 1}, "only": {"_count": 1}, "I": {"_count": 1}, "how": {"_count": 1}}, "Wizard": {"_count": 3, "sport": {"_count": 1}, "blood": {"_count": 1}, "": {"_count": 1}}, "Better": {"_count": 15, "Hufflepuff": {"_count": 1}, "you": {"_count": 1}, "get": {"_count": 2}, "save": {"_count": 1}, "out": {"_count": 1}, "not": {"_count": 2}, "avoid": {"_count": 1}, "dead": {"_count": 1}, "hurry": {"_count": 1}, "than": {"_count": 1}, "try": {"_count": 1}, "": {"_count": 1}, "go": {"_count": 1}}, "YouKnowWho": {"_count": 5, "was": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}, "acted": {"_count": 1}, "put": {"_count": 1}}, "Vol": {"_count": 1, "sorry": {"_count": 1}}, "Barrels": {"_count": 1, "of": {"_count": 1}}, "Outside": {"_count": 8, "the": {"_count": 3}, "in": {"_count": 2}, "his": {"_count": 1}, "butterflies": {"_count": 1}, "yeah": {"_count": 1}}, "Tell": {"_count": 48, "yeh": {"_count": 2}, "me": {"_count": 17}, "us": {"_count": 5}, "Madam": {"_count": 1}, "them": {"_count": 2}, "him": {"_count": 12}, "you": {"_count": 4}, "Flitwick": {"_count": 1}, "Percy": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "anyone": {"_count": 1}}, "Twenty": {"_count": 5, "minutes": {"_count": 2}, "cauldrons": {"_count": 1}, "yards": {"_count": 1}, "times": {"_count": 1}}, "this": {"_count": 17, "was": {"_count": 2}, "had": {"_count": 1}, "stupid": {"_count": 1}, "World": {"_count": 1}, "is": {"_count": 4}, "does": {"_count": 1}, "might": {"_count": 1}, "miracle": {"_count": 1}, "writing": {"_count": 1}, "way": {"_count": 2}, "little": {"_count": 1}, "time": {"_count": 1}}, "Peeling": {"_count": 1, "gold": {"_count": 1}}, "c": {"_count": 1, "": {"_count": 1}}, "Nice": {"_count": 32, "wand": {"_count": 1}, "and": {"_count": 3}, "to": {"_count": 2}, "big": {"_count": 1}, "loud": {"_count": 1}, "try": {"_count": 2}, "look": {"_count": 1}, "socks": {"_count": 1}, "seeing": {"_count": 1}, "right": {"_count": 1}, "one": {"_count": 5}, "dog": {"_count": 1}, "day": {"_count": 1}, "bloke": {"_count": 1}, "of": {"_count": 2}, "suit": {"_count": 1}, "said": {"_count": 2}, "commentary": {"_count": 1}, "view": {"_count": 1}, "costume": {"_count": 1}, "job": {"_count": 1}, "night": {"_count": 1}}, "Those": {"_count": 36, "silvery": {"_count": 1}, "who": {"_count": 5}, "spiders": {"_count": 1}, "are": {"_count": 3}, "two": {"_count": 3}, "poor": {"_count": 1}, "gathered": {"_count": 1}, "people": {"_count": 1}, "goblins": {"_count": 1}, "holding": {"_count": 1}, "attacks": {"_count": 1}, "treacherous": {"_count": 1}, "peoples": {"_count": 1}, "courtrooms": {"_count": 1}, "in": {"_count": 2}, "of": {"_count": 3}, "Muggle": {"_count": 1}, "ones": {"_count": 1}, "murders": {"_count": 1}, "wishing": {"_count": 1}, "whom": {"_count": 1}, "rumors": {"_count": 1}, "had": {"_count": 1}, "whose": {"_count": 1}, "kinds": {"_count": 1}}, "Eleven": {"_count": 4, "inches": {"_count": 3}, "I": {"_count": 1}}, "Pliable": {"_count": 1, "": {"_count": 1}}, "Thirteenandahalf": {"_count": 1, "inches": {"_count": 1}}, "Yew": {"_count": 2, "": {"_count": 2}}, "Powerful": {"_count": 2, "wand": {"_count": 1}, "enough": {"_count": 1}}, "well": {"_count": 88, "if": {"_count": 3}, "theres": {"_count": 1}, "Ill": {"_count": 1}, "more": {"_count": 1}, "the": {"_count": 1}, "know": {"_count": 1}, "highly": {"_count": 1}, "": {"_count": 32}, "there": {"_count": 1}, "I": {"_count": 10}, "everyone": {"_count": 1}, "some": {"_count": 1}, "unless": {"_count": 1}, "he": {"_count": 1}, "jus": {"_count": 1}, "thanks": {"_count": 1}, "just": {"_count": 1}, "yes": {"_count": 1}, "anyway": {"_count": 1}, "see": {"_count": 1}, "lets": {"_count": 1}, "you": {"_count": 3}, "my": {"_count": 1}, "we": {"_count": 1}, "its": {"_count": 2}, "it": {"_count": 3}, "Harry": {"_count": 2}, "off": {"_count": 1}, "a": {"_count": 1}, "theyre": {"_count": 1}, "Miss": {"_count": 1}, "thas": {"_count": 1}, "do": {"_count": 1}, "as": {"_count": 1}, "Tom": {"_count": 1}, "naturally": {"_count": 1}, "Snape": {"_count": 1}, "youve": {"_count": 1}, "Im": {"_count": 1}, "thats": {"_count": 1}}, "Oak": {"_count": 1, "sixteen": {"_count": 1}}, "Hmmm": {"_count": 5, "said": {"_count": 2}, "": {"_count": 3}}, "Which": {"_count": 35, "is": {"_count": 6}, "way": {"_count": 1}, "was": {"_count": 2}, "one": {"_count": 2}, "means": {"_count": 2}, "student": {"_count": 1}, "goes": {"_count": 1}, "makes": {"_count": 2}, "should": {"_count": 2}, "of": {"_count": 3}, "person": {"_count": 1}, "leaves": {"_count": 2}, "left": {"_count": 1}, "brings": {"_count": 1}, "now": {"_count": 1}, "job": {"_count": 1}, "given": {"_count": 1}, "Horcrux": {"_count": 1}, "leads": {"_count": 1}, "would": {"_count": 1}, "suits": {"_count": 1}, "I": {"_count": 1}}, "Hold": {"_count": 13, "out": {"_count": 2}, "on": {"_count": 4}, "it": {"_count": 2}, "yer": {"_count": 1}, "tight": {"_count": 3}, "your": {"_count": 1}}, "Try": {"_count": 11, "this": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 4}, "as": {"_count": 1}, "us": {"_count": 1}, "not": {"_count": 1}, "Confunding": {"_count": 1}, "for": {"_count": 1}}, "Beechwood": {"_count": 1, "and": {"_count": 1}}, "Nine": {"_count": 4, "inches": {"_count": 1}, "and": {"_count": 1}, "raids": {"_count": 1}, "": {"_count": 1}}, "Maple": {"_count": 1, "and": {"_count": 1}}, "Quite": {"_count": 21, "whippy": {"_count": 1}, "apart": {"_count": 2}, "excellent": {"_count": 1}, "a": {"_count": 4}, "old": {"_count": 1}, "the": {"_count": 1}, "astonishing": {"_count": 1}, "correct": {"_count": 2}, "suddenly": {"_count": 1}, "said": {"_count": 1}, "right": {"_count": 3}, "gaga": {"_count": 1}, "ill": {"_count": 1}, "sure": {"_count": 1}}, "Tricky": {"_count": 4, "customer": {"_count": 1}, "shot": {"_count": 1}, "conditions": {"_count": 1}, "but": {"_count": 1}}, "how": {"_count": 24, "curious": {"_count": 1}, "very": {"_count": 1}, "about": {"_count": 1}, "long": {"_count": 3}, "many": {"_count": 1}, "much": {"_count": 1}, "would": {"_count": 1}, "she": {"_count": 2}, "did": {"_count": 4}, "you": {"_count": 3}, "do": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "can": {"_count": 1}, "they": {"_count": 1}}, "curious": {"_count": 1, "Sorry": {"_count": 1}}, "Curious": {"_count": 4, "indeed": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 2}}, "Everything": {"_count": 25, "looked": {"_count": 1}, "we": {"_count": 1}, "Harry": {"_count": 2}, "around": {"_count": 2}, "was": {"_count": 7}, "seemed": {"_count": 3}, "dark": {"_count": 1}, "went": {"_count": 2}, "suddenly": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "inside": {"_count": 1}, "you": {"_count": 1}}, "Yehve": {"_count": 7, "been": {"_count": 1}, "done": {"_count": 2}, "got": {"_count": 2}, "heard": {"_count": 1}, "met": {"_count": 1}}, "First": {"_count": 29, "o": {"_count": 1}, "time": {"_count": 2}, "years": {"_count": 4}, "to": {"_count": 2}, "meeting": {"_count": 1}, "of": {"_count": 4}, "Professor": {"_count": 1}, "things": {"_count": 1}, "Hogsmeade": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}, "Class": {"_count": 1}, "pus": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "night": {"_count": 1}, "sign": {"_count": 1}, "came": {"_count": 1}, "Fred": {"_count": 1}, "person": {"_count": 1}}, "Any": {"_count": 23, "problems": {"_count": 1}, "second": {"_count": 3}, "ideas": {"_count": 1}, "chance": {"_count": 1}, "disturbance": {"_count": 1}, "sign": {"_count": 1}, "moment": {"_count": 3}, "news": {"_count": 1}, "others": {"_count": 1}, "more": {"_count": 2}, "student": {"_count": 1}, "of": {"_count": 2}, "questions": {"_count": 2}, "sound": {"_count": 2}, "Dark": {"_count": 1}}, "Thank": {"_count": 70, "you": {"_count": 61}, "goodness": {"_count": 4}, "heavens": {"_count": 1}, "God": {"_count": 4}}, "Funny": {"_count": 13, "way": {"_count": 1}, "really": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}, "place": {"_count": 1}, "he": {"_count": 1}, "how": {"_count": 2}, "I": {"_count": 1}, "said": {"_count": 1}, "ow": {"_count": 1}, "thing": {"_count": 1}}, "Magic": {"_count": 3, "carpets": {"_count": 1}, "": {"_count": 1}, "always": {"_count": 1}}, "Platform": {"_count": 2, "what": {"_count": 1}, "nine": {"_count": 1}}, "Barking": {"_count": 2, "said": {"_count": 1}, "mad": {"_count": 1}}, "Two": {"_count": 62, "hours": {"_count": 1}, "enormous": {"_count": 2}, "seconds": {"_count": 3}, "shab": {"_count": 1}, "of": {"_count": 7}, "solitary": {"_count": 1}, "large": {"_count": 3}, "pieces": {"_count": 1}, "members": {"_count": 1}, "years": {"_count": 3}, "weeks": {"_count": 1}, "days": {"_count": 2}, "oclock": {"_count": 1}, "whole": {"_count": 1}, "hundred": {"_count": 1}, "penalties": {"_count": 1}, "black": {"_count": 1}, "Hogwarts": {"_count": 1}, "desks": {"_count": 1}, "things": {"_count": 1}, "figures": {"_count": 4}, "fourthyear": {"_count": 1}, "stone": {"_count": 1}, "onto": {"_count": 1}, "beds": {"_count": 1}, "Galleons": {"_count": 1}, "coffees": {"_count": 1}, "Hes": {"_count": 1}, "floors": {"_count": 1}, "tablespoonfuls": {"_count": 1}, "perfect": {"_count": 1}, "doors": {"_count": 1}, "pink": {"_count": 1}, "houseelves": {"_count": 1}, "or": {"_count": 1}, "young": {"_count": 1}, "dementors": {"_count": 1}, "aged": {"_count": 1}, "objects": {"_count": 1}, "goblins": {"_count": 1}, "bodies": {"_count": 1}, "girls": {"_count": 1}, "children": {"_count": 1}, "giants": {"_count": 1}, "clever": {"_count": 1}}, "Getting": {"_count": 10, "desperate": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 2}, "his": {"_count": 1}, "as": {"_count": 1}, "mail": {"_count": 1}, "through": {"_count": 1}}, "According": {"_count": 14, "to": {"_count": 14}}, "packed": {"_count": 1, "with": {"_count": 1}}, "Each": {"_count": 17, "of": {"_count": 8}, "House": {"_count": 1}, "was": {"_count": 3}, "individually": {"_count": 1}, "one": {"_count": 1}, "breath": {"_count": 1}, "wore": {"_count": 1}, "picture": {"_count": 1}}, "Heart": {"_count": 3, "hammering": {"_count": 1}, "sinking": {"_count": 1}, "beating": {"_count": 1}}, "Fred": {"_count": 126, "you": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 73}, "said": {"_count": 2}, "was": {"_count": 2}, "climbed": {"_count": 1}, "twiddled": {"_count": 1}, "brought": {"_count": 1}, "had": {"_count": 1}, "Weasley": {"_count": 1}, "George": {"_count": 17}, "dropped": {"_count": 1}, "grabbed": {"_count": 1}, "pulled": {"_count": 2}, "scrambled": {"_count": 1}, "walked": {"_count": 1}, "grinned": {"_count": 2}, "laughed": {"_count": 1}, "winked": {"_count": 1}, "hesitated": {"_count": 1}, "heaved": {"_count": 1}, "gave": {"_count": 1}, "what": {"_count": 1}, "rolled": {"_count": 1}, "shrugged": {"_count": 1}, "reached": {"_count": 1}, "fell": {"_count": 2}, "raised": {"_count": 1}, "looked": {"_count": 3}, "reckons": {"_count": 1}}, "Honestly": {"_count": 12, "woman": {"_count": 1}, "Hermione": {"_count": 1}, "were": {"_count": 1}, "if": {"_count": 3}, "Im": {"_count": 1}, "am": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "Excuse": {"_count": 18, "me": {"_count": 18}}, "Smoke": {"_count": 2, "from": {"_count": 1}, "kept": {"_count": 1}}, "Oy": {"_count": 6, "Fred": {"_count": 1}, "you": {"_count": 2}, "peabrain": {"_count": 1}, "": {"_count": 2}}, "Thanks": {"_count": 75, "said": {"_count": 19}, "Seamus": {"_count": 1}, "Harry": {"_count": 3}, "for": {"_count": 9}, "Nick": {"_count": 1}, "very": {"_count": 4}, "": {"_count": 6}, "Basil": {"_count": 1}, "Hedwig": {"_count": 1}, "a": {"_count": 9}, "she": {"_count": 1}, "Lee": {"_count": 1}, "he": {"_count": 4}, "snarled": {"_count": 1}, "Dobby": {"_count": 1}, "Molly": {"_count": 1}, "Bill": {"_count": 1}, "Ginny": {"_count": 1}, "to": {"_count": 3}, "Jimmy": {"_count": 1}, "Kreacher": {"_count": 1}, "D": {"_count": 1}, "River": {"_count": 2}, "muttered": {"_count": 1}, "Neville": {"_count": 1}}, "Arent": {"_count": 13, "you": {"_count": 8}, "arent": {"_count": 3}, "we": {"_count": 2}}, "Ron": {"_count": 670, "youve": {"_count": 1}, "stared": {"_count": 10}, "reached": {"_count": 1}, "had": {"_count": 24}, "was": {"_count": 67}, "picked": {"_count": 1}, "looked": {"_count": 48}, "gave": {"_count": 19}, "groaned": {"_count": 3}, "couldnt": {"_count": 3}, "however": {"_count": 9}, "at": {"_count": 1}, "bit": {"_count": 1}, "pointed": {"_count": 3}, "dropped": {"_count": 3}, "and": {"_count": 80}, "grabbed": {"_count": 1}, "turned": {"_count": 6}, "dived": {"_count": 2}, "also": {"_count": 1}, "knew": {"_count": 1}, "gasped": {"_count": 2}, "full": {"_count": 1}, "grunted": {"_count": 1}, "though": {"_count": 1}, "snapped": {"_count": 1}, "": {"_count": 19}, "wanted": {"_count": 1}, "appeared": {"_count": 2}, "gritted": {"_count": 1}, "went": {"_count": 7}, "you": {"_count": 3}, "started": {"_count": 3}, "Weasley": {"_count": 2}, "how": {"_count": 2}, "Fred": {"_count": 1}, "held": {"_count": 1}, "gazed": {"_count": 1}, "told": {"_count": 2}, "ran": {"_count": 1}, "pressed": {"_count": 3}, "unlocked": {"_count": 1}, "put": {"_count": 1}, "let": {"_count": 3}, "launched": {"_count": 1}, "got": {"_count": 5}, "grinned": {"_count": 2}, "gaped": {"_count": 3}, "opened": {"_count": 4}, "snorted": {"_count": 5}, "gulped": {"_count": 1}, "wasnt": {"_count": 3}, "who": {"_count": 10}, "blushed": {"_count": 1}, "grinning": {"_count": 1}, "didnt": {"_count": 5}, "tried": {"_count": 1}, "fell": {"_count": 4}, "he": {"_count": 3}, "that": {"_count": 2}, "its": {"_count": 2}, "suddenly": {"_count": 1}, "shook": {"_count": 2}, "cast": {"_count": 1}, "obviously": {"_count": 2}, "says": {"_count": 2}, "doesnt": {"_count": 1}, "lifted": {"_count": 1}, "muttered": {"_count": 2}, "stuffed": {"_count": 3}, "scowled": {"_count": 4}, "hissed": {"_count": 1}, "checked": {"_count": 1}, "peered": {"_count": 1}, "still": {"_count": 3}, "cheer": {"_count": 1}, "spooned": {"_count": 1}, "frowned": {"_count": 2}, "seized": {"_count": 3}, "shoved": {"_count": 1}, "repeated": {"_count": 2}, "dont": {"_count": 2}, "called": {"_count": 1}, "halfheartedly": {"_count": 1}, "caught": {"_count": 2}, "nearly": {"_count": 1}, "came": {"_count": 5}, "kicked": {"_count": 2}, "knocked": {"_count": 1}, "ripped": {"_count": 1}, "what": {"_count": 3}, "threw": {"_count": 3}, "an": {"_count": 1}, "pulled": {"_count": 4}, "looking": {"_count": 1}, "Im": {"_count": 1}, "did": {"_count": 8}, "grimaced": {"_count": 1}, "stopped": {"_count": 4}, "Hermione": {"_count": 12}, "come": {"_count": 1}, "are": {"_count": 1}, "crawled": {"_count": 1}, "made": {"_count": 3}, "edged": {"_count": 1}, "clutched": {"_count": 1}, "give": {"_count": 1}, "hesitated": {"_count": 3}, "going": {"_count": 1}, "I": {"_count": 2}, "unsteady": {"_count": 1}, "ignored": {"_count": 3}, "noticing": {"_count": 1}, "rolled": {"_count": 2}, "meanwhile": {"_count": 2}, "where": {"_count": 2}, "Harry": {"_count": 3}, "YouKnowWho": {"_count": 1}, "simply": {"_count": 1}, "said": {"_count": 5}, "undid": {"_count": 1}, "snarled": {"_count": 1}, "hastily": {"_count": 2}, "glanced": {"_count": 5}, "the": {"_count": 1}, "led": {"_count": 2}, "now": {"_count": 1}, "took": {"_count": 3}, "examined": {"_count": 1}, "shrugged": {"_count": 1}, "watched": {"_count": 2}, "lay": {"_count": 2}, "raised": {"_count": 4}, "hadnt": {"_count": 1}, "would": {"_count": 1}, "drew": {"_count": 1}, "snatched": {"_count": 1}, "hovered": {"_count": 1}, "seemed": {"_count": 6}, "can": {"_count": 2}, "goggled": {"_count": 1}, "Dean": {"_count": 1}, "struggled": {"_count": 2}, "quite": {"_count": 1}, "floated": {"_count": 1}, "nudged": {"_count": 1}, "speared": {"_count": 1}, "laughed": {"_count": 3}, "Ill": {"_count": 1}, "youre": {"_count": 4}, "must": {"_count": 1}, "were": {"_count": 2}, "glared": {"_count": 2}, "emerged": {"_count": 1}, "rose": {"_count": 1}, "waited": {"_count": 2}, "blinked": {"_count": 2}, "mounted": {"_count": 1}, "unrolled": {"_count": 1}, "chortled": {"_count": 1}, "nodded": {"_count": 3}, "do": {"_count": 1}, "she": {"_count": 1}, "continued": {"_count": 1}, "hurried": {"_count": 2}, "sniggered": {"_count": 3}, "kept": {"_count": 3}, "sat": {"_count": 4}, "rapped": {"_count": 1}, "think": {"_count": 1}, "departed": {"_count": 1}, "hastened": {"_count": 1}, "could": {"_count": 1}, "smoothed": {"_count": 1}, "assured": {"_count": 1}, "strode": {"_count": 1}, "froze": {"_count": 1}, "landed": {"_count": 1}, "Ginny": {"_count": 1}, "choked": {"_count": 1}, "thought": {"_count": 2}, "gagged": {"_count": 1}, "saved": {"_count": 1}, "noticed": {"_count": 1}, "merely": {"_count": 1}, "bent": {"_count": 1}, "whose": {"_count": 1}, "reckons": {"_count": 1}, "burst": {"_count": 1}, "twitched": {"_count": 1}, "awoke": {"_count": 1}, "tripped": {"_count": 1}, "show": {"_count": 1}, "marched": {"_count": 1}, "But": {"_count": 1}, "obliged": {"_count": 1}, "hurry": {"_count": 1}, "a": {"_count": 1}, "crossed": {"_count": 1}, "too": {"_count": 1}, "as": {"_count": 1}, "jabbed": {"_count": 1}, "yawned": {"_count": 1}, "wrenched": {"_count": 1}, "we": {"_count": 1}, "no": {"_count": 1}, "swallowed": {"_count": 1}, "stab": {"_count": 1}, "yelled": {"_count": 1}, "passed": {"_count": 2}, "responded": {"_count": 1}, "scratched": {"_count": 1}, "ceased": {"_count": 1}, "vanished": {"_count": 1}, "spent": {"_count": 1}, "please": {"_count": 1}, "clicked": {"_count": 1}, "catch": {"_count": 1}, "hed": {"_count": 1}, "stood": {"_count": 1}, "sloped": {"_count": 1}, "leapt": {"_count": 1}, "followed": {"_count": 1}, "joined": {"_count": 1}, "Lily": {"_count": 1}, "for": {"_count": 1}}, "Mom": {"_count": 4, "geroff": {"_count": 1}, "and": {"_count": 1}, "didnt": {"_count": 1}, "": {"_count": 1}}, "aah": {"_count": 11, "has": {"_count": 1}, "": {"_count": 5}, "ats": {"_count": 1}, "I": {"_count": 1}, "yes": {"_count": 1}, "don": {"_count": 1}, "George": {"_count": 1}}, "Shut": {"_count": 24, "up": {"_count": 18}, "it": {"_count": 4}, "your": {"_count": 1}, "the": {"_count": 1}}, "Hang": {"_count": 28, "on": {"_count": 27}, "around": {"_count": 1}}, "Because": {"_count": 59, "hes": {"_count": 3}, "theyre": {"_count": 1}, "because": {"_count": 1}, "a": {"_count": 1}, "Filch": {"_count": 1}, "whatever": {"_count": 1}, "if": {"_count": 3}, "Harry": {"_count": 3}, "my": {"_count": 1}, "you": {"_count": 3}, "Black": {"_count": 1}, "Blacks": {"_count": 1}, "I": {"_count": 6}, "her": {"_count": 1}, "the": {"_count": 4}, "": {"_count": 2}, "he": {"_count": 2}, "of": {"_count": 2}, "they": {"_count": 3}, "we": {"_count": 2}, "oh": {"_count": 1}, "it": {"_count": 2}, "youll": {"_count": 1}, "shell": {"_count": 1}, "said": {"_count": 2}, "she": {"_count": 1}, "Cho": {"_count": 1}, "no": {"_count": 1}, "youve": {"_count": 1}, "Griselda": {"_count": 1}, "were": {"_count": 1}, "its": {"_count": 1}, "hell": {"_count": 1}, "youre": {"_count": 1}, "Snitches": {"_count": 1}}, "Hey": {"_count": 38, "Mom": {"_count": 1}, "Ron": {"_count": 2}, "Potter": {"_count": 4}, "Harry": {"_count": 10}, "thats": {"_count": 2}, "guess": {"_count": 1}, "Winky": {"_count": 1}, "Hermione": {"_count": 1}, "Big": {"_count": 1}, "hey": {"_count": 2}, "I": {"_count": 1}, "has": {"_count": 1}, "": {"_count": 4}, "she": {"_count": 1}, "Professor": {"_count": 1}, "did": {"_count": 1}, "you": {"_count": 1}, "its": {"_count": 1}, "whats": {"_count": 1}, "wait": {"_count": 1}}, "Youve": {"_count": 110, "already": {"_count": 3}, "met": {"_count": 2}, "got": {"_count": 50}, "had": {"_count": 5}, "forgotten": {"_count": 1}, "just": {"_count": 5}, "been": {"_count": 13}, "read": {"_count": 1}, "used": {"_count": 1}, "caught": {"_count": 1}, "lost": {"_count": 1}, "done": {"_count": 3}, "seen": {"_count": 2}, "only": {"_count": 1}, "gone": {"_count": 1}, "dropped": {"_count": 1}, "picked": {"_count": 1}, "given": {"_count": 2}, "never": {"_count": 3}, "found": {"_count": 3}, "dreamed": {"_count": 1}, "told": {"_count": 1}, "ddone": {"_count": 1}, "made": {"_count": 1}, "still": {"_count": 1}, "really": {"_count": 1}, "sort": {"_count": 1}, "saved": {"_count": 1}, "chosen": {"_count": 1}, "missed": {"_count": 1}}, "Saw": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 1}, "your": {"_count": 1}}, "Georg": {"_count": 1, "e": {"_count": 1}}, "Houses": {"_count": 1, "flashed": {"_count": 1}}, "Anyone": {"_count": 19, "sitting": {"_count": 1}, "interested": {"_count": 1}, "messing": {"_count": 1}, "can": {"_count": 3}, "who": {"_count": 4}, "": {"_count": 1}, "else": {"_count": 2}, "put": {"_count": 1}, "elses": {"_count": 1}, "tell": {"_count": 1}, "we": {"_count": 2}, "still": {"_count": 1}}, "Everywhere": {"_count": 5, "else": {"_count": 1}, "Harry": {"_count": 2}, "s": {"_count": 1}, "he": {"_count": 1}}, "Bye": {"_count": 12, "said": {"_count": 3}, "Ron": {"_count": 1}, "then": {"_count": 1}, "Harry": {"_count": 2}, "Neville": {"_count": 1}, "": {"_count": 1}, "bye": {"_count": 1}, "Dud": {"_count": 1}, "Al": {"_count": 1}}, "Wow": {"_count": 16, "said": {"_count": 3}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "hope": {"_count": 1}, "look": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 3}, "scary": {"_count": 1}, "you": {"_count": 1}, "thats": {"_count": 1}, "he": {"_count": 1}}, "Wish": {"_count": 17, "Id": {"_count": 2}, "McGonagall": {"_count": 1}, "they": {"_count": 1}, "I": {"_count": 5}, "we": {"_count": 2}, "Dobby": {"_count": 1}, "shed": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "Dad": {"_count": 1}}, "Bill": {"_count": 38, "and": {"_count": 10}, "got": {"_count": 2}, "was": {"_count": 3}, "says": {"_count": 1}, "came": {"_count": 1}, "had": {"_count": 3}, "Charlie": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 1}, "doesnt": {"_count": 1}, "took": {"_count": 1}, "didnt": {"_count": 1}, "just": {"_count": 1}, "is": {"_count": 1}, "told": {"_count": 3}, "who": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 1}, "walked": {"_count": 1}, "raised": {"_count": 1}, "reappeared": {"_count": 1}, "hesitated": {"_count": 1}}, "Percy": {"_count": 64, "got": {"_count": 1}, "the": {"_count": 1}, "directed": {"_count": 1}, "": {"_count": 3}, "nearly": {"_count": 1}, "could": {"_count": 1}, "muttered": {"_count": 1}, "first": {"_count": 1}, "strode": {"_count": 1}, "was": {"_count": 5}, "who": {"_count": 4}, "looked": {"_count": 4}, "said": {"_count": 2}, "Weasley": {"_count": 3}, "sat": {"_count": 1}, "didnt": {"_count": 2}, "wasnt": {"_count": 1}, "however": {"_count": 1}, "scowled": {"_count": 1}, "and": {"_count": 3}, "had": {"_count": 3}, "left": {"_count": 1}, "went": {"_count": 1}, "slammed": {"_count": 1}, "gets": {"_count": 1}, "cleared": {"_count": 1}, "only": {"_count": 1}, "hurried": {"_count": 1}, "threw": {"_count": 1}, "very": {"_count": 1}, "jumped": {"_count": 1}, "wouldnt": {"_count": 1}, "frowned": {"_count": 1}, "seized": {"_count": 1}, "loves": {"_count": 1}, "would": {"_count": 1}, "wontve": {"_count": 1}, "came": {"_count": 1}, "takes": {"_count": 1}, "sent": {"_count": 1}, "definitely": {"_count": 1}, "swallowed": {"_count": 1}, "you": {"_count": 1}, "realizing": {"_count": 1}}, "Rons": {"_count": 54, "ears": {"_count": 6}, "eyes": {"_count": 3}, "were": {"_count": 1}, "set": {"_count": 1}, "nerves": {"_count": 1}, "school": {"_count": 1}, "magic": {"_count": 1}, "knuckles": {"_count": 1}, "door": {"_count": 1}, "or": {"_count": 1}, "jaw": {"_count": 1}, "greatest": {"_count": 1}, "mouth": {"_count": 2}, "pocket": {"_count": 1}, "ragged": {"_count": 1}, "kept": {"_count": 1}, "holding": {"_count": 1}, "face": {"_count": 2}, "red": {"_count": 1}, "old": {"_count": 1}, "and": {"_count": 1}, "bad": {"_count": 1}, "eyebrows": {"_count": 1}, "was": {"_count": 2}, "brother": {"_count": 1}, "done": {"_count": 1}, "body": {"_count": 1}, "making": {"_count": 1}, "smile": {"_count": 1}, "just": {"_count": 1}, "grew": {"_count": 1}, "carefully": {"_count": 1}, "lip": {"_count": 1}, "younger": {"_count": 1}, "Keeper": {"_count": 1}, "sister": {"_count": 1}, "voice": {"_count": 1}, "dad": {"_count": 1}, "fist": {"_count": 1}, "prediction": {"_count": 1}, "gone": {"_count": 1}, "stillpale": {"_count": 1}, "legs": {"_count": 1}, "hair": {"_count": 1}}, "Around": {"_count": 6, "half": {"_count": 1}, "the": {"_count": 1}, "three": {"_count": 1}, "fifty": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}}, "Hungry": {"_count": 1, "are": {"_count": 1}}, "Swap": {"_count": 1, "you": {"_count": 1}}, "Underneath": {"_count": 5, "the": {"_count": 3}, "was": {"_count": 1}, "this": {"_count": 1}}, "Can": {"_count": 68, "I": {"_count": 15}, "we": {"_count": 7}, "you": {"_count": 38}, "believe": {"_count": 1}, "can": {"_count": 1}, "your": {"_count": 1}, "Dobby": {"_count": 1}, "Harry": {"_count": 1}, "remember": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 1}}, "do": {"_count": 9, "you": {"_count": 5}, "any": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}, "ghouls": {"_count": 1}}, "Help": {"_count": 17, "yourself": {"_count": 2}, "will": {"_count": 2}, "me": {"_count": 9}, "": {"_count": 2}, "he": {"_count": 1}, "us": {"_count": 1}}, "Weird": {"_count": 6, "": {"_count": 1}, "he": {"_count": 2}, "things": {"_count": 1}, "place": {"_count": 1}, "not": {"_count": 1}}, "George": {"_count": 28, "reckons": {"_count": 1}, "handed": {"_count": 1}, "groaned": {"_count": 1}, "looked": {"_count": 2}, "Weasley": {"_count": 3}, "closed": {"_count": 1}, "caused": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 1}, "however": {"_count": 1}, "carried": {"_count": 1}, "turned": {"_count": 1}, "laughed": {"_count": 1}, "sighed": {"_count": 1}, "did": {"_count": 1}, "made": {"_count": 1}, "Lee": {"_count": 1}, "yawned": {"_count": 1}, "said": {"_count": 1}, "swept": {"_count": 1}, "was": {"_count": 2}}, "Bleaargh": {"_count": 1, "see": {"_count": 1}}, "Mind": {"_count": 16, "you": {"_count": 11}, "the": {"_count": 1}, "works": {"_count": 1}, "yer": {"_count": 1}, "your": {"_count": 1}, "whos": {"_count": 1}}, "Unicorn": {"_count": 2, "hairs": {"_count": 1}, "blood": {"_count": 1}}, "Has": {"_count": 15, "anyone": {"_count": 3}, "Neville": {"_count": 1}, "it": {"_count": 4}, "your": {"_count": 1}, "Ron": {"_count": 1}, "someone": {"_count": 1}, "an": {"_count": 1}, "he": {"_count": 3}}, "Sunshine": {"_count": 2, "daisies": {"_count": 1}, "was": {"_count": 1}}, "Scabbers": {"_count": 14, "stayed": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 2}, "": {"_count": 2}, "what": {"_count": 1}, "looked": {"_count": 1}, "its": {"_count": 1}, "keep": {"_count": 1}, "emerged": {"_count": 1}, "cant": {"_count": 1}, "had": {"_count": 1}, "began": {"_count": 1}}, "Am": {"_count": 4, "I": {"_count": 4}}, "Goodness": {"_count": 5, "didnt": {"_count": 1}, "": {"_count": 1}, "knows": {"_count": 1}, "said": {"_count": 1}, "only": {"_count": 1}}, "Whatever": {"_count": 15, "House": {"_count": 1}, "said": {"_count": 1}, "happened": {"_count": 1}, "you": {"_count": 2}, "Mrs": {"_count": 1}, "it": {"_count": 1}, "Snape": {"_count": 1}, "yeh": {"_count": 1}, "Dumbledore": {"_count": 2}, "the": {"_count": 2}, "Morfin": {"_count": 1}, "was": {"_count": 1}}, "Stupid": {"_count": 6, "spell": {"_count": 1}, "useless": {"_count": 1}, "thing": {"_count": 1}, "git": {"_count": 1}, "idiot": {"_count": 1}, "idea": {"_count": 1}}, "Gryffindor": {"_count": 14, "said": {"_count": 1}, "in": {"_count": 1}, "will": {"_count": 1}, "cheers": {"_count": 1}, "has": {"_count": 1}, "versus": {"_count": 1}, "hasnt": {"_count": 1}, "were": {"_count": 1}, "leads": {"_count": 1}, "hadnt": {"_count": 1}, "penalty": {"_count": 1}, "House": {"_count": 1}, "Tower": {"_count": 1}, "and": {"_count": 1}}, "Gloom": {"_count": 1, "seemed": {"_count": 1}}, "Charlies": {"_count": 4, "in": {"_count": 2}, "friends": {"_count": 1}, "head": {"_count": 1}}, "Both": {"_count": 56, "of": {"_count": 15}, "Harry": {"_count": 4}, "trolleys": {"_count": 1}, "he": {"_count": 3}, "Neville": {"_count": 1}, "glasses": {"_count": 1}, "halfbloods": {"_count": 1}, "Ron": {"_count": 6}, "very": {"_count": 1}, "raised": {"_count": 2}, "Black": {"_count": 1}, "had": {"_count": 2}, "were": {"_count": 2}, "left": {"_count": 1}, "Cedric": {"_count": 1}, "she": {"_count": 1}, "come": {"_count": 1}, "Harrys": {"_count": 1}, "turned": {"_count": 1}, "the": {"_count": 1}, "outsiders": {"_count": 1}, "adults": {"_count": 1}, "slid": {"_count": 1}, "scrambled": {"_count": 1}, "fell": {"_count": 1}, "Aunt": {"_count": 1}, "Slughorn": {"_count": 1}, "parents": {"_count": 1}, "Patil": {"_count": 1}}, "Draco": {"_count": 38, "Malfoy": {"_count": 19}, "paused": {"_count": 1}, "turned": {"_count": 1}, "was": {"_count": 1}, "who": {"_count": 1}, "shot": {"_count": 1}, "fetch": {"_count": 2}, "should": {"_count": 1}, "Draco": {"_count": 1}, "shook": {"_count": 1}, "fell": {"_count": 1}, "come": {"_count": 2}, "if": {"_count": 1}, "move": {"_count": 1}, "no": {"_count": 1}, "pick": {"_count": 1}, "blames": {"_count": 1}, "caught": {"_count": 1}}, "Think": {"_count": 28, "my": {"_count": 1}, "he": {"_count": 2}, "about": {"_count": 3}, "": {"_count": 5}, "itll": {"_count": 1}, "wed": {"_count": 1}, "that": {"_count": 1}, "now": {"_count": 2}, "its": {"_count": 1}, "I": {"_count": 2}, "how": {"_count": 2}, "youre": {"_count": 1}, "of": {"_count": 1}, "your": {"_count": 1}, "have": {"_count": 1}, "what": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 1}}, "Unless": {"_count": 14, "youre": {"_count": 1}, "you": {"_count": 3}, "youd": {"_count": 1}, "Im": {"_count": 1}, "": {"_count": 1}, "Crouch": {"_count": 1}, "anyone": {"_count": 1}, "he": {"_count": 2}, "Potter": {"_count": 1}, "Oh": {"_count": 1}, "said": {"_count": 1}}, "Say": {"_count": 13, "that": {"_count": 2}, "\u2018please": {"_count": 1}, "youre": {"_count": 1}, "it": {"_count": 3}, "something": {"_count": 1}, "hello": {"_count": 2}, "no": {"_count": 1}, "goodbye": {"_count": 1}, "the": {"_count": 1}}, "Goyle": {"_count": 6, "reached": {"_count": 1}, "stared": {"_count": 1}, "hopped": {"_count": 1}, "bellowed": {"_count": 1}, "emptied": {"_count": 1}, "threw": {"_count": 1}}, "Said": {"_count": 15, "theyd": {"_count": 1}, "he": {"_count": 3}, "she": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}, "Slytherin": {"_count": 1}, "Ravenclaw": {"_count": 1}, "Gryffindor": {"_count": 1}, "it": {"_count": 1}, "hed": {"_count": 1}, "Mrs": {"_count": 1}, "Fred": {"_count": 1}, "you": {"_count": 1}}, "Cmon": {"_count": 44, "follow": {"_count": 1}, "lets": {"_count": 3}, "we": {"_count": 1}, "": {"_count": 11}, "now": {"_count": 3}, "Fang": {"_count": 1}, "he": {"_count": 2}, "Ginny": {"_count": 2}, "Harry": {"_count": 6}, "Malfoy": {"_count": 1}, "Ron": {"_count": 2}, "said": {"_count": 4}, "quick": {"_count": 1}, "then": {"_count": 1}, "move": {"_count": 1}, "Im": {"_count": 1}, "George": {"_count": 1}, "everyone": {"_count": 1}, "growled": {"_count": 1}}, "Neville": {"_count": 112, "the": {"_count": 1}, "had": {"_count": 8}, "was": {"_count": 12}, "his": {"_count": 1}, "suddenly": {"_count": 1}, "indeed": {"_count": 1}, "you": {"_count": 2}, "went": {"_count": 2}, "hesitated": {"_count": 1}, "kept": {"_count": 1}, "clutched": {"_count": 1}, "thought": {"_count": 1}, "appeared": {"_count": 1}, "stared": {"_count": 1}, "she": {"_count": 1}, "Longbottom": {"_count": 7}, "stuffed": {"_count": 1}, "": {"_count": 5}, "gulped": {"_count": 1}, "ran": {"_count": 2}, "regularly": {"_count": 1}, "gave": {"_count": 1}, "looked": {"_count": 10}, "I": {"_count": 1}, "were": {"_count": 2}, "backed": {"_count": 1}, "didnt": {"_count": 1}, "took": {"_count": 2}, "listened": {"_count": 1}, "nodded": {"_count": 2}, "what": {"_count": 1}, "performed": {"_count": 1}, "and": {"_count": 5}, "chuckled": {"_count": 1}, "held": {"_count": 2}, "whose": {"_count": 1}, "followed": {"_count": 1}, "who": {"_count": 2}, "made": {"_count": 1}, "no": {"_count": 2}, "said": {"_count": 1}, "snuffled": {"_count": 1}, "speaks": {"_count": 1}, "did": {"_count": 2}, "put": {"_count": 1}, "left": {"_count": 1}, "jumped": {"_count": 1}, "overturned": {"_count": 1}, "groped": {"_count": 1}, "kicked": {"_count": 1}, "catch": {"_count": 1}, "bumped": {"_count": 1}, "hung": {"_count": 1}, "turned": {"_count": 1}, "are": {"_count": 1}, "laughed": {"_count": 1}, "shrugged": {"_count": 1}, "shes": {"_count": 1}, "pushed": {"_count": 1}, "leaned": {"_count": 1}, "here": {"_count": 1}}, "Yehll": {"_count": 4, "get": {"_count": 1}, "do": {"_count": 2}, "be": {"_count": 1}}, "Heads": {"_count": 3, "down": {"_count": 1}, "turned": {"_count": 2}}, "Trevor": {"_count": 1, "": {"_count": 1}}, "7": {"_count": 8, "THE": {"_count": 4}, "MUDBLOODS": {"_count": 1}, "BAGMAN": {"_count": 1}, "": {"_count": 1}, "welcome": {"_count": 1}}, "Pearlywhite": {"_count": 1, "and": {"_count": 1}}, "New": {"_count": 7, "students": {"_count": 1}, "teacher": {"_count": 2}, "thirdyear": {"_count": 1}, "Head": {"_count": 1}, "pictures": {"_count": 1}, "Years": {"_count": 1}}, "Move": {"_count": 9, "along": {"_count": 3}, "come": {"_count": 1}, "me": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}, "said": {"_count": 1}}, "Feeling": {"_count": 22, "oddly": {"_count": 1}, "jumpy": {"_count": 1}, "dazed": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}, "slightly": {"_count": 2}, "considerably": {"_count": 1}, "up": {"_count": 1}, "too": {"_count": 1}, "all": {"_count": 2}, "Mrs": {"_count": 1}, "rather": {"_count": 3}, "immensely": {"_count": 1}, "cheerful": {"_count": 1}, "both": {"_count": 1}, "disappointed": {"_count": 1}, "nervous": {"_count": 1}, "exceptionally": {"_count": 1}}, "These": {"_count": 31, "tables": {"_count": 1}, "two": {"_count": 1}, "were": {"_count": 4}, "fantastic": {"_count": 1}, "birds": {"_count": 1}, "days": {"_count": 2}, "words": {"_count": 5}, "disappearances": {"_count": 1}, "differences": {"_count": 1}, "are": {"_count": 6}, "plantes": {"_count": 1}, "will": {"_count": 1}, "measures": {"_count": 1}, "pictures": {"_count": 1}, "accidents": {"_count": 1}, "frequent": {"_count": 1}, "connections": {"_count": 1}, "have": {"_count": 1}}, "Dotted": {"_count": 1, "here": {"_count": 1}}, "Mainly": {"_count": 1, "to": {"_count": 1}}, "Abbott": {"_count": 1, "Hannah": {"_count": 1}}, "Bones": {"_count": 1, "Susan": {"_count": 1}}, "Boot": {"_count": 1, "Terry": {"_count": 1}}, "Brocklehurst": {"_count": 1, "Mandy": {"_count": 1}}, "Bulstrode": {"_count": 1, "Millicent": {"_count": 1}}, "FinchFletchley": {"_count": 2, "Justin": {"_count": 1}, "Anthony": {"_count": 1}}, "Finnigan": {"_count": 1, "Seamus": {"_count": 1}}, "Granger": {"_count": 3, "Hermione": {"_count": 1}, "theyre": {"_count": 1}, "": {"_count": 1}}, "GRYFFINDOR": {"_count": 2, "": {"_count": 1}, "VERSUS": {"_count": 1}}, "Malfoy": {"_count": 153, "swaggered": {"_count": 1}, "certainly": {"_count": 1}, "s": {"_count": 2}, "smiled": {"_count": 1}, "looked": {"_count": 8}, "only": {"_count": 1}, "and": {"_count": 7}, "tricked": {"_count": 1}, "seized": {"_count": 1}, "had": {"_count": 6}, "was": {"_count": 27}, "Crabbe": {"_count": 10}, "said": {"_count": 1}, "grinned": {"_count": 1}, "could": {"_count": 2}, "told": {"_count": 1}, "now": {"_count": 1}, "Neville": {"_count": 1}, "it": {"_count": 1}, "made": {"_count": 2}, "who": {"_count": 2}, "bent": {"_count": 1}, "called": {"_count": 1}, "would": {"_count": 2}, "didnt": {"_count": 1}, "got": {"_count": 3}, "strutted": {"_count": 1}, "smirked": {"_count": 2}, "raised": {"_count": 1}, "glanced": {"_count": 3}, "paused": {"_count": 1}, "marched": {"_count": 1}, "came": {"_count": 1}, "started": {"_count": 1}, "gave": {"_count": 2}, "set": {"_count": 1}, "passed": {"_count": 1}, "spent": {"_count": 1}, "knows": {"_count": 2}, "staggered": {"_count": 1}, "stepped": {"_count": 2}, "went": {"_count": 1}, "chuckled": {"_count": 1}, "howled": {"_count": 1}, "straightened": {"_count": 1}, "whose": {"_count": 1}, "flushed": {"_count": 1}, "put": {"_count": 1}, "replied": {"_count": 1}, "walked": {"_count": 1}, "hastened": {"_count": 1}, "": {"_count": 2}, "stood": {"_count": 1}, "just": {"_count": 1}, "mouthed": {"_count": 1}, "stowed": {"_count": 1}, "jumped": {"_count": 1}, "turned": {"_count": 2}, "pointed": {"_count": 1}, "aimed": {"_count": 1}, "revenge": {"_count": 1}, "sat": {"_count": 1}, "sank": {"_count": 1}, "yawned": {"_count": 1}, "moved": {"_count": 1}, "dragged": {"_count": 1}, "took": {"_count": 1}, "not": {"_count": 1}, "spun": {"_count": 1}, "stopped": {"_count": 1}, "pushed": {"_count": 1}, "already": {"_count": 1}, "on": {"_count": 1}, "opened": {"_count": 1}, "gasped": {"_count": 1}, "wheeled": {"_count": 1}, "stiffened": {"_count": 1}, "merely": {"_count": 1}, "winced": {"_count": 1}, "stared": {"_count": 1}, "did": {"_count": 1}, "obviously": {"_count": 1}, "saw": {"_count": 1}, "fell": {"_count": 2}}, "Moon": {"_count": 2, "Nott": {"_count": 1}, "stars": {"_count": 1}}, "Parkinson": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 28, "a": {"_count": 4}, "Perks": {"_count": 1}, "some": {"_count": 1}, "came": {"_count": 2}, "he": {"_count": 8}, "tell": {"_count": 1}, "Where": {"_count": 1}, "for": {"_count": 1}, "well": {"_count": 1}, "there": {"_count": 1}, "Miss": {"_count": 1}, "Voldemorts": {"_count": 1}, "she": {"_count": 1}, "shell": {"_count": 1}, "more": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "Hmm": {"_count": 12, "said": {"_count": 6}, "": {"_count": 5}, "lets": {"_count": 1}}, "Difficult": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "Plenty": {"_count": 3, "of": {"_count": 3}}, "Thomas": {"_count": 1, "Dean": {"_count": 1}}, "Turpin": {"_count": 1, "Lisa": {"_count": 1}}, "Mad": {"_count": 5, "": {"_count": 2}, "though": {"_count": 1}, "And": {"_count": 1}, "to": {"_count": 1}}, "Potatoes": {"_count": 1, "Harry": {"_count": 1}}, "Resident": {"_count": 1, "ghost": {"_count": 1}}, "Looking": {"_count": 34, "pleased": {"_count": 1}, "down": {"_count": 7}, "up": {"_count": 2}, "for": {"_count": 4}, "breathless": {"_count": 1}, "good": {"_count": 1}, "supremely": {"_count": 1}, "politely": {"_count": 1}, "scared": {"_count": 1}, "back": {"_count": 1}, "toward": {"_count": 1}, "as": {"_count": 1}, "highly": {"_count": 1}, "to": {"_count": 1}, "careworn": {"_count": 1}, "Slughorn": {"_count": 1}, "around": {"_count": 2}, "sideways": {"_count": 1}, "directly": {"_count": 1}, "rather": {"_count": 2}, "relieved": {"_count": 1}, "uncomfortable": {"_count": 1}}, "Slytherins": {"_count": 5, "have": {"_count": 1}, "on": {"_count": 1}, "gigantic": {"_count": 1}, "up": {"_count": 1}, "mark": {"_count": 1}}, "Blocks": {"_count": 1, "of": {"_count": 1}}, "Me": {"_count": 28, "dads": {"_count": 1}, "": {"_count": 8}, "he": {"_count": 2}, "too": {"_count": 3}, "a": {"_count": 2}, "said": {"_count": 3}, "dad": {"_count": 3}, "and": {"_count": 2}, "an": {"_count": 1}, "mentioning": {"_count": 1}, "tactless": {"_count": 1}, "cousin": {"_count": 1}}, "Bit": {"_count": 11, "of": {"_count": 4}, "stupid": {"_count": 1}, "embarrassing": {"_count": 1}, "said": {"_count": 1}, "o": {"_count": 1}, "more": {"_count": 1}, "dusty": {"_count": 1}, "unfortunate": {"_count": 1}}, "Ouch": {"_count": 16, "": {"_count": 9}, "What": {"_count": 1}, "look": {"_count": 1}, "Mum": {"_count": 1}, "sorry": {"_count": 1}, "yelled": {"_count": 1}, "gerroff": {"_count": 1}, "ow": {"_count": 1}}, "Nnothing": {"_count": 1, "": {"_count": 1}}, "Harder": {"_count": 2, "to": {"_count": 2}}, "Knows": {"_count": 5, "an": {"_count": 1}, "what": {"_count": 2}, "people": {"_count": 1}, "all": {"_count": 1}}, "Ahem": {"_count": 3, "just": {"_count": 1}, "said": {"_count": 1}, "twenty": {"_count": 1}}, "Quidditch": {"_count": 10, "trials": {"_count": 1}, "practice": {"_count": 1}, "matches": {"_count": 1}, "he": {"_count": 2}, "what": {"_count": 1}, "World": {"_count": 1}, "later": {"_count": 1}, "": {"_count": 2}}, "Off": {"_count": 11, "you": {"_count": 9}, "to": {"_count": 1}, "with": {"_count": 1}}, "Peeves": {"_count": 28, "Percy": {"_count": 1}, "stuck": {"_count": 1}, "threw": {"_count": 1}, "cackled": {"_count": 1}, "was": {"_count": 4}, "he": {"_count": 1}, "almost": {"_count": 1}, "shot": {"_count": 1}, "upset": {"_count": 1}, "the": {"_count": 2}, "wasnt": {"_count": 1}, "had": {"_count": 1}, "didnt": {"_count": 1}, "flipped": {"_count": 1}, "puffed": {"_count": 1}, "Harry": {"_count": 1}, "seemed": {"_count": 1}, "come": {"_count": 1}, "get": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "has": {"_count": 1}, "is": {"_count": 1}, "floated": {"_count": 1}}, "Oooooooh": {"_count": 1, "": {"_count": 1}}, "Ickle": {"_count": 1, "Firsties": {"_count": 1}}, "Here": {"_count": 102, "we": {"_count": 7}, "I": {"_count": 4}, "girl": {"_count": 1}, "and": {"_count": 8}, "it": {"_count": 1}, "is": {"_count": 2}, "you": {"_count": 11}, "he": {"_count": 12}, "Lupin": {"_count": 1}, "He": {"_count": 5}, "youve": {"_count": 1}, "She": {"_count": 1}, "Harry": {"_count": 3}, "comes": {"_count": 2}, "look": {"_count": 1}, "at": {"_count": 2}, "take": {"_count": 4}, "Moody": {"_count": 1}, "said": {"_count": 7}, "stood": {"_count": 1}, "hold": {"_count": 1}, "she": {"_count": 1}, "And": {"_count": 1}, "": {"_count": 10}, "for": {"_count": 1}, "swap": {"_count": 1}, "let": {"_count": 1}, "have": {"_count": 2}, "again": {"_count": 1}, "was": {"_count": 1}, "madam": {"_count": 1}, "Hokey": {"_count": 1}, "drink": {"_count": 1}, "behind": {"_count": 1}, "Griphook": {"_count": 1}, "too": {"_count": 1}, "Ive": {"_count": 1}}, "Password": {"_count": 5, "": {"_count": 5}}, "Caput": {"_count": 1, "Draconis": {"_count": 1}}, "Wearing": {"_count": 1, "the": {"_count": 1}}, "Filch": {"_count": 34, "found": {"_count": 1}, "owned": {"_count": 1}, "knew": {"_count": 1}, "must": {"_count": 1}, "was": {"_count": 5}, "Snape": {"_count": 1}, "took": {"_count": 1}, "wouldnt": {"_count": 1}, "ll": {"_count": 1}, "isnt": {"_count": 1}, "grabbed": {"_count": 1}, "s": {"_count": 3}, "hobbled": {"_count": 1}, "kept": {"_count": 1}, "had": {"_count": 1}, "who": {"_count": 1}, "started": {"_count": 1}, "made": {"_count": 1}, "the": {"_count": 1}, "opened": {"_count": 1}, "rounded": {"_count": 1}, "is": {"_count": 1}, "seemed": {"_count": 1}, "and": {"_count": 1}, "elbowed": {"_count": 1}, "fitted": {"_count": 1}, "prowled": {"_count": 1}, "told": {"_count": 1}}, "Break": {"_count": 3, "a": {"_count": 1}, "into": {"_count": 1}, "curfew": {"_count": 1}}, "Easily": {"_count": 2, "the": {"_count": 1}, "offended": {"_count": 1}}, "Binns": {"_count": 2, "droned": {"_count": 1}, "Snape": {"_count": 1}}, "Strict": {"_count": 1, "and": {"_count": 1}}, "Transfiguration": {"_count": 1, "is": {"_count": 1}}, "Lots": {"_count": 3, "of": {"_count": 3}}, "Friday": {"_count": 1, "was": {"_count": 1}}, "Double": {"_count": 5, "Potions": {"_count": 2}, "Divination": {"_count": 1}, "Charms": {"_count": 1}, "detention": {"_count": 1}}, "Snapes": {"_count": 29, "Head": {"_count": 1}, "a": {"_count": 1}, "refereeing": {"_count": 1}, "done": {"_count": 1}, "only": {"_count": 2}, "going": {"_count": 1}, "said": {"_count": 1}, "nasty": {"_count": 1}, "lip": {"_count": 1}, "eyes": {"_count": 3}, "thin": {"_count": 1}, "uneven": {"_count": 1}, "behavior": {"_count": 1}, "black": {"_count": 1}, "face": {"_count": 1}, "mere": {"_count": 1}, "sneer": {"_count": 1}, "dark": {"_count": 1}, "head": {"_count": 1}, "thoughts": {"_count": 1}, "right": {"_count": 1}, "whats": {"_count": 1}, "pale": {"_count": 1}, "had": {"_count": 1}, "work": {"_count": 1}, "Patronus": {"_count": 1}}, "Hedwig": {"_count": 26, "hadnt": {"_count": 1}, "was": {"_count": 4}, "had": {"_count": 3}, "and": {"_count": 2}, "he": {"_count": 1}, "got": {"_count": 1}, "clicked": {"_count": 1}, "looked": {"_count": 1}, "hooted": {"_count": 3}, "": {"_count": 2}, "flew": {"_count": 1}, "gave": {"_count": 2}, "didnt": {"_count": 1}, "took": {"_count": 1}, "made": {"_count": 1}, "Hedwig": {"_count": 1}}, "Send": {"_count": 5, "us": {"_count": 1}, "me": {"_count": 1}, "word": {"_count": 1}, "date": {"_count": 1}, "Avery": {"_count": 1}}, "Snape": {"_count": 238, "didnt": {"_count": 2}, "like": {"_count": 1}, "finished": {"_count": 1}, "s": {"_count": 8}, "however": {"_count": 3}, "put": {"_count": 1}, "bent": {"_count": 1}, "and": {"_count": 7}, "was": {"_count": 35}, "spat": {"_count": 1}, "sneaking": {"_count": 1}, "interrupted": {"_count": 1}, "": {"_count": 11}, "wants": {"_count": 1}, "made": {"_count": 3}, "came": {"_count": 1}, "must": {"_count": 3}, "closed": {"_count": 1}, "looked": {"_count": 20}, "give": {"_count": 1}, "loomed": {"_count": 1}, "mentioned": {"_count": 1}, "said": {"_count": 6}, "prowled": {"_count": 1}, "cant": {"_count": 1}, "smirked": {"_count": 1}, "stepped": {"_count": 3}, "too": {"_count": 1}, "had": {"_count": 19}, "swept": {"_count": 2}, "gripped": {"_count": 1}, "approached": {"_count": 1}, "moved": {"_count": 1}, "picked": {"_count": 2}, "looking": {"_count": 1}, "stumbled": {"_count": 1}, "rounded": {"_count": 1}, "stood": {"_count": 2}, "advanced": {"_count": 1}, "turned": {"_count": 3}, "froze": {"_count": 1}, "pointed": {"_count": 1}, "glimpsed": {"_count": 1}, "collided": {"_count": 1}, "took": {"_count": 2}, "whirled": {"_count": 1}, "stared": {"_count": 2}, "climbed": {"_count": 1}, "stopped": {"_count": 2}, "loved": {"_count": 1}, "followed": {"_count": 2}, "knew": {"_count": 1}, "knows": {"_count": 1}, "nodded": {"_count": 1}, "strode": {"_count": 3}, "never": {"_count": 1}, "might": {"_count": 1}, "flitted": {"_count": 1}, "reached": {"_count": 1}, "appeared": {"_count": 1}, "straightened": {"_count": 1}, "pocketed": {"_count": 1}, "paused": {"_count": 1}, "pulled": {"_count": 1}, "could": {"_count": 2}, "remained": {"_count": 1}, "reacted": {"_count": 1}, "lay": {"_count": 1}, "fell": {"_count": 1}, "reckons": {"_count": 1}, "meanwhile": {"_count": 1}, "Snape": {"_count": 1}, "she": {"_count": 1}, "gestured": {"_count": 1}, "poured": {"_count": 1}, "refilled": {"_count": 1}, "set": {"_count": 2}, "smiled": {"_count": 1}, "did": {"_count": 4}, "stooped": {"_count": 1}, "lowered": {"_count": 1}, "who": {"_count": 2}, "ll": {"_count": 1}, "definitely": {"_count": 1}, "returned": {"_count": 1}, "sneered": {"_count": 1}, "gazed": {"_count": 1}, "raised": {"_count": 3}, "n": {"_count": 1}, "killed": {"_count": 3}, "kill": {"_count": 1}, "repeated": {"_count": 1}, "passed": {"_count": 1}, "the": {"_count": 1}, "caught": {"_count": 1}, "seemed": {"_count": 4}, "sent": {"_count": 1}, "bowed": {"_count": 1}, "hated": {"_count": 1}, "pretended": {"_count": 1}, "struggled": {"_count": 1}, "mmy": {"_count": 1}, "slid": {"_count": 1}, "backtracked": {"_count": 1}, "hesitated": {"_count": 1}, "sat": {"_count": 1}}, "Potions": {"_count": 7, "lessons": {"_count": 4}, "class": {"_count": 1}, "": {"_count": 2}}, "Our": {"_count": 30, "new": {"_count": 3}, "kind": {"_count": 2}, "common": {"_count": 1}, "Stunners": {"_count": 1}, "longterm": {"_count": 1}, "readers": {"_count": 2}, "examination": {"_count": 1}, "jobs": {"_count": 1}, "letters": {"_count": 1}, "information": {"_count": 2}, "findings": {"_count": 1}, "ways": {"_count": 1}, "newspapers": {"_count": 1}, "problem": {"_count": 2}, "greatly": {"_count": 1}, "feetll": {"_count": 1}, "little": {"_count": 1}, "GreatAuntie": {"_count": 1}, "mutual": {"_count": 1}, "house": {"_count": 1}, "thoughts": {"_count": 1}, "only": {"_count": 1}, "trunks": {"_count": 1}, "Teddy": {"_count": 1}}, "More": {"_count": 36, "silence": {"_count": 2}, "than": {"_count": 7}, "curly": {"_count": 1}, "loud": {"_count": 1}, "writing": {"_count": 1}, "to": {"_count": 4}, "wizards": {"_count": 1}, "publicity": {"_count": 1}, "tea": {"_count": 1}, "tears": {"_count": 2}, "screams": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 2}, "witches": {"_count": 1}, "or": {"_count": 1}, "recently": {"_count": 1}, "of": {"_count": 1}, "out": {"_count": 1}, "Killing": {"_count": 1}, "Rowle": {"_count": 1}, "clearly": {"_count": 1}, "shops": {"_count": 1}, "for": {"_count": 1}, "footsteps": {"_count": 1}}, "Hermione": {"_count": 577, "Granger": {"_count": 6}, "Grangers": {"_count": 1}, "ignored": {"_count": 4}, "wasnt": {"_count": 3}, "had": {"_count": 40}, "opened": {"_count": 3}, "was": {"_count": 63}, "marched": {"_count": 1}, "rolled": {"_count": 2}, "didnt": {"_count": 4}, "left": {"_count": 3}, "however": {"_count": 15}, "took": {"_count": 8}, "who": {"_count": 10}, "stood": {"_count": 3}, "the": {"_count": 1}, "went": {"_count": 4}, "wouldnt": {"_count": 1}, "how": {"_count": 2}, "did": {"_count": 6}, "and": {"_count": 21}, "looked": {"_count": 31}, "always": {"_count": 1}, "youd": {"_count": 1}, "stepped": {"_count": 2}, "ran": {"_count": 2}, "read": {"_count": 2}, "buried": {"_count": 1}, "closed": {"_count": 2}, "sat": {"_count": 5}, "on": {"_count": 3}, "he": {"_count": 2}, "followed": {"_count": 1}, "put": {"_count": 4}, "nodded": {"_count": 1}, "giggled": {"_count": 1}, "shut": {"_count": 1}, "waited": {"_count": 2}, "threw": {"_count": 1}, "gave": {"_count": 10}, "youre": {"_count": 2}, "I": {"_count": 8}, "": {"_count": 14}, "ladled": {"_count": 1}, "we": {"_count": 3}, "are": {"_count": 1}, "come": {"_count": 1}, "suddenly": {"_count": 3}, "lay": {"_count": 1}, "that": {"_count": 1}, "approached": {"_count": 1}, "prodded": {"_count": 1}, "said": {"_count": 13}, "laughed": {"_count": 3}, "if": {"_count": 2}, "slammed": {"_count": 2}, "seemed": {"_count": 3}, "hesitated": {"_count": 2}, "shuddered": {"_count": 2}, "made": {"_count": 3}, "peered": {"_count": 1}, "bit": {"_count": 2}, "walked": {"_count": 2}, "meanwhile": {"_count": 3}, "incredibly": {"_count": 1}, "kept": {"_count": 2}, "hadnt": {"_count": 1}, "why": {"_count": 1}, "snorted": {"_count": 2}, "started": {"_count": 1}, "irritated": {"_count": 1}, "returned": {"_count": 3}, "poked": {"_count": 1}, "swayed": {"_count": 1}, "s": {"_count": 18}, "gasping": {"_count": 1}, "fell": {"_count": 1}, "whimpered": {"_count": 2}, "pulled": {"_count": 4}, "covered": {"_count": 1}, "think": {"_count": 1}, "help": {"_count": 1}, "turned": {"_count": 8}, "what": {"_count": 1}, "were": {"_count": 1}, "listened": {"_count": 2}, "whatll": {"_count": 1}, "came": {"_count": 4}, "watched": {"_count": 2}, "rounded": {"_count": 1}, "a": {"_count": 1}, "gasped": {"_count": 5}, "got": {"_count": 1}, "bundled": {"_count": 1}, "cast": {"_count": 2}, "began": {"_count": 1}, "its": {"_count": 1}, "open": {"_count": 1}, "stopped": {"_count": 2}, "hes": {"_count": 2}, "let": {"_count": 4}, "told": {"_count": 5}, "snapped": {"_count": 1}, "joined": {"_count": 1}, "when": {"_count": 1}, "lapsed": {"_count": 1}, "Harry": {"_count": 4}, "Ill": {"_count": 1}, "burst": {"_count": 1}, "where": {"_count": 1}, "seized": {"_count": 1}, "frowned": {"_count": 3}, "hastily": {"_count": 1}, "refused": {"_count": 2}, "Nevilles": {"_count": 1}, "chose": {"_count": 1}, "stared": {"_count": 2}, "noticed": {"_count": 1}, "squashed": {"_count": 1}, "hung": {"_count": 1}, "flushed": {"_count": 1}, "Ron": {"_count": 3}, "still": {"_count": 2}, "glanced": {"_count": 3}, "hurried": {"_count": 3}, "scanned": {"_count": 1}, "jumped": {"_count": 4}, "whom": {"_count": 1}, "glared": {"_count": 1}, "drew": {"_count": 1}, "yawned": {"_count": 1}, "raised": {"_count": 2}, "you": {"_count": 2}, "finished": {"_count": 1}, "heaved": {"_count": 1}, "shook": {"_count": 2}, "scowled": {"_count": 1}, "theyve": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 2}, "carefully": {"_count": 1}, "soon": {"_count": 1}, "screamed": {"_count": 2}, "clapped": {"_count": 1}, "sighed": {"_count": 3}, "hitched": {"_count": 1}, "beamed": {"_count": 1}, "nudged": {"_count": 1}, "actually": {"_count": 1}, "breathed": {"_count": 1}, "led": {"_count": 1}, "gripped": {"_count": 1}, "scooped": {"_count": 1}, "grabbed": {"_count": 1}, "wake": {"_count": 1}, "showed": {"_count": 2}, "disengaged": {"_count": 1}, "emerged": {"_count": 1}, "of": {"_count": 1}, "spared": {"_count": 1}, "pressed": {"_count": 1}, "scurried": {"_count": 1}, "patted": {"_count": 2}, "blushed": {"_count": 1}, "reached": {"_count": 1}, "drummed": {"_count": 1}, "acted": {"_count": 1}, "would": {"_count": 2}, "bade": {"_count": 1}, "going": {"_count": 1}, "even": {"_count": 1}, "set": {"_count": 1}, "those": {"_count": 1}, "winced": {"_count": 1}, "flung": {"_count": 1}, "stifled": {"_count": 1}, "theres": {"_count": 1}, "shrieked": {"_count": 1}, "cop": {"_count": 1}, "aimed": {"_count": 1}, "dropped": {"_count": 1}, "have": {"_count": 1}, "crawled": {"_count": 1}, "waved": {"_count": 1}, "pointed": {"_count": 1}, "crossed": {"_count": 1}, "Disapparated": {"_count": 1}, "plucked": {"_count": 1}, "drank": {"_count": 1}, "recoiled": {"_count": 1}, "therefore": {"_count": 1}, "bore": {"_count": 1}, "stole": {"_count": 1}, "snatched": {"_count": 1}, "whipped": {"_count": 1}, "shoved": {"_count": 1}, "Ive": {"_count": 1}, "pushed": {"_count": 1}, "lit": {"_count": 1}, "moved": {"_count": 1}, "slid": {"_count": 1}, "launched": {"_count": 1}, "muttered": {"_count": 1}, "shot": {"_count": 1}, "stooped": {"_count": 1}, "twisted": {"_count": 1}, "disapproved": {"_count": 1}, "swept": {"_count": 1}, "allowed": {"_count": 1}, "collapsed": {"_count": 1}, "handed": {"_count": 1}, "moaned": {"_count": 1}, "stabbed": {"_count": 1}, "tugged": {"_count": 1}}, "Tut": {"_count": 4, "tut": {"_count": 4}}, "Lets": {"_count": 100, "try": {"_count": 7}, "go": {"_count": 24}, "forget": {"_count": 1}, "find": {"_count": 2}, "see": {"_count": 16}, "leave": {"_count": 1}, "ask": {"_count": 1}, "have": {"_count": 3}, "hear": {"_count": 2}, "match": {"_count": 1}, "do": {"_count": 1}, "get": {"_count": 13}, "move": {"_count": 2}, "think": {"_count": 2}, "just": {"_count": 5}, "sit": {"_count": 2}, "give": {"_count": 1}, "Stun": {"_count": 1}, "eat": {"_count": 1}, "crack": {"_count": 1}, "say": {"_count": 1}, "not": {"_count": 1}, "talk": {"_count": 1}, "lets": {"_count": 2}, "stay": {"_count": 2}, "fast": {"_count": 1}, "take": {"_count": 1}, "worry": {"_count": 1}, "hope": {"_count": 1}, "split": {"_count": 1}, "stick": {"_count": 1}}, "Thought": {"_count": 23, "you": {"_count": 3}, "Id": {"_count": 2}, "it": {"_count": 1}, "hed": {"_count": 2}, "I": {"_count": 2}, "he": {"_count": 1}, "everyone": {"_count": 1}, "any": {"_count": 1}, "wed": {"_count": 5}, "Dumbledore": {"_count": 1}, "people": {"_count": 1}, "she": {"_count": 2}, "the": {"_count": 1}}, "Sit": {"_count": 22, "down": {"_count": 18}, "she": {"_count": 1}, "my": {"_count": 1}, "said": {"_count": 2}}, "Over": {"_count": 32, "the": {"_count": 4}, "and": {"_count": 1}, "her": {"_count": 3}, "in": {"_count": 1}, "here": {"_count": 10}, "there": {"_count": 2}, "a": {"_count": 1}, "their": {"_count": 1}, "at": {"_count": 4}, "his": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "Deans": {"_count": 1}, "Hermione": {"_count": 1}}, "Things": {"_count": 6, "didnt": {"_count": 1}, "started": {"_count": 1}, "that": {"_count": 2}, "are": {"_count": 2}}, "Idiot": {"_count": 1, "boy": {"_count": 1}}, "Back": {"_count": 14, "Fang": {"_count": 1}, "in": {"_count": 6}, "outside": {"_count": 1}, "to": {"_count": 3}, "": {"_count": 2}, "on": {"_count": 1}}, "Hams": {"_count": 1, "and": {"_count": 1}}, "Fang": {"_count": 15, "rested": {"_count": 1}, "the": {"_count": 3}, "started": {"_count": 2}, "yelped": {"_count": 1}, "didnt": {"_count": 1}, "wasnt": {"_count": 1}, "flung": {"_count": 1}, "was": {"_count": 4}, "who": {"_count": 1}}, "Rubbish": {"_count": 6, "": {"_count": 2}, "said": {"_count": 4}}, "Had": {"_count": 44, "that": {"_count": 1}, "Hagrid": {"_count": 2}, "Harry": {"_count": 2}, "to": {"_count": 4}, "the": {"_count": 4}, "he": {"_count": 3}, "a": {"_count": 8}, "their": {"_count": 1}, "Professor": {"_count": 1}, "all": {"_count": 1}, "it": {"_count": 5}, "they": {"_count": 2}, "there": {"_count": 1}, "she": {"_count": 2}, "his": {"_count": 1}, "Voldemort": {"_count": 2}, "Dumbledore": {"_count": 1}, "Lucius": {"_count": 1}, "Dumbledores": {"_count": 1}, "Lupin": {"_count": 1}}, "Flying": {"_count": 3, "lessons": {"_count": 1}, "a": {"_count": 1}, "came": {"_count": 1}}, "Typical": {"_count": 2, "said": {"_count": 2}}, "Privately": {"_count": 2, "Harry": {"_count": 1}, "and": {"_count": 1}}, "Gran": {"_count": 2, "knows": {"_count": 1}, "didnt": {"_count": 1}}, "youve": {"_count": 4, "forgotten": {"_count": 1}, "really": {"_count": 1}, "got": {"_count": 1}, "added": {"_count": 1}}, "Scowling": {"_count": 4, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "Snape": {"_count": 1}}, "Stick": {"_count": 1, "out": {"_count": 1}}, "Keep": {"_count": 31, "your": {"_count": 13}, "out": {"_count": 3}, "the": {"_count": 1}, "themselves": {"_count": 1}, "playing": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 3}, "pecking": {"_count": 1}, "going": {"_count": 1}, "it": {"_count": 1}, "twiddling": {"_count": 1}, "each": {"_count": 1}, "her": {"_count": 1}}, "Broken": {"_count": 3, "wrist": {"_count": 1}, "ropes": {"_count": 1}, "images": {"_count": 1}}, "Ooh": {"_count": 4, "sticking": {"_count": 1}, "good": {"_count": 1}, "its": {"_count": 1}, "you": {"_count": 1}}, "Hovering": {"_count": 1, "level": {"_count": 1}}, "iVo": {"_count": 5, "": {"_count": 5}}, "Blood": {"_count": 11, "was": {"_count": 2}, "said": {"_count": 1}, "traitor": {"_count": 2}, "trickled": {"_count": 2}, "rushed": {"_count": 1}, "spurted": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}}, "Catch": {"_count": 1, "it": {"_count": 1}}, "HARRY": {"_count": 9, "POTTER": {"_count": 3}, "": {"_count": 4}, "COME": {"_count": 1}, "WHERES": {"_count": 1}}, "Follow": {"_count": 14, "me": {"_count": 12}, "the": {"_count": 1}, "Tonks": {"_count": 1}}, "Wood": {"_count": 28, "Ive": {"_count": 1}, "was": {"_count": 7}, "told": {"_count": 2}, "reached": {"_count": 1}, "cleared": {"_count": 1}, "took": {"_count": 1}, "had": {"_count": 3}, "looked": {"_count": 1}, "swallowed": {"_count": 1}, "pointed": {"_count": 1}, "rumbled": {"_count": 1}, "spoke": {"_count": 1}, "became": {"_count": 1}, "sought": {"_count": 1}, "shook": {"_count": 1}, "scowled": {"_count": 1}, "Davies": {"_count": 1}, "spent": {"_count": 1}, "mightve": {"_count": 1}}, "Woods": {"_count": 3, "expression": {"_count": 1}, "captain": {"_count": 1}, "been": {"_count": 1}}, "Charlie": {"_count": 12, "Weasley": {"_count": 1}, "he": {"_count": 1}, "can": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "looked": {"_count": 1}, "pointed": {"_count": 1}, "imitated": {"_count": 1}, "wanted": {"_count": 1}, "Fred": {"_count": 1}, "failed": {"_count": 1}}, "Ever": {"_count": 6, "seen": {"_count": 1}, "since": {"_count": 4}, "heard": {"_count": 1}}, "Light": {"_count": 6, "speedy": {"_count": 1}, "": {"_count": 1}, "green": {"_count": 1}, "spilled": {"_count": 1}, "your": {"_count": 1}, "was": {"_count": 1}}, "Heaven": {"_count": 1, "knows": {"_count": 1}}, "Flattened": {"_count": 1, "in": {"_count": 1}}, "Seeker": {"_count": 1, "": {"_count": 1}}, "Bet": {"_count": 14, "its": {"_count": 1}, "youre": {"_count": 2}, "he": {"_count": 2}, "it": {"_count": 1}, "you": {"_count": 3}, "some": {"_count": 1}, "against": {"_count": 1}, "Percy": {"_count": 1}, "Umbridge": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Having": {"_count": 15, "a": {"_count": 3}, "fun": {"_count": 1}, "always": {"_count": 2}, "finished": {"_count": 1}, "reached": {"_count": 1}, "hurtled": {"_count": 1}, "handed": {"_count": 1}, "wasted": {"_count": 1}, "concealed": {"_count": 1}, "misunderstood": {"_count": 1}, "refused": {"_count": 1}, "ensured": {"_count": 1}}, "Tonight": {"_count": 9, "if": {"_count": 1}, "we": {"_count": 1}, "will": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 1}, "however": {"_count": 1}, "eight": {"_count": 1}, "he": {"_count": 1}, "when": {"_count": 1}}, "Wands": {"_count": 7, "only": {"_count": 2}, "at": {"_count": 1}, "out": {"_count": 1}, "away": {"_count": 2}, "are": {"_count": 1}}, "Crabbe": {"_count": 33, "he": {"_count": 1}, "and": {"_count": 25}, "stopped": {"_count": 1}, "blundered": {"_count": 1}, "stumbled": {"_count": 1}, "or": {"_count": 1}, "opened": {"_count": 1}, "was": {"_count": 1}, "wheeled": {"_count": 1}}, "Midnight": {"_count": 5, "all": {"_count": 1}, "on": {"_count": 1}, "ticked": {"_count": 1}, "said": {"_count": 1}, "came": {"_count": 1}}, "Catching": {"_count": 4, "the": {"_count": 1}, "sight": {"_count": 1}, "Fudges": {"_count": 1}, "Harrys": {"_count": 1}}, "Neither": {"_count": 35, "of": {"_count": 13}, "Neville": {"_count": 1}, "Ron": {"_count": 8}, "Dumbledore": {"_count": 3}, "Harry": {"_count": 3}, "can": {"_count": 5}, "his": {"_count": 1}, "worked": {"_count": 1}}, "Goodbye": {"_count": 15, "said": {"_count": 2}, "friend": {"_count": 1}, "Peter": {"_count": 1}, "then": {"_count": 2}, "": {"_count": 3}, "Arry": {"_count": 1}, "Harry": {"_count": 1}, "Tom": {"_count": 1}, "Potter": {"_count": 1}, "Dobby": {"_count": 1}, "goodbye": {"_count": 1}}, "Halfpast": {"_count": 1, "eleven": {"_count": 1}}, "Dyou": {"_count": 58, "think": {"_count": 26}, "want": {"_count": 5}, "really": {"_count": 1}, "realize": {"_count": 2}, "know": {"_count": 9}, "get": {"_count": 1}, "reckon": {"_count": 7}, "dyou": {"_count": 2}, "understand": {"_count": 1}, "mind": {"_count": 2}, "mean": {"_count": 1}, "have": {"_count": 1}}, "Fine": {"_count": 32, "said": {"_count": 9}, "Im": {"_count": 1}, "he": {"_count": 4}, "": {"_count": 8}, "snapped": {"_count": 2}, "we": {"_count": 1}, "lets": {"_count": 1}, "go": {"_count": 1}, "fine": {"_count": 2}, "she": {"_count": 2}, "retorted": {"_count": 1}}, "Cups": {"_count": 1, "shields": {"_count": 1}}, "Sniff": {"_count": 1, "around": {"_count": 1}}, "Horrorstruck": {"_count": 2, "Harry": {"_count": 2}}, "Nevilles": {"_count": 16, "robes": {"_count": 1}, "legs": {"_count": 3}, "lips": {"_count": 1}, "arms": {"_count": 1}, "jaws": {"_count": 1}, "round": {"_count": 2}, "face": {"_count": 2}, "foot": {"_count": 1}, "aim": {"_count": 1}, "gone": {"_count": 1}, "arm": {"_count": 1}, "childhood": {"_count": 1}}, "RUN": {"_count": 5, "": {"_count": 5}}, "Wandering": {"_count": 2, "around": {"_count": 1}, "through": {"_count": 1}}, "Naughty": {"_count": 1, "naughty": {"_count": 1}}, "Should": {"_count": 16, "tell": {"_count": 1}, "Harry": {"_count": 1}, "call": {"_count": 1}, "we": {"_count": 4}, "stop": {"_count": 1}, "be": {"_count": 4}, "have": {"_count": 1}, "I": {"_count": 2}, "slow": {"_count": 1}}, "STUDENTS": {"_count": 1, "OUT": {"_count": 1}}, "Quick": {"_count": 18, "tell": {"_count": 1}, "": {"_count": 7}, "go": {"_count": 2}, "behind": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 2}, "quick": {"_count": 3}, "or": {"_count": 1}}, "NOTHING": {"_count": 1, "": {"_count": 1}}, "10": {"_count": 7, "HALLOWEEN": {"_count": 1}, "THE": {"_count": 3}, "MAYHEM": {"_count": 1}, "LUNA": {"_count": 1}, "KREACHERS": {"_count": 1}}, "Indeed": {"_count": 31, "by": {"_count": 1}, "Wendelin": {"_count": 1}, "he": {"_count": 5}, "": {"_count": 5}, "I": {"_count": 2}, "yes": {"_count": 1}, "from": {"_count": 1}, "they": {"_count": 2}, "whenever": {"_count": 1}, "the": {"_count": 2}, "said": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}, "Professor": {"_count": 1}, "many": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 1}, "as": {"_count": 1}, "Phineas": {"_count": 1}}, "Oliver": {"_count": 11, "Wood": {"_count": 7}, "Harry": {"_count": 1}, "Woods": {"_count": 1}, "this": {"_count": 2}}, "McGonagall": {"_count": 9, "Harry": {"_count": 2}, "wont": {"_count": 1}, "Deputy": {"_count": 1}, "says": {"_count": 1}, "wants": {"_count": 1}, "would": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}}, "Comets": {"_count": 1, "look": {"_count": 1}}, "Potters": {"_count": 4, "been": {"_count": 1}, "letter": {"_count": 1}, "upstairs": {"_count": 1}, "had": {"_count": 1}}, "Sleek": {"_count": 1, "and": {"_count": 1}}, "Hundreds": {"_count": 4, "of": {"_count": 3}, "upon": {"_count": 1}}, "Okay": {"_count": 80, "got": {"_count": 1}, "men": {"_count": 1}, "lets": {"_count": 4}, "he": {"_count": 6}, "well": {"_count": 1}, "Ron": {"_count": 1}, "said": {"_count": 19}, "who": {"_count": 1}, "so": {"_count": 1}, "team": {"_count": 1}, "side": {"_count": 1}, "no": {"_count": 1}, "she": {"_count": 3}, "Scabbers": {"_count": 1}, "Buckbeak": {"_count": 1}, "I": {"_count": 1}, "then": {"_count": 5}, "": {"_count": 8}, "Tuesday": {"_count": 1}, "Ill": {"_count": 1}, "okay": {"_count": 3}, "try": {"_count": 1}, "Harry": {"_count": 5}, "you": {"_count": 1}, "everyone": {"_count": 2}, "write": {"_count": 1}, "weve": {"_count": 1}, "stop": {"_count": 1}, "Eve": {"_count": 1}, "go": {"_count": 1}, "fine": {"_count": 1}, "listen": {"_count": 1}, "Professor": {"_count": 1}, "all": {"_count": 1}}, "Compared": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "Swish": {"_count": 1, "and": {"_count": 1}}, "Seamus": {"_count": 23, "got": {"_count": 2}, "Finnigan": {"_count": 4}, "": {"_count": 1}, "darted": {"_count": 1}, "shook": {"_count": 1}, "was": {"_count": 4}, "and": {"_count": 2}, "did": {"_count": 2}, "turned": {"_count": 1}, "reckons": {"_count": 1}, "handed": {"_count": 1}, "looked": {"_count": 1}, "is": {"_count": 1}, "gave": {"_count": 1}}, "Wingardium": {"_count": 1, "Leviosal": {"_count": 1}}, "Prefects": {"_count": 3, "he": {"_count": 1}, "when": {"_count": 1}, "were": {"_count": 1}}, "Ducking": {"_count": 1, "down": {"_count": 1}}, "Peering": {"_count": 1, "around": {"_count": 1}}, "Quietly": {"_count": 5, "as": {"_count": 3}, "Harry": {"_count": 1}, "": {"_count": 1}}, "Hermionel": {"_count": 4, "they": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "She": {"_count": 1}}, "Confuse": {"_count": 1, "it": {"_count": 1}}, "Howling": {"_count": 1, "with": {"_count": 1}}, "Urgh": {"_count": 6, "troll": {"_count": 1}, "essence": {"_count": 1}, "": {"_count": 2}, "Chang": {"_count": 1}, "said": {"_count": 1}}, "Quirrell": {"_count": 19, "took": {"_count": 1}, "was": {"_count": 3}, "smiled": {"_count": 1}, "snapped": {"_count": 1}, "came": {"_count": 1}, "shivered": {"_count": 1}, "cursed": {"_count": 2}, "ignored": {"_count": 1}, "rounded": {"_count": 1}, "moved": {"_count": 1}, "raised": {"_count": 1}, "screamed": {"_count": 1}, "does": {"_count": 1}, "full": {"_count": 1}, "said": {"_count": 1}, "actually": {"_count": 1}}, "Hopes": {"_count": 1, "of": {"_count": 1}}, "Miss": {"_count": 21, "Granger": {"_count": 11}, "er": {"_count": 1}, "Grant": {"_count": 1}, "Dursley": {"_count": 1}, "Patil": {"_count": 1}, "Delacour": {"_count": 2}, "Johnson": {"_count": 1}, "Edgecombe": {"_count": 1}, "Brown": {"_count": 1}, "Bagshot": {"_count": 1}}, "said": {"_count": 115, "Professor": {"_count": 8}, "Harry": {"_count": 29}, "Ron": {"_count": 15}, "Dumbledore": {"_count": 5}, "Fred": {"_count": 1}, "Wood": {"_count": 1}, "Malfoy": {"_count": 2}, "Riddle": {"_count": 2}, "Mr": {"_count": 6}, "Lupin": {"_count": 2}, "Snape": {"_count": 1}, "Pettigrew": {"_count": 1}, "Black": {"_count": 1}, "Hermione": {"_count": 11}, "Cedric": {"_count": 1}, "Hagrid": {"_count": 6}, "Parvati": {"_count": 1}, "Bagman": {"_count": 1}, "Myrtle": {"_count": 1}, "hes": {"_count": 1}, "the": {"_count": 4}, "Mrs": {"_count": 1}, "Cho": {"_count": 1}, "Sirius": {"_count": 3}, "Zacharias": {"_count": 1}, "Ginny": {"_count": 1}, "Neville": {"_count": 1}, "Umbridge": {"_count": 1}, "Moody": {"_count": 1}, "Belby": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Madam": {"_count": 1}, "Slughorn": {"_count": 2}}, "Students": {"_count": 14, "are": {"_count": 2}, "arent": {"_count": 1}, "up": {"_count": 1}, "raise": {"_count": 1}, "had": {"_count": 1}, "beside": {"_count": 1}, "all": {"_count": 1}, "were": {"_count": 2}, "Magorian": {"_count": 1}, "who": {"_count": 1}, "lying": {"_count": 1}, "ran": {"_count": 1}}, "Pig": {"_count": 1, "snout": {"_count": 1}}, "QUIDDITCH": {"_count": 1, "As": {"_count": 1}}, "Hardly": {"_count": 8, "anyone": {"_count": 3}, "surprising": {"_count": 1}, "daring": {"_count": 2}, "any": {"_count": 1}, "aware": {"_count": 1}}, "Unfortunately": {"_count": 18, "something": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 5}, "classes": {"_count": 1}, "Uncle": {"_count": 1}, "Rons": {"_count": 1}, "Angelina": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 1}, "however": {"_count": 2}, "they": {"_count": 1}, "said": {"_count": 1}}, "Library": {"_count": 2, "books": {"_count": 1}, "": {"_count": 1}}, "Wonder": {"_count": 17, "whats": {"_count": 2}, "how": {"_count": 2}, "what": {"_count": 8}, "if": {"_count": 3}, "where": {"_count": 2}}, "Blasted": {"_count": 1, "thing": {"_count": 1}}, "GET": {"_count": 6, "OUT": {"_count": 2}, "OFF": {"_count": 1}, "HIM": {"_count": 1}, "IT": {"_count": 1}, "GOING": {"_count": 1}}, "Seekers": {"_count": 2, "are": {"_count": 1}, "were": {"_count": 1}}, "Many": {"_count": 33, "students": {"_count": 2}, "witches": {"_count": 1}, "people": {"_count": 6}, "Severus": {"_count": 1}, "qualified": {"_count": 1}, "regarded": {"_count": 1}, "of": {"_count": 14}, "chairs": {"_count": 1}, "Hufflepuffs": {"_count": 1}, "thought": {"_count": 1}, "leaned": {"_count": 1}, "happy": {"_count": 1}, "small": {"_count": 1}, "lives": {"_count": 1}}, "Meanwhile": {"_count": 39, "in": {"_count": 4}, "Professor": {"_count": 2}, "hidden": {"_count": 1}, "a": {"_count": 3}, "there": {"_count": 1}, "Fleur": {"_count": 1}, "Madame": {"_count": 1}, "at": {"_count": 3}, "some": {"_count": 1}, "as": {"_count": 1}, "several": {"_count": 1}, "it": {"_count": 1}, "Draco": {"_count": 1}, "Ron": {"_count": 2}, "Ginnys": {"_count": 1}, "the": {"_count": 6}, "Remus": {"_count": 2}, "Lavender": {"_count": 1}, "Scrimgeour": {"_count": 1}, "inside": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 2}, "we": {"_count": 1}}, "Mount": {"_count": 6, "your": {"_count": 6}}, "Fifteen": {"_count": 2, "brooms": {"_count": 1}, "if": {"_count": 1}}, "Bin": {"_count": 9, "watchin": {"_count": 1}, "lecturin": {"_count": 1}, "wonderin": {"_count": 1}, "feelin": {"_count": 1}, "cooped": {"_count": 1}, "havin": {"_count": 1}, "home": {"_count": 1}, "in": {"_count": 1}, "busy": {"_count": 1}}, "Kept": {"_count": 3, "outta": {"_count": 1}, "my": {"_count": 1}, "emselves": {"_count": 1}}, "Way": {"_count": 1, "up": {"_count": 1}}, "Slytherin": {"_count": 11, "in": {"_count": 3}, "Seeker": {"_count": 1}, "wished": {"_count": 1}, "according": {"_count": 1}, "has": {"_count": 1}, "won": {"_count": 1}, "was": {"_count": 1}, "score": {"_count": 1}, "": {"_count": 1}}, "Neck": {"_count": 1, "and": {"_count": 1}}, "Foul": {"_count": 3, "": {"_count": 2}, "roared": {"_count": 1}}, "Down": {"_count": 7, "in": {"_count": 2}, "the": {"_count": 1}, "below": {"_count": 2}, "one": {"_count": 1}, "here": {"_count": 1}}, "Red": {"_count": 1, "card": {"_count": 1}}, "Flint": {"_count": 6, "coulda": {"_count": 1}, "nearly": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "Lee": {"_count": 8, "Jordan": {"_count": 5}, "was": {"_count": 1}, "passed": {"_count": 1}, "Jordans": {"_count": 1}}, "Suddenly": {"_count": 11, "people": {"_count": 1}, "Harry": {"_count": 3}, "in": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "there": {"_count": 1}, "with": {"_count": 1}}, "Marcus": {"_count": 1, "Flint": {"_count": 1}}, "Reaching": {"_count": 2, "Snape": {"_count": 1}, "the": {"_count": 1}}, "Bright": {"_count": 3, "blue": {"_count": 1}, "green": {"_count": 1}, "white": {"_count": 1}}, "Scooping": {"_count": 1, "the": {"_count": 1}}, "Fluffy": {"_count": 1, "": {"_count": 1}}, "Worst": {"_count": 3, "of": {"_count": 2}, "that": {"_count": 1}}, "Disgusted": {"_count": 1, "that": {"_count": 1}}, "Hi": {"_count": 49, "Hagrid": {"_count": 5}, "Percy": {"_count": 1}, "said": {"_count": 15}, "Colin": {"_count": 1}, "Harry": {"_count": 10}, "Parvati": {"_count": 2}, "Ginny": {"_count": 1}, "Luna": {"_count": 2}, "he": {"_count": 3}, "Angelina": {"_count": 1}, "she": {"_count": 2}, "chorused": {"_count": 1}, "": {"_count": 1}, "Dobby": {"_count": 1}, "Tonks": {"_count": 1}, "Neville": {"_count": 1}, "everyone": {"_count": 1}}, "WEASLEY": {"_count": 3, "": {"_count": 1}, "WILL": {"_count": 1}, "WAS": {"_count": 1}}, "Festoons": {"_count": 1, "of": {"_count": 1}}, "Itd": {"_count": 10, "be": {"_count": 7}, "take": {"_count": 1}, "show": {"_count": 2}}, "However": {"_count": 97, "old": {"_count": 1}, "this": {"_count": 2}, "I": {"_count": 8}, "recent": {"_count": 1}, "they": {"_count": 4}, "Nearly": {"_count": 1}, "the": {"_count": 11}, "while": {"_count": 2}, "said": {"_count": 1}, "Hagrid": {"_count": 2}, "Peeves": {"_count": 1}, "we": {"_count": 4}, "": {"_count": 2}, "at": {"_count": 1}, "Bill": {"_count": 1}, "discussing": {"_count": 1}, "Percy": {"_count": 1}, "here": {"_count": 1}, "he": {"_count": 13}, "under": {"_count": 1}, "our": {"_count": 1}, "someone": {"_count": 1}, "Hermione": {"_count": 2}, "though": {"_count": 1}, "it": {"_count": 3}, "when": {"_count": 1}, "due": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 2}, "a": {"_count": 2}, "let": {"_count": 1}, "miserable": {"_count": 1}, "if": {"_count": 3}, "rest": {"_count": 1}, "Ron": {"_count": 2}, "Voldemort": {"_count": 1}, "like": {"_count": 1}, "tragedy": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Kreacher": {"_count": 1}, "two": {"_count": 1}, "in": {"_count": 1}, "there": {"_count": 2}, "Thats": {"_count": 1}, "these": {"_count": 1}, "Griphook": {"_count": 1}, "precisely": {"_count": 1}, "as": {"_count": 1}, "you": {"_count": 1}}, "Merry": {"_count": 8, "Christmas": {"_count": 7}, "hie": {"_count": 1}}, "Will": {"_count": 29, "you": {"_count": 22}, "the": {"_count": 3}, "it": {"_count": 3}, "George": {"_count": 1}}, "Taped": {"_count": 1, "to": {"_count": 1}}, "Sure": {"_count": 21, "enough": {"_count": 15}, "youll": {"_count": 1}, "you": {"_count": 3}, "it": {"_count": 1}, "youre": {"_count": 1}}, "Written": {"_count": 3, "in": {"_count": 1}, "around": {"_count": 1}, "across": {"_count": 1}}, "Use": {"_count": 11, "it": {"_count": 4}, "the": {"_count": 2}, "my": {"_count": 2}, "The": {"_count": 1}, "anyone": {"_count": 1}, "your": {"_count": 1}}, "Anuthinq": {"_count": 1, "": {"_count": 1}}, "P": {"_count": 23, "for": {"_count": 1}, "": {"_count": 21}, "Petunia": {"_count": 1}}, "Christmas": {"_count": 3, "is": {"_count": 1}, "morning": {"_count": 1}, "spirit": {"_count": 1}}, "Flaming": {"_count": 1, "Christmas": {"_count": 1}}, "Excitement": {"_count": 2, "flooded": {"_count": 1}, "exploded": {"_count": 1}}, "Stepping": {"_count": 2, "carefully": {"_count": 1}, "nimbly": {"_count": 1}}, "Setting": {"_count": 2, "the": {"_count": 1}, "dementors": {"_count": 1}}, "Panicking": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "Wherever": {"_count": 6, "he": {"_count": 1}, "Dumbledore": {"_count": 1}, "possible": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}}, "Breathing": {"_count": 4, "very": {"_count": 1}, "heavily": {"_count": 1}, "hard": {"_count": 1}, "fast": {"_count": 1}}, "Shame": {"_count": 8, "about": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "my": {"_count": 1}, "he": {"_count": 1}}, "IVo": {"_count": 2, "": {"_count": 2}}, "there": {"_count": 14, "are": {"_count": 1}, "were": {"_count": 3}, "is": {"_count": 4}, "was": {"_count": 2}, "they": {"_count": 1}, "have": {"_count": 1}, "you": {"_count": 1}, "yeh": {"_count": 1}}, "Except": {"_count": 12, "So": {"_count": 1}, "that": {"_count": 2}, "for": {"_count": 4}, "of": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "without": {"_count": 1}, "a": {"_count": 1}}, "Sitting": {"_count": 7, "on": {"_count": 3}, "near": {"_count": 1}, "bolt": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}}, "Strange": {"_count": 3, "how": {"_count": 1}, "likenesses": {"_count": 1}, "man": {"_count": 1}}, "Does": {"_count": 26, "that": {"_count": 4}, "it": {"_count": 6}, "he": {"_count": 7}, "the": {"_count": 2}, "this": {"_count": 2}, "Lupin": {"_count": 1}, "Voldemort": {"_count": 1}, "Skeeter": {"_count": 2}, "anyone": {"_count": 1}}, "whatever": {"_count": 2, "we": {"_count": 1}, "hes": {"_count": 1}}, "Ronald": {"_count": 2, "Weasley": {"_count": 2}}, "Men": {"_count": 4, "have": {"_count": 1}, "clicked": {"_count": 1}, "in": {"_count": 1}, "were": {"_count": 1}}, "Sir": {"_count": 49, "Professor": {"_count": 1}, "": {"_count": 4}, "even": {"_count": 1}, "Patrick": {"_count": 1}, "what": {"_count": 2}, "if": {"_count": 1}, "said": {"_count": 6}, "why": {"_count": 1}, "Malfoy": {"_count": 1}, "Cadogan": {"_count": 5}, "sir": {"_count": 1}, "is": {"_count": 2}, "I": {"_count": 8}, "you": {"_count": 1}, "he": {"_count": 2}, "how": {"_count": 2}, "does": {"_count": 1}, "am": {"_count": 1}, "Harry": {"_count": 1}, "no": {"_count": 1}, "are": {"_count": 2}, "Im": {"_count": 1}, "here": {"_count": 1}, "panted": {"_count": 1}, "its": {"_count": 1}}, "NICHOLAS": {"_count": 1, "FLAMBL": {"_count": 1}}, "Whens": {"_count": 1, "he": {"_count": 1}}, "Chess": {"_count": 1, "was": {"_count": 1}}, "Speaking": {"_count": 4, "quietly": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 2}}, "Pretend": {"_count": 1, "to": {"_count": 1}}, "Report": {"_count": 1, "him": {"_count": 1}}, "Stay": {"_count": 18, "there": {"_count": 3}, "on": {"_count": 1}, "away": {"_count": 1}, "stilll": {"_count": 1}, "where": {"_count": 3}, "here": {"_count": 2}, "Fang": {"_count": 1}, "close": {"_count": 3}, "calm": {"_count": 2}, "out": {"_count": 1}}, "Nicolas": {"_count": 1, "Flamel": {"_count": 1}}, "itll": {"_count": 2, "really": {"_count": 1}, "need": {"_count": 1}}, "Theyd": {"_count": 16, "gotten": {"_count": 1}, "left": {"_count": 1}, "have": {"_count": 5}, "heard": {"_count": 1}, "better": {"_count": 2}, "think": {"_count": 1}, "like": {"_count": 1}, "normally": {"_count": 1}, "never": {"_count": 1}, "tell": {"_count": 1}, "seen": {"_count": 1}}, "Finish": {"_count": 1, "the": {"_count": 1}}, "Longbottom": {"_count": 6, "if": {"_count": 1}, "causes": {"_count": 1}, "at": {"_count": 1}, "kindly": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}}, "been": {"_count": 4, "keeping": {"_count": 1}, "having": {"_count": 1}, "attacked": {"_count": 1}, "enjoying": {"_count": 1}}, "excellent": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "Jc": {"_count": 3, "Jc": {"_count": 3}}, "Clearly": {"_count": 4, "not": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}}, "Gliding": {"_count": 2, "silently": {"_count": 1}, "along": {"_count": 1}}, "Below": {"_count": 3, "in": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "ddont": {"_count": 1, "know": {"_count": 1}}, "II": {"_count": 5, "dont": {"_count": 1}, "didnt": {"_count": 1}, "think": {"_count": 2}, "thought": {"_count": 1}}, "Bbut": {"_count": 1, "I": {"_count": 1}}, "NORBERT": {"_count": 1, "THE": {"_count": 1}}, "Whenever": {"_count": 4, "Harry": {"_count": 1}, "someone": {"_count": 1}, "he": {"_count": 1}, "lack": {"_count": 1}}, "Moaning": {"_count": 11, "and": {"_count": 1}, "Myrtle": {"_count": 9}, "": {"_count": 1}}, "Jus": {"_count": 15, "lookin": {"_count": 1}, "stood": {"_count": 1}, "thought": {"_count": 2}, "give": {"_count": 1}, "try": {"_count": 1}, "nervous": {"_count": 1}, "take": {"_count": 1}, "maybe": {"_count": 1}, "busy": {"_count": 1}, "a": {"_count": 1}, "fer": {"_count": 1}, "giant": {"_count": 1}, "bin": {"_count": 1}, "don": {"_count": 1}}, "Theyll": {"_count": 33, "think": {"_count": 1}, "all": {"_count": 1}, "be": {"_count": 12}, "catch": {"_count": 1}, "repel": {"_count": 1}, "reach": {"_count": 1}, "take": {"_count": 2}, "find": {"_count": 1}, "have": {"_count": 2}, "just": {"_count": 1}, "get": {"_count": 1}, "wake": {"_count": 1}, "ask": {"_count": 1}, "come": {"_count": 2}, "know": {"_count": 1}, "want": {"_count": 2}, "kill": {"_count": 1}, "need": {"_count": 1}}, "Dragons": {"_count": 5, "": {"_count": 3}, "said": {"_count": 1}, "comprised": {"_count": 1}}, "Dragon": {"_count": 2, "breeding": {"_count": 1}, "bloods": {"_count": 1}}, "Common": {"_count": 2, "Welsh": {"_count": 1}, "blood": {"_count": 1}}, "O": {"_count": 5, "course": {"_count": 1}, "o": {"_count": 1}, "": {"_count": 3}}, "Number": {"_count": 5, "one": {"_count": 1}, "two": {"_count": 1}, "twelve": {"_count": 3}}, "lets": {"_count": 4, "see": {"_count": 1}, "go": {"_count": 1}, "all": {"_count": 1}, "say": {"_count": 1}}, "Won": {"_count": 1, "it": {"_count": 1}}, "Isnt": {"_count": 20, "he": {"_count": 5}, "there": {"_count": 2}, "it": {"_count": 5}, "that": {"_count": 3}, "seven": {"_count": 1}, "anyone": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}, "your": {"_count": 1}}, "Set": {"_count": 2, "him": {"_count": 1}, "against": {"_count": 1}}, "Norbert": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "Studying": {"_count": 2, "dragons": {"_count": 1}, "hard": {"_count": 1}}, "Wednesday": {"_count": 2, "night": {"_count": 1}, "afternoon": {"_count": 1}}, "Shell": {"_count": 19, "have": {"_count": 2}, "be": {"_count": 7}, "wander": {"_count": 1}, "never": {"_count": 1}, "say": {"_count": 1}, "wonder": {"_count": 1}, "ban": {"_count": 1}, "try": {"_count": 1}, "Cottage": {"_count": 3}, "look": {"_count": 1}}, "Dear": {"_count": 30, "Ron": {"_count": 1}, "Mr": {"_count": 3}, "me": {"_count": 4}, "dear": {"_count": 6}, "Tom": {"_count": 3}, "Harry": {"_count": 6}, "Hermione": {"_count": 1}, "Sirius": {"_count": 2}, "old": {"_count": 1}, "Snuffles": {"_count": 1}, "lady": {"_count": 1}, "Padfoot": {"_count": 1}}, "Trouble": {"_count": 5, "is": {"_count": 4}, "usually": {"_count": 1}}, "Love": {"_count": 3, "Charlie": {"_count": 1}, "from": {"_count": 1}, "Potions": {"_count": 1}}, "Anything": {"_count": 17, "to": {"_count": 2}, "at": {"_count": 1}, "": {"_count": 2}, "else": {"_count": 2}, "I": {"_count": 1}, "you": {"_count": 1}, "good": {"_count": 1}, "interesting": {"_count": 1}, "could": {"_count": 1}, "wrong": {"_count": 1}, "new": {"_count": 1}, "about": {"_count": 1}, "there": {"_count": 1}, "said": {"_count": 1}}, "Norberts": {"_count": 1, "at": {"_count": 1}}, "Aargh": {"_count": 1, "": {"_count": 1}}, "Byebye": {"_count": 1, "Norbert": {"_count": 1}}, "Mommy": {"_count": 1, "will": {"_count": 1}}, "Forgetting": {"_count": 2, "that": {"_count": 2}}, "Detention": {"_count": 4, "": {"_count": 2}, "Weasley": {"_count": 1}, "Saturday": {"_count": 1}}, "Malfoys": {"_count": 15, "got": {"_count": 1}, "face": {"_count": 1}, "eyes": {"_count": 1}, "thin": {"_count": 1}, "just": {"_count": 1}, "pale": {"_count": 1}, "head": {"_count": 1}, "dads": {"_count": 1}, "been": {"_count": 1}, "lip": {"_count": 1}, "not": {"_count": 1}, "gone": {"_count": 1}, "hex": {"_count": 1}, "mouth": {"_count": 1}, "gaunt": {"_count": 1}}, "Chuckling": {"_count": 2, "about": {"_count": 1}, "Bill": {"_count": 1}}, "going": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "gone": {"_count": 3, "": {"_count": 2}, "on": {"_count": 1}}, "Excuses": {"_count": 1, "alibis": {"_count": 1}}, "Add": {"_count": 3, "Norbert": {"_count": 1}, "yours": {"_count": 1}, "a": {"_count": 1}}, "Explain": {"_count": 7, "yourselves": {"_count": 1}, "she": {"_count": 1}, "George": {"_count": 1}, "yourself": {"_count": 1}, "then": {"_count": 2}, "said": {"_count": 1}}, "Fifty": {"_count": 7, "": {"_count": 1}, "points": {"_count": 5}, "yards": {"_count": 1}}, "Theyve": {"_count": 29, "never": {"_count": 1}, "taken": {"_count": 1}, "pulled": {"_count": 1}, "got": {"_count": 8}, "updated": {"_count": 1}, "signed": {"_count": 1}, "all": {"_count": 2}, "only": {"_count": 2}, "suffered": {"_count": 1}, "demoted": {"_count": 1}, "always": {"_count": 2}, "been": {"_count": 2}, "found": {"_count": 1}, "had": {"_count": 1}, "deserted": {"_count": 1}, "already": {"_count": 1}, "killed": {"_count": 1}, "fought": {"_count": 1}}, "Resign": {"_count": 1, "": {"_count": 1}}, "Walking": {"_count": 3, "back": {"_count": 1}, "more": {"_count": 1}, "Ron": {"_count": 1}}, "Quirrells": {"_count": 3, "too": {"_count": 1}, "voice": {"_count": 1}, "head": {"_count": 1}}, "Thatll": {"_count": 11, "take": {"_count": 3}, "give": {"_count": 1}, "be": {"_count": 6}, "have": {"_count": 1}}, "Meet": {"_count": 5, "Mr": {"_count": 1}, "you": {"_count": 3}, "us": {"_count": 1}}, "hard": {"_count": 1, "work": {"_count": 1}}, "hang": {"_count": 4, "you": {"_count": 1}, "on": {"_count": 3}}, "Ahead": {"_count": 2, "Harry": {"_count": 1}, "they": {"_count": 1}}, "Shouldve": {"_count": 3, "thought": {"_count": 1}, "realized": {"_count": 1}, "made": {"_count": 1}}, "Abou": {"_count": 1, "time": {"_count": 1}}, "Copyin": {"_count": 1, "lines": {"_count": 1}}, "Holding": {"_count": 7, "his": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 2}}, "Show": {"_count": 5, "yerself": {"_count": 1}, "her": {"_count": 1}, "yourself": {"_count": 2}, "him": {"_count": 1}}, "Wed": {"_count": 25, "noticed": {"_count": 1}, "better": {"_count": 16}, "be": {"_count": 3}, "never": {"_count": 2}, "have": {"_count": 1}, "just": {"_count": 1}, "walk": {"_count": 1}}, "Ronan": {"_count": 2, "sighed": {"_count": 1}, "and": {"_count": 1}}, "Mars": {"_count": 4, "is": {"_count": 2}, "causes": {"_count": 1}, "bringer": {"_count": 1}}, "Unusually": {"_count": 1, "bright": {"_count": 1}}, "Hullo": {"_count": 2, "Bane": {"_count": 1}, "he": {"_count": 1}}, "Ruddy": {"_count": 5, "stargazers": {"_count": 1}, "brilliant": {"_count": 1}, "marvelous": {"_count": 1}, "livid": {"_count": 1}, "old": {"_count": 1}}, "they": {"_count": 17, "know": {"_count": 1}, "cant": {"_count": 1}, "had": {"_count": 1}, "werent": {"_count": 1}, "shouted": {"_count": 1}, "probably": {"_count": 1}, "say": {"_count": 1}, "were": {"_count": 1}, "just": {"_count": 1}, "all": {"_count": 1}, "wouldnt": {"_count": 1}, "dont": {"_count": 1}, "are": {"_count": 1}, "killed": {"_count": 1}, "came": {"_count": 1}, "": {"_count": 1}, "searched": {"_count": 1}}, "jus": {"_count": 2, "don": {"_count": 1}, "a": {"_count": 1}}, "its": {"_count": 24, "our": {"_count": 1}, "Peter": {"_count": 1}, "still": {"_count": 1}, "a": {"_count": 2}, "\u2018classified": {"_count": 1}, "not": {"_count": 4}, "like": {"_count": 1}, "an": {"_count": 1}, "drowned": {"_count": 1}, "got": {"_count": 2}, "just": {"_count": 4}, "all": {"_count": 2}, "magic": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "aaRGH": {"_count": 2, "": {"_count": 2}}, "Firenze": {"_count": 9, "": {"_count": 1}, "saved": {"_count": 1}, "might": {"_count": 1}, "turned": {"_count": 1}, "pointed": {"_count": 1}, "looked": {"_count": 1}, "said": {"_count": 1}, "has": {"_count": 1}, "was": {"_count": 1}}, "Remember": {"_count": 28, "Firenze": {"_count": 1}, "boy": {"_count": 1}, "Millicent": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 4}, "what": {"_count": 5}, "she": {"_count": 1}, "": {"_count": 3}, "Cedric": {"_count": 2}, "if": {"_count": 1}, "that": {"_count": 2}, "when": {"_count": 2}, "close": {"_count": 1}, "I": {"_count": 1}, "those": {"_count": 1}}, "Bane": {"_count": 4, "kicked": {"_count": 1}, "was": {"_count": 1}, "thinks": {"_count": 1}, "gave": {"_count": 1}}, "Whys": {"_count": 10, "Bane": {"_count": 1}, "that": {"_count": 2}, "he": {"_count": 4}, "it": {"_count": 2}, "Filch": {"_count": 1}}, "THROUGH": {"_count": 1, "THE": {"_count": 1}}, "never": {"_count": 13, "": {"_count": 5}, "ever": {"_count": 1}, "heard": {"_count": 2}, "crossed": {"_count": 1}, "in": {"_count": 1}, "my": {"_count": 1}, "bothered": {"_count": 1}, "thank": {"_count": 1}}, "Finished": {"_count": 2, "yer": {"_count": 1}, "": {"_count": 1}}, "Mighta": {"_count": 1, "bin": {"_count": 1}}, "so": {"_count": 31, "I": {"_count": 3}, "we": {"_count": 2}, "pleased": {"_count": 1}, "youre": {"_count": 1}, "obviously": {"_count": 1}, "in": {"_count": 1}, "brilliant": {"_count": 1}, "he": {"_count": 1}, "when": {"_count": 1}, "Voldemort": {"_count": 1}, "Wormtail": {"_count": 1}, "will": {"_count": 1}, "its": {"_count": 2}, "were": {"_count": 1}, "there": {"_count": 1}, "do": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 1}, "then": {"_count": 1}, "it": {"_count": 2}, "whats": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "eet": {"_count": 1}, "that": {"_count": 1}, "proud": {"_count": 1}}, "an": {"_count": 14, "I": {"_count": 2}, "then": {"_count": 1}, "attack": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 1}, "Ill": {"_count": 1}, "now": {"_count": 1}, "old": {"_count": 1}, "sea": {"_count": 1}, "Idve": {"_count": 1}, "emotional": {"_count": 1}, "hour": {"_count": 2}}, "yeah": {"_count": 25, "then": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 3}, "": {"_count": 10}, "nervous": {"_count": 1}, "I": {"_count": 2}, "thatll": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}, "now": {"_count": 1}, "all": {"_count": 1}, "it": {"_count": 1}, "maybe": {"_count": 1}}, "Forget": {"_count": 8, "I": {"_count": 1}, "expelled": {"_count": 1}, "it": {"_count": 4}, "Hogwarts": {"_count": 1}, "my": {"_count": 1}}, "Hanging": {"_count": 1, "around": {"_count": 1}}, "Enough": {"_count": 7, "of": {"_count": 2}, "to": {"_count": 1}, "effing": {"_count": 1}, "for": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "Flitwick": {"_count": 2, "told": {"_count": 1}, "said": {"_count": 1}}, "Petrificus": {"_count": 6, "Totalusl": {"_count": 5}, "TotalusV": {"_count": 1}}, "Whatve": {"_count": 8, "you": {"_count": 5}, "we": {"_count": 1}, "they": {"_count": 2}}, "Seeing": {"_count": 7, "the": {"_count": 3}, "that": {"_count": 2}, "death": {"_count": 1}, "things": {"_count": 1}}, "Looks": {"_count": 14, "like": {"_count": 10}, "even": {"_count": 1}, "as": {"_count": 1}, "goblinmade": {"_count": 1}, "more": {"_count": 1}}, "Cold": {"_count": 3, "damp": {"_count": 1}, "": {"_count": 1}, "air": {"_count": 1}}, "Lucky": {"_count": 12, "this": {"_count": 1}, "shrieked": {"_count": 1}, "you": {"_count": 2}, "that": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 2}, "ha": {"_count": 1}, "there": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}}, "Devils": {"_count": 2, "Snare": {"_count": 2}}, "HAVE": {"_count": 1, "YOU": {"_count": 1}}, "ARE": {"_count": 2, "YOU": {"_count": 2}}, "Wriggling": {"_count": 2, "and": {"_count": 1}, "around": {"_count": 1}}, "sounds": {"_count": 2, "like": {"_count": 2}}, "Probably": {"_count": 18, "said": {"_count": 2}, "getting": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "cost": {"_count": 1}, "trying": {"_count": 2}, "mistaken": {"_count": 1}, "an": {"_count": 1}, "say": {"_count": 1}, "thinks": {"_count": 1}, "woulda": {"_count": 1}, "he": {"_count": 1}, "just": {"_count": 1}, "longer": {"_count": 1}, "to": {"_count": 1}, "be": {"_count": 1}}, "Ready": {"_count": 21, "": {"_count": 11}, "are": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 4}, "came": {"_count": 1}, "said": {"_count": 1}, "Sirius": {"_count": 1}, "Diddy": {"_count": 1}}, "Facing": {"_count": 1, "them": {"_count": 1}}, "White": {"_count": 5, "always": {"_count": 1}, "hot": {"_count": 1}, "an": {"_count": 1}, "fog": {"_count": 1}, "smoke": {"_count": 1}}, "look": {"_count": 4, "": {"_count": 2}, "round": {"_count": 1}, "at": {"_count": 1}}, "Leaves": {"_count": 1, "you": {"_count": 1}}, "Twice": {"_count": 15, "Ron": {"_count": 1}, "in": {"_count": 2}, "Harry": {"_count": 3}, "he": {"_count": 4}, "they": {"_count": 2}, "more": {"_count": 1}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}}, "NO": {"_count": 13, "": {"_count": 11}, "CROOKSHANKS": {"_count": 1}, "IT": {"_count": 1}}, "Shaking": {"_count": 6, "Harry": {"_count": 2}, "all": {"_count": 1}, "his": {"_count": 2}, "with": {"_count": 1}}, "Eyes": {"_count": 6, "watering": {"_count": 2}, "still": {"_count": 2}, "open": {"_count": 1}, "blurred": {"_count": 1}}, "Choose": {"_count": 2, "unless": {"_count": 1}, "one": {"_count": 1}}, "Grab": {"_count": 2, "brooms": {"_count": 1}, "hold": {"_count": 1}}, "Hermiones": {"_count": 31, "lip": {"_count": 1}, "hand": {"_count": 4}, "leg": {"_count": 1}, "right": {"_count": 2}, "parents": {"_count": 1}, "arriving": {"_count": 1}, "a": {"_count": 1}, "words": {"_count": 1}, "hair": {"_count": 1}, "obsessed": {"_count": 1}, "however": {"_count": 1}, "allowed": {"_count": 1}, "eyes": {"_count": 2}, "expression": {"_count": 2}, "explanation": {"_count": 1}, "face": {"_count": 3}, "name": {"_count": 1}, "wellpracticed": {"_count": 1}, "potion": {"_count": 1}, "schedule": {"_count": 1}, "scream": {"_count": 1}, "hands": {"_count": 1}, "sulkiness": {"_count": 1}}, "Books": {"_count": 4, "": {"_count": 1}, "were": {"_count": 1}, "can": {"_count": 1}, "clothes": {"_count": 1}}, "tried": {"_count": 2, "to": {"_count": 2}}, "Ropes": {"_count": 1, "sprang": {"_count": 1}}, "Scurrying": {"_count": 2, "around": {"_count": 1}, "echoing": {"_count": 1}}, "Trust": {"_count": 8, "Dumbledore": {"_count": 1}, "me": {"_count": 4}, "Malfoy": {"_count": 2}, "him": {"_count": 1}}, "Tried": {"_count": 1, "to": {"_count": 1}}, "Lord": {"_count": 21, "Voldemort": {"_count": 16}, "is": {"_count": 1}, "Voldemorts": {"_count": 2}, "hang": {"_count": 1}, "Vol": {"_count": 1}}, "Since": {"_count": 11, "then": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 4}, "she": {"_count": 1}, "they": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}}, "decided": {"_count": 1, "he": {"_count": 1}}, "is": {"_count": 11, "the": {"_count": 1}, "fatal": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "currently": {"_count": 1}, "it": {"_count": 2}, "a": {"_count": 1}, "exactly": {"_count": 1}, "she": {"_count": 1}, "this": {"_count": 1}}, "Somehow": {"_count": 8, "incredibly": {"_count": 1}, "Harry": {"_count": 2}, "Oliver": {"_count": 1}, "the": {"_count": 3}, "her": {"_count": 1}}, "Dare": {"_count": 1, "he": {"_count": 1}}, "facetoface": {"_count": 1, "": {"_count": 1}}, "Master": {"_count": 44, "you": {"_count": 2}, "I": {"_count": 3}, "has": {"_count": 3}, "gave": {"_count": 1}, "threw": {"_count": 1}, "master": {"_count": 1}, "hie": {"_count": 1}, "is": {"_count": 2}, "cannot": {"_count": 1}, "please": {"_count": 1}, "": {"_count": 5}, "we": {"_count": 1}, "Barty": {"_count": 4}, "always": {"_count": 1}, "does": {"_count": 1}, "will": {"_count": 1}, "called": {"_count": 1}, "wants": {"_count": 2}, "said": {"_count": 2}, "Malfoy": {"_count": 1}, "croaked": {"_count": 1}, "Sirius": {"_count": 1}, "Regulus": {"_count": 5}, "the": {"_count": 1}, "of": {"_count": 1}}, "for": {"_count": 19, "this": {"_count": 1}, "the": {"_count": 6}, "pure": {"_count": 1}, "so": {"_count": 1}, "some": {"_count": 1}, "I": {"_count": 2}, "he": {"_count": 2}, "with": {"_count": 1}, "short": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 1}, "homework": {"_count": 1}}, "Petrified": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "Mere": {"_count": 1, "shadow": {"_count": 1}}, "why": {"_count": 14, "dont": {"_count": 1}, "hadnt": {"_count": 1}, "hasnt": {"_count": 1}, "not": {"_count": 1}, "dyou": {"_count": 1}, "": {"_count": 2}, "did": {"_count": 2}, "theyre": {"_count": 1}, "Dumbledore": {"_count": 1}, "have": {"_count": 1}, "arent": {"_count": 1}, "he": {"_count": 1}}, "or": {"_count": 38, "youll": {"_count": 1}, "we": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}, "something": {"_count": 1}, "was": {"_count": 4}, "almost": {"_count": 1}, "so": {"_count": 1}, "suffer": {"_count": 1}, "not": {"_count": 2}, "at": {"_count": 3}, "perhaps": {"_count": 3}, "somebody": {"_count": 1}, "said": {"_count": 1}, "hasnt": {"_count": 1}, "as": {"_count": 2}, "Madam": {"_count": 1}, "pretending": {"_count": 1}, "a": {"_count": 1}, "Veritaserum": {"_count": 1}, "Malfoy": {"_count": 1}, "to": {"_count": 1}, "more": {"_count": 1}, "I": {"_count": 1}, "no": {"_count": 1}, "else": {"_count": 2}, "the": {"_count": 1}, "maybe": {"_count": 1}}, "LIAR": {"_count": 2, "": {"_count": 2}}, "she": {"_count": 28, "was": {"_count": 3}, "sobbed": {"_count": 2}, "said": {"_count": 6}, "whispered": {"_count": 1}, "wasnt": {"_count": 1}, "disappeared": {"_count": 1}, "shouted": {"_count": 1}, "left": {"_count": 1}, "doesnt": {"_count": 1}, "started": {"_count": 1}, "": {"_count": 2}, "died": {"_count": 1}, "wouldnt": {"_count": 1}, "murmured": {"_count": 1}, "neednt": {"_count": 1}, "got": {"_count": 1}, "changed": {"_count": 1}, "will": {"_count": 1}, "spat": {"_count": 1}}, "NEVER": {"_count": 1, "": {"_count": 1}}, "Seize": {"_count": 1, "him": {"_count": 1}}, "down": {"_count": 3, "": {"_count": 2}, "ter": {"_count": 1}}, "Tokens": {"_count": 1, "from": {"_count": 1}}, "Destroyed": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 27, "being": {"_count": 1}, "this": {"_count": 1}, "complaining": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "from": {"_count": 1}, "really": {"_count": 1}, "very": {"_count": 1}, "bad": {"_count": 1}, "that": {"_count": 4}, "for": {"_count": 1}, "one": {"_count": 1}, "exactly": {"_count": 1}, "an": {"_count": 1}, "unless": {"_count": 1}, "to": {"_count": 3}, "a": {"_count": 1}, "much": {"_count": 1}, "even": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}}, "Nevertheless": {"_count": 26, "Harry": {"_count": 4}, "he": {"_count": 5}, "Sirius": {"_count": 1}, "it": {"_count": 3}, "I": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 2}, "had": {"_count": 1}, "highly": {"_count": 1}, "she": {"_count": 1}, "Charlies": {"_count": 1}, "unless": {"_count": 1}, "Kreacher": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}, "his": {"_count": 1}}, "things": {"_count": 4, "I": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "Alas": {"_count": 4, "the": {"_count": 1}, "tor": {"_count": 1}, "who": {"_count": 1}, "I": {"_count": 1}}, "put": {"_count": 3, "it": {"_count": 1}, "fleas": {"_count": 1}, "yer": {"_count": 1}}, "when": {"_count": 11, "you": {"_count": 2}, "we": {"_count": 1}, "I": {"_count": 5}, "she": {"_count": 1}, "he": {"_count": 1}, "somebody": {"_count": 1}}, "to": {"_count": 30, "have": {"_count": 1}, "430": {"_count": 1}, "be": {"_count": 1}, "rejoin": {"_count": 1}, "kill": {"_count": 2}, "where": {"_count": 1}, "add": {"_count": 1}, "focus": {"_count": 1}, "black": {"_count": 1}, "die": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 4}, "A": {"_count": 1}, "escort": {"_count": 1}, "our": {"_count": 1}, "what": {"_count": 1}, "both": {"_count": 1}, "find": {"_count": 1}, "put": {"_count": 1}, "remind": {"_count": 1}, "the": {"_count": 1}, "understand": {"_count": 1}, "sympathize": {"_count": 1}, "keep": {"_count": 1}, "prevent": {"_count": 1}}, "Useful": {"_count": 2, "things": {"_count": 1}, "little": {"_count": 1}}, "your": {"_count": 7, "father": {"_count": 1}, "friend": {"_count": 1}, "parents": {"_count": 1}, "mean": {"_count": 1}, "task": {"_count": 1}, "times": {"_count": 1}, "": {"_count": 1}}, "Fire": {"_count": 3, "away": {"_count": 2}, "Harry": {"_count": 1}}, "Absolutely": {"_count": 10, "not": {"_count": 2}, "spiffing": {"_count": 1}, "extraordinary": {"_count": 1}, "right": {"_count": 1}, "said": {"_count": 2}, "minuscule": {"_count": 1}, "pointless": {"_count": 1}, "untrue": {"_count": 1}}, "Harryl": {"_count": 2, "Hermione": {"_count": 1}, "Ron": {"_count": 1}}, "Flamels": {"_count": 1, "just": {"_count": 1}}, "Sending": {"_count": 3, "you": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "Smiling": {"_count": 7, "and": {"_count": 1}, "serenely": {"_count": 1}, "faintly": {"_count": 1}, "to": {"_count": 2}, "slightly": {"_count": 2}}, "Sent": {"_count": 3, "owls": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "knew": {"_count": 3, "yeh": {"_count": 1}, "you": {"_count": 1}, "because": {"_count": 1}}, "dyeh": {"_count": 1, "like": {"_count": 1}}, "Fortunately": {"_count": 5, "Dumbledore": {"_count": 1}, "no": {"_count": 1}, "Malfoy": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}}, "Second": {"_count": 7, "to": {"_count": 1}, "one": {"_count": 1}, "Head": {"_count": 1}, "signal": {"_count": 1}, "on": {"_count": 1}, "problem": {"_count": 1}, "best": {"_count": 1}}, "Gryffindors": {"_count": 4, "up": {"_count": 1}, "next": {"_count": 1}, "was": {"_count": 1}, "after": {"_count": 1}}, "Third": {"_count": 5, "to": {"_count": 1}, "time": {"_count": 1}, "years": {"_count": 2}, "Floor": {"_count": 1}}, "Busy": {"_count": 2, "year": {"_count": 1}, "time": {"_count": 1}}, "Shes": {"_count": 91, "bored": {"_count": 1}, "used": {"_count": 1}, "been": {"_count": 5}, "shes": {"_count": 1}, "not": {"_count": 11}, "just": {"_count": 4}, "hidden": {"_count": 1}, "a": {"_count": 6}, "still": {"_count": 3}, "in": {"_count": 2}, "bin": {"_count": 1}, "cried": {"_count": 1}, "found": {"_count": 1}, "got": {"_count": 4}, "seeing": {"_count": 1}, "my": {"_count": 3}, "furious": {"_count": 1}, "always": {"_count": 1}, "doing": {"_count": 1}, "gone": {"_count": 2}, "here": {"_count": 1}, "part": {"_count": 1}, "lying": {"_count": 1}, "going": {"_count": 2}, "really": {"_count": 1}, "jus": {"_count": 1}, "certainly": {"_count": 1}, "Head": {"_count": 1}, "fair": {"_count": 1}, "waiting": {"_count": 1}, "canceled": {"_count": 1}, "evil": {"_count": 1}, "sick": {"_count": 1}, "horrible": {"_count": 1}, "nearly": {"_count": 1}, "taken": {"_count": 1}, "an": {"_count": 1}, "hurt": {"_count": 1}, "given": {"_count": 1}, "goin": {"_count": 1}, "never": {"_count": 1}, "": {"_count": 1}, "alive": {"_count": 1}, "probably": {"_count": 2}, "driving": {"_count": 1}, "so": {"_count": 1}, "actually": {"_count": 1}, "Rons": {"_count": 1}, "outofbounds": {"_count": 1}, "supposed": {"_count": 1}, "determined": {"_count": 1}, "great": {"_count": 1}, "written": {"_count": 1}, "right": {"_count": 1}, "Mafalda": {"_count": 1}, "like": {"_count": 1}, "tough": {"_count": 1}, "sixteen": {"_count": 1}}, "Nonsense": {"_count": 3, "Petunia": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "Pass": {"_count": 4, "the": {"_count": 1}, "me": {"_count": 2}, "it": {"_count": 1}}, "Petunia": {"_count": 12, "you": {"_count": 1}, "any": {"_count": 1}, "": {"_count": 2}, "Id": {"_count": 1}, "dear": {"_count": 1}, "glanced": {"_count": 1}, "advanced": {"_count": 1}, "shrieked": {"_count": 1}, "says": {"_count": 1}, "turned": {"_count": 1}, "gasped": {"_count": 1}}, "May": {"_count": 21, "I": {"_count": 19}, "your": {"_count": 2}}, "Excellent": {"_count": 45, "Dudley": {"_count": 1}, "": {"_count": 13}, "flying": {"_count": 1}, "idea": {"_count": 1}, "said": {"_count": 10}, "nosh": {"_count": 1}, "you": {"_count": 1}, "Neville": {"_count": 1}, "Harry": {"_count": 2}, "are": {"_count": 1}, "whispered": {"_count": 1}, "Draco": {"_count": 1}, "Dolores": {"_count": 1}, "question": {"_count": 1}, "he": {"_count": 2}, "excellent": {"_count": 3}, "on": {"_count": 1}, "Ive": {"_count": 1}, "who": {"_count": 1}, "I": {"_count": 1}}, "Precisely": {"_count": 11, "": {"_count": 6}, "said": {"_count": 4}, "what": {"_count": 1}}, "Perfect": {"_count": 5, "": {"_count": 2}, "Quidditch": {"_count": 1}, "deliberation": {"_count": 1}, "she": {"_count": 1}}, "happy": {"_count": 1, "birthday": {"_count": 1}}, "Countless": {"_count": 1, "times": {"_count": 1}}, "Underage": {"_count": 1, "wizards": {"_count": 1}}, "Todays": {"_count": 4, "your": {"_count": 1}, "will": {"_count": 1}, "not": {"_count": 1}, "going": {"_count": 1}}, "Whyre": {"_count": 1, "you": {"_count": 1}}, "Hocus": {"_count": 1, "pocus": {"_count": 1}}, "MUUUUM": {"_count": 1, "": {"_count": 1}}, "Eat": {"_count": 9, "quickly": {"_count": 1}, "slugs": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "dung": {"_count": 1}, "your": {"_count": 1}}, "Upstairs": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "keep": {"_count": 1}}, "DOBBYS": {"_count": 2, "WARNING": {"_count": 1}, "REWARD": {"_count": 1}}, "Such": {"_count": 7, "an": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 3}, "rumors": {"_count": 1}, "loyalty": {"_count": 1}}, "Ththank": {"_count": 1, "you": {"_count": 1}}, "Dobby": {"_count": 107, "the": {"_count": 2}, "has": {"_count": 13}, "wonders": {"_count": 1}, "shook": {"_count": 1}, "had": {"_count": 1}, "almost": {"_count": 1}, "is": {"_count": 10}, "shuddered": {"_count": 1}, "will": {"_count": 4}, "dissolved": {"_count": 1}, "clapped": {"_count": 1}, "leaned": {"_count": 1}, "heard": {"_count": 4}, "knows": {"_count": 2}, "did": {"_count": 2}, "blinked": {"_count": 1}, "hoped": {"_count": 1}, "might": {"_count": 1}, "warned": {"_count": 1}, "hid": {"_count": 1}, "was": {"_count": 3}, "smiled": {"_count": 1}, "gets": {"_count": 1}, "can": {"_count": 1}, "mopped": {"_count": 1}, "wants": {"_count": 1}, "must": {"_count": 2}, "came": {"_count": 2}, "went": {"_count": 1}, "threw": {"_count": 1}, "": {"_count": 4}, "whatre": {"_count": 1}, "stopped": {"_count": 1}, "on": {"_count": 1}, "likes": {"_count": 3}, "continued": {"_count": 1}, "whispered": {"_count": 1}, "Dobby": {"_count": 1}, "could": {"_count": 1}, "stood": {"_count": 1}, "doesnt": {"_count": 1}, "coming": {"_count": 1}, "looked": {"_count": 1}, "knew": {"_count": 2}, "now": {"_count": 1}, "whatve": {"_count": 1}, "hears": {"_count": 1}, "cannot": {"_count": 1}, "of": {"_count": 1}, "wheres": {"_count": 1}, "volunteered": {"_count": 1}, "does": {"_count": 1}, "said": {"_count": 1}, "hit": {"_count": 1}, "nodded": {"_count": 1}, "let": {"_count": 1}, "this": {"_count": 1}, "I": {"_count": 2}, "would": {"_count": 2}, "appeared": {"_count": 1}, "you": {"_count": 1}, "still": {"_count": 1}, "have": {"_count": 1}, "no": {"_count": 2}}, "Ssit": {"_count": 1, "down": {"_count": 1}}, "Thinking": {"_count": 6, "about": {"_count": 1}, "that": {"_count": 2}, "of": {"_count": 3}}, "that": {"_count": 34, "Harry": {"_count": 1}, "means": {"_count": 1}, "fat": {"_count": 1}, "must": {"_count": 1}, "hippogriffs": {"_count": 1}, "his": {"_count": 1}, "was": {"_count": 10}, "would": {"_count": 2}, "we": {"_count": 2}, "stuffs": {"_count": 1}, "dream": {"_count": 1}, "court": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "excellent": {"_count": 1}, "Umbridge": {"_count": 1}, "one": {"_count": 1}, "I": {"_count": 2}, "nobody": {"_count": 1}, "had": {"_count": 1}, "necklace": {"_count": 1}, "it": {"_count": 1}}, "Wwhat": {"_count": 6, "": {"_count": 3}, "am": {"_count": 1}, "are": {"_count": 1}, "do": {"_count": 1}}, "powers": {"_count": 1, "no": {"_count": 1}}, "Friends": {"_count": 4, "who": {"_count": 1}, "will": {"_count": 1}, "they": {"_count": 1}, "dont": {"_count": 1}}, "Mouth": {"_count": 2, "dry": {"_count": 1}, "hanging": {"_count": 1}}, "tell": {"_count": 8, "Petunia": {"_count": 1}, "him": {"_count": 3}, "me": {"_count": 2}, "": {"_count": 1}, "Dumbledore": {"_count": 1}}, "theyll": {"_count": 2, "kill": {"_count": 1}, "be": {"_count": 1}}, "please": {"_count": 17, "": {"_count": 14}, "pack": {"_count": 1}, "let": {"_count": 1}, "sit": {"_count": 1}}, "Cream": {"_count": 1, "splattered": {"_count": 1}}, "Read": {"_count": 6, "it": {"_count": 4}, "quickly": {"_count": 1}, "the": {"_count": 1}}, "Enjoy": {"_count": 3, "your": {"_count": 2}, "yourself": {"_count": 1}}, "Forgot": {"_count": 1, "to": {"_count": 1}}, "Slipped": {"_count": 1, "your": {"_count": 1}}, "Otherwise": {"_count": 8, "he": {"_count": 1}, "Riddle": {"_count": 1}, "hed": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "its": {"_count": 1}, "it": {"_count": 1}}, "Supposing": {"_count": 1, "he": {"_count": 1}}, "Exhausted": {"_count": 2, "stomach": {"_count": 1}, "and": {"_count": 1}}, "Leave": {"_count": 20, "me": {"_count": 4}, "him": {"_count": 5}, "Scabbers": {"_count": 1}, "the": {"_count": 4}, "it": {"_count": 4}, "what": {"_count": 1}, "your": {"_count": 1}}, "cut": {"_count": 1, "it": {"_count": 1}}, "Moonlight": {"_count": 2, "was": {"_count": 2}}, "Grinning": {"_count": 5, "at": {"_count": 1}, "stupidly": {"_count": 1}, "faces": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}}, "Tie": {"_count": 1, "that": {"_count": 1}}, "Panting": {"_count": 8, "Ron": {"_count": 1}, "Harry": {"_count": 3}, "slightly": {"_count": 3}, "and": {"_count": 1}}, "Watch": {"_count": 10, "out": {"_count": 2}, "it": {"_count": 2}, "him": {"_count": 1}, "me": {"_count": 1}, "your": {"_count": 1}, "yerselves": {"_count": 1}, "where": {"_count": 1}, "what": {"_count": 1}}, "Inch": {"_count": 1, "by": {"_count": 1}}, "THAT": {"_count": 1, "RUDDY": {"_count": 1}}, "Definitely": {"_count": 9, "dodgy": {"_count": 1}, "not": {"_count": 2}, "said": {"_count": 4}, "an": {"_count": 1}, "heard": {"_count": 1}}, "Someones": {"_count": 13, "idea": {"_count": 1}, "tampered": {"_count": 1}, "fixed": {"_count": 1}, "been": {"_count": 2}, "spilled": {"_count": 1}, "coming": {"_count": 2}, "told": {"_count": 1}, "whispering": {"_count": 1}, "sent": {"_count": 1}, "on": {"_count": 1}, "invisible": {"_count": 1}}, "Houseelves": {"_count": 6, "come": {"_count": 1}, "is": {"_count": 2}, "does": {"_count": 1}, "dont": {"_count": 1}, "said": {"_count": 1}}, "Judging": {"_count": 7, "by": {"_count": 7}}, "Percys": {"_count": 10, "been": {"_count": 2}, "in": {"_count": 1}, "Head": {"_count": 1}, "started": {"_count": 1}, "enjoying": {"_count": 1}, "really": {"_count": 1}, "letter": {"_count": 2}, "eyes": {"_count": 1}}, "Hopefully": {"_count": 2, "well": {"_count": 1}, "whatever": {"_count": 1}}, "Ottery": {"_count": 1, "St": {"_count": 1}}, "Catchpole": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "from": {"_count": 2}, "on": {"_count": 1}}, "Lower": {"_count": 5, "and": {"_count": 4}, "your": {"_count": 1}}, "Touchdown": {"_count": 1, "": {"_count": 1}}, "Beds": {"_count": 1, "empty": {"_count": 1}}, "YOU": {"_count": 13, "COULD": {"_count": 1}, "DO": {"_count": 1}, "CHEATING": {"_count": 1}, "FILTHY": {"_count": 1}, "VE": {"_count": 2}, "HAVENT": {"_count": 1}, "CANT": {"_count": 1}, "SEE": {"_count": 1}, "DONT": {"_count": 1}, "STANDING": {"_count": 1}, "": {"_count": 2}}, "Arthur": {"_count": 23, "and": {"_count": 1}, "Weasley": {"_count": 3}, "what": {"_count": 1}, "old": {"_count": 1}, "Ive": {"_count": 1}, "youre": {"_count": 1}, "": {"_count": 4}, "youve": {"_count": 1}, "tried": {"_count": 1}, "back": {"_count": 1}, "I": {"_count": 1}, "wont": {"_count": 1}, "she": {"_count": 1}, "its": {"_count": 1}, "hes": {"_count": 1}, "told": {"_count": 2}, "heard": {"_count": 1}}, "Ginny": {"_count": 97, "said": {"_count": 5}, "seemed": {"_count": 1}, "went": {"_count": 1}, "was": {"_count": 12}, "Weasley": {"_count": 6}, "s": {"_count": 2}, "didnt": {"_count": 2}, "looked": {"_count": 3}, "opened": {"_count": 1}, "jumped": {"_count": 1}, "had": {"_count": 5}, "dont": {"_count": 1}, "simply": {"_count": 1}, "Ron": {"_count": 2}, "grab": {"_count": 1}, "It": {"_count": 1}, "hasnt": {"_count": 1}, "what": {"_count": 1}, "who": {"_count": 4}, "giggled": {"_count": 2}, "caught": {"_count": 2}, "and": {"_count": 5}, "named": {"_count": 1}, "you": {"_count": 2}, "your": {"_count": 1}, "grimaced": {"_count": 2}, "laughed": {"_count": 1}, "suppressed": {"_count": 1}, "used": {"_count": 1}, "however": {"_count": 1}, "walked": {"_count": 1}, "raised": {"_count": 2}, "shrugged": {"_count": 1}, "Luna": {"_count": 1}, "gave": {"_count": 2}, "are": {"_count": 1}, "": {"_count": 2}, "whose": {"_count": 1}, "she": {"_count": 1}, "mimed": {"_count": 1}, "where": {"_count": 1}, "came": {"_count": 1}, "did": {"_count": 2}, "playing": {"_count": 1}, "listen": {"_count": 1}, "tried": {"_count": 1}, "poured": {"_count": 1}, "cleared": {"_count": 1}, "glanced": {"_count": 1}, "sends": {"_count": 1}, "turned": {"_count": 1}, "well": {"_count": 1}, "kissed": {"_count": 1}}, "Mum": {"_count": 28, "we": {"_count": 1}, "fancies": {"_count": 1}, "wouldnt": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 7}, "found": {"_count": 1}, "youve": {"_count": 1}, "an": {"_count": 1}, "Bill": {"_count": 1}, "shut": {"_count": 1}, "wont": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "says": {"_count": 1}, "hasnt": {"_count": 1}, "get": {"_count": 1}, "are": {"_count": 1}, "dyou": {"_count": 1}, "can": {"_count": 1}}, "Yawning": {"_count": 1, "and": {"_count": 1}}, "Muggles": {"_count": 12, "have": {"_count": 1}, "screaming": {"_count": 1}, "do": {"_count": 1}, "wear": {"_count": 1}, "are": {"_count": 1}, "cant": {"_count": 1}, "and": {"_count": 1}, "whispered": {"_count": 1}, "who": {"_count": 1}, "remain": {"_count": 1}, "bustled": {"_count": 1}, "forced": {"_count": 1}}, "Gerroff": {"_count": 1, "me": {"_count": 1}}, "Pitiful": {"_count": 1, "said": {"_count": 1}}, "Dads": {"_count": 4, "too": {"_count": 1}, "home": {"_count": 1}, "reprinting": {"_count": 1}, "SecretKeeper": {"_count": 1}}, "Find": {"_count": 5, "anything": {"_count": 1}, "someone": {"_count": 1}, "something": {"_count": 1}, "Mundungus": {"_count": 1}, "out": {"_count": 1}}, "Mortlake": {"_count": 1, "was": {"_count": 1}}, "Sell": {"_count": 1, "them": {"_count": 1}}, "Ccars": {"_count": 1, "Molly": {"_count": 1}}, "Imagine": {"_count": 13, "a": {"_count": 1}, "how": {"_count": 2}, "the": {"_count": 1}, "if": {"_count": 3}, "them": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}, "having": {"_count": 1}, "wasting": {"_count": 1}, "losing": {"_count": 1}}, "Ninth": {"_count": 1, "in": {"_count": 1}}, "AT": {"_count": 1, "FLOURISH": {"_count": 1}}, "Fascinating": {"_count": 3, "": {"_count": 1}, "creatures": {"_count": 1}, "said": {"_count": 1}}, "Ingenious": {"_count": 2, "really": {"_count": 1}, "said": {"_count": 1}}, "Pretending": {"_count": 3, "he": {"_count": 2}, "they": {"_count": 1}}, "Letters": {"_count": 2, "from": {"_count": 1}, "addressed": {"_count": 1}}, "SECONDYEAR": {"_count": 1, "STUDENTS": {"_count": 1}}, "Lockharts": {"_count": 4, "books": {"_count": 1}, "comments": {"_count": 1}, "idea": {"_count": 1}, "hands": {"_count": 1}}, "Lovely": {"_count": 9, "day": {"_count": 2}, "to": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 1}, "evening": {"_count": 1}, "madam": {"_count": 1}, "isnt": {"_count": 1}}, "Errol": {"_count": 5, "": {"_count": 1}, "said": {"_count": 1}, "slumped": {"_count": 1}, "opened": {"_count": 1}, "seemed": {"_count": 1}}, "W": {"_count": 126, "": {"_count": 124}, "what": {"_count": 2}}, "L": {"_count": 76, "": {"_count": 75}, "said": {"_count": 1}}, "s": {"_count": 52, "and": {"_count": 3}, "or": {"_count": 2}, "Ordinary": {"_count": 1}, "Nastily": {"_count": 1}, "Fred": {"_count": 1}, "each": {"_count": 3}, "as": {"_count": 1}, "were": {"_count": 4}, "": {"_count": 13}, "till": {"_count": 1}, "most": {"_count": 1}, "said": {"_count": 3}, "George": {"_count": 1}, "are": {"_count": 2}, "you": {"_count": 1}, "still": {"_count": 1}, "coming": {"_count": 1}, "good": {"_count": 1}, "nor": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}, "from": {"_count": 1}, "drew": {"_count": 1}, "he": {"_count": 1}, "during": {"_count": 1}, "thats": {"_count": 1}, "anyones": {"_count": 1}, "note": {"_count": 1}, "locket": {"_count": 1}}, "Ordinary": {"_count": 1, "Wizarding": {"_count": 1}}, "Stored": {"_count": 1, "in": {"_count": 1}}, "Floo": {"_count": 3, "powders": {"_count": 1}, "powder": {"_count": 1}, "Network": {"_count": 1}}, "DDiagon": {"_count": 1, "Alley": {"_count": 1}}, "Dizzy": {"_count": 1, "and": {"_count": 1}}, "Evillooking": {"_count": 1, "masks": {"_count": 1}}, "Nose": {"_count": 2, "still": {"_count": 1}, "out": {"_count": 1}}, "Seconds": {"_count": 18, "later": {"_count": 17}, "after": {"_count": 1}}, "Special": {"_count": 2, "permission": {"_count": 1}, "favor": {"_count": 1}}, "famous": {"_count": 1, "for": {"_count": 1}}, "everyone": {"_count": 3, "thinks": {"_count": 2}, "should": {"_count": 1}}, "Selling": {"_count": 1, "": {"_count": 1}}, "Insert": {"_count": 1, "a": {"_count": 1}}, "Ha": {"_count": 12, "": {"_count": 8}, "haa": {"_count": 1}, "he": {"_count": 1}, "ha": {"_count": 2}}, "Cursed": {"_count": 2, "Has": {"_count": 1}, "": {"_count": 1}}, "Muttering": {"_count": 4, "darkly": {"_count": 1}, "angrily": {"_count": 1}, "and": {"_count": 1}, "about": {"_count": 1}}, "Clutching": {"_count": 2, "his": {"_count": 2}}, "Skulkin": {"_count": 1, "around": {"_count": 1}}, "Lousy": {"_count": 2, "Muggles": {"_count": 1}, "croaked": {"_count": 1}}, "Mollys": {"_count": 2, "frantic": {"_count": 1}, "curse": {"_count": 1}}, "Knockturn": {"_count": 1, "Alley": {"_count": 1}}, "Guess": {"_count": 4, "who": {"_count": 1}, "what": {"_count": 3}}, "Molly": {"_count": 20, "look": {"_count": 1}, "dear": {"_count": 1}, "how": {"_count": 2}, "wouldnt": {"_count": 1}, "Im": {"_count": 1}, "are": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 3}, "doesnt": {"_count": 1}, "youre": {"_count": 1}, "and": {"_count": 2}, "Ill": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}, "your": {"_count": 1}, "Arthur": {"_count": 1}}, "Filibusters": {"_count": 1, "Fabulous": {"_count": 1}}, "m": {"_count": 5, "": {"_count": 5}}, "mind": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "Gilderoy": {"_count": 9, "Lockhart": {"_count": 7}, "Lockharts": {"_count": 1}, "does": {"_count": 1}}, "Together": {"_count": 17, "you": {"_count": 1}, "they": {"_count": 9}, "": {"_count": 1}, "we": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 4}}, "Ladies": {"_count": 8, "and": {"_count": 7}, "first": {"_count": 1}}, "Staggering": {"_count": 3, "slightly": {"_count": 1}, "under": {"_count": 1}, "he": {"_count": 1}}, "drawled": {"_count": 1, "Malfoy": {"_count": 1}}, "Lucius": {"_count": 17, "said": {"_count": 1}, "Malfoy": {"_count": 11}, "my": {"_count": 1}, "is": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}, "Narcissa": {"_count": 1}}, "Dozens": {"_count": 1, "of": {"_count": 1}}, "Rotten": {"_count": 1, "ter": {"_count": 1}}, "brawling": {"_count": 1, "in": {"_count": 1}}, "5": {"_count": 5, "THE": {"_count": 3}, "WEASLEYS": {"_count": 1}, "FALLEN": {"_count": 1}}, "Whatre": {"_count": 20, "we": {"_count": 6}, "you": {"_count": 12}, "those": {"_count": 1}, "they": {"_count": 1}}, "Check": {"_count": 4, "that": {"_count": 1}, "whos": {"_count": 1}, "under": {"_count": 1}, "the": {"_count": 1}}, "Uhoh": {"_count": 5, "said": {"_count": 3}, "Harry": {"_count": 1}, "": {"_count": 1}}, "Dip": {"_count": 1, "back": {"_count": 1}}, "Due": {"_count": 2, "north": {"_count": 1}, "to": {"_count": 1}}, "London": {"_count": 1, "was": {"_count": 1}}, "Stars": {"_count": 2, "were": {"_count": 1}, "winking": {"_count": 1}}, "Straight": {"_count": 5, "ahead": {"_count": 1}, "into": {"_count": 2}, "across": {"_count": 1}, "in": {"_count": 1}}, "Narrow": {"_count": 3, "jets": {"_count": 1}, "": {"_count": 2}}, "Glancing": {"_count": 3, "out": {"_count": 1}, "around": {"_count": 1}, "over": {"_count": 1}}, "IVoooooo": {"_count": 1, "": {"_count": 1}}, "Steam": {"_count": 4, "was": {"_count": 3}, "gushed": {"_count": 1}}, "aargh": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "Reverse": {"_count": 1, "": {"_count": 1}}, "Loud": {"_count": 4, "thuds": {"_count": 1}, "hangings": {"_count": 1}, "jeering": {"_count": 1}, "singing": {"_count": 1}}, "Dadll": {"_count": 1, "kill": {"_count": 1}}, "Stiff": {"_count": 1, "cold": {"_count": 1}}, "Innumerable": {"_count": 2, "candles": {"_count": 1}, "chains": {"_count": 1}}, "Overhead": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "Through": {"_count": 13, "the": {"_count": 10}, "a": {"_count": 2}, "squares": {"_count": 1}}, "Last": {"_count": 17, "term": {"_count": 1}, "year": {"_count": 4}, "time": {"_count": 4}, "night": {"_count": 3}, "week": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}, "years": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "Cruel": {"_count": 1, "sarcastic": {"_count": 1}}, "at": {"_count": 10, "noon": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 3}, "posing": {"_count": 1}, "least": {"_count": 1}, "nightfall": {"_count": 1}}, "Six": {"_count": 10, "or": {"_count": 2}, "solid": {"_count": 1}, "dementors": {"_count": 1}, "months": {"_count": 1}, "Sickles": {"_count": 1}, "oclock": {"_count": 1}, "years": {"_count": 1}, "weeks": {"_count": 1}, "of": {"_count": 1}}, "his": {"_count": 10, "own": {"_count": 1}, "master": {"_count": 1}, "parents": {"_count": 1}, "fan": {"_count": 1}, "voice": {"_count": 1}, "": {"_count": 1}, "wide": {"_count": 1}, "father": {"_count": 1}, "mother": {"_count": 1}, "mood": {"_count": 1}}, "Silence": {"_count": 18, "": {"_count": 3}, "except": {"_count": 1}, "pressed": {"_count": 1}, "fell": {"_count": 9}, "once": {"_count": 1}, "said": {"_count": 1}, "spread": {"_count": 1}, "again": {"_count": 1}}, "Doesnt": {"_count": 14, "want": {"_count": 2}, "know": {"_count": 2}, "sound": {"_count": 1}, "camp": {"_count": 1}, "trust": {"_count": 1}, "think": {"_count": 1}, "he": {"_count": 1}, "stop": {"_count": 1}, "it": {"_count": 1}, "matter": {"_count": 2}, "your": {"_count": 1}}, "Skip": {"_count": 1, "the": {"_count": 1}}, "Arms": {"_count": 1, "reached": {"_count": 1}}, "Inspired": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "Night": {"_count": 9, "Harry": {"_count": 2}, "had": {"_count": 1}, "grunted": {"_count": 1}, "said": {"_count": 1}, "all": {"_count": 1}, "Dear": {"_count": 1}, "Mr": {"_count": 1}, "and": {"_count": 1}}, "Unbelievablel": {"_count": 1, "beamed": {"_count": 1}}, "Cool": {"_count": 10, "said": {"_count": 3}, "sir": {"_count": 1}, "": {"_count": 2}, "name": {"_count": 1}, "Harry": {"_count": 1}, "muttered": {"_count": 1}, "eh": {"_count": 1}}, "Amazing": {"_count": 3, "said": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 1}}, "6": {"_count": 1, "GILDEROY": {"_count": 1}}, "Mails": {"_count": 1, "due": {"_count": 1}}, "Open": {"_count": 9, "it": {"_count": 4}, "up": {"_count": 3}, "said": {"_count": 1}, "the": {"_count": 1}}, "STEALING": {"_count": 1, "THE": {"_count": 1}}, "LETTER": {"_count": 1, "FROM": {"_count": 1}}, "ABSOLUTELY": {"_count": 1, "DISGUSTED": {"_count": 1}}, "Completely": {"_count": 8, "nonplussed": {"_count": 1}, "out": {"_count": 1}, "forgetting": {"_count": 1}, "lousy": {"_count": 1}, "cured": {"_count": 1}, "bewildered": {"_count": 1}, "gaga": {"_count": 1}, "sure": {"_count": 1}}, "Stood": {"_count": 1, "out": {"_count": 1}}, "Gave": {"_count": 4, "you": {"_count": 2}, "the": {"_count": 1}, "em": {"_count": 1}}, "Natural": {"_count": 3, "to": {"_count": 1}, "of": {"_count": 1}, "mists": {"_count": 1}}, "Mandrake": {"_count": 1, "or": {"_count": 1}}, "Justin": {"_count": 7, "FinchFletchley": {"_count": 3}, "actually": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "mustve": {"_count": 1}}, "Wasnt": {"_count": 5, "that": {"_count": 1}, "anybody": {"_count": 1}, "easy": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "Awfully": {"_count": 2, "brave": {"_count": 1}, "sorry": {"_count": 1}}, "Unable": {"_count": 2, "to": {"_count": 2}}, "\u2018Its": {"_count": 1, "your": {"_count": 1}}, "Defense": {"_count": 6, "Against": {"_count": 5}, "against": {"_count": 1}}, "Everyones": {"_count": 8, "told": {"_count": 1}, "just": {"_count": 1}, "eyes": {"_count": 1}, "worst": {"_count": 1}, "in": {"_count": 1}, "been": {"_count": 1}, "up": {"_count": 1}, "head": {"_count": 1}}, "Colin": {"_count": 6, "drew": {"_count": 1}, "fumbled": {"_count": 1}, "was": {"_count": 1}, "saw": {"_count": 1}, "I": {"_count": 1}, "went": {"_count": 1}}, "Jealous": {"_count": 4, "": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}, "type": {"_count": 1}}, "Weasley": {"_count": 18, "would": {"_count": 1}, "you": {"_count": 4}, "has": {"_count": 1}, "slice": {"_count": 1}, "stay": {"_count": 1}, "": {"_count": 4}, "straighten": {"_count": 1}, "was": {"_count": 1}, "your": {"_count": 1}, "can": {"_count": 1}, "is": {"_count": 1}, "saves": {"_count": 1}}, "Deaf": {"_count": 1, "to": {"_count": 1}}, "Lockhart": {"_count": 27, "placed": {"_count": 1}, "gulped": {"_count": 1}, "beamed": {"_count": 1}, "stepped": {"_count": 1}, "looking": {"_count": 1}, "stopped": {"_count": 1}, "ll": {"_count": 1}, "hadnt": {"_count": 1}, "waved": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 4}, "teamed": {"_count": 1}, "cuffed": {"_count": 1}, "wearing": {"_count": 1}, "had": {"_count": 2}, "bounded": {"_count": 1}, "who": {"_count": 1}, "blanched": {"_count": 1}, "gazed": {"_count": 1}, "slid": {"_count": 1}, "got": {"_count": 1}, "peered": {"_count": 1}, "ambled": {"_count": 1}}, "Dean": {"_count": 20, "and": {"_count": 3}, "Thomas": {"_count": 6}, "swore": {"_count": 1}, "who": {"_count": 2}, "got": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "carried": {"_count": 1}, "produced": {"_count": 1}, "had": {"_count": 1}, "made": {"_count": 1}}, "Freshly": {"_count": 1, "caught": {"_count": 1}}, "Devilish": {"_count": 1, "tricky": {"_count": 1}}, "Hands": {"_count": 5, "on": {"_count": 1}, "were": {"_count": 1}, "still": {"_count": 1}, "shaking": {"_count": 1}, "softer": {"_count": 1}}, "Whassamatter": {"_count": 1, "": {"_count": 1}}, "Stifflegged": {"_count": 1, "and": {"_count": 1}}, "Angelina": {"_count": 12, "Alicia": {"_count": 2}, "Johnson": {"_count": 1}, "said": {"_count": 1}, "raised": {"_count": 1}, "gave": {"_count": 1}, "kept": {"_count": 1}, "however": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "still": {"_count": 1}}, "Oooh": {"_count": 8, "said": {"_count": 1}, "look": {"_count": 1}, "it": {"_count": 1}, "thanks": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "Crackpots": {"_count": 1}, "who": {"_count": 1}}, "Givin": {"_count": 1, "me": {"_count": 1}}, "Gettin": {"_count": 2, "very": {"_count": 1}, "on": {"_count": 1}}, "Mudbloods": {"_count": 3, "a": {"_count": 1}, "filth": {"_count": 1}, "Scum": {"_count": 1}}, "Dirty": {"_count": 1, "blood": {"_count": 1}}, "Bu": {"_count": 3, "maybe": {"_count": 1}, "bu": {"_count": 1}, "they": {"_count": 1}}, "Spect": {"_count": 2, "Lucius": {"_count": 1}, "its": {"_count": 1}}, "Least": {"_count": 3, "yer": {"_count": 1}, "loved": {"_count": 2}}, "Treacle": {"_count": 2, "toffee": {"_count": 1}, "tart": {"_count": 1}}, "Fer": {"_count": 4, "the": {"_count": 2}, "one": {"_count": 1}, "medicinal": {"_count": 1}}, "should": {"_count": 3, "be": {"_count": 1}, "have": {"_count": 2}}, "Met": {"_count": 3, "her": {"_count": 1}, "a": {"_count": 1}, "up": {"_count": 1}}, "Argus": {"_count": 1, "Filch": {"_count": 1}}, "Certainly": {"_count": 22, "not": {"_count": 2}, "certainly": {"_count": 1}, "I": {"_count": 4}, "nothing": {"_count": 1}, "said": {"_count": 4}, "Narcissa": {"_count": 1}, "when": {"_count": 1}, "her": {"_count": 1}, "they": {"_count": 1}, "if": {"_count": 1}, "there": {"_count": 1}, "we": {"_count": 2}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Eight": {"_count": 3, "oclock": {"_count": 1}, "of": {"_count": 1}, "or": {"_count": 1}}, "Answering": {"_count": 1, "Lockharts": {"_count": 1}}, "hell": {"_count": 2, "be": {"_count": 2}}, "Saturday": {"_count": 3, "afternoon": {"_count": 1}, "dawned": {"_count": 1}, "": {"_count": 1}}, "come": {"_count": 7, "to": {"_count": 1}, "on": {"_count": 4}, "out": {"_count": 1}, "": {"_count": 1}}, "Fourteen": {"_count": 4, "times": {"_count": 1}, "inches": {"_count": 1}, "years": {"_count": 1}, "of": {"_count": 1}}, "d": {"_count": 1, "THE": {"_count": 1}}, "Raindrops": {"_count": 1, "the": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "Fuming": {"_count": 4, "Nearly": {"_count": 1}, "almost": {"_count": 1}, "Harry": {"_count": 2}}, "Drawn": {"_count": 1, "to": {"_count": 1}}, "Filth": {"_count": 3, "": {"_count": 3}}, "Mess": {"_count": 1, "and": {"_count": 1}}, "Wooden": {"_count": 1, "filing": {"_count": 1}}, "Dung": {"_count": 3, "he": {"_count": 1}, "likes": {"_count": 1}, "panicked": {"_count": 1}}, "frog": {"_count": 1, "brains": {"_count": 1}}, "rat": {"_count": 1, "intestines": {"_count": 1}}, "wheres": {"_count": 1, "the": {"_count": 1}}, "Name": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "o": {"_count": 1}}, "Crime": {"_count": 2, "": {"_count": 2}}, "befouling": {"_count": 1, "the": {"_count": 1}}, "suggested": {"_count": 1, "sentence": {"_count": 1}}, "Dabbing": {"_count": 1, "at": {"_count": 1}}, "PEEVES": {"_count": 2, "": {"_count": 2}}, "Nettles": {"_count": 2, "of": {"_count": 1}, "grew": {"_count": 1}}, "J": {"_count": 4, "": {"_count": 3}, "THE": {"_count": 1}}, "Prod": {"_count": 1, "of": {"_count": 1}}, "Stuffing": {"_count": 1, "the": {"_count": 1}}, "Sounds": {"_count": 4, "dead": {"_count": 1}, "like": {"_count": 2}, "to": {"_count": 1}}, "Rain": {"_count": 6, "was": {"_count": 3}, "lashed": {"_count": 2}, "spattered": {"_count": 1}}, "Shall": {"_count": 27, "we": {"_count": 23}, "I": {"_count": 3}, "shall": {"_count": 1}}, "Careful": {"_count": 9, "not": {"_count": 4}, "there": {"_count": 1}, "Potter": {"_count": 1}, "Weasley": {"_count": 1}, "Vernon": {"_count": 1}, "": {"_count": 1}}, "Turn": {"_count": 8, "back": {"_count": 1}, "out": {"_count": 2}, "round": {"_count": 1}, "the": {"_count": 1}, "please": {"_count": 1}, "over": {"_count": 1}, "on": {"_count": 1}}, "Large": {"_count": 5, "rotten": {"_count": 1}, "chunks": {"_count": 1}, "words": {"_count": 1}, "signs": {"_count": 1}, "groups": {"_count": 1}}, "Almost": {"_count": 6, "said": {"_count": 1}, "as": {"_count": 2}, "literally": {"_count": 1}, "absentmindedly": {"_count": 1}, "against": {"_count": 1}}, "Unlike": {"_count": 7, "the": {"_count": 2}, "Dobby": {"_count": 1}, "fullgrown": {"_count": 1}, "Dumbledore": {"_count": 2}, "Hagrid": {"_count": 1}}, "Nibbles": {"_count": 1, "": {"_count": 1}}, "Heard": {"_count": 3, "you": {"_count": 1}, "the": {"_count": 1}, "Death": {"_count": 1}}, "Rude": {"_count": 1, "you": {"_count": 1}}, "Myrtle": {"_count": 11, "sniffed": {"_count": 1}, "eyed": {"_count": 1}, "gave": {"_count": 2}, "puffed": {"_count": 1}, "goggled": {"_count": 1}, "": {"_count": 3}, "there": {"_count": 1}, "Harry": {"_count": 1}}, "Enjoying": {"_count": 3, "yourselves": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "Nick": {"_count": 5, "": {"_count": 2}, "can": {"_count": 1}, "said": {"_count": 1}, "youve": {"_count": 1}}, "Live": {"_count": 1, "uns": {"_count": 1}}, "Pudding": {"_count": 1, "might": {"_count": 1}}, "rip": {"_count": 1, "": {"_count": 1}}, "tear": {"_count": 2, "": {"_count": 2}}, "kill": {"_count": 2, "": {"_count": 2}}, "time": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "Distantly": {"_count": 2, "from": {"_count": 1}, "he": {"_count": 1}}, "Looc": {"_count": 1, "": {"_count": 1}}, "Foothigh": {"_count": 1, "words": {"_count": 1}}, "ENEMIES": {"_count": 1, "OF": {"_count": 1}}, "Shouldnt": {"_count": 7, "we": {"_count": 1}, "have": {"_count": 2}, "he": {"_count": 2}, "take": {"_count": 1}, "be": {"_count": 1}}, "Enemies": {"_count": 1, "of": {"_count": 1}}, "9": {"_count": 5, "THE": {"_count": 3}, "GRIM": {"_count": 1}, "A": {"_count": 1}}, "Much": {"_count": 5, "as": {"_count": 1}, "worse": {"_count": 1}, "of": {"_count": 1}, "more": {"_count": 1}, "also": {"_count": 1}}, "Ask": {"_count": 14, "him": {"_count": 2}, "her": {"_count": 2}, "them": {"_count": 1}, "McGonagall": {"_count": 2}, "Ron": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 2}, "away": {"_count": 3}}, "Without": {"_count": 31, "any": {"_count": 2}, "warning": {"_count": 2}, "magid": {"_count": 1}, "thinking": {"_count": 1}, "knowing": {"_count": 1}, "a": {"_count": 4}, "Muggle": {"_count": 1}, "it": {"_count": 1}, "glancing": {"_count": 1}, "pausing": {"_count": 3}, "another": {"_count": 1}, "ever": {"_count": 1}, "preamble": {"_count": 1}, "really": {"_count": 1}, "the": {"_count": 1}, "speaking": {"_count": 2}, "realizing": {"_count": 2}, "waiting": {"_count": 1}, "looking": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}, "meaning": {"_count": 1}}, "Innocent": {"_count": 2, "until": {"_count": 1}, "but": {"_count": 1}}, "Professer": {"_count": 1, "Sprout": {"_count": 1}}, "Hearing": {"_count": 2, "voices": {"_count": 1}, "familiar": {"_count": 1}}, "mightve": {"_count": 1, "been": {"_count": 1}}, "Kind": {"_count": 3, "of": {"_count": 2}, "boy": {"_count": 1}}, "Stuff": {"_count": 2, "like": {"_count": 2}}, "Nor": {"_count": 17, "could": {"_count": 1}, "am": {"_count": 1}, "apparently": {"_count": 1}, "did": {"_count": 4}, "were": {"_count": 1}, "does": {"_count": 1}, "ours": {"_count": 1}, "do": {"_count": 3}, "me": {"_count": 1}, "had": {"_count": 1}, "have": {"_count": 2}}, "Somewhere": {"_count": 15, "over": {"_count": 1}, "there": {"_count": 1}, "above": {"_count": 2}, "very": {"_count": 1}, "he": {"_count": 1}, "about": {"_count": 1}, "far": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 3}, "close": {"_count": 1}, "near": {"_count": 1}, "": {"_count": 1}}, "History": {"_count": 4, "of": {"_count": 4}}, "Ancient": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 78, "Chamber": {"_count": 1}, "death": {"_count": 1}, "scariest": {"_count": 1}, "Potters": {"_count": 1}, "day": {"_count": 2}, "Gr": {"_count": 1}, "servant": {"_count": 2}, "time": {"_count": 1}, "voice": {"_count": 1}, "fireplace": {"_count": 1}, "boy": {"_count": 3}, "Bulgarian": {"_count": 1}, "most": {"_count": 2}, "very": {"_count": 2}, "families": {"_count": 1}, "tournament": {"_count": 1}, "Killing": {"_count": 1}, "first": {"_count": 2}, "only": {"_count": 3}, "way": {"_count": 1}, "Dark": {"_count": 4}, "next": {"_count": 1}, "Malfoys": {"_count": 1}, "Ministry": {"_count": 1}, "other": {"_count": 1}, "Dumbledore": {"_count": 1}, "means": {"_count": 1}, "unblockable": {"_count": 1}, "ghost": {"_count": 2}, "torso": {"_count": 1}, "dense": {"_count": 1}, "one": {"_count": 2}, "others": {"_count": 1}, "handles": {"_count": 1}, "usual": {"_count": 1}, "point": {"_count": 1}, "indignity": {"_count": 1}, "Daily": {"_count": 1}, "vision": {"_count": 1}, "rest": {"_count": 1}, "thing": {"_count": 1}, "special": {"_count": 1}, "weapon": {"_count": 1}, "fact": {"_count": 1}, "feast": {"_count": 1}, "Bones": {"_count": 1}, "dementors": {"_count": 1}, "prudent": {"_count": 1}, "subject": {"_count": 1}, "Riddle": {"_count": 1}, "board": {"_count": 1}, "book": {"_count": 1}, "last": {"_count": 1}, "lightningstruck": {"_count": 1}, "cup": {"_count": 2}, "snake": {"_count": 2}, "locket": {"_count": 1}, "shock": {"_count": 1}, "wand": {"_count": 1}, "doe": {"_count": 1}, "PPotter": {"_count": 1}, "prediction": {"_count": 1}}, "Reliable": {"_count": 1, "historical": {"_count": 1}}, "Naturally": {"_count": 16, "the": {"_count": 2}, "said": {"_count": 2}, "he": {"_count": 3}, "it": {"_count": 1}, "naturally": {"_count": 1}, "we": {"_count": 1}, "these": {"_count": 1}, "I": {"_count": 3}, "many": {"_count": 1}, "with": {"_count": 1}}, "better": {"_count": 2, "be": {"_count": 1}, "hurry": {"_count": 1}}, "Hiya": {"_count": 2, "Harry": {"_count": 2}}, "Scorch": {"_count": 2, "marks": {"_count": 2}}, "Level": {"_count": 7, "with": {"_count": 1}, "seven": {"_count": 1}, "five": {"_count": 1}, "four": {"_count": 1}, "three": {"_count": 1}, "two": {"_count": 1}, "eight": {"_count": 1}}, "RON": {"_count": 2, "": {"_count": 2}}, "Clues": {"_count": 1, "you": {"_count": 1}}, "Handing": {"_count": 1, "it": {"_count": 1}}, "Hard": {"_count": 4, "to": {"_count": 3}, "left": {"_count": 1}}, "Simple": {"_count": 1, "yet": {"_count": 1}}, "Homework": {"_count": 4, "compose": {"_count": 1}, "kindly": {"_count": 1}, "said": {"_count": 1}, "twelve": {"_count": 1}}, "Wait": {"_count": 40, "till": {"_count": 4}, "here": {"_count": 4}, "there": {"_count": 1}, "with": {"_count": 1}, "a": {"_count": 8}, "for": {"_count": 4}, "I": {"_count": 1}, "": {"_count": 8}, "until": {"_count": 1}, "theres": {"_count": 1}, "said": {"_count": 5}, "Bill": {"_count": 1}, "Bogrod": {"_count": 1}}, "Possibly": {"_count": 6, "my": {"_count": 1}, "Lockhart": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "because": {"_count": 1}, "the": {"_count": 1}}, "Tomorrows": {"_count": 1, "the": {"_count": 1}}, "Moste": {"_count": 1, "Potente": {"_count": 1}}, "Lacewing": {"_count": 1, "flies": {"_count": 1}}, "think": {"_count": 7, "threatening": {"_count": 1}, "what": {"_count": 1}, "about": {"_count": 4}, "I": {"_count": 1}}, "Chest": {"_count": 1, "heaving": {"_count": 1}}, "Close": {"_count": 10, "one": {"_count": 1}, "up": {"_count": 3}, "enough": {"_count": 1}, "shave": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 2}, "to": {"_count": 1}}, "Gotcha": {"_count": 1, "": {"_count": 1}}, "\u2018Get": {"_count": 1, "the": {"_count": 1}}, "Higher": {"_count": 2, "and": {"_count": 2}}, "Slightly": {"_count": 4, "dizzy": {"_count": 1}, "ashamed": {"_count": 1}, "cross": {"_count": 1}, "taken": {"_count": 1}}, "Training": {"_count": 1, "for": {"_count": 1}}, "WHAM": {"_count": 1, "": {"_count": 1}}, "Dimly": {"_count": 3, "dazed": {"_count": 1}, "he": {"_count": 2}}, "Aha": {"_count": 8, "he": {"_count": 1}, "": {"_count": 6}, "said": {"_count": 1}}, "Lie": {"_count": 3, "back": {"_count": 1}, "down": {"_count": 1}, "low": {"_count": 1}}, "Poking": {"_count": 2, "out": {"_count": 1}, "his": {"_count": 1}}, "Regrowing": {"_count": 1, "bones": {"_count": 1}}, "Filthy": {"_count": 3, "and": {"_count": 1}, "disheveled": {"_count": 1}, "halfbreeds": {"_count": 1}}, "Unbelievable": {"_count": 2, "flying": {"_count": 1}, "": {"_count": 1}}, "Hours": {"_count": 1, "and": {"_count": 1}}, "Tis": {"_count": 4, "a": {"_count": 2}, "part": {"_count": 1}, "strong": {"_count": 1}}, "Minerva": {"_count": 10, "found": {"_count": 1}, "kindly": {"_count": 1}, "could": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "go": {"_count": 1}, "is": {"_count": 1}, "the": {"_count": 1}, "do": {"_count": 1}, "": {"_count": 1}}, "Melted": {"_count": 1, "said": {"_count": 1}}, "surely": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "who": {"_count": 5, "": {"_count": 1}, "sets": {"_count": 1}, "could": {"_count": 1}, "can": {"_count": 1}, "have": {"_count": 1}}, "Conjuring": {"_count": 1, "up": {"_count": 1}}, "Deliberately": {"_count": 1, "causing": {"_count": 1}}, "Thursday": {"_count": 2, "afternoons": {"_count": 1}, "passed": {"_count": 1}}, "Knowing": {"_count": 6, "he": {"_count": 1}, "Hermione": {"_count": 1}, "what": {"_count": 1}, "perfectly": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 1}}, "Goyles": {"_count": 2, "potion": {"_count": 1}, "mumll": {"_count": 1}}, "Time": {"_count": 14, "to": {"_count": 7}, "was": {"_count": 2}, "is": {"_count": 3}, "and": {"_count": 1}, "": {"_count": 1}}, "Face": {"_count": 3, "your": {"_count": 1}, "dry": {"_count": 1}, "level": {"_count": 1}}, "three": {"_count": 11, "Harry": {"_count": 1}, "two": {"_count": 1}, "days": {"_count": 1}, "": {"_count": 6}, "dead": {"_count": 1}, "stops": {"_count": 1}}, "Finite": {"_count": 1, "Incantatem": {"_count": 1}}, "Pinch": {"_count": 1, "it": {"_count": 1}}, "Allow": {"_count": 1, "me": {"_count": 1}}, "Enraged": {"_count": 2, "hissing": {"_count": 1}, "that": {"_count": 1}}, "Snake": {"_count": 1, "language": {"_count": 1}}, "Shivering": {"_count": 3, "Harry": {"_count": 2}, "violently": {"_count": 1}}, "Resisting": {"_count": 2, "the": {"_count": 2}}, "Between": {"_count": 5, "the": {"_count": 2}, "graves": {"_count": 1}, "his": {"_count": 1}, "ourselves": {"_count": 1}}, "Hannah": {"_count": 2, "said": {"_count": 1}, "Abbotts": {"_count": 1}}, "Clearing": {"_count": 1, "his": {"_count": 1}}, "Ernie": {"_count": 16, "bit": {"_count": 1}, "Macmillan": {"_count": 7}, "took": {"_count": 1}, "and": {"_count": 1}, "Prang": {"_count": 1}, "didnt": {"_count": 1}, "might": {"_count": 1}, "smirked": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "Justins": {"_count": 1, "been": {"_count": 1}}, "Upside": {"_count": 2, "down": {"_count": 2}}, "Lemon": {"_count": 1, "drop": {"_count": 1}}, "just": {"_count": 16, "to": {"_count": 2}, "like": {"_count": 1}, "what": {"_count": 1}, "another": {"_count": 1}, "answer": {"_count": 2}, "let": {"_count": 1}, "thought": {"_count": 1}, "on": {"_count": 1}, "ppaid": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 2}, "as": {"_count": 1}, "the": {"_count": 1}}, "Fawkes": {"_count": 16, "is": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 3}, "said": {"_count": 1}, "went": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 4}, "blinked": {"_count": 1}, "circled": {"_count": 1}, "had": {"_count": 1}}, "Phoenixes": {"_count": 1, "burst": {"_count": 1}}, "Curiously": {"_count": 2, "it": {"_count": 2}}, "Us": {"_count": 3, "Malfoy": {"_count": 1}, "mistreat": {"_count": 1}, "": {"_count": 1}}, "Wake": {"_count": 1, "up": {"_count": 1}}, "once": {"_count": 2, "weve": {"_count": 1}, "my": {"_count": 1}}, "Immediately": {"_count": 4, "his": {"_count": 1}, "please": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "Eh": {"_count": 6, "": {"_count": 6}}, "Nothings": {"_count": 2, "about": {"_count": 1}, "happening": {"_count": 1}}, "Stomachache": {"_count": 1, "Ron": {"_count": 1}}, "Fathers": {"_count": 4, "always": {"_count": 1}, "got": {"_count": 2}, "not": {"_count": 1}}, "Saint": {"_count": 1, "Potter": {"_count": 1}}, "whoever": {"_count": 2, "it": {"_count": 1}, "conjured": {"_count": 1}}, "Azkaban": {"_count": 5, "": {"_count": 1}, "the": {"_count": 1}, "must": {"_count": 1}, "had": {"_count": 2}}, "Luckily": {"_count": 4, "they": {"_count": 1}, "Fang": {"_count": 1}, "Professor": {"_count": 1}, "said": {"_count": 1}}, "Medicine": {"_count": 1, "for": {"_count": 1}}, "Leaving": {"_count": 7, "their": {"_count": 1}, "the": {"_count": 1}, "Sloper": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}, "this": {"_count": 1}}, "Ooooooh": {"_count": 1, "wait": {"_count": 1}}, "MMillicent": {"_count": 1, "Bulstrode": {"_count": 1}}, "even": {"_count": 7, "more": {"_count": 1}, "Wood": {"_count": 1}, "Moody": {"_count": 1}, "Dumbledore": {"_count": 1}, "compared": {"_count": 1}, "here": {"_count": 1}, "though": {"_count": 1}}, "Dangerous": {"_count": 1, "": {"_count": 1}}, "M": {"_count": 7, "": {"_count": 6}, "fine": {"_count": 1}}, "Riddle": {"_count": 39, "in": {"_count": 1}, "got": {"_count": 2}, "just": {"_count": 1}, "before": {"_count": 1}, "do": {"_count": 1}, "slid": {"_count": 1}, "stopped": {"_count": 1}, "watched": {"_count": 1}, "quiet": {"_count": 1}, "suddenly": {"_count": 1}, "scrambled": {"_count": 1}, "might": {"_count": 1}, "does": {"_count": 1}, "had": {"_count": 3}, "was": {"_count": 3}, "laughed": {"_count": 1}, "whirled": {"_count": 1}, "began": {"_count": 1}, "opened": {"_count": 1}, "wrote": {"_count": 1}, "said": {"_count": 1}, "lifted": {"_count": 1}, "jumped": {"_count": 1}, "stared": {"_count": 1}, "hesitated": {"_count": 1}, "took": {"_count": 2}, "threw": {"_count": 1}, "did": {"_count": 1}, "nodded": {"_count": 1}, "spoke": {"_count": 1}, "": {"_count": 1}, "smiled": {"_count": 2}}, "T": {"_count": 32, "": {"_count": 30}, "level": {"_count": 1}, "students": {"_count": 1}}, "Riddles": {"_count": 8, "diary": {"_count": 2}, "burnished": {"_count": 1}, "reply": {"_count": 1}, "eyes": {"_count": 1}, "diarys": {"_count": 1}, "reaction": {"_count": 1}, "expression": {"_count": 1}}, "Couldve": {"_count": 4, "been": {"_count": 3}, "done": {"_count": 1}}, "Undaunted": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "Prefect": {"_count": 6, "Head": {"_count": 1}, "": {"_count": 4}, "eh": {"_count": 1}}, "now": {"_count": 10, "with": {"_count": 1}, "bow": {"_count": 1}, "we": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "dont": {"_count": 1}, "he": {"_count": 1}, "youve": {"_count": 1}, "place": {"_count": 1}, "found": {"_count": 1}}, "Rather": {"_count": 5, "sensible": {"_count": 1}, "thicker": {"_count": 1}, "than": {"_count": 1}, "a": {"_count": 1}, "like": {"_count": 1}}, "Wash": {"_count": 2, "away": {"_count": 1}, "out": {"_count": 1}}, "Happy": {"_count": 8, "Valentines": {"_count": 1}, "Easter": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "birthday": {"_count": 3}, "now": {"_count": 1}}, "Hot": {"_count": 1, "all": {"_count": 1}}, "Losing": {"_count": 4, "his": {"_count": 2}, "who": {"_count": 1}, "her": {"_count": 1}}, "Leering": {"_count": 1, "he": {"_count": 1}}, "Hand": {"_count": 6, "it": {"_count": 2}, "in": {"_count": 1}, "she": {"_count": 1}, "over": {"_count": 1}, "that": {"_count": 1}}, "Snarling": {"_count": 1, "Ron": {"_count": 1}}, "Excited": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "Oozing": {"_count": 1, "back": {"_count": 1}}, "OK": {"_count": 1, "": {"_count": 1}}, "Enter": {"_count": 4, "said": {"_count": 3}, "called": {"_count": 1}}, "Muggle": {"_count": 7, "father": {"_count": 1}, "fireplaces": {"_count": 1}, "women": {"_count": 1}, "Repelling": {"_count": 1}, "neighbors": {"_count": 1}, "magic": {"_count": 1}, "authorities": {"_count": 1}}, "Dippet": {"_count": 2, "clucked": {"_count": 1}, "sank": {"_count": 1}}, "Particularly": {"_count": 3, "in": {"_count": 2}, "after": {"_count": 1}}, "gotta": {"_count": 1, "get": {"_count": 1}}, "in": {"_count": 24, "the": {"_count": 9}, "Zonko": {"_count": 1}, "Ravenclaw": {"_count": 1}, "here": {"_count": 1}, "potionmaking": {"_count": 1}, "Transfiguration": {"_count": 1}, "a": {"_count": 2}, "Muggle": {"_count": 1}, "addition": {"_count": 1}, "which": {"_count": 1}, "Charms": {"_count": 1}, "this": {"_count": 1}, "love": {"_count": 1}, "your": {"_count": 1}, "Defense": {"_count": 1}}, "Evening": {"_count": 6, "Rubeus": {"_count": 1}, "Harry": {"_count": 1}, "Potter": {"_count": 1}, "brought": {"_count": 1}, "boys": {"_count": 1}, "River": {"_count": 1}}, "CORNELIUS": {"_count": 1, "FUDGE": {"_count": 1}}, "During": {"_count": 4, "their": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "those": {"_count": 1}}, "Again": {"_count": 17, "and": {"_count": 4}, "his": {"_count": 1}, "however": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "something": {"_count": 1}, "Voldemort": {"_count": 1}, "your": {"_count": 1}, "Vernon": {"_count": 1}, "Dudley": {"_count": 1}, "trying": {"_count": 1}, "Bill": {"_count": 1}}, "\u2018Hello": {"_count": 1, "Hagrid": {"_count": 1}}, "Confused": {"_count": 2, "and": {"_count": 1}, "Yaxley": {"_count": 1}}, "Depends": {"_count": 1, "where": {"_count": 1}}, "let": {"_count": 6, "me": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 2}, "the": {"_count": 1}}, "Loads": {"_count": 8, "more": {"_count": 1}, "of": {"_count": 5}, "to": {"_count": 1}, "dont": {"_count": 1}}, "Wondering": {"_count": 6, "how": {"_count": 1}, "what": {"_count": 3}, "if": {"_count": 1}, "vaguely": {"_count": 1}}, "another": {"_count": 1, "double": {"_count": 1}}, "Tom": {"_count": 18, "Riddle": {"_count": 7}, "what": {"_count": 1}, "clicked": {"_count": 1}, "the": {"_count": 3}, "will": {"_count": 1}, "now": {"_count": 1}, "nodded": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "Tom": {"_count": 1}}, "Teachers": {"_count": 2, "prefects": {"_count": 1}, "found": {"_count": 1}}, "Thankfully": {"_count": 1, "Snape": {"_count": 1}}, "Nothin": {"_count": 3, "nothin": {"_count": 1}, "said": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Cornelius": {"_count": 13, "Fudge": {"_count": 10}, "Severus": {"_count": 1}, "\u2018GoblinCrusher": {"_count": 1}, "I": {"_count": 1}}, "Thingsve": {"_count": 1, "gone": {"_count": 1}}, "Ministrys": {"_count": 2, "got": {"_count": 2}}, "Wouldnt": {"_count": 18, "be": {"_count": 1}, "dream": {"_count": 1}, "have": {"_count": 4}, "buy": {"_count": 1}, "Moody": {"_count": 1}, "put": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "ask": {"_count": 1}, "hear": {"_count": 1}, "make": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 2}, "spy": {"_count": 1}}, "Already": {"_count": 6, "here": {"_count": 1}, "wet": {"_count": 1}, "you": {"_count": 1}, "taken": {"_count": 1}, "given": {"_count": 1}, "the": {"_count": 1}}, "Dreadful": {"_count": 1, "thing": {"_count": 1}}, "Admirable": {"_count": 1, "sentiments": {"_count": 1}}, "Fudge": {"_count": 60, "fiddling": {"_count": 1}, "stared": {"_count": 2}, "has": {"_count": 2}, "a": {"_count": 1}, "increased": {"_count": 1}, "marched": {"_count": 1}, "took": {"_count": 2}, "buttered": {"_count": 1}, "smiled": {"_count": 1}, "strode": {"_count": 1}, "cleared": {"_count": 2}, "shuddered": {"_count": 1}, "had": {"_count": 4}, "dropped": {"_count": 1}, "said": {"_count": 1}, "consulted": {"_count": 1}, "Snape": {"_count": 1}, "appeared": {"_count": 1}, "sounded": {"_count": 1}, "came": {"_count": 2}, "looked": {"_count": 5}, "still": {"_count": 1}, "shot": {"_count": 1}, "reddened": {"_count": 1}, "stepped": {"_count": 1}, "thinks": {"_count": 2}, "is": {"_count": 2}, "just": {"_count": 1}, "was": {"_count": 1}, "turned": {"_count": 1}, "glared": {"_count": 1}, "glanced": {"_count": 1}, "acted": {"_count": 1}, "might": {"_count": 1}, "remained": {"_count": 1}, "Umbridge": {"_count": 1}, "will": {"_count": 1}, "hesitated": {"_count": 1}, "seemed": {"_count": 1}, "goggled": {"_count": 1}, "pulled": {"_count": 1}, "sighed": {"_count": 1}, "subsided": {"_count": 1}, "got": {"_count": 1}, "told": {"_count": 1}, "attempted": {"_count": 1}}, "Thatd": {"_count": 3, "lead": {"_count": 1}, "wipe": {"_count": 1}, "come": {"_count": 1}}, "Therell": {"_count": 4, "be": {"_count": 4}}, "ARAGOG": {"_count": 1, "Summer": {"_count": 1}}, "Pity": {"_count": 6, "it": {"_count": 1}, "sugar": {"_count": 1}, "you": {"_count": 2}, "": {"_count": 1}, "the": {"_count": 1}}, "Preferring": {"_count": 1, "not": {"_count": 1}}, "Worried": {"_count": 3, "he": {"_count": 1}, "abou": {"_count": 1}, "": {"_count": 1}}, "Hear": {"_count": 4, "me": {"_count": 1}, "hear": {"_count": 2}, "it": {"_count": 1}}, "Apparently": {"_count": 34, "it": {"_count": 1}, "Mr": {"_count": 1}, "she": {"_count": 5}, "his": {"_count": 2}, "one": {"_count": 1}, "Moodys": {"_count": 1}, "Professor": {"_count": 1}, "he": {"_count": 3}, "Fred": {"_count": 1}, "hes": {"_count": 2}, "they": {"_count": 2}, "the": {"_count": 6}, "this": {"_count": 1}, "lost": {"_count": 1}, "Hermione": {"_count": 1}, "Gaunt": {"_count": 1}, "deciding": {"_count": 1}, "Dumbledore": {"_count": 1}, "I": {"_count": 1}, "Voldemort": {"_count": 1}}, "Struggling": {"_count": 2, "terrified": {"_count": 1}, "to": {"_count": 1}}, "Craning": {"_count": 3, "his": {"_count": 2}, "around": {"_count": 1}}, "Spiders": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "flee": {"_count": 1}}, "Aragog": {"_count": 8, "": {"_count": 3}, "paused": {"_count": 1}, "clicked": {"_count": 1}, "seemed": {"_count": 1}, "said": {"_count": 2}}, "Strangers": {"_count": 1, "clicked": {"_count": 1}}, "Kill": {"_count": 10, "them": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 5}, "his": {"_count": 1}, "": {"_count": 1}}, "Click": {"_count": 1, "click": {"_count": 1}}, "Years": {"_count": 3, "and": {"_count": 1}, "back": {"_count": 1}, "passed": {"_count": 1}}, "Feet": {"_count": 2, "away": {"_count": 1}, "from": {"_count": 1}}, "Evidently": {"_count": 8, "hatching": {"_count": 1}, "they": {"_count": 1}, "someone": {"_count": 1}, "Moody": {"_count": 1}, "this": {"_count": 1}, "Siriuss": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "Escaping": {"_count": 1, "their": {"_count": 1}}, "Exams": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "Hermionell": {"_count": 1, "probably": {"_count": 1}}, "Spit": {"_count": 2, "it": {"_count": 2}}, "Mark": {"_count": 2, "my": {"_count": 1}, "the": {"_count": 1}}, "Frankly": {"_count": 1, "Im": {"_count": 1}}, "Prepare": {"_count": 1, "his": {"_count": 1}}, "Gone": {"_count": 13, "to": {"_count": 1}, "": {"_count": 6}, "were": {"_count": 1}, "off": {"_count": 1}, "said": {"_count": 1}, "on": {"_count": 1}, "croaked": {"_count": 1}, "forever": {"_count": 1}}, "Making": {"_count": 5, "sure": {"_count": 1}, "a": {"_count": 2}, "straight": {"_count": 1}, "them": {"_count": 1}}, "Pipes": {"_count": 3, "": {"_count": 2}, "he": {"_count": 1}}, "\u2018Her": {"_count": 1, "skeleton": {"_count": 1}}, "Taken": {"_count": 1, "into": {"_count": 1}}, "Werent": {"_count": 3, "you": {"_count": 2}, "we": {"_count": 1}}, "Ddid": {"_count": 1, "I": {"_count": 1}}, "Vvery": {"_count": 1, "well": {"_count": 1}}, "Near": {"_count": 2, "sunset": {"_count": 1}, "the": {"_count": 1}}, "Shed": {"_count": 4, "found": {"_count": 1}, "decided": {"_count": 1}, "have": {"_count": 1}, "give": {"_count": 1}}, "Darkness": {"_count": 4, "was": {"_count": 1}, "fell": {"_count": 1}, "descended": {"_count": 1}, "engulfed": {"_count": 1}}, "Robes": {"_count": 2, "jade": {"_count": 1}, "she": {"_count": 1}}, "Urgent": {"_count": 4, "call": {"_count": 1}, "business": {"_count": 1}, "we": {"_count": 1}, "": {"_count": 1}}, "Myrtles": {"_count": 1, "whole": {"_count": 1}}, "Ooooh": {"_count": 5, "it": {"_count": 1}, "who": {"_count": 1}, "urgent": {"_count": 1}, "": {"_count": 2}}, "English": {"_count": 1, "he": {"_count": 1}}, "Whitefaced": {"_count": 1, "and": {"_count": 1}}, "Boys": {"_count": 8, "he": {"_count": 1}, "what": {"_count": 1}, "too": {"_count": 1}, "from": {"_count": 1}, "boys": {"_count": 1}, "said": {"_count": 1}, "keep": {"_count": 1}, "Mr": {"_count": 1}}, "Lumosl": {"_count": 2, "Harry": {"_count": 1}, "The": {"_count": 1}}, "Huge": {"_count": 1, "cracks": {"_count": 1}}, "Towering": {"_count": 1, "stone": {"_count": 1}}, "Ginnyl": {"_count": 1, "Harry": {"_count": 1}}, "Ginnys": {"_count": 9, "head": {"_count": 1}, "okay": {"_count": 1}, "got": {"_count": 1}, "told": {"_count": 1}, "had": {"_count": 1}, "been": {"_count": 1}, "O": {"_count": 1}, "probably": {"_count": 1}, "greataunt": {"_count": 1}}, "Preserved": {"_count": 1, "in": {"_count": 1}}, "Lying": {"_count": 9, "open": {"_count": 1}, "on": {"_count": 2}, "in": {"_count": 2}, "there": {"_count": 1}, "to": {"_count": 1}, "awake": {"_count": 1}, "with": {"_count": 1}}, "far": {"_count": 2, "more": {"_count": 1}, "away": {"_count": 1}}, "Anger": {"_count": 2, "was": {"_count": 2}}, "on": {"_count": 10, "the": {"_count": 4}, "my": {"_count": 2}, "this": {"_count": 1}, "Monday": {"_count": 1}, "August": {"_count": 1}, "probation": {"_count": 1}}, "as": {"_count": 12, "though": {"_count": 2}, "witnessed": {"_count": 1}, "I": {"_count": 2}, "a": {"_count": 1}, "so": {"_count": 1}, "if": {"_count": 2}, "had": {"_count": 1}, "Master": {"_count": 1}, "he": {"_count": 1}}, "Music": {"_count": 1, "was": {"_count": 1}}, "Patched": {"_count": 1, "frayed": {"_count": 1}}, "Speak": {"_count": 3, "to": {"_count": 1}, "for": {"_count": 2}}, "Waiting": {"_count": 2, "for": {"_count": 2}}, "LEAVE": {"_count": 3, "THE": {"_count": 1}, "IT": {"_count": 1}, "HIM": {"_count": 1}}, "KILL": {"_count": 1, "THE": {"_count": 1}}, "Dead": {"_count": 10, "": {"_count": 2}, "sure": {"_count": 1}, "twins": {"_count": 1}, "Percy": {"_count": 1}, "Harry": {"_count": 1}, "goats": {"_count": 1}, "bodies": {"_count": 1}, "said": {"_count": 1}, "or": {"_count": 1}}, "Fawkess": {"_count": 2, "head": {"_count": 1}, "lament": {"_count": 1}}, "Thick": {"_count": 3, "pearly": {"_count": 1}, "streamers": {"_count": 1}, "dust": {"_count": 1}}, "Alone": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "Phoenix": {"_count": 1, "tears": {"_count": 1}}, "healing": {"_count": 1, "powers": {"_count": 1}}, "Ink": {"_count": 1, "spurted": {"_count": 1}}, "Led": {"_count": 1, "by": {"_count": 1}}, "Hit": {"_count": 3, "him": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "Hasnt": {"_count": 9, "got": {"_count": 2}, "your": {"_count": 1}, "been": {"_count": 2}, "he": {"_count": 2}, "anyone": {"_count": 1}, "asked": {"_count": 1}}, "Odd": {"_count": 4, "sort": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}, "words": {"_count": 1}}, "Relief": {"_count": 2, "warm": {"_count": 1}, "broke": {"_count": 1}}, "Wwhats": {"_count": 1, "that": {"_count": 1}}, "has": {"_count": 6, "she": {"_count": 2}, "never": {"_count": 1}, "anyone": {"_count": 1}, "it": {"_count": 2}}, "traveled": {"_count": 1, "far": {"_count": 1}}, "sank": {"_count": 1, "so": {"_count": 1}}, "Older": {"_count": 1, "and": {"_count": 1}}, "Bed": {"_count": 3, "rest": {"_count": 2}, "said": {"_count": 1}}, "Impaled": {"_count": 1, "upon": {"_count": 1}}, "because": {"_count": 9, "I": {"_count": 1}, "people": {"_count": 1}, "it": {"_count": 1}, "then": {"_count": 1}, "some": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 2}, "Ill": {"_count": 1}}, "Dully": {"_count": 1, "Harry": {"_count": 1}}, "Godric": {"_count": 1, "Gryffindor": {"_count": 1}}, "Ignoring": {"_count": 7, "the": {"_count": 3}, "Uncle": {"_count": 2}, "her": {"_count": 1}, "his": {"_count": 1}}, "Prove": {"_count": 2, "it": {"_count": 2}}, "Quickly": {"_count": 3, "wondering": {"_count": 1}, "quickly": {"_count": 1}, "he": {"_count": 1}}, "Farewell": {"_count": 4, "Harry": {"_count": 2}, "": {"_count": 1}, "my": {"_count": 1}}, "OWL": {"_count": 2, "POST": {"_count": 2}}, "HELLO": {"_count": 1, "": {"_count": 1}}, "WHO": {"_count": 3, "IS": {"_count": 1}, "ARE": {"_count": 1}, "HAD": {"_count": 1}}, "IM": {"_count": 1, "A": {"_count": 1}}, "THERE": {"_count": 2, "IS": {"_count": 1}, "WAS": {"_count": 1}}, "HOW": {"_count": 3, "DARE": {"_count": 3}}, "Barely": {"_count": 9, "alive": {"_count": 1}, "two": {"_count": 2}, "ten": {"_count": 2}, "a": {"_count": 1}, "breathing": {"_count": 1}, "conscious": {"_count": 1}, "had": {"_count": 1}}, "Remembering": {"_count": 6, "their": {"_count": 1}, "him": {"_count": 1}, "what": {"_count": 3}, "to": {"_count": 1}}, "Gazing": {"_count": 2, "absently": {"_count": 1}, "blearily": {"_count": 1}}, "Silhouetted": {"_count": 1, "against": {"_count": 1}}, "Fingers": {"_count": 2, "trembling": {"_count": 1}, "in": {"_count": 1}}, "Plump": {"_count": 1, "little": {"_count": 1}}, "Bills": {"_count": 5, "taken": {"_count": 1}, "clothes": {"_count": 1}, "table": {"_count": 1}, "sitting": {"_count": 1}, "always": {"_count": 1}}, "Apart": {"_count": 3, "from": {"_count": 3}}, "Praying": {"_count": 1, "that": {"_count": 1}}, "Wont": {"_count": 9, "say": {"_count": 1}, "it": {"_count": 1}, "make": {"_count": 1}, "wont": {"_count": 3}, "refuse": {"_count": 1}, "you": {"_count": 1}, "they": {"_count": 1}}, "Noticing": {"_count": 1, "that": {"_count": 1}}, "Deciding": {"_count": 3, "that": {"_count": 2}, "the": {"_count": 1}}, "Extremely": {"_count": 1, "unusual": {"_count": 1}}, "AUNT": {"_count": 1, "MARGES": {"_count": 1}}, "Far": {"_count": 3, "from": {"_count": 1}, "far": {"_count": 1}, "below": {"_count": 1}}, "Sh": {"_count": 2, "shes": {"_count": 1}, "she": {"_count": 1}}, "Ripper": {"_count": 3, "had": {"_count": 1}, "began": {"_count": 1}, "came": {"_count": 1}}, "Margell": {"_count": 1, "be": {"_count": 1}}, "Watching": {"_count": 3, "Harry": {"_count": 1}, "through": {"_count": 1}, "the": {"_count": 1}}, "Firstly": {"_count": 7, "growled": {"_count": 1}, "Malfoy": {"_count": 1}, "I": {"_count": 2}, "Harry": {"_count": 1}, "have": {"_count": 1}, "and": {"_count": 1}}, "Secondly": {"_count": 2, "said": {"_count": 1}, "the": {"_count": 1}}, "Brutuss": {"_count": 6, "Secure": {"_count": 4}, "said": {"_count": 1}, "boy": {"_count": 1}}, "Duddys": {"_count": 1, "got": {"_count": 1}}, "Mummys": {"_count": 1, "bought": {"_count": 1}}, "Abandoning": {"_count": 3, "his": {"_count": 1}, "all": {"_count": 1}, "pretense": {"_count": 1}}, "Whatsits": {"_count": 1, "St": {"_count": 1}}, "Knocking": {"_count": 1, "the": {"_count": 1}}, "Ronll": {"_count": 1, "look": {"_count": 1}}, "Tea": {"_count": 3, "Marge": {"_count": 1}, "": {"_count": 2}}, "Shards": {"_count": 1, "of": {"_count": 1}}, "Marge": {"_count": 3, "": {"_count": 1}, "are": {"_count": 1}, "was": {"_count": 1}}, "thats": {"_count": 14, "the": {"_count": 2}, "why": {"_count": 1}, "what": {"_count": 3}, "very": {"_count": 1}, "how": {"_count": 1}, "blackmail": {"_count": 1}, "him": {"_count": 1}, "N": {"_count": 1}, "settled": {"_count": 1}, "fiftyfour": {"_count": 1}, "fer": {"_count": 1}}, "Aah": {"_count": 1, "said": {"_count": 1}}, "Pardon": {"_count": 1, "me": {"_count": 1}}, "Ratty": {"_count": 1, "little": {"_count": 1}}, "Weak": {"_count": 2, "": {"_count": 1}, "chest": {"_count": 1}}, "Underbred": {"_count": 1, "": {"_count": 1}}, "Grasp": {"_count": 1, "your": {"_count": 1}}, "Unemployed": {"_count": 1, "": {"_count": 1}}, "MORE": {"_count": 1, "BRANDY": {"_count": 1}}, "Proud": {"_count": 1, "of": {"_count": 1}}, "NOOOOOOO": {"_count": 2, "": {"_count": 2}}, "COME": {"_count": 3, "BACK": {"_count": 3}}, "Whichever": {"_count": 3, "way": {"_count": 1}, "said": {"_count": 1}, "term": {"_count": 1}}, "begin": {"_count": 1, "his": {"_count": 1}}, "Lumos": {"_count": 8, "Harry": {"_count": 2}, "Dumbledore": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 2}, "he": {"_count": 1}}, "Gold": {"_count": 3, "lettering": {"_count": 1}, "writing": {"_count": 1}, "filthy": {"_count": 1}}, "Fell": {"_count": 1, "over": {"_count": 1}}, "Choo": {"_count": 3, "fall": {"_count": 1}, "lookin": {"_count": 1}, "say": {"_count": 1}}, "Woss": {"_count": 2, "that": {"_count": 1}, "your": {"_count": 1}}, "Ere": {"_count": 3, "he": {"_count": 1}, "you": {"_count": 1}, "its": {"_count": 1}}, "Candles": {"_count": 2, "were": {"_count": 1}, "floated": {"_count": 1}}, "Stan": {"_count": 12, "was": {"_count": 1}, "passed": {"_count": 1}, "came": {"_count": 1}, "threw": {"_count": 1}, "had": {"_count": 1}, "swiveled": {"_count": 1}, "put": {"_count": 1}, "leapt": {"_count": 1}, "Shunpike": {"_count": 3}, "": {"_count": 1}}, "Them": {"_count": 4, "": {"_count": 1}, "Azkaban": {"_count": 1}, "Disposal": {"_count": 1}, "champions": {"_count": 1}}, "Sirius": {"_count": 119, "Black": {"_count": 7}, "NO": {"_count": 1}, "and": {"_count": 4}, "is": {"_count": 4}, "thought": {"_count": 1}, "its": {"_count": 1}, "Sirius": {"_count": 2}, "Harry": {"_count": 5}, "Blacks": {"_count": 1}, "youd": {"_count": 1}, "has": {"_count": 1}, "Why": {"_count": 1}, "THE": {"_count": 1}, "looked": {"_count": 2}, "He": {"_count": 1}, "led": {"_count": 1}, "was": {"_count": 12}, "however": {"_count": 1}, "paced": {"_count": 1}, "shook": {"_count": 1}, "smiled": {"_count": 1}, "let": {"_count": 2}, "threw": {"_count": 1}, "held": {"_count": 1}, "stared": {"_count": 2}, "heaved": {"_count": 2}, "Whos": {"_count": 1}, "had": {"_count": 12}, "would": {"_count": 1}, "": {"_count": 8}, "I": {"_count": 2}, "grasped": {"_count": 1}, "at": {"_count": 1}, "scratched": {"_count": 1}, "sit": {"_count": 1}, "sank": {"_count": 1}, "halfshrugged": {"_count": 1}, "hes": {"_count": 1}, "walked": {"_count": 1}, "jabbed": {"_count": 1}, "gave": {"_count": 1}, "sustained": {"_count": 1}, "went": {"_count": 1}, "stabbed": {"_count": 1}, "Lupin": {"_count": 1}, "who": {"_count": 1}, "when": {"_count": 1}, "should": {"_count": 1}, "didnt": {"_count": 2}, "says": {"_count": 1}, "can": {"_count": 1}, "suggested": {"_count": 1}, "said": {"_count": 2}, "pushed": {"_count": 1}, "glared": {"_count": 1}, "snorted": {"_count": 1}, "James": {"_count": 1}, "are": {"_count": 1}, "must": {"_count": 1}, "told": {"_count": 1}, "seemed": {"_count": 2}, "represented": {"_count": 1}, "wouldnt": {"_count": 1}, "never": {"_count": 1}, "did": {"_count": 1}}, "Black": {"_count": 38, "is": {"_count": 2}, "woz": {"_count": 1}, "lost": {"_count": 1}, "and": {"_count": 5}, "was": {"_count": 7}, "argued": {"_count": 1}, "knew": {"_count": 1}, "isnt": {"_count": 1}, "did": {"_count": 1}, "": {"_count": 1}, "let": {"_count": 1}, "stared": {"_count": 1}, "blinked": {"_count": 1}, "leapt": {"_count": 1}, "stopped": {"_count": 1}, "bent": {"_count": 1}, "had": {"_count": 1}, "jumped": {"_count": 1}, "kicked": {"_count": 1}, "conjured": {"_count": 1}, "saw": {"_count": 1}, "froze": {"_count": 1}, "gave": {"_count": 1}, "looked": {"_count": 1}, "placed": {"_count": 1}, "wheeled": {"_count": 1}, "hair": {"_count": 1}}, "Scarylookin": {"_count": 1, "fing": {"_count": 1}}, "Broad": {"_count": 2, "daylight": {"_count": 1}, "strips": {"_count": 1}}, "Big": {"_count": 10, "trouble": {"_count": 1}, "bones": {"_count": 2}, "deal": {"_count": 1}, "and": {"_count": 2}, "surprise": {"_count": 1}, "er": {"_count": 1}, "birthday": {"_count": 1}, "bloke": {"_count": 1}}, "Orrible": {"_count": 1, "eh": {"_count": 1}}, "Laughed": {"_count": 1, "said": {"_count": 1}}, "Cos": {"_count": 1, "es": {"_count": 1}}, "Serves": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "after": {"_count": 4, "what": {"_count": 1}, "all": {"_count": 2}, "a": {"_count": 1}}, "Ole": {"_count": 1, "street": {"_count": 1}}, "Frightenin": {"_count": 1, "eh": {"_count": 1}}, "Talk": {"_count": 4, "about": {"_count": 3}, "broke": {"_count": 1}}, "Ear": {"_count": 1, "about": {"_count": 1}}, "Righto": {"_count": 2, "said": {"_count": 1}, "Fred": {"_count": 1}}, "Old": {"_count": 6, "tight": {"_count": 1}, "age": {"_count": 2}, "bat": {"_count": 1}, "Lovegood": {"_count": 1}, "Xeno": {"_count": 1}}, "BANG": {"_count": 5, "": {"_count": 5}}, "Ern": {"_count": 2, "slammed": {"_count": 1}, "": {"_count": 1}}, "Ow": {"_count": 5, "come": {"_count": 1}, "dare": {"_count": 1}, "": {"_count": 1}, "kunnit": {"_count": 1}, "orrible": {"_count": 1}}, "Running": {"_count": 3, "away": {"_count": 2}, "at": {"_count": 1}}, "Punishment": {"_count": 1, "": {"_count": 1}}, "Circumstances": {"_count": 1, "change": {"_count": 1}}, "Room": {"_count": 1, "elevens": {"_count": 1}}, "best": {"_count": 1, "we": {"_count": 1}}, "Fudges": {"_count": 4, "finger": {"_count": 1}, "curious": {"_count": 1}, "attitude": {"_count": 1}, "plump": {"_count": 1}}, "Arrived": {"_count": 1, "about": {"_count": 1}}, "Irish": {"_count": 1, "International": {"_count": 1}}, "Price": {"_count": 2, "on": {"_count": 2}}, "Torn": {"_count": 1, "pages": {"_count": 1}}, "Unfogging": {"_count": 1, "the": {"_count": 1}}, "Somebody": {"_count": 14, "had": {"_count": 4}, "inside": {"_count": 2}, "slap": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "is": {"_count": 1}, "Stupefied": {"_count": 1}, "let": {"_count": 1}, "grunted": {"_count": 1}}, "Brandnew": {"_count": 1, "wand": {"_count": 1}}, "Errols": {"_count": 1, "a": {"_count": 1}}, "Poisonous": {"_count": 2, "orange": {"_count": 1}, "toadstools": {"_count": 1}}, "Bang": {"_count": 1, "him": {"_count": 1}}, "Hm": {"_count": 1, "said": {"_count": 1}}, "Blacks": {"_count": 14, "not": {"_count": 1}, "already": {"_count": 1}, "been": {"_count": 1}, "a": {"_count": 2}, "face": {"_count": 2}, "wand": {"_count": 1}, "gaunt": {"_count": 1}, "work": {"_count": 1}, "done": {"_count": 1}, "audacious": {"_count": 1}, "cousin": {"_count": 1}, "dead": {"_count": 1}}, "Simply": {"_count": 3, "splendid": {"_count": 1}, "fabulous": {"_count": 1}, "to": {"_count": 1}}, "Dinner": {"_count": 3, "that": {"_count": 1}, "was": {"_count": 1}, "Nagini": {"_count": 1}}, "Howre": {"_count": 18, "we": {"_count": 8}, "you": {"_count": 8}, "the": {"_count": 1}, "things": {"_count": 1}}, "Sos": {"_count": 1, "Scabberss": {"_count": 1}}, "makes": {"_count": 2, "no": {"_count": 1}, "a": {"_count": 1}}, "hes": {"_count": 15, "at": {"_count": 1}, "complained": {"_count": 1}, "an": {"_count": 1}, "got": {"_count": 1}, "a": {"_count": 2}, "just": {"_count": 1}, "in": {"_count": 1}, "asking": {"_count": 1}, "coming": {"_count": 1}, "really": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 1}, "alive": {"_count": 1}, "not": {"_count": 1}}, "Unbidden": {"_count": 1, "the": {"_count": 1}}, "Later": {"_count": 4, "Harry": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}}, "Guards": {"_count": 1, "were": {"_count": 1}}, "Promise": {"_count": 2, "me": {"_count": 2}}, "Swear": {"_count": 1, "to": {"_count": 1}}, "Though": {"_count": 47, "quite": {"_count": 1}, "Harry": {"_count": 5}, "Professor": {"_count": 1}, "still": {"_count": 3}, "the": {"_count": 5}, "Ron": {"_count": 1}, "they": {"_count": 2}, "it": {"_count": 3}, "of": {"_count": 1}, "I": {"_count": 3}, "she": {"_count": 2}, "shocked": {"_count": 1}, "he": {"_count": 8}, "members": {"_count": 1}, "if": {"_count": 1}, "Sirius": {"_count": 1}, "clearly": {"_count": 1}, "Hermione": {"_count": 1}, "Ministry": {"_count": 1}, "a": {"_count": 1}, "Ariana": {"_count": 1}, "much": {"_count": 1}, "Petunia": {"_count": 1}, "leaves": {"_count": 1}}, "Lupin": {"_count": 87, "whispered": {"_count": 1}, "was": {"_count": 9}, "smiled": {"_count": 4}, "tapped": {"_count": 1}, "raised": {"_count": 1}, "looked": {"_count": 5}, "drained": {"_count": 1}, "made": {"_count": 3}, "drank": {"_count": 2}, "is": {"_count": 1}, "sighed": {"_count": 2}, "nodded": {"_count": 3}, "": {"_count": 2}, "turned": {"_count": 1}, "continued": {"_count": 1}, "hesitated": {"_count": 2}, "caught": {"_count": 1}, "muttered": {"_count": 1}, "let": {"_count": 1}, "forced": {"_count": 1}, "moved": {"_count": 2}, "broke": {"_count": 1}, "told": {"_count": 1}, "straightened": {"_count": 1}, "helped": {"_count": 1}, "picked": {"_count": 2}, "Pettigrew": {"_count": 1}, "threw": {"_count": 1}, "shifted": {"_count": 1}, "held": {"_count": 1}, "says": {"_count": 1}, "and": {"_count": 6}, "pulled": {"_count": 2}, "who": {"_count": 1}, "hurried": {"_count": 1}, "glanced": {"_count": 1}, "waved": {"_count": 1}, "handed": {"_count": 1}, "strolled": {"_count": 1}, "flung": {"_count": 1}, "had": {"_count": 1}, "returned": {"_count": 1}, "shrugged": {"_count": 1}, "paused": {"_count": 1}, "said": {"_count": 2}, "dived": {"_count": 1}, "gave": {"_count": 2}, "slopped": {"_count": 1}, "laughed": {"_count": 1}, "pointed": {"_count": 1}, "swallowed": {"_count": 1}, "drew": {"_count": 1}, "fell": {"_count": 1}, "Tonks": {"_count": 1}}, "youll": {"_count": 4, "have": {"_count": 1}, "be": {"_count": 1}, "show": {"_count": 1}, "feel": {"_count": 1}}, "Pepper": {"_count": 1, "Imps": {"_count": 1}}, "Crookshanks": {"_count": 37, "had": {"_count": 2}, "slowly": {"_count": 1}, "was": {"_count": 6}, "skidded": {"_count": 1}, "could": {"_count": 1}, "s": {"_count": 1}, "seemed": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "darted": {"_count": 2}, "leapt": {"_count": 3}, "stood": {"_count": 1}, "led": {"_count": 1}, "sat": {"_count": 1}, "took": {"_count": 2}, "wandered": {"_count": 1}, "arched": {"_count": 1}, "crawled": {"_count": 1}, "uncoiled": {"_count": 1}, "curled": {"_count": 1}, "streaked": {"_count": 1}, "purred": {"_count": 1}, "whom": {"_count": 1}, "gave": {"_count": 1}, "went": {"_count": 1}, "trotted": {"_count": 1}}, "Midafternoon": {"_count": 1, "just": {"_count": 1}}, "Potty": {"_count": 2, "and": {"_count": 1}, "asked": {"_count": 1}}, "Quiet": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 39, "thick": {"_count": 1}, "long": {"_count": 1}, "woman": {"_count": 1}, "heap": {"_count": 1}, "real": {"_count": 1}, "tame": {"_count": 1}, "bluff": {"_count": 1}, "good": {"_count": 1}, "different": {"_count": 2}, "gaping": {"_count": 1}, "small": {"_count": 1}, "Galleon": {"_count": 1}, "Dark": {"_count": 1}, "little": {"_count": 3}, "prod": {"_count": 1}, "short": {"_count": 1}, "dementor": {"_count": 1}, "IMPEDIMENT": {"_count": 1}, "spiderl": {"_count": 1}, "servant": {"_count": 1}, "spell": {"_count": 1}, "very": {"_count": 1}, "peck": {"_count": 1}, "": {"_count": 1}, "favor": {"_count": 1}, "strange": {"_count": 1}, "happy": {"_count": 1}, "fake": {"_count": 1}, "man": {"_count": 1}, "silvery": {"_count": 1}, "package": {"_count": 1}, "great": {"_count": 1}, "flash": {"_count": 1}, "proper": {"_count": 1}, "fragment": {"_count": 1}, "ssmall": {"_count": 1}}, "Firs": {"_count": 5, "years": {"_count": 1}, "yeh": {"_count": 1}, "task": {"_count": 1}, "we": {"_count": 1}, "Katie": {"_count": 1}}, "Shove": {"_count": 1, "off": {"_count": 1}}, "Terrible": {"_count": 4, "things": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 2}}, "Kindly": {"_count": 10, "wait": {"_count": 1}, "escort": {"_count": 1}, "keep": {"_count": 1}, "continue": {"_count": 1}, "respond": {"_count": 3}, "send": {"_count": 1}, "come": {"_count": 1}, "concentrate": {"_count": 1}}, "Dementors": {"_count": 16, "are": {"_count": 3}, "outside": {"_count": 1}, "cant": {"_count": 1}, "at": {"_count": 1}, "here": {"_count": 2}, "you": {"_count": 1}, "attacking": {"_count": 1}, "caused": {"_count": 1}, "sent": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "dont": {"_count": 1}, "he": {"_count": 1}}, "Congratulations": {"_count": 4, "Hagrid": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "great": {"_count": 3, "man": {"_count": 2}, "": {"_count": 1}}, "came": {"_count": 1, "straight": {"_count": 1}}, "Overcome": {"_count": 1, "with": {"_count": 1}}, "TALONS": {"_count": 1, "AND": {"_count": 1}}, "Ignore": {"_count": 4, "him": {"_count": 2}, "them": {"_count": 2}}, "Came": {"_count": 1, "running": {"_count": 1}}, "Sort": {"_count": 2, "of": {"_count": 2}}, "honesly": {"_count": 1, "": {"_count": 1}}, "Puffing": {"_count": 1, "loudly": {"_count": 1}}, "\u2018Sibyll": {"_count": 1, "Trelawney": {"_count": 1}}, "Parvati": {"_count": 24, "gave": {"_count": 1}, "Patil": {"_count": 3}, "had": {"_count": 1}, "glared": {"_count": 1}, "and": {"_count": 6}, "whispered": {"_count": 1}, "came": {"_count": 1}, "Patils": {"_count": 1}, "scowled": {"_count": 1}, "looked": {"_count": 2}, "was": {"_count": 2}, "found": {"_count": 1}, "seemed": {"_count": 1}, "sat": {"_count": 1}, "set": {"_count": 1}}, "Incidentally": {"_count": 3, "that": {"_count": 1}, "can": {"_count": 1}, "we": {"_count": 1}}, "Lavender": {"_count": 15, "trembled": {"_count": 1}, "Brown": {"_count": 6}, "and": {"_count": 2}, "jumped": {"_count": 1}, "giggled": {"_count": 1}, "will": {"_count": 1}, "shot": {"_count": 1}, "was": {"_count": 1}, "burst": {"_count": 1}}, "Collect": {"_count": 1, "a": {"_count": 1}}, "Swill": {"_count": 1, "these": {"_count": 1}}, "thank": {"_count": 6, "you": {"_count": 6}}, "Broaden": {"_count": 1, "your": {"_count": 1}}, "\u2018A": {"_count": 3, "windfall": {"_count": 1}, "display": {"_count": 1}, "lone": {"_count": 1}}, "my": {"_count": 22, "dear": {"_count": 3}, "poor": {"_count": 1}, "old": {"_count": 1}, "faithful": {"_count": 1}, "name": {"_count": 1}, "ol": {"_count": 1}, "fault": {"_count": 2}, "son": {"_count": 2}, "wand": {"_count": 1}, "idiot": {"_count": 1}, "greatgreatgrandfather": {"_count": 1}, "grandad": {"_count": 1}, "only": {"_count": 2}, "pumpkin": {"_count": 1}, "parents": {"_count": 1}, "Lord": {"_count": 2}}, "danger": {"_count": 1, "in": {"_count": 1}}, "Silently": {"_count": 5, "the": {"_count": 1}, "they": {"_count": 2}, "she": {"_count": 1}, "Griphook": {"_count": 1}}, "Everybodys": {"_count": 1, "heads": {"_count": 1}}, "Grims": {"_count": 1, "scare": {"_count": 1}}, "Yesterdays": {"_count": 1, "rain": {"_count": 1}}, "Hasn": {"_count": 1, "hasn": {"_count": 1}}, "Righ": {"_count": 8, "then": {"_count": 2}, "said": {"_count": 4}, "now": {"_count": 1}, "": {"_count": 1}}, "God": {"_count": 4, "this": {"_count": 1}, "Ive": {"_count": 1}, "thats": {"_count": 1}, "I": {"_count": 1}}, "Trotting": {"_count": 2, "toward": {"_count": 1}, "around": {"_count": 1}}, "Gee": {"_count": 1, "up": {"_count": 1}}, "Hippogriffs": {"_count": 2, "": {"_count": 1}, "don": {"_count": 1}}, "Beauiful": {"_count": 1, "aren": {"_count": 1}}, "Easy": {"_count": 5, "now": {"_count": 1}, "said": {"_count": 2}, "Greyback": {"_count": 1}, "enough": {"_count": 1}}, "Buckbeak": {"_count": 23, "had": {"_count": 2}, "stood": {"_count": 1}, "flew": {"_count": 1}, "the": {"_count": 1}, "is": {"_count": 1}, "isnt": {"_count": 1}, "lost": {"_count": 1}, "seemed": {"_count": 2}, "sank": {"_count": 1}, "move": {"_count": 1}, "snapped": {"_count": 1}, "broke": {"_count": 1}, "stopped": {"_count": 1}, "raised": {"_count": 1}, "bored": {"_count": 1}, "soared": {"_count": 1}, "slowed": {"_count": 1}, "landed": {"_count": 1}, "pawed": {"_count": 1}, "was": {"_count": 1}, "Witherwings": {"_count": 1}}, "Thas": {"_count": 12, "it": {"_count": 2}, "better": {"_count": 2}, "all": {"_count": 1}, "my": {"_count": 1}, "exactly": {"_count": 1}, "good": {"_count": 1}, "how": {"_count": 1}, "gotta": {"_count": 1}, "thas": {"_count": 1}, "very": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "moanin": {"_count": 1, "": {"_count": 1}}, "School": {"_count": 3, "govnors": {"_count": 1}, "champion": {"_count": 2}}, "Shoulda": {"_count": 2, "left": {"_count": 1}, "known": {"_count": 1}}, "done": {"_count": 1, "flobberworms": {"_count": 1}}, "S": {"_count": 16, "all": {"_count": 1}, "like": {"_count": 1}, "sorry": {"_count": 1}, "Sirius": {"_count": 1}, "": {"_count": 3}, "far": {"_count": 2}, "time": {"_count": 1}, "matter": {"_count": 1}, "okay": {"_count": 1}, "long": {"_count": 1}, "up": {"_count": 1}, "too": {"_count": 1}, "Rons": {"_count": 1}}, "Tears": {"_count": 8, "leaked": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 4}, "flowed": {"_count": 1}}, "Ar": {"_count": 4, "maybe": {"_count": 1}, "hes": {"_count": 1}, "I": {"_count": 1}, "well": {"_count": 1}}, "Stuck": {"_count": 1, "his": {"_count": 1}}, "WHAT": {"_count": 5, "DYEH": {"_count": 1}, "DID": {"_count": 1}, "ARE": {"_count": 1}, "DO": {"_count": 1}, "": {"_count": 1}}, "YEH": {"_count": 1, "RE": {"_count": 1}}, "Settle": {"_count": 3, "down": {"_count": 3}}, "Change": {"_count": 1, "roots": {"_count": 1}}, "Seen": {"_count": 4, "your": {"_count": 1}, "anything": {"_count": 1}, "old": {"_count": 1}, "Hermione": {"_count": 1}}, "Orange": {"_count": 1, "": {"_count": 1}}, "Class": {"_count": 1, "dismissed": {"_count": 1}}, "Puzzled": {"_count": 1, "but": {"_count": 1}}, "Loony": {"_count": 3, "loopy": {"_count": 2}, "Lovegood": {"_count": 1}}, "Td": {"_count": 2, "rather": {"_count": 1}, "invite": {"_count": 1}}, "Boggarts": {"_count": 1, "like": {"_count": 1}}, "Wardrobes": {"_count": 1, "the": {"_count": 1}}, "riddikulusV": {"_count": 1, "RiddikulusV": {"_count": 1}}, "hmmm": {"_count": 1, "": {"_count": 1}}, "always": {"_count": 4, "the": {"_count": 2}, "": {"_count": 1}, "very": {"_count": 1}}, "green": {"_count": 1, "normally": {"_count": 1}}, "Hooknosed": {"_count": 1, "and": {"_count": 1}}, "R": {"_count": 6, "r": {"_count": 1}, "Remus": {"_count": 1}, "": {"_count": 4}}, "Crack": {"_count": 12, "": {"_count": 10}, "The": {"_count": 1}, "Quite": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}, "RiddikulusV": {"_count": 2, "yelled": {"_count": 1}, "he": {"_count": 1}}, "five": {"_count": 2, "points": {"_count": 1}, "minutes": {"_count": 1}}, "Talking": {"_count": 7, "excitedly": {"_count": 1}, "in": {"_count": 2}, "about": {"_count": 2}, "ceased": {"_count": 1}, "of": {"_count": 1}}, "Spanking": {"_count": 1, "good": {"_count": 1}}, "Full": {"_count": 6, "of": {"_count": 3}, "to": {"_count": 1}, "marks": {"_count": 1}, "name": {"_count": 1}}, "End": {"_count": 2, "of": {"_count": 1}, "it": {"_count": 1}}, "Halloween": {"_count": 1, "": {"_count": 1}}, "Clever": {"_count": 2, "Crookshanks": {"_count": 1}, "move": {"_count": 1}}, "OY": {"_count": 2, "": {"_count": 2}}, "H": {"_count": 1, "he": {"_count": 1}}, "Staying": {"_count": 1, "here": {"_count": 1}}, "Fortuna": {"_count": 1, "Major": {"_count": 1}}, "Water": {"_count": 3, "demon": {"_count": 1}, "panted": {"_count": 1}, "filled": {"_count": 1}}, "Cup": {"_count": 2, "of": {"_count": 1}, "was": {"_count": 1}}, "Lupins": {"_count": 12, "eyes": {"_count": 2}, "briefcase": {"_count": 1}, "face": {"_count": 4}, "right": {"_count": 1}, "head": {"_count": 1}, "office": {"_count": 1}, "retort": {"_count": 1}, "news": {"_count": 1}}, "Disgusting": {"_count": 1, "he": {"_count": 1}}, "Dervish": {"_count": 1, "and": {"_count": 1}}, "Peoples": {"_count": 1, "heads": {"_count": 1}}, "Ashamed": {"_count": 1, "Your": {"_count": 1}}, "Crying": {"_count": 1, "something": {"_count": 1}}, "Sleep": {"_count": 3, "well": {"_count": 1}, "tight": {"_count": 1}, "all": {"_count": 1}}, "Disguised": {"_count": 1, "himself": {"_count": 1}}, "Headmaster": {"_count": 4, "": {"_count": 3}, "there": {"_count": 1}}, "Frightened": {"_count": 4, "of": {"_count": 3}, "stumbling": {"_count": 1}}, "goodness": {"_count": 1, "knows": {"_count": 1}}, "Flints": {"_count": 3, "just": {"_count": 1}, "excuse": {"_count": 1}, "nose": {"_count": 1}}, "Strong": {"_count": 2, "and": {"_count": 1}, "likelihood": {"_count": 1}}, "Diggorys": {"_count": 1, "put": {"_count": 1}}, "Seriously": {"_count": 4, "": {"_count": 2}, "I": {"_count": 1}, "good": {"_count": 1}}, "werewolves": {"_count": 1, "said": {"_count": 1}}, "Cursing": {"_count": 1, "Peeves": {"_count": 1}}, "Cedric": {"_count": 49, "Diggory": {"_count": 7}, "looked": {"_count": 6}, "": {"_count": 2}, "was": {"_count": 10}, "and": {"_count": 4}, "still": {"_count": 1}, "said": {"_count": 1}, "stared": {"_count": 2}, "straightened": {"_count": 1}, "had": {"_count": 1}, "put": {"_count": 1}, "did": {"_count": 1}, "Cedric": {"_count": 1}, "lowered": {"_count": 1}, "Fleur": {"_count": 1}, "got": {"_count": 1}, "took": {"_count": 2}, "watched": {"_count": 1}, "shook": {"_count": 1}, "shot": {"_count": 1}, "gave": {"_count": 1}, "asking": {"_count": 1}, "Diggorys": {"_count": 1}}, "Fasteri": {"_count": 1, "But": {"_count": 1}}, "stand": {"_count": 2, "aside": {"_count": 2}}, "have": {"_count": 9, "mercy": {"_count": 4}, "its": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "arrived": {"_count": 1}}, "Scariest": {"_count": 1, "": {"_count": 1}}, "hooded": {"_count": 1, "black": {"_count": 1}}, "cold": {"_count": 1, "": {"_count": 1}}, "screaming": {"_count": 1, "": {"_count": 1}}, "Mustve": {"_count": 3, "been": {"_count": 1}, "fallen": {"_count": 1}, "dozed": {"_count": 1}}, "Hufflepuffll": {"_count": 1, "have": {"_count": 1}}, "Shot": {"_count": 1, "silver": {"_count": 1}}, "about": {"_count": 7, "the": {"_count": 1}, "how": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}, "Horcruxes": {"_count": 3}}, "Lures": {"_count": 1, "travelers": {"_count": 1}}, "furious": {"_count": 1, "at": {"_count": 1}}, "soul": {"_count": 1, "less": {"_count": 1}}, "emotions": {"_count": 1, "running": {"_count": 1}}, "quite": {"_count": 4, "the": {"_count": 1}, "rigid": {"_count": 1}, "useful": {"_count": 1}, "apart": {"_count": 1}}, "Snow": {"_count": 9, "had": {"_count": 1}, "was": {"_count": 6}, "lay": {"_count": 1}, "crunched": {"_count": 1}}, "Psst": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "Early": {"_count": 1, "Christmas": {"_count": 1}}, "Moony": {"_count": 4, "Wormtail": {"_count": 4}}, "Astounded": {"_count": 1, "Harry": {"_count": 1}}, "Noble": {"_count": 1, "men": {"_count": 1}}, "Aids": {"_count": 1, "for": {"_count": 1}}, "Dissendiurrd": {"_count": 1, "Harry": {"_count": 1}}, "Honeydukes": {"_count": 1, "was": {"_count": 1}}, "Creamy": {"_count": 1, "chunks": {"_count": 1}}, "Ugh": {"_count": 1, "no": {"_count": 1}}, "BY": {"_count": 3, "ORDER": {"_count": 3}}, "Hogsmeade": {"_count": 3, "looked": {"_count": 1}, "next": {"_count": 1}, "": {"_count": 1}}, "Professors": {"_count": 6, "McGonagall": {"_count": 3}, "Dumbledore": {"_count": 1}, "Marchbanks": {"_count": 1}, "Flitwick": {"_count": 1}}, "Dripping": {"_count": 1, "with": {"_count": 1}}, "Staring": {"_count": 4, "through": {"_count": 1}, "around": {"_count": 1}, "nastily": {"_count": 1}, "Harry": {"_count": 1}}, "Rosmerta": {"_count": 5, "mdear": {"_count": 1}, "whats": {"_count": 1}, "and": {"_count": 1}, "please": {"_count": 1}, "": {"_count": 1}}, "Necessary": {"_count": 2, "precaution": {"_count": 1}, "": {"_count": 1}}, "unfortunate": {"_count": 1, "but": {"_count": 1}}, "Ringleaders": {"_count": 1, "of": {"_count": 1}}, "Inseparable": {"_count": 1, "": {"_count": 1}}, "James": {"_count": 15, "Potter": {"_count": 1}, "was": {"_count": 3}, "would": {"_count": 1}, "yawned": {"_count": 1}, "and": {"_count": 4}, "whirled": {"_count": 1}, "turned": {"_count": 1}, "roared": {"_count": 1}, "had": {"_count": 1}, "says": {"_count": 1}}, "Powers": {"_count": 1, "gone": {"_count": 1}}, "Shh": {"_count": 4, "": {"_count": 3}, "Fang": {"_count": 1}}, "\u2018I": {"_count": 7, "wont": {"_count": 1}, "fear": {"_count": 1}, "feel": {"_count": 1}, "think": {"_count": 1}, "would": {"_count": 1}, "can": {"_count": 1}, "open": {"_count": 1}}, "Maddened": {"_count": 1, "by": {"_count": 1}}, "Pettigrew": {"_count": 15, "": {"_count": 1}, "flinched": {"_count": 1}, "wiped": {"_count": 1}, "was": {"_count": 5}, "opened": {"_count": 1}, "crawled": {"_count": 1}, "turned": {"_count": 1}, "knelt": {"_count": 1}, "had": {"_count": 1}, "got": {"_count": 1}, "the": {"_count": 1}}, "Heroworshipped": {"_count": 1, "Black": {"_count": 1}}, "Eyewitnesses": {"_count": 1, "Muggles": {"_count": 1}}, "Blew": {"_count": 1, "Pettigrew": {"_count": 1}}, "foolish": {"_count": 1, "boy": {"_count": 1}}, "Bodies": {"_count": 1, "everywhere": {"_count": 1}}, "pointless": {"_count": 1, "": {"_count": 1}}, "Kep": {"_count": 1, "goin": {"_count": 1}}, "day": {"_count": 2, "me": {"_count": 1}, "I": {"_count": 1}}, "Long": {"_count": 6, "as": {"_count": 1}, "time": {"_count": 1}, "walk": {"_count": 1}, "white": {"_count": 1}, "ago": {"_count": 1}, "dark": {"_count": 1}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "Heres": {"_count": 5, "something": {"_count": 1}, "an": {"_count": 1}, "another": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}}, "maroon": {"_count": 1, "again": {"_count": 1}}, "see": {"_count": 12, "if": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 6}, "the": {"_count": 1}, "": {"_count": 2}, "Dumbledore": {"_count": 1}}, "whod": {"_count": 2, "send": {"_count": 1}, "like": {"_count": 1}}, "Crackers": {"_count": 1, "": {"_count": 1}}, "Dig": {"_count": 1, "in": {"_count": 1}}, "Sibyll": {"_count": 2, "this": {"_count": 1}, "Trelawney": {"_count": 1}}, "Tripe": {"_count": 1, "Sibyll": {"_count": 1}}, "Severus": {"_count": 26, "youve": {"_count": 1}, "was": {"_count": 1}, "Snape": {"_count": 6}, "Lupin": {"_count": 1}, "you": {"_count": 2}, "please": {"_count": 1}, "Dumbledore": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 6}, "oh": {"_count": 1}, "will": {"_count": 1}, "here": {"_count": 1}, "saw": {"_count": 1}}, "Derek": {"_count": 1, "have": {"_count": 1}}, "Coming": {"_count": 7, "": {"_count": 2}, "said": {"_count": 1}, "Arthur": {"_count": 1}, "back": {"_count": 1}, "Ginny": {"_count": 1}, "nearer": {"_count": 1}}, "Jinxed": {"_count": 1, "": {"_count": 1}}, "Waving": {"_count": 1, "aside": {"_count": 1}}, "Classes": {"_count": 1, "started": {"_count": 1}}, "Expecto": {"_count": 15, "patronum": {"_count": 6}, "patrono": {"_count": 1}, "But": {"_count": 1}, "patronuml": {"_count": 1}, "Hermione": {"_count": 1}, "expecto": {"_count": 1}, "Patronurrd": {"_count": 1}, "PatronumV": {"_count": 1}, "Patronum": {"_count": 1}, "Patronuml": {"_count": 1}}, "Concentrating": {"_count": 4, "hard": {"_count": 2}, "very": {"_count": 1}, "with": {"_count": 1}}, "big": {"_count": 2, "blurred": {"_count": 1}, "Quidditch": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "EXPECTO": {"_count": 5, "PATRONUM": {"_count": 5}}, "Ravenclaw": {"_count": 1, "played": {"_count": 1}}, "Doing": {"_count": 2, "what": {"_count": 2}}, "Seemed": {"_count": 4, "to": {"_count": 3}, "right": {"_count": 1}}, "youd": {"_count": 5, "think": {"_count": 1}, "know": {"_count": 1}, "be": {"_count": 2}, "gone": {"_count": 1}}, "\u2018As": {"_count": 1, "long": {"_count": 1}}, "January": {"_count": 1, "faded": {"_count": 1}}, "Butterbeer": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 5, "": {"_count": 5}}, "lost": {"_count": 1, "": {"_count": 1}}, "Speechless": {"_count": 1, "Harry": {"_count": 1}}, "Closeup": {"_count": 1, "Harry": {"_count": 1}}, "Arithmancy": {"_count": 1, "looks": {"_count": 1}}, "LOOK": {"_count": 2, "": {"_count": 2}}, "HES": {"_count": 2, "GONE": {"_count": 1}, "NOT": {"_count": 1}}, "Personally": {"_count": 12, "Harry": {"_count": 1}, "I": {"_count": 9}, "Id": {"_count": 1}, "Im": {"_count": 1}}, "Dumbledored": {"_count": 3, "go": {"_count": 2}, "want": {"_count": 1}}, "turn": {"_count": 1, "in": {"_count": 1}}, "Put": {"_count": 12, "it": {"_count": 3}, "him": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 2}, "your": {"_count": 1}, "those": {"_count": 1}, "the": {"_count": 1}}, "KNOCK": {"_count": 1, "HER": {"_count": 1}}, "Distracted": {"_count": 2, "Harry": {"_count": 1}, "by": {"_count": 1}}, "Plunging": {"_count": 1, "a": {"_count": 1}}, "Alicia": {"_count": 2, "Angelina": {"_count": 1}, "took": {"_count": 1}}, "Party": {"_count": 2, "": {"_count": 1}, "up": {"_count": 1}}, "Anxious": {"_count": 1, "to": {"_count": 1}}, "Disoriented": {"_count": 1, "in": {"_count": 1}}, "Doors": {"_count": 1, "opened": {"_count": 1}}, "Perce": {"_count": 1, "Sirius": {"_count": 1}}, "PROFESSOR": {"_count": 3, "I": {"_count": 1}, "TRELAWNEYS": {"_count": 1}, "UMBRIDGE": {"_count": 1}}, "SNAPES": {"_count": 2, "GRUDGE": {"_count": 1}, "WORST": {"_count": 1}}, "Throughout": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 10, "a": {"_count": 3}, "some": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "grunting": {"_count": 1}, "you": {"_count": 1}, "something": {"_count": 1}}, "holding": {"_count": 1, "this": {"_count": 1}}, "Hedve": {"_count": 2, "had": {"_count": 1}, "bin": {"_count": 1}}, "WAIT": {"_count": 2, "FOR": {"_count": 1}, "": {"_count": 1}}, "Spose": {"_count": 2, "you": {"_count": 1}, "so": {"_count": 1}}, "Averting": {"_count": 1, "his": {"_count": 1}}, "Buckbeaks": {"_count": 2, "case": {"_count": 1}, "appeal": {"_count": 1}}, "Him": {"_count": 4, "an": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "Goin": {"_count": 1, "through": {"_count": 1}}, "Bitten": {"_count": 2, "off": {"_count": 1}, "by": {"_count": 1}}, "reckon": {"_count": 1, "hell": {"_count": 1}}, "Gawd": {"_count": 1, "knows": {"_count": 1}}, "Crouching": {"_count": 3, "behind": {"_count": 1}, "down": {"_count": 1}, "low": {"_count": 1}}, "Suppose": {"_count": 1, "youd": {"_count": 1}}, "SPLATTER": {"_count": 1, "": {"_count": 1}}, "Floating": {"_count": 1, "in": {"_count": 1}}, "Strutting": {"_count": 1, "around": {"_count": 1}}, "Rules": {"_count": 1, "were": {"_count": 1}}, "Rage": {"_count": 2, "such": {"_count": 1}, "and": {"_count": 1}}, "Spare": {"_count": 1, "bit": {"_count": 1}}, "Reveal": {"_count": 1, "your": {"_count": 1}}, "Childish": {"_count": 1, "but": {"_count": 1}}, "Bought": {"_count": 2, "it": {"_count": 2}}, "ages": {"_count": 1, "ago": {"_count": 1}}, "Execution": {"_count": 1, "date": {"_count": 1}}, "Beaky": {"_count": 3, "has": {"_count": 1}, "": {"_count": 2}}, "Sall": {"_count": 1, "my": {"_count": 1}}, "Sno": {"_count": 3, "good": {"_count": 1}, "moren": {"_count": 1}, "wonder": {"_count": 1}}, "Wh": {"_count": 3, "what": {"_count": 2}, "": {"_count": 1}}, "Glowing": {"_count": 1, "on": {"_count": 1}}, "\u2018the": {"_count": 1, "fates": {"_count": 1}}, "Crystal": {"_count": 1, "gazing": {"_count": 1}}, "Ooooo": {"_count": 1, "": {"_count": 1}}, "Oooooo": {"_count": 2, "Professor": {"_count": 1}, "": {"_count": 1}}, "Locker": {"_count": 1, "rooms": {"_count": 1}}, "Threequarters": {"_count": 1, "of": {"_count": 1}}, "Widely": {"_count": 1, "acknowledged": {"_count": 1}}, "Captains": {"_count": 3, "shake": {"_count": 3}}, "Penalty": {"_count": 2, "shot": {"_count": 1}, "": {"_count": 1}}, "YES": {"_count": 3, "": {"_count": 3}}, "Superb": {"_count": 1, "": {"_count": 1}}, "Katie": {"_count": 5, "cartwheeled": {"_count": 1}, "Bell": {"_count": 2}, "she": {"_count": 1}, "must": {"_count": 1}}, "THIRTYZERO": {"_count": 1, "": {"_count": 1}}, "WHOOSH": {"_count": 1, "": {"_count": 1}}, "Bole": {"_count": 2, "hit": {"_count": 1}, "and": {"_count": 1}}, "Fiftyten": {"_count": 1, "": {"_count": 1}}, "Sixtyten": {"_count": 1, "": {"_count": 1}}, "Moments": {"_count": 2, "later": {"_count": 2}}, "Seventytwenty": {"_count": 1, "to": {"_count": 1}}, "aaRRRGH": {"_count": 1, "": {"_count": 1}}, "SHE": {"_count": 3, "SCORES": {"_count": 1}, "KILLED": {"_count": 2}}, "Wave": {"_count": 1, "upon": {"_count": 1}}, "Thrust": {"_count": 1, "into": {"_count": 1}}, "Words": {"_count": 2, "failed": {"_count": 1}, "utterly": {"_count": 1}}, "E": {"_count": 55, "": {"_count": 50}, "cannot": {"_count": 1}, "is": {"_count": 2}, "as": {"_count": 1}, "eez": {"_count": 1}}, "Mine": {"_count": 5, "still": {"_count": 2}, "havent": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}}, "Beakys": {"_count": 1, "gettin": {"_count": 1}}, "Flushed": {"_count": 1, "with": {"_count": 1}}, "pity": {"_count": 1, "": {"_count": 1}}, "Whyd": {"_count": 1, "you": {"_count": 1}}, "Nope": {"_count": 6, "said": {"_count": 4}, "South": {"_count": 1}, "not": {"_count": 1}}, "Howd": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "um": {"_count": 4, "": {"_count": 4}}, "Relieved": {"_count": 1, "Harry": {"_count": 1}}, "before": {"_count": 1, "midnight": {"_count": 1}}, "will": {"_count": 2, "set": {"_count": 1}, "we": {"_count": 1}}, "Rise": {"_count": 1, "again": {"_count": 1}}, "had": {"_count": 5, "he": {"_count": 1}, "a": {"_count": 1}, "left": {"_count": 1}, "responded": {"_count": 1}, "been": {"_count": 1}}, "Lost": {"_count": 8, "appeal": {"_count": 1}, "you": {"_count": 1}, "her": {"_count": 2}, "": {"_count": 1}, "in": {"_count": 2}, "an": {"_count": 1}}, "specially": {"_count": 1, "you": {"_count": 1}}, "Wan": {"_count": 2, "some": {"_count": 1}, "a": {"_count": 1}}, "threatened": {"_count": 1, "em": {"_count": 1}}, "Wrote": {"_count": 1, "me": {"_count": 1}}, "Yehre": {"_count": 3, "ter": {"_count": 1}, "goin": {"_count": 2}}, "Silent": {"_count": 1, "tears": {"_count": 1}}, "Fudgell": {"_count": 1, "be": {"_count": 1}}, "Whether": {"_count": 11, "he": {"_count": 2}, "this": {"_count": 1}, "Hagrid": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 2}, "that": {"_count": 1}, "hed": {"_count": 1}, "she": {"_count": 1}, "they": {"_count": 1}}, "Gotchal": {"_count": 1, "Get": {"_count": 1}}, "Dazed": {"_count": 2, "feeling": {"_count": 1}, "and": {"_count": 1}}, "Abruptly": {"_count": 1, "as": {"_count": 1}}, "Paper": {"_count": 1, "was": {"_count": 1}}, "Ghosts": {"_count": 2, "didnt": {"_count": 1}, "could": {"_count": 1}}, "Nox": {"_count": 1, "they": {"_count": 1}}, "Wand": {"_count": 5, "held": {"_count": 1}, "tip": {"_count": 1}, "grunted": {"_count": 1}, "out": {"_count": 2}}, "ExpelliarmusV": {"_count": 3, "he": {"_count": 1}, "Lupin": {"_count": 1}, "Harry": {"_count": 1}}, "Brave": {"_count": 1, "of": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "WERE": {"_count": 3, "UP": {"_count": 2}, "NOT": {"_count": 1}}, "Mystified": {"_count": 1, "Harry": {"_count": 1}}, "unless": {"_count": 6, "you": {"_count": 1}, "youre": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "without": {"_count": 2, "telling": {"_count": 1}, "his": {"_count": 1}}, "MOONY": {"_count": 1, "WORMTAIL": {"_count": 1}}, "Ridiculous": {"_count": 1, "": {"_count": 1}}, "Peter": {"_count": 6, "Pettigrews": {"_count": 1}, "Pettigrew": {"_count": 2}, "needed": {"_count": 1}, "as": {"_count": 1}, "is": {"_count": 1}}, "Peters": {"_count": 1, "alive": {"_count": 1}}, "Sneaking": {"_count": 1, "around": {"_count": 1}}, "hoping": {"_count": 1, "he": {"_count": 1}}, "anyway": {"_count": 6, "Snape": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "he": {"_count": 1}}, "lucky": {"_count": 2, "for": {"_count": 1}, "that": {"_count": 1}}, "DONT": {"_count": 2, "TALK": {"_count": 1}, "": {"_count": 1}}, "Vengeance": {"_count": 1, "is": {"_count": 1}}, "pleased": {"_count": 1, "enough": {"_count": 1}}, "YOURE": {"_count": 1, "PATHETIC": {"_count": 1}}, "JUST": {"_count": 1, "BECAUSE": {"_count": 1}}, "Expelliarmus": {"_count": 1, "he": {"_count": 1}}, "ever": {"_count": 3, "since": {"_count": 1}, "lower": {"_count": 1}, "again": {"_count": 1}}, "since": {"_count": 2, "the": {"_count": 1}, "hes": {"_count": 1}}, "croaked": {"_count": 2, "Black": {"_count": 1}, "the": {"_count": 1}}, "HE": {"_count": 4, "WAS": {"_count": 1}, "SAID": {"_count": 1}, "DID": {"_count": 1}, "GOT": {"_count": 1}}, "Force": {"_count": 1, "him": {"_count": 1}}, "Sorted": {"_count": 1, "things": {"_count": 1}}, "me": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "followed": {"_count": 1}}, "must": {"_count": 5, "be": {"_count": 1}, "have": {"_count": 1}, "warn": {"_count": 1}, "tell": {"_count": 1}, "": {"_count": 1}}, "Voldemorts": {"_count": 18, "been": {"_count": 1}, "lipless": {"_count": 1}, "back": {"_count": 2}, "anger": {"_count": 1}, "got": {"_count": 4}, "aim": {"_count": 1}, "mother": {"_count": 1}, "eyes": {"_count": 1}, "curse": {"_count": 1}, "on": {"_count": 1}, "sitting": {"_count": 1}, "tone": {"_count": 1}, "hand": {"_count": 1}, "chest": {"_count": 1}}, "helped": {"_count": 2, "me": {"_count": 1}, "of": {"_count": 1}}, "too": {"_count": 6, "much": {"_count": 1}, "but": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 1}, "dangerous": {"_count": 1}, "far": {"_count": 1}}, "become": {"_count": 1, "a": {"_count": 1}}, "perfectly": {"_count": 1, "positioned": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "\u2018Hes": {"_count": 1, "at": {"_count": 1}}, "thin": {"_count": 1, "enough": {"_count": 1}}, "Believe": {"_count": 4, "me": {"_count": 4}}, "Throat": {"_count": 1, "too": {"_count": 1}}, "Remus": {"_count": 10, "": {"_count": 2}, "Lupin": {"_count": 1}, "says": {"_count": 1}, "can": {"_count": 1}, "Bill": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "Remus": {"_count": 1}, "Im": {"_count": 1}}, "wouldnt": {"_count": 2, "Sirius": {"_count": 1}, "have": {"_count": 1}}, "Forgive": {"_count": 5, "me": {"_count": 5}}, "gasped": {"_count": 2, "Pettigrew": {"_count": 1}, "like": {"_count": 1}}, "havent": {"_count": 1, "I": {"_count": 1}}, "kind": {"_count": 2, "master": {"_count": 1}, "of": {"_count": 1}}, "Sweet": {"_count": 3, "girl": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}}, "clever": {"_count": 1, "girl": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 3, "forced": {"_count": 1}, "is": {"_count": 2}}, "YOUD": {"_count": 1, "BEEN": {"_count": 1}}, "DIED": {"_count": 1, "RATHER": {"_count": 1}}, "Thin": {"_count": 1, "cords": {"_count": 1}}, "Bandages": {"_count": 1, "spun": {"_count": 1}}, "Hair": {"_count": 1, "was": {"_count": 1}}, "Crookshankss": {"_count": 2, "hair": {"_count": 1}, "yellow": {"_count": 1}}, "iVooo": {"_count": 1, "he": {"_count": 1}}, "Noooo": {"_count": 1, "": {"_count": 1}}, "completely": {"_count": 2, "alone": {"_count": 1}, "sure": {"_count": 1}}, "Fog": {"_count": 1, "was": {"_count": 1}}, "expecto": {"_count": 3, "expecto": {"_count": 1}, "patronum": {"_count": 2}}, "Facedown": {"_count": 2, "too": {"_count": 1}, "on": {"_count": 1}}, "Fighting": {"_count": 4, "to": {"_count": 1}, "the": {"_count": 1}, "Potter": {"_count": 1}, "them": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "someone": {"_count": 5, "who": {"_count": 1}, "": {"_count": 1}, "else": {"_count": 2}, "in": {"_count": 1}}, "HERMIONES": {"_count": 2, "SECRET": {"_count": 1}, "HELPING": {"_count": 1}}, "shocking": {"_count": 1, "": {"_count": 1}}, "miracle": {"_count": 1, "none": {"_count": 1}}, "by": {"_count": 5, "thunder": {"_count": 2}, "the": {"_count": 1}, "using": {"_count": 1}, "which": {"_count": 1}}, "Order": {"_count": 1, "of": {"_count": 1}}, "weve": {"_count": 5, "all": {"_count": 1}, "helped": {"_count": 1}, "got": {"_count": 1}, "still": {"_count": 1}, "decided": {"_count": 1}}, "Consider": {"_count": 3, "Minister": {"_count": 1}, "what": {"_count": 1}, "your": {"_count": 1}}, "Extraordinary": {"_count": 2, "": {"_count": 2}}, "Minister": {"_count": 4, "listen": {"_count": 1}, "": {"_count": 1}, "ready": {"_count": 1}, "of": {"_count": 1}}, "Confunded": {"_count": 2, "both": {"_count": 1}, "anyone": {"_count": 1}}, "their": {"_count": 2, "last": {"_count": 1}, "magical": {"_count": 1}}, "OH": {"_count": 2, "": {"_count": 1}, "NO": {"_count": 1}}, "Thirteenth": {"_count": 1, "window": {"_count": 1}}, "Footsteps": {"_count": 4, "across": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}, "crossed": {"_count": 1}}, "Safe": {"_count": 2, "in": {"_count": 1}, "flight": {"_count": 1}}, "Macnair": {"_count": 5, "youre": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "remember": {"_count": 1}}, "sentenced": {"_count": 1, "to": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "Search": {"_count": 4, "the": {"_count": 2}, "me": {"_count": 1}, "fast": {"_count": 1}}, "Gotchcd": {"_count": 1, "Get": {"_count": 1}}, "Clouds": {"_count": 1, "were": {"_count": 1}}, "from": {"_count": 4, "what": {"_count": 1}, "the": {"_count": 1}, "Professor": {"_count": 1}, "that": {"_count": 1}}, "yet": {"_count": 10, "he": {"_count": 5}, "": {"_count": 1}, "at": {"_count": 1}, "Moody": {"_count": 1}, "the": {"_count": 1}, "sadly": {"_count": 1}}, "followed": {"_count": 2, "by": {"_count": 1}, "her": {"_count": 1}}, "okay": {"_count": 9, "then": {"_count": 1}, "said": {"_count": 4}, "": {"_count": 3}, "thanks": {"_count": 1}}, "Whoever": {"_count": 5, "had": {"_count": 1}, "conjured": {"_count": 1}, "put": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 1}}, "Prongs": {"_count": 1, "he": {"_count": 1}}, "Alohomoral": {"_count": 1, "The": {"_count": 1}}, "only": {"_count": 3, "hope": {"_count": 1}, "way": {"_count": 1}, "wizards": {"_count": 1}}, "Control": {"_count": 2, "yourself": {"_count": 1}, "your": {"_count": 1}}, "Calm": {"_count": 7, "down": {"_count": 6}, "I": {"_count": 1}}, "Fellow": {"_count": 1, "seems": {"_count": 1}}, "cantve": {"_count": 1, "tied": {"_count": 1}}, "thought": {"_count": 3, "he": {"_count": 1}, "I": {"_count": 1}, "we": {"_count": 1}}, "Resigned": {"_count": 2, "firs": {"_count": 1}, "to": {"_count": 1}}, "Says": {"_count": 10, "he": {"_count": 3}, "who": {"_count": 2}, "me": {"_count": 1}, "so": {"_count": 1}, "you": {"_count": 1}, "hell": {"_count": 1}, "Im": {"_count": 1}}, "Greater": {"_count": 1, "and": {"_count": 1}}, "especially": {"_count": 2, "after": {"_count": 1}, "Potters": {"_count": 1}}, "Godfather": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "keep": {"_count": 4, "up": {"_count": 1}, "close": {"_count": 1}, "taking": {"_count": 1}, "it": {"_count": 1}}, "check": {"_count": 1, "if": {"_count": 1}}, "Elderly": {"_count": 1, "Mr": {"_count": 1}}, "Frank": {"_count": 19, "": {"_count": 1}, "had": {"_count": 3}, "was": {"_count": 1}, "for": {"_count": 1}, "knew": {"_count": 1}, "limped": {"_count": 1}, "edged": {"_count": 1}, "turned": {"_count": 1}, "caught": {"_count": 1}, "inserted": {"_count": 1}, "dug": {"_count": 1}, "stopped": {"_count": 1}, "tightened": {"_count": 1}, "thought": {"_count": 1}, "didnt": {"_count": 2}, "stared": {"_count": 1}}, "Unfriendly": {"_count": 1, "like": {"_count": 1}}, "War": {"_count": 1, "turned": {"_count": 1}}, "Horrible": {"_count": 3, "temper": {"_count": 1}, "pictures": {"_count": 1}, "croaked": {"_count": 1}}, "Weeds": {"_count": 1, "were": {"_count": 1}}, "Brow": {"_count": 1, "furrowed": {"_count": 1}}, "Owing": {"_count": 3, "no": {"_count": 1}, "to": {"_count": 2}}, "Plainly": {"_count": 1, "each": {"_count": 1}}, "Laying": {"_count": 1, "hands": {"_count": 1}}, "perhaps": {"_count": 9, "the": {"_count": 1}, "if": {"_count": 2}, "they": {"_count": 1}, "that": {"_count": 1}, "Voldemort": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}}, "Silencel": {"_count": 1, "Wormtail": {"_count": 1}}, "Wormtail": {"_count": 31, "I": {"_count": 1}, "muttered": {"_count": 1}, "beckoned": {"_count": 1}, "come": {"_count": 1}, "screamed": {"_count": 1}, "pulled": {"_count": 1}, "was": {"_count": 6}, "still": {"_count": 1}, "his": {"_count": 1}, "here": {"_count": 2}, "stood": {"_count": 1}, "has": {"_count": 1}, "would": {"_count": 1}, "raised": {"_count": 1}, "walked": {"_count": 1}, "and": {"_count": 1}, "returned": {"_count": 1}, "slumped": {"_count": 1}, "looked": {"_count": 1}, "watched": {"_count": 1}, "turned": {"_count": 1}, "sniggered": {"_count": 1}, "winced": {"_count": 1}, "hesitated": {"_count": 1}, "said": {"_count": 1}}, "Rreally": {"_count": 1, "My": {"_count": 1}}, "Wormtails": {"_count": 6, "voice": {"_count": 1}, "fast": {"_count": 1}, "robes": {"_count": 1}, "sobbing": {"_count": 1}, "body": {"_count": 1}, "eyes": {"_count": 1}}, "are": {"_count": 9, "going": {"_count": 1}, "you": {"_count": 4}, "": {"_count": 3}, "they": {"_count": 1}}, "Horrified": {"_count": 3, "transfixed": {"_count": 1}, "Harry": {"_count": 2}}, "Nagini": {"_count": 3, "has": {"_count": 1}, "said": {"_count": 1}, "lay": {"_count": 1}}, "Inindeed": {"_count": 1, "My": {"_count": 1}}, "Invite": {"_count": 1, "him": {"_count": 1}}, "Rolls": {"_count": 1, "of": {"_count": 1}}, "Privet": {"_count": 1, "Drive": {"_count": 1}}, "Asleep": {"_count": 2, "was": {"_count": 1}, "yeah": {"_count": 1}}, "Write": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "Siriuss": {"_count": 11, "letters": {"_count": 1}, "head": {"_count": 3}, "letter": {"_count": 1}, "face": {"_count": 1}, "grip": {"_count": 1}, "knife": {"_count": 2}, "brother": {"_count": 2}}, "Bewildered": {"_count": 2, "wondering": {"_count": 1}, "Harry": {"_count": 1}}, "Hoping": {"_count": 5, "to": {"_count": 2}, "you": {"_count": 1}, "very": {"_count": 1}, "for": {"_count": 1}}, "Allowing": {"_count": 1, "Harry": {"_count": 1}}, "Dumpy": {"_count": 1, "sort": {"_count": 1}}, "Played": {"_count": 1, "on": {"_count": 1}}, "Normal": {"_count": 1, "for": {"_count": 1}}, "OUCH": {"_count": 5, "": {"_count": 5}}, "Mums": {"_count": 7, "writing": {"_count": 1}, "been": {"_count": 2}, "busy": {"_count": 1}, "crying": {"_count": 1}, "getting": {"_count": 1}, "right": {"_count": 1}}, "BACK": {"_count": 1, "TO": {"_count": 1}}, "Lunch": {"_count": 2, "was": {"_count": 1}, "said": {"_count": 1}}, "Normally": {"_count": 2, "Uncle": {"_count": 1}, "said": {"_count": 1}}, "Either": {"_count": 5, "that": {"_count": 1}, "Mr": {"_count": 1}, "Crouch": {"_count": 1}, "stay": {"_count": 1}, "way": {"_count": 1}}, "Voices": {"_count": 1, "could": {"_count": 1}}, "Damn": {"_count": 4, "": {"_count": 1}, "them": {"_count": 1}, "leg": {"_count": 1}, "it": {"_count": 1}}, "Eclectic": {"_count": 1, "you": {"_count": 1}}, "ouch": {"_count": 2, "Ron": {"_count": 1}, "": {"_count": 1}}, "Winking": {"_count": 1, "at": {"_count": 1}}, "Yep": {"_count": 9, "said": {"_count": 8}, "nine": {"_count": 1}}, "Incendio": {"_count": 1, "said": {"_count": 1}}, "Flames": {"_count": 2, "rose": {"_count": 1}, "of": {"_count": 1}}, "Tye": {"_count": 1, "then": {"_count": 1}}, "Joke": {"_count": 3, "stuff": {"_count": 1}, "": {"_count": 1}, "shop": {"_count": 1}}, "Fake": {"_count": 1, "wands": {"_count": 1}}, "Front": {"_count": 1, "page": {"_count": 1}}, "Pigwidgeon": {"_count": 9, "zoomed": {"_count": 1}, "began": {"_count": 1}, "was": {"_count": 4}, "became": {"_count": 1}, "plummeted": {"_count": 1}, "twittered": {"_count": 1}}, "Knives": {"_count": 1, "and": {"_count": 1}}, "Ludo": {"_count": 14, "Bagman": {"_count": 12}, "whipped": {"_count": 1}, "says": {"_count": 1}}, "with": {"_count": 8, "a": {"_count": 1}, "Cedric": {"_count": 1}, "excitement": {"_count": 1}, "whom": {"_count": 1}, "only": {"_count": 1}, "Parkinson": {"_count": 1}, "you": {"_count": 1}, "Snape": {"_count": 1}}, "Bulgaria": {"_count": 1, "has": {"_count": 1}}, "Krums": {"_count": 2, "one": {"_count": 1}, "jaw": {"_count": 1}}, "Went": {"_count": 3, "down": {"_count": 1}, "over": {"_count": 1}, "on": {"_count": 1}}, "Shocking": {"_count": 2, "performance": {"_count": 1}, "pink": {"_count": 1}}, "Prefer": {"_count": 1, "brooms": {"_count": 1}}, "Walk": {"_count": 2, "": {"_count": 1}, "just": {"_count": 1}}, "Acciol": {"_count": 2, "Acciol": {"_count": 1}, "Harry": {"_count": 1}}, "Unobtrusive": {"_count": 1, "things": {"_count": 1}}, "stuff": {"_count": 3, "theyll": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}}, "Whew": {"_count": 1, "panted": {"_count": 1}}, "Amos": {"_count": 7, "": {"_count": 1}, "Diggory": {"_count": 2}, "be": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "Diggorys": {"_count": 1}}, "Ceds": {"_count": 1, "talked": {"_count": 1}}, "muttered": {"_count": 4, "Mr": {"_count": 1}, "Uncle": {"_count": 1}, "Umbridge": {"_count": 1}, "Harry": {"_count": 1}}, "Site": {"_count": 1, "managers": {"_count": 1}}, "Diggory": {"_count": 4, "": {"_count": 1}, "said": {"_count": 1}, "off": {"_count": 1}, "came": {"_count": 1}}, "second": {"_count": 1, "field": {"_count": 1}}, "ask": {"_count": 2, "for": {"_count": 1}, "someone": {"_count": 1}}, "Beyond": {"_count": 5, "it": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}, "that": {"_count": 1}}, "Foreign": {"_count": 1, "": {"_count": 1}}, "Aye": {"_count": 1, "he": {"_count": 1}}, "Weirdos": {"_count": 1, "you": {"_count": 1}}, "Obliviate": {"_count": 2, "he": {"_count": 1}, "cried": {"_count": 1}}, "Instantly": {"_count": 4, "Mr": {"_count": 1}, "about": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}}, "Needs": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "lax": {"_count": 2, "about": {"_count": 1}, "security": {"_count": 1}}, "Halfway": {"_count": 9, "up": {"_count": 1}, "down": {"_count": 2}, "through": {"_count": 2}, "across": {"_count": 2}, "between": {"_count": 1}, "along": {"_count": 1}}, "Oddly": {"_count": 1, "enough": {"_count": 1}}, "ny": {"_count": 1, "times": {"_count": 1}}, "Krum": {"_count": 30, "said": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 5}, "his": {"_count": 1}, "who": {"_count": 2}, "Harry": {"_count": 2}, "hunchedup": {"_count": 1}, "had": {"_count": 4}, "seized": {"_count": 1}, "looked": {"_count": 1}, "and": {"_count": 1}, "opened": {"_count": 1}, "attacked": {"_count": 1}, "slouched": {"_count": 1}, "turned": {"_count": 1}, "surely": {"_count": 1}, "shrugged": {"_count": 1}, "cracked": {"_count": 1}, "did": {"_count": 1}, "grunted": {"_count": 1}}, "Viktor": {"_count": 17, "Krum": {"_count": 11}, "come": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 4}}, "\u2018Really": {"_count": 1, "grumpy": {"_count": 1}}, "Splintered": {"_count": 1, "matches": {"_count": 1}}, "Oops": {"_count": 3, "": {"_count": 2}, "sorry": {"_count": 1}}, "Arnold": {"_count": 1, "Peasegood": {"_count": 1}}, "theyre": {"_count": 11, "Unspeakables": {"_count": 1}, "moving": {"_count": 1}, "really": {"_count": 1}, "": {"_count": 1}, "looking": {"_count": 1}, "obsessed": {"_count": 1}, "probably": {"_count": 1}, "gettin": {"_count": 1}, "er": {"_count": 1}, "up": {"_count": 1}, "very": {"_count": 1}}, "Ahoy": {"_count": 1, "there": {"_count": 1}}, "Bagman": {"_count": 24, "did": {"_count": 1}, "turned": {"_count": 1}, "stared": {"_count": 1}, "swore": {"_count": 1}, "wanted": {"_count": 1}, "suddenly": {"_count": 1}, "was": {"_count": 2}, "wants": {"_count": 1}, "opened": {"_count": 1}, "led": {"_count": 1}, "didnt": {"_count": 1}, "seemed": {"_count": 1}, "looked": {"_count": 4}, "gave": {"_count": 1}, "told": {"_count": 1}, "grinned": {"_count": 1}, "hurried": {"_count": 1}, "got": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}}, "go": {"_count": 3, "on": {"_count": 1}, "well": {"_count": 1}, "": {"_count": 1}}, "any": {"_count": 3, "other": {"_count": 1}, "enthusiasm": {"_count": 1}, "second": {"_count": 1}}, "Cheers": {"_count": 8, "said": {"_count": 5}, "Harry": {"_count": 2}, "whispered": {"_count": 1}}, "Bartyll": {"_count": 1, "be": {"_count": 1}}, "memory": {"_count": 2, "like": {"_count": 1}, "muttered": {"_count": 1}}, "Barty": {"_count": 4, "Crouch": {"_count": 3}, "Crouchs": {"_count": 1}}, "Pull": {"_count": 1, "up": {"_count": 1}}, "Ali": {"_count": 2, "Bashirs": {"_count": 1}, "thinks": {"_count": 1}}, "Fairly": {"_count": 1, "said": {"_count": 1}}, "Organizing": {"_count": 1, "Portkeys": {"_count": 1}}, "Glad": {"_count": 6, "": {"_count": 1}, "to": {"_count": 2}, "yeh": {"_count": 1}, "we": {"_count": 1}, "of": {"_count": 1}}, "Salesmen": {"_count": 1, "were": {"_count": 1}}, "Been": {"_count": 10, "saving": {"_count": 1}, "in": {"_count": 1}, "humming": {"_count": 1}, "teaching": {"_count": 1}, "absent": {"_count": 1}, "having": {"_count": 1}, "kissing": {"_count": 1}, "stung": {"_count": 1}, "trying": {"_count": 1}, "reading": {"_count": 1}}, "Omnioculars": {"_count": 1, "said": {"_count": 1}}, "slow": {"_count": 1, "everything": {"_count": 1}}, "Bargain": {"_count": 1, "ten": {"_count": 1}}, "Fair": {"_count": 3, "enough": {"_count": 2}, "point": {"_count": 1}}, "Seats": {"_count": 1, "a": {"_count": 1}}, "bless": {"_count": 1, "them": {"_count": 1}}, "Prime": {"_count": 2, "seats": {"_count": 1}, "Minister": {"_count": 1}}, "Top": {"_count": 3, "Box": {"_count": 1}, "secret": {"_count": 2}}, "Gladrags": {"_count": 1, "Wizardwear": {"_count": 1}}, "Ideas": {"_count": 1, "above": {"_count": 1}}, "Winky": {"_count": 42, "lowered": {"_count": 1}, "is": {"_count": 9}, "the": {"_count": 1}, "": {"_count": 2}, "stammered": {"_count": 1}, "has": {"_count": 1}, "was": {"_count": 6}, "sir": {"_count": 1}, "dont": {"_count": 1}, "however": {"_count": 1}, "did": {"_count": 1}, "forgets": {"_count": 1}, "said": {"_count": 1}, "Winky": {"_count": 1}, "didnt": {"_count": 2}, "hiccuped": {"_count": 1}, "wants": {"_count": 1}, "still": {"_count": 1}, "swayed": {"_count": 1}, "hie": {"_count": 1}, "keeps": {"_count": 1}, "must": {"_count": 1}, "remained": {"_count": 1}, "showed": {"_count": 1}, "talked": {"_count": 1}, "would": {"_count": 1}, "let": {"_count": 1}}, "Paying": {"_count": 1, "": {"_count": 1}}, "Wild": {"_count": 1, "": {"_count": 1}}, "National": {"_count": 1, "teams": {"_count": 1}}, "Highly": {"_count": 3, "embarrassed": {"_count": 1}, "enjoyable": {"_count": 1}, "gifted": {"_count": 1}}, "oh": {"_count": 13, "come": {"_count": 1}, "what": {"_count": 1}, "Gabrielle": {"_count": 1}, "but": {"_count": 1}, "no": {"_count": 3}, "just": {"_count": 1}, "yeah": {"_count": 2}, "": {"_count": 2}, "on": {"_count": 1}}, "ah": {"_count": 8, "and": {"_count": 1}, "but": {"_count": 1}, "yes": {"_count": 2}, "": {"_count": 2}, "well": {"_count": 2}}, "Edging": {"_count": 1, "along": {"_count": 1}}, "Mungos": {"_count": 55, "Hospital": {"_count": 11}, "": {"_count": 10}, "because": {"_count": 1}, "Dumbledore": {"_count": 1}, "said": {"_count": 3}, "if": {"_count": 1}, "now": {"_count": 1}, "was": {"_count": 2}, "for": {"_count": 2}, "puts": {"_count": 1}, "and": {"_count": 5}, "had": {"_count": 1}, "deeply": {"_count": 1}, "is": {"_count": 1}, "remember": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 2}, "this": {"_count": 1}, "there": {"_count": 1}, "but": {"_count": 1}, "I": {"_count": 1}, "didnt": {"_count": 1}, "staff": {"_count": 1}, "they": {"_count": 1}, "at": {"_count": 1}}, "Slimy": {"_count": 2, "gits": {"_count": 1}, "oily": {"_count": 1}}, "welcome": {"_count": 1, "": {"_count": 1}}, "Thousands": {"_count": 1, "of": {"_count": 1}}, "Veelal": {"_count": 1, "What": {"_count": 1}}, "Veela": {"_count": 1, "were": {"_count": 1}}, "except": {"_count": 4, "that": {"_count": 1}, "when": {"_count": 1}, "for": {"_count": 2}}, "Jumping": {"_count": 2, "from": {"_count": 1}, "to": {"_count": 1}}, "Angry": {"_count": 2, "yells": {"_count": 1}, "but": {"_count": 1}}, "Huh": {"_count": 1, "": {"_count": 1}}, "Honestlyl": {"_count": 1, "she": {"_count": 1}}, "Squinting": {"_count": 5, "up": {"_count": 1}, "toward": {"_count": 1}, "tensely": {"_count": 1}, "down": {"_count": 1}, "around": {"_count": 1}}, "Leprechauns": {"_count": 1, "": {"_count": 1}}, "Ivanova": {"_count": 1, "": {"_count": 1}}, "Zograf": {"_count": 1, "": {"_count": 1}}, "Presenting": {"_count": 1, "Connolly": {"_count": 1}}, "Theeeeeeeeyre": {"_count": 1, "OFF": {"_count": 1}}, "Hawkshead": {"_count": 1, "Attacking": {"_count": 1}}, "Porskoff": {"_count": 1, "Ploy": {"_count": 1}}, "Across": {"_count": 5, "the": {"_count": 5}}, "Furious": {"_count": 4, "with": {"_count": 1}, "Harry": {"_count": 1}, "redfaced": {"_count": 1}, "at": {"_count": 1}}, "Volkov": {"_count": 1, "and": {"_count": 1}}, "Dimitrov": {"_count": 3, "": {"_count": 1}, "shot": {"_count": 1}, "skins": {"_count": 1}}, "Lynch": {"_count": 3, "however": {"_count": 1}, "got": {"_count": 1}, "is": {"_count": 1}}, "Fool": {"_count": 1, "": {"_count": 1}}, "Wronski": {"_count": 1, "Defensive": {"_count": 1}}, "Hassan": {"_count": 1, "Mostafa": {"_count": 1}}, "Mostafa": {"_count": 2, "seemed": {"_count": 1}, "was": {"_count": 1}}, "Levski": {"_count": 1, "Dimitrov": {"_count": 1}}, "Timeout": {"_count": 1, "": {"_count": 1}}, "IRELAND": {"_count": 1, "WINS": {"_count": 1}}, "KRUM": {"_count": 1, "GETS": {"_count": 1}}, "Flags": {"_count": 1, "were": {"_count": 1}}, "Veil": {"_count": 3, "ve": {"_count": 2}, "if": {"_count": 1}}, "Aidan": {"_count": 1, "Lynch": {"_count": 1}}, "shame": {"_count": 1, "it": {"_count": 1}}, "Raucous": {"_count": 1, "singing": {"_count": 1}}, "PotteA": {"_count": 1, "": {"_count": 1}}, "High": {"_count": 1, "above": {"_count": 1}}, "Tents": {"_count": 1, "crumpled": {"_count": 1}}, "Tripped": {"_count": 1, "over": {"_count": 1}}, "Hadnt": {"_count": 3, "you": {"_count": 1}, "people": {"_count": 1}, "he": {"_count": 1}}, "Scare": {"_count": 1, "easily": {"_count": 1}}, "Beauxbatons": {"_count": 2, "muttered": {"_count": 1}, "Academy": {"_count": 1}}, "right": {"_count": 11, "said": {"_count": 2}, "yare": {"_count": 1}, "": {"_count": 6}, "here": {"_count": 1}, "after": {"_count": 1}}, "\u2018House": {"_count": 1, "elves": {"_count": 1}}, "Farther": {"_count": 1, "still": {"_count": 1}}, "some": {"_count": 3, "people": {"_count": 1}, "grave": {"_count": 1}, "mad": {"_count": 1}}, "MORSMORDREl": {"_count": 1, "And": {"_count": 1}}, "YouKnowWhos": {"_count": 4, "sign": {"_count": 1}, "mind": {"_count": 1}, "after": {"_count": 1}, "won": {"_count": 1}}, "STUPEFYl": {"_count": 1, "roared": {"_count": 1}}, "Raising": {"_count": 1, "his": {"_count": 1}}, "Stunned": {"_count": 6, "": {"_count": 1}, "he": {"_count": 1}, "controlled": {"_count": 1}, "and": {"_count": 1}, "one": {"_count": 1}, "Harry": {"_count": 1}}, "Crouch": {"_count": 20, "gave": {"_count": 1}, "is": {"_count": 2}, "can": {"_count": 1}, "": {"_count": 3}, "could": {"_count": 1}, "sacked": {"_count": 1}, "used": {"_count": 1}, "fought": {"_count": 1}, "let": {"_count": 1}, "being": {"_count": 1}, "never": {"_count": 1}, "though": {"_count": 1}, "was": {"_count": 2}, "stood": {"_count": 1}, "appeared": {"_count": 1}, "has": {"_count": 1}}, "Watched": {"_count": 3, "by": {"_count": 1}, "the": {"_count": 2}}, "Elf": {"_count": 3, "": {"_count": 2}, "enslavement": {"_count": 1}}, "carried": {"_count": 2, "away": {"_count": 2}}, "Winkys": {"_count": 4, "got": {"_count": 1}, "lip": {"_count": 1}, "eyes": {"_count": 1}, "petrified": {"_count": 1}}, "Prior": {"_count": 1, "Incantatol": {"_count": 1}}, "Deletrius": {"_count": 1, "Mr": {"_count": 1}}, "precious": {"_count": 1, "few": {"_count": 1}}, "finding": {"_count": 1, "it": {"_count": 1}}, "Mmmaster": {"_count": 2, "": {"_count": 1}, "ppplease": {"_count": 1}}, "embarrassing": {"_count": 1, "him": {"_count": 1}}, "Death": {"_count": 8, "Eaters": {"_count": 4}, "toll": {"_count": 1}, "my": {"_count": 1}, "is": {"_count": 1}, "would": {"_count": 1}}, "culprits": {"_count": 1, "not": {"_count": 1}}, "national": {"_count": 1, "disgrace": {"_count": 1}}, "Rita": {"_count": 33, "Skeeter": {"_count": 16}, "Skeeters": {"_count": 4}, "acted": {"_count": 1}, "had": {"_count": 2}, "stared": {"_count": 2}, "blotted": {"_count": 1}, "gave": {"_count": 1}, "sat": {"_count": 1}, "looked": {"_count": 2}, "snorted": {"_count": 1}, "did": {"_count": 1}, "": {"_count": 1}}, "greater": {"_count": 1, "and": {"_count": 1}}, "Hedwigs": {"_count": 4, "not": {"_count": 1}, "cage": {"_count": 3}}, "Complaining": {"_count": 1, "about": {"_count": 1}}, "Mundungus": {"_count": 18, "Fletchers": {"_count": 1}, "fumbled": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 2}, "is": {"_count": 1}, "redeemed": {"_count": 1}, "stopped": {"_count": 1}, "looked": {"_count": 1}, "of": {"_count": 1}, "turned": {"_count": 1}, "will": {"_count": 1}, "shrugged": {"_count": 1}, "did": {"_count": 1}, "Fletcher": {"_count": 1}, "scrambled": {"_count": 1}, "stank": {"_count": 1}, "considered": {"_count": 1}}, "Home": {"_count": 1, "school": {"_count": 1}}, "Thered": {"_count": 1, "be": {"_count": 1}}, "Bung": {"_count": 1, "him": {"_count": 1}}, "Dress": {"_count": 3, "robes": {"_count": 3}}, "robes": {"_count": 1, "for": {"_count": 1}}, "show": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "ABOARD": {"_count": 1, "THE": {"_count": 1}}, "Heavy": {"_count": 3, "rain": {"_count": 1}, "irresistible": {"_count": 1}, "scuffing": {"_count": 1}}, "Made": {"_count": 6, "one": {"_count": 1}, "friends": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "by": {"_count": 1}}, "MadEye": {"_count": 25, "didnt": {"_count": 2}, "Moody": {"_count": 10}, "you": {"_count": 1}, "growled": {"_count": 1}, "and": {"_count": 2}, "will": {"_count": 1}, "dead": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}, "they": {"_count": 1}, "echoed": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}}, "Fanks": {"_count": 1, "he": {"_count": 1}}, "Birds": {"_count": 3, "of": {"_count": 1}, "an": {"_count": 1}, "in": {"_count": 1}}, "Moody": {"_count": 63, "was": {"_count": 11}, "": {"_count": 3}, "seemed": {"_count": 1}, "turned": {"_count": 2}, "started": {"_count": 1}, "we": {"_count": 1}, "took": {"_count": 4}, "pointed": {"_count": 1}, "got": {"_count": 1}, "reached": {"_count": 1}, "jerked": {"_count": 1}, "picked": {"_count": 1}, "raised": {"_count": 4}, "did": {"_count": 1}, "swept": {"_count": 1}, "began": {"_count": 1}, "watched": {"_count": 1}, "fell": {"_count": 1}, "had": {"_count": 1}, "however": {"_count": 1}, "limped": {"_count": 1}, "grinned": {"_count": 3}, "followed": {"_count": 1}, "caught": {"_count": 1}, "closed": {"_count": 1}, "gave": {"_count": 1}, "could": {"_count": 1}, "laughed": {"_count": 1}, "scared": {"_count": 1}, "waved": {"_count": 1}, "winked": {"_count": 1}, "said": {"_count": 2}, "says": {"_count": 2}, "helped": {"_count": 1}, "let": {"_count": 1}, "Harry": {"_count": 1}, "put": {"_count": 1}, "didnt": {"_count": 1}, "dropped": {"_count": 1}, "quite": {"_count": 1}}, "Sees": {"_count": 1, "Dark": {"_count": 1}}, "Father": {"_count": 4, "actually": {"_count": 1}, "says": {"_count": 1}, "": {"_count": 1}, "wrote": {"_count": 1}}, "Durmstrang": {"_count": 2, "students": {"_count": 1}, "and": {"_count": 1}}, "Durmstrangs": {"_count": 2, "another": {"_count": 1}, "got": {"_count": 1}}, "heard": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "Laughing": {"_count": 4, "once": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 2}}, "Ronl": {"_count": 2, "said": {"_count": 1}, "she": {"_count": 1}}, "making": {"_count": 1, "it": {"_count": 1}}, "\u2018Fathers": {"_count": 1, "always": {"_count": 1}}, "Leaning": {"_count": 1, "against": {"_count": 1}}, "Lightning": {"_count": 1, "flashed": {"_count": 1}}, "Drenched": {"_count": 1, "and": {"_count": 1}}, "Into": {"_count": 2, "the": {"_count": 2}}, "Golden": {"_count": 1, "plates": {"_count": 1}}, "Pearly": {"_count": 1, "white": {"_count": 1}}, "Brothers": {"_count": 1, "and": {"_count": 1}}, "Tiny": {"_count": 6, "little": {"_count": 3}, "black": {"_count": 1}, "puffs": {"_count": 1}, "yellowing": {"_count": 1}}, "Sings": {"_count": 1, "a": {"_count": 1}}, "Ackerley": {"_count": 1, "Stewart": {"_count": 1}}, "RAVENCLAW": {"_count": 1, "": {"_count": 1}}, "Stewart": {"_count": 1, "Ackerley": {"_count": 1}}, "Baddock": {"_count": 1, "Malcolm": {"_count": 1}}, "Branstone": {"_count": 1, "Eleanor": {"_count": 1}}, "Dennis": {"_count": 1, "": {"_count": 1}}, "Pritchard": {"_count": 1, "Graham": {"_count": 1}}, "Tuck": {"_count": 2, "in": {"_count": 2}}, "Wreaked": {"_count": 1, "havoc": {"_count": 1}}, "Pots": {"_count": 1, "and": {"_count": 1}}, "Place": {"_count": 1, "swimming": {"_count": 1}}, "Terrified": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "Pumpkin": {"_count": 1, "juice": {"_count": 1}}, "Sick": {"_count": 3, "leave": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}}, "Slave": {"_count": 1, "labor": {"_count": 1}}, "Spotted": {"_count": 1, "dick": {"_count": 1}}, "MacLEye": {"_count": 1, "Moody": {"_count": 1}}, "Eager": {"_count": 1, "though": {"_count": 1}}, "Bedtime": {"_count": 1, "": {"_count": 1}}, "Balderdash": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "Mental": {"_count": 2, "Ron": {"_count": 1}, "": {"_count": 1}}, "Chos": {"_count": 4, "face": {"_count": 1}, "friend": {"_count": 1}, "hand": {"_count": 1}, "voice": {"_count": 1}}, "MADEYE": {"_count": 1, "MOODY": {"_count": 1}}, "outside": {"_count": 1, "all": {"_count": 1}}, "Herbology": {"_count": 2, "with": {"_count": 1}, "fine": {"_count": 1}}, "damn": {"_count": 1, "it": {"_count": 1}}, "Divination": {"_count": 2, "was": {"_count": 2}}, "Instinctively": {"_count": 2, "Harry": {"_count": 2}}, "Bubotubers": {"_count": 1, "Professor": {"_count": 1}}, "Pus": {"_count": 1, "Finnigan": {"_count": 1}}, "Wear": {"_count": 2, "your": {"_count": 1}, "that": {"_count": 1}}, "Squeezing": {"_count": 2, "the": {"_count": 1}, "herself": {"_count": 1}}, "Thisll": {"_count": 3, "keep": {"_count": 1}, "liven": {"_count": 1}, "do": {"_count": 1}}, "Silly": {"_count": 1, "girl": {"_count": 1}}, "Mornin": {"_count": 1, "": {"_count": 1}}, "Beer": {"_count": 1, "wait": {"_count": 1}}, "Eurgh": {"_count": 4, "": {"_count": 2}, "just": {"_count": 1}, "Hagrid": {"_count": 1}}, "Ony": {"_count": 5, "jus": {"_count": 1}, "trouble": {"_count": 1}, "don": {"_count": 1}, "their": {"_count": 1}, "anythin": {"_count": 1}}, "most": {"_count": 2, "difficult": {"_count": 1}, "": {"_count": 1}}, "Human": {"_count": 1, "destiny": {"_count": 1}}, "Born": {"_count": 2, "under": {"_count": 1}, "to": {"_count": 1}}, "Saturn": {"_count": 1, "dear": {"_count": 1}}, "tragic": {"_count": 1, "losses": {"_count": 1}}, "Recently": {"_count": 1, "under": {"_count": 1}}, "Unsurprisingly": {"_count": 1, "Mr": {"_count": 1}}, "Stinking": {"_count": 1, "cowardly": {"_count": 1}}, "Teaching": {"_count": 2, "said": {"_count": 1}, "us": {"_count": 1}}, "Teach": {"_count": 1, "Moody": {"_count": 1}}, "Supercool": {"_count": 1, "said": {"_count": 1}}, "Mazing": {"_count": 1, "said": {"_count": 1}}, "Moodys": {"_count": 13, "magical": {"_count": 3}, "blue": {"_count": 1}, "not": {"_count": 1}, "lopsided": {"_count": 1}, "face": {"_count": 2}, "right": {"_count": 1}, "office": {"_count": 1}, "wand": {"_count": 1}, "normal": {"_count": 1}, "electricblue": {"_count": 1}}, "Curses": {"_count": 1, "": {"_count": 1}}, "Total": {"_count": 1, "control": {"_count": 1}}, "CONSTANT": {"_count": 2, "VIGILANCE": {"_count": 2}}, "Engorgio": {"_count": 2, "The": {"_count": 1}, "": {"_count": 1}}, "Reducio": {"_count": 1, "Moody": {"_count": 1}}, "Pain": {"_count": 1, "said": {"_count": 1}}, "anyone": {"_count": 2, "know": {"_count": 1}, "": {"_count": 1}}, "Avada": {"_count": 8, "Kedavra": {"_count": 4}, "Kedavral": {"_count": 1}, "Kedavras": {"_count": 1}, "Harry": {"_count": 1}, "KedavraV": {"_count": 1}}, "exactly": {"_count": 1, "like": {"_count": 1}}, "those": {"_count": 3, "three": {"_count": 1}, "werent": {"_count": 1}, "in": {"_count": 1}}, "copy": {"_count": 1, "this": {"_count": 1}}, "Interesting": {"_count": 3, "lesson": {"_count": 1}, "effect": {"_count": 1}, "said": {"_count": 1}}, "Attacks": {"_count": 1, "first": {"_count": 1}}, "Telling": {"_count": 2, "Neville": {"_count": 1}, "you": {"_count": 1}}, "erm": {"_count": 3, "Lose": {"_count": 1}, "": {"_count": 2}}, "Mercury": {"_count": 1, "": {"_count": 1}}, "cool": {"_count": 1, "": {"_count": 1}}, "Venus": {"_count": 1, "is": {"_count": 1}}, "Shortly": {"_count": 3, "after": {"_count": 2}, "before": {"_count": 1}}, "\u2018Spew": {"_count": 1, "": {"_count": 1}}, "Stands": {"_count": 1, "for": {"_count": 1}}, "SPEW": {"_count": 1, "": {"_count": 1}}, "BEAUXBATONS": {"_count": 1, "AND": {"_count": 1}}, "Drop": {"_count": 4, "it": {"_count": 2}, "your": {"_count": 1}, "them": {"_count": 1}}, "jump": {"_count": 1, "onto": {"_count": 1}}, "Jump": {"_count": 3, "onto": {"_count": 2}, "NOW": {"_count": 1}}, "Lessons": {"_count": 2, "will": {"_count": 1}, "were": {"_count": 1}}, "Rumors": {"_count": 5, "were": {"_count": 2}, "about": {"_count": 1}, "abound": {"_count": 1}, "of": {"_count": 1}}, "Enormous": {"_count": 2, "silk": {"_count": 1}, "cheers": {"_count": 1}}, "badge": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "Hedwigll": {"_count": 1, "attract": {"_count": 1}}, "Denniss": {"_count": 1, "guess": {"_count": 1}}, "Dumblydorr": {"_count": 1, "said": {"_count": 1}}, "Skrewts": {"_count": 2, "Ron": {"_count": 1}, "doing": {"_count": 1}}, "Zey": {"_count": 4, "are": {"_count": 3}, "do": {"_count": 1}}, "Karkaroff": {"_count": 23, "had": {"_count": 1}, "beckoned": {"_count": 2}, "s": {"_count": 1}, "kept": {"_count": 1}, "got": {"_count": 1}, "doesnt": {"_count": 1}, "Harry": {"_count": 1}, "hurried": {"_count": 1}, "clapped": {"_count": 1}, "looked": {"_count": 2}, "hovered": {"_count": 1}, "turned": {"_count": 1}, "wanted": {"_count": 1}, "please": {"_count": 1}, "was": {"_count": 1}, "straightened": {"_count": 1}, "drew": {"_count": 1}, "": {"_count": 1}, "fled": {"_count": 1}, "fears": {"_count": 1}, "intends": {"_count": 1}}, "bet": {"_count": 1, "he": {"_count": 1}}, "Bouillabaisse": {"_count": 1, "said": {"_count": 1}}, "Thrivin": {"_count": 1, "Hagrid": {"_count": 1}}, "Cho": {"_count": 26, "happened": {"_count": 1}, "was": {"_count": 4}, "stood": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 4}, "looked": {"_count": 1}, "made": {"_count": 2}, "shouted": {"_count": 1}, "": {"_count": 3}, "Chang": {"_count": 2}, "might": {"_count": 1}, "raised": {"_count": 1}, "sprang": {"_count": 1}, "flushed": {"_count": 1}, "will": {"_count": 1}, "blushed": {"_count": 1}}, "Bartemius": {"_count": 1, "Crouch": {"_count": 1}}, "Anybody": {"_count": 2, "wishing": {"_count": 1}, "know": {"_count": 1}}, "Aspiring": {"_count": 1, "champions": {"_count": 1}}, "Tomorrow": {"_count": 6, "night": {"_count": 1}, "morning": {"_count": 1}, "he": {"_count": 1}, "evening": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "Done": {"_count": 2, "it": {"_count": 1}, "what": {"_count": 1}}, "Madame": {"_count": 13, "Maxime": {"_count": 11}, "Maximes": {"_count": 1}, "Delacour": {"_count": 1}}, "badges": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "Coughing": {"_count": 2, "Ron": {"_count": 1}, "in": {"_count": 1}}, "Eau": {"_count": 1, "de": {"_count": 1}}, "Drawing": {"_count": 2, "their": {"_count": 1}, "room": {"_count": 1}}, "Sparks": {"_count": 2, "began": {"_count": 1}, "were": {"_count": 1}}, "Bravo": {"_count": 1, "Viktor": {"_count": 1}}, "Disappointed": {"_count": 2, "was": {"_count": 1}, "Harry": {"_count": 1}}, "Automatically": {"_count": 2, "it": {"_count": 1}, "without": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "Fleur": {"_count": 35, "Delacour": {"_count": 10}, "frowned": {"_count": 1}, "looked": {"_count": 1}, "glided": {"_count": 1}, "and": {"_count": 3}, "had": {"_count": 3}, "must": {"_count": 1}, "Cedric": {"_count": 1}, "bent": {"_count": 1}, "keeps": {"_count": 1}, "beamed": {"_count": 1}, "": {"_count": 1}, "smiled": {"_count": 1}, "turned": {"_count": 1}, "who": {"_count": 1}, "walked": {"_count": 1}, "tells": {"_count": 1}, "was": {"_count": 1}, "made": {"_count": 1}, "drew": {"_count": 1}, "Harry": {"_count": 1}, "came": {"_count": 1}}, "lady": {"_count": 1, "he": {"_count": 1}}, "Cest": {"_count": 1, "impossible": {"_count": 1}}, "Ogwarts": {"_count": 1, "cannot": {"_count": 1}}, "Binding": {"_count": 1, "magical": {"_count": 1}}, "Convenient": {"_count": 2, "eh": {"_count": 1}, "": {"_count": 1}}, "funny": {"_count": 2, "thing": {"_count": 1}, "": {"_count": 1}}, "Imagining": {"_count": 1, "things": {"_count": 1}}, "Courage": {"_count": 1, "in": {"_count": 1}}, "very": {"_count": 14, "important": {"_count": 1}, "interested": {"_count": 1}, "like": {"_count": 1}, "slowly": {"_count": 1}, "disappointing": {"_count": 1}, "impressive": {"_count": 1}, "well": {"_count": 3}, "untidy": {"_count": 1}, "secret": {"_count": 1}, "gracious": {"_count": 1}, "strong": {"_count": 1}, "neat": {"_count": 1}}, "hed": {"_count": 4, "fantasized": {"_count": 1}, "never": {"_count": 1}, "have": {"_count": 1}, "still": {"_count": 1}}, "feeble": {"_count": 1, "and": {"_count": 1}}, "plotting": {"_count": 1, "Harrys": {"_count": 1}}, "Insisting": {"_count": 1, "that": {"_count": 1}}, "theyd": {"_count": 1, "never": {"_count": 1}}, "Erm": {"_count": 11, "": {"_count": 9}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "Whose": {"_count": 5, "owl": {"_count": 1}, "head": {"_count": 1}, "forest": {"_count": 1}, "memory": {"_count": 1}, "word": {"_count": 1}}, "Predictably": {"_count": 3, "Malfoy": {"_count": 1}, "Neville": {"_count": 1}, "horribly": {"_count": 1}}, "everythin": {"_count": 1, "seems": {"_count": 1}}, "Exceptionally": {"_count": 1, "handsome": {"_count": 1}}, "Being": {"_count": 5, "shut": {"_count": 1}, "a": {"_count": 1}, "silly": {"_count": 2}, "continually": {"_count": 1}}, "FurnunculusV": {"_count": 1, "Harry": {"_count": 1}}, "DensaugeoV": {"_count": 1, "screamed": {"_count": 1}}, "Jets": {"_count": 3, "of": {"_count": 3}}, "Hospital": {"_count": 1, "wing": {"_count": 1}}, "Lood": {"_count": 1, "He": {"_count": 1}}, "Pansy": {"_count": 11, "Parkinson": {"_count": 8}, "resumed": {"_count": 1}, "was": {"_count": 1}, "left": {"_count": 1}}, "POTTER": {"_count": 2, "STINKS": {"_count": 1}, "": {"_count": 1}}, "Antidotes": {"_count": 1, "": {"_count": 1}}, "nothing": {"_count": 6, "to": {"_count": 1}, "else": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "mattered": {"_count": 1}}, "Testing": {"_count": 1, "": {"_count": 1}}, "Reluctantly": {"_count": 1, "Harry": {"_count": 1}}, "Champions": {"_count": 1, "have": {"_count": 1}}, "Frowning": {"_count": 2, "he": {"_count": 1}, "slightly": {"_count": 1}}, "Dumbledorel": {"_count": 1, "cried": {"_count": 1}}, "Mademoiselle": {"_count": 1, "Delacour": {"_count": 1}}, "inflexible": {"_count": 1, "": {"_count": 1}}, "rosewood": {"_count": 1, "": {"_count": 1}}, "dear": {"_count": 2, "me": {"_count": 1}, "dear": {"_count": 1}}, "however": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "Containing": {"_count": 1, "a": {"_count": 1}}, "ash": {"_count": 1, "": {"_count": 1}}, "pleasantly": {"_count": 1, "springy": {"_count": 1}}, "hornbeam": {"_count": 1, "and": {"_count": 1}}, "Avis": {"_count": 1, "": {"_count": 1}}, "Eventually": {"_count": 2, "however": {"_count": 1}, "the": {"_count": 1}}, "Photos": {"_count": 1, "Dumbledore": {"_count": 1}}, "Entering": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "Admittedly": {"_count": 6, "he": {"_count": 3}, "Ron": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "good": {"_count": 9, "luck": {"_count": 4}, "lord": {"_count": 1}, "afternoon": {"_count": 1}, "stuff": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "Stunningly": {"_count": 1, "pretty": {"_count": 1}}, "members": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}}, "cheering": {"_count": 1, "on": {"_count": 1}}, "notebook": {"_count": 2, "until": {"_count": 1}, "as": {"_count": 1}}, "Straightening": {"_count": 1, "up": {"_count": 1}}, "Mesmerized": {"_count": 1, "Harry": {"_count": 1}}, "Stunning": {"_count": 2, "Spells": {"_count": 2}}, "Stupefy": {"_count": 5, "they": {"_count": 1}, "": {"_count": 3}, "Harry": {"_count": 1}}, "Vicious": {"_count": 1, "thing": {"_count": 1}}, "\u2018": {"_count": 7, "How": {"_count": 1}, ".": {"_count": 3}, "an": {"_count": 1}, "muttered": {"_count": 1}, "I": {"_count": 1}}, "\u2018He": {"_count": 2, "still": {"_count": 1}, "is": {"_count": 1}}, "Trusting": {"_count": 1, "to": {"_count": 1}}, "Nearby": {"_count": 2, "on": {"_count": 2}}, "Karkaroffs": {"_count": 6, "trying": {"_count": 1}, "eyes": {"_count": 1}, "too": {"_count": 2}, "gone": {"_count": 1}, "Mark": {"_count": 1}}, "Dressed": {"_count": 1, "in": {"_count": 1}}, "Alarmed": {"_count": 1, "as": {"_count": 1}}, "\u2018Talonclipping": {"_count": 1, "by": {"_count": 1}}, "treating": {"_count": 1, "scalerot": {"_count": 1}}, "\u2018Dragons": {"_count": 1, "are": {"_count": 1}}, "practice": {"_count": 1, "papers": {"_count": 1}}, "Instant": {"_count": 1, "scalping": {"_count": 1}}, "pepper": {"_count": 1, "breath": {"_count": 1}}, "horn": {"_count": 1, "tongue": {"_count": 1}}, "Pausing": {"_count": 4, "at": {"_count": 1}, "every": {"_count": 1}, "with": {"_count": 1}, "only": {"_count": 1}}, "Diffindol": {"_count": 3, "Cedrics": {"_count": 1}, "yelled": {"_count": 1}, "Nothing": {"_count": 1}}, "Parchment": {"_count": 1, "quills": {"_count": 1}}, "brandnew": {"_count": 1, "and": {"_count": 1}}, "fair": {"_count": 1, "isnt": {"_count": 1}}, "were": {"_count": 7, "on": {"_count": 1}, "they": {"_count": 1}, "nearly": {"_count": 1}, "resisting": {"_count": 1}, "continually": {"_count": 1}, "going": {"_count": 1}, "sorry": {"_count": 1}}, "Shadowy": {"_count": 1, "figures": {"_count": 1}}, "Secrecy": {"_count": 1, "Sensor": {"_count": 1}}, "Vibrates": {"_count": 1, "when": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "Cheatings": {"_count": 1, "a": {"_count": 1}}, "got": {"_count": 3, "any": {"_count": 1}, "his": {"_count": 1}, "er": {"_count": 1}}, "whispered": {"_count": 5, "Moody": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 2}, "Narcissa": {"_count": 1}}, "Concentrate": {"_count": 1, "Harry": {"_count": 1}}, "Accio": {"_count": 12, "Dictionary": {"_count": 1}, "Firebolti": {"_count": 1}, "Butterbeeri": {"_count": 1}, "Wand": {"_count": 2}, "Proph": {"_count": 1}, "Rosmertas": {"_count": 1}, "Dittany": {"_count": 1}, "": {"_count": 1}, "Cup": {"_count": 1}, "Cloak": {"_count": 1}, "Diadem": {"_count": 1}}, "could": {"_count": 5, "I": {"_count": 3}, "this": {"_count": 1}, "you": {"_count": 1}}, "yelled": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "nearly": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "all": {"_count": 1}}, "more": {"_count": 8, "clapping": {"_count": 1}, "slowly": {"_count": 1}, "shouts": {"_count": 1}, "than": {"_count": 1}, "Death": {"_count": 1}, "of": {"_count": 1}, "prudent": {"_count": 1}, "said": {"_count": 1}}, "listening": {"_count": 1, "wasnt": {"_count": 1}}, "up": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "Picking": {"_count": 1, "up": {"_count": 1}}, "turned": {"_count": 1, "it": {"_count": 1}}, "Fits": {"_count": 1, "doesnt": {"_count": 1}}, "Sounded": {"_count": 2, "like": {"_count": 2}}, "\u2018Anything": {"_count": 1, "we": {"_count": 1}}, "get": {"_count": 3, "me": {"_count": 1}, "inside": {"_count": 1}, "a": {"_count": 1}}, "Canary": {"_count": 1, "Creams": {"_count": 1}}, "Drafty": {"_count": 1, "though": {"_count": 1}}, "BlastEnded": {"_count": 2, "Skrewts": {"_count": 2}}, "where": {"_count": 7, "do": {"_count": 1}, "the": {"_count": 1}, "dyou": {"_count": 1}, "is": {"_count": 2}, "to": {"_count": 1}, "are": {"_count": 1}}, "interesting": {"_count": 1, "said": {"_count": 1}}, "did": {"_count": 8, "I": {"_count": 1}, "it": {"_count": 1}, "something": {"_count": 1}, "you": {"_count": 3}, "that": {"_count": 1}, "either": {"_count": 1}}, "balderdash": {"_count": 1, "": {"_count": 1}}, "DDobby": {"_count": 1, "": {"_count": 1}}, "Practice": {"_count": 2, "": {"_count": 1}, "Stunning": {"_count": 1}}, "can": {"_count": 3, "Dobby": {"_count": 1}, "you": {"_count": 2}}, "Assuming": {"_count": 3, "this": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}}, "Dance": {"_count": 1, "partners": {"_count": 1}}, "Traditionally": {"_count": 1, "the": {"_count": 1}}, "Girls": {"_count": 3, "giggling": {"_count": 1}, "to": {"_count": 1}, "were": {"_count": 1}}, "Moreover": {"_count": 4, "to": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 1}}, "\u2018Never": {"_count": 3, "had": {"_count": 1}, "played": {"_count": 1}, "be": {"_count": 1}}, "\u2018Potter": {"_count": 1, "has": {"_count": 1}}, "Evil": {"_count": 2, "he": {"_count": 1}, "Sev": {"_count": 1}}, "Springing": {"_count": 2, "a": {"_count": 1}, "up": {"_count": 1}}, "Ruining": {"_count": 1, "the": {"_count": 1}}, "Mmm": {"_count": 2, "": {"_count": 2}}, "Whore": {"_count": 2, "you": {"_count": 2}}, "Everlasting": {"_count": 1, "icicles": {"_count": 1}}, "Wangoballwime": {"_count": 1, "": {"_count": 1}}, "Fairy": {"_count": 1, "lights": {"_count": 1}}, "Eloise": {"_count": 1, "Midgen": {"_count": 1}}, "Padma": {"_count": 3, "you": {"_count": 1}, "was": {"_count": 2}}, "Twitchy": {"_count": 1, "little": {"_count": 1}}, "straight": {"_count": 2, "and": {"_count": 1}, "backed": {"_count": 1}}, "Clear": {"_count": 4, "off": {"_count": 1}, "night": {"_count": 1}, "your": {"_count": 1}, "up": {"_count": 1}}, "\u2018Constant": {"_count": 1, "vigilance": {"_count": 1}}, "Dobbyl": {"_count": 1, "Harry": {"_count": 1}}, "presents": {"_count": 1, "": {"_count": 1}}, "Socks": {"_count": 1, "are": {"_count": 1}}, "Lairy": {"_count": 1, "fights": {"_count": 1}}, "Animal": {"_count": 2, "magnetism": {"_count": 1}, "dyou": {"_count": 1}}, "Padmas": {"_count": 1, "going": {"_count": 1}}, "\u2018Tm": {"_count": 11, "afraid": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 4}, "going": {"_count": 2}, "doing": {"_count": 1}, "telling": {"_count": 1}, "on": {"_count": 1}}, "Ve": {"_count": 1, "have": {"_count": 1}}, "Igor": {"_count": 2, "all": {"_count": 1}, "Karkaroff": {"_count": 1}}, "Zis": {"_count": 1, "is": {"_count": 1}}, "zey": {"_count": 2, "are": {"_count": 1}, "attacked": {"_count": 1}}, "Roger": {"_count": 3, "Davies": {"_count": 2}, "": {"_count": 1}}, "Hermyohnee": {"_count": 1, "she": {"_count": 1}}, "Hermownninny": {"_count": 1, "": {"_count": 1}}, "Viktors": {"_count": 1, "just": {"_count": 1}}, "Vare": {"_count": 1, "is": {"_count": 1}}, "Flee": {"_count": 1, "I": {"_count": 1}}, "Squeals": {"_count": 1, "issued": {"_count": 1}}, "Momen": {"_count": 1, "I": {"_count": 1}}, "might": {"_count": 2, "be": {"_count": 1}, "get": {"_count": 1}}, "Used": {"_count": 3, "ter": {"_count": 2}, "to": {"_count": 1}}, "Sorta": {"_count": 1, "had": {"_count": 1}}, "enough": {"_count": 2, "abou": {"_count": 1}, "": {"_count": 1}}, "blimey": {"_count": 2, "no": {"_count": 1}, "": {"_count": 1}}, "take": {"_count": 2, "a": {"_count": 1}, "moren": {"_count": 1}}, "Fourth": {"_count": 3, "door": {"_count": 1}, "prefect": {"_count": 1}, "floor": {"_count": 1}}, "Passwords": {"_count": 1, "\u2018pine": {"_count": 1}}, "RITA": {"_count": 1, "SKEBTERS": {"_count": 1}}, "Soft": {"_count": 1, "and": {"_count": 1}}, "Hate": {"_count": 1, "to": {"_count": 1}}, "DUMBLEDORES": {"_count": 2, "GIANT": {"_count": 1}, "ARMY": {"_count": 1}}, "Bloodthirsty": {"_count": 1, "and": {"_count": 1}}, "proper": {"_count": 1, "creatures": {"_count": 1}}, "Missing": {"_count": 3, "your": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "whereas": {"_count": 1, "if": {"_count": 1}}, "Absolute": {"_count": 1, "nightmare": {"_count": 1}}, "Bladvak": {"_count": 1, "": {"_count": 1}}, "er": {"_count": 13, "": {"_count": 13}}, "stopped": {"_count": 1, "coming": {"_count": 1}}, "Blowed": {"_count": 1, "if": {"_count": 1}}, "couple": {"_count": 1, "more": {"_count": 1}}, "Worrying": {"_count": 1, "about": {"_count": 1}}, "U": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "Snappy": {"_count": 1, "start": {"_count": 1}}, "Lo": {"_count": 2, "he": {"_count": 1}, "Fawkes": {"_count": 1}}, "Living": {"_count": 2, "proof": {"_count": 1}, "after": {"_count": 1}}, "Tha": {"_count": 3, "was": {"_count": 2}, "one": {"_count": 1}}, "Died": {"_count": 3, "see": {"_count": 1}, "years": {"_count": 2}}, "trusts": {"_count": 1, "people": {"_count": 1}}, "Gives": {"_count": 2, "em": {"_count": 1}, "light": {"_count": 1}}, "thas": {"_count": 2, "what": {"_count": 1}, "jus": {"_count": 1}}, "theres": {"_count": 3, "some": {"_count": 1}, "another": {"_count": 1}, "one": {"_count": 1}}, "Beat": {"_count": 1, "em": {"_count": 1}}, "Reluctant": {"_count": 1, "though": {"_count": 1}}, "Magnificent": {"_count": 2, "though": {"_count": 1}, "said": {"_count": 1}}, "open": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "\u2018Come": {"_count": 1, "seek": {"_count": 1}}, "Ages": {"_count": 1, "and": {"_count": 1}}, "Underwater": {"_count": 1, "": {"_count": 1}}, "sometimes": {"_count": 1, "dont": {"_count": 1}}, "Tactless": {"_count": 1, "": {"_count": 1}}, "Olive": {"_count": 1, "Hornby": {"_count": 1}}, "ooooh": {"_count": 1, "she": {"_count": 1}}, "thanks": {"_count": 7, "for": {"_count": 1}, "said": {"_count": 1}, "anyway": {"_count": 1}, "Dudley": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "Dobby": {"_count": 1}}, "something": {"_count": 12, "distinctly": {"_count": 1}, "about": {"_count": 2}, "to": {"_count": 1}, "happy": {"_count": 1}, "that": {"_count": 2}, "dark": {"_count": 1}, "good": {"_count": 1}, "of": {"_count": 2}, "incredible": {"_count": 1}}, "Egg": {"_count": 1, "": {"_count": 1}}, "Hiding": {"_count": 1, "are": {"_count": 1}}, "Dumbledorell": {"_count": 1, "have": {"_count": 1}}, "Clunk": {"_count": 10, "": {"_count": 10}}, "Pajama": {"_count": 1, "party": {"_count": 1}}, "Potion": {"_count": 1, "ingredients": {"_count": 1}}, "students": {"_count": 3, "attempting": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}}, "Aurors": {"_count": 1, "privilege": {"_count": 1}}, "Spots": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "Meaning": {"_count": 3, "that": {"_count": 1}, "youve": {"_count": 1}, "": {"_count": 1}}, "Map": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "Merlins": {"_count": 7, "beard": {"_count": 7}}, "dyou": {"_count": 5, "reckon": {"_count": 2}, "want": {"_count": 1}, "": {"_count": 1}, "get": {"_count": 1}}, "Obedient": {"_count": 1, "to": {"_count": 1}}, "Familiar": {"_count": 1, "flutterings": {"_count": 1}}, "Weekend": {"_count": 1, "after": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "Easier": {"_count": 2, "ter": {"_count": 1}, "to": {"_count": 1}}, "don": {"_count": 1, "mind": {"_count": 1}}, "give": {"_count": 4, "em": {"_count": 1}, "us": {"_count": 1}, "it": {"_count": 1}, "me": {"_count": 1}}, "Closest": {"_count": 1, "was": {"_count": 1}}, "Bring": {"_count": 5, "as": {"_count": 2}, "them": {"_count": 3}}, "e": {"_count": 1, "is": {"_count": 1}}, "theyve": {"_count": 3, "got": {"_count": 1}, "been": {"_count": 1}, "faced": {"_count": 1}}, "\u2018But": {"_count": 2, "past": {"_count": 1}, "though": {"_count": 1}}, "\u2018Too": {"_count": 1, "late": {"_count": 1}}, "here": {"_count": 3, "": {"_count": 2}, "within": {"_count": 1}}, "Waistdeep": {"_count": 1, "in": {"_count": 1}}, "Small": {"_count": 9, "fish": {"_count": 1}, "white": {"_count": 1}, "": {"_count": 2}, "comfort": {"_count": 1}, "children": {"_count": 1}, "green": {"_count": 1}, "bundles": {"_count": 1}, "and": {"_count": 1}}, "Relashio": {"_count": 1, "Harry": {"_count": 1}}, "faces": {"_count": 1, "that": {"_count": 1}}, "Merpeople": {"_count": 2, "were": {"_count": 2}}, "leave": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "Darting": {"_count": 1, "forward": {"_count": 1}}, "water": {"_count": 1, "was": {"_count": 1}}, "both": {"_count": 3, "of": {"_count": 2}, "orphans": {"_count": 1}}, "Gabrielle": {"_count": 3, "": {"_count": 1}, "was": {"_count": 2}}, "Merchieftainess": {"_count": 1, "Murcus": {"_count": 1}}, "Applause": {"_count": 1, "from": {"_count": 1}}, "PADFOOT": {"_count": 1, "RETURNS": {"_count": 1}}, "Pansys": {"_count": 1, "puglike": {"_count": 1}}, "Deprived": {"_count": 2, "of": {"_count": 2}}, "Scarlet": {"_count": 1, "woman": {"_count": 1}}, "reading": {"_count": 1, "magazines": {"_count": 1}}, "\u2018Harry": {"_count": 3, "Potters": {"_count": 1}, "Potter": {"_count": 2}}, "Determined": {"_count": 3, "not": {"_count": 2}, "as": {"_count": 1}}, "Boomslang": {"_count": 1, "skin": {"_count": 1}}, "Gillyweed": {"_count": 1, "": {"_count": 1}}, "Keen": {"_count": 4, "to": {"_count": 2}, "on": {"_count": 1}, "for": {"_count": 1}}, "Tethered": {"_count": 1, "at": {"_count": 1}}, "Chicken": {"_count": 1, "": {"_count": 1}}, "Fulfilling": {"_count": 1, "my": {"_count": 1}}, "Phrases": {"_count": 1, "jumped": {"_count": 1}}, "house": {"_count": 1, "appears": {"_count": 1}}, "St": {"_count": 2, "": {"_count": 2}}, "Terror": {"_count": 4, "everywhere": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 1}, "tore": {"_count": 1}}, "panic": {"_count": 1, "": {"_count": 1}}, "confusion": {"_count": 1, "": {"_count": 1}}, "Crouchs": {"_count": 6, "principles": {"_count": 1}, "own": {"_count": 1}, "son": {"_count": 2}, "hair": {"_count": 1}, "head": {"_count": 1}}, "gotten": {"_count": 1, "to": {"_count": 1}}, "Grief": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "Wasted": {"_count": 1, "away": {"_count": 1}}, "next": {"_count": 1, "his": {"_count": 1}}, "Rosier": {"_count": 2, "and": {"_count": 1}, "is": {"_count": 1}}, "Avery": {"_count": 3, "from": {"_count": 1}, "told": {"_count": 1}, "isnt": {"_count": 1}}, "whats": {"_count": 4, "he": {"_count": 1}, "happened": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}}, "Blustering": {"_count": 1, "on": {"_count": 1}}, "itd": {"_count": 2, "probably": {"_count": 1}, "be": {"_count": 1}}, "Unwilling": {"_count": 1, "to": {"_count": 1}}, "HarRy": {"_count": 1, "PotTER": {"_count": 1}}, "GO": {"_count": 1, "back": {"_count": 1}}, "\u2018You": {"_count": 1, "deserve": {"_count": 1}}, "Undiluted": {"_count": 1, "bubotuber": {"_count": 1}}, "Thesere": {"_count": 1, "nifflers": {"_count": 1}}, "whos": {"_count": 1, "missin": {"_count": 1}}, "Count": {"_count": 1, "yer": {"_count": 1}}, "Vanishes": {"_count": 1, "after": {"_count": 1}}, "\u2018Yehre": {"_count": 1, "a": {"_count": 1}}, "\u2018Yer": {"_count": 1, "mother": {"_count": 1}}, "Chuck": {"_count": 2, "em": {"_count": 1}, "us": {"_count": 1}}, "Wrong": {"_count": 1, "flavor": {"_count": 1}}, "Bugged": {"_count": 1, "": {"_count": 1}}, "ooh": {"_count": 1, "if": {"_count": 1}}, "Gets": {"_count": 3, "it": {"_count": 1}, "him": {"_count": 1}, "pulled": {"_count": 1}}, "Growing": {"_count": 1, "nicely": {"_count": 1}}, "Vill": {"_count": 1, "you": {"_count": 1}}, "Hermyownninny": {"_count": 1, "talks": {"_count": 1}}, "Vot": {"_count": 4, "is": {"_count": 2}, "about": {"_count": 1}, "he": {"_count": 1}}, "Vosnt": {"_count": 1, "he": {"_count": 1}}, "stupid": {"_count": 1, "": {"_count": 1}}, "thing": {"_count": 1, "": {"_count": 1}}, "Warn": {"_count": 1, "": {"_count": 1}}, "escaped": {"_count": 1, "": {"_count": 1}}, "Bertha": {"_count": 4, "": {"_count": 1}, "Jorkins": {"_count": 3}}, "dead": {"_count": 3, "": {"_count": 3}}, "stronger": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Sher": {"_count": 1, "sherbet": {"_count": 1}}, "Lead": {"_count": 5, "the": {"_count": 3}, "me": {"_count": 1}, "on": {"_count": 1}}, "somewhere": {"_count": 3, "around": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}}, "Wouldve": {"_count": 2, "been": {"_count": 1}, "only": {"_count": 1}}, "Treachery": {"_count": 1, "": {"_count": 1}}, "Apologize": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "z": {"_count": 2, "": {"_count": 2}}, "hows": {"_count": 1, "this": {"_count": 1}}, "remind": {"_count": 1, "me": {"_count": 1}}, "Georges": {"_count": 3, "right": {"_count": 1}, "fingers": {"_count": 1}, "grin": {"_count": 1}}, "Carry": {"_count": 5, "on": {"_count": 5}}, "Summoned": {"_count": 1, "it": {"_count": 1}}, "Broke": {"_count": 1, "your": {"_count": 1}}, "constant": {"_count": 1, "vigilance": {"_count": 1}}, "Constant": {"_count": 1, "vigilance": {"_count": 1}}, "Snuffles": {"_count": 3, "is": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "1": {"_count": 5, "am": {"_count": 1}, "will": {"_count": 2}, "": {"_count": 1}, "emblazoned": {"_count": 1}}, "Crucio": {"_count": 3, "said": {"_count": 1}, "The": {"_count": 1}, "It": {"_count": 1}}, "Sherbet": {"_count": 1, "lemon": {"_count": 1}}, "Fizzing": {"_count": 3, "Whizbee": {"_count": 3}}, "Droobles": {"_count": 1, "Best": {"_count": 1}}, "Bertie": {"_count": 1, "Botts": {"_count": 1}}, "Chocolate": {"_count": 3, "Frog": {"_count": 1}, "in": {"_count": 1}, "Cauldrons": {"_count": 1}}, "Sugar": {"_count": 1, "Quill": {"_count": 1}}, "Cockroach": {"_count": 1, "Cluster": {"_count": 1}}, "Lowering": {"_count": 1, "his": {"_count": 1}}, "Chains": {"_count": 1, "encircled": {"_count": 1}}, "Evan": {"_count": 1, "Rosier": {"_count": 1}}, "Rookwood": {"_count": 4, "": {"_count": 1}, "get": {"_count": 1}, "scurried": {"_count": 1}, "used": {"_count": 1}}, "Augustus": {"_count": 2, "Rookwood": {"_count": 2}}, "Ludovic": {"_count": 1, "Bagman": {"_count": 1}}, "Despicable": {"_count": 2, "Mr": {"_count": 1}, "cowardice": {"_count": 1}}, "Mother": {"_count": 3, "stop": {"_count": 1}, "wants": {"_count": 1}, "to": {"_count": 1}}, "Undoubtedly": {"_count": 6, "I": {"_count": 2}, "that": {"_count": 1}, "Voldemort": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "Curiosity": {"_count": 1, "is": {"_count": 1}}, "Continue": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "these": {"_count": 1}}, "particularly": {"_count": 1, "now": {"_count": 1}}, "remember": {"_count": 3, "what": {"_count": 1}, "Norbert": {"_count": 1}, "Ron": {"_count": 1}}, "\u2018Ludo": {"_count": 1, "Bagmans": {"_count": 1}}, "Tired": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "Breakfast": {"_count": 4, "was": {"_count": 2}, "she": {"_count": 1}, "": {"_count": 1}}, "Alarming": {"_count": 1, "evidence": {"_count": 1}}, "Parseltongue": {"_count": 1, "the": {"_count": 1}}, "Similarly": {"_count": 1, "anyone": {"_count": 1}}, "shes": {"_count": 3, "definitely": {"_count": 1}, "not": {"_count": 1}, "somethin": {"_count": 1}}, "Oi": {"_count": 6, "": {"_count": 4}, "out": {"_count": 1}, "Harper": {"_count": 1}}, "Fleurs": {"_count": 4, "little": {"_count": 1}, "not": {"_count": 1}, "sisters": {"_count": 1}, "looking": {"_count": 1}}, "Surprise": {"_count": 1, "": {"_count": 1}}, "Beaten": {"_count": 1, "him": {"_count": 1}}, "Confident": {"_count": 1, "": {"_count": 1}}, "Bagmans": {"_count": 1, "whistle": {"_count": 1}}, "Point": {"_count": 3, "Me": {"_count": 1}, "Mel": {"_count": 1}, "is": {"_count": 1}}, "Left": {"_count": 5, "": {"_count": 1}, "to": {"_count": 1}, "alone": {"_count": 1}, "here": {"_count": 1}, "ave": {"_count": 1}}, "left": {"_count": 1, "again": {"_count": 1}}, "Reductol": {"_count": 1, "he": {"_count": 1}}, "Impedimental": {"_count": 3, "Harry": {"_count": 1}, "he": {"_count": 1}, "Incarcerousl": {"_count": 1}}, "Someonell": {"_count": 1, "come": {"_count": 1}}, "otherwise": {"_count": 1, "hell": {"_count": 1}}, "Cedrics": {"_count": 2, "footsteps": {"_count": 1}, "body": {"_count": 1}}, "Answer": {"_count": 4, "on": {"_count": 1}, "wrongly": {"_count": 1}, "me": {"_count": 2}}, "Remain": {"_count": 1, "silent": {"_count": 1}}, "thatd": {"_count": 2, "be": {"_count": 2}}, "\u2018middle": {"_count": 1, "of": {"_count": 1}}, "Spy": {"_count": 1, "": {"_count": 1}}, "spy": {"_count": 1, "": {"_count": 1}}, "FLESH": {"_count": 1, "BLOOD": {"_count": 1}}, "TOM": {"_count": 1, "RIDDLE": {"_count": 1}}, "Bone": {"_count": 1, "of": {"_count": 1}}, "Flesh": {"_count": 1, "of": {"_count": 1}}, "Bblood": {"_count": 1, "of": {"_count": 1}}, "forcibly": {"_count": 1, "taken": {"_count": 1}}, "resurrect": {"_count": 1, "your": {"_count": 1}}, "Robe": {"_count": 1, "me": {"_count": 1}}, "Whiter": {"_count": 1, "than": {"_count": 1}}, "slowly": {"_count": 1, "cautiously": {"_count": 1}}, "Thirteen": {"_count": 2, "years": {"_count": 1}, "long": {"_count": 1}}, "thirteen": {"_count": 1, "years": {"_count": 1}}, "Trembling": {"_count": 2, "from": {"_count": 1}, "she": {"_count": 1}}, "Cruciol": {"_count": 2, "The": {"_count": 1}, "Neville": {"_count": 1}}, "Worthless": {"_count": 1, "and": {"_count": 1}}, "Momentarily": {"_count": 1, "shapeless": {"_count": 1}}, "destroying": {"_count": 1, "dangerous": {"_count": 1}}, "pain": {"_count": 1, "beyond": {"_count": 1}}, "four": {"_count": 2, "years": {"_count": 1}, "": {"_count": 1}}, "thwarted": {"_count": 1, "once": {"_count": 1}}, "PRIORI": {"_count": 1, "INCANTATEM": {"_count": 1}}, "Bow": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "Whitehot": {"_count": 2, "knives": {"_count": 1}, "anger": {"_count": 1}}, "say": {"_count": 1, "no": {"_count": 1}}, "Killed": {"_count": 3, "me": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "hold": {"_count": 3, "on": {"_count": 1}, "you": {"_count": 2}}, "first": {"_count": 2, "his": {"_count": 1}, "year": {"_count": 1}}, "tall": {"_count": 1, "and": {"_count": 1}}, "NOW": {"_count": 2, "": {"_count": 2}}, "Gripping": {"_count": 3, "his": {"_count": 2}, "Harrys": {"_count": 1}}, "VERITASERUM": {"_count": 1, "Harry": {"_count": 1}}, "Shock": {"_count": 1, "and": {"_count": 1}}, "waiting": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "hospital": {"_count": 2, "wing": {"_count": 2}}, "Along": {"_count": 5, "the": {"_count": 4}, "yet": {"_count": 1}}, "drink": {"_count": 1, "this": {"_count": 1}}, "Drink": {"_count": 7, "it": {"_count": 2}, "up": {"_count": 2}, "this": {"_count": 3}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "Decent": {"_count": 1, "people": {"_count": 1}}, "closer": {"_count": 1, "than": {"_count": 1}}, "Understanding": {"_count": 2, "is": {"_count": 1}, "the": {"_count": 1}}, "Polyjuice": {"_count": 3, "Potion": {"_count": 3}}, "Minutes": {"_count": 2, "passed": {"_count": 1}, "previously": {"_count": 1}}, "Step": {"_count": 4, "aside": {"_count": 1}, "over": {"_count": 1}, "two": {"_count": 1}, "three": {"_count": 1}}, "Staged": {"_count": 1, "my": {"_count": 1}}, "Rewards": {"_count": 1, "for": {"_count": 1}}, "Ensure": {"_count": 1, "he": {"_count": 1}}, "Forced": {"_count": 1, "him": {"_count": 1}}, "iVoooo": {"_count": 1, "": {"_count": 1}}, "Covered": {"_count": 2, "it": {"_count": 1}, "in": {"_count": 1}}, "Turned": {"_count": 1, "it": {"_count": 1}}, "Numbing": {"_count": 1, "the": {"_count": 1}}, "Priori": {"_count": 1, "Incantatem": {"_count": 1}}, "am": {"_count": 2, "I": {"_count": 2}}, "less": {"_count": 1, "recent": {"_count": 1}}, "Regrettable": {"_count": 1, "but": {"_count": 1}}, "Unnoticed": {"_count": 3, "by": {"_count": 3}}, "YouKnow": {"_count": 3, "Who": {"_count": 2}, "Whos": {"_count": 1}}, "returned": {"_count": 1, "": {"_count": 1}}, "certainly": {"_count": 1, "Crouch": {"_count": 1}}, "Headaches": {"_count": 1, "": {"_count": 1}}, "Also": {"_count": 3, "cleared": {"_count": 1}, "if": {"_count": 1}, "with": {"_count": 1}}, "Remove": {"_count": 1, "the": {"_count": 1}}, "Envoys": {"_count": 1, "to": {"_count": 1}}, "Fail": {"_count": 1, "to": {"_count": 1}}, "Poppy": {"_count": 1, "Dumbledore": {"_count": 1}}, "Known": {"_count": 2, "it": {"_count": 1}, "member": {"_count": 1}}, "Migh": {"_count": 3, "be": {"_count": 3}}, "Secret": {"_count": 1, "though": {"_count": 1}}, "Olympe": {"_count": 2, "Madame": {"_count": 1}, "an": {"_count": 1}}, "Further": {"_count": 1, "along": {"_count": 1}}, "was": {"_count": 8, "Dumbledore": {"_count": 1}, "there": {"_count": 1}, "Fang": {"_count": 1}, "it": {"_count": 1}, "no": {"_count": 1}, "dragged": {"_count": 1}, "inside": {"_count": 1}, "a": {"_count": 1}}, "Theirs": {"_count": 1, "had": {"_count": 1}}, "Differences": {"_count": 1, "of": {"_count": 1}}, "Arry": {"_count": 4, "": {"_count": 1}, "she": {"_count": 1}, "Gripook": {"_count": 1}, "you": {"_count": 1}}, "Alvays": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "Blinded": {"_count": 2, "by": {"_count": 1}, "and": {"_count": 1}}, "Exploding": {"_count": 2, "Snap": {"_count": 1}, "Snaps": {"_count": 1}}, "Ignored": {"_count": 1, "our": {"_count": 1}}, "Turns": {"_count": 5, "out": {"_count": 5}}, "Borrowed": {"_count": 2, "loads": {"_count": 1}, "it": {"_count": 1}}, "although": {"_count": 5, "she": {"_count": 1}, "of": {"_count": 1}, "as": {"_count": 1}, "actually": {"_count": 1}, "Dumbledores": {"_count": 1}}, "Cars": {"_count": 1, "that": {"_count": 1}}, "Dudders": {"_count": 1, "out": {"_count": 1}}, "Bungy": {"_count": 1, "who": {"_count": 1}}, "Listening": {"_count": 2, "to": {"_count": 2}}, "arent": {"_count": 3, "bringing": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}}, "Often": {"_count": 2, "the": {"_count": 1}, "said": {"_count": 1}}, "old": {"_count": 3, "news": {"_count": 1}, "curses": {"_count": 1}, "clients": {"_count": 1}}, "Neighborhood": {"_count": 1, "children": {"_count": 1}}, "Seeking": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "Magnolia": {"_count": 1, "Road": {"_count": 1}}, "squealed": {"_count": 1, "like": {"_count": 1}}, "Round": {"_count": 1, "at": {"_count": 1}}, "Whereas": {"_count": 4, "you": {"_count": 1}, "Bill": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 1}}, "\u2018Dont": {"_count": 2, "kill": {"_count": 1}, "hurt": {"_count": 1}}, "Wwhere": {"_count": 1, "are": {"_count": 1}}, "Ccut": {"_count": 1, "it": {"_count": 1}}, "Stumbling": {"_count": 1, "backward": {"_count": 1}}, "THIS": {"_count": 1, "WAY": {"_count": 1}}, "Wheeling": {"_count": 2, "around": {"_count": 2}}, "Trees": {"_count": 3, "rustled": {"_count": 1}, "had": {"_count": 1}, "uprooted": {"_count": 1}}, "Diddy": {"_count": 1, "": {"_count": 1}}, "DIDDY": {"_count": 1, "": {"_count": 1}}, "Phone": {"_count": 1, "the": {"_count": 1}}, "BOY": {"_count": 1, "": {"_count": 1}}, "Narrowly": {"_count": 1, "missing": {"_count": 1}}, "OWLS": {"_count": 2, "": {"_count": 1}, "AGAIN": {"_count": 1}}, "DO": {"_count": 5, "NOT": {"_count": 5}}, "AHA": {"_count": 2, "": {"_count": 2}}, "Pointed": {"_count": 1, "his": {"_count": 1}}, "SHUT": {"_count": 1, "UP": {"_count": 1}}, "Ttripped": {"_count": 1, "said": {"_count": 1}}, "felt": {"_count": 2, "": {"_count": 2}}, "Following": {"_count": 2, "discussions": {"_count": 1}, "the": {"_count": 1}}, "SIT": {"_count": 1, "BACK": {"_count": 1}}, "Kiss": {"_count": 1, "you": {"_count": 1}}, "Fought": {"_count": 1, "em": {"_count": 1}}, "FOR": {"_count": 2, "GODS": {"_count": 1}, "HEAVENS": {"_count": 1}}, "Arthurs": {"_count": 3, "just": {"_count": 1}, "taking": {"_count": 1}, "done": {"_count": 1}}, "Oho": {"_count": 8, "": {"_count": 5}, "he": {"_count": 1}, "said": {"_count": 2}}, "Murdered": {"_count": 2, "my": {"_count": 1}, "as": {"_count": 1}}, "REMEMBER": {"_count": 1, "MY": {"_count": 1}}, "Understand": {"_count": 2, "": {"_count": 2}}, "Burglars": {"_count": 1, "he": {"_count": 1}}, "PProfessor": {"_count": 1, "Lupin": {"_count": 1}}, "Wotcher": {"_count": 4, "Harry": {"_count": 3}, "said": {"_count": 1}}, "Lilys": {"_count": 2, "eyes": {"_count": 1}, "smile": {"_count": 1}}, "Elementary": {"_count": 1, "wand": {"_count": 1}}, "Ffine": {"_count": 1, "": {"_count": 1}}, "Nymphadora": {"_count": 2, "Tonks": {"_count": 2}}, "Emmeline": {"_count": 1, "Vance": {"_count": 1}}, "Brooms": {"_count": 1, "said": {"_count": 1}}, "Confined": {"_count": 1, "to": {"_count": 1}}, "Tonks": {"_count": 18, "paused": {"_count": 1}, "chuckled": {"_count": 1}, "swerved": {"_count": 1}, "was": {"_count": 5}, "told": {"_count": 1}, "obliged": {"_count": 1}, "and": {"_count": 2}, "here": {"_count": 1}, "stood": {"_count": 1}, "hurried": {"_count": 1}, "had": {"_count": 1}, "deserves": {"_count": 1}, "landed": {"_count": 1}}, "Kingsley": {"_count": 15, "is": {"_count": 1}, "Shacklebolt": {"_count": 3}, "tipped": {"_count": 1}, "Shacklebolts": {"_count": 1}, "started": {"_count": 1}, "flashed": {"_count": 1}, "was": {"_count": 2}, "and": {"_count": 2}, "I": {"_count": 1}, "turned": {"_count": 1}, "": {"_count": 1}}, "Metamorphmagi": {"_count": 1, "are": {"_count": 1}}, "cried": {"_count": 2, "Tonks": {"_count": 1}, "Hermione": {"_count": 1}}, "wand": {"_count": 1, "still": {"_count": 1}}, "Locomotor": {"_count": 1, "Trunk": {"_count": 1}}, "Disillusionment": {"_count": 1, "Charm": {"_count": 1}}, "Tonksll": {"_count": 1, "be": {"_count": 1}}, "Lupinll": {"_count": 1, "be": {"_count": 1}}, "Bearing": {"_count": 1, "south": {"_count": 1}}, "Town": {"_count": 1, "ahead": {"_count": 1}}, "Bear": {"_count": 3, "southeast": {"_count": 1}, "in": {"_count": 2}}, "NUMBER": {"_count": 1, "TWELVE": {"_count": 1}}, "Pressing": {"_count": 1, "her": {"_count": 1}}, "Pecked": {"_count": 1, "us": {"_count": 1}}, "SO": {"_count": 2, "YOU": {"_count": 1}, "SIRIUS": {"_count": 1}}, "BUT": {"_count": 3, "WHY": {"_count": 1}, "DOES": {"_count": 2}}, "CANTVE": {"_count": 1, "WANTED": {"_count": 1}}, "Headquarters": {"_count": 1, "of": {"_count": 1}}, "Extendable": {"_count": 3, "": {"_count": 1}, "Ears": {"_count": 2}}, "Giving": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "Git": {"_count": 2, "said": {"_count": 1}, "away": {"_count": 1}}, "Nutter": {"_count": 1, "": {"_count": 1}}, "Dammit": {"_count": 1, "Harry": {"_count": 1}}, "Tonksl": {"_count": 1, "cried": {"_count": 1}}, "K": {"_count": 10, "": {"_count": 10}}, "Yooooul": {"_count": 1, "she": {"_count": 1}}, "Journey": {"_count": 2, "all": {"_count": 1}, "was": {"_count": 1}}, "Somen": {"_count": 1, "say": {"_count": 1}}, "Owe": {"_count": 1, "you": {"_count": 1}}, "asking": {"_count": 1, "me": {"_count": 1}}, "Finest": {"_count": 2, "fifteenthcentury": {"_count": 1}, "dragon": {"_count": 1}}, "Opposite": {"_count": 1, "Harry": {"_count": 1}}, "Screwing": {"_count": 1, "up": {"_count": 1}}, "hair": {"_count": 1, "from": {"_count": 1}}, "Page": {"_count": 4, "lllHarry": {"_count": 1}, "five": {"_count": 1}, "lOOOHarry": {"_count": 1}, "llOlHarry": {"_count": 1}}, "Beg": {"_count": 2, "pardon": {"_count": 1}, "": {"_count": 1}}, "\u2018Youre": {"_count": 1, "too": {"_count": 1}}, "others": {"_count": 1, "": {"_count": 1}}, "Working": {"_count": 1, "as": {"_count": 1}}, "demort": {"_count": 1, "said": {"_count": 1}}, "Cover": {"_count": 1, "your": {"_count": 1}}, "Kreachers": {"_count": 9, "really": {"_count": 1}, "pale": {"_count": 1}, "footsteps": {"_count": 1}, "voice": {"_count": 1}, "done": {"_count": 1}, "croaking": {"_count": 1}, "insides": {"_count": 1}, "sobs": {"_count": 1}, "thin": {"_count": 1}}, "Deftly": {"_count": 1, "spraying": {"_count": 1}}, "Moment": {"_count": 1, "youve": {"_count": 1}}, "Testers": {"_count": 1, "": {"_count": 1}}, "WE": {"_count": 2, "ARE": {"_count": 1}, "DID": {"_count": 1}}, "COMPLETELY": {"_count": 1, "IRRESPONSIBLE": {"_count": 1}}, "Acting": {"_count": 1, "as": {"_count": 1}}, "Smells": {"_count": 1, "like": {"_count": 1}}, "Kreacher": {"_count": 56, "did": {"_count": 2}, "said": {"_count": 4}, "was": {"_count": 3}, "s": {"_count": 2}, "is": {"_count": 1}, "lives": {"_count": 1}, "bowed": {"_count": 2}, "would": {"_count": 1}, "wasnt": {"_count": 1}, "seemed": {"_count": 1}, "the": {"_count": 1}, "thinks": {"_count": 1}, "has": {"_count": 1}, "and": {"_count": 2}, "intended": {"_count": 1}, "I": {"_count": 3}, "seized": {"_count": 1}, "told": {"_count": 2}, "injured": {"_count": 1}, "wont": {"_count": 1}, "belongs": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "will": {"_count": 1}, "nicked": {"_count": 1}, "closed": {"_count": 1}, "lay": {"_count": 1}, "saw": {"_count": 1}, "rocked": {"_count": 1}, "drank": {"_count": 1}, "cried": {"_count": 1}, "needed": {"_count": 1}, "raised": {"_count": 1}, "knew": {"_count": 1}, "tried": {"_count": 1}, "punished": {"_count": 1}, "failed": {"_count": 1}, "began": {"_count": 1}, "had": {"_count": 1}, "dropped": {"_count": 1}, "Id": {"_count": 1}, "apologizes": {"_count": 1}, "no": {"_count": 1}, "came": {"_count": 1}}, "comes": {"_count": 1, "back": {"_count": 1}}, "cousin": {"_count": 1, "of": {"_count": 1}}, "Andromedas": {"_count": 1, "sisters": {"_count": 1}}, "Lestrange": {"_count": 3, "": {"_count": 1}, "I": {"_count": 2}}, "Bellatrix": {"_count": 24, "and": {"_count": 1}, "Lestrange": {"_count": 7}, "was": {"_count": 4}, "he": {"_count": 1}, "lowered": {"_count": 1}, "still": {"_count": 1}, "looked": {"_count": 1}, "however": {"_count": 1}, "watched": {"_count": 1}, "said": {"_count": 1}, "strode": {"_count": 1}, "who": {"_count": 1}, "alone": {"_count": 1}, "spun": {"_count": 1}, "laughed": {"_count": 1}}, "Rodolphus": {"_count": 1, "s": {"_count": 1}}, "Despite": {"_count": 6, "the": {"_count": 2}, "his": {"_count": 4}}, "Mmmorning": {"_count": 1, "Harry": {"_count": 1}}, "Porridge": {"_count": 1, "": {"_count": 1}}, "Amelia": {"_count": 2, "Bones": {"_count": 2}}, "Wonderfully": {"_count": 1, "ingenious": {"_count": 1}}, "six": {"_count": 1, "": {"_count": 1}}, "Visitor": {"_count": 2, "please": {"_count": 1}, "to": {"_count": 1}}, "Tallest": {"_count": 1, "of": {"_count": 1}}, "Grouped": {"_count": 1, "around": {"_count": 1}}, "Glittering": {"_count": 3, "jets": {"_count": 1}, "pinkandsilver": {"_count": 1}, "shards": {"_count": 1}}, "Jostled": {"_count": 2, "slightly": {"_count": 1}, "by": {"_count": 1}}, "droppings": {"_count": 1, "all": {"_count": 1}}, "Memos": {"_count": 1, "were": {"_count": 1}}, "Newspaper": {"_count": 1, "cuttings": {"_count": 1}}, "Department": {"_count": 2, "of": {"_count": 2}}, "Courtroom": {"_count": 1, "": {"_count": 1}}, "8": {"_count": 1, "THE": {"_count": 1}}, "Empty": {"_count": 2, "benches": {"_count": 1}, "aisle": {"_count": 1}}, "Disciplinary": {"_count": 1, "hearing": {"_count": 1}}, "Interrogators": {"_count": 1, "Cornelius": {"_count": 1}}, "Court": {"_count": 1, "Scribe": {"_count": 1}}, "Perfectly": {"_count": 1, "true": {"_count": 1}}, "Arabella": {"_count": 1, "Doreen": {"_count": 1}}, "given": {"_count": 1, "past": {"_count": 1}}, "describe": {"_count": 1, "them": {"_count": 1}}, "dreadful": {"_count": 1, "things": {"_count": 1}}, "Clause": {"_count": 1, "seven": {"_count": 1}}, "Serious": {"_count": 1, "miscarriage": {"_count": 1}}, "Laws": {"_count": 1, "can": {"_count": 1}}, "cleared": {"_count": 1, "of": {"_count": 1}}, "Mugglebaiting": {"_count": 1, "might": {"_count": 1}}, "Patronus": {"_count": 1, "Potter": {"_count": 1}}, "Snakelike": {"_count": 1, "in": {"_count": 1}}, "delay": {"_count": 1, "laws": {"_count": 1}}, "Eric": {"_count": 1, "the": {"_count": 1}}, "Scar": {"_count": 1, "Harry": {"_count": 1}}, "Suit": {"_count": 1, "yourselves": {"_count": 1}}, "Booklists": {"_count": 1, "have": {"_count": 1}}, "Freds": {"_count": 3, "mouth": {"_count": 1}, "words": {"_count": 1}, "twin": {"_count": 1}}, "Winning": {"_count": 1, "the": {"_count": 1}}, "ickle": {"_count": 1, "Ronnie": {"_count": 1}}, "wow": {"_count": 3, "": {"_count": 3}}, "Match": {"_count": 1, "his": {"_count": 1}}, "Desk": {"_count": 1, "in": {"_count": 1}}, "naught": {"_count": 1, "to": {"_count": 1}}, "getting": {"_count": 1, "really": {"_count": 1}}, "Venomous": {"_count": 1, "Tentacula": {"_count": 1}}, "Wiv": {"_count": 1, "all": {"_count": 1}}, "Original": {"_count": 1, "Order": {"_count": 1}}, "Benjy": {"_count": 2, "Fenwick": {"_count": 2}}, "shift": {"_count": 1, "aside": {"_count": 1}}, "brother": {"_count": 1, "of": {"_count": 1}}, "Sturgis": {"_count": 6, "Podmore": {"_count": 4}, "was": {"_count": 1}, "had": {"_count": 1}}, "Caradoc": {"_count": 1, "Dearborn": {"_count": 1}}, "Elphias": {"_count": 3, "Doge": {"_count": 2}, "I": {"_count": 1}}, "Gideon": {"_count": 1, "Prewett": {"_count": 1}}, "budge": {"_count": 1, "along": {"_count": 1}}, "listen": {"_count": 2, "Ive": {"_count": 1}, "dyou": {"_count": 1}}, "Sprawled": {"_count": 1, "on": {"_count": 1}}, "Rrriddikulus": {"_count": 1, "Mrs": {"_count": 1}}, "Rriddikulus": {"_count": 1, "she": {"_count": 1}}, "riddikulus": {"_count": 1, "Riddikulusl": {"_count": 1}}, "Dddont": {"_count": 1, "tell": {"_count": 1}}, "Cut": {"_count": 1, "it": {"_count": 1}}, "COULD": {"_count": 1, "HAVE": {"_count": 1}}, "Guard": {"_count": 1, "": {"_count": 1}}, "WILL": {"_count": 1, "YOU": {"_count": 1}}, "Onto": {"_count": 1, "the": {"_count": 1}}, "Luna": {"_count": 37, "turned": {"_count": 2}, "Lovegoods": {"_count": 1}, "did": {"_count": 1}, "drifted": {"_count": 1}, "took": {"_count": 1}, "was": {"_count": 7}, "gave": {"_count": 1}, "Lovegood": {"_count": 2}, "I": {"_count": 1}, "on": {"_count": 1}, "says": {"_count": 1}, "and": {"_count": 3}, "however": {"_count": 1}, "gestured": {"_count": 1}, "can": {"_count": 1}, "Neville": {"_count": 1}, "believed": {"_count": 1}, "hi": {"_count": 1}, "smiled": {"_count": 1}, "my": {"_count": 1}, "ought": {"_count": 1}, "had": {"_count": 1}, "looked": {"_count": 1}, "who": {"_count": 1}, "we": {"_count": 1}, "reached": {"_count": 1}, "where": {"_count": 1}}, "Lunas": {"_count": 4, "in": {"_count": 1}, "mouth": {"_count": 1}, "father": {"_count": 1}, "got": {"_count": 1}}, "Wit": {"_count": 1, "beyond": {"_count": 1}}, "Mimbulus": {"_count": 4, "mimbletonia": {"_count": 2}, "mimbletonio": {"_count": 1}, "mimbletoniaV": {"_count": 1}}, "Liquid": {"_count": 1, "squirted": {"_count": 1}}, "Ssorry": {"_count": 1, "he": {"_count": 1}}, "hello": {"_count": 1, "Harry": {"_count": 1}}, "Um": {"_count": 6, "": {"_count": 6}}, "hi": {"_count": 2, "said": {"_count": 1}, "she": {"_count": 1}}, "bye": {"_count": 1, "then": {"_count": 1}}, "Scour": {"_count": 1, "gif": {"_count": 1}}, "Boy": {"_count": 1, "and": {"_count": 1}}, "baboons": {"_count": 1, "": {"_count": 1}}, "backside": {"_count": 2, "": {"_count": 2}}, "Utterly": {"_count": 1, "nonplussed": {"_count": 1}}, "Baboons": {"_count": 1, "": {"_count": 1}}, "CORRUPTION": {"_count": 1, "IN": {"_count": 1}}, "Rifling": {"_count": 1, "through": {"_count": 1}}, "Manners": {"_count": 1, "Potter": {"_count": 1}}, "Sniggering": {"_count": 1, "Malfoy": {"_count": 1}}, "firs": {"_count": 1, "years": {"_count": 1}}, "Wings": {"_count": 1, "sprouted": {"_count": 1}}, "cant": {"_count": 2, "you": {"_count": 1}, "it": {"_count": 1}}, "XX": {"_count": 1, "THE": {"_count": 1}}, "Rattling": {"_count": 1, "and": {"_count": 1}}, "Unwillingly": {"_count": 1, "because": {"_count": 1}}, "hurt": {"_count": 2, "or": {"_count": 1}, "me": {"_count": 1}}, "Branched": {"_count": 1, "out": {"_count": 1}}, "Fat": {"_count": 2, "chance": {"_count": 2}}, "Peaceful": {"_count": 1, "cooperation": {"_count": 1}}, "Rising": {"_count": 1, "into": {"_count": 1}}, "Euan": {"_count": 1, "Abercrombie": {"_count": 1}}, "GALLONS": {"_count": 1, "OF": {"_count": 1}}, "Tryouts": {"_count": 1, "are": {"_count": 1}}, "load": {"_count": 1, "of": {"_count": 1}}, "Fifth": {"_count": 3, "years": {"_count": 2}, "Floor": {"_count": 1}}, "year": {"_count": 5, "said": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "you": {"_count": 1}}, "Patricia": {"_count": 1, "Stimpson": {"_count": 1}}, "Kenneth": {"_count": 1, "Towler": {"_count": 1}}, "\u2018Ask": {"_count": 1, "us": {"_count": 1}}, "Bound": {"_count": 2, "to": {"_count": 2}}, "further": {"_count": 1, "": {"_count": 1}}, "Moronic": {"_count": 1, "though": {"_count": 1}}, "displeasure": {"_count": 1, "": {"_count": 1}}, "Start": {"_count": 1, "": {"_count": 1}}, "\u2018Add": {"_count": 1, "powdered": {"_count": 1}}, "Evanesco": {"_count": 1, "": {"_count": 1}}, "Serve": {"_count": 1, "them": {"_count": 1}}, "Bickering": {"_count": 1, "all": {"_count": 1}}, "Dream": {"_count": 2, "interpretation": {"_count": 1}, "he": {"_count": 1}}, "Copy": {"_count": 1, "down": {"_count": 1}}, "2": {"_count": 2, "": {"_count": 2}}, "Learning": {"_count": 1, "to": {"_count": 1}}, "Placing": {"_count": 1, "the": {"_count": 1}}, "Using": {"_count": 2, "defensive": {"_count": 1}, "a": {"_count": 1}}, "Misbehavior": {"_count": 1, "in": {"_count": 1}}, "progress": {"_count": 1, "will": {"_count": 1}}, "DETENTION": {"_count": 1, "WITH": {"_count": 1}}, "\u2018The": {"_count": 8, "properties": {"_count": 1}, "Ministry": {"_count": 3}, "Minister": {"_count": 1}, "Inquisitor": {"_count": 1}, "Last": {"_count": 1}, "first": {"_count": 1}}, "Feel": {"_count": 2, "all": {"_count": 1}, "free": {"_count": 1}}, "Onlookers": {"_count": 1, "all": {"_count": 1}}, "today": {"_count": 1, "we": {"_count": 1}}, "level": {"_count": 4, "but": {"_count": 2}, "in": {"_count": 1}, "": {"_count": 1}}, "Oooooh": {"_count": 1, "": {"_count": 1}}, "Smirking": {"_count": 2, "all": {"_count": 1}, "slightly": {"_count": 1}}, "snarled": {"_count": 1, "Harry": {"_count": 1}}, "Ernies": {"_count": 1, "words": {"_count": 1}}, "Less": {"_count": 5, "than": {"_count": 4}, "substantial": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "Laugh": {"_count": 1, "": {"_count": 1}}, "Vicky": {"_count": 1, "Frobisher": {"_count": 1}}, "Twisted": {"_count": 1, "": {"_count": 1}}, "PERCY": {"_count": 1, "AND": {"_count": 1}}, "Considering": {"_count": 1, "it": {"_count": 1}}, "Sealing": {"_count": 1, "the": {"_count": 1}}, "Funnily": {"_count": 1, "enough": {"_count": 1}}, "Subtlety": {"_count": 1, "has": {"_count": 1}}, "Putting": {"_count": 1, "you": {"_count": 1}}, "blah": {"_count": 1, "blah": {"_count": 1}}, "\u2018Ministry": {"_count": 1, "warns": {"_count": 1}}, "killed": {"_count": 1, "thirteen": {"_count": 1}}, "broke": {"_count": 2, "out": {"_count": 1}, "broke": {"_count": 1}}, "Podmore": {"_count": 2, "was": {"_count": 1}, "who": {"_count": 1}}, "Pay": {"_count": 1, "attention": {"_count": 1}}, "sorry": {"_count": 2, "": {"_count": 1}, "Hermione": {"_count": 1}}, "shall": {"_count": 5, "we": {"_count": 4}, "I": {"_count": 1}}, "Jupiters": {"_count": 1, "biggest": {"_count": 1}}, "Trained": {"_count": 1, "in": {"_count": 1}}, "Unconvinced": {"_count": 1, "Harry": {"_count": 1}}, "\u2018Thats": {"_count": 1, "how": {"_count": 1}}, "\u2018Dumbledore": {"_count": 1, "couldnt": {"_count": 1}}, "\u2018This": {"_count": 3, "is": {"_count": 2}, "second": {"_count": 1}}, "\u2018Many": {"_count": 1, "of": {"_count": 1}}, "Among": {"_count": 2, "those": {"_count": 1}, "Scrimgeours": {"_count": 1}}, "Wizengamot": {"_count": 1, "elders": {"_count": 1}}, "\u2018Hogwarts": {"_count": 1, "is": {"_count": 1}}, "Umbridge": {"_count": 35, "wont": {"_count": 1}, "just": {"_count": 1}, "took": {"_count": 1}, "is": {"_count": 4}, "had": {"_count": 5}, "entered": {"_count": 1}, "stood": {"_count": 1}, "wheeled": {"_count": 1}, "looked": {"_count": 2}, "scribbled": {"_count": 1}, "was": {"_count": 2}, "": {"_count": 1}, "moved": {"_count": 1}, "recovered": {"_count": 1}, "looks": {"_count": 1}, "and": {"_count": 1}, "only": {"_count": 1}, "Harry": {"_count": 1}, "gave": {"_count": 1}, "flushed": {"_count": 1}, "straightened": {"_count": 1}, "contemplated": {"_count": 1}, "sat": {"_count": 1}, "spoke": {"_count": 1}, "laughed": {"_count": 1}, "held": {"_count": 1}}, "standard": {"_count": 2, "but": {"_count": 1}, "that": {"_count": 1}}, "Boor": {"_count": 1, "yeah": {"_count": 1}}, "grades": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Charms": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "Defense": {"_count": 1}, "to": {"_count": 1}}, "Asked": {"_count": 1, "Alicia": {"_count": 1}}, "Whove": {"_count": 1, "you": {"_count": 1}}, "Trelawney": {"_count": 2, "A": {"_count": 1}, "Ah": {"_count": 1}}, "Angelinall": {"_count": 1, "do": {"_count": 1}}, "Divide": {"_count": 1, "into": {"_count": 1}}, "drowning": {"_count": 1, "Snape": {"_count": 1}}, "would": {"_count": 2, "that": {"_count": 1}, "be": {"_count": 1}}, "wait": {"_count": 1, "said": {"_count": 1}}, "Fraid": {"_count": 1, "I": {"_count": 1}}, "Overall": {"_count": 2, "said": {"_count": 1}, "it": {"_count": 1}}, "Jolly": {"_count": 2, "good": {"_count": 2}}, "ie": {"_count": 1, "ie": {"_count": 1}}, "Awful": {"_count": 2, "": {"_count": 1}, "old": {"_count": 1}}, "usually": {"_count": 1, "inspired": {"_count": 1}}, "Uh": {"_count": 1, "": {"_count": 1}}, "facing": {"_count": 2, "him": {"_count": 1}, "VVoldemort": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "Reparo": {"_count": 4, "Harry": {"_count": 1}, "hissed": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}}, "IN": {"_count": 2, "THE": {"_count": 1}, "MEMORIAM": {"_count": 1}}, "dodgy": {"_count": 1, "": {"_count": 1}}, "Cough": {"_count": 2, "up": {"_count": 2}}, "Zacharias": {"_count": 6, "Smith": {"_count": 3}, "said": {"_count": 1}, "flushed": {"_count": 1}, "folded": {"_count": 1}}, "EDUCATIONAL": {"_count": 1, "DECREE": {"_count": 1}}, "Permission": {"_count": 1, "to": {"_count": 1}}, "Signed": {"_count": 5, "Dolores": {"_count": 3}, "Cornelius": {"_count": 2}}, "Whatll": {"_count": 2, "happen": {"_count": 2}}, "Injured": {"_count": 1, "owl": {"_count": 1}}, "Thestrals": {"_count": 3, "will": {"_count": 1}, "aren": {"_count": 1}, "are": {"_count": 1}}, "\u2018Same": {"_count": 1, "time": {"_count": 1}}, "apparently": {"_count": 1, "theyve": {"_count": 1}}, "Release": {"_count": 3, "Longbottom": {"_count": 1}, "me": {"_count": 2}}, "Salamander": {"_count": 1, "blood": {"_count": 1}}, "Hark": {"_count": 1, "whos": {"_count": 1}}, "Insinuations": {"_count": 1, "have": {"_count": 1}}, "Unfounded": {"_count": 1, "accusations": {"_count": 1}}, "may": {"_count": 1, "well": {"_count": 1}}, "Keeping": {"_count": 5, "an": {"_count": 1}, "his": {"_count": 4}}, "Wedve": {"_count": 1, "liked": {"_count": 1}}, "Caved": {"_count": 1, "in": {"_count": 1}}, "Umbridges": {"_count": 5, "hand": {"_count": 1}, "face": {"_count": 1}, "office": {"_count": 1}, "smile": {"_count": 1}, "slack": {"_count": 1}}, "Silenciol": {"_count": 5, "The": {"_count": 2}, "said": {"_count": 1}, "SILENCIO": {"_count": 1}, "cried": {"_count": 1}}, "Ravens": {"_count": 1, "are": {"_count": 1}}, "Silencio": {"_count": 1, "The": {"_count": 1}}, "wondering": {"_count": 1, "": {"_count": 1}}, "sort": {"_count": 2, "of": {"_count": 2}}, "reckless": {"_count": 1, "": {"_count": 1}}, "living": {"_count": 2, "through": {"_count": 1}, "beyond": {"_count": 1}}, "egg": {"_count": 1, "us": {"_count": 1}}, "feel": {"_count": 1, "bigger": {"_count": 1}}, "angry": {"_count": 1, "": {"_count": 1}}, "plans": {"_count": 1, "he": {"_count": 1}}, "moste": {"_count": 1, "efficacious": {"_count": 1}}, "therefore": {"_count": 1, "much": {"_count": 1}}, "confusing": {"_count": 1, "was": {"_count": 1}}, "enter": {"_count": 1, "beyond": {"_count": 1}}, "Whozair": {"_count": 1, "": {"_count": 1}}, "Dobbys": {"_count": 2, "ears": {"_count": 1}, "enormous": {"_count": 1}}, "Especially": {"_count": 4, "Harry": {"_count": 1}, "another": {"_count": 1}, "what": {"_count": 1}, "as": {"_count": 1}}, "Mostly": {"_count": 1, "people": {"_count": 1}}, "Somewhat": {"_count": 1, "to": {"_count": 1}}, "SelfDefensive": {"_count": 1, "Spellwork": {"_count": 1}}, "Whoa": {"_count": 3, "said": {"_count": 2}, "": {"_count": 1}}, "Basically": {"_count": 1, "they": {"_count": 1}}, "Smith": {"_count": 3, "opened": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 1}}, "Expelliarmusl": {"_count": 4, "said": {"_count": 1}, "Mundungus": {"_count": 1}, "Hermione": {"_count": 1}, "Goyle": {"_count": 1}}, "Expelliarmiousl": {"_count": 1, "I": {"_count": 1}}, "meetings": {"_count": 9, "as": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 2}, "havent": {"_count": 1}, "anymore": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}}, "Warringtons": {"_count": 1, "aims": {"_count": 1}}, "October": {"_count": 1, "extinguished": {"_count": 1}}, "Montague": {"_count": 4, "catches": {"_count": 1}, "was": {"_count": 1}, "shouldnt": {"_count": 1}, "told": {"_count": 1}}, "Bletchley": {"_count": 1, "the": {"_count": 1}}, "Pucey": {"_count": 1, "throws": {"_count": 1}}, "Saved": {"_count": 2, "Weasleys": {"_count": 1}, "me": {"_count": 1}}, "Spend": {"_count": 1, "holidays": {"_count": 1}}, "Provoked": {"_count": 1, "you": {"_count": 1}}, "Dolores": {"_count": 4, "Umbridge": {"_count": 3}, "said": {"_count": 1}}, "Hem": {"_count": 2, "hem": {"_count": 2}}, "\u2018Educational": {"_count": 1, "Decree": {"_count": 1}}, "hem": {"_count": 1, "hem": {"_count": 1}}, "etc": {"_count": 1, "": {"_count": 1}}, "Ban": {"_count": 1, "us": {"_count": 1}}, "Banned": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Sove": {"_count": 1, "Fred": {"_count": 1}}, "Join": {"_count": 1, "the": {"_count": 1}}, "HAGRIDS": {"_count": 1, "TALE": {"_count": 1}}, "Greenish": {"_count": 2, "blood": {"_count": 1}, "smoke": {"_count": 1}}, "Giants": {"_count": 2, "": {"_count": 1}, "like": {"_count": 1}}, "obvious": {"_count": 1, "said": {"_count": 1}}, "Nosy": {"_count": 1, "somed": {"_count": 1}}, "Interferin": {"_count": 1, "": {"_count": 1}}, "Pretty": {"_count": 5, "big": {"_count": 1}, "much": {"_count": 1}, "lucky": {"_count": 1}, "firm": {"_count": 1}, "isnt": {"_count": 1}}, "Mountains": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Whadda": {"_count": 1, "yeh": {"_count": 1}}, "Ran": {"_count": 2, "inter": {"_count": 1}, "wild": {"_count": 1}}, "Partly": {"_count": 2, "cause": {"_count": 1}, "to": {"_count": 1}}, "T3out": {"_count": 1, "twenty": {"_count": 1}}, "Bout": {"_count": 2, "three": {"_count": 1}, "the": {"_count": 1}}, "Caused": {"_count": 1, "an": {"_count": 1}}, "Sittin": {"_count": 1, "there": {"_count": 1}}, "Skin": {"_count": 1, "like": {"_count": 1}}, "Food": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "Didn": {"_count": 1, "speak": {"_count": 1}}, "Karkus": {"_count": 2, "knew": {"_count": 1}, "seemed": {"_count": 1}}, "Listened": {"_count": 1, "mostly": {"_count": 1}}, "Promised": {"_count": 1, "ter": {"_count": 1}}, "Karkuss": {"_count": 1, "said": {"_count": 1}}, "Humanlookin": {"_count": 1, "bones": {"_count": 1}}, "Wouldnta": {"_count": 1, "done": {"_count": 1}}, "Spent": {"_count": 1, "a": {"_count": 1}}, "Couple": {"_count": 5, "of": {"_count": 4}, "more": {"_count": 1}}, "Likes": {"_count": 1, "killin": {"_count": 1}}, "Fiery": {"_count": 1, "yeh": {"_count": 1}}, "spect": {"_count": 1, "its": {"_count": 1}}, "Cave": {"_count": 2, "mustve": {"_count": 1}, "Inimicum": {"_count": 1}}, "Wasn": {"_count": 2, "room": {"_count": 1}, "a": {"_count": 1}}, "Golgomaths": {"_count": 2, "lot": {"_count": 2}}, "mother": {"_count": 1, "while": {"_count": 1}}, "forget": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "Huddled": {"_count": 1, "together": {"_count": 1}}, "Lips": {"_count": 1, "pursed": {"_count": 1}}, "Whas": {"_count": 3, "that": {"_count": 1}, "made": {"_count": 1}, "tha": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "Friend": {"_count": 1, "o": {"_count": 1}}, "sensitive": {"_count": 1, "skin": {"_count": 1}}, "inspectin": {"_count": 1, "people": {"_count": 1}}, "Trelawneys": {"_count": 1, "on": {"_count": 1}}, "special": {"_count": 1, "in": {"_count": 1}}, "Lisen": {"_count": 1, "its": {"_count": 1}}, "Gits": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "Gather": {"_count": 1, "roun": {"_count": 1}}, "resort": {"_count": 1, "": {"_count": 1}}, "crude": {"_count": 1, "": {"_count": 1}}, "sign": {"_count": 1, "": {"_count": 1}}, "language": {"_count": 1, "Well": {"_count": 1}}, "poor": {"_count": 1, "": {"_count": 1}}, "short": {"_count": 1, "": {"_count": 1}}, "term": {"_count": 1, "": {"_count": 1}}, "signs": {"_count": 1, "": {"_count": 1}}, "pleasure": {"_count": 1, "": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "violence": {"_count": 1, "": {"_count": 1}}, "\u2018Mazin": {"_count": 1, "senses": {"_count": 1}}, "Whom": {"_count": 1, "did": {"_count": 1}}, "\u2018Students": {"_count": 1, "": {"_count": 1}}, "intimidated": {"_count": 1, "": {"_count": 1}}, "admit": {"_count": 1, "": {"_count": 1}}, "frightened": {"_count": 1, "": {"_count": 1}}, "Unheard": {"_count": 1, "by": {"_count": 1}}, "December": {"_count": 1, "arrived": {"_count": 1}}, "meeting": {"_count": 4, "before": {"_count": 2}, "is": {"_count": 1}, "by": {"_count": 1}}, "Mistletoe": {"_count": 2, "said": {"_count": 2}}, "Replaced": {"_count": 1, "me": {"_count": 1}}, "Andrew": {"_count": 1, "Kirke": {"_count": 1}}, "Space": {"_count": 1, "was": {"_count": 1}}, "Wha": {"_count": 7, "": {"_count": 4}, "injuries": {"_count": 1}, "was": {"_count": 1}, "Norberts": {"_count": 1}}, "learning": {"_count": 1, "all": {"_count": 1}}, "wonder": {"_count": 1, "whether": {"_count": 1}}, "Disregarding": {"_count": 1, "this": {"_count": 1}}, "HA": {"_count": 1, "": {"_count": 1}}, "Wet": {"_count": 1, "he": {"_count": 1}}, "shed": {"_count": 1, "be": {"_count": 1}}, "room": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "ST": {"_count": 1, "": {"_count": 1}}, "MUNGOS": {"_count": 2, "HOSPITAL": {"_count": 1}, "HEALER": {"_count": 1}}, "~": {"_count": 1, "I": {"_count": 1}}, "Everard": {"_count": 4, "": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 2}}, "Phineas": {"_count": 12, "": {"_count": 3}, "Nigellus": {"_count": 9}}, "IVe": {"_count": 1, "got": {"_count": 1}}, "Visit": {"_count": 1, "my": {"_count": 1}}, "Insubordination": {"_count": 1, "sir": {"_count": 1}}, "Dereliction": {"_count": 1, "of": {"_count": 1}}, "Bacon": {"_count": 1, "and": {"_count": 1}}, "Nowhere": {"_count": 1, "in": {"_count": 1}}, "Theory": {"_count": 1, "was": {"_count": 1}}, "Witches": {"_count": 1, "and": {"_count": 1}}, "Doctors": {"_count": 1, "": {"_count": 1}}, "CREATUREINDUCED": {"_count": 1, "INJURIES": {"_count": 1}}, "MAGICAL": {"_count": 1, "BUGS": {"_count": 1}}, "g": {"_count": 1, "": {"_count": 1}}, "dragon": {"_count": 1, "pox": {"_count": 1}}, "SPELL": {"_count": 1, "DAMAGE": {"_count": 1}}, "VISITORS": {"_count": 1, "TEAROOM": {"_count": 1}}, "Ward": {"_count": 1, "fortynine": {"_count": 1}}, "CHRISTMAS": {"_count": 1, "ON": {"_count": 1}}, "Tonkss": {"_count": 2, "present": {"_count": 1}, "changed": {"_count": 1}}, "Family": {"_count": 4, "argument": {"_count": 1}, "said": {"_count": 1}, "skeletons": {"_count": 1}, "safe": {"_count": 1}}, "Spell": {"_count": 1, "Damage": {"_count": 1}}, "complementary": {"_count": 1, "medicine": {"_count": 1}}, "Stitches": {"_count": 1, "": {"_count": 1}}, "Taught": {"_count": 1, "you": {"_count": 1}}, "Gladys": {"_count": 1, "Gudgeon": {"_count": 1}}, "Helped": {"_count": 2, "him": {"_count": 2}}, "Squash": {"_count": 1, "him": {"_count": 1}}, "involved": {"_count": 1, "": {"_count": 1}}, "Merely": {"_count": 3, "that": {"_count": 1}, "to": {"_count": 1}, "taking": {"_count": 1}}, "Study": {"_count": 1, "what": {"_count": 1}}, "Occlumency": {"_count": 1, "Potter": {"_count": 1}}, "Extra": {"_count": 1, "lessons": {"_count": 1}}, "unlike": {"_count": 1, "you": {"_count": 1}}, "gave": {"_count": 1, "you": {"_count": 1}}, "Cured": {"_count": 1, "": {"_count": 1}}, "Healer": {"_count": 2, "Smethwyck": {"_count": 1}, "Miriam": {"_count": 1}}, "Chairs": {"_count": 1, "slid": {"_count": 1}}, "Hedgerows": {"_count": 1, "on": {"_count": 1}}, "Flecks": {"_count": 1, "of": {"_count": 1}}, "IIll": {"_count": 1, "see": {"_count": 1}}, "sir": {"_count": 4, "said": {"_count": 1}, "": {"_count": 2}, "isnt": {"_count": 1}}, "Thoughts": {"_count": 1, "are": {"_count": 1}}, "Eye": {"_count": 1, "contact": {"_count": 1}}, "Brace": {"_count": 1, "yourself": {"_count": 1}}, "LegilimensV": {"_count": 1, "Snape": {"_count": 1}}, "Flashes": {"_count": 1, "of": {"_count": 1}}, "Repel": {"_count": 1, "me": {"_count": 1}}, "Focus": {"_count": 1, "now": {"_count": 1}}, "Fools": {"_count": 1, "who": {"_count": 1}}, "Realized": {"_count": 1, "what": {"_count": 1}}, "fine": {"_count": 2, "": {"_count": 2}}, "Headless": {"_count": 1, "Hats": {"_count": 1}}, "Maniacal": {"_count": 1, "laughter": {"_count": 1}}, "Jubilant": {"_count": 2, "ecstatic": {"_count": 1}, "at": {"_count": 1}}, "dunno": {"_count": 3, "": {"_count": 1}, "what": {"_count": 1}, "said": {"_count": 1}}, "really": {"_count": 3, "happy": {"_count": 1}, "close": {"_count": 1}, "": {"_count": 1}}, "Antonin": {"_count": 1, "Dolohov": {"_count": 1}}, "MASS": {"_count": 1, "BREAKOUT": {"_count": 1}}, "horrible": {"_count": 1, "said": {"_count": 1}}, "TRAGIC": {"_count": 1, "DEMISE": {"_count": 1}}, "Healers": {"_count": 1, "called": {"_count": 1}}, "Bode": {"_count": 6, "": {"_count": 2}, "could": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 2}}, "Bes": {"_count": 2, "go": {"_count": 1}, "wiz": {"_count": 1}}, "Nowadays": {"_count": 1, "however": {"_count": 1}}, "Cute": {"_count": 1, "isnt": {"_count": 1}}, "Women": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "Unemployment": {"_count": 1, "did": {"_count": 1}}, "Sucking": {"_count": 1, "on": {"_count": 1}}, "Twentyfive": {"_count": 1, "Ways": {"_count": 1}}, "\u2018Important": {"_count": 1, "stories": {"_count": 1}}, "Daddy": {"_count": 3, "will": {"_count": 1}, "sold": {"_count": 1}, "told": {"_count": 1}}, "SEEN": {"_count": 1, "AND": {"_count": 1}}, "tough": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "Actually": {"_count": 1, "I": {"_count": 1}}, "\u2018Having": {"_count": 1, "read": {"_count": 1}}, "red": {"_count": 1, "eyes": {"_count": 1}}, "NOOOOOOOOO": {"_count": 1, "": {"_count": 1}}, "Arrested": {"_count": 1, "for": {"_count": 1}}, "Remind": {"_count": 2, "me": {"_count": 2}}, "Correct": {"_count": 5, "Potter": {"_count": 1}, "said": {"_count": 3}, "": {"_count": 1}}, "Protegol": {"_count": 3, "Snape": {"_count": 1}, "The": {"_count": 2}}, "Others": {"_count": 1, "had": {"_count": 1}}, "Incapable": {"_count": 1, "though": {"_count": 1}}, "Blow": {"_count": 1, "your": {"_count": 1}}, "sighed": {"_count": 1, "Parvati": {"_count": 1}}, "Impossible": {"_count": 1, "said": {"_count": 1}}, "Classroom": {"_count": 1, "eleven": {"_count": 1}}, "Herd": {"_count": 1, "": {"_count": 1}}, "Centaurs": {"_count": 2, "are": {"_count": 1}, "have": {"_count": 1}}, "Parvatis": {"_count": 1, "hand": {"_count": 1}}, "Trivial": {"_count": 1, "hurts": {"_count": 1}}, "lessons": {"_count": 2, "Harry": {"_count": 1}, "said": {"_count": 1}}, "received": {"_count": 1, "Outstanding": {"_count": 1}}, "closest": {"_count": 1, "to": {"_count": 1}}, "squeaked": {"_count": 1, "the": {"_count": 1}}, "Trip": {"_count": 1, "Jinx": {"_count": 1}}, "Mariettas": {"_count": 1, "mother": {"_count": 1}}, "Evidence": {"_count": 1, "": {"_count": 1}}, "Marietta": {"_count": 2, "was": {"_count": 1}, "nodded": {"_count": 1}}, "DumbledoresArmy": {"_count": 1, "": {"_count": 1}}, "Statement": {"_count": 1, "": {"_count": 1}}, "Duplicate": {"_count": 1, "your": {"_count": 1}}, "Snag": {"_count": 1, "": {"_count": 1}}, "Dawlish": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "Dust": {"_count": 2, "was": {"_count": 1}, "swirled": {"_count": 1}}, "Grimmauld": {"_count": 2, "Place": {"_count": 2}}, "Lording": {"_count": 1, "it": {"_count": 1}}, "Afraid": {"_count": 1, "Im": {"_count": 1}}, "Macmillan": {"_count": 1, "five": {"_count": 1}}, "Weasel": {"_count": 1, "King": {"_count": 1}}, "Noticed": {"_count": 1, "have": {"_count": 1}}, "Filchs": {"_count": 1, "jowls": {"_count": 1}}, "Guilty": {"_count": 1, "conscience": {"_count": 1}}, "Yerse": {"_count": 1, "": {"_count": 1}}, "tea": {"_count": 1, "then": {"_count": 1}}, "Rockets": {"_count": 1, "with": {"_count": 1}}, "Sparklers": {"_count": 1, "were": {"_count": 1}}, "Firecrackers": {"_count": 1, "were": {"_count": 1}}, "Impressive": {"_count": 1, "Harry": {"_count": 1}}, "Filibuster": {"_count": 1, "out": {"_count": 1}}, "Beaming": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "Weasleys": {"_count": 1, "Wildfire": {"_count": 1}}, "rebellious": {"_count": 1, "": {"_count": 1}}, "Seething": {"_count": 1, "Harry": {"_count": 1}}, "Snapetheteenager": {"_count": 1, "had": {"_count": 1}}, "Jamess": {"_count": 3, "eyes": {"_count": 1}, "hair": {"_count": 1}, "free": {"_count": 1}}, "Roundshouldered": {"_count": 1, "yet": {"_count": 1}}, "Loved": {"_count": 1, "it": {"_count": 1}}, "\u2018Give": {"_count": 1, "five": {"_count": 1}}, "paper": {"_count": 2, "as": {"_count": 1}, "in": {"_count": 1}}, "Snivellus": {"_count": 1, "": {"_count": 1}}, "Scourgifyl": {"_count": 1, "Pink": {"_count": 1}}, "Disentangling": {"_count": 1, "himself": {"_count": 1}}, "Evans": {"_count": 1, "": {"_count": 1}}, "Reading": {"_count": 1, "between": {"_count": 1}}, "Wincing": {"_count": 1, "Harry": {"_count": 1}}, "Amusing": {"_count": 2, "man": {"_count": 1}, "really": {"_count": 1}}, "CAREER": {"_count": 1, "ADVICE": {"_count": 1}}, "Times": {"_count": 6, "of": {"_count": 1}, "": {"_count": 1}, "wearing": {"_count": 1}, "change": {"_count": 1}, "running": {"_count": 1}, "nearly": {"_count": 1}}, "\u2018Much": {"_count": 1, "more": {"_count": 1}}, "Directly": {"_count": 2, "ahead": {"_count": 1}, "above": {"_count": 1}}, "Undeterred": {"_count": 1, "she": {"_count": 1}}, "Whoops": {"_count": 1, "he": {"_count": 1}}, "classes": {"_count": 1, "unless": {"_count": 1}}, "Poisons": {"_count": 1, "and": {"_count": 1}}, "Dashing": {"_count": 1, "behind": {"_count": 1}}, "Sticking": {"_count": 1, "his": {"_count": 1}}, "Approval": {"_count": 2, "for": {"_count": 2}}, "Prominent": {"_count": 1, "among": {"_count": 1}}, "GRAWP": {"_count": 1, "The": {"_count": 1}}, "Dungbombs": {"_count": 1, "and": {"_count": 1}}, "Warrington": {"_count": 1, "of": {"_count": 1}}, "Shrieking": {"_count": 1, "with": {"_count": 1}}, "Cackling": {"_count": 1, "madly": {"_count": 1}}, "Specially": {"_count": 1, "if": {"_count": 1}}, "Bradley": {"_count": 1, "": {"_count": 1}}, "Davies": {"_count": 1, "": {"_count": 1}}, "Chang": {"_count": 1, "he": {"_count": 1}}, "Till": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 3, "evryones": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "Cleverest": {"_count": 1, "creatures": {"_count": 1}}, "fill": {"_count": 1, "yeh": {"_count": 1}}, "withou": {"_count": 1, "fellin": {"_count": 1}}, "cmon": {"_count": 2, "": {"_count": 1}, "Ginny": {"_count": 1}}, "Sleepin": {"_count": 1, "breathed": {"_count": 1}}, "teachin": {"_count": 1, "him": {"_count": 1}}, "Grawp": {"_count": 5, "had": {"_count": 1}, "knelt": {"_count": 1}, "raised": {"_count": 1}, "apparently": {"_count": 1}, "s": {"_count": 1}}, "Company": {"_count": 1, "see": {"_count": 1}}, "BAD": {"_count": 1, "BOY": {"_count": 1}}, "VERY": {"_count": 1, "BAD": {"_count": 1}}, "Servitude": {"_count": 1, "": {"_count": 1}}, "Henceforth": {"_count": 1, "stay": {"_count": 1}}, "Grawps": {"_count": 1, "about": {"_count": 1}}, "Eights": {"_count": 1, "my": {"_count": 1}}, "Grans": {"_count": 1, "always": {"_count": 1}}, "Dingles": {"_count": 1, "got": {"_count": 1}}, "AutoAnswer": {"_count": 1, "Quills": {"_count": 1}}, "results": {"_count": 5, "": {"_count": 2}, "will": {"_count": 1}, "would": {"_count": 1}, "as": {"_count": 1}}, "Examined": {"_count": 1, "him": {"_count": 1}}, "Figures": {"_count": 2, "were": {"_count": 1}, "on": {"_count": 1}}, "Cries": {"_count": 1, "and": {"_count": 1}}, "Galloping": {"_count": 1, "gargoyles": {"_count": 1}}, "RUDDY": {"_count": 1, "COWARDS": {"_count": 1}}, "Describe": {"_count": 1, "the": {"_count": 1}}, "Bonaccord": {"_count": 1, "had": {"_count": 1}}, "patches": {"_count": 1, "of": {"_count": 1}}, "Lift": {"_count": 1, "it": {"_count": 1}}, "Pressure": {"_count": 1, "of": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "Hers": {"_count": 1, "too": {"_count": 1}}, "Liar": {"_count": 1, "": {"_count": 1}}, "LiaA": {"_count": 1, "shouted": {"_count": 1}}, "Padfoot": {"_count": 1, "": {"_count": 1}}, "Millicent": {"_count": 1, "stopped": {"_count": 1}}, "Weapon": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "said": {"_count": 1}}, "FIGHT": {"_count": 1, "AND": {"_count": 1}}, "Senior": {"_count": 1, "Undersecretary": {"_count": 1}}, "Beasts": {"_count": 1, "": {"_count": 1}}, "Nooooo": {"_count": 1, "": {"_count": 1}}, "Noooooo": {"_count": 1, "": {"_count": 1}}, "unhand": {"_count": 1, "me": {"_count": 1}}, "nooooo": {"_count": 1, "": {"_count": 1}}, "Lifting": {"_count": 1, "his": {"_count": 1}}, "Hagger": {"_count": 1, "": {"_count": 1}}, "Haggeii": {"_count": 1, "he": {"_count": 1}}, "WHERE": {"_count": 1, "HAGGER": {"_count": 1}}, "Wandless": {"_count": 2, "Harry": {"_count": 1}, "helpless": {"_count": 1}}, "Pebblesized": {"_count": 1, "droplets": {"_count": 1}}, "Smart": {"_count": 2, "plan": {"_count": 1}, "girl": {"_count": 1}}, "together": {"_count": 1, "said": {"_count": 1}}, "Twilight": {"_count": 1, "fell": {"_count": 1}}, "Presumably": {"_count": 1, "they": {"_count": 1}}, "Whoevers": {"_count": 1, "nearest": {"_count": 1}}, "Visitors": {"_count": 1, "please": {"_count": 1}}, "glitters": {"_count": 1, "": {"_count": 1}}, "Aquavirius": {"_count": 1, "maggots": {"_count": 1}}, "Brains": {"_count": 1, "": {"_count": 1}}, "Glimmering": {"_count": 1, "eerily": {"_count": 1}}, "FlagrateV": {"_count": 1, "She": {"_count": 1}}, "Unsupported": {"_count": 1, "by": {"_count": 1}}, "Nobodys": {"_count": 2, "talking": {"_count": 1}, "ever": {"_count": 1}}, "locked": {"_count": 1, "": {"_count": 1}}, "Drifting": {"_count": 1, "along": {"_count": 1}}, "Beneath": {"_count": 8, "the": {"_count": 5}, "Bellatrixs": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 1}}, "eightyfive": {"_count": 1, "": {"_count": 1}}, "Ninetyseven": {"_count": 1, "": {"_count": 1}}, "Anywhere": {"_count": 1, "here": {"_count": 1}}, "B": {"_count": 12, "": {"_count": 12}}, "D": {"_count": 2, "": {"_count": 2}}, "Expecting": {"_count": 2, "even": {"_count": 1}, "what": {"_count": 1}}, "35": {"_count": 1, "BEYOND": {"_count": 1}}, "voices": {"_count": 1, "vied": {"_count": 1}}, "Alohomora": {"_count": 2, "As": {"_count": 1}, "he": {"_count": 1}}, "GINNY": {"_count": 1, "": {"_count": 1}}, "Veering": {"_count": 1, "left": {"_count": 1}}, "Collo": {"_count": 1, "began": {"_count": 1}}, "WEVE": {"_count": 1, "GOT": {"_count": 1}}, "HERMIONE": {"_count": 3, "": {"_count": 3}}, "Dolohov": {"_count": 2, "grinned": {"_count": 1}, "raised": {"_count": 1}}, "speak": {"_count": 1, "his": {"_count": 1}}, "Whaddever": {"_count": 1, "you": {"_count": 1}}, "Whaddid": {"_count": 1, "he": {"_count": 1}}, "Dats": {"_count": 1, "a": {"_count": 1}}, "Raise": {"_count": 1, "the": {"_count": 1}}, "ha": {"_count": 1, "ha": {"_count": 1}}, "Colloportus": {"_count": 1, "shouted": {"_count": 1}}, "Colloportusl": {"_count": 1, "There": {"_count": 1}}, "Honest": {"_count": 1, "Harry": {"_count": 1}}, "STUBEFYl": {"_count": 1, "shouted": {"_count": 1}}, "STUBEFY": {"_count": 1, "STUBEFYl": {"_count": 1}}, "Inwardly": {"_count": 1, "praying": {"_count": 1}}, "STUBE": {"_count": 1, "One": {"_count": 1}}, "DOND": {"_count": 1, "GIB": {"_count": 1}}, "Tarantallegrcd": {"_count": 1, "he": {"_count": 1}}, "SIRIUS": {"_count": 2, "": {"_count": 2}}, "Ib": {"_count": 2, "really": {"_count": 1}, "Bardy": {"_count": 1}}, "Deyre": {"_count": 1, "all": {"_count": 1}}, "Slipping": {"_count": 3, "and": {"_count": 2}, "on": {"_count": 1}}, "YOUVE": {"_count": 1, "GOT": {"_count": 1}}, "Tall": {"_count": 2, "thin": {"_count": 1}, "dilapidated": {"_count": 1}}, "Months": {"_count": 1, "of": {"_count": 1}}, "AVADA": {"_count": 1, "KEDAVRAl": {"_count": 1}}, "Above": {"_count": 2, "such": {"_count": 1}, "what": {"_count": 1}}, "MASTER": {"_count": 1, "": {"_count": 1}}, "Hehere": {"_count": 1, "": {"_count": 1}}, "Holds": {"_count": 1, "you": {"_count": 1}}, "IVE": {"_count": 1, "HAD": {"_count": 1}}, "Youth": {"_count": 1, "cannot": {"_count": 1}}, "Indifference": {"_count": 1, "and": {"_count": 1}}, "Thus": {"_count": 3, "far": {"_count": 3}}, "prouder": {"_count": 1, "of": {"_count": 1}}, "Ought": {"_count": 1, "I": {"_count": 1}}, "Sibylls": {"_count": 1, "prophecy": {"_count": 1}}, "Consequently": {"_count": 1, "he": {"_count": 1}}, "\u2018neither": {"_count": 1, "can": {"_count": 1}}, "Details": {"_count": 1, "of": {"_count": 1}}, "Ubblys": {"_count": 1, "Oblivious": {"_count": 1}}, "perceived": {"_count": 1, "as": {"_count": 1}}, "forced": {"_count": 1, "to": {"_count": 1}}, "\u2018YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "Sulking": {"_count": 1, "more": {"_count": 1}}, "Evryone": {"_count": 1, "knows": {"_count": 1}}, "Disappointment": {"_count": 1, "was": {"_count": 1}}, "loss": {"_count": 1, "": {"_count": 1}}, "Wanting": {"_count": 1, "to": {"_count": 1}}, "Michael": {"_count": 2, "Corner": {"_count": 1}, "but": {"_count": 1}}, "Business": {"_count": 1, "is": {"_count": 1}}, "T3ye": {"_count": 1, "then": {"_count": 1}}, "Stretching": {"_count": 1, "his": {"_count": 1}}, "Sincerely": {"_count": 2, "Fudge": {"_count": 1}, "Professor": {"_count": 1}}, "Furthermore": {"_count": 1, "Fudge": {"_count": 1}}, "hesitated": {"_count": 1, "the": {"_count": 1}}, "Occasionally": {"_count": 4, "he": {"_count": 1}, "one": {"_count": 1}, "there": {"_count": 1}, "they": {"_count": 1}}, "Fve": {"_count": 1, "just": {"_count": 1}}, "Middle": {"_count": 1, "of": {"_count": 1}}, "HeWhoMust": {"_count": 1, "NotBeNameds": {"_count": 1}}, "Requesting": {"_count": 1, "a": {"_count": 1}}, "Rufus": {"_count": 5, "Scrimgeour": {"_count": 4}, "is": {"_count": 1}}, "Scrimgeour": {"_count": 26, "grasped": {"_count": 1}, "merely": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 3}, "wanted": {"_count": 1}, "looked": {"_count": 1}, "stopped": {"_count": 1}, "hesitated": {"_count": 1}, "glared": {"_count": 1}, "must": {"_count": 1}, "doesnt": {"_count": 1}, "sat": {"_count": 1}, "gave": {"_count": 1}, "s": {"_count": 2}, "took": {"_count": 2}, "leaned": {"_count": 1}, "now": {"_count": 1}, "turned": {"_count": 1}, "Ron": {"_count": 1}, "scratched": {"_count": 1}, "limped": {"_count": 1}, "is": {"_count": 1}}, "SPINNERS": {"_count": 1, "END": {"_count": 1}}, "Cissy": {"_count": 4, "Narcissa": {"_count": 1}, "wait": {"_count": 1}, "you": {"_count": 1}, "your": {"_count": 1}}, "Side": {"_count": 3, "by": {"_count": 3}}, "mistaken": {"_count": 2, "Bella": {"_count": 1}, "said": {"_count": 1}}, "Bella": {"_count": 2, "merely": {"_count": 1}, "let": {"_count": 1}}, "Narcisscd": {"_count": 1, "But": {"_count": 1}}, "Rubbing": {"_count": 1, "her": {"_count": 1}}, "Narcissa": {"_count": 12, "threw": {"_count": 1}, "": {"_count": 2}, "murmured": {"_count": 1}, "I": {"_count": 1}, "gasped": {"_count": 1}, "thats": {"_count": 1}, "spoke": {"_count": 1}, "Malfoy": {"_count": 2}, "hesitated": {"_count": 1}, "knew": {"_count": 1}}, "tempt": {"_count": 1, "me": {"_count": 1}}, "Bellatrixs": {"_count": 5, "mouth": {"_count": 2}, "astounded": {"_count": 1}, "face": {"_count": 1}, "gloating": {"_count": 1}}, "lately": {"_count": 1, "we": {"_count": 1}}, "Owl": {"_count": 1, "feathers": {"_count": 1}}, "Scrimgeours": {"_count": 1, "representatives": {"_count": 1}}, "Newly": {"_count": 1, "appointed": {"_count": 1}}, "Observing": {"_count": 1, "the": {"_count": 1}}, "Particular": {"_count": 1, "care": {"_count": 1}}, "Review": {"_count": 1, "the": {"_count": 1}}, "4": {"_count": 1, "": {"_count": 1}}, "Agree": {"_count": 1, "on": {"_count": 1}}, "Unconfirmed": {"_count": 1, "sightings": {"_count": 1}}, "Beside": {"_count": 4, "it": {"_count": 1}, "Luna": {"_count": 1}, "him": {"_count": 2}}, "Hastily": {"_count": 4, "straightening": {"_count": 1}, "scooping": {"_count": 1}, "stowing": {"_count": 1}, "pulling": {"_count": 1}}, "Downstairs": {"_count": 3, "in": {"_count": 2}, "he": {"_count": 1}}, "Halfmoon": {"_count": 1, "spectacles": {"_count": 1}}, "Doubtful": {"_count": 1, "that": {"_count": 1}}, "HORACE": {"_count": 1, "SLUGHORN": {"_count": 1}}, "Courtesy": {"_count": 1, "dictates": {"_count": 1}}, "Inferi": {"_count": 1, "have": {"_count": 1}}, "Cushions": {"_count": 1, "lay": {"_count": 1}}, "Ohol": {"_count": 1, "This": {"_count": 1}}, "Slughorn": {"_count": 32, "turned": {"_count": 2}, "s": {"_count": 2}, "looked": {"_count": 3}, "gazed": {"_count": 1}, "seemed": {"_count": 2}, "proved": {"_count": 1}, "beamed": {"_count": 1}, "said": {"_count": 1}, "probably": {"_count": 1}, "strode": {"_count": 1}, "couldve": {"_count": 1}, "made": {"_count": 1}, "pulled": {"_count": 1}, "had": {"_count": 1}, "reached": {"_count": 1}, "chuckled": {"_count": 1}, "poured": {"_count": 1}, "was": {"_count": 1}, "hurried": {"_count": 1}, "uncorked": {"_count": 1}, "however": {"_count": 1}, "took": {"_count": 1}, "gave": {"_count": 1}, "raised": {"_count": 1}, "and": {"_count": 1}, "lowered": {"_count": 1}, "heaved": {"_count": 1}}, "Hmpf": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "Wheezy": {"_count": 1, "": {"_count": 1}}, "Rheumatism": {"_count": 1, "too": {"_count": 1}}, "Fatigue": {"_count": 1, "": {"_count": 1}}, "Reactions": {"_count": 1, "not": {"_count": 1}}, "Slughorns": {"_count": 3, "eyes": {"_count": 1}, "party": {"_count": 1}, "curiosity": {"_count": 1}}, "Idiotic": {"_count": 1, "woman": {"_count": 1}}, "Vivacious": {"_count": 1, "you": {"_count": 1}}, "Charming": {"_count": 4, "girl": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}}, "Upset": {"_count": 1, "stomach": {"_count": 1}}, "Wonderful": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "Horace": {"_count": 2, "said": {"_count": 1}, "formed": {"_count": 1}}, "Braced": {"_count": 1, "this": {"_count": 1}}, "Permit": {"_count": 1, "me": {"_count": 1}}, "interrupted": {"_count": 1, "Harry": {"_count": 1}}, "Spoken": {"_count": 1, "both": {"_count": 1}}, "Private": {"_count": 1, "with": {"_count": 1}}, "which": {"_count": 4, "I": {"_count": 1}, "means": {"_count": 1}, "makes": {"_count": 1}, "he": {"_count": 1}}, "AN": {"_count": 1, "EXCESS": {"_count": 1}}, "Declare": {"_count": 1, "yourself": {"_count": 1}}, "Bread": {"_count": 1, "dear": {"_count": 1}}, "Mollywobbles": {"_count": 1, "whispered": {"_count": 1}}, "Gnight": {"_count": 1, "Harry": {"_count": 1}}, "Shielding": {"_count": 1, "them": {"_count": 1}}, "Wuzzgoinon": {"_count": 1, "": {"_count": 1}}, "Starting": {"_count": 1, "to": {"_count": 1}}, "Eet": {"_count": 1, "as": {"_count": 1}}, "private": {"_count": 1, "lessons": {"_count": 1}}, "powerful": {"_count": 1, "countercurses": {"_count": 1}}, "antijinxes": {"_count": 1, "": {"_count": 1}}, "ORDINARY": {"_count": 1, "WIZARDING": {"_count": 1}}, "Shops": {"_count": 1, "empty": {"_count": 1}}, "Fortescue": {"_count": 1, "and": {"_count": 1}}, "Diagon": {"_count": 2, "Alley": {"_count": 2}}, "Protect": {"_count": 1, "her": {"_count": 1}}, "ninetyfour": {"_count": 1, "": {"_count": 1}}, "Casual": {"_count": 1, "passersby": {"_count": 1}}, "\u2018One": {"_count": 1, "simple": {"_count": 1}}, "Handy": {"_count": 2, "if": {"_count": 1}, "said": {"_count": 1}}, "Pygmy": {"_count": 1, "Puffs": {"_count": 1}}, "Miniature": {"_count": 1, "puffskeins": {"_count": 1}}, "Given": {"_count": 3, "her": {"_count": 1}, "this": {"_count": 1}, "what": {"_count": 1}}, "Borgin": {"_count": 2, "made": {"_count": 1}, "and": {"_count": 1}}, "Humming": {"_count": 1, "cheerily": {"_count": 1}}, "kept": {"_count": 1, "for": {"_count": 1}}, "Worth": {"_count": 1, "a": {"_count": 1}}, "Annoyed": {"_count": 1, "but": {"_count": 1}}, "Au": {"_count": 1, "revoir": {"_count": 1}}, "be": {"_count": 1, "good": {"_count": 1}}, "stay": {"_count": 1, "safe": {"_count": 1}}, "Quibbler": {"_count": 1, "still": {"_count": 1}}, "Cherry": {"_count": 1, "and": {"_count": 1}}, "\u2018That": {"_count": 2, "Harry": {"_count": 1}, "very": {"_count": 1}}, "Perplexed": {"_count": 3, "Harry": {"_count": 2}, "Ron": {"_count": 1}}, "F": {"_count": 1, "": {"_count": 1}}, "Slug": {"_count": 1, "horn": {"_count": 1}}, "Blaise": {"_count": 1, "Zabini": {"_count": 1}}, "Pheasant": {"_count": 1, "Belby": {"_count": 1}}, "Outstanding": {"_count": 1, "wizard": {"_count": 1}}, "Anapneo": {"_count": 1, "said": {"_count": 1}}, "Zabini": {"_count": 2, "who": {"_count": 1}, "was": {"_count": 1}}, "Belby": {"_count": 1, "McLaggen": {"_count": 1}}, "McLaggen": {"_count": 6, "you": {"_count": 1}, "from": {"_count": 1}, "took": {"_count": 1}, "kept": {"_count": 1}, "had": {"_count": 1}, "will": {"_count": 1}}, "Crouched": {"_count": 1, "in": {"_count": 1}}, "Sixteen": {"_count": 1, "years": {"_count": 1}}, "SNAPE": {"_count": 1, "VICTORIOUS": {"_count": 1}}, "Episkey": {"_count": 1, "said": {"_count": 1}}, "Antiintruder": {"_count": 1, "jinxes": {"_count": 1}}, "Securitys": {"_count": 1, "been": {"_count": 1}}, "everything": {"_count": 1, "": {"_count": 1}}, "Whereve": {"_count": 1, "you": {"_count": 1}}, "Hat": {"_count": 1, "say": {"_count": 1}}, "advising": {"_count": 1, "us": {"_count": 1}}, "Bumped": {"_count": 1, "into": {"_count": 1}}, "Whispers": {"_count": 1, "swept": {"_count": 1}}, "Seemingly": {"_count": 1, "oblivious": {"_count": 1}}, "Pip": {"_count": 1, "pip": {"_count": 1}}, "Los": {"_count": 1, "track": {"_count": 1}}, "Whole": {"_count": 1, "periods": {"_count": 1}}, "Fanged": {"_count": 1, "Frisbees": {"_count": 1}}, "Hmph": {"_count": 1, "snorted": {"_count": 1}}, "class": {"_count": 2, "": {"_count": 2}}, "work": {"_count": 1, "which": {"_count": 1}}, "Typically": {"_count": 1, "ten": {"_count": 1}}, "Pathetic": {"_count": 3, "Weasley": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "Whenre": {"_count": 1, "you": {"_count": 1}}, "grade": {"_count": 1, "but": {"_count": 1}}, "lags": {"_count": 1, "": {"_count": 1}}, "Scales": {"_count": 1, "out": {"_count": 1}}, "Featured": {"_count": 1, "in": {"_count": 1}}, "Amortentia": {"_count": 1, "doesnt": {"_count": 1}}, "Desperately": {"_count": 1, "tricky": {"_count": 1}}, "highly": {"_count": 1, "toxic": {"_count": 1}}, "sporting": {"_count": 1, "events": {"_count": 1}}, "Bending": {"_count": 2, "low": {"_count": 2}}, "seven": {"_count": 2, "stirs": {"_count": 1}, "": {"_count": 1}}, "Puked": {"_count": 1, "on": {"_count": 1}}, "Specialis": {"_count": 1, "Revelio": {"_count": 1}}, "Knave": {"_count": 1, "of": {"_count": 1}}, "Acid": {"_count": 1, "Pops": {"_count": 1}}, "survive": {"_count": 1, "": {"_count": 1}}, "Ogden": {"_count": 6, "had": {"_count": 1}, "moved": {"_count": 1}, "pointed": {"_count": 1}, "ran": {"_count": 1}, "hurtled": {"_count": 1}, "Apparated": {"_count": 1}}, "Morfin": {"_count": 15, "": {"_count": 1}, "seemed": {"_count": 1}, "was": {"_count": 2}, "let": {"_count": 1}, "cackled": {"_count": 2}, "giggled": {"_count": 1}, "will": {"_count": 1}, "hissed": {"_count": 1}, "made": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}, "pushed": {"_count": 1}, "looked": {"_count": 1}}, "Defend": {"_count": 1, "himself": {"_count": 1}}, "Busybodies": {"_count": 1, "": {"_count": 1}}, "Intruders": {"_count": 1, "": {"_count": 1}}, "Mdaughter": {"_count": 1, "Merope": {"_count": 1}}, "Merope": {"_count": 7, "had": {"_count": 2}, "huddled": {"_count": 1}, "raised": {"_count": 1}, "was": {"_count": 2}, "or": {"_count": 1}}, "Pick": {"_count": 1, "it": {"_count": 1}}, "Gaunt": {"_count": 4, "screamed": {"_count": 1}, "looked": {"_count": 1}, "imitated": {"_count": 1}, "froze": {"_count": 1}}, "\u2018Morfin": {"_count": 1, "has": {"_count": 1}}, "Scum": {"_count": 1, "wholl": {"_count": 1}}, "Slytherinsl": {"_count": 1, "yelled": {"_count": 1}}, "Salazar": {"_count": 1, "Slytherins": {"_count": 1}}, "\u2018Darling": {"_count": 2, "whispered": {"_count": 1}, "he": {"_count": 1}}, "roared": {"_count": 2, "Gaunt": {"_count": 1}, "one": {"_count": 1}}, "Marvolo": {"_count": 5, "who": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "Gaunti": {"_count": 1}, "Gaunt": {"_count": 1}}, "Lack": {"_count": 1, "of": {"_count": 1}}, "Incredibly": {"_count": 1, "and": {"_count": 1}}, "Nonverbal": {"_count": 1, "spells": {"_count": 1}}, "\u2018Stanley": {"_count": 1, "Shunpike": {"_count": 1}}, "Cormac": {"_count": 3, "McLaggen": {"_count": 2}, "": {"_count": 1}}, "Romilda": {"_count": 3, "Vane": {"_count": 2}, "": {"_count": 1}}, "Pleased": {"_count": 3, "though": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}}, "Mumbling": {"_count": 1, "darkly": {"_count": 1}}, "Missed": {"_count": 1, "me": {"_count": 1}}, "gulped": {"_count": 1, "Hagrid": {"_count": 1}}, "Aragogs": {"_count": 2, "family": {"_count": 1}, "worse": {"_count": 1}}, "bit": {"_count": 1, "restive": {"_count": 1}}, "SILVER": {"_count": 1, "AND": {"_count": 1}}, "Nvbl": {"_count": 1, "": {"_count": 1}}, "Dangling": {"_count": 2, "people": {"_count": 1}, "from": {"_count": 1}}, "Unlucky": {"_count": 1, "again": {"_count": 1}}, "Gimme": {"_count": 1, "that": {"_count": 1}}, "Gasping": {"_count": 1, "and": {"_count": 1}}, "Lemme": {"_count": 1, "see": {"_count": 1}}, "Away": {"_count": 1, "": {"_count": 1}}, "Dilligrout": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "Caractacus": {"_count": 1, "Burke": {"_count": 1}}, "MRS": {"_count": 1, "COLE": {"_count": 1}}, "Pouring": {"_count": 1, "both": {"_count": 1}}, "Smacking": {"_count": 1, "her": {"_count": 1}}, "odd": {"_count": 1, "": {"_count": 1}}, "Billy": {"_count": 1, "Stubbss": {"_count": 1}}, "\u2018Professor": {"_count": 1, "": {"_count": 1}}, "FELIX": {"_count": 1, "FELICIS": {"_count": 1}}, "Gwenog": {"_count": 1, "Jones": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "Wrestling": {"_count": 1, "with": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "natural": {"_count": 1, "that": {"_count": 1}}, "ENOUGH": {"_count": 1, "": {"_count": 1}}, "Peakes": {"_count": 1, "go": {"_count": 1}}, "Demelza": {"_count": 1, "pull": {"_count": 1}}, "Cheer": {"_count": 2, "up": {"_count": 2}}, "Coffee": {"_count": 1, "": {"_count": 1}}, "Conditions": {"_count": 1, "look": {"_count": 1}}, "Thinks": {"_count": 1, "hes": {"_count": 1}}, "Avoiding": {"_count": 1, "her": {"_count": 1}}, "Renewed": {"_count": 1, "cheers": {"_count": 1}}, "does": {"_count": 1, "he": {"_count": 1}}, "Oppugno": {"_count": 1, "came": {"_count": 1}}, "Gerremoffme": {"_count": 1, "": {"_count": 1}}, "Despoiled": {"_count": 1, "": {"_count": 1}}, "Desecrated": {"_count": 1, "": {"_count": 1}}, "Baubles": {"_count": 2, "said": {"_count": 2}}, "Sooner": {"_count": 1, "you": {"_count": 1}}, "Anyonel": {"_count": 1, "And": {"_count": 1}}, "Worple": {"_count": 1, "who": {"_count": 1}}, "Instinctive": {"_count": 1, "you": {"_count": 1}}, "Emerging": {"_count": 1, "from": {"_count": 1}}, "cannot": {"_count": 1, "afford": {"_count": 1}}, "almost": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "Stupefied": {"_count": 1, "painted": {"_count": 1}}, "marvelous": {"_count": 1, "tune": {"_count": 1}}, "Eez": {"_count": 1, "eet": {"_count": 1}}, "Werewolves": {"_count": 1, "he": {"_count": 1}}, "readymade": {"_count": 1, "": {"_count": 1}}, "Fenrir": {"_count": 2, "Greyback": {"_count": 2}}, "Greyback": {"_count": 10, "specializes": {"_count": 1}, "grinned": {"_count": 1}, "attacked": {"_count": 1}, "hadnt": {"_count": 1}, "smelled": {"_count": 1}, "got": {"_count": 1}, "forced": {"_count": 1}, "gave": {"_count": 1}, "unlocked": {"_count": 1}, "take": {"_count": 1}}, "Bite": {"_count": 1, "them": {"_count": 1}}, "Jinxes": {"_count": 1, "go": {"_count": 1}}, "Classy": {"_count": 1, "": {"_count": 1}}, "Snogging": {"_count": 1, "said": {"_count": 1}}, "Parsnips": {"_count": 1, "Remus": {"_count": 1}}, "Gravy": {"_count": 1, "Fleur": {"_count": 1}}, "\u2018Stand": {"_count": 1, "alongside": {"_count": 1}}, "Locking": {"_count": 1, "up": {"_count": 1}}, "Abstinence": {"_count": 1, "": {"_count": 1}}, "Overindulged": {"_count": 1, "over": {"_count": 1}}, "APPARITION": {"_count": 1, "LESSONS": {"_count": 1}}, "Cost": {"_count": 1, "12": {"_count": 1}}, "Dum": {"_count": 1, "er": {"_count": 1}}, "SideAlong": {"_count": 1, "Apparition": {"_count": 1}}, "Rigidly": {"_count": 1, "controlled": {"_count": 1}}, "Few": {"_count": 1, "who": {"_count": 1}}, "Robbed": {"_count": 1, "us": {"_count": 1}}, "Marvolos": {"_count": 2, "ring": {"_count": 2}}, "\u2018Hell": {"_count": 2, "kill": {"_count": 2}}, "Tampered": {"_count": 1, "with": {"_count": 1}}, "BIRTHDAY": {"_count": 1, "SURPRISES": {"_count": 1}}, "Horcruxes": {"_count": 4, "": {"_count": 4}}, "UP": {"_count": 1, "": {"_count": 1}}, "Infuriated": {"_count": 1, "by": {"_count": 1}}, "Purplishgray": {"_count": 1, "clouds": {"_count": 1}}, "Oldfashioned": {"_count": 1, "wooden": {"_count": 1}}, "Destination": {"_count": 2, "Determination": {"_count": 1}, "": {"_count": 1}}, "THREE": {"_count": 2, "": {"_count": 2}}, "Adjust": {"_count": 1, "your": {"_count": 1}}, "Splinching": {"_count": 1, "or": {"_count": 1}}, "thus": {"_count": 1, "": {"_count": 1}}, "Twycross": {"_count": 2, "stepped": {"_count": 1}, "did": {"_count": 1}}, "Fastening": {"_count": 1, "his": {"_count": 1}}, "Determination": {"_count": 1, "": {"_count": 1}}, "Deliberation": {"_count": 1, "": {"_count": 1}}, "February": {"_count": 1, "moved": {"_count": 1}}, "Frustration": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "awkward": {"_count": 1, "questions": {"_count": 1}}, "Pickmeup": {"_count": 1, "thats": {"_count": 1}}, "hmm": {"_count": 1, "": {"_count": 1}}, "meant": {"_count": 1, "to": {"_count": 1}}, "Foam": {"_count": 1, "was": {"_count": 1}}, "ELF": {"_count": 1, "TAILS": {"_count": 1}}, "Anythings": {"_count": 1, "possible": {"_count": 1}}, "Ermynee": {"_count": 1, "croaked": {"_count": 1}}, "Chamber": {"_count": 3, "o": {"_count": 1}, "of": {"_count": 1}, "what": {"_count": 1}}, "Shhhh": {"_count": 1, "": {"_count": 1}}, "Coote": {"_count": 1, "Peakes": {"_count": 1}}, "Swearing": {"_count": 1, "angrily": {"_count": 1}}, "Seventyforty": {"_count": 1, "to": {"_count": 1}}, "distant": {"_count": 1, "screams": {"_count": 1}}, "Final": {"_count": 1, "score": {"_count": 1}}, "Losers": {"_count": 1, "Lurgy": {"_count": 1}}, "kicky": {"_count": 1, "scratchy": {"_count": 1}}, "Tweaky": {"_count": 1, "pokey": {"_count": 1}}, "LORD": {"_count": 1, "VOLDEMORTS": {"_count": 1}}, "Deeply": {"_count": 1, "uneasy": {"_count": 1}}, "Polite": {"_count": 1, "and": {"_count": 1}}, "Hokey": {"_count": 2, "where": {"_count": 1}, "the": {"_count": 1}}, "Lean": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "Burke": {"_count": 1, "bought": {"_count": 1}}, "Hepzibah": {"_count": 1, "Smith": {"_count": 1}}, "Risking": {"_count": 1, "everything": {"_count": 1}}, "forgive": {"_count": 4, "me": {"_count": 4}}, "woefully": {"_count": 1, "ignorant": {"_count": 1}}, "Nicked": {"_count": 1, "what": {"_count": 1}}, "Frustrated": {"_count": 1, "and": {"_count": 1}}, "Late": {"_count": 2, "again": {"_count": 1}, "in": {"_count": 1}}, "\u2018Ghosts": {"_count": 1, "are": {"_count": 1}}, "Goading": {"_count": 1, "Myrtle": {"_count": 1}}, "people": {"_count": 1, "getting": {"_count": 1}}, "Goes": {"_count": 1, "back": {"_count": 1}}, "AFTER": {"_count": 1, "THE": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "determination": {"_count": 1, "": {"_count": 1}}, "deliberation": {"_count": 1, "": {"_count": 1}}, "Cheered": {"_count": 1, "by": {"_count": 1}}, "Euphoria": {"_count": 1, "I": {"_count": 1}}, "Seized": {"_count": 1, "with": {"_count": 1}}, "Touching": {"_count": 1, "touching": {"_count": 1}}, "seems": {"_count": 1, "an": {"_count": 1}}, "Cornin": {"_count": 1, "ter": {"_count": 1}}, "Sad": {"_count": 1, "night": {"_count": 1}}, "Interested": {"_count": 1, "": {"_count": 1}}, "tha": {"_count": 1, "was": {"_count": 1}}, "beauiful": {"_count": 1, "": {"_count": 1}}, "nor": {"_count": 1, "were": {"_count": 1}}, "Longer": {"_count": 1, "and": {"_count": 1}}, "HORCRUXES": {"_count": 1, "Harry": {"_count": 1}}, "Fantastic": {"_count": 2, "said": {"_count": 1}, "stuff": {"_count": 1}}, "Project": {"_count": 1, "for": {"_count": 1}}, "few": {"_count": 1, "would": {"_count": 1}}, "Splitting": {"_count": 1, "it": {"_count": 1}}, "Killing": {"_count": 2, "rips": {"_count": 1}, "is": {"_count": 1}}, "\u2018Further": {"_count": 1, "than": {"_count": 1}}, "Therefore": {"_count": 2, "Voldemort": {"_count": 1}, "he": {"_count": 1}}, "Thereafter": {"_count": 2, "I": {"_count": 1}, "Griphook": {"_count": 1}}, "isnt": {"_count": 1, "seven": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "cup": {"_count": 1}}, "SECTUMSEMPRA": {"_count": 1, "Exhausted": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "Coward": {"_count": 1, "said": {"_count": 1}}, "Leanne": {"_count": 1, "was": {"_count": 1}}, "Luck": {"_count": 2, "can": {"_count": 1}, "isnt": {"_count": 1}}, "Pushing": {"_count": 3, "Harry": {"_count": 1}, "himself": {"_count": 1}, "open": {"_count": 1}}, "fourth": {"_count": 1, "place": {"_count": 1}}, "Ominously": {"_count": 1, "there": {"_count": 1}}, "Apprehended": {"_count": 1, "using": {"_count": 1}}, "Aubreys": {"_count": 1, "head": {"_count": 1}}, "Biting": {"_count": 1, "his": {"_count": 1}}, "Quid": {"_count": 1, "agis": {"_count": 1}}, "Prince": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "omens": {"_count": 1, "I": {"_count": 1}}, "whooping": {"_count": 1, "": {"_count": 1}}, "Whooping": {"_count": 1, "": {"_count": 1}}, "Calamity": {"_count": 1, "": {"_count": 1}}, "Disaster": {"_count": 1, "": {"_count": 1}}, "Boiling": {"_count": 1, "with": {"_count": 1}}, "AND": {"_count": 1, "YOU": {"_count": 1}}, "Share": {"_count": 1, "it": {"_count": 1}}, "Lights": {"_count": 1, "twinkled": {"_count": 1}}, "Payment": {"_count": 1, "": {"_count": 1}}, "Age": {"_count": 1, "is": {"_count": 1}}, "moaned": {"_count": 1, "Dumbledore": {"_count": 1}}, "Hating": {"_count": 1, "himself": {"_count": 1}}, "Renneruate": {"_count": 1, "sir": {"_count": 1}}, "Aguamenti": {"_count": 4, "he": {"_count": 1}, "Aguamenti": {"_count": 1}, "screamed": {"_count": 1}, "Harry": {"_count": 1}}, "Wordlessly": {"_count": 1, "he": {"_count": 1}}, "welldesigned": {"_count": 1, "said": {"_count": 1}}, "Save": {"_count": 1, "your": {"_count": 1}}, "Sodden": {"_count": 1, "and": {"_count": 1}}, "Closing": {"_count": 2, "his": {"_count": 2}}, "Dread": {"_count": 3, "flooded": {"_count": 1}, "doused": {"_count": 1}, "filled": {"_count": 1}}, "wherever": {"_count": 1, "they": {"_count": 1}}, "poisoning": {"_count": 1, "mead": {"_count": 1}}, "Enchanted": {"_count": 1, "coins": {"_count": 1}}, "Jokes": {"_count": 1, "": {"_count": 1}}, "Shocks": {"_count": 1, "you": {"_count": 1}}, "Delicious": {"_count": 2, "delicious": {"_count": 1}, "girl": {"_count": 1}}, "Dracos": {"_count": 1, "got": {"_count": 1}}, "FLIGHT": {"_count": 1, "OF": {"_count": 1}}, "ran": {"_count": 1, "past": {"_count": 1}}, "Impedimenta": {"_count": 1, "": {"_count": 1}}, "Cruc": {"_count": 2, "But": {"_count": 1}, "yelled": {"_count": 1}}, "Fangs": {"_count": 1, "in": {"_count": 1}}, "Fight": {"_count": 3, "back": {"_count": 2}, "it": {"_count": 1}}, "Mustering": {"_count": 1, "all": {"_count": 1}}, "HAGRID": {"_count": 5, "": {"_count": 3}, "NO": {"_count": 1}, "COME": {"_count": 1}}, "Snot": {"_count": 1, "too": {"_count": 1}}, "Theyllve": {"_count": 1, "bin": {"_count": 1}}, "Incomprehensible": {"_count": 1, "voices": {"_count": 1}}, "Faces": {"_count": 2, "swam": {"_count": 1}, "appeared": {"_count": 1}}, "\u2018Mudblood": {"_count": 1, "he": {"_count": 1}}, "Gibbon": {"_count": 1, "was": {"_count": 1}}, "curses": {"_count": 1, "flying": {"_count": 1}}, "Mmoved": {"_count": 1, "him": {"_count": 1}}, "Parents": {"_count": 2, "will": {"_count": 1}, "said": {"_count": 1}}, "Seconded": {"_count": 1, "barked": {"_count": 1}}, "Ugly": {"_count": 1, "though": {"_count": 1}}, "Rupert": {"_count": 1, "\u2018Axebanger": {"_count": 1}}, "Pure": {"_count": 1, "blood": {"_count": 1}}, "ashamed": {"_count": 1, "of": {"_count": 1}}, "Hulking": {"_count": 1, "boys": {"_count": 1}}, "Nobility": {"_count": 1, "of": {"_count": 1}}, "intellectual": {"_count": 1, "contribution": {"_count": 1}}, "greatness": {"_count": 1, "of": {"_count": 1}}, "Likewise": {"_count": 1, "the": {"_count": 1}}, "months": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 1, "maybe": {"_count": 1}}, "Moving": {"_count": 3, "felt": {"_count": 1}, "away": {"_count": 1}, "through": {"_count": 1}}, "Released": {"_count": 1, "Stan": {"_count": 1}}, "News": {"_count": 1, "": {"_count": 1}}, "Peacocks": {"_count": 1, "": {"_count": 1}}, "Yaxley": {"_count": 9, "thrust": {"_count": 1}, "": {"_count": 1}, "beside": {"_count": 1}, "had": {"_count": 1}, "waited": {"_count": 1}, "squared": {"_count": 1}, "looked": {"_count": 2}, "laughed": {"_count": 1}}, "Gravel": {"_count": 1, "crackled": {"_count": 1}}, "Illumination": {"_count": 1, "came": {"_count": 1}}, "Charity": {"_count": 2, "Burbage": {"_count": 1}, "fell": {"_count": 1}}, "Kneeling": {"_count": 1, "down": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "ALBUS": {"_count": 1, "DUMBLEDORE": {"_count": 1}}, "Scarcely": {"_count": 1, "a": {"_count": 1}}, "Immersed": {"_count": 1, "in": {"_count": 1}}, "Stripping": {"_count": 1, "away": {"_count": 1}}, "WHY": {"_count": 1, "was": {"_count": 1}}, "Greeting": {"_count": 1, "me": {"_count": 1}}, "Skeeter": {"_count": 2, "was": {"_count": 1}, "throws": {"_count": 1}}, "Revulsion": {"_count": 1, "and": {"_count": 1}}, "Lies": {"_count": 2, "": {"_count": 2}}, "began": {"_count": 1, "Uncle": {"_count": 1}}, "Hestia": {"_count": 3, "Jones": {"_count": 2}, "followed": {"_count": 1}}, "Sso": {"_count": 1, "sweet": {"_count": 1}}, "Ssuch": {"_count": 1, "a": {"_count": 1}}, "ssaying": {"_count": 1, "thank": {"_count": 1}}, "Dedaluss": {"_count": 1, "top": {"_count": 1}}, "Dominating": {"_count": 1, "the": {"_count": 1}}, "Wrenching": {"_count": 1, "open": {"_count": 1}}, "Pius": {"_count": 1, "Thicknesse": {"_count": 1}}, "Altogether": {"_count": 1, "then": {"_count": 1}}, "Bah": {"_count": 1, "said": {"_count": 1}}, "Clinging": {"_count": 1, "on": {"_count": 1}}, "Ted": {"_count": 1, "Tonks": {"_count": 1}}, "Throwing": {"_count": 1, "aside": {"_count": 1}}, "Le": {"_count": 1, "go": {"_count": 1}}, "Repeating": {"_count": 1, "it": {"_count": 1}}, "Followed": {"_count": 1, "by": {"_count": 1}}, "Traverss": {"_count": 1, "hood": {"_count": 1}}, "Sectumsempra": {"_count": 1, "was": {"_count": 1}}, "Saintlike": {"_count": 1, "he": {"_count": 1}}, "Hole": {"_count": 1, "v": {"_count": 1}}, "Color": {"_count": 1, "flooded": {"_count": 1}}, "MadEyes": {"_count": 1, "body": {"_count": 1}}, "Escaped": {"_count": 1, "him": {"_count": 1}}, "Luciuss": {"_count": 1, "wand": {"_count": 1}}, "exists": {"_count": 1, "only": {"_count": 1}}, "between": {"_count": 2, "your": {"_count": 1}, "you": {"_count": 1}}, "Startled": {"_count": 1, "Harry": {"_count": 1}}, "Wendell": {"_count": 1, "and": {"_count": 1}}, "Descendo": {"_count": 1, "muttered": {"_count": 1}}, "Spattergroit": {"_count": 1, "s": {"_count": 1}}, "shouldnt": {"_count": 1, "we": {"_count": 1}}, "person": {"_count": 1, "he": {"_count": 1}}, "Secrets": {"_count": 3, "of": {"_count": 1}, "and": {"_count": 2}}, "Remorse": {"_count": 1, "said": {"_count": 1}}, "Basilisk": {"_count": 1, "venom": {"_count": 1}}, "Maman": {"_count": 1, "": {"_count": 1}}, "Papa": {"_count": 1, "": {"_count": 1}}, "Bouncing": {"_count": 1, "toward": {"_count": 1}}, "Enchantee": {"_count": 1, "she": {"_count": 1}}, "Monsieur": {"_count": 1, "Delacour": {"_count": 1}}, "Opportunities": {"_count": 1, "to": {"_count": 1}}, "Millamants": {"_count": 1, "Magic": {"_count": 1}}, "\u2018Gregorovitch": {"_count": 1, "": {"_count": 1}}, "Record": {"_count": 1, "holder": {"_count": 1}}, "Slick": {"_count": 1, "snorted": {"_count": 1}}, "Reveling": {"_count": 1, "in": {"_count": 1}}, "Unwrap": {"_count": 1, "it": {"_count": 1}}, "Explains": {"_count": 1, "everything": {"_count": 1}}, "ozzerwise": {"_count": 1, "you": {"_count": 1}}, "chocolates": {"_count": 1, "from": {"_count": 1}}, "Mokeskin": {"_count": 1, "": {"_count": 1}}, "Hide": {"_count": 2, "anythin": {"_count": 1}, "them": {"_count": 1}}, "\u2018To": {"_count": 2, "Ronald": {"_count": 1}, "Harry": {"_count": 1}}, "persevere": {"_count": 1, "and": {"_count": 1}}, "Dusk": {"_count": 1, "was": {"_count": 1}}, "Remembered": {"_count": 1, "that": {"_count": 1}}, "raised": {"_count": 1, "voices": {"_count": 1}}, "regret": {"_count": 1, "your": {"_count": 1}}, "Muffliato": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "Writing": {"_count": 1, "": {"_count": 1}}, "Engraved": {"_count": 2, "upon": {"_count": 1}, "in": {"_count": 1}}, "\u2018Babbitty": {"_count": 1, "Rabbitty": {"_count": 1}}, "Cried": {"_count": 1, "a": {"_count": 1}}, "Brightly": {"_count": 1, "colored": {"_count": 1}}, "Exotic": {"_count": 1, "flowers": {"_count": 1}}, "Xenophilius": {"_count": 14, "Lovegood": {"_count": 1}, "who": {"_count": 1}, "had": {"_count": 2}, "did": {"_count": 3}, "gulped": {"_count": 1}, "strode": {"_count": 1}, "raised": {"_count": 1}, "set": {"_count": 1}, "nodded": {"_count": 1}, "looked": {"_count": 1}, "gave": {"_count": 1}}, "Ours": {"_count": 1, "do": {"_count": 1}}, "Bidding": {"_count": 1, "the": {"_count": 1}}, "Goblinmade": {"_count": 2, "you": {"_count": 1}, "armor": {"_count": 1}}, "Nightmare": {"_count": 1, "Muriel": {"_count": 1}}, "Cousin": {"_count": 1, "Harry": {"_count": 1}}, "Trumpetlike": {"_count": 1, "sounds": {"_count": 1}}, "Smooth": {"_count": 1, "said": {"_count": 1}}, "Barny": {"_count": 1, "Weasley": {"_count": 1}}, "Sign": {"_count": 1, "": {"_count": 1}}, "Grindelwald": {"_count": 9, "": {"_count": 5}, "didnt": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "lost": {"_count": 1}}, "unusual": {"_count": 1, "": {"_count": 1}}, "Vy": {"_count": 1, "is": {"_count": 1}}, "Gregorovitch": {"_count": 3, "": {"_count": 2}, "had": {"_count": 1}}, "Doge": {"_count": 2, "gasped": {"_count": 1}, "banged": {"_count": 1}}, "Auntie": {"_count": 2, "Muriel": {"_count": 2}}, "Muggleborn": {"_count": 2, "though": {"_count": 1}, "eh": {"_count": 1}}, "proud": {"_count": 1, "and": {"_count": 1}}, "Squibs": {"_count": 1, "were": {"_count": 1}}, "much": {"_count": 1, "kinder": {"_count": 1}}, "Numbly": {"_count": 1, "Harry": {"_count": 1}}, "Muriel": {"_count": 4, "might": {"_count": 1}, "swigged": {"_count": 1}, "said": {"_count": 1}, "called": {"_count": 1}}, "Bathilda": {"_count": 11, "described": {"_count": 1}, "Bagshot": {"_count": 2}, "drops": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "looked": {"_count": 1}, "mustve": {"_count": 1}, "also": {"_count": 1}, "shows": {"_count": 1}}, "Graceful": {"_count": 2, "and": {"_count": 1}, "arched": {"_count": 1}}, "Guests": {"_count": 1, "were": {"_count": 1}}, "Tottenham": {"_count": 1, "Court": {"_count": 1}}, "Expulsol": {"_count": 1, "bellowed": {"_count": 1}}, "Ddiffindo": {"_count": 1, "she": {"_count": 1}}, "Lock": {"_count": 1, "the": {"_count": 1}}, "Faintly": {"_count": 1, "he": {"_count": 1}}, "Bathroom": {"_count": 1, "he": {"_count": 1}}, "Desperate": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "Wormy": {"_count": 2, "was": {"_count": 2}}, "Lurching": {"_count": 1, "to": {"_count": 1}}, "Impatiently": {"_count": 1, "brushing": {"_count": 1}}, "Regulus": {"_count": 4, "": {"_count": 1}, "seems": {"_count": 1}, "was": {"_count": 2}}, "l": {"_count": 1, "The": {"_count": 1}}, "Reguluss": {"_count": 1, "bedroom": {"_count": 1}}, "Refusing": {"_count": 1, "to": {"_count": 1}}, "MMaster": {"_count": 1, "Regulus": {"_count": 1}}, "Wizarding": {"_count": 3, "wills": {"_count": 1}, "arrogance": {"_count": 1}, "history": {"_count": 1}}, "Restless": {"_count": 1, "and": {"_count": 1}}, "Wrapped": {"_count": 1, "in": {"_count": 1}}, "Effectively": {"_count": 1, "he": {"_count": 1}}, "Declaring": {"_count": 1, "himself": {"_count": 1}}, "\u2018Recent": {"_count": 1, "research": {"_count": 1}}, "Muggleborns": {"_count": 2, "are": {"_count": 1}, "he": {"_count": 1}}, "Attendance": {"_count": 1, "is": {"_count": 1}}, "Baby": {"_count": 1, "Arianas": {"_count": 1}}, "Slammed": {"_count": 1, "the": {"_count": 1}}, "Walked": {"_count": 1, "her": {"_count": 1}}, "Ariana": {"_count": 2, "was": {"_count": 1}, "couldnt": {"_count": 1}}, "Wildeyed": {"_count": 1, "Mundungus": {"_count": 1}}, "Whave": {"_count": 1, "I": {"_count": 1}}, "Fletcher": {"_count": 1, "knows": {"_count": 1}}, "bleedin": {"_count": 1, "gave": {"_count": 1}}, "Bleedin": {"_count": 1, "snoop": {"_count": 1}}, "MAGIC": {"_count": 1, "IS": {"_count": 1}}, "Shutting": {"_count": 1, "the": {"_count": 1}}, "Shoes": {"_count": 1, "off": {"_count": 1}}, "\u2018Severus": {"_count": 1, "Snape": {"_count": 1}}, "Opening": {"_count": 1, "it": {"_count": 1}}, "Aware": {"_count": 1, "that": {"_count": 1}}, "Grunting": {"_count": 1, "with": {"_count": 1}}, "Dawn": {"_count": 2, "seemed": {"_count": 1}, "was": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloak": {"_count": 1}}, "Decoy": {"_count": 1, "Detonators": {"_count": 1}}, "Puking": {"_count": 1, "Pastilles": {"_count": 1}}, "Nicely": {"_count": 2, "done": {"_count": 1}, "phrased": {"_count": 1}}, "Stowing": {"_count": 1, "the": {"_count": 1}}, "Blooming": {"_count": 1, "pain": {"_count": 1}}, "Previously": {"_count": 1, "a": {"_count": 1}}, "Raining": {"_count": 1, "": {"_count": 1}}, "Yaxleys": {"_count": 1, "eyes": {"_count": 1}}, "Travers": {"_count": 5, "sent": {"_count": 1}, "seemed": {"_count": 1}, "extended": {"_count": 1}, "looked": {"_count": 1}, "was": {"_count": 1}}, "Needed": {"_count": 1, "a": {"_count": 1}}, "Runcorn": {"_count": 2, "was": {"_count": 1}, "let": {"_count": 1}}, "Panic": {"_count": 2, "pulsed": {"_count": 1}, "flared": {"_count": 1}}, "ARTHUR": {"_count": 1, "WEASLEY": {"_count": 1}}, "FAMILY": {"_count": 1, "Wife": {"_count": 1}}, "NB": {"_count": 1, "Youngest": {"_count": 1}}, "SECURITY": {"_count": 1, "STATUS": {"_count": 1}}, "Angrier": {"_count": 1, "than": {"_count": 1}}, "Mmorning": {"_count": 1, "he": {"_count": 1}}, "Meteolojinx": {"_count": 1, "Recanto": {"_count": 1}}, "Married": {"_count": 1, "to": {"_count": 1}}, "Eightandthreequarter": {"_count": 1, "inches": {"_count": 1}}, "\u2018Parents": {"_count": 1, "professions": {"_count": 1}}, "Icecold": {"_count": 1, "air": {"_count": 1}}, "Relashiol": {"_count": 2, "The": {"_count": 1}, "said": {"_count": 1}}, "Disguise": {"_count": 1, "yourselves": {"_count": 1}}, "Expec": {"_count": 1, "Expecto": {"_count": 1}}, "Reg": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "Purer": {"_count": 1, "than": {"_count": 1}}, "RReg": {"_count": 1, "": {"_count": 1}}, "LETS": {"_count": 2, "GO": {"_count": 2}}, "Unstopper": {"_count": 1, "it": {"_count": 1}}, "Gloomy": {"_count": 1, "and": {"_count": 1}}, "Salvio": {"_count": 2, "Hexia": {"_count": 2}}, "Protego": {"_count": 4, "Totalum": {"_count": 2}, "she": {"_count": 1}, "roared": {"_count": 1}}, "Repello": {"_count": 1, "Muggletum": {"_count": 1}}, "Tent": {"_count": 1, "": {"_count": 1}}, "ErectoV": {"_count": 1, "she": {"_count": 1}}, "Sudden": {"_count": 1, "awareness": {"_count": 1}}, "Mastering": {"_count": 1, "himself": {"_count": 1}}, "Nameless": {"_count": 1, "forebodings": {"_count": 1}}, "fallen": {"_count": 1, "": {"_count": 1}}, "Elax": {"_count": 1, "": {"_count": 1}}, "Accordingly": {"_count": 1, "Harry": {"_count": 1}}, "Repressing": {"_count": 1, "a": {"_count": 1}}, "Autumn": {"_count": 1, "rolled": {"_count": 1}}, "Refused": {"_count": 1, "to": {"_count": 1}}, "Word": {"_count": 1, "was": {"_count": 1}}, "Duties": {"_count": 1, "illbefitting": {"_count": 1}}, "Gornuk": {"_count": 1, "laughed": {"_count": 1}}, "Xeno": {"_count": 1, "is": {"_count": 1}}, "Thieving": {"_count": 1, "from": {"_count": 1}}, "Problem": {"_count": 1, "": {"_count": 1}}, "GODRICS": {"_count": 1, "HOLLOW": {"_count": 1}}, "Cudgel": {"_count": 1, "his": {"_count": 1}}, "Hopelessness": {"_count": 1, "threatened": {"_count": 1}}, "Grindelwalds": {"_count": 1, "mark": {"_count": 1}}, "\u2018Upon": {"_count": 1, "the": {"_count": 1}}, "Convinced": {"_count": 2, "as": {"_count": 2}}, "Cottages": {"_count": 1, "stood": {"_count": 1}}, "Strung": {"_count": 1, "all": {"_count": 1}}, "Villagers": {"_count": 1, "were": {"_count": 1}}, "Deeper": {"_count": 4, "and": {"_count": 4}}, "JAMES": {"_count": 1, "POTTER": {"_count": 1}}, "BATHILDAS": {"_count": 1, "SECRET": {"_count": 1}}, "Leading": {"_count": 1, "them": {"_count": 1}}, "Yesss": {"_count": 1, "": {"_count": 1}}, "Frozen": {"_count": 1, "air": {"_count": 1}}, "Glass": {"_count": 1, "cut": {"_count": 1}}, "ripped": {"_count": 1, "from": {"_count": 1}}, "Mend": {"_count": 1, "it": {"_count": 1}}, "Impenetrable": {"_count": 1, "unhelpful": {"_count": 1}}, "Timidly": {"_count": 1, "she": {"_count": 1}}, "\u2018Dear": {"_count": 1, "Batty": {"_count": 1}}, "Dogbreath": {"_count": 1, "Doge": {"_count": 1}}, "Kendra": {"_count": 1, "of": {"_count": 1}}, "Educated": {"_count": 1, "at": {"_count": 1}}, "Hitherto": {"_count": 1, "all": {"_count": 1}}, "Profoundly": {"_count": 1, "shocking": {"_count": 1}}, "Gellert": {"_count": 1, "was": {"_count": 1}}, "Terribly": {"_count": 1, "distressed": {"_count": 1}}, "Aberforth": {"_count": 6, "blamed": {"_count": 1}, "seemed": {"_count": 2}, "stood": {"_count": 1}, "remained": {"_count": 1}, "grunted": {"_count": 1}}, "Caution": {"_count": 1, "murmured": {"_count": 1}}, "Diffindo": {"_count": 1, "": {"_count": 1}}, "Contemplating": {"_count": 1, "the": {"_count": 1}}, "Thrashing": {"_count": 1, "suffocating": {"_count": 1}}, "Choking": {"_count": 1, "and": {"_count": 1}}, "Shuddering": {"_count": 1, "with": {"_count": 1}}, "Yyou": {"_count": 1, "cast": {"_count": 1}}, "Straightaway": {"_count": 1, "okay": {"_count": 1}}, "Stab": {"_count": 3, "said": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "Finishing": {"_count": 1, "off": {"_count": 1}}, "Saving": {"_count": 1, "my": {"_count": 1}}, "Simultaneously": {"_count": 1, "they": {"_count": 1}}, "Spitting": {"_count": 1, "hair": {"_count": 1}}, "Rack": {"_count": 1, "your": {"_count": 1}}, "Snatchers": {"_count": 1, "said": {"_count": 1}}, "Gosh": {"_count": 1, "what": {"_count": 1}}, "\u2018Ron": {"_count": 1, "": {"_count": 1}}, "Mines": {"_count": 1, "broken": {"_count": 1}}, "XEN": {"_count": 1, "OPHILIUS": {"_count": 1}}, "Patronuses": {"_count": 2, "can": {"_count": 1}, "Harry": {"_count": 1}}, "Outvoted": {"_count": 1, "Harry": {"_count": 1}}, "Alls": {"_count": 1, "fair": {"_count": 1}}, "EDITOR": {"_count": 1, "X": {"_count": 1}}, "LOVEGOOD": {"_count": 1, "the": {"_count": 1}}, "QuicklyV": {"_count": 1, "They": {"_count": 1}}, "Delicately": {"_count": 1, "made": {"_count": 1}}, "helping": {"_count": 1, "Harry": {"_count": 1}}, "rather": {"_count": 1, "dangerous": {"_count": 1}}, "Cowardly": {"_count": 1, "old": {"_count": 1}}, "Fetching": {"_count": 1, "said": {"_count": 1}}, "Surprised": {"_count": 1, "he": {"_count": 1}}, "Modeled": {"_count": 1, "fittingly": {"_count": 1}}, "\u2018Wit": {"_count": 2, "beyond": {"_count": 2}}, "Witness": {"_count": 1, "that": {"_count": 1}}, "\u2018There": {"_count": 1, "were": {"_count": 1}}, "\u2018In": {"_count": 2, "time": {"_count": 1}, "due": {"_count": 1}}, "\u2018And": {"_count": 5, "Death": {"_count": 2}, "then": {"_count": 1}, "so": {"_count": 2}}, "\u2018So": {"_count": 1, "the": {"_count": 1}}, "\u2018Then": {"_count": 2, "the": {"_count": 1}, "Death": {"_count": 1}}, "Deaths": {"_count": 1, "got": {"_count": 1}}, "\u2018Meanwhile": {"_count": 1, "the": {"_count": 1}}, "\u2018Yet": {"_count": 1, "she": {"_count": 1}}, "Conqueror": {"_count": 2, "": {"_count": 2}}, "Vanquisher": {"_count": 2, "": {"_count": 2}}, "Closeminded": {"_count": 2, "": {"_count": 2}}, "Peverell": {"_count": 1, "": {"_count": 1}}, "Ignotus": {"_count": 1, "Peverell": {"_count": 1}}, "\u2018Jinx": {"_count": 1, "by": {"_count": 1}}, "\u2018Wand": {"_count": 1, "of": {"_count": 1}}, "Beedle": {"_count": 1, "probably": {"_count": 1}}, "perfect": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 2, "": {"_count": 2}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "Deprimo": {"_count": 1, "She": {"_count": 1}}, "such": {"_count": 1, "rubbish": {"_count": 1}}, "\u2018Extinct": {"_count": 1, "in": {"_count": 1}}, "ITS": {"_count": 1, "IN": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "Limited": {"_count": 1, "": {"_count": 1}}, "Obsession": {"_count": 1, "": {"_count": 1}}, "master": {"_count": 1, "of": {"_count": 1}}, "Upper": {"_count": 1, "Flagley": {"_count": 1}}, "Potterwatch": {"_count": 1, "didnt": {"_count": 1}}, "apologize": {"_count": 1, "for": {"_count": 1}}, "\u2018River": {"_count": 1, "thats": {"_count": 1}}, "Listeners": {"_count": 2, "Id": {"_count": 1}, "that": {"_count": 1}}, "Excellently": {"_count": 1, "put": {"_count": 1}}, "\u2018Support": {"_count": 1, "Harry": {"_count": 1}}, "\u2018Rodent": {"_count": 1, "": {"_count": 1}}, "\u2018Rapier": {"_count": 1, "could": {"_count": 1}}, "Agreed": {"_count": 2, "said": {"_count": 2}}, "Unknown": {"_count": 1, "hands": {"_count": 1}}, "Bardy": {"_count": 1, "Weadley": {"_count": 1}}, "Aggiden": {"_count": 1, "": {"_count": 1}}, "Accident": {"_count": 3, "": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}}, "Mean": {"_count": 1, "anything": {"_count": 1}}, "Bind": {"_count": 1, "them": {"_count": 1}}, "Veery": {"_count": 1, "nice": {"_count": 1}}, "\u2018ermione": {"_count": 1, "Granger": {"_count": 1}}, "known": {"_count": 1, "to": {"_count": 1}}, "Scabior": {"_count": 1, "thrust": {"_count": 1}}, "Sword": {"_count": 1, "grunted": {"_count": 1}}, "Stupefyl": {"_count": 2, "They": {"_count": 1}, "he": {"_count": 1}}, "Line": {"_count": 1, "up": {"_count": 1}}, "DOB": {"_count": 1, "": {"_count": 1}}, "Cautiously": {"_count": 1, "they": {"_count": 1}}, "NOOOOOOOOOOOO": {"_count": 1, "": {"_count": 1}}, "Hoisting": {"_count": 1, "the": {"_count": 1}}, "DOBBY": {"_count": 1, "": {"_count": 1}}, "HELP": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 3, "Dumbledore": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}}, "Hallows": {"_count": 4, "": {"_count": 2}, "not": {"_count": 1}, "murmured": {"_count": 1}}, "Loss": {"_count": 1, "and": {"_count": 1}}, "Moved": {"_count": 1, "them": {"_count": 1}}, "Fidelius": {"_count": 1, "Charm": {"_count": 1}}, "Griphooks": {"_count": 1, "legs": {"_count": 1}}, "Wandcarriers": {"_count": 1, "repeated": {"_count": 1}}, "Mudblood": {"_count": 1, "and": {"_count": 1}}, "Bits": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "Ollivanders": {"_count": 1, "voice": {"_count": 1}}, "Feigning": {"_count": 1, "a": {"_count": 1}}, "Holly": {"_count": 1, "and": {"_count": 1}}, "Ollivander": {"_count": 7, "stared": {"_count": 1}, "swallowed": {"_count": 1}, "turned": {"_count": 1}, "looked": {"_count": 2}, "settled": {"_count": 1}, "told": {"_count": 1}}, "Walnut": {"_count": 1, "and": {"_count": 1}}, "Unyielding": {"_count": 1, "": {"_count": 1}}, "Hawthorn": {"_count": 1, "and": {"_count": 1}}, "Reasonably": {"_count": 1, "springy": {"_count": 1}}, "Subtle": {"_count": 1, "laws": {"_count": 1}}, "Chestnut": {"_count": 1, "and": {"_count": 1}}, "Nineanda": {"_count": 1, "quarter": {"_count": 1}}, "Brittle": {"_count": 1, "": {"_count": 1}}, "Wandlore": {"_count": 1, "is": {"_count": 1}}, "Legends": {"_count": 1, "about": {"_count": 1}}, "Against": {"_count": 1, "the": {"_count": 1}}, "formidable": {"_count": 1, "": {"_count": 1}}, "Immensely": {"_count": 1, "powerful": {"_count": 1}}, "SHELL": {"_count": 1, "COTTAGE": {"_count": 1}}, "Changes": {"_count": 1, "how": {"_count": 1}}, "Zat": {"_count": 1, "will": {"_count": 1}}, "Ze": {"_count": 1, "goblin": {"_count": 1}}, "Seizing": {"_count": 1, "the": {"_count": 1}}, "Moonstones": {"_count": 1, "and": {"_count": 1}}, "Everythings": {"_count": 1, "fine": {"_count": 1}}, "Adding": {"_count": 1, "the": {"_count": 1}}, "Mme": {"_count": 1, "": {"_count": 1}}, "Andromeda": {"_count": 1, "says": {"_count": 1}}, "Goblin": {"_count": 1, "notions": {"_count": 1}}, "Dealings": {"_count": 1, "between": {"_count": 1}}, "GRINGOTTS": {"_count": 1, "Their": {"_count": 1}}, "escape": {"_count": 1, "": {"_count": 1}}, "\u2018Im": {"_count": 1, "a": {"_count": 1}}, "identification": {"_count": 1, "": {"_count": 1}}, "Identification": {"_count": 1, "": {"_count": 1}}, "Act": {"_count": 1, "now": {"_count": 1}}, "Imperio": {"_count": 1, "The": {"_count": 1}}, "CCushioning": {"_count": 1, "Charm": {"_count": 1}}, "Bogrod": {"_count": 1, "submitted": {"_count": 1}}, "Hoisted": {"_count": 1, "into": {"_count": 1}}, "Impervius": {"_count": 1, "screeched": {"_count": 1}}, "Liberacorpus": {"_count": 1, "yelled": {"_count": 1}}, "Sliding": {"_count": 1, "from": {"_count": 1}}, "Glinting": {"_count": 1, "in": {"_count": 1}}, "Mmy": {"_count": 1, "Lord": {"_count": 1}}, "Imimpostors": {"_count": 1, "my": {"_count": 1}}, "Impostors": {"_count": 1, "": {"_count": 1}}, "Disapparate": {"_count": 1, "now": {"_count": 1}}, "Shouts": {"_count": 1, "reached": {"_count": 1}}, "Stag": {"_count": 2, "": {"_count": 2}}, "Curfews": {"_count": 1, "been": {"_count": 1}}, "Ravenous": {"_count": 1, "they": {"_count": 1}}, "Iits": {"_count": 1, "not": {"_count": 1}}, "till": {"_count": 1, "he": {"_count": 1}}, "Grand": {"_count": 1, "plans": {"_count": 1}}, "Tou": {"_count": 1, "Know": {"_count": 1}}, "Larger": {"_count": 1, "and": {"_count": 1}}, "Brass": {"_count": 1, "lamps": {"_count": 1}}, "Amycus": {"_count": 2, "the": {"_count": 1}, "got": {"_count": 1}}, "Alecto": {"_count": 2, "Amycuss": {"_count": 1}, "": {"_count": 1}}, "Thing": {"_count": 1, "was": {"_count": 1}}, "Multicolored": {"_count": 1, "hammocks": {"_count": 1}}, "Surpassed": {"_count": 1, "itself": {"_count": 1}}, "Thereve": {"_count": 1, "been": {"_count": 1}}, "Aberforths": {"_count": 1, "getting": {"_count": 1}}, "Centuries": {"_count": 1, "ago": {"_count": 1}}, "Ravenclaws": {"_count": 2, "was": {"_count": 1}, "follow": {"_count": 1}}, "ALECTO": {"_count": 1, "If": {"_count": 1}}, "Hunched": {"_count": 2, "like": {"_count": 1}, "in": {"_count": 1}}, "Hatred": {"_count": 1, "boiled": {"_count": 1}}, "Sprout": {"_count": 1, "and": {"_count": 1}}, "Piertotum": {"_count": 1, "oh": {"_count": 1}}, "Man": {"_count": 1, "the": {"_count": 1}}, "evacuation": {"_count": 1, "will": {"_count": 1}}, "Nicks": {"_count": 1, "head": {"_count": 1}}, "Generations": {"_count": 2, "of": {"_count": 2}}, "Concealed": {"_count": 1, "inside": {"_count": 1}}, "Albania": {"_count": 1, "repeated": {"_count": 1}}, "Sense": {"_count": 1, "was": {"_count": 1}}, "flattering": {"_count": 1, "": {"_count": 1}}, "Saying": {"_count": 1, "it": {"_count": 1}}, "Voice": {"_count": 1, "carried": {"_count": 1}}, "Smashed": {"_count": 1, "our": {"_count": 1}}, "Wherere": {"_count": 1, "we": {"_count": 1}}, "Mandrakes": {"_count": 1, "": {"_count": 1}}, "Braggarts": {"_count": 1, "and": {"_count": 1}}, "Genius": {"_count": 1, "": {"_count": 1}}, "01": {"_count": 1, "": {"_count": 1}}, "Winners": {"_count": 1, "keepers": {"_count": 1}}, "Decided": {"_count": 1, "to": {"_count": 1}}, "CCrabbe": {"_count": 2, "choked": {"_count": 1}, "": {"_count": 1}}, "Thicknesse": {"_count": 1, "had": {"_count": 1}}, "Rounding": {"_count": 1, "the": {"_count": 1}}, "Duro": {"_count": 1, "cried": {"_count": 1}}, "Argh": {"_count": 1, "": {"_count": 1}}, "Screams": {"_count": 2, "of": {"_count": 1}, "split": {"_count": 1}}, "Stun": {"_count": 1, "him": {"_count": 1}}, "Shapes": {"_count": 1, "moved": {"_count": 1}}, "Skilled": {"_count": 1, "wizard": {"_count": 1}}, "Capture": {"_count": 1, "Potter": {"_count": 1}}, "Silvery": {"_count": 1, "blue": {"_count": 1}}, "Dispose": {"_count": 1, "of": {"_count": 1}}, "Treat": {"_count": 1, "your": {"_count": 1}}, "Emeralds": {"_count": 1, "were": {"_count": 1}}, "Part": {"_count": 2, "of": {"_count": 2}}, "Mummy": {"_count": 2, "told": {"_count": 1}, "said": {"_count": 1}}, "Tuney": {"_count": 3, "look": {"_count": 1}, "": {"_count": 2}}, "Petunias": {"_count": 1, "laugh": {"_count": 1}}, "weirdos": {"_count": 1, "thats": {"_count": 1}}, "Freak": {"_count": 1, "": {"_count": 1}}, "\u2018Gryffindor": {"_count": 1, "where": {"_count": 1}}, "Slytherinl": {"_count": 1, "cried": {"_count": 1}}, "safe": {"_count": 1, "": {"_count": 1}}, "mediocre": {"_count": 1, "arrogant": {"_count": 1}}, "Sorely": {"_count": 1, "tempted": {"_count": 1}}, "Tempted": {"_count": 1, "by": {"_count": 1}}, "Slow": {"_count": 1, "torture": {"_count": 1}}, "Offer": {"_count": 1, "him": {"_count": 1}}, "Ultimately": {"_count": 1, "of": {"_count": 1}}, "Information": {"_count": 1, "repeated": {"_count": 1}}, "Identical": {"_count": 1, "Potters": {"_count": 1}}, "Calls": {"_count": 1, "it": {"_count": 1}}, "Ripples": {"_count": 1, "of": {"_count": 1}}, "Dying": {"_count": 1, "": {"_count": 1}}, "Quicker": {"_count": 1, "and": {"_count": 1}}, "Invisible": {"_count": 1, "to": {"_count": 1}}, "KINGS": {"_count": 1, "CROSS": {"_count": 1}}, "Happiness": {"_count": 2, "seemed": {"_count": 1}, "would": {"_count": 1}}, "Kings": {"_count": 1, "Cross": {"_count": 1}}, "Trapped": {"_count": 1, "and": {"_count": 1}}, "somehow": {"_count": 1, "we": {"_count": 1}}, "Invincible": {"_count": 1, "masters": {"_count": 1}}, "Reality": {"_count": 1, "returned": {"_count": 1}}, "lay": {"_count": 1, "dead": {"_count": 1}}, "board": {"_count": 1, "a": {"_count": 1}}, "Various": {"_count": 1, "Death": {"_count": 1}}, "Examine": {"_count": 1, "him": {"_count": 1}}, "Branches": {"_count": 1, "caught": {"_count": 1}}, "BANE": {"_count": 1, "": {"_count": 1}}, "NOT": {"_count": 1, "MY": {"_count": 1}}, "screamed": {"_count": 1, "Voldemort": {"_count": 1}}, "Than": {"_count": 1, "I": {"_count": 1}}, "try": {"_count": 1, "": {"_count": 1}}, "Blank": {"_count": 1, "shock": {"_count": 1}}, "Painstakingly": {"_count": 1, "he": {"_count": 1}}, "ayue": {"_count": 1, "NINETEEN": {"_count": 1}}, "Albuss": {"_count": 1, "voice": {"_count": 1}}, "Indistinct": {"_count": 1, "figures": {"_count": 1}}, "Detached": {"_count": 1, "from": {"_count": 1}}, "Rose": {"_count": 1, "who": {"_count": 1}}, "Parked": {"_count": 1, "all": {"_count": 1}}, "Granddad": {"_count": 1, "Weasley": {"_count": 1}}, "Teddys": {"_count": 1, "back": {"_count": 1}}, "Teddy": {"_count": 1, "would": {"_count": 1}}}, "They": {"_count": 1504, "were": {"_count": 230, "the": {"_count": 4}, "whispering": {"_count": 2}, "bound": {"_count": 3}, "in": {"_count": 4}, "going": {"_count": 3}, "a": {"_count": 3}, "quiet": {"_count": 1}, "some": {"_count": 1}, "carried": {"_count": 1}, "all": {"_count": 19}, "cold": {"_count": 1}, "half": {"_count": 1}, "looking": {"_count": 2}, "standing": {"_count": 13}, "off": {"_count": 1}, "sure": {"_count": 1}, "cornered": {"_count": 1}, "passing": {"_count": 1}, "trapped": {"_count": 2}, "starving": {"_count": 1}, "by": {"_count": 1}, "up": {"_count": 1}, "over": {"_count": 2}, "falling": {"_count": 1}, "within": {"_count": 1}, "taking": {"_count": 2}, "once": {"_count": 1}, "completely": {"_count": 2}, "found": {"_count": 1}, "hampered": {"_count": 1}, "moving": {"_count": 2}, "wasting": {"_count": 1}, "meddlesome": {"_count": 1}, "almost": {"_count": 2}, "Muggles": {"_count": 2}, "watching": {"_count": 2}, "thundering": {"_count": 1}, "there": {"_count": 2}, "panting": {"_count": 1}, "both": {"_count": 4}, "among": {"_count": 1}, "making": {"_count": 1}, "at": {"_count": 6}, "now": {"_count": 5}, "halfway": {"_count": 4}, "walking": {"_count": 2}, "locked": {"_count": 1}, "forcing": {"_count": 1}, "leaving": {"_count": 1}, "still": {"_count": 4}, "emerging": {"_count": 1}, "gone": {"_count": 3}, "gliding": {"_count": 1}, "drawing": {"_count": 2}, "rewarded": {"_count": 1}, "soon": {"_count": 3}, "very": {"_count": 2}, "mouthing": {"_count": 1}, "giving": {"_count": 1}, "talking": {"_count": 3}, "shivering": {"_count": 1}, "probably": {"_count": 1}, "his": {"_count": 2}, "being": {"_count": 1}, "supposed": {"_count": 1}, "suddenly": {"_count": 1}, "deserted": {"_count": 1}, "here": {"_count": 1}, "definitely": {"_count": 1}, "wearing": {"_count": 1}, "faithful": {"_count": 1}, "not": {"_count": 4}, "free": {"_count": 1}, "merely": {"_count": 1}, "surrounded": {"_count": 1}, "coming": {"_count": 2}, "wide": {"_count": 1}, "heading": {"_count": 2}, "back": {"_count": 3}, "crammed": {"_count": 2}, "sinking": {"_count": 1}, "big": {"_count": 1}, "only": {"_count": 1}, "allowed": {"_count": 1}, "saved": {"_count": 1}, "lucky": {"_count": 1}, "silent": {"_count": 1}, "called": {"_count": 1}, "so": {"_count": 2}, "Aurors": {"_count": 1}, "squaring": {"_count": 1}, "to": {"_count": 3}, "rolling": {"_count": 1}, "holding": {"_count": 1}, "long": {"_count": 1}, "wonderful": {"_count": 1}, "able": {"_count": 1}, "descending": {"_count": 1}, "fused": {"_count": 1}, "just": {"_count": 3}, "rounding": {"_count": 1}, "joined": {"_count": 1}, "nearing": {"_count": 1}, "as": {"_count": 1}, "abusing": {"_count": 1}, "barely": {"_count": 2}, "getting": {"_count": 1}, "temporarily": {"_count": 1}, "mine": {"_count": 1}, "sitting": {"_count": 3}, "dressed": {"_count": 1}, "often": {"_count": 1}, "pleased": {"_count": 1}, "wedged": {"_count": 1}, "trying": {"_count": 1}, "spending": {"_count": 1}, "young": {"_count": 1}, "closer": {"_count": 1}, "hugging": {"_count": 1}, "extraordinarily": {"_count": 1}, "no": {"_count": 1}, "forced": {"_count": 1}, "deeper": {"_count": 1}, "realizing": {"_count": 1}, "truly": {"_count": 1}, "wincing": {"_count": 1}, "ready": {"_count": 1}, "close": {"_count": 1}, "fetching": {"_count": 1}, "neither": {"_count": 1}, "waiting": {"_count": 1}, "soft": {"_count": 1}, "hacking": {"_count": 1}}, "didnt": {"_count": 38, "think": {"_count": 1}, "stop": {"_count": 2}, "know": {"_count": 3}, "have": {"_count": 7}, "tell": {"_count": 1}, "meet": {"_count": 1}, "see": {"_count": 3}, "die": {"_count": 1}, "report": {"_count": 1}, "talk": {"_count": 1}, "seem": {"_count": 2}, "need": {"_count": 1}, "say": {"_count": 1}, "get": {"_count": 2}, "pay": {"_count": 1}, "care": {"_count": 1}, "even": {"_count": 1}, "take": {"_count": 2}, "fight": {"_count": 2}, "look": {"_count": 1}, "give": {"_count": 1}, "hear": {"_count": 1}, "fall": {"_count": 1}}, "ate": {"_count": 2, "in": {"_count": 1}, "stale": {"_count": 1}}, "werent": {"_count": 7, "": {"_count": 1}, "in": {"_count": 2}, "responsible": {"_count": 1}, "alone": {"_count": 1}, "thieving": {"_count": 1}, "the": {"_count": 1}}, "stuff": {"_count": 1, "peoples": {"_count": 1}}, "also": {"_count": 5, "carried": {"_count": 1}, "stole": {"_count": 1}, "had": {"_count": 1}, "skated": {"_count": 1}, "knew": {"_count": 1}}, "heard": {"_count": 22, "the": {"_count": 7}, "him": {"_count": 4}, "a": {"_count": 5}, "Percy": {"_count": 1}, "footsteps": {"_count": 1}, "snapping": {"_count": 1}, "urgent": {"_count": 1}, "banging": {"_count": 1}, "uproar": {"_count": 1}}, "stared": {"_count": 10, "at": {"_count": 8}, "as": {"_count": 1}, "avidly": {"_count": 1}}, "could": {"_count": 38, "hear": {"_count": 16}, "feel": {"_count": 1}, "easily": {"_count": 1}, "hardly": {"_count": 1}, "see": {"_count": 7}, "each": {"_count": 1}, "tell": {"_count": 2}, "just": {"_count": 2}, "be": {"_count": 1}, "not": {"_count": 4}, "have": {"_count": 1}, "still": {"_count": 1}}, "drove": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 137, "just": {"_count": 9}, "reached": {"_count": 15}, "a": {"_count": 4}, "to": {"_count": 3}, "almost": {"_count": 4}, "hardly": {"_count": 1}, "indeed": {"_count": 1}, "been": {"_count": 9}, "the": {"_count": 3}, "practical": {"_count": 1}, "never": {"_count": 7}, "won": {"_count": 1}, "tied": {"_count": 1}, "hoped": {"_count": 1}, "landed": {"_count": 1}, "asked": {"_count": 1}, "only": {"_count": 5}, "barely": {"_count": 5}, "brought": {"_count": 1}, "sent": {"_count": 1}, "hit": {"_count": 1}, "no": {"_count": 4}, "also": {"_count": 3}, "Transfiguration": {"_count": 1}, "lost": {"_count": 2}, "Potions": {"_count": 1}, "explained": {"_count": 1}, "arrived": {"_count": 4}, "walked": {"_count": 2}, "met": {"_count": 1}, "become": {"_count": 1}, "left": {"_count": 2}, "turned": {"_count": 2}, "got": {"_count": 1}, "expected": {"_count": 1}, "not": {"_count": 8}, "many": {"_count": 1}, "finally": {"_count": 1}, "their": {"_count": 2}, "wasted": {"_count": 1}, "however": {"_count": 1}, "run": {"_count": 1}, "stepped": {"_count": 1}, "drawn": {"_count": 1}, "lived": {"_count": 1}, "done": {"_count": 1}, "one": {"_count": 1}, "had": {"_count": 4}, "said": {"_count": 1}, "agreed": {"_count": 1}, "spent": {"_count": 1}, "tailed": {"_count": 1}, "concentrated": {"_count": 1}, "lingered": {"_count": 1}, "discovered": {"_count": 1}, "already": {"_count": 1}, "an": {"_count": 1}, "found": {"_count": 1}, "descended": {"_count": 1}, "traveled": {"_count": 1}}, "knocked": {"_count": 3, "again": {"_count": 1}, "urgently": {"_count": 1}, "and": {"_count": 1}}, "snapped": {"_count": 1, "me": {"_count": 1}}, "didn": {"_count": 1, "keep": {"_count": 1}}, "settled": {"_count": 2, "down": {"_count": 1}, "to": {"_count": 1}}, "say": {"_count": 13, "theres": {"_count": 1}, "he": {"_count": 5}, "you": {"_count": 1}, "hell": {"_count": 1}, "still": {"_count": 1}, "\u2018For": {"_count": 1}, "theyve": {"_count": 1}, "this": {"_count": 1}, "hes": {"_count": 1}}, "wanted": {"_count": 5, "Dumbledore": {"_count": 1}, "nesting": {"_count": 1}, "to": {"_count": 2}, "him": {"_count": 1}}, "passed": {"_count": 13, "book": {"_count": 1}, "different": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 2}, "midway": {"_count": 1}, "Mrs": {"_count": 1}, "row": {"_count": 1}, "Peeves": {"_count": 1}, "through": {"_count": 1}, "portrait": {"_count": 1}}, "stepped": {"_count": 6, "through": {"_count": 2}, "over": {"_count": 1}, "off": {"_count": 1}, "out": {"_count": 1}, "toward": {"_count": 1}}, "climbed": {"_count": 10, "in": {"_count": 2}, "more": {"_count": 1}, "two": {"_count": 1}, "the": {"_count": 3}, "to": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}}, "went": {"_count": 20, "rattling": {"_count": 1}, "off": {"_count": 1}, "to": {"_count": 5}, "down": {"_count": 3}, "as": {"_count": 1}, "for": {"_count": 2}, "out": {"_count": 2}, "up": {"_count": 3}, "downstairs": {"_count": 1}, "into": {"_count": 1}}, "stopped": {"_count": 4, "to": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 1}}, "bought": {"_count": 3, "Harrys": {"_count": 1}, "their": {"_count": 1}, "me": {"_count": 1}}, "reached": {"_count": 13, "Kings": {"_count": 3}, "the": {"_count": 7}, "Hagrids": {"_count": 2}, "their": {"_count": 1}}, "leaned": {"_count": 2, "out": {"_count": 2}}, "havent": {"_count": 6, "been": {"_count": 1}, "even": {"_count": 2}, "said": {"_count": 1}, "stopped": {"_count": 1}, "got": {"_count": 1}}, "crammed": {"_count": 1, "their": {"_count": 1}}, "walked": {"_count": 37, "up": {"_count": 3}, "straight": {"_count": 1}, "in": {"_count": 2}, "past": {"_count": 2}, "more": {"_count": 1}, "on": {"_count": 4}, "for": {"_count": 4}, "deeper": {"_count": 1}, "behind": {"_count": 1}, "carefully": {"_count": 1}, "out": {"_count": 3}, "down": {"_count": 3}, "forward": {"_count": 1}, "through": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 1}, "three": {"_count": 1}, "onto": {"_count": 1}, "between": {"_count": 1}, "along": {"_count": 1}, "a": {"_count": 2}, "as": {"_count": 1}}, "followed": {"_count": 11, "Professor": {"_count": 2}, "him": {"_count": 2}, "the": {"_count": 2}, "Sirius": {"_count": 1}, "Kingsley": {"_count": 1}, "through": {"_count": 1}, "Lupin": {"_count": 1}, "her": {"_count": 1}}, "crowded": {"_count": 1, "in": {"_count": 1}}, "seemed": {"_count": 14, "to": {"_count": 11}, "he": {"_count": 1}, "so": {"_count": 1}, "as": {"_count": 1}}, "all": {"_count": 44, "ducked": {"_count": 1}, "scrambled": {"_count": 2}, "drew": {"_count": 1}, "helped": {"_count": 1}, "looked": {"_count": 7}, "climbed": {"_count": 1}, "sat": {"_count": 1}, "retreated": {"_count": 1}, "think": {"_count": 2}, "began": {"_count": 1}, "stood": {"_count": 2}, "seem": {"_count": 1}, "Disapparated": {"_count": 1}, "swiveled": {"_count": 1}, "stepped": {"_count": 1}, "smiled": {"_count": 1}, "laughed": {"_count": 1}, "stowed": {"_count": 1}, "divided": {"_count": 1}, "drank": {"_count": 1}, "followed": {"_count": 1}, "pelted": {"_count": 1}, "fell": {"_count": 3}, "nodded": {"_count": 1}, "stared": {"_count": 1}, "look": {"_count": 1}, "saw": {"_count": 1}, "ate": {"_count": 1}, "did": {"_count": 1}, "took": {"_count": 1}, "shook": {"_count": 2}, "scattered": {"_count": 1}}, "finally": {"_count": 1, "managed": {"_count": 1}}, "both": {"_count": 13, "looked": {"_count": 3}, "jumped": {"_count": 1}, "burst": {"_count": 1}, "stood": {"_count": 3}, "turned": {"_count": 1}, "knew": {"_count": 1}, "murmured": {"_count": 1}, "ducked": {"_count": 1}, "moved": {"_count": 1}}, "pulled": {"_count": 6, "on": {"_count": 1}, "Fleurs": {"_count": 1}, "out": {"_count": 1}, "off": {"_count": 2}, "the": {"_count": 1}}, "hadnt": {"_count": 4, "even": {"_count": 1}, "gone": {"_count": 1}, "realized": {"_count": 2}}, "flitted": {"_count": 1, "along": {"_count": 1}}, "sped": {"_count": 4, "up": {"_count": 3}, "off": {"_count": 1}}, "edged": {"_count": 2, "along": {"_count": 1}, "toward": {"_count": 1}}, "fell": {"_count": 5, "backward": {"_count": 1}, "silent": {"_count": 1}, "with": {"_count": 1}, "like": {"_count": 1}, "where": {"_count": 1}}, "scrambled": {"_count": 1, "into": {"_count": 1}}, "left": {"_count": 12, "the": {"_count": 5}, "Zonkos": {"_count": 1}, "Mrs": {"_count": 1}, "half": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "many": {"_count": 1}, "Snape": {"_count": 1}}, "reminded": {"_count": 1, "Harry": {"_count": 1}}, "shrank": {"_count": 1, "into": {"_count": 1}}, "hurried": {"_count": 17, "out": {"_count": 1}, "through": {"_count": 2}, "up": {"_count": 4}, "down": {"_count": 1}, "toward": {"_count": 1}, "after": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 2}, "off": {"_count": 1}, "back": {"_count": 1}, "along": {"_count": 1}, "together": {"_count": 1}}, "oughta": {"_count": 1, "change": {"_count": 1}}, "dropped": {"_count": 4, "lower": {"_count": 1}, "back": {"_count": 1}, "their": {"_count": 1}, "Harry": {"_count": 1}}, "sat": {"_count": 11, "by": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 1}, "down": {"_count": 5}, "in": {"_count": 2}, "side": {"_count": 1}}, "frogmarched": {"_count": 1, "Percy": {"_count": 1}}, "couldnt": {"_count": 10, "see": {"_count": 1}, "afford": {"_count": 1}, "use": {"_count": 1}, "move": {"_count": 1}, "keep": {"_count": 2}, "hear": {"_count": 1}, "get": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}}, "just": {"_count": 3, "looked": {"_count": 1}, "slip": {"_count": 1}, "went": {"_count": 1}}, "tried": {"_count": 1, "retracing": {"_count": 1}}, "pushed": {"_count": 1, "the": {"_count": 1}}, "piled": {"_count": 1, "so": {"_count": 1}}, "spent": {"_count": 7, "most": {"_count": 4}, "the": {"_count": 3}}, "looked": {"_count": 32, "at": {"_count": 19}, "around": {"_count": 5}, "quite": {"_count": 1}, "all": {"_count": 1}, "like": {"_count": 2}, "strangely": {"_count": 1}, "green": {"_count": 1}, "up": {"_count": 1}, "reasonably": {"_count": 1}}, "can": {"_count": 10, "meet": {"_count": 1}, "carry": {"_count": 1}, "travel": {"_count": 1}, "shoot": {"_count": 1}, "help": {"_count": 2}, "leave": {"_count": 1}, "join": {"_count": 1}, "strengthen": {"_count": 1}, "die": {"_count": 1}}, "found": {"_count": 10, "Fang": {"_count": 1}, "themselves": {"_count": 1}, "Mr": {"_count": 2}, "an": {"_count": 1}, "seats": {"_count": 2}, "Fred": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "would": {"_count": 8, "have": {"_count": 3}, "then": {"_count": 1}, "not": {"_count": 2}, "much": {"_count": 1}, "suffer": {"_count": 1}}, "showed": {"_count": 2, "Harry": {"_count": 1}, "themselves": {"_count": 1}}, "slipped": {"_count": 4, "back": {"_count": 2}, "out": {"_count": 1}, "through": {"_count": 1}}, "marched": {"_count": 4, "off": {"_count": 1}, "in": {"_count": 2}, "Lockhart": {"_count": 1}}, "inched": {"_count": 1, "closer": {"_count": 1}}, "made": {"_count": 11, "their": {"_count": 8}, "regular": {"_count": 1}, "the": {"_count": 1}, "so": {"_count": 1}}, "must": {"_count": 8, "show": {"_count": 1}, "go": {"_count": 1}, "be": {"_count": 3}, "have": {"_count": 3}}, "turned": {"_count": 13, "to": {"_count": 1}, "a": {"_count": 4}, "into": {"_count": 1}, "their": {"_count": 1}, "right": {"_count": 2}, "left": {"_count": 1}, "and": {"_count": 1}, "just": {"_count": 1}, "out": {"_count": 1}}, "dont": {"_count": 13, "look": {"_count": 1}, "know": {"_count": 3}, "need": {"_count": 1}, "go": {"_count": 1}, "make": {"_count": 1}, "all": {"_count": 1}, "exist": {"_count": 1}, "have": {"_count": 1}, "though": {"_count": 1}, "want": {"_count": 1}, "use": {"_count": 1}}, "tugged": {"_count": 1, "and": {"_count": 1}}, "watched": {"_count": 11, "the": {"_count": 2}, "him": {"_count": 2}, "in": {"_count": 3}, "Lupin": {"_count": 1}, "Hagrid": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "her": {"_count": 1}}, "each": {"_count": 2, "seized": {"_count": 1}, "grabbed": {"_count": 1}}, "grabbed": {"_count": 2, "and": {"_count": 1}, "ink": {"_count": 1}}, "landed": {"_count": 3, "quickly": {"_count": 1}, "with": {"_count": 1}, "painfully": {"_count": 1}}, "nodded": {"_count": 2, "": {"_count": 1}, "clustering": {"_count": 1}}, "moved": {"_count": 14, "silently": {"_count": 1}, "through": {"_count": 1}, "as": {"_count": 1}, "quickly": {"_count": 1}, "around": {"_count": 1}, "from": {"_count": 1}, "aside": {"_count": 1}, "back": {"_count": 2}, "over": {"_count": 1}, "off": {"_count": 1}, "farther": {"_count": 1}, "in": {"_count": 1}, "Voldemorts": {"_count": 1}}, "loathed": {"_count": 1, "each": {"_count": 1}}, "died": {"_count": 2, "begging": {"_count": 1}, "in": {"_count": 1}}, "have": {"_count": 10, "enough": {"_count": 1}, "been": {"_count": 1}, "said": {"_count": 1}, "precisely": {"_count": 1}, "probably": {"_count": 1}, "allowed": {"_count": 1}, "the": {"_count": 2}, "however": {"_count": 1}, "added": {"_count": 1}}, "however": {"_count": 1, "didnt": {"_count": 1}}, "lets": {"_count": 1, "Dobby": {"_count": 1}}, "let": {"_count": 6, "Harry": {"_count": 1}, "the": {"_count": 1}, "themselves": {"_count": 1}, "go": {"_count": 1}, "me": {"_count": 1}, "you": {"_count": 1}}, "got": {"_count": 6, "out": {"_count": 1}, "in": {"_count": 1}, "all": {"_count": 1}, "cold": {"_count": 1}, "off": {"_count": 1}, "up": {"_count": 1}}, "love": {"_count": 1, "it": {"_count": 1}}, "took": {"_count": 6, "turns": {"_count": 1}, "off": {"_count": 1}, "this": {"_count": 1}, "him": {"_count": 1}, "my": {"_count": 2}}, "wouldnt": {"_count": 7, "mind": {"_count": 1}, "fire": {"_count": 1}, "look": {"_count": 1}, "use": {"_count": 1}, "care": {"_count": 1}, "hurt": {"_count": 1}, "give": {"_count": 1}}, "started": {"_count": 2, "to": {"_count": 1}, "up": {"_count": 1}}, "set": {"_count": 10, "off": {"_count": 9}, "up": {"_count": 1}}, "said": {"_count": 8, "goodbye": {"_count": 3}, "something": {"_count": 2}, "Percy": {"_count": 1}, "on": {"_count": 1}, "he": {"_count": 1}}, "know": {"_count": 4, "how": {"_count": 1}, "that": {"_count": 1}, "whispered": {"_count": 1}, "there": {"_count": 1}}, "only": {"_count": 4, "bother": {"_count": 1}, "stopped": {"_count": 1}, "like": {"_count": 2}}, "heaved": {"_count": 1, "their": {"_count": 1}}, "entered": {"_count": 3, "Snapes": {"_count": 1}, "the": {"_count": 2}}, "are": {"_count": 19, "in": {"_count": 1}, "your": {"_count": 1}, "stationed": {"_count": 1}, "now": {"_count": 1}, "insane": {"_count": 1}, "both": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 3}, "sort": {"_count": 1}, "young": {"_count": 1}, "corpses": {"_count": 1}, "deluded": {"_count": 1}, "unlikely": {"_count": 1}, "coming": {"_count": 1}, "rare": {"_count": 1}, "camping": {"_count": 1}}, "managed": {"_count": 4, "to": {"_count": 4}}, "shut": {"_count": 1, "out": {"_count": 1}}, "squirmed": {"_count": 1, "kicked": {"_count": 1}}, "finished": {"_count": 3, "lunch": {"_count": 1}, "their": {"_count": 2}}, "reported": {"_count": 2, "that": {"_count": 2}}, "approached": {"_count": 2, "it": {"_count": 1}, "slowly": {"_count": 1}}, "and": {"_count": 1, "everyone": {"_count": 1}}, "backed": {"_count": 1, "toward": {"_count": 1}}, "built": {"_count": 1, "this": {"_count": 1}}, "couldve": {"_count": 2, "had": {"_count": 1}, "made": {"_count": 1}}, "still": {"_count": 3, "needed": {"_count": 1}, "havent": {"_count": 1}, "seemed": {"_count": 1}}, "called": {"_count": 1, "Slytherin": {"_count": 1}}, "rose": {"_count": 1, "upward": {"_count": 1}}, "lurked": {"_count": 1, "in": {"_count": 1}}, "stood": {"_count": 10, "still": {"_count": 1}, "shivering": {"_count": 1}, "there": {"_count": 1}, "grouped": {"_count": 1}, "back": {"_count": 1}, "for": {"_count": 2}, "in": {"_count": 1}, "quite": {"_count": 1}, "up": {"_count": 1}}, "poked": {"_count": 1, "their": {"_count": 1}}, "saw": {"_count": 7, "at": {"_count": 1}, "him": {"_count": 2}, "Lupin": {"_count": 1}, "the": {"_count": 2}, "two": {"_count": 1}}, "will": {"_count": 11, "be": {"_count": 4}, "not": {"_count": 3}, "said": {"_count": 1}, "receive": {"_count": 1}, "certainly": {"_count": 1}, "torture": {"_count": 1}}, "gave": {"_count": 2, "me": {"_count": 2}}, "told": {"_count": 4, "me": {"_count": 3}, "him": {"_count": 1}}, "woke": {"_count": 1, "the": {"_count": 1}}, "wont": {"_count": 8, "like": {"_count": 1}, "want": {"_count": 1}, "said": {"_count": 1}, "print": {"_count": 1}, "be": {"_count": 2}, "find": {"_count": 1}, "accept": {"_count": 1}}, "might": {"_count": 9, "as": {"_count": 2}, "hear": {"_count": 1}, "already": {"_count": 1}, "not": {"_count": 3}, "be": {"_count": 1}, "just": {"_count": 1}}, "listened": {"_count": 1, "": {"_count": 1}}, "waited": {"_count": 6, "shivering": {"_count": 1}, "watching": {"_count": 1}, "until": {"_count": 1}, "listening": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "think": {"_count": 8, "up": {"_count": 1}, "theyve": {"_count": 1}, "Im": {"_count": 2}, "hell": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "youre": {"_count": 1}}, "believed": {"_count": 1, "that": {"_count": 1}}, "thought": {"_count": 2, "that": {"_count": 1}, "Id": {"_count": 1}}, "smashed": {"_count": 1, "their": {"_count": 1}}, "ran": {"_count": 7, "downstairs": {"_count": 1}, "as": {"_count": 1}, "quietly": {"_count": 1}, "down": {"_count": 2}, "behind": {"_count": 1}, "at": {"_count": 1}}, "hid": {"_count": 1, "themselves": {"_count": 1}}, "sent": {"_count": 2, "Lockhart": {"_count": 1}, "me": {"_count": 1}}, "examined": {"_count": 1, "every": {"_count": 1}}, "froze": {"_count": 1, "watching": {"_count": 1}}, "strode": {"_count": 2, "after": {"_count": 1}, "off": {"_count": 1}}, "played": {"_count": 1, "Exploding": {"_count": 1}}, "turn": {"_count": 2, "up": {"_count": 1}, "silver": {"_count": 1}}, "go": {"_count": 1, "and": {"_count": 1}}, "belonged": {"_count": 1, "as": {"_count": 1}}, "ad": {"_count": 1, "a": {"_count": 1}}, "headed": {"_count": 2, "down": {"_count": 1}, "up": {"_count": 1}}, "loaded": {"_count": 1, "the": {"_count": 1}}, "sell": {"_count": 1, "that": {"_count": 1}}, "illuminated": {"_count": 1, "his": {"_count": 1}}, "waved": {"_count": 1, "at": {"_count": 1}}, "exchanged": {"_count": 3, "a": {"_count": 3}}, "knew": {"_count": 9, "how": {"_count": 1}, "that": {"_count": 2}, "perfectly": {"_count": 2}, "where": {"_count": 1}, "Hermione": {"_count": 1}, "said": {"_count": 1}, "they": {"_count": 1}}, "suck": {"_count": 1, "the": {"_count": 1}}, "swilled": {"_count": 1, "the": {"_count": 1}}, "see": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "should": {"_count": 4, "fire": {"_count": 1}, "be": {"_count": 2}, "at": {"_count": 1}}, "reckon": {"_count": 2, "I": {"_count": 1}, "hell": {"_count": 1}}, "make": {"_count": 2, "a": {"_count": 1}, "them": {"_count": 1}}, "popped": {"_count": 1, "out": {"_count": 1}}, "huddled": {"_count": 1, "at": {"_count": 1}}, "planted": {"_count": 1, "the": {"_count": 1}}, "infest": {"_count": 1, "the": {"_count": 1}}, "joined": {"_count": 4, "each": {"_count": 1}, "the": {"_count": 3}}, "live": {"_count": 2, "over": {"_count": 1}, "down": {"_count": 1}}, "don": {"_count": 1, "care": {"_count": 1}}, "drank": {"_count": 1, "the": {"_count": 1}}, "call": {"_count": 1, "it": {"_count": 1}}, "paced": {"_count": 1, "the": {"_count": 1}}, "cant": {"_count": 12, "do": {"_count": 2}, "": {"_count": 2}, "kill": {"_count": 2}, "wait": {"_count": 2}, "all": {"_count": 1}, "have": {"_count": 1}, "keep": {"_count": 1}, "know": {"_count": 1}}, "was": {"_count": 2, "all": {"_count": 1}, "in": {"_count": 1}}, "scattered": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "simply": {"_count": 1, "beamed": {"_count": 1}}, "skulked": {"_count": 1, "in": {"_count": 1}}, "mustn": {"_count": 1, "find": {"_count": 1}}, "did": {"_count": 18, "it": {"_count": 3}, "not": {"_count": 8}, "so": {"_count": 2}, "indeed": {"_count": 2}, "said": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "covered": {"_count": 1, "the": {"_count": 1}}, "became": {"_count": 1, "Animagi": {"_count": 1}}, "sneaked": {"_count": 1, "out": {"_count": 1}}, "transformed": {"_count": 1, "": {"_count": 1}}, "feel": {"_count": 1, "their": {"_count": 1}}, "pelted": {"_count": 1, "toward": {"_count": 1}}, "formed": {"_count": 1, "a": {"_count": 1}}, "obviously": {"_count": 3, "thought": {"_count": 2}, "cant": {"_count": 1}}, "need": {"_count": 2, "treatment": {"_count": 1}, "squeezing": {"_count": 1}}, "tore": {"_count": 2, "across": {"_count": 1}, "into": {"_count": 1}}, "crept": {"_count": 8, "through": {"_count": 2}, "along": {"_count": 1}, "across": {"_count": 1}, "forward": {"_count": 2}, "out": {"_count": 1}, "off": {"_count": 1}}, "flattened": {"_count": 2, "themselves": {"_count": 1}, "Peru": {"_count": 1}}, "rode": {"_count": 1, "their": {"_count": 1}}, "theyve": {"_count": 1, "tried": {"_count": 1}}, "run": {"_count": 1, "off": {"_count": 1}}, "glanced": {"_count": 2, "around": {"_count": 1}, "back": {"_count": 1}}, "11": {"_count": 1, "be": {"_count": 1}}, "saved": {"_count": 1, "my": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "trudged": {"_count": 4, "down": {"_count": 2}, "up": {"_count": 2}}, "spread": {"_count": 2, "out": {"_count": 1}, "their": {"_count": 1}}, "clambered": {"_count": 2, "upward": {"_count": 1}, "over": {"_count": 1}}, "worked": {"_count": 1, "as": {"_count": 1}}, "denied": {"_count": 1, "theyd": {"_count": 1}}, "want": {"_count": 8, "compensation": {"_count": 1}, "to": {"_count": 3}, "wizards": {"_count": 1}, "me": {"_count": 1}, "loads": {"_count": 1}, "Arithmancy": {"_count": 1}}, "then": {"_count": 2, "hopped": {"_count": 1}, "spent": {"_count": 1}}, "appeared": {"_count": 2, "to": {"_count": 2}}, "shared": {"_count": 1, "a": {"_count": 1}}, "hatched": {"_count": 1, "a": {"_count": 1}}, "come": {"_count": 2, "out": {"_count": 1}, "in": {"_count": 1}}, "get": {"_count": 2, "holidays": {"_count": 1}, "taken": {"_count": 1}}, "caught": {"_count": 2, "it": {"_count": 1}, "hold": {"_count": 1}}, "returned": {"_count": 6, "the": {"_count": 1}, "to": {"_count": 3}, "": {"_count": 1}, "quite": {"_count": 1}}, "continued": {"_count": 2, "to": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "like": {"_count": 3, "being": {"_count": 1}, "sparkly": {"_count": 1}, "punishment": {"_count": 1}}, "filed": {"_count": 2, "down": {"_count": 1}, "out": {"_count": 1}}, "scanned": {"_count": 1, "the": {"_count": 1}}, "look": {"_count": 2, "a": {"_count": 1}, "like": {"_count": 1}}, "organized": {"_count": 1, "the": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "consequently": {"_count": 1, "spent": {"_count": 1}}, "placed": {"_count": 1, "them": {"_count": 1}}, "now": {"_count": 2, "read": {"_count": 1}, "joined": {"_count": 1}}, "kept": {"_count": 1, "practicing": {"_count": 1}}, "isnt": {"_count": 1, "my": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "hide": {"_count": 1, "out": {"_count": 1}}, "prefer": {"_count": 1, "the": {"_count": 1}}, "hammered": {"_count": 1, "on": {"_count": 1}}, "leered": {"_count": 1, "at": {"_count": 1}}, "squeezed": {"_count": 1, "into": {"_count": 1}}, "lose": {"_count": 1, "the": {"_count": 1}}, "used": {"_count": 4, "Hedwig": {"_count": 1}, "the": {"_count": 1}, "ter": {"_count": 1}, "to": {"_count": 1}}, "wreck": {"_count": 1, "houses": {"_count": 1}}, "hastily": {"_count": 1, "shoved": {"_count": 1}}, "trooped": {"_count": 2, "out": {"_count": 1}, "back": {"_count": 1}}, "do": {"_count": 7, "not": {"_count": 3}, "said": {"_count": 1}, "do": {"_count": 1}, "it": {"_count": 1}, "more": {"_count": 1}}, "seem": {"_count": 1, "to": {"_count": 1}}, "who": {"_count": 2, "knew": {"_count": 1}, "had": {"_count": 1}}, "bowed": {"_count": 1, "clumsily": {"_count": 1}}, "glided": {"_count": 2, "away": {"_count": 2}}, "came": {"_count": 2, "to": {"_count": 1}, "here": {"_count": 1}}, "sensed": {"_count": 2, "one": {"_count": 2}}, "shot": {"_count": 2, "Stunning": {"_count": 1}, "through": {"_count": 1}}, "murmured": {"_count": 2, "his": {"_count": 1}, "words": {"_count": 1}}, "broke": {"_count": 1, "off": {"_count": 1}}, "guard": {"_count": 2, "the": {"_count": 2}}, "soared": {"_count": 1, "right": {"_count": 1}}, "altered": {"_count": 1, "their": {"_count": 1}}, "keep": {"_count": 1, "slipping": {"_count": 1}}, "struggled": {"_count": 1, "off": {"_count": 1}}, "shuffled": {"_count": 1, "out": {"_count": 1}}, "lit": {"_count": 1, "first": {"_count": 1}}, "descended": {"_count": 2, "all": {"_count": 1}, "into": {"_count": 1}}, "collected": {"_count": 2, "their": {"_count": 1}, "balls": {"_count": 1}}, "may": {"_count": 1, "not": {"_count": 1}}, "fitted": {"_count": 1, "him": {"_count": 1}}, "flew": {"_count": 2, "back": {"_count": 1}, "straight": {"_count": 1}}, "met": {"_count": 2, "at": {"_count": 1}, "some": {"_count": 1}}, "really": {"_count": 1, "know": {"_count": 1}}, "squelched": {"_count": 1, "through": {"_count": 1}}, "argued": {"_count": 1, "all": {"_count": 1}}, "received": {"_count": 2, "a": {"_count": 1}, "their": {"_count": 1}}, "too": {"_count": 1, "were": {"_count": 1}}, "beamed": {"_count": 2, "at": {"_count": 1}, "up": {"_count": 1}}, "carried": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "mostly": {"_count": 1, "sat": {"_count": 1}}, "glared": {"_count": 4, "at": {"_count": 4}}, "faced": {"_count": 1, "each": {"_count": 1}}, "sounded": {"_count": 1, "curious": {"_count": 1}}, "wandered": {"_count": 1, "toward": {"_count": 1}}, "multiply": {"_count": 1, "by": {"_count": 1}}, "ask": {"_count": 1, "for": {"_count": 1}}, "exploded": {"_count": 1, "at": {"_count": 1}}, "never": {"_count": 1, "exactly": {"_count": 1}}, "attacked": {"_count": 1, "him": {"_count": 1}}, "stretched": {"_count": 1, "and": {"_count": 1}}, "traipsed": {"_count": 1, "back": {"_count": 1}}, "brought": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "already": {"_count": 1, "have": {"_count": 1}}, "tossed": {"_count": 1, "their": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "glimmered": {"_count": 1, "dully": {"_count": 1}}, "mightve": {"_count": 1, "run": {"_count": 1}}, "streaked": {"_count": 1, "after": {"_count": 1}}, "hate": {"_count": 1, "it": {"_count": 1}}, "proceeded": {"_count": 1, "up": {"_count": 1}}, "shook": {"_count": 4, "hands": {"_count": 3}, "their": {"_count": 1}}, "scurried": {"_count": 1, "along": {"_count": 1}}, "peered": {"_count": 1, "into": {"_count": 1}}, "put": {"_count": 2, "their": {"_count": 1}, "up": {"_count": 1}}, "even": {"_count": 1, "pressed": {"_count": 1}}, "float": {"_count": 1, "in": {"_count": 1}}, "avoided": {"_count": 1, "Hagrids": {"_count": 1}}, "chose": {"_count": 1, "the": {"_count": 1}}, "probably": {"_count": 2, "want": {"_count": 1}, "transfigured": {"_count": 1}}, "won": {"_count": 1, "grow": {"_count": 1}}, "bundled": {"_count": 1, "their": {"_count": 1}}, "rounded": {"_count": 1, "a": {"_count": 1}}, "rely": {"_count": 1, "on": {"_count": 1}}, "overwork": {"_count": 1, "you": {"_count": 1}}, "sometimes": {"_count": 1, "kill": {"_count": 1}}, "deposited": {"_count": 1, "Hagrid": {"_count": 1}}, "laid": {"_count": 1, "him": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "visited": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "rubbed": {"_count": 1, "along": {"_count": 1}}, "shouldnt": {"_count": 3, "be": {"_count": 2}, "have": {"_count": 1}}, "recognized": {"_count": 1, "you": {"_count": 1}}, "recounted": {"_count": 1, "the": {"_count": 1}}, "vanished": {"_count": 1, "together": {"_count": 1}}, "half": {"_count": 1, "walked": {"_count": 1}}, "relapsed": {"_count": 1, "into": {"_count": 1}}, "raced": {"_count": 1, "up": {"_count": 1}}, "combed": {"_count": 1, "every": {"_count": 1}}, "explained": {"_count": 2, "what": {"_count": 2}}, "burned": {"_count": 1, "down": {"_count": 1}}, "whisper": {"_count": 1, "": {"_count": 1}}, "darent": {"_count": 1, "confide": {"_count": 1}}, "nearly": {"_count": 2, "saw": {"_count": 1}, "got": {"_count": 1}}, "gulped": {"_count": 1, "down": {"_count": 1}}, "Pose": {"_count": 1, "to": {"_count": 1}}, "spun": {"_count": 1, "for": {"_count": 1}}, "drew": {"_count": 1, "their": {"_count": 1}}, "suffered": {"_count": 1, "no": {"_count": 1}}, "gazed": {"_count": 2, "at": {"_count": 2}}, "packed": {"_count": 2, "up": {"_count": 2}}, "relished": {"_count": 1, "any": {"_count": 1}}, "waded": {"_count": 1, "deeper": {"_count": 1}}, "certainly": {"_count": 1, "did": {"_count": 1}}, "Disapparated": {"_count": 1, "pulling": {"_count": 1}}, "jumped": {"_count": 1, "down": {"_count": 1}}, "remained": {"_count": 1, "shut": {"_count": 1}}, "needed": {"_count": 1, "Griphook": {"_count": 1}}, "consider": {"_count": 1, "our": {"_count": 1}}, "hurtled": {"_count": 1, "past": {"_count": 1}}, "zoomed": {"_count": 1, "through": {"_count": 1}}, "advanced": {"_count": 1, "around": {"_count": 1}}, "directed": {"_count": 1, "their": {"_count": 1}}, "agreed": {"_count": 1, "Hermione": {"_count": 1}}, "changed": {"_count": 1, "and": {"_count": 1}}, "paused": {"_count": 1, "in": {"_count": 1}}, "forced": {"_count": 1, "their": {"_count": 1}}, "shone": {"_count": 1, "white": {"_count": 1}}, "sealed": {"_count": 1, "off": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "parted": {"_count": 1, "at": {"_count": 1}}, "crawled": {"_count": 1, "back": {"_count": 1}}, "sneak": {"_count": 1, "out": {"_count": 1}}, "resembled": {"_count": 1, "most": {"_count": 1}}, "smiled": {"_count": 1, "at": {"_count": 1}}}, "the": {"_count": 47779, "last": {"_count": 268, "people": {"_count": 1}, "report": {"_count": 1}, "day": {"_count": 4}, "backpack": {"_count": 1}, "and": {"_count": 3}, "of": {"_count": 21}, "word": {"_count": 6}, "minute": {"_count": 2}, "member": {"_count": 1}, "thing": {"_count": 13}, "person": {"_count": 3}, "five": {"_count": 1}, "tree": {"_count": 1}, "hour": {"_count": 2}, "week": {"_count": 5}, "": {"_count": 3}, "Quidditch": {"_count": 3}, "chamber": {"_count": 1}, "six": {"_count": 2}, "deserted": {"_count": 1}, "place": {"_count": 1}, "Herbology": {"_count": 1}, "time": {"_count": 36}, "present": {"_count": 1}, "one": {"_count": 9}, "pair": {"_count": 1}, "victim": {"_count": 1}, "remaining": {"_count": 3}, "few": {"_count": 24}, "two": {"_count": 8}, "year": {"_count": 2}, "three": {"_count": 8}, "to": {"_count": 5}, "morsels": {"_count": 1}, "quarter": {"_count": 1}, "chance": {"_count": 1}, "answer": {"_count": 1}, "moments": {"_count": 1}, "weekend": {"_count": 2}, "Id": {"_count": 1}, "ter": {"_count": 1}, "match": {"_count": 4}, "bit": {"_count": 3}, "moment": {"_count": 5}, "second": {"_count": 2}, "Potter": {"_count": 1}, "freckle": {"_count": 1}, "vestiges": {"_count": 2}, "spell": {"_count": 1}, "parcel": {"_count": 1}, "crumbs": {"_count": 1}, "spiral": {"_count": 1}, "bottle": {"_count": 1}, "spider": {"_count": 1}, "line": {"_count": 1}, "Care": {"_count": 1}, "lesson": {"_count": 1}, "century": {"_count": 1}, "half": {"_count": 2}, "World": {"_count": 1}, "envelope": {"_count": 1}, "hedge": {"_count": 1}, "task": {"_count": 2}, "four": {"_count": 2}, "drifted": {"_count": 1}, "what": {"_count": 1}, "Black": {"_count": 1}, "piece": {"_count": 1}, "ten": {"_count": 2}, "twelve": {"_count": 2}, "candle": {"_count": 1}, "sunshine": {"_count": 1}, "pass": {"_count": 1}, "burst": {"_count": 1}, "staircase": {"_count": 1}, "couple": {"_count": 3}, "giants": {"_count": 1}, "D": {"_count": 2}, "meeting": {"_count": 1}, "in": {"_count": 1}, "cold": {"_count": 1}, "student": {"_count": 1}, "he": {"_count": 1}, "silvery": {"_count": 1}, "evening": {"_count": 1}, "echoing": {"_count": 1}, "dimly": {"_count": 1}, "marble": {"_count": 1}, "night": {"_count": 1}, "degree": {"_count": 1}, "Ollivander": {"_count": 1}, "drops": {"_count": 1}, "classroom": {"_count": 1}, "weeks": {"_count": 1}, "that": {"_count": 2}, "memory": {"_count": 1}, "count": {"_count": 1}, "flame": {"_count": 1}, "back": {"_count": 1}, "twentyfour": {"_count": 1}, "issue": {"_count": 1}, "I": {"_count": 1}, "Horcrux": {"_count": 1}, "stragglers": {"_count": 1}, "secret": {"_count": 1}}, "director": {"_count": 1, "of": {"_count": 1}}, "usual": {"_count": 43, "amount": {"_count": 1}, "morning": {"_count": 2}, "live": {"_count": 1}, "sleepy": {"_count": 1}, "way": {"_count": 1}, "time": {"_count": 1}, "display": {"_count": 1}, "path": {"_count": 1}, "detention": {"_count": 1}, "magnificent": {"_count": 1}, "curses": {"_count": 1}, "sickly": {"_count": 1}, "said": {"_count": 1}, "scuffle": {"_count": 1}, "twelve": {"_count": 2}, "mass": {"_count": 1}, "pangs": {"_count": 1}, "decorations": {"_count": 1}, "reminder": {"_count": 1}, "racket": {"_count": 1}, "startofterm": {"_count": 1}, "rubbish": {"_count": 1}, "greenandsilver": {"_count": 1}, "gorillas": {"_count": 1}, "twos": {"_count": 1}, "handknitted": {"_count": 1}, "simple": {"_count": 1}, "distant": {"_count": 1}, "slithering": {"_count": 1}, "lastminute": {"_count": 1}, "deafening": {"_count": 1}, "excitable": {"_count": 1}, "commentators": {"_count": 1}, "build": {"_count": 1}, "teachers": {"_count": 1}, "sensation": {"_count": 1}, "features": {"_count": 1}, "loud": {"_count": 1}, "sonorous": {"_count": 1}, "brief": {"_count": 1}, "protective": {"_count": 1}}, "neighbors": {"_count": 10, "": {"_count": 2}, "would": {"_count": 3}, "simply": {"_count": 1}, "with": {"_count": 1}, "who": {"_count": 1}, "will": {"_count": 1}, "dont": {"_count": 1}}, "Potters": {"_count": 25, "": {"_count": 5}, "arrived": {"_count": 1}, "had": {"_count": 2}, "away": {"_count": 1}, "were": {"_count": 1}, "son": {"_count": 1}, "knew": {"_count": 1}, "SecretKeeper": {"_count": 4}, "death": {"_count": 1}, "friends": {"_count": 1}, "have": {"_count": 1}, "on": {"_count": 1}, "Secret": {"_count": 1}, "wedding": {"_count": 2}, "who": {"_count": 1}, "and": {"_count": 1}}, "street": {"_count": 63, "": {"_count": 19}, "that": {"_count": 1}, "did": {"_count": 1}, "toward": {"_count": 2}, "screaming": {"_count": 1}, "for": {"_count": 1}, "seemed": {"_count": 1}, "the": {"_count": 3}, "trying": {"_count": 1}, "looking": {"_count": 1}, "would": {"_count": 1}, "lamps": {"_count": 1}, "right": {"_count": 1}, "appeared": {"_count": 1}, "apart": {"_count": 1}, "to": {"_count": 2}, "heads": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "lamp": {"_count": 1}, "below": {"_count": 2}, "then": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 5}, "still": {"_count": 1}, "outside": {"_count": 2}, "where": {"_count": 1}, "in": {"_count": 1}, "alone": {"_count": 1}, "Malfoy": {"_count": 1}, "he": {"_count": 1}, "while": {"_count": 1}, "their": {"_count": 1}, "from": {"_count": 1}, "against": {"_count": 1}}, "dull": {"_count": 6, "gray": {"_count": 1}, "light": {"_count": 1}, "scraping": {"_count": 1}, "clunk": {"_count": 1}, "postermuffled": {"_count": 1}, "thunk": {"_count": 1}}, "cloudy": {"_count": 5, "sky": {"_count": 2}, "night": {"_count": 2}, "vapor": {"_count": 1}}, "country": {"_count": 30, "": {"_count": 9}, "were": {"_count": 1}, "it": {"_count": 1}, "anyone": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}, "just": {"_count": 1}, "for": {"_count": 1}, "where": {"_count": 1}, "This": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}, "I": {"_count": 2}, "if": {"_count": 2}, "right": {"_count": 1}, "braving": {"_count": 1}, "hours": {"_count": 1}, "had": {"_count": 1}}, "window": {"_count": 237, "": {"_count": 63}, "in": {"_count": 6}, "a": {"_count": 1}, "and": {"_count": 35}, "but": {"_count": 3}, "to": {"_count": 8}, "where": {"_count": 3}, "for": {"_count": 1}, "pretending": {"_count": 1}, "again": {"_count": 4}, "was": {"_count": 7}, "all": {"_count": 1}, "shouting": {"_count": 1}, "as": {"_count": 7}, "into": {"_count": 4}, "the": {"_count": 1}, "Traffic": {"_count": 1}, "showering": {"_count": 1}, "too": {"_count": 1}, "jerked": {"_count": 1}, "next": {"_count": 2}, "latch": {"_count": 1}, "soared": {"_count": 1}, "feeling": {"_count": 1}, "of": {"_count": 4}, "became": {"_count": 2}, "they": {"_count": 2}, "at": {"_count": 9}, "ledge": {"_count": 4}, "is": {"_count": 1}, "Hermione": {"_count": 1}, "frame": {"_count": 1}, "stretched": {"_count": 1}, "shut": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 2}, "drown": {"_count": 1}, "watching": {"_count": 1}, "through": {"_count": 1}, "played": {"_count": 1}, "open": {"_count": 1}, "Hedwig": {"_count": 1}, "he": {"_count": 4}, "see": {"_count": 1}, "wagging": {"_count": 1}, "flashed": {"_count": 1}, "looked": {"_count": 1}, "with": {"_count": 2}, "which": {"_count": 1}, "just": {"_count": 2}, "away": {"_count": 1}, "now": {"_count": 1}, "beside": {"_count": 3}, "I": {"_count": 1}, "behind": {"_count": 3}, "jump": {"_count": 1}, "displays": {"_count": 1}, "opposite": {"_count": 1}, "staring": {"_count": 1}, "headed": {"_count": 1}, "then": {"_count": 1}, "looking": {"_count": 2}, "thought": {"_count": 1}, "sparkled": {"_count": 1}, "an": {"_count": 1}, "went": {"_count": 1}, "instead": {"_count": 1}, "his": {"_count": 2}, "her": {"_count": 1}, "waiting": {"_count": 1}, "Ginny": {"_count": 1}, "on": {"_count": 1}, "turned": {"_count": 1}, "every": {"_count": 1}, "ignoring": {"_count": 1}, "bless": {"_count": 1}, "above": {"_count": 1}, "saw": {"_count": 1}}, "cheek": {"_count": 11, "and": {"_count": 3}, "who": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 3}, "pulled": {"_count": 1}, "sniffed": {"_count": 1}, "every": {"_count": 1}}, "walls": {"_count": 121, "": {"_count": 23}, "and": {"_count": 21}, "of": {"_count": 7}, "bundles": {"_count": 1}, "keeping": {"_count": 1}, "as": {"_count": 2}, "plants": {"_count": 1}, "even": {"_count": 1}, "an": {"_count": 1}, "upended": {"_count": 1}, "by": {"_count": 1}, "from": {"_count": 1}, "Harry": {"_count": 1}, "were": {"_count": 6}, "she": {"_count": 1}, "leaving": {"_count": 2}, "another": {"_count": 1}, "again": {"_count": 1}, "to": {"_count": 1}, "there": {"_count": 1}, "each": {"_count": 2}, "had": {"_count": 2}, "behind": {"_count": 1}, "no": {"_count": 1}, "stood": {"_count": 1}, "began": {"_count": 3}, "casting": {"_count": 1}, "one": {"_count": 2}, "on": {"_count": 1}, "beside": {"_count": 1}, "with": {"_count": 3}, "was": {"_count": 2}, "though": {"_count": 1}, "but": {"_count": 2}, "in": {"_count": 1}, "stopped": {"_count": 1}, "where": {"_count": 1}, "wiped": {"_count": 1}, "many": {"_count": 1}, "made": {"_count": 1}, "seemed": {"_count": 1}, "around": {"_count": 1}, "followed": {"_count": 1}, "silverygray": {"_count": 1}, "which": {"_count": 2}, "the": {"_count": 2}, "for": {"_count": 1}, "upstairs": {"_count": 1}, "Dumbledores": {"_count": 1}, "scanning": {"_count": 1}, "themselves": {"_count": 1}, "they": {"_count": 1}, "trembled": {"_count": 1}, "watching": {"_count": 1}, "drew": {"_count": 1}}, "house": {"_count": 138, "": {"_count": 39}, "too": {"_count": 1}, "in": {"_count": 4}, "said": {"_count": 1}, "before": {"_count": 1}, "every": {"_count": 2}, "wandering": {"_count": 1}, "Petunia": {"_count": 1}, "rolled": {"_count": 1}, "boy": {"_count": 1}, "and": {"_count": 11}, "shouting": {"_count": 1}, "behind": {"_count": 1}, "from": {"_count": 2}, "has": {"_count": 1}, "on": {"_count": 3}, "again": {"_count": 4}, "until": {"_count": 2}, "I": {"_count": 2}, "with": {"_count": 6}, "to": {"_count": 1}, "where": {"_count": 2}, "as": {"_count": 2}, "each": {"_count": 1}, "accompanied": {"_count": 1}, "but": {"_count": 2}, "for": {"_count": 2}, "or": {"_count": 1}, "of": {"_count": 4}, "once": {"_count": 1}, "now": {"_count": 1}, "which": {"_count": 1}, "several": {"_count": 1}, "after": {"_count": 3}, "full": {"_count": 1}, "was": {"_count": 4}, "calling": {"_count": 1}, "if": {"_count": 1}, "oozing": {"_count": 1}, "notice": {"_count": 1}, "elf": {"_count": 1}, "he": {"_count": 2}, "alone": {"_count": 1}, "it": {"_count": 1}, "is": {"_count": 1}, "you": {"_count": 1}, "pulling": {"_count": 1}, "stood": {"_count": 1}, "Hermione": {"_count": 1}, "Mrs": {"_count": 1}, "by": {"_count": 1}, "since": {"_count": 1}, "though": {"_count": 1}, "all": {"_count": 1}, "that": {"_count": 1}, "there": {"_count": 1}, "when": {"_count": 1}, "Alone": {"_count": 1}, "Fleur": {"_count": 1}, "demolished": {"_count": 1}}, "corner": {"_count": 145, "of": {"_count": 42}, "and": {"_count": 11}, "the": {"_count": 2}, "he": {"_count": 1}, "at": {"_count": 2}, "was": {"_count": 1}, "": {"_count": 26}, "stood": {"_count": 2}, "when": {"_count": 2}, "they": {"_count": 3}, "ahead": {"_count": 1}, "crouched": {"_count": 1}, "where": {"_count": 7}, "chomping": {"_count": 1}, "Harry": {"_count": 1}, "prodding": {"_count": 1}, "however": {"_count": 1}, "she": {"_count": 2}, "while": {"_count": 1}, "on": {"_count": 1}, "with": {"_count": 1}, "before": {"_count": 1}, "behind": {"_count": 2}, "opened": {"_count": 2}, "into": {"_count": 4}, "shop": {"_count": 1}, "which": {"_count": 2}, "coughing": {"_count": 1}, "toward": {"_count": 2}, "making": {"_count": 1}, "clanged": {"_count": 1}, "opposite": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}, "beside": {"_count": 2}, "Malfoy": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 2}, "her": {"_count": 1}, "hunchbacked": {"_count": 1}, "apparently": {"_count": 1}, "his": {"_count": 1}, "again": {"_count": 1}, "gliding": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}, "Percy": {"_count": 1}}, "first": {"_count": 428, "sign": {"_count": 1}, "thing": {"_count": 8}, "noise": {"_count": 1}, "question": {"_count": 4}, "rule": {"_count": 1}, "time": {"_count": 134}, "": {"_count": 11}, "day": {"_count": 6}, "line": {"_count": 1}, "six": {"_count": 1}, "twin": {"_count": 1}, "to": {"_count": 11}, "boats": {"_count": 1}, "years": {"_count": 19}, "new": {"_count": 1}, "morning": {"_count": 1}, "Potions": {"_count": 1}, "spell": {"_count": 1}, "one": {"_count": 7}, "really": {"_count": 1}, "floor": {"_count": 9}, "victims": {"_count": 1}, "place": {"_count": 32}, "night": {"_count": 4}, "set": {"_count": 1}, "note": {"_count": 1}, "couple": {"_count": 3}, "Quidditch": {"_count": 4}, "glass": {"_count": 1}, "page": {"_count": 3}, "person": {"_count": 6}, "attack": {"_count": 1}, "of": {"_count": 14}, "unexpected": {"_count": 1}, "week": {"_count": 5}, "name": {"_count": 1}, "shock": {"_count": 1}, "stage": {"_count": 1}, "flash": {"_count": 1}, "on": {"_count": 2}, "into": {"_count": 1}, "goal": {"_count": 1}, "Saturday": {"_count": 1}, "true": {"_count": 1}, "voice": {"_count": 1}, "tent": {"_count": 1}, "and": {"_count": 8}, "course": {"_count": 1}, "task": {"_count": 22}, "challenge": {"_count": 1}, "is": {"_count": 1}, "tasks": {"_count": 1}, "smile": {"_count": 1}, "bit": {"_count": 1}, "aid": {"_count": 1}, "judge": {"_count": 1}, "year": {"_count": 2}, "few": {"_count": 2}, "stars": {"_count": 1}, "step": {"_count": 2}, "key": {"_count": 1}, "item": {"_count": 1}, "owl": {"_count": 2}, "signal": {"_count": 1}, "landing": {"_count": 4}, "dementor": {"_count": 1}, "sting": {"_count": 1}, "Hogsmeade": {"_count": 1}, "ten": {"_count": 1}, "lesson": {"_count": 1}, "message": {"_count": 1}, "fifteen": {"_count": 1}, "training": {"_count": 1}, "in": {"_count": 1}, "weekend": {"_count": 1}, "meeting": {"_count": 3}, "half": {"_count": 2}, "test": {"_count": 2}, "horse": {"_count": 1}, "volume": {"_count": 2}, "opportunity": {"_count": 3}, "ones": {"_count": 1}, "Supreme": {"_count": 1}, "trees": {"_count": 1}, "chance": {"_count": 2}, "room": {"_count": 1}, "tier": {"_count": 1}, "part": {"_count": 1}, "cough": {"_count": 1}, "making": {"_count": 1}, "I": {"_count": 1}, "hurdle": {"_count": 1}, "five": {"_count": 1}, "attempt": {"_count": 1}, "door": {"_count": 1}, "nor": {"_count": 1}, "unlocked": {"_count": 1}, "Death": {"_count": 2}, "knock": {"_count": 1}, "two": {"_count": 1}, "clear": {"_count": 1}, "bottle": {"_count": 1}, "sack": {"_count": 1}, "occasion": {"_count": 1}, "human": {"_count": 1}, "sheet": {"_count": 1}, "locket": {"_count": 1}, "phase": {"_count": 1}, "Ministry": {"_count": 1}, "man": {"_count": 2}, "Slytherin": {"_count": 1}, "Golden": {"_count": 1}, "brother": {"_count": 1}, "Hallow": {"_count": 1}, "words": {"_count": 1}, "customers": {"_count": 1}, "telltale": {"_count": 1}, "cave": {"_count": 1}, "student": {"_count": 1}}, "light": {"_count": 82, "": {"_count": 8}, "the": {"_count": 2}, "and": {"_count": 4}, "of": {"_count": 18}, "dance": {"_count": 1}, "cast": {"_count": 3}, "as": {"_count": 2}, "from": {"_count": 12}, "stumbling": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 1}, "galloping": {"_count": 1}, "they": {"_count": 1}, "fixture": {"_count": 1}, "flooding": {"_count": 3}, "streaming": {"_count": 1}, "pouring": {"_count": 1}, "spun": {"_count": 1}, "beads": {"_count": 1}, "was": {"_count": 3}, "came": {"_count": 1}, "in": {"_count": 2}, "issuing": {"_count": 1}, "fell": {"_count": 2}, "examining": {"_count": 1}, "staring": {"_count": 1}, "played": {"_count": 1}, "I": {"_count": 1}, "spilling": {"_count": 1}, "became": {"_count": 1}, "stepped": {"_count": 1}, "went": {"_count": 1}, "forcing": {"_count": 1}, "looking": {"_count": 1}}, "cat": {"_count": 24, "": {"_count": 6}, "in": {"_count": 1}, "out": {"_count": 2}, "on": {"_count": 1}, "moved": {"_count": 1}, "had": {"_count": 2}, "which": {"_count": 1}, "seemed": {"_count": 1}, "watching": {"_count": 1}, "was": {"_count": 2}, "leap": {"_count": 1}, "too": {"_count": 1}, "flap": {"_count": 1}, "litter": {"_count": 2}, "and": {"_count": 1}}, "road": {"_count": 28, "he": {"_count": 3}, "to": {"_count": 4}, "hurried": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 6}, "and": {"_count": 2}, "through": {"_count": 1}, "beyond": {"_count": 1}, "sagging": {"_count": 1}, "outside": {"_count": 1}, "into": {"_count": 1}, "were": {"_count": 1}, "at": {"_count": 1}, "Harry": {"_count": 1}, "started": {"_count": 1}, "ahead": {"_count": 1}}, "sign": {"_count": 23, "that": {"_count": 1}, "cats": {"_count": 1}, "again": {"_count": 2}, "with": {"_count": 1}, "next": {"_count": 1}, "and": {"_count": 1}, "aloud": {"_count": 1}, "in": {"_count": 1}, "burned": {"_count": 1}, "": {"_count": 3}, "which": {"_count": 1}, "were": {"_count": 1}, "it": {"_count": 1}, "over": {"_count": 1}, "of": {"_count": 4}, "on": {"_count": 1}, "really": {"_count": 1}}, "edge": {"_count": 112, "of": {"_count": 105}, "": {"_count": 3}, "were": {"_count": 1}, "runes": {"_count": 1}, "off": {"_count": 1}, "and": {"_count": 1}}, "getups": {"_count": 1, "you": {"_count": 1}}, "steering": {"_count": 9, "wheel": {"_count": 9}}, "Grunnings": {"_count": 1, "parking": {"_count": 1}}, "ninth": {"_count": 4, "floor": {"_count": 1}, "level": {"_count": 2}, "goblet": {"_count": 1}}, "owls": {"_count": 28, "swooping": {"_count": 1}, "have": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 3}, "flooded": {"_count": 1}, "soared": {"_count": 2}, "will": {"_count": 1}, "kept": {"_count": 1}, "around": {"_count": 2}, "back": {"_count": 1}, "beak": {"_count": 1}, "leg": {"_count": 2}, "coming": {"_count": 1}, "might": {"_count": 1}, "legs": {"_count": 1}, "overhead": {"_count": 1}, "and": {"_count": 2}, "are": {"_count": 1}, "were": {"_count": 1}, "fluttering": {"_count": 1}, "inside": {"_count": 1}, "as": {"_count": 1}}, "bakery": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 68, "in": {"_count": 10}, "hes": {"_count": 1}, "who": {"_count": 13}, "doing": {"_count": 1}, "around": {"_count": 5}, "nearest": {"_count": 2}, "above": {"_count": 2}, "on": {"_count": 1}, "youre": {"_count": 2}, "of": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 4}, "from": {"_count": 1}, "inside": {"_count": 2}, "surrounding": {"_count": 2}, "he": {"_count": 4}, "seated": {"_count": 2}, "now": {"_count": 1}, "standing": {"_count": 1}, "you": {"_count": 1}, "watching": {"_count": 1}, "Ive": {"_count": 1}, "close": {"_count": 1}, "behind": {"_count": 1}, "taking": {"_count": 1}, "they": {"_count": 1}, "Snape": {"_count": 1}, "waiting": {"_count": 1}, "moving": {"_count": 1}, "my": {"_count": 1}, "for": {"_count": 1}}, "bakers": {"_count": 1, "": {"_count": 1}}, "whisperers": {"_count": 3, "as": {"_count": 1}, "seemed": {"_count": 1}, "voices": {"_count": 1}}, "receiver": {"_count": 9, "back": {"_count": 2}, "a": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "above": {"_count": 1}, "in": {"_count": 1}, "or": {"_count": 1}, "dial": {"_count": 1}}, "boy": {"_count": 110, "": {"_count": 19}, "getting": {"_count": 1}, "who": {"_count": 9}, "anything": {"_count": 1}, "Hogwarts": {"_count": 1}, "went": {"_count": 1}, "suddenly": {"_count": 1}, "didnt": {"_count": 1}, "Ive": {"_count": 1}, "less": {"_count": 1}, "with": {"_count": 2}, "hopped": {"_count": 1}, "reached": {"_count": 1}, "had": {"_count": 3}, "and": {"_count": 5}, "sat": {"_count": 1}, "miserably": {"_count": 1}, "playing": {"_count": 1}, "his": {"_count": 1}, "would": {"_count": 3}, "as": {"_count": 1}, "I": {"_count": 2}, "called": {"_count": 1}, "passed": {"_count": 1}, "from": {"_count": 2}, "in": {"_count": 3}, "below": {"_count": 1}, "was": {"_count": 3}, "continued": {"_count": 1}, "won": {"_count": 1}, "you": {"_count": 1}, "very": {"_count": 1}, "can": {"_count": 1}, "on": {"_count": 1}, "will": {"_count": 1}, "the": {"_count": 2}, "did": {"_count": 1}, "he": {"_count": 1}, "YouKnowWho": {"_count": 1}, "should": {"_count": 1}, "Riddle": {"_count": 1}, "so": {"_count": 1}, "doesnt": {"_count": 1}, "emerged": {"_count": 1}, "turns": {"_count": 1}, "Voldemort": {"_count": 1}, "next": {"_count": 1}, "at": {"_count": 1}, "sitting": {"_count": 1}, "before": {"_count": 1}, "there": {"_count": 1}, "Begging": {"_count": 1}, "could": {"_count": 1}, "knew": {"_count": 1}, "But": {"_count": 1}, "know": {"_count": 1}, "or": {"_count": 1}, "might": {"_count": 2}, "my": {"_count": 1}, "All": {"_count": 1}, "lounging": {"_count": 1}, "is": {"_count": 1}, "has": {"_count": 1}, "enough": {"_count": 1}, "must": {"_count": 1}, "after": {"_count": 1}, "standing": {"_count": 1}}, "same": {"_count": 386, "those": {"_count": 1}, "one": {"_count": 2}, "markings": {"_count": 1}, "tidy": {"_count": 1}, "as": {"_count": 21}, "dream": {"_count": 1}, "heavy": {"_count": 1}, "time": {"_count": 47}, "just": {"_count": 3}, "since": {"_count": 2}, "theyve": {"_count": 1}, "": {"_count": 38}, "room": {"_count": 3}, "way": {"_count": 15}, "plant": {"_count": 1}, "day": {"_count": 1}, "it": {"_count": 1}, "league": {"_count": 1}, "question": {"_count": 5}, "shape": {"_count": 1}, "thing": {"_count": 16}, "lines": {"_count": 3}, "hed": {"_count": 1}, "Your": {"_count": 1}, "bluebell": {"_count": 1}, "instant": {"_count": 1}, "end": {"_count": 1}, "unanswerable": {"_count": 1}, "seven": {"_count": 1}, "pale": {"_count": 1}, "all": {"_count": 1}, "voice": {"_count": 1}, "cold": {"_count": 1}, "sort": {"_count": 4}, "new": {"_count": 1}, "boat": {"_count": 2}, "Shrivelfig": {"_count": 1}, "person": {"_count": 2}, "sticky": {"_count": 1}, "attack": {"_count": 1}, "fearful": {"_count": 1}, "words": {"_count": 2}, "position": {"_count": 2}, "hoarse": {"_count": 1}, "round": {"_count": 1}, "table": {"_count": 1}, "again": {"_count": 2}, "hat": {"_count": 1}, "puffapod": {"_count": 1}, "Potter": {"_count": 1}, "year": {"_count": 2}, "demurred": {"_count": 1}, "laugh": {"_count": 1}, "to": {"_count": 1}, "moment": {"_count": 18}, "rickety": {"_count": 1}, "harsh": {"_count": 1}, "for": {"_count": 2}, "fairy": {"_count": 1}, "place": {"_count": 2}, "night": {"_count": 3}, "target": {"_count": 1}, "today": {"_count": 1}, "posters": {"_count": 1}, "Bagman": {"_count": 1}, "wouldnt": {"_count": 1}, "said": {"_count": 1}, "poster": {"_count": 1}, "jerky": {"_count": 1}, "size": {"_count": 1}, "color": {"_count": 2}, "Houses": {"_count": 1}, "small": {"_count": 3}, "horrified": {"_count": 1}, "unnaturally": {"_count": 1}, "letters": {"_count": 1}, "and": {"_count": 3}, "we": {"_count": 2}, "sceptical": {"_count": 1}, "tray": {"_count": 1}, "sixthyear": {"_count": 1}, "message": {"_count": 1}, "bird": {"_count": 1}, "treat": {"_count": 1}, "filthy": {"_count": 1}, "uniform": {"_count": 1}, "ones": {"_count": 1}, "stool": {"_count": 1}, "weve": {"_count": 1}, "strange": {"_count": 1}, "take": {"_count": 1}, "wrong": {"_count": 1}, "he": {"_count": 1}, "each": {"_count": 1}, "distant": {"_count": 1}, "flat": {"_count": 1}, "monotonous": {"_count": 1}, "first": {"_count": 1}, "soft": {"_count": 1}, "phoenix": {"_count": 1}, "Minerva": {"_count": 1}, "side": {"_count": 3}, "the": {"_count": 2}, "rather": {"_count": 1}, "pained": {"_count": 1}, "tired": {"_count": 1}, "brusque": {"_count": 1}, "fate": {"_count": 2}, "cool": {"_count": 1}, "indulgence": {"_count": 1}, "feeling": {"_count": 1}, "kind": {"_count": 3}, "hallucination": {"_count": 1}, "Stand": {"_count": 1}, "stand": {"_count": 1}, "line": {"_count": 1}, "spot": {"_count": 5}, "If": {"_count": 1}, "if": {"_count": 1}, "brush": {"_count": 1}, "situation": {"_count": 1}, "silly": {"_count": 1}, "theres": {"_count": 1}, "glass": {"_count": 1}, "Vanishing": {"_count": 1}, "mold": {"_count": 1}, "loud": {"_count": 1}, "scared": {"_count": 1}, "calm": {"_count": 1}, "campsite": {"_count": 1}, "callous": {"_count": 1}, "thin": {"_count": 1}, "ter": {"_count": 1}, "look": {"_count": 1}, "slashing": {"_count": 2}, "week": {"_count": 1}, "concerns": {"_count": 1}, "watching": {"_count": 1}, "reason": {"_count": 1}, "last": {"_count": 1}, "house": {"_count": 1}, "harried": {"_count": 1}, "really": {"_count": 1}, "sinking": {"_count": 1}, "subjects": {"_count": 1}, "ring": {"_count": 1}, "commanding": {"_count": 1}, "armchair": {"_count": 1}, "intuitive": {"_count": 1}, "Tom": {"_count": 1}, "age": {"_count": 2}, "No": {"_count": 1}, "slimy": {"_count": 1}, "awareness": {"_count": 1}, "werent": {"_count": 1}, "anymore": {"_count": 1}, "hard": {"_count": 1}, "now": {"_count": 1}, "direction": {"_count": 1}, "piles": {"_count": 1}, "shade": {"_count": 1}, "unpleasant": {"_count": 1}, "air": {"_count": 1}, "sense": {"_count": 1}, "dark": {"_count": 1}, "expression": {"_count": 1}, "two": {"_count": 1}, "pattern": {"_count": 1}, "ornamental": {"_count": 1}, "cannot": {"_count": 1}, "balding": {"_count": 1}, "tent": {"_count": 1}, "flaw": {"_count": 1}, "symbol": {"_count": 1}, "graveyard": {"_count": 1}, "Wizarding": {"_count": 1}, "sensation": {"_count": 1}, "breaking": {"_count": 1}, "a": {"_count": 1}, "triangular": {"_count": 1}, "wand": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "curiosity": {"_count": 1}, "examination": {"_count": 1}, "food": {"_count": 1}, "impression": {"_count": 1}, "try": {"_count": 1}, "information": {"_count": 1}, "loving": {"_count": 1}, "height": {"_count": 1}, "exhilarated": {"_count": 1}, "distance": {"_count": 1}, "balm": {"_count": 1}}, "building": {"_count": 11, "at": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 3}, "yet": {"_count": 1}, "temporarily": {"_count": 1}, "halfhidden": {"_count": 1}, "keeping": {"_count": 1}, "liberated": {"_count": 1}, "and": {"_count": 1}}, "door": {"_count": 731, "": {"_count": 163}, "again": {"_count": 7}, "to": {"_count": 29}, "slotted": {"_count": 1}, "shut": {"_count": 11}, "and": {"_count": 85}, "behind": {"_count": 56}, "Harry": {"_count": 10}, "open": {"_count": 21}, "gently": {"_count": 1}, "read": {"_count": 1}, "of": {"_count": 45}, "wide": {"_count": 2}, "away": {"_count": 1}, "Were": {"_count": 1}, "swung": {"_count": 9}, "but": {"_count": 7}, "waiting": {"_count": 1}, "ajar": {"_count": 2}, "quietly": {"_count": 5}, "looking": {"_count": 1}, "quickly": {"_count": 5}, "at": {"_count": 6}, "separating": {"_count": 1}, "was": {"_count": 9}, "creaked": {"_count": 4}, "untouched": {"_count": 1}, "the": {"_count": 4}, "handle": {"_count": 3}, "ahead": {"_count": 5}, "as": {"_count": 6}, "had": {"_count": 11}, "saying": {"_count": 2}, "on": {"_count": 7}, "opened": {"_count": 9}, "nodding": {"_count": 1}, "bearing": {"_count": 2}, "almost": {"_count": 1}, "watching": {"_count": 2}, "staring": {"_count": 3}, "he": {"_count": 6}, "a": {"_count": 5}, "knob": {"_count": 1}, "burst": {"_count": 2}, "desperate": {"_count": 1}, "with": {"_count": 14}, "Draco": {"_count": 1}, "got": {"_count": 1}, "slide": {"_count": 1}, "slid": {"_count": 1}, "something": {"_count": 2}, "too": {"_count": 1}, "into": {"_count": 12}, "in": {"_count": 9}, "rattle": {"_count": 1}, "Fudge": {"_count": 1}, "closed": {"_count": 3}, "wrenched": {"_count": 3}, "Okay": {"_count": 1}, "close": {"_count": 3}, "last": {"_count": 1}, "noiselessly": {"_count": 1}, "pushing": {"_count": 1}, "listening": {"_count": 1}, "sharply": {"_count": 1}, "clearly": {"_count": 1}, "out": {"_count": 1}, "throwing": {"_count": 1}, "through": {"_count": 4}, "whining": {"_count": 1}, "if": {"_count": 1}, "they": {"_count": 4}, "when": {"_count": 7}, "whose": {"_count": 1}, "said": {"_count": 3}, "once": {"_count": 1}, "from": {"_count": 1}, "please": {"_count": 2}, "carefully": {"_count": 2}, "an": {"_count": 1}, "softly": {"_count": 1}, "over": {"_count": 1}, "for": {"_count": 4}, "leading": {"_count": 3}, "she": {"_count": 3}, "Cho": {"_count": 1}, "Hagrid": {"_count": 2}, "I": {"_count": 2}, "wont": {"_count": 2}, "would": {"_count": 2}, "invisible": {"_count": 1}, "then": {"_count": 2}, "like": {"_count": 1}, "followed": {"_count": 1}, "frame": {"_count": 2}, "so": {"_count": 2}, "clutching": {"_count": 1}, "their": {"_count": 1}, "immediately": {"_count": 1}, "now": {"_count": 1}, "clicked": {"_count": 1}, "facing": {"_count": 1}, "sealed": {"_count": 1}, "straight": {"_count": 1}, "Hermione": {"_count": 2}, "flew": {"_count": 2}, "that": {"_count": 3}, "against": {"_count": 1}, "seized": {"_count": 1}, "sure": {"_count": 1}, "before": {"_count": 3}, "remained": {"_count": 1}, "isnt": {"_count": 1}, "tinkled": {"_count": 1}, "well": {"_count": 1}, "click": {"_count": 1}, "just": {"_count": 1}, "it": {"_count": 1}, "pop": {"_count": 1}, "Felix": {"_count": 1}, "his": {"_count": 2}, "back": {"_count": 3}, "Trelawney": {"_count": 1}, "onto": {"_count": 1}, "without": {"_count": 1}, "lintel": {"_count": 1}, "scared": {"_count": 1}, "holding": {"_count": 1}, "It": {"_count": 1}, "concealing": {"_count": 1}, "leaving": {"_count": 1}, "began": {"_count": 1}, "Ron": {"_count": 1}, "which": {"_count": 1}, "upon": {"_count": 2}, "opposite": {"_count": 1}, "yeah": {"_count": 1}, "slammed": {"_count": 1}, "stood": {"_count": 2}, "materialized": {"_count": 1}}, "tiny": {"_count": 62, "old": {"_count": 1}, "bottle": {"_count": 3}, "window": {"_count": 4}, "engraving": {"_count": 1}, "platform": {"_count": 1}, "Snitch": {"_count": 1}, "ink": {"_count": 2}, "inn": {"_count": 1}, "dot": {"_count": 1}, "figures": {"_count": 1}, "owl": {"_count": 2}, "owls": {"_count": 1}, "gray": {"_count": 1}, "table": {"_count": 1}, "kitchen": {"_count": 1}, "print": {"_count": 1}, "fluttering": {"_count": 2}, "struggling": {"_count": 1}, "puffs": {"_count": 1}, "stooped": {"_count": 1}, "threads": {"_count": 1}, "outline": {"_count": 1}, "golden": {"_count": 2}, "egg": {"_count": 1}, "baby": {"_count": 1}, "gold": {"_count": 1}, "ugly": {"_count": 1}, "labeled": {"_count": 1}, "winged": {"_count": 1}, "elf": {"_count": 1}, "gleaming": {"_count": 1}, "glass": {"_count": 1}, "little": {"_count": 1}, "scullery": {"_count": 1}, "landing": {"_count": 1}, "attic": {"_count": 1}, "walnutsized": {"_count": 1}, "boat": {"_count": 1}, "bag": {"_count": 1}, "alleyway": {"_count": 1}, "beaded": {"_count": 2}, "heartbeat": {"_count": 1}, "patch": {"_count": 1}, "wings": {"_count": 1}, "speaker": {"_count": 1}, "merciful": {"_count": 1}, "body": {"_count": 1}, "cottage": {"_count": 1}, "dark": {"_count": 1}, "backyard": {"_count": 1}, "words": {"_count": 1}, "crack": {"_count": 1}}, "man": {"_count": 85, "was": {"_count": 5}, "sitting": {"_count": 1}, "Aunt": {"_count": 1}, "behind": {"_count": 1}, "": {"_count": 6}, "he": {"_count": 6}, "on": {"_count": 7}, "shifting": {"_count": 1}, "in": {"_count": 4}, "who": {"_count": 10}, "called": {"_count": 2}, "inside": {"_count": 1}, "to": {"_count": 3}, "with": {"_count": 5}, "now": {"_count": 2}, "hit": {"_count": 1}, "supporting": {"_count": 1}, "helping": {"_count": 1}, "asked": {"_count": 1}, "and": {"_count": 1}, "before": {"_count": 1}, "disappeared": {"_count": 1}, "kneeling": {"_count": 1}, "cowering": {"_count": 1}, "turned": {"_count": 1}, "spinning": {"_count": 1}, "opening": {"_count": 1}, "I": {"_count": 1}, "Voldemort": {"_count": 2}, "Harry": {"_count": 1}, "jerked": {"_count": 1}, "staggered": {"_count": 1}, "himself": {"_count": 1}, "most": {"_count": 1}, "tipped": {"_count": 1}, "were": {"_count": 1}, "the": {"_count": 1}, "whom": {"_count": 1}, "or": {"_count": 1}, "tying": {"_count": 1}, "Ron": {"_count": 1}, "dueling": {"_count": 1}, "so": {"_count": 1}, "you": {"_count": 1}}, "ground": {"_count": 340, "": {"_count": 93}, "and": {"_count": 37}, "to": {"_count": 6}, "hard": {"_count": 2}, "pushed": {"_count": 1}, "falling": {"_count": 1}, "he": {"_count": 6}, "was": {"_count": 5}, "when": {"_count": 1}, "like": {"_count": 3}, "nervously": {"_count": 3}, "fast": {"_count": 1}, "with": {"_count": 15}, "near": {"_count": 3}, "in": {"_count": 7}, "flying": {"_count": 1}, "soaring": {"_count": 1}, "landing": {"_count": 1}, "still": {"_count": 5}, "trying": {"_count": 1}, "on": {"_count": 4}, "seemed": {"_count": 1}, "so": {"_count": 3}, "too": {"_count": 1}, "as": {"_count": 6}, "the": {"_count": 2}, "while": {"_count": 2}, "this": {"_count": 1}, "drifted": {"_count": 1}, "again": {"_count": 5}, "flitting": {"_count": 1}, "were": {"_count": 2}, "perhaps": {"_count": 1}, "wide": {"_count": 1}, "but": {"_count": 2}, "limbs": {"_count": 1}, "his": {"_count": 6}, "pale": {"_count": 1}, "beneath": {"_count": 4}, "apparently": {"_count": 1}, "tossing": {"_count": 1}, "beside": {"_count": 6}, "Ron": {"_count": 2}, "that": {"_count": 3}, "around": {"_count": 1}, "a": {"_count": 2}, "Harry": {"_count": 3}, "at": {"_count": 8}, "her": {"_count": 1}, "though": {"_count": 1}, "before": {"_count": 3}, "behind": {"_count": 2}, "tears": {"_count": 1}, "And": {"_count": 1}, "Krum": {"_count": 1}, "revealing": {"_count": 1}, "heard": {"_count": 1}, "cradling": {"_count": 2}, "got": {"_count": 1}, "nor": {"_count": 1}, "writhed": {"_count": 1}, "gasping": {"_count": 1}, "breathing": {"_count": 1}, "all": {"_count": 1}, "no": {"_count": 1}, "whimpering": {"_count": 2}, "quick": {"_count": 1}, "trembling": {"_count": 2}, "very": {"_count": 1}, "floor": {"_count": 3}, "or": {"_count": 1}, "where": {"_count": 4}, "burning": {"_count": 1}, "spraying": {"_count": 1}, "having": {"_count": 1}, "stepped": {"_count": 1}, "vanished": {"_count": 1}, "they": {"_count": 3}, "pretty": {"_count": 1}, "smiled": {"_count": 1}, "which": {"_count": 2}, "lets": {"_count": 1}, "didnt": {"_count": 1}, "below": {"_count": 2}, "raised": {"_count": 1}, "momentarily": {"_count": 1}, "dead": {"_count": 1}, "clutching": {"_count": 1}, "grinding": {"_count": 1}, "Katie": {"_count": 1}, "dripping": {"_count": 1}, "slipped": {"_count": 1}, "rigid": {"_count": 1}, "whose": {"_count": 1}, "blood": {"_count": 1}, "shudder": {"_count": 1}, "nearby": {"_count": 1}, "Its": {"_count": 1}, "clearer": {"_count": 1}, "between": {"_count": 1}, "for": {"_count": 2}, "unconscious": {"_count": 1}, "its": {"_count": 2}, "spun": {"_count": 1}, "making": {"_count": 1}, "Disarmed": {"_count": 1}}, "contrary": {"_count": 32, "his": {"_count": 3}, "he": {"_count": 8}, "": {"_count": 3}, "her": {"_count": 2}, "their": {"_count": 1}, "at": {"_count": 1}, "growled": {"_count": 1}, "both": {"_count": 1}, "it": {"_count": 3}, "she": {"_count": 2}, "they": {"_count": 2}, "Harry": {"_count": 1}, "next": {"_count": 1}, "much": {"_count": 1}, "Dumbledore": {"_count": 1}, "when": {"_count": 1}}, "old": {"_count": 108, "man": {"_count": 9}, "bartender": {"_count": 2}, "wizarding": {"_count": 1}, "woman": {"_count": 2}, "punishments": {"_count": 1}, "radio": {"_count": 1}, "Ford": {"_count": 2}, "Two": {"_count": 1}, "Cleansweeps": {"_count": 1}, "one": {"_count": 3}, "wizard": {"_count": 4}, "spider": {"_count": 1}, "school": {"_count": 2}, "manic": {"_count": 1}, "Silver": {"_count": 1}, "Committee": {"_count": 2}, "house": {"_count": 3}, "key": {"_count": 1}, "boot": {"_count": 1}, "captain": {"_count": 1}, "Divination": {"_count": 1}, "charm": {"_count": 1}, "Daily": {"_count": 1}, "scandal": {"_count": 1}, "popularity": {"_count": 1}, "headmasters": {"_count": 3}, "ways": {"_count": 1}, "Auror": {"_count": 1}, "crowd": {"_count": 2}, "scar": {"_count": 1}, "onetwo": {"_count": 2}, "days": {"_count": 1}, "Extendables": {"_count": 1}, "toad": {"_count": 1}, "tribes": {"_count": 1}, "portraits": {"_count": 1}, "kettle": {"_count": 1}, "wound": {"_count": 1}, "mans": {"_count": 1}, "faces": {"_count": 1}, "owner": {"_count": 1}, "copy": {"_count": 2}, "trees": {"_count": 2}, "brilliance": {"_count": 1}, "favorite": {"_count": 1}, "book": {"_count": 1}, "Invisibility": {"_count": 1}, "tiled": {"_count": 1}, "plan": {"_count": 1}, "Prophets": {"_count": 1}, "camp": {"_count": 1}, "Snitch": {"_count": 3}, "kids": {"_count": 1}, "wanted": {"_count": 1}, "fashioned": {"_count": 1}, "gas": {"_count": 1}, "tapestry": {"_count": 1}, "pureblood": {"_count": 1}, "heros": {"_count": 1}, "photograph": {"_count": 1}, "robes": {"_count": 2}, "hag": {"_count": 1}, "witch": {"_count": 1}, "wandmaker": {"_count": 1}, "highsecurity": {"_count": 1}, "armchair": {"_count": 1}, "pictures": {"_count": 1}, "grave": {"_count": 1}, "lady": {"_count": 2}, "body": {"_count": 1}, "yew": {"_count": 1}, "fool": {"_count": 1}, "goblin": {"_count": 2}, "secret": {"_count": 1}, "tiara": {"_count": 1}, "tree": {"_count": 1}, "letter": {"_count": 1}}, "middle": {"_count": 140, "and": {"_count": 6}, "of": {"_count": 116}, "a": {"_count": 1}, "but": {"_count": 1}, "nothing": {"_count": 1}, "one": {"_count": 1}, "glass": {"_count": 1}, "stall": {"_count": 1}, "owl": {"_count": 1}, "said": {"_count": 1}, "three": {"_count": 1}, "calling": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 4}, "o": {"_count": 1}, "Death": {"_count": 1}, "partly": {"_count": 1}}, "spot": {"_count": 87, "": {"_count": 16}, "with": {"_count": 4}, "and": {"_count": 9}, "as": {"_count": 3}, "where": {"_count": 13}, "by": {"_count": 2}, "staring": {"_count": 1}, "trying": {"_count": 2}, "please": {"_count": 1}, "listening": {"_count": 1}, "furiously": {"_count": 1}, "goggling": {"_count": 1}, "Parvati": {"_count": 1}, "his": {"_count": 3}, "in": {"_count": 2}, "her": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 4}, "but": {"_count": 1}, "openmouthed": {"_count": 1}, "then": {"_count": 2}, "Harry": {"_count": 1}, "giving": {"_count": 1}, "that": {"_count": 2}, "feeling": {"_count": 1}, "lost": {"_count": 1}, "he": {"_count": 2}, "examining": {"_count": 1}, "evidently": {"_count": 1}, "quite": {"_count": 1}, "sight": {"_count": 1}, "looking": {"_count": 1}, "part": {"_count": 1}, "into": {"_count": 1}, "unable": {"_count": 1}, "roaring": {"_count": 1}}, "driveway": {"_count": 2, "of": {"_count": 1}, "then": {"_count": 1}}, "tabby": {"_count": 2, "cat": {"_count": 1}, "but": {"_count": 1}}, "living": {"_count": 43, "room": {"_count": 36}, "daylights": {"_count": 1}, "counterpart": {"_count": 1}, "Cedric": {"_count": 1}, "Dumbledores": {"_count": 1}, "back": {"_count": 1}, "world": {"_count": 1}, "and": {"_count": 1}}, "evening": {"_count": 23, "news": {"_count": 1}, "pretending": {"_count": 1}, "when": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 5}, "before": {"_count": 2}, "sitting": {"_count": 1}, "hadnt": {"_count": 1}, "was": {"_count": 1}, "feast": {"_count": 1}, "which": {"_count": 1}, "had": {"_count": 1}, "of": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "passed": {"_count": 1}, "light": {"_count": 1}}, "nations": {"_count": 1, "owls": {"_count": 1}}, "weather": {"_count": 14, "": {"_count": 3}, "for": {"_count": 1}, "turned": {"_count": 1}, "seemed": {"_count": 1}, "was": {"_count": 4}, "became": {"_count": 1}, "conditions": {"_count": 1}, "except": {"_count": 1}, "said": {"_count": 1}}, "weatherman": {"_count": 1, "I": {"_count": 1}}, "rain": {"_count": 23, "I": {"_count": 1}, "and": {"_count": 1}, "hammered": {"_count": 1}, "": {"_count": 3}, "fell": {"_count": 1}, "on": {"_count": 1}, "so": {"_count": 1}, "whipped": {"_count": 1}, "washed": {"_count": 2}, "was": {"_count": 2}, "fogging": {"_count": 1}, "off": {"_count": 1}, "pummeling": {"_count": 1}, "He": {"_count": 1}, "still": {"_count": 1}, "began": {"_count": 1}, "if": {"_count": 1}, "thundering": {"_count": 1}, "outside": {"_count": 1}}, "place": {"_count": 176, "": {"_count": 29}, "it": {"_count": 1}, "of": {"_count": 2}, "I": {"_count": 2}, "and": {"_count": 4}, "Right": {"_count": 1}, "was": {"_count": 2}, "where": {"_count": 67}, "you": {"_count": 3}, "with": {"_count": 1}, "which": {"_count": 1}, "is": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 2}, "like": {"_count": 2}, "had": {"_count": 2}, "forever": {"_count": 1}, "he": {"_count": 2}, "Dobby": {"_count": 1}, "weve": {"_count": 1}, "ruddy": {"_count": 1}, "an": {"_count": 1}, "all": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}, "apart": {"_count": 1}, "thats": {"_count": 1}, "became": {"_count": 1}, "high": {"_count": 1}, "attacking": {"_count": 1}, "to": {"_count": 4}, "Harry": {"_count": 2}, "we": {"_count": 1}, "by": {"_count": 1}, "held": {"_count": 2}, "but": {"_count": 2}, "a": {"_count": 2}, "that": {"_count": 3}, "said": {"_count": 1}, "on": {"_count": 1}, "they": {"_count": 2}, "were": {"_count": 1}, "as": {"_count": 2}, "looking": {"_count": 1}, "moments": {"_count": 1}, "laid": {"_count": 1}, "she": {"_count": 2}, "Voldemort": {"_count": 1}, "together": {"_count": 1}, "lighting": {"_count": 1}, "Ron": {"_count": 1}, "down": {"_count": 1}, "though": {"_count": 1}, "then": {"_count": 1}, "seemed": {"_count": 1}, "if": {"_count": 1}, "beneath": {"_count": 1}, "the": {"_count": 1}}, "news": {"_count": 41, "Mr": {"_count": 1}, "that": {"_count": 10}, "at": {"_count": 1}, "": {"_count": 7}, "this": {"_count": 1}, "worse": {"_count": 1}, "today": {"_count": 1}, "o": {"_count": 1}, "about": {"_count": 2}, "or": {"_count": 1}, "Dudley": {"_count": 1}, "death": {"_count": 1}, "said": {"_count": 1}, "tosh": {"_count": 1}, "out": {"_count": 2}, "wringing": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 3}, "walking": {"_count": 1}, "like": {"_count": 1}, "now": {"_count": 1}}, "name": {"_count": 88, "Potter": {"_count": 1}, "of": {"_count": 30}, "if": {"_count": 1}, "Dedalus": {"_count": 1}, "said": {"_count": 1}, "Albus": {"_count": 1}, "somewhere": {"_count": 2}, "": {"_count": 15}, "Ron": {"_count": 1}, "sir": {"_count": 1}, "T": {"_count": 2}, "engraved": {"_count": 1}, "but": {"_count": 1}, "aloud": {"_count": 1}, "written": {"_count": 1}, "have": {"_count": 1}, "on": {"_count": 3}, "upon": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 2}, "REGULUS": {"_count": 1}, "Draco": {"_count": 1}, "to": {"_count": 1}, "Longbottom": {"_count": 1}, "in": {"_count": 1}, "UNoPoo": {"_count": 1}, "Tom": {"_count": 1}, "\u2018Slug": {"_count": 1}, "forever": {"_count": 1}, "\u2018Roonil": {"_count": 1}, "again": {"_count": 1}, "before": {"_count": 2}, "Gregorovitch": {"_count": 1}, "as": {"_count": 1}, "\u2018Peverell": {"_count": 1}, "Peverell": {"_count": 1}, "Im": {"_count": 1}, "etched": {"_count": 1}, "now": {"_count": 1}}, "subject": {"_count": 61, "as": {"_count": 2}, "on": {"_count": 1}, "around": {"_count": 1}, "And": {"_count": 1}, "": {"_count": 10}, "was": {"_count": 4}, "between": {"_count": 1}, "Harry": {"_count": 3}, "lists": {"_count": 1}, "not": {"_count": 1}, "he": {"_count": 1}, "abruptly": {"_count": 1}, "of": {"_count": 20}, "and": {"_count": 3}, "from": {"_count": 1}, "But": {"_count": 1}, "with": {"_count": 1}, "had": {"_count": 1}, "drop": {"_count": 1}, "so": {"_count": 1}, "to": {"_count": 1}, "is": {"_count": 2}, "myself": {"_count": 1}, "said": {"_count": 1}}, "bathroom": {"_count": 41, "Mr": {"_count": 1}, "morning": {"_count": 1}, "Ron": {"_count": 1}, "carefully": {"_count": 1}, "door": {"_count": 1}, "": {"_count": 8}, "walls": {"_count": 1}, "because": {"_count": 1}, "unaccompanied": {"_count": 1}, "for": {"_count": 1}, "hed": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 3}, "was": {"_count": 1}, "echoing": {"_count": 1}, "floor": {"_count": 1}, "thinking": {"_count": 1}, "\u2018Are": {"_count": 1}, "in": {"_count": 2}, "with": {"_count": 1}, "itself": {"_count": 1}, "said": {"_count": 1}, "between": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 2}, "turning": {"_count": 1}, "on": {"_count": 1}, "without": {"_count": 1}, "to": {"_count": 1}, "beyond": {"_count": 1}}, "bedroom": {"_count": 19, "window": {"_count": 1}, "door": {"_count": 5}, "side": {"_count": 1}, "": {"_count": 2}, "waiting": {"_count": 1}, "doorknob": {"_count": 1}, "doorway": {"_count": 1}, "behind": {"_count": 1}, "he": {"_count": 3}, "in": {"_count": 1}, "next": {"_count": 1}, "opened": {"_count": 1}}, "front": {"_count": 260, "garden": {"_count": 2}, "door": {"_count": 57}, "step": {"_count": 2}, "and": {"_count": 3}, "desk": {"_count": 1}, "window": {"_count": 1}, "to": {"_count": 1}, "steps": {"_count": 11}, "of": {"_count": 69}, "seats": {"_count": 2}, "seat": {"_count": 3}, "passenger": {"_count": 2}, "": {"_count": 9}, "page": {"_count": 26}, "doors": {"_count": 24}, "two": {"_count": 1}, "cover": {"_count": 8}, "legs": {"_count": 1}, "first": {"_count": 1}, "also": {"_count": 1}, "paws": {"_count": 1}, "into": {"_count": 1}, "yard": {"_count": 2}, "saw": {"_count": 1}, "gates": {"_count": 1}, "but": {"_count": 1}, "showed": {"_count": 1}, "lawn": {"_count": 1}, "row": {"_count": 9}, "bench": {"_count": 1}, "was": {"_count": 1}, "again": {"_count": 4}, "then": {"_count": 1}, "desks": {"_count": 1}, "drive": {"_count": 1}, "gate": {"_count": 1}, "announced": {"_count": 1}, "handknitted": {"_count": 1}, "past": {"_count": 1}, "all": {"_count": 1}, "rows": {"_count": 1}, "about": {"_count": 1}, "path": {"_count": 1}}, "wall": {"_count": 222, "outside": {"_count": 1}, "next": {"_count": 1}, "": {"_count": 46}, "and": {"_count": 19}, "above": {"_count": 2}, "three": {"_count": 1}, "to": {"_count": 6}, "back": {"_count": 1}, "counting": {"_count": 2}, "opposite": {"_count": 4}, "her": {"_count": 1}, "breathing": {"_count": 2}, "facing": {"_count": 2}, "was": {"_count": 6}, "had": {"_count": 2}, "making": {"_count": 1}, "wiping": {"_count": 1}, "Harry": {"_count": 3}, "behind": {"_count": 21}, "again": {"_count": 1}, "ahead": {"_count": 1}, "between": {"_count": 2}, "about": {"_count": 1}, "with": {"_count": 4}, "bearing": {"_count": 1}, "as": {"_count": 6}, "thud": {"_count": 1}, "slid": {"_count": 1}, "of": {"_count": 12}, "cracked": {"_count": 1}, "listening": {"_count": 1}, "Hermione": {"_count": 1}, "then": {"_count": 2}, "looking": {"_count": 1}, "gazing": {"_count": 1}, "through": {"_count": 2}, "before": {"_count": 1}, "but": {"_count": 2}, "beneath": {"_count": 1}, "they": {"_count": 1}, "sniggered": {"_count": 1}, "clutching": {"_count": 1}, "sniggering": {"_count": 1}, "told": {"_count": 1}, "inside": {"_count": 1}, "closed": {"_count": 1}, "captioned": {"_count": 1}, "around": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 2}, "a": {"_count": 2}, "panting": {"_count": 1}, "were": {"_count": 1}, "by": {"_count": 1}, "immediately": {"_count": 1}, "sped": {"_count": 1}, "began": {"_count": 1}, "spun": {"_count": 1}, "started": {"_count": 1}, "full": {"_count": 1}, "fully": {"_count": 1}, "into": {"_count": 1}, "rumbled": {"_count": 1}, "blocking": {"_count": 1}, "beside": {"_count": 4}, "well": {"_count": 1}, "revealing": {"_count": 1}, "instead": {"_count": 1}, "the": {"_count": 2}, "which": {"_count": 1}, "apparently": {"_count": 1}, "irritably": {"_count": 1}, "remained": {"_count": 1}, "once": {"_count": 1}, "his": {"_count": 1}, "please": {"_count": 1}, "A": {"_count": 1}, "where": {"_count": 1}, "throwing": {"_count": 1}, "because": {"_count": 1}, "it": {"_count": 2}, "protruding": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 1}, "theyre": {"_count": 1}, "trying": {"_count": 1}, "like": {"_count": 1}, "closely": {"_count": 1}, "One": {"_count": 1}}, "far": {"_count": 37, "corner": {"_count": 8}, "left": {"_count": 1}, "end": {"_count": 23}, "north": {"_count": 1}, "side": {"_count": 3}, "bank": {"_count": 1}}, "next": {"_count": 192, "street": {"_count": 1}, "lamp": {"_count": 2}, "few": {"_count": 20}, "day": {"_count": 29}, "they": {"_count": 2}, "morning": {"_count": 16}, "door": {"_count": 4}, "second": {"_count": 6}, "moment": {"_count": 5}, "room": {"_count": 6}, "table": {"_count": 3}, "class": {"_count": 1}, "corridor": {"_count": 2}, "night": {"_count": 1}, "afternoon": {"_count": 1}, "week": {"_count": 2}, "passageway": {"_count": 1}, "great": {"_count": 2}, "": {"_count": 2}, "brother": {"_count": 1}, "flight": {"_count": 1}, "staircase": {"_count": 3}, "passage": {"_count": 1}, "one": {"_count": 6}, "time": {"_count": 5}, "bend": {"_count": 1}, "three": {"_count": 1}, "carriage": {"_count": 1}, "person": {"_count": 2}, "best": {"_count": 1}, "family": {"_count": 1}, "for": {"_count": 1}, "half": {"_count": 1}, "tent": {"_count": 1}, "spider": {"_count": 1}, "couple": {"_count": 3}, "chamber": {"_count": 2}, "tournament": {"_count": 1}, "fortnight": {"_count": 1}, "walking": {"_count": 1}, "row": {"_count": 2}, "task": {"_count": 2}, "song": {"_count": 1}, "weekend": {"_count": 1}, "Hogsmeade": {"_count": 1}, "Minister": {"_count": 1}, "clue": {"_count": 1}, "lines": {"_count": 1}, "man": {"_count": 2}, "word": {"_count": 1}, "floor": {"_count": 1}, "bed": {"_count": 2}, "five": {"_count": 1}, "question": {"_count": 1}, "copy": {"_count": 1}, "meeting": {"_count": 3}, "present": {"_count": 1}, "stop": {"_count": 1}, "D": {"_count": 1}, "Bring": {"_count": 1}, "summer": {"_count": 1}, "idiot": {"_count": 1}, "thestral": {"_count": 1}, "part": {"_count": 1}, "male": {"_count": 1}, "thing": {"_count": 3}, "junior": {"_count": 1}, "line": {"_count": 1}, "days": {"_count": 1}, "Bludger": {"_count": 1}, "match": {"_count": 1}, "she": {"_count": 1}, "twelve": {"_count": 1}, "trip": {"_count": 1}, "empty": {"_count": 1}, "to": {"_count": 1}, "booth": {"_count": 1}, "lot": {"_count": 1}, "level": {"_count": 2}, "window": {"_count": 1}, "entrant": {"_count": 1}}, "silver": {"_count": 41, "of": {"_count": 2}, "Put": {"_count": 1}, "doors": {"_count": 1}, "became": {"_count": 1}, "in": {"_count": 1}, "sheets": {"_count": 1}, "fastenings": {"_count": 1}, "jug": {"_count": 1}, "serpent": {"_count": 2}, "ladder": {"_count": 5}, "hand": {"_count": 2}, "stag": {"_count": 1}, "antlers": {"_count": 1}, "visitors": {"_count": 1}, "": {"_count": 1}, "Quidditch": {"_count": 1}, "figure": {"_count": 1}, "shield": {"_count": 1}, "instrument": {"_count": 1}, "mass": {"_count": 1}, "surface": {"_count": 1}, "Cup": {"_count": 1}, "instruments": {"_count": 1}, "lining": {"_count": 1}, "cat": {"_count": 1}, "creatures": {"_count": 1}, "frame": {"_count": 1}, "framed": {"_count": 1}, "doe": {"_count": 3}, "knife": {"_count": 1}, "hilt": {"_count": 1}, "blade": {"_count": 1}}, "other": {"_count": 516, "end": {"_count": 19}, "two": {"_count": 55}, "hand": {"_count": 48}, "day": {"_count": 9}, "room": {"_count": 1}, "as": {"_count": 2}, "little": {"_count": 2}, "not": {"_count": 2}, "sort": {"_count": 1}, "twin": {"_count": 3}, "boys": {"_count": 3}, "side": {"_count": 92}, "students": {"_count": 5}, "teachers": {"_count": 13}, "school": {"_count": 1}, "Gryffindors": {"_count": 4}, "three": {"_count": 4}, "team": {"_count": 3}, "teams": {"_count": 2}, "way": {"_count": 15}, "a": {"_count": 5}, "people": {"_count": 1}, "": {"_count": 40}, "prefects": {"_count": 1}, "second": {"_count": 1}, "balls": {"_count": 1}, "ghosts": {"_count": 2}, "founders": {"_count": 3}, "Bludger": {"_count": 1}, "Gryffindor": {"_count": 1}, "Slytherins": {"_count": 3}, "eleven": {"_count": 1}, "was": {"_count": 4}, "dogs": {"_count": 1}, "guests": {"_count": 1}, "players": {"_count": 3}, "direction": {"_count": 3}, "seemed": {"_count": 1}, "pictures": {"_count": 1}, "did": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 4}, "They": {"_count": 1}, "rats": {"_count": 1}, "bank": {"_count": 2}, "boy": {"_count": 1}, "reaching": {"_count": 1}, "Ministry": {"_count": 3}, "one": {"_count": 7}, "voice": {"_count": 1}, "first": {"_count": 2}, "Durmstrang": {"_count": 2}, "Slytherin": {"_count": 1}, "trying": {"_count": 1}, "champions": {"_count": 12}, "tasks": {"_count": 1}, "staff": {"_count": 1}, "tables": {"_count": 1}, "tightly": {"_count": 1}, "extreme": {"_count": 1}, "things": {"_count": 2}, "to": {"_count": 2}, "nothing": {"_count": 1}, "world": {"_count": 1}, "large": {"_count": 1}, "portraits": {"_count": 2}, "telling": {"_count": 1}, "night": {"_count": 2}, "thing": {"_count": 1}, "gargoyle": {"_count": 1}, "post": {"_count": 1}, "idiots": {"_count": 1}, "so": {"_count": 1}, "houseelves": {"_count": 4}, "pairs": {"_count": 1}, "her": {"_count": 2}, "giants": {"_count": 1}, "half": {"_count": 1}, "headmasters": {"_count": 1}, "Weasley": {"_count": 1}, "Weasleys": {"_count": 4}, "members": {"_count": 2}, "looking": {"_count": 1}, "centaurs": {"_count": 5}, "girls": {"_count": 1}, "elves": {"_count": 1}, "fifth": {"_count": 1}, "occasions": {"_count": 1}, "on": {"_count": 1}, "creatures": {"_count": 1}, "ends": {"_count": 2}, "grasping": {"_count": 1}, "thestrals": {"_count": 1}, "doors": {"_count": 1}, "labels": {"_count": 1}, "children": {"_count": 3}, "statues": {"_count": 1}, "for": {"_count": 1}, "survives": {"_count": 9}, "into": {"_count": 1}, "wrenched": {"_count": 1}, "he": {"_count": 1}, "without": {"_count": 1}, "Hogsmeade": {"_count": 1}, "Hermione": {"_count": 1}, "sixth": {"_count": 1}, "might": {"_count": 1}, "poor": {"_count": 1}, "searching": {"_count": 1}, "evenin": {"_count": 1}, "moving": {"_count": 1}, "rummaging": {"_count": 1}, "Horcruxes": {"_count": 4}, "Harry": {"_count": 2}, "said": {"_count": 1}, "the": {"_count": 1}, "Death": {"_count": 2}, "sack": {"_count": 1}, "by": {"_count": 1}, "Order": {"_count": 1}, "unable": {"_count": 1}, "pavement": {"_count": 1}, "LADIES": {"_count": 1}, "wizards": {"_count": 1}, "all": {"_count": 1}, "stories": {"_count": 1}, "of": {"_count": 3}, "astonished": {"_count": 1}, "prisoners": {"_count": 3}, "wand": {"_count": 1}, "unknown": {"_count": 1}, "Heads": {"_count": 1}, "Transfigured": {"_count": 1}, "bodies": {"_count": 1}, "held": {"_count": 1}, "staring": {"_count": 1}}, "sight": {"_count": 78, "of": {"_count": 73}, "gave": {"_count": 1}, "that": {"_count": 2}, "too": {"_count": 1}, "He": {"_count": 1}}, "air": {"_count": 339, "and": {"_count": 77}, "hed": {"_count": 1}, "trying": {"_count": 1}, "to": {"_count": 4}, "on": {"_count": 1}, "several": {"_count": 1}, "being": {"_count": 1}, "clutching": {"_count": 2}, "": {"_count": 76}, "as": {"_count": 13}, "it": {"_count": 3}, "Wood": {"_count": 1}, "turned": {"_count": 2}, "but": {"_count": 3}, "Harry": {"_count": 5}, "behind": {"_count": 3}, "Snape": {"_count": 1}, "of": {"_count": 8}, "in": {"_count": 6}, "again": {"_count": 11}, "soaring": {"_count": 1}, "then": {"_count": 2}, "toward": {"_count": 4}, "like": {"_count": 7}, "emitting": {"_count": 1}, "so": {"_count": 2}, "Ron": {"_count": 1}, "writing": {"_count": 1}, "making": {"_count": 1}, "two": {"_count": 1}, "was": {"_count": 3}, "the": {"_count": 6}, "around": {"_count": 2}, "managed": {"_count": 1}, "that": {"_count": 5}, "with": {"_count": 3}, "buffeted": {"_count": 1}, "chasing": {"_count": 1}, "after": {"_count": 3}, "while": {"_count": 1}, "clearly": {"_count": 1}, "his": {"_count": 2}, "whenever": {"_count": 1}, "when": {"_count": 3}, "fell": {"_count": 1}, "its": {"_count": 1}, "including": {"_count": 1}, "instantaneously": {"_count": 1}, "by": {"_count": 4}, "a": {"_count": 1}, "which": {"_count": 2}, "slipped": {"_count": 1}, "ricocheting": {"_count": 1}, "at": {"_count": 2}, "their": {"_count": 1}, "full": {"_count": 1}, "once": {"_count": 2}, "many": {"_count": 1}, "seemed": {"_count": 1}, "over": {"_count": 3}, "he": {"_count": 1}, "above": {"_count": 2}, "onto": {"_count": 1}, "one": {"_count": 1}, "wriggling": {"_count": 1}, "unnoticed": {"_count": 1}, "away": {"_count": 1}, "gave": {"_count": 1}, "flew": {"_count": 1}, "before": {"_count": 3}, "not": {"_count": 1}, "said": {"_count": 1}, "everyone": {"_count": 1}, "higher": {"_count": 1}, "hopefully": {"_count": 1}, "six": {"_count": 1}, "None": {"_count": 1}, "unbidden": {"_count": 1}, "itself": {"_count": 1}, "fast": {"_count": 1}, "completely": {"_count": 1}, "hurtling": {"_count": 1}, "from": {"_count": 2}, "smacking": {"_count": 1}, "squawking": {"_count": 1}, "closing": {"_count": 1}, "where": {"_count": 1}, "all": {"_count": 1}, "into": {"_count": 1}, "missing": {"_count": 1}, "The": {"_count": 1}, "flicker": {"_count": 1}, "quite": {"_count": 1}, "staying": {"_count": 1}, "His": {"_count": 1}, "were": {"_count": 1}, "gleaming": {"_count": 1}}, "PutOuter": {"_count": 3, "until": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "only": {"_count": 274, "lights": {"_count": 1}, "one": {"_count": 62}, "family": {"_count": 1}, "visitor": {"_count": 1}, "things": {"_count": 4}, "safe": {"_count": 1}, "ones": {"_count": 20}, "thing": {"_count": 17}, "reason": {"_count": 2}, "known": {"_count": 2}, "Stone": {"_count": 1}, "way": {"_count": 20}, "hint": {"_count": 1}, "place": {"_count": 3}, "remaining": {"_count": 2}, "person": {"_count": 30}, "Parselmouth": {"_count": 1}, "two": {"_count": 6}, "living": {"_count": 3}, "part": {"_count": 1}, "passenger": {"_count": 1}, "entirely": {"_count": 1}, "third": {"_count": 2}, "remains": {"_count": 1}, "times": {"_count": 1}, "people": {"_count": 7}, "girl": {"_count": 1}, "voice": {"_count": 1}, "door": {"_count": 3}, "light": {"_count": 2}, "source": {"_count": 3}, "real": {"_count": 2}, "possible": {"_count": 2}, "bright": {"_count": 1}, "allwizard": {"_count": 1}, "champion": {"_count": 2}, "photograph": {"_count": 1}, "judge": {"_count": 2}, "Hogwarts": {"_count": 1}, "wizard": {"_count": 2}, "kind": {"_count": 2}, "sound": {"_count": 4}, "outlet": {"_count": 1}, "the": {"_count": 1}, "Evidently": {"_count": 1}, "friend": {"_count": 1}, "career": {"_count": 1}, "evidence": {"_count": 1}, "useful": {"_count": 1}, "undesirable": {"_count": 1}, "he": {"_count": 1}, "sounds": {"_count": 3}, "worthwhile": {"_count": 1}, "bit": {"_count": 2}, "member": {"_count": 1}, "year": {"_count": 1}, "teacher": {"_count": 1}, "danger": {"_count": 1}, "occasion": {"_count": 1}, "window": {"_count": 1}, "other": {"_count": 3}, "question": {"_count": 2}, "students": {"_count": 1}, "glass": {"_count": 1}, "fire": {"_count": 1}, "Black": {"_count": 1}, "chance": {"_count": 2}, "record": {"_count": 1}, "shop": {"_count": 1}, "honest": {"_count": 1}, "occupied": {"_count": 1}, "book": {"_count": 1}, "personal": {"_count": 1}, "means": {"_count": 1}, "change": {"_count": 1}, "Wizarding": {"_count": 1}, "slender": {"_count": 1}, "spell": {"_count": 1}, "solid": {"_count": 1}, "unexplored": {"_count": 1}, "illumination": {"_count": 1}, "nonmourner": {"_count": 1}, "basis": {"_count": 1}, "true": {"_count": 1}, "picture": {"_count": 1}, "object": {"_count": 1}, "beings": {"_count": 1}}, "whole": {"_count": 185, "street": {"_count": 2}, "damp": {"_count": 1}, "hut": {"_count": 1}, "of": {"_count": 21}, "school": {"_count": 16}, "hall": {"_count": 3}, "class": {"_count": 9}, "castle": {"_count": 4}, "space": {"_count": 1}, "room": {"_count": 6}, "crowd": {"_count": 1}, "summer": {"_count": 1}, "kitchen": {"_count": 1}, "story": {"_count": 6}, "thing": {"_count": 20}, "lot": {"_count": 7}, "booklist": {"_count": 1}, "family": {"_count": 3}, "Slytherin": {"_count": 1}, "library": {"_count": 1}, "schools": {"_count": 1}, "business": {"_count": 1}, "mystery": {"_count": 1}, "affair": {"_count": 1}, "tunnel": {"_count": 1}, "common": {"_count": 1}, "pub": {"_count": 1}, "village": {"_count": 3}, "team": {"_count": 5}, "weeks": {"_count": 1}, "House": {"_count": 3}, "classs": {"_count": 1}, "Weasley": {"_count": 2}, "stadium": {"_count": 1}, "Ministry": {"_count": 4}, "Hall": {"_count": 3}, "Harry": {"_count": 3}, "point": {"_count": 4}, "circle": {"_count": 1}, "contents": {"_count": 1}, "Ministrys": {"_count": 2}, "Wizengamot": {"_count": 1}, "book": {"_count": 1}, "group": {"_count": 1}, "area": {"_count": 2}, "day": {"_count": 2}, "place": {"_count": 4}, "was": {"_count": 1}, "pint": {"_count": 1}, "weekend": {"_count": 1}, "fiasco": {"_count": 1}, "": {"_count": 2}, "subjects": {"_count": 1}, "Wizarding": {"_count": 2}, "world": {"_count": 2}, "said": {"_count": 1}, "match": {"_count": 1}, "You": {"_count": 1}, "unicorn": {"_count": 1}, "PotterDumbledore": {"_count": 2}, "journey": {"_count": 1}, "wide": {"_count": 1}, "Order": {"_count": 1}, "dungeon": {"_count": 1}, "hog": {"_count": 1}, "scandalous": {"_count": 1}, "truth": {"_count": 1}, "week": {"_count": 1}, "and": {"_count": 1}, "dear": {"_count": 1}}, "distance": {"_count": 31, "which": {"_count": 1}, "": {"_count": 9}, "jumping": {"_count": 1}, "Gringotts": {"_count": 1}, "several": {"_count": 1}, "and": {"_count": 3}, "to": {"_count": 1}, "he": {"_count": 2}, "then": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}, "almost": {"_count": 1}, "teaching": {"_count": 1}, "between": {"_count": 1}, "that": {"_count": 1}, "beyond": {"_count": 1}, "but": {"_count": 1}, "imagining": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 1}}, "eyes": {"_count": 31, "of": {"_count": 9}, "and": {"_count": 2}, "creating": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 5}, "behind": {"_count": 2}, "now": {"_count": 2}, "said": {"_count": 1}, "was": {"_count": 1}, "with": {"_count": 1}, "blinking": {"_count": 1}, "were": {"_count": 2}, "around": {"_count": 1}, "there": {"_count": 1}, "that": {"_count": 1}}, "pavement": {"_count": 19, "": {"_count": 8}, "just": {"_count": 1}, "but": {"_count": 1}, "beside": {"_count": 1}, "of": {"_count": 1}, "rose": {"_count": 2}, "Harry": {"_count": 1}, "and": {"_count": 1}, "then": {"_count": 1}, "drawing": {"_count": 1}, "as": {"_count": 1}}, "Put": {"_count": 1, "Outer": {"_count": 1}}, "shape": {"_count": 12, "of": {"_count": 10}, "it": {"_count": 1}, "and": {"_count": 1}}, "markings": {"_count": 2, "the": {"_count": 1}, "around": {"_count": 1}}, "Muggles": {"_count": 40, "have": {"_count": 1}, "found": {"_count": 1}, "started": {"_count": 1}, "": {"_count": 7}, "that": {"_count": 1}, "manage": {"_count": 1}, "someone": {"_count": 1}, "noticed": {"_count": 1}, "didnt": {"_count": 1}, "get": {"_count": 1}, "are": {"_count": 1}, "dont": {"_count": 1}, "looking": {"_count": 1}, "notice": {"_count": 1}, "to": {"_count": 1}, "like": {"_count": 1}, "say": {"_count": 1}, "who": {"_count": 4}, "noticing": {"_count": 1}, "but": {"_count": 1}, "an": {"_count": 1}, "inside": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "if": {"_count": 1}, "all": {"_count": 1}, "had": {"_count": 1}, "below": {"_count": 1}, "and": {"_count": 1}, "knowledge": {"_count": 1}, "their": {"_count": 1}}, "Dursleys": {"_count": 176, "dark": {"_count": 1}, "house": {"_count": 2}, "had": {"_count": 10}, "front": {"_count": 1}, "": {"_count": 33}, "car": {"_count": 4}, "he": {"_count": 3}, "hated": {"_count": 1}, "so": {"_count": 1}, "were": {"_count": 11}, "almost": {"_count": 1}, "would": {"_count": 4}, "a": {"_count": 2}, "who": {"_count": 4}, "that": {"_count": 4}, "scuttled": {"_count": 1}, "then": {"_count": 1}, "send": {"_count": 1}, "wasnt": {"_count": 1}, "to": {"_count": 5}, "drive": {"_count": 1}, "and": {"_count": 5}, "saying": {"_count": 1}, "but": {"_count": 2}, "say": {"_count": 1}, "usually": {"_count": 1}, "son": {"_count": 1}, "care": {"_count": 1}, "if": {"_count": 1}, "doorstep": {"_count": 1}, "never": {"_count": 1}, "story": {"_count": 1}, "for": {"_count": 3}, "this": {"_count": 1}, "sound": {"_count": 1}, "hear": {"_count": 1}, "knew": {"_count": 1}, "let": {"_count": 1}, "appeared": {"_count": 1}, "have": {"_count": 1}, "wake": {"_count": 1}, "bedroom": {"_count": 1}, "okay": {"_count": 1}, "heard": {"_count": 1}, "roof": {"_count": 1}, "need": {"_count": 1}, "made": {"_count": 2}, "leaving": {"_count": 2}, "was": {"_count": 1}, "the": {"_count": 1}, "best": {"_count": 1}, "in": {"_count": 3}, "at": {"_count": 2}, "knowing": {"_count": 1}, "are": {"_count": 2}, "address": {"_count": 1}, "too": {"_count": 1}, "stupid": {"_count": 1}, "uptight": {"_count": 1}, "might": {"_count": 1}, "boardedup": {"_count": 1}, "hadnt": {"_count": 1}, "thought": {"_count": 1}, "draw": {"_count": 1}, "became": {"_count": 1}, "living": {"_count": 3}, "which": {"_count": 1}, "there": {"_count": 1}, "Hmm": {"_count": 1}, "open": {"_count": 1}, "could": {"_count": 1}, "flower": {"_count": 1}, "kept": {"_count": 1}, "not": {"_count": 1}, "many": {"_count": 1}, "while": {"_count": 1}, "Harry": {"_count": 1}, "stood": {"_count": 1}, "after": {"_count": 1}, "shag": {"_count": 1}, "as": {"_count": 1}, "once": {"_count": 2}, "drew": {"_count": 1}, "said": {"_count": 1}, "lying": {"_count": 1}, "replied": {"_count": 1}, "on": {"_count": 1}, "exchanged": {"_count": 1}, "went": {"_count": 1}}, "streets": {"_count": 4, "in": {"_count": 1}, "of": {"_count": 1}, "scavenging": {"_count": 1}, "it": {"_count": 1}}, "very": {"_count": 154, "day": {"_count": 1}, "last": {"_count": 22}, "thought": {"_count": 5}, "least": {"_count": 8}, "best": {"_count": 2}, "end": {"_count": 18}, "heart": {"_count": 6}, "edge": {"_count": 8}, "sight": {"_count": 1}, "thing": {"_count": 4}, "small": {"_count": 1}, "back": {"_count": 6}, "reverse": {"_count": 1}, "countercurse": {"_count": 1}, "corridor": {"_count": 1}, "ends": {"_count": 1}, "dungeon": {"_count": 1}, "center": {"_count": 4}, "person": {"_count": 1}, "worst": {"_count": 3}, "idea": {"_count": 1}, "mention": {"_count": 1}, "moment": {"_count": 2}, "things": {"_count": 1}, "front": {"_count": 3}, "old": {"_count": 1}, "next": {"_count": 4}, "nasty": {"_count": 1}, "middle": {"_count": 7}, "short": {"_count": 1}, "heavy": {"_count": 1}, "foot": {"_count": 1}, "chance": {"_count": 1}, "forest": {"_count": 1}, "great": {"_count": 1}, "first": {"_count": 1}, "top": {"_count": 6}, "bottom": {"_count": 3}, "uncomfortable": {"_count": 1}, "instant": {"_count": 1}, "tips": {"_count": 2}, "topmost": {"_count": 1}, "ugly": {"_count": 1}, "same": {"_count": 4}, "oldest": {"_count": 1}, "night": {"_count": 1}, "friend": {"_count": 1}, "shop": {"_count": 1}, "high": {"_count": 1}, "outset": {"_count": 1}, "office": {"_count": 1}, "seat": {"_count": 1}, "eve": {"_count": 1}, "sick": {"_count": 1}, "height": {"_count": 1}, "tip": {"_count": 1}}, "moment": {"_count": 199, "for": {"_count": 2}, "but": {"_count": 1}, "it": {"_count": 4}, "Uncle": {"_count": 1}, "they": {"_count": 18}, "": {"_count": 33}, "he": {"_count": 31}, "the": {"_count": 9}, "you": {"_count": 9}, "Hermione": {"_count": 1}, "she": {"_count": 7}, "Harry": {"_count": 10}, "his": {"_count": 1}, "Ron": {"_count": 1}, "if": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 3}, "of": {"_count": 9}, "when": {"_count": 11}, "to": {"_count": 8}, "though": {"_count": 2}, "at": {"_count": 1}, "we": {"_count": 3}, "without": {"_count": 2}, "said": {"_count": 3}, "Mrs": {"_count": 1}, "our": {"_count": 1}, "which": {"_count": 1}, "I": {"_count": 5}, "because": {"_count": 1}, "that": {"_count": 4}, "thanks": {"_count": 1}, "after": {"_count": 1}, "so": {"_count": 1}, "Neville": {"_count": 1}, "with": {"_count": 1}, "Slughorn": {"_count": 1}, "had": {"_count": 2}, "in": {"_count": 1}, "But": {"_count": 1}, "Bellatrix": {"_count": 1}, "Severus": {"_count": 1}, "will": {"_count": 1}, "suspended": {"_count": 1}}, "rumors": {"_count": 3, "that": {"_count": 3}}, "point": {"_count": 88, "she": {"_count": 1}, "of": {"_count": 34}, "Her": {"_count": 1}, "at": {"_count": 2}, "is": {"_count": 6}, "said": {"_count": 3}, "in": {"_count": 3}, "Molly": {"_count": 1}, "waking": {"_count": 1}, "that": {"_count": 2}, "o": {"_count": 1}, "where": {"_count": 6}, "": {"_count": 12}, "Harry": {"_count": 1}, "much": {"_count": 1}, "the": {"_count": 2}, "Im": {"_count": 1}, "then": {"_count": 1}, "its": {"_count": 1}, "we": {"_count": 2}, "interjected": {"_count": 1}, "because": {"_count": 1}, "Mr": {"_count": 1}, "when": {"_count": 1}, "They": {"_count": 1}, "just": {"_count": 1}}, "real": {"_count": 59, "reason": {"_count": 4}, "mystry": {"_count": 1}, "magical": {"_count": 1}, "thing": {"_count": 6}, "Crabbe": {"_count": 1}, "you": {"_count": 1}, "Neville": {"_count": 2}, "Harry": {"_count": 5}, "Krum": {"_count": 1}, "culprit": {"_count": 1}, "eggs": {"_count": 1}, "MadEye": {"_count": 1}, "Moody": {"_count": 2}, "Potter": {"_count": 1}, "world": {"_count": 3}, "training": {"_count": 1}, "spells": {"_count": 1}, "money": {"_count": 1}, "one": {"_count": 8}, "memory": {"_count": 1}, "Mark": {"_count": 1}, "Horcrux": {"_count": 3}, "purpose": {"_count": 1}, "locket": {"_count": 2}, "Dumbledore": {"_count": 1}, "Mafalda": {"_count": 1}, "Reg": {"_count": 1}, "sword": {"_count": 3}, "Bathilda": {"_count": 1}, "Hermione": {"_count": 1}, "Bellatrix": {"_count": 1}}, "shoulder": {"_count": 35, "": {"_count": 15}, "pointing": {"_count": 1}, "and": {"_count": 8}, "straps": {"_count": 1}, "he": {"_count": 2}, "so": {"_count": 1}, "with": {"_count": 2}, "blades": {"_count": 1}, "Chos": {"_count": 1}, "of": {"_count": 2}, "released": {"_count": 1}}, "things": {"_count": 21, "to": {"_count": 2}, "outside": {"_count": 1}, "our": {"_count": 1}, "Ive": {"_count": 1}, "she": {"_count": 1}, "Professor": {"_count": 1}, "hes": {"_count": 1}, "he": {"_count": 4}, "weve": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "are": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 4}}, "way": {"_count": 360, "": {"_count": 46}, "up": {"_count": 10}, "to": {"_count": 28}, "you": {"_count": 7}, "they": {"_count": 10}, "down": {"_count": 17}, "but": {"_count": 4}, "back": {"_count": 20}, "who": {"_count": 2}, "did": {"_count": 1}, "he": {"_count": 18}, "Seamus": {"_count": 1}, "in": {"_count": 3}, "snapped": {"_count": 1}, "when": {"_count": 1}, "upstairs": {"_count": 1}, "until": {"_count": 2}, "Harry": {"_count": 7}, "Hagrid": {"_count": 1}, "peoples": {"_count": 1}, "things": {"_count": 3}, "along": {"_count": 2}, "there": {"_count": 2}, "the": {"_count": 11}, "she": {"_count": 4}, "out": {"_count": 13}, "Colin": {"_count": 1}, "toward": {"_count": 2}, "Justin": {"_count": 1}, "one": {"_count": 1}, "downstairs": {"_count": 1}, "Percy": {"_count": 1}, "Lockhart": {"_count": 1}, "forward": {"_count": 2}, "of": {"_count": 9}, "glowing": {"_count": 1}, "I": {"_count": 3}, "through": {"_count": 3}, "said": {"_count": 6}, "and": {"_count": 4}, "into": {"_count": 6}, "Id": {"_count": 1}, "before": {"_count": 1}, "do": {"_count": 1}, "my": {"_count": 1}, "that": {"_count": 4}, "Professor": {"_count": 1}, "practice": {"_count": 1}, "still": {"_count": 1}, "Potter": {"_count": 2}, "a": {"_count": 1}, "or": {"_count": 1}, "his": {"_count": 2}, "theyre": {"_count": 1}, "as": {"_count": 6}, "their": {"_count": 1}, "weve": {"_count": 1}, "Ludo": {"_count": 1}, "from": {"_count": 1}, "off": {"_count": 1}, "Arthur": {"_count": 1}, "Winky": {"_count": 1}, "Hermione": {"_count": 2}, "He": {"_count": 1}, "across": {"_count": 3}, "over": {"_count": 4}, "Dark": {"_count": 1}, "Ron": {"_count": 1}, "backing": {"_count": 1}, "here": {"_count": 1}, "around": {"_count": 2}, "Ive": {"_count": 1}, "Crouchs": {"_count": 1}, "it": {"_count": 5}, "your": {"_count": 1}, "Im": {"_count": 1}, "well": {"_count": 1}, "were": {"_count": 2}, "so": {"_count": 1}, "with": {"_count": 3}, "inside": {"_count": 2}, "her": {"_count": 1}, "youre": {"_count": 3}, "Fang": {"_count": 1}, "yeh": {"_count": 1}, "an": {"_count": 1}, "oblivious": {"_count": 1}, "quickly": {"_count": 1}, "ahead": {"_count": 2}, "get": {"_count": 1}, "once": {"_count": 1}, "hedve": {"_count": 1}, "Phlegm": {"_count": 1}, "see": {"_count": 1}, "twenty": {"_count": 1}, "for": {"_count": 1}, "Hogwarts": {"_count": 1}, "realizing": {"_count": 1}, "Malfoy": {"_count": 1}, "just": {"_count": 1}, "maybe": {"_count": 1}, "please": {"_count": 1}, "Ted": {"_count": 1}, "Scrimgeour": {"_count": 1}, "theyve": {"_count": 1}, "cant": {"_count": 1}, "everyone": {"_count": 1}, "My": {"_count": 1}, "brushed": {"_count": 1}, "Mr": {"_count": 1}, "Voldemort": {"_count": 1}, "Griphook": {"_count": 1}, "keep": {"_count": 1}, "knocking": {"_count": 1}, "Snape": {"_count": 1}}, "best": {"_count": 133, "place": {"_count": 1}, "morning": {"_count": 1}, "witches": {"_count": 1}, "I": {"_count": 3}, "wand": {"_count": 1}, "birthday": {"_count": 1}, "game": {"_count": 1}, "team": {"_count": 3}, "Christmas": {"_count": 1}, "of": {"_count": 11}, "thing": {"_count": 3}, "teachers": {"_count": 1}, "he": {"_count": 4}, "": {"_count": 5}, "evening": {"_count": 1}, "grades": {"_count": 1}, "spell": {"_count": 1}, "Have": {"_count": 1}, "house": {"_count": 1}, "broom": {"_count": 3}, "your": {"_count": 1}, "one": {"_count": 2}, "man": {"_count": 3}, "student": {"_count": 2}, "plan": {"_count": 1}, "teacher": {"_count": 1}, "story": {"_count": 1}, "weapons": {"_count": 1}, "bit": {"_count": 2}, "Hagrid": {"_count": 1}, "families": {"_count": 1}, "Defense": {"_count": 3}, "ruddy": {"_count": 1}, "chairs": {"_count": 1}, "Seeker": {"_count": 1}, "started": {"_count": 1}, "practice": {"_count": 1}, "times": {"_count": 1}, "part": {"_count": 3}, "sport": {"_count": 1}, "way": {"_count": 6}, "racing": {"_count": 1}, "Beater": {"_count": 1}, "places": {"_count": 1}, "For": {"_count": 1}, "from": {"_count": 1}, "moment": {"_count": 2}, "job": {"_count": 1}, "Seekers": {"_count": 1}, "Auror": {"_count": 1}, "you": {"_count": 4}, "after": {"_count": 1}, "looking": {"_count": 1}, "things": {"_count": 2}, "Rita": {"_count": 1}, "in": {"_count": 7}, "whether": {"_count": 1}, "wizards": {"_count": 1}, "we": {"_count": 2}, "lessons": {"_count": 1}, "fires": {"_count": 1}, "seats": {"_count": 1}, "friend": {"_count": 2}, "experts": {"_count": 1}, "chance": {"_count": 2}, "and": {"_count": 1}, "position": {"_count": 1}, "policy": {"_count": 1}, "Keeper": {"_count": 1}, "kiss": {"_count": 1}, "potionmaker": {"_count": 2}, "Quidditch": {"_count": 1}, "laid": {"_count": 1}, "loved": {"_count": 1}, "there": {"_count": 1}, "hope": {"_count": 1}, "although": {"_count": 1}, "at": {"_count": 1}, "disguises": {"_count": 1}}, "future": {"_count": 11, "there": {"_count": 1}, "": {"_count": 3}, "so": {"_count": 1}, "Professor": {"_count": 1}, "is": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "youre": {"_count": 1}, "may": {"_count": 1}}, "top": {"_count": 232, "of": {"_count": 179}, "": {"_count": 5}, "row": {"_count": 1}, "parcel": {"_count": 1}, "Erised": {"_count": 1}, "branches": {"_count": 2}, "Ron": {"_count": 1}, "and": {"_count": 4}, "layer": {"_count": 1}, "fell": {"_count": 1}, "CATCH": {"_count": 1}, "great": {"_count": 1}, "left": {"_count": 1}, "people": {"_count": 2}, "table": {"_count": 9}, "piece": {"_count": 1}, "students": {"_count": 2}, "job": {"_count": 3}, "step": {"_count": 5}, "wall": {"_count": 1}, "grade": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 2}, "back": {"_count": 1}, "levels": {"_count": 1}, "floor": {"_count": 2}, "spot": {"_count": 1}, "third": {"_count": 1}}, "right": {"_count": 129, "place": {"_count": 5}, "person": {"_count": 3}, "length": {"_count": 1}, "the": {"_count": 1}, "cheered": {"_count": 1}, "direction": {"_count": 6}, "answers": {"_count": 1}, "to": {"_count": 14}, "": {"_count": 7}, "Are": {"_count": 1}, "end": {"_count": 1}, "places": {"_count": 1}, "grate": {"_count": 1}, "way": {"_count": 10}, "potion": {"_count": 1}, "House": {"_count": 2}, "words": {"_count": 2}, "Harry": {"_count": 1}, "aura": {"_count": 1}, "height": {"_count": 1}, "thing": {"_count": 11}, "of": {"_count": 8}, "screening": {"_count": 1}, "Ron": {"_count": 1}, "room": {"_count": 1}, "parts": {"_count": 1}, "sock": {"_count": 1}, "wall": {"_count": 1}, "door": {"_count": 2}, "book": {"_count": 1}, "hand": {"_count": 2}, "fork": {"_count": 1}, "therefore": {"_count": 1}, "time": {"_count": 2}, "however": {"_count": 1}, "idea": {"_count": 2}, "bore": {"_count": 2}, "people": {"_count": 2}, "leading": {"_count": 1}, "order": {"_count": 1}, "number": {"_count": 1}, "level": {"_count": 1}, "Dai": {"_count": 1}, "track": {"_count": 2}, "goal": {"_count": 1}, "one": {"_count": 2}, "trying": {"_count": 1}, "that": {"_count": 1}, "destiny": {"_count": 1}, "shelves": {"_count": 1}, "and": {"_count": 1}, "page": {"_count": 1}, "effect": {"_count": 1}, "impression": {"_count": 1}, "ear": {"_count": 1}, "kind": {"_count": 1}, "was": {"_count": 1}, "side": {"_count": 3}, "by": {"_count": 1}, "seats": {"_count": 1}, "moment": {"_count": 1}}, "silence": {"_count": 38, "around": {"_count": 2}, "the": {"_count": 1}, "": {"_count": 14}, "that": {"_count": 3}, "broken": {"_count": 1}, "was": {"_count": 4}, "and": {"_count": 3}, "pressing": {"_count": 1}, "spiral": {"_count": 1}, "stretched": {"_count": 1}, "oppressive": {"_count": 1}, "came": {"_count": 1}, "seemed": {"_count": 1}, "The": {"_count": 1}, "but": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}}, "sky": {"_count": 63, "and": {"_count": 4}, "as": {"_count": 2}, "outside": {"_count": 8}, "": {"_count": 17}, "a": {"_count": 2}, "became": {"_count": 1}, "was": {"_count": 4}, "motionless": {"_count": 1}, "lightened": {"_count": 1}, "had": {"_count": 1}, "lets": {"_count": 1}, "again": {"_count": 1}, "it": {"_count": 1}, "overhead": {"_count": 1}, "at": {"_count": 1}, "last": {"_count": 1}, "they": {"_count": 1}, "now": {"_count": 1}, "on": {"_count": 1}, "above": {"_count": 4}, "growing": {"_count": 1}, "Smith": {"_count": 1}, "in": {"_count": 2}, "And": {"_count": 1}, "every": {"_count": 1}, "stretched": {"_count": 1}, "from": {"_count": 1}, "which": {"_count": 1}}, "motorcycle": {"_count": 4, "was": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}}, "size": {"_count": 51, "of": {"_count": 49}, "and": {"_count": 1}, "o": {"_count": 1}}, "giant": {"_count": 49, "climbing": {"_count": 1}, "": {"_count": 5}, "he": {"_count": 1}, "turning": {"_count": 1}, "was": {"_count": 1}, "hourglasses": {"_count": 4}, "heads": {"_count": 1}, "clock": {"_count": 1}, "squid": {"_count": 12}, "threeheaded": {"_count": 1}, "snake": {"_count": 1}, "face": {"_count": 1}, "serpent": {"_count": 1}, "oak": {"_count": 1}, "slug": {"_count": 1}, "fruit": {"_count": 1}, "communities": {"_count": 1}, "horses": {"_count": 1}, "within": {"_count": 1}, "hourglass": {"_count": 1}, "appeared": {"_count": 1}, "whose": {"_count": 1}, "peppering": {"_count": 1}, "its": {"_count": 1}, "Grawp": {"_count": 2}, "Snitch": {"_count": 1}, "spider": {"_count": 1}, "meandering": {"_count": 1}, "now": {"_count": 1}, "swung": {"_count": 1}}, "bundle": {"_count": 5, "of": {"_count": 5}}, "London": {"_count": 1, "Underground": {"_count": 1}}, "arm": {"_count": 25, "as": {"_count": 2}, "and": {"_count": 8}, "to": {"_count": 2}, "Ron": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 4}, "of": {"_count": 6}, "Harry": {"_count": 1}}, "low": {"_count": 11, "garden": {"_count": 2}, "rolls": {"_count": 1}, "woolly": {"_count": 1}, "ceiling": {"_count": 4}, "grumble": {"_count": 1}, "door": {"_count": 1}, "food": {"_count": 1}}, "doorstep": {"_count": 6, "took": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "she": {"_count": 1}, "of": {"_count": 1}}, "three": {"_count": 84, "of": {"_count": 45}, "boys": {"_count": 1}, "balls": {"_count": 1}, "Dursleys": {"_count": 4}, "Weasley": {"_count": 1}, "Irish": {"_count": 1}, "largest": {"_count": 1}, "champions": {"_count": 3}, "stood": {"_count": 1}, "it": {"_count": 1}, "small": {"_count": 1}, "trunks": {"_count": 1}, "course": {"_count": 1}, "high": {"_count": 1}, "tall": {"_count": 1}, "goal": {"_count": 1}, "Chasers": {"_count": 1}, "decks": {"_count": 1}, "teachers": {"_count": 1}, "arrests": {"_count": 1}, "Ds": {"_count": 3}, "objects": {"_count": 1}, "night": {"_count": 1}, "brothers": {"_count": 4}, "Peverell": {"_count": 1}, "miniature": {"_count": 1}, "wands": {"_count": 1}, "highest": {"_count": 1}, "girls": {"_count": 1}, "Malfoys": {"_count": 1}}, "little": {"_count": 83, "bundle": {"_count": 1}, "town": {"_count": 1}, "girls": {"_count": 1}, "boats": {"_count": 1}, "plastic": {"_count": 1}, "round": {"_count": 1}, "bottle": {"_count": 4}, "tyke": {"_count": 1}, "hair": {"_count": 1}, "square": {"_count": 1}, "window": {"_count": 1}, "black": {"_count": 2}, "panes": {"_count": 1}, "knight": {"_count": 1}, "thatched": {"_count": 1}, "health": {"_count": 1}, "number": {"_count": 1}, "boys": {"_count": 1}, "Creevey": {"_count": 1}, "girl": {"_count": 5}, "he": {"_count": 1}, "knot": {"_count": 1}, "photographic": {"_count": 1}, "scumbag": {"_count": 1}, "blackandwhite": {"_count": 1}, "squares": {"_count": 1}, "of": {"_count": 2}, "man": {"_count": 2}, "flat": {"_count": 1}, "shop": {"_count": 1}, "spindle": {"_count": 1}, "group": {"_count": 2}, "cache": {"_count": 1}, "table": {"_count": 2}, "gnome": {"_count": 1}, "stone": {"_count": 1}, "grunting": {"_count": 1}, "elf": {"_count": 2}, "village": {"_count": 1}, "witch": {"_count": 1}, "witchs": {"_count": 1}, "wizard": {"_count": 4}, "color": {"_count": 2}, "golden": {"_count": 2}, "church": {"_count": 2}, "lane": {"_count": 1}, "woman": {"_count": 1}, "radio": {"_count": 1}, "goblin": {"_count": 2}, "body": {"_count": 1}, "hall": {"_count": 1}, "kitchen": {"_count": 1}, "landing": {"_count": 1}, "cottage": {"_count": 1}, "pouch": {"_count": 1}, "inns": {"_count": 1}, "colored": {"_count": 1}, "freak": {"_count": 1}, "whelps": {"_count": 1}, "Charms": {"_count": 1}, "painted": {"_count": 1}, "thicket": {"_count": 1}, "family": {"_count": 1}}, "twinkling": {"_count": 1, "light": {"_count": 1}}, "celebrations": {"_count": 2, "": {"_count": 2}}, "engine": {"_count": 12, "into": {"_count": 1}, "drifted": {"_count": 1}, "and": {"_count": 1}, "feel": {"_count": 1}, "began": {"_count": 1}, "died": {"_count": 1}, "had": {"_count": 1}, "roared": {"_count": 2}, "end": {"_count": 1}, "pulling": {"_count": 1}, "the": {"_count": 1}}, "night": {"_count": 154, "": {"_count": 25}, "when": {"_count": 10}, "went": {"_count": 1}, "before": {"_count": 13}, "my": {"_count": 3}, "Hedwig": {"_count": 1}, "skies": {"_count": 1}, "how": {"_count": 1}, "trying": {"_count": 1}, "they": {"_count": 3}, "drenched": {"_count": 1}, "air": {"_count": 7}, "had": {"_count": 1}, "patrolling": {"_count": 1}, "of": {"_count": 10}, "he": {"_count": 14}, "Black": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 3}, "here": {"_count": 1}, "hours": {"_count": 1}, "Lily": {"_count": 1}, "that": {"_count": 14}, "in": {"_count": 4}, "after": {"_count": 1}, "once": {"_count": 1}, "about": {"_count": 1}, "Avada": {"_count": 1}, "Hes": {"_count": 1}, "we": {"_count": 2}, "Record": {"_count": 1}, "as": {"_count": 2}, "sounds": {"_count": 1}, "Sirius": {"_count": 1}, "Voldemort": {"_count": 1}, "to": {"_count": 1}, "Hermione": {"_count": 1}, "or": {"_count": 1}, "Mr": {"_count": 1}, "barely": {"_count": 1}, "breeze": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 1}, "thinking": {"_count": 2}, "Dumbledore": {"_count": 1}, "gazing": {"_count": 1}, "flying": {"_count": 1}, "He": {"_count": 1}, "is": {"_count": 1}, "was": {"_count": 3}, "across": {"_count": 1}, "Lord": {"_count": 1}, "your": {"_count": 1}}, "step": {"_count": 4, "of": {"_count": 1}, "to": {"_count": 1}, "below": {"_count": 1}, "beneath": {"_count": 1}}, "neat": {"_count": 2, "hedges": {"_count": 1}, "square": {"_count": 1}}, "inky": {"_count": 3, "sky": {"_count": 1}, "blueblack": {"_count": 1}, "blotches": {"_count": 1}}, "letter": {"_count": 85, "beside": {"_count": 1}, "open": {"_count": 1}, "to": {"_count": 5}, "back": {"_count": 2}, "in": {"_count": 1}, "from": {"_count": 7}, "but": {"_count": 3}, "writer": {"_count": 1}, "Dumbledore": {"_count": 1}, "and": {"_count": 7}, "carefully": {"_count": 1}, "imagine": {"_count": 1}, "P": {"_count": 1}, "first": {"_count": 1}, "": {"_count": 8}, "Id": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 2}, "away": {"_count": 2}, "with": {"_count": 1}, "you": {"_count": 2}, "last": {"_count": 1}, "toward": {"_count": 1}, "as": {"_count": 1}, "again": {"_count": 3}, "I": {"_count": 2}, "Were": {"_count": 1}, "he": {"_count": 2}, "after": {"_count": 1}, "off": {"_count": 1}, "attached": {"_count": 1}, "thinking": {"_count": 1}, "at": {"_count": 2}, "out": {"_count": 2}, "inside": {"_count": 1}, "through": {"_count": 1}, "Harry": {"_count": 2}, "now": {"_count": 1}, "then": {"_count": 2}, "tied": {"_count": 1}, "into": {"_count": 1}, "box": {"_count": 1}, "clutched": {"_count": 1}, "might": {"_count": 1}, "for": {"_count": 1}, "this": {"_count": 1}, "was": {"_count": 1}, "S": {"_count": 1}}, "milk": {"_count": 6, "bottles": {"_count": 1}, "jug": {"_count": 4}, "bottle": {"_count": 1}}, "brass": {"_count": 5, "number": {"_count": 1}, "doorknob": {"_count": 1}, "handle": {"_count": 1}, "knocker": {"_count": 2}}, "photographs": {"_count": 5, "on": {"_count": 1}, "showed": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "mantelpiece": {"_count": 14, "really": {"_count": 1}, "books": {"_count": 1}, "": {"_count": 5}, "which": {"_count": 1}, "beaming": {"_count": 1}, "slightly": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 3}}, "fair": {"_count": 1, "playing": {"_count": 1}}, "day": {"_count": 70, "": {"_count": 6}, "to": {"_count": 3}, "somewhere": {"_count": 1}, "before": {"_count": 8}, "Harry": {"_count": 2}, "Harrys": {"_count": 1}, "off": {"_count": 2}, "I": {"_count": 2}, "they": {"_count": 2}, "when": {"_count": 3}, "reading": {"_count": 1}, "everywhere": {"_count": 1}, "an": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 3}, "of": {"_count": 3}, "Ritas": {"_count": 1}, "after": {"_count": 2}, "your": {"_count": 1}, "in": {"_count": 3}, "out": {"_count": 1}, "wore": {"_count": 1}, "seeking": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 2}, "which": {"_count": 1}, "drawing": {"_count": 1}, "ahead": {"_count": 1}, "that": {"_count": 4}, "said": {"_count": 1}, "attempting": {"_count": 1}, "Ron": {"_count": 1}, "for": {"_count": 1}, "including": {"_count": 1}, "nor": {"_count": 1}, "since": {"_count": 1}, "sharing": {"_count": 1}, "inside": {"_count": 1}, "Aberforth": {"_count": 1}}, "kitchen": {"_count": 185, "and": {"_count": 13}, "": {"_count": 47}, "as": {"_count": 2}, "with": {"_count": 5}, "doors": {"_count": 1}, "for": {"_count": 2}, "the": {"_count": 3}, "still": {"_count": 1}, "door": {"_count": 7}, "chimney": {"_count": 1}, "chair": {"_count": 1}, "table": {"_count": 12}, "to": {"_count": 7}, "clean": {"_count": 1}, "clutching": {"_count": 2}, "gave": {"_count": 1}, "mantelpiece": {"_count": 2}, "his": {"_count": 2}, "window": {"_count": 10}, "leaving": {"_count": 1}, "Aunt": {"_count": 2}, "doorway": {"_count": 1}, "below": {"_count": 2}, "looking": {"_count": 2}, "amid": {"_count": 1}, "both": {"_count": 1}, "they": {"_count": 2}, "again": {"_count": 1}, "by": {"_count": 1}, "seemed": {"_count": 1}, "between": {"_count": 1}, "beaming": {"_count": 1}, "who": {"_count": 1}, "were": {"_count": 1}, "many": {"_count": 1}, "Harry": {"_count": 1}, "dropped": {"_count": 1}, "sill": {"_count": 1}, "fireplace": {"_count": 2}, "away": {"_count": 1}, "echoing": {"_count": 1}, "was": {"_count": 2}, "Moody": {"_count": 1}, "unit": {"_count": 1}, "most": {"_count": 1}, "Mrs": {"_count": 1}, "especially": {"_count": 1}, "slipped": {"_count": 1}, "fire": {"_count": 2}, "at": {"_count": 1}, "passing": {"_count": 1}, "when": {"_count": 1}, "surfaces": {"_count": 1}, "there": {"_count": 1}, "twisting": {"_count": 1}, "spoke": {"_count": 1}, "just": {"_count": 1}, "it": {"_count": 1}, "where": {"_count": 3}, "she": {"_count": 2}, "uncomfortably": {"_count": 1}, "which": {"_count": 1}, "might": {"_count": 1}, "wall": {"_count": 1}, "in": {"_count": 1}, "cupboard": {"_count": 1}, "out": {"_count": 1}, "sideboard": {"_count": 1}, "did": {"_count": 1}, "downstairs": {"_count": 1}, "now": {"_count": 1}, "cups": {"_count": 1}, "together": {"_count": 1}, "wont": {"_count": 1}}, "sound": {"_count": 109, "of": {"_count": 88}, "and": {"_count": 1}, "faded": {"_count": 1}, "strangely": {"_count": 1}, "was": {"_count": 2}, "then": {"_count": 1}, "as": {"_count": 1}, "echoed": {"_count": 1}, "": {"_count": 5}, "reminded": {"_count": 1}, "had": {"_count": 2}, "would": {"_count": 1}, "often": {"_count": 1}, "must": {"_count": 1}, "he": {"_count": 1}, "Dobby": {"_count": 1}}, "frying": {"_count": 6, "pan": {"_count": 6}}, "stove": {"_count": 11, "": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "while": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "Mrs": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}}, "dream": {"_count": 15, "he": {"_count": 3}, "at": {"_count": 1}, "team": {"_count": 1}, "broom": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 2}, "state": {"_count": 1}, "the": {"_count": 1}, "or": {"_count": 1}, "in": {"_count": 1}, "Ron": {"_count": 1}, "but": {"_count": 1}}, "bacon": {"_count": 3, "": {"_count": 2}, "eggs": {"_count": 1}}, "cupboard": {"_count": 20, "under": {"_count": 7}, "to": {"_count": 1}, "in": {"_count": 2}, "Hagrid": {"_count": 1}, "door": {"_count": 3}, "": {"_count": 2}, "was": {"_count": 1}, "full": {"_count": 1}, "and": {"_count": 1}, "where": {"_count": 1}}, "stairs": {"_count": 178, "was": {"_count": 2}, "looking": {"_count": 5}, "": {"_count": 55}, "across": {"_count": 1}, "to": {"_count": 13}, "by": {"_count": 2}, "with": {"_count": 1}, "and": {"_count": 22}, "halfdressed": {"_count": 1}, "Harry": {"_count": 4}, "into": {"_count": 4}, "prefect": {"_count": 1}, "toward": {"_count": 4}, "three": {"_count": 3}, "for": {"_count": 2}, "grabbed": {"_count": 1}, "one": {"_count": 1}, "again": {"_count": 3}, "slipped": {"_count": 1}, "Lupin": {"_count": 1}, "blessing": {"_count": 1}, "every": {"_count": 1}, "in": {"_count": 2}, "creaked": {"_count": 1}, "he": {"_count": 3}, "as": {"_count": 5}, "his": {"_count": 1}, "stood": {"_count": 1}, "quickly": {"_count": 1}, "straight": {"_count": 1}, "right": {"_count": 1}, "behind": {"_count": 2}, "together": {"_count": 1}, "gazing": {"_count": 1}, "very": {"_count": 1}, "carrying": {"_count": 1}, "said": {"_count": 3}, "Hold": {"_count": 1}, "past": {"_count": 1}, "but": {"_count": 1}, "before": {"_count": 1}, "turned": {"_count": 1}, "they": {"_count": 1}, "outside": {"_count": 1}, "around": {"_count": 1}, "after": {"_count": 1}, "about": {"_count": 1}, "two": {"_count": 1}, "everlasting": {"_count": 1}, "slowing": {"_count": 1}, "Ron": {"_count": 2}, "although": {"_count": 1}, "Reductol": {"_count": 1}, "is": {"_count": 1}, "until": {"_count": 1}, "taking": {"_count": 1}, "from": {"_count": 1}, "began": {"_count": 1}, "where": {"_count": 1}, "brandishing": {"_count": 1}}, "hall": {"_count": 149, "into": {"_count": 2}, "slamming": {"_count": 1}, "": {"_count": 39}, "Harry": {"_count": 4}, "and": {"_count": 21}, "was": {"_count": 6}, "full": {"_count": 2}, "spotted": {"_count": 1}, "quickly": {"_count": 1}, "his": {"_count": 4}, "calling": {"_count": 1}, "carpet": {"_count": 1}, "were": {"_count": 1}, "as": {"_count": 2}, "Hermione": {"_count": 1}, "to": {"_count": 8}, "with": {"_count": 4}, "he": {"_count": 3}, "echoed": {"_count": 1}, "The": {"_count": 1}, "creak": {"_count": 1}, "walking": {"_count": 1}, "while": {"_count": 1}, "on": {"_count": 2}, "which": {"_count": 2}, "looking": {"_count": 3}, "erupted": {"_count": 1}, "behind": {"_count": 3}, "once": {"_count": 1}, "toward": {"_count": 1}, "became": {"_count": 1}, "she": {"_count": 2}, "we": {"_count": 1}, "its": {"_count": 1}, "Stunning": {"_count": 1}, "above": {"_count": 1}, "Mrs": {"_count": 2}, "then": {"_count": 1}, "had": {"_count": 1}, "past": {"_count": 1}, "wall": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 1}, "burst": {"_count": 1}, "led": {"_count": 1}, "but": {"_count": 1}, "more": {"_count": 1}, "where": {"_count": 2}, "from": {"_count": 1}, "of": {"_count": 1}, "Dedalus": {"_count": 1}, "halfexpecting": {"_count": 1}, "however": {"_count": 1}, "below": {"_count": 1}, "casting": {"_count": 1}, "Death": {"_count": 1}}, "new": {"_count": 65, "computer": {"_count": 1}, "Nimbus": {"_count": 1}, "password": {"_count": 4}, "tree": {"_count": 1}, "books": {"_count": 1}, "years": {"_count": 1}, "Slytherin": {"_count": 2}, "ingredients": {"_count": 1}, "term": {"_count": 3}, "owner": {"_count": 1}, "school": {"_count": 2}, "season": {"_count": 1}, "notice": {"_count": 1}, "jug": {"_count": 1}, "owners": {"_count": 1}, "regime": {"_count": 4}, "students": {"_count": 1}, "Defense": {"_count": 1}, "stand": {"_count": 1}, "year": {"_count": 1}, "path": {"_count": 1}, "Cleansweep": {"_count": 1}, "Gryffindor": {"_count": 1}, "prefects": {"_count": 1}, "personll": {"_count": 1}, "Keeper": {"_count": 1}, "position": {"_count": 1}, "arrivals": {"_count": 3}, "rule": {"_count": 1}, "approach": {"_count": 1}, "door": {"_count": 1}, "fashion": {"_count": 1}, "room": {"_count": 1}, "arrival": {"_count": 3}, "feeling": {"_count": 1}, "Minister": {"_count": 2}, "Ministers": {"_count": 1}, "Captain": {"_count": 1}, "one": {"_count": 1}, "Chaser": {"_count": 1}, "extralarge": {"_count": 1}, "festive": {"_count": 1}, "pair": {"_count": 1}, "Flutterby": {"_count": 1}, "customers": {"_count": 1}, "wand": {"_count": 1}, "Wizarding": {"_count": 1}, "tent": {"_count": 1}, "corridor": {"_count": 1}, "world": {"_count": 1}}, "second": {"_count": 130, "television": {"_count": 1}, "Harry": {"_count": 1}, "room": {"_count": 2}, "week": {"_count": 3}, "year": {"_count": 3}, "time": {"_count": 17}, "left": {"_count": 1}, "on": {"_count": 1}, "spell": {"_count": 1}, "floor": {"_count": 12}, "term": {"_count": 1}, "fallen": {"_count": 1}, "Bludger": {"_count": 1}, "voice": {"_count": 6}, "man": {"_count": 4}, "mans": {"_count": 1}, "landing": {"_count": 5}, "from": {"_count": 2}, "row": {"_count": 4}, "crash": {"_count": 1}, "course": {"_count": 1}, "task": {"_count": 12}, "one": {"_count": 2}, "Ministry": {"_count": 1}, "copy": {"_count": 1}, "lock": {"_count": 1}, "wand": {"_count": 1}, "message": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}, "of": {"_count": 6}, "pair": {"_count": 1}, "years": {"_count": 1}, "gargoyle": {"_count": 1}, "door": {"_count": 3}, "deck": {"_count": 1}, "Hogsmeade": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 2}, "when": {"_count": 1}, "niffler": {"_count": 1}, "Death": {"_count": 2}, "page": {"_count": 1}, "cauldron": {"_count": 1}, "piece": {"_count": 1}, "occasion": {"_count": 1}, "he": {"_count": 1}, "broom": {"_count": 2}, "sack": {"_count": 1}, "sheet": {"_count": 2}, "night": {"_count": 1}, "PICK": {"_count": 1}, "brother": {"_count": 6}, "trolley": {"_count": 1}}, "racing": {"_count": 2, "bike": {"_count": 2}}, "times": {"_count": 7, "Dudley": {"_count": 1}, "said": {"_count": 2}, "flown": {"_count": 1}, "he": {"_count": 1}, "when": {"_count": 1}, "come": {"_count": 1}}, "nose": {"_count": 11, "": {"_count": 2}, "Ron": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 3}, "with": {"_count": 3}, "and": {"_count": 1}}, "car": {"_count": 75, "crash": {"_count": 3}, "": {"_count": 20}, "in": {"_count": 2}, "when": {"_count": 2}, "speeding": {"_count": 1}, "and": {"_count": 5}, "mowed": {"_count": 1}, "to": {"_count": 2}, "hed": {"_count": 1}, "shot": {"_count": 2}, "lower": {"_count": 1}, "the": {"_count": 3}, "could": {"_count": 1}, "you": {"_count": 2}, "Mrs": {"_count": 1}, "they": {"_count": 1}, "said": {"_count": 1}, "because": {"_count": 1}, "rose": {"_count": 1}, "Harry": {"_count": 1}, "skimmed": {"_count": 1}, "than": {"_count": 1}, "had": {"_count": 1}, "dropped": {"_count": 1}, "turned": {"_count": 1}, "with": {"_count": 2}, "it": {"_count": 1}, "was": {"_count": 2}, "rumbled": {"_count": 1}, "disappeared": {"_count": 1}, "term": {"_count": 1}, "eh": {"_count": 1}, "were": {"_count": 1}, "didnt": {"_count": 1}, "wound": {"_count": 1}, "a": {"_count": 1}, "doors": {"_count": 1}, "sweeping": {"_count": 1}, "moved": {"_count": 1}, "without": {"_count": 1}, "knocking": {"_count": 1}}, "rest": {"_count": 272, "of": {"_count": 243}, "safe": {"_count": 1}, "as": {"_count": 1}, "And": {"_count": 2}, "": {"_count": 5}, "onto": {"_count": 1}, "joined": {"_count": 1}, "and": {"_count": 1}, "thinking": {"_count": 1}, "o": {"_count": 2}, "by": {"_count": 1}, "could": {"_count": 1}, "put": {"_count": 2}, "For": {"_count": 1}, "continued": {"_count": 1}, "are": {"_count": 1}, "was": {"_count": 1}, "looking": {"_count": 1}, "Greyback": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}, "were": {"_count": 1}}, "boys": {"_count": 60, "in": {"_count": 2}, "mother": {"_count": 2}, "through": {"_count": 1}, "turned": {"_count": 1}, "dormitories": {"_count": 8}, "staircase": {"_count": 4}, "beds": {"_count": 1}, "tormented": {"_count": 1}, "had": {"_count": 1}, "back": {"_count": 1}, "entered": {"_count": 1}, "though": {"_count": 1}, "tent": {"_count": 2}, "story": {"_count": 1}, "name": {"_count": 2}, "set": {"_count": 1}, "standing": {"_count": 1}, "the": {"_count": 1}, "could": {"_count": 1}, "future": {"_count": 1}, "protection": {"_count": 1}, "stopped": {"_count": 1}, "who": {"_count": 1}, "know": {"_count": 1}, "said": {"_count": 1}, "stairs": {"_count": 2}, "dormitory": {"_count": 4}, "seemed": {"_count": 1}, "father": {"_count": 1}, "surname": {"_count": 1}, "": {"_count": 1}, "tittered": {"_count": 2}, "filed": {"_count": 2}, "bathroom": {"_count": 2}, "around": {"_count": 1}, "best": {"_count": 1}, "face": {"_count": 1}, "last": {"_count": 1}, "sharing": {"_count": 1}}, "time": {"_count": 244, "Dudley": {"_count": 1}, "": {"_count": 45}, "they": {"_count": 20}, "he": {"_count": 23}, "there": {"_count": 1}, "the": {"_count": 7}, "hed": {"_count": 2}, "came": {"_count": 3}, "theyve": {"_count": 1}, "she": {"_count": 5}, "Halloween": {"_count": 1}, "wonderful": {"_count": 1}, "froze": {"_count": 1}, "on": {"_count": 1}, "with": {"_count": 3}, "Fudge": {"_count": 1}, "of": {"_count": 8}, "and": {"_count": 13}, "until": {"_count": 2}, "youve": {"_count": 1}, "when": {"_count": 2}, "I": {"_count": 11}, "Harry": {"_count": 7}, "may": {"_count": 1}, "to": {"_count": 5}, "had": {"_count": 3}, "Mrs": {"_count": 1}, "sir": {"_count": 2}, "while": {"_count": 1}, "but": {"_count": 4}, "is": {"_count": 2}, "Sirius": {"_count": 1}, "was": {"_count": 2}, "limit": {"_count": 5}, "it": {"_count": 3}, "should": {"_count": 1}, "waiting": {"_count": 1}, "now": {"_count": 2}, "we": {"_count": 3}, "said": {"_count": 2}, "though": {"_count": 1}, "Ron": {"_count": 1}, "that": {"_count": 4}, "eight": {"_count": 1}, "too": {"_count": 1}, "at": {"_count": 1}, "feeling": {"_count": 1}, "Harrys": {"_count": 1}, "giving": {"_count": 1}, "which": {"_count": 1}, "if": {"_count": 1}, "Potter": {"_count": 1}, "weve": {"_count": 1}, "being": {"_count": 5}, "must": {"_count": 1}, "Ernie": {"_count": 1}, "Hermione": {"_count": 2}, "you": {"_count": 1}, "Hagrid": {"_count": 1}, "\u2018Oh": {"_count": 1}, "wasnt": {"_count": 1}, "would": {"_count": 1}, "its": {"_count": 1}, "before": {"_count": 1}, "by": {"_count": 1}, "Hokey": {"_count": 1}, "so": {"_count": 1}, "Pomona": {"_count": 1}, "comes": {"_count": 1}, "wed": {"_count": 1}, "for": {"_count": 2}, "does": {"_count": 1}, "not": {"_count": 1}, "because": {"_count": 1}, "snapped": {"_count": 1}, "remaining": {"_count": 1}}, "plates": {"_count": 9, "of": {"_count": 1}, "leaving": {"_count": 2}, "and": {"_count": 1}, "outside": {"_count": 1}, "to": {"_count": 1}, "over": {"_count": 1}, "continuing": {"_count": 1}, "below": {"_count": 1}}, "table": {"_count": 295, "which": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 37}, "": {"_count": 73}, "on": {"_count": 5}, "under": {"_count": 1}, "he": {"_count": 2}, "were": {"_count": 3}, "ABOUT": {"_count": 1}, "with": {"_count": 10}, "so": {"_count": 4}, "to": {"_count": 14}, "his": {"_count": 3}, "crouched": {"_count": 1}, "as": {"_count": 9}, "in": {"_count": 12}, "they": {"_count": 1}, "at": {"_count": 8}, "Malfoy": {"_count": 1}, "right": {"_count": 2}, "sobbing": {"_count": 1}, "beaming": {"_count": 1}, "we": {"_count": 1}, "where": {"_count": 8}, "leg": {"_count": 1}, "Percy": {"_count": 2}, "Mrs": {"_count": 1}, "checking": {"_count": 1}, "except": {"_count": 1}, "more": {"_count": 1}, "sat": {"_count": 1}, "several": {"_count": 1}, "dipping": {"_count": 1}, "upon": {"_count": 2}, "before": {"_count": 2}, "while": {"_count": 1}, "then": {"_count": 1}, "next": {"_count": 4}, "was": {"_count": 1}, "placed": {"_count": 1}, "impatiently": {"_count": 1}, "edged": {"_count": 1}, "the": {"_count": 3}, "sitting": {"_count": 1}, "your": {"_count": 1}, "drowned": {"_count": 1}, "howling": {"_count": 1}, "for": {"_count": 5}, "again": {"_count": 2}, "though": {"_count": 1}, "between": {"_count": 2}, "coming": {"_count": 1}, "handing": {"_count": 1}, "leapt": {"_count": 1}, "apparently": {"_count": 1}, "Acciol": {"_count": 1}, "carrying": {"_count": 1}, "Hermione": {"_count": 2}, "scattering": {"_count": 1}, "a": {"_count": 2}, "accompanied": {"_count": 1}, "watching": {"_count": 1}, "toward": {"_count": 2}, "Professor": {"_count": 1}, "beside": {"_count": 1}, "could": {"_count": 1}, "shook": {"_count": 1}, "waiting": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}, "clutching": {"_count": 1}, "below": {"_count": 3}, "together": {"_count": 1}, "Ron": {"_count": 1}, "but": {"_count": 2}, "away": {"_count": 2}, "her": {"_count": 3}, "changed": {"_count": 1}, "amidst": {"_count": 1}, "sending": {"_count": 1}, "she": {"_count": 1}, "revolving": {"_count": 1}, "followed": {"_count": 1}, "sharpened": {"_count": 1}, "watched": {"_count": 1}, "looked": {"_count": 1}, "who": {"_count": 1}, "Harry": {"_count": 1}, "pushing": {"_count": 1}, "behind": {"_count": 1}, "Harrys": {"_count": 1}, "had": {"_count": 1}, "thoughtful": {"_count": 1}, "elbow": {"_count": 1}, "out": {"_count": 1}, "came": {"_count": 1}}, "face": {"_count": 85, "": {"_count": 23}, "for": {"_count": 2}, "by": {"_count": 3}, "as": {"_count": 4}, "said": {"_count": 2}, "he": {"_count": 4}, "of": {"_count": 11}, "grinning": {"_count": 1}, "and": {"_count": 10}, "but": {"_count": 3}, "with": {"_count": 3}, "in": {"_count": 1}, "on": {"_count": 1}, "before": {"_count": 1}, "from": {"_count": 2}, "that": {"_count": 1}, "so": {"_count": 2}, "while": {"_count": 1}, "his": {"_count": 1}, "did": {"_count": 1}, "not": {"_count": 1}, "Dumbledore": {"_count": 1}, "He": {"_count": 1}, "instead": {"_count": 1}, "once": {"_count": 1}, "desperate": {"_count": 1}, "the": {"_count": 1}, "trying": {"_count": 1}}, "nearest": {"_count": 59, "parcel": {"_count": 1}, "shop": {"_count": 1}, "stairs": {"_count": 1}, "pillar": {"_count": 2}, "window": {"_count": 6}, "keyhole": {"_count": 1}, "tureen": {"_count": 1}, "book": {"_count": 1}, "well": {"_count": 1}, "tree": {"_count": 3}, "dementor": {"_count": 1}, "one": {"_count": 4}, "entrance": {"_count": 1}, "table": {"_count": 1}, "staircase": {"_count": 1}, "Muggle": {"_count": 1}, "barn": {"_count": 1}, "house": {"_count": 1}, "cubicle": {"_count": 1}, "unoccupied": {"_count": 1}, "plate": {"_count": 1}, "flight": {"_count": 1}, "greenhouse": {"_count": 1}, "armchair": {"_count": 1}, "cushion": {"_count": 1}, "row": {"_count": 1}, "bench": {"_count": 1}, "shelter": {"_count": 1}, "chair": {"_count": 4}, "lamppost": {"_count": 1}, "vase": {"_count": 1}, "ones": {"_count": 1}, "thestral": {"_count": 1}, "down": {"_count": 1}, "torches": {"_count": 1}, "Death": {"_count": 2}, "classroom": {"_count": 1}, "apothecary": {"_count": 1}, "little": {"_count": 1}, "boulder": {"_count": 1}, "trees": {"_count": 1}, "grave": {"_count": 1}, "side": {"_count": 1}, "pile": {"_count": 1}}, "telephone": {"_count": 19, "rang": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "hot": {"_count": 1}, "box": {"_count": 11}, "in": {"_count": 1}, "apparatus": {"_count": 1}, "lift": {"_count": 1}}, "paper": {"_count": 48, "off": {"_count": 2}, "": {"_count": 9}, "several": {"_count": 1}, "with": {"_count": 2}, "for": {"_count": 1}, "that": {"_count": 1}, "came": {"_count": 1}, "and": {"_count": 7}, "up": {"_count": 1}, "away": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}, "Weasley": {"_count": 1}, "over": {"_count": 1}, "every": {"_count": 1}, "glanced": {"_count": 1}, "out": {"_count": 2}, "Draco": {"_count": 1}, "finally": {"_count": 1}, "in": {"_count": 1}, "bag": {"_count": 1}, "so": {"_count": 1}, "loads": {"_count": 1}, "umbrella": {"_count": 1}, "at": {"_count": 2}, "airplane": {"_count": 1}, "shop": {"_count": 1}, "Harry": {"_count": 1}, "about": {"_count": 1}, "squares": {"_count": 1}}, "movies": {"_count": 1, "": {"_count": 1}}, "cats": {"_count": 4, "shed": {"_count": 1}, "among": {"_count": 1}, "protection": {"_count": 1}, "mewling": {"_count": 1}}, "zoo": {"_count": 6, "said": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}, "restaurant": {"_count": 1}, "": {"_count": 1}, "once": {"_count": 1}}, "gap": {"_count": 21, "in": {"_count": 7}, "after": {"_count": 1}, "": {"_count": 5}, "beneath": {"_count": 1}, "casting": {"_count": 1}, "between": {"_count": 4}, "at": {"_count": 1}, "and": {"_count": 1}}, "doorbell": {"_count": 6, "rang": {"_count": 4}, "": {"_count": 2}}, "one": {"_count": 165, "who": {"_count": 42}, "": {"_count": 6}, "next": {"_count": 2}, "for": {"_count": 1}, "they": {"_count": 4}, "in": {"_count": 2}, "I": {"_count": 5}, "that": {"_count": 12}, "Professor": {"_count": 1}, "attacking": {"_count": 1}, "hand": {"_count": 1}, "to": {"_count": 8}, "at": {"_count": 2}, "behind": {"_count": 1}, "his": {"_count": 1}, "Im": {"_count": 1}, "night": {"_count": 1}, "taking": {"_count": 1}, "year": {"_count": 1}, "my": {"_count": 1}, "he": {"_count": 8}, "whos": {"_count": 5}, "above": {"_count": 2}, "hed": {"_count": 1}, "thing": {"_count": 2}, "imprisoned": {"_count": 1}, "on": {"_count": 3}, "beside": {"_count": 1}, "wholl": {"_count": 1}, "of": {"_count": 1}, "all": {"_count": 1}, "its": {"_count": 1}, "Bludger": {"_count": 1}, "where": {"_count": 4}, "Voldemorts": {"_count": 1}, "concerning": {"_count": 1}, "we": {"_count": 1}, "mistake": {"_count": 1}, "beyond": {"_count": 1}, "through": {"_count": 1}, "person": {"_count": 2}, "with": {"_count": 4}, "without": {"_count": 1}, "No": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 2}, "meant": {"_count": 1}, "she": {"_count": 1}, "nearest": {"_count": 1}, "no": {"_count": 1}, "said": {"_count": 1}, "Lupin": {"_count": 1}, "giving": {"_count": 1}, "upon": {"_count": 1}, "when": {"_count": 1}, "saying": {"_count": 1}, "Mr": {"_count": 1}, "Hagrid": {"_count": 1}, "destined": {"_count": 1}, "you": {"_count": 1}, "side": {"_count": 1}, "holding": {"_count": 1}, "Xenophilius": {"_count": 1}, "now": {"_count": 1}, "hidden": {"_count": 1}, "wand": {"_count": 1}, "And": {"_count": 1}}, "back": {"_count": 309, "of": {"_count": 187}, "seat": {"_count": 6}, "wall": {"_count": 5}, "just": {"_count": 1}, "": {"_count": 23}, "garden": {"_count": 5}, "door": {"_count": 21}, "window": {"_count": 1}, "cover": {"_count": 3}, "as": {"_count": 5}, "row": {"_count": 5}, "and": {"_count": 7}, "with": {"_count": 4}, "the": {"_count": 1}, "to": {"_count": 1}, "were": {"_count": 1}, "way": {"_count": 1}, "pocket": {"_count": 2}, "by": {"_count": 2}, "being": {"_count": 1}, "forcing": {"_count": 1}, "hoping": {"_count": 1}, "he": {"_count": 1}, "while": {"_count": 2}, "appeared": {"_count": 1}, "ignoring": {"_count": 1}, "so": {"_count": 1}, "a": {"_count": 1}, "its": {"_count": 1}, "exactly": {"_count": 1}, "or": {"_count": 1}, "youll": {"_count": 1}, "where": {"_count": 1}, "Harry": {"_count": 1}, "room": {"_count": 3}, "getting": {"_count": 1}, "instead": {"_count": 1}, "steps": {"_count": 2}, "but": {"_count": 1}, "like": {"_count": 1}, "lawn": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}}, "barbers": {"_count": 1, "looking": {"_count": 1}}, "smaller": {"_count": 5, "it": {"_count": 1}, "one": {"_count": 1}, "and": {"_count": 1}, "hall": {"_count": 1}, "lakes": {"_count": 1}}, "wash": {"_count": 2, "and": {"_count": 1}, "Ron": {"_count": 1}}, "roof": {"_count": 12, "of": {"_count": 6}, "wasnt": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}, "intensified": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "school": {"_count": 241, "kitchens": {"_count": 2}, "not": {"_count": 2}, "grounds": {"_count": 7}, "separately": {"_count": 1}, "must": {"_count": 1}, "": {"_count": 43}, "song": {"_count": 1}, "bellowed": {"_count": 1}, "better": {"_count": 1}, "she": {"_count": 2}, "was": {"_count": 5}, "brooms": {"_count": 2}, "at": {"_count": 4}, "became": {"_count": 1}, "said": {"_count": 5}, "three": {"_count": 1}, "in": {"_count": 3}, "Harry": {"_count": 1}, "across": {"_count": 1}, "than": {"_count": 2}, "on": {"_count": 1}, "year": {"_count": 4}, "cabbages": {"_count": 1}, "but": {"_count": 3}, "train": {"_count": 2}, "poltergeist": {"_count": 1}, "feast": {"_count": 1}, "could": {"_count": 1}, "of": {"_count": 1}, "has": {"_count": 1}, "by": {"_count": 1}, "seemed": {"_count": 1}, "constantly": {"_count": 1}, "needs": {"_count": 2}, "arrived": {"_count": 1}, "fifty": {"_count": 2}, "so": {"_count": 2}, "today": {"_count": 1}, "and": {"_count": 10}, "will": {"_count": 3}, "closed": {"_count": 1}, "to": {"_count": 5}, "governors": {"_count": 3}, "tonight": {"_count": 2}, "that": {"_count": 4}, "as": {"_count": 5}, "open": {"_count": 1}, "running": {"_count": 1}, "tell": {"_count": 1}, "roosters": {"_count": 1}, "vacation": {"_count": 1}, "Blacks": {"_count": 1}, "along": {"_count": 1}, "like": {"_count": 1}, "he": {"_count": 5}, "what": {"_count": 1}, "without": {"_count": 1}, "returned": {"_count": 1}, "moving": {"_count": 1}, "spilling": {"_count": 1}, "using": {"_count": 1}, "I": {"_count": 2}, "entrance": {"_count": 1}, "nurse": {"_count": 1}, "outfitters": {"_count": 1}, "all": {"_count": 1}, "champions": {"_count": 2}, "owls": {"_count": 2}, "once": {"_count": 1}, "just": {"_count": 1}, "had": {"_count": 5}, "Potter": {"_count": 1}, "anymore": {"_count": 1}, "ever": {"_count": 1}, "Professor": {"_count": 2}, "holidays": {"_count": 1}, "Must": {"_count": 1}, "advice": {"_count": 1}, "due": {"_count": 1}, "because": {"_count": 1}, "barn": {"_count": 1}, "where": {"_count": 2}, "may": {"_count": 1}, "management": {"_count": 1}, "rules": {"_count": 1}, "carriages": {"_count": 1}, "over": {"_count": 1}, "from": {"_count": 2}, "Ginny": {"_count": 1}, "the": {"_count": 4}, "stopping": {"_count": 1}, "overnight": {"_count": 1}, "unless": {"_count": 1}, "answering": {"_count": 1}, "assembled": {"_count": 1}, "upending": {"_count": 1}, "telescopes": {"_count": 1}, "extra": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 3}, "though": {"_count": 1}, "nobody": {"_count": 1}, "disguised": {"_count": 1}, "whys": {"_count": 1}, "until": {"_count": 1}, "an": {"_count": 1}, "unprotected": {"_count": 1}, "sir": {"_count": 1}, "or": {"_count": 1}, "monitored": {"_count": 1}, "should": {"_count": 1}, "ought": {"_count": 1}, "when": {"_count": 1}, "offered": {"_count": 1}, "He": {"_count": 1}, "against": {"_count": 1}, "boundaries": {"_count": 1}, "hes": {"_count": 1}, "Snapes": {"_count": 1}, "ghosts": {"_count": 1}, "untouched": {"_count": 1}, "Sounds": {"_count": 1}}, "chimney": {"_count": 7, "": {"_count": 1}, "piece": {"_count": 1}, "Harry": {"_count": 1}, "so": {"_count": 2}, "again": {"_count": 1}, "smokeless": {"_count": 1}}, "locked": {"_count": 4, "door": {"_count": 2}, "park": {"_count": 1}, "cabinet": {"_count": 1}}, "big": {"_count": 10, "trash": {"_count": 1}, "squashy": {"_count": 1}, "book": {"_count": 1}, "excitement": {"_count": 1}, "house": {"_count": 3}, "stuff": {"_count": 1}, "Death": {"_count": 1}, "ones": {"_count": 1}}, "wind": {"_count": 39, "must": {"_count": 1}, "whistled": {"_count": 1}, "every": {"_count": 1}, "out": {"_count": 1}, "roared": {"_count": 1}, "and": {"_count": 3}, "had": {"_count": 3}, "against": {"_count": 1}, "": {"_count": 6}, "Ron": {"_count": 1}, "was": {"_count": 3}, "not": {"_count": 1}, "rushed": {"_count": 1}, "blowing": {"_count": 1}, "in": {"_count": 2}, "is": {"_count": 1}, "whipping": {"_count": 3}, "as": {"_count": 1}, "pulling": {"_count": 1}, "whistling": {"_count": 2}, "without": {"_count": 1}, "whipped": {"_count": 1}, "stripped": {"_count": 1}, "into": {"_count": 1}}, "council": {"_count": 1, "Harry": {"_count": 1}}, "bank": {"_count": 28, "and": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 9}, "gives": {"_count": 1}, "at": {"_count": 1}, "where": {"_count": 3}, "as": {"_count": 1}, "Gerroff": {"_count": 1}, "of": {"_count": 2}, "to": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 2}, "he": {"_count": 1}, "leaning": {"_count": 1}, "or": {"_count": 1}, "from": {"_count": 1}}, "young": {"_count": 14, "hoodlums": {"_count": 1}, "lady": {"_count": 1}, "unicorns": {"_count": 1}, "mans": {"_count": 1}, "witch": {"_count": 3}, "boy": {"_count": 1}, "Tom": {"_count": 1}, "man": {"_count": 2}, "thief": {"_count": 1}, "Dumbledore": {"_count": 1}, "woman": {"_count": 1}}, "entrance": {"_count": 194, "and": {"_count": 4}, "to": {"_count": 29}, "hall": {"_count": 130}, "read": {"_count": 1}, "": {"_count": 7}, "was": {"_count": 1}, "is": {"_count": 1}, "so": {"_count": 1}, "he": {"_count": 3}, "when": {"_count": 1}, "saying": {"_count": 1}, "hole": {"_count": 1}, "of": {"_count": 9}, "Harry": {"_count": 1}, "half": {"_count": 1}, "flap": {"_count": 1}, "had": {"_count": 1}, "it": {"_count": 1}}, "smiling": {"_count": 1, "lady": {"_count": 1}}, "van": {"_count": 1, "had": {"_count": 1}}, "animals": {"_count": 2, "by": {"_count": 1}, "side": {"_count": 1}}, "reptile": {"_count": 3, "house": {"_count": 3}}, "glass": {"_count": 73, "all": {"_count": 1}, "staring": {"_count": 1}, "but": {"_count": 1}, "smartly": {"_count": 1}, "trying": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 15}, "the": {"_count": 1}, "front": {"_count": 1}, "he": {"_count": 2}, "go": {"_count": 1}, "ball": {"_count": 3}, "as": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 3}, "eye": {"_count": 1}, "cases": {"_count": 1}, "moving": {"_count": 1}, "that": {"_count": 1}, "pulling": {"_count": 1}, "shattered": {"_count": 1}, "shards": {"_count": 1}, "jar": {"_count": 2}, "waiting": {"_count": 1}, "case": {"_count": 3}, "door": {"_count": 1}, "cabinets": {"_count": 1}, "covering": {"_count": 1}, "windows": {"_count": 3}, "looking": {"_count": 1}, "Wotcher": {"_count": 1}, "clumsily": {"_count": 1}, "to": {"_count": 3}, "sphere": {"_count": 1}, "orbs": {"_count": 1}, "cabinet": {"_count": 1}, "window": {"_count": 1}, "into": {"_count": 1}, "Hagrid": {"_count": 1}, "then": {"_count": 2}, "drained": {"_count": 1}, "was": {"_count": 1}, "blindly": {"_count": 1}, "surface": {"_count": 1}, "in": {"_count": 2}}, "largest": {"_count": 17, "snake": {"_count": 1}, "but": {"_count": 1}, "pumpkins": {"_count": 1}, "silver": {"_count": 1}, "block": {"_count": 1}, "and": {"_count": 3}, "banner": {"_count": 1}, "woman": {"_count": 1}, "gap": {"_count": 1}, "collection": {"_count": 1}, "bowtruckle": {"_count": 1}, "nearby": {"_count": 1}, "Death": {"_count": 1}, "": {"_count": 1}, "portrait": {"_count": 1}}, "mood": {"_count": 6, "": {"_count": 1}, "had": {"_count": 1}, "to": {"_count": 2}, "more": {"_count": 1}, "in": {"_count": 1}}, "glistening": {"_count": 1, "brown": {"_count": 1}}, "snake": {"_count": 85, "didnt": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 11}, "and": {"_count": 6}, "could": {"_count": 1}, "shook": {"_count": 1}, "slid": {"_count": 1}, "hadnt": {"_count": 1}, "instead": {"_count": 1}, "Leave": {"_count": 1}, "slumped": {"_count": 1}, "wouldnt": {"_count": 1}, "vanished": {"_count": 1}, "on": {"_count": 1}, "off": {"_count": 1}, "backed": {"_count": 1}, "toward": {"_count": 1}, "willing": {"_count": 1}, "was": {"_count": 7}, "would": {"_count": 1}, "lay": {"_count": 1}, "there": {"_count": 1}, "continued": {"_count": 1}, "venom": {"_count": 1}, "glided": {"_count": 1}, "slithering": {"_count": 1}, "he": {"_count": 3}, "attacked": {"_count": 2}, "at": {"_count": 2}, "who": {"_count": 1}, "anywhere": {"_count": 1}, "though": {"_count": 1}, "bit": {"_count": 1}, "but": {"_count": 2}, "attack": {"_count": 1}, "had": {"_count": 1}, "which": {"_count": 2}, "swung": {"_count": 1}, "Nagini": {"_count": 1}, "are": {"_count": 1}, "is": {"_count": 1}, "from": {"_count": 1}, "outlined": {"_count": 1}, "its": {"_count": 1}, "flew": {"_count": 1}, "fell": {"_count": 1}, "hiding": {"_count": 1}, "sent": {"_count": 1}, "coming": {"_count": 1}, "it": {"_count": 1}, "anymore": {"_count": 1}, "in": {"_count": 1}, "But": {"_count": 1}, "weve": {"_count": 1}, "with": {"_count": 1}, "hissing": {"_count": 1}, "Harry": {"_count": 1}, "coiling": {"_count": 1}}, "tank": {"_count": 8, "and": {"_count": 1}, "of": {"_count": 2}, "": {"_count": 4}, "as": {"_count": 1}}, "ceiling": {"_count": 134, "": {"_count": 56}, "and": {"_count": 14}, "with": {"_count": 2}, "was": {"_count": 2}, "a": {"_count": 1}, "for": {"_count": 2}, "sagged": {"_count": 1}, "in": {"_count": 4}, "of": {"_count": 5}, "but": {"_count": 2}, "yet": {"_count": 1}, "where": {"_count": 1}, "onto": {"_count": 1}, "through": {"_count": 2}, "too": {"_count": 2}, "which": {"_count": 1}, "to": {"_count": 2}, "into": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 3}, "flickered": {"_count": 1}, "each": {"_count": 1}, "over": {"_count": 1}, "looking": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "as": {"_count": 4}, "shooting": {"_count": 1}, "fearfully": {"_count": 1}, "above": {"_count": 1}, "Here": {"_count": 1}, "still": {"_count": 1}, "The": {"_count": 1}, "from": {"_count": 3}, "without": {"_count": 1}, "seemed": {"_count": 1}, "its": {"_count": 1}, "had": {"_count": 2}, "more": {"_count": 1}, "overhead": {"_count": 1}, "higher": {"_count": 1}, "apart": {"_count": 1}}, "ribs": {"_count": 13, "": {"_count": 3}, "and": {"_count": 4}, "hed": {"_count": 1}, "her": {"_count": 1}, "but": {"_count": 1}, "made": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}}, "concrete": {"_count": 1, "floor": {"_count": 1}}, "boa": {"_count": 1, "constrictors": {"_count": 1}}, "floor": {"_count": 407, "": {"_count": 133}, "and": {"_count": 46}, "jars": {"_count": 1}, "fast": {"_count": 1}, "with": {"_count": 19}, "in": {"_count": 11}, "because": {"_count": 1}, "where": {"_count": 6}, "he": {"_count": 7}, "didnt": {"_count": 2}, "Hermione": {"_count": 1}, "next": {"_count": 3}, "of": {"_count": 7}, "above": {"_count": 4}, "Ron": {"_count": 1}, "thus": {"_count": 1}, "but": {"_count": 4}, "panting": {"_count": 2}, "between": {"_count": 3}, "docile": {"_count": 1}, "rigid": {"_count": 1}, "feeling": {"_count": 1}, "nondescript": {"_count": 1}, "near": {"_count": 1}, "unable": {"_count": 3}, "again": {"_count": 4}, "as": {"_count": 6}, "himself": {"_count": 1}, "was": {"_count": 3}, "like": {"_count": 4}, "great": {"_count": 1}, "every": {"_count": 1}, "beside": {"_count": 10}, "someone": {"_count": 1}, "over": {"_count": 2}, "a": {"_count": 5}, "bound": {"_count": 1}, "coming": {"_count": 1}, "eating": {"_count": 1}, "before": {"_count": 3}, "scooping": {"_count": 1}, "that": {"_count": 3}, "forming": {"_count": 1}, "Rons": {"_count": 1}, "clear": {"_count": 1}, "gave": {"_count": 1}, "clutching": {"_count": 1}, "some": {"_count": 1}, "began": {"_count": 1}, "covered": {"_count": 1}, "around": {"_count": 2}, "rolling": {"_count": 2}, "his": {"_count": 4}, "noticed": {"_count": 1}, "others": {"_count": 1}, "or": {"_count": 1}, "Sirius": {"_count": 1}, "Fang": {"_count": 1}, "sliding": {"_count": 1}, "ahead": {"_count": 1}, "guide": {"_count": 2}, "for": {"_count": 2}, "one": {"_count": 1}, "staring": {"_count": 1}, "so": {"_count": 1}, "by": {"_count": 3}, "until": {"_count": 1}, "said": {"_count": 1}, "trembled": {"_count": 1}, "their": {"_count": 1}, "shooting": {"_count": 1}, "reciting": {"_count": 1}, "at": {"_count": 6}, "shifted": {"_count": 1}, "let": {"_count": 1}, "below": {"_count": 4}, "might": {"_count": 1}, "RUN": {"_count": 1}, "on": {"_count": 2}, "then": {"_count": 2}, "vanish": {"_count": 1}, "twitching": {"_count": 1}, "Neville": {"_count": 1}, "past": {"_count": 2}, "Dumbledore": {"_count": 1}, "ready": {"_count": 1}, "small": {"_count": 1}, "And": {"_count": 1}, "you": {"_count": 1}, "glistened": {"_count": 1}, "lay": {"_count": 1}, "You": {"_count": 1}, "away": {"_count": 1}, "having": {"_count": 1}, "hidden": {"_count": 1}, "coated": {"_count": 1}, "quite": {"_count": 1}, "to": {"_count": 1}, "waving": {"_count": 1}, "her": {"_count": 2}, "when": {"_count": 1}, "beneath": {"_count": 3}, "outside": {"_count": 1}, "stretched": {"_count": 1}, "refusing": {"_count": 1}, "writhe": {"_count": 1}, "followed": {"_count": 1}, "screaming": {"_count": 1}, "Perhaps": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}, "behind": {"_count": 1}, "while": {"_count": 1}, "hitting": {"_count": 1}, "blood": {"_count": 1}, "along": {"_count": 1}, "under": {"_count": 1}}, "exits": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "crash": {"_count": 2, "though": {"_count": 1}, "It": {"_count": 1}}, "green": {"_count": 16, "light": {"_count": 2}, "ink": {"_count": 1}, "hangings": {"_count": 1}, "flames": {"_count": 1}, "rosette": {"_count": 1}, "skull": {"_count": 2}, "quill": {"_count": 2}, "gloom": {"_count": 1}, "water": {"_count": 2}, "liquid": {"_count": 1}, "onion": {"_count": 1}, "potion": {"_count": 1}}, "shop": {"_count": 42, "without": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 10}, "looking": {"_count": 2}, "door": {"_count": 1}, "where": {"_count": 4}, "was": {"_count": 1}, "told": {"_count": 1}, "after": {"_count": 1}, "UNUSUAL": {"_count": 1}, "had": {"_count": 1}, "until": {"_count": 1}, "Harry": {"_count": 2}, "windows": {"_count": 2}, "Malfoy": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}, "Mr": {"_count": 1}, "Borgin": {"_count": 1}, "setting": {"_count": 1}, "called": {"_count": 1}, "taking": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}}, "Brazilian": {"_count": 1, "boa": {"_count": 1}}, "summer": {"_count": 57, "holidays": {"_count": 7}, "then": {"_count": 1}, "back": {"_count": 1}, "vacation": {"_count": 2}, "": {"_count": 15}, "devising": {"_count": 1}, "break": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}, "would": {"_count": 2}, "there": {"_count": 1}, "about": {"_count": 2}, "to": {"_count": 1}, "gave": {"_count": 1}, "term": {"_count": 1}, "said": {"_count": 1}, "so": {"_count": 1}, "for": {"_count": 1}, "where": {"_count": 1}, "but": {"_count": 3}, "now": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "we": {"_count": 1}, "either": {"_count": 1}, "an": {"_count": 1}, "outing": {"_count": 1}, "she": {"_count": 1}, "of": {"_count": 1}, "he": {"_count": 1}}, "biggest": {"_count": 10, "and": {"_count": 1}, "Muggles": {"_count": 1}, "mystry": {"_count": 1}, "deal": {"_count": 1}, "bit": {"_count": 1}, "bully": {"_count": 1}, "the": {"_count": 1}, "ones": {"_count": 1}, "surprises": {"_count": 1}, "bloodtraitor": {"_count": 1}}, "lot": {"_count": 15, "he": {"_count": 1}, "here": {"_count": 1}, "of": {"_count": 3}, "": {"_count": 3}, "under": {"_count": 1}, "or": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "now": {"_count": 1}, "then": {"_count": 1}, "And": {"_count": 1}}, "leader": {"_count": 3, "": {"_count": 1}, "might": {"_count": 1}, "was": {"_count": 1}}, "end": {"_count": 364, "of": {"_count": 278}, "all": {"_count": 1}, "like": {"_count": 1}, "the": {"_count": 2}, "off": {"_count": 1}, "": {"_count": 28}, "nearest": {"_count": 1}, "and": {"_count": 7}, "Hermione": {"_count": 1}, "Hagrid": {"_count": 1}, "ofyear": {"_count": 1}, "was": {"_count": 1}, "stall": {"_count": 1}, "Professor": {"_count": 1}, "toilet": {"_count": 2}, "they": {"_count": 3}, "he": {"_count": 6}, "with": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "bed": {"_count": 1}, "said": {"_count": 3}, "it": {"_count": 2}, "furthest": {"_count": 1}, "had": {"_count": 1}, "Harry": {"_count": 1}, "leaving": {"_count": 1}, "I": {"_count": 4}, "thought": {"_count": 1}, "beds": {"_count": 1}, "Neville": {"_count": 1}, "found": {"_count": 1}, "o": {"_count": 1}, "ofterm": {"_count": 1}, "conceded": {"_count": 1}, "Ron": {"_count": 1}, "its": {"_count": 1}, "would": {"_count": 1}, "even": {"_count": 1}}, "holidays": {"_count": 45, "where": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 16}, "had": {"_count": 1}, "I": {"_count": 2}, "it": {"_count": 1}, "too": {"_count": 1}, "thinking": {"_count": 1}, "remember": {"_count": 1}, "were": {"_count": 1}, "but": {"_count": 1}, "Harry": {"_count": 2}, "people": {"_count": 1}, "wandering": {"_count": 1}, "approached": {"_count": 1}, "away": {"_count": 1}, "as": {"_count": 1}, "we": {"_count": 1}, "at": {"_count": 1}, "something": {"_count": 1}, "passed": {"_count": 1}, "along": {"_count": 1}, "pondering": {"_count": 1}, "began": {"_count": 1}}, "local": {"_count": 3, "public": {"_count": 1}, "barmen": {"_count": 1}, "village": {"_count": 1}}, "toilet": {"_count": 18, "the": {"_count": 1}, "": {"_count": 7}, "picking": {"_count": 1}, "splashing": {"_count": 1}, "and": {"_count": 1}, "seat": {"_count": 1}, "its": {"_count": 1}, "exploded": {"_count": 1}, "charge": {"_count": 1}, "in": {"_count": 1}, "causing": {"_count": 1}, "next": {"_count": 1}}, "family": {"_count": 55, "in": {"_count": 1}, "": {"_count": 12}, "thought": {"_count": 1}, "was": {"_count": 3}, "will": {"_count": 1}, "until": {"_count": 1}, "servant": {"_count": 1}, "ghoul": {"_count": 1}, "owl": {"_count": 1}, "were": {"_count": 2}, "got": {"_count": 1}, "name": {"_count": 2}, "honor": {"_count": 1}, "to": {"_count": 3}, "and": {"_count": 2}, "Kreacher": {"_count": 1}, "tradition": {"_count": 1}, "produced": {"_count": 1}, "asks": {"_count": 1}, "Sirius": {"_count": 1}, "grief": {"_count": 1}, "first": {"_count": 1}, "said": {"_count": 1}, "gold": {"_count": 1}, "for": {"_count": 1}, "rate": {"_count": 1}, "Regulus": {"_count": 1}, "crest": {"_count": 1}, "once": {"_count": 1}, "line": {"_count": 1}, "Bathilda": {"_count": 1}, "know": {"_count": 1}, "dont": {"_count": 1}, "Harry": {"_count": 1}, "wove": {"_count": 1}, "emerged": {"_count": 1}, "then": {"_count": 1}}, "teachers": {"_count": 62, "werent": {"_count": 1}, "were": {"_count": 2}, "behind": {"_count": 1}, "look": {"_count": 1}, "": {"_count": 9}, "to": {"_count": 1}, "seemed": {"_count": 1}, "did": {"_count": 1}, "a": {"_count": 1}, "shouted": {"_count": 1}, "bent": {"_count": 1}, "offices": {"_count": 1}, "during": {"_count": 1}, "table": {"_count": 9}, "and": {"_count": 5}, "noticed": {"_count": 1}, "cloaks": {"_count": 1}, "filtering": {"_count": 1}, "joined": {"_count": 1}, "desk": {"_count": 9}, "kept": {"_count": 1}, "in": {"_count": 1}, "too": {"_count": 1}, "had": {"_count": 1}, "time": {"_count": 1}, "upon": {"_count": 1}, "like": {"_count": 1}, "would": {"_count": 1}, "will": {"_count": 1}, "arent": {"_count": 1}, "of": {"_count": 2}, "platform": {"_count": 1}}, "proudest": {"_count": 1, "moment": {"_count": 1}}, "sink": {"_count": 15, "": {"_count": 2}, "had": {"_count": 1}, "which": {"_count": 2}, "where": {"_count": 1}, "in": {"_count": 2}, "began": {"_count": 1}, "that": {"_count": 1}, "filling": {"_count": 1}, "by": {"_count": 1}, "still": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}}, "bowl": {"_count": 17, "again": {"_count": 1}, "of": {"_count": 2}, "into": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 5}, "by": {"_count": 1}, "that": {"_count": 1}, "sprang": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}}, "smell": {"_count": 17, "from": {"_count": 1}, "of": {"_count": 13}, "o": {"_count": 1}, "is": {"_count": 1}, "off": {"_count": 1}}, "click": {"_count": 1, "of": {"_count": 1}}, "mail": {"_count": 13, "slot": {"_count": 3}, "Dudley": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "arrived": {"_count": 2}, "had": {"_count": 1}, "about": {"_count": 1}, "arriving": {"_count": 1}, "as": {"_count": 1}}, "doormat": {"_count": 5, "": {"_count": 2}, "a": {"_count": 1}, "something": {"_count": 1}, "backs": {"_count": 1}}, "Smelting": {"_count": 2, "stick": {"_count": 2}}, "Isle": {"_count": 1, "of": {"_count": 1}}, "library": {"_count": 95, "so": {"_count": 3}, "": {"_count": 27}, "tens": {"_count": 1}, "he": {"_count": 2}, "Restricted": {"_count": 1}, "wandering": {"_count": 1}, "weeks": {"_count": 1}, "with": {"_count": 3}, "window": {"_count": 1}, "Dragon": {"_count": 1}, "on": {"_count": 1}, "where": {"_count": 2}, "and": {"_count": 7}, "measuring": {"_count": 1}, "Percy": {"_count": 1}, "first": {"_count": 1}, "but": {"_count": 2}, "earning": {"_count": 1}, "said": {"_count": 2}, "got": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 3}, "this": {"_count": 1}, "again": {"_count": 1}, "when": {"_count": 2}, "an": {"_count": 1}, "poring": {"_count": 1}, "instead": {"_count": 1}, "a": {"_count": 2}, "stalked": {"_count": 1}, "every": {"_count": 1}, "to": {"_count": 2}, "as": {"_count": 1}, "hed": {"_count": 1}, "door": {"_count": 1}, "just": {"_count": 1}, "looking": {"_count": 2}, "together": {"_count": 1}, "they": {"_count": 1}, "or": {"_count": 2}, "anybody": {"_count": 1}, "table": {"_count": 1}, "she": {"_count": 1}, "whacking": {"_count": 1}, "which": {"_count": 1}, "if": {"_count": 1}, "about": {"_count": 1}}, "Stairs": {"_count": 1, "4": {"_count": 1}}, "address": {"_count": 5, "was": {"_count": 1}, "how": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "envelope": {"_count": 25, "over": {"_count": 1}, "when": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 6}, "open": {"_count": 1}, "Harry": {"_count": 2}, "": {"_count": 4}, "pulled": {"_count": 1}, "while": {"_count": 1}, "in": {"_count": 2}, "gingerly": {"_count": 1}, "full": {"_count": 1}, "burst": {"_count": 1}, "smoldered": {"_count": 1}, "containing": {"_count": 1}}, "bill": {"_count": 2, "and": {"_count": 1}, "snorted": {"_count": 1}}, "postcard": {"_count": 2, "sat": {"_count": 1}, "": {"_count": 1}}, "yellow": {"_count": 2, "envelope": {"_count": 1}, "": {"_count": 1}}, "grayish": {"_count": 1, "white": {"_count": 1}}, "room": {"_count": 555, "": {"_count": 148}, "that": {"_count": 3}, "bouncing": {"_count": 1}, "waiting": {"_count": 1}, "talking": {"_count": 1}, "closely": {"_count": 2}, "some": {"_count": 1}, "his": {"_count": 10}, "without": {"_count": 4}, "he": {"_count": 8}, "was": {"_count": 21}, "and": {"_count": 43}, "emptied": {"_count": 1}, "to": {"_count": 17}, "as": {"_count": 10}, "where": {"_count": 14}, "which": {"_count": 5}, "through": {"_count": 3}, "at": {"_count": 13}, "carrying": {"_count": 5}, "still": {"_count": 1}, "next": {"_count": 1}, "but": {"_count": 5}, "barking": {"_count": 1}, "pulling": {"_count": 1}, "feeling": {"_count": 1}, "a": {"_count": 4}, "buzzing": {"_count": 1}, "unsmiling": {"_count": 1}, "held": {"_count": 1}, "with": {"_count": 8}, "cackling": {"_count": 1}, "both": {"_count": 1}, "Crookshanks": {"_count": 1}, "fell": {"_count": 1}, "Whats": {"_count": 1}, "pushed": {"_count": 1}, "burst": {"_count": 1}, "staring": {"_count": 1}, "the": {"_count": 6}, "in": {"_count": 6}, "closed": {"_count": 1}, "beyond": {"_count": 3}, "it": {"_count": 3}, "now": {"_count": 3}, "opened": {"_count": 1}, "like": {"_count": 2}, "muttering": {"_count": 2}, "slamming": {"_count": 3}, "looking": {"_count": 6}, "trying": {"_count": 1}, "singing": {"_count": 1}, "stared": {"_count": 1}, "beaming": {"_count": 1}, "leaving": {"_count": 7}, "again": {"_count": 7}, "from": {"_count": 1}, "about": {"_count": 2}, "not": {"_count": 3}, "toward": {"_count": 2}, "squealing": {"_count": 1}, "had": {"_count": 3}, "though": {"_count": 1}, "pausing": {"_count": 1}, "Professor": {"_count": 4}, "into": {"_count": 1}, "inside": {"_count": 1}, "all": {"_count": 3}, "each": {"_count": 1}, "for": {"_count": 4}, "lets": {"_count": 1}, "Fleur": {"_count": 1}, "she": {"_count": 1}, "who": {"_count": 1}, "littered": {"_count": 1}, "changed": {"_count": 1}, "closing": {"_count": 2}, "better": {"_count": 1}, "sobbing": {"_count": 1}, "hurriedly": {"_count": 1}, "stepped": {"_count": 1}, "panting": {"_count": 1}, "wearing": {"_count": 1}, "her": {"_count": 2}, "upstairs": {"_count": 1}, "Fred": {"_count": 2}, "were": {"_count": 4}, "while": {"_count": 3}, "around": {"_count": 1}, "Harry": {"_count": 5}, "full": {"_count": 2}, "very": {"_count": 1}, "carried": {"_count": 1}, "indicating": {"_count": 1}, "felt": {"_count": 1}, "have": {"_count": 1}, "watching": {"_count": 2}, "tears": {"_count": 1}, "wishing": {"_count": 1}, "Snape": {"_count": 1}, "Ron": {"_count": 1}, "dimmed": {"_count": 1}, "gripping": {"_count": 1}, "provided": {"_count": 1}, "pulled": {"_count": 1}, "smirking": {"_count": 1}, "holding": {"_count": 1}, "an": {"_count": 1}, "so": {"_count": 2}, "leading": {"_count": 1}, "sealing": {"_count": 1}, "Sirius": {"_count": 3}, "seemingly": {"_count": 1}, "then": {"_count": 1}, "imperiously": {"_count": 1}, "Petunia": {"_count": 1}, "scrutinizing": {"_count": 1}, "seemed": {"_count": 1}, "Mrs": {"_count": 2}, "Dumbledore": {"_count": 1}, "already": {"_count": 1}, "speaking": {"_count": 1}, "beside": {"_count": 1}, "because": {"_count": 1}, "giggling": {"_count": 1}, "scooping": {"_count": 1}, "just": {"_count": 1}, "apparently": {"_count": 1}, "allowing": {"_count": 1}, "examining": {"_count": 1}, "well": {"_count": 1}, "said": {"_count": 2}, "making": {"_count": 2}, "looked": {"_count": 1}, "change": {"_count": 1}, "didnt": {"_count": 1}, "becomes": {"_count": 1}, "away": {"_count": 1}, "I": {"_count": 1}, "unaccompanied": {"_count": 1}, "behind": {"_count": 2}, "would": {"_count": 3}, "followed": {"_count": 1}, "remember": {"_count": 1}, "slid": {"_count": 1}, "opening": {"_count": 1}, "before": {"_count": 2}, "after": {"_count": 2}, "onto": {"_count": 1}, "broken": {"_count": 1}, "causing": {"_count": 1}, "when": {"_count": 1}, "skidded": {"_count": 1}, "unnoticed": {"_count": 1}, "however": {"_count": 1}, "shouting": {"_count": 1}, "perched": {"_count": 1}, "unseen": {"_count": 1}, "exploding": {"_count": 1}, "somewhat": {"_count": 1}, "only": {"_count": 1}, "above": {"_count": 1}, "apart": {"_count": 1}, "by": {"_count": 2}, "overhead": {"_count": 1}, "except": {"_count": 1}, "kicking": {"_count": 1}, "reappearing": {"_count": 1}, "doesnt": {"_count": 1}, "came": {"_count": 1}, "you": {"_count": 1}, "directly": {"_count": 1}, "firing": {"_count": 1}}, "head": {"_count": 62, "with": {"_count": 10}, "": {"_count": 15}, "for": {"_count": 2}, "by": {"_count": 2}, "of": {"_count": 15}, "he": {"_count": 1}, "before": {"_count": 1}, "and": {"_count": 7}, "said": {"_count": 1}, "as": {"_count": 1}, "which": {"_count": 1}, "began": {"_count": 1}, "yesterday": {"_count": 1}, "that": {"_count": 2}, "so": {"_count": 1}, "Snape": {"_count": 1}}, "scruffs": {"_count": 1, "of": {"_count": 1}}, "keyhole": {"_count": 11, "Dudley": {"_count": 1}, "": {"_count": 4}, "if": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}}, "crack": {"_count": 11, "between": {"_count": 3}, "as": {"_count": 1}, "of": {"_count": 3}, "waiting": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "toys": {"_count": 1, "and": {"_count": 1}}, "bed": {"_count": 81, "and": {"_count": 18}, "": {"_count": 16}, "had": {"_count": 1}, "where": {"_count": 1}, "Hedwig": {"_count": 1}, "seized": {"_count": 1}, "just": {"_count": 1}, "somehow": {"_count": 1}, "his": {"_count": 1}, "crosseyed": {"_count": 1}, "openmouthed": {"_count": 1}, "next": {"_count": 2}, "untied": {"_count": 1}, "like": {"_count": 1}, "with": {"_count": 1}, "wrenching": {"_count": 1}, "right": {"_count": 1}, "the": {"_count": 3}, "Hermione": {"_count": 1}, "Remus": {"_count": 1}, "to": {"_count": 2}, "hurried": {"_count": 1}, "without": {"_count": 1}, "onto": {"_count": 2}, "opposite": {"_count": 4}, "hangings": {"_count": 1}, "covers": {"_count": 2}, "at": {"_count": 1}, "screwed": {"_count": 1}, "again": {"_count": 2}, "which": {"_count": 1}, "put": {"_count": 1}, "hissing": {"_count": 1}, "skidded": {"_count": 1}, "he": {"_count": 1}, "along": {"_count": 1}, "before": {"_count": 1}, "The": {"_count": 1}, "of": {"_count": 1}}, "greenhouse": {"_count": 10, "roof": {"_count": 2}, "door": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "floor": {"_count": 1}, "windows": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}, "glass": {"_count": 1}}, "fact": {"_count": 108, "that": {"_count": 103}, "remained": {"_count": 2}, "remains": {"_count": 2}, "Harrys": {"_count": 1}}, "neck": {"_count": 23, "from": {"_count": 1}, "and": {"_count": 7}, "with": {"_count": 1}, "before": {"_count": 1}, "of": {"_count": 11}, "to": {"_count": 1}, "": {"_count": 1}}, "lights": {"_count": 23, "": {"_count": 7}, "of": {"_count": 2}, "had": {"_count": 1}, "at": {"_count": 1}, "shining": {"_count": 2}, "in": {"_count": 2}, "he": {"_count": 1}, "down": {"_count": 1}, "kept": {"_count": 1}, "on": {"_count": 2}, "behind": {"_count": 1}, "all": {"_count": 1}, "whisked": {"_count": 1}}, "postman": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "letters": {"_count": 13, "for": {"_count": 1}, "into": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 2}, "still": {"_count": 1}, "but": {"_count": 1}, "of": {"_count": 1}, "were": {"_count": 1}, "from": {"_count": 1}, "Hermione": {"_count": 1}, "L": {"_count": 1}, "M": {"_count": 1}}, "dark": {"_count": 219, "hall": {"_count": 2}, "bottom": {"_count": 1}, "": {"_count": 18}, "and": {"_count": 15}, "passageways": {"_count": 1}, "window": {"_count": 4}, "corridors": {"_count": 1}, "outlines": {"_count": 1}, "to": {"_count": 1}, "grounds": {"_count": 11}, "Fang": {"_count": 1}, "path": {"_count": 3}, "leaves": {"_count": 1}, "common": {"_count": 1}, "landing": {"_count": 2}, "narrow": {"_count": 1}, "horizon": {"_count": 1}, "stone": {"_count": 2}, "greenhouses": {"_count": 1}, "sky": {"_count": 5}, "ceiling": {"_count": 4}, "doorway": {"_count": 1}, "entrance": {"_count": 1}, "outline": {"_count": 4}, "passage": {"_count": 1}, "trees": {"_count": 8}, "Ron": {"_count": 1}, "corridor": {"_count": 6}, "slimy": {"_count": 1}, "Chamber": {"_count": 2}, "tunnel": {"_count": 2}, "deserted": {"_count": 2}, "house": {"_count": 1}, "room": {"_count": 2}, "space": {"_count": 1}, "quiet": {"_count": 1}, "street": {"_count": 4}, "Muggle": {"_count": 1}, "theres": {"_count": 1}, "with": {"_count": 1}, "hospital": {"_count": 1}, "ward": {"_count": 1}, "air": {"_count": 2}, "passageway": {"_count": 2}, "yard": {"_count": 3}, "dank": {"_count": 1}, "said": {"_count": 1}, "platform": {"_count": 3}, "canopy": {"_count": 1}, "red": {"_count": 3}, "skies": {"_count": 1}, "water": {"_count": 6}, "windows": {"_count": 1}, "rustling": {"_count": 1}, "lawn": {"_count": 2}, "starspangled": {"_count": 1}, "graveyard": {"_count": 1}, "figures": {"_count": 1}, "upstairs": {"_count": 1}, "staircase": {"_count": 1}, "greasyhaired": {"_count": 1}, "knot": {"_count": 1}, "Harry": {"_count": 2}, "wall": {"_count": 1}, "rainwashed": {"_count": 1}, "fer": {"_count": 1}, "did": {"_count": 1}, "pantry": {"_count": 1}, "heavylidded": {"_count": 1}, "lake": {"_count": 2}, "velvet": {"_count": 1}, "again": {"_count": 1}, "holes": {"_count": 1}, "heart": {"_count": 1}, "ground": {"_count": 3}, "was": {"_count": 1}, "blue": {"_count": 1}, "circular": {"_count": 2}, "glass": {"_count": 1}, "shadows": {"_count": 2}, "bookshelves": {"_count": 1}, "pit": {"_count": 1}, "surface": {"_count": 1}, "slit": {"_count": 1}, "mirror": {"_count": 1}, "High": {"_count": 1}, "twisting": {"_count": 1}, "grass": {"_count": 1}, "that": {"_count": 1}, "metal": {"_count": 1}, "garden": {"_count": 3}, "back": {"_count": 1}, "mass": {"_count": 2}, "hole": {"_count": 1}, "we": {"_count": 1}, "then": {"_count": 1}, "shapes": {"_count": 1}, "He": {"_count": 1}, "branches": {"_count": 1}, "canvas": {"_count": 2}, "river": {"_count": 1}, "church": {"_count": 1}, "fetid": {"_count": 1}, "shape": {"_count": 1}, "gardens": {"_count": 1}, "hedge": {"_count": 1}, "it": {"_count": 1}, "forest": {"_count": 1}, "purple": {"_count": 1}, "waters": {"_count": 1}, "he": {"_count": 1}, "track": {"_count": 1}, "woodpaneled": {"_count": 1}, "earth": {"_count": 1}, "night": {"_count": 1}, "pair": {"_count": 1}, "enchanted": {"_count": 1}}, "foot": {"_count": 69, "of": {"_count": 67}, "": {"_count": 1}, "o": {"_count": 1}}, "piece": {"_count": 19, "of": {"_count": 17}, "on": {"_count": 1}, "that": {"_count": 1}}, "sides": {"_count": 12, "and": {"_count": 2}, "of": {"_count": 8}, "drenching": {"_count": 1}, "": {"_count": 1}}, "small": {"_count": 43, "window": {"_count": 4}, "voice": {"_count": 4}, "vegetable": {"_count": 1}, "cabin": {"_count": 1}, "black": {"_count": 1}, "red": {"_count": 1}, "struggling": {"_count": 1}, "man": {"_count": 1}, "boy": {"_count": 1}, "owl": {"_count": 1}, "figure": {"_count": 1}, "kitchen": {"_count": 1}, "of": {"_count": 3}, "silverhaired": {"_count": 1}, "girl": {"_count": 1}, "hopeful": {"_count": 1}, "dent": {"_count": 1}, "circular": {"_count": 1}, "crowd": {"_count": 1}, "chamber": {"_count": 1}, "glass": {"_count": 2}, "spunglass": {"_count": 1}, "mountain": {"_count": 1}, "scroll": {"_count": 1}, "group": {"_count": 1}, "cold": {"_count": 1}, "boys": {"_count": 1}, "blackhaired": {"_count": 1}, "ones": {"_count": 1}, "beaded": {"_count": 2}, "space": {"_count": 1}, "soft": {"_count": 1}, "maimed": {"_count": 1}}, "downstairs": {"_count": 1, "bathroom": {"_count": 1}}, "cracks": {"_count": 1, "around": {"_count": 1}}, "Tulips": {"_count": 1, "as": {"_count": 1}}, "two": {"_count": 100, "dozen": {"_count": 1}, "platforms": {"_count": 1}, "boys": {"_count": 5}, "teams": {"_count": 2}, "of": {"_count": 14}, "people": {"_count": 2}, "Hermione": {"_count": 1}, "eldest": {"_count": 1}, "grinning": {"_count": 1}, "tables": {"_count": 1}, "balls": {"_count": 1}, "black": {"_count": 1}, "Seekers": {"_count": 1}, "wands": {"_count": 7}, "hours": {"_count": 1}, "largest": {"_count": 1}, "things": {"_count": 2}, "stories": {"_count": 1}, "lumps": {"_count": 1}, "chintz": {"_count": 1}, "teachers": {"_count": 1}, "holdin": {"_count": 1}, "beds": {"_count": 5}, "girls": {"_count": 3}, "breakouts": {"_count": 1}, "large": {"_count": 1}, "wavering": {"_count": 1}, "most": {"_count": 1}, "Death": {"_count": 3}, "Weasleys": {"_count": 2}, "wizards": {"_count": 2}, "women": {"_count": 1}, "sisters": {"_count": 1}, "men": {"_count": 2}, "best": {"_count": 1}, "Dumbledores": {"_count": 1}, "": {"_count": 3}, "elves": {"_count": 1}, "little": {"_count": 1}, "bottles": {"_count": 1}, "fabulous": {"_count": 1}, "ways": {"_count": 1}, "that": {"_count": 1}, "remaining": {"_count": 2}, "piles": {"_count": 1}, "workmen": {"_count": 1}, "houses": {"_count": 1}, "goblins": {"_count": 2}, "young": {"_count": 1}, "which": {"_count": 1}, "halves": {"_count": 3}, "barely": {"_count": 1}, "figures": {"_count": 1}, "witches": {"_count": 1}, "beside": {"_count": 1}, "fights": {"_count": 1}, "whose": {"_count": 1}}, "post": {"_count": 21, "office": {"_count": 4}, "of": {"_count": 6}, "owls": {"_count": 6}, "because": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "while": {"_count": 1}}, "dairy": {"_count": 1, "trying": {"_count": 1}}, "breakfast": {"_count": 4, "table": {"_count": 3}, "tray": {"_count": 1}}, "fireplace": {"_count": 41, "like": {"_count": 1}, "was": {"_count": 1}, "they": {"_count": 1}, "turning": {"_count": 1}, "": {"_count": 6}, "and": {"_count": 5}, "brushing": {"_count": 1}, "hang": {"_count": 1}, "has": {"_count": 1}, "for": {"_count": 1}, "crackling": {"_count": 1}, "opposite": {"_count": 1}, "surrounded": {"_count": 1}, "too": {"_count": 1}, "beaming": {"_count": 1}, "when": {"_count": 1}, "covered": {"_count": 1}, "then": {"_count": 1}, "sat": {"_count": 1}, "found": {"_count": 1}, "he": {"_count": 1}, "seized": {"_count": 1}, "stepped": {"_count": 1}, "sopping": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}, "behind": {"_count": 1}, "earlier": {"_count": 1}, "together": {"_count": 1}, "a": {"_count": 1}, "where": {"_count": 1}, "brow": {"_count": 1}}, "waist": {"_count": 6, "and": {"_count": 3}, "a": {"_count": 1}, "he": {"_count": 1}, "grabbed": {"_count": 1}}, "boardedup": {"_count": 1, "doors": {"_count": 1}}, "highway": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "opposite": {"_count": 58, "direction": {"_count": 22}, "wall": {"_count": 13}, "side": {"_count": 7}, "of": {"_count": 3}, "shore": {"_count": 2}, "bank": {"_count": 6}, "goal": {"_count": 1}, "goalpost": {"_count": 1}, "window": {"_count": 1}, "hillside": {"_count": 1}, "": {"_count": 1}}, "outskirts": {"_count": 7, "of": {"_count": 7}}, "windowsill": {"_count": 16, "staring": {"_count": 1}, "which": {"_count": 2}, "there": {"_count": 1}, "next": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}, "looking": {"_count": 1}, "in": {"_count": 2}, "of": {"_count": 1}, "gazing": {"_count": 1}, "smirking": {"_count": 1}, "like": {"_count": 1}, "as": {"_count": 1}}, "owner": {"_count": 5, "of": {"_count": 3}, "said": {"_count": 1}, "can": {"_count": 1}}, "hotel": {"_count": 1, "came": {"_count": 1}}, "dining": {"_count": 8, "room": {"_count": 8}}, "coast": {"_count": 14, "locked": {"_count": 1}, "was": {"_count": 8}, "is": {"_count": 2}, "many": {"_count": 1}, "where": {"_count": 1}, "sail": {"_count": 1}}, "days": {"_count": 24, "of": {"_count": 4}, "crept": {"_count": 1}, "left": {"_count": 1}, "slipped": {"_count": 1}, "became": {"_count": 1}, "until": {"_count": 1}, "when": {"_count": 4}, "to": {"_count": 1}, "remaining": {"_count": 1}, "in": {"_count": 1}, "before": {"_count": 2}, "work": {"_count": 1}, "news": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "stretched": {"_count": 2}}, "week": {"_count": 10, "because": {"_count": 1}, "before": {"_count": 2}, "": {"_count": 2}, "preceding": {"_count": 1}, "leading": {"_count": 2}, "Harry": {"_count": 1}, "for": {"_count": 1}}, "perfect": {"_count": 10, "place": {"_count": 2}, "match": {"_count": 1}, "way": {"_count": 1}, "end": {"_count": 1}, "time": {"_count": 1}, "moving": {"_count": 1}, "plan": {"_count": 1}, "Summoning": {"_count": 1}, "opportunity": {"_count": 1}}, "rock": {"_count": 31, "was": {"_count": 1}, "where": {"_count": 2}, "like": {"_count": 1}, "crumbling": {"_count": 1}, "": {"_count": 8}, "after": {"_count": 1}, "to": {"_count": 1}, "following": {"_count": 1}, "cake": {"_count": 1}, "unrelieved": {"_count": 1}, "face": {"_count": 2}, "as": {"_count": 1}, "rim": {"_count": 1}, "and": {"_count": 2}, "an": {"_count": 1}, "their": {"_count": 1}, "behind": {"_count": 1}, "so": {"_count": 1}, "still": {"_count": 1}, "said": {"_count": 1}, "tremble": {"_count": 1}}, "most": {"_count": 140, "miserable": {"_count": 1}, "peculiar": {"_count": 2}, "points": {"_count": 1}, "boring": {"_count": 4}, "complex": {"_count": 1}, "important": {"_count": 10}, "horrible": {"_count": 4}, "popular": {"_count": 3}, "hated": {"_count": 1}, "terrible": {"_count": 1}, "insulting": {"_count": 1}, "advanced": {"_count": 1}, "exciting": {"_count": 2}, "learned": {"_count": 1}, "complicated": {"_count": 1}, "interesting": {"_count": 2}, "brilliant": {"_count": 2}, "of": {"_count": 2}, "extraordinary": {"_count": 2}, "feared": {"_count": 1}, "infamous": {"_count": 1}, "fascinating": {"_count": 1}, "magnificent": {"_count": 2}, "severely": {"_count": 1}, "difficult": {"_count": 2}, "imprecise": {"_count": 1}, "obvious": {"_count": 1}, "bizarre": {"_count": 2}, "succulentlooking": {"_count": 1}, "delicious": {"_count": 1}, "heavily": {"_count": 1}, "haunted": {"_count": 1}, "unusual": {"_count": 3}, "intelligent": {"_count": 1}, "evil": {"_count": 2}, "powerful": {"_count": 7}, "noticeable": {"_count": 1}, "beautiful": {"_count": 4}, "conspicuous": {"_count": 1}, "wonderful": {"_count": 4}, "unpleasant": {"_count": 2}, "repulsive": {"_count": 1}, "amazing": {"_count": 2}, "stunning": {"_count": 1}, "useful": {"_count": 2}, "urgent": {"_count": 1}, "lurid": {"_count": 1}, "secret": {"_count": 1}, "fun": {"_count": 1}, "famous": {"_count": 1}, "faithful": {"_count": 1}, "subdued": {"_count": 1}, "recent": {"_count": 1}, "realistic": {"_count": 1}, "fleeting": {"_count": 2}, "she": {"_count": 1}, "we": {"_count": 1}, "insensitive": {"_count": 1}, "curious": {"_count": 1}, "stringent": {"_count": 1}, "": {"_count": 1}, "mysterious": {"_count": 1}, "accomplished": {"_count": 1}, "expensive": {"_count": 1}, "warmly": {"_count": 1}, "marvelous": {"_count": 1}, "effort": {"_count": 1}, "seductive": {"_count": 1}, "dangerous": {"_count": 2}, "incomprehensible": {"_count": 1}, "likely": {"_count": 1}, "savage": {"_count": 1}, "serious": {"_count": 1}, "handsome": {"_count": 1}, "relaxed": {"_count": 1}, "gruesome": {"_count": 1}, "crucial": {"_count": 1}, "uncomfortable": {"_count": 1}, "powerfully": {"_count": 3}, "unlikely": {"_count": 1}, "shaken": {"_count": 1}, "notable": {"_count": 1}, "inspiring": {"_count": 1}, "turbulent": {"_count": 1}, "testing": {"_count": 1}, "to": {"_count": 1}, "wanted": {"_count": 1}, "senior": {"_count": 1}, "devoted": {"_count": 1}, "ancient": {"_count": 1}, "frightened": {"_count": 1}, "stupendous": {"_count": 1}}, "irongray": {"_count": 1, "water": {"_count": 1}}, "boat": {"_count": 19, "": {"_count": 7}, "Harry": {"_count": 1}, "and": {"_count": 1}, "bumped": {"_count": 1}, "hit": {"_count": 1}, "said": {"_count": 1}, "which": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "began": {"_count": 1}, "ghostly": {"_count": 1}}, "brokendown": {"_count": 1, "house": {"_count": 1}}, "gaps": {"_count": 4, "in": {"_count": 3}, "where": {"_count": 1}}, "wooden": {"_count": 14, "walls": {"_count": 1}, "door": {"_count": 1}, "doors": {"_count": 1}, "desks": {"_count": 1}, "staircase": {"_count": 1}, "surface": {"_count": 2}, "leg": {"_count": 1}, "table": {"_count": 1}, "front": {"_count": 1}, "floor": {"_count": 2}, "sign": {"_count": 1}, "tabletop": {"_count": 1}}, "empty": {"_count": 56, "chip": {"_count": 1}, "grate": {"_count": 4}, "bowl": {"_count": 1}, "fireplace": {"_count": 1}, "lacewing": {"_count": 1}, "Gryffindor": {"_count": 1}, "seat": {"_count": 2}, "Chamber": {"_count": 1}, "cage": {"_count": 1}, "brandy": {"_count": 1}, "chocolate": {"_count": 1}, "passage": {"_count": 1}, "tankard": {"_count": 1}, "dormitory": {"_count": 1}, "castle": {"_count": 2}, "common": {"_count": 2}, "chair": {"_count": 3}, "entrance": {"_count": 1}, "grindylow": {"_count": 1}, "space": {"_count": 2}, "dishes": {"_count": 1}, "echoing": {"_count": 1}, "classroom": {"_count": 1}, "table": {"_count": 1}, "napkin": {"_count": 1}, "Transfiguration": {"_count": 1}, "starstrewn": {"_count": 1}, "picture": {"_count": 1}, "corridors": {"_count": 1}, "stands": {"_count": 1}, "frame": {"_count": 1}, "kitchen": {"_count": 2}, "room": {"_count": 1}, "yard": {"_count": 1}, "goblet": {"_count": 1}, "glass": {"_count": 1}, "plates": {"_count": 1}, "dance": {"_count": 1}, "basin": {"_count": 1}, "portrait": {"_count": 1}, "canvas": {"_count": 1}, "hilltop": {"_count": 1}, "windows": {"_count": 1}, "bed": {"_count": 1}, "sitting": {"_count": 1}, "goblets": {"_count": 1}}, "thought": {"_count": 35, "didnt": {"_count": 1}, "of": {"_count": 21}, "that": {"_count": 7}, "how": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 1}, "struck": {"_count": 1}, "apparently": {"_count": 1}}, "promised": {"_count": 1, "storm": {"_count": 1}}, "high": {"_count": 29, "waves": {"_count": 1}, "windows": {"_count": 8}, "chamber": {"_count": 1}, "curtains": {"_count": 1}, "chair": {"_count": 1}, "pillars": {"_count": 1}, "dark": {"_count": 1}, "winds": {"_count": 1}, "stone": {"_count": 1}, "cold": {"_count": 5}, "pitched": {"_count": 1}, "mullioned": {"_count": 1}, "raised": {"_count": 1}, "hedges": {"_count": 1}, "walls": {"_count": 1}, "wroughtiron": {"_count": 1}, "vaulted": {"_count": 1}, "voice": {"_count": 1}}, "hut": {"_count": 5, "and": {"_count": 1}, "stooping": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 2}}, "filthy": {"_count": 9, "windows": {"_count": 1}, "pillowcase": {"_count": 1}, "layabout": {"_count": 1}, "rag": {"_count": 3}, "window": {"_count": 1}, "hypocrite": {"_count": 1}, "cluttered": {"_count": 1}}, "motheaten": {"_count": 2, "sofa": {"_count": 1}, "covers": {"_count": 1}}, "lumpy": {"_count": 5, "bed": {"_count": 1}, "seat": {"_count": 1}, "tablecloth": {"_count": 1}, "Amycus": {"_count": 1}, "Death": {"_count": 1}}, "softest": {"_count": 1, "bit": {"_count": 1}}, "thinnest": {"_count": 2, "most": {"_count": 1}, "of": {"_count": 1}}, "sofa": {"_count": 32, "on": {"_count": 1}, "where": {"_count": 1}, "jerked": {"_count": 1}, "which": {"_count": 3}, "and": {"_count": 2}, "": {"_count": 13}, "to": {"_count": 1}, "into": {"_count": 1}, "zoomed": {"_count": 2}, "Uncle": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 1}, "her": {"_count": 1}, "Hermione": {"_count": 1}, "so": {"_count": 1}, "keeping": {"_count": 1}}, "sea": {"_count": 26, "slapping": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 4}, "gleamed": {"_count": 1}, "of": {"_count": 8}, "breeze": {"_count": 1}, "marking": {"_count": 1}, "now": {"_count": 1}, "its": {"_count": 1}, "like": {"_count": 1}, "washing": {"_count": 1}, "was": {"_count": 1}}, "cannon": {"_count": 1, "": {"_count": 1}}, "long": {"_count": 59, "thin": {"_count": 2}, "silence": {"_count": 1}, "feelers": {"_count": 1}, "empty": {"_count": 1}, "lines": {"_count": 2}, "gorilla": {"_count": 1}, "circular": {"_count": 1}, "dark": {"_count": 1}, "walk": {"_count": 1}, "sunny": {"_count": 1}, "sloping": {"_count": 1}, "House": {"_count": 1}, "tables": {"_count": 1}, "Arithmancy": {"_count": 1}, "silver": {"_count": 2}, "oval": {"_count": 1}, "procession": {"_count": 1}, "Gryffindor": {"_count": 2}, "spikes": {"_count": 1}, "wait": {"_count": 1}, "fingers": {"_count": 1}, "mirror": {"_count": 1}, "staircase": {"_count": 1}, "white": {"_count": 1}, "nose": {"_count": 1}, "mossgreen": {"_count": 1}, "staff": {"_count": 1}, "line": {"_count": 1}, "essay": {"_count": 1}, "list": {"_count": 1}, "plait": {"_count": 1}, "black": {"_count": 2}, "kitchen": {"_count": 2}, "run": {"_count": 1}, "wooden": {"_count": 2}, "bough": {"_count": 1}, "cold": {"_count": 1}, "chink": {"_count": 1}, "alleys": {"_count": 1}, "pale": {"_count": 1}, "sash": {"_count": 1}, "campaign": {"_count": 1}, "curly": {"_count": 1}, "blonde": {"_count": 1}, "fleshcolored": {"_count": 1}, "way": {"_count": 1}, "roll": {"_count": 1}, "table": {"_count": 1}, "talks": {"_count": 1}, "stringy": {"_count": 1}, "hair": {"_count": 1}, "minutes": {"_count": 1}}, "doorway": {"_count": 50, "": {"_count": 17}, "Filchs": {"_count": 1}, "leading": {"_count": 1}, "then": {"_count": 1}, "to": {"_count": 6}, "covered": {"_count": 1}, "illuminated": {"_count": 1}, "he": {"_count": 2}, "behind": {"_count": 1}, "looking": {"_count": 1}, "leaning": {"_count": 2}, "because": {"_count": 1}, "Dumbledore": {"_count": 1}, "into": {"_count": 1}, "smiling": {"_count": 1}, "wrapped": {"_count": 1}, "wearing": {"_count": 1}, "of": {"_count": 3}, "against": {"_count": 1}, "his": {"_count": 1}, "from": {"_count": 1}, "stood": {"_count": 1}, "a": {"_count": 1}, "listening": {"_count": 1}, "but": {"_count": 1}}, "hair": {"_count": 17, "": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 5}, "and": {"_count": 3}, "was": {"_count": 1}, "out": {"_count": 2}, "into": {"_count": 2}, "dragged": {"_count": 1}, "at": {"_count": 1}}, "storm": {"_count": 7, "outside": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 2}, "of": {"_count": 1}, "raging": {"_count": 1}}, "stranger": {"_count": 7, "": {"_count": 1}, "you": {"_count": 1}, "suddenly": {"_count": 1}, "who": {"_count": 1}, "kept": {"_count": 1}, "was": {"_count": 1}, "standing": {"_count": 1}}, "fierce": {"_count": 3, "wild": {"_count": 1}, "wind": {"_count": 1}, "prickling": {"_count": 1}}, "beetle": {"_count": 6, "eyes": {"_count": 1}, "just": {"_count": 1}, "and": {"_count": 1}, "impatiently": {"_count": 1}, "which": {"_count": 1}, "back": {"_count": 1}}, "gun": {"_count": 1, "out": {"_count": 1}}, "words": {"_count": 80, "got": {"_count": 1}, "": {"_count": 4}, "Platform": {"_count": 1}, "Gilderoy": {"_count": 1}, "Nimbus": {"_count": 1}, "SIR": {"_count": 1}, "still": {"_count": 1}, "werent": {"_count": 1}, "Mount": {"_count": 1}, "of": {"_count": 1}, "Ministry": {"_count": 1}, "tumbling": {"_count": 2}, "the": {"_count": 1}, "sounded": {"_count": 1}, "send": {"_count": 1}, "HA": {"_count": 1}, "HEE": {"_count": 1}, "my": {"_count": 1}, "and": {"_count": 2}, "Fred": {"_count": 1}, "out": {"_count": 3}, "were": {"_count": 3}, "to": {"_count": 1}, "across": {"_count": 1}, "had": {"_count": 4}, "on": {"_count": 4}, "I": {"_count": 1}, "carved": {"_count": 1}, "now": {"_count": 2}, "Umbridge": {"_count": 1}, "as": {"_count": 1}, "coming": {"_count": 1}, "etched": {"_count": 1}, "DANGEROUS": {"_count": 1}, "HARRY": {"_count": 1}, "came": {"_count": 1}, "we": {"_count": 1}, "echoed": {"_count": 1}, "wash": {"_count": 1}, "from": {"_count": 1}, "he": {"_count": 2}, "ISSUED": {"_count": 1}, "shocked": {"_count": 1}, "Accio": {"_count": 1}, "Krum": {"_count": 1}, "My": {"_count": 1}, "\u2018My": {"_count": 1}, "aloud": {"_count": 1}, "vanished": {"_count": 1}, "with": {"_count": 1}, "his": {"_count": 1}, "The": {"_count": 1}, "MAGIC": {"_count": 1}, "undesirable": {"_count": 1}, "KENDRA": {"_count": 1}, "engraved": {"_count": 1}, "slowly": {"_count": 1}, "\u2018Deathly": {"_count": 1}, "UNDESIRABLE": {"_count": 2}, "that": {"_count": 1}, "wiped": {"_count": 1}, "at": {"_count": 1}}, "shriveled": {"_count": 3, "chip": {"_count": 1}, "bean": {"_count": 1}, "kidneylike": {"_count": 1}}, "warmth": {"_count": 5, "wash": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "of": {"_count": 1}}, "pockets": {"_count": 7, "of": {"_count": 4}, "": {"_count": 2}, "were": {"_count": 1}}, "poker": {"_count": 3, "Dudley": {"_count": 1}, "standing": {"_count": 1}, "": {"_count": 1}}, "sausages": {"_count": 2, "to": {"_count": 1}, "but": {"_count": 1}}, "shadows": {"_count": 34, "": {"_count": 8}, "and": {"_count": 3}, "staring": {"_count": 1}, "a": {"_count": 2}, "next": {"_count": 1}, "on": {"_count": 1}, "of": {"_count": 5}, "closed": {"_count": 1}, "behind": {"_count": 2}, "gritting": {"_count": 1}, "beyond": {"_count": 1}, "beside": {"_count": 2}, "as": {"_count": 1}, "at": {"_count": 1}, "beneath": {"_count": 1}, "in": {"_count": 1}, "is": {"_count": 1}, "fumbled": {"_count": 1}}, "furious": {"_count": 5, "look": {"_count": 1}, "diatribe": {"_count": 1}, "roars": {"_count": 1}, "caretaker": {"_count": 1}, "looks": {"_count": 1}}, "whistling": {"_count": 2, "wind": {"_count": 1}, "of": {"_count": 1}}, "yellowish": {"_count": 3, "envelope": {"_count": 1}, "label": {"_count": 1}, "skin": {"_count": 1}}, "note": {"_count": 29, "gave": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 5}, "was": {"_count": 2}, "": {"_count": 4}, "had": {"_count": 1}, "of": {"_count": 2}, "from": {"_count": 4}, "with": {"_count": 1}, "up": {"_count": 1}, "open": {"_count": 1}, "over": {"_count": 1}, "I": {"_count": 1}, "back": {"_count": 1}, "inside": {"_count": 1}, "signed": {"_count": 1}}, "owl": {"_count": 26, "which": {"_count": 1}, "out": {"_count": 2}, "held": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 6}, "with": {"_count": 1}, "safely": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}, "that": {"_count": 1}, "swooped": {"_count": 1}, "droppings": {"_count": 1}, "fluttered": {"_count": 1}, "to": {"_count": 1}, "took": {"_count": 1}, "departed": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "lay": {"_count": 1}}, "firelight": {"_count": 22, "": {"_count": 8}, "glancing": {"_count": 1}, "and": {"_count": 3}, "glinting": {"_count": 2}, "his": {"_count": 1}, "as": {"_count": 1}, "illuminated": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 2}, "Ron": {"_count": 1}, "on": {"_count": 1}}, "fire": {"_count": 173, "for": {"_count": 2}, "": {"_count": 53}, "from": {"_count": 1}, "but": {"_count": 5}, "off": {"_count": 1}, "in": {"_count": 8}, "underneath": {"_count": 1}, "to": {"_count": 1}, "cause": {"_count": 1}, "and": {"_count": 16}, "turned": {"_count": 1}, "roared": {"_count": 1}, "say": {"_count": 1}, "felt": {"_count": 1}, "with": {"_count": 2}, "before": {"_count": 1}, "spilling": {"_count": 1}, "was": {"_count": 4}, "had": {"_count": 2}, "that": {"_count": 2}, "getting": {"_count": 1}, "like": {"_count": 1}, "blazing": {"_count": 1}, "beside": {"_count": 2}, "folded": {"_count": 1}, "Wormtail": {"_count": 1}, "crackling": {"_count": 2}, "saying": {"_count": 1}, "shouted": {"_count": 1}, "looking": {"_count": 1}, "lit": {"_count": 1}, "vigorously": {"_count": 1}, "now": {"_count": 2}, "talking": {"_count": 1}, "tongs": {"_count": 1}, "met": {"_count": 1}, "facing": {"_count": 1}, "it": {"_count": 2}, "beneath": {"_count": 1}, "listening": {"_count": 1}, "if": {"_count": 1}, "behind": {"_count": 1}, "looked": {"_count": 1}, "miss": {"_count": 1}, "said": {"_count": 1}, "Ron": {"_count": 1}, "every": {"_count": 1}, "at": {"_count": 2}, "then": {"_count": 1}, "guttered": {"_count": 1}, "until": {"_count": 1}, "again": {"_count": 2}, "trying": {"_count": 1}, "all": {"_count": 1}, "nearly": {"_count": 1}, "wishing": {"_count": 1}, "merely": {"_count": 1}, "the": {"_count": 3}, "apparently": {"_count": 1}, "upstairs": {"_count": 1}, "his": {"_count": 1}, "so": {"_count": 2}, "Kreacher": {"_count": 1}, "by": {"_count": 1}, "Sirius": {"_count": 1}, "yet": {"_count": 1}, "once": {"_count": 1}, "green": {"_count": 1}, "though": {"_count": 1}, "staring": {"_count": 1}, "as": {"_count": 1}, "dancing": {"_count": 1}, "Flames": {"_count": 1}, "Hermione": {"_count": 1}, "crackled": {"_count": 1}, "he": {"_count": 1}, "leapt": {"_count": 1}, "pursued": {"_count": 1}, "between": {"_count": 1}}, "mystry": {"_count": 1, "is": {"_count": 1}}, "Dark": {"_count": 361, "Side": {"_count": 10}, "wizard": {"_count": 4}, "Arts": {"_count": 170}, "Lord": {"_count": 100}, "Force": {"_count": 3}, "Forces": {"_count": 1}, "Lords": {"_count": 25}, "days": {"_count": 1}, "stuff": {"_count": 1}, "Mark": {"_count": 43}, "Marks": {"_count": 1}, "Order": {"_count": 1}, "ArtsO": {"_count": 1}}, "village": {"_count": 64, "where": {"_count": 3}, "havin": {"_count": 1}, "": {"_count": 11}, "said": {"_count": 1}, "below": {"_count": 1}, "instead": {"_count": 1}, "of": {"_count": 9}, "sometimes": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 4}, "by": {"_count": 1}, "some": {"_count": 1}, "still": {"_count": 1}, "pub": {"_count": 1}, "had": {"_count": 1}, "that": {"_count": 2}, "made": {"_count": 1}, "the": {"_count": 2}, "its": {"_count": 1}, "there": {"_count": 1}, "post": {"_count": 1}, "most": {"_count": 1}, "with": {"_count": 1}, "together": {"_count": 1}, "however": {"_count": 1}, "passed": {"_count": 1}, "The": {"_count": 1}, "was": {"_count": 1}, "theres": {"_count": 1}, "he": {"_count": 1}, "preparing": {"_count": 1}, "is": {"_count": 1}, "in": {"_count": 2}, "lay": {"_count": 1}, "under": {"_count": 1}, "like": {"_count": 1}, "a": {"_count": 1}, "looked": {"_count": 1}}, "thing": {"_count": 82, "he": {"_count": 8}, "is": {"_count": 6}, "in": {"_count": 3}, "properly": {"_count": 2}, "itself": {"_count": 3}, "does": {"_count": 1}, "But": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 4}, "that": {"_count": 21}, "his": {"_count": 1}, "beneath": {"_count": 1}, "was": {"_count": 4}, "could": {"_count": 1}, "you": {"_count": 4}, "and": {"_count": 1}, "against": {"_count": 2}, "became": {"_count": 1}, "YouKnow": {"_count": 1}, "remained": {"_count": 1}, "she": {"_count": 1}, "slightly": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}, "for": {"_count": 2}, "doesnt": {"_count": 2}, "inside": {"_count": 2}, "came": {"_count": 1}, "thats": {"_count": 1}, "vibrate": {"_count": 1}, "Right": {"_count": 1}, "above": {"_count": 1}}, "age": {"_count": 18, "the": {"_count": 1}, "of": {"_count": 13}, "": {"_count": 1}, "but": {"_count": 1}, "restriction": {"_count": 1}, "by": {"_count": 1}}, "McKinnons": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "Bones": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "Prewetts": {"_count": 2, "an": {"_count": 1}, "": {"_count": 1}}, "blinding": {"_count": 2, "flash": {"_count": 1}, "white": {"_count": 1}}, "ruined": {"_count": 4, "house": {"_count": 2}, "book": {"_count": 1}, "painting": {"_count": 1}}, "worlds": {"_count": 8, "better": {"_count": 1}, "best": {"_count": 2}, "biggest": {"_count": 2}, "he": {"_count": 1}, "great": {"_count": 1}, "most": {"_count": 1}}, "greatest": {"_count": 24, "sorcerer": {"_count": 3}, "headmaster": {"_count": 2}, "wizard": {"_count": 9}, "wizards": {"_count": 1}, "Dark": {"_count": 1}, "regret": {"_count": 3}, "secrecy": {"_count": 1}, "sympathy": {"_count": 1}, "one": {"_count": 1}, "treasure": {"_count": 1}, "effort": {"_count": 1}}, "world": {"_count": 90, "how": {"_count": 1}, "": {"_count": 21}, "fer": {"_count": 1}, "to": {"_count": 4}, "And": {"_count": 1}, "for": {"_count": 3}, "after": {"_count": 1}, "at": {"_count": 2}, "of": {"_count": 3}, "said": {"_count": 3}, "is": {"_count": 1}, "and": {"_count": 6}, "Harry": {"_count": 2}, "isnt": {"_count": 2}, "injuries": {"_count": 1}, "couldnt": {"_count": 1}, "he": {"_count": 3}, "that": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 3}, "was": {"_count": 4}, "Thats": {"_count": 1}, "righted": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}, "beyond": {"_count": 1}, "she": {"_count": 1}, "in": {"_count": 1}, "going": {"_count": 1}, "apart": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 2}, "Ill": {"_count": 1}, "who": {"_count": 1}, "has": {"_count": 2}, "hidden": {"_count": 1}, "had": {"_count": 1}, "what": {"_count": 1}, "together": {"_count": 1}, "Voldemort": {"_count": 1}, "Ginny": {"_count": 1}, "were": {"_count": 1}, "with": {"_count": 1}, "resolved": {"_count": 1}}, "finest": {"_count": 3, "school": {"_count": 1}, "moment": {"_count": 1}, "thread": {"_count": 1}}, "umbrella": {"_count": 3, "swishing": {"_count": 1}, "stand": {"_count": 1}, "tip": {"_count": 1}}, "reasons": {"_count": 7, "I": {"_count": 3}, "behind": {"_count": 1}, "why": {"_count": 1}, "for": {"_count": 1}, "you": {"_count": 1}}, "job": {"_count": 36, "Why": {"_count": 1}, "": {"_count": 7}, "He": {"_count": 1}, "said": {"_count": 3}, "Ill": {"_count": 1}, "Lockhart": {"_count": 1}, "description": {"_count": 1}, "after": {"_count": 1}, "was": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 3}, "this": {"_count": 1}, "they": {"_count": 1}, "shes": {"_count": 1}, "Horace": {"_count": 1}, "sir": {"_count": 1}, "alone": {"_count": 1}, "however": {"_count": 1}, "If": {"_count": 1}, "satisfaction": {"_count": 1}, "did": {"_count": 1}, "then": {"_count": 1}, "once": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}}, "truth": {"_count": 108, "": {"_count": 40}, "that": {"_count": 1}, "was": {"_count": 2}, "about": {"_count": 10}, "out": {"_count": 2}, "would": {"_count": 1}, "all": {"_count": 1}, "Sirius": {"_count": 1}, "we": {"_count": 1}, "or": {"_count": 3}, "of": {"_count": 4}, "he": {"_count": 2}, "Hagrid": {"_count": 1}, "Harry": {"_count": 2}, "it": {"_count": 1}, "must": {"_count": 1}, "do": {"_count": 1}, "is": {"_count": 2}, "this": {"_count": 1}, "could": {"_count": 1}, "skiings": {"_count": 1}, "and": {"_count": 3}, "at": {"_count": 1}, "said": {"_count": 2}, "looking": {"_count": 1}, "for": {"_count": 2}, "more": {"_count": 1}, "now": {"_count": 2}, "to": {"_count": 2}, "because": {"_count": 1}, "occasionally": {"_count": 1}, "from": {"_count": 2}, "hit": {"_count": 1}, "How": {"_count": 1}, "they": {"_count": 1}, "dawn": {"_count": 1}, "seems": {"_count": 1}, "just": {"_count": 1}, "ugly": {"_count": 1}, "tell": {"_count": 1}, "Another": {"_count": 1}, "I": {"_count": 1}, "before": {"_count": 1}}, "collapsed": {"_count": 1, "sofa": {"_count": 1}}, "newspaper": {"_count": 37, "on": {"_count": 3}, "": {"_count": 8}, "picture": {"_count": 1}, "scanned": {"_count": 1}, "and": {"_count": 9}, "thoughtfully": {"_count": 1}, "to": {"_count": 2}, "Mr": {"_count": 1}, "every": {"_count": 1}, "back": {"_count": 1}, "eagerly": {"_count": 1}, "scanning": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}, "idly": {"_count": 1}, "onto": {"_count": 1}, "away": {"_count": 1}, "crossed": {"_count": 1}, "toward": {"_count": 1}}, "coat": {"_count": 1, "": {"_count": 1}}, "money": {"_count": 8, "into": {"_count": 2}, "": {"_count": 2}, "bag": {"_count": 3}, "in": {"_count": 1}}, "open": {"_count": 52, "window": {"_count": 18}, "fire": {"_count": 1}, "door": {"_count": 10}, "trapdoor": {"_count": 1}, "front": {"_count": 5}, "sky": {"_count": 1}, "drawer": {"_count": 1}, "windows": {"_count": 1}, "egg": {"_count": 1}, "once": {"_count": 1}, "Sirius": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 3}, "air": {"_count": 1}, "doors": {"_count": 1}, "but": {"_count": 1}, "area": {"_count": 1}, "doorway": {"_count": 2}, "ground": {"_count": 1}}, "wizard": {"_count": 61, "coins": {"_count": 1}, "of": {"_count": 1}, "remember": {"_count": 1}, "who": {"_count": 13}, "prison": {"_count": 5}, "didnt": {"_count": 1}, "ignored": {"_count": 1}, "might": {"_count": 1}, "": {"_count": 6}, "he": {"_count": 2}, "next": {"_count": 1}, "in": {"_count": 3}, "held": {"_count": 1}, "impaling": {"_count": 1}, "slowly": {"_count": 1}, "nodding": {"_count": 1}, "seriously": {"_count": 1}, "carrying": {"_count": 1}, "or": {"_count": 1}, "is": {"_count": 2}, "called": {"_count": 5}, "styling": {"_count": 1}, "conversationally": {"_count": 1}, "so": {"_count": 1}, "farewell": {"_count": 1}, "headed": {"_count": 1}, "beside": {"_count": 1}, "you": {"_count": 1}, "named": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}}, "happy": {"_count": 5, "balloon": {"_count": 1}, "expression": {"_count": 1}, "confident": {"_count": 1}, "event": {"_count": 1}, "memories": {"_count": 1}}, "bit": {"_count": 10, "of": {"_count": 7}, "Harry": {"_count": 1}, "about": {"_count": 1}, "thats": {"_count": 1}}, "safest": {"_count": 6, "place": {"_count": 5}, "cover": {"_count": 1}}, "sunlight": {"_count": 16, "": {"_count": 3}, "outside": {"_count": 2}, "as": {"_count": 3}, "swinging": {"_count": 1}, "gleaming": {"_count": 1}, "which": {"_count": 1}, "filtering": {"_count": 1}, "streaming": {"_count": 1}, "a": {"_count": 1}, "were": {"_count": 1}, "at": {"_count": 1}}, "bottom": {"_count": 96, "after": {"_count": 1}, "and": {"_count": 6}, "shelf": {"_count": 1}, "of": {"_count": 64}, "had": {"_count": 2}, "": {"_count": 6}, "stair": {"_count": 1}, "lefthand": {"_count": 1}, "with": {"_count": 2}, "ten": {"_count": 1}, "beside": {"_count": 1}, "o": {"_count": 1}, "step": {"_count": 2}, "bulb": {"_count": 1}, "as": {"_count": 1}, "old": {"_count": 1}, "half": {"_count": 1}, "where": {"_count": 1}, "sighed": {"_count": 1}, "was": {"_count": 1}}, "pink": {"_count": 6, "umbrella": {"_count": 1}, "fluffy": {"_count": 1}, "": {"_count": 1}, "patches": {"_count": 1}, "flush": {"_count": 2}}, "side": {"_count": 58, "of": {"_count": 41}, "to": {"_count": 1}, "road": {"_count": 1}, "mirror": {"_count": 1}, "": {"_count": 1}, "facing": {"_count": 1}, "chamber": {"_count": 3}, "and": {"_count": 1}, "with": {"_count": 1}, "street": {"_count": 4}, "pocket": {"_count": 1}, "blackened": {"_count": 1}, "considering": {"_count": 1}}, "highsecurity": {"_count": 1, "vaults": {"_count": 1}}, "Underground": {"_count": 6, "": {"_count": 1}, "and": {"_count": 1}, "laden": {"_count": 1}, "Really": {"_count": 1}, "map": {"_count": 1}, "did": {"_count": 1}}, "Daily": {"_count": 101, "Prophet": {"_count": 99}, "Prophets": {"_count": 2}}, "page": {"_count": 29, "": {"_count": 8}, "headed": {"_count": 1}, "vanished": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 4}, "into": {"_count": 1}, "frowning": {"_count": 1}, "back": {"_count": 1}, "unfolded": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 1}, "before": {"_count": 2}, "the": {"_count": 1}, "she": {"_count": 2}, "as": {"_count": 1}, "bearing": {"_count": 1}}, "harbor": {"_count": 1, "wall": {"_count": 1}}, "stone": {"_count": 146, "steps": {"_count": 49}, "floor": {"_count": 9}, "apart": {"_count": 1}, "with": {"_count": 1}, "sprang": {"_count": 1}, "fireplace": {"_count": 1}, "walls": {"_count": 2}, "wall": {"_count": 6}, "": {"_count": 5}, "staircase": {"_count": 2}, "snakes": {"_count": 1}, "face": {"_count": 1}, "and": {"_count": 4}, "doors": {"_count": 1}, "basin": {"_count": 13}, "witch": {"_count": 1}, "down": {"_count": 1}, "chute": {"_count": 1}, "slide": {"_count": 2}, "front": {"_count": 1}, "because": {"_count": 1}, "corridor": {"_count": 1}, "reindeers": {"_count": 1}, "merperson": {"_count": 1}, "which": {"_count": 1}, "gargoyle": {"_count": 8}, "bottom": {"_count": 3}, "spiral": {"_count": 1}, "cushioned": {"_count": 1}, "archway": {"_count": 1}, "benches": {"_count": 3}, "bench": {"_count": 1}, "stairs": {"_count": 1}, "Having": {"_count": 1}, "Pensieve": {"_count": 2}, "in": {"_count": 1}, "He": {"_count": 1}, "would": {"_count": 1}, "that": {"_count": 1}, "Mr": {"_count": 1}, "were": {"_count": 2}, "properly": {"_count": 1}, "now": {"_count": 1}, "he": {"_count": 1}, "read": {"_count": 1}, "passage": {"_count": 1}, "diadem": {"_count": 1}, "bust": {"_count": 1}, "over": {"_count": 1}, "whom": {"_count": 1}}, "station": {"_count": 29, "": {"_count": 12}, "in": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}, "refusing": {"_count": 1}, "then": {"_count": 1}, "tomorrow": {"_count": 1}, "the": {"_count": 1}, "exit": {"_count": 1}, "they": {"_count": 1}, "was": {"_count": 1}, "windows": {"_count": 1}, "didnt": {"_count": 1}, "toward": {"_count": 2}, "Is": {"_count": 1}, "without": {"_count": 1}, "when": {"_count": 1}}, "bills": {"_count": 1, "to": {"_count": 1}}, "train": {"_count": 122, "": {"_count": 30}, "that": {"_count": 4}, "from": {"_count": 1}, "to": {"_count": 2}, "door": {"_count": 3}, "and": {"_count": 8}, "until": {"_count": 1}, "rounded": {"_count": 1}, "Lee": {"_count": 1}, "had": {"_count": 3}, "We": {"_count": 1}, "it": {"_count": 2}, "back": {"_count": 3}, "home": {"_count": 1}, "coming": {"_count": 1}, "Ron": {"_count": 1}, "as": {"_count": 4}, "miles": {"_count": 1}, "isnt": {"_count": 1}, "straight": {"_count": 1}, "the": {"_count": 2}, "past": {"_count": 1}, "slamming": {"_count": 1}, "turned": {"_count": 1}, "picked": {"_count": 1}, "sped": {"_count": 2}, "started": {"_count": 1}, "stopped": {"_count": 1}, "Potter": {"_count": 1}, "compartment": {"_count": 1}, "with": {"_count": 1}, "doors": {"_count": 2}, "began": {"_count": 4}, "moved": {"_count": 1}, "heads": {"_count": 1}, "about": {"_count": 1}, "first": {"_count": 1}, "in": {"_count": 2}, "now": {"_count": 1}, "Harry": {"_count": 1}, "window": {"_count": 1}, "made": {"_count": 2}, "he": {"_count": 1}, "through": {"_count": 2}, "rattled": {"_count": 1}, "said": {"_count": 2}, "slowed": {"_count": 2}, "all": {"_count": 1}, "windows": {"_count": 2}, "emerged": {"_count": 1}, "or": {"_count": 1}, "came": {"_count": 1}, "departed": {"_count": 1}, "without": {"_count": 1}, "gathered": {"_count": 1}, "werent": {"_count": 1}, "of": {"_count": 1}, "on": {"_count": 1}, "folded": {"_count": 1}, "you": {"_count": 1}}, "parchment": {"_count": 62, "envelope": {"_count": 1}, "back": {"_count": 2}, "": {"_count": 12}, "from": {"_count": 1}, "in": {"_count": 4}, "fondly": {"_count": 1}, "lightly": {"_count": 1}, "then": {"_count": 1}, "on": {"_count": 3}, "perched": {"_count": 1}, "he": {"_count": 3}, "and": {"_count": 8}, "with": {"_count": 2}, "where": {"_count": 2}, "Attractive": {"_count": 1}, "between": {"_count": 2}, "had": {"_count": 1}, "out": {"_count": 2}, "unrolled": {"_count": 1}, "over": {"_count": 1}, "placed": {"_count": 1}, "dotted": {"_count": 1}, "carefully": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}, "rolling": {"_count": 1}, "as": {"_count": 2}, "said": {"_count": 1}, "inside": {"_count": 1}, "through": {"_count": 1}, "but": {"_count": 1}}, "following": {"_count": 45, "The": {"_count": 1}, "words": {"_count": 1}, "Wednesday": {"_count": 2}, "morning": {"_count": 13}, "week": {"_count": 3}, "letter": {"_count": 1}, "day": {"_count": 10}, "evening": {"_count": 2}, "please": {"_count": 1}, "afternoon": {"_count": 2}, "two": {"_count": 1}, "issue": {"_count": 1}, "Saturday": {"_count": 2}, "simple": {"_count": 1}, "Thursday": {"_count": 1}, "night": {"_count": 1}, "weekend": {"_count": 1}, "years": {"_count": 1}}, "ticket": {"_count": 8, "barrier": {"_count": 3}, "Hagrid": {"_count": 1}, "inspectors": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "inspector": {"_count": 1}}, "seats": {"_count": 7, "were": {"_count": 1}, "farthest": {"_count": 1}, "which": {"_count": 1}, "that": {"_count": 1}, "apparently": {"_count": 1}, "instead": {"_count": 1}, "opposite": {"_count": 1}}, "trains": {"_count": 4, "too": {"_count": 1}, "open": {"_count": 1}, "slipstream": {"_count": 1}, "back": {"_count": 1}}, "crowd": {"_count": 182, "easily": {"_count": 1}, "until": {"_count": 3}, "thronging": {"_count": 3}, "": {"_count": 41}, "as": {"_count": 7}, "saw": {"_count": 3}, "and": {"_count": 10}, "of": {"_count": 6}, "stampeded": {"_count": 1}, "everyone": {"_count": 1}, "howled": {"_count": 1}, "were": {"_count": 2}, "his": {"_count": 2}, "made": {"_count": 1}, "to": {"_count": 5}, "jeered": {"_count": 1}, "he": {"_count": 2}, "below": {"_count": 6}, "matching": {"_count": 1}, "looking": {"_count": 1}, "backed": {"_count": 3}, "by": {"_count": 2}, "some": {"_count": 1}, "in": {"_count": 6}, "swarming": {"_count": 1}, "toward": {"_count": 1}, "thundering": {"_count": 1}, "still": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 2}, "dispersed": {"_count": 1}, "watching": {"_count": 1}, "an": {"_count": 2}, "which": {"_count": 3}, "on": {"_count": 1}, "many": {"_count": 2}, "pounded": {"_count": 1}, "Krums": {"_count": 1}, "seemed": {"_count": 1}, "who": {"_count": 1}, "moving": {"_count": 1}, "around": {"_count": 6}, "erupt": {"_count": 1}, "drew": {"_count": 1}, "shrieked": {"_count": 2}, "but": {"_count": 2}, "pounding": {"_count": 1}, "applauded": {"_count": 1}, "trying": {"_count": 1}, "echoed": {"_count": 1}, "Harry": {"_count": 4}, "turn": {"_count": 1}, "a": {"_count": 1}, "clutching": {"_count": 1}, "hurrying": {"_count": 1}, "came": {"_count": 1}, "all": {"_count": 1}, "are": {"_count": 1}, "grew": {"_count": 1}, "squeezed": {"_count": 1}, "the": {"_count": 1}, "thinned": {"_count": 1}, "shouted": {"_count": 1}, "roared": {"_count": 1}, "laughed": {"_count": 1}, "with": {"_count": 1}, "greeted": {"_count": 1}, "realized": {"_count": 1}, "resume": {"_count": 1}, "that": {"_count": 1}, "past": {"_count": 1}, "directly": {"_count": 1}, "cheered": {"_count": 1}, "did": {"_count": 1}, "approached": {"_count": 1}, "fell": {"_count": 1}, "so": {"_count": 1}, "then": {"_count": 1}, "lining": {"_count": 1}, "whom": {"_count": 1}, "not": {"_count": 1}}, "Leaky": {"_count": 35, "Cauldron": {"_count": 34}, "Cauldrons": {"_count": 1}}, "record": {"_count": 3, "shop": {"_count": 1}, "is": {"_count": 1}, "of": {"_count": 1}}, "bartender": {"_count": 2, "reached": {"_count": 1}, "peering": {"_count": 1}}, "bar": {"_count": 37, "rushed": {"_count": 1}, "and": {"_count": 5}, "": {"_count": 9}, "reading": {"_count": 1}, "laden": {"_count": 1}, "Youre": {"_count": 1}, "which": {"_count": 1}, "pause": {"_count": 1}, "went": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 2}, "saw": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 3}, "apparently": {"_count": 1}, "whose": {"_count": 1}, "first": {"_count": 1}, "but": {"_count": 1}, "she": {"_count": 1}, "counter": {"_count": 1}, "then": {"_count": 1}, "said": {"_count": 1}}, "pipe": {"_count": 10, "was": {"_count": 2}, "hitting": {"_count": 1}, "": {"_count": 4}, "then": {"_count": 1}, "leveled": {"_count": 1}, "too": {"_count": 1}}, "DDDark": {"_count": 1, "Arts": {"_count": 1}}, "others": {"_count": 186, "wouldnt": {"_count": 1}, "but": {"_count": 2}, "becoming": {"_count": 1}, "and": {"_count": 12}, "existed": {"_count": 1}, "": {"_count": 50}, "are": {"_count": 5}, "so": {"_count": 2}, "crowded": {"_count": 1}, "didnt": {"_count": 1}, "because": {"_count": 1}, "dont": {"_count": 1}, "he": {"_count": 1}, "fingers": {"_count": 1}, "the": {"_count": 5}, "out": {"_count": 1}, "got": {"_count": 2}, "Ive": {"_count": 1}, "entered": {"_count": 1}, "conversation": {"_count": 1}, "which": {"_count": 3}, "as": {"_count": 3}, "abandoned": {"_count": 1}, "swarmed": {"_count": 1}, "wrapped": {"_count": 1}, "gave": {"_count": 1}, "covered": {"_count": 1}, "staring": {"_count": 1}, "not": {"_count": 1}, "tried": {"_count": 1}, "keep": {"_count": 1}, "robes": {"_count": 1}, "filing": {"_count": 1}, "all": {"_count": 1}, "just": {"_count": 1}, "took": {"_count": 1}, "like": {"_count": 1}, "followed": {"_count": 2}, "to": {"_count": 8}, "had": {"_count": 4}, "were": {"_count": 7}, "make": {"_count": 1}, "who": {"_count": 4}, "that": {"_count": 1}, "answered": {"_count": 1}, "think": {"_count": 1}, "looked": {"_count": 1}, "Harry": {"_count": 1}, "ter": {"_count": 1}, "specially": {"_count": 1}, "an": {"_count": 1}, "for": {"_count": 1}, "gathered": {"_count": 1}, "have": {"_count": 1}, "his": {"_count": 1}, "And": {"_count": 1}, "in": {"_count": 3}, "under": {"_count": 1}, "was": {"_count": 3}, "over": {"_count": 2}, "following": {"_count": 1}, "at": {"_count": 1}, "accusing": {"_count": 1}, "close": {"_count": 1}, "quickened": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 1}, "go": {"_count": 1}, "went": {"_count": 1}, "face": {"_count": 1}, "nevertheless": {"_count": 1}, "locked": {"_count": 1}, "kicked": {"_count": 1}, "thinking": {"_count": 1}, "laughed": {"_count": 1}, "Kingsley": {"_count": 1}, "by": {"_count": 1}, "thought": {"_count": 1}, "they": {"_count": 1}, "talked": {"_count": 1}, "coming": {"_count": 1}, "a": {"_count": 1}, "footsteps": {"_count": 1}, "glancing": {"_count": 1}, "needed": {"_count": 1}, "struck": {"_count": 1}}, "babble": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 2}}, "Black": {"_count": 10, "Forest": {"_count": 2}, "situation": {"_count": 1}, "family": {"_count": 5}, "crest": {"_count": 2}}, "students": {"_count": 76, "scared": {"_count": 1}, "and": {"_count": 5}, "were": {"_count": 8}, "the": {"_count": 1}, "his": {"_count": 2}, "": {"_count": 5}, "from": {"_count": 4}, "admitted": {"_count": 1}, "cupboard": {"_count": 1}, "swarming": {"_count": 1}, "in": {"_count": 5}, "home": {"_count": 2}, "he": {"_count": 1}, "remained": {"_count": 1}, "since": {"_count": 1}, "hurried": {"_count": 1}, "got": {"_count": 1}, "stifled": {"_count": 1}, "following": {"_count": 1}, "had": {"_count": 4}, "time": {"_count": 1}, "to": {"_count": 1}, "began": {"_count": 1}, "still": {"_count": 1}, "above": {"_count": 1}, "crossed": {"_count": 1}, "talking": {"_count": 1}, "heads": {"_count": 1}, "exchanged": {"_count": 1}, "questioning": {"_count": 1}, "of": {"_count": 3}, "she": {"_count": 1}, "mood": {"_count": 1}, "watching": {"_count": 1}, "milling": {"_count": 1}, "below": {"_count": 1}, "assembled": {"_count": 1}, "told": {"_count": 1}, "who": {"_count": 2}, "all": {"_count": 1}, "before": {"_count": 1}, "marshaling": {"_count": 1}, "out": {"_count": 1}, "looked": {"_count": 1}, "some": {"_count": 2}}, "trash": {"_count": 2, "can": {"_count": 1}, "bin": {"_count": 1}}, "archway": {"_count": 18, "": {"_count": 4}, "shrink": {"_count": 1}, "into": {"_count": 1}, "pushing": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "and": {"_count": 1}, "stood": {"_count": 1}, "he": {"_count": 1}, "angry": {"_count": 1}, "as": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "reopened": {"_count": 1}}, "shops": {"_count": 7, "the": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}, "going": {"_count": 1}, "seemed": {"_count": 1}, "to": {"_count": 1}}, "moon": {"_count": 17, "": {"_count": 6}, "glinting": {"_count": 1}, "when": {"_count": 1}, "to": {"_count": 1}, "completely": {"_count": 1}, "above": {"_count": 1}, "was": {"_count": 1}, "about": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}, "Io": {"_count": 1}, "though": {"_count": 1}}, "white": {"_count": 16, "stone": {"_count": 1}, "pieces": {"_count": 4}, "queen": {"_count": 2}, "flight": {"_count": 1}, "edge": {"_count": 1}, "ferret": {"_count": 1}, "cloth": {"_count": 1}, "skulllike": {"_count": 1}, "hand": {"_count": 1}, "moon": {"_count": 1}, "marble": {"_count": 1}, "hands": {"_count": 1}}, "sin": {"_count": 1, "of": {"_count": 1}}, "counter": {"_count": 25, "": {"_count": 5}, "scattering": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 6}, "before": {"_count": 1}, "smoothing": {"_count": 1}, "that": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}, "with": {"_count": 1}, "where": {"_count": 1}, "again": {"_count": 1}, "clapped": {"_count": 1}, "jogging": {"_count": 1}}, "goblins": {"_count": 32, "book": {"_count": 1}, "all": {"_count": 2}, "and": {"_count": 1}, "who": {"_count": 1}, "too": {"_count": 1}, "were": {"_count": 2}, "": {"_count": 4}, "back": {"_count": 1}, "hat": {"_count": 2}, "hes": {"_count": 1}, "ears": {"_count": 1}, "have": {"_count": 1}, "together": {"_count": 1}, "pointed": {"_count": 1}, "face": {"_count": 1}, "sallow": {"_count": 1}, "eyes": {"_count": 1}, "of": {"_count": 3}, "once": {"_count": 1}, "long": {"_count": 1}, "from": {"_count": 1}, "The": {"_count": 1}, "seemed": {"_count": 1}, "corpse": {"_count": 1}}, "goblin": {"_count": 54, "on": {"_count": 1}, "rebellions": {"_count": 1}, "rebels": {"_count": 1}, "gold": {"_count": 1}, "who": {"_count": 6}, "stood": {"_count": 1}, "and": {"_count": 3}, "leading": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 9}, "bore": {"_count": 1}, "stirred": {"_count": 1}, "looked": {"_count": 1}, "broke": {"_count": 1}, "wincing": {"_count": 1}, "quietly": {"_count": 1}, "sending": {"_count": 1}, "firmly": {"_count": 1}, "softly": {"_count": 1}, "sitting": {"_count": 1}, "bristling": {"_count": 1}, "would": {"_count": 1}, "version": {"_count": 1}, "holding": {"_count": 1}, "remain": {"_count": 1}, "shot": {"_count": 1}, "seemed": {"_count": 1}, "up": {"_count": 1}, "had": {"_count": 2}, "without": {"_count": 1}, "rarely": {"_count": 1}, "clambered": {"_count": 1}, "into": {"_count": 1}, "evidently": {"_count": 1}, "Bogrod": {"_count": 1}, "pulled": {"_count": 1}, "its": {"_count": 1}}, "YouKnowWhat": {"_count": 2, "in": {"_count": 2}}, "dog": {"_count": 23, "biscuits": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 1}, "growled": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "hed": {"_count": 1}, "as": {"_count": 1}, "had": {"_count": 3}, "sprang": {"_count": 1}, "dragging": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 2}, "seized": {"_count": 1}, "pulling": {"_count": 1}, "instead": {"_count": 1}, "up": {"_count": 1}, "followed": {"_count": 1}, "disguise": {"_count": 1}, "belong": {"_count": 1}}, "doors": {"_count": 60, "leading": {"_count": 1}, "at": {"_count": 1}, "closed": {"_count": 2}, "trying": {"_count": 1}, "flew": {"_count": 2}, "the": {"_count": 1}, "to": {"_count": 6}, "slammed": {"_count": 1}, "shut": {"_count": 2}, "and": {"_count": 3}, "of": {"_count": 3}, "into": {"_count": 4}, "reaching": {"_count": 1}, "while": {"_count": 1}, "Davies": {"_count": 1}, "been": {"_count": 1}, "opened": {"_count": 4}, "clanged": {"_count": 1}, "": {"_count": 3}, "from": {"_count": 1}, "they": {"_count": 1}, "usually": {"_count": 1}, "wide": {"_count": 1}, "hastily": {"_count": 1}, "swung": {"_count": 1}, "opposite": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "every": {"_count": 1}, "along": {"_count": 1}, "were": {"_count": 2}, "standing": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 2}, "opening": {"_count": 1}, "had": {"_count": 1}, "that": {"_count": 1}}, "tracks": {"_count": 4, "toward": {"_count": 2}, "His": {"_count": 1}, "which": {"_count": 1}}, "cold": {"_count": 70, "air": {"_count": 4}, "night": {"_count": 4}, "wall": {"_count": 1}, "barrier": {"_count": 1}, "passageway": {"_count": 1}, "Snitch": {"_count": 1}, "drawling": {"_count": 2}, "wind": {"_count": 1}, "without": {"_count": 1}, "grass": {"_count": 1}, "was": {"_count": 1}, "voice": {"_count": 19}, "gray": {"_count": 2}, "stone": {"_count": 3}, "November": {"_count": 1}, "and": {"_count": 4}, "wet": {"_count": 1}, "still": {"_count": 1}, "expression": {"_count": 1}, "tip": {"_count": 1}, "sunlit": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 2}, "metal": {"_count": 2}, "outside": {"_count": 1}, "floor": {"_count": 1}, "office": {"_count": 1}, "surrounding": {"_count": 1}, "windowpane": {"_count": 1}, "watery": {"_count": 1}, "chain": {"_count": 1}, "locket": {"_count": 1}, "black": {"_count": 1}, "gold": {"_count": 1}, "flat": {"_count": 1}, "rock": {"_count": 1}, "hard": {"_count": 1}}, "noise": {"_count": 42, "of": {"_count": 7}, "Snape": {"_count": 1}, "": {"_count": 8}, "that": {"_count": 1}, "died": {"_count": 1}, "and": {"_count": 4}, "so": {"_count": 1}, "also": {"_count": 1}, "rolling": {"_count": 1}, "nodding": {"_count": 1}, "distracting": {"_count": 1}, "attracted": {"_count": 1}, "Potter": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 2}, "in": {"_count": 1}, "level": {"_count": 2}, "he": {"_count": 1}, "echoed": {"_count": 2}, "proved": {"_count": 1}, "Xenophilius": {"_count": 1}, "It": {"_count": 1}, "one": {"_count": 1}}, "cart": {"_count": 10, "whats": {"_count": 1}, "stopped": {"_count": 1}, "was": {"_count": 1}, "dears": {"_count": 1}, "I": {"_count": 1}, "moved": {"_count": 1}, "began": {"_count": 1}, "on": {"_count": 1}, "flipped": {"_count": 1}, "smash": {"_count": 1}}, "difference": {"_count": 18, "between": {"_count": 9}, "said": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 3}, "in": {"_count": 2}, "now": {"_count": 1}, "better": {"_count": 1}}, "passage": {"_count": 39, "wall": {"_count": 2}, "but": {"_count": 1}, "where": {"_count": 1}, "from": {"_count": 1}, "when": {"_count": 2}, "hoping": {"_count": 1}, "outside": {"_count": 1}, "": {"_count": 7}, "that": {"_count": 1}, "to": {"_count": 4}, "began": {"_count": 2}, "was": {"_count": 3}, "into": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}, "staring": {"_count": 1}, "loomed": {"_count": 1}, "leading": {"_count": 1}, "and": {"_count": 1}, "opening": {"_count": 1}, "there": {"_count": 1}, "still": {"_count": 1}, "ahead": {"_count": 1}, "the": {"_count": 1}}, "scruff": {"_count": 5, "of": {"_count": 5}}, "minute": {"_count": 2, "": {"_count": 1}, "Id": {"_count": 1}}, "gamekeeper": {"_count": 5, "said": {"_count": 1}, "Hagrid": {"_count": 1}, "job": {"_count": 1}, "before": {"_count": 1}, "but": {"_count": 1}}, "matter": {"_count": 66, "with": {"_count": 10}, "": {"_count": 25}, "and": {"_count": 1}, "up": {"_count": 1}, "Lavender": {"_count": 1}, "of": {"_count": 6}, "gone": {"_count": 1}, "was": {"_count": 1}, "later": {"_count": 1}, "but": {"_count": 1}, "Ernie": {"_count": 1}, "can": {"_count": 1}, "a": {"_count": 2}, "I": {"_count": 1}, "any": {"_count": 2}, "to": {"_count": 1}, "over": {"_count": 1}, "in": {"_count": 2}, "do": {"_count": 1}, "from": {"_count": 1}, "for": {"_count": 1}, "Hagrid": {"_count": 1}, "rest": {"_count": 1}, "so": {"_count": 1}, "further": {"_count": 1}}, "footstool": {"_count": 1, "": {"_count": 1}}, "drawling": {"_count": 2, "boy": {"_count": 1}, "voice": {"_count": 1}}, "ice": {"_count": 4, "cream": {"_count": 1}, "": {"_count": 3}}, "pale": {"_count": 10, "boy": {"_count": 5}, "blue": {"_count": 1}, "dawn": {"_count": 1}, "witch": {"_count": 1}, "frozen": {"_count": 1}, "face": {"_count": 1}}, "Muggle": {"_count": 34, "world": {"_count": 8}, "street": {"_count": 1}, "eye": {"_count": 1}, "news": {"_count": 3}, "Prime": {"_count": 5}, "Underground": {"_count": 1}, "postman": {"_count": 1}, "": {"_count": 1}, "gave": {"_count": 1}, "at": {"_count": 1}, "killings": {"_count": 1}, "newspapers": {"_count": 1}, "Liaison": {"_count": 1}, "magazines": {"_count": 1}, "tricks": {"_count": 1}, "he": {"_count": 1}, "s": {"_count": 1}, "man": {"_count": 1}, "Studies": {"_count": 2}, "community": {"_count": 1}}, "rules": {"_count": 14, "": {"_count": 4}, "this": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 1}, "What": {"_count": 1}, "youre": {"_count": 1}, "carefully": {"_count": 1}, "state": {"_count": 1}, "Big": {"_count": 1}, "of": {"_count": 1}}, "shelves": {"_count": 18, "were": {"_count": 1}, "taking": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 5}, "around": {"_count": 1}, "for": {"_count": 1}, "covering": {"_count": 1}, "opposite": {"_count": 1}, "swayed": {"_count": 1}, "collapsed": {"_count": 1}, "without": {"_count": 1}, "look": {"_count": 1}, "behind": {"_count": 1}}, "Latest": {"_count": 1, "Revenges": {"_count": 1}}, "Apothecary": {"_count": 5, "which": {"_count": 1}, "Hagrid": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "seeing": {"_count": 1}}, "kids": {"_count": 9, "want": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}, "back": {"_count": 1}, "who": {"_count": 2}, "said": {"_count": 1}, "them": {"_count": 1}}, "dusty": {"_count": 17, "window": {"_count": 1}, "air": {"_count": 1}, "shop": {"_count": 1}, "floor": {"_count": 2}, "kettle": {"_count": 1}, "volumes": {"_count": 1}, "glassfronted": {"_count": 1}, "carpet": {"_count": 2}, "old": {"_count": 1}, "doors": {"_count": 1}, "glass": {"_count": 2}, "balls": {"_count": 1}, "underside": {"_count": 1}, "jinxfigure": {"_count": 1}}, "depths": {"_count": 23, "of": {"_count": 21}, "when": {"_count": 1}, "to": {"_count": 1}}, "thousands": {"_count": 3, "of": {"_count": 3}}, "spindly": {"_count": 4, "chair": {"_count": 2}, "little": {"_count": 1}, "tables": {"_count": 1}}, "gloom": {"_count": 15, "of": {"_count": 2}, "": {"_count": 3}, "on": {"_count": 1}, "the": {"_count": 1}, "toward": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "for": {"_count": 1}, "by": {"_count": 1}, "hairless": {"_count": 1}, "with": {"_count": 1}, "Lucius": {"_count": 1}}, "wand": {"_count": 141, "that": {"_count": 7}, "and": {"_count": 15}, "when": {"_count": 1}, "": {"_count": 27}, "above": {"_count": 1}, "in": {"_count": 6}, "let": {"_count": 1}, "There": {"_count": 1}, "idly": {"_count": 1}, "once": {"_count": 1}, "Then": {"_count": 1}, "backfired": {"_count": 1}, "to": {"_count": 5}, "tips": {"_count": 1}, "behind": {"_count": 1}, "tip": {"_count": 4}, "was": {"_count": 2}, "gave": {"_count": 1}, "caught": {"_count": 1}, "moments": {"_count": 1}, "weighing": {"_count": 1}, "between": {"_count": 2}, "apparently": {"_count": 1}, "away": {"_count": 2}, "just": {"_count": 1}, "Moody": {"_count": 1}, "said": {"_count": 1}, "performed": {"_count": 1}, "had": {"_count": 2}, "directly": {"_count": 1}, "he": {"_count": 2}, "at": {"_count": 5}, "out": {"_count": 1}, "movement": {"_count": 1}, "instead": {"_count": 1}, "like": {"_count": 1}, "twisted": {"_count": 1}, "a": {"_count": 1}, "lying": {"_count": 1}, "spinning": {"_count": 1}, "beneath": {"_count": 1}, "very": {"_count": 1}, "resealed": {"_count": 1}, "spin": {"_count": 1}, "higher": {"_count": 2}, "so": {"_count": 1}, "Ron": {"_count": 1}, "must": {"_count": 1}, "came": {"_count": 1}, "from": {"_count": 5}, "would": {"_count": 1}, "the": {"_count": 2}, "halves": {"_count": 1}, "of": {"_count": 1}, "itself": {"_count": 1}, "learning": {"_count": 1}, "variously": {"_count": 1}, "I": {"_count": 1}, "again": {"_count": 1}, "still": {"_count": 1}, "might": {"_count": 1}, "Head": {"_count": 1}, "held": {"_count": 1}, "Severus": {"_count": 1}, "concealed": {"_count": 1}, "before": {"_count": 1}, "isnt": {"_count": 1}, "pointed": {"_count": 1}}, "lightning": {"_count": 11, "scar": {"_count": 11}}, "wrong": {"_count": 54, "hands": {"_count": 5}, "sort": {"_count": 2}, "side": {"_count": 3}, "fireplace": {"_count": 1}, "end": {"_count": 3}, "place": {"_count": 3}, "time": {"_count": 4}, "way": {"_count": 6}, "boy": {"_count": 1}, "thing": {"_count": 4}, "doors": {"_count": 1}, "person": {"_count": 5}, "bed": {"_count": 1}, "station": {"_count": 1}, "ingredient": {"_count": 1}, "weight": {"_count": 1}, "moment": {"_count": 2}, "information": {"_count": 1}, "direction": {"_count": 4}, "men": {"_count": 1}, "bottle": {"_count": 1}, "people": {"_count": 1}, "places": {"_count": 1}, "reasons": {"_count": 1}}, "pieces": {"_count": 7, "though": {"_count": 1}, "into": {"_count": 1}, "running": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 2}}, "heartstrings": {"_count": 1, "of": {"_count": 1}}, "tape": {"_count": 3, "measure": {"_count": 3}}, "more": {"_count": 33, "wands": {"_count": 1}, "students": {"_count": 1}, "they": {"_count": 2}, "dramatic": {"_count": 1}, "it": {"_count": 1}, "life": {"_count": 1}, "difficult": {"_count": 1}, "stubborn": {"_count": 1}, "lethal": {"_count": 1}, "pressing": {"_count": 1}, "the": {"_count": 2}, "impressive": {"_count": 1}, "pronounced": {"_count": 1}, "people": {"_count": 1}, "practical": {"_count": 1}, "clearly": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 2}, "we": {"_count": 1}, "Ive": {"_count": 1}, "horrible": {"_count": 1}, "desperate": {"_count": 1}, "likely": {"_count": 1}, "outspoken": {"_count": 1}, "insane": {"_count": 1}, "Harry": {"_count": 1}, "foolish": {"_count": 1}, "there": {"_count": 1}, "terrible": {"_count": 1}}, "happier": {"_count": 4, "he": {"_count": 1}, "she": {"_count": 1}, "yehll": {"_count": 1}, "Ill": {"_count": 1}}, "phoenix": {"_count": 19, "whose": {"_count": 1}, "no": {"_count": 1}, "blood": {"_count": 1}, "had": {"_count": 4}, "which": {"_count": 1}, "feather": {"_count": 1}, "song": {"_count": 1}, "rose": {"_count": 1}, "soared": {"_count": 1}, "let": {"_count": 1}, "looked": {"_count": 1}, "wand": {"_count": 3}, "or": {"_count": 1}, "was": {"_count": 1}}, "snowy": {"_count": 9, "owl": {"_count": 1}, "white": {"_count": 1}, "yard": {"_count": 2}, "lawn": {"_count": 1}, "and": {"_count": 1}, "ground": {"_count": 2}, "pillow": {"_count": 1}}, "wild": {"_count": 11, "beard": {"_count": 1}, "": {"_count": 1}, "rumors": {"_count": 1}, "excitement": {"_count": 1}, "countryside": {"_count": 1}, "laughter": {"_count": 1}, "yelping": {"_count": 1}, "faces": {"_count": 1}, "night": {"_count": 1}, "said": {"_count": 1}, "hilltop": {"_count": 1}}, "beginning": {"_count": 8, "at": {"_count": 1}, "of": {"_count": 3}, "I": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "hospital": {"_count": 111, "growled": {"_count": 1}, "wing": {"_count": 100}, "with": {"_count": 2}, "bed": {"_count": 1}, "doors": {"_count": 2}, "than": {"_count": 1}, "even": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "door": {"_count": 1}}, "platforms": {"_count": 1, "with": {"_count": 1}}, "guard": {"_count": 5, "said": {"_count": 1}, "strode": {"_count": 1}, "all": {"_count": 1}, "will": {"_count": 1}, "raising": {"_count": 1}}, "large": {"_count": 44, "clock": {"_count": 2}, "classroom": {"_count": 1}, "OUT": {"_count": 1}, "dungeons": {"_count": 1}, "boy": {"_count": 2}, "crowd": {"_count": 3}, "hole": {"_count": 1}, "snowy": {"_count": 1}, "square": {"_count": 2}, "gold": {"_count": 1}, "mullioned": {"_count": 1}, "empty": {"_count": 1}, "pot": {"_count": 1}, "weight": {"_count": 1}, "pile": {"_count": 2}, "trunk": {"_count": 1}, "package": {"_count": 1}, "patch": {"_count": 1}, "chunk": {"_count": 1}, "parchment": {"_count": 1}, "picture": {"_count": 1}, "chattering": {"_count": 1}, "leatherbound": {"_count": 1}, "amount": {"_count": 1}, "window": {"_count": 1}, "wooden": {"_count": 3}, "hourglass": {"_count": 1}, "Slytherin": {"_count": 1}, "birdcage": {"_count": 1}, "Ministry": {"_count": 1}, "barrel": {"_count": 1}, "group": {"_count": 1}, "red": {"_count": 1}, "sacks": {"_count": 1}, "blond": {"_count": 1}, "bathtub": {"_count": 1}}, "arrivals": {"_count": 2, "board": {"_count": 1}, "": {"_count": 1}}, "third": {"_count": 84, "brick": {"_count": 2}, "brother": {"_count": 4}, "floor": {"_count": 15}, "landing": {"_count": 1}, "year": {"_count": 5}, "which": {"_count": 1}, "owl": {"_count": 2}, "day": {"_count": 1}, "time": {"_count": 13}, "spider": {"_count": 1}, "piece": {"_count": 1}, "and": {"_count": 4}, "task": {"_count": 15}, "fourth": {"_count": 1}, "to": {"_count": 1}, "Weasley": {"_count": 1}, "attempt": {"_count": 2}, "line": {"_count": 2}, "chapter": {"_count": 1}, "night": {"_count": 2}, "Ive": {"_count": 1}, "door": {"_count": 1}, "eldest": {"_count": 1}, "or": {"_count": 1}, "evening": {"_count": 1}, "KEEP": {"_count": 1}, "Hallow": {"_count": 2}, "but": {"_count": 1}}, "left": {"_count": 44, "to": {"_count": 3}, "clapped": {"_count": 1}, "": {"_count": 5}, "something": {"_count": 1}, "path": {"_count": 1}, "above": {"_count": 1}, "side": {"_count": 3}, "hand": {"_count": 2}, "of": {"_count": 9}, "one": {"_count": 2}, "fork": {"_count": 1}, "sleeve": {"_count": 1}, "and": {"_count": 4}, "over": {"_count": 1}, "stood": {"_count": 1}, "where": {"_count": 1}, "down": {"_count": 2}, "Crabbe": {"_count": 1}, "seam": {"_count": 1}, "another": {"_count": 1}, "that": {"_count": 1}, "by": {"_count": 1}}, "platform": {"_count": 32, "number": {"_count": 1}, "": {"_count": 9}, "in": {"_count": 1}, "and": {"_count": 4}, "beckoning": {"_count": 1}, "appeared": {"_count": 1}, "to": {"_count": 1}, "through": {"_count": 1}, "with": {"_count": 2}, "started": {"_count": 1}, "were": {"_count": 1}, "Sirius": {"_count": 1}, "looking": {"_count": 1}, "for": {"_count": 1}, "which": {"_count": 1}, "a": {"_count": 1}, "behind": {"_count": 1}, "jostling": {"_count": 1}, "over": {"_count": 1}, "they": {"_count": 1}}, "oldest": {"_count": 8, "boy": {"_count": 1}, "Weasley": {"_count": 1}, "most": {"_count": 1}, "brother": {"_count": 4}, "brothers": {"_count": 1}}, "dividing": {"_count": 1, "barrier": {"_count": 1}}, "plump": {"_count": 4, "woman": {"_count": 2}, "witch": {"_count": 1}, "happy": {"_count": 1}}, "barrier": {"_count": 31, "he": {"_count": 1}, "between": {"_count": 5}, "": {"_count": 8}, "was": {"_count": 1}, "had": {"_count": 1}, "gathering": {"_count": 1}, "and": {"_count": 2}, "again": {"_count": 1}, "at": {"_count": 3}, "from": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 2}, "chatting": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "Albus": {"_count": 1}}, "heads": {"_count": 25, "of": {"_count": 19}, "in": {"_count": 3}, "to": {"_count": 1}, "belonged": {"_count": 1}, "with": {"_count": 1}}, "chattering": {"_count": 7, "crowd": {"_count": 6}, "crowds": {"_count": 1}}, "scraping": {"_count": 3, "of": {"_count": 3}}, "lid": {"_count": 13, "of": {"_count": 5}, "off": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 3}, "shut": {"_count": 2}}, "steps": {"_count": 58, "but": {"_count": 1}, "out": {"_count": 2}, "into": {"_count": 10}, "to": {"_count": 5}, "of": {"_count": 2}, "": {"_count": 7}, "and": {"_count": 5}, "through": {"_count": 1}, "now": {"_count": 2}, "too": {"_count": 1}, "behind": {"_count": 1}, "from": {"_count": 1}, "up": {"_count": 1}, "I": {"_count": 2}, "melted": {"_count": 1}, "past": {"_count": 2}, "together": {"_count": 1}, "when": {"_count": 1}, "again": {"_count": 2}, "in": {"_count": 1}, "looking": {"_count": 1}, "by": {"_count": 2}, "that": {"_count": 1}, "stuffing": {"_count": 1}, "listening": {"_count": 1}, "outside": {"_count": 1}, "nodding": {"_count": 1}, "after": {"_count": 1}}, "redhaired": {"_count": 2, "twins": {"_count": 1}, "family": {"_count": 1}}, "twins": {"_count": 43, "help": {"_count": 1}, "suddenly": {"_count": 1}, "": {"_count": 8}, "hopped": {"_count": 1}, "with": {"_count": 1}, "already": {"_count": 1}, "forced": {"_count": 1}, "disappeared": {"_count": 1}, "retreating": {"_count": 2}, "Fred": {"_count": 1}, "shorter": {"_count": 1}, "had": {"_count": 4}, "who": {"_count": 2}, "names": {"_count": 1}, "and": {"_count": 2}, "fastening": {"_count": 1}, "best": {"_count": 1}, "rolled": {"_count": 1}, "slamming": {"_count": 1}, "Disapparated": {"_count": 1}, "behind": {"_count": 1}, "outstretched": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 1}, "divebomb": {"_count": 1}, "new": {"_count": 1}, "entered": {"_count": 1}, "many": {"_count": 1}}, "compartment": {"_count": 42, "": {"_count": 9}, "slid": {"_count": 2}, "door": {"_count": 16}, "and": {"_count": 3}, "on": {"_count": 1}, "next": {"_count": 1}, "before": {"_count": 1}, "behind": {"_count": 1}, "instead": {"_count": 1}, "feeling": {"_count": 1}, "at": {"_count": 1}, "when": {"_count": 1}, "leapt": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}, "who": {"_count": 1}}, "prefects": {"_count": 12, "have": {"_count": 1}, "today": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 1}, "bathroom": {"_count": 4}, "take": {"_count": 1}, "carriage": {"_count": 2}}, "Prefect": {"_count": 2, "": {"_count": 1}, "got": {"_count": 1}}, "poor": {"_count": 8, "boy": {"_count": 1}, "thing": {"_count": 1}, "creature": {"_count": 2}, "fellow": {"_count": 1}, "girl": {"_count": 1}, "beasts": {"_count": 1}, "Malfoy": {"_count": 1}}, "girl": {"_count": 38, "and": {"_count": 2}, "wasnt": {"_count": 1}, "": {"_count": 7}, "stiffly": {"_count": 1}, "had": {"_count": 2}, "who": {"_count": 3}, "All": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 1}, "crossed": {"_count": 1}, "with": {"_count": 2}, "next": {"_count": 2}, "looked": {"_count": 1}, "became": {"_count": 1}, "said": {"_count": 1}, "looking": {"_count": 1}, "stumbled": {"_count": 1}, "in": {"_count": 2}, "was": {"_count": 1}, "into": {"_count": 1}, "he": {"_count": 1}, "thrown": {"_count": 1}, "when": {"_count": 1}, "Greyback": {"_count": 1}, "over": {"_count": 1}}, "youngest": {"_count": 9, "redheaded": {"_count": 1}, "House": {"_count": 2}, "Seeker": {"_count": 1}, "person": {"_count": 1}, "ever": {"_count": 1}, "there": {"_count": 1}, "of": {"_count": 1}, "brother": {"_count": 1}}, "seat": {"_count": 25, "opposite": {"_count": 2}, "vibrating": {"_count": 1}, "of": {"_count": 3}, "beside": {"_count": 3}, "next": {"_count": 2}, "that": {"_count": 1}, "facing": {"_count": 1}, "with": {"_count": 3}, "to": {"_count": 3}, "as": {"_count": 1}, "again": {"_count": 1}, "behind": {"_count": 1}, "between": {"_count": 1}, "on": {"_count": 1}, "he": {"_count": 1}}, "sixth": {"_count": 17, "in": {"_count": 1}, "year": {"_count": 2}, "years": {"_count": 5}, "": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "stair": {"_count": 1}, "one": {"_count": 1}, "time": {"_count": 1}, "Horcrux": {"_count": 1}, "gobletful": {"_count": 1}, "said": {"_count": 1}}, "worst": {"_count": 55, "in": {"_count": 3}, "thing": {"_count": 5}, "memory": {"_count": 1}, "headmaster": {"_count": 1}, "Im": {"_count": 1}, "scene": {"_count": 1}, "day": {"_count": 1}, "he": {"_count": 2}, "ever": {"_count": 1}, "birthday": {"_count": 1}, "of": {"_count": 9}, "when": {"_count": 1}, "is": {"_count": 3}, "place": {"_count": 1}, "omen": {"_count": 1}, "luck": {"_count": 1}, "experiences": {"_count": 1}, "that": {"_count": 1}, "memories": {"_count": 1}, "came": {"_count": 1}, "they": {"_count": 1}, "mass": {"_count": 1}, "kinds": {"_count": 1}, "moments": {"_count": 1}, "over": {"_count": 1}, "out": {"_count": 1}, "Monday": {"_count": 1}, "Ive": {"_count": 1}, "team": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}, "conclusion": {"_count": 1}, "practices": {"_count": 1}, "from": {"_count": 1}, "punishment": {"_count": 1}, "but": {"_count": 1}, "bit": {"_count": 1}, "scream": {"_count": 1}}, "class": {"_count": 139, "": {"_count": 26}, "how": {"_count": 1}, "by": {"_count": 2}, "into": {"_count": 1}, "standing": {"_count": 1}, "Harry": {"_count": 2}, "where": {"_count": 1}, "came": {"_count": 1}, "and": {"_count": 10}, "with": {"_count": 2}, "was": {"_count": 9}, "had": {"_count": 7}, "during": {"_count": 1}, "lumbered": {"_count": 1}, "to": {"_count": 4}, "stared": {"_count": 1}, "Professor": {"_count": 1}, "assembled": {"_count": 1}, "took": {"_count": 1}, "kept": {"_count": 1}, "approached": {"_count": 1}, "stood": {"_count": 2}, "backed": {"_count": 1}, "climbed": {"_count": 1}, "panicked": {"_count": 1}, "pass": {"_count": 1}, "put": {"_count": 1}, "got": {"_count": 1}, "over": {"_count": 1}, "looking": {"_count": 2}, "filed": {"_count": 1}, "his": {"_count": 1}, "toward": {"_count": 1}, "together": {"_count": 1}, "broke": {"_count": 1}, "left": {"_count": 2}, "trying": {"_count": 1}, "made": {"_count": 1}, "talking": {"_count": 1}, "opened": {"_count": 1}, "loathed": {"_count": 1}, "who": {"_count": 1}, "as": {"_count": 2}, "hissed": {"_count": 1}, "the": {"_count": 1}, "separated": {"_count": 1}, "at": {"_count": 1}, "gave": {"_count": 1}, "Malfoy": {"_count": 1}, "looked": {"_count": 1}, "moved": {"_count": 1}, "set": {"_count": 1}, "claiming": {"_count": 1}, "all": {"_count": 1}, "arrived": {"_count": 1}, "exchanged": {"_count": 1}, "were": {"_count": 3}, "turned": {"_count": 2}, "for": {"_count": 2}, "holding": {"_count": 1}, "on": {"_count": 1}, "some": {"_count": 1}, "a": {"_count": 1}, "so": {"_count": 1}, "through": {"_count": 1}, "could": {"_count": 2}, "once": {"_count": 1}, "seems": {"_count": 1}, "particularly": {"_count": 1}, "continued": {"_count": 1}, "answering": {"_count": 1}, "upon": {"_count": 1}, "while": {"_count": 1}, "from": {"_count": 1}, "craned": {"_count": 1}, "everyone": {"_count": 1}}, "fields": {"_count": 1, "and": {"_count": 1}}, "corridor": {"_count": 186, "and": {"_count": 21}, "": {"_count": 38}, "hung": {"_count": 1}, "Wood": {"_count": 1}, "when": {"_count": 2}, "where": {"_count": 6}, "ahead": {"_count": 2}, "to": {"_count": 10}, "outside": {"_count": 7}, "the": {"_count": 4}, "put": {"_count": 1}, "beneath": {"_count": 1}, "Filchs": {"_count": 1}, "together": {"_count": 2}, "as": {"_count": 2}, "barely": {"_count": 1}, "in": {"_count": 4}, "with": {"_count": 7}, "looking": {"_count": 1}, "again": {"_count": 3}, "following": {"_count": 1}, "that": {"_count": 1}, "Diggory": {"_count": 1}, "then": {"_count": 3}, "heading": {"_count": 1}, "at": {"_count": 1}, "Frank": {"_count": 1}, "having": {"_count": 1}, "which": {"_count": 2}, "below": {"_count": 4}, "Filch": {"_count": 1}, "behind": {"_count": 2}, "from": {"_count": 2}, "peering": {"_count": 1}, "leering": {"_count": 1}, "pausing": {"_count": 1}, "there": {"_count": 1}, "was": {"_count": 4}, "wall": {"_count": 1}, "through": {"_count": 1}, "smiling": {"_count": 1}, "down": {"_count": 1}, "leading": {"_count": 3}, "toward": {"_count": 5}, "before": {"_count": 1}, "beyond": {"_count": 4}, "stopping": {"_count": 1}, "until": {"_count": 2}, "on": {"_count": 2}, "said": {"_count": 1}, "Luna": {"_count": 1}, "ignoring": {"_count": 2}, "chatting": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 1}, "past": {"_count": 1}, "windows": {"_count": 1}, "leaving": {"_count": 1}, "wont": {"_count": 1}, "he": {"_count": 2}, "trailing": {"_count": 1}, "into": {"_count": 1}, "but": {"_count": 1}, "Fang": {"_count": 1}, "upstairs": {"_count": 1}, "floor": {"_count": 1}, "of": {"_count": 1}}, "woman": {"_count": 22, "didnt": {"_count": 1}, "eleven": {"_count": 1}, "was": {"_count": 2}, "at": {"_count": 1}, "with": {"_count": 1}, "swept": {"_count": 1}, "rolled": {"_count": 1}, "sitting": {"_count": 1}, "screamed": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "in": {"_count": 1}, "still": {"_count": 1}, "whom": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "who": {"_count": 1}, "chained": {"_count": 1}, "and": {"_count": 1}}, "sandwiches": {"_count": 1, "lay": {"_count": 1}}, "card": {"_count": 7, "is": {"_count": 1}, "": {"_count": 2}, "back": {"_count": 1}, "hed": {"_count": 1}, "you": {"_count": 1}, "propped": {"_count": 1}}, "picture": {"_count": 38, "was": {"_count": 4}, "on": {"_count": 3}, "as": {"_count": 1}, "": {"_count": 8}, "of": {"_count": 7}, "after": {"_count": 1}, "from": {"_count": 1}, "in": {"_count": 2}, "swung": {"_count": 1}, "over": {"_count": 1}, "faded": {"_count": 1}, "and": {"_count": 2}, "though": {"_count": 1}, "very": {"_count": 1}, "belonged": {"_count": 1}, "accompanying": {"_count": 1}, "more": {"_count": 1}, "forward": {"_count": 1}}, "discovery": {"_count": 4, "of": {"_count": 4}}, "twelve": {"_count": 5, "uses": {"_count": 4}, "secure": {"_count": 1}}, "pile": {"_count": 13, "of": {"_count": 9}, "before": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "beside": {"_count": 1}}, "frogs": {"_count": 1, "than": {"_count": 1}}, "Famous": {"_count": 2, "Witches": {"_count": 1}, "Wizard": {"_count": 1}}, "druidess": {"_count": 1, "Cliodna": {"_count": 1}}, "ordinary": {"_count": 8, "ones": {"_count": 1}, "people": {"_count": 1}, "": {"_count": 2}, "course": {"_count": 1}, "had": {"_count": 1}, "Magical": {"_count": 1}, "Zabini": {"_count": 1}}, "Every": {"_count": 1, "Flavor": {"_count": 1}}, "roundfaced": {"_count": 1, "boy": {"_count": 1}}, "spell": {"_count": 27, "didnt": {"_count": 1}, "on": {"_count": 2}, "hit": {"_count": 2}, "automatically": {"_count": 1}, "hadnt": {"_count": 1}, "There": {"_count": 1}, "overnight": {"_count": 1}, "": {"_count": 2}, "wrong": {"_count": 1}, "did": {"_count": 1}, "before": {"_count": 1}, "the": {"_count": 1}, "zoomed": {"_count": 1}, "that": {"_count": 1}, "Praying": {"_count": 1}, "she": {"_count": 1}, "had": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "fired": {"_count": 1}, "missed": {"_count": 1}, "and": {"_count": 1}, "intended": {"_count": 1}}, "course": {"_count": 7, "books": {"_count": 1}, "of": {"_count": 5}, "aims": {"_count": 1}}, "Twentieth": {"_count": 2, "Century": {"_count": 2}}, "toadless": {"_count": 2, "boy": {"_count": 2}}, "House": {"_count": 35, "Vol": {"_count": 1}, "with": {"_count": 1}, "cup": {"_count": 1}, "at": {"_count": 1}, "Championship": {"_count": 6}, "Quidditch": {"_count": 3}, "Cup": {"_count": 11}, "points": {"_count": 2}, "team": {"_count": 1}, "that": {"_count": 1}, "common": {"_count": 1}, "they": {"_count": 1}, "tables": {"_count": 3}, "championship": {"_count": 1}, "could": {"_count": 1}}, "ends": {"_count": 13, "of": {"_count": 12}, "in": {"_count": 1}}, "magical": {"_count": 37, "world": {"_count": 11}, "plants": {"_count": 1}, "community": {"_count": 4}, "entrance": {"_count": 1}, "concealment": {"_count": 1}, "megaphone": {"_count": 2}, "step": {"_count": 1}, "eye": {"_count": 5}, "eyeball": {"_count": 3}, "knife": {"_count": 1}, "population": {"_count": 1}, "barrier": {"_count": 1}, "pathway": {"_count": 1}, "theoretician": {"_count": 1}, "container": {"_count": 1}, "bag": {"_count": 1}, "arts": {"_count": 1}}, "four": {"_count": 37, "balls": {"_count": 1}, "tables": {"_count": 2}, "of": {"_count": 6}, "Hogwarts": {"_count": 2}, "greatest": {"_count": 1}, "ill": {"_count": 1}, "poster": {"_count": 1}, "men": {"_count": 1}, "beds": {"_count": 1}, "bunk": {"_count": 1}, "hundred": {"_count": 2}, "long": {"_count": 2}, "House": {"_count": 4}, "people": {"_count": 1}, "chairs": {"_count": 1}, "in": {"_count": 1}, "patrollers": {"_count": 1}, "founders": {"_count": 2}, "Ravenclaws": {"_count": 1}, "Heads": {"_count": 1}, "Death": {"_count": 1}, "pursuing": {"_count": 1}, "creators": {"_count": 1}, "other": {"_count": 1}}, "positions": {"_count": 1, "of": {"_count": 1}}, "seven": {"_count": 5, "players": {"_count": 1}, "superb": {"_count": 1}, "Weasleys": {"_count": 1}, "defeated": {"_count": 1}, "oclock": {"_count": 1}}, "broomstick": {"_count": 8, "hed": {"_count": 1}, "in": {"_count": 2}, "rolled": {"_count": 1}, "he": {"_count": 1}, "servicing": {"_count": 1}, "laughing": {"_count": 1}, "Barely": {"_count": 1}}, "finer": {"_count": 3, "points": {"_count": 2}, "details": {"_count": 1}}, "game": {"_count": 25, "when": {"_count": 1}, "squinting": {"_count": 1}, "": {"_count": 6}, "jerking": {"_count": 1}, "ended": {"_count": 1}, "before": {"_count": 1}, "like": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 3}, "until": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "quickly": {"_count": 1}, "the": {"_count": 1}, "is": {"_count": 1}, "gone": {"_count": 1}, "had": {"_count": 1}, "away": {"_count": 1}}, "Weasleys": {"_count": 76, "have": {"_count": 1}, "and": {"_count": 7}, "are": {"_count": 1}, "wristwatches": {"_count": 1}, "flew": {"_count": 1}, "spent": {"_count": 1}, "youll": {"_count": 1}, "who": {"_count": 3}, "whove": {"_count": 1}, "gave": {"_count": 1}, "slouched": {"_count": 1}, "hedge": {"_count": 1}, "house": {"_count": 1}, "owned": {"_count": 1}, "fire": {"_count": 1}, "but": {"_count": 3}, "said": {"_count": 1}, "vault": {"_count": 1}, "were": {"_count": 2}, "": {"_count": 5}, "had": {"_count": 1}, "that": {"_count": 1}, "waving": {"_count": 1}, "youngest": {"_count": 1}, "could": {"_count": 2}, "for": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}, "going": {"_count": 1}, "all": {"_count": 4}, "kitchen": {"_count": 3}, "roared": {"_count": 1}, "tents": {"_count": 1}, "looked": {"_count": 1}, "changed": {"_count": 1}, "always": {"_count": 1}, "snowball": {"_count": 1}, "Lupin": {"_count": 1}, "new": {"_count": 1}, "dispersed": {"_count": 1}, "dont": {"_count": 2}, "hovel": {"_count": 1}, "looks": {"_count": 1}, "happiness": {"_count": 1}, "old": {"_count": 1}, "without": {"_count": 1}, "kept": {"_count": 1}, "sitting": {"_count": 1}, "orchard": {"_count": 1}, "walked": {"_count": 1}, "joined": {"_count": 1}, "overgrown": {"_count": 1}, "when": {"_count": 1}, "seemed": {"_count": 1}}, "Chocolate": {"_count": 5, "Frogs": {"_count": 1}, "Frog": {"_count": 3}, "Cauldrons": {"_count": 1}}, "rat": {"_count": 14, "was": {"_count": 3}, "so": {"_count": 1}, "tonic": {"_count": 1}, "came": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 2}, "back": {"_count": 1}, "But": {"_count": 1}, "fell": {"_count": 1}, "lingered": {"_count": 1}, "he": {"_count": 1}}, "sweets": {"_count": 4, "or": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 1}, "were": {"_count": 1}}, "conductor": {"_count": 4, "and": {"_count": 1}, "who": {"_count": 1}, "followed": {"_count": 1}, "on": {"_count": 1}}, "corridors": {"_count": 74, "said": {"_count": 1}, "": {"_count": 9}, "whispered": {"_count": 1}, "again": {"_count": 1}, "alone": {"_count": 1}, "lunging": {"_count": 1}, "as": {"_count": 2}, "shouting": {"_count": 1}, "these": {"_count": 2}, "in": {"_count": 3}, "sounded": {"_count": 1}, "came": {"_count": 1}, "and": {"_count": 5}, "mysterious": {"_count": 1}, "boarding": {"_count": 1}, "culminating": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}, "girls": {"_count": 1}, "anymore": {"_count": 1}, "so": {"_count": 2}, "toward": {"_count": 1}, "thinking": {"_count": 1}, "avoiding": {"_count": 1}, "from": {"_count": 1}, "every": {"_count": 1}, "until": {"_count": 1}, "Got": {"_count": 1}, "between": {"_count": 2}, "now": {"_count": 1}, "Susan": {"_count": 1}, "breaking": {"_count": 1}, "today": {"_count": 1}, "out": {"_count": 1}, "if": {"_count": 1}, "emitting": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "with": {"_count": 2}, "above": {"_count": 1}, "for": {"_count": 1}, "filling": {"_count": 1}, "or": {"_count": 1}, "fortunately": {"_count": 1}, "without": {"_count": 1}, "unpleasant": {"_count": 1}, "just": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}, "at": {"_count": 1}, "they": {"_count": 1}, "Minerva": {"_count": 1}, "all": {"_count": 1}, "singing": {"_count": 1}}, "starry": {"_count": 12, "sky": {"_count": 6}, "ceiling": {"_count": 2}, "black": {"_count": 2}, "room": {"_count": 1}, "cage": {"_count": 1}}, "water": {"_count": 88, "by": {"_count": 1}, "a": {"_count": 3}, "jug": {"_count": 3}, "barrel": {"_count": 2}, "out": {"_count": 1}, "": {"_count": 27}, "Harry": {"_count": 2}, "they": {"_count": 1}, "down": {"_count": 1}, "grabbed": {"_count": 1}, "except": {"_count": 1}, "gleaming": {"_count": 1}, "and": {"_count": 6}, "in": {"_count": 3}, "though": {"_count": 1}, "if": {"_count": 1}, "Myrtle": {"_count": 1}, "as": {"_count": 1}, "was": {"_count": 3}, "new": {"_count": 1}, "became": {"_count": 1}, "the": {"_count": 1}, "spears": {"_count": 1}, "toward": {"_count": 1}, "above": {"_count": 1}, "with": {"_count": 2}, "back": {"_count": 1}, "it": {"_count": 2}, "broke": {"_count": 1}, "fell": {"_count": 1}, "trying": {"_count": 1}, "ahead": {"_count": 1}, "into": {"_count": 1}, "wont": {"_count": 1}, "looking": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "vanished": {"_count": 1}, "clumsily": {"_count": 1}, "once": {"_count": 1}, "on": {"_count": 1}, "warmer": {"_count": 1}, "lapped": {"_count": 1}, "before": {"_count": 1}, "hard": {"_count": 1}}, "shore": {"_count": 1, "": {"_count": 1}}, "fleet": {"_count": 2, "of": {"_count": 2}}, "lake": {"_count": 128, "which": {"_count": 3}, "like": {"_count": 1}, "and": {"_count": 10}, "they": {"_count": 2}, "stood": {"_count": 1}, "": {"_count": 40}, "the": {"_count": 4}, "rose": {"_count": 1}, "probably": {"_count": 1}, "out": {"_count": 1}, "toward": {"_count": 3}, "his": {"_count": 2}, "while": {"_count": 1}, "watching": {"_count": 1}, "with": {"_count": 6}, "in": {"_count": 5}, "rather": {"_count": 1}, "He": {"_count": 1}, "a": {"_count": 1}, "where": {"_count": 3}, "were": {"_count": 1}, "trying": {"_count": 1}, "apart": {"_count": 1}, "for": {"_count": 1}, "sometimes": {"_count": 1}, "tomorrow": {"_count": 1}, "sir": {"_count": 1}, "below": {"_count": 1}, "without": {"_count": 2}, "that": {"_count": 1}, "now": {"_count": 1}, "bottom": {"_count": 2}, "wonderful": {"_count": 1}, "surrounded": {"_count": 1}, "but": {"_count": 1}, "Hermione": {"_count": 1}, "roarin": {"_count": 1}, "Snape": {"_count": 1}, "on": {"_count": 1}, "edge": {"_count": 1}, "hoping": {"_count": 1}, "accompanied": {"_count": 1}, "sat": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 2}, "to": {"_count": 3}, "bringing": {"_count": 1}, "too": {"_count": 1}, "bearing": {"_count": 1}, "so": {"_count": 1}, "taking": {"_count": 1}, "reflected": {"_count": 1}, "deep": {"_count": 1}, "The": {"_count": 1}, "crashing": {"_count": 1}}, "great": {"_count": 49, "castle": {"_count": 1}, "lump": {"_count": 1}, "marble": {"_count": 1}, "oak": {"_count": 2}, "wash": {"_count": 1}, "rush": {"_count": 1}, "Slytherin": {"_count": 1}, "wings": {"_count": 1}, "mustached": {"_count": 1}, "glittering": {"_count": 1}, "black": {"_count": 6}, "snake": {"_count": 7}, "invisible": {"_count": 1}, "tides": {"_count": 1}, "earthen": {"_count": 1}, "trunk": {"_count": 1}, "halfbreed": {"_count": 1}, "flapping": {"_count": 1}, "oaken": {"_count": 1}, "and": {"_count": 1}, "stone": {"_count": 1}, "dark": {"_count": 1}, "skeletal": {"_count": 1}, "white": {"_count": 1}, "number": {"_count": 1}, "blond": {"_count": 2}, "wizard": {"_count": 1}, "slanting": {"_count": 1}, "bronze": {"_count": 1}, "crawling": {"_count": 1}, "boarhound": {"_count": 1}, "thick": {"_count": 1}, "tree": {"_count": 1}, "serpent": {"_count": 1}, "snakes": {"_count": 1}, "sooty": {"_count": 1}}, "cliff": {"_count": 16, "on": {"_count": 1}, "they": {"_count": 1}, "face": {"_count": 3}, "over": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 4}, "into": {"_count": 1}, "top": {"_count": 1}, "beneath": {"_count": 1}, "when": {"_count": 1}, "He": {"_count": 1}}, "castle": {"_count": 355, "until": {"_count": 2}, "": {"_count": 97}, "door": {"_count": 1}, "to": {"_count": 11}, "and": {"_count": 31}, "for": {"_count": 11}, "he": {"_count": 7}, "at": {"_count": 8}, "feeling": {"_count": 1}, "they": {"_count": 3}, "his": {"_count": 2}, "an": {"_count": 4}, "with": {"_count": 8}, "was": {"_count": 5}, "without": {"_count": 1}, "together": {"_count": 2}, "Ron": {"_count": 4}, "windows": {"_count": 6}, "of": {"_count": 1}, "in": {"_count": 4}, "the": {"_count": 4}, "when": {"_count": 2}, "Harry": {"_count": 3}, "lately": {"_count": 1}, "along": {"_count": 1}, "sky": {"_count": 1}, "where": {"_count": 2}, "walls": {"_count": 2}, "dodging": {"_count": 1}, "feeding": {"_count": 1}, "but": {"_count": 7}, "said": {"_count": 3}, "loomed": {"_count": 1}, "once": {"_count": 6}, "Hermione": {"_count": 1}, "after": {"_count": 1}, "Professor": {"_count": 2}, "became": {"_count": 1}, "there": {"_count": 1}, "grounds": {"_count": 3}, "ever": {"_count": 1}, "quick": {"_count": 1}, "lying": {"_count": 1}, "steps": {"_count": 3}, "doors": {"_count": 5}, "open": {"_count": 1}, "trying": {"_count": 1}, "walking": {"_count": 1}, "into": {"_count": 1}, "every": {"_count": 1}, "Lupin": {"_count": 1}, "lights": {"_count": 1}, "behind": {"_count": 2}, "singing": {"_count": 1}, "will": {"_count": 1}, "again": {"_count": 1}, "has": {"_count": 1}, "across": {"_count": 1}, "seemed": {"_count": 3}, "growing": {"_count": 1}, "from": {"_count": 1}, "if": {"_count": 2}, "by": {"_count": 2}, "slipped": {"_count": 1}, "would": {"_count": 2}, "always": {"_count": 1}, "signaling": {"_count": 1}, "had": {"_count": 4}, "later": {"_count": 1}, "as": {"_count": 3}, "got": {"_count": 1}, "a": {"_count": 1}, "around": {"_count": 1}, "shall": {"_count": 1}, "on": {"_count": 3}, "Hagrid": {"_count": 1}, "were": {"_count": 2}, "Cho": {"_count": 1}, "supporting": {"_count": 1}, "dropped": {"_count": 1}, "toward": {"_count": 1}, "both": {"_count": 1}, "through": {"_count": 4}, "You": {"_count": 1}, "dragging": {"_count": 1}, "forever": {"_count": 1}, "quite": {"_count": 1}, "next": {"_count": 1}, "which": {"_count": 2}, "opened": {"_count": 1}, "we": {"_count": 1}, "its": {"_count": 2}, "she": {"_count": 1}, "wiping": {"_count": 1}, "that": {"_count": 2}, "seize": {"_count": 1}, "is": {"_count": 1}, "turrets": {"_count": 1}, "so": {"_count": 3}, "below": {"_count": 1}, "front": {"_count": 1}, "I": {"_count": 1}, "except": {"_count": 1}, "shortly": {"_count": 1}, "quaked": {"_count": 1}, "fallen": {"_count": 1}, "stood": {"_count": 1}, "HAGGER": {"_count": 1}, "only": {"_count": 1}, "their": {"_count": 1}, "must": {"_count": 1}, "courtyard": {"_count": 1}, "now": {"_count": 1}, "uttering": {"_count": 1}}, "boats": {"_count": 3, "as": {"_count": 1}, "prow": {"_count": 1}, "": {"_count": 1}}, "shadow": {"_count": 17, "of": {"_count": 15}, "that": {"_count": 1}, "beneath": {"_count": 1}}, "huge": {"_count": 14, "oak": {"_count": 1}, "Slytherin": {"_count": 1}, "hall": {"_count": 1}, "boy": {"_count": 1}, "form": {"_count": 1}, "silver": {"_count": 1}, "green": {"_count": 1}, "Beauxbatons": {"_count": 1}, "heavy": {"_count": 1}, "pile": {"_count": 1}, "blond": {"_count": 1}, "Death": {"_count": 2}, "hole": {"_count": 1}}, "ones": {"_count": 21, "at": {"_count": 1}, "who": {"_count": 11}, "they": {"_count": 1}, "that": {"_count": 2}, "pulling": {"_count": 1}, "bein": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 1}, "trying": {"_count": 1}, "whose": {"_count": 1}}, "upper": {"_count": 18, "floors": {"_count": 5}, "windows": {"_count": 2}, "stories": {"_count": 1}, "story": {"_count": 1}, "branches": {"_count": 1}, "bulb": {"_count": 1}, "arm": {"_count": 1}, "arms": {"_count": 1}, "bunk": {"_count": 1}, "landing": {"_count": 2}, "floor": {"_count": 1}, "levels": {"_count": 1}}, "flagged": {"_count": 4, "stone": {"_count": 4}}, "drone": {"_count": 1, "of": {"_count": 1}}, "Great": {"_count": 191, "Hall": {"_count": 190}, "Halls": {"_count": 1}}, "year": {"_count": 23, "the": {"_count": 1}, "a": {"_count": 1}, "They": {"_count": 1}, "on": {"_count": 1}, "before": {"_count": 3}, "I": {"_count": 2}, "muttered": {"_count": 1}, "": {"_count": 5}, "at": {"_count": 1}, "and": {"_count": 1}, "after": {"_count": 2}, "said": {"_count": 2}, "Idve": {"_count": 1}, "Ginnys": {"_count": 1}}, "chamber": {"_count": 17, "": {"_count": 3}, "back": {"_count": 2}, "theyd": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "while": {"_count": 1}, "were": {"_count": 1}, "behind": {"_count": 1}, "off": {"_count": 2}, "Violet": {"_count": 1}, "with": {"_count": 1}, "if": {"_count": 1}}, "spells": {"_count": 17, "shed": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 1}, "hit": {"_count": 2}, "came": {"_count": 1}, "that": {"_count": 2}, "under": {"_count": 1}, "will": {"_count": 1}, "and": {"_count": 1}, "bounced": {"_count": 1}, "upon": {"_count": 1}, "she": {"_count": 1}, "theyve": {"_count": 1}, "you": {"_count": 1}, "collided": {"_count": 1}}, "": {"_count": 16, "?": {"_count": 13}, ".": {"_count": 3}}, "chances": {"_count": 1, "he": {"_count": 1}}, "Fat": {"_count": 68, "Friar": {"_count": 4}, "Lady": {"_count": 56}, "Ladys": {"_count": 8}}, "Friar": {"_count": 1, "": {"_count": 1}}, "ghosts": {"_count": 9, "floated": {"_count": 1}, "shone": {"_count": 1}, "": {"_count": 3}, "around": {"_count": 1}, "swept": {"_count": 1}, "interrupted": {"_count": 1}, "seemed": {"_count": 1}}, "flickering": {"_count": 2, "candlelight": {"_count": 1}, "quality": {"_count": 1}}, "staring": {"_count": 3, "eyes": {"_count": 1}, "which": {"_count": 1}, "and": {"_count": 1}}, "heavens": {"_count": 8, "": {"_count": 6}, "at": {"_count": 1}, "pointing": {"_count": 1}}, "stool": {"_count": 13, "she": {"_count": 2}, "to": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 2}, "that": {"_count": 1}, "carefully": {"_count": 1}, "watched": {"_count": 1}}, "sort": {"_count": 32, "of": {"_count": 24}, "": {"_count": 6}, "had": {"_count": 1}, "that": {"_count": 1}}, "hat": {"_count": 59, "he": {"_count": 1}, "twitched": {"_count": 1}, "began": {"_count": 1}, "finished": {"_count": 1}, "": {"_count": 7}, "was": {"_count": 2}, "had": {"_count": 4}, "and": {"_count": 7}, "which": {"_count": 1}, "again": {"_count": 1}, "shouted": {"_count": 2}, "declared": {"_count": 1}, "eagerly": {"_count": 1}, "over": {"_count": 1}, "dropped": {"_count": 1}, "shout": {"_count": 1}, "on": {"_count": 3}, "down": {"_count": 1}, "from": {"_count": 1}, "waiting": {"_count": 1}, "smartly": {"_count": 1}, "lay": {"_count": 1}, "contracted": {"_count": 1}, "to": {"_count": 1}, "its": {"_count": 1}, "Harry": {"_count": 1}, "toward": {"_count": 1}, "out": {"_count": 1}, "broke": {"_count": 1}, "announces": {"_count": 1}, "placed": {"_count": 1}, "giving": {"_count": 1}, "give": {"_count": 1}, "with": {"_count": 1}, "onto": {"_count": 2}, "Hermione": {"_count": 1}, "cried": {"_count": 1}, "handed": {"_count": 1}, "upon": {"_count": 1}}, "brim": {"_count": 9, "opened": {"_count": 4}, "with": {"_count": 1}, "of": {"_count": 2}, "Dumbledore": {"_count": 1}, "and": {"_count": 1}}, "Hogwarts": {"_count": 72, "Sorting": {"_count": 1}, "Express": {"_count": 31}, "gamekeeper": {"_count": 6}, "Four": {"_count": 1}, "crest": {"_count": 2}, "House": {"_count": 1}, "caretaker": {"_count": 1}, "ghosts": {"_count": 2}, "castle": {"_count": 1}, "grounds": {"_count": 7}, "nurse": {"_count": 1}, "champion": {"_count": 2}, "coat": {"_count": 1}, "crowd": {"_count": 1}, "students": {"_count": 4}, "robes": {"_count": 1}, "decorations": {"_count": 1}, "carriages": {"_count": 1}, "thestrals": {"_count": 1}, "fires": {"_count": 1}, "library": {"_count": 1}, "one": {"_count": 2}, "houseelves": {"_count": 1}, "Horcrux": {"_count": 1}}, "brave": {"_count": 2, "at": {"_count": 2}}, "Hufflepuff": {"_count": 16, "table": {"_count": 9}, "boy": {"_count": 1}, "arrived": {"_count": 1}, "House": {"_count": 1}, "common": {"_count": 1}, "Quidditch": {"_count": 1}, "team": {"_count": 1}, "Captain": {"_count": 1}}, "ghost": {"_count": 22, "of": {"_count": 12}, "in": {"_count": 2}, "": {"_count": 2}, "began": {"_count": 1}, "sadly": {"_count": 1}, "who": {"_count": 2}, "orchestra": {"_count": 1}, "Cedric": {"_count": 1}}, "sandyhaired": {"_count": 1, "boy": {"_count": 1}}, "line": {"_count": 19, "sat": {"_count": 1}, "of": {"_count": 2}, "": {"_count": 4}, "to": {"_count": 2}, "and": {"_count": 2}, "outside": {"_count": 1}, "dwindling": {"_count": 1}, "when": {"_count": 1}, "himself": {"_count": 1}, "next": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}}, "black": {"_count": 65, "inside": {"_count": 2}, "ball": {"_count": 1}, "chessmen": {"_count": 1}, "pieces": {"_count": 2}, "fire": {"_count": 2}, "flames": {"_count": 2}, "lawns": {"_count": 1}, "grass": {"_count": 1}, "of": {"_count": 3}, "tunnel": {"_count": 1}, "alleyway": {"_count": 1}, "rats": {"_count": 1}, "eyes": {"_count": 1}, "surface": {"_count": 1}, "shapes": {"_count": 1}, "floor": {"_count": 1}, "sky": {"_count": 2}, "hair": {"_count": 2}, "camera": {"_count": 1}, "dragon": {"_count": 1}, "one": {"_count": 2}, "dog": {"_count": 6}, "outline": {"_count": 1}, "robes": {"_count": 1}, "": {"_count": 1}, "window": {"_count": 1}, "velvet": {"_count": 1}, "space": {"_count": 1}, "door": {"_count": 4}, "walls": {"_count": 1}, "hallway": {"_count": 2}, "room": {"_count": 1}, "cabinet": {"_count": 1}, "water": {"_count": 6}, "wall": {"_count": 1}, "lake": {"_count": 1}, "basin": {"_count": 1}, "fortress": {"_count": 1}, "rock": {"_count": 1}, "badger": {"_count": 1}, "smoke": {"_count": 1}, "but": {"_count": 1}}, "edges": {"_count": 18, "of": {"_count": 14}, "as": {"_count": 1}, "still": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "Gryffindor": {"_count": 154, "table": {"_count": 45}, "common": {"_count": 32}, "team": {"_count": 21}, "Beater": {"_count": 1}, "Seeker": {"_count": 3}, "goal": {"_count": 7}, "Quidditch": {"_count": 9}, "Beaters": {"_count": 1}, "dormitory": {"_count": 1}, "ghost": {"_count": 3}, "portrait": {"_count": 1}, "teams": {"_count": 3}, "lion": {"_count": 3}, "end": {"_count": 2}, "supporters": {"_count": 1}, "House": {"_count": 3}, "and": {"_count": 3}, "Chasers": {"_count": 1}, "notice": {"_count": 2}, "line": {"_count": 2}, "cheers": {"_count": 1}, "spectators": {"_count": 2}, "scarf": {"_count": 1}, "changing": {"_count": 1}, "hourglass": {"_count": 2}, "fire": {"_count": 1}, "celebration": {"_count": 1}, "Tower": {"_count": 1}}, "loudest": {"_count": 2, "cheer": {"_count": 1}, "silences": {"_count": 1}}, "Weasley": {"_count": 23, "twins": {"_count": 13}, "family": {"_count": 2}, "children": {"_count": 1}, "s": {"_count": 1}, "boys": {"_count": 1}, "familys": {"_count": 1}, "party": {"_count": 2}, "girl": {"_count": 1}, "boy": {"_count": 1}}, "ruff": {"_count": 3, "hed": {"_count": 1}, "sadly": {"_count": 1}, "and": {"_count": 1}}, "sudden": {"_count": 13, "horrible": {"_count": 1}, "end": {"_count": 1}, "appearance": {"_count": 3}, "whooshing": {"_count": 1}, "darkness": {"_count": 1}, "silence": {"_count": 1}, "agility": {"_count": 1}, "upsurge": {"_count": 1}, "brightness": {"_count": 1}, "widening": {"_count": 1}, "tears": {"_count": 1}}, "High": {"_count": 23, "Table": {"_count": 6}, "Street": {"_count": 9}, "Inquisitor": {"_count": 8}}, "thumbs": {"_count": 2, "up": {"_count": 2}}, "center": {"_count": 41, "of": {"_count": 29}, "watching": {"_count": 1}, "slightly": {"_count": 1}, "but": {"_count": 1}, "great": {"_count": 1}, "and": {"_count": 1}, "pages": {"_count": 1}, "": {"_count": 3}, "hoop": {"_count": 1}, "making": {"_count": 1}, "sat": {"_count": 1}}, "nervous": {"_count": 2, "young": {"_count": 1}, "hippogriff": {"_count": 1}}, "chair": {"_count": 47, "next": {"_count": 2}, "nearest": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 9}, "snagged": {"_count": 1}, "was": {"_count": 2}, "spoke": {"_count": 1}, "in": {"_count": 4}, "ft": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 5}, "glowed": {"_count": 1}, "behind": {"_count": 3}, "at": {"_count": 1}, "beside": {"_count": 4}, "the": {"_count": 1}, "farthest": {"_count": 1}, "opposite": {"_count": 2}, "sitting": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 1}, "Whether": {"_count": 1}, "Harry": {"_count": 1}, "were": {"_count": 1}}, "Sorting": {"_count": 45, "Hat": {"_count": 35}, "": {"_count": 4}, "from": {"_count": 1}, "ended": {"_count": 1}, "now": {"_count": 1}, "Hats": {"_count": 2}, "anyway": {"_count": 1}}, "peppermints": {"_count": 1, "and": {"_count": 1}}, "stunned": {"_count": 5, "looks": {"_count": 1}, "look": {"_count": 1}, "silence": {"_count": 1}, "crowd": {"_count": 1}, "dragons": {"_count": 1}}, "cup": {"_count": 53, "six": {"_count": 1}, "three": {"_count": 1}, "upside": {"_count": 1}, "again": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}, "first": {"_count": 2}, "and": {"_count": 5}, "had": {"_count": 2}, "": {"_count": 8}, "shaking": {"_count": 1}, "stood": {"_count": 1}, "was": {"_count": 5}, "which": {"_count": 1}, "but": {"_count": 1}, "clear": {"_count": 1}, "into": {"_count": 3}, "with": {"_count": 1}, "to": {"_count": 4}, "rattled": {"_count": 1}, "off": {"_count": 1}, "by": {"_count": 1}, "back": {"_count": 1}, "as": {"_count": 1}, "of": {"_count": 2}, "that": {"_count": 1}, "reposed": {"_count": 1}, "on": {"_count": 1}, "lying": {"_count": 1}, "I": {"_count": 1}}, "Slytherin": {"_count": 95, "ghost": {"_count": 2}, "table": {"_count": 28}, "Captain": {"_count": 2}, "colors": {"_count": 2}, "serpent": {"_count": 1}, "team": {"_count": 15}, "common": {"_count": 10}, "Quidditch": {"_count": 5}, "goal": {"_count": 4}, "end": {"_count": 6}, "crowd": {"_count": 1}, "penalty": {"_count": 1}, "Seeker": {"_count": 1}, "Beaters": {"_count": 1}, "Keeper": {"_count": 4}, "desks": {"_count": 1}, "section": {"_count": 1}, "stands": {"_count": 1}, "supporters": {"_count": 1}, "players": {"_count": 1}, "sixthyear": {"_count": 1}, "dormitory": {"_count": 1}, "connection": {"_count": 1}, "column": {"_count": 1}, "family": {"_count": 1}, "had": {"_count": 1}, "hourglass": {"_count": 1}}, "seating": {"_count": 2, "arrangements": {"_count": 1}, "plan": {"_count": 1}}, "remains": {"_count": 8, "of": {"_count": 8}}, "food": {"_count": 13, "faded": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "cart": {"_count": 2}, "cottage": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 3}, "trolley": {"_count": 1}, "trolleys": {"_count": 1}, "because": {"_count": 1}}, "desserts": {"_count": 2, "appeared": {"_count": 1}, "too": {"_count": 1}}, "talk": {"_count": 2, "turned": {"_count": 1}, "louder": {"_count": 1}}, "ankles": {"_count": 5, "when": {"_count": 1}, "and": {"_count": 3}, "in": {"_count": 1}}, "garden": {"_count": 46, "and": {"_count": 7}, "bench": {"_count": 3}, "hedge": {"_count": 1}, "": {"_count": 7}, "for": {"_count": 2}, "path": {"_count": 5}, "brandishing": {"_count": 1}, "I": {"_count": 1}, "she": {"_count": 1}, "bottlebrush": {"_count": 1}, "so": {"_count": 1}, "since": {"_count": 1}, "when": {"_count": 2}, "fence": {"_count": 1}, "staring": {"_count": 1}, "his": {"_count": 1}, "at": {"_count": 1}, "had": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}, "of": {"_count": 1}, "Mr": {"_count": 1}, "between": {"_count": 1}, "Ron": {"_count": 1}, "where": {"_count": 1}}, "scar": {"_count": 23, "on": {"_count": 15}, "that": {"_count": 2}, "again": {"_count": 1}, "is": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}, "upon": {"_count": 1}, "stretched": {"_count": 1}}, "feeling": {"_count": 22, "Harry": {"_count": 1}, "started": {"_count": 1}, "in": {"_count": 2}, "Hermione": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 9}, "of": {"_count": 5}, "he": {"_count": 1}, "Reg": {"_count": 1}}, "forest": {"_count": 170, "on": {"_count": 3}, "": {"_count": 53}, "while": {"_count": 1}, "at": {"_count": 1}, "youre": {"_count": 1}, "thatll": {"_count": 1}, "with": {"_count": 6}, "until": {"_count": 1}, "leaving": {"_count": 1}, "or": {"_count": 1}, "didnt": {"_count": 1}, "he": {"_count": 4}, "of": {"_count": 3}, "and": {"_count": 8}, "before": {"_count": 4}, "path": {"_count": 2}, "floor": {"_count": 7}, "ever": {"_count": 2}, "branches": {"_count": 1}, "that": {"_count": 4}, "Harry": {"_count": 2}, "now": {"_count": 3}, "Sirius": {"_count": 1}, "unable": {"_count": 1}, "all": {"_count": 2}, "in": {"_count": 2}, "Macnair": {"_count": 1}, "darkness": {"_count": 1}, "right": {"_count": 1}, "together": {"_count": 1}, "but": {"_count": 2}, "talking": {"_count": 1}, "where": {"_count": 4}, "just": {"_count": 1}, "did": {"_count": 1}, "instinctively": {"_count": 1}, "Where": {"_count": 1}, "I": {"_count": 2}, "away": {"_count": 1}, "doubled": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 2}, "fer": {"_count": 1}, "Are": {"_count": 1}, "wasn": {"_count": 1}, "without": {"_count": 2}, "would": {"_count": 1}, "again": {"_count": 1}, "Hagrid": {"_count": 1}, "it": {"_count": 1}, "one": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 2}, "possibly": {"_count": 1}, "the": {"_count": 3}, "said": {"_count": 1}, "yeh": {"_count": 1}, "these": {"_count": 1}, "as": {"_count": 1}, "she": {"_count": 1}, "pool": {"_count": 1}, "had": {"_count": 2}, "toward": {"_count": 1}, "Grawpy": {"_count": 1}, "brandishing": {"_count": 1}, "well": {"_count": 1}, "lifted": {"_count": 1}, "were": {"_count": 1}, "filled": {"_count": 1}}, "grounds": {"_count": 141, "is": {"_count": 3}, "": {"_count": 40}, "for": {"_count": 2}, "to": {"_count": 4}, "carrying": {"_count": 1}, "with": {"_count": 6}, "toward": {"_count": 6}, "and": {"_count": 10}, "but": {"_count": 3}, "descended": {"_count": 1}, "around": {"_count": 2}, "Dumbledore": {"_count": 2}, "he": {"_count": 3}, "on": {"_count": 1}, "again": {"_count": 2}, "the": {"_count": 2}, "tonight": {"_count": 1}, "stop": {"_count": 1}, "still": {"_count": 1}, "las": {"_count": 1}, "of": {"_count": 5}, "his": {"_count": 1}, "they": {"_count": 2}, "among": {"_count": 1}, "were": {"_count": 3}, "now": {"_count": 1}, "in": {"_count": 1}, "drew": {"_count": 1}, "after": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 4}, "Ron": {"_count": 2}, "then": {"_count": 2}, "Harry": {"_count": 4}, "will": {"_count": 1}, "find": {"_count": 1}, "enjoying": {"_count": 1}, "outside": {"_count": 1}, "seemed": {"_count": 2}, "a": {"_count": 2}, "had": {"_count": 1}, "through": {"_count": 1}, "when": {"_count": 1}, "looking": {"_count": 1}, "by": {"_count": 1}, "checking": {"_count": 1}, "Theres": {"_count": 1}, "Without": {"_count": 1}, "or": {"_count": 1}, "where": {"_count": 1}, "felt": {"_count": 1}, "crashing": {"_count": 1}}, "direction": {"_count": 27, "of": {"_count": 25}, "that": {"_count": 1}, "she": {"_count": 1}}, "caretaker": {"_count": 20, "to": {"_count": 1}, "Argus": {"_count": 2}, "was": {"_count": 4}, "who": {"_count": 1}, "has": {"_count": 2}, "had": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 4}, "came": {"_count": 1}, "turned": {"_count": 1}, "gave": {"_count": 1}}, "term": {"_count": 13, "": {"_count": 6}, "was": {"_count": 1}, "ended": {"_count": 1}, "the": {"_count": 1}, "is": {"_count": 1}, "We": {"_count": 1}, "to": {"_count": 1}, "while": {"_count": 1}}, "righthand": {"_count": 6, "side": {"_count": 6}}, "few": {"_count": 22, "who": {"_count": 2}, "that": {"_count": 1}, "seconds": {"_count": 2}, "fires": {"_count": 1}, "people": {"_count": 1}, "of": {"_count": 1}, "short": {"_count": 2}, "still": {"_count": 1}, "inches": {"_count": 1}, "the": {"_count": 1}, "minutes": {"_count": 1}, "occasions": {"_count": 1}, "steps": {"_count": 1}, "weeks": {"_count": 1}, "in": {"_count": 1}, "really": {"_count": 1}, "moments": {"_count": 1}, "lines": {"_count": 1}, "passersby": {"_count": 1}}, "forests": {"_count": 2, "full": {"_count": 1}, "of": {"_count": 1}}, "tables": {"_count": 18, "and": {"_count": 1}, "until": {"_count": 1}, "in": {"_count": 4}, "": {"_count": 1}, "safely": {"_count": 1}, "looking": {"_count": 1}, "zoomed": {"_count": 1}, "told": {"_count": 1}, "illuminating": {"_count": 1}, "before": {"_count": 1}, "toward": {"_count": 1}, "peering": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 1}, "he": {"_count": 1}}, "song": {"_count": 6, "at": {"_count": 1}, "it": {"_count": 1}, "ended": {"_count": 1}, "the": {"_count": 1}, "were": {"_count": 1}, "rose": {"_count": 1}}, "marble": {"_count": 83, "staircase": {"_count": 67}, "steps": {"_count": 2}, "ones": {"_count": 1}, "stairs": {"_count": 4}, "walls": {"_count": 1}, "bottom": {"_count": 1}, "headstone": {"_count": 2}, "hallway": {"_count": 1}, "woman": {"_count": 1}, "bust": {"_count": 1}, "banisters": {"_count": 1}, "tomb": {"_count": 1}}, "portraits": {"_count": 26, "along": {"_count": 1}, "kept": {"_count": 1}, "turned": {"_count": 1}, "still": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 5}, "follow": {"_count": 1}, "lining": {"_count": 1}, "yelled": {"_count": 1}, "hissed": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 1}, "around": {"_count": 2}, "all": {"_count": 1}, "covering": {"_count": 1}, "followed": {"_count": 1}, "made": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "fell": {"_count": 1}}, "Bloody": {"_count": 11, "Baron": {"_count": 10}, "Barons": {"_count": 1}}, "walking": {"_count": 4, "sticks": {"_count": 2}, "stick": {"_count": 2}}, "Baronll": {"_count": 1, "hear": {"_count": 1}}, "portrait": {"_count": 114, "swung": {"_count": 2}, "hole": {"_count": 73}, "of": {"_count": 26}, "the": {"_count": 1}, "behind": {"_count": 1}, "back": {"_count": 1}, "opened": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "had": {"_count": 2}, "said": {"_count": 1}, "which": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "girls": {"_count": 55, "through": {"_count": 1}, "bathroom": {"_count": 7}, "dormitories": {"_count": 11}, "and": {"_count": 1}, "had": {"_count": 1}, "tent": {"_count": 1}, "toes": {"_count": 1}, "": {"_count": 1}, "dormitory": {"_count": 5}, "now": {"_count": 1}, "who": {"_count": 2}, "were": {"_count": 2}, "staircase": {"_count": 3}, "toilets": {"_count": 2}, "around": {"_count": 1}, "ooooohed": {"_count": 1}, "walked": {"_count": 1}, "headed": {"_count": 1}, "ones": {"_count": 1}, "by": {"_count": 2}, "at": {"_count": 1}, "from": {"_count": 1}, "shriek": {"_count": 1}, "voice": {"_count": 1}, "gave": {"_count": 1}, "that": {"_count": 1}, "death": {"_count": 1}, "did": {"_count": 1}, "looking": {"_count": 1}}, "towers": {"_count": 1, "they": {"_count": 1}}, "hangings": {"_count": 13, "": {"_count": 1}, "around": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}, "torn": {"_count": 1}, "on": {"_count": 2}, "shut": {"_count": 2}, "closed": {"_count": 2}, "and": {"_count": 1}, "apart": {"_count": 1}}, "treacle": {"_count": 2, "tart": {"_count": 2}}, "turban": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "hooknosed": {"_count": 1, "teacher": {"_count": 1}}, "tall": {"_count": 9, "kid": {"_count": 1}, "black": {"_count": 1}, "stone": {"_count": 2}, "grass": {"_count": 1}, "thin": {"_count": 1}, "pillars": {"_count": 1}, "pale": {"_count": 1}, "blackhaired": {"_count": 1}}, "red": {"_count": 22, "hair": {"_count": 2}, "Quaffle": {"_count": 1}, "card": {"_count": 1}, "roof": {"_count": 1}, "envelope": {"_count": 3}, "currant": {"_count": 1}, "": {"_count": 1}, "eyes": {"_count": 5}, "on": {"_count": 1}, "star": {"_count": 1}, "beams": {"_count": 1}, "light": {"_count": 2}, "cotton": {"_count": 1}, "earth": {"_count": 1}}, "glasses": {"_count": 7, "": {"_count": 2}, "which": {"_count": 1}, "by": {"_count": 1}, "theres": {"_count": 1}, "put": {"_count": 1}, "he": {"_count": 1}}, "coats": {"_count": 1, "of": {"_count": 1}}, "Poltergeist": {"_count": 11, "was": {"_count": 3}, "came": {"_count": 1}, "who": {"_count": 1}, "bobbing": {"_count": 1}, "had": {"_count": 1}, "a": {"_count": 2}, "throwing": {"_count": 1}, "appeared": {"_count": 1}}, "outofbounds": {"_count": 1, "corridor": {"_count": 1}}, "dungeons": {"_count": 33, "when": {"_count": 1}, "": {"_count": 14}, "thought": {"_count": 1}, "with": {"_count": 2}, "where": {"_count": 2}, "at": {"_count": 1}, "between": {"_count": 1}, "of": {"_count": 1}, "nothing": {"_count": 1}, "and": {"_count": 3}, "for": {"_count": 1}, "eight": {"_count": 1}, "neither": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}}, "secret": {"_count": 24, "passageways": {"_count": 2}, "entrance": {"_count": 2}, "passages": {"_count": 2}, "of": {"_count": 5}, "passage": {"_count": 1}, "community": {"_count": 1}, "with": {"_count": 1}, "Narcissa": {"_count": 1}, "method": {"_count": 1}, "organization": {"_count": 1}, "out": {"_count": 1}, "including": {"_count": 1}, "havent": {"_count": 1}, "workings": {"_count": 1}, "room": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "dearest": {"_count": 1, "ambition": {"_count": 1}}, "classes": {"_count": 3, "themselves": {"_count": 1}, "on": {"_count": 1}, "are": {"_count": 1}}, "names": {"_count": 22, "of": {"_count": 15}, "and": {"_count": 2}, "to": {"_count": 1}, "on": {"_count": 1}, "been": {"_count": 2}, "died": {"_count": 1}}, "movements": {"_count": 3, "of": {"_count": 3}}, "planets": {"_count": 7, "": {"_count": 2}, "not": {"_count": 1}, "say": {"_count": 1}, "and": {"_count": 2}, "at": {"_count": 1}}, "greenhouses": {"_count": 15, "behind": {"_count": 1}, "where": {"_count": 1}, "they": {"_count": 2}, "": {"_count": 7}, "under": {"_count": 1}, "paused": {"_count": 1}, "Harry": {"_count": 1}, "last": {"_count": 1}}, "strange": {"_count": 14, "plants": {"_count": 1}, "and": {"_count": 1}, "splintery": {"_count": 1}, "substance": {"_count": 1}, "feeling": {"_count": 1}, "device": {"_count": 1}, "skeletal": {"_count": 1}, "silver": {"_count": 2}, "assortment": {"_count": 1}, "angle": {"_count": 1}, "music": {"_count": 1}, "connection": {"_count": 1}, "mark": {"_count": 1}}, "staff": {"_count": 67, "room": {"_count": 1}, "table": {"_count": 49}, "and": {"_count": 1}, "would": {"_count": 1}, "do": {"_count": 1}, "thought": {"_count": 1}, "sat": {"_count": 1}, "or": {"_count": 1}, "seemed": {"_count": 1}, "entered": {"_count": 1}, "but": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 1}, "almost": {"_count": 1}, "you": {"_count": 2}, "knew": {"_count": 1}, "who": {"_count": 1}, "precisely": {"_count": 1}}, "Evil": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Oddball": {"_count": 1, "mixed": {"_count": 1}}, "Charms": {"_count": 10, "teacher": {"_count": 4}, "exam": {"_count": 1}, "corridor": {"_count": 2}, "class": {"_count": 1}, "classroom": {"_count": 1}, "window": {"_count": 1}}, "start": {"_count": 28, "of": {"_count": 21}, "": {"_count": 1}, "he": {"_count": 1}, "youve": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 2}, "and": {"_count": 1}}, "roll": {"_count": 2, "call": {"_count": 2}}, "furniture": {"_count": 3, "into": {"_count": 1}, "was": {"_count": 1}, "might": {"_count": 1}}, "lesson": {"_count": 38, "only": {"_count": 1}, "to": {"_count": 1}, "Professor": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 7}, "in": {"_count": 2}, "whether": {"_count": 1}, "but": {"_count": 2}, "had": {"_count": 2}, "and": {"_count": 1}, "taking": {"_count": 1}, "Harry": {"_count": 1}, "began": {"_count": 1}, "telling": {"_count": 1}, "trying": {"_count": 1}, "they": {"_count": 1}, "Snape": {"_count": 1}, "for": {"_count": 1}, "by": {"_count": 1}, "I": {"_count": 1}, "with": {"_count": 1}, "gone": {"_count": 1}, "making": {"_count": 1}, "striding": {"_count": 1}, "almost": {"_count": 1}, "he": {"_count": 1}, "Hermione": {"_count": 1}, "passed": {"_count": 1}, "Lavender": {"_count": 1}}, "zombie": {"_count": 1, "Quirrell": {"_count": 1}}, "Slytherins": {"_count": 67, "said": {"_count": 2}, "so": {"_count": 2}, "have": {"_count": 1}, "thats": {"_count": 1}, "": {"_count": 15}, "had": {"_count": 1}, "will": {"_count": 1}, "dont": {"_count": 1}, "forever": {"_count": 1}, "in": {"_count": 3}, "sniggered": {"_count": 1}, "Ive": {"_count": 1}, "are": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 2}, "brooms": {"_count": 1}, "tried": {"_count": 1}, "were": {"_count": 6}, "delighted": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "too": {"_count": 1}, "he": {"_count": 2}, "all": {"_count": 1}, "waiting": {"_count": 1}, "who": {"_count": 3}, "laughter": {"_count": 1}, "a": {"_count": 1}, "fat": {"_count": 1}, "permission": {"_count": 1}, "cause": {"_count": 1}, "on": {"_count": 1}, "efforts": {"_count": 1}, "through": {"_count": 1}, "faces": {"_count": 1}, "hissed": {"_count": 1}, "better": {"_count": 1}, "if": {"_count": 1}, "trooping": {"_count": 1}}, "owlery": {"_count": 4, "with": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 1}}, "marmalade": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "sugar": {"_count": 4, "bowl": {"_count": 3}, "tongs": {"_count": 1}}, "Potions": {"_count": 11, "lesson": {"_count": 3}, "master": {"_count": 6}, "masters": {"_count": 1}, "book": {"_count": 1}}, "startofterm": {"_count": 8, "banquet": {"_count": 2}, "feast": {"_count": 6}}, "idea": {"_count": 68, "that": {"_count": 11}, "of": {"_count": 32}, "from": {"_count": 4}, "": {"_count": 5}, "were": {"_count": 1}, "would": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 1}, "Ron": {"_count": 1}, "had": {"_count": 2}, "seemed": {"_count": 1}, "I": {"_count": 1}, "did": {"_count": 1}, "in": {"_count": 1}, "away": {"_count": 1}, "much": {"_count": 1}}, "main": {"_count": 22, "castle": {"_count": 2}, "road": {"_count": 5}, "school": {"_count": 2}, "thing": {"_count": 1}, "street": {"_count": 3}, "on": {"_count": 1}, "fairly": {"_count": 1}, "the": {"_count": 1}, "part": {"_count": 1}, "room": {"_count": 1}, "lane": {"_count": 1}, "elements": {"_count": 1}, "hall": {"_count": 2}}, "pickled": {"_count": 2, "animals": {"_count": 1}, "slimy": {"_count": 1}}, "subtle": {"_count": 1, "science": {"_count": 1}}, "gift": {"_count": 2, "of": {"_count": 1}, "herself": {"_count": 1}}, "beauty": {"_count": 2, "of": {"_count": 2}}, "softly": {"_count": 1, "simmering": {"_count": 1}}, "delicate": {"_count": 3, "power": {"_count": 1}, "silver": {"_count": 2}}, "mind": {"_count": 5, "ensnaring": {"_count": 1}, "remains": {"_count": 1}, "against": {"_count": 2}, "is": {"_count": 1}}, "senses": {"_count": 1, "": {"_count": 1}}, "faintest": {"_count": 16, "idea": {"_count": 5}, "sound": {"_count": 1}, "trace": {"_count": 4}, "inkling": {"_count": 1}, "slimmest": {"_count": 1}, "sneer": {"_count": 1}, "pop": {"_count": 1}, "most": {"_count": 1}, "possibility": {"_count": 1}}, "dungeon": {"_count": 60, "ceiling": {"_count": 1}, "": {"_count": 15}, "an": {"_count": 1}, "was": {"_count": 2}, "fell": {"_count": 1}, "wall": {"_count": 1}, "the": {"_count": 1}, "where": {"_count": 1}, "fortunately": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 6}, "Malfoy": {"_count": 1}, "door": {"_count": 10}, "as": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "opened": {"_count": 1}, "returned": {"_count": 1}, "dissolved": {"_count": 2}, "floor": {"_count": 2}, "raised": {"_count": 1}, "without": {"_count": 1}, "classroom": {"_count": 1}, "preparing": {"_count": 1}, "so": {"_count": 1}, "doors": {"_count": 1}, "As": {"_count": 1}, "there": {"_count": 1}}, "Draught": {"_count": 3, "of": {"_count": 3}}, "stomach": {"_count": 10, "of": {"_count": 2}, "by": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 1}, "one": {"_count": 1}, "that": {"_count": 1}, "grabbed": {"_count": 1}}, "Gryffindors": {"_count": 37, "as": {"_count": 2}, "take": {"_count": 1}, "below": {"_count": 1}, "": {"_count": 3}, "had": {"_count": 5}, "hurried": {"_count": 1}, "leering": {"_count": 1}, "noses": {"_count": 1}, "work": {"_count": 1}, "were": {"_count": 4}, "began": {"_count": 1}, "draw": {"_count": 1}, "streaming": {"_count": 1}, "along": {"_count": 2}, "squeezed": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 2}, "at": {"_count": 1}, "heading": {"_count": 1}, "all": {"_count": 1}, "thought": {"_count": 1}, "however": {"_count": 1}, "trooped": {"_count": 1}, "to": {"_count": 1}, "Hufflepuffs": {"_count": 1}}, "potion": {"_count": 50, "when": {"_count": 1}, "": {"_count": 14}, "was": {"_count": 4}, "frothed": {"_count": 1}, "looked": {"_count": 1}, "into": {"_count": 3}, "down": {"_count": 2}, "for": {"_count": 1}, "had": {"_count": 1}, "that": {"_count": 2}, "before": {"_count": 1}, "at": {"_count": 1}, "immediately": {"_count": 1}, "turned": {"_count": 1}, "book": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 2}, "wore": {"_count": 1}, "seemed": {"_count": 1}, "murmuring": {"_count": 1}, "glowed": {"_count": 1}, "instead": {"_count": 1}, "inside": {"_count": 1}, "began": {"_count": 1}, "hit": {"_count": 1}, "and": {"_count": 2}, "then": {"_count": 1}, "onto": {"_count": 1}}, "cauldron": {"_count": 29, "collapsed": {"_count": 1}, "off": {"_count": 1}, "": {"_count": 8}, "too": {"_count": 2}, "and": {"_count": 2}, "so": {"_count": 1}, "bottoms": {"_count": 1}, "with": {"_count": 2}, "seemed": {"_count": 1}, "there": {"_count": 1}, "then": {"_count": 1}, "were": {"_count": 1}, "instead": {"_count": 1}, "staring": {"_count": 1}, "in": {"_count": 1}, "nearest": {"_count": 2}, "he": {"_count": 1}, "packed": {"_count": 1}}, "spilled": {"_count": 1, "potion": {"_count": 1}}, "porcupine": {"_count": 1, "quills": {"_count": 1}}, "quills": {"_count": 1, "": {"_count": 1}}, "forbidden": {"_count": 4, "forest": {"_count": 4}}, "collar": {"_count": 7, "of": {"_count": 4}, "and": {"_count": 1}, "looking": {"_count": 1}, "now": {"_count": 1}}, "tea": {"_count": 15, "cozy": {"_count": 1}, "leaves": {"_count": 3}, "to": {"_count": 1}, "cart": {"_count": 1}, "Weatherby": {"_count": 1}, "towel": {"_count": 1}, "": {"_count": 2}, "shop": {"_count": 2}, "and": {"_count": 1}, "as": {"_count": 1}, "tray": {"_count": 1}}, "breakin": {"_count": 1, "at": {"_count": 1}}, "work": {"_count": 11, "of": {"_count": 2}, "much": {"_count": 1}, "they": {"_count": 1}, "shes": {"_count": 1}, "alone": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "properly": {"_count": 1}, "surface": {"_count": 1}, "Master": {"_count": 1}}, "date": {"_count": 13, "": {"_count": 1}, "of": {"_count": 4}, "you": {"_count": 1}, "and": {"_count": 1}, "changes": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 1}, "for": {"_count": 1}, "wrong": {"_count": 1}, "they": {"_count": 1}}, "story": {"_count": 42, "again": {"_count": 1}, "and": {"_count": 1}, "started": {"_count": 1}, "Harry": {"_count": 1}, "starting": {"_count": 1}, "anywhere": {"_count": 1}, "but": {"_count": 1}, "of": {"_count": 11}, "Ill": {"_count": 1}, "get": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 4}, "under": {"_count": 1}, "two": {"_count": 1}, "so": {"_count": 1}, "from": {"_count": 2}, "I": {"_count": 1}, "somewhere": {"_count": 1}, "as": {"_count": 2}, "another": {"_count": 1}, "he": {"_count": 1}, "Malfoy": {"_count": 1}, "that": {"_count": 2}, "being": {"_count": 1}, "said": {"_count": 1}, "were": {"_count": 1}}, "thieves": {"_count": 1, "were": {"_count": 1}}, "lessons": {"_count": 6, "hed": {"_count": 1}, "": {"_count": 2}, "themselves": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 1}}, "countryside": {"_count": 8, "on": {"_count": 1}, "became": {"_count": 1}, "to": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 2}, "pitching": {"_count": 1}, "as": {"_count": 1}}, "players": {"_count": 7, "move": {"_count": 1}, "could": {"_count": 1}, "a": {"_count": 1}, "pointed": {"_count": 1}, "down": {"_count": 1}, "was": {"_count": 1}, "with": {"_count": 1}}, "Ages": {"_count": 4, "": {"_count": 2}, "which": {"_count": 1}, "back": {"_count": 1}}, "arrival": {"_count": 16, "of": {"_count": 14}, "that": {"_count": 1}, "at": {"_count": 1}}, "Remembrall": {"_count": 4, "had": {"_count": 1}, "out": {"_count": 1}, "back": {"_count": 1}, "clutched": {"_count": 1}}, "grass": {"_count": 61, "rippled": {"_count": 1}, "in": {"_count": 5}, "": {"_count": 15}, "with": {"_count": 2}, "needed": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 6}, "stains": {"_count": 1}, "was": {"_count": 1}, "blood": {"_count": 1}, "hit": {"_count": 1}, "but": {"_count": 2}, "below": {"_count": 1}, "around": {"_count": 1}, "flatten": {"_count": 1}, "end": {"_count": 1}, "which": {"_count": 2}, "beside": {"_count": 1}, "circling": {"_count": 1}, "waiting": {"_count": 1}, "some": {"_count": 1}, "between": {"_count": 1}, "looking": {"_count": 1}, "Sirius": {"_count": 1}, "behind": {"_count": 2}, "Umbridge": {"_count": 1}, "sunbathing": {"_count": 1}, "discarding": {"_count": 1}, "there": {"_count": 1}, "pierced": {"_count": 1}, "beneath": {"_count": 1}, "before": {"_count": 1}, "the": {"_count": 1}}, "sloping": {"_count": 11, "lawns": {"_count": 7}, "ceiling": {"_count": 1}, "lawn": {"_count": 3}}, "twigs": {"_count": 2, "stuck": {"_count": 1}, "on": {"_count": 1}}, "rows": {"_count": 10, "correcting": {"_count": 1}, "of": {"_count": 4}, "staring": {"_count": 2}, "asking": {"_count": 1}, "and": {"_count": 2}}, "whistle": {"_count": 10, "had": {"_count": 2}, "": {"_count": 3}, "blew": {"_count": 2}, "blow": {"_count": 1}, "brought": {"_count": 1}, "that": {"_count": 1}}, "broom": {"_count": 28, "and": {"_count": 5}, "tightly": {"_count": 2}, "steady": {"_count": 1}, "was": {"_count": 2}, "said": {"_count": 1}, "would": {"_count": 1}, "with": {"_count": 1}, "THE": {"_count": 1}, "handle": {"_count": 2}, "as": {"_count": 1}, "might": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}, "cupboard": {"_count": 2}, "nevertheless": {"_count": 1}, "shed": {"_count": 1}, "nearest": {"_count": 1}, "after": {"_count": 1}, "into": {"_count": 1}, "at": {"_count": 1}}, "sun": {"_count": 33, "as": {"_count": 1}, "sinking": {"_count": 2}, "started": {"_count": 1}, "was": {"_count": 5}, "warming": {"_count": 1}, "": {"_count": 2}, "where": {"_count": 1}, "had": {"_count": 5}, "newly": {"_count": 1}, "set": {"_count": 1}, "the": {"_count": 1}, "put": {"_count": 1}, "came": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}, "so": {"_count": 1}, "he": {"_count": 1}, "caressed": {"_count": 1}, "hung": {"_count": 1}, "until": {"_count": 1}, "rise": {"_count": 1}, "it": {"_count": 1}, "shone": {"_count": 1}}, "topmost": {"_count": 17, "branches": {"_count": 2}, "pane": {"_count": 1}, "empty": {"_count": 1}, "bar": {"_count": 1}, "row": {"_count": 1}, "one": {"_count": 2}, "tier": {"_count": 1}, "shelf": {"_count": 1}, "tower": {"_count": 1}, "boxes": {"_count": 1}, "stone": {"_count": 1}, "three": {"_count": 1}, "landing": {"_count": 1}, "window": {"_count": 1}, "cell": {"_count": 1}}, "ball": {"_count": 35, "rise": {"_count": 1}, "wind": {"_count": 1}, "so": {"_count": 1}, "through": {"_count": 1}, "will": {"_count": 2}, "": {"_count": 7}, "he": {"_count": 1}, "with": {"_count": 7}, "before": {"_count": 2}, "said": {"_count": 2}, "yet": {"_count": 1}, "included": {"_count": 1}, "discussing": {"_count": 1}, "could": {"_count": 1}, "but": {"_count": 2}, "crate": {"_count": 1}, "to": {"_count": 2}, "of": {"_count": 1}}, "screams": {"_count": 7, "of": {"_count": 2}, "and": {"_count": 4}, "on": {"_count": 1}}, "blackboard": {"_count": 15, "": {"_count": 3}, "and": {"_count": 3}, "Describe": {"_count": 1}, "Hermione": {"_count": 1}, "if": {"_count": 1}, "they": {"_count": 1}, "it": {"_count": 1}, "sharply": {"_count": 1}, "again": {"_count": 1}, "at": {"_count": 1}, "your": {"_count": 1}}, "chalk": {"_count": 1, "into": {"_count": 1}}, "build": {"_count": 1, "for": {"_count": 1}}, "firstyear": {"_count": 1, "rule": {"_count": 1}}, "excitement": {"_count": 6, "of": {"_count": 4}, "only": {"_count": 1}, "drain": {"_count": 1}}, "afternoon": {"_count": 17, "": {"_count": 2}, "though": {"_count": 1}, "before": {"_count": 1}, "in": {"_count": 1}, "wore": {"_count": 1}, "progressed": {"_count": 1}, "the": {"_count": 1}, "double": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}, "Harrys": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "sky": {"_count": 1}}, "team": {"_count": 68, "too": {"_count": 1}, "": {"_count": 15}, "is": {"_count": 1}, "were": {"_count": 3}, "last": {"_count": 1}, "harder": {"_count": 1}, "a": {"_count": 2}, "landed": {"_count": 1}, "hung": {"_count": 1}, "wasnt": {"_count": 1}, "Longbottom": {"_count": 1}, "wouldnt": {"_count": 1}, "and": {"_count": 5}, "Ive": {"_count": 1}, "started": {"_count": 1}, "had": {"_count": 1}, "watched": {"_count": 1}, "to": {"_count": 3}, "inspired": {"_count": 1}, "headed": {"_count": 1}, "managed": {"_count": 1}, "led": {"_count": 1}, "behind": {"_count": 1}, "mascots": {"_count": 1}, "Captaincy": {"_count": 1}, "filed": {"_count": 1}, "felt": {"_count": 1}, "when": {"_count": 1}, "come": {"_count": 1}, "who": {"_count": 1}, "be": {"_count": 1}, "can": {"_count": 1}, "themselves": {"_count": 1}, "Ginny": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 2}, "than": {"_count": 1}, "mightve": {"_count": 1}, "members": {"_count": 1}, "as": {"_count": 1}, "usually": {"_count": 1}}, "statue": {"_count": 26, "of": {"_count": 5}, "on": {"_count": 2}, "Fawkes": {"_count": 1}, "": {"_count": 6}, "but": {"_count": 1}, "and": {"_count": 3}, "he": {"_count": 1}, "were": {"_count": 2}, "the": {"_count": 1}, "away": {"_count": 1}, "flung": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}}, "Smarmy": {"_count": 1, "that": {"_count": 1}}, "trophy": {"_count": 12, "room": {"_count": 12}}, "look": {"_count": 56, "on": {"_count": 21}, "of": {"_count": 27}, "Snape": {"_count": 2}, "that": {"_count": 2}, "Ron": {"_count": 1}, "he": {"_count": 2}, "Hermione": {"_count": 1}}, "points": {"_count": 7, "youll": {"_count": 1}, "I": {"_count": 1}, "theyd": {"_count": 1}, "stand": {"_count": 1}, "a": {"_count": 1}, "currently": {"_count": 1}, "": {"_count": 1}}, "darkness": {"_count": 144, "this": {"_count": 1}, "": {"_count": 52}, "for": {"_count": 6}, "its": {"_count": 1}, "their": {"_count": 1}, "became": {"_count": 1}, "that": {"_count": 1}, "suddenly": {"_count": 1}, "ahead": {"_count": 1}, "they": {"_count": 3}, "scattering": {"_count": 2}, "within": {"_count": 1}, "as": {"_count": 2}, "Crookshanks": {"_count": 1}, "on": {"_count": 1}, "from": {"_count": 2}, "there": {"_count": 1}, "Stop": {"_count": 1}, "if": {"_count": 1}, "a": {"_count": 2}, "like": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 9}, "so": {"_count": 1}, "was": {"_count": 2}, "swallowed": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "pressed": {"_count": 1}, "outside": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 4}, "looking": {"_count": 1}, "right": {"_count": 1}, "of": {"_count": 2}, "the": {"_count": 3}, "she": {"_count": 1}, "fire": {"_count": 1}, "complete": {"_count": 1}, "all": {"_count": 2}, "at": {"_count": 2}, "but": {"_count": 1}, "drawing": {"_count": 1}, "It": {"_count": 1}, "toward": {"_count": 3}, "clutching": {"_count": 1}, "with": {"_count": 2}, "making": {"_count": 1}, "had": {"_count": 2}, "trying": {"_count": 1}, "listening": {"_count": 2}, "ideas": {"_count": 1}, "after": {"_count": 1}, "hitting": {"_count": 1}, "swirling": {"_count": 1}, "traveling": {"_count": 1}, "directly": {"_count": 1}, "while": {"_count": 1}, "through": {"_count": 1}}, "tower": {"_count": 31, "room": {"_count": 1}, "seemed": {"_count": 1}, "": {"_count": 10}, "dormitory": {"_count": 1}, "window": {"_count": 3}, "come": {"_count": 1}, "nearly": {"_count": 1}, "still": {"_count": 1}, "and": {"_count": 4}, "wall": {"_count": 1}, "top": {"_count": 1}, "stairs": {"_count": 1}, "yet": {"_count": 1}, "after": {"_count": 1}, "when": {"_count": 2}, "where": {"_count": 1}}, "spiral": {"_count": 35, "staircase": {"_count": 30}, "stair": {"_count": 2}, "stairs": {"_count": 2}, "stone": {"_count": 1}}, "armchairs": {"_count": 1, "into": {"_count": 1}}, "hole": {"_count": 24, "": {"_count": 2}, "until": {"_count": 1}, "after": {"_count": 1}, "into": {"_count": 1}, "headfirst": {"_count": 1}, "staring": {"_count": 1}, "then": {"_count": 1}, "in": {"_count": 7}, "behind": {"_count": 3}, "to": {"_count": 1}, "he": {"_count": 2}, "seemed": {"_count": 1}, "and": {"_count": 1}, "blown": {"_count": 1}}, "Bogies": {"_count": 2, "Quirrell": {"_count": 1}, "but": {"_count": 1}}, "Curse": {"_count": 1, "of": {"_count": 1}}, "moonlight": {"_count": 15, "caught": {"_count": 1}, "": {"_count": 9}, "a": {"_count": 1}, "filtering": {"_count": 1}, "as": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}}, "pair": {"_count": 37, "of": {"_count": 37}}, "gallery": {"_count": 1, "not": {"_count": 1}}, "doorpost": {"_count": 1, "and": {"_count": 1}}, "lead": {"_count": 20, "without": {"_count": 1}, "": {"_count": 4}, "the": {"_count": 1}, "hed": {"_count": 1}, "for": {"_count": 2}, "thirty": {"_count": 1}, "and": {"_count": 1}, "they": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}, "singer": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 1}, "past": {"_count": 1}, "across": {"_count": 1}, "monster": {"_count": 1}}, "stitch": {"_count": 4, "in": {"_count": 4}}, "lock": {"_count": 20, "and": {"_count": 6}, "Harry": {"_count": 1}, "on": {"_count": 3}, "had": {"_count": 1}, "": {"_count": 1}, "slide": {"_count": 1}, "clicked": {"_count": 2}, "threw": {"_count": 1}, "gave": {"_count": 1}, "it": {"_count": 1}, "click": {"_count": 1}, "turned": {"_count": 1}}, "sleeve": {"_count": 8, "of": {"_count": 7}, "and": {"_count": 1}}, "doorknob": {"_count": 13, "between": {"_count": 1}, "": {"_count": 3}, "for": {"_count": 1}, "when": {"_count": 1}, "behind": {"_count": 1}, "again": {"_count": 1}, "but": {"_count": 2}, "and": {"_count": 1}, "there": {"_count": 1}, "stepped": {"_count": 1}}, "seventh": {"_count": 22, "floor": {"_count": 13}, "year": {"_count": 2}, "where": {"_count": 1}, "key": {"_count": 1}, "month": {"_count": 2}, "glass": {"_count": 1}, "bit": {"_count": 1}, "Horcrux": {"_count": 1}}, "common": {"_count": 146, "room": {"_count": 144}, "way": {"_count": 1}, "phrase": {"_count": 1}}, "grubby": {"_count": 4, "little": {"_count": 1}, "pillowcase": {"_count": 1}, "piece": {"_count": 1}, "sawdust": {"_count": 1}}, "threeheaded": {"_count": 2, "dog": {"_count": 2}}, "meantime": {"_count": 17, "Harry": {"_count": 3}, "the": {"_count": 1}, "consult": {"_count": 1}, "life": {"_count": 1}, "": {"_count": 3}, "Im": {"_count": 2}, "he": {"_count": 2}, "I": {"_count": 1}, "bring": {"_count": 1}, "however": {"_count": 1}, "they": {"_count": 1}}, "package": {"_count": 10, "that": {"_count": 1}, "from": {"_count": 1}, "in": {"_count": 1}, "neatly": {"_count": 1}, "away": {"_count": 1}, "": {"_count": 1}, "Katie": {"_count": 1}, "fell": {"_count": 1}, "contained": {"_count": 1}, "across": {"_count": 1}}, "mysterious": {"_count": 13, "object": {"_count": 1}, "power": {"_count": 1}, "portents": {"_count": 1}, "events": {"_count": 1}, "substance": {"_count": 1}, "room": {"_count": 1}, "symptoms": {"_count": 1}, "powder": {"_count": 1}, "recent": {"_count": 1}, "broken": {"_count": 1}, "mark": {"_count": 1}, "Ariana": {"_count": 1}, "doe": {"_count": 1}}, "slightest": {"_count": 29, "interest": {"_count": 1}, "idea": {"_count": 1}, "since": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 1}, "difference": {"_count": 1}, "notice": {"_count": 1}, "tremor": {"_count": 1}, "sign": {"_count": 5}, "bit": {"_count": 2}, "indication": {"_count": 1}, "improvement": {"_count": 1}, "difficulty": {"_count": 1}, "attention": {"_count": 2}, "sound": {"_count": 1}, "trace": {"_count": 1}, "for": {"_count": 1}, "This": {"_count": 1}, "desire": {"_count": 1}, "chance": {"_count": 1}, "touch": {"_count": 1}, "surprise": {"_count": 1}}, "trapdoor": {"_count": 17, "": {"_count": 4}, "tonight": {"_count": 1}, "which": {"_count": 1}, "and": {"_count": 2}, "suddenly": {"_count": 1}, "open": {"_count": 1}, "Harry": {"_count": 1}, "kicked": {"_count": 1}, "overhead": {"_count": 1}, "ignoring": {"_count": 1}, "at": {"_count": 1}, "looked": {"_count": 1}, "in": {"_count": 1}}, "parcel": {"_count": 16, "": {"_count": 3}, "to": {"_count": 3}, "and": {"_count": 1}, "Hedwig": {"_count": 1}, "gave": {"_count": 1}, "nervously": {"_count": 1}, "open": {"_count": 1}, "only": {"_count": 1}, "which": {"_count": 1}, "outside": {"_count": 1}, "suspiciously": {"_count": 1}, "cautiously": {"_count": 1}}, "Quidditch": {"_count": 117, "field": {"_count": 17}, "pitch": {"_count": 18}, "match": {"_count": 8}, "Cup": {"_count": 19}, "team": {"_count": 5}, "stadium": {"_count": 6}, "teacher": {"_count": 1}, "final": {"_count": 3}, "of": {"_count": 1}, "World": {"_count": 36}, "League": {"_count": 1}, "said": {"_count": 1}, "season": {"_count": 1}}, "Nimbus": {"_count": 4, "": {"_count": 1}, "Two": {"_count": 1}, "was": {"_count": 1}, "series": {"_count": 1}}, "handle": {"_count": 22, "Malfoy": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "Done": {"_count": 1}, "however": {"_count": 1}, "of": {"_count": 7}, "right": {"_count": 1}, "was": {"_count": 1}, "too": {"_count": 1}, "and": {"_count": 3}, "He": {"_count": 1}, "again": {"_count": 1}, "toppled": {"_count": 1}, "on": {"_count": 1}}, "special": {"_count": 4, "circumstances": {"_count": 2}, "features": {"_count": 1}, "Ministry": {"_count": 1}}, "dormitory": {"_count": 56, "where": {"_count": 1}, "to": {"_count": 2}, "door": {"_count": 7}, "down": {"_count": 2}, "": {"_count": 7}, "wearing": {"_count": 1}, "blazing": {"_count": 1}, "which": {"_count": 1}, "he": {"_count": 3}, "deserted": {"_count": 1}, "collected": {"_count": 1}, "Madam": {"_count": 1}, "a": {"_count": 1}, "without": {"_count": 1}, "as": {"_count": 1}, "went": {"_count": 1}, "with": {"_count": 2}, "waving": {"_count": 1}, "opening": {"_count": 1}, "at": {"_count": 1}, "tonight": {"_count": 1}, "and": {"_count": 3}, "on": {"_count": 1}, "first": {"_count": 1}, "before": {"_count": 1}, "muttered": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}, "himself": {"_count": 1}, "spoke": {"_count": 1}, "window": {"_count": 2}, "was": {"_count": 1}, "bringing": {"_count": 1}, "doors": {"_count": 1}, "one": {"_count": 1}, "must": {"_count": 1}}, "different": {"_count": 4, "brooms": {"_count": 1}, "makes": {"_count": 1}, "owls": {"_count": 1}, "qualities": {"_count": 1}}, "dusk": {"_count": 3, "toward": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 1}}, "stadium": {"_count": 47, "before": {"_count": 1}, "": {"_count": 11}, "at": {"_count": 1}, "and": {"_count": 10}, "squinting": {"_count": 1}, "right": {"_count": 1}, "turned": {"_count": 1}, "beyond": {"_count": 1}, "exploded": {"_count": 1}, "were": {"_count": 1}, "itself": {"_count": 1}, "seemed": {"_count": 1}, "then": {"_count": 1}, "strode": {"_count": 1}, "shuddered": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "had": {"_count": 1}, "together": {"_count": 1}, "now": {"_count": 1}, "Draco": {"_count": 1}, "WEASLEY": {"_count": 1}, "just": {"_count": 1}, "behind": {"_count": 1}, "searching": {"_count": 1}, "through": {"_count": 1}, "was": {"_count": 1}, "or": {"_count": 1}}, "field": {"_count": 90, "so": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 24}, "to": {"_count": 7}, "waiting": {"_count": 1}, "and": {"_count": 6}, "on": {"_count": 2}, "said": {"_count": 1}, "something": {"_count": 1}, "he": {"_count": 3}, "over": {"_count": 1}, "started": {"_count": 1}, "far": {"_count": 1}, "in": {"_count": 1}, "because": {"_count": 1}, "broomsticks": {"_count": 1}, "for": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 3}, "two": {"_count": 1}, "wearing": {"_count": 1}, "past": {"_count": 1}, "under": {"_count": 1}, "but": {"_count": 2}, "below": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 2}, "watching": {"_count": 1}, "went": {"_count": 1}, "frantically": {"_count": 1}, "Ron": {"_count": 1}, "before": {"_count": 1}, "staring": {"_count": 1}, "WHAM": {"_count": 1}, "the": {"_count": 2}, "THAT": {"_count": 1}, "high": {"_count": 1}, "stood": {"_count": 2}, "again": {"_count": 1}, "connecting": {"_count": 1}, "from": {"_count": 1}, "Harry": {"_count": 1}, "leapt": {"_count": 1}, "his": {"_count": 1}, "toward": {"_count": 1}, "saw": {"_count": 1}, "of": {"_count": 1}}, "spectators": {"_count": 3, "were": {"_count": 1}, "stands": {"_count": 1}, "marched": {"_count": 1}}, "goal": {"_count": 21, "posts": {"_count": 16}, "hoop": {"_count": 1}, "hoops": {"_count": 3}, "he": {"_count": 1}}, "crate": {"_count": 14, "": {"_count": 4}, "and": {"_count": 2}, "its": {"_count": 1}, "came": {"_count": 1}, "with": {"_count": 1}, "back": {"_count": 1}, "open": {"_count": 1}, "theres": {"_count": 1}, "containing": {"_count": 1}, "blocking": {"_count": 1}}, "Quaffle": {"_count": 78, "said": {"_count": 2}, "to": {"_count": 6}, "goes": {"_count": 2}, "and": {"_count": 7}, "": {"_count": 10}, "the": {"_count": 1}, "or": {"_count": 1}, "is": {"_count": 1}, "Slytherin": {"_count": 2}, "thats": {"_count": 2}, "a": {"_count": 2}, "too": {"_count": 1}, "passes": {"_count": 1}, "heading": {"_count": 1}, "its": {"_count": 1}, "shes": {"_count": 2}, "had": {"_count": 2}, "Flint": {"_count": 1}, "out": {"_count": 2}, "for": {"_count": 2}, "drawing": {"_count": 1}, "tightly": {"_count": 1}, "nearly": {"_count": 1}, "changed": {"_count": 1}, "now": {"_count": 1}, "past": {"_count": 1}, "under": {"_count": 1}, "with": {"_count": 1}, "before": {"_count": 1}, "was": {"_count": 1}, "perhaps": {"_count": 1}, "so": {"_count": 1}, "which": {"_count": 1}, "by": {"_count": 1}, "what": {"_count": 1}, "Montague": {"_count": 1}, "caught": {"_count": 1}, "in": {"_count": 4}, "Warrington": {"_count": 1}, "Johnson": {"_count": 1}, "better": {"_count": 1}, "immediately": {"_count": 1}, "he": {"_count": 1}, "Ginny": {"_count": 1}, "from": {"_count": 1}, "sped": {"_count": 1}}, "hoops": {"_count": 5, "to": {"_count": 2}, "": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "Keeper": {"_count": 7, "Im": {"_count": 1}, "guards": {"_count": 1}, "too": {"_count": 1}, "Ryan": {"_count": 1}, "wasnt": {"_count": 1}, "to": {"_count": 1}, "ahead": {"_count": 1}}, "box": {"_count": 42, "": {"_count": 10}, "of": {"_count": 5}, "Hermione": {"_count": 1}, "its": {"_count": 1}, "and": {"_count": 3}, "lid": {"_count": 1}, "opened": {"_count": 1}, "from": {"_count": 1}, "with": {"_count": 1}, "another": {"_count": 1}, "into": {"_count": 2}, "looking": {"_count": 1}, "which": {"_count": 1}, "came": {"_count": 1}, "to": {"_count": 1}, "they": {"_count": 2}, "we": {"_count": 1}, "aside": {"_count": 1}, "Lavender": {"_count": 1}, "after": {"_count": 1}, "Welcome": {"_count": 1}, "just": {"_count": 1}, "back": {"_count": 1}, "lying": {"_count": 1}, "at": {"_count": 1}}, "Bludgers": {"_count": 16, "do": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "away": {"_count": 2}, "ever": {"_count": 1}, "unless": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "have": {"_count": 1}, "two": {"_count": 1}, "came": {"_count": 1}, "as": {"_count": 1}}, "straps": {"_count": 2, "holding": {"_count": 1}, "of": {"_count": 1}}, "bat": {"_count": 1, "to": {"_count": 1}}, "struggling": {"_count": 7, "Bludger": {"_count": 1}, "book": {"_count": 1}, "rat": {"_count": 2}, "Scabbers": {"_count": 1}, "ball": {"_count": 1}, "pair": {"_count": 1}}, "Beaters": {"_count": 5, "keep": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "were": {"_count": 1}, "bats": {"_count": 1}}, "Seeker": {"_count": 6, "": {"_count": 3}, "who": {"_count": 1}, "on": {"_count": 1}, "caught": {"_count": 1}}, "fourth": {"_count": 27, "and": {"_count": 1}, "ball": {"_count": 1}, "floor": {"_count": 6}, "year": {"_count": 2}, "years": {"_count": 3}, "row": {"_count": 1}, "Triwizard": {"_count": 1}, "night": {"_count": 1}, "line": {"_count": 1}, "was": {"_count": 2}, "time": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "group": {"_count": 1}, "did": {"_count": 1}, "goblet": {"_count": 1}, "Death": {"_count": 1}, "finger": {"_count": 1}}, "Golden": {"_count": 5, "Snitch": {"_count": 5}}, "Seekers": {"_count": 4, "job": {"_count": 1}, "got": {"_count": 1}, "team": {"_count": 2}}, "Chasers": {"_count": 10, "Beaters": {"_count": 1}, "seemed": {"_count": 1}, "were": {"_count": 1}, "so": {"_count": 1}, "moved": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "aimed": {"_count": 1}, "with": {"_count": 1}}, "Snitch": {"_count": 121, "wins": {"_count": 1}, "is": {"_count": 2}, "yet": {"_count": 2}, "": {"_count": 27}, "Wood": {"_count": 1}, "all": {"_count": 1}, "its": {"_count": 2}, "clasped": {"_count": 1}, "being": {"_count": 1}, "at": {"_count": 2}, "has": {"_count": 1}, "earns": {"_count": 1}, "let": {"_count": 2}, "or": {"_count": 1}, "clutched": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 6}, "soon": {"_count": 1}, "avoiding": {"_count": 1}, "quickly": {"_count": 1}, "and": {"_count": 6}, "said": {"_count": 1}, "before": {"_count": 2}, "first": {"_count": 1}, "out": {"_count": 1}, "dart": {"_count": 1}, "go": {"_count": 1}, "for": {"_count": 2}, "listening": {"_count": 1}, "was": {"_count": 5}, "had": {"_count": 3}, "herself": {"_count": 1}, "tried": {"_count": 1}, "with": {"_count": 2}, "only": {"_count": 1}, "but": {"_count": 4}, "until": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 2}, "now": {"_count": 2}, "without": {"_count": 2}, "when": {"_count": 2}, "circling": {"_count": 1}, "he": {"_count": 4}, "horrified": {"_count": 1}, "anywhere": {"_count": 1}, "a": {"_count": 1}, "keeping": {"_count": 1}, "tightly": {"_count": 1}, "fluttering": {"_count": 1}, "from": {"_count": 1}, "sooner": {"_count": 1}, "allowing": {"_count": 1}, "letting": {"_count": 1}, "back": {"_count": 1}, "right": {"_count": 1}, "held": {"_count": 1}, "contains": {"_count": 1}, "slowly": {"_count": 1}, "over": {"_count": 1}, "kissing": {"_count": 1}}, "problem": {"_count": 16, "": {"_count": 4}, "with": {"_count": 1}, "said": {"_count": 3}, "was": {"_count": 1}, "yeah": {"_count": 1}, "your": {"_count": 1}, "is": {"_count": 1}, "what": {"_count": 1}, "that": {"_count": 1}, "would": {"_count": 1}, "of": {"_count": 1}}, "golf": {"_count": 1, "balls": {"_count": 1}}, "basics": {"_count": 3, "": {"_count": 2}, "first": {"_count": 1}}, "delicious": {"_count": 3, "smell": {"_count": 2}, "smells": {"_count": 1}}, "classroom": {"_count": 38, "": {"_count": 12}, "straightening": {"_count": 1}, "with": {"_count": 1}, "except": {"_count": 1}, "more": {"_count": 1}, "to": {"_count": 1}, "door": {"_count": 6}, "illuminating": {"_count": 1}, "flickered": {"_count": 1}, "and": {"_count": 1}, "walking": {"_count": 1}, "yet": {"_count": 1}, "shortened": {"_count": 1}, "a": {"_count": 1}, "into": {"_count": 1}, "for": {"_count": 1}, "behind": {"_count": 1}, "Harry": {"_count": 1}, "windows": {"_count": 1}, "floor": {"_count": 1}, "toward": {"_count": 1}, "on": {"_count": 1}}, "magic": {"_count": 10, "words": {"_count": 2}, "word": {"_count": 1}, "out": {"_count": 1}, "schools": {"_count": 1}, "I": {"_count": 1}, "was": {"_count": 1}, "once": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}}, "feather": {"_count": 3, "they": {"_count": 1}, "matress": {"_count": 1}, "as": {"_count": 1}}, "desktop": {"_count": 6, "": {"_count": 3}, "avoiding": {"_count": 1}, "where": {"_count": 1}, "as": {"_count": 1}}, "\u2018gar": {"_count": 1, "nice": {"_count": 1}}, "sleeves": {"_count": 7, "of": {"_count": 5}, "five": {"_count": 1}, "": {"_count": 1}}, "desk": {"_count": 94, "and": {"_count": 12}, "to": {"_count": 3}, "": {"_count": 30}, "just": {"_count": 1}, "unable": {"_count": 1}, "lifted": {"_count": 1}, "sat": {"_count": 1}, "for": {"_count": 2}, "he": {"_count": 3}, "drawers": {"_count": 1}, "where": {"_count": 3}, "in": {"_count": 4}, "onto": {"_count": 1}, "knocking": {"_count": 1}, "a": {"_count": 1}, "unscrewed": {"_count": 1}, "dipped": {"_count": 1}, "behind": {"_count": 1}, "holding": {"_count": 1}, "however": {"_count": 1}, "between": {"_count": 3}, "busily": {"_count": 1}, "with": {"_count": 2}, "thinking": {"_count": 1}, "on": {"_count": 1}, "beside": {"_count": 2}, "his": {"_count": 2}, "lowering": {"_count": 1}, "again": {"_count": 2}, "placed": {"_count": 1}, "past": {"_count": 1}, "once": {"_count": 1}, "was": {"_count": 1}, "showed": {"_count": 1}, "Harry": {"_count": 1}, "apparently": {"_count": 1}, "before": {"_count": 1}, "from": {"_count": 1}}, "crowded": {"_count": 16, "corridor": {"_count": 1}, "street": {"_count": 3}, "corridors": {"_count": 1}, "mantelpiece": {"_count": 1}, "Gryffindor": {"_count": 1}, "common": {"_count": 1}, "clearing": {"_count": 1}, "entrance": {"_count": 1}, "pub": {"_count": 1}, "shop": {"_count": 1}, "Great": {"_count": 1}, "dance": {"_count": 1}, "pavement": {"_count": 1}, "cottage": {"_count": 1}}, "Halloween": {"_count": 7, "feast": {"_count": 6}, "decorations": {"_count": 1}}, "candles": {"_count": 8, "in": {"_count": 1}, "on": {"_count": 1}, "had": {"_count": 2}, "except": {"_count": 1}, "knelt": {"_count": 1}, "began": {"_count": 1}, "clumsily": {"_count": 1}}, "pumpkins": {"_count": 2, "stutter": {"_count": 1}, "an": {"_count": 1}}, "golden": {"_count": 74, "plates": {"_count": 6}, "moon": {"_count": 1}, "title": {"_count": 1}, "platters": {"_count": 1}, "registration": {"_count": 1}, "goal": {"_count": 1}, "horses": {"_count": 1}, "circle": {"_count": 1}, "steps": {"_count": 1}, "egg": {"_count": 10}, "mist": {"_count": 1}, "thread": {"_count": 5}, "dome": {"_count": 1}, "web": {"_count": 3}, "beam": {"_count": 1}, "gates": {"_count": 5}, "instrument": {"_count": 1}, "grille": {"_count": 1}, "grilles": {"_count": 3}, "statues": {"_count": 1}, "fountain": {"_count": 3}, "wizards": {"_count": 3}, "centaur": {"_count": 1}, "head": {"_count": 1}, "post": {"_count": 1}, "buttons": {"_count": 2}, "locket": {"_count": 1}, "sphere": {"_count": 1}, "balloons": {"_count": 2}, "jacketed": {"_count": 1}, "pillars": {"_count": 1}, "door": {"_count": 1}, "chain": {"_count": 2}, "doors": {"_count": 1}, "ball": {"_count": 1}, "Snitch": {"_count": 1}, "rods": {"_count": 1}, "cup": {"_count": 2}, "metal": {"_count": 1}, "flames": {"_count": 1}}, "dormitories": {"_count": 9, "immediately": {"_count": 1}, "": {"_count": 1}, "after": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "above": {"_count": 1}, "below": {"_count": 1}, "Lunas": {"_count": 1}, "and": {"_count": 1}}, "troll": {"_count": 12, "if": {"_count": 1}, "": {"_count": 2}, "wasnt": {"_count": 1}, "berserk": {"_count": 1}, "twisted": {"_count": 1}, "was": {"_count": 1}, "let": {"_count": 1}, "because": {"_count": 1}, "quite": {"_count": 1}, "got": {"_count": 1}, "in": {"_count": 1}}, "Hufflepuffs": {"_count": 20, "going": {"_count": 1}, "first": {"_count": 1}, "who": {"_count": 1}, "bent": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 2}, "climbing": {"_count": 1}, "are": {"_count": 1}, "felt": {"_count": 1}, "attitude": {"_count": 1}, "to": {"_count": 2}, "in": {"_count": 2}, "enjoying": {"_count": 1}, "into": {"_count": 1}, "looking": {"_count": 1}, "stood": {"_count": 1}}, "kind": {"_count": 19, "of": {"_count": 18}, "Harry": {"_count": 1}}, "shuffling": {"_count": 1, "footfalls": {"_count": 1}}, "key": {"_count": 14, "slam": {"_count": 1}, "fumbling": {"_count": 1}, "to": {"_count": 3}, "with": {"_count": 1}, "dodged": {"_count": 1}, "struggling": {"_count": 1}, "took": {"_count": 1}, "ingredient": {"_count": 1}, "turn": {"_count": 1}, "": {"_count": 1}, "protruding": {"_count": 1}, "point": {"_count": 1}}, "sinks": {"_count": 2, "off": {"_count": 1}, "still": {"_count": 1}}, "yell": {"_count": 1, "and": {"_count": 1}}, "echoes": {"_count": 2, "seemed": {"_count": 1}, "": {"_count": 1}}, "trolls": {"_count": 10, "neck": {"_count": 1}, "nostrils": {"_count": 1}, "hand": {"_count": 1}, "nose": {"_count": 1}, "trousers": {"_count": 1}, "roars": {"_count": 1}, "leg": {"_count": 2}, "rights": {"_count": 1}, "then": {"_count": 1}}, "club": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "crashes": {"_count": 4, "and": {"_count": 4}}, "rear": {"_count": 12, "": {"_count": 5}, "Ron": {"_count": 1}, "of": {"_count": 2}, "guard": {"_count": 1}, "Fred": {"_count": 1}, "plainly": {"_count": 1}, "window": {"_count": 1}}, "feast": {"_count": 30, "in": {"_count": 1}, "he": {"_count": 1}, "Minerva": {"_count": 1}, "": {"_count": 10}, "was": {"_count": 1}, "had": {"_count": 1}, "afterward": {"_count": 1}, "while": {"_count": 1}, "together": {"_count": 1}, "begin": {"_count": 1}, "said": {"_count": 2}, "later": {"_count": 1}, "if": {"_count": 1}, "well": {"_count": 1}, "too": {"_count": 1}, "But": {"_count": 1}, "you": {"_count": 1}, "ought": {"_count": 1}, "doesnt": {"_count": 1}, "Youve": {"_count": 1}}, "upstairs": {"_count": 3, "windows": {"_count": 1}, "landing": {"_count": 1}, "corridor": {"_count": 1}}, "smallest": {"_count": 16, "and": {"_count": 1}, "bottle": {"_count": 1}, "change": {"_count": 1}, "sign": {"_count": 1}, "of": {"_count": 3}, "person": {"_count": 1}, "could": {"_count": 1}, "Muggle": {"_count": 1}, "one": {"_count": 1}, "possible": {"_count": 1}, "investigation": {"_count": 1}, "bedroom": {"_count": 3}}, "Sahara": {"_count": 1, "Desert": {"_count": 1}}, "mountain": {"_count": 9, "troll": {"_count": 1}, "of": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "where": {"_count": 1}, "itself": {"_count": 1}, "by": {"_count": 1}, "for": {"_count": 1}, "movin": {"_count": 1}}, "freezing": {"_count": 4, "courtyard": {"_count": 1}, "water": {"_count": 2}, "air": {"_count": 1}}, "yard": {"_count": 26, "": {"_count": 9}, "scattering": {"_count": 1}, "carrying": {"_count": 1}, "Harry": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 4}, "looked": {"_count": 1}, "a": {"_count": 1}, "while": {"_count": 1}, "toward": {"_count": 2}, "of": {"_count": 1}, "anymore": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "staffroom": {"_count": 22, "and": {"_count": 2}, "": {"_count": 9}, "fire": {"_count": 1}, "said": {"_count": 1}, "door": {"_count": 3}, "talking": {"_count": 1}, "to": {"_count": 1}, "carrying": {"_count": 1}, "leaving": {"_count": 1}, "anymore": {"_count": 1}, "had": {"_count": 1}}, "book": {"_count": 75, "in": {"_count": 2}, "was": {"_count": 4}, "had": {"_count": 1}, "toward": {"_count": 1}, "really": {"_count": 1}, "we": {"_count": 1}, "with": {"_count": 1}, "back": {"_count": 4}, "again": {"_count": 1}, "says": {"_count": 2}, "": {"_count": 16}, "and": {"_count": 6}, "to": {"_count": 3}, "it": {"_count": 1}, "shivered": {"_count": 1}, "picked": {"_count": 1}, "shut": {"_count": 1}, "Magical": {"_count": 1}, "you": {"_count": 1}, "they": {"_count": 2}, "so": {"_count": 1}, "aside": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 2}, "ought": {"_count": 1}, "suspiciously": {"_count": 1}, "the": {"_count": 2}, "sideways": {"_count": 1}, "another": {"_count": 1}, "finished": {"_count": 1}, "that": {"_count": 2}, "but": {"_count": 1}, "from": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}, "which": {"_count": 1}, "because": {"_count": 1}, "hope": {"_count": 1}, "out": {"_count": 1}, "still": {"_count": 1}}, "expression": {"_count": 9, "on": {"_count": 6}, "twisting": {"_count": 1}, "of": {"_count": 2}}, "cheerful": {"_count": 1, "chatter": {"_count": 1}}, "stands": {"_count": 48, "around": {"_count": 1}, "Dean": {"_count": 1}, "": {"_count": 16}, "opposite": {"_count": 1}, "next": {"_count": 1}, "and": {"_count": 4}, "skidded": {"_count": 1}, "where": {"_count": 1}, "to": {"_count": 5}, "which": {"_count": 1}, "could": {"_count": 1}, "the": {"_count": 3}, "erupted": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "rising": {"_count": 1}, "Weasley": {"_count": 1}, "her": {"_count": 1}, "its": {"_count": 1}, "compounded": {"_count": 1}, "began": {"_count": 1}, "behind": {"_count": 1}, "without": {"_count": 1}, "Harry": {"_count": 1}}, "West": {"_count": 10, "Ham": {"_count": 3}, "Tower": {"_count": 3}, "Country": {"_count": 4}}, "sheets": {"_count": 8, "Scabbers": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}, "yesterday": {"_count": 1}, "and": {"_count": 1}}, "paint": {"_count": 1, "flashed": {"_count": 1}}, "locker": {"_count": 13, "room": {"_count": 7}, "rooms": {"_count": 6}}, "fluttering": {"_count": 2, "banner": {"_count": 1}, "fairy": {"_count": 1}}, "commentary": {"_count": 4, "for": {"_count": 1}, "over": {"_count": 1}, "which": {"_count": 1}, "last": {"_count": 1}}, "match": {"_count": 71, "closely": {"_count": 1}, "": {"_count": 25}, "drew": {"_count": 1}, "Harry": {"_count": 2}, "being": {"_count": 1}, "the": {"_count": 1}, "tomorrow": {"_count": 1}, "would": {"_count": 4}, "as": {"_count": 2}, "said": {"_count": 2}, "and": {"_count": 4}, "but": {"_count": 2}, "by": {"_count": 1}, "against": {"_count": 2}, "riding": {"_count": 1}, "hadnt": {"_count": 1}, "He": {"_count": 1}, "looking": {"_count": 1}, "went": {"_count": 1}, "Arthur": {"_count": 1}, "she": {"_count": 1}, "Mr": {"_count": 1}, "doesnt": {"_count": 1}, "dawned": {"_count": 1}, "without": {"_count": 1}, "at": {"_count": 1}, "was": {"_count": 2}, "is": {"_count": 2}, "for": {"_count": 1}, "he": {"_count": 1}, "feeling": {"_count": 1}, "on": {"_count": 1}, "commentary": {"_count": 1}, "Oh": {"_count": 1}}, "speck": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "Bludger": {"_count": 24, "furiously": {"_count": 1}, "back": {"_count": 1}, "a": {"_count": 1}, "changed": {"_count": 1}, "swerved": {"_count": 1}, "whistling": {"_count": 1}, "at": {"_count": 2}, "with": {"_count": 1}, "was": {"_count": 1}, "pelted": {"_count": 1}, "breaking": {"_count": 1}, "on": {"_count": 1}, "behind": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 2}, "and": {"_count": 3}, "trailing": {"_count": 1}, "came": {"_count": 1}, "from": {"_count": 1}, "but": {"_count": 1}}, "wait": {"_count": 3, "a": {"_count": 1}, "had": {"_count": 1}, "for": {"_count": 1}}, "flash": {"_count": 4, "of": {"_count": 4}}, "streak": {"_count": 2, "of": {"_count": 2}}, "confusion": {"_count": 3, "of": {"_count": 2}, "Harry": {"_count": 1}}, "binoculars": {"_count": 2, "": {"_count": 1}, "back": {"_count": 1}}, "stand": {"_count": 1, "where": {"_count": 1}}, "row": {"_count": 17, "behind": {"_count": 3}, "in": {"_count": 2}, "Snape": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 2}, "looked": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "gazing": {"_count": 1}}, "hem": {"_count": 14, "of": {"_count": 13}, "and": {"_count": 1}}, "results": {"_count": 6, "Gryffindor": {"_count": 1}, "of": {"_count": 5}}, "teapot": {"_count": 5, "": {"_count": 2}, "as": {"_count": 1}, "with": {"_count": 1}, "down": {"_count": 1}}, "pub": {"_count": 17, "las": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 4}, "with": {"_count": 1}, "Harry": {"_count": 1}, "toward": {"_count": 2}, "had": {"_count": 1}, "looking": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "appeared": {"_count": 1}, "burst": {"_count": 1}, "door": {"_count": 1}}, "Yes": {"_count": 2, "": {"_count": 1}, "yes": {"_count": 1}}, "stormy": {"_count": 3, "sky": {"_count": 1}, "ceiling": {"_count": 2}}, "drafty": {"_count": 2, "corridors": {"_count": 1}, "room": {"_count": 1}}, "windows": {"_count": 67, "in": {"_count": 2}, "rattle": {"_count": 1}, "washed": {"_count": 1}, "and": {"_count": 8}, "of": {"_count": 6}, "which": {"_count": 2}, "": {"_count": 15}, "as": {"_count": 2}, "were": {"_count": 4}, "to": {"_count": 1}, "flashing": {"_count": 1}, "made": {"_count": 1}, "so": {"_count": 2}, "had": {"_count": 1}, "but": {"_count": 2}, "a": {"_count": 2}, "returning": {"_count": 1}, "with": {"_count": 1}, "became": {"_count": 1}, "Harry": {"_count": 2}, "growing": {"_count": 1}, "was": {"_count": 1}, "curtained": {"_count": 1}, "he": {"_count": 3}, "towered": {"_count": 1}, "on": {"_count": 1}, "boarded": {"_count": 1}, "dark": {"_count": 1}, "nearest": {"_count": 1}}, "classrooms": {"_count": 2, "": {"_count": 1}, "all": {"_count": 1}}, "branches": {"_count": 9, "": {"_count": 3}, "of": {"_count": 3}, "holding": {"_count": 1}, "above": {"_count": 1}, "overhead": {"_count": 1}}, "tree": {"_count": 28, "": {"_count": 5}, "scattering": {"_count": 1}, "was": {"_count": 2}, "roots": {"_count": 2}, "had": {"_count": 1}, "trunk": {"_count": 1}, "and": {"_count": 3}, "froze": {"_count": 1}, "began": {"_count": 1}, "looking": {"_count": 1}, "prodded": {"_count": 1}, "muttering": {"_count": 1}, "apparently": {"_count": 1}, "tangled": {"_count": 1}, "at": {"_count": 1}, "saying": {"_count": 1}, "so": {"_count": 1}, "shaking": {"_count": 1}, "in": {"_count": 1}, "just": {"_count": 1}}, "Christmas": {"_count": 11, "decorations": {"_count": 1}, "holidays": {"_count": 3}, "ones": {"_count": 1}, "and": {"_count": 2}, "presents": {"_count": 2}, "period": {"_count": 1}, "tree": {"_count": 1}}, "trouble": {"_count": 21, "": {"_count": 3}, "is": {"_count": 2}, "was": {"_count": 5}, "to": {"_count": 2}, "at": {"_count": 1}, "of": {"_count": 3}, "this": {"_count": 1}, "I": {"_count": 1}, "with": {"_count": 1}, "stopped": {"_count": 1}, "and": {"_count": 1}}, "sheer": {"_count": 1, "size": {"_count": 1}}, "Restricted": {"_count": 6, "Section": {"_count": 6}}, "restricted": {"_count": 2, "books": {"_count": 1}, "section": {"_count": 1}}, "books": {"_count": 23, "containing": {"_count": 1}, "as": {"_count": 1}, "shrieks": {"_count": 1}, "now": {"_count": 1}, "into": {"_count": 1}, "the": {"_count": 1}, "Mum": {"_count": 1}, "grappled": {"_count": 1}, "apart": {"_count": 1}, "she": {"_count": 3}, "back": {"_count": 1}, "spilling": {"_count": 1}, "to": {"_count": 1}, "about": {"_count": 1}, "he": {"_count": 2}, "leaping": {"_count": 1}, "or": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "librarian": {"_count": 4, "brandished": {"_count": 1}, "was": {"_count": 1}, "prowled": {"_count": 1}, "Madam": {"_count": 1}}, "good": {"_count": 16, "armchairs": {"_count": 2}, "of": {"_count": 2}, "it": {"_count": 2}, "ones": {"_count": 1}, "news": {"_count": 1}, "boy": {"_count": 1}, "too": {"_count": 1}, "for": {"_count": 1}, "die": {"_count": 1}, "weather": {"_count": 1}, "times": {"_count": 1}, "Weasleys": {"_count": 1}, "Death": {"_count": 1}}, "hour": {"_count": 8, "eating": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "apparently": {"_count": 1}, "since": {"_count": 1}, "allotted": {"_count": 1}}, "figures": {"_count": 7, "were": {"_count": 2}, "pwalk": {"_count": 1}, "that": {"_count": 1}, "around": {"_count": 1}, "on": {"_count": 1}, "blossomed": {"_count": 1}}, "fun": {"_count": 9, "but": {"_count": 2}, "was": {"_count": 1}, "doesnt": {"_count": 1}, "out": {"_count": 1}, "without": {"_count": 1}, "of": {"_count": 2}, "Harry": {"_count": 1}}, "morning": {"_count": 61, "however": {"_count": 1}, "": {"_count": 21}, "by": {"_count": 2}, "Mrs": {"_count": 1}, "when": {"_count": 2}, "to": {"_count": 1}, "especially": {"_count": 1}, "but": {"_count": 1}, "mail": {"_count": 1}, "of": {"_count": 8}, "wasted": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 3}, "Harry": {"_count": 1}, "gone": {"_count": 1}, "in": {"_count": 1}, "What": {"_count": 1}, "came": {"_count": 1}, "post": {"_count": 1}, "off": {"_count": 1}, "sleeping": {"_count": 1}, "with": {"_count": 1}, "after": {"_count": 2}, "edition": {"_count": 1}, "before": {"_count": 1}, "for": {"_count": 1}, "following": {"_count": 1}, "completely": {"_count": 1}, "drew": {"_count": 1}}, "fifty": {"_count": 2, "pence": {"_count": 1}, "or": {"_count": 1}}, "fudge": {"_count": 2, "which": {"_count": 1}, "and": {"_count": 1}}, "shining": {"_count": 10, "silvery": {"_count": 1}, "beans": {"_count": 1}, "purple": {"_count": 1}, "silver": {"_count": 1}, "fingers": {"_count": 1}, "cut": {"_count": 1}, "marble": {"_count": 1}, "skull": {"_count": 1}, "mahogany": {"_count": 1}, "sword": {"_count": 1}}, "touch": {"_count": 1, "like": {"_count": 1}}, "cloak": {"_count": 97, "around": {"_count": 3}, "over": {"_count": 4}, "and": {"_count": 9}, "": {"_count": 18}, "quickly": {"_count": 1}, "out": {"_count": 2}, "didnt": {"_count": 1}, "too": {"_count": 1}, "from": {"_count": 1}, "back": {"_count": 4}, "work": {"_count": 1}, "glad": {"_count": 1}, "Ron": {"_count": 2}, "on": {"_count": 2}, "behind": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "only": {"_count": 1}, "throwing": {"_count": 1}, "to": {"_count": 2}, "sensed": {"_count": 1}, "for": {"_count": 1}, "slid": {"_count": 1}, "up": {"_count": 1}, "tucked": {"_count": 2}, "where": {"_count": 1}, "hidden": {"_count": 1}, "then": {"_count": 1}, "they": {"_count": 2}, "Hermione": {"_count": 1}, "aside": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "down": {"_count": 1}, "was": {"_count": 2}, "crept": {"_count": 1}, "tonight": {"_count": 1}, "the": {"_count": 1}, "now": {"_count": 1}, "had": {"_count": 2}, "off": {"_count": 2}, "as": {"_count": 1}, "shoved": {"_count": 1}, "with": {"_count": 2}, "flapped": {"_count": 1}, "nowadays": {"_count": 1}, "flutter": {"_count": 1}, "his": {"_count": 1}, "Draco": {"_count": 1}, "holding": {"_count": 1}, "saw": {"_count": 1}, "making": {"_count": 1}, "pointed": {"_count": 1}, "she": {"_count": 1}}, "mirror": {"_count": 60, "": {"_count": 17}, "wanting": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 2}, "now": {"_count": 1}, "and": {"_count": 8}, "room": {"_count": 1}, "he": {"_count": 2}, "as": {"_count": 1}, "to": {"_count": 2}, "I": {"_count": 1}, "the": {"_count": 1}, "worked": {"_count": 1}, "over": {"_count": 4}, "on": {"_count": 3}, "for": {"_count": 1}, "behind": {"_count": 2}, "raised": {"_count": 1}, "even": {"_count": 1}, "clear": {"_count": 1}, "was": {"_count": 1}, "back": {"_count": 1}, "fragment": {"_count": 5}, "Harry": {"_count": 1}}, "sweater": {"_count": 3, "over": {"_count": 1}, "Mrs": {"_count": 1}, "Hermione": {"_count": 1}}, "feeble": {"_count": 5, "Muggle": {"_count": 1}, "old": {"_count": 1}, "light": {"_count": 2}, "spell": {"_count": 1}}, "inside": {"_count": 29, "exploded": {"_count": 1}, "of": {"_count": 19}, "theres": {"_count": 1}, "": {"_count": 3}, "pockets": {"_count": 1}, "pocket": {"_count": 2}, "wasnt": {"_count": 1}, "pages": {"_count": 1}}, "turkey": {"_count": 1, "": {"_count": 1}}, "crackers": {"_count": 1, "including": {"_count": 1}}, "Invisibility": {"_count": 131, "Cloak": {"_count": 129}, "Booster": {"_count": 1}, "section": {"_count": 1}}, "curtains": {"_count": 40, "of": {"_count": 3}, "were": {"_count": 5}, "its": {"_count": 1}, "around": {"_count": 3}, "at": {"_count": 4}, "": {"_count": 4}, "from": {"_count": 1}, "to": {"_count": 1}, "shut": {"_count": 1}, "and": {"_count": 2}, "closed": {"_count": 1}, "over": {"_count": 2}, "took": {"_count": 1}, "drawn": {"_count": 1}, "but": {"_count": 1}, "swept": {"_count": 1}, "in": {"_count": 1}, "being": {"_count": 1}, "closing": {"_count": 1}, "swung": {"_count": 1}, "hiding": {"_count": 1}, "swished": {"_count": 1}, "he": {"_count": 1}, "tight": {"_count": 1}}, "material": {"_count": 3, "flow": {"_count": 1}, "shiny": {"_count": 1}, "were": {"_count": 1}}, "creeps": {"_count": 1, "": {"_count": 1}}, "rope": {"_count": 11, "that": {"_count": 1}, "tightly": {"_count": 1}, "but": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 2}, "another": {"_count": 1}, "too": {"_count": 1}, "trying": {"_count": 1}, "and": {"_count": 1}, "round": {"_count": 1}}, "titles": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "lamp": {"_count": 12, "down": {"_count": 1}, "on": {"_count": 2}, "beside": {"_count": 1}, "in": {"_count": 2}, "as": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}, "squealing": {"_count": 1}, "flew": {"_count": 1}, "bobbing": {"_count": 1}}, "shriek": {"_count": 1, "went": {"_count": 1}}, "shrieking": {"_count": 5, "book": {"_count": 1}, "cry": {"_count": 1}, "spitting": {"_count": 1}, "goblins": {"_count": 1}, "and": {"_count": 1}}, "shelf": {"_count": 13, "he": {"_count": 1}, "and": {"_count": 1}, "come": {"_count": 1}, "of": {"_count": 2}, "": {"_count": 3}, "right": {"_count": 1}, "a": {"_count": 1}, "behind": {"_count": 1}, "over": {"_count": 1}, "Thicknesse": {"_count": 1}}, "kitchens": {"_count": 20, "he": {"_count": 1}, "": {"_count": 7}, "to": {"_count": 1}, "earlier": {"_count": 1}, "Hermione": {"_count": 1}, "by": {"_count": 1}, "Fred": {"_count": 1}, "behind": {"_count": 1}, "well": {"_count": 1}, "sir": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "was": {"_count": 1}}, "blood": {"_count": 21, "drain": {"_count": 1}, "seemed": {"_count": 1}, "touches": {"_count": 1}, "of": {"_count": 3}, "poured": {"_count": 1}, "rushed": {"_count": 2}, "pounding": {"_count": 1}, "traitors": {"_count": 2}, "surge": {"_count": 1}, "traitor": {"_count": 1}, "from": {"_count": 2}, "off": {"_count": 1}, "surging": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 1}, "thundering": {"_count": 1}}, "faces": {"_count": 7, "of": {"_count": 3}, "in": {"_count": 1}, "he": {"_count": 1}, "upturned": {"_count": 1}, "flick": {"_count": 1}}, "suit": {"_count": 5, "of": {"_count": 4}, "": {"_count": 1}}, "badge": {"_count": 7, "like": {"_count": 1}, "and": {"_count": 1}, "stared": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "luminous": {"_count": 3, "eyes": {"_count": 1}, "alarm": {"_count": 1}, "hands": {"_count": 1}}, "desks": {"_count": 12, "by": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 2}, "with": {"_count": 1}, "had": {"_count": 1}, "a": {"_count": 1}, "heading": {"_count": 1}, "said": {"_count": 1}}, "delights": {"_count": 1, "of": {"_count": 1}}, "Mirror": {"_count": 7, "of": {"_count": 7}}, "deepest": {"_count": 9, "most": {"_count": 1}, "of": {"_count": 1}, "layer": {"_count": 1}, "level": {"_count": 1}, "passageways": {"_count": 1}, "vaults": {"_count": 1}, "secrets": {"_count": 1}, "mysteries": {"_count": 1}, "laws": {"_count": 1}}, "endless": {"_count": 2, "rain": {"_count": 1}, "Quidditch": {"_count": 1}}, "snow": {"_count": 26, "couldnt": {"_count": 1}, "that": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 6}, "was": {"_count": 2}, "all": {"_count": 1}, "swirling": {"_count": 1}, "by": {"_count": 1}, "leading": {"_count": 1}, "toward": {"_count": 2}, "now": {"_count": 1}, "glistening": {"_count": 1}, "lay": {"_count": 1}, "carving": {"_count": 1}, "behind": {"_count": 1}, "with": {"_count": 1}, "past": {"_count": 1}, "and": {"_count": 1}, "wand": {"_count": 1}}, "LegLocker": {"_count": 2, "Curse": {"_count": 2}}, "countercurse": {"_count": 2, "": {"_count": 2}}, "pocket": {"_count": 14, "of": {"_count": 13}, "": {"_count": 1}}, "frog": {"_count": 3, "": {"_count": 1}, "guts": {"_count": 1}, "gave": {"_count": 1}}, "marks": {"_count": 10, "for": {"_count": 1}, "from": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 3}, "on": {"_count": 1}, "and": {"_count": 1}}, "pages": {"_count": 16, "muttering": {"_count": 1}, "as": {"_count": 1}, "searching": {"_count": 1}, "of": {"_count": 7}, "devoted": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "looking": {"_count": 1}, "around": {"_count": 1}}, "Sorcerers": {"_count": 18, "Stone": {"_count": 18}}, "effect": {"_count": 19, "shed": {"_count": 1}, "was": {"_count": 4}, "on": {"_count": 1}, "they": {"_count": 1}, "Ron": {"_count": 1}, "of": {"_count": 6}, "": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "slightly": {"_count": 1}, "she": {"_count": 1}}, "Elixir": {"_count": 6, "of": {"_count": 4}, "and": {"_count": 1}, "intolerable": {"_count": 1}}, "drinker": {"_count": 6, "immortal": {"_count": 1}, "back": {"_count": 1}, "smoking": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}, "is": {"_count": 1}}, "centuries": {"_count": 5, "but": {"_count": 1}, "to": {"_count": 1}, "usually": {"_count": 1}, "under": {"_count": 1}, "he": {"_count": 1}}, "noted": {"_count": 2, "alchemist": {"_count": 1}, "historian": {"_count": 1}}, "Stone": {"_count": 42, "moved": {"_count": 1}, "was": {"_count": 3}, "apart": {"_count": 1}, "": {"_count": 10}, "hes": {"_count": 1}, "it": {"_count": 2}, "or": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "first": {"_count": 1}, "Voldemorts": {"_count": 1}, "well": {"_count": 1}, "without": {"_count": 1}, "Quirrell": {"_count": 1}, "from": {"_count": 2}, "inside": {"_count": 1}, "before": {"_count": 1}, "back": {"_count": 1}, "unless": {"_count": 1}, "I": {"_count": 1}, "much": {"_count": 1}, "boy": {"_count": 1}, "out": {"_count": 1}, "find": {"_count": 1}, "and": {"_count": 1}, "its": {"_count": 1}, "though": {"_count": 1}}, "coming": {"_count": 11, "match": {"_count": 2}, "year": {"_count": 3}, "Quidditch": {"_count": 1}, "months": {"_count": 1}, "month": {"_count": 3}, "ball": {"_count": 1}}, "smiles": {"_count": 2, "off": {"_count": 1}, "from": {"_count": 1}}, "horrible": {"_count": 14, "feeling": {"_count": 2}, "sensation": {"_count": 2}, "skrewts": {"_count": 1}, "hearty": {"_count": 1}, "horses": {"_count": 1}, "thought": {"_count": 1}, "impression": {"_count": 1}, "painted": {"_count": 1}, "kittens": {"_count": 1}, "idea": {"_count": 1}, "partlife": {"_count": 1}, "fact": {"_count": 1}}, "teams": {"_count": 5, "marched": {"_count": 1}, "plates": {"_count": 1}, "faced": {"_count": 1}, "zoomed": {"_count": 1}, "this": {"_count": 1}}, "breaking": {"_count": 2, "point": {"_count": 2}}, "scuffles": {"_count": 1, "and": {"_count": 1}}, "whirl": {"_count": 3, "of": {"_count": 3}}, "dive": {"_count": 6, "his": {"_count": 1}, "very": {"_count": 1}, "and": {"_count": 1}, "just": {"_count": 2}, "untidily": {"_count": 1}}, "broomshed": {"_count": 1, "": {"_count": 1}}, "damp": {"_count": 10, "grass": {"_count": 1}, "So": {"_count": 1}, "ground": {"_count": 1}, "floor": {"_count": 2}, "lane": {"_count": 1}, "courtyard": {"_count": 1}, "hem": {"_count": 1}, "grounds": {"_count": 1}, "clothes": {"_count": 1}}, "shed": {"_count": 3, "": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}}, "setting": {"_count": 5, "sun": {"_count": 5}}, "leaves": {"_count": 9, "": {"_count": 4}, "below": {"_count": 1}, "on": {"_count": 2}, "of": {"_count": 1}, "waved": {"_count": 1}}, "clearing": {"_count": 25, "": {"_count": 10}, "came": {"_count": 1}, "staring": {"_count": 1}, "quivered": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 3}, "from": {"_count": 1}, "looked": {"_count": 2}, "where": {"_count": 1}, "Umbridge": {"_count": 1}, "so": {"_count": 1}, "while": {"_count": 1}, "echoed": {"_count": 1}}, "Stones": {"_count": 4, "only": {"_count": 1}, "safe": {"_count": 1}, "gone": {"_count": 2}}, "weeks": {"_count": 3, "that": {"_count": 1}, "Potions": {"_count": 1}, "crept": {"_count": 1}}, "thirdfloor": {"_count": 5, "corridor": {"_count": 5}}, "exams": {"_count": 17, "are": {"_count": 1}, "werent": {"_count": 1}, "were": {"_count": 2}, "which": {"_count": 1}, "": {"_count": 5}, "had": {"_count": 1}, "that": {"_count": 1}, "meant": {"_count": 1}, "is": {"_count": 1}, "drew": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "Easter": {"_count": 8, "holidays": {"_count": 7}, "break": {"_count": 1}}, "Warlocks": {"_count": 1, "Convention": {"_count": 1}}, "burns": {"_count": 2, "Charlies": {"_count": 1}, "covering": {"_count": 1}}, "gamekeepers": {"_count": 2, "hut": {"_count": 1}, "cabin": {"_count": 1}}, "grate": {"_count": 12, "": {"_count": 6}, "and": {"_count": 2}, "causing": {"_count": 1}, "turned": {"_count": 1}, "he": {"_count": 1}, "beside": {"_count": 1}}, "bush": {"_count": 9, "": {"_count": 1}, "and": {"_count": 3}, "at": {"_count": 1}, "next": {"_count": 1}, "Mrs": {"_count": 1}, "to": {"_count": 1}, "behind": {"_count": 1}}, "guarding": {"_count": 1, "really": {"_count": 1}}, "kettle": {"_count": 17, "was": {"_count": 1}, "on": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 2}, "at": {"_count": 1}, "Dudley": {"_count": 1}, "and": {"_count": 2}, "back": {"_count": 1}, "which": {"_count": 1}, "trembled": {"_count": 1}, "pulling": {"_count": 1}, "clattered": {"_count": 1}}, "egg": {"_count": 38, "": {"_count": 6}, "in": {"_count": 6}, "split": {"_count": 1}, "but": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 5}, "as": {"_count": 2}, "over": {"_count": 1}, "with": {"_count": 1}, "out": {"_count": 1}, "shook": {"_count": 1}, "questions": {"_count": 1}, "across": {"_count": 1}, "heavy": {"_count": 1}, "wailing": {"_count": 1}, "at": {"_count": 1}, "which": {"_count": 1}, "beneath": {"_count": 1}, "from": {"_count": 1}, "fell": {"_count": 1}, "I": {"_count": 1}, "for": {"_count": 1}, "were": {"_count": 1}}, "extra": {"_count": 4, "homework": {"_count": 1}, "work": {"_count": 1}, "time": {"_count": 1}, "practice": {"_count": 1}}, "bell": {"_count": 42, "sounded": {"_count": 2}, "rang": {"_count": 20}, "that": {"_count": 1}, "to": {"_count": 1}, "had": {"_count": 1}, "which": {"_count": 1}, "finally": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "went": {"_count": 1}, "echoed": {"_count": 1}, "jar": {"_count": 7}, "over": {"_count": 1}, "tinkling": {"_count": 1}, "tinkled": {"_count": 1}, "leaving": {"_count": 1}}, "stubs": {"_count": 3, "of": {"_count": 3}}, "dragons": {"_count": 39, "head": {"_count": 1}, "said": {"_count": 1}, "scaly": {"_count": 1}, "": {"_count": 6}, "enclosure": {"_count": 3}, "for": {"_count": 1}, "were": {"_count": 3}, "do": {"_count": 2}, "and": {"_count": 3}, "too": {"_count": 1}, "himself": {"_count": 1}, "have": {"_count": 1}, "from": {"_count": 1}, "front": {"_count": 1}, "beforehand": {"_count": 1}, "roar": {"_count": 1}, "waited": {"_count": 1}, "Cedric": {"_count": 1}, "soared": {"_count": 1}, "roars": {"_count": 1}, "thrashing": {"_count": 1}, "fire": {"_count": 1}, "brute": {"_count": 1}, "wings": {"_count": 1}, "back": {"_count": 1}, "wide": {"_count": 1}, "true": {"_count": 1}}, "color": {"_count": 16, "suddenly": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 8}, "rising": {"_count": 2}, "coming": {"_count": 1}, "deepening": {"_count": 1}, "high": {"_count": 1}, "in": {"_count": 1}}, "dragon": {"_count": 38, "": {"_count": 5}, "was": {"_count": 3}, "with": {"_count": 1}, "egg": {"_count": 1}, "keepers": {"_count": 2}, "nearest": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 2}, "knew": {"_count": 1}, "go": {"_count": 1}, "changed": {"_count": 1}, "on": {"_count": 1}, "steak": {"_count": 4}, "population": {"_count": 1}, "roar": {"_count": 1}, "became": {"_count": 1}, "opened": {"_count": 1}, "clawed": {"_count": 1}, "enlarge": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}, "headed": {"_count": 1}, "flew": {"_count": 3}, "and": {"_count": 2}}, "smile": {"_count": 10, "lurking": {"_count": 1}, "from": {"_count": 2}, "fading": {"_count": 2}, "reappeared": {"_count": 1}, "sliding": {"_count": 1}, "uncertainly": {"_count": 1}, "vanished": {"_count": 1}, "Hermione": {"_count": 1}}, "Norwegian": {"_count": 1, "Ridgeback": {"_count": 1}}, "Ridgeback": {"_count": 1, "up": {"_count": 1}}, "tallest": {"_count": 7, "tower": {"_count": 5}, "Astronomy": {"_count": 1}, "of": {"_count": 1}}, "cloaks": {"_count": 2, "big": {"_count": 1}, "they": {"_count": 1}}, "plan": {"_count": 37, "now": {"_count": 1}, "didnt": {"_count": 1}, "worked": {"_count": 1}, "": {"_count": 8}, "cannot": {"_count": 1}, "be": {"_count": 1}, "in": {"_count": 1}, "Wormtail": {"_count": 1}, "growled": {"_count": 1}, "of": {"_count": 1}, "off": {"_count": 1}, "anyway": {"_count": 1}, "and": {"_count": 1}, "not": {"_count": 1}, "yet": {"_count": 1}, "failed": {"_count": 1}, "to": {"_count": 2}, "he": {"_count": 2}, "being": {"_count": 1}, "with": {"_count": 1}, "immediately": {"_count": 1}, "given": {"_count": 1}, "hed": {"_count": 1}, "works": {"_count": 1}, "Harry": {"_count": 1}, "Lord": {"_count": 1}, "said": {"_count": 1}, "is": {"_count": 1}}, "boarhound": {"_count": 7, "sitting": {"_count": 1}, "barked": {"_count": 2}, "cower": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 1}, "came": {"_count": 1}}, "leg": {"_count": 7, "": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 4}, "by": {"_count": 1}}, "journey": {"_count": 17, "said": {"_count": 1}, "home": {"_count": 3}, "": {"_count": 4}, "back": {"_count": 3}, "passed": {"_count": 1}, "along": {"_count": 1}, "playing": {"_count": 1}, "to": {"_count": 1}, "left": {"_count": 1}, "alone": {"_count": 1}}, "teddy": {"_count": 1, "was": {"_count": 1}}, "ear": {"_count": 6, "": {"_count": 4}, "by": {"_count": 1}, "toward": {"_count": 1}}, "easiest": {"_count": 2, "thing": {"_count": 1}, "exam": {"_count": 1}}, "harness": {"_count": 2, "theyd": {"_count": 1}, "holding": {"_count": 1}}, "dead": {"_count": 43, "of": {"_count": 8}, "rooster": {"_count": 1}, "basilisk": {"_count": 2}, "we": {"_count": 1}, "spider": {"_count": 2}, "said": {"_count": 1}, "frog": {"_count": 1}, "Harry": {"_count": 2}, "body": {"_count": 1}, "He": {"_count": 1}, "cow": {"_count": 2}, "weight": {"_count": 1}, "snake": {"_count": 2}, "": {"_count": 5}, "black": {"_count": 1}, "rising": {"_count": 1}, "headmasters": {"_count": 1}, "leaves": {"_count": 1}, "and": {"_count": 3}, "have": {"_count": 1}, "were": {"_count": 1}, "elf": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}, "center": {"_count": 1}}, "Astronomy": {"_count": 15, "Tower": {"_count": 11}, "department": {"_count": 2}, "tower": {"_count": 1}, "teacher": {"_count": 1}}, "dawn": {"_count": 3, "": {"_count": 1}, "light": {"_count": 1}, "and": {"_count": 1}}, "famous": {"_count": 11, "Harry": {"_count": 5}, "Hogwarts": {"_count": 1}, "Potter": {"_count": 1}, "International": {"_count": 1}, "Auror": {"_count": 1}, "the": {"_count": 1}, "founder": {"_count": 1}}, "damage": {"_count": 12, "but": {"_count": 1}, "to": {"_count": 2}, "was": {"_count": 3}, "its": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}}, "studying": {"_count": 1, "he": {"_count": 1}}, "ingredients": {"_count": 8, "in": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 2}, "you": {"_count": 1}, "even": {"_count": 1}}, "dates": {"_count": 8, "of": {"_count": 4}, "down": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "on": {"_count": 1}}, "better": {"_count": 31, "hell": {"_count": 1}, "": {"_count": 6}, "snarled": {"_count": 1}, "to": {"_count": 8}, "of": {"_count": 4}, "he": {"_count": 1}, "flier": {"_count": 1}, "said": {"_count": 3}, "while": {"_count": 1}, "really": {"_count": 1}, "for": {"_count": 1}, "it": {"_count": 1}, "but": {"_count": 1}, "man": {"_count": 1}}, "furor": {"_count": 1, "over": {"_count": 1}}, "chains": {"_count": 13, "still": {"_count": 1}, "and": {"_count": 2}, "pulled": {"_count": 1}, "connected": {"_count": 1}, "on": {"_count": 2}, "that": {"_count": 1}, "clinked": {"_count": 1}, "snaked": {"_count": 1}, "with": {"_count": 1}, "binding": {"_count": 1}, "were": {"_count": 1}}, "lighted": {"_count": 1, "windows": {"_count": 1}}, "thick": {"_count": 23, "black": {"_count": 3}, "tree": {"_count": 1}, "swirling": {"_count": 2}, "rain": {"_count": 1}, "dust": {"_count": 1}, "curtain": {"_count": 1}, "of": {"_count": 3}, "brambles": {"_count": 1}, "gray": {"_count": 1}, "glass": {"_count": 1}, "skull": {"_count": 1}, "canopy": {"_count": 1}, "muscled": {"_count": 1}, "liquid": {"_count": 1}, "snow": {"_count": 1}, "misty": {"_count": 1}, "mudlike": {"_count": 1}, "cuffs": {"_count": 1}}, "unicorn": {"_count": 9, "finds": {"_count": 1}, "well": {"_count": 1}, "all": {"_count": 1}, "lowered": {"_count": 1}, "": {"_count": 2}, "leaving": {"_count": 1}, "now": {"_count": 1}, "whose": {"_count": 1}}, "fear": {"_count": 8, "out": {"_count": 1}, "drain": {"_count": 1}, "of": {"_count": 2}, "in": {"_count": 1}, "fluttering": {"_count": 1}, "cloud": {"_count": 1}, "that": {"_count": 1}}, "path": {"_count": 44, "": {"_count": 8}, "behind": {"_count": 1}, "when": {"_count": 1}, "Ill": {"_count": 1}, "became": {"_count": 1}, "Hagrid": {"_count": 1}, "for": {"_count": 1}, "where": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 1}, "again": {"_count": 1}, "was": {"_count": 1}, "panting": {"_count": 1}, "they": {"_count": 2}, "into": {"_count": 1}, "ahead": {"_count": 1}, "and": {"_count": 8}, "running": {"_count": 1}, "blocking": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "that": {"_count": 3}, "of": {"_count": 1}, "down": {"_count": 1}, "leading": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}}, "trail": {"_count": 3, "in": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 1}}, "earth": {"_count": 17, "path": {"_count": 1}, "": {"_count": 5}, "but": {"_count": 2}, "in": {"_count": 1}, "completely": {"_count": 1}, "around": {"_count": 1}, "to": {"_count": 1}, "leaving": {"_count": 1}, "said": {"_count": 1}, "like": {"_count": 1}, "even": {"_count": 1}, "quake": {"_count": 1}}, "fallen": {"_count": 8, "leaves": {"_count": 2}, "books": {"_count": 1}, "statue": {"_count": 1}, "robes": {"_count": 1}, "bodies": {"_count": 1}, "goblets": {"_count": 1}, "": {"_count": 1}}, "unicorns": {"_count": 3, "": {"_count": 2}, "never": {"_count": 1}}, "winding": {"_count": 7, "path": {"_count": 1}, "cobbled": {"_count": 1}, "stair": {"_count": 2}, "paths": {"_count": 1}, "lane": {"_count": 1}, "dangerous": {"_count": 1}}, "centaurs": {"_count": 23, "hand": {"_count": 1}, "are": {"_count": 1}, "arrow": {"_count": 2}, "when": {"_count": 1}, "slipped": {"_count": 1}, "dont": {"_count": 1}, "in": {"_count": 1}, "bellowed": {"_count": 1}, "torso": {"_count": 1}, "leapt": {"_count": 1}, "Harry": {"_count": 1}, "were": {"_count": 1}, "arms": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 1}, "scattered": {"_count": 1}, "as": {"_count": 2}, "arm": {"_count": 1}, "legs": {"_count": 1}, "": {"_count": 1}, "tribute": {"_count": 1}}, "innocent": {"_count": 6, "are": {"_count": 1}, "": {"_count": 3}, "believe": {"_count": 1}, "of": {"_count": 1}}, "trees": {"_count": 97, "behind": {"_count": 3}, "blocked": {"_count": 1}, "were": {"_count": 3}, "their": {"_count": 1}, "leaving": {"_count": 1}, "in": {"_count": 5}, "he": {"_count": 2}, "": {"_count": 22}, "we": {"_count": 1}, "had": {"_count": 1}, "thinned": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 10}, "ahead": {"_count": 1}, "too": {"_count": 1}, "an": {"_count": 1}, "blows": {"_count": 1}, "Harry": {"_count": 1}, "keeping": {"_count": 1}, "until": {"_count": 1}, "could": {"_count": 1}, "lighting": {"_count": 1}, "children": {"_count": 1}, "around": {"_count": 1}, "that": {"_count": 2}, "on": {"_count": 3}, "they": {"_count": 1}, "beneath": {"_count": 1}, "sir": {"_count": 1}, "through": {"_count": 1}, "like": {"_count": 2}, "near": {"_count": 1}, "where": {"_count": 1}, "of": {"_count": 1}, "stood": {"_count": 1}, "one": {"_count": 1}, "grew": {"_count": 1}, "roots": {"_count": 2}, "began": {"_count": 1}, "as": {"_count": 2}, "moving": {"_count": 1}, "by": {"_count": 1}, "now": {"_count": 2}, "supporting": {"_count": 1}, "growing": {"_count": 1}, "slid": {"_count": 1}, "would": {"_count": 1}, "all": {"_count": 1}, "for": {"_count": 1}, "made": {"_count": 1}}, "dense": {"_count": 7, "dark": {"_count": 1}, "lower": {"_count": 1}, "shadow": {"_count": 1}, "shadows": {"_count": 1}, "tree": {"_count": 1}, "gray": {"_count": 1}, "black": {"_count": 1}}, "nasty": {"_count": 4, "feeling": {"_count": 2}, "impulse": {"_count": 1}, "silence": {"_count": 1}}, "undergrowth": {"_count": 5, "and": {"_count": 1}, "Fang": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "rustling": {"_count": 6, "of": {"_count": 6}}, "sparks": {"_count": 4, "": {"_count": 1}, "flying": {"_count": 1}, "dancing": {"_count": 1}, "emanating": {"_count": 1}}, "racket": {"_count": 5, "you": {"_count": 1}, "the": {"_count": 1}, "Hedwig": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "heart": {"_count": 17, "of": {"_count": 11}, "he": {"_count": 2}, "should": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 1}}, "roots": {"_count": 15, "of": {"_count": 3}, "then": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 1}, "Crookshanks": {"_count": 1}, "": {"_count": 3}, "all": {"_count": 1}, "were": {"_count": 1}, "his": {"_count": 1}, "however": {"_count": 1}, "and": {"_count": 1}}, "tangled": {"_count": 3, "branches": {"_count": 1}, "robes": {"_count": 1}, "mess": {"_count": 1}}, "wound": {"_count": 5, "in": {"_count": 1}, "": {"_count": 1}, "except": {"_count": 1}, "left": {"_count": 1}, "and": {"_count": 1}}, "figure": {"_count": 15, "": {"_count": 1}, "had": {"_count": 1}, "of": {"_count": 6}, "drawing": {"_count": 1}, "shouted": {"_count": 1}, "groaned": {"_count": 1}, "ahead": {"_count": 1}, "exploded": {"_count": 1}, "was": {"_count": 1}, "hit": {"_count": 1}}, "centaur": {"_count": 10, "pulling": {"_count": 1}, "who": {"_count": 2}, "inclining": {"_count": 1}, "Bane": {"_count": 1}, "": {"_count": 1}, "rustled": {"_count": 1}, "holding": {"_count": 1}, "knows": {"_count": 1}, "Firenze": {"_count": 1}}, "Potter": {"_count": 6, "boy": {"_count": 2}, "boys": {"_count": 2}, "kid": {"_count": 1}, "brat": {"_count": 1}}, "odd": {"_count": 9, "question": {"_count": 1}, "stuff": {"_count": 1}, "greenish": {"_count": 1}, "echoing": {"_count": 1}, "elf": {"_count": 1}, "thing": {"_count": 1}, "formation": {"_count": 1}, "device": {"_count": 1}, "sensation": {"_count": 1}}, "horn": {"_count": 5, "and": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "as": {"_count": 1}, "Daddy": {"_count": 1}}, "stars": {"_count": 19, "as": {"_count": 1}, "overhead": {"_count": 2}, "shone": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 5}, "above": {"_count": 1}, "the": {"_count": 1}, "progress": {"_count": 1}, "and": {"_count": 1}, "stared": {"_count": 1}, "they": {"_count": 1}, "still": {"_count": 1}, "which": {"_count": 1}, "were": {"_count": 1}}, "nights": {"_count": 5, "surprises": {"_count": 1}, "darker": {"_count": 1}, "events": {"_count": 2}, "first": {"_count": 1}}, "snuffbox": {"_count": 2, "was": {"_count": 1}, "of": {"_count": 1}}, "stabbing": {"_count": 2, "pains": {"_count": 2}}, "crowds": {"_count": 10, "flocking": {"_count": 1}, "now": {"_count": 1}, "descending": {"_count": 1}, "faces": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "babble": {"_count": 1}, "behind": {"_count": 1}, "below": {"_count": 1}, "attention": {"_count": 1}}, "sunny": {"_count": 6, "grounds": {"_count": 3}, "window": {"_count": 1}, "common": {"_count": 1}, "backyard": {"_count": 1}}, "1637": {"_count": 1, "Werewolf": {"_count": 1}}, "uprising": {"_count": 1, "of": {"_count": 1}}, "Eager": {"_count": 1, "": {"_count": 1}}, "tentacles": {"_count": 3, "of": {"_count": 2}, "began": {"_count": 1}}, "warm": {"_count": 9, "shallows": {"_count": 1}, "air": {"_count": 1}, "living": {"_count": 1}, "autumn": {"_count": 1}, "gush": {"_count": 1}, "glass": {"_count": 1}, "common": {"_count": 1}, "tent": {"_count": 1}, "": {"_count": 1}}, "unsettled": {"_count": 1, "feeling": {"_count": 1}}, "bright": {"_count": 19, "blue": {"_count": 3}, "sunshine": {"_count": 1}, "compartment": {"_count": 1}, "light": {"_count": 3}, "daylight": {"_count": 1}, "chilly": {"_count": 1}, "sunlight": {"_count": 4}, "side": {"_count": 1}, "green": {"_count": 1}, "lights": {"_count": 1}, "cloudy": {"_count": 1}, "mist": {"_count": 1}}, "grassy": {"_count": 4, "slope": {"_count": 2}, "field": {"_count": 1}, "ceiling": {"_count": 1}}, "Hogs": {"_count": 33, "Head": {"_count": 31}, "Heads": {"_count": 2}}, "pubs": {"_count": 1, "down": {"_count": 1}}, "sorta": {"_count": 1, "creatures": {"_count": 1}}, "Ministry": {"_count": 412, "of": {"_count": 107}, "said": {"_count": 8}, "is": {"_count": 7}, "were": {"_count": 2}, "grows": {"_count": 1}, "I": {"_count": 3}, "o": {"_count": 1}, "into": {"_count": 1}, "got": {"_count": 1}, "to": {"_count": 3}, "providing": {"_count": 1}, "found": {"_count": 1}, "cars": {"_count": 1}, "drivers": {"_count": 1}, "was": {"_count": 7}, "": {"_count": 65}, "you": {"_count": 3}, "never": {"_count": 2}, "keeps": {"_count": 1}, "that": {"_count": 4}, "Ill": {"_count": 1}, "need": {"_count": 1}, "with": {"_count": 3}, "wizard": {"_count": 2}, "and": {"_count": 19}, "decides": {"_count": 1}, "seemed": {"_count": 1}, "witch": {"_count": 1}, "members": {"_count": 1}, "wizards": {"_count": 2}, "will": {"_count": 4}, "had": {"_count": 4}, "sees": {"_count": 1}, "when": {"_count": 3}, "in": {"_count": 4}, "a": {"_count": 1}, "trying": {"_count": 1}, "if": {"_count": 2}, "ever": {"_count": 1}, "would": {"_count": 5}, "itself": {"_count": 1}, "later": {"_count": 1}, "instead": {"_count": 1}, "all": {"_count": 3}, "who": {"_count": 1}, "Leave": {"_count": 1}, "anymore": {"_count": 1}, "have": {"_count": 3}, "representatives": {"_count": 2}, "or": {"_count": 2}, "has": {"_count": 13}, "Mr": {"_count": 1}, "hearing": {"_count": 2}, "himself": {"_count": 1}, "checking": {"_count": 1}, "these": {"_count": 1}, "he": {"_count": 2}, "did": {"_count": 1}, "hasnt": {"_count": 2}, "insists": {"_count": 1}, "because": {"_count": 2}, "information": {"_count": 1}, "like": {"_count": 1}, "workers": {"_count": 2}, "three": {"_count": 1}, "for": {"_count": 4}, "ordered": {"_count": 1}, "might": {"_count": 1}, "What": {"_count": 1}, "again": {"_count": 1}, "so": {"_count": 1}, "should": {"_count": 2}, "wants": {"_count": 1}, "interference": {"_count": 1}, "most": {"_count": 1}, "watching": {"_count": 1}, "made": {"_count": 1}, "unhealthy": {"_count": 1}, "wouldnt": {"_count": 1}, "on": {"_count": 4}, "decree": {"_count": 1}, "how": {"_count": 1}, "where": {"_count": 1}, "stands": {"_count": 1}, "its": {"_count": 2}, "too": {"_count": 2}, "do": {"_count": 1}, "looks": {"_count": 1}, "it": {"_count": 1}, "turnaround": {"_count": 1}, "Should": {"_count": 1}, "last": {"_count": 3}, "before": {"_count": 2}, "driver": {"_count": 1}, "though": {"_count": 1}, "knew": {"_count": 1}, "wanted": {"_count": 1}, "pamphlets": {"_count": 1}, "but": {"_count": 1}, "cant": {"_count": 1}, "bought": {"_count": 1}, "the": {"_count": 2}, "tells": {"_count": 1}, "look": {"_count": 1}, "until": {"_count": 1}, "replied": {"_count": 1}, "He": {"_count": 1}, "from": {"_count": 1}, "called": {"_count": 1}, "reached": {"_count": 1}, "didnt": {"_count": 1}, "wont": {"_count": 1}, "bothered": {"_count": 1}, "turns": {"_count": 1}, "gets": {"_count": 1}, "thinks": {"_count": 1}, "delegation": {"_count": 1}, "they": {"_count": 1}, "finds": {"_count": 1}, "They": {"_count": 1}, "prepared": {"_count": 1}, "does": {"_count": 1}, "youd": {"_count": 1}, "what": {"_count": 1}, "remember": {"_count": 1}, "entrance": {"_count": 2}, "which": {"_count": 1}, "tomorrow": {"_count": 1}, "today": {"_count": 1}, "something": {"_count": 1}, "came": {"_count": 1}, "line": {"_count": 1}, "Harry": {"_count": 1}, "growled": {"_count": 1}, "theyre": {"_count": 1}, "can": {"_count": 1}, "after": {"_count": 1}}, "winds": {"_count": 5, "Professor": {"_count": 1}, "reached": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "sunshine": {"_count": 4, "": {"_count": 1}, "again": {"_count": 1}, "yellow": {"_count": 1}, "all": {"_count": 1}}, "enchantments": {"_count": 7, "they": {"_count": 1}, "of": {"_count": 1}, "we": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "she": {"_count": 1}}, "flute": {"_count": 4, "Hagrid": {"_count": 1}, "waved": {"_count": 1}, "to": {"_count": 1}, "over": {"_count": 1}}, "toad": {"_count": 4, "who": {"_count": 2}, "in": {"_count": 1}, "into": {"_count": 1}}, "grandfather": {"_count": 2, "clock": {"_count": 2}}, "full": {"_count": 32, "BodyBind": {"_count": 3}, "impact": {"_count": 1}, "storys": {"_count": 1}, "moon": {"_count": 10}, "blast": {"_count": 1}, "use": {"_count": 1}, "extent": {"_count": 1}, "strangeness": {"_count": 1}, "court": {"_count": 1}, "repercussions": {"_count": 1}, "story": {"_count": 6}, "contents": {"_count": 1}, "glow": {"_count": 1}, "understanding": {"_count": 1}, "glare": {"_count": 1}, "might": {"_count": 1}}, "staircase": {"_count": 37, "up": {"_count": 2}, "": {"_count": 11}, "to": {"_count": 4}, "and": {"_count": 3}, "all": {"_count": 1}, "beneath": {"_count": 1}, "Harry": {"_count": 1}, "not": {"_count": 1}, "burst": {"_count": 1}, "six": {"_count": 1}, "soon": {"_count": 1}, "POTTER": {"_count": 1}, "toward": {"_count": 1}, "after": {"_count": 1}, "leading": {"_count": 1}, "which": {"_count": 2}, "but": {"_count": 1}, "with": {"_count": 1}, "into": {"_count": 1}, "on": {"_count": 1}}, "carpet": {"_count": 11, "so": {"_count": 2}, "": {"_count": 4}, "he": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}, "Aunt": {"_count": 1}, "tall": {"_count": 1}}, "dogs": {"_count": 9, "noses": {"_count": 1}, "growls": {"_count": 1}, "hot": {"_count": 1}, "back": {"_count": 1}, "legs": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "jaws": {"_count": 1}, "": {"_count": 1}}, "beasts": {"_count": 4, "eyes": {"_count": 1}, "had": {"_count": 2}, "neck": {"_count": 1}}, "ring": {"_count": 20, "of": {"_count": 5}, "into": {"_count": 1}, "too": {"_count": 1}, "sailed": {"_count": 1}, "was": {"_count": 2}, "hidden": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "is": {"_count": 1}, "its": {"_count": 1}, "in": {"_count": 1}, "first": {"_count": 1}, "and": {"_count": 1}, "would": {"_count": 1}}, "fall": {"_count": 3, "": {"_count": 1}, "cutting": {"_count": 1}, "of": {"_count": 1}}, "plant": {"_count": 12, "had": {"_count": 1}, "got": {"_count": 1}, "off": {"_count": 1}, "wound": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "thick": {"_count": 1}, "on": {"_count": 2}, "himself": {"_count": 1}, "was": {"_count": 1}}, "tighter": {"_count": 2, "and": {"_count": 1}, "she": {"_count": 1}}, "gentle": {"_count": 5, "drip": {"_count": 2}, "slope": {"_count": 1}, "patter": {"_count": 1}, "clinking": {"_count": 1}}, "wizards": {"_count": 30, "bank": {"_count": 2}, "sweeping": {"_count": 1}, "score": {"_count": 1}, "on": {"_count": 2}, "wands": {"_count": 1}, "warningly": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 3}, "in": {"_count": 1}, "above": {"_count": 1}, "who": {"_count": 3}, "surrounding": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "bidding": {"_count": 1}, "their": {"_count": 1}, "barely": {"_count": 1}, "cravats": {"_count": 1}, "out": {"_count": 2}, "bag": {"_count": 1}, "have": {"_count": 1}, "are": {"_count": 1}, "defenders": {"_count": 1}}, "passageway": {"_count": 16, "and": {"_count": 2}, "full": {"_count": 1}, "outside": {"_count": 1}, "to": {"_count": 1}, "under": {"_count": 1}, "": {"_count": 3}, "as": {"_count": 1}, "swung": {"_count": 1}, "below": {"_count": 1}, "curved": {"_count": 1}, "carving": {"_count": 1}, "had": {"_count": 1}, "leading": {"_count": 1}}, "birds": {"_count": 5, "soaring": {"_count": 1}, "were": {"_count": 2}, "golden": {"_count": 1}, "attacked": {"_count": 1}}, "flock": {"_count": 1, "of": {"_count": 1}}, "midst": {"_count": 18, "of": {"_count": 18}}, "cloud": {"_count": 3, "of": {"_count": 3}}, "bewitched": {"_count": 5, "keys": {"_count": 1}, "ceiling": {"_count": 2}, "car": {"_count": 1}, "sleep": {"_count": 1}}, "feathers": {"_count": 1, "are": {"_count": 1}}, "damaged": {"_count": 1, "wing": {"_count": 1}}, "towering": {"_count": 7, "white": {"_count": 1}, "figure": {"_count": 1}, "beech": {"_count": 1}, "rows": {"_count": 1}, "mill": {"_count": 1}, "black": {"_count": 1}, "piles": {"_count": 1}}, "knights": {"_count": 2, "horse": {"_count": 1}, "exhaustion": {"_count": 1}}, "knight": {"_count": 5, "turned": {"_count": 1}, "and": {"_count": 1}, "popping": {"_count": 1}, "disappeared": {"_count": 1}, "on": {"_count": 1}}, "board": {"_count": 14, "leaving": {"_count": 1}, "": {"_count": 3}, "where": {"_count": 1}, "taking": {"_count": 1}, "and": {"_count": 3}, "with": {"_count": 1}, "at": {"_count": 1}, "which": {"_count": 1}, "o": {"_count": 2}}, "king": {"_count": 2, "Harry": {"_count": 1}, "of": {"_count": 1}}, "Devils": {"_count": 2, "Snare": {"_count": 2}}, "keys": {"_count": 1, "McGonagall": {"_count": 1}}, "chessmen": {"_count": 1, "to": {"_count": 1}}, "threshold": {"_count": 32, "and": {"_count": 3}, "into": {"_count": 3}, "stood": {"_count": 1}, "": {"_count": 8}, "of": {"_count": 2}, "then": {"_count": 1}, "while": {"_count": 1}, "gazing": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "before": {"_count": 1}, "just": {"_count": 1}, "toward": {"_count": 1}, "holding": {"_count": 1}, "several": {"_count": 1}, "together": {"_count": 1}, "as": {"_count": 1}, "when": {"_count": 1}, "The": {"_count": 1}, "brandishing": {"_count": 1}}, "bottles": {"_count": 5, "": {"_count": 1}, "as": {"_count": 1}, "they": {"_count": 1}, "of": {"_count": 1}, "had": {"_count": 1}}, "poison": {"_count": 5, "tries": {"_count": 1}, "within": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}, "nor": {"_count": 1}}, "purple": {"_count": 9, "": {"_count": 1}, "flames": {"_count": 1}, "fire": {"_count": 1}, "recede": {"_count": 1}, "silk": {"_count": 1}, "half": {"_count": 1}, "end": {"_count": 2}, "button": {"_count": 1}}, "flyingkey": {"_count": 1, "room": {"_count": 1}}, "round": {"_count": 1, "bottle": {"_count": 1}}, "bottle": {"_count": 24, "down": {"_count": 2}, "into": {"_count": 3}, "": {"_count": 1}, "My": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 3}, "of": {"_count": 3}, "from": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 2}, "where": {"_count": 1}, "with": {"_count": 2}, "then": {"_count": 1}}, "type": {"_count": 7, "doesnt": {"_count": 1}, "whod": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}}, "frame": {"_count": 12, "": {"_count": 2}, "because": {"_count": 1}, "and": {"_count": 2}, "of": {"_count": 3}, "eventually": {"_count": 1}, "beside": {"_count": 1}, "watching": {"_count": 1}, "on": {"_count": 1}}, "ropes": {"_count": 16, "binding": {"_count": 6}, "around": {"_count": 3}, "had": {"_count": 1}, "did": {"_count": 1}, "were": {"_count": 1}, "tying": {"_count": 1}, "tough": {"_count": 1}, "that": {"_count": 1}, "fall": {"_count": 1}}, "voice": {"_count": 32, "seemed": {"_count": 1}, "that": {"_count": 2}, "again": {"_count": 2}, "": {"_count": 8}, "had": {"_count": 2}, "coolly": {"_count": 1}, "of": {"_count": 6}, "we": {"_count": 1}, "from": {"_count": 1}, "never": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}, "say": {"_count": 1}, "would": {"_count": 1}, "at": {"_count": 1}, "wound": {"_count": 1}, "and": {"_count": 1}}, "funny": {"_count": 2, "smell": {"_count": 1}, "wand": {"_count": 1}}, "reflection": {"_count": 4, "smiled": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}}, "flame": {"_count": 4, "door": {"_count": 1}, "of": {"_count": 1}, "danced": {"_count": 1}, "": {"_count": 1}}, "pain": {"_count": 49, "in": {"_count": 17}, "was": {"_count": 4}, "that": {"_count": 1}, "": {"_count": 5}, "for": {"_count": 1}, "receded": {"_count": 1}, "stabbed": {"_count": 1}, "halfblinding": {"_count": 1}, "recede": {"_count": 1}, "building": {"_count": 1}, "stop": {"_count": 1}, "of": {"_count": 6}, "stopped": {"_count": 1}, "from": {"_count": 3}, "he": {"_count": 3}, "much": {"_count": 1}, "and": {"_count": 1}}, "candy": {"_count": 1, "shop": {"_count": 1}}, "effort": {"_count": 17, "involved": {"_count": 1}, "of": {"_count": 8}, "Hermione": {"_count": 1}, "to": {"_count": 5}, "I": {"_count": 1}, "not": {"_count": 1}}, "well": {"_count": 1, "organized": {"_count": 1}}, "proper": {"_count": 2, "name": {"_count": 1}, "handling": {"_count": 1}}, "person": {"_count": 31, "who": {"_count": 17}, "whos": {"_count": 1}, "whod": {"_count": 1}, "was": {"_count": 1}, "on": {"_count": 1}, "hed": {"_count": 1}, "we": {"_count": 1}, "next": {"_count": 1}, "had": {"_count": 1}, "now": {"_count": 1}, "Sirius": {"_count": 1}, "Im": {"_count": 1}, "behind": {"_count": 1}, "of": {"_count": 1}, "tied": {"_count": 1}}, "sheet": {"_count": 3, "": {"_count": 1}, "Ron": {"_count": 1}, "from": {"_count": 1}}, "goldenbrown": {"_count": 1, "bean": {"_count": 1}}, "nurse": {"_count": 4, "was": {"_count": 2}, "came": {"_count": 1}, "": {"_count": 1}}, "headmaster": {"_count": 51, "quite": {"_count": 1}, "sat": {"_count": 1}, "Professor": {"_count": 2}, "": {"_count": 8}, "sir": {"_count": 1}, "was": {"_count": 2}, "is": {"_count": 2}, "stood": {"_count": 1}, "if": {"_count": 1}, "with": {"_count": 1}, "wed": {"_count": 1}, "tell": {"_count": 1}, "again": {"_count": 1}, "Ah": {"_count": 1}, "he": {"_count": 1}, "leaving": {"_count": 1}, "told": {"_count": 1}, "of": {"_count": 2}, "Harry": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 1}, "will": {"_count": 2}, "how": {"_count": 1}, "either": {"_count": 1}, "likes": {"_count": 1}, "seems": {"_count": 1}, "about": {"_count": 1}, "thinks": {"_count": 1}, "and": {"_count": 2}, "outside": {"_count": 1}, "only": {"_count": 1}, "say": {"_count": 1}, "hes": {"_count": 1}, "looked": {"_count": 1}, "together": {"_count": 1}, "at": {"_count": 1}, "had": {"_count": 1}}, "true": {"_count": 17, "story": {"_count": 1}, "wolf": {"_count": 2}, "reason": {"_count": 1}, "memory": {"_count": 4}, "blood": {"_count": 1}, "Harry": {"_count": 1}, "sword": {"_count": 1}, "magic": {"_count": 1}, "master": {"_count": 5}}, "wellorganized": {"_count": 1, "mind": {"_count": 1}}, "foodll": {"_count": 1, "be": {"_count": 1}}, "evil": {"_count": 2, "git": {"_count": 1}, "flat": {"_count": 1}}, "endofyear": {"_count": 1, "feast": {"_count": 1}}, "bestplayed": {"_count": 1, "game": {"_count": 1}}, "use": {"_count": 19, "of": {"_count": 16}, "it": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "BodyBind": {"_count": 2, "Curse": {"_count": 2}}, "downfall": {"_count": 3, "of": {"_count": 3}}, "exam": {"_count": 14, "results": {"_count": 1}, "": {"_count": 3}, "schedule": {"_count": 2}, "weve": {"_count": 1}, "As": {"_count": 1}, "question": {"_count": 1}, "go": {"_count": 1}, "paper": {"_count": 1}, "to": {"_count": 1}, "went": {"_count": 1}, "completely": {"_count": 1}}, "toilets": {"_count": 2, "notes": {"_count": 1}, "in": {"_count": 1}}, "gate": {"_count": 17, "in": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 2}, "Id": {"_count": 1}, "": {"_count": 2}, "into": {"_count": 2}, "moments": {"_count": 1}, "with": {"_count": 1}, "accompanied": {"_count": 1}, "gazing": {"_count": 1}, "seemed": {"_count": 1}, "his": {"_count": 1}, "Griphook": {"_count": 1}}, "gateway": {"_count": 5, "back": {"_count": 1}, "together": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 2}}, "nerve": {"_count": 5, "of": {"_count": 1}, "to": {"_count": 2}, "was": {"_count": 1}, "or": {"_count": 1}}, "grin": {"_count": 5, "that": {"_count": 1}, "only": {"_count": 1}, "became": {"_count": 1}, "slide": {"_count": 1}, "fading": {"_count": 1}}, "early": {"_count": 11, "hours": {"_count": 7}, "morning": {"_count": 3}, "days": {"_count": 1}}, "chance": {"_count": 28, "": {"_count": 4}, "to": {"_count": 15}, "had": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 2}, "they": {"_count": 1}, "ter": {"_count": 1}, "and": {"_count": 1}, "Kill": {"_count": 1}}, "corners": {"_count": 20, "of": {"_count": 16}, "before": {"_count": 1}, "": {"_count": 2}, "farthest": {"_count": 1}}, "Forbidden": {"_count": 41, "Forest": {"_count": 41}}, "wizarding": {"_count": 18, "world": {"_count": 13}, "newspaper": {"_count": 1}, "point": {"_count": 1}, "equipment": {"_count": 1}, "bank": {"_count": 1}, "public": {"_count": 1}}, "instant": {"_count": 4, "Harry": {"_count": 1}, "he": {"_count": 2}, "that": {"_count": 1}}, "reason": {"_count": 23, "he": {"_count": 6}, "that": {"_count": 2}, "you": {"_count": 3}, "the": {"_count": 1}, "according": {"_count": 1}, "Umbridge": {"_count": 1}, "Harrys": {"_count": 1}, "for": {"_count": 3}, "could": {"_count": 1}, "Scrimgeour": {"_count": 1}, "I": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 1}}, "stupid": {"_count": 14, "dinner": {"_count": 1}, "little": {"_count": 1}, "Daily": {"_count": 1}, "woman": {"_count": 1}, "Dream": {"_count": 1}, "things": {"_count": 1}, "great": {"_count": 1}, "textbook": {"_count": 1}, "Ministry": {"_count": 1}, "puffedup": {"_count": 1}, "subject": {"_count": 2}, "scribbles": {"_count": 1}, "Prince": {"_count": 1}}, "schedule": {"_count": 3, "one": {"_count": 1}, "back": {"_count": 1}, "disbelieving": {"_count": 1}}, "lounge": {"_count": 4, "said": {"_count": 1}, "introduce": {"_count": 1}, "for": {"_count": 1}, "destroyed": {"_count": 1}}, "deal": {"_count": 2, "signed": {"_count": 1}, "Hermione": {"_count": 1}}, "dinner": {"_count": 4, "jackets": {"_count": 1}, "table": {"_count": 2}, "tables": {"_count": 1}}, "lawn": {"_count": 36, "slumped": {"_count": 1}, "": {"_count": 10}, "trimmed": {"_count": 1}, "accompanied": {"_count": 1}, "making": {"_count": 1}, "Crookshanks": {"_count": 1}, "and": {"_count": 1}, "smashing": {"_count": 1}, "with": {"_count": 1}, "toward": {"_count": 5}, "the": {"_count": 1}, "he": {"_count": 1}, "past": {"_count": 1}, "clutching": {"_count": 1}, "to": {"_count": 1}, "below": {"_count": 1}, "looking": {"_count": 1}, "on": {"_count": 1}, "became": {"_count": 1}, "were": {"_count": 1}, "heading": {"_count": 1}, "once": {"_count": 1}, "at": {"_count": 1}}, "hedge": {"_count": 22, "": {"_count": 7}, "and": {"_count": 3}, "was": {"_count": 2}, "but": {"_count": 1}, "on": {"_count": 1}, "apparently": {"_count": 1}, "walls": {"_count": 1}, "through": {"_count": 1}, "gasping": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}, "away": {"_count": 1}}, "risk": {"_count": 4, "": {"_count": 2}, "thats": {"_count": 1}, "that": {"_count": 1}}, "soapy": {"_count": 1, "frying": {"_count": 1}}, "promise": {"_count": 4, "he": {"_count": 2}, "of": {"_count": 2}}, "flowerbeds": {"_count": 2, "pruned": {"_count": 1}, "and": {"_count": 1}}, "roses": {"_count": 1, "and": {"_count": 1}}, "flower": {"_count": 6, "beds": {"_count": 4}, "bed": {"_count": 2}}, "shade": {"_count": 10, "of": {"_count": 10}}, "gleaming": {"_count": 5, "kitchen": {"_count": 1}, "water": {"_count": 1}, "scarlet": {"_count": 1}, "mass": {"_count": 1}, "air": {"_count": 1}}, "fridge": {"_count": 7, "stood": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 2}, "then": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "oven": {"_count": 6, "": {"_count": 1}, "door": {"_count": 3}, "earlier": {"_count": 1}, "properly": {"_count": 1}}, "creature": {"_count": 17, "in": {"_count": 1}, "": {"_count": 1}, "beneath": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 2}, "into": {"_count": 1}, "spoke": {"_count": 1}, "use": {"_count": 1}, "might": {"_count": 1}, "that": {"_count": 2}, "absently": {"_count": 1}, "curled": {"_count": 1}, "filled": {"_count": 1}, "behind": {"_count": 2}}, "houseelf": {"_count": 27, "said": {"_count": 1}, "was": {"_count": 3}, "had": {"_count": 2}, "knitted": {"_count": 1}, "": {"_count": 4}, "bowing": {"_count": 1}, "called": {"_count": 1}, "made": {"_count": 1}, "staring": {"_count": 1}, "peering": {"_count": 1}, "came": {"_count": 1}, "and": {"_count": 2}, "quite": {"_count": 1}, "who": {"_count": 3}, "straightened": {"_count": 1}, "heads": {"_count": 1}, "that": {"_count": 1}, "busying": {"_count": 1}}, "elf": {"_count": 83, "burst": {"_count": 1}, "": {"_count": 21}, "who": {"_count": 3}, "sadly": {"_count": 1}, "his": {"_count": 2}, "terrified": {"_count": 1}, "bobbing": {"_count": 1}, "came": {"_count": 1}, "in": {"_count": 3}, "shrilly": {"_count": 1}, "curiously": {"_count": 1}, "I": {"_count": 1}, "but": {"_count": 1}, "whom": {"_count": 1}, "Ill": {"_count": 1}, "so": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 4}, "earnestly": {"_count": 1}, "had": {"_count": 5}, "to": {"_count": 1}, "with": {"_count": 1}, "from": {"_count": 1}, "repeated": {"_count": 1}, "then": {"_count": 1}, "Harry": {"_count": 1}, "squeakily": {"_count": 1}, "was": {"_count": 3}, "dropping": {"_count": 1}, "himself": {"_count": 1}, "trembling": {"_count": 1}, "tried": {"_count": 1}, "as": {"_count": 2}, "gleefully": {"_count": 1}, "quietly": {"_count": 1}, "let": {"_count": 1}, "scurried": {"_count": 1}, "laying": {"_count": 1}, "flattening": {"_count": 1}, "freeze": {"_count": 1}, "took": {"_count": 1}, "bowed": {"_count": 1}, "keep": {"_count": 1}, "became": {"_count": 1}, "more": {"_count": 1}, "into": {"_count": 1}, "lay": {"_count": 1}, "he": {"_count": 1}}, "voices": {"_count": 9, "downstairs": {"_count": 1}, "whispering": {"_count": 1}, "of": {"_count": 3}, "were": {"_count": 1}, "could": {"_count": 1}, "ceased": {"_count": 1}, "and": {"_count": 1}}, "bars": {"_count": 20, "of": {"_count": 7}, "on": {"_count": 2}, "at": {"_count": 2}, "": {"_count": 2}, "said": {"_count": 1}, "were": {"_count": 2}, "dangling": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 1}}, "chink": {"_count": 3, "of": {"_count": 3}}, "distant": {"_count": 35, "rumble": {"_count": 1}, "sounds": {"_count": 2}, "noise": {"_count": 1}, "grunting": {"_count": 1}, "creaking": {"_count": 1}, "castle": {"_count": 1}, "windows": {"_count": 1}, "front": {"_count": 1}, "evidence": {"_count": 1}, "Quidditch": {"_count": 1}, "twittering": {"_count": 2}, "yells": {"_count": 1}, "bangs": {"_count": 1}, "crash": {"_count": 1}, "cabin": {"_count": 1}, "gates": {"_count": 1}, "foot": {"_count": 1}, "corner": {"_count": 1}, "lights": {"_count": 1}, "vibrations": {"_count": 1}, "banks": {"_count": 1}, "light": {"_count": 1}, "phoenix": {"_count": 1}, "echo": {"_count": 1}, "boundary": {"_count": 2}, "black": {"_count": 1}, "square": {"_count": 1}, "rushing": {"_count": 1}, "mountains": {"_count": 1}, "skyline": {"_count": 1}, "Petunia": {"_count": 1}, "chair": {"_count": 1}}, "elfs": {"_count": 14, "arm": {"_count": 1}, "bony": {"_count": 1}, "smile": {"_count": 1}, "eyes": {"_count": 1}, "tiny": {"_count": 1}, "stricken": {"_count": 1}, "head": {"_count": 1}, "hand": {"_count": 1}, "outstretched": {"_count": 1}, "heaving": {"_count": 1}, "body": {"_count": 1}, "bare": {"_count": 1}, "eyelids": {"_count": 1}, "name": {"_count": 1}}, "height": {"_count": 7, "of": {"_count": 7}}, "closet": {"_count": 7, "": {"_count": 2}, "across": {"_count": 1}, "where": {"_count": 1}, "door": {"_count": 2}, "and": {"_count": 1}}, "devil": {"_count": 3, "are": {"_count": 1}, "": {"_count": 1}, "do": {"_count": 1}}, "punch": {"_count": 2, "line": {"_count": 1}, "on": {"_count": 1}}, "pillowcase": {"_count": 5, "he": {"_count": 1}, "": {"_count": 3}, "full": {"_count": 1}}, "dish": {"_count": 3, "shattered": {"_count": 1}, "toward": {"_count": 1}, "and": {"_count": 1}}, "shocked": {"_count": 2, "Masons": {"_count": 1}, "look": {"_count": 1}}, "Masons": {"_count": 1, "had": {"_count": 1}}, "freezer": {"_count": 1, "and": {"_count": 1}}, "mop": {"_count": 1, "for": {"_count": 1}}, "Reasonable": {"_count": 6, "Restriction": {"_count": 6}}, "non": {"_count": 1, "magical": {"_count": 1}}, "International": {"_count": 29, "Confederation": {"_count": 14}, "Warlock": {"_count": 1}, "Federation": {"_count": 1}, "Association": {"_count": 1}, "Ban": {"_count": 1}, "Code": {"_count": 1}, "Statute": {"_count": 7}, "Magical": {"_count": 2}, "Alchemical": {"_count": 1}}, "clock": {"_count": 9, "": {"_count": 3}, "overhead": {"_count": 1}, "again": {"_count": 1}, "that": {"_count": 1}, "weve": {"_count": 1}, "in": {"_count": 1}, "showed": {"_count": 1}}, "soggy": {"_count": 1, "vegetables": {"_count": 1}}, "catflap": {"_count": 1, "and": {"_count": 1}}, "soup": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "pot": {"_count": 1}}, "cage": {"_count": 12, "laughing": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 2}, "he": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 3}, "as": {"_count": 1}}, "rattling": {"_count": 4, "pounded": {"_count": 1}, "writing": {"_count": 1}, "of": {"_count": 2}}, "floating": {"_count": 3, "car": {"_count": 1}, "bodies": {"_count": 1}, "skull": {"_count": 1}}, "Ministryll": {"_count": 1, "think": {"_count": 1}}, "landing": {"_count": 20, "then": {"_count": 1}, "light": {"_count": 2}, "below": {"_count": 1}, "heaving": {"_count": 1}, "": {"_count": 3}, "Frank": {"_count": 1}, "but": {"_count": 1}, "above": {"_count": 1}, "and": {"_count": 4}, "he": {"_count": 3}, "who": {"_count": 1}, "of": {"_count": 1}}, "trunk": {"_count": 47, "through": {"_count": 2}, "slid": {"_count": 1}, "and": {"_count": 8}, "Hedwigs": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}, "on": {"_count": 2}, "": {"_count": 11}, "at": {"_count": 1}, "grinning": {"_count": 1}, "with": {"_count": 3}, "of": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}, "because": {"_count": 1}, "forward": {"_count": 1}, "placed": {"_count": 1}, "again": {"_count": 3}, "lowered": {"_count": 1}, "over": {"_count": 1}, "but": {"_count": 1}, "where": {"_count": 1}, "cage": {"_count": 1}, "for": {"_count": 1}}, "thunder": {"_count": 4, "of": {"_count": 3}, "rumbling": {"_count": 1}}, "chest": {"_count": 25, "of": {"_count": 4}, "he": {"_count": 2}, "and": {"_count": 4}, "carefully": {"_count": 1}, "": {"_count": 5}, "with": {"_count": 3}, "at": {"_count": 1}, "pocket": {"_count": 1}, "holding": {"_count": 1}, "He": {"_count": 1}, "For": {"_count": 1}, "directly": {"_count": 1}}, "unlocked": {"_count": 1, "door": {"_count": 1}}, "ankle": {"_count": 6, "": {"_count": 3}, "while": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}}, "shrinking": {"_count": 1, "rooftops": {"_count": 1}}, "hairpin": {"_count": 1, "to": {"_count": 1}}, "warning": {"_count": 3, "hed": {"_count": 1}, "Mr": {"_count": 1}, "I": {"_count": 1}}, "fiasco": {"_count": 3, "of": {"_count": 1}, "at": {"_count": 2}}, "violet": {"_count": 2, "pudding": {"_count": 1}, "haired": {"_count": 1}}, "Malfoys": {"_count": 25, "own": {"_count": 1}, "drawing": {"_count": 1}, "knew": {"_count": 1}, "wouldnt": {"_count": 1}, "were": {"_count": 1}, "he": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 8}, "to": {"_count": 1}, "our": {"_count": 1}, "house": {"_count": 2}, "look": {"_count": 1}, "humiliation": {"_count": 1}, "place": {"_count": 1}, "ready": {"_count": 1}, "returned": {"_count": 1}, "Hermione": {"_count": 1}}, "ironing": {"_count": 1, "said": {"_count": 1}}, "attic": {"_count": 10, "and": {"_count": 2}, "hes": {"_count": 1}, "howled": {"_count": 1}, "room": {"_count": 2}, "": {"_count": 3}, "again": {"_count": 1}}, "dashboard": {"_count": 5, "": {"_count": 3}, "nervously": {"_count": 1}, "and": {"_count": 1}}, "answer": {"_count": 25, "": {"_count": 9}, "had": {"_count": 1}, "was": {"_count": 2}, "in": {"_count": 1}, "completely": {"_count": 1}, "to": {"_count": 2}, "already": {"_count": 1}, "The": {"_count": 1}, "out": {"_count": 1}, "came": {"_count": 1}, "even": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}, "is": {"_count": 1}, "rose": {"_count": 1}}, "garage": {"_count": 4, "without": {"_count": 1}, "and": {"_count": 2}, "door": {"_count": 1}}, "office": {"_count": 73, "and": {"_count": 9}, "door": {"_count": 6}, "treading": {"_count": 1}, "which": {"_count": 1}, "Mrs": {"_count": 1}, "up": {"_count": 1}, "with": {"_count": 1}, "flew": {"_count": 1}, "": {"_count": 13}, "leaving": {"_count": 2}, "sometime": {"_count": 1}, "this": {"_count": 1}, "on": {"_count": 1}, "early": {"_count": 2}, "was": {"_count": 4}, "opened": {"_count": 2}, "looked": {"_count": 1}, "floor": {"_count": 6}, "placed": {"_count": 1}, "accompanying": {"_count": 1}, "where": {"_count": 2}, "you": {"_count": 1}, "at": {"_count": 2}, "still": {"_count": 1}, "swam": {"_count": 1}, "loomed": {"_count": 1}, "shook": {"_count": 1}, "lurched": {"_count": 1}, "closed": {"_count": 1}, "after": {"_count": 1}, "except": {"_count": 1}, "walls": {"_count": 1}, "for": {"_count": 1}, "one": {"_count": 1}, "into": {"_count": 1}}, "windshield": {"_count": 8, "": {"_count": 2}, "wipers": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "spelled": {"_count": 1}}, "horizon": {"_count": 9, "to": {"_count": 2}, "": {"_count": 4}, "Dawn": {"_count": 1}, "shell": {"_count": 1}, "as": {"_count": 1}}, "east": {"_count": 4, "": {"_count": 1}, "wing": {"_count": 3}}, "flying": {"_count": 2, "car": {"_count": 1}, "horse": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "chickens": {"_count": 5, "and": {"_count": 2}, "": {"_count": 1}, "just": {"_count": 1}, "she": {"_count": 1}}, "popular": {"_count": 4, "singing": {"_count": 2}, "Wizarding": {"_count": 1}, "image": {"_count": 1}}, "dishes": {"_count": 1, "in": {"_count": 1}}, "background": {"_count": 4, "": {"_count": 4}}, "form": {"_count": 14, "of": {"_count": 8}, "": {"_count": 2}, "he": {"_count": 1}, "but": {"_count": 1}, "Headmistress": {"_count": 1}, "and": {"_count": 1}}, "stack": {"_count": 1, "on": {"_count": 1}}, "cover": {"_count": 12, "of": {"_count": 4}, "": {"_count": 3}, "had": {"_count": 1}, "told": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 2}}, "photograph": {"_count": 20, "was": {"_count": 2}, "Colin": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 4}, "jostled": {"_count": 1}, "forevermore": {"_count": 1}, "again": {"_count": 1}, "album": {"_count": 2}, "Lily": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}, "were": {"_count": 1}, "he": {"_count": 1}}, "peony": {"_count": 1, "bush": {"_count": 1}}, "gnome": {"_count": 6, "": {"_count": 1}, "above": {"_count": 1}, "sensing": {"_count": 1}, "giggling": {"_count": 1}, "now": {"_count": 1}, "Funny": {"_count": 1}}, "gnomeholes": {"_count": 1, "": {"_count": 1}}, "gnomes": {"_count": 5, "ankles": {"_count": 1}, "": {"_count": 1}, "disappear": {"_count": 1}, "such": {"_count": 1}, "actually": {"_count": 1}}, "degnomings": {"_count": 1, "going": {"_count": 1}}, "Committee": {"_count": 16, "on": {"_count": 2}, "for": {"_count": 7}, "fer": {"_count": 2}, "into": {"_count": 1}, "jus": {"_count": 1}, "": {"_count": 1}, "member": {"_count": 2}}, "law": {"_count": 13, "to": {"_count": 2}, "youll": {"_count": 1}, "": {"_count": 4}, "you": {"_count": 1}, "about": {"_count": 1}, "is": {"_count": 2}, "said": {"_count": 1}, "Professor": {"_count": 1}}, "bedspread": {"_count": 1, "the": {"_count": 1}}, "shabby": {"_count": 3, "wallpaper": {"_count": 1}, "wardrobe": {"_count": 1}, "but": {"_count": 1}}, "orange": {"_count": 8, "bedspread": {"_count": 1}, "half": {"_count": 1}, "end": {"_count": 1}, "glare": {"_count": 1}, "robes": {"_count": 1}, "radishlike": {"_count": 1}, "radishes": {"_count": 1}, "radish": {"_count": 1}}, "league": {"_count": 3, "": {"_count": 2}, "three": {"_count": 1}}, "Mad": {"_count": 1, "Muggle": {"_count": 1}}, "ghoul": {"_count": 5, "in": {"_count": 2}, "who": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "pipes": {"_count": 4, "and": {"_count": 1}, "below": {"_count": 1}, "how": {"_count": 1}, "Kreacher": {"_count": 1}}, "Burrow": {"_count": 58, "was": {"_count": 3}, "": {"_count": 25}, "using": {"_count": 1}, "had": {"_count": 3}, "in": {"_count": 1}, "came": {"_count": 1}, "he": {"_count": 2}, "when": {"_count": 1}, "by": {"_count": 2}, "no": {"_count": 1}, "where": {"_count": 1}, "to": {"_count": 2}, "has": {"_count": 1}, "which": {"_count": 1}, "three": {"_count": 1}, "Bill": {"_count": 1}, "early": {"_count": 1}, "garden": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 1}, "away": {"_count": 1}, "Ive": {"_count": 1}, "said": {"_count": 1}, "from": {"_count": 1}, "their": {"_count": 1}, "now": {"_count": 1}}, "talking": {"_count": 2, "mirror": {"_count": 1}, "spell": {"_count": 1}}, "clanking": {"_count": 5, "ghoul": {"_count": 1}, "noise": {"_count": 1}, "grew": {"_count": 1}, "of": {"_count": 1}, "suits": {"_count": 1}}, "state": {"_count": 6, "of": {"_count": 6}}, "postal": {"_count": 2, "service": {"_count": 2}}, "toast": {"_count": 3, "Mrs": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}}, "Yeti": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "butter": {"_count": 2, "dish": {"_count": 1}, "knocking": {"_count": 1}}, "limp": {"_count": 3, "owl": {"_count": 1}, "rooster": {"_count": 1}, "forms": {"_count": 1}}, "draining": {"_count": 2, "board": {"_count": 2}}, "hill": {"_count": 12, "to": {"_count": 1}, "broomsticks": {"_count": 1}, "moments": {"_count": 1}, "Crabbe": {"_count": 1}, "into": {"_count": 1}, "last": {"_count": 1}, "through": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "first": {"_count": 1}}, "shame": {"_count": 6, "": {"_count": 2}, "of": {"_count": 3}, "the": {"_count": 1}}, "flowerpot": {"_count": 3, "": {"_count": 2}, "stepped": {"_count": 1}}, "powder": {"_count": 3, "into": {"_count": 2}, "inside": {"_count": 1}}, "flames": {"_count": 41, "": {"_count": 10}, "and": {"_count": 4}, "which": {"_count": 2}, "like": {"_count": 2}, "licking": {"_count": 1}, "almost": {"_count": 1}, "were": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}, "feeling": {"_count": 1}, "every": {"_count": 1}, "for": {"_count": 1}, "groping": {"_count": 1}, "as": {"_count": 1}, "through": {"_count": 1}, "until": {"_count": 1}, "spinning": {"_count": 1}, "in": {"_count": 1}, "vanished": {"_count": 1}, "engulfed": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "Hagrids": {"_count": 1}, "carrying": {"_count": 1}, "burst": {"_count": 1}, "chased": {"_count": 1}}, "roaring": {"_count": 5, "in": {"_count": 1}, "growing": {"_count": 1}, "of": {"_count": 1}, "fire": {"_count": 1}, "spectators": {"_count": 1}}, "rooms": {"_count": 2, "beyond": {"_count": 1}, "said": {"_count": 1}}, "bridge": {"_count": 6, "of": {"_count": 6}}, "hearth": {"_count": 9, "Harry": {"_count": 1}, "rug": {"_count": 2}, "Mr": {"_count": 1}, "and": {"_count": 2}, "snoring": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 1}}, "items": {"_count": 1, "on": {"_count": 1}}, "hero": {"_count": 9, "who": {"_count": 2}, "": {"_count": 4}, "again": {"_count": 1}, "which": {"_count": 1}, "they": {"_count": 1}}, "list": {"_count": 23, "": {"_count": 4}, "of": {"_count": 9}, "then": {"_count": 1}, "Harry": {"_count": 1}, "while": {"_count": 1}, "they": {"_count": 1}, "in": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "Scabior": {"_count": 1}, "yet": {"_count": 1}}, "withered": {"_count": 1, "hand": {"_count": 1}}, "Hand": {"_count": 1, "of": {"_count": 1}}, "holder": {"_count": 2, "": {"_count": 1}, "remember": {"_count": 1}}, "objects": {"_count": 6, "for": {"_count": 1}, "in": {"_count": 1}, "longer": {"_count": 1}, "like": {"_count": 1}, "placed": {"_count": 1}, "clutched": {"_count": 1}}, "Lives": {"_count": 1, "of": {"_count": 1}}, "cabinet": {"_count": 17, "right": {"_count": 1}, "past": {"_count": 1}, "door": {"_count": 3}, "": {"_count": 3}, "in": {"_count": 3}, "room": {"_count": 1}, "beside": {"_count": 1}, "where": {"_count": 3}, "was": {"_count": 1}}, "manor": {"_count": 2, "tomorrow": {"_count": 1}, "house": {"_count": 1}}, "goods": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "stories": {"_count": 7, "are": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 3}, "so": {"_count": 1}, "they": {"_count": 1}}, "witch": {"_count": 41, "a": {"_count": 1}, "knocking": {"_count": 1}, "who": {"_count": 5}, "": {"_count": 3}, "pulling": {"_count": 1}, "picking": {"_count": 1}, "examining": {"_count": 1}, "reaching": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}, "slid": {"_count": 1}, "with": {"_count": 2}, "in": {"_count": 4}, "said": {"_count": 2}, "called": {"_count": 1}, "and": {"_count": 3}, "out": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "looked": {"_count": 1}, "under": {"_count": 1}, "behind": {"_count": 1}, "dismissively": {"_count": 1}, "running": {"_count": 1}, "ran": {"_count": 1}, "wizard": {"_count": 1}, "or": {"_count": 1}, "before": {"_count": 1}}, "massive": {"_count": 3, "form": {"_count": 1}, "piles": {"_count": 1}, "Warrington": {"_count": 1}}, "tray": {"_count": 11, "right": {"_count": 1}, "on": {"_count": 1}, "onto": {"_count": 1}, "of": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 1}, "across": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "The": {"_count": 1}}, "twisting": {"_count": 1, "alleyway": {"_count": 1}}, "soot": {"_count": 1, "Hagrid": {"_count": 1}}, "packed": {"_count": 8, "street": {"_count": 1}, "Great": {"_count": 1}, "Gryffindor": {"_count": 1}, "stadium": {"_count": 2}, "entrance": {"_count": 1}, "corridors": {"_count": 1}, "common": {"_count": 1}}, "Gringotts": {"_count": 2, "steps": {"_count": 1}, "Charm": {"_count": 1}}, "tenpound": {"_count": 1, "notes": {"_count": 1}}, "banks": {"_count": 2, "underground": {"_count": 1}, "of": {"_count": 1}}, "breakneck": {"_count": 1, "journey": {"_count": 1}}, "contents": {"_count": 34, "from": {"_count": 1}, "strewn": {"_count": 1}, "into": {"_count": 1}, "aside": {"_count": 1}, "": {"_count": 2}, "were": {"_count": 1}, "of": {"_count": 20}, "more": {"_count": 1}, "when": {"_count": 1}, "had": {"_count": 1}, "down": {"_count": 1}, "onto": {"_count": 1}, "proved": {"_count": 1}, "and": {"_count": 1}}, "Grangers": {"_count": 3, "off": {"_count": 1}, "shaking": {"_count": 1}, "who": {"_count": 1}}, "alley": {"_count": 10, "examining": {"_count": 1}, "wall": {"_count": 1}, "had": {"_count": 1}, "fence": {"_count": 1}, "floor": {"_count": 1}, "everything": {"_count": 1}, "toward": {"_count": 1}, "beside": {"_count": 1}, "next": {"_count": 1}, "with": {"_count": 1}}, "fascinating": {"_count": 2, "shop": {"_count": 1}, "angle": {"_count": 1}}, "bookshop": {"_count": 2, "": {"_count": 1}, "window": {"_count": 1}}, "photographer": {"_count": 4, "had": {"_count": 1}, "who": {"_count": 1}, "couldnt": {"_count": 1}, "made": {"_count": 1}}, "entire": {"_count": 14, "works": {"_count": 1}, "school": {"_count": 2}, "wood": {"_count": 1}, "Care": {"_count": 1}, "surface": {"_count": 1}, "wizarding": {"_count": 1}, "alleyway": {"_count": 1}, "Wizengamot": {"_count": 1}, "Weasley": {"_count": 1}, "year": {"_count": 1}, "stock": {"_count": 1}, "contents": {"_count": 1}, "Dumbledore": {"_count": 1}}, "limelight": {"_count": 1, "to": {"_count": 1}}, "sole": {"_count": 7, "of": {"_count": 2}, "witness": {"_count": 2}, "topic": {"_count": 1}, "proviso": {"_count": 1}, "control": {"_count": 1}}, "glossy": {"_count": 5, "Lockhart": {"_count": 1}, "feathers": {"_count": 2}, "rats": {"_count": 1}, "chestnut": {"_count": 1}}, "assistant": {"_count": 2, "and": {"_count": 1}, "who": {"_count": 1}}, "eye": {"_count": 20, "by": {"_count": 1}, "": {"_count": 7}, "of": {"_count": 2}, "Angelina": {"_count": 1}, "whizzed": {"_count": 1}, "the": {"_count": 1}, "thats": {"_count": 1}, "that": {"_count": 2}, "was": {"_count": 1}, "like": {"_count": 1}, "do": {"_count": 1}, "Harry": {"_count": 1}}, "core": {"_count": 3, "the": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "fight": {"_count": 15, "into": {"_count": 1}, "": {"_count": 3}, "must": {"_count": 1}, "as": {"_count": 1}, "went": {"_count": 1}, "below": {"_count": 2}, "to": {"_count": 1}, "unscathed": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "broke": {"_count": 1}, "already": {"_count": 1}}, "fireside": {"_count": 7, "in": {"_count": 1}, "and": {"_count": 5}, "he": {"_count": 1}}, "happiest": {"_count": 4, "of": {"_count": 1}, "hes": {"_count": 1}, "thought": {"_count": 1}, "he": {"_count": 1}}, "luggage": {"_count": 17, "fitted": {"_count": 1}, "rack": {"_count": 13}, "racks": {"_count": 1}, "": {"_count": 1}, "look": {"_count": 1}}, "outside": {"_count": 10, "would": {"_count": 1}, "of": {"_count": 3}, "he": {"_count": 1}, "ledge": {"_count": 1}, "world": {"_count": 1}, "but": {"_count": 1}, "though": {"_count": 1}, "are": {"_count": 1}}, "clouds": {"_count": 8, "": {"_count": 2}, "and": {"_count": 1}, "showing": {"_count": 1}, "a": {"_count": 1}, "overhead": {"_count": 1}, "now": {"_count": 1}, "were": {"_count": 1}}, "wiser": {"_count": 3, "I": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}}, "previous": {"_count": 46, "year": {"_count": 16}, "summer": {"_count": 2}, "night": {"_count": 7}, "day": {"_count": 2}, "one": {"_count": 3}, "September": {"_count": 1}, "evening": {"_count": 2}, "two": {"_count": 1}, "Monday": {"_count": 1}, "Christmas": {"_count": 1}, "Tuesday": {"_count": 1}, "term": {"_count": 1}, "owner": {"_count": 6}, "Muggle": {"_count": 1}, "four": {"_count": 1}}, "solid": {"_count": 8, "barrier": {"_count": 2}, "mass": {"_count": 1}, "castle": {"_count": 1}, "metal": {"_count": 1}, "brick": {"_count": 1}, "stone": {"_count": 1}, "cave": {"_count": 1}}, "blink": {"_count": 1, "of": {"_count": 1}}, "handles": {"_count": 2, "of": {"_count": 1}, "made": {"_count": 1}}, "shiny": {"_count": 1, "floor": {"_count": 1}}, "trolley": {"_count": 6, "Harry": {"_count": 1}, "bearing": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}, "from": {"_count": 1}}, "surrounding": {"_count": 35, "crowd": {"_count": 2}, "elves": {"_count": 2}, "trees": {"_count": 4}, "seats": {"_count": 1}, "benches": {"_count": 1}, "streets": {"_count": 1}, "roads": {"_count": 1}, "houses": {"_count": 2}, "air": {"_count": 2}, "chatter": {"_count": 1}, "walls": {"_count": 2}, "watchers": {"_count": 1}, "area": {"_count": 2}, "circle": {"_count": 1}, "pool": {"_count": 1}, "stone": {"_count": 1}, "mist": {"_count": 1}, "potions": {"_count": 1}, "Inferi": {"_count": 1}, "woods": {"_count": 1}, "darkness": {"_count": 2}, "goblins": {"_count": 1}, "mountains": {"_count": 1}, "battle": {"_count": 1}, "clamor": {"_count": 1}}, "gateways": {"_count": 1, "sealed": {"_count": 1}}, "pit": {"_count": 15, "of": {"_count": 14}, "and": {"_count": 1}}, "Restriction": {"_count": 5, "of": {"_count": 5}}, "vain": {"_count": 1, "hope": {"_count": 1}}, "exit": {"_count": 11, "": {"_count": 5}, "and": {"_count": 1}, "at": {"_count": 1}, "from": {"_count": 1}, "into": {"_count": 1}, "Harry": {"_count": 1}, "right": {"_count": 1}}, "cavernous": {"_count": 5, "trunk": {"_count": 1}, "entrance": {"_count": 1}, "kitchen": {"_count": 1}, "torchlit": {"_count": 1}, "room": {"_count": 1}}, "ignition": {"_count": 1, "with": {"_count": 1}}, "dirty": {"_count": 10, "buildings": {"_count": 1}, "old": {"_count": 1}, "gray": {"_count": 1}, "work": {"_count": 1}, "plates": {"_count": 2}, "glass": {"_count": 1}, "river": {"_count": 1}, "stone": {"_count": 1}, "lenses": {"_count": 1}}, "accelerator": {"_count": 3, "they": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "compass": {"_count": 1, "on": {"_count": 1}}, "glove": {"_count": 1, "compartment": {"_count": 1}}, "prospect": {"_count": 20, "of": {"_count": 19}, "Narcissa": {"_count": 1}}, "sweeping": {"_count": 2, "lawn": {"_count": 1}, "drive": {"_count": 1}}, "fantastic": {"_count": 1, "cloud": {"_count": 1}}, "canopy": {"_count": 8, "of": {"_count": 5}, "above": {"_count": 1}, "now": {"_count": 1}, "over": {"_count": 1}}, "whining": {"_count": 1, "growing": {"_count": 1}}, "blackness": {"_count": 5, "": {"_count": 2}, "gathering": {"_count": 1}, "his": {"_count": 1}, "for": {"_count": 1}}, "many": {"_count": 28, "turrets": {"_count": 2}, "moving": {"_count": 1}, "fearsome": {"_count": 1}, "lamps": {"_count": 2}, "Krums": {"_count": 1}, "proofs": {"_count": 1}, "Hogwarts": {"_count": 1}, "students": {"_count": 1}, "reports": {"_count": 1}, "staircases": {"_count": 1}, "people": {"_count": 1}, "pamphlets": {"_count": 1}, "subjects": {"_count": 1}, "glittering": {"_count": 1}, "boxes": {"_count": 1}, "shimmering": {"_count": 1}, "complainers": {"_count": 1}, "empty": {"_count": 1}, "alleyways": {"_count": 1}, "wands": {"_count": 1}, "judgments": {"_count": 1}, "rumors": {"_count": 1}, "wonderful": {"_count": 1}, "eccentricities": {"_count": 1}, "desperate": {"_count": 1}, "doors": {"_count": 1}}, "hood": {"_count": 7, "": {"_count": 4}, "whatever": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 1}}, "smooth": {"_count": 14, "black": {"_count": 3}, "Chamber": {"_count": 1}, "action": {"_count": 1}, "neck": {"_count": 1}, "surface": {"_count": 3}, "cold": {"_count": 1}, "yellowish": {"_count": 1}, "crimson": {"_count": 1}, "soaked": {"_count": 1}, "golden": {"_count": 1}}, "vegetable": {"_count": 9, "patch": {"_count": 7}, "gardens": {"_count": 1}, "patches": {"_count": 1}}, "crumpled": {"_count": 1, "hood": {"_count": 1}}, "tip": {"_count": 41, "was": {"_count": 1}, "of": {"_count": 36}, "into": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 1}, "burst": {"_count": 1}}, "force": {"_count": 16, "of": {"_count": 11}, "that": {"_count": 2}, "he": {"_count": 2}, "with": {"_count": 1}}, "ancient": {"_count": 9, "tree": {"_count": 1}, "Egyptian": {"_count": 1}, "armchair": {"_count": 1}, "magic": {"_count": 1}, "face": {"_count": 1}, "doorway": {"_count": 1}, "ring": {"_count": 1}, "school": {"_count": 1}, "story": {"_count": 1}}, "triumphant": {"_count": 2, "arrival": {"_count": 1}, "air": {"_count": 1}}, "feasts": {"_count": 1, "already": {"_count": 1}}, "Hall": {"_count": 80, "": {"_count": 19}, "the": {"_count": 1}, "next": {"_count": 1}, "through": {"_count": 2}, "ceased": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 6}, "ever": {"_count": 1}, "many": {"_count": 2}, "quieted": {"_count": 1}, "Draco": {"_count": 1}, "now": {"_count": 3}, "was": {"_count": 2}, "to": {"_count": 1}, "were": {"_count": 1}, "grinning": {"_count": 1}, "judging": {"_count": 1}, "which": {"_count": 1}, "walk": {"_count": 1}, "some": {"_count": 1}, "Professor": {"_count": 1}, "where": {"_count": 2}, "had": {"_count": 1}, "after": {"_count": 2}, "they": {"_count": 1}, "stood": {"_count": 1}, "when": {"_count": 1}, "bringing": {"_count": 1}, "as": {"_count": 2}, "splattered": {"_count": 1}, "at": {"_count": 1}, "flicking": {"_count": 1}, "of": {"_count": 5}, "died": {"_count": 2}, "Ron": {"_count": 1}, "accompanied": {"_count": 1}, "Harry": {"_count": 1}, "alongside": {"_count": 1}, "first": {"_count": 1}, "away": {"_count": 2}, "nobody": {"_count": 1}, "upon": {"_count": 1}, "without": {"_count": 1}}, "newcomers": {"_count": 2, "": {"_count": 1}, "realized": {"_count": 1}}, "candlelight": {"_count": 11, "": {"_count": 6}, "made": {"_count": 1}, "and": {"_count": 1}, "shimmering": {"_count": 1}, "his": {"_count": 2}}, "Defense": {"_count": 18, "Against": {"_count": 18}}, "vast": {"_count": 11, "echoing": {"_count": 1}, "bloody": {"_count": 1}, "hands": {"_count": 1}, "maze": {"_count": 1}, "starry": {"_count": 1}, "bed": {"_count": 1}, "flagged": {"_count": 1}, "amount": {"_count": 1}, "chamber": {"_count": 1}, "outline": {"_count": 1}, "marble": {"_count": 1}}, "impression": {"_count": 42, "of": {"_count": 1}, "that": {"_count": 34}, "Black": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "even": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}}, "Evening": {"_count": 3, "Prophet": {"_count": 3}}, "headline": {"_count": 11, "FLYING": {"_count": 1}, "SCENES": {"_count": 1}, "in": {"_count": 1}, "Mystery": {"_count": 1}, "and": {"_count": 1}, "MINISTRY": {"_count": 1}, "over": {"_count": 2}, "SCRIMGEOUR": {"_count": 1}, "when": {"_count": 1}, "EXCLUSIVE": {"_count": 1}}, "Post": {"_count": 1, "Office": {"_count": 1}}, "Misuse": {"_count": 5, "of": {"_count": 5}}, "mad": {"_count": 5, "trees": {"_count": 1}, "Bludger": {"_count": 2}, "knight": {"_count": 1}, "stuff": {"_count": 1}}, "park": {"_count": 4, "that": {"_count": 1}, "railings": {"_count": 1}, "": {"_count": 1}, "gate": {"_count": 1}}, "decision": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "obvious": {"_count": 3, "thing": {"_count": 1}, "exception": {"_count": 1}, "": {"_count": 1}}, "Whomping": {"_count": 20, "Willow": {"_count": 19}, "Willows": {"_count": 1}}, "disappointment": {"_count": 1, "in": {"_count": 1}}, "seriousness": {"_count": 2, "of": {"_count": 2}}, "Decree": {"_count": 8, "for": {"_count": 7}, "states": {"_count": 1}}, "cut": {"_count": 8, "over": {"_count": 1}, "didnt": {"_count": 1}, "with": {"_count": 1}, "beneath": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}, "deepened": {"_count": 1}, "around": {"_count": 1}}, "plate": {"_count": 4, "kept": {"_count": 1}, "toward": {"_count": 1}, "he": {"_count": 1}, "on": {"_count": 1}}, "familiar": {"_count": 20, "path": {"_count": 2}, "circular": {"_count": 1}, "corridors": {"_count": 1}, "misty": {"_count": 2}, "icy": {"_count": 1}, "screaming": {"_count": 1}, "flick": {"_count": 1}, "feeling": {"_count": 1}, "unctuous": {"_count": 1}, "smell": {"_count": 1}, "call": {"_count": 1}, "swooping": {"_count": 1}, "sneer": {"_count": 1}, "sensation": {"_count": 2}, "litter": {"_count": 1}, "boiling": {"_count": 1}, "landscape": {"_count": 1}}, "lecture": {"_count": 1, "said": {"_count": 1}}, "fat": {"_count": 2, "lady": {"_count": 1}, "pony": {"_count": 1}}, "circular": {"_count": 17, "common": {"_count": 2}, "walls": {"_count": 1}, "room": {"_count": 7}, "window": {"_count": 1}, "hallway": {"_count": 1}, "black": {"_count": 1}, "patch": {"_count": 1}, "office": {"_count": 2}, "towertop": {"_count": 1}}, "lopsided": {"_count": 2, "tables": {"_count": 1}, "man": {"_count": 1}}, "peace": {"_count": 3, "of": {"_count": 1}, "and": {"_count": 1}, "between": {"_count": 1}}, "enchanted": {"_count": 18, "ceiling": {"_count": 7}, "car": {"_count": 1}, "barrier": {"_count": 1}, "map": {"_count": 1}, "mist": {"_count": 1}, "mirror": {"_count": 1}, "repository": {"_count": 1}, "treasure": {"_count": 1}, "wall": {"_count": 1}, "protected": {"_count": 1}, "cage": {"_count": 1}, "sky": {"_count": 1}}, "bedraggled": {"_count": 2, "owl": {"_count": 1}, "crowd": {"_count": 1}}, "feet": {"_count": 5, "": {"_count": 1}, "facedown": {"_count": 1}, "of": {"_count": 3}}, "Howler": {"_count": 5, "and": {"_count": 1}, "had": {"_count": 1}, "go": {"_count": 1}, "but": {"_count": 1}, "came": {"_count": 1}}, "assembled": {"_count": 4, "students": {"_count": 2}, "owls": {"_count": 1}, "witches": {"_count": 1}}, "heavy": {"_count": 15, "perfume": {"_count": 1}, "egg": {"_count": 2}, "breathing": {"_count": 1}, "iron": {"_count": 1}, "door": {"_count": 1}, "chain": {"_count": 1}, "money": {"_count": 1}, "silver": {"_count": 1}, "brass": {"_count": 1}, "velvet": {"_count": 1}, "curtains": {"_count": 1}, "gold": {"_count": 1}, "rain": {"_count": 1}, "wooden": {"_count": 1}}, "bug": {"_count": 1, "": {"_count": 1}}, "bench": {"_count": 18, "": {"_count": 2}, "staring": {"_count": 1}, "and": {"_count": 1}, "beside": {"_count": 4}, "above": {"_count": 1}, "that": {"_count": 1}, "where": {"_count": 1}, "opposite": {"_count": 2}, "between": {"_count": 1}, "below": {"_count": 1}, "to": {"_count": 2}, "shaking": {"_count": 1}}, "properties": {"_count": 3, "of": {"_count": 3}}, "Mandrake": {"_count": 5, "": {"_count": 2}, "is": {"_count": 1}, "into": {"_count": 1}, "Draught": {"_count": 1}}, "textbook": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "while": {"_count": 1}}, "Mandrakes": {"_count": 8, "we": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "were": {"_count": 1}, "threw": {"_count": 1}, "are": {"_count": 2}}, "cry": {"_count": 1, "of": {"_count": 1}}, "earmuffs": {"_count": 1, "over": {"_count": 1}}, "tufty": {"_count": 1, "plants": {"_count": 1}}, "tufted": {"_count": 2, "leaves": {"_count": 1}, "tail": {"_count": 1}}, "thumbsup": {"_count": 4, "and": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 1}}, "sacks": {"_count": 2, "over": {"_count": 1}, "pulling": {"_count": 1}}, "Venomous": {"_count": 2, "Tentacula": {"_count": 2}}, "hand": {"_count": 29, "": {"_count": 3}, "with": {"_count": 3}, "he": {"_count": 2}, "on": {"_count": 4}, "was": {"_count": 2}, "still": {"_count": 1}, "gripping": {"_count": 1}, "pinning": {"_count": 1}, "holding": {"_count": 1}, "of": {"_count": 3}, "that": {"_count": 1}, "flew": {"_count": 1}, "released": {"_count": 1}, "in": {"_count": 1}, "gesture": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "while": {"_count": 1}}, "lunch": {"_count": 8, "bell": {"_count": 1}, "table": {"_count": 1}, "trolley": {"_count": 3}, "hour": {"_count": 2}, "": {"_count": 1}}, "now": {"_count": 14, "hissing": {"_count": 1}, "familiar": {"_count": 1}, "completely": {"_count": 1}, "rattling": {"_count": 1}, "empty": {"_count": 1}, "silently": {"_count": 1}, "blazing": {"_count": 1}, "almostdeserted": {"_count": 1}, "extinct": {"_count": 1}, "headless": {"_count": 1}, "sodden": {"_count": 1}, "setting": {"_count": 1}, "partially": {"_count": 1}, "packed": {"_count": 1}}, "handful": {"_count": 2, "of": {"_count": 2}}, "overcast": {"_count": 1, "courtyard": {"_count": 1}}, "camera": {"_count": 6, "hopefully": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 4}}, "film": {"_count": 2, "in": {"_count": 1}, "inside": {"_count": 1}}, "picturesll": {"_count": 1, "move": {"_count": 1}}, "courtyard": {"_count": 9, "": {"_count": 1}, "was": {"_count": 1}, "before": {"_count": 1}, "with": {"_count": 1}, "after": {"_count": 2}, "determinedly": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "wise": {"_count": 3, "Harry": {"_count": 1}, "old": {"_count": 1}, "little": {"_count": 1}}, "phrase": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "Bandon": {"_count": 2, "Banshee": {"_count": 2}}, "test": {"_count": 12, "papers": {"_count": 1}, "": {"_count": 5}, "their": {"_count": 1}, "twice": {"_count": 1}, "and": {"_count": 1}, "whether": {"_count": 1}, "do": {"_count": 1}, "in": {"_count": 1}}, "papers": {"_count": 10, "and": {"_count": 1}, "more": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}, "laid": {"_count": 1}, "inside": {"_count": 1}, "for": {"_count": 1}, "said": {"_count": 1}, "all": {"_count": 1}}, "foulest": {"_count": 2, "creatures": {"_count": 2}}, "ears": {"_count": 10, "and": {"_count": 3}, "for": {"_count": 1}, "busied": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "of": {"_count": 1}}, "waste": {"_count": 1, "basket": {"_count": 1}}, "smashed": {"_count": 5, "window": {"_count": 3}, "bowl": {"_count": 1}, "photograph": {"_count": 1}}, "iron": {"_count": 3, "chandelier": {"_count": 1}, "peg": {"_count": 1}, "ring": {"_count": 1}}, "pixies": {"_count": 3, "seized": {"_count": 1}, "Professor": {"_count": 1}, "now": {"_count": 1}}, "chandelier": {"_count": 9, "gave": {"_count": 1}, "and": {"_count": 3}, "occasionally": {"_count": 1}, "screwed": {"_count": 1}, "": {"_count": 3}}, "relative": {"_count": 1, "calm": {"_count": 1}}, "remaining": {"_count": 15, "pixies": {"_count": 1}, "owls": {"_count": 1}, "Weasleys": {"_count": 1}, "students": {"_count": 2}, "Cauldron": {"_count": 1}, "books": {"_count": 1}, "stairs": {"_count": 1}, "thirtyfive": {"_count": 1}, "few": {"_count": 1}, "Death": {"_count": 2}, "armchair": {"_count": 1}, "space": {"_count": 1}, "teachers": {"_count": 1}}, "disasterous": {"_count": 1, "car": {"_count": 1}}, "weekend": {"_count": 9, "": {"_count": 3}, "the": {"_count": 1}, "trip": {"_count": 1}, "than": {"_count": 1}, "instructions": {"_count": 1}, "though": {"_count": 1}, "Remus": {"_count": 1}}, "pinkandgold": {"_count": 1, "sky": {"_count": 1}}, "mark": {"_count": 10, "this": {"_count": 1}, "of": {"_count": 2}, "Death": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 2}, "on": {"_count": 3}}, "complicated": {"_count": 1, "rules": {"_count": 1}}, "biggish": {"_count": 1, "red": {"_count": 1}}, "pitch": {"_count": 49, "theyre": {"_count": 1}, "blackness": {"_count": 1}, "carrying": {"_count": 1}, "toward": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 10}, "it": {"_count": 1}, "at": {"_count": 1}, "visibility": {"_count": 1}, "and": {"_count": 4}, "check": {"_count": 1}, "without": {"_count": 1}, "gazing": {"_count": 1}, "hovering": {"_count": 1}, "cried": {"_count": 1}, "again": {"_count": 2}, "going": {"_count": 1}, "come": {"_count": 1}, "as": {"_count": 1}, "for": {"_count": 1}, "both": {"_count": 1}, "black": {"_count": 1}, "to": {"_count": 3}, "a": {"_count": 1}, "her": {"_count": 1}, "close": {"_count": 1}, "they": {"_count": 1}, "snorting": {"_count": 1}, "arm": {"_count": 2}, "Ron": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}}, "dewdrenched": {"_count": 1, "grass": {"_count": 1}}, "changing": {"_count": 19, "rooms": {"_count": 8}, "room": {"_count": 11}}, "arrows": {"_count": 1, "began": {"_count": 1}}, "diagram": {"_count": 2, "like": {"_count": 1}, "of": {"_count": 1}}, "final": {"_count": 27, "match": {"_count": 2}, "straw": {"_count": 2}, "term": {"_count": 1}, "evening": {"_count": 1}, "of": {"_count": 2}, "quavering": {"_count": 1}, "lesson": {"_count": 1}, "hurdle": {"_count": 1}, "task": {"_count": 1}, "ingredient": {"_count": 1}, "time": {"_count": 1}, "year": {"_count": 1}, "one": {"_count": 1}, "lineup": {"_count": 1}, "bit": {"_count": 1}, "score": {"_count": 1}, "bell": {"_count": 1}, "weekend": {"_count": 1}, "identifying": {"_count": 1}, "Quidditch": {"_count": 2}, "destination": {"_count": 1}, "decision": {"_count": 1}, "meeting": {"_count": 1}}, "highest": {"_count": 12, "seats": {"_count": 1}, "cage": {"_count": 1}, "qualification": {"_count": 1}, "point": {"_count": 2}, "total": {"_count": 1}, "bench": {"_count": 1}, "benches": {"_count": 1}, "security": {"_count": 1}, "of": {"_count": 1}, "tower": {"_count": 2}}, "deserted": {"_count": 27, "stadium": {"_count": 1}, "corridor": {"_count": 5}, "entrance": {"_count": 4}, "staffroom": {"_count": 1}, "corridors": {"_count": 2}, "classroom": {"_count": 2}, "landscape": {"_count": 1}, "moor": {"_count": 1}, "common": {"_count": 1}, "road": {"_count": 1}, "grounds": {"_count": 1}, "room": {"_count": 1}, "labyrinth": {"_count": 1}, "street": {"_count": 2}, "lamp": {"_count": 1}, "snowy": {"_count": 1}, "castle": {"_count": 1}}, "need": {"_count": 6, "to": {"_count": 4}, "for": {"_count": 1}, "arise": {"_count": 1}}, "six": {"_count": 4, "large": {"_count": 1}, "of": {"_count": 2}, "Horcruxes": {"_count": 1}}, "generous": {"_count": 1, "gift": {"_count": 1}}, "brooms": {"_count": 1, "my": {"_count": 1}}, "arms": {"_count": 14, "": {"_count": 1}, "wheeled": {"_count": 1}, "of": {"_count": 10}, "lifted": {"_count": 1}, "that": {"_count": 1}}, "oneroomed": {"_count": 1, "cabin": {"_count": 1}}, "basin": {"_count": 36, "": {"_count": 12}, "and": {"_count": 9}, "began": {"_count": 1}, "was": {"_count": 3}, "But": {"_count": 1}, "a": {"_count": 1}, "carried": {"_count": 1}, "with": {"_count": 1}, "again": {"_count": 1}, "each": {"_count": 1}, "so": {"_count": 1}, "refilled": {"_count": 1}, "flung": {"_count": 1}, "he": {"_count": 1}, "beneath": {"_count": 1}}, "ony": {"_count": 4, "man": {"_count": 1}, "one": {"_count": 1}, "domestic": {"_count": 1}, "person": {"_count": 1}}, "tabletop": {"_count": 2, "looking": {"_count": 1}, "and": {"_count": 1}}, "thuds": {"_count": 1, "of": {"_count": 1}}, "cabin": {"_count": 28, "": {"_count": 9}, "door": {"_count": 2}, "came": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 4}, "through": {"_count": 1}, "windows": {"_count": 2}, "Fang": {"_count": 1}, "pausing": {"_count": 1}, "taking": {"_count": 1}, "looking": {"_count": 1}, "for": {"_count": 1}, "they": {"_count": 1}, "toward": {"_count": 1}, "now": {"_count": 1}}, "strong": {"_count": 1, "impression": {"_count": 1}}, "cool": {"_count": 21, "entrance": {"_count": 1}, "night": {"_count": 1}, "female": {"_count": 6}, "glass": {"_count": 1}, "and": {"_count": 1}, "dark": {"_count": 1}, "shade": {"_count": 1}, "misty": {"_count": 1}, "surface": {"_count": 1}, "trees": {"_count": 1}, "blue": {"_count": 1}, "clear": {"_count": 1}, "grass": {"_count": 1}, "outside": {"_count": 1}, "breeze": {"_count": 1}, "air": {"_count": 1}}, "worse": {"_count": 8, "deal": {"_count": 1}, "of": {"_count": 1}, "for": {"_count": 4}, "it": {"_count": 1}, "he": {"_count": 1}}, "secondfloor": {"_count": 1, "corridor": {"_count": 1}}, "scalawag": {"_count": 1, "": {"_count": 1}}, "envelopes": {"_count": 4, "": {"_count": 1}, "contents": {"_count": 1}, "up": {"_count": 1}, "as": {"_count": 1}}, "thousandth": {"_count": 1, "envelope": {"_count": 1}}, "spitting": {"_count": 3, "of": {"_count": 1}, "hissing": {"_count": 1}, "fire": {"_count": 1}}, "dying": {"_count": 5, "candles": {"_count": 1}, "fire": {"_count": 1}, "sun": {"_count": 1}, "embers": {"_count": 1}, "man": {"_count": 1}}, "bone": {"_count": 1, "marrow": {"_count": 1}}, "bestseller": {"_count": 1, "list": {"_count": 1}}, "darkened": {"_count": 3, "room": {"_count": 1}, "floor": {"_count": 1}, "staircase": {"_count": 1}}, "School": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "slime": {"_count": 1, "off": {"_count": 1}}, "skin": {"_count": 14, "and": {"_count": 1}, "all": {"_count": 1}, "when": {"_count": 1}, "on": {"_count": 2}, "there": {"_count": 2}, "was": {"_count": 1}, "healed": {"_count": 1}, "then": {"_count": 1}, "young": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}}, "speed": {"_count": 8, "of": {"_count": 6}, "dial": {"_count": 2}}, "Headless": {"_count": 5, "Hunt": {"_count": 5}}, "skeletal": {"_count": 2, "gray": {"_count": 1}, "wizard": {"_count": 1}}, "flu": {"_count": 1, "and": {"_count": 1}}, "accusing": {"_count": 1, "stare": {"_count": 1}}, "rule": {"_count": 6, "breaker": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 1}, "book": {"_count": 2}, "that": {"_count": 1}}, "muddy": {"_count": 5, "puddle": {"_count": 1}, "grounds": {"_count": 1}, "banks": {"_count": 1}, "water": {"_count": 1}, "lawns": {"_count": 1}}, "number": {"_count": 19, "of": {"_count": 11}, "twelve": {"_count": 2}, "two": {"_count": 2}, "one": {"_count": 1}, "four": {"_count": 1}, "nine": {"_count": 2}}, "ink": {"_count": 14, "pot": {"_count": 2}, "bottle": {"_count": 6}, "was": {"_count": 1}, "so": {"_count": 1}, "off": {"_count": 2}, "had": {"_count": 1}, "has": {"_count": 1}}, "oil": {"_count": 2, "lamp": {"_count": 1}, "lamps": {"_count": 1}}, "sheaf": {"_count": 4, "of": {"_count": 4}}, "Kwikspell": {"_count": 4, "method": {"_count": 1}, "envelope": {"_count": 2}, "course": {"_count": 1}}, "recipe": {"_count": 3, "of": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 1}}, "tartan": {"_count": 1, "scarf": {"_count": 1}}, "wreckage": {"_count": 9, "of": {"_count": 4}, "covered": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "roomier": {"_count": 1, "dungeons": {"_count": 1}}, "countless": {"_count": 3, "squashy": {"_count": 1}, "parents": {"_count": 1}, "souls": {"_count": 1}}, "case": {"_count": 19, "of": {"_count": 7}, "to": {"_count": 2}, "upstairs": {"_count": 1}, "Buckbeak": {"_count": 1}, "for": {"_count": 1}, "Cornelius": {"_count": 1}, "obsessively": {"_count": 1}, "": {"_count": 3}, "against": {"_count": 1}, "Harry": {"_count": 1}}, "brilliant": {"_count": 4, "orange": {"_count": 1}, "blue": {"_count": 1}, "glare": {"_count": 1}, "windows": {"_count": 1}}, "salamander": {"_count": 1, "suddenly": {"_count": 1}}, "spectacular": {"_count": 3, "display": {"_count": 1}, "duel": {"_count": 1}, "view": {"_count": 1}}, "salamanders": {"_count": 2, "mouth": {"_count": 1}, "and": {"_count": 1}}, "deathday": {"_count": 3, "party": {"_count": 3}}, "entertainment": {"_count": 1, "": {"_count": 1}}, "dreadful": {"_count": 4, "quavering": {"_count": 1}, "old": {"_count": 1}, "truth": {"_count": 1}, "Loxias": {"_count": 1}}, "dance": {"_count": 16, "floor": {"_count": 16}}, "stinking": {"_count": 2, "salmon": {"_count": 1}, "Daily": {"_count": 1}}, "putrid": {"_count": 2, "haggis": {"_count": 1}, "fumes": {"_count": 1}}, "glummest": {"_count": 1, "face": {"_count": 1}}, "orchestra": {"_count": 2, "": {"_count": 1}, "ground": {"_count": 1}}, "pack": {"_count": 1, "was": {"_count": 1}}, "Hunt": {"_count": 1, "": {"_count": 1}}, "fellow": {"_count": 1, "I": {"_count": 1}}, "podium": {"_count": 1, "and": {"_count": 1}}, "dimly": {"_count": 3, "lit": {"_count": 3}}, "flaming": {"_count": 3, "torches": {"_count": 1}, "cabin": {"_count": 1}, "hat": {"_count": 1}}, "message": {"_count": 22, "eyes": {"_count": 1}, "on": {"_count": 2}, "The": {"_count": 1}, "": {"_count": 4}, "swallowed": {"_count": 1}, "upon": {"_count": 1}, "POTTER": {"_count": 1}, "curled": {"_count": 1}, "said": {"_count": 2}, "to": {"_count": 1}, "a": {"_count": 1}, "yet": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "over": {"_count": 1}, "meant": {"_count": 1}, "she": {"_count": 1}}, "caretakers": {"_count": 3, "cat": {"_count": 2}, "skeletal": {"_count": 1}}, "torch": {"_count": 3, "bracket": {"_count": 3}}, "loud": {"_count": 8, "happy": {"_count": 1}, "cracking": {"_count": 1}, "babble": {"_count": 1}, "crackling": {"_count": 1}, "deep": {"_count": 1}, "tattoo": {"_count": 1}, "noise": {"_count": 1}, "bangs": {"_count": 1}}, "bustle": {"_count": 2, "the": {"_count": 1}, "of": {"_count": 1}}, "hanging": {"_count": 2, "cat": {"_count": 1}, "immobile": {"_count": 1}}, "mass": {"_count": 12, "of": {"_count": 8}, "murder": {"_count": 1}, "on": {"_count": 1}, "revolt": {"_count": 1}, "mourning": {"_count": 1}}, "grisly": {"_count": 1, "sight": {"_count": 1}}, "quiet": {"_count": 7, "": {"_count": 2}, "of": {"_count": 1}, "life": {"_count": 1}, "but": {"_count": 1}, "beautiful": {"_count": 1}, "webspun": {"_count": 1}}, "Heir": {"_count": 13, "beware": {"_count": 1}, "of": {"_count": 11}, "Beware": {"_count": 1}}, "scene": {"_count": 50, "followed": {"_count": 1}, "of": {"_count": 5}, "": {"_count": 8}, "cleared": {"_count": 1}, "Peeves": {"_count": 1}, "didnt": {"_count": 1}, "on": {"_count": 1}, "after": {"_count": 1}, "was": {"_count": 2}, "at": {"_count": 1}, "in": {"_count": 5}, "Snape": {"_count": 1}, "from": {"_count": 2}, "were": {"_count": 1}, "he": {"_count": 2}, "Harry": {"_count": 1}, "we": {"_count": 2}, "when": {"_count": 1}, "lest": {"_count": 1}, "an": {"_count": 1}, "moments": {"_count": 1}, "outside": {"_count": 1}, "and": {"_count": 1}, "reformed": {"_count": 1}, "dissolved": {"_count": 2}, "changed": {"_count": 1}, "took": {"_count": 1}, "shifted": {"_count": 1}, "their": {"_count": 1}, "thought": {"_count": 1}}, "Lockharts": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "pictures": {"_count": 10, "dodging": {"_count": 1}, "which": {"_count": 1}, "of": {"_count": 2}, "would": {"_count": 1}, "let": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "linking": {"_count": 1}, "blurred": {"_count": 1}}, "polished": {"_count": 8, "surface": {"_count": 2}, "top": {"_count": 1}, "door": {"_count": 1}, "wooden": {"_count": 2}, "floor": {"_count": 1}, "wood": {"_count": 1}}, "pool": {"_count": 24, "of": {"_count": 3}, "": {"_count": 6}, "at": {"_count": 2}, "where": {"_count": 1}, "rose": {"_count": 1}, "to": {"_count": 2}, "with": {"_count": 1}, "after": {"_count": 1}, "bottom": {"_count": 1}, "broke": {"_count": 1}, "he": {"_count": 2}, "and": {"_count": 2}, "unfolded": {"_count": 1}}, "Transmogrifian": {"_count": 1, "Torture": {"_count": 1}}, "townsfolk": {"_count": 1, "with": {"_count": 1}}, "attack": {"_count": 11, "on": {"_count": 3}, "had": {"_count": 1}, "by": {"_count": 1}, "inflicted": {"_count": 1}, "so": {"_count": 1}, "he": {"_count": 1}, "right": {"_count": 1}, "": {"_count": 2}}, "attacker": {"_count": 5, "might": {"_count": 2}, "whoever": {"_count": 1}, "though": {"_count": 1}, "only": {"_count": 1}}, "crime": {"_count": 5, "he": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}, "of": {"_count": 1}}, "maniac": {"_count": 2, "who": {"_count": 2}}, "bookshelves": {"_count": 4, "": {"_count": 2}, "for": {"_count": 1}, "pulling": {"_count": 1}}, "copies": {"_count": 2, "of": {"_count": 1}, "are": {"_count": 1}}, "Lockhart": {"_count": 2, "books": {"_count": 2}}, "legend": {"_count": 7, "of": {"_count": 2}, "sealed": {"_count": 1}, "HAVE": {"_count": 1}, "beneath": {"_count": 1}, "THE": {"_count": 1}, "said": {"_count": 1}}, "Chamber": {"_count": 73, "of": {"_count": 44}, "": {"_count": 6}, "can": {"_count": 1}, "really": {"_count": 1}, "when": {"_count": 1}, "was": {"_count": 3}, "last": {"_count": 2}, "is": {"_count": 1}, "has": {"_count": 1}, "and": {"_count": 2}, "this": {"_count": 1}, "itself": {"_count": 2}, "forever": {"_count": 1}, "not": {"_count": 2}, "again": {"_count": 1}, "wall": {"_count": 1}, "seemed": {"_count": 1}, "entrance": {"_count": 1}, "that": {"_count": 1}}, "dullest": {"_count": 2, "subject": {"_count": 1}, "speech": {"_count": 1}}, "precise": {"_count": 3, "date": {"_count": 1}, "positions": {"_count": 1}, "and": {"_count": 1}}, "founders": {"_count": 3, "worked": {"_count": 1}, "four": {"_count": 1}, "thought": {"_count": 1}}, "fanciful": {"_count": 1, "legend": {"_count": 1}}, "horror": {"_count": 5, "within": {"_count": 1}, "inside": {"_count": 1}, "of": {"_count": 2}, "and": {"_count": 1}}, "gullible": {"_count": 1, "": {"_count": 1}}, "\u2018horror": {"_count": 1, "within": {"_count": 1}}, "likes": {"_count": 4, "of": {"_count": 4}}, "teeming": {"_count": 2, "corridors": {"_count": 1}, "corridor": {"_count": 1}}, "throng": {"_count": 6, "Colin": {"_count": 1}, "Yet": {"_count": 1}, "wending": {"_count": 1}, "pressing": {"_count": 1}, "a": {"_count": 1}, "sniggered": {"_count": 1}}, "tide": {"_count": 3, "of": {"_count": 3}}, "impulse": {"_count": 5, "to": {"_count": 3}, "": {"_count": 1}, "there": {"_count": 1}}, "gloomiest": {"_count": 1, "most": {"_count": 1}}, "stalls": {"_count": 1, "were": {"_count": 1}}, "Ubend": {"_count": 2, "": {"_count": 1}, "thinking": {"_count": 1}}, "smudges": {"_count": 1, "it": {"_count": 1}}, "Squibs": {"_count": 2, "and": {"_count": 1}, "cat": {"_count": 1}}, "potions": {"_count": 6, "": {"_count": 1}, "had": {"_count": 1}, "fumes": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}, "ingredients": {"_count": 1}}, "theory": {"_count": 8, "we": {"_count": 1}, "would": {"_count": 1}, "being": {"_count": 1}, "hard": {"_count": 2}, "exams": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "disastrous": {"_count": 1, "episode": {"_count": 1}}, "immensely": {"_count": 3, "complex": {"_count": 1}, "large": {"_count": 1}, "difficult": {"_count": 1}}, "fur": {"_count": 1, "vanished": {"_count": 1}}, "fangs": {"_count": 3, "shrank": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "monthly": {"_count": 1, "terror": {"_count": 1}}, "Wagga": {"_count": 1, "Wagga": {"_count": 1}}, "author": {"_count": 3, "of": {"_count": 2}, "sent": {"_count": 1}}, "teastrainer": {"_count": 1, "Well": {"_count": 1}}, "revolted": {"_count": 1, "look": {"_count": 1}}, "season": {"_count": 8, "I": {"_count": 1}, "remember": {"_count": 1}, "": {"_count": 3}, "Gryffindor": {"_count": 1}, "seemed": {"_count": 1}, "was": {"_count": 1}}, "National": {"_count": 1, "Squad": {"_count": 1}}, "eradication": {"_count": 1, "of": {"_count": 1}}, "signature": {"_count": 4, "on": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "Harry": {"_count": 1}}, "muffled": {"_count": 7, "stillness": {"_count": 1}, "voices": {"_count": 1}, "shouting": {"_count": 1}, "silence": {"_count": 1}, "barking": {"_count": 1}, "yells": {"_count": 1}, "sounds": {"_count": 1}}, "lofty": {"_count": 2, "shelves": {"_count": 1}, "voice": {"_count": 1}}, "dampspotted": {"_count": 1, "pages": {"_count": 1}}, "artist": {"_count": 1, "had": {"_count": 1}}, "looks": {"_count": 17, "of": {"_count": 10}, "on": {"_count": 7}}, "student": {"_count": 2, "storecupboard": {"_count": 1}, "who": {"_count": 1}}, "fluxweed": {"_count": 1, "has": {"_count": 1}}, "lacewings": {"_count": 1, "have": {"_count": 1}}, "Muggleborns": {"_count": 5, "in": {"_count": 1}, "won": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}, "but": {"_count": 1}}, "fastest": {"_count": 2, "racing": {"_count": 1}, "broom": {"_count": 1}}, "fourteen": {"_count": 3, "players": {"_count": 2}, "eyewitnesses": {"_count": 1}}, "leaden": {"_count": 1, "sky": {"_count": 1}}, "rogue": {"_count": 3, "one": {"_count": 1}, "Bludger": {"_count": 2}}, "determined": {"_count": 1, "look": {"_count": 1}}, "telltale": {"_count": 1, "whoosh": {"_count": 1}}, "ballet": {"_count": 2, "Potter": {"_count": 1}, "": {"_count": 1}}, "searing": {"_count": 2, "pain": {"_count": 2}}, "shimmering": {"_count": 3, "sneering": {"_count": 1}, "bell": {"_count": 1}, "shrinking": {"_count": 1}}, "he": {"_count": 1, "gasped": {"_count": 1}}, "mud": {"_count": 7, "and": {"_count": 2}, "": {"_count": 3}, "with": {"_count": 1}, "hit": {"_count": 1}}, "anxious": {"_count": 1, "crowd": {"_count": 1}}, "thicket": {"_count": 1, "of": {"_count": 1}}, "bones": {"_count": 8, "are": {"_count": 1}, "of": {"_count": 2}, "from": {"_count": 1}, "in": {"_count": 2}, "and": {"_count": 1}, "had": {"_count": 1}}, "sad": {"_count": 2, "limp": {"_count": 1}, "business": {"_count": 1}}, "curtain": {"_count": 10, "drawn": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "Mrs": {"_count": 1}, "an": {"_count": 1}, "behind": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}}, "rubbery": {"_count": 1, "boneless": {"_count": 1}}, "cuff": {"_count": 1, "": {"_count": 1}}, "SkeleGro": {"_count": 2, "": {"_count": 1}, "has": {"_count": 1}}, "Polyjuice": {"_count": 12, "Potion": {"_count": 12}}, "houseelfs": {"_count": 7, "enslavement": {"_count": 2}, "former": {"_count": 1}, "ears": {"_count": 2}, "attitude": {"_count": 1}, "": {"_count": 1}}, "lowly": {"_count": 1, "the": {"_count": 1}}, "enslaved": {"_count": 1, "we": {"_count": 1}}, "footsteps": {"_count": 8, "drew": {"_count": 1}, "until": {"_count": 1}, "to": {"_count": 1}, "were": {"_count": 1}, "came": {"_count": 1}, "": {"_count": 1}, "running": {"_count": 1}, "of": {"_count": 1}}, "acrid": {"_count": 1, "smell": {"_count": 1}}, "stall": {"_count": 5, "and": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 1}, "door": {"_count": 1}}, "rim": {"_count": 9, "told": {"_count": 1}, "of": {"_count": 8}}, "leeches": {"_count": 1, "": {"_count": 1}}, "bicorn": {"_count": 1, "horn": {"_count": 1}}, "boomslang": {"_count": 2, "skin": {"_count": 2}}, "actual": {"_count": 3, "stealing": {"_count": 1}, "test": {"_count": 1}, "spiral": {"_count": 1}}, "fumes": {"_count": 5, "making": {"_count": 1}, "from": {"_count": 2}, "wafting": {"_count": 1}, "of": {"_count": 1}}, "Swelling": {"_count": 1, "Solution": {"_count": 1}}, "weight": {"_count": 19, "of": {"_count": 17}, "vanish": {"_count": 1}, "but": {"_count": 1}}, "various": {"_count": 10, "swellings": {"_count": 1}, "ways": {"_count": 1}, "trunks": {"_count": 1}, "varieties": {"_count": 1}, "Weasley": {"_count": 1}, "Healers": {"_count": 1}, "antidotes": {"_count": 1}, "angles": {"_count": 1}, "hexes": {"_count": 1}, "stories": {"_count": 1}}, "twisted": {"_count": 5, "black": {"_count": 1}, "face": {"_count": 2}, "laws": {"_count": 1}, "experiments": {"_count": 1}}, "firework": {"_count": 1, "": {"_count": 1}}, "notice": {"_count": 16, "board": {"_count": 7}, "anyone": {"_count": 1}, "over": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "of": {"_count": 1}, "she": {"_count": 1}}, "stage": {"_count": 4, "resplendent": {"_count": 1}, "smashed": {"_count": 1}, "to": {"_count": 1}, "where": {"_count": 1}}, "accepted": {"_count": 1, "combative": {"_count": 1}}, "silent": {"_count": 18, "crowd": {"_count": 1}, "scream": {"_count": 1}, "staffroom": {"_count": 1}, "wizards": {"_count": 1}, "castle": {"_count": 1}, "room": {"_count": 2}, "dungeon": {"_count": 1}, "snowy": {"_count": 1}, "figures": {"_count": 1}, "watchful": {"_count": 1}, "forest": {"_count": 1}, "water": {"_count": 1}, "echoing": {"_count": 1}, "group": {"_count": 1}, "motionless": {"_count": 1}, "prisoners": {"_count": 1}, "Hall": {"_count": 1}}, "count": {"_count": 12, "of": {"_count": 12}}, "ready": {"_count": 13, "": {"_count": 7}, "automatically": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 2}, "Harry": {"_count": 1}, "hurtled": {"_count": 1}}, "battling": {"_count": 3, "crowd": {"_count": 1}, "leprechauns": {"_count": 1}, "giants": {"_count": 1}}, "aftermath": {"_count": 6, "of": {"_count": 6}}, "duels": {"_count": 1, "": {"_count": 1}}, "simplest": {"_count": 2, "spells": {"_count": 1}, "way": {"_count": 1}}, "angry": {"_count": 4, "snake": {"_count": 2}, "burn": {"_count": 1}, "burning": {"_count": 1}}, "symbol": {"_count": 11, "of": {"_count": 2}, "means": {"_count": 1}, "and": {"_count": 1}, "beneath": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}, "meant": {"_count": 1}}, "urge": {"_count": 8, "to": {"_count": 7}, "": {"_count": 1}}, "loose": {"_count": 12, "is": {"_count": 1}, "floorboard": {"_count": 5}, "Yeah": {"_count": 1}, "again": {"_count": 1}, "Ron": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "stout": {"_count": 1, "boy": {"_count": 1}}, "Dueling": {"_count": 3, "Club": {"_count": 3}}, "gilded": {"_count": 1, "cover": {"_count": 1}}, "balaclava": {"_count": 1, "so": {"_count": 1}}, "headmasters": {"_count": 20, "permission": {"_count": 1}, "job": {"_count": 1}, "office": {"_count": 7}, "absence": {"_count": 1}, "and": {"_count": 2}, "words": {"_count": 1}, "study": {"_count": 3}, "chair": {"_count": 3}, "desk": {"_count": 1}}, "hen": {"_count": 1, "coop": {"_count": 1}}, "torches": {"_count": 4, "had": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "strangest": {"_count": 9, "sight": {"_count": 1}, "sensation": {"_count": 1}, "assortment": {"_count": 1}, "feeling": {"_count": 5}, "feature": {"_count": 1}}, "bodies": {"_count": 7, "": {"_count": 1}, "hind": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 2}, "lying": {"_count": 1}}, "act": {"_count": 5, "": {"_count": 1}, "of": {"_count": 4}}, "gargoyle": {"_count": 12, "sprang": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "outside": {"_count": 1}, "leapt": {"_count": 1}, "I": {"_count": 1}, "was": {"_count": 1}, "slid": {"_count": 1}, "guarding": {"_count": 1}}, "sleeping": {"_count": 8, "witches": {"_count": 1}, "portraits": {"_count": 1}, "bags": {"_count": 2}, "Moody": {"_count": 2}, "creature": {"_count": 1}, "snake": {"_count": 1}}, "still": {"_count": 9, "and": {"_count": 2}, "night": {"_count": 1}, "surface": {"_count": 1}, "air": {"_count": 2}, "summer": {"_count": 2}, "sobbing": {"_count": 1}}, "bird": {"_count": 6, "looked": {"_count": 1}, "burst": {"_count": 1}, "meanwhile": {"_count": 1}, "was": {"_count": 1}, "lay": {"_count": 1}, "a": {"_count": 1}}, "ashes": {"_count": 2, "": {"_count": 2}}, "shock": {"_count": 11, "of": {"_count": 9}, "would": {"_count": 1}, "": {"_count": 1}}, "rooster": {"_count": 4, "around": {"_count": 1}, "falling": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}}, "tips": {"_count": 16, "of": {"_count": 15}, "written": {"_count": 1}}, "disembodied": {"_count": 4, "voice": {"_count": 3}, "witchs": {"_count": 1}}, "muttering": {"_count": 3, "pointing": {"_count": 1}, "came": {"_count": 1}, "will": {"_count": 1}}, "credit": {"_count": 3, "for": {"_count": 2}, "and": {"_count": 1}}, "run": {"_count": 15, "of": {"_count": 1}, "from": {"_count": 2}, "said": {"_count": 1}, "": {"_count": 5}, "with": {"_count": 2}, "for": {"_count": 1}, "how": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}}, "Cannons": {"_count": 4, "a": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 1}, "belt": {"_count": 1}}, "bout": {"_count": 1, "of": {"_count": 1}}, "supermarket": {"_count": 1, "for": {"_count": 1}}, "single": {"_count": 7, "hair": {"_count": 1}, "name": {"_count": 1}, "sock": {"_count": 1}, "seat": {"_count": 1}, "patch": {"_count": 1}, "word": {"_count": 1}, "knot": {"_count": 1}}, "operation": {"_count": 2, "went": {"_count": 1}, "he": {"_count": 1}}, "chocolate": {"_count": 7, "cakes": {"_count": 1}, "but": {"_count": 2}, "and": {"_count": 1}, "on": {"_count": 1}, "Hagrid": {"_count": 1}, "Lupin": {"_count": 1}}, "banisters": {"_count": 8, "": {"_count": 4}, "of": {"_count": 2}, "glare": {"_count": 1}, "had": {"_count": 1}}, "cakes": {"_count": 2, "to": {"_count": 1}, "whole": {"_count": 1}}, "hardest": {"_count": 3, "part": {"_count": 1}, "job": {"_count": 1}, "of": {"_count": 1}}, "buckets": {"_count": 2, "and": {"_count": 2}}, "bristles": {"_count": 1, "that": {"_count": 1}}, "scrape": {"_count": 1, "of": {"_count": 1}}, "gloop": {"_count": 1, "gloop": {"_count": 1}}, "bubbling": {"_count": 1, "glutinous": {"_count": 1}}, "laundry": {"_count": 2, "Hermione": {"_count": 1}, "basket": {"_count": 1}}, "splotched": {"_count": 1, "page": {"_count": 1}}, "hairs": {"_count": 4, "": {"_count": 1}, "stand": {"_count": 1}, "on": {"_count": 2}}, "khaki": {"_count": 1, "color": {"_count": 1}}, "fingers": {"_count": 5, "thickened": {"_count": 1}, "his": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 1}, "trying": {"_count": 1}}, "nails": {"_count": 2, "broadened": {"_count": 1}, "digging": {"_count": 1}}, "knuckles": {"_count": 5, "were": {"_count": 1}, "of": {"_count": 3}, "you": {"_count": 1}}, "stonecold": {"_count": 1, "floor": {"_count": 1}}, "spare": {"_count": 4, "ones": {"_count": 1}, "bedroom": {"_count": 1}, "": {"_count": 1}, "table": {"_count": 1}}, "short": {"_count": 6, "growth": {"_count": 1}, "stretch": {"_count": 1}, "figure": {"_count": 1}, "term": {"_count": 1}, "round": {"_count": 1}, "news": {"_count": 1}}, "deep": {"_count": 8, "grunt": {"_count": 1}, "dark": {"_count": 1}, "blue": {"_count": 1}, "channels": {"_count": 1}, "pool": {"_count": 1}, "grunting": {"_count": 1}, "wounds": {"_count": 1}, "cut": {"_count": 1}}, "cracked": {"_count": 6, "mirror": {"_count": 4}, "FoeGlass": {"_count": 1}, "dusty": {"_count": 1}}, "pudding": {"_count": 1, "bowl": {"_count": 1}}, "watch": {"_count": 12, "that": {"_count": 1}, "for": {"_count": 2}, "wore": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "will": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}}, "clipping": {"_count": 3, "quickly": {"_count": 1}, "back": {"_count": 1}, "smoothed": {"_count": 1}}, "uptake": {"_count": 3, "": {"_count": 1}, "did": {"_count": 1}, "modifying": {"_count": 1}}, "Mudbloods": {"_count": 3, "friend": {"_count": 1}, "havent": {"_count": 1}, "": {"_count": 1}}, "Mudblood": {"_count": 9, "filth": {"_count": 1}, "standing": {"_count": 1}, "Granger": {"_count": 1}, "": {"_count": 3}, "I": {"_count": 1}, "then": {"_count": 1}, "girl": {"_count": 1}}, "drawingroom": {"_count": 2, "floor": {"_count": 1}, "door": {"_count": 1}}, "length": {"_count": 14, "of": {"_count": 14}}, "attacks": {"_count": 8, "but": {"_count": 1}, "this": {"_count": 1}, "stop": {"_count": 1}, "dont": {"_count": 1}, "mustve": {"_count": 1}, "yet": {"_count": 1}, "said": {"_count": 2}}, "ppotion": {"_count": 1, "isnt": {"_count": 1}}, "hundredth": {"_count": 3, "time": {"_count": 3}}, "smarmiest": {"_count": 1, "bloke": {"_count": 1}}, "infirmary": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "door": {"_count": 1}, "too": {"_count": 1}}, "outofsight": {"_count": 3, "corridor": {"_count": 1}, "kissing": {"_count": 1}, "walls": {"_count": 1}}, "already": {"_count": 3, "sopping": {"_count": 1}, "limited": {"_count": 1}, "crammed": {"_count": 1}}, "Ministrys": {"_count": 15, "confiscated": {"_count": 1}, "attitude": {"_count": 1}, "leaning": {"_count": 1}, "put": {"_count": 1}, "interfering": {"_count": 1}, "really": {"_count": 1}, "worst": {"_count": 1}, "employ": {"_count": 1}, "here": {"_count": 1}, "up": {"_count": 1}, "doing": {"_count": 2}, "bin": {"_count": 1}, "new": {"_count": 1}, "face": {"_count": 1}}, "faded": {"_count": 2, "year": {"_count": 1}, "curtains": {"_count": 1}}, "wet": {"_count": 8, "pages": {"_count": 1}, "floor": {"_count": 4}, "walls": {"_count": 1}, "grounds": {"_count": 1}, "jacket": {"_count": 1}}, "printed": {"_count": 2, "name": {"_count": 1}, "portions": {"_count": 1}}, "diary": {"_count": 46, "and": {"_count": 6}, "three": {"_count": 1}, "was": {"_count": 4}, "to": {"_count": 3}, "tauntingly": {"_count": 1}, "shooting": {"_count": 1}, "": {"_count": 6}, "he": {"_count": 1}, "began": {"_count": 1}, "you": {"_count": 1}, "into": {"_count": 2}, "in": {"_count": 2}, "Its": {"_count": 1}, "from": {"_count": 1}, "then": {"_count": 2}, "inside": {"_count": 1}, "threw": {"_count": 1}, "shut": {"_count": 1}, "what": {"_count": 1}, "had": {"_count": 3}, "really": {"_count": 1}, "would": {"_count": 1}, "upon": {"_count": 1}, "before": {"_count": 1}, "tried": {"_count": 1}, "so": {"_count": 1}}, "arrested": {"_count": 1, "look": {"_count": 1}}, "monster": {"_count": 17, "whatever": {"_count": 1}, "attacked": {"_count": 1}, "had": {"_count": 2}, "of": {"_count": 1}, "would": {"_count": 1}, "loose": {"_count": 1}, "that": {"_count": 1}, "was": {"_count": 3}, "": {"_count": 1}, "Lockhart": {"_count": 1}, "before": {"_count": 1}, "all": {"_count": 1}, "Aragog": {"_count": 1}, "it": {"_count": 1}}, "guilty": {"_count": 5, "one": {"_count": 1}, "wand": {"_count": 1}, "ones": {"_count": 1}, "secrets": {"_count": 1}, "outcomes": {"_count": 1}}, "memories": {"_count": 4, "of": {"_count": 3}, "fresh": {"_count": 1}}, "decorations": {"_count": 5, "was": {"_count": 1}, "": {"_count": 2}, "went": {"_count": 1}, "permitted": {"_count": 1}}, "fortysix": {"_count": 2, "people": {"_count": 1}, "said": {"_count": 1}}, "liberty": {"_count": 1, "of": {"_count": 1}}, "spirit": {"_count": 3, "of": {"_count": 1}, "dear": {"_count": 1}, "community": {"_count": 1}}, "occasion": {"_count": 12, "": {"_count": 4}, "when": {"_count": 1}, "making": {"_count": 1}, "magnificently": {"_count": 1}, "as": {"_count": 1}, "warranted": {"_count": 1}, "by": {"_count": 1}, "several": {"_count": 1}, "I": {"_count": 1}}, "sly": {"_count": 1, "old": {"_count": 1}}, "dwarfs": {"_count": 2, "kept": {"_count": 1}, "caught": {"_count": 1}}, "annoyance": {"_count": 1, "of": {"_count": 1}}, "dwarf": {"_count": 4, "grabbing": {"_count": 1}, "started": {"_count": 1}, "seized": {"_count": 1}, "as": {"_count": 1}}, "knees": {"_count": 11, "and": {"_count": 2}, "in": {"_count": 1}, "of": {"_count": 3}, "": {"_count": 2}, "causing": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}}, "gold": {"_count": 17, "in": {"_count": 2}, "on": {"_count": 1}, "from": {"_count": 2}, "": {"_count": 2}, "one": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "spent": {"_count": 1}, "badly": {"_count": 1}, "you": {"_count": 1}, "clasps": {"_count": 1}, "Gold": {"_count": 1}, "Gryffindor": {"_count": 1}}, "younger": {"_count": 4, "students": {"_count": 2}, "kids": {"_count": 1}, "of": {"_count": 1}}, "onlookers": {"_count": 5, "": {"_count": 2}, "had": {"_count": 1}, "were": {"_count": 1}, "but": {"_count": 1}}, "blank": {"_count": 12, "pages": {"_count": 1}, "look": {"_count": 1}, "blackboard": {"_count": 1}, "picture": {"_count": 1}, "surface": {"_count": 1}, "stretch": {"_count": 1}, "stone": {"_count": 1}, "star": {"_count": 1}, "paper": {"_count": 1}, "wall": {"_count": 1}, "television": {"_count": 1}, "eyes": {"_count": 1}}, "power": {"_count": 29, "to": {"_count": 18}, "": {"_count": 1}, "of": {"_count": 8}, "held": {"_count": 1}, "and": {"_count": 1}}, "month": {"_count": 2, "of": {"_count": 1}, "after": {"_count": 1}}, "opening": {"_count": 11, "in": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "of": {"_count": 4}, "game": {"_count": 1}, "match": {"_count": 1}, "at": {"_count": 1}}, "blurred": {"_count": 5, "shapes": {"_count": 2}, "crowd": {"_count": 1}, "outlines": {"_count": 2}}, "orphanage": {"_count": 12, "she": {"_count": 1}, "we": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 1}, "to": {"_count": 1}, "here": {"_count": 1}, "in": {"_count": 1}, "Avada": {"_count": 1}}, "current": {"_count": 3, "circumstances": {"_count": 1}, "headmaster": {"_count": 1}, "members": {"_count": 1}}, "recent": {"_count": 5, "tragedy": {"_count": 1}, "capture": {"_count": 1}, "battle": {"_count": 1}, "widely": {"_count": 1}, "scene": {"_count": 1}}, "death": {"_count": 19, "of": {"_count": 12}, "toll": {"_count": 1}, "penalty": {"_count": 1}, "thing": {"_count": 1}, "Hokey": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "er": {"_count": 3, "source": {"_count": 1}, "Wizarding": {"_count": 1}, "new": {"_count": 1}}, "moving": {"_count": 10, "spiral": {"_count": 4}, "photograph": {"_count": 2}, "clouds": {"_count": 1}, "staircase": {"_count": 1}, "stairs": {"_count": 1}, "stone": {"_count": 1}}, "darkening": {"_count": 10, "corridor": {"_count": 2}, "Quidditch": {"_count": 1}, "garden": {"_count": 1}, "grounds": {"_count": 2}, "sky": {"_count": 2}, "play": {"_count": 1}, "street": {"_count": 1}}, "present": {"_count": 15, "he": {"_count": 1}, "climate": {"_count": 2}, "and": {"_count": 1}, "time": {"_count": 1}, "whereabouts": {"_count": 1}, "": {"_count": 4}, "Headmaster": {"_count": 1}, "situation": {"_count": 2}, "again": {"_count": 1}, "He": {"_count": 1}}, "closed": {"_count": 6, "door": {"_count": 3}, "window": {"_count": 1}, "ward": {"_count": 1}, "sign": {"_count": 1}}, "thirteenyearold": {"_count": 1, "Hagrid": {"_count": 1}}, "knottiest": {"_count": 1, "question": {"_count": 1}}, "witches": {"_count": 10, "and": {"_count": 7}, "on": {"_count": 1}, "hats": {"_count": 1}, "feet": {"_count": 1}}, "study": {"_count": 4, "of": {"_count": 1}, "door": {"_count": 2}, "rubbing": {"_count": 1}}, "subjects": {"_count": 6, "it": {"_count": 1}, "of": {"_count": 3}, "they": {"_count": 1}, "required": {"_count": 1}}, "nonmagical": {"_count": 3, "community": {"_count": 1}, "population": {"_count": 2}}, "training": {"_count": 2, "sessions": {"_count": 1}, "of": {"_count": 1}}, "drawer": {"_count": 4, "had": {"_count": 1}, "open": {"_count": 1}, "": {"_count": 2}}, "mattress": {"_count": 3, "": {"_count": 2}, "he": {"_count": 1}}, "blankets": {"_count": 5, "back": {"_count": 1}, "drawn": {"_count": 1}, "": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}}, "robbery": {"_count": 1, "but": {"_count": 1}}, "bodiless": {"_count": 1, "voice": {"_count": 1}}, "balls": {"_count": 12, "": {"_count": 2}, "of": {"_count": 8}, "and": {"_count": 1}, "from": {"_count": 1}}, "megaphone": {"_count": 3, "addressing": {"_count": 1}, "and": {"_count": 1}, "dancing": {"_count": 1}}, "Cup": {"_count": 17, "Gryffindor": {"_count": 1}, "at": {"_count": 1}, "than": {"_count": 1}, "": {"_count": 6}, "was": {"_count": 1}, "Weve": {"_count": 1}, "Tangled": {"_count": 1}, "as": {"_count": 1}, "into": {"_count": 1}, "match": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "complaining": {"_count": 1, "crowd": {"_count": 1}}, "Ravenclaw": {"_count": 32, "theyd": {"_count": 1}, "table": {"_count": 15}, "match": {"_count": 1}, "and": {"_count": 3}, "Captain": {"_count": 1}, "goal": {"_count": 1}, "Beaters": {"_count": 1}, "end": {"_count": 2}, "team": {"_count": 1}, "Seeker": {"_count": 1}, "Quidditch": {"_count": 4}, "common": {"_count": 1}}, "culprit": {"_count": 5, "behind": {"_count": 1}, "wasnt": {"_count": 1}, "": {"_count": 2}, "bodily": {"_count": 1}}, "oak": {"_count": 11, "front": {"_count": 10}, "door": {"_count": 1}}, "lit": {"_count": 2, "windows": {"_count": 1}, "wand": {"_count": 1}}, "weapon": {"_count": 15, "and": {"_count": 1}, "whatever": {"_count": 1}, "Harry": {"_count": 1}, "after": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 3}, "for": {"_count": 1}, "or": {"_count": 1}, "said": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 2}}, "crossbow": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "fruitcake": {"_count": 1, "": {"_count": 1}}, "Minister": {"_count": 64, "of": {"_count": 32}, "theyll": {"_count": 1}, "": {"_count": 5}, "said": {"_count": 1}, "are": {"_count": 1}, "have": {"_count": 1}, "just": {"_count": 2}, "let": {"_count": 1}, "really": {"_count": 1}, "Percy": {"_count": 1}, "put": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "yes": {"_count": 1}, "But": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "will": {"_count": 2}, "although": {"_count": 1}, "around": {"_count": 1}, "was": {"_count": 2}, "but": {"_count": 2}, "himself": {"_count": 1}, "virtually": {"_count": 1}, "had": {"_count": 1}}, "governors": {"_count": 6, "feel": {"_count": 1}, "Fudge": {"_count": 1}, "want": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "who": {"_count": 1}}, "Azkaban": {"_count": 7, "guards": {"_count": 5}, "breakout": {"_count": 2}}, "spiders": {"_count": 23, "": {"_count": 3}, "was": {"_count": 1}, "following": {"_count": 1}, "were": {"_count": 2}, "into": {"_count": 2}, "in": {"_count": 1}, "all": {"_count": 1}, "seemed": {"_count": 1}, "pressing": {"_count": 1}, "said": {"_count": 1}, "legs": {"_count": 2}, "and": {"_count": 2}, "gigantic": {"_count": 1}, "underbelly": {"_count": 1}, "pincers": {"_count": 1}, "tangled": {"_count": 1}, "head": {"_count": 1}}, "mullioned": {"_count": 3, "windows": {"_count": 3}}, "atmosphere": {"_count": 8, "of": {"_count": 1}, "was": {"_count": 3}, "could": {"_count": 1}, "closely": {"_count": 1}, "lightened": {"_count": 1}, "in": {"_count": 1}}, "schools": {"_count": 6, "ever": {"_count": 1}, "behavior": {"_count": 1}, "in": {"_count": 1}, "secret": {"_count": 1}, "boundaries": {"_count": 1}, "like": {"_count": 1}}, "scramble": {"_count": 1, "to": {"_count": 1}}, "classs": {"_count": 4, "heads": {"_count": 1}, "horror": {"_count": 1}, "attention": {"_count": 2}}, "Abyssinian": {"_count": 1, "Shrivelfigs": {"_count": 1}}, "compost": {"_count": 2, "heap": {"_count": 2}}, "stuff": {"_count": 11, "I": {"_count": 1}, "well": {"_count": 1}, "Mum": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 2}, "down": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}, "Potter": {"_count": 1}}, "shortest": {"_count": 3, "route": {"_count": 1}, "life": {"_count": 1}, "letter": {"_count": 1}}, "danger": {"_count": 9, "has": {"_count": 1}, "had": {"_count": 1}, "of": {"_count": 2}, "signs": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}}, "tone": {"_count": 9, "of": {"_count": 8}, "": {"_count": 1}}, "result": {"_count": 10, "that": {"_count": 6}, "right": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 2}}, "games": {"_count": 2, "quickly": {"_count": 1}, "in": {"_count": 1}}, "moonlit": {"_count": 2, "grounds": {"_count": 1}, "corridors": {"_count": 1}}, "pitchdark": {"_count": 2, "forest": {"_count": 1}, "and": {"_count": 1}}, "wandlight": {"_count": 8, "into": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "before": {"_count": 1}, "Ill": {"_count": 1}, "had": {"_count": 1}, "watching": {"_count": 1}}, "glow": {"_count": 7, "of": {"_count": 7}}, "steady": {"_count": 4, "trickle": {"_count": 1}, "drip": {"_count": 1}, "rush": {"_count": 1}, "pounding": {"_count": 1}}, "darting": {"_count": 2, "shadows": {"_count": 1}, "bodies": {"_count": 1}}, "near": {"_count": 4, "blackness": {"_count": 1}, "impossible": {"_count": 1}, "total": {"_count": 1}, "future": {"_count": 1}}, "something": {"_count": 1, "big": {"_count": 1}}, "floodlit": {"_count": 1, "ground": {"_count": 1}}, "glare": {"_count": 3, "of": {"_count": 3}}, "headlights": {"_count": 1, "": {"_count": 1}}, "creatures": {"_count": 18, "no": {"_count": 1}, "clutches": {"_count": 1}, "": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "had": {"_count": 1}, "looked": {"_count": 1}, "that": {"_count": 3}, "at": {"_count": 1}, "back": {"_count": 1}, "began": {"_count": 1}, "coils": {"_count": 1}, "of": {"_count": 1}, "approach": {"_count": 1}, "vast": {"_count": 1}}, "leafstrewn": {"_count": 3, "ground": {"_count": 1}, "earth": {"_count": 1}, "bank": {"_count": 1}}, "ridge": {"_count": 1, "of": {"_count": 1}}, "steep": {"_count": 5, "slope": {"_count": 1}, "downward": {"_count": 1}, "wooded": {"_count": 1}, "stairs": {"_count": 1}, "staircase": {"_count": 1}}, "hollow": {"_count": 5, "while": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "and": {"_count": 1}}, "spider": {"_count": 25, "released": {"_count": 1}, "that": {"_count": 1}, "who": {"_count": 2}, "his": {"_count": 1}, "rose": {"_count": 1}, "balled": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "started": {"_count": 1}, "but": {"_count": 1}, "shrank": {"_count": 1}, "rolled": {"_count": 1}, "skidded": {"_count": 1}, "jerked": {"_count": 1}, "was": {"_count": 1}, "opened": {"_count": 1}, "drop": {"_count": 1}, "had": {"_count": 1}, "now": {"_count": 1}, "grew": {"_count": 1}, "swarm": {"_count": 1}}, "misty": {"_count": 8, "domed": {"_count": 1}, "field": {"_count": 2}, "voice": {"_count": 1}, "grounds": {"_count": 1}, "streetlamps": {"_count": 1}, "green": {"_count": 1}, "square": {"_count": 1}}, "pincers": {"_count": 3, "of": {"_count": 1}, "and": {"_count": 1}, "apparently": {"_count": 1}}, "aged": {"_count": 2, "spider": {"_count": 1}, "exAuror": {"_count": 1}}, "clicking": {"_count": 1, "pincers": {"_count": 1}}, "beast": {"_count": 10, "moving": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 3}, "wouldve": {"_count": 1}, "below": {"_count": 1}, "only": {"_count": 1}, "to": {"_count": 1}, "itself": {"_count": 1}}, "slope": {"_count": 4, "headlights": {"_count": 1}, "out": {"_count": 1}, "toward": {"_count": 1}, "": {"_count": 1}}, "widest": {"_count": 2, "gaps": {"_count": 1}, "manhunt": {"_count": 1}}, "pumpkin": {"_count": 9, "patch": {"_count": 8}, "plants": {"_count": 1}}, "creaking": {"_count": 5, "front": {"_count": 1}, "of": {"_count": 2}, "door": {"_count": 1}, "stairs": {"_count": 1}}, "safety": {"_count": 6, "of": {"_count": 6}}, "legs": {"_count": 7, "on": {"_count": 1}, "had": {"_count": 1}, "of": {"_count": 3}, "rolled": {"_count": 1}, "Another": {"_count": 1}}, "hubbub": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "answers": {"_count": 4, "when": {"_count": 1}, "he": {"_count": 2}, "no": {"_count": 1}}, "friends": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "Basilisk": {"_count": 4, "known": {"_count": 1}, "has": {"_count": 1}, "for": {"_count": 1}, "flees": {"_count": 1}}, "King": {"_count": 1, "of": {"_count": 1}}, "beam": {"_count": 5, "of": {"_count": 2}, "with": {"_count": 1}, "between": {"_count": 1}, "until": {"_count": 1}}, "crowing": {"_count": 1, "of": {"_count": 1}}, "Chambers": {"_count": 1, "a": {"_count": 1}}, "beds": {"_count": 7, "around": {"_count": 1}, "slid": {"_count": 1}, "and": {"_count": 1}, "Fred": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "headboard": {"_count": 1}}, "basilisk": {"_count": 14, "through": {"_count": 1}, "been": {"_count": 1}, "": {"_count": 3}, "be": {"_count": 1}, "comes": {"_count": 1}, "was": {"_count": 1}, "keeled": {"_count": 1}, "fang": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "I": {"_count": 1}, "fangs": {"_count": 1}}, "word": {"_count": 42, "Hermione": {"_count": 1}, "that": {"_count": 1}, "alone": {"_count": 1}, "of": {"_count": 3}, "Quidditch": {"_count": 1}, "broomsticks": {"_count": 1}, "Pig": {"_count": 1}, "away": {"_count": 1}, "Firebolt": {"_count": 1}, "champions": {"_count": 1}, "": {"_count": 1}, "water": {"_count": 1}, "wizard": {"_count": 1}, "start": {"_count": 1}, "dogging": {"_count": 1}, "weasel": {"_count": 1}, "all": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 3}, "SNEAK": {"_count": 1}, "HEADMISTRESS": {"_count": 1}, "POO": {"_count": 1}, "with": {"_count": 1}, "proceeded": {"_count": 1}, "\u2018fiasco": {"_count": 1}, "became": {"_count": 1}, "bezoars": {"_count": 1}, "forcefully": {"_count": 1}, "used": {"_count": 1}, "\u2018no": {"_count": 1}, "go": {"_count": 1}, "Horcruxes": {"_count": 1}, "kill": {"_count": 1}, "might": {"_count": 1}, "one": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}}, "plumbing": {"_count": 1, "": {"_count": 1}}, "rumbling": {"_count": 5, "of": {"_count": 2}, "from": {"_count": 1}, "stopped": {"_count": 1}, "road": {"_count": 1}}, "musty": {"_count": 2, "folds": {"_count": 1}, "interior": {"_count": 1}}, "wardrobe": {"_count": 21, "floor": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 7}, "Hedwig": {"_count": 1}, "gave": {"_count": 1}, "again": {"_count": 1}, "to": {"_count": 2}, "when": {"_count": 1}, "and": {"_count": 2}, "completely": {"_count": 1}, "door": {"_count": 1}, "mirror": {"_count": 1}, "whose": {"_count": 1}}, "rescue": {"_count": 1, "": {"_count": 1}}, "absence": {"_count": 7, "of": {"_count": 7}}, "skyline": {"_count": 1, "": {"_count": 1}}, "tiniest": {"_count": 13, "crack": {"_count": 1}, "sign": {"_count": 1}, "hint": {"_count": 1}, "of": {"_count": 2}, "rustle": {"_count": 1}, "and": {"_count": 1}, "shred": {"_count": 1}, "drop": {"_count": 1}, "note": {"_count": 1}, "trickle": {"_count": 1}, "quiver": {"_count": 1}, "space": {"_count": 1}}, "lids": {"_count": 2, "of": {"_count": 1}, "on": {"_count": 1}}, "messages": {"_count": 1, "shone": {"_count": 1}}, "copper": {"_count": 2, "taps": {"_count": 1}, "kettle": {"_count": 1}}, "tap": {"_count": 4, "glowed": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}}, "curves": {"_count": 1, "": {"_count": 1}}, "tunnel": {"_count": 28, "was": {"_count": 2}, "": {"_count": 6}, "floor": {"_count": 1}, "ceiling": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}, "and": {"_count": 3}, "began": {"_count": 2}, "that": {"_count": 1}, "mouth": {"_count": 1}, "in": {"_count": 1}, "whose": {"_count": 1}, "Ron": {"_count": 1}, "into": {"_count": 1}, "back": {"_count": 1}, "overbalanced": {"_count": 1}, "had": {"_count": 1}, "entrance": {"_count": 1}, "none": {"_count": 1}}, "grave": {"_count": 22, "and": {"_count": 3}, "face": {"_count": 1}, "": {"_count": 6}, "at": {"_count": 1}, "surely": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 3}, "with": {"_count": 1}, "in": {"_count": 1}, "arranged": {"_count": 1}, "rose": {"_count": 1}, "ideas": {"_count": 1}, "he": {"_count": 1}}, "outline": {"_count": 10, "of": {"_count": 9}, "had": {"_count": 1}}, "coils": {"_count": 2, "of": {"_count": 2}}, "rockfall": {"_count": 2, "": {"_count": 2}}, "shins": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "of": {"_count": 1}}, "rocks": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "surface": {"_count": 2}}, "emerald": {"_count": 6, "eyes": {"_count": 1}, "fire": {"_count": 2}, "flames": {"_count": 2}, "liquid": {"_count": 1}}, "halves": {"_count": 1, "slid": {"_count": 1}}, "chill": {"_count": 5, "silence": {"_count": 1}, "as": {"_count": 1}, "night": {"_count": 1}, "emptiness": {"_count": 1}, "wind": {"_count": 1}}, "serpentine": {"_count": 2, "columns": {"_count": 1}, "S": {"_count": 1}}, "shadowy": {"_count": 16, "walls": {"_count": 1}, "entrance": {"_count": 1}, "stadium": {"_count": 1}, "portents": {"_count": 1}, "figures": {"_count": 3}, "hall": {"_count": 1}, "Divination": {"_count": 1}, "presentday": {"_count": 1}, "grounds": {"_count": 1}, "aisles": {"_count": 1}, "gruesome": {"_count": 1}, "ceiling": {"_count": 1}, "crevices": {"_count": 1}, "passageway": {"_count": 1}}, "statues": {"_count": 11, "giant": {"_count": 1}, "mouth": {"_count": 1}, "hump": {"_count": 1}, "of": {"_count": 3}, "feet": {"_count": 1}, "listening": {"_count": 1}, "head": {"_count": 1}, "side": {"_count": 1}, "and": {"_count": 1}}, "silly": {"_count": 1, "little": {"_count": 1}}, "Serpent": {"_count": 1, "of": {"_count": 1}}, "brains": {"_count": 6, "or": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 2}, "swam": {"_count": 1}, "tentacles": {"_count": 1}}, "Transfiguration": {"_count": 6, "teacher": {"_count": 1}, "class": {"_count": 2}, "department": {"_count": 3}}, "foolish": {"_count": 1, "little": {"_count": 1}}, "mystery": {"_count": 7, "particularly": {"_count": 1}, "of": {"_count": 5}, "however": {"_count": 1}}, "orphaned": {"_count": 1, "boy": {"_count": 1}}, "mere": {"_count": 4, "memory": {"_count": 1}, "sight": {"_count": 1}, "fact": {"_count": 1}, "idea": {"_count": 1}}, "music": {"_count": 12, "reached": {"_count": 1}, "started": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 2}, "reverberated": {"_count": 1}, "stopped": {"_count": 1}, "box": {"_count": 1}, "stopping": {"_count": 1}}, "vaulted": {"_count": 2, "ceiling": {"_count": 2}}, "ragged": {"_count": 5, "thing": {"_count": 2}, "old": {"_count": 1}, "form": {"_count": 1}, "veil": {"_count": 1}}, "longer": {"_count": 7, "you": {"_count": 1}, "Riddle": {"_count": 1}, "they": {"_count": 3}, "he": {"_count": 1}, "theyre": {"_count": 1}}, "powers": {"_count": 1, "of": {"_count": 1}}, "halfdarkness": {"_count": 1, "": {"_count": 1}}, "serpent": {"_count": 3, "was": {"_count": 1}, "again": {"_count": 1}, "lunged": {"_count": 1}}, "pillars": {"_count": 2, "He": {"_count": 1}, "": {"_count": 1}}, "basilisks": {"_count": 3, "tail": {"_count": 1}, "mouth": {"_count": 1}, "victims": {"_count": 1}}, "mouth": {"_count": 18, "stretching": {"_count": 1}, "of": {"_count": 7}, "and": {"_count": 1}, "with": {"_count": 2}, "lopsided": {"_count": 1}, "which": {"_count": 1}, "organ": {"_count": 2}, "": {"_count": 2}, "move": {"_count": 1}}, "sword": {"_count": 103, "in": {"_count": 4}, "and": {"_count": 9}, "": {"_count": 22}, "was": {"_count": 5}, "another": {"_count": 1}, "of": {"_count": 16}, "from": {"_count": 1}, "may": {"_count": 1}, "but": {"_count": 2}, "said": {"_count": 1}, "would": {"_count": 2}, "on": {"_count": 1}, "wasnt": {"_count": 1}, "I": {"_count": 2}, "at": {"_count": 2}, "well": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}, "there": {"_count": 1}, "been": {"_count": 1}, "reposing": {"_count": 1}, "had": {"_count": 1}, "remained": {"_count": 1}, "through": {"_count": 3}, "he": {"_count": 1}, "for": {"_count": 1}, "get": {"_count": 1}, "however": {"_count": 1}, "out": {"_count": 1}, "dragging": {"_count": 1}, "point": {"_count": 1}, "still": {"_count": 1}, "hanging": {"_count": 1}, "high": {"_count": 1}, "held": {"_count": 1}, "as": {"_count": 1}, "examining": {"_count": 1}, "is": {"_count": 1}, "over": {"_count": 1}, "stolen": {"_count": 1}, "until": {"_count": 1}, "even": {"_count": 1}, "after": {"_count": 1}, "Griphook": {"_count": 1}, "flew": {"_count": 1}}, "hilt": {"_count": 8, "into": {"_count": 1}, "": {"_count": 2}, "which": {"_count": 1}, "so": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 2}}, "serpents": {"_count": 2, "mouth": {"_count": 1}, "fang": {"_count": 1}}, "fang": {"_count": 3, "that": {"_count": 1}, "and": {"_count": 1}, "hole": {"_count": 1}}, "glittering": {"_count": 11, "sword": {"_count": 1}, "weapon": {"_count": 1}, "heels": {"_count": 1}, "powdery": {"_count": 1}, "golden": {"_count": 1}, "eyes": {"_count": 1}, "spiderweb": {"_count": 1}, "light": {"_count": 1}, "bell": {"_count": 1}, "silence": {"_count": 1}, "cage": {"_count": 1}}, "motionless": {"_count": 3, "coils": {"_count": 1}, "terrified": {"_count": 1}, "figure": {"_count": 1}}, "echoing": {"_count": 2, "gloom": {"_count": 1}, "crashes": {"_count": 1}}, "sizable": {"_count": 1, "gap": {"_count": 1}}, "ride": {"_count": 3, "it": {"_count": 1}, "Dudders": {"_count": 1}, "": {"_count": 1}}, "rubyencrusted": {"_count": 2, "sword": {"_count": 1}, "hilt": {"_count": 1}}, "rapt": {"_count": 1, "silence": {"_count": 1}}, "victim": {"_count": 4, "and": {"_count": 2}, "or": {"_count": 1}, "much": {"_count": 1}}, "clever": {"_count": 2, "handsome": {"_count": 1}, "one": {"_count": 1}}, "chairs": {"_count": 6, "by": {"_count": 2}, "in": {"_count": 2}, "shabby": {"_count": 1}, "": {"_count": 1}}, "bloodstained": {"_count": 1, "silver": {"_count": 1}}, "rubies": {"_count": 2, "blazing": {"_count": 1}, "within": {"_count": 1}}, "drawers": {"_count": 4, "in": {"_count": 1}, "Ive": {"_count": 1}, "": {"_count": 2}}, "blame": {"_count": 2, "": {"_count": 1}, "someone": {"_count": 1}}, "consequences": {"_count": 4, "might": {"_count": 1}, "": {"_count": 3}}, "smelly": {"_count": 2, "sock": {"_count": 1}, "cloud": {"_count": 1}}, "sock": {"_count": 1, "off": {"_count": 1}}, "celebration": {"_count": 2, "lasted": {"_count": 1}, "party": {"_count": 1}}, "shoulders": {"_count": 8, "that": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "thrusting": {"_count": 1}, "into": {"_count": 1}}, "cheering": {"_count": 4, "that": {"_count": 1}, "crowd": {"_count": 1}, "and": {"_count": 1}, "Gryffindors": {"_count": 1}}, "pillow": {"_count": 2, "": {"_count": 2}}, "Fourteenth": {"_count": 1, "Century": {"_count": 1}}, "rare": {"_count": 2, "occasion": {"_count": 1}, "occasions": {"_count": 1}}, "Weird": {"_count": 10, "enjoyed": {"_count": 1}, "and": {"_count": 1}, "Sisters": {"_count": 8}}, "scratching": {"_count": 5, "of": {"_count": 4}, "noise": {"_count": 1}}, "essays": {"_count": 1, "a": {"_count": 1}}, "call": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}}, "mouthpiece": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "cleverest": {"_count": 4, "witch": {"_count": 2}, "students": {"_count": 1}, "Would": {"_count": 1}}, "flashlight": {"_count": 1, "A": {"_count": 1}}, "sill": {"_count": 3, "the": {"_count": 1}, "showing": {"_count": 1}, "of": {"_count": 1}}, "unusual": {"_count": 1, "things": {"_count": 1}}, "rooftops": {"_count": 1, "it": {"_count": 1}}, "bizarre": {"_count": 3, "creature": {"_count": 1}, "offspring": {"_count": 1}, "turn": {"_count": 1}}, "unconscious": {"_count": 10, "owl": {"_count": 1}, "Snape": {"_count": 1}, "form": {"_count": 1}, "Moody": {"_count": 2}, "Malfoy": {"_count": 1}, "first": {"_count": 1}, "body": {"_count": 1}, "men": {"_count": 1}, "Goyle": {"_count": 1}}, "cords": {"_count": 3, "around": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}}, "brown": {"_count": 6, "paper": {"_count": 2}, "owl": {"_count": 1}, "owls": {"_count": 1}, "packaging": {"_count": 1}, "and": {"_count": 1}}, "blackandwhite": {"_count": 2, "picture": {"_count": 2}}, "annual": {"_count": 1, "Daily": {"_count": 1}}, "tombs": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "curses": {"_count": 7, "those": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "came": {"_count": 1}, "had": {"_count": 1}, "flying": {"_count": 1}, "illuminating": {"_count": 1}}, "fez": {"_count": 1, "perched": {"_count": 1}}, "Egyptian": {"_count": 2, "sun": {"_count": 1}, "alchemists": {"_count": 1}}, "Pocket": {"_count": 2, "Sneakoscope": {"_count": 2}}, "leather": {"_count": 6, "case": {"_count": 1}, "pouch": {"_count": 2}, "spines": {"_count": 1}, "bag": {"_count": 2}}, "untidy": {"_count": 2, "scrawl": {"_count": 1}, "black": {"_count": 1}}, "wrapping": {"_count": 1, "paper": {"_count": 1}}, "enclosed": {"_count": 1, "permission": {"_count": 1}}, "Hogsmeade": {"_count": 8, "permission": {"_count": 1}, "form": {"_count": 2}, "visitors": {"_count": 1}, "trip": {"_count": 1}, "weekend": {"_count": 1}, "visit": {"_count": 1}, "weekends": {"_count": 1}}, "alarm": {"_count": 7, "clock": {"_count": 3}, "at": {"_count": 1}, "make": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "chart": {"_count": 4, "hed": {"_count": 1}, "toward": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "television": {"_count": 8, "in": {"_count": 1}, "who": {"_count": 1}, "however": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 2}, "the": {"_count": 1}}, "screen": {"_count": 3, "and": {"_count": 2}, "around": {"_count": 1}}, "reporter": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "prisoner": {"_count": 2, "": {"_count": 1}, "turned": {"_count": 1}}, "hot": {"_count": 10, "line": {"_count": 1}, "water": {"_count": 1}, "hard": {"_count": 1}, "over": {"_count": 1}, "liquid": {"_count": 1}, "sun": {"_count": 1}, "drink": {"_count": 1}, "metal": {"_count": 3}}, "nosiest": {"_count": 1, "woman": {"_count": 1}}, "boring": {"_count": 1, "lawabiding": {"_count": 1}}, "Broomstick": {"_count": 2, "Servicing": {"_count": 2}}, "tail": {"_count": 13, "of": {"_count": 6}, "he": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "end": {"_count": 1}, "came": {"_count": 1}, "to": {"_count": 1}}, "permission": {"_count": 2, "form": {"_count": 2}}, "stuffing": {"_count": 2, "knocked": {"_count": 1}, "out": {"_count": 1}}, "untidier": {"_count": 1, "he": {"_count": 1}}, "clunk": {"_count": 2, "of": {"_count": 2}}, "suitcase": {"_count": 2, "into": {"_count": 1}, "": {"_count": 1}}, "cane": {"_count": 1, "at": {"_count": 1}}, "basic": {"_count": 3, "rules": {"_count": 1}, "methods": {"_count": 1}, "distinction": {"_count": 1}}, "bitch": {"_count": 1, "therell": {"_count": 1}}, "pup": {"_count": 1, "At": {"_count": 1}}, "wineglass": {"_count": 1, "Aunt": {"_count": 1}}, "opinion": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "salmon": {"_count": 1, "without": {"_count": 1}}, "lemon": {"_count": 1, "meringue": {"_count": 1}}, "brandy": {"_count": 1, "bottle": {"_count": 1}}, "tablecloth": {"_count": 6, "you": {"_count": 1}, "": {"_count": 2}, "staining": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}}, "swelling": {"_count": 4, "didnt": {"_count": 1}, "crowd": {"_count": 1}, "treasure": {"_count": 1}, "mass": {"_count": 1}}, "latch": {"_count": 1, "on": {"_count": 1}}, "frantic": {"_count": 2, "thumping": {"_count": 1}, "hours": {"_count": 1}}, "fortune": {"_count": 2, "his": {"_count": 1}, "of": {"_count": 1}}, "narrow": {"_count": 18, "gap": {"_count": 2}, "passage": {"_count": 1}, "hallway": {"_count": 1}, "beams": {"_count": 1}, "beam": {"_count": 1}, "alleyway": {"_count": 2}, "window": {"_count": 1}, "corridor": {"_count": 1}, "escape": {"_count": 1}, "space": {"_count": 1}, "rim": {"_count": 1}, "moonlit": {"_count": 1}, "bank": {"_count": 1}, "road": {"_count": 1}, "cobbled": {"_count": 1}, "street": {"_count": 1}}, "fence": {"_count": 15, "behind": {"_count": 1}, "here": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 3}, "cautiously": {"_count": 1}, "looking": {"_count": 1}, "to": {"_count": 1}, "around": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}, "straining": {"_count": 1}, "and": {"_count": 1}, "climbed": {"_count": 1}}, "pebbledashed": {"_count": 1, "walls": {"_count": 1}}, "hulking": {"_count": 1, "outline": {"_count": 1}}, "gutter": {"_count": 1, "There": {"_count": 1}}, "bus": {"_count": 19, "and": {"_count": 3}, "": {"_count": 6}, "muttered": {"_count": 1}, "moved": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "stopped": {"_count": 1}, "an": {"_count": 1}, "set": {"_count": 1}, "where": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}}, "Knight": {"_count": 20, "Bus": {"_count": 19}, "Buss": {"_count": 1}}, "stranded": {"_count": 1, "witch": {"_count": 1}}, "alleyway": {"_count": 12, "between": {"_count": 3}, "apart": {"_count": 1}, "holding": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "where": {"_count": 1}, "I": {"_count": 1}, "we": {"_count": 1}, "together": {"_count": 1}}, "curtained": {"_count": 5, "windows": {"_count": 3}, "window": {"_count": 2}}, "woodpaneled": {"_count": 1, "walls": {"_count": 1}}, "driver": {"_count": 6, "who": {"_count": 1}, "": {"_count": 1}, "whats": {"_count": 1}, "excuse": {"_count": 1}, "carrying": {"_count": 1}, "a": {"_count": 1}}, "armchair": {"_count": 6, "next": {"_count": 2}, "the": {"_count": 1}, "opposite": {"_count": 1}, "nearest": {"_count": 1}, "": {"_count": 1}}, "brake": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "crisis": {"_count": 1, "": {"_count": 1}}, "Prime": {"_count": 67, "Ministers": {"_count": 7}, "Minister": {"_count": 60}}, "shadowed": {"_count": 1, "eyes": {"_count": 1}}, "sunken": {"_count": 6, "face": {"_count": 2}, "eyes": {"_count": 1}, "pit": {"_count": 2}, "floor": {"_count": 1}}, "collywobbles": {"_count": 1, "": {"_count": 1}}, "bravest": {"_count": 5, "people": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 2}, "man": {"_count": 1}}, "brakes": {"_count": 1, "and": {"_count": 1}}, "pressure": {"_count": 8, "on": {"_count": 1}, "by": {"_count": 1}, "bearing": {"_count": 1}, "Harry": {"_count": 1}, "disappeared": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 1}, "now": {"_count": 1}}, "wizened": {"_count": 2, "toothless": {"_count": 1}, "stump": {"_count": 1}}, "trousers": {"_count": 1, "of": {"_count": 1}}, "innkeeper": {"_count": 3, "reappeared": {"_count": 1}, "": {"_count": 1}, "put": {"_count": 1}}, "parlor": {"_count": 5, "closing": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "door": {"_count": 1}}, "unfortunate": {"_count": 3, "blowingup": {"_count": 1}, "Madam": {"_count": 1}, "boy": {"_count": 1}}, "Accidental": {"_count": 4, "Magic": {"_count": 4}}, "incident": {"_count": 2, "at": {"_count": 1}, "has": {"_count": 1}}, "reaction": {"_count": 2, "of": {"_count": 1}, "he": {"_count": 1}}, "fuss": {"_count": 2, "about": {"_count": 1}, "was": {"_count": 1}}, "latest": {"_count": 5, "article": {"_count": 1}, "in": {"_count": 1}, "cockandbull": {"_count": 1}, "edition": {"_count": 1}, "Weasleys": {"_count": 1}}, "backyard": {"_count": 1, "take": {"_count": 1}}, "brightly": {"_count": 3, "colored": {"_count": 1}, "lit": {"_count": 2}}, "children": {"_count": 3, "out": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}}, "stones": {"_count": 1, "squirt": {"_count": 1}}, "galaxy": {"_count": 1, "in": {"_count": 1}}, "excited": {"_count": 3, "witches": {"_count": 1}, "squeals": {"_count": 1}, "crowd": {"_count": 1}}, "proprietor": {"_count": 1, "of": {"_count": 1}}, "World": {"_count": 26, "Cup": {"_count": 25}, "to": {"_count": 1}}, "broomtail": {"_count": 1, "has": {"_count": 1}}, "Firebolt": {"_count": 56, "unsurpassable": {"_count": 1}, "would": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 10}, "he": {"_count": 1}, "and": {"_count": 7}, "taking": {"_count": 1}, "while": {"_count": 1}, "which": {"_count": 2}, "however": {"_count": 1}, "out": {"_count": 2}, "now": {"_count": 3}, "was": {"_count": 3}, "after": {"_count": 2}, "back": {"_count": 2}, "as": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "deserved": {"_count": 1}, "closely": {"_count": 1}, "down": {"_count": 1}, "zoomed": {"_count": 2}, "that": {"_count": 1}, "incidentally": {"_count": 1}, "forward": {"_count": 1}, "had": {"_count": 1}, "sharply": {"_count": 1}, "upward": {"_count": 1}, "but": {"_count": 1}, "around": {"_count": 1}, "downward": {"_count": 1}, "Ha": {"_count": 1}}, "price": {"_count": 9, "but": {"_count": 1}, "of": {"_count": 3}, "for": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}, "died": {"_count": 1}}, "required": {"_count": 4, "book": {"_count": 1}, "results": {"_count": 1}, "Potions": {"_count": 1}, "O": {"_count": 1}}, "manager": {"_count": 6, "came": {"_count": 1}, "impatiently": {"_count": 1}, "poking": {"_count": 1}, "stripping": {"_count": 1}, "who": {"_count": 1}, "lightly": {"_count": 1}}, "Monster": {"_count": 2, "Books": {"_count": 2}}, "managers": {"_count": 1, "face": {"_count": 1}}, "Invisible": {"_count": 1, "Book": {"_count": 1}}, "Future": {"_count": 10, "by": {"_count": 1}, "": {"_count": 4}, "into": {"_count": 1}, "back": {"_count": 2}, "open": {"_count": 1}, "for": {"_count": 1}}, "Unpredictable": {"_count": 1, "Insulate": {"_count": 1}}, "Worst": {"_count": 1, "Is": {"_count": 1}}, "buses": {"_count": 1, "rolling": {"_count": 1}}, "unseen": {"_count": 1, "Muggle": {"_count": 1}}, "invisible": {"_count": 2, "crowd": {"_count": 1}, "bands": {"_count": 1}}, "Ministryd": {"_count": 2, "do": {"_count": 1}, "be": {"_count": 1}}, "Magical": {"_count": 10, "Menagerie": {"_count": 4}, "Creatures": {"_count": 1}, "Law": {"_count": 4}, "Maintenance": {"_count": 1}}, "occupants": {"_count": 4, "of": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "care": {"_count": 3, "of": {"_count": 2}, "he": {"_count": 1}}, "cages": {"_count": 1, "": {"_count": 1}}, "wire": {"_count": 1, "for": {"_count": 1}}, "mill": {"_count": 1, "this": {"_count": 1}}, "trembling": {"_count": 3, "rat": {"_count": 1}, "": {"_count": 1}, "passages": {"_count": 1}}, "enormous": {"_count": 24, "ginger": {"_count": 1}, "book": {"_count": 1}, "Arithmancy": {"_count": 1}, "Quidditch": {"_count": 1}, "dog": {"_count": 1}, "wings": {"_count": 1}, "Beauxbatons": {"_count": 1}, "boxes": {"_count": 1}, "wooden": {"_count": 1}, "cauldron": {"_count": 1}, "deserted": {"_count": 1}, "creature": {"_count": 1}, "grayish": {"_count": 1}, "dead": {"_count": 1}, "hairy": {"_count": 1}, "blond": {"_count": 1}, "Death": {"_count": 1}, "beast": {"_count": 1}, "and": {"_count": 1}, "pile": {"_count": 1}, "Professor": {"_count": 1}, "bearded": {"_count": 1}, "room": {"_count": 1}, "hands": {"_count": 1}}, "lump": {"_count": 3, "in": {"_count": 2}, "": {"_count": 1}}, "newly": {"_count": 8, "elected": {"_count": 1}, "materialized": {"_count": 1}, "created": {"_count": 1}, "vacant": {"_count": 1}, "unsmashed": {"_count": 1}, "burning": {"_count": 1}, "appointed": {"_count": 1}, "tapped": {"_count": 1}}, "mayor": {"_count": 1, "": {"_count": 1}}, "brandnew": {"_count": 2, "silver": {"_count": 1}, "book": {"_count": 1}}, "hoods": {"_count": 1, "with": {"_count": 1}}, "bedside": {"_count": 8, "table": {"_count": 5}, "cabinet": {"_count": 2}, "of": {"_count": 1}}, "press": {"_count": 4, "because": {"_count": 1}, "and": {"_count": 1}, "somewhat": {"_count": 1}, "fell": {"_count": 1}}, "entrances": {"_count": 9, "to": {"_count": 2}, "": {"_count": 3}, "are": {"_count": 1}, "under": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}}, "image": {"_count": 6, "of": {"_count": 5}, "that": {"_count": 1}}, "chaos": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "heap": {"_count": 2, "of": {"_count": 2}}, "wickerwork": {"_count": 1, "": {"_count": 1}}, "traffic": {"_count": 1, "lights": {"_count": 1}}, "Intercity": {"_count": 1, "125": {"_count": 1}}, "trunks": {"_count": 5, "onto": {"_count": 1}, "lid": {"_count": 1}, "of": {"_count": 1}, "ready": {"_count": 1}, "at": {"_count": 1}}, "mans": {"_count": 22, "head": {"_count": 3}, "leg": {"_count": 1}, "such": {"_count": 1}, "face": {"_count": 2}, "eyes": {"_count": 2}, "arms": {"_count": 1}, "mouth": {"_count": 1}, "chest": {"_count": 1}, "scent": {"_count": 1}, "flesh": {"_count": 1}, "voice": {"_count": 3}, "side": {"_count": 1}, "free": {"_count": 1}, "final": {"_count": 1}, "desperate": {"_count": 1}, "back": {"_count": 1}}, "palm": {"_count": 5, "of": {"_count": 5}}, "Sneakoscope": {"_count": 8, "whistled": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 2}, "back": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}, "remained": {"_count": 1}}, "inn": {"_count": 4, "was": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}, "into": {"_count": 1}}, "headquarters": {"_count": 7, "for": {"_count": 1}, "of": {"_count": 5}, "": {"_count": 1}}, "1612": {"_count": 1, "goblin": {"_count": 1}}, "Shrieking": {"_count": 14, "Shacks": {"_count": 2}, "Shack": {"_count": 12}}, "basket": {"_count": 3, "stretched": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "scenery": {"_count": 2, "outside": {"_count": 1}, "flashing": {"_count": 1}}, "Cauldron": {"_count": 1, "Cake": {"_count": 1}}, "rolling": {"_count": 1, "hills": {"_count": 1}}, "Weasel": {"_count": 1, "": {"_count": 1}}, "pistons": {"_count": 1, "fell": {"_count": 1}}, "carriage": {"_count": 24, "heads": {"_count": 1}, "trundled": {"_count": 1}, "swayed": {"_count": 1}, "hurtled": {"_count": 1}, "landed": {"_count": 1}, "bore": {"_count": 1}, "bent": {"_count": 1}, "floor": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 4}, "were": {"_count": 1}, "shortly": {"_count": 1}, "was": {"_count": 1}, "again": {"_count": 1}, "shafts": {"_count": 1}, "in": {"_count": 1}, "after": {"_count": 1}, "first": {"_count": 1}, "ceiling": {"_count": 1}, "steps": {"_count": 1}, "clock": {"_count": 1}}, "racks": {"_count": 1, "": {"_count": 1}}, "lamps": {"_count": 13, "went": {"_count": 2}, "with": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "around": {"_count": 1}, "covered": {"_count": 1}, "burst": {"_count": 1}, "hanging": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 2}, "lit": {"_count": 1}}, "dim": {"_count": 9, "black": {"_count": 1}, "red": {"_count": 1}, "stifling": {"_count": 1}, "silvery": {"_count": 1}, "misty": {"_count": 1}, "light": {"_count": 2}, "corner": {"_count": 1}, "green": {"_count": 1}}, "shivering": {"_count": 2, "flames": {"_count": 1}, "class": {"_count": 1}}, "folds": {"_count": 3, "of": {"_count": 3}}, "dementors": {"_count": 124, "of": {"_count": 3}, "guarding": {"_count": 1}, "he": {"_count": 2}, "were": {"_count": 7}, "yet": {"_count": 1}, "do": {"_count": 5}, "being": {"_count": 1}, "": {"_count": 23}, "He": {"_count": 1}, "said": {"_count": 2}, "had": {"_count": 3}, "approached": {"_count": 1}, "too": {"_count": 1}, "come": {"_count": 3}, "at": {"_count": 1}, "have": {"_count": 1}, "seemed": {"_count": 1}, "dont": {"_count": 1}, "drew": {"_count": 1}, "werent": {"_count": 1}, "cant": {"_count": 1}, "turn": {"_count": 1}, "down": {"_count": 1}, "put": {"_count": 1}, "permission": {"_count": 1}, "but": {"_count": 1}, "draw": {"_count": 1}, "once": {"_count": 1}, "will": {"_count": 1}, "couldnt": {"_count": 2}, "back": {"_count": 2}, "get": {"_count": 1}, "to": {"_count": 2}, "go": {"_count": 1}, "Harry": {"_count": 2}, "are": {"_count": 8}, "last": {"_count": 1}, "without": {"_count": 1}, "bringing": {"_count": 1}, "could": {"_count": 2}, "placed": {"_count": 1}, "undoubtedly": {"_count": 1}, "You": {"_count": 1}, "even": {"_count": 1}, "spit": {"_count": 1}, "and": {"_count": 1}, "trying": {"_count": 1}, "Preposterous": {"_count": 1}, "behind": {"_count": 1}, "robes": {"_count": 1}, "putrid": {"_count": 1}, "Mrs": {"_count": 1}, "in": {"_count": 1}, "attacking": {"_count": 1}, "about": {"_count": 1}, "Hagrid": {"_count": 1}, "or": {"_count": 1}, "after": {"_count": 1}, "you": {"_count": 1}, "blow": {"_count": 1}, "greedy": {"_count": 1}, "That": {"_count": 1}, "stood": {"_count": 1}, "which": {"_count": 1}, "gliding": {"_count": 1}, "then": {"_count": 1}, "was": {"_count": 1}, "wind": {"_count": 1}, "scattered": {"_count": 1}, "again": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 1}}, "dementor": {"_count": 25, "stood": {"_count": 1}, "and": {"_count": 2}, "didnt": {"_count": 1}, "traveled": {"_count": 1}, "had": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 3}, "feeds": {"_count": 1}, "were": {"_count": 1}, "rose": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "away": {"_count": 1}, "lowers": {"_count": 1}, "which": {"_count": 1}, "must": {"_count": 1}, "slowed": {"_count": 1}, "bore": {"_count": 1}, "in": {"_count": 1}, "swooped": {"_count": 1}, "attack": {"_count": 1}, "would": {"_count": 1}}, "beginnings": {"_count": 1, "of": {"_count": 1}}, "remainder": {"_count": 9, "of": {"_count": 8}, "in": {"_count": 1}}, "gigantic": {"_count": 10, "outline": {"_count": 1}, "Slytherin": {"_count": 1}, "black": {"_count": 2}, "form": {"_count": 1}, "Grawp": {"_count": 1}, "talking": {"_count": 1}, "spider": {"_count": 1}, "building": {"_count": 1}, "spiders": {"_count": 1}}, "terrifiedlooking": {"_count": 1, "new": {"_count": 1}}, "coach": {"_count": 2, "set": {"_count": 1}, "": {"_count": 1}}, "gates": {"_count": 28, "": {"_count": 6}, "Remus": {"_count": 1}, "I": {"_count": 1}, "into": {"_count": 3}, "already": {"_count": 1}, "flanked": {"_count": 2}, "to": {"_count": 2}, "each": {"_count": 1}, "he": {"_count": 1}, "creaked": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "beyond": {"_count": 1}, "able": {"_count": 1}, "and": {"_count": 3}, "of": {"_count": 1}, "it": {"_count": 1}}, "scary": {"_count": 1, "old": {"_count": 1}}, "patches": {"_count": 1, "on": {"_count": 1}}, "delapidated": {"_count": 1, "suitcase": {"_count": 1}}, "nature": {"_count": 2, "of": {"_count": 2}}, "lukewarm": {"_count": 1, "applause": {"_count": 1}}, "applause": {"_count": 4, "which": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "from": {"_count": 1}}, "tangle": {"_count": 3, "of": {"_count": 3}}, "clatter": {"_count": 5, "of": {"_count": 5}}, "hidden": {"_count": 5, "entrance": {"_count": 1}, "passageway": {"_count": 1}, "wizarding": {"_count": 1}, "staircase": {"_count": 2}}, "passwords": {"_count": 3, "": {"_count": 2}, "into": {"_count": 1}}, "happiness": {"_count": 4, "out": {"_count": 3}, "that": {"_count": 1}}, "prisoners": {"_count": 12, "go": {"_count": 1}, "in": {"_count": 3}, "with": {"_count": 1}, "were": {"_count": 3}, "to": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}}, "polecat": {"_count": 1, "": {"_count": 1}}, "painting": {"_count": 11, "": {"_count": 1}, "swung": {"_count": 1}, "just": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 2}, "next": {"_count": 1}, "looked": {"_count": 1}, "yawning": {"_count": 1}, "inside": {"_count": 1}, "against": {"_count": 1}}, "blade": {"_count": 10, "sank": {"_count": 1}, "of": {"_count": 4}, "had": {"_count": 1}, "with": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "North": {"_count": 2, "Tower": {"_count": 1}, "Sea": {"_count": 1}}, "charge": {"_count": 1, "": {"_count": 1}}, "tightly": {"_count": 1, "spiraling": {"_count": 1}}, "murmur": {"_count": 2, "of": {"_count": 2}}, "ladder": {"_count": 11, "first": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}, "out": {"_count": 1}, "toward": {"_count": 1}, "glowing": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "Ron": {"_count": 1}, "which": {"_count": 1}}, "strangestlooking": {"_count": 1, "classroom": {"_count": 1}}, "physical": {"_count": 1, "world": {"_count": 1}}, "hustle": {"_count": 1, "and": {"_count": 1}}, "outset": {"_count": 1, "that": {"_count": 1}}, "Sight": {"_count": 1, "there": {"_count": 1}}, "area": {"_count": 7, "of": {"_count": 3}, "Minister": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 1}, "last": {"_count": 1}}, "veiled": {"_count": 3, "mysteries": {"_count": 1}, "figure": {"_count": 1}, "criticism": {"_count": 1}}, "crystal": {"_count": 17, "ball": {"_count": 6}, "balls": {"_count": 1}, "bottle": {"_count": 2}, "bell": {"_count": 1}, "goblet": {"_count": 2}, "sank": {"_count": 1}, "cup": {"_count": 1}, "scrape": {"_count": 1}, "chandelier": {"_count": 1}, "flask": {"_count": 1}}, "sixteenth": {"_count": 2, "of": {"_count": 2}}, "dregs": {"_count": 3, "remain": {"_count": 1}, "around": {"_count": 1}, "of": {"_count": 1}}, "patterns": {"_count": 1, "using": {"_count": 1}}, "blue": {"_count": 12, "patterned": {"_count": 1}, "ones": {"_count": 1}, "eye": {"_count": 1}, "white": {"_count": 1}, "flames": {"_count": 1}, "lines": {"_count": 1}, "candle": {"_count": 1}, "eyes": {"_count": 2}, "but": {"_count": 1}, "gaslight": {"_count": 1}, "light": {"_count": 1}}, "scalding": {"_count": 1, "tea": {"_count": 1}}, "cups": {"_count": 4, "and": {"_count": 1}, "gleaming": {"_count": 1}, "": {"_count": 1}, "small": {"_count": 1}}, "mundane": {"_count": 3, "": {"_count": 1}, "rumble": {"_count": 1}, "realms": {"_count": 1}}, "teacup": {"_count": 3, "the": {"_count": 1}, "rotating": {"_count": 1}, "shook": {"_count": 1}}, "Grim": {"_count": 12, "": {"_count": 4}, "and": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 2}, "going": {"_count": 1}, "again": {"_count": 1}, "at": {"_count": 1}}, "resonances": {"_count": 1, "of": {"_count": 1}}, "cause": {"_count": 2, "of": {"_count": 1}, "screaming": {"_count": 1}}, "bucket": {"_count": 4, "then": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "gulp": {"_count": 1}}, "juice": {"_count": 2, "jug": {"_count": 1}, "": {"_count": 1}}, "Spellotape": {"_count": 1, "that": {"_count": 1}}, "paddock": {"_count": 11, "": {"_count": 3}, "behind": {"_count": 1}, "fence": {"_count": 2}, "seemed": {"_count": 1}, "and": {"_count": 1}, "containing": {"_count": 1}, "where": {"_count": 2}}, "hippogriffs": {"_count": 5, "gleaming": {"_count": 1}, "hindquarters": {"_count": 1}, "wings": {"_count": 1}, "one": {"_count": 1}, "room": {"_count": 1}}, "hippogriff": {"_count": 26, "ter": {"_count": 1}, "suddenly": {"_count": 1}, "and": {"_count": 1}, "closed": {"_count": 1}, "around": {"_count": 1}, "rose": {"_count": 1}, "": {"_count": 3}, "in": {"_count": 1}, "should": {"_count": 1}, "was": {"_count": 2}, "got": {"_count": 1}, "appear": {"_count": 1}, "Buckbeak": {"_count": 2}, "seemed": {"_count": 1}, "beat": {"_count": 1}, "behind": {"_count": 1}, "to": {"_count": 1}, "yesterday": {"_count": 1}, "they": {"_count": 1}, "without": {"_count": 1}, "circling": {"_count": 1}, "scratching": {"_count": 1}}, "firs": {"_count": 4, "move": {"_count": 1}, "place": {"_count": 1}, "present": {"_count": 1}, "one": {"_count": 1}}, "gray": {"_count": 8, "hippogriff": {"_count": 1}, "owl": {"_count": 2}, "centaur": {"_count": 3}, "blankets": {"_count": 1}, "figure": {"_count": 1}}, "beak": {"_count": 5, "several": {"_count": 1}, "then": {"_count": 1}, "of": {"_count": 3}}, "wing": {"_count": 4, "joint": {"_count": 1}, "she": {"_count": 1}, "joints": {"_count": 1}, "mirror": {"_count": 1}}, "hindquarters": {"_count": 1, "of": {"_count": 1}}, "chestnut": {"_count": 1, "while": {"_count": 1}}, "Care": {"_count": 4, "of": {"_count": 4}}, "homework": {"_count": 5, "Professor": {"_count": 1}, "they": {"_count": 1}, "didnt": {"_count": 1}, "Miss": {"_count": 1}, "planner": {"_count": 1}}, "twilight": {"_count": 3, "": {"_count": 2}, "time": {"_count": 1}}, "tankard": {"_count": 3, "": {"_count": 1}, "from": {"_count": 1}, "away": {"_count": 1}}, "crinkled": {"_count": 1, "corners": {"_count": 1}}, "heroic": {"_count": 1, "survivor": {"_count": 1}}, "knife": {"_count": 6, "again": {"_count": 1}, "Sirius": {"_count": 2}, "he": {"_count": 1}, "who": {"_count": 1}, "protruding": {"_count": 1}}, "shrivelfig": {"_count": 1, "as": {"_count": 1}}, "verge": {"_count": 9, "of": {"_count": 9}}, "icy": {"_count": 9, "jet": {"_count": 1}, "mist": {"_count": 1}, "water": {"_count": 1}, "air": {"_count": 2}, "winter": {"_count": 1}, "windows": {"_count": 1}, "feeling": {"_count": 1}, "seawater": {"_count": 1}}, "gargoyles": {"_count": 1, "mouth": {"_count": 1}}, "tadpole": {"_count": 1, "was": {"_count": 1}}, "covers": {"_count": 5, "": {"_count": 2}, "then": {"_count": 1}, "up": {"_count": 1}, "tapped": {"_count": 1}}, "memorable": {"_count": 1, "class": {"_count": 1}}, "wad": {"_count": 3, "of": {"_count": 3}}, "cupboards": {"_count": 4, "under": {"_count": 1}, "were": {"_count": 1}, "creaking": {"_count": 1}, "and": {"_count": 1}}, "boggart": {"_count": 24, "sitting": {"_count": 1}, "before": {"_count": 1}, "to": {"_count": 1}, "bursts": {"_count": 1}, "is": {"_count": 1}, "paused": {"_count": 1}, "landed": {"_count": 1}, "exploded": {"_count": 1}, "ten": {"_count": 1}, "": {"_count": 4}, "What": {"_count": 1}, "assuming": {"_count": 1}, "faced": {"_count": 1}, "caught": {"_count": 1}, "back": {"_count": 1}, "dementor": {"_count": 1}, "in": {"_count": 1}, "changed": {"_count": 1}, "pretending": {"_count": 1}, "posing": {"_count": 1}, "was": {"_count": 1}}, "charm": {"_count": 14, "without": {"_count": 2}, "might": {"_count": 1}, "himself": {"_count": 1}, "to": {"_count": 1}, "wouldnt": {"_count": 1}, "faster": {"_count": 1}, "I": {"_count": 1}, "must": {"_count": 1}, "breaks": {"_count": 1}, "will": {"_count": 1}, "Hermione": {"_count": 1}, "and": {"_count": 1}, "broke": {"_count": 1}}, "easy": {"_count": 1, "part": {"_count": 1}}, "gallows": {"_count": 1, "": {"_count": 1}}, "surface": {"_count": 46, "of": {"_count": 23}, "was": {"_count": 1}, "waves": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 3}, "again": {"_count": 1}, "Harry": {"_count": 1}, "all": {"_count": 1}, "these": {"_count": 1}, "like": {"_count": 1}, "when": {"_count": 1}, "though": {"_count": 1}, "glowing": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 1}, "reminding": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}, "Potter": {"_count": 1}}, "mummys": {"_count": 1, "feet": {"_count": 1}}, "mummy": {"_count": 1, "had": {"_count": 1}}, "chapter": {"_count": 4, "on": {"_count": 2}, "dear": {"_count": 1}, "no": {"_count": 1}}, "potholes": {"_count": 1, "of": {"_count": 1}}, "hours": {"_count": 7, "he": {"_count": 3}, "until": {"_count": 1}, "of": {"_count": 3}}, "actionpacked": {"_count": 1, "first": {"_count": 1}}, "flobberworms": {"_count": 3, "slimy": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "fiftyfoothigh": {"_count": 1, "hoops": {"_count": 1}}, "chilly": {"_count": 10, "locker": {"_count": 1}, "haze": {"_count": 1}, "night": {"_count": 1}, "September": {"_count": 1}, "gray": {"_count": 1}, "mist": {"_count": 1}, "little": {"_count": 1}, "bathroom": {"_count": 1}, "musty": {"_count": 1}, "ground": {"_count": 1}}, "tournament": {"_count": 47, "getting": {"_count": 1}, "by": {"_count": 1}, "once": {"_count": 1}, "was": {"_count": 1}, "than": {"_count": 1}, "Dumbledore": {"_count": 2}, "tasks": {"_count": 1}, "": {"_count": 19}, "would": {"_count": 3}, "through": {"_count": 1}, "were": {"_count": 1}, "the": {"_count": 2}, "and": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 2}, "as": {"_count": 1}, "because": {"_count": 1}, "of": {"_count": 1}, "rules": {"_count": 1}, "to": {"_count": 1}, "Karkaroff": {"_count": 1}, "though": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}}, "memory": {"_count": 36, "still": {"_count": 1}, "of": {"_count": 12}, "coming": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 2}, "to": {"_count": 1}, "Did": {"_count": 1}, "Dumbledore": {"_count": 3}, "": {"_count": 4}, "suddenly": {"_count": 1}, "I": {"_count": 1}, "from": {"_count": 2}, "said": {"_count": 1}, "stretched": {"_count": 1}, "out": {"_count": 1}, "had": {"_count": 1}, "that": {"_count": 1}}, "bag": {"_count": 27, "": {"_count": 5}, "away": {"_count": 1}, "around": {"_count": 1}, "sprang": {"_count": 1}, "of": {"_count": 7}, "over": {"_count": 2}, "and": {"_count": 2}, "isnt": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "onto": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}, "aside": {"_count": 1}, "to": {"_count": 1}}, "battered": {"_count": 4, "old": {"_count": 2}, "telephone": {"_count": 1}, "gold": {"_count": 1}}, "remnants": {"_count": 3, "of": {"_count": 3}}, "terrified": {"_count": 4, "Scabbers": {"_count": 1}, "wizards": {"_count": 1}, "girl": {"_count": 1}, "dog": {"_count": 1}}, "plants": {"_count": 1, "and": {"_count": 1}}, "pail": {"_count": 1, "and": {"_count": 1}}, "beans": {"_count": 4, "burst": {"_count": 1}, "though": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}}, "group": {"_count": 30, "": {"_count": 6}, "of": {"_count": 7}, "around": {"_count": 2}, "Harry": {"_count": 1}, "nearest": {"_count": 1}, "at": {"_count": 2}, "now": {"_count": 1}, "took": {"_count": 1}, "though": {"_count": 1}, "observed": {"_count": 1}, "his": {"_count": 1}, "stood": {"_count": 1}, "that": {"_count": 1}, "beside": {"_count": 1}, "and": {"_count": 2}, "casting": {"_count": 1}}, "parent": {"_count": 1, "or": {"_count": 1}}, "least": {"_count": 5, "helpful": {"_count": 1}, "of": {"_count": 2}, "secure": {"_count": 1}, "extraordinary": {"_count": 1}}, "sweetshops": {"_count": 1, "rather": {"_count": 1}}, "novelty": {"_count": 1, "had": {"_count": 1}}, "Owlery": {"_count": 26, "to": {"_count": 1}, "if": {"_count": 1}, "which": {"_count": 2}, "": {"_count": 5}, "Hermione": {"_count": 1}, "that": {"_count": 2}, "Ron": {"_count": 1}, "wall": {"_count": 1}, "after": {"_count": 1}, "window": {"_count": 2}, "and": {"_count": 1}, "together": {"_count": 2}, "on": {"_count": 1}, "the": {"_count": 1}, "door": {"_count": 1}, "Tower": {"_count": 1}, "had": {"_count": 1}, "but": {"_count": 1}}, "grindylow": {"_count": 3, "thoughtfully": {"_count": 1}, "brandishing": {"_count": 1}, "tank": {"_count": 1}}, "kappas": {"_count": 1, "": {"_count": 1}}, "abnormally": {"_count": 1, "long": {"_count": 1}}, "spout": {"_count": 1, "": {"_count": 1}}, "smoking": {"_count": 3, "goblet": {"_count": 1}, "fire": {"_count": 1}, "wreck": {"_count": 1}}, "goblet": {"_count": 42, "": {"_count": 11}, "and": {"_count": 3}, "out": {"_count": 2}, "carefully": {"_count": 1}, "said": {"_count": 1}, "will": {"_count": 1}, "constitutes": {"_count": 1}, "just": {"_count": 1}, "is": {"_count": 1}, "turned": {"_count": 1}, "which": {"_count": 1}, "had": {"_count": 1}, "as": {"_count": 2}, "not": {"_count": 1}, "into": {"_count": 3}, "hes": {"_count": 1}, "he": {"_count": 3}, "but": {"_count": 1}, "was": {"_count": 1}, "back": {"_count": 2}, "drained": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}}, "unfinished": {"_count": 1, "question": {"_count": 1}}, "Three": {"_count": 41, "Broomsticks": {"_count": 38}, "Brothers": {"_count": 3}}, "feastll": {"_count": 1, "be": {"_count": 1}}, "holdup": {"_count": 2, "here": {"_count": 1}, "": {"_count": 1}}, "password": {"_count": 20, "excuse": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}, "into": {"_count": 1}, "then": {"_count": 1}, "Flibbertigibbet": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "banana": {"_count": 1}, "Pine": {"_count": 1}, "to": {"_count": 2}, "up": {"_count": 1}, "it": {"_count": 1}, "or": {"_count": 1}, "changed": {"_count": 1}, "at": {"_count": 1}, "swung": {"_count": 1}}, "landscape": {"_count": 3, "up": {"_count": 1}, "seemed": {"_count": 1}, "like": {"_count": 1}}, "Head": {"_count": 3, "Boy": {"_count": 2}, "of": {"_count": 1}}, "castles": {"_count": 5, "protected": {"_count": 1}, "secret": {"_count": 1}, "floors": {"_count": 1}, "occupants": {"_count": 1}, "shattered": {"_count": 1}}, "disguise": {"_count": 1, "that": {"_count": 1}}, "silvery": {"_count": 14, "ghosts": {"_count": 2}, "lawn": {"_count": 1}, "cloak": {"_count": 1}, "hair": {"_count": 1}, "fountain": {"_count": 1}, "stuff": {"_count": 1}, "substance": {"_count": 4}, "contents": {"_count": 1}, "Invisibility": {"_count": 1}, "shape": {"_count": 1}}, "whispering": {"_count": 5, "that": {"_count": 1}, "stopped": {"_count": 1}, "students": {"_count": 1}, "and": {"_count": 1}, "bush": {"_count": 1}}, "conversation": {"_count": 23, "we": {"_count": 1}, "": {"_count": 5}, "he": {"_count": 1}, "hed": {"_count": 1}, "as": {"_count": 1}, "through": {"_count": 1}, "they": {"_count": 2}, "back": {"_count": 1}, "with": {"_count": 2}, "out": {"_count": 1}, "unexpectedly": {"_count": 1}, "but": {"_count": 1}, "warily": {"_count": 1}, "half": {"_count": 1}, "moving": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}}, "evenings": {"_count": 7, "": {"_count": 4}, "to": {"_count": 1}, "detention": {"_count": 1}, "when": {"_count": 1}}, "gale": {"_count": 1, "outside": {"_count": 1}}, "topics": {"_count": 2, "you": {"_count": 1}, "under": {"_count": 1}}, "werewolf": {"_count": 22, "and": {"_count": 1}, "differs": {"_count": 1}, "That": {"_count": 1}, "": {"_count": 4}, "reared": {"_count": 1}, "wrenched": {"_count": 1}, "taking": {"_count": 1}, "howling": {"_count": 1}, "who": {"_count": 3}, "gets": {"_count": 1}, "was": {"_count": 1}, "seemed": {"_count": 1}, "Fenrir": {"_count": 1}, "off": {"_count": 1}, "Remus": {"_count": 1}, "the": {"_count": 1}, "sprang": {"_count": 1}}, "kappa": {"_count": 1, "is": {"_count": 1}}, "ways": {"_count": 5, "you": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}, "of": {"_count": 1}}, "bedpans": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "sounds": {"_count": 18, "of": {"_count": 14}, "drifting": {"_count": 1}, "had": {"_count": 1}, "Hagrid": {"_count": 1}, "his": {"_count": 1}}, "pounding": {"_count": 3, "of": {"_count": 2}, "in": {"_count": 1}}, "popularity": {"_count": 1, "of": {"_count": 1}}, "lawns": {"_count": 8, "toward": {"_count": 3}, "Frank": {"_count": 1}, "overlooking": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}, "slippery": {"_count": 1}}, "ferocious": {"_count": 1, "wind": {"_count": 1}}, "fresh": {"_count": 6, "rolls": {"_count": 1}, "air": {"_count": 3}, "copy": {"_count": 1}, "memories": {"_count": 1}}, "score": {"_count": 4, "": {"_count": 1}, "fortyten": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}}, "trick": {"_count": 10, "": {"_count": 3}, "Potter": {"_count": 1}, "step": {"_count": 2}, "said": {"_count": 1}, "was": {"_count": 1}, "doesnt": {"_count": 1}, "they": {"_count": 1}}, "turbulent": {"_count": 2, "air": {"_count": 1}, "water": {"_count": 1}}, "silhouette": {"_count": 1, "of": {"_count": 1}}, "rainfilled": {"_count": 1, "air": {"_count": 1}}, "broomhandle": {"_count": 1, "and": {"_count": 1}}, "scariest": {"_count": 2, "thing": {"_count": 2}}, "showers": {"_count": 1, "said": {"_count": 1}}, "screaming": {"_count": 6, "voice": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}, "filled": {"_count": 1}, "boy": {"_count": 1}, "but": {"_count": 1}}, "shattered": {"_count": 6, "remnants": {"_count": 1}, "spheres": {"_count": 1}, "remains": {"_count": 1}, "ceiling": {"_count": 1}, "wand": {"_count": 1}, "window": {"_count": 1}}, "strips": {"_count": 1, "of": {"_count": 1}}, "essay": {"_count": 3, "": {"_count": 1}, "tomorrow": {"_count": 1}, "toward": {"_count": 1}}, "lantern": {"_count": 7, "dangling": {"_count": 1}, "lit": {"_count": 2}, "on": {"_count": 1}, "Harry": {"_count": 1}, "about": {"_count": 1}, "light": {"_count": 1}}, "hinkypunks": {"_count": 1, "box": {"_count": 1}}, "question": {"_count": 32, "he": {"_count": 3}, "until": {"_count": 1}, "because": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 6}, "is": {"_count": 1}, "of": {"_count": 3}, "that": {"_count": 1}, "Mrs": {"_count": 1}, "was": {"_count": 2}, "so": {"_count": 1}, "did": {"_count": 1}, "about": {"_count": 1}, "to": {"_count": 2}, "she": {"_count": 1}, "as": {"_count": 1}, "soon": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "with": {"_count": 1}, "isnt": {"_count": 1}}, "lines": {"_count": 6, "on": {"_count": 1}, "of": {"_count": 3}, "Id": {"_count": 1}, "gouged": {"_count": 1}}, "darkest": {"_count": 2, "filthiest": {"_count": 1}, "corner": {"_count": 1}}, "running": {"_count": 7, "after": {"_count": 1}, "for": {"_count": 2}, "": {"_count": 2}, "of": {"_count": 2}}, "Saturday": {"_count": 4, "morning": {"_count": 1}, "before": {"_count": 1}, "after": {"_count": 2}}, "oneeyed": {"_count": 11, "statue": {"_count": 1}, "witch": {"_count": 9}, "witchs": {"_count": 1}}, "truly": {"_count": 1, "remarkable": {"_count": 1}}, "cellar": {"_count": 22, "of": {"_count": 2}, "so": {"_count": 1}, "steps": {"_count": 2}, "": {"_count": 5}, "while": {"_count": 1}, "Greyback": {"_count": 1}, "Unable": {"_count": 1}, "looking": {"_count": 1}, "floor": {"_count": 1}, "feeling": {"_count": 1}, "help": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 1}, "Hermione": {"_count": 1}}, "heading": {"_count": 5, "of": {"_count": 4}, "scribbled": {"_count": 1}}, "map": {"_count": 69, "": {"_count": 18}, "stuffed": {"_count": 1}, "again": {"_count": 2}, "away": {"_count": 2}, "tapped": {"_count": 1}, "right": {"_count": 1}, "back": {"_count": 1}, "carefully": {"_count": 1}, "out": {"_count": 1}, "sharply": {"_count": 1}, "with": {"_count": 3}, "didnt": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 7}, "but": {"_count": 2}, "must": {"_count": 1}, "tonight": {"_count": 1}, "held": {"_count": 1}, "at": {"_count": 2}, "caught": {"_count": 1}, "wondering": {"_count": 1}, "would": {"_count": 1}, "or": {"_count": 1}, "in": {"_count": 2}, "his": {"_count": 1}, "its": {"_count": 1}, "as": {"_count": 2}, "I": {"_count": 1}, "from": {"_count": 1}, "showed": {"_count": 1}, "close": {"_count": 1}, "for": {"_count": 1}, "upon": {"_count": 1}, "disappointed": {"_count": 1}, "theyre": {"_count": 1}, "come": {"_count": 1}, "murmured": {"_count": 1}, "was": {"_count": 1}}, "miraculous": {"_count": 2, "map": {"_count": 1}, "paper": {"_count": 1}}, "burrow": {"_count": 1, "of": {"_count": 1}}, "uneven": {"_count": 3, "floor": {"_count": 1}, "steps": {"_count": 1}, "ground": {"_count": 1}}, "tinkle": {"_count": 2, "of": {"_count": 2}}, "levitating": {"_count": 1, "sherbert": {"_count": 1}}, "farthest": {"_count": 3, "corner": {"_count": 1}, "table": {"_count": 1}, "from": {"_count": 1}}, "jar": {"_count": 15, "": {"_count": 3}, "caught": {"_count": 1}, "for": {"_count": 1}, "trying": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 1}, "sealed": {"_count": 1}, "it": {"_count": 2}, "but": {"_count": 1}, "onto": {"_count": 1}, "full": {"_count": 1}}, "Marauders": {"_count": 46, "Map": {"_count": 44}, "map": {"_count": 1}, "never": {"_count": 1}}, "passages": {"_count": 1, "on": {"_count": 1}}, "sweetshop": {"_count": 2, "door": {"_count": 1}, "": {"_count": 1}}, "recapture": {"_count": 2, "of": {"_count": 2}}, "Honeydukes": {"_count": 2, "owners": {"_count": 1}, "cellar": {"_count": 1}}, "Fizzing": {"_count": 1, "Whizbees": {"_count": 1}}, "Jelly": {"_count": 1, "Slugs": {"_count": 1}}, "Acid": {"_count": 2, "Pops": {"_count": 1}, "Pop": {"_count": 1}}, "blizzard": {"_count": 1, "outside": {"_count": 1}}, "drinks": {"_count": 2, "shall": {"_count": 1}, "table": {"_count": 1}}, "grunts": {"_count": 1, "and": {"_count": 1}}, "woods": {"_count": 13, "Minister": {"_count": 1}, "toward": {"_count": 1}, "and": {"_count": 3}, "fleeing": {"_count": 1}, "": {"_count": 2}, "an": {"_count": 1}, "soaring": {"_count": 1}, "after": {"_count": 1}, "where": {"_count": 1}, "around": {"_count": 1}}, "lower": {"_count": 7, "part": {"_count": 1}, "branches": {"_count": 1}, "bulbs": {"_count": 1}, "berth": {"_count": 1}, "bunk": {"_count": 2}, "bunks": {"_count": 1}}, "half": {"_count": 8, "of": {"_count": 1}, "darkness": {"_count": 1}, "moon": {"_count": 3}, "breed": {"_count": 1}, "light": {"_count": 2}}, "double": {"_count": 16, "act": {"_count": 1}, "crosser": {"_count": 1}, "doors": {"_count": 10}, "oak": {"_count": 1}, "period": {"_count": 1}, "of": {"_count": 2}}, "Fidelius": {"_count": 7, "Charm": {"_count": 6}, "Charms": {"_count": 1}}, "chosen": {"_count": 1, "person": {"_count": 1}}, "SecretKeeper": {"_count": 4, "chooses": {"_count": 1}, "refused": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}}, "ruins": {"_count": 1, "poor": {"_count": 1}}, "bike": {"_count": 11, "halfway": {"_count": 1}, "brooms": {"_count": 1}, "more": {"_count": 1}, "had": {"_count": 1}, "completely": {"_count": 1}, "drop": {"_count": 1}, "two": {"_count": 1}, "at": {"_count": 1}, "shot": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "Department": {"_count": 78, "of": {"_count": 68}, "for": {"_count": 10}}, "sewer": {"_count": 2, "below": {"_count": 1}, "with": {"_count": 1}}, "Order": {"_count": 124, "of": {"_count": 53}, "": {"_count": 11}, "dont": {"_count": 1}, "are": {"_count": 1}, "said": {"_count": 9}, "too": {"_count": 1}, "so": {"_count": 1}, "been": {"_count": 1}, "straightaway": {"_count": 1}, "you": {"_count": 3}, "helped": {"_count": 1}, "itll": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 7}, "all": {"_count": 2}, "thwarted": {"_count": 1}, "that": {"_count": 2}, "at": {"_count": 1}, "know": {"_count": 1}, "who": {"_count": 1}, "he": {"_count": 2}, "as": {"_count": 1}, "before": {"_count": 1}, "to": {"_count": 2}, "control": {"_count": 1}, "arent": {"_count": 1}, "recently": {"_count": 1}, "writes": {"_count": 1}, "made": {"_count": 1}, "wants": {"_count": 1}, "my": {"_count": 1}, "members": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}, "left": {"_count": 1}, "had": {"_count": 1}, "if": {"_count": 1}, "wasnt": {"_count": 1}, "knew": {"_count": 1}, "is": {"_count": 1}, "or": {"_count": 1}, "Bill": {"_count": 1}}, "action": {"_count": 5, "of": {"_count": 1}, "abated": {"_count": 1}, "What": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "crossword": {"_count": 1, "": {"_count": 1}}, "pairs": {"_count": 2, "of": {"_count": 2}}, "return": {"_count": 6, "trip": {"_count": 1}, "of": {"_count": 4}, "journey": {"_count": 1}}, "leatherbound": {"_count": 1, "photo": {"_count": 1}}, "deaths": {"_count": 3, "of": {"_count": 2}, "to": {"_count": 1}}, "handsome": {"_count": 6, "laughing": {"_count": 1}, "wizards": {"_count": 1}, "wizard": {"_count": 1}, "centaur": {"_count": 1}, "Muggle": {"_count": 2}}, "album": {"_count": 2, "shut": {"_count": 1}, "over": {"_count": 1}}, "hems": {"_count": 2, "of": {"_count": 2}}, "assurances": {"_count": 1, "of": {"_count": 1}}, "regrettable": {"_count": 1, "incident": {"_count": 1}}, "official": {"_count": 4, "complaint": {"_count": 1}, "notice": {"_count": 1}, "instructions": {"_count": 1}, "entrance": {"_count": 1}}, "Disposal": {"_count": 10, "of": {"_count": 8}, "o": {"_count": 2}}, "Committees": {"_count": 2, "offices": {"_count": 1}, "appointed": {"_count": 1}}, "baby": {"_count": 12, "dragon": {"_count": 2}, "unicorns": {"_count": 1}, "Death": {"_count": 1}, "bird": {"_count": 1}, "Fawkes": {"_count": 1}, "who": {"_count": 1}, "within": {"_count": 1}, "zooming": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}}, "bes": {"_count": 1, "feelin": {"_count": 1}}, "manticore": {"_count": 1, "off": {"_count": 1}}, "shelter": {"_count": 8, "of": {"_count": 8}}, "semidarkness": {"_count": 4, "to": {"_count": 1}, "waiting": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}}, "perfectly": {"_count": 1, "smooth": {"_count": 1}}, "Firebolts": {"_count": 6, "wrappings": {"_count": 1}, "superbly": {"_count": 1}, "going": {"_count": 1}, "precisionbalance": {"_count": 1}, "tail": {"_count": 1}, "handle": {"_count": 1}}, "socks": {"_count": 6, "and": {"_count": 1}, "to": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}}, "cracker": {"_count": 1, "flew": {"_count": 1}}, "promptings": {"_count": 1, "of": {"_count": 1}}, "turkeys": {"_count": 1, "getting": {"_count": 1}}, "Inner": {"_count": 2, "Eye": {"_count": 2}}, "platter": {"_count": 1, "of": {"_count": 1}}, "tin": {"_count": 2, "of": {"_count": 1}, "at": {"_count": 1}}, "strippingdown": {"_count": 1, "of": {"_count": 1}}, "information": {"_count": 18, "that": {"_count": 3}, "you": {"_count": 2}, "I": {"_count": 2}, "": {"_count": 2}, "on": {"_count": 2}, "Bertha": {"_count": 1}, "Harry": {"_count": 1}, "very": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "now": {"_count": 1}, "into": {"_count": 1}}, "lookout": {"_count": 5, "for": {"_count": 4}, "": {"_count": 1}}, "flameloving": {"_count": 1, "lizards": {"_count": 1}}, "crumbling": {"_count": 4, "whitehot": {"_count": 1}, "house": {"_count": 1}, "staircase": {"_count": 1}, "piece": {"_count": 1}}, "History": {"_count": 2, "of": {"_count": 2}}, "Patronus": {"_count": 11, "Charm": {"_count": 4}, "aside": {"_count": 1}, "was": {"_count": 1}, "WHOOSH": {"_count": 1}, "had": {"_count": 2}, "cat": {"_count": 1}, "must": {"_count": 1}}, "desire": {"_count": 2, "to": {"_count": 2}}, "wonderful": {"_count": 2, "soaring": {"_count": 1}, "picture": {"_count": 1}}, "packing": {"_count": 3, "case": {"_count": 3}}, "Frogs": {"_count": 2, "head": {"_count": 2}}, "sweat": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "disappearance": {"_count": 2, "of": {"_count": 2}}, "strain": {"_count": 6, "nearly": {"_count": 1}, "several": {"_count": 1}, "of": {"_count": 2}, "was": {"_count": 1}, "and": {"_count": 1}}, "bitterly": {"_count": 1, "cold": {"_count": 1}}, "twelfth": {"_count": 5, "time": {"_count": 1}, "house": {"_count": 1}, "of": {"_count": 3}}, "butterbeer": {"_count": 1, "in": {"_count": 1}}, "Dementors": {"_count": 4, "Kiss": {"_count": 4}}, "fate": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "feel": {"_count": 4, "of": {"_count": 4}}, "eighth": {"_count": 1, "year": {"_count": 1}}, "chambers": {"_count": 1, "within": {"_count": 1}}, "cluttered": {"_count": 4, "table": {"_count": 1}, "desk": {"_count": 1}, "curved": {"_count": 1}, "side": {"_count": 1}}, "even": {"_count": 1, "longer": {"_count": 1}}, "rune": {"_count": 2, "translation": {"_count": 1}, "stones": {"_count": 1}}, "weird": {"_count": 4, "spiky": {"_count": 1}, "hissing": {"_count": 1}, "mist": {"_count": 1}, "symbol": {"_count": 1}}, "ginger": {"_count": 1, "hairs": {"_count": 1}}, "evidence": {"_count": 13, "all": {"_count": 1}, "against": {"_count": 2}, "but": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 2}, "pointed": {"_count": 1}, "so": {"_count": 1}, "of": {"_count": 4}}, "loss": {"_count": 12, "of": {"_count": 10}, "is": {"_count": 1}, "they": {"_count": 1}}, "benefit": {"_count": 3, "of": {"_count": 3}}, "balance": {"_count": 1, "on": {"_count": 1}}, "Cleansweeps": {"_count": 1, "reminds": {"_count": 1}}, "lightest": {"_count": 1, "touch": {"_count": 1}}, "presence": {"_count": 14, "of": {"_count": 14}}, "gathering": {"_count": 4, "darkness": {"_count": 3}, "twilight": {"_count": 1}}, "budding": {"_count": 1, "leaves": {"_count": 1}}, "welllit": {"_count": 1, "entrance": {"_count": 1}}, "reflected": {"_count": 3, "glory": {"_count": 1}, "gold": {"_count": 1}, "light": {"_count": 1}}, "outcome": {"_count": 4, "of": {"_count": 2}, "for": {"_count": 1}, "and": {"_count": 1}}, "Tshirt": {"_count": 1, "he": {"_count": 1}}, "region": {"_count": 3, "of": {"_count": 3}}, "while": {"_count": 11, "to": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 4}, "his": {"_count": 1}, "in": {"_count": 1}, "while": {"_count": 1}, "Professor": {"_count": 1}}, "national": {"_count": 2, "teams": {"_count": 1}, "anthem": {"_count": 1}}, "barriers": {"_count": 2, "": {"_count": 1}, "onto": {"_count": 1}}, "offending": {"_count": 2, "Beater": {"_count": 1}, "sentences": {"_count": 1}}, "roars": {"_count": 3, "of": {"_count": 2}, "and": {"_count": 1}}, "milling": {"_count": 2, "Gryffindors": {"_count": 1}, "crowds": {"_count": 1}}, "utmost": {"_count": 9, "fury": {"_count": 1}, "revulsion": {"_count": 1}, "severity": {"_count": 1}, "loathing": {"_count": 1}, "attentiveness": {"_count": 1}, "satisfaction": {"_count": 1}, "regard": {"_count": 1}, "importance": {"_count": 1}, "edge": {"_count": 1}}, "seal": {"_count": 1, "on": {"_count": 1}}, "robe": {"_count": 3, "Goyles": {"_count": 1}, "shop": {"_count": 1}, "he": {"_count": 1}}, "party": {"_count": 21, "went": {"_count": 1}, "": {"_count": 6}, "from": {"_count": 1}, "accompanied": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 1}, "by": {"_count": 1}, "marched": {"_count": 1}, "then": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}, "together": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}, "broke": {"_count": 1}, "said": {"_count": 1}}, "festivities": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "hatchet": {"_count": 1, "": {"_count": 1}}, "total": {"_count": 2, "darkness": {"_count": 1}, "silence": {"_count": 1}}, "divide": {"_count": 1, "in": {"_count": 1}}, "debris": {"_count": 6, "from": {"_count": 2}, "of": {"_count": 2}, "to": {"_count": 1}, "on": {"_count": 1}}, "experience": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "security": {"_count": 17, "trolls": {"_count": 6}, "on": {"_count": 1}, "desk": {"_count": 2}, "wizard": {"_count": 1}, "man": {"_count": 2}, "guards": {"_count": 1}, "Ive": {"_count": 1}, "arrangements": {"_count": 2}, "advice": {"_count": 1}}, "wrist": {"_count": 3, "": {"_count": 1}, "gave": {"_count": 1}, "of": {"_count": 1}}, "uneasy": {"_count": 1, "look": {"_count": 1}}, "bulletin": {"_count": 1, "board": {"_count": 1}}, "garlic": {"_count": 1, "at": {"_count": 1}}, "doorways": {"_count": 2, "on": {"_count": 1}, "as": {"_count": 1}}, "hearing": {"_count": 9, "to": {"_count": 2}, "and": {"_count": 1}, "once": {"_count": 1}, "if": {"_count": 1}, "while": {"_count": 1}, "he": {"_count": 1}, "filled": {"_count": 1}, "had": {"_count": 1}}, "chute": {"_count": 1, "": {"_count": 1}}, "witchs": {"_count": 5, "hump": {"_count": 2}, "head": {"_count": 1}, "purse": {"_count": 1}, "cool": {"_count": 1}}, "hump": {"_count": 1, "closed": {"_count": 1}}, "threatening": {"_count": 2, "atmosphere": {"_count": 1}, "look": {"_count": 1}}, "circumstances": {"_count": 7, "in": {"_count": 1}, "": {"_count": 3}, "are": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}}, "details": {"_count": 14, "too": {"_count": 1}, "were": {"_count": 2}, "Oh": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "hell": {"_count": 1}, "might": {"_count": 1}, "of": {"_count": 3}, "are": {"_count": 1}, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "Zonkos": {"_count": 2, "bag": {"_count": 1}, "bags": {"_count": 1}}, "situation": {"_count": 16, "hadnt": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 7}, "if": {"_count": 1}, "no": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "we": {"_count": 1}, "has": {"_count": 1}, "within": {"_count": 1}}, "slimeball": {"_count": 1, "": {"_count": 1}}, "blow": {"_count": 5, "to": {"_count": 1}, "stoically": {"_count": 1}, "coming": {"_count": 1}, "echoed": {"_count": 1}, "that": {"_count": 1}}, "merest": {"_count": 6, "halfglance": {"_count": 1}, "trace": {"_count": 2}, "suggestion": {"_count": 1}, "flicker": {"_count": 1}, "slit": {"_count": 1}}, "manufacturers": {"_count": 2, "": {"_count": 2}}, "help": {"_count": 3, "you": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 1}}, "verdict": {"_count": 1, "": {"_count": 1}}, "appeal": {"_count": 2, "": {"_count": 2}}, "strength": {"_count": 8, "she": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 3}}, "Cheering": {"_count": 2, "Charms": {"_count": 2}}, "aftereffects": {"_count": 3, "of": {"_count": 2}, "will": {"_count": 1}}, "milky": {"_count": 2, "glow": {"_count": 1}, "eyes": {"_count": 1}}, "Orb": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Orbs": {"_count": 1, "infinite": {"_count": 1}}, "conscious": {"_count": 1, "mind": {"_count": 1}}, "superconscious": {"_count": 1, "": {"_count": 1}}, "clinking": {"_count": 2, "of": {"_count": 2}}, "clairvoyant": {"_count": 1, "vibrations": {"_count": 1}}, "Gr": {"_count": 1, "Oh": {"_count": 1}}, "noble": {"_count": 4, "art": {"_count": 1}, "house": {"_count": 1}, "profession": {"_count": 1}, "phoenixfeather": {"_count": 1}}, "Signs": {"_count": 1, "": {"_count": 1}}, "burden": {"_count": 4, "of": {"_count": 3}, "upon": {"_count": 1}}, "legendary": {"_count": 1, "Charlie": {"_count": 1}}, "mudthrowing": {"_count": 1, "incident": {"_count": 1}}, "challenge": {"_count": 3, "enthusiastically": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}}, "treetops": {"_count": 7, "in": {"_count": 3}, "and": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "overhead": {"_count": 1}}, "conditions": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "bottlebrush": {"_count": 1, "tail": {"_count": 1}}, "lineup": {"_count": 1, "and": {"_count": 1}}, "roar": {"_count": 7, "from": {"_count": 1}, "of": {"_count": 6}}, "thrill": {"_count": 2, "of": {"_count": 2}}, "flight": {"_count": 3, "he": {"_count": 1}, "of": {"_count": 2}}, "penalty": {"_count": 1, "": {"_count": 1}}, "dirtiest": {"_count": 2, "game": {"_count": 1}, "look": {"_count": 1}}, "executioner": {"_count": 8, "to": {"_count": 1}, "": {"_count": 1}, "Macnair": {"_count": 2}, "were": {"_count": 1}, "furiously": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}}, "strict": {"_count": 1, "new": {"_count": 1}}, "difficulty": {"_count": 2, "of": {"_count": 2}}, "tasks": {"_count": 10, "they": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 2}, "ahead": {"_count": 2}, "not": {"_count": 1}, "he": {"_count": 1}}, "tortoises": {"_count": 1, "supposed": {"_count": 1}}, "pretense": {"_count": 3, "of": {"_count": 3}}, "stifling": {"_count": 1, "classroom": {"_count": 1}}, "hinkypunk": {"_count": 1, "which": {"_count": 1}}, "quagmire": {"_count": 1, "": {"_count": 1}}, "execution": {"_count": 1, "of": {"_count": 1}}, "appeals": {"_count": 1, "already": {"_count": 1}}, "axe": {"_count": 1, "ready": {"_count": 1}}, "makings": {"_count": 2, "of": {"_count": 2}}, "clutter": {"_count": 3, "of": {"_count": 1}, "": {"_count": 2}}, "perfumed": {"_count": 2, "smoke": {"_count": 1}, "fire": {"_count": 1}}, "heat": {"_count": 13, "": {"_count": 1}, "of": {"_count": 4}, "and": {"_count": 2}, "rise": {"_count": 1}, "coming": {"_count": 1}, "to": {"_count": 1}, "was": {"_count": 2}, "from": {"_count": 1}}, "servant": {"_count": 5, "will": {"_count": 1}, "": {"_count": 1}, "would": {"_count": 1}, "wwillingly": {"_count": 1}, "of": {"_count": 1}}, "the": {"_count": 5, "Dark": {"_count": 1}, "procedure": {"_count": 1}, "sort": {"_count": 1}, "room": {"_count": 1}, "aah": {"_count": 1}}, "jug": {"_count": 4, "": {"_count": 1}, "she": {"_count": 1}, "of": {"_count": 1}, "on": {"_count": 1}}, "mess": {"_count": 8, "": {"_count": 1}, "on": {"_count": 1}, "within": {"_count": 2}, "was": {"_count": 1}, "of": {"_count": 2}, "hes": {"_count": 1}}, "west": {"_count": 3, "there": {"_count": 1}, "wing": {"_count": 1}, "side": {"_count": 1}}, "rumble": {"_count": 2, "of": {"_count": 2}}, "unmistakable": {"_count": 10, "swish": {"_count": 1}, "hunting": {"_count": 1}, "sounds": {"_count": 2}, "sound": {"_count": 2}, "air": {"_count": 1}, "look": {"_count": 1}, "signs": {"_count": 1}, "noises": {"_count": 1}}, "longshadowed": {"_count": 1, "grounds": {"_count": 1}}, "quivering": {"_count": 2, "lump": {"_count": 1}, "Flutterby": {"_count": 1}}, "soft": {"_count": 9, "pounding": {"_count": 1}, "cursing": {"_count": 1}, "ground": {"_count": 2}, "rumble": {"_count": 1}, "thud": {"_count": 1}, "evening": {"_count": 1}, "clucking": {"_count": 1}, "musical": {"_count": 1}}, "brutes": {"_count": 1, "hair": {"_count": 1}}, "base": {"_count": 8, "of": {"_count": 6}, "": {"_count": 1}, "thats": {"_count": 1}}, "Willow": {"_count": 8, "had": {"_count": 1}, "": {"_count": 5}, "waiting": {"_count": 1}, "that": {"_count": 1}}, "vicious": {"_count": 1, "swishing": {"_count": 1}}, "battering": {"_count": 1, "branches": {"_count": 1}}, "boarded": {"_count": 3, "windows": {"_count": 2}, "up": {"_count": 1}}, "habit": {"_count": 2, "of": {"_count": 2}}, "wands": {"_count": 19, "in": {"_count": 2}, "": {"_count": 1}, "into": {"_count": 1}, "beam": {"_count": 1}, "wake": {"_count": 1}, "remained": {"_count": 1}, "Harry": {"_count": 1}, "force": {"_count": 1}, "to": {"_count": 2}, "will": {"_count": 1}, "of": {"_count": 1}, "Cissy": {"_count": 1}, "and": {"_count": 1}, "course": {"_count": 1}, "I": {"_count": 1}, "last": {"_count": 1}, "power": {"_count": 1}}, "shrunken": {"_count": 4, "arm": {"_count": 1}, "appearance": {"_count": 1}, "maroon": {"_count": 1}, "looking": {"_count": 1}}, "fray": {"_count": 4, "both": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "myself": {"_count": 1}}, "lunar": {"_count": 1, "chart": {"_count": 1}}, "fourposter": {"_count": 2, "bed": {"_count": 2}}, "absurdity": {"_count": 1, "of": {"_count": 1}}, "murder": {"_count": 5, "I": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 2}, "on": {"_count": 1}}, "register": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "villagers": {"_count": 6, "used": {"_count": 1}, "dont": {"_count": 1}, "cared": {"_count": 1}, "involved": {"_count": 1}, "shock": {"_count": 1}, "guessed": {"_count": 1}}, "bite": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Wolfsbane": {"_count": 3, "Potion": {"_count": 3}}, "rumor": {"_count": 3, "": {"_count": 1}, "is": {"_count": 1}, "it": {"_count": 1}}, "Animagus": {"_count": 2, "transformation": {"_count": 1}, "Black": {"_count": 1}}, "Willows": {"_count": 3, "attacking": {"_count": 1}, "swiping": {"_count": 1}, "ominously": {"_count": 1}}, "knot": {"_count": 9, "that": {"_count": 1}, "on": {"_count": 3}, "of": {"_count": 3}, "said": {"_count": 1}, "and": {"_count": 1}}, "slip": {"_count": 7, "and": {"_count": 2}, "of": {"_count": 2}, "in": {"_count": 1}, "round": {"_count": 1}, "by": {"_count": 1}}, "joke": {"_count": 9, "": {"_count": 4}, "shop": {"_count": 3}, "without": {"_count": 1}, "said": {"_count": 1}}, "proof": {"_count": 3, "": {"_count": 1}, "YouKnow": {"_count": 1}, "of": {"_count": 1}}, "company": {"_count": 8, "of": {"_count": 8}}, "lifeless": {"_count": 1, "Snape": {"_count": 1}}, "caption": {"_count": 5, "said": {"_count": 1}, "beneath": {"_count": 1}, "EILEEN": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "error": {"_count": 2, "of": {"_count": 2}}, "spy": {"_count": 4, "Sirius": {"_count": 1}, "from": {"_count": 1}, "Peter": {"_count": 1}, "": {"_count": 1}}, "bearsized": {"_count": 1, "dog": {"_count": 1}}, "ashen": {"_count": 1, "color": {"_count": 1}}, "playground": {"_count": 4, "before": {"_count": 1}, "asphalt": {"_count": 1}, "gate": {"_count": 1}, "": {"_count": 1}}, "ability": {"_count": 8, "to": {"_count": 7}, "Incarc": {"_count": 1}}, "mainland": {"_count": 1, "": {"_count": 1}}, "pitiful": {"_count": 2, "figure": {"_count": 1}, "condition": {"_count": 1}}, "starved": {"_count": 1, "mask": {"_count": 1}}, "convict": {"_count": 1, "theyd": {"_count": 1}}, "manacle": {"_count": 2, "binding": {"_count": 1}, "on": {"_count": 1}}, "battle": {"_count": 18, "to": {"_count": 2}, "before": {"_count": 1}, "beside": {"_count": 1}, "Lupin": {"_count": 1}, "was": {"_count": 2}, "": {"_count": 3}, "were": {"_count": 2}, "died": {"_count": 1}, "not": {"_count": 1}, "filled": {"_count": 1}, "came": {"_count": 1}, "is": {"_count": 1}, "and": {"_count": 1}}, "range": {"_count": 2, "of": {"_count": 2}}, "lakeshore": {"_count": 1, "they": {"_count": 1}}, "faint": {"_count": 4, "screaming": {"_count": 1}, "white": {"_count": 1}, "blue": {"_count": 1}, "scars": {"_count": 1}}, "mist": {"_count": 13, "for": {"_count": 1}, "": {"_count": 4}, "lifting": {"_count": 1}, "leaving": {"_count": 1}, "in": {"_count": 2}, "came": {"_count": 1}, "unnaturally": {"_count": 1}, "into": {"_count": 1}, "standing": {"_count": 1}}, "fog": {"_count": 3, "that": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}}, "like": {"_count": 3, "": {"_count": 1}, "of": {"_count": 2}}, "precautions": {"_count": 1, "put": {"_count": 1}}, "behavior": {"_count": 5, "of": {"_count": 5}}, "ward": {"_count": 26, "he": {"_count": 1}, "": {"_count": 11}, "slamming": {"_count": 1}, "before": {"_count": 1}, "ten": {"_count": 1}, "beside": {"_count": 1}, "behind": {"_count": 1}, "flowery": {"_count": 1}, "and": {"_count": 2}, "unnoticed": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}, "humming": {"_count": 1}, "now": {"_count": 1}, "Fleur": {"_count": 1}}, "kiss": {"_count": 1, "any": {"_count": 1}}, "opportunity": {"_count": 13, "to": {"_count": 12}, "of": {"_count": 1}}, "flood": {"_count": 3, "of": {"_count": 3}}, "chain": {"_count": 17, "out": {"_count": 1}, "around": {"_count": 2}, "of": {"_count": 2}, "off": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 3}, "on": {"_count": 1}, "clattering": {"_count": 1}, "in": {"_count": 1}, "which": {"_count": 1}, "onto": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "hourglass": {"_count": 3, "over": {"_count": 1}, "cutting": {"_count": 1}, "at": {"_count": 1}}, "sensation": {"_count": 8, "that": {"_count": 3}, "of": {"_count": 5}}, "paved": {"_count": 1, "floor": {"_count": 1}}, "possibility": {"_count": 16, "that": {"_count": 9}, "of": {"_count": 6}, "it": {"_count": 1}}, "tops": {"_count": 5, "of": {"_count": 5}}, "weirdest": {"_count": 1, "thing": {"_count": 1}}, "Hermione": {"_count": 1, "in": {"_count": 1}}, "Harry": {"_count": 3, "and": {"_count": 1}, "sat": {"_count": 1}, "nearest": {"_count": 1}}, "condemned": {"_count": 1, "shall": {"_count": 1}}, "reedy": {"_count": 2, "voice": {"_count": 2}}, "thud": {"_count": 2, "of": {"_count": 2}}, "howling": {"_count": 4, "and": {"_count": 1}, "wind": {"_count": 3}}, "thief": {"_count": 11, "will": {"_count": 1}, "Mundungus": {"_count": 1}, "Master": {"_count": 1}, "in": {"_count": 1}, "Gregorovitch": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "who": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}}, "skies": {"_count": 8, "if": {"_count": 1}, "for": {"_count": 2}, "in": {"_count": 1}, "tonight": {"_count": 1}, "": {"_count": 2}, "made": {"_count": 1}}, "snap": {"_count": 1, "of": {"_count": 1}}, "branch": {"_count": 2, "Lupin": {"_count": 1}, "of": {"_count": 1}}, "dry": {"_count": 2, "ground": {"_count": 1}, "sobs": {"_count": 1}}, "breeze": {"_count": 5, "": {"_count": 4}, "from": {"_count": 1}}, "shifting": {"_count": 3, "clouds": {"_count": 1}, "silver": {"_count": 1}, "mist": {"_count": 1}}, "seeing": {"_count": 1, "": {"_count": 1}}, "glimmers": {"_count": 1, "of": {"_count": 1}}, "circle": {"_count": 22, "of": {"_count": 7}, "as": {"_count": 3}, "stirred": {"_count": 1}, "": {"_count": 1}, "staring": {"_count": 1}, "flashed": {"_count": 1}, "moved": {"_count": 1}, "to": {"_count": 1}, "around": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}, "MadEye": {"_count": 1}, "Voldemort": {"_count": 1}, "they": {"_count": 1}}, "rescuer": {"_count": 1, "to": {"_count": 1}}, "swarming": {"_count": 2, "dementors": {"_count": 1}, "students": {"_count": 1}}, "lefthand": {"_count": 8, "side": {"_count": 5}, "corner": {"_count": 1}, "fireplaces": {"_count": 1}, "hoop": {"_count": 1}}, "battlements": {"_count": 2, "and": {"_count": 2}}, "Prophet": {"_count": 28, "exactly": {"_count": 1}, "tomorrow": {"_count": 2}, "he": {"_count": 1}, "aside": {"_count": 1}, "you": {"_count": 1}, "propped": {"_count": 1}, "wont": {"_count": 1}, "but": {"_count": 1}, "might": {"_count": 1}, "had": {"_count": 1}, "It": {"_count": 1}, "says": {"_count": 1}, "Sometimes": {"_count": 1}, "has": {"_count": 1}, "making": {"_count": 1}, "often": {"_count": 1}, "Havent": {"_count": 1}, "that": {"_count": 1}, "out": {"_count": 1}, "Yeah": {"_count": 1}, "folded": {"_count": 1}, "to": {"_count": 1}, "He": {"_count": 1}, "so": {"_count": 1}, "was": {"_count": 1}, "made": {"_count": 1}, "all": {"_count": 1}}, "TimeTurner": {"_count": 3, "back": {"_count": 1}, "taught": {"_count": 1}, "hadnt": {"_count": 1}}, "Kiss": {"_count": 1, "on": {"_count": 1}}, "extraordinary": {"_count": 3, "events": {"_count": 1}, "clairvoyant": {"_count": 1}, "": {"_count": 1}}, "thread": {"_count": 7, "of": {"_count": 5}, "and": {"_count": 1}, "connecting": {"_count": 1}}, "debt": {"_count": 1, "of": {"_count": 1}}, "home": {"_count": 6, "he": {"_count": 1}, "position": {"_count": 1}, "Sirius": {"_count": 1}, "of": {"_count": 2}, "comforts": {"_count": 1}}, "past": {"_count": 25, "week": {"_count": 2}, "havent": {"_count": 1}, "his": {"_count": 1}, "month": {"_count": 2}, "fortnight": {"_count": 2}, "quarter": {"_count": 1}, "decade": {"_count": 1}, "six": {"_count": 2}, "fifteen": {"_count": 1}, "entrusted": {"_count": 1}, "five": {"_count": 1}, "year": {"_count": 1}, "few": {"_count": 1}, "said": {"_count": 2}, "bluish": {"_count": 1}, "": {"_count": 2}, "four": {"_count": 2}, "tense": {"_count": 1}}, "noisiest": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "Dursleysd": {"_count": 1, "be": {"_count": 1}}, "order": {"_count": 10, "to": {"_count": 3}, "forms": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 2}, "wands": {"_count": 1}, "of": {"_count": 1}, "kindly": {"_count": 1}}, "Owl": {"_count": 1, "Office": {"_count": 1}}, "fright": {"_count": 1, "I": {"_count": 1}}, "Riddle": {"_count": 16, "House": {"_count": 11}, "family": {"_count": 1}, "who": {"_count": 2}, "house": {"_count": 1}, "that": {"_count": 1}}, "older": {"_count": 4, "inhabitants": {"_count": 1}, "students": {"_count": 1}, "man": {"_count": 1}, "Dumbledore": {"_count": 1}}, "tale": {"_count": 8, "however": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 2}, "they": {"_count": 1}, "didnt": {"_count": 1}, "said": {"_count": 1}}, "drawing": {"_count": 25, "room": {"_count": 24}, "of": {"_count": 1}}, "Riddles": {"_count": 16, "for": {"_count": 1}, "cook": {"_count": 1}, "gardener": {"_count": 1}, "ever": {"_count": 1}, "": {"_count": 3}, "deaths": {"_count": 2}, "bodies": {"_count": 1}, "had": {"_count": 3}, "all": {"_count": 1}, "died": {"_count": 1}, "I": {"_count": 1}}, "identity": {"_count": 3, "of": {"_count": 3}}, "murders": {"_count": 3, "": {"_count": 1}, "for": {"_count": 1}, "of": {"_count": 1}}, "suddenly": {"_count": 2, "silent": {"_count": 1}, "festive": {"_count": 1}}, "war": {"_count": 6, "with": {"_count": 1}, "": {"_count": 1}, "against": {"_count": 2}, "memorial": {"_count": 2}}, "cook": {"_count": 3, "drinks": {"_count": 1}, "": {"_count": 1}, "Hermione": {"_count": 1}}, "eagerly": {"_count": 1, "listening": {"_count": 1}}, "gardeners": {"_count": 1, "cottage": {"_count": 1}}, "landlord": {"_count": 3, "": {"_count": 1}, "wizened": {"_count": 1}, "of": {"_count": 1}}, "neighboring": {"_count": 1, "town": {"_count": 1}}, "police": {"_count": 9, "were": {"_count": 2}, "say": {"_count": 1}, "ever": {"_count": 1}, "": {"_count": 2}, "tonight": {"_count": 1}, "come": {"_count": 1}, "Vernon": {"_count": 1}}, "report": {"_count": 5, "on": {"_count": 1}, "continued": {"_count": 1}, "Hes": {"_count": 1}, "there": {"_count": 1}, "inside": {"_count": 1}}, "frustrated": {"_count": 1, "police": {"_count": 1}}, "Little": {"_count": 1, "Hangleton": {"_count": 1}}, "Hanged": {"_count": 1, "Man": {"_count": 1}}, "gardening": {"_count": 1, "however": {"_count": 1}}, "weeds": {"_count": 1, "were": {"_count": 1}}, "stiffness": {"_count": 1, "in": {"_count": 1}}, "dust": {"_count": 11, "that": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "obviously": {"_count": 1}, "disturbed": {"_count": 1}, "figure": {"_count": 1}, "cloud": {"_count": 1}, "toward": {"_count": 1}, "after": {"_count": 1}}, "intruders": {"_count": 2, "were": {"_count": 1}, "face": {"_count": 1}}, "sparse": {"_count": 1, "hairs": {"_count": 1}}, "clink": {"_count": 2, "of": {"_count": 2}}, "task": {"_count": 23, "of": {"_count": 7}, "alone": {"_count": 1}, "": {"_count": 7}, "I": {"_count": 3}, "is": {"_count": 1}, "theyre": {"_count": 1}, "that": {"_count": 1}, "although": {"_count": 1}, "ahead": {"_count": 1}}, "protection": {"_count": 11, "surrounding": {"_count": 2}, "my": {"_count": 1}, "of": {"_count": 3}, "continues": {"_count": 1}, "your": {"_count": 1}, "back": {"_count": 1}, "or": {"_count": 1}, "around": {"_count": 1}}, "cruel": {"_count": 2, "amusement": {"_count": 1}, "mouth": {"_count": 1}}, "surprise": {"_count": 2, "": {"_count": 2}}, "honor": {"_count": 4, "of": {"_count": 3}, "": {"_count": 1}}, "sliver": {"_count": 1, "of": {"_count": 1}}, "speaker": {"_count": 1, "": {"_count": 1}}, "rotting": {"_count": 3, "hearth": {"_count": 1}, "smell": {"_count": 1}, "floorboards": {"_count": 1}}, "crackling": {"_count": 4, "of": {"_count": 4}}, "lightningbolt": {"_count": 1, "scar": {"_count": 1}}, "creak": {"_count": 2, "of": {"_count": 2}}, "swish": {"_count": 1, "of": {"_count": 1}}, "curse": {"_count": 25, "that": {"_count": 3}, "had": {"_count": 2}, "and": {"_count": 1}, "entirely": {"_count": 1}, "than": {"_count": 1}, "with": {"_count": 1}, "should": {"_count": 1}, "missed": {"_count": 1}, "on": {"_count": 1}, "off": {"_count": 1}, "lifted": {"_count": 1}, "intended": {"_count": 1}, "Why": {"_count": 1}, "knocking": {"_count": 1}, "once": {"_count": 1}, "was": {"_count": 1}, "blocking": {"_count": 1}, "": {"_count": 2}, "it": {"_count": 1}, "in": {"_count": 1}, "coming": {"_count": 1}}, "terror": {"_count": 3, "in": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 1}}, "birthday": {"_count": 1, "cards": {"_count": 1}}, "solution": {"_count": 5, "came": {"_count": 1}, "would": {"_count": 1}, "is": {"_count": 1}, "of": {"_count": 1}, "at": {"_count": 1}}, "terrifying": {"_count": 1, "wizard": {"_count": 1}}, "highly": {"_count": 3, "useful": {"_count": 1}, "polished": {"_count": 2}}, "mornings": {"_count": 2, "Daily": {"_count": 1}, "and": {"_count": 1}}, "square": {"_count": 18, "table": {"_count": 1}, "was": {"_count": 2}, "came": {"_count": 1}, "beyond": {"_count": 1}, "thinks": {"_count": 1}, "": {"_count": 4}, "hole": {"_count": 1}, "parcel": {"_count": 1}, "outside": {"_count": 2}, "of": {"_count": 1}, "than": {"_count": 1}, "however": {"_count": 1}, "and": {"_count": 1}}, "accusations": {"_count": 1, "of": {"_count": 1}}, "comings": {"_count": 1, "and": {"_count": 1}}, "Smeltings": {"_count": 1, "school": {"_count": 1}}, "sorts": {"_count": 1, "of": {"_count": 1}}, "diet": {"_count": 4, "too": {"_count": 1}, "at": {"_count": 1}, "was": {"_count": 1}, "they": {"_count": 1}}, "normal": {"_count": 4, "way": {"_count": 2}, "eye": {"_count": 1}, "one": {"_count": 1}}, "treat": {"_count": 1, "of": {"_count": 1}}, "mustache": {"_count": 2, "a": {"_count": 1}, "and": {"_count": 1}}, "Hog": {"_count": 1, "off": {"_count": 1}}, "Dursley": {"_count": 2, "household": {"_count": 1}, "s": {"_count": 1}}, "clothes": {"_count": 6, "Petunia": {"_count": 1}, "which": {"_count": 1}, "Hermiones": {"_count": 1}, "rack": {"_count": 2}, "in": {"_count": 1}}, "pupils": {"_count": 4, "of": {"_count": 2}, "from": {"_count": 1}, "were": {"_count": 1}}, "cogs": {"_count": 1, "working": {"_count": 1}}, "conclusion": {"_count": 5, "forming": {"_count": 1}, "that": {"_count": 3}, "": {"_count": 1}}, "broad": {"_count": 1, "grin": {"_count": 1}}, "astonished": {"_count": 2, "look": {"_count": 1}, "dancers": {"_count": 1}}, "pants": {"_count": 1, "bored": {"_count": 1}}, "decency": {"_count": 1, "to": {"_count": 1}}, "enemy": {"_count": 4, "": {"_count": 2}, "thats": {"_count": 1}, "are": {"_count": 1}}, "net": {"_count": 1, "curtains": {"_count": 1}}, "tension": {"_count": 4, "he": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "So": {"_count": 1}}, "traffics": {"_count": 1, "bad": {"_count": 1}}, "blocked": {"_count": 1, "fireplace": {"_count": 1}}, "boards": {"_count": 2, "behind": {"_count": 1}, "": {"_count": 1}}, "electric": {"_count": 1, "fire": {"_count": 1}}, "coffee": {"_count": 2, "table": {"_count": 2}}, "blasted": {"_count": 2, "fireplace": {"_count": 2}}, "Floo": {"_count": 11, "Network": {"_count": 10}, "Regulation": {"_count": 1}}, "usually": {"_count": 2, "spotless": {"_count": 1}, "languid": {"_count": 1}}, "video": {"_count": 1, "recorder": {"_count": 1}}, "plugs": {"_count": 1, "": {"_count": 1}}, "temptation": {"_count": 11, "to": {"_count": 8}, "": {"_count": 1}, "of": {"_count": 1}, "you": {"_count": 1}}, "footlong": {"_count": 1, "thing": {"_count": 1}}, "toffee": {"_count": 1, "my": {"_count": 1}}, "combined": {"_count": 4, "pressure": {"_count": 1}, "efforts": {"_count": 1}, "dining": {"_count": 1}, "force": {"_count": 1}}, "sideboard": {"_count": 5, "and": {"_count": 4}, "": {"_count": 1}}, "ornament": {"_count": 1, "to": {"_count": 1}}, "scrubbed": {"_count": 1, "wooden": {"_count": 1}}, "nearer": {"_count": 1, "of": {"_count": 1}}, "mistreatment": {"_count": 1, "of": {"_count": 1}}, "rickety": {"_count": 3, "staircase": {"_count": 1}, "table": {"_count": 1}, "stool": {"_count": 1}}, "examinations": {"_count": 1, "Hogwarts": {"_count": 1}}, "topsecret": {"_count": 1, "workings": {"_count": 1}}, "market": {"_count": 2, "flooded": {"_count": 1}, "for": {"_count": 1}}, "toffees": {"_count": 2, "": {"_count": 1}, "away": {"_count": 1}}, "Chudley": {"_count": 4, "Cannons": {"_count": 4}}, "fish": {"_count": 2, "tank": {"_count": 1}, "and": {"_count": 1}}, "posters": {"_count": 1, "on": {"_count": 1}}, "awkward": {"_count": 1, "moment": {"_count": 1}}, "potatoes": {"_count": 3, "": {"_count": 1}, "which": {"_count": 1}, "and": {"_count": 1}}, "saucepan": {"_count": 1, "over": {"_count": 1}}, "Improper": {"_count": 7, "Use": {"_count": 7}}, "cutlery": {"_count": 1, "drawer": {"_count": 1}}, "dustpan": {"_count": 1, "": {"_count": 1}}, "sauce": {"_count": 1, "on": {"_count": 1}}, "Wellington": {"_count": 1, "boots": {"_count": 1}}, "boot": {"_count": 4, "trying": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}}, "commotion": {"_count": 5, "was": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 3}}, "nine": {"_count": 4, "Weasleys": {"_count": 1}, "of": {"_count": 1}, "planets": {"_count": 1}, "Outstanding": {"_count": 1}}, "arrangements": {"_count": 4, "for": {"_count": 2}, "": {"_count": 1}, "What": {"_count": 1}}, "support": {"_count": 1, "we": {"_count": 1}}, "semifinals": {"_count": 1, "": {"_count": 1}}, "position": {"_count": 12, "of": {"_count": 7}, "where": {"_count": 1}, "has": {"_count": 1}, "": {"_count": 2}, "into": {"_count": 1}}, "smells": {"_count": 3, "of": {"_count": 2}, "getting": {"_count": 1}}, "rosebushes": {"_count": 3, "laughing": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}}, "tickets": {"_count": 2, "safely": {"_count": 1}, "cost": {"_count": 1}}, "body": {"_count": 20, "parts": {"_count": 1}, "of": {"_count": 2}, "": {"_count": 8}, "than": {"_count": 1}, "Harry": {"_count": 1}, "carefully": {"_count": 1}, "revolving": {"_count": 1}, "Bill": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 2}}, "lining": {"_count": 1, "of": {"_count": 1}}, "turnups": {"_count": 1, "of": {"_count": 1}}, "Apparition": {"_count": 4, "point": {"_count": 1}, "but": {"_count": 1}, "instructor": {"_count": 1}, "examiner": {"_count": 1}}, "crest": {"_count": 1, "of": {"_count": 1}}, "Portkey": {"_count": 11, "said": {"_count": 1}, "thats": {"_count": 1}, "hit": {"_count": 1}, "it": {"_count": 1}, "had": {"_count": 1}, "transported": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}}, "hilltop": {"_count": 2, "": {"_count": 2}}, "Regulation": {"_count": 12, "and": {"_count": 12}}, "redheads": {"_count": 1, "said": {"_count": 1}}, "gentleman": {"_count": 1, "": {"_count": 1}}, "Lovegoods": {"_count": 4, "have": {"_count": 1}, "live": {"_count": 1}, "window": {"_count": 1}, "": {"_count": 1}}, "Fawcetts": {"_count": 1, "couldnt": {"_count": 1}}, "kilted": {"_count": 1, "wizard": {"_count": 1}}, "ghostly": {"_count": 6, "shapes": {"_count": 2}, "face": {"_count": 1}, "prow": {"_count": 1}, "green": {"_count": 2}}, "Diggorys": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "cottage": {"_count": 17, "door": {"_count": 1}, "and": {"_count": 2}, "banging": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 1}, "was": {"_count": 1}, "toward": {"_count": 1}, "leaving": {"_count": 1}, "anger": {"_count": 1}, "garden": {"_count": 1}, "her": {"_count": 1}, "windows": {"_count": 1}, "this": {"_count": 1}}, "tents": {"_count": 5, "": {"_count": 2}, "nobody": {"_count": 1}, "and": {"_count": 1}, "canvas": {"_count": 1}}, "wood": {"_count": 23, "there": {"_count": 2}, "at": {"_count": 2}, "following": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 4}, "still": {"_count": 2}, "and": {"_count": 2}, "all": {"_count": 1}, "their": {"_count": 1}, "expected": {"_count": 1}, "beneath": {"_count": 1}, "of": {"_count": 1}, "she": {"_count": 1}, "an": {"_count": 1}, "paneled": {"_count": 1}, "it": {"_count": 1}}, "notes": {"_count": 2, "apart": {"_count": 1}, "stacked": {"_count": 1}}, "correct": {"_count": 9, "notes": {"_count": 1}, "composition": {"_count": 1}, "method": {"_count": 1}, "greenhouse": {"_count": 1}, "way": {"_count": 1}, "what": {"_count": 1}, "use": {"_count": 1}, "password": {"_count": 1}, "date": {"_count": 1}}, "symptoms": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "campsite": {"_count": 22, "for": {"_count": 1}, "": {"_count": 9}, "but": {"_count": 1}, "with": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 3}, "they": {"_count": 1}, "had": {"_count": 1}, "manager": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}, "before": {"_count": 1}}, "sports": {"_count": 1, "department": {"_count": 1}}, "Wimbourne": {"_count": 2, "Wasps": {"_count": 2}}, "poles": {"_count": 1, "and": {"_count": 1}}, "mallet": {"_count": 1, "they": {"_count": 1}}, "tent": {"_count": 103, "flap": {"_count": 1}, "and": {"_count": 8}, "": {"_count": 20}, "watching": {"_count": 1}, "Ron": {"_count": 3}, "said": {"_count": 3}, "if": {"_count": 1}, "as": {"_count": 2}, "that": {"_count": 2}, "again": {"_count": 2}, "their": {"_count": 1}, "with": {"_count": 2}, "avoiding": {"_count": 1}, "the": {"_count": 1}, "two": {"_count": 1}, "which": {"_count": 1}, "rejoined": {"_count": 1}, "he": {"_count": 2}, "pulled": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 4}, "seemed": {"_count": 1}, "Harry": {"_count": 3}, "pegs": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 1}, "looking": {"_count": 1}, "all": {"_count": 2}, "in": {"_count": 3}, "empty": {"_count": 1}, "on": {"_count": 2}, "entrance": {"_count": 5}, "Harrys": {"_count": 1}, "Phineas": {"_count": 1}, "feeling": {"_count": 2}, "then": {"_count": 1}, "because": {"_count": 1}, "roof": {"_count": 1}, "tears": {"_count": 1}, "a": {"_count": 1}, "was": {"_count": 2}, "at": {"_count": 1}, "lying": {"_count": 1}, "but": {"_count": 1}, "reading": {"_count": 1}, "packed": {"_count": 1}, "huddled": {"_count": 1}, "mouth": {"_count": 1}, "when": {"_count": 1}, "forgetting": {"_count": 1}, "next": {"_count": 1}, "Greyback": {"_count": 1}, "flew": {"_count": 1}}, "mismatched": {"_count": 1, "chairs": {"_count": 1}}, "city": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "families": {"_count": 3, "with": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}}, "dewy": {"_count": 1, "grass": {"_count": 1}}, "Bulgarians": {"_count": 8, "have": {"_count": 2}, "you": {"_count": 1}, "": {"_count": 2}, "arguments": {"_count": 1}, "filed": {"_count": 1}, "at": {"_count": 1}}, "Bulgarian": {"_count": 17, "flag": {"_count": 1}, "Seeker": {"_count": 2}, "minister": {"_count": 2}, "Minister": {"_count": 2}, "National": {"_count": 2}, "supporters": {"_count": 1}, "Chaser": {"_count": 1}, "Beaters": {"_count": 2}, "Keeper": {"_count": 2}, "team": {"_count": 1}, "crowd": {"_count": 1}}, "men": {"_count": 8, "they": {"_count": 1}, "suddenly": {"_count": 1}, "arrive": {"_count": 1}, "on": {"_count": 2}, "who": {"_count": 1}, "were": {"_count": 1}, "then": {"_count": 1}}, "pinstriped": {"_count": 1, "trousers": {"_count": 1}}, "giggles": {"_count": 1, "at": {"_count": 1}}, "queue": {"_count": 15, "and": {"_count": 2}, "lining": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 1}, "to": {"_count": 2}, "immediately": {"_count": 1}, "for": {"_count": 1}, "here": {"_count": 1}}, "Puddlemere": {"_count": 1, "United": {"_count": 1}}, "amazement": {"_count": 1, "he": {"_count": 1}}, "matches": {"_count": 2, "said": {"_count": 1}, "from": {"_count": 1}}, "Goblin": {"_count": 3, "Liaison": {"_count": 3}}, "robes": {"_count": 10, "were": {"_count": 1}, "out": {"_count": 1}, "became": {"_count": 1}, "on": {"_count": 2}, "into": {"_count": 2}, "I": {"_count": 1}, "that": {"_count": 1}, "over": {"_count": 1}}, "campfire": {"_count": 1, "what": {"_count": 1}}, "strongest": {"_count": 4, "Ive": {"_count": 1}, "Truth": {"_count": 1}, "shield": {"_count": 1}, "affinity": {"_count": 1}}, "boil": {"_count": 1, "": {"_count": 1}}, "Top": {"_count": 15, "Box": {"_count": 15}}, "chap": {"_count": 1, "was": {"_count": 1}}, "warpath": {"_count": 1, "": {"_count": 1}}, "Registry": {"_count": 1, "of": {"_count": 1}}, "announcement": {"_count": 2, "until": {"_count": 1}, "of": {"_count": 1}}, "inevitable": {"_count": 1, "and": {"_count": 1}}, "signs": {"_count": 6, "of": {"_count": 1}, "even": {"_count": 1}, "The": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "whether": {"_count": 1}}, "salesmen": {"_count": 1, "buying": {"_count": 1}}, "saleswizard": {"_count": 1, "eagerly": {"_count": 1}}, "Omnioculars": {"_count": 3, "": {"_count": 2}, "again": {"_count": 1}}, "immense": {"_count": 2, "gold": {"_count": 1}, "pile": {"_count": 1}}, "awestruck": {"_count": 1, "look": {"_count": 1}}, "Family": {"_count": 1, "safe": {"_count": 1}}, "exact": {"_count": 5, "size": {"_count": 1}, "color": {"_count": 2}, "wording": {"_count": 1}, "point": {"_count": 1}}, "Malfoy": {"_count": 4, "family": {"_count": 1}, "boy": {"_count": 3}}, "replay": {"_count": 2, "knob": {"_count": 1}, "and": {"_count": 1}}, "gaze": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "veela": {"_count": 18, "because": {"_count": 1}, "danced": {"_count": 1}, "to": {"_count": 1}, "who": {"_count": 2}, "and": {"_count": 3}, "were": {"_count": 2}, "started": {"_count": 1}, "across": {"_count": 1}, "lost": {"_count": 1}, "the": {"_count": 1}, "had": {"_count": 1}, "now": {"_count": 1}, "cousins": {"_count": 2}}, "shamrocks": {"_count": 1, "on": {"_count": 1}}, "Irish": {"_count": 20, "National": {"_count": 2}, "Chasers": {"_count": 2}, "seats": {"_count": 1}, "crowd": {"_count": 1}, "supporters": {"_count": 4}, "Seeker": {"_count": 1}, "seemed": {"_count": 1}, "players": {"_count": 1}, "national": {"_count": 1}, "team": {"_count": 3}, "theyve": {"_count": 1}, "mascots": {"_count": 1}, "International": {"_count": 1}}, "rainbow": {"_count": 1, "faded": {"_count": 1}}, "shamrock": {"_count": 2, "soared": {"_count": 1}, "Harry": {"_count": 1}}, "tumultuous": {"_count": 1, "applause": {"_count": 1}}, "leprechauns": {"_count": 5, "drifted": {"_count": 1}, "watching": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "scarlet": {"_count": 10, "Quaffle": {"_count": 1}, "Gryffindor": {"_count": 1}, "Chinese": {"_count": 1}, "banner": {"_count": 1}, "Hogwarts": {"_count": 2}, "steam": {"_count": 2}, "eyes": {"_count": 1}, "train": {"_count": 1}}, "briefest": {"_count": 1, "moment": {"_count": 1}}, "minuscule": {"_count": 2, "winged": {"_count": 1}, "silver": {"_count": 1}}, "slow": {"_count": 3, "dial": {"_count": 1}, "deep": {"_count": 1}, "stroking": {"_count": 1}}, "playbyplay": {"_count": 1, "button": {"_count": 1}}, "lenses": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 2}}, "sidelines": {"_count": 3, "had": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "rosette": {"_count": 1, "on": {"_count": 1}}, "greenclad": {"_count": 2, "supporters": {"_count": 2}}, "referee": {"_count": 3, "": {"_count": 2}, "who": {"_count": 1}}, "dancing": {"_count": 6, "veela": {"_count": 1}, "with": {"_count": 1}, "flames": {"_count": 1}, "fire": {"_count": 1}, "diamondbright": {"_count": 1}, "firelight": {"_count": 1}}, "tumult": {"_count": 4, "of": {"_count": 1}, "died": {"_count": 1}, "": {"_count": 1}, "broke": {"_count": 1}}, "pitched": {"_count": 1, "battle": {"_count": 1}}, "cheers": {"_count": 7, "of": {"_count": 2}, "and": {"_count": 3}, "seemed": {"_count": 1}, "the": {"_count": 1}}, "shrieks": {"_count": 1, "of": {"_count": 1}}, "blasts": {"_count": 1, "now": {"_count": 1}}, "Ireland": {"_count": 1, "supporters": {"_count": 1}}, "idiot": {"_count": 3, "": {"_count": 1}, "tried": {"_count": 1}, "Longbottom": {"_count": 1}}, "gallant": {"_count": 1, "losers": {"_count": 1}}, "backs": {"_count": 2, "of": {"_count": 2}}, "purplecarpeted": {"_count": 2, "stairs": {"_count": 1}, "corridors": {"_count": 1}}, "lanternlit": {"_count": 1, "path": {"_count": 1}}, "level": {"_count": 5, "of": {"_count": 5}}, "verbal": {"_count": 1, "replays": {"_count": 1}}, "canvas": {"_count": 11, "ceiling": {"_count": 2}, "but": {"_count": 2}, "": {"_count": 2}, "of": {"_count": 1}, "walls": {"_count": 1}, "and": {"_count": 1}, "large": {"_count": 1}, "over": {"_count": 1}}, "Wronski": {"_count": 2, "Feint": {"_count": 2}}, "bunk": {"_count": 2, "and": {"_count": 1}, "beside": {"_count": 1}}, "masked": {"_count": 5, "wizards": {"_count": 3}, "face": {"_count": 1}, "Death": {"_count": 1}}, "marching": {"_count": 2, "group": {"_count": 1}, "crowd": {"_count": 1}}, "marchers": {"_count": 2, "blast": {"_count": 1}, "below": {"_count": 1}}, "oncoming": {"_count": 8, "marchers": {"_count": 1}, "darkness": {"_count": 1}, "Death": {"_count": 1}, "figures": {"_count": 1}, "monsters": {"_count": 1}, "oblivion": {"_count": 1}, "crowd": {"_count": 1}, "horde": {"_count": 1}}, "source": {"_count": 25, "of": {"_count": 21}, "we": {"_count": 1}, "has": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}}, "Roberts": {"_count": 3, "family": {"_count": 3}}, "hooded": {"_count": 3, "wizards": {"_count": 1}, "faces": {"_count": 2}}, "elves": {"_count": 6, "are": {"_count": 1}, "all": {"_count": 1}, "kept": {"_count": 1}, "who": {"_count": 2}, "to": {"_count": 1}}, "pimply": {"_count": 1, "wizard": {"_count": 1}}, "tripledecker": {"_count": 1, "Knight": {"_count": 1}}, "model": {"_count": 1, "was": {"_count": 1}}, "riot": {"_count": 2, "was": {"_count": 1}, "he": {"_count": 1}}, "smirk": {"_count": 2, "off": {"_count": 2}}, "patch": {"_count": 10, "of": {"_count": 10}}, "skull": {"_count": 10, "which": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "down": {"_count": 1}, "above": {"_count": 1}, "and": {"_count": 2}, "of": {"_count": 1}}, "Mark": {"_count": 23, "come": {"_count": 1}, "": {"_count": 8}, "could": {"_count": 1}, "stole": {"_count": 1}, "of": {"_count": 1}, "burn": {"_count": 1}, "for": {"_count": 1}, "I": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 2}, "Harrys": {"_count": 1}, "burns": {"_count": 1}}, "woolen": {"_count": 1, "dressing": {"_count": 1}}, "bushes": {"_count": 8, "aside": {"_count": 1}, "and": {"_count": 3}, "said": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 2}}, "Code": {"_count": 1, "of": {"_count": 1}}, "emeraldgreen": {"_count": 1, "skull": {"_count": 1}}, "incantation": {"_count": 8, "was": {"_count": 1}, "let": {"_count": 1}, "and": {"_count": 1}, "aloud": {"_count": 2}, "instead": {"_count": 1}, "": {"_count": 1}, "sprang": {"_count": 1}}, "smoky": {"_count": 2, "skull": {"_count": 1}, "shadowy": {"_count": 1}}, "misfortune": {"_count": 2, "to": {"_count": 2}}, "sobbing": {"_count": 5, "elf": {"_count": 1}, "and": {"_count": 1}, "continued": {"_count": 1}, "Bellatrix": {"_count": 1}, "Hagrid": {"_count": 1}}, "Death": {"_count": 212, "Eaters": {"_count": 180}, "Eater": {"_count": 29}, "Chamber": {"_count": 1}, "Room": {"_count": 1}, "Eatersll": {"_count": 1}}, "Robertses": {"_count": 1, "before": {"_count": 1}}, "moor": {"_count": 1, "": {"_count": 1}}, "Portkeys": {"_count": 2, "lay": {"_count": 1}, "all": {"_count": 1}}, "keeper": {"_count": 2, "of": {"_count": 2}}, "lane": {"_count": 14, "": {"_count": 7}, "that": {"_count": 1}, "curved": {"_count": 1}, "sleet": {"_count": 1}, "and": {"_count": 2}, "turned": {"_count": 1}, "toward": {"_count": 1}}, "Guidelines": {"_count": 1, "for": {"_count": 1}}, "Treatment": {"_count": 1, "of": {"_count": 1}}, "appearance": {"_count": 8, "of": {"_count": 7}, "at": {"_count": 1}}, "brightening": {"_count": 1, "sky": {"_count": 1}}, "march": {"_count": 1, "and": {"_count": 1}}, "Hedwigfree": {"_count": 1, "sky": {"_count": 1}}, "orchard": {"_count": 4, "Harry": {"_count": 1}, "where": {"_count": 1}, "awaiting": {"_count": 1}, "which": {"_count": 1}}, "Sunday": {"_count": 3, "evening": {"_count": 1}, "Prophet": {"_count": 2}}, "rug": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "hands": {"_count": 5, "were": {"_count": 2}, "of": {"_count": 3}}, "longest": {"_count": 3, "was": {"_count": 1}, "and": {"_count": 1}, "time": {"_count": 1}}, "fats": {"_count": 1, "really": {"_count": 1}}, "argument": {"_count": 6, "": {"_count": 1}, "with": {"_count": 1}, "watching": {"_count": 1}, "culminating": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "halfpacked": {"_count": 1, "trunks": {"_count": 1}}, "shopping": {"_count": 2, "": {"_count": 1}, "quickly": {"_count": 1}}, "dustbins": {"_count": 4, "do": {"_count": 1}, "move": {"_count": 1}, "": {"_count": 1}, "stood": {"_count": 1}}, "pleasemen": {"_count": 1, "turned": {"_count": 1}}, "intruder": {"_count": 3, "": {"_count": 1}, "Filch": {"_count": 1}, "shot": {"_count": 1}}, "cells": {"_count": 1, "in": {"_count": 1}}, "taxi": {"_count": 1, "drivers": {"_count": 1}}, "taxis": {"_count": 1, "with": {"_count": 1}}, "fireworks": {"_count": 4, "and": {"_count": 1}, "than": {"_count": 1}, "in": {"_count": 1}, "without": {"_count": 1}}, "busy": {"_count": 2, "road": {"_count": 1}, "Gryffindor": {"_count": 1}}, "apparently": {"_count": 6, "solid": {"_count": 1}, "empty": {"_count": 3}, "happy": {"_count": 1}, "deserted": {"_count": 1}}, "hooting": {"_count": 1, "of": {"_count": 1}}, "defense": {"_count": 3, "rubbish": {"_count": 1}, "Albus": {"_count": 1}, "group": {"_count": 1}}, "possibilities": {"_count": 1, "said": {"_count": 1}}, "lanterns": {"_count": 3, "were": {"_count": 1}, "on": {"_count": 1}, "light": {"_count": 1}}, "miniature": {"_count": 1, "figure": {"_count": 1}}, "motion": {"_count": 1, "of": {"_count": 1}}, "moldy": {"_count": 1, "lace": {"_count": 1}}, "dress": {"_count": 1, "robes": {"_count": 1}}, "sliding": {"_count": 2, "compartment": {"_count": 1}, "door": {"_count": 1}}, "pitchdarkness": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "downpour": {"_count": 2, "": {"_count": 1}, "outside": {"_count": 1}}, "track": {"_count": 3, "toward": {"_count": 1}, "soon": {"_count": 1}, "": {"_count": 1}}, "carriages": {"_count": 10, "trundled": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "however": {"_count": 1}, "Luna": {"_count": 1}, "": {"_count": 3}, "moved": {"_count": 1}, "youll": {"_count": 1}}, "lakes": {"_count": 3, "going": {"_count": 1}, "floor": {"_count": 1}, "and": {"_count": 1}}, "Ravenclaws": {"_count": 9, "and": {"_count": 1}, "might": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "would": {"_count": 1}, "crowded": {"_count": 1}, "all": {"_count": 1}}, "dual": {"_count": 1, "purpose": {"_count": 1}}, "drying": {"_count": 1, "of": {"_count": 1}}, "Herbology": {"_count": 2, "teacher": {"_count": 1}, "greenhouses": {"_count": 1}}, "sallowfaced": {"_count": 2, "hook": {"_count": 1}, "man": {"_count": 1}}, "worthy": {"_count": 2, "ones": {"_count": 1}, "possessor": {"_count": 1}}, "appropriate": {"_count": 1, "table": {"_count": 1}}, "threelegged": {"_count": 1, "stool": {"_count": 1}}, "Ls": {"_count": 1, "": {"_count": 1}}, "Sortings": {"_count": 1, "much": {"_count": 1}}, "InterHouse": {"_count": 4, "Championship": {"_count": 3}, "Quidditch": {"_count": 1}}, "houseelves": {"_count": 8, "out": {"_count": 2}, "": {"_count": 2}, "around": {"_count": 1}, "would": {"_count": 1}, "do": {"_count": 1}, "have": {"_count": 1}}, "fires": {"_count": 6, "and": {"_count": 4}, "are": {"_count": 1}, "remember": {"_count": 1}}, "inch": {"_count": 1, "or": {"_count": 1}}, "puddings": {"_count": 1, "too": {"_count": 1}}, "vaguest": {"_count": 1, "idea": {"_count": 1}}, "Triwizard": {"_count": 68, "Tournament": {"_count": 44}, "Cup": {"_count": 18}, "Tournaments": {"_count": 1}, "champions": {"_count": 1}, "and": {"_count": 1}, "maze": {"_count": 2}, "winnings": {"_count": 1}}, "majority": {"_count": 1, "of": {"_count": 1}}, "selection": {"_count": 2, "of": {"_count": 2}}, "glory": {"_count": 2, "of": {"_count": 1}, "for": {"_count": 1}}, "participating": {"_count": 3, "schools": {"_count": 3}}, "greater": {"_count": 7, "part": {"_count": 1}, "good": {"_count": 6}}, "champions": {"_count": 38, "are": {"_count": 4}, "get": {"_count": 1}, "were": {"_count": 3}, "efforts": {"_count": 1}, "will": {"_count": 1}, "in": {"_count": 1}, "names": {"_count": 1}, "downstairs": {"_count": 1}, "Harry": {"_count": 1}, "have": {"_count": 2}, "Very": {"_count": 1}, "": {"_count": 7}, "is": {"_count": 1}, "tent": {"_count": 1}, "and": {"_count": 5}, "approached": {"_count": 1}, "spacing": {"_count": 1}, "toward": {"_count": 1}, "as": {"_count": 1}, "about": {"_count": 1}, "who": {"_count": 1}, "please": {"_count": 1}}, "champion": {"_count": 5, "is": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 2}, "of": {"_count": 1}}, "armpits": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "merrily": {"_count": 1, "dancing": {"_count": 1}}, "completely": {"_count": 2, "stationary": {"_count": 1}, "still": {"_count": 1}}, "impartial": {"_count": 1, "judge": {"_count": 1}}, "Monday": {"_count": 1, "column": {"_count": 1}}, "sinking": {"_count": 1, "feeling": {"_count": 1}}, "sodden": {"_count": 4, "vegetable": {"_count": 1}, "rag": {"_count": 1}, "grass": {"_count": 1}, "mass": {"_count": 1}}, "ugliest": {"_count": 3, "plants": {"_count": 1}, "an": {"_count": 1}, "angel": {"_count": 1}}, "soil": {"_count": 2, "": {"_count": 1}, "splattering": {"_count": 1}}, "pus": {"_count": 4, "The": {"_count": 1}, "I": {"_count": 1}, "off": {"_count": 1}, "from": {"_count": 1}}, "bubotubers": {"_count": 1, "was": {"_count": 1}}, "crates": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "surely": {"_count": 1}}, "BlastEnded": {"_count": 3, "Skrewts": {"_count": 3}}, "boxes": {"_count": 10, "": {"_count": 4}, "piled": {"_count": 1}, "he": {"_count": 1}, "from": {"_count": 1}, "Dumbledore": {"_count": 1}, "and": {"_count": 1}, "done": {"_count": 1}}, "suspicion": {"_count": 1, "that": {"_count": 1}}, "skrewts": {"_count": 24, "didnt": {"_count": 1}, "are": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 4}, "had": {"_count": 2}, "because": {"_count": 1}, "ends": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "rampaged": {"_count": 1}, "though": {"_count": 1}, "sting": {"_count": 1}, "from": {"_count": 1}, "now": {"_count": 1}, "would": {"_count": 1}, "Harry": {"_count": 1}, "armor": {"_count": 2}, "said": {"_count": 1}}, "males": {"_count": 1, "": {"_count": 1}}, "stepladder": {"_count": 1, "": {"_count": 1}}, "tragic": {"_count": 2, "expression": {"_count": 1}, "demise": {"_count": 1}}, "troubled": {"_count": 1, "soul": {"_count": 1}}, "celestial": {"_count": 1, "dance": {"_count": 1}}, "planetary": {"_count": 2, "rays": {"_count": 1}, "movements": {"_count": 1}}, "prediction": {"_count": 3, "about": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "baleful": {"_count": 1, "influence": {"_count": 1}}, "planet": {"_count": 2, "Saturn": {"_count": 1}, "there": {"_count": 1}}, "staircases": {"_count": 1, "back": {"_count": 1}}, "antics": {"_count": 1, "of": {"_count": 1}}, "aid": {"_count": 4, "of": {"_count": 4}}, "policemen": {"_count": 1, "but": {"_count": 1}}, "stoneflagged": {"_count": 2, "floor": {"_count": 2}}, "ferret": {"_count": 5, "which": {"_count": 1}, "again": {"_count": 1}, "bounced": {"_count": 1}, "hit": {"_count": 1}, "still": {"_count": 1}}, "bouncing": {"_count": 1, "ferrets": {"_count": 1}}, "offenders": {"_count": 1, "Head": {"_count": 1}}, "amazing": {"_count": 1, "bouncing": {"_count": 1}}, "distinct": {"_count": 9, "impression": {"_count": 7}, "feeling": {"_count": 2}}, "Library": {"_count": 1, "": {"_count": 1}}, "sooner": {"_count": 1, "you": {"_count": 1}}, "Imperius": {"_count": 34, "Curse": {"_count": 33}, "Cursel": {"_count": 1}}, "somersaulting": {"_count": 1, "spider": {"_count": 1}}, "Cruciatus": {"_count": 19, "Curse": {"_count": 19}}, "Killing": {"_count": 10, "Curse": {"_count": 10}}, "rush": {"_count": 9, "of": {"_count": 8}, "and": {"_count": 1}}, "terrible": {"_count": 12, "power": {"_count": 1}, "events": {"_count": 1}, "piece": {"_count": 1}, "emptiness": {"_count": 1}, "pressure": {"_count": 1}, "weight": {"_count": 2}, "things": {"_count": 2}, "sound": {"_count": 1}, "deeds": {"_count": 1}, "commotion": {"_count": 1}}, "Unforgivable": {"_count": 5, "Curses": {"_count": 5}}, "ruddy": {"_count": 5, "library": {"_count": 1}, "hell": {"_count": 4}}, "Mediterranean": {"_count": 2, "": {"_count": 2}}, "jumble": {"_count": 4, "of": {"_count": 3}, "inside": {"_count": 1}}, "unlucky": {"_count": 1, "conjunction": {"_count": 1}}, "noisy": {"_count": 1, "center": {"_count": 1}}, "almost": {"_count": 2, "deserted": {"_count": 1}, "total": {"_count": 1}}, "Society": {"_count": 2, "for": {"_count": 2}}, "Promotion": {"_count": 2, "of": {"_count": 2}}, "Outrageous": {"_count": 1, "Abuse": {"_count": 1}}, "proceeds": {"_count": 1, "can": {"_count": 1}}, "forehead": {"_count": 4, "with": {"_count": 3}, "and": {"_count": 1}}, "sense": {"_count": 7, "to": {"_count": 2}, "of": {"_count": 3}, "not": {"_count": 1}, "never": {"_count": 1}}, "fourthfloor": {"_count": 1, "corridor": {"_count": 1}}, "regurgitated": {"_count": 1, "skeletons": {"_count": 1}}, "droppingstrewn": {"_count": 1, "floor": {"_count": 1}}, "holes": {"_count": 3, "in": {"_count": 2}, "": {"_count": 1}}, "sunrise": {"_count": 3, "": {"_count": 2}, "spinning": {"_count": 1}}, "hard": {"_count": 10, "way": {"_count": 4}, "ground": {"_count": 1}, "wooden": {"_count": 1}, "floor": {"_count": 1}, "work": {"_count": 1}, "cold": {"_count": 1}, "surface": {"_count": 1}}, "space": {"_count": 7, "that": {"_count": 1}, "large": {"_count": 1}, "where": {"_count": 1}, "of": {"_count": 2}, "at": {"_count": 1}, "full": {"_count": 1}}, "effects": {"_count": 5, "would": {"_count": 1}, "of": {"_count": 3}, "wear": {"_count": 1}}, "amount": {"_count": 8, "of": {"_count": 7}, "that": {"_count": 1}}, "preparation": {"_count": 1, "you": {"_count": 1}}, "horrors": {"_count": 1, "in": {"_count": 1}}, "eighteenth": {"_count": 2, "century": {"_count": 2}}, "30th": {"_count": 1, "of": {"_count": 1}}, "Welcoming": {"_count": 1, "Feast": {"_count": 1}}, "inhabitants": {"_count": 4, "of": {"_count": 4}}, "displeasure": {"_count": 1, "of": {"_count": 1}}, "thirtieth": {"_count": 4, "of": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "interruption": {"_count": 1, "": {"_count": 1}}, "judges": {"_count": 23, "": {"_count": 4}, "will": {"_count": 1}, "table": {"_count": 7}, "and": {"_count": 2}, "were": {"_count": 2}, "give": {"_count": 1}, "who": {"_count": 1}, "stood": {"_count": 1}, "so": {"_count": 1}, "balcony": {"_count": 1}, "bench": {"_count": 1}, "but": {"_count": 1}}, "Heads": {"_count": 11, "of": {"_count": 9}, "office": {"_count": 1}, "o": {"_count": 1}}, "panel": {"_count": 3, "said": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}}, "Tournament": {"_count": 4, "of": {"_count": 1}, "tasks": {"_count": 1}, "": {"_count": 2}}, "rampage": {"_count": 1, "": {"_count": 1}}, "Nastier": {"_count": 1, "Aspects": {"_count": 1}}, "oppression": {"_count": 2, "of": {"_count": 2}}, "badges": {"_count": 5, "then": {"_count": 1}, "": {"_count": 1}, "stuck": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "collecting": {"_count": 1, "tin": {"_count": 1}}, "drive": {"_count": 10, "that": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 3}, "in": {"_count": 1}, "came": {"_count": 1}, "between": {"_count": 1}}, "foreign": {"_count": 2, "students": {"_count": 2}}, "delegation": {"_count": 1, "from": {"_count": 1}}, "horses": {"_count": 10, "hooves": {"_count": 1}, "was": {"_count": 1}, "as": {"_count": 1}, "moving": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "silken": {"_count": 1}, "manes": {"_count": 1}, "silky": {"_count": 1}, "flank": {"_count": 1}}, "waiting": {"_count": 4, "wideeyed": {"_count": 1}, "list": {"_count": 1}, "Hagrids": {"_count": 1}, "Muggleborns": {"_count": 1}}, "Durmstrang": {"_count": 20, "party": {"_count": 1}, "students": {"_count": 4}, "people": {"_count": 1}, "headmaster": {"_count": 1}, "lot": {"_count": 1}, "ship": {"_count": 9}, "champion": {"_count": 1}, "ships": {"_count": 1}, "and": {"_count": 1}}, "whirlpool": {"_count": 1, "": {"_count": 1}}, "rigging": {"_count": 2, "": {"_count": 1}, "white": {"_count": 1}}, "ship": {"_count": 4, "rose": {"_count": 1}, "emerged": {"_count": 1}, "then": {"_count": 1}, "stretched": {"_count": 1}}, "splash": {"_count": 1, "of": {"_count": 1}}, "shallows": {"_count": 1, "and": {"_count": 1}}, "ships": {"_count": 1, "portholes": {"_count": 1}}, "hiss": {"_count": 1, "in": {"_count": 1}}, "soles": {"_count": 3, "of": {"_count": 3}}, "lipstick": {"_count": 1, "": {"_count": 1}}, "Beauxbatons": {"_count": 21, "lot": {"_count": 1}, "girls": {"_count": 1}, "students": {"_count": 4}, "sleeping": {"_count": 1}, "party": {"_count": 1}, "and": {"_count": 1}, "carriage": {"_count": 8}, "caravan": {"_count": 1}, "boy": {"_count": 1}, "horses": {"_count": 2}}, "stops": {"_count": 1, "there": {"_count": 1}}, "casket": {"_count": 3, "The": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "procedure": {"_count": 3, "that": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "mention": {"_count": 8, "of": {"_count": 8}}, "attentiveness": {"_count": 1, "of": {"_count": 1}}, "listening": {"_count": 1, "students": {"_count": 1}}, "watching": {"_count": 9, "students": {"_count": 2}, "people": {"_count": 1}, "crowd": {"_count": 5}, "wizards": {"_count": 1}}, "necessary": {"_count": 4, "arrangements": {"_count": 1}, "measures": {"_count": 1}, "O": {"_count": 1}, "here": {"_count": 1}}, "Goblet": {"_count": 27, "of": {"_count": 26}, "or": {"_count": 1}}, "Age": {"_count": 4, "Line": {"_count": 4}}, "thousand": {"_count": 1, "Galleons": {"_count": 1}}, "veelagirl": {"_count": 3, "": {"_count": 1}, "dropped": {"_count": 1}, "who": {"_count": 1}}, "sarcasm": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "quantity": {"_count": 2, "of": {"_count": 1}, "if": {"_count": 1}}, "entrants": {"_count": 1, "were": {"_count": 1}}, "drops": {"_count": 1, "on": {"_count": 1}}, "candlelit": {"_count": 5, "Great": {"_count": 1}, "classroom": {"_count": 1}, "room": {"_count": 1}, "squalor": {"_count": 1}, "House": {"_count": 1}}, "extravagantly": {"_count": 2, "prepared": {"_count": 1}, "plumed": {"_count": 1}}, "constantly": {"_count": 1, "craning": {"_count": 1}}, "impatient": {"_count": 1, "expressions": {"_count": 1}}, "fidgeting": {"_count": 1, "and": {"_count": 1}}, "standing": {"_count": 2, "up": {"_count": 1}, "figures": {"_count": 1}}, "carved": {"_count": 1, "pumpkins": {"_count": 1}}, "sparkling": {"_count": 6, "bright": {"_count": 1}, "walls": {"_count": 1}, "jets": {"_count": 1}, "surface": {"_count": 1}, "current": {"_count": 1}, "snowy": {"_count": 1}}, "tongue": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "uproar": {"_count": 2, "from": {"_count": 1}, "was": {"_count": 1}}, "stares": {"_count": 3, "of": {"_count": 2}, "he": {"_count": 1}}, "buzzing": {"_count": 1, "of": {"_count": 1}}, "hundreds": {"_count": 8, "of": {"_count": 7}, "in": {"_count": 1}}, "candlefilled": {"_count": 1, "chandelier": {"_count": 1}}, "host": {"_count": 1, "school": {"_count": 1}}, "halfmoon": {"_count": 2, "spectacles": {"_count": 2}}, "honors": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "unknown": {"_count": 12, "is": {"_count": 1}, "on": {"_count": 1}, "test": {"_count": 1}, "we": {"_count": 1}, "Thicknesse": {"_count": 1}, "man": {"_count": 1}, "thief": {"_count": 3}, "youth": {"_count": 1}, "Abbott": {"_count": 1}, "all": {"_count": 1}}, "twentyfourth": {"_count": 7, "in": {"_count": 1}, "but": {"_count": 1}, "looked": {"_count": 1}, "there": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "drew": {"_count": 1}}, "demanding": {"_count": 1, "and": {"_count": 1}}, "jagged": {"_count": 7, "smiles": {"_count": 1}, "rock": {"_count": 1}, "stone": {"_count": 1}, "piece": {"_count": 1}, "edge": {"_count": 1}, "mirror": {"_count": 1}, "scales": {"_count": 1}}, "keenest": {"_count": 1, "interest": {"_count": 1}}, "otherwise": {"_count": 4, "empty": {"_count": 1}, "charming": {"_count": 1}, "deserted": {"_count": 1}, "velvety": {"_count": 1}}, "banner": {"_count": 2, "and": {"_count": 1}, "headline": {"_count": 1}}, "Creevey": {"_count": 5, "brothers": {"_count": 5}}, "attention": {"_count": 7, "you": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 2}, "or": {"_count": 1}}, "Write": {"_count": 1, "to": {"_count": 1}}, "barn": {"_count": 5, "owl": {"_count": 4}, "owls": {"_count": 1}}, "rafters": {"_count": 4, "out": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "did": {"_count": 1}}, "Bouncing": {"_count": 1, "Bulbs": {"_count": 1}}, "leash": {"_count": 1, "": {"_count": 1}}, "sting": {"_count": 1, "the": {"_count": 1}}, "blasting": {"_count": 1, "end": {"_count": 1}}, "sucker": {"_count": 1, "": {"_count": 1}}, "part": {"_count": 10, "of": {"_count": 4}, "where": {"_count": 1}, "about": {"_count": 1}, "that": {"_count": 1}, "foretelling": {"_count": 1}, "closest": {"_count": 1}, "from": {"_count": 1}}, "anger": {"_count": 4, "Harry": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 2}}, "guts": {"_count": 4, "For": {"_count": 1}, "to": {"_count": 3}}, "confused": {"_count": 1, "din": {"_count": 1}}, "gist": {"_count": 2, "however": {"_count": 1}, "of": {"_count": 1}}, "velvetcovered": {"_count": 1, "desks": {"_count": 1}}, "quill": {"_count": 10, "": {"_count": 2}, "Harry": {"_count": 1}, "had": {"_count": 1}, "back": {"_count": 1}, "on": {"_count": 1}, "upon": {"_count": 1}, "and": {"_count": 2}, "standing": {"_count": 1}}, "trauma": {"_count": 1, "in": {"_count": 1}}, "parents": {"_count": 3, "he": {"_count": 2}, "were": {"_count": 1}}, "clasp": {"_count": 4, "of": {"_count": 3}, "she": {"_count": 1}}, "reasoning": {"_count": 1, "behind": {"_count": 1}}, "rudeness": {"_count": 1, "Rita": {"_count": 1}}, "Wands": {"_count": 1, "is": {"_count": 1}}, "velvet": {"_count": 1, "covered": {"_count": 1}}, "five": {"_count": 9, "judges": {"_count": 2}, "long": {"_count": 1}, "wands": {"_count": 1}, "Death": {"_count": 1}, "who": {"_count": 1}, "statues": {"_count": 1}, "Principal": {"_count": 1}, "exceptions": {"_count": 1}}, "QuickQuotes": {"_count": 3, "Quill": {"_count": 3}}, "wandmaker": {"_count": 7, "from": {"_count": 1}, "and": {"_count": 1}, "curled": {"_count": 1}, "but": {"_count": 1}, "weakly": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 1}}, "flowers": {"_count": 2, "and": {"_count": 1}, "flight": {"_count": 1}}, "styling": {"_count": 1, "is": {"_count": 1}}, "watery": {"_count": 2, "sunlight": {"_count": 1}, "depths": {"_count": 1}}, "lure": {"_count": 3, "of": {"_count": 3}}, "22nd": {"_count": 2, "of": {"_count": 2}}, "confines": {"_count": 2, "of": {"_count": 2}}, "article": {"_count": 16, "continuing": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 5}, "aloud": {"_count": 1}, "in": {"_count": 2}, "read": {"_count": 1}, "Percy": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}, "about": {"_count": 1}}, "sniggering": {"_count": 1, "Slytherin": {"_count": 1}}, "clocks": {"_count": 3, "to": {"_count": 2}, "face": {"_count": 1}}, "snide": {"_count": 1, "comments": {"_count": 1}}, "tight": {"_count": 1, "tense": {"_count": 1}}, "pretty": {"_count": 2, "landlady": {"_count": 1}, "girl": {"_count": 1}}, "S": {"_count": 3, "": {"_count": 2}, "bend": {"_count": 1}}, "pretext": {"_count": 4, "of": {"_count": 4}}, "combs": {"_count": 1, "broken": {"_count": 1}}, "crossed": {"_count": 2, "golden": {"_count": 1}, "boneandwand": {"_count": 1}}, "perimeter": {"_count": 3, "of": {"_count": 2}, "wall": {"_count": 1}}, "Stunning": {"_count": 2, "Spells": {"_count": 1}, "Spell": {"_count": 1}}, "closest": {"_count": 7, "dragon": {"_count": 1}, "bead": {"_count": 1}, "thestral": {"_count": 2}, "thing": {"_count": 2}, "row": {"_count": 1}}, "enclosure": {"_count": 12, "gazing": {"_count": 1}, "would": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 3}, "fence": {"_count": 1}, "crouched": {"_count": 1}, "Professor": {"_count": 1}, "still": {"_count": 1}, "": {"_count": 2}}, "Horntail": {"_count": 16, "": {"_count": 4}, "at": {"_count": 2}, "shrank": {"_count": 1}, "was": {"_count": 1}, "opened": {"_count": 1}, "and": {"_count": 4}, "an": {"_count": 1}, "had": {"_count": 1}, "time": {"_count": 1}}, "Horntails": {"_count": 3, "tail": {"_count": 1}, "side": {"_count": 1}, "head": {"_count": 1}}, "eggs": {"_count": 7, "": {"_count": 1}, "now": {"_count": 1}, "song": {"_count": 1}, "clue": {"_count": 3}, "progress": {"_count": 1}}, "attractions": {"_count": 1, "of": {"_count": 1}}, "goatee": {"_count": 1, "": {"_count": 1}}, "Support": {"_count": 1, "Cedric": {"_count": 1}}, "Creeveys": {"_count": 1, "had": {"_count": 1}}, "several": {"_count": 1, "inches": {"_count": 1}}, "POTTER": {"_count": 1, "REALLY": {"_count": 1}}, "index": {"_count": 5, "of": {"_count": 2}, "finger": {"_count": 1}, "until": {"_count": 1}, "": {"_count": 1}}, "Busy": {"_count": 1, "and": {"_count": 1}}, "knowledge": {"_count": 10, "that": {"_count": 5}, "and": {"_count": 1}, "or": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}, "on": {"_count": 1}}, "bells": {"_count": 1, "about": {"_count": 1}}, "panic": {"_count": 6, "hed": {"_count": 1}, "rising": {"_count": 1}, "in": {"_count": 1}, "inside": {"_count": 1}, "expanding": {"_count": 1}, "about": {"_count": 1}}, "squiggly": {"_count": 1, "golden": {"_count": 1}}, "whites": {"_count": 2, "of": {"_count": 2}}, "fly": {"_count": 1, "was": {"_count": 1}}, "hang": {"_count": 5, "of": {"_count": 4}, "on": {"_count": 1}}, "Summoning": {"_count": 4, "Charm": {"_count": 4}}, "dragonfree": {"_count": 1, "hours": {"_count": 1}}, "clump": {"_count": 2, "of": {"_count": 2}}, "muscles": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "palefaced": {"_count": 2, "champions": {"_count": 1}, "portraits": {"_count": 1}}, "audience": {"_count": 1, "has": {"_count": 1}}, "blueishgray": {"_count": 1, "Swedish": {"_count": 1}}, "silk": {"_count": 1, "bag": {"_count": 1}}, "Hungarian": {"_count": 2, "Horntail": {"_count": 2}}, "numbers": {"_count": 3, "refer": {"_count": 1}, "will": {"_count": 1}, "on": {"_count": 1}}, "underdog": {"_count": 1, "here": {"_count": 1}}, "Swedish": {"_count": 1, "ShortSnout": {"_count": 1}}, "deafening": {"_count": 2, "roar": {"_count": 1}, "roars": {"_count": 1}}, "Chinese": {"_count": 2, "Fireball": {"_count": 1}, "Chomping": {"_count": 1}}, "wintery": {"_count": 1, "air": {"_count": 1}}, "clutch": {"_count": 1, "of": {"_count": 1}}, "volume": {"_count": 3, "back": {"_count": 1}, "of": {"_count": 1}, "control": {"_count": 1}}, "odds": {"_count": 2, "on": {"_count": 1}, "of": {"_count": 1}}, "wors": {"_count": 1, "Thanks": {"_count": 1}}, "Labrador": {"_count": 1, "he": {"_count": 1}}, "hinges": {"_count": 1, "there": {"_count": 1}}, "clue": {"_count": 5, "inside": {"_count": 2}, "on": {"_count": 1}, "": {"_count": 1}, "Who": {"_count": 1}}, "fairness": {"_count": 1, "of": {"_count": 1}}, "scoring": {"_count": 1, "": {"_count": 1}}, "groove": {"_count": 1, "that": {"_count": 1}}, "musical": {"_count": 2, "saw": {"_count": 1}, "voice": {"_count": 1}}, "shower": {"_count": 1, "Harry": {"_count": 1}}, "custard": {"_count": 2, "creams": {"_count": 2}}, "pear": {"_count": 1, "and": {"_count": 1}}, "leaflet": {"_count": 1, "stuff": {"_count": 1}}, "laughter": {"_count": 5, "": {"_count": 1}, "was": {"_count": 1}, "continued": {"_count": 1}, "had": {"_count": 1}, "died": {"_count": 1}}, "excitable": {"_count": 2, "crowd": {"_count": 1}, "Diggle": {"_count": 1}}, "trough": {"_count": 1, "in": {"_count": 1}}, "windy": {"_count": 1, "pumpkin": {"_count": 1}}, "smoldering": {"_count": 2, "wreckage": {"_count": 1}, "wreck": {"_count": 1}}, "cost": {"_count": 1, "of": {"_count": 1}}, "skrewt": {"_count": 5, "which": {"_count": 1}, "off": {"_count": 1}, "that": {"_count": 1}, "would": {"_count": 1}, "and": {"_count": 1}}, "mayhem": {"_count": 2, "": {"_count": 1}, "front": {"_count": 1}}, "slightly": {"_count": 6, "squashed": {"_count": 1}, "flattened": {"_count": 1}, "neglected": {"_count": 1}, "smoking": {"_count": 1}, "manic": {"_count": 1}, "smaller": {"_count": 1}}, "orb": {"_count": 3, "overpowered": {"_count": 1}, "vanished": {"_count": 1}, "as": {"_count": 1}}, "HouseElf": {"_count": 1, "Liberation": {"_count": 1}}, "squealing": {"_count": 1, "elf": {"_count": 1}}, "midriff": {"_count": 1, "hugging": {"_count": 1}}, "pencil": {"_count": 1, "shaped": {"_count": 1}}, "batlike": {"_count": 1, "ears": {"_count": 1}}, "brick": {"_count": 1, "fireplace": {"_count": 1}}, "flow": {"_count": 5, "": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 2}, "stopped": {"_count": 1}}, "familys": {"_count": 1, "honor": {"_count": 1}}, "Crouches": {"_count": 1, "all": {"_count": 1}}, "shocks": {"_count": 1, "worn": {"_count": 1}}, "guinea": {"_count": 1, "fowl": {"_count": 1}}, "standards": {"_count": 2, "of": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Yule": {"_count": 11, "Ball": {"_count": 11}}, "latter": {"_count": 11, "and": {"_count": 1}, "": {"_count": 2}, "both": {"_count": 1}, "might": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}, "approached": {"_count": 1}, "supported": {"_count": 1}, "made": {"_count": 1}, "could": {"_count": 1}}, "alternative": {"_count": 5, "was": {"_count": 2}, "instruction": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "minority": {"_count": 1, "before": {"_count": 1}}, "bitterness": {"_count": 1, "in": {"_count": 1}}, "embarrassing": {"_count": 1, "prospect": {"_count": 1}}, "dancin": {"_count": 1, "won": {"_count": 1}}, "WWN": {"_count": 1, "Wizarding": {"_count": 1}}, "tenth": {"_count": 2, "time": {"_count": 1}, "a": {"_count": 1}}, "twenty": {"_count": 3, "fourth": {"_count": 2}, "or": {"_count": 1}}, "screechy": {"_count": 1, "wailing": {"_count": 1}}, "bestlooking": {"_count": 1, "girl": {"_count": 1}}, "visitors": {"_count": 4, "from": {"_count": 1}, "stayed": {"_count": 1}, "entrance": {"_count": 1}, "": {"_count": 1}}, "suits": {"_count": 1, "of": {"_count": 1}}, "armor": {"_count": 1, "where": {"_count": 1}}, "songs": {"_count": 1, "with": {"_count": 1}}, "storming": {"_count": 1, "of": {"_count": 1}}, "goodlooking": {"_count": 2, "ones": {"_count": 1}, "girls": {"_count": 1}}, "TonTongue": {"_count": 2, "Toffee": {"_count": 2}}, "iced": {"_count": 2, "gingerbread": {"_count": 1}, "champagne": {"_count": 1}}, "longmolared": {"_count": 1, "Mudblood": {"_count": 1}}, "icicleladen": {"_count": 1, "banisters": {"_count": 1}}, "weeny": {"_count": 1, "owl": {"_count": 1}}, "addressee": {"_count": 1, "": {"_count": 1}}, "fist": {"_count": 3, "holding": {"_count": 1}, "clutching": {"_count": 2}}, "thirdyear": {"_count": 1, "girls": {"_count": 1}}, "tournaments": {"_count": 2, "got": {"_count": 1}, "going": {"_count": 1}}, "loop": {"_count": 1, "on": {"_count": 1}}, "handknitted": {"_count": 1, "sweater": {"_count": 1}}, "wool": {"_count": 1, "out": {"_count": 1}}, "frayed": {"_count": 2, "neck": {"_count": 1}, "brim": {"_count": 1}}, "reduction": {"_count": 1, "in": {"_count": 1}}, "hint": {"_count": 3, "and": {"_count": 1}, "that": {"_count": 1}, "about": {"_count": 1}}, "universe": {"_count": 2, "": {"_count": 1}, "more": {"_count": 1}}, "misbehavior": {"_count": 1, "of": {"_count": 1}}, "mountains": {"_count": 11, "Now": {"_count": 1}, "surrounding": {"_count": 1}, "around": {"_count": 1}, "lookin": {"_count": 2}, "an": {"_count": 1}, "and": {"_count": 2}, "said": {"_count": 1}, "now": {"_count": 1}, "of": {"_count": 1}}, "halls": {"_count": 1, "of": {"_count": 1}}, "quarter": {"_count": 1, "moon": {"_count": 1}}, "seeker": {"_count": 1, "has": {"_count": 1}}, "bagpipe": {"_count": 1, "with": {"_count": 1}}, "courage": {"_count": 1, "": {"_count": 1}}, "marketing": {"_count": 1, "": {"_count": 1}}, "public": {"_count": 11, "": {"_count": 1}, "but": {"_count": 1}, "mood": {"_count": 1}, "needs": {"_count": 2}, "the": {"_count": 2}, "almost": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 1}}, "hitch": {"_count": 1, "with": {"_count": 1}}, "slack": {"_count": 1, "": {"_count": 1}}, "Transylvanians": {"_count": 1, "to": {"_count": 1}}, "rose": {"_count": 1, "garden": {"_count": 1}}, "reindeer": {"_count": 1, "": {"_count": 1}}, "las": {"_count": 3, "ones": {"_count": 1}, "skrewt": {"_count": 1}, "time": {"_count": 1}}, "maternal": {"_count": 1, "sort": {"_count": 1}}, "reindeers": {"_count": 1, "antlers": {"_count": 1}}, "dresser": {"_count": 8, "if": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 2}, "was": {"_count": 1}, "Ron": {"_count": 1}, "when": {"_count": 1}, "each": {"_count": 1}}, "peaceful": {"_count": 1, "night": {"_count": 1}}, "wish": {"_count": 4, "that": {"_count": 2}, "to": {"_count": 1}, "formed": {"_count": 1}}, "Bewildered": {"_count": 2, "on": {"_count": 1}, "a": {"_count": 1}}, "fifth": {"_count": 17, "floor": {"_count": 3}, "time": {"_count": 1}, "judge": {"_count": 1}, "year": {"_count": 1}, "said": {"_count": 2}, "dodged": {"_count": 1}, "years": {"_count": 5}, "and": {"_count": 3}}, "wailing": {"_count": 3, "egg": {"_count": 1}, "but": {"_count": 1}, "stopped": {"_count": 1}}, "lazy": {"_count": 1, "conversations": {"_count": 1}}, "lurking": {"_count": 1, "worry": {"_count": 1}}, "womans": {"_count": 6, "touch": {"_count": 1}, "foolish": {"_count": 1}, "voice": {"_count": 3}, "fast": {"_count": 1}}, "notoriously": {"_count": 1, "jinxhappy": {"_count": 1}}, "parthuman": {"_count": 1, "Dumbledore": {"_count": 1}}, "additional": {"_count": 2, "post": {"_count": 1}, "strain": {"_count": 1}}, "giantess": {"_count": 1, "Fridwulfa": {"_count": 1}}, "giants": {"_count": 21, "brought": {"_count": 1}, "who": {"_count": 2}, "": {"_count": 3}, "people": {"_count": 1}, "well": {"_count": 1}, "beat": {"_count": 1}, "and": {"_count": 2}, "first": {"_count": 1}, "were": {"_count": 2}, "an": {"_count": 1}, "from": {"_count": 1}, "Nex": {"_count": 1}, "to": {"_count": 1}, "massive": {"_count": 1}, "wrestled": {"_count": 1}, "stamping": {"_count": 1}}, "ranks": {"_count": 2, "of": {"_count": 2}}, "unpleasant": {"_count": 2, "truth": {"_count": 1}, "habit": {"_count": 1}}, "dangers": {"_count": 3, "of": {"_count": 3}}, "oafs": {"_count": 1, "teaching": {"_count": 1}}, "mummies": {"_count": 1, "and": {"_count": 1}}, "frozen": {"_count": 12, "grounds": {"_count": 1}, "pitch": {"_count": 1}, "lake": {"_count": 1}, "slush": {"_count": 1}, "ground": {"_count": 2}, "silence": {"_count": 1}, "lichenspotted": {"_count": 1}, "road": {"_count": 1}, "pool": {"_count": 1}, "air": {"_count": 1}, "water": {"_count": 1}}, "elephantman": {"_count": 1, "": {"_count": 1}}, "deck": {"_count": 3, "dressed": {"_count": 1}, "of": {"_count": 2}}, "slushy": {"_count": 1, "High": {"_count": 1}}, "cousins": {"_count": 1, "house": {"_count": 1}}, "clues": {"_count": 3, "alone": {"_count": 1}, "add": {"_count": 1}, "": {"_count": 1}}, "Protection": {"_count": 1, "of": {"_count": 1}}, "sights": {"_count": 1, "": {"_count": 1}}, "flagon": {"_count": 2, "she": {"_count": 1}, "of": {"_count": 1}}, "Hagrid": {"_count": 1, "you": {"_count": 1}}, "apple": {"_count": 1, "tree": {"_count": 1}}, "talent": {"_count": 1, "": {"_count": 1}}, "pools": {"_count": 3, "edges": {"_count": 1}, "edge": {"_count": 2}}, "fluffy": {"_count": 4, "towels": {"_count": 1}, "pink": {"_count": 2}, "silver": {"_count": 1}}, "swimmingpoolsized": {"_count": 1, "bath": {"_count": 1}}, "taps": {"_count": 6, "": {"_count": 2}, "on": {"_count": 1}, "pulled": {"_count": 1}, "ever": {"_count": 1}, "in": {"_count": 1}}, "bath": {"_count": 4, "wrapping": {"_count": 1}, "climbed": {"_count": 1}, "slipped": {"_count": 1}, "": {"_count": 1}}, "towel": {"_count": 2, "firmly": {"_count": 1}, "to": {"_count": 1}}, "foamy": {"_count": 2, "surface": {"_count": 1}, "grayish": {"_count": 1}}, "bubblefilled": {"_count": 1, "bath": {"_count": 1}}, "prospects": {"_count": 1, "black": {"_count": 1}}, "bubbly": {"_count": 1, "surface": {"_count": 1}}, "hairy": {"_count": 2, "face": {"_count": 1}, "bass": {"_count": 1}}, "bubbles": {"_count": 1, "had": {"_count": 1}}, "snoozing": {"_count": 1, "mermaid": {"_count": 1}}, "mermaid": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "merpeople": {"_count": 9, "in": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 1}, "surrounding": {"_count": 1}, "around": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 1}, "sank": {"_count": 1}}, "merpeoples": {"_count": 1, "song": {"_count": 1}}, "dots": {"_count": 1, "belonging": {"_count": 1}}, "dot": {"_count": 3, "wasnt": {"_count": 1}, "": {"_count": 1}, "moved": {"_count": 1}}, "squeak": {"_count": 1, "of": {"_count": 1}}, "rustle": {"_count": 2, "of": {"_count": 2}}, "peculiar": {"_count": 2, "behavior": {"_count": 1}, "appearance": {"_count": 1}}, "tapestry": {"_count": 23, "at": {"_count": 2}, "expecting": {"_count": 1}, "below": {"_count": 1}, "was": {"_count": 1}, "Kreacher": {"_count": 1}, "read": {"_count": 1}, "rather": {"_count": 1}, "": {"_count": 2}, "carefully": {"_count": 1}, "with": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 2}, "of": {"_count": 5}, "to": {"_count": 1}, "curtain": {"_count": 1}, "turned": {"_count": 1}}, "vein": {"_count": 3, "in": {"_count": 2}, "pulsing": {"_count": 1}}, "authority": {"_count": 6, "to": {"_count": 2}, "": {"_count": 2}, "he": {"_count": 1}, "in": {"_count": 1}}, "scars": {"_count": 7, "and": {"_count": 1}, "shone": {"_count": 1}, "were": {"_count": 1}, "which": {"_count": 1}, "that": {"_count": 1}, "on": {"_count": 1}, "made": {"_count": 1}}, "chunk": {"_count": 1, "missing": {"_count": 1}}, "property": {"_count": 1, "of": {"_count": 1}}, "bottommost": {"_count": 4, "stair": {"_count": 2}, "branches": {"_count": 1}, "drawer": {"_count": 1}}, "Banishing": {"_count": 2, "Charm": {"_count": 1}, "Spell": {"_count": 1}}, "potential": {"_count": 1, "for": {"_count": 1}}, "unlikely": {"_count": 2, "event": {"_count": 2}}, "set": {"_count": 2, "limit": {"_count": 1}, "": {"_count": 1}}, "ideal": {"_count": 2, "solution": {"_count": 1}, "halfway": {"_count": 1}}, "irritable": {"_count": 1, "vulturelike": {"_count": 1}}, "Blast": {"_count": 1, "Ended": {"_count": 1}}, "adults": {"_count": 2, "Hagrid": {"_count": 1}, "evidently": {"_count": 1}}, "librarys": {"_count": 2, "lack": {"_count": 1}, "its": {"_count": 1}}, "Deep": {"_count": 1, "or": {"_count": 1}}, "gillyweed": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "as": {"_count": 1}}, "floors": {"_count": 3, "": {"_count": 1}, "above": {"_count": 1}, "at": {"_count": 1}}, "bursting": {"_count": 1, "point": {"_count": 1}}, "waters": {"_count": 9, "edge": {"_count": 8}, "around": {"_count": 1}}, "breath": {"_count": 8, "of": {"_count": 2}, "seemed": {"_count": 2}, "tearing": {"_count": 1}, "out": {"_count": 2}, "was": {"_count": 1}}, "toes": {"_count": 2, "were": {"_count": 1}, "of": {"_count": 1}}, "eerily": {"_count": 1, "graylit": {"_count": 1}}, "weed": {"_count": 4, "its": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "grindylows": {"_count": 3, "pelted": {"_count": 1}, "grip": {"_count": 1}, "snatch": {"_count": 1}}, "dazed": {"_count": 1, "grindylow": {"_count": 1}}, "rippling": {"_count": 4, "weed": {"_count": 1}, "sails": {"_count": 1}, "glass": {"_count": 1}, "silver": {"_count": 1}}, "mersong": {"_count": 2, "": {"_count": 1}, "seriously": {"_count": 1}}, "dwellings": {"_count": 1, "became": {"_count": 1}}, "houses": {"_count": 5, "that": {"_count": 1}, "around": {"_count": 1}, "again": {"_count": 1}, "outside": {"_count": 1}, "into": {"_count": 1}}, "hostages": {"_count": 7, "half": {"_count": 1}, "to": {"_count": 1}, "would": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}}, "spear": {"_count": 2, "": {"_count": 1}, "away": {"_count": 1}}, "merman": {"_count": 2, "but": {"_count": 1}, "yanked": {"_count": 1}}, "ebb": {"_count": 1, "of": {"_count": 1}}, "mermen": {"_count": 3, "but": {"_count": 1}, "now": {"_count": 1}, "had": {"_count": 1}}, "chief": {"_count": 2, "merperson": {"_count": 1}, "": {"_count": 1}}, "BubbleHead": {"_count": 2, "Charm": {"_count": 2}}, "Merchieftainess": {"_count": 2, "informs": {"_count": 1}, "": {"_count": 1}}, "delay": {"_count": 3, "in": {"_count": 2}, "on": {"_count": 1}}, "magazine": {"_count": 17, "at": {"_count": 1}, "under": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "Kingsley": {"_count": 1}, "often": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 1}, "shaking": {"_count": 1}, "The": {"_count": 1}, "upside": {"_count": 1}, "having": {"_count": 1}}, "devious": {"_count": 1, "Miss": {"_count": 1}}, "copy": {"_count": 5, "of": {"_count": 5}}, "mashing": {"_count": 1, "of": {"_count": 1}}, "delusion": {"_count": 2, "that": {"_count": 2}}, "powdered": {"_count": 1, "beetles": {"_count": 1}}, "scrubby": {"_count": 1, "patch": {"_count": 1}}, "rocky": {"_count": 8, "foot": {"_count": 1}, "floor": {"_count": 2}, "wall": {"_count": 1}, "walls": {"_count": 2}, "side": {"_count": 1}, "passage": {"_count": 1}}, "stile": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "swallowed": {"_count": 1}}, "cave": {"_count": 23, "floor": {"_count": 3}, "": {"_count": 1}, "in": {"_count": 3}, "and": {"_count": 3}, "back": {"_count": 1}, "wall": {"_count": 3}, "an": {"_count": 1}, "wed": {"_count": 1}, "his": {"_count": 1}, "touching": {"_count": 1}, "said": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}, "where": {"_count": 1}, "or": {"_count": 1}}, "chicken": {"_count": 3, "bone": {"_count": 1}, "leg": {"_count": 1}, "coop": {"_count": 1}}, "anxiety": {"_count": 1, "in": {"_count": 1}}, "yellowing": {"_count": 2, "Daily": {"_count": 1}, "skin": {"_count": 1}}, "measure": {"_count": 2, "of": {"_count": 2}}, "loaf": {"_count": 2, "of": {"_count": 1}, "sliced": {"_count": 1}}, "deadened": {"_count": 1, "look": {"_count": 1}}, "will": {"_count": 4, "to": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 1}, "why": {"_count": 1}}, "fortress": {"_count": 1, "I": {"_count": 1}}, "bread": {"_count": 3, "he": {"_count": 1}, "knife": {"_count": 2}}, "flask": {"_count": 4, "of": {"_count": 2}, "was": {"_count": 1}, "gripped": {"_count": 1}}, "son": {"_count": 6, "and": {"_count": 2}, "I": {"_count": 1}, "of": {"_count": 2}, "": {"_count": 1}}, "Bertha": {"_count": 1, "I": {"_count": 1}}, "reverse": {"_count": 2, "": {"_count": 1}, "side": {"_count": 1}}, "mountainside": {"_count": 3, "with": {"_count": 1}, "cave": {"_count": 1}, "But": {"_count": 1}}, "boulderstrewn": {"_count": 1, "ground": {"_count": 1}}, "beaming": {"_count": 1, "and": {"_count": 1}}, "smoke": {"_count": 8, "blackened": {"_count": 1}, "closely": {"_count": 1}, "serpents": {"_count": 1}, "clutching": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "eclairs": {"_count": 1, "gave": {"_count": 1}}, "smalls": {"_count": 1, "of": {"_count": 1}}, "coil": {"_count": 1, "of": {"_count": 1}}, "cluster": {"_count": 1, "of": {"_count": 1}}, "satisfaction": {"_count": 5, "of": {"_count": 4}, "over": {"_count": 1}}, "Witch": {"_count": 1, "Weekly": {"_count": 1}}, "nifflers": {"_count": 4, "had": {"_count": 1}, "continued": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 1}}, "niffler": {"_count": 2, "that": {"_count": 1}, "crates": {"_count": 1}}, "hate": {"_count": 1, "mail": {"_count": 1}}, "supposed": {"_count": 1, "Harry": {"_count": 1}}, "betting": {"_count": 1, "she": {"_count": 1}}, "recipes": {"_count": 1, "": {"_count": 1}}, "hedges": {"_count": 1, "": {"_count": 1}}, "lessthanhappy": {"_count": 1, "expressions": {"_count": 1}}, "maze": {"_count": 22, "": {"_count": 13}, "a": {"_count": 1}, "said": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}, "holding": {"_count": 1}, "before": {"_count": 1}, "Harry": {"_count": 1}, "was": {"_count": 1}, "last": {"_count": 1}}, "obstacles": {"_count": 1, "": {"_count": 1}}, "growing": {"_count": 2, "maze": {"_count": 1}, "throng": {"_count": 1}}, "illuminated": {"_count": 1, "Beauxbatons": {"_count": 1}}, "eighteenyearold": {"_count": 1, "Krum": {"_count": 1}}, "Ive": {"_count": 1, "done": {"_count": 1}}, "Andorran": {"_count": 1, "Minister": {"_count": 1}}, "boundaries": {"_count": 5, "doesnt": {"_count": 1}, "of": {"_count": 3}, "protect": {"_count": 1}}, "sentence": {"_count": 11, "for": {"_count": 5}, "": {"_count": 2}, "gravely": {"_count": 1}, "wellknown": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}}, "cushions": {"_count": 10, "dont": {"_count": 1}, "back": {"_count": 1}, "with": {"_count": 3}, "to": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "solar": {"_count": 2, "system": {"_count": 2}}, "moons": {"_count": 1, "glimmered": {"_count": 1}}, "fiery": {"_count": 5, "sun": {"_count": 1}, "cross": {"_count": 1}, "rope": {"_count": 1}, "window": {"_count": 1}, "monsters": {"_count": 1}}, "clear": {"_count": 7, "blue": {"_count": 3}, "turquoise": {"_count": 1}, "spells": {"_count": 1}, "green": {"_count": 1}, "provocation": {"_count": 1}}, "blunder": {"_count": 1, "had": {"_count": 1}}, "connection": {"_count": 15, "dont": {"_count": 1}, "": {"_count": 4}, "is": {"_count": 1}, "between": {"_count": 4}, "was": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}}, "clunks": {"_count": 1, "of": {"_count": 1}}, "basins": {"_count": 1, "contents": {"_count": 1}}, "substance": {"_count": 2, "was": {"_count": 1}, "inside": {"_count": 1}}, "glassy": {"_count": 2, "substance": {"_count": 1}, "surface": {"_count": 1}}, "benches": {"_count": 7, "he": {"_count": 1}, "": {"_count": 1}, "scraped": {"_count": 1}, "where": {"_count": 1}, "one": {"_count": 1}, "toward": {"_count": 1}, "were": {"_count": 1}}, "silently": {"_count": 1, "watchful": {"_count": 1}}, "presentday": {"_count": 4, "Dumbledore": {"_count": 2}, "office": {"_count": 2}}, "Dumbledore": {"_count": 3, "sitting": {"_count": 1}, "on": {"_count": 1}, "standing": {"_count": 1}}, "chained": {"_count": 4, "chair": {"_count": 4}}, "struggle": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}}, "torchlight": {"_count": 2, "his": {"_count": 1}, "as": {"_count": 1}}, "Council": {"_count": 2, "of": {"_count": 2}}, "activities": {"_count": 1, "of": {"_count": 1}}, "vote": {"_count": 1, "said": {"_count": 1}}, "jury": {"_count": 3, "stood": {"_count": 1}, "Mother": {"_count": 1}, "shouted": {"_count": 1}}, "strawcolored": {"_count": 1, "hair": {"_count": 1}}, "lives": {"_count": 2, "of": {"_count": 1}, "that": {"_count": 1}}, "wispy": {"_count": 1, "little": {"_count": 1}}, "heavylidded": {"_count": 1, "eyes": {"_count": 1}}, "dazzling": {"_count": 2, "light": {"_count": 1}, "sunlight": {"_count": 1}}, "Pensieve": {"_count": 64, "": {"_count": 19}, "and": {"_count": 6}, "when": {"_count": 2}, "illuminated": {"_count": 1}, "swirl": {"_count": 1}, "again": {"_count": 1}, "seemed": {"_count": 2}, "his": {"_count": 2}, "nearly": {"_count": 1}, "where": {"_count": 2}, "carefully": {"_count": 1}, "with": {"_count": 3}, "in": {"_count": 1}, "sitting": {"_count": 1}, "curiosity": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 2}, "he": {"_count": 2}, "but": {"_count": 2}, "Harry": {"_count": 1}, "upon": {"_count": 1}, "for": {"_count": 1}, "as": {"_count": 2}, "silver": {"_count": 1}, "an": {"_count": 1}, "was": {"_count": 1}, "then": {"_count": 1}, "lay": {"_count": 1}, "saying": {"_count": 1}, "which": {"_count": 1}, "nor": {"_count": 1}}, "excess": {"_count": 1, "thoughts": {"_count": 1}}, "swirling": {"_count": 6, "white": {"_count": 1}, "mist": {"_count": 1}, "sleet": {"_count": 1}, "silvery": {"_count": 1}, "mass": {"_count": 1}, "memory": {"_count": 1}}, "thoughts": {"_count": 3, "within": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}}, "seething": {"_count": 1, "mass": {"_count": 1}}, "characteristic": {"_count": 1, "piercing": {"_count": 1}}, "trial": {"_count": 2, "you": {"_count": 1}, "of": {"_count": 1}}, "Longbottoms": {"_count": 2, "evidence": {"_count": 1}, "who": {"_count": 1}}, "guilt": {"_count": 1, "of": {"_count": 1}}, "interview": {"_count": 6, "was": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "by": {"_count": 1}, "Rita": {"_count": 1}, "but": {"_count": 1}}, "Impediment": {"_count": 9, "Curse": {"_count": 4}, "Jinx": {"_count": 5}}, "jeers": {"_count": 2, "of": {"_count": 2}}, "court": {"_count": 3, "by": {"_count": 1}, "": {"_count": 1}, "chambers": {"_count": 1}}, "milkwhite": {"_count": 1, "face": {"_count": 1}}, "Reductor": {"_count": 4, "Curse": {"_count": 4}}, "FourPoint": {"_count": 4, "Spell": {"_count": 4}}, "Shield": {"_count": 7, "Charm": {"_count": 7}}, "counterjinx": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "endofterm": {"_count": 3, "tests": {"_count": 1}, "feast": {"_count": 2}}, "emptying": {"_count": 2, "Great": {"_count": 1}, "bottles": {"_count": 1}}, "instructions": {"_count": 10, "Mr": {"_count": 1}, "I": {"_count": 1}, "for": {"_count": 1}, "through": {"_count": 1}, "after": {"_count": 1}, "fill": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "Bearded": {"_count": 1, "and": {"_count": 1}}, "Unclean": {"_count": 1, "it": {"_count": 1}}, "hexes": {"_count": 2, "and": {"_count": 2}}, "lack": {"_count": 6, "of": {"_count": 6}}, "wake": {"_count": 2, "of": {"_count": 2}}, "shapeshifter": {"_count": 1, "exploded": {"_count": 1}}, "bottomless": {"_count": 1, "sky": {"_count": 1}}, "view": {"_count": 5, "of": {"_count": 3}, "that": {"_count": 1}, "did": {"_count": 1}}, "wonderfully": {"_count": 1, "solid": {"_count": 1}}, "hell": {"_count": 8, "dyou": {"_count": 1}, "is": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 1}, "panted": {"_count": 1}, "are": {"_count": 2}, "have": {"_count": 1}}, "increasing": {"_count": 2, "darkness": {"_count": 1}, "nastiness": {"_count": 1}}, "riddle": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "sphinx": {"_count": 1, "unharmed": {"_count": 1}}, "search": {"_count": 2, "for": {"_count": 2}}, "poem": {"_count": 3, "": {"_count": 2}, "warning": {"_count": 1}}, "Disarming": {"_count": 3, "Spell": {"_count": 2}, "Charm": {"_count": 1}}, "longing": {"_count": 3, "expression": {"_count": 1}, "behind": {"_count": 1}, "for": {"_count": 1}}, "Stunned": {"_count": 3, "spider": {"_count": 1}, "Mafalda": {"_count": 1}, "Goyle": {"_count": 1}}, "plinth": {"_count": 6, "where": {"_count": 1}, "in": {"_count": 1}, "clearly": {"_count": 1}, "and": {"_count": 2}, "of": {"_count": 1}}, "hillside": {"_count": 2, "": {"_count": 1}, "Potter": {"_count": 1}}, "graveyard": {"_count": 16, "": {"_count": 5}, "all": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 1}, "last": {"_count": 1}, "behind": {"_count": 1}, "gouging": {"_count": 1}, "Harry": {"_count": 1}, "was": {"_count": 2}, "of": {"_count": 1}}, "suggestion": {"_count": 2, "rather": {"_count": 1}, "that": {"_count": 1}}, "graves": {"_count": 3, "": {"_count": 1}, "around": {"_count": 1}, "he": {"_count": 1}}, "persons": {"_count": 2, "arms": {"_count": 1}, "head": {"_count": 1}}, "approaching": {"_count": 5, "figure": {"_count": 1}, "students": {"_count": 1}, "exams": {"_count": 1}, "sixth": {"_count": 1}, "union": {"_count": 1}}, "headstone": {"_count": 12, "": {"_count": 3}, "that": {"_count": 1}, "he": {"_count": 1}, "where": {"_count": 2}, "of": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "facing": {"_count": 1}, "were": {"_count": 1}}, "tightness": {"_count": 1, "of": {"_count": 1}}, "knots": {"_count": 2, "": {"_count": 1}, "free": {"_count": 1}}, "starlight": {"_count": 1, "lay": {"_count": 1}}, "father": {"_count": 4, "unknowingly": {"_count": 1}, "who": {"_count": 1}, "of": {"_count": 1}, "scooped": {"_count": 1}}, "missing": {"_count": 5, "finger": {"_count": 1}, "Death": {"_count": 1}, "Order": {"_count": 1}, "photographs": {"_count": 1}, "Horcrux": {"_count": 1}}, "dagger": {"_count": 4, "very": {"_count": 1}, "too": {"_count": 1}, "however": {"_count": 1}, "": {"_count": 1}}, "scream": {"_count": 3, "that": {"_count": 1}, "of": {"_count": 1}, "stopped": {"_count": 1}}, "crook": {"_count": 3, "of": {"_count": 3}}, "bleeding": {"_count": 7, "stump": {"_count": 2}, "swooning": {"_count": 1}, "house": {"_count": 1}, "puncture": {"_count": 1}, "wound": {"_count": 1}, "had": {"_count": 1}}, "steam": {"_count": 2, "and": {"_count": 1}, "rising": {"_count": 1}}, "stump": {"_count": 3, "of": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}}, "brand": {"_count": 1, "on": {"_count": 1}}, "swishing": {"_count": 6, "of": {"_count": 3}, "pounding": {"_count": 1}, "progress": {"_count": 1}, "frockcoated": {"_count": 1}}, "yew": {"_count": 2, "tree": {"_count": 2}}, "immensity": {"_count": 1, "of": {"_count": 1}}, "members": {"_count": 7, "of": {"_count": 6}, "in": {"_count": 1}}, "alert": {"_count": 2, "came": {"_count": 1}, "for": {"_count": 1}}, "Lestranges": {"_count": 11, "will": {"_count": 1}, "sentenced": {"_count": 1}, "": {"_count": 1}, "vault": {"_count": 6}, "have": {"_count": 1}, "vvault": {"_count": 1}}, "banished": {"_count": 1, "giants": {"_count": 1}}, "mask": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "attempt": {"_count": 10, "to": {"_count": 6}, "No": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 1}}, "traces": {"_count": 1, "of": {"_count": 1}}, "finger": {"_count": 2, "away": {"_count": 1}, "of": {"_count": 1}}, "meanest": {"_count": 3, "ghost": {"_count": 2}, "of": {"_count": 1}}, "weakest": {"_count": 1, "creature": {"_count": 1}}, "means": {"_count": 5, "to": {"_count": 2}, "for": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}}, "Aurors": {"_count": 7, "were": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}, "who": {"_count": 1}, "grip": {"_count": 1}, "": {"_count": 1}, "remember": {"_count": 1}}, "rats": {"_count": 1, "he": {"_count": 1}}, "Memory": {"_count": 2, "Charm": {"_count": 2}}, "ablebodied": {"_count": 1, "servant": {"_count": 1}}, "essential": {"_count": 2, "ingredients": {"_count": 1}, "point": {"_count": 1}}, "continually": {"_count": 1, "circling": {"_count": 1}}, "lingering": {"_count": 3, "protection": {"_count": 1}, "smell": {"_count": 1}, "chill": {"_count": 1}}, "crooked": {"_count": 10, "nose": {"_count": 6}, "silhouette": {"_count": 1}, "house": {"_count": 1}, "little": {"_count": 1}, "cobbled": {"_count": 1}}, "reach": {"_count": 3, "of": {"_count": 3}}, "stronger": {"_count": 1, "": {"_count": 1}}, "bonds": {"_count": 2, "tying": {"_count": 2}}, "gravestone": {"_count": 1, "": {"_count": 1}}, "overgrown": {"_count": 1, "grave": {"_count": 1}}, "dueling": {"_count": 1, "club": {"_count": 1}}, "unblockable": {"_count": 1, "Avada": {"_count": 1}}, "niceties": {"_count": 1, "must": {"_count": 1}}, "slitlike": {"_count": 2, "nostrils": {"_count": 2}}, "aches": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "realization": {"_count": 1, "of": {"_count": 1}}, "reflexes": {"_count": 1, "born": {"_count": 1}}, "tombstone": {"_count": 2, "of": {"_count": 1}, "again": {"_count": 1}}, "beams": {"_count": 1, "movement": {"_count": 1}}, "harder": {"_count": 2, "Harrys": {"_count": 1}, "valiantly": {"_count": 1}}, "bead": {"_count": 1, "back": {"_count": 1}}, "beads": {"_count": 2, "quivered": {"_count": 1}, "of": {"_count": 1}}, "solidest": {"_count": 1, "densest": {"_count": 1}}, "torso": {"_count": 1, "of": {"_count": 1}}, "frightened": {"_count": 3, "yells": {"_count": 1}, "crowd": {"_count": 1}, "old": {"_count": 1}}, "connected": {"_count": 1, "wands": {"_count": 1}}, "inner": {"_count": 5, "walls": {"_count": 1}, "corners": {"_count": 1}, "place": {"_count": 1}, "hall": {"_count": 1}, "doors": {"_count": 1}}, "duelers": {"_count": 2, "whispered": {"_count": 1}, "were": {"_count": 1}}, "headstones": {"_count": 1, "he": {"_count": 1}}, "jets": {"_count": 2, "of": {"_count": 2}}, "angel": {"_count": 2, "Impedimental": {"_count": 1}, "on": {"_count": 1}}, "jerk": {"_count": 1, "behind": {"_count": 1}}, "Tri": {"_count": 2, "wizard": {"_count": 2}}, "shapes": {"_count": 1, "of": {"_count": 1}}, "scum": {"_count": 2, "who": {"_count": 1}, "theyve": {"_count": 1}}, "Longbottom": {"_count": 1, "boy": {"_count": 1}}, "FoeGlass": {"_count": 5, "on": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 2}, "where": {"_count": 1}}, "outer": {"_count": 5, "hedges": {"_count": 1}, "cave": {"_count": 1}, "chamber": {"_count": 1}, "edge": {"_count": 1}, "trees": {"_count": 1}}, "outlines": {"_count": 4, "of": {"_count": 4}}, "indignity": {"_count": 4, "Harry": {"_count": 1}, "of": {"_count": 3}}, "pleasure": {"_count": 8, "": {"_count": 2}, "of": {"_count": 5}, "yet": {"_count": 1}}, "continued": {"_count": 6, "rise": {"_count": 1}, "absence": {"_count": 2}, "imprisonment": {"_count": 1}, "chugging": {"_count": 1}, "pounding": {"_count": 1}}, "spectacles": {"_count": 1, "": {"_count": 1}}, "ordeal": {"_count": 1, "he": {"_count": 1}}, "socket": {"_count": 1, "that": {"_count": 1}}, "imposters": {"_count": 1, "cloak": {"_count": 1}}, "hip": {"_count": 1, "flask": {"_count": 1}}, "simplicity": {"_count": 1, "of": {"_count": 1}}, "brilliance": {"_count": 4, "": {"_count": 1}, "that": {"_count": 2}, "of": {"_count": 1}}, "Moody": {"_count": 1, "in": {"_count": 1}}, "mangled": {"_count": 4, "nose": {"_count": 1}, "remains": {"_count": 2}, "staircase": {"_count": 1}}, "scalp": {"_count": 2, "and": {"_count": 1}, "showed": {"_count": 1}}, "Veritaserum": {"_count": 1, "with": {"_count": 1}}, "Foe": {"_count": 1, "Glass": {"_count": 1}}, "reflections": {"_count": 2, "of": {"_count": 1}, "from": {"_count": 1}}, "stolen": {"_count": 1, "wand": {"_count": 1}}, "sweetest": {"_count": 1, "memory": {"_count": 1}}, "freshly": {"_count": 5, "dug": {"_count": 2}, "minted": {"_count": 1}, "made": {"_count": 1}, "mown": {"_count": 1}}, "dreams": {"_count": 4, "of": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}}, "steaming": {"_count": 1, "cauldron": {"_count": 1}}, "interrogation": {"_count": 1, "of": {"_count": 1}}, "phoenixs": {"_count": 2, "beautiful": {"_count": 1}, "long": {"_count": 1}}, "scarletandgold": {"_count": 1, "bird": {"_count": 1}}, "owners": {"_count": 3, "of": {"_count": 2}, "name": {"_count": 1}}, "perch": {"_count": 2, "beside": {"_count": 2}}, "pajamas": {"_count": 1, "and": {"_count": 1}}, "fuzzy": {"_count": 1, "outlines": {"_count": 1}}, "screens": {"_count": 1, "Harry": {"_count": 1}}, "influence": {"_count": 3, "of": {"_count": 3}}, "pains": {"_count": 1, "Harry": {"_count": 1}}, "trials": {"_count": 4, "": {"_count": 2}, "took": {"_count": 1}, "said": {"_count": 1}}, "random": {"_count": 2, "work": {"_count": 1}, "experiments": {"_count": 1}}, "control": {"_count": 1, "of": {"_count": 1}}, "aura": {"_count": 1, "of": {"_count": 1}}, "love": {"_count": 2, "of": {"_count": 1}, "potion": {"_count": 1}}, "socalled": {"_count": 2, "purity": {"_count": 1}, "Inferius": {"_count": 1}}, "fold": {"_count": 1, "": {"_count": 1}}, "ugly": {"_count": 9, "mark": {"_count": 1}, "dummy": {"_count": 1}, "look": {"_count": 1}, "man": {"_count": 1}, "stone": {"_count": 1}, "baby": {"_count": 1}, "little": {"_count": 2}, "black": {"_count": 1}}, "lips": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "sack": {"_count": 9, "of": {"_count": 2}, "into": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "any": {"_count": 1}, "with": {"_count": 1}}, "burning": {"_count": 7, "feeling": {"_count": 1}, "letter": {"_count": 1}, "of": {"_count": 1}, "house": {"_count": 2}, "potion": {"_count": 1}, "metal": {"_count": 1}}, "howl": {"_count": 1, "of": {"_count": 1}}, "meeting": {"_count": 8, "with": {"_count": 1}, "Ill": {"_count": 1}, "and": {"_count": 2}, "is": {"_count": 1}, "": {"_count": 1}, "tonight": {"_count": 1}, "redhanded": {"_count": 1}}, "disbelieving": {"_count": 1, "expressions": {"_count": 1}}, "Leaving": {"_count": 4, "Feast": {"_count": 4}}, "winner": {"_count": 2, "of": {"_count": 1}, "is": {"_count": 1}}, "winning": {"_count": 1, "Houses": {"_count": 1}}, "saddest": {"_count": 1, "and": {"_count": 1}}, "qualities": {"_count": 3, "that": {"_count": 2}, "of": {"_count": 1}}, "Durmstrangs": {"_count": 1, "at": {"_count": 1}}, "vork": {"_count": 1, "": {"_count": 1}}, "horseless": {"_count": 1, "carriages": {"_count": 1}}, "Divination": {"_count": 4, "class": {"_count": 1}, "teacher": {"_count": 2}, "classroom": {"_count": 1}}, "losing": {"_count": 1, "side": {"_count": 1}}, "f": {"_count": 1, "It": {"_count": 1}}, "blaze": {"_count": 2, "of": {"_count": 2}}, "Furnunculus": {"_count": 1, "Curse": {"_count": 1}}, "decor": {"_count": 1, "": {"_count": 1}}, "git": {"_count": 1, "paid": {"_count": 1}}, "cards": {"_count": 3, "again": {"_count": 1}, "have": {"_count": 1}, "show": {"_count": 1}}, "drain": {"_count": 1, "": {"_count": 1}}, "hope": {"_count": 16, "of": {"_count": 5}, "that": {"_count": 11}}, "pinched": {"_count": 1, "slightly": {"_count": 1}}, "uppers": {"_count": 1, "": {"_count": 1}}, "Polkisses": {"_count": 1, "said": {"_count": 1}}, "play": {"_count": 1, "park": {"_count": 1}}, "Spanish": {"_count": 1, "baggagehandlers": {"_count": 1}}, "newsreaders": {"_count": 1, "sentence": {"_count": 1}}, "expectation": {"_count": 1, "the": {"_count": 1}}, "temporary": {"_count": 2, "relief": {"_count": 1}, "silence": {"_count": 1}}, "baggagehandlers": {"_count": 1, "strike": {"_count": 1}}, "drought": {"_count": 1, "in": {"_count": 1}}, "Southeast": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "newsreader": {"_count": 1, "said": {"_count": 1}}, "budgie": {"_count": 1, "has": {"_count": 1}}, "Five": {"_count": 1, "Feathers": {"_count": 1}}, "sleepy": {"_count": 2, "silence": {"_count": 2}}, "waistband": {"_count": 3, "of": {"_count": 2}, "on": {"_count": 1}}, "resultant": {"_count": 2, "crash": {"_count": 1}, "knot": {"_count": 1}}, "hydrangea": {"_count": 1, "bush": {"_count": 1}}, "curious": {"_count": 2, "neighbors": {"_count": 1}, "and": {"_count": 1}}, "cracking": {"_count": 2, "noise": {"_count": 2}}, "route": {"_count": 1, "he": {"_count": 1}}, "idiots": {"_count": 3, "who": {"_count": 2}, "cant": {"_count": 1}}, "vague": {"_count": 2, "hints": {"_count": 1}, "future": {"_count": 1}}, "wilting": {"_count": 1, "salad": {"_count": 1}}, "parched": {"_count": 1, "grass": {"_count": 1}}, "swings": {"_count": 3, "he": {"_count": 2}, "but": {"_count": 1}}, "trapped": {"_count": 2, "feeling": {"_count": 1}, "Fang": {"_count": 1}}, "swing": {"_count": 3, "before": {"_count": 1}, "at": {"_count": 1}, "poles": {"_count": 1}}, "Junior": {"_count": 1, "Heavyweight": {"_count": 1}}, "primary": {"_count": 1, "school": {"_count": 1}}, "gang": {"_count": 4, "but": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 2}}, "railings": {"_count": 2, "": {"_count": 1}, "facing": {"_count": 1}}, "householders": {"_count": 1, "": {"_count": 1}}, "whisper": {"_count": 2, "of": {"_count": 2}}, "stag": {"_count": 4, "charged": {"_count": 1}, "": {"_count": 2}, "burst": {"_count": 1}}, "abrupt": {"_count": 2, "return": {"_count": 1}, "dismissal": {"_count": 1}}, "newcomer": {"_count": 3, "": {"_count": 2}, "through": {"_count": 1}}, "Statute": {"_count": 3, "of": {"_count": 3}}, "doleful": {"_count": 1, "look": {"_count": 1}}, "semiconscious": {"_count": 1, "Dudley": {"_count": 1}}, "kerfuffle": {"_count": 1, "nobody": {"_count": 1}}, "stair": {"_count": 3, "face": {"_count": 1}, "and": {"_count": 1}, "behind": {"_count": 1}}, "explosion": {"_count": 3, "": {"_count": 2}, "slammed": {"_count": 1}}, "wellworn": {"_count": 1, "vein": {"_count": 1}}, "vicinity": {"_count": 9, "": {"_count": 4}, "jump": {"_count": 1}, "yelled": {"_count": 1}, "to": {"_count": 1}, "working": {"_count": 1}, "but": {"_count": 1}}, "former": {"_count": 1, "course": {"_count": 1}}, "countrys": {"_count": 1, "going": {"_count": 1}}, "hosepipe": {"_count": 1, "ban": {"_count": 1}}, "clammy": {"_count": 1, "cold": {"_count": 1}}, "lungs": {"_count": 1, "as": {"_count": 1}}, "stillopen": {"_count": 2, "window": {"_count": 1}, "fireplace": {"_count": 1}}, "Headmaster": {"_count": 1, "of": {"_count": 1}}, "soul": {"_count": 6, "out": {"_count": 1}, "remains": {"_count": 1}, "is": {"_count": 1}, "apart": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}}, "strip": {"_count": 1, "lighting": {"_count": 1}}, "topof": {"_count": 1, "therange": {"_count": 1}}, "widescreen": {"_count": 1, "television": {"_count": 1}}, "relentlessly": {"_count": 1, "nonmagical": {"_count": 1}}, "unprecedented": {"_count": 1, "understanding": {"_count": 1}}, "confined": {"_count": 1, "space": {"_count": 1}}, "scrolls": {"_count": 2, "to": {"_count": 1}, "vanished": {"_count": 1}}, "stereo": {"_count": 1, "or": {"_count": 1}}, "slamming": {"_count": 1, "of": {"_count": 1}}, "energy": {"_count": 3, "to": {"_count": 2}, "necessary": {"_count": 1}}, "blessed": {"_count": 1, "moment": {"_count": 1}}, "streetlight": {"_count": 1, "glowing": {"_count": 1}}, "violethaired": {"_count": 1, "woman": {"_count": 1}}, "AllEngland": {"_count": 1, "BestKept": {"_count": 1}}, "prizegiving": {"_count": 1, "right": {"_count": 1}}, "allclear": {"_count": 1, "": {"_count": 1}}, "wheezyvoiced": {"_count": 1, "wizard": {"_count": 1}}, "toaster": {"_count": 1, "": {"_count": 1}}, "signal": {"_count": 4, "to": {"_count": 1}, "comes": {"_count": 1}, "": {"_count": 2}}, "dishwasher": {"_count": 1, "took": {"_count": 1}}, "band": {"_count": 1, "of": {"_count": 1}}, "lightningshaped": {"_count": 4, "scar": {"_count": 3}, "mark": {"_count": 1}}, "microwave": {"_count": 2, "and": {"_count": 1}, "door": {"_count": 1}}, "nonexistent": {"_count": 1, "lawn": {"_count": 1}}, "flapping": {"_count": 1, "of": {"_count": 1}}, "whoosh": {"_count": 1, "of": {"_count": 1}}, "motorway": {"_count": 1, "": {"_count": 1}}, "snug": {"_count": 1, "dry": {"_count": 1}}, "cars": {"_count": 2, "streaming": {"_count": 1}, "stopped": {"_count": 1}}, "descent": {"_count": 1, "": {"_count": 1}}, "streetlamps": {"_count": 3, "paint": {"_count": 1}, "they": {"_count": 1}, "were": {"_count": 1}}, "unlighter": {"_count": 1, "again": {"_count": 1}}, "sickle": {"_count": 1, "moon": {"_count": 1}}, "broken": {"_count": 19, "gate": {"_count": 1}, "pieces": {"_count": 2}, "shards": {"_count": 1}, "fragments": {"_count": 1}, "mirror": {"_count": 2}, "objects": {"_count": 1}, "scales": {"_count": 1}, "Vanishing": {"_count": 1}, "one": {"_count": 1}, "window": {"_count": 1}, "wand": {"_count": 2}, "Horcrux": {"_count": 1}, "locket": {"_count": 1}, "printing": {"_count": 1}, "halves": {"_count": 1}, "ring": {"_count": 1}}, "writing": {"_count": 3, "": {"_count": 1}, "upon": {"_count": 1}, "desk": {"_count": 1}}, "Phoenix": {"_count": 54, "may": {"_count": 1}, "tailing": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 12}, "J": {"_count": 10}, "to": {"_count": 1}, "about": {"_count": 1}, "last": {"_count": 1}, "isnt": {"_count": 1}, "came": {"_count": 1}, "growled": {"_count": 1}, "he": {"_count": 1}, "right": {"_count": 1}, "at": {"_count": 1}, "have": {"_count": 1}, "both": {"_count": 1}, "ever": {"_count": 1}, "for": {"_count": 1}, "were": {"_count": 1}, "here": {"_count": 1}, "Kingsley": {"_count": 1}, "intends": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "inform": {"_count": 1}, "informs": {"_count": 1}, "I": {"_count": 1}, "is": {"_count": 2}, "know": {"_count": 1}, "Dumbledores": {"_count": 1}, "who": {"_count": 1}, "Snape": {"_count": 1}}, "worn": {"_count": 2, "stone": {"_count": 1}, "carpet": {"_count": 1}}, "Disillusionment": {"_count": 1, "Charm": {"_count": 1}}, "peeling": {"_count": 3, "wallpaper": {"_count": 1}, "walls": {"_count": 1}, "paint": {"_count": 1}}, "baseboard": {"_count": 1, "": {"_count": 1}}, "candelabra": {"_count": 1, "on": {"_count": 1}}, "meetings": {"_count": 5, "started": {"_count": 1}, "only": {"_count": 1}, "over": {"_count": 1}, "she": {"_count": 1}, "too": {"_count": 1}}, "Darkest": {"_count": 5, "of": {"_count": 1}, "Art": {"_count": 4}}, "dingy": {"_count": 1, "landing": {"_count": 1}}, "bareness": {"_count": 1, "of": {"_count": 1}}, "hurt": {"_count": 1, "that": {"_count": 1}}, "feelings": {"_count": 2, "he": {"_count": 1}, "inside": {"_count": 1}}, "mournful": {"_count": 2, "creak": {"_count": 1}, "hum": {"_count": 1}}, "floorboards": {"_count": 2, "below": {"_count": 1}, "quake": {"_count": 1}}, "bedrooms": {"_count": 1, "and": {"_count": 1}}, "string": {"_count": 3, "which": {"_count": 1}, "and": {"_count": 2}}, "Extendable": {"_count": 15, "Ears": {"_count": 10}, "Ear": {"_count": 5}}, "fairly": {"_count": 1, "large": {"_count": 1}}, "foundation": {"_count": 2, "for": {"_count": 1}, "stone": {"_count": 1}}, "necessity": {"_count": 4, "of": {"_count": 4}}, "basement": {"_count": 9, "kitchen": {"_count": 3}, "Mrs": {"_count": 1}, "corridor": {"_count": 1}, "when": {"_count": 1}, "near": {"_count": 1}, "a": {"_count": 1}, "of": {"_count": 1}}, "menacing": {"_count": 1, "shapes": {"_count": 1}}, "lengths": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "pantry": {"_count": 5, "": {"_count": 1}, "skidded": {"_count": 1}, "leaving": {"_count": 1}, "which": {"_count": 1}, "carrying": {"_count": 1}}, "monotony": {"_count": 1, "nicely": {"_count": 1}}, "cleanings": {"_count": 1, "going": {"_count": 1}}, "dismal": {"_count": 1, "kitchen": {"_count": 1}}, "twist": {"_count": 1, "hasnt": {"_count": 1}}, "stew": {"_count": 1, "back": {"_count": 1}}, "fleeting": {"_count": 1, "impression": {"_count": 1}}, "Bagman": {"_count": 1, "business": {"_count": 1}}, "gormless": {"_count": 1, "gargoyle": {"_count": 1}}, "crooks": {"_count": 1, "well": {"_count": 1}}, "jeans": {"_count": 1, "had": {"_count": 1}}, "general": {"_count": 6, "conversation": {"_count": 1}, "picture": {"_count": 1}, "performance": {"_count": 1}, "upheaval": {"_count": 1}, "effect": {"_count": 1}, "murmuring": {"_count": 1}}, "rapidity": {"_count": 1, "Harry": {"_count": 1}}, "Orders": {"_count": 8, "doing": {"_count": 1}, "trying": {"_count": 1}, "ears": {"_count": 1}, "We": {"_count": 1}, "confidential": {"_count": 1}, "help": {"_count": 1}, "charms": {"_count": 1}, "got": {"_count": 1}}, "facts": {"_count": 7, "not": {"_count": 1}, "Molly": {"_count": 1}, "": {"_count": 2}, "try": {"_count": 1}, "Hermione": {"_count": 1}, "about": {"_count": 1}}, "din": {"_count": 5, "": {"_count": 3}, "of": {"_count": 1}, "would": {"_count": 1}}, "renewed": {"_count": 3, "shudders": {"_count": 1}, "clanging": {"_count": 1}, "use": {"_count": 1}}, "Ministers": {"_count": 5, "job": {"_count": 1}, "plan": {"_count": 1}, "too": {"_count": 1}, "life": {"_count": 1}, "yellow": {"_count": 1}}, "sake": {"_count": 2, "of": {"_count": 2}}, "Wizarding": {"_count": 41, "community": {"_count": 12}, "race": {"_count": 1}, "Bank": {"_count": 1}, "world": {"_count": 18}, "school": {"_count": 1}, "Examinations": {"_count": 2}, "hospital": {"_count": 1}, "group": {"_count": 1}, "worlds": {"_count": 1}, "band": {"_count": 1}, "bank": {"_count": 1}, "Wireless": {"_count": 1}}, "community": {"_count": 1, "said": {"_count": 1}}, "hunt": {"_count": 1, "for": {"_count": 1}}, "Chairmanship": {"_count": 1, "of": {"_count": 1}}, "Wizengamot": {"_count": 20, "thats": {"_count": 1}, "were": {"_count": 1}, "as": {"_count": 1}, "Charter": {"_count": 1}, "laughed": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}, "then": {"_count": 1}, "charged": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 4}, "was": {"_count": 1}, "surfaced": {"_count": 1}, "for": {"_count": 1}, "Gold": {"_count": 1}}, "Wizard": {"_count": 1, "High": {"_count": 1}}, "Avada": {"_count": 3, "Kedavra": {"_count": 3}}, "grimy": {"_count": 5, "window": {"_count": 2}, "basin": {"_count": 1}, "landing": {"_count": 1}, "lenses": {"_count": 1}}, "receiving": {"_count": 1, "end": {"_count": 1}}, "floorboard": {"_count": 1, "creak": {"_count": 1}}, "cacophony": {"_count": 1, "of": {"_count": 1}}, "clattering": {"_count": 1, "of": {"_count": 1}}, "doxy": {"_count": 2, "party": {"_count": 1}, "quickly": {"_count": 1}}, "sprays": {"_count": 1, "one": {"_count": 1}}, "Puking": {"_count": 1, "Pastilles": {"_count": 1}}, "leisure": {"_count": 1, "activity": {"_count": 1}}, "adverts": {"_count": 1, "anyway": {"_count": 1}}, "Fainting": {"_count": 1, "Fancies": {"_count": 1}}, "Nosebleed": {"_count": 2, "Nougat": {"_count": 2}}, "nozzle": {"_count": 1, "on": {"_count": 1}}, "thousandGalleon": {"_count": 1, "prize": {"_count": 1}}, "intensive": {"_count": 1, "spraying": {"_count": 1}}, "stopper": {"_count": 4, "full": {"_count": 1}, "of": {"_count": 1}, "out": {"_count": 1}, "off": {"_count": 1}}, "brats": {"_count": 1, "destroy": {"_count": 1}}, "Middle": {"_count": 1, "Ages": {"_count": 1}}, "purification": {"_count": 1, "of": {"_count": 1}}, "crushing": {"_count": 4, "sense": {"_count": 1}, "metal": {"_count": 1}, "darkness": {"_count": 1}, "arms": {"_count": 1}}, "cabinets": {"_count": 2, "Harry": {"_count": 1}, "if": {"_count": 1}}, "medal": {"_count": 1, "into": {"_count": 1}}, "rubbish": {"_count": 9, "sack": {"_count": 1}, "sacks": {"_count": 1}, "hes": {"_count": 1}, "off": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}, "pile": {"_count": 2}, "heaped": {"_count": 1}}, "cue": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "visitor": {"_count": 2, "though": {"_count": 1}, "as": {"_count": 1}}, "brief": {"_count": 1, "glimpses": {"_count": 1}}, "looming": {"_count": 2, "Ministry": {"_count": 1}, "prospect": {"_count": 1}}, "eve": {"_count": 2, "of": {"_count": 2}}, "process": {"_count": 6, "": {"_count": 2}, "of": {"_count": 3}, "is": {"_count": 1}}, "label": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "miserable": {"_count": 1, "little": {"_count": 1}}, "automatic": {"_count": 1, "ticket": {"_count": 1}}, "transaction": {"_count": 1, "as": {"_count": 1}}, "escalator": {"_count": 2, "they": {"_count": 1}, "Moody": {"_count": 1}}, "buildings": {"_count": 2, "became": {"_count": 1}, "or": {"_count": 1}}, "dial": {"_count": 3, "": {"_count": 2}, "whirred": {"_count": 1}}, "metal": {"_count": 4, "chute": {"_count": 2}, "fingers": {"_count": 1}, "doors": {"_count": 1}}, "female": {"_count": 3, "voice": {"_count": 1}, "Death": {"_count": 2}}, "Atrium": {"_count": 13, "": {"_count": 4}, "and": {"_count": 1}, "level": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}, "above": {"_count": 1}, "so": {"_count": 1}, "Fudge": {"_count": 1}, "with": {"_count": 1}, "The": {"_count": 1}}, "tinkling": {"_count": 1, "hiss": {"_count": 1}}, "pops": {"_count": 1, "and": {"_count": 1}}, "fountain": {"_count": 12, "Harry": {"_count": 1}, "": {"_count": 2}, "toward": {"_count": 1}, "and": {"_count": 2}, "on": {"_count": 1}, "for": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "of": {"_count": 1}, "played": {"_count": 1}}, "Fountain": {"_count": 3, "of": {"_count": 3}}, "stream": {"_count": 6, "of": {"_count": 5}, "fishing": {"_count": 1}}, "Ban": {"_count": 1, "on": {"_count": 1}}, "lift": {"_count": 38, "": {"_count": 9}, "ascended": {"_count": 1}, "who": {"_count": 1}, "juddered": {"_count": 3}, "doors": {"_count": 2}, "pursued": {"_count": 1}, "on": {"_count": 1}, "into": {"_count": 1}, "at": {"_count": 1}, "began": {"_count": 3}, "down": {"_count": 1}, "slid": {"_count": 1}, "halted": {"_count": 1}, "before": {"_count": 1}, "and": {"_count": 1}, "creaked": {"_count": 1}, "followed": {"_count": 1}, "beside": {"_count": 1}, "set": {"_count": 1}, "had": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "sank": {"_count": 1}, "rattled": {"_count": 1}, "clanged": {"_count": 1}}, "British": {"_count": 1, "and": {"_count": 1}}, "memos": {"_count": 2, "flapped": {"_count": 1}, "zoomed": {"_count": 1}}, "swaying": {"_count": 2, "lamp": {"_count": 1}, "veil": {"_count": 1}}, "lifts": {"_count": 11, "ceiling": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "were": {"_count": 1}, "into": {"_count": 1}, "stretched": {"_count": 1}, "called": {"_count": 1}, "Harry": {"_count": 2}, "began": {"_count": 1}}, "firebreathing": {"_count": 1, "chicken": {"_count": 1}}, "overflowing": {"_count": 2, "filing": {"_count": 1}, "dumpster": {"_count": 1}}, "intray": {"_count": 1, "": {"_count": 1}}, "hiccuping": {"_count": 1, "toaster": {"_count": 1}}, "flush": {"_count": 1, "and": {"_count": 1}}, "regurgitating": {"_count": 1, "toilet": {"_count": 1}}, "filing": {"_count": 1, "cabinets": {"_count": 1}}, "Auror": {"_count": 9, "cubicles": {"_count": 1}, "office": {"_count": 6}, "let": {"_count": 1}, "Office": {"_count": 1}}, "down": {"_count": 1, "button": {"_count": 1}}, "courtroom": {"_count": 10, "": {"_count": 4}, "door": {"_count": 2}, "if": {"_count": 1}, "in": {"_count": 1}, "their": {"_count": 1}, "behind": {"_count": 1}}, "Wizengamots": {"_count": 1, "fault": {"_count": 1}}, "indulgent": {"_count": 1, "smile": {"_count": 1}}, "obviously": {"_count": 1, "flustered": {"_count": 1}}, "accused": {"_count": 4, "are": {"_count": 1}, "has": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}}, "illegality": {"_count": 1, "of": {"_count": 1}}, "monocle": {"_count": 3, "on": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "Impressive": {"_count": 1, "said": {"_count": 1}}, "policy": {"_count": 1, "of": {"_count": 1}}, "monocles": {"_count": 1, "edges": {"_count": 1}}, "eerie": {"_count": 1, "way": {"_count": 1}}, "complete": {"_count": 3, "silence": {"_count": 1}, "stillness": {"_count": 1}, "opposite": {"_count": 1}}, "life": {"_count": 7, "of": {"_count": 3}, "and": {"_count": 3}, "out": {"_count": 1}}, "We": {"_count": 1, "are": {"_count": 1}}, "category": {"_count": 1, "of": {"_count": 1}}, "Hover": {"_count": 2, "Charm": {"_count": 2}}, "employ": {"_count": 1, "of": {"_count": 1}}, "practice": {"_count": 5, "to": {"_count": 1}, "it": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}, "sessions": {"_count": 1}}, "heavily": {"_count": 5, "mustached": {"_count": 1}, "laden": {"_count": 1}, "veiled": {"_count": 1}, "chained": {"_count": 1}, "perfumed": {"_count": 1}}, "frizzyhaired": {"_count": 1, "witch": {"_count": 1}}, "toadlike": {"_count": 2, "witch": {"_count": 2}}, "passing": {"_count": 5, "wizards": {"_count": 1}, "of": {"_count": 1}, "years": {"_count": 1}, "light": {"_count": 1}, "hours": {"_count": 1}}, "attitude": {"_count": 2, "behind": {"_count": 1}, "I": {"_count": 1}}, "vandalism": {"_count": 1, "Harry": {"_count": 1}}, "ninthlevel": {"_count": 1, "corridor": {"_count": 1}}, "button": {"_count": 3, "for": {"_count": 1}, "to": {"_count": 1}, "marked": {"_count": 1}}, "antiVoldemort": {"_count": 2, "movement": {"_count": 2}}, "droppings": {"_count": 1, "into": {"_count": 1}}, "wastepaper": {"_count": 3, "basket": {"_count": 3}}, "Slinkhard": {"_count": 1, "book": {"_count": 1}}, "prefect": {"_count": 6, "": {"_count": 1}, "badge": {"_count": 3}, "carriage": {"_count": 1}, "system": {"_count": 1}}, "booklists": {"_count": 1, "had": {"_count": 1}}, "Cleansweep": {"_count": 2, "just": {"_count": 1}, "if": {"_count": 1}}, "wardrobes": {"_count": 1, "clawed": {"_count": 1}}, "pupil": {"_count": 1, "contracted": {"_count": 1}}, "offer": {"_count": 4, "to": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "careful": {"_count": 1}}, "Comet": {"_count": 1, "Two": {"_count": 1}}, "Skiving": {"_count": 2, "Snackboxes": {"_count": 2}}, "manners": {"_count": 1, "to": {"_count": 1}}, "forefront": {"_count": 2, "of": {"_count": 2}}, "stuffed": {"_count": 4, "elf": {"_count": 2}, "vulture": {"_count": 1}, "troll": {"_count": 1}}, "tttime": {"_count": 1, "": {"_count": 1}}, "fffamilys": {"_count": 1, "in": {"_count": 1}}, "tattered": {"_count": 3, "old": {"_count": 1}, "black": {"_count": 1}, "book": {"_count": 1}}, "corpse": {"_count": 2, "of": {"_count": 2}}, "bother": {"_count": 1, "of": {"_count": 1}}, "repeated": {"_count": 1, "screeches": {"_count": 1}}, "weak": {"_count": 3, "September": {"_count": 1}, "May": {"_count": 1}, "seeking": {"_count": 1}}, "lolloping": {"_count": 1, "black": {"_count": 1}}, "wroughtiron": {"_count": 1, "arch": {"_count": 1}}, "fingernails": {"_count": 1, "on": {"_count": 1}}, "glasspaneled": {"_count": 1, "doors": {"_count": 1}}, "compartments": {"_count": 2, "they": {"_count": 1}, "before": {"_count": 1}}, "marblelike": {"_count": 1, "device": {"_count": 1}}, "rather": {"_count": 2, "sinister": {"_count": 1}, "horrible": {"_count": 1}}, "Mimbulus": {"_count": 2, "mimbletonia": {"_count": 2}}, "escape": {"_count": 1, "of": {"_count": 1}}, "wrapper": {"_count": 3, "bit": {"_count": 1}, "into": {"_count": 1}, "of": {"_count": 1}}, "Frog": {"_count": 1, "into": {"_count": 1}}, "ludicrously": {"_count": 1, "prolonged": {"_count": 1}}, "mickey": {"_count": 3, "": {"_count": 1}, "out": {"_count": 2}}, "limegreen": {"_count": 1, "bowler": {"_count": 1}}, "Tornados": {"_count": 3, "Are": {"_count": 1}, "": {"_count": 1}, "right": {"_count": 1}}, "crimes": {"_count": 3, "for": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 1}}, "killings": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "hes": {"_count": 1}}, "guardians": {"_count": 2, "of": {"_count": 2}}, "Tutshill": {"_count": 1, "Tornados": {"_count": 1}}, "runes": {"_count": 3, "on": {"_count": 1}, "": {"_count": 2}}, "articles": {"_count": 1, "in": {"_count": 1}}, "editor": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "rainstreaked": {"_count": 1, "window": {"_count": 1}}, "pine": {"_count": 6, "trees": {"_count": 1}, "tree": {"_count": 3}, "as": {"_count": 1}, "with": {"_count": 1}}, "prominent": {"_count": 1, "chin": {"_count": 1}}, "reappearance": {"_count": 1, "of": {"_count": 1}}, "hundred": {"_count": 1, "or": {"_count": 1}}, "coaches": {"_count": 1, "were": {"_count": 1}}, "winged": {"_count": 1, "horse": {"_count": 1}}, "there": {"_count": 1, "between": {"_count": 1}}, "shafts": {"_count": 1, "": {"_count": 1}}, "coachs": {"_count": 1, "dark": {"_count": 1}}, "batwinged": {"_count": 1, "horses": {"_count": 1}}, "silhouettes": {"_count": 1, "of": {"_count": 1}}, "wheels": {"_count": 1, "below": {"_count": 1}}, "starless": {"_count": 1, "black": {"_count": 1}}, "rip": {"_count": 2, "near": {"_count": 2}}, "hats": {"_count": 5, "brim": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "that": {"_count": 1}}, "selfsame": {"_count": 1, "yearning": {"_count": 1}}, "boldest": {"_count": 1, "Went": {"_count": 1}}, "Houses": {"_count": 5, "and": {"_count": 1}, "been": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}}, "clash": {"_count": 1, "of": {"_count": 1}}, "fighting": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "perils": {"_count": 1, "read": {"_count": 1}}, "pauses": {"_count": 1, "between": {"_count": 1}}, "competitiveness": {"_count": 1, "between": {"_count": 1}}, "pleasures": {"_count": 1, "of": {"_count": 1}}, "meal": {"_count": 1, "in": {"_count": 1}}, "extensive": {"_count": 1, "list": {"_count": 1}}, "He": {"_count": 3, "broke": {"_count": 1}, "looked": {"_count": 1}, "was": {"_count": 1}}, "breathiness": {"_count": 1, "had": {"_count": 1}}, "education": {"_count": 1, "of": {"_count": 1}}, "generations": {"_count": 2, "lest": {"_count": 1}, "due": {"_count": 1}}, "weighty": {"_count": 1, "task": {"_count": 1}}, "restlessness": {"_count": 1, "of": {"_count": 1}}, "fullness": {"_count": 1, "of": {"_count": 1}}, "speech": {"_count": 1, "not": {"_count": 1}}, "waffle": {"_count": 1, "said": {"_count": 1}}, "stunted": {"_count": 2, "little": {"_count": 1}, "creature": {"_count": 1}}, "Kenmare": {"_count": 1, "Kestrels": {"_count": 1}}, "wider": {"_count": 2, "Wizarding": {"_count": 2}}, "limit": {"_count": 2, "said": {"_count": 1}, "already": {"_count": 1}}, "breakfasters": {"_count": 1, "with": {"_count": 1}}, "column": {"_count": 1, "": {"_count": 1}}, "average": {"_count": 5, "Hogwarts": {"_count": 1}, "car": {"_count": 1}, "cupboard": {"_count": 1}, "school": {"_count": 1}, "Blast": {"_count": 1}}, "products": {"_count": 2, "to": {"_count": 1}, "lining": {"_count": 1}}, "demand": {"_count": 1, "": {"_count": 1}}, "Galleons": {"_count": 3, "": {"_count": 3}}, "jobs": {"_count": 2, "you": {"_count": 1}, "she": {"_count": 1}}, "elite": {"_count": 1, "said": {"_count": 1}}, "soporific": {"_count": 1, "power": {"_count": 1}}, "collars": {"_count": 1, "of": {"_count": 1}}, "agony": {"_count": 2, "of": {"_count": 2}}, "bandwagon": {"_count": 1, "Thats": {"_count": 1}}, "ominous": {"_count": 4, "sound": {"_count": 1}, "picture": {"_count": 1}, "feelings": {"_count": 1}, "mood": {"_count": 1}}, "huffy": {"_count": 1, "irritable": {"_count": 1}}, "composition": {"_count": 1, "and": {"_count": 1}}, "highpass": {"_count": 1, "level": {"_count": 1}}, "store": {"_count": 5, "cupboard": {"_count": 4}, "of": {"_count": 1}}, "said": {"_count": 2, "cupboard": {"_count": 1}, "Muggle": {"_count": 1}}, "mixture": {"_count": 1, "had": {"_count": 1}}, "haze": {"_count": 1, "of": {"_count": 1}}, "hellebore": {"_count": 1, "": {"_count": 1}}, "consistency": {"_count": 1, "of": {"_count": 1}}, "vision": {"_count": 13, "of": {"_count": 6}, "he": {"_count": 1}, "thats": {"_count": 1}, "you": {"_count": 2}, "": {"_count": 1}, "Voldemort": {"_count": 1}, "in": {"_count": 1}}, "lowburning": {"_count": 1, "sicklyscented": {"_count": 1}}, "remotest": {"_count": 3, "importance": {"_count": 1}, "sense": {"_count": 1}, "antiMuggle": {"_count": 1}}, "sacred": {"_count": 1, "art": {"_count": 1}}, "Seeing": {"_count": 1, "Eye": {"_count": 1}}, "examination": {"_count": 6, "so": {"_count": 1}, "paper": {"_count": 1}, "hall": {"_count": 1}, "to": {"_count": 1}, "is": {"_count": 1}, "but": {"_count": 1}}, "introduction": {"_count": 7, "and": {"_count": 1}, "of": {"_count": 4}, "is": {"_count": 1}, "to": {"_count": 1}}, "Oracle": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "down": {"_count": 1}, "at": {"_count": 1}}, "standard": {"_count": 2, "we": {"_count": 1}, "required": {"_count": 1}}, "principles": {"_count": 2, "underlying": {"_count": 1}, "involved": {"_count": 1}}, "Svhole": {"_count": 1, "point": {"_count": 1}}, "countercurses": {"_count": 1, "and": {"_count": 1}}, "inkwells": {"_count": 1, "to": {"_count": 1}}, "banister": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "Potty": {"_count": 1, "wee": {"_count": 1}}, "piles": {"_count": 3, "of": {"_count": 3}}, "elephantine": {"_count": 1, "sounds": {"_count": 1}}, "move": {"_count": 5, "": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "dont": {"_count": 1}, "he": {"_count": 1}}, "firstfloor": {"_count": 3, "landing": {"_count": 2}, "corridor": {"_count": 1}}, "windowpanes": {"_count": 3, "as": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 1}}, "title": {"_count": 6, "then": {"_count": 1}, "of": {"_count": 3}, "was": {"_count": 2}}, "belt": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "woolly": {"_count": 1, "hats": {"_count": 1}}, "ache": {"_count": 1, "in": {"_count": 1}}, "soothing": {"_count": 1, "peace": {"_count": 1}}, "plus": {"_count": 1, "side": {"_count": 1}}, "importance": {"_count": 4, "of": {"_count": 4}}, "Vanishing": {"_count": 4, "Spells": {"_count": 1}, "Spell": {"_count": 2}, "Cabinet": {"_count": 1}}, "snails": {"_count": 1, "on": {"_count": 1}}, "uses": {"_count": 3, "of": {"_count": 2}, "to": {"_count": 1}}, "occasional": {"_count": 8, "drop": {"_count": 1}, "firework": {"_count": 1}, "rustle": {"_count": 2}, "outbursts": {"_count": 1}, "creak": {"_count": 1}, "grunt": {"_count": 1}, "side": {"_count": 1}}, "trestle": {"_count": 3, "table": {"_count": 3}}, "stickcreatures": {"_count": 1, "who": {"_count": 1}}, "eyeballs": {"_count": 1, "": {"_count": 1}}, "bowtruckle": {"_count": 6, "for": {"_count": 1}, "so": {"_count": 1}, "set": {"_count": 1}, "drawing": {"_count": 1}, "nor": {"_count": 1}, "and": {"_count": 1}}, "Blibbering": {"_count": 2, "Humdinger": {"_count": 2}}, "CrumpleHorned": {"_count": 2, "Snorkack": {"_count": 2}}, "sinister": {"_count": 1, "winged": {"_count": 1}}, "injustice": {"_count": 2, "of": {"_count": 2}}, "impostor": {"_count": 1, "Moodys": {"_count": 1}}, "detection": {"_count": 1, "of": {"_count": 1}}, "tryouts": {"_count": 3, "for": {"_count": 1}, "": {"_count": 2}}, "straightbacked": {"_count": 1, "chair": {"_count": 1}}, "sharp": {"_count": 4, "black": {"_count": 1}, "edge": {"_count": 2}, "blade": {"_count": 1}}, "questions": {"_count": 4, "Professor": {"_count": 1}, "he": {"_count": 1}, "fired": {"_count": 1}, "said": {"_count": 1}}, "pointed": {"_count": 3, "quills": {"_count": 1}, "black": {"_count": 1}, "chin": {"_count": 1}}, "Lanky": {"_count": 1, "clutching": {"_count": 1}}, "mountainous": {"_count": 1, "pile": {"_count": 1}}, "lace": {"_count": 2, "covered": {"_count": 1}, "on": {"_count": 1}}, "goalposts": {"_count": 3, "now": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "bust": {"_count": 5, "of": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "Wistful": {"_count": 1, "": {"_count": 1}}, "glassless": {"_count": 1, "windows": {"_count": 1}}, "blindingly": {"_count": 1, "bright": {"_count": 1}}, "dropping": {"_count": 1, "strewn": {"_count": 1}}, "bass": {"_count": 1, "player": {"_count": 1}}, "item": {"_count": 1, "was": {"_count": 1}}, "Ord": {"_count": 1, "Ron": {"_count": 1}}, "goals": {"_count": 1, "Harry": {"_count": 1}}, "Captains": {"_count": 3, "office": {"_count": 2}, "badge": {"_count": 1}}, "uninvited": {"_count": 1, "spectators": {"_count": 1}}, "chant": {"_count": 1, "of": {"_count": 1}}, "Inanimatus": {"_count": 1, "Conjurus": {"_count": 1}}, "volcanos": {"_count": 1, "": {"_count": 1}}, "scroll": {"_count": 7, "To": {"_count": 1}, "and": {"_count": 1}, "tied": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "by": {"_count": 1}, "addressed": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "dangerous": {"_count": 4, "crowd": {"_count": 1}, "nature": {"_count": 1}, "access": {"_count": 1}, "task": {"_count": 1}}, "stigma": {"_count": 1, "of": {"_count": 1}}, "misguided": {"_count": 1, "nature": {"_count": 1}}, "ruffle": {"_count": 1, "of": {"_count": 1}}, "reference": {"_count": 1, "books": {"_count": 1}}, "summers": {"_count": 1, "shared": {"_count": 1}}, "singed": {"_count": 2, "and": {"_count": 1}, "hole": {"_count": 1}}, "stupidest": {"_count": 2, "thing": {"_count": 2}}, "departing": {"_count": 1, "delivery": {"_count": 1}}, "event": {"_count": 1, "of": {"_count": 1}}, "teaching": {"_count": 2, "staff": {"_count": 1}, "of": {"_count": 1}}, "falling": {"_count": 4, "standards": {"_count": 1}, "darkness": {"_count": 1}, "sidecar": {"_count": 1}, "stone": {"_count": 1}}, "controversial": {"_count": 1, "staff": {"_count": 1}}, "hiring": {"_count": 1, "of": {"_count": 1}}, "prestigious": {"_count": 1, "school": {"_count": 1}}, "appointment": {"_count": 2, "of": {"_count": 1}, "I": {"_count": 1}}, "Inquisitor": {"_count": 1, "is": {"_count": 1}}, "grades": {"_count": 3, "you": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}}, "inspection": {"_count": 1, "": {"_count": 1}}, "celebrated": {"_count": 3, "Seer": {"_count": 1}, "alchemist": {"_count": 1}, "magical": {"_count": 1}}, "clipboard": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "shawl": {"_count": 1, "around": {"_count": 1}}, "mystical": {"_count": 1, "effect": {"_count": 1}}, "jauntiness": {"_count": 1, "she": {"_count": 1}}, "possible": {"_count": 3, "exception": {"_count": 1}, "locations": {"_count": 2}}, "mouse": {"_count": 2, "again": {"_count": 1}, "as": {"_count": 1}}, "altogether": {"_count": 1, "more": {"_count": 1}}, "complexity": {"_count": 1, "of": {"_count": 1}}, "animal": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "emphasis": {"_count": 1, "she": {"_count": 1}}, "scarf": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "essence": {"_count": 1, "of": {"_count": 1}}, "exasperated": {"_count": 1, "looks": {"_count": 1}}, "murtlap": {"_count": 1, "essence": {"_count": 1}}, "slight": {"_count": 4, "on": {"_count": 1}, "squeaking": {"_count": 1}, "breeze": {"_count": 1}, "clearing": {"_count": 1}}, "fools": {"_count": 1, "start": {"_count": 1}}, "wide": {"_count": 10, "drive": {"_count": 1}, "universe": {"_count": 1}, "pallid": {"_count": 1}, "world": {"_count": 1}, "backseat": {"_count": 1}, "blue": {"_count": 1}, "dark": {"_count": 1}, "proportions": {"_count": 1}, "starry": {"_count": 1}, "basin": {"_count": 1}}, "accumulated": {"_count": 1, "filth": {"_count": 1}}, "veil": {"_count": 14, "to": {"_count": 1}, "": {"_count": 4}, "continued": {"_count": 1}, "swayed": {"_count": 1}, "on": {"_count": 1}, "too": {"_count": 2}, "which": {"_count": 1}, "didnt": {"_count": 1}, "Dumbledore": {"_count": 1}, "and": {"_count": 1}}, "barman": {"_count": 11, "": {"_count": 3}, "was": {"_count": 1}, "who": {"_count": 1}, "drew": {"_count": 1}, "easy": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "down": {"_count": 1}, "looked": {"_count": 1}}, "rusty": {"_count": 3, "top": {"_count": 1}, "railings": {"_count": 1}, "nail": {"_count": 1}}, "incoming": {"_count": 1, "rush": {"_count": 1}}, "chatter": {"_count": 3, "died": {"_count": 1}, "and": {"_count": 2}}, "blond": {"_count": 3, "Hufflepuff": {"_count": 1}, "boy": {"_count": 1}, "Death": {"_count": 1}}, "instrument": {"_count": 4, "in": {"_count": 1}, "was": {"_count": 1}, "another": {"_count": 1}, "upon": {"_count": 1}}, "catch": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "rebellion": {"_count": 1, "gave": {"_count": 1}}, "imminent": {"_count": 2, "prospect": {"_count": 1}, "arrival": {"_count": 1}}, "Sloth": {"_count": 2, "Grip": {"_count": 2}}, "sunlit": {"_count": 6, "common": {"_count": 2}, "grounds": {"_count": 2}, "street": {"_count": 1}, "orchard": {"_count": 1}}, "addition": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "lists": {"_count": 2, "of": {"_count": 2}}, "regular": {"_count": 4, "reminders": {"_count": 1}, "sounds": {"_count": 1}, "application": {"_count": 1}, "jolt": {"_count": 1}}, "offers": {"_count": 1, "to": {"_count": 1}}, "lostandfound": {"_count": 1, "notices": {"_count": 1}}, "Gobstones": {"_count": 1, "Club": {"_count": 1}}, "curlyhaired": {"_count": 1, "friend": {"_count": 1}}, "blustery": {"_count": 1, "overcast": {"_count": 1}}, "Strengthening": {"_count": 1, "Solution": {"_count": 1}}, "syllabus": {"_count": 1, "": {"_count": 1}}, "highbacked": {"_count": 1, "teachers": {"_count": 1}}, "Mundane": {"_count": 1, "to": {"_count": 1}}, "threat": {"_count": 1, "of": {"_count": 1}}, "chew": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "vomiting": {"_count": 1, "would": {"_count": 1}}, "demonstration": {"_count": 1, "was": {"_count": 1}}, "vomit": {"_count": 1, "at": {"_count": 1}}, "foul": {"_count": 3, "things": {"_count": 1}, "kittens": {"_count": 1}, "smelling": {"_count": 1}}, "eager": {"_count": 1, "crowd": {"_count": 1}}, "hearthrug": {"_count": 6, "": {"_count": 4}, "and": {"_count": 1}, "trying": {"_count": 1}}, "messenger": {"_count": 1, "and": {"_count": 1}}, "bullfrog": {"_count": 2, "that": {"_count": 1}, "so": {"_count": 1}}, "Silencing": {"_count": 1, "Charm": {"_count": 1}}, "groups": {"_count": 1, "of": {"_count": 1}}, "respite": {"_count": 1, "was": {"_count": 1}}, "Fever": {"_count": 1, "Fudge": {"_count": 1}}, "hammering": {"_count": 2, "of": {"_count": 2}}, "All": {"_count": 1, "right": {"_count": 1}}, "deepening": {"_count": 1, "mud": {"_count": 1}}, "Impervius": {"_count": 1, "Charm": {"_count": 1}}, "fastening": {"_count": 1, "of": {"_count": 1}}, "ongoing": {"_count": 1, "battles": {"_count": 1}}, "inflaming": {"_count": 2, "of": {"_count": 2}}, "braine": {"_count": 2, "and": {"_count": 2}}, "threadbare": {"_count": 3, "surface": {"_count": 1}, "carpets": {"_count": 1}, "carpet": {"_count": 1}}, "thin": {"_count": 14, "white": {"_count": 1}, "curtain": {"_count": 1}, "ribbons": {"_count": 1}, "mist": {"_count": 1}, "slanting": {"_count": 2}, "blankets": {"_count": 1}, "air": {"_count": 1}, "dark": {"_count": 1}, "black": {"_count": 1}, "cut": {"_count": 1}, "golden": {"_count": 1}, "sallow": {"_count": 1}, "face": {"_count": 1}}, "Come": {"_count": 1, "and": {"_count": 1}}, "Room": {"_count": 59, "of": {"_count": 59}}, "seekers": {"_count": 1, "needs": {"_count": 1}}, "flooded": {"_count": 1, "vegetable": {"_count": 1}}, "stormswept": {"_count": 1, "grounds": {"_count": 1}}, "Barmy": {"_count": 3, "being": {"_count": 1}, "but": {"_count": 1}, "teaching": {"_count": 1}}, "twentyfive": {"_count": 1, "people": {"_count": 1}}, "Barmys": {"_count": 1, "foolish": {"_count": 1}}, "wouldbe": {"_count": 2, "ballet": {"_count": 1}, "victim": {"_count": 1}}, "mansize": {"_count": 1, "vase": {"_count": 1}}, "fake": {"_count": 18, "Moodys": {"_count": 1}, "snow": {"_count": 1}, "Horcrux": {"_count": 5}, "locket": {"_count": 2}, "bait": {"_count": 1}, "Harrys": {"_count": 1}, "Potters": {"_count": 1}, "while": {"_count": 1}, "sword": {"_count": 2}, "": {"_count": 1}, "Galleons": {"_count": 1}, "Galleon": {"_count": 1}}, "spines": {"_count": 1, "of": {"_count": 1}}, "Jinxed": {"_count": 2, "from": {"_count": 1}, "and": {"_count": 1}}, "Sneakoscopes": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "AntiUmbridge": {"_count": 1, "League": {"_count": 1}}, "D": {"_count": 36, "": {"_count": 36}}, "timing": {"_count": 1, "of": {"_count": 1}}, "numerals": {"_count": 1, "around": {"_count": 1}}, "coins": {"_count": 1, "": {"_count": 1}}, "coin": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "interest": {"_count": 1, "and": {"_count": 1}}, "forthcoming": {"_count": 3, "game": {"_count": 1}, "match": {"_count": 1}, "lessons": {"_count": 1}}, "competing": {"_count": 1, "teams": {"_count": 1}}, "tactics": {"_count": 1, "of": {"_count": 1}}, "temperature": {"_count": 1, "in": {"_count": 1}}, "crownshaped": {"_count": 2, "badges": {"_count": 1}, "badge": {"_count": 1}}, "drawback": {"_count": 1, "of": {"_count": 1}}, "prematch": {"_count": 1, "talk": {"_count": 1}}, "banked": {"_count": 1, "benches": {"_count": 1}}, "umpire": {"_count": 1, "Madam": {"_count": 1}}, "singing": {"_count": 3, "": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 1}}, "progress": {"_count": 1, "of": {"_count": 1}}, "whereabouts": {"_count": 4, "of": {"_count": 3}, "and": {"_count": 1}}, "chorus": {"_count": 2, "now": {"_count": 1}, "": {"_count": 1}}, "pugfaced": {"_count": 1, "Pansy": {"_count": 1}}, "jumpedup": {"_count": 1, "little": {"_count": 1}}, "stink": {"_count": 1, "but": {"_count": 1}}, "bellowing": {"_count": 1, "of": {"_count": 1}}, "Snitchs": {"_count": 2, "silver": {"_count": 1}, "inscription": {"_count": 1}}, "horribly": {"_count": 2, "sickly": {"_count": 1}, "familiar": {"_count": 1}}, "pane": {"_count": 1, "": {"_count": 1}}, "thickening": {"_count": 2, "snow": {"_count": 2}}, "steak": {"_count": 6, "and": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 1}, "onto": {"_count": 1}, "a": {"_count": 1}, "slid": {"_count": 1}}, "stingin": {"_count": 1, "yeh": {"_count": 1}}, "bruising": {"_count": 1, "": {"_count": 1}}, "meat": {"_count": 3, "back": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "berk": {"_count": 1, "tailin": {"_count": 1}}, "Polish": {"_count": 1, "border": {"_count": 1}}, "bigger": {"_count": 1, "ones": {"_count": 1}}, "mornin": {"_count": 1, "they": {"_count": 1}}, "snorin": {"_count": 1, "was": {"_count": 1}}, "Gurg": {"_count": 9, "gifts": {"_count": 1}, "means": {"_count": 1}, "": {"_count": 1}, "an": {"_count": 2}, "of": {"_count": 2}, "to": {"_count": 1}, "looked": {"_count": 1}}, "what": {"_count": 3, "gifts": {"_count": 1}, "": {"_count": 2}}, "laziest": {"_count": 1, "": {"_count": 1}}, "valley": {"_count": 7, "": {"_count": 2}, "set": {"_count": 1}, "below": {"_count": 1}, "belongs": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}}, "cooler": {"_count": 2, "side": {"_count": 2}}, "followin": {"_count": 1, "mornin": {"_count": 1}}, "killin": {"_count": 1, "of": {"_count": 1}}, "women": {"_count": 2, "fight": {"_count": 1}, "and": {"_count": 1}}, "fastes": {"_count": 1, "spellwork": {"_count": 1}}, "gully": {"_count": 2, "jus": {"_count": 1}, "keepin": {"_count": 1}}, "caves": {"_count": 4, "by": {"_count": 1}, "Macnair": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 1}}, "French": {"_count": 1, "in": {"_count": 1}}, "wounded": {"_count": 1, "": {"_count": 1}}, "cushion": {"_count": 2, "in": {"_count": 1}, "pile": {"_count": 1}}, "haversack": {"_count": 2, "against": {"_count": 1}, "": {"_count": 1}}, "abandoned": {"_count": 4, "traveling": {"_count": 1}, "chintz": {"_count": 1}, "boys": {"_count": 1}, "home": {"_count": 1}}, "mug": {"_count": 2, "from": {"_count": 1}, "back": {"_count": 1}}, "cabins": {"_count": 1, "": {"_count": 1}}, "blackandpurple": {"_count": 1, "bruising": {"_count": 1}}, "Obliteration": {"_count": 1, "Charm": {"_count": 1}}, "gleeful": {"_count": 3, "shouts": {"_count": 1}, "face": {"_count": 1}, "voices": {"_count": 1}}, "appalled": {"_count": 1, "look": {"_count": 1}}, "aisle": {"_count": 13, "between": {"_count": 5}, "blowing": {"_count": 1}, "": {"_count": 2}, "smiling": {"_count": 1}, "Fleur": {"_count": 1}, "next": {"_count": 1}, "shot": {"_count": 1}, "toward": {"_count": 1}}, "bruises": {"_count": 1, "that": {"_count": 1}}, "wounds": {"_count": 3, "it": {"_count": 1}, "seemed": {"_count": 1}, "in": {"_count": 1}}, "dragonish": {"_count": 1, "face": {"_count": 1}}, "horse": {"_count": 8, "standing": {"_count": 1}, "eating": {"_count": 1}, "crouched": {"_count": 1}, "to": {"_count": 1}, "touched": {"_count": 1}, "": {"_count": 2}, "has": {"_count": 1}}, "cow": {"_count": 1, "carcass": {"_count": 1}}, "thestrals": {"_count": 7, "Longbottom": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "but": {"_count": 1}, "sides": {"_count": 1}, "now": {"_count": 1}}, "carcass": {"_count": 1, "down": {"_count": 1}}, "channels": {"_count": 2, "they": {"_count": 1}, "to": {"_count": 1}}, "muffling": {"_count": 1, "snow": {"_count": 1}}, "untouched": {"_count": 1, "snow": {"_count": 1}}, "decoration": {"_count": 1, "of": {"_count": 1}}, "bitter": {"_count": 2, "cold": {"_count": 1}, "wind": {"_count": 1}}, "holiday": {"_count": 2, "spirit": {"_count": 1}, "with": {"_count": 1}}, "constant": {"_count": 3, "watch": {"_count": 1}, "ebb": {"_count": 1}, "danger": {"_count": 1}}, "retort": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "jinx": {"_count": 6, "": {"_count": 1}, "further": {"_count": 1}, "was": {"_count": 1}, "just": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "freckles": {"_count": 1, "on": {"_count": 1}}, "loos": {"_count": 1, "all": {"_count": 1}}, "emotional": {"_count": 1, "range": {"_count": 1}}, "novel": {"_count": 1, "to": {"_count": 1}}, "redhot": {"_count": 1, "embers": {"_count": 1}}, "griffin": {"_count": 2, "knocker": {"_count": 2}}, "snakes": {"_count": 11, "point": {"_count": 1}, "own": {"_count": 1}, "head": {"_count": 1}, "eyes": {"_count": 1}, "mind": {"_count": 1}, "snout": {"_count": 1}, "emblazoned": {"_count": 1}, "not": {"_count": 1}, "tail": {"_count": 1}, "fangs": {"_count": 1}, "body": {"_count": 1}}, "courtesy": {"_count": 2, "of": {"_count": 2}}, "magnificent": {"_count": 1, "sleeping": {"_count": 1}}, "comfortable": {"_count": 3, "chintz": {"_count": 1}, "winged": {"_count": 1}, "castle": {"_count": 1}}, "fragile": {"_count": 2, "silver": {"_count": 1}, "pages": {"_count": 1}}, "silverringletted": {"_count": 1, "witch": {"_count": 1}}, "cleverlooking": {"_count": 1, "wizard": {"_count": 1}}, "Network": {"_count": 1, "is": {"_count": 1}}, "blackened": {"_count": 3, "kettle": {"_count": 1}, "window": {"_count": 1}, "fingers": {"_count": 1}}, "infinitesimal": {"_count": 2, "pause": {"_count": 1}, "gap": {"_count": 1}}, "gloomy": {"_count": 2, "basement": {"_count": 1}, "hallway": {"_count": 1}}, "dumb": {"_count": 1, "Order": {"_count": 1}}, "inescapable": {"_count": 1, "business": {"_count": 1}}, "candle": {"_count": 3, "wick": {"_count": 1}, "flickering": {"_count": 1}, "stubs": {"_count": 1}}, "summons": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}}, "merrier": {"_count": 1, "": {"_count": 1}}, "bedstead": {"_count": 1, "keeping": {"_count": 1}}, "trip": {"_count": 2, "to": {"_count": 1}, "which": {"_count": 1}}, "bowler": {"_count": 3, "hat": {"_count": 3}}, "underground": {"_count": 7, "": {"_count": 1}, "train": {"_count": 1}, "cavern": {"_count": 1}, "room": {"_count": 1}, "lake": {"_count": 2}, "shore": {"_count": 1}}, "buttons": {"_count": 2, "of": {"_count": 1}, "on": {"_count": 1}}, "concealed": {"_count": 8, "eye": {"_count": 1}, "staircase": {"_count": 2}, "entrance": {"_count": 3}, "printing": {"_count": 1}, "hole": {"_count": 1}}, "wintry": {"_count": 2, "air": {"_count": 1}, "wind": {"_count": 1}}, "tilted": {"_count": 1, "hat": {"_count": 1}}, "dummy": {"_count": 3, "to": {"_count": 1}, "gave": {"_count": 1}, "in": {"_count": 1}}, "elbows": {"_count": 3, "stepped": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "jostling": {"_count": 2, "crowd": {"_count": 1}, "students": {"_count": 1}}, "patients": {"_count": 1, "were": {"_count": 1}}, "emblem": {"_count": 1, "embroidered": {"_count": 1}}, "warlock": {"_count": 1, "in": {"_count": 1}}, "blonde": {"_count": 2, "witch": {"_count": 2}}, "CreatureInduced": {"_count": 1, "Injuries": {"_count": 1}}, "solitary": {"_count": 1, "ray": {"_count": 1}}, "bandages": {"_count": 1, "off": {"_count": 1}}, "Healers": {"_count": 2, "you": {"_count": 1}, "what": {"_count": 1}}, "condition": {"_count": 2, "quite": {"_count": 1}, "on": {"_count": 1}}, "dressings": {"_count": 1, "": {"_count": 1}}, "strings": {"_count": 5, "still": {"_count": 1}, "through": {"_count": 1}, "to": {"_count": 1}, "tight": {"_count": 1}, "": {"_count": 1}}, "snakelike": {"_count": 4, "face": {"_count": 3}, "language": {"_count": 1}}, "taint": {"_count": 1, "of": {"_count": 1}}, "unkempt": {"_count": 1, "patch": {"_count": 1}}, "choice": {"_count": 4, "we": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "grownups": {"_count": 1, "sort": {"_count": 1}}, "mistletoe": {"_count": 4, "": {"_count": 2}, "bunches": {"_count": 1}, "she": {"_count": 1}}, "strawstrewn": {"_count": 1, "floor": {"_count": 1}}, "impact": {"_count": 1, "of": {"_count": 1}}, "runup": {"_count": 1, "to": {"_count": 1}}, "Broom": {"_count": 1, "Compass": {"_count": 1}}, "counterjinxes": {"_count": 2, "and": {"_count": 2}}, "is": {"_count": 1, "and": {"_count": 1}}, "ts": {"_count": 1, "then": {"_count": 1}}, "neatly": {"_count": 1, "wrapped": {"_count": 1}}, "boiler": {"_count": 1, "in": {"_count": 1}}, "foots": {"_count": 1, "space": {"_count": 1}}, "silverframed": {"_count": 1, "family": {"_count": 1}}, "fore": {"_count": 1, "of": {"_count": 1}}, "depression": {"_count": 1, "in": {"_count": 1}}, "rags": {"_count": 1, "and": {"_count": 1}}, "airing": {"_count": 1, "cupboard": {"_count": 1}}, "backseat": {"_count": 3, "between": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 1}}, "roads": {"_count": 1, "": {"_count": 1}}, "bandaging": {"_count": 2, "under": {"_count": 1}, "": {"_count": 1}}, "Trainee": {"_count": 1, "Healer": {"_count": 1}}, "tearoom": {"_count": 1, "is": {"_count": 1}}, "Welcome": {"_count": 1, "Witchs": {"_count": 1}}, "Healer": {"_count": 10, "pursued": {"_count": 1}, "with": {"_count": 1}, "taking": {"_count": 1}, "was": {"_count": 1}, "Gilderoy": {"_count": 1}, "brightly": {"_count": 1}, "bustling": {"_count": 1}, "said": {"_count": 1}, "told": {"_count": 1}, "and": {"_count": 1}}, "liver": {"_count": 1, "of": {"_count": 1}}, "unsightly": {"_count": 1, "blemishes": {"_count": 1}}, "Janus": {"_count": 1, "Thickey": {"_count": 1}}, "signed": {"_count": 1, "pictures": {"_count": 1}}, "furryfaced": {"_count": 1, "woman": {"_count": 1}}, "mumbling": {"_count": 1, "man": {"_count": 1}}, "calendar": {"_count": 1, "to": {"_count": 1}}, "original": {"_count": 10, "Order": {"_count": 1}, "Gryffindor": {"_count": 1}, "versions": {"_count": 1}, "searcher": {"_count": 1}, "letter": {"_count": 2}, "owners": {"_count": 1}, "purchaser": {"_count": 1}, "impossible": {"_count": 1}, "plan": {"_count": 1}}, "bin": {"_count": 4, "she": {"_count": 1}, "where": {"_count": 1}, "behind": {"_count": 1}, "without": {"_count": 1}}, "sullens": {"_count": 1, "in": {"_count": 1}}, "tyranny": {"_count": 1, "of": {"_count": 1}}, "advice": {"_count": 1, "of": {"_count": 1}}, "unexpected": {"_count": 2, "entrance": {"_count": 1}, "warmth": {"_count": 1}}, "nightmares": {"_count": 1, "": {"_count": 1}}, "quicker": {"_count": 1, "we": {"_count": 1}}, "glance": {"_count": 1, "she": {"_count": 1}}, "Birmingham": {"_count": 1, "motorway": {"_count": 1}}, "verges": {"_count": 1, "": {"_count": 1}}, "relieved": {"_count": 1, "murmurings": {"_count": 1}}, "severed": {"_count": 1, "boars": {"_count": 1}}, "passengers": {"_count": 1, "staring": {"_count": 1}}, "slippery": {"_count": 3, "drive": {"_count": 1}, "path": {"_count": 1}, "pavement": {"_count": 1}}, "elbow": {"_count": 5, "and": {"_count": 4}, "which": {"_count": 1}}, "shortcomings": {"_count": 1, "that": {"_count": 1}}, "minds": {"_count": 2, "of": {"_count": 2}}, "lie": {"_count": 3, "and": {"_count": 1}, "did": {"_count": 1}, "killed": {"_count": 1}}, "bodily": {"_count": 1, "and": {"_count": 1}}, "greasy": {"_count": 1, "roots": {"_count": 1}}, "bulldog": {"_count": 1, "was": {"_count": 1}}, "plain": {"_count": 5, "black": {"_count": 5}}, "courtrooms": {"_count": 4, "in": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "was": {"_count": 1}}, "aisles": {"_count": 1, "menacingly": {"_count": 1}}, "necks": {"_count": 1, "of": {"_count": 1}}, "pinkfeathered": {"_count": 1, "hat": {"_count": 1}}, "charmed": {"_count": 1, "object": {"_count": 1}}, "planner": {"_count": 1, "and": {"_count": 1}}, "brutal": {"_count": 1, "murders": {"_count": 1}}, "torture": {"_count": 1, "and": {"_count": 1}}, "murderer": {"_count": 2, "Sirius": {"_count": 1}, "could": {"_count": 1}}, "criminals": {"_count": 1, "and": {"_count": 1}}, "breakout": {"_count": 3, "on": {"_count": 1}, "from": {"_count": 1}, "of": {"_count": 1}}, "convalescent": {"_count": 1, "Mr": {"_count": 1}}, "bloke": {"_count": 7, "is": {"_count": 1}, "in": {"_count": 1}, "who": {"_count": 1}, "from": {"_count": 2}, "holding": {"_count": 1}, "he": {"_count": 1}}, "ten": {"_count": 4, "escaped": {"_count": 2}, "said": {"_count": 1}, "pictures": {"_count": 1}}, "freakish": {"_count": 1, "death": {"_count": 1}}, "newspapers": {"_count": 4, "": {"_count": 1}, "said": {"_count": 1}, "throwing": {"_count": 1}, "and": {"_count": 1}}, "convicts": {"_count": 2, "had": {"_count": 1}, "pictured": {"_count": 1}}, "unwilling": {"_count": 1, "objects": {"_count": 1}}, "speakers": {"_count": 1, "were": {"_count": 1}}, "Prophets": {"_count": 2, "version": {"_count": 1}, "ignoring": {"_count": 1}}, "terms": {"_count": 4, "of": {"_count": 4}}, "catastrophe": {"_count": 1, "that": {"_count": 1}}, "fourteenth": {"_count": 3, "he": {"_count": 1}, "He": {"_count": 1}, "of": {"_count": 1}}, "pavements": {"_count": 1, "": {"_count": 1}}, "escaped": {"_count": 3, "Death": {"_count": 3}}, "steamy": {"_count": 1, "window": {"_count": 1}}, "paintwork": {"_count": 2, "and": {"_count": 1}, "below": {"_count": 1}}, "slurping": {"_count": 1, "noises": {"_count": 1}}, "napkin": {"_count": 1, "": {"_count": 1}}, "pouring": {"_count": 1, "rain": {"_count": 1}}, "rainwashed": {"_count": 2, "street": {"_count": 1}, "window": {"_count": 1}}, "intervening": {"_count": 4, "time": {"_count": 1}, "school": {"_count": 1}, "years": {"_count": 1}, "space": {"_count": 1}}, "crammed": {"_count": 1, "tables": {"_count": 1}}, "torrential": {"_count": 1, "rain": {"_count": 1}}, "unlikeliest": {"_count": 1, "pair": {"_count": 1}}, "deals": {"_count": 1, "off": {"_count": 1}}, "crocodile": {"_count": 1, "bag": {"_count": 1}}, "rapturous": {"_count": 1, "expression": {"_count": 1}}, "undiscovered": {"_count": 1, "Death": {"_count": 1}}, "taste": {"_count": 1, "of": {"_count": 1}}, "authorities": {"_count": 1, "that": {"_count": 1}}, "patient": {"_count": 1, "air": {"_count": 1}}, "faith": {"_count": 1, "she": {"_count": 1}}, "bagpipes": {"_count": 1, "": {"_count": 1}}, "windowless": {"_count": 1, "passage": {"_count": 1}}, "delivery": {"_count": 2, "owl": {"_count": 2}}, "recipients": {"_count": 1, "name": {"_count": 1}}, "salt": {"_count": 2, "and": {"_count": 1}, "cellar": {"_count": 1}}, "feathery": {"_count": 2, "mass": {"_count": 1}, "head": {"_count": 1}}, "letteropening": {"_count": 1, "with": {"_count": 1}}, "cubicles": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "startled": {"_count": 2, "class": {"_count": 1}, "stares": {"_count": 1}}, "Crumple": {"_count": 1, "Horned": {"_count": 1}}, "proceedings": {"_count": 5, "occasionally": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}}, "poster": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "umpteenth": {"_count": 2, "time": {"_count": 2}}, "department": {"_count": 2, "after": {"_count": 1}, "to": {"_count": 1}}, "off": {"_count": 2, "chance": {"_count": 1}, "": {"_count": 1}}, "secure": {"_count": 1, "place": {"_count": 1}}, "jars": {"_count": 1, "behind": {"_count": 1}}, "crying": {"_count": 1, "little": {"_count": 1}}, "seams": {"_count": 1, "": {"_count": 1}}, "enjoyment": {"_count": 1, "stretching": {"_count": 1}}, "palomino": {"_count": 2, "body": {"_count": 1}, "centaur": {"_count": 1}}, "sacking": {"_count": 1, "of": {"_count": 1}}, "honking": {"_count": 1, "ones": {"_count": 1}}, "groundfloor": {"_count": 1, "corridor": {"_count": 1}}, "earthy": {"_count": 5, "floor": {"_count": 2}, "forest": {"_count": 1}, "passage": {"_count": 1}, "twig": {"_count": 1}}, "servants": {"_count": 1, "or": {"_count": 1}}, "leafy": {"_count": 2, "canopy": {"_count": 1}, "ground": {"_count": 1}}, "mysteries": {"_count": 1, "of": {"_count": 1}}, "mossy": {"_count": 1, "floor": {"_count": 1}}, "scurryings": {"_count": 1, "of": {"_count": 1}}, "limitations": {"_count": 1, "of": {"_count": 1}}, "self": {"_count": 2, "flattering": {"_count": 1}, "hidden": {"_count": 1}}, "wisdom": {"_count": 3, "of": {"_count": 2}, "he": {"_count": 1}}, "indications": {"_count": 1, "have": {"_count": 1}}, "observation": {"_count": 1, "of": {"_count": 1}}, "pungent": {"_count": 1, "fumes": {"_count": 1}}, "dung": {"_count": 2, "all": {"_count": 1}, "heap": {"_count": 1}}, "O": {"_count": 5, "": {"_count": 5}}, "knee": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "thrashing": {"_count": 2, "elf": {"_count": 2}}, "bathrooms": {"_count": 3, "Miss": {"_count": 1}, "dropped": {"_count": 1}, "or": {"_count": 1}}, "freckled": {"_count": 1, "bespectacled": {"_count": 1}}, "spots": {"_count": 2, "now": {"_count": 1}, "worse": {"_count": 1}}, "corpulent": {"_count": 2, "rednosed": {"_count": 2}}, "decree": {"_count": 1, "came": {"_count": 1}}, "pulled": {"_count": 1, "up": {"_count": 1}}, "wrecked": {"_count": 1, "office": {"_count": 1}}, "retelling": {"_count": 1, "Harry": {"_count": 1}}, "Inquisitorial": {"_count": 7, "Squad": {"_count": 7}}, "amounts": {"_count": 1, "in": {"_count": 1}}, "emeraldfilled": {"_count": 1, "one": {"_count": 1}}, "hourglasses": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "expulsion": {"_count": 1, "of": {"_count": 1}}, "distressing": {"_count": 1, "events": {"_count": 1}}, "criminal": {"_count": 1, "Black": {"_count": 1}}, "larger": {"_count": 2, "Catherine": {"_count": 1}, "of": {"_count": 1}}, "rockets": {"_count": 1, "": {"_count": 1}}, "firecrackers": {"_count": 1, "the": {"_count": 1}}, "headmistress": {"_count": 2, "and": {"_count": 1}, "ter": {"_count": 1}}, "summonses": {"_count": 1, "of": {"_count": 1}}, "sparklers": {"_count": 1, "myself": {"_count": 1}}, "Deflagration": {"_count": 1, "Deluxe": {"_count": 1}}, "appreciative": {"_count": 1, "whoops": {"_count": 1}}, "expense": {"_count": 1, "of": {"_count": 1}}, "bent": {"_count": 1, "heads": {"_count": 1}}, "blackhaired": {"_count": 1, "boys": {"_count": 1}}, "L": {"_count": 1, "": {"_count": 1}}, "snout": {"_count": 1, "shape": {"_count": 1}}, "beech": {"_count": 4, "and": {"_count": 1}, "tree": {"_count": 3}}, "foursome": {"_count": 1, "under": {"_count": 1}}, "froth": {"_count": 1, "was": {"_count": 1}}, "excuse": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "packaging": {"_count": 1, "containing": {"_count": 1}}, "Summer": {"_count": 1, "term": {"_count": 1}}, "career": {"_count": 1, "information": {"_count": 1}}, "cultivated": {"_count": 1, "fungus": {"_count": 1}}, "Smarmys": {"_count": 1, "corridor": {"_count": 1}}, "teensiest": {"_count": 1, "interruption": {"_count": 1}}, "temperament": {"_count": 1, "for": {"_count": 1}}, "folder": {"_count": 1, "without": {"_count": 1}}, "records": {"_count": 2, "of": {"_count": 2}}, "confiscated": {"_count": 1, "broomsticks": {"_count": 1}}, "logs": {"_count": 1, "stacked": {"_count": 1}}, "network": {"_count": 1, "of": {"_count": 1}}, "spinning": {"_count": 2, "stopped": {"_count": 2}}, "diversion": {"_count": 1, "George": {"_count": 1}}, "Im": {"_count": 1, "coming": {"_count": 1}}, "whips": {"_count": 1, "waiting": {"_count": 1}}, "poltergeist": {"_count": 3, "bobbing": {"_count": 1}, "out": {"_count": 1}, "was": {"_count": 1}}, "glorious": {"_count": 3, "sunset": {"_count": 1}, "spell": {"_count": 1}, "young": {"_count": 1}}, "immediate": {"_count": 2, "aftermath": {"_count": 1}, "prospect": {"_count": 1}}, "swamp": {"_count": 2, "that": {"_count": 1}, "in": {"_count": 1}}, "rings": {"_count": 2, "off": {"_count": 1}, "gone": {"_count": 1}}, "users": {"_count": 1, "of": {"_count": 1}}, "Snackboxes": {"_count": 1, "could": {"_count": 1}}, "teacups": {"_count": 1, "they": {"_count": 1}}, "rent": {"_count": 1, "on": {"_count": 1}}, "grace": {"_count": 1, "to": {"_count": 1}}, "occasions": {"_count": 1, "it": {"_count": 1}}, "eagle": {"_count": 5, "flapping": {"_count": 1}, "They": {"_count": 1}, "opened": {"_count": 1}, "door": {"_count": 2}}, "pitches": {"_count": 1, "he": {"_count": 1}}, "stretch": {"_count": 4, "of": {"_count": 4}}, "outermost": {"_count": 1, "edge": {"_count": 1}}, "herd": {"_count": 2, "onto": {"_count": 1}, "of": {"_count": 1}}, "lair": {"_count": 2, "of": {"_count": 2}}, "mound": {"_count": 5, "so": {"_count": 1}, "with": {"_count": 2}, "of": {"_count": 1}, "would": {"_count": 1}}, "curved": {"_count": 1, "back": {"_count": 1}}, "runty": {"_count": 1, "side": {"_count": 1}}, "rough": {"_count": 7, "seams": {"_count": 1}, "voice": {"_count": 1}, "wet": {"_count": 1}, "rock": {"_count": 1}, "cavern": {"_count": 1}, "position": {"_count": 1}, "stone": {"_count": 1}}, "skins": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "bough": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "features": {"_count": 2, "had": {"_count": 1}, "he": {"_count": 1}}, "simple": {"_count": 5, "pleasure": {"_count": 1}, "truth": {"_count": 1}, "fact": {"_count": 1}, "expedient": {"_count": 1}, "word": {"_count": 1}}, "quiver": {"_count": 1, "over": {"_count": 1}}, "dappled": {"_count": 1, "green": {"_count": 1}}, "blackbodied": {"_count": 1, "and": {"_count": 1}}, "\u2018our": {"_count": 1, "forest": {"_count": 1}}, "traitor": {"_count": 4, "F": {"_count": 1}, "Firenze": {"_count": 2}, "had": {"_count": 1}}, "slaughter": {"_count": 1, "of": {"_count": 1}}, "friendship": {"_count": 1, "of": {"_count": 1}}, "fores": {"_count": 1, "by": {"_count": 1}}, "definite": {"_count": 1, "sounds": {"_count": 1}}, "lintel": {"_count": 1, "but": {"_count": 1}}, "dozenth": {"_count": 1, "time": {"_count": 1}}, "cloudless": {"_count": 2, "sky": {"_count": 2}}, "smoothly": {"_count": 2, "sparkling": {"_count": 1}, "arrogant": {"_count": 1}}, "satingreen": {"_count": 1, "lawns": {"_count": 1}}, "afternoons": {"_count": 2, "": {"_count": 1}, "double": {"_count": 1}}, "headmistresss": {"_count": 1, "new": {"_count": 1}}, "nostrils": {"_count": 1, "of": {"_count": 1}}, "definition": {"_count": 2, "of": {"_count": 2}}, "examiners": {"_count": 3, "": {"_count": 2}, "looked": {"_count": 1}}, "stafftable": {"_count": 1, "end": {"_count": 1}}, "countercharm": {"_count": 1, "for": {"_count": 1}}, "wine": {"_count": 3, "glass": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}}, "incantations": {"_count": 1, "for": {"_count": 1}}, "written": {"_count": 2, "questions": {"_count": 1}, "exam": {"_count": 1}}, "practical": {"_count": 1, "examination": {"_count": 1}}, "toughest": {"_count": 2, "subject": {"_count": 1}, "most": {"_count": 1}}, "knarl": {"_count": 1, "hidden": {"_count": 1}}, "stubbornly": {"_count": 1, "blank": {"_count": 1}}, "examiner": {"_count": 3, "in": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 1}}, "scribbling": {"_count": 1, "of": {"_count": 1}}, "constellation": {"_count": 1, "Orion": {"_count": 1}}, "parapet": {"_count": 3, "where": {"_count": 1}, "toward": {"_count": 1}, "and": {"_count": 1}}, "walk": {"_count": 3, "of": {"_count": 1}, "up": {"_count": 1}, "through": {"_count": 1}}, "squattest": {"_count": 1, "among": {"_count": 1}}, "Formation": {"_count": 1, "of": {"_count": 1}}, "warlocks": {"_count": 1, "of": {"_count": 1}}, "breach": {"_count": 1, "between": {"_count": 1}}, "glowing": {"_count": 3, "red": {"_count": 1}, "yellow": {"_count": 1}, "gold": {"_count": 1}}, "blazing": {"_count": 3, "white": {"_count": 1}, "green": {"_count": 1}, "flames": {"_count": 1}}, "confederation": {"_count": 1, "had": {"_count": 1}}, "sand": {"_count": 1, "trickled": {"_count": 1}}, "cathedralsized": {"_count": 1, "room": {"_count": 1}}, "Occlumency": {"_count": 1, "was": {"_count": 1}}, "smashing": {"_count": 1, "up": {"_count": 1}}, "readiness": {"_count": 1, "with": {"_count": 1}}, "wretched": {"_count": 2, "Inquisitorial": {"_count": 1}, "man": {"_count": 1}}, "Latin": {"_count": 1, "mumblings": {"_count": 1}}, "swiveling": {"_count": 1, "staircase": {"_count": 1}}, "Garroting": {"_count": 1, "Gas": {"_count": 1}}, "late": {"_count": 4, "afternoon": {"_count": 4}}, "pot": {"_count": 7, "of": {"_count": 1}, "again": {"_count": 2}, "flushed": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 1}}, "whirling": {"_count": 3, "ash": {"_count": 1}, "candelabra": {"_count": 1}, "night": {"_count": 1}}, "molten": {"_count": 1, "wave": {"_count": 1}}, "eyepieces": {"_count": 1, "of": {"_count": 1}}, "fidgetings": {"_count": 1, "and": {"_count": 1}}, "sixthyear": {"_count": 1, "girl": {"_count": 1}}, "whwhole": {"_count": 1, "school": {"_count": 1}}, "squad": {"_count": 1, "should": {"_count": 1}}, "balmy": {"_count": 1, "evening": {"_count": 1}}, "throat": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "kill": {"_count": 1, "": {"_count": 1}}, "advancing": {"_count": 3, "centaur": {"_count": 1}, "crowd": {"_count": 1}, "goblins": {"_count": 1}}, "laws": {"_count": 1, "laid": {"_count": 1}}, "hardfaced": {"_count": 2, "gray": {"_count": 2}}, "plunging": {"_count": 1, "manycolored": {"_count": 1}}, "trampling": {"_count": 1, "of": {"_count": 1}}, "arrogance": {"_count": 1, "of": {"_count": 1}}, "monstrous": {"_count": 4, "form": {"_count": 1}, "transformation": {"_count": 1}, "truth": {"_count": 1}, "Aragog": {"_count": 1}}, "halflight": {"_count": 1, "his": {"_count": 1}}, "arrow": {"_count": 1, "shafts": {"_count": 1}}, "galloping": {"_count": 1, "centaurs": {"_count": 1}}, "blundering": {"_count": 1, "giant": {"_count": 1}}, "Kacky": {"_count": 1, "Snorgle": {"_count": 1}}, "whispered": {"_count": 1, "conversation": {"_count": 1}}, "thestral": {"_count": 2, "Harry": {"_count": 1}, "with": {"_count": 1}}, "mane": {"_count": 1, "of": {"_count": 1}}, "wings": {"_count": 2, "on": {"_count": 1}, "opened": {"_count": 1}}, "rushing": {"_count": 3, "wind": {"_count": 1}, "of": {"_count": 1}, "sea": {"_count": 1}}, "hills": {"_count": 2, "": {"_count": 1}, "whenever": {"_count": 1}}, "thundering": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "change": {"_count": 7, "of": {"_count": 3}, "is": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}}, "vandalized": {"_count": 1, "telephone": {"_count": 1}}, "flat": {"_count": 3, "orange": {"_count": 1}, "side": {"_count": 1}, "rock": {"_count": 1}}, "streetlights": {"_count": 1, "": {"_count": 1}}, "dumpster": {"_count": 1, "then": {"_count": 1}}, "mantelpieces": {"_count": 1, "set": {"_count": 1}}, "grilles": {"_count": 6, "closed": {"_count": 1}, "slid": {"_count": 3}, "were": {"_count": 1}, "opened": {"_count": 1}}, "torchlit": {"_count": 1, "corridor": {"_count": 1}}, "bunches": {"_count": 1, "of": {"_count": 1}}, "jetblack": {"_count": 1, "floor": {"_count": 1}}, "dozen": {"_count": 2, "surrounding": {"_count": 1}, "pamphletmakers": {"_count": 1}}, "liquid": {"_count": 1, "": {"_count": 1}}, "brain": {"_count": 5, "room": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}, "when": {"_count": 1}}, "lowered": {"_count": 1, "floor": {"_count": 1}}, "dais": {"_count": 14, "": {"_count": 4}, "but": {"_count": 1}, "and": {"_count": 2}, "where": {"_count": 1}, "out": {"_count": 1}, "on": {"_count": 1}, "too": {"_count": 1}, "Lupin": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 1}}, "continuously": {"_count": 1, "swaying": {"_count": 1}}, "lowest": {"_count": 1, "stone": {"_count": 1}}, "nowuseless": {"_count": 1, "handle": {"_count": 1}}, "beautiful": {"_count": 2, "dancing": {"_count": 1}, "Rowena": {"_count": 1}}, "bookcases": {"_count": 2, "or": {"_count": 1}, "tinkled": {"_count": 1}}, "draft": {"_count": 1, "its": {"_count": 1}}, "farther": {"_count": 2, "ends": {"_count": 1}, "away": {"_count": 1}}, "brightness": {"_count": 2, "of": {"_count": 2}}, "clogging": {"_count": 1, "dust": {"_count": 1}}, "prophecy": {"_count": 76, "Potter": {"_count": 3}, "or": {"_count": 3}, "and": {"_count": 6}, "held": {"_count": 1}, "still": {"_count": 2}, "you": {"_count": 1}, "Hey": {"_count": 1}, "high": {"_count": 1}, "like": {"_count": 1}, "DOND": {"_count": 1}, "The": {"_count": 1}, "AARGH": {"_count": 1}, "then": {"_count": 1}, "grab": {"_count": 1}, "across": {"_count": 1}, "into": {"_count": 2}, "could": {"_count": 1}, "roll": {"_count": 1}, "ever": {"_count": 1}, "had": {"_count": 3}, "": {"_count": 15}, "kept": {"_count": 1}, "was": {"_count": 3}, "the": {"_count": 1}, "for": {"_count": 1}, "names": {"_count": 1}, "if": {"_count": 1}, "made": {"_count": 1}, "concerned": {"_count": 1}, "said": {"_count": 3}, "how": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 2}, "about": {"_count": 2}, "says": {"_count": 2}, "means": {"_count": 1}, "would": {"_count": 1}, "does": {"_count": 1}, "caused": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 1}}, "rising": {"_count": 2, "panic": {"_count": 1}, "tide": {"_count": 1}}, "dread": {"_count": 1, "he": {"_count": 1}}, "ninetyseventh": {"_count": 1, "row": {"_count": 1}}, "slits": {"_count": 3, "in": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}}, "fragments": {"_count": 4, "of": {"_count": 3}, "had": {"_count": 1}}, "Solstice": {"_count": 1, "will": {"_count": 1}}, "bowels": {"_count": 3, "of": {"_count": 3}}, "slitted": {"_count": 1, "eyeholes": {"_count": 1}}, "torrent": {"_count": 1, "of": {"_count": 1}}, "Seers": {"_count": 1, "unleashed": {"_count": 1}}, "pate": {"_count": 1, "and": {"_count": 1}}, "babyheaded": {"_count": 2, "Death": {"_count": 2}}, "whimpers": {"_count": 1, "and": {"_count": 1}}, "Time": {"_count": 1, "Room": {"_count": 1}}, "Brain": {"_count": 3, "Room": {"_count": 3}}, "feelers": {"_count": 1, "wrapping": {"_count": 1}}, "flashes": {"_count": 3, "of": {"_count": 3}}, "tiered": {"_count": 1, "seats": {"_count": 1}}, "eyehole": {"_count": 1, "of": {"_count": 1}}, "pockmarked": {"_count": 2, "Rookwood": {"_count": 1}, "stone": {"_count": 1}}, "arch": {"_count": 1, "": {"_count": 1}}, "deflected": {"_count": 1, "curses": {"_count": 1}}, "wrought": {"_count": 1, "gold": {"_count": 1}}, "oneeared": {"_count": 1, "goblin": {"_count": 1}}, "headless": {"_count": 2, "golden": {"_count": 1}, "statue": {"_count": 1}}, "fireplaces": {"_count": 5, "set": {"_count": 1}, "along": {"_count": 1}, "froze": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}}, "onearmed": {"_count": 2, "centaur": {"_count": 2}}, "shield": {"_count": 2, "though": {"_count": 1}, "": {"_count": 1}}, "blast": {"_count": 1, "and": {"_count": 1}}, "jet": {"_count": 4, "of": {"_count": 4}}, "suffocating": {"_count": 2, "mass": {"_count": 1}, "darkness": {"_count": 1}}, "heel": {"_count": 1, "of": {"_count": 1}}, "important": {"_count": 1, "points": {"_count": 1}}, "spindlelegged": {"_count": 2, "tables": {"_count": 1}, "table": {"_count": 1}}, "stillness": {"_count": 3, "broken": {"_count": 1}, "horror": {"_count": 1}, "and": {"_count": 1}}, "rightful": {"_count": 3, "headmaster": {"_count": 1}, "owner": {"_count": 1}, "and": {"_count": 1}}, "thronelike": {"_count": 3, "chair": {"_count": 3}}, "fullgrown": {"_count": 1, "Fawkes": {"_count": 1}}, "shaggy": {"_count": 1, "black": {"_count": 1}}, "whitehot": {"_count": 1, "anger": {"_count": 1}}, "Blacks": {"_count": 2, "is": {"_count": 1}, "Kreacher": {"_count": 1}}, "hallmarks": {"_count": 1, "of": {"_count": 1}}, "failings": {"_count": 1, "of": {"_count": 1}}, "gaping": {"_count": 2, "chasm": {"_count": 1}, "hole": {"_count": 1}}, "prophecies": {"_count": 1, "held": {"_count": 1}}, "rage": {"_count": 2, "that": {"_count": 2}}, "healing": {"_count": 1, "": {"_count": 1}}, "scandalized": {"_count": 1, "faces": {"_count": 1}}, "years": {"_count": 2, "ahead": {"_count": 1}, "until": {"_count": 1}}, "bond": {"_count": 2, "of": {"_count": 1}, "between": {"_count": 1}}, "pact": {"_count": 1, "she": {"_count": 1}}, "events": {"_count": 2, "of": {"_count": 1}, "that": {"_count": 1}}, "undoing": {"_count": 1, "of": {"_count": 1}}, "flaw": {"_count": 2, "in": {"_count": 2}}, "trap": {"_count": 1, "I": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "jaws": {"_count": 1, "of": {"_count": 1}}, "instruments": {"_count": 1, "Harry": {"_count": 1}}, "greatgreatgranddaughter": {"_count": 1, "of": {"_count": 1}}, "shallow": {"_count": 1, "stone": {"_count": 1}}, "harsh": {"_count": 2, "hoarse": {"_count": 1}, "lines": {"_count": 1}}, "pureblood": {"_count": 3, "which": {"_count": 1}, "greatnephew": {"_count": 1}, "families": {"_count": 1}}, "halfblood": {"_count": 1, "like": {"_count": 1}}, "eavesdropper": {"_count": 1, "was": {"_count": 1}}, "birth": {"_count": 1, "of": {"_count": 1}}, "Boy": {"_count": 6, "Who": {"_count": 6}}, "ridiculing": {"_count": 1, "and": {"_count": 1}}, "bedclothes": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "shouts": {"_count": 1, "laughter": {"_count": 1}}, "othersll": {"_count": 1, "be": {"_count": 1}}, "enthusiasm": {"_count": 2, "of": {"_count": 2}}, "fightin": {"_count": 1, "": {"_count": 1}}, "premises": {"_count": 2, "whacking": {"_count": 1}, "at": {"_count": 1}}, "stiff": {"_count": 1, "ruff": {"_count": 1}}, "secrets": {"_count": 5, "of": {"_count": 5}}, "writer": {"_count": 2, "had": {"_count": 1}, "of": {"_count": 1}}, "chessboard": {"_count": 2, "just": {"_count": 1}, "": {"_count": 1}}, "approach": {"_count": 1, "to": {"_count": 1}}, "jackets": {"_count": 1, "": {"_count": 1}}, "entirely": {"_count": 1, "mistaken": {"_count": 1}}, "fellytone": {"_count": 1, "Telephone": {"_count": 1}}, "President": {"_count": 3, "of": {"_count": 2}, "to": {"_count": 1}}, "print": {"_count": 1, "on": {"_count": 1}}, "gloating": {"_count": 1, "face": {"_count": 1}}, "governments": {"_count": 2, "fault": {"_count": 2}}, "river": {"_count": 9, "below": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}, "he": {"_count": 1}, "rushed": {"_count": 1}, "chattering": {"_count": 1}, "fashioned": {"_count": 1}, "she": {"_count": 1}}, "government": {"_count": 2, "should": {"_count": 1}, "departments": {"_count": 1}}, "freak": {"_count": 1, "hurricane": {"_count": 1}}, "opponent": {"_count": 1, "had": {"_count": 1}}, "memo": {"_count": 1, "saw": {"_count": 1}}, "unseasonable": {"_count": 1, "chill": {"_count": 1}}, "impossible": {"_count": 1, "hope": {"_count": 1}}, "froglike": {"_count": 1, "little": {"_count": 1}}, "ruckus": {"_count": 1, "in": {"_count": 1}}, "triumph": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "election": {"_count": 1, "had": {"_count": 1}}, "stilldumbstruck": {"_count": 1, "Prime": {"_count": 1}}, "opposition": {"_count": 2, "": {"_count": 1}, "might": {"_count": 1}}, "gerbil": {"_count": 1, "to": {"_count": 1}}, "Chancellor": {"_count": 1, "of": {"_count": 1}}, "Exchequer": {"_count": 1, "had": {"_count": 1}}, "occupant": {"_count": 1, "of": {"_count": 1}}, "Axminster": {"_count": 1, "Fudge": {"_count": 1}}, "Kwidditch": {"_count": 1, "or": {"_count": 1}}, "Other": {"_count": 1, "Minister": {"_count": 1}}, "purposes": {"_count": 1, "of": {"_count": 1}}, "blackmailer": {"_count": 1, "before": {"_count": 1}}, "hurricane": {"_count": 1, "in": {"_count": 1}}, "grand": {"_count": 1, "effect": {"_count": 1}}, "prison": {"_count": 3, "and": {"_count": 1}, "alongside": {"_count": 1}, "room": {"_count": 1}}, "towns": {"_count": 1, "and": {"_count": 1}}, "antique": {"_count": 1, "rug": {"_count": 1}}, "drink": {"_count": 5, "A": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "which": {"_count": 1}}, "fox": {"_count": 3, "now": {"_count": 1}, "fell": {"_count": 1}, "had": {"_count": 1}}, "cobbles": {"_count": 1, "as": {"_count": 1}}, "elfmade": {"_count": 1, "wine": {"_count": 1}}, "bookcovered": {"_count": 1, "door": {"_count": 1}}, "sisters": {"_count": 1, "": {"_count": 1}}, "Carrows": {"_count": 15, "Greyback": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 5}, "if": {"_count": 1}, "cant": {"_count": 1}, "were": {"_count": 1}, "binding": {"_count": 1}, "predicament": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "so": {"_count": 1}}, "gesture": {"_count": 2, "was": {"_count": 1}, "this": {"_count": 1}}, "enchantment": {"_count": 4, "works": {"_count": 1}, "binding": {"_count": 1}, "": {"_count": 1}, "your": {"_count": 1}}, "bargain": {"_count": 1, "": {"_count": 1}}, "service": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "Unbreakable": {"_count": 3, "Vow": {"_count": 3}}, "deed": {"_count": 1, "that": {"_count": 1}}, "streetlamp": {"_count": 2, "outside": {"_count": 2}}, "artificial": {"_count": 1, "light": {"_count": 1}}, "disturbance": {"_count": 2, "centered": {"_count": 1}, "opened": {"_count": 1}}, "fabled": {"_count": 1, "Hall": {"_count": 1}}, "existence": {"_count": 4, "of": {"_count": 4}}, "Chosen": {"_count": 7, "One": {"_count": 6}, "Boy": {"_count": 1}}, "tough": {"_count": 1, "new": {"_count": 1}}, "delivering": {"_count": 1, "owl": {"_count": 1}}, "blazes": {"_count": 1, "is": {"_count": 1}}, "blatant": {"_count": 1, "wizardishness": {"_count": 1}}, "stripy": {"_count": 1, "collar": {"_count": 1}}, "telescope": {"_count": 5, "and": {"_count": 3}, "": {"_count": 1}, "out": {"_count": 1}}, "surroundings": {"_count": 1, "with": {"_count": 1}}, "legacy": {"_count": 1, "His": {"_count": 1}}, "mutterings": {"_count": 1, "of": {"_count": 1}}, "persistent": {"_count": 1, "glass": {"_count": 1}}, "direct": {"_count": 1, "line": {"_count": 1}}, "ownership": {"_count": 2, "of": {"_count": 2}}, "eldest": {"_count": 3, "of": {"_count": 2}, "member": {"_count": 1}}, "writhing": {"_count": 2, "stamping": {"_count": 1}, "tree": {"_count": 1}}, "interests": {"_count": 1, "of": {"_count": 1}}, "appalling": {"_count": 1, "damage": {"_count": 1}}, "disturbing": {"_count": 1, "dreams": {"_count": 1}}, "startling": {"_count": 1, "flashes": {"_count": 1}}, "charming": {"_count": 2, "village": {"_count": 1}, "Melinda": {"_count": 1}}, "disagreement": {"_count": 1, "with": {"_count": 1}}, "carefully": {"_count": 1, "tended": {"_count": 1}}, "sitting": {"_count": 12, "room": {"_count": 12}}, "wallpaper": {"_count": 1, "": {"_count": 1}}, "wreck": {"_count": 2, "of": {"_count": 2}}, "piano": {"_count": 3, "or": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "overturned": {"_count": 2, "sofa": {"_count": 1}, "troll": {"_count": 1}}, "overstuffed": {"_count": 1, "armchair": {"_count": 1}}, "maroon": {"_count": 1, "velvet": {"_count": 1}}, "finishing": {"_count": 1, "touches": {"_count": 1}}, "chiming": {"_count": 1, "of": {"_count": 1}}, "repaired": {"_count": 1, "sofa": {"_count": 1}}, "Canary": {"_count": 1, "Islands": {"_count": 1}}, "brightest": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "goingson": {"_count": 1, "at": {"_count": 1}}, "Holyhead": {"_count": 4, "Harpies": {"_count": 4}}, "Harpies": {"_count": 1, "and": {"_count": 1}}, "prudent": {"_count": 1, "wizard": {"_count": 1}}, "mortality": {"_count": 1, "rate": {"_count": 1}}, "responsibility": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "successful": {"_count": 1, "and": {"_count": 1}}, "powerful": {"_count": 3, "": {"_count": 1}, "voice": {"_count": 1}, "wand": {"_count": 1}}, "throne": {"_count": 1, "himself": {"_count": 1}}, "jewel": {"_count": 1, "of": {"_count": 1}}, "church": {"_count": 9, "they": {"_count": 1}, "": {"_count": 4}, "doors": {"_count": 1}, "row": {"_count": 1}, "had": {"_count": 1}, "bells": {"_count": 1}}, "misted": {"_count": 1, "window": {"_count": 1}}, "lateness": {"_count": 2, "of": {"_count": 2}}, "Office": {"_count": 2, "for": {"_count": 2}}, "Detection": {"_count": 2, "and": {"_count": 2}}, "perpetrators": {"_count": 1, "are": {"_count": 1}}, "washing": {"_count": 4, "basket": {"_count": 2}, "machine": {"_count": 1}, "line": {"_count": 1}}, "rasp": {"_count": 1, "of": {"_count": 1}}, "bedcovers": {"_count": 2, "up": {"_count": 1}, "as": {"_count": 1}}, "places": {"_count": 3, "where": {"_count": 2}, "in": {"_count": 1}}, "Burrows": {"_count": 5, "garden": {"_count": 1}, "kitchen": {"_count": 2}, "boundaries": {"_count": 1}, "sitting": {"_count": 1}}, "icecream": {"_count": 1, "place": {"_count": 1}}, "teetering": {"_count": 1, "clock": {"_count": 1}}, "amulet": {"_count": 1, "seller": {"_count": 1}}, "separation": {"_count": 2, "scurrying": {"_count": 1}, "of": {"_count": 1}}, "shoppers": {"_count": 1, "stayed": {"_count": 1}}, "rack": {"_count": 1, "wearing": {"_count": 1}}, "fitting": {"_count": 1, "of": {"_count": 1}}, "cheapest": {"_count": 1, "merely": {"_count": 1}}, "unwary": {"_count": 1, "user": {"_count": 1}}, "tour": {"_count": 1, "": {"_count": 1}}, "tub": {"_count": 1, "labeled": {"_count": 1}}, "Decoy": {"_count": 4, "Detonators": {"_count": 1}, "Detonator": {"_count": 3}}, "customers": {"_count": 1, "and": {"_count": 1}}, "Patented": {"_count": 1, "Daydream": {"_count": 1}}, "attractiveness": {"_count": 1, "of": {"_count": 1}}, "go": {"_count": 1, "from": {"_count": 1}}, "Pygmy": {"_count": 5, "Puffs": {"_count": 3}, "Puff": {"_count": 2}}, "Knut": {"_count": 1, "": {"_count": 1}}, "scope": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "humming": {"_count": 1, "Hagrid": {"_count": 1}}, "cases": {"_count": 1, "full": {"_count": 1}}, "meaning": {"_count": 5, "of": {"_count": 4}, "": {"_count": 1}}, "satisfied": {"_count": 1, "look": {"_count": 1}}, "cardboard": {"_count": 2, "boxes": {"_count": 1}, "box": {"_count": 1}}, "spur": {"_count": 1, "of": {"_count": 1}}, "grimfaced": {"_count": 1, "Auror": {"_count": 1}}, "publicity": {"_count": 1, "said": {"_count": 1}}, "chilling": {"_count": 1, "mist": {"_count": 1}}, "Slug": {"_count": 2, "Club": {"_count": 2}}, "wildness": {"_count": 1, "of": {"_count": 1}}, "ensuing": {"_count": 1, "ruckus": {"_count": 1}}, "sleek": {"_count": 1, "blond": {"_count": 1}}, "stroking": {"_count": 1, "of": {"_count": 1}}, "blinds": {"_count": 2, "so": {"_count": 1}, "were": {"_count": 1}}, "cramped": {"_count": 4, "kneeling": {"_count": 1}, "room": {"_count": 1}, "hallway": {"_count": 1}, "space": {"_count": 1}}, "dispiriting": {"_count": 1, "realization": {"_count": 1}}, "faroff": {"_count": 1, "hoot": {"_count": 1}}, "convoy": {"_count": 1, "of": {"_count": 1}}, "matron": {"_count": 3, "in": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 1}}, "padlock": {"_count": 2, "but": {"_count": 1}, "once": {"_count": 1}}, "uplit": {"_count": 1, "hooked": {"_count": 1}}, "wearing": {"_count": 1, "of": {"_count": 1}}, "malice": {"_count": 1, "in": {"_count": 1}}, "dried": {"_count": 1, "blood": {"_count": 1}}, "dignity": {"_count": 3, "of": {"_count": 3}}, "shattering": {"_count": 1, "of": {"_count": 1}}, "sensitivity": {"_count": 1, "of": {"_count": 1}}, "sensational": {"_count": 1, "nature": {"_count": 1}}, "gawping": {"_count": 1, "crowd": {"_count": 1}}, "nosestamping": {"_count": 1, "lagged": {"_count": 1}}, "snarling": {"_count": 1, "Frisbee": {"_count": 1}}, "Frisbee": {"_count": 1, "from": {"_count": 1}}, "squares": {"_count": 1, "of": {"_count": 1}}, "coursework": {"_count": 1, "": {"_count": 1}}, "grandson": {"_count": 1, "shes": {"_count": 1}}, "Fanged": {"_count": 1, "Frisbee": {"_count": 1}}, "fourthyear": {"_count": 1, "student": {"_count": 1}}, "Faceless": {"_count": 1, "back": {"_count": 1}}, "N": {"_count": 2, "": {"_count": 2}}, "arts": {"_count": 1, "you": {"_count": 1}}, "aggression": {"_count": 1, "of": {"_count": 1}}, "Inferius": {"_count": 2, "a": {"_count": 1}, "that": {"_count": 1}}, "advantage": {"_count": 1, "of": {"_count": 1}}, "woody": {"_count": 1, "smell": {"_count": 1}}, "slowbubbling": {"_count": 1, "mudlike": {"_count": 1}}, "Most": {"_count": 1, "Extraordinary": {"_count": 1}}, "margins": {"_count": 4, "were": {"_count": 1}, "honestly": {"_count": 1}, "which": {"_count": 1}, "stealing": {"_count": 1}}, "directions": {"_count": 1, "under": {"_count": 1}}, "sopophorous": {"_count": 1, "bean": {"_count": 1}}, "tarlike": {"_count": 1, "substance": {"_count": 1}}, "disappointed": {"_count": 1, "expression": {"_count": 1}}, "Property": {"_count": 1, "of": {"_count": 1}}, "HalfBlood": {"_count": 18, "Prince": {"_count": 8}, "Princes": {"_count": 8}, "Ill": {"_count": 1}, "": {"_count": 1}}, "handwriting": {"_count": 3, "than": {"_count": 1}, "looks": {"_count": 1}, "itself": {"_count": 1}}, "Princes": {"_count": 7, "": {"_count": 2}, "copy": {"_count": 1}, "self": {"_count": 1}, "useful": {"_count": 1}, "hand": {"_count": 1}, "book": {"_count": 1}}, "Prince": {"_count": 19, "had": {"_count": 4}, "some": {"_count": 1}, "Hermione": {"_count": 1}, "has": {"_count": 1}, "was": {"_count": 2}, "wont": {"_count": 1}, "hasnt": {"_count": 1}, "like": {"_count": 1}, "would": {"_count": 1}, "Ron": {"_count": 1}, "been": {"_count": 1}, "he": {"_count": 1}, "Id": {"_count": 1}, "": {"_count": 1}, "seemed": {"_count": 1}}, "questioner": {"_count": 1, "She": {"_count": 1}}, "seventhfloor": {"_count": 4, "corridor": {"_count": 4}}, "firm": {"_count": 1, "foundation": {"_count": 1}}, "murky": {"_count": 1, "marshes": {"_count": 1}}, "cork": {"_count": 3, "flew": {"_count": 2}, "was": {"_count": 1}}, "brambles": {"_count": 3, "on": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "hedgerows": {"_count": 1, "the": {"_count": 1}}, "copse": {"_count": 2, "and": {"_count": 1}, "where": {"_count": 1}}, "tails": {"_count": 1, "of": {"_count": 1}}, "pots": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "nice": {"_count": 1, "man": {"_count": 1}}, "Peverell": {"_count": 4, "coat": {"_count": 2}, "family": {"_count": 1}, "brothers": {"_count": 1}}, "charges": {"_count": 1, "of": {"_count": 1}}, "Gaunts": {"_count": 7, "seemed": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "house": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "Gaunt": {"_count": 4, "cottage": {"_count": 1}, "hovel": {"_count": 1}, "shack": {"_count": 2}}, "desperate": {"_count": 2, "life": {"_count": 1}, "thirst": {"_count": 1}}, "gossip": {"_count": 1, "it": {"_count": 1}}, "squires": {"_count": 1, "son": {"_count": 1}}, "tramps": {"_count": 1, "daughter": {"_count": 1}}, "neighborhood": {"_count": 1, "that": {"_count": 1}}, "babys": {"_count": 1, "sake": {"_count": 1}}, "spotty": {"_count": 1, "youth": {"_count": 1}}, "Patil": {"_count": 3, "twins": {"_count": 3}}, "breadth": {"_count": 1, "of": {"_count": 1}}, "silliest": {"_count": 1, "girls": {"_count": 1}}, "competition": {"_count": 1, "and": {"_count": 1}}, "rejected": {"_count": 2, "Beaters": {"_count": 1}, "players": {"_count": 1}}, "Keepers": {"_count": 2, "Ill": {"_count": 1}, "until": {"_count": 1}}, "Captain": {"_count": 5, "he": {"_count": 1}, "of": {"_count": 1}, "does": {"_count": 1}, "McLaggen": {"_count": 1}, "": {"_count": 1}}, "flowery": {"_count": 1, "apron": {"_count": 1}}, "barrel": {"_count": 1, "of": {"_count": 1}}, "tribe": {"_count": 1, "": {"_count": 1}}, "colony": {"_count": 1, "at": {"_count": 1}}, "mo": {"_count": 1, "Hagrid": {"_count": 1}}, "encounter": {"_count": 2, "with": {"_count": 2}}, "increasingly": {"_count": 1, "tight": {"_count": 1}}, "handy": {"_count": 1, "hints": {"_count": 1}}, "imaginative": {"_count": 1, "little": {"_count": 1}}, "crossingsout": {"_count": 1, "and": {"_count": 1}}, "Muffliato": {"_count": 6, "spell": {"_count": 3}, "charm": {"_count": 3}}, "scribbled": {"_count": 1, "instructions": {"_count": 1}}, "scribble": {"_count": 1, "Levicorpus": {"_count": 1}}, "Half": {"_count": 5, "Blood": {"_count": 5}}, "fork": {"_count": 1, "he": {"_count": 1}}, "Sensor": {"_count": 1, "and": {"_count": 1}}, "exposed": {"_count": 2, "part": {"_count": 1}, "neck": {"_count": 1}}, "sugary": {"_count": 1, "warmth": {"_count": 1}}, "shorter": {"_count": 2, "man": {"_count": 1}, "of": {"_count": 1}}, "curvy": {"_count": 1, "and": {"_count": 1}}, "hedgerow": {"_count": 1, "into": {"_count": 1}}, "raging": {"_count": 1, "wind": {"_count": 1}}, "necklace": {"_count": 15, "in": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 2}, "dont": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "we": {"_count": 1}, "into": {"_count": 1}, "out": {"_count": 1}, "seems": {"_count": 1}, "of": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "unmarked": {"_count": 1, "package": {"_count": 1}}, "advisability": {"_count": 1, "of": {"_count": 1}}, "tussle": {"_count": 1, "over": {"_count": 1}}, "bad": {"_count": 1, "weather": {"_count": 1}}, "intended": {"_count": 1, "target": {"_count": 1}}, "St": {"_count": 1, "": {"_count": 1}}, "locket": {"_count": 68, "had": {"_count": 3}, "that": {"_count": 1}, "eh": {"_count": 1}, "back": {"_count": 2}, "": {"_count": 10}, "were": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 3}, "from": {"_count": 2}, "over": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}, "with": {"_count": 1}, "was": {"_count": 4}, "Master": {"_count": 1}, "\u2018Master": {"_count": 1}, "home": {"_count": 1}, "where": {"_count": 1}, "into": {"_count": 3}, "let": {"_count": 1}, "safely": {"_count": 1}, "an": {"_count": 1}, "lying": {"_count": 1}, "she": {"_count": 1}, "out": {"_count": 2}, "apart": {"_count": 1}, "like": {"_count": 1}, "Ron": {"_count": 1}, "against": {"_count": 1}, "once": {"_count": 1}, "on": {"_count": 2}, "rattled": {"_count": 1}, "swung": {"_count": 1}, "steady": {"_count": 1}, "tightly": {"_count": 1}, "quivering": {"_count": 1}, "first": {"_count": 1}, "side": {"_count": 1}, "as": {"_count": 1}, "then": {"_count": 1}, "they": {"_count": 1}, "being": {"_count": 1}, "are": {"_count": 1}, "before": {"_count": 1}, "of": {"_count": 1}}, "attendant": {"_count": 1, "despair": {"_count": 1}}, "flamboyantly": {"_count": 1, "cut": {"_count": 1}}, "bewilderedlooking": {"_count": 1, "girl": {"_count": 1}}, "iodine": {"_count": 1, "upstairs": {"_count": 1}}, "hallway": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "gin": {"_count": 2, "in": {"_count": 1}, "was": {"_count": 1}}, "inquisitorial": {"_count": 1, "glance": {"_count": 1}}, "seaside": {"_count": 1, "well": {"_count": 1}}, "asylum": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "quaking": {"_count": 1, "box": {"_count": 1}}, "handshake": {"_count": 1, "was": {"_count": 1}}, "whitehaired": {"_count": 1, "Dumbledore": {"_count": 1}}, "strangled": {"_count": 1, "rabbit": {"_count": 1}}, "matters": {"_count": 1, "we": {"_count": 1}}, "gnarled": {"_count": 3, "Snargaluff": {"_count": 1}, "stump": {"_count": 2}}, "gum": {"_count": 1, "shield": {"_count": 1}}, "tentaclelike": {"_count": 1, "branches": {"_count": 1}}, "vines": {"_count": 1, "forcing": {"_count": 1}}, "prickly": {"_count": 1, "vines": {"_count": 1}}, "pulsating": {"_count": 1, "pod": {"_count": 1}}, "pod": {"_count": 7, "into": {"_count": 1}, "in": {"_count": 2}, "when": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "hit": {"_count": 1}}, "resilient": {"_count": 1, "pod": {"_count": 1}}, "promising": {"_count": 1, "Gryffindor": {"_count": 1}}, "upcoming": {"_count": 3, "match": {"_count": 2}, "Quidditch": {"_count": 1}}, "newborn": {"_count": 1, "monster": {"_count": 1}}, "Bat": {"_count": 1, "Bogey": {"_count": 1}}, "weathers": {"_count": 2, "this": {"_count": 1}, "good": {"_count": 1}}, "yelling": {"_count": 2, "and": {"_count": 1}, "cackling": {"_count": 1}}, "commentators": {"_count": 3, "podium": {"_count": 3}}, "elusive": {"_count": 2, "Snitch": {"_count": 1}, "Mr": {"_count": 1}}, "offense": {"_count": 1, "had": {"_count": 1}}, "helmets": {"_count": 1, "of": {"_count": 1}}, "moody": {"_count": 1, "aggressive": {"_count": 1}}, "improved": {"_count": 1, "Ron": {"_count": 1}}, "frequent": {"_count": 1, "presence": {"_count": 1}}, "vulturelike": {"_count": 1, "countenance": {"_count": 1}}, "break": {"_count": 1, "would": {"_count": 1}}, "partyl": {"_count": 1, "Potty": {"_count": 1}}, "Vampires": {"_count": 1, "and": {"_count": 1}}, "vampire": {"_count": 2, "Sanguini": {"_count": 1}, "had": {"_count": 1}}, "biography": {"_count": 1, "of": {"_count": 1}}, "nearby": {"_count": 2, "group": {"_count": 1}, "garden": {"_count": 1}}, "Rotfang": {"_count": 2, "Conspiracy": {"_count": 2}}, "maniacal": {"_count": 1, "light": {"_count": 1}}, "glee": {"_count": 1, "on": {"_count": 1}}, "suckingup": {"_count": 1, "that": {"_count": 1}}, "assistance": {"_count": 1, "I": {"_count": 1}}, "extreme": {"_count": 4, "wandering": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "clutter": {"_count": 1}}, "sprouts": {"_count": 1, "": {"_count": 1}}, "sprout": {"_count": 2, "knife": {"_count": 1}, "mountain": {"_count": 1}}, "satsuma": {"_count": 1, "he": {"_count": 1}}, "wireless": {"_count": 4, "as": {"_count": 1}, "which": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}}, "Heart": {"_count": 1, "Right": {"_count": 1}}, "eggnog": {"_count": 1, "and": {"_count": 1}}, "werewolves": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "cries": {"_count": 1, "of": {"_count": 1}}, "maggot": {"_count": 1, "": {"_count": 1}}, "gravy": {"_count": 2, "boat": {"_count": 1}, "soared": {"_count": 1}}, "carrots": {"_count": 1, "with": {"_count": 1}}, "indistinguishable": {"_count": 1, "plants": {"_count": 1}}, "scuffedup": {"_count": 1, "patch": {"_count": 1}}, "tutu": {"_count": 1, "at": {"_count": 1}}, "rhododendron": {"_count": 2, "was": {"_count": 1}, "bush": {"_count": 1}}, "difficulties": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "31st": {"_count": 1, "August": {"_count": 1}}, "object": {"_count": 4, "of": {"_count": 2}, "": {"_count": 1}, "was": {"_count": 1}}, "reception": {"_count": 1, "his": {"_count": 1}}, "ambitious": {"_count": 1, "seeking": {"_count": 1}}, "thuggish": {"_count": 1, "gravitating": {"_count": 1}}, "forerunners": {"_count": 1, "of": {"_count": 1}}, "shields": {"_count": 1, "in": {"_count": 1}}, "shameful": {"_count": 1, "human": {"_count": 1}}, "teenage": {"_count": 2, "Voldemort": {"_count": 1}, "Dumbledore": {"_count": 1}}, "hovel": {"_count": 1, "and": {"_count": 1}}, "murdered": {"_count": 1, "people": {"_count": 1}}, "unworthy": {"_count": 1, "Riddle": {"_count": 1}}, "complex": {"_count": 1, "bit": {"_count": 1}}, "perpetrator": {"_count": 1, "You": {"_count": 1}}, "phial": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "Harry": {"_count": 1}}, "pineapple": {"_count": 2, "by": {"_count": 2}}, "mg": {"_count": 1, "in": {"_count": 1}}, "alterations": {"_count": 1, "": {"_count": 1}}, "relatively": {"_count": 1, "simple": {"_count": 1}}, "mysteriously": {"_count": 1, "separated": {"_count": 1}}, "Golpalott": {"_count": 1, "problem": {"_count": 1}}, "bezoar": {"_count": 7, "clutched": {"_count": 1}, "sitting": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}, "she": {"_count": 1}}, "individual": {"_count": 1, "spirit": {"_count": 1}}, "Horcrux": {"_count": 64, "wickedest": {"_count": 1}, "memory": {"_count": 1}, "other": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 3}, "is": {"_count": 4}, "": {"_count": 14}, "a": {"_count": 1}, "we": {"_count": 1}, "knew": {"_count": 1}, "cant": {"_count": 1}, "by": {"_count": 1}, "Harry": {"_count": 3}, "ring": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 2}, "that": {"_count": 1}, "against": {"_count": 1}, "around": {"_count": 1}, "between": {"_count": 1}, "glinting": {"_count": 1}, "and": {"_count": 3}, "which": {"_count": 3}, "beat": {"_count": 1}, "beating": {"_count": 1}, "twitched": {"_count": 1}, "hard": {"_count": 1}, "off": {"_count": 1}, "had": {"_count": 2}, "dangling": {"_count": 1}, "Marvolo": {"_count": 1}, "from": {"_count": 1}, "because": {"_count": 1}, "hidden": {"_count": 1}, "almost": {"_count": 1}, "be": {"_count": 1}, "sat": {"_count": 2}}, "desired": {"_count": 1, "destination": {"_count": 1}}, "interior": {"_count": 2, "of": {"_count": 2}}, "visualized": {"_count": 1, "space": {"_count": 1}}, "command": {"_count": 1, "": {"_count": 1}}, "parchments": {"_count": 1, "surface": {"_count": 1}}, "politest": {"_count": 1, "of": {"_count": 1}}, "rolledup": {"_count": 3, "socks": {"_count": 2}, "paper": {"_count": 1}}, "glazed": {"_count": 1, "eyes": {"_count": 1}}, "pallid": {"_count": 1, "complexion": {"_count": 1}}, "dangling": {"_count": 1, "Ron": {"_count": 1}}, "nerves": {"_count": 2, "keep": {"_count": 1}, "": {"_count": 1}}, "antidote": {"_count": 1, "down": {"_count": 1}}, "pangs": {"_count": 1, "of": {"_count": 1}}, "oakmatured": {"_count": 1, "mead": {"_count": 1}}, "mead": {"_count": 2, "into": {"_count": 1}, "from": {"_count": 1}}, "poisoner": {"_count": 2, "could": {"_count": 1}, "didnt": {"_count": 1}}, "turning": {"_count": 1, "into": {"_count": 1}}, "mercifully": {"_count": 1, "peaceful": {"_count": 1}}, "shortcut": {"_count": 1, "that": {"_count": 1}}, "redandgoldclad": {"_count": 1, "supporters": {"_count": 1}}, "incurably": {"_count": 1, "inept": {"_count": 1}}, "wrestling": {"_count": 1, "elves": {"_count": 1}}, "ickle": {"_count": 1, "creatures": {"_count": 1}}, "ministrations": {"_count": 1, "of": {"_count": 1}}, "benefits": {"_count": 1, "of": {"_count": 1}}, "toadstool": {"_count": 2, "and": {"_count": 1}, "back": {"_count": 1}}, "onionlike": {"_count": 1, "object": {"_count": 1}}, "Gurdyroot": {"_count": 2, "": {"_count": 1}, "infusion": {"_count": 1}}, "usurping": {"_count": 1, "nag": {"_count": 1}}, "realms": {"_count": 2, "of": {"_count": 2}}, "conclusions": {"_count": 1, "I": {"_count": 1}}, "Award": {"_count": 1, "for": {"_count": 1}}, "then": {"_count": 2, "headmaster": {"_count": 1}, "traditional": {"_count": 1}}, "teacher": {"_count": 2, "with": {"_count": 1}, "had": {"_count": 1}}, "partners": {"_count": 1, "and": {"_count": 1}}, "crisp": {"_count": 1, "linen": {"_count": 1}}, "goblinmade": {"_count": 1, "armor": {"_count": 1}}, "engraving": {"_count": 1, "upon": {"_count": 1}}, "boxed": {"_count": 1, "cup": {"_count": 1}}, "much": {"_count": 2, "flatter": {"_count": 1}, "younger": {"_count": 1}}, "fine": {"_count": 3, "filigree": {"_count": 1}, "bones": {"_count": 1}, "powdering": {"_count": 1}}, "lockets": {"_count": 6, "chain": {"_count": 1}, "hiding": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "gone": {"_count": 1}, "two": {"_count": 1}}, "momentary": {"_count": 2, "red": {"_count": 1}, "absence": {"_count": 1}}, "society": {"_count": 1, "Hermione": {"_count": 1}}, "irritating": {"_count": 1, "things": {"_count": 1}}, "attraction": {"_count": 2, "of": {"_count": 1}, "He": {"_count": 1}}, "jigsaw": {"_count": 1, "everything": {"_count": 1}}, "intriguing": {"_count": 1, "words": {"_count": 1}}, "twentyfirst": {"_count": 1, "of": {"_count": 1}}, "option": {"_count": 1, "of": {"_count": 1}}, "tassel": {"_count": 1, "of": {"_count": 1}}, "scales": {"_count": 3, "to": {"_count": 1}, "up": {"_count": 1}, "smashing": {"_count": 1}}, "toadspawn": {"_count": 1, "too": {"_count": 1}}, "headlines": {"_count": 1, "": {"_count": 1}}, "tripe": {"_count": 1, "I": {"_count": 1}}, "imprint": {"_count": 2, "of": {"_count": 2}}, "summ": {"_count": 1, "Myrtle": {"_count": 1}}, "not": {"_count": 1, "the": {"_count": 1}}, "quickly": {"_count": 1, "stifled": {"_count": 1}}, "Secrecy": {"_count": 1, "Sensor": {"_count": 1}}, "hag": {"_count": 1, "the": {"_count": 1}}, "leaflets": {"_count": 1, "had": {"_count": 1}}, "burial": {"_count": 3, "later": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}}, "Montgomery": {"_count": 1, "sisters": {"_count": 1}}, "werewolfs": {"_count": 2, "name": {"_count": 1}, "voice": {"_count": 1}}, "swagger": {"_count": 1, "that": {"_count": 1}}, "mission": {"_count": 3, "he": {"_count": 1}, "with": {"_count": 1}, "is": {"_count": 1}}, "continuing": {"_count": 1, "problem": {"_count": 1}}, "Felix": {"_count": 5, "Felicis": {"_count": 5}}, "luckiest": {"_count": 1, "person": {"_count": 1}}, "acromantulas": {"_count": 1, "They": {"_count": 1}}, "patting": {"_count": 1, "of": {"_count": 1}}, "evenin": {"_count": 1, "I": {"_count": 1}}, "ample": {"_count": 1, "amount": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "glint": {"_count": 3, "of": {"_count": 3}}, "supply": {"_count": 1, "of": {"_count": 1}}, "Refilling": {"_count": 1, "Charm": {"_count": 1}}, "illegal": {"_count": 1, "trade": {"_count": 1}}, "refrain": {"_count": 1, "": {"_count": 1}}, "guttering": {"_count": 1, "candle": {"_count": 1}}, "Baron": {"_count": 3, "to": {"_count": 1}, "said": {"_count": 1}, "blundering": {"_count": 1}}, "halfdozen": {"_count": 1, "teenage": {"_count": 1}}, "stem": {"_count": 1, "of": {"_count": 1}}, "hesitancy": {"_count": 1, "the": {"_count": 1}}, "casual": {"_count": 1, "tone": {"_count": 1}}, "careful": {"_count": 1, "flattery": {"_count": 1}}, "ribbon": {"_count": 1, "on": {"_count": 1}}, "supreme": {"_count": 1, "act": {"_count": 1}}, "torn": {"_count": 2, "portion": {"_count": 1}, "photograph": {"_count": 1}}, "significance": {"_count": 1, "of": {"_count": 1}}, "fragment": {"_count": 3, "of": {"_count": 2}, "on": {"_count": 1}}, "plural": {"_count": 1, "Harry": {"_count": 1}}, "transformation": {"_count": 1, "he": {"_count": 1}}, "crucial": {"_count": 2, "memory": {"_count": 1}, "point": {"_count": 1}}, "magnitude": {"_count": 2, "of": {"_count": 2}}, "ruin": {"_count": 2, "of": {"_count": 1}, "or": {"_count": 1}}, "shack": {"_count": 2, "where": {"_count": 1}, "and": {"_count": 1}}, "intention": {"_count": 1, "of": {"_count": 1}}, "diarys": {"_count": 1, "gone": {"_count": 1}}, "remarkable": {"_count": 1, "person": {"_count": 1}}, "tools": {"_count": 1, "for": {"_count": 1}}, "suffering": {"_count": 1, "you": {"_count": 1}}, "incomparable": {"_count": 1, "power": {"_count": 1}}, "arena": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "conga": {"_count": 1, "": {"_count": 1}}, "ladies": {"_count": 2, "in": {"_count": 1}, "bathroom": {"_count": 1}}, "luck": {"_count": 1, "you": {"_count": 1}}, "Sectumsempra": {"_count": 1, "spell": {"_count": 1}}, "breakup": {"_count": 1, "with": {"_count": 1}}, "postLavender": {"_count": 1, "Ron": {"_count": 1}}, "smug": {"_count": 1, "look": {"_count": 1}}, "nagging": {"_count": 1, "worry": {"_count": 1}}, "GryffindorRavenclaw": {"_count": 1, "game": {"_count": 1}}, "Championship": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "scenes": {"_count": 2, "of": {"_count": 1}, "inside": {"_count": 1}}, "tiled": {"_count": 2, "room": {"_count": 1}, "wall": {"_count": 1}}, "cistern": {"_count": 1, "beneath": {"_count": 1}}, "waterlogged": {"_count": 1, "floor": {"_count": 1}}, "residue": {"_count": 1, "from": {"_count": 1}}, "amazed": {"_count": 1, "looks": {"_count": 1}}, "chipped": {"_count": 1, "bust": {"_count": 1}}, "alleyways": {"_count": 1, "of": {"_count": 1}}, "postmatch": {"_count": 1, "euphoria": {"_count": 1}}, "unpleasantly": {"_count": 1, "familiar": {"_count": 1}}, "varied": {"_count": 1, "opportunities": {"_count": 1}}, "sherry": {"_count": 1, "bottles": {"_count": 1}}, "urgency": {"_count": 1, "in": {"_count": 1}}, "warnings": {"_count": 1, "the": {"_count": 1}}, "lightningstruck": {"_count": 1, "tower": {"_count": 1}}, "Object": {"_count": 1, "of": {"_count": 1}}, "nag": {"_count": 1, "Im": {"_count": 1}}, "jealous": {"_count": 1, "for": {"_count": 1}}, "stark": {"_count": 2, "contrast": {"_count": 1}, "stone": {"_count": 1}}, "pushing": {"_count": 1, "thrusting": {"_count": 1}}, "lone": {"_count": 1, "gargoyle": {"_count": 1}}, "calm": {"_count": 1, "voice": {"_count": 1}}, "sunset": {"_count": 2, "beyond": {"_count": 1}, "": {"_count": 1}}, "spark": {"_count": 1, "that": {"_count": 1}}, "bloody": {"_count": 2, "tinge": {"_count": 1}, "wound": {"_count": 1}}, "remorse": {"_count": 1, "Professor": {"_count": 1}}, "oaken": {"_count": 1, "front": {"_count": 1}}, "twilit": {"_count": 2, "deserted": {"_count": 1}, "grounds": {"_count": 1}}, "cliffs": {"_count": 2, "behind": {"_count": 1}, "the": {"_count": 1}}, "orphans": {"_count": 1, "were": {"_count": 1}}, "waves": {"_count": 2, "": {"_count": 1}, "slamming": {"_count": 1}}, "boulder": {"_count": 2, "closest": {"_count": 1}, "landed": {"_count": 1}}, "plunge": {"_count": 1, "": {"_count": 1}}, "tang": {"_count": 1, "of": {"_count": 1}}, "shivers": {"_count": 1, "he": {"_count": 1}}, "antechamber": {"_count": 1, "the": {"_count": 1}}, "forearm": {"_count": 1, "of": {"_count": 1}}, "boundless": {"_count": 1, "expanse": {"_count": 1}}, "mirrored": {"_count": 1, "surface": {"_count": 1}}, "sinisterly": {"_count": 1, "smooth": {"_count": 1}}, "wrath": {"_count": 1, "of": {"_count": 1}}, "silken": {"_count": 1, "rustle": {"_count": 1}}, "cavern": {"_count": 4, "they": {"_count": 1}, "": {"_count": 1}, "wall": {"_count": 1}, "was": {"_count": 1}}, "vanished": {"_count": 1, "hand": {"_count": 1}}, "greenish": {"_count": 4, "glow": {"_count": 1}, "light": {"_count": 1}, "glare": {"_count": 1}, "gloom": {"_count": 1}}, "whitened": {"_count": 1, "face": {"_count": 1}}, "refilled": {"_count": 1, "goblet": {"_count": 1}}, "island": {"_count": 7, "as": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "on": {"_count": 1}, "where": {"_count": 1}}, "Inferi": {"_count": 6, "holding": {"_count": 1}, "seemed": {"_count": 1}, "swarming": {"_count": 1}, "did": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "bewildered": {"_count": 1, "Inferi": {"_count": 1}}, "crevice": {"_count": 1, "in": {"_count": 1}}, "boundary": {"_count": 4, "wall": {"_count": 2}, "walls": {"_count": 1}, "by": {"_count": 1}}, "crenellated": {"_count": 1, "ramparts": {"_count": 1}}, "ramparts": {"_count": 6, "and": {"_count": 2}, "very": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "burst": {"_count": 1}}, "Marks": {"_count": 1, "greenish": {"_count": 1}}, "latters": {"_count": 1, "heart": {"_count": 1}}, "aah": {"_count": 1, "": {"_count": 1}}, "poisoned": {"_count": 2, "mead": {"_count": 2}}, "rampart": {"_count": 2, "wall": {"_count": 1}, "cried": {"_count": 1}}, "accompaniment": {"_count": 1, "of": {"_count": 1}}, "brutalfaced": {"_count": 3, "man": {"_count": 2}, "Death": {"_count": 1}}, "enraged": {"_count": 1, "werewolf": {"_count": 1}}, "squat": {"_count": 1, "brother": {"_count": 1}}, "hated": {"_count": 1, "voice": {"_count": 1}}, "fighters": {"_count": 4, "detached": {"_count": 1}, "were": {"_count": 1}, "slipping": {"_count": 1}, "of": {"_count": 1}}, "stench": {"_count": 1, "of": {"_count": 1}}, "sport": {"_count": 1, "Crucio": {"_count": 1}}, "brother": {"_count": 5, "and": {"_count": 5}}, "bangs": {"_count": 3, "issuing": {"_count": 1}, "set": {"_count": 1}, "and": {"_count": 1}}, "yells": {"_count": 1, "of": {"_count": 1}}, "mute": {"_count": 1, "call": {"_count": 1}}, "fleeing": {"_count": 1, "Death": {"_count": 1}}, "vanishing": {"_count": 1, "step": {"_count": 1}}, "flagstones": {"_count": 2, "and": {"_count": 1}, "below": {"_count": 1}}, "crescent": {"_count": 1, "moon": {"_count": 1}}, "toughened": {"_count": 1, "skin": {"_count": 1}}, "yelping": {"_count": 1, "howling": {"_count": 1}}, "razorsharp": {"_count": 1, "claws": {"_count": 1}}, "charms": {"_count": 1, "\u2018Aguamenti": {"_count": 1}}, "awful": {"_count": 1, "pressing": {"_count": 1}}, "murmuring": {"_count": 2, "crowd": {"_count": 1}, "of": {"_count": 1}}, "dumbstruck": {"_count": 2, "students": {"_count": 1}, "look": {"_count": 1}}, "ornate": {"_count": 2, "S": {"_count": 1}, "silver": {"_count": 1}}, "inert": {"_count": 2, "figures": {"_count": 1}, "body": {"_count": 1}}, "cursed": {"_count": 3, "barrier": {"_count": 1}, "fire": {"_count": 2}}, "nastysmelling": {"_count": 1, "ointment": {"_count": 1}}, "ointment": {"_count": 1, "from": {"_count": 1}}, "wedding": {"_count": 23, "": {"_count": 13}, "that": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}, "guests": {"_count": 2}, "after": {"_count": 1}, "We": {"_count": 1}, "seemed": {"_count": 1}, "more": {"_count": 1}, "remember": {"_count": 1}}, "closure": {"_count": 1, "of": {"_count": 1}}, "established": {"_count": 1, "procedures": {"_count": 1}}, "funerals": {"_count": 1, "over": {"_count": 1}}, "funeral": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "was": {"_count": 1}}, "forced": {"_count": 1, "toughness": {"_count": 1}}, "initials": {"_count": 1, "as": {"_count": 1}}, "pure": {"_count": 1, "blood": {"_count": 1}}, "uncomfortable": {"_count": 2, "feeling": {"_count": 2}}, "birdsong": {"_count": 1, "was": {"_count": 1}}, "singers": {"_count": 1, "he": {"_count": 1}}, "illusion": {"_count": 3, "he": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}}, "buzz": {"_count": 1, "of": {"_count": 1}}, "Horcruxes": {"_count": 20, "and": {"_count": 1}, "havent": {"_count": 1}, "": {"_count": 11}, "Ill": {"_count": 1}, "our": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}, "would": {"_count": 1}, "in": {"_count": 1}, "now": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "request": {"_count": 1, "I": {"_count": 1}}, "stragglers": {"_count": 1, "giving": {"_count": 1}}, "monumental": {"_count": 1, "figure": {"_count": 1}}, "taller": {"_count": 1, "of": {"_count": 1}}, "mens": {"_count": 2, "way": {"_count": 1}, "footsteps": {"_count": 1}}, "straight": {"_count": 1, "drive": {"_count": 1}}, "diamondpaned": {"_count": 1, "downstairs": {"_count": 1}}, "bronze": {"_count": 3, "handle": {"_count": 1}, "doors": {"_count": 1}, "eagle": {"_count": 1}}, "bare": {"_count": 3, "polished": {"_count": 1}, "flesh": {"_count": 1}, "hedges": {"_count": 1}}, "watchers": {"_count": 3, "looked": {"_count": 1}, "": {"_count": 1}, "rent": {"_count": 1}}, "ferocity": {"_count": 1, "of": {"_count": 1}}, "slowly": {"_count": 3, "revolving": {"_count": 2}, "lightening": {"_count": 1}}, "revolving": {"_count": 1, "body": {"_count": 1}}, "tense": {"_count": 1, "faces": {"_count": 1}}, "hissing": {"_count": 1, "grew": {"_count": 1}}, "thickness": {"_count": 1, "of": {"_count": 1}}, "outpouring": {"_count": 1, "of": {"_count": 1}}, "catcalls": {"_count": 1, "and": {"_count": 1}}, "cubs": {"_count": 1, "": {"_count": 1}}, "health": {"_count": 1, "of": {"_count": 1}}, "canker": {"_count": 1, "that": {"_count": 1}}, "upsidedown": {"_count": 1, "face": {"_count": 1}}, "captive": {"_count": 1, "now": {"_count": 1}}, "purebloods": {"_count": 2, "is": {"_count": 1}, "who": {"_count": 1}}, "stabs": {"_count": 1, "of": {"_count": 1}}, "useless": {"_count": 1, "items": {"_count": 1}}, "limited": {"_count": 1, "amount": {"_count": 1}}, "resignation": {"_count": 2, "of": {"_count": 2}}, "brothers": {"_count": 4, "were": {"_count": 1}, "reached": {"_count": 1}, "and": {"_count": 1}, "separated": {"_count": 1}}, "period": {"_count": 1, "of": {"_count": 1}}, "wonders": {"_count": 2, "of": {"_count": 1}, "it": {"_count": 1}}, "experiments": {"_count": 1, "of": {"_count": 1}}, "Dumbledores": {"_count": 3, "the": {"_count": 1}, "goodness": {"_count": 1}, "for": {"_count": 1}}, "triumphs": {"_count": 1, "of": {"_count": 1}}, "awe": {"_count": 1, "they": {"_count": 1}}, "obituary": {"_count": 3, "": {"_count": 1}, "out": {"_count": 1}, "you": {"_count": 1}}, "shocking": {"_count": 1, "story": {"_count": 1}}, "flawed": {"_count": 1, "genius": {"_count": 1}}, "disturbed": {"_count": 1, "childhood": {"_count": 1}}, "lawless": {"_count": 1, "youth": {"_count": 1}}, "lifelong": {"_count": 1, "feuds": {"_count": 1}}, "explosive": {"_count": 1, "new": {"_count": 1}}, "dirt": {"_count": 1, "on": {"_count": 1}}, "highlights": {"_count": 1, "before": {"_count": 1}}, "Mugglemaiming": {"_count": 1, "father": {"_count": 1}}, "mother": {"_count": 6, "and": {"_count": 1}, "in": {"_count": 2}, "entered": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}}, "sister": {"_count": 1, "that": {"_count": 1}}, "relationship": {"_count": 2, "that": {"_count": 1}, "between": {"_count": 1}}, "nextdoor": {"_count": 1, "neighbor": {"_count": 1}}, "lies": {"_count": 1, "with": {"_count": 1}}, "rucksack": {"_count": 1, "filled": {"_count": 1}}, "deeds": {"_count": 1, "will": {"_count": 1}}, "unannounced": {"_count": 1, "visit": {"_count": 1}}, "protective": {"_count": 4, "charm": {"_count": 1}, "enchantments": {"_count": 3}}, "privet": {"_count": 1, "hedges": {"_count": 1}}, "establishment": {"_count": 1, "even": {"_count": 1}}, "Mug": {"_count": 1, "I": {"_count": 1}}, "knack": {"_count": 1, "of": {"_count": 1}}, "TV": {"_count": 1, "set": {"_count": 1}}, "fogs": {"_count": 1, "theyre": {"_count": 1}}, "darkhaired": {"_count": 1, "Hestia": {"_count": 1}}, "safe": {"_count": 2, "location": {"_count": 1}, "place": {"_count": 1}}, "bulge": {"_count": 1, "in": {"_count": 1}}, "hearts": {"_count": 1, "of": {"_count": 1}}, "graveled": {"_count": 1, "drive": {"_count": 1}}, "stacked": {"_count": 1, "shoes": {"_count": 1}}, "underside": {"_count": 2, "of": {"_count": 2}}, "Trace": {"_count": 8, "on": {"_count": 5}, "": {"_count": 1}, "to": {"_count": 1}, "cant": {"_count": 1}}, "pristine": {"_count": 1, "kitchen": {"_count": 1}}, "mudlike": {"_count": 1, "liquid": {"_count": 1}}, "protectors": {"_count": 1, "who": {"_count": 1}}, "ties": {"_count": 1, "of": {"_count": 1}}, "twin": {"_count": 11, "at": {"_count": 1}, "cores": {"_count": 8}, "bed": {"_count": 1}, "of": {"_count": 1}}, "sidecar": {"_count": 15, "": {"_count": 2}, "began": {"_count": 3}, "give": {"_count": 1}, "by": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "sway": {"_count": 1}, "was": {"_count": 1}, "broke": {"_count": 1}, "and": {"_count": 1}, "beginning": {"_count": 1}}, "motorbike": {"_count": 10, "goggles": {"_count": 1}, "into": {"_count": 2}, "and": {"_count": 1}, "rolled": {"_count": 1}, "swung": {"_count": 1}, "all": {"_count": 1}, "shot": {"_count": 1}, "spiraled": {"_count": 1}, "crossed": {"_count": 1}}, "speedometer": {"_count": 2, "": {"_count": 2}}, "diversions": {"_count": 1, "lost": {"_count": 1}}, "strap": {"_count": 1, "of": {"_count": 1}}, "thunderous": {"_count": 2, "roar": {"_count": 1}, "stamps": {"_count": 1}}, "throttle": {"_count": 1, "": {"_count": 1}}, "fuel": {"_count": 1, "gauge": {"_count": 1}}, "exhaust": {"_count": 3, "pipe": {"_count": 1}, "whitehot": {"_count": 1}, "Harry": {"_count": 1}}, "airborne": {"_count": 1, "wall": {"_count": 1}}, "handlebars": {"_count": 4, "and": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}}, "bikes": {"_count": 3, "exhaust": {"_count": 1}, "slipstream": {"_count": 1}, "flight": {"_count": 1}}, "companion": {"_count": 1, "who": {"_count": 1}}, "deadly": {"_count": 1, "trail": {"_count": 1}}, "surge": {"_count": 1, "of": {"_count": 1}}, "impetus": {"_count": 1, "of": {"_count": 1}}, "plummeting": {"_count": 2, "sidecar": {"_count": 1}, "bike": {"_count": 1}}, "motorbikes": {"_count": 2, "seat": {"_count": 1}, "engine": {"_count": 1}}, "dragonfire": {"_count": 3, "button": {"_count": 2}, "thing": {"_count": 1}}, "strangely": {"_count": 1, "blank": {"_count": 1}}, "whiteblue": {"_count": 1, "fire": {"_count": 1}}, "pond": {"_count": 1, "and": {"_count": 1}}, "wifes": {"_count": 1, "seeing": {"_count": 1}}, "dressing": {"_count": 5, "table": {"_count": 4}, "gown": {"_count": 1}}, "tears": {"_count": 2, "stung": {"_count": 1}, "trickling": {"_count": 1}}, "hairbrush": {"_count": 1, "glowed": {"_count": 1}}, "navel": {"_count": 1, "as": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "selfjustifying": {"_count": 1, "note": {"_count": 1}}, "plea": {"_count": 2, "for": {"_count": 1}, "out": {"_count": 1}}, "lamplight": {"_count": 4, "fell": {"_count": 1}, "Harry": {"_count": 1}, "hands": {"_count": 1}, "": {"_count": 1}}, "chase": {"_count": 4, "how": {"_count": 1}, "halfway": {"_count": 1}, "": {"_count": 1}, "be": {"_count": 1}}, "sanctuary": {"_count": 1, "of": {"_count": 1}}, "sneering": {"_count": 1, "Hufflepuff": {"_count": 1}}, "hug": {"_count": 2, "Bill": {"_count": 1}, "and": {"_count": 1}}, "consummate": {"_count": 1, "survivor": {"_count": 1}}, "thirteenth": {"_count": 1, "aloft": {"_count": 1}}, "numbness": {"_count": 1, "and": {"_count": 1}}, "frail": {"_count": 2, "old": {"_count": 2}}, "Ron": {"_count": 1, "mouthed": {"_count": 1}}, "YouKnowWhats": {"_count": 1, "are": {"_count": 1}}, "thirty": {"_count": 1, "first": {"_count": 1}}, "concerned": {"_count": 1, "parent": {"_count": 1}}, "preparations": {"_count": 2, "for": {"_count": 2}}, "scullery": {"_count": 1, "": {"_count": 1}}, "terrors": {"_count": 1, "of": {"_count": 1}}, "unsaid": {"_count": 1, "things": {"_count": 1}}, "underage": {"_count": 2, "magic": {"_count": 1}, "on": {"_count": 1}}, "coop": {"_count": 1, "but": {"_count": 1}}, "rag": {"_count": 1, "and": {"_count": 1}}, "grease": {"_count": 1, "": {"_count": 1}}, "syllabary": {"_count": 2, "onto": {"_count": 1}, "either": {"_count": 1}}, "discarded": {"_count": 1, "pile": {"_count": 1}}, "nightly": {"_count": 1, "silence": {"_count": 1}}, "ghouls": {"_count": 1, "going": {"_count": 1}}, "fungus": {"_count": 1, "has": {"_count": 1}}, "Delacours": {"_count": 4, "have": {"_count": 1}, "on": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}}, "rehearsal": {"_count": 1, "and": {"_count": 1}}, "feat": {"_count": 1, "Harry": {"_count": 1}}, "instruction": {"_count": 1, "he": {"_count": 1}}, "less": {"_count": 4, "I": {"_count": 1}, "sense": {"_count": 1}, "joyful": {"_count": 1}, "that": {"_count": 1}}, "punctured": {"_count": 1, "pages": {"_count": 1}}, "sickbed": {"_count": 1, "of": {"_count": 1}}, "bridesmaids": {"_count": 1, "shoes": {"_count": 1}}, "downside": {"_count": 2, "the": {"_count": 1}, "no": {"_count": 1}}, "overcrowded": {"_count": 2, "house": {"_count": 1}, "table": {"_count": 1}}, "henhouse": {"_count": 1, "": {"_count": 1}}, "inconvenience": {"_count": 1, "and": {"_count": 1}}, "camp": {"_count": 1, "bed": {"_count": 1}}, "removal": {"_count": 1, "of": {"_count": 1}}, "laces": {"_count": 1, "of": {"_count": 1}}, "rectangular": {"_count": 1, "parcel": {"_count": 1}}, "cooker": {"_count": 1, "": {"_count": 1}}, "allwitch": {"_count": 1, "Quidditch": {"_count": 1}}, "stillcrowded": {"_count": 1, "kitchen": {"_count": 1}}, "seclusion": {"_count": 1, "of": {"_count": 1}}, "guests": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "crabapple": {"_count": 1, "tree": {"_count": 1}}, "cake": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "messy": {"_count": 1, "kitchen": {"_count": 1}}, "sagging": {"_count": 2, "armchair": {"_count": 1}, "armchairs": {"_count": 1}}, "deceaseds": {"_count": 1, "possessions": {"_count": 1}}, "thirtyone": {"_count": 1, "days": {"_count": 1}}, "Deluminator": {"_count": 18, "to": {"_count": 3}, "and": {"_count": 4}, "for": {"_count": 1}, "once": {"_count": 1}, "in": {"_count": 1}, "maybe": {"_count": 1}, "again": {"_count": 2}, "didnt": {"_count": 1}, "out": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 2}}, "Bard": {"_count": 14, "in": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 7}, "how": {"_count": 1}, "from": {"_count": 1}, "they": {"_count": 1}, "when": {"_count": 1}}, "embossed": {"_count": 1, "symbols": {"_count": 1}}, "rewards": {"_count": 1, "of": {"_count": 1}}, "marquee": {"_count": 12, "beyond": {"_count": 1}, "revealed": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "as": {"_count": 1}, "with": {"_count": 1}, "both": {"_count": 1}, "back": {"_count": 1}, "told": {"_count": 1}, "vanished": {"_count": 1}, "most": {"_count": 1}, "waiting": {"_count": 1}}, "icing": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "maker": {"_count": 2, "who": {"_count": 1}, "not": {"_count": 1}}, "exclusive": {"_count": 1, "property": {"_count": 1}}, "overstretched": {"_count": 1, "Burrow": {"_count": 1}}, "shard": {"_count": 3, "of": {"_count": 3}}, "purse": {"_count": 1, "around": {"_count": 1}}, "close": {"_count": 8, "": {"_count": 8}}, "Hopping": {"_count": 1, "Pot": {"_count": 1}}, "Seven": {"_count": 1, "Dwarfs": {"_count": 1}}, "bridegrooms": {"_count": 1, "mother": {"_count": 1}}, "bees": {"_count": 1, "as": {"_count": 1}}, "gaggle": {"_count": 1, "of": {"_count": 1}}, "procession": {"_count": 1, "he": {"_count": 1}}, "middleaged": {"_count": 1, "witches": {"_count": 1}}, "curly": {"_count": 2, "hair": {"_count": 1}, "green": {"_count": 1}}, "magically": {"_count": 1, "enlarged": {"_count": 1}}, "texture": {"_count": 1, "of": {"_count": 1}}, "Gernumbli": {"_count": 1, "gardensi": {"_count": 1}}, "exchange": {"_count": 1, "between": {"_count": 1}}, "Gernumblies": {"_count": 1, "": {"_count": 1}}, "bride": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "tiara": {"_count": 4, "": {"_count": 1}, "passed": {"_count": 1}, "Fleur": {"_count": 1}, "Crabbes": {"_count": 1}}, "Muggleborn": {"_count": 1, "": {"_count": 1}}, "latecomer": {"_count": 1, "a": {"_count": 1}}, "union": {"_count": 1, "of": {"_count": 1}}, "tuftyhaired": {"_count": 1, "wizard": {"_count": 1}}, "hovering": {"_count": 1, "chairs": {"_count": 1}}, "waiters": {"_count": 1, "popped": {"_count": 1}}, "waltzlike": {"_count": 1, "tune": {"_count": 1}}, "triangular": {"_count": 2, "runelike": {"_count": 1}, "rune": {"_count": 1}}, "dancers": {"_count": 1, "like": {"_count": 1}}, "borrowed": {"_count": 4, "wand": {"_count": 4}}, "revelry": {"_count": 1, "became": {"_count": 1}}, "Hero": {"_count": 1, "in": {"_count": 1}}, "plumes": {"_count": 1, "dancing": {"_count": 1}}, "sticky": {"_count": 2, "patches": {"_count": 1}, "moment": {"_count": 1}}, "coffin": {"_count": 1, "out": {"_count": 1}}, "Ariana": {"_count": 1, "business": {"_count": 1}}, "lynx": {"_count": 1, "landed": {"_count": 1}}, "Patronuss": {"_count": 1, "mouth": {"_count": 1}}, "panicking": {"_count": 1, "crowd": {"_count": 1}}, "descending": {"_count": 2, "Death": {"_count": 1}, "flames": {"_count": 1}}, "Cloak": {"_count": 62, "Ive": {"_count": 1}, "and": {"_count": 9}, "he": {"_count": 3}, "slipped": {"_count": 2}, "but": {"_count": 1}, "anymore": {"_count": 1}, "again": {"_count": 1}, "said": {"_count": 1}, "under": {"_count": 1}, "back": {"_count": 2}, "her": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 8}, "to": {"_count": 1}, "of": {"_count": 1}, "existed": {"_count": 1}, "Ron": {"_count": 2}, "though": {"_count": 1}, "Hermione": {"_count": 2}, "if": {"_count": 1}, "down": {"_count": 1}, "the": {"_count": 2}, "on": {"_count": 3}, "off": {"_count": 2}, "fall": {"_count": 1}, "over": {"_count": 1}, "tightly": {"_count": 2}, "running": {"_count": 1}, "was": {"_count": 3}, "The": {"_count": 1}, "peering": {"_count": 1}, "much": {"_count": 1}, "I": {"_count": 1}, "up": {"_count": 1}}, "fragilelooking": {"_count": 1, "bag": {"_count": 1}}, "essentials": {"_count": 3, "packed": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}}, "drunkest": {"_count": 1, "of": {"_count": 1}}, "Formica": {"_count": 1, "topped": {"_count": 1}}, "cafe": {"_count": 4, "and": {"_count": 1}, "into": {"_count": 1}, "was": {"_count": 1}, "door": {"_count": 1}}, "waitress": {"_count": 5, "screamed": {"_count": 1}, "who": {"_count": 1}, "while": {"_count": 1}, "out": {"_count": 1}, "or": {"_count": 1}}, "darker": {"_count": 1, "Death": {"_count": 1}}, "paralyzed": {"_count": 1, "Dolohov": {"_count": 1}}, "scent": {"_count": 1, "": {"_count": 1}}, "boss": {"_count": 1, "said": {"_count": 1}}, "partly": {"_count": 1, "destroyed": {"_count": 1}}, "cafes": {"_count": 1, "light": {"_count": 1}}, "compressing": {"_count": 2, "darkness": {"_count": 2}}, "TTongueTying": {"_count": 1, "Curse": {"_count": 1}}, "horrorfigure": {"_count": 1, "aside": {"_count": 1}}, "skirting": {"_count": 1, "board": {"_count": 1}}, "corpsefigure": {"_count": 1, "had": {"_count": 1}}, "weasel": {"_count": 1, "that": {"_count": 1}}, "cobwebbed": {"_count": 1, "chandelier": {"_count": 1}}, "daunting": {"_count": 1, "complex": {"_count": 1}}, "Permanent": {"_count": 1, "Sticking": {"_count": 1}}, "muchadmired": {"_count": 1, "rebels": {"_count": 1}}, "ornaments": {"_count": 1, "and": {"_count": 1}}, "wetness": {"_count": 1, "in": {"_count": 1}}, "sixteen": {"_count": 2, "years": {"_count": 2}}, "ransacked": {"_count": 1, "room": {"_count": 1}}, "toy": {"_count": 1, "broom": {"_count": 1}}, "pouch": {"_count": 11, "around": {"_count": 7}, "Hagrid": {"_count": 1}, "containing": {"_count": 1}, "at": {"_count": 1}, "hung": {"_count": 1}}, "resentment": {"_count": 1, "he": {"_count": 1}}, "Express": {"_count": 1, "Permission": {"_count": 1}}, "clippings": {"_count": 1, "": {"_count": 1}}, "nest": {"_count": 1, "of": {"_count": 1}}, "trinkets": {"_count": 1, "Kreacher": {"_count": 1}}, "contemptuous": {"_count": 2, "look": {"_count": 1}, "expression": {"_count": 1}}, "bloodtraitor": {"_count": 1, "Weasley": {"_count": 1}}, "insults": {"_count": 1, "he": {"_count": 1}}, "goblets": {"_count": 4, "with": {"_count": 1}, "either": {"_count": 1}, "and": {"_count": 2}}, "sneak": {"_count": 1, "thief": {"_count": 1}}, "defenses": {"_count": 1, "surrounding": {"_count": 1}}, "islands": {"_count": 1, "edge": {"_count": 1}}, "casing": {"_count": 1, "Kreacher": {"_count": 1}}, "fffamily": {"_count": 1, "what": {"_count": 1}}, "ccave": {"_count": 1, "": {"_count": 1}}, "substitute": {"_count": 1, "locket": {"_count": 1}}, "capture": {"_count": 1, "of": {"_count": 1}}, "bickering": {"_count": 1, "Harry": {"_count": 1}}, "grinding": {"_count": 2, "of": {"_count": 2}}, "decapitated": {"_count": 1, "elf": {"_count": 1}}, "lamplit": {"_count": 1, "square": {"_count": 1}}, "mingled": {"_count": 3, "shock": {"_count": 1}, "members": {"_count": 1}, "outpourings": {"_count": 1}}, "so": {"_count": 1, "called": {"_count": 1}}, "punishment": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "prematurely": {"_count": 1, "lined": {"_count": 1}}, "kid": {"_count": 1, "and": {"_count": 1}}, "wolf": {"_count": 1, "upon": {"_count": 1}}, "child": {"_count": 6, "the": {"_count": 1}, "Lupin": {"_count": 1}, "turned": {"_count": 1}, "would": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}}, "curiosity": {"_count": 1, "about": {"_count": 1}}, "friendly": {"_count": 1, "advances": {"_count": 1}}, "winter": {"_count": 1, "after": {"_count": 1}}, "easier": {"_count": 1, "": {"_count": 1}}, "Prizes": {"_count": 1, "and": {"_count": 1}}, "Pretense": {"_count": 1, "": {"_count": 1}}, "ell": {"_count": 1, "am": {"_count": 1}}, "junk": {"_count": 3, "There": {"_count": 1}, "wall": {"_count": 1}, "bulwarks": {"_count": 1}}, "heavybottomed": {"_count": 1, "pan": {"_count": 1}}, "pan": {"_count": 1, "still": {"_count": 1}}, "valuables": {"_count": 1, "you": {"_count": 1}}, "amusing": {"_count": 1, "mistake": {"_count": 1}}, "numbering": {"_count": 1, "that": {"_count": 1}}, "anomaly": {"_count": 1, "most": {"_count": 1}}, "join": {"_count": 1, "between": {"_count": 1}}, "Londoners": {"_count": 1, "who": {"_count": 1}}, "accompanying": {"_count": 1, "story": {"_count": 1}}, "bags": {"_count": 1, "capacious": {"_count": 1}}, "navy": {"_count": 3, "robes": {"_count": 1}, "blue": {"_count": 2}}, "sketchy": {"_count": 1, "maps": {"_count": 1}}, "movement": {"_count": 2, "by": {"_count": 1}, "with": {"_count": 1}}, "savory": {"_count": 1, "stew": {"_count": 1}}, "whiteness": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "padlocked": {"_count": 1, "and": {"_count": 1}}, "theater": {"_count": 1, "door": {"_count": 1}}, "beaded": {"_count": 14, "bag": {"_count": 14}}, "tokens": {"_count": 1, "": {"_count": 1}}, "pastille": {"_count": 1, "touched": {"_count": 1}}, "skirts": {"_count": 2, "of": {"_count": 2}}, "puddles": {"_count": 1, "of": {"_count": 1}}, "sick": {"_count": 1, "wizard": {"_count": 1}}, "sicksplattered": {"_count": 1, "alleyway": {"_count": 1}}, "painful": {"_count": 1, "transformation": {"_count": 1}}, "bum": {"_count": 1, "this": {"_count": 1}}, "cubicle": {"_count": 2, "just": {"_count": 1}, "behind": {"_count": 1}}, "balding": {"_count": 4, "wizard": {"_count": 3}, "Muggle": {"_count": 1}}, "ferrety": {"_count": 1, "wizard": {"_count": 1}}, "bog": {"_count": 1, "said": {"_count": 1}}, "handsomely": {"_count": 1, "robed": {"_count": 1}}, "distinctive": {"_count": 1, "figure": {"_count": 1}}, "wife": {"_count": 1, "of": {"_count": 1}}, "thickly": {"_count": 1, "carpeted": {"_count": 1}}, "might": {"_count": 1, "of": {"_count": 1}}, "creation": {"_count": 1, "of": {"_count": 1}}, "workers": {"_count": 2, "were": {"_count": 1}, "on": {"_count": 1}}, "Dangers": {"_count": 1, "They": {"_count": 1}}, "pamphlet": {"_count": 1, "but": {"_count": 1}}, "bottoms": {"_count": 1, "of": {"_count": 1}}, "vases": {"_count": 1, "and": {"_count": 1}}, "anthill": {"_count": 1, "hair": {"_count": 1}}, "brush": {"_count": 1, "with": {"_count": 1}}, "raining": {"_count": 1, "office": {"_count": 1}}, "unnatural": {"_count": 2, "chill": {"_count": 1}, "cold": {"_count": 1}}, "hopelessness": {"_count": 1, "and": {"_count": 1}}, "despair": {"_count": 3, "of": {"_count": 1}, "that": {"_count": 1}, "they": {"_count": 1}}, "claustrophobic": {"_count": 1, "sense": {"_count": 1}}, "prosecutors": {"_count": 1, "from": {"_count": 1}}, "accusers": {"_count": 1, "": {"_count": 1}}, "raised": {"_count": 5, "platform": {"_count": 5}}, "void": {"_count": 1, "the": {"_count": 1}}, "questionnaire": {"_count": 1, "that": {"_count": 1}}, "stubby": {"_count": 1, "fingers": {"_count": 1}}, "pendant": {"_count": 1, "gleaming": {"_count": 1}}, "ruffled": {"_count": 2, "folds": {"_count": 1}, "water": {"_count": 1}}, "Selwyns": {"_count": 1, "": {"_count": 1}}, "balustrade": {"_count": 2, "Mrs": {"_count": 1}, "gone": {"_count": 1}}, "psilver": {"_count": 1, "cat": {"_count": 1}}, "Patronuses": {"_count": 4, "glided": {"_count": 1}, "and": {"_count": 1}, "youll": {"_count": 1}, "left": {"_count": 1}}, "punched": {"_count": 1, "wizard": {"_count": 1}}, "gaudy": {"_count": 1, "glare": {"_count": 1}}, "steakandkidney": {"_count": 1, "pie": {"_count": 1}}, "misshapen": {"_count": 1, "canvas": {"_count": 1}}, "firewhisky": {"_count": 1, "had": {"_count": 1}}, "Cattermoles": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "diffused": {"_count": 1, "light": {"_count": 1}}, "role": {"_count": 1, "of": {"_count": 1}}, "bats": {"_count": 1, "fluttering": {"_count": 1}}, "swinging": {"_count": 2, "pool": {"_count": 1}, "beam": {"_count": 1}}, "split": {"_count": 1, "second": {"_count": 1}}, "delight": {"_count": 1, "upon": {"_count": 1}}, "laughing": {"_count": 1, "boys": {"_count": 1}}, "pursuit": {"_count": 1, "of": {"_count": 1}}, "blondhaired": {"_count": 1, "youths": {"_count": 1}}, "merryfaced": {"_count": 1, "thief": {"_count": 1}}, "bark": {"_count": 2, "with": {"_count": 1}, "of": {"_count": 1}}, "town": {"_count": 1, "when": {"_count": 1}}, "paralyzing": {"_count": 1, "cold": {"_count": 1}}, "eyeless": {"_count": 1, "dementors": {"_count": 1}}, "basis": {"_count": 2, "of": {"_count": 2}}, "foundations": {"_count": 1, "": {"_count": 1}}, "reward": {"_count": 2, "was": {"_count": 1}, "money": {"_count": 1}}, "merry": {"_count": 1, "blondhaired": {"_count": 1}}, "lumps": {"_count": 1, "of": {"_count": 1}}, "cooking": {"_count": 1, "tomorrow": {"_count": 1}}, "cascading": {"_count": 1, "river": {"_count": 1}}, "flesh": {"_count": 2, "colored": {"_count": 1}, "of": {"_count": 1}}, "slapping": {"_count": 1, "sounds": {"_count": 1}}, "tired": {"_count": 1, "man": {"_count": 1}}, "highervoiced": {"_count": 2, "of": {"_count": 1}, "goblin": {"_count": 1}}, "deepervoiced": {"_count": 1, "goblin": {"_count": 1}}, "sayso": {"_count": 1, "from": {"_count": 1}}, "genuine": {"_count": 1, "sword": {"_count": 1}}, "Quibbler": {"_count": 1, "": {"_count": 1}}, "wooded": {"_count": 1, "slope": {"_count": 1}}, "incline": {"_count": 1, "their": {"_count": 1}}, "armpit": {"_count": 1, "": {"_count": 1}}, "painted": {"_count": 4, "blindfold": {"_count": 1}, "tunnel": {"_count": 1}, "figures": {"_count": 1}, "portraits": {"_count": 1}}, "Lovegood": {"_count": 1, "oddity": {"_count": 1}}, "blindfold": {"_count": 1, "again": {"_count": 1}}, "oaf": {"_count": 1, "Hagrid": {"_count": 1}}, "treatment": {"_count": 1, "I": {"_count": 1}}, "swords": {"_count": 2, "said": {"_count": 1}, "blade": {"_count": 1}}, "transparent": {"_count": 1, "barrier": {"_count": 1}}, "riverbank": {"_count": 2, "several": {"_count": 1}, "and": {"_count": 1}}, "heather": {"_count": 1, "walking": {"_count": 1}}, "distraught": {"_count": 1, "Hermione": {"_count": 1}}, "issue": {"_count": 1, "although": {"_count": 1}}, "intensity": {"_count": 2, "with": {"_count": 1}, "of": {"_count": 1}}, "destabilization": {"_count": 1, "of": {"_count": 1}}, "south": {"_count": 2, "of": {"_count": 1}, "coast": {"_count": 1}}, "foresight": {"_count": 1, "to": {"_count": 1}}, "once": {"_count": 1, "": {"_count": 1}}, "nineteenth": {"_count": 1, "century": {"_count": 1}}, "offing": {"_count": 1, "": {"_count": 1}}, "thicker": {"_count": 1, "our": {"_count": 1}}, "images": {"_count": 1, "which": {"_count": 1}}, "stained": {"_count": 2, "glass": {"_count": 1}, "silk": {"_count": 1}}, "nearly": {"_count": 1, "illegible": {"_count": 1}}, "carols": {"_count": 1, "had": {"_count": 1}}, "carol": {"_count": 1, "that": {"_count": 1}}, "cottages": {"_count": 3, "ended": {"_count": 1}, "she": {"_count": 1}, "three": {"_count": 1}}, "rubble": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "waisthigh": {"_count": 1, "grass": {"_count": 1}}, "injuries": {"_count": 1, "from": {"_count": 1}}, "tangles": {"_count": 1, "of": {"_count": 1}}, "violence": {"_count": 1, "that": {"_count": 1}}, "dank": {"_count": 1, "and": {"_count": 1}}, "collection": {"_count": 1, "caught": {"_count": 1}}, "goldenhaired": {"_count": 1, "merryfaced": {"_count": 1}}, "bookcase": {"_count": 1, "": {"_count": 1}}, "unmade": {"_count": 1, "bed": {"_count": 1}}, "shapeless": {"_count": 1, "mass": {"_count": 1}}, "soursmelling": {"_count": 1, "darkness": {"_count": 1}}, "fetid": {"_count": 1, "bedroom": {"_count": 1}}, "bald": {"_count": 1, "man": {"_count": 1}}, "tawdry": {"_count": 1, "Muggle": {"_count": 1}}, "amusement": {"_count": 1, "of": {"_count": 1}}, "pram": {"_count": 1, "pushed": {"_count": 1}}, "crib": {"_count": 3, "behind": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "destruction": {"_count": 3, "of": {"_count": 3}}, "quality": {"_count": 1, "of": {"_count": 1}}, "sweaty": {"_count": 1, "Tshirt": {"_count": 1}}, "halfhealed": {"_count": 1, "puncture": {"_count": 1}}, "puncture": {"_count": 1, "marks": {"_count": 1}}, "calamity": {"_count": 1, "of": {"_count": 1}}, "needle": {"_count": 1, "of": {"_count": 1}}, "mokeskin": {"_count": 1, "and": {"_count": 1}}, "Barnabus": {"_count": 1, "Finkley": {"_count": 1}}, "dimwitted": {"_count": 1, "but": {"_count": 1}}, "cauldrons": {"_count": 1, "empty": {"_count": 1}}, "bestkept": {"_count": 1, "secret": {"_count": 1}}, "attainment": {"_count": 1, "of": {"_count": 1}}, "ruled": {"_count": 1, "": {"_count": 1}}, "Muggleboms": {"_count": 1, "greatest": {"_count": 1}}, "pleas": {"_count": 1, "of": {"_count": 1}}, "inadvertent": {"_count": 1, "victim": {"_count": 1}}, "embodiment": {"_count": 1, "of": {"_count": 1}}, "Greater": {"_count": 2, "Good": {"_count": 2}}, "atrocities": {"_count": 1, "he": {"_count": 1}}, "pearly": {"_count": 2, "sky": {"_count": 1}, "white": {"_count": 1}}, "emptiness": {"_count": 1, "and": {"_count": 1}}, "dismissal": {"_count": 1, "": {"_count": 1}}, "useful": {"_count": 1, "bright": {"_count": 1}}, "sweaters": {"_count": 1, "he": {"_count": 1}}, "vastness": {"_count": 1, "of": {"_count": 1}}, "doe": {"_count": 7, "made": {"_count": 1}, "faded": {"_count": 1}, "which": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "first": {"_count": 1}, "": {"_count": 1}}, "wandtip": {"_count": 1, "ignited": {"_count": 1}}, "strangling": {"_count": 1, "chain": {"_count": 1}}, "incalculable": {"_count": 1, "power": {"_count": 1}}, "damn": {"_count": 1, "thing": {"_count": 1}}, "effing": {"_count": 1, "thing": {"_count": 1}}, "frantically": {"_count": 1, "swiveling": {"_count": 1}}, "RiddleHarry": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "RiddleHermione": {"_count": 2, "who": {"_count": 1}, "were": {"_count": 1}}, "stillsopping": {"_count": 1, "back": {"_count": 1}}, "bluebell": {"_count": 1, "flames": {"_count": 1}}, "radio": {"_count": 5, "theyre": {"_count": 1}, "really": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}}, "Snatchers": {"_count": 9, "with": {"_count": 1}, "caught": {"_count": 2}, "skulking": {"_count": 1}, "strode": {"_count": 1}, "": {"_count": 1}, "forced": {"_count": 1}, "was": {"_count": 1}, "by": {"_count": 1}}, "vanquished": {"_count": 1, "Horcrux": {"_count": 1}}, "recovery": {"_count": 1, "of": {"_count": 1}}, "Taboo": {"_count": 1, "": {"_count": 1}}, "web": {"_count": 1, "": {"_count": 1}}, "blackthorn": {"_count": 13, "wand": {"_count": 11}, "wands": {"_count": 1}, "one": {"_count": 1}}, "A": {"_count": 1, "of": {"_count": 1}}, "breezy": {"_count": 1, "hillside": {"_count": 1}}, "breaks": {"_count": 1, "between": {"_count": 1}}, "unforgettable": {"_count": 1, "occasion": {"_count": 1}}, "machine": {"_count": 1, "seized": {"_count": 1}}, "grooved": {"_count": 1, "markings": {"_count": 1}}, "exquisite": {"_count": 1, "Snorkack": {"_count": 1}}, "printing": {"_count": 4, "press": {"_count": 4}}, "Wrackspurt": {"_count": 1, "siphons": {"_count": 1}}, "thinkers": {"_count": 1, "immediate": {"_count": 1}}, "Dirigible": {"_count": 1, "Plum": {"_count": 1}}, "Deathly": {"_count": 25, "Hallows": {"_count": 25}}, "Hallows": {"_count": 21, "at": {"_count": 1}, "Quest": {"_count": 1}, "": {"_count": 8}, "story": {"_count": 1}, "facing": {"_count": 1}, "as": {"_count": 2}, "burned": {"_count": 1}, "consumed": {"_count": 1}, "for": {"_count": 1}, "murmured": {"_count": 1}, "but": {"_count": 1}, "when": {"_count": 1}, "Harry": {"_count": 1}}, "Quest": {"_count": 1, "": {"_count": 1}}, "treacherous": {"_count": 1, "water": {"_count": 1}}, "humblest": {"_count": 1, "and": {"_count": 1}}, "wisest": {"_count": 1, "of": {"_count": 1}}, "adventure": {"_count": 1, "they": {"_count": 1}}, "Elder": {"_count": 52, "Wand": {"_count": 51}, "Wands": {"_count": 1}}, "duel": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "mortal": {"_count": 1, "world": {"_count": 1}}, "possessor": {"_count": 4, "master": {"_count": 3}, "of": {"_count": 1}}, "ludicrous": {"_count": 2, "headdress": {"_count": 2}}, "Third": {"_count": 1, "Hallow": {"_count": 1}}, "wearer": {"_count": 3, "completely": {"_count": 2}, "": {"_count": 1}}, "Resurrection": {"_count": 8, "Stone": {"_count": 8}}, "pebbles": {"_count": 1, "in": {"_count": 1}}, "Hallow": {"_count": 4, "that": {"_count": 2}, "": {"_count": 1}, "I": {"_count": 1}}, "Egregious": {"_count": 1, "after": {"_count": 1}}, "Peverells": {"_count": 6, "have": {"_count": 1}, "": {"_count": 4}, "were": {"_count": 1}}, "Poisoning": {"_count": 1, "Department": {"_count": 1}}, "Wand": {"_count": 6, "of": {"_count": 5}, "I": {"_count": 1}}, "possession": {"_count": 2, "of": {"_count": 2}}, "Deathstick": {"_count": 7, "and": {"_count": 2}, "unbeatable": {"_count": 1}, "the": {"_count": 2}, "is": {"_count": 1}, "": {"_count": 1}}, "magazines": {"_count": 1, "her": {"_count": 1}}, "Erumpent": {"_count": 1, "horn": {"_count": 1}}, "collapsing": {"_count": 1, "house": {"_count": 1}}, "cuts": {"_count": 1, "to": {"_count": 1}}, "inmates": {"_count": 1, "about": {"_count": 1}}, "male": {"_count": 2, "line": {"_count": 2}}, "earliest": {"_count": 1, "families": {"_count": 1}}, "scratches": {"_count": 1, "on": {"_count": 1}}, "master": {"_count": 2, "of": {"_count": 1}, "it": {"_count": 1}}, "cloth": {"_count": 2, "supple": {"_count": 1}, "he": {"_count": 1}}, "fiercer": {"_count": 1, "the": {"_count": 1}}, "relentless": {"_count": 1, "rain": {"_count": 1}}, "indistinct": {"_count": 1, "features": {"_count": 1}}, "programs": {"_count": 1, "are": {"_count": 1}}, "dials": {"_count": 1, "whirled": {"_count": 1}}, "airwaves": {"_count": 1, "which": {"_count": 1}}, "unnamed": {"_count": 1, "but": {"_count": 1}}, "morale": {"_count": 1, "of": {"_count": 1}}, "Chief": {"_count": 2, "Death": {"_count": 2}}, "alleged": {"_count": 1, "sightings": {"_count": 1}}, "tuning": {"_count": 1, "panel": {"_count": 1}}, "broadcast": {"_count": 1, "was": {"_count": 1}}, "softness": {"_count": 1, "of": {"_count": 1}}, "diaphragm": {"_count": 1, "that": {"_count": 1}}, "jeering": {"_count": 1, "of": {"_count": 1}}, "ole": {"_count": 1, "lot": {"_count": 1}}, "Propheti": {"_count": 1, "As": {"_count": 1}}, "pull": {"_count": 1, "of": {"_count": 1}}, "taut": {"_count": 1, "scar": {"_count": 1}}, "slit": {"_count": 2, "of": {"_count": 1}, "pupils": {"_count": 1}}, "celllike": {"_count": 1, "room": {"_count": 1}}, "abstract": {"_count": 1, "furls": {"_count": 1}}, "Prophett": {"_count": 1, "Look": {"_count": 1}}, "Granger": {"_count": 2, "girl": {"_count": 2}}, "bound": {"_count": 1, "prisoners": {"_count": 1}}, "Snatcher": {"_count": 1, "had": {"_count": 1}}, "slammed": {"_count": 1, "cellar": {"_count": 1}}, "nail": {"_count": 1, "": {"_count": 1}}, "luminescent": {"_count": 1, "spheres": {"_count": 1}}, "humans": {"_count": 1, "": {"_count": 1}}, "cellars": {"_count": 1, "darkness": {"_count": 1}}, "wandmakers": {"_count": 1, "hands": {"_count": 1}}, "ratlike": {"_count": 1, "mans": {"_count": 1}}, "prickling": {"_count": 1, "of": {"_count": 1}}, "triple": {"_count": 1, "spell": {"_count": 1}}, "groaning": {"_count": 1, "goblin": {"_count": 1}}, "destination": {"_count": 1, "and": {"_count": 1}}, "injured": {"_count": 3, "Griphook": {"_count": 1}, "his": {"_count": 1}, "girl": {"_count": 1}}, "manual": {"_count": 1, "work": {"_count": 1}}, "nonmagic": {"_count": 1, "of": {"_count": 1}}, "recitation": {"_count": 1, "of": {"_count": 1}}, "stateliness": {"_count": 1, "of": {"_count": 1}}, "mend": {"_count": 1, "Fleurs": {"_count": 1}}, "conviction": {"_count": 1, "the": {"_count": 1}}, "ocean": {"_count": 1, "and": {"_count": 1}}, "hells": {"_count": 1, "going": {"_count": 1}}, "vault": {"_count": 15, "we": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 2}, "of": {"_count": 1}, "without": {"_count": 1}, "melted": {"_count": 1}, "Its": {"_count": 1}, "felt": {"_count": 1}, "door": {"_count": 1}, "opened": {"_count": 1}, "at": {"_count": 1}}, "respect": {"_count": 1, "that": {"_count": 1}}, "wandcarriers": {"_count": 1, "protests": {"_count": 1}}, "pulsing": {"_count": 1, "of": {"_count": 1}}, "stilldark": {"_count": 1, "landing": {"_count": 1}}, "blanket": {"_count": 1, "could": {"_count": 1}}, "manner": {"_count": 1, "of": {"_count": 1}}, "conquered": {"_count": 1, "wand": {"_count": 1}}, "visions": {"_count": 1, "that": {"_count": 1}}, "predawn": {"_count": 1, "coming": {"_count": 1}}, "clifftop": {"_count": 2, "garden": {"_count": 1}, "view": {"_count": 1}}, "beloved": {"_count": 1, "castle": {"_count": 1}}, "breathing": {"_count": 1, "of": {"_count": 1}}, "tomb": {"_count": 1, "": {"_count": 1}}, "internal": {"_count": 1, "arguments": {"_count": 1}}, "airy": {"_count": 1, "light": {"_count": 1}}, "Firsts": {"_count": 1, "taken": {"_count": 1}}, "purebloodloving": {"_count": 1, "Slytherin": {"_count": 1}}, "handover": {"_count": 1, "of": {"_count": 1}}, "false": {"_count": 1, "sword": {"_count": 1}}, "vaults": {"_count": 1, "are": {"_count": 1}}, "cupboardlike": {"_count": 1, "room": {"_count": 1}}, "stillfrail": {"_count": 1, "Ollivander": {"_count": 1}}, "arrangement": {"_count": 1, "could": {"_count": 1}}, "knives": {"_count": 1, "sliced": {"_count": 1}}, "casserole": {"_count": 1, "dish": {"_count": 1}}, "lowhanging": {"_count": 1, "lamp": {"_count": 1}}, "lost": {"_count": 5, "diadem": {"_count": 5}}, "billywig": {"_count": 1, "wings": {"_count": 1}}, "making": {"_count": 1, "": {"_count": 1}}, "stillvoluble": {"_count": 1, "voices": {"_count": 1}}, "purchaser": {"_count": 1, "": {"_count": 1}}, "fiercest": {"_count": 1, "of": {"_count": 1}}, "walnut": {"_count": 2, "wand": {"_count": 1}, "wands": {"_count": 1}}, "hawthorn": {"_count": 4, "wand": {"_count": 4}}, "lastminute": {"_count": 1, "stuff": {"_count": 1}}, "confinement": {"_count": 1, "of": {"_count": 1}}, "planned": {"_count": 1, "doublecross": {"_count": 1}}, "beard": {"_count": 1, "too": {"_count": 1}}, "malevolent": {"_count": 1, "aura": {"_count": 1}}, "fading": {"_count": 1, "stars": {"_count": 1}}, "surprising": {"_count": 1, "strength": {"_count": 1}}, "hangdog": {"_count": 1, "expressions": {"_count": 1}}, "stooped": {"_count": 1, "and": {"_count": 1}}, "nondescript": {"_count": 1, "wall": {"_count": 1}}, "bricks": {"_count": 1, "began": {"_count": 1}}, "bustling": {"_count": 1, "place": {"_count": 1}}, "beggars": {"_count": 1, "glimpsed": {"_count": 1}}, "bloodied": {"_count": 1, "bandage": {"_count": 1}}, "snowywhite": {"_count": 1, "Gringotts": {"_count": 1}}, "liveried": {"_count": 1, "goblins": {"_count": 1}}, "guards": {"_count": 2, "in": {"_count": 1}, "gave": {"_count": 1}}, "sinews": {"_count": 1, "and": {"_count": 1}}, "Clankers": {"_count": 5, "he": {"_count": 1}, "": {"_count": 2}, "come": {"_count": 1}, "and": {"_count": 1}}, "Imperiused": {"_count": 2, "goblin": {"_count": 1}, "up": {"_count": 1}}, "labyrinthine": {"_count": 1, "passages": {"_count": 1}}, "deluge": {"_count": 1, "onto": {"_count": 1}}, "waterfall": {"_count": 1, "and": {"_count": 1}}, "treasure": {"_count": 1, "you": {"_count": 1}}, "heaving": {"_count": 1, "sea": {"_count": 1}}, "swell": {"_count": 1, "of": {"_count": 1}}, "blind": {"_count": 2, "dragon": {"_count": 1}, "eyes": {"_count": 1}}, "pursuing": {"_count": 1, "goblins": {"_count": 1}}, "crashing": {"_count": 1, "of": {"_count": 1}}, "fresher": {"_count": 1, "air": {"_count": 1}}, "metallic": {"_count": 1, "scales": {"_count": 1}}, "sails": {"_count": 1, "of": {"_count": 1}}, "capital": {"_count": 1, "": {"_count": 1}}, "drop": {"_count": 1, "was": {"_count": 1}}, "upside": {"_count": 1, "said": {"_count": 1}}, "reddening": {"_count": 1, "sky": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "PPotter": {"_count": 1, "bboy": {"_count": 1}}, "kneeling": {"_count": 1, "goblin": {"_count": 1}}, "root": {"_count": 1, "of": {"_count": 1}}, "ignominy": {"_count": 1, "of": {"_count": 1}}, "killer": {"_count": 1, "of": {"_count": 1}}, "quest": {"_count": 1, "for": {"_count": 1}}, "failing": {"_count": 1, "sun": {"_count": 1}}, "rapidly": {"_count": 2, "darkening": {"_count": 1}, "filling": {"_count": 1}}, "achingly": {"_count": 1, "familiar": {"_count": 1}}, "curve": {"_count": 1, "in": {"_count": 1}}, "environment": {"_count": 1, "right": {"_count": 1}}, "pitchblackness": {"_count": 1, "he": {"_count": 1}}, "stuttering": {"_count": 1, "light": {"_count": 1}}, "Caterwauling": {"_count": 1, "Charm": {"_count": 1}}, "crackle": {"_count": 1, "of": {"_count": 1}}, "surfeit": {"_count": 1, "of": {"_count": 1}}, "offensive": {"_count": 1, "instead": {"_count": 1}}, "rosy": {"_count": 1, "light": {"_count": 1}}, "doubts": {"_count": 1, "and": {"_count": 1}}, "bastards": {"_count": 1, "that": {"_count": 1}}, "goats": {"_count": 1, "": {"_count": 1}}, "flashing": {"_count": 1, "lights": {"_count": 1}}, "how": {"_count": 1, "": {"_count": 1}}, "natural": {"_count": 2, "order": {"_count": 1}, "successor": {"_count": 1}}, "matteroffact": {"_count": 1, "tone": {"_count": 1}}, "leaders": {"_count": 1, "": {"_count": 1}}, "breast": {"_count": 1, "pocket": {"_count": 1}}, "loopholes": {"_count": 1, "": {"_count": 1}}, "diadem": {"_count": 29, "vanished": {"_count": 1}, "looks": {"_count": 2}, "of": {"_count": 3}, "if": {"_count": 1}, "": {"_count": 7}, "that": {"_count": 2}, "in": {"_count": 2}, "she": {"_count": 1}, "bestows": {"_count": 1}, "from": {"_count": 3}, "repeated": {"_count": 1}, "was": {"_count": 1}, "once": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 1}, "soared": {"_count": 1}}, "diadems": {"_count": 1, "supposed": {"_count": 1}}, "poltergeists": {"_count": 1, "approach": {"_count": 1}}, "midnightblue": {"_count": 1, "carpet": {"_count": 1}}, "Carrow": {"_count": 1, "brother": {"_count": 1}}, "knocker": {"_count": 1, "and": {"_count": 1}}, "disbelief": {"_count": 1, "and": {"_count": 1}}, "groggy": {"_count": 1, "Death": {"_count": 1}}, "blueandgold": {"_count": 1, "ceiling": {"_count": 1}}, "swiftness": {"_count": 1, "of": {"_count": 1}}, "daggers": {"_count": 1, "sank": {"_count": 1}}, "Snapeshaped": {"_count": 1, "hole": {"_count": 1}}, "Inferifilled": {"_count": 1, "lake": {"_count": 1}}, "horde": {"_count": 1, "of": {"_count": 1}}, "reconciliation": {"_count": 1, "to": {"_count": 1}}, "evacuation": {"_count": 1, "point": {"_count": 1}}, "eardrums": {"_count": 1, "that": {"_count": 1}}, "passageways": {"_count": 1, "into": {"_count": 1}}, "troops": {"_count": 1, "": {"_count": 1}}, "density": {"_count": 1, "of": {"_count": 1}}, "clamor": {"_count": 1, "": {"_count": 1}}, "Gray": {"_count": 3, "Lady": {"_count": 3}}, "location": {"_count": 1, "of": {"_count": 1}}, "boarhounds": {"_count": 1, "attentions": {"_count": 1}}, "beaten": {"_count": 1, "track": {"_count": 1}}, "grip": {"_count": 1, "of": {"_count": 1}}, "minutes": {"_count": 1, "that": {"_count": 1}}, "north": {"_count": 1, "battlements": {"_count": 1}}, "bidding": {"_count": 1, "of": {"_count": 1}}, "labyrinth": {"_count": 1, "he": {"_count": 1}}, "blistered": {"_count": 1, "old": {"_count": 1}}, "fiftyfoot": {"_count": 1, "mountain": {"_count": 1}}, "destabilized": {"_count": 1, "wall": {"_count": 1}}, "slowwittedness": {"_count": 1, "of": {"_count": 1}}, "bulwark": {"_count": 1, "of": {"_count": 1}}, "detritus": {"_count": 1, "of": {"_count": 1}}, "inferno": {"_count": 1, "": {"_count": 1}}, "horned": {"_count": 1, "beak": {"_count": 1}}, "contraband": {"_count": 1, "of": {"_count": 1}}, "marauding": {"_count": 1, "monsters": {"_count": 1}}, "firestorm": {"_count": 1, "below": {"_count": 1}}, "billowing": {"_count": 2, "black": {"_count": 1}, "clouds": {"_count": 1}}, "devouring": {"_count": 1, "flames": {"_count": 1}}, "maw": {"_count": 1, "of": {"_count": 1}}, "retreating": {"_count": 2, "ghosts": {"_count": 1}, "crowd": {"_count": 1}}, "substances": {"_count": 1, "that": {"_count": 1}}, "impossibility": {"_count": 1, "because": {"_count": 1}}, "grime": {"_count": 1, "coating": {"_count": 1}}, "discordant": {"_count": 1, "sounds": {"_count": 1}}, "assault": {"_count": 1, "on": {"_count": 1}}, "screeches": {"_count": 1, "and": {"_count": 1}}, "smashes": {"_count": 1, "and": {"_count": 1}}, "concealing": {"_count": 1, "tapestry": {"_count": 1}}, "shimmer": {"_count": 1, "of": {"_count": 1}}, "slimy": {"_count": 1, "green": {"_count": 1}}, "balcony": {"_count": 1, "overhead": {"_count": 1}}, "feebly": {"_count": 1, "stirring": {"_count": 1}}, "onslaught": {"_count": 1, "of": {"_count": 1}}, "savagery": {"_count": 1, "of": {"_count": 1}}, "reality": {"_count": 1, "seemed": {"_count": 1}}, "flattened": {"_count": 1, "serpentine": {"_count": 1}}, "pallor": {"_count": 1, "of": {"_count": 1}}, "coiling": {"_count": 2, "snake": {"_count": 1}, "serpent": {"_count": 1}}, "slithering": {"_count": 1, "of": {"_count": 1}}, "brink": {"_count": 1, "of": {"_count": 1}}, "residents": {"_count": 1, "of": {"_count": 1}}, "paintings": {"_count": 1, "that": {"_count": 1}}, "elder": {"_count": 1, "of": {"_count": 1}}, "heels": {"_count": 1, "of": {"_count": 1}}, "blossom": {"_count": 1, "and": {"_count": 1}}, "sallow": {"_count": 1, "cheeks": {"_count": 1}}, "ridiculously": {"_count": 1, "large": {"_count": 1}}, "smock": {"_count": 1, "beneath": {"_count": 1}}, "twig": {"_count": 1, "leaned": {"_count": 1}}, "defensive": {"_count": 1, "": {"_count": 1}}, "windowpane": {"_count": 1, "": {"_count": 1}}, "exhilaration": {"_count": 1, "in": {"_count": 1}}, "tradition": {"_count": 1, "": {"_count": 1}}, "unforgivable": {"_count": 1, "word": {"_count": 1}}, "protracted": {"_count": 1, "and": {"_count": 1}}, "mercy": {"_count": 1, "of": {"_count": 1}}, "portion": {"_count": 1, "showing": {"_count": 1}}, "Forest": {"_count": 1, "of": {"_count": 1}}, "carpeted": {"_count": 1, "floor": {"_count": 1}}, "incontrovertible": {"_count": 1, "truth": {"_count": 1}}, "attempts": {"_count": 1, "they": {"_count": 1}}, "mourners": {"_count": 1, "were": {"_count": 1}}, "deathly": {"_count": 1, "stillness": {"_count": 1}}, "gleam": {"_count": 1, "of": {"_count": 1}}, "vertical": {"_count": 1, "line": {"_count": 1}}, "swarm": {"_count": 1, "of": {"_count": 1}}, "leaping": {"_count": 1, "flames": {"_count": 1}}, "lipless": {"_count": 1, "mouth": {"_count": 1}}, "unformed": {"_count": 1, "nothingness": {"_count": 1}}, "noises": {"_count": 1, "": {"_count": 1}}, "flayed": {"_count": 1, "child": {"_count": 1}}, "piercingly": {"_count": 1, "blue": {"_count": 1}}, "whimpering": {"_count": 1, "and": {"_count": 1}}, "agonized": {"_count": 1, "creature": {"_count": 1}}, "attempted": {"_count": 1, "killing": {"_count": 1}}, "brilliantly": {"_count": 1, "blue": {"_count": 1}}, "ages": {"_count": 1, "father": {"_count": 1}}, "revolution": {"_count": 1, "": {"_count": 1}}, "plans": {"_count": 1, "we": {"_count": 1}}, "lifting": {"_count": 1, "of": {"_count": 1}}, "trio": {"_count": 1, "for": {"_count": 1}}, "truths": {"_count": 1, "he": {"_count": 1}}, "mantle": {"_count": 1, "because": {"_count": 1}}, "fascination": {"_count": 1, "it": {"_count": 1}}, "whimperings": {"_count": 1, "of": {"_count": 1}}, "rawlooking": {"_count": 1, "thing": {"_count": 1}}, "hinge": {"_count": 1, "of": {"_count": 1}}, "bruise": {"_count": 1, "of": {"_count": 1}}, "conquering": {"_count": 1, "army": {"_count": 1}}, "closegrowing": {"_count": 1, "trees": {"_count": 1}}, "lightening": {"_count": 1, "of": {"_count": 1}}, "rasping": {"_count": 1, "breath": {"_count": 1}}, "reddish": {"_count": 1, "glow": {"_count": 1}}, "survivors": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "defenders": {"_count": 1, "of": {"_count": 1}}, "challengers": {"_count": 1, "wand": {"_count": 1}}, "noman": {"_count": 1, "s": {"_count": 1}}, "silkiness": {"_count": 1, "of": {"_count": 1}}, "mildewed": {"_count": 1, "object": {"_count": 1}}, "twangs": {"_count": 1, "of": {"_count": 1}}, "clashing": {"_count": 1, "giants": {"_count": 1}}, "stampeding": {"_count": 1, "centaurs": {"_count": 1}}, "reinforcements": {"_count": 1, "that": {"_count": 1}}, "shopkeepers": {"_count": 1, "and": {"_count": 1}}, "unerring": {"_count": 1, "skill": {"_count": 1}}, "bereaved": {"_count": 1, "clasp": {"_count": 1}}, "rebirth": {"_count": 1, "of": {"_count": 1}}, "pride": {"_count": 1, "and": {"_count": 1}}, "gratitude": {"_count": 1, "emanating": {"_count": 1}}, "holly": {"_count": 1, "and": {"_count": 1}}, "laden": {"_count": 1, "trolleys": {"_count": 1}}, "redheaded": {"_count": 1, "girl": {"_count": 1}}, "hazy": {"_count": 1, "forms": {"_count": 1}}, "vapor": {"_count": 1, "was": {"_count": 1}}, "wonder": {"_count": 1, "in": {"_count": 1}}, "autumn": {"_count": 1, "air": {"_count": 1}}}, "last": {"_count": 1029, "people": {"_count": 1, "youd": {"_count": 1}}, "": {"_count": 61, "!": {"_count": 2}, ".": {"_count": 59}}, "report": {"_count": 1, "on": {"_count": 1}}, "comforting": {"_count": 1, "thought": {"_count": 1}}, "the": {"_count": 17, "Muggles": {"_count": 1}, "desserts": {"_count": 1}, "term": {"_count": 1}, "final": {"_count": 1}, "train": {"_count": 2}, "carriage": {"_count": 1}, "fire": {"_count": 1}, "golden": {"_count": 1}, "tumult": {"_count": 1}, "bell": {"_count": 1}, "surrounding": {"_count": 1}, "weird": {"_count": 1}, "door": {"_count": 1}, "Fidelius": {"_count": 1}, "man": {"_count": 1}, "tunnel": {"_count": 1}}, "night": {"_count": 72, "Voldemort": {"_count": 1}, "": {"_count": 28}, "give": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 2}, "we": {"_count": 1}, "staring": {"_count": 1}, "that": {"_count": 4}, "when": {"_count": 4}, "your": {"_count": 1}, "in": {"_count": 3}, "I": {"_count": 3}, "Harry": {"_count": 2}, "he": {"_count": 1}, "said": {"_count": 5}, "after": {"_count": 4}, "but": {"_count": 1}, "retorted": {"_count": 1}, "the": {"_count": 2}, "whenever": {"_count": 1}, "it": {"_count": 1}, "on": {"_count": 1}, "you": {"_count": 1}, "Merope": {"_count": 1}, "she": {"_count": 1}}, "place": {"_count": 3, "you": {"_count": 1}, "": {"_count": 1}, "anyone": {"_count": 1}}, "year": {"_count": 76, "": {"_count": 33}, "the": {"_count": 1}, "only": {"_count": 1}, "enjoys": {"_count": 1}, "some": {"_count": 1}, "seemed": {"_count": 1}, "in": {"_count": 1}, "when": {"_count": 3}, "had": {"_count": 1}, "he": {"_count": 2}, "Harry": {"_count": 1}, "possibly": {"_count": 1}, "for": {"_count": 2}, "too": {"_count": 2}, "alone": {"_count": 1}, "here": {"_count": 1}, "your": {"_count": 1}, "yet": {"_count": 1}, "didnt": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "getting": {"_count": 1}, "said": {"_count": 4}, "having": {"_count": 1}, "after": {"_count": 1}, "did": {"_count": 1}, "that": {"_count": 1}, "so": {"_count": 1}, "I": {"_count": 2}, "you": {"_count": 1}, "a": {"_count": 1}, "Id": {"_count": 1}, "with": {"_count": 1}}, "outside": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 11, "take": {"_count": 1}, "be": {"_count": 1}, "stop": {"_count": 1}, "leave": {"_count": 3}, "loud": {"_count": 1}, "look": {"_count": 1}, "allow": {"_count": 1}, "purchase": {"_count": 1}, "come": {"_count": 1}}, "time": {"_count": 85, "Dudley": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 17}, "theyd": {"_count": 1}, "hed": {"_count": 2}, "the": {"_count": 5}, "was": {"_count": 2}, "hell": {"_count": 1}, "Lucius": {"_count": 1}, "we": {"_count": 2}, "all": {"_count": 1}, "Indeed": {"_count": 1}, "a": {"_count": 1}, "did": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}, "they": {"_count": 8}, "your": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 2}, "Dobby": {"_count": 1}, "I": {"_count": 8}, "but": {"_count": 2}, "he": {"_count": 5}, "Mundungus": {"_count": 1}, "somewhere": {"_count": 1}, "you": {"_count": 3}, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}, "when": {"_count": 2}, "said": {"_count": 1}, "of": {"_count": 1}, "just": {"_count": 1}, "it": {"_count": 1}, "yeh": {"_count": 1}, "anyone": {"_count": 1}, "upon": {"_count": 1}, "out": {"_count": 1}}, "terrified": {"_count": 1, "look": {"_count": 1}}, "Hagrid": {"_count": 3, "managed": {"_count": 1}, "gave": {"_count": 1}, "looked": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}, "beside": {"_count": 1, "a": {"_count": 1}}, "shop": {"_count": 1, "was": {"_count": 1}}, "month": {"_count": 5, "with": {"_count": 1}, "said": {"_count": 1}, "Moody": {"_count": 1}, "he": {"_count": 1}, "shook": {"_count": 1}}, "day": {"_count": 6, "of": {"_count": 5}, "": {"_count": 1}}, "backpack": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 15, "youngest": {"_count": 1}, "joined": {"_count": 1}, "worst": {"_count": 2}, "finally": {"_count": 1}, "well": {"_count": 1}, "vomited": {"_count": 1}, "gave": {"_count": 1}, "find": {"_count": 1}, "slamming": {"_count": 1}, "as": {"_count": 1}, "youre": {"_count": 1}, "within": {"_count": 1}, "greatest": {"_count": 1}, "resumed": {"_count": 1}}, "tucked": {"_count": 1, "away": {"_count": 1}}, "look": {"_count": 7, "at": {"_count": 5}, "a": {"_count": 1}, "of": {"_count": 1}}, "of": {"_count": 23, "the": {"_count": 13}, "their": {"_count": 1}, "Fred": {"_count": 1}, "his": {"_count": 5}, "them": {"_count": 2}, "Lily": {"_count": 1}}, "onto": {"_count": 1, "smooth": {"_count": 1}}, "Potter": {"_count": 3, "Harry": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "thing": {"_count": 31, "Harry": {"_count": 1}, "they": {"_count": 2}, "he": {"_count": 8}, "we": {"_count": 3}, "I": {"_count": 5}, "yeh": {"_count": 1}, "anyone": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 2}, "wed": {"_count": 1}, "she": {"_count": 1}, "then": {"_count": 1}, "you": {"_count": 2}, "and": {"_count": 1}, "said": {"_count": 1}}, "word": {"_count": 11, "to": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}, "caught": {"_count": 1}, "for": {"_count": 1}, "came": {"_count": 1}, "there": {"_count": 1}}, "only": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "few": {"_count": 29, "lines": {"_count": 1}, "hours": {"_count": 3}, "steps": {"_count": 3}, "books": {"_count": 1}, "months": {"_count": 1}, "words": {"_count": 1}, "weeks": {"_count": 5}, "years": {"_count": 1}, "days": {"_count": 3}, "drops": {"_count": 1}, "feet": {"_count": 1}, "stairs": {"_count": 2}, "footsteps": {"_count": 1}, "practices": {"_count": 1}, "minutes": {"_count": 2}, "mouthfuls": {"_count": 1}, "objects": {"_count": 1}}, "five": {"_count": 2, "four": {"_count": 1}, "minutes": {"_count": 1}}, "match": {"_count": 7, "by": {"_count": 1}, "you": {"_count": 1}, "Gryffindor": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 1}}, "meal": {"_count": 1, "Potter": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "minute": {"_count": 3, "": {"_count": 1}, "Quidditch": {"_count": 1}, "studying": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "ball": {"_count": 1, "": {"_count": 1}}, "person": {"_count": 5, "to": {"_count": 1}, "Harry": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}, "Zacharias": {"_count": 1}}, "tree": {"_count": 1, "put": {"_count": 1}}, "one": {"_count": 14, "from": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 5}, "who": {"_count": 1}, "against": {"_count": 1}, "evening": {"_count": 1}, "got": {"_count": 1}, "and": {"_count": 1}, "however": {"_count": 1}, "he": {"_count": 1}}, "she": {"_count": 8, "found": {"_count": 1}, "clapped": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}, "came": {"_count": 2}}, "hour": {"_count": 3, "in": {"_count": 1}, "had": {"_count": 1}, "as": {"_count": 1}}, "words": {"_count": 4, "": {"_count": 1}, "Ron": {"_count": 1}, "is": {"_count": 1}, "Albus": {"_count": 1}}, "week": {"_count": 21, "had": {"_count": 1}, "": {"_count": 8}, "of": {"_count": 4}, "Harry": {"_count": 1}, "said": {"_count": 1}, "one": {"_count": 1}, "was": {"_count": 1}, "as": {"_count": 1}, "Professor": {"_count": 1}, "and": {"_count": 1}, "Lovegood": {"_count": 1}}, "Norbert": {"_count": 1, "was": {"_count": 1}}, "Quidditch": {"_count": 4, "match": {"_count": 4}}, "Wednesday": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "he": {"_count": 28, "said": {"_count": 5}, "managed": {"_count": 1}, "forced": {"_count": 1}, "held": {"_count": 1}, "felt": {"_count": 1}, "had": {"_count": 4}, "heard": {"_count": 1}, "seemed": {"_count": 2}, "Ron": {"_count": 1}, "reached": {"_count": 1}, "located": {"_count": 1}, "extricated": {"_count": 1}, "found": {"_count": 2}, "spluttered": {"_count": 1}, "stood": {"_count": 1}, "cleared": {"_count": 1}, "stopped": {"_count": 1}, "flung": {"_count": 1}, "knew": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "exam": {"_count": 3, "was": {"_count": 2}, "on": {"_count": 1}}, "desperate": {"_count": 2, "look": {"_count": 1}, "hope": {"_count": 1}}, "chamber": {"_count": 1, "": {"_count": 1}}, "checkup": {"_count": 1, "so": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 1}, "came": {"_count": 1}}, "term": {"_count": 9, "Harry": {"_count": 1}, "": {"_count": 3}, "when": {"_count": 1}, "to": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}, "might": {"_count": 1}}, "exhausted": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "six": {"_count": 2, "steps": {"_count": 1}, "months": {"_count": 1}}, "panting": {"_count": 1, "they": {"_count": 1}}, "nighti": {"_count": 1, "shouted": {"_count": 1}}, "evening": {"_count": 3, "Mrs": {"_count": 1}, "of": {"_count": 1}, "at": {"_count": 1}}, "mug": {"_count": 1, "of": {"_count": 1}}, "they": {"_count": 20, "were": {"_count": 2}, "reached": {"_count": 8}, "heard": {"_count": 1}, "got": {"_count": 1}, "emerged": {"_count": 1}, "had": {"_count": 2}, "rolled": {"_count": 1}, "rejoined": {"_count": 1}, "found": {"_count": 1}, "flopped": {"_count": 1}, "arrived": {"_count": 1}}, "snort": {"_count": 1, "from": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "jerking": {"_count": 1, "Harry": {"_count": 1}}, "defeat": {"_count": 1, "was": {"_count": 1}}, "deserted": {"_count": 1, "passage": {"_count": 1}}, "Dumbledore": {"_count": 1, "straightened": {"_count": 1}}, "seemed": {"_count": 1, "ready": {"_count": 1}}, "practice": {"_count": 1, "and": {"_count": 1}}, "smashed": {"_count": 1, "into": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 1}, "line": {"_count": 1}, "the": {"_count": 3}}, "Herbology": {"_count": 1, "lesson": {"_count": 1}}, "slightly": {"_count": 1, "dizzy": {"_count": 1}}, "present": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 3, "a": {"_count": 3}}, "something": {"_count": 2, "happened": {"_count": 1}, "had": {"_count": 1}}, "long": {"_count": 3, "": {"_count": 2}, "shes": {"_count": 1}}, "hope": {"_count": 6, "occurred": {"_count": 1}, "was": {"_count": 1}, "for": {"_count": 2}, "": {"_count": 2}}, "after": {"_count": 3, "several": {"_count": 1}, "many": {"_count": 1}, "over": {"_count": 1}}, "as": {"_count": 5, "he": {"_count": 2}, "wide": {"_count": 1}, "Mrs": {"_count": 1}, "Harry": {"_count": 1}}, "pair": {"_count": 2, "of": {"_count": 2}}, "by": {"_count": 3, "the": {"_count": 2}, "Mrs": {"_count": 1}}, "victim": {"_count": 1, "of": {"_count": 1}}, "remaining": {"_count": 3, "descendant": {"_count": 1}, "member": {"_count": 1}, "table": {"_count": 1}}, "incensed": {"_count": 1, "stare": {"_count": 1}}, "summer": {"_count": 12, "": {"_count": 5}, "hell": {"_count": 1}, "hed": {"_count": 1}, "Harry": {"_count": 1}, "happened": {"_count": 1}, "but": {"_count": 1}, "Dumbledore": {"_count": 2}}, "two": {"_count": 10, "years": {"_count": 4}, "birthdays": {"_count": 1}, "cards": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "weeks": {"_count": 1}, "in": {"_count": 1}}, "meeting": {"_count": 3, "as": {"_count": 1}, "was": {"_count": 1}, "before": {"_count": 1}}, "parcel": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "visit": {"_count": 4, "the": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "saw": {"_count": 1, "you": {"_count": 1}}, "at": {"_count": 1, "long": {"_count": 1}}, "three": {"_count": 10, "weeks": {"_count": 1}, "years": {"_count": 3}, "words": {"_count": 2}, "were": {"_count": 1}, "goals": {"_count": 1}, "": {"_count": 1}, "syllables": {"_count": 1}}, "smile": {"_count": 1, "and": {"_count": 1}}, "Fred": {"_count": 2, "muttered": {"_count": 1}, "closed": {"_count": 1}}, "when": {"_count": 3, "the": {"_count": 2}, "only": {"_count": 1}}, "morsels": {"_count": 1, "of": {"_count": 1}}, "quarter": {"_count": 1, "of": {"_count": 1}}, "chance": {"_count": 8, "my": {"_count": 1}, "to": {"_count": 3}, "well": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "said": {"_count": 1}}, "star": {"_count": 1, "with": {"_count": 1}}, "answer": {"_count": 2, "hed": {"_count": 1}, "nicely": {"_count": 1}}, "Snape": {"_count": 2, "held": {"_count": 1}, "gave": {"_count": 1}}, "Harry": {"_count": 7, "thought": {"_count": 1}, "mounted": {"_count": 1}, "believed": {"_count": 1}, "had": {"_count": 1}, "managed": {"_count": 1}, "and": {"_count": 1}, "held": {"_count": 1}}, "moments": {"_count": 2, "of": {"_count": 1}, "replayed": {"_count": 1}}, "weekend": {"_count": 4, "of": {"_count": 3}, "I": {"_count": 1}}, "winter": {"_count": 1, "but": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "ter": {"_count": 1, "see": {"_count": 1}}, "inspection": {"_count": 1, "of": {"_count": 1}}, "bit": {"_count": 5, "of": {"_count": 3}, "again": {"_count": 1}, "": {"_count": 1}}, "finding": {"_count": 1, "the": {"_count": 1}}, "moment": {"_count": 6, "": {"_count": 3}, "persuaded": {"_count": 1}, "seemed": {"_count": 1}, "not": {"_count": 1}}, "second": {"_count": 4, "and": {"_count": 1}, "Viktor": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "rays": {"_count": 1, "of": {"_count": 1}}, "nod": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "because": {"_count": 1, "Sirius": {"_count": 1}}, "letter": {"_count": 2, "": {"_count": 2}}, "taking": {"_count": 1, "effect": {"_count": 1}}, "encounter": {"_count": 1, "with": {"_count": 1}}, "freckle": {"_count": 1, "": {"_count": 1}}, "fleeting": {"_count": 2, "glimpse": {"_count": 1}, "view": {"_count": 1}}, "We": {"_count": 1, "can": {"_count": 1}}, "his": {"_count": 2, "feet": {"_count": 1}, "teeth": {"_count": 1}}, "clutching": {"_count": 1, "a": {"_count": 1}}, "vestiges": {"_count": 2, "of": {"_count": 2}}, "seat": {"_count": 1, "at": {"_count": 1}}, "message": {"_count": 1, "Bertie": {"_count": 1}}, "cup": {"_count": 1, "of": {"_count": 1}}, "spell": {"_count": 1, "a": {"_count": 1}}, "crumbs": {"_count": 1, "had": {"_count": 1}}, "spiral": {"_count": 1, "staircase": {"_count": 1}}, "bottle": {"_count": 4, "with": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}}, "spider": {"_count": 1, "": {"_count": 1}}, "piece": {"_count": 5, "of": {"_count": 5}}, "line": {"_count": 1, "of": {"_count": 1}}, "found": {"_count": 2, "love": {"_count": 1}, "an": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 2}}, "spoonful": {"_count": 1, "of": {"_count": 1}}, "stood": {"_count": 1, "on": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "lesson": {"_count": 7, "of": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}, "if": {"_count": 1}, "before": {"_count": 1}, "There": {"_count": 1}, "poised": {"_count": 1}}, "loud": {"_count": 1, "round": {"_count": 1}}, "resort": {"_count": 1, "": {"_count": 1}}, "century": {"_count": 1, "": {"_count": 1}}, "disappointed": {"_count": 1, "glance": {"_count": 1}}, "half": {"_count": 2, "hour": {"_count": 2}}, "World": {"_count": 1, "Quidditch": {"_count": 1}}, "Sirius": {"_count": 2, "slipped": {"_count": 1}, "gave": {"_count": 1}}, "envelope": {"_count": 1, "and": {"_count": 1}}, "hedge": {"_count": 1, "": {"_count": 1}}, "Saturday": {"_count": 1, "the": {"_count": 1}}, "Thursday": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "August": {"_count": 1, "": {"_count": 1}}, "task": {"_count": 2, "before": {"_count": 1}, "": {"_count": 1}}, "be": {"_count": 1, "over": {"_count": 1}}, "midway": {"_count": 1, "through": {"_count": 1}}, "four": {"_count": 2, "lines": {"_count": 1}, "": {"_count": 1}}, "we": {"_count": 3, "met": {"_count": 1}, "shall": {"_count": 1}, "can": {"_count": 1}}, "particle": {"_count": 1, "of": {"_count": 1}}, "favor": {"_count": 1, "to": {"_count": 1}}, "murders": {"_count": 1, "the": {"_count": 1}}, "thirteen": {"_count": 1, "years": {"_count": 1}}, "drifted": {"_count": 1, "from": {"_count": 1}}, "what": {"_count": 2, "": {"_count": 1}, "Dumbledore": {"_count": 1}}, "letters": {"_count": 1, "look": {"_count": 1}}, "Black": {"_count": 1, "left": {"_count": 1}}, "comment": {"_count": 1, "": {"_count": 1}}, "ten": {"_count": 2, "years": {"_count": 1}, "steps": {"_count": 1}}, "cubicle": {"_count": 1, "": {"_count": 1}}, "twelve": {"_count": 2, "months": {"_count": 1}, "hours": {"_count": 1}}, "longer": {"_count": 1, "than": {"_count": 1}}, "seen": {"_count": 3, "those": {"_count": 1}, "Sirius": {"_count": 1}, "it": {"_count": 1}}, "heard": {"_count": 1, "that": {"_count": 1}}, "carriage": {"_count": 2, "they": {"_count": 1}, "": {"_count": 1}}, "malicious": {"_count": 1, "look": {"_count": 1}}, "frowning": {"_count": 1, "look": {"_count": 1}}, "candle": {"_count": 1, "in": {"_count": 1}}, "season": {"_count": 1, "But": {"_count": 1}}, "threatening": {"_count": 1, "look": {"_count": 1}}, "June": {"_count": 4, "": {"_count": 4}}, "Something": {"_count": 1, "brushed": {"_count": 1}}, "longing": {"_count": 1, "look": {"_count": 1}}, "sunshine": {"_count": 1, "that": {"_count": 1}}, "function": {"_count": 1, "that": {"_count": 1}}, "pass": {"_count": 1, "grade": {"_count": 1}}, "Monday": {"_count": 1, "you": {"_count": 1}}, "been": {"_count": 2, "settled": {"_count": 1}, "in": {"_count": 1}}, "burst": {"_count": 1, "of": {"_count": 1}}, "staircase": {"_count": 1, "tapping": {"_count": 1}}, "couple": {"_count": 3, "of": {"_count": 3}}, "The": {"_count": 2, "tiny": {"_count": 1}, "sun": {"_count": 1}}, "giants": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 2, "proof": {"_count": 1}, "a": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "note": {"_count": 1, "then": {"_count": 1}}, "appearance": {"_count": 1, "in": {"_count": 1}}, "D": {"_count": 2, "": {"_count": 2}}, "very": {"_count": 1, "long": {"_count": 1}}, "cold": {"_count": 1, "dregs": {"_count": 1}}, "subject": {"_count": 1, "on": {"_count": 1}}, "Azkaban": {"_count": 1, "breakout": {"_count": 1}}, "memory": {"_count": 2, "said": {"_count": 1}, "into": {"_count": 1}}, "inside": {"_count": 1, "a": {"_count": 1}}, "student": {"_count": 1, "had": {"_count": 1}}, "dream": {"_count": 1, "": {"_count": 1}}, "silvery": {"_count": 1, "strand": {"_count": 1}}, "have": {"_count": 2, "scraped": {"_count": 1}, "you": {"_count": 1}}, "echoing": {"_count": 1, "strains": {"_count": 1}}, "Stunning": {"_count": 1, "Spell": {"_count": 1}}, "trip": {"_count": 1, "into": {"_count": 1}}, "ounce": {"_count": 1, "of": {"_count": 1}}, "dimly": {"_count": 1, "lit": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "or": {"_count": 1, "else": {"_count": 1}}, "marble": {"_count": 1, "step": {"_count": 1}}, "Fudge": {"_count": 1, "had": {"_count": 1}}, "Narcissa": {"_count": 1, "hurried": {"_count": 1}}, "house": {"_count": 1, "where": {"_count": 1}}, "question": {"_count": 1, "Snape": {"_count": 1}}, "degree": {"_count": 1, "though": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "facetoface": {"_count": 1, "encounter": {"_count": 1}}, "powerful": {"_count": 1, "": {"_count": 1}}, "bought": {"_count": 1, "him": {"_count": 1}}, "nights": {"_count": 1, "conversation": {"_count": 1}}, "unfinished": {"_count": 1, "year": {"_count": 1}}, "Ollivander": {"_count": 1, "ever": {"_count": 1}}, "walked": {"_count": 1, "down": {"_count": 1}}, "years": {"_count": 1, "Gryffindor": {"_count": 1}}, "giving": {"_count": 1, "Slughorn": {"_count": 1}}, "living": {"_count": 2, "descendants": {"_count": 1}, "descendant": {"_count": 1}}, "team": {"_count": 1, "member": {"_count": 1}}, "hoping": {"_count": 1, "for": {"_count": 1}}, "part": {"_count": 1, "was": {"_count": 1}}, "hours": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "drops": {"_count": 1, "in": {"_count": 1}}, "classroom": {"_count": 1, "in": {"_count": 1}}, "mention": {"_count": 1, "of": {"_count": 1}}, "days": {"_count": 1, "in": {"_count": 1}}, "heirloom": {"_count": 1, "and": {"_count": 1}}, "weeks": {"_count": 1, "of": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "memories": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 5, "was": {"_count": 1}, "anybody": {"_count": 1}, "they": {"_count": 2}, "he": {"_count": 1}}, "recollection": {"_count": 1, "I": {"_count": 1}}, "count": {"_count": 1, "actually": {"_count": 1}}, "paragraph": {"_count": 1, "on": {"_count": 1}}, "deep": {"_count": 1, "bow": {"_count": 1}}, "respects": {"_count": 2, "to": {"_count": 2}}, "Horcrux": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "Arithmancy": {"_count": 1, "essay": {"_count": 1}}, "drop": {"_count": 1, "and": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "flame": {"_count": 1, "was": {"_count": 1}}, "excursion": {"_count": 1, "from": {"_count": 1}}, "golden": {"_count": 1, "day": {"_count": 1}}, "gift": {"_count": 1, "except": {"_count": 1}}, "watched": {"_count": 1, "the": {"_count": 1}}, "sweeping": {"_count": 3, "look": {"_count": 2}, "gaze": {"_count": 1}}, "seven": {"_count": 1, "dressed": {"_count": 1}}, "glimpse": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "Hermione": {"_count": 1, "tapped": {"_count": 1}}, "abandoned": {"_count": 1, "their": {"_count": 1}}, "twentyfour": {"_count": 1, "hours": {"_count": 1}}, "lying": {"_count": 1, "facedown": {"_count": 1}}, "issue": {"_count": 1, "": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "enemy": {"_count": 4, "that": {"_count": 4}}, "surface": {"_count": 1, "on": {"_count": 1}}, "warning": {"_count": 1, "Not": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "safe": {"_count": 1, "to": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "great": {"_count": 2, "Wizarding": {"_count": 1}, "act": {"_count": 1}}, "met": {"_count": 1, "": {"_count": 1}}, "twitch": {"_count": 1, "and": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "learned": {"_count": 1, "to": {"_count": 1}}, "owner": {"_count": 2, "ready": {"_count": 1}, "": {"_count": 1}}, "declining": {"_count": 1, "yet": {"_count": 1}}, "eaten": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "my": {"_count": 1, "brother": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "laugh": {"_count": 1, "still": {"_count": 1}}, "escape": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 1, "woman": {"_count": 1}}, "thoughts": {"_count": 1, "and": {"_count": 1}}, "burning": {"_count": 1, "look": {"_count": 1}}, "stragglers": {"_count": 1, "from": {"_count": 1}}, "walking": {"_count": 1, "down": {"_count": 1}}, "horrific": {"_count": 1, "fight": {"_count": 1}}, "weakness": {"_count": 1, "and": {"_count": 1}}, "best": {"_count": 1, "lieutenant": {"_count": 1}}, "secret": {"_count": 1, "": {"_count": 1}}, "plan": {"_count": 2, "went": {"_count": 1}, "hasnt": {"_count": 1}}, "true": {"_count": 1, "master": {"_count": 1}}, "masters": {"_count": 2, "tomb": {"_count": 1}, "wishes": {"_count": 1}}, "master": {"_count": 1, "was": {"_count": 1}}, "effort": {"_count": 1, "seeking": {"_count": 1}}, "trace": {"_count": 1, "of": {"_count": 1}}}, "people": {"_count": 845, "youd": {"_count": 1, "expect": {"_count": 1}}, "about": {"_count": 3, "": {"_count": 1}, "him": {"_count": 1}, "their": {"_count": 1}}, "who": {"_count": 69, "dressed": {"_count": 1}, "live": {"_count": 1}, "are": {"_count": 4}, "come": {"_count": 1}, "felt": {"_count": 1}, "have": {"_count": 6}, "do": {"_count": 2}, "can": {"_count": 2}, "could": {"_count": 2}, "deserve": {"_count": 1}, "really": {"_count": 1}, "were": {"_count": 8}, "would": {"_count": 1}, "attack": {"_count": 1}, "had": {"_count": 11}, "cant": {"_count": 1}, "didnt": {"_count": 2}, "thought": {"_count": 1}, "heard": {"_count": 1}, "fought": {"_count": 1}, "believe": {"_count": 1}, "count": {"_count": 1}, "we": {"_count": 1}, "wanted": {"_count": 1}, "turned": {"_count": 1}, "seemed": {"_count": 2}, "see": {"_count": 1}, "work": {"_count": 2}, "knew": {"_count": 1}, "read": {"_count": 1}, "will": {"_count": 1}, "passed": {"_count": 1}, "appeared": {"_count": 1}, "annoy": {"_count": 1}, "matter": {"_count": 2}, "cared": {"_count": 1}, "henceforth": {"_count": 1}}, "": {"_count": 75, "!": {"_count": 7}, ".": {"_count": 53}, "?": {"_count": 15}}, "were": {"_count": 58, "obviously": {"_count": 1}, "gawking": {"_count": 1}, "pointing": {"_count": 1}, "standing": {"_count": 1}, "still": {"_count": 4}, "leaving": {"_count": 1}, "now": {"_count": 1}, "bowing": {"_count": 1}, "asking": {"_count": 1}, "paying": {"_count": 1}, "wearing": {"_count": 1}, "talking": {"_count": 1}, "suddenly": {"_count": 1}, "discussing": {"_count": 1}, "gazing": {"_count": 1}, "watching": {"_count": 3}, "sitting": {"_count": 1}, "visible": {"_count": 1}, "expressing": {"_count": 1}, "staring": {"_count": 2}, "allowed": {"_count": 1}, "bound": {"_count": 2}, "": {"_count": 2}, "warming": {"_count": 1}, "going": {"_count": 1}, "choosing": {"_count": 1}, "able": {"_count": 1}, "not": {"_count": 3}, "singing": {"_count": 1}, "were": {"_count": 1}, "killed": {"_count": 1}, "trying": {"_count": 1}, "merely": {"_count": 1}, "receiving": {"_count": 1}, "under": {"_count": 1}, "looking": {"_count": 1}, "smirking": {"_count": 1}, "walking": {"_count": 1}, "fighting": {"_count": 1}, "creeping": {"_count": 1}, "peering": {"_count": 1}, "really": {"_count": 1}, "dismounting": {"_count": 1}, "only": {"_count": 1}, "clambering": {"_count": 1}, "resisting": {"_count": 1}, "backing": {"_count": 1}, "throwing": {"_count": 1}}, "down": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 42, "cloaks": {"_count": 3}, "town": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 22}, "green": {"_count": 1}, "front": {"_count": 2}, "here": {"_count": 1}, "this": {"_count": 1}, "trouble": {"_count": 1}, "alive": {"_count": 1}, "other": {"_count": 1}, "Hagrids": {"_count": 1}, "there": {"_count": 1}, "public": {"_count": 1}, "spite": {"_count": 1}, "black": {"_count": 1}, "portraits": {"_count": 1}, "real": {"_count": 1}}, "called": {"_count": 3, "Potter": {"_count": 1}, "terrifying": {"_count": 1}, "out": {"_count": 1}}, "have": {"_count": 8, "been": {"_count": 1}, "heard": {"_count": 1}, "done": {"_count": 1}, "got": {"_count": 2}, "toward": {"_count": 1}, "also": {"_count": 1}, "deduced": {"_count": 1}}, "to": {"_count": 26, "call": {"_count": 1}, "think": {"_count": 1}, "Azkaban": {"_count": 1}, "duels": {"_count": 1}, "go": {"_count": 2}, "whom": {"_count": 3}, "put": {"_count": 1}, "do": {"_count": 1}, "the": {"_count": 2}, "spy": {"_count": 1}, "talk": {"_count": 1}, "cry": {"_count": 1}, "write": {"_count": 1}, "come": {"_count": 1}, "make": {"_count": 1}, "frighten": {"_count": 1}, "help": {"_count": 1}, "part": {"_count": 1}, "know": {"_count": 2}, "be": {"_count": 1}, "their": {"_count": 1}}, "hes": {"_count": 2, "killed": {"_count": 1}, "back": {"_count": 1}}, "will": {"_count": 7, "never": {"_count": 1}, "think": {"_count": 2}, "take": {"_count": 1}, "be": {"_count": 2}, "under": {"_count": 1}}, "meeting": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 10, "work": {"_count": 1}, "the": {"_count": 3}, "their": {"_count": 1}, "once": {"_count": 2}, "all": {"_count": 1}, "Hogwarts": {"_count": 1}, "a": {"_count": 1}}, "drumming": {"_count": 1, "their": {"_count": 1}}, "was": {"_count": 2, "the": {"_count": 1}, "bunched": {"_count": 1}}, "are": {"_count": 20, "still": {"_count": 1}, "coming": {"_count": 1}, "aware": {"_count": 1}, "": {"_count": 1}, "sleeping": {"_count": 1}, "so": {"_count": 2}, "arriving": {"_count": 1}, "misbehaving": {"_count": 1}, "idiots": {"_count": 1}, "desperate": {"_count": 1}, "fascinated": {"_count": 1}, "staring": {"_count": 1}, "craving": {"_count": 1}, "in": {"_count": 1}, "trying": {"_count": 1}, "terrified": {"_count": 1}, "talking": {"_count": 1}, "dead": {"_count": 1}, "into": {"_count": 1}}, "yeh": {"_count": 1, "couldnt": {"_count": 1}}, "liked": {"_count": 1, "to": {"_count": 1}}, "hurrying": {"_count": 3, "by": {"_count": 1}, "in": {"_count": 1}, "across": {"_count": 1}}, "doing": {"_count": 1, "their": {"_count": 1}}, "from": {"_count": 5, "Muggle": {"_count": 1}, "Beauxbatons": {"_count": 1}, "the": {"_count": 1}, "different": {"_count": 1}, "touching": {"_count": 1}}, "passed": {"_count": 1, "just": {"_count": 1}}, "around": {"_count": 9, "him": {"_count": 3}, "them": {"_count": 2}, "his": {"_count": 1}, "Harry": {"_count": 1}, "Katie": {"_count": 1}, "the": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "just": {"_count": 3, "stay": {"_count": 1}, "because": {"_count": 1}, "for": {"_count": 1}}, "outside": {"_count": 2, "are": {"_count": 1}, "the": {"_count": 1}}, "climbed": {"_count": 1, "out": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "nodded": {"_count": 2, "mutely": {"_count": 1}, "in": {"_count": 1}}, "left": {"_count": 3, "now": {"_count": 1}, "to": {"_count": 1}, "right": {"_count": 1}}, "craning": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 21, "come": {"_count": 2}, "jumped": {"_count": 1}, "their": {"_count": 2}, "made": {"_count": 1}, "turned": {"_count": 1}, "arrived": {"_count": 2}, "just": {"_count": 1}, "managed": {"_count": 2}, "finished": {"_count": 2}, "actually": {"_count": 1}, "better": {"_count": 1}, "already": {"_count": 2}, "trodden": {"_count": 1}, "a": {"_count": 1}, "years": {"_count": 1}}, "like": {"_count": 9, "Ron": {"_count": 1}, "Mrs": {"_count": 1}, "you": {"_count": 1}, "Neville": {"_count": 1}, "that": {"_count": 2}, "Hagrid": {"_count": 1}, "Mundungus": {"_count": 1}, "theyre": {"_count": 1}}, "laughed": {"_count": 4, "Harry": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "below": {"_count": 3, "were": {"_count": 2}, "": {"_count": 1}}, "watching": {"_count": 4, "he": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}, "laughed": {"_count": 1}}, "only": {"_count": 2, "die": {"_count": 1}, "get": {"_count": 1}}, "telling": {"_count": 2, "him": {"_count": 2}}, "rarely": {"_count": 2, "died": {"_count": 1}, "ventured": {"_count": 1}}, "standing": {"_count": 5, "right": {"_count": 1}, "there": {"_count": 2}, "in": {"_count": 2}}, "and": {"_count": 10, "this": {"_count": 2}, "witches": {"_count": 1}, "shaking": {"_count": 1}, "very": {"_count": 1}, "the": {"_count": 1}, "Death": {"_count": 1}, "creatures": {"_count": 1}, "even": {"_count": 1}, "property": {"_count": 1}}, "but": {"_count": 2, "thats": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "whom": {"_count": 1}}, "they": {"_count": 3, "feel": {"_count": 1}, "finish": {"_count": 1}, "oppress": {"_count": 1}}, "off": {"_count": 5, "for": {"_count": 2}, "their": {"_count": 1}, "": {"_count": 2}}, "grappling": {"_count": 1, "with": {"_count": 1}}, "pointed": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 2, "like": {"_count": 1}, "knew": {"_count": 1}}, "wander": {"_count": 1, "around": {"_count": 1}}, "drifted": {"_count": 1, "off": {"_count": 1}}, "would": {"_count": 9, "trip": {"_count": 1}, "think": {"_count": 1}, "stop": {"_count": 1}, "panic": {"_count": 1}, "know": {"_count": 1}, "be": {"_count": 2}, "react": {"_count": 1}, "probably": {"_count": 1}}, "didnt": {"_count": 2, "": {"_count": 1}, "think": {"_count": 1}}, "hugging": {"_count": 1, "him": {"_count": 1}}, "dont": {"_count": 3, "like": {"_count": 1}, "realize": {"_count": 1}, "get": {"_count": 1}}, "appeared": {"_count": 2, "on": {"_count": 1}, "at": {"_count": 1}}, "kept": {"_count": 4, "colliding": {"_count": 1}, "standing": {"_count": 1}, "checking": {"_count": 1}, "bursting": {"_count": 1}}, "six": {"_count": 1, "large": {"_count": 1}}, "all": {"_count": 4, "around": {"_count": 2}, "looking": {"_count": 1}, "of": {"_count": 1}}, "smiled": {"_count": 1, "weakly": {"_count": 1}}, "nearest": {"_count": 2, "them": {"_count": 1}, "to": {"_count": 1}}, "call": {"_count": 3, "pure": {"_count": 1}, "me": {"_count": 2}}, "sat": {"_count": 2, "reading": {"_count": 1}, "huddled": {"_count": 1}}, "mostly": {"_count": 1, "drifting": {"_count": 1}}, "next": {"_count": 2, "moment": {"_count": 1}, "to": {"_count": 1}}, "said": {"_count": 9, "he": {"_count": 1}, "Ron": {"_count": 3}, "Harry": {"_count": 2}, "Dumbledore": {"_count": 1}, "Ouch": {"_count": 1}, "Zabini": {"_count": 1}}, "bearing": {"_count": 1, "him": {"_count": 1}}, "come": {"_count": 1, "along": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "on": {"_count": 9, "our": {"_count": 1}, "either": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 4}, "my": {"_count": 1}, "brooms": {"_count": 1}}, "as": {"_count": 5, "possible": {"_count": 3}, "she": {"_count": 1}, "the": {"_count": 1}}, "above": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "gathered": {"_count": 1, "around": {"_count": 1}}, "here": {"_count": 1, "can": {"_count": 1}}, "flooded": {"_count": 1, "out": {"_count": 1}}, "most": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "asked": {"_count": 1, "each": {"_count": 1}}, "skirting": {"_count": 1, "around": {"_count": 1}}, "youre": {"_count": 2, "changing": {"_count": 1}, "hanging": {"_count": 1}}, "think": {"_count": 3, "hes": {"_count": 1}, "they": {"_count": 1}, "when": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 4}, "there": {"_count": 2}, "in": {"_count": 1}}, "of": {"_count": 1, "fifty": {"_count": 1}}, "whether": {"_count": 1, "they": {"_count": 1}}, "knew": {"_count": 2, "why": {"_count": 1}, "about": {"_count": 1}}, "realize": {"_count": 3, "said": {"_count": 1}, "what": {"_count": 1}, "whats": {"_count": 1}}, "again": {"_count": 1, "His": {"_count": 1}}, "yelled": {"_count": 1, "joyfully": {"_count": 1}}, "by": {"_count": 2, "looking": {"_count": 1}, "feeding": {"_count": 1}}, "moving": {"_count": 7, "overhead": {"_count": 1}, "around": {"_count": 1}, "in": {"_count": 1}, "flares": {"_count": 1}, "from": {"_count": 1}, "outside": {"_count": 1}, "there": {"_count": 1}}, "I": {"_count": 1, "needed": {"_count": 1}}, "know": {"_count": 5, "that": {"_count": 1}, "when": {"_count": 1}, "hes": {"_count": 1}, "about": {"_count": 1}, "where": {"_count": 1}}, "more": {"_count": 1, "commonly": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 1}, "one": {"_count": 1}, "Mundungus": {"_count": 1}, "special": {"_count": 1}}, "Harry": {"_count": 6, "knew": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}, "rarely": {"_count": 1}, "added": {"_count": 1}, "": {"_count": 1}}, "always": {"_count": 1, "say": {"_count": 1}}, "senseless": {"_count": 1, "and": {"_count": 1}}, "headed": {"_count": 1, "off": {"_count": 1}}, "took": {"_count": 1, "theirs": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "screamed": {"_count": 3, "": {"_count": 2}, "Harry": {"_count": 1}}, "staring": {"_count": 2, "avidly": {"_count": 1}, "at": {"_count": 1}}, "reckon": {"_count": 2, "Harry": {"_count": 1}, "hed": {"_count": 1}}, "entering": {"_count": 1, "by": {"_count": 1}}, "follow": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 4, "mean": {"_count": 1}, "see": {"_count": 1}, "are": {"_count": 1}, "three": {"_count": 1}}, "exclaiming": {"_count": 1, "over": {"_count": 1}}, "up": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "can": {"_count": 4, "be": {"_count": 1}, "turn": {"_count": 1}, "practice": {"_count": 1}, "see": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "being": {"_count": 3, "frightened": {"_count": 1}, "signed": {"_count": 1}, "in": {"_count": 1}}, "he": {"_count": 10, "knew": {"_count": 1}, "snarled": {"_count": 1}, "caught": {"_count": 1}, "had": {"_count": 2}, "does": {"_count": 1}, "noticed": {"_count": 1}, "liked": {"_count": 1}, "loved": {"_count": 2}}, "might": {"_count": 2, "not": {"_count": 1}, "like": {"_count": 1}}, "this": {"_count": 2, "might": {"_count": 1}, "and": {"_count": 1}}, "keep": {"_count": 1, "thundering": {"_count": 1}}, "the": {"_count": 4, "other": {"_count": 1}, "Minister": {"_count": 1}, "better": {"_count": 1}, "subject": {"_count": 1}}, "looking": {"_count": 2, "curiously": {"_count": 1}, "of": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "running": {"_count": 4, "": {"_count": 1}, "away": {"_count": 1}, "and": {"_count": 1}, "backward": {"_count": 1}}, "whose": {"_count": 4, "faces": {"_count": 1}, "names": {"_count": 1}, "brains": {"_count": 1}, "minds": {"_count": 1}}, "nearby": {"_count": 1, "screamed": {"_count": 1}}, "panicked": {"_count": 1, "": {"_count": 1}}, "either": {"_count": 1, "gazing": {"_count": 1}}, "queuing": {"_count": 1, "for": {"_count": 1}}, "looked": {"_count": 4, "uneasily": {"_count": 1}, "around": {"_count": 2}, "less": {"_count": 1}}, "went": {"_count": 1, "up": {"_count": 1}}, "gasped": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "including": {"_count": 1}}, "fawning": {"_count": 1, "over": {"_count": 1}}, "milling": {"_count": 1, "around": {"_count": 1}}, "came": {"_count": 2, "in": {"_count": 1}, "swarming": {"_count": 1}}, "see": {"_count": 1, "you": {"_count": 1}}, "Slytherins": {"_count": 1, "mainly": {"_count": 1}}, "sitting": {"_count": 2, "around": {"_count": 1}, "at": {"_count": 1}}, "into": {"_count": 4, "Azkaban": {"_count": 1}, "my": {"_count": 1}, "jail": {"_count": 1}, "the": {"_count": 1}}, "born": {"_count": 1, "in": {"_count": 1}}, "echoed": {"_count": 1, "": {"_count": 1}}, "chortled": {"_count": 1, "": {"_count": 1}}, "wearing": {"_count": 1, "different": {"_count": 1}}, "inside": {"_count": 3, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "them": {"_count": 1}}, "nervous": {"_count": 1, "I": {"_count": 1}}, "wouldnt": {"_count": 2, "have": {"_count": 1}, "but": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "thought": {"_count": 2, "he": {"_count": 1}, "Potter": {"_count": 1}}, "Id": {"_count": 2, "bet": {"_count": 1}, "like": {"_count": 1}}, "started": {"_count": 1, "feeling": {"_count": 1}}, "manage": {"_count": 1, "to": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 1, "if": {"_count": 1}}, "that": {"_count": 5, "Hermione": {"_count": 1}, "separated": {"_count": 1}, "he": {"_count": 1}, "is": {"_count": 1}, "Professor": {"_count": 1}}, "what": {"_count": 2, "to": {"_count": 1}, "they": {"_count": 1}}, "entered": {"_count": 1, "or": {"_count": 1}}, "pressed": {"_count": 1, "in": {"_count": 1}}, "gasping": {"_count": 1, "screaming": {"_count": 1}}, "over": {"_count": 1, "Moodys": {"_count": 1}}, "shouting": {"_count": 1, "and": {"_count": 1}}, "hate": {"_count": 1, "them": {"_count": 1}}, "making": {"_count": 1, "their": {"_count": 1}}, "surrounding": {"_count": 2, "Lupin": {"_count": 1}, "her": {"_count": 1}}, "volunteered": {"_count": 1, "to": {"_count": 1}}, "weve": {"_count": 1, "met": {"_count": 1}}, "fifty": {"_count": 1, "miles": {"_count": 1}}, "wanted": {"_count": 1, "him": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "joining": {"_count": 1, "Vol": {"_count": 1}}, "before": {"_count": 2, "Voldemort": {"_count": 1}, "I": {"_count": 1}}, "poked": {"_count": 1, "out": {"_count": 1}}, "seated": {"_count": 2, "at": {"_count": 1}, "underneath": {"_count": 1}}, "exactly": {"_count": 1, "how": {"_count": 1}}, "some": {"_count": 1, "waving": {"_count": 1}}, "edged": {"_count": 1, "sideways": {"_count": 1}}, "stared": {"_count": 1, "back": {"_count": 1}}, "now": {"_count": 3, "staring": {"_count": 1}, "fighting": {"_count": 1}, "lined": {"_count": 1}}, "laughing": {"_count": 1, "their": {"_count": 1}}, "believe": {"_count": 2, "to": {"_count": 1}, "thats": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "putting": {"_count": 1, "their": {"_count": 1}}, "mumbled": {"_count": 1, "Good": {"_count": 1}}, "used": {"_count": 2, "to": {"_count": 1}, "ter": {"_count": 1}}, "Ive": {"_count": 1, "spoken": {"_count": 1}}, "got": {"_count": 2, "Ds": {"_count": 1}, "older": {"_count": 1}}, "give": {"_count": 1, "their": {"_count": 1}}, "Hermione": {"_count": 1, "repeated": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "maybe": {"_count": 1, "even": {"_count": 1}}, "coming": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "listening": {"_count": 1, "in": {"_count": 1}}, "scurried": {"_count": 1, "up": {"_count": 1}}, "which": {"_count": 1, "means": {"_count": 1}}, "stumbles": {"_count": 1, "across": {"_count": 1}}, "murmured": {"_count": 1, "their": {"_count": 1}}, "is": {"_count": 1, "she": {"_count": 1}}, "could": {"_count": 1, "see": {"_count": 1}}, "sniggered": {"_count": 1, "": {"_count": 1}}, "wished": {"_count": 1, "Harry": {"_count": 1}}, "Both": {"_count": 1, "nodded": {"_count": 1}}, "fine": {"_count": 1, "people": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "quite": {"_count": 1, "worried": {"_count": 1}}, "wont": {"_count": 1, "said": {"_count": 1}}, "seem": {"_count": 1, "even": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "burst": {"_count": 1, "through": {"_count": 1}}, "hell": {"_count": 1, "understand": {"_count": 1}}, "cornin": {"_count": 1, "out": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "complaining": {"_count": 1, "one": {"_count": 1}}, "should": {"_count": 1, "stay": {"_count": 1}}, "fell": {"_count": 1, "out": {"_count": 1}}, "sprinted": {"_count": 1, "into": {"_count": 1}}, "hid": {"_count": 1, "behind": {"_count": 1}}, "or": {"_count": 2, "or": {"_count": 1}, "not": {"_count": 1}}, "messing": {"_count": 1, "around": {"_count": 1}}, "do": {"_count": 3, "the": {"_count": 1}, "for": {"_count": 1}, "you": {"_count": 1}}, "hide": {"_count": 1, "your": {"_count": 1}}, "marching": {"_count": 2, "up": {"_count": 1}, "toward": {"_count": 1}}, "really": {"_count": 3, "did": {"_count": 1}, "started": {"_count": 1}, "are": {"_count": 1}}, "while": {"_count": 1, "Dumbledore": {"_count": 1}}, "reporting": {"_count": 1, "to": {"_count": 1}}, "eloping": {"_count": 1, "left": {"_count": 1}}, "find": {"_count": 1, "it": {"_count": 1}}, "even": {"_count": 1, "people": {"_count": 1}}, "where": {"_count": 1, "you": {"_count": 1}}, "wondered": {"_count": 1, "whether": {"_count": 1}}, "progressing": {"_count": 1, "to": {"_count": 1}}, "drink": {"_count": 1, "it": {"_count": 1}}, "began": {"_count": 4, "adding": {"_count": 1}, "moving": {"_count": 1}, "to": {"_count": 2}}, "less": {"_count": 1, "likely": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "use": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "go": {"_count": 1, "to": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "anything": {"_count": 1, "that": {"_count": 1}}, "saying": {"_count": 1, "my": {"_count": 1}}, "congratulating": {"_count": 1, "him": {"_count": 1}}, "usually": {"_count": 1, "give": {"_count": 1}}, "a": {"_count": 2, "lift": {"_count": 1}, "man": {"_count": 1}}, "hope": {"_count": 1, "the": {"_count": 1}}, "get": {"_count": 1, "murdered": {"_count": 1}}, "separated": {"_count": 1, "banged": {"_count": 1}}, "Neville": {"_count": 1, "was": {"_count": 1}}, "whod": {"_count": 1, "like": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "awake": {"_count": 1, "were": {"_count": 1}}, "cant": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "If": {"_count": 1}}, "bully": {"_count": 1, "him": {"_count": 1}}, "waiting": {"_count": 2, "to": {"_count": 1}, "outside": {"_count": 1}}, "getting": {"_count": 1, "hurt": {"_count": 1}}, "taking": {"_count": 1, "their": {"_count": 1}}, "perhaps": {"_count": 1, "would": {"_count": 1}}, "wolfwhistled": {"_count": 1, "and": {"_count": 1}}, "say": {"_count": 1, "that": {"_count": 1}}, "Snape": {"_count": 1, "hates": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "moved": {"_count": 1, "from": {"_count": 1}}, "beginning": {"_count": 1, "to": {"_count": 1}}, "rushing": {"_count": 1, "past": {"_count": 1}}, "whom": {"_count": 1, "Harry": {"_count": 1}}, "his": {"_count": 1, "enemies": {"_count": 1}}, "relax": {"_count": 1, "a": {"_count": 1}}, "planted": {"_count": 1, "within": {"_count": 1}}, "may": {"_count": 1, "be": {"_count": 1}}, "alive": {"_count": 1, "who": {"_count": 1}}, "risk": {"_count": 1, "their": {"_count": 1}}, "onto": {"_count": 1, "that": {"_count": 1}}, "my": {"_count": 2, "grandfather": {"_count": 1}, "brother": {"_count": 1}}, "never": {"_count": 1, "do": {"_count": 1}}, "tarnish": {"_count": 1, "your": {"_count": 1}}, "arriving": {"_count": 1, "in": {"_count": 1}}, "lurking": {"_count": 1, "in": {"_count": 1}}, "stood": {"_count": 2, "before": {"_count": 1}, "in": {"_count": 1}}, "today": {"_count": 1, "and": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "yet": {"_count": 1, "he": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "back": {"_count": 1, "we": {"_count": 1}}, "lets": {"_count": 1, "try": {"_count": 1}}, "wrestling": {"_count": 1, "Ron": {"_count": 1}}, "whove": {"_count": 1, "earned": {"_count": 1}}, "stand": {"_count": 1, "up": {"_count": 1}}, "Look": {"_count": 1, "who": {"_count": 1}}, "They": {"_count": 1, "might": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "remained": {"_count": 1, "below": {"_count": 1}}, "slipped": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "storming": {"_count": 1, "up": {"_count": 1}}, "But": {"_count": 1, "you": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}}, "youd": {"_count": 221, "expect": {"_count": 2, "to": {"_count": 1}, "an": {"_count": 1}}, "have": {"_count": 13, "thought": {"_count": 1}, "Fathers": {"_count": 1}, "been": {"_count": 3}, "to": {"_count": 2}, "some": {"_count": 1}, "done": {"_count": 2}, "learned": {"_count": 1}, "liked": {"_count": 1}, "felt": {"_count": 1}}, "been": {"_count": 9, "sitting": {"_count": 1}, "expelled": {"_count": 2}, "holding": {"_count": 1}, "dumped": {"_count": 1}, "busy": {"_count": 1}, "seen": {"_count": 1}, "given": {"_count": 1}, "caught": {"_count": 1}}, "be": {"_count": 25, "just": {"_count": 1}, "poorer": {"_count": 1}, "ashamed": {"_count": 1}, "persuading": {"_count": 1}, "going": {"_count": 1}, "on": {"_count": 1}, "playing": {"_count": 1}, "so": {"_count": 1}, "able": {"_count": 7}, "doing": {"_count": 2}, "angry": {"_count": 1}, "hard": {"_count": 1}, "expelled": {"_count": 1}, "top": {"_count": 1}, "next": {"_count": 1}, "hardpushed": {"_count": 1}, "back": {"_count": 2}}, "never": {"_count": 7, "heard": {"_count": 1}, "been": {"_count": 1}, "know": {"_count": 1}, "attack": {"_count": 1}, "be": {"_count": 2}, "have": {"_count": 1}}, "like": {"_count": 16, "fat": {"_count": 1}, "to": {"_count": 11}, "them": {"_count": 2}, "my": {"_count": 1}, "a": {"_count": 1}}, "call": {"_count": 4, "the": {"_count": 1}, "comforting": {"_count": 1}, "normal": {"_count": 1}, "foolproof": {"_count": 1}}, "better": {"_count": 24, "dodge": {"_count": 1}, "get": {"_count": 4}, "do": {"_count": 2}, "come": {"_count": 3}, "run": {"_count": 1}, "beat": {"_count": 1}, "go": {"_count": 3}, "hurry": {"_count": 1}, "tell": {"_count": 2}, "give": {"_count": 2}, "said": {"_count": 1}, "take": {"_count": 3}}, "think": {"_count": 13, "it": {"_count": 1}, "Id": {"_count": 2}, "we": {"_count": 1}, "coming": {"_count": 1}, "I": {"_count": 2}, "hed": {"_count": 2}, "if": {"_count": 1}, "Scrimgeour": {"_count": 1}, "": {"_count": 2}}, "get": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "seen": {"_count": 4, "me": {"_count": 1}, "all": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "got": {"_count": 3, "an": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}}, "only": {"_count": 1, "gone": {"_count": 1}}, "done": {"_count": 2, "it": {"_count": 1}, "Occlumency": {"_count": 1}}, "come": {"_count": 6, "ter": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "nosing": {"_count": 1}}, "read": {"_count": 1, "my": {"_count": 1}}, "rather": {"_count": 8, "go": {"_count": 1}, "avoid": {"_count": 1}, "not": {"_count": 1}, "learn": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "be": {"_count": 1}}, "go": {"_count": 2, "to": {"_count": 2}}, "probably": {"_count": 1, "have": {"_count": 1}}, "wiped": {"_count": 1, "slime": {"_count": 1}}, "remember": {"_count": 1, "it": {"_count": 1}}, "left": {"_count": 3, "and": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "follow": {"_count": 1, "me": {"_count": 1}}, "take": {"_count": 3, "it": {"_count": 3}}, "died": {"_count": 1, "said": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "had": {"_count": 2, "too": {"_count": 1}, "your": {"_count": 1}}, "heard": {"_count": 1, "your": {"_count": 1}}, "yelled": {"_count": 1, "and": {"_count": 1}}, "love": {"_count": 2, "to": {"_count": 2}}, "given": {"_count": 2, "the": {"_count": 1}, "up": {"_count": 1}}, "do": {"_count": 5, "if": {"_count": 1}, "better": {"_count": 1}, "something": {"_count": 1}, "when": {"_count": 1}, "this": {"_count": 1}}, "resigned": {"_count": 1, "": {"_count": 1}}, "know": {"_count": 3, "wouldnt": {"_count": 1}, "that": {"_count": 1}, "if": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "just": {"_count": 2, "let": {"_count": 1}, "listened": {"_count": 1}}, "all": {"_count": 2, "better": {"_count": 1}, "have": {"_count": 1}}, "entered": {"_count": 1, "": {"_count": 1}}, "want": {"_count": 2, "to": {"_count": 2}}, "already": {"_count": 2, "worked": {"_count": 1}, "done": {"_count": 1}}, "jump": {"_count": 1, "in": {"_count": 1}}, "win": {"_count": 1, "outright": {"_count": 1}}, "gone": {"_count": 3, "and": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "missed": {"_count": 1, "it": {"_count": 1}}, "both": {"_count": 1, "be": {"_count": 1}}, "deserve": {"_count": 1, "it": {"_count": 1}}, "written": {"_count": 1, "to": {"_count": 1}}, "thought": {"_count": 2, "any": {"_count": 1}, "he": {"_count": 1}}, "say": {"_count": 5, "that": {"_count": 4}, "They": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "watched": {"_count": 1, "him": {"_count": 1}}, "brought": {"_count": 1, "wild": {"_count": 1}}, "uuunderstand": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "rather": {"_count": 1}}, "known": {"_count": 1, "I": {"_count": 1}}, "finished": {"_count": 1, "so": {"_count": 1}}, "invite": {"_count": 1, "loads": {"_count": 1}}, "drive": {"_count": 1, "her": {"_count": 1}}, "persuade": {"_count": 1, "me": {"_count": 1}}, "dare": {"_count": 1, "do": {"_count": 1}}, "looked": {"_count": 1, "": {"_count": 1}}, "pop": {"_count": 1, "in": {"_count": 1}}, "find": {"_count": 1, "a": {"_count": 1}}, "nip": {"_count": 1, "down": {"_count": 1}}, "turn": {"_count": 1, "my": {"_count": 1}}, "change": {"_count": 1, "the": {"_count": 1}}, "signed": {"_count": 1, "up": {"_count": 1}}, "appear": {"_count": 1, "": {"_count": 1}}, "always": {"_count": 1, "want": {"_count": 1}}, "choose": {"_count": 1, "The": {"_count": 1}}, "lure": {"_count": 1, "us": {"_count": 1}}, "use": {"_count": 1, "the": {"_count": 1}}}, "expect": {"_count": 153, "to": {"_count": 11, "be": {"_count": 2}, "find": {"_count": 1}, "get": {"_count": 1}, "see": {"_count": 4}, "gain": {"_count": 1}, "know": {"_count": 1}, "do": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "astonishing": {"_count": 1, "things": {"_count": 1}}, "youve": {"_count": 3, "had": {"_count": 1}, "realized": {"_count": 1}, "wiped": {"_count": 1}}, "great": {"_count": 2, "things": {"_count": 2}}, "him": {"_count": 8, "to": {"_count": 8}}, "well": {"_count": 3, "be": {"_count": 3}}, "you": {"_count": 19, "will": {"_count": 1}, "at": {"_count": 2}, "to": {"_count": 9}, "11": {"_count": 1}, "back": {"_count": 1}, "know": {"_count": 1}, "before": {"_count": 1}, "for": {"_count": 1}, "until": {"_count": 1}, "and": {"_count": 1}}, "turnips": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 2, "presents": {"_count": 1}, "of": {"_count": 1}}, "theyve": {"_count": 2, "just": {"_count": 1}, "let": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "a": {"_count": 3, "museum": {"_count": 1}, "treat": {"_count": 1}, "perfect": {"_count": 1}}, "said": {"_count": 6, "Harry": {"_count": 1}, "Mrs": {"_count": 1}, "Mr": {"_count": 2}, "Sirius": {"_count": 1}, "Ron": {"_count": 1}}, "If": {"_count": 1, "in": {"_count": 1}}, "youd": {"_count": 2, "have": {"_count": 1}, "like": {"_count": 1}}, "You": {"_count": 1, "mean": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "They": {"_count": 1, "didnt": {"_count": 1}}, "thats": {"_count": 2, "what": {"_count": 1}, "why": {"_count": 1}}, "Black": {"_count": 1, "to": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "me": {"_count": 5, "to": {"_count": 5}}, "": {"_count": 8, "?": {"_count": 1}, ".": {"_count": 7}}, "hell": {"_count": 1, "want": {"_count": 1}}, "cauldron": {"_count": 1, "leaks": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "really": {"_count": 1}}, "youll": {"_count": 2, "both": {"_count": 1}, "need": {"_count": 1}}, "youre": {"_count": 2, "all": {"_count": 1}, "tired": {"_count": 1}}, "my": {"_count": 2, "grand": {"_count": 1}, "son": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "from": {"_count": 3, "Hogwarts": {"_count": 1}, "my": {"_count": 1}, "Snape": {"_count": 1}}, "the": {"_count": 5, "Dursleys": {"_count": 1}, "same": {"_count": 1}, "top": {"_count": 1}, "dummy": {"_count": 1}, "real": {"_count": 1}}, "more": {"_count": 2, "": {"_count": 1}, "faithful": {"_count": 1}}, "someone": {"_count": 1, "will": {"_count": 1}}, "Ginnys": {"_count": 1, "asleep": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "this": {"_count": 1, "he": {"_count": 1}}, "anything": {"_count": 1, "else": {"_count": 1}}, "in": {"_count": 1, "your": {"_count": 1}}, "shes": {"_count": 1, "feeling": {"_count": 1}}, "Dumbledores": {"_count": 1, "letting": {"_count": 1}}, "Ill": {"_count": 1, "find": {"_count": 1}}, "did": {"_count": 1, "I": {"_count": 1}}, "hes": {"_count": 1, "delighted": {"_count": 1}}, "anyone": {"_count": 1, "would": {"_count": 1}}, "all": {"_count": 1, "these": {"_count": 1}}, "Firenze": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}, "shell": {"_count": 1, "force": {"_count": 1}}, "James": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 1, "will": {"_count": 1}}, "what": {"_count": 1, "youre": {"_count": 1}}, "Potter": {"_count": 1, "will": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "\u2018nothings": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "your": {"_count": 2, "trainers": {"_count": 1}, "fatherll": {"_count": 1}}, "accidents": {"_count": 1, "don": {"_count": 1}}, "he": {"_count": 1, "regrets": {"_count": 1}}, "nothing": {"_count": 1, "more": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "mothers": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "Hestia": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "us": {"_count": 2, "to": {"_count": 2}}, "Harry": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "pain": {"_count": 1, "when": {"_count": 1}}, "an": {"_count": 1, "unqualified": {"_count": 1}}, "Severus": {"_count": 1, "said": {"_count": 1}}, "everyone": {"_count": 1, "to": {"_count": 1}}, "Draco": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "small": {"_count": 1}}}, "be": {"_count": 4420, "involved": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 106, ".": {"_count": 68}, "?": {"_count": 31}, "!": {"_count": 7}}, "happening": {"_count": 3, "all": {"_count": 1}, "elsewhere": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 223, "lot": {"_count": 10}, "silver": {"_count": 1}, "bit": {"_count": 19}, "whole": {"_count": 1}, "bag": {"_count": 1}, "wizard": {"_count": 3}, "steep": {"_count": 1}, "credit": {"_count": 1}, "person": {"_count": 1}, "very": {"_count": 8}, "Quidditch": {"_count": 1}, "record": {"_count": 1}, "stream": {"_count": 1}, "knight": {"_count": 1}, "fool": {"_count": 1}, "handsome": {"_count": 1}, "ruin": {"_count": 1}, "violent": {"_count": 1}, "fan": {"_count": 1}, "Slytherin": {"_count": 1}, "nightmare": {"_count": 1}, "good": {"_count": 9}, "Squib": {"_count": 1}, "way": {"_count": 3}, "suit": {"_count": 1}, "descendant": {"_count": 1}, "bright": {"_count": 2}, "long": {"_count": 3}, "cheerful": {"_count": 1}, "single": {"_count": 1}, "rats": {"_count": 1}, "fight": {"_count": 1}, "large": {"_count": 2}, "proper": {"_count": 1}, "burden": {"_count": 2}, "hero": {"_count": 1}, "shortcut": {"_count": 1}, "success": {"_count": 1}, "teacher": {"_count": 1}, "practical": {"_count": 1}, "tough": {"_count": 1}, "trapdoor": {"_count": 1}, "friend": {"_count": 1}, "miracle": {"_count": 1}, "laughingstock": {"_count": 1}, "small": {"_count": 2}, "recent": {"_count": 1}, "golfing": {"_count": 1}, "genius": {"_count": 1}, "deserted": {"_count": 2}, "party": {"_count": 1}, "spoilsport": {"_count": 1}, "great": {"_count": 5}, "weeks": {"_count": 2}, "caution": {"_count": 1}, "pretty": {"_count": 2}, "most": {"_count": 1}, "more": {"_count": 2}, "few": {"_count": 2}, "shame": {"_count": 1}, "little": {"_count": 3}, "mirror": {"_count": 1}, "prat": {"_count": 1}, "medical": {"_count": 1}, "sort": {"_count": 1}, "cinch": {"_count": 1}, "low": {"_count": 1}, "jet": {"_count": 1}, "lovable": {"_count": 1}, "murderer": {"_count": 2}, "sad": {"_count": 1}, "plea": {"_count": 1}, "an": {"_count": 1}, "gift": {"_count": 1}, "thousand": {"_count": 1}, "painful": {"_count": 1}, "nice": {"_count": 1}, "Metamorphmagus": {"_count": 1}, "couple": {"_count": 2}, "pile": {"_count": 1}, "boggart": {"_count": 1}, "Black": {"_count": 1}, "bad": {"_count": 1}, "treat": {"_count": 1}, "prefect": {"_count": 1}, "reasonable": {"_count": 1}, "maniac": {"_count": 1}, "frameup": {"_count": 1}, "perfect": {"_count": 1}, "chance": {"_count": 2}, "surprise": {"_count": 1}, "job": {"_count": 1}, "message": {"_count": 1}, "crowded": {"_count": 1}, "motorway": {"_count": 1}, "meeting": {"_count": 1}, "complete": {"_count": 2}, "real": {"_count": 3}, "Death": {"_count": 3}, "gentleman": {"_count": 1}, "problem": {"_count": 1}, "dementor": {"_count": 1}, "restful": {"_count": 1}, "new": {"_count": 1}, "live": {"_count": 1}, "vast": {"_count": 1}, "sack": {"_count": 1}, "Weasleyfree": {"_count": 1}, "security": {"_count": 1}, "sign": {"_count": 1}, "captive": {"_count": 1}, "danger": {"_count": 1}, "poor": {"_count": 1}, "standard": {"_count": 1}, "dignified": {"_count": 1}, "witch": {"_count": 2}, "vampire": {"_count": 1}, "thick": {"_count": 1}, "laugh": {"_count": 1}, "green": {"_count": 1}, "Horcrux": {"_count": 1}, "mortal": {"_count": 1}, "certain": {"_count": 1}, "a": {"_count": 3}, "true": {"_count": 1}, "full": {"_count": 1}, "tone": {"_count": 1}, "short": {"_count": 1}, "solitary": {"_count": 1}, "protector": {"_count": 1}, "basilisk": {"_count": 1}, "giant": {"_count": 1}, "reference": {"_count": 1}, "secret": {"_count": 1}, "choice": {"_count": 1}, "statue": {"_count": 1}, "triangular": {"_count": 1}, "sitting": {"_count": 1}, "trick": {"_count": 1}, "Patronus": {"_count": 1}, "stained": {"_count": 1}, "combination": {"_count": 1}, "myth": {"_count": 1}, "cottage": {"_count": 1}, "fairy": {"_count": 1}, "Gryffindor": {"_count": 1}, "part": {"_count": 1}, "blessed": {"_count": 1}, "calamity": {"_count": 1}}, "older": {"_count": 1, "than": {"_count": 1}}, "it": {"_count": 6, "": {"_count": 5}, "said": {"_count": 1}}, "sorry": {"_count": 6, "my": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 1}, "to": {"_count": 3}}, "celebrating": {"_count": 2, "this": {"_count": 1}, "as": {"_count": 1}}, "any": {"_count": 17, "more": {"_count": 2}, "Hogwarts": {"_count": 1}, "the": {"_count": 1}, "other": {"_count": 2}, "particular": {"_count": 1}, "ducking": {"_count": 1}, "better": {"_count": 1}, "fun": {"_count": 1}, "food": {"_count": 1}, "of": {"_count": 1}, "way": {"_count": 1}, "need": {"_count": 1}, "question": {"_count": 1}, "Squibs": {"_count": 1}, "different": {"_count": 1}}, "about": {"_count": 7, "Dudleys": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "getting": {"_count": 1}, "Its": {"_count": 1}, "fighting": {"_count": 1}, "to": {"_count": 1}}, "going": {"_count": 22, "on": {"_count": 5}, "off": {"_count": 1}, "backward": {"_count": 1}, "up": {"_count": 2}, "": {"_count": 1}, "for": {"_count": 1}, "back": {"_count": 2}, "to": {"_count": 2}, "from": {"_count": 1}, "into": {"_count": 2}, "their": {"_count": 1}, "the": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 1}}, "able": {"_count": 252, "to": {"_count": 241}, "ter": {"_count": 8}, "Ah": {"_count": 1}, "Oh": {"_count": 1}, "who": {"_count": 1}}, "stiff": {"_count": 1, "if": {"_count": 1}}, "if": {"_count": 8, "on": {"_count": 1}, "I": {"_count": 1}, "someone": {"_count": 1}, "we": {"_count": 2}, "they": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}}, "thankful": {"_count": 1, "for": {"_count": 1}}, "frightened": {"_count": 3, "of": {"_count": 2}, "said": {"_count": 1}}, "here": {"_count": 51, "by": {"_count": 2}, "but": {"_count": 3}, "just": {"_count": 1}, "soon": {"_count": 1}, "": {"_count": 6}, "when": {"_count": 1}, "tomorrow": {"_count": 1}, "for": {"_count": 3}, "if": {"_count": 4}, "now": {"_count": 1}, "any": {"_count": 2}, "how": {"_count": 1}, "to": {"_count": 3}, "in": {"_count": 6}, "on": {"_count": 1}, "and": {"_count": 1}, "could": {"_count": 1}, "Harry": {"_count": 1}, "about": {"_count": 1}, "at": {"_count": 3}, "somewhere": {"_count": 1}, "I": {"_count": 1}, "tonight": {"_count": 1}, "within": {"_count": 1}, "again": {"_count": 1}, "said": {"_count": 1}, "much": {"_count": 1}, "knew": {"_count": 1}}, "famous": {"_count": 2, "a": {"_count": 1}, "for": {"_count": 1}}, "surprised": {"_count": 13, "if": {"_count": 6}, "that": {"_count": 2}, "said": {"_count": 1}, "what": {"_count": 1}, "how": {"_count": 1}, "by": {"_count": 1}, "its": {"_count": 1}}, "books": {"_count": 1, "written": {"_count": 1}}, "enough": {"_count": 11, "to": {"_count": 4}, "fer": {"_count": 1}, "Im": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 2}}, "growing": {"_count": 4, "up": {"_count": 1}, "more": {"_count": 2}, "larger": {"_count": 1}}, "hiding": {"_count": 7, "Harry": {"_count": 1}, "down": {"_count": 1}, "upstairs": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}, "behind": {"_count": 1}, "for": {"_count": 1}}, "allowed": {"_count": 25, "and": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 3}, "to": {"_count": 16}, "Harry": {"_count": 1}, "back": {"_count": 1}, "a": {"_count": 1}, "given": {"_count": 1}}, "found": {"_count": 6, "Professor": {"_count": 1}, "late": {"_count": 1}, "here": {"_count": 1}, "yet": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "woken": {"_count": 2, "in": {"_count": 1}, "but": {"_count": 1}}, "silly": {"_count": 16, "Vernon": {"_count": 1}, "Ron": {"_count": 1}, "said": {"_count": 4}, "it": {"_count": 1}, "girl": {"_count": 1}, "of": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 3}, "Dawlish": {"_count": 1}, "Molly": {"_count": 1}, "dear": {"_count": 1}}, "in": {"_count": 139, "that": {"_count": 1}, "order": {"_count": 1}, "yet": {"_count": 1}, "Slytherin": {"_count": 6}, "trouble": {"_count": 7}, "": {"_count": 1}, "the": {"_count": 28}, "for": {"_count": 2}, "Gryffindor": {"_count": 1}, "when": {"_count": 1}, "even": {"_count": 2}, "position": {"_count": 1}, "my": {"_count": 4}, "mortal": {"_count": 1}, "his": {"_count": 4}, "danger": {"_count": 4}, "there": {"_count": 8}, "here": {"_count": 1}, "her": {"_count": 1}, "London": {"_count": 2}, "Abergavenny": {"_count": 1}, "three": {"_count": 2}, "so": {"_count": 2}, "league": {"_count": 1}, "once": {"_count": 1}, "Hogsmeade": {"_count": 1}, "it": {"_count": 1}, "big": {"_count": 1}, "worse": {"_count": 1}, "bed": {"_count": 3}, "two": {"_count": 1}, "perfect": {"_count": 1}, "real": {"_count": 1}, "Africa": {"_count": 1}, "touch": {"_count": 3}, "complete": {"_count": 1}, "Herbology": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 8}, "with": {"_count": 2}, "direct": {"_count": 1}, "detention": {"_count": 1}, "charge": {"_count": 2}, "class": {"_count": 1}, "Grimmauld": {"_count": 1}, "an": {"_count": 1}, "limbo": {"_count": 1}, "close": {"_count": 1}, "deep": {"_count": 1}, "such": {"_count": 1}, "pain": {"_count": 1}, "their": {"_count": 1}, "Azkaban": {"_count": 2}, "contact": {"_count": 1}, "Slughorns": {"_count": 1}, "outside": {"_count": 1}, "if": {"_count": 2}, "good": {"_count": 1}, "fourth": {"_count": 1}, "question": {"_count": 1}, "your": {"_count": 1}, "one": {"_count": 1}, "most": {"_count": 1}, "terrible": {"_count": 1}, "Slyth": {"_count": 1}}, "spending": {"_count": 7, "the": {"_count": 4}, "a": {"_count": 2}, "in": {"_count": 1}}, "really": {"_count": 20, "annoying": {"_count": 1}, "stupid": {"_count": 1}, "good": {"_count": 3}, "boring": {"_count": 1}, "upset": {"_count": 2}, "thick": {"_count": 1}, "really": {"_count": 1}, "surprised": {"_count": 1}, "hard": {"_count": 1}, "fun": {"_count": 1}, "pleased": {"_count": 3}, "tough": {"_count": 1}, "cool": {"_count": 1}, "scary": {"_count": 1}, "advanced": {"_count": 1}}, "sure": {"_count": 37, "the": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 2}, "to": {"_count": 8}, "": {"_count": 4}, "of": {"_count": 6}, "that": {"_count": 6}, "what": {"_count": 2}, "not": {"_count": 1}, "Snapes": {"_count": 1}, "there": {"_count": 1}, "we": {"_count": 1}, "said": {"_count": 1}, "Potter": {"_count": 1}, "you": {"_count": 1}}, "with": {"_count": 17, "Dudley": {"_count": 1}, "youngsters": {"_count": 1}, "Aunt": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}, "you": {"_count": 3}, "him": {"_count": 4}, "people": {"_count": 1}, "graver": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "Teddy": {"_count": 1}}, "sick": {"_count": 9, "": {"_count": 4}, "he": {"_count": 1}, "then": {"_count": 1}, "as": {"_count": 1}, "if": {"_count": 1}, "from": {"_count": 1}}, "good": {"_count": 19, "training": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "if": {"_count": 3}, "to": {"_count": 3}, "enough": {"_count": 5}, "when": {"_count": 1}, "without": {"_count": 1}, "news": {"_count": 1}, "and": {"_count": 1}}, "coming": {"_count": 19, "from": {"_count": 5}, "back": {"_count": 4}, "up": {"_count": 1}, "into": {"_count": 1}, "any": {"_count": 1}, "until": {"_count": 1}, "onto": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "zere": {"_count": 1}, "more": {"_count": 1}}, "so": {"_count": 31, "wet": {"_count": 1}, "full": {"_count": 1}, "interfering": {"_count": 1}, "bad": {"_count": 1}, "unpleasant": {"_count": 1}, "ridiculous": {"_count": 2}, "sure": {"_count": 3}, "kind": {"_count": 1}, "Hes": {"_count": 1}, "difficult": {"_count": 2}, "silly": {"_count": 2}, "stupid": {"_count": 1}, "keen": {"_count": 2}, "happy": {"_count": 1}, "accommodating": {"_count": 1}, "badly": {"_count": 1}, "": {"_count": 2}, "arrogant": {"_count": 1}, "complex": {"_count": 1}, "detrimental": {"_count": 1}, "proud": {"_count": 1}, "glad": {"_count": 1}, "hard": {"_count": 1}, "lenient": {"_count": 1}}, "stupid": {"_count": 17, "snapped": {"_count": 1}, "said": {"_count": 4}, "": {"_count": 1}, "Hermione": {"_count": 1}, "I": {"_count": 1}, "itll": {"_count": 1}, "enough": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}, "we": {"_count": 1}, "Harrys": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "boy": {"_count": 1}}, "no": {"_count": 37, "mistake": {"_count": 3}, "doubt": {"_count": 6}, "good": {"_count": 1}, "more": {"_count": 6}, "Muggleborns": {"_count": 1}, "need": {"_count": 7}, "punishment": {"_count": 1}, "visibility": {"_count": 1}, "hanging": {"_count": 1}, "change": {"_count": 1}, "Peeves": {"_count": 1}, "help": {"_count": 1}, "return": {"_count": 1}, "release": {"_count": 1}, "higher": {"_count": 1}, "question": {"_count": 2}, "going": {"_count": 1}, "goodbyes": {"_count": 1}}, "writing": {"_count": 4, "to": {"_count": 3}, "anything": {"_count": 1}}, "following": {"_count": 8, "us": {"_count": 1}, "him": {"_count": 2}, "this": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "Hermiones": {"_count": 1}, "what": {"_count": 1}}, "nice": {"_count": 8, "if": {"_count": 2}, "to": {"_count": 4}, "Ron": {"_count": 1}, "and": {"_count": 1}}, "up": {"_count": 20, "here": {"_count": 3}, "to": {"_count": 7}, "for": {"_count": 1}, "front": {"_count": 1}, "and": {"_count": 2}, "at": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 2}, "early": {"_count": 1}, "on": {"_count": 1}}, "back": {"_count": 59, "in": {"_count": 11}, "": {"_count": 5}, "at": {"_count": 6}, "tomorrow": {"_count": 1}, "to": {"_count": 4}, "said": {"_count": 1}, "on": {"_count": 2}, "and": {"_count": 1}, "with": {"_count": 5}, "soon": {"_count": 3}, "about": {"_count": 1}, "here": {"_count": 2}, "for": {"_count": 4}, "up": {"_count": 2}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}, "by": {"_count": 3}, "before": {"_count": 3}, "around": {"_count": 1}, "as": {"_count": 1}}, "trying": {"_count": 11, "to": {"_count": 9}, "it": {"_count": 1}, "not": {"_count": 1}}, "better": {"_count": 15, "just": {"_count": 1}, "than": {"_count": 1}, "if": {"_count": 3}, "for": {"_count": 1}, "off": {"_count": 4}, "hasn": {"_count": 1}, "make": {"_count": 2}, "to": {"_count": 2}}, "eleven": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "warmer": {"_count": 1, "if": {"_count": 1}}, "heard": {"_count": 16, "": {"_count": 3}, "telling": {"_count": 1}, "now": {"_count": 1}, "from": {"_count": 3}, "throughout": {"_count": 1}, "passing": {"_count": 1}, "sobbing": {"_count": 1}, "underwater": {"_count": 1}, "over": {"_count": 2}, "loud": {"_count": 1}, "sliding": {"_count": 1}}, "my": {"_count": 6, "dratted": {"_count": 1}, "five": {"_count": 1}, "chance": {"_count": 1}, "fault": {"_count": 1}, "friend": {"_count": 1}, "Christmas": {"_count": 1}}, "just": {"_count": 9, "the": {"_count": 2}, "fine": {"_count": 1}, "as": {"_count": 2}, "one": {"_count": 1}, "behind": {"_count": 1}, "our": {"_count": 1}, "feet": {"_count": 1}}, "trouble": {"_count": 2, "gettin": {"_count": 1}, "spat": {"_count": 1}}, "right": {"_count": 9, "famous": {"_count": 1}, "can": {"_count": 1}, "about": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}, "twice": {"_count": 1}, "she": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}}, "grateful": {"_count": 5, "for": {"_count": 2}, "it": {"_count": 1}, "Ive": {"_count": 1}, "": {"_count": 1}}, "under": {"_count": 4, "the": {"_count": 3}, "that": {"_count": 1}}, "at": {"_count": 17, "home": {"_count": 1}, "Kings": {"_count": 1}, "Hogwarts": {"_count": 4}, "my": {"_count": 1}, "Rons": {"_count": 1}, "the": {"_count": 4}, "all": {"_count": 2}, "large": {"_count": 1}, "breakfast": {"_count": 1}, "her": {"_count": 1}}, "made": {"_count": 10, "of": {"_count": 3}, "up": {"_count": 2}, "not": {"_count": 1}, "illegal": {"_count": 1}, "head": {"_count": 1}, "a": {"_count": 1}, "hastily": {"_count": 1}}, "off": {"_count": 16, "Harry": {"_count": 2}, "then": {"_count": 1}, "said": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 1}, "plenty": {"_count": 1}, "": {"_count": 5}, "she": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "mad": {"_count": 6, "ter": {"_count": 3}, "to": {"_count": 1}, "but": {"_count": 1}, "not": {"_count": 1}}, "left": {"_count": 7, "alone": {"_count": 2}, "with": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}, "behind": {"_count": 1}, "to": {"_count": 1}}, "wantin": {"_count": 1, "magic": {"_count": 1}}, "piles": {"_count": 1, "of": {"_count": 1}}, "some": {"_count": 16, "huge": {"_count": 1}, "sort": {"_count": 2}, "Polyjuice": {"_count": 1}, "help": {"_count": 1}, "of": {"_count": 2}, "kind": {"_count": 3}, "improvement": {"_count": 1}, "time": {"_count": 1}, "contamination": {"_count": 2}, "sign": {"_count": 1}, "longlost": {"_count": 1}}, "one": {"_count": 14, "of": {"_count": 7}, "time": {"_count": 1}, "short": {"_count": 1}, "said": {"_count": 1}, "less": {"_count": 2}, "who": {"_count": 1}, "explanation": {"_count": 1}}, "ggetting": {"_count": 1, "all": {"_count": 1}}, "needin": {"_count": 1, "one": {"_count": 1}}, "sucked": {"_count": 2, "through": {"_count": 1}, "out": {"_count": 1}}, "inside": {"_count": 6, "this": {"_count": 1}, "on": {"_count": 1}, "me": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "too": {"_count": 1}}, "laughed": {"_count": 1, "at": {"_count": 1}}, "seeing": {"_count": 8, "you": {"_count": 5}, "them": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "destined": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "yerself": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 47, "right": {"_count": 35}, "pleased": {"_count": 1}, "he": {"_count": 1}, "bad": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "impressed": {"_count": 1}, "of": {"_count": 1}, "over": {"_count": 1}, "my": {"_count": 1}, "about": {"_count": 1}, "wrapped": {"_count": 1}, "righ": {"_count": 1}}, "somewhere": {"_count": 6, "in": {"_count": 2}, "well": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "else": {"_count": 1}}, "quiet": {"_count": 11, "": {"_count": 4}, "and": {"_count": 2}, "until": {"_count": 1}, "but": {"_count": 1}, "she": {"_count": 1}, "as": {"_count": 1}, "I": {"_count": 1}}, "scared": {"_count": 5, "youll": {"_count": 1}, "of": {"_count": 1}, "dear": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "brave": {"_count": 3, "or": {"_count": 1}, "enough": {"_count": 1}, "": {"_count": 1}}, "unwrapped": {"_count": 1, "": {"_count": 1}}, "careful": {"_count": 26, "with": {"_count": 1}, "if": {"_count": 1}, "lets": {"_count": 1}, "Arthur": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 6}, "theres": {"_count": 1}, "said": {"_count": 1}, "because": {"_count": 1}, "what": {"_count": 2}, "and": {"_count": 1}, "cause": {"_count": 1}, "he": {"_count": 1}, "Umbridge": {"_count": 1}, "not": {"_count": 3}, "Blaise": {"_count": 1}, "Hagrid": {"_count": 1}, "to": {"_count": 1}}, "pepper": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 25, "bad": {"_count": 3}, "difficult": {"_count": 2}, "friendly": {"_count": 1}, "careful": {"_count": 1}, "late": {"_count": 3}, "": {"_count": 1}, "advanced": {"_count": 1}, "tired": {"_count": 1}, "pleased": {"_count": 2}, "ill": {"_count": 1}, "Siriusl": {"_count": 1}, "big": {"_count": 1}, "much": {"_count": 1}, "busy": {"_count": 1}, "hard": {"_count": 1}, "afraid": {"_count": 1}, "heavy": {"_count": 1}, "long": {"_count": 1}, "scared": {"_count": 1}}, "there": {"_count": 26, "soon": {"_count": 1}, "in": {"_count": 4}, "yet": {"_count": 1}, "for": {"_count": 2}, "to": {"_count": 2}, "said": {"_count": 2}, "": {"_count": 5}, "a": {"_count": 1}, "irascible": {"_count": 1}, "Harry": {"_count": 3}, "Draco": {"_count": 1}, "at": {"_count": 1}, "within": {"_count": 1}, "but": {"_count": 1}}, "settling": {"_count": 1, "on": {"_count": 1}}, "slowing": {"_count": 1, "down": {"_count": 1}}, "reaching": {"_count": 1, "Hogwarts": {"_count": 1}}, "taken": {"_count": 17, "to": {"_count": 2}, "from": {"_count": 3}, "outside": {"_count": 1}, "": {"_count": 5}, "into": {"_count": 1}, "off": {"_count": 1}, "inside": {"_count": 1}, "aback": {"_count": 1}, "during": {"_count": 1}, "under": {"_count": 1}}, "thick": {"_count": 4, "trees": {"_count": 1}, "said": {"_count": 3}}, "taking": {"_count": 13, "them": {"_count": 1}, "up": {"_count": 2}, "place": {"_count": 1}, "the": {"_count": 1}, "even": {"_count": 1}, "Care": {"_count": 1}, "a": {"_count": 2}, "over": {"_count": 1}, "him": {"_count": 1}, "with": {"_count": 1}, "charge": {"_count": 1}}, "sorted": {"_count": 6, "into": {"_count": 2}, "she": {"_count": 1}, "": {"_count": 2}, "Professor": {"_count": 1}}, "something": {"_count": 19, "like": {"_count": 4}, "wrong": {"_count": 2}, "really": {"_count": 1}, "useful": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 2}, "at": {"_count": 1}, "Hermione": {"_count": 1}, "much": {"_count": 1}, "extremely": {"_count": 1}, "top": {"_count": 1}, "going": {"_count": 1}, "else": {"_count": 1}, "so": {"_count": 1}}, "arguing": {"_count": 1, "": {"_count": 1}}, "Sorted": {"_count": 1, "I": {"_count": 1}}, "afraid": {"_count": 3, "l": {"_count": 1}, "of": {"_count": 1}, "said": {"_count": 1}}, "asking": {"_count": 5, "rather": {"_count": 1}, "too": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 1}, "\u2018Excuse": {"_count": 1}}, "chosen": {"_count": 5, "not": {"_count": 1}, "by": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "instead": {"_count": 1}}, "great": {"_count": 8, "you": {"_count": 2}, "said": {"_count": 2}, "": {"_count": 1}, "grease": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}}, "GRYFFINDOR": {"_count": 1, "": {"_count": 1}}, "nearly": {"_count": 8, "headless": {"_count": 1}, "time": {"_count": 3}, "there": {"_count": 1}, "at": {"_count": 1}, "three": {"_count": 1}, "as": {"_count": 1}}, "magic": {"_count": 2, "enough": {"_count": 1}, "wed": {"_count": 1}}, "very": {"_count": 43, "difficult": {"_count": 3}, "hard": {"_count": 1}, "hygienic": {"_count": 1}, "late": {"_count": 1}, "comfortable": {"_count": 1}, "scared": {"_count": 1}, "good": {"_count": 2}, "happy": {"_count": 2}, "sorry": {"_count": 1}, "miserable": {"_count": 1}, "impressed": {"_count": 1}, "pleased": {"_count": 1}, "proud": {"_count": 2}, "glad": {"_count": 1}, "careful": {"_count": 6}, "surprised": {"_count": 2}, "exciting": {"_count": 1}, "sure": {"_count": 1}, "easy": {"_count": 1}, "deep": {"_count": 1}, "kind": {"_count": 1}, "very": {"_count": 1}, "damaging": {"_count": 1}, "well": {"_count": 1}, "useful": {"_count": 1}, "different": {"_count": 1}, "unfair": {"_count": 1}, "little": {"_count": 1}, "lucky": {"_count": 1}, "interested": {"_count": 1}, "wrong": {"_count": 1}, "near": {"_count": 1}}, "starting": {"_count": 10, "small": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 3}, "this": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}}, "used": {"_count": 9, "between": {"_count": 1}, "for": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 2}, "in": {"_count": 1}}, "held": {"_count": 4, "in": {"_count": 3}, "": {"_count": 1}}, "said": {"_count": 18, "Percy": {"_count": 1}, "Hermione": {"_count": 2}, "Ron": {"_count": 4}, "Uncle": {"_count": 1}, "for": {"_count": 3}, "Neville": {"_count": 1}, "is": {"_count": 1}, "to": {"_count": 1}, "Mrs": {"_count": 1}, "Snape": {"_count": 1}, "Very": {"_count": 1}, "James": {"_count": 1}}, "old": {"_count": 4, "and": {"_count": 1}, "enough": {"_count": 1}, "friends": {"_count": 1}, "tin": {"_count": 1}}, "the": {"_count": 103, "entrance": {"_count": 2}, "worst": {"_count": 2}, "work": {"_count": 1}, "youngest": {"_count": 1}, "problem": {"_count": 1}, "best": {"_count": 4}, "day": {"_count": 1}, "first": {"_count": 12}, "perfect": {"_count": 1}, "only": {"_count": 9}, "one": {"_count": 11}, "Heir": {"_count": 1}, "most": {"_count": 3}, "last": {"_count": 7}, "sun": {"_count": 1}, "same": {"_count": 1}, "red": {"_count": 1}, "Potters": {"_count": 1}, "broom": {"_count": 1}, "Grim": {"_count": 1}, "headline": {"_count": 1}, "chief": {"_count": 1}, "truth": {"_count": 1}, "night": {"_count": 1}, "ordinary": {"_count": 1}, "lead": {"_count": 1}, "worlds": {"_count": 1}, "final": {"_count": 1}, "accumulated": {"_count": 1}, "messenger": {"_count": 1}, "AntiUmbridge": {"_count": 1}, "very": {"_count": 1}, "lair": {"_count": 1}, "tiny": {"_count": 1}, "downfall": {"_count": 1}, "sign": {"_count": 1}, "undoing": {"_count": 1}, "jewel": {"_count": 1}, "son": {"_count": 1}, "cue": {"_count": 1}, "real": {"_count": 1}, "Apparition": {"_count": 1}, "servant": {"_count": 1}, "greatest": {"_count": 2}, "Dark": {"_count": 1}, "common": {"_count": 1}, "Ministrys": {"_count": 1}, "place": {"_count": 1}, "protectors": {"_count": 1}, "golden": {"_count": 1}, "books": {"_count": 1}, "symbol": {"_count": 1}, "voice": {"_count": 1}, "foundation": {"_count": 1}, "basis": {"_count": 1}, "scar": {"_count": 1}, "diadem": {"_count": 2}, "true": {"_count": 1}, "end": {"_count": 1}}, "changing": {"_count": 2, "the": {"_count": 2}}, "enjoying": {"_count": 7, "them": {"_count": 1}, "yourself": {"_count": 1}, "herself": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 2}}, "learning": {"_count": 4, "together": {"_count": 1}, "to": {"_count": 1}, "about": {"_count": 1}, "how": {"_count": 1}}, "full": {"_count": 6, "of": {"_count": 6}}, "out": {"_count": 19, "of": {"_count": 7}, "in": {"_count": 4}, "": {"_count": 1}, "there": {"_count": 4}, "on": {"_count": 1}, "here": {"_count": 1}, "that": {"_count": 1}}, "expelled": {"_count": 16, "he": {"_count": 1}, "": {"_count": 6}, "too": {"_count": 1}, "for": {"_count": 3}, "Ive": {"_count": 1}, "if": {"_count": 1}, "from": {"_count": 2}, "like": {"_count": 1}}, "packing": {"_count": 4, "his": {"_count": 2}, "their": {"_count": 1}, "she": {"_count": 1}}, "Hagrids": {"_count": 1, "assistant": {"_count": 1}}, "being": {"_count": 2, "expelled": {"_count": 1}, "watched": {"_count": 1}}, "brilliant": {"_count": 4, "": {"_count": 3}, "or": {"_count": 1}}, "late": {"_count": 11, "": {"_count": 2}, "next": {"_count": 1}, "for": {"_count": 5}, "the": {"_count": 1}, "Im": {"_count": 1}, "said": {"_count": 1}}, "lurking": {"_count": 3, "in": {"_count": 2}, "there": {"_count": 1}}, "that": {"_count": 14, "simple": {"_count": 1}, "desperate": {"_count": 1}, "as": {"_count": 1}, "dangerous": {"_count": 1}, "ill": {"_count": 1}, "long": {"_count": 2}, "said": {"_count": 1}, "you": {"_count": 1}, "stupid": {"_count": 1}, "the": {"_count": 1}, "Bellatrix": {"_count": 1}, "Dumbledore": {"_count": 1}, "nobody": {"_count": 1}}, "okay": {"_count": 17, "get": {"_count": 1}, "if": {"_count": 2}, "": {"_count": 7}, "Im": {"_count": 1}, "he": {"_count": 1}, "now": {"_count": 1}, "with": {"_count": 1}, "Dromeda": {"_count": 1}, "shes": {"_count": 1}, "Come": {"_count": 1}}, "on": {"_count": 28, "the": {"_count": 13}, "a": {"_count": 4}, "duty": {"_count": 2}, "holiday": {"_count": 1}, "hand": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 2}, "with": {"_count": 1}, "my": {"_count": 2}, "your": {"_count": 1}}, "joining": {"_count": 3, "team": {"_count": 1}, "myself": {"_count": 1}, "up": {"_count": 1}}, "straining": {"_count": 1, "to": {"_count": 1}}, "working": {"_count": 9, "with": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}, "alongside": {"_count": 1}, "out": {"_count": 1}, "harder": {"_count": 1}, "hard": {"_count": 1}, "together": {"_count": 1}}, "sending": {"_count": 3, "skyward": {"_count": 1}, "whats": {"_count": 1}, "you": {"_count": 1}}, "driving": {"_count": 3, "the": {"_count": 1}, "of": {"_count": 1}, "say": {"_count": 1}}, "dead": {"_count": 21, "now": {"_count": 1}, "please": {"_count": 1}, "He": {"_count": 1}, "would": {"_count": 1}, "fer": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 6}, "rats": {"_count": 1}, "dont": {"_count": 1}, "its": {"_count": 1}, "tomorrow": {"_count": 1}, "long": {"_count": 1}, "said": {"_count": 1}, "by": {"_count": 1}, "if": {"_count": 1}, "the": {"_count": 1}}, "informed": {"_count": 2, "of": {"_count": 1}, "at": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "seen": {"_count": 42, "from": {"_count": 1}, "it": {"_count": 1}, "carrying": {"_count": 1}, "": {"_count": 14}, "to": {"_count": 2}, "said": {"_count": 1}, "in": {"_count": 2}, "teaching": {"_count": 1}, "by": {"_count": 1}, "pottering": {"_count": 1}, "under": {"_count": 1}, "though": {"_count": 2}, "but": {"_count": 1}, "as": {"_count": 1}, "was": {"_count": 1}, "looking": {"_count": 1}, "buying": {"_count": 1}, "that": {"_count": 1}, "popping": {"_count": 1}, "lurking": {"_count": 1}, "and": {"_count": 2}, "completely": {"_count": 1}, "so": {"_count": 1}, "on": {"_count": 1}, "getting": {"_count": 1}}, "playing": {"_count": 11, "in": {"_count": 3}, "Fluffy": {"_count": 1}, "into": {"_count": 1}, "right": {"_count": 1}, "Slytherin": {"_count": 1}, "both": {"_count": 1}, "wont": {"_count": 1}, "Keeper": {"_count": 1}, "Seeker": {"_count": 1}}, "kept": {"_count": 7, "well": {"_count": 1}, "within": {"_count": 1}, "tethered": {"_count": 1}, "quiet": {"_count": 1}, "outta": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}}, "running": {"_count": 3, "around": {"_count": 1}, "to": {"_count": 1}, "down": {"_count": 1}}, "carried": {"_count": 2, "around": {"_count": 1}, "out": {"_count": 1}}, "looking": {"_count": 8, "for": {"_count": 4}, "at": {"_count": 2}, "through": {"_count": 1}, "something": {"_count": 1}}, "walking": {"_count": 3, "onto": {"_count": 1}, "with": {"_count": 1}, "down": {"_count": 1}}, "raised": {"_count": 2, "high": {"_count": 1}, "in": {"_count": 1}}, "speaking": {"_count": 4, "particularly": {"_count": 1}, "to": {"_count": 2}, "more": {"_count": 1}}, "doing": {"_count": 18, "as": {"_count": 1}, "something": {"_count": 4}, "my": {"_count": 1}, "to": {"_count": 1}, "anything": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 2}, "some": {"_count": 1}, "": {"_count": 3}, "all": {"_count": 1}, "and": {"_count": 1}, "him": {"_count": 1}}, "nursed": {"_count": 1, "back": {"_count": 1}}, "replacing": {"_count": 1, "Harry": {"_count": 1}}, "staying": {"_count": 7, "for": {"_count": 1}, "at": {"_count": 2}, "in": {"_count": 2}, "here": {"_count": 1}, "and": {"_count": 1}}, "gamekeeper": {"_count": 2, "yourself": {"_count": 1}, "cant": {"_count": 1}}, "safe": {"_count": 11, "to": {"_count": 3}, "with": {"_count": 1}, "this": {"_count": 1}, "once": {"_count": 1}, "fer": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}}, "five": {"_count": 1, "floors": {"_count": 1}}, "far": {"_count": 3, "well": {"_count": 1}, "away": {"_count": 2}}, "moved": {"_count": 4, "to": {"_count": 2}, "stop": {"_count": 1}, "until": {"_count": 1}}, "prepared": {"_count": 7, "": {"_count": 2}, "for": {"_count": 2}, "to": {"_count": 3}}, "fair": {"_count": 1, "if": {"_count": 1}}, "guarding": {"_count": 3, "Flamels": {"_count": 1}, "vaults": {"_count": 1}, "the": {"_count": 1}}, "poorer": {"_count": 1, "than": {"_count": 1}}, "proud": {"_count": 8, "of": {"_count": 3}, "though": {"_count": 1}, "that": {"_count": 1}, "Neville": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "gone": {"_count": 13, "by": {"_count": 2}, "said": {"_count": 1}, "yet": {"_count": 1}, "and": {"_count": 1}, "within": {"_count": 1}, "": {"_count": 3}, "before": {"_count": 1}, "from": {"_count": 2}, "for": {"_count": 1}}, "getting": {"_count": 20, "paler": {"_count": 1}, "thicker": {"_count": 1}, "much": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}, "riskier": {"_count": 1}, "on": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 3}, "anything": {"_count": 1}, "any": {"_count": 1}, "along": {"_count": 2}, "back": {"_count": 1}, "very": {"_count": 1}, "free": {"_count": 1}}, "thinking": {"_count": 10, "along": {"_count": 4}, "of": {"_count": 2}, "about": {"_count": 1}, "the": {"_count": 1}, "over": {"_count": 1}, "": {"_count": 1}}, "honest": {"_count": 11, "": {"_count": 4}, "said": {"_count": 3}, "Harry": {"_count": 1}, "what": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}}, "as": {"_count": 11, "long": {"_count": 1}, "easy": {"_count": 1}, "highminded": {"_count": 1}, "longwinded": {"_count": 1}, "good": {"_count": 1}, "lucky": {"_count": 1}, "flexible": {"_count": 1}, "woefully": {"_count": 1}, "many": {"_count": 1}, "follows": {"_count": 1}, "bad": {"_count": 1}}, "glad": {"_count": 15, "to": {"_count": 6}, "of": {"_count": 4}, "when": {"_count": 3}, "Harry": {"_count": 1}, "theyre": {"_count": 1}}, "easy": {"_count": 4, "getting": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 2}}, "to": {"_count": 20, "send": {"_count": 1}, "have": {"_count": 1}, "the": {"_count": 2}, "get": {"_count": 1}, "go": {"_count": 1}, "bring": {"_count": 1}, "stamp": {"_count": 1}, "deprive": {"_count": 1}, "start": {"_count": 1}, "teach": {"_count": 1}, "make": {"_count": 1}, "risk": {"_count": 1}, "leave": {"_count": 2}, "tail": {"_count": 1}, "pass": {"_count": 1}, "anyone": {"_count": 1}, "discover": {"_count": 1}, "keep": {"_count": 1}}, "over": {"_count": 9, "at": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 3}, "which": {"_count": 1}, "soon": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}}, "our": {"_count": 5, "only": {"_count": 1}, "teacher": {"_count": 1}, "leader": {"_count": 1}, "Bonder": {"_count": 1}, "most": {"_count": 1}}, "thrown": {"_count": 7, "out": {"_count": 3}, "off": {"_count": 2}, "open": {"_count": 1}, "unceremoniously": {"_count": 1}}, "worse": {"_count": 8, "for": {"_count": 1}, "if": {"_count": 1}, "than": {"_count": 4}, "": {"_count": 2}}, "sounding": {"_count": 1, "so": {"_count": 1}}, "punished": {"_count": 5, "after": {"_count": 1}, "": {"_count": 2}, "Mr": {"_count": 1}, "most": {"_count": 1}}, "copying": {"_count": 1, "lines": {"_count": 1}}, "killing": {"_count": 2, "the": {"_count": 1}, "anyone": {"_count": 1}}, "hurt": {"_count": 1, "before": {"_count": 1}}, "picking": {"_count": 2, "up": {"_count": 2}}, "lucky": {"_count": 5, "ter": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "ever": {"_count": 1}, "in": {"_count": 1}}, "quicker": {"_count": 3, "this": {"_count": 1}, "just": {"_count": 1}, "I": {"_count": 1}}, "cursed": {"_count": 1, "forever": {"_count": 1}}, "happy": {"_count": 9, "": {"_count": 2}, "to": {"_count": 2}, "if": {"_count": 1}, "Ron": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}, "unless": {"_count": 1}}, "free": {"_count": 5, "free": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}, "too": {"_count": 1}}, "more": {"_count": 17, "careful": {"_count": 1}, "selective": {"_count": 1}, "unlucky": {"_count": 1}, "worried": {"_count": 2}, "than": {"_count": 4}, "gracious": {"_count": 1}, "useful": {"_count": 1}, "foolhardy": {"_count": 1}, "peaceful": {"_count": 1}, "interesting": {"_count": 1}, "real": {"_count": 1}, "difficult": {"_count": 1}, "persuadable": {"_count": 1}}, "waiting": {"_count": 7, "for": {"_count": 4}, "to": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 1}}, "caught": {"_count": 8, "again": {"_count": 1}, "no": {"_count": 1}, "by": {"_count": 2}, "staring": {"_count": 1}, "out": {"_count": 2}, "": {"_count": 1}}, "an": {"_count": 35, "idiot": {"_count": 1}, "old": {"_count": 1}, "attack": {"_count": 1}, "excellent": {"_count": 3}, "advantage": {"_count": 1}, "expert": {"_count": 1}, "appeal": {"_count": 1}, "omen": {"_count": 1}, "insult": {"_count": 1}, "older": {"_count": 1}, "Auror": {"_count": 3}, "Animagus": {"_count": 1}, "ideal": {"_count": 2}, "enormous": {"_count": 3}, "improvement": {"_count": 1}, "understanding": {"_count": 1}, "antitheft": {"_count": 1}, "ordinary": {"_count": 2}, "inquiry": {"_count": 1}, "armchair": {"_count": 1}, "offensive": {"_count": 1}, "explanation": {"_count": 1}, "elevenyearold": {"_count": 1}, "extremely": {"_count": 1}, "honor": {"_count": 1}, "impostor": {"_count": 1}, "hour": {"_count": 1}}, "breaking": {"_count": 2, "any": {"_count": 1}, "about": {"_count": 1}}, "miles": {"_count": 3, "under": {"_count": 2}, "away": {"_count": 1}}, "chessmen": {"_count": 1, "": {"_count": 1}}, "offended": {"_count": 1, "or": {"_count": 1}}, "stuck": {"_count": 5, "in": {"_count": 4}, "inside": {"_count": 1}}, "carefull": {"_count": 1, "You": {"_count": 1}}, "meeting": {"_count": 3, "you": {"_count": 1}, "us": {"_count": 1}, "a": {"_count": 1}}, "true": {"_count": 10, "it": {"_count": 2}, "Riddle": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "thats": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}, "even": {"_count": 1}, "he": {"_count": 1}}, "done": {"_count": 18, "": {"_count": 5}, "carefully": {"_count": 1}, "without": {"_count": 1}, "so": {"_count": 1}, "said": {"_count": 1}, "except": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "while": {"_count": 1}, "gathered": {"_count": 1}, "by": {"_count": 1}, "about": {"_count": 1}, "if": {"_count": 1}, "of": {"_count": 1}}, "most": {"_count": 6, "relieved": {"_count": 1}, "welcome": {"_count": 1}, "seriously": {"_count": 1}, "dangerous": {"_count": 2}, "of": {"_count": 1}}, "distracted": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "killed": {"_count": 13, "": {"_count": 6}, "you": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}, "by": {"_count": 1}, "in": {"_count": 1}, "trying": {"_count": 1}, "accidentally": {"_count": 1}}, "treated": {"_count": 3, "with": {"_count": 2}, "like": {"_count": 1}}, "chucked": {"_count": 2, "out": {"_count": 2}}, "Harrys": {"_count": 5, "family": {"_count": 1}, "twelfth": {"_count": 1}, "aunt": {"_count": 1}, "turn": {"_count": 1}, "body": {"_count": 1}}, "shopping": {"_count": 2, "for": {"_count": 1}, "alone": {"_count": 1}}, "missing": {"_count": 1, "him": {"_count": 1}}, "rude": {"_count": 3, "or": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}}, "set": {"_count": 3, "free": {"_count": 1}, "upon": {"_count": 1}, "over": {"_count": 1}}, "angry": {"_count": 4, "with": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "about": {"_count": 1}}, "pushed": {"_count": 2, "inside": {"_count": 1}, "around": {"_count": 1}}, "sent": {"_count": 8, "to": {"_count": 3}, "home": {"_count": 1}, "outside": {"_count": 1}, "another": {"_count": 1}, "packing": {"_count": 1}, "back": {"_count": 1}}, "plotting": {"_count": 2, "all": {"_count": 1}, "anything": {"_count": 1}}, "its": {"_count": 2, "not": {"_count": 1}, "last": {"_count": 1}}, "rich": {"_count": 1, "said": {"_count": 1}}, "wanting": {"_count": 4, "your": {"_count": 1}, "anything": {"_count": 1}, "that": {"_count": 1}, "some": {"_count": 1}}, "quite": {"_count": 15, "within": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "sure": {"_count": 1}, "right": {"_count": 1}, "safe": {"_count": 1}, "so": {"_count": 2}, "glad": {"_count": 1}, "nice": {"_count": 1}, "intrested": {"_count": 1}, "unscathed": {"_count": 1}, "as": {"_count": 1}, "happy": {"_count": 1}, "sorry": {"_count": 1}}, "this": {"_count": 4, "shy": {"_count": 1}, "weekend": {"_count": 1}, "must": {"_count": 1}, "letter": {"_count": 1}}, "fine": {"_count": 16, "Molly": {"_count": 1}, "if": {"_count": 1}, "Hermione": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 7}, "remember": {"_count": 1}, "with": {"_count": 1}, "Ill": {"_count": 1}, "golden": {"_count": 1}}, "spinning": {"_count": 2, "very": {"_count": 1}, "": {"_count": 1}}, "Dracos": {"_count": 2, "father": {"_count": 1}, "mother": {"_count": 1}}, "of": {"_count": 7, "assistance": {"_count": 1}, "me": {"_count": 1}, "use": {"_count": 1}, "any": {"_count": 1}, "vital": {"_count": 1}, "anything": {"_count": 1}, "some": {"_count": 1}}, "ashamed": {"_count": 10, "that": {"_count": 1}, "not": {"_count": 1}, "of": {"_count": 6}, "my": {"_count": 1}, "": {"_count": 1}}, "spent": {"_count": 1, "so": {"_count": 1}}, "Minister": {"_count": 3, "of": {"_count": 3}}, "signing": {"_count": 1, "copies": {"_count": 1}}, "Harry": {"_count": 5, "Potter": {"_count": 1}, "whispered": {"_count": 1}, "": {"_count": 1}, "looked": {"_count": 1}, "could": {"_count": 1}}, "traveling": {"_count": 5, "back": {"_count": 1}, "very": {"_count": 1}, "with": {"_count": 3}}, "much": {"_count": 13, "further": {"_count": 1}, "good": {"_count": 1}, "more": {"_count": 3}, "help": {"_count": 1}, "farther": {"_count": 1}, "quicker": {"_count": 1}, "better": {"_count": 2}, "later": {"_count": 1}, "use": {"_count": 2}}, "caving": {"_count": 1, "Run": {"_count": 1}}, "Snape": {"_count": 2, "s": {"_count": 1}, "will": {"_count": 1}}, "fairer": {"_count": 1, "than": {"_count": 1}}, "for": {"_count": 11, "Professor": {"_count": 1}, "ages": {"_count": 1}, "each": {"_count": 1}, "you": {"_count": 1}, "without": {"_count": 1}, "the": {"_count": 2}, "Snape": {"_count": 1}, "them": {"_count": 1}, "many": {"_count": 1}, "business": {"_count": 1}}, "swept": {"_count": 3, "out": {"_count": 2}, "up": {"_count": 1}}, "disappointed": {"_count": 1, "that": {"_count": 1}}, "talking": {"_count": 7, "about": {"_count": 3}, "to": {"_count": 1}, "herself": {"_count": 1}, "more": {"_count": 1}, "like": {"_count": 1}}, "repotting": {"_count": 1, "Mandrakes": {"_count": 1}}, "turning": {"_count": 6, "a": {"_count": 2}, "into": {"_count": 2}, "to": {"_count": 1}, "orange": {"_count": 1}}, "damaged": {"_count": 2, "beyond": {"_count": 2}}, "worth": {"_count": 4, "more": {"_count": 1}, "becoming": {"_count": 1}, "it": {"_count": 2}}, "frank": {"_count": 2, "": {"_count": 1}, "my": {"_count": 1}}, "harmony": {"_count": 1, "between": {"_count": 1}}, "warned": {"_count": 4, "": {"_count": 1}, "Potter": {"_count": 1}, "The": {"_count": 1}, "Thieving": {"_count": 1}}, "first": {"_count": 2, "off": {"_count": 1}, "in": {"_count": 1}}, "dragged": {"_count": 2, "into": {"_count": 1}, "back": {"_count": 1}}, "nodding": {"_count": 1, "off": {"_count": 1}}, "eating": {"_count": 2, "for": {"_count": 1}, "your": {"_count": 1}}, "big": {"_count": 2, "enough": {"_count": 1}, "": {"_count": 1}}, "polishing": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "helping": {"_count": 1, "Professor": {"_count": 1}}, "impossible": {"_count": 4, "otherwise": {"_count": 1}, "": {"_count": 1}, "once": {"_count": 1}, "for": {"_count": 1}}, "such": {"_count": 3, "an": {"_count": 1}, "a": {"_count": 2}}, "fascinating": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "music": {"_count": 1, "": {"_count": 1}}, "finished": {"_count": 3, "yet": {"_count": 1}, "Neither": {"_count": 1}, "for": {"_count": 1}}, "moving": {"_count": 6, "upward": {"_count": 1}, "a": {"_count": 1}, "apart": {"_count": 1}, "in": {"_count": 1}, "half": {"_count": 1}, "very": {"_count": 1}}, "next": {"_count": 5, "Mudbloods": {"_count": 2}, "MudbloodsV": {"_count": 1}, "thought": {"_count": 1}, "to": {"_count": 1}}, "educated": {"_count": 1, "": {"_count": 1}}, "untrustworthy": {"_count": 1, "": {"_count": 1}}, "opened": {"_count": 2, "by": {"_count": 1}, "at": {"_count": 1}}, "related": {"_count": 3, "to": {"_count": 3}}, "Gryffindor": {"_count": 2, "": {"_count": 1}, "like": {"_count": 1}}, "well": {"_count": 4, "human": {"_count": 1}, "up": {"_count": 2}, "yeh": {"_count": 1}}, "fighting": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}}, "anyone": {"_count": 2, "in": {"_count": 1}, "else": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "Slytherins": {"_count": 3, "descendants": {"_count": 1}, "heir": {"_count": 1}, "mark": {"_count": 1}}, "difficult": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "to": {"_count": 1}}, "tricky": {"_count": 1, "too": {"_count": 1}}, "persuading": {"_count": 1, "us": {"_count": 1}}, "picked": {"_count": 2, "at": {"_count": 1}, "for": {"_count": 1}}, "stewed": {"_count": 1, "for": {"_count": 1}}, "ready": {"_count": 10, "in": {"_count": 2}, "for": {"_count": 2}, "and": {"_count": 1}, "to": {"_count": 5}}, "down": {"_count": 6, "to": {"_count": 2}, "here": {"_count": 1}, "by": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}}, "painful": {"_count": 1, "said": {"_count": 1}}, "joking": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "freed": {"_count": 2, "if": {"_count": 1}, "for": {"_count": 1}}, "asleep": {"_count": 8, "": {"_count": 3}, "as": {"_count": 1}, "they": {"_count": 1}, "in": {"_count": 1}, "if": {"_count": 1}, "when": {"_count": 1}}, "attacked": {"_count": 9, "if": {"_count": 1}, "": {"_count": 3}, "any": {"_count": 1}, "during": {"_count": 2}, "it": {"_count": 2}}, "useful": {"_count": 6, "he": {"_count": 1}, "in": {"_count": 2}, "My": {"_count": 1}, "ter": {"_count": 1}, "": {"_count": 1}}, "packed": {"_count": 1, "beneath": {"_count": 1}}, "teaching": {"_count": 8, "us": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 2}, "me": {"_count": 2}, "Defense": {"_count": 1}, "anyone": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 2}}, "aiming": {"_count": 3, "to": {"_count": 2}, "at": {"_count": 1}}, "instructive": {"_count": 1, "to": {"_count": 1}}, "unsporting": {"_count": 1, "to": {"_count": 1}}, "facetoface": {"_count": 1, "with": {"_count": 1}}, "using": {"_count": 7, "his": {"_count": 2}, "Errol": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}, "Inferi": {"_count": 1}, "her": {"_count": 1}}, "amazed": {"_count": 2, "": {"_count": 2}}, "where": {"_count": 3, "Dumbledore": {"_count": 1}, "I": {"_count": 1}, "all": {"_count": 1}}, "aggravating": {"_count": 1, "Draco": {"_count": 1}}, "tonight": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 1}, "Dumbledore": {"_count": 2}}, "best": {"_count": 7, "if": {"_count": 5}, "for": {"_count": 1}, "pals": {"_count": 1}}, "useless": {"_count": 1, "without": {"_count": 1}}, "scrapped": {"_count": 1, "immediately": {"_count": 1}}, "sacked": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "teased": {"_count": 1, "something": {"_count": 1}}, "dangerous": {"_count": 11, "": {"_count": 6}, "for": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}}, "invisible": {"_count": 2, "ink": {"_count": 1}, "if": {"_count": 1}}, "bothered": {"_count": 3, "filling": {"_count": 1}, "by": {"_count": 1}, "with": {"_count": 1}}, "even": {"_count": 5, "bigger": {"_count": 1}, "smaller": {"_count": 1}, "more": {"_count": 2}, "deeper": {"_count": 1}}, "long": {"_count": 8, "until": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 3}, "and": {"_count": 1}}, "roving": {"_count": 1, "around": {"_count": 1}}, "forcefed": {"_count": 1, "poison": {"_count": 1}}, "those": {"_count": 1, "who": {"_count": 1}}, "deaf": {"_count": 1, "Harry": {"_count": 1}}, "sunset": {"_count": 1, "": {"_count": 1}}, "safer": {"_count": 3, "by": {"_count": 1}, "without": {"_count": 1}, "a": {"_count": 1}}, "against": {"_count": 1, "Hufflepuff": {"_count": 1}}, "escorted": {"_count": 2, "to": {"_count": 1}, "back": {"_count": 1}}, "postponed": {"_count": 1, "": {"_count": 1}}, "closed": {"_count": 2, "unless": {"_count": 1}, "": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "killin": {"_count": 1, "next": {"_count": 1}}, "given": {"_count": 12, "at": {"_count": 3}, "so": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 4}, "certain": {"_count": 1}, "Blood": {"_count": 1}, "a": {"_count": 1}}, "ter": {"_count": 2, "follow": {"_count": 1}, "suck": {"_count": 1}}, "thoroughly": {"_count": 2, "enjoying": {"_count": 2}}, "werewolves": {"_count": 1, "in": {"_count": 1}}, "sloping": {"_count": 1, "downward": {"_count": 1}}, "pressing": {"_count": 1, "on": {"_count": 1}}, "closing": {"_count": 1, "in": {"_count": 1}}, "tired": {"_count": 1, "of": {"_count": 1}}, "alive": {"_count": 8, "": {"_count": 5}, "at": {"_count": 1}, "to": {"_count": 1}, "she": {"_count": 1}}, "almost": {"_count": 3, "impossible": {"_count": 1}, "as": {"_count": 1}, "empty": {"_count": 1}}, "exams": {"_count": 1, "with": {"_count": 1}}, "kinder": {"_count": 2, "to": {"_count": 2}}, "solved": {"_count": 2, "tomorrow": {"_count": 1}, "by": {"_count": 1}}, "proved": {"_count": 1, "wrong": {"_count": 1}}, "\u2018It": {"_count": 1, "was": {"_count": 1}}, "discovered": {"_count": 2, "hanging": {"_count": 1}, "to": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "why": {"_count": 1, "she": {"_count": 1}}, "quick": {"_count": 8, "Professor": {"_count": 1}, "an": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 2}, "just": {"_count": 1}, "Harry": {"_count": 2}}, "misleading": {"_count": 1, "said": {"_count": 1}}, "Ginny": {"_count": 1, "please": {"_count": 1}}, "along": {"_count": 1, "any": {"_count": 1}}, "needing": {"_count": 4, "it": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "butterbeer": {"_count": 1}}, "exactly": {"_count": 3, "what": {"_count": 2}, "difficult": {"_count": 1}}, "replaced": {"_count": 6, "by": {"_count": 5}, "with": {"_count": 1}}, "waking": {"_count": 1, "up": {"_count": 1}}, "keeping": {"_count": 7, "mightily": {"_count": 1}, "an": {"_count": 2}, "them": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}, "him": {"_count": 1}}, "freely": {"_count": 2, "named": {"_count": 1}, "accessible": {"_count": 1}}, "awake": {"_count": 1, "by": {"_count": 1}}, "unable": {"_count": 2, "to": {"_count": 2}}, "furious": {"_count": 2, "": {"_count": 1}, "if": {"_count": 1}}, "delighted": {"_count": 12, "to": {"_count": 8}, "said": {"_count": 3}, "if": {"_count": 1}}, "unconscious": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "wonderful": {"_count": 2, "to": {"_count": 2}}, "reported": {"_count": 2, "immediately": {"_count": 1}, "to": {"_count": 1}}, "sticking": {"_count": 1, "to": {"_count": 1}}, "hard": {"_count": 4, "work": {"_count": 1}, "put": {"_count": 1}, "to": {"_count": 2}}, "boring": {"_count": 1, "into": {"_count": 1}}, "swelling": {"_count": 2, "with": {"_count": 1}, "his": {"_count": 1}}, "arrested": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "outlawed": {"_count": 1, "from": {"_count": 1}}, "deserted": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "your": {"_count": 8, "conductor": {"_count": 1}, "area": {"_count": 1}, "friends": {"_count": 1}, "pen": {"_count": 1}, "son": {"_count": 1}, "job": {"_count": 2}, "Ministry": {"_count": 1}}, "secondin": {"_count": 1, "command": {"_count": 1}}, "now": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "telling": {"_count": 6, "his": {"_count": 1}, "you": {"_count": 3}, "him": {"_count": 1}, "your": {"_count": 1}}, "pleased": {"_count": 9, "to": {"_count": 5}, "said": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "if": {"_count": 1}}, "Neville": {"_count": 2, "while": {"_count": 1}, "sitting": {"_count": 1}}, "expected": {"_count": 4, "to": {"_count": 2}, "": {"_count": 2}}, "sleeping": {"_count": 4, "in": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 2}}, "ridiculous": {"_count": 5, "Ron": {"_count": 1}, "Weasley": {"_count": 1}, "youre": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}}, "prefects": {"_count": 1, "for": {"_count": 1}}, "little": {"_count": 2, "flags": {"_count": 1}, "point": {"_count": 1}}, "perfectly": {"_count": 5, "safe": {"_count": 3}, "honest": {"_count": 1}, "all": {"_count": 1}}, "panicstricken": {"_count": 1, "if": {"_count": 1}}, "carefully": {"_count": 1, "watched": {"_count": 1}}, "murdered": {"_count": 3, "Harry": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "sneaking": {"_count": 3, "out": {"_count": 1}, "around": {"_count": 2}}, "holding": {"_count": 4, "a": {"_count": 1}, "its": {"_count": 1}, "his": {"_count": 1}, "hands": {"_count": 1}}, "cheerful": {"_count": 1, "again": {"_count": 1}}, "aware": {"_count": 4, "after": {"_count": 1}, "given": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 1}}, "fooled": {"_count": 3, "by": {"_count": 2}, "": {"_count": 1}}, "filled": {"_count": 3, "by": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}}, "entertaining": {"_count": 1, "a": {"_count": 1}}, "covering": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "devoted": {"_count": 1, "to": {"_count": 1}}, "disrupted": {"_count": 1, "in": {"_count": 1}}, "yours": {"_count": 3, "": {"_count": 2}, "And": {"_count": 1}}, "dying": {"_count": 2, "this": {"_count": 1}, "of": {"_count": 1}}, "studying": {"_count": 2, "it": {"_count": 1}, "for": {"_count": 1}}, "having": {"_count": 11, "these": {"_count": 1}, "difficulty": {"_count": 2}, "on": {"_count": 1}, "some": {"_count": 1}, "a": {"_count": 3}, "this": {"_count": 1}, "any": {"_count": 2}}, "giant": {"_count": 1, "eagles": {"_count": 1}}, "drunk": {"_count": 3, "so": {"_count": 1}, "regularly": {"_count": 1}, "": {"_count": 1}}, "poisoned": {"_count": 1, "": {"_count": 1}}, "tucking": {"_count": 1, "something": {"_count": 1}}, "forced": {"_count": 2, "into": {"_count": 1}, "to": {"_count": 1}}, "handed": {"_count": 5, "in": {"_count": 4}, "back": {"_count": 1}}, "leaving": {"_count": 9, "at": {"_count": 1}, "the": {"_count": 3}, "Privet": {"_count": 2}, "us": {"_count": 1}, "an": {"_count": 1}, "before": {"_count": 1}}, "crying": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 7, "said": {"_count": 3}, "had": {"_count": 1}, "would": {"_count": 1}, "Harry": {"_count": 1}, "was": {"_count": 1}}, "spoiled": {"_count": 1, "by": {"_count": 1}}, "practicing": {"_count": 5, "Quidditch": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 2}, "that": {"_count": 1}}, "happier": {"_count": 1, "if": {"_count": 1}}, "fifty": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 7, "": {"_count": 2}, "you": {"_count": 1}, "he": {"_count": 2}, "not": {"_count": 1}, "her": {"_count": 1}}, "canceled": {"_count": 1, "Quidditch": {"_count": 1}}, "blown": {"_count": 1, "off": {"_count": 1}}, "time": {"_count": 8, "for": {"_count": 3}, "after": {"_count": 1}, "to": {"_count": 2}, "that": {"_count": 1}, "enough": {"_count": 1}}, "terrible": {"_count": 2, "Harry": {"_count": 1}, "Snape": {"_count": 1}}, "real": {"_count": 3, "fluttering": {"_count": 1}, "He": {"_count": 1}, "": {"_count": 1}}, "another": {"_count": 6, "Hogsmeade": {"_count": 1}, "penalty": {"_count": 1}, "door": {"_count": 1}, "teacher": {"_count": 1}, "bad": {"_count": 1}, "meeting": {"_count": 1}}, "tapping": {"_count": 1, "the": {"_count": 1}}, "patrolling": {"_count": 2, "the": {"_count": 2}}, "lifted": {"_count": 2, "upon": {"_count": 1}, "": {"_count": 1}}, "struggling": {"_count": 2, "to": {"_count": 2}}, "sensible": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "steered": {"_count": 2, "into": {"_count": 1}, "away": {"_count": 1}}, "thirteen": {"_count": 1, "": {"_count": 1}}, "checked": {"_count": 2, "for": {"_count": 1}, "on": {"_count": 1}}, "jinxed": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 4, "me": {"_count": 1}, "my": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "large": {"_count": 2, "enough": {"_count": 1}, "potted": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "anything": {"_count": 10, "wrong": {"_count": 1}, "said": {"_count": 2}, "about": {"_count": 2}, "worse": {"_count": 1}, "good": {"_count": 1}, "dangerous": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}}, "refusing": {"_count": 1, "him": {"_count": 1}}, "fit": {"_count": 4, "shes": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}}, "because": {"_count": 3, "they": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}}, "goin": {"_count": 1, "down": {"_count": 1}}, "gettin": {"_count": 2, "on": {"_count": 1}, "the": {"_count": 1}}, "checking": {"_count": 5, "the": {"_count": 1}, "your": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}, "up": {"_count": 1}}, "executed": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "fixed": {"_count": 1, "": {"_count": 1}}, "catching": {"_count": 2, "up": {"_count": 1}, "went": {"_count": 1}}, "loads": {"_count": 3, "of": {"_count": 3}}, "horrible": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "accompanied": {"_count": 1, "everywhere": {"_count": 1}}, "perfect": {"_count": 1, "": {"_count": 1}}, "led": {"_count": 2, "away": {"_count": 1}, "off": {"_count": 1}}, "withering": {"_count": 1, "before": {"_count": 1}}, "tested": {"_count": 6, "": {"_count": 1}, "this": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "much": {"_count": 1}, "by": {"_count": 1}}, "beside": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "chattering": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 7, "one": {"_count": 4}, "too": {"_count": 2}, "explicable": {"_count": 1}}, "malfunctioning": {"_count": 1, "": {"_count": 1}}, "Peter": {"_count": 1, "Pettigrew": {"_count": 1}}, "Pettigrew": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 4, "unregistered": {"_count": 1}, "tasks": {"_count": 1}, "players": {"_count": 1}, "in": {"_count": 1}}, "trusted": {"_count": 5, "": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}}, "er": {"_count": 1, "amusing": {"_count": 1}}, "interested": {"_count": 4, "to": {"_count": 1}, "in": {"_count": 3}}, "thanking": {"_count": 1, "me": {"_count": 1}}, "mistaken": {"_count": 2, "in": {"_count": 1}, "for": {"_count": 1}}, "sagging": {"_count": 1, "under": {"_count": 1}}, "burning": {"_count": 2, "in": {"_count": 1}, "all": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 2}}, "pondering": {"_count": 1, "his": {"_count": 1}}, "welcomed": {"_count": 2, "back": {"_count": 2}}, "gained": {"_count": 4, "by": {"_count": 3}, "in": {"_count": 1}}, "chained": {"_count": 1, "to": {"_count": 1}}, "considering": {"_count": 1, "him": {"_count": 1}}, "suspended": {"_count": 2, "at": {"_count": 1}, "from": {"_count": 1}}, "performing": {"_count": 1, "the": {"_count": 1}}, "distressed": {"_count": 1, "": {"_count": 1}}, "alone": {"_count": 8, "Footsteps": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 2}, "was": {"_count": 1}, "Ginnyll": {"_count": 1}}, "listening": {"_count": 9, "intently": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 4}, "he": {"_count": 1}, "": {"_count": 1}}, "appearing": {"_count": 2, "at": {"_count": 1}, "alongside": {"_count": 1}}, "performed": {"_count": 2, "immediately": {"_count": 1}, "in": {"_count": 1}}, "bouncing": {"_count": 2, "along": {"_count": 1}, "off": {"_count": 1}}, "reasonable": {"_count": 2, "Harry": {"_count": 1}, "said": {"_count": 1}}, "removed": {"_count": 1, "from": {"_count": 1}}, "living": {"_count": 2, "with": {"_count": 1}, "up": {"_count": 1}}, "foolish": {"_count": 4, "to": {"_count": 2}, "enough": {"_count": 1}, "of": {"_count": 1}}, "obsessed": {"_count": 2, "with": {"_count": 2}}, "nothing": {"_count": 6, "more": {"_count": 3}, "worse": {"_count": 1}, "but": {"_count": 1}, "compared": {"_count": 1}}, "effective": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "broken": {"_count": 3, "by": {"_count": 1}, "": {"_count": 1}, "wont": {"_count": 1}}, "Hermiones": {"_count": 1, "advice": {"_count": 1}}, "near": {"_count": 4, "you": {"_count": 1}, "us": {"_count": 1}, "here": {"_count": 1}, "the": {"_count": 1}}, "anywhere": {"_count": 5, "near": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 2}}, "spoken": {"_count": 1, "to": {"_count": 1}}, "arriving": {"_count": 7, "at": {"_count": 3}, "with": {"_count": 1}, "in": {"_count": 1}, "shortly": {"_count": 1}, "today": {"_count": 1}}, "chewing": {"_count": 1, "her": {"_count": 1}}, "connected": {"_count": 1, "strictly": {"_count": 1}}, "causing": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "suffocating": {"_count": 1, "under": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "Charlie": {"_count": 1, "who": {"_count": 1}}, "announcing": {"_count": 1, "their": {"_count": 1}}, "Head": {"_count": 4, "of": {"_count": 4}}, "worried": {"_count": 4, "": {"_count": 1}, "sick": {"_count": 1}, "hell": {"_count": 1}, "about": {"_count": 1}}, "Ireland": {"_count": 1, "said": {"_count": 1}}, "Mr": {"_count": 3, "Roberts": {"_count": 1}, "Dursley": {"_count": 1}, "Longbottom": {"_count": 1}}, "paying": {"_count": 3, "now": {"_count": 1}, "him": {"_count": 1}, "much": {"_count": 1}}, "putting": {"_count": 3, "these": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}}, "his": {"_count": 10, "mother": {"_count": 1}, "wife": {"_count": 1}, "Harrys": {"_count": 1}, "partner": {"_count": 1}, "dearest": {"_count": 1}, "giant": {"_count": 1}, "sister": {"_count": 1}, "friends": {"_count": 1}, "weird": {"_count": 1}, "decision": {"_count": 1}}, "supporting": {"_count": 2, "Ireland": {"_count": 1}, "Bulgaria": {"_count": 1}}, "pitched": {"_count": 1, "right": {"_count": 1}}, "greatly": {"_count": 1, "interested": {"_count": 1}}, "gambling": {"_count": 1, "said": {"_count": 1}}, "quivering": {"_count": 1, "with": {"_count": 1}}, "female": {"_count": 1, "": {"_count": 1}}, "paid": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "human": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 6, "could": {"_count": 1}, "looked": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "falling": {"_count": 1, "from": {"_count": 1}}, "reading": {"_count": 2, "one": {"_count": 1}, "Wilbert": {"_count": 1}}, "handfuls": {"_count": 1, "of": {"_count": 1}}, "hurrying": {"_count": 1, "along": {"_count": 1}}, "showing": {"_count": 2, "off": {"_count": 1}, "up": {"_count": 1}}, "likely": {"_count": 1, "to": {"_count": 1}}, "overpleased": {"_count": 1, "with": {"_count": 1}}, "stamping": {"_count": 1, "out": {"_count": 1}}, "rumors": {"_count": 1, "now": {"_count": 1}}, "mined": {"_count": 1, "if": {"_count": 1}}, "kidding": {"_count": 1, "said": {"_count": 1}}, "wearing": {"_count": 4, "off": {"_count": 2}, "robes": {"_count": 1}, "the": {"_count": 1}}, "together": {"_count": 2, "wouldnt": {"_count": 1}, "": {"_count": 1}}, "rather": {"_count": 4, "more": {"_count": 1}, "enjoying": {"_count": 2}, "keen": {"_count": 1}}, "viewed": {"_count": 1, "in": {"_count": 1}}, "scarred": {"_count": 1, "": {"_count": 1}}, "making": {"_count": 7, "some": {"_count": 1}, "a": {"_count": 3}, "many": {"_count": 1}, "as": {"_count": 1}, "away": {"_count": 1}}, "greeted": {"_count": 1, "with": {"_count": 1}}, "shared": {"_count": 1, "by": {"_count": 1}}, "visualizing": {"_count": 1, "himself": {"_count": 1}}, "ensuring": {"_count": 1, "that": {"_count": 1}}, "alert": {"_count": 2, "and": {"_count": 2}}, "upholding": {"_count": 1, "the": {"_count": 1}}, "propelled": {"_count": 1, "forward": {"_count": 1}}, "six": {"_count": 2, "feet": {"_count": 1}, "visitors": {"_count": 1}}, "deciphered": {"_count": 1, "by": {"_count": 1}}, "Arthur": {"_count": 1, "Weasleys": {"_count": 1}}, "fought": {"_count": 1, "and": {"_count": 1}}, "betting": {"_count": 1, "Ill": {"_count": 1}}, "drowning": {"_count": 1, "twice": {"_count": 1}}, "poisoning": {"_count": 1, "one": {"_count": 1}}, "takin": {"_count": 1, "a": {"_count": 1}}, "entering": {"_count": 3, "the": {"_count": 2}, "": {"_count": 1}}, "undergoing": {"_count": 1, "an": {"_count": 1}}, "attended": {"_count": 1, "to": {"_count": 1}}, "built": {"_count": 1, "along": {"_count": 1}}, "both": {"_count": 1, "comfortable": {"_count": 1}}, "officially": {"_count": 1, "opened": {"_count": 1}}, "sitting": {"_count": 11, "only": {"_count": 1}, "with": {"_count": 2}, "down": {"_count": 1}, "here": {"_count": 3}, "an": {"_count": 1}, "in": {"_count": 2}, "there": {"_count": 1}}, "clearly": {"_count": 3, "visible": {"_count": 3}}, "breathing": {"_count": 2, "": {"_count": 1}, "fire": {"_count": 1}}, "marked": {"_count": 1, "on": {"_count": 1}}, "placed": {"_count": 4, "in": {"_count": 3}, "on": {"_count": 1}}, "drawing": {"_count": 1, "an": {"_count": 1}}, "entered": {"_count": 1, "into": {"_count": 1}}, "axle": {"_count": 1, "grease": {"_count": 1}}, "spectacular": {"_count": 2, "Ill": {"_count": 1}, "jinxes": {"_count": 1}}, "speculating": {"_count": 1, "which": {"_count": 1}}, "selected": {"_count": 1, "as": {"_count": 1}}, "doin": {"_count": 1, "em": {"_count": 1}}, "makin": {"_count": 1, "em": {"_count": 1}}, "setting": {"_count": 1, "a": {"_count": 1}}, "receiving": {"_count": 3, "their": {"_count": 1}, "zero": {"_count": 1}, "the": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "competing": {"_count": 1, "": {"_count": 1}}, "lodging": {"_count": 1, "complaints": {"_count": 1}}, "Moodys": {"_count": 1, "real": {"_count": 1}}, "me": {"_count": 12, "at": {"_count": 1}, "": {"_count": 6}, "next": {"_count": 1}, "Well": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "Dumbledore": {"_count": 1}}, "cornered": {"_count": 1, "by": {"_count": 1}}, "overheard": {"_count": 7, "but": {"_count": 1}, "": {"_count": 4}, "in": {"_count": 1}, "said": {"_count": 1}}, "around": {"_count": 5, "much": {"_count": 1}, "here": {"_count": 2}, "the": {"_count": 1}, "but": {"_count": 1}}, "selecting": {"_count": 1, "someone": {"_count": 1}}, "not": {"_count": 3, "so": {"_count": 1}, "if": {"_count": 1}, "to": {"_count": 1}}, "happily": {"_count": 1, "imagining": {"_count": 1}}, "facing": {"_count": 4, "on": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "armed": {"_count": 1, "with": {"_count": 1}}, "last": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "tempted": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "knocked": {"_count": 1, "out": {"_count": 1}}, "questioned": {"_count": 1, "about": {"_count": 1}}, "disturbed": {"_count": 2, "": {"_count": 2}}, "easier": {"_count": 2, "to": {"_count": 2}}, "smaller": {"_count": 1, "much": {"_count": 1}}, "offering": {"_count": 2, "each": {"_count": 1}, "as": {"_count": 1}}, "outside": {"_count": 2, "himself": {"_count": 1}, "on": {"_count": 1}}, "nicely": {"_count": 1, "dizzy": {"_count": 1}}, "deep": {"_count": 2, "": {"_count": 1}, "Soon": {"_count": 1}}, "badly": {"_count": 1, "injured": {"_count": 1}}, "feeling": {"_count": 6, "really": {"_count": 1}, "too": {"_count": 1}, "rather": {"_count": 1}, "guilty": {"_count": 1}, "the": {"_count": 1}, "sorry": {"_count": 1}}, "pretty": {"_count": 7, "chilly": {"_count": 1}, "theyre": {"_count": 1}, "thin": {"_count": 1}, "ashamed": {"_count": 1}, "useful": {"_count": 1}, "powerful": {"_count": 1}, "convincing": {"_count": 1}}, "adapted": {"_count": 1, "when": {"_count": 1}}, "open": {"_count": 1, "only": {"_count": 1}}, "worn": {"_count": 2, "Professor": {"_count": 1}, "around": {"_count": 1}}, "relaxing": {"_count": 1, "the": {"_count": 1}}, "funny": {"_count": 1, "": {"_count": 1}}, "queuing": {"_count": 1, "up": {"_count": 1}}, "fewer": {"_count": 1, "Support": {"_count": 1}}, "openin": {"_count": 1, "the": {"_count": 1}}, "fact": {"_count": 1, "however": {"_count": 1}}, "testing": {"_count": 1, "them": {"_count": 1}}, "spotted": {"_count": 2, "by": {"_count": 1}, "was": {"_count": 1}}, "socks": {"_count": 1, "": {"_count": 1}}, "Father": {"_count": 1, "Christmas": {"_count": 1}}, "fined": {"_count": 1, "": {"_count": 1}}, "wondering": {"_count": 2, "where": {"_count": 1}, "whether": {"_count": 1}}, "rushing": {"_count": 1, "to": {"_count": 1}}, "giants": {"_count": 1, "abroad": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "asked": {"_count": 1}}, "pure": {"_count": 2, "giant": {"_count": 1}, "": {"_count": 1}}, "above": {"_count": 1, "such": {"_count": 1}}, "like": {"_count": 11, "": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "Malfoy": {"_count": 1}, "when": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 1}, "Godrics": {"_count": 1}, "Dumbledore": {"_count": 1}, "this": {"_count": 1}}, "freezing": {"_count": 1, "its": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "pureblood": {"_count": 2, "ter": {"_count": 1}, "there": {"_count": 1}}, "essential": {"_count": 1, "and": {"_count": 1}}, "forewarned": {"_count": 1, "if": {"_count": 1}}, "visiting": {"_count": 1, "Myrtles": {"_count": 1}}, "stopped": {"_count": 4, "": {"_count": 1}, "too": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}}, "ill": {"_count": 3, "if": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "disqualified": {"_count": 1, "for": {"_count": 1}}, "turned": {"_count": 2, "into": {"_count": 1}, "toward": {"_count": 1}}, "missed": {"_count": 3, "good": {"_count": 1}, "took": {"_count": 1}, "from": {"_count": 1}}, "lost": {"_count": 6, "after": {"_count": 1}, "again": {"_count": 1}, "if": {"_count": 1}, "in": {"_count": 2}, "for": {"_count": 1}}, "notified": {"_count": 2, "of": {"_count": 1}, "immediately": {"_count": 1}}, "suffering": {"_count": 1, "yet": {"_count": 1}}, "Miss": {"_count": 1, "Grangers": {"_count": 1}}, "laboring": {"_count": 2, "under": {"_count": 2}}, "beneath": {"_count": 1, "him": {"_count": 1}}, "Beater": {"_count": 1, "for": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "unhappy": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "served": {"_count": 2, "": {"_count": 2}}, "expecting": {"_count": 8, "something": {"_count": 1}, "some": {"_count": 1}, "me": {"_count": 1}, "trouble": {"_count": 1}, "both": {"_count": 1}, "you": {"_count": 2}, "us": {"_count": 1}}, "boiled": {"_count": 1, "in": {"_count": 1}}, "put": {"_count": 3, "down": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "banned": {"_count": 1, "from": {"_count": 1}}, "continually": {"_count": 1, "hungry": {"_count": 1}}, "obstacles": {"_count": 1, "said": {"_count": 1}}, "spells": {"_count": 1, "that": {"_count": 1}}, "fun": {"_count": 3, "eh": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}}, "attending": {"_count": 1, "the": {"_count": 1}}, "twelve": {"_count": 1, "": {"_count": 1}}, "havin": {"_count": 1, "a": {"_count": 1}}, "complaining": {"_count": 1, "if": {"_count": 1}}, "boiling": {"_count": 1, "in": {"_count": 1}}, "feeding": {"_count": 2, "Wormtail": {"_count": 1}, "me": {"_count": 1}}, "fed": {"_count": 3, "to": {"_count": 3}}, "prejudiced": {"_count": 1, "in": {"_count": 1}}, "underground": {"_count": 1, "for": {"_count": 1}}, "benches": {"_count": 1, "rising": {"_count": 1}}, "pointing": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "returned": {"_count": 2, "to": {"_count": 2}}, "clinging": {"_count": 1, "to": {"_count": 1}}, "linked": {"_count": 1, "": {"_count": 1}}, "worrying": {"_count": 4, "about": {"_count": 4}}, "Moody": {"_count": 1, "was": {"_count": 1}}, "pretending": {"_count": 1, "said": {"_count": 1}}, "highly": {"_count": 2, "suspicious": {"_count": 1}, "useful": {"_count": 1}}, "researching": {"_count": 1, "magical": {"_count": 1}}, "rescued": {"_count": 2, "send": {"_count": 1}, "from": {"_count": 1}}, "regaining": {"_count": 2, "the": {"_count": 2}}, "eaten": {"_count": 2, "by": {"_count": 2}}, "unwilling": {"_count": 1, "to": {"_count": 1}}, "close": {"_count": 4, "now": {"_count": 1}, "thats": {"_count": 1}, "to": {"_count": 1}, "enough": {"_count": 1}}, "part": {"_count": 4, "of": {"_count": 4}}, "stirring": {"_count": 2, "fretfully": {"_count": 1}, "themselves": {"_count": 1}}, "water": {"_count": 1, "Harry": {"_count": 1}}, "honored": {"_count": 5, "beyond": {"_count": 2}, "by": {"_count": 1}, "above": {"_count": 1}, "to": {"_count": 1}}, "assured": {"_count": 1, "immortal": {"_count": 1}}, "played": {"_count": 1, "at": {"_count": 1}}, "weaker": {"_count": 1, "there": {"_count": 1}}, "observed": {"_count": 2, "": {"_count": 1}, "one": {"_count": 1}}, "painless": {"_count": 2, "": {"_count": 2}}, "had": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 9, "": {"_count": 3}, "and": {"_count": 1}, "can": {"_count": 1}, "who": {"_count": 1}, "Harry": {"_count": 1}, "blithering": {"_count": 1}, "do": {"_count": 1}}, "detectable": {"_count": 1, "in": {"_count": 1}}, "recovery": {"_count": 1, "": {"_count": 1}}, "concealed": {"_count": 2, "": {"_count": 1}, "under": {"_count": 1}}, "controlled": {"_count": 1, "": {"_count": 1}}, "nearby": {"_count": 1, "": {"_count": 1}}, "demanding": {"_count": 2, "to": {"_count": 1}, "all": {"_count": 1}}, "remaining": {"_count": 1, "with": {"_count": 1}}, "winking": {"_count": 1, "at": {"_count": 1}}, "acting": {"_count": 1, "upon": {"_count": 1}}, "kicked": {"_count": 1, "out": {"_count": 1}}, "hardpressed": {"_count": 1, "to": {"_count": 1}}, "serious": {"_count": 2, "": {"_count": 2}}, "remembered": {"_count": 1, "in": {"_count": 1}}, "discreet": {"_count": 1, "however": {"_count": 1}}, "beyond": {"_count": 2, "tears": {"_count": 1}, "the": {"_count": 1}}, "cornin": {"_count": 3, "with": {"_count": 1}, "ter": {"_count": 1}, "an": {"_count": 1}}, "announced": {"_count": 1, "": {"_count": 1}}, "horrified": {"_count": 1, "that": {"_count": 1}}, "mentioned": {"_count": 1, "in": {"_count": 1}}, "hot": {"_count": 1, "and": {"_count": 1}}, "mixed": {"_count": 1, "": {"_count": 1}}, "punishable": {"_count": 1, "by": {"_count": 1}}, "congratulated": {"_count": 1, "on": {"_count": 1}}, "clever": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "completely": {"_count": 3, "deserted": {"_count": 1}, "empty": {"_count": 2}}, "awoken": {"_count": 1, "by": {"_count": 1}}, "headline": {"_count": 2, "news": {"_count": 2}}, "owls": {"_count": 1, "carrying": {"_count": 1}}, "frustrating": {"_count": 1, "for": {"_count": 1}}, "rash": {"_count": 1, "by": {"_count": 1}}, "terrified": {"_count": 1, "of": {"_count": 1}}, "risking": {"_count": 1, "expulsion": {"_count": 1}}, "home": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Ickle": {"_count": 1, "Diddykins": {"_count": 1}}, "hell": {"_count": 1, "to": {"_count": 1}}, "hanged": {"_count": 1, "for": {"_count": 1}}, "calling": {"_count": 2, "at": {"_count": 2}}, "decided": {"_count": 2, "at": {"_count": 1}, "for": {"_count": 1}}, "smart": {"_count": 1, "with": {"_count": 1}}, "coincidence": {"_count": 1, "that": {"_count": 1}}, "standing": {"_count": 5, "here": {"_count": 2}, "at": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 1}}, "suspicious": {"_count": 1, "": {"_count": 1}}, "introduced": {"_count": 1, "to": {"_count": 1}}, "known": {"_count": 3, "by": {"_count": 1}, "as": {"_count": 1}, "only": {"_count": 1}}, "watching": {"_count": 2, "the": {"_count": 2}}, "flying": {"_count": 3, "in": {"_count": 1}, "long": {"_count": 1}, "to": {"_count": 1}}, "behind": {"_count": 3, "you": {"_count": 1}, "those": {"_count": 1}, "it": {"_count": 1}}, "circling": {"_count": 1, "us": {"_count": 1}}, "heading": {"_count": 2, "back": {"_count": 1}, "for": {"_count": 1}}, "uncomfortable": {"_count": 1, "to": {"_count": 1}}, "intercepted": {"_count": 1, "He": {"_count": 1}}, "less": {"_count": 3, "unpleasant": {"_count": 1}, "than": {"_count": 1}, "dangerous": {"_count": 1}}, "asked": {"_count": 4, "to": {"_count": 1}, "twice": {"_count": 1}, "for": {"_count": 1}, "again": {"_count": 1}}, "kind": {"_count": 1, "to": {"_count": 1}}, "rags": {"_count": 1, "": {"_count": 1}}, "cleared": {"_count": 2, "away": {"_count": 1}, "": {"_count": 1}}, "tailing": {"_count": 2, "you": {"_count": 1}, "me": {"_count": 1}}, "overruled": {"_count": 1, "": {"_count": 1}}, "accurate": {"_count": 1, "": {"_count": 1}}, "study": {"_count": 1, "in": {"_count": 1}}, "adjusting": {"_count": 1, "the": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "cleaning": {"_count": 1, "you": {"_count": 1}}, "stored": {"_count": 1, "a": {"_count": 1}}, "rewarded": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "bad": {"_count": 1, "if": {"_count": 1}}, "Wartcap": {"_count": 1, "powder": {"_count": 1}}, "fellow": {"_count": 1, "students": {"_count": 1}}, "empty": {"_count": 4, "but": {"_count": 2}, "when": {"_count": 1}, "or": {"_count": 1}}, "questioning": {"_count": 1, "you": {"_count": 1}}, "slightly": {"_count": 1, "smaller": {"_count": 1}}, "Aurors": {"_count": 3, "who": {"_count": 1}, "": {"_count": 1}, "waiting": {"_count": 1}}, "somehow": {"_count": 1, "denser": {"_count": 1}}, "hearing": {"_count": 1, "something": {"_count": 1}}, "wrong": {"_count": 2, "said": {"_count": 1}, "but": {"_count": 1}}, "changed": {"_count": 1, "said": {"_count": 1}}, "dropping": {"_count": 3, "in": {"_count": 2}, "Divination": {"_count": 1}}, "returning": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "outcasts": {"_count": 1, "together": {"_count": 1}}, "revolting": {"_count": 1, "groaned": {"_count": 1}}, "rummaging": {"_count": 1, "for": {"_count": 1}}, "winging": {"_count": 1, "their": {"_count": 1}}, "But": {"_count": 1, "wait": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "begging": {"_count": 2, "us": {"_count": 2}}, "accepting": {"_count": 1, "their": {"_count": 1}}, "lying": {"_count": 5, "low": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "And": {"_count": 1}}, "reporting": {"_count": 2, "Sturgis": {"_count": 1}, "that": {"_count": 1}}, "Sirius": {"_count": 2, "if": {"_count": 1}, "Black": {"_count": 1}}, "recaptured": {"_count": 1, "and": {"_count": 1}}, "cooked": {"_count": 1, "in": {"_count": 1}}, "dogging": {"_count": 1, "your": {"_count": 1}}, "shunted": {"_count": 1, "forward": {"_count": 1}}, "believed": {"_count": 1, "the": {"_count": 1}}, "parted": {"_count": 2, "United": {"_count": 1}, "from": {"_count": 1}}, "divided": {"_count": 1, "For": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "their": {"_count": 3, "headmaster": {"_count": 1}, "final": {"_count": 1}, "actual": {"_count": 1}}, "strong": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "enough": {"_count": 1}}, "friends": {"_count": 6, "": {"_count": 2}, "again": {"_count": 2}, "Ron": {"_count": 1}, "with": {"_count": 1}}, "her": {"_count": 2, "friend": {"_count": 1}, "dyou": {"_count": 1}}, "passed": {"_count": 3, "down": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}}, "guarded": {"_count": 1, "replenished": {"_count": 1}}, "stagnation": {"_count": 1, "and": {"_count": 1}}, "discouraged": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "drinking": {"_count": 1, "in": {"_count": 1}}, "recognized": {"_count": 1, "as": {"_count": 1}}, "retained": {"_count": 1, "and": {"_count": 1}}, "abandoned": {"_count": 1, "": {"_count": 1}}, "preserved": {"_count": 1, "perfecting": {"_count": 1}}, "perfected": {"_count": 1, "and": {"_count": 1}}, "prohibited": {"_count": 3, "": {"_count": 2}, "or": {"_count": 1}}, "united": {"_count": 1, "And": {"_count": 1}}, "singing": {"_count": 1, "a": {"_count": 1}}, "rubbed": {"_count": 1, "raw": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "cool": {"_count": 1, "to": {"_count": 1}}, "saying": {"_count": 1, "good": {"_count": 1}}, "mixing": {"_count": 1, "a": {"_count": 1}}, "added": {"_count": 1, "to": {"_count": 1}}, "stirred": {"_count": 1, "exactly": {"_count": 1}}, "lowered": {"_count": 1, "to": {"_count": 1}}, "rising": {"_count": 1, "from": {"_count": 1}}, "rectified": {"_count": 1, "": {"_count": 1}}, "riskfree": {"_count": 1, "I": {"_count": 1}}, "during": {"_count": 1, "our": {"_count": 1}}, "caned": {"_count": 1, "by": {"_count": 1}}, "pompous": {"_count": 1, "on": {"_count": 1}}, "channeling": {"_count": 1, "his": {"_count": 1}}, "adjusted": {"_count": 1, "to": {"_count": 1}}, "shining": {"_count": 1, "red": {"_count": 1}}, "satisfied": {"_count": 3, "": {"_count": 2}, "once": {"_count": 1}}, "ringed": {"_count": 1, "fingers": {"_count": 1}}, "possessing": {"_count": 1, "her": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "rubbish": {"_count": 1, "": {"_count": 1}}, "tarred": {"_count": 1, "with": {"_count": 1}}, "unbalanced": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 3, "dont": {"_count": 1}, "mean": {"_count": 1}, "expect": {"_count": 1}}, "appointed": {"_count": 1, "to": {"_count": 1}}, "continuing": {"_count": 1, "our": {"_count": 1}}, "\u2018drowning": {"_count": 1, "or": {"_count": 1}}, "possessed": {"_count": 1, "of": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "sympathetic": {"_count": 2, "rather": {"_count": 1}, "to": {"_count": 1}}, "perusing": {"_count": 1, "a": {"_count": 1}}, "pathetic": {"_count": 1, "Ron": {"_count": 1}}, "taught": {"_count": 1, "by": {"_count": 1}}, "obvious": {"_count": 2, "Sirius": {"_count": 1}, "we": {"_count": 1}}, "earthy": {"_count": 1, "though": {"_count": 1}}, "them": {"_count": 2, "now": {"_count": 1}, "will": {"_count": 1}}, "properly": {"_count": 1, "trained": {"_count": 1}}, "modest": {"_count": 1, "or": {"_count": 1}}, "churlish": {"_count": 1, "to": {"_count": 1}}, "considered": {"_count": 3, "a": {"_count": 1}, "interesting": {"_count": 1}, "": {"_count": 1}}, "called": {"_count": 3, "fun": {"_count": 1}, "into": {"_count": 1}, "something": {"_count": 1}}, "admired": {"_count": 1, "buoyed": {"_count": 1}}, "sought": {"_count": 1, "from": {"_count": 1}}, "interesting": {"_count": 1, "to": {"_count": 1}}, "detention": {"_count": 1, "": {"_count": 1}}, "insulted": {"_count": 1, "no": {"_count": 1}}, "ruined": {"_count": 1, "": {"_count": 1}}, "plenty": {"_count": 2, "of": {"_count": 2}}, "forming": {"_count": 1, "secret": {"_count": 1}}, "relocated": {"_count": 1, "from": {"_count": 1}}, "issuing": {"_count": 1, "instructions": {"_count": 1}}, "staring": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "crowns": {"_count": 1, "": {"_count": 1}}, "nervous": {"_count": 2, "": {"_count": 2}}, "Montagues": {"_count": 1, "watch": {"_count": 1}}, "lookin": {"_count": 1, "fer": {"_count": 1}}, "brought": {"_count": 2, "food": {"_count": 1}, "to": {"_count": 1}}, "creepin": {"_count": 1, "inter": {"_count": 1}}, "theyll": {"_count": 1, "come": {"_count": 1}}, "informing": {"_count": 1, "the": {"_count": 1}}, "bleeding": {"_count": 1, "": {"_count": 1}}, "attracted": {"_count": 1, "by": {"_count": 1}}, "inspecting": {"_count": 1, "your": {"_count": 1}}, "unwise": {"_count": 4, "to": {"_count": 3}, "for": {"_count": 1}}, "straightening": {"_count": 1, "the": {"_count": 1}}, "kissing": {"_count": 1, "Harry": {"_count": 1}}, "nearer": {"_count": 1, "": {"_count": 1}}, "planning": {"_count": 4, "": {"_count": 1}, "some": {"_count": 1}, "to": {"_count": 2}}, "anyway": {"_count": 1, "": {"_count": 1}}, "clothes": {"_count": 1, "": {"_count": 1}}, "shattered": {"_count": 1, "but": {"_count": 1}}, "wandering": {"_count": 1, "around": {"_count": 1}}, "Hermione": {"_count": 3, "Granger": {"_count": 1}, "": {"_count": 1}, "She": {"_count": 1}}, "perused": {"_count": 1, "by": {"_count": 1}}, "provoked": {"_count": 1, "this": {"_count": 1}}, "thin": {"_count": 1, "air": {"_count": 1}}, "low": {"_count": 1, "at": {"_count": 1}}, "ideally": {"_count": 1, "placed": {"_count": 1}}, "approached": {"_count": 1, "": {"_count": 1}}, "hangin": {"_count": 1, "off": {"_count": 1}}, "upset": {"_count": 3, "about": {"_count": 1}, "Mundungus": {"_count": 1}, "": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "ousted": {"_count": 1, "out": {"_count": 1}}, "passing": {"_count": 1, "alarmingly": {"_count": 1}}, "someone": {"_count": 1, "in": {"_count": 1}}, "seeinyeh": {"_count": 1, "Harry": {"_count": 1}}, "publishing": {"_count": 1, "it": {"_count": 1}}, "slaughtered": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "entirely": {"_count": 3, "plausible": {"_count": 1}, "dependent": {"_count": 1}, "wrong": {"_count": 1}}, "emptying": {"_count": 1, "his": {"_count": 1}}, "absorbed": {"_count": 2, "in": {"_count": 2}}, "quoting": {"_count": 1, "the": {"_count": 1}}, "trembling": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "The": {"_count": 1, "weapon": {"_count": 1}}, "absolutely": {"_count": 1, "sure": {"_count": 1}}, "defensive": {"_count": 1, "spells": {"_count": 1}}, "mine": {"_count": 3, "said": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 1}}, "glimpsed": {"_count": 1, "in": {"_count": 1}}, "extra": {"_count": 1, "careful": {"_count": 1}}, "Theres": {"_count": 1, "things": {"_count": 1}}, "anybody": {"_count": 1, "there": {"_count": 1}}, "shy": {"_count": 1, "lets": {"_count": 1}}, "formally": {"_count": 1, "charged": {"_count": 1}}, "hoping": {"_count": 1, "for": {"_count": 1}}, "singlehanded": {"_count": 1, "": {"_count": 1}}, "gaining": {"_count": 1, "in": {"_count": 1}}, "information": {"_count": 1, "about": {"_count": 1}}, "insane": {"_count": 1, "to": {"_count": 1}}, "fifteen": {"_count": 1, "or": {"_count": 1}}, "within": {"_count": 1, "an": {"_count": 1}}, "humiliated": {"_count": 1, "in": {"_count": 1}}, "required": {"_count": 3, "to": {"_count": 3}}, "limping": {"_count": 1, "": {"_count": 1}}, "somebody": {"_count": 2, "your": {"_count": 1}, "anybody": {"_count": 1}}, "revolving": {"_count": 1, "on": {"_count": 1}}, "charming": {"_count": 3, "with": {"_count": 1}, "when": {"_count": 2}}, "Ravenclaw": {"_count": 1, "said": {"_count": 1}}, "tellin": {"_count": 1, "yer": {"_count": 1}}, "floating": {"_count": 1, "toward": {"_count": 1}}, "incredible": {"_count": 1, "really": {"_count": 1}}, "halted": {"_count": 1, "for": {"_count": 1}}, "unicorns": {"_count": 1, "because": {"_count": 1}}, "leading": {"_count": 1, "the": {"_count": 1}}, "adding": {"_count": 1, "notes": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "damned": {"_count": 2, "yeh": {"_count": 1}, "to": {"_count": 1}}, "sufficient": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "mounting": {"_count": 1, "": {"_count": 1}}, "fired": {"_count": 1, "all": {"_count": 1}}, "speeding": {"_count": 1, "along": {"_count": 1}}, "stone": {"_count": 1, "benches": {"_count": 1}}, "gagged": {"_count": 1, "now": {"_count": 1}}, "conveying": {"_count": 1, "it": {"_count": 1}}, "handing": {"_count": 1, "over": {"_count": 1}}, "gentle": {"_count": 1, "with": {"_count": 1}}, "unhurt": {"_count": 1, "": {"_count": 1}}, "barred": {"_count": 1, "to": {"_count": 1}}, "tragically": {"_count": 1, "misunderstood": {"_count": 1}}, "young": {"_count": 1, "": {"_count": 1}}, "pitied": {"_count": 1, "": {"_count": 1}}, "admitted": {"_count": 2, "that": {"_count": 2}}, "easing": {"_count": 1, "his": {"_count": 1}}, "ten": {"_count": 1, "twenty": {"_count": 1}}, "invincible": {"_count": 1, "if": {"_count": 1}}, "protected": {"_count": 1, "by": {"_count": 1}}, "touched": {"_count": 1, "or": {"_count": 1}}, "but": {"_count": 4, "you": {"_count": 1}, "Arthurs": {"_count": 1}, "if": {"_count": 1}, "had": {"_count": 1}}, "suitable": {"_count": 1, "for": {"_count": 1}}, "born": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "danger": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "wise": {"_count": 1, "to": {"_count": 1}}, "people": {"_count": 1, "in": {"_count": 1}}, "delivered": {"_count": 1, "free": {"_count": 1}}, "either": {"_count": 2, "murderer": {"_count": 1}, "": {"_count": 1}}, "deflected": {"_count": 1, "": {"_count": 1}}, "intimidated": {"_count": 1, "": {"_count": 1}}, "rearranged": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "effected": {"_count": 1, "tonight": {"_count": 1}}, "interrupted": {"_count": 1, "said": {"_count": 1}}, "easily": {"_count": 1, "arranged": {"_count": 1}}, "persuaded": {"_count": 1, "and": {"_count": 1}}, "possible": {"_count": 3, "": {"_count": 1}, "to": {"_count": 2}}, "prevented": {"_count": 1, "from": {"_count": 1}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "comfortable": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "optimistic": {"_count": 1, "to": {"_count": 1}}, "haunted": {"_count": 2, "forever": {"_count": 1}, "what": {"_count": 1}}, "owned": {"_count": 1, "by": {"_count": 1}}, "permitted": {"_count": 2, "to": {"_count": 2}}, "encumbered": {"_count": 1, "by": {"_count": 1}}, "seventeen": {"_count": 4, "": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 1}}, "reusable": {"_count": 1, "": {"_count": 1}}, "tantamount": {"_count": 1, "to": {"_count": 1}}, "welcome": {"_count": 2, "to": {"_count": 1}, "said": {"_count": 1}}, "coping": {"_count": 1, "after": {"_count": 1}}, "poor": {"_count": 1, "repayment": {"_count": 1}}, "married": {"_count": 3, "": {"_count": 3}}, "giving": {"_count": 4, "me": {"_count": 2}, "you": {"_count": 1}, "Harry": {"_count": 1}}, "dissolving": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "top": {"_count": 1, "at": {"_count": 1}}, "flippant": {"_count": 1, "about": {"_count": 1}}, "reunited": {"_count": 1, "with": {"_count": 1}}, "innocent": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "retribution": {"_count": 1, "": {"_count": 1}}, "orrible": {"_count": 1, "with": {"_count": 1}}, "qualified": {"_count": 1, "for": {"_count": 1}}, "neither": {"_count": 1, "seen": {"_count": 1}}, "halfway": {"_count": 1, "back": {"_count": 1}}, "recounting": {"_count": 1, "his": {"_count": 1}}, "sliding": {"_count": 2, "underneath": {"_count": 1}, "out": {"_count": 1}}, "mended": {"_count": 1, "": {"_count": 1}}, "wellrested": {"_count": 1, "for": {"_count": 1}}, "stunned": {"_count": 1, "by": {"_count": 1}}, "welladvised": {"_count": 1, "to": {"_count": 1}}, "jinxing": {"_count": 1, "Harry": {"_count": 1}}, "filling": {"_count": 1, "him": {"_count": 1}}, "correspondingly": {"_count": 1, "huger": {"_count": 1}}, "Ogden": {"_count": 1, "he": {"_count": 1}}, "invited": {"_count": 1, "snapped": {"_count": 1}}, "sorting": {"_count": 1, "out": {"_count": 1}}, "warm": {"_count": 1, "": {"_count": 1}}, "annoyed": {"_count": 1, "too": {"_count": 1}}, "pushing": {"_count": 1, "his": {"_count": 1}}, "named": {"_count": 1, "Tom": {"_count": 1}}, "Riddle": {"_count": 1, "": {"_count": 1}}, "cautious": {"_count": 1, "": {"_count": 1}}, "discussing": {"_count": 1, "in": {"_count": 1}}, "different": {"_count": 2, "separate": {"_count": 1}, "": {"_count": 1}}, "important": {"_count": 2, "later": {"_count": 1}, "said": {"_count": 1}}, "dismissed": {"_count": 1, "": {"_count": 1}}, "squeamish": {"_count": 1, "squeeze": {"_count": 1}}, "devastated": {"_count": 1, "if": {"_count": 1}}, "surfacing": {"_count": 1, "soon": {"_count": 1}}, "bosom": {"_count": 1, "friends": {"_count": 1}}, "arranged": {"_count": 1, "very": {"_count": 1}}, "pals": {"_count": 1, "last": {"_count": 1}}, "excited": {"_count": 1, "at": {"_count": 1}}, "tricked": {"_count": 1, "into": {"_count": 1}}, "fairly": {"_count": 1, "sure": {"_count": 1}}, "astonished": {"_count": 1, "if": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "valuable": {"_count": 2, "to": {"_count": 1}, "information": {"_count": 1}}, "panic": {"_count": 1, "more": {"_count": 1}}, "talkin": {"_count": 1, "about": {"_count": 1}}, "solid": {"_count": 4, "wall": {"_count": 2}, "A": {"_count": 1}, "and": {"_count": 1}}, "worldclass": {"_count": 1, "and": {"_count": 1}}, "shot": {"_count": 1, "of": {"_count": 1}}, "demonstrating": {"_count": 1, "how": {"_count": 1}}, "wasting": {"_count": 1, "our": {"_count": 1}}, "sugar": {"_count": 1, "but": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "clear": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "B": {"_count": 1, "U": {"_count": 1}}, "Unplottable": {"_count": 1, "it": {"_count": 1}}, "concentrating": {"_count": 1, "on": {"_count": 1}}, "complicated": {"_count": 1, "by": {"_count": 1}}, "Apparating": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "directly": {"_count": 1}}, "bursting": {"_count": 1, "into": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "plainer": {"_count": 1, "you": {"_count": 1}}, "hardpushed": {"_count": 1, "to": {"_count": 1}}, "preferable": {"_count": 1, "": {"_count": 1}}, "unleashed": {"_count": 1, "again": {"_count": 1}}, "wasted": {"_count": 1, "said": {"_count": 1}}, "ordinary": {"_count": 1, "objects": {"_count": 1}}, "positively": {"_count": 1, "lighthearted": {"_count": 1}}, "rid": {"_count": 2, "of": {"_count": 2}}, "third": {"_count": 1, "behind": {"_count": 1}}, "knitting": {"_count": 1, "": {"_count": 1}}, "overawed": {"_count": 1, "by": {"_count": 1}}, "objects": {"_count": 1, "hidden": {"_count": 1}}, "rejoining": {"_count": 1, "the": {"_count": 1}}, "endured": {"_count": 1, "next": {"_count": 1}}, "talked": {"_count": 1, "about": {"_count": 1}}, "hidden": {"_count": 3, "in": {"_count": 1}, "whose": {"_count": 1}, "once": {"_count": 1}}, "exceedingly": {"_count": 1, "dangerous": {"_count": 1}}, "additional": {"_count": 1, "protection": {"_count": 1}}, "necessary": {"_count": 1, "for": {"_count": 1}}, "keen": {"_count": 1, "for": {"_count": 1}}, "feared": {"_count": 2, "from": {"_count": 2}}, "penetrated": {"_count": 1, "by": {"_count": 1}}, "Transfigured": {"_count": 1, "Charmed": {"_count": 1}}, "drowned": {"_count": 1, "and": {"_count": 1}}, "responsible": {"_count": 1, "again": {"_count": 1}}, "ripped": {"_count": 1, "out": {"_count": 1}}, "protecting": {"_count": 1, "him": {"_count": 1}}, "mortal": {"_count": 1, "once": {"_count": 1}}, "lovely": {"_count": 2, "": {"_count": 1}, "if": {"_count": 1}}, "draped": {"_count": 1, "in": {"_count": 1}}, "laid": {"_count": 2, "to": {"_count": 2}}, "Dumbledores": {"_count": 2, "final": {"_count": 1}, "body": {"_count": 1}}, "interrogated": {"_count": 1, "by": {"_count": 1}}, "completed": {"_count": 1, "before": {"_count": 1}}, "restraining": {"_count": 1, "his": {"_count": 1}}, "scorched": {"_count": 1, "by": {"_count": 1}}, "susceptible": {"_count": 1, "": {"_count": 1}}, "surrounded": {"_count": 2, "by": {"_count": 2}}, "blamed": {"_count": 1, "for": {"_count": 1}}, "unoccupied": {"_count": 1, "": {"_count": 1}}, "outsiders": {"_count": 1, "": {"_count": 1}}, "guilty": {"_count": 1, "": {"_count": 1}}, "meteoric": {"_count": 1, "and": {"_count": 1}}, "frustratingly": {"_count": 1, "dull": {"_count": 1}}, "generated": {"_count": 1, "by": {"_count": 1}}, "shocks": {"_count": 1, "in": {"_count": 1}}, "denied": {"_count": 1, "": {"_count": 1}}, "addressed": {"_count": 1, "thus": {"_count": 1}}, "utterly": {"_count": 2, "bamboozled": {"_count": 1}, "sure": {"_count": 1}}, "tactless": {"_count": 1, "for": {"_count": 1}}, "rippling": {"_count": 1, "the": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "seven": {"_count": 3, "Harry": {"_count": 1}, "Harrys": {"_count": 2}}, "second": {"_count": 2, "": {"_count": 1}, "class": {"_count": 1}}, "Imperiused": {"_count": 1, "": {"_count": 1}}, "identifying": {"_count": 1, "which": {"_count": 1}}, "disguised": {"_count": 1, "Arry": {"_count": 1}}, "cleaned": {"_count": 1, "out": {"_count": 1}}, "ever": {"_count": 1, "so": {"_count": 1}}, "hunting": {"_count": 1, "down": {"_count": 1}}, "excruciatingly": {"_count": 1, "painful": {"_count": 1}}, "actually": {"_count": 1, "": {"_count": 1}}, "Fleurs": {"_count": 1, "mother": {"_count": 1}}, "sharing": {"_count": 1, "with": {"_count": 1}}, "unique": {"_count": 1, "": {"_count": 1}}, "Beedle": {"_count": 1, "s": {"_count": 1}}, "bothering": {"_count": 1, "with": {"_count": 1}}, "prudent": {"_count": 2, "to": {"_count": 2}}, "emitting": {"_count": 1, "a": {"_count": 1}}, "polished": {"_count": 1, "and": {"_count": 1}}, "presented": {"_count": 1, "with": {"_count": 1}}, "poring": {"_count": 1, "over": {"_count": 1}}, "spared": {"_count": 3, "the": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "counted": {"_count": 2, "upon": {"_count": 2}}, "locked": {"_count": 1, "up": {"_count": 1}}, "tingling": {"_count": 1, "again": {"_count": 1}}, "gleaning": {"_count": 1, "little": {"_count": 1}}, "relied": {"_count": 1, "upon": {"_count": 1}}, "interrogating": {"_count": 1, "Mudbloods": {"_count": 1}}, "beaten": {"_count": 1, "back": {"_count": 1}}, "party": {"_count": 1, "to": {"_count": 1}}, "subjected": {"_count": 2, "to": {"_count": 2}}, "fainting": {"_count": 1, "": {"_count": 1}}, "recording": {"_count": 1, "the": {"_count": 1}}, "fast": {"_count": 1, "before": {"_count": 1}}, "leaves": {"_count": 1, "and": {"_count": 1}}, "bringing": {"_count": 1, "other": {"_count": 1}}, "fleeing": {"_count": 1, "the": {"_count": 1}}, "loyal": {"_count": 1, "now": {"_count": 1}}, "two": {"_count": 1, "speakers": {"_count": 1}}, "Confunded": {"_count": 1, "": {"_count": 1}}, "lied": {"_count": 1, "to": {"_count": 1}}, "also": {"_count": 2, "": {"_count": 2}}, "sidetracked": {"_count": 1, "again": {"_count": 1}}, "destroyed": {"_count": 4, "is": {"_count": 4}}, "discarded": {"_count": 1, "even": {"_count": 1}}, "fatally": {"_count": 1, "weakened": {"_count": 1}}, "interviewed": {"_count": 1, "for": {"_count": 1}}, "revealed": {"_count": 1, "that": {"_count": 1}}, "scooped": {"_count": 1, "up": {"_count": 1}}, "shivering": {"_count": 1, "he": {"_count": 1}}, "school": {"_count": 1, "age": {"_count": 1}}, "huge": {"_count": 1, "news": {"_count": 1}}, "uninhabited": {"_count": 1, "apart": {"_count": 1}}, "Lunas": {"_count": 1, "house": {"_count": 1}}, "steeling": {"_count": 1, "himself": {"_count": 1}}, "polite": {"_count": 1, "he": {"_count": 1}}, "immeasurably": {"_count": 1, "rich": {"_count": 1}}, "truly": {"_count": 3, "master": {"_count": 2}, "mine": {"_count": 1}}, "unlucky": {"_count": 1, "": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "Stan": {"_count": 1, "because": {"_count": 1}}, "master": {"_count": 1, "of": {"_count": 1}}, "virtually": {"_count": 1, "unassailable": {"_count": 1}}, "saved": {"_count": 1, "if": {"_count": 1}}, "Wizards": {"_count": 1, "first": {"_count": 1}}, "proclaimed": {"_count": 1, "as": {"_count": 1}}, "\u2018Rapier": {"_count": 1, "": {"_count": 1}}, "\u2018MadEye": {"_count": 1, "": {"_count": 1}}, "ogwarts": {"_count": 1, "age": {"_count": 1}}, "forgiv": {"_count": 1, "Now": {"_count": 1}}, "forgetting": {"_count": 1, "who": {"_count": 1}}, "certain": {"_count": 1, "Lucius": {"_count": 1}}, "claiming": {"_count": 1, "the": {"_count": 1}}, "harmed": {"_count": 3, "she": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "barely": {"_count": 1, "conscious": {"_count": 1}}, "SkeleGro": {"_count": 1, "": {"_count": 1}}, "repaired": {"_count": 2, "by": {"_count": 1}, "that": {"_count": 1}}, "simply": {"_count": 1, "due": {"_count": 1}}, "overeard": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 1, "": {"_count": 1}}, "godfather": {"_count": 1, "": {"_count": 1}}, "blond": {"_count": 1, "by": {"_count": 1}}, "friendship": {"_count": 1, "between": {"_count": 1}}, "exceptionally": {"_count": 1, "careful": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "troublesome": {"_count": 1, "said": {"_count": 1}}, "Bellatrixs": {"_count": 1, "side": {"_count": 1}}, "room": {"_count": 1, "for": {"_count": 1}}, "crushed": {"_count": 1, "to": {"_count": 1}}, "approaching": {"_count": 1, "on": {"_count": 1}}, "shaken": {"_count": 1, "off": {"_count": 1}}, "sobbing": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "Voldemort": {"_count": 1}}, "intact": {"_count": 1, "": {"_count": 1}}, "dark": {"_count": 1, "no": {"_count": 1}}, "onto": {"_count": 1, "you": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "advisable": {"_count": 1, "to": {"_count": 1}}, "evacuated": {"_count": 1, "though": {"_count": 1}}, "solidifying": {"_count": 1, "like": {"_count": 1}}, "overseen": {"_count": 1, "by": {"_count": 1}}, "contained": {"_count": 1, "by": {"_count": 1}}, "concealing": {"_count": 1, "them": {"_count": 1}}, "happenin": {"_count": 1, "": {"_count": 1}}, "breaching": {"_count": 1, "the": {"_count": 1}}, "thwarted": {"_count": 1, "by": {"_count": 1}}, "leaking": {"_count": 1, "from": {"_count": 1}}, "wrestling": {"_count": 1, "together": {"_count": 1}}, "ddoing": {"_count": 1, "": {"_count": 1}}, "refuses": {"_count": 1, "to": {"_count": 1}}, "pleading": {"_count": 1, "with": {"_count": 1}}, "wizards": {"_count": 1, "working": {"_count": 1}}, "brawny": {"_count": 1, "than": {"_count": 1}}, "between": {"_count": 1, "us": {"_count": 1}}, "shocked": {"_count": 1, "Severus": {"_count": 1}}, "clean": {"_count": 1, "and": {"_count": 1}}, "sensed": {"_count": 1, "to": {"_count": 1}}, "white": {"_count": 1, "neither": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "repaid": {"_count": 1, "a": {"_count": 1}}, "examined": {"_count": 1, "but": {"_count": 1}}, "recognizable": {"_count": 1, "Someone": {"_count": 1}}, "forgiven": {"_count": 1, "and": {"_count": 1}}, "otherwise": {"_count": 1, "": {"_count": 1}}, "noted": {"_count": 1, "that": {"_count": 1}}, "forgotten": {"_count": 1, "": {"_count": 1}}, "waving": {"_count": 1, "to": {"_count": 1}}}, "involved": {"_count": 38, "in": {"_count": 14, "anything": {"_count": 1}, "matters": {"_count": 1}, "helping": {"_count": 1}, "a": {"_count": 1}, "S": {"_count": 1}, "Nah": {"_count": 1}, "all": {"_count": 1}, "this": {"_count": 1}, "those": {"_count": 1}, "something": {"_count": 1}, "horrific": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 2}}, "there": {"_count": 1, "was": {"_count": 1}}, "punching": {"_count": 1, "somebody": {"_count": 1}}, "is": {"_count": 1, "there": {"_count": 1}}, "nearly": {"_count": 1, "killed": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 2}, "!": {"_count": 2}, "?": {"_count": 1}}, "revealing": {"_count": 1, "that": {"_count": 1}}, "me": {"_count": 1, "Black": {"_count": 1}}, "with": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "certain": {"_count": 1, "sacrifices": {"_count": 1}}, "of": {"_count": 1, "which": {"_count": 1}}, "eating": {"_count": 1, "porridge": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "Ginny": {"_count": 1, "splitting": {"_count": 1}}, "hell": {"_count": 1, "know": {"_count": 1}}, "I": {"_count": 1, "hear": {"_count": 1}}}, "in": {"_count": 12329, "anything": {"_count": 7, "strange": {"_count": 1}, "that": {"_count": 2}, "else": {"_count": 1}, "dangerous": {"_count": 1}, "Ive": {"_count": 1}, "I": {"_count": 1}}, "very": {"_count": 8, "useful": {"_count": 1}, "special": {"_count": 1}, "deep": {"_count": 1}, "loud": {"_count": 1}, "serious": {"_count": 1}, "odd": {"_count": 1}, "frilly": {"_count": 1}, "quick": {"_count": 1}}, "their": {"_count": 173, "opinion": {"_count": 1}, "leather": {"_count": 1}, "day": {"_count": 1}, "turn": {"_count": 1}, "direction": {"_count": 6}, "panic": {"_count": 1}, "Houses": {"_count": 1}, "insides": {"_count": 1}, "veins": {"_count": 1}, "pajamas": {"_count": 3}, "hands": {"_count": 4}, "seats": {"_count": 10}, "tracks": {"_count": 3}, "hurry": {"_count": 1}, "holders": {"_count": 1}, "right": {"_count": 5}, "frames": {"_count": 9}, "dormitory": {"_count": 3}, "socks": {"_count": 1}, "way": {"_count": 1}, "ugly": {"_count": 1}, "first": {"_count": 1}, "cages": {"_count": 1}, "compartment": {"_count": 1}, "best": {"_count": 1}, "ponds": {"_count": 1}, "sleeping": {"_count": 1}, "head": {"_count": 1}, "Quidditch": {"_count": 1}, "league": {"_count": 1}, "fourth": {"_count": 1}, "midst": {"_count": 5}, "scarlet": {"_count": 1}, "sleep": {"_count": 2}, "dinner": {"_count": 1}, "attempts": {"_count": 1}, "house": {"_count": 1}, "room": {"_count": 1}, "efforts": {"_count": 1}, "wildest": {"_count": 1}, "own": {"_count": 8}, "next": {"_count": 2}, "heights": {"_count": 1}, "late": {"_count": 1}, "nature": {"_count": 1}, "wake": {"_count": 5}, "hearts": {"_count": 1}, "absence": {"_count": 2}, "natures": {"_count": 2}, "corner": {"_count": 1}, "office": {"_count": 1}, "second": {"_count": 2}, "boxes": {"_count": 1}, "masks": {"_count": 1}, "respective": {"_count": 1}, "drives": {"_count": 1}, "sordid": {"_count": 1}, "letters": {"_count": 1}, "sockets": {"_count": 1}, "ears": {"_count": 3}, "goblets": {"_count": 1}, "O": {"_count": 2}, "books": {"_count": 1}, "usual": {"_count": 2}, "classes": {"_count": 1}, "robes": {"_count": 1}, "cloaks": {"_count": 1}, "natural": {"_count": 1}, "night": {"_count": 1}, "looks": {"_count": 1}, "forthcoming": {"_count": 1}, "match": {"_count": 1}, "haste": {"_count": 1}, "Defense": {"_count": 1}, "work": {"_count": 1}, "last": {"_count": 1}, "Muggle": {"_count": 1}, "heart": {"_count": 1}, "sides": {"_count": 2}, "various": {"_count": 1}, "lives": {"_count": 2}, "beds": {"_count": 1}, "stride": {"_count": 1}, "year": {"_count": 1}, "places": {"_count": 1}, "friends": {"_count": 1}, "spellcasting": {"_count": 1}, "presence": {"_count": 1}, "common": {"_count": 1}, "midteens": {"_count": 1}, "firstever": {"_count": 1}, "sodden": {"_count": 1}, "chairs": {"_count": 2}, "faces": {"_count": 2}, "buttonholes": {"_count": 1}, "windows": {"_count": 1}, "meaning": {"_count": 1}, "little": {"_count": 1}, "fortunes": {"_count": 1}, "home": {"_count": 1}, "tent": {"_count": 1}, "sunken": {"_count": 1}, "race": {"_count": 1}, "preparations": {"_count": 1}, "surroundings": {"_count": 1}, "nightclothes": {"_count": 2}, "heads": {"_count": 1}, "owners": {"_count": 1}, "long": {"_count": 1}}, "fact": {"_count": 44, "Mrs": {"_count": 1}, "": {"_count": 4}, "they": {"_count": 2}, "been": {"_count": 2}, "in": {"_count": 1}, "be": {"_count": 1}, "he": {"_count": 5}, "than": {"_count": 2}, "sank": {"_count": 1}, "Harry": {"_count": 4}, "but": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 2}, "a": {"_count": 3}, "she": {"_count": 2}, "even": {"_count": 1}, "and": {"_count": 1}, "have": {"_count": 1}, "subconsciously": {"_count": 1}, "for": {"_count": 1}, "if": {"_count": 1}, "next": {"_count": 1}, "their": {"_count": 1}, "cast": {"_count": 1}, "to": {"_count": 1}, "told": {"_count": 1}}, "the": {"_count": 3482, "street": {"_count": 7}, "usual": {"_count": 3}, "Grunnings": {"_count": 1}, "bathroom": {"_count": 6}, "air": {"_count": 86}, "distance": {"_count": 23}, "name": {"_count": 8}, "future": {"_count": 2}, "right": {"_count": 11}, "house": {"_count": 25}, "kitchen": {"_count": 31}, "face": {"_count": 61}, "car": {"_count": 11}, "back": {"_count": 39}, "wash": {"_count": 1}, "van": {"_count": 1}, "zoo": {"_count": 2}, "place": {"_count": 9}, "mood": {"_count": 3}, "ribs": {"_count": 13}, "sink": {"_count": 3}, "bowl": {"_count": 3}, "room": {"_count": 45}, "corner": {"_count": 38}, "hall": {"_count": 23}, "downstairs": {"_count": 1}, "opposite": {"_count": 22}, "middle": {"_count": 96}, "irongray": {"_count": 1}, "boat": {"_count": 3}, "wooden": {"_count": 1}, "second": {"_count": 10}, "long": {"_count": 6}, "doorway": {"_count": 32}, "letter": {"_count": 2}, "family": {"_count": 13}, "village": {"_count": 14}, "world": {"_count": 54}, "pockets": {"_count": 4}, "sunlight": {"_count": 11}, "bottom": {"_count": 5}, "ticket": {"_count": 1}, "Leaky": {"_count": 7}, "Black": {"_count": 1}, "wall": {"_count": 19}, "passage": {"_count": 2}, "old": {"_count": 3}, "Muggle": {"_count": 3}, "dusty": {"_count": 1}, "depths": {"_count": 7}, "wrong": {"_count": 10}, "sky": {"_count": 13}, "same": {"_count": 30}, "station": {"_count": 1}, "class": {"_count": 5}, "corridor": {"_count": 25}, "cold": {"_count": 9}, "starry": {"_count": 1}, "water": {"_count": 13}, "cliff": {"_count": 3}, "rock": {"_count": 4}, "shadow": {"_count": 7}, "Great": {"_count": 40}, "flickering": {"_count": 1}, "line": {"_count": 1}, "ruff": {"_count": 2}, "center": {"_count": 19}, "whole": {"_count": 5}, "direction": {"_count": 25}, "corridors": {"_count": 31}, "portraits": {"_count": 5}, "Gryffindor": {"_count": 17}, "dungeons": {"_count": 11}, "owlery": {"_count": 1}, "main": {"_count": 5}, "potion": {"_count": 1}, "crack": {"_count": 2}, "school": {"_count": 18}, "sun": {"_count": 6}, "trophy": {"_count": 4}, "fireplace": {"_count": 6}, "darkness": {"_count": 46}, "next": {"_count": 6}, "lead": {"_count": 12}, "mail": {"_count": 1}, "dusk": {"_count": 1}, "girls": {"_count": 6}, "pumpkins": {"_count": 1}, "lock": {"_count": 4}, "House": {"_count": 3}, "Sahara": {"_count": 1}, "freezing": {"_count": 3}, "stands": {"_count": 14}, "top": {"_count": 3}, "locker": {"_count": 4}, "crowd": {"_count": 15}, "pub": {"_count": 2}, "classrooms": {"_count": 1}, "far": {"_count": 5}, "library": {"_count": 35}, "morning": {"_count": 32}, "dark": {"_count": 53}, "mirror": {"_count": 19}, "cloak": {"_count": 5}, "pocket": {"_count": 4}, "row": {"_count": 1}, "setting": {"_count": 2}, "common": {"_count": 47}, "grate": {"_count": 8}, "fire": {"_count": 20}, "end": {"_count": 33}, "curtains": {"_count": 2}, "wild": {"_count": 1}, "entrance": {"_count": 36}, "dead": {"_count": 8}, "Astronomy": {"_count": 1}, "last": {"_count": 25}, "furor": {"_count": 1}, "forest": {"_count": 41}, "earth": {"_count": 1}, "trees": {"_count": 9}, "path": {"_count": 2}, "first": {"_count": 40}, "animals": {"_count": 1}, "movements": {"_count": 1}, "moonlight": {"_count": 9}, "stars": {"_count": 1}, "large": {"_count": 1}, "warm": {"_count": 3}, "Hogs": {"_count": 13}, "wizards": {"_count": 1}, "chamber": {"_count": 3}, "classroom": {"_count": 1}, "funny": {"_count": 1}, "hospital": {"_count": 31}, "Slytherin": {"_count": 4}, "early": {"_count": 11}, "frying": {"_count": 1}, "tower": {"_count": 2}, "grounds": {"_count": 18}, "wizarding": {"_count": 9}, "cupboard": {"_count": 6}, "night": {"_count": 7}, "evening": {"_count": 6}, "oven": {"_count": 4}, "bedroom": {"_count": 3}, "attic": {"_count": 9}, "garage": {"_count": 1}, "most": {"_count": 5}, "office": {"_count": 3}, "ground": {"_count": 1}, "background": {"_count": 4}, "form": {"_count": 4}, "field": {"_count": 2}, "law": {"_count": 1}, "league": {"_count": 1}, "butter": {"_count": 2}, "only": {"_count": 2}, "stone": {"_count": 3}, "Weasleys": {"_count": 3}, "packed": {"_count": 2}, "windows": {"_count": 1}, "eye": {"_count": 11}, "yard": {"_count": 6}, "pit": {"_count": 13}, "vain": {"_count": 1}, "glove": {"_count": 1}, "blackness": {"_count": 2}, "candlelight": {"_count": 7}, "Misuse": {"_count": 2}, "stomach": {"_count": 7}, "eyes": {"_count": 5}, "way": {"_count": 13}, "greenhouse": {"_count": 2}, "sacks": {"_count": 2}, "ceiling": {"_count": 6}, "changing": {"_count": 6}, "stadium": {"_count": 3}, "deserted": {"_count": 6}, "other": {"_count": 18}, "cool": {"_count": 2}, "neck": {"_count": 1}, "case": {"_count": 5}, "shape": {"_count": 6}, "dungeon": {"_count": 2}, "light": {"_count": 17}, "pictures": {"_count": 1}, "upstairs": {"_count": 1}, "slightest": {"_count": 6}, "castle": {"_count": 33}, "throng": {"_count": 1}, "Ubend": {"_count": 2}, "Restricted": {"_count": 3}, "theory": {"_count": 1}, "student": {"_count": 1}, "students": {"_count": 1}, "rest": {"_count": 5}, "pitch": {"_count": 1}, "accepted": {"_count": 1}, "midst": {"_count": 11}, "Invisibility": {"_count": 2}, "mud": {"_count": 2}, "act": {"_count": 5}, "high": {"_count": 2}, "closet": {"_count": 1}, "cracked": {"_count": 1}, "sixth": {"_count": 2}, "great": {"_count": 4}, "crowded": {"_count": 2}, "page": {"_count": 1}, "current": {"_count": 1}, "darkening": {"_count": 1}, "box": {"_count": 4}, "greenhouses": {"_count": 3}, "infirmary": {"_count": 1}, "scramble": {"_count": 1}, "tone": {"_count": 2}, "pitchdark": {"_count": 1}, "sea": {"_count": 2}, "near": {"_count": 3}, "wandlight": {"_count": 5}, "clearing": {"_count": 3}, "creatures": {"_count": 1}, "very": {"_count": 15}, "black": {"_count": 5}, "silent": {"_count": 2}, "pumpkin": {"_count": 4}, "arm": {"_count": 2}, "Chamber": {"_count": 8}, "Forbidden": {"_count": 13}, "Chambers": {"_count": 1}, "absence": {"_count": 3}, "staffroom": {"_count": 6}, "job": {"_count": 1}, "tunnel": {"_count": 2}, "shins": {"_count": 2}, "meantime": {"_count": 8}, "halfdarkness": {"_count": 1}, "rockfall": {"_count": 1}, "pipes": {"_count": 1}, "forests": {"_count": 1}, "firelight": {"_count": 9}, "head": {"_count": 5}, "cheering": {"_count": 1}, "Fourteenth": {"_count": 1}, "blackandwhite": {"_count": 1}, "Egyptian": {"_count": 1}, "Daily": {"_count": 17}, "magical": {"_count": 4}, "living": {"_count": 8}, "country": {"_count": 5}, "best": {"_count": 3}, "money": {"_count": 1}, "narrow": {"_count": 2}, "gutter": {"_count": 1}, "color": {"_count": 1}, "armchair": {"_count": 4}, "present": {"_count": 3}, "bright": {"_count": 7}, "shop": {"_count": 6}, "broomtail": {"_count": 1}, "unseen": {"_count": 1}, "chair": {"_count": 6}, "cage": {"_count": 1}, "bar": {"_count": 3}, "parlor": {"_count": 1}, "press": {"_count": 1}, "shadows": {"_count": 12}, "chaos": {"_count": 1}, "Intercity": {"_count": 1}, "luggage": {"_count": 4}, "palm": {"_count": 3}, "trunk": {"_count": 5}, "patches": {"_count": 1}, "nature": {"_count": 2}, "compartment": {"_count": 4}, "tangle": {"_count": 1}, "grass": {"_count": 12}, "charge": {"_count": 1}, "physical": {"_count": 1}, "area": {"_count": 6}, "vast": {"_count": 3}, "twilight": {"_count": 2}, "tankard": {"_count": 1}, "chilly": {"_count": 3}, "bag": {"_count": 3}, "Dark": {"_count": 5}, "evenings": {"_count": 6}, "topmost": {"_count": 3}, "rainfilled": {"_count": 1}, "showers": {"_count": 1}, "farthest": {"_count": 1}, "cellar": {"_count": 9}, "Three": {"_count": 12}, "Department": {"_count": 14}, "glittering": {"_count": 2}, "snow": {"_count": 8}, "bitterly": {"_count": 1}, "Magical": {"_count": 1}, "reflected": {"_count": 2}, "region": {"_count": 2}, "match": {"_count": 3}, "festivities": {"_count": 1}, "total": {"_count": 2}, "walls": {"_count": 2}, "Quidditch": {"_count": 4}, "lineup": {"_count": 1}, "roar": {"_count": 1}, "thrill": {"_count": 2}, "stifling": {"_count": 1}, "sunny": {"_count": 2}, "passageway": {"_count": 2}, "dying": {"_count": 1}, "roots": {"_count": 3}, "Shrieking": {"_count": 6}, "week": {"_count": 2}, "company": {"_count": 3}, "paper": {"_count": 7}, "boarded": {"_count": 1}, "playground": {"_count": 2}, "mist": {"_count": 2}, "breeze": {"_count": 4}, "lake": {"_count": 12}, "debt": {"_count": 1}, "afternoon": {"_count": 8}, "trains": {"_count": 1}, "gardeners": {"_count": 1}, "neighboring": {"_count": 1}, "Little": {"_count": 1}, "Hanged": {"_count": 1}, "Riddle": {"_count": 1}, "bottle": {"_count": 2}, "war": {"_count": 2}, "hidden": {"_count": 1}, "matter": {"_count": 1}, "dream": {"_count": 3}, "report": {"_count": 1}, "normal": {"_count": 2}, "Dursley": {"_count": 1}, "clothes": {"_count": 1}, "blasted": {"_count": 1}, "garden": {"_count": 9}, "semifinals": {"_count": 1}, "position": {"_count": 3}, "semidarkness": {"_count": 3}, "campsite": {"_count": 2}, "days": {"_count": 4}, "arrangements": {"_count": 2}, "market": {"_count": 1}, "Top": {"_count": 7}, "seats": {"_count": 1}, "crowds": {"_count": 1}, "tent": {"_count": 13}, "wood": {"_count": 2}, "woolen": {"_count": 1}, "ordinary": {"_count": 1}, "woods": {"_count": 3}, "dawn": {"_count": 1}, "front": {"_count": 6}, "orchard": {"_count": 2}, "Prophet": {"_count": 6}, "drawers": {"_count": 2}, "rain": {"_count": 1}, "pitchdarkness": {"_count": 1}, "kitchens": {"_count": 6}, "Hall": {"_count": 18}, "blurred": {"_count": 1}, "bottles": {"_count": 1}, "heat": {"_count": 1}, "heavens": {"_count": 1}, "coming": {"_count": 1}, "Library": {"_count": 1}, "twelfth": {"_count": 1}, "thick": {"_count": 3}, "forehead": {"_count": 1}, "dormitory": {"_count": 6}, "pale": {"_count": 1}, "amount": {"_count": 2}, "oppression": {"_count": 1}, "Owlery": {"_count": 2}, "arrival": {"_count": 1}, "fourth": {"_count": 3}, "shallows": {"_count": 1}, "ships": {"_count": 1}, "casket": {"_count": 1}, "tournament": {"_count": 8}, "goblet": {"_count": 7}, "level": {"_count": 1}, "rules": {"_count": 1}, "Tournament": {"_count": 1}, "otherwise": {"_count": 1}, "Triwizard": {"_count": 8}, "Goblet": {"_count": 6}, "InterHouse": {"_count": 1}, "dimly": {"_count": 1}, "confused": {"_count": 1}, "tasks": {"_count": 1}, "past": {"_count": 10}, "third": {"_count": 4}, "small": {"_count": 4}, "enclosure": {"_count": 1}, "hard": {"_count": 1}, "champions": {"_count": 1}, "shower": {"_count": 1}, "windy": {"_count": 1}, "midriff": {"_count": 1}, "volume": {"_count": 1}, "sort": {"_count": 1}, "minority": {"_count": 1}, "gaps": {"_count": 1}, "songs": {"_count": 1}, "year": {"_count": 5}, "rosebushes": {"_count": 1}, "size": {"_count": 1}, "new": {"_count": 3}, "rose": {"_count": 1}, "hot": {"_count": 2}, "picture": {"_count": 5}, "chest": {"_count": 13}, "S": {"_count": 1}, "step": {"_count": 1}, "stairs": {"_count": 1}, "unlikely": {"_count": 2}, "young": {"_count": 1}, "painting": {"_count": 2}, "prefects": {"_count": 3}, "side": {"_count": 3}, "icy": {"_count": 1}, "ebb": {"_count": 1}, "post": {"_count": 1}, "papers": {"_count": 3}, "bushes": {"_count": 1}, "beginning": {"_count": 2}, "article": {"_count": 1}, "smalls": {"_count": 1}, "mountain": {"_count": 1}, "shade": {"_count": 5}, "firs": {"_count": 1}, "upper": {"_count": 1}, "mysterious": {"_count": 1}, "corners": {"_count": 3}, "chained": {"_count": 4}, "greatest": {"_count": 1}, "struggle": {"_count": 2}, "Imperius": {"_count": 1}, "torchlight": {"_count": 2}, "surrounding": {"_count": 4}, "Ministry": {"_count": 10}, "seat": {"_count": 1}, "four": {"_count": 1}, "cabinet": {"_count": 3}, "basin": {"_count": 6}, "Pensieve": {"_count": 13}, "scar": {"_count": 1}, "worst": {"_count": 1}, "emptying": {"_count": 1}, "wake": {"_count": 2}, "running": {"_count": 2}, "hedge": {"_count": 2}, "persons": {"_count": 1}, "starlight": {"_count": 1}, "cauldron": {"_count": 1}, "wad": {"_count": 1}, "sparks": {"_count": 1}, "circle": {"_count": 4}, "times": {"_count": 1}, "wands": {"_count": 1}, "attempt": {"_count": 5}, "ropes": {"_count": 1}, "smell": {"_count": 3}, "FoeGlass": {"_count": 2}, "excitement": {"_count": 2}, "day": {"_count": 1}, "arms": {"_count": 1}, "freshly": {"_count": 1}, "maze": {"_count": 3}, "care": {"_count": 1}, "short": {"_count": 1}, "inner": {"_count": 1}, "standing": {"_count": 1}, "summer": {"_count": 2}, "hope": {"_count": 14}, "flower": {"_count": 1}, "Southeast": {"_count": 1}, "wizard": {"_count": 1}, "Dursleys": {"_count": 3}, "primary": {"_count": 1}, "shed": {"_count": 1}, "alleyway": {"_count": 4}, "abrupt": {"_count": 1}, "pool": {"_count": 3}, "presence": {"_count": 3}, "vicinity": {"_count": 9}, "course": {"_count": 4}, "glare": {"_count": 2}, "confined": {"_count": 1}, "silence": {"_count": 8}, "shadowy": {"_count": 2}, "chill": {"_count": 2}, "flames": {"_count": 4}, "square": {"_count": 5}, "nearest": {"_count": 1}, "Decree": {"_count": 1}, "Order": {"_count": 20}, "drawing": {"_count": 8}, "general": {"_count": 1}, "material": {"_count": 1}, "bucket": {"_count": 2}, "adverts": {"_count": 1}, "tapestry": {"_count": 1}, "International": {"_count": 1}, "dresser": {"_count": 1}, "process": {"_count": 3}, "conversation": {"_count": 1}, "label": {"_count": 1}, "base": {"_count": 1}, "telephone": {"_count": 1}, "lift": {"_count": 2}, "lifts": {"_count": 1}, "fountain": {"_count": 2}, "highest": {"_count": 1}, "monocle": {"_count": 1}, "employ": {"_count": 1}, "few": {"_count": 3}, "horrible": {"_count": 1}, "fifth": {"_count": 1}, "basement": {"_count": 4}, "writing": {"_count": 1}, "party": {"_count": 1}, "photograph": {"_count": 1}, "fingernails": {"_count": 1}, "ear": {"_count": 2}, "gloom": {"_count": 4}, "dim": {"_count": 1}, "pauses": {"_count": 1}, "fullness": {"_count": 1}, "waffle": {"_count": 1}, "West": {"_count": 4}, "leather": {"_count": 1}, "store": {"_count": 1}, "Oracle": {"_count": 1}, "real": {"_count": 2}, "work": {"_count": 1}, "pointed": {"_count": 1}, "chink": {"_count": 1}, "beak": {"_count": 1}, "Weird": {"_count": 1}, "shoulder": {"_count": 1}, "reference": {"_count": 1}, "heart": {"_count": 2}, "Wizarding": {"_count": 5}, "event": {"_count": 1}, "Ministers": {"_count": 1}, "floor": {"_count": 2}, "noise": {"_count": 1}, "subject": {"_count": 1}, "book": {"_count": 5}, "essence": {"_count": 1}, "universe": {"_count": 1}, "final": {"_count": 1}, "wind": {"_count": 1}, "dirty": {"_count": 1}, "group": {"_count": 1}, "window": {"_count": 5}, "courtyard": {"_count": 3}, "hearthrug": {"_count": 1}, "defense": {"_count": 1}, "All": {"_count": 1}, "inside": {"_count": 2}, "aftermath": {"_count": 2}, "inflaming": {"_count": 2}, "Room": {"_count": 17}, "fake": {"_count": 1}, "outcome": {"_count": 1}, "horribly": {"_count": 1}, "gap": {"_count": 2}, "mornin": {"_count": 1}, "valley": {"_count": 1}, "cave": {"_count": 2}, "muffling": {"_count": 1}, "D": {"_count": 4}, "loos": {"_count": 1}, "frame": {"_count": 1}, "deepest": {"_count": 1}, "gloomy": {"_count": 1}, "bustle": {"_count": 1}, "wreckage": {"_count": 3}, "space": {"_count": 1}, "runup": {"_count": 1}, "foots": {"_count": 1}, "rags": {"_count": 1}, "Christmas": {"_count": 1}, "bed": {"_count": 2}, "bin": {"_count": 2}, "glance": {"_count": 1}, "wintry": {"_count": 1}, "graveyard": {"_count": 5}, "photographs": {"_count": 1}, "heavily": {"_count": 1}, "forthcoming": {"_count": 1}, "shops": {"_count": 1}, "steamy": {"_count": 1}, "holidays": {"_count": 1}, "view": {"_count": 1}, "mouth": {"_count": 3}, "letteropening": {"_count": 1}, "department": {"_count": 1}, "hangings": {"_count": 1}, "toilet": {"_count": 2}, "groundfloor": {"_count": 1}, "pungent": {"_count": 1}, "elfs": {"_count": 1}, "meeting": {"_count": 1}, "dust": {"_count": 2}, "retelling": {"_count": 1}, "Heads": {"_count": 1}, "lower": {"_count": 1}, "swelling": {"_count": 1}, "enormous": {"_count": 1}, "dormitories": {"_count": 1}, "exam": {"_count": 2}, "dense": {"_count": 1}, "O": {"_count": 1}, "index": {"_count": 1}, "fires": {"_count": 1}, "cultivated": {"_count": 1}, "east": {"_count": 2}, "bathrooms": {"_count": 1}, "weak": {"_count": 1}, "slight": {"_count": 1}, "muffled": {"_count": 1}, "treetops": {"_count": 1}, "shelter": {"_count": 2}, "smoothly": {"_count": 1}, "exams": {"_count": 1}, "mornings": {"_count": 1}, "afternoons": {"_count": 1}, "countercharm": {"_count": 1}, "desktop": {"_count": 1}, "stubbornly": {"_count": 1}, "blank": {"_count": 1}, "circular": {"_count": 2}, "cathedralsized": {"_count": 1}, "late": {"_count": 4}, "Transfiguration": {"_count": 1}, "soft": {"_count": 1}, "tree": {"_count": 1}, "halflight": {"_count": 1}, "closest": {"_count": 1}, "beast": {"_count": 1}, "flat": {"_count": 1}, "Atrium": {"_count": 2}, "rush": {"_count": 1}, "shining": {"_count": 1}, "liquid": {"_count": 1}, "sparkling": {"_count": 1}, "jar": {"_count": 1}, "bowels": {"_count": 3}, "masked": {"_count": 1}, "bell": {"_count": 1}, "Brain": {"_count": 2}, "sunken": {"_count": 1}, "foul": {"_count": 1}, "coils": {"_count": 1}, "Death": {"_count": 2}, "terrible": {"_count": 1}, "plan": {"_count": 4}, "vague": {"_count": 1}, "here": {"_count": 1}, "the": {"_count": 1}, "harsh": {"_count": 2}, "Ministrys": {"_count": 1}, "bedclothes": {"_count": 1}, "mountains": {"_count": 2}, "sunshine": {"_count": 1}, "Mirror": {"_count": 2}, "stiff": {"_count": 1}, "approach": {"_count": 1}, "empty": {"_count": 2}, "wide": {"_count": 2}, "rule": {"_count": 1}, "er": {"_count": 1}, "newspapers": {"_count": 1}, "Prime": {"_count": 1}, "tall": {"_count": 1}, "undergrowth": {"_count": 1}, "rusty": {"_count": 1}, "others": {"_count": 1}, "blaze": {"_count": 1}, "orange": {"_count": 2}, "surroundings": {"_count": 1}, "open": {"_count": 3}, "interests": {"_count": 1}, "Canary": {"_count": 1}, "piano": {"_count": 1}, "washing": {"_count": 2}, "little": {"_count": 1}, "Galleons": {"_count": 1}, "Extendable": {"_count": 2}, "reflection": {"_count": 1}, "glass": {"_count": 2}, "ensuing": {"_count": 1}, "term": {"_count": 1}, "use": {"_count": 1}, "alternative": {"_count": 1}, "fumes": {"_count": 1}, "margins": {"_count": 2}, "seventhfloor": {"_count": 2}, "bleeding": {"_count": 1}, "cottage": {"_count": 1}, "cheers": {"_count": 1}, "lane": {"_count": 3}, "scarf": {"_count": 1}, "tussle": {"_count": 1}, "orphanage": {"_count": 3}, "asylum": {"_count": 1}, "presentday": {"_count": 1}, "upcoming": {"_count": 2}, "red": {"_count": 1}, "extreme": {"_count": 2}, "death": {"_count": 1}, "books": {"_count": 1}, "big": {"_count": 1}, "Princes": {"_count": 1}, "putrid": {"_count": 1}, "introduction": {"_count": 1}, "weather": {"_count": 1}, "drink": {"_count": 1}, "trials": {"_count": 1}, "Potions": {"_count": 1}, "news": {"_count": 1}, "situation": {"_count": 1}, "instructions": {"_count": 1}, "task": {"_count": 1}, "order": {"_count": 1}, "Half": {"_count": 1}, "evenin": {"_count": 1}, "quiet": {"_count": 1}, "comfortable": {"_count": 1}, "plural": {"_count": 1}, "ruin": {"_count": 1}, "shack": {"_count": 1}, "ladies": {"_count": 1}, "GryffindorRavenclaw": {"_count": 1}, "boxes": {"_count": 1}, "still": {"_count": 1}, "gathering": {"_count": 1}, "passing": {"_count": 1}, "completely": {"_count": 1}, "smooth": {"_count": 1}, "distant": {"_count": 2}, "greenish": {"_count": 2}, "Marks": {"_count": 1}, "Hogwarts": {"_count": 1}, "dancing": {"_count": 1}, "burning": {"_count": 1}, "clear": {"_count": 1}, "diamondpaned": {"_count": 1}, "bare": {"_count": 1}, "protection": {"_count": 1}, "many": {"_count": 1}, "explosive": {"_count": 1}, "hallway": {"_count": 1}, "boys": {"_count": 1}, "establishment": {"_count": 1}, "famous": {"_count": 1}, "hearts": {"_count": 1}, "backseat": {"_count": 1}, "now": {"_count": 1}, "full": {"_count": 2}, "kettle": {"_count": 1}, "microwave": {"_count": 1}, "sidecar": {"_count": 1}, "bikes": {"_count": 1}, "tiny": {"_count": 3}, "sitting": {"_count": 3}, "removal": {"_count": 1}, "sagging": {"_count": 1}, "icing": {"_count": 2}, "overstretched": {"_count": 1}, "will": {"_count": 1}, "thin": {"_count": 2}, "Snitchs": {"_count": 1}, "original": {"_count": 1}, "yellow": {"_count": 1}, "loud": {"_count": 1}, "drafty": {"_count": 1}, "headmasters": {"_count": 4}, "sixteen": {"_count": 2}, "smile": {"_count": 1}, "paintwork": {"_count": 1}, "cavern": {"_count": 1}, "ccave": {"_count": 1}, "idea": {"_count": 1}, "words": {"_count": 1}, "meaning": {"_count": 1}, "mass": {"_count": 2}, "numbering": {"_count": 1}, "navy": {"_count": 1}, "sudden": {"_count": 2}, "Improper": {"_count": 1}, "sicksplattered": {"_count": 1}, "door": {"_count": 1}, "bum": {"_count": 1}, "bog": {"_count": 1}, "courtroom": {"_count": 1}, "bottoms": {"_count": 1}, "ink": {"_count": 1}, "ruffled": {"_count": 1}, "cubicle": {"_count": 1}, "diffused": {"_count": 1}, "Horcrux": {"_count": 2}, "swinging": {"_count": 1}, "effort": {"_count": 2}, "bark": {"_count": 2}, "foundations": {"_count": 1}, "season": {"_count": 1}, "south": {"_count": 1}, "syllabary": {"_count": 1}, "person": {"_count": 1}, "offing": {"_count": 1}, "bush": {"_count": 1}, "candlelit": {"_count": 1}, "instant": {"_count": 1}, "soursmelling": {"_count": 1}, "rubble": {"_count": 1}, "crib": {"_count": 1}, "pitiful": {"_count": 1}, "story": {"_count": 3}, "whiteness": {"_count": 1}, "vastness": {"_count": 1}, "fine": {"_count": 1}, "frozen": {"_count": 1}, "diary": {"_count": 1}, "locket": {"_count": 1}, "lofty": {"_count": 1}, "brambles": {"_count": 1}, "web": {"_count": 1}, "breaks": {"_count": 1}, "beaded": {"_count": 1}, "exquisite": {"_count": 1}, "river": {"_count": 1}, "possession": {"_count": 1}, "wardrobe": {"_count": 1}, "Deathly": {"_count": 2}, "tale": {"_count": 1}, "male": {"_count": 2}, "bloke": {"_count": 1}, "Hallows": {"_count": 1}, "Snitch": {"_count": 2}, "golden": {"_count": 1}, "Propheti": {"_count": 1}, "werewolfs": {"_count": 1}, "Prophett": {"_count": 1}, "carpet": {"_count": 1}, "home": {"_count": 1}, "tiniest": {"_count": 2}, "nonmagic": {"_count": 1}, "grave": {"_count": 1}, "sunrise": {"_count": 1}, "goblins": {"_count": 1}, "Lestranges": {"_count": 1}, "pouch": {"_count": 5}, "predawn": {"_count": 1}, "clifftop": {"_count": 1}, "outlines": {"_count": 1}, "smallest": {"_count": 3}, "cupboardlike": {"_count": 1}, "making": {"_count": 1}, "hour": {"_count": 1}, "nondescript": {"_count": 1}, "sunset": {"_count": 1}, "surface": {"_count": 1}, "Gaunt": {"_count": 1}, "failing": {"_count": 1}, "road": {"_count": 1}, "greater": {"_count": 1}, "lightning": {"_count": 1}, "midnightblue": {"_count": 1}, "bookcases": {"_count": 1}, "ghostly": {"_count": 1}, "magnitude": {"_count": 1}, "Ravenclaw": {"_count": 1}, "grip": {"_count": 1}, "minutes": {"_count": 1}, "darkest": {"_count": 1}, "half": {"_count": 1}, "scene": {"_count": 1}, "postal": {"_count": 1}, "branches": {"_count": 1}, "thronelike": {"_count": 1}, "chase": {"_count": 1}, "Forest": {"_count": 1}, "secret": {"_count": 1}, "two": {"_count": 1}, "body": {"_count": 1}, "brilliantly": {"_count": 1}, "Cloak": {"_count": 1}, "abandoned": {"_count": 1}, "exposed": {"_count": 1}, "noman": {"_count": 1}, "silkiness": {"_count": 1}, "leg": {"_count": 1}, "marble": {"_count": 1}, "largest": {"_count": 1}, "wing": {"_count": 1}, "carriages": {"_count": 1}, "boats": {"_count": 1}, "autumn": {"_count": 1}}, "sight": {"_count": 11, "": {"_count": 4}, "Snape": {"_count": 1}, "Harry": {"_count": 1}, "not": {"_count": 1}, "while": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "his": {"_count": 1060, "mirror": {"_count": 1}, "office": {"_count": 10}, "armchair": {"_count": 3}, "mind": {"_count": 15}, "cloak": {"_count": 2}, "inside": {"_count": 1}, "pocket": {"_count": 23}, "arms": {"_count": 15}, "class": {"_count": 2}, "mothers": {"_count": 4}, "life": {"_count": 42}, "cupboard": {"_count": 9}, "seat": {"_count": 20}, "dark": {"_count": 3}, "baggy": {"_count": 1}, "brandnew": {"_count": 1}, "new": {"_count": 2}, "whole": {"_count": 3}, "hand": {"_count": 61}, "sports": {"_count": 1}, "hands": {"_count": 32}, "eyes": {"_count": 14}, "trousers": {"_count": 1}, "excitement": {"_count": 3}, "fingers": {"_count": 13}, "wizards": {"_count": 1}, "trunk": {"_count": 11}, "pale": {"_count": 1}, "ear": {"_count": 25}, "absurd": {"_count": 1}, "long": {"_count": 1}, "very": {"_count": 2}, "ears": {"_count": 29}, "fist": {"_count": 4}, "annoying": {"_count": 1}, "element": {"_count": 1}, "first": {"_count": 5}, "family": {"_count": 2}, "slice": {"_count": 1}, "sleep": {"_count": 10}, "paisley": {"_count": 1}, "head": {"_count": 29}, "usual": {"_count": 7}, "moleskin": {"_count": 3}, "hut": {"_count": 1}, "crate": {"_count": 1}, "step": {"_count": 2}, "face": {"_count": 22}, "tracks": {"_count": 13}, "voice": {"_count": 40}, "gloomy": {"_count": 1}, "forehead": {"_count": 6}, "temples": {"_count": 1}, "fourposter": {"_count": 2}, "cabin": {"_count": 3}, "tiny": {"_count": 1}, "room": {"_count": 6}, "sore": {"_count": 1}, "oily": {"_count": 1}, "beak": {"_count": 1}, "chair": {"_count": 26}, "front": {"_count": 2}, "anger": {"_count": 4}, "Slytherin": {"_count": 1}, "third": {"_count": 4}, "endless": {"_count": 1}, "classes": {"_count": 2}, "dry": {"_count": 2}, "House": {"_count": 2}, "throat": {"_count": 20}, "direction": {"_count": 8}, "arm": {"_count": 1}, "numb": {"_count": 1}, "good": {"_count": 1}, "limp": {"_count": 1}, "brain": {"_count": 4}, "agitation": {"_count": 1}, "diary": {"_count": 1}, "dormitory": {"_count": 4}, "hurry": {"_count": 1}, "little": {"_count": 1}, "blue": {"_count": 2}, "basket": {"_count": 3}, "anxiety": {"_count": 2}, "limbs": {"_count": 1}, "hungry": {"_count": 1}, "bloodsoaked": {"_count": 1}, "handpicked": {"_count": 1}, "orblike": {"_count": 1}, "bedroom": {"_count": 9}, "seventh": {"_count": 2}, "soup": {"_count": 2}, "other": {"_count": 2}, "great": {"_count": 1}, "temple": {"_count": 5}, "stomach": {"_count": 24}, "fat": {"_count": 1}, "jeans": {"_count": 4}, "Defense": {"_count": 1}, "slow": {"_count": 2}, "favorite": {"_count": 1}, "chest": {"_count": 26}, "corner": {"_count": 1}, "napkin": {"_count": 1}, "shirtsleeves": {"_count": 1}, "most": {"_count": 1}, "left": {"_count": 7}, "own": {"_count": 15}, "lacy": {"_count": 1}, "grandmothers": {"_count": 1}, "eye": {"_count": 3}, "pajama": {"_count": 1}, "palm": {"_count": 2}, "curtains": {"_count": 1}, "right": {"_count": 10}, "bag": {"_count": 7}, "side": {"_count": 4}, "pockets": {"_count": 11}, "handkerchief": {"_count": 1}, "mouth": {"_count": 3}, "homework": {"_count": 1}, "pinstriped": {"_count": 1}, "belt": {"_count": 2}, "doorway": {"_count": 1}, "vacated": {"_count": 1}, "old": {"_count": 4}, "knee": {"_count": 2}, "kitchen": {"_count": 1}, "bed": {"_count": 3}, "scar": {"_count": 12}, "cupped": {"_count": 1}, "steady": {"_count": 2}, "piggy": {"_count": 2}, "living": {"_count": 1}, "uncles": {"_count": 3}, "suit": {"_count": 1}, "hair": {"_count": 3}, "innocence": {"_count": 1}, "flowered": {"_count": 1}, "short": {"_count": 1}, "white": {"_count": 1}, "moments": {"_count": 1}, "gaze": {"_count": 1}, "shirt": {"_count": 1}, "Chudley": {"_count": 1}, "houseelf": {"_count": 1}, "Gringotts": {"_count": 1}, "yard": {"_count": 1}, "time": {"_count": 2}, "minds": {"_count": 4}, "normal": {"_count": 1}, "legs": {"_count": 2}, "knees": {"_count": 2}, "bacon": {"_count": 1}, "neat": {"_count": 1}, "category": {"_count": 1}, "second": {"_count": 3}, "silkiest": {"_count": 1}, "buttonhole": {"_count": 1}, "place": {"_count": 1}, "maroon": {"_count": 2}, "toosmall": {"_count": 1}, "lesson": {"_count": 1}, "home": {"_count": 1}, "horrible": {"_count": 1}, "absence": {"_count": 2}, "presence": {"_count": 2}, "care": {"_count": 1}, "wet": {"_count": 1}, "youth": {"_count": 3}, "nightshirt": {"_count": 1}, "Invisibility": {"_count": 2}, "return": {"_count": 1}, "chintz": {"_count": 1}, "body": {"_count": 5}, "big": {"_count": 1}, "appearance": {"_count": 1}, "late": {"_count": 1}, "tone": {"_count": 2}, "power": {"_count": 2}, "desperation": {"_count": 1}, "Monster": {"_count": 1}, "haste": {"_count": 4}, "relations": {"_count": 1}, "leg": {"_count": 2}, "comfortable": {"_count": 1}, "nightmares": {"_count": 1}, "waking": {"_count": 1}, "physique": {"_count": 1}, "dreams": {"_count": 3}, "veins": {"_count": 2}, "search": {"_count": 1}, "temper": {"_count": 1}, "toe": {"_count": 1}, "deep": {"_count": 3}, "guts": {"_count": 1}, "memory": {"_count": 3}, "cage": {"_count": 1}, "wake": {"_count": 7}, "highbacked": {"_count": 1}, "pajamas": {"_count": 1}, "flagon": {"_count": 1}, "dream": {"_count": 8}, "fourposters": {"_count": 1}, "sneering": {"_count": 1}, "Astronomy": {"_count": 1}, "house": {"_count": 2}, "letter": {"_count": 1}, "detention": {"_count": 1}, "various": {"_count": 1}, "cold": {"_count": 1}, "low": {"_count": 1}, "and": {"_count": 2}, "relentless": {"_count": 1}, "mug": {"_count": 1}, "school": {"_count": 3}, "terror": {"_count": 1}, "portrait": {"_count": 2}, "day": {"_count": 2}, "turn": {"_count": 1}, "plans": {"_count": 3}, "lap": {"_count": 3}, "den": {"_count": 1}, "private": {"_count": 1}, "footsteps": {"_count": 1}, "calm": {"_count": 1}, "squeaky": {"_count": 2}, "examination": {"_count": 1}, "schoolbag": {"_count": 1}, "quavery": {"_count": 1}, "crystal": {"_count": 1}, "mask": {"_count": 1}, "outstretched": {"_count": 1}, "trembling": {"_count": 1}, "agony": {"_count": 1}, "longfingered": {"_count": 2}, "story": {"_count": 2}, "nest": {"_count": 1}, "back": {"_count": 1}, "speech": {"_count": 1}, "voters": {"_count": 1}, "mane": {"_count": 1}, "way": {"_count": 1}, "backpack": {"_count": 1}, "traveling": {"_count": 1}, "compartment": {"_count": 1}, "enormous": {"_count": 1}, "bottle": {"_count": 1}, "eyebrows": {"_count": 1}, "confidence": {"_count": 1}, "Keeping": {"_count": 1}, "bulging": {"_count": 1}, "bowler": {"_count": 1}, "secondhand": {"_count": 1}, "breast": {"_count": 1}, "study": {"_count": 1}, "opinion": {"_count": 1}, "whispered": {"_count": 1}, "attempts": {"_count": 2}, "efforts": {"_count": 1}, "uninjured": {"_count": 1}, "murderous": {"_count": 1}, "teeth": {"_count": 1}, "invisible": {"_count": 1}, "imagination": {"_count": 1}, "red": {"_count": 1}, "quiet": {"_count": 1}, "finger": {"_count": 1}, "magical": {"_count": 1}, "leather": {"_count": 1}, "ribs": {"_count": 1}, "note": {"_count": 1}, "will": {"_count": 4}, "nerveless": {"_count": 1}, "eagerness": {"_count": 1}, "bullfrogs": {"_count": 1}, "orders": {"_count": 1}, "dirty": {"_count": 1}, "clenched": {"_count": 1}, "hiding": {"_count": 1}, "struggles": {"_count": 1}, "parents": {"_count": 1}, "jacket": {"_count": 2}, "heart": {"_count": 5}, "glasses": {"_count": 1}, "small": {"_count": 1}, "stead": {"_count": 1}, "underwear": {"_count": 1}, "lungs": {"_count": 1}, "shaking": {"_count": 1}, "grip": {"_count": 1}, "nearly": {"_count": 1}, "belief": {"_count": 1}, "feverish": {"_count": 1}, "belly": {"_count": 1}, "purple": {"_count": 1}, "he": {"_count": 1}, "wide": {"_count": 1}, "high": {"_count": 4}, "boiling": {"_count": 1}, "panic": {"_count": 1}, "cheek": {"_count": 1}, "armor": {"_count": 1}, "burning": {"_count": 1}, "neck": {"_count": 1}, "thin": {"_count": 1}, "destiny": {"_count": 1}, "resentment": {"_count": 1}, "humiliation": {"_count": 1}, "grasp": {"_count": 1}, "dread": {"_count": 1}, "ignorance": {"_count": 1}, "greed": {"_count": 1}, "cell": {"_count": 1}, "soft": {"_count": 1}, "free": {"_count": 1}, "befuddled": {"_count": 1}}, "cloaks": {"_count": 5, "": {"_count": 2}, "until": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 1}}, "funny": {"_count": 1, "clothes": {"_count": 1}}, "broad": {"_count": 3, "daylight": {"_count": 3}}, "a": {"_count": 1308, "very": {"_count": 43}, "bag": {"_count": 1}, "squeaky": {"_count": 3}, "street": {"_count": 1}, "letter": {"_count": 4}, "few": {"_count": 18}, "dark": {"_count": 7}, "wig": {"_count": 1}, "way": {"_count": 13}, "dream": {"_count": 2}, "long": {"_count": 18}, "violet": {"_count": 1}, "quivering": {"_count": 1}, "sleeping": {"_count": 2}, "nail": {"_count": 1}, "storm": {"_count": 2}, "smile": {"_count": 2}, "family": {"_count": 1}, "car": {"_count": 6}, "low": {"_count": 56}, "corner": {"_count": 28}, "top": {"_count": 2}, "shop": {"_count": 4}, "vast": {"_count": 1}, "narrow": {"_count": 1}, "hut": {"_count": 1}, "disgruntled": {"_count": 2}, "zoo": {"_count": 2}, "sniffy": {"_count": 1}, "sec": {"_count": 1}, "line": {"_count": 4}, "flap": {"_count": 1}, "large": {"_count": 9}, "row": {"_count": 15}, "pink": {"_count": 4}, "small": {"_count": 19}, "flash": {"_count": 3}, "heap": {"_count": 5}, "rush": {"_count": 10}, "steep": {"_count": 1}, "hidden": {"_count": 1}, "sanity": {"_count": 1}, "room": {"_count": 7}, "corridor": {"_count": 2}, "school": {"_count": 1}, "dead": {"_count": 1}, "jam": {"_count": 2}, "mist": {"_count": 2}, "hushed": {"_count": 20}, "cloud": {"_count": 2}, "library": {"_count": 1}, "weak": {"_count": 1}, "towering": {"_count": 5}, "shadowy": {"_count": 5}, "shifty": {"_count": 1}, "warm": {"_count": 2}, "wooden": {"_count": 1}, "bloody": {"_count": 1}, "terrible": {"_count": 1}, "hoarse": {"_count": 5}, "muffled": {"_count": 6}, "tartan": {"_count": 1}, "week": {"_count": 3}, "clearing": {"_count": 2}, "whisper": {"_count": 18}, "terrified": {"_count": 5}, "hurry": {"_count": 11}, "minute": {"_count": 16}, "crisis": {"_count": 1}, "century": {"_count": 2}, "bed": {"_count": 4}, "bird": {"_count": 1}, "cage": {"_count": 3}, "station": {"_count": 1}, "cupboard": {"_count": 5}, "fierce": {"_count": 1}, "highpitched": {"_count": 8}, "Muggle": {"_count": 6}, "deadly": {"_count": 3}, "wizard": {"_count": 2}, "peony": {"_count": 1}, "straggling": {"_count": 1}, "kitchen": {"_count": 1}, "patch": {"_count": 2}, "voice": {"_count": 24}, "tiny": {"_count": 1}, "bad": {"_count": 5}, "dingy": {"_count": 1}, "great": {"_count": 8}, "shaky": {"_count": 2}, "tight": {"_count": 6}, "cold": {"_count": 1}, "hopeless": {"_count": 1}, "timid": {"_count": 1}, "telephone": {"_count": 1}, "menacing": {"_count": 5}, "hundred": {"_count": 1}, "piping": {"_count": 1}, "far": {"_count": 6}, "good": {"_count": 9}, "transport": {"_count": 1}, "falsely": {"_count": 5}, "chair": {"_count": 9}, "flat": {"_count": 4}, "deep": {"_count": 8}, "clear": {"_count": 3}, "manner": {"_count": 3}, "quiet": {"_count": 4}, "month": {"_count": 4}, "book": {"_count": 5}, "second": {"_count": 6}, "kind": {"_count": 10}, "triumphant": {"_count": 3}, "matteroffact": {"_count": 1}, "headlock": {"_count": 1}, "matchbox": {"_count": 1}, "quavering": {"_count": 2}, "wild": {"_count": 1}, "satisfied": {"_count": 4}, "broom": {"_count": 2}, "slightly": {"_count": 9}, "threatening": {"_count": 2}, "freak": {"_count": 1}, "high": {"_count": 10}, "feeble": {"_count": 4}, "hesitant": {"_count": 1}, "huddle": {"_count": 6}, "surprisingly": {"_count": 2}, "somewhat": {"_count": 1}, "pack": {"_count": 2}, "selfsatisfied": {"_count": 2}, "cell": {"_count": 3}, "tangle": {"_count": 2}, "bathroom": {"_count": 2}, "strangely": {"_count": 2}, "hand": {"_count": 1}, "bit": {"_count": 13}, "diary": {"_count": 1}, "duel": {"_count": 2}, "whirl": {"_count": 4}, "stunned": {"_count": 2}, "firm": {"_count": 1}, "defeated": {"_count": 3}, "hailstorm": {"_count": 1}, "level": {"_count": 2}, "crumpled": {"_count": 2}, "haze": {"_count": 3}, "house": {"_count": 3}, "worse": {"_count": 2}, "vault": {"_count": 2}, "purple": {"_count": 4}, "nightcap": {"_count": 1}, "traveling": {"_count": 2}, "dramatic": {"_count": 1}, "right": {"_count": 4}, "worried": {"_count": 5}, "wheezy": {"_count": 1}, "pyramid": {"_count": 1}, "dignified": {"_count": 5}, "longsuffering": {"_count": 1}, "tense": {"_count": 3}, "lower": {"_count": 3}, "higher": {"_count": 1}, "Quidditch": {"_count": 1}, "suit": {"_count": 1}, "gauzy": {"_count": 1}, "winged": {"_count": 1}, "loud": {"_count": 6}, "superior": {"_count": 1}, "lump": {"_count": 1}, "sling": {"_count": 2}, "tone": {"_count": 8}, "mean": {"_count": 1}, "grandfather": {"_count": 1}, "circle": {"_count": 5}, "mousetrap": {"_count": 1}, "particularly": {"_count": 2}, "wouldbe": {"_count": 3}, "suddenly": {"_count": 1}, "light": {"_count": 3}, "map": {"_count": 1}, "quaking": {"_count": 1}, "hollow": {"_count": 9}, "cellar": {"_count": 1}, "box": {"_count": 3}, "layer": {"_count": 1}, "limegreen": {"_count": 1}, "fury": {"_count": 1}, "sort": {"_count": 2}, "fit": {"_count": 3}, "panicky": {"_count": 1}, "game": {"_count": 2}, "cheerful": {"_count": 1}, "lofty": {"_count": 1}, "strange": {"_count": 3}, "trembling": {"_count": 3}, "piece": {"_count": 1}, "grip": {"_count": 1}, "righ": {"_count": 1}, "malevolent": {"_count": 1}, "moment": {"_count": 13}, "nasty": {"_count": 1}, "manyarmed": {"_count": 1}, "crystal": {"_count": 1}, "panic": {"_count": 2}, "glazed": {"_count": 1}, "thick": {"_count": 7}, "grin": {"_count": 2}, "petrified": {"_count": 1}, "shower": {"_count": 5}, "puzzled": {"_count": 1}, "split": {"_count": 1}, "short": {"_count": 2}, "sixlegged": {"_count": 1}, "black": {"_count": 5}, "rundown": {"_count": 1}, "night": {"_count": 1}, "sweatshirt": {"_count": 1}, "jiffy": {"_count": 2}, "ponytail": {"_count": 2}, "dangerous": {"_count": 2}, "howl": {"_count": 2}, "tin": {"_count": 1}, "kilt": {"_count": 1}, "state": {"_count": 11}, "fake": {"_count": 1}, "fatherly": {"_count": 2}, "bemused": {"_count": 2}, "most": {"_count": 2}, "wisp": {"_count": 3}, "claim": {"_count": 1}, "compartment": {"_count": 1}, "bellcovered": {"_count": 1}, "furry": {"_count": 1}, "clawed": {"_count": 1}, "dim": {"_count": 1}, "position": {"_count": 3}, "tussle": {"_count": 1}, "disappointed": {"_count": 2}, "situation": {"_count": 2}, "much": {"_count": 2}, "fight": {"_count": 1}, "series": {"_count": 1}, "pacifying": {"_count": 1}, "reassuring": {"_count": 1}, "shining": {"_count": 1}, "makeshift": {"_count": 1}, "patchwork": {"_count": 1}, "strong": {"_count": 1}, "smaller": {"_count": 1}, "Defense": {"_count": 1}, "napkin": {"_count": 1}, "nearby": {"_count": 3}, "dungeon": {"_count": 1}, "fairly": {"_count": 1}, "seat": {"_count": 2}, "pub": {"_count": 4}, "silent": {"_count": 1}, "blanket": {"_count": 2}, "distant": {"_count": 3}, "growl": {"_count": 1}, "more": {"_count": 3}, "rather": {"_count": 8}, "disgusted": {"_count": 1}, "mystical": {"_count": 1}, "gloomy": {"_count": 1}, "broad": {"_count": 1}, "disapproving": {"_count": 1}, "whole": {"_count": 1}, "beautifully": {"_count": 1}, "word": {"_count": 5}, "rosebush": {"_count": 1}, "beetle": {"_count": 1}, "hard": {"_count": 2}, "rage": {"_count": 1}, "morose": {"_count": 1}, "soft": {"_count": 1}, "nightmare": {"_count": 1}, "harsh": {"_count": 1}, "straitjacket": {"_count": 1}, "life": {"_count": 1}, "softer": {"_count": 1}, "cool": {"_count": 1}, "heated": {"_count": 1}, "while": {"_count": 1}, "lake": {"_count": 1}, "package": {"_count": 1}, "cabinet": {"_count": 1}, "different": {"_count": 3}, "demanding": {"_count": 1}, "brown": {"_count": 1}, "spot": {"_count": 1}, "faraway": {"_count": 1}, "forest": {"_count": 3}, "golden": {"_count": 2}, "lock": {"_count": 1}, "friendly": {"_count": 1}, "strangled": {"_count": 3}, "spare": {"_count": 1}, "nonexistent": {"_count": 1}, "flower": {"_count": 1}, "field": {"_count": 1}, "horrible": {"_count": 2}, "croaky": {"_count": 2}, "resigned": {"_count": 2}, "tattered": {"_count": 1}, "Muggleinhabited": {"_count": 2}, "scarlet": {"_count": 1}, "shaking": {"_count": 3}, "strained": {"_count": 3}, "hug": {"_count": 1}, "lull": {"_count": 1}, "cloth": {"_count": 1}, "dusty": {"_count": 2}, "thoroughly": {"_count": 1}, "tide": {"_count": 1}, "bored": {"_count": 8}, "cluttered": {"_count": 1}, "disconsolate": {"_count": 1}, "sepulchral": {"_count": 1}, "ringing": {"_count": 4}, "booming": {"_count": 2}, "testy": {"_count": 2}, "fluttery": {"_count": 1}, "little": {"_count": 2}, "Death": {"_count": 1}, "trunk": {"_count": 1}, "frenzy": {"_count": 1}, "better": {"_count": 3}, "puff": {"_count": 1}, "locked": {"_count": 2}, "singsong": {"_count": 1}, "pot": {"_count": 2}, "look": {"_count": 1}, "halfhearted": {"_count": 1}, "mirror": {"_count": 1}, "familiar": {"_count": 1}, "measured": {"_count": 1}, "perfectly": {"_count": 1}, "context": {"_count": 1}, "secure": {"_count": 1}, "Hand": {"_count": 1}, "horribly": {"_count": 1}, "mock": {"_count": 2}, "warning": {"_count": 2}, "handkerchief": {"_count": 1}, "knot": {"_count": 1}, "mood": {"_count": 1}, "sugary": {"_count": 1}, "revolted": {"_count": 1}, "heartened": {"_count": 1}, "couple": {"_count": 2}, "direction": {"_count": 1}, "carrying": {"_count": 1}, "brave": {"_count": 1}, "deeply": {"_count": 2}, "coldly": {"_count": 1}, "sheltered": {"_count": 1}, "lot": {"_count": 1}, "temper": {"_count": 1}, "noisy": {"_count": 1}, "place": {"_count": 5}, "satisfyingly": {"_count": 1}, "real": {"_count": 2}, "pocket": {"_count": 1}, "bin": {"_count": 2}, "green": {"_count": 1}, "constricted": {"_count": 3}, "dull": {"_count": 1}, "sudden": {"_count": 2}, "sneering": {"_count": 1}, "class": {"_count": 1}, "businesslike": {"_count": 3}, "sharp": {"_count": 1}, "highbacked": {"_count": 1}, "new": {"_count": 1}, "reedy": {"_count": 1}, "swish": {"_count": 1}, "fraction": {"_count": 1}, "swirl": {"_count": 2}, "brass": {"_count": 1}, "public": {"_count": 1}, "private": {"_count": 1}, "raised": {"_count": 1}, "sweat": {"_count": 1}, "barrel": {"_count": 1}, "ward": {"_count": 1}, "closed": {"_count": 1}, "violent": {"_count": 1}, "pair": {"_count": 1}, "pool": {"_count": 5}, "workplace": {"_count": 1}, "statement": {"_count": 1}, "hospital": {"_count": 1}, "pointed": {"_count": 1}, "rough": {"_count": 1}, "she": {"_count": 1}, "well": {"_count": 1}, "surly": {"_count": 1}, "photograph": {"_count": 1}, "progressively": {"_count": 1}, "snarl": {"_count": 1}, "confused": {"_count": 1}, "hurt": {"_count": 1}, "niche": {"_count": 3}, "vicelike": {"_count": 1}, "painting": {"_count": 1}, "dimly": {"_count": 2}, "twitchy": {"_count": 1}, "leaflet": {"_count": 1}, "vehement": {"_count": 1}, "note": {"_count": 1}, "really": {"_count": 1}, "pained": {"_count": 1}, "substance": {"_count": 1}, "mo": {"_count": 1}, "gentle": {"_count": 1}, "subdued": {"_count": 1}, "scandalized": {"_count": 1}, "convincingly": {"_count": 1}, "stranglehold": {"_count": 1}, "flowerbed": {"_count": 1}, "cracked": {"_count": 2}, "steely": {"_count": 1}, "horrorstruck": {"_count": 1}, "sea": {"_count": 1}, "politely": {"_count": 1}, "cascade": {"_count": 1}, "graceful": {"_count": 1}, "whirling": {"_count": 1}, "thunderous": {"_count": 1}, "whirlwind": {"_count": 1}, "body": {"_count": 1}, "trice": {"_count": 2}, "cave": {"_count": 4}, "voluminous": {"_count": 1}, "downstairs": {"_count": 1}, "bright": {"_count": 2}, "pitiable": {"_count": 1}, "puddle": {"_count": 1}, "tightly": {"_count": 1}, "matter": {"_count": 1}, "years": {"_count": 2}, "self": {"_count": 1}, "farewell": {"_count": 1}, "country": {"_count": 3}, "pleasant": {"_count": 1}, "throaty": {"_count": 1}, "cross": {"_count": 1}, "scream": {"_count": 2}, "neat": {"_count": 3}, "shack": {"_count": 1}, "repressive": {"_count": 1}, "stage": {"_count": 1}, "darkly": {"_count": 1}, "buzz": {"_count": 1}, "filthy": {"_count": 1}, "shocked": {"_count": 1}, "determinedly": {"_count": 1}, "highly": {"_count": 1}, "furious": {"_count": 1}, "case": {"_count": 1}, "bustling": {"_count": 1}, "building": {"_count": 1}, "colorless": {"_count": 1}, "completely": {"_count": 1}, "close": {"_count": 2}, "brittle": {"_count": 1}, "choked": {"_count": 2}, "paperchain": {"_count": 1}, "gnome": {"_count": 1}, "comfortable": {"_count": 1}, "remarkably": {"_count": 1}, "weary": {"_count": 1}, "sitting": {"_count": 1}, "margin": {"_count": 2}, "dormitory": {"_count": 1}, "variety": {"_count": 1}, "cubicle": {"_count": 1}, "fortnight": {"_count": 1}, "sunny": {"_count": 1}, "slow": {"_count": 1}, "wide": {"_count": 2}, "boys": {"_count": 1}, "routine": {"_count": 1}, "cavern": {"_count": 1}, "portrait": {"_count": 1}, "group": {"_count": 1}, "jacket": {"_count": 1}, "year": {"_count": 1}, "fawn": {"_count": 1}, "shrill": {"_count": 1}, "mauve": {"_count": 1}, "just": {"_count": 1}, "bumper": {"_count": 1}, "tank": {"_count": 1}, "general": {"_count": 1}, "pressured": {"_count": 1}, "mobile": {"_count": 1}, "season": {"_count": 1}, "white": {"_count": 1}, "neighboring": {"_count": 1}, "dreamy": {"_count": 1}, "frightened": {"_count": 1}, "Transfiguration": {"_count": 1}, "rallying": {"_count": 1}, "gesture": {"_count": 1}, "cafe": {"_count": 1}, "snowywhite": {"_count": 1}, "quavery": {"_count": 1}, "crowded": {"_count": 1}, "lift": {"_count": 1}, "pile": {"_count": 1}, "louder": {"_count": 1}, "lumpy": {"_count": 1}, "billycan": {"_count": 1}, "troubled": {"_count": 1}, "tent": {"_count": 1}, "snowy": {"_count": 1}, "cracker": {"_count": 1}, "handknitted": {"_count": 1}, "blaze": {"_count": 1}, "jar": {"_count": 1}, "bowl": {"_count": 1}, "tuft": {"_count": 1}, "perfect": {"_count": 1}, "triangle": {"_count": 1}, "minutes": {"_count": 1}, "clanging": {"_count": 1}, "skull": {"_count": 1}, "passable": {"_count": 1}, "borrowed": {"_count": 1}, "roughly": {"_count": 1}, "tremulous": {"_count": 1}, "tomb": {"_count": 1}, "toast": {"_count": 1}, "magnificent": {"_count": 1}, "dreadful": {"_count": 1}, "threeway": {"_count": 1}, "rising": {"_count": 1}, "wildly": {"_count": 1}, "clipped": {"_count": 1}, "nearly": {"_count": 1}, "boy": {"_count": 1}, "firemans": {"_count": 1}, "million": {"_count": 1}, "chamber": {"_count": 1}}, "worrying": {"_count": 2, "Mrs": {"_count": 1}, "about": {"_count": 1}}, "time": {"_count": 70, "to": {"_count": 35}, "": {"_count": 13}, "Harry": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "one": {"_count": 1}, "Hermione": {"_count": 1}, "while": {"_count": 1}, "for": {"_count": 5}, "a": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "merely": {"_count": 1}, "Katie": {"_count": 1}, "they": {"_count": 1}, "reappearing": {"_count": 1}, "Fred": {"_count": 1}, "with": {"_count": 1}, "Luna": {"_count": 1}, "He": {"_count": 1}}, "daylight": {"_count": 2, "there": {"_count": 1}, "was": {"_count": 1}}, "every": {"_count": 46, "direction": {"_count": 20}, "flavor": {"_count": 1}, "exam": {"_count": 1}, "glorious": {"_count": 1}, "syllable": {"_count": 2}, "breed": {"_count": 1}, "letter": {"_count": 1}, "shadowy": {"_count": 1}, "line": {"_count": 2}, "respect": {"_count": 2}, "magazine": {"_count": 1}, "word": {"_count": 2}, "test": {"_count": 2}, "tiny": {"_count": 1}, "detail": {"_count": 1}, "corner": {"_count": 1}, "sagging": {"_count": 1}, "D": {"_count": 1}, "Potions": {"_count": 1}, "examination": {"_count": 1}, "bathroom": {"_count": 1}, "limb": {"_count": 1}}, "to": {"_count": 27, "tell": {"_count": 1}, "vacuum": {"_count": 1}, "the": {"_count": 1}, "nibble": {"_count": 1}, "bed": {"_count": 1}, "make": {"_count": 1}, "tidy": {"_count": 1}, "congratulate": {"_count": 1}, "his": {"_count": 2}, "me": {"_count": 1}, "Professor": {"_count": 1}, "stop": {"_count": 1}, "land": {"_count": 1}, "breakfast": {"_count": 1}, "a": {"_count": 1}, "Azkaban": {"_count": 1}, "offer": {"_count": 1}, "tiny": {"_count": 1}, "visit": {"_count": 2}, "blackmail": {"_count": 1}, "try": {"_count": 1}, "have": {"_count": 2}, "see": {"_count": 1}, "whatever": {"_count": 1}}, "town": {"_count": 1, "today": {"_count": 1}}, "Kent": {"_count": 1, "Ill": {"_count": 1}}, "Muggle": {"_count": 4, "clothes": {"_count": 1}, "shops": {"_count": 1}, "medicine": {"_count": 1}, "Studies": {"_count": 1}}, "Godrics": {"_count": 17, "Hollow": {"_count": 17}}, "our": {"_count": 45, "world": {"_count": 3}, "family": {"_count": 2}, "first": {"_count": 5}, "lives": {"_count": 2}, "forest": {"_count": 2}, "house": {"_count": 1}, "dormitory": {"_count": 3}, "tower": {"_count": 1}, "exams": {"_count": 1}, "fifth": {"_count": 1}, "department": {"_count": 2}, "beds": {"_count": 2}, "Defense": {"_count": 1}, "O": {"_count": 2}, "third": {"_count": 1}, "place": {"_count": 1}, "second": {"_count": 1}, "classroom": {"_count": 1}, "year": {"_count": 1}, "compartment": {"_count": 1}, "yeah": {"_count": 1}, "Transfiguration": {"_count": 1}, "meeting": {"_count": 1}, "theory": {"_count": 1}, "way": {"_count": 1}, "familys": {"_count": 1}, "search": {"_count": 1}, "area": {"_count": 1}, "care": {"_count": 1}, "D": {"_count": 1}, "cave": {"_count": 1}}, "front": {"_count": 416, "of": {"_count": 398}, "": {"_count": 4}, "were": {"_count": 2}, "spotted": {"_count": 1}, "o": {"_count": 3}, "he": {"_count": 1}, "his": {"_count": 1}, "was": {"_count": 1}, "But": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 2}, "Ill": {"_count": 1}}, "handy": {"_count": 3, "": {"_count": 2}, "one": {"_count": 1}}, "it": {"_count": 73, "": {"_count": 26}, "alone": {"_count": 1}, "and": {"_count": 6}, "said": {"_count": 3}, "were": {"_count": 2}, "but": {"_count": 2}, "too": {"_count": 1}, "white": {"_count": 1}, "properly": {"_count": 1}, "Hermione": {"_count": 1}, "trying": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 4}, "revolving": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 1}, "her": {"_count": 2}, "here": {"_count": 1}, "that": {"_count": 1}, "eggs": {"_count": 1}, "when": {"_count": 1}, "either": {"_count": 1}, "out": {"_count": 1}, "except": {"_count": 1}, "while": {"_count": 1}, "just": {"_count": 1}, "could": {"_count": 1}, "right": {"_count": 1}, "because": {"_count": 1}, "is": {"_count": 1}, "like": {"_count": 1}, "isnt": {"_count": 1}, "seemed": {"_count": 1}, "together": {"_count": 1}}, "reply": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "secret": {"_count": 7, "all": {"_count": 2}, "that": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "then": {"_count": 1}}, "hushed": {"_count": 3, "voices": {"_count": 1}, "tones": {"_count": 1}, "and": {"_count": 1}}, "case": {"_count": 78, "Dudley": {"_count": 1}, "he": {"_count": 12}, "YouKnowWhos": {"_count": 1}, "Malfoy": {"_count": 2}, "theyre": {"_count": 3}, "of": {"_count": 3}, "": {"_count": 8}, "they": {"_count": 5}, "you": {"_count": 13}, "youre": {"_count": 1}, "there": {"_count": 4}, "she": {"_count": 1}, "the": {"_count": 5}, "any": {"_count": 2}, "your": {"_count": 1}, "this": {"_count": 1}, "Professor": {"_count": 1}, "it": {"_count": 3}, "our": {"_count": 1}, "and": {"_count": 1}, "its": {"_count": 1}, "were": {"_count": 1}, "youve": {"_count": 3}, "we": {"_count": 2}, "their": {"_count": 1}, "I": {"_count": 1}}, "Harrys": {"_count": 92, "direction": {"_count": 7}, "mind": {"_count": 5}, "hand": {"_count": 4}, "ear": {"_count": 20}, "head": {"_count": 7}, "own": {"_count": 1}, "eyes": {"_count": 1}, "pocket": {"_count": 1}, "body": {"_count": 2}, "case": {"_count": 1}, "year": {"_count": 1}, "opinion": {"_count": 10}, "ears": {"_count": 3}, "chest": {"_count": 5}, "dormitory": {"_count": 1}, "memory": {"_count": 5}, "wand": {"_count": 1}, "bag": {"_count": 1}, "face": {"_count": 2}, "right": {"_count": 1}, "bedroom": {"_count": 1}, "desire": {"_count": 1}, "lap": {"_count": 1}, "vision": {"_count": 1}, "stomach": {"_count": 2}, "lungs": {"_count": 1}, "suspicions": {"_count": 1}, "voice": {"_count": 1}, "throat": {"_count": 1}, "T": {"_count": 1}, "Tshirt": {"_count": 1}, "nostrils": {"_count": 1}}, "horror": {"_count": 15, "but": {"_count": 1}, "": {"_count": 10}, "as": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 2}}, "Majorca": {"_count": 3, "snapped": {"_count": 1}, "this": {"_count": 1}, "than": {"_count": 1}}, "hopefully": {"_count": 1, "hed": {"_count": 1}}, "ruins": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 22, "his": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 7}, "YouKnowWho": {"_count": 2}, "Harry": {"_count": 1}, "a": {"_count": 2}, "Barty": {"_count": 1}, "everyone": {"_count": 1}, "Hermione": {"_count": 1}, "you": {"_count": 1}, "enthusiastically": {"_count": 1}, "Lucius": {"_count": 1}, "Harrys": {"_count": 1}, "their": {"_count": 1}}, "that": {"_count": 94, "cupboard": {"_count": 2}, "car": {"_count": 1}, "last": {"_count": 2}, "case": {"_count": 6}, "Study": {"_count": 1}, "book": {"_count": 2}, "forest": {"_count": 1}, "clearing": {"_count": 1}, "garden": {"_count": 1}, "room": {"_count": 2}, "sort": {"_count": 1}, "bathroom": {"_count": 1}, "ungrateful": {"_count": 1}, "casual": {"_count": 1}, "place": {"_count": 2}, "cup": {"_count": 1}, "hat": {"_count": 1}, "match": {"_count": 1}, "picture": {"_count": 2}, "goblet": {"_count": 8}, "dream": {"_count": 1}, "tournament": {"_count": 1}, "broom": {"_count": 1}, "cloak": {"_count": 1}, "box": {"_count": 2}, "lake": {"_count": 1}, "maze": {"_count": 1}, "writing": {"_count": 1}, "Muggle": {"_count": 1}, "alleyway": {"_count": 2}, "graveyard": {"_count": 3}, "its": {"_count": 1}, "pub": {"_count": 1}, "storm": {"_count": 1}, "loud": {"_count": 1}, "snakes": {"_count": 2}, "stupid": {"_count": 1}, "cold": {"_count": 1}, "one": {"_count": 1}, "and": {"_count": 1}, "house": {"_count": 2}, "hard": {"_count": 1}, "direction": {"_count": 1}, "drink": {"_count": 1}, "wine": {"_count": 1}, "girls": {"_count": 1}, "mirror": {"_count": 1}, "the": {"_count": 1}, "legendary": {"_count": 1}, "instant": {"_count": 2}, "diary": {"_count": 1}, "charming": {"_count": 1}, "interview": {"_count": 1}, "obituary": {"_count": 1}, "brutish": {"_count": 1}, "pool": {"_count": 1}, "crude": {"_count": 1}, "callous": {"_count": 1}, "vault": {"_count": 1}, "terrible": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}, "lowly": {"_count": 1}, "particular": {"_count": 1}, "fragment": {"_count": 1}, "same": {"_count": 1}, "way": {"_count": 1}, "collapsing": {"_count": 1}, "perfect": {"_count": 1}}, "midjump": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 131, "with": {"_count": 4}, "": {"_count": 55}, "said": {"_count": 8}, "so": {"_count": 5}, "at": {"_count": 1}, "werewolves": {"_count": 1}, "bin": {"_count": 1}, "was": {"_count": 2}, "anyway": {"_count": 1}, "again": {"_count": 1}, "though": {"_count": 1}, "too": {"_count": 2}, "and": {"_count": 5}, "of": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "Hermione": {"_count": 1}, "sit": {"_count": 1}, "Hagrid": {"_count": 1}, "about": {"_count": 1}, "I": {"_count": 1}, "until": {"_count": 1}, "alone": {"_count": 2}, "all": {"_count": 2}, "have": {"_count": 1}, "are": {"_count": 2}, "Granger": {"_count": 1}, "were": {"_count": 1}, "anymore": {"_count": 1}, "seemed": {"_count": 1}, "last": {"_count": 1}, "Fred": {"_count": 1}, "\u2018Unspeakables": {"_count": 1}, "before": {"_count": 1}, "in": {"_count": 1}, "What": {"_count": 1}, "Borgin": {"_count": 1}, "Ginny": {"_count": 1}, "not": {"_count": 1}, "Im": {"_count": 1}, "including": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}, "sir": {"_count": 1}, "yer": {"_count": 1}, "an": {"_count": 1}, "by": {"_count": 1}, "wont": {"_count": 1}, "himself": {"_count": 1}, "will": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "isnt": {"_count": 1}}, "shock": {"_count": 18, "": {"_count": 7}, "and": {"_count": 5}, "George": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}, "nearly": {"_count": 1}, "whispered": {"_count": 1}, "his": {"_count": 1}}, "Uncle": {"_count": 4, "Vernons": {"_count": 4}}, "green": {"_count": 8, "had": {"_count": 1}, "ink": {"_count": 2}, "icing": {"_count": 1}, "": {"_count": 1}, "liquid": {"_count": 1}, "robes": {"_count": 1}, "nylon": {"_count": 1}}, "Dudleys": {"_count": 2, "favorite": {"_count": 1}, "jaw": {"_count": 1}}, "July": {"_count": 5, "Aunt": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}}, "for": {"_count": 29, "breakfast": {"_count": 1}, "it": {"_count": 2}, "a": {"_count": 4}, "his": {"_count": 1}, "Scabbers": {"_count": 1}, "Lupin": {"_count": 1}, "questioning": {"_count": 5}, "the": {"_count": 6}, "her": {"_count": 1}, "that": {"_count": 1}, "Mr": {"_count": 1}, "dinner": {"_count": 1}, "Professor": {"_count": 1}, "five": {"_count": 1}, "using": {"_count": 1}, "weeks": {"_count": 1}}, "gray": {"_count": 1, "water": {"_count": 1}}, "both": {"_count": 9, "with": {"_count": 1}, "hands": {"_count": 1}, "his": {"_count": 1}, "of": {"_count": 2}, "faces": {"_count": 1}, "eyes": {"_count": 1}, "Ron": {"_count": 1}, "windows": {"_count": 1}}, "emerald": {"_count": 3, "green": {"_count": 3}}, "disgust": {"_count": 8, "and": {"_count": 1}, "": {"_count": 6}, "staring": {"_count": 1}}, "wed": {"_count": 2, "stamp": {"_count": 1}, "put": {"_count": 1}}, "here": {"_count": 110, "was": {"_count": 3}, "seemed": {"_count": 1}, "herself": {"_count": 1}, "because": {"_count": 3}, "they": {"_count": 2}, "somewhere": {"_count": 1}, "": {"_count": 40}, "students": {"_count": 1}, "telling": {"_count": 1}, "that": {"_count": 1}, "lately": {"_count": 1}, "just": {"_count": 2}, "forever": {"_count": 1}, "lets": {"_count": 1}, "and": {"_count": 6}, "if": {"_count": 3}, "said": {"_count": 3}, "ooh": {"_count": 1}, "only": {"_count": 1}, "you": {"_count": 1}, "with": {"_count": 4}, "all": {"_count": 1}, "its": {"_count": 1}, "Hagrid": {"_count": 1}, "again": {"_count": 1}, "Moody": {"_count": 1}, "Neville": {"_count": 1}, "Potter": {"_count": 1}, "theres": {"_count": 1}, "I": {"_count": 2}, "remember": {"_count": 1}, "today": {"_count": 1}, "he": {"_count": 1}, "Is": {"_count": 1}, "No": {"_count": 1}, "ha": {"_count": 1}, "Ron": {"_count": 1}, "not": {"_count": 1}, "crying": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 2}, "Hermione": {"_count": 1}, "tonight": {"_count": 1}, "or": {"_count": 2}, "about": {"_count": 2}, "casting": {"_count": 1}, "well": {"_count": 1}, "quick": {"_count": 1}, "to": {"_count": 1}}, "which": {"_count": 137, "everyone": {"_count": 1}, "case": {"_count": 5}, "floated": {"_count": 2}, "Hermione": {"_count": 4}, "Harry": {"_count": 12}, "I": {"_count": 3}, "they": {"_count": 13}, "the": {"_count": 12}, "Trevor": {"_count": 1}, "Crookshanks": {"_count": 2}, "your": {"_count": 1}, "a": {"_count": 7}, "his": {"_count": 2}, "Mrs": {"_count": 2}, "Ron": {"_count": 2}, "Dumbledore": {"_count": 3}, "Voldemort": {"_count": 3}, "Neville": {"_count": 1}, "to": {"_count": 8}, "Durmstrang": {"_count": 1}, "she": {"_count": 4}, "you": {"_count": 2}, "Pluto": {"_count": 1}, "Transforming": {"_count": 1}, "he": {"_count": 18}, "Sirius": {"_count": 2}, "thoughts": {"_count": 1}, "little": {"_count": 1}, "defensive": {"_count": 1}, "many": {"_count": 1}, "hundreds": {"_count": 1}, "Filch": {"_count": 1}, "Peeves": {"_count": 1}, "Hagrid": {"_count": 1}, "nobody": {"_count": 1}, "contained": {"_count": 1}, "every": {"_count": 1}, "no": {"_count": 1}, "real": {"_count": 1}, "Ginny": {"_count": 1}, "Montague": {"_count": 1}, "Tom": {"_count": 1}, "Hogwarts": {"_count": 1}, "Potter": {"_count": 1}, "for": {"_count": 1}, "R": {"_count": 1}, "Regulus": {"_count": 1}, "James": {"_count": 1}, "Xenophilius": {"_count": 1}, "it": {"_count": 1}}, "strange": {"_count": 3, "ways": {"_count": 1}, "languages": {"_count": 1}, "vibrant": {"_count": 1}}, "her": {"_count": 249, "food": {"_count": 1}, "cage": {"_count": 5}, "first": {"_count": 1}, "chest": {"_count": 1}, "voice": {"_count": 15}, "hand": {"_count": 22}, "pocket": {"_count": 3}, "arms": {"_count": 7}, "lap": {"_count": 7}, "mouth": {"_count": 4}, "opinion": {"_count": 1}, "large": {"_count": 1}, "House": {"_count": 1}, "face": {"_count": 10}, "small": {"_count": 1}, "ear": {"_count": 2}, "stall": {"_count": 1}, "beak": {"_count": 4}, "eye": {"_count": 2}, "chair": {"_count": 4}, "beady": {"_count": 1}, "right": {"_count": 1}, "": {"_count": 3}, "bathroom": {"_count": 1}, "corner": {"_count": 3}, "office": {"_count": 6}, "mistiest": {"_count": 2}, "dormitory": {"_count": 1}, "hands": {"_count": 14}, "seat": {"_count": 9}, "tartan": {"_count": 2}, "huge": {"_count": 1}, "armchair": {"_count": 1}, "mind": {"_count": 1}, "side": {"_count": 1}, "eel": {"_count": 1}, "enormous": {"_count": 1}, "cloak": {"_count": 1}, "frame": {"_count": 3}, "skirt": {"_count": 2}, "hat": {"_count": 1}, "low": {"_count": 1}, "robes": {"_count": 1}, "handkerchief": {"_count": 2}, "tent": {"_count": 1}, "eyes": {"_count": 7}, "winged": {"_count": 1}, "favor": {"_count": 1}, "cheeks": {"_count": 4}, "wizened": {"_count": 1}, "life": {"_count": 3}, "left": {"_count": 1}, "house": {"_count": 1}, "sleep": {"_count": 1}, "quavery": {"_count": 1}, "withered": {"_count": 1}, "booming": {"_count": 1}, "bag": {"_count": 4}, "wide": {"_count": 1}, "usual": {"_count": 2}, "falsely": {"_count": 1}, "softest": {"_count": 2}, "own": {"_count": 3}, "wouldbe": {"_count": 1}, "defense": {"_count": 1}, "most": {"_count": 2}, "handbag": {"_count": 1}, "wake": {"_count": 2}, "letter": {"_count": 2}, "picture": {"_count": 1}, "hair": {"_count": 3}, "case": {"_count": 2}, "nightdress": {"_count": 1}, "outstretched": {"_count": 1}, "tower": {"_count": 1}, "and": {"_count": 1}, "company": {"_count": 2}, "stubby": {"_count": 1}, "snarling": {"_count": 1}, "tracks": {"_count": 2}, "hood": {"_count": 1}, "mockbaby": {"_count": 1}, "fury": {"_count": 1}, "smile": {"_count": 1}, "place": {"_count": 2}, "glove": {"_count": 1}, "ungloved": {"_count": 1}, "fingers": {"_count": 1}, "parchment": {"_count": 1}, "hoop": {"_count": 1}, "mistresss": {"_count": 1}, "last": {"_count": 1}, "redtaloned": {"_count": 1}, "long": {"_count": 1}, "room": {"_count": 1}, "former": {"_count": 1}, "beaded": {"_count": 1}, "short": {"_count": 1}, "soft": {"_count": 1}, "element": {"_count": 1}, "expression": {"_count": 1}, "magical": {"_count": 1}, "cold": {"_count": 2}, "presence": {"_count": 1}, "good": {"_count": 1}, "white": {"_count": 2}, "vault": {"_count": 1}, "desperation": {"_count": 1}, "statue": {"_count": 1}, "enchanted": {"_count": 1}, "glittering": {"_count": 1}}, "amazement": {"_count": 12, "": {"_count": 9}, "Hermione": {"_count": 1}, "as": {"_count": 1}, "taking": {"_count": 1}}, "five": {"_count": 10, "minutes": {"_count": 7}, "consecutive": {"_count": 1}, "different": {"_count": 1}, "star": {"_count": 1}}, "ten": {"_count": 15, "minutes": {"_count": 9}, "seconds": {"_count": 2}, "Galleons": {"_count": 1}, "days": {"_count": 2}, "he": {"_count": 1}}, "although": {"_count": 1, "he": {"_count": 1}}, "Privet": {"_count": 10, "Drive": {"_count": 10}}, "": {"_count": 178, ".": {"_count": 121}, "?": {"_count": 39}, "!": {"_count": 18}}, "panic": {"_count": 5, "": {"_count": 2}, "was": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "its": {"_count": 53, "beak": {"_count": 7}, "cage": {"_count": 1}, "mouth": {"_count": 2}, "pocket": {"_count": 1}, "pages": {"_count": 1}, "office": {"_count": 1}, "roots": {"_count": 1}, "upper": {"_count": 1}, "hands": {"_count": 1}, "socket": {"_count": 6}, "wake": {"_count": 1}, "front": {"_count": 1}, "golden": {"_count": 1}, "entirety": {"_count": 2}, "place": {"_count": 2}, "slimy": {"_count": 1}, "fangs": {"_count": 1}, "bracket": {"_count": 1}, "jar": {"_count": 1}, "draining": {"_count": 1}, "saucer": {"_count": 1}, "search": {"_count": 1}, "sleep": {"_count": 1}, "egg": {"_count": 1}, "crisp": {"_count": 1}, "own": {"_count": 1}, "red": {"_count": 1}, "depths": {"_count": 1}, "glass": {"_count": 1}, "overgrown": {"_count": 1}, "sockets": {"_count": 1}, "shadow": {"_count": 2}, "ruined": {"_count": 1}, "hilt": {"_count": 1}, "scarred": {"_count": 1}, "enchanted": {"_count": 1}, "protective": {"_count": 1}, "huge": {"_count": 1}}, "my": {"_count": 148, "opinion": {"_count": 4}, "cupboard": {"_count": 1}, "familys": {"_count": 1}, "class": {"_count": 4}, "possession": {"_count": 3}, "office": {"_count": 14}, "youth": {"_count": 2}, "bedroom": {"_count": 3}, "room": {"_count": 9}, "search": {"_count": 1}, "House": {"_count": 6}, "dormitory": {"_count": 2}, "autobiography": {"_count": 1}, "sleep": {"_count": 2}, "trunk": {"_count": 1}, "pocket": {"_count": 2}, "footsteps": {"_count": 2}, "future": {"_count": 1}, "uncles": {"_count": 1}, "firs": {"_count": 1}, "bag": {"_count": 5}, "life": {"_count": 6}, "dream": {"_count": 1}, "death": {"_count": 1}, "family": {"_count": 2}, "cell": {"_count": 2}, "head": {"_count": 4}, "bed": {"_count": 2}, "present": {"_count": 1}, "department": {"_count": 1}, "memory": {"_count": 1}, "eyes": {"_count": 1}, "needlework": {"_count": 1}, "study": {"_count": 2}, "toilet": {"_count": 1}, "bathroom": {"_count": 1}, "thoughts": {"_count": 1}, "time": {"_count": 2}, "service": {"_count": 1}, "veins": {"_count": 2}, "fathers": {"_count": 2}, "yard": {"_count": 1}, "mothers": {"_count": 1}, "third": {"_count": 1}, "year": {"_count": 2}, "classroom": {"_count": 2}, "mind": {"_count": 2}, "cauldron": {"_count": 1}, "own": {"_count": 2}, "classes": {"_count": 3}, "hearing": {"_count": 1}, "mirror": {"_count": 2}, "day": {"_count": 2}, "power": {"_count": 2}, "school": {"_count": 1}, "fire": {"_count": 1}, "presence": {"_count": 1}, "brilliant": {"_count": 1}, "house": {"_count": 1}, "whole": {"_count": 1}, "O": {"_count": 2}, "shop": {"_count": 1}, "hands": {"_count": 1}, "rooms": {"_count": 1}, "letter": {"_count": 1}, "garden": {"_count": 1}, "pumpkin": {"_count": 1}, "fifth": {"_count": 1}, "feet": {"_count": 1}, "hand": {"_count": 1}, "first": {"_count": 1}, "Mistresss": {"_count": 1}, "face": {"_count": 1}, "sleeping": {"_count": 1}, "Do": {"_count": 1}, "book": {"_count": 1}, "heart": {"_count": 1}, "path": {"_count": 1}}, "him": {"_count": 19, "to": {"_count": 2}, "": {"_count": 5}, "standing": {"_count": 1}, "ready": {"_count": 1}, "again": {"_count": 1}, "all": {"_count": 1}, "like": {"_count": 2}, "that": {"_count": 1}, "but": {"_count": 1}, "no": {"_count": 1}, "his": {"_count": 1}, "Sev": {"_count": 1}, "though": {"_count": 1}}, "without": {"_count": 5, "a": {"_count": 2}, "the": {"_count": 1}, "getting": {"_count": 1}, "being": {"_count": 1}}, "pain": {"_count": 20, "": {"_count": 7}, "as": {"_count": 2}, "close": {"_count": 1}, "looking": {"_count": 1}, "both": {"_count": 1}, "yet": {"_count": 1}, "hit": {"_count": 1}, "sporting": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 3}, "what": {"_count": 1}}, "half": {"_count": 15, "an": {"_count": 3}, "when": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 4}, "darkness": {"_count": 1}, "a": {"_count": 2}, "with": {"_count": 1}}, "one": {"_count": 71, "o": {"_count": 1}, "of": {"_count": 18}, "night": {"_count": 2}, "go": {"_count": 1}, "piece": {"_count": 1}, "gulp": {"_count": 6}, "hand": {"_count": 19}, "corner": {"_count": 2}, "room": {"_count": 1}, "shaking": {"_count": 1}, "direction": {"_count": 1}, "loud": {"_count": 1}, "said": {"_count": 1}, "day": {"_count": 1}, "breath": {"_count": 1}, "goal": {"_count": 1}, "": {"_count": 3}, "long": {"_count": 1}, "identical": {"_count": 1}, "place": {"_count": 1}, "sudden": {"_count": 1}, "tower": {"_count": 1}, "stroke": {"_count": 1}, "fluid": {"_count": 1}, "shining": {"_count": 1}, "part": {"_count": 1}, "basket": {"_count": 1}}, "and": {"_count": 83, "dropped": {"_count": 1}, "out": {"_count": 46}, "started": {"_count": 1}, "then": {"_count": 1}, "Slytherin": {"_count": 1}, "have": {"_count": 1}, "Ron": {"_count": 1}, "there": {"_count": 1}, "grown": {"_count": 1}, "sit": {"_count": 1}, "made": {"_count": 1}, "we": {"_count": 2}, "threw": {"_count": 1}, "at": {"_count": 1}, "offered": {"_count": 1}, "headed": {"_count": 1}, "closed": {"_count": 1}, "step": {"_count": 1}, "she": {"_count": 1}, "seeing": {"_count": 1}, "of": {"_count": 1}, "spy": {"_count": 1}, "visit": {"_count": 1}, "hide": {"_count": 1}, "a": {"_count": 1}, "looked": {"_count": 1}, "also": {"_count": 1}, "his": {"_count": 1}, "moths": {"_count": 1}, "saw": {"_count": 1}, "pulled": {"_count": 1}, "you": {"_count": 1}, "saved": {"_count": 1}, "the": {"_count": 1}, "longing": {"_count": 1}, "itll": {"_count": 1}, "outside": {"_count": 1}}, "this": {"_count": 117, "": {"_count": 4}, "infernal": {"_count": 1}, "compartment": {"_count": 1}, "place": {"_count": 5}, "large": {"_count": 1}, "case": {"_count": 2}, "cloak": {"_count": 1}, "anywhere": {"_count": 1}, "forest": {"_count": 2}, "room": {"_count": 7}, "sir": {"_count": 1}, "state": {"_count": 4}, "very": {"_count": 4}, "dangerous": {"_count": 1}, "house": {"_count": 2}, "boys": {"_count": 1}, "field": {"_count": 1}, "subject": {"_count": 6}, "weather": {"_count": 6}, "school": {"_count": 3}, "said": {"_count": 1}, "old": {"_count": 1}, "vein": {"_count": 1}, "class": {"_count": 6}, "cupboard": {"_count": 1}, "book": {"_count": 3}, "area": {"_count": 1}, "clearing": {"_count": 1}, "cabin": {"_count": 1}, "direction": {"_count": 1}, "whole": {"_count": 1}, "form": {"_count": 1}, "village": {"_count": 1}, "Hall": {"_count": 3}, "mess": {"_count": 2}, "Lupin": {"_count": 1}, "bucket": {"_count": 1}, "one": {"_count": 2}, "together": {"_count": 2}, "newspaper": {"_count": 1}, "post": {"_count": 1}, "conversation": {"_count": 1}, "to": {"_count": 1}, "dip": {"_count": 1}, "than": {"_count": 1}, "office": {"_count": 1}, "ambition": {"_count": 1}, "part": {"_count": 2}, "position": {"_count": 1}, "youre": {"_count": 1}, "wonderful": {"_count": 1}, "smelly": {"_count": 1}, "lesson": {"_count": 1}, "dungeon": {"_count": 1}, "time": {"_count": 1}, "matter": {"_count": 1}, "respect": {"_count": 1}, "plan": {"_count": 1}, "general": {"_count": 1}, "country": {"_count": 1}, "coolest": {"_count": 1}, "faded": {"_count": 1}, "heat": {"_count": 1}, "graveyard": {"_count": 1}, "picture": {"_count": 1}, "do": {"_count": 1}, "vault": {"_count": 1}, "rooms": {"_count": 1}, "situation": {"_count": 1}, "familiar": {"_count": 1}}, "London": {"_count": 19, "": {"_count": 5}, "was": {"_count": 1}, "convinced": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "isnt": {"_count": 1}, "now": {"_count": 1}, "Hermione": {"_count": 1}, "he": {"_count": 1}, "by": {"_count": 1}, "expecting": {"_count": 1}, "sir": {"_count": 1}, "and": {"_count": 1}, "Arabella": {"_count": 1}, "preparing": {"_count": 1}}, "an": {"_count": 149, "ordinary": {"_count": 1}, "armchair": {"_count": 7}, "expression": {"_count": 1}, "undertone": {"_count": 19}, "underground": {"_count": 1}, "hour": {"_count": 4}, "aggravated": {"_count": 1}, "unexpected": {"_count": 1}, "affectionate": {"_count": 1}, "unnaturally": {"_count": 4}, "exam": {"_count": 1}, "empty": {"_count": 5}, "especially": {"_count": 1}, "orphanage": {"_count": 3}, "order": {"_count": 1}, "offhand": {"_count": 3}, "effort": {"_count": 7}, "uncanny": {"_count": 1}, "appearance": {"_count": 1}, "urgent": {"_count": 2}, "unbiased": {"_count": 1}, "experiment": {"_count": 1}, "instant": {"_count": 8}, "innocent": {"_count": 1}, "attitude": {"_count": 2}, "impeccably": {"_count": 1}, "Idontthinkyoure": {"_count": 1}, "unobtrusive": {"_count": 1}, "exasperated": {"_count": 2}, "embarrassed": {"_count": 1}, "innocently": {"_count": 1}, "impressed": {"_count": 1}, "exciting": {"_count": 1}, "oddly": {"_count": 3}, "agitated": {"_count": 1}, "enchanted": {"_count": 1}, "entirely": {"_count": 1}, "Albanian": {"_count": 1}, "expressionless": {"_count": 2}, "almost": {"_count": 4}, "emeraldgreen": {"_count": 1}, "ornate": {"_count": 1}, "upstairs": {"_count": 2}, "area": {"_count": 1}, "inside": {"_count": 1}, "attempt": {"_count": 7}, "Idliketosee": {"_count": 1}, "anguished": {"_count": 1}, "upper": {"_count": 1}, "ancient": {"_count": 2}, "illegal": {"_count": 1}, "awed": {"_count": 1}, "the": {"_count": 1}, "outbreak": {"_count": 1}, "annoyingly": {"_count": 1}, "extremely": {"_count": 1}, "injured": {"_count": 1}, "audible": {"_count": 1}, "even": {"_count": 2}, "awestruck": {"_count": 1}, "advisory": {"_count": 1}, "unconvincingly": {"_count": 1}, "unconvincing": {"_count": 1}, "anxious": {"_count": 1}, "unpleasant": {"_count": 1}, "extrarefined": {"_count": 1}, "unrecognizably": {"_count": 1}, "Sbend": {"_count": 1}, "object": {"_count": 1}, "arc": {"_count": 1}, "unfamiliar": {"_count": 2}, "examination": {"_count": 1}, "explosion": {"_count": 2}, "instinctive": {"_count": 1}, "evil": {"_count": 1}, "intricately": {"_count": 1}, "emergency": {"_count": 1}, "orderly": {"_count": 1}}, "large": {"_count": 8, "ledgers": {"_count": 1}, "arcs": {"_count": 1}, "yellow": {"_count": 1}, "black": {"_count": 1}, "letters": {"_count": 1}, "quantities": {"_count": 1}, "gold": {"_count": 1}, "pots": {"_count": 1}}, "brass": {"_count": 2, "scales": {"_count": 1}, "containers": {"_count": 1}}, "order": {"_count": 6, "": {"_count": 1}, "and": {"_count": 1}, "she": {"_count": 2}, "to": {"_count": 1}, "said": {"_count": 1}}, "vault": {"_count": 2, "seven": {"_count": 2}}, "Hagrid": {"_count": 5, "with": {"_count": 1}, "s": {"_count": 4}}, "brown": {"_count": 3, "paper": {"_count": 3}}, "mauve": {"_count": 1, "": {"_count": 1}}, "somehow": {"_count": 1, "": {"_count": 1}}, "yet": {"_count": 4, "": {"_count": 3}, "more": {"_count": 1}}, "Slytherin": {"_count": 24, "all": {"_count": 1}, "": {"_count": 10}, "Youll": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 1}, "Idve": {"_count": 1}, "hes": {"_count": 1}, "dont": {"_count": 1}, "Harrys": {"_count": 1}, "Harry": {"_count": 1}, "House": {"_count": 2}, "said": {"_count": 1}}, "Hufflepuff": {"_count": 4, "I": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "Where": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "Madam": {"_count": 6, "Malkins": {"_count": 2}, "Hoochs": {"_count": 1}, "Puddifoots": {"_count": 2}, "Pomfreys": {"_count": 1}}, "Yer": {"_count": 1, "not": {"_count": 1}}, "em": {"_count": 1, "in": {"_count": 1}}, "leather": {"_count": 1, "books": {"_count": 1}}, "covers": {"_count": 1, "of": {"_count": 1}}, "them": {"_count": 16, "at": {"_count": 1}, "": {"_count": 9}, "or": {"_count": 1}, "the": {"_count": 2}, "to": {"_count": 1}, "its": {"_count": 1}, "their": {"_count": 1}}, "those": {"_count": 13, "misty": {"_count": 1}, "few": {"_count": 2}, "days": {"_count": 4}, "robes": {"_count": 1}, "those": {"_count": 2}, "goals": {"_count": 1}, "two": {"_count": 1}, "numbers": {"_count": 1}}, "your": {"_count": 96, "wand": {"_count": 1}, "House": {"_count": 2}, "head": {"_count": 5}, "dormitory": {"_count": 2}, "choice": {"_count": 1}, "pocket": {"_count": 3}, "very": {"_count": 1}, "fathers": {"_count": 1}, "world": {"_count": 1}, "shed": {"_count": 1}, "manor": {"_count": 1}, "opinion": {"_count": 1}, "bonnet": {"_count": 1}, "books": {"_count": 1}, "past": {"_count": 3}, "path": {"_count": 1}, "bags": {"_count": 1}, "minds": {"_count": 1}, "class": {"_count": 1}, "life": {"_count": 4}, "debt": {"_count": 1}, "ears": {"_count": 1}, "hand": {"_count": 4}, "room": {"_count": 2}, "department": {"_count": 1}, "office": {"_count": 4}, "hair": {"_count": 2}, "first": {"_count": 1}, "cabinet": {"_count": 1}, "success": {"_count": 1}, "sleep": {"_count": 4}, "expulsion": {"_count": 1}, "jeans": {"_count": 1}, "resignation": {"_count": 1}, "O": {"_count": 5}, "being": {"_count": 1}, "examination": {"_count": 1}, "family": {"_count": 4}, "arm": {"_count": 1}, "own": {"_count": 1}, "dear": {"_count": 1}, "homework": {"_count": 1}, "lessons": {"_count": 1}, "dreams": {"_count": 1}, "veins": {"_count": 1}, "mothers": {"_count": 1}, "outer": {"_count": 1}, "education": {"_count": 1}, "broom": {"_count": 1}, "year": {"_count": 1}, "envelope": {"_count": 1}, "compartment": {"_count": 1}, "quest": {"_count": 1}, "bath": {"_count": 1}, "garden": {"_count": 1}, "attempt": {"_count": 1}, "power": {"_count": 2}, "school": {"_count": 1}, "home": {"_count": 1}, "name": {"_count": 1}, "house": {"_count": 1}, "mind": {"_count": 1}, "street": {"_count": 1}, "arms": {"_count": 1}}, "many": {"_count": 8, "ways": {"_count": 3}, "years": {"_count": 1}, "strengths": {"_count": 1}, "different": {"_count": 1}, "separately": {"_count": 1}, "places": {"_count": 1}}, "A": {"_count": 3, "History": {"_count": 2}, "Guide": {"_count": 1}}, "he": {"_count": 6, "started": {"_count": 1}, "puffed": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}, "would": {"_count": 1}}, "trouble": {"_count": 34, "leaning": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 10}, "shouldnt": {"_count": 1}, "send": {"_count": 1}, "now": {"_count": 2}, "said": {"_count": 1}, "every": {"_count": 1}, "with": {"_count": 2}, "an": {"_count": 2}, "Harry": {"_count": 1}, "for": {"_count": 1}, "if": {"_count": 2}, "until": {"_count": 1}, "Hermione": {"_count": 1}, "at": {"_count": 1}, "then": {"_count": 1}, "you": {"_count": 1}, "are": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}}, "search": {"_count": 6, "of": {"_count": 6}}, "through": {"_count": 22, "the": {"_count": 16}, "a": {"_count": 2}, "Honey": {"_count": 1}, "one": {"_count": 1}, "her": {"_count": 1}, "your": {"_count": 1}}, "Diagon": {"_count": 23, "Alley": {"_count": 23}}, "1945": {"_count": 2, "for": {"_count": 2}}, "you": {"_count": 19, "know": {"_count": 2}, "": {"_count": 7}, "see": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}, "come": {"_count": 1}, "foolish": {"_count": 1}, "and": {"_count": 1}, "before": {"_count": 1}, "wouldnt": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}}, "photos": {"_count": 1, "": {"_count": 1}}, "eating": {"_count": 1, "the": {"_count": 1}}, "places": {"_count": 8, "and": {"_count": 1}, "that": {"_count": 1}, "nevertheless": {"_count": 1}, "": {"_count": 4}, "important": {"_count": 1}}, "Modern": {"_count": 1, "Magical": {"_count": 1}}, "Gryffindor": {"_count": 28, "it": {"_count": 1}, "Where": {"_count": 1}, "Malfoys": {"_count": 1}, "along": {"_count": 1}, "": {"_count": 5}, "too": {"_count": 1}, "said": {"_count": 3}, "Harry": {"_count": 1}, "Tower": {"_count": 10}, "Im": {"_count": 1}, "I": {"_count": 1}, "House": {"_count": 1}, "well": {"_count": 1}}, "I": {"_count": 6, "hope": {"_count": 1}, "never": {"_count": 1}, "reckon": {"_count": 1}, "think": {"_count": 2}, "thought": {"_count": 1}}, "Romania": {"_count": 6, "studying": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 2}, "Dumbledore": {"_count": 1}}, "Africa": {"_count": 2, "doing": {"_count": 1}, "or": {"_count": 1}}, "emeraldgreen": {"_count": 1, "robes": {"_count": 1}}, "standing": {"_count": 1, "rather": {"_count": 1}}, "midair": {"_count": 82, "over": {"_count": 3}, "ahead": {"_count": 1}, "": {"_count": 22}, "to": {"_count": 3}, "his": {"_count": 3}, "and": {"_count": 11}, "before": {"_count": 1}, "not": {"_count": 1}, "unsupported": {"_count": 1}, "with": {"_count": 3}, "trying": {"_count": 1}, "reversed": {"_count": 1}, "four": {"_count": 1}, "beside": {"_count": 2}, "along": {"_count": 1}, "all": {"_count": 1}, "juggling": {"_count": 1}, "in": {"_count": 2}, "for": {"_count": 1}, "illuminated": {"_count": 1}, "of": {"_count": 1}, "it": {"_count": 1}, "within": {"_count": 1}, "then": {"_count": 1}, "above": {"_count": 2}, "feathers": {"_count": 1}, "as": {"_count": 4}, "staring": {"_count": 2}, "upon": {"_count": 1}, "Dumbledore": {"_count": 1}, "formed": {"_count": 1}, "a": {"_count": 1}, "though": {"_count": 1}, "they": {"_count": 1}, "unconnected": {"_count": 1}, "twisting": {"_count": 1}}, "Hogwarts": {"_count": 9, "A": {"_count": 3}, "": {"_count": 2}, "except": {"_count": 1}, "history": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "wise": {"_count": 1, "old": {"_count": 1}}, "safe": {"_count": 1, "hands": {"_count": 1}}, "blood": {"_count": 7, "": {"_count": 4}, "I": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}}, "Transfiguration": {"_count": 12, "you": {"_count": 1}, "Today": {"_count": 2}, "": {"_count": 4}, "as": {"_count": 1}, "not": {"_count": 1}, "Hermione": {"_count": 1}, "and": {"_count": 2}}, "playing": {"_count": 2, "for": {"_count": 1}, "Chaser": {"_count": 1}}, "exactly": {"_count": 4, "the": {"_count": 4}}, "glass": {"_count": 1, "jars": {"_count": 1}}, "barely": {"_count": 3, "more": {"_count": 2}, "ten": {"_count": 1}}, "One": {"_count": 2, "Thousand": {"_count": 2}}, "peoples": {"_count": 2, "shoes": {"_count": 1}, "drinks": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "helicopters": {"_count": 1, "": {"_count": 1}}, "neat": {"_count": 3, "lines": {"_count": 1}, "rows": {"_count": 1}, "little": {"_count": 1}}, "Nevilles": {"_count": 2, "voice": {"_count": 1}, "ear": {"_count": 1}}, "slow": {"_count": 6, "motion": {"_count": 6}}, "all": {"_count": 45, "my": {"_count": 3}, "the": {"_count": 10}, "his": {"_count": 4}, "": {"_count": 2}, "weathers": {"_count": 1}, "around": {"_count": 1}, "directions": {"_count": 14}, "they": {"_count": 1}, "sorts": {"_count": 1}, "your": {"_count": 1}, "Defense": {"_count": 1}, "not": {"_count": 1}, "right": {"_count": 2}, "this": {"_count": 1}, "usual": {"_count": 1}, "of": {"_count": 1}}, "Professor": {"_count": 17, "McGonagalls": {"_count": 6}, "when": {"_count": 1}, "Sprout": {"_count": 1}, "Trelawneys": {"_count": 1}, "": {"_count": 1}, "Flitwick": {"_count": 1}, "Flitwicks": {"_count": 2}, "Dumbledore": {"_count": 1}, "Umbridges": {"_count": 2}, "McGonagall": {"_count": 1}}, "about": {"_count": 13, "a": {"_count": 5}, "the": {"_count": 1}, "five": {"_count": 4}, "eighteen": {"_count": 1}, "three": {"_count": 1}, "an": {"_count": 1}}, "proper": {"_count": 1, "duels": {"_count": 1}}, "peace": {"_count": 5, "in": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}}, "rage": {"_count": 2, "": {"_count": 2}}, "slippery": {"_count": 1, "ropes": {"_count": 1}}, "what": {"_count": 36, "lay": {"_count": 1}, "looked": {"_count": 2}, "he": {"_count": 9}, "seemed": {"_count": 5}, "they": {"_count": 1}, "it": {"_count": 1}, "Malfoy": {"_count": 1}, "was": {"_count": 4}, "Harry": {"_count": 2}, "she": {"_count": 3}, "Snape": {"_count": 1}, "appeared": {"_count": 2}, "Dumbledore": {"_count": 1}, "way": {"_count": 2}, "you": {"_count": 1}}, "private": {"_count": 3, "before": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "gold": {"_count": 3, "near": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "stands": {"_count": 2, "around": {"_count": 1}, "that": {"_count": 1}}, "Charms": {"_count": 7, "that": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "said": {"_count": 1}, "however": {"_count": 1}, "": {"_count": 1}}, "tears": {"_count": 7, "": {"_count": 4}, "they": {"_count": 1}, "by": {"_count": 1}, "while": {"_count": 1}}, "low": {"_count": 8, "black": {"_count": 1}, "voices": {"_count": 6}, "urgent": {"_count": 1}}, "different": {"_count": 4, "directions": {"_count": 4}}, "fright": {"_count": 5, "Ron": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "frost": {"_count": 1, "": {"_count": 1}}, "1473": {"_count": 1, "that": {"_count": 1}}, "years": {"_count": 8, "": {"_count": 5}, "and": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}}, "possession": {"_count": 20, "of": {"_count": 5}, "Lee": {"_count": 1}, "": {"_count": 1}, "Flint": {"_count": 2}, "Katie": {"_count": 1}, "Alicia": {"_count": 1}, "come": {"_count": 1}, "no": {"_count": 2}, "and": {"_count": 2}, "again": {"_count": 2}, "It": {"_count": 1}, "Slytherin": {"_count": 1}}, "complete": {"_count": 3, "confusion": {"_count": 1}, "disarray": {"_count": 1}, "darkness": {"_count": 1}}, "Hagrids": {"_count": 14, "hut": {"_count": 2}, "window": {"_count": 1}, "lap": {"_count": 1}, "cabin": {"_count": 3}, "unobscured": {"_count": 1}, "row": {"_count": 1}, "windows": {"_count": 1}, "mind": {"_count": 1}, "heavy": {"_count": 1}, "front": {"_count": 1}, "pouch": {"_count": 1}}, "things": {"_count": 3, "that": {"_count": 2}, "as": {"_count": 1}}, "mid": {"_count": 1, "December": {"_count": 1}}, "several": {"_count": 6, "feet": {"_count": 1}, "places": {"_count": 2}, "small": {"_count": 1}, "games": {"_count": 1}, "ways": {"_count": 1}}, "Great": {"_count": 1, "Wizards": {"_count": 1}}, "Wizardry": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "any": {"_count": 51, "of": {"_count": 5}, "way": {"_count": 6}, "case": {"_count": 21}, "doubt": {"_count": 2}, "immediate": {"_count": 1}, "form": {"_count": 1}, "dwelling": {"_count": 1}, "sense": {"_count": 1}, "particular": {"_count": 1}, "more": {"_count": 3}, "lineup": {"_count": 1}, "condition": {"_count": 1}, "other": {"_count": 1}, "hurry": {"_count": 1}, "direction": {"_count": 1}, "one": {"_count": 1}, "fit": {"_count": 1}, "longer": {"_count": 1}, "except": {"_count": 1}}, "battle": {"_count": 2, "": {"_count": 1}, "an": {"_count": 1}}, "thick": {"_count": 6, "brown": {"_count": 2}, "gray": {"_count": 1}, "horizontal": {"_count": 1}, "blankets": {"_count": 1}, "but": {"_count": 1}}, "gleaming": {"_count": 1, "folds": {"_count": 1}}, "narrow": {"_count": 1, "loopy": {"_count": 1}}, "languages": {"_count": 1, "Harry": {"_count": 1}}, "bed": {"_count": 34, "that": {"_count": 1}, "": {"_count": 10}, "the": {"_count": 3}, "and": {"_count": 3}, "has": {"_count": 1}, "a": {"_count": 1}, "fuming": {"_count": 1}, "now": {"_count": 1}, "watching": {"_count": 1}, "said": {"_count": 1}, "still": {"_count": 1}, "willing": {"_count": 1}, "you": {"_count": 1}, "with": {"_count": 3}, "for": {"_count": 1}, "again": {"_count": 1}, "of": {"_count": 1}, "reading": {"_count": 1}, "Harry": {"_count": 1}}, "seven": {"_count": 2, "years": {"_count": 2}}, "existence": {"_count": 3, "belongs": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "Devon": {"_count": 1, "with": {"_count": 1}}, "Defense": {"_count": 8, "Against": {"_count": 7}, "because": {"_count": 1}}, "luck": {"_count": 4, "Weasley": {"_count": 1}, "said": {"_count": 1}, "A": {"_count": 1}, "Wormtail": {"_count": 1}}, "triumph": {"_count": 6, "the": {"_count": 1}, "in": {"_count": 1}, "all": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}}, "circles": {"_count": 5, "lower": {"_count": 1}, "higher": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}, "from": {"_count": 1}}, "alarm": {"_count": 15, "": {"_count": 10}, "over": {"_count": 1}, "and": {"_count": 3}, "but": {"_count": 1}}, "months": {"_count": 4, "": {"_count": 2}, "The": {"_count": 1}, "he": {"_count": 1}}, "said": {"_count": 13, "Ron": {"_count": 5}, "Hermione": {"_count": 2}, "Umbridge": {"_count": 1}, "Hagrid": {"_count": 1}, "Draco": {"_count": 1}, "Dumbledores": {"_count": 1}, "Harry": {"_count": 1}, "Slughorn": {"_count": 1}}, "Britain": {"_count": 14, "": {"_count": 5}, "Yeah": {"_count": 1}, "and": {"_count": 1}, "will": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "now": {"_count": 1}, "Hagrid": {"_count": 1}, "whos": {"_count": 1}, "has": {"_count": 1}}, "on": {"_count": 41, "protecting": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 4}, "them": {"_count": 5}, "pure": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}, "Monday": {"_count": 1}, "him": {"_count": 5}, "the": {"_count": 7}, "Sirius": {"_count": 1}, "Harrys": {"_count": 1}, "knew": {"_count": 1}, "everything": {"_count": 2}, "somehow": {"_count": 1}, "Harry": {"_count": 1}, "private": {"_count": 1}, "their": {"_count": 2}, "Thursday": {"_count": 1}, "you": {"_count": 1}, "Snape": {"_count": 1}, "this": {"_count": 1}}, "when": {"_count": 2, "someone": {"_count": 1}, "hes": {"_count": 1}}, "length": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "just": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 2}, "over": {"_count": 1}, "now": {"_count": 1}}, "detention": {"_count": 21, "what": {"_count": 1}, "for": {"_count": 2}, "said": {"_count": 2}, "": {"_count": 6}, "with": {"_count": 4}, "just": {"_count": 1}, "again": {"_count": 2}, "most": {"_count": 1}, "and": {"_count": 1}, "than": {"_count": 1}}, "last": {"_count": 3, "place": {"_count": 1}, "night": {"_count": 1}, "year": {"_count": 1}}, "class": {"_count": 20, "keeping": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 6}, "I": {"_count": 2}, "and": {"_count": 2}, "with": {"_count": 1}, "than": {"_count": 1}, "again": {"_count": 1}, "what": {"_count": 1}, "or": {"_count": 1}, "sunny": {"_count": 1}, "Hagrid": {"_count": 1}, "without": {"_count": 1}}, "silence": {"_count": 49, "": {"_count": 8}, "their": {"_count": 1}, "for": {"_count": 7}, "around": {"_count": 2}, "then": {"_count": 1}, "as": {"_count": 4}, "until": {"_count": 2}, "too": {"_count": 1}, "through": {"_count": 1}, "to": {"_count": 2}, "past": {"_count": 2}, "once": {"_count": 1}, "waiting": {"_count": 1}, "but": {"_count": 1}, "while": {"_count": 1}, "Fudge": {"_count": 1}, "Dean": {"_count": 1}, "than": {"_count": 1}, "she": {"_count": 1}, "Tonks": {"_count": 1}, "each": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 1}, "watching": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "trying": {"_count": 1}, "Harrys": {"_count": 1}}, "complicated": {"_count": 1, "potions": {"_count": 1}}, "at": {"_count": 16, "last": {"_count": 1}, "Halloween": {"_count": 1}, "the": {"_count": 6}, "ten": {"_count": 1}, "Hogwarts": {"_count": 2}, "platform": {"_count": 1}, "three": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 1}}, "Rons": {"_count": 17, "eyes": {"_count": 1}, "room": {"_count": 2}, "voice": {"_count": 2}, "pocket": {"_count": 1}, "hands": {"_count": 3}, "ear": {"_count": 1}, "other": {"_count": 1}, "arms": {"_count": 1}, "cauldron": {"_count": 1}, "direction": {"_count": 1}, "presence": {"_count": 1}, "dingy": {"_count": 1}, "and": {"_count": 1}}, "diffrent": {"_count": 1, "directions": {"_count": 1}}, "relief": {"_count": 8, "": {"_count": 3}, "as": {"_count": 2}, "yeah": {"_count": 1}, "because": {"_count": 1}, "turning": {"_count": 1}}, "anythin": {"_count": 1, "closern": {"_count": 1}}, "anger": {"_count": 7, "": {"_count": 4}, "so": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}}, "Potions": {"_count": 17, "": {"_count": 4}, "where": {"_count": 1}, "loads": {"_count": 1}, "than": {"_count": 1}, "lessons": {"_count": 1}, "yesterday": {"_count": 1}, "was": {"_count": 2}, "Herbology": {"_count": 1}, "and": {"_count": 1}, "classes": {"_count": 1}, "that": {"_count": 1}, "all": {"_count": 1}, "said": {"_count": 1}}, "dreams": {"_count": 1, "and": {"_count": 1}}, "Fluffy": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 5, "more": {"_count": 2}, "greater": {"_count": 1}, "Nearly": {"_count": 1}, "graver": {"_count": 1}}, "exasperation": {"_count": 5, "": {"_count": 2}, "handing": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}}, "long": {"_count": 3, "creepers": {"_count": 1}, "leafgreen": {"_count": 1}, "cloaks": {"_count": 1}}, "Herbology": {"_count": 7, "Hermione": {"_count": 1}, "and": {"_count": 1}, "were": {"_count": 1}, "one": {"_count": 1}, "Never": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "chess": {"_count": 1, "said": {"_count": 1}}, "danger": {"_count": 20, "": {"_count": 4}, "from": {"_count": 2}, "of": {"_count": 6}, "its": {"_count": 1}, "Frank": {"_count": 1}, "From": {"_count": 1}, "if": {"_count": 1}, "while": {"_count": 1}, "now": {"_count": 1}, "Xenophiliuss": {"_count": 1}, "long": {"_count": 1}}, "line": {"_count": 6, "": {"_count": 1}, "if": {"_count": 1}, "with": {"_count": 1}, "looked": {"_count": 1}, "were": {"_count": 1}, "in": {"_count": 1}}, "vain": {"_count": 5, "": {"_count": 4}, "for": {"_count": 1}}, "two": {"_count": 34, "he": {"_count": 1}, "the": {"_count": 2}, "weeks": {"_count": 1}, "": {"_count": 6}, "large": {"_count": 1}, "and": {"_count": 4}, "of": {"_count": 1}, "places": {"_count": 1}, "rows": {"_count": 1}, "days": {"_count": 3}, "eyes": {"_count": 1}, "next": {"_count": 1}, "for": {"_count": 1}, "more": {"_count": 1}, "breathless": {"_count": 1}, "to": {"_count": 1}, "minds": {"_count": 1}, "sending": {"_count": 1}, "which": {"_count": 1}, "centuries": {"_count": 1}, "cases": {"_count": 1}, "strides": {"_count": 1}, "others": {"_count": 1}}, "agony": {"_count": 8, "": {"_count": 4}, "and": {"_count": 1}, "feel": {"_count": 1}, "Harry": {"_count": 1}, "unable": {"_count": 1}}, "enough": {"_count": 2, "pain": {"_count": 1}, "trouble": {"_count": 1}}, "as": {"_count": 7, "his": {"_count": 1}, "little": {"_count": 1}, "long": {"_count": 1}, "possible": {"_count": 1}, "they": {"_count": 2}, "much": {"_count": 1}}, "third": {"_count": 2, "Hufflepuff": {"_count": 1}, "place": {"_count": 1}}, "life": {"_count": 8, "": {"_count": 5}, "threatening": {"_count": 2}, "to": {"_count": 1}}, "twos": {"_count": 1, "and": {"_count": 1}}, "Voldemorts": {"_count": 9, "attack": {"_count": 1}, "inner": {"_count": 1}, "mood": {"_count": 1}, "eyes": {"_count": 1}, "boat": {"_count": 1}, "voice": {"_count": 1}, "press": {"_count": 1}, "hand": {"_count": 1}, "face": {"_count": 1}}, "something": {"_count": 6, "smelly": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 1}, "very": {"_count": 1}, "heroic": {"_count": 1}, "else": {"_count": 1}}, "position": {"_count": 2, "at": {"_count": 1}, "shes": {"_count": 1}}, "cold": {"_count": 6, "sweat": {"_count": 1}, "": {"_count": 1}, "fury": {"_count": 1}, "fists": {"_count": 1}, "and": {"_count": 1}, "ripples": {"_count": 1}}, "bow": {"_count": 1, "ties": {"_count": 1}}, "mortal": {"_count": 4, "danger": {"_count": 4}}, "surprise": {"_count": 21, "": {"_count": 20}, "and": {"_count": 1}}, "peril": {"_count": 1, "": {"_count": 1}}, "shutting": {"_count": 1, "the": {"_count": 1}}, "Aunt": {"_count": 2, "Petunias": {"_count": 2}}, "another": {"_count": 9, "four": {"_count": 1}, "girls": {"_count": 1}, "corridor": {"_count": 1}, "but": {"_count": 1}, "great": {"_count": 1}, "teachers": {"_count": 1}, "direction": {"_count": 1}, "hour": {"_count": 1}, "the": {"_count": 1}}, "three": {"_count": 9, "days": {"_count": 3}, "hundred": {"_count": 1}, "classes": {"_count": 2}, "strides": {"_count": 1}, "magical": {"_count": 1}, "minutes": {"_count": 1}}, "Ron": {"_count": 4, "said": {"_count": 1}, "advised": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "wizard": {"_count": 1, "gold": {"_count": 1}}, "Freds": {"_count": 1, "chest": {"_count": 1}}, "Baking": {"_count": 1, "and": {"_count": 1}}, "fancy": {"_count": 1, "gold": {"_count": 1}}, "great": {"_count": 9, "circles": {"_count": 1}, "difficulty": {"_count": 1}, "danger": {"_count": 1}, "dollops": {"_count": 1}, "trepidation": {"_count": 1}, "esteem": {"_count": 1}, "agitation": {"_count": 1}, "rasps": {"_count": 1}, "spiraling": {"_count": 1}}, "scruff": {"_count": 1, "yV": {"_count": 1}}, "still": {"_count": 2, "in": {"_count": 1}, "deeper": {"_count": 1}}, "nicely": {"_count": 1, "we": {"_count": 1}}, "Egypt": {"_count": 7, "working": {"_count": 1}, "with": {"_count": 1}, "where": {"_count": 1}, "returning": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}}, "mind": {"_count": 12, "Harry": {"_count": 2}, "": {"_count": 3}, "of": {"_count": 3}, "if": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 1}}, "tightly": {"_count": 1, "still": {"_count": 1}}, "soot": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "today": {"_count": 1, "and": {"_count": 1}}, "Knockturn": {"_count": 4, "Alley": {"_count": 4}}, "Borgin": {"_count": 2, "and": {"_count": 2}}, "Mr": {"_count": 8, "Grangers": {"_count": 1}, "Crouchs": {"_count": 1}, "Filch": {"_count": 1}, "Crouch": {"_count": 1}, "Goyle": {"_count": 1}, "Weasleys": {"_count": 2}, "Bode": {"_count": 1}}, "Knock": {"_count": 1, "turn": {"_count": 1}}, "potion": {"_count": 1, "stains": {"_count": 1}}, "announcing": {"_count": 2, "that": {"_count": 2}}, "public": {"_count": 9, "": {"_count": 3}, "since": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "You": {"_count": 1}, "before": {"_count": 1}, "The": {"_count": 1}}, "blazes": {"_count": 1, "dyou": {"_count": 1}}, "put": {"_count": 1, "Hedwig": {"_count": 1}}, "seconds": {"_count": 6, "the": {"_count": 2}, "but": {"_count": 1}, "": {"_count": 1}, "later": {"_count": 1}, "to": {"_count": 1}}, "turn": {"_count": 26, "to": {"_count": 3}, "": {"_count": 7}, "said": {"_count": 1}, "forgive": {"_count": 1}, "and": {"_count": 6}, "Hermione": {"_count": 1}, "kept": {"_count": 1}, "when": {"_count": 1}, "knarls": {"_count": 1}, "apparently": {"_count": 1}, "STUBEFYl": {"_count": 1}, "that": {"_count": 1}, "warned": {"_count": 1}}, "protest": {"_count": 5, "": {"_count": 2}, "his": {"_count": 1}, "at": {"_count": 1}, "The": {"_count": 1}}, "terror": {"_count": 7, "a": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 2}, "upon": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}}, "robes": {"_count": 7, "of": {"_count": 6}, "that": {"_count": 1}}, "Norfolk": {"_count": 1, "Mrs": {"_count": 1}}, "after": {"_count": 8, "them": {"_count": 4}, "him": {"_count": 1}, "me": {"_count": 1}, "Harry": {"_count": 1}, "us": {"_count": 1}}, "Percys": {"_count": 4, "direction": {"_count": 1}, "writing": {"_count": 1}, "wake": {"_count": 1}, "old": {"_count": 1}}, "came": {"_count": 2, "the": {"_count": 1}, "Snape": {"_count": 1}}, "circling": {"_count": 1, "the": {"_count": 1}}, "slings": {"_count": 1, "": {"_count": 1}}, "sweeping": {"_count": 1, "robes": {"_count": 1}}, "greenhouse": {"_count": 3, "one": {"_count": 1}, "three": {"_count": 2}}, "color": {"_count": 1, "were": {"_count": 1}}, "rows": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "dark": {"_count": 3, "damp": {"_count": 1}, "Muggle": {"_count": 1}, "ivy": {"_count": 1}}, "place": {"_count": 15, "while": {"_count": 1}, "for": {"_count": 2}, "though": {"_count": 1}, "": {"_count": 4}, "around": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "sitting": {"_count": 1}, "by": {"_count": 1}, "this": {"_count": 1}, "every": {"_count": 1}}, "everything": {"_count": 6, "Hermione": {"_count": 1}, "thats": {"_count": 1}, "because": {"_count": 1}, "you": {"_count": 1}, "from": {"_count": 1}, "Rita": {"_count": 1}}, "earth": {"_count": 1, "": {"_count": 1}}, "T": {"_count": 1, "ransfiguration": {"_count": 1}}, "little": {"_count": 3, "hearts": {"_count": 1}, "Harry": {"_count": 1}, "rows": {"_count": 1}}, "Voyages": {"_count": 1, "with": {"_count": 1}}, "When": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "Year": {"_count": 1, "with": {"_count": 1}}, "chapter": {"_count": 3, "twelve": {"_count": 1}, "fifteen": {"_count": 1}, "sixteen": {"_count": 1}}, "fifteen": {"_count": 1, "minutes": {"_count": 1}}, "awe": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "differentcolored": {"_count": 1, "inks": {"_count": 1}}, "person": {"_count": 10, "said": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 5}, "well": {"_count": 1}, "because": {"_count": 1}, "we": {"_count": 1}}, "outrage": {"_count": 2, "": {"_count": 1}, "Im": {"_count": 1}}, "come": {"_count": 5, "in": {"_count": 5}}, "thought": {"_count": 14, "you": {"_count": 1}, "": {"_count": 5}, "about": {"_count": 1}, "all": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 3}, "not": {"_count": 1}, "he": {"_count": 1}}, "states": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 14, "come": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 3}, "said": {"_count": 1}, "Ron": {"_count": 1}, "such": {"_count": 1}, "an": {"_count": 1}, "I": {"_count": 1}, "at": {"_count": 1}}, "Shining": {"_count": 1, "brightly": {"_count": 1}}, "high": {"_count": 3, "astonishment": {"_count": 1}, "spirits": {"_count": 1}, "dudgeon": {"_count": 1}}, "hunt": {"_count": 1, "activities": {"_count": 1}}, "dungeon": {"_count": 1, "five": {"_count": 1}}, "Beginners": {"_count": 1, "Magic": {"_count": 1}}, "turning": {"_count": 1, "her": {"_count": 1}}, "silver": {"_count": 3, "bloodstains": {"_count": 2}, "upon": {"_count": 1}}, "black": {"_count": 13, "velvet": {"_count": 1}, "fur": {"_count": 1}, "robes": {"_count": 4}, "satin": {"_count": 1}, "ink": {"_count": 1}, "and": {"_count": 2}, "perhaps": {"_count": 1}, "droned": {"_count": 1}, "had": {"_count": 1}}, "furry": {"_count": 1, "green": {"_count": 1}}, "pride": {"_count": 1, "of": {"_count": 1}}, "fungus": {"_count": 1, "": {"_count": 1}}, "Myrtles": {"_count": 1, "ear": {"_count": 1}}, "excitement": {"_count": 1, "as": {"_count": 1}}, "Lockharts": {"_count": 2, "office": {"_count": 1}, "stupid": {"_count": 1}}, "rollers": {"_count": 1, "": {"_count": 1}}, "shadow": {"_count": 8, "wearing": {"_count": 1}, "": {"_count": 4}, "moved": {"_count": 1}, "watching": {"_count": 1}, "nothing": {"_count": 1}}, "Ouagadougou": {"_count": 1, "said": {"_count": 1}}, "agreement": {"_count": 5, "as": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 2}}, "everyones": {"_count": 1, "minds": {"_count": 1}}, "no": {"_count": 23, "time": {"_count": 10}, "danger": {"_count": 1}, "hurry": {"_count": 2}, "condition": {"_count": 1}, "mood": {"_count": 1}, "uncertain": {"_count": 1}, "doubt": {"_count": 3}, "immediate": {"_count": 1}, "fit": {"_count": 2}, "one": {"_count": 1}}, "such": {"_count": 28, "amazement": {"_count": 1}, "a": {"_count": 15}, "an": {"_count": 2}, "trouble": {"_count": 3}, "company": {"_count": 2}, "things": {"_count": 1}, "cramped": {"_count": 1}, "quantities": {"_count": 1}, "times": {"_count": 1}, "mundane": {"_count": 1}}, "harmony": {"_count": 2, "together": {"_count": 1}, "For": {"_count": 1}}, "mock": {"_count": 4, "puzzlement": {"_count": 1}, "outrage": {"_count": 1}, "celebration": {"_count": 1}, "admiration": {"_count": 1}}, "Gadding": {"_count": 1, "with": {"_count": 1}}, "Moaning": {"_count": 4, "Myrtles": {"_count": 4}}, "hatred": {"_count": 1, "he": {"_count": 1}}, "spite": {"_count": 15, "of": {"_count": 15}}, "pieces": {"_count": 3, "": {"_count": 2}, "on": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "far": {"_count": 1, "better": {"_count": 1}}, "hows": {"_count": 1, "your": {"_count": 1}}, "tightknit": {"_count": 1, "groups": {"_count": 1}}, "talismans": {"_count": 1, "amulets": {"_count": 1}}, "Snapes": {"_count": 7, "Potions": {"_count": 1}, "office": {"_count": 2}, "dungeon": {"_count": 2}, "old": {"_count": 1}, "step": {"_count": 1}}, "Goyles": {"_count": 2, "cauldron": {"_count": 1}, "huge": {"_count": 1}}, "Holidays": {"_count": 1, "with": {"_count": 1}}, "Parseltongue": {"_count": 10, "": {"_count": 5}, "Hissy": {"_count": 1}, "and": {"_count": 2}, "looking": {"_count": 2}}, "daytime": {"_count": 1, "because": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "looking": {"_count": 4, "very": {"_count": 1}, "thoroughly": {"_count": 1}, "curious": {"_count": 1}, "around": {"_count": 1}}, "fully": {"_count": 1, "dressed": {"_count": 1}}, "shoes": {"_count": 1, "four": {"_count": 1}}, "highbacked": {"_count": 1, "chairs": {"_count": 1}}, "Azkaban": {"_count": 62, "": {"_count": 25}, "and": {"_count": 4}, "fortress": {"_count": 1}, "to": {"_count": 1}, "ever": {"_count": 1}, "twelve": {"_count": 1}, "He": {"_count": 1}, "before": {"_count": 1}, "Peter": {"_count": 1}, "did": {"_count": 1}, "the": {"_count": 2}, "are": {"_count": 1}, "with": {"_count": 2}, "myself": {"_count": 1}, "lasting": {"_count": 1}, "that": {"_count": 1}, "hasnt": {"_count": 1}, "said": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 3}, "half": {"_count": 1}, "once": {"_count": 1}, "either": {"_count": 1}, "lamenting": {"_count": 1}, "at": {"_count": 1}, "had": {"_count": 1}, "because": {"_count": 1}, "I": {"_count": 1}, "surrounded": {"_count": 1}, "youre": {"_count": 1}}, "disbelief": {"_count": 17, "": {"_count": 11}, "at": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "unable": {"_count": 1}, "over": {"_count": 1}, "from": {"_count": 1}}, "limericks": {"_count": 1, "for": {"_count": 1}}, "Bath": {"_count": 1, "had": {"_count": 1}}, "smudged": {"_count": 1, "ink": {"_count": 1}}, "searching": {"_count": 1, "her": {"_count": 1}}, "Gringotts": {"_count": 5, "to": {"_count": 1}, "instead": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}}, "scarlet": {"_count": 1, "ink": {"_count": 1}}, "some": {"_count": 22, "more": {"_count": 1}, "book": {"_count": 1}, "distant": {"_count": 2}, "of": {"_count": 1}, "people": {"_count": 1}, "way": {"_count": 3}, "horrible": {"_count": 1}, "concern": {"_count": 1}, "surprise": {"_count": 1}, "good": {"_count": 1}, "lurid": {"_count": 1}, "other": {"_count": 1}, "strange": {"_count": 2}, "Snape": {"_count": 1}, "papers": {"_count": 1}, "parody": {"_count": 1}, "great": {"_count": 1}, "cases": {"_count": 1}}, "But": {"_count": 1, "the": {"_count": 1}}, "light": {"_count": 3, "of": {"_count": 3}}, "hot": {"_count": 2, "pursuit": {"_count": 1}, "and": {"_count": 1}}, "Rubeus": {"_count": 1, "": {"_count": 1}}, "March": {"_count": 1, "several": {"_count": 1}}, "wizardry": {"_count": 1, "with": {"_count": 1}}, "close": {"_count": 5, "contact": {"_count": 1}, "formation": {"_count": 1}, "proximity": {"_count": 3}}, "doubt": {"_count": 3, "go": {"_count": 1}, "barely": {"_count": 1}, "dont": {"_count": 1}}, "canary": {"_count": 1, "yellow": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 1}, "of": {"_count": 1}}, "pairs": {"_count": 5, "staring": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "rather": {"_count": 4, "clipped": {"_count": 1}, "a": {"_count": 2}, "different": {"_count": 1}}, "touch": {"_count": 16, "Yet": {"_count": 1}, "either": {"_count": 1}, "with": {"_count": 9}, "soon": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "being": {"_count": 2, "inside": {"_count": 1}, "told": {"_count": 1}}, "midsentence": {"_count": 3, "when": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "Hermione": {"_count": 3, "s": {"_count": 2}, "": {"_count": 1}}, "weeks": {"_count": 5, "": {"_count": 2}, "he": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 1}}, "days": {"_count": 5, "": {"_count": 2}, "about": {"_count": 1}, "but": {"_count": 1}, "from": {"_count": 1}}, "but": {"_count": 3, "reluctantly": {"_count": 1}, "most": {"_count": 1}, "he": {"_count": 1}}, "first": {"_count": 4, "": {"_count": 1}, "place": {"_count": 2}, "year": {"_count": 1}}, "slime": {"_count": 1, "and": {"_count": 1}}, "darkness": {"_count": 3, "casting": {"_count": 1}, "": {"_count": 1}, "once": {"_count": 1}}, "whose": {"_count": 2, "veins": {"_count": 1}, "shadow": {"_count": 1}}, "hiding": {"_count": 11, "": {"_count": 3}, "in": {"_count": 1}, "for": {"_count": 2}, "alone": {"_count": 1}, "while": {"_count": 1}, "but": {"_count": 1}, "then": {"_count": 1}, "Ariana": {"_count": 1}}, "torrents": {"_count": 1, "streaming": {"_count": 1}}, "muck": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "mild": {"_count": 6, "surprise": {"_count": 4}, "indignation": {"_count": 2}}, "me": {"_count": 18, "": {"_count": 3}, "and": {"_count": 2}, "mind": {"_count": 1}, "sleep": {"_count": 1}, "pumpkin": {"_count": 1}, "So": {"_count": 1}, "second": {"_count": 1}, "good": {"_count": 1}, "hed": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "but": {"_count": 1}, "all": {"_count": 1}, "what": {"_count": 1}, "an": {"_count": 1}}, "bandages": {"_count": 3, "was": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "punishment": {"_count": 1, "": {"_count": 1}}, "wonderment": {"_count": 1, "": {"_count": 1}}, "medieval": {"_count": 1, "times": {"_count": 1}}, "various": {"_count": 2, "disguises": {"_count": 1}, "petty": {"_count": 1}}, "addition": {"_count": 7, "to": {"_count": 7}}, "France": {"_count": 3, "at": {"_count": 1}, "yes": {"_count": 1}, "weve": {"_count": 1}}, "pubs": {"_count": 1, "and": {"_count": 1}}, "useful": {"_count": 4, "but": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}}, "smiling": {"_count": 1, "jovially": {"_count": 1}}, "ninetynine": {"_count": 1, "cases": {"_count": 1}}, "comparing": {"_count": 1, "Harry": {"_count": 1}}, "buying": {"_count": 1, "Dudley": {"_count": 1}}, "bloody": {"_count": 1, "tatters": {"_count": 1}}, "Magnolia": {"_count": 4, "Crescent": {"_count": 4}}, "brackets": {"_count": 4, "beside": {"_count": 1}, "such": {"_count": 1}, "": {"_count": 2}}, "Wales": {"_count": 2, "": {"_count": 1}, "can": {"_count": 1}}, "Abergavenny": {"_count": 1, "in": {"_count": 1}}, "fear": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "dressing": {"_count": 2, "gowns": {"_count": 2}}, "matters": {"_count": 2, "of": {"_count": 2}}, "among": {"_count": 1, "the": {"_count": 1}}, "emptying": {"_count": 1, "his": {"_count": 1}}, "furious": {"_count": 1, "wrestling": {"_count": 1}}, "Quality": {"_count": 1, "Quidditch": {"_count": 1}}, "September": {"_count": 1, "and": {"_count": 1}}, "yours": {"_count": 2, "whats": {"_count": 1}, "": {"_count": 1}}, "salute": {"_count": 1, "to": {"_count": 1}}, "peeling": {"_count": 1, "letters": {"_count": 1}}, "Hogsmeade": {"_count": 32, "said": {"_count": 2}, "with": {"_count": 1}, "buying": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 10}, "so": {"_count": 1}, "and": {"_count": 2}, "on": {"_count": 1}, "Harry": {"_count": 1}, "all": {"_count": 1}, "perhaps": {"_count": 1}, "that": {"_count": 1}, "And": {"_count": 1}, "now": {"_count": 1}, "Ginny": {"_count": 1}, "today": {"_count": 1}, "waiting": {"_count": 1}, "before": {"_count": 1}, "someone": {"_count": 1}, "Seamus": {"_count": 1}, "still": {"_count": 1}}, "Dervish": {"_count": 1, "and": {"_count": 1}}, "Lupins": {"_count": 4, "hand": {"_count": 1}, "jaw": {"_count": 1}, "tone": {"_count": 1}, "absence": {"_count": 1}}, "water": {"_count": 4, "": {"_count": 1}, "and": {"_count": 2}, "his": {"_count": 1}}, "icy": {"_count": 3, "sheets": {"_count": 1}, "water": {"_count": 1}, "sweat": {"_count": 1}}, "procession": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "particular": {"_count": 8, "": {"_count": 1}, "seemed": {"_count": 1}, "thought": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "Leprechaun": {"_count": 1}}, "astonishment": {"_count": 4, "as": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "crinolines": {"_count": 1, "whose": {"_count": 1}}, "answer": {"_count": 6, "to": {"_count": 5}, "": {"_count": 1}}, "whispers": {"_count": 5, "": {"_count": 2}, "their": {"_count": 1}, "with": {"_count": 1}, "Harry": {"_count": 1}}, "February": {"_count": 1, "by": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "Flourish": {"_count": 3, "and": {"_count": 3}}, "excellent": {"_count": 1, "health": {"_count": 1}}, "conversation": {"_count": 13, "": {"_count": 4}, "with": {"_count": 5}, "again": {"_count": 1}, "both": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "classes": {"_count": 2, "until": {"_count": 1}, "because": {"_count": 1}}, "late": {"_count": 1, "hed": {"_count": 1}}, "Snape": {"_count": 5, "s": {"_count": 4}, "": {"_count": 1}}, "school": {"_count": 5, "like": {"_count": 1}, "He": {"_count": 1}, "without": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "yesterday": {"_count": 1, "afternoon": {"_count": 1}}, "Neville": {"_count": 2, "": {"_count": 2}}, "hair": {"_count": 1, "was": {"_count": 1}}, "called": {"_count": 1, "Lupin": {"_count": 1}}, "charge": {"_count": 15, "": {"_count": 5}, "he": {"_count": 2}, "of": {"_count": 3}, "at": {"_count": 1}, "seemed": {"_count": 1}, "here": {"_count": 2}, "and": {"_count": 1}}, "suggested": {"_count": 1, "Dean": {"_count": 1}}, "too": {"_count": 3, "": {"_count": 1}, "far": {"_count": 1}, "coiling": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "completely": {"_count": 3, "different": {"_count": 1}, "blocked": {"_count": 1}, "the": {"_count": 1}}, "motionless": {"_count": 1, "silence": {"_count": 1}}, "Mongolia": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 5, "": {"_count": 2}, "which": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}}, "why": {"_count": 2, "should": {"_count": 1}, "you": {"_count": 1}}, "decay": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 2, "when": {"_count": 1}, "mentioning": {"_count": 1}}, "glittering": {"_count": 1, "frost": {"_count": 1}}, "minuscule": {"_count": 1, "writing": {"_count": 1}}, "Honeydukes": {"_count": 1, "said": {"_count": 1}}, "Ill": {"_count": 1, "have": {"_count": 1}}, "so": {"_count": 12, "no": {"_count": 1}, "much": {"_count": 2}, "many": {"_count": 2}, "well": {"_count": 1}, "far": {"_count": 2}, "that": {"_count": 4}}, "league": {"_count": 5, "with": {"_count": 5}}, "arm": {"_count": 5, "with": {"_count": 3}, "punching": {"_count": 1}, "laughing": {"_count": 1}}, "question": {"_count": 11, "": {"_count": 5}, "is": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "Mr": {"_count": 1}, "was": {"_count": 2}}, "fellowship": {"_count": 1, "": {"_count": 1}}, "fer": {"_count": 2, "interestin": {"_count": 1}, "it": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "Lucius": {"_count": 2, "Malfoys": {"_count": 1}, "Malfoy": {"_count": 1}}, "1722": {"_count": 1, "": {"_count": 1}}, "1296": {"_count": 1, "and": {"_count": 1}}, "wearing": {"_count": 2, "her": {"_count": 1}, "it": {"_count": 1}}, "honor": {"_count": 2, "of": {"_count": 2}}, "accompanied": {"_count": 2, "by": {"_count": 2}}, "once": {"_count": 3, "it": {"_count": 1}, "they": {"_count": 2}}, "informing": {"_count": 1, "Harry": {"_count": 1}}, "themselves": {"_count": 3, "were": {"_count": 1}, "generally": {"_count": 1}, "have": {"_count": 1}}, "Care": {"_count": 2, "of": {"_count": 2}}, "unpleasant": {"_count": 1, "thoughts": {"_count": 1}}, "irons": {"_count": 1, "": {"_count": 1}}, "early": {"_count": 1, "Im": {"_count": 1}}, "practice": {"_count": 1, "yesterday": {"_count": 1}}, "blue": {"_count": 2, "were": {"_count": 1}, "robes": {"_count": 1}}, "pursuit": {"_count": 4, "of": {"_count": 3}, "": {"_count": 1}}, "scoring": {"_count": 1, "the": {"_count": 1}}, "these": {"_count": 13, "long": {"_count": 1}, "numbers": {"_count": 1}, "bottles": {"_count": 1}, "boxes": {"_count": 1}, "matters": {"_count": 1}, "circumstances": {"_count": 1}, "little": {"_count": 1}, "persistent": {"_count": 1}, "dangerous": {"_count": 3}, "troubled": {"_count": 1}, "woods": {"_count": 1}}, "ages": {"_count": 2, "he": {"_count": 1}, "Sirius": {"_count": 1}}, "grunts": {"_count": 1, "and": {"_count": 1}}, "thinking": {"_count": 5, "that": {"_count": 5}}, "total": {"_count": 3, "disgrace": {"_count": 1}, "silence": {"_count": 1}, "darkness": {"_count": 1}}, "while": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "store": {"_count": 7, "for": {"_count": 6}, "": {"_count": 1}}, "himself": {"_count": 2, "Neville": {"_count": 1}, "to": {"_count": 1}}, "unexpected": {"_count": 2, "places": {"_count": 2}}, "im": {"_count": 1, "onest": {"_count": 1}}, "jars": {"_count": 1, "since": {"_count": 1}}, "invisible": {"_count": 1, "ink": {"_count": 1}}, "Zonko": {"_count": 1, "s": {"_count": 1}}, "Divination": {"_count": 6, "": {"_count": 2}, "just": {"_count": 1}, "while": {"_count": 1}, "who": {"_count": 1}, "the": {"_count": 1}}, "June": {"_count": 4, "will": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "anyones": {"_count": 1, "memory": {"_count": 1}}, "retaliation": {"_count": 1, "": {"_count": 1}}, "Malfoys": {"_count": 2, "direction": {"_count": 1}, "voice": {"_count": 1}}, "frustration": {"_count": 4, "as": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}}, "fits": {"_count": 2, "of": {"_count": 2}}, "worry": {"_count": 1, "about": {"_count": 1}}, "serious": {"_count": 3, "trouble": {"_count": 2}, "conversation": {"_count": 1}}, "answering": {"_count": 1, "and": {"_count": 1}}, "big": {"_count": 3, "trouble": {"_count": 2}, "groups": {"_count": 1}}, "worse": {"_count": 2, "trouble": {"_count": 1}, "spirits": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "range": {"_count": 1, "of": {"_count": 1}}, "sharp": {"_count": 4, "painful": {"_count": 1}, "bursts": {"_count": 1}, "detail": {"_count": 1}, "relief": {"_count": 1}}, "Blacks": {"_count": 3, "shadowed": {"_count": 1}, "hand": {"_count": 1}, "face": {"_count": 1}}, "return": {"_count": 13, "Perhaps": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 4}, "And": {"_count": 1}, "whether": {"_count": 1}, "for": {"_count": 3}, "said": {"_count": 1}, "Severus": {"_count": 1}}, "check": {"_count": 2, "": {"_count": 1}, "much": {"_count": 1}}, "minutes": {"_count": 1, "and": {"_count": 1}}, "where": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "Black": {"_count": 1, "now": {"_count": 1}}, "understanding": {"_count": 1, "why": {"_count": 1}}, "wheezes": {"_count": 1, "as": {"_count": 1}}, "single": {"_count": 2, "file": {"_count": 2}}, "moonlight": {"_count": 1, "": {"_count": 1}}, "Potters": {"_count": 2, "mind": {"_count": 1}, "behavior": {"_count": 1}}, "concentration": {"_count": 7, "": {"_count": 3}, "when": {"_count": 1}, "Hermione": {"_count": 1}, "apparently": {"_count": 1}, "but": {"_count": 1}}, "patches": {"_count": 2, "all": {"_count": 1}, "of": {"_count": 1}}, "plain": {"_count": 3, "view": {"_count": 2}, "black": {"_count": 1}}, "boisterous": {"_count": 1, "good": {"_count": 1}}, "they": {"_count": 1, "heard": {"_count": 1}}, "troubling": {"_count": 1, "them": {"_count": 1}}, "saying": {"_count": 5, "that": {"_count": 2}, "my": {"_count": 1}, "this": {"_count": 1}, "I": {"_count": 1}}, "saving": {"_count": 1, "Pettigrews": {"_count": 1}}, "times": {"_count": 1, "of": {"_count": 1}}, "helping": {"_count": 2, "Sirius": {"_count": 2}}, "greeting": {"_count": 1, "his": {"_count": 1}}, "Little": {"_count": 12, "Hangleton": {"_count": 3}, "Whinging": {"_count": 8}, "Norton": {"_count": 1}}, "perfect": {"_count": 2, "health": {"_count": 1}, "condition": {"_count": 1}}, "fine": {"_count": 3, "weather": {"_count": 1}, "working": {"_count": 1}, "condition": {"_count": 1}}, "August": {"_count": 1, "and": {"_count": 1}}, "code": {"_count": 1, "spies": {"_count": 1}}, "bright": {"_count": 4, "orange": {"_count": 1}, "sunlight": {"_count": 1}, "primary": {"_count": 1}, "tapestry": {"_count": 1}}, "Common": {"_count": 1, "Magical": {"_count": 1}}, "again": {"_count": 2, "wouldnt": {"_count": 1}, "Harry": {"_count": 1}}, "observing": {"_count": 1, "the": {"_count": 1}}, "stamps": {"_count": 1, "except": {"_count": 1}}, "minute": {"_count": 1, "writing": {"_count": 1}}, "perusing": {"_count": 1, "the": {"_count": 1}}, "varying": {"_count": 1, "states": {"_count": 1}}, "terse": {"_count": 1, "mutters": {"_count": 1}}, "white": {"_count": 1, "dust": {"_count": 1}}, "dust": {"_count": 5, "and": {"_count": 1}, "no": {"_count": 1}, "running": {"_count": 1}, "with": {"_count": 1}, "like": {"_count": 1}}, "brightly": {"_count": 1, "colored": {"_count": 1}}, "real": {"_count": 4, "trouble": {"_count": 2}, "danger": {"_count": 2}}, "good": {"_count": 4, "time": {"_count": 2}, "condition": {"_count": 1}, "spirits": {"_count": 1}}, "Australia": {"_count": 2, "instead": {"_count": 1}, "said": {"_count": 1}}, "hidden": {"_count": 1, "rabbit": {"_count": 1}}, "from": {"_count": 6, "the": {"_count": 3}, "said": {"_count": 1}, "time": {"_count": 1}, "every": {"_count": 1}}, "plusfours": {"_count": 2, "appeared": {"_count": 1}, "accompanied": {"_count": 1}}, "other": {"_count": 8, "countries": {"_count": 1}, "words": {"_count": 6}, "important": {"_count": 1}}, "indignation": {"_count": 1, "": {"_count": 1}}, "Brazil": {"_count": 1, "": {"_count": 1}}, "lighting": {"_count": 1, "the": {"_count": 1}}, "October": {"_count": 7, "thinking": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 2}, "that": {"_count": 1}}, "rigidly": {"_count": 1, "following": {"_count": 1}}, "rich": {"_count": 1, "purple": {"_count": 1}}, "levels": {"_count": 3, "around": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}}, "interest": {"_count": 1, "": {"_count": 1}}, "masters": {"_count": 1, "tent": {"_count": 1}}, "celebration": {"_count": 3, "": {"_count": 2}, "cups": {"_count": 1}}, "pajamas": {"_count": 1, "was": {"_count": 1}}, "An": {"_count": 2, "Appraisal": {"_count": 1}, "Anthology": {"_count": 1}}, "Europe": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "is": {"_count": 1}}, "more": {"_count": 9, "danger": {"_count": 3}, "detail": {"_count": 1}, "than": {"_count": 2}, "pieces": {"_count": 2}, "anguish": {"_count": 1}}, "Im": {"_count": 3, "about": {"_count": 1}, "Keeper": {"_count": 1}, "not": {"_count": 1}}, "masks": {"_count": 4, "were": {"_count": 1}, "": {"_count": 1}, "together": {"_count": 1}, "at": {"_count": 1}}, "The": {"_count": 10, "Rise": {"_count": 1}, "Standard": {"_count": 2}, "Quibbler": {"_count": 5}, "Life": {"_count": 1}, "Quihhler": {"_count": 1}}, "power": {"_count": 1, "were": {"_count": 1}}, "thirteen": {"_count": 1, "years": {"_count": 1}}, "paragraph": {"_count": 1, "twelve": {"_count": 1}}, "jeans": {"_count": 1, "and": {"_count": 1}}, "potato": {"_count": 1, "peelings": {"_count": 1}}, "groups": {"_count": 2, "today": {"_count": 1}, "their": {"_count": 1}}, "response": {"_count": 8, "to": {"_count": 7}, "": {"_count": 1}}, "ecstasy": {"_count": 1, "holding": {"_count": 1}}, "Ravenclaw": {"_count": 8, "and": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "during": {"_count": 1}, "Tower": {"_count": 2}}, "welcome": {"_count": 4, "": {"_count": 3}, "as": {"_count": 1}}, "soup": {"_count": 1, "": {"_count": 1}}, "turns": {"_count": 9, "to": {"_count": 8}, "": {"_count": 1}}, "hearing": {"_count": 3, "about": {"_count": 1}, "what": {"_count": 1}, "her": {"_count": 1}}, "April": {"_count": 1, "why": {"_count": 1}}, "each": {"_count": 3, "crate": {"_count": 1}, "other": {"_count": 2}}, "midwinter": {"_count": 1, "": {"_count": 1}}, "glasses": {"_count": 1, "is": {"_count": 1}}, "next": {"_count": 2, "Monday": {"_count": 1}, "lesson": {"_count": 1}}, "tackling": {"_count": 1, "Dark": {"_count": 1}}, "upon": {"_count": 8, "its": {"_count": 1}, "them": {"_count": 1}, "Voldemort": {"_count": 2}, "him": {"_count": 3}, "itself": {"_count": 1}}, "awed": {"_count": 1, "voices": {"_count": 1}}, "loads": {"_count": 2, "of": {"_count": 2}}, "Their": {"_count": 1, "Legal": {"_count": 1}}, "straw": {"_count": 1, "owl": {"_count": 1}}, "preparation": {"_count": 1, "for": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "campaigning": {"_count": 1, "": {"_count": 1}}, "autumn": {"_count": 1, "sunlight": {"_count": 1}}, "toward": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "further": {"_count": 1, "discussions": {"_count": 1}}, "lessons": {"_count": 4, "being": {"_count": 1}, "has": {"_count": 1}, "": {"_count": 1}, "losing": {"_count": 1}}, "pale": {"_count": 2, "blue": {"_count": 1}, "gold": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "lipstick": {"_count": 1, "": {"_count": 1}}, "welcoming": {"_count": 1, "you": {"_count": 1}}, "wizards": {"_count": 2, "robes": {"_count": 1}, "": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "rising": {"_count": 1, "much": {"_count": 1}}, "Dean": {"_count": 1, "told": {"_count": 1}}, "separate": {"_count": 2, "boxes": {"_count": 1}, "detentions": {"_count": 1}}, "hers": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "ze": {"_count": 3, "Hall": {"_count": 1}, "alls": {"_count": 1}, "smallest": {"_count": 1}}, "prize": {"_count": 1, "money": {"_count": 1}}, "French": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "luminous": {"_count": 1, "red": {"_count": 1}}, "magenta": {"_count": 1, "robes": {"_count": 1}}, "elaborate": {"_count": 2, "and": {"_count": 1}, "curls": {"_count": 1}}, "twoinch": {"_count": 1, "nails": {"_count": 1}}, "chairs": {"_count": 2, "near": {"_count": 1}, "on": {"_count": 1}}, "S": {"_count": 2, "": {"_count": 2}}, "unison": {"_count": 5, "and": {"_count": 3}, "": {"_count": 2}}, "showers": {"_count": 1, "of": {"_count": 1}}, "floods": {"_count": 1, "after": {"_count": 1}}, "semidarkness": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "Albania": {"_count": 5, "and": {"_count": 1}, "because": {"_count": 1}, "": {"_count": 2}, "its": {"_count": 1}}, "cast": {"_count": 1, "a": {"_count": 1}}, "Cedrics": {"_count": 1, "gray": {"_count": 1}}, "focus": {"_count": 1, "": {"_count": 1}}, "staying": {"_count": 1, "without": {"_count": 1}}, "full": {"_count": 8, "measure": {"_count": 2}, "awareness": {"_count": 1}, "flow": {"_count": 2}, "swing": {"_count": 1}, "view": {"_count": 1}, "flight": {"_count": 1}}, "make": {"_count": 1, "yourself": {"_count": 1}}, "smoothly": {"_count": 1, "to": {"_count": 1}}, "raised": {"_count": 1, "seats": {"_count": 1}}, "together": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "laughing": {"_count": 2, "": {"_count": 1}, "pulling": {"_count": 1}}, "winter": {"_count": 1, "Harry": {"_count": 1}}, "outsize": {"_count": 1, "specs": {"_count": 1}}, "pink": {"_count": 1, "and": {"_count": 1}}, "Dobby": {"_count": 2, "s": {"_count": 1}, "": {"_count": 1}}, "packs": {"_count": 1, "": {"_count": 1}}, "gratitude": {"_count": 1, "for": {"_count": 1}}, "magical": {"_count": 5, "creatures": {"_count": 1}, "snow": {"_count": 1}, "history": {"_count": 2}, "artifacts": {"_count": 1}}, "four": {"_count": 3, "years": {"_count": 2}, "or": {"_count": 1}}, "fourth": {"_count": 2, "year": {"_count": 1}, "place": {"_count": 1}}, "future": {"_count": 6, "": {"_count": 2}, "all": {"_count": 1}, "or": {"_count": 1}, "didnt": {"_count": 1}, "meetings": {"_count": 1}}, "letting": {"_count": 1, "off": {"_count": 1}}, "having": {"_count": 1, "Fleur": {"_count": 1}}, "unflattering": {"_count": 1, "disbelief": {"_count": 1}}, "sparkling": {"_count": 1, "silver": {"_count": 1}}, "talk": {"_count": 1, "with": {"_count": 1}}, "vinter": {"_count": 1, "ve": {"_count": 1}}, "summer": {"_count": 1, "ve": {"_count": 1}}, "imitation": {"_count": 2, "of": {"_count": 2}}, "watching": {"_count": 1, "them": {"_count": 1}}, "Parvatis": {"_count": 1, "empty": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 1}, "peering": {"_count": 1}, "said": {"_count": 1}}, "mountains": {"_count": 1, "mostly": {"_count": 1}}, "telling": {"_count": 4, "Hermione": {"_count": 2}, "you": {"_count": 1}, "the": {"_count": 1}}, "condensation": {"_count": 1, "so": {"_count": 1}}, "foreign": {"_count": 1, "mountain": {"_count": 1}}, "bushes": {"_count": 1, "listening": {"_count": 1}}, "nothing": {"_count": 2, "but": {"_count": 2}}, "Gobbledegook": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "by": {"_count": 4, "owl": {"_count": 1}, "accident": {"_count": 1}, "force": {"_count": 1}, "a": {"_count": 1}}, "tow": {"_count": 2, "anyway": {"_count": 1}, "": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "character": {"_count": 2, "somehow": {"_count": 1}, "though": {"_count": 1}}, "fury": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "Filchs": {"_count": 2, "hands": {"_count": 1}, "arms": {"_count": 1}}, "second": {"_count": 1, "chances": {"_count": 1}}, "Moodys": {"_count": 2, "hand": {"_count": 1}, "old": {"_count": 1}}, "whispered": {"_count": 1, "installments": {"_count": 1}}, "earnest": {"_count": 7, "to": {"_count": 1}, "": {"_count": 3}, "gazing": {"_count": 1}, "and": {"_count": 2}}, "yell": {"_count": 1, "at": {"_count": 1}}, "Madcap": {"_count": 1, "Magic": {"_count": 1}}, "Dreadful": {"_count": 1, "Denizens": {"_count": 1}}, "cheery": {"_count": 2, "confident": {"_count": 1}, "farewell": {"_count": 1}}, "bubbly": {"_count": 1, "water": {"_count": 1}}, "November": {"_count": 1, "were": {"_count": 1}}, "deeper": {"_count": 2, "now": {"_count": 1}, "snow": {"_count": 1}}, "goose": {"_count": 1, "pimples": {"_count": 1}}, "swimming": {"_count": 1, "trunks": {"_count": 1}}, "around": {"_count": 7, "Ron": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}, "Ginny": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "Alecto": {"_count": 1}}, "closer": {"_count": 5, "": {"_count": 1}, "Hermione": {"_count": 1}, "around": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}}, "Bulgaria": {"_count": 1, "over": {"_count": 1}}, "contact": {"_count": 6, "with": {"_count": 6}}, "disarray": {"_count": 1, "they": {"_count": 1}}, "others": {"_count": 1, "": {"_count": 1}}, "watched": {"_count": 1, "them": {"_count": 1}}, "Siriuss": {"_count": 7, "eyes": {"_count": 1}, "voice": {"_count": 1}, "handwriting": {"_count": 1}, "face": {"_count": 1}, "death": {"_count": 1}, "room": {"_count": 1}, "old": {"_count": 1}}, "popularity": {"_count": 1, "": {"_count": 1}}, "seventh": {"_count": 2, "year": {"_count": 2}}, "alive": {"_count": 1, "where": {"_count": 1}}, "neatly": {"_count": 2, "hiding": {"_count": 1}, "she": {"_count": 1}}, "frog": {"_count": 1, "spawn": {"_count": 1}}, "painful": {"_count": 2, "sores": {"_count": 1}, "stabs": {"_count": 1}}, "Witch": {"_count": 2, "Weekly": {"_count": 2}}, "regular": {"_count": 2, "owls": {"_count": 1}, "correspondence": {"_count": 1}}, "need": {"_count": 1, "of": {"_count": 1}}, "furs": {"_count": 1, "and": {"_count": 1}}, "writing": {"_count": 3, "its": {"_count": 1}, "": {"_count": 2}}, "reading": {"_count": 1, "what": {"_count": 1}}, "training": {"_count": 1, "for": {"_count": 1}}, "empty": {"_count": 1, "classrooms": {"_count": 1}}, "Trelawneys": {"_count": 2, "room": {"_count": 1}, "wake": {"_count": 1}}, "thin": {"_count": 3, "air": {"_count": 1}, "and": {"_count": 1}, "slanting": {"_count": 1}}, "then": {"_count": 4, "": {"_count": 2}, "yeh": {"_count": 1}, "come": {"_count": 1}}, "Dumbledores": {"_count": 20, "office": {"_count": 11}, "Pensieve": {"_count": 3}, "job": {"_count": 1}, "pocket": {"_count": 1}, "eccentric": {"_count": 1}, "will": {"_count": 1}, "study": {"_count": 1}, "Army": {"_count": 1}}, "sleek": {"_count": 1, "furs": {"_count": 1}}, "intense": {"_count": 1, "dislike": {"_count": 1}}, "muttered": {"_count": 1, "Moody": {"_count": 1}}, "favor": {"_count": 7, "of": {"_count": 7}}, "chains": {"_count": 2, "below": {"_count": 1}, "": {"_count": 1}}, "almost": {"_count": 2, "four": {"_count": 1}, "total": {"_count": 1}}, "St": {"_count": 15, "": {"_count": 15}}, "utter": {"_count": 2, "disbelief": {"_count": 1}, "desperation": {"_count": 1}}, "Binnss": {"_count": 1, "class": {"_count": 1}}, "rapid": {"_count": 2, "Bulgarian": {"_count": 1}, "French": {"_count": 1}}, "picture": {"_count": 1, "form": {"_count": 1}}, "disguise": {"_count": 3, "Who": {"_count": 1}, "Harry": {"_count": 1}, "who": {"_count": 1}}, "secrets": {"_count": 1, "and": {"_count": 1}}, "excruciating": {"_count": 1, "pain": {"_count": 1}}, "centuries": {"_count": 1, "": {"_count": 1}}, "Wormtails": {"_count": 1, "remaining": {"_count": 1}}, "death": {"_count": 2, "": {"_count": 2}}, "love": {"_count": 10, "with": {"_count": 8}, "": {"_count": 1}, "and": {"_count": 1}}, "ways": {"_count": 3, "devised": {"_count": 1}, "that": {"_count": 2}}, "anybodys": {"_count": 1, "mind": {"_count": 1}}, "reforming": {"_count": 1, "the": {"_count": 1}}, "common": {"_count": 7, "": {"_count": 4}, "Harry": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}}, "appearance": {"_count": 2, "was": {"_count": 1}, "his": {"_count": 1}}, "Dumbledore": {"_count": 8, "s": {"_count": 8}}, "reverse": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "imprisoned": {"_count": 1}}, "old": {"_count": 5, "reports": {"_count": 1}, "Courtroom": {"_count": 1}, "but": {"_count": 1}, "black": {"_count": 1}, "Sluggys": {"_count": 1}}, "office": {"_count": 3, "or": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "direct": {"_count": 1, "contact": {"_count": 1}}, "considerable": {"_count": 1, "distress": {"_count": 1}}, "connection": {"_count": 1, "with": {"_count": 1}}, "facing": {"_count": 1, "Lord": {"_count": 1}}, "Nah": {"_count": 1, "said": {"_count": 1}}, "leprechaun": {"_count": 1, "gold": {"_count": 1}}, "hex": {"_count": 1, "marks": {"_count": 1}}, "Surrey": {"_count": 1, "then": {"_count": 1}}, "Barnsley": {"_count": 1, "has": {"_count": 1}}, "continuing": {"_count": 1, "to": {"_count": 1}}, "flower": {"_count": 1, "beds": {"_count": 1}}, "dead": {"_count": 1, "ends": {"_count": 1}}, "neighboring": {"_count": 2, "gardens": {"_count": 1}, "pictures": {"_count": 1}}, "sweat": {"_count": 4, "": {"_count": 1}, "he": {"_count": 1}, "denying": {"_count": 1}, "slid": {"_count": 1}}, "dirt": {"_count": 1, "darling": {"_count": 1}}, "government": {"_count": 1, "": {"_count": 1}}, "fearful": {"_count": 1, "apology": {"_count": 1}}, "quick": {"_count": 2, "succession": {"_count": 1}, "Harry": {"_count": 1}}, "tones": {"_count": 4, "of": {"_count": 4}}, "dislike": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "misery": {"_count": 1, "": {"_count": 1}}, "Concealment": {"_count": 1, "and": {"_count": 1}}, "fireplaces": {"_count": 1, "but": {"_count": 1}}, "lines": {"_count": 1, "and": {"_count": 1}}, "number": {"_count": 3, "eleven": {"_count": 1}, "twelve": {"_count": 2}}, "behind": {"_count": 2, "him": {"_count": 2}}, "meetings": {"_count": 1, "": {"_count": 1}}, "Fudges": {"_count": 2, "own": {"_count": 1}, "face": {"_count": 1}}, "like": {"_count": 1, "youre": {"_count": 1}}, "snide": {"_count": 1, "comments": {"_count": 1}}, "Tibet": {"_count": 1, "": {"_count": 1}}, "secrecy": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 2, "got": {"_count": 1}, "had": {"_count": 1}}, "weapons": {"_count": 1, "this": {"_count": 1}}, "dirty": {"_count": 2, "tapestries": {"_count": 1}, "gray": {"_count": 1}}, "carefully": {"_count": 1, "light": {"_count": 1}}, "Gilderoy": {"_count": 1, "Lockharts": {"_count": 1}}, "furthering": {"_count": 1, "their": {"_count": 1}}, "Masters": {"_count": 1, "house": {"_count": 1}}, "tarnished": {"_count": 1, "silver": {"_count": 1}}, "Mrs": {"_count": 3, "Weasleys": {"_count": 2}, "Weasley": {"_count": 1}}, "Amelia": {"_count": 1, "Bones": {"_count": 1}}, "beside": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "shiny": {"_count": 1, "dark": {"_count": 1}}, "peacockblue": {"_count": 1, "robes": {"_count": 1}}, "use": {"_count": 1, "four": {"_count": 1}}, "normal": {"_count": 1, "tones": {"_count": 1}}, "Bethnal": {"_count": 3, "Green": {"_count": 3}}, "Wimbledon": {"_count": 1, "one": {"_count": 1}}, "Elephant": {"_count": 2, "and": {"_count": 2}}, "exceptional": {"_count": 1, "circumstances": {"_count": 1}}, "effect": {"_count": 1, "that": {"_count": 1}}, "He": {"_count": 2, "was": {"_count": 1}, "raised": {"_count": 1}}, "midconversation": {"_count": 1, "his": {"_count": 1}}, "warning": {"_count": 1, "": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "unlikely": {"_count": 1, "places": {"_count": 1}}, "bits": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "Assyria": {"_count": 1, "": {"_count": 1}}, "Stinksap": {"_count": 2, "": {"_count": 1}, "this": {"_count": 1}}, "pies": {"_count": 2, "": {"_count": 2}}, "convoy": {"_count": 1, "up": {"_count": 1}}, "sorting": {"_count": 1, "them": {"_count": 1}}, "huffy": {"_count": 1, "silence": {"_count": 1}}, "corridors": {"_count": 1, "between": {"_count": 1}}, "staffing": {"_count": 1, "this": {"_count": 1}}, "much": {"_count": 2, "of": {"_count": 2}}, "contrast": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "admiration": {"_count": 1, "": {"_count": 1}}, "boils": {"_count": 1, "dyou": {"_count": 1}}, "warm": {"_count": 1, "weather": {"_count": 1}}, "huddles": {"_count": 1, "around": {"_count": 1}}, "precisely": {"_count": 1, "the": {"_count": 1}}, "clockwise": {"_count": 1, "then": {"_count": 1}}, "counterclockwise": {"_count": 1, "directions": {"_count": 1}}, "potionmaking": {"_count": 4, "to": {"_count": 1}, "": {"_count": 3}}, "shawls": {"_count": 2, "and": {"_count": 1}, "her": {"_count": 1}}, "Peeves": {"_count": 1, "blew": {"_count": 1}}, "Dolores": {"_count": 2, "Umbridges": {"_count": 2}}, "everyone": {"_count": 2, "went": {"_count": 1}, "": {"_count": 1}}, "eagerness": {"_count": 1, "to": {"_count": 1}}, "wandtrees": {"_count": 1, "": {"_count": 1}}, "trees": {"_count": 1, "whose": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "beaming": {"_count": 1, "portraits": {"_count": 1}}, "lacy": {"_count": 1, "covers": {"_count": 1}}, "lace": {"_count": 1, "beside": {"_count": 1}}, "Umbridge": {"_count": 3, "s": {"_count": 2}, "and": {"_count": 1}}, "concealing": {"_count": 1, "things": {"_count": 1}}, "Umbridges": {"_count": 8, "office": {"_count": 6}, "first": {"_count": 1}, "desk": {"_count": 1}}, "posting": {"_count": 1, "off": {"_count": 1}}, "center": {"_count": 1, "position": {"_count": 1}}, "getting": {"_count": 2, "the": {"_count": 1}, "inside": {"_count": 1}}, "ice": {"_count": 1, "not": {"_count": 1}}, "combat": {"_count": 4, "": {"_count": 2}, "with": {"_count": 2}}, "recent": {"_count": 2, "weeks": {"_count": 1}, "years": {"_count": 1}}, "whom": {"_count": 3, "we": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "discussion": {"_count": 2, "about": {"_count": 1}, "both": {"_count": 1}}, "calculations": {"_count": 1, "": {"_count": 1}}, "scandalized": {"_count": 1, "tones": {"_count": 1}}, "grave": {"_count": 2, "danger": {"_count": 2}}, "Arithmancy": {"_count": 2, "exactly": {"_count": 1}, "she": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "Octobers": {"_count": 1, "a": {"_count": 1}}, "hoods": {"_count": 2, "sat": {"_count": 1}, "a": {"_count": 1}}, "strong": {"_count": 1, "Yorkshire": {"_count": 1}}, "Hermiones": {"_count": 8, "direction": {"_count": 2}, "jinxing": {"_count": 1}, "voice": {"_count": 1}, "handwriting": {"_count": 1}, "hair": {"_count": 1}, "expression": {"_count": 1}, "ear": {"_count": 1}}, "Georges": {"_count": 1, "hand": {"_count": 1}}, "meeting": {"_count": 1, "less": {"_count": 1}}, "denial": {"_count": 1, "about": {"_count": 1}}, "coming": {"_count": 1, "so": {"_count": 1}}, "learning": {"_count": 1, "defense": {"_count": 1}}, "copper": {"_count": 1, "pots": {"_count": 1}}, "accordance": {"_count": 4, "with": {"_count": 4}}, "History": {"_count": 2, "of": {"_count": 2}}, "dragging": {"_count": 1, "Neville": {"_count": 1}}, "hollow": {"_count": 1, "tones": {"_count": 1}}, "or": {"_count": 3, "something": {"_count": 1}, "out": {"_count": 2}}, "ugly": {"_count": 1, "oldfashioned": {"_count": 1}}, "Grimmauld": {"_count": 17, "Place": {"_count": 17}}, "conditions": {"_count": 1, "like": {"_count": 1}}, "Confusing": {"_count": 2, "and": {"_count": 2}}, "passing": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "disarming": {"_count": 1, "their": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "threes": {"_count": 1, "and": {"_count": 1}}, "exams": {"_count": 1, "if": {"_count": 1}}, "Weasley": {"_count": 4, "will": {"_count": 1}, "is": {"_count": 3}}, "between": {"_count": 7, "Alicia": {"_count": 1}, "the": {"_count": 1}, "yelps": {"_count": 1}, "them": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 1}}, "opposite": {"_count": 5, "directions": {"_count": 5}}, "useless": {"_count": 1, "loser": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "get": {"_count": 1, "in": {"_count": 1}}, "caves": {"_count": 2, "an": {"_count": 1}, "roun": {"_count": 1}}, "Minsk": {"_count": 1, "but": {"_count": 1}}, "amusement": {"_count": 1, "": {"_count": 1}}, "puzzlement": {"_count": 1, "": {"_count": 1}}, "abou": {"_count": 1, "the": {"_count": 1}}, "Fangs": {"_count": 1, "basket": {"_count": 1}}, "snow": {"_count": 3, "": {"_count": 2}, "distant": {"_count": 1}}, "shifts": {"_count": 1, "with": {"_count": 1}}, "Krum": {"_count": 1, "": {"_count": 1}}, "twentyfour": {"_count": 1, "hours": {"_count": 1}}, "tight": {"_count": 2, "circles": {"_count": 1}, "dizzying": {"_count": 1}}, "essence": {"_count": 1, "divided": {"_count": 1}}, "houseguests": {"_count": 1, "": {"_count": 1}}, "otherwise": {"_count": 1, "look": {"_count": 1}}, "hospital": {"_count": 1, "": {"_count": 1}}, "discussing": {"_count": 1, "": {"_count": 1}}, "limegreen": {"_count": 2, "robes": {"_count": 2}}, "notices": {"_count": 1, "and": {"_count": 1}}, "can": {"_count": 1, "he": {"_count": 1}}, "heaps": {"_count": 1, "over": {"_count": 1}}, "disjointed": {"_count": 1, "childish": {"_count": 1}}, "envelopes": {"_count": 1, "he": {"_count": 1}}, "fur": {"_count": 1, "Harry": {"_count": 1}}, "midaction": {"_count": 1, "both": {"_count": 1}}, "variously": {"_count": 1, "colored": {"_count": 1}}, "magic": {"_count": 1, "Potter": {"_count": 1}}, "sad": {"_count": 1, "memories": {"_count": 1}}, "fourteen": {"_count": 1, "years": {"_count": 1}}, "discomfort": {"_count": 1, "": {"_count": 1}}, "itself": {"_count": 2, "a": {"_count": 1}, "Albus": {"_count": 1}}, "nobody": {"_count": 1, "was": {"_count": 1}}, "print": {"_count": 1, "": {"_count": 1}}, "Ritas": {"_count": 2, "jaw": {"_count": 1}, "book": {"_count": 1}}, "Paisley": {"_count": 1, "": {"_count": 1}}, "primary": {"_count": 1, "school": {"_count": 1}}, "temper": {"_count": 2, "": {"_count": 1}, "there": {"_count": 1}}, "progress": {"_count": 1, "to": {"_count": 1}}, "paroxysms": {"_count": 1, "of": {"_count": 1}}, "classroom": {"_count": 1, "eleven": {"_count": 1}}, "Astronomy": {"_count": 1, "said": {"_count": 1}}, "reminding": {"_count": 1, "them": {"_count": 1}}, "midbounce": {"_count": 1, "his": {"_count": 1}}, "joining": {"_count": 1, "me": {"_count": 1}}, "wide": {"_count": 1, "circles": {"_count": 1}}, "niches": {"_count": 1, "along": {"_count": 1}}, "Potter": {"_count": 2, "Ill": {"_count": 1}, "from": {"_count": 1}}, "sinisterly": {"_count": 1, "sweet": {"_count": 1}}, "diameter": {"_count": 1, "were": {"_count": 1}}, "energy": {"_count": 1, "and": {"_count": 1}}, "limbo": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "between": {"_count": 1}}, "disbelieving": {"_count": 1, "Snapes": {"_count": 1}}, "red": {"_count": 1, "ink": {"_count": 1}}, "HAVE": {"_count": 1, "YOU": {"_count": 1}}, "honeyed": {"_count": 1, "tones": {"_count": 1}}, "practical": {"_count": 1, "defense": {"_count": 1}}, "ringing": {"_count": 1, "tones": {"_count": 1}}, "anguished": {"_count": 1, "tones": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 3}}, "cornflakes": {"_count": 1, "": {"_count": 1}}, "droves": {"_count": 1, "": {"_count": 1}}, "deep": {"_count": 2, "trouble": {"_count": 1}, "vibrant": {"_count": 1}}, "keeping": {"_count": 2, "silent": {"_count": 1}, "up": {"_count": 1}}, "small": {"_count": 2, "cuts": {"_count": 1}, "dusty": {"_count": 1}}, "proportion": {"_count": 1, "to": {"_count": 1}}, "yer": {"_count": 1, "Invisibility": {"_count": 1}}, "pulling": {"_count": 1, "back": {"_count": 1}}, "before": {"_count": 3, "we": {"_count": 1}, "breakfast": {"_count": 1}, "the": {"_count": 1}}, "quite": {"_count": 2, "such": {"_count": 1}, "the": {"_count": 1}}, "studying": {"_count": 2, "under": {"_count": 1}, "for": {"_count": 1}}, "injuries": {"_count": 1, "ever": {"_count": 1}}, "aids": {"_count": 1, "to": {"_count": 1}}, "six": {"_count": 2, "weeks": {"_count": 1}, "years": {"_count": 1}}, "Charming": {"_count": 3, "": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}}, "cobwebs": {"_count": 1, "Umbridge": {"_count": 1}}, "alphabetical": {"_count": 2, "order": {"_count": 2}}, "performing": {"_count": 1, "all": {"_count": 1}}, "Tuesdays": {"_count": 1, "Care": {"_count": 1}}, "detail": {"_count": 2, "about": {"_count": 1}, "and": {"_count": 1}}, "silvery": {"_count": 1, "moonlight": {"_count": 1}}, "twothirds": {"_count": 1, "of": {"_count": 1}}, "1": {"_count": 2, "749": {"_count": 1}, "945": {"_count": 1}}, "accidentally": {"_count": 1, "": {"_count": 1}}, "imminent": {"_count": 1, "danger": {"_count": 1}}, "disorder": {"_count": 1, "galloping": {"_count": 1}}, "obediently": {"_count": 1, "Hermione": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "steep": {"_count": 1, "steps": {"_count": 1}}, "spaces": {"_count": 1, "between": {"_count": 1}}, "near": {"_count": 3, "total": {"_count": 1}, "silence": {"_count": 2}}, "WEVE": {"_count": 1, "GOT": {"_count": 1}}, "searing": {"_count": 1, "gasps": {"_count": 1}}, "armchairs": {"_count": 1, "or": {"_count": 1}}, "selfpity": {"_count": 1, "stew": {"_count": 1}}, "distancing": {"_count": 1, "myself": {"_count": 1}}, "possessing": {"_count": 1, "you": {"_count": 1}}, "blaming": {"_count": 1, "Snape": {"_count": 1}}, "general": {"_count": 1, "": {"_count": 1}}, "doing": {"_count": 3, "so": {"_count": 3}}, "marking": {"_count": 1, "you": {"_count": 1}}, "attacking": {"_count": 1, "you": {"_count": 1}}, "company": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "prison": {"_count": 3, "I": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}}, "well": {"_count": 1, "have": {"_count": 1}}, "if": {"_count": 3, "yehve": {"_count": 1}, "we": {"_count": 2}}, "murder": {"_count": 1, "": {"_count": 1}}, "losing": {"_count": 1, "the": {"_count": 1}}, "farewell": {"_count": 2, "turned": {"_count": 1}, "": {"_count": 1}}, "politicians": {"_count": 1, "before": {"_count": 1}}, "uproar": {"_count": 1, "he": {"_count": 1}}, "January": {"_count": 1, "said": {"_count": 1}}, "catching": {"_count": 1, "hold": {"_count": 1}}, "curtains": {"_count": 2, "around": {"_count": 2}}, "books": {"_count": 1, "most": {"_count": 1}}, "present": {"_count": 1, "company": {"_count": 1}}, "jail": {"_count": 1, "and": {"_count": 1}}, "revenge": {"_count": 1, "": {"_count": 1}}, "grimy": {"_count": 2, "rags": {"_count": 1}, "black": {"_count": 1}}, "living": {"_count": 4, "memory": {"_count": 4}}, "families": {"_count": 1, "": {"_count": 1}}, "memories": {"_count": 2, "he": {"_count": 1}, "of": {"_count": 1}}, "spiders": {"_count": 1, "": {"_count": 1}}, "waiting": {"_count": 1, "": {"_count": 1}}, "roomy": {"_count": 1, "comfort": {"_count": 1}}, "Charing": {"_count": 2, "Cross": {"_count": 2}}, "spangled": {"_count": 1, "green": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "Self": {"_count": 1, "Inking": {"_count": 1}}, "shades": {"_count": 1, "of": {"_count": 1}}, "laughter": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "cages": {"_count": 2, "": {"_count": 1}, "over": {"_count": 1}}, "compartment": {"_count": 1, "C": {"_count": 1}}, "intensity": {"_count": 1, "even": {"_count": 1}}, "determined": {"_count": 1, "conversation": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinsons": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "Sirius": {"_count": 1, "rushing": {"_count": 1}}, "negative": {"_count": 1, "figures": {"_count": 1}}, "affronted": {"_count": 1, "tones": {"_count": 1}}, "lazy": {"_count": 1, "acknowledgment": {"_count": 1}}, "strength": {"_count": 1, "": {"_count": 1}}, "new": {"_count": 1, "and": {"_count": 1}}, "due": {"_count": 6, "course": {"_count": 6}}, "view": {"_count": 5, "": {"_count": 3}, "waiting": {"_count": 1}, "when": {"_count": 1}}, "essentials": {"_count": 1, "": {"_count": 1}}, "equal": {"_count": 4, "silence": {"_count": 1}, "measure": {"_count": 3}}, "making": {"_count": 1, "it": {"_count": 1}}, "characteristic": {"_count": 1, "spirals": {"_count": 1}}, "excess": {"_count": 1, "it": {"_count": 1}}, "organized": {"_count": 1, "competitions": {"_count": 1}}, "Slughorns": {"_count": 3, "dungeon": {"_count": 1}, "dimly": {"_count": 1}, "office": {"_count": 1}}, "smooth": {"_count": 1, "circles": {"_count": 1}}, "dazzling": {"_count": 1, "sunlight": {"_count": 1}}, "rags": {"_count": 4, "dropped": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "upon": {"_count": 1}}, "highly": {"_count": 1, "painful": {"_count": 1}}, "approval": {"_count": 1, "": {"_count": 1}}, "squalor": {"_count": 1, "and": {"_count": 1}}, "loving": {"_count": 1, "detail": {"_count": 1}}, "anybody": {"_count": 1, "except": {"_count": 1}}, "regaling": {"_count": 1, "Hermione": {"_count": 1}}, "familiar": {"_count": 1, "thin": {"_count": 1}}, "apparent": {"_count": 2, "embarrassment": {"_count": 1}, "appreciation": {"_count": 1}}, "Katies": {"_count": 1, "accident": {"_count": 1}}, "curious": {"_count": 1, "circumstances": {"_count": 1}}, "desperate": {"_count": 2, "need": {"_count": 1}, "speculation": {"_count": 1}}, "shes": {"_count": 1, "on": {"_count": 1}}, "Tom": {"_count": 2, "": {"_count": 1}, "Riddles": {"_count": 1}}, "miniature": {"_count": 2, "tall": {"_count": 1}, "eleven": {"_count": 1}}, "prayer": {"_count": 2, "": {"_count": 2}}, "entering": {"_count": 1, "our": {"_count": 1}}, "trapping": {"_count": 1, "a": {"_count": 1}}, "conjuring": {"_count": 1, "so": {"_count": 1}}, "desperation": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}}, "mutters": {"_count": 1, "barely": {"_count": 1}}, "explanation": {"_count": 1, "as": {"_count": 1}}, "Lunas": {"_count": 1, "conversation": {"_count": 1}}, "short": {"_count": 4, "for": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}}, "setting": {"_count": 1, "out": {"_count": 1}}, "assistants": {"_count": 1, "like": {"_count": 1}}, "children": {"_count": 1, "": {"_count": 1}}, "thanks": {"_count": 1, "": {"_count": 1}}, "sit": {"_count": 1, "down": {"_count": 1}}, "visions": {"_count": 1, "of": {"_count": 1}}, "seething": {"_count": 1, "silence": {"_count": 1}}, "open": {"_count": 1, "wrongdoing": {"_count": 1}}, "grime": {"_count": 1, "moldy": {"_count": 1}}, "e": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "s": {"_count": 1}}, "delight": {"_count": 1, "as": {"_count": 1}}, "deserted": {"_count": 1, "corridors": {"_count": 1}}, "hours": {"_count": 1, "and": {"_count": 1}}, "Quidditch": {"_count": 1, "he": {"_count": 1}}, "overnight": {"_count": 1, "": {"_count": 1}}, "tutus": {"_count": 1, "": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "objects": {"_count": 1, "with": {"_count": 1}}, "Hokeys": {"_count": 1, "contract": {"_count": 1}}, "recognizing": {"_count": 1, "as": {"_count": 1}}, "sympathy": {"_count": 2, "with": {"_count": 2}}, "style": {"_count": 1, "anyway": {"_count": 1}}, "boot": {"_count": 1, "polish": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "creatures": {"_count": 1, "like": {"_count": 1}}, "dragon": {"_count": 1, "eggs": {"_count": 1}}, "Yeah": {"_count": 1, "he": {"_count": 1}}, "Horace": {"_count": 1, "Slughorns": {"_count": 1}}, "preventing": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "immortality": {"_count": 1, "": {"_count": 1}}, "procuring": {"_count": 1, "for": {"_count": 1}}, "sealing": {"_count": 1, "a": {"_count": 1}}, "killing": {"_count": 1, "you": {"_count": 1}}, "evil": {"_count": 1, "and": {"_count": 1}}, "vague": {"_count": 1, "surprise": {"_count": 1}}, "herself": {"_count": 1, "": {"_count": 1}}, "vilifying": {"_count": 1, "Harry": {"_count": 1}}, "colored": {"_count": 1, "potions": {"_count": 1}}, "horrific": {"_count": 1, "scenes": {"_count": 1}}, "reality": {"_count": 2, "reliving": {"_count": 1}, "he": {"_count": 1}}, "throaty": {"_count": 1, "tones": {"_count": 1}}, "Lord": {"_count": 2, "Voldemorts": {"_count": 2}}, "cool": {"_count": 1, "darkness": {"_count": 1}}, "lungfuls": {"_count": 1, "of": {"_count": 1}}, "ropes": {"_count": 1, "but": {"_count": 1}}, "command": {"_count": 1, "of": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "mending": {"_count": 1, "the": {"_count": 1}}, "horrified": {"_count": 1, "shock": {"_count": 1}}, "shame": {"_count": 1, "and": {"_count": 1}}, "finding": {"_count": 1, "a": {"_count": 1}}, "truth": {"_count": 1, "he": {"_count": 1}}, "personality": {"_count": 1, "he": {"_count": 1}}, "purple": {"_count": 1, "velvet": {"_count": 1}}, "Mermish": {"_count": 2, "with": {"_count": 1}, "do": {"_count": 1}}, "exchange": {"_count": 4, "for": {"_count": 4}}, "happier": {"_count": 1, "times": {"_count": 1}}, "placing": {"_count": 1, "an": {"_count": 1}}, "looks": {"_count": 1, "with": {"_count": 1}}, "bearing": {"_count": 1, "and": {"_count": 1}}, "piles": {"_count": 1, "according": {"_count": 1}}, "subsequent": {"_count": 1, "years": {"_count": 1}}, "later": {"_count": 6, "life": {"_count": 2}, "years": {"_count": 4}}, "teaching": {"_count": 1, "": {"_count": 1}}, "Albuss": {"_count": 2, "shadow": {"_count": 1}, "face": {"_count": 1}}, "Greece": {"_count": 1, "to": {"_count": 1}}, "poor": {"_count": 1, "health": {"_count": 1}}, "anyone": {"_count": 2, "however": {"_count": 1}, "whos": {"_count": 1}}, "newsprint": {"_count": 1, "of": {"_count": 1}}, "Dedaluss": {"_count": 1, "waistcoat": {"_count": 1}}, "emergencies": {"_count": 1, "": {"_count": 1}}, "mud": {"_count": 2, "and": {"_count": 2}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "wet": {"_count": 1, "shockingly": {"_count": 1}}, "squeezing": {"_count": 1, "through": {"_count": 1}}, "kind": {"_count": 1, "but": {"_count": 1}}, "Ginnys": {"_count": 1, "expression": {"_count": 1}}, "secluded": {"_count": 1, "corners": {"_count": 1}}, "shape": {"_count": 1, "and": {"_count": 1}}, "angry": {"_count": 1, "purple": {"_count": 1}}, "pustules": {"_count": 1, "": {"_count": 1}}, "faded": {"_count": 1, "black": {"_count": 1}}, "mist": {"_count": 1, "was": {"_count": 1}}, "Magical": {"_count": 1, "Law": {"_count": 1}}, "runes": {"_count": 1, "he": {"_count": 1}}, "thirtyone": {"_count": 1, "days": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "press": {"_count": 1, "photographs": {"_count": 1}}, "lonely": {"_count": 1, "parts": {"_count": 1}}, "aspersions": {"_count": 1, "cast": {"_count": 1}}, "strictest": {"_count": 1, "confidence": {"_count": 1}}, "Skeeters": {"_count": 1, "interview": {"_count": 1}}, "middance": {"_count": 1, "": {"_count": 1}}, "realizing": {"_count": 1, "what": {"_count": 1}}, "wedding": {"_count": 1, "guests": {"_count": 1}}, "frostlike": {"_count": 1, "drips": {"_count": 1}}, "decoration": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 3, "days": {"_count": 1}, "danger": {"_count": 1}, "grievous": {"_count": 1}}, "folds": {"_count": 1, "white": {"_count": 1}}, "sobs": {"_count": 1, "": {"_count": 1}}, "wouldnt": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "Tonkss": {"_count": 1, "parents": {"_count": 1}}, "Ministry": {"_count": 2, "policy": {"_count": 2}}, "marrying": {"_count": 1, "Tonks": {"_count": 1}}, "MouldontheWold": {"_count": 1, "after": {"_count": 1}}, "bringing": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "triumphant": {"_count": 1, "possession": {"_count": 1}}, "using": {"_count": 1, "those": {"_count": 1}}, "eavesdropped": {"_count": 1, "on": {"_count": 1}}, "navy": {"_count": 1, "blue": {"_count": 1}}, "foothigh": {"_count": 1, "letters": {"_count": 1}}, "Runcorns": {"_count": 1, "deep": {"_count": 1}}, "court": {"_count": 1, "proceedings": {"_count": 1}}, "silent": {"_count": 1, "amusement": {"_count": 1}}, "curls": {"_count": 1, "to": {"_count": 1}}, "temperature": {"_count": 1, "It": {"_count": 1}}, "control": {"_count": 1, "they": {"_count": 1}}, "stout": {"_count": 1, "little": {"_count": 1}}, "English": {"_count": 2, "": {"_count": 2}}, "jeopardy": {"_count": 1, "": {"_count": 1}}, "Gornuk": {"_count": 1, "and": {"_count": 1}}, "accepting": {"_count": 1, "his": {"_count": 1}}, "leading": {"_count": 1, "questions": {"_count": 1}}, "look": {"_count": 1, "somebodys": {"_count": 1}}, "1689": {"_count": 1, "wizards": {"_count": 1}}, "Cornwall": {"_count": 1, "Upper": {"_count": 1}}, "Yorkshire": {"_count": 1, "and": {"_count": 1}}, "names": {"_count": 1, "there": {"_count": 1}}, "stone": {"_count": 1, "a": {"_count": 1}}, "wiping": {"_count": 1, "them": {"_count": 1}}, "golden": {"_count": 2, "letters": {"_count": 1}, "ink": {"_count": 1}}, "Everlasting": {"_count": 1, "Ink": {"_count": 1}}, "constant": {"_count": 1, "danger": {"_count": 1}}, "Christmas": {"_count": 1, "Day": {"_count": 1}}, "paper": {"_count": 1, "spiders": {"_count": 1}}, "friends": {"_count": 1, "that": {"_count": 1}}, "shielding": {"_count": 1, "him": {"_count": 1}}, "Bathildas": {"_count": 1, "sitting": {"_count": 1}}, "Cairo": {"_count": 1, "": {"_count": 1}}, "Enid": {"_count": 1, "Smeeks": {"_count": 1}}, "silhouette": {"_count": 1, "and": {"_count": 1}}, "terrible": {"_count": 2, "danger": {"_count": 2}}, "right": {"_count": 1, "": {"_count": 1}}, "dire": {"_count": 1, "accusation": {"_count": 1}}, "Tottenham": {"_count": 1, "Court": {"_count": 1}}, "Beedle": {"_count": 1, "the": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "magically": {"_count": 1, "turning": {"_count": 1}}, "Fantastic": {"_count": 1, "Beasts": {"_count": 1}}, "Wellington": {"_count": 1, "boots": {"_count": 1}}, "reasoned": {"_count": 1, "argument": {"_count": 1}}, "rubble": {"_count": 1, "Harry": {"_count": 1}}, "Selwyn": {"_count": 1, "said": {"_count": 1}}, "certainty": {"_count": 1, "in": {"_count": 1}}, "wanting": {"_count": 1, "the": {"_count": 1}}, "locating": {"_count": 1, "more": {"_count": 1}}, "quality": {"_count": 1, "they": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "Gaddley": {"_count": 1, "a": {"_count": 1}}, "memory": {"_count": 1, "of": {"_count": 1}}, "spirit": {"_count": 1, "said": {"_count": 1}}, "matted": {"_count": 1, "gray": {"_count": 1}}, "mad": {"_count": 1, "desperation": {"_count": 1}}, "acknowledgement": {"_count": 1, "then": {"_count": 1}}, "wandlore": {"_count": 1, "recognize": {"_count": 1}}, "destruction": {"_count": 1, "": {"_count": 1}}, "lesser": {"_count": 1, "creatures": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "goblin": {"_count": 1, "eyes": {"_count": 1}}, "flowers": {"_count": 1, "": {"_count": 1}}, "doorways": {"_count": 1, "": {"_count": 1}}, "Bellatrixs": {"_count": 1, "commanding": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "Bogrods": {"_count": 1, "ear": {"_count": 1}}, "overlarge": {"_count": 1, "robes": {"_count": 1}}, "bewilderment": {"_count": 1, "The": {"_count": 1}}, "jeweled": {"_count": 1, "flasks": {"_count": 1}}, "identical": {"_count": 1, "cups": {"_count": 1}}, "waves": {"_count": 1, "and": {"_count": 1}}, "treasure": {"_count": 1, "struggling": {"_count": 1}}, "Jets": {"_count": 1, "of": {"_count": 1}}, "vision": {"_count": 1, "his": {"_count": 1}}, "contemplation": {"_count": 1, "of": {"_count": 1}}, "ourselves": {"_count": 1, "": {"_count": 1}}, "portraits": {"_count": 1, "usually": {"_count": 1}}, "heres": {"_count": 1, "proven": {"_count": 1}}, "marble": {"_count": 1, "on": {"_count": 1}}, "earlier": {"_count": 1, "this": {"_count": 1}}, "twenty": {"_count": 2, "minutes": {"_count": 2}}, "traveling": {"_count": 1, "cloaks": {"_count": 1}}, "ruffs": {"_count": 1, "and": {"_count": 1}}, "armor": {"_count": 1, "and": {"_count": 1}}, "until": {"_count": 1, "weve": {"_count": 1}}, "awful": {"_count": 1, "discomfort": {"_count": 1}}, "free": {"_count": 1, "fall": {"_count": 1}}, "wriggling": {"_count": 1, "green": {"_count": 1}}, "pools": {"_count": 1, "of": {"_count": 1}}, "rebellion": {"_count": 1, "he": {"_count": 1}}, "disapproval": {"_count": 1, "both": {"_count": 1}}, "tag": {"_count": 1, "": {"_count": 1}}, "tugging": {"_count": 1, "her": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}, "Lily": {"_count": 1, "or": {"_count": 1}}, "Lilys": {"_count": 1, "voice": {"_count": 1}}, "polite": {"_count": 1, "refusal": {"_count": 1}}, "flame": {"_count": 1, "Souls": {"_count": 1}}, "worshipful": {"_count": 1, "fascination": {"_count": 1}}, "sunlight": {"_count": 1, "": {"_count": 1}}, "history": {"_count": 1, "Voldemort": {"_count": 1}}, "wrongdoing": {"_count": 1, "": {"_count": 1}}, "creating": {"_count": 1, "those": {"_count": 1}}, "benefits": {"_count": 1, "for": {"_count": 1}}, "Kings": {"_count": 1, "Cross": {"_count": 1}}, "fresh": {"_count": 1, "tears": {"_count": 1}}, "McGonagalls": {"_count": 1, "despair": {"_count": 1}}, "fists": {"_count": 1, "": {"_count": 1}}, "Slyth": {"_count": 1, "But": {"_count": 1}}}, "anything": {"_count": 704, "strange": {"_count": 2, "or": {"_count": 2}}, "to": {"_count": 76, "his": {"_count": 1}, "do": {"_count": 22}, "be": {"_count": 4}, "share": {"_count": 1}, "say": {"_count": 12}, "Hagrid": {"_count": 1}, "each": {"_count": 1}, "this": {"_count": 3}, "me": {"_count": 2}, "get": {"_count": 3}, "Ron": {"_count": 1}, "look": {"_count": 1}, "find": {"_count": 1}, "slow": {"_count": 1}, "them": {"_count": 1}, "complain": {"_count": 1}, "help": {"_count": 1}, "add": {"_count": 1}, "see": {"_count": 1}, "defend": {"_count": 1}, "him": {"_count": 1}, "really": {"_count": 1}, "her": {"_count": 1}, "class": {"_count": 1}, "worry": {"_count": 1}, "hurt": {"_count": 1}, "you": {"_count": 2}, "have": {"_count": 1}, "little": {"_count": 1}, "distract": {"_count": 1}, "us": {"_count": 1}, "comfort": {"_count": 1}, "change": {"_count": 1}, "equal": {"_count": 1}, "possess": {"_count": 1}}, "that": {"_count": 27, "might": {"_count": 4}, "was": {"_count": 1}, "Harry": {"_count": 1}, "didnt": {"_count": 1}, "would": {"_count": 2}, "can": {"_count": 2}, "went": {"_count": 1}, "looked": {"_count": 1}, "the": {"_count": 1}, "old": {"_count": 1}, "Skeeter": {"_count": 1}, "Professor": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 1}, "looks": {"_count": 2}, "caused": {"_count": 1}, "Siriuss": {"_count": 1}, "jeopardized": {"_count": 1}, "tied": {"_count": 1}, "made": {"_count": 1}, "causes": {"_count": 1}}, "he": {"_count": 16, "wanted": {"_count": 1}, "gives": {"_count": 1}, "said": {"_count": 1}, "got": {"_count": 2}, "just": {"_count": 1}, "owned": {"_count": 1}, "had": {"_count": 2}, "sounded": {"_count": 1}, "could": {"_count": 1}, "wouldnt": {"_count": 1}, "muttered": {"_count": 1}, "felt": {"_count": 1}, "repeated": {"_count": 1}, "certainly": {"_count": 1}}, "else": {"_count": 47, "to": {"_count": 2}, "": {"_count": 15}, "the": {"_count": 2}, "is": {"_count": 1}, "in": {"_count": 5}, "at": {"_count": 1}, "either": {"_count": 1}, "I": {"_count": 1}, "Crookshanks": {"_count": 1}, "there": {"_count": 1}, "surrounded": {"_count": 1}, "now": {"_count": 1}, "like": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 1}, "well": {"_count": 1}, "today": {"_count": 1}, "they": {"_count": 1}, "though": {"_count": 1}, "Uncle": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "even": {"_count": 1}, "could": {"_count": 1}, "theyd": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 14, "all": {"_count": 12}, "the": {"_count": 1}, "Borgin": {"_count": 1}}, "said": {"_count": 17, "Harry": {"_count": 6}, "Ron": {"_count": 2}, "Fred": {"_count": 2}, "Mr": {"_count": 1}, "Hermione": {"_count": 1}, "one": {"_count": 1}, "Professor": {"_count": 2}, "Lupin": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "": {"_count": 120, ".": {"_count": 91}, "!": {"_count": 10}, "?": {"_count": 19}}, "acting": {"_count": 1, "in": {"_count": 1}}, "except": {"_count": 5, "snap": {"_count": 1}, "lettuce": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 5, "horrible": {"_count": 1}, "large": {"_count": 1}, "much": {"_count": 1}, "friendly": {"_count": 1}, "normal": {"_count": 1}}, "so": {"_count": 6, "wonderful": {"_count": 1}, "far": {"_count": 1}, "beautiful": {"_count": 1}, "Neville": {"_count": 1}, "awe": {"_count": 1}, "pitiful": {"_count": 1}}, "yeh": {"_count": 1, "want": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "about": {"_count": 34, "magic": {"_count": 1}, "being": {"_count": 1}, "the": {"_count": 8}, "you": {"_count": 1}, "his": {"_count": 4}, "them": {"_count": 1}, "your": {"_count": 2}, "werewolves": {"_count": 1}, "Abroad": {"_count": 1}, "it": {"_count": 3}, "working": {"_count": 1}, "Bertha": {"_count": 1}, "Bagman": {"_count": 1}, "Voldemort": {"_count": 1}, "Dumbledore": {"_count": 1}, "Fred": {"_count": 1}, "what": {"_count": 1}, "Snape": {"_count": 1}, "Horcruxes": {"_count": 2}, "him": {"_count": 1}}, "or": {"_count": 3, "shout": {"_count": 1}, "attack": {"_count": 1}, "Ill": {"_count": 1}}, "new": {"_count": 6, "either": {"_count": 1}, "to": {"_count": 1}, "right": {"_count": 1}, "": {"_count": 2}, "has": {"_count": 1}}, "wrong": {"_count": 11, "with": {"_count": 3}, "": {"_count": 4}, "my": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "saying": {"_count": 1, "the": {"_count": 1}}, "thats": {"_count": 3, "whats": {"_count": 1}, "trying": {"_count": 1}, "been": {"_count": 1}}, "was": {"_count": 2, "because": {"_count": 1}, "certain": {"_count": 1}}, "like": {"_count": 14, "it": {"_count": 2}, "that": {"_count": 4}, "this": {"_count": 2}, "Winky": {"_count": 1}, "as": {"_count": 1}, "his": {"_count": 1}, "hats": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "past": {"_count": 1, "Snape": {"_count": 1}}, "but": {"_count": 16, "Harry": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 2}, "neither": {"_count": 1}, "this": {"_count": 1}, "The": {"_count": 1}, "Quidditch": {"_count": 1}, "glanced": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}, "numb": {"_count": 1}, "vapor": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "I": {"_count": 1}}, "they": {"_count": 5, "could": {"_count": 1}, "had": {"_count": 3}, "seemed": {"_count": 1}}, "ourselves": {"_count": 1, "well": {"_count": 1}}, "happens": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 4, "Dumbledore": {"_count": 1}, "it": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}}, "Offend": {"_count": 1, "Dobby": {"_count": 1}}, "if": {"_count": 3, "they": {"_count": 1}, "it": {"_count": 1}, "youre": {"_count": 1}}, "you": {"_count": 13, "need": {"_count": 2}, "were": {"_count": 1}, "shouldnt": {"_count": 1}, "and": {"_count": 1}, "want": {"_count": 2}, "have": {"_count": 3}, "did": {"_count": 1}, "can": {"_count": 1}, "know": {"_count": 1}}, "Dad": {"_count": 1, "": {"_count": 1}}, "illegal": {"_count": 1, "to": {"_count": 1}}, "connected": {"_count": 1, "with": {"_count": 1}}, "here": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "Harry": {"_count": 9, "mouthed": {"_count": 1}, "": {"_count": 1}, "hurriedly": {"_count": 1}, "had": {"_count": 2}, "said": {"_count": 1}, "made": {"_count": 1}, "did": {"_count": 1}, "sent": {"_count": 1}}, "funny": {"_count": 1, "lately": {"_count": 1}}, "Justin": {"_count": 1, "had": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "no": {"_count": 1, "wonder": {"_count": 1}}, "youd": {"_count": 1, "like": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "youre": {"_count": 1}, "everything": {"_count": 1}}, "mad": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 6, "him": {"_count": 2}, "anyone": {"_count": 1}, "its": {"_count": 1}, "that": {"_count": 1}, "Weasleys": {"_count": 1}}, "missing": {"_count": 1, "": {"_count": 1}}, "odd": {"_count": 5, "and": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "had": {"_count": 1}}, "she": {"_count": 4, "warned": {"_count": 1}, "tucked": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}}, "dangerous": {"_count": 4, "on": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "or": {"_count": 1}}, "lines": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 17, "Scabbers": {"_count": 1}, "anyone": {"_count": 1}, "Christmas": {"_count": 1}, "you": {"_count": 1}, "Dobby": {"_count": 1}, "a": {"_count": 4}, "certain": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 3}, "personal": {"_count": 1}, "him": {"_count": 1}}, "could": {"_count": 2, "hurt": {"_count": 1}, "have": {"_count": 1}}, "untrustworthy": {"_count": 1, "at": {"_count": 1}}, "Oh": {"_count": 1, "its": {"_count": 1}}, "in": {"_count": 14, "Snape": {"_count": 1}, "Hogsmeade": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 4}, "there": {"_count": 2}, "ages": {"_count": 1}, "that": {"_count": 1}, "my": {"_count": 1}, "this": {"_count": 1}, "case": {"_count": 1}}, "penetrate": {"_count": 1, "that": {"_count": 1}}, "difficult": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 1, "to": {"_count": 1}}, "horrible": {"_count": 1, "happening": {"_count": 1}}, "stupid": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "Stand": {"_count": 2, "aside": {"_count": 2}}, "Malfoy": {"_count": 1, "thinks": {"_count": 1}}, "Back": {"_count": 1, "into": {"_count": 1}}, "quite": {"_count": 3, "as": {"_count": 2}, "like": {"_count": 1}}, "yet": {"_count": 4, "": {"_count": 3}, "Ill": {"_count": 1}}, "anyone": {"_count": 1, "can": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "Fudge": {"_count": 1, "wouldve": {"_count": 1}}, "we": {"_count": 5, "can": {"_count": 2}, "liked": {"_count": 1}, "dont": {"_count": 2}}, "Ive": {"_count": 3, "done": {"_count": 1}, "just": {"_count": 1}, "ever": {"_count": 1}}, "shed": {"_count": 1, "said": {"_count": 1}}, "worse": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "than": {"_count": 1, "approach": {"_count": 1}}, "even": {"_count": 3, "slightly": {"_count": 1}, "Lord": {"_count": 1}, "danker": {"_count": 1}}, "these": {"_count": 1, "kidsll": {"_count": 1}}, "his": {"_count": 1, "dad": {"_count": 1}}, "old": {"_count": 1, "Rita": {"_count": 1}}, "before": {"_count": 4, "you": {"_count": 1}, "": {"_count": 1}, "she": {"_count": 1}, "Mr": {"_count": 1}}, "Hermione": {"_count": 3, "said": {"_count": 1}, "took": {"_count": 1}, "murmured": {"_count": 1}}, "unusual": {"_count": 4, "": {"_count": 2}, "on": {"_count": 1}, "had": {"_count": 1}}, "smaller": {"_count": 1, "than": {"_count": 1}}, "now": {"_count": 1, "until": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "dodgy": {"_count": 1, "though": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 4}, "Fudge": {"_count": 1}, "Tom": {"_count": 1}, "Ravenclaws": {"_count": 1}}, "clearly": {"_count": 1, "It": {"_count": 1}}, "too": {"_count": 1, "horrible": {"_count": 1}}, "less": {"_count": 4, "like": {"_count": 1}, "funny": {"_count": 1}, "of": {"_count": 1}, "than": {"_count": 1}}, "I": {"_count": 7, "could": {"_count": 2}, "can": {"_count": 1}, "obviously": {"_count": 1}, "care": {"_count": 1}, "was": {"_count": 1}, "expect": {"_count": 1}}, "important": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "Im": {"_count": 1}}, "had": {"_count": 1, "happened": {"_count": 1}}, "rash": {"_count": 1, "": {"_count": 1}}, "during": {"_count": 1, "which": {"_count": 1}}, "got": {"_count": 1, "me": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "made": {"_count": 1}}, "its": {"_count": 1, "lets": {"_count": 1}}, "away": {"_count": 1, "yet": {"_count": 1}}, "Thats": {"_count": 1, "because": {"_count": 1}}, "more": {"_count": 7, "efficient": {"_count": 1}, "than": {"_count": 2}, "about": {"_count": 1}, "distracting": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}}, "other": {"_count": 2, "than": {"_count": 2}}, "Ron": {"_count": 2, "said": {"_count": 1}, "mumbled": {"_count": 1}}, "well": {"_count": 1, "send": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "weird": {"_count": 1, "out": {"_count": 1}}, "badly": {"_count": 1, "": {"_count": 1}}, "shes": {"_count": 1, "there": {"_count": 1}}, "er": {"_count": 1, "wrong": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "around": {"_count": 2, "him": {"_count": 2}}, "have": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "is": {"_count": 2, "he": {"_count": 1}, "wrong": {"_count": 1}}, "behind": {"_count": 1, "": {"_count": 1}}, "offered": {"_count": 1, "by": {"_count": 1}}, "unless": {"_count": 1, "he": {"_count": 1}}, "He": {"_count": 1, "never": {"_count": 1}}, "next": {"_count": 1, "day": {"_count": 1}}, "because": {"_count": 2, "we": {"_count": 1}, "Id": {"_count": 1}}, "without": {"_count": 1, "wands": {"_count": 1}}, "nor": {"_count": 1, "see": {"_count": 1}}, "good": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "very": {"_count": 2, "much": {"_count": 1}, "dreadful": {"_count": 1}}, "worth": {"_count": 1, "overhearing": {"_count": 1}}, "partly": {"_count": 1, "perhaps": {"_count": 1}}, "interesting": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "nors": {"_count": 1, "Ron": {"_count": 1}}, "Well": {"_count": 1, "you": {"_count": 1}}, "warier": {"_count": 1, "still": {"_count": 1}}, "Ginny": {"_count": 1, "said": {"_count": 1}}, "when": {"_count": 1, "youre": {"_count": 1}}, "bought": {"_count": 1, "at": {"_count": 1}}, "since": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "will": {"_count": 1, "he": {"_count": 1}}, "anything": {"_count": 2, "he": {"_count": 1}, "at": {"_count": 1}}, "better": {"_count": 1, "": {"_count": 1}}, "exciting": {"_count": 1, "happen": {"_count": 1}}, "foolish": {"_count": 1, "to": {"_count": 1}}, "Miss": {"_count": 1, "Hepzibah": {"_count": 1}}, "insensitive": {"_count": 1, "if": {"_count": 1}}, "either": {"_count": 1, "because": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "Bathilda": {"_count": 1, "may": {"_count": 1}}, "valuable": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "special": {"_count": 1, "going": {"_count": 1}}, "later": {"_count": 1, "than": {"_count": 1}}, "forget": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "We": {"_count": 1, "cant": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "once": {"_count": 1, "you": {"_count": 1}}, "much": {"_count": 1, "said": {"_count": 1}}, "Luciuss": {"_count": 1, "wand": {"_count": 1}}}, "strange": {"_count": 121, "or": {"_count": 2, "mysterious": {"_count": 1}, "suspicious": {"_count": 1}}, "and": {"_count": 11, "mysterious": {"_count": 1}, "splendid": {"_count": 1}, "exciting": {"_count": 1}, "unexpected": {"_count": 1}, "unpleasant": {"_count": 1}, "horrible": {"_count": 1}, "frightening": {"_count": 1}, "even": {"_count": 1}, "low": {"_count": 1}, "dangerous": {"_count": 1}, "without": {"_count": 1}}, "things": {"_count": 4, "often": {"_count": 2}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "vision": {"_count": 1, "a": {"_count": 1}}, "strangers": {"_count": 1, "they": {"_count": 1}}, "ways": {"_count": 1, "Petunia": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "wizards": {"_count": 1, "or": {"_count": 1}}, "about": {"_count": 2, "you": {"_count": 1}, "voicing": {"_count": 1}}, "silver": {"_count": 3, "instruments": {"_count": 2}, "instrument": {"_count": 1}}, "somehow": {"_count": 1, "": {"_count": 1}}, "reason": {"_count": 1, "peppermint": {"_count": 1}}, "dream": {"_count": 2, "": {"_count": 2}}, "plants": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 1}, "be": {"_count": 1}, "stand": {"_count": 1}, "have": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "words": {"_count": 1, "under": {"_count": 1}}, "angle": {"_count": 3, "riddled": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 1}}, "gagging": {"_count": 1, "noise": {"_count": 1}}, "mixture": {"_count": 1, "of": {"_count": 1}}, "rumbling": {"_count": 1, "noise": {"_count": 1}}, "hissing": {"_count": 1, "had": {"_count": 1}}, "likenesses": {"_count": 1, "between": {"_count": 1}}, "tales": {"_count": 1, "they": {"_count": 1}}, "quiver": {"_count": 1, "and": {"_count": 1}}, "new": {"_count": 2, "freedom": {"_count": 1}, "phenomenon": {"_count": 1}}, "splintery": {"_count": 1, "Toothflossing": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "story": {"_count": 1, "Potter": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "idea": {"_count": 2, "an": {"_count": 1}, "that": {"_count": 1}}, "languages": {"_count": 1, "from": {"_count": 1}}, "dazed": {"_count": 1, "look": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "rumors": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 2, "wizards": {"_count": 1}, "Lupins": {"_count": 1}}, "thing": {"_count": 1, "but": {"_count": 1}}, "collection": {"_count": 1, "of": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "advice": {"_count": 1, "": {"_count": 1}}, "dark": {"_count": 1, "foggy": {"_count": 1}}, "sight": {"_count": 1, "met": {"_count": 1}}, "appearance": {"_count": 1, "however": {"_count": 1}}, "substance": {"_count": 1, "into": {"_count": 1}}, "silverywhite": {"_count": 1, "substance": {"_count": 1}}, "behavior": {"_count": 1, "which": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "smile": {"_count": 1, "on": {"_count": 1}}, "accident": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 2}}, "its": {"_count": 1, "not": {"_count": 1}}, "device": {"_count": 1, "in": {"_count": 1}}, "brass": {"_count": 1, "instrument": {"_count": 1}}, "bloke": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 1, "occurred": {"_count": 1}}, "skeletal": {"_count": 1, "creatures": {"_count": 1}}, "even": {"_count": 1, "mad": {"_count": 1}}, "leaping": {"_count": 1, "feeling": {"_count": 1}}, "vibrant": {"_count": 1, "colors": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}, "mood": {"_count": 1, "": {"_count": 1}}, "symptoms": {"_count": 1, "to": {"_count": 1}}, "twinge": {"_count": 1, "of": {"_count": 1}}, "assortment": {"_count": 1, "of": {"_count": 1}}, "location": {"_count": 1, "to": {"_count": 1}}, "feathery": {"_count": 1, "model": {"_count": 1}}, "sometimes": {"_count": 1, "": {"_count": 1}}, "abou": {"_count": 1, "that": {"_count": 1}}, "tongue": {"_count": 1, "that": {"_count": 1}}, "green": {"_count": 1, "light": {"_count": 1}}, "language": {"_count": 2, "again": {"_count": 1}, "he": {"_count": 1}}, "otherworldly": {"_count": 1, "music": {"_count": 1}}, "music": {"_count": 1, "and": {"_count": 1}}, "shapes": {"_count": 1, "Harry": {"_count": 1}}, "impertinent": {"_count": 1, "even": {"_count": 1}}, "connection": {"_count": 1, "that": {"_count": 1}}, "triangular": {"_count": 1, "eye": {"_count": 1}}, "had": {"_count": 1, "happened": {"_count": 1}}, "not": {"_count": 1, "as": {"_count": 1}}, "escape": {"_count": 1, "from": {"_count": 1}}, "mark": {"_count": 1, "": {"_count": 1}}, "fortresslike": {"_count": 1, "place": {"_count": 1}}, "look": {"_count": 1, "half": {"_count": 1}}, "he": {"_count": 1, "came": {"_count": 1}}, "creatures": {"_count": 1, "some": {"_count": 1}}, "that": {"_count": 1, "in": {"_count": 1}}, "happened": {"_count": 1, "as": {"_count": 1}}}, "or": {"_count": 1506, "mysterious": {"_count": 1, "because": {"_count": 1}}, "signs": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 8, "but": {"_count": 1}, "it": {"_count": 1}, "hed": {"_count": 1}, "upset": {"_count": 1}, "much": {"_count": 1}, "terrible": {"_count": 1}, "very": {"_count": 1}, "violently": {"_count": 1}}, "well": {"_count": 8, "be": {"_count": 2}, "see": {"_count": 2}, "nothing": {"_count": 1}, "lose": {"_count": 1}, "all": {"_count": 2}}, "the": {"_count": 43, "movies": {"_count": 1}, "Baronll": {"_count": 1}, "Bludgers": {"_count": 1}, "scuffles": {"_count": 1}, "uprising": {"_count": 1}, "clanking": {"_count": 1}, "power": {"_count": 1}, "Sorting": {"_count": 1}, "other": {"_count": 2}, "swish": {"_count": 1}, "hiss": {"_count": 1}, "sucker": {"_count": 1}, "rotting": {"_count": 1}, "stupid": {"_count": 1}, "CrumpleHorned": {"_count": 2}, "opening": {"_count": 1}, "Quaffle": {"_count": 1}, "space": {"_count": 1}, "Owlery": {"_count": 1}, "courtroom": {"_count": 1}, "Ministry": {"_count": 2}, "overturned": {"_count": 1}, "chance": {"_count": 1}, "crowd": {"_count": 1}, "separation": {"_count": 1}, "twilight": {"_count": 1}, "cards": {"_count": 1}, "ability": {"_count": 1}, "downfall": {"_count": 1}, "whole": {"_count": 1}, "navy": {"_count": 1}, "current": {"_count": 1}, "snake": {"_count": 1}, "water": {"_count": 1}, "respect": {"_count": 1}, "Elder": {"_count": 1}, "matteroffact": {"_count": 1}, "flame": {"_count": 1}, "castle": {"_count": 1}, "sounds": {"_count": 1}}, "rather": {"_count": 6, "as": {"_count": 1}, "Crabbes": {"_count": 1}, "Aunt": {"_count": 1}, "what": {"_count": 1}, "gazed": {"_count": 1}, "thats": {"_count": 1}}, "Mrs": {"_count": 5, "Figgs": {"_count": 1}, "Norris": {"_count": 3}, "Weasley": {"_count": 1}}, "even": {"_count": 12, "a": {"_count": 1}, "possible": {"_count": 1}, "grateful": {"_count": 1}, "Invisibility": {"_count": 1}, "to": {"_count": 2}, "better": {"_count": 1}, "whether": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 2}, "approach": {"_count": 1}}, "maybe": {"_count": 5, "hoped": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "no": {"_count": 1}, "from": {"_count": 1}}, "forty": {"_count": 1, "letters": {"_count": 1}}, "drink": {"_count": 1, "all": {"_count": 1}}, "witches": {"_count": 3, "": {"_count": 1}, "unknown": {"_count": 1}, "wizards": {"_count": 1}}, "angry": {"_count": 2, "": {"_count": 2}}, "similar": {"_count": 1, "4": {"_count": 1}}, "crystal": {"_count": 1, "phials": {"_count": 1}}, "theyd": {"_count": 3, "have": {"_count": 2}, "ve": {"_count": 1}}, "wizard": {"_count": 16, "who": {"_count": 3}, "": {"_count": 3}, "burning": {"_count": 1}, "would": {"_count": 2}, "any": {"_count": 1}, "of": {"_count": 1}, "living": {"_count": 1}, "with": {"_count": 2}, "you": {"_count": 1}, "can": {"_count": 1}}, "phoenixes": {"_count": 1, "are": {"_count": 1}}, "shout": {"_count": 1, "at": {"_count": 1}}, "I": {"_count": 18, "wouldnt": {"_count": 2}, "may": {"_count": 1}, "might": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 1}, "shall": {"_count": 3}, "would": {"_count": 2}, "dunno": {"_count": 2}, "am": {"_count": 1}, "looked": {"_count": 1}, "appear": {"_count": 1}, "swear": {"_count": 1}, "die": {"_count": 1}}, "Blown": {"_count": 1, "up": {"_count": 1}}, "about": {"_count": 3, "my": {"_count": 1}, "Percy": {"_count": 1}, "finding": {"_count": 1}}, "Voldemort": {"_count": 4, "Ron": {"_count": 1}, "under": {"_count": 1}, "will": {"_count": 1}, "at": {"_count": 1}}, "anything": {"_count": 25, "saying": {"_count": 1}, "but": {"_count": 6}, "Offend": {"_count": 1}, "with": {"_count": 1}, "before": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 5}, "he": {"_count": 1}, "its": {"_count": 1}, "Thats": {"_count": 1}, "do": {"_count": 1}, "Im": {"_count": 1}, "nors": {"_count": 1}, "Well": {"_count": 1}, "Ive": {"_count": 1}, "in": {"_count": 1}}, "indeed": {"_count": 5, "anyone": {"_count": 2}, "a": {"_count": 1}, "move": {"_count": 1}, "resisting": {"_count": 1}}, "Ptolemy": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 14, "Granger": {"_count": 1}, "was": {"_count": 1}, "have": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "could": {"_count": 3}, "had": {"_count": 2}, "or": {"_count": 1}, "wanting": {"_count": 1}, "again": {"_count": 1}, "anymore": {"_count": 1}}, "Ron": {"_count": 3, "": {"_count": 3}}, "perhaps": {"_count": 12, "theyd": {"_count": 1}, "it": {"_count": 2}, "she": {"_count": 1}, "he": {"_count": 3}, "to": {"_count": 1}, "a": {"_count": 2}, "imagined": {"_count": 1}, "seconds": {"_count": 1}}, "twice": {"_count": 19, "": {"_count": 3}, "they": {"_count": 1}, "Harry": {"_count": 4}, "he": {"_count": 5}, "Sirius": {"_count": 1}, "before": {"_count": 1}, "she": {"_count": 2}, "simply": {"_count": 1}, "more": {"_count": 1}}, "quickwitted": {"_count": 1, "or": {"_count": 1}}, "any": {"_count": 10, "of": {"_count": 4}, "other": {"_count": 2}, "ingredients": {"_count": 1}, "means": {"_count": 1}, "human": {"_count": 1}, "unofficial": {"_count": 1}}, "not": {"_count": 72, "": {"_count": 34}, "but": {"_count": 4}, "Ron": {"_count": 1}, "sneaked": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 4}, "Harry": {"_count": 5}, "Hagrid": {"_count": 2}, "the": {"_count": 1}, "or": {"_count": 1}, "if": {"_count": 1}, "Ive": {"_count": 1}, "and": {"_count": 1}, "Im": {"_count": 1}, "I": {"_count": 1}, "George": {"_count": 1}, "theyve": {"_count": 1}, "while": {"_count": 1}, "Kreacher": {"_count": 1}, "thought": {"_count": 1}, "to": {"_count": 1}, "Filch": {"_count": 1}, "its": {"_count": 2}, "at": {"_count": 1}, "hed": {"_count": 1}, "they": {"_count": 1}}, "that": {"_count": 12, "twice": {"_count": 1}, "terrible": {"_count": 1}, "Cornelius": {"_count": 1}, "she": {"_count": 2}, "he": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 2}, "number": {"_count": 1}, "there": {"_count": 1}}, "doubled": {"_count": 1, "back": {"_count": 1}}, "tickled": {"_count": 1, "them": {"_count": 1}}, "sneak": {"_count": 1, "up": {"_count": 1}}, "always": {"_count": 1, "flew": {"_count": 1}}, "youll": {"_count": 4, "be": {"_count": 2}, "meet": {"_count": 1}, "pay": {"_count": 1}}, "Ill": {"_count": 9, "knock": {"_count": 1}, "write": {"_count": 1}, "be": {"_count": 2}, "burn": {"_count": 1}, "hex": {"_count": 1}, "have": {"_count": 1}, "think": {"_count": 1}, "kill": {"_count": 1}}, "a": {"_count": 22, "Cleansweep": {"_count": 1}, "horse": {"_count": 1}, "plunderer": {"_count": 1}, "BloodSuckin": {"_count": 1}, "secret": {"_count": 1}, "different": {"_count": 1}, "flesheating": {"_count": 1}, "dense": {"_count": 1}, "new": {"_count": 1}, "liar": {"_count": 1}, "sniff": {"_count": 1}, "bit": {"_count": 1}, "spell": {"_count": 1}, "woman": {"_count": 2}, "cheer": {"_count": 1}, "friendly": {"_count": 1}, "nice": {"_count": 1}, "building": {"_count": 1}, "bird": {"_count": 1}, "myth": {"_count": 1}, "face": {"_count": 1}}, "where": {"_count": 5, "they": {"_count": 1}, "he": {"_count": 3}, "Bathilda": {"_count": 1}}, "worse": {"_count": 1, "expelled": {"_count": 1}}, "really": {"_count": 1, "dangerous": {"_count": 1}}, "theyll": {"_count": 3, "all": {"_count": 1}, "be": {"_count": 1}, "worry": {"_count": 1}}, "straying": {"_count": 1, "off": {"_count": 1}}, "catch": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "people": {"_count": 1, "telling": {"_count": 1}}, "something": {"_count": 68, "snapped": {"_count": 1}, "why": {"_count": 1}, "if": {"_count": 1}, "of": {"_count": 1}, "Ive": {"_count": 1}, "it": {"_count": 1}, "But": {"_count": 1}, "": {"_count": 39}, "was": {"_count": 1}, "else": {"_count": 1}, "said": {"_count": 5}, "and": {"_count": 1}, "will": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}, "Hermione": {"_count": 1}, "hes": {"_count": 1}, "did": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "thats": {"_count": 1}, "awful": {"_count": 1}, "its": {"_count": 1}, "Wha": {"_count": 1}, "An": {"_count": 1}, "more": {"_count": 1}}, "George": {"_count": 2, "Weasley": {"_count": 1}, "Mrs": {"_count": 1}}, "Notable": {"_count": 1, "Magical": {"_count": 1}}, "think": {"_count": 1, "anything": {"_count": 1}}, "less": {"_count": 9, "than": {"_count": 3}, "everything": {"_count": 1}, "the": {"_count": 1}, "worried": {"_count": 1}, "what": {"_count": 1}, "whats": {"_count": 1}, "not": {"_count": 1}}, "truth": {"_count": 1, "": {"_count": 1}}, "been": {"_count": 2, "driven": {"_count": 1}, "planning": {"_count": 1}}, "why": {"_count": 4, "they": {"_count": 1}, "would": {"_count": 1}, "such": {"_count": 1}, "it": {"_count": 1}}, "practicing": {"_count": 1, "wand": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "Fluffy": {"_count": 1, "": {"_count": 1}}, "Filch": {"_count": 1, "wouldnt": {"_count": 1}}, "yehll": {"_count": 1, "get": {"_count": 1}}, "Fang": {"_count": 1, "said": {"_count": 1}}, "two": {"_count": 49, "to": {"_count": 2}, "then": {"_count": 4}, "little": {"_count": 1}, "of": {"_count": 6}, "wizards": {"_count": 1}, "later": {"_count": 1}, "but": {"_count": 1}, "especially": {"_count": 1}, "even": {"_count": 1}, "an": {"_count": 1}, "apparently": {"_count": 1}, "He": {"_count": 1}, "toward": {"_count": 1}, "": {"_count": 6}, "the": {"_count": 2}, "and": {"_count": 2}, "Harry": {"_count": 2}, "still": {"_count": 1}, "Voldemorts": {"_count": 1}, "keeping": {"_count": 1}, "he": {"_count": 2}, "Ron": {"_count": 2}, "before": {"_count": 2}, "people": {"_count": 1}, "or": {"_count": 1}, "looking": {"_count": 1}, "wouldnt": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Bane": {"_count": 1, "this": {"_count": 1}}, "because": {"_count": 13, "they": {"_count": 5}, "there": {"_count": 1}, "he": {"_count": 3}, "someone": {"_count": 1}, "I": {"_count": 1}, "their": {"_count": 1}, "people": {"_count": 1}}, "anyone": {"_count": 4, "else": {"_count": 2}, "can": {"_count": 1}, "around": {"_count": 1}}, "turn": {"_count": 1, "it": {"_count": 1}}, "ghostie": {"_count": 1, "or": {"_count": 1}}, "wee": {"_count": 1, "student": {"_count": 1}}, "Madam": {"_count": 4, "Pomfrey": {"_count": 3}, "Boness": {"_count": 1}}, "drinking": {"_count": 1, "Elixir": {"_count": 1}}, "as": {"_count": 7, "normal": {"_count": 1}, "far": {"_count": 1}, "directly": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}, "close": {"_count": 1}}, "Christmas": {"_count": 1, "or": {"_count": 1}}, "knocking": {"_count": 1, "out": {"_count": 1}}, "nod": {"_count": 1, "he": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "five": {"_count": 6, "chimneys": {"_count": 1}, "girls": {"_count": 1}, "witches": {"_count": 1}, "more": {"_count": 1}, "people": {"_count": 1}, "of": {"_count": 1}}, "Charlie": {"_count": 1, "or": {"_count": 1}}, "Percy": {"_count": 1, "Perfect": {"_count": 1}}, "nine": {"_count": 3, "sausages": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "six": {"_count": 4, "gnomes": {"_count": 1}, "times": {"_count": 1}, "feet": {"_count": 1}, "elongated": {"_count": 1}}, "Ginny": {"_count": 2, "": {"_count": 2}}, "so": {"_count": 59, "hold": {"_count": 1}, "owls": {"_count": 1}, "tufty": {"_count": 1}, "as": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 7}, "Ron": {"_count": 2}, "toward": {"_count": 1}, "said": {"_count": 1}, "Madam": {"_count": 1}, "during": {"_count": 2}, "Hermione": {"_count": 1}, "of": {"_count": 1}, "when": {"_count": 1}, "keeping": {"_count": 1}, "Karkaroff": {"_count": 1}, "girls": {"_count": 1}, "books": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 3}, "magical": {"_count": 1}, "he": {"_count": 5}, "ago": {"_count": 1}, "Dumbledore": {"_count": 1}, "to": {"_count": 3}, "horseless": {"_count": 1}, "she": {"_count": 2}, "above": {"_count": 1}, "it": {"_count": 3}, "centaurs": {"_count": 1}, "staring": {"_count": 1}, "making": {"_count": 1}, "they": {"_count": 2}, "rumor": {"_count": 1}, "Hagrid": {"_count": 1}, "I": {"_count": 1}, "before": {"_count": 1}, "people": {"_count": 1}, "from": {"_count": 1}}, "seven": {"_count": 7, "Muggles": {"_count": 1}, "times": {"_count": 1}, "girls": {"_count": 1}, "o": {"_count": 1}, "": {"_count": 1}, "thestrals": {"_count": 1}, "of": {"_count": 1}}, "he": {"_count": 10, "had": {"_count": 1}, "wouldnt": {"_count": 4}, "would": {"_count": 1}, "could": {"_count": 1}, "rounded": {"_count": 1}, "was": {"_count": 1}, "just": {"_count": 1}}, "Mandragora": {"_count": 1, "is": {"_count": 1}}, "cursed": {"_count": 2, "to": {"_count": 1}, "or": {"_count": 1}}, "your": {"_count": 6, "mommyll": {"_count": 1}, "mother": {"_count": 1}, "charming": {"_count": 1}, "father": {"_count": 1}, "memory": {"_count": 1}, "concentration": {"_count": 1}}, "Celebrity": {"_count": 1, "is": {"_count": 1}}, "happy": {"_count": 1, "about": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 2}, "Dreadful": {"_count": 1}, "some": {"_count": 1}, "ten": {"_count": 1}, "Enid": {"_count": 1}}, "date": {"_count": 1, "then": {"_count": 1}}, "dead": {"_count": 3, "": {"_count": 2}, "we": {"_count": 1}}, "look": {"_count": 1, "too": {"_count": 1}}, "die": {"_count": 3, "trying": {"_count": 2}, "but": {"_count": 1}}, "hadnt": {"_count": 1, "told": {"_count": 1}}, "boils": {"_count": 1, "and": {"_count": 1}}, "puzzled": {"_count": 1, "or": {"_count": 1}}, "spit": {"_count": 1, "poison": {"_count": 1}}, "when": {"_count": 4, "George": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "shed": {"_count": 1, "set": {"_count": 1}}, "what": {"_count": 14, "": {"_count": 5}, "attacked": {"_count": 1}, "hed": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "language": {"_count": 1}, "I": {"_count": 1}, "whatever": {"_count": 1}, "he": {"_count": 1}, "petty": {"_count": 1}}, "dentist": {"_count": 1, "halfpast": {"_count": 1}}, "saved": {"_count": 1, "a": {"_count": 1}}, "itd": {"_count": 1, "be": {"_count": 1}}, "her": {"_count": 8, "nerve": {"_count": 1}, "face": {"_count": 1}, "feet": {"_count": 1}, "robes": {"_count": 1}, "case": {"_count": 1}, "telescope": {"_count": 1}, "expression": {"_count": 1}, "fathers": {"_count": 1}}, "Idve": {"_count": 1, "ditched": {"_count": 1}}, "at": {"_count": 14, "least": {"_count": 13}, "mealtimes": {"_count": 1}}, "suspension": {"_count": 1, "of": {"_count": 1}}, "more": {"_count": 8, "deadly": {"_count": 1}, "ago": {"_count": 1}, "of": {"_count": 2}, "students": {"_count": 2}, "said": {"_count": 1}, "and": {"_count": 1}}, "who": {"_count": 3, "we": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 1}}, "Justin": {"_count": 1, "hurrying": {"_count": 1}}, "Hagrid": {"_count": 3, "turning": {"_count": 1}, "had": {"_count": 1}, "who": {"_count": 1}}, "his": {"_count": 3, "and": {"_count": 1}, "shadow": {"_count": 1}, "henchmen": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Dumbledore": {"_count": 1}, "Trelawney": {"_count": 1}}, "Dumbledore": {"_count": 4, "announcing": {"_count": 1}, "or": {"_count": 1}, "could": {"_count": 1}, "who": {"_count": 1}}, "guardian": {"_count": 4, "to": {"_count": 2}, "But": {"_count": 1}, "must": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 2}}, "therell": {"_count": 1, "be": {"_count": 1}}, "would": {"_count": 7, "he": {"_count": 3}, "you": {"_count": 1}, "they": {"_count": 1}, "not": {"_count": 1}, "ever": {"_count": 1}}, "hed": {"_count": 2, "find": {"_count": 1}, "never": {"_count": 1}}, "nineteen": {"_count": 1, "at": {"_count": 1}}, "Muggle": {"_count": 1, "": {"_count": 1}}, "eat": {"_count": 1, "whatever": {"_count": 1}}, "else": {"_count": 37, "discussing": {"_count": 1}, "shall": {"_count": 1}, "whispering": {"_count": 1}, "in": {"_count": 1}, "letting": {"_count": 1}, "that": {"_count": 2}, "circle": {"_count": 1}, "demand": {"_count": 1}, "as": {"_count": 1}, "looking": {"_count": 1}, "slithered": {"_count": 1}, "following": {"_count": 1}, "wiped": {"_count": 1}, "One": {"_count": 1}, "spout": {"_count": 1}, "unconscious": {"_count": 1}, "feeling": {"_count": 1}, "you": {"_count": 1}, "waved": {"_count": 1}, "scratching": {"_count": 1}, "an": {"_count": 1}, "dashing": {"_count": 1}, "hidden": {"_count": 1}, "visit": {"_count": 1}, "to": {"_count": 2}, "faking": {"_count": 1}, "fled": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "woven": {"_count": 1}, "greeting": {"_count": 1}, "counting": {"_count": 1}, "simply": {"_count": 1}, "a": {"_count": 1}, "being": {"_count": 1}}, "sleep": {"_count": 1, "at": {"_count": 1}}, "hissing": {"_count": 2, "": {"_count": 1}, "Well": {"_count": 1}}, "garden": {"_count": 1, "rat": {"_count": 1}}, "quite": {"_count": 1, "a": {"_count": 1}}, "itll": {"_count": 2, "wake": {"_count": 1}, "be": {"_count": 1}}, "someone": {"_count": 2, "will": {"_count": 1}, "": {"_count": 1}}, "we": {"_count": 6, "can": {"_count": 1}, "go": {"_count": 1}, "win": {"_count": 1}, "wont": {"_count": 2}, "start": {"_count": 1}}, "whatever": {"_count": 16, "he": {"_count": 2}, "she": {"_count": 2}, "it": {"_count": 4}, "like": {"_count": 1}, "the": {"_count": 2}, "else": {"_count": 1}, "her": {"_count": 1}, "your": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 1}}, "Slytherin": {"_count": 1, "": {"_count": 1}}, "disguises": {"_count": 1, "or": {"_count": 1}}, "excuses": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 3, "a": {"_count": 3}}, "sank": {"_count": 1, "onto": {"_count": 1}}, "clamped": {"_count": 1, "them": {"_count": 1}}, "summat": {"_count": 2, "": {"_count": 2}}, "rain": {"_count": 1, "could": {"_count": 1}}, "were": {"_count": 2, "Snape": {"_count": 1}, "going": {"_count": 1}}, "worry": {"_count": 1, "": {"_count": 1}}, "opponent": {"_count": 1, "everyone": {"_count": 1}}, "complain": {"_count": 1, "but": {"_count": 1}}, "did": {"_count": 4, "could": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "Malfoy": {"_count": 1}}, "attack": {"_count": 1, "anyone": {"_count": 1}}, "SecretKeeper": {"_count": 1, "and": {"_count": 1}}, "Gobstones": {"_count": 1, "": {"_count": 1}}, "intrigued": {"_count": 1, "by": {"_count": 1}}, "right": {"_count": 1, "until": {"_count": 1}}, "do": {"_count": 2, "anything": {"_count": 1}, "": {"_count": 1}}, "rats": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "broke": {"_count": 1}}, "fear": {"_count": 4, "": {"_count": 2}, "of": {"_count": 1}, "he": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Foul": {"_count": 1, "": {"_count": 1}}, "brandishing": {"_count": 1, "banners": {"_count": 1}}, "watching": {"_count": 2, "the": {"_count": 1}, "your": {"_count": 1}}, "opportunity": {"_count": 1, "to": {"_count": 1}}, "comfort": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 19, "following": {"_count": 1}, "it": {"_count": 7}, "he": {"_count": 2}, "she": {"_count": 3}, "that": {"_count": 1}, "kidnapped": {"_count": 1}, "contaminated": {"_count": 1}, "pushed": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 1}}, "shook": {"_count": 1, "": {"_count": 1}}, "whom": {"_count": 1, "to": {"_count": 1}}, "youd": {"_count": 1, "have": {"_count": 1}}, "speak": {"_count": 5, "": {"_count": 3}, "as": {"_count": 1}, "to": {"_count": 1}}, "to": {"_count": 18, "overrule": {"_count": 1}, "scare": {"_count": 1}, "come": {"_count": 1}, "look": {"_count": 1}, "belong": {"_count": 1}, "learn": {"_count": 1}, "remember": {"_count": 1}, "think": {"_count": 1}, "the": {"_count": 2}, "show": {"_count": 1}, "talk": {"_count": 1}, "write": {"_count": 1}, "contact": {"_count": 1}, "vomit": {"_count": 1}, "give": {"_count": 1}, "declaim": {"_count": 1}, "argue": {"_count": 1}}, "Id": {"_count": 1, "think": {"_count": 1}}, "future": {"_count": 1, "selves": {"_count": 1}}, "never": {"_count": 3, "": {"_count": 2}, "isnt": {"_count": 1}}, "voices": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "seizure": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 8, "that": {"_count": 1}, "ever": {"_count": 1}, "the": {"_count": 1}, "Snape": {"_count": 1}, "taken": {"_count": 1}, "it": {"_count": 1}, "anything": {"_count": 1}, "never": {"_count": 1}}, "tell": {"_count": 2, "them": {"_count": 2}}, "sat": {"_count": 1, "down": {"_count": 1}}, "say": {"_count": 1, "anything": {"_count": 1}}, "quills": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "drive": {"_count": 1}}, "believed": {"_count": 1, "in": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "platform": {"_count": 1, "nine": {"_count": 1}}, "cant": {"_count": 1, "we": {"_count": 1}}, "bellpulls": {"_count": 1, "or": {"_count": 1}}, "weather": {"_count": 1, "vanes": {"_count": 1}}, "has": {"_count": 2, "everything": {"_count": 1}, "he": {"_count": 1}}, "other": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "building": {"_count": 1}}, "their": {"_count": 6, "whitegold": {"_count": 1}, "tailsll": {"_count": 1}, "erstwhile": {"_count": 1}, "brains": {"_count": 1}, "talent": {"_count": 1}, "total": {"_count": 1}}, "green": {"_count": 2, "": {"_count": 1}, "steak": {"_count": 1}}, "human": {"_count": 1, "as": {"_count": 1}}, "are": {"_count": 4, "they": {"_count": 1}, "you": {"_count": 2}, "we": {"_count": 1}}, "use": {"_count": 1, "a": {"_count": 1}}, "somewhere": {"_count": 2, "couldnt": {"_count": 1}, "similar": {"_count": 1}}, "it": {"_count": 7, "might": {"_count": 3}, "would": {"_count": 2}, "will": {"_count": 1}, "could": {"_count": 1}}, "go": {"_count": 1, "away": {"_count": 1}}, "students": {"_count": 1, "clapped": {"_count": 1}}, "herself": {"_count": 3, "in": {"_count": 1}, "to": {"_count": 2}}, "older": {"_count": 1, "will": {"_count": 1}}, "she": {"_count": 9, "is": {"_count": 2}, "answered": {"_count": 1}, "might": {"_count": 1}, "that": {"_count": 1}, "can": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}, "wouldnt": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "normal": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "knives": {"_count": 1, "to": {"_count": 1}}, "simply": {"_count": 2, "because": {"_count": 2}}, "wave": {"_count": 2, "when": {"_count": 1}, "or": {"_count": 1}}, "over": {"_count": 1, "who": {"_count": 1}}, "hang": {"_count": 1, "around": {"_count": 1}}, "give": {"_count": 1, "any": {"_count": 1}}, "have": {"_count": 3, "I": {"_count": 1}, "spotted": {"_count": 1}, "you": {"_count": 1}}, "accept": {"_count": 1, "help": {"_count": 1}}, "otherwise": {"_count": 3, "on": {"_count": 1}, "to": {"_count": 1}, "made": {"_count": 1}}, "stay": {"_count": 2, "here": {"_count": 1}, "put": {"_count": 1}}, "get": {"_count": 2, "over": {"_count": 1}, "near": {"_count": 1}}, "Thats": {"_count": 1, "not": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "bumps": {"_count": 1, "then": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "eight": {"_count": 2, "to": {"_count": 1}, "feet": {"_count": 1}}, "rage": {"_count": 1, "he": {"_count": 1}}, "Snape": {"_count": 2, "": {"_count": 1}, "until": {"_count": 1}}, "just": {"_count": 3, "turn": {"_count": 1}, "since": {"_count": 1}, "did": {"_count": 1}}, "care": {"_count": 2, "": {"_count": 1}, "whether": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 2}}, "yer": {"_count": 1, "father": {"_count": 1}}, "blasting": {"_count": 1, "off": {"_count": 1}}, "Sirius": {"_count": 3, "": {"_count": 2}, "would": {"_count": 1}}, "walk": {"_count": 1, "right": {"_count": 1}}, "said": {"_count": 2, "anything": {"_count": 1}, "an": {"_count": 1}}, "Powers": {"_count": 1, "You": {"_count": 1}}, "anywhere": {"_count": 1, "near": {"_count": 1}}, "votever": {"_count": 1, "his": {"_count": 1}}, "somebody": {"_count": 4, "else": {"_count": 3}, "who": {"_count": 1}}, "on": {"_count": 2, "purpose": {"_count": 1}, "the": {"_count": 1}}, "gas": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "wind": {"_count": 1}}, "hear": {"_count": 4, "him": {"_count": 1}, "": {"_count": 1}, "their": {"_count": 1}, "where": {"_count": 1}}, "badly": {"_count": 1, "he": {"_count": 1}}, "earrings": {"_count": 1, "with": {"_count": 1}}, "should": {"_count": 1, "he": {"_count": 1}}, "send": {"_count": 3, "up": {"_count": 1}, "them": {"_count": 1}, "me": {"_count": 1}}, "Cedric": {"_count": 1, "or": {"_count": 1}}, "reason": {"_count": 1, "He": {"_count": 1}}, "prevent": {"_count": 1, "you": {"_count": 1}}, "McGonagall": {"_count": 1, "found": {"_count": 1}}, "feel": {"_count": 3, "anymore": {"_count": 1}, "": {"_count": 1}, "my": {"_count": 1}}, "feeling": {"_count": 1, "particularly": {"_count": 1}}, "out": {"_count": 6, "as": {"_count": 1}, "of": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "keep": {"_count": 1, "Hagrid": {"_count": 1}}, "decide": {"_count": 1, "what": {"_count": 1}}, "jumped": {"_count": 1, "backward": {"_count": 1}}, "badger": {"_count": 1, "him": {"_count": 1}}, "some": {"_count": 6, "sort": {"_count": 1}, "strange": {"_count": 1}, "other": {"_count": 2}, "Slytherins": {"_count": 1}, "tooding": {"_count": 1}}, "almost": {"_count": 1, "every": {"_count": 1}}, "shooting": {"_count": 1, "nasty": {"_count": 1}}, "Disapparating": {"_count": 1, "": {"_count": 1}}, "resist": {"_count": 1, "the": {"_count": 1}}, "face": {"_count": 1, "visible": {"_count": 1}}, "outside": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "wand": {"_count": 1, "could": {"_count": 1}}, "anger": {"_count": 2, "They": {"_count": 1}, "there": {"_count": 1}}, "potions": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 2, "happy": {"_count": 1}, "house": {"_count": 1}}, "letterbox": {"_count": 1, "": {"_count": 1}}, "bewitched": {"_count": 1, "into": {"_count": 1}}, "Mumll": {"_count": 1, "be": {"_count": 1}}, "death": {"_count": 2, "": {"_count": 1}, "would": {"_count": 1}}, "there": {"_count": 1, "wont": {"_count": 1}}, "lay": {"_count": 1, "exhausted": {"_count": 1}}, "smoke": {"_count": 2, "": {"_count": 1}, "issued": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "witch": {"_count": 1, "himself": {"_count": 1}}, "Muggles": {"_count": 2, "present": {"_count": 1}, "friends": {"_count": 1}}, "exciting": {"_count": 1, "as": {"_count": 1}}, "Kingsley": {"_count": 1, "to": {"_count": 1}}, "Victim": {"_count": 1, "": {"_count": 1}}, "unhinged": {"_count": 1, "": {"_count": 1}}, "suffer": {"_count": 1, "my": {"_count": 1}}, "Nevilles": {"_count": 1, "which": {"_count": 1}}, "failures": {"_count": 1, "are": {"_count": 1}}, "\u2018No": {"_count": 1, "Professor": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "do": {"_count": 1}, "please": {"_count": 1}}, "lies": {"_count": 1, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 2}, "?": {"_count": 4}}, "or": {"_count": 6, "Puking": {"_count": 1}, "kill": {"_count": 1}, "crack": {"_count": 1}, "Tonks": {"_count": 1}, "something": {"_count": 1}, "he": {"_count": 1}}, "Puking": {"_count": 1, "Pastilles": {"_count": 1}}, "Fainting": {"_count": 1, "Fancies": {"_count": 1}}, "dangling": {"_count": 1, "off": {"_count": 1}}, "wood": {"_count": 1, "from": {"_count": 1}}, "placate": {"_count": 1, "it": {"_count": 1}}, "tank": {"_count": 1, "if": {"_count": 1}}, "playing": {"_count": 1, "Quidditch": {"_count": 1}}, "will": {"_count": 3, "I": {"_count": 1}, "a": {"_count": 1}, "turn": {"_count": 1}}, "\u2018cauldron": {"_count": 1, "or": {"_count": 1}}, "\u2018Snape": {"_count": 1, "": {"_count": 1}}, "risk": {"_count": 2, "losing": {"_count": 1}, "being": {"_count": 1}}, "guts": {"_count": 1, "or": {"_count": 1}}, "tortured": {"_count": 1, "or": {"_count": 1}}, "anybody": {"_count": 2, "else": {"_count": 2}}, "Club": {"_count": 3, "is": {"_count": 1}, "may": {"_count": 1}, "that": {"_count": 1}}, "secret": {"_count": 1, "Defense": {"_count": 1}}, "three": {"_count": 3, "feet": {"_count": 1}, "teachers": {"_count": 1}, "hours": {"_count": 1}}, "enemies": {"_count": 1, "are": {"_count": 1}}, "wince": {"_count": 1, "as": {"_count": 1}}, "unwilling": {"_count": 1, "to": {"_count": 1}}, "eighty": {"_count": 1, "said": {"_count": 1}}, "purple": {"_count": 1, "flushed": {"_count": 1}}, "disgust": {"_count": 1, "it": {"_count": 1}}, "ten": {"_count": 2, "Harry": {"_count": 1}, "years": {"_count": 1}}, "asleep": {"_count": 1, "it": {"_count": 1}}, "Arthur": {"_count": 1, "might": {"_count": 1}}, "extra": {"_count": 1, "hands": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "Neville": {"_count": 2, "next": {"_count": 1}, "Gryffindor": {"_count": 1}}, "Disapparate": {"_count": 2, "inside": {"_count": 1}, "within": {"_count": 1}}, "later": {"_count": 4, "youll": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "anyway": {"_count": 1}}, "visited": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "consent": {"_count": 1, "of": {"_count": 1}}, "offering": {"_count": 1, "everyone": {"_count": 1}}, "\u2018Professor": {"_count": 1, "at": {"_count": 1}}, "defend": {"_count": 1, "yourself": {"_count": 1}}, "remember": {"_count": 1, "or": {"_count": 1}}, "lying": {"_count": 1, "down": {"_count": 1}}, "cared": {"_count": 1, "": {"_count": 1}}, "accidents": {"_count": 1, "working": {"_count": 1}}, "moods": {"_count": 1, "that": {"_count": 1}}, "cheerfulness": {"_count": 1, "that": {"_count": 1}}, "bows": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "it": {"_count": 1}}, "guessed": {"_count": 1, "he": {"_count": 1}}, "storeroom": {"_count": 1, "": {"_count": 1}}, "boulders": {"_count": 1, "arms": {"_count": 1}}, "folded": {"_count": 1, "tightly": {"_count": 1}}, "playthings": {"_count": 1, "of": {"_count": 1}}, "change": {"_count": 1, "that": {"_count": 1}}, "bird": {"_count": 1, "wings": {"_count": 1}}, "shake": {"_count": 2, "your": {"_count": 2}}, "glass": {"_count": 1, "of": {"_count": 1}}, "fizzling": {"_count": 1, "to": {"_count": 1}}, "accompany": {"_count": 1, "Montague": {"_count": 1}}, "sixteen": {"_count": 1, "around": {"_count": 1}}, "having": {"_count": 1, "jars": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "Untransfigure": {"_count": 1, "in": {"_count": 1}}, "higher": {"_count": 1, "at": {"_count": 1}}, "embarrassed": {"_count": 1, "his": {"_count": 1}}, "Flitwick": {"_count": 1, "could": {"_count": 1}}, "barricade": {"_count": 1, "behind": {"_count": 1}}, "anythin": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 3, "neck": {"_count": 1}, "doubt": {"_count": 1}, "concern": {"_count": 1}}, "whether": {"_count": 2, "he": {"_count": 1}, "this": {"_count": 1}}, "figure": {"_count": 1, "": {"_count": 1}}, "eye": {"_count": 1, "by": {"_count": 1}}, "lead": {"_count": 1, "to": {"_count": 1}}, "detailed": {"_count": 1, "yet": {"_count": 1}}, "insult": {"_count": 1, "Harry": {"_count": 1}}, "persons": {"_count": 1, "unknown": {"_count": 1}}, "threats": {"_count": 1, "we": {"_count": 1}}, "Luna": {"_count": 3, "": {"_count": 1}, "or": {"_count": 1}, "could": {"_count": 1}}, "fury": {"_count": 1, "course": {"_count": 1}}, "veil": {"_count": 1, "which": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "suggest": {"_count": 1, "that": {"_count": 1}}, "you": {"_count": 3, "get": {"_count": 1}, "because": {"_count": 1}, "could": {"_count": 1}}, "hasnt": {"_count": 1, "Dumbledore": {"_count": 1}}, "watch": {"_count": 1, "your": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "snuffle": {"_count": 1, "of": {"_count": 1}}, "examine": {"_count": 1, "a": {"_count": 1}}, "notice": {"_count": 1, "": {"_count": 1}}, "sadness": {"_count": 2, "or": {"_count": 1}, "than": {"_count": 1}}, "fifty": {"_count": 1, "years": {"_count": 1}}, "harmed": {"_count": 1, "by": {"_count": 1}}, "knowing": {"_count": 1, "but": {"_count": 1}}, "kill": {"_count": 1, "them": {"_count": 1}}, "victim": {"_count": 1, "there": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "end": {"_count": 1, "in": {"_count": 1}}, "alarm": {"_count": 1, "as": {"_count": 1}}, "watched": {"_count": 1, "he": {"_count": 1}}, "brown": {"_count": 1, "leather": {"_count": 1}}, "allow": {"_count": 1, "him": {"_count": 1}}, "joke": {"_count": 1, "or": {"_count": 1}}, "trap": {"_count": 1, "": {"_count": 1}}, "enchantment": {"_count": 1, "has": {"_count": 1}}, "curse": {"_count": 2, "that": {"_count": 1}, "if": {"_count": 1}}, "grounds": {"_count": 1, "said": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "crack": {"_count": 1, "up": {"_count": 1}}, "frighten": {"_count": 1, "them": {"_count": 1}}, "instructions": {"_count": 1, "for": {"_count": 1}}, "showing": {"_count": 1, "you": {"_count": 1}}, "dangerous": {"_count": 3, "was": {"_count": 1}, "isnt": {"_count": 1}, "Easy": {"_count": 1}}, "pairs": {"_count": 1, "of": {"_count": 1}}, "jinxes": {"_count": 1, "": {"_count": 1}}, "wouldnt": {"_count": 1, "do": {"_count": 1}}, "greeting": {"_count": 1, "nor": {"_count": 1}}, "influential": {"_count": 1, "everyone": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "suspicious": {"_count": 1, "within": {"_count": 1}}, "letting": {"_count": 1, "in": {"_count": 1}}, "strangely": {"_count": 1, "contorted": {"_count": 1}}, "provoke": {"_count": 1, "the": {"_count": 1}}, "scales": {"_count": 1, "or": {"_count": 1}}, "imitate": {"_count": 1, "love": {"_count": 1}}, "obsession": {"_count": 1, "": {"_count": 1}}, "elections": {"_count": 1, "": {"_count": 1}}, "Zabini": {"_count": 1, "perhaps": {"_count": 1}}, "thanking": {"_count": 1, "Ogden": {"_count": 1}}, "hex": {"_count": 1, "on": {"_count": 1}}, "existence": {"_count": 1, "from": {"_count": 1}}, "suspect": {"_count": 1, "about": {"_count": 1}}, "blinking": {"_count": 1, "": {"_count": 1}}, "Dark": {"_count": 1, "object": {"_count": 1}}, "bulky": {"_count": 1, "something": {"_count": 1}}, "Katie": {"_count": 1, "wouldve": {"_count": 1}}, "Goyle": {"_count": 4, "or": {"_count": 1}, "pretending": {"_count": 1}, "but": {"_count": 1}, "anywhere": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "speculation": {"_count": 1, "however": {"_count": 1}}, "vague": {"_count": 1, "about": {"_count": 1}}, "Dennis": {"_count": 1, "Bishop": {"_count": 1}}, "\u2018sir": {"_count": 1, "": {"_count": 1}}, "companionship": {"_count": 1, "on": {"_count": 1}}, "Slughorn": {"_count": 2, "have": {"_count": 1}, "now": {"_count": 1}}, "pretending": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "heard": {"_count": 3, "anything": {"_count": 1}, "of": {"_count": 1}, "about": {"_count": 1}}, "fivehour": {"_count": 1, "sessions": {"_count": 1}}, "might": {"_count": 1, "not": {"_count": 1}}, "backup": {"_count": 1, "these": {"_count": 1}}, "whole": {"_count": 1, "that": {"_count": 1}}, "find": {"_count": 1, "it": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "before": {"_count": 2, "the": {"_count": 2}}, "impressing": {"_count": 1, "fellow": {"_count": 1}}, "aggression": {"_count": 1, "at": {"_count": 1}}, "Legilimency": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 2, "house": {"_count": 1}, "": {"_count": 1}}, "lower": {"_count": 1, "seats": {"_count": 1}}, "its": {"_count": 4, "detention": {"_count": 2}, "invitation": {"_count": 1}, "garden": {"_count": 1}}, "Veritaserum": {"_count": 1, "": {"_count": 1}}, "cheats": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "is": {"_count": 1}}, "from": {"_count": 2, "procuring": {"_count": 1}, "Rita": {"_count": 1}}, "heading": {"_count": 1, "down": {"_count": 1}}, "Dobby": {"_count": 1, "will": {"_count": 1}}, "bewitching": {"_count": 1, "him": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "superiority": {"_count": 1, "none": {"_count": 1}}, "suspected": {"_count": 2, "regarding": {"_count": 1}, "about": {"_count": 1}}, "destroyed": {"_count": 1, "one": {"_count": 1}}, "take": {"_count": 2, "a": {"_count": 1}, "up": {"_count": 1}}, "possess": {"_count": 1, "somebody": {"_count": 1}}, "planted": {"_count": 1, "on": {"_count": 1}}, "steal": {"_count": 1, "one": {"_count": 1}}, "if": {"_count": 2, "the": {"_count": 1}, "anyone": {"_count": 1}}, "invisible": {"_count": 1, "I": {"_count": 1}}, "old": {"_count": 1, "potion": {"_count": 1}}, "Ravenclaw": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 7, "Gryffindors": {"_count": 1}, "Harry": {"_count": 1}, "Ariana": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 1}}, "Gryffindors": {"_count": 1, "": {"_count": 1}}, "riches": {"_count": 1, "": {"_count": 1}}, "Got": {"_count": 1, "to": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "failure": {"_count": 1, "in": {"_count": 1}}, "destroy": {"_count": 1, "the": {"_count": 1}}, "graffitied": {"_count": 1, "or": {"_count": 1}}, "stolen": {"_count": 1, "": {"_count": 1}}, "groan": {"_count": 1, "": {"_count": 1}}, "Siriuss": {"_count": 1, "names": {"_count": 1}}, "lost": {"_count": 1, "the": {"_count": 1}}, "commiserated": {"_count": 1, "in": {"_count": 1}}, "possibly": {"_count": 1, "several": {"_count": 1}}, "Dean": {"_count": 1, "": {"_count": 1}}, "female": {"_count": 1, "": {"_count": 1}}, "\u2018go": {"_count": 1, "back": {"_count": 1}}, "for": {"_count": 2, "Rons": {"_count": 1}, "someone": {"_count": 1}}, "frightening": {"_count": 1, "": {"_count": 1}}, "sweep": {"_count": 1, "of": {"_count": 1}}, "sand": {"_count": 1, "": {"_count": 1}}, "remove": {"_count": 1, "his": {"_count": 1}}, "siphoned": {"_count": 1, "away": {"_count": 1}}, "render": {"_count": 1, "me": {"_count": 1}}, "distress": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 1, "said": {"_count": 1}}, "hell": {"_count": 1, "kill": {"_count": 1}}, "stand": {"_count": 1, "aside": {"_count": 1}}, "madness": {"_count": 2, "No": {"_count": 1}, "came": {"_count": 1}}, "died": {"_count": 1, "": {"_count": 1}}, "jeering": {"_count": 1, "the": {"_count": 1}}, "explain": {"_count": 1, "": {"_count": 1}}, "horror": {"_count": 1, "or": {"_count": 1}}, "beard": {"_count": 1, "was": {"_count": 1}}, "headmistress": {"_count": 3, "has": {"_count": 1}, "ever": {"_count": 1}, "remained": {"_count": 1}}, "be": {"_count": 1, "interrogated": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "nearly": {"_count": 1, "so": {"_count": 1}}, "Ravenclaws": {"_count": 2, "": {"_count": 2}}, "Axebanger": {"_count": 1, "ever": {"_count": 1}}, "Dont": {"_count": 1, "do": {"_count": 1}}, "uses": {"_count": 1, "the": {"_count": 1}}, "regulated": {"_count": 1, "by": {"_count": 1}}, "updated": {"_count": 1, "them": {"_count": 1}}, "vain": {"_count": 1, "he": {"_count": 1}}, "wretched": {"_count": 1, "and": {"_count": 1}}, "youth": {"_count": 1, "it": {"_count": 1}}, "last": {"_count": 1, "as": {"_count": 1}}, "put": {"_count": 1, "on": {"_count": 1}}, "leaned": {"_count": 1, "up": {"_count": 1}}, "Apparate": {"_count": 1, "in": {"_count": 1}}, "Moody": {"_count": 1, "gestured": {"_count": 1}}, "Fred": {"_count": 1, "or": {"_count": 1}}, "whoever": {"_count": 1, "you": {"_count": 1}}, "thestral": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "Tonks": {"_count": 1, "will": {"_count": 1}}, "tree": {"_count": 1, "in": {"_count": 1}}, "Dad": {"_count": 1, "can": {"_count": 1}}, "crushing": {"_count": 1, "a": {"_count": 1}}, "dependent": {"_count": 1, "on": {"_count": 1}}, "As": {"_count": 1, "he": {"_count": 1}}, "gesture": {"_count": 1, "did": {"_count": 1}}, "covering": {"_count": 1, "up": {"_count": 1}}, "fourth": {"_count": 1, "time": {"_count": 1}}, "understood": {"_count": 1, "": {"_count": 1}}, "bottles": {"_count": 1, "of": {"_count": 1}}, "vulture": {"_count": 1, "might": {"_count": 1}}, "either": {"_count": 1, "of": {"_count": 1}}, "observed": {"_count": 1, "": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "\u2018Mudblood": {"_count": 1, "growled": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "Ministry": {"_count": 1, "people": {"_count": 1}}, "arrest": {"_count": 1, "": {"_count": 1}}, "force": {"_count": 1, "": {"_count": 1}}, "imagined": {"_count": 2, "": {"_count": 2}}, "under": {"_count": 1, "Dumbledores": {"_count": 1}}, "personal": {"_count": 1, "glory": {"_count": 1}}, "Youre": {"_count": 1, "not": {"_count": 1}}, "debating": {"_count": 1, "how": {"_count": 1}}, "tokens": {"_count": 1, "or": {"_count": 1}}, "relationship": {"_count": 1, "or": {"_count": 1}}, "talk": {"_count": 1, "or": {"_count": 1}}, "swift": {"_count": 1, "footsteps": {"_count": 1}}, "Moron": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 3, "and": {"_count": 1}, "us": {"_count": 1}, "for": {"_count": 1}}, "stale": {"_count": 1, "biscuits": {"_count": 1}}, "mystique": {"_count": 1, "in": {"_count": 1}}, "discomfort": {"_count": 1, "for": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}, "retreat": {"_count": 1, "back": {"_count": 1}}, "with": {"_count": 1, "Dumbledore": {"_count": 1}}, "ask": {"_count": 1, "impertinent": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "dust": {"_count": 1, "not": {"_count": 1}}, "caring": {"_count": 1, "that": {"_count": 1}}, "beat": {"_count": 1, "had": {"_count": 1}}, "protect": {"_count": 1, "himself": {"_count": 1}}, "generous": {"_count": 1, "": {"_count": 1}}, "Grindelwald": {"_count": 1, "what": {"_count": 1}}, "snapping": {"_count": 1, "jaws": {"_count": 1}}, "Hallows": {"_count": 3, "which": {"_count": 2}, "": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 1, "being": {"_count": 1}}, "done": {"_count": 1, "anything": {"_count": 1}}, "worked": {"_count": 1, "visited": {"_count": 1}}, "murdered": {"_count": 1, "Ron": {"_count": 1}}, "sleeping": {"_count": 1, "": {"_count": 1}}, "foes": {"_count": 2, "all": {"_count": 1}, "he": {"_count": 1}}, "No": {"_count": 1, "Harry": {"_count": 1}}, "elf": {"_count": 1, "Griphook": {"_count": 1}}, "wands": {"_count": 1, "that": {"_count": 1}}, "hidden": {"_count": 1, "but": {"_count": 1}}, "leave": {"_count": 1, "it": {"_count": 1}}, "bite": {"_count": 1, "her": {"_count": 1}}, "consult": {"_count": 1, "one": {"_count": 1}}, "breathe": {"_count": 1, "Then": {"_count": 1}}, "rolled": {"_count": 1, "in": {"_count": 1}}, "penetrate": {"_count": 1, "its": {"_count": 1}}, "whooping": {"_count": 1, "anymore": {"_count": 1}}, "here": {"_count": 1, "to": {"_count": 1}}, "body": {"_count": 1, "": {"_count": 1}}, "Hermiones": {"_count": 1, "names": {"_count": 1}}, "siblings": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "down": {"_count": 1, "from": {"_count": 1}}, "dragging": {"_count": 1, "injured": {"_count": 1}}, "foe": {"_count": 1, "he": {"_count": 1}}, "already": {"_count": 1, "dead": {"_count": 1}}, "screams": {"_count": 1, "or": {"_count": 1}}, "shouts": {"_count": 1, "": {"_count": 1}}, "Hogwarts": {"_count": 1, "will": {"_count": 1}}, "explained": {"_count": 1, "it": {"_count": 1}}, "Scrimgeour": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "eyelid": {"_count": 1}}, "word": {"_count": 1, "to": {"_count": 1}}, "child": {"_count": 1, "will": {"_count": 1}}, "dreamed": {"_count": 1, "that": {"_count": 1}}, "Dumbledores": {"_count": 1, "or": {"_count": 1}}, "taunt": {"_count": 1, "nothing": {"_count": 1}}}, "mysterious": {"_count": 33, "because": {"_count": 1, "they": {"_count": 1}}, "things": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "object": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "bother": {"_count": 1}}, "past": {"_count": 1, "of": {"_count": 1}}, "power": {"_count": 1, "that": {"_count": 1}}, "wink": {"_count": 1, "": {"_count": 1}}, "lights": {"_count": 1, "shone": {"_count": 1}}, "golden": {"_count": 1, "light": {"_count": 1}}, "portents": {"_count": 1, "they": {"_count": 1}}, "influence": {"_count": 1, "over": {"_count": 1}}, "events": {"_count": 1, "of": {"_count": 1}}, "substance": {"_count": 1, "a": {"_count": 1}}, "room": {"_count": 1, "at": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "work": {"_count": 1, "for": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "symptoms": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "disappearance": {"_count": 1, "fifteen": {"_count": 1}}, "powder": {"_count": 1, "that": {"_count": 1}}, "recent": {"_count": 1, "disturbance": {"_count": 1}}, "broken": {"_count": 1, "object": {"_count": 1}}, "greenish": {"_count": 1, "glow": {"_count": 1}}, "objects": {"_count": 2, "that": {"_count": 1}, "left": {"_count": 1}}, "death": {"_count": 1, "in": {"_count": 1}}, "mark": {"_count": 1, "on": {"_count": 1}}, "Ariana": {"_count": 1, "die": {"_count": 1}}, "doe": {"_count": 1, "the": {"_count": 1}}, "branch": {"_count": 1, "of": {"_count": 1}}}, "because": {"_count": 778, "they": {"_count": 36, "just": {"_count": 1}, "did": {"_count": 1}, "didnt": {"_count": 2}, "were": {"_count": 8}, "werent": {"_count": 1}, "hadnt": {"_count": 1}, "knew": {"_count": 1}, "clamp": {"_count": 1}, "er": {"_count": 1}, "like": {"_count": 1}, "suddenly": {"_count": 1}, "had": {"_count": 3}, "will": {"_count": 1}, "think": {"_count": 1}, "made": {"_count": 1}, "cant": {"_count": 1}, "dont": {"_count": 2}, "cut": {"_count": 1}, "seemed": {"_count": 1}, "remained": {"_count": 1}, "sensed": {"_count": 1}, "thought": {"_count": 1}, "wanted": {"_count": 1}, "havent": {"_count": 1}, "must": {"_count": 1}}, "her": {"_count": 4, "sister": {"_count": 1}, "nose": {"_count": 1}, "cat": {"_count": 1}, "father": {"_count": 1}}, "Dudley": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "he": {"_count": 141, "didnt": {"_count": 6}, "looked": {"_count": 4}, "put": {"_count": 1}, "went": {"_count": 2}, "was": {"_count": 26}, "usually": {"_count": 1}, "had": {"_count": 22}, "hated": {"_count": 2}, "felt": {"_count": 1}, "hadnt": {"_count": 2}, "missed": {"_count": 1}, "said": {"_count": 2}, "wanted": {"_count": 2}, "clicked": {"_count": 1}, "found": {"_count": 1}, "did": {"_count": 10}, "knew": {"_count": 6}, "couldnt": {"_count": 2}, "keeps": {"_count": 1}, "thought": {"_count": 4}, "annoys": {"_count": 1}, "got": {"_count": 1}, "thinks": {"_count": 2}, "beat": {"_count": 1}, "convinced": {"_count": 1}, "owned": {"_count": 1}, "contented": {"_count": 1}, "climbed": {"_count": 1}, "could": {"_count": 5}, "shouted": {"_count": 1}, "needs": {"_count": 1}, "strayed": {"_count": 1}, "wants": {"_count": 1}, "loves": {"_count": 1}, "murdered": {"_count": 1}, "then": {"_count": 1}, "kept": {"_count": 1}, "really": {"_count": 1}, "wished": {"_count": 1}, "is": {"_count": 1}, "wont": {"_count": 1}, "worked": {"_count": 1}, "has": {"_count": 1}, "visited": {"_count": 1}, "actually": {"_count": 1}, "so": {"_count": 1}, "would": {"_count": 1}, "appreciated": {"_count": 1}, "came": {"_count": 1}, "believed": {"_count": 1}, "still": {"_count": 1}, "understood": {"_count": 1}, "believes": {"_count": 1}, "needed": {"_count": 1}, "alone": {"_count": 1}, "heard": {"_count": 1}, "lurched": {"_count": 1}, "spoke": {"_count": 1}, "loved": {"_count": 1}}, "youre": {"_count": 8, "too": {"_count": 1}, "terrified": {"_count": 1}, "so": {"_count": 2}, "all": {"_count": 1}, "good": {"_count": 1}, "my": {"_count": 1}, "supposed": {"_count": 1}}, "the": {"_count": 49, "cupboard": {"_count": 1}, "smiling": {"_count": 1}, "Potions": {"_count": 1}, "Remembrall": {"_count": 1}, "dragon": {"_count": 1}, "trees": {"_count": 1}, "moment": {"_count": 3}, "Ministryll": {"_count": 1}, "gargoyle": {"_count": 1}, "candles": {"_count": 1}, "people": {"_count": 1}, "occupants": {"_count": 1}, "mass": {"_count": 1}, "potion": {"_count": 1}, "Whomping": {"_count": 1}, "strict": {"_count": 1}, "very": {"_count": 1}, "Animagus": {"_count": 1}, "dementors": {"_count": 2}, "Dursleys": {"_count": 2}, "Muggle": {"_count": 1}, "diet": {"_count": 1}, "skrewts": {"_count": 1}, "alternative": {"_count": 2}, "owls": {"_count": 1}, "woman": {"_count": 1}, "courtroom": {"_count": 1}, "blackandpurple": {"_count": 1}, "boys": {"_count": 1}, "Ministry": {"_count": 1}, "bowler": {"_count": 1}, "door": {"_count": 1}, "best": {"_count": 1}, "party": {"_count": 1}, "Burrow": {"_count": 1}, "thirtyone": {"_count": 1}, "Patronus": {"_count": 1}, "reward": {"_count": 1}, "immediate": {"_count": 1}, "Death": {"_count": 1}, "goblin": {"_count": 1}, "passage": {"_count": 1}, "Carrows": {"_count": 1}, "true": {"_count": 1}}, "all": {"_count": 3, "he": {"_count": 2}, "three": {"_count": 1}}, "of": {"_count": 67, "all": {"_count": 3}, "the": {"_count": 19}, "television": {"_count": 1}, "Hedwig": {"_count": 1}, "Hedwigs": {"_count": 1}, "her": {"_count": 2}, "a": {"_count": 4}, "course": {"_count": 2}, "you": {"_count": 2}, "my": {"_count": 1}, "what": {"_count": 4}, "some": {"_count": 1}, "that": {"_count": 3}, "Frank": {"_count": 1}, "Voldemort": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 2}, "his": {"_count": 3}, "illness": {"_count": 1}, "Hagrid": {"_count": 1}, "magical": {"_count": 1}, "Cedric": {"_count": 1}, "Quidditch": {"_count": 1}, "Harry": {"_count": 1}, "Morfin": {"_count": 1}, "Malfoys": {"_count": 1}, "them": {"_count": 1}, "something": {"_count": 1}, "these": {"_count": 1}, "Albus": {"_count": 1}, "us": {"_count": 1}, "their": {"_count": 1}, "one": {"_count": 1}}, "she": {"_count": 35, "said": {"_count": 2}, "tried": {"_count": 1}, "keeps": {"_count": 1}, "cant": {"_count": 1}, "opened": {"_count": 1}, "couldnt": {"_count": 1}, "was": {"_count": 11}, "met": {"_count": 1}, "had": {"_count": 3}, "hadnt": {"_count": 1}, "associated": {"_count": 1}, "might": {"_count": 1}, "seems": {"_count": 1}, "liked": {"_count": 1}, "suddenly": {"_count": 1}, "failed": {"_count": 1}, "and": {"_count": 1}, "looked": {"_count": 1}, "would": {"_count": 1}, "patted": {"_count": 1}, "reached": {"_count": 1}, "shuffled": {"_count": 1}}, "his": {"_count": 14, "knickerbocker": {"_count": 1}, "grandmother": {"_count": 1}, "soft": {"_count": 1}, "legs": {"_count": 1}, "teachers": {"_count": 1}, "hand": {"_count": 1}, "head": {"_count": 1}, "index": {"_count": 1}, "servant": {"_count": 1}, "classmates": {"_count": 1}, "story": {"_count": 1}, "mind": {"_count": 1}, "reactions": {"_count": 1}, "family": {"_count": 1}}, "Griphook": {"_count": 1, "wasnt": {"_count": 1}}, "there": {"_count": 12, "was": {"_count": 5}, "are": {"_count": 2}, "is": {"_count": 1}, "were": {"_count": 2}, "havent": {"_count": 1}, "arent": {"_count": 1}}, "Hedwig": {"_count": 1, "kept": {"_count": 1}}, "a": {"_count": 7, "second": {"_count": 2}, "game": {"_count": 1}, "wizard": {"_count": 1}, "houseelf": {"_count": 1}, "few": {"_count": 1}, "silence": {"_count": 1}}, "Crabbe": {"_count": 2, "and": {"_count": 1}, "Goyle": {"_count": 1}}, "people": {"_count": 3, "outside": {"_count": 1}, "would": {"_count": 1}, "rarely": {"_count": 1}}, "while": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "no": {"_count": 3, "one": {"_count": 2}, "Muggle": {"_count": 1}}, "it": {"_count": 41, "was": {"_count": 17}, "all": {"_count": 1}, "said": {"_count": 1}, "is": {"_count": 3}, "made": {"_count": 1}, "kept": {"_count": 1}, "meant": {"_count": 1}, "muffled": {"_count": 1}, "wouldve": {"_count": 1}, "wouldnt": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 2}, "only": {"_count": 1}, "caused": {"_count": 1}, "seemed": {"_count": 1}, "would": {"_count": 2}, "should": {"_count": 1}, "enabled": {"_count": 1}, "warns": {"_count": 1}, "seems": {"_count": 1}, "has": {"_count": 1}}, "Neville": {"_count": 3, "managed": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "I": {"_count": 40, "cant": {"_count": 2}, "I": {"_count": 1}, "think": {"_count": 2}, "spent": {"_count": 1}, "broke": {"_count": 1}, "understand": {"_count": 1}, "can": {"_count": 1}, "asked": {"_count": 1}, "told": {"_count": 2}, "had": {"_count": 2}, "came": {"_count": 1}, "put": {"_count": 2}, "suggested": {"_count": 1}, "dont": {"_count": 5}, "didnt": {"_count": 2}, "doubt": {"_count": 1}, "was": {"_count": 3}, "guessed": {"_count": 1}, "gave": {"_count": 1}, "definitely": {"_count": 1}, "never": {"_count": 1}, "wanted": {"_count": 1}, "saw": {"_count": 1}, "couldnt": {"_count": 1}, "knew": {"_count": 1}, "am": {"_count": 1}, "have": {"_count": 1}, "took": {"_count": 1}}, "its": {"_count": 13, "so": {"_count": 1}, "arms": {"_count": 1}, "come": {"_count": 1}, "taken": {"_count": 1}, "the": {"_count": 2}, "an": {"_count": 1}, "colorless": {"_count": 1}, "gone": {"_count": 1}, "taking": {"_count": 1}, "such": {"_count": 1}, "your": {"_count": 1}, "caster": {"_count": 1}}, "whichever": {"_count": 1, "Seeker": {"_count": 1}}, "Ive": {"_count": 8, "read": {"_count": 1}, "been": {"_count": 2}, "double": {"_count": 1}, "put": {"_count": 1}, "got": {"_count": 1}, "given": {"_count": 1}, "had": {"_count": 1}}, "Wood": {"_count": 1, "had": {"_count": 1}}, "theyre": {"_count": 11, "not": {"_count": 2}, "friends": {"_count": 1}, "what": {"_count": 1}, "too": {"_count": 1}, "shockingly": {"_count": 1}, "handsome": {"_count": 1}, "uneducated": {"_count": 1}, "watching": {"_count": 1}, "about": {"_count": 1}, "there": {"_count": 1}}, "Mr": {"_count": 2, "and": {"_count": 1}, "Weasley": {"_count": 1}}, "how": {"_count": 1, "else": {"_count": 1}}, "theyd": {"_count": 2, "stolen": {"_count": 1}, "had": {"_count": 1}}, "Quidditch": {"_count": 1, "practice": {"_count": 1}}, "George": {"_count": 1, "Weasley": {"_count": 1}}, "Norbert": {"_count": 1, "had": {"_count": 1}}, "everyone": {"_count": 4, "had": {"_count": 1}, "went": {"_count": 1}, "was": {"_count": 2}}, "Filch": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 7, "couldnt": {"_count": 1}, "Potter": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "Ron": {"_count": 1}, "liked": {"_count": 1}, "knew": {"_count": 1}}, "Professor": {"_count": 2, "McGonagalls": {"_count": 1}, "Bagshot": {"_count": 1}}, "Im": {"_count": 7, "never": {"_count": 1}, "commentating": {"_count": 1}, "already": {"_count": 1}, "not": {"_count": 1}, "having": {"_count": 1}, "starting": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 1, "these": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "just": {"_count": 1, "then": {"_count": 1}}, "that": {"_count": 5, "would": {"_count": 1}, "thing": {"_count": 1}, "was": {"_count": 2}, "stupid": {"_count": 1}}, "hes": {"_count": 21, "famous": {"_count": 3}, "a": {"_count": 4}, "bursting": {"_count": 1}, "not": {"_count": 1}, "too": {"_count": 1}, "got": {"_count": 1}, "handsome": {"_count": 1}, "giving": {"_count": 1}, "been": {"_count": 1}, "getting": {"_count": 1}, "losing": {"_count": 1}, "d": {"_count": 1}, "better": {"_count": 1}, "so": {"_count": 1}, "never": {"_count": 1}, "the": {"_count": 1}}, "were": {"_count": 5, "all": {"_count": 1}, "there": {"_count": 1}, "under": {"_count": 1}, "friends": {"_count": 1}, "wasting": {"_count": 1}}, "we": {"_count": 14, "were": {"_count": 3}, "add": {"_count": 1}, "wont": {"_count": 1}, "know": {"_count": 1}, "exceeded": {"_count": 1}, "dont": {"_count": 2}, "hoped": {"_count": 1}, "wanted": {"_count": 1}, "still": {"_count": 1}, "like": {"_count": 1}, "really": {"_count": 1}}, "weve": {"_count": 3, "got": {"_count": 2}, "found": {"_count": 1}}, "Ravenclaw": {"_count": 1, "and": {"_count": 1}}, "being": {"_count": 1, "able": {"_count": 1}}, "their": {"_count": 8, "own": {"_count": 1}, "best": {"_count": 1}, "differently": {"_count": 1}, "champion": {"_count": 1}, "workload": {"_count": 1}, "mothers": {"_count": 1}, "uncle": {"_count": 1}, "protective": {"_count": 1}}, "Goyle": {"_count": 1, "obviously": {"_count": 1}}, "from": {"_count": 1, "six": {"_count": 1}}, "Olive": {"_count": 1, "Hornby": {"_count": 1}}, "you": {"_count": 18, "could": {"_count": 1}, "were": {"_count": 3}, "can": {"_count": 2}, "are": {"_count": 4}, "wouldnt": {"_count": 2}, "told": {"_count": 1}, "think": {"_count": 1}, "said": {"_count": 1}, "have": {"_count": 1}, "felt": {"_count": 1}, "murdered": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "if": {"_count": 6, "any": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 3}, "the": {"_count": 1}}, "hed": {"_count": 2, "received": {"_count": 1}, "seen": {"_count": 1}}, "Hermione": {"_count": 3, "the": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "addition": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "Mum": {"_count": 4, "wouldve": {"_count": 1}, "wants": {"_count": 1}, "found": {"_count": 1}, "says": {"_count": 1}}, "Fudge": {"_count": 3, "wanted": {"_count": 1}, "is": {"_count": 1}, "wont": {"_count": 1}}, "when": {"_count": 3, "they": {"_count": 1}, "the": {"_count": 1}, "we": {"_count": 1}}, "Lupin": {"_count": 2, "said": {"_count": 1}, "Pettigrew": {"_count": 1}}, "every": {"_count": 2, "one": {"_count": 1}, "time": {"_count": 1}}, "Percy": {"_count": 2, "was": {"_count": 1}, "got": {"_count": 1}}, "thanks": {"_count": 1, "to": {"_count": 1}}, "o": {"_count": 2, "the": {"_count": 2}}, "these": {"_count": 1, "mapmakers": {"_count": 1}}, "capturing": {"_count": 1, "the": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "Id": {"_count": 2, "already": {"_count": 1}, "just": {"_count": 1}}, "Voldemort": {"_count": 5, "had": {"_count": 2}, "was": {"_count": 1}, "made": {"_count": 2}}, "Sirius": {"_count": 4, "had": {"_count": 1}, "was": {"_count": 2}, "said": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Bill": {"_count": 2, "and": {"_count": 2}}, "Ginny": {"_count": 2, "was": {"_count": 1}, "showed": {"_count": 1}}, "leprechauns": {"_count": 1, "were": {"_count": 1}}, "theyve": {"_count": 3, "got": {"_count": 2}, "both": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "none": {"_count": 1, "of": {"_count": 1}}, "Malfoy": {"_count": 4, "had": {"_count": 1}, "wont": {"_count": 1}, "was": {"_count": 1}, "pulled": {"_count": 1}}, "Krum": {"_count": 1, "and": {"_count": 1}}, "my": {"_count": 1, "scar": {"_count": 1}}, "Hagrid": {"_count": 1, "emerged": {"_count": 1}}, "groups": {"_count": 1, "of": {"_count": 1}}, "after": {"_count": 2, "a": {"_count": 2}}, "Dobby": {"_count": 1, "wants": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "someone": {"_count": 1, "made": {"_count": 1}}, "Crouch": {"_count": 1, "disappeared": {"_count": 1}}, "shes": {"_count": 5, "part": {"_count": 1}, "on": {"_count": 1}, "been": {"_count": 1}, "Rons": {"_count": 2}}, "then": {"_count": 1, "no": {"_count": 1}}, "even": {"_count": 2, "when": {"_count": 1}, "centaurs": {"_count": 1}}, "doxies": {"_count": 1, "bite": {"_count": 1}}, "Kreacher": {"_count": 3, "knows": {"_count": 1}, "was": {"_count": 1}, "has": {"_count": 1}}, "A": {"_count": 1, "corporeal": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Ill": {"_count": 2, "be": {"_count": 1}, "Ill": {"_count": 1}}, "some": {"_count": 1, "changes": {"_count": 1}}, "Ron": {"_count": 5, "and": {"_count": 2}, "told": {"_count": 1}, "got": {"_count": 1}, "heard": {"_count": 1}}, "because": {"_count": 1, "help": {"_count": 1}}, "help": {"_count": 1, "came": {"_count": 1}}, "nobody": {"_count": 3, "could": {"_count": 1}, "else": {"_count": 1}, "left": {"_count": 1}}, "thats": {"_count": 2, "the": {"_count": 1}, "where": {"_count": 1}}, "Angelina": {"_count": 1, "insisted": {"_count": 1}}, "Cho": {"_count": 1, "was": {"_count": 1}}, "youve": {"_count": 2, "got": {"_count": 2}}, "Umbridge": {"_count": 1, "had": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "your": {"_count": 1, "tiny": {"_count": 1}}, "Aurors": {"_count": 1, "frequently": {"_count": 1}}, "Auror": {"_count": 1, "training": {"_count": 1}}, "well": {"_count": 1, "just": {"_count": 1}}, "All": {"_count": 1, "around": {"_count": 1}}, "someones": {"_count": 1, "let": {"_count": 1}}, "Peeves": {"_count": 1, "had": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "Captains": {"_count": 1, "just": {"_count": 1}}, "Romilda": {"_count": 1, "Vane": {"_count": 1}}, "Dumbledore": {"_count": 5, "did": {"_count": 1}, "wanted": {"_count": 1}, "always": {"_count": 1}, "believed": {"_count": 1}, "was": {"_count": 1}}, "Hepzibah": {"_count": 1, "Smith": {"_count": 1}}, "Madam": {"_count": 1, "Rosmerta": {"_count": 1}}, "to": {"_count": 1, "confide": {"_count": 1}}, "ze": {"_count": 1, "British": {"_count": 1}}, "once": {"_count": 1, "Im": {"_count": 1}}, "unfortunately": {"_count": 1, "Ive": {"_count": 1}}, "apparently": {"_count": 1, "you": {"_count": 1}}, "ripping": {"_count": 1, "smashing": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 1}, "Weasley": {"_count": 1}}, "Kendra": {"_count": 1, "died": {"_count": 1}}, "Master": {"_count": 2, "Regulus": {"_count": 2}}, "students": {"_count": 1, "must": {"_count": 1}}, "Ollivander": {"_count": 1, "didnt": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "some": {"_count": 1}}, "theres": {"_count": 1, "some": {"_count": 1}}, "Spellmans": {"_count": 1, "Syllabary": {"_count": 1}}, "YouKnowWho": {"_count": 1, "arrived": {"_count": 1}}, "youd": {"_count": 1, "gone": {"_count": 1}}, "as": {"_count": 2, "Harry": {"_count": 1}, "far": {"_count": 1}}, "Harrys": {"_count": 1, "descent": {"_count": 1}}, "Snapes": {"_count": 1, "there": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "hell": {"_count": 1, "have": {"_count": 1}}, "Mary": {"_count": 1, "told": {"_count": 1}}, "death": {"_count": 1, "is": {"_count": 1}}, "Dumbledores": {"_count": 1, "last": {"_count": 1}}}, "just": {"_count": 2075, "didnt": {"_count": 7, "hold": {"_count": 1}, "occur": {"_count": 1}, "want": {"_count": 2}, "seem": {"_count": 1}, "see": {"_count": 1}, "like": {"_count": 1}}, "outside": {"_count": 7, "the": {"_count": 6}, "Snapes": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "thought": {"_count": 19, "": {"_count": 1}, "of": {"_count": 3}, "Hermione": {"_count": 1}, "you": {"_count": 3}, "Id": {"_count": 4}, "But": {"_count": 1}, "youd": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "well": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}}, "popped": {"_count": 2, "out": {"_count": 1}, "into": {"_count": 1}}, "arrived": {"_count": 13, "in": {"_count": 1}, "at": {"_count": 4}, "": {"_count": 3}, "said": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}}, "astounding": {"_count": 1, "": {"_count": 1}}, "visible": {"_count": 6, "was": {"_count": 1}, "under": {"_count": 1}, "through": {"_count": 2}, "beyond": {"_count": 1}, "inside": {"_count": 1}}, "see": {"_count": 12, "the": {"_count": 4}, "": {"_count": 1}, "themselves": {"_count": 1}, "Malfoy": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}, "whats": {"_count": 1}, "YouKnow": {"_count": 1}, "it": {"_count": 1}}, "like": {"_count": 64, "his": {"_count": 3}, "everyone": {"_count": 2}, "that": {"_count": 4}, "Professor": {"_count": 2}, "Filchs": {"_count": 1}, "mine": {"_count": 1}, "Percys": {"_count": 1}, "magic": {"_count": 1}, "one": {"_count": 1}, "Sirius": {"_count": 1}, "Rons": {"_count": 1}, "your": {"_count": 1}, "him": {"_count": 2}, "Ron": {"_count": 1}, "the": {"_count": 13}, "killing": {"_count": 1}, "to": {"_count": 3}, "Hermione": {"_count": 1}, "I": {"_count": 3}, "with": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}, "Hermiones": {"_count": 1}, "Bill": {"_count": 1}, "my": {"_count": 2}, "Harry": {"_count": 1}, "MadEye": {"_count": 1}, "tonight": {"_count": 1}, "Potter": {"_count": 1}, "Nevilles": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "any": {"_count": 1}, "Neville": {"_count": 1}, "Voldemort": {"_count": 1}, "all": {"_count": 1}, "Dumbledores": {"_count": 1}, "those": {"_count": 1}, "us": {"_count": 1}}, "leave": {"_count": 5, "me": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}}, "swallowed": {"_count": 4, "a": {"_count": 3}, "live": {"_count": 1}}, "no": {"_count": 4, "good": {"_count": 1}, "point": {"_count": 1}, "match": {"_count": 1}, "getting": {"_count": 1}}, "a": {"_count": 43, "few": {"_count": 5}, "year": {"_count": 1}, "reflection": {"_count": 1}, "famous": {"_count": 1}, "week": {"_count": 1}, "pity": {"_count": 1}, "table": {"_count": 1}, "fryup": {"_count": 1}, "stray": {"_count": 2}, "little": {"_count": 1}, "shade": {"_count": 1}, "quick": {"_count": 1}, "new": {"_count": 1}, "boggart": {"_count": 1}, "couple": {"_count": 2}, "cut": {"_count": 1}, "bit": {"_count": 1}, "name": {"_count": 1}, "broom": {"_count": 1}, "serial": {"_count": 1}, "baby": {"_count": 1}, "dream": {"_count": 1}, "mouse": {"_count": 1}, "game": {"_count": 1}, "taster": {"_count": 1}, "warmup": {"_count": 1}, "textbook": {"_count": 1}, "stupid": {"_count": 1}, "mo": {"_count": 1}, "book": {"_count": 1}, "joke": {"_count": 1}, "sprig": {"_count": 1}, "normal": {"_count": 1}, "bad": {"_count": 1}, "morality": {"_count": 1}, "copy": {"_count": 1}, "password": {"_count": 1}}, "snoozed": {"_count": 1, "on": {"_count": 1}}, "go": {"_count": 17, "": {"_count": 2}, "to": {"_count": 1}, "right": {"_count": 1}, "shall": {"_count": 1}, "then": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 2}, "back": {"_count": 2}, "straight": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 2}, "through": {"_count": 1}, "we": {"_count": 1}}, "give": {"_count": 4, "up": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}, "it": {"_count": 1}}, "brought": {"_count": 1, "him": {"_count": 1}}, "finished": {"_count": 7, "when": {"_count": 2}, "telling": {"_count": 3}, "": {"_count": 1}, "predicting": {"_count": 1}}, "to": {"_count": 34, "go": {"_count": 2}, "annoy": {"_count": 2}, "be": {"_count": 4}, "drop": {"_count": 1}, "stay": {"_count": 1}, "check": {"_count": 1}, "make": {"_count": 4}, "look": {"_count": 1}, "get": {"_count": 2}, "prove": {"_count": 1}, "stop": {"_count": 1}, "clarify": {"_count": 1}, "do": {"_count": 1}, "heighten": {"_count": 1}, "leave": {"_count": 1}, "catch": {"_count": 1}, "see": {"_count": 1}, "warm": {"_count": 1}, "avoid": {"_count": 1}, "follow": {"_count": 2}, "escape": {"_count": 1}, "help": {"_count": 1}, "underline": {"_count": 1}, "keep": {"_count": 1}}, "smoked": {"_count": 1, "and": {"_count": 1}}, "brushed": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 26, "same": {"_count": 8}, "build": {"_count": 1}, "exams": {"_count": 1}, "thing": {"_count": 2}, "defense": {"_count": 1}, "picture": {"_count": 1}, "one": {"_count": 1}, "wand": {"_count": 1}, "Keeper": {"_count": 2}, "family": {"_count": 1}, "Prophet": {"_count": 1}, "man": {"_count": 1}, "tip": {"_count": 1}, "once": {"_count": 1}, "Dark": {"_count": 1}, "three": {"_count": 1}, "two": {"_count": 1}}, "as": {"_count": 153, "strange": {"_count": 1}, "as": {"_count": 1}, "no": {"_count": 1}, "the": {"_count": 8}, "interesting": {"_count": 2}, "interested": {"_count": 1}, "Snape": {"_count": 3}, "Harrys": {"_count": 1}, "little": {"_count": 1}, "much": {"_count": 6}, "a": {"_count": 4}, "an": {"_count": 1}, "preoccupied": {"_count": 1}, "it": {"_count": 9}, "smoothly": {"_count": 1}, "confused": {"_count": 4}, "they": {"_count": 5}, "well": {"_count": 6}, "he": {"_count": 12}, "Harry": {"_count": 7}, "Uncle": {"_count": 1}, "frightened": {"_count": 2}, "I": {"_count": 2}, "impressed": {"_count": 1}, "useful": {"_count": 1}, "Hagrid": {"_count": 1}, "excitedly": {"_count": 1}, "long": {"_count": 3}, "blankly": {"_count": 1}, "pretty": {"_count": 1}, "Cedric": {"_count": 3}, "incomprehensible": {"_count": 1}, "hed": {"_count": 2}, "calmly": {"_count": 1}, "Krum": {"_count": 1}, "slowly": {"_count": 1}, "empty": {"_count": 1}, "unnerved": {"_count": 1}, "sane": {"_count": 1}, "resolutely": {"_count": 1}, "leaden": {"_count": 1}, "bad": {"_count": 3}, "clearly": {"_count": 1}, "dull": {"_count": 1}, "George": {"_count": 1}, "easily": {"_count": 2}, "Peeves": {"_count": 1}, "pale": {"_count": 1}, "Sirius": {"_count": 1}, "muddy": {"_count": 1}, "good": {"_count": 2}, "suddenly": {"_count": 1}, "in": {"_count": 1}, "Hermione": {"_count": 2}, "so": {"_count": 1}, "Voldemort": {"_count": 1}, "she": {"_count": 1}, "successfully": {"_count": 1}, "Dumbledore": {"_count": 2}, "shed": {"_count": 1}, "angrily": {"_count": 1}, "friends": {"_count": 2}, "Slughorn": {"_count": 1}, "McLaggen": {"_count": 1}, "with": {"_count": 1}, "doorless": {"_count": 1}, "Riddle": {"_count": 1}, "tyrants": {"_count": 1}, "pure": {"_count": 1}, "setting": {"_count": 1}, "messy": {"_count": 1}, "puzzled": {"_count": 1}, "dangerous": {"_count": 1}, "bewildered": {"_count": 1}, "elusive": {"_count": 1}, "old": {"_count": 1}, "thin": {"_count": 1}, "shocked": {"_count": 1}, "grand": {"_count": 1}, "valuable": {"_count": 1}, "reckless": {"_count": 1}, "bright": {"_count": 1}, "capable": {"_count": 1}, "Malfoy": {"_count": 1}}, "wanted": {"_count": 20, "a": {"_count": 1}, "em": {"_count": 1}, "to": {"_count": 13}, "an": {"_count": 1}, "this": {"_count": 1}, "some": {"_count": 1}, "me": {"_count": 1}, "Borgin": {"_count": 1}}, "liked": {"_count": 2, "killin": {"_count": 1}, "the": {"_count": 1}}, "what": {"_count": 5, "I": {"_count": 1}, "he": {"_count": 1}, "MadEye": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}}, "an": {"_count": 8, "ordinary": {"_count": 2}, "idea": {"_count": 2}, "expression": {"_count": 1}, "arrogant": {"_count": 1}, "archway": {"_count": 1}, "old": {"_count": 1}}, "so": {"_count": 8, "proud": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}, "so": {"_count": 1}, "we": {"_count": 1}, "unfair": {"_count": 1}, "unlikely": {"_count": 1}, "awfful": {"_count": 1}}, "cant": {"_count": 10, "tell": {"_count": 1}, "be": {"_count": 2}, "justify": {"_count": 1}, "see": {"_count": 1}, "theres": {"_count": 1}, "bring": {"_count": 1}, "guarantee": {"_count": 1}, "understand": {"_count": 1}, "get": {"_count": 1}}, "hurtled": {"_count": 1, "through": {"_count": 1}}, "now": {"_count": 29, "I": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "The": {"_count": 1}, "to": {"_count": 2}, "what": {"_count": 1}, "not": {"_count": 1}, "felt": {"_count": 1}, "Harry": {"_count": 3}, "meant": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 5}, "said": {"_count": 3}, "were": {"_count": 1}, "he": {"_count": 1}, "would": {"_count": 1}, "Draco": {"_count": 1}, "she": {"_count": 1}, "scooped": {"_count": 1}, "was": {"_count": 1}}, "not": {"_count": 3, "the": {"_count": 1}, "room": {"_count": 1}, "getting": {"_count": 1}}, "occurred": {"_count": 7, "to": {"_count": 7}}, "one": {"_count": 18, "other": {"_count": 1}, "toe": {"_count": 1}, "more": {"_count": 3}, "gold": {"_count": 1}, "tiny": {"_count": 2}, "thing": {"_count": 1}, "very": {"_count": 1}, "night": {"_count": 1}, "time": {"_count": 1}, "group": {"_count": 1}, "of": {"_count": 2}, "moment": {"_count": 1}, "chance": {"_count": 1}, "last": {"_count": 1}}, "had": {"_count": 25, "the": {"_count": 3}, "to": {"_count": 5}, "time": {"_count": 3}, "our": {"_count": 1}, "his": {"_count": 1}, "big": {"_count": 1}, "breakfast": {"_count": 2}, "Dumbledores": {"_count": 1}, "ter": {"_count": 1}, "her": {"_count": 1}, "said": {"_count": 1}, "other": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 2}, "Crookshanks": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "take": {"_count": 7, "the": {"_count": 1}, "off": {"_count": 1}, "it": {"_count": 1}, "those": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 2}}, "wait": {"_count": 3, "": {"_count": 1}, "here": {"_count": 1}, "till": {"_count": 1}}, "behind": {"_count": 18, "him": {"_count": 5}, "them": {"_count": 3}, "his": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 2}, "Goyle": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 2}, "Neville": {"_count": 1}}, "near": {"_count": 1, "enough": {"_count": 1}}, "taken": {"_count": 9, "out": {"_count": 3}, "the": {"_count": 1}, "delivery": {"_count": 1}, "a": {"_count": 2}, "place": {"_count": 1}, "off": {"_count": 1}}, "met": {"_count": 5, "on": {"_count": 1}, "some": {"_count": 1}, "here": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "never": {"_count": 3, "knew": {"_count": 1}, "thought": {"_count": 1}, "got": {"_count": 1}}, "stay": {"_count": 2, "put": {"_count": 1}, "in": {"_count": 1}}, "raised": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "for": {"_count": 16, "practice": {"_count": 1}, "decoration": {"_count": 1}, "blowing": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}, "an": {"_count": 1}, "trying": {"_count": 1}, "ten": {"_count": 1}, "the": {"_count": 1}, "Slughorns": {"_count": 1}, "this": {"_count": 1}, "those": {"_count": 1}, "a": {"_count": 2}, "something": {"_count": 1}, "picking": {"_count": 1}}, "hope": {"_count": 8, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "hes": {"_count": 3}, "nobody": {"_count": 1}, "weve": {"_count": 1}, "Professor": {"_count": 1}}, "taking": {"_count": 4, "Harry": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}}, "been": {"_count": 64, "up": {"_count": 1}, "knocked": {"_count": 1}, "wait": {"_count": 1}, "walloped": {"_count": 1}, "admiring": {"_count": 1}, "having": {"_count": 1}, "pinned": {"_count": 1}, "reading": {"_count": 1}, "appointed": {"_count": 1}, "told": {"_count": 1}, "electrified": {"_count": 1}, "taking": {"_count": 1}, "thinking": {"_count": 1}, "lying": {"_count": 1}, "to": {"_count": 5}, "looking": {"_count": 1}, "eaten": {"_count": 1}, "talking": {"_count": 1}, "arrested": {"_count": 1}, "tipped": {"_count": 1}, "signed": {"_count": 1}, "pulled": {"_count": 2}, "filled": {"_count": 1}, "chosen": {"_count": 1}, "crying": {"_count": 1}, "turned": {"_count": 1}, "sending": {"_count": 1}, "Stunned": {"_count": 1}, "denied": {"_count": 1}, "staring": {"_count": 1}, "attacked": {"_count": 1}, "feeding": {"_count": 1}, "caught": {"_count": 1}, "Kreacher": {"_count": 1}, "slapped": {"_count": 1}, "getting": {"_count": 1}, "forced": {"_count": 2}, "stunned": {"_count": 1}, "cornered": {"_count": 1}, "touched": {"_count": 1}, "prepared": {"_count": 1}, "discovered": {"_count": 1}, "stuck": {"_count": 1}, "discussing": {"_count": 1}, "put": {"_count": 1}, "treated": {"_count": 1}, "in": {"_count": 1}, "down": {"_count": 1}, "given": {"_count": 1}, "the": {"_count": 1}, "instructing": {"_count": 1}, "as": {"_count": 1}, "bombed": {"_count": 1}, "Obliviated": {"_count": 1}, "open": {"_count": 1}, "laying": {"_count": 1}, "checking": {"_count": 1}, "on": {"_count": 1}}, "streamed": {"_count": 1, "through": {"_count": 1}}, "and": {"_count": 1, "loyal": {"_count": 1}}, "got": {"_count": 34, "to": {"_count": 9}, "out": {"_count": 2}, "a": {"_count": 5}, "away": {"_count": 3}, "Petrified": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 2}, "walloped": {"_count": 1}, "past": {"_count": 1}, "his": {"_count": 2}, "lines": {"_count": 1}, "home": {"_count": 1}, "up": {"_count": 1}, "off": {"_count": 2}, "through": {"_count": 1}, "back": {"_count": 1}}, "sat": {"_count": 4, "there": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}}, "plunged": {"_count": 1, "it": {"_count": 1}}, "realized": {"_count": 10, "how": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 1}, "": {"_count": 1}, "something": {"_count": 2}, "that": {"_count": 2}}, "matches": {"_count": 1, "into": {"_count": 1}}, "wondering": {"_count": 9, "how": {"_count": 1}, "where": {"_count": 1}, "who": {"_count": 1}, "Professor": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 1}, "whether": {"_count": 2}, "that": {"_count": 1}}, "pretending": {"_count": 1, "": {"_count": 1}}, "telling": {"_count": 9, "everyone": {"_count": 1}, "them": {"_count": 1}, "me": {"_count": 4}, "the": {"_count": 1}, "her": {"_count": 1}, "young": {"_count": 1}}, "in": {"_count": 50, "time": {"_count": 35}, "today": {"_count": 1}, "the": {"_count": 2}, "case": {"_count": 11}, "shock": {"_count": 1}}, "dived": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "knew": {"_count": 3, "it": {"_count": 1}, "they": {"_count": 1}, "if": {"_count": 1}}, "remember": {"_count": 3, "what": {"_count": 1}, "seeing": {"_count": 1}, "to": {"_count": 1}}, "such": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "going": {"_count": 12, "to": {"_count": 10}, "over": {"_count": 1}, "for": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}, "helping": {"_count": 1, "himself": {"_count": 1}}, "turned": {"_count": 10, "the": {"_count": 2}, "up": {"_count": 2}, "red": {"_count": 1}, "into": {"_count": 1}, "it": {"_count": 1}, "away": {"_count": 1}, "around": {"_count": 1}, "off": {"_count": 1}}, "chained": {"_count": 1, "up": {"_count": 1}}, "made": {"_count": 7, "that": {"_count": 1}, "a": {"_count": 2}, "us": {"_count": 1}, "something": {"_count": 1}, "Harry": {"_count": 1}, "out": {"_count": 1}}, "wondered": {"_count": 5, "if": {"_count": 1}, "where": {"_count": 1}, "what": {"_count": 1}, "whether": {"_count": 1}, "I": {"_count": 1}}, "managing": {"_count": 1, "to": {"_count": 1}}, "try": {"_count": 5, "and": {"_count": 3}, "em": {"_count": 1}, "a": {"_count": 1}}, "want": {"_count": 13, "to": {"_count": 12}, "a": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "bang": {"_count": 1, "it": {"_count": 1}}, "read": {"_count": 4, "him": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 1}}, "put": {"_count": 7, "it": {"_count": 1}, "in": {"_count": 2}, "your": {"_count": 1}, "the": {"_count": 1}, "something": {"_count": 1}, "everyone": {"_count": 1}}, "looked": {"_count": 2, "at": {"_count": 1}, "stupid": {"_count": 1}}, "here": {"_count": 2, "yes": {"_count": 1}, "": {"_count": 1}}, "Ron": {"_count": 4, "in": {"_count": 1}, "antiMuggle": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "done": {"_count": 6, "so": {"_count": 1}, "nothing": {"_count": 1}, "they": {"_count": 1}, "serious": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}}, "gotten": {"_count": 3, "very": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}}, "too": {"_count": 3, "scared": {"_count": 2}, "ashamed": {"_count": 1}}, "awarded": {"_count": 1, "Hufflepuff": {"_count": 1}}, "chimed": {"_count": 1, "midnight": {"_count": 1}}, "my": {"_count": 1, "hand": {"_count": 1}}, "remembered": {"_count": 6, "Charlies": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}}, "bitten": {"_count": 2, "him": {"_count": 1}, "into": {"_count": 1}}, "left": {"_count": 14, "the": {"_count": 2}, "": {"_count": 5}, "Borgin": {"_count": 1}, "it": {"_count": 1}, "Hogwarts": {"_count": 1}, "Molly": {"_count": 1}, "and": {"_count": 1}, "Cormac": {"_count": 1}, "for": {"_count": 1}}, "heard": {"_count": 12, "Snape": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 4}, "Professor": {"_count": 1}, "ourselves": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}, "he": {"_count": 1}, "something": {"_count": 1}}, "do": {"_count": 6, "a": {"_count": 2}, "that": {"_count": 1}, "it": {"_count": 2}, "as": {"_count": 1}}, "passed": {"_count": 6, "a": {"_count": 1}, "over": {"_count": 1}, "had": {"_count": 1}, "through": {"_count": 1}, "right": {"_count": 1}, "between": {"_count": 1}}, "happens": {"_count": 1, "to": {"_count": 1}}, "have": {"_count": 26, "to": {"_count": 17}, "said": {"_count": 1}, "had": {"_count": 1}, "a": {"_count": 3}, "told": {"_count": 1}, "emerged": {"_count": 1}, "won": {"_count": 1}, "closed": {"_count": 1}}, "said": {"_count": 22, "At": {"_count": 1}, "\u2018Harrys": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 2}, "just": {"_count": 1}, "we": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 1}, "Whats": {"_count": 1}, "something": {"_count": 1}, "": {"_count": 3}, "its": {"_count": 1}, "this": {"_count": 1}, "she": {"_count": 2}, "there": {"_count": 1}, "your": {"_count": 1}, "havent": {"_count": 1}, "said": {"_count": 1}}, "lucky": {"_count": 2, "I": {"_count": 2}}, "this": {"_count": 2, "once": {"_count": 1}, "little": {"_count": 1}}, "black": {"_count": 1, "theres": {"_count": 1}}, "noticed": {"_count": 10, "in": {"_count": 1}, "Winky": {"_count": 1}, "": {"_count": 2}, "Karkaroff": {"_count": 1}, "her": {"_count": 1}, "ropes": {"_count": 1}, "something": {"_count": 1}, "where": {"_count": 1}, "the": {"_count": 1}}, "above": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "taught": {"_count": 1, "us": {"_count": 1}}, "let": {"_count": 12, "her": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 3}, "him": {"_count": 1}, "go": {"_count": 1}, "us": {"_count": 2}, "Snape": {"_count": 1}, "them": {"_count": 1}}, "I": {"_count": 4, "WARNED": {"_count": 1}, "cant": {"_count": 1}, "dunno": {"_count": 1}, "didnt": {"_count": 1}}, "reached": {"_count": 8, "the": {"_count": 6}, "for": {"_count": 1}, "this": {"_count": 1}}, "weeks": {"_count": 1, "ago": {"_count": 1}}, "shake": {"_count": 1, "or": {"_count": 1}}, "ruined": {"_count": 1, "the": {"_count": 1}}, "passing": {"_count": 5, "around": {"_count": 1}, "it": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "long": {"_count": 2, "enough": {"_count": 2}}, "announced": {"_count": 1, "that": {"_count": 1}}, "keep": {"_count": 13, "losing": {"_count": 1}, "moving": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 2}, "the": {"_count": 1}, "Slughorn": {"_count": 1}, "it": {"_count": 3}, "flying": {"_count": 1}, "me": {"_count": 1}, "out": {"_count": 1}}, "caught": {"_count": 5, "sight": {"_count": 2}, "fire": {"_count": 1}, "up": {"_count": 2}}, "then": {"_count": 8, "Rons": {"_count": 1}, "Cho": {"_count": 1}, "it": {"_count": 1}, "Bagman": {"_count": 1}, "Ludo": {"_count": 1}, "Krum": {"_count": 1}, "Professor": {"_count": 1}, "a": {"_count": 1}}, "inside": {"_count": 6, "the": {"_count": 6}}, "because": {"_count": 29, "hes": {"_count": 1}, "of": {"_count": 2}, "he": {"_count": 3}, "a": {"_count": 1}, "were": {"_count": 1}, "theyre": {"_count": 3}, "you": {"_count": 5}, "my": {"_count": 1}, "their": {"_count": 1}, "she": {"_count": 2}, "shes": {"_count": 2}, "I": {"_count": 1}, "youre": {"_count": 3}, "well": {"_count": 1}, "the": {"_count": 1}, "Ive": {"_count": 1}}, "HARRY": {"_count": 1, "": {"_count": 1}}, "clinging": {"_count": 1, "onto": {"_count": 1}}, "vanish": {"_count": 1, "and": {"_count": 1}}, "tired": {"_count": 1, "said": {"_count": 1}}, "how": {"_count": 7, "thin": {"_count": 1}, "wild": {"_count": 1}, "beautiful": {"_count": 1}, "many": {"_count": 1}, "hungry": {"_count": 1}, "far": {"_count": 1}, "much": {"_count": 1}}, "be": {"_count": 10, "disappointed": {"_count": 1}, "in": {"_count": 1}, "female": {"_count": 1}, "a": {"_count": 1}, "careful": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}, "glad": {"_count": 1}, "his": {"_count": 1}, "called": {"_count": 1}}, "won": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "started": {"_count": 10, "his": {"_count": 1}, "a": {"_count": 1}, "whistling": {"_count": 1}, "cooking": {"_count": 1}, "at": {"_count": 1}, "it": {"_count": 1}, "on": {"_count": 1}, "being": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 1}}, "joined": {"_count": 3, "them": {"_count": 1}, "the": {"_count": 1}, "Luna": {"_count": 1}}, "happen": {"_count": 2, "to": {"_count": 1}, "all": {"_count": 1}}, "fantastic": {"_count": 1, "": {"_count": 1}}, "jealous": {"_count": 1, "piped": {"_count": 1}}, "say": {"_count": 13, "that": {"_count": 2}, "how": {"_count": 1}, "the": {"_count": 1}, "things": {"_count": 1}, "Crouch": {"_count": 1}, "this": {"_count": 1}, "my": {"_count": 1}, "just": {"_count": 1}, "Dumbledores": {"_count": 1}, "sorry": {"_count": 1}, "you": {"_count": 1}, "then": {"_count": 1}}, "nip": {"_count": 1, "the": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "reading": {"_count": 2, "Lesson": {"_count": 1}, "about": {"_count": 1}}, "talking": {"_count": 4, "about": {"_count": 4}}, "ended": {"_count": 1, "": {"_count": 1}}, "upstairs": {"_count": 1, "please": {"_count": 1}}, "opened": {"_count": 6, "his": {"_count": 2}, "Harrys": {"_count": 2}, "again": {"_count": 1}, "behind": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "dropped": {"_count": 3, "unpleasantly": {"_count": 1}, "it": {"_count": 1}, "from": {"_count": 1}}, "dont": {"_count": 16, "like": {"_count": 4}, "know": {"_count": 2}, "think": {"_count": 3}, "want": {"_count": 5}, "get": {"_count": 1}, "understand": {"_count": 1}}, "worried": {"_count": 1, "Im": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "knock": {"_count": 1, "Malfoy": {"_count": 1}}, "missed": {"_count": 4, "him": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 2}}, "toddle": {"_count": 1, "up": {"_count": 1}}, "seen": {"_count": 24, "Marcus": {"_count": 1}, "off": {"_count": 1}, "slinking": {"_count": 1}, "Parvati": {"_count": 1}, "Krum": {"_count": 1}, "something": {"_count": 1}, "Siriuss": {"_count": 1}, "Cedric": {"_count": 1}, "Ive": {"_count": 1}, "and": {"_count": 1}, "scenes": {"_count": 1}, "": {"_count": 4}, "his": {"_count": 1}, "him": {"_count": 1}, "who": {"_count": 1}, "a": {"_count": 2}, "Slughorn": {"_count": 1}, "Viktor": {"_count": 1}, "Voldemort": {"_count": 1}, "them": {"_count": 1}}, "getting": {"_count": 4, "started": {"_count": 1}, "worse": {"_count": 1}, "flashes": {"_count": 1}, "carried": {"_count": 1}}, "thinking": {"_count": 4, "that": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "Id": {"_count": 1}}, "when": {"_count": 7, "they": {"_count": 1}, "Harry": {"_count": 1}, "things": {"_count": 1}, "he": {"_count": 2}, "everyone": {"_count": 1}, "hed": {"_count": 1}}, "sent": {"_count": 9, "it": {"_count": 3}, "this": {"_count": 1}, "word": {"_count": 1}, "an": {"_count": 1}, "Hedwig": {"_count": 1}, "to": {"_count": 1}, "Lucius": {"_count": 1}}, "saying": {"_count": 5, "he": {"_count": 1}, "to": {"_count": 2}, "Phlegm": {"_count": 1}, "though": {"_count": 1}}, "sitting": {"_count": 2, "in": {"_count": 2}}, "make": {"_count": 14, "out": {"_count": 8}, "fun": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}, "sure": {"_count": 2}, "you": {"_count": 1}}, "throw": {"_count": 3, "Riddles": {"_count": 1}, "this": {"_count": 1}, "them": {"_count": 1}}, "fed": {"_count": 1, "him": {"_count": 1}}, "any": {"_count": 1, "dwarfs": {"_count": 1}}, "after": {"_count": 4, "I": {"_count": 1}, "daybreak": {"_count": 1}, "lessons": {"_count": 1}, "we": {"_count": 1}}, "imagine": {"_count": 2, "the": {"_count": 1}, "Professor": {"_count": 1}}, "found": {"_count": 8, "Watching": {"_count": 1}, "out": {"_count": 4}, "Potter": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 1}}, "set": {"_count": 3, "foot": {"_count": 1}, "him": {"_count": 1}, "some": {"_count": 1}}, "understood": {"_count": 1, "something": {"_count": 1}}, "mounting": {"_count": 1, "his": {"_count": 1}}, "chuck": {"_count": 2, "all": {"_count": 1}, "stuff": {"_count": 1}}, "putting": {"_count": 1, "a": {"_count": 1}}, "enough": {"_count": 2, "to": {"_count": 1}, "within": {"_count": 1}}, "three": {"_count": 1, "toilets": {"_count": 1}}, "come": {"_count": 10, "off": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "over": {"_count": 1}, "down": {"_count": 1}, "from": {"_count": 1}, "out": {"_count": 2}, "running": {"_count": 1}, "hobbling": {"_count": 1}}, "about": {"_count": 8, "to": {"_count": 6}, "summed": {"_count": 1}, "enough": {"_count": 1}}, "asked": {"_count": 4, "her": {"_count": 1}, "Potter": {"_count": 1}, "Fleur": {"_count": 1}, "me": {"_count": 1}}, "rather": {"_count": 1, "Harry": {"_count": 1}}, "flicked": {"_count": 1, "a": {"_count": 1}}, "last": {"_count": 3, "night": {"_count": 2}, "week": {"_count": 1}}, "He": {"_count": 1, "put": {"_count": 1}}, "kicked": {"_count": 1, "Lockhart": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "traveled": {"_count": 1, "miles": {"_count": 1}}, "giving": {"_count": 2, "out": {"_count": 1}, "a": {"_count": 1}}, "below": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "burst": {"_count": 2, "from": {"_count": 1}, "his": {"_count": 1}}, "lost": {"_count": 2, "control": {"_count": 1}, "hadnt": {"_count": 1}}, "over": {"_count": 5, "there": {"_count": 1}, "twelve": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "spotted": {"_count": 3, "her": {"_count": 1}, "Ron": {"_count": 1}, "that": {"_count": 1}}, "closed": {"_count": 3, "and": {"_count": 1}, "the": {"_count": 1}, "upon": {"_count": 1}}, "persuading": {"_count": 1, "a": {"_count": 1}}, "given": {"_count": 5, "him": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "look": {"_count": 4, "like": {"_count": 2}, "after": {"_count": 1}, "at": {"_count": 1}}, "ambled": {"_count": 2, "onto": {"_count": 1}, "over": {"_count": 1}}, "fallen": {"_count": 3, "off": {"_count": 1}, "through": {"_count": 1}, "down": {"_count": 1}}, "managed": {"_count": 7, "to": {"_count": 7}}, "showing": {"_count": 2, "Harry": {"_count": 1}, "off": {"_count": 1}}, "happened": {"_count": 15, "": {"_count": 9}, "with": {"_count": 1}, "but": {"_count": 2}, "in": {"_count": 1}, "seeing": {"_count": 1}, "he": {"_count": 1}}, "Apparate": {"_count": 2, "in": {"_count": 1}, "directly": {"_count": 1}}, "before": {"_count": 13, "ah": {"_count": 1}, "you": {"_count": 1}, "breakfast": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 2}, "Uncle": {"_count": 1}, "lunch": {"_count": 1}, "we": {"_count": 1}, "she": {"_count": 1}, "Christmas": {"_count": 1}, "I": {"_count": 1}}, "climbed": {"_count": 1, "out": {"_count": 1}}, "came": {"_count": 2, "through": {"_count": 1}, "out": {"_count": 1}}, "entered": {"_count": 9, "the": {"_count": 8}, "": {"_count": 1}}, "hoping": {"_count": 1, "you": {"_count": 1}}, "need": {"_count": 11, "a": {"_count": 2}, "the": {"_count": 1}, "to": {"_count": 5}, "four": {"_count": 1}, "some": {"_count": 1}, "you": {"_count": 1}}, "yet": {"_count": 5, "": {"_count": 4}, "Molly": {"_count": 1}}, "informed": {"_count": 2, "me": {"_count": 2}}, "walk": {"_count": 4, "into": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}, "we": {"_count": 1}}, "trying": {"_count": 7, "to": {"_count": 7}}, "run": {"_count": 6, "a": {"_count": 3}, "in": {"_count": 1}, "both": {"_count": 1}, "miles": {"_count": 1}}, "exist": {"_count": 1, "": {"_count": 1}}, "hold": {"_count": 2, "it": {"_count": 2}}, "drop": {"_count": 2, "a": {"_count": 1}, "one": {"_count": 1}}, "fly": {"_count": 1, "like": {"_count": 1}}, "acted": {"_count": 1, "like": {"_count": 1}}, "get": {"_count": 10, "rid": {"_count": 2}, "out": {"_count": 2}, "instructions": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "considering": {"_count": 1, "taking": {"_count": 1}}, "discussing": {"_count": 3, "your": {"_count": 1}, "tactics": {"_count": 1}, "You": {"_count": 1}}, "short": {"_count": 2, "of": {"_count": 2}}, "better": {"_count": 1, "had": {"_count": 1}}, "ignore": {"_count": 4, "it": {"_count": 2}, "them": {"_count": 2}}, "told": {"_count": 19, "me": {"_count": 7}, "us": {"_count": 3}, "off": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 3}, "her": {"_count": 2}, "him": {"_count": 2}}, "sit": {"_count": 3, "there": {"_count": 1}, "quietly": {"_count": 1}, "up": {"_count": 1}}, "vanished": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "finish": {"_count": 1, "me": {"_count": 1}}, "saved": {"_count": 7, "your": {"_count": 1}, "all": {"_count": 1}, "Harry": {"_count": 1}, "Harrys": {"_count": 1}, "my": {"_count": 2}, "With": {"_count": 1}}, "strap": {"_count": 1, "your": {"_count": 1}}, "listen": {"_count": 2, "But": {"_count": 1}, "to": {"_count": 1}}, "lying": {"_count": 3, "there": {"_count": 3}}, "dashed": {"_count": 1, "out": {"_count": 1}}, "saw": {"_count": 4, "THEY": {"_count": 1}, "Hagrid": {"_count": 1}, "said": {"_count": 1}, "him": {"_count": 1}}, "suffered": {"_count": 1, "a": {"_count": 1}}, "pressed": {"_count": 1, "a": {"_count": 1}}, "uttered": {"_count": 1, "a": {"_count": 1}}, "aged": {"_count": 1, "thirty": {"_count": 1}}, "blasted": {"_count": 1, "away": {"_count": 1}}, "but": {"_count": 1, "Ive": {"_count": 1}}, "keeps": {"_count": 1, "laughing": {"_count": 1}}, "that": {"_count": 17, "its": {"_count": 1}, "Skeeter": {"_count": 1}, "Potter": {"_count": 1}, "before": {"_count": 1}, "minor": {"_count": 1}, "there": {"_count": 1}, "Dobbys": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 3}, "said": {"_count": 1}, "five": {"_count": 1}, "Harry": {"_count": 1}}, "havent": {"_count": 3, "got": {"_count": 2}, "learned": {"_count": 1}}, "think": {"_count": 7, "is": {"_count": 1}, "hes": {"_count": 1}, "shes": {"_count": 1}, "theyve": {"_count": 1}, "its": {"_count": 2}, "he": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 2}, "my": {"_count": 1}, "House": {"_count": 1}}, "turn": {"_count": 5, "up": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "foreigners": {"_count": 1, "": {"_count": 1}}, "dawning": {"_count": 1, "on": {"_count": 1}}, "Rons": {"_count": 1, "eyes": {"_count": 1}}, "eighteen": {"_count": 1, "or": {"_count": 1}}, "Apparated": {"_count": 4, "at": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 1}, "into": {"_count": 1}}, "call": {"_count": 1, "me": {"_count": 1}}, "jumped": {"_count": 1, "from": {"_count": 1}}, "making": {"_count": 4, "Lynch": {"_count": 1}, "the": {"_count": 1}, "trouble": {"_count": 1}, "notes": {"_count": 1}}, "scrambled": {"_count": 1, "over": {"_count": 1}}, "grab": {"_count": 2, "a": {"_count": 2}}, "But": {"_count": 1, "she": {"_count": 1}}, "beyond": {"_count": 5, "the": {"_count": 5}}, "picking": {"_count": 1, "it": {"_count": 1}}, "picked": {"_count": 2, "it": {"_count": 1}, "them": {"_count": 1}}, "explain": {"_count": 1, "what": {"_count": 1}}, "change": {"_count": 1, "into": {"_count": 1}}, "piling": {"_count": 1, "underwear": {"_count": 1}}, "likes": {"_count": 1, "it": {"_count": 1}}, "frozen": {"_count": 1, "about": {"_count": 1}}, "died": {"_count": 3, "just": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "snuffed": {"_count": 1, "it": {"_count": 1}}, "hit": {"_count": 1, "himself": {"_count": 1}}, "imagined": {"_count": 1, "my": {"_count": 1}}, "watch": {"_count": 2, "out": {"_count": 1}, "yourself": {"_count": 1}}, "bet": {"_count": 1, "they": {"_count": 1}}, "bustled": {"_count": 1, "up": {"_count": 1}}, "gobbed": {"_count": 1, "you": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "emerged": {"_count": 5, "from": {"_count": 5}}, "stood": {"_count": 2, "there": {"_count": 2}}, "gone": {"_count": 7, "out": {"_count": 1}, "to": {"_count": 2}, "through": {"_count": 1}, "exploring": {"_count": 1}, "up": {"_count": 1}, "down": {"_count": 1}}, "being": {"_count": 2, "his": {"_count": 1}, "The": {"_count": 1}}, "werent": {"_count": 1, "concentrating": {"_count": 1}}, "washed": {"_count": 1, "it": {"_count": 1}}, "written": {"_count": 1, "Tears": {"_count": 1}}, "explode": {"_count": 1, "with": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 6, "dropped": {"_count": 1}, "its": {"_count": 1}, "and": {"_count": 3}, "whos": {"_count": 1}}, "wasnt": {"_count": 2, "the": {"_count": 1}, "interesting": {"_count": 1}}, "open": {"_count": 2, "": {"_count": 1}, "cant": {"_count": 1}}, "under": {"_count": 2, "fifteen": {"_count": 1}, "a": {"_count": 1}}, "shown": {"_count": 1, "me": {"_count": 1}}, "running": {"_count": 1, "away": {"_count": 1}}, "split": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 4, "Potter": {"_count": 1}, "whatever": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "stupid": {"_count": 1, "": {"_count": 1}}, "lose": {"_count": 1, "his": {"_count": 1}}, "another": {"_count": 5, "Quidditch": {"_count": 2}, "ugly": {"_count": 1}, "feature": {"_count": 1}, "minute": {"_count": 1}}, "hang": {"_count": 2, "here": {"_count": 1}, "back": {"_count": 1}}, "beaten": {"_count": 1, "a": {"_count": 1}}, "walking": {"_count": 2, "past": {"_count": 1}, "off": {"_count": 1}}, "sort": {"_count": 2, "of": {"_count": 2}}, "walked": {"_count": 8, "past": {"_count": 2}, "into": {"_count": 1}, "right": {"_count": 1}, "up": {"_count": 1}, "across": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}}, "prod": {"_count": 1, "me": {"_count": 1}}, "Dobby": {"_count": 1, "Harry": {"_count": 1}}, "unwrapped": {"_count": 1, "and": {"_count": 1}}, "waved": {"_count": 1, "and": {"_count": 1}}, "glad": {"_count": 2, "he": {"_count": 1}, "we": {"_count": 1}}, "four": {"_count": 1, "floors": {"_count": 1}}, "vicious": {"_count": 1, "giants": {"_count": 1}}, "mull": {"_count": 1, "things": {"_count": 1}}, "proves": {"_count": 1, "completely": {"_count": 1}}, "bigotry": {"_count": 1, "isnt": {"_count": 1}}, "having": {"_count": 2, "some": {"_count": 1}, "a": {"_count": 1}}, "meant": {"_count": 1, "Hagrid": {"_count": 1}}, "pulled": {"_count": 2, "a": {"_count": 1}, "away": {"_count": 1}}, "forgot": {"_count": 1, "": {"_count": 1}}, "helped": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "couldnt": {"_count": 2, "bring": {"_count": 1}, "keep": {"_count": 1}}, "has": {"_count": 1, "to": {"_count": 1}}, "nodded": {"_count": 2, "feeling": {"_count": 1}, "": {"_count": 1}}, "poked": {"_count": 2, "him": {"_count": 1}, "its": {"_count": 1}}, "rescued": {"_count": 1, "her": {"_count": 1}}, "grabbed": {"_count": 1, "Ron": {"_count": 1}}, "find": {"_count": 2, "that": {"_count": 1}, "out": {"_count": 1}}, "witnessed": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}}, "far": {"_count": 1, "enough": {"_count": 1}}, "lifted": {"_count": 1, "to": {"_count": 1}}, "ask": {"_count": 2, "you": {"_count": 1}, "Hermione": {"_count": 1}}, "raving": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "kept": {"_count": 2, "saying": {"_count": 1}, "playing": {"_count": 1}}, "polish": {"_count": 1, "me": {"_count": 1}}, "know": {"_count": 2, "there": {"_count": 1}, "the": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 2, "at": {"_count": 2}}, "these": {"_count": 1, "serried": {"_count": 1}}, "hurried": {"_count": 1, "out": {"_count": 1}}, "answer": {"_count": 3, "no": {"_count": 2}, "me": {"_count": 1}}, "around": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "Father": {"_count": 1, "and": {"_count": 1}}, "watched": {"_count": 1, "someone": {"_count": 1}}, "swung": {"_count": 1, "a": {"_count": 1}}, "destroyed": {"_count": 1, "the": {"_count": 1}}, "wrote": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Mr": {"_count": 1, "Prentice": {"_count": 1}}, "brushing": {"_count": 1, "the": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "waiting": {"_count": 4, "for": {"_count": 4}}, "depress": {"_count": 1, "them": {"_count": 1}}, "smashed": {"_count": 1, "an": {"_count": 1}}, "memorized": {"_count": 1, "said": {"_count": 1}}, "show": {"_count": 2, "you": {"_count": 1}, "You": {"_count": 1}}, "outrageous": {"_count": 1, "Ive": {"_count": 1}}, "soar": {"_count": 1, "away": {"_count": 1}}, "slip": {"_count": 1, "you": {"_count": 1}}, "building": {"_count": 1, "on": {"_count": 1}}, "some": {"_count": 3, "stupid": {"_count": 1}, "guff": {"_count": 1}, "mad": {"_count": 1}}, "me": {"_count": 1, "Dumbledore": {"_count": 1}}, "tiptoe": {"_count": 1, "across": {"_count": 1}}, "relieved": {"_count": 1, "me": {"_count": 1}}, "ill": {"_count": 1, "enough": {"_count": 1}}, "hand": {"_count": 2, "in": {"_count": 1}, "us": {"_count": 1}}, "surprised": {"_count": 1, "thats": {"_count": 1}}, "toast": {"_count": 1, "thanks": {"_count": 1}}, "tttoo": {"_count": 1, "tired": {"_count": 1}}, "zoomed": {"_count": 1, "in": {"_count": 1}}, "your": {"_count": 3, "word": {"_count": 1}, "mothers": {"_count": 1}, "expression": {"_count": 1}}, "happening": {"_count": 1, "to": {"_count": 1}}, "ten": {"_count": 1, "Galleons": {"_count": 1}}, "thrilled": {"_count": 1, "oh": {"_count": 1}}, "ssso": {"_count": 1, "worried": {"_count": 1}}, "up": {"_count": 3, "here": {"_count": 2}, "in": {"_count": 1}}, "appeared": {"_count": 3, "behind": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "those": {"_count": 1, "Whose": {"_count": 1}}, "dismissed": {"_count": 1, "the": {"_count": 1}}, "cleverer": {"_count": 1, "than": {"_count": 1}}, "since": {"_count": 1, "they": {"_count": 1}}, "jumping": {"_count": 1, "on": {"_count": 1}}, "flared": {"_count": 1, "so": {"_count": 1}}, "Your": {"_count": 1, "hand": {"_count": 1}}, "shot": {"_count": 1, "up": {"_count": 1}}, "beneath": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "sad": {"_count": 1, "But": {"_count": 1}}, "playing": {"_count": 1, "into": {"_count": 1}}, "wish": {"_count": 6, "Hagrid": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "Id": {"_count": 3}}, "experienced": {"_count": 1, "an": {"_count": 1}}, "went": {"_count": 2, "past": {"_count": 1}, "straight": {"_count": 1}}, "scratched": {"_count": 1, "his": {"_count": 1}}, "shifted": {"_count": 1, "his": {"_count": 1}}, "felt": {"_count": 3, "in": {"_count": 1}, "anger": {"_count": 2}}, "coincidence": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 1, "reading": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "returned": {"_count": 1, "from": {"_count": 1}}, "wont": {"_count": 2, "be": {"_count": 1}, "budge": {"_count": 1}}, "bring": {"_count": 1, "the": {"_count": 1}}, "nervous": {"_count": 2, "said": {"_count": 2}}, "sighted": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "draw": {"_count": 1, "even": {"_count": 1}}, "by": {"_count": 4, "turning": {"_count": 1}, "his": {"_count": 1}, "staring": {"_count": 1}, "making": {"_count": 1}}, "lurked": {"_count": 1, "in": {"_count": 1}}, "predict": {"_count": 1, "something": {"_count": 1}}, "just": {"_count": 4, "do": {"_count": 1}, "something": {"_count": 1}, "so": {"_count": 1}, "hold": {"_count": 1}}, "learn": {"_count": 1, "things": {"_count": 1}}, "blundered": {"_count": 1, "through": {"_count": 1}}, "memorizing": {"_count": 2, "a": {"_count": 2}}, "clear": {"_count": 1, "this": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "smiled": {"_count": 1, "at": {"_count": 1}}, "theory": {"_count": 1, "but": {"_count": 1}}, "dawned": {"_count": 1, "upon": {"_count": 1}}, "praised": {"_count": 1, "him": {"_count": 1}}, "Ernie": {"_count": 1, "do": {"_count": 1}}, "signed": {"_count": 1, "some": {"_count": 1}}, "discernible": {"_count": 1, "in": {"_count": 1}}, "slid": {"_count": 1, "neatly": {"_count": 1}}, "charged": {"_count": 1, "past": {"_count": 1}}, "stuff": {"_count": 1, "for": {"_count": 1}}, "wonder": {"_count": 1, "if": {"_count": 1}}, "tell": {"_count": 4, "me": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "us": {"_count": 1}}, "her": {"_count": 1, "Harry": {"_count": 1}}, "sore": {"_count": 1, "he": {"_count": 1}}, "oh": {"_count": 1, "Hagrid": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "doesnt": {"_count": 1, "get": {"_count": 1}}, "makes": {"_count": 3, "me": {"_count": 2}, "more": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "dreaming": {"_count": 2, "": {"_count": 2}}, "seeing": {"_count": 1, "the": {"_count": 1}}, "blend": {"_count": 1, "in": {"_count": 1}}, "melted": {"_count": 1, "into": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "something": {"_count": 2, "Pye": {"_count": 1}, "to": {"_count": 1}}, "er": {"_count": 1, "But": {"_count": 1}}, "goes": {"_count": 1, "to": {"_count": 1}}, "gonna": {"_count": 1, "let": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "recognized": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "feel": {"_count": 2, "a": {"_count": 1}, "like": {"_count": 1}}, "lie": {"_count": 2, "down": {"_count": 1}, "here": {"_count": 1}}, "stand": {"_count": 1, "there": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "ppaid": {"_count": 1, "and": {"_count": 1}}, "stopped": {"_count": 2, "thinking": {"_count": 1}, "if": {"_count": 1}}, "broken": {"_count": 1, "into": {"_count": 1}}, "took": {"_count": 1, "refuge": {"_count": 1}}, "reach": {"_count": 2, "it": {"_count": 2}}, "docked": {"_count": 1, "us": {"_count": 1}}, "talked": {"_count": 1, "to": {"_count": 1}}, "coughed": {"_count": 1, "her": {"_count": 1}}, "concerned": {"_count": 1, "that": {"_count": 1}}, "fancied": {"_count": 1, "a": {"_count": 1}}, "attacked": {"_count": 3, "Snape": {"_count": 1}, "them": {"_count": 1}, "and": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "reminded": {"_count": 1, "Harry": {"_count": 1}}, "ran": {"_count": 1, "out": {"_count": 1}}, "achieved": {"_count": 1, "an": {"_count": 1}}, "chucking": {"_count": 1, "them": {"_count": 1}}, "fell": {"_count": 1, "asleep": {"_count": 1}}, "someone": {"_count": 1, "Voldemort": {"_count": 1}}, "check": {"_count": 1, "that": {"_count": 1}}, "along": {"_count": 1, "here": {"_count": 1}}, "hoped": {"_count": 2, "youd": {"_count": 1}, "you": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}, "sealed": {"_count": 1, "": {"_count": 1}}, "struck": {"_count": 1, "dumb": {"_count": 1}}, "floating": {"_count": 1, "in": {"_count": 1}}, "sneered": {"_count": 1, "at": {"_count": 1}}, "says": {"_count": 2, "it": {"_count": 1}, "hes": {"_count": 1}}, "descended": {"_count": 1, "the": {"_count": 1}}, "stumped": {"_count": 1, "up": {"_count": 1}}, "youre": {"_count": 1, "dead": {"_count": 1}}, "lurking": {"_count": 1, "out": {"_count": 1}}, "finishing": {"_count": 1, "a": {"_count": 1}}, "two": {"_count": 1, "hours": {"_count": 1}}, "seemed": {"_count": 1, "too": {"_count": 1}}, "crane": {"_count": 1, "your": {"_count": 1}}, "swept": {"_count": 1, "through": {"_count": 1}}, "hard": {"_count": 1, "Harry": {"_count": 1}}, "shows": {"_count": 1, "you": {"_count": 1}}, "people": {"_count": 1, "like": {"_count": 1}}, "silly": {"_count": 3, "to": {"_count": 1}, "": {"_count": 2}}, "our": {"_count": 1, "family": {"_count": 1}}, "buck": {"_count": 1, "up": {"_count": 1}}, "laundered": {"_count": 1, "towels": {"_count": 1}}, "Ouch": {"_count": 1, "": {"_count": 1}}, "developed": {"_count": 1, "this": {"_count": 1}}, "bounces": {"_count": 1, "off": {"_count": 1}}, "imparted": {"_count": 1, "Dumbledore": {"_count": 1}}, "tried": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "proved": {"_count": 2, "a": {"_count": 1}, "my": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "hurrying": {"_count": 1, "toward": {"_count": 1}}, "behaved": {"_count": 1, "and": {"_count": 1}}, "wouldnt": {"_count": 1, "listen": {"_count": 1}}, "crossed": {"_count": 1, "her": {"_count": 1}}, "Panicked": {"_count": 1, "Ginny": {"_count": 1}}, "tipped": {"_count": 1, "something": {"_count": 1}}, "conjured": {"_count": 1, "out": {"_count": 1}}, "practicing": {"_count": 1, "": {"_count": 1}}, "invite": {"_count": 2, "someone": {"_count": 1}, "him": {"_count": 1}}, "embarked": {"_count": 1, "upon": {"_count": 1}}, "fought": {"_count": 1, "her": {"_count": 1}}, "escaped": {"_count": 1, "I": {"_count": 1}}, "fall": {"_count": 1, "apart": {"_count": 1}}, "leaves": {"_count": 1, "Harry": {"_count": 1}}, "use": {"_count": 1, "your": {"_count": 1}}, "Seamus": {"_count": 1, "clicked": {"_count": 1}}, "loud": {"_count": 1, "enough": {"_count": 1}}, "eaten": {"_count": 3, "half": {"_count": 1}, "said": {"_count": 1}, "an": {"_count": 1}}, "glued": {"_count": 1, "itself": {"_count": 1}}, "vacated": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "listened": {"_count": 1, "to": {"_count": 1}}, "Sort": {"_count": 1, "of": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "removed": {"_count": 1, "from": {"_count": 1}}, "encountered": {"_count": 1, "a": {"_count": 1}}, "end": {"_count": 1, "up": {"_count": 1}}, "feet": {"_count": 1, "away": {"_count": 1}}, "forget": {"_count": 1, "about": {"_count": 1}}, "failed": {"_count": 1, "whispered": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "refrained": {"_count": 1, "from": {"_count": 1}}, "means": {"_count": 1, "love": {"_count": 1}}, "love": {"_count": 1, "said": {"_count": 1}}, "needed": {"_count": 1, "to": {"_count": 1}}, "drink": {"_count": 1, "": {"_count": 1}}, "miss": {"_count": 1, "us": {"_count": 1}}, "assumed": {"_count": 1, "that": {"_count": 1}}, "fired": {"_count": 1, "off": {"_count": 1}}, "Disapparated": {"_count": 1, "from": {"_count": 1}}, "inadvertently": {"_count": 1, "reminded": {"_count": 1}}, "married": {"_count": 1, "the": {"_count": 1}}, "expressed": {"_count": 1, "a": {"_count": 1}}, "rely": {"_count": 1, "on": {"_count": 1}}, "doit": {"_count": 1, "sort": {"_count": 1}}, "soared": {"_count": 1, "into": {"_count": 1}}, "risked": {"_count": 1, "his": {"_count": 1}}, "released": {"_count": 1, "the": {"_count": 1}}, "Charlie": {"_count": 1, "now": {"_count": 1}}, "realizing": {"_count": 1, "that": {"_count": 1}}, "beginning": {"_count": 1, "to": {"_count": 1}}, "knocked": {"_count": 1, "it": {"_count": 1}}, "disappear": {"_count": 1, "please": {"_count": 1}}, "strolling": {"_count": 1, "down": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "flown": {"_count": 1, "out": {"_count": 1}}, "follow": {"_count": 1, "the": {"_count": 1}}, "learned": {"_count": 1, "to": {"_count": 1}}, "borrow": {"_count": 1, "yours": {"_count": 1}}, "talk": {"_count": 1, "but": {"_count": 1}}, "trust": {"_count": 1, "me": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "described": {"_count": 1, "was": {"_count": 1}}, "thinks": {"_count": 1, "its": {"_count": 1}}, "possess": {"_count": 1, "them": {"_count": 1}}, "able": {"_count": 2, "to": {"_count": 2}}, "add": {"_count": 1, "that": {"_count": 1}}, "move": {"_count": 1, "over": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "cleared": {"_count": 1, "an": {"_count": 1}}, "possible": {"_count": 1, "to": {"_count": 1}}, "Stunned": {"_count": 1, "": {"_count": 1}}, "checked": {"_count": 1, "them": {"_count": 1}}, "cast": {"_count": 1, "": {"_count": 1}}, "poke": {"_count": 1, "the": {"_count": 1}}, "Gryffindor": {"_count": 1, "hangings": {"_count": 1}}, "discovered": {"_count": 1, "the": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "fragmented": {"_count": 1, "in": {"_count": 1}}, "backed": {"_count": 1, "into": {"_count": 1}}, "evil": {"_count": 1, "": {"_count": 1}}, "Slipped": {"_count": 1, "out": {"_count": 1}}, "connected": {"_count": 1, "by": {"_count": 1}}}, "didnt": {"_count": 1298, "hold": {"_count": 1, "with": {"_count": 1}}, "think": {"_count": 32, "they": {"_count": 1}, "he": {"_count": 3}, "this": {"_count": 1}, "there": {"_count": 3}, "Quirrell": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}, "That": {"_count": 1}, "ghosts": {"_count": 1}, "so": {"_count": 2}, "his": {"_count": 1}, "Id": {"_count": 1}, "famous": {"_count": 1}, "it": {"_count": 4}, "of": {"_count": 2}, "had": {"_count": 1}, "much": {"_count": 1}, "that": {"_count": 1}, "Mum": {"_count": 1}, "anyone": {"_count": 1}, "my": {"_count": 1}, "Harry": {"_count": 1}, "about": {"_count": 1}}, "have": {"_count": 73, "a": {"_count": 19}, "enough": {"_count": 3}, "his": {"_count": 3}, "to": {"_count": 11}, "Mars": {"_count": 1}, "much": {"_count": 5}, "the": {"_count": 6}, "time": {"_count": 2}, "quite": {"_count": 1}, "as": {"_count": 1}, "scars": {"_count": 1}, "anything": {"_count": 2}, "any": {"_count": 6}, "long": {"_count": 1}, "breath": {"_count": 1}, "lunch": {"_count": 1}, "last": {"_count": 3}, "you": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 3}, "him": {"_count": 1}}, "want": {"_count": 84, "Dudley": {"_count": 1}, "to": {"_count": 46}, "all": {"_count": 1}, "us": {"_count": 1}, "one": {"_count": 1}, "you": {"_count": 6}, "Lupin": {"_count": 1}, "Fred": {"_count": 1}, "his": {"_count": 2}, "it": {"_count": 2}, "some": {"_count": 1}, "the": {"_count": 2}, "George": {"_count": 1}, "visitors": {"_count": 1}, "another": {"_count": 1}, "Moody": {"_count": 1}, "that": {"_count": 1}, "them": {"_count": 1}, "Voldemort": {"_count": 1}, "me": {"_count": 7}, "anyone": {"_count": 3}, "people": {"_count": 1}, "Ariana": {"_count": 1}}, "realize": {"_count": 19, "what": {"_count": 3}, "it": {"_count": 2}, "that": {"_count": 3}, "how": {"_count": 2}, "Fred": {"_count": 1}, "this": {"_count": 1}, "wed": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}, "Harry": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}, "but": {"_count": 1}}, "see": {"_count": 26, "the": {"_count": 1}, "him": {"_count": 4}, "you": {"_count": 4}, "how": {"_count": 3}, "another": {"_count": 1}, "anything": {"_count": 1}, "her": {"_count": 2}, "what": {"_count": 1}, "a": {"_count": 1}, "Madame": {"_count": 1}, "his": {"_count": 1}, "me": {"_count": 1}, "that": {"_count": 2}, "Harry": {"_count": 1}, "anyone": {"_count": 1}, "them": {"_count": 1}}, "know": {"_count": 86, "why": {"_count": 2}, "what": {"_count": 24}, "": {"_count": 8}, "where": {"_count": 3}, "anything": {"_count": 3}, "any": {"_count": 1}, "whether": {"_count": 8}, "which": {"_count": 2}, "how": {"_count": 4}, "it": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 3}, "my": {"_count": 1}, "you": {"_count": 6}, "about": {"_count": 1}, "or": {"_count": 1}, "never": {"_count": 1}, "half": {"_count": 1}, "but": {"_count": 2}, "leprechaun": {"_count": 1}, "hed": {"_count": 1}, "that": {"_count": 3}, "he": {"_count": 2}, "too": {"_count": 1}, "\u2018security": {"_count": 1}, "Slughorn": {"_count": 1}, "students": {"_count": 1}, "I": {"_count": 1}, "there": {"_count": 1}}, "blame": {"_count": 2, "her": {"_count": 1}, "him": {"_count": 1}}, "seem": {"_count": 62, "at": {"_count": 2}, "to": {"_count": 44}, "quite": {"_count": 2}, "very": {"_count": 2}, "as": {"_count": 1}, "perturbed": {"_count": 1}, "too": {"_count": 1}, "even": {"_count": 1}, "keen": {"_count": 1}, "a": {"_count": 1}, "able": {"_count": 1}, "herself": {"_count": 1}, "in": {"_count": 2}, "like": {"_count": 1}, "different": {"_count": 1}}, "approve": {"_count": 3, "of": {"_count": 2}, "at": {"_count": 1}}, "improve": {"_count": 2, "his": {"_count": 1}, "for": {"_count": 1}}, "move": {"_count": 21, "": {"_count": 18}, "so": {"_count": 1}, "at": {"_count": 1}, "or": {"_count": 1}}, "dare": {"_count": 16, "": {"_count": 1}, "ask": {"_count": 1}, "get": {"_count": 2}, "mention": {"_count": 1}, "look": {"_count": 2}, "try": {"_count": 1}, "taunt": {"_count": 1}, "go": {"_count": 1}, "retrieve": {"_count": 1}, "say": {"_count": 1}, "tell": {"_count": 1}, "slow": {"_count": 1}, "mess": {"_count": 1}, "use": {"_count": 1}}, "say": {"_count": 34, "another": {"_count": 1}, "anything": {"_count": 19}, "a": {"_count": 2}, "please": {"_count": 1}, "where": {"_count": 2}, "Cleared": {"_count": 1}, "Shh": {"_count": 1}, "youd": {"_count": 1}, "much": {"_count": 1}, "whod": {"_count": 1}, "it": {"_count": 2}, "": {"_count": 1}, "He": {"_count": 1}}, "so": {"_count": 2, "much": {"_count": 1}, "she": {"_count": 1}}, "look": {"_count": 37, "at": {"_count": 3}, "it": {"_count": 2}, "in": {"_count": 1}, "too": {"_count": 2}, "as": {"_count": 2}, "up": {"_count": 3}, "happy": {"_count": 4}, "right": {"_count": 1}, "worried": {"_count": 1}, "remotely": {"_count": 4}, "like": {"_count": 5}, "surprised": {"_count": 1}, "nearly": {"_count": 1}, "very": {"_count": 2}, "anything": {"_count": 2}, "back": {"_count": 1}, "so": {"_count": 1}, "funny": {"_count": 1}}, "believe": {"_count": 10, "him": {"_count": 3}, "you": {"_count": 1}, "half": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "us": {"_count": 1}, "Hagrid": {"_count": 1}, "I": {"_count": 1}}, "make": {"_count": 11, "them": {"_count": 1}, "the": {"_count": 1}, "any": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 2}, "that": {"_count": 1}, "you": {"_count": 1}, "Potter": {"_count": 1}, "me": {"_count": 1}, "up": {"_count": 1}}, "budge": {"_count": 1, "": {"_count": 1}}, "trust": {"_count": 2, "himself": {"_count": 1}, "him": {"_count": 1}}, "belong": {"_count": 2, "to": {"_count": 2}}, "stop": {"_count": 11, "there": {"_count": 2}, "to": {"_count": 3}, "running": {"_count": 1}, "him": {"_count": 2}, "questioning": {"_count": 1}, "them": {"_count": 1}, "": {"_count": 1}}, "fail": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 31, "exactly": {"_count": 1}, "anything": {"_count": 9}, "it": {"_count": 16}, "that": {"_count": 3}, "or": {"_count": 1}, "Dumbledore": {"_count": 1}}, "go": {"_count": 7, "to": {"_count": 1}, "red": {"_count": 1}, "back": {"_count": 1}, "down": {"_count": 1}, "too": {"_count": 1}, "on": {"_count": 2}}, "answer": {"_count": 19, "Aunt": {"_count": 1}, "Snape": {"_count": 1}, "immediately": {"_count": 1}, "": {"_count": 15}, "any": {"_count": 1}}, "cheer": {"_count": 1, "him": {"_count": 1}}, "work": {"_count": 12, "on": {"_count": 1}, "anyway": {"_count": 1}, "": {"_count": 3}, "anymore": {"_count": 2}, "said": {"_count": 2}, "Oh": {"_count": 1}, "Harry": {"_count": 1}, "out": {"_count": 1}}, "mention": {"_count": 3, "that": {"_count": 1}, "this": {"_count": 1}, "names": {"_count": 1}}, "open": {"_count": 3, "his": {"_count": 2}, "": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "leave": {"_count": 3, "yeh": {"_count": 1}, "spots": {"_count": 1}, "your": {"_count": 1}}, "understand": {"_count": 11, "Muggle": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 2}, "Dean": {"_count": 1}, "what": {"_count": 3}, "him": {"_count": 1}, "why": {"_count": 2}}, "glance": {"_count": 1, "at": {"_count": 1}}, "I": {"_count": 21, "": {"_count": 10}, "see": {"_count": 1}, "just": {"_count": 1}, "Dot": {"_count": 1}, "swear": {"_count": 1}, "meant": {"_count": 1}, "think": {"_count": 1}, "ask": {"_count": 1}, "make": {"_count": 1}, "tell": {"_count": 3}}, "": {"_count": 25, ".": {"_count": 19}, "!": {"_count": 6}}, "feel": {"_count": 20, "much": {"_count": 3}, "brave": {"_count": 1}, "sorry": {"_count": 1}, "like": {"_count": 4}, "hungry": {"_count": 1}, "very": {"_count": 1}, "more": {"_count": 1}, "a": {"_count": 2}, "right": {"_count": 1}, "that": {"_count": 1}, "remotely": {"_count": 1}, "icy": {"_count": 1}, "the": {"_count": 1}, "anything": {"_count": 1}}, "speak": {"_count": 8, "at": {"_count": 2}, "to": {"_count": 2}, "": {"_count": 3}, "again": {"_count": 1}}, "even": {"_count": 21, "notice": {"_count": 2}, "seem": {"_count": 1}, "stop": {"_count": 1}, "manage": {"_count": 1}, "get": {"_count": 1}, "look": {"_count": 1}, "touch": {"_count": 1}, "care": {"_count": 1}, "have": {"_count": 1}, "die": {"_count": 1}, "break": {"_count": 1}, "bother": {"_count": 1}, "protest": {"_count": 1}, "blink": {"_count": 1}, "think": {"_count": 1}, "mention": {"_count": 2}, "fall": {"_count": 1}, "do": {"_count": 1}, "make": {"_count": 1}}, "shut": {"_count": 3, "Harry": {"_count": 1}, "them": {"_count": 1}, "up": {"_count": 1}}, "come": {"_count": 8, "in": {"_count": 1}, "": {"_count": 2}, "much": {"_count": 1}, "from": {"_count": 1}, "off": {"_count": 1}, "earlier": {"_count": 1}, "running": {"_count": 1}}, "you": {"_count": 53, "know": {"_count": 4}, "tell": {"_count": 8}, "": {"_count": 19}, "Potter": {"_count": 2}, "send": {"_count": 1}, "hear": {"_count": 2}, "heed": {"_count": 1}, "Harry": {"_count": 1}, "show": {"_count": 1}, "lie": {"_count": 1}, "let": {"_count": 2}, "come": {"_count": 1}, "say": {"_count": 1}, "do": {"_count": 2}, "see": {"_count": 2}, "oh": {"_count": 1}, "confiscate": {"_count": 1}, "stop": {"_count": 1}, "Barry": {"_count": 1}, "take": {"_count": 1}}, "take": {"_count": 8, "it": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}, "hes": {"_count": 1}, "on": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 1}}, "need": {"_count": 20, "an": {"_count": 1}, "to": {"_count": 9}, "them": {"_count": 1}, "him": {"_count": 1}, "telling": {"_count": 2}, "the": {"_count": 2}, "much": {"_count": 1}, "that": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}}, "simply": {"_count": 1, "open": {"_count": 1}}, "tell": {"_count": 16, "him": {"_count": 3}, "us": {"_count": 5}, "anyone": {"_count": 1}, "me": {"_count": 2}, "Ron": {"_count": 1}, "everyone": {"_count": 1}, "you": {"_count": 2}, "Wormtail": {"_count": 1}}, "like": {"_count": 23, "Harry": {"_count": 1}, "the": {"_count": 5}, "coming": {"_count": 1}, "that": {"_count": 3}, "it": {"_count": 2}, "to": {"_count": 3}, "": {"_count": 1}, "each": {"_count": 1}, "magic": {"_count": 1}, "him": {"_count": 1}, "Gryffindor": {"_count": 1}, "her": {"_count": 1}, "seeing": {"_count": 1}, "Dumbledore": {"_count": 1}}, "remember": {"_count": 1, "the": {"_count": 1}}, "help": {"_count": 5, "either": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "us": {"_count": 1}}, "dislike": {"_count": 1, "Harry": {"_count": 1}}, "quite": {"_count": 2, "meet": {"_count": 1}, "know": {"_count": 1}}, "meet": {"_count": 5, "Harrys": {"_count": 1}, "anyone": {"_count": 2}, "anything": {"_count": 1}, "him": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "find": {"_count": 3, "out": {"_count": 1}, "it": {"_count": 1}, "much": {"_count": 1}}, "miss": {"_count": 1, "a": {"_count": 1}}, "turn": {"_count": 9, "up": {"_count": 8}, "you": {"_count": 1}}, "catch": {"_count": 2, "it": {"_count": 2}}, "expect": {"_count": 8, "any": {"_count": 1}, "You": {"_count": 1}, "you": {"_count": 3}, "him": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "just": {"_count": 2, "bang": {"_count": 1}, "throw": {"_count": 1}}, "recognize": {"_count": 4, "where": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "Devils": {"_count": 1}}, "get": {"_count": 24, "a": {"_count": 3}, "rid": {"_count": 2}, "any": {"_count": 1}, "it": {"_count": 3}, "as": {"_count": 1}, "more": {"_count": 1}, "enough": {"_count": 1}, "into": {"_count": 2}, "there": {"_count": 1}, "homework": {"_count": 1}, "his": {"_count": 1}, "through": {"_count": 1}, "to": {"_count": 1}, "an": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 3}}, "it": {"_count": 9, "": {"_count": 6}, "light": {"_count": 1}, "Harry": {"_count": 1}, "go": {"_count": 1}}, "soothe": {"_count": 1, "Ron": {"_count": 1}}, "sleep": {"_count": 1, "all": {"_count": 1}}, "trouble": {"_count": 2, "to": {"_count": 1}, "them": {"_count": 1}}, "concern": {"_count": 1, "him": {"_count": 1}}, "sound": {"_count": 6, "quite": {"_count": 1}, "anything": {"_count": 1}, "like": {"_count": 2}, "anxious": {"_count": 1}, "completely": {"_count": 1}}, "keep": {"_count": 3, "visiting": {"_count": 1}, "banging": {"_count": 1}, "trying": {"_count": 1}}, "pick": {"_count": 1, "them": {"_count": 1}}, "talk": {"_count": 6, "much": {"_count": 3}, "to": {"_count": 3}}, "youre": {"_count": 1, "invisible": {"_count": 1}}, "give": {"_count": 12, "": {"_count": 1}, "you": {"_count": 2}, "him": {"_count": 1}, "it": {"_count": 4}, "us": {"_count": 2}, "their": {"_count": 1}, "orders": {"_count": 1}}, "worry": {"_count": 1, "Harry": {"_count": 1}}, "attract": {"_count": 1, "attention": {"_count": 1}}, "mean": {"_count": 27, "WHAT": {"_count": 1}, "to": {"_count": 11}, "it": {"_count": 3}, "I": {"_count": 4}, "the": {"_count": 1}, "well": {"_count": 2}, "that": {"_count": 4}, "nothing": {"_count": 1}}, "enchant": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 2, "itll": {"_count": 1}, "had": {"_count": 1}}, "surprise": {"_count": 1, "him": {"_count": 1}}, "ask": {"_count": 5, "them": {"_count": 1}, "for": {"_count": 1}, "how": {"_count": 1}, "permission": {"_count": 1}, "I": {"_count": 1}}, "fly": {"_count": 2, "too": {"_count": 1}, "back": {"_count": 1}}, "hurt": {"_count": 3, "but": {"_count": 1}, "anymore": {"_count": 1}, "the": {"_count": 1}}, "arrive": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "really": {"_count": 11, "want": {"_count": 1}, "understand": {"_count": 1}, "expect": {"_count": 1}, "believe": {"_count": 2}, "suit": {"_count": 1}, "try": {"_count": 1}, "trust": {"_count": 1}, "need": {"_count": 1}, "come": {"_count": 1}, "know": {"_count": 1}}, "smile": {"_count": 2, "": {"_count": 1}, "back": {"_count": 1}}, "enjoy": {"_count": 3, "his": {"_count": 1}, "it": {"_count": 2}}, "much": {"_count": 1, "like": {"_count": 1}}, "read": {"_count": 2, "go": {"_count": 1}, "Witch": {"_count": 1}}, "matter": {"_count": 2, "": {"_count": 1}, "either": {"_count": 1}}, "Harry": {"_count": 4, "Potter": {"_count": 1}, "said": {"_count": 2}, "did": {"_count": 1}}, "care": {"_count": 14, "sir": {"_count": 1}, "he": {"_count": 2}, "if": {"_count": 1}, "that": {"_count": 1}, "how": {"_count": 2}, "at": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 3}, "though": {"_count": 1}, "very": {"_count": 1}}, "chase": {"_count": 1, "it": {"_count": 1}}, "This": {"_count": 1, "is": {"_count": 1}}, "mind": {"_count": 3, "it": {"_count": 1}, "murdering": {"_count": 1}, "practicing": {"_count": 1}}, "spend": {"_count": 1, "much": {"_count": 1}}, "notice": {"_count": 4, "and": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 1}}, "carry": {"_count": 1, "details": {"_count": 1}}, "last": {"_count": 1, "long": {"_count": 1}}, "object": {"_count": 1, "": {"_count": 1}}, "empty": {"_count": 1, "until": {"_count": 1}}, "usually": {"_count": 1, "make": {"_count": 1}}, "touch": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "suit": {"_count": 1, "him": {"_count": 1}}, "agree": {"_count": 1, "to": {"_count": 1}}, "manage": {"_count": 3, "it": {"_count": 1}, "to": {"_count": 2}}, "flinch": {"_count": 1, "at": {"_count": 1}}, "show": {"_count": 1, "it": {"_count": 1}}, "often": {"_count": 1, "stay": {"_count": 1}}, "return": {"_count": 4, "to": {"_count": 1}, "until": {"_count": 1}, "next": {"_count": 1}, "when": {"_count": 1}}, "die": {"_count": 3, "in": {"_count": 2}, "when": {"_count": 1}}, "hit": {"_count": 1, "anything": {"_count": 1}}, "occur": {"_count": 2, "to": {"_count": 2}}, "tally": {"_count": 1, "at": {"_count": 1}}, "sign": {"_count": 2, "the": {"_count": 1}, "my": {"_count": 1}}, "report": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "eat": {"_count": 3, "it": {"_count": 1}, "much": {"_count": 2}}, "any": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 26, "Fred": {"_count": 1}, "just": {"_count": 3}, "said": {"_count": 2}, "": {"_count": 14}, "come": {"_count": 1}, "eh": {"_count": 1}, "because": {"_count": 1}, "turn": {"_count": 1}, "tell": {"_count": 1}, "say": {"_count": 1}}, "pass": {"_count": 2, "out": {"_count": 1}, "information": {"_count": 1}}, "start": {"_count": 2, "": {"_count": 1}, "this": {"_count": 1}}, "we": {"_count": 6, "guess": {"_count": 1}, "Ced": {"_count": 1}, "": {"_count": 3}, "think": {"_count": 1}}, "reappear": {"_count": 1, "in": {"_count": 1}}, "reply": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "lose": {"_count": 1, "": {"_count": 1}}, "argue": {"_count": 1, "or": {"_count": 1}}, "wait": {"_count": 2, "for": {"_count": 2}}, "try": {"_count": 2, "to": {"_count": 1}, "out": {"_count": 1}}, "pause": {"_count": 1, "to": {"_count": 1}}, "affect": {"_count": 1, "me": {"_count": 1}}, "authorize": {"_count": 1, "this": {"_count": 1}}, "slow": {"_count": 1, "down": {"_count": 1}}, "strut": {"_count": 1, "said": {"_count": 1}}, "set": {"_count": 1, "much": {"_count": 1}}, "hand": {"_count": 1, "it": {"_count": 1}}, "join": {"_count": 1, "in": {"_count": 1}}, "raise": {"_count": 1, "the": {"_count": 1}}, "desert": {"_count": 1, "me": {"_count": 1}}, "use": {"_count": 4, "Dark": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "kill": {"_count": 4, "you": {"_count": 3}, "her": {"_count": 1}}, "wince": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "dementors": {"_count": 1}}, "stock": {"_count": 1, "knickerbockers": {"_count": 1}}, "fall": {"_count": 2, "off": {"_count": 2}}, "voice": {"_count": 1, "the": {"_count": 1}}, "blow": {"_count": 1, "his": {"_count": 1}}, "drop": {"_count": 1, "it": {"_count": 1}}, "run": {"_count": 1, "amok": {"_count": 1}}, "hear": {"_count": 13, "her": {"_count": 2}, "him": {"_count": 3}, "you": {"_count": 2}, "about": {"_count": 2}, "all": {"_count": 1}, "anything": {"_count": 1}, "what": {"_count": 1}, "stories": {"_count": 1}}, "pay": {"_count": 2, "Winky": {"_count": 1}, "too": {"_count": 1}}, "actually": {"_count": 1, "attack": {"_count": 1}}, "wobble": {"_count": 1, "too": {"_count": 1}}, "imagine": {"_count": 2, "your": {"_count": 1}, "it": {"_count": 1}}, "they": {"_count": 10, "bring": {"_count": 1}, "": {"_count": 4}, "hurry": {"_count": 1}, "just": {"_count": 1}, "try": {"_count": 1}, "check": {"_count": 1}, "understand": {"_count": 1}}, "put": {"_count": 7, "my": {"_count": 4}, "it": {"_count": 3}}, "said": {"_count": 11, "Harry": {"_count": 5}, "Michael": {"_count": 1}, "Fred": {"_count": 1}, "Sirius": {"_count": 1}, "Slughorn": {"_count": 1}, "Hermione": {"_count": 2}}, "The": {"_count": 1, "other": {"_count": 1}}, "enter": {"_count": 2, "Harry": {"_count": 1}, "said": {"_count": 1}}, "if": {"_count": 1, "Harry": {"_count": 1}}, "cheat": {"_count": 1, "said": {"_count": 1}}, "yet": {"_count": 1, "know": {"_count": 1}}, "shout": {"_count": 1, "out": {"_count": 1}}, "import": {"_count": 1, "those": {"_count": 1}}, "pursue": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "spot": {"_count": 1, "that": {"_count": 1}}, "reach": {"_count": 1, "his": {"_count": 1}}, "appear": {"_count": 1, "at": {"_count": 1}}, "volunteer": {"_count": 1, "for": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "forget": {"_count": 1, "it": {"_count": 1}}, "happen": {"_count": 1, "by": {"_count": 1}}, "waste": {"_count": 1, "time": {"_count": 1}}, "steal": {"_count": 1, "that": {"_count": 1}}, "stay": {"_count": 1, "in": {"_count": 1}}, "bother": {"_count": 3, "to": {"_count": 1}, "I": {"_count": 1}, "telling": {"_count": 1}}, "then": {"_count": 1, "fear": {"_count": 1}}, "refuse": {"_count": 1, "": {"_count": 1}}, "exist": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "Charm": {"_count": 1, "everything": {"_count": 1}}, "fight": {"_count": 2, "Quirrell": {"_count": 1}, "with": {"_count": 1}}, "decide": {"_count": 1, "not": {"_count": 1}}, "Dumbledore": {"_count": 1, "say": {"_count": 1}}, "plan": {"_count": 1, "any": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "neither": {"_count": 1}}, "only": {"_count": 1, "want": {"_count": 1}}, "learn": {"_count": 1, "joinedup": {"_count": 1}}, "laugh": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "Snape": {"_count": 1, "threw": {"_count": 1}}, "she": {"_count": 4, "said": {"_count": 2}, "": {"_count": 1}, "not": {"_count": 1}}, "bring": {"_count": 1, "your": {"_count": 1}}, "let": {"_count": 2, "the": {"_count": 2}}, "watch": {"_count": 1, "": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "practice": {"_count": 1, "I": {"_count": 1}}, "disappear": {"_count": 1, "Wizards": {"_count": 1}}, "wear": {"_count": 2, "out": {"_count": 1}, "that": {"_count": 1}}, "recoil": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "him": {"_count": 1}}, "buy": {"_count": 1, "the": {"_count": 1}}, "hate": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "girl": {"_count": 1}}, "necessarily": {"_count": 1, "get": {"_count": 1}}, "hesitate": {"_count": 1, "to": {"_count": 1}}, "hang": {"_count": 1, "itself": {"_count": 1}}, "split": {"_count": 1, "up": {"_count": 1}}, "fancy": {"_count": 1, "hey": {"_count": 1}}, "fully": {"_count": 1, "understand": {"_count": 1}}, "mumbled": {"_count": 1, "Harry": {"_count": 1}}, "breathed": {"_count": 1, "Malfoy": {"_count": 1}}, "whispered": {"_count": 1, "McGonagall": {"_count": 1}}, "misunderstand": {"_count": 1, "said": {"_count": 1}}, "Didnt": {"_count": 1, "realize": {"_count": 1}}, "destroy": {"_count": 1, "them": {"_count": 1}}, "disobey": {"_count": 1, "orders": {"_count": 1}}, "Voldemort": {"_count": 1, "declare": {"_count": 1}}, "wanna": {"_count": 1, "do": {"_count": 1}}, "present": {"_count": 1, "themselves": {"_count": 1}}, "ttake": {"_count": 1, "it": {"_count": 1}}, "guess": {"_count": 1, "you": {"_count": 1}}, "pain": {"_count": 1, "cease": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "break": {"_count": 1, "into": {"_count": 1}}, "beg": {"_count": 1, "": {"_count": 1}}, "defend": {"_count": 2, "myself": {"_count": 2}}}, "hold": {"_count": 158, "with": {"_count": 1, "such": {"_count": 1}}, "of": {"_count": 50, "yeh": {"_count": 1}, "the": {"_count": 8}, "Quirrell": {"_count": 1}, "Harrys": {"_count": 2}, "him": {"_count": 5}, "Fawkess": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 3}, "his": {"_count": 4}, "a": {"_count": 4}, "this": {"_count": 2}, "Dudleys": {"_count": 1}, "them": {"_count": 2}, "something": {"_count": 1}, "George": {"_count": 1}, "Professor": {"_count": 1}, "Sirius": {"_count": 1}, "Ginnys": {"_count": 1}, "her": {"_count": 3}, "me": {"_count": 2}, "Harry": {"_count": 1}, "one": {"_count": 1}, "McLaggen": {"_count": 1}, "Hermione": {"_count": 1}, "of": {"_count": 1}}, "on": {"_count": 23, "the": {"_count": 3}, "": {"_count": 3}, "And": {"_count": 1}, "Dobbys": {"_count": 1}, "to": {"_count": 6}, "everything": {"_count": 1}, "and": {"_count": 1}, "Peter": {"_count": 1}, "his": {"_count": 2}, "tight": {"_count": 2}, "Lupin": {"_count": 1}, "Ron": {"_count": 1}}, "it": {"_count": 8, "tight": {"_count": 1}, "Harry": {"_count": 1}, "better": {"_count": 1}, "against": {"_count": 2}, "steady": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "a": {"_count": 5, "quill": {"_count": 1}, "wand": {"_count": 1}, "full": {"_count": 1}, "little": {"_count": 1}, "funeral": {"_count": 1}}, "only": {"_count": 1, "nettle": {"_count": 1}}, "Snape": {"_count": 1, "off": {"_count": 1}}, "him": {"_count": 13, "my": {"_count": 1}, "still": {"_count": 1}, "down": {"_count": 1}, "back": {"_count": 1}, "off~": {"_count": 1}, "Scabbers": {"_count": 1}, "steady": {"_count": 1}, "off": {"_count": 3}, "his": {"_count": 1}, "up": {"_count": 1}, "frozen": {"_count": 1}}, "his": {"_count": 5, "glasses": {"_count": 1}, "broom": {"_count": 1}, "hands": {"_count": 1}, "head": {"_count": 1}, "opponents": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 4}}, "her": {"_count": 5, "up": {"_count": 1}, "back": {"_count": 2}, "hand": {"_count": 1}, "": {"_count": 1}}, "Ginnys": {"_count": 1, "other": {"_count": 1}}, "Ron": {"_count": 1, "back": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "these": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 2, "Firebolt": {"_count": 1}, "bowtruckle": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "Malfoy": {"_count": 1, "off": {"_count": 1}}, "your": {"_count": 3, "tongue": {"_count": 2}, "silence": {"_count": 1}}, "Buckbeak": {"_count": 1, "back": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 3, "up": {"_count": 1}, "": {"_count": 2}}, "himself": {"_count": 1, "steady": {"_count": 1}}, "Cornelius": {"_count": 1, "": {"_count": 1}}, "Trevor": {"_count": 1, "for": {"_count": 1}}, "them": {"_count": 1, "steady": {"_count": 1}}, "out": {"_count": 1, "her": {"_count": 1}}, "because": {"_count": 1, "Angelina": {"_count": 1}}, "our": {"_count": 1, "gift": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "Voldemort": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 2}}, "then": {"_count": 1, "dont": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "lets": {"_count": 1, "grab": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "tightly": {"_count": 1}}, "some": {"_count": 1, "part": {"_count": 1}}, "and": {"_count": 1, "make": {"_count": 1}}, "around": {"_count": 1, "Harrys": {"_count": 1}}, "over": {"_count": 1, "me": {"_count": 1}}, "for": {"_count": 1, "very": {"_count": 1}}}, "with": {"_count": 6342, "such": {"_count": 21, "nonsense": {"_count": 1}, "a": {"_count": 5}, "force": {"_count": 6}, "creatures": {"_count": 1}, "violence": {"_count": 1}, "people": {"_count": 1}, "obvious": {"_count": 1}, "concentration": {"_count": 1}, "loathing": {"_count": 1}, "intensity": {"_count": 1}, "enthusiasm": {"_count": 1}, "disastrous": {"_count": 1}}, "hardly": {"_count": 1, "any": {"_count": 1}}, "a": {"_count": 1007, "child": {"_count": 1}, "little": {"_count": 12}, "roar": {"_count": 3}, "swish": {"_count": 1}, "start": {"_count": 8}, "lot": {"_count": 3}, "face": {"_count": 3}, "mustache": {"_count": 2}, "strange": {"_count": 2}, "television": {"_count": 1}, "rather": {"_count": 5}, "deafening": {"_count": 4}, "bewildered": {"_count": 1}, "person": {"_count": 2}, "sound": {"_count": 4}, "hag": {"_count": 1}, "sign": {"_count": 2}, "pale": {"_count": 3}, "slight": {"_count": 10}, "long": {"_count": 12}, "nasty": {"_count": 6}, "trunk": {"_count": 1}, "bit": {"_count": 9}, "vanishing": {"_count": 1}, "dumpy": {"_count": 1}, "patchwork": {"_count": 1}, "mixture": {"_count": 9}, "mahogany": {"_count": 1}, "few": {"_count": 6}, "buffalo": {"_count": 1}, "sickening": {"_count": 3}, "thud": {"_count": 8}, "broomstick": {"_count": 4}, "large": {"_count": 25}, "blast": {"_count": 3}, "stack": {"_count": 1}, "Sorcerers": {"_count": 1}, "pile": {"_count": 3}, "stranger": {"_count": 1}, "bandaged": {"_count": 1}, "new": {"_count": 5}, "bloody": {"_count": 2}, "nice": {"_count": 2}, "bad": {"_count": 1}, "horrible": {"_count": 6}, "crash": {"_count": 13}, "letter": {"_count": 3}, "particularly": {"_count": 2}, "corner": {"_count": 2}, "heartstopping": {"_count": 1}, "card": {"_count": 1}, "crunching": {"_count": 2}, "grudge": {"_count": 1}, "wand": {"_count": 11}, "slightly": {"_count": 7}, "grin": {"_count": 2}, "snap": {"_count": 11}, "loud": {"_count": 18}, "Banshee": {"_count": 2}, "quick": {"_count": 2}, "quelling": {"_count": 1}, "deep": {"_count": 2}, "mouthwatering": {"_count": 1}, "display": {"_count": 1}, "series": {"_count": 2}, "fat": {"_count": 1}, "heavy": {"_count": 7}, "bang": {"_count": 9}, "pop": {"_count": 3}, "clever": {"_count": 1}, "crazed": {"_count": 1}, "broken": {"_count": 1}, "shaking": {"_count": 1}, "ruff": {"_count": 1}, "blunt": {"_count": 1}, "thousand": {"_count": 1}, "splash": {"_count": 2}, "small": {"_count": 16}, "head": {"_count": 1}, "hint": {"_count": 4}, "thrill": {"_count": 3}, "breakfast": {"_count": 1}, "short": {"_count": 2}, "saucepan": {"_count": 2}, "Tickling": {"_count": 1}, "vague": {"_count": 2}, "twisted": {"_count": 3}, "panic": {"_count": 1}, "snake": {"_count": 2}, "brass": {"_count": 5}, "fresh": {"_count": 3}, "simple": {"_count": 3}, "doomladen": {"_count": 1}, "hearty": {"_count": 2}, "furry": {"_count": 2}, "wave": {"_count": 13}, "dance": {"_count": 1}, "sigh": {"_count": 2}, "squeak": {"_count": 1}, "sudden": {"_count": 5}, "nervous": {"_count": 2}, "full": {"_count": 1}, "yelp": {"_count": 2}, "scared": {"_count": 1}, "mirror": {"_count": 2}, "real": {"_count": 1}, "brilliant": {"_count": 1}, "shadow": {"_count": 1}, "wet": {"_count": 2}, "jolt": {"_count": 8}, "clatter": {"_count": 9}, "huge": {"_count": 4}, "soft": {"_count": 9}, "sideways": {"_count": 1}, "smile": {"_count": 5}, "final": {"_count": 4}, "dead": {"_count": 2}, "computerized": {"_count": 1}, "wastrel": {"_count": 1}, "trunkful": {"_count": 1}, "single": {"_count": 3}, "last": {"_count": 2}, "diamondhard": {"_count": 1}, "jewelencrusted": {"_count": 1}, "wizard": {"_count": 2}, "furrowed": {"_count": 1}, "puddingbowl": {"_count": 1}, "feeling": {"_count": 8}, "shock": {"_count": 3}, "very": {"_count": 16}, "contemptuous": {"_count": 3}, "dim": {"_count": 1}, "faint": {"_count": 4}, "length": {"_count": 1}, "pleading": {"_count": 1}, "boggart": {"_count": 2}, "stuffed": {"_count": 2}, "motheaten": {"_count": 1}, "kind": {"_count": 12}, "flourish": {"_count": 5}, "quill": {"_count": 1}, "reenactment": {"_count": 1}, "squelch": {"_count": 1}, "getwell": {"_count": 1}, "cloth": {"_count": 1}, "mysterious": {"_count": 2}, "grimace": {"_count": 3}, "name": {"_count": 3}, "pretty": {"_count": 2}, "flurry": {"_count": 1}, "portly": {"_count": 1}, "great": {"_count": 20}, "steaming": {"_count": 1}, "string": {"_count": 1}, "couple": {"_count": 6}, "flagon": {"_count": 1}, "look": {"_count": 13}, "parachute": {"_count": 1}, "wealth": {"_count": 1}, "leap": {"_count": 2}, "false": {"_count": 1}, "shrug": {"_count": 1}, "Cheering": {"_count": 1}, "thin": {"_count": 1}, "sharp": {"_count": 3}, "flick": {"_count": 5}, "grunt": {"_count": 2}, "whimper": {"_count": 1}, "furious": {"_count": 1}, "werewolf": {"_count": 3}, "terribly": {"_count": 1}, "knife": {"_count": 1}, "cup": {"_count": 1}, "sort": {"_count": 3}, "suitable": {"_count": 1}, "tremulous": {"_count": 1}, "sack": {"_count": 1}, "fullygrown": {"_count": 1}, "curly": {"_count": 1}, "second": {"_count": 2}, "further": {"_count": 1}, "thick": {"_count": 4}, "ruddyfaced": {"_count": 1}, "scrubby": {"_count": 2}, "handkerchief": {"_count": 1}, "sandyhaired": {"_count": 1}, "houseelf": {"_count": 1}, "pointed": {"_count": 3}, "dull": {"_count": 4}, "skill": {"_count": 1}, "disgusted": {"_count": 1}, "serpent": {"_count": 2}, "hollow": {"_count": 2}, "twinkling": {"_count": 1}, "hole": {"_count": 2}, "laugh": {"_count": 3}, "combination": {"_count": 1}, "chisel": {"_count": 1}, "cork": {"_count": 2}, "smack": {"_count": 1}, "plan": {"_count": 1}, "sweep": {"_count": 2}, "pin": {"_count": 1}, "gold": {"_count": 1}, "bronze": {"_count": 1}, "black": {"_count": 2}, "silver": {"_count": 2}, "shudder": {"_count": 2}, "jovial": {"_count": 1}, "silence": {"_count": 1}, "rapt": {"_count": 1}, "walrus": {"_count": 1}, "touch": {"_count": 3}, "worried": {"_count": 1}, "courteous": {"_count": 2}, "variety": {"_count": 3}, "whispered": {"_count": 1}, "Sleeping": {"_count": 1}, "load": {"_count": 1}, "groan": {"_count": 2}, "dragon": {"_count": 1}, "fatherly": {"_count": 1}, "dab": {"_count": 1}, "matching": {"_count": 2}, "teapot": {"_count": 1}, "pained": {"_count": 1}, "sense": {"_count": 6}, "whole": {"_count": 2}, "pair": {"_count": 3}, "pattern": {"_count": 1}, "picture": {"_count": 4}, "high": {"_count": 1}, "succession": {"_count": 1}, "Daily": {"_count": 1}, "bunch": {"_count": 2}, "pack": {"_count": 1}, "tenfoot": {"_count": 1}, "plate": {"_count": 1}, "differently": {"_count": 1}, "spell": {"_count": 1}, "table": {"_count": 1}, "periscope": {"_count": 1}, "horned": {"_count": 1}, "trace": {"_count": 2}, "group": {"_count": 2}, "napkin": {"_count": 2}, "box": {"_count": 1}, "fighting": {"_count": 1}, "mouse": {"_count": 1}, "sardonic": {"_count": 1}, "remorse": {"_count": 1}, "Pensieve": {"_count": 1}, "wellplaced": {"_count": 1}, "tangle": {"_count": 1}, "hand": {"_count": 1}, "protection": {"_count": 1}, "decent": {"_count": 2}, "mop": {"_count": 1}, "bite": {"_count": 1}, "paw": {"_count": 1}, "different": {"_count": 2}, "precise": {"_count": 1}, "stolen": {"_count": 1}, "rushing": {"_count": 1}, "lethargy": {"_count": 1}, "stupendous": {"_count": 2}, "frightened": {"_count": 3}, "satisfied": {"_count": 2}, "wry": {"_count": 2}, "nozzle": {"_count": 1}, "surprisingly": {"_count": 1}, "wink": {"_count": 1}, "cry": {"_count": 2}, "watery": {"_count": 2}, "highly": {"_count": 1}, "ponytail": {"_count": 2}, "patch": {"_count": 1}, "broad": {"_count": 1}, "simper": {"_count": 1}, "suggestion": {"_count": 1}, "specific": {"_count": 1}, "defiant": {"_count": 2}, "Permanent": {"_count": 1}, "moan": {"_count": 1}, "guard": {"_count": 2}, "wide": {"_count": 1}, "finger": {"_count": 1}, "noise": {"_count": 2}, "double": {"_count": 1}, "sample": {"_count": 1}, "grimly": {"_count": 1}, "snarl": {"_count": 1}, "tap": {"_count": 2}, "creditable": {"_count": 1}, "jerk": {"_count": 3}, "moments": {"_count": 1}, "surge": {"_count": 1}, "smirk": {"_count": 1}, "good": {"_count": 2}, "certain": {"_count": 2}, "grim": {"_count": 2}, "frown": {"_count": 1}, "rag": {"_count": 1}, "sweet": {"_count": 1}, "Summoning": {"_count": 1}, "jinx": {"_count": 1}, "pound": {"_count": 1}, "vampire": {"_count": 1}, "most": {"_count": 8}, "male": {"_count": 1}, "glance": {"_count": 4}, "Merry": {"_count": 1}, "pang": {"_count": 3}, "mulish": {"_count": 1}, "copy": {"_count": 1}, "hearing": {"_count": 1}, "significant": {"_count": 2}, "terrible": {"_count": 1}, "gleaming": {"_count": 1}, "walnut": {"_count": 1}, "snort": {"_count": 3}, "pawn": {"_count": 1}, "wary": {"_count": 1}, "fluffy": {"_count": 1}, "feeble": {"_count": 1}, "shiny": {"_count": 1}, "mildly": {"_count": 1}, "tuneful": {"_count": 1}, "hundred": {"_count": 1}, "cocktail": {"_count": 1}, "weedylooking": {"_count": 1}, "singularly": {"_count": 1}, "dismissive": {"_count": 1}, "pumpkin": {"_count": 1}, "sinister": {"_count": 1}, "pincerlike": {"_count": 1}, "swooping": {"_count": 1}, "horsewhip": {"_count": 1}, "beady": {"_count": 1}, "determined": {"_count": 1}, "chance": {"_count": 1}, "concerned": {"_count": 1}, "violent": {"_count": 1}, "rain": {"_count": 1}, "horses": {"_count": 1}, "hard": {"_count": 2}, "wart": {"_count": 1}, "tribe": {"_count": 1}, "firm": {"_count": 1}, "potion": {"_count": 1}, "hungry": {"_count": 1}, "menacing": {"_count": 1}, "sweeping": {"_count": 1}, "tattered": {"_count": 1}, "feverish": {"_count": 1}, "peachlike": {"_count": 1}, "Death": {"_count": 1}, "howl": {"_count": 1}, "mad": {"_count": 1}, "resounding": {"_count": 2}, "glass": {"_count": 1}, "walking": {"_count": 1}, "plea": {"_count": 1}, "kindred": {"_count": 1}, "luggage": {"_count": 1}, "gnarled": {"_count": 1}, "fine": {"_count": 1}, "whooshing": {"_count": 1}, "brave": {"_count": 2}, "lionlike": {"_count": 1}, "casual": {"_count": 2}, "snout": {"_count": 1}, "poor": {"_count": 1}, "squashed": {"_count": 1}, "stern": {"_count": 1}, "tinkling": {"_count": 1}, "gigantic": {"_count": 1}, "boy": {"_count": 1}, "winged": {"_count": 1}, "rush": {"_count": 2}, "nauseated": {"_count": 1}, "nose": {"_count": 1}, "talent": {"_count": 1}, "limegreen": {"_count": 1}, "loving": {"_count": 1}, "radiant": {"_count": 1}, "dirty": {"_count": 1}, "hot": {"_count": 1}, "troubled": {"_count": 1}, "basic": {"_count": 1}, "ferociously": {"_count": 1}, "brutality": {"_count": 1}, "teddy": {"_count": 1}, "surprised": {"_count": 1}, "thickly": {"_count": 1}, "regal": {"_count": 1}, "similar": {"_count": 1}, "prod": {"_count": 1}, "thatch": {"_count": 1}, "Mrs": {"_count": 1}, "rusty": {"_count": 1}, "ringing": {"_count": 1}, "sneer": {"_count": 1}, "trowel": {"_count": 1}, "thorny": {"_count": 1}, "Beaters": {"_count": 1}, "rousing": {"_count": 1}, "clawlike": {"_count": 1}, "roguish": {"_count": 1}, "fond": {"_count": 1}, "reminiscent": {"_count": 1}, "word": {"_count": 1}, "label": {"_count": 1}, "bitter": {"_count": 1}, "pleasant": {"_count": 1}, "nod": {"_count": 1}, "strangely": {"_count": 1}, "desperate": {"_count": 1}, "straight": {"_count": 1}, "burning": {"_count": 2}, "nobility": {"_count": 1}, "Variety": {"_count": 1}, "sulky": {"_count": 2}, "bottle": {"_count": 1}, "muffled": {"_count": 2}, "hiccup": {"_count": 2}, "trembling": {"_count": 1}, "powerful": {"_count": 1}, "maimed": {"_count": 1}, "perfect": {"_count": 1}, "crashing": {"_count": 1}, "clinking": {"_count": 1}, "gentle": {"_count": 1}, "curse": {"_count": 1}, "charm": {"_count": 1}, "tartan": {"_count": 1}, "frozen": {"_count": 1}, "silken": {"_count": 1}, "worse": {"_count": 1}, "magnificent": {"_count": 1}, "fondness": {"_count": 1}, "tantalizing": {"_count": 1}, "spider": {"_count": 1}, "companion": {"_count": 1}, "bizarre": {"_count": 1}, "basilisk": {"_count": 1}, "Horcrux": {"_count": 1}, "wallshaking": {"_count": 1}, "number": {"_count": 1}, "question": {"_count": 1}, "goldenjacketed": {"_count": 1}, "glorious": {"_count": 1}, "creak": {"_count": 2}, "carved": {"_count": 1}, "Black": {"_count": 1}, "finality": {"_count": 1}, "batch": {"_count": 1}, "bow": {"_count": 2}, "dreadful": {"_count": 1}, "clang": {"_count": 1}, "golden": {"_count": 1}, "simpering": {"_count": 1}, "bright": {"_count": 2}, "flouncy": {"_count": 1}, "Revulsion": {"_count": 1}, "skyward": {"_count": 1}, "crow": {"_count": 1}, "vertical": {"_count": 1}, "fake": {"_count": 1}, "key": {"_count": 1}, "reassuring": {"_count": 1}, "shriek": {"_count": 1}, "common": {"_count": 1}, "blow": {"_count": 1}, "spare": {"_count": 1}, "tiny": {"_count": 1}, "desire": {"_count": 1}, "ghostly": {"_count": 1}, "Disillusionment": {"_count": 1}, "gasp": {"_count": 1}, "yell": {"_count": 2}, "scream": {"_count": 2}, "crown": {"_count": 1}, "leather": {"_count": 1}, "lurch": {"_count": 1}, "threadbare": {"_count": 1}, "shake": {"_count": 1}, "rising": {"_count": 1}, "quizzical": {"_count": 1}, "crunch": {"_count": 1}, "tuft": {"_count": 1}, "Bludger": {"_count": 1}, "Stunning": {"_count": 2}, "movement": {"_count": 1}, "warning": {"_count": 1}, "soul": {"_count": 1}, "shared": {"_count": 1}, "fragile": {"_count": 1}, "glittering": {"_count": 1}, "swipe": {"_count": 1}, "mundane": {"_count": 1}, "reverence": {"_count": 1}}, "his": {"_count": 410, "back": {"_count": 12}, "father": {"_count": 2}, "mother": {"_count": 2}, "nose": {"_count": 2}, "knuckles": {"_count": 4}, "Smelting": {"_count": 3}, "hands": {"_count": 17}, "pale": {"_count": 1}, "new": {"_count": 3}, "partner": {"_count": 2}, "brothers": {"_count": 1}, "wand": {"_count": 58}, "voice": {"_count": 1}, "hat": {"_count": 2}, "leg": {"_count": 1}, "head": {"_count": 12}, "family": {"_count": 4}, "wife": {"_count": 3}, "beard": {"_count": 1}, "arms": {"_count": 9}, "knees": {"_count": 4}, "fist": {"_count": 7}, "lightning": {"_count": 1}, "great": {"_count": 3}, "glasses": {"_count": 2}, "scar": {"_count": 5}, "hand": {"_count": 8}, "sleeve": {"_count": 2}, "elbow": {"_count": 1}, "foul": {"_count": 1}, "mouth": {"_count": 11}, "insides": {"_count": 2}, "club": {"_count": 2}, "legs": {"_count": 2}, "tongue": {"_count": 4}, "penetrating": {"_count": 1}, "fanged": {"_count": 1}, "bowler": {"_count": 3}, "pruning": {"_count": 1}, "eyes": {"_count": 13}, "deep": {"_count": 1}, "courage": {"_count": 1}, "aunt": {"_count": 2}, "pet": {"_count": 1}, "large": {"_count": 1}, "homework": {"_count": 2}, "waxy": {"_count": 1}, "usual": {"_count": 1}, "chest": {"_count": 2}, "handful": {"_count": 1}, "remaining": {"_count": 1}, "front": {"_count": 1}, "foot": {"_count": 6}, "arm": {"_count": 1}, "finger": {"_count": 3}, "minute": {"_count": 1}, "dad": {"_count": 1}, "toes": {"_count": 2}, "hangings": {"_count": 1}, "friends": {"_count": 1}, "success": {"_count": 1}, "servants": {"_count": 1}, "fathomless": {"_count": 1}, "maimed": {"_count": 1}, "toe": {"_count": 2}, "heels": {"_count": 2}, "hotwater": {"_count": 1}, "face": {"_count": 3}, "long": {"_count": 3}, "endofyear": {"_count": 1}, "school": {"_count": 1}, "Omnioculars": {"_count": 1}, "small": {"_count": 1}, "Head": {"_count": 1}, "somewhat": {"_count": 1}, "robes": {"_count": 3}, "notes": {"_count": 1}, "terrifiedlooking": {"_count": 1}, "ruff": {"_count": 1}, "sleek": {"_count": 1}, "quill": {"_count": 2}, "handkerchief": {"_count": 2}, "familiar": {"_count": 1}, "straight": {"_count": 1}, "horn": {"_count": 1}, "parents": {"_count": 1}, "story": {"_count": 1}, "headless": {"_count": 1}, "hair": {"_count": 2}, "fork": {"_count": 2}, "fellow": {"_count": 1}, "gloves": {"_count": 1}, "right": {"_count": 2}, "first": {"_count": 1}, "bottlebrush": {"_count": 1}, "flippers": {"_count": 1}, "hostage": {"_count": 2}, "press": {"_count": 1}, "four": {"_count": 1}, "teeth": {"_count": 3}, "grandmother": {"_count": 1}, "darkhaired": {"_count": 1}, "own": {"_count": 9}, "blank": {"_count": 1}, "astonished": {"_count": 1}, "sprinklers": {"_count": 1}, "left": {"_count": 6}, "senses": {"_count": 2}, "cuff": {"_count": 1}, "Tshirt": {"_count": 1}, "boots": {"_count": 1}, "encouragement": {"_count": 1}, "papers": {"_count": 1}, "feelings": {"_count": 1}, "normal": {"_count": 1}, "Trevor": {"_count": 1}, "forehead": {"_count": 1}, "fists": {"_count": 2}, "free": {"_count": 5}, "Cleans": {"_count": 1}, "work": {"_count": 1}, "potion": {"_count": 1}, "Potions": {"_count": 1}, "palms": {"_count": 1}, "messenger": {"_count": 1}, "newly": {"_count": 1}, "bat": {"_count": 1}, "lips": {"_count": 2}, "fathers": {"_count": 1}, "immense": {"_count": 1}, "fingers": {"_count": 2}, "Mistress": {"_count": 1}, "scalp": {"_count": 1}, "enormous": {"_count": 1}, "speech": {"_count": 1}, "skin": {"_count": 1}, "shoulder": {"_count": 1}, "laugh": {"_count": 1}, "mood": {"_count": 1}, "thumb": {"_count": 1}, "most": {"_count": 1}, "injured": {"_count": 1}, "flaming": {"_count": 1}, "bright": {"_count": 1}, "choices": {"_count": 1}, "apron": {"_count": 1}, "brutal": {"_count": 1}, "Secrecy": {"_count": 1}, "broomstick": {"_count": 1}, "mind": {"_count": 1}, "parentage": {"_count": 1}, "Keeper": {"_count": 1}, "thick": {"_count": 1}, "black": {"_count": 1}, "nights": {"_count": 1}, "blackened": {"_count": 2}, "dislike": {"_count": 1}, "wandfree": {"_count": 2}, "earring": {"_count": 1}, "rucksack": {"_count": 1}, "wild": {"_count": 1}, "droopy": {"_count": 1}, "tableclothsized": {"_count": 1}, "possessions": {"_count": 1}, "bare": {"_count": 1}, "heart": {"_count": 2}, "Squib": {"_count": 1}, "snoutlike": {"_count": 1}, "lawless": {"_count": 1}, "wandlight": {"_count": 1}, "magnificent": {"_count": 1}, "cheeks": {"_count": 1}, "friend": {"_count": 1}, "mum": {"_count": 1}, "numb": {"_count": 1}, "phoenix": {"_count": 1}, "talk": {"_count": 1}, "thoughts": {"_count": 1}, "spindly": {"_count": 1}, "correspondence": {"_count": 1}, "big": {"_count": 1}, "poorly": {"_count": 1}, "straggling": {"_count": 1}, "companions": {"_count": 1}, "plans": {"_count": 1}}, "her": {"_count": 221, "daughter": {"_count": 1}, "pockets": {"_count": 1}, "head": {"_count": 9}, "": {"_count": 31}, "nose": {"_count": 2}, "Harry": {"_count": 2}, "trying": {"_count": 1}, "stone": {"_count": 1}, "face": {"_count": 4}, "hair": {"_count": 4}, "wailing": {"_count": 1}, "evening": {"_count": 1}, "hands": {"_count": 8}, "beak": {"_count": 1}, "walking": {"_count": 2}, "napkin": {"_count": 1}, "little": {"_count": 1}, "shovellike": {"_count": 1}, "beady": {"_count": 1}, "hand": {"_count": 8}, "eyes": {"_count": 3}, "wand": {"_count": 20}, "broomstick": {"_count": 1}, "back": {"_count": 5}, "mouth": {"_count": 5}, "left": {"_count": 2}, "enormous": {"_count": 2}, "arms": {"_count": 10}, "outstretched": {"_count": 1}, "usual": {"_count": 1}, "heavyjawed": {"_count": 1}, "crocodileskin": {"_count": 1}, "the": {"_count": 2}, "friend": {"_count": 3}, "long": {"_count": 2}, "no": {"_count": 1}, "awake": {"_count": 1}, "toward": {"_count": 1}, "I": {"_count": 1}, "gang": {"_count": 1}, "an": {"_count": 1}, "strangely": {"_count": 1}, "feet": {"_count": 2}, "forehead": {"_count": 1}, "scarf": {"_count": 1}, "brats": {"_count": 1}, "briefcase": {"_count": 1}, "cuffs": {"_count": 1}, "speech": {"_count": 2}, "friends": {"_count": 1}, "about": {"_count": 1}, "glasses": {"_count": 2}, "finger": {"_count": 1}, "thick": {"_count": 1}, "Charm": {"_count": 1}, "and": {"_count": 5}, "sleeve": {"_count": 2}, "wide": {"_count": 1}, "wing": {"_count": 1}, "own": {"_count": 3}, "eyebrows": {"_count": 1}, "fist": {"_count": 1}, "but": {"_count": 3}, "parents": {"_count": 1}, "for": {"_count": 2}, "dislike": {"_count": 1}, "concentration": {"_count": 1}, "that": {"_count": 1}, "once": {"_count": 1}, "in": {"_count": 2}, "didnt": {"_count": 1}, "shorter": {"_count": 1}, "either": {"_count": 1}, "other": {"_count": 1}, "prey": {"_count": 1}, "Metamorphosing": {"_count": 1}, "husband": {"_count": 2}, "thin": {"_count": 1}, "instead": {"_count": 1}, "undoubtedly": {"_count": 1}, "foot": {"_count": 1}, "quill": {"_count": 1}, "stew": {"_count": 1}, "having": {"_count": 1}, "leg": {"_count": 1}, "anymore": {"_count": 1}, "however": {"_count": 1}, "vastly": {"_count": 1}, "he": {"_count": 1}, "dark": {"_count": 1}, "since": {"_count": 1}, "shoulder": {"_count": 1}, "had": {"_count": 1}, "alone": {"_count": 1}, "food": {"_count": 2}, "now": {"_count": 1}, "eagle": {"_count": 1}, "waistlength": {"_count": 1}, "paws": {"_count": 1}, "sister": {"_count": 1}}, "the": {"_count": 760, "weather": {"_count": 1}, "Potters": {"_count": 1}, "Dursleys": {"_count": 18}, "animals": {"_count": 1}, "end": {"_count": 9}, "piece": {"_count": 1}, "shriveled": {"_count": 1}, "back": {"_count": 4}, "Dark": {"_count": 14}, "pipe": {"_count": 1}, "point": {"_count": 4}, "Latest": {"_count": 1}, "snowy": {"_count": 2}, "words": {"_count": 6}, "letter": {"_count": 2}, "train": {"_count": 2}, "Muggles": {"_count": 4}, "wrong": {"_count": 1}, "last": {"_count": 2}, "rest": {"_count": 30}, "most": {"_count": 4}, "teachers": {"_count": 1}, "hat": {"_count": 1}, "seating": {"_count": 1}, "red": {"_count": 1}, "Slytherins": {"_count": 7}, "other": {"_count": 22}, "topmost": {"_count": 1}, "screams": {"_count": 1}, "Remembrall": {"_count": 1}, "Quaffle": {"_count": 13}, "bat": {"_count": 1}, "Snitch": {"_count": 4}, "club": {"_count": 1}, "same": {"_count": 9}, "Christmas": {"_count": 1}, "prefects": {"_count": 1}, "Weasleys": {"_count": 4}, "Stone": {"_count": 1}, "Invisibility": {"_count": 3}, "others": {"_count": 7}, "racket": {"_count": 1}, "damaged": {"_count": 1}, "soapy": {"_count": 1}, "promise": {"_count": 2}, "sugar": {"_count": 1}, "popular": {"_count": 1}, "strange": {"_count": 1}, "Yeti": {"_count": 2}, "marmalade": {"_count": 1}, "entire": {"_count": 2}, "force": {"_count": 6}, "car": {"_count": 2}, "barrier": {"_count": 1}, "worst": {"_count": 1}, "tip": {"_count": 9}, "Hufflepuffs": {"_count": 2}, "idea": {"_count": 4}, "heavy": {"_count": 1}, "greatest": {"_count": 3}, "usual": {"_count": 5}, "teastrainer": {"_count": 1}, "rogue": {"_count": 1}, "Bludger": {"_count": 1}, "water": {"_count": 2}, "weight": {"_count": 2}, "simplest": {"_count": 1}, "angry": {"_count": 1}, "Cannons": {"_count": 3}, "Whomping": {"_count": 1}, "school": {"_count": 1}, "sleeping": {"_count": 1}, "bodiless": {"_count": 1}, "prospect": {"_count": 1}, "result": {"_count": 6}, "spiders": {"_count": 1}, "castle": {"_count": 1}, "Chamber": {"_count": 1}, "beam": {"_count": 1}, "diary": {"_count": 1}, "very": {"_count": 2}, "clever": {"_count": 1}, "large": {"_count": 1}, "golden": {"_count": 2}, "Broomstick": {"_count": 1}, "suitcase": {"_count": 1}, "bitch": {"_count": 1}, "pup": {"_count": 1}, "Ministry": {"_count": 15}, "unfortunate": {"_count": 1}, "start": {"_count": 1}, "bottle": {"_count": 1}, "straps": {"_count": 1}, "food": {"_count": 1}, "driver": {"_count": 1}, "dementors": {"_count": 2}, "applause": {"_count": 1}, "left": {"_count": 1}, "empty": {"_count": 1}, "first": {"_count": 4}, "boggart": {"_count": 2}, "way": {"_count": 5}, "portrait": {"_count": 2}, "air": {"_count": 7}, "wind": {"_count": 2}, "one": {"_count": 1}, "dusty": {"_count": 1}, "headmaster": {"_count": 5}, "conversation": {"_count": 1}, "Gryffindor": {"_count": 2}, "Firebolt": {"_count": 2}, "sweat": {"_count": 1}, "dementor": {"_count": 1}, "disappearance": {"_count": 1}, "lightest": {"_count": 1}, "Ravenclaw": {"_count": 1}, "glow": {"_count": 1}, "debris": {"_count": 1}, "Quidditch": {"_count": 1}, "coming": {"_count": 2}, "pressure": {"_count": 1}, "team": {"_count": 1}, "effort": {"_count": 9}, "enormous": {"_count": 2}, "Minister": {"_count": 4}, "perfumed": {"_count": 1}, "silvery": {"_count": 2}, "new": {"_count": 1}, "side": {"_count": 3}, "wand": {"_count": 4}, "utmost": {"_count": 3}, "convict": {"_count": 1}, "sound": {"_count": 2}, "neck": {"_count": 1}, "knot": {"_count": 1}, "hospital": {"_count": 2}, "TimeTurner": {"_count": 1}, "tea": {"_count": 1}, "bodies": {"_count": 1}, "news": {"_count": 2}, "cold": {"_count": 1}, "kettle": {"_count": 3}, "smells": {"_count": 1}, "world": {"_count": 2}, "watch": {"_count": 1}, "correct": {"_count": 1}, "sun": {"_count": 1}, "little": {"_count": 1}, "matches": {"_count": 1}, "Committee": {"_count": 1}, "rule": {"_count": 1}, "speed": {"_count": 1}, "guilty": {"_count": 1}, "boys": {"_count": 1}, "elf": {"_count": 3}, "motion": {"_count": 1}, "top": {"_count": 2}, "Sorting": {"_count": 1}, "Gryffindors": {"_count": 2}, "black": {"_count": 3}, "tragic": {"_count": 1}, "fumes": {"_count": 1}, "familiar": {"_count": 1}, "curse": {"_count": 1}, "highest": {"_count": 1}, "Slytherin": {"_count": 1}, "eyes": {"_count": 2}, "box": {"_count": 1}, "hair": {"_count": 1}, "merest": {"_count": 3}, "keenest": {"_count": 1}, "pair": {"_count": 3}, "attractions": {"_count": 1}, "living": {"_count": 1}, "smoldering": {"_count": 1}, "Hogwarts": {"_count": 1}, "dragon": {"_count": 3}, "embarrassing": {"_count": 1}, "skrewts": {"_count": 1}, "obvious": {"_count": 1}, "misbehavior": {"_count": 1}, "boy": {"_count": 2}, "enemy": {"_count": 1}, "Goblet": {"_count": 1}, "lurking": {"_count": 1}, "egg": {"_count": 2}, "Department": {"_count": 1}, "contents": {"_count": 2}, "creatures": {"_count": 1}, "Improper": {"_count": 1}, "head": {"_count": 2}, "dates": {"_count": 1}, "devious": {"_count": 1}, "Triwizard": {"_count": 1}, "chains": {"_count": 1}, "strawcolored": {"_count": 1}, "heavylidded": {"_count": 1}, "third": {"_count": 1}, "Shield": {"_count": 2}, "pincers": {"_count": 1}, "skrewt": {"_count": 1}, "missing": {"_count": 1}, "dagger": {"_count": 2}, "pain": {"_count": 4}, "reflexes": {"_count": 1}, "houseelf": {"_count": 1}, "body": {"_count": 1}, "Diggorys": {"_count": 1}, "winning": {"_count": 1}, "Death": {"_count": 4}, "goblins": {"_count": 2}, "trapped": {"_count": 1}, "closed": {"_count": 1}, "Headmaster": {"_count": 1}, "appearance": {"_count": 3}, "triumphant": {"_count": 1}, "Extendable": {"_count": 1}, "Black": {"_count": 1}, "rapidity": {"_count": 1}, "arrival": {"_count": 1}, "people": {"_count": 1}, "indulgent": {"_count": 1}, "monocle": {"_count": 1}, "papers": {"_count": 1}, "right": {"_count": 1}, "twins": {"_count": 1}, "Daily": {"_count": 1}, "luggage": {"_count": 2}, "guardians": {"_count": 1}, "winged": {"_count": 1}, "Bloody": {"_count": 1}, "ingredients": {"_count": 1}, "whole": {"_count": 1}, "tablecloth": {"_count": 1}, "dangerous": {"_count": 1}, "dog": {"_count": 1}, "passing": {"_count": 3}, "aid": {"_count": 2}, "possible": {"_count": 1}, "complexity": {"_count": 1}, "kind": {"_count": 2}, "Order": {"_count": 4}, "stubs": {"_count": 1}, "filthy": {"_count": 1}, "long": {"_count": 3}, "crowd": {"_count": 4}, "regular": {"_count": 3}, "group": {"_count": 1}, "room": {"_count": 1}, "Impervius": {"_count": 1}, "rain": {"_count": 1}, "hats": {"_count": 1}, "Impediment": {"_count": 2}, "stingin": {"_count": 1}, "eye": {"_count": 1}, "firs": {"_count": 1}, "next": {"_count": 1}, "brass": {"_count": 2}, "griffin": {"_count": 2}, "knowledge": {"_count": 1}, "remains": {"_count": 1}, "horrible": {"_count": 1}, "snake": {"_count": 1}, "desk": {"_count": 3}, "leg": {"_count": 1}, "Prophets": {"_count": 1}, "unlikeliest": {"_count": 1}, "patient": {"_count": 1}, "centaur": {"_count": 1}, "situation": {"_count": 1}, "dirtiest": {"_count": 1}, "memory": {"_count": 1}, "unmistakable": {"_count": 1}, "deep": {"_count": 1}, "sharp": {"_count": 1}, "ends": {"_count": 1}, "door": {"_count": 1}, "heat": {"_count": 2}, "pockmarked": {"_count": 1}, "houseelfs": {"_count": 1}, "desire": {"_count": 1}, "possibility": {"_count": 2}, "power": {"_count": 2}, "enthusiasm": {"_count": 1}, "terrible": {"_count": 1}, "loss": {"_count": 1}, "archway": {"_count": 1}, "security": {"_count": 1}, "information": {"_count": 2}, "delivering": {"_count": 1}, "name": {"_count": 2}, "distinct": {"_count": 1}, "Harpies": {"_count": 1}, "surrounding": {"_count": 1}, "church": {"_count": 1}, "lunch": {"_count": 1}, "prophecy": {"_count": 6}, "sunlight": {"_count": 1}, "customers": {"_count": 1}, "only": {"_count": 1}, "largest": {"_count": 1}, "ghost": {"_count": 1}, "old": {"_count": 2}, "dignity": {"_count": 1}, "gawping": {"_count": 1}, "coursework": {"_count": 1}, "Fanged": {"_count": 1}, "N": {"_count": 1}, "task": {"_count": 1}, "order": {"_count": 1}, "flat": {"_count": 1}, "previous": {"_count": 1}, "odd": {"_count": 1}, "knife": {"_count": 1}, "shelf": {"_count": 1}, "Peverell": {"_count": 1}, "matter": {"_count": 1}, "glossy": {"_count": 1}, "tramps": {"_count": 1}, "vast": {"_count": 1}, "brandnew": {"_count": 1}, "rejected": {"_count": 1}, "story": {"_count": 1}, "Sensor": {"_count": 1}, "smallest": {"_count": 2}, "gin": {"_count": 1}, "Captain": {"_count": 1}, "commentators": {"_count": 1}, "frequent": {"_count": 1}, "faintest": {"_count": 2}, "glee": {"_count": 1}, "potion": {"_count": 2}, "maggot": {"_count": 1}, "bezoar": {"_count": 2}, "Hufflepuff": {"_count": 1}, "D": {"_count": 1}, "society": {"_count": 1}, "drink": {"_count": 1}, "local": {"_count": 1}, "giant": {"_count": 1}, "Secrecy": {"_count": 1}, "acromantulas": {"_count": 1}, "light": {"_count": 1}, "ribbon": {"_count": 1}, "intention": {"_count": 1}, "Horcrux": {"_count": 1}, "sudden": {"_count": 1}, "tang": {"_count": 1}, "dead": {"_count": 2}, "goblet": {"_count": 1}, "job": {"_count": 1}, "lumpy": {"_count": 1}, "ground": {"_count": 1}, "Merchieftainess": {"_count": 1}, "Heads": {"_count": 1}, "place": {"_count": 1}, "happy": {"_count": 1}, "note": {"_count": 1}, "unknown": {"_count": 1}, "fake": {"_count": 1}, "bike": {"_count": 2}, "handlebars": {"_count": 1}, "Aurors": {"_count": 1}, "magical": {"_count": 1}, "toughest": {"_count": 1}, "preparations": {"_count": 2}, "middleaged": {"_count": 1}, "curly": {"_count": 1}, "iced": {"_count": 1}, "twisted": {"_count": 2}, "voice": {"_count": 1}, "muchadmired": {"_count": 1}, "dumbstruck": {"_count": 1}, "snuffbox": {"_count": 1}, "trinkets": {"_count": 1}, "bloodtraitor": {"_count": 1}, "family": {"_count": 1}, "poker": {"_count": 1}, "Deluminator": {"_count": 1}, "shock": {"_count": 1}, "answer": {"_count": 1}, "thief": {"_count": 1}, "letters": {"_count": 1}, "owners": {"_count": 1}, "anthill": {"_count": 1}, "raining": {"_count": 1}, "sensation": {"_count": 1}, "sole": {"_count": 1}, "fact": {"_count": 1}, "gleeful": {"_count": 1}, "blindfold": {"_count": 1}, "distraught": {"_count": 1}, "teenage": {"_count": 1}, "picture": {"_count": 1}, "girls": {"_count": 1}, "dark": {"_count": 1}, "strain": {"_count": 2}, "tent": {"_count": 1}, "Chosen": {"_count": 1}, "Boy": {"_count": 1}, "sword": {"_count": 3}, "doe": {"_count": 1}, "canvas": {"_count": 1}, "blackthorn": {"_count": 2}, "Quest": {"_count": 1}, "Elder": {"_count": 3}, "years": {"_count": 1}, "Deathly": {"_count": 1}, "Hallows": {"_count": 1}, "mark": {"_count": 1}, "reward": {"_count": 1}, "use": {"_count": 1}, "Horcruxes": {"_count": 1}, "destruction": {"_count": 1}, "lightning": {"_count": 1}, "wands": {"_count": 1}, "purebloodloving": {"_count": 1}, "men": {"_count": 1}, "cottage": {"_count": 1}, "bloodied": {"_count": 1}, "din": {"_count": 1}, "hot": {"_count": 1}, "Gaunts": {"_count": 1}, "stone": {"_count": 1}, "wall": {"_count": 1}, "screeches": {"_count": 1}, "savagery": {"_count": 1}, "expression": {"_count": 1}, "pouch": {"_count": 1}, "deepest": {"_count": 1}, "training": {"_count": 1}, "facts": {"_count": 1}, "Killing": {"_count": 1}, "shopkeepers": {"_count": 1}, "man": {"_count": 1}, "unerring": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 20}, "?": {"_count": 7}, "!": {"_count": 2}}, "something": {"_count": 15, "as": {"_count": 1}, "": {"_count": 2}, "like": {"_count": 1}, "remarkably": {"_count": 1}, "on": {"_count": 1}, "close": {"_count": 2}, "less": {"_count": 1}, "round": {"_count": 1}, "of": {"_count": 1}, "in": {"_count": 1}, "sharp": {"_count": 1}, "solid": {"_count": 1}, "that": {"_count": 1}}, "my": {"_count": 24, "life": {"_count": 1}, "other": {"_count": 1}, "bare": {"_count": 1}, "Arithmancy": {"_count": 1}, "newspaper": {"_count": 1}, "becoming": {"_count": 1}, "godfather": {"_count": 1}, "news": {"_count": 1}, "scar": {"_count": 1}, "braces": {"_count": 1}, "eyes": {"_count": 1}, "own": {"_count": 1}, "young": {"_count": 1}, "assistant": {"_count": 1}, "sisters": {"_count": 1}, "uncle": {"_count": 1}, "saving": {"_count": 1}, "dear": {"_count": 1}, "wife": {"_count": 1}, "arm": {"_count": 1}, "mum": {"_count": 1}, "House": {"_count": 1}, "wand": {"_count": 1}, "guilt": {"_count": 1}}, "Muggles": {"_count": 10, "Yes": {"_count": 1}, "of": {"_count": 1}, "said": {"_count": 1}, "our": {"_count": 1}, "asking": {"_count": 1}, "ended": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}}, "living": {"_count": 1, "in": {"_count": 1}}, "Mrs": {"_count": 9, "Figg": {"_count": 2}, "Skowers": {"_count": 1}, "Weasley": {"_count": 4}, "Cattermoles": {"_count": 1}, "Cattermole": {"_count": 1}}, "Piers": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 203, "but": {"_count": 4}, "had": {"_count": 1}, "": {"_count": 75}, "narrowly": {"_count": 1}, "only": {"_count": 1}, "in": {"_count": 5}, "never": {"_count": 1}, "aiming": {"_count": 1}, "gone": {"_count": 1}, "all": {"_count": 2}, "at": {"_count": 4}, "because": {"_count": 2}, "said": {"_count": 7}, "up": {"_count": 1}, "not": {"_count": 1}, "and": {"_count": 12}, "next": {"_count": 1}, "a": {"_count": 2}, "she": {"_count": 2}, "loads": {"_count": 1}, "if": {"_count": 2}, "Expecto": {"_count": 1}, "except": {"_count": 1}, "his": {"_count": 1}, "gesticulating": {"_count": 1}, "when": {"_count": 2}, "squeaked": {"_count": 1}, "wherever": {"_count": 1}, "around": {"_count": 1}, "her": {"_count": 1}, "talking": {"_count": 1}, "while": {"_count": 1}, "too": {"_count": 1}, "This": {"_count": 1}, "silently": {"_count": 1}, "across": {"_count": 1}, "couldnt": {"_count": 1}, "though": {"_count": 2}, "ever": {"_count": 2}, "before": {"_count": 2}, "shortly": {"_count": 2}, "he": {"_count": 6}, "powerless": {"_count": 1}, "to": {"_count": 6}, "anymore": {"_count": 1}, "for": {"_count": 2}, "so": {"_count": 1}, "this": {"_count": 2}, "during": {"_count": 1}, "weve": {"_count": 1}, "are": {"_count": 1}, "an": {"_count": 1}, "earlier": {"_count": 1}, "now": {"_count": 2}, "as": {"_count": 6}, "we": {"_count": 1}, "on": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "But": {"_count": 1}, "hard": {"_count": 1}, "then": {"_count": 1}, "Slughorn": {"_count": 1}, "tapping": {"_count": 1}, "about": {"_count": 1}, "probably": {"_count": 1}, "everywhere": {"_count": 1}, "Then": {"_count": 1}, "panting": {"_count": 1}, "gladly": {"_count": 1}, "He": {"_count": 1}, "wont": {"_count": 1}, "its": {"_count": 1}, "information": {"_count": 1}}, "orange": {"_count": 2, "puff": {"_count": 1}, "light": {"_count": 1}}, "Dudley": {"_count": 5, "and": {"_count": 2}, "": {"_count": 1}, "this": {"_count": 1}, "was": {"_count": 1}}, "families": {"_count": 1, "": {"_count": 1}}, "lit": {"_count": 1, "windows": {"_count": 1}}, "Harrys": {"_count": 15, "": {"_count": 2}, "letter": {"_count": 1}, "past": {"_count": 1}, "trip": {"_count": 1}, "wand": {"_count": 2}, "blood": {"_count": 1}, "Harry": {"_count": 1}, "stomach": {"_count": 1}, "shoulder": {"_count": 1}, "name": {"_count": 1}, "ruddy": {"_count": 1}, "skin": {"_count": 1}, "dearest": {"_count": 1}}, "howls": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "Aunt": {"_count": 4, "Petunia": {"_count": 2}, "Marges": {"_count": 1}, "Marge": {"_count": 1}}, "Dudleys": {"_count": 1, "gang": {"_count": 1}}, "wrinkled": {"_count": 1, "noses": {"_count": 1}}, "your": {"_count": 53, "Smelting": {"_count": 1}, "father": {"_count": 1}, "nose": {"_count": 1}, "dear": {"_count": 1}, "arm": {"_count": 1}, "grandmother": {"_count": 1}, "aunt": {"_count": 2}, "answer": {"_count": 1}, "office": {"_count": 1}, "tea": {"_count": 1}, "dress": {"_count": 1}, "golden": {"_count": 1}, "girlfriend": {"_count": 1}, "talk": {"_count": 1}, "powers": {"_count": 1}, "stupidity": {"_count": 1}, "winnings": {"_count": 1}, "outgoings": {"_count": 1}, "name": {"_count": 1}, "work": {"_count": 2}, "quill": {"_count": 1}, "mind": {"_count": 2}, "foot": {"_count": 1}, "mum": {"_count": 1}, "brain": {"_count": 1}, "dad": {"_count": 2}, "Occlumency": {"_count": 1}, "unworthy": {"_count": 1}, "halfbloods": {"_count": 1}, "legs": {"_count": 1}, "own": {"_count": 3}, "scar": {"_count": 1}, "loser": {"_count": 1}, "Transfiguration": {"_count": 1}, "apologies": {"_count": 1}, "uncanny": {"_count": 2}, "students": {"_count": 2}, "death": {"_count": 1}, "head": {"_count": 1}, "hair": {"_count": 1}, "familys": {"_count": 1}, "families": {"_count": 1}, "parents": {"_count": 1}, "hands": {"_count": 1}, "wand": {"_count": 1}}, "one": {"_count": 37, "hand": {"_count": 9}, "of": {"_count": 6}, "wave": {"_count": 1}, "last": {"_count": 2}, "thing": {"_count": 1}, "curse": {"_count": 2}, "fierce": {"_count": 1}, "swish": {"_count": 1}, "movement": {"_count": 1}, "swipe": {"_count": 1}, "though": {"_count": 1}, "made": {"_count": 1}, "finger": {"_count": 2}, "long": {"_count": 1}, "foot": {"_count": 2}, "side": {"_count": 1}, "lazy": {"_count": 2}, "down": {"_count": 1}, "final": {"_count": 1}}, "that": {"_count": 60, "letter": {"_count": 1}, "ridiculous": {"_count": 1}, "oaf": {"_count": 1}, "thing": {"_count": 2}, "snake": {"_count": 1}, "jumpedup": {"_count": 1}, "hanging": {"_count": 1}, "big": {"_count": 1}, "and": {"_count": 1}, "dog": {"_count": 1}, "cloak": {"_count": 1}, "revolting": {"_count": 1}, "egg": {"_count": 1}, "gillyweed": {"_count": 1}, "stuff": {"_count": 1}, "one": {"_count": 2}, "monster": {"_count": 1}, "comforting": {"_count": 1}, "": {"_count": 7}, "old": {"_count": 1}, "hairstyle": {"_count": 1}, "boy": {"_count": 1}, "knowledge": {"_count": 1}, "hag": {"_count": 1}, "lunatic": {"_count": 1}, "sword": {"_count": 1}, "it": {"_count": 1}, "maddeningly": {"_count": 1}, "horrible": {"_count": 1}, "stupid": {"_count": 1}, "fat": {"_count": 1}, "simpering": {"_count": 1}, "master": {"_count": 1}, "great": {"_count": 1}, "scar": {"_count": 1}, "the": {"_count": 2}, "sir": {"_count": 1}, "she": {"_count": 1}, "toenail": {"_count": 1}, "Prince": {"_count": 1}, "strange": {"_count": 1}, "book": {"_count": 1}, "much": {"_count": 1}, "he": {"_count": 1}, "girl": {"_count": 1}, "weird": {"_count": 1}, "story": {"_count": 1}, "wand": {"_count": 1}, "indefinable": {"_count": 1}, "funeral": {"_count": 1}, "clear": {"_count": 1}}, "their": {"_count": 71, "arms": {"_count": 6}, "victory": {"_count": 1}, "backs": {"_count": 3}, "little": {"_count": 1}, "studying": {"_count": 1}, "bodies": {"_count": 1}, "mouths": {"_count": 3}, "money": {"_count": 1}, "eyes": {"_count": 2}, "fear": {"_count": 1}, "ears": {"_count": 1}, "wands": {"_count": 9}, "families": {"_count": 2}, "own": {"_count": 2}, "sleeves": {"_count": 1}, "trunks": {"_count": 1}, "shortlisted": {"_count": 1}, "enormous": {"_count": 1}, "heads": {"_count": 3}, "skrewts": {"_count": 1}, "preferred": {"_count": 1}, "sparks": {"_count": 1}, "Canary": {"_count": 1}, "plates": {"_count": 1}, "Head": {"_count": 2}, "dead": {"_count": 1}, "fingers": {"_count": 2}, "footsteps": {"_count": 1}, "pureblood": {"_count": 1}, "eyebrows": {"_count": 1}, "neighbors": {"_count": 1}, "homework": {"_count": 1}, "friend": {"_count": 1}, "wigs": {"_count": 1}, "help": {"_count": 1}, "luggage": {"_count": 1}, "bags": {"_count": 1}, "chosen": {"_count": 1}, "treasures": {"_count": 1}, "vertical": {"_count": 1}, "lot": {"_count": 1}, "fists": {"_count": 1}, "covers": {"_count": 1}, "children": {"_count": 1}, "argument": {"_count": 1}, "black": {"_count": 1}, "prey": {"_count": 1}}, "half": {"_count": 7, "his": {"_count": 1}, "a": {"_count": 4}, "its": {"_count": 2}}, "twin": {"_count": 1, "beds": {"_count": 1}}, "some": {"_count": 26, "of": {"_count": 6}, "difficulty": {"_count": 3}, "secret": {"_count": 1}, "friends": {"_count": 1}, "borrowed": {"_count": 1}, "terrifying": {"_count": 1}, "food": {"_count": 1}, "satisfaction": {"_count": 3}, "sort": {"_count": 1}, "passes": {"_count": 1}, "apprehension": {"_count": 1}, "care": {"_count": 1}, "harshsmelling": {"_count": 1}, "kind": {"_count": 1}, "sleep": {"_count": 1}, "other": {"_count": 1}, "hairs": {"_count": 1}}, "hunger": {"_count": 5, "": {"_count": 1}, "jumped": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 2}}, "them": {"_count": 77, "": {"_count": 32}, "he": {"_count": 2}, "shredded": {"_count": 1}, "then": {"_count": 1}, "look": {"_count": 1}, "at": {"_count": 3}, "five": {"_count": 1}, "too": {"_count": 3}, "said": {"_count": 2}, "What": {"_count": 1}, "do": {"_count": 1}, "this": {"_count": 1}, "since": {"_count": 1}, "when": {"_count": 1}, "until": {"_count": 1}, "Harry": {"_count": 1}, "raised": {"_count": 1}, "she": {"_count": 1}, "Parvati": {"_count": 1}, "Jimmy": {"_count": 1}, "Ron": {"_count": 1}, "paused": {"_count": 1}, "in": {"_count": 2}, "both": {"_count": 1}, "only": {"_count": 1}, "leaving": {"_count": 1}, "around": {"_count": 1}, "Death": {"_count": 1}, "about": {"_count": 1}, "running": {"_count": 1}, "burn": {"_count": 1}, "like": {"_count": 1}, "all": {"_count": 1}, "now": {"_count": 1}, "walking": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}, "anyway": {"_count": 1}, "their": {"_count": 1}}, "fear": {"_count": 12, "": {"_count": 7}, "Malfoy": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}}, "trembling": {"_count": 5, "fingers": {"_count": 1}, "hands": {"_count": 4}}, "Happy": {"_count": 1, "Birthday": {"_count": 1}}, "flickering": {"_count": 2, "light": {"_count": 1}, "torches": {"_count": 1}}, "rage": {"_count": 24, "": {"_count": 14}, "told": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 4}, "he": {"_count": 1}, "a": {"_count": 1}}, "enough": {"_count": 2, "force": {"_count": 1}, "life": {"_count": 1}}, "you": {"_count": 145, "": {"_count": 53}, "said": {"_count": 6}, "she": {"_count": 1}, "all": {"_count": 2}, "Hagrid": {"_count": 1}, "two": {"_count": 4}, "Crabbe": {"_count": 1}, "Harry": {"_count": 6}, "floating": {"_count": 1}, "too": {"_count": 2}, "you": {"_count": 2}, "I": {"_count": 2}, "Peter": {"_count": 1}, "are": {"_count": 1}, "about": {"_count": 2}, "Mr": {"_count": 1}, "Father": {"_count": 1}, "and": {"_count": 7}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}, "when": {"_count": 1}, "tomorrow": {"_count": 1}, "soon": {"_count": 1}, "boy": {"_count": 2}, "have": {"_count": 1}, "Ron": {"_count": 2}, "earlier": {"_count": 1}, "Hermione": {"_count": 1}, "then": {"_count": 1}, "shes": {"_count": 1}, "Potter": {"_count": 2}, "if": {"_count": 2}, "otherwise": {"_count": 1}, "to": {"_count": 2}, "three": {"_count": 1}, "is": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 3}, "He": {"_count": 1}, "before": {"_count": 1}, "at": {"_count": 1}, "saw": {"_count": 1}, "Leanne": {"_count": 1}, "thatll": {"_count": 1}, "as": {"_count": 1}, "Draco": {"_count": 1}, "hoping": {"_count": 1}, "So": {"_count": 1}, "this": {"_count": 1}, "sighed": {"_count": 1}, "for": {"_count": 1}, "anymore": {"_count": 1}, "wherever": {"_count": 2}, "whatever": {"_count": 1}, "right": {"_count": 1}, "Scrimgeour": {"_count": 1}, "we": {"_count": 1}, "from": {"_count": 1}, "Mrs": {"_count": 1}, "now": {"_count": 1}, "Fred": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 1}, "him": {"_count": 1}, "Eloise": {"_count": 1}, "Neville": {"_count": 1}}, "strange": {"_count": 1, "wizards": {"_count": 1}}, "these": {"_count": 12, "wizarding": {"_count": 1}, "reconstructions": {"_count": 1}, "people": {"_count": 1}, "on": {"_count": 1}, "foreigners": {"_count": 1}, "Mudbloods": {"_count": 1}, "two": {"_count": 1}, "is": {"_count": 1}, "particular": {"_count": 1}, "students": {"_count": 1}, "sprouts": {"_count": 1}, "Order": {"_count": 1}}, "warmth": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "youngsters": {"_count": 1, "of": {"_count": 1}}, "goblins": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "owls": {"_count": 1, "every": {"_count": 1}}, "shops": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 11, "in": {"_count": 1}, "": {"_count": 2}, "else": {"_count": 8}}, "broomsticks": {"_count": 2, "in": {"_count": 1}, "said": {"_count": 1}}, "barrels": {"_count": 1, "of": {"_count": 1}}, "words": {"_count": 1, "engraved": {"_count": 1}}, "flaming": {"_count": 6, "torches": {"_count": 5}, "red": {"_count": 1}}, "this": {"_count": 26, "boy": {"_count": 1}, "door": {"_count": 1}, "Bludger": {"_count": 1}, "": {"_count": 4}, "under": {"_count": 1}, "as": {"_count": 1}, "big": {"_count": 1}, "wand": {"_count": 1}, "image": {"_count": 1}, "stunted": {"_count": 1}, "quill": {"_count": 1}, "class": {"_count": 1}, "story": {"_count": 1}, "lie": {"_count": 1}, "thing": {"_count": 1}, "sudden": {"_count": 1}, "kind": {"_count": 1}, "Harry": {"_count": 2}, "information": {"_count": 1}, "argument": {"_count": 1}, "and": {"_count": 1}, "knife": {"_count": 1}}, "chopped": {"_count": 1, "nuts": {"_count": 1}}, "magic": {"_count": 4, "in": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}, "exploding": {"_count": 1}}, "books": {"_count": 5, "as": {"_count": 1}, "that": {"_count": 1}, "Arithmancy": {"_count": 1}, "parchment": {"_count": 1}, "and": {"_count": 1}}, "nothing": {"_count": 18, "in": {"_count": 2}, "mysterious": {"_count": 1}, "to": {"_count": 4}, "but": {"_count": 7}, "more": {"_count": 1}, "written": {"_count": 1}, "not": {"_count": 1}, "better": {"_count": 1}}, "silver": {"_count": 8, "markings": {"_count": 1}, "blood": {"_count": 1}, "lettering": {"_count": 1}, "words": {"_count": 1}, "and": {"_count": 2}, "cogs": {"_count": 1}, "": {"_count": 1}}, "another": {"_count": 20, "wizards": {"_count": 1}, "tap": {"_count": 1}, "twinge": {"_count": 1}, "rat": {"_count": 1}, "evil": {"_count": 1}, "loud": {"_count": 3}, "shuddering": {"_count": 1}, "evenings": {"_count": 1}, "gift": {"_count": 1}, "present": {"_count": 3}, "glittering": {"_count": 1}, "tremendous": {"_count": 1}, "giant": {"_count": 1}, "fiery": {"_count": 1}, "twitch": {"_count": 1}, "masked": {"_count": 1}}, "all": {"_count": 59, "their": {"_count": 5}, "the": {"_count": 10}, "his": {"_count": 24}, "that": {"_count": 4}, "my": {"_count": 1}, "your": {"_count": 1}, "sorts": {"_count": 2}, "its": {"_count": 1}, "this": {"_count": 1}, "body": {"_count": 1}, "her": {"_count": 2}, "of": {"_count": 3}, "those": {"_count": 3}, "memory": {"_count": 1}}, "yer": {"_count": 1, "owl": {"_count": 1}}, "Harry": {"_count": 60, "in": {"_count": 2}, "trotting": {"_count": 1}, "clinging": {"_count": 1}, "": {"_count": 10}, "you": {"_count": 1}, "and": {"_count": 9}, "clutching": {"_count": 1}, "behind": {"_count": 1}, "who": {"_count": 1}, "about": {"_count": 2}, "Ron": {"_count": 5}, "seemed": {"_count": 2}, "too": {"_count": 1}, "ever": {"_count": 1}, "before": {"_count": 1}, "totally": {"_count": 1}, "but": {"_count": 1}, "whether": {"_count": 1}, "for": {"_count": 2}, "Potter": {"_count": 5}, "would": {"_count": 1}, "isnt": {"_count": 1}, "right": {"_count": 1}, "all": {"_count": 1}, "on": {"_count": 1}, "seated": {"_count": 1}, "hesitated": {"_count": 1}, "told": {"_count": 1}, "we": {"_count": 1}, "however": {"_count": 1}, "because": {"_count": 1}}, "an": {"_count": 116, "even": {"_count": 2}, "air": {"_count": 12}, "evil": {"_count": 2}, "ornate": {"_count": 1}, "AntiCheating": {"_count": 1}, "odd": {"_count": 11}, "old": {"_count": 1}, "enormous": {"_count": 4}, "angry": {"_count": 3}, "expression": {"_count": 13}, "arrow": {"_count": 1}, "almighty": {"_count": 4}, "imaginary": {"_count": 1}, "anxious": {"_count": 2}, "unpleasant": {"_count": 3}, "entertainment": {"_count": 1}, "obvious": {"_count": 2}, "eerie": {"_count": 1}, "alarming": {"_count": 1}, "escort": {"_count": 1}, "appalled": {"_count": 1}, "exceptionally": {"_count": 1}, "icy": {"_count": 2}, "insane": {"_count": 1}, "uncharacteristically": {"_count": 1}, "immense": {"_count": 1}, "elaborately": {"_count": 1}, "abrupt": {"_count": 1}, "unusually": {"_count": 2}, "ominous": {"_count": 1}, "upturned": {"_count": 2}, "echoing": {"_count": 1}, "attempt": {"_count": 1}, "almost": {"_count": 2}, "amused": {"_count": 1}, "assortment": {"_count": 1}, "invisible": {"_count": 2}, "effort": {"_count": 1}, "aggrieved": {"_count": 1}, "approving": {"_count": 1}, "agonizing": {"_count": 1}, "\u2018Outstanding": {"_count": 1}, "ugly": {"_count": 1}, "unidentifiable": {"_count": 1}, "invitation": {"_count": 1}, "affected": {"_count": 1}, "impassive": {"_count": 1}, "increasing": {"_count": 1}, "immediate": {"_count": 1}, "unpleasantly": {"_count": 1}, "oddly": {"_count": 1}, "excuse": {"_count": 1}, "earsplitting": {"_count": 1}, "appealing": {"_count": 1}, "acquaintance": {"_count": 1}, "elderly": {"_count": 1}, "Atmospheric": {"_count": 1}, "Undesirable": {"_count": 1}, "incredulous": {"_count": 1}, "impenetrable": {"_count": 1}, "unbeatable": {"_count": 1}, "obsession": {"_count": 1}, "awful": {"_count": 1}, "easy": {"_count": 1}}, "freckles": {"_count": 1, "big": {"_count": 1}}, "people": {"_count": 9, "": {"_count": 1}, "like": {"_count": 2}, "who": {"_count": 1}, "queuing": {"_count": 1}, "which": {"_count": 1}, "or": {"_count": 1}, "on": {"_count": 1}, "as": {"_count": 1}}, "students": {"_count": 6, "some": {"_count": 1}, "their": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "too": {"_count": 1}, "and": {"_count": 1}}, "dreadlocks": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "us": {"_count": 48, "": {"_count": 21}, "soon": {"_count": 1}, "tomorrow": {"_count": 1}, "I": {"_count": 1}, "because": {"_count": 2}, "if": {"_count": 1}, "for": {"_count": 2}, "in": {"_count": 2}, "till": {"_count": 1}, "and": {"_count": 2}, "you": {"_count": 1}, "said": {"_count": 3}, "Hermiones": {"_count": 1}, "doing": {"_count": 1}, "today": {"_count": 1}, "so": {"_count": 1}, "after": {"_count": 1}, "about": {"_count": 1}, "Potter": {"_count": 1}, "all": {"_count": 1}, "He": {"_count": 1}, "though": {"_count": 1}}, "five": {"_count": 3, "brothers": {"_count": 1}, "of": {"_count": 1}, "beautifully": {"_count": 1}}, "not": {"_count": 1, "being": {"_count": 1}}, "gold": {"_count": 12, "and": {"_count": 3}, "trimming": {"_count": 1}, "plates": {"_count": 1}, "": {"_count": 3}, "Galleons": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 2}}, "Ron": {"_count": 67, "eating": {"_count": 1}, "behind": {"_count": 1}, "to": {"_count": 3}, "and": {"_count": 28}, "in": {"_count": 2}, "Fred": {"_count": 1}, "Hermione": {"_count": 1}, "you": {"_count": 1}, "for": {"_count": 2}, "I": {"_count": 1}, "": {"_count": 9}, "Neville": {"_count": 1}, "too": {"_count": 1}, "Seamus": {"_count": 1}, "both": {"_count": 1}, "was": {"_count": 1}, "while": {"_count": 2}, "they": {"_count": 1}, "over": {"_count": 1}, "find": {"_count": 1}, "again": {"_count": 1}, "Ginny": {"_count": 1}, "first": {"_count": 1}, "or": {"_count": 1}, "by": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}}, "those": {"_count": 10, "Ron": {"_count": 1}, "youd": {"_count": 1}, "horrors": {"_count": 1}, "great": {"_count": 1}, "pouchy": {"_count": 1}, "pitiless": {"_count": 1}, "oddly": {"_count": 1}, "initials": {"_count": 1}, "items": {"_count": 1}, "deep": {"_count": 1}}, "riffraff": {"_count": 2, "like": {"_count": 2}}, "nerves": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "many": {"_count": 10, "turrets": {"_count": 1}, "stars": {"_count": 1}, "twigs": {"_count": 1}, "snorts": {"_count": 1}, "exaggerated": {"_count": 1}, "tables": {"_count": 1}, "pauses": {"_count": 1}, "No": {"_count": 1}, "different": {"_count": 1}, "small": {"_count": 1}}, "sandy": {"_count": 1, "hair": {"_count": 1}}, "glittering": {"_count": 3, "golden": {"_count": 1}, "rubies": {"_count": 1}, "green": {"_count": 1}}, "stars": {"_count": 7, "": {"_count": 3}, "and": {"_count": 2}, "circling": {"_count": 1}, "which": {"_count": 1}}, "blonde": {"_count": 2, "pigtails": {"_count": 2}}, "Terry": {"_count": 1, "as": {"_count": 1}}, "cheers": {"_count": 4, "Harry": {"_count": 2}, "and": {"_count": 2}}, "Neville": {"_count": 9, "": {"_count": 7}, "and": {"_count": 1}, "who": {"_count": 1}}, "himself": {"_count": 27, "": {"_count": 13}, "but": {"_count": 1}, "guilty": {"_count": 1}, "for": {"_count": 2}, "Harry": {"_count": 1}, "he": {"_count": 2}, "even": {"_count": 1}, "if": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "kissing": {"_count": 1}, "Ron": {"_count": 1}, "Im": {"_count": 1}}, "food": {"_count": 6, "": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "all": {"_count": 1}, "Harry": {"_count": 1}, "because": {"_count": 1}}, "blank": {"_count": 2, "staring": {"_count": 1}, "eyes": {"_count": 1}}, "great": {"_count": 24, "interest": {"_count": 8}, "caution": {"_count": 1}, "glinting": {"_count": 1}, "enjoyment": {"_count": 1}, "difficulty": {"_count": 5}, "gold": {"_count": 1}, "dislike": {"_count": 2}, "concentration": {"_count": 1}, "gusto": {"_count": 1}, "regret": {"_count": 2}, "humanity": {"_count": 1}}, "greasy": {"_count": 2, "black": {"_count": 1}, "hair": {"_count": 1}}, "scabby": {"_count": 1, "knees": {"_count": 1}}, "filling": {"_count": 1, "With": {"_count": 1}}, "wicked": {"_count": 1, "dark": {"_count": 1}}, "deep": {"_count": 3, "red": {"_count": 1}, "crimson": {"_count": 1}, "satisfaction": {"_count": 1}}, "it": {"_count": 81, "then": {"_count": 2}, "on": {"_count": 1}, "when": {"_count": 2}, "as": {"_count": 2}, "sir": {"_count": 2}, "and": {"_count": 2}, "was": {"_count": 1}, "": {"_count": 35}, "sweep": {"_count": 1}, "at": {"_count": 2}, "he": {"_count": 3}, "did": {"_count": 1}, "till": {"_count": 1}, "if": {"_count": 1}, "sneered": {"_count": 1}, "but": {"_count": 1}, "it": {"_count": 1}, "judging": {"_count": 1}, "words": {"_count": 1}, "zigzagging": {"_count": 1}, "all": {"_count": 2}, "more": {"_count": 1}, "said": {"_count": 3}, "wetter": {"_count": 1}, "smiling": {"_count": 1}, "\u2018breakdown": {"_count": 1}, "she": {"_count": 1}, "came": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "an": {"_count": 1}, "Snape": {"_count": 1}, "mind": {"_count": 1}, "a": {"_count": 1}, "so": {"_count": 1}, "after": {"_count": 1}}, "bits": {"_count": 4, "of": {"_count": 4}}, "bulging": {"_count": 1, "lamplike": {"_count": 1}}, "me": {"_count": 121, "around": {"_count": 1}, "Peeves": {"_count": 1}, "an": {"_count": 3}, "or": {"_count": 1}, "wherever": {"_count": 1}, "": {"_count": 41}, "said": {"_count": 4}, "sir": {"_count": 1}, "and": {"_count": 7}, "Argus": {"_count": 1}, "at": {"_count": 2}, "Lucius": {"_count": 1}, "that": {"_count": 2}, "this": {"_count": 2}, "Potter": {"_count": 3}, "I": {"_count": 4}, "though": {"_count": 1}, "Im": {"_count": 1}, "Come": {"_count": 1}, "keep": {"_count": 1}, "but": {"_count": 1}, "just": {"_count": 1}, "to": {"_count": 3}, "when": {"_count": 1}, "boy": {"_count": 1}, "most": {"_count": 1}, "the": {"_count": 1}, "go": {"_count": 1}, "too": {"_count": 1}, "Snape": {"_count": 1}, "do": {"_count": 1}, "Harry": {"_count": 5}, "JORDAN": {"_count": 1}, "its": {"_count": 1}, "then": {"_count": 1}, "on": {"_count": 3}, "she": {"_count": 2}, "Evans": {"_count": 1}, "isnt": {"_count": 1}, "as": {"_count": 2}, "alone": {"_count": 1}, "Molly": {"_count": 1}, "tonight": {"_count": 2}, "if": {"_count": 1}, "either": {"_count": 1}, "he": {"_count": 1}, "aren": {"_count": 1}, "over": {"_count": 1}, "every": {"_count": 1}, "by": {"_count": 1}, "toward": {"_count": 1}}, "Hedwig": {"_count": 7, "": {"_count": 1}, "gone": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}, "she": {"_count": 1}, "nestled": {"_count": 1}, "on": {"_count": 1}}, "Hagrid": {"_count": 25, "to": {"_count": 3}, "": {"_count": 10}, "it": {"_count": 1}, "he": {"_count": 1}, "about": {"_count": 1}, "though": {"_count": 1}, "but": {"_count": 1}, "were": {"_count": 1}, "what": {"_count": 1}, "and": {"_count": 2}, "the": {"_count": 1}, "arent": {"_count": 1}, "Yeah": {"_count": 1}}, "its": {"_count": 41, "shimmering": {"_count": 1}, "heads": {"_count": 1}, "small": {"_count": 1}, "own": {"_count": 2}, "windows": {"_count": 1}, "secret": {"_count": 1}, "horny": {"_count": 1}, "five": {"_count": 2}, "tongue": {"_count": 1}, "blank": {"_count": 1}, "wings": {"_count": 1}, "usual": {"_count": 1}, "boarded": {"_count": 1}, "lower": {"_count": 1}, "large": {"_count": 2}, "magnificent": {"_count": 1}, "owners": {"_count": 1}, "many": {"_count": 2}, "golden": {"_count": 2}, "back": {"_count": 1}, "sharp": {"_count": 1}, "pointed": {"_count": 1}, "head": {"_count": 1}, "hindquarters": {"_count": 1}, "tip": {"_count": 1}, "toe": {"_count": 1}, "four": {"_count": 1}, "serpents": {"_count": 1}, "surface": {"_count": 1}, "motto": {"_count": 1}, "basin": {"_count": 1}, "taps": {"_count": 1}, "serpent": {"_count": 1}, "wide": {"_count": 1}, "runic": {"_count": 1}, "jagged": {"_count": 1}}, "raised": {"_count": 1, "eyebrows": {"_count": 1}}, "laughter": {"_count": 49, "": {"_count": 27}, "but": {"_count": 1}, "and": {"_count": 5}, "as": {"_count": 4}, "at": {"_count": 7}, "Harry": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 1}, "now": {"_count": 1}, "about": {"_count": 1}}, "raisins": {"_count": 1, "that": {"_count": 1}}, "animals": {"_count": 1, "": {"_count": 1}}, "dragons": {"_count": 3, "Harry": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "rock": {"_count": 1, "cakes": {"_count": 1}}, "Malfoy": {"_count": 9, "much": {"_count": 1}, "and": {"_count": 2}, "Weasley": {"_count": 1}, "speeding": {"_count": 1}, "dont": {"_count": 1}, "Harry": {"_count": 2}, "inside": {"_count": 1}}, "Dean": {"_count": 10, "Thomas": {"_count": 1}, "and": {"_count": 4}, "might": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "so": {"_count": 1}}, "only": {"_count": 11, "one": {"_count": 4}, "a": {"_count": 2}, "Dudley": {"_count": 1}, "your": {"_count": 1}, "Kreacher": {"_count": 1}, "an": {"_count": 1}, "fifteen": {"_count": 1}}, "both": {"_count": 13, "feet": {"_count": 1}, "his": {"_count": 1}, "eyes": {"_count": 2}, "of": {"_count": 5}, "boys": {"_count": 1}, "hands": {"_count": 2}, "Ron": {"_count": 1}}, "flying": {"_count": 2, "tips": {"_count": 1}, "gnomes": {"_count": 1}}, "Crabbe": {"_count": 8, "and": {"_count": 6}, "standing": {"_count": 1}, "just": {"_count": 1}}, "Madam": {"_count": 3, "Hooch": {"_count": 1}, "Pomfrey": {"_count": 2}}, "shock": {"_count": 8, "and": {"_count": 1}, "disappeared": {"_count": 1}, "covered": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 3}, "a": {"_count": 1}}, "Professor": {"_count": 29, "McGonagall": {"_count": 13}, "Lupin": {"_count": 2}, "Karkaroff": {"_count": 1}, "Sinistra": {"_count": 1}, "Sprout": {"_count": 4}, "GrubblyPlank": {"_count": 1}, "Flitwick": {"_count": 1}, "Snape": {"_count": 3}, "Dumbledore": {"_count": 2}, "Trelawney": {"_count": 1}}, "real": {"_count": 1, "wizards": {"_count": 1}}, "bars": {"_count": 1, "of": {"_count": 1}}, "yourselves": {"_count": 1, "": {"_count": 1}}, "hoops": {"_count": 2, "on": {"_count": 2}}, "six": {"_count": 1, "hoops": {"_count": 1}}, "Quidditch": {"_count": 5, "practice": {"_count": 2}, "said": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "Hermione": {"_count": 26, "Granger": {"_count": 1}, "next": {"_count": 3}, "too": {"_count": 1}, "": {"_count": 4}, "about": {"_count": 1}, "sitting": {"_count": 1}, "after": {"_count": 1}, "using": {"_count": 1}, "Ron": {"_count": 1}, "in": {"_count": 1}, "coming": {"_count": 1}, "and": {"_count": 4}, "there": {"_count": 1}, "GGranger": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 1}, "at": {"_count": 1}, "or": {"_count": 1}}, "flat": {"_count": 2, "horny": {"_count": 1}, "side": {"_count": 1}}, "terror": {"_count": 8, "": {"_count": 3}, "again": {"_count": 1}, "staring": {"_count": 1}, "and": {"_count": 2}, "mmy": {"_count": 1}}, "pain": {"_count": 30, "the": {"_count": 1}, "yet": {"_count": 1}, "he": {"_count": 4}, "all": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 9}, "and": {"_count": 4}, "as": {"_count": 4}, "wrenched": {"_count": 1}, "again": {"_count": 2}, "fumbled": {"_count": 1}, "it": {"_count": 1}}, "Quirrell": {"_count": 1, "bringing": {"_count": 1}}, "cold": {"_count": 9, "fury": {"_count": 1}, "Harry": {"_count": 1}, "still": {"_count": 1}, "": {"_count": 2}, "water": {"_count": 1}, "white": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}}, "fury": {"_count": 13, "as": {"_count": 2}, "": {"_count": 8}, "he": {"_count": 1}, "and": {"_count": 1}, "Mrs": {"_count": 1}}, "tiny": {"_count": 5, "icicles": {"_count": 1}, "toy": {"_count": 1}, "silver": {"_count": 1}, "moving": {"_count": 1}, "spikes": {"_count": 1}}, "hundreds": {"_count": 5, "of": {"_count": 4}, "and": {"_count": 1}}, "chessmen": {"_count": 1, "Seamus": {"_count": 1}}, "anyone": {"_count": 4, "else": {"_count": 2}, "like": {"_count": 1}, "": {"_count": 1}}, "Fred": {"_count": 9, "and": {"_count": 7}, "George": {"_count": 1}, "": {"_count": 1}}, "difficulty": {"_count": 15, "because": {"_count": 1}, "locked": {"_count": 1}, "": {"_count": 4}, "the": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 2}, "for": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}}, "what": {"_count": 28, "they": {"_count": 1}, "has": {"_count": 1}, "the": {"_count": 1}, "looked": {"_count": 7}, "was": {"_count": 2}, "Harry": {"_count": 1}, "seemed": {"_count": 3}, "remained": {"_count": 1}, "You": {"_count": 1}, "some": {"_count": 1}, "she": {"_count": 2}, "he": {"_count": 3}, "": {"_count": 1}, "appeared": {"_count": 3}}, "making": {"_count": 2, "the": {"_count": 1}, "money": {"_count": 1}}, "astonishing": {"_count": 1, "powers": {"_count": 1}}, "relief": {"_count": 10, "": {"_count": 6}, "that": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}, "wove": {"_count": 1}}, "anxiety": {"_count": 3, "about": {"_count": 1}, "over": {"_count": 1}, "when": {"_count": 1}}, "yeh": {"_count": 4, "": {"_count": 2}, "said": {"_count": 1}, "Headmaster": {"_count": 1}}, "chicken": {"_count": 1, "blood": {"_count": 1}}, "bated": {"_count": 5, "breath": {"_count": 5}}, "wide": {"_count": 4, "nostrils": {"_count": 1}, "gleaming": {"_count": 1}, "livid": {"_count": 1}, "eyes": {"_count": 1}}, "misty": {"_count": 1, "eyes": {"_count": 1}}, "tears": {"_count": 33, "although": {"_count": 1}, "": {"_count": 8}, "every": {"_count": 1}, "please": {"_count": 1}, "that": {"_count": 1}, "she": {"_count": 2}, "of": {"_count": 3}, "again": {"_count": 3}, "as": {"_count": 4}, "in": {"_count": 1}, "and": {"_count": 3}, "once": {"_count": 1}, "with": {"_count": 1}, "a": {"_count": 1}, "but": {"_count": 1}, "Hermione": {"_count": 1}}, "each": {"_count": 13, "other": {"_count": 7}, "successive": {"_count": 1}, "in": {"_count": 1}, "line": {"_count": 1}, "clang": {"_count": 1}, "visit": {"_count": 1}, "reading": {"_count": 1}}, "sneaking": {"_count": 1, "around": {"_count": 1}}, "Snape": {"_count": 29, "and": {"_count": 4}, "": {"_count": 10}, "next": {"_count": 1}, "what": {"_count": 1}, "which": {"_count": 1}, "that": {"_count": 1}, "January": {"_count": 1}, "since": {"_count": 1}, "will": {"_count": 1}, "tonight": {"_count": 1}, "on": {"_count": 1}, "this": {"_count": 1}, "who": {"_count": 1}, "Take": {"_count": 1}, "s": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 1}}, "glee": {"_count": 10, "": {"_count": 8}, "at": {"_count": 1}, "and": {"_count": 1}}, "red": {"_count": 7, "hair": {"_count": 2}, "and": {"_count": 1}, "velvet": {"_count": 1}, "vests": {"_count": 1}, "eyes": {"_count": 2}}, "Fang": {"_count": 6, "an": {"_count": 1}, "at": {"_count": 2}, "scampering": {"_count": 1}, "the": {"_count": 1}, "still": {"_count": 1}}, "humans": {"_count": 2, "alongside": {"_count": 1}, "": {"_count": 1}}, "work": {"_count": 2, "though": {"_count": 1}, "and": {"_count": 1}}, "dragon": {"_count": 3, "eggs": {"_count": 1}, "dung": {"_count": 1}, "pox": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}, "bright": {"_count": 2, "blue": {"_count": 1}, "interest": {"_count": 1}}, "seven": {"_count": 2, "differently": {"_count": 1}, "locks": {"_count": 1}}, "Dumbledore": {"_count": 42, "watching": {"_count": 2}, "he": {"_count": 2}, "": {"_count": 12}, "and": {"_count": 3}, "before": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 2}, "can": {"_count": 1}, "that": {"_count": 1}, "while": {"_count": 1}, "on": {"_count": 1}, "gone": {"_count": 1}, "close": {"_count": 1}, "at": {"_count": 1}, "so": {"_count": 1}, "over": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}, "if": {"_count": 1}, "went": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}, "last": {"_count": 1}, "of": {"_count": 1}, "s": {"_count": 1}, "now": {"_count": 1}}, "trolls": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "glaring": {"_count": 1, "red": {"_count": 1}}, "white": {"_count": 2, "linen": {"_count": 1}, "and": {"_count": 1}}, "Voldemort": {"_count": 11, "could": {"_count": 1}, "": {"_count": 7}, "yet": {"_count": 1}, "s": {"_count": 1}, "he": {"_count": 1}}, "grief": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "because": {"_count": 1}, "for": {"_count": 1}}, "three": {"_count": 3, "hundred": {"_count": 3}}, "good": {"_count": 3, "marks": {"_count": 1}, "grace": {"_count": 1}, "reason": {"_count": 1}}, "brilliant": {"_count": 1, "green": {"_count": 1}}, "none": {"_count": 2, "other": {"_count": 2}}, "rips": {"_count": 1, "for": {"_count": 1}}, "Vol": {"_count": 2, "sorry": {"_count": 1}, "Didnt": {"_count": 1}}, "YouKnowWho": {"_count": 5, "has": {"_count": 1}, "": {"_count": 3}, "coming": {"_count": 1}}, "earsplitting": {"_count": 1, "yelps": {"_count": 1}}, "Dobby": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "I": {"_count": 1, "told": {"_count": 1}}, "big": {"_count": 1, "old": {"_count": 1}}, "bewitching": {"_count": 1, "things": {"_count": 1}}, "worry": {"_count": 1, "did": {"_count": 1}}, "titles": {"_count": 1, "like": {"_count": 1}}, "wavy": {"_count": 1, "blond": {"_count": 1}}, "fishing": {"_count": 1, "rods": {"_count": 1}}, "peeling": {"_count": 2, "paint": {"_count": 1}, "paper": {"_count": 1}}, "posters": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "two": {"_count": 9, "giant": {"_count": 1}, "redhaired": {"_count": 1}, "minutes": {"_count": 1}, "black": {"_count": 1}, "very": {"_count": 1}, "sets": {"_count": 1}, "finely": {"_count": 1}, "model": {"_count": 1}, "wands": {"_count": 1}}, "questions": {"_count": 3, "about": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}}, "Ghouls": {"_count": 3, "by": {"_count": 1}, "about": {"_count": 1}, "right": {"_count": 1}}, "Hags": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "Trolls": {"_count": 4, "by": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "onto": {"_count": 1}}, "Vampires": {"_count": 5, "by": {"_count": 1}, "propped": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}}, "Werewolves": {"_count": 2, "by": {"_count": 1}, "more": {"_count": 1}}, "schoolwork": {"_count": 1, "of": {"_count": 1}}, "gigantic": {"_count": 1, "black": {"_count": 1}}, "grim": {"_count": 1, "satisfaction": {"_count": 1}}, "Ginny": {"_count": 16, "": {"_count": 6}, "Ron": {"_count": 1}, "Neville": {"_count": 1}, "imagining": {"_count": 1}, "and": {"_count": 2}, "thatll": {"_count": 1}, "Weasley": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}}, "Mr": {"_count": 19, "and": {"_count": 3}, "Filch": {"_count": 2}, "Moony": {"_count": 1}, "Potter": {"_count": 1}, "Weasley": {"_count": 9}, "Weasleys": {"_count": 2}, "Ronald": {"_count": 1}}, "every": {"_count": 32, "blinding": {"_count": 1}, "step": {"_count": 8}, "goblet": {"_count": 1}, "word": {"_count": 5}, "second": {"_count": 2}, "right": {"_count": 1}, "appearance": {"_count": 2}, "retelling": {"_count": 1}, "passing": {"_count": 1}, "letter": {"_count": 1}, "movement": {"_count": 1}, "lesson": {"_count": 1}, "sign": {"_count": 1}, "other": {"_count": 1}, "last": {"_count": 1}, "bit": {"_count": 1}, "pace": {"_count": 1}, "change": {"_count": 1}, "blink": {"_count": 1}}, "Draco": {"_count": 4, "Malfoy": {"_count": 3}, "as": {"_count": 1}}, "malice": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "fright": {"_count": 7, "and": {"_count": 3}, "": {"_count": 3}, "but": {"_count": 1}}, "Floo": {"_count": 1, "powder": {"_count": 1}}, "cars": {"_count": 1, "like": {"_count": 1}}, "sallow": {"_count": 1, "skin": {"_count": 1}}, "shelves": {"_count": 2, "of": {"_count": 1}, "bearing": {"_count": 1}}, "tureens": {"_count": 1, "of": {"_count": 1}}, "milk": {"_count": 1, "and": {"_count": 1}}, "guilt": {"_count": 1, "": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "": {"_count": 1}}, "humiliation": {"_count": 1, "Harry": {"_count": 1}}, "young": {"_count": 1, "Creevey": {"_count": 1}}, "staring": {"_count": 1, "students": {"_count": 1}}, "piling": {"_count": 1, "all": {"_count": 1}}, "silent": {"_count": 4, "laughter": {"_count": 3}, "giggles": {"_count": 1}}, "rapt": {"_count": 3, "attention": {"_count": 2}, "faces": {"_count": 1}}, "pointed": {"_count": 3, "faces": {"_count": 1}, "teeth": {"_count": 1}, "brown": {"_count": 1}}, "broken": {"_count": 2, "glass": {"_count": 1}, "veins": {"_count": 1}}, "excitement": {"_count": 21, "": {"_count": 10}, "something": {"_count": 1}, "their": {"_count": 1}, "as": {"_count": 2}, "you": {"_count": 1}, "if": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "sure": {"_count": 1}, "He": {"_count": 1}, "Dracos": {"_count": 1}}, "dislike": {"_count": 2, "": {"_count": 1}, "pouring": {"_count": 1}}, "slugs": {"_count": 1, "": {"_count": 1}}, "Lockhart": {"_count": 2, "": {"_count": 2}}, "mud": {"_count": 4, "": {"_count": 2}, "from": {"_count": 1}, "and": {"_count": 1}}, "accompanying": {"_count": 1, "explosions": {"_count": 1}}, "candles": {"_count": 1, "too": {"_count": 1}}, "black": {"_count": 2, "velvet": {"_count": 1}, "star": {"_count": 1}}, "tarlike": {"_count": 1, "icing": {"_count": 1}}, "moldy": {"_count": 1, "peanuts": {"_count": 1}}, "various": {"_count": 4, "amulets": {"_count": 1}, "posters": {"_count": 1}, "instruments": {"_count": 1}, "possessions": {"_count": 1}}, "facts": {"_count": 1, "Miss": {"_count": 1}}, "GhoulsV": {"_count": 1, "said": {"_count": 1}}, "fumbling": {"_count": 2, "fingers": {"_count": 2}}, "drawings": {"_count": 1, "of": {"_count": 1}}, "Crabbes": {"_count": 1, "toenails": {"_count": 1}}, "emotion": {"_count": 6, "Wood": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "is": {"_count": 1}}, "someone": {"_count": 9, "leaning": {"_count": 1}, "else": {"_count": 5}, "": {"_count": 2}, "who": {"_count": 1}}, "clothes": {"_count": 2, "sir": {"_count": 1}, "but": {"_count": 1}}, "winter": {"_count": 1, "sunlight": {"_count": 1}}, "rumor": {"_count": 1, "and": {"_count": 1}}, "fur": {"_count": 1, "or": {"_count": 1}}, "arms": {"_count": 1, "like": {"_count": 1}}, "interest": {"_count": 7, "": {"_count": 3}, "all": {"_count": 1}, "as": {"_count": 1}, "others": {"_count": 1}, "before": {"_count": 1}}, "much": {"_count": 6, "twirling": {"_count": 1}, "more": {"_count": 1}, "curiosity": {"_count": 1}, "concern": {"_count": 1}, "the": {"_count": 1}, "gold": {"_count": 1}}, "Justin": {"_count": 1, "Finch": {"_count": 1}}, "stopping": {"_count": 1, "a": {"_count": 1}}, "Slytherins": {"_count": 1, "heir": {"_count": 1}}, "Filch": {"_count": 7, "": {"_count": 2}, "who": {"_count": 1}, "the": {"_count": 2}, "and": {"_count": 1}, "searching": {"_count": 1}}, "anger": {"_count": 21, "": {"_count": 9}, "he": {"_count": 1}, "but": {"_count": 2}, "too": {"_count": 1}, "as": {"_count": 3}, "and": {"_count": 1}, "again": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 2}}, "said": {"_count": 4, "Ernie": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "Luna": {"_count": 1}}, "instructions": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "portraits": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "Salazar": {"_count": 1, "Slytherin": {"_count": 1}}, "loathing": {"_count": 2, "": {"_count": 2}}, "long": {"_count": 23, "curly": {"_count": 3}, "sweeping": {"_count": 1}, "matted": {"_count": 1}, "hair": {"_count": 4}, "pointed": {"_count": 1}, "snouts": {"_count": 1}, "black": {"_count": 2}, "shiny": {"_count": 1}, "braided": {"_count": 1}, "silver": {"_count": 2}, "swaying": {"_count": 1}, "tails": {"_count": 1}, "blonde": {"_count": 1}, "straggly": {"_count": 1}, "thin": {"_count": 1}, "spines": {"_count": 1}}, "rough": {"_count": 3, "stone": {"_count": 3}}, "no": {"_count": 24, "proper": {"_count": 1}, "whisper": {"_count": 1}, "Hagrid": {"_count": 1}, "extraordinary": {"_count": 1}, "thought": {"_count": 2}, "idea": {"_count": 2}, "change": {"_count": 3}, "bones": {"_count": 1}, "Beaters": {"_count": 1}, "desire": {"_count": 1}, "memory": {"_count": 1}, "fixed": {"_count": 1}, "alternative": {"_count": 1}, "means": {"_count": 1}, "visible": {"_count": 1}, "flying": {"_count": 1}, "prospect": {"_count": 1}, "success": {"_count": 1}, "pretense": {"_count": 1}, "other": {"_count": 1}}, "relish": {"_count": 4, "": {"_count": 3}, "now": {"_count": 1}}, "just": {"_count": 3, "one": {"_count": 1}, "the": {"_count": 1}, "under": {"_count": 1}}, "large": {"_count": 7, "lurid": {"_count": 1}, "protruding": {"_count": 1}, "pale": {"_count": 1}, "yellow": {"_count": 1}, "rubies": {"_count": 1}, "dark": {"_count": 1}, "white": {"_count": 1}}, "giggles": {"_count": 1, "": {"_count": 1}}, "mirth": {"_count": 1, "": {"_count": 1}}, "concern": {"_count": 1, "": {"_count": 1}}, "checks": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 4, "business": {"_count": 1}, "cards": {"_count": 1}, "money": {"_count": 1}, "remedies": {"_count": 1}}, "scrambled": {"_count": 1, "eggs": {"_count": 1}}, "Ernie": {"_count": 2, "Macmillan": {"_count": 1}, "": {"_count": 1}}, "scrawling": {"_count": 1, "a": {"_count": 1}}, "joy": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "spiders": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 13, "catching": {"_count": 1}, "nicknames": {"_count": 1}, "own": {"_count": 1}, "foreign": {"_count": 1}, "curiosity": {"_count": 1}, "homework": {"_count": 1}, "childrens": {"_count": 1}, "Quidditch": {"_count": 1}, "O": {"_count": 1}, "Strengthening": {"_count": 1}, "Head": {"_count": 1}, "story": {"_count": 1}, "longfingered": {"_count": 1}}, "without": {"_count": 1, "walking": {"_count": 1}}, "small": {"_count": 5, "animal": {"_count": 1}, "children": {"_count": 1}, "dusty": {"_count": 1}, "iced": {"_count": 1}, "wings": {"_count": 1}}, "more": {"_count": 9, "carved": {"_count": 1}, "portraits": {"_count": 2}, "anecdotes": {"_count": 1}, "dangerous": {"_count": 1}, "reverence": {"_count": 1}, "potion": {"_count": 1}, "clattering": {"_count": 1}, "gouging": {"_count": 1}}, "flamingred": {"_count": 2, "hair": {"_count": 2}}, "Ginnys": {"_count": 3, "dead": {"_count": 1}, "air": {"_count": 1}, "window": {"_count": 1}}, "secondhand": {"_count": 1, "robes": {"_count": 1}}, "luck": {"_count": 3, "I": {"_count": 1}, "be": {"_count": 1}, "avoided": {"_count": 1}}, "suppressed": {"_count": 4, "rage": {"_count": 2}, "giggles": {"_count": 1}, "mirth": {"_count": 1}}, "fangs": {"_count": 4, "long": {"_count": 2}, "on": {"_count": 1}, "and": {"_count": 1}}, "rubies": {"_count": 1, "the": {"_count": 1}}, "Potter": {"_count": 5, "and": {"_count": 1}, "I": {"_count": 1}, "until": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}}, "which": {"_count": 21, "he": {"_count": 7}, "to": {"_count": 1}, "YouKnowWho": {"_count": 1}, "they": {"_count": 2}, "it": {"_count": 2}, "you": {"_count": 1}, "her": {"_count": 1}, "Cho": {"_count": 1}, "Umbridge": {"_count": 1}, "Ginny": {"_count": 1}, "I": {"_count": 1}, "Rita": {"_count": 1}, "she": {"_count": 1}}, "shaking": {"_count": 3, "hands": {"_count": 2}, "his": {"_count": 1}}, "HeWho": {"_count": 1, "MustNotBeNamed": {"_count": 1}}, "spit": {"_count": 1, "": {"_count": 1}}, "tiredness": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "herself": {"_count": 5, "": {"_count": 4}, "for": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "very": {"_count": 8, "little": {"_count": 2}, "bushy": {"_count": 1}, "large": {"_count": 1}, "austere": {"_count": 1}, "short": {"_count": 2}, "entertaining": {"_count": 1}}, "Errol": {"_count": 1, "": {"_count": 1}}, "tea": {"_count": 1, "and": {"_count": 1}}, "dogs": {"_count": 2, "": {"_count": 2}}, "twelve": {"_count": 2, "dogs": {"_count": 1}, "hands": {"_count": 1}}, "inexpressible": {"_count": 1, "anger": {"_count": 1}}, "piggy": {"_count": 2, "eyes": {"_count": 1}, "little": {"_count": 1}}, "absolutely": {"_count": 1, "nowhere": {"_count": 1}}, "light": {"_count": 5, "and": {"_count": 1}, "quick": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 2}}, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "Black": {"_count": 3, "yet": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "moon": {"_count": 1, "charts": {"_count": 1}}, "occasional": {"_count": 1, "help": {"_count": 1}}, "volumes": {"_count": 1, "such": {"_count": 1}}, "gleaming": {"_count": 3, "eyes": {"_count": 1}, "red": {"_count": 1}, "golden": {"_count": 1}}, "shopping": {"_count": 1, "bags": {"_count": 1}}, "pride": {"_count": 5, "": {"_count": 2}, "as": {"_count": 2}, "inside": {"_count": 1}}, "HB": {"_count": 1, "on": {"_count": 1}}, "twenty": {"_count": 1, "minutes": {"_count": 1}}, "witches": {"_count": 2, "and": {"_count": 2}}, "gray": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "stone": {"_count": 1, "columns": {"_count": 1}}, "winged": {"_count": 4, "boars": {"_count": 4}}, "square": {"_count": 1, "spectacles": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "talk": {"_count": 2, "laughter": {"_count": 1}, "and": {"_count": 1}}, "dark": {"_count": 3, "red": {"_count": 1}, "shadows": {"_count": 1}, "glistening": {"_count": 1}}, "dustylooking": {"_count": 1, "feathers": {"_count": 1}}, "bangles": {"_count": 1, "and": {"_count": 1}}, "fire": {"_count": 1, "omens": {"_count": 1}}, "effort": {"_count": 1, "": {"_count": 1}}, "mounting": {"_count": 1, "dislike": {"_count": 1}}, "spectacle": {"_count": 2, "markings": {"_count": 2}}, "binder": {"_count": 1, "clips": {"_count": 1}}, "cruel": {"_count": 1, "steelcolored": {"_count": 1}}, "Buckbeak": {"_count": 3, "": {"_count": 3}}, "feathers": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 5, "in": {"_count": 1}, "difficult": {"_count": 1}, "": {"_count": 2}, "else": {"_count": 1}}, "at": {"_count": 4, "least": {"_count": 1}, "the": {"_count": 2}, "that": {"_count": 1}}, "chewing": {"_count": 1, "gum": {"_count": 1}}, "increased": {"_count": 1, "respect": {"_count": 1}}, "floorlength": {"_count": 1, "black": {"_count": 1}}, "webbed": {"_count": 1, "hands": {"_count": 1}}, "respect": {"_count": 1, "bordering": {"_count": 1}}, "annoyingly": {"_count": 1, "superior": {"_count": 1}}, "heavy": {"_count": 3, "bats": {"_count": 1}, "black": {"_count": 1}, "brows": {"_count": 1}}, "streaming": {"_count": 1, "eyes": {"_count": 1}}, "vigorous": {"_count": 1, "nods": {"_count": 1}}, "sharp": {"_count": 1, "little": {"_count": 1}}, "Honeydukes": {"_count": 1, "sweets": {"_count": 1}}, "attention": {"_count": 1, "and": {"_count": 1}}, "Malfoys": {"_count": 1, "arm": {"_count": 1}}, "Wood": {"_count": 3, "shouting": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "Red": {"_count": 1, "Caps": {"_count": 1}}, "any": {"_count": 12, "of": {"_count": 6}, "luck": {"_count": 2}, "sense": {"_count": 1}, "number": {"_count": 1}, "more": {"_count": 1}, "other": {"_count": 1}}, "weakness": {"_count": 1, "said": {"_count": 1}}, "shimmering": {"_count": 1, "lights": {"_count": 1}}, "Percy": {"_count": 7, "and": {"_count": 1}, "better": {"_count": 1}, "": {"_count": 4}, "before": {"_count": 1}}, "Hogwarts": {"_count": 2, "students": {"_count": 2}}, "bluebellcolored": {"_count": 1, "bubbles": {"_count": 1}}, "dementors": {"_count": 5, "swarming": {"_count": 1}, "anymore": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 1}}, "butterbeer": {"_count": 1, "and": {"_count": 1}}, "ice": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "curiosity": {"_count": 3, "": {"_count": 1}, "about": {"_count": 1}, "and": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "wands": {"_count": 3, "Idve": {"_count": 1}, "pointing": {"_count": 1}, "": {"_count": 1}}, "happiness": {"_count": 7, "arm": {"_count": 1}, "": {"_count": 2}, "again": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "as": {"_count": 1}}, "keepin": {"_count": 1, "them": {"_count": 1}}, "em": {"_count": 5, "so": {"_count": 1}, "today": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 2}}, "golden": {"_count": 5, "stars": {"_count": 2}, "bulrushes": {"_count": 1}, "hair": {"_count": 1}, "coins": {"_count": 1}}, "Christmas": {"_count": 2, "dinner": {"_count": 1}, "shoppers": {"_count": 1}}, "Lupin": {"_count": 4, "and": {"_count": 1}, "Pettigrew": {"_count": 1}, "": {"_count": 2}}, "happy": {"_count": 1, "thoughts": {"_count": 1}}, "Lupins": {"_count": 1, "anti": {"_count": 1}}, "Snapes": {"_count": 1, "essay": {"_count": 1}}, "Sir": {"_count": 1, "Cadogan": {"_count": 1}}, "Weasley": {"_count": 2, "": {"_count": 1}, "family": {"_count": 1}}, "injuries": {"_count": 1, "": {"_count": 1}}, "enormous": {"_count": 6, "satisfaction": {"_count": 1}, "glasses": {"_count": 1}, "difficulty": {"_count": 2}, "care": {"_count": 1}, "affection": {"_count": 1}}, "armfuls": {"_count": 1, "of": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "Hagrids": {"_count": 2, "cooking": {"_count": 1}, "crinkled": {"_count": 1}}, "Buckbeaks": {"_count": 1, "case": {"_count": 1}}, "Dungbombs": {"_count": 2, "Hiccup": {"_count": 1}, "before": {"_count": 1}}, "dread": {"_count": 2, "Harry": {"_count": 1}, "at": {"_count": 1}}, "Cheering": {"_count": 1, "Charms": {"_count": 1}}, "unmistakable": {"_count": 1, "anger": {"_count": 1}}, "names": {"_count": 2, "like": {"_count": 1}, "showed": {"_count": 1}}, "leeks": {"_count": 1, "sprouting": {"_count": 1}}, "slogans": {"_count": 1, "like": {"_count": 1}}, "crimson": {"_count": 2, "rosettes": {"_count": 1}, "": {"_count": 1}}, "several": {"_count": 4, "pints": {"_count": 1}, "live": {"_count": 1}, "Muggle": {"_count": 1}, "of": {"_count": 1}}, "sunburnt": {"_count": 1, "necks": {"_count": 1}}, "everybody": {"_count": 2, "else": {"_count": 1}, "for": {"_count": 1}}, "horror": {"_count": 3, "under": {"_count": 1}, "halfway": {"_count": 1}, "that": {"_count": 1}}, "dusty": {"_count": 1, "hangings": {"_count": 1}}, "green": {"_count": 2, "both": {"_count": 1}, "and": {"_count": 1}}, "grindylows": {"_count": 1, "": {"_count": 1}}, "myself": {"_count": 1, "wondering": {"_count": 1}}, "frightened": {"_count": 1, "eyes": {"_count": 1}}, "sweat": {"_count": 8, "now": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 5}, "his": {"_count": 1}}, "honors": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 19, "Black": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 7}, "to": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "looked": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "Pettigrew": {"_count": 1, "": {"_count": 1}}, "Mum": {"_count": 4, "and": {"_count": 4}}, "chocolate": {"_count": 1, "in": {"_count": 1}}, "itself": {"_count": 1, "for": {"_count": 1}}, "shocked": {"_count": 1, "curiosity": {"_count": 1}}, "either": {"_count": 3, "": {"_count": 1}, "fear": {"_count": 1}, "of": {"_count": 1}}, "security": {"_count": 1, "lest": {"_count": 1}}, "brains": {"_count": 1, "somebody": {"_count": 1}}, "amusement": {"_count": 1, "": {"_count": 1}}, "graying": {"_count": 1, "hair": {"_count": 1}}, "anxious": {"_count": 2, "inquiries": {"_count": 1}, "expressions": {"_count": 1}}, "Dark": {"_count": 3, "Magic": {"_count": 1}, "What": {"_count": 1}, "creatures": {"_count": 1}}, "ink": {"_count": 4, "wrote": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "from": {"_count": 1}}, "Wormtail": {"_count": 1, "only": {"_count": 1}}, "wizards": {"_count": 4, "but": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}}, "fruit": {"_count": 1, "and": {"_count": 1}}, "pleas": {"_count": 1, "for": {"_count": 1}}, "distaste": {"_count": 2, "": {"_count": 2}}, "sudden": {"_count": 3, "fear": {"_count": 1}, "tears": {"_count": 2}}, "Pig": {"_count": 1, "anyway": {"_count": 1}}, "immense": {"_count": 3, "difficulty": {"_count": 1}, "satisfaction": {"_count": 1}, "caution": {"_count": 1}}, "terrified": {"_count": 1, "eyes": {"_count": 1}}, "suspicion": {"_count": 1, "": {"_count": 1}}, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}, "flimsy": {"_count": 1, "shallow": {"_count": 1}}, "dinner": {"_count": 1, "": {"_count": 1}}, "unnatural": {"_count": 1, "powers": {"_count": 1}}, "Bill": {"_count": 3, "about": {"_count": 1}, "and": {"_count": 1}, "Fred": {"_count": 1}}, "Apparition": {"_count": 2, "": {"_count": 1}, "lessons": {"_count": 1}}, "cheaper": {"_count": 1, "tickets": {"_count": 1}}, "thighlength": {"_count": 1, "galoshes": {"_count": 1}}, "money": {"_count": 1, "said": {"_count": 1}}, "stubble": {"_count": 1, "and": {"_count": 1}}, "birdbath": {"_count": 1, "sundial": {"_count": 1}}, "bathroom": {"_count": 2, "and": {"_count": 2}}, "anticipation": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "among": {"_count": 1}}, "furtive": {"_count": 1, "looks": {"_count": 1}}, "dubious": {"_count": 1, "looks": {"_count": 1}}, "plant": {"_count": 1, "life": {"_count": 1}}, "exasperation": {"_count": 1, "": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "dancing": {"_count": 2, "shamrocks": {"_count": 1}, "bluewhite": {"_count": 1}}, "lions": {"_count": 1, "that": {"_count": 1}}, "Builtin": {"_count": 1, "AntiBurglar": {"_count": 1}}, "concentration": {"_count": 5, "as": {"_count": 2}, "": {"_count": 2}, "Uncle": {"_count": 1}}, "cups": {"_count": 2, "of": {"_count": 1}, "lockets": {"_count": 1}}, "Bludger": {"_count": 1, "or": {"_count": 1}}, "little": {"_count": 4, "success": {"_count": 1}, "or": {"_count": 1}, "waving": {"_count": 1}, "Doge": {"_count": 1}}, "Lynch": {"_count": 1, "now": {"_count": 1}}, "tremendous": {"_count": 1, "force": {"_count": 1}}, "blood": {"_count": 6, "from": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 3}, "Snape": {"_count": 1}}, "Fudge": {"_count": 5, "": {"_count": 2}, "Harry": {"_count": 1}, "on": {"_count": 1}, "who": {"_count": 1}}, "clapping": {"_count": 1, "": {"_count": 1}}, "broad": {"_count": 1, "grins": {"_count": 1}}, "Charlie": {"_count": 2, "and": {"_count": 1}, "his": {"_count": 1}}, "feet": {"_count": 1, "that": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "thick": {"_count": 8, "curly": {"_count": 1}, "yellow": {"_count": 1}, "planks": {"_count": 1}, "shining": {"_count": 1}, "straw": {"_count": 1}, "black": {"_count": 2}, "shiny": {"_count": 1}}, "screams": {"_count": 1, "": {"_count": 1}}, "proper": {"_count": 1, "garments": {"_count": 1}}, "Basil": {"_count": 1, "they": {"_count": 1}}, "Spellotape": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "ensuite": {"_count": 1, "Jacuzzi": {"_count": 1}}, "derisive": {"_count": 2, "laughter": {"_count": 2}}, "statues": {"_count": 1, "of": {"_count": 1}}, "chattering": {"_count": 1, "students": {"_count": 1}}, "mousy": {"_count": 1, "hair": {"_count": 1}}, "applause": {"_count": 3, "as": {"_count": 1}, "but": {"_count": 1}, "now": {"_count": 1}}, "varying": {"_count": 1, "degrees": {"_count": 1}}, "Whitby": {"_count": 1, "Kevin": {"_count": 1}}, "puddings": {"_count": 2, "": {"_count": 2}}, "fascination": {"_count": 1, "": {"_count": 1}}, "enthusiasm": {"_count": 5, "at": {"_count": 1}, "": {"_count": 3}, "by": {"_count": 1}}, "admiration": {"_count": 2, "": {"_count": 1}, "more": {"_count": 1}}, "legs": {"_count": 1, "sticking": {"_count": 1}}, "as": {"_count": 7, "much": {"_count": 5}, "you": {"_count": 1}, "little": {"_count": 1}}, "sprouts": {"_count": 1, "": {"_count": 1}}, "scarves": {"_count": 1, "and": {"_count": 1}}, "reference": {"_count": 1, "to": {"_count": 1}}, "possession": {"_count": 1, "of": {"_count": 1}}, "losing": {"_count": 1, "a": {"_count": 1}}, "old": {"_count": 2, "Snape": {"_count": 1}, "Bathilda": {"_count": 1}}, "curses": {"_count": 2, "said": {"_count": 1}, "over": {"_count": 1}}, "Moody": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "stumping": {"_count": 1}}, "entering": {"_count": 1, "the": {"_count": 1}}, "everything": {"_count": 5, "else": {"_count": 1}, "from": {"_count": 2}, "they": {"_count": 1}, "and": {"_count": 1}}, "transfiguring": {"_count": 1, "my": {"_count": 1}}, "apprehensive": {"_count": 1, "looks": {"_count": 1}}, "glum": {"_count": 1, "expressions": {"_count": 1}}, "expressions": {"_count": 2, "of": {"_count": 2}}, "jewels": {"_count": 1, "": {"_count": 1}}, "danger": {"_count": 1, "": {"_count": 1}}, "Madame": {"_count": 5, "Maxime": {"_count": 5}}, "Karkaroff": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "paintings": {"_count": 1, "of": {"_count": 1}}, "satisfaction": {"_count": 3, "Karkaroffs": {"_count": 1}, "": {"_count": 2}}, "mild": {"_count": 2, "concern": {"_count": 1}, "surprise": {"_count": 1}}, "whom": {"_count": 10, "Harry": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 6}, "was": {"_count": 1}, "she": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "apparent": {"_count": 2, "relish": {"_count": 1}, "ease": {"_count": 1}}, "anybody": {"_count": 2, "": {"_count": 1}, "very": {"_count": 1}}, "vertical": {"_count": 1, "pupils": {"_count": 1}}, "practicing": {"_count": 1, "for": {"_count": 1}}, "beaming": {"_count": 1, "winking": {"_count": 1}}, "relation": {"_count": 1, "to": {"_count": 1}}, "Bagman": {"_count": 1, "who": {"_count": 1}}, "pillows": {"_count": 1, "and": {"_count": 1}}, "torches": {"_count": 2, "and": {"_count": 2}}, "cheerful": {"_count": 1, "paintings": {"_count": 1}}, "mounds": {"_count": 1, "of": {"_count": 1}}, "horseshoes": {"_count": 1, "over": {"_count": 1}}, "dishes": {"_count": 1, "that": {"_count": 1}}, "misery": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "cream": {"_count": 1, "cakes": {"_count": 1}}, "examples": {"_count": 1, "the": {"_count": 1}}, "Cedric": {"_count": 6, "he": {"_count": 1}, "": {"_count": 1}, "Fleur": {"_count": 1}, "Diggory": {"_count": 1}, "when": {"_count": 1}, "last": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "Alicia": {"_count": 1, "Spinnet": {"_count": 1}}, "Eloise": {"_count": 1, "Midgen": {"_count": 1}}, "lyrics": {"_count": 1, "of": {"_count": 1}}, "lead": {"_count": 1, "in": {"_count": 1}}, "Cho": {"_count": 9, "Chang": {"_count": 1}, "anyway": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}, "Hogsmeade": {"_count": 1}, "since": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}}, "Seamus": {"_count": 2, "said": {"_count": 1}, "whom": {"_count": 1}}, "extreme": {"_count": 3, "caution": {"_count": 1}, "difficulty": {"_count": 2}}, "frost": {"_count": 1, "": {"_count": 1}}, "snow": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "wrapping": {"_count": 1, "paper": {"_count": 1}}, "attachments": {"_count": 1, "to": {"_count": 1}}, "narrowed": {"_count": 1, "eyes": {"_count": 1}}, "Viktor": {"_count": 5, "Krum": {"_count": 5}}, "Krum": {"_count": 5, "But": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "maybe": {"_count": 1}}, "giants": {"_count": 1, "": {"_count": 1}}, "closely": {"_count": 1, "cropped": {"_count": 1}}, "care": {"_count": 1, "come": {"_count": 1}}, "partgiants": {"_count": 1, "": {"_count": 1}}, "mead": {"_count": 1, "was": {"_count": 1}}, "Albus": {"_count": 2, "Dumbledore": {"_count": 1}, "": {"_count": 1}}, "clouds": {"_count": 1, "of": {"_count": 1}}, "apprehension": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 4, "much": {"_count": 2}, "we": {"_count": 1}, "many": {"_count": 1}}, "catching": {"_count": 2, "Dark": {"_count": 2}}, "Them": {"_count": 1, "Now": {"_count": 1}}, "Crookshanks": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "dull": {"_count": 2, "glimmering": {"_count": 1}, "thuds": {"_count": 1}}, "algae": {"_count": 1, "loomed": {"_count": 1}}, "ease": {"_count": 1, "watching": {"_count": 1}}, "Hermiones": {"_count": 2, "story": {"_count": 1}, "handwriting": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinsons": {"_count": 1}}, "personal": {"_count": 1, "loss": {"_count": 1}}, "complete": {"_count": 2, "honesty": {"_count": 1}, "confidence": {"_count": 1}}, "flashing": {"_count": 2, "gold": {"_count": 1}, "yellow": {"_count": 1}}, "boulders": {"_count": 1, "and": {"_count": 1}}, "houseelfs": {"_count": 1, "Ron": {"_count": 1}}, "house": {"_count": 1, "But": {"_count": 1}}, "violence": {"_count": 1, "and": {"_count": 1}}, "hie": {"_count": 1, "the": {"_count": 1}}, "unicorns": {"_count": 1, "was": {"_count": 1}}, "coins": {"_count": 1, "": {"_count": 1}}, "exhaustion": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "thin": {"_count": 1, "air": {"_count": 1}}, "beggars": {"_count": 1, "and": {"_count": 1}}, "ruddy": {"_count": 1, "Krum": {"_count": 1}}, "pleasure": {"_count": 5, "": {"_count": 3}, "he": {"_count": 1}, "at": {"_count": 1}}, "watery": {"_count": 1, "eyes": {"_count": 1}}, "Barty": {"_count": 2, "Crouchs": {"_count": 1}, "Crouch": {"_count": 1}}, "pictures": {"_count": 2, "of": {"_count": 2}}, "magnificent": {"_count": 1, "scarletandgold": {"_count": 1}}, "odd": {"_count": 3, "carvings": {"_count": 1}, "markings": {"_count": 1}, "symbols": {"_count": 1}}, "pronounced": {"_count": 1, "mistrust": {"_count": 1}}, "chained": {"_count": 1, "arms": {"_count": 1}}, "disappearances": {"_count": 1, "": {"_count": 1}}, "Crouchs": {"_count": 1, "son": {"_count": 1}}, "werewolves": {"_count": 1, "and": {"_count": 1}}, "snakes": {"_count": 3, "has": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "evildoers": {"_count": 1, "": {"_count": 1}}, "amazement": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "eightyfive": {"_count": 1, "points": {"_count": 1}}, "eighty": {"_count": 1, "points": {"_count": 1}}, "sparks": {"_count": 1, "now": {"_count": 1}}, "diamonds": {"_count": 1, "": {"_count": 1}}, "agony": {"_count": 1, "": {"_count": 1}}, "slits": {"_count": 3, "for": {"_count": 3}}, "rats": {"_count": 1, "do": {"_count": 1}}, "astonishment": {"_count": 1, "at": {"_count": 1}}, "extraordinary": {"_count": 2, "strength": {"_count": 1}, "brainpower": {"_count": 1}}, "acceptance": {"_count": 1, "can": {"_count": 1}}, "Winky": {"_count": 1, "at": {"_count": 1}}, "papers": {"_count": 1, "for": {"_count": 1}}, "disgust": {"_count": 2, "on": {"_count": 1}, "at": {"_count": 1}}, "Olympe": {"_count": 1, "Hagrid": {"_count": 1}}, "Cedrics": {"_count": 1, "death": {"_count": 1}}, "quiet": {"_count": 1, "triumph": {"_count": 1}}, "themselves": {"_count": 4, "more": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "Diggory": {"_count": 1, "and": {"_count": 1}}, "perfectly": {"_count": 1, "manicured": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "in": {"_count": 1, "addition": {"_count": 1}}, "Siriuss": {"_count": 1, "Rons": {"_count": 1}}, "restless": {"_count": 1, "energy": {"_count": 1}}, "magical": {"_count": 2, "light": {"_count": 1}, "creatures": {"_count": 1}}, "water": {"_count": 2, "at": {"_count": 2}}, "patches": {"_count": 1, "of": {"_count": 1}}, "reception": {"_count": 1, "": {"_count": 1}}, "rolls": {"_count": 1, "of": {"_count": 1}}, "knife": {"_count": 1, "to": {"_count": 1}}, "Ragnok": {"_count": 1, "Bill": {"_count": 1}}, "for": {"_count": 1, "nearly": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "things": {"_count": 3, "to": {"_count": 1}, "like": {"_count": 1}, "he": {"_count": 1}}, "olive": {"_count": 1, "green": {"_count": 1}}, "invisible": {"_count": 2, "bees": {"_count": 1}, "mallets": {"_count": 1}}, "doxy": {"_count": 1, "venom": {"_count": 1}}, "languages": {"_count": 1, "Harry": {"_count": 1}}, "sandwiches": {"_count": 1, "and": {"_count": 1}}, "Lucius": {"_count": 5, "Malfoy": {"_count": 3}, "": {"_count": 2}}, "heavylidded": {"_count": 1, "eyes": {"_count": 1}}, "imposing": {"_count": 1, "looking": {"_count": 1}}, "doors": {"_count": 2, "": {"_count": 2}}, "fluffy": {"_count": 1, "white": {"_count": 1}}, "iron": {"_count": 2, "bolts": {"_count": 1}, "nails": {"_count": 1}}, "quickly": {"_count": 1, "I": {"_count": 1}}, "clause": {"_count": 1, "seven": {"_count": 1}}, "today": {"_count": 1, "Dumbledore": {"_count": 1}}, "sleek": {"_count": 1, "blond": {"_count": 1}}, "stuff": {"_count": 3, "": {"_count": 1}, "thats": {"_count": 2}}, "Moodys": {"_count": 1, "traveling": {"_count": 1}}, "James": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "Mundungus": {"_count": 4, "": {"_count": 1}, "driving": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "antijinx": {"_count": 1, "varnish": {"_count": 1}}, "sobs": {"_count": 1, "": {"_count": 1}}, "departing": {"_count": 1, "students": {"_count": 1}}, "Lee": {"_count": 1, "": {"_count": 1}}, "Padma": {"_count": 1, "Patil": {"_count": 1}}, "empty": {"_count": 3, "white": {"_count": 1}, "eye": {"_count": 1}, "words": {"_count": 1}}, "footsteps": {"_count": 1, "as": {"_count": 1}}, "silvery": {"_count": 2, "stars": {"_count": 1}, "light": {"_count": 1}}, "short": {"_count": 4, "curly": {"_count": 1}, "black": {"_count": 1}, "gray": {"_count": 1}, "blonde": {"_count": 1}}, "dueling": {"_count": 1, "and": {"_count": 1}}, "fighting": {"_count": 2, "And": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "muttering": {"_count": 1, "and": {"_count": 1}}, "almost": {"_count": 3, "indecent": {"_count": 1}, "as": {"_count": 1}, "equal": {"_count": 1}}, "about": {"_count": 1, "YouKnowWho": {"_count": 1}}, "dignity": {"_count": 4, "": {"_count": 3}, "straightening": {"_count": 1}}, "droplets": {"_count": 2, "of": {"_count": 2}}, "George": {"_count": 2, "and": {"_count": 2}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "filled": {"_count": 1, "and": {"_count": 1}}, "strings": {"_count": 1, "of": {"_count": 1}}, "Basics": {"_count": 1, "for": {"_count": 1}}, "fibs": {"_count": 1, "about": {"_count": 1}}, "Umbridge": {"_count": 23, "seemed": {"_count": 1}, "at": {"_count": 2}, "anyway": {"_count": 1}, "": {"_count": 8}, "was": {"_count": 1}, "touching": {"_count": 1}, "today": {"_count": 1}, "said": {"_count": 1}, "were": {"_count": 1}, "again": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "clipboards": {"_count": 1, "closely": {"_count": 1}}, "electricity": {"_count": 1, "": {"_count": 1}}, "rubbish": {"_count": 1, "first": {"_count": 1}}, "moonstones": {"_count": 1, "have": {"_count": 1}}, "knobbly": {"_count": 1, "brown": {"_count": 1}}, "Puddlemere": {"_count": 1, "United": {"_count": 1}}, "drops": {"_count": 1, "of": {"_count": 1}}, "leathery": {"_count": 1, "black": {"_count": 1}}, "embarrassment": {"_count": 1, "": {"_count": 1}}, "trespass": {"_count": 1, "and": {"_count": 1}}, "how": {"_count": 2, "badly": {"_count": 1}, "many": {"_count": 1}}, "of": {"_count": 1, "answering": {"_count": 1}}, "Kreacher": {"_count": 3, "Im": {"_count": 1}, "": {"_count": 2}}, "ontheground": {"_count": 1, "feedback": {"_count": 1}}, "slightly": {"_count": 1, "trembling": {"_count": 1}}, "pointless": {"_count": 1, "interruptions": {"_count": 1}}, "grime": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "Zonkos": {"_count": 1, "merchandise": {"_count": 1}}, "ours": {"_count": 1, "": {"_count": 1}}, "indignation": {"_count": 3, "but": {"_count": 1}, "": {"_count": 2}}, "Educational": {"_count": 4, "Decree": {"_count": 4}}, "Gobstones": {"_count": 1, "Ron": {"_count": 1}}, "eyes": {"_count": 2, "too": {"_count": 1}, "that": {"_count": 1}}, "distinct": {"_count": 1, "pride": {"_count": 1}}, "somewhere": {"_count": 1, "": {"_count": 1}}, "hammering": {"_count": 1, "rain": {"_count": 1}}, "chamber": {"_count": 1, "pots": {"_count": 1}}, "wooden": {"_count": 1, "bookcases": {"_count": 1}}, "Michael": {"_count": 1, "Corner": {"_count": 1}}, "hard": {"_count": 2, "frosts": {"_count": 1}, "kicks": {"_count": 1}}, "massive": {"_count": 1, "forearms": {"_count": 1}}, "Katie": {"_count": 1, "": {"_count": 1}}, "fresh": {"_count": 1, "screams": {"_count": 1}}, "Ginger": {"_count": 1, "Newts": {"_count": 1}}, "imminent": {"_count": 1, "misery": {"_count": 1}}, "congealed": {"_count": 1, "blood": {"_count": 1}}, "information": {"_count": 4, "an": {"_count": 1}, "to": {"_count": 1}, "relating": {"_count": 1}, "when": {"_count": 1}}, "Conjunctivitus": {"_count": 1, "Curses": {"_count": 1}}, "awed": {"_count": 1, "respect": {"_count": 1}}, "earflaps": {"_count": 1, "": {"_count": 1}}, "delight": {"_count": 3, "and": {"_count": 1}, "Weasley": {"_count": 1}, "": {"_count": 1}}, "Argus": {"_count": 1, "Filch": {"_count": 1}}, "nargles": {"_count": 1, "": {"_count": 1}}, "rhythmic": {"_count": 1, "clinking": {"_count": 1}}, "breakfast": {"_count": 2, "": {"_count": 2}}, "plastic": {"_count": 1, "shopping": {"_count": 1}}, "catlike": {"_count": 1, "slits": {"_count": 1}}, "innocent": {"_count": 1, "clean": {"_count": 1}}, "cobwebs": {"_count": 3, "but": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "garlands": {"_count": 1, "of": {"_count": 1}}, "live": {"_count": 1, "fairies": {"_count": 1}}, "intensive": {"_count": 1, "remedial": {"_count": 1}}, "renewed": {"_count": 2, "vigor": {"_count": 1}, "sobs": {"_count": 1}}, "mutual": {"_count": 1, "dislike": {"_count": 1}}, "Tonks": {"_count": 5, "today": {"_count": 1}, "Harry": {"_count": 1}, "shes": {"_count": 1}, "Cresswell": {"_count": 1}, "again": {"_count": 1}}, "irongray": {"_count": 1, "hair": {"_count": 1}}, "runes": {"_count": 2, "and": {"_count": 1}, "around": {"_count": 1}}, "jealousy": {"_count": 1, "": {"_count": 1}}, "absurd": {"_count": 1, "ease": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "difficult": {"_count": 1, "questions": {"_count": 1}}, "frills": {"_count": 1, "or": {"_count": 1}}, "Rookwood": {"_count": 1, "hes": {"_count": 1}}, "memories": {"_count": 1, "that": {"_count": 1}}, "blueflamed": {"_count": 1, "candles": {"_count": 1}}, "Firenze": {"_count": 2, "that": {"_count": 1}, "whom": {"_count": 1}}, "awe": {"_count": 1, "apparently": {"_count": 1}}, "sarcasm": {"_count": 1, "why": {"_count": 1}}, "petty": {"_count": 1, "criminals": {"_count": 1}}, "polite": {"_count": 1, "interest": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "boiling": {"_count": 1, "water": {"_count": 1}}, "requests": {"_count": 2, "to": {"_count": 1}, "from": {"_count": 1}}, "untidy": {"_count": 2, "black": {"_count": 1}, "hair": {"_count": 1}}, "deliberate": {"_count": 2, "mistakes": {"_count": 1}, "force": {"_count": 1}}, "shoes": {"_count": 1, "and": {"_count": 1}}, "yet": {"_count": 1, "another": {"_count": 1}}, "Gringotts": {"_count": 1, "Wizarding": {"_count": 1}}, "Umbridges": {"_count": 1, "hard": {"_count": 1}}, "stupid": {"_count": 1, "dreams": {"_count": 1}}, "branches": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "Trelawney": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "giantesses": {"_count": 1, "what": {"_count": 1}}, "tightly": {"_count": 1, "curling": {"_count": 1}}, "sleep": {"_count": 1, "": {"_count": 1}}, "surprising": {"_count": 3, "speed": {"_count": 1}, "strength": {"_count": 1}, "vigor": {"_count": 1}}, "disappointment": {"_count": 1, "": {"_count": 1}}, "gusto": {"_count": 1, "having": {"_count": 1}}, "Anthony": {"_count": 1, "Goldstein": {"_count": 1}}, "complex": {"_count": 1, "spell": {"_count": 1}}, "\u2018eihwaz": {"_count": 1, "": {"_count": 1}}, "defiance": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 2, "Lovegood": {"_count": 1}, "": {"_count": 1}}, "giant": {"_count": 1, "flying": {"_count": 1}}, "raw": {"_count": 1, "meat": {"_count": 1}}, "Grawps": {"_count": 1, "blood": {"_count": 1}}, "similar": {"_count": 2, "expressions": {"_count": 1}, "mixtures": {"_count": 1}}, "dust": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "unfocused": {"_count": 1, "eyes": {"_count": 1}}, "hugely": {"_count": 1, "magnified": {"_count": 1}}, "Bellatrix": {"_count": 2, "": {"_count": 1}, "Lestrange": {"_count": 1}}, "shrewd": {"_count": 1, "narrow": {"_count": 1}}, "nodding": {"_count": 1, "at": {"_count": 1}}, "regard": {"_count": 3, "to": {"_count": 3}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "kindness": {"_count": 1, "and": {"_count": 1}}, "feelings": {"_count": 2, "as": {"_count": 2}}, "dismay": {"_count": 1, "and": {"_count": 1}}, "now": {"_count": 1, "anyway": {"_count": 1}}, "graver": {"_count": 1, "news": {"_count": 1}}, "er": {"_count": 1, "HeWhoMustNotBe": {"_count": 1}}, "HeWhoMust": {"_count": 1, "NotBeNamed": {"_count": 1}}, "Shacklebolt": {"_count": 1, "": {"_count": 1}}, "heavily": {"_count": 1, "lidded": {"_count": 1}}, "open": {"_count": 1, "arms": {"_count": 1}}, "despair": {"_count": 1, "": {"_count": 1}}, "close": {"_count": 1, "friends": {"_count": 1}}, "waistlength": {"_count": 2, "silver": {"_count": 1}, "hair": {"_count": 1}}, "complications": {"_count": 1, "": {"_count": 1}}, "houses": {"_count": 1, "": {"_count": 1}}, "Scrimgeour": {"_count": 1, "that": {"_count": 1}}, "decanters": {"_count": 1, "and": {"_count": 1}}, "Slughorn": {"_count": 10, "s": {"_count": 1}, "folded": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "since": {"_count": 1}, "that": {"_count": 1}, "was": {"_count": 1}, "talking": {"_count": 1}}, "Rufus": {"_count": 2, "Scrimgeour": {"_count": 2}}, "Slughorns": {"_count": 3, "old": {"_count": 1}, "arm": {"_count": 1}, "memory": {"_count": 1}}, "spark": {"_count": 1, "plugs": {"_count": 1}}, "Phlegm": {"_count": 2, "": {"_count": 1}, "hoping": {"_count": 1}}, "wine": {"_count": 1, "by": {"_count": 1}}, "other": {"_count": 3, "makers": {"_count": 1}, "people": {"_count": 1}, "magical": {"_count": 1}}, "prefects": {"_count": 1, "": {"_count": 1}}, "Fleur": {"_count": 3, "much": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}}, "additional": {"_count": 1, "security": {"_count": 1}}, "being": {"_count": 1, "a": {"_count": 1}}, "pins": {"_count": 1, "around": {"_count": 1}}, "dear": {"_count": 1, "Sirius": {"_count": 1}}, "customers": {"_count": 1, "Harry": {"_count": 1}}, "paste": {"_count": 1, "and": {"_count": 1}}, "merchandise": {"_count": 1, "not": {"_count": 1}}, "Borgin": {"_count": 1, "at": {"_count": 1}}, "She": {"_count": 1, "looked": {"_count": 1}}, "fluff": {"_count": 1, "and": {"_count": 1}}, "violet": {"_count": 1, "ribbon": {"_count": 1}}, "high": {"_count": 1, "cheekbones": {"_count": 1}}, "Bertie": {"_count": 1, "Higgs": {"_count": 1}}, "steam": {"_count": 1, "and": {"_count": 1}}, "floating": {"_count": 2, "candles": {"_count": 1}, "golden": {"_count": 1}}, "beads": {"_count": 1, "and": {"_count": 1}}, "Grawp": {"_count": 2, "said": {"_count": 1}, "ever": {"_count": 1}}, "frail": {"_count": 1, "wispy": {"_count": 1}}, "Charms": {"_count": 1, "Defense": {"_count": 1}}, "\u2018Exceeds": {"_count": 2, "Expectations": {"_count": 2}}, "Transfiguration": {"_count": 1, "anyway": {"_count": 1}}, "Potions": {"_count": 2, "": {"_count": 2}}, "particular": {"_count": 1, "enthusiasm": {"_count": 1}}, "potionmaking": {"_count": 1, "": {"_count": 1}}, "permission": {"_count": 1, "": {"_count": 1}}, "Bob": {"_count": 1, "Ogden": {"_count": 1}}, "dirt": {"_count": 1, "it": {"_count": 1}}, "hives": {"_count": 1, "all": {"_count": 1}}, "reinforcements": {"_count": 1, "within": {"_count": 1}}, "Parvati": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "suckers": {"_count": 1, "and": {"_count": 1}}, "Severus": {"_count": 1, "and": {"_count": 1}}, "Secrecy": {"_count": 1, "Sensors": {"_count": 1}}, "Arnold": {"_count": 1, "the": {"_count": 1}}, "nonverbal": {"_count": 1, "spells": {"_count": 1}}, "matching": {"_count": 2, "fur": {"_count": 1}, "high": {"_count": 1}}, "McLaggen": {"_count": 4, "and": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 2}}, "sleet": {"_count": 1, "": {"_count": 1}}, "McGonagall": {"_count": 1, "nevertheless": {"_count": 1}}, "lightfingered": {"_count": 1, "contempt": {"_count": 1}}, "Tom": {"_count": 2, "Riddle": {"_count": 2}}, "special": {"_count": 1, "abilities": {"_count": 1}}, "or": {"_count": 1, "what": {"_count": 1}}, "jeers": {"_count": 2, "and": {"_count": 2}}, "lucky": {"_count": 1, "potion": {"_count": 1}}, "wax": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "emerald": {"_count": 1, "crimson": {"_count": 1}}, "hitherto": {"_count": 1, "unsuspected": {"_count": 1}}, "enthusiastically": {"_count": 1, "": {"_count": 1}}, "Grey": {"_count": 1, "back": {"_count": 1}}, "unnecessary": {"_count": 2, "force": {"_count": 2}}, "mashed": {"_count": 1, "parsnip": {"_count": 1}}, "Dumbledores": {"_count": 2, "writing": {"_count": 1}, "mother": {"_count": 1}}, "Greyback": {"_count": 1, "and": {"_count": 1}}, "displays": {"_count": 1, "of": {"_count": 1}}, "swirling": {"_count": 1, "pearly": {"_count": 1}}, "hair": {"_count": 1, "and": {"_count": 1}}, "Lavender": {"_count": 4, "they": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "transparent": {"_count": 1, "eyelashes": {"_count": 1}}, "deliberation": {"_count": 2, "": {"_count": 2}}, "Parkinson": {"_count": 1, "and": {"_count": 1}}, "love": {"_count": 1, "potion": {"_count": 1}}, "professional": {"_count": 1, "interest": {"_count": 1}}, "drinks": {"_count": 1, "": {"_count": 1}}, "Sn": {"_count": 1, "Hagrid": {"_count": 1}}, "detailed": {"_count": 1, "training": {"_count": 1}}, "bitter": {"_count": 1, "resentment": {"_count": 1}}, "useful": {"_count": 1, "contacts": {"_count": 1}}, "unusual": {"_count": 1, "and": {"_count": 1}}, "objects": {"_count": 1, "that": {"_count": 1}}, "Morfin": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "Hepzibahs": {"_count": 1, "cup": {"_count": 1}}, "Advanced": {"_count": 1, "Potion": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "impersonating": {"_count": 1, "an": {"_count": 1}}, "confidence": {"_count": 1, "": {"_count": 1}}, "painful": {"_count": 2, "ease": {"_count": 1}, "restraint": {"_count": 1}}, "Horace": {"_count": 1, "Slughorn": {"_count": 1}}, "cries": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "success": {"_count": 1, "or": {"_count": 1}}, "increasingly": {"_count": 1, "evident": {"_count": 1}}, "towering": {"_count": 1, "walls": {"_count": 1}}, "boxes": {"_count": 1, "one": {"_count": 1}}, "age": {"_count": 2, "Ron": {"_count": 1}, "she": {"_count": 1}}, "reflected": {"_count": 1, "gold": {"_count": 1}}, "seawater": {"_count": 1, "": {"_count": 1}}, "barely": {"_count": 2, "a": {"_count": 1}, "enough": {"_count": 1}}, "clear": {"_count": 1, "water": {"_count": 1}}, "sunken": {"_count": 1, "sightless": {"_count": 1}}, "increasing": {"_count": 1, "desperation": {"_count": 1}}, "Rosmerta": {"_count": 1, "": {"_count": 1}}, "matted": {"_count": 1, "gray": {"_count": 1}}, "filthy": {"_count": 1, "matted": {"_count": 1}}, "hatred": {"_count": 1, "just": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "Filius": {"_count": 1, "that": {"_count": 1}}, "unwonted": {"_count": 1, "venom": {"_count": 1}}, "loud": {"_count": 2, "trumpeting": {"_count": 1}, "bangs": {"_count": 1}}, "life": {"_count": 3, "maybe": {"_count": 1}, "inches": {"_count": 1}, "and": {"_count": 1}}, "color": {"_count": 1, "her": {"_count": 1}}, "corrupting": {"_count": 1, "and": {"_count": 1}}, "Grindelwald": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "goats": {"_count": 1, "worse": {"_count": 1}}, "roars": {"_count": 1, "of": {"_count": 1}}, "looks": {"_count": 1, "of": {"_count": 1}}, "concepts": {"_count": 1, "too": {"_count": 1}}, "thoughts": {"_count": 1, "too": {"_count": 1}}, "dizzying": {"_count": 1, "rapidity": {"_count": 1}}, "impunity": {"_count": 1, "clearly": {"_count": 1}}, "displaying": {"_count": 1, "his": {"_count": 1}}, "Remus": {"_count": 1, "": {"_count": 1}}, "Kingsley": {"_count": 1, "again": {"_count": 1}}, "further": {"_count": 1, "Stunning": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "and": {"_count": 1}}, "firewhisky": {"_count": 1, "": {"_count": 1}}, "preparations": {"_count": 1, "for": {"_count": 1}}, "Listen": {"_count": 1, "": {"_count": 1}}, "spattergroit": {"_count": 4, "": {"_count": 1}, "which": {"_count": 1}, "Im": {"_count": 1}, "Ron": {"_count": 1}}, "touching": {"_count": 1, "it": {"_count": 1}}, "ill": {"_count": 2, "grace": {"_count": 1}, "disguised": {"_count": 1}}, "luggage": {"_count": 1, "and": {"_count": 1}}, "Monsieur": {"_count": 1, "Delacour": {"_count": 1}}, "Ronald": {"_count": 1, "": {"_count": 1}}, "Peruvian": {"_count": 1, "Instant": {"_count": 1}}, "shoulderlength": {"_count": 1, "white": {"_count": 1}}, "fans": {"_count": 1, "he": {"_count": 1}}, "angry": {"_count": 1, "color": {"_count": 1}}, "latenight": {"_count": 1, "revelers": {"_count": 1}}, "closed": {"_count": 1, "shops": {"_count": 1}}, "candle": {"_count": 1, "stubs": {"_count": 1}}, "Lilys": {"_count": 1, "letter": {"_count": 1}}, "Kreachers": {"_count": 1, "but": {"_count": 1}}, "hers": {"_count": 1, "and": {"_count": 1}}, "feeble": {"_count": 1, "bravado": {"_count": 1}}, "indecent": {"_count": 1, "haste": {"_count": 1}}, "exam": {"_count": 1, "review": {"_count": 1}}, "flyaway": {"_count": 1, "gray": {"_count": 1}}, "sick": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "stupid": {"_count": 1}}, "sickening": {"_count": 1, "cuteness": {"_count": 1}}, "unacceptable": {"_count": 1, "proMuggle": {"_count": 1}}, "elbowlength": {"_count": 1, "hair": {"_count": 1}}, "possibilities": {"_count": 1, "as": {"_count": 1}}, "Mafalda": {"_count": 1, "": {"_count": 1}}, "tall": {"_count": 1, "black": {"_count": 1}}, "Yaxley": {"_count": 1, "on": {"_count": 1}}, "unshed": {"_count": 1, "tears": {"_count": 1}}, "unease": {"_count": 1, "": {"_count": 1}}, "freshly": {"_count": 1, "cast": {"_count": 1}}, "visiting": {"_count": 1, "the": {"_count": 1}}, "Rons": {"_count": 2, "turn": {"_count": 1}, "reappearance": {"_count": 1}}, "plans": {"_count": 1, "while": {"_count": 1}}, "YouKnotuWho": {"_count": 1, "happy": {"_count": 1}}, "Griphook": {"_count": 8, "in": {"_count": 1}, "quickly": {"_count": 1}, "first": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}, "Harry": {"_count": 1}}, "Gornuk": {"_count": 1, "not": {"_count": 1}}, "malicious": {"_count": 2, "laughter": {"_count": 1}, "pleasure": {"_count": 1}}, "basilisk": {"_count": 1, "venom": {"_count": 1}}, "virtually": {"_count": 1, "nothing": {"_count": 1}}, "chill": {"_count": 1, "water": {"_count": 1}}, "The": {"_count": 3, "Tales": {"_count": 1}, "Tale": {"_count": 2}}, "Bathilda": {"_count": 1, "": {"_count": 1}}, "colored": {"_count": 1, "lights": {"_count": 1}}, "dazzling": {"_count": 1, "red": {"_count": 1}}, "resentment": {"_count": 1, "": {"_count": 1}}, "multicolored": {"_count": 1, "lights": {"_count": 1}}, "cataracts": {"_count": 1, "and": {"_count": 1}}, "cracked": {"_count": 1, "and": {"_count": 1}}, "logs": {"_count": 1, "for": {"_count": 1}}, "triumph": {"_count": 2, "in": {"_count": 1}, "we": {"_count": 1}}, "death": {"_count": 1, "didnt": {"_count": 1}}, "faint": {"_count": 1, "amusement": {"_count": 1}}, "unknown": {"_count": 1, "and": {"_count": 1}}, "Elphias": {"_count": 1, "Dogbreath": {"_count": 1}}, "Gellert": {"_count": 2, "Grindelwald": {"_count": 2}}, "leaves": {"_count": 1, "": {"_count": 1}}, "wonder": {"_count": 2, "not": {"_count": 1}, "of": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "Nagini": {"_count": 1, "to": {"_count": 1}}, "Voldemorts": {"_count": 1, "voice": {"_count": 1}}, "anguish": {"_count": 1, "": {"_count": 1}}, "quickening": {"_count": 1, "excitement": {"_count": 1}}, "awful": {"_count": 2, "sarcasm": {"_count": 1}, "coldness": {"_count": 1}}, "geraniums": {"_count": 1, "on": {"_count": 1}}, "berrysized": {"_count": 1, "red": {"_count": 1}}, "flowers": {"_count": 1, "insects": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "hopeless": {"_count": 1, "longing": {"_count": 1}}, "Arcus": {"_count": 1, "and": {"_count": 1}}, "Xenophilius": {"_count": 1, "was": {"_count": 1}}, "bowls": {"_count": 1, "": {"_count": 1}}, "squeals": {"_count": 1, "of": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "it": {"_count": 1}}, "dead": {"_count": 1, "people": {"_count": 1}}, "shampoo": {"_count": 1, "when": {"_count": 1}}, "arry": {"_count": 1, "Potter": {"_count": 1}}, "im": {"_count": 1, "maam": {"_count": 1}}, "prodigious": {"_count": 1, "skill": {"_count": 1}}, "Wormtails": {"_count": 1, "": {"_count": 1}}, "spades": {"_count": 1, "of": {"_count": 1}}, "shells": {"_count": 1, "and": {"_count": 1}}, "Gryffindors": {"_count": 1, "sword": {"_count": 1}}, "sadness": {"_count": 1, "to": {"_count": 1}}, "Travers": {"_count": 2, "marching": {"_count": 1}, "": {"_count": 1}}, "confusion": {"_count": 1, "": {"_count": 1}}, "seconds": {"_count": 1, "to": {"_count": 1}}, "drooping": {"_count": 1, "wings": {"_count": 1}}, "heat": {"_count": 1, "so": {"_count": 1}}, "piercing": {"_count": 1, "accuracy": {"_count": 1}}, "less": {"_count": 1, "certainty": {"_count": 1}}, "prods": {"_count": 1, "of": {"_count": 1}}, "\u2018the": {"_count": 1, "most": {"_count": 1}}, "yells": {"_count": 1, "of": {"_count": 1}}, "Gran": {"_count": 1, "": {"_count": 1}}, "Ravenclaw": {"_count": 2, "herself": {"_count": 1}, "was": {"_count": 1}}, "blueandbronze": {"_count": 1, "silks": {"_count": 1}}, "superb": {"_count": 1, "indifference": {"_count": 1}}, "echoing": {"_count": 1, "clangs": {"_count": 1}}, "murder": {"_count": 1, "in": {"_count": 1}}, "Aberforth": {"_count": 1, "and": {"_count": 1}}, "lights": {"_count": 1, "": {"_count": 1}}, "disheveled": {"_count": 1, "students": {"_count": 1}}, "evacuating": {"_count": 1, "students": {"_count": 1}}, "remorse": {"_count": 1, "": {"_count": 1}}, "explosive": {"_count": 1, "force": {"_count": 1}}, "Teddy": {"_count": 1, "at": {"_count": 1}}, "undisguised": {"_count": 1, "ferocity": {"_count": 1}}, "bloodlust": {"_count": 1, "under": {"_count": 1}}, "soot": {"_count": 1, "but": {"_count": 1}}, "figures": {"_count": 1, "screaming": {"_count": 1}}, "Dolohov": {"_count": 1, "Parvati": {"_count": 1}}, "Flitwick": {"_count": 1, "a": {"_count": 1}}, "whiplike": {"_count": 1, "slashing": {"_count": 1}}, "pieces": {"_count": 1, "of": {"_count": 1}}, "glad": {"_count": 1, "cries": {"_count": 1}}, "irony": {"_count": 1, "": {"_count": 1}}, "Lord": {"_count": 1, "Voldemorts": {"_count": 1}}, "chairs": {"_count": 1, "set": {"_count": 1}}, "yours": {"_count": 1, "": {"_count": 1}}, "power": {"_count": 1, "": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "A1": {"_count": 1, "Teddy": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}}, "such": {"_count": 272, "nonsense": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 14, "unusual": {"_count": 2}, "honor": {"_count": 1}, "unsatisfactory": {"_count": 1}, "early": {"_count": 1}, "important": {"_count": 2}, "undignified": {"_count": 1}, "idiot": {"_count": 1}, "inadequate": {"_count": 1}, "eventuality": {"_count": 1}, "enchantment": {"_count": 1}, "enclosed": {"_count": 1}, "enormous": {"_count": 1}}, "a": {"_count": 125, "piercing": {"_count": 1}, "bad": {"_count": 4}, "good": {"_count": 9}, "surprise": {"_count": 1}, "strange": {"_count": 1}, "bossy": {"_count": 1}, "thing": {"_count": 9}, "Christmas": {"_count": 1}, "biased": {"_count": 1}, "warm": {"_count": 1}, "crime": {"_count": 1}, "wonderful": {"_count": 1}, "place": {"_count": 3}, "scene": {"_count": 1}, "very": {"_count": 2}, "chamber": {"_count": 1}, "foolish": {"_count": 1}, "fright": {"_count": 1}, "foul": {"_count": 2}, "fury": {"_count": 1}, "flattering": {"_count": 1}, "pitch": {"_count": 2}, "pleasant": {"_count": 1}, "somber": {"_count": 1}, "pair": {"_count": 1}, "superb": {"_count": 1}, "waste": {"_count": 1}, "highly": {"_count": 1}, "Lily": {"_count": 1}, "strong": {"_count": 1}, "big": {"_count": 3}, "tight": {"_count": 1}, "Mudbloodlover": {"_count": 1}, "fuss": {"_count": 1}, "rigorous": {"_count": 1}, "telling": {"_count": 1}, "miserable": {"_count": 1}, "nice": {"_count": 1}, "shock": {"_count": 1}, "racket": {"_count": 2}, "useless": {"_count": 1}, "substandard": {"_count": 1}, "stupid": {"_count": 1}, "disgraceful": {"_count": 1}, "ridiculously": {"_count": 1}, "curious": {"_count": 1}, "sweetie": {"_count": 1}, "lamentable": {"_count": 1}, "powerful": {"_count": 1}, "killjoy": {"_count": 1}, "group": {"_count": 1}, "suspicious": {"_count": 1}, "brutal": {"_count": 1}, "pace": {"_count": 1}, "firm": {"_count": 1}, "way": {"_count": 1}, "young": {"_count": 2}, "person": {"_count": 1}, "showoff": {"_count": 1}, "welcome": {"_count": 1}, "short": {"_count": 1}, "money": {"_count": 1}, "Mrs": {"_count": 1}, "ridiculous": {"_count": 1}, "distance": {"_count": 1}, "glowing": {"_count": 1}, "long": {"_count": 1}, "natural": {"_count": 1}, "prat": {"_count": 1}, "distinctive": {"_count": 1}, "fiasco": {"_count": 1}, "master": {"_count": 1}, "touchy": {"_count": 1}, "pointless": {"_count": 1}, "form": {"_count": 1}, "hurry": {"_count": 1}, "spell": {"_count": 2}, "comfort": {"_count": 1}, "highranking": {"_count": 1}, "brilliant": {"_count": 1}, "large": {"_count": 1}, "deeply": {"_count": 1}, "glorious": {"_count": 1}, "mistake": {"_count": 1}, "dramatic": {"_count": 1}, "I": {"_count": 1}, "weakened": {"_count": 1}, "quiet": {"_count": 1}, "depth": {"_count": 1}, "lot": {"_count": 1}, "desirable": {"_count": 1}, "freaks": {"_count": 1}, "coward": {"_count": 1}, "fool": {"_count": 2}, "sound": {"_count": 1}}, "force": {"_count": 6, "that": {"_count": 5}, "it": {"_count": 1}}, "good": {"_count": 4, "results": {"_count": 2}, "tickets": {"_count": 2}}, "big": {"_count": 1, "news": {"_count": 1}}, "as": {"_count": 26, "If": {"_count": 1}, "Horseback": {"_count": 1}, "Predicting": {"_count": 1}, "he": {"_count": 5}, "this": {"_count": 2}, "Frank": {"_count": 1}, "the": {"_count": 4}, "I": {"_count": 1}, "Sneakoscopes": {"_count": 1}, "elephant": {"_count": 1}, "yourselves": {"_count": 1}, "Harry": {"_count": 1}, "Shield": {"_count": 1}, "yourself": {"_count": 1}, "myself": {"_count": 1}, "sending": {"_count": 1}, "Transfiguration": {"_count": 1}, "these": {"_count": 1}}, "heavy": {"_count": 1, "protection": {"_count": 1}}, "lies": {"_count": 1, "": {"_count": 1}}, "amazement": {"_count": 1, "Harry": {"_count": 1}}, "confusion": {"_count": 1, "that": {"_count": 1}}, "thing": {"_count": 3, "was": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}}, "speed": {"_count": 1, "that": {"_count": 1}}, "tactics": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 1, "animals": {"_count": 1}}, "danger": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 1, "and": {"_count": 1}}, "time": {"_count": 3, "as": {"_count": 3}}, "glory": {"_count": 1, "and": {"_count": 1}}, "smugness": {"_count": 1, "that": {"_count": 1}}, "petty": {"_count": 1, "restrictions": {"_count": 1}}, "creatures": {"_count": 1, "": {"_count": 1}}, "vicious": {"_count": 1, "creatures": {"_count": 1}}, "trouble": {"_count": 3, "that": {"_count": 1}, "": {"_count": 2}}, "prompt": {"_count": 1, "appearances": {"_count": 1}}, "forms": {"_count": 1, "appeared": {"_count": 1}}, "ties": {"_count": 1, "are": {"_count": 1}}, "things": {"_count": 9, "to": {"_count": 1}, "as": {"_count": 4}, "anyway": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "happen": {"_count": 1}}, "company": {"_count": 2, "oh": {"_count": 1}, "": {"_count": 1}}, "friends": {"_count": 1, "anywhere": {"_count": 1}}, "friendships": {"_count": 1, "fail": {"_count": 1}}, "happy": {"_count": 1, "little": {"_count": 1}}, "violence": {"_count": 1, "that": {"_count": 1}}, "sordid": {"_count": 1, "matters": {"_count": 1}}, "people": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "punishments": {"_count": 1, "sanctions": {"_count": 1}}, "like": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 4, "both": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "McGonagall": {"_count": 1}}, "obvious": {"_count": 1, "sincerity": {"_count": 1}}, "concentration": {"_count": 1, "that": {"_count": 1}}, "loathing": {"_count": 1, "in": {"_count": 1}}, "fear": {"_count": 1, "in": {"_count": 1}}, "disgrace": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "Parvati": {"_count": 1}}, "cramped": {"_count": 1, "conditions": {"_count": 1}}, "power": {"_count": 1, "that": {"_count": 1}}, "brutality": {"_count": 1, "are": {"_count": 1}}, "men": {"_count": 1, "are": {"_count": 1}}, "feeble": {"_count": 1, "taunts": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "quantities": {"_count": 1, "and": {"_count": 1}}, "atrocity": {"_count": 1, "": {"_count": 1}}, "short": {"_count": 1, "notice": {"_count": 1}}, "times": {"_count": 1, "": {"_count": 1}}, "breathtaking": {"_count": 1, "beauty": {"_count": 1}}, "caution": {"_count": 1, "almost": {"_count": 1}}, "extensive": {"_count": 1, "brain": {"_count": 1}}, "invitation": {"_count": 1, "arrived": {"_count": 1}}, "mundane": {"_count": 1, "things": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "artifacts": {"_count": 1, "have": {"_count": 1}}, "Dark": {"_count": 1, "Magic": {"_count": 1}}, "evening": {"_count": 1, "when": {"_count": 1}}, "orders": {"_count": 1, "as": {"_count": 1}}, "intensity": {"_count": 1, "that": {"_count": 1}}, "different": {"_count": 1, "boys": {"_count": 1}}, "strange": {"_count": 1, "things": {"_count": 1}}, "amusing": {"_count": 1, "stories": {"_count": 1}}, "belongs": {"_count": 1, "It": {"_count": 1}}, "cruelty": {"_count": 1, "was": {"_count": 1}}, "usurpers": {"_count": 1, "of": {"_count": 1}}, "long": {"_count": 1, "cloaks": {"_count": 1}}, "filth": {"_count": 1, "and": {"_count": 1}}, "tenderness": {"_count": 1, "in": {"_count": 1}}, "easily": {"_count": 1, "satisfied": {"_count": 1}}, "brilliant": {"_count": 1, "young": {"_count": 1}}, "was": {"_count": 1, "even": {"_count": 1}}, "rubbish": {"_count": 1, "": {"_count": 1}}, "simple": {"_count": 1, "measures": {"_count": 1}}, "passions": {"_count": 1, "in": {"_count": 1}}, "enthusiasm": {"_count": 1, "that": {"_count": 1}}, "disastrous": {"_count": 1, "consequences": {"_count": 1}}, "creations": {"_count": 1, "": {"_count": 1}}}, "nonsense": {"_count": 18, "": {"_count": 9, ".": {"_count": 5}, "?": {"_count": 1}, "!": {"_count": 3}}, "for": {"_count": 1, "eleven": {"_count": 1}}, "words": {"_count": 1, "under": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "about": {"_count": 1, "not": {"_count": 1}}, "as": {"_count": 1, "werewolf": {"_count": 1}}, "humans": {"_count": 1, "call": {"_count": 1}}, "shouted": {"_count": 1, "at": {"_count": 1}}, "if": {"_count": 1, "Dumbledore": {"_count": 1}}, "in": {"_count": 1, "all": {"_count": 1}}}, "was": {"_count": 15523, "the": {"_count": 446, "director": {"_count": 1}, "tabby": {"_count": 1}, "same": {"_count": 12}, "moment": {"_count": 6}, "first": {"_count": 22}, "crash": {"_count": 1}, "way": {"_count": 2}, "biggest": {"_count": 4}, "leader": {"_count": 2}, "proudest": {"_count": 1}, "grayish": {"_count": 1}, "most": {"_count": 18}, "only": {"_count": 51}, "name": {"_count": 3}, "pale": {"_count": 1}, "hall": {"_count": 1}, "feeling": {"_count": 1}, "caretaker": {"_count": 2}, "dearest": {"_count": 1}, "safest": {"_count": 2}, "last": {"_count": 13}, "sheer": {"_count": 1}, "unicorn": {"_count": 1}, "open": {"_count": 1}, "gentle": {"_count": 1}, "Devils": {"_count": 1}, "Mirror": {"_count": 1}, "one": {"_count": 32}, "headmaster": {"_count": 1}, "noise": {"_count": 1}, "best": {"_count": 14}, "good": {"_count": 2}, "fact": {"_count": 6}, "oldest": {"_count": 1}, "very": {"_count": 5}, "barrier": {"_count": 1}, "ony": {"_count": 1}, "size": {"_count": 4}, "school": {"_count": 1}, "dullest": {"_count": 1}, "gloomiest": {"_count": 1}, "guilty": {"_count": 1}, "figure": {"_count": 1}, "monster": {"_count": 1}, "point": {"_count": 7}, "thinnest": {"_count": 1}, "worst": {"_count": 5}, "little": {"_count": 1}, "reason": {"_count": 2}, "nosiest": {"_count": 1}, "headquarters": {"_count": 1}, "look": {"_count": 1}, "bit": {"_count": 1}, "Hogwarts": {"_count": 1}, "easy": {"_count": 1}, "least": {"_count": 2}, "popularity": {"_count": 1}, "scariest": {"_count": 1}, "Fidelius": {"_count": 1}, "Potters": {"_count": 1}, "sound": {"_count": 4}, "action": {"_count": 1}, "baby": {"_count": 1}, "bes": {"_count": 1}, "rest": {"_count": 1}, "matter": {"_count": 4}, "easiest": {"_count": 1}, "dog": {"_count": 1}, "shock": {"_count": 1}, "photograph": {"_count": 1}, "other": {"_count": 4}, "perfect": {"_count": 2}, "spy": {"_count": 1}, "Marauders": {"_count": 1}, "final": {"_count": 2}, "prospect": {"_count": 1}, "noisiest": {"_count": 1}, "identity": {"_count": 1}, "Riddles": {"_count": 1}, "time": {"_count": 1}, "snake": {"_count": 4}, "toffee": {"_count": 1}, "tiny": {"_count": 1}, "real": {"_count": 3}, "Bulgarian": {"_count": 1}, "sudden": {"_count": 1}, "elf": {"_count": 2}, "longest": {"_count": 1}, "sallowfaced": {"_count": 1}, "Slytherin": {"_count": 1}, "mans": {"_count": 1}, "terrible": {"_count": 1}, "sort": {"_count": 1}, "girl": {"_count": 1}, "cloak": {"_count": 1}, "wandmaker": {"_count": 1}, "night": {"_count": 1}, "Horntail": {"_count": 1}, "wors": {"_count": 1}, "ghost": {"_count": 1}, "custard": {"_count": 1}, "black": {"_count": 1}, "end": {"_count": 3}, "usual": {"_count": 2}, "unmistakable": {"_count": 2}, "egg": {"_count": 1}, "return": {"_count": 1}, "third": {"_count": 3}, "password": {"_count": 1}, "voice": {"_count": 1}, "characteristic": {"_count": 1}, "ablebodied": {"_count": 1}, "Quidditch": {"_count": 1}, "Disarming": {"_count": 1}, "meeting": {"_count": 1}, "f": {"_count": 1}, "right": {"_count": 5}, "cue": {"_count": 1}, "place": {"_count": 1}, "sight": {"_count": 1}, "image": {"_count": 1}, "second": {"_count": 2}, "light": {"_count": 1}, "thought": {"_count": 1}, "slow": {"_count": 1}, "witch": {"_count": 1}, "word": {"_count": 1}, "wizards": {"_count": 1}, "Gurg": {"_count": 1}, "handle": {"_count": 1}, "corridor": {"_count": 2}, "slight": {"_count": 1}, "subject": {"_count": 1}, "shadow": {"_count": 2}, "emeraldfilled": {"_count": 1}, "scratching": {"_count": 1}, "full": {"_count": 1}, "effect": {"_count": 1}, "curved": {"_count": 1}, "Statute": {"_count": 1}, "steady": {"_count": 1}, "onearmed": {"_count": 1}, "loss": {"_count": 1}, "greatgreatgranddaughter": {"_count": 1}, "governments": {"_count": 1}, "Death": {"_count": 1}, "satisfied": {"_count": 1}, "Mark": {"_count": 1}, "man": {"_count": 2}, "farthest": {"_count": 1}, "color": {"_count": 1}, "back": {"_count": 1}, "exact": {"_count": 1}, "counterjinx": {"_count": 1}, "roar": {"_count": 1}, "stupidest": {"_count": 1}, "whole": {"_count": 1}, "Fat": {"_count": 1}, "object": {"_count": 1}, "single": {"_count": 1}, "problem": {"_count": 1}, "werewolfs": {"_count": 1}, "luckiest": {"_count": 1}, "highest": {"_count": 1}, "ample": {"_count": 1}, "much": {"_count": 1}, "part": {"_count": 1}, "Heir": {"_count": 1}, "life": {"_count": 2}, "Potions": {"_count": 1}, "caption": {"_count": 1}, "HalfBlood": {"_count": 1}, "tapestry": {"_count": 1}, "spark": {"_count": 1}, "werewolf": {"_count": 1}, "awful": {"_count": 1}, "Defense": {"_count": 1}, "distant": {"_count": 1}, "giant": {"_count": 1}, "period": {"_count": 1}, "spectacular": {"_count": 1}, "conductor": {"_count": 1}, "trolls": {"_count": 1}, "cool": {"_count": 1}, "bedroom": {"_count": 1}, "nest": {"_count": 1}, "creation": {"_count": 1}, "thief": {"_count": 1}, "merryfaced": {"_count": 1}, "simple": {"_count": 1}, "title": {"_count": 1}, "balding": {"_count": 1}, "goldenhaired": {"_count": 1}, "boy": {"_count": 1}, "unknown": {"_count": 1}, "Christmas": {"_count": 1}, "doe": {"_count": 1}, "person": {"_count": 1}, "humblest": {"_count": 1}, "continued": {"_count": 1}, "Resurrection": {"_count": 1}, "truth": {"_count": 3}, "Hallow": {"_count": 1}, "blackthorn": {"_count": 1}, "Killing": {"_count": 1}, "merest": {"_count": 1}, "goblin": {"_count": 1}, "wand": {"_count": 1}, "entrance": {"_count": 1}, "Horcrux": {"_count": 1}, "lost": {"_count": 1}, "great": {"_count": 1}, "safe": {"_count": 1}, "thing": {"_count": 2}, "close": {"_count": 1}, "more": {"_count": 1}, "faintest": {"_count": 1}}, "a": {"_count": 1216, "big": {"_count": 9}, "tabby": {"_count": 1}, "few": {"_count": 14}, "very": {"_count": 49}, "baby": {"_count": 2}, "mystery": {"_count": 1}, "scrawny": {"_count": 1}, "horrible": {"_count": 6}, "letter": {"_count": 1}, "large": {"_count": 16}, "crash": {"_count": 3}, "pause": {"_count": 35}, "roaring": {"_count": 1}, "freak": {"_count": 1}, "flash": {"_count": 15}, "dream": {"_count": 2}, "kid": {"_count": 5}, "train": {"_count": 1}, "tiny": {"_count": 13}, "great": {"_count": 35}, "nasty": {"_count": 11}, "dragon": {"_count": 2}, "squat": {"_count": 2}, "loud": {"_count": 40}, "plump": {"_count": 1}, "foot": {"_count": 2}, "nice": {"_count": 3}, "knock": {"_count": 11}, "dud": {"_count": 1}, "vast": {"_count": 1}, "ceiling": {"_count": 1}, "lot": {"_count": 10}, "witch": {"_count": 7}, "pop": {"_count": 1}, "burst": {"_count": 2}, "sudden": {"_count": 11}, "cutting": {"_count": 1}, "clear": {"_count": 8}, "quaver": {"_count": 1}, "sort": {"_count": 3}, "while": {"_count": 3}, "way": {"_count": 4}, "relief": {"_count": 6}, "dull": {"_count": 3}, "small": {"_count": 14}, "roughly": {"_count": 1}, "fiftypence": {"_count": 1}, "suit": {"_count": 1}, "narrow": {"_count": 1}, "magnificent": {"_count": 2}, "happy": {"_count": 1}, "feeling": {"_count": 1}, "blazing": {"_count": 1}, "huge": {"_count": 5}, "scraping": {"_count": 2}, "fluffy": {"_count": 1}, "tap": {"_count": 1}, "mark": {"_count": 4}, "hitch": {"_count": 1}, "dog": {"_count": 2}, "bit": {"_count": 22}, "whole": {"_count": 1}, "horses": {"_count": 1}, "centaur": {"_count": 1}, "note": {"_count": 5}, "hooded": {"_count": 1}, "heavy": {"_count": 3}, "huddle": {"_count": 1}, "face": {"_count": 2}, "pair": {"_count": 3}, "table": {"_count": 1}, "sickening": {"_count": 1}, "shame": {"_count": 2}, "wizard": {"_count": 13}, "matter": {"_count": 5}, "thin": {"_count": 6}, "brilliant": {"_count": 4}, "close": {"_count": 1}, "silence": {"_count": 8}, "long": {"_count": 25}, "nightmare": {"_count": 2}, "jaunty": {"_count": 1}, "scrubbed": {"_count": 1}, "diversion": {"_count": 1}, "violent": {"_count": 2}, "loophole": {"_count": 1}, "thud": {"_count": 2}, "yell": {"_count": 2}, "subdued": {"_count": 2}, "popping": {"_count": 1}, "different": {"_count": 3}, "slight": {"_count": 4}, "roundfaced": {"_count": 1}, "rushing": {"_count": 2}, "murmur": {"_count": 8}, "scramble": {"_count": 1}, "mad": {"_count": 2}, "tall": {"_count": 2}, "clatter": {"_count": 4}, "good": {"_count": 18}, "voice": {"_count": 1}, "look": {"_count": 3}, "thick": {"_count": 1}, "place": {"_count": 2}, "flurry": {"_count": 2}, "serious": {"_count": 3}, "twisted": {"_count": 1}, "Seeker": {"_count": 1}, "muggy": {"_count": 1}, "new": {"_count": 5}, "bunch": {"_count": 2}, "clunk": {"_count": 1}, "speciality": {"_count": 1}, "pureblood": {"_count": 3}, "puzzled": {"_count": 2}, "dueling": {"_count": 1}, "dazzling": {"_count": 1}, "Disarming": {"_count": 1}, "mistake": {"_count": 9}, "shrewd": {"_count": 1}, "scene": {"_count": 1}, "spiral": {"_count": 1}, "decrepitlooking": {"_count": 1}, "glass": {"_count": 1}, "far": {"_count": 1}, "Slytherin": {"_count": 2}, "ccat": {"_count": 1}, "diary": {"_count": 1}, "friend": {"_count": 4}, "legend": {"_count": 1}, "lie": {"_count": 3}, "particularly": {"_count": 3}, "strange": {"_count": 1}, "solid": {"_count": 3}, "page": {"_count": 1}, "basilisk": {"_count": 1}, "boy": {"_count": 2}, "name": {"_count": 1}, "bang": {"_count": 12}, "scream": {"_count": 3}, "clue": {"_count": 1}, "highly": {"_count": 3}, "pity": {"_count": 1}, "wrapped": {"_count": 1}, "crunch": {"_count": 2}, "hat": {"_count": 1}, "bad": {"_count": 6}, "little": {"_count": 19}, "deafening": {"_count": 6}, "supporter": {"_count": 2}, "corner": {"_count": 1}, "definite": {"_count": 4}, "topsecurity": {"_count": 1}, "squeaking": {"_count": 1}, "soft": {"_count": 5}, "cloaked": {"_count": 1}, "hand": {"_count": 1}, "sternlooking": {"_count": 1}, "dementor": {"_count": 1}, "sea": {"_count": 2}, "delicious": {"_count": 1}, "roar": {"_count": 3}, "circular": {"_count": 2}, "tinkle": {"_count": 1}, "bowler": {"_count": 1}, "sheep": {"_count": 1}, "really": {"_count": 7}, "pewter": {"_count": 1}, "Muggle": {"_count": 6}, "moment": {"_count": 5}, "noise": {"_count": 3}, "bloodstained": {"_count": 1}, "woman": {"_count": 3}, "snap": {"_count": 1}, "burly": {"_count": 1}, "quiet": {"_count": 1}, "coward": {"_count": 3}, "knowitall": {"_count": 1}, "fifth": {"_count": 1}, "teammate": {"_count": 1}, "moments": {"_count": 11}, "buzz": {"_count": 1}, "map": {"_count": 2}, "sound": {"_count": 6}, "case": {"_count": 2}, "Firebolt": {"_count": 2}, "minute": {"_count": 2}, "first": {"_count": 1}, "stunned": {"_count": 1}, "cut": {"_count": 1}, "pounding": {"_count": 1}, "crystal": {"_count": 1}, "cat": {"_count": 1}, "joke": {"_count": 4}, "Bludger": {"_count": 1}, "rustle": {"_count": 3}, "rubyred": {"_count": 1}, "jumble": {"_count": 1}, "room": {"_count": 1}, "creak": {"_count": 1}, "blinding": {"_count": 3}, "ringing": {"_count": 1}, "certain": {"_count": 4}, "blast": {"_count": 1}, "steely": {"_count": 1}, "terrible": {"_count": 5}, "howl": {"_count": 1}, "mouth": {"_count": 1}, "possibility": {"_count": 1}, "model": {"_count": 1}, "swishing": {"_count": 1}, "bush": {"_count": 1}, "stag": {"_count": 3}, "low": {"_count": 2}, "rush": {"_count": 1}, "bald": {"_count": 1}, "gigantic": {"_count": 3}, "fully": {"_count": 1}, "simple": {"_count": 2}, "growing": {"_count": 1}, "sure": {"_count": 1}, "hastily": {"_count": 1}, "bright": {"_count": 3}, "whooshing": {"_count": 1}, "faint": {"_count": 2}, "short": {"_count": 8}, "sample": {"_count": 1}, "tent": {"_count": 2}, "stiff": {"_count": 1}, "bite": {"_count": 1}, "tense": {"_count": 1}, "colossal": {"_count": 2}, "human": {"_count": 1}, "mere": {"_count": 2}, "deeply": {"_count": 1}, "leaden": {"_count": 1}, "tad": {"_count": 1}, "funny": {"_count": 3}, "rumble": {"_count": 1}, "terrified": {"_count": 1}, "general": {"_count": 2}, "pleasant": {"_count": 1}, "cold": {"_count": 2}, "greater": {"_count": 1}, "smattering": {"_count": 3}, "much": {"_count": 5}, "beef": {"_count": 1}, "sharp": {"_count": 3}, "skilled": {"_count": 1}, "carriage": {"_count": 1}, "chilly": {"_count": 1}, "broom": {"_count": 1}, "downright": {"_count": 1}, "silveryblue": {"_count": 1}, "Death": {"_count": 8}, "state": {"_count": 1}, "pretty": {"_count": 2}, "year": {"_count": 1}, "Christmas": {"_count": 2}, "fiasco": {"_count": 1}, "real": {"_count": 3}, "giantess": {"_count": 2}, "half": {"_count": 1}, "teacher": {"_count": 2}, "Hogsmeade": {"_count": 1}, "single": {"_count": 1}, "clink": {"_count": 1}, "penetrating": {"_count": 1}, "treasure": {"_count": 1}, "week": {"_count": 1}, "beautiful": {"_count": 1}, "man": {"_count": 4}, "door": {"_count": 2}, "bleak": {"_count": 2}, "wise": {"_count": 1}, "spy": {"_count": 1}, "thickset": {"_count": 1}, "snake": {"_count": 2}, "third": {"_count": 1}, "finality": {"_count": 1}, "gap": {"_count": 2}, "deep": {"_count": 2}, "sphinx": {"_count": 1}, "BlastEnded": {"_count": 1}, "Portkey": {"_count": 2}, "hiss": {"_count": 1}, "split": {"_count": 1}, "head": {"_count": 2}, "womans": {"_count": 1}, "commotion": {"_count": 3}, "raving": {"_count": 1}, "means": {"_count": 1}, "person": {"_count": 1}, "beetle": {"_count": 1}, "teenage": {"_count": 1}, "skinny": {"_count": 1}, "hardened": {"_count": 1}, "couple": {"_count": 1}, "strained": {"_count": 2}, "regular": {"_count": 1}, "collective": {"_count": 2}, "groan": {"_count": 1}, "suitable": {"_count": 1}, "quantity": {"_count": 1}, "right": {"_count": 2}, "job": {"_count": 1}, "musical": {"_count": 1}, "tight": {"_count": 1}, "click": {"_count": 3}, "square": {"_count": 1}, "fountain": {"_count": 1}, "noblelooking": {"_count": 1}, "bogstandard": {"_count": 1}, "portly": {"_count": 1}, "picture": {"_count": 5}, "houseelf": {"_count": 2}, "fairly": {"_count": 1}, "moonless": {"_count": 1}, "better": {"_count": 1}, "round": {"_count": 1}, "liar": {"_count": 1}, "miserable": {"_count": 1}, "shimmering": {"_count": 1}, "tragic": {"_count": 1}, "collection": {"_count": 2}, "restless": {"_count": 1}, "deeper": {"_count": 1}, "fluke": {"_count": 1}, "laugh": {"_count": 3}, "grumpylooking": {"_count": 1}, "seriously": {"_count": 1}, "handsome": {"_count": 3}, "key": {"_count": 1}, "brief": {"_count": 2}, "peculiar": {"_count": 2}, "fervent": {"_count": 1}, "frown": {"_count": 1}, "gentle": {"_count": 1}, "tendency": {"_count": 1}, "uniform": {"_count": 1}, "creaking": {"_count": 1}, "raw": {"_count": 1}, "risk": {"_count": 1}, "next": {"_count": 1}, "member": {"_count": 1}, "load": {"_count": 2}, "shout": {"_count": 3}, "card": {"_count": 1}, "portrait": {"_count": 1}, "readymade": {"_count": 1}, "shadowy": {"_count": 1}, "fresh": {"_count": 2}, "cramped": {"_count": 1}, "closerun": {"_count": 1}, "plain": {"_count": 1}, "glowing": {"_count": 1}, "hero": {"_count": 1}, "nutter": {"_count": 1}, "curious": {"_count": 1}, "lump": {"_count": 1}, "shocked": {"_count": 2}, "boys": {"_count": 1}, "wait": {"_count": 1}, "kind": {"_count": 1}, "trick": {"_count": 1}, "meeting": {"_count": 2}, "shriek": {"_count": 1}, "Squib": {"_count": 4}, "piece": {"_count": 2}, "choice": {"_count": 1}, "throwaway": {"_count": 2}, "scribbled": {"_count": 2}, "special": {"_count": 1}, "fine": {"_count": 2}, "massive": {"_count": 2}, "scrum": {"_count": 1}, "wasp": {"_count": 1}, "shape": {"_count": 1}, "wonderful": {"_count": 1}, "conversation": {"_count": 1}, "motherly": {"_count": 1}, "wholly": {"_count": 1}, "highpitched": {"_count": 1}, "raised": {"_count": 1}, "towering": {"_count": 1}, "cool": {"_count": 1}, "brave": {"_count": 1}, "request": {"_count": 1}, "rim": {"_count": 1}, "living": {"_count": 2}, "flaw": {"_count": 1}, "quite": {"_count": 1}, "relaxed": {"_count": 1}, "hoax": {"_count": 1}, "limegreen": {"_count": 1}, "middleaged": {"_count": 1}, "a": {"_count": 3}, "fight": {"_count": 1}, "final": {"_count": 1}, "talented": {"_count": 1}, "clucking": {"_count": 1}, "whistle": {"_count": 1}, "disturbance": {"_count": 1}, "dab": {"_count": 1}, "scuffling": {"_count": 3}, "delicate": {"_count": 1}, "vein": {"_count": 1}, "dreadful": {"_count": 2}, "scroll": {"_count": 1}, "surprise": {"_count": 1}, "lifeanddeath": {"_count": 1}, "grim": {"_count": 1}, "command": {"_count": 1}, "wild": {"_count": 1}, "Parselmouth": {"_count": 1}, "deserted": {"_count": 1}, "vampire": {"_count": 1}, "gorilla": {"_count": 1}, "polite": {"_count": 1}, "wizards": {"_count": 1}, "garish": {"_count": 1}, "detailed": {"_count": 1}, "lucky": {"_count": 1}, "well": {"_count": 1}, "familiarlooking": {"_count": 1}, "refusal": {"_count": 1}, "taut": {"_count": 1}, "ripple": {"_count": 2}, "waste": {"_count": 2}, "whim": {"_count": 1}, "phenomenon": {"_count": 1}, "rather": {"_count": 2}, "cauldron": {"_count": 1}, "library": {"_count": 1}, "bloke": {"_count": 1}, "genius": {"_count": 1}, "foolish": {"_count": 1}, "treacherous": {"_count": 1}, "powerful": {"_count": 1}, "stupid": {"_count": 1}, "lamp": {"_count": 1}, "trap": {"_count": 1}, "potential": {"_count": 1}, "marble": {"_count": 1}, "wonder": {"_count": 1}, "white": {"_count": 1}, "twoinchlong": {"_count": 1}, "sickly": {"_count": 1}, "Ministry": {"_count": 1}, "light": {"_count": 1}, "mountainous": {"_count": 1}, "watch": {"_count": 1}, "saint": {"_count": 1}, "terrifying": {"_count": 1}, "Healer": {"_count": 1}, "spell": {"_count": 1}, "pompous": {"_count": 2}, "gasp": {"_count": 1}, "locket": {"_count": 2}, "cavern": {"_count": 1}, "boat": {"_count": 1}, "bbasin": {"_count": 1}, "goodlooking": {"_count": 1}, "daughter": {"_count": 1}, "rhythm": {"_count": 1}, "filing": {"_count": 1}, "young": {"_count": 1}, "Fred": {"_count": 1}, "rough": {"_count": 1}, "punishment": {"_count": 1}, "tenthousandGalleon": {"_count": 1}, "sticky": {"_count": 1}, "fake": {"_count": 1}, "statue": {"_count": 1}, "kissing": {"_count": 1}, "bowfronted": {"_count": 1}, "scarlet": {"_count": 1}, "blur": {"_count": 1}, "silver": {"_count": 2}, "sword": {"_count": 1}, "clang": {"_count": 1}, "Muggleborn": {"_count": 1}, "ball": {"_count": 1}, "phoenix": {"_count": 1}, "chapter": {"_count": 1}, "wooden": {"_count": 1}, "combative": {"_count": 1}, "volley": {"_count": 1}, "stone": {"_count": 1}, "child": {"_count": 1}, "shock": {"_count": 2}, "dark": {"_count": 1}, "Horcrux": {"_count": 1}, "treasured": {"_count": 1}, "blow": {"_count": 1}, "mournful": {"_count": 1}, "rumor": {"_count": 1}, "lonely": {"_count": 1}, "statement": {"_count": 1}, "muffled": {"_count": 1}, "triumphant": {"_count": 1}, "grinding": {"_count": 1}, "natural": {"_count": 2}, "wide": {"_count": 1}, "rap": {"_count": 1}, "genteel": {"_count": 1}, "fool": {"_count": 2}, "quarter": {"_count": 1}, "secret": {"_count": 1}, "gash": {"_count": 1}, "strong": {"_count": 1}, "crack": {"_count": 1}, "sad": {"_count": 1}, "journey": {"_count": 1}, "pitiful": {"_count": 1}, "palace": {"_count": 1}, "wand": {"_count": 1}, "Cloak": {"_count": 1}, "shade": {"_count": 1}, "doe": {"_count": 1}}, "thin": {"_count": 5, "and": {"_count": 3}, "very": {"_count": 1}, "dark": {"_count": 1}}, "no": {"_count": 240, "finer": {"_count": 1}, "point": {"_count": 8}, "good": {"_count": 15}, "reason": {"_count": 3}, "longer": {"_count": 28}, "escaping": {"_count": 1}, "stamp": {"_count": 1}, "television": {"_count": 1}, "ordinary": {"_count": 1}, "one": {"_count": 4}, "doubt": {"_count": 4}, "mistaking": {"_count": 7}, "answer": {"_count": 4}, "signature": {"_count": 1}, "sound": {"_count": 6}, "sign": {"_count": 23}, "alternative": {"_count": 1}, "more": {"_count": 5}, "stiff": {"_count": 1}, "easy": {"_count": 1}, "need": {"_count": 7}, "answering": {"_count": 3}, "wound": {"_count": 1}, "better": {"_count": 3}, "laughing": {"_count": 1}, "note": {"_count": 1}, "arguing": {"_count": 1}, "cure": {"_count": 1}, "dog": {"_count": 1}, "proof": {"_count": 1}, "stranger": {"_count": 1}, "other": {"_count": 4}, "Wronski": {"_count": 1}, "pity": {"_count": 2}, "applause": {"_count": 1}, "trace": {"_count": 3}, "reply": {"_count": 2}, "comparison": {"_count": 1}, "way": {"_count": 7}, "Christmas": {"_count": 1}, "food": {"_count": 1}, "response": {"_count": 1}, "Triwizard": {"_count": 1}, "time": {"_count": 8}, "use": {"_count": 3}, "wind": {"_count": 2}, "hope": {"_count": 4}, "benign": {"_count": 1}, "happiness": {"_count": 1}, "magic": {"_count": 1}, "AllEngland": {"_count": 1}, "keyhole": {"_count": 1}, "door": {"_count": 2}, "son": {"_count": 1}, "case": {"_count": 1}, "real": {"_count": 3}, "help": {"_count": 1}, "returning": {"_count": 1}, "nearer": {"_count": 1}, "less": {"_count": 2}, "go": {"_count": 1}, "snow": {"_count": 2}, "Quidditch": {"_count": 1}, "scar": {"_count": 1}, "bird": {"_count": 1}, "choice": {"_count": 1}, "escape": {"_count": 2}, "truth": {"_count": 1}, "hurricane": {"_count": 1}, "trouble": {"_count": 1}, "cheerful": {"_count": 1}, "getting": {"_count": 1}, "buzz": {"_count": 1}, "novice": {"_count": 1}, "beauty": {"_count": 1}, "denying": {"_count": 1}, "chance": {"_count": 1}, "mere": {"_count": 1}, "air": {"_count": 1}, "age": {"_count": 1}, "breeze": {"_count": 2}, "larger": {"_count": 1}, "health": {"_count": 1}, "waking": {"_count": 1}, "queue": {"_count": 1}, "fan": {"_count": 1}, "bustling": {"_count": 1}, "authors": {"_count": 1}, "pretending": {"_count": 1}, "map": {"_count": 1}, "change": {"_count": 1}, "stopping": {"_count": 1}, "means": {"_count": 2}, "braking": {"_count": 1}, "photograph": {"_count": 1}, "handle": {"_count": 1}, "telling": {"_count": 1}, "closer": {"_count": 1}, "sadness": {"_count": 1}, "blood": {"_count": 1}}, "that": {"_count": 149, "somebody": {"_count": 2}, "even": {"_count": 2}, "": {"_count": 9}, "funny": {"_count": 1}, "this": {"_count": 1}, "their": {"_count": 2}, "it": {"_count": 10}, "the": {"_count": 8}, "he": {"_count": 17}, "thing": {"_count": 3}, "Harry": {"_count": 3}, "all": {"_count": 2}, "writing": {"_count": 1}, "his": {"_count": 4}, "everyone": {"_count": 1}, "Scabbers": {"_count": 1}, "every": {"_count": 1}, "she": {"_count": 3}, "they": {"_count": 1}, "at": {"_count": 1}, "someone": {"_count": 3}, "Hedwig": {"_count": 1}, "once": {"_count": 1}, "quite": {"_count": 1}, "you": {"_count": 2}, "about": {"_count": 6}, "hed": {"_count": 1}, "however": {"_count": 1}, "Harrys": {"_count": 1}, "February": {"_count": 1}, "Krums": {"_count": 1}, "everybody": {"_count": 1}, "practicing": {"_count": 1}, "Bertha": {"_count": 1}, "of": {"_count": 4}, "Howler": {"_count": 1}, "Percy": {"_count": 1}, "living": {"_count": 1}, "none": {"_count": 1}, "dreadful": {"_count": 1}, "Cedric": {"_count": 1}, "thug": {"_count": 1}, "a": {"_count": 3}, "song": {"_count": 1}, "was": {"_count": 1}, "Gryffindor": {"_count": 1}, "Professor": {"_count": 1}, "there": {"_count": 2}, "with": {"_count": 2}, "Ron": {"_count": 1}, "Sirius": {"_count": 1}, "stood": {"_count": 1}, "when": {"_count": 2}, "my": {"_count": 1}, "Rufus": {"_count": 1}, "incidentally": {"_count": 1}, "necklace": {"_count": 1}, "theyd": {"_count": 1}, "Muggle": {"_count": 1}, "for": {"_count": 1}, "Hermione": {"_count": 2}, "girl": {"_count": 1}, "Fenrir": {"_count": 1}, "that": {"_count": 1}, "rather": {"_count": 1}, "horrible": {"_count": 1}, "mysterious": {"_count": 1}, "last": {"_count": 1}, "easy": {"_count": 1}, "supposed": {"_count": 1}, "Lupin": {"_count": 1}, "Voldemort": {"_count": 2}, "hidden": {"_count": 1}, "noise": {"_count": 1}, "Hermiones": {"_count": 1}, "Snape": {"_count": 1}, "wand": {"_count": 1}, "if": {"_count": 1}}, "Mrs": {"_count": 4, "Dursleys": {"_count": 1}, "Norris": {"_count": 1}, "Weasley": {"_count": 2}}, "possible": {"_count": 5, "to": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "information": {"_count": 1}}, "another": {"_count": 49, "good": {"_count": 1}, "long": {"_count": 1}, "board": {"_count": 1}, "figure": {"_count": 1}, "attack": {"_count": 2}, "loud": {"_count": 6}, "difficult": {"_count": 1}, "thud": {"_count": 2}, "note": {"_count": 1}, "tremendous": {"_count": 1}, "tinkle": {"_count": 1}, "crack": {"_count": 1}, "clap": {"_count": 1}, "flurry": {"_count": 1}, "nearfatal": {"_count": 1}, "blinding": {"_count": 1}, "piece": {"_count": 2}, "leprechaun": {"_count": 1}, "pop": {"_count": 2}, "empty": {"_count": 1}, "order": {"_count": 1}, "false": {"_count": 1}, "beautiful": {"_count": 1}, "witch": {"_count": 1}, "bad": {"_count": 1}, "clear": {"_count": 1}, "pause": {"_count": 5}, "flash": {"_count": 4}, "fine": {"_count": 1}, "Prince": {"_count": 1}, "yell": {"_count": 1}, "matter": {"_count": 1}, "noise": {"_count": 1}}, "nothing": {"_count": 70, "about": {"_count": 1}, "to": {"_count": 13}, "but": {"_count": 9}, "else": {"_count": 2}, "very": {"_count": 2}, "dear": {"_count": 1}, "": {"_count": 1}, "wrong": {"_count": 2}, "woolly": {"_count": 1}, "in": {"_count": 4}, "like": {"_count": 2}, "less": {"_count": 1}, "brave": {"_count": 1}, "they": {"_count": 2}, "personall": {"_count": 1}, "short": {"_count": 2}, "there": {"_count": 4}, "he": {"_count": 4}, "if": {"_count": 1}, "other": {"_count": 1}, "more": {"_count": 1}, "blurry": {"_count": 1}, "either": {"_count": 1}, "inside": {"_count": 1}, "blue": {"_count": 1}, "we": {"_count": 1}, "of": {"_count": 1}, "nothing": {"_count": 2}, "left": {"_count": 1}, "fancy": {"_count": 1}, "said": {"_count": 2}, "for": {"_count": 1}, "ever": {"_count": 1}}, "now": {"_count": 243, "having": {"_count": 2}, "reading": {"_count": 2}, "sitting": {"_count": 5}, "": {"_count": 3}, "so": {"_count": 10}, "trying": {"_count": 3}, "staring": {"_count": 4}, "looking": {"_count": 6}, "refusing": {"_count": 1}, "dangling": {"_count": 1}, "racing": {"_count": 1}, "eating": {"_count": 2}, "worse": {"_count": 1}, "smiling": {"_count": 1}, "remembering": {"_count": 1}, "gleaming": {"_count": 1}, "adding": {"_count": 1}, "trembling": {"_count": 1}, "dancing": {"_count": 2}, "smoldering": {"_count": 1}, "muttering": {"_count": 1}, "doing": {"_count": 1}, "hanging": {"_count": 1}, "only": {"_count": 1}, "lying": {"_count": 3}, "nearly": {"_count": 1}, "outside": {"_count": 1}, "at": {"_count": 1}, "swarming": {"_count": 1}, "wholeheartedly": {"_count": 1}, "fluttering": {"_count": 1}, "two": {"_count": 2}, "thumping": {"_count": 1}, "facing": {"_count": 2}, "very": {"_count": 2}, "shepherding": {"_count": 1}, "giving": {"_count": 2}, "patting": {"_count": 1}, "green": {"_count": 1}, "being": {"_count": 5}, "teaching": {"_count": 2}, "asking": {"_count": 1}, "poring": {"_count": 1}, "back": {"_count": 1}, "marking": {"_count": 1}, "the": {"_count": 2}, "rolling": {"_count": 1}, "or": {"_count": 2}, "whether": {"_count": 1}, "impossible": {"_count": 1}, "damp": {"_count": 1}, "covered": {"_count": 1}, "filling": {"_count": 2}, "circling": {"_count": 1}, "coming": {"_count": 1}, "unrolling": {"_count": 1}, "larger": {"_count": 1}, "halfway": {"_count": 1}, "slicked": {"_count": 1}, "standing": {"_count": 9}, "shaking": {"_count": 1}, "closed": {"_count": 1}, "lit": {"_count": 1}, "empty": {"_count": 2}, "splattered": {"_count": 1}, "mercifully": {"_count": 1}, "face": {"_count": 1}, "approaching": {"_count": 1}, "strewn": {"_count": 1}, "lacefree": {"_count": 1}, "watching": {"_count": 2}, "enumerating": {"_count": 1}, "wearing": {"_count": 2}, "moving": {"_count": 2}, "heartily": {"_count": 1}, "tying": {"_count": 1}, "talking": {"_count": 1}, "completely": {"_count": 1}, "burning": {"_count": 1}, "holding": {"_count": 4}, "conjuring": {"_count": 1}, "toward": {"_count": 1}, "pushing": {"_count": 1}, "and": {"_count": 1}, "overcoming": {"_count": 1}, "alert": {"_count": 1}, "scarlet": {"_count": 1}, "breathing": {"_count": 1}, "creaking": {"_count": 1}, "sweeping": {"_count": 1}, "sniffing": {"_count": 1}, "constricting": {"_count": 1}, "gazing": {"_count": 1}, "desperate": {"_count": 1}, "shining": {"_count": 2}, "chalk": {"_count": 1}, "past": {"_count": 1}, "crouching": {"_count": 1}, "almost": {"_count": 2}, "getting": {"_count": 1}, "congealing": {"_count": 1}, "opaque": {"_count": 1}, "zooming": {"_count": 1}, "limping": {"_count": 1}, "whistling": {"_count": 1}, "leaping": {"_count": 1}, "clearly": {"_count": 1}, "really": {"_count": 1}, "well": {"_count": 1}, "stroking": {"_count": 1}, "rummaging": {"_count": 2}, "on": {"_count": 2}, "quite": {"_count": 1}, "conducted": {"_count": 1}, "dreaming": {"_count": 1}, "drifting": {"_count": 1}, "in": {"_count": 2}, "doodling": {"_count": 1}, "tracing": {"_count": 1}, "pulling": {"_count": 1}, "ignoring": {"_count": 1}, "arranged": {"_count": 1}, "rippling": {"_count": 1}, "bending": {"_count": 1}, "panting": {"_count": 1}, "a": {"_count": 4}, "attempting": {"_count": 1}, "deserted": {"_count": 1}, "pumping": {"_count": 1}, "tottering": {"_count": 1}, "bearing": {"_count": 1}, "full": {"_count": 2}, "going": {"_count": 1}, "knocking": {"_count": 1}, "pointing": {"_count": 1}, "helping": {"_count": 1}, "advancing": {"_count": 1}, "cackling": {"_count": 1}, "dead": {"_count": 1}, "enduring": {"_count": 1}, "brandishing": {"_count": 1}, "gone": {"_count": 1}, "examining": {"_count": 1}, "feeding": {"_count": 1}, "digging": {"_count": 1}, "tugging": {"_count": 1}, "sucking": {"_count": 1}, "more": {"_count": 1}, "waving": {"_count": 1}, "decanting": {"_count": 1}, "elbowing": {"_count": 1}, "struggling": {"_count": 1}, "floating": {"_count": 1}, "definitely": {"_count": 1}, "shoveling": {"_count": 1}, "apparent": {"_count": 1}, "hidden": {"_count": 1}, "half": {"_count": 1}, "headmistress": {"_count": 1}, "hers": {"_count": 1}, "to": {"_count": 1}, "loosening": {"_count": 1}, "forbidden": {"_count": 1}, "attracting": {"_count": 1}, "sleeping": {"_count": 1}, "whispering": {"_count": 1}, "beating": {"_count": 1}, "too": {"_count": 1}, "speaking": {"_count": 1}, "tinged": {"_count": 1}, "packed": {"_count": 1}, "long": {"_count": 1}, "Harry": {"_count": 1}, "climbing": {"_count": 1}, "throwing": {"_count": 1}, "dueling": {"_count": 1}}, "on": {"_count": 98, "the": {"_count": 35}, "his": {"_count": 21}, "their": {"_count": 1}, "a": {"_count": 4}, "Deans": {"_count": 1}, "its": {"_count": 3}, "fire": {"_count": 5}, "Woods": {"_count": 1}, "top": {"_count": 2}, "to": {"_count": 1}, "show": {"_count": 1}, "all": {"_count": 2}, "casters": {"_count": 1}, "fast": {"_count": 1}, "end": {"_count": 2}, "Hermione": {"_count": 1}, "her": {"_count": 3}, "": {"_count": 1}, "form": {"_count": 1}, "speaking": {"_count": 2}, "display": {"_count": 1}, "my": {"_count": 2}, "best": {"_count": 1}, "our": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 1}, "platform": {"_count": 1}}, "hoping": {"_count": 13, "to": {"_count": 8}, "that": {"_count": 2}, "for": {"_count": 1}, "they": {"_count": 1}, "itd": {"_count": 1}}, "some": {"_count": 14, "stupid": {"_count": 1}, "pretty": {"_count": 1}, "catch": {"_count": 1}, "heavy": {"_count": 1}, "other": {"_count": 1}, "scattered": {"_count": 1}, "comfort": {"_count": 1}, "Dark": {"_count": 1}, "time": {"_count": 2}, "small": {"_count": 1}, "important": {"_count": 1}, "rather": {"_count": 1}, "of": {"_count": 1}}, "enraged": {"_count": 3, "to": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}}, "and": {"_count": 22, "wearing": {"_count": 1}, "he": {"_count": 3}, "kept": {"_count": 1}, "introduced": {"_count": 1}, "quite": {"_count": 1}, "know": {"_count": 1}, "what": {"_count": 3}, "after": {"_count": 1}, "It": {"_count": 1}, "how": {"_count": 1}, "am": {"_count": 1}, "rescued": {"_count": 1}, "I": {"_count": 1}, "is": {"_count": 1}, "speeding": {"_count": 1}, "sure": {"_count": 1}, "": {"_count": 1}, "Voldemort": {"_count": 1}}, "probably": {"_count": 21, "some": {"_count": 2}, "right": {"_count": 1}, "the": {"_count": 7}, "just": {"_count": 2}, "sent": {"_count": 1}, "better": {"_count": 2}, "in": {"_count": 1}, "asleep": {"_count": 1}, "trying": {"_count": 1}, "second": {"_count": 1}, "meant": {"_count": 1}, "starving": {"_count": 1}}, "in": {"_count": 211, "a": {"_count": 33}, "the": {"_count": 42}, "shock": {"_count": 2}, "here": {"_count": 2}, "he": {"_count": 1}, "it": {"_count": 3}, "": {"_count": 2}, "there": {"_count": 7}, "this": {"_count": 2}, "tears": {"_count": 2}, "his": {"_count": 9}, "said": {"_count": 1}, "that": {"_count": 1}, "any": {"_count": 4}, "Romania": {"_count": 1}, "Knockturn": {"_count": 1}, "such": {"_count": 7}, "no": {"_count": 4}, "daytime": {"_count": 1}, "danger": {"_count": 5}, "their": {"_count": 2}, "Diagon": {"_count": 1}, "Slytherin": {"_count": 1}, "trouble": {"_count": 3}, "my": {"_count": 4}, "total": {"_count": 1}, "Hogsmeade": {"_count": 2}, "league": {"_count": 1}, "Blacks": {"_count": 1}, "sight": {"_count": 2}, "more": {"_count": 1}, "fact": {"_count": 4}, "power": {"_count": 1}, "for": {"_count": 1}, "floods": {"_count": 1}, "store": {"_count": 1}, "semidarkness": {"_count": 1}, "Azkaban": {"_count": 4}, "winter": {"_count": 1}, "front": {"_count": 2}, "your": {"_count": 2}, "contact": {"_count": 2}, "Harrys": {"_count": 1}, "Dumbledores": {"_count": 2}, "with": {"_count": 1}, "Divination": {"_count": 1}, "excruciating": {"_count": 1}, "those": {"_count": 1}, "question": {"_count": 1}, "shadow": {"_count": 1}, "detention": {"_count": 2}, "attempting": {"_count": 1}, "half": {"_count": 2}, "hospital": {"_count": 1}, "darkness": {"_count": 1}, "St": {"_count": 2}, "charge": {"_count": 1}, "The": {"_count": 1}, "company": {"_count": 1}, "Hagrids": {"_count": 1}, "London": {"_count": 1}, "full": {"_count": 2}, "hiding": {"_count": 1}, "pain": {"_count": 1}, "as": {"_count": 1}, "bearing": {"_count": 1}, "desperation": {"_count": 1}, "runes": {"_count": 1}, "contrast": {"_count": 1}, "everything": {"_count": 1}, "jeopardy": {"_count": 1}, "Godrics": {"_count": 1}, "Bathildas": {"_count": 1}, "Madam": {"_count": 1}, "most": {"_count": 1}, "one": {"_count": 1}, "free": {"_count": 1}, "me": {"_count": 1}, "you": {"_count": 1}}, "being": {"_count": 64, "stupid": {"_count": 5}, "watched": {"_count": 3}, "made": {"_count": 1}, "perfectly": {"_count": 1}, "closely": {"_count": 1}, "given": {"_count": 1}, "deflated": {"_count": 1}, "taken": {"_count": 1}, "sucked": {"_count": 1}, "swept": {"_count": 1}, "told": {"_count": 1}, "dragged": {"_count": 2}, "provided": {"_count": 1}, "searched": {"_count": 1}, "pointed": {"_count": 1}, "mistreated": {"_count": 2}, "shaken": {"_count": 1}, "revived": {"_count": 1}, "supported": {"_count": 1}, "forced": {"_count": 1}, "wrenched": {"_count": 1}, "nosy": {"_count": 1}, "followed": {"_count": 1}, "controlled": {"_count": 1}, "tortured": {"_count": 2}, "asked": {"_count": 1}, "put": {"_count": 1}, "absolutely": {"_count": 1}, "paranoid": {"_count": 1}, "applied": {"_count": 1}, "punished": {"_count": 1}, "filled": {"_count": 1}, "pressed": {"_count": 1}, "reprimanded": {"_count": 1}, "used": {"_count": 2}, "plied": {"_count": 1}, "extremely": {"_count": 1}, "said": {"_count": 1}, "terrorized": {"_count": 1}, "quite": {"_count": 1}, "Xrayed": {"_count": 1}, "taught": {"_count": 1}, "remarkably": {"_count": 1}, "hurled": {"_count": 1}, "squeezed": {"_count": 1}, "compressed": {"_count": 1}, "accommodated": {"_count": 1}, "imprisoned": {"_count": 1}, "served": {"_count": 1}, "honest": {"_count": 1}, "strangled": {"_count": 1}, "sneered": {"_count": 1}, "fought": {"_count": 1}, "infuriating": {"_count": 1}}, "sure": {"_count": 122, "there": {"_count": 1}, "it": {"_count": 10}, "and": {"_count": 1}, "the": {"_count": 5}, "they": {"_count": 5}, "hed": {"_count": 3}, "Professor": {"_count": 1}, "would": {"_count": 3}, "theyd": {"_count": 1}, "she": {"_count": 5}, "nothing": {"_count": 1}, "no": {"_count": 1}, "he": {"_count": 21}, "that": {"_count": 30}, "Mr": {"_count": 1}, "Ron": {"_count": 1}, "Cedric": {"_count": 2}, "to": {"_count": 7}, "his": {"_count": 1}, "of": {"_count": 4}, "Fred": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 4}, "when": {"_count": 1}, "Hermiones": {"_count": 1}, "at": {"_count": 1}, "too": {"_count": 1}, "Hermione": {"_count": 1}, "judging": {"_count": 1}, "Draco": {"_count": 1}, "than": {"_count": 1}, "Riddle": {"_count": 1}, "Ginny": {"_count": 1}, "Id": {"_count": 1}, "you": {"_count": 1}}, "called": {"_count": 12, "Harry": {"_count": 2}, "he": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 3}, "The": {"_count": 1}, "Theodore": {"_count": 1}, "Tom": {"_count": 1}, "\u2018Prince": {"_count": 1}}, "still": {"_count": 362, "so": {"_count": 2}, "determined": {"_count": 1}, "there": {"_count": 8}, "staring": {"_count": 11}, "pink": {"_count": 2}, "snoozing": {"_count": 1}, "ignoring": {"_count": 1}, "rising": {"_count": 1}, "flat": {"_count": 1}, "standing": {"_count": 8}, "difficult": {"_count": 1}, "commentating": {"_count": 1}, "howling": {"_count": 1}, "happily": {"_count": 1}, "sure": {"_count": 1}, "ginside": {"_count": 1}, "safe": {"_count": 2}, "shaking": {"_count": 4}, "alive": {"_count": 5}, "playing": {"_count": 2}, "talking": {"_count": 2}, "very": {"_count": 7}, "terrifying": {"_count": 1}, "holding": {"_count": 5}, "right": {"_count": 1}, "trying": {"_count": 5}, "flailing": {"_count": 1}, "extremely": {"_count": 2}, "eyeing": {"_count": 1}, "awake": {"_count": 1}, "disapproving": {"_count": 1}, "angry": {"_count": 1}, "malfunctioning": {"_count": 1}, "lashing": {"_count": 1}, "in": {"_count": 14}, "putting": {"_count": 1}, "smiling": {"_count": 2}, "seeping": {"_count": 1}, "convinced": {"_count": 1}, "blazing": {"_count": 1}, "open": {"_count": 1}, "pointing": {"_count": 4}, "watching": {"_count": 7}, "at": {"_count": 6}, "squinting": {"_count": 1}, "an": {"_count": 1}, "clutching": {"_count": 7}, "sitting": {"_count": 2}, "looking": {"_count": 8}, "waiting": {"_count": 1}, "fast": {"_count": 1}, "wet": {"_count": 2}, "thinking": {"_count": 2}, "smoking": {"_count": 1}, "dark": {"_count": 2}, "numb": {"_count": 1}, "pounding": {"_count": 2}, "falling": {"_count": 2}, "fuming": {"_count": 2}, "on": {"_count": 6}, "glistening": {"_count": 1}, "overseeing": {"_count": 1}, "down": {"_count": 2}, "smarting": {"_count": 1}, "keeping": {"_count": 2}, "slightly": {"_count": 1}, "clawing": {"_count": 1}, "wolfish": {"_count": 1}, "really": {"_count": 1}, "pointed": {"_count": 2}, "purring": {"_count": 1}, "wheezing": {"_count": 2}, "making": {"_count": 2}, "drifting": {"_count": 1}, "lying": {"_count": 2}, "hooting": {"_count": 1}, "clutched": {"_count": 1}, "painful": {"_count": 2}, "stinging": {"_count": 1}, "a": {"_count": 4}, "glaring": {"_count": 2}, "glowering": {"_count": 3}, "out": {"_count": 1}, "ghostly": {"_count": 1}, "splattering": {"_count": 1}, "rocketing": {"_count": 1}, "wearing": {"_count": 5}, "squeaking": {"_count": 1}, "fighting": {"_count": 2}, "drumming": {"_count": 1}, "darting": {"_count": 1}, "gloomy": {"_count": 1}, "fixed": {"_count": 1}, "sufficiently": {"_count": 1}, "silent": {"_count": 1}, "goggling": {"_count": 1}, "gazing": {"_count": 4}, "having": {"_count": 3}, "feeling": {"_count": 2}, "following": {"_count": 1}, "quoting": {"_count": 1}, "up": {"_count": 2}, "thick": {"_count": 1}, "clear": {"_count": 1}, "time": {"_count": 2}, "dry": {"_count": 1}, "grinning": {"_count": 1}, "gabbling": {"_count": 1}, "sprawled": {"_count": 1}, "burning": {"_count": 6}, "hesitating": {"_count": 1}, "blurred": {"_count": 1}, "visible": {"_count": 1}, "his": {"_count": 1}, "dimly": {"_count": 1}, "nighttime": {"_count": 1}, "trembling": {"_count": 1}, "underage": {"_count": 1}, "blinking": {"_count": 1}, "glad": {"_count": 1}, "muttering": {"_count": 2}, "sleeping": {"_count": 1}, "no": {"_count": 3}, "absent": {"_count": 1}, "managing": {"_count": 2}, "full": {"_count": 1}, "cheerful": {"_count": 1}, "rather": {"_count": 1}, "sealed": {"_count": 1}, "not": {"_count": 2}, "circling": {"_count": 1}, "berating": {"_count": 1}, "being": {"_count": 1}, "struggling": {"_count": 1}, "sweating": {"_count": 1}, "wheyfaced": {"_count": 1}, "whitefaced": {"_count": 1}, "savoring": {"_count": 1}, "aching": {"_count": 1}, "as": {"_count": 1}, "sobbing": {"_count": 2}, "attempting": {"_count": 2}, "hammering": {"_count": 1}, "ogling": {"_count": 1}, "floating": {"_count": 1}, "operating": {"_count": 1}, "breathing": {"_count": 1}, "raised": {"_count": 2}, "upright": {"_count": 1}, "whimpering": {"_count": 1}, "warm": {"_count": 1}, "miraculously": {"_count": 1}, "fighding": {"_count": 1}, "unconscious": {"_count": 2}, "definitely": {"_count": 1}, "teaching": {"_count": 1}, "deep": {"_count": 1}, "resolutely": {"_count": 1}, "issuing": {"_count": 1}, "pregnant": {"_count": 1}, "reading": {"_count": 1}, "reasonably": {"_count": 1}, "wincing": {"_count": 1}, "writhing": {"_count": 1}, "ahead": {"_count": 1}, "tightly": {"_count": 1}, "answering": {"_count": 1}, "seething": {"_count": 1}, "the": {"_count": 2}, "too": {"_count": 2}, "working": {"_count": 1}, "wide": {"_count": 1}, "checking": {"_count": 1}, "spending": {"_count": 1}, "thundering": {"_count": 1}, "inexorably": {"_count": 1}, "listening": {"_count": 1}, "firing": {"_count": 1}, "echoing": {"_count": 1}, "crying": {"_count": 1}, "weeping": {"_count": 1}, "one": {"_count": 1}, "sulking": {"_count": 1}, "throbbing": {"_count": 1}, "sorting": {"_count": 1}, "folded": {"_count": 1}, "shadowy": {"_count": 1}, "with": {"_count": 1}, "dancing": {"_count": 1}, "immersed": {"_count": 1}, "closed": {"_count": 1}, "under": {"_count": 1}, "gray": {"_count": 2}, "deciphering": {"_count": 1}, "contemplating": {"_count": 1}, "imprinted": {"_count": 1}, "swinging": {"_count": 1}, "white": {"_count": 1}, "half": {"_count": 1}, "": {"_count": 1}, "saying": {"_count": 1}, "prickling": {"_count": 2}, "groping": {"_count": 1}, "rooted": {"_count": 1}, "drinking": {"_count": 1}, "Nagini": {"_count": 1}, "searing": {"_count": 1}, "carrying": {"_count": 1}, "worth": {"_count": 1}, "going": {"_count": 1}, "hot": {"_count": 1}, "tilted": {"_count": 1}, "attached": {"_count": 1}, "stowed": {"_count": 1}}, "wearing": {"_count": 109, "a": {"_count": 42}, "long": {"_count": 3}, "square": {"_count": 1}, "bits": {"_count": 1}, "Professor": {"_count": 1}, "what": {"_count": 4}, "": {"_count": 4}, "robes": {"_count": 2}, "his": {"_count": 11}, "off": {"_count": 3}, "an": {"_count": 6}, "scarlet": {"_count": 1}, "splendid": {"_count": 1}, "furs": {"_count": 1}, "magenta": {"_count": 3}, "acidgreen": {"_count": 1}, "the": {"_count": 4}, "dress": {"_count": 2}, "brandnew": {"_count": 1}, "bananayellow": {"_count": 1}, "swimming": {"_count": 1}, "ragged": {"_count": 1}, "one": {"_count": 1}, "in": {"_count": 1}, "red": {"_count": 1}, "at": {"_count": 1}, "pajamas": {"_count": 1}, "over": {"_count": 1}, "on": {"_count": 1}, "new": {"_count": 1}, "Marvolos": {"_count": 1}, "their": {"_count": 1}, "bright": {"_count": 1}, "round": {"_count": 1}, "around": {"_count": 1}, "away": {"_count": 1}}, "": {"_count": 138, ".": {"_count": 119}, "?": {"_count": 13}, "!": {"_count": 6}}, "rattled": {"_count": 1, "": {"_count": 1}}, "imagining": {"_count": 6, "things": {"_count": 2}, "it": {"_count": 3}, "sparks": {"_count": 1}}, "something": {"_count": 53, "to": {"_count": 2}, "very": {"_count": 2}, "you": {"_count": 1}, "that": {"_count": 2}, "hed": {"_count": 1}, "I": {"_count": 1}, "familiar": {"_count": 1}, "they": {"_count": 1}, "like": {"_count": 3}, "extremely": {"_count": 1}, "red": {"_count": 1}, "of": {"_count": 3}, "secretive": {"_count": 1}, "": {"_count": 4}, "it": {"_count": 1}, "else": {"_count": 1}, "about": {"_count": 4}, "comforting": {"_count": 1}, "in": {"_count": 4}, "large": {"_count": 1}, "reptilian": {"_count": 1}, "moving": {"_count": 1}, "accusatory": {"_count": 1}, "impressive": {"_count": 1}, "forced": {"_count": 1}, "hard": {"_count": 1}, "wrong": {"_count": 4}, "he": {"_count": 2}, "terribly": {"_count": 1}, "more": {"_count": 1}, "immensely": {"_count": 1}, "funny": {"_count": 1}, "strange": {"_count": 1}}, "staring": {"_count": 69, "down": {"_count": 4}, "transfixed": {"_count": 2}, "at": {"_count": 34}, "back": {"_count": 1}, "morosely": {"_count": 1}, "from": {"_count": 1}, "along": {"_count": 1}, "into": {"_count": 3}, "madly": {"_count": 1}, "out": {"_count": 3}, "over": {"_count": 2}, "terrified": {"_count": 1}, "determinedly": {"_count": 1}, "unblinkingly": {"_count": 1}, "": {"_count": 2}, "hard": {"_count": 1}, "for": {"_count": 1}, "stupidly": {"_count": 1}, "fixedly": {"_count": 1}, "up": {"_count": 4}, "apparently": {"_count": 1}, "blankly": {"_count": 1}, "straight": {"_count": 1}}, "showing": {"_count": 10, "no": {"_count": 1}, "in": {"_count": 1}, "signs": {"_count": 1}, "Borgin": {"_count": 1}, "Ogden": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}, "less": {"_count": 1}, "me": {"_count": 1}, "them": {"_count": 1}}, "sitting": {"_count": 113, "as": {"_count": 1}, "in": {"_count": 27}, "on": {"_count": 13}, "looking": {"_count": 1}, "behind": {"_count": 5}, "alone": {"_count": 5}, "there": {"_count": 5}, "a": {"_count": 1}, "close": {"_count": 1}, "up": {"_count": 4}, "at": {"_count": 10}, "with": {"_count": 12}, "beside": {"_count": 5}, "right": {"_count": 2}, "next": {"_count": 4}, "outside": {"_count": 1}, "crosslegged": {"_count": 2}, "bolt": {"_count": 2}, "so": {"_count": 1}, "down": {"_count": 1}, "not": {"_count": 1}, "under": {"_count": 1}, "about": {"_count": 1}, "opposite": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 1}, "well": {"_count": 1}, "openmouthed": {"_count": 1}, "watching": {"_count": 1}, "according": {"_count": 1}}, "nearly": {"_count": 26, "midnight": {"_count": 4}, "touching": {"_count": 1}, "lunchtime": {"_count": 1}, "there": {"_count": 1}, "pulled": {"_count": 1}, "thrown": {"_count": 2}, "three": {"_count": 1}, "one": {"_count": 2}, "empty": {"_count": 1}, "in": {"_count": 1}, "four": {"_count": 2}, "knocked": {"_count": 1}, "fifty": {"_count": 1}, "eight": {"_count": 1}, "crying": {"_count": 1}, "full": {"_count": 1}, "severed": {"_count": 1}, "dawn": {"_count": 1}, "deserted": {"_count": 1}, "time": {"_count": 1}}, "tall": {"_count": 11, "thin": {"_count": 2}, "and": {"_count": 7}, "": {"_count": 1}, "with": {"_count": 1}}, "very": {"_count": 128, "long": {"_count": 1}, "fat": {"_count": 1}, "fast": {"_count": 1}, "funny": {"_count": 1}, "cold": {"_count": 3}, "difficult": {"_count": 5}, "dark": {"_count": 2}, "relieved": {"_count": 2}, "pleased": {"_count": 3}, "noisy": {"_count": 1}, "hard": {"_count": 5}, "old": {"_count": 1}, "tasty": {"_count": 1}, "light": {"_count": 1}, "heavy": {"_count": 2}, "untidy": {"_count": 2}, "good": {"_count": 4}, "glad": {"_count": 3}, "wrong": {"_count": 1}, "obvious": {"_count": 1}, "small": {"_count": 2}, "subdued": {"_count": 2}, "white": {"_count": 5}, "amusing": {"_count": 1}, "like": {"_count": 1}, "red": {"_count": 2}, "uneventful": {"_count": 1}, "strict": {"_count": 1}, "thin": {"_count": 1}, "offputting": {"_count": 1}, "happy": {"_count": 1}, "grateful": {"_count": 1}, "slow": {"_count": 2}, "still": {"_count": 1}, "interested": {"_count": 4}, "lucky": {"_count": 2}, "clear": {"_count": 1}, "brave": {"_count": 1}, "popular": {"_count": 2}, "short": {"_count": 1}, "attentive": {"_count": 1}, "cozy": {"_count": 1}, "aware": {"_count": 1}, "fond": {"_count": 4}, "curious": {"_count": 1}, "out": {"_count": 1}, "pretty": {"_count": 2}, "surprised": {"_count": 2}, "skinny": {"_count": 1}, "large": {"_count": 2}, "reluctant": {"_count": 1}, "keen": {"_count": 1}, "eager": {"_count": 1}, "much": {"_count": 2}, "scared": {"_count": 1}, "painful": {"_count": 1}, "quick": {"_count": 1}, "uncomfortable": {"_count": 1}, "dull": {"_count": 1}, "slight": {"_count": 1}, "quiet": {"_count": 2}, "pale": {"_count": 1}, "dry": {"_count": 2}, "important": {"_count": 2}, "late": {"_count": 1}, "little": {"_count": 2}, "conscious": {"_count": 2}, "different": {"_count": 1}, "goodlooking": {"_count": 1}, "broad": {"_count": 1}, "agitated": {"_count": 2}, "hot": {"_count": 1}, "dusty": {"_count": 1}, "crowded": {"_count": 1}, "tall": {"_count": 1}, "guarded": {"_count": 1}, "well": {"_count": 1}, "worried": {"_count": 1}, "strange": {"_count": 1}, "very": {"_count": 1}, "kind": {"_count": 1}}, "Albus": {"_count": 3, "Dumbledore": {"_count": 2}, "doing": {"_count": 1}}, "unwelcome": {"_count": 1, "": {"_count": 1}}, "busy": {"_count": 11, "rummaging": {"_count": 1}, "writing": {"_count": 1}, "": {"_count": 1}, "building": {"_count": 1}, "checking": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 1}, "putting": {"_count": 1}, "watching": {"_count": 1}, "smearing": {"_count": 1}, "undoing": {"_count": 1}}, "looking": {"_count": 175, "for": {"_count": 14}, "at": {"_count": 46}, "gloomy": {"_count": 1}, "": {"_count": 3}, "very": {"_count": 5}, "over": {"_count": 3}, "so": {"_count": 1}, "up": {"_count": 9}, "stunned": {"_count": 1}, "forward": {"_count": 6}, "unusually": {"_count": 1}, "distinctly": {"_count": 2}, "triumphant": {"_count": 1}, "from": {"_count": 4}, "right": {"_count": 1}, "murderous": {"_count": 1}, "apprehensively": {"_count": 1}, "as": {"_count": 1}, "furious": {"_count": 1}, "frantic": {"_count": 1}, "pale": {"_count": 1}, "grimmer": {"_count": 1}, "happier": {"_count": 1}, "past": {"_count": 1}, "like": {"_count": 1}, "particularly": {"_count": 2}, "uncomfortable": {"_count": 3}, "thinner": {"_count": 1}, "disbelieving": {"_count": 1}, "downcast": {"_count": 1}, "immensely": {"_count": 1}, "out": {"_count": 2}, "around": {"_count": 7}, "angrier": {"_count": 1}, "curiously": {"_count": 1}, "not": {"_count": 1}, "more": {"_count": 2}, "askance": {"_count": 1}, "just": {"_count": 2}, "sulky": {"_count": 1}, "surly": {"_count": 1}, "strained": {"_count": 2}, "down": {"_count": 4}, "a": {"_count": 1}, "intensely": {"_count": 1}, "the": {"_count": 2}, "through": {"_count": 4}, "anxious": {"_count": 1}, "sideways": {"_count": 1}, "extremely": {"_count": 1}, "rather": {"_count": 5}, "scared": {"_count": 1}, "delighted": {"_count": 1}, "gaunt": {"_count": 1}, "disapprovingly": {"_count": 1}, "perplexed": {"_count": 1}, "mightily": {"_count": 1}, "both": {"_count": 1}, "marginally": {"_count": 1}, "embarrassed": {"_count": 1}, "relieved": {"_count": 1}, "slightly": {"_count": 1}, "into": {"_count": 1}, "toward": {"_count": 1}, "back": {"_count": 1}, "closely": {"_count": 1}, "eagerly": {"_count": 1}, "now": {"_count": 1}}, "happening": {"_count": 32, "down": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 6}, "within": {"_count": 1}, "he": {"_count": 2}, "in": {"_count": 3}, "inside": {"_count": 2}, "the": {"_count": 1}, "below": {"_count": 3}, "and": {"_count": 3}, "saw": {"_count": 1}, "last": {"_count": 1}, "to": {"_count": 3}, "through": {"_count": 1}, "at": {"_count": 2}, "Here": {"_count": 1}}, "smiling": {"_count": 23, "at": {"_count": 2}, "": {"_count": 8}, "the": {"_count": 1}, "in": {"_count": 1}, "again": {"_count": 1}, "around": {"_count": 1}, "It": {"_count": 1}, "toothily": {"_count": 1}, "broadly": {"_count": 1}, "expectantly": {"_count": 1}, "gently": {"_count": 1}, "slightly": {"_count": 1}, "and": {"_count": 1}, "wistfully": {"_count": 1}, "like": {"_count": 1}}, "drawn": {"_count": 6, "into": {"_count": 1}, "back": {"_count": 2}, "toward": {"_count": 1}, "right": {"_count": 1}, "to": {"_count": 1}}, "me": {"_count": 18, "": {"_count": 3}, "said": {"_count": 1}, "Harry": {"_count": 2}, "Professor": {"_count": 1}, "he": {"_count": 2}, "Id": {"_count": 2}, "what": {"_count": 1}, "thinking": {"_count": 1}, "that": {"_count": 2}, "who": {"_count": 1}, "Voldemort": {"_count": 1}, "they": {"_count": 1}}, "Dedalus": {"_count": 1, "Diggle": {"_count": 1}}, "going": {"_count": 297, "to": {"_count": 198}, "there": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 56}, "he": {"_count": 2}, "out": {"_count": 2}, "when": {"_count": 1}, "": {"_count": 7}, "frantic": {"_count": 1}, "in": {"_count": 3}, "and": {"_count": 4}, "berserk": {"_count": 1}, "but": {"_count": 1}, "Harry": {"_count": 1}, "into": {"_count": 1}, "back": {"_count": 2}, "about": {"_count": 1}, "it": {"_count": 1}, "straight": {"_count": 1}, "too": {"_count": 1}, "home": {"_count": 2}, "spare": {"_count": 1}, "hack": {"_count": 1}, "through": {"_count": 2}, "ter": {"_count": 1}, "skiing": {"_count": 1}, "nightmarishly": {"_count": 1}, "badly": {"_count": 1}, "the": {"_count": 1}}, "unsticking": {"_count": 1, "two": {"_count": 1}}, "frightened": {"_count": 3, "of": {"_count": 1}, "": {"_count": 1}, "enough": {"_count": 1}}, "most": {"_count": 19, "anxious": {"_count": 2}, "displeased": {"_count": 1}, "unlike": {"_count": 2}, "interested": {"_count": 1}, "unusual": {"_count": 2}, "afraid": {"_count": 1}, "illuminating": {"_count": 1}, "pleasantly": {"_count": 1}, "convenient": {"_count": 1}, "popular": {"_count": 1}, "unusually": {"_count": 1}, "surprising": {"_count": 1}, "mysterious": {"_count": 1}, "relieved": {"_count": 1}, "accomplished": {"_count": 1}, "likely": {"_count": 1}}, "plain": {"_count": 4, "that": {"_count": 4}}, "saying": {"_count": 95, "she": {"_count": 1}, "in": {"_count": 2}, "Gran": {"_count": 1}, "Forgive": {"_count": 1}, "": {"_count": 25}, "Chaser": {"_count": 1}, "loudly": {"_count": 3}, "gleefully": {"_count": 1}, "I": {"_count": 1}, "about": {"_count": 1}, "something": {"_count": 3}, "the": {"_count": 2}, "heatedly": {"_count": 1}, "before": {"_count": 2}, "tearfully": {"_count": 1}, "Okay": {"_count": 1}, "to": {"_count": 6}, "pompously": {"_count": 1}, "were": {"_count": 1}, "stubbornly": {"_count": 1}, "he": {"_count": 2}, "my": {"_count": 1}, "that": {"_count": 3}, "gloomily": {"_count": 1}, "but": {"_count": 2}, "was": {"_count": 1}, "and": {"_count": 3}, "Beauties": {"_count": 1}, "by": {"_count": 1}, "what": {"_count": 1}, "Quidditch": {"_count": 1}, "you": {"_count": 2}, "today": {"_count": 2}, "over": {"_count": 2}, "while": {"_count": 1}, "Potter": {"_count": 1}, "anxiously": {"_count": 1}, "however": {"_count": 1}, "happily": {"_count": 1}, "Look": {"_count": 1}, "courteously": {"_count": 1}, "toffee": {"_count": 1}, "anything": {"_count": 1}, "continued": {"_count": 1}, "exactly": {"_count": 1}, "as": {"_count": 2}, "\u2018the": {"_count": 1}, "a": {"_count": 1}, "or": {"_count": 1}}, "not": {"_count": 365, "going": {"_count": 19}, "a": {"_count": 20}, "someone": {"_count": 1}, "pleased": {"_count": 1}, "improved": {"_count": 1}, "all": {"_count": 1}, "dampened": {"_count": 1}, "imprisoned": {"_count": 1}, "born": {"_count": 1}, "as": {"_count": 5}, "said": {"_count": 1}, "we": {"_count": 1}, "crying": {"_count": 1}, "in": {"_count": 8}, "taken": {"_count": 2}, "following": {"_count": 1}, "because": {"_count": 1}, "very": {"_count": 4}, "brightly": {"_count": 1}, "impressed": {"_count": 1}, "the": {"_count": 22}, "alone": {"_count": 4}, "inviting": {"_count": 1}, "reflecting": {"_count": 1}, "there": {"_count": 6}, "among": {"_count": 1}, "your": {"_count": 1}, "immediately": {"_count": 2}, "handwritten": {"_count": 1}, "dressed": {"_count": 1}, "however": {"_count": 2}, "Harrys": {"_count": 1}, "talking": {"_count": 1}, "permanent": {"_count": 1}, "crouching": {"_count": 1}, "to": {"_count": 8}, "smooth": {"_count": 1}, "yet": {"_count": 5}, "here": {"_count": 4}, "at": {"_count": 9}, "watchful": {"_count": 1}, "perhaps": {"_count": 1}, "remotely": {"_count": 3}, "easy": {"_count": 2}, "definitely": {"_count": 1}, "looking": {"_count": 9}, "invisible": {"_count": 1}, "likely": {"_count": 2}, "sure": {"_count": 16}, "Mrs": {"_count": 1}, "": {"_count": 3}, "required": {"_count": 1}, "wearing": {"_count": 6}, "nearly": {"_count": 1}, "Rons": {"_count": 1}, "keeping": {"_count": 1}, "much": {"_count": 4}, "one": {"_count": 2}, "cheered": {"_count": 1}, "about": {"_count": 1}, "brisk": {"_count": 1}, "listening": {"_count": 5}, "ink": {"_count": 1}, "really": {"_count": 3}, "telling": {"_count": 1}, "bothering": {"_count": 1}, "inspecting": {"_count": 1}, "precisely": {"_count": 1}, "so": {"_count": 2}, "whispering": {"_count": 1}, "letting": {"_count": 1}, "teaching": {"_count": 1}, "due": {"_count": 1}, "helping": {"_count": 1}, "happening": {"_count": 1}, "around": {"_count": 1}, "sorry": {"_count": 4}, "capable": {"_count": 1}, "quite": {"_count": 4}, "aware": {"_count": 2}, "hidden": {"_count": 1}, "black": {"_count": 1}, "greeted": {"_count": 1}, "what": {"_count": 1}, "only": {"_count": 5}, "making": {"_count": 1}, "able": {"_count": 2}, "being": {"_count": 5}, "forcing": {"_count": 1}, "noticing": {"_count": 1}, "an": {"_count": 5}, "thinking": {"_count": 1}, "allowed": {"_count": 1}, "up": {"_count": 1}, "put": {"_count": 1}, "breaking": {"_count": 1}, "illegal": {"_count": 1}, "difficult": {"_count": 2}, "while": {"_count": 1}, "Sirius": {"_count": 1}, "daring": {"_count": 1}, "particularly": {"_count": 4}, "planning": {"_count": 1}, "convinced": {"_count": 2}, "prepared": {"_count": 1}, "taking": {"_count": 1}, "reappearing": {"_count": 1}, "I": {"_count": 2}, "eager": {"_count": 1}, "dead": {"_count": 1}, "ready": {"_count": 1}, "referring": {"_count": 1}, "usually": {"_count": 1}, "my": {"_count": 2}, "waiting": {"_count": 1}, "disappointed": {"_count": 1}, "too": {"_count": 1}, "like": {"_count": 2}, "entirely": {"_count": 5}, "quick": {"_count": 1}, "afraid": {"_count": 1}, "until": {"_count": 3}, "present": {"_count": 1}, "true": {"_count": 1}, "enjoyable": {"_count": 1}, "destined": {"_count": 1}, "left": {"_count": 1}, "famed": {"_count": 1}, "kissing": {"_count": 1}, "fooled": {"_count": 1}, "genial": {"_count": 1}, "Voldemorts": {"_count": 1}, "worried": {"_count": 1}, "strictly": {"_count": 2}, "surprised": {"_count": 2}, "schoolwork": {"_count": 1}, "unique": {"_count": 1}, "pretty": {"_count": 1}, "paying": {"_count": 2}, "feeling": {"_count": 1}, "scared": {"_count": 1}, "magic": {"_count": 1}, "obscured": {"_count": 1}, "unpleasant": {"_count": 1}, "missed": {"_count": 1}, "returning": {"_count": 1}, "built": {"_count": 1}, "tearful": {"_count": 1}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "moving": {"_count": 2}, "interested": {"_count": 1}, "after": {"_count": 2}, "even": {"_count": 3}, "James": {"_count": 1}, "decent": {"_count": 1}, "Dark": {"_count": 1}, "calling": {"_count": 2}, "deep": {"_count": 1}, "weed": {"_count": 1}, "pointing": {"_count": 1}, "seeking": {"_count": 1}, "visible": {"_count": 1}, "acting": {"_count": 1}, "heavy": {"_count": 1}, "supposed": {"_count": 2}, "unlike": {"_count": 1}, "encouraging": {"_count": 1}, "normal": {"_count": 1}, "but": {"_count": 1}, "perfectly": {"_count": 1}, "over": {"_count": 1}}, "true": {"_count": 16, "": {"_count": 1}, "that": {"_count": 6}, "Ill": {"_count": 1}, "Harry": {"_count": 1}, "half": {"_count": 1}, "but": {"_count": 2}, "though": {"_count": 1}, "because": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "choosing": {"_count": 4, "another": {"_count": 1}, "a": {"_count": 1}, "bowtruckles": {"_count": 1}, "her": {"_count": 1}}, "he": {"_count": 61, "who": {"_count": 4}, "going": {"_count": 4}, "free": {"_count": 1}, "hiding": {"_count": 1}, "had": {"_count": 4}, "tryin": {"_count": 1}, "in": {"_count": 1}, "tried": {"_count": 1}, "doing": {"_count": 7}, "flying": {"_count": 1}, "givin": {"_count": 1}, "to": {"_count": 2}, "added": {"_count": 1}, "": {"_count": 2}, "looking": {"_count": 1}, "best": {"_count": 1}, "was": {"_count": 3}, "supposed": {"_count": 4}, "still": {"_count": 1}, "Harry": {"_count": 1}, "felt": {"_count": 1}, "talking": {"_count": 1}, "not": {"_count": 1}, "too": {"_count": 1}, "now": {"_count": 1}, "faking": {"_count": 1}, "really": {"_count": 1}, "did": {"_count": 2}, "thought": {"_count": 2}, "chasin": {"_count": 1}, "stared": {"_count": 1}, "glimpsed": {"_count": 1}, "far": {"_count": 1}, "honest": {"_count": 1}, "faced": {"_count": 1}, "whom": {"_count": 1}, "must": {"_count": 1}}, "known": {"_count": 1, "as": {"_count": 1}}, "huge": {"_count": 2, "it": {"_count": 1}, "shiny": {"_count": 1}}, "almost": {"_count": 69, "twice": {"_count": 1}, "destroyed": {"_count": 1}, "exactly": {"_count": 1}, "hidden": {"_count": 1}, "bald": {"_count": 1}, "completely": {"_count": 3}, "there": {"_count": 1}, "as": {"_count": 9}, "speechless": {"_count": 1}, "skipping": {"_count": 1}, "impossible": {"_count": 2}, "dark": {"_count": 1}, "stolen": {"_count": 1}, "glad": {"_count": 2}, "blinding": {"_count": 1}, "empty": {"_count": 3}, "cheerful": {"_count": 1}, "a": {"_count": 3}, "sure": {"_count": 2}, "lifted": {"_count": 1}, "certainly": {"_count": 2}, "beside": {"_count": 1}, "more": {"_count": 1}, "deserted": {"_count": 1}, "panting": {"_count": 1}, "overwhelming": {"_count": 1}, "unnaturally": {"_count": 1}, "like": {"_count": 1}, "full": {"_count": 1}, "myself": {"_count": 1}, "guaranteed": {"_count": 1}, "always": {"_count": 1}, "the": {"_count": 1}, "upon": {"_count": 1}, "extinguished": {"_count": 1}, "pitying": {"_count": 1}, "incoherent": {"_count": 1}, "worth": {"_count": 1}, "nonexistent": {"_count": 1}, "at": {"_count": 2}, "midnight": {"_count": 1}, "tangible": {"_count": 1}, "nose": {"_count": 1}, "shocking": {"_count": 1}, "over": {"_count": 1}, "unbearable": {"_count": 1}, "cold": {"_count": 1}, "unrecognizable": {"_count": 1}, "dawn": {"_count": 1}, "nothing": {"_count": 1}}, "holding": {"_count": 67, "a": {"_count": 11}, "": {"_count": 8}, "more": {"_count": 1}, "her": {"_count": 7}, "his": {"_count": 6}, "up": {"_count": 5}, "exploded": {"_count": 1}, "out": {"_count": 4}, "the": {"_count": 4}, "Harry": {"_count": 1}, "herself": {"_count": 1}, "something": {"_count": 1}, "what": {"_count": 1}, "court": {"_count": 1}, "one": {"_count": 1}, "at": {"_count": 1}, "tight": {"_count": 1}, "in": {"_count": 2}, "Katie": {"_count": 1}, "hands": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "two": {"_count": 1}, "of": {"_count": 1}, "Gryffindors": {"_count": 1}, "aside": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 1}}, "flyin": {"_count": 1, "over": {"_count": 1}}, "gone": {"_count": 40, "": {"_count": 22}, "when": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 1}, "as": {"_count": 2}, "in": {"_count": 2}, "and": {"_count": 2}, "from": {"_count": 2}, "Harry": {"_count": 1}, "forever": {"_count": 2}, "did": {"_count": 1}, "Someone": {"_count": 1}, "but": {"_count": 1}}, "special": {"_count": 3, "not": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}}, "famous": {"_count": 4, "not": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 2}}, "awake": {"_count": 11, "and": {"_count": 2}, "he": {"_count": 1}, "Madam": {"_count": 1}, "to": {"_count": 1}, "pressed": {"_count": 1}, "but": {"_count": 2}, "": {"_count": 2}, "half": {"_count": 1}}, "her": {"_count": 13, "shrill": {"_count": 1}, "Ickle": {"_count": 1}, "way": {"_count": 1}, "custom": {"_count": 1}, "own": {"_count": 1}, "cousin": {"_count": 1}, "fault": {"_count": 1}, "long": {"_count": 2}, "favorite": {"_count": 2}, "house": {"_count": 1}, "": {"_count": 1}}, "back": {"_count": 39, "outside": {"_count": 1}, "and": {"_count": 3}, "but": {"_count": 1}, "to": {"_count": 4}, "in": {"_count": 11}, "with": {"_count": 1}, "at": {"_count": 4}, "": {"_count": 8}, "where": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}, "bearing": {"_count": 1}, "within": {"_count": 1}, "there": {"_count": 1}}, "used": {"_count": 12, "to": {"_count": 10}, "at": {"_count": 1}, "by": {"_count": 1}}, "full": {"_count": 64, "of": {"_count": 59}, "ever": {"_count": 1}, "enough": {"_count": 1}, "moon": {"_count": 1}, "to": {"_count": 2}}, "where": {"_count": 8, "he": {"_count": 4}, "the": {"_count": 2}, "Kreacher": {"_count": 1}, "Voldemort": {"_count": 1}}, "dressed": {"_count": 5, "he": {"_count": 1}, "in": {"_count": 2}, "tonight": {"_count": 1}, "from": {"_count": 1}}, "Harry": {"_count": 17, "but": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}, "suggesting": {"_count": 1}, "began": {"_count": 2}, "thought": {"_count": 1}, "reflected": {"_count": 1}, "than": {"_count": 1}, "knew": {"_count": 2}, "remembered": {"_count": 1}, "tied": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}}, "because": {"_count": 18, "all": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 8}, "they": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "of": {"_count": 1}, "Voldemort": {"_count": 1}, "Uncle": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "about": {"_count": 84, "four": {"_count": 1}, "to": {"_count": 61}, "a": {"_count": 1}, "two": {"_count": 1}, "as": {"_count": 3}, "poor": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 4}, "sixteen": {"_count": 1}, "time": {"_count": 1}, "last": {"_count": 1}, "in": {"_count": 1}, "trolls": {"_count": 1}, "three": {"_count": 1}, "you": {"_count": 1}, "twothirds": {"_count": 1}, "five": {"_count": 1}}, "shaped": {"_count": 3, "like": {"_count": 3}}, "how": {"_count": 10, "he": {"_count": 2}, "little": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "much": {"_count": 2}, "life": {"_count": 1}, "to": {"_count": 1}, "Voldemort": {"_count": 1}}, "turning": {"_count": 17, "over": {"_count": 3}, "red": {"_count": 1}, "back": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 2}, "on": {"_count": 1}, "paler": {"_count": 1}, "pink": {"_count": 1}, "his": {"_count": 1}, "steadily": {"_count": 1}, "blue": {"_count": 2}, "the": {"_count": 1}, "indigo": {"_count": 1}}, "frying": {"_count": 1, "eggs": {"_count": 1}}, "difficult": {"_count": 14, "as": {"_count": 2}, "not": {"_count": 1}, "She": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 8}, "at": {"_count": 1}}, "counting": {"_count": 5, "his": {"_count": 1}, "bricks": {"_count": 1}, "down": {"_count": 1}, "on": {"_count": 1}, "too": {"_count": 1}}, "ripping": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 24, "behind": {"_count": 1}, "to": {"_count": 4}, "alone": {"_count": 2}, "of": {"_count": 3}, "Harry": {"_count": 1}, "": {"_count": 1}, "staring": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}, "standing": {"_count": 1}, "partnerless": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 2}, "well": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}}, "usually": {"_count": 9, "the": {"_count": 1}, "a": {"_count": 3}, "reserved": {"_count": 1}, "last": {"_count": 1}, "going": {"_count": 1}, "to": {"_count": 1}, "enough": {"_count": 1}}, "strange": {"_count": 4, "things": {"_count": 1}, "to": {"_count": 1}, "not": {"_count": 1}, "and": {"_count": 1}}, "just": {"_count": 117, "no": {"_count": 2}, "a": {"_count": 10}, "an": {"_count": 3}, "taking": {"_count": 2}, "wondering": {"_count": 6}, "telling": {"_count": 7}, "as": {"_count": 14}, "helping": {"_count": 1}, "passing": {"_count": 4}, "reading": {"_count": 2}, "talking": {"_count": 2}, "thinking": {"_count": 3}, "saying": {"_count": 4}, "sitting": {"_count": 1}, "mounting": {"_count": 1}, "putting": {"_count": 1}, "three": {"_count": 1}, "about": {"_count": 3}, "one": {"_count": 2}, "persuading": {"_count": 1}, "showing": {"_count": 2}, "considering": {"_count": 1}, "making": {"_count": 3}, "in": {"_count": 2}, "piling": {"_count": 1}, "you": {"_count": 2}, "stupid": {"_count": 1}, "another": {"_count": 2}, "walking": {"_count": 1}, "having": {"_count": 1}, "past": {"_count": 1}, "looking": {"_count": 1}, "Father": {"_count": 1}, "surprised": {"_count": 1}, "like": {"_count": 2}, "up": {"_count": 1}, "the": {"_count": 2}, "after": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 4}, "her": {"_count": 1}, "just": {"_count": 1}, "starting": {"_count": 1}, "concerned": {"_count": 1}, "this": {"_count": 1}, "ready": {"_count": 1}, "behind": {"_count": 2}, "practicing": {"_count": 1}, "trying": {"_count": 1}, "because": {"_count": 1}, "raving": {"_count": 1}, "able": {"_count": 2}, "visible": {"_count": 1}, "possible": {"_count": 1}}, "already": {"_count": 73, "laughed": {"_count": 1}, "wearing": {"_count": 3}, "there": {"_count": 2}, "ajar": {"_count": 1}, "someone": {"_count": 2}, "full": {"_count": 1}, "dressed": {"_count": 1}, "dead": {"_count": 2}, "using": {"_count": 2}, "expelled": {"_count": 1}, "advising": {"_count": 1}, "assembled": {"_count": 1}, "ripping": {"_count": 2}, "waiting": {"_count": 1}, "sinking": {"_count": 2}, "floating": {"_count": 1}, "counting": {"_count": 1}, "under": {"_count": 1}, "a": {"_count": 3}, "surrounded": {"_count": 1}, "shining": {"_count": 1}, "going": {"_count": 1}, "hurrying": {"_count": 3}, "zooming": {"_count": 1}, "outside": {"_count": 1}, "at": {"_count": 2}, "pulling": {"_count": 2}, "unbuckling": {"_count": 1}, "heading": {"_count": 1}, "ten": {"_count": 1}, "talking": {"_count": 1}, "planned": {"_count": 1}, "striding": {"_count": 1}, "scribbling": {"_count": 1}, "tearing": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 2}, "bored": {"_count": 1}, "rummaging": {"_count": 1}, "scrambling": {"_count": 1}, "sliding": {"_count": 1}, "queuing": {"_count": 1}, "sold": {"_count": 1}, "highly": {"_count": 1}, "half": {"_count": 1}, "cutting": {"_count": 1}, "packing": {"_count": 1}, "hurtling": {"_count": 1}, "sitting": {"_count": 1}, "immortal": {"_count": 1}, "tottering": {"_count": 1}, "dark": {"_count": 1}, "punishing": {"_count": 1}, "busy": {"_count": 1}, "running": {"_count": 1}, "fifty": {"_count": 1}, "falling": {"_count": 1}, "dying": {"_count": 1}}, "jump": {"_count": 1, "behind": {"_count": 1}}, "even": {"_count": 24, "worth": {"_count": 1}, "brave": {"_count": 1}, "more": {"_count": 3}, "larger": {"_count": 1}, "now": {"_count": 1}, "the": {"_count": 1}, "louder": {"_count": 1}, "born": {"_count": 1}, "I": {"_count": 1}, "glad": {"_count": 2}, "a": {"_count": 2}, "further": {"_count": 1}, "less": {"_count": 3}, "nearer": {"_count": 1}, "worse": {"_count": 1}, "hanging": {"_count": 1}, "paler": {"_count": 1}, "carved": {"_count": 1}}, "motorcycles": {"_count": 1, "": {"_count": 1}}, "flying": {"_count": 13, "": {"_count": 1}, "straight": {"_count": 1}, "at": {"_count": 1}, "very": {"_count": 1}, "from": {"_count": 1}, "around": {"_count": 1}, "again": {"_count": 2}, "across": {"_count": 1}, "forward": {"_count": 1}, "like": {"_count": 1}, "flying": {"_count": 1}, "alongside": {"_count": 1}}, "only": {"_count": 96, "a": {"_count": 17}, "one": {"_count": 13}, "when": {"_count": 4}, "then": {"_count": 2}, "their": {"_count": 1}, "in": {"_count": 1}, "half": {"_count": 2}, "staying": {"_count": 1}, "as": {"_count": 1}, "halflistening": {"_count": 1}, "safe": {"_count": 1}, "Fangs": {"_count": 1}, "the": {"_count": 5}, "too": {"_count": 1}, "filling": {"_count": 1}, "because": {"_count": 1}, "trying": {"_count": 1}, "Crookshanks": {"_count": 2}, "thin": {"_count": 1}, "by": {"_count": 1}, "just": {"_count": 2}, "eighteen": {"_count": 1}, "imposed": {"_count": 1}, "saying": {"_count": 2}, "to": {"_count": 2}, "wearing": {"_count": 1}, "joking": {"_count": 2}, "teasing": {"_count": 1}, "vaguely": {"_count": 1}, "after": {"_count": 1}, "prevented": {"_count": 1}, "pretending": {"_count": 2}, "Who": {"_count": 1}, "your": {"_count": 1}, "temporary": {"_count": 1}, "five": {"_count": 2}, "drinking": {"_count": 1}, "ten": {"_count": 1}, "": {"_count": 1}, "fifteen": {"_count": 1}, "wondering": {"_count": 1}, "returning": {"_count": 1}, "Dumbledores": {"_count": 1}, "ever": {"_count": 2}, "seven": {"_count": 1}, "with": {"_count": 1}, "now": {"_count": 2}, "two": {"_count": 1}, "Ron": {"_count": 1}, "people": {"_count": 1}}, "one": {"_count": 51, "thing": {"_count": 3}, "": {"_count": 3}, "of": {"_count": 32}, "that": {"_count": 2}, "oclock": {"_count": 1}, "o": {"_count": 1}, "person": {"_count": 1}, "step": {"_count": 1}, "Chaser": {"_count": 1}, "second": {"_count": 1}, "in": {"_count": 1}, "emotion": {"_count": 1}, "place": {"_count": 2}, "half": {"_count": 1}}, "his": {"_count": 64, "talking": {"_count": 1}, "destiny": {"_count": 1}, "big": {"_count": 1}, "only": {"_count": 3}, "entering": {"_count": 1}, "duty": {"_count": 1}, "own": {"_count": 2}, "Nimbus": {"_count": 1}, "birthday": {"_count": 2}, "worst": {"_count": 1}, "father": {"_count": 3}, "mother": {"_count": 2}, "chance": {"_count": 1}, "finger": {"_count": 1}, "body": {"_count": 1}, "godfather": {"_count": 1}, "fault": {"_count": 6}, "Omnioculars": {"_count": 1}, "least": {"_count": 1}, "prowess": {"_count": 1}, "way": {"_count": 1}, "face": {"_count": 1}, "mothers": {"_count": 1}, "pride": {"_count": 1}, "job": {"_count": 1}, "last": {"_count": 1}, "one": {"_count": 2}, "turn": {"_count": 1}, "memory": {"_count": 1}, "imagination": {"_count": 1}, "belief": {"_count": 1}, "government": {"_count": 1}, "after": {"_count": 1}, "man": {"_count": 1}, "left": {"_count": 1}, "favorite": {"_count": 3}, "handsome": {"_count": 1}, "first": {"_count": 2}, "discomfort": {"_count": 1}, "son": {"_count": 1}, "now": {"_count": 2}, "beloved": {"_count": 1}, "constant": {"_count": 1}, "ancestry": {"_count": 1}, "end": {"_count": 1}, "courage": {"_count": 1}, "attempt": {"_count": 1}}, "crowded": {"_count": 4, "with": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "careful": {"_count": 7, "to": {"_count": 4}, "not": {"_count": 2}, "never": {"_count": 1}}, "allowed": {"_count": 6, "to": {"_count": 3}, "out": {"_count": 2}, "ter": {"_count": 1}}, "all": {"_count": 73, "too": {"_count": 1}, "living": {"_count": 1}, "part": {"_count": 2}, "delicious": {"_count": 1}, "Muggle": {"_count": 1}, "very": {"_count": 3}, "publicity": {"_count": 1}, "my": {"_count": 1}, "kept": {"_count": 1}, "he": {"_count": 5}, "over": {"_count": 5}, "that": {"_count": 7}, "right": {"_count": 9}, "sittin": {"_count": 1}, "Harry": {"_count": 3}, "sleeping": {"_count": 1}, "becoming": {"_count": 1}, "for": {"_count": 3}, "": {"_count": 2}, "excited": {"_count": 1}, "murmuring": {"_count": 1}, "hushed": {"_count": 1}, "your": {"_count": 1}, "thrown": {"_count": 1}, "annoyed": {"_count": 1}, "supposed": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 2}, "Ogden": {"_count": 1}, "on": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 2}, "the": {"_count": 1}, "dark": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "Albus": {"_count": 1}, "just": {"_count": 1}, "going": {"_count": 1}, "sneered": {"_count": 1}}, "cool": {"_count": 2, "and": {"_count": 2}}, "fast": {"_count": 4, "asleep": {"_count": 3}, "becoming": {"_count": 1}}, "worse": {"_count": 8, "than": {"_count": 5}, "people": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "watching": {"_count": 64, "": {"_count": 3}, "him": {"_count": 14}, "Dobby": {"_count": 2}, "Harrys": {"_count": 1}, "the": {"_count": 5}, "Ron": {"_count": 3}, "it": {"_count": 1}, "Lupin": {"_count": 1}, "Hogwarts": {"_count": 1}, "Fleur": {"_count": 1}, "Harry": {"_count": 3}, "Hermione": {"_count": 1}, "her": {"_count": 4}, "now": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}, "Luna": {"_count": 1}, "them": {"_count": 6}, "from": {"_count": 1}, "Uncle": {"_count": 1}, "made": {"_count": 1}, "you": {"_count": 2}, "coolly": {"_count": 1}, "Grawp": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "Snape": {"_count": 1}, "was": {"_count": 1}, "over": {"_count": 1}, "rather": {"_count": 1}, "Grindelwald": {"_count": 1}}, "bred": {"_count": 1, "in": {"_count": 1}}, "uncoiling": {"_count": 1, "itself": {"_count": 1}}, "telling": {"_count": 21, "them": {"_count": 2}, "me": {"_count": 3}, "his": {"_count": 2}, "Hermione": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 1}, "him": {"_count": 8}, "you": {"_count": 1}}, "swearing": {"_count": 2, "it": {"_count": 1}, "as": {"_count": 1}}, "Piers": {"_count": 1, "calming": {"_count": 1}}, "talking": {"_count": 57, "to": {"_count": 18}, "much": {"_count": 1}, "about": {"_count": 21}, "animatedly": {"_count": 3}, "very": {"_count": 3}, "more": {"_count": 1}, "fast": {"_count": 1}, "over": {"_count": 2}, "into": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 1}, "so": {"_count": 1}}, "safely": {"_count": 2, "out": {"_count": 1}, "wedged": {"_count": 1}}, "so": {"_count": 153, "angry": {"_count": 8}, "hungry": {"_count": 1}, "much": {"_count": 6}, "keen": {"_count": 2}, "huge": {"_count": 1}, "dark": {"_count": 6}, "big": {"_count": 2}, "relieved": {"_count": 4}, "happy": {"_count": 2}, "pleased": {"_count": 5}, "tired": {"_count": 2}, "unfair": {"_count": 1}, "amazed": {"_count": 2}, "close": {"_count": 3}, "horrible": {"_count": 1}, "bad": {"_count": 1}, "worried": {"_count": 1}, "shocked": {"_count": 3}, "large": {"_count": 2}, "late": {"_count": 1}, "small": {"_count": 2}, "terrible": {"_count": 3}, "important": {"_count": 4}, "sure": {"_count": 2}, "upset": {"_count": 1}, "strong": {"_count": 2}, "clouded": {"_count": 1}, "soft": {"_count": 1}, "crowded": {"_count": 2}, "shiny": {"_count": 1}, "full": {"_count": 5}, "lost": {"_count": 1}, "furious": {"_count": 1}, "near": {"_count": 2}, "packed": {"_count": 1}, "swollen": {"_count": 1}, "hopelessly": {"_count": 1}, "absorbed": {"_count": 1}, "ancient": {"_count": 1}, "tight": {"_count": 1}, "thin": {"_count": 1}, "cheerful": {"_count": 1}, "simple": {"_count": 1}, "easy": {"_count": 1}, "overexcited": {"_count": 1}, "clean": {"_count": 1}, "taken": {"_count": 1}, "dwarfed": {"_count": 1}, "brightly": {"_count": 2}, "mad": {"_count": 1}, "quiet": {"_count": 1}, "deep": {"_count": 1}, "dense": {"_count": 1}, "poor": {"_count": 1}, "cold": {"_count": 1}, "exhausted": {"_count": 1}, "panicky": {"_count": 1}, "intense": {"_count": 2}, "desperate": {"_count": 1}, "convinced": {"_count": 1}, "used": {"_count": 2}, "he": {"_count": 2}, "tedious": {"_count": 1}, "quick": {"_count": 1}, "steamed": {"_count": 1}, "brave": {"_count": 1}, "strongly": {"_count": 1}, "short": {"_count": 1}, "intensely": {"_count": 1}, "pale": {"_count": 2}, "good": {"_count": 1}, "bright": {"_count": 1}, "busy": {"_count": 1}, "disarmed": {"_count": 1}, "white": {"_count": 1}, "surprised": {"_count": 1}, "overcome": {"_count": 2}, "significant": {"_count": 1}, "crammed": {"_count": 1}, "interested": {"_count": 1}, "stupid": {"_count": 1}, "dangerous": {"_count": 1}, "wonderful": {"_count": 1}, "very": {"_count": 1}, "devastated": {"_count": 1}, "funny": {"_count": 1}, "calm": {"_count": 1}, "evil": {"_count": 1}, "tall": {"_count": 1}, "surprisingly": {"_count": 1}, "worn": {"_count": 1}, "dreadful": {"_count": 1}, "adept": {"_count": 1}, "deeply": {"_count": 1}, "endearingly": {"_count": 1}, "obvious": {"_count": 1}, "strikingly": {"_count": 1}, "precious": {"_count": 1}, "powerful": {"_count": 1}}, "forbidden": {"_count": 4, "to": {"_count": 1}, "": {"_count": 1}, "by": {"_count": 2}}, "glad": {"_count": 21, "school": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 4}, "Ron": {"_count": 1}, "hed": {"_count": 1}, "of": {"_count": 2}, "when": {"_count": 1}, "he": {"_count": 2}, "Hermione": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 5}}, "over": {"_count": 31, "but": {"_count": 1}, "Hagrid": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 5}, "all": {"_count": 1}, "so": {"_count": 1}, "the": {"_count": 3}, "now": {"_count": 1}, "her": {"_count": 1}, "everybody": {"_count": 1}, "his": {"_count": 2}, "Harry": {"_count": 1}, "he": {"_count": 2}, "Dumbledore": {"_count": 1}, "in": {"_count": 2}, "sure": {"_count": 1}, "then": {"_count": 1}, "He": {"_count": 1}, "as": {"_count": 1}, "there": {"_count": 1}, "at": {"_count": 1}}, "why": {"_count": 5, "Harry": {"_count": 2}, "Snape": {"_count": 1}, "Sirius": {"_count": 1}, "we": {"_count": 1}}, "supposed": {"_count": 55, "to": {"_count": 55}}, "vacationing": {"_count": 1, "on": {"_count": 1}}, "thick": {"_count": 5, "and": {"_count": 2}, "with": {"_count": 2}, "enough": {"_count": 1}}, "written": {"_count": 7, "in": {"_count": 1}, "on": {"_count": 4}, "very": {"_count": 1}, "a": {"_count": 1}}, "jerked": {"_count": 1, "sharply": {"_count": 1}}, "addressed": {"_count": 2, "to": {"_count": 2}}, "broken": {"_count": 15, "": {"_count": 3}, "and": {"_count": 1}, "only": {"_count": 2}, "as": {"_count": 1}, "not": {"_count": 1}, "into": {"_count": 1}, "by": {"_count": 2}, "almost": {"_count": 1}, "Dumbledore": {"_count": 1}, "Everyone": {"_count": 1}, "at": {"_count": 1}}, "lying": {"_count": 59, "on": {"_count": 21}, "under": {"_count": 2}, "in": {"_count": 10}, "to": {"_count": 1}, "": {"_count": 2}, "two": {"_count": 1}, "flat": {"_count": 5}, "sprawled": {"_count": 2}, "there": {"_count": 1}, "spreadeagled": {"_count": 1}, "some": {"_count": 1}, "open": {"_count": 1}, "or": {"_count": 1}, "was": {"_count": 1}, "facedown": {"_count": 2}, "across": {"_count": 2}, "about": {"_count": 1}, "again": {"_count": 1}, "at": {"_count": 2}, "definitely": {"_count": 1}}, "Dudleys": {"_count": 4, "firstever": {"_count": 1}, "favorite": {"_count": 1}, "tongue": {"_count": 1}, "idea": {"_count": 1}}, "up": {"_count": 30, "on": {"_count": 2}, "by": {"_count": 2}, "to": {"_count": 19}, "completely": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "until": {"_count": 1}, "which": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}}, "rather": {"_count": 24, "quiet": {"_count": 2}, "thicker": {"_count": 1}, "like": {"_count": 2}, "enjoying": {"_count": 2}, "thinner": {"_count": 1}, "squat": {"_count": 1}, "broader": {"_count": 1}, "more": {"_count": 1}, "grateful": {"_count": 1}, "surprised": {"_count": 1}, "alarming": {"_count": 1}, "well": {"_count": 1}, "taller": {"_count": 1}, "higher": {"_count": 1}, "pale": {"_count": 2}, "horrible": {"_count": 1}, "hoping": {"_count": 1}, "ostentatiously": {"_count": 1}, "uncomfortable": {"_count": 1}, "frightening": {"_count": 1}}, "thinking": {"_count": 43, "about": {"_count": 8}, "longingly": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 4}, "fast": {"_count": 1}, "it": {"_count": 1}, "back": {"_count": 1}, "weve": {"_count": 1}, "of": {"_count": 6}, "and": {"_count": 2}, "we": {"_count": 1}, "exactly": {"_count": 2}, "today": {"_count": 1}, "that": {"_count": 1}, "himself": {"_count": 1}, "hard": {"_count": 2}, "said": {"_count": 1}, "the": {"_count": 2}, "too": {"_count": 1}, "furiously": {"_count": 1}, "his": {"_count": 1}, "not": {"_count": 1}, "at": {"_count": 1}, "anyway": {"_count": 1}}, "made": {"_count": 12, "difficult": {"_count": 1}, "a": {"_count": 1}, "prefect": {"_count": 1}, "of": {"_count": 4}, "as": {"_count": 1}, "to": {"_count": 2}, "up": {"_count": 1}, "for": {"_count": 1}}, "tearing": {"_count": 1, "the": {"_count": 1}}, "sniffling": {"_count": 1, "in": {"_count": 1}}, "howling": {"_count": 4, "": {"_count": 1}, "into": {"_count": 1}, "with": {"_count": 2}}, "hungry": {"_count": 3, "hed": {"_count": 1}, "and": {"_count": 1}, "enough": {"_count": 1}}, "Monday": {"_count": 1, "and": {"_count": 1}}, "Harrys": {"_count": 9, "eleventh": {"_count": 1}, "imagination": {"_count": 1}, "least": {"_count": 2}, "turn": {"_count": 2}, "and": {"_count": 1}, "scream": {"_count": 1}, "pain": {"_count": 1}}, "also": {"_count": 43, "carrying": {"_count": 1}, "very": {"_count": 2}, "a": {"_count": 7}, "dimly": {"_count": 1}, "an": {"_count": 2}, "slowly": {"_count": 1}, "growing": {"_count": 1}, "traveling": {"_count": 1}, "looking": {"_count": 1}, "lit": {"_count": 1}, "as": {"_count": 1}, "of": {"_count": 1}, "smiling": {"_count": 1}, "clutching": {"_count": 1}, "impatient": {"_count": 1}, "holding": {"_count": 2}, "swigging": {"_count": 1}, "finding": {"_count": 1}, "wearing": {"_count": 2}, "thinking": {"_count": 1}, "turning": {"_count": 1}, "the": {"_count": 2}, "suspended": {"_count": 1}, "more": {"_count": 1}, "panting": {"_count": 1}, "keen": {"_count": 1}, "sure": {"_count": 1}, "something": {"_count": 1}, "rather": {"_count": 1}, "thick": {"_count": 1}, "killed": {"_count": 1}, "there": {"_count": 1}}, "pointing": {"_count": 36, "at": {"_count": 17}, "crashed": {"_count": 1}, "": {"_count": 2}, "Harrys": {"_count": 1}, "first": {"_count": 1}, "his": {"_count": 2}, "right": {"_count": 2}, "into": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 2}, "silently": {"_count": 1}, "and": {"_count": 1}, "through": {"_count": 1}, "was": {"_count": 1}, "upward": {"_count": 1}}, "certain": {"_count": 8, "there": {"_count": 1}, "of": {"_count": 2}, "Buckbeak": {"_count": 1}, "that": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 1}}, "freezing": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "horrible": {"_count": 7, "it": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "to": {"_count": 3}}, "damp": {"_count": 4, "and": {"_count": 3}, "with": {"_count": 1}}, "dangling": {"_count": 9, "over": {"_count": 1}, "limply": {"_count": 1}, "like": {"_count": 1}, "off": {"_count": 1}, "from": {"_count": 3}, "upside": {"_count": 1}, "invisibly": {"_count": 1}}, "outside": {"_count": 3, "knocking": {"_count": 1}, "Harrys": {"_count": 1}, "either": {"_count": 1}}, "hit": {"_count": 3, "with": {"_count": 1}, "by": {"_count": 1}, "in": {"_count": 1}}, "standing": {"_count": 141, "in": {"_count": 23}, "on": {"_count": 12}, "there": {"_count": 15}, "before": {"_count": 2}, "quite": {"_count": 1}, "over": {"_count": 5}, "behind": {"_count": 3}, "next": {"_count": 3}, "well": {"_count": 2}, "empty": {"_count": 1}, "alone": {"_count": 3}, "at": {"_count": 6}, "by": {"_count": 3}, "with": {"_count": 7}, "inside": {"_count": 2}, "exactly": {"_count": 2}, "about": {"_count": 1}, "talking": {"_count": 1}, "where": {"_count": 1}, "up": {"_count": 4}, "a": {"_count": 3}, "outside": {"_count": 2}, "against": {"_count": 1}, "moodily": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}, "beside": {"_count": 7}, "feet": {"_count": 2}, "frozen": {"_count": 1}, "matteroffactly": {"_count": 1}, "right": {"_count": 3}, "very": {"_count": 1}, "just": {"_count": 4}, "or": {"_count": 1}, "guard": {"_count": 2}, "stockstill": {"_count": 1}, "again": {"_count": 2}, "so": {"_count": 1}, "slightly": {"_count": 1}, "ready": {"_count": 2}, "close": {"_count": 1}, "stock": {"_count": 1}, "upon": {"_count": 2}, "like": {"_count": 1}, "blew": {"_count": 1}}, "crouching": {"_count": 5, "terrified": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "low": {"_count": 1}, "over": {"_count": 1}}, "Who": {"_count": 1, "are": {"_count": 1}}, "doing": {"_count": 88, "but": {"_count": 1}, "it": {"_count": 7}, "this": {"_count": 4}, "he": {"_count": 5}, "the": {"_count": 2}, "so": {"_count": 1}, "Ron": {"_count": 1}, "Rubbish": {"_count": 1}, "all": {"_count": 3}, "some": {"_count": 2}, "": {"_count": 16}, "at": {"_count": 1}, "something": {"_count": 3}, "because": {"_count": 2}, "and": {"_count": 3}, "Harry": {"_count": 4}, "now": {"_count": 1}, "her": {"_count": 1}, "to": {"_count": 1}, "an": {"_count": 1}, "not": {"_count": 1}, "for": {"_count": 1}, "over": {"_count": 1}, "a": {"_count": 4}, "half": {"_count": 1}, "STOP": {"_count": 1}, "much": {"_count": 1}, "was": {"_count": 2}, "very": {"_count": 1}, "exactly": {"_count": 1}, "here": {"_count": 1}, "without": {"_count": 1}, "there": {"_count": 2}, "with": {"_count": 1}, "detention": {"_count": 1}, "in": {"_count": 2}, "that": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 1}, "when": {"_count": 1}, "whether": {"_count": 1}, "You": {"_count": 1}}, "working": {"_count": 14, "but": {"_count": 1}, "the": {"_count": 1}, "overtime": {"_count": 1}, "for": {"_count": 2}, "flatout": {"_count": 1}, "in": {"_count": 2}, "extremely": {"_count": 1}, "well": {"_count": 1}, "with": {"_count": 1}, "very": {"_count": 1}, "himself": {"_count": 1}, "at": {"_count": 1}}, "there": {"_count": 79, "": {"_count": 28}, "and": {"_count": 2}, "in": {"_count": 4}, "who": {"_count": 1}, "too": {"_count": 1}, "to": {"_count": 5}, "was": {"_count": 5}, "for": {"_count": 2}, "didnt": {"_count": 1}, "sweeping": {"_count": 1}, "cleaning": {"_count": 1}, "which": {"_count": 1}, "theres": {"_count": 1}, "any": {"_count": 2}, "Sirius": {"_count": 1}, "wasnt": {"_count": 1}, "I": {"_count": 2}, "or": {"_count": 1}, "last": {"_count": 1}, "said": {"_count": 3}, "so": {"_count": 1}, "the": {"_count": 2}, "are": {"_count": 1}, "when": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 2}, "it": {"_count": 1}, "all": {"_count": 1}, "theyll": {"_count": 1}, "then": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "himself": {"_count": 1}}, "silence": {"_count": 34, "inside": {"_count": 1}, "again": {"_count": 1}, "as": {"_count": 4}, "": {"_count": 12}, "for": {"_count": 4}, "but": {"_count": 2}, "in": {"_count": 8}, "except": {"_count": 1}, "apart": {"_count": 1}}, "as": {"_count": 108, "normal": {"_count": 1}, "smooth": {"_count": 1}, "if": {"_count": 4}, "Harry": {"_count": 4}, "though": {"_count": 45}, "not": {"_count": 1}, "bad": {"_count": 3}, "red": {"_count": 1}, "different": {"_count": 1}, "boring": {"_count": 1}, "wet": {"_count": 1}, "clean": {"_count": 1}, "shabby": {"_count": 2}, "happy": {"_count": 1}, "bright": {"_count": 1}, "badly": {"_count": 1}, "fogged": {"_count": 1}, "crowded": {"_count": 1}, "powerless": {"_count": 1}, "empty": {"_count": 1}, "vast": {"_count": 1}, "keen": {"_count": 1}, "good": {"_count": 4}, "thin": {"_count": 1}, "yet": {"_count": 2}, "he": {"_count": 2}, "dark": {"_count": 2}, "unpleasant": {"_count": 1}, "deeply": {"_count": 2}, "Hagrid": {"_count": 1}, "still": {"_count": 1}, "Hermione": {"_count": 2}, "tall": {"_count": 1}, "patchy": {"_count": 1}, "close": {"_count": 1}, "mousyhaired": {"_count": 1}, "blackened": {"_count": 1}, "black": {"_count": 1}, "pale": {"_count": 1}, "dimly": {"_count": 1}, "difficult": {"_count": 1}, "large": {"_count": 1}, "far": {"_count": 1}, "simple": {"_count": 1}, "long": {"_count": 1}, "ever": {"_count": 1}, "part": {"_count": 1}}, "open": {"_count": 12, "and": {"_count": 3}, "to": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "wide": {"_count": 1}, "it": {"_count": 1}, "whether": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}}, "I": {"_count": 24, "": {"_count": 5}, "supposed": {"_count": 5}, "ter": {"_count": 1}, "who": {"_count": 6}, "playing": {"_count": 1}, "asked": {"_count": 1}, "thinking": {"_count": 1}, "sayin": {"_count": 1}, "saw": {"_count": 1}, "believe": {"_count": 1}, "have": {"_count": 1}}, "Lily": {"_count": 2, "this": {"_count": 1}, "her": {"_count": 1}}, "this": {"_count": 24, "wizard": {"_count": 1}, "scar": {"_count": 1}, "roomy": {"_count": 1}, "dying": {"_count": 1}, "diary": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "draft": {"_count": 1}, "big": {"_count": 1}, "perhaps": {"_count": 1}, "supposed": {"_count": 1}, "place": {"_count": 3}, "more": {"_count": 1}, "weird": {"_count": 1}, "improvement": {"_count": 1}, "important": {"_count": 1}, "in": {"_count": 1}, "woman": {"_count": 1}, "possible": {"_count": 1}, "sign": {"_count": 1}, "close": {"_count": 1}}, "gettin": {"_count": 2, "himself": {"_count": 1}, "more": {"_count": 1}}, "takin": {"_count": 1, "over": {"_count": 1}}, "Hogwarts": {"_count": 4, "": {"_count": 2}, "as": {"_count": 1}, "and": {"_count": 1}}, "afraid": {"_count": 17, "of": {"_count": 6}, "would": {"_count": 1}, "it": {"_count": 1}, "youd": {"_count": 1}, "to": {"_count": 2}, "The": {"_count": 1}, "that": {"_count": 4}, "and": {"_count": 1}}, "glaring": {"_count": 10, "at": {"_count": 9}, "from": {"_count": 1}}, "cornin": {"_count": 2, "back": {"_count": 1}, "outta": {"_count": 1}}, "somethin": {"_count": 2, "goin": {"_count": 1}, "fishy": {"_count": 1}}, "really": {"_count": 46, "a": {"_count": 1}, "lucky": {"_count": 1}, "there": {"_count": 1}, "not": {"_count": 1}, "deserted": {"_count": 1}, "rude": {"_count": 1}, "good": {"_count": 3}, "angry": {"_count": 1}, "close": {"_count": 1}, "puppy": {"_count": 1}, "listening": {"_count": 1}, "no": {"_count": 1}, "due": {"_count": 1}, "seeing": {"_count": 1}, "enjoying": {"_count": 1}, "horrible": {"_count": 1}, "hurting": {"_count": 1}, "quite": {"_count": 1}, "amused": {"_count": 1}, "much": {"_count": 1}, "hoping": {"_count": 1}, "going": {"_count": 1}, "unfair": {"_count": 1}, "really": {"_count": 1}, "too": {"_count": 2}, "annoying": {"_count": 1}, "in": {"_count": 2}, "great": {"_count": 1}, "pleased": {"_count": 1}, "very": {"_count": 1}, "surprised": {"_count": 1}, "unlucky": {"_count": 1}, "sorry": {"_count": 2}, "cut": {"_count": 1}, "falling": {"_count": 1}, "young": {"_count": 2}, "important": {"_count": 1}, "thinking": {"_count": 1}, "Hermione": {"_count": 1}, "George": {"_count": 1}}, "scared": {"_count": 9, "or": {"_count": 1}, "": {"_count": 2}, "Sirius": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 2}, "of": {"_count": 2}}, "positively": {"_count": 4, "beaming": {"_count": 1}, "cute": {"_count": 1}, "quivering": {"_count": 1}, "alarming": {"_count": 1}}, "born": {"_count": 16, "": {"_count": 3}, "into": {"_count": 1}, "sir": {"_count": 1}, "just": {"_count": 1}, "in": {"_count": 3}, "one": {"_count": 1}, "at": {"_count": 2}, "here": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}}, "dancing": {"_count": 7, "on": {"_count": 2}, "around": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 2}}, "at": {"_count": 62, "Hogwarts": {"_count": 11}, "last": {"_count": 6}, "all": {"_count": 2}, "dinner": {"_count": 1}, "Smeltings": {"_count": 1}, "the": {"_count": 15}, "once": {"_count": 1}, "school": {"_count": 4}, "that": {"_count": 3}, "liberty": {"_count": 1}, "its": {"_count": 1}, "Malfoys": {"_count": 1}, "least": {"_count": 6}, "home": {"_count": 2}, "breakfast": {"_count": 1}, "my": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 1}, "Potions": {"_count": 1}}, "daylight": {"_count": 1, "he": {"_count": 1}}, "suddenly": {"_count": 40, "a": {"_count": 3}, "able": {"_count": 1}, "the": {"_count": 1}, "clenched": {"_count": 1}, "thick": {"_count": 1}, "giving": {"_count": 1}, "masklike": {"_count": 1}, "looking": {"_count": 1}, "withdrawn": {"_count": 1}, "feeling": {"_count": 1}, "bustling": {"_count": 1}, "dripping": {"_count": 1}, "on": {"_count": 1}, "not": {"_count": 1}, "full": {"_count": 5}, "lit": {"_count": 1}, "shaking": {"_count": 1}, "pitchblack": {"_count": 1}, "piercingly": {"_count": 1}, "wooden": {"_count": 1}, "alight": {"_count": 1}, "so": {"_count": 1}, "tense": {"_count": 1}, "horribly": {"_count": 1}, "pleasant": {"_count": 1}, "striking": {"_count": 1}, "pointing": {"_count": 1}, "loud": {"_count": 1}, "filled": {"_count": 1}, "white": {"_count": 1}, "demented": {"_count": 1}, "dry": {"_count": 1}, "vicelike": {"_count": 1}, "reminded": {"_count": 1}}, "asleep": {"_count": 12, "on": {"_count": 2}, "": {"_count": 3}, "in": {"_count": 1}, "and": {"_count": 2}, "within": {"_count": 1}, "or": {"_count": 1}, "with": {"_count": 1}, "said": {"_count": 1}}, "an": {"_count": 124, "owl": {"_count": 1}, "improvement": {"_count": 1}, "important": {"_count": 1}, "excellent": {"_count": 2}, "uproar": {"_count": 1}, "upturned": {"_count": 1}, "inscription": {"_count": 1}, "accident": {"_count": 9}, "instant": {"_count": 1}, "incredible": {"_count": 3}, "age": {"_count": 1}, "egg": {"_count": 1}, "explosion": {"_count": 3}, "ugly": {"_count": 2}, "almost": {"_count": 3}, "effort": {"_count": 1}, "odd": {"_count": 6}, "advertisement": {"_count": 1}, "entirely": {"_count": 1}, "old": {"_count": 7}, "intake": {"_count": 1}, "unmistakable": {"_count": 1}, "offhand": {"_count": 1}, "eruption": {"_count": 2}, "unqualified": {"_count": 1}, "Animagus": {"_count": 3}, "obsession": {"_count": 1}, "affectionate": {"_count": 1}, "unpleasant": {"_count": 2}, "extremely": {"_count": 1}, "empty": {"_count": 3}, "unfounded": {"_count": 1}, "Auror": {"_count": 2}, "inch": {"_count": 1}, "excess": {"_count": 1}, "insult": {"_count": 1}, "air": {"_count": 1}, "idiot": {"_count": 4}, "article": {"_count": 1}, "ideal": {"_count": 1}, "enormous": {"_count": 1}, "irritable": {"_count": 1}, "equal": {"_count": 1}, "angry": {"_count": 2}, "Albus": {"_count": 2}, "arrested": {"_count": 1}, "hour": {"_count": 1}, "inquiry": {"_count": 1}, "opening": {"_count": 1}, "envelope": {"_count": 1}, "appreciative": {"_count": 1}, "unusually": {"_count": 2}, "oddly": {"_count": 1}, "outbreak": {"_count": 3}, "upsurge": {"_count": 1}, "edge": {"_count": 1}, "Unspeakable": {"_count": 1}, "indecent": {"_count": 1}, "uncomfortable": {"_count": 1}, "ominous": {"_count": 1}, "isolated": {"_count": 1}, "immediate": {"_count": 1}, "overcast": {"_count": 1}, "array": {"_count": 1}, "unprovoked": {"_count": 1}, "inconveniently": {"_count": 1}, "inconsistent": {"_count": 1}, "impractical": {"_count": 1}, "opinion": {"_count": 1}, "antidote": {"_count": 1}, "occupational": {"_count": 1}, "honor": {"_count": 1}, "eye": {"_count": 1}, "arrogant": {"_count": 1}, "Erumpent": {"_count": 1}, "ignorant": {"_count": 1}, "extraordinary": {"_count": 1}, "albino": {"_count": 1}, "evil": {"_count": 1}, "argument": {"_count": 1}, "answering": {"_count": 1}, "indispensable": {"_count": 1}}, "swelling": {"_count": 5, "inside": {"_count": 1}, "to": {"_count": 1}, "slowly": {"_count": 1}, "above": {"_count": 1}, "rapidly": {"_count": 1}}, "pulling": {"_count": 21, "on": {"_count": 2}, "from": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "back": {"_count": 1}, "it": {"_count": 3}, "off": {"_count": 1}, "him": {"_count": 6}, "in": {"_count": 1}, "out": {"_count": 1}, "Neville": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}}, "destroyed": {"_count": 3, "They": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "quite": {"_count": 92, "clear": {"_count": 3}, "bald": {"_count": 1}, "right": {"_count": 9}, "glad": {"_count": 4}, "sure": {"_count": 14}, "alone": {"_count": 1}, "disgusting": {"_count": 2}, "usual": {"_count": 1}, "as": {"_count": 5}, "ludicrous": {"_count": 1}, "some": {"_count": 1}, "silent": {"_count": 1}, "expressionless": {"_count": 1}, "convinced": {"_count": 1}, "enjoying": {"_count": 1}, "fond": {"_count": 1}, "looking": {"_count": 1}, "goodlooking": {"_count": 1}, "something": {"_count": 1}, "hysterical": {"_count": 1}, "unprotected": {"_count": 1}, "steady": {"_count": 3}, "impassive": {"_count": 1}, "invisible": {"_count": 1}, "galling": {"_count": 1}, "different": {"_count": 1}, "still": {"_count": 1}, "enjoyable": {"_count": 1}, "sensible": {"_count": 1}, "an": {"_count": 1}, "straight": {"_count": 1}, "blank": {"_count": 1}, "deserted": {"_count": 2}, "good": {"_count": 1}, "true": {"_count": 1}, "quick": {"_count": 1}, "unnerving": {"_count": 1}, "the": {"_count": 1}, "impressed": {"_count": 1}, "unimpaired": {"_count": 1}, "keen": {"_count": 3}, "busy": {"_count": 1}, "empty": {"_count": 5}, "unconnected": {"_count": 1}, "a": {"_count": 1}, "full": {"_count": 1}, "fun": {"_count": 1}, "oblivious": {"_count": 1}, "pleasant": {"_count": 1}, "mesmerizing": {"_count": 1}, "surprised": {"_count": 1}, "difficult": {"_count": 1}}, "ter": {"_count": 3, "er": {"_count": 1}, "go": {"_count": 1}, "hold": {"_count": 1}}, "Hagrid": {"_count": 10, "twice": {"_count": 1}, "huge": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 3}, "making": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "wearing": {"_count": 1}}, "obviously": {"_count": 9, "not": {"_count": 2}, "still": {"_count": 2}, "supposed": {"_count": 1}, "dreading": {"_count": 1}, "casting": {"_count": 1}, "with": {"_count": 1}, "showing": {"_count": 1}}, "keep": {"_count": 1, "close": {"_count": 1}}, "unbelievable": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 3}}, "smoking": {"_count": 7, "a": {"_count": 1}, "faintly": {"_count": 1}, "": {"_count": 2}, "slightly": {"_count": 2}, "ominously": {"_count": 1}}, "puffing": {"_count": 1, "on": {"_count": 1}}, "beaming": {"_count": 9, "": {"_count": 2}, "at": {"_count": 1}, "and": {"_count": 1}, "down": {"_count": 1}, "around": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}, "but": {"_count": 1}}, "twitching": {"_count": 6, "": {"_count": 1}, "in": {"_count": 2}, "as": {"_count": 2}, "slightly": {"_count": 1}}, "tremblin": {"_count": 1, "ter": {"_count": 1}}, "fine": {"_count": 7, "while": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}, "journey": {"_count": 1}, "weve": {"_count": 1}, "with": {"_count": 1}}, "studyin": {"_count": 1, "outta": {"_count": 1}}, "swimming": {"_count": 5, "": {"_count": 2}, "on": {"_count": 1}, "so": {"_count": 1}, "above": {"_count": 1}}, "shaking": {"_count": 47, "her": {"_count": 2}, "and": {"_count": 3}, "Professor": {"_count": 1}, "": {"_count": 9}, "all": {"_count": 2}, "the": {"_count": 1}, "like": {"_count": 1}, "in": {"_count": 2}, "his": {"_count": 5}, "too": {"_count": 1}, "hands": {"_count": 1}, "with": {"_count": 7}, "badly": {"_count": 2}, "as": {"_count": 3}, "slightly": {"_count": 2}, "from": {"_count": 2}, "uncontrollably": {"_count": 1}, "so": {"_count": 1}, "but": {"_count": 1}}, "Yeah": {"_count": 1, "thats": {"_count": 1}}, "never": {"_count": 21, "yours": {"_count": 2}, "going": {"_count": 4}, "haunted": {"_count": 1}, "brave": {"_count": 1}, "even": {"_count": 1}, "a": {"_count": 1}, "one": {"_count": 1}, "bookish": {"_count": 1}, "proud": {"_count": 1}, "taken": {"_count": 1}, "obligatory": {"_count": 1}, "the": {"_count": 2}, "me": {"_count": 1}, "able": {"_count": 1}, "right": {"_count": 1}, "free": {"_count": 1}}, "yet": {"_count": 2, "another": {"_count": 1}, "approaching": {"_count": 1}}, "surprised": {"_count": 10, "": {"_count": 2}, "how": {"_count": 1}, "Ministry": {"_count": 1}, "to": {"_count": 4}, "Fred": {"_count": 1}, "that": {"_count": 1}}, "impossible": {"_count": 18, "": {"_count": 4}, "to": {"_count": 7}, "for": {"_count": 2}, "or": {"_count": 1}, "that": {"_count": 1}, "not": {"_count": 1}, "nobody": {"_count": 1}, "now": {"_count": 1}}, "incredible": {"_count": 4, "": {"_count": 2}, "Dudley": {"_count": 1}, "the": {"_count": 1}}, "down": {"_count": 8, "at": {"_count": 1}, "in": {"_count": 3}, "for": {"_count": 1}, "to": {"_count": 2}, "but": {"_count": 1}}, "empty": {"_count": 30, "": {"_count": 10}, "except": {"_count": 6}, "but": {"_count": 3}, "he": {"_count": 2}, "too": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 2}, "nothing": {"_count": 1}, "apart": {"_count": 1}, "showing": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}}, "but": {"_count": 12, "knew": {"_count": 1}, "taken": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "Kreachers": {"_count": 1}, "you": {"_count": 1}, "so": {"_count": 1}, "continued": {"_count": 1}, "my": {"_count": 1}, "he": {"_count": 1}, "did": {"_count": 1}, "sure": {"_count": 1}}, "strongly": {"_count": 1, "reminded": {"_count": 1}}, "liking": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 49, "when": {"_count": 2}, "having": {"_count": 3}, "walking": {"_count": 1}, "listening": {"_count": 2}, "stepping": {"_count": 2}, "applause": {"_count": 1}, "rushing": {"_count": 1}, "that": {"_count": 2}, "bein": {"_count": 1}, "watching": {"_count": 1}, "trying": {"_count": 1}, "she": {"_count": 1}, "a": {"_count": 8}, "to": {"_count": 1}, "being": {"_count": 1}, "waking": {"_count": 2}, "chewing": {"_count": 1}, "after": {"_count": 1}, "watchin": {"_count": 1}, "something": {"_count": 1}, "I": {"_count": 1}, "himself": {"_count": 1}, "James": {"_count": 1}, "knives": {"_count": 1}, "fire": {"_count": 1}, "remembering": {"_count": 1}, "courage": {"_count": 1}, "gazing": {"_count": 1}, "resisting": {"_count": 1}, "but": {"_count": 1}, "sinking": {"_count": 1}, "planning": {"_count": 1}, "physical": {"_count": 1}, "the": {"_count": 1}, "cold": {"_count": 1}}, "trying": {"_count": 107, "to": {"_count": 101}, "hard": {"_count": 1}, "not": {"_count": 1}, "so": {"_count": 2}, "in": {"_count": 1}, "desperately": {"_count": 1}}, "fascinating": {"_count": 1, "enough": {"_count": 1}}, "what": {"_count": 17, "Harry": {"_count": 3}, "had": {"_count": 2}, "looked": {"_count": 3}, "Salazar": {"_count": 1}, "it": {"_count": 3}, "Moody": {"_count": 1}, "happened": {"_count": 2}, "the": {"_count": 1}, "you": {"_count": 1}}, "narrow": {"_count": 2, "and": {"_count": 2}}, "sir": {"_count": 1, "yes": {"_count": 1}}, "measuring": {"_count": 2, "between": {"_count": 1}, "out": {"_count": 1}}, "flitting": {"_count": 2, "around": {"_count": 2}}, "snatched": {"_count": 1, "back": {"_count": 1}}, "waiting": {"_count": 34, "for": {"_count": 22}, "next": {"_count": 1}, "at": {"_count": 1}, "beyond": {"_count": 1}, "to": {"_count": 4}, "somewhere": {"_count": 1}, "by": {"_count": 1}, "beside": {"_count": 2}, "": {"_count": 1}}, "mounting": {"_count": 2, "higher": {"_count": 1}, "ever": {"_count": 1}}, "out": {"_count": 33, "of": {"_count": 22}, "in": {"_count": 4}, "and": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 2}, "cold": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}}, "lucky": {"_count": 12, "that": {"_count": 2}, "because": {"_count": 1}, "once": {"_count": 1}, "at": {"_count": 1}, "even": {"_count": 1}, "you": {"_count": 2}, "perhaps": {"_count": 1}, "there": {"_count": 1}, "she": {"_count": 1}, "not": {"_count": 1}}, "listening": {"_count": 25, "": {"_count": 5}, "in": {"_count": 3}, "to": {"_count": 3}, "raptly": {"_count": 1}, "for": {"_count": 1}, "now": {"_count": 1}, "motionless": {"_count": 1}, "hard": {"_count": 4}, "Madam": {"_count": 1}, "there": {"_count": 1}, "at": {"_count": 2}, "Ron": {"_count": 1}, "Romulus": {"_count": 1}}, "too": {"_count": 82, "excited": {"_count": 2}, "high": {"_count": 2}, "sleepy": {"_count": 1}, "much": {"_count": 8}, "busy": {"_count": 12}, "hot": {"_count": 1}, "late": {"_count": 8}, "quick": {"_count": 5}, "long": {"_count": 1}, "easy": {"_count": 1}, "scared": {"_count": 1}, "feeble": {"_count": 1}, "": {"_count": 1}, "perfect": {"_count": 1}, "keen": {"_count": 1}, "cowardly": {"_count": 1}, "worried": {"_count": 1}, "dark": {"_count": 2}, "great": {"_count": 1}, "strong": {"_count": 2}, "protective": {"_count": 1}, "full": {"_count": 1}, "far": {"_count": 1}, "powerful": {"_count": 1}, "hard": {"_count": 2}, "heavy": {"_count": 2}, "used": {"_count": 1}, "or": {"_count": 1}, "preoccupied": {"_count": 1}, "stupid": {"_count": 2}, "concerned": {"_count": 1}, "early": {"_count": 1}, "incensed": {"_count": 1}, "close": {"_count": 1}, "slow": {"_count": 1}, "dizzy": {"_count": 1}, "happy": {"_count": 1}, "deeply": {"_count": 1}, "young": {"_count": 2}, "popular": {"_count": 1}, "\u2018Evil": {"_count": 1}, "weak": {"_count": 2}, "well": {"_count": 1}, "severe": {"_count": 1}}, "shut": {"_count": 3, "safely": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}}, "strangely": {"_count": 3, "kind": {"_count": 1}, "blurred": {"_count": 1}, "highpitched": {"_count": 1}}, "starting": {"_count": 38, "to": {"_count": 37}, "once": {"_count": 1}}, "stranded": {"_count": 2, "in": {"_count": 1}, "quite": {"_count": 1}}, "pushing": {"_count": 3, "a": {"_count": 1}, "his": {"_count": 1}, "some": {"_count": 1}}, "walking": {"_count": 34, "briskly": {"_count": 1}, "so": {"_count": 2}, "backward": {"_count": 1}, "toward": {"_count": 7}, "onto": {"_count": 1}, "along": {"_count": 3}, "through": {"_count": 1}, "with": {"_count": 1}, "down": {"_count": 2}, "as": {"_count": 1}, "up": {"_count": 2}, "side": {"_count": 1}, "past": {"_count": 2}, "away": {"_count": 1}, "and": {"_count": 1}, "around": {"_count": 1}, "once": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 1}, "slowly": {"_count": 1}, "blindly": {"_count": 1}, "back": {"_count": 1}}, "coming": {"_count": 65, "nearer": {"_count": 2}, "from": {"_count": 16}, "": {"_count": 12}, "back": {"_count": 2}, "Harry": {"_count": 1}, "next": {"_count": 1}, "to": {"_count": 5}, "down": {"_count": 4}, "There": {"_count": 1}, "in": {"_count": 3}, "ever": {"_count": 1}, "the": {"_count": 2}, "or": {"_count": 1}, "up": {"_count": 2}, "suddenly": {"_count": 1}, "out": {"_count": 3}, "because": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "for": {"_count": 1}, "round": {"_count": 1}, "so": {"_count": 1}}, "surrounded": {"_count": 10, "by": {"_count": 10}}, "near": {"_count": 6, "us": {"_count": 1}, "a": {"_count": 1}, "enough": {"_count": 2}, "me": {"_count": 1}, "": {"_count": 1}}, "alone": {"_count": 10, "I": {"_count": 1}, "in": {"_count": 4}, "": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 2}}, "ever": {"_count": 10, "so": {"_count": 2}, "such": {"_count": 1}, "afraid": {"_count": 1}, "likely": {"_count": 1}, "scared": {"_count": 1}, "important": {"_count": 1}, "summoned": {"_count": 1}, "inside": {"_count": 1}, "to": {"_count": 1}}, "leaving": {"_count": 9, "behind": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 2}, "to": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "us": {"_count": 1}, "": {"_count": 1}}, "head": {"_count": 5, "boy": {"_count": 1}, "of": {"_count": 3}, "to": {"_count": 1}}, "captain": {"_count": 1, "of": {"_count": 1}}, "anything": {"_count": 3, "wrong": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "ready": {"_count": 17, "to": {"_count": 7}, "": {"_count": 3}, "and": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 1}, "before": {"_count": 1}, "for": {"_count": 2}, "upon": {"_count": 1}}, "more": {"_count": 44, "interested": {"_count": 2}, "than": {"_count": 8}, "": {"_count": 1}, "concerned": {"_count": 1}, "of": {"_count": 1}, "bearable": {"_count": 1}, "like": {"_count": 2}, "or": {"_count": 1}, "noticeable": {"_count": 1}, "worried": {"_count": 1}, "terrible": {"_count": 1}, "she": {"_count": 2}, "retching": {"_count": 1}, "he": {"_count": 2}, "room": {"_count": 1}, "when": {"_count": 1}, "to": {"_count": 1}, "subdued": {"_count": 1}, "complicated": {"_count": 1}, "Ron": {"_count": 1}, "difficult": {"_count": 1}, "further": {"_count": 1}, "annoying": {"_count": 1}, "alone": {"_count": 1}, "reserved": {"_count": 1}, "often": {"_count": 1}, "dramatically": {"_count": 1}, "beautiful": {"_count": 1}, "shadow": {"_count": 1}, "jeering": {"_count": 1}, "a": {"_count": 1}, "afraid": {"_count": 1}, "frightening": {"_count": 1}}, "scratching": {"_count": 1, "her": {"_count": 1}}, "becoming": {"_count": 20, "wilder": {"_count": 1}, "a": {"_count": 1}, "drowsy": {"_count": 1}, "clearer": {"_count": 1}, "increasingly": {"_count": 3}, "louder": {"_count": 2}, "very": {"_count": 1}, "smooth": {"_count": 1}, "steadily": {"_count": 1}, "careless": {"_count": 1}, "reckless": {"_count": 1}, "more": {"_count": 4}, "stronger": {"_count": 1}, "colder": {"_count": 1}}, "chipped": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "glinting": {"_count": 3, "at": {"_count": 1}, "just": {"_count": 1}, "on": {"_count": 1}}, "relieved": {"_count": 7, "to": {"_count": 6}, "when": {"_count": 1}}, "wondering": {"_count": 12, "what": {"_count": 2}, "if": {"_count": 2}, "who": {"_count": 1}, "whether": {"_count": 6}, "Hermione": {"_count": 1}}, "mentioned": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 12, "explaining": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 2}, "again": {"_count": 1}, "he": {"_count": 1}, "hunting": {"_count": 1}, "to": {"_count": 3}, "scrambling": {"_count": 1}, "hurrying": {"_count": 1}}, "good": {"_count": 16, "for": {"_count": 1}, "at": {"_count": 4}, "of": {"_count": 1}, "with": {"_count": 1}, "news": {"_count": 1}, "really": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "enough": {"_count": 3}, "": {"_count": 1}, "that": {"_count": 1}}, "hanging": {"_count": 22, "off": {"_count": 2}, "me": {"_count": 1}, "on": {"_count": 2}, "by": {"_count": 1}, "at": {"_count": 1}, "from": {"_count": 2}, "facedown": {"_count": 1}, "around": {"_count": 2}, "over": {"_count": 2}, "open": {"_count": 1}, "back": {"_count": 1}, "limply": {"_count": 1}, "crookedly": {"_count": 1}, "upside": {"_count": 2}, "in": {"_count": 1}, "through": {"_count": 1}}, "getting": {"_count": 42, "dark": {"_count": 1}, "the": {"_count": 1}, "nearer": {"_count": 2}, "really": {"_count": 1}, "onto": {"_count": 1}, "unsteadily": {"_count": 1}, "to": {"_count": 2}, "very": {"_count": 1}, "a": {"_count": 2}, "slower": {"_count": 1}, "colder": {"_count": 1}, "harder": {"_count": 1}, "darker": {"_count": 1}, "more": {"_count": 1}, "sick": {"_count": 2}, "ready": {"_count": 1}, "into": {"_count": 2}, "jumpy": {"_count": 1}, "suspicious": {"_count": 1}, "fewer": {"_count": 1}, "short": {"_count": 1}, "so": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 1}, "near": {"_count": 1}, "stronger": {"_count": 2}, "rid": {"_count": 1}, "quite": {"_count": 1}, "worse": {"_count": 3}, "better": {"_count": 2}, "Fleur": {"_count": 1}, "at": {"_count": 1}, "there": {"_count": 1}}, "silent": {"_count": 5, "staring": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "so": {"_count": 1}}, "checking": {"_count": 6, "the": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "for": {"_count": 2}}, "fastened": {"_count": 1, "under": {"_count": 1}}, "joking": {"_count": 5, "": {"_count": 2}, "said": {"_count": 3}}, "whispering": {"_count": 7, "very": {"_count": 1}, "and": {"_count": 2}, "with": {"_count": 1}, "about": {"_count": 1}, "something": {"_count": 1}, "for": {"_count": 1}}, "lit": {"_count": 8, "by": {"_count": 2}, "with": {"_count": 5}, "instead": {"_count": 1}}, "hard": {"_count": 24, "to": {"_count": 19}, "just": {"_count": 1}, "put": {"_count": 2}, "that": {"_count": 1}, "and": {"_count": 1}}, "patched": {"_count": 1, "and": {"_count": 1}}, "complete": {"_count": 5, "silence": {"_count": 3}, "": {"_count": 1}, "he": {"_count": 1}}, "Rons": {"_count": 8, "turn": {"_count": 1}, "rat": {"_count": 1}, "younger": {"_count": 1}, "greeting": {"_count": 1}, "foot": {"_count": 1}, "breathing": {"_count": 1}, "constant": {"_count": 1}, "hair": {"_count": 1}}, "pale": {"_count": 7, "green": {"_count": 1}, "and": {"_count": 4}, "as": {"_count": 1}, "": {"_count": 1}}, "right": {"_count": 62, "next": {"_count": 1}, "at": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 8}, "in": {"_count": 10}, "against": {"_count": 1}, "ahead": {"_count": 2}, "behind": {"_count": 6}, "she": {"_count": 1}, "about": {"_count": 3}, "wasnt": {"_count": 2}, "away": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 3}, "to": {"_count": 4}, "it": {"_count": 2}, "his": {"_count": 1}, "he": {"_count": 2}, "beside": {"_count": 2}, "do": {"_count": 1}, "but": {"_count": 1}, "importan": {"_count": 1}, "He": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 2}, "on": {"_count": 1}, "there": {"_count": 1}}, "pleased": {"_count": 23, "to": {"_count": 16}, "said": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "but": {"_count": 1}}, "eight": {"_count": 1, "": {"_count": 1}}, "crying": {"_count": 15, "she": {"_count": 1}, "in": {"_count": 1}, "smiling": {"_count": 1}, "noisily": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 2}, "harder": {"_count": 1}, "so": {"_count": 1}, "Harry": {"_count": 1}, "actually": {"_count": 1}, "quite": {"_count": 1}, "silently": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}}, "drinking": {"_count": 2, "deeply": {"_count": 1}, "from": {"_count": 1}}, "floating": {"_count": 9, "in": {"_count": 2}, "along": {"_count": 1}, "up": {"_count": 1}, "above": {"_count": 1}, "away": {"_count": 1}, "upside": {"_count": 1}, "dreamily": {"_count": 1}, "upward": {"_count": 1}}, "Malfoy": {"_count": 11, "laughing": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "I": {"_count": 1}, "Crabbe": {"_count": 1}, "who": {"_count": 1}, "skulking": {"_count": 1}, "celebrating": {"_count": 1}, "now": {"_count": 1}}, "always": {"_count": 35, "a": {"_count": 9}, "happy": {"_count": 1}, "bringing": {"_count": 1}, "untidy": {"_count": 1}, "begging": {"_count": 1}, "more": {"_count": 1}, "very": {"_count": 2}, "good": {"_count": 3}, "tagging": {"_count": 1}, "hopeless": {"_count": 1}, "ill": {"_count": 1}, "touchy": {"_count": 1}, "with": {"_count": 1}, "making": {"_count": 1}, "welcome": {"_count": 1}, "one": {"_count": 1}, "surprised": {"_count": 1}, "going": {"_count": 1}, "trying": {"_count": 1}, "generous": {"_count": 1}, "Harry": {"_count": 1}, "too": {"_count": 1}, "surrounded": {"_count": 1}, "up": {"_count": 1}}, "worth": {"_count": 13, "two": {"_count": 1}, "a": {"_count": 3}, "five": {"_count": 1}, "one": {"_count": 1}, "about": {"_count": 1}, "and": {"_count": 1}, "anything": {"_count": 1}, "it": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "threatening": {"_count": 4, "to": {"_count": 2}, "him": {"_count": 1}, "you": {"_count": 1}}, "passing": {"_count": 14, "": {"_count": 2}, "the": {"_count": 4}, "a": {"_count": 1}, "it": {"_count": 1}, "looking": {"_count": 1}, "over": {"_count": 1}, "around": {"_count": 1}, "accompanied": {"_count": 1}, "her": {"_count": 1}, "but": {"_count": 1}}, "History": {"_count": 2, "of": {"_count": 2}}, "again": {"_count": 8, "different": {"_count": 1}, "in": {"_count": 1}, "reminded": {"_count": 1}, "engaged": {"_count": 1}, "on": {"_count": 1}, "Hermione": {"_count": 1}, "holding": {"_count": 1}, "Choose": {"_count": 1}}, "Defense": {"_count": 3, "Against": {"_count": 3}}, "to": {"_count": 93, "ward": {"_count": 1}, "be": {"_count": 20}, "get": {"_count": 4}, "keep": {"_count": 5}, "lock": {"_count": 1}, "score": {"_count": 1}, "him": {"_count": 2}, "find": {"_count": 7}, "hear": {"_count": 3}, "make": {"_count": 2}, "present": {"_count": 1}, "talk": {"_count": 2}, "do": {"_count": 1}, "accept": {"_count": 1}, "try": {"_count": 1}, "swim": {"_count": 1}, "tell": {"_count": 3}, "take": {"_count": 2}, "rise": {"_count": 1}, "suppose": {"_count": 1}, "say": {"_count": 1}, "sit": {"_count": 2}, "further": {"_count": 1}, "a": {"_count": 1}, "have": {"_count": 1}, "extend": {"_count": 1}, "persuade": {"_count": 2}, "learn": {"_count": 1}, "speak": {"_count": 1}, "offer": {"_count": 1}, "stop": {"_count": 1}, "draw": {"_count": 1}, "attend": {"_count": 1}, "shut": {"_count": 1}, "see": {"_count": 3}, "use": {"_count": 1}, "grow": {"_count": 1}, "remain": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "confide": {"_count": 1}, "die": {"_count": 2}, "introduce": {"_count": 1}, "act": {"_count": 1}, "discuss": {"_count": 1}, "kill": {"_count": 1}, "walk": {"_count": 1}, "dispose": {"_count": 1}}, "stuffed": {"_count": 1, "full": {"_count": 1}}, "protected": {"_count": 1, "wherever": {"_count": 1}}, "colder": {"_count": 1, "here": {"_count": 1}}, "Hermione": {"_count": 13, "s": {"_count": 1}, "Granger": {"_count": 2}, "": {"_count": 3}, "who": {"_count": 5}, "running": {"_count": 2}}, "seeping": {"_count": 1, "across": {"_count": 1}}, "racing": {"_count": 9, "and": {"_count": 1}, "": {"_count": 4}, "through": {"_count": 1}, "again": {"_count": 1}, "ahead": {"_count": 1}, "as": {"_count": 1}}, "boiling": {"_count": 1, "on": {"_count": 1}}, "clearly": {"_count": 23, "not": {"_count": 1}, "steeling": {"_count": 1}, "bawling": {"_count": 1}, "still": {"_count": 1}, "full": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 1}, "raining": {"_count": 1}, "as": {"_count": 1}, "exam": {"_count": 1}, "unpopular": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 1}, "heard": {"_count": 1}, "an": {"_count": 2}, "supposed": {"_count": 3}, "shrieking": {"_count": 1}, "causing": {"_count": 1}, "under": {"_count": 1}, "etched": {"_count": 1}}, "pouring": {"_count": 5, "boiling": {"_count": 1}, "inside": {"_count": 1}, "over": {"_count": 1}, "out": {"_count": 1}, "from": {"_count": 1}}, "searched": {"_count": 2, "had": {"_count": 2}}, "it": {"_count": 72, "now": {"_count": 1}, "was": {"_count": 6}, "a": {"_count": 3}, "": {"_count": 17}, "to": {"_count": 1}, "with": {"_count": 1}, "last": {"_count": 1}, "they": {"_count": 2}, "only": {"_count": 1}, "looks": {"_count": 1}, "though": {"_count": 1}, "just": {"_count": 1}, "like": {"_count": 2}, "Potter": {"_count": 1}, "not": {"_count": 2}, "within": {"_count": 1}, "merely": {"_count": 1}, "Wormtail": {"_count": 1}, "that": {"_count": 4}, "youknow": {"_count": 1}, "three": {"_count": 1}, "kept": {"_count": 1}, "Potters": {"_count": 1}, "you": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 2}, "possible": {"_count": 3}, "at": {"_count": 1}, "had": {"_count": 2}, "Neville": {"_count": 1}, "simply": {"_count": 1}, "something": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}, "lost": {"_count": 1}, "so": {"_count": 1}, "Voldemorts": {"_count": 1}, "seems": {"_count": 1}, "when": {"_count": 1}}, "before": {"_count": 8, "he": {"_count": 2}, "I": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 1}, "carpets": {"_count": 1}, "Firenze": {"_count": 1}, "Albus": {"_count": 1}}, "exciting": {"_count": 1, "about": {"_count": 1}}, "interrupted": {"_count": 7, "by": {"_count": 5}, "": {"_count": 1}, "again": {"_count": 1}}, "old": {"_count": 4, "and": {"_count": 2}, "said": {"_count": 1}, "she": {"_count": 1}}, "rising": {"_count": 18, "straight": {"_count": 1}, "around": {"_count": 1}, "gently": {"_count": 1}, "again": {"_count": 2}, "rapidly": {"_count": 2}, "like": {"_count": 1}, "from": {"_count": 2}, "inside": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "properly": {"_count": 1}, "up": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}, "over": {"_count": 1}}, "bending": {"_count": 8, "over": {"_count": 8}}, "pounding": {"_count": 10, "in": {"_count": 2}, "far": {"_count": 1}, "furiously": {"_count": 1}, "uncomfortably": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}, "against": {"_count": 1}, "harder": {"_count": 1}}, "easy": {"_count": 9, "this": {"_count": 1}, "really": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 2}, "once": {"_count": 1}, "said": {"_count": 2}, "too": {"_count": 1}}, "wonderful": {"_count": 3, "": {"_count": 1}, "no": {"_count": 1}, "about": {"_count": 1}}, "gathering": {"_count": 4, "speed": {"_count": 2}, "strength": {"_count": 1}, "still": {"_count": 1}}, "running": {"_count": 22, "toward": {"_count": 3}, "around": {"_count": 1}, "down": {"_count": 1}, "flat": {"_count": 1}, "one": {"_count": 2}, "his": {"_count": 2}, "to": {"_count": 2}, "along": {"_count": 2}, "again": {"_count": 1}, "high": {"_count": 1}, "out": {"_count": 2}, "extremely": {"_count": 1}, "across": {"_count": 1}, "it": {"_count": 1}, "away": {"_count": 1}}, "sweeping": {"_count": 5, "along": {"_count": 1}, "about": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}, "him": {"_count": 1}}, "taking": {"_count": 20, "him": {"_count": 2}, "the": {"_count": 2}, "great": {"_count": 1}, "deep": {"_count": 1}, "more": {"_count": 2}, "over": {"_count": 1}, "full": {"_count": 1}, "place": {"_count": 1}, "for": {"_count": 1}, "everything": {"_count": 1}, "orders": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 2}, "Luna": {"_count": 2}, "advantage": {"_count": 1}}, "Wood": {"_count": 1, "a": {"_count": 1}}, "dinnertime": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 12, "course": {"_count": 5}, "a": {"_count": 1}, "Mr": {"_count": 1}, "the": {"_count": 1}, "looking": {"_count": 1}, "gratitude": {"_count": 1}, "Ron": {"_count": 1}, "his": {"_count": 1}}, "locked": {"_count": 13, "out": {"_count": 1}, "": {"_count": 4}, "in": {"_count": 5}, "and": {"_count": 1}, "up": {"_count": 1}, "from": {"_count": 1}}, "Neville": {"_count": 3, "": {"_count": 1}, "Crabbe": {"_count": 1}, "Longbottom": {"_count": 1}}, "curled": {"_count": 11, "up": {"_count": 7}, "over": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}, "like": {"_count": 1}}, "Filch": {"_count": 3, "speaking": {"_count": 1}, "must": {"_count": 1}, "sniffing": {"_count": 1}}, "following": {"_count": 5, "they": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 2}, "along": {"_count": 1}}, "miles": {"_count": 3, "from": {"_count": 1}, "away": {"_count": 1}, "ahead": {"_count": 1}}, "bent": {"_count": 6, "double": {"_count": 2}, "almost": {"_count": 2}, "over": {"_count": 1}, "low": {"_count": 1}}, "Peeves": {"_count": 5, "": {"_count": 1}, "the": {"_count": 2}, "usually": {"_count": 1}, "and": {"_count": 1}}, "quickly": {"_count": 2, "getting": {"_count": 1}, "stifled": {"_count": 1}}, "put": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "guarding": {"_count": 4, "something": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}}, "without": {"_count": 4, "further": {"_count": 1}, "a": {"_count": 1}, "real": {"_count": 1}, "asking": {"_count": 1}}, "such": {"_count": 15, "a": {"_count": 10}, "an": {"_count": 1}, "that": {"_count": 3}, "tenderness": {"_count": 1}}, "caught": {"_count": 13, "at": {"_count": 1}, "": {"_count": 3}, "if": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "smuggling": {"_count": 1}, "with": {"_count": 1}, "shortly": {"_count": 2}, "by": {"_count": 2}}, "amazed": {"_count": 4, "when": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}}, "stomping": {"_count": 1, "up": {"_count": 1}}, "eating": {"_count": 8, "and": {"_count": 2}, "the": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "breakfast": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}}, "carrying": {"_count": 40, "a": {"_count": 14}, "him": {"_count": 2}, "his": {"_count": 2}, "tumbled": {"_count": 1}, "one": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 1}, "an": {"_count": 4}, "this": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 3}, "some": {"_count": 1}, "something": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 3}, "nothing": {"_count": 1}, "Bill": {"_count": 1}, "out": {"_count": 1}}, "determined": {"_count": 18, "to": {"_count": 13}, "on": {"_count": 1}, "not": {"_count": 1}, "never": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}}, "tiny": {"_count": 2, "about": {"_count": 1}, "in": {"_count": 1}}, "bright": {"_count": 4, "gold": {"_count": 1}, "but": {"_count": 1}, "red": {"_count": 1}, "inside": {"_count": 1}}, "delighted": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "to": {"_count": 2}, "by": {"_count": 1}}, "Seamus": {"_count": 3, "Finnigan": {"_count": 2}, "Dean": {"_count": 1}}, "angrier": {"_count": 2, "about": {"_count": 1}, "with": {"_count": 1}}, "startled": {"_count": 2, "to": {"_count": 1}, "at": {"_count": 1}}, "moving": {"_count": 37, "toward": {"_count": 2}, "inside": {"_count": 1}, "the": {"_count": 2}, "along": {"_count": 2}, "away": {"_count": 1}, "smoothly": {"_count": 1}, "": {"_count": 2}, "again": {"_count": 1}, "in": {"_count": 3}, "downstairs": {"_count": 1}, "across": {"_count": 1}, "ceaselessly": {"_count": 2}, "a": {"_count": 1}, "everything": {"_count": 1}, "but": {"_count": 2}, "so": {"_count": 3}, "around": {"_count": 1}, "gingerly": {"_count": 1}, "continuously": {"_count": 1}, "except": {"_count": 1}, "slowly": {"_count": 2}, "up": {"_count": 1}, "quickly": {"_count": 1}, "soundlessly": {"_count": 1}, "gradually": {"_count": 1}, "not": {"_count": 1}}, "shrinking": {"_count": 3, "against": {"_count": 1}, "rapidly": {"_count": 1}, "very": {"_count": 1}}, "advancing": {"_count": 3, "on": {"_count": 2}, "menacingly": {"_count": 1}}, "nearest": {"_count": 5, "and": {"_count": 2}, "the": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "both": {"_count": 6, "very": {"_count": 1}, "boring": {"_count": 1}, "an": {"_count": 1}, "clumsy": {"_count": 1}, "furtive": {"_count": 1}, "kin": {"_count": 1}}, "covered": {"_count": 24, "in": {"_count": 16}, "with": {"_count": 6}, "": {"_count": 2}}, "speechless": {"_count": 1, "": {"_count": 1}}, "pretending": {"_count": 6, "she": {"_count": 1}, "to": {"_count": 5}}, "packed": {"_count": 14, "and": {"_count": 2}, "with": {"_count": 8}, "mainly": {"_count": 1}, "Hedwig": {"_count": 1}, "to": {"_count": 1}, "far": {"_count": 1}}, "playing": {"_count": 8, "Seeker": {"_count": 1}, "Quidditch": {"_count": 2}, "him": {"_count": 1}, "in": {"_count": 1}, "chess": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "making": {"_count": 51, "them": {"_count": 1}, "more": {"_count": 1}, "his": {"_count": 4}, "loud": {"_count": 1}, "him": {"_count": 4}, "no": {"_count": 2}, "frantic": {"_count": 1}, "a": {"_count": 8}, "the": {"_count": 3}, "all": {"_count": 1}, "Mr": {"_count": 1}, "an": {"_count": 2}, "even": {"_count": 1}, "to": {"_count": 1}, "sure": {"_count": 1}, "Dudley": {"_count": 1}, "rather": {"_count": 1}, "notes": {"_count": 1}, "another": {"_count": 1}, "very": {"_count": 1}, "during": {"_count": 1}, "Harry": {"_count": 2}, "as": {"_count": 1}, "her": {"_count": 1}, "himself": {"_count": 2}, "squeaky": {"_count": 1}, "fun": {"_count": 1}, "retching": {"_count": 1}, "it": {"_count": 1}, "such": {"_count": 1}, "on": {"_count": 1}, "suggestions": {"_count": 1}}, "much": {"_count": 48, "nicer": {"_count": 1}, "darker": {"_count": 1}, "too": {"_count": 11}, "taller": {"_count": 2}, "less": {"_count": 4}, "harder": {"_count": 2}, "quieter": {"_count": 2}, "deeper": {"_count": 1}, "warmer": {"_count": 1}, "nearer": {"_count": 1}, "smaller": {"_count": 2}, "longer": {"_count": 1}, "faster": {"_count": 1}, "more": {"_count": 5}, "mistaken": {"_count": 1}, "larger": {"_count": 2}, "brighter": {"_count": 1}, "muttering": {"_count": 1}, "talk": {"_count": 1}, "keener": {"_count": 1}, "tidier": {"_count": 1}, "easier": {"_count": 2}, "bigger": {"_count": 1}, "altered": {"_count": 1}, "pushing": {"_count": 1}}, "limping": {"_count": 5, "": {"_count": 1}, "down": {"_count": 1}, "toward": {"_count": 1}, "rapidly": {"_count": 1}, "along": {"_count": 1}}, "Quidditch": {"_count": 5, "Through": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "practice": {"_count": 1}}, "bloody": {"_count": 1, "and": {"_count": 1}}, "handing": {"_count": 2, "Snape": {"_count": 1}, "out": {"_count": 1}}, "twisted": {"_count": 2, "with": {"_count": 1}, "spit": {"_count": 1}}, "keeping": {"_count": 9, "safe": {"_count": 1}, "him": {"_count": 1}, "Madame": {"_count": 1}, "watch": {"_count": 1}, "me": {"_count": 1}, "Harry": {"_count": 1}, "an": {"_count": 1}, "locked": {"_count": 1}, "his": {"_count": 1}}, "snoring": {"_count": 3, "loudly": {"_count": 2}, "a": {"_count": 1}}, "refereeing": {"_count": 1, "": {"_count": 1}}, "gliding": {"_count": 11, "over": {"_count": 1}, "smoothly": {"_count": 1}, "along": {"_count": 3}, "between": {"_count": 1}, "toward": {"_count": 3}, "around": {"_count": 1}, "amongst": {"_count": 1}}, "part": {"_count": 3, "of": {"_count": 2}, "veela": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "yelling": {"_count": 13, "Send": {"_count": 1}, "so": {"_count": 1}, "at": {"_count": 1}, "Where": {"_count": 1}, "there": {"_count": 1}, "Did": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "too": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}, "but": {"_count": 1}}, "finding": {"_count": 13, "it": {"_count": 8}, "the": {"_count": 2}, "this": {"_count": 1}, "Snape": {"_count": 1}, "these": {"_count": 1}}, "completely": {"_count": 19, "out": {"_count": 2}, "lost": {"_count": 1}, "thrown": {"_count": 1}, "hidden": {"_count": 1}, "empty": {"_count": 2}, "devoid": {"_count": 1}, "useless": {"_count": 1}, "silent": {"_count": 2}, "ignoring": {"_count": 1}, "obscured": {"_count": 1}, "naked": {"_count": 1}, "insane": {"_count": 1}, "covering": {"_count": 1}, "bloodless": {"_count": 1}, "unexpected": {"_count": 1}, "deserted": {"_count": 1}}, "zigzagging": {"_count": 2, "through": {"_count": 1}, "far": {"_count": 1}}, "behaving": {"_count": 5, "strangely": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}}, "muttering": {"_count": 7, "nonstop": {"_count": 1}, "instructions": {"_count": 1}, "to": {"_count": 1}, "distractedly": {"_count": 1}, "imprecations": {"_count": 1}, "Specialis": {"_count": 1}, "incantations": {"_count": 1}}, "vibrating": {"_count": 5, "so": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "extra": {"_count": 1}, "Xenophilius": {"_count": 1}}, "enough": {"_count": 5, "": {"_count": 1}, "to": {"_count": 3}, "of": {"_count": 1}}, "speeding": {"_count": 8, "toward": {"_count": 4}, "up": {"_count": 1}, "him": {"_count": 1}, "along": {"_count": 1}, "like": {"_count": 1}}, "Snape": {"_count": 14, "Ron": {"_count": 1}, "who": {"_count": 3}, "": {"_count": 6}, "definitely": {"_count": 1}, "looking": {"_count": 1}, "doin": {"_count": 1}, "s": {"_count": 1}}, "explaining": {"_count": 2, "Hermione": {"_count": 1}, "something": {"_count": 1}}, "cursing": {"_count": 2, "your": {"_count": 1}, "fluently": {"_count": 1}}, "behind": {"_count": 8, "it": {"_count": 2}, "them": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 2}, "her": {"_count": 1}, "a": {"_count": 1}}, "provoked": {"_count": 1, "Professor": {"_count": 1}}, "insultin": {"_count": 1, "his": {"_count": 1}}, "trailing": {"_count": 3, "them": {"_count": 1}, "out": {"_count": 1}, "on": {"_count": 1}}, "missing": {"_count": 14, "too": {"_count": 1}, "": {"_count": 6}, "several": {"_count": 2}, "something": {"_count": 1}, "Hagrid": {"_count": 1}, "Malfoy": {"_count": 1}, "scooped": {"_count": 1}, "the": {"_count": 1}}, "far": {"_count": 12, "emptier": {"_count": 1}, "easier": {"_count": 2}, "from": {"_count": 3}, "too": {"_count": 4}, "more": {"_count": 1}, "beyond": {"_count": 1}}, "exactly": {"_count": 14, "like": {"_count": 4}, "what": {"_count": 3}, "the": {"_count": 4}, "how": {"_count": 1}, "as": {"_count": 2}}, "confusing": {"_count": 1, "": {"_count": 1}}, "wrapped": {"_count": 5, "in": {"_count": 5}}, "To": {"_count": 1, "Harry": {"_count": 1}}, "fascinated": {"_count": 2, "by": {"_count": 1}, "but": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "admiring": {"_count": 1, "the": {"_count": 1}}, "flung": {"_count": 5, "open": {"_count": 3}, "wide": {"_count": 1}, "into": {"_count": 1}}, "chuckling": {"_count": 2, "merrily": {"_count": 1}, "immoderately": {"_count": 1}}, "laden": {"_count": 1, "down": {"_count": 1}}, "pitchblack": {"_count": 4, "and": {"_count": 2}, "": {"_count": 2}}, "screaming": {"_count": 18, "": {"_count": 1}, "screaming": {"_count": 1}, "and": {"_count": 5}, "its": {"_count": 1}, "itself": {"_count": 1}, "Ron": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}, "for": {"_count": 1}, "more": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 1}, "worse": {"_count": 1}, "inside": {"_count": 1}}, "dark": {"_count": 11, "he": {"_count": 1}, "and": {"_count": 3}, "in": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 2}, "yet": {"_count": 1}, "water": {"_count": 1}, "except": {"_count": 1}}, "wandering": {"_count": 3, "around": {"_count": 3}}, "reflected": {"_count": 3, "in": {"_count": 2}, "twice": {"_count": 1}}, "wise": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "none": {"_count": 3, "other": {"_count": 2}, "too": {"_count": 1}}, "torn": {"_count": 2, "between": {"_count": 1}, "and": {"_count": 1}}, "tired": {"_count": 5, "out": {"_count": 1}, "of": {"_count": 3}, "but": {"_count": 1}}, "anyones": {"_count": 1, "guess": {"_count": 1}}, "dashing": {"_count": 3, "back": {"_count": 1}, "past": {"_count": 1}, "across": {"_count": 1}}, "after": {"_count": 16, "it": {"_count": 1}, "your": {"_count": 1}, "him": {"_count": 2}, "them": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}, "Snape": {"_count": 1}, "all": {"_count": 7}}, "safe": {"_count": 15, "": {"_count": 3}, "to": {"_count": 5}, "and": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 1}, "Felix": {"_count": 1}, "really": {"_count": 1}, "it": {"_count": 1}}, "simply": {"_count": 11, "no": {"_count": 2}, "overreacting": {"_count": 1}, "a": {"_count": 1}, "standing": {"_count": 1}, "speeding": {"_count": 1}, "weird": {"_count": 1}, "pretending": {"_count": 1}, "odd": {"_count": 1}, "because": {"_count": 1}, "spell": {"_count": 1}}, "squinting": {"_count": 5, "fixedly": {"_count": 1}, "up": {"_count": 1}, "suspiciously": {"_count": 1}, "over": {"_count": 1}, "in": {"_count": 1}}, "circling": {"_count": 6, "the": {"_count": 2}, "its": {"_count": 1}, "around": {"_count": 1}, "Harry": {"_count": 1}, "continuously": {"_count": 1}}, "stuttering": {"_count": 1, "worse": {"_count": 1}}, "mumbling": {"_count": 2, "something": {"_count": 1}, "to": {"_count": 1}}, "petrified": {"_count": 3, "": {"_count": 2}, "YouKnowWho": {"_count": 1}}, "outlawed": {"_count": 1, "by": {"_count": 1}}, "stifling": {"_count": 1, "hot": {"_count": 1}}, "humming": {"_count": 4, "merrily": {"_count": 1}, "slightly": {"_count": 1}, "and": {"_count": 1}, "quietly": {"_count": 1}}, "hiding": {"_count": 13, "an": {"_count": 1}, "them": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 3}, "under": {"_count": 1}, "trying": {"_count": 1}, "something": {"_count": 1}, "her": {"_count": 1}, "simply": {"_count": 1}, "from": {"_count": 1}}, "driving": {"_count": 4, "them": {"_count": 1}, "down": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}}, "lookin": {"_count": 2, "through": {"_count": 1}, "fer": {"_count": 1}}, "singing": {"_count": 5, "it": {"_count": 1}, "in": {"_count": 2}, "a": {"_count": 1}, "and": {"_count": 1}}, "having": {"_count": 27, "his": {"_count": 2}, "far": {"_count": 2}, "nightmares": {"_count": 1}, "trouble": {"_count": 2}, "a": {"_count": 7}, "my": {"_count": 1}, "once": {"_count": 1}, "no": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}, "real": {"_count": 2}, "such": {"_count": 1}, "difficulty": {"_count": 2}, "enough": {"_count": 1}, "problems": {"_count": 1}, "to": {"_count": 1}}, "trembling": {"_count": 21, "": {"_count": 10}, "as": {"_count": 1}, "under": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 3}, "with": {"_count": 1}, "slightly": {"_count": 1}, "ominously": {"_count": 1}, "unable": {"_count": 1}, "on": {"_count": 1}}, "outofbounds": {"_count": 1, "except": {"_count": 1}}, "wrong": {"_count": 21, "": {"_count": 8}, "as": {"_count": 1}, "said": {"_count": 1}, "however": {"_count": 1}, "with": {"_count": 3}, "the": {"_count": 1}, "whenever": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}, "Harper": {"_count": 1}, "his": {"_count": 1}, "dived": {"_count": 1}}, "leading": {"_count": 11, "Neville": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 1}, "them": {"_count": 2}, "her": {"_count": 1}, "him": {"_count": 3}}, "dreading": {"_count": 2, "the": {"_count": 2}}, "halfway": {"_count": 19, "toward": {"_count": 2}, "through": {"_count": 6}, "down": {"_count": 2}, "along": {"_count": 2}, "across": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 2}, "between": {"_count": 1}}, "testing": {"_count": 1, "Ron": {"_count": 1}}, "kindling": {"_count": 2, "again": {"_count": 1}, "a": {"_count": 1}}, "nowhere": {"_count": 14, "near": {"_count": 7}, "to": {"_count": 7}}, "black": {"_count": 3, "and": {"_count": 2}, "including": {"_count": 1}}, "slithering": {"_count": 3, "over": {"_count": 1}, "up": {"_count": 1}, "toward": {"_count": 1}}, "meanin": {"_count": 1, "anythin": {"_count": 1}}, "whats": {"_count": 1, "bin": {"_count": 1}}, "fuming": {"_count": 1, "": {"_count": 1}}, "gleaming": {"_count": 5, "on": {"_count": 3}, "behind": {"_count": 1}, "in": {"_count": 1}}, "dead": {"_count": 29, "": {"_count": 16}, "for": {"_count": 1}, "before": {"_count": 1}, "center": {"_count": 1}, "chuffed": {"_count": 1}, "it": {"_count": 2}, "but": {"_count": 2}, "in": {"_count": 1}, "gone": {"_count": 1}, "and": {"_count": 1}, "how": {"_count": 1}, "killed": {"_count": 1}}, "spread": {"_count": 3, "pearlywhite": {"_count": 1}, "out": {"_count": 1}, "ou": {"_count": 1}}, "dribbling": {"_count": 2, "down": {"_count": 1}, "from": {"_count": 1}}, "acting": {"_count": 7, "for": {"_count": 1}, "through": {"_count": 1}, "as": {"_count": 3}, "very": {"_count": 1}, "of": {"_count": 1}}, "killed": {"_count": 9, "": {"_count": 3}, "was": {"_count": 1}, "in": {"_count": 1}, "two": {"_count": 1}, "we": {"_count": 1}, "as": {"_count": 1}, "while": {"_count": 1}}, "dappled": {"_count": 1, "silver": {"_count": 1}}, "VoZ": {"_count": 1, "Harry": {"_count": 1}}, "wide": {"_count": 1, "eyed": {"_count": 1}}, "furious": {"_count": 9, "": {"_count": 4}, "theyd": {"_count": 1}, "with": {"_count": 3}, "about": {"_count": 1}}, "sweltering": {"_count": 1, "hot": {"_count": 1}}, "basking": {"_count": 2, "in": {"_count": 2}}, "rubbing": {"_count": 4, "his": {"_count": 3}, "at": {"_count": 1}}, "shelling": {"_count": 1, "peas": {"_count": 1}}, "gamekeeper": {"_count": 1, "here": {"_count": 1}}, "either": {"_count": 4, "Snape": {"_count": 1}, "a": {"_count": 1}, "so": {"_count": 1}, "very": {"_count": 1}}, "Professor": {"_count": 10, "McGonagall": {"_count": 4}, "Dumbledore": {"_count": 3}, "Trelawney": {"_count": 1}, "McGonagalls": {"_count": 1}, "Binns": {"_count": 1}}, "skimming": {"_count": 2, "through": {"_count": 1}, "eagerly": {"_count": 1}}, "bobbing": {"_count": 7, "halfway": {"_count": 1}, "overhead": {"_count": 2}, "in": {"_count": 1}, "like": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}}, "facing": {"_count": 14, "them": {"_count": 1}, "an": {"_count": 1}, "twelve": {"_count": 1}, "Frank": {"_count": 1}, "competitors": {"_count": 1}, "the": {"_count": 4}, "him": {"_count": 1}, "most": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}}, "reminded": {"_count": 8, "of": {"_count": 4}, "forcibly": {"_count": 2}, "unpleasantly": {"_count": 1}, "irresistibly": {"_count": 1}}, "taken": {"_count": 16, "": {"_count": 2}, "away": {"_count": 3}, "aback": {"_count": 1}, "by": {"_count": 2}, "jus": {"_count": 1}, "from": {"_count": 2}, "they": {"_count": 1}, "up": {"_count": 2}, "into": {"_count": 1}, "out": {"_count": 1}}, "lost": {"_count": 10, "the": {"_count": 1}, "and": {"_count": 1}, "covered": {"_count": 1}, "Floo": {"_count": 1}, "what": {"_count": 1}, "in": {"_count": 1}, "when": {"_count": 1}, "amid": {"_count": 1}, "Finally": {"_count": 1}, "Harry": {"_count": 1}}, "purple": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "indeed": {"_count": 11, "as": {"_count": 1}, "odd": {"_count": 1}, "a": {"_count": 2}, "squeezing": {"_count": 1}, "waving": {"_count": 1}, "empty": {"_count": 1}, "having": {"_count": 1}, "Katie": {"_count": 1}, "blocked": {"_count": 1}, "an": {"_count": 1}}, "flooding": {"_count": 5, "his": {"_count": 1}, "through": {"_count": 2}, "them": {"_count": 1}, "with": {"_count": 1}}, "Quirrell": {"_count": 2, "": {"_count": 2}}, "then": {"_count": 6, "full": {"_count": 1}, "That": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 2}, "Voldemort": {"_count": 1}}, "remembering": {"_count": 5, "his": {"_count": 1}, "the": {"_count": 2}, "taking": {"_count": 1}, "them": {"_count": 1}}, "rooting": {"_count": 1, "him": {"_count": 1}}, "chalk": {"_count": 1, "white": {"_count": 1}}, "building": {"_count": 3, "he": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "you": {"_count": 17, "": {"_count": 5}, "said": {"_count": 2}, "speaking": {"_count": 1}, "the": {"_count": 1}, "know": {"_count": 1}, "who": {"_count": 2}, "really": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "doing": {"_count": 1}}, "agony": {"_count": 3, "to": {"_count": 1}, "such": {"_count": 1}, "It": {"_count": 1}}, "here": {"_count": 34, "": {"_count": 13}, "on": {"_count": 1}, "first": {"_count": 1}, "no": {"_count": 1}, "at": {"_count": 3}, "he": {"_count": 4}, "in": {"_count": 3}, "Snivellus": {"_count": 1}, "because": {"_count": 1}, "last": {"_count": 1}, "somewhere": {"_count": 1}, "if": {"_count": 1}, "again": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}}, "unfortunate": {"_count": 1, "enough": {"_count": 1}}, "under": {"_count": 21, "Quirrells": {"_count": 1}, "pressure": {"_count": 1}, "the": {"_count": 13}, "a": {"_count": 1}, "great": {"_count": 1}, "my": {"_count": 1}, "orders": {"_count": 1}, "attack": {"_count": 1}, "loads": {"_count": 1}}, "indoors": {"_count": 1, "Hagrid": {"_count": 1}}, "decked": {"_count": 1, "out": {"_count": 1}}, "deafening": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "mean": {"_count": 1, "might": {"_count": 1}}, "found": {"_count": 6, "lurking": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "because": {"_count": 1}}, "Ginny": {"_count": 9, "Weasley": {"_count": 1}, "": {"_count": 3}, "who": {"_count": 4}, "running": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 1}, "Vernons": {"_count": 1}}, "spreading": {"_count": 7, "over": {"_count": 1}, "poison": {"_count": 1}, "slowly": {"_count": 1}, "throughout": {"_count": 1}, "through": {"_count": 2}, "across": {"_count": 1}}, "large": {"_count": 8, "and": {"_count": 5}, "round": {"_count": 1}, "rather": {"_count": 1}, "dimly": {"_count": 1}}, "horsefaced": {"_count": 1, "and": {"_count": 1}}, "blond": {"_count": 2, "pink": {"_count": 1}, "and": {"_count": 1}}, "small": {"_count": 9, "and": {"_count": 5}, "dark": {"_count": 2}, "consolation": {"_count": 1}, "but": {"_count": 1}}, "half": {"_count": 15, "past": {"_count": 2}, "off": {"_count": 1}, "horse": {"_count": 1}, "right": {"_count": 1}, "asleep": {"_count": 1}, "an": {"_count": 1}, "pulling": {"_count": 1}, "concealed": {"_count": 1}, "formed": {"_count": 1}, "strangling": {"_count": 1}, "a": {"_count": 1}, "tempted": {"_count": 1}, "sobbing": {"_count": 1}, "buried": {"_count": 1}}, "sizzling": {"_count": 1, "in": {"_count": 1}}, "beating": {"_count": 7, "her": {"_count": 1}, "a": {"_count": 1}, "rather": {"_count": 2}, "fast": {"_count": 1}, "very": {"_count": 2}}, "feeling": {"_count": 29, "distinctly": {"_count": 1}, "a": {"_count": 3}, "very": {"_count": 1}, "extremely": {"_count": 1}, "so": {"_count": 2}, "really": {"_count": 1}, "admittedly": {"_count": 1}, "uncomfortably": {"_count": 1}, "pleasantly": {"_count": 1}, "at": {"_count": 2}, "much": {"_count": 1}, "ashamed": {"_count": 1}, "slightly": {"_count": 1}, "hatred": {"_count": 1}, "": {"_count": 3}, "more": {"_count": 1}, "sick": {"_count": 1}, "jumpy": {"_count": 1}, "about": {"_count": 1}, "sorry": {"_count": 1}, "was": {"_count": 1}, "guilty": {"_count": 1}, "because": {"_count": 1}}, "painful": {"_count": 4, "": {"_count": 3}, "too": {"_count": 1}}, "from": {"_count": 11, "the": {"_count": 2}, "Snapes": {"_count": 1}, "Hagrid": {"_count": 1}, "him": {"_count": 2}, "my": {"_count": 1}, "Dumbledore": {"_count": 2}, "nor": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "mortally": {"_count": 1, "afraid": {"_count": 1}}, "their": {"_count": 11, "idea": {"_count": 2}, "only": {"_count": 2}, "job": {"_count": 1}, "Divination": {"_count": 1}, "second": {"_count": 1}, "neighbor": {"_count": 1}, "first": {"_count": 1}, "one": {"_count": 1}, "arms": {"_count": 1}}, "bearing": {"_count": 3, "down": {"_count": 2}, "a": {"_count": 1}}, "stone": {"_count": 2, "cold": {"_count": 1}, "beneath": {"_count": 1}}, "growing": {"_count": 20, "dark": {"_count": 3}, "fainter": {"_count": 1}, "louder": {"_count": 4}, "": {"_count": 1}, "darker": {"_count": 1}, "stronger": {"_count": 1}, "clearer": {"_count": 1}, "ever": {"_count": 1}, "steadily": {"_count": 1}, "rather": {"_count": 1}, "numb": {"_count": 1}, "lighter": {"_count": 1}, "bushier": {"_count": 1}, "brighter": {"_count": 1}, "deafening": {"_count": 1}}, "shining": {"_count": 10, "through": {"_count": 1}, "on": {"_count": 1}, "all": {"_count": 1}, "with": {"_count": 2}, "so": {"_count": 1}, "brightly": {"_count": 2}, "slightly": {"_count": 1}, "over": {"_count": 1}}, "goggling": {"_count": 3, "through": {"_count": 1}, "at": {"_count": 2}}, "seeing": {"_count": 13, "hit": {"_count": 1}, "": {"_count": 5}, "something": {"_count": 1}, "things": {"_count": 1}, "him": {"_count": 2}, "bonfires": {"_count": 1}, "before": {"_count": 1}, "James": {"_count": 1}}, "leaning": {"_count": 14, "out": {"_count": 2}, "against": {"_count": 5}, "away": {"_count": 1}, "on": {"_count": 4}, "back": {"_count": 1}, "over": {"_count": 1}}, "parked": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "scrambling": {"_count": 2, "back": {"_count": 1}, "down": {"_count": 1}}, "free": {"_count": 10, "": {"_count": 3}, "of": {"_count": 2}, "to": {"_count": 1}, "wasnt": {"_count": 2}, "and": {"_count": 1}, "Harrys": {"_count": 1}}, "sent": {"_count": 7, "to": {"_count": 5}, "anonymously": {"_count": 1}, "here": {"_count": 1}}, "rolling": {"_count": 6, "in": {"_count": 2}, "up": {"_count": 2}, "his": {"_count": 1}, "through": {"_count": 1}}, "Errols": {"_count": 1, "fault": {"_count": 1}}, "sold": {"_count": 1, "to": {"_count": 1}}, "visible": {"_count": 18, "along": {"_count": 1}, "over": {"_count": 1}, "only": {"_count": 2}, "beneath": {"_count": 1}, "through": {"_count": 1}, "beyond": {"_count": 1}, "": {"_count": 3}, "on": {"_count": 1}, "almost": {"_count": 1}, "poking": {"_count": 1}, "of": {"_count": 1}, "between": {"_count": 2}, "to": {"_count": 2}}, "several": {"_count": 9, "stories": {"_count": 1}, "streets": {"_count": 1}, "minutes": {"_count": 3}, "shelves": {"_count": 1}, "seconds": {"_count": 2}, "moments": {"_count": 1}}, "marching": {"_count": 3, "across": {"_count": 1}, "on": {"_count": 1}, "slowly": {"_count": 1}}, "remarkable": {"_count": 2, "how": {"_count": 2}}, "Witching": {"_count": 1, "Hour": {"_count": 1}}, "clattering": {"_count": 1, "around": {"_count": 1}}, "cloudy": {"_count": 1, "Mum": {"_count": 1}}, "with": {"_count": 30, "a": {"_count": 4}, "relief": {"_count": 1}, "us": {"_count": 2}, "them": {"_count": 6}, "Fred": {"_count": 1}, "him": {"_count": 2}, "her": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 2}, "Cedric": {"_count": 1}, "Rookwood": {"_count": 1}, "an": {"_count": 1}, "Grawp": {"_count": 1}, "his": {"_count": 1}, "horror": {"_count": 1}, "ill": {"_count": 1}, "quickening": {"_count": 1}, "Travers": {"_count": 1}, "magic": {"_count": 1}}, "said": {"_count": 20, "until": {"_count": 1}, "Fudge": {"_count": 3}, "Fred": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 6}, "Hagrid": {"_count": 1}, "Ginny": {"_count": 1}, "McLaggen": {"_count": 1}, "Doge": {"_count": 1}, "Dirk": {"_count": 2}, "Im": {"_count": 1}, "Aberforth": {"_count": 1}}, "Gilderoy": {"_count": 1, "Lockhart": {"_count": 1}}, "certainly": {"_count": 14, "nothing": {"_count": 1}, "how": {"_count": 1}, "talking": {"_count": 1}, "telling": {"_count": 1}, "known": {"_count": 1}, "not": {"_count": 2}, "much": {"_count": 2}, "an": {"_count": 1}, "bad": {"_count": 1}, "dirty": {"_count": 1}, "intrigued": {"_count": 1}, "quick": {"_count": 1}}, "soon": {"_count": 14, "thick": {"_count": 1}, "far": {"_count": 1}, "twenty": {"_count": 1}, "back": {"_count": 1}, "tugging": {"_count": 1}, "yelling": {"_count": 1}, "returned": {"_count": 1}, "": {"_count": 1}, "followed": {"_count": 1}, "full": {"_count": 1}, "surrounded": {"_count": 1}, "given": {"_count": 1}, "in": {"_count": 1}, "opening": {"_count": 1}}, "slumped": {"_count": 5, "in": {"_count": 3}, "on": {"_count": 1}, "forward": {"_count": 1}}, "take": {"_count": 1, "it": {"_count": 1}}, "enchanting": {"_count": 1, "it": {"_count": 1}}, "emblazoned": {"_count": 2, "with": {"_count": 2}}, "snoozing": {"_count": 3, "in": {"_count": 2}, "and": {"_count": 1}}, "until": {"_count": 3, "he": {"_count": 1}, "Monday": {"_count": 1}, "the": {"_count": 1}}, "breathing": {"_count": 9, "": {"_count": 1}, "deeply": {"_count": 1}, "fast": {"_count": 1}, "heavily": {"_count": 2}, "in": {"_count": 3}, "very": {"_count": 1}}, "easily": {"_count": 5, "the": {"_count": 4}, "his": {"_count": 1}}, "often": {"_count": 4, "outstripped": {"_count": 1}, "described": {"_count": 1}, "rather": {"_count": 1}, "predicted": {"_count": 1}}, "definitely": {"_count": 22, "not": {"_count": 1}, "a": {"_count": 5}, "thin": {"_count": 1}, "alive": {"_count": 1}, "good": {"_count": 1}, "no": {"_count": 2}, "out": {"_count": 1}, "something": {"_count": 2}, "thinning": {"_count": 1}, "caught": {"_count": 1}, "true": {"_count": 1}, "one": {"_count": 1}, "offering": {"_count": 1}, "up": {"_count": 1}, "part": {"_count": 1}, "on": {"_count": 1}}, "alive": {"_count": 13, "with": {"_count": 2}, "": {"_count": 7}, "but": {"_count": 2}, "and": {"_count": 1}, "why": {"_count": 1}}, "selling": {"_count": 2, "So": {"_count": 1}, "in": {"_count": 1}}, "distracted": {"_count": 8, "almost": {"_count": 1}, "however": {"_count": 1}, "by": {"_count": 4}, "all": {"_count": 1}, "at": {"_count": 1}}, "opened": {"_count": 8, "": {"_count": 2}, "either": {"_count": 1}, "a": {"_count": 1}, "fifty": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}, "by": {"_count": 1}}, "insisting": {"_count": 2, "on": {"_count": 2}}, "clamoring": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "proclaimed": {"_count": 1, "by": {"_count": 1}}, "signing": {"_count": 1, "his": {"_count": 1}}, "set": {"_count": 9, "at": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 1}, "with": {"_count": 1}, "by": {"_count": 1}, "on": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 1}}, "clicking": {"_count": 2, "away": {"_count": 1}, "her": {"_count": 1}}, "Mr": {"_count": 4, "Malfoy": {"_count": 1}, "Crouch": {"_count": 3}}, "shrieking": {"_count": 3, "No": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 1}}, "wading": {"_count": 1, "toward": {"_count": 1}}, "asking": {"_count": 6, "that": {"_count": 1}, "Ludo": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 2}, "them": {"_count": 1}}, "time": {"_count": 15, "for": {"_count": 4}, "to": {"_count": 10}, "now": {"_count": 1}}, "walk": {"_count": 1, "through": {"_count": 1}}, "knocked": {"_count": 10, "off": {"_count": 4}, "over": {"_count": 3}, "sideways": {"_count": 2}, "offbalance": {"_count": 1}}, "causing": {"_count": 8, "such": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}, "him": {"_count": 1}, "most": {"_count": 1}, "a": {"_count": 2}}, "rumbling": {"_count": 2, "along": {"_count": 1}, "and": {"_count": 1}}, "streaking": {"_count": 5, "along": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 1}, "out": {"_count": 1}, "happily": {"_count": 1}}, "surely": {"_count": 12, "the": {"_count": 1}, "seconds": {"_count": 1}, "in": {"_count": 1}, "dreaming": {"_count": 1}, "splitting": {"_count": 1}, "going": {"_count": 1}, "past": {"_count": 1}, "only": {"_count": 1}, "one": {"_count": 1}, "best": {"_count": 1}, "because": {"_count": 1}, "dying": {"_count": 1}}, "sticking": {"_count": 7, "to": {"_count": 2}, "out": {"_count": 4}, "up": {"_count": 1}}, "losing": {"_count": 8, "speed": {"_count": 1}, "concentration": {"_count": 1}, "feeling": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 2}, "hope": {"_count": 1}, "so": {"_count": 1}}, "billowing": {"_count": 2, "from": {"_count": 2}}, "throbbing": {"_count": 5, "on": {"_count": 1}, "in": {"_count": 2}, "worse": {"_count": 1}, "horribly": {"_count": 1}}, "attacking": {"_count": 4, "them": {"_count": 1}, "him": {"_count": 1}, "people": {"_count": 1}, "his": {"_count": 1}}, "close": {"_count": 10, "": {"_count": 1}, "to": {"_count": 7}, "by": {"_count": 2}}, "sprawled": {"_count": 6, "on": {"_count": 4}, "at": {"_count": 1}, "across": {"_count": 1}}, "ejecting": {"_count": 1, "their": {"_count": 1}}, "among": {"_count": 3, "them": {"_count": 2}, "a": {"_count": 1}}, "placing": {"_count": 1, "the": {"_count": 1}}, "wafting": {"_count": 1, "from": {"_count": 1}}, "unable": {"_count": 7, "to": {"_count": 7}}, "better": {"_count": 9, "than": {"_count": 5}, "": {"_count": 2}, "Im": {"_count": 1}, "like": {"_count": 1}}, "quiet": {"_count": 13, "it": {"_count": 2}, "as": {"_count": 2}, "": {"_count": 2}, "now": {"_count": 1}, "and": {"_count": 1}, "except": {"_count": 2}, "the": {"_count": 1}, "barely": {"_count": 1}, "she": {"_count": 1}}, "hidden": {"_count": 16, "behind": {"_count": 3}, "somewhere": {"_count": 1}, "by": {"_count": 1}, "beneath": {"_count": 1}, "in": {"_count": 6}, "under": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}}, "patting": {"_count": 4, "him": {"_count": 1}, "her": {"_count": 2}, "": {"_count": 1}}, "scarlet": {"_count": 3, "in": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}}, "fixed": {"_count": 7, "on": {"_count": 2}, "upon": {"_count": 5}}, "immaculate": {"_count": 1, "in": {"_count": 1}}, "bound": {"_count": 14, "to": {"_count": 10}, "so": {"_count": 1}, "ter": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}}, "twelve": {"_count": 2, "I": {"_count": 1}, "hours": {"_count": 1}}, "first": {"_count": 5, "into": {"_count": 1}, "established": {"_count": 1}, "to": {"_count": 2}, "out": {"_count": 1}}, "slightly": {"_count": 16, "disappointed": {"_count": 1}, "open": {"_count": 2}, "creepy": {"_count": 1}, "breathless": {"_count": 1}, "blurred": {"_count": 1}, "smaller": {"_count": 2}, "duck": {"_count": 2}, "less": {"_count": 1}, "longer": {"_count": 1}, "higher": {"_count": 1}, "fatter": {"_count": 1}, "overwhelming": {"_count": 1}, "above": {"_count": 1}}, "sweaty": {"_count": 1, "aching": {"_count": 1}}, "especially": {"_count": 1, "difficult": {"_count": 1}}, "give": {"_count": 1, "his": {"_count": 1}}, "whacking": {"_count": 1, "his": {"_count": 1}}, "clutching": {"_count": 10, "what": {"_count": 1}, "her": {"_count": 1}, "Malfoys": {"_count": 1}, "a": {"_count": 3}, "": {"_count": 1}, "his": {"_count": 2}, "Lunas": {"_count": 1}}, "magic": {"_count": 2, "till": {"_count": 1}, "closely": {"_count": 1}}, "striding": {"_count": 9, "toward": {"_count": 4}, "off": {"_count": 1}, "serenely": {"_count": 1}, "away": {"_count": 1}, "backward": {"_count": 1}, "across": {"_count": 1}}, "cut": {"_count": 3, "short": {"_count": 1}, "or": {"_count": 1}, "off": {"_count": 1}}, "wishing": {"_count": 1, "he": {"_count": 1}}, "photographing": {"_count": 1, "me": {"_count": 1}}, "for": {"_count": 15, "Lockhart": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harrys": {"_count": 1}, "solid": {"_count": 1}, "Dobby": {"_count": 1}, "but": {"_count": 1}, "Tonks": {"_count": 1}, "why": {"_count": 1}, "once": {"_count": 1}, "the": {"_count": 2}, "Snape": {"_count": 1}, "precisely": {"_count": 1}, "weaker": {"_count": 1}, "his": {"_count": 1}}, "seated": {"_count": 4, "Lockhart": {"_count": 1}, "right": {"_count": 1}, "at": {"_count": 1}, "directly": {"_count": 1}}, "cowering": {"_count": 3, "in": {"_count": 1}, "by": {"_count": 1}, "against": {"_count": 1}}, "pandemonium": {"_count": 1, "": {"_count": 1}}, "sheltering": {"_count": 1, "under": {"_count": 1}}, "swinging": {"_count": 5, "from": {"_count": 3}, "off": {"_count": 1}, "a": {"_count": 1}}, "Colin": {"_count": 5, "Creevey": {"_count": 5}}, "shaken": {"_count": 2, "awake": {"_count": 1}, "from": {"_count": 1}}, "brandishing": {"_count": 2, "under": {"_count": 1}, "a": {"_count": 1}}, "tugging": {"_count": 6, "hard": {"_count": 1}, "at": {"_count": 3}, "him": {"_count": 1}, "a": {"_count": 1}}, "putting": {"_count": 10, "up": {"_count": 3}, "through": {"_count": 1}, "two": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 2}, "nifflers": {"_count": 1}}, "gazing": {"_count": 27, "openmouthed": {"_count": 1}, "imploringly": {"_count": 1}, "at": {"_count": 13}, "across": {"_count": 1}, "unblinkingly": {"_count": 1}, "fondly": {"_count": 1}, "in": {"_count": 1}, "toward": {"_count": 2}, "transfixed": {"_count": 1}, "ahead": {"_count": 1}, "down": {"_count": 3}, "mesmerized": {"_count": 1}}, "Draco": {"_count": 5, "Malfoy": {"_count": 5}}, "smirking": {"_count": 2, "so": {"_count": 1}, "more": {"_count": 1}}, "doubled": {"_count": 1, "up": {"_count": 1}}, "bustling": {"_count": 1, "around": {"_count": 1}}, "slobbering": {"_count": 1, "over": {"_count": 1}}, "bad": {"_count": 5, "said": {"_count": 1}, "enough": {"_count": 3}, "news": {"_count": 1}}, "laughing": {"_count": 20, "": {"_count": 6}, "Harry": {"_count": 1}, "the": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 2}, "everyone": {"_count": 1}, "at": {"_count": 2}, "openly": {"_count": 1}, "as": {"_count": 1}, "about": {"_count": 1}, "He": {"_count": 1}, "toothlessly": {"_count": 1}, "or": {"_count": 1}}, "concealed": {"_count": 5, "inside": {"_count": 1}, "behind": {"_count": 3}, "": {"_count": 1}}, "changed": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "jus": {"_count": 2, "lookin": {"_count": 1}, "the": {"_count": 1}}, "hopin": {"_count": 1, "she": {"_count": 1}}, "sprayed": {"_count": 2, "with": {"_count": 1}, "over": {"_count": 1}}, "keen": {"_count": 7, "to": {"_count": 6}, "not": {"_count": 1}}, "loathed": {"_count": 1, "by": {"_count": 1}}, "five": {"_count": 3, "minutes": {"_count": 2}, "watching": {"_count": 1}}, "dragging": {"_count": 5, "his": {"_count": 1}, "Ron": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}}, "straining": {"_count": 3, "his": {"_count": 2}, "to": {"_count": 1}}, "satisfied": {"_count": 1, "": {"_count": 1}}, "kept": {"_count": 3, "busy": {"_count": 1}, "safe": {"_count": 1}, "according": {"_count": 1}}, "bullied": {"_count": 1, "into": {"_count": 1}}, "drowned": {"_count": 4, "out": {"_count": 1}, "by": {"_count": 2}, "in": {"_count": 1}}, "unusually": {"_count": 1, "purple": {"_count": 1}}, "dingy": {"_count": 1, "and": {"_count": 1}}, "common": {"_count": 4, "knowledge": {"_count": 4}}, "extremely": {"_count": 12, "valuable": {"_count": 1}, "crowded": {"_count": 1}, "pretty": {"_count": 1}, "tense": {"_count": 1}, "comfortable": {"_count": 2}, "relieved": {"_count": 1}, "twitchy": {"_count": 1}, "pale": {"_count": 1}, "unnerving": {"_count": 1}, "uncomfortable": {"_count": 1}, "old": {"_count": 1}}, "regretting": {"_count": 2, "his": {"_count": 1}, "entering": {"_count": 1}}, "happily": {"_count": 1, "anticipating": {"_count": 1}}, "glittering": {"_count": 4, "invitingly": {"_count": 1}, "near": {"_count": 1}, "way": {"_count": 1}, "directly": {"_count": 1}}, "blowing": {"_count": 2, "the": {"_count": 1}, "through": {"_count": 1}}, "echoing": {"_count": 2, "out": {"_count": 1}, "dusty": {"_count": 1}}, "stiff": {"_count": 2, "as": {"_count": 1}, "it": {"_count": 1}}, "barely": {"_count": 23, "an": {"_count": 3}, "more": {"_count": 1}, "a": {"_count": 2}, "feet": {"_count": 1}, "recognizable": {"_count": 2}, "opening": {"_count": 2}, "visible": {"_count": 2}, "worth": {"_count": 1}, "room": {"_count": 1}, "aware": {"_count": 1}, "keeping": {"_count": 1}, "listening": {"_count": 2}, "hidden": {"_count": 1}, "seven": {"_count": 1}, "stirring": {"_count": 1}, "audible": {"_count": 1}}, "hovering": {"_count": 9, "around": {"_count": 1}, "inches": {"_count": 1}, "over": {"_count": 1}, "in": {"_count": 2}, "near": {"_count": 1}, "feet": {"_count": 1}, "somewhere": {"_count": 1}, "there": {"_count": 1}}, "able": {"_count": 28, "to": {"_count": 27}, "without": {"_count": 1}}, "giving": {"_count": 13, "Harry": {"_count": 1}, "off": {"_count": 1}, "him": {"_count": 5}, "the": {"_count": 2}, "you": {"_count": 2}, "her": {"_count": 1}, "Fleur": {"_count": 1}}, "skulking": {"_count": 1, "redeyed": {"_count": 1}}, "waving": {"_count": 7, "in": {"_count": 1}, "for": {"_count": 1}, "his": {"_count": 3}, "at": {"_count": 2}}, "founded": {"_count": 1, "over": {"_count": 1}}, "feared": {"_count": 2, "by": {"_count": 1}, "above": {"_count": 1}}, "unease": {"_count": 1, "in": {"_count": 1}}, "deserted": {"_count": 15, "": {"_count": 7}, "and": {"_count": 2}, "but": {"_count": 3}, "now": {"_count": 1}, "too": {"_count": 1}, "apart": {"_count": 1}}, "carefully": {"_count": 3, "looking": {"_count": 1}, "planned": {"_count": 1}, "controlled": {"_count": 1}}, "three": {"_count": 2, "Fred": {"_count": 1}, "hundred": {"_count": 1}}, "attacked": {"_count": 11, "right": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "by": {"_count": 4}, "before": {"_count": 1}, "set": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "hauled": {"_count": 1, "to": {"_count": 1}}, "asked": {"_count": 5, "to": {"_count": 5}}, "clear": {"_count": 24, "from": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 3}, "that": {"_count": 9}, "": {"_count": 2}, "then": {"_count": 1}, "yet": {"_count": 1}, "they": {"_count": 1}, "of": {"_count": 1}, "she": {"_count": 1}, "as": {"_count": 1}}, "decorated": {"_count": 2, "with": {"_count": 1}, "as": {"_count": 1}}, "nervous": {"_count": 2, "mainly": {"_count": 1}, "but": {"_count": 1}}, "necessary": {"_count": 3, "": {"_count": 1}, "so": {"_count": 1}, "to": {"_count": 1}}, "magnetically": {"_count": 1, "attracted": {"_count": 1}}, "forced": {"_count": 28, "to": {"_count": 24}, "backward": {"_count": 1}, "around": {"_count": 1}, "not": {"_count": 1}, "upon": {"_count": 1}}, "commentating": {"_count": 2, "say": {"_count": 1}, "as": {"_count": 1}}, "falling": {"_count": 27, "more": {"_count": 1}, "warm": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 1}, "deeper": {"_count": 1}, "its": {"_count": 1}, "across": {"_count": 3}, "falling": {"_count": 3}, "again": {"_count": 1}, "and": {"_count": 1}, "thickly": {"_count": 2}, "through": {"_count": 3}, "so": {"_count": 1}, "": {"_count": 1}, "apart": {"_count": 1}, "toward": {"_count": 1}, "down": {"_count": 1}, "in": {"_count": 1}, "I": {"_count": 1}, "harder": {"_count": 1}}, "speckling": {"_count": 1, "his": {"_count": 1}}, "heavy": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "terrible": {"_count": 4, "": {"_count": 1}, "the": {"_count": 1}, "indeed": {"_count": 1}, "to": {"_count": 1}}, "injured": {"_count": 3, "": {"_count": 1}, "even": {"_count": 1}, "he": {"_count": 1}}, "twirling": {"_count": 2, "his": {"_count": 2}}, "sponging": {"_count": 1, "his": {"_count": 1}}, "seized": {"_count": 1, "by": {"_count": 1}}, "rocking": {"_count": 4, "backward": {"_count": 4}}, "when": {"_count": 12, "HeWhoMustNotBeNamed": {"_count": 1}, "the": {"_count": 2}, "Black": {"_count": 1}, "he": {"_count": 4}, "I": {"_count": 1}, "Ron": {"_count": 1}, "that": {"_count": 1}, "Professor": {"_count": 1}}, "backing": {"_count": 6, "into": {"_count": 1}, "slowly": {"_count": 1}, "away": {"_count": 4}}, "perched": {"_count": 7, "on": {"_count": 4}, "precariously": {"_count": 1}, "": {"_count": 1}, "awkwardly": {"_count": 1}}, "distraught": {"_count": 1, "but": {"_count": 1}}, "staying": {"_count": 3, "which": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}}, "Snapes": {"_count": 2, "favorite": {"_count": 1}, "memory": {"_count": 1}}, "velvety": {"_count": 1, "black": {"_count": 1}}, "young": {"_count": 4, "maybe": {"_count": 1}, "": {"_count": 2}, "okay": {"_count": 1}}, "curling": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "blasted": {"_count": 10, "off": {"_count": 4}, "backward": {"_count": 1}, "apart": {"_count": 2}, "out": {"_count": 2}, "into": {"_count": 1}}, "whimpering": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "creepy": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "canceled": {"_count": 2, "Professor": {"_count": 1}, "": {"_count": 1}}, "darker": {"_count": 1, "than": {"_count": 1}}, "shouting": {"_count": 16, "at": {"_count": 4}, "": {"_count": 6}, "furiously": {"_count": 1}, "something": {"_count": 1}, "Hagrid": {"_count": 1}, "Have": {"_count": 1}, "about": {"_count": 1}, "nor": {"_count": 1}}, "Muggleborn": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "annoying": {"_count": 2, "Potter": {"_count": 1}, "her": {"_count": 1}}, "draining": {"_count": 4, "out": {"_count": 2}, "him": {"_count": 1}, "from": {"_count": 1}}, "polishing": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "glasses": {"_count": 1}}, "entirely": {"_count": 4, "hidden": {"_count": 1}, "round": {"_count": 1}, "pointless": {"_count": 1}, "covered": {"_count": 1}}, "Muggle": {"_count": 1, "born": {"_count": 1}}, "particularly": {"_count": 6, "dark": {"_count": 1}, "keen": {"_count": 1}, "satisfying": {"_count": 1}, "obvious": {"_count": 1}, "efficient": {"_count": 1}, "good": {"_count": 1}}, "Nearly": {"_count": 2, "Headless": {"_count": 2}}, "carried": {"_count": 4, "up": {"_count": 1}, "to": {"_count": 2}, "in": {"_count": 1}}, "evidently": {"_count": 10, "a": {"_count": 1}, "still": {"_count": 1}, "peering": {"_count": 1}, "only": {"_count": 1}, "aroused": {"_count": 1}, "supposed": {"_count": 1}, "spending": {"_count": 1}, "expected": {"_count": 1}, "in": {"_count": 1}, "bursting": {"_count": 1}}, "by": {"_count": 7, "far": {"_count": 1}, "Siriuss": {"_count": 1}, "the": {"_count": 1}, "common": {"_count": 1}, "dads": {"_count": 1}, "all": {"_count": 1}, "no": {"_count": 1}}, "talkin": {"_count": 2, "ter": {"_count": 2}}, "somber": {"_count": 1, "again": {"_count": 1}}, "somehow": {"_count": 4, "connected": {"_count": 1}, "soothed": {"_count": 1}, "denser": {"_count": 1}, "at": {"_count": 1}}, "deeply": {"_count": 7, "disapproving": {"_count": 1}, "in": {"_count": 2}, "interested": {"_count": 1}, "thankful": {"_count": 1}, "impressed": {"_count": 1}, "asleep": {"_count": 1}}, "planning": {"_count": 8, "to": {"_count": 6}, "more": {"_count": 1}, "or": {"_count": 1}}, "stirring": {"_count": 9, "the": {"_count": 2}, "inside": {"_count": 1}, "": {"_count": 3}, "more": {"_count": 1}, "not": {"_count": 1}, "all": {"_count": 1}}, "creeping": {"_count": 6, "down": {"_count": 1}, "along": {"_count": 1}, "over": {"_count": 2}, "toward": {"_count": 1}, "up": {"_count": 1}}, "indistinguishable": {"_count": 1, "from": {"_count": 1}}, "cutting": {"_count": 2, "into": {"_count": 1}, "a": {"_count": 1}}, "nobody": {"_count": 13, "around": {"_count": 1}, "else": {"_count": 2}, "in": {"_count": 2}, "left": {"_count": 2}, "there": {"_count": 5}, "to": {"_count": 1}}, "emerging": {"_count": 5, "from": {"_count": 3}, "": {"_count": 1}, "miraculously": {"_count": 1}}, "Percy": {"_count": 5, "": {"_count": 3}, "jumping": {"_count": 1}, "Weasley": {"_count": 1}}, "strolling": {"_count": 5, "toward": {"_count": 1}, "onto": {"_count": 1}, "away": {"_count": 1}, "along": {"_count": 2}}, "crackling": {"_count": 2, "under": {"_count": 1}, "merrily": {"_count": 1}}, "today": {"_count": 2, "fined": {"_count": 1}, "appointed": {"_count": 1}}, "unavailable": {"_count": 3, "for": {"_count": 3}}, "contorted": {"_count": 4, "with": {"_count": 3}, "smeared": {"_count": 1}}, "him": {"_count": 8, "but": {"_count": 1}, "": {"_count": 4}, "he": {"_count": 2}, "I": {"_count": 1}}, "fifty": {"_count": 3, "years": {"_count": 2}, "points": {"_count": 1}}, "clenching": {"_count": 1, "Crabbe": {"_count": 1}}, "was": {"_count": 9, "expelled": {"_count": 1}, "even": {"_count": 1}, "in": {"_count": 1}, "half": {"_count": 1}, "doomed": {"_count": 1}, "wondering": {"_count": 1}, "just": {"_count": 1}, "going": {"_count": 1}, "terrible": {"_count": 1}}, "expelled": {"_count": 9, "said": {"_count": 2}, "fifty": {"_count": 1}, "": {"_count": 3}, "from": {"_count": 1}, "and": {"_count": 1}, "before": {"_count": 1}}, "spared": {"_count": 3, "answering": {"_count": 1}, "the": {"_count": 2}}, "likely": {"_count": 10, "to": {"_count": 9}, "you": {"_count": 1}}, "blank": {"_count": 5, "he": {"_count": 1}, "": {"_count": 2}, "his": {"_count": 1}, "unreadable": {"_count": 1}}, "absurd": {"_count": 4, "": {"_count": 3}, "impossible": {"_count": 1}}, "tucked": {"_count": 2, "away": {"_count": 1}, "into": {"_count": 1}}, "mine": {"_count": 3, "hes": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}}, "oneup": {"_count": 1, "on": {"_count": 1}}, "partly": {"_count": 2, "because": {"_count": 2}}, "wasting": {"_count": 3, "his": {"_count": 1}, "away": {"_count": 1}, "her": {"_count": 1}}, "hammering": {"_count": 4, "": {"_count": 1}, "very": {"_count": 1}, "madly": {"_count": 1}, "so": {"_count": 1}}, "hurrying": {"_count": 15, "to": {"_count": 2}, "across": {"_count": 1}, "over": {"_count": 1}, "along": {"_count": 4}, "up": {"_count": 2}, "toward": {"_count": 4}, "down": {"_count": 1}}, "given": {"_count": 6, "out": {"_count": 1}, "extra": {"_count": 2}, "their": {"_count": 1}, "the": {"_count": 1}, "freely": {"_count": 1}}, "tilting": {"_count": 2, "forward": {"_count": 1}, "his": {"_count": 1}}, "widening": {"_count": 2, "he": {"_count": 1}, "again": {"_count": 1}}, "pitched": {"_count": 1, "headfirst": {"_count": 1}}, "Dumbledores": {"_count": 6, "office": {"_count": 2}, "flight": {"_count": 1}, "wish": {"_count": 1}, "Dumbledores": {"_count": 1}, "spy": {"_count": 1}}, "reading": {"_count": 17, "a": {"_count": 3}, "the": {"_count": 8}, "an": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 2}, "two": {"_count": 1}}, "rubyred": {"_count": 2, "it": {"_count": 1}, "in": {"_count": 1}}, "headmaster": {"_count": 2, "not": {"_count": 1}, "I": {"_count": 1}}, "little": {"_count": 9, "more": {"_count": 1}, "Peter": {"_count": 1}, "better": {"_count": 1}, "of": {"_count": 1}, "wind": {"_count": 2}, "to": {"_count": 1}, "longer": {"_count": 1}, "about": {"_count": 1}}, "biting": {"_count": 4, "his": {"_count": 1}, "her": {"_count": 2}, "deeper": {"_count": 1}}, "pass": {"_count": 1, "the": {"_count": 1}}, "sweating": {"_count": 3, "and": {"_count": 1}, "now": {"_count": 1}, "profusely": {"_count": 1}}, "equally": {"_count": 1, "certain": {"_count": 1}}, "heartily": {"_count": 1, "sick": {"_count": 1}}, "kicked": {"_count": 1, "out": {"_count": 1}}, "buying": {"_count": 3, "a": {"_count": 2}, "that": {"_count": 1}}, "had": {"_count": 1, "retired": {"_count": 1}}, "eager": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "lousy": {"_count": 3, "at": {"_count": 1}, "so": {"_count": 1}, "but": {"_count": 1}}, "examining": {"_count": 6, "Harrys": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "Griphooks": {"_count": 1}, "a": {"_count": 1}}, "halfempty": {"_count": 1, "and": {"_count": 1}}, "added": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "HermioneY": {"_count": 1, "Ron": {"_count": 1}}, "faced": {"_count": 1, "with": {"_count": 1}}, "Dumbledore": {"_count": 13, "": {"_count": 2}, "said": {"_count": 2}, "wants": {"_count": 1}, "so": {"_count": 1}, "agreed": {"_count": 1}, "and": {"_count": 1}, "s": {"_count": 1}, "who": {"_count": 1}, "musta": {"_count": 1}, "scratching": {"_count": 1}, "would": {"_count": 1}}, "followed": {"_count": 3, "by": {"_count": 3}}, "told": {"_count": 13, "that": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "Dumbledore": {"_count": 1}, "to": {"_count": 5}, "with": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}}, "strutting": {"_count": 1, "around": {"_count": 1}}, "guilty": {"_count": 1, "said": {"_count": 1}}, "well": {"_count": 8, "past": {"_count": 2}, "never": {"_count": 1}, "paid": {"_count": 1}, "out": {"_count": 1}, "at": {"_count": 1}, "hidden": {"_count": 1}, "": {"_count": 1}}, "snapping": {"_count": 3, "branches": {"_count": 1}, "furiously": {"_count": 1}, "his": {"_count": 1}}, "livid": {"_count": 1, "with": {"_count": 1}}, "stretched": {"_count": 4, "wide": {"_count": 1}, "out": {"_count": 1}, "so": {"_count": 1}, "tight": {"_count": 1}}, "gray": {"_count": 1, "in": {"_count": 1}}, "milky": {"_count": 1, "white": {"_count": 1}}, "blind": {"_count": 1, "": {"_count": 1}}, "sleeping": {"_count": 5, "": {"_count": 1}, "under": {"_count": 2}, "with": {"_count": 1}, "he": {"_count": 1}}, "echoed": {"_count": 3, "by": {"_count": 1}, "here": {"_count": 1}, "on": {"_count": 1}}, "years": {"_count": 3, "ago": {"_count": 2}, "and": {"_count": 1}}, "discovered": {"_count": 8, "and": {"_count": 2}, "in": {"_count": 1}, "attacking": {"_count": 1}, "however": {"_count": 1}, "my": {"_count": 1}, "dead": {"_count": 1}, "a": {"_count": 1}}, "thundering": {"_count": 2, "down": {"_count": 1}, "past": {"_count": 1}}, "shivering": {"_count": 7, "uncontrollably": {"_count": 1}, "under": {"_count": 1}, "on": {"_count": 1}, "his": {"_count": 1}, "all": {"_count": 1}, "a": {"_count": 1}, "now": {"_count": 1}}, "innocent": {"_count": 10, "": {"_count": 6}, "by": {"_count": 1}, "innocent": {"_count": 1}, "and": {"_count": 1}, "after": {"_count": 1}}, "lurking": {"_count": 3, "somewhere": {"_count": 1}, "nearby": {"_count": 1}, "behind": {"_count": 1}}, "or": {"_count": 5, "how": {"_count": 2}, "what": {"_count": 1}, "had": {"_count": 1}, "at": {"_count": 1}}, "teetering": {"_count": 1, "on": {"_count": 1}}, "hardly": {"_count": 8, "worth": {"_count": 1}, "legible": {"_count": 1}, "less": {"_count": 1}, "surprised": {"_count": 1}, "larger": {"_count": 1}, "any": {"_count": 3}}, "scrunched": {"_count": 1, "inside": {"_count": 1}}, "clamped": {"_count": 2, "so": {"_count": 1}, "tightly": {"_count": 1}}, "Lockhart": {"_count": 1, "and": {"_count": 1}}, "inside": {"_count": 16, "it": {"_count": 3}, "his": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 2}, "that": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 2}, "me": {"_count": 1}}, "arrested": {"_count": 5, "said": {"_count": 1}, "by": {"_count": 1}, "so": {"_count": 1}, "we": {"_count": 1}, "after": {"_count": 1}}, "Ron": {"_count": 14, "rubbed": {"_count": 1}, "tall": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 5}, "who": {"_count": 1}, "could": {"_count": 1}, "at": {"_count": 1}, "mumbled": {"_count": 1}, "all": {"_count": 1}}, "work": {"_count": 1, "involved": {"_count": 1}}, "dreadful": {"_count": 5, "she": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "to": {"_count": 1}}, "teasing": {"_count": 1, "me": {"_count": 1}}, "sorry": {"_count": 7, "shed": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 4}, "James": {"_count": 1}}, "real": {"_count": 7, "": {"_count": 3}, "I": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}, "she": {"_count": 1}}, "littered": {"_count": 3, "with": {"_count": 2}, "when": {"_count": 1}}, "straightening": {"_count": 2, "up": {"_count": 2}}, "tingling": {"_count": 1, "unpleasantly": {"_count": 1}}, "ancient": {"_count": 1, "and": {"_count": 1}}, "white": {"_count": 8, "as": {"_count": 3}, "and": {"_count": 1}, "to": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 1}}, "patient": {"_count": 1, "": {"_count": 1}}, "sympathetic": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "kind": {"_count": 4, "": {"_count": 1}, "enough": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}}, "coursing": {"_count": 3, "through": {"_count": 3}}, "my": {"_count": 23, "word": {"_count": 1}, "foot": {"_count": 1}, "dads": {"_count": 1}, "friends": {"_count": 1}, "dad": {"_count": 3}, "mum": {"_count": 1}, "pleasure": {"_count": 1}, "mother": {"_count": 1}, "keeper": {"_count": 1}, "dream": {"_count": 1}, "father": {"_count": 1}, "parents": {"_count": 1}, "favorite": {"_count": 1}, "fathers": {"_count": 1}, "first": {"_count": 1}, "fault": {"_count": 1}, "idea": {"_count": 1}, "wand": {"_count": 1}, "private": {"_count": 1}, "weakness": {"_count": 1}, "intention": {"_count": 1}}, "Petrified": {"_count": 1, "will": {"_count": 1}}, "writing": {"_count": 6, "to": {"_count": 2}, "": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "from": {"_count": 1}}, "buzzing": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "speaking": {"_count": 13, "at": {"_count": 1}, "": {"_count": 2}, "again": {"_count": 2}, "to": {"_count": 4}, "was": {"_count": 1}, "them": {"_count": 1}, "he": {"_count": 1}, "from": {"_count": 1}}, "eerie": {"_count": 1, "spinetingling": {"_count": 1}}, "dwindling": {"_count": 1, "out": {"_count": 1}}, "merely": {"_count": 12, "a": {"_count": 2}, "commenting": {"_count": 1}, "bored": {"_count": 1}, "the": {"_count": 2}, "Take": {"_count": 1}, "expressing": {"_count": 1}, "reporting": {"_count": 1}, "reading": {"_count": 1}, "trying": {"_count": 1}, "playing": {"_count": 1}}, "smashed": {"_count": 1, "into": {"_count": 1}}, "weaving": {"_count": 1, "drunkenly": {"_count": 1}}, "soaring": {"_count": 7, "around": {"_count": 1}, "upward": {"_count": 1}, "through": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 1}, "toward": {"_count": 1}, "backward": {"_count": 1}}, "streaming": {"_count": 3, "to": {"_count": 1}, "arent": {"_count": 1}, "through": {"_count": 1}}, "spitting": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 1}, "green": {"_count": 1}}, "squeezing": {"_count": 1, "it": {"_count": 1}}, "sinking": {"_count": 4, "deeper": {"_count": 2}, "fast": {"_count": 1}, "into": {"_count": 1}}, "dissolving": {"_count": 2, "in": {"_count": 1}, "as": {"_count": 1}}, "Fawkes": {"_count": 2, "still": {"_count": 1}, "slumbering": {"_count": 1}}, "writhing": {"_count": 4, "and": {"_count": 2}, "with": {"_count": 1}, "so": {"_count": 1}}, "spinning": {"_count": 4, "as": {"_count": 1}, "very": {"_count": 1}, "so": {"_count": 1}, "from": {"_count": 1}}, "whipping": {"_count": 1, "through": {"_count": 1}}, "sliding": {"_count": 5, "back": {"_count": 2}, "down": {"_count": 1}, "shut": {"_count": 1}, "slowly": {"_count": 1}}, "hearing": {"_count": 5, "a": {"_count": 1}, "": {"_count": 3}, "seemed": {"_count": 1}}, "breaking": {"_count": 5, "a": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}, "over": {"_count": 1}}, "sixteen": {"_count": 3, "": {"_count": 1}, "for": {"_count": 1}, "years": {"_count": 1}}, "once": {"_count": 12, "called": {"_count": 1}, "Head": {"_count": 1}, "again": {"_count": 5}, "more": {"_count": 2}, "Ravenclaws": {"_count": 1}, "so": {"_count": 1}, "they": {"_count": 1}}, "hopeless": {"_count": 2, "was": {"_count": 1}, "Ron": {"_count": 1}}, "nagging": {"_count": 1, "at": {"_count": 1}}, "Slytherins": {"_count": 2, "heir": {"_count": 2}}, "Dobby": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "attempting": {"_count": 11, "to": {"_count": 10}, "vainly": {"_count": 1}}, "disheveled": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "longing": {"_count": 3, "to": {"_count": 3}}, "thrown": {"_count": 18, "backward": {"_count": 6}, "to": {"_count": 1}, "forward": {"_count": 1}, "up": {"_count": 2}, "out": {"_count": 1}, "over": {"_count": 1}, "upon": {"_count": 1}, "open": {"_count": 1}, "back": {"_count": 1}, "facedown": {"_count": 1}, "off": {"_count": 1}, "once": {"_count": 1}}, "obvious": {"_count": 6, "": {"_count": 3}, "Harry": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 1}}, "perfectly": {"_count": 13, "happy": {"_count": 2}, "safe": {"_count": 1}, "entitled": {"_count": 1}, "true": {"_count": 5}, "ready": {"_count": 1}, "predictable": {"_count": 1}, "circular": {"_count": 1}, "alone": {"_count": 1}}, "studying": {"_count": 2, "magic": {"_count": 1}, "and": {"_count": 1}}, "rooted": {"_count": 1, "to": {"_count": 1}}, "flapping": {"_count": 1, "in": {"_count": 1}}, "leapt": {"_count": 1, "aside": {"_count": 1}}, "Errol": {"_count": 1, "and": {"_count": 1}}, "dangerous": {"_count": 6, "": {"_count": 3}, "a": {"_count": 1}, "she": {"_count": 1}, "Voldemort": {"_count": 1}}, "bony": {"_count": 1, "and": {"_count": 1}}, "brought": {"_count": 3, "back": {"_count": 1}, "in": {"_count": 2}}, "lapping": {"_count": 1, "noisily": {"_count": 1}}, "bursting": {"_count": 4, "to": {"_count": 1}, "with": {"_count": 3}}, "worried": {"_count": 8, "that": {"_count": 4}, "this": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 1}}, "mentally": {"_count": 1, "subnormal": {"_count": 1}}, "sipping": {"_count": 1, "coffee": {"_count": 1}}, "inflating": {"_count": 2, "like": {"_count": 1}, "herself": {"_count": 1}}, "stored": {"_count": 1, "in": {"_count": 1}}, "eighteen": {"_count": 1, "or": {"_count": 1}}, "bleeding": {"_count": 15, "": {"_count": 4}, "too": {"_count": 1}, "there": {"_count": 1}, "profusely": {"_count": 1}, "freely": {"_count": 1}, "again": {"_count": 1}, "as": {"_count": 1}, "rather": {"_count": 1}, "onto": {"_count": 1}, "worse": {"_count": 1}, "badly": {"_count": 1}, "copiously": {"_count": 1}}, "tracked": {"_count": 1, "down": {"_count": 1}}, "tryin": {"_count": 1, "to": {"_count": 1}}, "Tom": {"_count": 2, "the": {"_count": 1}, "Riddle": {"_count": 1}}, "any": {"_count": 5, "more": {"_count": 1}, "necessity": {"_count": 1}, "chance": {"_count": 1}, "way": {"_count": 1}, "spell": {"_count": 1}}, "changing": {"_count": 1, "rapidly": {"_count": 1}}, "sorely": {"_count": 1, "tempted": {"_count": 1}}, "mounted": {"_count": 1, "the": {"_count": 1}}, "listed": {"_count": 1, "as": {"_count": 1}}, "stacked": {"_count": 1, "with": {"_count": 1}}, "panicking": {"_count": 2, "when": {"_count": 1}, "now": {"_count": 1}}, "smelly": {"_count": 1, "and": {"_count": 1}}, "secondhand": {"_count": 1, "he": {"_count": 1}}, "purring": {"_count": 1, "contentedly": {"_count": 1}}, "casual": {"_count": 2, "but": {"_count": 2}}, "ajar": {"_count": 6, "and": {"_count": 2}, "": {"_count": 3}, "straight": {"_count": 1}}, "clever": {"_count": 2, "enough": {"_count": 1}, "": {"_count": 1}}, "sending": {"_count": 4, "two": {"_count": 1}, "violet": {"_count": 1}, "daily": {"_count": 1}, "curses": {"_count": 1}}, "wherever": {"_count": 1, "Albus": {"_count": 1}}, "driven": {"_count": 2, "by": {"_count": 1}, "out": {"_count": 1}}, "shortly": {"_count": 1, "joined": {"_count": 1}}, "embarrassed": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "flecked": {"_count": 2, "with": {"_count": 2}}, "stamped": {"_count": 1, "across": {"_count": 1}}, "jinxed": {"_count": 1, "": {"_count": 1}}, "tying": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "plainly": {"_count": 7, "not": {"_count": 2}, "terrified": {"_count": 1}, "in": {"_count": 1}, "listening": {"_count": 1}, "trying": {"_count": 1}, "dressed": {"_count": 1}}, "fumbling": {"_count": 2, "with": {"_count": 2}}, "taller": {"_count": 2, "with": {"_count": 1}, "than": {"_count": 1}}, "glistening": {"_count": 2, "grayish": {"_count": 1}, "palely": {"_count": 1}}, "drew": {"_count": 1, "a": {"_count": 1}}, "drowning": {"_count": 2, "in": {"_count": 1}, "him": {"_count": 1}}, "swirling": {"_count": 5, "around": {"_count": 1}, "darkness": {"_count": 1}, "in": {"_count": 1}, "against": {"_count": 1}, "": {"_count": 1}}, "slapping": {"_count": 2, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "huddled": {"_count": 6, "in": {"_count": 4}, "together": {"_count": 1}, "on": {"_count": 1}}, "shunting": {"_count": 1, "them": {"_count": 1}}, "clenched": {"_count": 3, "": {"_count": 1}, "around": {"_count": 2}}, "calling": {"_count": 6, "over": {"_count": 1}, "First": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "after": {"_count": 1}, "nevertheless": {"_count": 1}}, "torture": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "lined": {"_count": 3, "with": {"_count": 2}, "around": {"_count": 1}}, "beyond": {"_count": 5, "anger": {"_count": 1}, "repair": {"_count": 1}, "fear": {"_count": 1}, "him": {"_count": 1}, "excitement": {"_count": 1}}, "loathing": {"_count": 1, "": {"_count": 1}}, "tumultuous": {"_count": 1, "at": {"_count": 1}}, "wiping": {"_count": 4, "his": {"_count": 1}, "her": {"_count": 2}, "the": {"_count": 1}}, "home": {"_count": 4, "at": {"_count": 1}, "to": {"_count": 1}, "reading": {"_count": 1}, "": {"_count": 1}}, "absentmindedly": {"_count": 3, "swinging": {"_count": 1}, "shredding": {"_count": 1}, "turning": {"_count": 1}}, "grazing": {"_count": 1, "nonchalantly": {"_count": 1}}, "stiflingly": {"_count": 1, "warm": {"_count": 1}}, "burning": {"_count": 10, "under": {"_count": 1}, "beneath": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 3}, "in": {"_count": 1}, "He": {"_count": 1}, "now": {"_count": 1}}, "draped": {"_count": 2, "in": {"_count": 1}, "around": {"_count": 1}}, "its": {"_count": 2, "head": {"_count": 1}, "purpose": {"_count": 1}}, "avoiding": {"_count": 2, "Harrys": {"_count": 1}, "Moodys": {"_count": 1}}, "harder": {"_count": 1, "to": {"_count": 1}}, "convinced": {"_count": 7, "however": {"_count": 1}, "though": {"_count": 1}, "that": {"_count": 4}, "now": {"_count": 1}}, "absolute": {"_count": 3, "rubbish": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}}, "springy": {"_count": 1, "and": {"_count": 1}}, "attached": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "wrestling": {"_count": 1, "Buckbeak": {"_count": 1}}, "Malfoys": {"_count": 1, "fault": {"_count": 1}}, "needed": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "pink": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "curving": {"_count": 1, "in": {"_count": 1}}, "wriggling": {"_count": 4, "in": {"_count": 1}, "madly": {"_count": 1}, "on": {"_count": 1}, "into": {"_count": 1}}, "seething": {"_count": 1, "about": {"_count": 1}}, "panting": {"_count": 6, "slightly": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "turning": {"_count": 1}}, "crammed": {"_count": 3, "with": {"_count": 2}, "into": {"_count": 1}}, "two": {"_count": 3, "feet": {"_count": 1}, "hundred": {"_count": 1}, "rows": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "spiders": {"_count": 1, "": {"_count": 1}}, "nodding": {"_count": 1, "and": {"_count": 1}}, "turned": {"_count": 6, "to": {"_count": 1}, "toward": {"_count": 2}, "he": {"_count": 1}, "and": {"_count": 1}, "away": {"_count": 1}}, "trapped": {"_count": 4, "in": {"_count": 3}, "and": {"_count": 1}}, "Potions": {"_count": 1, "": {"_count": 1}}, "bullying": {"_count": 1, "Neville": {"_count": 1}}, "treated": {"_count": 1, "with": {"_count": 1}}, "approaching": {"_count": 6, "and": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 1}, "fast": {"_count": 1}, "them": {"_count": 1}}, "gathered": {"_count": 2, "around": {"_count": 2}}, "perhaps": {"_count": 6, "lucky": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "already": {"_count": 1}}, "she": {"_count": 17, "who": {"_count": 4}, "making": {"_count": 1}, "judging": {"_count": 1}, "in": {"_count": 3}, "was": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}, "doing": {"_count": 1}, "lying": {"_count": 1}, "had": {"_count": 1}, "with": {"_count": 1}}, "safer": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "sneaking": {"_count": 2, "out": {"_count": 1}, "looks": {"_count": 1}}, "dusk": {"_count": 1, "and": {"_count": 1}}, "delicious": {"_count": 1, "even": {"_count": 1}}, "natural": {"_count": 5, "": {"_count": 2}, "to": {"_count": 1}, "that": {"_count": 1}, "perhaps": {"_count": 1}}, "Halloween": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "scattered": {"_count": 2, "with": {"_count": 1}, "all": {"_count": 1}}, "closed": {"_count": 4, "that": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "tailing": {"_count": 2, "him": {"_count": 2}}, "training": {"_count": 2, "harder": {"_count": 1}, "hard": {"_count": 1}}, "ten": {"_count": 3, "minutes": {"_count": 1}, "feet": {"_count": 2}}, "less": {"_count": 8, "likely": {"_count": 1}, "lucky": {"_count": 1}, "than": {"_count": 2}, "painful": {"_count": 1}, "crowded": {"_count": 1}, "colorful": {"_count": 1}, "because": {"_count": 1}}, "considerably": {"_count": 1, "more": {"_count": 1}}, "cheering": {"_count": 2, "they": {"_count": 1}, "harder": {"_count": 1}}, "splattering": {"_count": 2, "over": {"_count": 1}, "onto": {"_count": 1}}, "swerving": {"_count": 1, "slightly": {"_count": 1}}, "soaked": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "inexplicably": {"_count": 1, "beaming": {"_count": 1}}, "pelting": {"_count": 1, "up": {"_count": 1}}, "shimmering": {"_count": 3, "in": {"_count": 2}, "at": {"_count": 1}}, "forgetting": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "filling": {"_count": 7, "Harrys": {"_count": 1}, "the": {"_count": 3}, "with": {"_count": 1}, "up": {"_count": 2}}, "aching": {"_count": 6, "as": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 1}, "fit": {"_count": 1}, "but": {"_count": 1}}, "troubling": {"_count": 1, "him": {"_count": 1}}, "though": {"_count": 5, "or": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 1}, "still": {"_count": 1}, "oddly": {"_count": 1}}, "pacing": {"_count": 3, "his": {"_count": 1}, "up": {"_count": 2}}, "pthe": {"_count": 1, "second": {"_count": 1}}, "currently": {"_count": 3, "bouncing": {"_count": 1}, "running": {"_count": 1}, "residing": {"_count": 1}}, "pitch": {"_count": 2, "dark": {"_count": 1}, "She": {"_count": 1}}, "seven": {"_count": 1, "it": {"_count": 1}}, "fierce": {"_count": 1, "and": {"_count": 1}}, "serving": {"_count": 1, "a": {"_count": 1}}, "deep": {"_count": 3, "in": {"_count": 3}}, "best": {"_count": 10, "man": {"_count": 1}, "at": {"_count": 1}, "not": {"_count": 3}, "said": {"_count": 1}, "viewed": {"_count": 1}, "she": {"_count": 1}, "for": {"_count": 1}, "known": {"_count": 1}}, "doin": {"_count": 1, "there": {"_count": 1}}, "YouKnowWho": {"_count": 4, "he": {"_count": 2}, "said": {"_count": 1}, "we": {"_count": 1}}, "goin": {"_count": 5, "ter": {"_count": 2}, "mad": {"_count": 1}, "I": {"_count": 1}, "on": {"_count": 1}}, "sobbing": {"_count": 7, "Lily": {"_count": 1}, "harder": {"_count": 1}, "hysterically": {"_count": 1}, "in": {"_count": 1}, "her": {"_count": 1}, "uncontrollably": {"_count": 1}, "desperately": {"_count": 1}}, "quicker": {"_count": 1, "": {"_count": 1}}, "cornered": {"_count": 1, "": {"_count": 1}}, "Junior": {"_count": 1, "Minister": {"_count": 1}}, "shocked": {"_count": 1, "at": {"_count": 1}}, "unnerving": {"_count": 3, "": {"_count": 1}, "him": {"_count": 1}, "to": {"_count": 1}}, "astounded": {"_count": 2, "at": {"_count": 1}, "that": {"_count": 1}}, "Black": {"_count": 1, "in": {"_count": 1}}, "rescued": {"_count": 2, "by": {"_count": 1}, "yowling": {"_count": 1}}, "oozing": {"_count": 1, "blood": {"_count": 1}}, "convicted": {"_count": 4, "ugh": {"_count": 1}, "on": {"_count": 1}, "by": {"_count": 1}, "Hepzibahs": {"_count": 1}}, "filled": {"_count": 3, "with": {"_count": 2}, "alternately": {"_count": 1}}, "woken": {"_count": 1, "by": {"_count": 1}}, "favoritism": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 4, "when": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}}, "ill": {"_count": 7, "when": {"_count": 1}, "and": {"_count": 2}, "adapted": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}}, "whirling": {"_count": 1, "and": {"_count": 1}}, "hissing": {"_count": 3, "and": {"_count": 3}}, "unpleasantly": {"_count": 1, "surprised": {"_count": 1}}, "reaching": {"_count": 4, "the": {"_count": 1}, "boiling": {"_count": 1}, "danger": {"_count": 1}, "a": {"_count": 1}}, "helping": {"_count": 4, "himself": {"_count": 1}, "Black": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "mad": {"_count": 3, "": {"_count": 1}, "too": {"_count": 1}, "with": {"_count": 1}}, "positive": {"_count": 1, "that": {"_count": 1}}, "concerned": {"_count": 7, "the": {"_count": 2}, "its": {"_count": 1}, "far": {"_count": 1}, "any": {"_count": 1}, "that": {"_count": 1}, "having": {"_count": 1}}, "confiscated": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "spending": {"_count": 3, "two": {"_count": 1}, "a": {"_count": 2}}, "louder": {"_count": 3, "than": {"_count": 2}, "by": {"_count": 1}}, "extending": {"_count": 1, "toward": {"_count": 1}}, "tapping": {"_count": 1, "Harry": {"_count": 1}}, "drawing": {"_count": 12, "nearer": {"_count": 2}, "breath": {"_count": 2}, "closer": {"_count": 1}, "level": {"_count": 1}, "steadily": {"_count": 1}, "her": {"_count": 1}, "to": {"_count": 1}, "long": {"_count": 1}, "great": {"_count": 1}, "attention": {"_count": 1}}, "hover": {"_count": 1, "like": {"_count": 1}}, "actually": {"_count": 13, "smiling": {"_count": 2}, "shaking": {"_count": 1}, "comprised": {"_count": 1}, "giving": {"_count": 1}, "singing": {"_count": 1}, "in": {"_count": 1}, "standing": {"_count": 1}, "shining": {"_count": 1}, "fogging": {"_count": 1}, "a": {"_count": 1}, "leaving": {"_count": 1}, "my": {"_count": 1}}, "passed": {"_count": 2, "around": {"_count": 1}, "to": {"_count": 1}}, "eat": {"_count": 1, "and": {"_count": 1}}, "Crookshanks": {"_count": 2, "": {"_count": 1}, "pressing": {"_count": 1}}, "shorter": {"_count": 3, "than": {"_count": 3}}, "undoubtedly": {"_count": 4, "a": {"_count": 1}, "fine": {"_count": 1}, "due": {"_count": 1}, "something": {"_count": 1}}, "aiming": {"_count": 4, "for": {"_count": 3}, "curse": {"_count": 1}}, "grinning": {"_count": 8, "": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}, "now": {"_count": 1}, "about": {"_count": 1}, "eagerly": {"_count": 1}, "they": {"_count": 1}}, "winning": {"_count": 1, "gaining": {"_count": 1}}, "hugging": {"_count": 3, "him": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}}, "winding": {"_count": 1, "its": {"_count": 1}}, "utter": {"_count": 1, "silence": {"_count": 1}}, "boarded": {"_count": 1, "up": {"_count": 1}}, "happy": {"_count": 3, "to": {"_count": 1}, "when": {"_count": 1}, "last": {"_count": 1}}, "Buckbeak": {"_count": 2, "who": {"_count": 1}, "the": {"_count": 1}}, "bunched": {"_count": 1, "around": {"_count": 1}}, "climbing": {"_count": 4, "toward": {"_count": 1}, "the": {"_count": 1}, "back": {"_count": 1}, "so": {"_count": 1}}, "done": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "your": {"_count": 25, "head": {"_count": 1}, "rat": {"_count": 1}, "best": {"_count": 1}, "exam": {"_count": 1}, "opponent": {"_count": 1}, "word": {"_count": 1}, "Does": {"_count": 1}, "age": {"_count": 1}, "idea": {"_count": 2}, "home": {"_count": 1}, "sister": {"_count": 1}, "voice": {"_count": 1}, "heart": {"_count": 1}, "godfather": {"_count": 1}, "sacrifice": {"_count": 1}, "House": {"_count": 1}, "ambition": {"_count": 1}, "Christmas": {"_count": 1}, "funeral": {"_count": 1}, "soul": {"_count": 1}, "scar": {"_count": 1}, "mistake": {"_count": 1}, "night": {"_count": 1}, "servant": {"_count": 1}}, "exceedingly": {"_count": 1, "arrogant": {"_count": 1}}, "saving": {"_count": 9, "his": {"_count": 2}, "you": {"_count": 1}, "Harrys": {"_count": 1}, "Crouch": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 2}, "it": {"_count": 1}}, "appearing": {"_count": 1, "beneath": {"_count": 1}}, "clambering": {"_count": 2, "out": {"_count": 1}, "over": {"_count": 1}}, "stupid": {"_count": 6, "we": {"_count": 1}, "thinking": {"_count": 1}, "like": {"_count": 1}, "it": {"_count": 1}, "pointless": {"_count": 1}, "enough": {"_count": 1}}, "during": {"_count": 2, "Care": {"_count": 1}, "one": {"_count": 1}}, "prepared": {"_count": 7, "to": {"_count": 7}}, "poring": {"_count": 3, "over": {"_count": 3}}, "obsessed": {"_count": 2, "with": {"_count": 2}}, "crouched": {"_count": 4, "over": {"_count": 2}, "on": {"_count": 1}, "outside": {"_count": 1}}, "fighting": {"_count": 14, "to": {"_count": 2}, "furiously": {"_count": 1}, "too": {"_count": 1}, "her": {"_count": 1}, "back": {"_count": 2}, "two": {"_count": 1}, "the": {"_count": 1}, "Bellatrix": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "down": {"_count": 1}, "whom": {"_count": 1}}, "motionless": {"_count": 1, "and": {"_count": 1}}, "pacross": {"_count": 1, "the": {"_count": 1}}, "skirting": {"_count": 1, "the": {"_count": 1}}, "essential": {"_count": 3, "that": {"_count": 1}, "to": {"_count": 2}}, "closing": {"_count": 5, "in": {"_count": 3}, "": {"_count": 1}, "and": {"_count": 1}}, "beside": {"_count": 7, "herself": {"_count": 2}, "himself": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 2}}, "sixty": {"_count": 1, "points": {"_count": 1}}, "theirs": {"_count": 1, "": {"_count": 1}}, "sparkling": {"_count": 1, "twenty": {"_count": 1}}, "roaring": {"_count": 5, "in": {"_count": 2}, "with": {"_count": 1}, "for": {"_count": 1}, "its": {"_count": 1}}, "slowing": {"_count": 2, "down": {"_count": 2}}, "angry": {"_count": 7, "enough": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "with": {"_count": 2}, "that": {"_count": 1}}, "diving": {"_count": 1, "a": {"_count": 1}}, "gaining": {"_count": 1, "on": {"_count": 1}}, "level": {"_count": 3, "Harry": {"_count": 1}, "with": {"_count": 2}}, "held": {"_count": 1, "tight": {"_count": 1}}, "borne": {"_count": 2, "toward": {"_count": 2}}, "managing": {"_count": 2, "to": {"_count": 2}}, "liable": {"_count": 1, "to": {"_count": 1}}, "straight": {"_count": 1, "back": {"_count": 1}}, "partnering": {"_count": 1, "him": {"_count": 1}}, "averted": {"_count": 1, "by": {"_count": 1}}, "fingering": {"_count": 1, "something": {"_count": 1}}, "Divination": {"_count": 1, "Hermiones": {"_count": 1}}, "hotter": {"_count": 1, "than": {"_count": 1}}, "alight": {"_count": 3, "and": {"_count": 1}, "with": {"_count": 2}}, "overpowering": {"_count": 1, "and": {"_count": 1}}, "dry": {"_count": 3, "this": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}}, "thinner": {"_count": 3, "than": {"_count": 1}, "balder": {"_count": 1}, "and": {"_count": 1}}, "squealing": {"_count": 2, "wildly": {"_count": 1}, "like": {"_count": 1}}, "paperwhite": {"_count": 1, "": {"_count": 1}}, "shallow": {"_count": 3, "and": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "fading": {"_count": 5, "fast": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 1}, "rapidly": {"_count": 1}}, "settling": {"_count": 2, "like": {"_count": 1}, "in": {"_count": 1}}, "bounding": {"_count": 2, "toward": {"_count": 1}, "alongside": {"_count": 1}}, "heading": {"_count": 8, "for": {"_count": 3}, "toward": {"_count": 2}, "back": {"_count": 2}, "and": {"_count": 1}}, "peeling": {"_count": 3, "from": {"_count": 2}, "": {"_count": 1}}, "Sirius": {"_count": 9, "Black": {"_count": 3}, "never": {"_count": 1}, "added": {"_count": 1}, "may": {"_count": 1}, "and": {"_count": 1}, "carelessly": {"_count": 1}, "": {"_count": 1}}, "clinging": {"_count": 3, "painfully": {"_count": 1}, "to": {"_count": 2}}, "short": {"_count": 7, "and": {"_count": 6}, "the": {"_count": 1}}, "Lupin": {"_count": 4, "talking": {"_count": 1}, "playing": {"_count": 1}, "his": {"_count": 1}, "even": {"_count": 1}}, "lowering": {"_count": 3, "his": {"_count": 1}, "its": {"_count": 1}, "Harrys": {"_count": 1}}, "executed": {"_count": 1, "": {"_count": 1}}, "imprisoned": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "planted": {"_count": 2, "the": {"_count": 1}, "because": {"_count": 1}}, "smuggled": {"_count": 2, "out": {"_count": 2}}, "placed": {"_count": 3, "at": {"_count": 1}, "under": {"_count": 1}, "in": {"_count": 1}}, "Scabberss": {"_count": 1, "frightened": {"_count": 1}}, "separated": {"_count": 2, "from": {"_count": 2}}, "happier": {"_count": 3, "than": {"_count": 2}, "with": {"_count": 1}}, "terrified": {"_count": 5, "they": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "when": {"_count": 1}, "a": {"_count": 1}}, "Prongs": {"_count": 1, "": {"_count": 1}}, "selfdisgust": {"_count": 1, "in": {"_count": 1}}, "prod": {"_count": 1, "the": {"_count": 1}}, "lifted": {"_count": 11, "off": {"_count": 5}, "into": {"_count": 2}, "as": {"_count": 1}, "right": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "struggling": {"_count": 9, "against": {"_count": 1}, "as": {"_count": 1}, "with": {"_count": 2}, "to": {"_count": 3}, "and": {"_count": 1}, "back": {"_count": 1}}, "Scabbers": {"_count": 1, "": {"_count": 1}}, "Peter": {"_count": 1, "on": {"_count": 1}}, "living": {"_count": 2, "so": {"_count": 1}, "for": {"_count": 1}}, "frozen": {"_count": 5, "in": {"_count": 2}, "to": {"_count": 1}, "gazing": {"_count": 1}, "as": {"_count": 1}}, "shooting": {"_count": 4, "upward": {"_count": 1}, "mushroomshaped": {"_count": 1}, "puffs": {"_count": 1}, "jinxes": {"_count": 1}}, "unkempt": {"_count": 1, "and": {"_count": 1}}, "squeaky": {"_count": 1, "": {"_count": 1}}, "frowning": {"_count": 6, "slightly": {"_count": 3}, "at": {"_count": 2}, "and": {"_count": 1}}, "weak": {"_count": 4, "very": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "pulled": {"_count": 6, "into": {"_count": 3}, "a": {"_count": 1}, "open": {"_count": 1}, "tight": {"_count": 1}}, "upright": {"_count": 1, "again": {"_count": 1}}, "scraping": {"_count": 1, "the": {"_count": 1}}, "startling": {"_count": 1, "as": {"_count": 1}}, "recognizable": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "bathed": {"_count": 3, "in": {"_count": 3}}, "chained": {"_count": 1, "to": {"_count": 1}}, "lengthening": {"_count": 1, "": {"_count": 1}}, "sprouting": {"_count": 2, "visibly": {"_count": 1}, "from": {"_count": 1}}, "Hermiones": {"_count": 2, "scream": {"_count": 1}, "hand": {"_count": 1}}, "galloping": {"_count": 3, "into": {"_count": 1}, "silently": {"_count": 1}, "around": {"_count": 1}}, "clouding": {"_count": 1, "his": {"_count": 1}}, "blinding": {"_count": 3, "him": {"_count": 3}}, "illuminating": {"_count": 3, "the": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 1}}, "ebbing": {"_count": 2, "away": {"_count": 2}}, "warm": {"_count": 5, "again": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 3}}, "Potter": {"_count": 3, "Weasley": {"_count": 1}, "communicating": {"_count": 1}, "": {"_count": 1}}, "capable": {"_count": 2, "of": {"_count": 2}}, "Severus": {"_count": 1, "said": {"_count": 1}}, "tied": {"_count": 7, "here": {"_count": 1}, "between": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "he": {"_count": 1}, "shook": {"_count": 1}, "to": {"_count": 1}}, "snarling": {"_count": 1, "": {"_count": 1}}, "setting": {"_count": 2, "now": {"_count": 1}, "a": {"_count": 1}}, "sprinting": {"_count": 4, "across": {"_count": 1}, "as": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 1}}, "creaking": {"_count": 1, "and": {"_count": 1}}, "fully": {"_count": 3, "open": {"_count": 1}, "aware": {"_count": 1}, "conscious": {"_count": 1}}, "digging": {"_count": 3, "his": {"_count": 2}, "in": {"_count": 1}}, "suspicious": {"_count": 1, "": {"_count": 1}}, "cantering": {"_count": 1, "back": {"_count": 1}}, "conjuring": {"_count": 1, "stretchers": {"_count": 1}}, "ferreting": {"_count": 2, "for": {"_count": 1}, "around": {"_count": 1}}, "loose": {"_count": 1, "on": {"_count": 1}}, "funny": {"_count": 5, "": {"_count": 2}, "this": {"_count": 1}, "Her": {"_count": 1}, "as": {"_count": 1}}, "perfect": {"_count": 2, "though": {"_count": 1}, "obviously": {"_count": 1}}, "miserable": {"_count": 1, "about": {"_count": 1}}, "weighing": {"_count": 1, "on": {"_count": 1}}, "constantly": {"_count": 4, "flexing": {"_count": 1}, "on": {"_count": 1}, "reminded": {"_count": 1}, "painfully": {"_count": 1}}, "late": {"_count": 6, "in": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 2}, "": {"_count": 1}, "afternoon": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "odd": {"_count": 6, "she": {"_count": 1}, "a": {"_count": 1}, "how": {"_count": 1}, "really": {"_count": 1}, "but": {"_count": 1}, "behavior": {"_count": 1}}, "creep": {"_count": 1, "up": {"_count": 1}}, "stubbornly": {"_count": 1, "repeating": {"_count": 1}}, "nearing": {"_count": 2, "his": {"_count": 1}, "midnight": {"_count": 1}}, "Franks": {"_count": 1, "bad": {"_count": 1}}, "paining": {"_count": 1, "him": {"_count": 1}}, "propped": {"_count": 3, "against": {"_count": 2}, "up": {"_count": 1}}, "forcing": {"_count": 3, "himself": {"_count": 1}, "them": {"_count": 1}, "something": {"_count": 1}}, "invaluable": {"_count": 1, "": {"_count": 1}}, "fit": {"_count": 3, "for": {"_count": 1}, "only": {"_count": 1}, "to": {"_count": 1}}, "slippery": {"_count": 1, "with": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "sweat": {"_count": 1, "on": {"_count": 1}}, "continuing": {"_count": 5, "to": {"_count": 5}}, "visited": {"_count": 3, "by": {"_count": 3}}, "filtering": {"_count": 1, "through": {"_count": 1}}, "bothering": {"_count": 3, "Harry": {"_count": 2}, "to": {"_count": 1}}, "laughable": {"_count": 2, "": {"_count": 1}, "Indeed": {"_count": 1}}, "highly": {"_count": 9, "unlikely": {"_count": 1}, "infectious": {"_count": 1}, "unpopular": {"_count": 1}, "ambitious": {"_count": 1}, "distressing": {"_count": 1}, "significant": {"_count": 1}, "amusing": {"_count": 1}, "unusual": {"_count": 1}, "colored": {"_count": 1}}, "someone": {"_count": 6, "like": {"_count": 1}, "in": {"_count": 1}, "behind": {"_count": 1}, "being": {"_count": 1}, "standing": {"_count": 1}, "there": {"_count": 1}}, "due": {"_count": 7, "to": {"_count": 5}, "mainly": {"_count": 1}, "there": {"_count": 1}}, "usual": {"_count": 2, "with": {"_count": 1}, "for": {"_count": 1}}, "enjoying": {"_count": 4, "himself": {"_count": 1}, "their": {"_count": 1}, "holding": {"_count": 1}, "herself": {"_count": 1}}, "enormous": {"_count": 3, "it": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "bigboned": {"_count": 1, "and": {"_count": 1}}, "expected": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "elderly": {"_count": 1, "and": {"_count": 1}}, "eyeing": {"_count": 6, "Harrys": {"_count": 1}, "Bill": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 2}}, "occupied": {"_count": 3, "with": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 1}}, "meeting": {"_count": 2, "him": {"_count": 1}, "and": {"_count": 1}}, "perusing": {"_count": 2, "the": {"_count": 2}}, "annoyed": {"_count": 5, "about": {"_count": 2}, "at": {"_count": 2}, "you": {"_count": 1}}, "pride": {"_count": 1, "at": {"_count": 1}}, "secure": {"_count": 1, "the": {"_count": 1}}, "anxious": {"_count": 2, "about": {"_count": 1}, "as": {"_count": 1}}, "compulsively": {"_count": 1, "straightening": {"_count": 1}}, "squashed": {"_count": 2, "against": {"_count": 1}, "probably": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "kneeling": {"_count": 10, "beside": {"_count": 3}, "next": {"_count": 1}, "amid": {"_count": 1}, "on": {"_count": 1}, "opposite": {"_count": 1}, "upon": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}}, "gagging": {"_count": 1, "and": {"_count": 1}}, "protruding": {"_count": 2, "from": {"_count": 2}}, "bellowing": {"_count": 3, "and": {"_count": 1}, "HERMIONE": {"_count": 1}, "into": {"_count": 1}}, "whipped": {"_count": 2, "out": {"_count": 1}, "around": {"_count": 1}}, "built": {"_count": 3, "like": {"_count": 1}, "along": {"_count": 1}, "for": {"_count": 1}}, "weatherbeaten": {"_count": 1, "and": {"_count": 1}}, "four": {"_count": 2, "feet": {"_count": 1}, "on": {"_count": 1}}, "cleaning": {"_count": 1, "Fred": {"_count": 1}}, "brilliant": {"_count": 6, "I": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "hopping": {"_count": 1, "up": {"_count": 1}}, "revealed": {"_count": 6, "as": {"_count": 1}, "to": {"_count": 2}, "bobbing": {"_count": 1}, "onto": {"_count": 1}, "": {"_count": 1}}, "paradise": {"_count": 1, "and": {"_count": 1}}, "arguing": {"_count": 3, "with": {"_count": 2}, "vociferously": {"_count": 1}}, "embarrassing": {"_count": 1, "that": {"_count": 1}}, "stuck": {"_count": 13, "on": {"_count": 1}, "to": {"_count": 4}, "in": {"_count": 3}, "with": {"_count": 1}, "where": {"_count": 1}, "again": {"_count": 1}, "stuck": {"_count": 1}, "alone": {"_count": 1}}, "slaughtered": {"_count": 1, "by": {"_count": 1}}, "perfumed": {"_count": 1, "with": {"_count": 1}}, "Fred": {"_count": 2, "whispered": {"_count": 1}, "and": {"_count": 1}}, "chilly": {"_count": 3, "and": {"_count": 1}, "despite": {"_count": 1}, "but": {"_count": 1}}, "sharp": {"_count": 2, "in": {"_count": 2}}, "Captain": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "blue": {"_count": 1, "with": {"_count": 1}}, "Head": {"_count": 4, "of": {"_count": 4}}, "furnished": {"_count": 1, "in": {"_count": 1}}, "excited": {"_count": 1, "": {"_count": 1}}, "fluttering": {"_count": 3, "in": {"_count": 1}, "around": {"_count": 1}, "very": {"_count": 1}}, "blink": {"_count": 1, "and": {"_count": 1}}, "overcome": {"_count": 2, "with": {"_count": 2}}, "hot": {"_count": 3, "enough": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "plenty": {"_count": 1, "to": {"_count": 1}}, "Cuthbert": {"_count": 1, "Mockridge": {"_count": 1}}, "splashed": {"_count": 1, "across": {"_count": 1}}, "rubbish": {"_count": 1, "at": {"_count": 1}}, "suffused": {"_count": 2, "with": {"_count": 2}}, "flashing": {"_count": 2, "advertisements": {"_count": 1}, "BULGARIA": {"_count": 1}}, "sharing": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 4, "unmistakably": {"_count": 1}, "eclipsed": {"_count": 1}, "reminded": {"_count": 1}, "reassuring": {"_count": 1}}, "higher": {"_count": 1, "even": {"_count": 1}}, "shielding": {"_count": 1, "her": {"_count": 1}}, "halfhidden": {"_count": 1, "again": {"_count": 1}}, "weirder": {"_count": 1, "said": {"_count": 1}}, "blonde": {"_count": 2, "too": {"_count": 1}, "and": {"_count": 1}}, "wiped": {"_count": 3, "clear": {"_count": 1}, "from": {"_count": 1}, "gently": {"_count": 1}}, "answered": {"_count": 5, "for": {"_count": 1}, "almost": {"_count": 1}, "the": {"_count": 1}, "before": {"_count": 1}, "by": {"_count": 1}}, "resting": {"_count": 4, "on": {"_count": 1}, "his": {"_count": 1}, "upon": {"_count": 1}, "its": {"_count": 1}}, "blurred": {"_count": 2, "shot": {"_count": 1}, "because": {"_count": 1}}, "pressing": {"_count": 3, "his": {"_count": 1}, "so": {"_count": 1}, "itself": {"_count": 1}}, "immediately": {"_count": 5, "watching": {"_count": 1}, "stampeded": {"_count": 1}, "explained": {"_count": 1}, "apparent": {"_count": 1}, "cleared": {"_count": 1}}, "Theyre": {"_count": 1, "going": {"_count": 1}}, "feinting": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "flattened": {"_count": 1, "and": {"_count": 1}}, "using": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 3}}, "revived": {"_count": 1, "to": {"_count": 1}}, "flexing": {"_count": 1, "his": {"_count": 1}}, "jabbing": {"_count": 2, "his": {"_count": 1}, "those": {"_count": 1}}, "blood": {"_count": 3, "everywhere": {"_count": 2}, "": {"_count": 1}}, "supporting": {"_count": 3, "Ireland": {"_count": 1}, "George": {"_count": 1}, "Hermione": {"_count": 1}}, "magically": {"_count": 1, "illuminated": {"_count": 1}}, "applauding": {"_count": 3, "appreciatively": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}}, "last": {"_count": 2, "in": {"_count": 1}, "powerful": {"_count": 1}}, "announced": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "yesterday": {"_count": 1}}, "itching": {"_count": 2, "to": {"_count": 2}}, "emitting": {"_count": 3, "odd": {"_count": 1}, "rasping": {"_count": 1}, "one": {"_count": 1}}, "larger": {"_count": 5, "than": {"_count": 5}}, "restraining": {"_count": 2, "her": {"_count": 1}, "herself": {"_count": 1}}, "truth": {"_count": 1, "in": {"_count": 1}}, "Stan": {"_count": 3, "Shunpike": {"_count": 2}, "or": {"_count": 1}}, "staggering": {"_count": 2, "toward": {"_count": 1}, "along": {"_count": 1}}, "rent": {"_count": 3, "by": {"_count": 2}, "apart": {"_count": 1}}, "hurriedly": {"_count": 1, "scooping": {"_count": 1}}, "taut": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "Amos": {"_count": 1, "Diggory": {"_count": 1}}, "Winky": {"_count": 2, "": {"_count": 2}}, "conjured": {"_count": 1, "here": {"_count": 1}}, "twisting": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}, "herself": {"_count": 1}}, "fraying": {"_count": 1, "beneath": {"_count": 1}}, "pitiful": {"_count": 1, "to": {"_count": 1}}, "surveying": {"_count": 2, "as": {"_count": 1}, "Harry": {"_count": 1}}, "contaminating": {"_count": 1, "his": {"_count": 1}}, "ended": {"_count": 2, "by": {"_count": 1}, "the": {"_count": 1}}, "everyone": {"_count": 2, "so": {"_count": 1}, "treating": {"_count": 1}}, "impeded": {"_count": 3, "": {"_count": 1}, "by": {"_count": 2}}, "congregated": {"_count": 1, "there": {"_count": 1}}, "poking": {"_count": 2, "out": {"_count": 2}}, "sporting": {"_count": 3, "a": {"_count": 3}}, "them": {"_count": 2, "Bill": {"_count": 1}, "doing": {"_count": 1}}, "hurt": {"_count": 1, "": {"_count": 1}}, "dreaming": {"_count": 1, "about": {"_count": 1}}, "different": {"_count": 7, "": {"_count": 2}, "said": {"_count": 1}, "he": {"_count": 2}, "you": {"_count": 1}, "tonight": {"_count": 1}}, "mending": {"_count": 1, "her": {"_count": 1}}, "engraved": {"_count": 2, "with": {"_count": 1}, "there": {"_count": 1}}, "disgraceful": {"_count": 1, "that": {"_count": 1}}, "immersed": {"_count": 2, "in": {"_count": 2}}, "darning": {"_count": 1, "a": {"_count": 1}}, "choking": {"_count": 1, "on": {"_count": 1}}, "ambushed": {"_count": 2, "by": {"_count": 2}}, "uncomfortable": {"_count": 2, "owing": {"_count": 1}, "there": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "presumably": {"_count": 2, "supervising": {"_count": 1}, "mending": {"_count": 1}}, "askew": {"_count": 1, "over": {"_count": 1}}, "matched": {"_count": 1, "only": {"_count": 1}}, "enchanted": {"_count": 1, "to": {"_count": 1}}, "newly": {"_count": 1, "sewn": {"_count": 1}}, "trouble": {"_count": 1, "in": {"_count": 1}}, "whiteness": {"_count": 1, "": {"_count": 1}}, "selected": {"_count": 1, "to": {"_count": 1}}, "generally": {"_count": 2, "agreed": {"_count": 1}, "so": {"_count": 1}}, "discontinued": {"_count": 1, "": {"_count": 1}}, "second": {"_count": 2, "nature": {"_count": 1}, "to": {"_count": 1}}, "notoriously": {"_count": 1, "poor": {"_count": 1}}, "situated": {"_count": 5, "at": {"_count": 2}, "in": {"_count": 2}, "and": {"_count": 1}}, "pinned": {"_count": 2, "right": {"_count": 1}, "": {"_count": 1}}, "seventeen": {"_count": 3, "": {"_count": 1}, "I": {"_count": 1}, "but": {"_count": 1}}, "squirming": {"_count": 1, "slightly": {"_count": 1}}, "disgusting": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "popped": {"_count": 1, "a": {"_count": 1}}, "peering": {"_count": 6, "down": {"_count": 1}, "around": {"_count": 1}, "out": {"_count": 3}, "into": {"_count": 1}}, "dull": {"_count": 1, "work": {"_count": 1}}, "plunged": {"_count": 1, "into": {"_count": 1}}, "charged": {"_count": 1, "with": {"_count": 1}}, "yesterday": {"_count": 1, "involved": {"_count": 1}}, "low": {"_count": 4, "and": {"_count": 3}, "in": {"_count": 1}}, "magical": {"_count": 1, "and": {"_count": 1}}, "nevertheless": {"_count": 4, "good": {"_count": 1}, "effective": {"_count": 1}, "a": {"_count": 1}, "quite": {"_count": 1}}, "unmistakably": {"_count": 5, "a": {"_count": 4}, "his": {"_count": 1}}, "Herbology": {"_count": 2, "which": {"_count": 1}, "but": {"_count": 1}}, "flicking": {"_count": 1, "through": {"_count": 1}}, "eavesdropping": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "temporarily": {"_count": 1, "dumbstruck": {"_count": 1}}, "considerable": {"_count": 1, "pain": {"_count": 1}}, "skipping": {"_count": 1, "on": {"_count": 1}}, "adding": {"_count": 2, "to": {"_count": 1}, "chairs": {"_count": 1}}, "reassuring": {"_count": 1, "at": {"_count": 1}}, "hurtling": {"_count": 4, "across": {"_count": 1}, "toward": {"_count": 1}, "along": {"_count": 1}, "back": {"_count": 1}}, "closer": {"_count": 1, "": {"_count": 1}}, "unsurprising": {"_count": 1, "given": {"_count": 1}}, "drifting": {"_count": 2, "toward": {"_count": 1}, "past": {"_count": 1}}, "excellent": {"_count": 2, "": {"_count": 1}, "Potter": {"_count": 1}}, "next": {"_count": 2, "to": {"_count": 2}}, "Saturday": {"_count": 2, "most": {"_count": 1}, "": {"_count": 1}}, "solved": {"_count": 1, "": {"_count": 1}}, "blushing": {"_count": 2, "": {"_count": 1}, "scarlet": {"_count": 1}}, "trudging": {"_count": 1, "off": {"_count": 1}}, "surprisingly": {"_count": 2, "dark": {"_count": 1}, "soft": {"_count": 1}}, "focused": {"_count": 2, "again": {"_count": 1}, "too": {"_count": 1}}, "apparent": {"_count": 1, "to": {"_count": 1}}, "stunned": {"_count": 2, "": {"_count": 2}}, "entered": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "knotted": {"_count": 1, "very": {"_count": 1}}, "moored": {"_count": 1, "reflected": {"_count": 1}}, "widely": {"_count": 2, "scattered": {"_count": 1}, "hoped": {"_count": 1}}, "lonely": {"_count": 1, "with": {"_count": 1}}, "receiving": {"_count": 2, "more": {"_count": 1}, "Ministry": {"_count": 1}}, "refusing": {"_count": 5, "to": {"_count": 4}, "Bagmans": {"_count": 1}}, "predicting": {"_count": 1, "his": {"_count": 1}}, "steering": {"_count": 3, "him": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}}, "curious": {"_count": 2, "had": {"_count": 1}, "I": {"_count": 1}}, "Cho": {"_count": 4, "": {"_count": 1}, "Chang": {"_count": 2}, "catching": {"_count": 1}}, "handling": {"_count": 2, "the": {"_count": 1}, "illegally": {"_count": 1}}, "adamant": {"_count": 1, "He": {"_count": 1}}, "quoting": {"_count": 1, "that": {"_count": 1}}, "get": {"_count": 1, "the": {"_count": 1}}, "opening": {"_count": 3, "the": {"_count": 2}, "and": {"_count": 1}}, "Charlie": {"_count": 1, "Weasley": {"_count": 1}}, "covering": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "Karkaroff": {"_count": 3, "": {"_count": 2}, "who": {"_count": 1}}, "follow": {"_count": 1, "the": {"_count": 1}}, "Cedric": {"_count": 3, "": {"_count": 1}, "Diggory": {"_count": 1}, "all": {"_count": 1}}, "fuller": {"_count": 2, "and": {"_count": 1}, "than": {"_count": 1}}, "rumored": {"_count": 2, "to": {"_count": 1}, "Umbridge": {"_count": 1}}, "powerful": {"_count": 3, "enough": {"_count": 1}, "before": {"_count": 1}, "people": {"_count": 1}}, "pruning": {"_count": 1, "": {"_count": 1}}, "pumping": {"_count": 4, "fast": {"_count": 3}, "frantically": {"_count": 1}}, "extravagant": {"_count": 1, "praise": {"_count": 1}}, "divided": {"_count": 1, "into": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "hollow": {"_count": 1, "and": {"_count": 1}}, "offering": {"_count": 4, "her": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 2}}, "peckish": {"_count": 1, "": {"_count": 1}}, "pitching": {"_count": 1, "in": {"_count": 1}}, "unhelpful": {"_count": 1, "as": {"_count": 1}}, "cornering": {"_count": 1, "Harry": {"_count": 1}}, "nursing": {"_count": 1, "several": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "positioned": {"_count": 1, "exactly": {"_count": 1}}, "wildly": {"_count": 1, "mistaken": {"_count": 1}}, "freed": {"_count": 1, "": {"_count": 1}}, "distinctly": {"_count": 1, "unfair": {"_count": 1}}, "amazing": {"_count": 3, "how": {"_count": 2}, "": {"_count": 1}}, "rereading": {"_count": 2, "Flying": {"_count": 1}, "Achievement": {"_count": 1}}, "handsome": {"_count": 1, "and": {"_count": 1}}, "Hagrids": {"_count": 1, "cabin": {"_count": 1}}, "twittering": {"_count": 2, "madly": {"_count": 1}, "excitedly": {"_count": 1}}, "gradually": {"_count": 1, "filling": {"_count": 1}}, "utterly": {"_count": 2, "delighted": {"_count": 1}, "bizarre": {"_count": 1}}, "green": {"_count": 1, "with": {"_count": 1}}, "untouched": {"_count": 1, "except": {"_count": 1}}, "settled": {"_count": 1, "in": {"_count": 1}}, "clapping": {"_count": 2, "as": {"_count": 1}, "very": {"_count": 1}}, "criticizing": {"_count": 1, "the": {"_count": 1}}, "waltzing": {"_count": 1, "with": {"_count": 1}}, "nervously": {"_count": 1, "avoiding": {"_count": 1}}, "blasting": {"_count": 1, "rosebushes": {"_count": 1}}, "abou": {"_count": 1, "three": {"_count": 1}}, "brokenhearted": {"_count": 1, "when": {"_count": 1}}, "six": {"_count": 3, "I": {"_count": 1}, "said": {"_count": 1}, "years": {"_count": 1}}, "screwed": {"_count": 3, "up": {"_count": 3}}, "bushy": {"_count": 1, "again": {"_count": 1}}, "tethered": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "pawing": {"_count": 1, "the": {"_count": 1}}, "sniggering": {"_count": 1, "apparently": {"_count": 1}}, "gloating": {"_count": 1, "at": {"_count": 1}}, "ages": {"_count": 1, "": {"_count": 1}}, "accusing": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "accompanied": {"_count": 3, "by": {"_count": 3}}, "overflowing": {"_count": 1, "": {"_count": 1}}, "zooming": {"_count": 3, "backward": {"_count": 1}, "toward": {"_count": 1}, "in": {"_count": 1}}, "blotchy": {"_count": 1, "his": {"_count": 1}}, "prosecuted": {"_count": 1, "for": {"_count": 1}}, "beardless": {"_count": 1, "young": {"_count": 1}}, "great": {"_count": 4, "shakes": {"_count": 1}, "": {"_count": 1}, "Nor": {"_count": 1}, "said": {"_count": 1}}, "feelin": {"_count": 2, "like": {"_count": 1}, "a": {"_count": 1}}, "awkward": {"_count": 1, "moving": {"_count": 1}}, "softly": {"_count": 1, "lit": {"_count": 1}}, "Moaning": {"_count": 2, "Myrtle": {"_count": 2}}, "halftrue": {"_count": 1, "Percy": {"_count": 1}}, "if": {"_count": 3, "every": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 1}}, "bouncing": {"_count": 2, "around": {"_count": 1}, "on": {"_count": 1}}, "Bartemius": {"_count": 1, "Crouch": {"_count": 1}}, "sizing": {"_count": 1, "him": {"_count": 1}}, "Crouch": {"_count": 1, "pretending": {"_count": 1}}, "concealing": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "slipping": {"_count": 5, "away": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 1}}, "interested": {"_count": 3, "in": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "undoable": {"_count": 1, "": {"_count": 1}}, "exhausted": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "he": {"_count": 1}}, "twenty": {"_count": 1, "past": {"_count": 1}}, "chewing": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "Fleur": {"_count": 2, "Delacours": {"_count": 1}, "in": {"_count": 1}}, "ghostly": {"_count": 1, "green": {"_count": 1}}, "Krum": {"_count": 1, "": {"_count": 1}}, "ze": {"_count": 1, "grindylows": {"_count": 1}}, "honest": {"_count": 3, "with": {"_count": 2}, "said": {"_count": 1}}, "grinding": {"_count": 1, "it": {"_count": 1}}, "pausing": {"_count": 1, "at": {"_count": 1}}, "milder": {"_count": 1, "than": {"_count": 1}}, "longer": {"_count": 2, "than": {"_count": 2}}, "untidy": {"_count": 2, "and": {"_count": 2}}, "stroking": {"_count": 2, "Buckbeak": {"_count": 1}, "his": {"_count": 1}}, "crunching": {"_count": 1, "up": {"_count": 1}}, "Lucius": {"_count": 2, "Malfoy": {"_count": 2}}, "Ludo": {"_count": 2, "Bagman": {"_count": 2}}, "tipped": {"_count": 2, "for": {"_count": 1}, "off": {"_count": 1}}, "handed": {"_count": 3, "straight": {"_count": 1}, "back": {"_count": 1}, "down": {"_count": 1}}, "shunted": {"_count": 1, "sideways": {"_count": 1}}, "teaching": {"_count": 2, "here": {"_count": 1}, "the": {"_count": 1}}, "tough": {"_count": 1, "but": {"_count": 1}}, "ecstatic": {"_count": 1, "about": {"_count": 1}}, "paying": {"_count": 4, "you": {"_count": 1}, "the": {"_count": 1}, "attention": {"_count": 1}, "them": {"_count": 1}}, "enclosed": {"_count": 1, "in": {"_count": 1}}, "smaller": {"_count": 2, "than": {"_count": 1}, "slighter": {"_count": 1}}, "unlikely": {"_count": 3, "to": {"_count": 3}}, "elaborated": {"_count": 1, "": {"_count": 1}}, "unshaven": {"_count": 2, "and": {"_count": 2}}, "thoroughly": {"_count": 3, "enjoying": {"_count": 2}, "annoyed": {"_count": 1}}, "daybreak": {"_count": 1, "": {"_count": 1}}, "sanest": {"_count": 1, "when": {"_count": 1}}, "drooping": {"_count": 1, "giving": {"_count": 1}}, "concentrating": {"_count": 4, "on": {"_count": 4}}, "swelteringly": {"_count": 1, "hot": {"_count": 1}}, "riding": {"_count": 3, "on": {"_count": 1}, "in": {"_count": 1}, "alone": {"_count": 1}}, "wheezing": {"_count": 1, "and": {"_count": 1}}, "pointless": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "liquid": {"_count": 1, "or": {"_count": 1}}, "dimly": {"_count": 2, "lit": {"_count": 2}}, "comprised": {"_count": 2, "of": {"_count": 2}}, "observing": {"_count": 1, "square": {"_count": 1}}, "silverhaired": {"_count": 1, "just": {"_count": 1}}, "Antonin": {"_count": 1, "Dolohov": {"_count": 1}}, "worthless": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "Rosier": {"_count": 1, "said": {"_count": 1}}, "Travers": {"_count": 2, "he": {"_count": 1}, "hanging": {"_count": 1}}, "sucking": {"_count": 1, "the": {"_count": 1}}, "collecting": {"_count": 3, "information": {"_count": 1}, "cutlery": {"_count": 1}, "you": {"_count": 1}}, "ringing": {"_count": 4, "with": {"_count": 3}, "in": {"_count": 1}}, "total": {"_count": 2, "silence": {"_count": 2}}, "pure": {"_count": 3, "hatred": {"_count": 1}, "imagination": {"_count": 1}, "luck": {"_count": 1}}, "strong": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "jeering": {"_count": 1, "some": {"_count": 1}}, "blackness": {"_count": 1, "and": {"_count": 1}}, "sort": {"_count": 5, "of": {"_count": 5}}, "gaping": {"_count": 4, "at": {"_count": 3}, "stupidly": {"_count": 1}}, "Bertha": {"_count": 1, "as": {"_count": 1}}, "torturing": {"_count": 3, "Wormtail": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}}, "Frank": {"_count": 1, "Bryce": {"_count": 1}}, "reeling": {"_count": 1, "until": {"_count": 1}}, "Voldemort": {"_count": 9, "Harry": {"_count": 1}, "s": {"_count": 1}, "making": {"_count": 1}, "trying": {"_count": 1}, "and": {"_count": 2}, "searching": {"_count": 1}, "looking": {"_count": 1}, "himself": {"_count": 1}}, "practicing": {"_count": 5, "hexes": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}, "her": {"_count": 1}, "incantations": {"_count": 1}}, "confident": {"_count": 4, "that": {"_count": 4}}, "hurting": {"_count": 4, "too": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "affected": {"_count": 1, "by": {"_count": 1}}, "jabbering": {"_count": 1, "away": {"_count": 1}}, "intrigued": {"_count": 1, "by": {"_count": 1}}, "silenced": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "upon": {"_count": 7, "him": {"_count": 2}, "the": {"_count": 1}, "Harry": {"_count": 3}, "it": {"_count": 1}}, "north": {"_count": 1, "and": {"_count": 1}}, "somewhere": {"_count": 1, "close": {"_count": 1}}, "inches": {"_count": 2, "from": {"_count": 1}, "away": {"_count": 1}}, "between": {"_count": 2, "him": {"_count": 1}, "himself": {"_count": 1}}, "bang": {"_count": 1, "on": {"_count": 1}}, "serious": {"_count": 1, "": {"_count": 1}}, "costing": {"_count": 2, "him": {"_count": 2}}, "Wormtail": {"_count": 2, "": {"_count": 2}}, "busying": {"_count": 1, "himself": {"_count": 1}}, "thickening": {"_count": 1, "blurring": {"_count": 1}}, "strangled": {"_count": 1, "in": {"_count": 1}}, "hairless": {"_count": 1, "and": {"_count": 1}}, "dropped": {"_count": 1, "into": {"_count": 1}}, "gasping": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "simmering": {"_count": 3, "sending": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "flat": {"_count": 4, "as": {"_count": 1}, "against": {"_count": 1}, "on": {"_count": 2}}, "mightier": {"_count": 1, "than": {"_count": 1}}, "through": {"_count": 4, "his": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "foolish": {"_count": 6, "to": {"_count": 3}, "enough": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "deflected": {"_count": 1, "by": {"_count": 1}}, "ripped": {"_count": 4, "from": {"_count": 2}, "where": {"_count": 1}, "open": {"_count": 1}}, "tested": {"_count": 1, "and": {"_count": 1}}, "thwarted": {"_count": 1, "": {"_count": 1}}, "willing": {"_count": 1, "to": {"_count": 1}}, "buried": {"_count": 3, "": {"_count": 1}, "under": {"_count": 1}, "deepest": {"_count": 1}}, "pain": {"_count": 3, "beyond": {"_count": 2}, "such": {"_count": 1}}, "bliss": {"_count": 1, "not": {"_count": 1}}, "quivering": {"_count": 3, "inches": {"_count": 1}, "when": {"_count": 1}, "through": {"_count": 1}}, "distant": {"_count": 1, "and": {"_count": 1}}, "fell": {"_count": 1, "next": {"_count": 1}}, "dodging": {"_count": 1, "curses": {"_count": 1}}, "pressed": {"_count": 4, "into": {"_count": 1}, "against": {"_count": 1}, "over": {"_count": 1}, "back": {"_count": 1}}, "blurring": {"_count": 1, "worse": {"_count": 1}}, "MadEye": {"_count": 3, "Moody": {"_count": 2}, "Moodys": {"_count": 1}}, "patrolling": {"_count": 1, "around": {"_count": 1}}, "bulging": {"_count": 1, "the": {"_count": 1}}, "barred": {"_count": 1, "and": {"_count": 1}}, "cold": {"_count": 7, "fury": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 1}, "he": {"_count": 1}, "hatred": {"_count": 1}}, "withdrawing": {"_count": 1, "into": {"_count": 1}}, "slack": {"_count": 1, "his": {"_count": 1}}, "dying": {"_count": 2, "": {"_count": 2}}, "clearer": {"_count": 1, "than": {"_count": 1}}, "released": {"_count": 1, "": {"_count": 1}}, "myself": {"_count": 2, "again": {"_count": 1}, "at": {"_count": 1}}, "easier": {"_count": 5, "to": {"_count": 1}, "and": {"_count": 1}, "than": {"_count": 2}, "as": {"_count": 1}}, "spoke": {"_count": 1, "": {"_count": 1}}, "repaired": {"_count": 1, "": {"_count": 1}}, "astonished": {"_count": 3, "to": {"_count": 3}}, "transported": {"_count": 1, "straight": {"_count": 1}}, "baring": {"_count": 1, "his": {"_count": 1}}, "cleared": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}}, "screwing": {"_count": 1, "up": {"_count": 1}}, "instantaneous": {"_count": 2, "": {"_count": 2}}, "useless": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "jokin": {"_count": 1, "jokin": {"_count": 1}}, "normally": {"_count": 1, "decorated": {"_count": 1}}, "truly": {"_count": 2, "on": {"_count": 1}, "wonderful": {"_count": 1}}, "murdered": {"_count": 2, "by": {"_count": 2}}, "suffering": {"_count": 4, "some": {"_count": 1}, "from": {"_count": 1}, "accordingly": {"_count": 1}, "them": {"_count": 1}}, "dozing": {"_count": 4, "her": {"_count": 1}, "peacefully": {"_count": 1}, "in": {"_count": 1}, "lightly": {"_count": 1}}, "involved": {"_count": 3, "in": {"_count": 3}}, "betting": {"_count": 1, "youd": {"_count": 1}}, "cause": {"_count": 2, "for": {"_count": 1}, "Malfoy": {"_count": 1}}, "siphoning": {"_count": 1, "off": {"_count": 1}}, "twice": {"_count": 1, "as": {"_count": 1}}, "laughter": {"_count": 1, "inside": {"_count": 1}}, "absorbed": {"_count": 2, "into": {"_count": 1}, "in": {"_count": 1}}, "drenched": {"_count": 2, "in": {"_count": 2}}, "escaping": {"_count": 1, "from": {"_count": 1}}, "beading": {"_count": 1, "his": {"_count": 1}}, "swallowed": {"_count": 3, "by": {"_count": 3}}, "agitated": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "ushering": {"_count": 1, "Dudley": {"_count": 1}}, "But": {"_count": 1, "at": {"_count": 1}}, "icy": {"_count": 3, "and": {"_count": 1}, "Harrys": {"_count": 1}, "": {"_count": 1}}, "purplefaced": {"_count": 1, "shouting": {"_count": 1}}, "retching": {"_count": 1, "again": {"_count": 1}}, "doomed": {"_count": 1, "to": {"_count": 1}}, "desperate": {"_count": 5, "to": {"_count": 4}, "for": {"_count": 1}}, "disappointed": {"_count": 6, "to": {"_count": 2}, "": {"_count": 1}, "he": {"_count": 1}, "by": {"_count": 2}}, "demenders": {"_count": 1, "who": {"_count": 1}}, "beginning": {"_count": 2, "to": {"_count": 2}}, "regaining": {"_count": 1, "her": {"_count": 1}}, "deflating": {"_count": 1, "like": {"_count": 1}}, "snapped": {"_count": 1, "in": {"_count": 1}}, "thumping": {"_count": 3, "uncontrollably": {"_count": 1}, "loudly": {"_count": 1}, "very": {"_count": 1}}, "sealing": {"_count": 1, "a": {"_count": 1}}, "swept": {"_count": 1, "from": {"_count": 1}}, "rummaging": {"_count": 2, "in": {"_count": 1}, "through": {"_count": 1}}, "extinguished": {"_count": 6, "and": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "replaced": {"_count": 1}, "Then": {"_count": 1}}, "vaguely": {"_count": 4, "familiar": {"_count": 3}, "tempted": {"_count": 1}}, "number": {"_count": 2, "thirteen": {"_count": 1}, "twelve": {"_count": 1}}, "shabby": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "trickling": {"_count": 3, "down": {"_count": 2}, "from": {"_count": 1}}, "scary": {"_count": 2, "": {"_count": 1}, "Snapes": {"_count": 1}}, "dank": {"_count": 1, "and": {"_count": 1}}, "halfashamed": {"_count": 1, "of": {"_count": 1}}, "saved": {"_count": 3, "the": {"_count": 3}}, "drooling": {"_count": 2, "her": {"_count": 1}, "with": {"_count": 1}}, "scarcely": {"_count": 3, "less": {"_count": 2}, "room": {"_count": 1}}, "entertaining": {"_count": 2, "Hermione": {"_count": 1}, "at": {"_count": 1}}, "hiccuping": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "yawning": {"_count": 1, "widely": {"_count": 1}}, "mild": {"_count": 2, "but": {"_count": 1}, "again": {"_count": 1}}, "instant": {"_count": 1, "uproar": {"_count": 1}}, "forever": {"_count": 1, "asking": {"_count": 1}}, "voted": {"_count": 1, "out": {"_count": 1}}, "Crack": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 5, "these": {"_count": 1}, "spect": {"_count": 1}, "six": {"_count": 1}, "said": {"_count": 1}, "ten": {"_count": 1}}, "unknown": {"_count": 1, "to": {"_count": 1}}, "past": {"_count": 1, "midday": {"_count": 1}}, "bald": {"_count": 1, "like": {"_count": 1}}, "glowering": {"_count": 2, "at": {"_count": 1}, "after": {"_count": 1}}, "redolent": {"_count": 1, "of": {"_count": 1}}, "faded": {"_count": 1, "and": {"_count": 1}}, "embroidered": {"_count": 1, "still": {"_count": 1}}, "younger": {"_count": 4, "than": {"_count": 1}, "": {"_count": 1}, "because": {"_count": 1}, "too": {"_count": 1}}, "connected": {"_count": 2, "by": {"_count": 1}, "to": {"_count": 1}}, "grown": {"_count": 1, "up": {"_count": 1}}, "jammed": {"_count": 1, "against": {"_count": 1}}, "inlaid": {"_count": 1, "with": {"_count": 1}}, "blinking": {"_count": 2, "down": {"_count": 1}, "in": {"_count": 1}}, "horribly": {"_count": 2, "familiar": {"_count": 1}, "disfigured": {"_count": 1}}, "moodier": {"_count": 1, "and": {"_count": 1}}, "genuine": {"_count": 1, "": {"_count": 1}}, "superimposed": {"_count": 1, "on": {"_count": 1}}, "kissing": {"_count": 3, "him": {"_count": 2}, "her": {"_count": 1}}, "tomato": {"_count": 1, "red": {"_count": 1}}, "rhapsodizing": {"_count": 1, "about": {"_count": 1}}, "inevitable": {"_count": 1, "they": {"_count": 1}}, "audible": {"_count": 1, "even": {"_count": 1}}, "sniffing": {"_count": 2, "at": {"_count": 1}, "loudly": {"_count": 1}}, "unmistakable": {"_count": 1, "though": {"_count": 1}}, "intact": {"_count": 1, "": {"_count": 1}}, "least": {"_count": 2, "expecting": {"_count": 1}, "surprised": {"_count": 1}}, "downstairs": {"_count": 1, "Mrs": {"_count": 1}}, "gulping": {"_count": 2, "now": {"_count": 1}, "for": {"_count": 1}}, "swaying": {"_count": 1, "on": {"_count": 1}}, "pulsating": {"_count": 1, "slightly": {"_count": 1}}, "throttling": {"_count": 1, "a": {"_count": 1}}, "captioned": {"_count": 2, "How": {"_count": 1}, "with": {"_count": 1}}, "illustrated": {"_count": 1, "by": {"_count": 1}}, "elected": {"_count": 1, "Minister": {"_count": 1}}, "grimy": {"_count": 1, "": {"_count": 1}}, "anywhere": {"_count": 1, "near": {"_count": 1}}, "facetoface": {"_count": 2, "with": {"_count": 2}}, "faking": {"_count": 1, "and": {"_count": 1}}, "ablaze": {"_count": 3, "with": {"_count": 2}, "": {"_count": 1}}, "hailed": {"_count": 1, "by": {"_count": 1}}, "inclined": {"_count": 1, "toward": {"_count": 1}}, "new": {"_count": 1, "And": {"_count": 1}}, "punctured": {"_count": 1, "for": {"_count": 1}}, "sorted": {"_count": 1, "into": {"_count": 1}}, "node": {"_count": 1, "iddum": {"_count": 1}}, "intending": {"_count": 2, "to": {"_count": 2}}, "highpitched": {"_count": 1, "breathy": {"_count": 1}}, "chatting": {"_count": 3, "animatedly": {"_count": 1}, "to": {"_count": 2}}, "glassyeyed": {"_count": 1, "and": {"_count": 1}}, "okay": {"_count": 2, "chuckled": {"_count": 1}, "with": {"_count": 1}}, "sick": {"_count": 2, "of": {"_count": 1}, "wizards": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "crossing": {"_count": 1, "the": {"_count": 1}}, "issuing": {"_count": 3, "copious": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 1}}, "feverishly": {"_count": 1, "prodding": {"_count": 1}}, "lashing": {"_count": 1, "the": {"_count": 1}}, "cracked": {"_count": 4, "trusting": {"_count": 1}, "with": {"_count": 1}, "highpitched": {"_count": 1}, "the": {"_count": 1}}, "rebuffed": {"_count": 1, "by": {"_count": 1}}, "replaced": {"_count": 1, "by": {"_count": 1}}, "desperately": {"_count": 1, "dull": {"_count": 1}}, "murder": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "developing": {"_count": 1, "over": {"_count": 1}}, "attracting": {"_count": 1, "": {"_count": 1}}, "way": {"_count": 1, "below": {"_count": 1}}, "roughly": {"_count": 1, "level": {"_count": 1}}, "succeeded": {"_count": 1, "by": {"_count": 1}}, "starving": {"_count": 1, "and": {"_count": 1}}, "stinging": {"_count": 1, "painfully": {"_count": 1}}, "red": {"_count": 1, "raw": {"_count": 1}}, "detention": {"_count": 1, "with": {"_count": 1}}, "halfpast": {"_count": 1, "two": {"_count": 1}}, "grateful": {"_count": 4, "for": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "after": {"_count": 1}}, "defending": {"_count": 1, "the": {"_count": 1}}, "pretty": {"_count": 9, "good": {"_count": 3}, "sure": {"_count": 2}, "certain": {"_count": 1}, "much": {"_count": 1}, "quiet": {"_count": 1}, "bad": {"_count": 1}}, "darkening": {"_count": 2, "so": {"_count": 1}, "Hermiones": {"_count": 1}}, "searing": {"_count": 1, "with": {"_count": 1}}, "touching": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "high": {"_count": 4, "in": {"_count": 1}, "clear": {"_count": 1}, "and": {"_count": 1}, "cold": {"_count": 1}}, "fresh": {"_count": 1, "in": {"_count": 1}}, "ordering": {"_count": 1, "Dungbombs": {"_count": 1}}, "arriving": {"_count": 1, "and": {"_count": 1}}, "devoted": {"_count": 4, "to": {"_count": 3}, "instead": {"_count": 1}}, "apparently": {"_count": 3, "having": {"_count": 1}, "sleeping": {"_count": 1}, "keeping": {"_count": 1}}, "headlined": {"_count": 1, "TRESPASS": {"_count": 1}}, "ignoring": {"_count": 1, "the": {"_count": 1}}, "practice": {"_count": 1, "": {"_count": 1}}, "advising": {"_count": 2, "Ron": {"_count": 1}, "anyone": {"_count": 1}}, "flickering": {"_count": 1, "flame": {"_count": 1}}, "unfurling": {"_count": 1, "on": {"_count": 1}}, "abysmal": {"_count": 1, "": {"_count": 1}}, "ruined": {"_count": 1, "somewhat": {"_count": 1}}, "They": {"_count": 1, "both": {"_count": 1}}, "impressed": {"_count": 3, "against": {"_count": 1}, "to": {"_count": 2}}, "slashed": {"_count": 1, "by": {"_count": 1}}, "staining": {"_count": 1, "the": {"_count": 1}}, "disposed": {"_count": 1, "to": {"_count": 1}}, "luck": {"_count": 2, "said": {"_count": 1}, "I": {"_count": 1}}, "stricken": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "agreeing": {"_count": 2, "to": {"_count": 2}}, "tempted": {"_count": 2, "to": {"_count": 2}}, "punctuated": {"_count": 2, "once": {"_count": 1}, "with": {"_count": 1}}, "broached": {"_count": 1, "again": {"_count": 1}}, "copying": {"_count": 1, "I": {"_count": 1}}, "exceptionally": {"_count": 1, "dry": {"_count": 1}}, "immediate": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "determinedly": {"_count": 2, "looking": {"_count": 1}, "loosening": {"_count": 1}}, "steeling": {"_count": 1, "herself": {"_count": 1}}, "Michael": {"_count": 1, "Corner": {"_count": 1}}, "printed": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "Angelina": {"_count": 1, "and": {"_count": 1}}, "within": {"_count": 3, "earshot": {"_count": 2}, "seconds": {"_count": 1}}, "exerting": {"_count": 1, "on": {"_count": 1}}, "removed": {"_count": 2, "from": {"_count": 1}, "to": {"_count": 1}}, "unfathomable": {"_count": 1, "": {"_count": 1}}, "assisting": {"_count": 1, "the": {"_count": 1}}, "lazily": {"_count": 1, "vanishing": {"_count": 1}}, "Mundungus": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "Dung": {"_count": 1, "hiding": {"_count": 1}}, "banned": {"_count": 1, "from": {"_count": 1}}, "tell": {"_count": 1, "me": {"_count": 1}}, "struck": {"_count": 1, "dumb": {"_count": 1}}, "picking": {"_count": 2, "up": {"_count": 1}, "runner": {"_count": 1}}, "whatever": {"_count": 1, "he": {"_count": 1}}, "inflamed": {"_count": 1, "if": {"_count": 1}}, "teamed": {"_count": 1, "with": {"_count": 1}}, "flourishing": {"_count": 1, "his": {"_count": 1}}, "similarly": {"_count": 1, "patchy": {"_count": 1}}, "therefore": {"_count": 6, "likely": {"_count": 1}, "momentarily": {"_count": 1}, "in": {"_count": 1}, "forced": {"_count": 1}, "a": {"_count": 1}, "unsurprised": {"_count": 1}}, "related": {"_count": 1, "to": {"_count": 1}}, "allowing": {"_count": 1, "the": {"_count": 1}}, "muttered": {"_count": 1, "as": {"_count": 1}}, "muffled": {"_count": 4, "by": {"_count": 2}, "": {"_count": 1}, "but": {"_count": 1}}, "nearer": {"_count": 2, "": {"_count": 2}}, "winded": {"_count": 1, "all": {"_count": 1}}, "cackling": {"_count": 1, "in": {"_count": 1}}, "unwilling": {"_count": 2, "to": {"_count": 2}}, "leaping": {"_count": 2, "from": {"_count": 1}, "against": {"_count": 1}}, "snow": {"_count": 3, "in": {"_count": 2}, "everywhere": {"_count": 1}}, "matted": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "pretendin": {"_count": 1, "we": {"_count": 1}}, "headin": {"_count": 1, "fer": {"_count": 1}}, "bein": {"_count": 2, "tailed": {"_count": 1}, "kicked": {"_count": 1}}, "odds": {"_count": 1, "on": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "loads": {"_count": 1, "once": {"_count": 1}}, "sittin": {"_count": 1, "": {"_count": 1}}, "light": {"_count": 6, "we": {"_count": 1}, "and": {"_count": 2}, "theyd": {"_count": 1}, "gray": {"_count": 1}, "but": {"_count": 1}}, "lyin": {"_count": 3, "in": {"_count": 1}, "by": {"_count": 1}, "at": {"_count": 1}}, "defnitely": {"_count": 1, "on": {"_count": 1}}, "hangin": {"_count": 1, "upside": {"_count": 1}}, "relyin": {"_count": 1, "on": {"_count": 1}}, "they": {"_count": 2, "knew": {"_count": 1}, "were": {"_count": 1}}, "rarin": {"_count": 1, "ter": {"_count": 1}}, "badly": {"_count": 1, "hurt": {"_count": 1}}, "barking": {"_count": 1, "madly": {"_count": 1}}, "Senior": {"_count": 1, "Undersecretary": {"_count": 1}}, "Fang": {"_count": 1, "": {"_count": 1}}, "Where": {"_count": 1, "have": {"_count": 1}}, "performing": {"_count": 2, "as": {"_count": 1}, "an": {"_count": 1}}, "knocking": {"_count": 1, "for": {"_count": 1}}, "teeming": {"_count": 2, "with": {"_count": 2}}, "proof": {"_count": 2, "that": {"_count": 2}}, "addressing": {"_count": 1, "somebody": {"_count": 1}}, "gonna": {"_count": 2, "tell": {"_count": 1}, "fine": {"_count": 1}}, "fretting": {"_count": 1, "that": {"_count": 1}}, "protesting": {"_count": 1, "that": {"_count": 1}}, "ridiculous": {"_count": 1, "hed": {"_count": 1}}, "crucial": {"_count": 2, "that": {"_count": 1}, "he": {"_count": 1}}, "subsiding": {"_count": 1, "slightly": {"_count": 1}}, "confirming": {"_count": 1, "his": {"_count": 1}}, "mopping": {"_count": 1, "his": {"_count": 1}}, "referring": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "familiar": {"_count": 1, "to": {"_count": 1}}, "glued": {"_count": 1, "to": {"_count": 1}}, "banging": {"_count": 2, "into": {"_count": 1}, "outside": {"_count": 1}}, "disappearing": {"_count": 2, "through": {"_count": 2}}, "youve": {"_count": 1, "no": {"_count": 1}}, "riotously": {"_count": 1, "happy": {"_count": 1}}, "big": {"_count": 1, "enough": {"_count": 1}}, "modeling": {"_count": 1, "a": {"_count": 1}}, "fanning": {"_count": 1, "herself": {"_count": 1}}, "labelled": {"_count": 1, "DILYS": {"_count": 1}}, "occupying": {"_count": 1, "the": {"_count": 1}}, "beamed": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "precisely": {"_count": 2, "what": {"_count": 1}, "this": {"_count": 1}}, "confused": {"_count": 3, "beyond": {"_count": 1}, "perhaps": {"_count": 1}, "": {"_count": 1}}, "lightening": {"_count": 1, "almost": {"_count": 1}}, "infectious": {"_count": 1, "": {"_count": 1}}, "Kreacher": {"_count": 2, "s": {"_count": 1}, "his": {"_count": 1}}, "battling": {"_count": 3, "with": {"_count": 1}, "a": {"_count": 1}, "collapsed": {"_count": 1}}, "seriously": {"_count": 1, "affronted": {"_count": 1}}, "limited": {"_count": 1, "": {"_count": 1}}, "bringing": {"_count": 1, "in": {"_count": 1}}, "papered": {"_count": 1, "with": {"_count": 1}}, "wispy": {"_count": 1, "and": {"_count": 1}}, "evaporating": {"_count": 1, "fast": {"_count": 1}}, "every": {"_count": 1, "likelihood": {"_count": 1}}, "engaged": {"_count": 1, "in": {"_count": 1}}, "egging": {"_count": 1, "it": {"_count": 1}}, "Siriuss": {"_count": 2, "turn": {"_count": 1}, "brother": {"_count": 1}}, "goading": {"_count": 1, "him": {"_count": 1}}, "incumbent": {"_count": 1, "upon": {"_count": 1}}, "nervousness": {"_count": 1, "in": {"_count": 1}}, "further": {"_count": 1, "lowered": {"_count": 1}}, "insufficient": {"_count": 1, "to": {"_count": 1}}, "imprisoning": {"_count": 1, "himself": {"_count": 1}}, "slowly": {"_count": 5, "and": {"_count": 1}, "turning": {"_count": 3}, "constricting": {"_count": 1}}, "burned": {"_count": 1, "into": {"_count": 1}}, "possessing": {"_count": 2, "the": {"_count": 1}, "Ginny": {"_count": 1}}, "nine": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "chasing": {"_count": 3, "him": {"_count": 1}, "after": {"_count": 1}, "me": {"_count": 1}}, "rearing": {"_count": 1, "in": {"_count": 1}}, "prickling": {"_count": 3, "unpleasantly": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}}, "triumphant": {"_count": 1, "": {"_count": 1}}, "unnerved": {"_count": 1, "": {"_count": 1}}, "scooping": {"_count": 1, "his": {"_count": 1}}, "whether": {"_count": 3, "he": {"_count": 1}, "it": {"_count": 1}, "Firenze": {"_count": 1}}, "sneering": {"_count": 3, "up": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "tucking": {"_count": 3, "into": {"_count": 2}, "the": {"_count": 1}}, "improving": {"_count": 3, "steadily": {"_count": 1}, "so": {"_count": 1}, "greatly": {"_count": 1}}, "oddly": {"_count": 5, "distracted": {"_count": 1}, "cool": {"_count": 1}, "flushed": {"_count": 1}, "colorless": {"_count": 1}, "clear": {"_count": 1}}, "steadily": {"_count": 1, "depriving": {"_count": 1}}, "tuned": {"_count": 1, "in": {"_count": 1}}, "Puddlemere": {"_count": 1, "United": {"_count": 1}}, "goodlooking": {"_count": 1, "": {"_count": 1}}, "nice": {"_count": 2, "of": {"_count": 1}, "at": {"_count": 1}}, "raining": {"_count": 1, "hard": {"_count": 1}}, "decent": {"_count": 1, "": {"_count": 1}}, "unhappy": {"_count": 1, "and": {"_count": 1}}, "expecting": {"_count": 2, "a": {"_count": 1}, "detention": {"_count": 1}}, "shoveling": {"_count": 1, "down": {"_count": 1}}, "sensible": {"_count": 2, "said": {"_count": 1}, "she": {"_count": 1}}, "appalling": {"_count": 1, "": {"_count": 1}}, "hunched": {"_count": 1, "in": {"_count": 1}}, "feet": {"_count": 6, "from": {"_count": 4}, "away": {"_count": 2}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "banning": {"_count": 1, "it": {"_count": 1}}, "stalking": {"_count": 1, "the": {"_count": 1}}, "pockmarked": {"_count": 1, "the": {"_count": 1}}, "bewitched": {"_count": 1, "to": {"_count": 1}}, "recovering": {"_count": 1, "": {"_count": 1}}, "effective": {"_count": 1, "": {"_count": 1}}, "directly": {"_count": 3, "opposite": {"_count": 1}, "across": {"_count": 1}, "beneath": {"_count": 1}}, "magnified": {"_count": 1, "more": {"_count": 1}}, "revolted": {"_count": 1, "to": {"_count": 1}}, "breakfast": {"_count": 1, "time": {"_count": 1}}, "foretold": {"_count": 1, "that": {"_count": 1}}, "foolproof": {"_count": 1, "": {"_count": 1}}, "gamboling": {"_count": 1, "around": {"_count": 1}}, "heavily": {"_count": 1, "bandaged": {"_count": 1}}, "fear": {"_count": 3, "in": {"_count": 2}, "He": {"_count": 1}}, "splattered": {"_count": 1, "with": {"_count": 1}}, "clearing": {"_count": 1, "": {"_count": 1}}, "remarkably": {"_count": 1, "quick": {"_count": 1}}, "surprising": {"_count": 1, "how": {"_count": 1}}, "bluffing": {"_count": 1, "said": {"_count": 1}}, "silhouetted": {"_count": 1, "against": {"_count": 1}}, "darling": {"_count": 1, "Hermiones": {"_count": 1}}, "lank": {"_count": 2, "and": {"_count": 2}}, "flopping": {"_count": 1, "onto": {"_count": 1}}, "minuscule": {"_count": 1, "and": {"_count": 1}}, "lounging": {"_count": 1, "in": {"_count": 1}}, "Remus": {"_count": 1, "Lupin": {"_count": 1}}, "dazzling": {"_count": 1, "on": {"_count": 1}}, "stowing": {"_count": 1, "the": {"_count": 1}}, "look": {"_count": 2, "angry": {"_count": 1}, "him": {"_count": 1}}, "bored": {"_count": 1, "": {"_count": 1}}, "swooping": {"_count": 2, "down": {"_count": 1}, "low": {"_count": 1}}, "headed": {"_count": 1, "SO": {"_count": 1}}, "unequal": {"_count": 1, "to": {"_count": 1}}, "everything": {"_count": 1, "Snape": {"_count": 1}}, "popular": {"_count": 1, "he": {"_count": 1}}, "hobbling": {"_count": 2, "along": {"_count": 1}, "up": {"_count": 1}}, "retold": {"_count": 1, "so": {"_count": 1}}, "roped": {"_count": 1, "off": {"_count": 1}}, "insulting": {"_count": 1, "but": {"_count": 1}}, "gently": {"_count": 1, "dripping": {"_count": 1}}, "passin": {"_count": 1, "really": {"_count": 1}}, "carryin": {"_count": 2, "on": {"_count": 1}, "us": {"_count": 1}}, "proceeding": {"_count": 1, "toward": {"_count": 1}}, "stubby": {"_count": 1, "and": {"_count": 1}}, "armed": {"_count": 1, "A": {"_count": 1}}, "talk": {"_count": 1, "over": {"_count": 1}}, "Daviess": {"_count": 1, "first": {"_count": 1}}, "heard": {"_count": 1, "to": {"_count": 1}}, "solely": {"_count": 1, "responsible": {"_count": 1}}, "contemplating": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "scheduled": {"_count": 4, "for": {"_count": 3}, "to": {"_count": 1}}, "answering": {"_count": 1, "Umbridge": {"_count": 1}}, "while": {"_count": 2, "making": {"_count": 1}, "Snape": {"_count": 1}}, "reduced": {"_count": 3, "to": {"_count": 3}}, "inhabited": {"_count": 2, "by": {"_count": 1}, "its": {"_count": 1}}, "adjusted": {"_count": 1, "on": {"_count": 1}}, "haunting": {"_count": 1, "him": {"_count": 1}}, "Pierre": {"_count": 1, "Bonaccord": {"_count": 1}}, "contested": {"_count": 1, "by": {"_count": 1}}, "bloodstained": {"_count": 1, "and": {"_count": 1}}, "gibbering": {"_count": 1, "trying": {"_count": 1}}, "transferred": {"_count": 1, "to": {"_count": 1}}, "jumping": {"_count": 4, "the": {"_count": 1}, "down": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}}, "wreaking": {"_count": 1, "havoc": {"_count": 1}}, "Minerva": {"_count": 1, "McGonagall": {"_count": 1}}, "inscrutable": {"_count": 1, "": {"_count": 1}}, "heaving": {"_count": 1, "with": {"_count": 1}}, "shifting": {"_count": 1, "her": {"_count": 1}}, "finished": {"_count": 1, "and": {"_count": 1}}, "raised": {"_count": 3, "": {"_count": 1}, "like": {"_count": 1}, "above": {"_count": 1}}, "snatching": {"_count": 1, "blindly": {"_count": 1}}, "superb": {"_count": 1, "his": {"_count": 1}}, "If": {"_count": 1, "he": {"_count": 1}}, "precious": {"_count": 1, "he": {"_count": 1}}, "beetling": {"_count": 1, "its": {"_count": 1}}, "deaf": {"_count": 1, "from": {"_count": 1}}, "dimmer": {"_count": 1, "than": {"_count": 1}}, "rotating": {"_count": 1, "": {"_count": 1}}, "sunken": {"_count": 1, "forming": {"_count": 1}}, "hung": {"_count": 1, "with": {"_count": 1}}, "row": {"_count": 1, "ninetyseven": {"_count": 1}}, "warming": {"_count": 1, "it": {"_count": 1}}, "twoo": {"_count": 1, "said": {"_count": 1}}, "hatching": {"_count": 1, "and": {"_count": 1}}, "promptly": {"_count": 1, "deluged": {"_count": 1}}, "thrust": {"_count": 2, "aside": {"_count": 1}, "into": {"_count": 1}}, "preventing": {"_count": 1, "him": {"_count": 1}}, "leering": {"_count": 1, "his": {"_count": 1}}, "momentarily": {"_count": 3, "holding": {"_count": 1}, "lost": {"_count": 1}, "surprised": {"_count": 1}}, "firing": {"_count": 3, "spells": {"_count": 1}, "off": {"_count": 1}, "a": {"_count": 1}}, "groping": {"_count": 1, "toward": {"_count": 1}}, "grasping": {"_count": 1, "the": {"_count": 1}}, "Macnair": {"_count": 1, "Buckbeaks": {"_count": 1}}, "unaware": {"_count": 2, "of": {"_count": 2}}, "movement": {"_count": 2, "going": {"_count": 1}, "among": {"_count": 1}}, "meaningless": {"_count": 2, "noise": {"_count": 1}, "compared": {"_count": 1}}, "deluged": {"_count": 1, "in": {"_count": 1}}, "groaning": {"_count": 1, "on": {"_count": 1}}, "blown": {"_count": 2, "off": {"_count": 1}, "backward": {"_count": 1}}, "caused": {"_count": 2, "no": {"_count": 1}, "among": {"_count": 1}}, "reflecting": {"_count": 1, "emeraldgreen": {"_count": 1}}, "unbearable": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "reminding": {"_count": 2, "him": {"_count": 2}}, "kindly": {"_count": 1, "rather": {"_count": 1}}, "calm": {"_count": 1, "almost": {"_count": 1}}, "colorless": {"_count": 1, "and": {"_count": 1}}, "correct": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "letting": {"_count": 2, "the": {"_count": 1}, "on": {"_count": 1}}, "erupting": {"_count": 1, "inside": {"_count": 1}}, "upstairs": {"_count": 1, "trying": {"_count": 1}}, "quick": {"_count": 1, "and": {"_count": 1}}, "constricted": {"_count": 1, "he": {"_count": 1}}, "enslaved": {"_count": 1, "but": {"_count": 1}}, "condemning": {"_count": 1, "you": {"_count": 1}}, "swiftly": {"_count": 1, "silenced": {"_count": 1}}, "uneasy": {"_count": 1, "Harry": {"_count": 1}}, "fulfilling": {"_count": 1, "the": {"_count": 1}}, "mistaken": {"_count": 2, "when": {"_count": 1}, "in": {"_count": 1}}, "against": {"_count": 1, "my": {"_count": 1}}, "relabeled": {"_count": 1, "after": {"_count": 1}}, "incomplete": {"_count": 1, "": {"_count": 1}}, "detected": {"_count": 1, "only": {"_count": 1}}, "met": {"_count": 1, "with": {"_count": 1}}, "neither": {"_count": 2, "a": {"_count": 1}, "as": {"_count": 1}}, "sunny": {"_count": 1, "and": {"_count": 1}}, "Luna": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}}, "eventful": {"_count": 1, "in": {"_count": 1}}, "failing": {"_count": 1, "extravagantly": {"_count": 1}}, "dealing": {"_count": 5, "with": {"_count": 5}}, "outrageous": {"_count": 1, "for": {"_count": 1}}, "fewer": {"_count": 1, "than": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "dismal": {"_count": 1, "all": {"_count": 1}}, "depicted": {"_count": 1, "in": {"_count": 1}}, "dripping": {"_count": 1, "all": {"_count": 1}}, "infuriating": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "Emmeline": {"_count": 1, "Vance": {"_count": 1}}, "wiser": {"_count": 1, "now": {"_count": 1}}, "sacked": {"_count": 1, "three": {"_count": 1}}, "Then": {"_count": 1, "theres": {"_count": 1}}, "unsuccessful": {"_count": 1, "he": {"_count": 1}}, "fair": {"_count": 1, "with": {"_count": 1}}, "caressing": {"_count": 1, "his": {"_count": 1}}, "encased": {"_count": 1, "in": {"_count": 1}}, "reborn": {"_count": 1, "": {"_count": 1}}, "ordered": {"_count": 1, "to": {"_count": 1}}, "strewn": {"_count": 1, "with": {"_count": 1}}, "sighted": {"_count": 1, "once": {"_count": 1}}, "obscured": {"_count": 2, "by": {"_count": 2}}, "wait": {"_count": 1, "Either": {"_count": 1}}, "blackened": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "repugnant": {"_count": 1, "": {"_count": 1}}, "thrilled": {"_count": 1, "to": {"_count": 1}}, "thicker": {"_count": 2, "than": {"_count": 1}, "and": {"_count": 1}}, "spattered": {"_count": 1, "over": {"_count": 1}}, "massaging": {"_count": 1, "his": {"_count": 1}}, "stuffy": {"_count": 1, "and": {"_count": 1}}, "Dirk": {"_count": 1, "Cresswell": {"_count": 1}}, "cruel": {"_count": 1, "said": {"_count": 1}}, "gunpowder": {"_count": 1, "": {"_count": 1}}, "instantly": {"_count": 4, "asleep": {"_count": 1}, "paralyzed": {"_count": 1}, "recognizable": {"_count": 1}, "dispelled": {"_count": 1}}, "awakened": {"_count": 1, "by": {"_count": 1}}, "scrutinizing": {"_count": 1, "Harry": {"_count": 1}}, "sickening": {"_count": 1, "for": {"_count": 1}}, "kidnapped": {"_count": 1, "": {"_count": 1}}, "awaiting": {"_count": 1, "them": {"_count": 1}}, "rattling": {"_count": 1, "armfuls": {"_count": 1}}, "stopping": {"_count": 1, "to": {"_count": 1}}, "dazzlingly": {"_count": 1, "full": {"_count": 1}}, "giggling": {"_count": 2, "enthusiastically": {"_count": 1}, "enjoying": {"_count": 1}}, "unfortunately": {"_count": 1, "spotted": {"_count": 1}}, "delightedly": {"_count": 1, "examining": {"_count": 1}}, "blocked": {"_count": 1, "from": {"_count": 1}}, "Borgin": {"_count": 1, "looking": {"_count": 1}}, "fishy": {"_count": 1, "Harry": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "smoother": {"_count": 1, "than": {"_count": 1}}, "humoring": {"_count": 1, "him": {"_count": 1}}, "jogging": {"_count": 1, "to": {"_count": 1}}, "detaching": {"_count": 1, "a": {"_count": 1}}, "fun": {"_count": 1, "that": {"_count": 1}}, "missed": {"_count": 1, "out": {"_count": 1}}, "interrogated": {"_count": 1, "after": {"_count": 1}}, "Nevilles": {"_count": 1, "turn": {"_count": 1}}, "reserving": {"_count": 1, "judgment": {"_count": 1}}, "fortunate": {"_count": 1, "that": {"_count": 1}}, "shown": {"_count": 1, "": {"_count": 1}}, "shuffling": {"_count": 1, "along": {"_count": 1}}, "soothing": {"_count": 2, "on": {"_count": 2}}, "generating": {"_count": 1, "waves": {"_count": 1}}, "miming": {"_count": 1, "the": {"_count": 1}}, "unimpressed": {"_count": 1, "": {"_count": 1}}, "experiencing": {"_count": 3, "the": {"_count": 1}, "were": {"_count": 1}, "jolts": {"_count": 1}}, "serenely": {"_count": 1, "blue": {"_count": 1}}, "gloomier": {"_count": 1, "than": {"_count": 1}}, "fastest": {"_count": 1, "once": {"_count": 1}}, "splashing": {"_count": 1, "about": {"_count": 1}}, "twentyfour": {"_count": 1, "once": {"_count": 1}}, "fiftyseven": {"_count": 1, "": {"_count": 1}}, "playacting": {"_count": 1, "or": {"_count": 1}}, "proving": {"_count": 3, "very": {"_count": 1}, "stormy": {"_count": 1}, "as": {"_count": 1}}, "redfaced": {"_count": 1, "and": {"_count": 1}}, "raving": {"_count": 1, "about": {"_count": 1}}, "resolutely": {"_count": 1, "plowing": {"_count": 1}}, "ripe": {"_count": 1, "for": {"_count": 1}}, "Bob": {"_count": 1, "Ogden": {"_count": 1}}, "employed": {"_count": 1, "by": {"_count": 1}}, "crooked": {"_count": 1, "rocky": {"_count": 1}}, "cooking": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "frightening": {"_count": 3, "and": {"_count": 1}, "or": {"_count": 1}, "them": {"_count": 1}}, "Morfin": {"_count": 2, "wasnt": {"_count": 1}, "said": {"_count": 1}}, "somebody": {"_count": 3, "else": {"_count": 2}, "already": {"_count": 1}}, "fiddling": {"_count": 1, "around": {"_count": 1}}, "starkly": {"_count": 1, "white": {"_count": 1}}, "sentenced": {"_count": 1, "to": {"_count": 1}}, "squandered": {"_count": 1, "several": {"_count": 1}}, "inky": {"_count": 1, "black": {"_count": 1}}, "overheard": {"_count": 2, "talking": {"_count": 1}, "by": {"_count": 1}}, "unsurprised": {"_count": 1, "to": {"_count": 1}}, "amongst": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "inwardly": {"_count": 1, "thankful": {"_count": 1}}, "Confunded": {"_count": 1, "this": {"_count": 1}}, "scanning": {"_count": 1, "the": {"_count": 1}}, "indecent": {"_count": 1, "in": {"_count": 1}}, "triplechecking": {"_count": 1, "everybody": {"_count": 1}}, "mercifully": {"_count": 1, "open": {"_count": 1}}, "lingering": {"_count": 1, "to": {"_count": 1}}, "nicking": {"_count": 1, "Siriuss": {"_count": 1}}, "lolling": {"_count": 1, "against": {"_count": 1}}, "calming": {"_count": 1, "down": {"_count": 1}}, "cursed": {"_count": 1, "": {"_count": 1}}, "\u2018How": {"_count": 1, "would": {"_count": 1}}, "noisy": {"_count": 1, "or": {"_count": 1}}, "has": {"_count": 1, "had": {"_count": 1}}, "relatively": {"_count": 1, "lucky": {"_count": 1}}, "Merlins": {"_count": 1, "this": {"_count": 1}}, "greatly": {"_count": 2, "weakened": {"_count": 1}, "depleted": {"_count": 1}}, "steady": {"_count": 1, "": {"_count": 1}}, "transfigured": {"_count": 1, "There": {"_count": 1}}, "Slughorns": {"_count": 1, "latest": {"_count": 1}}, "looming": {"_count": 2, "and": {"_count": 1}, "Ron": {"_count": 1}}, "increasing": {"_count": 1, "to": {"_count": 1}}, "murderous": {"_count": 1, "": {"_count": 1}}, "yes": {"_count": 2, "but": {"_count": 1}, "Harry": {"_count": 1}}, "somewhat": {"_count": 1, "undermined": {"_count": 1}}, "smacking": {"_count": 1, "his": {"_count": 1}}, "rescheduled": {"_count": 1, "for": {"_count": 1}}, "solid": {"_count": 2, "red": {"_count": 1}, "as": {"_count": 1}}, "jarringly": {"_count": 1, "different": {"_count": 1}}, "whistling": {"_count": 1, "in": {"_count": 1}}, "feebly": {"_count": 1, "stirring": {"_count": 1}}, "jubilant": {"_count": 1, "": {"_count": 1}}, "kiss": {"_count": 1, "Viktor": {"_count": 1}}, "hinting": {"_count": 1, "heavily": {"_count": 1}}, "ducking": {"_count": 1, "toward": {"_count": 1}}, "indicating": {"_count": 1, "": {"_count": 1}}, "greater": {"_count": 2, "than": {"_count": 2}}, "demonstrating": {"_count": 1, "her": {"_count": 1}}, "thanking": {"_count": 1, "Slughorn": {"_count": 1}}, "smoothly": {"_count": 1, "inscrutable": {"_count": 1}}, "escorting": {"_count": 1, "him": {"_count": 1}}, "warbling": {"_count": 1, "out": {"_count": 1}}, "Greyback": {"_count": 1, "who": {"_count": 1}}, "Levicorpus": {"_count": 1, "Oh": {"_count": 1}}, "invented": {"_count": 1, "while": {"_count": 1}}, "tactless": {"_count": 1, "No": {"_count": 1}}, "jostling": {"_count": 1, "around": {"_count": 1}}, "besieged": {"_count": 1, "with": {"_count": 1}}, "Fudges": {"_count": 1, "idea": {"_count": 1}}, "resolved": {"_count": 2, "to": {"_count": 1}, "when": {"_count": 1}}, "trustworthy": {"_count": 1, "said": {"_count": 1}}, "wrongly": {"_count": 1, "accused": {"_count": 1}}, "proud": {"_count": 3, "he": {"_count": 1}, "of": {"_count": 2}}, "proved": {"_count": 1, "at": {"_count": 1}}, "underage": {"_count": 1, "at": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "gingery": {"_count": 1, "blond": {"_count": 1}}, "Golpalotts": {"_count": 1, "Third": {"_count": 1}}, "crashing": {"_count": 1, "around": {"_count": 1}}, "scrawled": {"_count": 1, "right": {"_count": 1}}, "sweatyfaced": {"_count": 1, "and": {"_count": 1}}, "resentful": {"_count": 1, "that": {"_count": 1}}, "ideal": {"_count": 1, "for": {"_count": 1}}, "chivying": {"_count": 1, "the": {"_count": 1}}, "wrenched": {"_count": 2, "upward": {"_count": 1}, "open": {"_count": 1}}, "evening": {"_count": 1, "the": {"_count": 1}}, "conscious": {"_count": 1, "said": {"_count": 1}}, "Cormac": {"_count": 1, "McLaggen": {"_count": 1}}, "rapidly": {"_count": 1, "becoming": {"_count": 1}}, "absent": {"_count": 1, "Harrys": {"_count": 1}}, "throwing": {"_count": 2, "a": {"_count": 1}, "hex": {"_count": 1}}, "indigo": {"_count": 1, "streaked": {"_count": 1}}, "easiest": {"_count": 1, "to": {"_count": 1}}, "friends": {"_count": 1, "with": {"_count": 1}}, "curiously": {"_count": 1, "mirrored": {"_count": 1}}, "distantly": {"_count": 1, "descended": {"_count": 1}}, "concluded": {"_count": 1, "that": {"_count": 1}}, "predisposed": {"_count": 1, "to": {"_count": 1}}, "seen": {"_count": 1, "or": {"_count": 1}}, "snowing": {"_count": 2, "in": {"_count": 1}, "by": {"_count": 1}}, "traveling": {"_count": 2, "was": {"_count": 1}, "between": {"_count": 1}}, "elffree": {"_count": 1, "again": {"_count": 1}}, "Sunday": {"_count": 1, "morning": {"_count": 1}}, "Gregory": {"_count": 1, "Goyle": {"_count": 1}}, "aware": {"_count": 3, "of": {"_count": 2}, "to": {"_count": 1}}, "Tonks": {"_count": 1, "walking": {"_count": 1}}, "begrudging": {"_count": 1, "the": {"_count": 1}}, "simple": {"_count": 1, "as": {"_count": 1}}, "ony": {"_count": 1, "on": {"_count": 1}}, "sad": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "greedy": {"_count": 1, "he": {"_count": 1}}, "mutilated": {"_count": 1, "beyond": {"_count": 1}}, "contaminated": {"_count": 1, "or": {"_count": 1}}, "stolen": {"_count": 3, "he": {"_count": 1}, "from": {"_count": 1}, "What": {"_count": 1}}, "condemned": {"_count": 1, "after": {"_count": 1}}, "destroying": {"_count": 1, "the": {"_count": 1}}, "cleverly": {"_count": 1, "enchanted": {"_count": 1}}, "raging": {"_count": 2, "inside": {"_count": 1}, "before": {"_count": 1}}, "considering": {"_count": 1, "trying": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "call": {"_count": 1, "Liar": {"_count": 1}}, "shortlived": {"_count": 1, "": {"_count": 1}}, "unreadable": {"_count": 1, "as": {"_count": 1}}, "Eileen": {"_count": 1, "Prince": {"_count": 1}}, "Prince": {"_count": 1, "and": {"_count": 1}}, "celebrating": {"_count": 1, "": {"_count": 1}}, "waffling": {"_count": 1, "about": {"_count": 1}}, "seeking": {"_count": 3, "a": {"_count": 1}, "": {"_count": 1}, "an": {"_count": 1}}, "assaulted": {"_count": 1, "in": {"_count": 1}}, "refraining": {"_count": 1, "from": {"_count": 1}}, "illuminated": {"_count": 2, "too": {"_count": 1}, "from": {"_count": 1}}, "crude": {"_count": 1, "said": {"_count": 1}}, "peppered": {"_count": 1, "with": {"_count": 1}}, "carving": {"_count": 1, "deep": {"_count": 1}}, "slackening": {"_count": 1, "the": {"_count": 1}}, "churning": {"_count": 2, "and": {"_count": 1}, "out": {"_count": 1}}, "alarmed": {"_count": 1, "to": {"_count": 1}}, "undoing": {"_count": 1, "the": {"_count": 1}}, "dismounting": {"_count": 1, "Harry": {"_count": 1}}, "compelled": {"_count": 1, "to": {"_count": 1}}, "buffeted": {"_count": 2, "out": {"_count": 1}, "into": {"_count": 1}}, "pleading": {"_count": 1, "": {"_count": 1}}, "revulsion": {"_count": 1, "and": {"_count": 1}}, "repelled": {"_count": 1, "yet": {"_count": 1}}, "mere": {"_count": 1, "feet": {"_count": 1}}, "slammed": {"_count": 1, "backward": {"_count": 1}}, "summat": {"_count": 1, "like": {"_count": 1}}, "bindin": {"_count": 1, "up": {"_count": 1}}, "disbelieving": {"_count": 1, "but": {"_count": 1}}, "congregating": {"_count": 1, "": {"_count": 1}}, "dabbing": {"_count": 3, "at": {"_count": 3}}, "intruding": {"_count": 1, "upon": {"_count": 1}}, "absolutely": {"_count": 1, "genuine": {"_count": 1}}, "grope": {"_count": 1, "our": {"_count": 1}}, "guiding": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "g": {"_count": 1, "going": {"_count": 1}}, "soaking": {"_count": 1, "and": {"_count": 1}}, "slumbering": {"_count": 1, "in": {"_count": 1}}, "thirteen": {"_count": 1, "": {"_count": 1}}, "jampacked": {"_count": 1, "": {"_count": 1}}, "escorted": {"_count": 1, "from": {"_count": 1}}, "diligently": {"_count": 1, "avoiding": {"_count": 1}}, "strictly": {"_count": 1, "necessary": {"_count": 1}}, "evil": {"_count": 1, "even": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "infuriated": {"_count": 1, "to": {"_count": 1}}, "important": {"_count": 1, "Dumbledore": {"_count": 1}}, "glazed": {"_count": 1, "with": {"_count": 1}}, "undertaking": {"_count": 1, "this": {"_count": 1}}, "bordered": {"_count": 1, "on": {"_count": 1}}, "hoarse": {"_count": 1, "": {"_count": 1}}, "accorded": {"_count": 1, "this": {"_count": 1}}, "valuable": {"_count": 1, "in": {"_count": 1}}, "guiltless": {"_count": 1, "left": {"_count": 1}}, "completed": {"_count": 1, "a": {"_count": 1}}, "pushed": {"_count": 1, "": {"_count": 1}}, "defaming": {"_count": 1, "him": {"_count": 1}}, "won": {"_count": 1, "": {"_count": 1}}, "flattering": {"_count": 1, "Vernon": {"_count": 1}}, "visibly": {"_count": 1, "losing": {"_count": 1}}, "advisable": {"_count": 1, "and": {"_count": 1}}, "paramount": {"_count": 1, "": {"_count": 1}}, "absurdly": {"_count": 1, "spreadeagled": {"_count": 1}}, "tonight": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "unconscious": {"_count": 1, "and": {"_count": 1}}, "tha": {"_count": 1, "about": {"_count": 1}}, "fussing": {"_count": 1, "over": {"_count": 1}}, "perfunctory": {"_count": 1, "": {"_count": 1}}, "patterned": {"_count": 1, "with": {"_count": 1}}, "decided": {"_count": 1, "months": {"_count": 1}}, "human": {"_count": 1, "in": {"_count": 1}}, "properly": {"_count": 1, "destroyed": {"_count": 1}}, "shattered": {"_count": 1, "as": {"_count": 1}}, "foiled": {"_count": 1, "by": {"_count": 1}}, "gold": {"_count": 1, "with": {"_count": 1}}, "rarely": {"_count": 1, "weepy": {"_count": 1}}, "blissful": {"_count": 1, "oblivion": {"_count": 1}}, "cloudless": {"_count": 1, "but": {"_count": 1}}, "neat": {"_count": 1, "and": {"_count": 1}}, "suspending": {"_count": 1, "with": {"_count": 1}}, "Scrimgeour": {"_count": 1, "must": {"_count": 1}}, "worthwhile": {"_count": 1, "opening": {"_count": 1}}, "created": {"_count": 1, "to": {"_count": 1}}, "stretching": {"_count": 1, "the": {"_count": 1}}, "stained": {"_count": 1, "and": {"_count": 1}}, "dramatic": {"_count": 1, "said": {"_count": 1}}, "invited": {"_count": 1, "to": {"_count": 1}}, "mental": {"_count": 1, "": {"_count": 1}}, "unprecedented": {"_count": 1, "": {"_count": 1}}, "affecting": {"_count": 1, "was": {"_count": 1}}, "sleek": {"_count": 1, "and": {"_count": 1}}, "topped": {"_count": 1, "by": {"_count": 1}}, "Elphias": {"_count": 1, "Doge": {"_count": 1}}, "stealing": {"_count": 1, "through": {"_count": 1}}, "saintly": {"_count": 1, "Albus": {"_count": 1}}, "delicate": {"_count": 1, "": {"_count": 1}}, "heartbroken": {"_count": 1, "His": {"_count": 1}}, "friendly": {"_count": 1, "with": {"_count": 1}}, "sit": {"_count": 1, "there": {"_count": 1}}, "squeezed": {"_count": 2, "through": {"_count": 1}, "out": {"_count": 1}}, "invisible": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "restored": {"_count": 1, "to": {"_count": 1}}, "spreadeagled": {"_count": 1, "on": {"_count": 1}}, "spacious": {"_count": 1, "and": {"_count": 1}}, "handwritten": {"_count": 1, "and": {"_count": 1}}, "everybody": {"_count": 1, "so": {"_count": 1}}, "silently": {"_count": 1, "pointing": {"_count": 1}}, "painstakingly": {"_count": 1, "painted": {"_count": 1}}, "disturbed": {"_count": 1, "in": {"_count": 1}}, "dragged": {"_count": 2, "beneath": {"_count": 1}, "onto": {"_count": 1}}, "whiling": {"_count": 1, "away": {"_count": 1}}, "sucked": {"_count": 2, "from": {"_count": 2}}, "later": {"_count": 1, "to": {"_count": 1}}, "significant": {"_count": 1, "": {"_count": 1}}, "bleedin": {"_count": 1, "YouKnowWho": {"_count": 1}}, "brittle": {"_count": 1, "and": {"_count": 1}}, "quickest": {"_count": 1, "she": {"_count": 1}}, "patently": {"_count": 1, "too": {"_count": 1}}, "marshaling": {"_count": 1, "counterarguments": {"_count": 1}}, "permitting": {"_count": 1, "himself": {"_count": 1}}, "accustomed": {"_count": 1, "to": {"_count": 1}}, "impersonating": {"_count": 2, "Runcorn": {"_count": 1}, "somebody": {"_count": 1}}, "intimidating": {"_count": 1, "": {"_count": 1}}, "murmuring": {"_count": 1, "instructions": {"_count": 1}}, "shockingly": {"_count": 1, "familiar": {"_count": 1}}, "teased": {"_count": 1, "so": {"_count": 1}}, "sufficiently": {"_count": 1, "important": {"_count": 1}}, "terrifying": {"_count": 1, "The": {"_count": 1}}, "smoothed": {"_count": 1, "back": {"_count": 1}}, "Umbridges": {"_count": 2, "and": {"_count": 1}, "lie": {"_count": 1}}, "eleven": {"_count": 1, "years": {"_count": 1}}, "dazzled": {"_count": 1, "by": {"_count": 1}}, "sunlight": {"_count": 1, "streaming": {"_count": 1}}, "wettest": {"_count": 1, "and": {"_count": 1}}, "daunting": {"_count": 1, "": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "ticking": {"_count": 1, "away": {"_count": 1}}, "suspended": {"_count": 1, "upside": {"_count": 1}}, "many": {"_count": 1, "years": {"_count": 1}}, "merry": {"_count": 1, "wild": {"_count": 1}}, "clammy": {"_count": 1, "or": {"_count": 1}}, "forgotten": {"_count": 1, "in": {"_count": 1}}, "dwelling": {"_count": 1, "endlessly": {"_count": 1}}, "Tonkss": {"_count": 1, "father": {"_count": 1}}, "youd": {"_count": 1, "been": {"_count": 1}}, "Bills": {"_count": 1, "younger": {"_count": 1}}, "Wizardmade": {"_count": 1, "": {"_count": 1}}, "forged": {"_count": 1, "centuries": {"_count": 1}}, "squashing": {"_count": 1, "Phineas": {"_count": 1}}, "staggered": {"_count": 1, "now": {"_count": 1}}, "company": {"_count": 1, "albeit": {"_count": 1}}, "Undesirable": {"_count": 1, "Number": {"_count": 1}}, "flooded": {"_count": 1, "with": {"_count": 1}}, "carved": {"_count": 1, "on": {"_count": 1}}, "Minister": {"_count": 1, "he": {"_count": 1}}, "gaga": {"_count": 1, "": {"_count": 1}}, "gripping": {"_count": 1, "it": {"_count": 1}}, "leafless": {"_count": 1, "and": {"_count": 1}}, "bowed": {"_count": 1, "down": {"_count": 1}}, "dotted": {"_count": 1, "with": {"_count": 1}}, "tottering": {"_count": 1, "around": {"_count": 1}}, "coping": {"_count": 1, "": {"_count": 1}}, "heaped": {"_count": 1, "high": {"_count": 1}}, "abruptly": {"_count": 1, "awake": {"_count": 1}}, "chaos": {"_count": 1, "It": {"_count": 1}}, "rustling": {"_count": 1, "was": {"_count": 1}}, "Parseltongue": {"_count": 1, "all": {"_count": 1}}, "explained": {"_count": 1, "nothing": {"_count": 1}}, "fussed": {"_count": 1, "about": {"_count": 1}}, "Bathilda": {"_count": 1, "Bagshot": {"_count": 1}}, "poor": {"_count": 1, "little": {"_count": 1}}, "ashes": {"_count": 1, "How": {"_count": 1}}, "footsteps": {"_count": 1, "or": {"_count": 1}}, "bitterly": {"_count": 1, "cold": {"_count": 1}}, "recuperating": {"_count": 1, "from": {"_count": 1}}, "virtually": {"_count": 1, "impenetrable": {"_count": 1}}, "striped": {"_count": 1, "by": {"_count": 1}}, "submerged": {"_count": 1, "to": {"_count": 1}}, "raise": {"_count": 1, "a": {"_count": 1}}, "yyou": {"_count": 1, "": {"_count": 1}}, "benign": {"_count": 1, "he": {"_count": 1}}, "gloriously": {"_count": 1, "warm": {"_count": 1}}, "casting": {"_count": 1, "it": {"_count": 1}}, "The": {"_count": 1, "Life": {"_count": 1}}, "Grindelwald": {"_count": 1, "s": {"_count": 1}}, "overgrown": {"_count": 1, "with": {"_count": 1}}, "studded": {"_count": 1, "with": {"_count": 1}}, "dirty": {"_count": 1, "and": {"_count": 1}}, "curved": {"_count": 1, "to": {"_count": 1}}, "undergoing": {"_count": 1, "some": {"_count": 1}}, "cunning": {"_count": 1, "": {"_count": 1}}, "owned": {"_count": 1, "by": {"_count": 1}}, "dusty": {"_count": 1, "": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "descended": {"_count": 2, "from": {"_count": 2}}, "find": {"_count": 1, "the": {"_count": 1}}, "\u2018the": {"_count": 1, "close": {"_count": 1}}, "careless": {"_count": 1, "enough": {"_count": 1}}, "impervious": {"_count": 1, "to": {"_count": 1}}, "disconcerted": {"_count": 1, "by": {"_count": 1}}, "Altars": {"_count": 1, "": {"_count": 1}}, "bundled": {"_count": 1, "out": {"_count": 1}}, "Fenrir": {"_count": 1, "Grey": {"_count": 1}}, "permitted": {"_count": 2, "to": {"_count": 2}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "exquisitely": {"_count": 1, "painful": {"_count": 1}}, "glasses": {"_count": 1, "in": {"_count": 1}}, "contorting": {"_count": 1, "twisting": {"_count": 1}}, "resentment": {"_count": 1, "in": {"_count": 1}}, "reaping": {"_count": 1, "his": {"_count": 1}}, "vanishing": {"_count": 1, "Bill": {"_count": 1}}, "repeat": {"_count": 1, "the": {"_count": 1}}, "rushing": {"_count": 1, "against": {"_count": 1}}, "master": {"_count": 1, "of": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "consumed": {"_count": 1, "with": {"_count": 1}}, "love": {"_count": 1, "": {"_count": 1}}, "rejoined": {"_count": 1, "by": {"_count": 1}}, "lightcolored": {"_count": 1, "pretty": {"_count": 1}}, "offended": {"_count": 1, "at": {"_count": 1}}, "minimal": {"_count": 1, "": {"_count": 1}}, "emaciated": {"_count": 1, "the": {"_count": 1}}, "feeble": {"_count": 1, "": {"_count": 1}}, "translucent": {"_count": 1, "pale": {"_count": 1}}, "repellent": {"_count": 1, "not": {"_count": 1}}, "Godric": {"_count": 1, "Gryffindors": {"_count": 1}}, "Gryffindors": {"_count": 1, "whose": {"_count": 1}}, "Ragnuk": {"_count": 1, "the": {"_count": 1}}, "arranging": {"_count": 1, "sea": {"_count": 1}}, "unpleasant": {"_count": 1, "to": {"_count": 1}}, "problem": {"_count": 1, "after": {"_count": 1}}, "unexpectedly": {"_count": 1, "bloodthirsty": {"_count": 1}}, "shared": {"_count": 1, "by": {"_count": 1}}, "whitefaced": {"_count": 1, "wrapped": {"_count": 1}}, "persuading": {"_count": 1, "Lupin": {"_count": 1}}, "bought": {"_count": 1, "then": {"_count": 1}}, "She": {"_count": 1, "had": {"_count": 1}}, "May": {"_count": 1, "": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "manned": {"_count": 1, "by": {"_count": 1}}, "examined": {"_count": 1, "and": {"_count": 1}}, "redhaired": {"_count": 1, "and": {"_count": 1}}, "tallest": {"_count": 1, "": {"_count": 1}}, "Griphook": {"_count": 1, "who": {"_count": 1}}, "untethered": {"_count": 1, "": {"_count": 1}}, "singed": {"_count": 2, "away": {"_count": 1}, "and": {"_count": 1}}, "raw": {"_count": 1, "": {"_count": 1}}, "crazed": {"_count": 1, "frenzied": {"_count": 1}}, "Potters": {"_count": 1, "": {"_count": 1}}, "impassive": {"_count": 1, "": {"_count": 1}}, "sweet": {"_count": 1, "and": {"_count": 1}}, "fourteen": {"_count": 1, "": {"_count": 1}}, "wet": {"_count": 1, "with": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "swollen": {"_count": 2, "yellow": {"_count": 1}, "and": {"_count": 1}}, "worn": {"_count": 1, "and": {"_count": 1}}, "bruised": {"_count": 1, "and": {"_count": 1}}, "exercising": {"_count": 1, "all": {"_count": 1}}, "mirrored": {"_count": 1, "back": {"_count": 1}}, "long": {"_count": 1, "lit": {"_count": 1}}, "domed": {"_count": 1, "and": {"_count": 1}}, "washing": {"_count": 1, "around": {"_count": 1}}, "triumph": {"_count": 1, "in": {"_count": 1}}, "noisier": {"_count": 1, "than": {"_count": 1}}, "offensively": {"_count": 1, "close": {"_count": 1}}, "madness": {"_count": 1, "utter": {"_count": 1}}, "branded": {"_count": 1, "into": {"_count": 1}}, "thinning": {"_count": 1, "Only": {"_count": 1}}, "possessed": {"_count": 1, "of": {"_count": 1}}, "beautiful": {"_count": 1, "with": {"_count": 1}}, "heated": {"_count": 1, "as": {"_count": 1}}, "Helena": {"_count": 1, "Ravenclaw": {"_count": 1}}, "midnight": {"_count": 1, "": {"_count": 1}}, "roused": {"_count": 1, "by": {"_count": 1}}, "dueling": {"_count": 1, "Dolohov": {"_count": 1}}, "loud": {"_count": 1, "in": {"_count": 1}}, "mutating": {"_count": 1, "forming": {"_count": 1}}, "consuming": {"_count": 1, "the": {"_count": 1}}, "hold": {"_count": 1, "as": {"_count": 1}}, "pursuing": {"_count": 1, "a": {"_count": 1}}, "windless": {"_count": 1, "through": {"_count": 1}}, "lowceilinged": {"_count": 1, "They": {"_count": 1}}, "musing": {"_count": 1, "calm": {"_count": 1}}, "marble": {"_count": 1, "white": {"_count": 1}}, "leaking": {"_count": 1, "from": {"_count": 1}}, "unnaturally": {"_count": 1, "silent": {"_count": 1}}, "overlong": {"_count": 1, "and": {"_count": 1}}, "undisguised": {"_count": 1, "greed": {"_count": 1}}, "definite": {"_count": 1, "longing": {"_count": 1}}, "evident": {"_count": 1, "from": {"_count": 1}}, "breathless": {"_count": 1, "alarmed": {"_count": 1}}, "Dark": {"_count": 1, "Magic": {"_count": 1}}, "nighttime": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "wringing": {"_count": 1, "his": {"_count": 1}}, "conversational": {"_count": 1, "he": {"_count": 1}}, "delirious": {"_count": 1, "no": {"_count": 1}}, "sardonic": {"_count": 1, "as": {"_count": 1}}, "gnawing": {"_count": 1, "a": {"_count": 1}}, "learning": {"_count": 1, "the": {"_count": 1}}, "brain": {"_count": 1, "and": {"_count": 1}}, "impatient": {"_count": 1, "": {"_count": 1}}, "eerily": {"_count": 1, "still": {"_count": 1}}, "widest": {"_count": 1, "of": {"_count": 1}}, "naked": {"_count": 1, "": {"_count": 1}}, "extraordinary": {"_count": 1, "how": {"_count": 1}}, "hushed": {"_count": 1, "and": {"_count": 1}}, "twin": {"_count": 1, "of": {"_count": 1}}, "unbearably": {"_count": 1, "bitter": {"_count": 1}}, "gifted": {"_count": 1, "I": {"_count": 1}}, "selfish": {"_count": 1, "Harry": {"_count": 1}}, "mainly": {"_count": 1, "that": {"_count": 1}}, "offered": {"_count": 1, "the": {"_count": 1}}, "raising": {"_count": 1, "an": {"_count": 1}}, "unworthy": {"_count": 1, "to": {"_count": 1}}, "final": {"_count": 1, "proof": {"_count": 1}}, "tremulous": {"_count": 1, "": {"_count": 1}}, "descending": {"_count": 1, "again": {"_count": 1}}, "Bellatrixs": {"_count": 1, "voice": {"_count": 1}}, "wary": {"_count": 1, "of": {"_count": 1}}, "withdrawn": {"_count": 1, "": {"_count": 1}}, "relish": {"_count": 1, "in": {"_count": 1}}, "aflame": {"_count": 1, "rooted": {"_count": 1}}, "fleeing": {"_count": 1, "the": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "striking": {"_count": 1, "and": {"_count": 1}}, "equal": {"_count": 1, "to": {"_count": 1}}, "diverted": {"_count": 1, "as": {"_count": 1}}, "cleverer": {"_count": 1, "than": {"_count": 1}}, "seconds": {"_count": 1, "away": {"_count": 1}}, "planned": {"_count": 1, "between": {"_count": 1}}, "Disarmed": {"_count": 1, "": {"_count": 1}}, "applause": {"_count": 1, "": {"_count": 1}}, "crisp": {"_count": 1, "and": {"_count": 1}}, "dense": {"_count": 1, "and": {"_count": 1}}, "receding": {"_count": 1, "somewhat": {"_count": 1}}, "tactful": {"_count": 1, "enough": {"_count": 1}}}, "director": {"_count": 2, "of": {"_count": 1, "a": {"_count": 1}}, "himself": {"_count": 1, "made": {"_count": 1}}}, "a": {"_count": 19930, "firm": {"_count": 10, "called": {"_count": 1}, "grip": {"_count": 5}, "hold": {"_count": 1}, "voice": {"_count": 1}, "grasp": {"_count": 1}, "and": {"_count": 1}}, "big": {"_count": 37, "beefy": {"_count": 1}, "city": {"_count": 1}, "plastic": {"_count": 2}, "argument": {"_count": 1}, "mistake": {"_count": 2}, "oldfashioned": {"_count": 1}, "supporter": {"_count": 2}, "photograph": {"_count": 1}, "green": {"_count": 1}, "black": {"_count": 1}, "party": {"_count": 2}, "deal": {"_count": 3}, "thing": {"_count": 1}, "drop": {"_count": 1}, "enough": {"_count": 1}, "bet": {"_count": 1}, "man": {"_count": 2}, "disappoint": {"_count": 1}, "pal": {"_count": 1}, "job": {"_count": 1}, "earner": {"_count": 1}, "fat": {"_count": 1}, "lie": {"_count": 1}, "surprise": {"_count": 1}, "fourlegged": {"_count": 1}, "rangy": {"_count": 1}, "problem": {"_count": 1}, "shock": {"_count": 1}, "gold": {"_count": 1}, "forest": {"_count": 1}}, "very": {"_count": 347, "large": {"_count": 9}, "good": {"_count": 33}, "odd": {"_count": 4}, "scratchy": {"_count": 1}, "muffled": {"_count": 1}, "thin": {"_count": 1}, "angry": {"_count": 2}, "sunny": {"_count": 1}, "long": {"_count": 28}, "happy": {"_count": 2}, "dirty": {"_count": 3}, "strict": {"_count": 1}, "kind": {"_count": 3}, "batteredlooking": {"_count": 1}, "stern": {"_count": 1}, "important": {"_count": 4}, "painful": {"_count": 1}, "slow": {"_count": 1}, "fat": {"_count": 2}, "strange": {"_count": 6}, "untidy": {"_count": 1}, "bad": {"_count": 5}, "embarrassed": {"_count": 1}, "interesting": {"_count": 2}, "lumpy": {"_count": 1}, "funny": {"_count": 2}, "pretty": {"_count": 3}, "dark": {"_count": 1}, "imprecise": {"_count": 1}, "fishy": {"_count": 1}, "great": {"_count": 5}, "very": {"_count": 2}, "common": {"_count": 2}, "rusty": {"_count": 1}, "audible": {"_count": 1}, "small": {"_count": 9}, "old": {"_count": 10}, "different": {"_count": 4}, "cold": {"_count": 3}, "valuable": {"_count": 2}, "awkward": {"_count": 1}, "sensational": {"_count": 1}, "near": {"_count": 1}, "forced": {"_count": 1}, "pregnant": {"_count": 1}, "ugly": {"_count": 3}, "medieval": {"_count": 1}, "firm": {"_count": 1}, "comfortablelooking": {"_count": 1}, "weird": {"_count": 1}, "serious": {"_count": 5}, "big": {"_count": 1}, "enjoyable": {"_count": 3}, "cheap": {"_count": 1}, "thick": {"_count": 2}, "bright": {"_count": 2}, "matterof": {"_count": 1}, "strong": {"_count": 2}, "fast": {"_count": 4}, "violent": {"_count": 2}, "inconvenient": {"_count": 1}, "narrow": {"_count": 2}, "nasty": {"_count": 5}, "clear": {"_count": 1}, "grave": {"_count": 1}, "short": {"_count": 4}, "complicatedlooking": {"_count": 1}, "fine": {"_count": 3}, "light": {"_count": 1}, "horrible": {"_count": 1}, "rough": {"_count": 1}, "grim": {"_count": 1}, "preoccupied": {"_count": 1}, "low": {"_count": 3}, "disordered": {"_count": 1}, "tense": {"_count": 1}, "recent": {"_count": 1}, "breathless": {"_count": 1}, "hard": {"_count": 1}, "bizarre": {"_count": 1}, "blearyeyed": {"_count": 1}, "difficult": {"_count": 2}, "noble": {"_count": 1}, "fluffy": {"_count": 1}, "stiff": {"_count": 1}, "gifted": {"_count": 3}, "sour": {"_count": 1}, "annoyed": {"_count": 1}, "loud": {"_count": 3}, "surly": {"_count": 1}, "overgrown": {"_count": 1}, "generous": {"_count": 1}, "strained": {"_count": 1}, "rude": {"_count": 1}, "offensive": {"_count": 1}, "raw": {"_count": 1}, "shell": {"_count": 1}, "feeble": {"_count": 2}, "exciting": {"_count": 1}, "powerful": {"_count": 3}, "tight": {"_count": 3}, "tactful": {"_count": 1}, "quiet": {"_count": 3}, "heavily": {"_count": 1}, "real": {"_count": 1}, "ingenious": {"_count": 1}, "busy": {"_count": 1}, "patronizing": {"_count": 1}, "decent": {"_count": 1}, "highly": {"_count": 1}, "final": {"_count": 1}, "famous": {"_count": 2}, "neat": {"_count": 1}, "dazed": {"_count": 1}, "prominent": {"_count": 1}, "hoarse": {"_count": 1}, "glumlooking": {"_count": 1}, "dubious": {"_count": 1}, "deep": {"_count": 3}, "doglike": {"_count": 1}, "cheery": {"_count": 1}, "able": {"_count": 1}, "beautiful": {"_count": 2}, "stupid": {"_count": 1}, "noticeable": {"_count": 1}, "sharp": {"_count": 1}, "noisy": {"_count": 1}, "rare": {"_count": 1}, "ill": {"_count": 1}, "grubby": {"_count": 1}, "popular": {"_count": 1}, "pronounced": {"_count": 1}, "mournful": {"_count": 1}, "nice": {"_count": 5}, "supercilious": {"_count": 1}, "wellrehearsed": {"_count": 1}, "warm": {"_count": 1}, "convincing": {"_count": 1}, "wide": {"_count": 1}, "tattered": {"_count": 1}, "exhausting": {"_count": 1}, "irritating": {"_count": 1}, "poor": {"_count": 1}, "obvious": {"_count": 1}, "clever": {"_count": 3}, "shaky": {"_count": 2}, "unusual": {"_count": 2}, "stout": {"_count": 1}, "disapproving": {"_count": 1}, "silly": {"_count": 1}, "tall": {"_count": 1}, "shrewd": {"_count": 1}, "responsible": {"_count": 1}, "tiny": {"_count": 1}, "excitable": {"_count": 1}, "oversize": {"_count": 1}, "watery": {"_count": 1}, "unsteady": {"_count": 1}, "shallow": {"_count": 1}, "faint": {"_count": 1}, "anxiouslooking": {"_count": 1}, "uncomfortable": {"_count": 1}, "handsome": {"_count": 2}, "ancient": {"_count": 1}, "slick": {"_count": 1}, "carrying": {"_count": 1}, "wet": {"_count": 1}, "characteristic": {"_count": 1}, "brave": {"_count": 1}, "risky": {"_count": 1}, "simple": {"_count": 1}, "tempting": {"_count": 1}, "young": {"_count": 1}}, "small": {"_count": 248, "son": {"_count": 2}, "working": {"_count": 2}, "leather": {"_count": 1}, "walled": {"_count": 1}, "hole": {"_count": 2}, "cart": {"_count": 1}, "door": {"_count": 1}, "fortune": {"_count": 3}, "girl": {"_count": 2}, "crowd": {"_count": 2}, "smile": {"_count": 8}, "empty": {"_count": 2}, "voice": {"_count": 11}, "wooden": {"_count": 2}, "package": {"_count": 2}, "club": {"_count": 1}, "pile": {"_count": 3}, "scream": {"_count": 1}, "click": {"_count": 2}, "yard": {"_count": 1}, "redheaded": {"_count": 1}, "squeal": {"_count": 1}, "plaque": {"_count": 2}, "paddock": {"_count": 1}, "crack": {"_count": 2}, "and": {"_count": 5}, "muddy": {"_count": 1}, "burp": {"_count": 1}, "noise": {"_count": 2}, "yelp": {"_count": 1}, "melon": {"_count": 1}, "knot": {"_count": 2}, "puff": {"_count": 1}, "sack": {"_count": 2}, "circular": {"_count": 1}, "elephant": {"_count": 1}, "bomb": {"_count": 1}, "blackrobed": {"_count": 1}, "one": {"_count": 1}, "parlor": {"_count": 1}, "table": {"_count": 6}, "red": {"_count": 1}, "tiger": {"_count": 1}, "battered": {"_count": 1}, "sob": {"_count": 1}, "room": {"_count": 2}, "spoon": {"_count": 1}, "pop": {"_count": 3}, "bottle": {"_count": 3}, "sigh": {"_count": 1}, "squeaky": {"_count": 1}, "vacant": {"_count": 1}, "laugh": {"_count": 2}, "chink": {"_count": 1}, "heap": {"_count": 1}, "gasp": {"_count": 2}, "quickly": {"_count": 1}, "opening": {"_count": 1}, "boulder": {"_count": 1}, "hammer": {"_count": 1}, "man": {"_count": 5}, "gray": {"_count": 2}, "drawstring": {"_count": 1}, "cage": {"_count": 1}, "stone": {"_count": 1}, "sign": {"_count": 2}, "queue": {"_count": 1}, "figure": {"_count": 1}, "box": {"_count": 2}, "dial": {"_count": 1}, "clearing": {"_count": 1}, "knife": {"_count": 1}, "phut": {"_count": 1}, "but": {"_count": 1}, "curl": {"_count": 1}, "piece": {"_count": 3}, "hill": {"_count": 1}, "model": {"_count": 2}, "airplane": {"_count": 1}, "thing": {"_count": 1}, "wave": {"_count": 1}, "horned": {"_count": 1}, "crystal": {"_count": 4}, "church": {"_count": 1}, "twig": {"_count": 1}, "glass": {"_count": 4}, "sealed": {"_count": 1}, "roll": {"_count": 3}, "ghost": {"_count": 1}, "square": {"_count": 3}, "round": {"_count": 1}, "brass": {"_count": 1}, "snort": {"_count": 1}, "wateryeyed": {"_count": 1}, "gang": {"_count": 1}, "dark": {"_count": 3}, "twinge": {"_count": 1}, "worried": {"_count": 1}, "coughing": {"_count": 1}, "bowl": {"_count": 1}, "inn": {"_count": 1}, "group": {"_count": 3}, "embroidered": {"_count": 1}, "pub": {"_count": 1}, "tea": {"_count": 1}, "darkhaired": {"_count": 1}, "choking": {"_count": 1}, "prod": {"_count": 1}, "mousyhaired": {"_count": 1}, "horribly": {"_count": 1}, "cloud": {"_count": 1}, "bite": {"_count": 1}, "sad": {"_count": 1}, "dirty": {"_count": 1}, "task": {"_count": 1}, "neat": {"_count": 1}, "telescope": {"_count": 1}, "boy": {"_count": 3}, "pink": {"_count": 1}, "tray": {"_count": 1}, "stock": {"_count": 1}, "black": {"_count": 1}, "scroll": {"_count": 1}, "bare": {"_count": 1}, "cardboard": {"_count": 2}, "ring": {"_count": 1}, "stout": {"_count": 1}, "golden": {"_count": 2}, "wizard": {"_count": 1}, "jeweled": {"_count": 1}, "island": {"_count": 1}, "marquee": {"_count": 1}, "mention": {"_count": 1}, "silverbacked": {"_count": 1}, "shake": {"_count": 1}, "town": {"_count": 1}, "slightly": {"_count": 1}, "book": {"_count": 1}, "object": {"_count": 1}, "child": {"_count": 2}, "card": {"_count": 1}, "ferretylooking": {"_count": 1}, "rectangular": {"_count": 2}, "hand": {"_count": 1}, "flat": {"_count": 1}, "cross": {"_count": 1}, "market": {"_count": 1}, "copse": {"_count": 1}, "sponge": {"_count": 1}, "frozen": {"_count": 1}, "silver": {"_count": 1}, "cry": {"_count": 1}, "reddish": {"_count": 1}, "fire": {"_count": 1}, "landing": {"_count": 1}, "snake": {"_count": 1}, "quaking": {"_count": 1}, "fireplace": {"_count": 1}, "cupboard": {"_count": 1}, "car": {"_count": 1}, "space": {"_count": 1}, "boat": {"_count": 1}, "thicket": {"_count": 1}, "rustling": {"_count": 1}, "disparaging": {"_count": 1}, "naked": {"_count": 1}, "shriek": {"_count": 1}}, "secret": {"_count": 16, "and": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}, "chamber": {"_count": 1}, "broom": {"_count": 1}, "tunnel": {"_count": 1}, "inside": {"_count": 1}, "society": {"_count": 1}, "mission": {"_count": 1}, "where": {"_count": 1}, "room": {"_count": 1}, "burning": {"_count": 1}, "Tom": {"_count": 1}, "message": {"_count": 1}, "he": {"_count": 1}, "passageway": {"_count": 1}}, "sister": {"_count": 6, "because": {"_count": 1}, "like": {"_count": 1}, "": {"_count": 2}, "who": {"_count": 1}, "and": {"_count": 1}}, "child": {"_count": 18, "like": {"_count": 1}, "": {"_count": 7}, "playing": {"_count": 1}, "because": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 2}, "Watch": {"_count": 1}, "dying": {"_count": 1}, "any": {"_count": 1}, "counting": {"_count": 1}, "seeking": {"_count": 1}}, "screaming": {"_count": 1, "Dudley": {"_count": 1}}, "large": {"_count": 327, "tawny": {"_count": 1}, "order": {"_count": 1}, "doughnut": {"_count": 1}, "spotted": {"_count": 3}, "pink": {"_count": 2}, "blond": {"_count": 1}, "brandy": {"_count": 2}, "metal": {"_count": 2}, "letter": {"_count": 2}, "birdcage": {"_count": 1}, "rock": {"_count": 4}, "sticky": {"_count": 1}, "balloon": {"_count": 1}, "cage": {"_count": 3}, "owl": {"_count": 1}, "crowd": {"_count": 2}, "bite": {"_count": 1}, "gold": {"_count": 2}, "purple": {"_count": 3}, "teapot": {"_count": 1}, "marble": {"_count": 1}, "wooden": {"_count": 3}, "walnut": {"_count": 1}, "stone": {"_count": 3}, "banner": {"_count": 2}, "Gryffindor": {"_count": 1}, "pair": {"_count": 1}, "fir": {"_count": 1}, "box": {"_count": 5}, "yellow": {"_count": 1}, "book": {"_count": 2}, "crate": {"_count": 1}, "bowl": {"_count": 2}, "pile": {"_count": 7}, "silver": {"_count": 4}, "and": {"_count": 7}, "manor": {"_count": 1}, "knobby": {"_count": 1}, "dimly": {"_count": 1}, "black": {"_count": 6}, "clothes": {"_count": 1}, "dent": {"_count": 1}, "slimy": {"_count": 1}, "amount": {"_count": 6}, "key": {"_count": 1}, "plant": {"_count": 1}, "supply": {"_count": 2}, "bottle": {"_count": 4}, "covered": {"_count": 1}, "throbbing": {"_count": 1}, "diagram": {"_count": 1}, "copper": {"_count": 3}, "boulder": {"_count": 1}, "lilac": {"_count": 2}, "roll": {"_count": 2}, "glossy": {"_count": 1}, "blackandgold": {"_count": 1}, "ghost": {"_count": 1}, "puddle": {"_count": 1}, "cracked": {"_count": 4}, "evilsmelling": {"_count": 1}, "spellbook": {"_count": 1}, "fan": {"_count": 1}, "clove": {"_count": 1}, "tin": {"_count": 1}, "plum": {"_count": 1}, "beaker": {"_count": 1}, "sycamore": {"_count": 1}, "turquoise": {"_count": 1}, "oak": {"_count": 1}, "paneled": {"_count": 1}, "pipe": {"_count": 1}, "steaming": {"_count": 1}, "leatherbound": {"_count": 1}, "strangely": {"_count": 1}, "package": {"_count": 1}, "pyramid": {"_count": 1}, "jar": {"_count": 1}, "beefy": {"_count": 1}, "garden": {"_count": 1}, "kiss": {"_count": 1}, "gulp": {"_count": 1}, "glass": {"_count": 1}, "iron": {"_count": 2}, "knobbly": {"_count": 1}, "bag": {"_count": 4}, "lump": {"_count": 1}, "quantity": {"_count": 4}, "stack": {"_count": 2}, "welcoming": {"_count": 1}, "group": {"_count": 5}, "painting": {"_count": 1}, "glittering": {"_count": 1}, "bombshell": {"_count": 1}, "umbrella": {"_count": 2}, "slippery": {"_count": 1}, "square": {"_count": 3}, "barrel": {"_count": 1}, "ginger": {"_count": 1}, "pointed": {"_count": 1}, "spoon": {"_count": 1}, "packing": {"_count": 1}, "club": {"_count": 1}, "bar": {"_count": 1}, "picture": {"_count": 1}, "plate": {"_count": 3}, "handful": {"_count": 1}, "tub": {"_count": 1}, "crystal": {"_count": 1}, "gap": {"_count": 1}, "bald": {"_count": 2}, "chunk": {"_count": 5}, "hand": {"_count": 1}, "shiny": {"_count": 1}, "pot": {"_count": 1}, "number": {"_count": 4}, "field": {"_count": 1}, "pyramidshaped": {"_count": 1}, "patch": {"_count": 1}, "belly": {"_count": 1}, "green": {"_count": 3}, "tomato": {"_count": 1}, "curved": {"_count": 2}, "rip": {"_count": 1}, "bearded": {"_count": 1}, "scroll": {"_count": 1}, "portrait": {"_count": 2}, "winged": {"_count": 1}, "vase": {"_count": 2}, "clear": {"_count": 1}, "sign": {"_count": 3}, "ornamental": {"_count": 1}, "house": {"_count": 1}, "dish": {"_count": 1}, "steakandkidney": {"_count": 1}, "roughly": {"_count": 1}, "talon": {"_count": 1}, "tentacle": {"_count": 1}, "barn": {"_count": 1}, "part": {"_count": 2}, "badge": {"_count": 1}, "space": {"_count": 1}, "figure": {"_count": 1}, "canary": {"_count": 1}, "chilly": {"_count": 1}, "snowball": {"_count": 1}, "round": {"_count": 2}, "cabinet": {"_count": 1}, "blackened": {"_count": 1}, "sponge": {"_count": 1}, "checked": {"_count": 1}, "ham": {"_count": 1}, "yew": {"_count": 1}, "furry": {"_count": 1}, "hydrangea": {"_count": 1}, "fire": {"_count": 1}, "cauldron": {"_count": 1}, "rhubarb": {"_count": 1}, "opal": {"_count": 1}, "golden": {"_count": 1}, "cardboard": {"_count": 1}, "pale": {"_count": 1}, "fly": {"_count": 2}, "plateful": {"_count": 1}, "new": {"_count": 1}, "damp": {"_count": 1}, "paper": {"_count": 1}, "technicolor": {"_count": 1}, "brown": {"_count": 1}, "platter": {"_count": 1}, "swig": {"_count": 1}, "photograph": {"_count": 2}, "spiky": {"_count": 1}, "beech": {"_count": 1}, "clump": {"_count": 1}, "oldfashioned": {"_count": 1}, "woman": {"_count": 1}, "turkey": {"_count": 1}, "gang": {"_count": 1}, "bucket": {"_count": 1}, "slurp": {"_count": 1}, "dead": {"_count": 1}, "handkerchief": {"_count": 1}, "bit": {"_count": 1}, "suit": {"_count": 1}, "pinch": {"_count": 1}, "smooth": {"_count": 1}, "mushroom": {"_count": 1}, "dog": {"_count": 1}, "circular": {"_count": 1}, "blackandwhite": {"_count": 1}, "mug": {"_count": 1}, "clock": {"_count": 1}, "wardrobe": {"_count": 1}, "slice": {"_count": 1}, "display": {"_count": 1}, "wiryhaired": {"_count": 2}, "mouthful": {"_count": 1}, "chocolate": {"_count": 1}, "piece": {"_count": 1}, "flowery": {"_count": 1}, "chain": {"_count": 1}, "Golden": {"_count": 1}, "wrapped": {"_count": 1}, "powder": {"_count": 1}, "belch": {"_count": 1}, "cathedral": {"_count": 1}, "cupboard": {"_count": 1}, "blueandwhite": {"_count": 1}, "cave": {"_count": 1}, "bruise": {"_count": 1}, "white": {"_count": 2}, "wad": {"_count": 1}, "hamlike": {"_count": 1}, "volume": {"_count": 1}, "basket": {"_count": 1}, "poster": {"_count": 1}, "pearly": {"_count": 1}, "dose": {"_count": 1}, "sunflower": {"_count": 1}, "shadow": {"_count": 1}, "bed": {"_count": 1}, "tureen": {"_count": 1}, "framed": {"_count": 1}, "circle": {"_count": 1}, "suitcase": {"_count": 1}, "loaf": {"_count": 1}}, "tantrum": {"_count": 2, "and": {"_count": 1}, "because": {"_count": 1}}, "cat": {"_count": 16, "reading": {"_count": 1}, "sit": {"_count": 1}, "nor": {"_count": 1}, "OR": {"_count": 1}, "called": {"_count": 1}, "was": {"_count": 2}, "": {"_count": 5}, "streaked": {"_count": 1}, "that": {"_count": 1}, "on": {"_count": 1}, "said": {"_count": 1}}, "map": {"_count": 8, "": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 3}, "showing": {"_count": 1}, "he": {"_count": 1}, "cant": {"_count": 1}}, "second": {"_count": 139, "Mr": {"_count": 1}, "later": {"_count": 19}, "piece": {"_count": 1}, "pair": {"_count": 1}, "witch": {"_count": 1}, "cousin": {"_count": 1}, "chance": {"_count": 3}, "Bludger": {"_count": 1}, "to": {"_count": 3}, "centaur": {"_count": 1}, "time": {"_count": 5}, "too": {"_count": 2}, "attack": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 6}, "Boot": {"_count": 1}, "and": {"_count": 4}, "very": {"_count": 1}, "Harry": {"_count": 5}, "crumpet": {"_count": 1}, "said": {"_count": 2}, "corridor": {"_count": 1}, "everyone": {"_count": 1}, "year": {"_count": 2}, "voice": {"_count": 4}, "stab": {"_count": 1}, "longer": {"_count": 4}, "whoosh": {"_count": 1}, "water": {"_count": 1}, "loud": {"_count": 1}, "her": {"_count": 1}, "tent": {"_count": 1}, "one": {"_count": 2}, "fork": {"_count": 1}, "that": {"_count": 2}, "before": {"_count": 2}, "head": {"_count": 1}, "key": {"_count": 1}, "dementor": {"_count": 1}, "officiallooking": {"_count": 1}, "cloud": {"_count": 1}, "slightly": {"_count": 1}, "bow": {"_count": 1}, "son": {"_count": 1}, "": {"_count": 5}, "set": {"_count": 1}, "then": {"_count": 3}, "from": {"_count": 1}, "on": {"_count": 1}, "black": {"_count": 1}, "In": {"_count": 1}, "silver": {"_count": 1}, "flash": {"_count": 1}, "lift": {"_count": 1}, "giant": {"_count": 1}, "spinning": {"_count": 1}, "almost": {"_count": 1}, "hidden": {"_count": 1}, "pod": {"_count": 1}, "Cauldron": {"_count": 1}, "bottle": {"_count": 1}, "shown": {"_count": 1}, "they": {"_count": 2}, "clear": {"_count": 1}, "it": {"_count": 1}, "button": {"_count": 1}, "glance": {"_count": 1}, "bequest": {"_count": 1}, "Arthur": {"_count": 1}, "or": {"_count": 1}, "earlier": {"_count": 1}, "strap": {"_count": 1}, "statue": {"_count": 1}, "goblin": {"_count": 1}, "upon": {"_count": 1}, "doorway": {"_count": 1}, "most": {"_count": 1}, "outlaw": {"_count": 1}, "something": {"_count": 1}, "after": {"_count": 1}, "I": {"_count": 1}, "more": {"_count": 1}}, "tabby": {"_count": 3, "cat": {"_count": 3}}, "trick": {"_count": 13, "of": {"_count": 4}, "staircase": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "which": {"_count": 1}, "a": {"_count": 2}, "or": {"_count": 1}, "if": {"_count": 1}}, "little": {"_count": 436, "shake": {"_count": 6}, "pop": {"_count": 1}, "boy": {"_count": 2}, "way": {"_count": 11}, "sign": {"_count": 1}, "": {"_count": 16}, "while": {"_count": 8}, "flick": {"_count": 2}, "man": {"_count": 3}, "to": {"_count": 7}, "jar": {"_count": 1}, "closer": {"_count": 10}, "old": {"_count": 2}, "moan": {"_count": 3}, "behind": {"_count": 2}, "chat": {"_count": 6}, "and": {"_count": 5}, "fuller": {"_count": 1}, "change": {"_count": 2}, "haphazardly": {"_count": 1}, "announcement": {"_count": 1}, "chortle": {"_count": 1}, "quiz": {"_count": 1}, "drowsy": {"_count": 1}, "extra": {"_count": 3}, "private": {"_count": 1}, "overexcited": {"_count": 1}, "ways": {"_count": 1}, "distance": {"_count": 2}, "of": {"_count": 8}, "lesson": {"_count": 1}, "wizard": {"_count": 1}, "lighter": {"_count": 2}, "thing": {"_count": 1}, "disappointed": {"_count": 2}, "onelegged": {"_count": 1}, "more": {"_count": 19}, "help": {"_count": 2}, "piece": {"_count": 1}, "earlier": {"_count": 2}, "kiss": {"_count": 1}, "overenthusiastic": {"_count": 2}, "faster": {"_count": 4}, "courage": {"_count": 1}, "shuddering": {"_count": 1}, "farther": {"_count": 5}, "higher": {"_count": 8}, "on": {"_count": 5}, "too": {"_count": 10}, "ahead": {"_count": 5}, "photo": {"_count": 1}, "word": {"_count": 1}, "oldfashioned": {"_count": 1}, "less": {"_count": 2}, "shiver": {"_count": 2}, "unfortunate": {"_count": 1}, "slipped": {"_count": 1}, "in": {"_count": 8}, "persuasion": {"_count": 1}, "longer": {"_count": 8}, "but": {"_count": 2}, "pause": {"_count": 2}, "blustering": {"_count": 1}, "pompous": {"_count": 1}, "job": {"_count": 1}, "flock": {"_count": 1}, "bow": {"_count": 4}, "wider": {"_count": 2}, "party": {"_count": 2}, "bit": {"_count": 8}, "squeak": {"_count": 3}, "straighter": {"_count": 6}, "laugh": {"_count": 1}, "scream": {"_count": 3}, "moving": {"_count": 1}, "deeper": {"_count": 1}, "restless": {"_count": 1}, "as": {"_count": 5}, "pink": {"_count": 2}, "jump": {"_count": 1}, "skip": {"_count": 1}, "false": {"_count": 1}, "so": {"_count": 1}, "confused": {"_count": 3}, "anxious": {"_count": 2}, "because": {"_count": 1}, "harder": {"_count": 2}, "above": {"_count": 1}, "nervous": {"_count": 1}, "jolt": {"_count": 1}, "jaunt": {"_count": 1}, "tip": {"_count": 1}, "that": {"_count": 1}, "stooped": {"_count": 1}, "toward": {"_count": 2}, "further": {"_count": 1}, "away": {"_count": 1}, "lastminute": {"_count": 1}, "Remedial": {"_count": 1}, "like": {"_count": 1}, "thud": {"_count": 1}, "muffled": {"_count": 1}, "later": {"_count": 1}, "at": {"_count": 4}, "trip": {"_count": 1}, "deaf": {"_count": 1}, "when": {"_count": 1}, "if": {"_count": 1}, "apprehensive": {"_count": 1}, "the": {"_count": 2}, "shaken": {"_count": 1}, "time": {"_count": 1}, "patience": {"_count": 1}, "whos": {"_count": 1}, "tweak": {"_count": 1}, "discomfited": {"_count": 1}, "slopping": {"_count": 1}, "over": {"_count": 4}, "fragile": {"_count": 1}, "smiling": {"_count": 1}, "smaller": {"_count": 1}, "proud": {"_count": 1}, "around": {"_count": 1}, "impatiently": {"_count": 3}, "flustered": {"_count": 1}, "better": {"_count": 1}, "annoying": {"_count": 1}, "uncomfortable": {"_count": 1}, "louder": {"_count": 2}, "below": {"_count": 1}, "cleaner": {"_count": 1}, "violet": {"_count": 1}, "recreation": {"_count": 1}, "odd": {"_count": 2}, "older": {"_count": 1}, "politer": {"_count": 1}, "lower": {"_count": 1}, "askew": {"_count": 1}, "afraid": {"_count": 1}, "ill": {"_count": 1}, "hint": {"_count": 1}, "bitter": {"_count": 1}, "purkey": {"_count": 1}, "sharply": {"_count": 1}, "still": {"_count": 1}, "silence": {"_count": 2}, "desperately": {"_count": 2}, "since": {"_count": 1}, "hand": {"_count": 1}, "dear": {"_count": 1}, "shriek": {"_count": 1}, "exuberant": {"_count": 1}, "nudge": {"_count": 1}, "thickly": {"_count": 1}, "crosseyed": {"_count": 1}, "tired": {"_count": 1}, "let": {"_count": 1}, "abashed": {"_count": 1}, "though": {"_count": 3}, "sea": {"_count": 1}, "wet": {"_count": 1}, "brighter": {"_count": 1}, "bump": {"_count": 1}, "stronger": {"_count": 1}, "he": {"_count": 1}, "down": {"_count": 1}, "puzzled": {"_count": 1}, "said": {"_count": 1}, "shocked": {"_count": 1}, "worried": {"_count": 2}, "alarmed": {"_count": 2}, "trickier": {"_count": 1}, "diseased": {"_count": 1}, "digging": {"_count": 1}, "jerk": {"_count": 3}, "awry": {"_count": 1}, "Polyjuice": {"_count": 1}, "humiliated": {"_count": 1}, "haughty": {"_count": 1}, "shakily": {"_count": 1}, "grumpily": {"_count": 1}, "late": {"_count": 1}, "hot": {"_count": 1}, "nauseated": {"_count": 1}, "pointed": {"_count": 1}, "sadly": {"_count": 1}, "defensively": {"_count": 2}, "girl": {"_count": 1}, "hysterically": {"_count": 1}, "shabbylooking": {"_count": 1}, "Ministry": {"_count": 1}, "push": {"_count": 2}, "start": {"_count": 2}, "lightheaded": {"_count": 1}, "shorter": {"_count": 1}, "waspishly": {"_count": 1}, "himself": {"_count": 1}, "church": {"_count": 1}, "frown": {"_count": 1}, "lurch": {"_count": 1}, "eddy": {"_count": 1}, "she": {"_count": 1}, "high": {"_count": 1}, "madly": {"_count": 1}, "click": {"_count": 1}, "embarrassed": {"_count": 1}, "cough": {"_count": 1}, "Slytherin": {"_count": 1}, "shudder": {"_count": 1}, "knot": {"_count": 2}, "taken": {"_count": 1}, "breaking": {"_count": 1}, "cart": {"_count": 1}, "faintly": {"_count": 1}, "door": {"_count": 1}, "now": {"_count": 1}, "strain": {"_count": 1}, "offended": {"_count": 1}, "through": {"_count": 1}, "keeping": {"_count": 1}, "apart": {"_count": 2}, "mad": {"_count": 1}, "early": {"_count": 1}, "lopsided": {"_count": 1}, "bloody": {"_count": 1}, "gasp": {"_count": 1}, "beneath": {"_count": 1}, "punchdrunk": {"_count": 1}, "bereavement": {"_count": 1}}, "lot": {"_count": 217, "of": {"_count": 105}, "harder": {"_count": 1}, "like": {"_count": 4}, "by": {"_count": 1}, "at": {"_count": 1}, "o": {"_count": 5}, "more": {"_count": 15}, "to": {"_count": 10}, "but": {"_count": 3}, "lately": {"_count": 3}, "bigger": {"_count": 5}, "better": {"_count": 6}, "Harry": {"_count": 1}, "": {"_count": 14}, "great": {"_count": 1}, "braver": {"_count": 1}, "quicker": {"_count": 1}, "less": {"_count": 1}, "on": {"_count": 2}, "there": {"_count": 1}, "happier": {"_count": 2}, "since": {"_count": 1}, "which": {"_count": 1}, "about": {"_count": 4}, "smaller": {"_count": 1}, "said": {"_count": 2}, "safer": {"_count": 1}, "closer": {"_count": 1}, "tougher": {"_count": 1}, "colder": {"_count": 1}, "further": {"_count": 1}, "keener": {"_count": 1}, "in": {"_count": 4}, "can": {"_count": 1}, "for": {"_count": 1}, "going": {"_count": 1}, "worse": {"_count": 1}, "Demelza": {"_count": 1}, "older": {"_count": 1}, "panted": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 1}, "ter": {"_count": 1}, "quiet": {"_count": 1}, "when": {"_count": 1}, "would": {"_count": 1}, "cooler": {"_count": 1}, "cleaner": {"_count": 1}}, "huddle": {"_count": 9, "of": {"_count": 2}, "having": {"_count": 1}, "": {"_count": 1}, "outside": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}, "shepherded": {"_count": 1}, "with": {"_count": 1}}, "couple": {"_count": 119, "of": {"_count": 99}, "o": {"_count": 10}, "more": {"_count": 4}, "showed": {"_count": 1}, "who": {"_count": 1}, "Ive": {"_count": 1}, "and": {"_count": 1}, "behind": {"_count": 1}, "just": {"_count": 1}}, "few": {"_count": 491, "minutes": {"_count": 34}, "words": {"_count": 12}, "seconds": {"_count": 66}, "hours": {"_count": 17}, "of": {"_count": 29}, "deep": {"_count": 1}, "even": {"_count": 1}, "moldy": {"_count": 1}, "weeds": {"_count": 1}, "books": {"_count": 1}, "moments": {"_count": 34}, "simple": {"_count": 2}, "extra": {"_count": 2}, "more": {"_count": 23}, "startofterm": {"_count": 1}, "funny": {"_count": 1}, "feet": {"_count": 19}, "wellchosen": {"_count": 2}, "things": {"_count": 6}, "drinks": {"_count": 2}, "weeks": {"_count": 12}, "days": {"_count": 22}, "lastminute": {"_count": 2}, "good": {"_count": 1}, "shrinking": {"_count": 1}, "ah": {"_count": 1}, "splinters": {"_count": 1}, "horrible": {"_count": 1}, "notices": {"_count": 2}, "people": {"_count": 10}, "years": {"_count": 8}, "paces": {"_count": 7}, "candles": {"_count": 1}, "questions": {"_count": 3}, "inches": {"_count": 20}, "wisps": {"_count": 1}, "loose": {"_count": 1}, "games": {"_count": 1}, "small": {"_count": 1}, "pimples": {"_count": 1}, "nights": {"_count": 1}, "seats": {"_count": 1}, "drops": {"_count": 4}, "square": {"_count": 1}, "older": {"_count": 1}, "a": {"_count": 1}, "fragments": {"_count": 1}, "short": {"_count": 2}, "goals": {"_count": 2}, "ferret": {"_count": 1}, "yards": {"_count": 4}, "tricks": {"_count": 3}, "hurried": {"_count": 1}, "Owl": {"_count": 1}, "diffrent": {"_count": 1}, "steps": {"_count": 15}, "places": {"_count": 1}, "months": {"_count": 7}, "fingers": {"_count": 1}, "pointers": {"_count": 1}, "rules": {"_count": 1}, "o": {"_count": 5}, "twigs": {"_count": 2}, "": {"_count": 1}, "mouthfuls": {"_count": 1}, "heads": {"_count": 1}, "laughs": {"_count": 2}, "feathers": {"_count": 1}, "glorious": {"_count": 1}, "fights": {"_count": 1}, "crucial": {"_count": 1}, "stray": {"_count": 1}, "nodded": {"_count": 1}, "laws": {"_count": 1}, "tentative": {"_count": 1}, "including": {"_count": 1}, "pages": {"_count": 2}, "Extendable": {"_count": 1}, "screwedup": {"_count": 1}, "wood": {"_count": 1}, "distant": {"_count": 1}, "openly": {"_count": 1}, "Gryffindors": {"_count": 1}, "chipped": {"_count": 1}, "sticky": {"_count": 1}, "witches": {"_count": 1}, "elf": {"_count": 1}, "Hogsmeaders": {"_count": 1}, "happy": {"_count": 1}, "tables": {"_count": 1}, "rows": {"_count": 1}, "flitted": {"_count": 1}, "points": {"_count": 2}, "stairs": {"_count": 2}, "manners": {"_count": 1}, "doors": {"_count": 1}, "desks": {"_count": 1}, "to": {"_count": 1}, "feeble": {"_count": 1}, "matters": {"_count": 1}, "benches": {"_count": 1}, "houses": {"_count": 1}, "creature": {"_count": 1}, "Death": {"_count": 1}, "rather": {"_count": 1}, "times": {"_count": 2}, "potions": {"_count": 1}, "Ministry": {"_count": 1}, "backflips": {"_count": 1}, "rising": {"_count": 1}, "interviews": {"_count": 1}, "with": {"_count": 1}, "Ravenclaws": {"_count": 1}, "pinches": {"_count": 1}, "leaves": {"_count": 1}, "nice": {"_count": 1}, "streetlamps": {"_count": 1}, "he": {"_count": 1}, "thumped": {"_count": 1}, "faltering": {"_count": 1}, "veela": {"_count": 1}, "butterbeers": {"_count": 1}, "strides": {"_count": 1}, "hairs": {"_count": 1}, "salmon": {"_count": 1}, "tiny": {"_count": 1}, "miles": {"_count": 1}, "scratches": {"_count": 1}, "bars": {"_count": 1}, "degrees": {"_count": 1}, "Griphookfree": {"_count": 1}, "long": {"_count": 1}, "broomsticks": {"_count": 1}, "whoops": {"_count": 1}, "Slytherins": {"_count": 1}, "goes": {"_count": 1}, "leafless": {"_count": 1}, "scruples": {"_count": 1}, "students": {"_count": 1}}, "perfectly": {"_count": 5, "normal": {"_count": 1}, "positioned": {"_count": 1}, "controlled": {"_count": 1}, "calm": {"_count": 1}, "friendly": {"_count": 1}}, "bit": {"_count": 408, "more": {"_count": 36}, "of": {"_count": 144}, "big": {"_count": 1}, "far": {"_count": 1}, "": {"_count": 25}, "o": {"_count": 8}, "ter": {"_count": 1}, "I": {"_count": 1}, "would": {"_count": 1}, "as": {"_count": 1}, "sick": {"_count": 1}, "when": {"_count": 1}, "creepy": {"_count": 1}, "but": {"_count": 1}, "depressing": {"_count": 1}, "lighter": {"_count": 1}, "politer": {"_count": 1}, "short": {"_count": 2}, "queasy": {"_count": 1}, "mad": {"_count": 2}, "too": {"_count": 4}, "like": {"_count": 9}, "uncomfortable": {"_count": 1}, "quicker": {"_count": 2}, "pink": {"_count": 2}, "outta": {"_count": 1}, "late": {"_count": 3}, "nearer": {"_count": 2}, "odd": {"_count": 7}, "about": {"_count": 6}, "later": {"_count": 1}, "slow": {"_count": 1}, "small": {"_count": 1}, "awkward": {"_count": 1}, "unfair": {"_count": 1}, "sorry": {"_count": 1}, "dodgy": {"_count": 3}, "dim": {"_count": 2}, "wider": {"_count": 2}, "said": {"_count": 4}, "then": {"_count": 2}, "offcolor": {"_count": 2}, "battered": {"_count": 1}, "bowlegged": {"_count": 1}, "and": {"_count": 4}, "full": {"_count": 2}, "better": {"_count": 4}, "look": {"_count": 1}, "over": {"_count": 1}, "shirty": {"_count": 1}, "slimmer": {"_count": 1}, "Ron": {"_count": 2}, "stupid": {"_count": 2}, "useless": {"_count": 1}, "bright": {"_count": 1}, "depressed": {"_count": 1}, "cleverer": {"_count": 1}, "Hermione": {"_count": 1}, "rich": {"_count": 1}, "dangerous": {"_count": 1}, "sooner": {"_count": 1}, "cramped": {"_count": 1}, "young": {"_count": 1}, "disorientated": {"_count": 1}, "long": {"_count": 1}, "scared": {"_count": 1}, "bigger": {"_count": 1}, "obvious": {"_count": 2}, "much": {"_count": 1}, "no": {"_count": 1}, "cold": {"_count": 1}, "please": {"_count": 1}, "to": {"_count": 2}, "doubtful": {"_count": 1}, "evil": {"_count": 1}, "funny": {"_count": 4}, "yeh": {"_count": 1}, "grim": {"_count": 1}, "higher": {"_count": 2}, "Fleur": {"_count": 1}, "chilly": {"_count": 1}, "hasnt": {"_count": 1}, "peaky": {"_count": 2}, "just": {"_count": 1}, "for": {"_count": 1}, "strange": {"_count": 1}, "early": {"_count": 1}, "harsh": {"_count": 2}, "guilty": {"_count": 1}, "this": {"_count": 1}, "paler": {"_count": 1}, "dull": {"_count": 1}, "hard": {"_count": 1}, "worse": {"_count": 1}, "earlier": {"_count": 1}, "nervous": {"_count": 1}, "Harry": {"_count": 1}, "happier": {"_count": 1}, "disappointed": {"_count": 1}, "harder": {"_count": 1}, "isnt": {"_count": 1}, "tactless": {"_count": 1}, "confused": {"_count": 1}, "conceited": {"_count": 1}, "carried": {"_count": 2}, "he": {"_count": 1}, "farther": {"_count": 3}, "on": {"_count": 1}, "tired": {"_count": 1}, "further": {"_count": 1}, "wearing": {"_count": 1}, "fast": {"_count": 1}, "tame": {"_count": 1}, "senile": {"_count": 1}, "scary": {"_count": 1}, "upset": {"_count": 1}, "unkind": {"_count": 1}, "Luna": {"_count": 1}, "longer": {"_count": 1}, "months": {"_count": 1}, "Slughorn": {"_count": 1}, "overworked": {"_count": 1}, "obsessed": {"_count": 1}, "ended": {"_count": 1}, "rocky": {"_count": 1}, "around": {"_count": 1}, "roomy": {"_count": 1}, "dented": {"_count": 1}, "exposed": {"_count": 1}, "frustrated": {"_count": 1}, "risky": {"_count": 1}, "pathetic": {"_count": 2}, "hacked": {"_count": 1}, "spookier": {"_count": 1}, "closer": {"_count": 1}, "shorter": {"_count": 1}, "weird": {"_count": 1}, "if": {"_count": 1}, "annoyed": {"_count": 1}, "smarter": {"_count": 1}}, "bun": {"_count": 2, "from": {"_count": 1}, "and": {"_count": 1}}, "group": {"_count": 27, "of": {"_count": 25}, "was": {"_count": 1}, "nearby": {"_count": 1}}, "single": {"_count": 75, "collecting": {"_count": 1}, "witch": {"_count": 1}, "spindly": {"_count": 1}, "letter": {"_count": 1}, "one": {"_count": 2}, "pair": {"_count": 1}, "gnome": {"_count": 1}, "slug": {"_count": 1}, "oil": {"_count": 1}, "spider": {"_count": 1}, "word": {"_count": 5}, "mention": {"_count": 2}, "curse": {"_count": 2}, "bloody": {"_count": 1}, "person": {"_count": 1}, "cheerful": {"_count": 1}, "living": {"_count": 1}, "table": {"_count": 1}, "very": {"_count": 1}, "criticism": {"_count": 1}, "pane": {"_count": 1}, "piece": {"_count": 1}, "quill": {"_count": 1}, "room": {"_count": 1}, "hair": {"_count": 1}, "feather": {"_count": 1}, "Stunner": {"_count": 1}, "manyheaded": {"_count": 1}, "tissue": {"_count": 1}, "goldenframed": {"_count": 1}, "thought": {"_count": 1}, "cloud": {"_count": 1}, "gold": {"_count": 1}, "stinking": {"_count": 1}, "vertical": {"_count": 1}, "dream": {"_count": 1}, "Invisibility": {"_count": 1}, "ring": {"_count": 4}, "golden": {"_count": 2}, "branch": {"_count": 1}, "large": {"_count": 2}, "thing": {"_count": 1}, "long": {"_count": 2}, "car": {"_count": 1}, "move": {"_count": 1}, "gargoyle": {"_count": 1}, "guttering": {"_count": 1}, "illuminating": {"_count": 1}, "gust": {"_count": 1}, "Slytherin": {"_count": 1}, "pupil": {"_count": 2}, "patch": {"_count": 1}, "shaky": {"_count": 1}, "question": {"_count": 1}, "glance": {"_count": 1}, "candle": {"_count": 1}, "dark": {"_count": 1}, "headmaster": {"_count": 1}, "second": {"_count": 1}, "white": {"_count": 1}, "stroke": {"_count": 1}}, "bag": {"_count": 16, "that": {"_count": 1}, "of": {"_count": 10}, "": {"_count": 2}, "full": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "son": {"_count": 9, "called": {"_count": 1}, "don": {"_count": 1}, "anyway": {"_count": 1}, "": {"_count": 3}, "but": {"_count": 1}, "who": {"_count": 1}, "would": {"_count": 1}}, "violet": {"_count": 2, "cloak": {"_count": 1}, "top": {"_count": 1}}, "wide": {"_count": 29, "smile": {"_count": 5}, "opening": {"_count": 1}, "mouth": {"_count": 1}, "berth": {"_count": 4}, "toothy": {"_count": 1}, "shiny": {"_count": 1}, "oak": {"_count": 1}, "curving": {"_count": 1}, "path": {"_count": 1}, "watery": {"_count": 1}, "rip": {"_count": 1}, "faced": {"_count": 1}, "lap": {"_count": 1}, "selection": {"_count": 1}, "variety": {"_count": 2}, "expanse": {"_count": 1}, "driveway": {"_count": 1}, "open": {"_count": 1}, "circle": {"_count": 1}, "flat": {"_count": 1}, "circular": {"_count": 1}}, "squeaky": {"_count": 6, "voice": {"_count": 4}, "little": {"_count": 1}, "impersonation": {"_count": 1}}, "complete": {"_count": 15, "stranger": {"_count": 1}, "secret": {"_count": 1}, "set": {"_count": 1}, "waste": {"_count": 3}, "lunatic": {"_count": 1}, "nonentity": {"_count": 1}, "loss": {"_count": 4}, "inability": {"_count": 1}, "fiasco": {"_count": 1}, "halt": {"_count": 1}}, "Muggle": {"_count": 46, "whatever": {"_count": 1}, "family": {"_count": 2}, "": {"_count": 8}, "shop": {"_count": 2}, "car": {"_count": 1}, "orphanage": {"_count": 4}, "who": {"_count": 1}, "Studies": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}, "were": {"_count": 1}, "Artifact": {"_count": 1}, "looks": {"_count": 1}, "looking": {"_count": 1}, "dress": {"_count": 1}, "perspective": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}, "suburb": {"_count": 1}, "house": {"_count": 1}, "or": {"_count": 1}, "late": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}, "then": {"_count": 1}, "from": {"_count": 1}, "hater": {"_count": 1}, "not": {"_count": 1}, "school": {"_count": 1}, "front": {"_count": 1}, "She": {"_count": 1}, "but": {"_count": 1}, "could": {"_count": 1}, "driving": {"_count": 1}}, "stern": {"_count": 3, "look": {"_count": 3}}, "nice": {"_count": 37, "normal": {"_count": 1}, "set": {"_count": 1}, "feeling": {"_count": 1}, "thirst": {"_count": 1}, "fair": {"_count": 1}, "long": {"_count": 2}, "toffee": {"_count": 1}, "woman": {"_count": 1}, "shiny": {"_count": 1}, "book": {"_count": 1}, "deserted": {"_count": 1}, "family": {"_count": 1}, "simple": {"_count": 1}, "change": {"_count": 2}, "young": {"_count": 1}, "fat": {"_count": 1}, "lookout": {"_count": 1}, "comfortable": {"_count": 1}, "new": {"_count": 1}, "little": {"_count": 4}, "elfsized": {"_count": 1}, "battle": {"_count": 1}, "big": {"_count": 1}, "sleep": {"_count": 1}, "lie": {"_count": 1}, "holiday": {"_count": 1}, "loud": {"_count": 2}, "burial": {"_count": 1}, "day": {"_count": 1}, "sharp": {"_count": 1}, "few": {"_count": 1}}, "new": {"_count": 102, "word": {"_count": 1}, "b": {"_count": 1}, "year": {"_count": 1}, "secret": {"_count": 1}, "home": {"_count": 2}, "spring": {"_count": 2}, "Muggle": {"_count": 1}, "quill": {"_count": 2}, "one": {"_count": 3}, "Seeker": {"_count": 1}, "attack": {"_count": 2}, "dawn": {"_count": 1}, "handknitted": {"_count": 1}, "bottle": {"_count": 1}, "name": {"_count": 1}, "Defense": {"_count": 4}, "wand": {"_count": 7}, "emotion": {"_count": 1}, "class": {"_count": 1}, "potion": {"_count": 1}, "kind": {"_count": 1}, "Captain": {"_count": 1}, "broom": {"_count": 5}, "generation": {"_count": 1}, "ink": {"_count": 1}, "voice": {"_count": 1}, "rat": {"_count": 2}, "boggart": {"_count": 1}, "sound": {"_count": 1}, "corridor": {"_count": 1}, "constellation": {"_count": 1}, "order": {"_count": 1}, "position": {"_count": 1}, "angle": {"_count": 2}, "sweater": {"_count": 1}, "song": {"_count": 1}, "vegetable": {"_count": 1}, "route": {"_count": 1}, "headmaster": {"_count": 1}, "talent": {"_count": 1}, "boy": {"_count": 1}, "cauldron": {"_count": 1}, "era": {"_count": 1}, "Keeper": {"_count": 2}, "set": {"_count": 1}, "pair": {"_count": 1}, "move": {"_count": 1}, "Gurg": {"_count": 2}, "and": {"_count": 3}, "red": {"_count": 1}, "cut": {"_count": 1}, "star": {"_count": 1}, "Divination": {"_count": 2}, "teacher": {"_count": 1}, "Minister": {"_count": 1}, "door": {"_count": 1}, "optimism": {"_count": 1}, "": {"_count": 1}, "member": {"_count": 1}, "copy": {"_count": 1}, "book": {"_count": 1}, "find": {"_count": 1}, "password": {"_count": 1}, "sign": {"_count": 1}, "boyfriend": {"_count": 1}, "portrait": {"_count": 1}, "Sneakoscope": {"_count": 1}, "mellow": {"_count": 1}, "headstone": {"_count": 1}, "correspondent": {"_count": 1}, "but": {"_count": 1}, "master": {"_count": 2}, "Wizarding": {"_count": 1}, "question": {"_count": 1}, "plan": {"_count": 1}}, "grin": {"_count": 18, "": {"_count": 6}, "but": {"_count": 1}, "breaking": {"_count": 1}, "spread": {"_count": 1}, "flitted": {"_count": 2}, "forced": {"_count": 1}, "on": {"_count": 2}, "curling": {"_count": 1}, "at": {"_count": 1}, "onto": {"_count": 1}, "was": {"_count": 1}}, "downpour": {"_count": 1, "of": {"_count": 1}}, "wet": {"_count": 3, "night": {"_count": 1}, "thud": {"_count": 1}, "comb": {"_count": 1}}, "whisper": {"_count": 37, "a": {"_count": 1}, "about": {"_count": 1}, "but": {"_count": 2}, "to": {"_count": 3}, "and": {"_count": 1}, "so": {"_count": 2}, "partly": {"_count": 1}, "Professor": {"_count": 1}, "": {"_count": 13}, "that": {"_count": 2}, "Give": {"_count": 1}, "what": {"_count": 1}, "as": {"_count": 2}, "bit": {"_count": 1}, "barely": {"_count": 1}, "dyou": {"_count": 1}, "through": {"_count": 1}, "wondering": {"_count": 1}, "Some": {"_count": 1}}, "pair": {"_count": 87, "of": {"_count": 80}, "under": {"_count": 1}, "that": {"_count": 2}, "patterned": {"_count": 1}, "But": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "statue": {"_count": 12, "its": {"_count": 1}, "": {"_count": 4}, "high": {"_count": 1}, "of": {"_count": 4}, "when": {"_count": 1}, "to": {"_count": 1}}, "car": {"_count": 15, "door": {"_count": 2}, "crash": {"_count": 6}, "full": {"_count": 1}, "right": {"_count": 1}, "to": {"_count": 1}, "anymore": {"_count": 1}, "just": {"_count": 1}, "aerial": {"_count": 1}, "for": {"_count": 1}}, "purple": {"_count": 9, "cloak": {"_count": 1}, "wax": {"_count": 1}, "uniform": {"_count": 2}, "hat": {"_count": 1}, "liquid": {"_count": 1}, "leaflet": {"_count": 1}, "button": {"_count": 1}, "porkpie": {"_count": 1}}, "street": {"_count": 5, "where": {"_count": 1}, "full": {"_count": 2}, "that": {"_count": 1}, "named": {"_count": 1}}, "silver": {"_count": 16, "cigarette": {"_count": 3}, "Sickle": {"_count": 1}, "stepladder": {"_count": 1}, "serpent": {"_count": 1}, "snuffbox": {"_count": 1}, "ink": {"_count": 1}, "thimble": {"_count": 1}, "Patronus": {"_count": 1}, "stag": {"_count": 1}, "white": {"_count": 1}, "flagon": {"_count": 1}, "net": {"_count": 1}, "hare": {"_count": 1}, "spark": {"_count": 1}}, "moment": {"_count": 348, "he": {"_count": 26}, "": {"_count": 47}, "later": {"_count": 19}, "it": {"_count": 7}, "on": {"_count": 8}, "was": {"_count": 2}, "said": {"_count": 4}, "to": {"_count": 5}, "both": {"_count": 1}, "that": {"_count": 7}, "Harry": {"_count": 17}, "there": {"_count": 3}, "then": {"_count": 39}, "and": {"_count": 17}, "thinking": {"_count": 1}, "they": {"_count": 2}, "of": {"_count": 4}, "now": {"_count": 1}, "watching": {"_count": 2}, "or": {"_count": 23}, "staring": {"_count": 1}, "at": {"_count": 5}, "Great": {"_count": 1}, "all": {"_count": 3}, "Scabbers": {"_count": 1}, "behind": {"_count": 1}, "Sure": {"_count": 1}, "too": {"_count": 1}, "before": {"_count": 9}, "for": {"_count": 2}, "picturing": {"_count": 1}, "Rons": {"_count": 1}, "while": {"_count": 1}, "as": {"_count": 8}, "Moody": {"_count": 1}, "with": {"_count": 6}, "Hermione": {"_count": 1}, "whom": {"_count": 1}, "Wand": {"_count": 1}, "twittering": {"_count": 1}, "because": {"_count": 1}, "quivering": {"_count": 1}, "in": {"_count": 4}, "you": {"_count": 2}, "nobody": {"_count": 1}, "Buckbeak": {"_count": 1}, "the": {"_count": 7}, "Dumbledore": {"_count": 1}, "looking": {"_count": 2}, "Cedric": {"_count": 1}, "raising": {"_count": 1}, "when": {"_count": 3}, "just": {"_count": 2}, "Wilhelmina": {"_count": 1}, "extremely": {"_count": 1}, "into": {"_count": 1}, "longer": {"_count": 1}, "apparently": {"_count": 1}, "Ill": {"_count": 1}, "against": {"_count": 1}, "through": {"_count": 2}, "seemed": {"_count": 1}, "opened": {"_count": 1}, "his": {"_count": 3}, "she": {"_count": 2}, "hes": {"_count": 1}, "upon": {"_count": 1}, "man": {"_count": 1}, "wasted": {"_count": 1}, "irresolute": {"_count": 1}, "wondering": {"_count": 1}, "but": {"_count": 3}, "whether": {"_count": 2}, "Ron": {"_count": 1}, "like": {"_count": 1}, "marshaling": {"_count": 1}, "an": {"_count": 1}, "so": {"_count": 1}, "I": {"_count": 1}, "brow": {"_count": 1}, "even": {"_count": 1}, "ago": {"_count": 1}, "wanting": {"_count": 1}, "theres": {"_count": 1}, "made": {"_count": 1}}, "rather": {"_count": 43, "severelooking": {"_count": 1}, "wicked": {"_count": 1}, "nasty": {"_count": 1}, "high": {"_count": 1}, "beaky": {"_count": 1}, "shaky": {"_count": 1}, "ugly": {"_count": 2}, "small": {"_count": 1}, "tetchy": {"_count": 1}, "poor": {"_count": 1}, "more": {"_count": 2}, "bad": {"_count": 1}, "special": {"_count": 1}, "aggressive": {"_count": 1}, "reproachful": {"_count": 1}, "viciouslooking": {"_count": 1}, "sheepish": {"_count": 1}, "battered": {"_count": 1}, "bouncy": {"_count": 1}, "frightened": {"_count": 1}, "higher": {"_count": 1}, "interesting": {"_count": 1}, "fine": {"_count": 1}, "stern": {"_count": 1}, "ravaged": {"_count": 1}, "tiring": {"_count": 1}, "splendid": {"_count": 1}, "grumpy": {"_count": 1}, "grim": {"_count": 2}, "hungry": {"_count": 1}, "grubby": {"_count": 1}, "horrible": {"_count": 1}, "knowing": {"_count": 1}, "dull": {"_count": 1}, "agitated": {"_count": 1}, "fierce": {"_count": 1}, "deaf": {"_count": 1}, "carrying": {"_count": 1}, "highpitched": {"_count": 1}, "pungent": {"_count": 1}}, "cloak": {"_count": 13, "an": {"_count": 1}, "to": {"_count": 2}, "trailing": {"_count": 1}, "": {"_count": 2}, "propped": {"_count": 1}, "over": {"_count": 1}, "so": {"_count": 1}, "hat": {"_count": 1}, "slithering": {"_count": 1}, "that": {"_count": 1}, "exactly": {"_count": 1}}, "tight": {"_count": 15, "bun": {"_count": 4}, "onearmed": {"_count": 1}, "hold": {"_count": 2}, "circle": {"_count": 1}, "hug": {"_count": 1}, "spot": {"_count": 1}, "fit": {"_count": 1}, "grip": {"_count": 1}, "embrace": {"_count": 1}, "obstruction": {"_count": 1}, "schedule": {"_count": 1}}, "brick": {"_count": 5, "wall": {"_count": 2}, "had": {"_count": 2}, "in": {"_count": 1}}, "dozen": {"_count": 64, "feasts": {"_count": 1}, "paces": {"_count": 1}, "bacon": {"_count": 1}, "times": {"_count": 3}, "of": {"_count": 4}, "ghost": {"_count": 1}, "frostcovered": {"_count": 1}, "surlylooking": {"_count": 1}, "brass": {"_count": 1}, "Muggles": {"_count": 1}, "large": {"_count": 1}, "bits": {"_count": 1}, "Dungbombs": {"_count": 1}, "homebaked": {"_count": 1}, "rolls": {"_count": 1}, "winged": {"_count": 1}, "boys": {"_count": 2}, "pairs": {"_count": 1}, "wizards": {"_count": 1}, "or": {"_count": 1}, "people": {"_count": 3}, "mermen": {"_count": 1}, "chicken": {"_count": 1}, "house": {"_count": 1}, "cakes": {"_count": 1}, "steps": {"_count": 1}, "Death": {"_count": 1}, "others": {"_count": 2}, "empty": {"_count": 1}, "black": {"_count": 1}, "knitted": {"_count": 1}, "bottles": {"_count": 1}, "hedgehogs": {"_count": 1}, "figures": {"_count": 1}, "badges": {"_count": 1}, "doors": {"_count": 1}, "lit": {"_count": 1}, "cars": {"_count": 1}, "goals": {"_count": 1}, "girls": {"_count": 1}, "different": {"_count": 2}, "shriveled": {"_count": 1}, "things": {"_count": 1}, "detentions": {"_count": 1}, "giant": {"_count": 1}, "eggcupsized": {"_count": 1}, "places": {"_count": 1}, "more": {"_count": 1}, "men": {"_count": 1}, "witches": {"_count": 1}, "were": {"_count": 1}, "wands": {"_count": 1}, "cloaked": {"_count": 1}, "students": {"_count": 1}}, "sharp": {"_count": 29, "sideways": {"_count": 1}, "look": {"_count": 3}, "tap": {"_count": 1}, "turn": {"_count": 1}, "squeal": {"_count": 1}, "voice": {"_count": 3}, "hot": {"_count": 1}, "about": {"_count": 1}, "slap": {"_count": 1}, "intake": {"_count": 2}, "pain": {"_count": 4}, "snap": {"_count": 2}, "blast": {"_count": 1}, "upswing": {"_count": 1}, "boy": {"_count": 1}, "prod": {"_count": 1}, "jab": {"_count": 1}, "poke": {"_count": 1}, "blow": {"_count": 1}, "rap": {"_count": 1}}, "lemon": {"_count": 2, "drop": {"_count": 1}, "": {"_count": 1}}, "kind": {"_count": 73, "of": {"_count": 69}, "thoughtful": {"_count": 1}, "and": {"_count": 1}, "pretty": {"_count": 1}, "neither": {"_count": 1}}, "sensible": {"_count": 1, "person": {"_count": 1}}, "cold": {"_count": 25, "hard": {"_count": 1}, "breeze": {"_count": 2}, "and": {"_count": 1}, "so": {"_count": 1}, "drawling": {"_count": 1}, "voice": {"_count": 2}, "high": {"_count": 1}, "curt": {"_count": 1}, "clear": {"_count": 2}, "highpitched": {"_count": 1}, "plunging": {"_count": 1}, "or": {"_count": 1}, "he": {"_count": 1}, "wet": {"_count": 1}, "pheasant": {"_count": 1}, "smile": {"_count": 1}, "draft": {"_count": 1}, "appraising": {"_count": 1}, "that": {"_count": 1}, "snide": {"_count": 1}, "unfriendly": {"_count": 1}, "window": {"_count": 1}}, "woman": {"_count": 22, "had": {"_count": 1}, "with": {"_count": 3}, "": {"_count": 5}, "at": {"_count": 1}, "Harry": {"_count": 1}, "so": {"_count": 1}, "whose": {"_count": 1}, "screamed": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}, "who": {"_count": 3}, "said": {"_count": 2}, "shouted": {"_count": 1}}, "piercing": {"_count": 7, "stare": {"_count": 2}, "look": {"_count": 2}, "pain": {"_count": 1}, "shriek": {"_count": 1}, "brilliant": {"_count": 1}}, "lace": {"_count": 1, "handkerchief": {"_count": 1}}, "great": {"_count": 254, "sniff": {"_count": 3}, "Muggle": {"_count": 2}, "mystry": {"_count": 1}, "scraping": {"_count": 2}, "time": {"_count": 3}, "leap": {"_count": 4}, "clattering": {"_count": 2}, "black": {"_count": 8}, "honor": {"_count": 2}, "running": {"_count": 1}, "rush": {"_count": 4}, "crunching": {"_count": 1}, "help": {"_count": 1}, "sigh": {"_count": 6}, "wizard": {"_count": 8}, "deal": {"_count": 40}, "bulldog": {"_count": 1}, "city": {"_count": 1}, "arc": {"_count": 1}, "shuddering": {"_count": 4}, "BANG": {"_count": 1}, "height": {"_count": 1}, "maggoty": {"_count": 1}, "cat": {"_count": 1}, "big": {"_count": 2}, "echoing": {"_count": 2}, "hurry": {"_count": 2}, "scramble": {"_count": 1}, "shout": {"_count": 3}, "Ha": {"_count": 1}, "success": {"_count": 3}, "slash": {"_count": 1}, "wail": {"_count": 1}, "whoop": {"_count": 2}, "stack": {"_count": 1}, "Ooooooh": {"_count": 1}, "tug": {"_count": 1}, "dislike": {"_count": 1}, "slimy": {"_count": 1}, "bullying": {"_count": 1}, "believer": {"_count": 1}, "excited": {"_count": 1}, "greenand": {"_count": 1}, "shimmering": {"_count": 1}, "wave": {"_count": 4}, "jumbo": {"_count": 1}, "change": {"_count": 1}, "Beater": {"_count": 1}, "number": {"_count": 5}, "lurch": {"_count": 1}, "distance": {"_count": 2}, "sloshing": {"_count": 1}, "wooden": {"_count": 1}, "breath": {"_count": 5}, "sweeping": {"_count": 1}, "brick": {"_count": 1}, "liking": {"_count": 3}, "irongray": {"_count": 1}, "stream": {"_count": 1}, "spout": {"_count": 1}, "silver": {"_count": 1}, "gasp": {"_count": 1}, "stone": {"_count": 3}, "grayish": {"_count": 1}, "splintering": {"_count": 1}, "jolt": {"_count": 2}, "tragic": {"_count": 1}, "variety": {"_count": 1}, "jangling": {"_count": 1}, "resemblance": {"_count": 1}, "retaliatory": {"_count": 1}, "circle": {"_count": 1}, "friend": {"_count": 1}, "Voldemort": {"_count": 1}, "teacher": {"_count": 1}, "roll": {"_count": 1}, "mother": {"_count": 1}, "load": {"_count": 1}, "Christmas": {"_count": 1}, "swig": {"_count": 1}, "ring": {"_count": 2}, "service": {"_count": 1}, "gulp": {"_count": 1}, "overreaction": {"_count": 1}, "roar": {"_count": 4}, "struggle": {"_count": 1}, "pain": {"_count": 1}, "insult": {"_count": 1}, "rumbling": {"_count": 2}, "redgold": {"_count": 1}, "weakness": {"_count": 1}, "shock": {"_count": 2}, "effort": {"_count": 2}, "deep": {"_count": 1}, "Dark": {"_count": 1}, "witch": {"_count": 1}, "swollen": {"_count": 1}, "personal": {"_count": 1}, "bearing": {"_count": 1}, "team": {"_count": 1}, "grunting": {"_count": 1}, "swipe": {"_count": 1}, "sense": {"_count": 1}, "one": {"_count": 1}, "vogue": {"_count": 1}, "scrambling": {"_count": 1}, "bang": {"_count": 1}, "shudder": {"_count": 3}, "example": {"_count": 1}, "danger": {"_count": 1}, "pull": {"_count": 1}, "sadness": {"_count": 1}, "vat": {"_count": 1}, "feeling": {"_count": 1}, "sob": {"_count": 1}, "and": {"_count": 1}, "splash": {"_count": 1}, "rattling": {"_count": 1}, "rag": {"_count": 1}, "job": {"_count": 1}, "net": {"_count": 1}, "transparent": {"_count": 1}, "hand": {"_count": 1}, "old": {"_count": 1}, "crash": {"_count": 1}, "opportunity": {"_count": 1}, "creaking": {"_count": 1}, "Seeker": {"_count": 1}, "cloud": {"_count": 1}, "Quidditch": {"_count": 1}, "overhanging": {"_count": 1}, "chunk": {"_count": 1}, "work": {"_count": 1}, "age": {"_count": 1}, "gilded": {"_count": 1}, "clatter": {"_count": 2}, "cascade": {"_count": 1}, "dark": {"_count": 1}, "thump": {"_count": 1}, "cheer": {"_count": 1}, "flaming": {"_count": 1}, "cavalcade": {"_count": 1}, "Wheeeeeeeeeeee": {"_count": 1}, "scurrying": {"_count": 1}}, "golden": {"_count": 9, "watch": {"_count": 1}, "stage": {"_count": 1}, "perch": {"_count": 1}, "domeshaped": {"_count": 1}, "frame": {"_count": 1}, "chain": {"_count": 1}, "fountain": {"_count": 1}, "title": {"_count": 1}, "coin": {"_count": 1}}, "letter": {"_count": 56, "": {"_count": 4}, "out": {"_count": 1}, "for": {"_count": 3}, "addressed": {"_count": 2}, "so": {"_count": 1}, "just": {"_count": 1}, "here": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 3}, "but": {"_count": 1}, "from": {"_count": 7}, "by": {"_count": 4}, "bearing": {"_count": 1}, "and": {"_count": 2}, "this": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 5}, "at": {"_count": 2}, "its": {"_count": 1}, "telling": {"_count": 2}, "said": {"_count": 3}, "you": {"_count": 1}, "was": {"_count": 1}, "tied": {"_count": 1}, "explaining": {"_count": 1}, "requesting": {"_count": 1}, "kept": {"_count": 1}, "he": {"_count": 1}}, "legend": {"_count": 2, "I": {"_count": 1}, "that": {"_count": 1}}, "headlight": {"_count": 1, "it": {"_count": 1}}, "roar": {"_count": 23, "as": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 1}, "of": {"_count": 12}, "from": {"_count": 2}, "that": {"_count": 2}, "and": {"_count": 2}, "": {"_count": 1}}, "huge": {"_count": 52, "motorcycle": {"_count": 1}, "Dudley": {"_count": 1}, "pile": {"_count": 1}, "wooden": {"_count": 1}, "black": {"_count": 2}, "chessboard": {"_count": 1}, "order": {"_count": 1}, "mound": {"_count": 1}, "barn": {"_count": 2}, "heave": {"_count": 1}, "treat": {"_count": 1}, "jump": {"_count": 1}, "fake": {"_count": 2}, "rumble": {"_count": 1}, "boy": {"_count": 1}, "tug": {"_count": 1}, "bound": {"_count": 1}, "swig": {"_count": 1}, "array": {"_count": 1}, "gulp": {"_count": 1}, "advantage": {"_count": 2}, "crimson": {"_count": 1}, "silver": {"_count": 1}, "achievement": {"_count": 1}, "jolt": {"_count": 1}, "burst": {"_count": 1}, "effort": {"_count": 5}, "electric": {"_count": 1}, "bang": {"_count": 2}, "yawn": {"_count": 1}, "occasion": {"_count": 1}, "spurt": {"_count": 1}, "personal": {"_count": 1}, "leap": {"_count": 1}, "snake": {"_count": 3}, "invisible": {"_count": 1}, "sprawling": {"_count": 1}, "tray": {"_count": 1}, "plate": {"_count": 1}, "gasp": {"_count": 1}, "batlike": {"_count": 1}}, "normal": {"_count": 14, "man": {"_count": 4}, "mirror": {"_count": 1}, "boy": {"_count": 2}, "persons": {"_count": 2}, "schedule": {"_count": 1}, "clock": {"_count": 1}, "girl": {"_count": 1}, "leg": {"_count": 1}, "dinner": {"_count": 1}}, "bundle": {"_count": 3, "of": {"_count": 3}}, "baby": {"_count": 21, "boy": {"_count": 2}, "and": {"_count": 2}, "angel": {"_count": 1}, "said": {"_count": 1}, "an": {"_count": 1}, "after": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 8}, "was": {"_count": 1}, "she": {"_count": 1}, "believing": {"_count": 1}, "see": {"_count": 1}}, "tuft": {"_count": 3, "of": {"_count": 3}}, "curiously": {"_count": 1, "shaped": {"_count": 1}}, "bolt": {"_count": 4, "of": {"_count": 4}}, "perfect": {"_count": 8, "map": {"_count": 1}, "way": {"_count": 1}, "boggart": {"_count": 1}, "night": {"_count": 1}, "potion": {"_count": 1}, "breaststroke": {"_count": 1}, "comical": {"_count": 1}, "grave": {"_count": 1}}, "howl": {"_count": 12, "like": {"_count": 1}, "and": {"_count": 2}, "of": {"_count": 9}}, "wounded": {"_count": 4, "dog": {"_count": 1}, "hippo": {"_count": 1}, "animal": {"_count": 2}}, "grip": {"_count": 11, "on": {"_count": 6}, "": {"_count": 2}, "so": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}}, "full": {"_count": 28, "minute": {"_count": 1}, "set": {"_count": 1}, "apology": {"_count": 2}, "recovery": {"_count": 5}, "five": {"_count": 1}, "inquiry": {"_count": 2}, "criminal": {"_count": 1}, "pocket": {"_count": 1}, "pardon": {"_count": 1}, "account": {"_count": 2}, "days": {"_count": 1}, "moon": {"_count": 1}, "money": {"_count": 1}, "and": {"_count": 1}, "ten": {"_count": 1}, "werewolf": {"_count": 1}, "picture": {"_count": 1}, "BodyBind": {"_count": 2}, "stomach": {"_count": 1}, "week": {"_count": 1}}, "swish": {"_count": 2, "of": {"_count": 2}}, "carousel": {"_count": 1, "at": {"_count": 1}}, "computer": {"_count": 1, "game": {"_count": 1}}, "start": {"_count": 26, "": {"_count": 10}, "on": {"_count": 2}, "Harry": {"_count": 1}, "He": {"_count": 1}, "when": {"_count": 1}, "told": {"_count": 1}, "and": {"_count": 4}, "there": {"_count": 1}, "said": {"_count": 3}, "to": {"_count": 1}, "Bathilda": {"_count": 1}}, "good": {"_count": 207, "one": {"_count": 5}, "beating": {"_count": 1}, "dream": {"_count": 1}, "idea": {"_count": 22}, "term": {"_count": 5}, "time": {"_count": 4}, "look": {"_count": 10}, "kick": {"_count": 2}, "Quidditch": {"_count": 1}, "find": {"_count": 1}, "reason": {"_count": 1}, "laugh": {"_count": 2}, "nights": {"_count": 1}, "holiday": {"_count": 2}, "Vanishing": {"_count": 1}, "fight": {"_count": 2}, "seat": {"_count": 2}, "thing": {"_count": 3}, "job": {"_count": 1}, "mood": {"_count": 6}, "sign": {"_count": 4}, "deal": {"_count": 7}, "party": {"_count": 1}, "man": {"_count": 2}, "moment": {"_count": 1}, "feast": {"_count": 1}, "lad": {"_count": 4}, "boy": {"_count": 7}, "firs": {"_count": 1}, "strong": {"_count": 2}, "defense": {"_count": 1}, "broom": {"_count": 1}, "Christmas": {"_count": 3}, "substitute": {"_count": 1}, "enough": {"_count": 3}, "chance": {"_count": 6}, "gloat": {"_count": 1}, "few": {"_count": 1}, "friend": {"_count": 2}, "pet": {"_count": 2}, "nap": {"_count": 1}, "argument": {"_count": 1}, "distance": {"_count": 2}, "summer": {"_count": 4}, "chap": {"_count": 1}, "impression": {"_count": 3}, "houseelf": {"_count": 3}, "elf": {"_count": 1}, "sharp": {"_count": 1}, "hard": {"_count": 2}, "ferret": {"_count": 1}, "long": {"_count": 5}, "try": {"_count": 1}, "actor": {"_count": 1}, "combination": {"_count": 1}, "wizard": {"_count": 2}, "do": {"_count": 1}, "seven": {"_count": 1}, "theory": {"_count": 1}, "six": {"_count": 2}, "family": {"_count": 1}, "hold": {"_count": 1}, "and": {"_count": 2}, "flier": {"_count": 1}, "bit": {"_count": 2}, "Keeper": {"_count": 1}, "healthy": {"_count": 1}, "imitation": {"_count": 2}, "Reductor": {"_count": 1}, "view": {"_count": 1}, "cover": {"_count": 1}, "location": {"_count": 1}, "day": {"_count": 1}, "light": {"_count": 1}, "course": {"_count": 1}, "witness": {"_count": 1}, "girl": {"_count": 1}, "curse": {"_count": 1}, "sense": {"_count": 2}, "person": {"_count": 1}, "weekend": {"_count": 1}, "grade": {"_count": 1}, "smattering": {"_count": 1}, "witch": {"_count": 1}, "teacher": {"_count": 2}, "Auror": {"_count": 1}, "chat": {"_count": 1}, "decision": {"_count": 1}, "omen": {"_count": 1}, "He": {"_count": 1}, "master": {"_count": 1}, "feeling": {"_count": 2}, "Occlumens": {"_count": 1}, "site": {"_count": 1}, "aim": {"_count": 1}, "go": {"_count": 1}, "hour": {"_count": 1}, "bloke": {"_count": 1}, "nineteen": {"_count": 1}, "place": {"_count": 1}, "candidate": {"_count": 1}, "overview": {"_count": 1}}, "flying": {"_count": 7, "motorcycle": {"_count": 1}, "car": {"_count": 3}, "house": {"_count": 1}, "motorbike": {"_count": 1}, "broom": {"_count": 1}}, "funny": {"_count": 32, "feeling": {"_count": 5}, "whelk": {"_count": 1}, "rasping": {"_count": 1}, "gray": {"_count": 1}, "smell": {"_count": 1}, "clicking": {"_count": 1}, "muffled": {"_count": 1}, "man": {"_count": 1}, "choking": {"_count": 1}, "rustling": {"_count": 1}, "jolt": {"_count": 1}, "ringing": {"_count": 1}, "spluttering": {"_count": 1}, "way": {"_count": 2}, "accident": {"_count": 1}, "flat": {"_count": 1}, "feelin": {"_count": 1}, "mood": {"_count": 1}, "noise": {"_count": 1}, "movement": {"_count": 1}, "joke": {"_count": 1}, "little": {"_count": 2}, "squelching": {"_count": 1}, "boy": {"_count": 1}, "baby": {"_count": 1}, "notion": {"_count": 1}}, "move": {"_count": 8, "on": {"_count": 7}, "however": {"_count": 1}}, "spider": {"_count": 5, "off": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}, "his": {"_count": 1}, "or": {"_count": 1}}, "racing": {"_count": 2, "bike": {"_count": 1}, "broom": {"_count": 1}}, "mystery": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "dark": {"_count": 50, "cupboard": {"_count": 1}, "shop": {"_count": 1}, "tunnel": {"_count": 2}, "stain": {"_count": 2}, "patchwork": {"_count": 1}, "shadow": {"_count": 4}, "murky": {"_count": 1}, "stone": {"_count": 1}, "bend": {"_count": 1}, "look": {"_count": 5}, "shape": {"_count": 1}, "wood": {"_count": 1}, "window": {"_count": 1}, "corridor": {"_count": 3}, "and": {"_count": 3}, "room": {"_count": 3}, "whirlpool": {"_count": 1}, "figure": {"_count": 2}, "raw": {"_count": 1}, "wardrobe": {"_count": 1}, "graveyard": {"_count": 1}, "curtained": {"_count": 1}, "bedroom": {"_count": 1}, "dangerous": {"_count": 1}, "corner": {"_count": 1}, "rippling": {"_count": 1}, "hole": {"_count": 1}, "padded": {"_count": 1}, "young": {"_count": 1}, "alley": {"_count": 1}, "woman": {"_count": 1}, "blue": {"_count": 1}, "passageway": {"_count": 1}, "coat": {"_count": 1}}, "thin": {"_count": 18, "face": {"_count": 1}, "lightningshaped": {"_count": 1}, "man": {"_count": 2}, "mist": {"_count": 1}, "irritable": {"_count": 1}, "scar": {"_count": 1}, "black": {"_count": 2}, "papery": {"_count": 1}, "wooden": {"_count": 1}, "balding": {"_count": 2}, "trickle": {"_count": 1}, "glittering": {"_count": 1}, "stream": {"_count": 1}, "piteous": {"_count": 1}, "sallowfaced": {"_count": 1}}, "quiet": {"_count": 19, "life": {"_count": 5}, "voice": {"_count": 8}, "sort": {"_count": 1}, "room": {"_count": 1}, "stretch": {"_count": 1}, "country": {"_count": 1}, "boy": {"_count": 1}, "place": {"_count": 1}}, "morning": {"_count": 2, "greeting": {"_count": 1}, "When": {"_count": 1}}, "week": {"_count": 59, "Uncle": {"_count": 2}, "in": {"_count": 1}, "they": {"_count": 1}, "later": {"_count": 1}, "": {"_count": 14}, "on": {"_count": 1}, "before": {"_count": 4}, "after": {"_count": 5}, "ago": {"_count": 4}, "said": {"_count": 2}, "to": {"_count": 2}, "already": {"_count": 1}, "Harry": {"_count": 3}, "away": {"_count": 1}, "and": {"_count": 3}, "has": {"_count": 1}, "I": {"_count": 1}, "but": {"_count": 3}, "Ron": {"_count": 1}, "Hang": {"_count": 1}, "sounds": {"_count": 1}, "even": {"_count": 1}, "an": {"_count": 1}, "what": {"_count": 1}, "or": {"_count": 2}, "last": {"_count": 1}}, "haircut": {"_count": 1, "": {"_count": 1}}, "pig": {"_count": 11, "in": {"_count": 1}, "but": {"_count": 1}, "anyway": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "didnt": {"_count": 1}, "thats": {"_count": 1}, "snout": {"_count": 1}, "all": {"_count": 1}, "for": {"_count": 1}}, "wig": {"_count": 4, "": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 2}}, "video": {"_count": 1, "camera": {"_count": 1}}, "remote": {"_count": 1, "control": {"_count": 1}}, "VCR": {"_count": 1, "": {"_count": 1}}, "gold": {"_count": 6, "wristwatch": {"_count": 1}, "lion": {"_count": 1}, "prospector": {"_count": 2}, "chain": {"_count": 1}, "locket": {"_count": 1}}, "leap": {"_count": 5, "": {"_count": 1}, "of": {"_count": 4}}, "friend": {"_count": 22, "out": {"_count": 2}, "": {"_count": 5}, "be": {"_count": 1}, "hed": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 9}, "but": {"_count": 1}, "were": {"_count": 1}, "nor": {"_count": 1}}, "mad": {"_count": 12, "old": {"_count": 1}, "gleam": {"_count": 1}, "rush": {"_count": 1}, "axeman": {"_count": 1}, "hippogriff": {"_count": 1}, "glint": {"_count": 1}, "desire": {"_count": 1}, "delinquent": {"_count": 1}, "mass": {"_count": 1}, "person": {"_count": 1}, "laugh": {"_count": 1}, "cackle": {"_count": 1}}, "whole": {"_count": 32, "year": {"_count": 3}, "minute": {"_count": 2}, "crowd": {"_count": 2}, "night": {"_count": 1}, "wonderful": {"_count": 1}, "new": {"_count": 4}, "family": {"_count": 1}, "hour": {"_count": 2}, "farmhouse": {"_count": 1}, "bunch": {"_count": 4}, "load": {"_count": 1}, "lot": {"_count": 1}, "week": {"_count": 1}, "herd": {"_count": 1}, "host": {"_count": 1}, "shining": {"_count": 1}, "valley": {"_count": 1}, "variety": {"_count": 1}, "collection": {"_count": 1}, "stash": {"_count": 1}, "pile": {"_count": 1}}, "slug": {"_count": 4, "": {"_count": 2}, "in": {"_count": 1}, "vomiting": {"_count": 1}}, "change": {"_count": 16, "and": {"_count": 2}, "an": {"_count": 1}, "": {"_count": 5}, "of": {"_count": 4}, "They": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 1}, "because": {"_count": 1}}, "go": {"_count": 18, "on": {"_count": 4}, "": {"_count": 4}, "at": {"_count": 8}, "held": {"_count": 1}, "if": {"_count": 1}}, "nasty": {"_count": 53, "grin": {"_count": 2}, "bit": {"_count": 1}, "shock": {"_count": 2}, "crack": {"_count": 1}, "feeling": {"_count": 4}, "shade": {"_count": 2}, "crunching": {"_count": 1}, "greenish": {"_count": 1}, "window": {"_count": 1}, "wobble": {"_count": 1}, "business": {"_count": 1}, "little": {"_count": 4}, "smile": {"_count": 2}, "look": {"_count": 5}, "bout": {"_count": 1}, "sneer": {"_count": 1}, "essay": {"_count": 1}, "pang": {"_count": 1}, "incident": {"_count": 1}, "smell": {"_count": 1}, "cut": {"_count": 1}, "brick": {"_count": 1}, "squelching": {"_count": 1}, "ungrateful": {"_count": 1}, "piece": {"_count": 1}, "silence": {"_count": 1}, "inflection": {"_count": 1}, "injury": {"_count": 1}, "eager": {"_count": 1}, "killing": {"_count": 1}, "backfiring": {"_count": 1}, "yellowish": {"_count": 1}, "temper": {"_count": 1}, "hissing": {"_count": 1}, "sense": {"_count": 1}, "purple": {"_count": 1}, "lurch": {"_count": 1}, "crash": {"_count": 1}, "laugh": {"_count": 1}}, "scrawny": {"_count": 4, "boy": {"_count": 2}, "dust": {"_count": 1}, "fox": {"_count": 1}}, "face": {"_count": 18, "like": {"_count": 4}, "the": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 3}, "poked": {"_count": 1}, "unlike": {"_count": 1}, "but": {"_count": 1}, "full": {"_count": 2}, "Harry": {"_count": 1}, "so": {"_count": 1}, "covered": {"_count": 1}, "that": {"_count": 1}}, "rat": {"_count": 12, "": {"_count": 2}, "were": {"_count": 1}, "which": {"_count": 1}, "croaked": {"_count": 1}, "No": {"_count": 1}, "there": {"_count": 1}, "it": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "Pettigrews": {"_count": 1}, "in": {"_count": 1}}, "sleepless": {"_count": 1, "night": {"_count": 1}}, "revolting": {"_count": 1, "old": {"_count": 1}}, "hand": {"_count": 91, "puppet": {"_count": 1}, "to": {"_count": 22}, "": {"_count": 3}, "and": {"_count": 10}, "on": {"_count": 13}, "Harry": {"_count": 1}, "her": {"_count": 1}, "protruding": {"_count": 1}, "at": {"_count": 2}, "along": {"_count": 1}, "down": {"_count": 1}, "inside": {"_count": 2}, "that": {"_count": 2}, "he": {"_count": 1}, "into": {"_count": 1}, "over": {"_count": 3}, "up": {"_count": 2}, "out": {"_count": 1}, "please": {"_count": 1}, "Mrs": {"_count": 1}, "around": {"_count": 1}, "through": {"_count": 1}, "stretched": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 1}, "grope": {"_count": 1}, "toward": {"_count": 2}, "caught": {"_count": 1}, "in": {"_count": 7}, "unconsciously": {"_count": 1}, "wearily": {"_count": 1}, "forcing": {"_count": 1}, "from": {"_count": 1}, "cautiously": {"_count": 1}}, "motorcycle": {"_count": 3, "overtook": {"_count": 1}, "said": {"_count": 1}, "maintenance": {"_count": 1}}, "dream": {"_count": 17, "about": {"_count": 1}, "": {"_count": 5}, "or": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 2}, "They": {"_count": 1}, "was": {"_count": 1}, "diary": {"_count": 1}, "quick": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}}, "gigantic": {"_count": 30, "beet": {"_count": 1}, "fist": {"_count": 1}, "tug": {"_count": 1}, "snake": {"_count": 4}, "pair": {"_count": 1}, "hairy": {"_count": 1}, "shaggy": {"_count": 1}, "stadium": {"_count": 1}, "blackboard": {"_count": 1}, "serpenttongued": {"_count": 1}, "silhouette": {"_count": 1}, "powderblue": {"_count": 1}, "bed": {"_count": 1}, "black": {"_count": 1}, "silver": {"_count": 1}, "merperson": {"_count": 1}, "spider": {"_count": 1}, "raspberry": {"_count": 1}, "poster": {"_count": 1}, "and": {"_count": 1}, "statue": {"_count": 1}, "cracked": {"_count": 1}, "labyrinth": {"_count": 1}, "ships": {"_count": 1}, "body": {"_count": 1}, "vase": {"_count": 1}, "pack": {"_count": 1}}, "mustache": {"_count": 3, "MOTORCYCLES": {"_count": 1}, "though": {"_count": 1}, "to": {"_count": 1}}, "way": {"_count": 58, "it": {"_count": 1}, "of": {"_count": 11}, "out": {"_count": 2}, "that": {"_count": 6}, "said": {"_count": 2}, "to": {"_count": 10}, "through": {"_count": 1}, "Snapes": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 4}, "Harry": {"_count": 2}, "and": {"_count": 1}, "into": {"_count": 2}, "around": {"_count": 5}, "because": {"_count": 1}, "as": {"_count": 1}, "after": {"_count": 1}, "HERMIONE": {"_count": 1}, "back": {"_count": 1}, "wizards": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 2}}, "cartoon": {"_count": 1, "they": {"_count": 1}}, "cheap": {"_count": 1, "lemon": {"_count": 1}}, "gorilla": {"_count": 2, "scratching": {"_count": 1}, "so": {"_count": 1}}, "long": {"_count": 258, "time": {"_count": 44}, "thin": {"_count": 7}, "shaggy": {"_count": 1}, "quill": {"_count": 1}, "pipe": {"_count": 1}, "counter": {"_count": 1}, "robe": {"_count": 1}, "line": {"_count": 4}, "white": {"_count": 1}, "tape": {"_count": 1}, "nose": {"_count": 1}, "hairy": {"_count": 1}, "crooked": {"_count": 1}, "roll": {"_count": 2}, "golden": {"_count": 2}, "gallery": {"_count": 1}, "tail": {"_count": 1}, "bit": {"_count": 1}, "moleskin": {"_count": 1}, "snout": {"_count": 1}, "reddish": {"_count": 1}, "drink": {"_count": 1}, "loud": {"_count": 1}, "shocked": {"_count": 1}, "nightdress": {"_count": 1}, "gulp": {"_count": 1}, "poker": {"_count": 1}, "coil": {"_count": 1}, "while": {"_count": 3}, "silence": {"_count": 7}, "low": {"_count": 3}, "table": {"_count": 1}, "succession": {"_count": 1}, "woolly": {"_count": 1}, "black": {"_count": 9}, "piercing": {"_count": 1}, "pause": {"_count": 10}, "and": {"_count": 8}, "hard": {"_count": 2}, "story": {"_count": 1}, "sharp": {"_count": 2}, "dreadful": {"_count": 1}, "threatening": {"_count": 1}, "talk": {"_count": 1}, "pinstriped": {"_count": 1}, "slow": {"_count": 3}, "one": {"_count": 1}, "chain": {"_count": 1}, "deep": {"_count": 1}, "paneled": {"_count": 1}, "dress": {"_count": 1}, "rattling": {"_count": 1}, "lacetrimmed": {"_count": 1}, "wailing": {"_count": 1}, "list": {"_count": 4}, "sigh": {"_count": 2}, "stick": {"_count": 1}, "way": {"_count": 11}, "sliver": {"_count": 1}, "journey": {"_count": 4}, "flowery": {"_count": 1}, "woolen": {"_count": 1}, "career": {"_count": 1}, "maroon": {"_count": 1}, "tear": {"_count": 1}, "staff": {"_count": 2}, "mane": {"_count": 3}, "draught": {"_count": 1}, "hand": {"_count": 1}, "yellow": {"_count": 1}, "length": {"_count": 1}, "acidgreen": {"_count": 1}, "silver": {"_count": 3}, "gray": {"_count": 1}, "green": {"_count": 2}, "rant": {"_count": 1}, "walk": {"_count": 1}, "straight": {"_count": 1}, "yellowish": {"_count": 1}, "sweeping": {"_count": 1}, "gloomy": {"_count": 1}, "wooden": {"_count": 1}, "highceilinged": {"_count": 1}, "sticky": {"_count": 1}, "package": {"_count": 1}, "overcoat": {"_count": 1}, "winded": {"_count": 1}, "trestle": {"_count": 1}, "wriggling": {"_count": 1}, "plait": {"_count": 2}, "blackandgold": {"_count": 1}, "smooth": {"_count": 1}, "memory": {"_count": 1}, "draft": {"_count": 2}, "day": {"_count": 1}, "moment": {"_count": 6}, "fake": {"_count": 1}, "lilac": {"_count": 1}, "distance": {"_count": 1}, "pale": {"_count": 1}, "ponytail": {"_count": 1}, "cylindrical": {"_count": 1}, "letter": {"_count": 1}, "rectangular": {"_count": 1}, "broken": {"_count": 1}, "bow": {"_count": 1}, "minutes": {"_count": 1}, "yawn": {"_count": 1}, "memo": {"_count": 1}, "billowing": {"_count": 1}, "spring": {"_count": 1}, "beaverskin": {"_count": 1}, "gap": {"_count": 1}, "corridor": {"_count": 1}, "clear": {"_count": 1}, "lost": {"_count": 1}, "tunnel": {"_count": 3}, "silky": {"_count": 1}, "explanation": {"_count": 1}, "long": {"_count": 1}, "pallid": {"_count": 1}, "twisted": {"_count": 1}, "full": {"_count": 1}, "skid": {"_count": 1}, "searching": {"_count": 1}, "string": {"_count": 1}, "purple": {"_count": 1}, "room": {"_count": 1}, "drawnout": {"_count": 1}, "sleep": {"_count": 1}, "drive": {"_count": 1}, "telescope": {"_count": 1}, "finger": {"_count": 1}, "shadow": {"_count": 1}}, "trash": {"_count": 2, "can": {"_count": 2}}, "cupboard": {"_count": 12, "as": {"_count": 1}, "under": {"_count": 2}, "in": {"_count": 2}, "wasnt": {"_count": 1}, "and": {"_count": 2}, "door": {"_count": 1}, "behind": {"_count": 1}, "or": {"_count": 1}, "up": {"_count": 1}}, "bedroom": {"_count": 3, "where": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 1}}, "level": {"_count": 7, "with": {"_count": 2}, "voice": {"_count": 2}, "of": {"_count": 2}, "Lupin": {"_count": 1}}, "look": {"_count": 95, "that": {"_count": 6}, "": {"_count": 6}, "Lee": {"_count": 1}, "at": {"_count": 14}, "of": {"_count": 49}, "around": {"_count": 2}, "Harry": {"_count": 1}, "said": {"_count": 2}, "in": {"_count": 5}, "with": {"_count": 1}, "from": {"_count": 1}, "inside": {"_count": 1}, "so": {"_count": 1}, "over": {"_count": 1}, "too": {"_count": 1}, "upon": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}}, "deafening": {"_count": 15, "shout": {"_count": 1}, "crash": {"_count": 1}, "BANG": {"_count": 1}, "groan": {"_count": 1}, "rumble": {"_count": 1}, "earsplitting": {"_count": 1}, "croak": {"_count": 1}, "grinding": {"_count": 1}, "clang": {"_count": 1}, "scream": {"_count": 1}, "bang": {"_count": 1}, "screeching": {"_count": 1}, "crack": {"_count": 1}, "shattering": {"_count": 1}, "blast": {"_count": 1}}, "low": {"_count": 79, "hissing": {"_count": 1}, "worried": {"_count": 1}, "voice": {"_count": 45}, "grunting": {"_count": 1}, "whisper": {"_count": 1}, "despairing": {"_count": 1}, "profile": {"_count": 1}, "faint": {"_count": 1}, "wall": {"_count": 1}, "serious": {"_count": 1}, "sneering": {"_count": 1}, "armchair": {"_count": 1}, "excited": {"_count": 1}, "moan": {"_count": 2}, "awed": {"_count": 1}, "wooden": {"_count": 1}, "soothing": {"_count": 1}, "and": {"_count": 3}, "gvoice": {"_count": 1}, "whistle": {"_count": 1}, "hoot": {"_count": 1}, "furious": {"_count": 1}, "dangerous": {"_count": 1}, "soft": {"_count": 1}, "table": {"_count": 1}, "rumbling": {"_count": 1}, "stone": {"_count": 1}, "groan": {"_count": 2}, "blow": {"_count": 1}, "fierce": {"_count": 1}, "chair": {"_count": 1}}, "cup": {"_count": 26, "of": {"_count": 21}, "o": {"_count": 2}, "from": {"_count": 1}, "being": {"_count": 1}, "or": {"_count": 1}}, "chair": {"_count": 55, "and": {"_count": 8}, "": {"_count": 7}, "by": {"_count": 2}, "behind": {"_count": 1}, "very": {"_count": 1}, "beside": {"_count": 9}, "next": {"_count": 1}, "And": {"_count": 1}, "in": {"_count": 4}, "feeling": {"_count": 1}, "furious": {"_count": 1}, "with": {"_count": 2}, "he": {"_count": 1}, "as": {"_count": 2}, "knocking": {"_count": 1}, "opposite": {"_count": 1}, "the": {"_count": 1}, "dragged": {"_count": 1}, "between": {"_count": 1}, "not": {"_count": 1}, "at": {"_count": 1}, "from": {"_count": 1}, "raise": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}, "leg": {"_count": 1}, "curled": {"_count": 1}, "He": {"_count": 1}}, "watch": {"_count": 6, "": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}, "very": {"_count": 1}, "when": {"_count": 1}}, "strange": {"_count": 24, "vision": {"_count": 1}, "and": {"_count": 2}, "gagging": {"_count": 1}, "mixture": {"_count": 1}, "rumbling": {"_count": 1}, "hissing": {"_count": 1}, "quiver": {"_count": 1}, "voice": {"_count": 1}, "story": {"_count": 1}, "angle": {"_count": 1}, "idea": {"_count": 1}, "dazed": {"_count": 1}, "desire": {"_count": 1}, "thing": {"_count": 1}, "dark": {"_count": 1}, "brass": {"_count": 1}, "thought": {"_count": 1}, "leaping": {"_count": 1}, "twinge": {"_count": 1}, "feathery": {"_count": 1}, "tongue": {"_count": 1}, "language": {"_count": 1}, "look": {"_count": 1}}, "blinding": {"_count": 8, "flash": {"_count": 3}, "dazzling": {"_count": 1}, "white": {"_count": 2}, "series": {"_count": 1}, "jagged": {"_count": 1}}, "burning": {"_count": 12, "pain": {"_count": 1}, "sensation": {"_count": 3}, "tent": {"_count": 1}, "red": {"_count": 1}, "prickling": {"_count": 1}, "desire": {"_count": 2}, "wardrobe": {"_count": 1}, "building": {"_count": 1}, "in": {"_count": 1}}, "bus": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "shelter": {"_count": 1}}, "word": {"_count": 91, "": {"_count": 16}, "to": {"_count": 7}, "of": {"_count": 15}, "you": {"_count": 2}, "not": {"_count": 1}, "Hermione": {"_count": 3}, "in": {"_count": 1}, "against": {"_count": 2}, "about": {"_count": 3}, "they": {"_count": 2}, "with": {"_count": 14}, "at": {"_count": 1}, "the": {"_count": 2}, "hes": {"_count": 1}, "Im": {"_count": 1}, "are": {"_count": 1}, "back": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 2}, "if": {"_count": 1}, "she": {"_count": 2}, "he": {"_count": 1}, "Snape": {"_count": 2}, "took": {"_count": 1}, "please": {"_count": 1}, "bent": {"_count": 1}, "all": {"_count": 1}, "sir": {"_count": 1}, "Harry": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 1}}, "closer": {"_count": 9, "look": {"_count": 8}, "watch": {"_count": 1}}, "tiny": {"_count": 67, "ray": {"_count": 1}, "grubbylooking": {"_count": 1}, "golden": {"_count": 3}, "place": {"_count": 1}, "dark": {"_count": 1}, "little": {"_count": 5}, "junk": {"_count": 1}, "silver": {"_count": 2}, "wrinkled": {"_count": 1}, "bottle": {"_count": 1}, "light": {"_count": 1}, "snake": {"_count": 1}, "brass": {"_count": 1}, "hint": {"_count": 1}, "landing": {"_count": 1}, "winged": {"_count": 1}, "speck": {"_count": 1}, "island": {"_count": 2}, "sparkling": {"_count": 1}, "owl": {"_count": 1}, "creature": {"_count": 1}, "limp": {"_count": 1}, "pop": {"_count": 3}, "perfect": {"_count": 1}, "black": {"_count": 1}, "note": {"_count": 1}, "nod": {"_count": 1}, "wink": {"_count": 1}, "click": {"_count": 1}, "sigh": {"_count": 1}, "scuffing": {"_count": 1}, "jewelbright": {"_count": 1}, "oh": {"_count": 1}, "patch": {"_count": 1}, "sitting": {"_count": 1}, "frown": {"_count": 1}, "bit": {"_count": 1}, "fist": {"_count": 1}, "shriek": {"_count": 1}, "hole": {"_count": 1}, "thing": {"_count": 1}, "jerk": {"_count": 2}, "boat": {"_count": 1}, "announcement": {"_count": 1}, "flick": {"_count": 1}, "broom": {"_count": 1}, "wispy": {"_count": 1}, "metal": {"_count": 1}, "part": {"_count": 2}, "nervous": {"_count": 1}, "version": {"_count": 1}, "body": {"_count": 1}, "baby": {"_count": 1}, "gap": {"_count": 1}, "groan": {"_count": 1}}, "horrible": {"_count": 53, "smell": {"_count": 1}, "mistake": {"_count": 1}, "yell": {"_count": 1}, "jolt": {"_count": 3}, "ghost": {"_count": 1}, "sight": {"_count": 1}, "scene": {"_count": 1}, "forced": {"_count": 1}, "lurch": {"_count": 1}, "melting": {"_count": 1}, "somersault": {"_count": 1}, "prospect": {"_count": 1}, "image": {"_count": 1}, "mess": {"_count": 1}, "squelching": {"_count": 1}, "smile": {"_count": 1}, "feeling": {"_count": 1}, "accident": {"_count": 1}, "crack": {"_count": 1}, "sort": {"_count": 1}, "mirthless": {"_count": 1}, "gagging": {"_count": 1}, "great": {"_count": 1}, "reputation": {"_count": 1}, "experience": {"_count": 1}, "noise": {"_count": 1}, "roaring": {"_count": 1}, "expression": {"_count": 1}, "manic": {"_count": 1}, "squealing": {"_count": 1}, "earsplitting": {"_count": 1}, "sinking": {"_count": 1}, "pink": {"_count": 1}, "smirk": {"_count": 1}, "spattering": {"_count": 1}, "pang": {"_count": 1}, "plummeting": {"_count": 1}, "skin": {"_count": 1}, "abruptness": {"_count": 1}, "mockbaby": {"_count": 1}, "and": {"_count": 1}, "incident": {"_count": 1}, "swelling": {"_count": 1}, "screech": {"_count": 1}, "dream": {"_count": 1}, "drawnout": {"_count": 1}, "book": {"_count": 1}, "vase": {"_count": 1}, "mixture": {"_count": 1}, "strangled": {"_count": 1}, "thing": {"_count": 1}}, "question": {"_count": 33, "": {"_count": 5}, "Oliver": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 3}, "Potter": {"_count": 1}, "of": {"_count": 11}, "I": {"_count": 1}, "he": {"_count": 3}, "in": {"_count": 1}, "which": {"_count": 1}, "for": {"_count": 1}, "burning": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "Severus": {"_count": 1}}, "postcard": {"_count": 1, "from": {"_count": 1}}, "brown": {"_count": 3, "envelope": {"_count": 1}, "owl": {"_count": 1}, "tuft": {"_count": 1}}, "bill": {"_count": 1, "and": {"_count": 1}}, "giant": {"_count": 27, "elastic": {"_count": 1}, "called": {"_count": 1}, "tarantula": {"_count": 1}, "threeheaded": {"_count": 1}, "squid": {"_count": 1}, "drain": {"_count": 1}, "serpent": {"_count": 1}, "forefinger": {"_count": 1}, "rabbit": {"_count": 1}, "rubber": {"_count": 1}, "hand": {"_count": 1}, "sea": {"_count": 1}, "plug": {"_count": 1}, "scorpion": {"_count": 1}, "marshmallow": {"_count": 1}, "toad": {"_count": 1}, "camp": {"_count": 1}, "": {"_count": 1}, "snake": {"_count": 1}, "ony": {"_count": 1}, "theyre": {"_count": 1}, "admonitory": {"_count": 1}, "spider": {"_count": 1}, "beachballsized": {"_count": 1}, "bird": {"_count": 1}, "rook": {"_count": 1}, "pepper": {"_count": 1}}, "coat": {"_count": 5, "of": {"_count": 3}, "hanger": {"_count": 1}, "he": {"_count": 1}}, "lion": {"_count": 1, "an": {"_count": 1}}, "badger": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}, "engraved": {"_count": 1}}, "snake": {"_count": 25, "surrounding": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 3}, "and": {"_count": 5}, "on": {"_count": 2}, "before": {"_count": 1}, "beside": {"_count": 1}, "protruding": {"_count": 1}, "I": {"_count": 1}, "inside": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 1}, "rearing": {"_count": 1}, "coiling": {"_count": 1}, "that": {"_count": 1}}, "set": {"_count": 18, "of": {"_count": 17}, "No": {"_count": 1}}, "choking": {"_count": 2, "noise": {"_count": 2}}, "furious": {"_count": 10, "but": {"_count": 1}, "snowball": {"_count": 1}, "tirade": {"_count": 1}, "pounding": {"_count": 1}, "glance": {"_count": 1}, "battle": {"_count": 1}, "look": {"_count": 2}, "whisper": {"_count": 1}, "desire": {"_count": 1}}, "quivering": {"_count": 1, "voice": {"_count": 1}}, "mistake": {"_count": 30, "said": {"_count": 5}, "": {"_count": 8}, "and": {"_count": 1}, "gasping": {"_count": 1}, "but": {"_count": 1}, "thats": {"_count": 1}, "KEEP": {"_count": 1}, "anyone": {"_count": 1}, "she": {"_count": 2}, "wiz": {"_count": 1}, "in": {"_count": 1}, "hed": {"_count": 1}, "because": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 2}, "for": {"_count": 1}, "sir": {"_count": 1}}, "smile": {"_count": 25, "which": {"_count": 1}, "": {"_count": 11}, "but": {"_count": 3}, "in": {"_count": 2}, "I": {"_count": 1}, "saw": {"_count": 1}, "stretching": {"_count": 1}, "spreading": {"_count": 1}, "this": {"_count": 1}, "during": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}}, "parrot": {"_count": 1, "that": {"_count": 1}}, "real": {"_count": 62, "air": {"_count": 1}, "live": {"_count": 1}, "spell": {"_count": 1}, "shock": {"_count": 2}, "present": {"_count": 1}, "emergency": {"_count": 1}, "snake": {"_count": 1}, "witch": {"_count": 1}, "problem": {"_count": 1}, "Muggle": {"_count": 1}, "treat": {"_count": 2}, "injury": {"_count": 1}, "Firebolt": {"_count": 2}, "dementor": {"_count": 3}, "prediction": {"_count": 2}, "pleasure": {"_count": 1}, "breakfast": {"_count": 1}, "post": {"_count": 1}, "mess": {"_count": 2}, "one": {"_count": 1}, "stroke": {"_count": 1}, "idiot": {"_count": 1}, "help": {"_count": 1}, "job": {"_count": 1}, "rival": {"_count": 1}, "blow": {"_count": 1}, "note": {"_count": 1}, "wizard": {"_count": 1}, "eye": {"_count": 1}, "asset": {"_count": 1}, "whiner": {"_count": 1}, "old": {"_count": 1}, "duel": {"_count": 1}, "chunk": {"_count": 1}, "improvement": {"_count": 1}, "place": {"_count": 1}, "prat": {"_count": 1}, "hero": {"_count": 1}, "temper": {"_count": 1}, "scream": {"_count": 1}, "fight": {"_count": 1}, "flair": {"_count": 1}, "set": {"_count": 1}, "effort": {"_count": 1}, "doss": {"_count": 1}, "potionmaker": {"_count": 1}, "treasure": {"_count": 1}, "": {"_count": 1}, "comfort": {"_count": 1}, "charmer": {"_count": 1}, "plan": {"_count": 2}, "knack": {"_count": 1}, "symbol": {"_count": 1}, "tunnel": {"_count": 1}}, "shelf": {"_count": 7, "with": {"_count": 1}, "full": {"_count": 1}, "behind": {"_count": 3}, "": {"_count": 1}, "out": {"_count": 1}}, "strangled": {"_count": 7, "cry": {"_count": 1}, "cheer": {"_count": 1}, "yell": {"_count": 1}, "sort": {"_count": 1}, "voice": {"_count": 2}, "sob": {"_count": 1}}, "minute": {"_count": 73, "of": {"_count": 1}, "": {"_count": 11}, "later": {"_count": 6}, "or": {"_count": 20}, "I": {"_count": 3}, "said": {"_count": 2}, "in": {"_count": 2}, "Ron": {"_count": 1}, "almost": {"_count": 1}, "soo": {"_count": 1}, "neither": {"_count": 1}, "Petunia": {"_count": 1}, "before": {"_count": 2}, "inside": {"_count": 1}, "He": {"_count": 1}, "But": {"_count": 1}, "he": {"_count": 2}, "owl": {"_count": 1}, "off": {"_count": 1}, "lamp": {"_count": 1}, "sit": {"_count": 1}, "however": {"_count": 1}, "Hermione": {"_count": 1}, "to": {"_count": 1}, "still": {"_count": 1}, "all": {"_count": 1}, "though": {"_count": 1}, "into": {"_count": 1}, "watching": {"_count": 1}, "was": {"_count": 1}, "er": {"_count": 1}, "that": {"_count": 1}, "Greyback": {"_count": 1}}, "plan": {"_count": 16, "": {"_count": 5}, "where": {"_count": 1}, "fully": {"_count": 1}, "worked": {"_count": 1}, "based": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 1}, "again": {"_count": 1}, "of": {"_count": 1}, "stop": {"_count": 1}, "we": {"_count": 1}}, "sleeping": {"_count": 5, "bag": {"_count": 2}, "potion": {"_count": 1}, "dragon": {"_count": 1}, "portrait": {"_count": 1}}, "mouthful": {"_count": 10, "of": {"_count": 8}, "onto": {"_count": 1}, "": {"_count": 1}}, "nail": {"_count": 1, "with": {"_count": 1}}, "hammer": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 108, "": {"_count": 27}, "but": {"_count": 4}, "before": {"_count": 7}, "if": {"_count": 2}, "to": {"_count": 5}, "and": {"_count": 2}, "for": {"_count": 1}, "now": {"_count": 3}, "there": {"_count": 2}, "said": {"_count": 3}, "thinking": {"_count": 3}, "they": {"_count": 1}, "Stan": {"_count": 1}, "since": {"_count": 2}, "frowning": {"_count": 1}, "she": {"_count": 1}, "watching": {"_count": 1}, "turning": {"_count": 1}, "brandishing": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 3}, "he": {"_count": 5}, "will": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 2}, "as": {"_count": 1}, "it": {"_count": 1}, "gazing": {"_count": 1}, "when": {"_count": 2}, "then": {"_count": 2}, "dropped": {"_count": 1}, "Dean": {"_count": 1}, "not": {"_count": 1}, "that": {"_count": 1}, "about": {"_count": 2}, "Rons": {"_count": 1}, "Madam": {"_count": 1}, "in": {"_count": 1}, "after": {"_count": 1}, "Dumbledore": {"_count": 1}, "Mr": {"_count": 1}, "muttered": {"_count": 1}, "Ron": {"_count": 1}, "except": {"_count": 1}, "Harry": {"_count": 2}, "finally": {"_count": 1}, "from": {"_count": 1}, "exhausted": {"_count": 1}}, "bad": {"_count": 51, "day": {"_count": 1}, "name": {"_count": 1}, "mind": {"_count": 1}, "feeling": {"_count": 2}, "case": {"_count": 3}, "sunburn": {"_count": 1}, "mood": {"_count": 6}, "turnout": {"_count": 1}, "thing": {"_count": 1}, "way": {"_count": 1}, "egg": {"_count": 1}, "bout": {"_count": 1}, "hippogriff": {"_count": 1}, "idea": {"_count": 2}, "elf": {"_count": 1}, "wizard": {"_count": 2}, "Engorgement": {"_count": 1}, "bite": {"_count": 3}, "liar": {"_count": 1}, "joke": {"_count": 1}, "dream": {"_count": 1}, "journey": {"_count": 1}, "reputation": {"_count": 1}, "lesson": {"_count": 1}, "head": {"_count": 2}, "job": {"_count": 4}, "one": {"_count": 1}, "loser": {"_count": 1}, "boy": {"_count": 2}, "night": {"_count": 1}, "enough": {"_count": 2}, "habit": {"_count": 1}, "little": {"_count": 1}}, "gloomy": {"_count": 6, "looking": {"_count": 1}, "goodbye": {"_count": 1}, "voice": {"_count": 1}, "underground": {"_count": 1}, "passageway": {"_count": 1}, "highceilinged": {"_count": 1}}, "room": {"_count": 27, "with": {"_count": 4}, "as": {"_count": 2}, "full": {"_count": 1}, "": {"_count": 2}, "here": {"_count": 1}, "for": {"_count": 1}, "a": {"_count": 2}, "in": {"_count": 3}, "at": {"_count": 1}, "into": {"_count": 1}, "like": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 3}, "nearby": {"_count": 1}, "above": {"_count": 1}, "the": {"_count": 1}, "only": {"_count": 1}}, "grab": {"_count": 3, "for": {"_count": 3}}, "forest": {"_count": 8, "got": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}, "clearing": {"_count": 2}, "of": {"_count": 1}, "floor": {"_count": 1}, "pool": {"_count": 1}}, "plowed": {"_count": 1, "field": {"_count": 1}}, "suspension": {"_count": 1, "bridge": {"_count": 1}}, "multilevel": {"_count": 1, "parking": {"_count": 1}}, "television": {"_count": 2, "": {"_count": 1}, "aerial": {"_count": 1}}, "chilly": {"_count": 2, "wind": {"_count": 1}, "morning": {"_count": 1}}, "fire": {"_count": 14, "but": {"_count": 1}, "": {"_count": 3}, "sprang": {"_count": 1}, "crackling": {"_count": 1}, "beneath": {"_count": 1}, "Harry": {"_count": 1}, "burst": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 1}, "underneath": {"_count": 2}}, "chance": {"_count": 47, "of": {"_count": 6}, "to": {"_count": 14}, "": {"_count": 9}, "against": {"_count": 1}, "Ill": {"_count": 1}, "boys": {"_count": 1}, "said": {"_count": 2}, "many": {"_count": 1}, "for": {"_count": 2}, "they": {"_count": 2}, "that": {"_count": 2}, "theyll": {"_count": 1}, "ter": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 2}}, "storm": {"_count": 7, "to": {"_count": 1}, "of": {"_count": 4}, "": {"_count": 1}, "once": {"_count": 1}}, "fierce": {"_count": 4, "wind": {"_count": 1}, "voice": {"_count": 1}, "battle": {"_count": 1}, "full": {"_count": 1}}, "bed": {"_count": 10, "for": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "opposite": {"_count": 1}, "anyway": {"_count": 1}, "near": {"_count": 1}, "in": {"_count": 1}}, "crash": {"_count": 19, "behind": {"_count": 1}, "that": {"_count": 2}, "he": {"_count": 2}, "of": {"_count": 1}, "in": {"_count": 2}, "spilling": {"_count": 1}, "and": {"_count": 2}, "outside": {"_count": 1}, "on": {"_count": 2}, "between": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 3}}, "rifle": {"_count": 1, "in": {"_count": 1}}, "pause": {"_count": 36, "": {"_count": 11}, "Hermione": {"_count": 1}, "and": {"_count": 4}, "in": {"_count": 8}, "then": {"_count": 3}, "during": {"_count": 2}, "while": {"_count": 5}, "at": {"_count": 1}, "but": {"_count": 1}}, "man": {"_count": 73, "was": {"_count": 3}, "or": {"_count": 1}, "with": {"_count": 9}, "to": {"_count": 3}, "": {"_count": 10}, "who": {"_count": 10}, "sitting": {"_count": 1}, "enter": {"_count": 1}, "called": {"_count": 3}, "at": {"_count": 2}, "but": {"_count": 1}, "why": {"_count": 1}, "Muggle": {"_count": 1}, "staggered": {"_count": 1}, "tall": {"_count": 1}, "so": {"_count": 1}, "lying": {"_count": 1}, "struggling": {"_count": 1}, "reaching": {"_count": 1}, "pulling": {"_count": 1}, "lay": {"_count": 1}, "in": {"_count": 3}, "kneeling": {"_count": 1}, "joined": {"_count": 1}, "sat": {"_count": 1}, "yelled": {"_count": 1}, "lunged": {"_count": 1}, "Tom": {"_count": 1}, "named": {"_count": 1}, "alive": {"_count": 1}, "could": {"_count": 1}, "whom": {"_count": 1}, "of": {"_count": 1}, "would": {"_count": 1}, "trying": {"_count": 1}, "eager": {"_count": 1}, "he": {"_count": 1}, "against": {"_count": 1}}, "wild": {"_count": 10, "tangled": {"_count": 1}, "jerk": {"_count": 1}, "snatch": {"_count": 1}, "look": {"_count": 1}, "escape": {"_count": 1}, "howling": {"_count": 1}, "blustery": {"_count": 1}, "boars": {"_count": 1}, "little": {"_count": 1}, "happiness": {"_count": 1}}, "knot": {"_count": 7, "as": {"_count": 1}, "of": {"_count": 4}, "on": {"_count": 2}}, "corner": {"_count": 76, "of": {"_count": 13}, "drinking": {"_count": 1}, "": {"_count": 13}, "next": {"_count": 1}, "and": {"_count": 16}, "into": {"_count": 3}, "cabinet": {"_count": 1}, "now": {"_count": 1}, "devoted": {"_count": 1}, "where": {"_count": 2}, "then": {"_count": 1}, "he": {"_count": 2}, "attempting": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 1}, "on": {"_count": 1}, "conversing": {"_count": 1}, "walked": {"_count": 2}, "with": {"_count": 1}, "weve": {"_count": 1}, "stood": {"_count": 1}, "looking": {"_count": 1}, "staring": {"_count": 1}, "passing": {"_count": 1}, "cupboard": {"_count": 1}, "muttering": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "wringing": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "seat": {"_count": 1}}, "mouse": {"_count": 5, "being": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "skittering": {"_count": 1}}, "slightly": {"_count": 30, "squashed": {"_count": 1}, "softened": {"_count": 1}, "hurt": {"_count": 1}, "twisted": {"_count": 1}, "choked": {"_count": 1}, "suspicious": {"_count": 1}, "overblown": {"_count": 1}, "deeper": {"_count": 1}, "awkward": {"_count": 1}, "more": {"_count": 1}, "malicious": {"_count": 1}, "nervous": {"_count": 1}, "mournful": {"_count": 1}, "Mundunguslike": {"_count": 1}, "bitter": {"_count": 1}, "apologetic": {"_count": 1}, "mocking": {"_count": 1}, "hoarse": {"_count": 1}, "damp": {"_count": 1}, "abashed": {"_count": 1}, "sweaty": {"_count": 1}, "exasperated": {"_count": 1}, "random": {"_count": 1}, "singsong": {"_count": 1}, "shinier": {"_count": 1}, "lower": {"_count": 1}, "flattened": {"_count": 1}, "dazed": {"_count": 1}, "trembling": {"_count": 1}, "cocky": {"_count": 1}}, "roaring": {"_count": 4, "fire": {"_count": 2}, "trade": {"_count": 2}}, "hot": {"_count": 5, "bath": {"_count": 1}, "surge": {"_count": 1}, "sick": {"_count": 1}, "desk": {"_count": 1}, "meal": {"_count": 1}}, "copper": {"_count": 3, "kettle": {"_count": 3}}, "squashy": {"_count": 2, "package": {"_count": 1}, "chintz": {"_count": 1}}, "poker": {"_count": 1, "a": {"_count": 1}}, "teapot": {"_count": 4, "several": {"_count": 1}, "into": {"_count": 1}, "cups": {"_count": 1}, "": {"_count": 1}}, "bottle": {"_count": 27, "of": {"_count": 21}, "twelve": {"_count": 1}, "being": {"_count": 1}, "onto": {"_count": 1}, "with": {"_count": 1}, "or": {"_count": 1}, "disappear": {"_count": 1}}, "swig": {"_count": 6, "from": {"_count": 3}, "of": {"_count": 2}, "": {"_count": 1}}, "thing": {"_count": 25, "while": {"_count": 1}, "like": {"_count": 1}, "arrived": {"_count": 1}, "before": {"_count": 2}, "he": {"_count": 1}, "had": {"_count": 1}, "that": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 8}, "so": {"_count": 1}, "to": {"_count": 2}, "all": {"_count": 1}, "He": {"_count": 3}, "since": {"_count": 1}}, "gulp": {"_count": 4, "of": {"_count": 3}, "and": {"_count": 1}}, "bewildered": {"_count": 1, "stare": {"_count": 1}}, "gasp": {"_count": 10, "of": {"_count": 4}, "from": {"_count": 1}, "looked": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "wizard": {"_count": 73, "": {"_count": 16}, "why": {"_count": 1}, "eh": {"_count": 1}, "you": {"_count": 1}, "or": {"_count": 2}, "did": {"_count": 1}, "cracker": {"_count": 1}, "a": {"_count": 2}, "fresh": {"_count": 1}, "in": {"_count": 3}, "like": {"_count": 4}, "house": {"_count": 1}, "buying": {"_count": 1}, "doesnt": {"_count": 1}, "A": {"_count": 1}, "got": {"_count": 1}, "on": {"_count": 1}, "of": {"_count": 2}, "goes": {"_count": 1}, "and": {"_count": 1}, "whod": {"_count": 1}, "family": {"_count": 1}, "who": {"_count": 7}, "it": {"_count": 1}, "with": {"_count": 3}, "near": {"_count": 1}, "see": {"_count": 1}, "could": {"_count": 1}, "said": {"_count": 2}, "lying": {"_count": 1}, "too": {"_count": 1}, "not": {"_count": 1}, "that": {"_count": 1}, "such": {"_count": 2}, "the": {"_count": 1}, "whose": {"_count": 1}, "work": {"_count": 1}, "sitting": {"_count": 1}, "he": {"_count": 1}, "though": {"_count": 1}}, "what": {"_count": 2, "": {"_count": 2}}, "thumpin": {"_count": 1, "goodun": {"_count": 1}}, "mum": {"_count": 1, "an": {"_count": 1}}, "list": {"_count": 11, "of": {"_count": 8}, "there": {"_count": 1}, "tacked": {"_count": 1}, "": {"_count": 1}}, "cart": {"_count": 4, "horse": {"_count": 1}, "and": {"_count": 1}, "piled": {"_count": 1}, "full": {"_count": 1}}, "roll": {"_count": 12, "of": {"_count": 10}, "": {"_count": 2}}, "note": {"_count": 34, "that": {"_count": 1}, "onto": {"_count": 1}, "": {"_count": 4}, "pinned": {"_count": 1}, "clamped": {"_count": 1}, "to": {"_count": 6}, "telling": {"_count": 1}, "explaining": {"_count": 1}, "of": {"_count": 12}, "clutched": {"_count": 1}, "for": {"_count": 1}, "on": {"_count": 2}, "added": {"_count": 1}, "signed": {"_count": 1}}, "family": {"_count": 12, "o": {"_count": 1}, "joke": {"_count": 1}, "owl": {"_count": 1}, "vehicle": {"_count": 1}, "of": {"_count": 3}, "was": {"_count": 1}, "member": {"_count": 1}, "friend": {"_count": 1}, "group": {"_count": 1}, "": {"_count": 1}}, "stop": {"_count": 8, "to": {"_count": 5}, "with": {"_count": 1}, "right": {"_count": 1}, "unless": {"_count": 1}}, "a": {"_count": 19, "wizard": {"_count": 1}, "something": {"_count": 1}, "a": {"_count": 1}, "ten": {"_count": 1}, "barmy": {"_count": 1}, "kind": {"_count": 1}, "chat": {"_count": 1}, "savingpeoplething": {"_count": 1}, "friend": {"_count": 1}, "nasty": {"_count": 1}, "problem": {"_count": 1}, "bit": {"_count": 1}, "real": {"_count": 1}, "fan": {"_count": 1}, "jinx": {"_count": 1}, "He": {"_count": 1}, "Ministryloving": {"_count": 1}, "Her": {"_count": 1}, "freak": {"_count": 1}}, "freak": {"_count": 5, "": {"_count": 2}, "accident": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}}, "witch": {"_count": 42, "in": {"_count": 3}, "an": {"_count": 1}, "and": {"_count": 4}, "til": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 7}, "sprouting": {"_count": 1}, "Harry": {"_count": 2}, "or": {"_count": 2}, "leapt": {"_count": 1}, "sitting": {"_count": 1}, "halfway": {"_count": 1}, "who": {"_count": 3}, "from": {"_count": 1}, "with": {"_count": 4}, "a": {"_count": 1}, "but": {"_count": 1}, "any": {"_count": 1}, "if": {"_count": 1}, "however": {"_count": 1}, "as": {"_count": 1}, "sir": {"_count": 1}, "let": {"_count": 1}, "whispered": {"_count": 1}}, "deep": {"_count": 90, "breath": {"_count": 39}, "purple": {"_count": 1}, "sorrowful": {"_count": 1}, "bow": {"_count": 4}, "pink": {"_count": 1}, "stupor": {"_count": 1}, "rattling": {"_count": 1}, "paddling": {"_count": 1}, "loud": {"_count": 1}, "sniff": {"_count": 1}, "steadying": {"_count": 3}, "swig": {"_count": 1}, "sigh": {"_count": 6}, "booming": {"_count": 1}, "voice": {"_count": 5}, "bloodred": {"_count": 1}, "amused": {"_count": 1}, "reverie": {"_count": 1}, "clear": {"_count": 1}, "hoarse": {"_count": 1}, "pocket": {"_count": 1}, "shuddering": {"_count": 2}, "sleep": {"_count": 1}, "slow": {"_count": 1}, "pull": {"_count": 1}, "dramatic": {"_count": 1}, "thundery": {"_count": 1}, "male": {"_count": 1}, "rumbling": {"_count": 1}, "gonglike": {"_count": 1}, "well": {"_count": 2}, "grave": {"_count": 1}, "cut": {"_count": 2}, "valley": {"_count": 1}, "calming": {"_count": 1}}, "dirty": {"_count": 6, "look": {"_count": 1}, "great": {"_count": 1}, "brownish": {"_count": 1}, "river": {"_count": 1}, "yellow": {"_count": 1}, "stone": {"_count": 1}}, "person": {"_count": 16, "called": {"_count": 1}, "a": {"_count": 1}, "eat": {"_count": 1}, "marked": {"_count": 1}, "ten": {"_count": 1}, "who": {"_count": 1}, "to": {"_count": 1}, "than": {"_count": 1}, "can": {"_count": 1}, "bled": {"_count": 1}, "shakes": {"_count": 1}, "or": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "has": {"_count": 1}, "without": {"_count": 1}}, "year": {"_count": 48, "old": {"_count": 4}, "off": {"_count": 1}, "it": {"_count": 1}, "ago": {"_count": 6}, "before": {"_count": 3}, "since": {"_count": 2}, "Thatll": {"_count": 1}, "": {"_count": 10}, "older": {"_count": 1}, "now": {"_count": 1}, "after": {"_count": 4}, "left": {"_count": 1}, "later": {"_count": 2}, "out": {"_count": 1}, "And": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 2}, "or": {"_count": 1}, "previously": {"_count": 1}, "and": {"_count": 1}}, "sound": {"_count": 28, "like": {"_count": 4}, "of": {"_count": 7}, "": {"_count": 9}, "throughout": {"_count": 1}, "except": {"_count": 1}, "nor": {"_count": 1}, "Harry": {"_count": 1}, "escaped": {"_count": 1}, "even": {"_count": 1}, "from": {"_count": 1}, "walked": {"_count": 1}}, "foghorn": {"_count": 2, "": {"_count": 1}, "behind": {"_count": 1}}, "clean": {"_count": 5, "job": {"_count": 1}, "game": {"_count": 1}, "record": {"_count": 1}, "glass": {"_count": 1}, "gaping": {"_count": 1}}, "powerful": {"_count": 29, "evil": {"_count": 1}, "magical": {"_count": 2}, "Dark": {"_count": 1}, "kind": {"_count": 1}, "restorative": {"_count": 1}, "whack": {"_count": 1}, "countercharm": {"_count": 1}, "wizard": {"_count": 1}, "wind": {"_count": 1}, "bit": {"_count": 1}, "rush": {"_count": 1}, "emotion": {"_count": 1}, "jerk": {"_count": 1}, "incursion": {"_count": 1}, "smell": {"_count": 1}, "impact": {"_count": 1}, "wave": {"_count": 1}, "factor": {"_count": 1}, "infatuation": {"_count": 1}, "aged": {"_count": 1}, "curse": {"_count": 1}, "pull": {"_count": 1}, "enchantment": {"_count": 1}, "whiff": {"_count": 1}, "light": {"_count": 1}, "mixture": {"_count": 1}, "blow": {"_count": 1}, "wand": {"_count": 1}}, "close": {"_count": 18, "he": {"_count": 1}, "thing": {"_count": 1}, "enough": {"_count": 1}, "watch": {"_count": 2}, "eye": {"_count": 3}, "friendship": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}, "embrace": {"_count": 2}, "personal": {"_count": 1}, "relationship": {"_count": 1}, "bond": {"_count": 1}, "friend": {"_count": 1}}, "high": {"_count": 34, "cold": {"_count": 11}, "security": {"_count": 1}, "mountain": {"_count": 1}, "petrified": {"_count": 1}, "voice": {"_count": 4}, "wind": {"_count": 3}, "arc": {"_count": 1}, "pitched": {"_count": 3}, "collar": {"_count": 1}, "fence": {"_count": 1}, "girlish": {"_count": 1}, "outcrop": {"_count": 1}, "neatly": {"_count": 1}, "clear": {"_count": 1}, "bun": {"_count": 1}, "shelf": {"_count": 1}, "forehead": {"_count": 1}}, "sticky": {"_count": 3, "end": {"_count": 1}, "purpleand": {"_count": 1}, "moment": {"_count": 1}}, "battered": {"_count": 3, "pink": {"_count": 1}, "door": {"_count": 1}, "old": {"_count": 1}}, "sword": {"_count": 11, "he": {"_count": 1}, "": {"_count": 4}, "fight": {"_count": 1}, "right": {"_count": 1}, "in": {"_count": 1}, "hilt": {"_count": 1}, "with": {"_count": 1}, "stroke": {"_count": 1}}, "bearded": {"_count": 1, "giant": {"_count": 1}}, "football": {"_count": 2, "": {"_count": 1}, "field": {"_count": 1}}, "boa": {"_count": 2, "constrictor": {"_count": 2}}, "fight": {"_count": 20, "": {"_count": 9}, "between": {"_count": 1}, "right": {"_count": 1}, "with": {"_count": 2}, "was": {"_count": 1}, "broke": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 1}, "down": {"_count": 1}, "of": {"_count": 1}}, "flash": {"_count": 32, "of": {"_count": 30}, "": {"_count": 1}, "while": {"_count": 1}}, "firecracker": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "curly": {"_count": 2, "pigs": {"_count": 2}}, "hole": {"_count": 13, "in": {"_count": 10}, "right": {"_count": 1}, "opened": {"_count": 1}, "behind": {"_count": 1}}, "sideways": {"_count": 4, "look": {"_count": 2}, "glance": {"_count": 2}}, "school": {"_count": 25, "for": {"_count": 4}, "report": {"_count": 1}, "": {"_count": 2}, "rule": {"_count": 1}, "prefect": {"_count": 2}, "treat": {"_count": 1}, "governor": {"_count": 1}, "she": {"_count": 1}, "year": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 1}, "champion": {"_count": 2}, "owl": {"_count": 1}, "not": {"_count": 1}, "corridor": {"_count": 1}, "called": {"_count": 1}, "of": {"_count": 1}, "where": {"_count": 1}, "famous": {"_count": 1}}, "loud": {"_count": 116, "tapping": {"_count": 1}, "crunching": {"_count": 1}, "Oooooh": {"_count": 1}, "hissing": {"_count": 2}, "blast": {"_count": 1}, "puffing": {"_count": 1}, "bark": {"_count": 1}, "hooting": {"_count": 1}, "clatter": {"_count": 1}, "thump": {"_count": 3}, "clunk": {"_count": 6}, "voice": {"_count": 9}, "crack": {"_count": 10}, "bang": {"_count": 13}, "smack": {"_count": 1}, "ripping": {"_count": 1}, "and": {"_count": 6}, "knock": {"_count": 2}, "clicking": {"_count": 1}, "outbreak": {"_count": 1}, "long": {"_count": 1}, "snort": {"_count": 2}, "crunch": {"_count": 1}, "ow": {"_count": 1}, "explosive": {"_count": 1}, "sleepy": {"_count": 1}, "scraping": {"_count": 1}, "popping": {"_count": 2}, "whistle": {"_count": 1}, "whisper": {"_count": 2}, "splash": {"_count": 1}, "wet": {"_count": 1}, "harsh": {"_count": 1}, "thud": {"_count": 1}, "creak": {"_count": 1}, "hammering": {"_count": 1}, "squeak": {"_count": 1}, "squawk": {"_count": 1}, "tutting": {"_count": 1}, "noise": {"_count": 1}, "snapping": {"_count": 1}, "false": {"_count": 1}, "sizzling": {"_count": 1}, "meow": {"_count": 1}, "cry": {"_count": 1}, "conversation": {"_count": 1}, "slamming": {"_count": 1}, "crude": {"_count": 1}, "screech": {"_count": 1}, "click": {"_count": 1}, "twittering": {"_count": 1}, "shout": {"_count": 1}, "carrying": {"_count": 1}, "wailing": {"_count": 1}, "BANG": {"_count": 3}, "rasping": {"_count": 1}, "crash": {"_count": 1}, "tinkle": {"_count": 1}, "clang": {"_count": 2}, "giggle": {"_count": 1}, "yell": {"_count": 1}, "squeal": {"_count": 1}, "splintering": {"_count": 1}, "cackle": {"_count": 1}, "creaking": {"_count": 1}, "rattle": {"_count": 1}, "ringing": {"_count": 1}}, "newspaper": {"_count": 5, "held": {"_count": 1}, "clipping": {"_count": 2}, "though": {"_count": 1}, "for": {"_count": 1}}, "handful": {"_count": 17, "of": {"_count": 17}}, "puncture": {"_count": 1, "": {"_count": 1}}, "sausage": {"_count": 3, "theyre": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}}, "matter": {"_count": 50, "o": {"_count": 3}, "of": {"_count": 43}, "that": {"_count": 1}, "for": {"_count": 1}, "between": {"_count": 1}, "to": {"_count": 1}}, "shame": {"_count": 6, "ter": {"_count": 1}, "but": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 2}, "to": {"_count": 1}}, "Ministry": {"_count": 16, "of": {"_count": 7}, "wizard": {"_count": 1}, "Bill": {"_count": 1}, "insider": {"_count": 2}, "inspection": {"_count": 1}, "will": {"_count": 1}, "employee": {"_count": 1}, "official": {"_count": 2}}, "dragon": {"_count": 31, "": {"_count": 9}, "but": {"_count": 1}, "he": {"_count": 1}, "hatching": {"_count": 1}, "bite": {"_count": 1}, "trying": {"_count": 1}, "and": {"_count": 3}, "dealer": {"_count": 1}, "would": {"_count": 1}, "a": {"_count": 2}, "egg": {"_count": 1}, "in": {"_count": 1}, "killer": {"_count": 1}, "for": {"_count": 1}, "Yeah": {"_count": 1}, "than": {"_count": 1}, "if": {"_count": 1}, "on": {"_count": 1}, "as": {"_count": 1}, "Hermione": {"_count": 1}}, "kid": {"_count": 9, "here": {"_count": 1}, "hes": {"_count": 1}, "": {"_count": 2}, "or": {"_count": 1}, "you": {"_count": 1}, "ter": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}}, "train": {"_count": 4, "to": {"_count": 1}, "rattling": {"_count": 1}, "ticket": {"_count": 1}, "": {"_count": 1}}, "canaryyellow": {"_count": 1, "circus": {"_count": 1}}, "copy": {"_count": 31, "of": {"_count": 23}, "to": {"_count": 1}, "and": {"_count": 2}, "an": {"_count": 1}, "somewhere": {"_count": 1}, "Mr": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 1}}, "toad": {"_count": 11, "PARENTS": {"_count": 1}, "toads": {"_count": 1}, "at": {"_count": 1}, "Id": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "bind": {"_count": 1}, "about": {"_count": 1}, "in": {"_count": 1}}, "brokendown": {"_count": 3, "escalator": {"_count": 1}, "old": {"_count": 1}, "gate": {"_count": 1}}, "bustling": {"_count": 2, "road": {"_count": 1}, "old": {"_count": 1}}, "magic": {"_count": 1, "wand": {"_count": 1}}, "halt": {"_count": 71, "the": {"_count": 1}, "in": {"_count": 15}, "clutching": {"_count": 1}, "": {"_count": 10}, "Ive": {"_count": 1}, "exactly": {"_count": 1}, "and": {"_count": 6}, "at": {"_count": 3}, "crouched": {"_count": 1}, "outside": {"_count": 4}, "as": {"_count": 1}, "next": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "before": {"_count": 2}, "too": {"_count": 1}, "beside": {"_count": 4}, "with": {"_count": 1}, "just": {"_count": 1}, "near": {"_count": 1}, "again": {"_count": 2}, "these": {"_count": 1}, "that": {"_count": 1}, "panting": {"_count": 2}, "right": {"_count": 1}, "transfixed": {"_count": 1}, "behind": {"_count": 1}, "where": {"_count": 1}, "bumping": {"_count": 1}, "a": {"_count": 1}, "halfway": {"_count": 1}, "Harry": {"_count": 1}}, "famous": {"_count": 6, "place": {"_count": 2}, "name": {"_count": 1}, "murderer": {"_count": 1}, "actresss": {"_count": 1}, "Quidditch": {"_count": 1}}, "top": {"_count": 6, "hat": {"_count": 2}, "bunk": {"_count": 1}, "sixty": {"_count": 1}, "": {"_count": 1}, "quality": {"_count": 1}}, "toothless": {"_count": 1, "walnut": {"_count": 1}}, "glass": {"_count": 18, "saying": {"_count": 1}, "ball": {"_count": 1}, "of": {"_count": 8}, "box": {"_count": 1}, "jar": {"_count": 1}, "dome": {"_count": 1}, "vial": {"_count": 1}, "with": {"_count": 1}, "apiece": {"_count": 1}, "case": {"_count": 1}, "": {"_count": 1}}, "flutter": {"_count": 5, "": {"_count": 1}, "of": {"_count": 3}, "on": {"_count": 1}}, "shop": {"_count": 5, "": {"_count": 2}, "called": {"_count": 1}, "selling": {"_count": 1}, "Weasley": {"_count": 1}}, "hag": {"_count": 3, "never": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}}, "cobbled": {"_count": 1, "street": {"_count": 1}}, "stack": {"_count": 15, "of": {"_count": 12}, "handy": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "sign": {"_count": 19, "hanging": {"_count": 2}, "saying": {"_count": 2}, "pointing": {"_count": 1}, "on": {"_count": 1}, "of": {"_count": 7}, "over": {"_count": 1}, "that": {"_count": 4}, "went": {"_count": 1}}, "window": {"_count": 19, "with": {"_count": 1}, "": {"_count": 2}, "open": {"_count": 1}, "to": {"_count": 1}, "muttering": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 1}, "behind": {"_count": 1}, "through": {"_count": 1}, "said": {"_count": 1}, "blazing": {"_count": 1}, "at": {"_count": 1}, "displaying": {"_count": 1}, "in": {"_count": 1}, "table": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}, "overlooking": {"_count": 1}}, "snowy": {"_count": 5, "white": {"_count": 1}, "owl": {"_count": 1}, "Hogsmeade": {"_count": 1}, "night": {"_count": 1}, "lane": {"_count": 1}}, "uniform": {"_count": 2, "of": {"_count": 1}, "pearly": {"_count": 1}}, "goblin": {"_count": 7, "said": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}}, "head": {"_count": 17, "shorter": {"_count": 3}, "start": {"_count": 3}, "cold": {"_count": 1}, "and": {"_count": 1}, "becoming": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 2}, "poked": {"_count": 1}, "it": {"_count": 1}, "so": {"_count": 1}, "even": {"_count": 1}, "case": {"_count": 1}}, "swarthy": {"_count": 1, "clever": {"_count": 1}}, "pointed": {"_count": 14, "beard": {"_count": 2}, "wizards": {"_count": 1}, "purple": {"_count": 1}, "nose": {"_count": 4}, "face": {"_count": 1}, "pale": {"_count": 1}, "hat": {"_count": 3}, "fashion": {"_count": 1}}, "vast": {"_count": 17, "marble": {"_count": 1}, "castle": {"_count": 1}, "hollow": {"_count": 1}, "life": {"_count": 1}, "cage": {"_count": 1}, "chattering": {"_count": 1}, "golden": {"_count": 1}, "invisible": {"_count": 1}, "box": {"_count": 1}, "mossy": {"_count": 1}, "collection": {"_count": 1}, "number": {"_count": 1}, "tent": {"_count": 1}, "lasso": {"_count": 1}, "spotted": {"_count": 1}, "circle": {"_count": 1}, "silent": {"_count": 1}}, "hundred": {"_count": 77, "more": {"_count": 1}, "and": {"_count": 12}, "owls": {"_count": 2}, "points": {"_count": 5}, "or": {"_count": 1}, "times": {"_count": 12}, "years": {"_count": 3}, "cups": {"_count": 1}, "school": {"_count": 1}, "": {"_count": 2}, "miles": {"_count": 2}, "copies": {"_count": 1}, "stagecoaches": {"_count": 1}, "dementors": {"_count": 3}, "either": {"_count": 1}, "of": {"_count": 2}, "thousand": {"_count": 3}, "veela": {"_count": 1}, "feet": {"_count": 1}, "sacks": {"_count": 1}, "slaves": {"_count": 1}, "broomsticks": {"_count": 1}, "little": {"_count": 1}, "turkeys": {"_count": 1}, "smaller": {"_count": 2}, "golden": {"_count": 2}, "coins": {"_count": 1}, "yards": {"_count": 3}, "very": {"_count": 1}, "diffrent": {"_count": 1}, "girls": {"_count": 1}, "rolls": {"_count": 1}, "glass": {"_count": 1}, "pieces": {"_count": 1}, "tiny": {"_count": 1}, "Galleons": {"_count": 1}, "they": {"_count": 1}}, "free": {"_count": 17, "goblin": {"_count": 1}, "shot": {"_count": 1}, "rein": {"_count": 1}, "classroom": {"_count": 2}, "elf": {"_count": 3}, "copy": {"_count": 1}, "box": {"_count": 1}, "period": {"_count": 3}, "table": {"_count": 1}, "country": {"_count": 1}, "agent": {"_count": 1}, "houseelf": {"_count": 1}}, "pile": {"_count": 25, "of": {"_count": 25}}, "narrow": {"_count": 20, "stone": {"_count": 2}, "corridor": {"_count": 1}, "winding": {"_count": 1}, "escape": {"_count": 3}, "passageway": {"_count": 1}, "wooden": {"_count": 1}, "country": {"_count": 1}, "spiral": {"_count": 1}, "slice": {"_count": 1}, "strip": {"_count": 1}, "fissure": {"_count": 1}, "beam": {"_count": 1}, "doorway": {"_count": 1}, "cobbled": {"_count": 1}, "staircase": {"_count": 1}, "hallway": {"_count": 1}, "dirt": {"_count": 1}}, "maze": {"_count": 1, "of": {"_count": 1}}, "burst": {"_count": 13, "of": {"_count": 13}}, "passage": {"_count": 4, "and": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "about": {"_count": 1}}, "stalagmite": {"_count": 1, "and": {"_count": 1}}, "stalactite": {"_count": 1, "": {"_count": 1}}, "Galleon": {"_count": 6, "and": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 1}, "is": {"_count": 1}, "down": {"_count": 1}, "isnt": {"_count": 1}}, "Sickle": {"_count": 1, "its": {"_count": 1}}, "Gringotts": {"_count": 6, "goblin": {"_count": 2}, "spokesgoblin": {"_count": 1}, "vault": {"_count": 3}}, "grubby": {"_count": 3, "little": {"_count": 1}, "tablecloth": {"_count": 1}, "schoolboy": {"_count": 1}}, "pound": {"_count": 4, "to": {"_count": 1}, "of": {"_count": 3}}, "pickmeup": {"_count": 1, "in": {"_count": 1}}, "squat": {"_count": 6, "smiling": {"_count": 1}, "little": {"_count": 1}, "unshaven": {"_count": 1}, "man": {"_count": 1}, "wizard": {"_count": 1}, "toadlike": {"_count": 1}}, "boy": {"_count": 35, "with": {"_count": 4}, "he": {"_count": 1}, "in": {"_count": 6}, "Hagrid": {"_count": 1}, "but": {"_count": 1}, "speaking": {"_count": 1}, "younger": {"_count": 1}, "called": {"_count": 3}, "at": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}, "went": {"_count": 1}, "suffering": {"_count": 1}, "such": {"_count": 1}, "who": {"_count": 4}, "sitting": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 1}, "whos": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "born": {"_count": 1}}, "pale": {"_count": 11, "pointed": {"_count": 3}, "transparentlooking": {"_count": 1}, "heartshaped": {"_count": 2}, "violet": {"_count": 1}, "pearly": {"_count": 1}, "young": {"_count": 1}, "and": {"_count": 1}, "hand": {"_count": 1}}, "footstool": {"_count": 1, "while": {"_count": 1}}, "stool": {"_count": 4, "next": {"_count": 1}, "before": {"_count": 1}, "by": {"_count": 1}, "on": {"_count": 1}}, "bored": {"_count": 10, "drawling": {"_count": 1}, "voice": {"_count": 8}, "and": {"_count": 1}}, "crime": {"_count": 6, "if": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "so": {"_count": 1}, "now": {"_count": 1}, "to": {"_count": 1}}, "sort": {"_count": 23, "of": {"_count": 23}}, "hut": {"_count": 1, "on": {"_count": 1}}, "slight": {"_count": 41, "sneer": {"_count": 2}, "cough": {"_count": 1}, "bump": {"_count": 1}, "stiffness": {"_count": 1}, "quiver": {"_count": 1}, "break": {"_count": 1}, "edge": {"_count": 2}, "list": {"_count": 1}, "lurch": {"_count": 1}, "sense": {"_count": 1}, "situation": {"_count": 1}, "head": {"_count": 1}, "thrill": {"_count": 1}, "push": {"_count": 1}, "smile": {"_count": 3}, "diversion": {"_count": 1}, "pause": {"_count": 2}, "groan": {"_count": 1}, "shock": {"_count": 3}, "frown": {"_count": 1}, "pang": {"_count": 1}, "difference": {"_count": 1}, "frostiness": {"_count": 1}, "twinge": {"_count": 1}, "chill": {"_count": 1}, "adjustment": {"_count": 1}, "shiver": {"_count": 1}, "limp": {"_count": 1}, "hiccup": {"_count": 1}, "crease": {"_count": 1}, "rattle": {"_count": 1}, "squirm": {"_count": 1}, "possibility": {"_count": 1}, "flexing": {"_count": 1}}, "solid": {"_count": 13, "gold": {"_count": 1}, "wall": {"_count": 6}, "shimmering": {"_count": 1}, "block": {"_count": 1}, "month": {"_count": 1}, "mass": {"_count": 1}, "brick": {"_count": 1}, "fact": {"_count": 1}}, "collapsible": {"_count": 1, "brass": {"_count": 1}}, "mixture": {"_count": 16, "of": {"_count": 16}}, "supply": {"_count": 2, "of": {"_count": 2}}, "scoop": {"_count": 1, "": {"_count": 1}}, "birthday": {"_count": 5, "present": {"_count": 3}, "card": {"_count": 1}, "Leave": {"_count": 1}}, "beautiful": {"_count": 6, "snowy": {"_count": 1}, "and": {"_count": 1}, "thing": {"_count": 1}, "witch": {"_count": 1}, "blonde": {"_count": 1}, "but": {"_count": 1}}, "lotta": {"_count": 1, "presents": {"_count": 1}}, "faded": {"_count": 1, "purple": {"_count": 1}}, "soft": {"_count": 41, "voice": {"_count": 3}, "landing": {"_count": 1}, "option": {"_count": 2}, "clatter": {"_count": 1}, "hiss": {"_count": 2}, "golden": {"_count": 1}, "flump": {"_count": 1}, "crackling": {"_count": 1}, "knock": {"_count": 1}, "misty": {"_count": 1}, "thump": {"_count": 1}, "hissing": {"_count": 2}, "swooshing": {"_count": 1}, "tap": {"_count": 1}, "noise": {"_count": 1}, "deadly": {"_count": 1}, "and": {"_count": 1}, "breeze": {"_count": 1}, "thud": {"_count": 1}, "rush": {"_count": 1}, "scream": {"_count": 1}, "fall": {"_count": 1}, "rustle": {"_count": 1}, "whooshing": {"_count": 1}, "whoosh": {"_count": 1}, "moan": {"_count": 1}, "splat": {"_count": 1}, "oh": {"_count": 1}, "tug": {"_count": 1}, "cough": {"_count": 1}, "spot": {"_count": 1}, "squawk": {"_count": 1}, "splashing": {"_count": 1}, "girlish": {"_count": 1}, "bed": {"_count": 1}, "musical": {"_count": 1}}, "quarter": {"_count": 18, "inches": {"_count": 3}, "to": {"_count": 4}, "of": {"_count": 9}, "past": {"_count": 1}, "": {"_count": 1}}, "mahogany": {"_count": 2, "wand": {"_count": 1}, "handle": {"_count": 1}}, "core": {"_count": 2, "of": {"_count": 1}, "with": {"_count": 1}}, "heap": {"_count": 9, "on": {"_count": 2}, "": {"_count": 3}, "of": {"_count": 3}, "onto": {"_count": 1}}, "wave": {"_count": 21, "": {"_count": 1}, "of": {"_count": 17}, "and": {"_count": 2}, "to": {"_count": 1}}, "half": {"_count": 19, "inches": {"_count": 2}, "with": {"_count": 1}, "months": {"_count": 1}, "giant": {"_count": 1}, "": {"_count": 3}, "later": {"_count": 2}, "years": {"_count": 1}, "away": {"_count": 1}, "on": {"_count": 1}, "thousand": {"_count": 1}, "dozen": {"_count": 1}, "nelson": {"_count": 1}, "chairs": {"_count": 1}, "conscious": {"_count": 1}, "and": {"_count": 1}}, "sudden": {"_count": 83, "warmth": {"_count": 2}, "halt": {"_count": 4}, "rummaging": {"_count": 1}, "frightening": {"_count": 1}, "movement": {"_count": 7}, "idea": {"_count": 3}, "hush": {"_count": 2}, "loud": {"_count": 1}, "storm": {"_count": 1}, "thought": {"_count": 3}, "spate": {"_count": 1}, "gasp": {"_count": 1}, "suspicion": {"_count": 1}, "flaming": {"_count": 1}, "blaze": {"_count": 1}, "silence": {"_count": 1}, "shower": {"_count": 1}, "blinding": {"_count": 1}, "wobble": {"_count": 1}, "motion": {"_count": 1}, "head": {"_count": 1}, "shudder": {"_count": 1}, "vision": {"_count": 3}, "excited": {"_count": 1}, "blast": {"_count": 1}, "inspiration": {"_count": 4}, "rustling": {"_count": 1}, "thrill": {"_count": 1}, "mental": {"_count": 1}, "reversal": {"_count": 1}, "for": {"_count": 1}, "after": {"_count": 1}, "upsurge": {"_count": 1}, "even": {"_count": 3}, "outbreak": {"_count": 1}, "rush": {"_count": 2}, "she": {"_count": 1}, "blow": {"_count": 1}, "resurgence": {"_count": 1}, "impact": {"_count": 1}, "slashing": {"_count": 1}, "and": {"_count": 2}, "exclamation": {"_count": 1}, "brain": {"_count": 1}, "waft": {"_count": 1}, "unexpected": {"_count": 1}, "": {"_count": 4}, "or": {"_count": 1}, "wail": {"_count": 1}, "deafening": {"_count": 1}, "excitement": {"_count": 1}, "darkening": {"_count": 1}, "explosion": {"_count": 1}, "shout": {"_count": 1}, "much": {"_count": 1}, "a": {"_count": 1}}, "stream": {"_count": 13, "of": {"_count": 10}, "somewhere": {"_count": 1}, "lined": {"_count": 1}, "a": {"_count": 1}}, "firework": {"_count": 2, "throwing": {"_count": 1}, "display": {"_count": 1}}, "bite": {"_count": 9, "to": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 4}, "out": {"_count": 1}, "outta": {"_count": 1}, "or": {"_count": 1}}, "hamburger": {"_count": 1, "and": {"_count": 1}}, "name": {"_count": 14, "he": {"_count": 2}, "increases": {"_count": 1}, "or": {"_count": 1}, "for": {"_count": 1}, "I": {"_count": 2}, "in": {"_count": 1}, "people": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "began": {"_count": 1}}, "quiz": {"_count": 2, "show": {"_count": 1}, "in": {"_count": 1}}, "lift": {"_count": 8, "": {"_count": 3}, "descended": {"_count": 1}, "clattered": {"_count": 1}, "clattering": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}}, "wizards": {"_count": 7, "school": {"_count": 1}, "duel": {"_count": 2}, "sign": {"_count": 1}, "wireless": {"_count": 1}, "murder": {"_count": 1}, "war": {"_count": 1}}, "passing": {"_count": 8, "guard": {"_count": 1}, "Bludger": {"_count": 2}, "fourth": {"_count": 1}, "elf": {"_count": 1}, "tray": {"_count": 1}, "waiter": {"_count": 2}}, "station": {"_count": 4, "with": {"_count": 1}, "full": {"_count": 1}, "in": {"_count": 2}}, "trunk": {"_count": 3, "he": {"_count": 1}, "like": {"_count": 1}, "for": {"_count": 1}}, "pocket": {"_count": 2, "full": {"_count": 1}, "youll": {"_count": 1}}, "plump": {"_count": 6, "woman": {"_count": 1}, "witch": {"_count": 1}, "man": {"_count": 1}, "scowling": {"_count": 1}, "blonde": {"_count": 1}, "little": {"_count": 1}}, "run": {"_count": 28, "if": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 7}, "and": {"_count": 5}, "for": {"_count": 1}, "with": {"_count": 1}, "fer": {"_count": 1}, "Hermione": {"_count": 1}, "again": {"_count": 1}, "she": {"_count": 1}, "around": {"_count": 1}, "Harry": {"_count": 1}, "wrenched": {"_count": 1}, "weaving": {"_count": 1}, "determined": {"_count": 1}, "toward": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}}, "heavy": {"_count": 37, "run": {"_count": 1}, "nosebleed": {"_count": 1}, "wooden": {"_count": 3}, "blow": {"_count": 2}, "book": {"_count": 2}, "jolt": {"_count": 1}, "black": {"_count": 2}, "sickly": {"_count": 1}, "thud": {"_count": 2}, "branch": {"_count": 1}, "chair": {"_count": 1}, "fine": {"_count": 1}, "weight": {"_count": 2}, "heart": {"_count": 1}, "emphasis": {"_count": 1}, "locket": {"_count": 1}, "and": {"_count": 1}, "downpour": {"_count": 1}, "scroll": {"_count": 1}, "sigh": {"_count": 1}, "gold": {"_count": 2}, "bat": {"_count": 1}, "price": {"_count": 1}, "golden": {"_count": 1}, "bloodstained": {"_count": 1}, "brutallooking": {"_count": 1}, "smooth": {"_count": 1}, "chest": {"_count": 1}, "door": {"_count": 1}}, "foot": {"_count": 28, "away": {"_count": 4}, "in": {"_count": 3}, "from": {"_count": 5}, "off": {"_count": 1}, "above": {"_count": 1}, "or": {"_count": 1}, "long": {"_count": 1}, "apart": {"_count": 2}, "during": {"_count": 1}, "taller": {"_count": 1}, "underneath": {"_count": 1}, "on": {"_count": 2}, "and": {"_count": 1}, "more": {"_count": 1}, "to": {"_count": 1}, "over": {"_count": 2}}, "platform": {"_count": 3, "packed": {"_count": 3}}, "wroughtiron": {"_count": 2, "archway": {"_count": 1}, "spiral": {"_count": 1}}, "disgruntled": {"_count": 6, "sort": {"_count": 1}, "Hermione": {"_count": 1}, "Hedwig": {"_count": 1}, "look": {"_count": 1}, "whisper": {"_count": 1}, "silence": {"_count": 1}}, "roundfaced": {"_count": 3, "boy": {"_count": 1}, "and": {"_count": 1}, "forgetful": {"_count": 1}}, "box": {"_count": 22, "in": {"_count": 1}, "of": {"_count": 13}, "": {"_count": 3}, "whose": {"_count": 1}, "wrapped": {"_count": 1}, "that": {"_count": 1}, "bearing": {"_count": 1}, "into": {"_count": 1}}, "voice": {"_count": 97, "came": {"_count": 1}, "spoke": {"_count": 2}, "suddenly": {"_count": 1}, "from": {"_count": 8}, "answered": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 9}, "Harry": {"_count": 4}, "somewhat": {"_count": 1}, "rang": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 9}, "choked": {"_count": 1}, "issued": {"_count": 1}, "": {"_count": 5}, "called": {"_count": 2}, "growled": {"_count": 1}, "behind": {"_count": 9}, "and": {"_count": 3}, "unlike": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 4}, "that": {"_count": 5}, "distorted": {"_count": 1}, "throbbing": {"_count": 1}, "very": {"_count": 1}, "only": {"_count": 1}, "calling": {"_count": 1}, "nearby": {"_count": 1}, "positively": {"_count": 1}, "barely": {"_count": 2}, "responded": {"_count": 1}, "overhead": {"_count": 1}, "close": {"_count": 1}, "which": {"_count": 1}, "like": {"_count": 1}, "shouted": {"_count": 1}, "yelled": {"_count": 2}, "screamed": {"_count": 1}, "stiff": {"_count": 1}, "so": {"_count": 1}, "hissed": {"_count": 1}, "Dobby": {"_count": 1}, "over": {"_count": 1}, "desperate": {"_count": 1}}, "last": {"_count": 24, "look": {"_count": 5}, "meal": {"_count": 1}, "word": {"_count": 1}, "mug": {"_count": 1}, "incensed": {"_count": 1}, "smile": {"_count": 1}, "pair": {"_count": 1}, "nod": {"_count": 1}, "loud": {"_count": 1}, "resort": {"_count": 1}, "disappointed": {"_count": 1}, "favor": {"_count": 1}, "malicious": {"_count": 1}, "frowning": {"_count": 1}, "threatening": {"_count": 1}, "longing": {"_count": 1}, "few": {"_count": 1}, "glimpse": {"_count": 1}, "sweeping": {"_count": 1}, "twitch": {"_count": 1}}, "shiny": {"_count": 3, "red": {"_count": 1}, "black": {"_count": 1}, "Galleonsized": {"_count": 1}}, "prefect": {"_count": 36, "Percy": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 16}, "but": {"_count": 1}, "hed": {"_count": 1}, "badge": {"_count": 2}, "to": {"_count": 1}, "downstairs": {"_count": 1}, "just": {"_count": 1}, "myself": {"_count": 1}, "I": {"_count": 2}, "either": {"_count": 1}, "when": {"_count": 1}, "which": {"_count": 1}, "now": {"_count": 1}, "snarled": {"_count": 1}, "and": {"_count": 1}, "seems": {"_count": 1}, "arent": {"_count": 1}}, "toilet": {"_count": 12, "or": {"_count": 1}, "": {"_count": 5}, "clutching": {"_count": 1}, "seat": {"_count": 1}, "three": {"_count": 1}, "Harry": {"_count": 1}, "on": {"_count": 1}, "into": {"_count": 1}}, "zoo": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "Hogwarts": {"_count": 13, "toilet": {"_count": 1}, "teacher": {"_count": 2}, "school": {"_count": 1}, "student": {"_count": 1}, "House": {"_count": 1}, "champion": {"_count": 1}, "victory": {"_count": 2}, "fourth": {"_count": 1}, "prefect": {"_count": 1}, "Quidditch": {"_count": 1}, "": {"_count": 1}}, "black": {"_count": 17, "mark": {"_count": 1}, "eye": {"_count": 1}, "knight": {"_count": 1}, "dog": {"_count": 1}, "cloak": {"_count": 1}, "mass": {"_count": 1}, "traveling": {"_count": 1}, "badger": {"_count": 1}, "cabinet": {"_count": 1}, "cap": {"_count": 1}, "shape": {"_count": 1}, "suit": {"_count": 1}, "armband": {"_count": 1}, "huddled": {"_count": 1}, "velvet": {"_count": 1}, "sidecar": {"_count": 1}, "boot": {"_count": 1}}, "fat": {"_count": 11, "gray": {"_count": 1}, "little": {"_count": 1}, "pack": {"_count": 1}, "finger": {"_count": 1}, "white": {"_count": 1}, "lady": {"_count": 2}, "lot": {"_count": 2}, "gold": {"_count": 1}, "bag": {"_count": 1}}, "month": {"_count": 37, "ago": {"_count": 4}, "to": {"_count": 2}, "or": {"_count": 2}, "if": {"_count": 1}, "": {"_count": 12}, "in": {"_count": 2}, "and": {"_count": 3}, "I": {"_count": 1}, "now": {"_count": 1}, "later": {"_count": 1}, "of": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}, "ter": {"_count": 1}, "early": {"_count": 1}, "Keep": {"_count": 1}, "younger": {"_count": 1}, "said": {"_count": 1}}, "time": {"_count": 44, "watching": {"_count": 1}, "to": {"_count": 3}, "for": {"_count": 2}, "as": {"_count": 1}, "when": {"_count": 4}, "trying": {"_count": 1}, "landing": {"_count": 1}, "": {"_count": 10}, "and": {"_count": 3}, "if": {"_count": 1}, "staring": {"_count": 1}, "walked": {"_count": 1}, "past": {"_count": 1}, "I": {"_count": 1}, "floating": {"_count": 1}, "he": {"_count": 1}, "coming": {"_count": 1}, "depending": {"_count": 1}, "that": {"_count": 1}, "like": {"_count": 1}, "can": {"_count": 1}, "knocking": {"_count": 1}, "He": {"_count": 2}, "will": {"_count": 1}, "the": {"_count": 1}, "after": {"_count": 1}}, "smiling": {"_count": 1, "dimpled": {"_count": 1}}, "number": {"_count": 50, "of": {"_count": 47}, "three": {"_count": 1}, "nine": {"_count": 1}, "shot": {"_count": 1}}, "pumpkin": {"_count": 2, "pasty": {"_count": 1}, "for": {"_count": 1}}, "lumpy": {"_count": 3, "package": {"_count": 1}, "sweater": {"_count": 1}, "mass": {"_count": 1}}, "pasty": {"_count": 3, "": {"_count": 1}, "said": {"_count": 2}}, "pack": {"_count": 11, "of": {"_count": 9}, "with": {"_count": 1}, "": {"_count": 1}}, "mans": {"_count": 7, "face": {"_count": 1}, "voice": {"_count": 3}, "like": {"_count": 1}, "fight": {"_count": 1}, "thigh": {"_count": 1}}, "frog": {"_count": 3, "": {"_count": 1}, "yawned": {"_count": 1}, "by": {"_count": 1}}, "boogerflavored": {"_count": 1, "one": {"_count": 1}}, "green": {"_count": 10, "bean": {"_count": 1}, "sequined": {"_count": 1}, "andgray": {"_count": 1}, "balloon": {"_count": 1}, "tweed": {"_count": 1}, "nylon": {"_count": 1}, "velvet": {"_count": 1}, "onion": {"_count": 1}, "button": {"_count": 1}, "weed": {"_count": 1}}, "knock": {"_count": 14, "on": {"_count": 13}, "upon": {"_count": 1}}, "girl": {"_count": 33, "with": {"_count": 6}, "of": {"_count": 1}, "had": {"_count": 2}, "he": {"_count": 2}, "at": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 6}, "ran": {"_count": 1}, "who": {"_count": 2}, "first": {"_count": 1}, "sitting": {"_count": 1}, "whose": {"_count": 1}, "came": {"_count": 1}, "or": {"_count": 2}, "would": {"_count": 1}, "I": {"_count": 1}, "from": {"_count": 1}}, "bossy": {"_count": 3, "sort": {"_count": 1}, "knowitall": {"_count": 1}, "disapproving": {"_count": 1}}, "surprise": {"_count": 13, "when": {"_count": 1}, "for": {"_count": 2}, "as": {"_count": 1}, "": {"_count": 3}, "to": {"_count": 2}, "move": {"_count": 1}, "awaiting": {"_count": 1}, "He": {"_count": 1}, "said": {"_count": 1}}, "dud": {"_count": 1, "": {"_count": 1}}, "prickle": {"_count": 1, "of": {"_count": 1}}, "snigger": {"_count": 2, "": {"_count": 2}}, "pink": {"_count": 6, "tinge": {"_count": 1}, "silk": {"_count": 3}, "bathrobe": {"_count": 1}, "dress": {"_count": 1}}, "sniffy": {"_count": 1, "voice": {"_count": 1}}, "lamp": {"_count": 8, "came": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}}, "familiar": {"_count": 16, "voice": {"_count": 6}, "snowwhite": {"_count": 1}, "clicking": {"_count": 1}, "drawling": {"_count": 1}, "clunking": {"_count": 1}, "gvoice": {"_count": 1}, "song": {"_count": 1}, "shallow": {"_count": 1}, "guilty": {"_count": 1}, "small": {"_count": 1}, "hooknosed": {"_count": 1}}, "steep": {"_count": 7, "narrow": {"_count": 2}, "dive": {"_count": 1}, "winding": {"_count": 1}, "side": {"_count": 1}, "flight": {"_count": 1}, "staircase": {"_count": 1}}, "sec": {"_count": 2, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "boat": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "Harry": {"_count": 1}}, "fleet": {"_count": 2, "of": {"_count": 2}}, "curtain": {"_count": 4, "of": {"_count": 1}, "over": {"_count": 1}, "beside": {"_count": 1}, "fell": {"_count": 1}}, "passageway": {"_count": 1, "in": {"_count": 1}}, "flight": {"_count": 12, "of": {"_count": 11}, "before": {"_count": 1}}, "magnificent": {"_count": 12, "marble": {"_count": 2}, "mirror": {"_count": 1}, "necklace": {"_count": 1}, "gleaming": {"_count": 1}, "fourposter": {"_count": 1}, "lunch": {"_count": 1}, "silver": {"_count": 1}, "redandgold": {"_count": 1}, "snowy": {"_count": 1}, "carpet": {"_count": 1}, "imitation": {"_count": 1}}, "doorway": {"_count": 4, "to": {"_count": 1}, "and": {"_count": 1}, "muttering": {"_count": 1}, "hung": {"_count": 1}}, "credit": {"_count": 1, "to": {"_count": 1}}, "ghost": {"_count": 17, "I": {"_count": 1}, "": {"_count": 11}, "lean": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}}, "ruff": {"_count": 2, "and": {"_count": 1}, "which": {"_count": 1}}, "line": {"_count": 12, "Professor": {"_count": 1}, "facing": {"_count": 3}, "": {"_count": 2}, "of": {"_count": 4}, "in": {"_count": 1}, "reminding": {"_count": 1}}, "velvety": {"_count": 1, "black": {"_count": 1}}, "ceiling": {"_count": 2, "there": {"_count": 1}, "lost": {"_count": 1}}, "fourlegged": {"_count": 1, "stool": {"_count": 1}}, "rabbit": {"_count": 3, "out": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "mouth": {"_count": 6, "and": {"_count": 3}, "": {"_count": 1}, "opened": {"_count": 1}, "organ": {"_count": 1}}, "ready": {"_count": 1, "mind": {"_count": 1}}, "flap": {"_count": 1, "Youre": {"_count": 1}}, "Thinking": {"_count": 1, "Cap": {"_count": 1}}, "troll": {"_count": 7, "": {"_count": 2}, "get": {"_count": 1}, "will": {"_count": 1}, "even": {"_count": 1}, "a": {"_count": 1}, "said": {"_count": 1}}, "spell": {"_count": 28, "but": {"_count": 2}, "our": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 4}, "Harry": {"_count": 1}, "none": {"_count": 1}, "to": {"_count": 4}, "or": {"_count": 1}, "hit": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 3}, "that": {"_count": 2}, "do": {"_count": 1}, "into": {"_count": 1}, "like": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "forever": {"_count": 1}}, "House": {"_count": 1, "for": {"_count": 1}}, "Slytherin": {"_count": 15, "": {"_count": 3}, "spy": {"_count": 1}, "girl": {"_count": 2}, "that": {"_count": 1}, "it": {"_count": 1}, "sixth": {"_count": 1}, "Chaser": {"_count": 1}, "fifth": {"_count": 1}, "champion": {"_count": 1}, "prefect": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}}, "Gryffindor": {"_count": 12, "": {"_count": 2}, "prefect": {"_count": 1}, "could": {"_count": 1}, "ghost": {"_count": 1}, "victory": {"_count": 1}, "fourth": {"_count": 1}, "Youll": {"_count": 1}, "banner": {"_count": 1}, "student": {"_count": 1}, "scarf": {"_count": 1}, "Gryffindor": {"_count": 1}}, "bucket": {"_count": 6, "of": {"_count": 2}, "o": {"_count": 1}, "in": {"_count": 1}, "they": {"_count": 1}, "sized": {"_count": 1}}, "Black": {"_count": 3, "boy": {"_count": 1}, "made": {"_count": 1}, "family": {"_count": 1}}, "Ravenclaw": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "Chaser": {"_count": 1}}, "genius": {"_count": 8, "": {"_count": 1}, "to": {"_count": 2}, "you": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}}, "hinge": {"_count": 1, "": {"_count": 1}}, "row": {"_count": 28, "": {"_count": 7}, "of": {"_count": 5}, "If": {"_count": 1}, "as": {"_count": 2}, "while": {"_count": 1}, "until": {"_count": 1}, "said": {"_count": 2}, "with": {"_count": 2}, "he": {"_count": 1}, "again": {"_count": 1}, "well": {"_count": 1}, "beside": {"_count": 1}, "Harry": {"_count": 1}, "about": {"_count": 1}, "in": {"_count": 1}}, "gaunt": {"_count": 3, "face": {"_count": 1}, "staring": {"_count": 1}, "and": {"_count": 1}}, "treacle": {"_count": 1, "tart": {"_count": 1}}, "meringue": {"_count": 1, "and": {"_count": 1}}, "teacher": {"_count": 40, "with": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 14}, "asks": {"_count": 1}, "from": {"_count": 1}, "all": {"_count": 1}, "would": {"_count": 2}, "like": {"_count": 2}, "who": {"_count": 3}, "much": {"_count": 1}, "were": {"_count": 1}, "he": {"_count": 2}, "around": {"_count": 1}, "had": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "can": {"_count": 1}}, "hooked": {"_count": 2, "nose": {"_count": 2}}, "feeling": {"_count": 29, "that": {"_count": 4}, "he": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 13}, "exacerbated": {"_count": 1}, "were": {"_count": 1}, "Umbridge": {"_count": 1}, "vampires": {"_count": 1}, "it": {"_count": 1}, "apparently": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "youd": {"_count": 1}, "for": {"_count": 1}}, "reason": {"_count": 12, "why": {"_count": 1}, "to": {"_count": 6}, "he": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "ter": {"_count": 1}, "It": {"_count": 1}}, "fly": {"_count": 8, "off": {"_count": 1}, "buzzing": {"_count": 1}, "": {"_count": 1}, "zoom": {"_count": 1}, "to": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}}, "step": {"_count": 26, "toward": {"_count": 6}, "forward": {"_count": 4}, "backward": {"_count": 4}, "closer": {"_count": 4}, "halfway": {"_count": 1}, "going": {"_count": 3}, "back": {"_count": 2}, "or": {"_count": 1}, "nearer": {"_count": 1}}, "balloon": {"_count": 2, "answered": {"_count": 1}, "Goyle": {"_count": 1}}, "pop": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}}, "portrait": {"_count": 6, "of": {"_count": 3}, "talking": {"_count": 1}, "on": {"_count": 1}, "should": {"_count": 1}}, "round": {"_count": 10, "hole": {"_count": 1}, "faced": {"_count": 2}, "amber": {"_count": 1}, "fifty": {"_count": 1}, "dozen": {"_count": 2}, "of": {"_count": 2}, "dark": {"_count": 1}}, "leg": {"_count": 5, "up": {"_count": 2}, "Hermione": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}}, "cozy": {"_count": 3, "round": {"_count": 1}, "circular": {"_count": 1}, "catchup": {"_count": 1}}, "spiral": {"_count": 6, "staircase": {"_count": 4}, "stone": {"_count": 1}, "escalator": {"_count": 1}}, "Friday": {"_count": 1, "some": {"_count": 1}}, "vanishing": {"_count": 1, "step": {"_count": 1}}, "door": {"_count": 59, "you": {"_count": 1}, "that": {"_count": 3}, "and": {"_count": 1}, "stood": {"_count": 3}, "with": {"_count": 2}, "halfway": {"_count": 1}, "right": {"_count": 1}, "creak": {"_count": 1}, "": {"_count": 6}, "open": {"_count": 2}, "bursting": {"_count": 1}, "slamming": {"_count": 1}, "to": {"_count": 4}, "almost": {"_count": 1}, "on": {"_count": 7}, "behind": {"_count": 2}, "concealed": {"_count": 1}, "at": {"_count": 7}, "facing": {"_count": 1}, "leading": {"_count": 1}, "revealing": {"_count": 1}, "what": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "pretending": {"_count": 1}, "find": {"_count": 1}, "under": {"_count": 1}, "opened": {"_count": 2}, "opening": {"_count": 1}, "just": {"_count": 1}, "as": {"_count": 1}}, "rule": {"_count": 2, "in": {"_count": 1}, "that": {"_count": 1}}, "dumpy": {"_count": 1, "little": {"_count": 1}}, "talking": {"_count": 2, "to": {"_count": 1}, "point": {"_count": 1}}, "match": {"_count": 7, "and": {"_count": 2}, "for": {"_count": 2}, "": {"_count": 1}, "approached": {"_count": 1}, "just": {"_count": 1}}, "needle": {"_count": 1, "": {"_count": 1}}, "rare": {"_count": 3, "smile": {"_count": 1}, "ability": {"_count": 1}, "treat": {"_count": 1}}, "joke": {"_count": 32, "": {"_count": 7}, "Professor": {"_count": 2}, "next": {"_count": 1}, "shop": {"_count": 9}, "oh": {"_count": 1}, "really": {"_count": 1}, "if": {"_count": 2}, "who": {"_count": 1}, "he": {"_count": 2}, "in": {"_count": 1}, "round": {"_count": 1}, "cauldron": {"_count": 1}, "isnt": {"_count": 1}, "right": {"_count": 1}, "Potter": {"_count": 1}}, "vampire": {"_count": 9, "hed": {"_count": 1}, "who": {"_count": 1}, "but": {"_count": 2}, "suggested": {"_count": 1}, "hunter": {"_count": 1}, "in": {"_count": 1}, "coming": {"_count": 1}, "said": {"_count": 1}}, "thankyou": {"_count": 1, "for": {"_count": 1}}, "troublesome": {"_count": 1, "zombie": {"_count": 1}}, "shock": {"_count": 17, "on": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 2}, "to": {"_count": 5}, "for": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}, "so": {"_count": 1}}, "class": {"_count": 7, "silent": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "when": {"_count": 1}, "too": {"_count": 1}, "Yeah": {"_count": 1}, "on": {"_count": 1}}, "bunch": {"_count": 20, "of": {"_count": 18}, "Ginny": {"_count": 1}, "o": {"_count": 1}}, "dunderhead": {"_count": 1, "": {"_count": 1}}, "sneer": {"_count": 2, "": {"_count": 1}, "worthy": {"_count": 1}}, "bezoar": {"_count": 8, "": {"_count": 1}, "was": {"_count": 1}, "meaning": {"_count": 1}, "down": {"_count": 1}, "all": {"_count": 1}, "to": {"_count": 1}, "too": {"_count": 1}, "said": {"_count": 1}}, "book": {"_count": 35, "before": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 5}, "somewhere": {"_count": 1}, "called": {"_count": 4}, "from": {"_count": 1}, "of": {"_count": 3}, "at": {"_count": 4}, "that": {"_count": 3}, "lay": {"_count": 1}, "could": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 3}, "Ron": {"_count": 1}, "and": {"_count": 1}, "or": {"_count": 1}, "Harry": {"_count": 1}, "thats": {"_count": 1}, "about": {"_count": 1}}, "stone": {"_count": 28, "taken": {"_count": 1}, "passageway": {"_count": 1}, "step": {"_count": 1}, "door": {"_count": 1}, "": {"_count": 2}, "slide": {"_count": 1}, "lying": {"_count": 1}, "bench": {"_count": 1}, "gargoyle": {"_count": 2}, "at": {"_count": 1}, "cauldron": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "staircase": {"_count": 1}, "wall": {"_count": 1}, "archway": {"_count": 1}, "basin": {"_count": 1}, "floor": {"_count": 1}, "bust": {"_count": 2}, "from": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 2}, "wasnt": {"_count": 1}, "into": {"_count": 1}}, "goat": {"_count": 6, "and": {"_count": 1}, "": {"_count": 2}, "which": {"_count": 1}, "idiot": {"_count": 1}, "a": {"_count": 1}}, "point": {"_count": 20, "will": {"_count": 1}, "for": {"_count": 1}, "some": {"_count": 2}, "when": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 3}, "hasnt": {"_count": 1}, "said": {"_count": 3}, "just": {"_count": 1}, "slightly": {"_count": 1}, "The": {"_count": 1}, "there": {"_count": 1}, "close": {"_count": 1}}, "simple": {"_count": 22, "potion": {"_count": 1}, "matter": {"_count": 4}, "Transylvanian": {"_count": 1}, "charm": {"_count": 1}, "Sleeping": {"_count": 1}, "reason": {"_count": 1}, "process": {"_count": 1}, "way": {"_count": 1}, "Switching": {"_count": 1}, "spells": {"_count": 1}, "spell": {"_count": 1}, "one": {"_count": 2}, "enough": {"_count": 1}, "thing": {"_count": 1}, "question": {"_count": 1}, "combination": {"_count": 1}, "test": {"_count": 1}, "click": {"_count": 1}}, "twisted": {"_count": 6, "blob": {"_count": 1}, "old": {"_count": 1}, "smile": {"_count": 3}, "serpent": {"_count": 1}}, "frantic": {"_count": 3, "scrabbling": {"_count": 1}, "squeak": {"_count": 1}, "bird": {"_count": 1}}, "hold": {"_count": 2, "on": {"_count": 2}}, "massive": {"_count": 14, "bed": {"_count": 1}, "snake": {"_count": 1}, "organizational": {"_count": 1}, "effort": {"_count": 2}, "bone": {"_count": 1}, "hand": {"_count": 2}, "order": {"_count": 1}, "dark": {"_count": 1}, "figure": {"_count": 1}, "pit": {"_count": 1}, "movement": {"_count": 1}, "fist": {"_count": 1}}, "patchwork": {"_count": 4, "quilt": {"_count": 3}, "of": {"_count": 1}}, "plate": {"_count": 12, "": {"_count": 1}, "of": {"_count": 9}, "when": {"_count": 1}, "for": {"_count": 1}}, "piece": {"_count": 34, "of": {"_count": 33}, "o": {"_count": 1}}, "cutting": {"_count": 2, "from": {"_count": 1}, "of": {"_count": 1}}, "notice": {"_count": 3, "pinned": {"_count": 1}, "that": {"_count": 1}, "pasted": {"_count": 1}}, "fool": {"_count": 14, "of": {"_count": 5}, "snarled": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 5}, "to": {"_count": 1}, "Harry": {"_count": 1}}, "broomstick": {"_count": 29, "in": {"_count": 2}, "": {"_count": 7}, "Potter": {"_count": 2}, "or": {"_count": 2}, "he": {"_count": 1}, "Professor": {"_count": 1}, "except": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 2}, "moving": {"_count": 1}, "at": {"_count": 1}, "thatll": {"_count": 1}, "thatd": {"_count": 1}, "that": {"_count": 1}, "handle": {"_count": 1}, "was": {"_count": 1}, "under": {"_count": 1}, "through": {"_count": 1}}, "hang": {"_count": 1, "glider": {"_count": 1}}, "game": {"_count": 17, "with": {"_count": 1}, "of": {"_count": 11}, "o": {"_count": 1}, "trying": {"_count": 1}, "isnt": {"_count": 1}, "or": {"_count": 1}, "this": {"_count": 1}}, "library": {"_count": 4, "book": {"_count": 3}, "and": {"_count": 1}}, "Remembrall": {"_count": 1, "": {"_count": 1}}, "clear": {"_count": 36, "breezy": {"_count": 1}, "field": {"_count": 3}, "forgetmenot": {"_count": 1}, "voice": {"_count": 1}, "starry": {"_count": 1}, "pale": {"_count": 2}, "shot": {"_count": 4}, "view": {"_count": 10}, "cool": {"_count": 1}, "purpletinged": {"_count": 1}, "deep": {"_count": 1}, "undertone": {"_count": 1}, "exhilarating": {"_count": 1}, "carrying": {"_count": 1}, "misty": {"_count": 1}, "inch": {"_count": 1}, "five": {"_count": 1}, "memory": {"_count": 1}, "instruction": {"_count": 1}, "bright": {"_count": 1}, "dark": {"_count": 1}}, "smooth": {"_count": 3, "flat": {"_count": 1}, "scaled": {"_count": 1}, "mound": {"_count": 1}}, "hawk": {"_count": 2, "": {"_count": 1}, "looking": {"_count": 1}}, "quaver": {"_count": 1, "in": {"_count": 1}}, "cork": {"_count": 5, "shot": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 2}, "unsteerable": {"_count": 1}}, "thud": {"_count": 14, "and": {"_count": 4}, "that": {"_count": 2}, "in": {"_count": 2}, "of": {"_count": 1}, "on": {"_count": 1}, "between": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}, "onto": {"_count": 1}}, "hardfaced": {"_count": 1, "Slytherin": {"_count": 1}}, "tree": {"_count": 26, "": {"_count": 7}, "as": {"_count": 1}, "on": {"_count": 2}, "and": {"_count": 4}, "behind": {"_count": 1}, "or": {"_count": 1}, "root": {"_count": 1}, "looking": {"_count": 1}, "right": {"_count": 1}, "again": {"_count": 1}, "below": {"_count": 1}, "in": {"_count": 1}, "stump": {"_count": 1}, "Harry": {"_count": 1}, "had": {"_count": 1}, "nearby": {"_count": 1}}, "rush": {"_count": 20, "of": {"_count": 14}, "": {"_count": 2}, "to": {"_count": 1}, "as": {"_count": 1}, "his": {"_count": 1}, "Severus": {"_count": 1}}, "javelin": {"_count": 1, "": {"_count": 1}}, "classroom": {"_count": 8, "": {"_count": 2}, "that": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 1}, "at": {"_count": 1}, "window": {"_count": 1}, "door": {"_count": 1}}, "cane": {"_count": 1, "she": {"_count": 1}}, "burly": {"_count": 2, "fifthyear": {"_count": 1}, "seventeenyearold": {"_count": 1}}, "bin": {"_count": 4, "which": {"_count": 1}, "He": {"_count": 1}, "": {"_count": 1}, "beside": {"_count": 1}}, "Seeker": {"_count": 5, "": {"_count": 1}, "too": {"_count": 2}, "has": {"_count": 1}, "who": {"_count": 1}}, "natural": {"_count": 6, "": {"_count": 4}, "at": {"_count": 1}, "death": {"_count": 1}}, "clue": {"_count": 26, "what": {"_count": 10}, "who": {"_count": 1}, "sir": {"_count": 1}, "": {"_count": 6}, "where": {"_count": 1}, "whats": {"_count": 1}, "Yeah": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 2}, "he": {"_count": 1}, "how": {"_count": 1}}, "fiftyfoot": {"_count": 2, "dive": {"_count": 1}, "drop": {"_count": 1}}, "decent": {"_count": 15, "broom": {"_count": 2}, "one": {"_count": 1}, "breakfast": {"_count": 1}, "headmaster": {"_count": 1}, "head": {"_count": 1}, "bit": {"_count": 1}, "tailwind": {"_count": 1}, "pretense": {"_count": 1}, "family": {"_count": 1}, "meal": {"_count": 1}, "bruise": {"_count": 1}, "Shield": {"_count": 1}, "attempt": {"_count": 1}, "chance": {"_count": 1}}, "Nimbus": {"_count": 6, "Two": {"_count": 5}, "but": {"_count": 1}}, "Cleansweep": {"_count": 2, "Seven": {"_count": 1}, "Six": {"_count": 1}}, "better": {"_count": 41, "team": {"_count": 1}, "shot": {"_count": 1}, "look": {"_count": 14}, "example": {"_count": 1}, "reward": {"_count": 1}, "rat": {"_count": 1}, "spot": {"_count": 1}, "welcome": {"_count": 1}, "impression": {"_count": 1}, "mood": {"_count": 2}, "use": {"_count": 1}, "teacher": {"_count": 1}, "show": {"_count": 1}, "explanation": {"_count": 1}, "aim": {"_count": 1}, "word": {"_count": 1}, "time": {"_count": 1}, "life": {"_count": 1}, "term": {"_count": 1}, "light": {"_count": 1}, "permanent": {"_count": 1}, "view": {"_count": 1}, "sendoff": {"_count": 1}, "goodbye": {"_count": 1}, "wand": {"_count": 1}, "wizard": {"_count": 1}, "man": {"_count": 1}}, "century": {"_count": 8, "said": {"_count": 1}, "": {"_count": 3}, "to": {"_count": 1}, "ago": {"_count": 1}, "a": {"_count": 1}, "old": {"_count": 1}}, "seconds": {"_count": 2, "there": {"_count": 1}, "warning": {"_count": 1}}, "frown": {"_count": 3, "": {"_count": 1}, "on": {"_count": 2}}, "nighttime": {"_count": 4, "visit": {"_count": 1}, "stroll": {"_count": 3}}, "staircase": {"_count": 4, "to": {"_count": 2}, "": {"_count": 1}, "thinking": {"_count": 1}}, "noise": {"_count": 18, "in": {"_count": 2}, "like": {"_count": 4}, "and": {"_count": 2}, "as": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 4}, "": {"_count": 1}, "ahead": {"_count": 1}, "between": {"_count": 1}, "reached": {"_count": 1}}, "frightened": {"_count": 7, "squeak": {"_count": 1}, "sort": {"_count": 1}, "look": {"_count": 3}, "glance": {"_count": 1}, "voice": {"_count": 1}}, "suit": {"_count": 14, "of": {"_count": 14}}, "tapestry": {"_count": 8, "and": {"_count": 2}, "to": {"_count": 1}, "about": {"_count": 1}, "a": {"_count": 1}, "of": {"_count": 1}, "at": {"_count": 1}, "They": {"_count": 1}}, "hidden": {"_count": 5, "passageway": {"_count": 2}, "chamber": {"_count": 1}, "door": {"_count": 1}, "cavity": {"_count": 1}}, "doorknob": {"_count": 1, "rattled": {"_count": 1}}, "squeal": {"_count": 3, "of": {"_count": 1}, "": {"_count": 1}, "followed": {"_count": 1}}, "sanity": {"_count": 1, "voice": {"_count": 1}}, "swipe": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "nightmare": {"_count": 16, "this": {"_count": 1}, "honestly": {"_count": 1}, "Dad": {"_count": 1}, "": {"_count": 5}, "Im": {"_count": 1}, "IT": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}, "involving": {"_count": 1}, "said": {"_count": 3}}, "corridor": {"_count": 18, "": {"_count": 4}, "lined": {"_count": 2}, "without": {"_count": 1}, "that": {"_count": 4}, "ending": {"_count": 1}, "signposted": {"_count": 1}, "in": {"_count": 1}, "nearby": {"_count": 1}, "where": {"_count": 1}, "ahead": {"_count": 1}, "full": {"_count": 1}}, "monstrous": {"_count": 5, "dog": {"_count": 1}, "thing": {"_count": 1}, "balloon": {"_count": 1}, "scaly": {"_count": 1}, "halo": {"_count": 1}}, "dog": {"_count": 19, "that": {"_count": 3}, "but": {"_count": 1}, "": {"_count": 7}, "and": {"_count": 1}, "Ron": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "Sirius": {"_count": 1}, "started": {"_count": 1}, "trying": {"_count": 1}}, "trapdoor": {"_count": 3, "": {"_count": 3}}, "Comet": {"_count": 3, "Two": {"_count": 3}}, "reward": {"_count": 4, "for": {"_count": 2}, "if": {"_count": 1}, "from": {"_count": 1}}, "bright": {"_count": 24, "red": {"_count": 2}, "blue": {"_count": 2}, "endless": {"_count": 1}, "orange": {"_count": 1}, "acid": {"_count": 1}, "summers": {"_count": 1}, "purple": {"_count": 2}, "whitish": {"_count": 1}, "and": {"_count": 1}, "side": {"_count": 1}, "pinkandorange": {"_count": 1}, "idea": {"_count": 1}, "silver": {"_count": 2}, "light": {"_count": 2}, "boiling": {"_count": 1}, "gold": {"_count": 1}, "flat": {"_count": 1}, "white": {"_count": 1}, "mist": {"_count": 1}}, "soccer": {"_count": 1, "ball": {"_count": 1}}, "goal": {"_count": 4, "": {"_count": 2}, "yet": {"_count": 1}, "apiece": {"_count": 1}}, "short": {"_count": 82, "baseball": {"_count": 1}, "plump": {"_count": 3}, "demonstration": {"_count": 1}, "derisive": {"_count": 1}, "stretch": {"_count": 1}, "squat": {"_count": 1}, "bow": {"_count": 1}, "way": {"_count": 16}, "time": {"_count": 2}, "while": {"_count": 7}, "distance": {"_count": 12}, "explanation": {"_count": 1}, "and": {"_count": 2}, "walk": {"_count": 2}, "harsh": {"_count": 1}, "booming": {"_count": 1}, "wizard": {"_count": 1}, "piece": {"_count": 1}, "balding": {"_count": 1}, "blast": {"_count": 1}, "angry": {"_count": 1}, "space": {"_count": 1}, "barklike": {"_count": 1}, "pause": {"_count": 7}, "silence": {"_count": 2}, "meeting": {"_count": 1}, "but": {"_count": 1}, "knife": {"_count": 1}, "humorless": {"_count": 1}, "silver": {"_count": 2}, "black": {"_count": 1}, "visit": {"_count": 1}, "hallway": {"_count": 1}, "chute": {"_count": 1}, "dark": {"_count": 1}, "broad": {"_count": 1}, "break": {"_count": 1}}, "relief": {"_count": 11, "because": {"_count": 1}, "to": {"_count": 7}, "when": {"_count": 2}, "he": {"_count": 1}}, "buffalo": {"_count": 1, "on": {"_count": 1}}, "windmill": {"_count": 2, "": {"_count": 2}}, "glimpse": {"_count": 23, "of": {"_count": 23}}, "thousand": {"_count": 18, "more": {"_count": 3}, "fingernails": {"_count": 1}, "years": {"_count": 2}, "tiny": {"_count": 1}, "pieces": {"_count": 1}, "Galleons": {"_count": 4}, "pages": {"_count": 1}, "slimy": {"_count": 1}, "terrible": {"_count": 1}, "feet": {"_count": 1}, "times": {"_count": 1}, "banned": {"_count": 1}}, "baked": {"_count": 2, "potato": {"_count": 2}}, "dead": {"_count": 16, "faint": {"_count": 1}, "mouse": {"_count": 1}, "polecat": {"_count": 1}, "caterpillar": {"_count": 1}, "end": {"_count": 3}, "cow": {"_count": 1}, "eel": {"_count": 1}, "man": {"_count": 2}, "snake": {"_count": 1}, "body": {"_count": 1}, "houseelf": {"_count": 1}, "cold": {"_count": 1}, "basilisk": {"_count": 1}}, "Halloween": {"_count": 1, "joke": {"_count": 1}}, "crowd": {"_count": 10, "of": {"_count": 10}}, "deserted": {"_count": 9, "side": {"_count": 1}, "classroom": {"_count": 1}, "stretch": {"_count": 1}, "house": {"_count": 1}, "corridor": {"_count": 3}, "village": {"_count": 1}, "scene": {"_count": 1}}, "foul": {"_count": 10, "stench": {"_count": 1}, "simpering": {"_count": 1}, "scar": {"_count": 1}, "temper": {"_count": 1}, "common": {"_count": 1}, "": {"_count": 1}, "mood": {"_count": 1}, "little": {"_count": 1}, "odor": {"_count": 1}, "swarming": {"_count": 1}}, "patch": {"_count": 17, "of": {"_count": 15}, "clean": {"_count": 1}, "over": {"_count": 1}}, "dull": {"_count": 18, "granite": {"_count": 1}, "cloudy": {"_count": 1}, "thud": {"_count": 3}, "greenish": {"_count": 1}, "red": {"_count": 1}, "clunk": {"_count": 1}, "sinking": {"_count": 1}, "grinding": {"_count": 2}, "learnedbyheart": {"_count": 1}, "murmur": {"_count": 1}, "voice": {"_count": 1}, "March": {"_count": 1}, "inner": {"_count": 1}, "pink": {"_count": 1}, "hopelessness": {"_count": 1}}, "boulder": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "coconut": {"_count": 1, "": {"_count": 1}}, "tap": {"_count": 8, "he": {"_count": 1}, "on": {"_count": 2}, "of": {"_count": 3}, "marked": {"_count": 1}, "dance": {"_count": 1}}, "metal": {"_count": 1, "pipe": {"_count": 1}}, "terrible": {"_count": 35, "blow": {"_count": 1}, "state": {"_count": 1}, "scream": {"_count": 4}, "price": {"_count": 2}, "ordeal": {"_count": 2}, "terrible": {"_count": 1}, "grin": {"_count": 1}, "snarling": {"_count": 1}, "fate": {"_count": 1}, "mess": {"_count": 1}, "effort": {"_count": 1}, "groan": {"_count": 1}, "stab": {"_count": 1}, "crime": {"_count": 1}, "mistake": {"_count": 2}, "hollow": {"_count": 1}, "answer": {"_count": 1}, "curse": {"_count": 1}, "Dont": {"_count": 1}, "stain": {"_count": 1}, "drawnout": {"_count": 2}, "injury": {"_count": 1}, "fear": {"_count": 1}, "scorching": {"_count": 1}, "way": {"_count": 1}, "attack": {"_count": 1}, "cry": {"_count": 1}, "sound": {"_count": 1}}, "sickening": {"_count": 7, "crack": {"_count": 1}, "sight": {"_count": 1}, "feeling": {"_count": 1}, "crunch": {"_count": 1}, "splash": {"_count": 1}, "jolt": {"_count": 1}, "surge": {"_count": 1}}, "racket": {"_count": 4, "they": {"_count": 1}, "like": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}}, "faint": {"_count": 18, "whimper": {"_count": 1}, "whispering": {"_count": 1}, "moan": {"_count": 1}, "pop": {"_count": 1}, "clatter": {"_count": 1}, "misty": {"_count": 1}, "popping": {"_count": 1}, "note": {"_count": 2}, "gurgling": {"_count": 1}, "smile": {"_count": 3}, "frown": {"_count": 1}, "crease": {"_count": 1}, "silvery": {"_count": 1}, "rattling": {"_count": 1}, "air": {"_count": 1}}, "swift": {"_count": 7, "piercing": {"_count": 1}, "sharp": {"_count": 1}, "walk": {"_count": 1}, "smile": {"_count": 2}, "searching": {"_count": 1}, "kiss": {"_count": 1}}, "downright": {"_count": 2, "lie": {"_count": 2}}, "mountain": {"_count": 8, "troll": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 3}, "lake": {"_count": 1}, "road": {"_count": 1}, "that": {"_count": 1}}, "fullgrown": {"_count": 2, "mountain": {"_count": 1}, "man": {"_count": 1}}, "twelvefoot": {"_count": 1, "mountain": {"_count": 1}}, "mattress": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 18, "foul": {"_count": 1}, "match": {"_count": 7}, "referee": {"_count": 1}, "game": {"_count": 1}, "field": {"_count": 2}, "team": {"_count": 2}, "player": {"_count": 2}, "injury": {"_count": 1}, "final": {"_count": 1}}, "World": {"_count": 1, "Cup": {"_count": 1}}, "jam": {"_count": 5, "jar": {"_count": 2}, "doughnut": {"_count": 1}, "tart": {"_count": 2}}, "try": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "diversion": {"_count": 8, "": {"_count": 3}, "in": {"_count": 1}, "by": {"_count": 1}, "how": {"_count": 1}, "going": {"_count": 1}, "if": {"_count": 1}}, "tricky": {"_count": 3, "little": {"_count": 1}, "stage": {"_count": 1}, "operation": {"_count": 1}}, "fifth": {"_count": 6, "year": {"_count": 4}, "table": {"_count": 1}, "time": {"_count": 1}}, "neat": {"_count": 8, "pass": {"_count": 1}, "little": {"_count": 2}, "and": {"_count": 1}, "line": {"_count": 1}, "pile": {"_count": 1}, "salmoncolored": {"_count": 1}, "jinx": {"_count": 1}}, "reserve": {"_count": 2, "back": {"_count": 1}, "Seeker": {"_count": 1}}, "Bludger": {"_count": 27, "Quaffle": {"_count": 1}, "decided": {"_count": 1}, "hope": {"_count": 1}, "at": {"_count": 4}, "his": {"_count": 1}, "ducking": {"_count": 1}, "toward": {"_count": 3}, "that": {"_count": 2}, "hit": {"_count": 1}, "SHE": {"_count": 1}, "": {"_count": 2}, "exceptionally": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 2}, "to": {"_count": 1}, "close": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}}, "speeding": {"_count": 3, "Bludger": {"_count": 1}, "cannonball": {"_count": 1}, "Snitch": {"_count": 1}}, "reflection": {"_count": 2, "from": {"_count": 1}, "in": {"_count": 1}}, "cannonball": {"_count": 1, "than": {"_count": 1}}, "penalty": {"_count": 3, "to": {"_count": 2}, "because": {"_count": 1}}, "split": {"_count": 38, "second": {"_count": 36}, "seconds": {"_count": 2}}, "mind": {"_count": 3, "to": {"_count": 3}}, "Greek": {"_count": 1, "chappie": {"_count": 1}}, "jinx": {"_count": 9, "when": {"_count": 1}, "on": {"_count": 1}, "while": {"_count": 1}, "that": {"_count": 3}, "or": {"_count": 2}, "": {"_count": 1}}, "student": {"_count": 15, "": {"_count": 2}, "properly": {"_count": 1}, "in": {"_count": 1}, "left": {"_count": 1}, "whose": {"_count": 1}, "it": {"_count": 1}, "at": {"_count": 1}, "was": {"_count": 1}, "who": {"_count": 1}, "head": {"_count": 1}, "before": {"_count": 1}, "to": {"_count": 1}, "produce": {"_count": 1}, "yet": {"_count": 1}}, "bitter": {"_count": 2, "wind": {"_count": 1}, "laugh": {"_count": 1}}, "mist": {"_count": 2, "before": {"_count": 2}}, "widemouthed": {"_count": 1, "tree": {"_count": 1}}, "palace": {"_count": 3, "compared": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "treat": {"_count": 6, "": {"_count": 4}, "like": {"_count": 1}, "just": {"_count": 1}}, "hint": {"_count": 9, "I": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 6}, "when": {"_count": 1}}, "specially": {"_count": 2, "signed": {"_count": 2}}, "feather": {"_count": 4, "duster": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 2}}, "toasting": {"_count": 1, "fork": {"_count": 1}}, "drawback": {"_count": 1, "at": {"_count": 1}}, "roughly": {"_count": 2, "cut": {"_count": 1}, "dug": {"_count": 1}}, "fiftypence": {"_count": 1, "piece": {"_count": 1}}, "shape": {"_count": 4, "": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}}, "Weasley": {"_count": 3, "sweater": {"_count": 2}, "": {"_count": 1}}, "thick": {"_count": 40, "hand": {"_count": 1}, "wad": {"_count": 1}, "tartan": {"_count": 1}, "fleshcolored": {"_count": 1}, "black": {"_count": 5}, "woollen": {"_count": 1}, "blackbound": {"_count": 1}, "white": {"_count": 2}, "leather": {"_count": 2}, "tree": {"_count": 1}, "layer": {"_count": 1}, "roll": {"_count": 1}, "growth": {"_count": 1}, "orange": {"_count": 1}, "magenta": {"_count": 1}, "icy": {"_count": 1}, "gossamer": {"_count": 1}, "finger": {"_count": 3}, "hairy": {"_count": 1}, "arm": {"_count": 1}, "yellow": {"_count": 1}, "new": {"_count": 1}, "gold": {"_count": 2}, "dressing": {"_count": 1}, "rubber": {"_count": 1}, "coppery": {"_count": 1}, "voice": {"_count": 3}, "bushy": {"_count": 1}, "brown": {"_count": 1}}, "sweater": {"_count": 3, "said": {"_count": 1}, "next": {"_count": 1}, "with": {"_count": 1}}, "hushed": {"_count": 20, "voice": {"_count": 20}}, "yell": {"_count": 13, "": {"_count": 2}, "of": {"_count": 5}, "from": {"_count": 2}, "he": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "G": {"_count": 1, "": {"_count": 1}}, "Christmas": {"_count": 9, "dinner": {"_count": 1}, "card": {"_count": 1}, "party": {"_count": 2}, "present": {"_count": 3}, "bauble": {"_count": 1}, "broadcast": {"_count": 1}}, "blast": {"_count": 12, "like": {"_count": 3}, "of": {"_count": 5}, "that": {"_count": 3}, "as": {"_count": 1}}, "cannon": {"_count": 3, "and": {"_count": 1}, "blast": {"_count": 2}}, "cloud": {"_count": 10, "of": {"_count": 8}, "drifted": {"_count": 1}, "": {"_count": 1}}, "rear": {"_count": 1, "admirals": {"_count": 1}}, "flowered": {"_count": 2, "bonnet": {"_count": 1}, "apron": {"_count": 1}}, "Grow": {"_count": 1, "YourOwnWarts": {"_count": 1}}, "happy": {"_count": 15, "afternoon": {"_count": 1}, "blur": {"_count": 1}, "practice": {"_count": 1}, "birthday": {"_count": 1}, "cup": {"_count": 1}, "memory": {"_count": 3}, "thought": {"_count": 1}, "feeling": {"_count": 2}, "peaceful": {"_count": 1}, "Christmas": {"_count": 1}, "seventeenth": {"_count": 1}, "baby": {"_count": 1}}, "meal": {"_count": 2, "of": {"_count": 2}}, "tall": {"_count": 25, "suit": {"_count": 1}, "witch": {"_count": 1}, "and": {"_count": 1}, "wizard": {"_count": 2}, "fullgrown": {"_count": 1}, "fountain": {"_count": 1}, "oak": {"_count": 1}, "dark": {"_count": 1}, "man": {"_count": 2}, "boy": {"_count": 1}, "black": {"_count": 2}, "skinny": {"_count": 1}, "tweedy": {"_count": 1}, "thin": {"_count": 1}, "figure": {"_count": 2}, "young": {"_count": 1}, "order": {"_count": 1}, "faceless": {"_count": 1}, "window": {"_count": 1}, "statue": {"_count": 1}, "ghost": {"_count": 1}}, "shortcut": {"_count": 5, "because": {"_count": 1}, "Ron": {"_count": 1}, "that": {"_count": 1}, "between": {"_count": 1}, "hoping": {"_count": 1}}, "distant": {"_count": 26, "noise": {"_count": 1}, "shout": {"_count": 1}, "door": {"_count": 1}, "land": {"_count": 1}, "sound": {"_count": 1}, "rumble": {"_count": 1}, "roar": {"_count": 1}, "corner": {"_count": 4}, "table": {"_count": 1}, "glimpse": {"_count": 1}, "view": {"_count": 2}, "rhythmic": {"_count": 1}, "knock": {"_count": 1}, "shed": {"_count": 1}, "voice": {"_count": 1}, "chair": {"_count": 1}, "screaming": {"_count": 1}, "village": {"_count": 1}, "storm": {"_count": 1}, "bank": {"_count": 1}, "part": {"_count": 1}, "scream": {"_count": 1}}, "personal": {"_count": 4, "question": {"_count": 1}, "insult": {"_count": 2}, "interest": {"_count": 1}}, "different": {"_count": 44, "view": {"_count": 2}, "owl": {"_count": 1}, "world": {"_count": 1}, "language": {"_count": 1}, "tack": {"_count": 2}, "one": {"_count": 2}, "color": {"_count": 2}, "animal": {"_count": 1}, "home": {"_count": 1}, "sort": {"_count": 1}, "species": {"_count": 1}, "matter": {"_count": 1}, "seat": {"_count": 1}, "memory": {"_count": 1}, "day": {"_count": 1}, "trial": {"_count": 1}, "school": {"_count": 1}, "hex": {"_count": 1}, "member": {"_count": 1}, "tune": {"_count": 1}, "bow": {"_count": 1}, "ward": {"_count": 1}, "fancy": {"_count": 1}, "story": {"_count": 1}, "direction": {"_count": 1}, "way": {"_count": 2}, "race": {"_count": 1}, "though": {"_count": 1}, "personality": {"_count": 1}, "safe": {"_count": 1}, "wand": {"_count": 1}, "motive": {"_count": 1}, "answer": {"_count": 1}, "place": {"_count": 1}, "name": {"_count": 1}, "breed": {"_count": 1}, "plan": {"_count": 1}, "voice": {"_count": 1}, "kind": {"_count": 1}}, "fanatic": {"_count": 1, "but": {"_count": 1}}, "Chocolate": {"_count": 7, "Frog": {"_count": 7}}, "weak": {"_count": 10, "smile": {"_count": 3}, "chuckle": {"_count": 1}, "talentless": {"_count": 1}, "silver": {"_count": 1}, "spot": {"_count": 1}, "link": {"_count": 1}, "sort": {"_count": 1}, "hopeful": {"_count": 1}}, "legendary": {"_count": 1, "substance": {"_count": 1}}, "Sorcerers": {"_count": 4, "Stone": {"_count": 3}, "St": {"_count": 1}}, "biased": {"_count": 1, "referee": {"_count": 1}}, "place": {"_count": 36, "in": {"_count": 5}, "": {"_count": 2}, "most": {"_count": 1}, "dementors": {"_count": 1}, "like": {"_count": 3}, "deep": {"_count": 1}, "of": {"_count": 2}, "for": {"_count": 2}, "we": {"_count": 1}, "where": {"_count": 4}, "to": {"_count": 5}, "a": {"_count": 1}, "at": {"_count": 3}, "you": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "near": {"_count": 1}}, "somersault": {"_count": 1, "": {"_count": 1}}, "bet": {"_count": 5, "": {"_count": 3}, "on": {"_count": 2}}, "spectacular": {"_count": 5, "dive": {"_count": 1}, "goal": {"_count": 1}, "handlebar": {"_count": 1}, "golden": {"_count": 1}, "view": {"_count": 1}}, "bullet": {"_count": 8, "": {"_count": 2}, "the": {"_count": 1}, "once": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}}, "record": {"_count": 10, "no": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 5}, "for": {"_count": 1}, "Potter": {"_count": 1}, "fee": {"_count": 1}}, "towering": {"_count": 13, "beech": {"_count": 1}, "oak": {"_count": 1}, "Gryffindor": {"_count": 1}, "hat": {"_count": 1}, "rage": {"_count": 1}, "marble": {"_count": 1}, "mass": {"_count": 1}, "temper": {"_count": 3}, "pine": {"_count": 1}, "crystal": {"_count": 1}, "building": {"_count": 1}}, "shadowy": {"_count": 11, "clearing": {"_count": 1}, "corner": {"_count": 5}, "figure": {"_count": 1}, "hallway": {"_count": 1}, "room": {"_count": 1}, "ceiling": {"_count": 1}, "alleyway": {"_count": 1}}, "party": {"_count": 7, "Fred": {"_count": 1}, "down": {"_count": 1}, "of": {"_count": 2}, "before": {"_count": 1}, "": {"_count": 2}}, "shifty": {"_count": 4, "voice": {"_count": 1}, "at": {"_count": 1}, "anxious": {"_count": 1}, "grin": {"_count": 1}}, "job": {"_count": 34, "hushing": {"_count": 1}, "coverin": {"_count": 1}, "spotting": {"_count": 1}, "getting": {"_count": 1}, "when": {"_count": 1}, "proving": {"_count": 1}, "secured": {"_count": 1}, "": {"_count": 5}, "hiding": {"_count": 1}, "in": {"_count": 1}, "indeed": {"_count": 1}, "ere": {"_count": 1}, "at": {"_count": 2}, "that": {"_count": 1}, "for": {"_count": 3}, "there": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}, "we": {"_count": 1}, "Of": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "doing": {"_count": 1}, "after": {"_count": 1}, "Give": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "warm": {"_count": 4, "day": {"_count": 1}, "flattering": {"_count": 1}, "breeze": {"_count": 1}, "ball": {"_count": 1}}, "blazing": {"_count": 3, "fire": {"_count": 2}, "row": {"_count": 1}}, "soul": {"_count": 4, "knows": {"_count": 1}, "alive": {"_count": 1}, "that": {"_count": 1}, "like": {"_count": 1}}, "fortune": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "stranger": {"_count": 9, "": {"_count": 1}, "turns": {"_count": 1}, "group": {"_count": 1}, "darkhaired": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "speaking": {"_count": 1}}, "Norwegian": {"_count": 1, "Ridgeback": {"_count": 1}}, "wooden": {"_count": 7, "house": {"_count": 1}, "pail": {"_count": 1}, "chair": {"_count": 2}, "signpost": {"_count": 1}, "front": {"_count": 1}, "object": {"_count": 1}}, "peaceful": {"_count": 1, "life": {"_count": 1}}, "scraping": {"_count": 2, "noise": {"_count": 1}, "as": {"_count": 1}}, "crumpled": {"_count": 8, "black": {"_count": 1}, "heap": {"_count": 3}, "piece": {"_count": 1}, "quill": {"_count": 1}, "letter": {"_count": 1}, "look": {"_count": 1}}, "distance": {"_count": 8, "there": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "from": {"_count": 1}, "Harry": {"_count": 1}}, "bloody": {"_count": 8, "handkerchief": {"_count": 1}, "lump": {"_count": 1}, "light": {"_count": 1}, "nose": {"_count": 1}, "mass": {"_count": 1}, "lip": {"_count": 1}, "footprint": {"_count": 1}, "bandage": {"_count": 1}}, "quill": {"_count": 18, "for": {"_count": 1}, "from": {"_count": 3}, "and": {"_count": 4}, "had": {"_count": 1}, "": {"_count": 2}, "here": {"_count": 1}, "have": {"_count": 1}, "out": {"_count": 1}, "poised": {"_count": 1}, "then": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}}, "fluffy": {"_count": 2, "little": {"_count": 1}, "pink": {"_count": 1}}, "lullaby": {"_count": 1, "": {"_count": 1}}, "mark": {"_count": 8, "of": {"_count": 6}, "": {"_count": 1}, "Im": {"_count": 1}}, "hitch": {"_count": 1, "": {"_count": 1}}, "sweat": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "hoarse": {"_count": 7, "voice": {"_count": 3}, "whisper": {"_count": 3}, "deep": {"_count": 1}}, "bandaged": {"_count": 1, "tail": {"_count": 1}}, "muffled": {"_count": 16, "voice": {"_count": 5}, "pounding": {"_count": 1}, "squeak": {"_count": 1}, "rumbling": {"_count": 1}, "yell": {"_count": 2}, "hooting": {"_count": 1}, "grunt": {"_count": 1}, "commotion": {"_count": 1}, "sort": {"_count": 1}, "crunch": {"_count": 1}, "clunk": {"_count": 1}}, "tartan": {"_count": 4, "bathrobe": {"_count": 1}, "tin": {"_count": 1}, "carpetbag": {"_count": 1}, "edged": {"_count": 1}}, "hair": {"_count": 4, "net": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 2}}, "cheery": {"_count": 3, "lot": {"_count": 1}, "wave": {"_count": 1}, "voice": {"_count": 1}}, "drag": {"_count": 2, "Harry": {"_count": 1}, "after": {"_count": 1}}, "teachers": {"_count": 2, "question": {"_count": 1}, "nose": {"_count": 1}}, "detention": {"_count": 9, "too": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "each": {"_count": 1}, "drawled": {"_count": 1}, "with": {"_count": 2}, "under": {"_count": 1}}, "pity": {"_count": 5, "they": {"_count": 1}, "because": {"_count": 1}, "theyve": {"_count": 1}, "were": {"_count": 1}, "it": {"_count": 1}}, "quiver": {"_count": 1, "of": {"_count": 1}}, "unicorn": {"_count": 9, "in": {"_count": 1}, "theyre": {"_count": 1}, "bin": {"_count": 2}, "said": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 1}, "either": {"_count": 1}, "which": {"_count": 1}}, "coward": {"_count": 9, "said": {"_count": 1}, "especially": {"_count": 1}, "": {"_count": 5}, "for": {"_count": 1}, "Sirius": {"_count": 1}}, "fork": {"_count": 5, "in": {"_count": 1}, "of": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}}, "ray": {"_count": 3, "of": {"_count": 3}}, "spot": {"_count": 15, "of": {"_count": 7}, "on": {"_count": 3}, "more": {"_count": 2}, "some": {"_count": 1}, "several": {"_count": 1}, "a": {"_count": 1}}, "werewolf": {"_count": 28, "be": {"_count": 1}, "but": {"_count": 2}, "": {"_count": 11}, "when": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "hes": {"_count": 1}, "out": {"_count": 1}, "see": {"_count": 1}, "this": {"_count": 1}, "teaching": {"_count": 1}, "poor": {"_count": 1}, "personally": {"_count": 1}, "once": {"_count": 1}, "so": {"_count": 1}, "to": {"_count": 1}, "married": {"_count": 1}}, "mossy": {"_count": 1, "tree": {"_count": 1}}, "clearing": {"_count": 6, "ahead": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}, "surrounded": {"_count": 1}, "that": {"_count": 1}}, "horse": {"_count": 5, "": {"_count": 4}, "hes": {"_count": 1}}, "horses": {"_count": 2, "gleaming": {"_count": 1}, "chestnut": {"_count": 1}}, "centaur": {"_count": 5, "": {"_count": 3}, "we": {"_count": 1}, "a": {"_count": 1}}, "straight": {"_count": 6, "answer": {"_count": 2}, "face": {"_count": 3}, "vertical": {"_count": 1}}, "fair": {"_count": 10, "few": {"_count": 2}, "question": {"_count": 1}, "old": {"_count": 1}, "exchange": {"_count": 1}, "amount": {"_count": 2}, "point": {"_count": 1}, "representation": {"_count": 1}, "hearing": {"_count": 1}}, "bend": {"_count": 2, "in": {"_count": 2}}, "harder": {"_count": 1, "time": {"_count": 1}}, "slithering": {"_count": 1, "sound": {"_count": 1}}, "hooded": {"_count": 5, "figure": {"_count": 3}, "cloak": {"_count": 1}, "stranger": {"_count": 1}}, "pain": {"_count": 3, "like": {"_count": 1}, "having": {"_count": 1}, "shot": {"_count": 1}}, "palomino": {"_count": 1, "body": {"_count": 1}}, "human": {"_count": 20, "on": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}, "voice": {"_count": 2}, "being": {"_count": 2}, "to": {"_count": 1}, "body": {"_count": 1}, "hand": {"_count": 2}, "chameleon": {"_count": 1}, "hosepipe": {"_count": 1}, "said": {"_count": 1}, "head": {"_count": 1}, "What": {"_count": 1}, "form": {"_count": 2}, "presence": {"_count": 1}, "outline": {"_count": 1}}, "common": {"_count": 5, "mule": {"_count": 2}, "room": {"_count": 1}, "goal": {"_count": 1}, "root": {"_count": 1}}, "walk": {"_count": 10, "warned": {"_count": 1}, "said": {"_count": 3}, "": {"_count": 3}, "Ron": {"_count": 1}, "than": {"_count": 1}, "tonight": {"_count": 1}}, "particularly": {"_count": 42, "dense": {"_count": 1}, "loud": {"_count": 3}, "fat": {"_count": 1}, "grim": {"_count": 1}, "tense": {"_count": 1}, "nasty": {"_count": 2}, "horrible": {"_count": 1}, "large": {"_count": 4}, "wild": {"_count": 2}, "vindictive": {"_count": 1}, "sloppy": {"_count": 1}, "refined": {"_count": 1}, "bad": {"_count": 1}, "fine": {"_count": 2}, "knobbly": {"_count": 1}, "jagged": {"_count": 1}, "strong": {"_count": 1}, "juicy": {"_count": 2}, "painful": {"_count": 2}, "ugly": {"_count": 1}, "dismal": {"_count": 1}, "difficult": {"_count": 1}, "stubborn": {"_count": 1}, "minuscule": {"_count": 1}, "good": {"_count": 2}, "jazzy": {"_count": 1}, "long": {"_count": 1}, "foulmouthed": {"_count": 1}, "happy": {"_count": 1}, "deep": {"_count": 1}, "sumptuous": {"_count": 1}}, "halflife": {"_count": 1, "a": {"_count": 1}}, "cursed": {"_count": 3, "life": {"_count": 1}, "hat": {"_count": 1}, "necklace": {"_count": 1}}, "terrified": {"_count": 10, "whisper": {"_count": 3}, "voice": {"_count": 2}, "silence": {"_count": 1}, "squeak": {"_count": 1}, "cry": {"_count": 1}, "look": {"_count": 1}, "pointed": {"_count": 1}}, "pineapple": {"_count": 1, "tapdance": {"_count": 1}}, "desk": {"_count": 15, "": {"_count": 3}, "at": {"_count": 2}, "job": {"_count": 1}, "on": {"_count": 1}, "drawer": {"_count": 1}, "marked": {"_count": 1}, "and": {"_count": 2}, "slid": {"_count": 1}, "between": {"_count": 1}, "rips": {"_count": 1}, "in": {"_count": 1}}, "snuffbox": {"_count": 1, "points": {"_count": 1}}, "Forgetfulness": {"_count": 1, "potion": {"_count": 1}}, "warning": {"_count": 14, "": {"_count": 3}, "look": {"_count": 5}, "about": {"_count": 1}, "voice": {"_count": 1}, "from": {"_count": 1}, "but": {"_count": 1}, "tone": {"_count": 1}, "no": {"_count": 1}}, "hurry": {"_count": 15, "": {"_count": 8}, "Borgin": {"_count": 1}, "Quidditch": {"_count": 1}, "before": {"_count": 1}, "Black": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 2}}, "lurking": {"_count": 2, "feeling": {"_count": 1}, "doubt": {"_count": 1}}, "drink": {"_count": 22, "": {"_count": 11}, "in": {"_count": 1}, "something": {"_count": 1}, "before": {"_count": 1}, "of": {"_count": 2}, "while": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "youd": {"_count": 1}}, "day": {"_count": 26, "like": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 3}, "at": {"_count": 1}, "with": {"_count": 1}, "older": {"_count": 1}, "before": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "eh": {"_count": 1}, "off": {"_count": 2}, "now": {"_count": 1}, "which": {"_count": 1}, "early": {"_count": 1}, "for": {"_count": 1}, "trip": {"_count": 1}, "Neville": {"_count": 1}, "passed": {"_count": 1}, "courtesy": {"_count": 1}}, "board": {"_count": 5, "": {"_count": 2}, "her": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}}, "harp": {"_count": 1, "said": {"_count": 1}}, "tune": {"_count": 2, "but": {"_count": 1}, "to": {"_count": 1}}, "postage": {"_count": 1, "stamp": {"_count": 1}}, "damp": {"_count": 3, "wall": {"_count": 1}, "red": {"_count": 1}, "chill": {"_count": 1}}, "jet": {"_count": 11, "of": {"_count": 11}}, "crisis": {"_count": 1, "\u2018theres": {"_count": 1}}, "fullygrown": {"_count": 2, "dragon": {"_count": 1}, "wizard": {"_count": 1}}, "brilliantly": {"_count": 2, "lit": {"_count": 1}, "purple": {"_count": 1}}, "knack": {"_count": 3, "for": {"_count": 2}, "of": {"_count": 1}}, "minutes": {"_count": 5, "weaving": {"_count": 1}, "head": {"_count": 1}, "frantic": {"_count": 1}, "time": {"_count": 1}, "silence": {"_count": 1}}, "bent": {"_count": 3, "wing": {"_count": 1}, "card": {"_count": 1}, "coat": {"_count": 1}}, "knight": {"_count": 3, "said": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}}, "bishop": {"_count": 1, "and": {"_count": 1}}, "castle": {"_count": 2, "turned": {"_count": 1}, "also": {"_count": 1}}, "table": {"_count": 31, "with": {"_count": 3}, "piled": {"_count": 1}, "surrounded": {"_count": 2}, "between": {"_count": 1}, "fast": {"_count": 1}, "and": {"_count": 4}, "the": {"_count": 1}, "far": {"_count": 1}, "": {"_count": 3}, "nearby": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}, "then": {"_count": 1}, "at": {"_count": 1}, "by": {"_count": 2}, "away": {"_count": 1}, "in": {"_count": 1}, "right": {"_count": 1}, "together": {"_count": 1}, "over": {"_count": 1}, "loaded": {"_count": 1}, "where": {"_count": 1}}, "puzzle": {"_count": 1, "": {"_count": 1}}, "rounded": {"_count": 1, "bottle": {"_count": 1}}, "countercurse": {"_count": 1, "trying": {"_count": 1}}, "waste": {"_count": 13, "of": {"_count": 11}, "it": {"_count": 1}, "": {"_count": 1}}, "special": {"_count": 3, "gift": {"_count": 1}, "ward": {"_count": 1}, "case": {"_count": 1}}, "spasm": {"_count": 2, "of": {"_count": 2}}, "blood": {"_count": 3, "red": {"_count": 1}, "relative": {"_count": 1}, "traitor": {"_count": 1}}, "break": {"_count": 9, "for": {"_count": 2}, "from": {"_count": 2}, "": {"_count": 3}, "said": {"_count": 1}, "spent": {"_count": 1}}, "muscle": {"_count": 6, "": {"_count": 3}, "going": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}}, "back": {"_count": 6, "to": {"_count": 1}, "room": {"_count": 2}, "flip": {"_count": 3}}, "body": {"_count": 16, "of": {"_count": 1}, "has": {"_count": 1}, "": {"_count": 5}, "I": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "leapt": {"_count": 1}, "He": {"_count": 1}, "fly": {"_count": 1}, "fell": {"_count": 1}, "in": {"_count": 1}}, "courageous": {"_count": 1, "fight": {"_count": 1}}, "needlesharp": {"_count": 1, "pain": {"_count": 1}}, "deadly": {"_count": 7, "curse": {"_count": 1}, "whisper": {"_count": 1}, "dull": {"_count": 1}, "enemy": {"_count": 1}, "voice": {"_count": 2}, "blow": {"_count": 1}}, "curse": {"_count": 21, "": {"_count": 3}, "from": {"_count": 2}, "that": {"_count": 2}, "like": {"_count": 2}, "breaker": {"_count": 1}, "by": {"_count": 1}, "scar": {"_count": 1}, "over": {"_count": 1}, "flew": {"_count": 1}, "and": {"_count": 1}, "Another": {"_count": 1}, "so": {"_count": 1}, "at": {"_count": 1}, "of": {"_count": 2}, "surely": {"_count": 1}}, "wonderful": {"_count": 10, "thing": {"_count": 2}, "golfer": {"_count": 1}, "book": {"_count": 1}, "feeling": {"_count": 1}, "treat": {"_count": 1}, "possibility": {"_count": 1}, "job": {"_count": 1}, "Object": {"_count": 1}, "momentary": {"_count": 1}}, "losing": {"_count": 3, "battle": {"_count": 3}}, "scar": {"_count": 6, "no": {"_count": 1}, "while": {"_count": 1}, "on": {"_count": 3}, "now": {"_count": 1}}, "bird": {"_count": 9, "out": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}, "dropping": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "fluttered": {"_count": 1}}, "vomitflavored": {"_count": 1, "one": {"_count": 1}}, "pretty": {"_count": 14, "good": {"_count": 4}, "face": {"_count": 1}, "boring": {"_count": 1}, "thorough": {"_count": 1}, "sight": {"_count": 1}, "cool": {"_count": 1}, "girl": {"_count": 1}, "and": {"_count": 1}, "roomy": {"_count": 1}, "blonde": {"_count": 1}, "lame": {"_count": 1}}, "present": {"_count": 7, "": {"_count": 3}, "wrapped": {"_count": 1}, "too": {"_count": 1}, "sir": {"_count": 1}, "for": {"_count": 1}}, "stoat": {"_count": 1, "sandwich": {"_count": 1}}, "handsome": {"_count": 15, "leathercovered": {"_count": 1}, "tawny": {"_count": 1}, "wooden": {"_count": 1}, "set": {"_count": 2}, "Christmas": {"_count": 1}, "oliveskinned": {"_count": 1}, "display": {"_count": 1}, "leather": {"_count": 1}, "chocolate": {"_count": 1}, "scarlet": {"_count": 1}, "room": {"_count": 1}, "youth": {"_count": 1}, "manor": {"_count": 1}, "marble": {"_count": 1}}, "seat": {"_count": 23, "between": {"_count": 2}, "at": {"_count": 6}, "right": {"_count": 2}, "Harry": {"_count": 2}, "": {"_count": 2}, "too": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}, "opposite": {"_count": 1}, "beside": {"_count": 1}, "by": {"_count": 1}, "a": {"_count": 1}, "behind": {"_count": 1}, "where": {"_count": 1}}, "radish": {"_count": 1, "with": {"_count": 1}}, "cage": {"_count": 6, "in": {"_count": 1}, "of": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "manner": {"_count": 4, "of": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}, "o": {"_count": 1}}, "winded": {"_count": 1, "rhinoceros": {"_count": 1}}, "bomb": {"_count": 4, "that": {"_count": 1}, "sprinted": {"_count": 1}, "sounded": {"_count": 1}, "": {"_count": 1}}, "constant": {"_count": 5, "stomachache": {"_count": 1}, "war": {"_count": 1}, "fall": {"_count": 1}, "stream": {"_count": 1}, "low": {"_count": 1}}, "drop": {"_count": 3, "of": {"_count": 3}}, "cake": {"_count": 1, "but": {"_count": 1}}, "vacation": {"_count": 1, "home": {"_count": 1}}, "brilliant": {"_count": 14, "sunny": {"_count": 1}, "red": {"_count": 1}, "joke": {"_count": 1}, "shade": {"_count": 1}, "theory": {"_count": 1}, "white": {"_count": 1}, "idea": {"_count": 2}, "speck": {"_count": 1}, "young": {"_count": 1}, "pink": {"_count": 1}, "wizard": {"_count": 1}, "light": {"_count": 1}, "Patronus": {"_count": 1}}, "message": {"_count": 12, "from": {"_count": 3}, "": {"_count": 1}, "to": {"_count": 5}, "round": {"_count": 1}, "for": {"_count": 2}}, "sight": {"_count": 2, "of": {"_count": 2}}, "ruin": {"_count": 1, "of": {"_count": 1}}, "jeering": {"_count": 1, "voice": {"_count": 1}}, "lump": {"_count": 8, "of": {"_count": 4}, "to": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}, "swelling": {"_count": 1}}, "salmonpink": {"_count": 1, "cocktail": {"_count": 1}}, "highpitched": {"_count": 17, "voice": {"_count": 5}, "mewling": {"_count": 1}, "scream": {"_count": 2}, "whimpering": {"_count": 1}, "whistle": {"_count": 2}, "and": {"_count": 1}, "chattering": {"_count": 1}, "strained": {"_count": 1}, "giggle": {"_count": 1}, "outofcontrol": {"_count": 1}, "querulous": {"_count": 1}}, "houseelf": {"_count": 31, "in": {"_count": 1}, "bound": {"_count": 1}, "": {"_count": 9}, "to": {"_count": 1}, "smashed": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 1}, "free": {"_count": 1}, "who": {"_count": 3}, "whos": {"_count": 1}, "no": {"_count": 1}, "he": {"_count": 1}, "called": {"_count": 2}, "edged": {"_count": 1}, "grumbled": {"_count": 1}, "appeared": {"_count": 1}, "said": {"_count": 2}, "taste": {"_count": 1}, "complained": {"_count": 1}}, "load": {"_count": 16, "of": {"_count": 15}, "smaller": {"_count": 1}}, "silence": {"_count": 15, "broken": {"_count": 1}, "deep": {"_count": 1}, "": {"_count": 2}, "fell": {"_count": 2}, "in": {"_count": 2}, "and": {"_count": 1}, "while": {"_count": 1}, "so": {"_count": 2}, "which": {"_count": 1}, "then": {"_count": 1}, "only": {"_count": 1}}, "plot": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "if": {"_count": 1}}, "brother": {"_count": 5, "has": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "with": {"_count": 1}}, "scribble": {"_count": 1, "that": {"_count": 1}}, "danger": {"_count": 8, "you": {"_count": 1}, "to": {"_count": 6}, "sign": {"_count": 1}}, "pudding": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "tragic": {"_count": 6, "look": {"_count": 1}, "sob": {"_count": 1}, "past": {"_count": 1}, "little": {"_count": 1}, "accident": {"_count": 1}, "blow": {"_count": 1}}, "heartstopping": {"_count": 1, "crash": {"_count": 1}}, "crack": {"_count": 9, "like": {"_count": 1}, "in": {"_count": 2}, "at": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "a": {"_count": 1}, "A": {"_count": 1}}, "whip": {"_count": 5, "Dobby": {"_count": 1}, "crack": {"_count": 1}, "at": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 1}}, "mop": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "banshee": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "demonic": {"_count": 1, "glint": {"_count": 1}}, "Hover": {"_count": 4, "Charm": {"_count": 4}}, "serious": {"_count": 10, "offense": {"_count": 1}, "argument": {"_count": 1}, "breach": {"_count": 2}, "miscarriage": {"_count": 1}, "injury": {"_count": 1}, "business": {"_count": 1}, "flaw": {"_count": 1}, "blow": {"_count": 1}, "threat": {"_count": 1}}, "maniac": {"_count": 5, "he": {"_count": 1}, "and": {"_count": 2}, "all": {"_count": 1}, "didnt": {"_count": 1}}, "catflap": {"_count": 1, "in": {"_count": 1}}, "bowl": {"_count": 11, "of": {"_count": 7}, "full": {"_count": 1}, "neatly": {"_count": 1}, "said": {"_count": 1}, "on": {"_count": 1}}, "card": {"_count": 8, "reading": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "or": {"_count": 1}, "castle": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}, "dramatically": {"_count": 1}}, "frecklefaced": {"_count": 1, "redhaired": {"_count": 1}}, "rope": {"_count": 4, "to": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}, "ladder": {"_count": 1}}, "bar": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "crunching": {"_count": 3, "noise": {"_count": 1}, "thud": {"_count": 1}, "grinding": {"_count": 1}}, "bellow": {"_count": 2, "like": {"_count": 1}, "of": {"_count": 1}}, "grudge": {"_count": 2, "against": {"_count": 2}}, "lousy": {"_count": 1, "old": {"_count": 1}}, "delivery": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "compass": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "tumbledown": {"_count": 1, "garage": {"_count": 1}}, "jumble": {"_count": 3, "of": {"_count": 3}}, "sabertoothed": {"_count": 1, "tiger": {"_count": 1}}, "wand": {"_count": 73, "sticking": {"_count": 2}, "and": {"_count": 6}, "": {"_count": 24}, "for": {"_count": 2}, "in": {"_count": 5}, "performed": {"_count": 1}, "emerged": {"_count": 1}, "that": {"_count": 6}, "since": {"_count": 1}, "meets": {"_count": 1}, "steady": {"_count": 1}, "or": {"_count": 2}, "withdrawn": {"_count": 1}, "on": {"_count": 1}, "Id": {"_count": 1}, "rise": {"_count": 1}, "from": {"_count": 4}, "Im": {"_count": 1}, "anymore": {"_count": 1}, "performing": {"_count": 1}, "would": {"_count": 1}, "more": {"_count": 1}, "worthy": {"_count": 1}, "said": {"_count": 1}, "has": {"_count": 1}, "though": {"_count": 1}, "to": {"_count": 2}, "like": {"_count": 1}, "of": {"_count": 1}}, "jaunty": {"_count": 2, "winning": {"_count": 1}, "angle": {"_count": 1}}, "finger": {"_count": 17, "in": {"_count": 2}, "annoyingly": {"_count": 1}, "on": {"_count": 2}, "to": {"_count": 1}, "over": {"_count": 1}, "will": {"_count": 1}, "two": {"_count": 1}, "missing": {"_count": 1}, "at": {"_count": 3}, "": {"_count": 1}, "along": {"_count": 1}, "through": {"_count": 1}, "or": {"_count": 1}}, "nervous": {"_count": 12, "glance": {"_count": 1}, "jerk": {"_count": 1}, "twitch": {"_count": 1}, "collapse": {"_count": 1}, "look": {"_count": 2}, "voice": {"_count": 2}, "laugh": {"_count": 2}, "little": {"_count": 1}, "nod": {"_count": 1}}, "scrubbed": {"_count": 1, "wooden": {"_count": 1}}, "surprisingly": {"_count": 6, "short": {"_count": 3}, "gentle": {"_count": 1}, "strong": {"_count": 1}, "loud": {"_count": 1}}, "degnoming": {"_count": 1, "Thats": {"_count": 1}}, "garden": {"_count": 5, "Harry": {"_count": 1}, "should": {"_count": 1}, "gnome": {"_count": 1}, "nearly": {"_count": 1}, "pond": {"_count": 1}}, "peony": {"_count": 1, "bush": {"_count": 1}}, "violent": {"_count": 10, "scuffling": {"_count": 1}, "shade": {"_count": 2}, "gesture": {"_count": 1}, "tattoo": {"_count": 1}, "tussle": {"_count": 1}, "giant": {"_count": 1}, "but": {"_count": 1}, "sneeze": {"_count": 1}, "urge": {"_count": 1}}, "gnome": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "who": {"_count": 1}}, "potato": {"_count": 4, "": {"_count": 1}, "peeler": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}}, "lasso": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "hard": {"_count": 17, "job": {"_count": 1}, "time": {"_count": 3}, "war": {"_count": 1}, "voice": {"_count": 1}, "tofind": {"_count": 1}, "worker": {"_count": 1}, "clear": {"_count": 1}, "lump": {"_count": 1}, "fury": {"_count": 1}, "deeply": {"_count": 1}, "pinch": {"_count": 1}, "blazing": {"_count": 1}, "knot": {"_count": 1}, "core": {"_count": 1}, "ground": {"_count": 1}}, "straggling": {"_count": 1, "line": {"_count": 1}}, "kitchen": {"_count": 3, "chair": {"_count": 2}, "cupboard": {"_count": 1}}, "night": {"_count": 7, "he": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "off": {"_count": 1}, "very": {"_count": 1}, "you": {"_count": 1}, "this": {"_count": 1}}, "hex": {"_count": 7, "on": {"_count": 2}, "that": {"_count": 2}, "from": {"_count": 1}, "at": {"_count": 1}, "or": {"_count": 1}}, "biting": {"_count": 3, "kettle": {"_count": 1}, "book": {"_count": 2}}, "key": {"_count": 6, "that": {"_count": 1}, "to": {"_count": 2}, "scrape": {"_count": 1}, "part": {"_count": 1}, "at": {"_count": 1}}, "rusty": {"_count": 5, "old": {"_count": 2}, "bracket": {"_count": 1}, "poker": {"_count": 1}, "oil": {"_count": 1}}, "loophole": {"_count": 3, "in": {"_count": 2}, "when": {"_count": 1}}, "bullfrog": {"_count": 1, "": {"_count": 1}}, "snap": {"_count": 13, "": {"_count": 6}, "and": {"_count": 3}, "the": {"_count": 1}, "in": {"_count": 1}, "leaving": {"_count": 1}, "behind": {"_count": 1}}, "furnace": {"_count": 2, "Nearly": {"_count": 1}, "": {"_count": 1}}, "fish": {"_count": 3, "tank": {"_count": 1}, "bone": {"_count": 2}}, "gang": {"_count": 6, "of": {"_count": 6}}, "telephone": {"_count": 9, "": {"_count": 1}, "booth": {"_count": 1}, "number": {"_count": 1}, "last": {"_count": 1}, "call": {"_count": 2}, "before": {"_count": 1}, "and": {"_count": 1}, "box": {"_count": 1}}, "Banshee": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "fan": {"_count": 3, "bet": {"_count": 1}, "magazine": {"_count": 1}, "for": {"_count": 1}}, "quick": {"_count": 31, "look": {"_count": 4}, "half": {"_count": 1}, "wash": {"_count": 1}, "talk": {"_count": 1}, "glance": {"_count": 2}, "prod": {"_count": 1}, "word": {"_count": 9}, "step": {"_count": 1}, "tour": {"_count": 1}, "few": {"_count": 1}, "private": {"_count": 1}, "squeeze": {"_count": 1}, "march": {"_count": 1}, "grateful": {"_count": 1}, "escape": {"_count": 1}, "drink": {"_count": 1}, "headcount": {"_count": 1}, "getaway": {"_count": 1}, "painless": {"_count": 1}}, "molting": {"_count": 1, "gray": {"_count": 1}}, "perch": {"_count": 1, "just": {"_count": 1}}, "flowerpot": {"_count": 1, "off": {"_count": 1}}, "pinch": {"_count": 5, "of": {"_count": 3}, "go": {"_count": 1}, "into": {"_count": 1}}, "chimney": {"_count": 1, "dont": {"_count": 1}}, "blurred": {"_count": 1, "stream": {"_count": 1}}, "withered": {"_count": 2, "hand": {"_count": 2}}, "cushion": {"_count": 4, "a": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "soaring": {"_count": 1}}, "bloodstained": {"_count": 3, "pack": {"_count": 1}, "bandaged": {"_count": 1}, "bag": {"_count": 1}}, "staring": {"_count": 1, "glass": {"_count": 1}}, "bell": {"_count": 5, "clanged": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}, "every": {"_count": 1}, "": {"_count": 1}}, "stupid": {"_count": 15, "scar": {"_count": 1}, "thing": {"_count": 1}, "kind": {"_count": 1}, "name": {"_count": 1}, "boggart": {"_count": 1}, "flying": {"_count": 1}, "grin": {"_count": 1}, "lie": {"_count": 1}, "situation": {"_count": 1}, "nickname": {"_count": 1}, "hoop": {"_count": 1}, "suggestion": {"_count": 1}, "Hermione": {"_count": 1}, "little": {"_count": 2}}, "quelling": {"_count": 1, "look": {"_count": 1}}, "pleasure": {"_count": 2, "to": {"_count": 1}, "meeting": {"_count": 1}}, "certain": {"_count": 31, "respect": {"_count": 1}, "disregard": {"_count": 1}, "map": {"_count": 1}, "bond": {"_count": 1}, "curiosity": {"_count": 1}, "extent": {"_count": 1}, "Dark": {"_count": 2}, "rigidity": {"_count": 1}, "Sturgis": {"_count": 1}, "amount": {"_count": 9}, "piece": {"_count": 1}, "name": {"_count": 1}, "rangy": {"_count": 1}, "reluctance": {"_count": 1}, "brick": {"_count": 1}, "fondness": {"_count": 1}, "disquiet": {"_count": 1}, "caliber": {"_count": 1}, "grandeur": {"_count": 1}, "reassuring": {"_count": 1}, "awkwardness": {"_count": 1}, "magic": {"_count": 1}}, "candle": {"_count": 5, "and": {"_count": 1}, "closer": {"_count": 1}, "toppling": {"_count": 1}, "bracket": {"_count": 1}, "was": {"_count": 1}}, "thief": {"_count": 2, "or": {"_count": 1}, "boy": {"_count": 1}}, "plunderer": {"_count": 1, "Borgin": {"_count": 1}}, "dingy": {"_count": 3, "alleyway": {"_count": 1}, "street": {"_count": 1}, "door": {"_count": 1}}, "tray": {"_count": 11, "of": {"_count": 5}, "there": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "she": {"_count": 1}, "laden": {"_count": 1}}, "mess": {"_count": 4, "": {"_count": 1}, "of": {"_count": 2}, "thats": {"_count": 1}}, "barrel": {"_count": 4, "of": {"_count": 2}, "bursting": {"_count": 1}, "full": {"_count": 1}}, "FleshEatin": {"_count": 1, "Slug": {"_count": 1}}, "leather": {"_count": 5, "bag": {"_count": 2}, "thong": {"_count": 1}, "moneypouch": {"_count": 1}, "strap": {"_count": 1}}, "secondhand": {"_count": 1, "robe": {"_count": 1}}, "bookshop": {"_count": 1, "without": {"_count": 1}}, "girlfriend": {"_count": 2, "": {"_count": 2}}, "disgrace": {"_count": 1, "to": {"_count": 1}}, "bookshelf": {"_count": 3, "": {"_count": 1}, "from": {"_count": 1}, "in": {"_count": 1}}, "cut": {"_count": 3, "lip": {"_count": 1}, "above": {"_count": 1}, "its": {"_count": 1}}, "subdued": {"_count": 3, "group": {"_count": 1}, "voice": {"_count": 1}, "affair": {"_count": 1}}, "sumptuous": {"_count": 2, "dinner": {"_count": 1}, "chocolate": {"_count": 1}}, "mouthwatering": {"_count": 1, "treacle": {"_count": 1}}, "display": {"_count": 3, "of": {"_count": 2}, "on": {"_count": 1}}, "stray": {"_count": 6, "chicken": {"_count": 1}, "cat": {"_count": 1}, "dog": {"_count": 1}, "said": {"_count": 1}, "Bludger": {"_count": 1}, "person": {"_count": 1}}, "park": {"_count": 1, "bench": {"_count": 1}}, "guard": {"_count": 5, "nearby": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "Hermione": {"_count": 1}, "was": {"_count": 1}}, "scene": {"_count": 6, "that": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}, "like": {"_count": 1}, "involving": {"_count": 1}, "in": {"_count": 1}}, "hollow": {"_count": 16, "laugh": {"_count": 3}, "that": {"_count": 1}, "dead": {"_count": 1}, "sort": {"_count": 1}, "voice": {"_count": 7}, "feeling": {"_count": 1}, "smile": {"_count": 1}, "tree": {"_count": 1}}, "series": {"_count": 20, "of": {"_count": 20}}, "popping": {"_count": 1, "noise": {"_count": 1}}, "scarlet": {"_count": 8, "snake": {"_count": 1}, "tie": {"_count": 1}, "steam": {"_count": 1}, "sweater": {"_count": 1}, "envelope": {"_count": 2}, "banner": {"_count": 1}, "oval": {"_count": 1}}, "blaze": {"_count": 5, "of": {"_count": 5}}, "fabulous": {"_count": 1, "dream": {"_count": 1}}, "trolley": {"_count": 1, "pushed": {"_count": 1}}, "snowcapped": {"_count": 1, "mountain": {"_count": 1}}, "landmark": {"_count": 1, "they": {"_count": 1}}, "mile": {"_count": 9, "below": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "off": {"_count": 1}, "around": {"_count": 1}, "away": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}}, "splutter": {"_count": 1, "and": {"_count": 1}}, "golfballsized": {"_count": 1, "lump": {"_count": 1}}, "shaky": {"_count": 5, "voice": {"_count": 2}, "sip": {"_count": 1}, "laugh": {"_count": 2}}, "charging": {"_count": 1, "bull": {"_count": 1}}, "branch": {"_count": 4, "as": {"_count": 2}, "o": {"_count": 1}, "that": {"_count": 1}}, "python": {"_count": 1, "smash": {"_count": 1}}, "hail": {"_count": 2, "of": {"_count": 2}}, "battering": {"_count": 1, "ram": {"_count": 1}}, "vicious": {"_count": 5, "uppercut": {"_count": 1}, "Norwegian": {"_count": 1}, "giant": {"_count": 1}, "expression": {"_count": 1}, "baby": {"_count": 1}}, "backward": {"_count": 7, "look": {"_count": 1}, "glance": {"_count": 6}}, "brightly": {"_count": 4, "lit": {"_count": 2}, "colored": {"_count": 1}, "glowing": {"_count": 1}}, "bespectacled": {"_count": 1, "witch": {"_count": 1}}, "bang": {"_count": 24, "did": {"_count": 1}, "": {"_count": 2}, "like": {"_count": 3}, "a": {"_count": 3}, "from": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 11}, "the": {"_count": 1}, "on": {"_count": 1}}, "hopeless": {"_count": 1, "sort": {"_count": 1}}, "delicious": {"_count": 2, "looking": {"_count": 1}, "feast": {"_count": 1}}, "wrathful": {"_count": 1, "eagle": {"_count": 1}}, "jug": {"_count": 1, "of": {"_count": 1}}, "sandwich": {"_count": 4, "": {"_count": 1}, "from": {"_count": 2}, "there": {"_count": 1}}, "grateful": {"_count": 2, "swig": {"_count": 1}, "pat": {"_count": 1}}, "marathon": {"_count": 1, "Fred": {"_count": 1}}, "scowl": {"_count": 3, "just": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "milk": {"_count": 2, "jug": {"_count": 2}}, "rushing": {"_count": 5, "sound": {"_count": 3}, "in": {"_count": 1}, "roaring": {"_count": 1}}, "Howler": {"_count": 7, "said": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 1}, "straight": {"_count": 1}, "again": {"_count": 1}}, "timid": {"_count": 1, "whisper": {"_count": 1}}, "shaking": {"_count": 12, "hand": {"_count": 6}, "finger": {"_count": 2}, "voice": {"_count": 3}, "arm": {"_count": 1}}, "tidal": {"_count": 3, "wave": {"_count": 3}}, "babble": {"_count": 1, "of": {"_count": 1}}, "patched": {"_count": 1, "hat": {"_count": 1}}, "Whomping": {"_count": 1, "Willow": {"_count": 1}}, "murmur": {"_count": 8, "of": {"_count": 7}, "around": {"_count": 1}}, "whiff": {"_count": 4, "of": {"_count": 4}}, "taste": {"_count": 4, "for": {"_count": 3}, "of": {"_count": 1}}, "nobody": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "hearty": {"_count": 9, "wink": {"_count": 1}, "guffaw": {"_count": 2}, "laugh": {"_count": 3}, "tug": {"_count": 1}, "sniff": {"_count": 1}, "swig": {"_count": 1}}, "trestle": {"_count": 2, "bench": {"_count": 1}, "table": {"_count": 1}}, "scramble": {"_count": 1, "as": {"_count": 1}}, "begonia": {"_count": 1, "": {"_count": 1}}, "spiky": {"_count": 1, "dark": {"_count": 1}}, "curlyhaired": {"_count": 2, "Hufflepuff": {"_count": 1}, "witch": {"_count": 1}}, "fully": {"_count": 9, "trained": {"_count": 1}, "qualified": {"_count": 3}, "fledged": {"_count": 2}, "grown": {"_count": 3}}, "pot": {"_count": 6, "": {"_count": 1}, "on": {"_count": 1}, "of": {"_count": 2}, "except": {"_count": 1}, "and": {"_count": 1}}, "beetle": {"_count": 5, "into": {"_count": 1}, "crawling": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "out": {"_count": 1}}, "button": {"_count": 2, "but": {"_count": 1}, "mushroom": {"_count": 1}}, "wrung": {"_count": 1, "sponge": {"_count": 1}}, "volley": {"_count": 2, "of": {"_count": 2}}, "tentative": {"_count": 2, "step": {"_count": 1}, "smile": {"_count": 1}}, "picture": {"_count": 26, "": {"_count": 2}, "of": {"_count": 18}, "hed": {"_count": 1}, "ahead": {"_count": 1}, "Weasley": {"_count": 1}, "could": {"_count": 1}, "upon": {"_count": 1}, "so": {"_count": 1}}, "lightning": {"_count": 2, "scar": {"_count": 1}, "bolt": {"_count": 1}}, "milkman": {"_count": 1, "he": {"_count": 1}}, "menacing": {"_count": 6, "way": {"_count": 1}, "group": {"_count": 1}, "voice": {"_count": 1}, "growl": {"_count": 1}, "fashion": {"_count": 1}, "thud": {"_count": 1}}, "shrill": {"_count": 4, "piercing": {"_count": 1}, "giggle": {"_count": 1}, "voice": {"_count": 1}, "cackle": {"_count": 1}}, "signed": {"_count": 4, "photo": {"_count": 1}, "Oh": {"_count": 1}, "note": {"_count": 1}, "form": {"_count": 1}}, "side": {"_count": 9, "door": {"_count": 1}, "room": {"_count": 1}, "passage": {"_count": 2}, "road": {"_count": 2}, "street": {"_count": 2}, "table": {"_count": 1}}, "tad": {"_count": 2, "bigheaded": {"_count": 1}, "unwise": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "who": {"_count": 1}}, "trembling": {"_count": 6, "hand": {"_count": 3}, "voice": {"_count": 2}, "wouldbe": {"_count": 1}}, "snort": {"_count": 9, "of": {"_count": 3}, "": {"_count": 3}, "with": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}}, "scream": {"_count": 23, "of": {"_count": 8}, "": {"_count": 6}, "shattered": {"_count": 1}, "and": {"_count": 3}, "as": {"_count": 1}, "that": {"_count": 2}, "from": {"_count": 1}, "at": {"_count": 1}}, "rampaging": {"_count": 2, "rhino": {"_count": 1}, "hippogriff": {"_count": 1}}, "clever": {"_count": 5, "Freezing": {"_count": 1}, "little": {"_count": 1}, "ruse": {"_count": 1}, "booby": {"_count": 1}, "man": {"_count": 1}}, "pixie": {"_count": 1, "dancing": {"_count": 1}}, "bigger": {"_count": 3, "thrill": {"_count": 1}, "giveaway": {"_count": 1}, "plan": {"_count": 1}}, "crazed": {"_count": 1, "enthusiasm": {"_count": 1}}, "clatter": {"_count": 15, "behind": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 3}, "on": {"_count": 3}, "from": {"_count": 1}, "hundreds": {"_count": 1}, "of": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}}, "piping": {"_count": 1, "voice": {"_count": 1}}, "speech": {"_count": 3, "about": {"_count": 1}, "announcing": {"_count": 1}, "": {"_count": 1}}, "third": {"_count": 22, "under": {"_count": 1}, "monster": {"_count": 1}, "package": {"_count": 1}, "and": {"_count": 1}, "year": {"_count": 3}, "ornament": {"_count": 1}, "sent": {"_count": 1}, "disappearance": {"_count": 1}, "time": {"_count": 5}, "voice": {"_count": 1}, "": {"_count": 2}, "tongue": {"_count": 1}, "owl": {"_count": 1}, "stone": {"_count": 1}, "wand": {"_count": 1}}, "stupor": {"_count": 1, "as": {"_count": 1}}, "wistful": {"_count": 1, "fantasy": {"_count": 1}}, "player": {"_count": 2, "short": {"_count": 1}, "that": {"_count": 1}}, "spurt": {"_count": 4, "of": {"_count": 4}}, "spy": {"_count": 8, "Oliver": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "at": {"_count": 1}}, "seventh": {"_count": 2, "smaller": {"_count": 1}, "of": {"_count": 1}}, "speck": {"_count": 2, "of": {"_count": 2}}, "considerable": {"_count": 7, "amount": {"_count": 3}, "way": {"_count": 1}, "distance": {"_count": 1}, "part": {"_count": 1}, "stretch": {"_count": 1}}, "museum": {"_count": 1, "would": {"_count": 1}}, "nearby": {"_count": 26, "bush": {"_count": 1}, "tree": {"_count": 5}, "door": {"_count": 1}, "table": {"_count": 2}, "classroom": {"_count": 1}, "elf": {"_count": 1}, "hedge": {"_count": 1}, "bed": {"_count": 1}, "first": {"_count": 1}, "chair": {"_count": 3}, "shop": {"_count": 1}, "cupboard": {"_count": 1}, "church": {"_count": 1}, "armchair": {"_count": 1}, "bathroom": {"_count": 1}, "crate": {"_count": 1}, "niche": {"_count": 1}, "hill": {"_count": 1}, "mountain": {"_count": 1}}, "difficult": {"_count": 8, "curse": {"_count": 1}, "potion": {"_count": 1}, "life": {"_count": 1}, "career": {"_count": 1}, "name": {"_count": 1}, "job": {"_count": 1}, "feat": {"_count": 1}, "antidote": {"_count": 1}}, "broken": {"_count": 3, "wand": {"_count": 1}, "branch": {"_count": 1}, "quill": {"_count": 1}}, "well": {"_count": 5, "growled": {"_count": 1}, "earned": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "aimed": {"_count": 1}}, "halfplucked": {"_count": 2, "rooster": {"_count": 1}, "turkey": {"_count": 1}}, "fresh": {"_count": 24, "wave": {"_count": 2}, "surge": {"_count": 1}, "pickled": {"_count": 2}, "piece": {"_count": 1}, "sentence": {"_count": 1}, "selection": {"_count": 1}, "chicken": {"_count": 1}, "supply": {"_count": 1}, "howl": {"_count": 1}, "flagon": {"_count": 1}, "attempt": {"_count": 2}, "stack": {"_count": 1}, "breezy": {"_count": 1}, "cup": {"_count": 1}, "bottle": {"_count": 1}, "leaf": {"_count": 1}, "pair": {"_count": 1}, "patch": {"_count": 1}, "mass": {"_count": 1}, "dusting": {"_count": 1}, "outbreak": {"_count": 1}}, "really": {"_count": 31, "foul": {"_count": 1}, "powerful": {"_count": 2}, "bad": {"_count": 2}, "loud": {"_count": 1}, "unexpected": {"_count": 1}, "good": {"_count": 13}, "rather": {"_count": 1}, "clever": {"_count": 1}, "big": {"_count": 1}, "slow": {"_count": 1}, "delightful": {"_count": 1}, "shifty": {"_count": 1}, "stupid": {"_count": 1}, "nice": {"_count": 2}, "horrible": {"_count": 1}, "serious": {"_count": 1}}, "cauldron": {"_count": 6, "the": {"_count": 1}, "broomstick": {"_count": 1}, "dangling": {"_count": 1}, "full": {"_count": 1}, "was": {"_count": 1}, "on": {"_count": 1}}, "disgusting": {"_count": 3, "thing": {"_count": 1}, "swear": {"_count": 2}}, "burp": {"_count": 1, "": {"_count": 1}}, "wellyoudidbreakschoolrules": {"_count": 1, "sort": {"_count": 1}}, "phrase": {"_count": 1, "like": {"_count": 1}}, "fickle": {"_count": 1, "friend": {"_count": 1}}, "strong": {"_count": 19, "smell": {"_count": 5}, "icy": {"_count": 1}, "fit": {"_count": 1}, "accent": {"_count": 1}, "clear": {"_count": 1}, "desire": {"_count": 2}, "urge": {"_count": 2}, "jaw": {"_count": 1}, "feeling": {"_count": 1}, "word": {"_count": 1}, "though": {"_count": 1}, "silvery": {"_count": 1}, "likelihood": {"_count": 1}}, "Special": {"_count": 1, "Award": {"_count": 1}}, "dashing": {"_count": 1, "plumed": {"_count": 1}}, "tunic": {"_count": 1, "with": {"_count": 1}}, "transparent": {"_count": 1, "letter": {"_count": 1}}, "blunt": {"_count": 3, "axe": {"_count": 2}, "knife": {"_count": 1}}, "far": {"_count": 11, "calmer": {"_count": 1}, "better": {"_count": 1}, "corner": {"_count": 4}, "more": {"_count": 1}, "greater": {"_count": 1}, "distant": {"_count": 1}, "flung": {"_count": 1}, "off": {"_count": 1}}, "drip": {"_count": 1, "shivering": {"_count": 1}}, "transport": {"_count": 1, "of": {"_count": 1}}, "grinning": {"_count": 1, "airborne": {"_count": 1}}, "motheaten": {"_count": 7, "chair": {"_count": 1}, "vulture": {"_count": 1}, "troll": {"_count": 1}, "fox": {"_count": 1}, "fez": {"_count": 1}, "black": {"_count": 1}, "hat": {"_count": 1}}, "Kwikspell": {"_count": 3, "course": {"_count": 3}}, "yak": {"_count": 1, "": {"_count": 1}}, "proper": {"_count": 10, "wizard": {"_count": 1}, "sized": {"_count": 1}, "Patronus": {"_count": 1}, "Care": {"_count": 1}, "one": {"_count": 1}, "conversation": {"_count": 1}, "look": {"_count": 1}, "sendoff": {"_count": 1}, "haircut": {"_count": 1}, "hideout": {"_count": 1}}, "drawer": {"_count": 6, "": {"_count": 2}, "and": {"_count": 2}, "in": {"_count": 2}}, "tic": {"_count": 1, "was": {"_count": 1}}, "Filibuster": {"_count": 1, "firework": {"_count": 1}}, "salamander": {"_count": 1, "": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "troupe": {"_count": 1, "of": {"_count": 1}}, "promise": {"_count": 4, "Hermione": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}}, "dim": {"_count": 5, "ghostly": {"_count": 1}, "crimson": {"_count": 1}, "reddish": {"_count": 1}, "dank": {"_count": 1}, "light": {"_count": 1}}, "crowded": {"_count": 4, "dance": {"_count": 1}, "street": {"_count": 1}, "reception": {"_count": 1}, "court": {"_count": 1}}, "raised": {"_count": 5, "blackdraped": {"_count": 1}, "platform": {"_count": 1}, "hand": {"_count": 1}, "voice": {"_count": 1}, "stone": {"_count": 1}}, "freezer": {"_count": 1, "": {"_count": 1}}, "ragged": {"_count": 3, "man": {"_count": 1}, "bundle": {"_count": 1}, "collage": {"_count": 1}}, "cheerful": {"_count": 4, "Hufflepuff": {"_count": 1}, "visit": {"_count": 1}, "but": {"_count": 1}, "one": {"_count": 1}}, "pee": {"_count": 1, "with": {"_count": 1}}, "slab": {"_count": 2, "of": {"_count": 2}}, "tombstone": {"_count": 1, "with": {"_count": 1}}, "portly": {"_count": 5, "ghost": {"_count": 1}, "little": {"_count": 1}, "man": {"_count": 3}}, "stronger": {"_count": 3, "flavor": {"_count": 1}, "grip": {"_count": 1}, "voice": {"_count": 1}}, "revolving": {"_count": 2, "bow": {"_count": 1}, "tea": {"_count": 1}}, "broad": {"_count": 9, "grin": {"_count": 1}, "goodnatured": {"_count": 1}, "stone": {"_count": 1}, "street": {"_count": 1}, "flabby": {"_count": 1}, "smile": {"_count": 2}, "storelined": {"_count": 1}, "vacant": {"_count": 1}}, "falsely": {"_count": 6, "bright": {"_count": 1}, "confident": {"_count": 1}, "anxious": {"_count": 1}, "cheery": {"_count": 1}, "sweet": {"_count": 1}, "matteroffact": {"_count": 1}}, "hunting": {"_count": 1, "horn": {"_count": 1}}, "headless": {"_count": 2, "horseman": {"_count": 1}, "corpse": {"_count": 1}}, "meaningful": {"_count": 4, "look": {"_count": 4}}, "phantom": {"_count": 2, "to": {"_count": 1}, "completely": {"_count": 1}}, "splash": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}}, "flurry": {"_count": 3, "of": {"_count": 3}}, "most": {"_count": 28, "peculiar": {"_count": 3}, "unpleasant": {"_count": 2}, "excellent": {"_count": 1}, "important": {"_count": 2}, "amazing": {"_count": 1}, "unhelpful": {"_count": 2}, "grievous": {"_count": 1}, "satisfied": {"_count": 1}, "curious": {"_count": 2}, "unconvincing": {"_count": 1}, "unHermioneish": {"_count": 1}, "uncomfortable": {"_count": 1}, "agreeable": {"_count": 1}, "convincing": {"_count": 1}, "illuminating": {"_count": 1}, "Hermioneish": {"_count": 1}, "desirable": {"_count": 1}, "troubled": {"_count": 1}, "eccentriclooking": {"_count": 1}, "strangelooking": {"_count": 1}, "bizarrelooking": {"_count": 1}, "familiar": {"_count": 1}}, "Im": {"_count": 1, "a": {"_count": 1}}, "Filch": {"_count": 1, "s": {"_count": 1}}, "Squib": {"_count": 15, "": {"_count": 9}, "is": {"_count": 1}, "as": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 1}, "Ariana": {"_count": 1}}, "bodiless": {"_count": 1, "voice": {"_count": 1}}, "triumphant": {"_count": 7, "smile": {"_count": 2}, "voice": {"_count": 1}, "whisper": {"_count": 2}, "gesture": {"_count": 1}, "yell": {"_count": 1}}, "searching": {"_count": 1, "look": {"_count": 1}}, "potion": {"_count": 14, "made": {"_count": 1}, "for": {"_count": 2}, "brewer": {"_count": 1}, "concocted": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 4}, "to": {"_count": 1}, "like": {"_count": 1}, "or": {"_count": 1}, "anyone": {"_count": 1}}, "Mandrake": {"_count": 1, "Restorative": {"_count": 1}}, "floor": {"_count": 1, "up": {"_count": 1}}, "story": {"_count": 10, "about": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}, "like": {"_count": 2}, "that": {"_count": 1}, "repeated": {"_count": 1}, "said": {"_count": 1}}, "wizarding": {"_count": 3, "family": {"_count": 1}, "game": {"_count": 1}, "house": {"_count": 1}}, "satisfied": {"_count": 9, "smile": {"_count": 3}, "tone": {"_count": 1}, "sort": {"_count": 1}, "voice": {"_count": 2}, "expression": {"_count": 1}, "smirk": {"_count": 1}}, "hurried": {"_count": 4, "lunch": {"_count": 1}, "discussion": {"_count": 1}, "apology": {"_count": 1}, "breakfast": {"_count": 1}}, "threefootlong": {"_count": 1, "composition": {"_count": 1}}, "twoweek": {"_count": 1, "waiting": {"_count": 1}}, "flat": {"_count": 5, "drone": {"_count": 1}, "distant": {"_count": 1}, "expressionless": {"_count": 1}, "little": {"_count": 1}, "blank": {"_count": 1}}, "subcommittee": {"_count": 1, "of": {"_count": 1}}, "basis": {"_count": 1, "in": {"_count": 1}}, "wrinkled": {"_count": 1, "old": {"_count": 1}}, "chamber": {"_count": 3, "many": {"_count": 1}, "pot": {"_count": 1}, "off": {"_count": 1}}, "myth": {"_count": 3, "": {"_count": 2}, "wasnt": {"_count": 1}}, "shred": {"_count": 4, "of": {"_count": 4}}, "foolish": {"_count": 3, "story": {"_count": 1}, "man": {"_count": 1}, "old": {"_count": 1}}, "Chamber": {"_count": 2, "of": {"_count": 2}}, "poke": {"_count": 2, "around": {"_count": 2}}, "girls": {"_count": 9, "toilet": {"_count": 1}, "bathroom": {"_count": 4}, "one": {"_count": 1}, "voice": {"_count": 2}, "than": {"_count": 1}}, "lesson": {"_count": 6, "": {"_count": 1}, "like": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "thats": {"_count": 1}, "with": {"_count": 1}}, "conversation": {"_count": 4, "they": {"_count": 1}, "with": {"_count": 3}}, "Babbling": {"_count": 2, "Curse": {"_count": 1}, "Beverage": {"_count": 1}}, "yeti": {"_count": 1, "with": {"_count": 1}}, "piteous": {"_count": 1, "moan": {"_count": 1}}, "poem": {"_count": 1, "about": {"_count": 1}}, "useful": {"_count": 6, "player": {"_count": 1}, "little": {"_count": 1}, "contact": {"_count": 1}, "discovery": {"_count": 1}, "recruiting": {"_count": 1}, "spell": {"_count": 1}}, "brainless": {"_count": 2, "git": {"_count": 2}}, "forgery": {"_count": 1, "but": {"_count": 1}}, "glance": {"_count": 19, "why": {"_count": 1}, "what": {"_count": 1}, "at": {"_count": 10}, "that": {"_count": 1}, "behind": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 3}, "before": {"_count": 1}}, "bicorn": {"_count": 1, "dont": {"_count": 1}}, "boomslang": {"_count": 2, "thatll": {"_count": 1}, "thats": {"_count": 1}}, "team": {"_count": 1, "mounted": {"_count": 1}}, "muggy": {"_count": 1, "sort": {"_count": 1}}, "rich": {"_count": 3, "father": {"_count": 1}, "plum": {"_count": 1}, "fussy": {"_count": 1}}, "boomerang": {"_count": 1, "and": {"_count": 1}}, "crazy": {"_count": 2, "Bludger": {"_count": 1}, "urge": {"_count": 1}}, "haze": {"_count": 6, "of": {"_count": 6}}, "splattering": {"_count": 1, "thud": {"_count": 1}}, "glitter": {"_count": 1, "of": {"_count": 1}}, "photo": {"_count": 2, "of": {"_count": 2}}, "muddy": {"_count": 5, "Wood": {"_count": 1}, "potato": {"_count": 1}, "paw": {"_count": 1}, "greenishbrown": {"_count": 1}, "pond": {"_count": 1}}, "terrific": {"_count": 1, "fight": {"_count": 1}}, "working": {"_count": 1, "arm": {"_count": 1}}, "sleeve": {"_count": 1, "": {"_count": 1}}, "rough": {"_count": 10, "night": {"_count": 1}, "mud": {"_count": 1}, "time": {"_count": 1}, "job": {"_count": 1}, "whisper": {"_count": 2}, "voice": {"_count": 3}, "and": {"_count": 1}}, "steaming": {"_count": 5, "beakerful": {"_count": 1}, "mug": {"_count": 1}, "pot": {"_count": 1}, "vat": {"_count": 1}, "teapot": {"_count": 1}}, "thrill": {"_count": 6, "of": {"_count": 6}}, "flogging": {"_count": 1, "Dobby": {"_count": 1}}, "sock": {"_count": 4, "sir": {"_count": 1}, "said": {"_count": 2}, "full": {"_count": 1}}, "beacon": {"_count": 2, "of": {"_count": 1}, "against": {"_count": 1}}, "nightcap": {"_count": 4, "": {"_count": 2}, "at": {"_count": 1}, "then": {"_count": 1}}, "cardigan": {"_count": 1, "on": {"_count": 1}}, "breakfast": {"_count": 1, "tray": {"_count": 1}}, "laugh": {"_count": 32, "watched": {"_count": 1}, "he": {"_count": 1}, "went": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 11}, "that": {"_count": 2}, "but": {"_count": 2}, "in": {"_count": 1}, "lately": {"_count": 1}, "you": {"_count": 1}, "Hermione": {"_count": 1}, "with": {"_count": 1}, "about": {"_count": 1}, "eh": {"_count": 1}, "and": {"_count": 1}, "or": {"_count": 1}, "youd": {"_count": 1}, "said": {"_count": 1}, "thats": {"_count": 1}, "your": {"_count": 1}}, "locked": {"_count": 3, "stall": {"_count": 1}, "door": {"_count": 2}}, "clunk": {"_count": 2, "a": {"_count": 1}, "for": {"_count": 1}}, "fright": {"_count": 3, "come": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 1}}, "crackling": {"_count": 1, "from": {"_count": 1}}, "speciality": {"_count": 1, "of": {"_count": 1}}, "confession": {"_count": 5, "out": {"_count": 2}, "": {"_count": 2}, "must": {"_count": 1}}, "rotting": {"_count": 1, "newt": {"_count": 1}}, "pureblood": {"_count": 8, "and": {"_count": 1}, "": {"_count": 3}, "wizard": {"_count": 1}, "Harry": {"_count": 1}, "next": {"_count": 1}, "arent": {"_count": 1}}, "matteroffact": {"_count": 2, "tone": {"_count": 1}, "voice": {"_count": 1}}, "faceful": {"_count": 1, "and": {"_count": 1}}, "dinner": {"_count": 2, "plate": {"_count": 2}}, "Deflating": {"_count": 1, "Draught": {"_count": 1}}, "nose": {"_count": 7, "like": {"_count": 1}, "the": {"_count": 1}, "dribbling": {"_count": 1}, "that": {"_count": 1}, "giant": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}}, "puzzled": {"_count": 3, "expression": {"_count": 1}, "way": {"_count": 1}, "almost": {"_count": 1}}, "Dueling": {"_count": 1, "Club": {"_count": 1}}, "dueling": {"_count": 2, "champion": {"_count": 1}, "club": {"_count": 1}}, "groan": {"_count": 7, "Gilderoy": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}, "and": {"_count": 3}}, "dazzling": {"_count": 4, "flash": {"_count": 1}, "opaline": {"_count": 1}, "glove": {"_count": 1}, "smile": {"_count": 1}}, "Disarming": {"_count": 2, "Charm": {"_count": 2}}, "saucepan": {"_count": 2, "": {"_count": 2}}, "Tickling": {"_count": 1, "Charm": {"_count": 1}}, "vague": {"_count": 6, "feeling": {"_count": 1}, "Merry": {"_count": 1}, "untraceable": {"_count": 1}, "voice": {"_count": 1}, "and": {"_count": 1}, "idea": {"_count": 1}}, "headlock": {"_count": 1, "and": {"_count": 1}}, "volunteer": {"_count": 1, "pair": {"_count": 1}}, "matchbox": {"_count": 1, "": {"_count": 1}}, "complicated": {"_count": 4, "sort": {"_count": 1}, "circular": {"_count": 1}, "little": {"_count": 1}, "point": {"_count": 1}}, "shrewd": {"_count": 4, "and": {"_count": 1}, "suspicion": {"_count": 2}, "idea": {"_count": 1}}, "tugging": {"_count": 1, "on": {"_count": 1}}, "Parselmouth": {"_count": 4, "": {"_count": 3}, "interjected": {"_count": 1}}, "language": {"_count": 1, "without": {"_count": 1}}, "serpent": {"_count": 7, "": {"_count": 1}, "protruding": {"_count": 1}, "to": {"_count": 1}, "which": {"_count": 1}, "tongue": {"_count": 1}, "while": {"_count": 1}, "underwater": {"_count": 1}}, "panic": {"_count": 5, "he": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}, "trying": {"_count": 1}}, "gap": {"_count": 11, "in": {"_count": 7}, "right": {"_count": 1}, "": {"_count": 1}, "between": {"_count": 1}, "of": {"_count": 1}}, "descendant": {"_count": 1, "of": {"_count": 1}}, "blizzard": {"_count": 1, "so": {"_count": 1}}, "stout": {"_count": 2, "boy": {"_count": 1}, "iron": {"_count": 1}}, "Dark": {"_count": 8, "wizard": {"_count": 4}, "Art": {"_count": 1}, "wizards": {"_count": 2}, "Mark": {"_count": 1}}, "quavering": {"_count": 2, "voice": {"_count": 2}}, "reproving": {"_count": 3, "glare": {"_count": 1}, "look": {"_count": 1}, "sugarcovered": {"_count": 1}}, "fury": {"_count": 3, "": {"_count": 1}, "against": {"_count": 1}, "that": {"_count": 1}}, "woolly": {"_count": 1, "snow": {"_count": 1}}, "BloodSuckin": {"_count": 1, "Bugbear": {"_count": 1}}, "charm": {"_count": 2, "around": {"_count": 1}, "or": {"_count": 1}}, "loose": {"_count": 3, "windowpane": {"_count": 1}, "floorboard": {"_count": 1}, "firework": {"_count": 1}}, "midair": {"_count": 1, "somersault": {"_count": 1}}, "silent": {"_count": 3, "black": {"_count": 1}, "howl": {"_count": 1}, "circle": {"_count": 1}}, "password": {"_count": 3, "because": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "gleaming": {"_count": 6, "oak": {"_count": 1}, "smile": {"_count": 1}, "scarlet": {"_count": 1}, "replica": {"_count": 1}, "gold": {"_count": 1}, "dance": {"_count": 1}}, "brass": {"_count": 6, "knocker": {"_count": 1}, "number": {"_count": 1}, "plaque": {"_count": 1}, "door": {"_count": 1}, "holder": {"_count": 1}, "telescope": {"_count": 1}}, "griffin": {"_count": 2, "": {"_count": 2}}, "shabby": {"_count": 5, "tattered": {"_count": 1}, "black": {"_count": 1}, "miserable": {"_count": 1}, "jumper": {"_count": 1}, "overlarge": {"_count": 1}}, "wary": {"_count": 4, "eye": {"_count": 3}, "look": {"_count": 1}}, "decrepitlooking": {"_count": 1, "bird": {"_count": 1}}, "fireball": {"_count": 1, "it": {"_count": 1}}, "smoldering": {"_count": 2, "pile": {"_count": 1}, "pink": {"_count": 1}}, "phoenix": {"_count": 7, "Harry": {"_count": 1}, "": {"_count": 2}, "have": {"_count": 1}, "was": {"_count": 1}, "fly": {"_count": 1}, "not": {"_count": 1}}, "Burning": {"_count": 1, "Day": {"_count": 1}}, "stampede": {"_count": 1, "to": {"_count": 1}}, "jolly": {"_count": 1, "holiday": {"_count": 1}}, "laughing": {"_count": 2, "matter": {"_count": 2}}, "toothpick": {"_count": 1, "and": {"_count": 1}}, "luxury": {"_count": 1, "eaglefeather": {"_count": 1}}, "broom": {"_count": 18, "closet": {"_count": 2}, "cupboard": {"_count": 5}, "Ive": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "only": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 1}, "said": {"_count": 1}, "materialized": {"_count": 1}}, "steely": {"_count": 4, "glint": {"_count": 1}, "note": {"_count": 1}, "smile": {"_count": 1}, "voice": {"_count": 1}}, "doomladen": {"_count": 1, "expression": {"_count": 1}}, "boiling": {"_count": 1, "kettle": {"_count": 1}}, "sick": {"_count": 5, "sort": {"_count": 1}, "burning": {"_count": 1}, "unicorn": {"_count": 1}, "feeling": {"_count": 1}, "swooping": {"_count": 1}}, "booger": {"_count": 1, "Crabbes": {"_count": 1}}, "prickling": {"_count": 1, "on": {"_count": 1}}, "stretch": {"_count": 5, "of": {"_count": 5}}, "governor": {"_count": 1, "of": {"_count": 1}}, "kick": {"_count": 5, "from": {"_count": 1}, "at": {"_count": 4}}, "cruel": {"_count": 5, "but": {"_count": 2}, "breeze": {"_count": 1}, "smile": {"_count": 1}, "man": {"_count": 1}}, "Mudblood": {"_count": 9, "died": {"_count": 1}, "stay": {"_count": 1}, "sliming": {"_count": 1}, "": {"_count": 3}, "Granger": {"_count": 1}, "just": {"_count": 1}, "said": {"_count": 1}}, "giveaway": {"_count": 4, "if": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}}, "ccat": {"_count": 1, "hair": {"_count": 1}}, "tail": {"_count": 3, "V": {"_count": 1}, "what": {"_count": 1}, "upon": {"_count": 1}}, "furry": {"_count": 6, "face": {"_count": 1}, "black": {"_count": 1}, "purple": {"_count": 1}, "ginger": {"_count": 2}, "brown": {"_count": 1}}, "get": {"_count": 1, "well": {"_count": 1}}, "speedy": {"_count": 1, "recovery": {"_count": 1}}, "HairRaising": {"_count": 1, "Potion": {"_count": 1}}, "lovely": {"_count": 10, "game": {"_count": 1}, "new": {"_count": 1}, "time": {"_count": 1}, "change": {"_count": 1}, "calendar": {"_count": 1}, "long": {"_count": 1}, "person": {"_count": 1}, "sweettempered": {"_count": 1}, "term": {"_count": 1}, "bboy": {"_count": 1}}, "Sorcerer": {"_count": 1, "spoke": {"_count": 1}}, "diary": {"_count": 6, "and": {"_count": 1}, "from": {"_count": 1}, "for": {"_count": 2}, "preserving": {"_count": 1}, "except": {"_count": 1}}, "variety": {"_count": 6, "store": {"_count": 1}, "of": {"_count": 5}}, "favor": {"_count": 11, "": {"_count": 3}, "His": {"_count": 2}, "sir": {"_count": 1}, "Perce": {"_count": 1}, "and": {"_count": 3}, "is": {"_count": 1}}, "Revealer": {"_count": 1, "I": {"_count": 1}}, "thoroughly": {"_count": 4, "unconvinced": {"_count": 1}, "nonmagical": {"_count": 1}, "mistrustful": {"_count": 1}, "nonverbal": {"_count": 1}}, "lifetime": {"_count": 9, "": {"_count": 4}, "back": {"_count": 1}, "buried": {"_count": 1}, "of": {"_count": 1}, "ban": {"_count": 1}, "away": {"_count": 1}}, "dance": {"_count": 2, "routine": {"_count": 1}, "would": {"_count": 1}}, "morale": {"_count": 1, "booster": {"_count": 1}}, "moralebooster": {"_count": 1, "became": {"_count": 1}}, "laterunning": {"_count": 1, "Quidditch": {"_count": 1}}, "Love": {"_count": 3, "Potion": {"_count": 3}}, "valentine": {"_count": 1, "in": {"_count": 1}}, "musical": {"_count": 2, "message": {"_count": 1}, "box": {"_count": 1}}, "threatening": {"_count": 4, "sort": {"_count": 1}, "finger": {"_count": 1}, "look": {"_count": 1}, "manner": {"_count": 1}}, "holdup": {"_count": 1, "in": {"_count": 1}}, "blackboard": {"_count": 1, "": {"_count": 1}}, "trace": {"_count": 12, "of": {"_count": 11}, "in": {"_count": 1}}, "blot": {"_count": 1, "onto": {"_count": 1}}, "lie": {"_count": 8, "": {"_count": 5}, "Harry": {"_count": 1}, "he": {"_count": 1}, "not": {"_count": 1}}, "fraction": {"_count": 15, "of": {"_count": 12}, "and": {"_count": 2}, "But": {"_count": 1}}, "minuscule": {"_count": 3, "television": {"_count": 1}, "glass": {"_count": 1}, "snake": {"_count": 1}}, "whirl": {"_count": 5, "of": {"_count": 5}}, "sigh": {"_count": 5, "stood": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}, "he": {"_count": 1}}, "feeble": {"_count": 9, "voice": {"_count": 3}, "hoot": {"_count": 1}, "sort": {"_count": 1}, "appearance": {"_count": 1}, "joke": {"_count": 1}, "assumption": {"_count": 1}, "lurch": {"_count": 1}}, "squeak": {"_count": 1, "in": {"_count": 1}}, "decision": {"_count": 7, "he": {"_count": 2}, "that": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}}, "beard": {"_count": 4, "called": {"_count": 1}, "can": {"_count": 1}, "": {"_count": 2}}, "fiftyyearyounger": {"_count": 1, "Dumbledore": {"_count": 1}}, "shadow": {"_count": 6, "edged": {"_count": 1}, "of": {"_count": 2}, "an": {"_count": 1}, "and": {"_count": 1}, "moving": {"_count": 1}}, "tangle": {"_count": 6, "of": {"_count": 6}}, "gleam": {"_count": 3, "of": {"_count": 3}}, "monster": {"_count": 2, "was": {"_count": 1}, "an": {"_count": 1}}, "leash": {"_count": 2, "and": {"_count": 1}, "on": {"_count": 1}}, "FleshEating": {"_count": 1, "Slug": {"_count": 1}}, "hesitant": {"_count": 1, "voice": {"_count": 1}}, "thorough": {"_count": 3, "understanding": {"_count": 2}, "search": {"_count": 1}}, "light": {"_count": 12, "refreshing": {"_count": 1}, "on": {"_count": 2}, "appeared": {"_count": 1}, "wind": {"_count": 1}, "breeze": {"_count": 1}, "dusky": {"_count": 1}, "in": {"_count": 1}, "shade": {"_count": 1}, "chilly": {"_count": 1}, "soft": {"_count": 1}, "casual": {"_count": 1}}, "warmup": {"_count": 2, "flight": {"_count": 1}, "act": {"_count": 1}}, "lastminute": {"_count": 1, "discussion": {"_count": 1}}, "sixthyear": {"_count": 1, "girl": {"_count": 1}}, "somewhat": {"_count": 1, "choked": {"_count": 1}}, "crossbow": {"_count": 3, "at": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}}, "pinstriped": {"_count": 2, "suit": {"_count": 1}, "cloak": {"_count": 1}}, "limegreen": {"_count": 6, "bowler": {"_count": 4}, "blur": {"_count": 1}, "disk": {"_count": 1}}, "punishment": {"_count": 5, "Hagrid": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "bad": {"_count": 1}, "said": {"_count": 1}}, "precaution": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "house": {"_count": 14, "": {"_count": 5}, "with": {"_count": 1}, "elf": {"_count": 3}, "that": {"_count": 2}, "or": {"_count": 1}, "pulled": {"_count": 1}, "my": {"_count": 1}}, "thinlipped": {"_count": 1, "smile": {"_count": 1}}, "pudgy": {"_count": 3, "hand": {"_count": 3}}, "prearranged": {"_count": 2, "meeting": {"_count": 1}, "time": {"_count": 1}}, "touch": {"_count": 4, "more": {"_count": 2}, "of": {"_count": 2}}, "selfsatisfied": {"_count": 2, "tone": {"_count": 1}, "hiss": {"_count": 1}}, "tin": {"_count": 3, "on": {"_count": 1}, "for": {"_count": 1}, "parrot": {"_count": 1}}, "cell": {"_count": 4, "in": {"_count": 3}, "near": {"_count": 1}}, "path": {"_count": 9, "through": {"_count": 3}, "it": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 2}, "for": {"_count": 1}}, "circle": {"_count": 12, "of": {"_count": 4}, "then": {"_count": 1}, "ten": {"_count": 1}, "the": {"_count": 1}, "through": {"_count": 1}, "on": {"_count": 1}, "around": {"_count": 1}, "has": {"_count": 1}, "and": {"_count": 1}}, "roof": {"_count": 1, "of": {"_count": 1}}, "misty": {"_count": 2, "domed": {"_count": 1}, "glow": {"_count": 1}}, "something": {"_count": 1, "on": {"_count": 1}}, "wife": {"_count": 1, "Mosag": {"_count": 1}}, "bathroom": {"_count": 6, "": {"_count": 3}, "said": {"_count": 3}}, "blanket": {"_count": 9, "in": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 1}, "and": {"_count": 1}, "ban": {"_count": 1}, "over": {"_count": 1}, "of": {"_count": 1}}, "yelp": {"_count": 6, "like": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 2}, "that": {"_count": 1}, "": {"_count": 1}}, "scared": {"_count": 2, "look": {"_count": 1}, "voice": {"_count": 1}}, "fleeting": {"_count": 12, "frightened": {"_count": 1}, "glimpse": {"_count": 1}, "second": {"_count": 2}, "instant": {"_count": 1}, "vision": {"_count": 1}, "impression": {"_count": 1}, "look": {"_count": 1}, "memory": {"_count": 1}, "thumbsup": {"_count": 1}, "stab": {"_count": 1}, "hug": {"_count": 1}}, "mug": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "tree": {"_count": 1}}, "strangely": {"_count": 5, "croaky": {"_count": 1}, "high": {"_count": 1}, "skeletal": {"_count": 1}, "triumphant": {"_count": 1}, "unfocused": {"_count": 1}}, "tear": {"_count": 4, "glistening": {"_count": 1}, "": {"_count": 1}, "trickling": {"_count": 1}, "splashed": {"_count": 1}}, "Petrified": {"_count": 1, "person": {"_count": 1}}, "page": {"_count": 15, "torn": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 6}, "": {"_count": 2}, "on": {"_count": 1}, "folded": {"_count": 1}, "loudly": {"_count": 1}, "and": {"_count": 1}}, "chickens": {"_count": 2, "egg": {"_count": 2}}, "murderous": {"_count": 3, "stare": {"_count": 1}, "old": {"_count": 1}, "gargantuan": {"_count": 1}}, "basilisk": {"_count": 9, "a": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 2}, "with": {"_count": 1}, "fang": {"_count": 2}, "listeners": {"_count": 1}}, "mirror": {"_count": 10, "next": {"_count": 1}, "first": {"_count": 1}, "hung": {"_count": 1}, "and": {"_count": 1}, "something": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}, "but": {"_count": 1}, "over": {"_count": 1}}, "lifesize": {"_count": 3, "poster": {"_count": 1}, "portrait": {"_count": 1}, "lions": {"_count": 1}}, "village": {"_count": 4, "from": {"_count": 1}, "square": {"_count": 1}, "undoubtedly": {"_count": 1}, "of": {"_count": 1}}, "hairy": {"_count": 2, "chin": {"_count": 1}, "snouted": {"_count": 1}}, "Memory": {"_count": 5, "Charm": {"_count": 5}}, "flattering": {"_count": 1, "question": {"_count": 1}}, "pipe": {"_count": 3, "wide": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "push": {"_count": 1, "and": {"_count": 1}}, "rats": {"_count": 2, "skull": {"_count": 1}, "fart": {"_count": 1}}, "vivid": {"_count": 6, "poisonous": {"_count": 1}, "dream": {"_count": 1}, "electric": {"_count": 1}, "poisonouslooking": {"_count": 1}, "red": {"_count": 1}, "picture": {"_count": 1}}, "pillar": {"_count": 4, "": {"_count": 1}, "and": {"_count": 2}, "not": {"_count": 1}}, "jolt": {"_count": 11, "of": {"_count": 4}, "and": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 2}, "an": {"_count": 1}}, "misted": {"_count": 1, "window": {"_count": 1}}, "weird": {"_count": 6, "misty": {"_count": 1}, "noise": {"_count": 1}, "lurch": {"_count": 1}, "liquid": {"_count": 1}, "rushing": {"_count": 1}, "keening": {"_count": 1}}, "diet": {"_count": 2, "of": {"_count": 1}, "How": {"_count": 1}}, "skinny": {"_count": 5, "boy": {"_count": 2}, "blackhaired": {"_count": 1}, "harassedlooking": {"_count": 1}, "girl": {"_count": 1}}, "pitch": {"_count": 2, "that": {"_count": 2}}, "swan": {"_count": 3, "had": {"_count": 1}, "with": {"_count": 1}, "dozed": {"_count": 1}}, "glittering": {"_count": 4, "golden": {"_count": 1}, "oversized": {"_count": 1}, "hand": {"_count": 1}, "rubied": {"_count": 1}}, "peacocks": {"_count": 1, "and": {"_count": 1}}, "beady": {"_count": 2, "black": {"_count": 1}, "eye": {"_count": 1}}, "duel": {"_count": 3, "": {"_count": 1}, "or": {"_count": 1}, "with": {"_count": 1}}, "wreck": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "lucky": {"_count": 4, "chance": {"_count": 2}, "mistake": {"_count": 1}, "day": {"_count": 1}}, "searing": {"_count": 5, "pain": {"_count": 3}, "stitch": {"_count": 2}}, "gun": {"_count": 4, "and": {"_count": 2}, "a": {"_count": 1}, "into": {"_count": 1}}, "sizzling": {"_count": 1, "hole": {"_count": 1}}, "stunned": {"_count": 3, "voice": {"_count": 2}, "silence": {"_count": 1}}, "professor": {"_count": 3, "": {"_count": 2}, "love": {"_count": 1}}, "curious": {"_count": 10, "look": {"_count": 1}, "affinity": {"_count": 1}, "sensation": {"_count": 1}, "glance": {"_count": 1}, "question": {"_count": 1}, "almost": {"_count": 1}, "expression": {"_count": 1}, "gleam": {"_count": 1}, "child": {"_count": 1}, "thing": {"_count": 1}}, "defeated": {"_count": 3, "voice": {"_count": 2}, "sort": {"_count": 1}}, "true": {"_count": 8, "Gryffindor": {"_count": 2}, "Seer": {"_count": 1}, "Patronus": {"_count": 1}, "account": {"_count": 1}, "friend": {"_count": 1}, "werewolf": {"_count": 1}, "Cloak": {"_count": 1}}, "stained": {"_count": 2, "rag": {"_count": 1}, "nightshirt": {"_count": 1}}, "hailstorm": {"_count": 1, "of": {"_count": 1}}, "priceless": {"_count": 1, "treasure": {"_count": 1}}, "feast": {"_count": 5, "and": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "so": {"_count": 1}}, "final": {"_count": 9, "loud": {"_count": 1}, "turn": {"_count": 1}, "nod": {"_count": 1}, "plunk": {"_count": 1}, "lurch": {"_count": 1}, "thud": {"_count": 1}, "sweater": {"_count": 1}, "corner": {"_count": 1}, "secret": {"_count": 1}}, "compartment": {"_count": 8, "to": {"_count": 2}, "halfway": {"_count": 1}, "of": {"_count": 1}, "then": {"_count": 1}, "full": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "highly": {"_count": 13, "unusual": {"_count": 1}, "amusing": {"_count": 1}, "charged": {"_count": 1}, "excited": {"_count": 1}, "colored": {"_count": 3}, "polished": {"_count": 1}, "officiallooking": {"_count": 1}, "useful": {"_count": 1}, "satisfied": {"_count": 1}, "incriminating": {"_count": 1}, "accomplished": {"_count": 1}}, "tent": {"_count": 10, "a": {"_count": 1}, "so": {"_count": 1}, "that": {"_count": 2}, "out": {"_count": 1}, "had": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}, "peg": {"_count": 1}, "whose": {"_count": 1}}, "flashlight": {"_count": 1, "in": {"_count": 1}}, "likelylooking": {"_count": 1, "paragraph": {"_count": 1}}, "basic": {"_count": 2, "Flame": {"_count": 1}, "test": {"_count": 1}}, "gentle": {"_count": 5, "tickling": {"_count": 1}, "knock": {"_count": 1}, "something": {"_count": 1}, "breeze": {"_count": 1}, "bump": {"_count": 1}}, "fellow": {"_count": 5, "wizard": {"_count": 2}, "human": {"_count": 2}, "student": {"_count": 1}}, "poisonous": {"_count": 1, "spider": {"_count": 1}}, "souvenir": {"_count": 1, "of": {"_count": 1}}, "parcel": {"_count": 3, "and": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}}, "summer": {"_count": 3, "holiday": {"_count": 1}, "sky": {"_count": 1}, "apart": {"_count": 1}}, "miniature": {"_count": 5, "glass": {"_count": 1}, "palace": {"_count": 1}, "arm": {"_count": 1}, "model": {"_count": 1}, "tutu": {"_count": 1}}, "Pocket": {"_count": 1, "Sneakoscope": {"_count": 1}}, "wrapped": {"_count": 1, "present": {"_count": 1}}, "sleek": {"_count": 1, "black": {"_count": 1}}, "Handbook": {"_count": 1, "of": {"_count": 1}}, "belt": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "brandnew": {"_count": 4, "television": {"_count": 1}, "Firebolt": {"_count": 1}, "midnight": {"_count": 1}, "set": {"_count": 1}}, "welcomehomeforthesummer": {"_count": 1, "present": {"_count": 1}}, "report": {"_count": 8, "on": {"_count": 2}, "to": {"_count": 3}, "": {"_count": 1}, "for": {"_count": 1}, "back": {"_count": 1}}, "source": {"_count": 5, "of": {"_count": 3}, "most": {"_count": 2}}, "matted": {"_count": 1, "elbowlength": {"_count": 1}}, "computerized": {"_count": 1, "robot": {"_count": 1}}, "civil": {"_count": 1, "tongue": {"_count": 1}}, "weeklong": {"_count": 2, "visit": {"_count": 1}, "match": {"_count": 1}}, "hook": {"_count": 4, "next": {"_count": 1}, "just": {"_count": 1}, "being": {"_count": 1}, "on": {"_count": 1}}, "definite": {"_count": 10, "note": {"_count": 2}, "droop": {"_count": 1}, "upturn": {"_count": 1}, "endoftheholidays": {"_count": 1}, "increase": {"_count": 2}, "drop": {"_count": 1}, "coolness": {"_count": 1}, "sense": {"_count": 1}}, "Mug": {"_count": 1, "like": {"_count": 1}}, "vein": {"_count": 4, "was": {"_count": 1}, "flickering": {"_count": 1}, "of": {"_count": 1}, "pulsing": {"_count": 1}}, "crunch": {"_count": 3, "of": {"_count": 2}, "and": {"_count": 1}}, "bow": {"_count": 9, "tie": {"_count": 1}, "and": {"_count": 3}, "as": {"_count": 1}, "too": {"_count": 1}, "even": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "crisp": {"_count": 3, "twentypound": {"_count": 1}, "from": {"_count": 1}, "decisive": {"_count": 1}}, "hat": {"_count": 5, "stand": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "shaped": {"_count": 1}}, "painful": {"_count": 3, "smile": {"_count": 1}, "topic": {"_count": 1}, "death": {"_count": 1}}, "firstrate": {"_count": 1, "institution": {"_count": 1}}, "glazed": {"_count": 3, "look": {"_count": 1}, "sort": {"_count": 1}, "face": {"_count": 1}}, "fancy": {"_count": 3, "dinner": {"_count": 1}, "to": {"_count": 2}}, "fryup": {"_count": 1, "for": {"_count": 1}}, "healthysized": {"_count": 1, "boy": {"_count": 1}}, "mean": {"_count": 2, "runty": {"_count": 1}, "smile": {"_count": 1}}, "wastrel": {"_count": 1, "and": {"_count": 1}}, "burden": {"_count": 2, "on": {"_count": 1}, "you": {"_count": 1}}, "salami": {"_count": 2, "MARGE": {"_count": 1}, "": {"_count": 1}}, "reckless": {"_count": 3, "rage": {"_count": 1}, "daring": {"_count": 1}, "but": {"_count": 1}}, "worse": {"_count": 5, "fix": {"_count": 1}, "first": {"_count": 1}, "Keeper": {"_count": 1}, "jolt": {"_count": 1}, "state": {"_count": 1}}, "vault": {"_count": 2, "at": {"_count": 2}}, "trunkful": {"_count": 1, "of": {"_count": 1}}, "tripledecker": {"_count": 1, "violently": {"_count": 1}}, "conductor": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "toofbrush": {"_count": 1, "in": {"_count": 1}}, "completely": {"_count": 5, "different": {"_count": 2}, "clear": {"_count": 1}, "bemused": {"_count": 1}, "fake": {"_count": 1}}, "steering": {"_count": 1, "wheel": {"_count": 1}}, "faintly": {"_count": 2, "green": {"_count": 1}, "sinister": {"_count": 1}}, "traveling": {"_count": 5, "cloak": {"_count": 5}}, "handkerchief": {"_count": 9, "to": {"_count": 2}, "the": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "of": {"_count": 1}, "mopping": {"_count": 1}, "She": {"_count": 1}}, "sunkenfaced": {"_count": 1, "man": {"_count": 1}}, "superior": {"_count": 3, "sort": {"_count": 1}, "tone": {"_count": 1}, "": {"_count": 1}}, "massacre": {"_count": 1, "like": {"_count": 1}}, "supporter": {"_count": 2, "of": {"_count": 2}}, "dramatic": {"_count": 4, "whisper": {"_count": 1}, "entrance": {"_count": 1}, "effect": {"_count": 1}, "change": {"_count": 1}}, "breakout": {"_count": 2, "from": {"_count": 1}, "before": {"_count": 1}}, "bucketful": {"_count": 1, "of": {"_count": 1}}, "lantern": {"_count": 2, "appeared": {"_count": 1}, "aloft": {"_count": 1}}, "private": {"_count": 12, "parlor": {"_count": 1}, "hospital": {"_count": 1}, "word": {"_count": 3}, "conversation": {"_count": 1}, "hip": {"_count": 1}, "battle": {"_count": 1}, "chat": {"_count": 1}, "room": {"_count": 1}, "joke": {"_count": 1}, "discussion": {"_count": 1}}, "right": {"_count": 20, "flap": {"_count": 1}, "to": {"_count": 5}, "old": {"_count": 2}, "turn": {"_count": 2}, "and": {"_count": 1}, "state": {"_count": 3}, "little": {"_count": 2}, "pigs": {"_count": 1}, "pain": {"_count": 1}, "angle": {"_count": 1}, "laugh": {"_count": 1}}, "crumpet": {"_count": 3, "and": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "favorite": {"_count": 3, "nephew": {"_count": 1}, "of": {"_count": 1}, "pastime": {"_count": 1}}, "worried": {"_count": 7, "tone": {"_count": 1}, "voice": {"_count": 4}, "expression": {"_count": 1}, "look": {"_count": 1}}, "cheerfully": {"_count": 1, "crackling": {"_count": 1}}, "days": {"_count": 1, "shopping": {"_count": 1}}, "lunascope": {"_count": 2, "old": {"_count": 1}, "and": {"_count": 1}}, "nastysmelling": {"_count": 1, "liquid": {"_count": 1}}, "newly": {"_count": 1, "erected": {"_count": 1}}, "squarejawed": {"_count": 2, "wizard": {"_count": 2}}, "diamondhard": {"_count": 1, "polish": {"_count": 1}}, "bear": {"_count": 1, "with": {"_count": 1}}, "death": {"_count": 5, "omen": {"_count": 1}, "rattle": {"_count": 1}, "was": {"_count": 1}, "mask": {"_count": 1}, "sentence": {"_count": 1}}, "wheezy": {"_count": 7, "voice": {"_count": 2}, "growl": {"_count": 1}, "droning": {"_count": 1}, "chuckle": {"_count": 1}, "giggle": {"_count": 2}}, "magical": {"_count": 7, "creature": {"_count": 2}, "site": {"_count": 1}, "fire": {"_count": 1}, "sound": {"_count": 1}, "antique": {"_count": 1}, "protection": {"_count": 1}}, "jewelencrusted": {"_count": 1, "shell": {"_count": 1}}, "silk": {"_count": 3, "top": {"_count": 1}, "shawl": {"_count": 1}, "dressing": {"_count": 1}}, "noisy": {"_count": 2, "cage": {"_count": 1}, "and": {"_count": 1}}, "basket": {"_count": 3, "of": {"_count": 2}, "that": {"_count": 1}}, "toe": {"_count": 3, "missing": {"_count": 2}, "across": {"_count": 1}}, "replacement": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "wastepaper": {"_count": 1, "bin": {"_count": 1}}, "thirteenyearold": {"_count": 2, "wizard": {"_count": 2}}, "pyramid": {"_count": 1, "he": {"_count": 1}}, "dignified": {"_count": 6, "voice": {"_count": 4}, "sort": {"_count": 1}, "silence": {"_count": 1}}, "longsuffering": {"_count": 1, "voice": {"_count": 1}}, "sweatshirt": {"_count": 5, "over": {"_count": 2}, "so": {"_count": 1}, "they": {"_count": 1}, "some": {"_count": 1}}, "furrowed": {"_count": 1, "brow": {"_count": 1}}, "love": {"_count": 6, "potion": {"_count": 6}}, "young": {"_count": 18, "girl": {"_count": 1}, "killer": {"_count": 1}, "woman": {"_count": 3}, "wizard": {"_count": 2}, "age": {"_count": 2}, "mans": {"_count": 1}, "witch": {"_count": 2}, "lady": {"_count": 1}, "man": {"_count": 3}, "Doge": {"_count": 1}, "Luna": {"_count": 1}}, "furtive": {"_count": 5, "looking": {"_count": 1}, "smile": {"_count": 1}, "look": {"_count": 2}, "guilty": {"_count": 1}}, "carriage": {"_count": 3, "that": {"_count": 1}, "clock": {"_count": 1}, "together": {"_count": 1}}, "tense": {"_count": 4, "voice": {"_count": 3}, "moment": {"_count": 1}}, "hero": {"_count": 6, "but": {"_count": 1}, "": {"_count": 2}, "poised": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "lower": {"_count": 4, "and": {"_count": 1}, "voice": {"_count": 2}, "bunk": {"_count": 1}}, "nutter": {"_count": 6, "who": {"_count": 1}, "Ron": {"_count": 1}, "if": {"_count": 1}, "remember": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}}, "topsecurity": {"_count": 2, "prisoner": {"_count": 1}, "door": {"_count": 1}}, "Sneakoscope": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "dreamy": {"_count": 4, "look": {"_count": 1}, "voice": {"_count": 2}, "fashion": {"_count": 1}}, "puddingbowl": {"_count": 1, "haircut": {"_count": 1}}, "squeaking": {"_count": 1, "sound": {"_count": 1}}, "shivering": {"_count": 1, "light": {"_count": 1}}, "cloaked": {"_count": 2, "figure": {"_count": 2}}, "fit": {"_count": 7, "or": {"_count": 1}, "when": {"_count": 1}, "of": {"_count": 4}, "state": {"_count": 1}}, "silvery": {"_count": 8, "thing": {"_count": 1}, "ladder": {"_count": 1}, "orb": {"_count": 1}, "light": {"_count": 1}, "Invisibility": {"_count": 1}, "bundle": {"_count": 1}, "laugh": {"_count": 1}, "cloak": {"_count": 1}}, "higher": {"_count": 2, "voice": {"_count": 1}, "opinion": {"_count": 1}}, "comforting": {"_count": 1, "arm": {"_count": 1}}, "drawling": {"_count": 3, "delighted": {"_count": 1}, "voice": {"_count": 2}}, "problem": {"_count": 22, "": {"_count": 4}, "in": {"_count": 1}, "with": {"_count": 5}, "sharing": {"_count": 1}, "now": {"_count": 1}, "said": {"_count": 3}, "Lupin": {"_count": 1}, "but": {"_count": 1}, "Snape": {"_count": 1}, "just": {"_count": 1}, "were": {"_count": 1}, "calling": {"_count": 1}, "Severus": {"_count": 1}}, "mild": {"_count": 1, "voice": {"_count": 1}}, "sternlooking": {"_count": 1, "witch": {"_count": 1}}, "dementor": {"_count": 23, "Poppy": {"_count": 1}, "to": {"_count": 2}, "behind": {"_count": 1}, "less": {"_count": 1}, "and": {"_count": 2}, "within": {"_count": 1}, "gets": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 4}, "around": {"_count": 1}, "halt": {"_count": 1}, "gliding": {"_count": 1}, "stumble": {"_count": 1}, "the": {"_count": 1}, "attack": {"_count": 3}, "But": {"_count": 1}}, "Defense": {"_count": 7, "Against": {"_count": 7}}, "sea": {"_count": 6, "of": {"_count": 5}, "slug": {"_count": 1}}, "threelegged": {"_count": 3, "stool": {"_count": 2}, "wardrobe": {"_count": 1}}, "happier": {"_count": 4, "note": {"_count": 2}, "time": {"_count": 1}, "life": {"_count": 1}}, "ridiculous": {"_count": 3, "impression": {"_count": 1}, "position": {"_count": 1}, "line": {"_count": 1}}, "swooning": {"_count": 2, "fit": {"_count": 1}, "girl": {"_count": 1}}, "pug": {"_count": 1, "": {"_count": 1}}, "contemptuous": {"_count": 5, "glance": {"_count": 3}, "look": {"_count": 2}}, "fainting": {"_count": 1, "fit": {"_count": 1}}, "bare": {"_count": 5, "stretch": {"_count": 1}, "chest": {"_count": 1}, "minimum": {"_count": 1}, "patch": {"_count": 1}, "courtyard": {"_count": 1}}, "painting": {"_count": 5, "of": {"_count": 4}, "": {"_count": 1}}, "circular": {"_count": 7, "trapdoor": {"_count": 2}, "stone": {"_count": 1}, "window": {"_count": 2}, "pool": {"_count": 1}, "hole": {"_count": 1}}, "cross": {"_count": 5, "between": {"_count": 3}, "whisper": {"_count": 1}, "section": {"_count": 1}}, "gauzy": {"_count": 1, "spangled": {"_count": 1}}, "winged": {"_count": 2, "armchair": {"_count": 1}, "boar": {"_count": 1}}, "Gift": {"_count": 1, "granted": {"_count": 1}}, "redhaired": {"_count": 1, "man": {"_count": 1}}, "startled": {"_count": 3, "look": {"_count": 2}, "movement": {"_count": 1}}, "teacup": {"_count": 1, "from": {"_count": 1}}, "tinkle": {"_count": 1, "of": {"_count": 1}}, "dustpan": {"_count": 2, "and": {"_count": 1}, "which": {"_count": 1}}, "crooked": {"_count": 1, "sort": {"_count": 1}}, "blob": {"_count": 1, "a": {"_count": 1}}, "bowler": {"_count": 2, "hat": {"_count": 2}}, "hippo": {"_count": 1, "": {"_count": 1}}, "sheep": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "vacant": {"_count": 1, "armchair": {"_count": 1}}, "Grim": {"_count": 4, "she": {"_count": 1}, "if": {"_count": 1}, "thats": {"_count": 1}, "and": {"_count": 1}}, "donkey": {"_count": 1, "from": {"_count": 1}}, "dish": {"_count": 2, "of": {"_count": 2}}, "nerve": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "length": {"_count": 3, "of": {"_count": 3}}, "success": {"_count": 1, "": {"_count": 1}}, "pleading": {"_count": 2, "look": {"_count": 1}, "note": {"_count": 1}}, "hippogriff": {"_count": 9, "would": {"_count": 1}, "on": {"_count": 1}, "its": {"_count": 1}, "": {"_count": 3}, "called": {"_count": 1}, "and": {"_count": 1}, "tattooed": {"_count": 1}}, "pewter": {"_count": 2, "tankard": {"_count": 1}, "jug": {"_count": 1}}, "bonebreaking": {"_count": 1, "hug": {"_count": 1}}, "sling": {"_count": 2, "acting": {"_count": 1}, "in": {"_count": 1}}, "brave": {"_count": 5, "sort": {"_count": 1}, "attempt": {"_count": 3}, "clever": {"_count": 1}}, "Shrinking": {"_count": 2, "Solution": {"_count": 2}}, "tone": {"_count": 9, "of": {"_count": 4}, "that": {"_count": 5}}, "lasting": {"_count": 2, "injury": {"_count": 1}, "tribute": {"_count": 1}}, "dash": {"_count": 1, "of": {"_count": 1}}, "tadpole": {"_count": 1, "": {"_count": 1}}, "practical": {"_count": 4, "lesson": {"_count": 1}, "Defense": {"_count": 1}, "joke": {"_count": 1}, "bit": {"_count": 1}}, "cageful": {"_count": 1, "of": {"_count": 1}}, "badtempered": {"_count": 2, "failed": {"_count": 1}, "flamingo": {"_count": 1}}, "boggart": {"_count": 16, "in": {"_count": 1}, "": {"_count": 6}, "looks": {"_count": 1}, "make": {"_count": 1}, "is": {"_count": 2}, "Voldemort": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "or": {"_count": 1}}, "grandfather": {"_count": 3, "clock": {"_count": 3}}, "shapeshifter": {"_count": 1, "she": {"_count": 1}}, "form": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "flesheating": {"_count": 1, "slug": {"_count": 1}}, "stuffed": {"_count": 4, "vulture": {"_count": 3}, "snowy": {"_count": 1}}, "foxfur": {"_count": 1, "scarf": {"_count": 1}}, "handbag": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 2, "returned": {"_count": 1}, "supporter": {"_count": 1}}, "possible": {"_count": 1, "counterattack": {"_count": 1}}, "lurch": {"_count": 2, "of": {"_count": 2}}, "skeletal": {"_count": 1, "green": {"_count": 1}}, "rasping": {"_count": 3, "noise": {"_count": 1}, "bark": {"_count": 1}, "voice": {"_count": 1}}, "rattlesnake": {"_count": 1, "which": {"_count": 1}}, "severed": {"_count": 2, "hand": {"_count": 1}, "trolls": {"_count": 1}}, "crab": {"_count": 2, "": {"_count": 1}, "looking": {"_count": 1}}, "mousetrap": {"_count": 2, "": {"_count": 1}, "youve": {"_count": 1}}, "silverywhite": {"_count": 1, "orb": {"_count": 1}}, "cockroach": {"_count": 2, "": {"_count": 1}, "Potter": {"_count": 1}}, "turn": {"_count": 4, "with": {"_count": 1}, "": {"_count": 2}, "around": {"_count": 1}}, "meeting": {"_count": 12, "one": {"_count": 1}, "with": {"_count": 4}, "Mrs": {"_count": 1}, "that": {"_count": 1}, "tonight": {"_count": 2}, "Miss": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "red": {"_count": 7, "soccersized": {"_count": 1}, "ball": {"_count": 1}, "one": {"_count": 1}, "sunset": {"_count": 1}, "gleam": {"_count": 1}, "bolt": {"_count": 1}, "rose": {"_count": 1}}, "Keeper": {"_count": 1, "who": {"_count": 1}}, "fist": {"_count": 5, "into": {"_count": 2}, "at": {"_count": 1}, "onto": {"_count": 1}, "": {"_count": 1}}, "flourish": {"_count": 5, "and": {"_count": 4}, "": {"_count": 1}}, "lunge": {"_count": 1, "for": {"_count": 1}}, "frantically": {"_count": 1, "wiggling": {"_count": 1}}, "disturbance": {"_count": 7, "at": {"_count": 2}, "": {"_count": 1}, "he": {"_count": 1}, "down": {"_count": 1}, "outside": {"_count": 1}, "said": {"_count": 1}}, "fox": {"_count": 5, "": {"_count": 2}, "said": {"_count": 2}, "soared": {"_count": 1}}, "fuss": {"_count": 4, "about": {"_count": 3}, "said": {"_count": 1}}, "visit": {"_count": 4, "but": {"_count": 1}, "to": {"_count": 2}, "he": {"_count": 1}}, "doze": {"_count": 3, "": {"_count": 1}, "his": {"_count": 1}, "terrified": {"_count": 1}}, "wouldbe": {"_count": 3, "casual": {"_count": 1}, "calm": {"_count": 1}, "cheery": {"_count": 1}}, "grindylow": {"_count": 4, "for": {"_count": 1}, "cross": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}}, "dusty": {"_count": 8, "tin": {"_count": 1}, "classroom": {"_count": 1}, "box": {"_count": 1}, "pile": {"_count": 1}, "bottle": {"_count": 2}, "old": {"_count": 2}}, "chipped": {"_count": 1, "mug": {"_count": 1}}, "goblet": {"_count": 6, "which": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 3}, "full": {"_count": 1}}, "sip": {"_count": 7, "and": {"_count": 1}, "of": {"_count": 3}, "from": {"_count": 2}, "though": {"_count": 1}}, "packet": {"_count": 3, "of": {"_count": 2}, "across": {"_count": 1}}, "reenactment": {"_count": 1, "of": {"_count": 1}}, "pleasant": {"_count": 10, "evening": {"_count": 2}, "surprise": {"_count": 3}, "feeling": {"_count": 1}, "day": {"_count": 1}, "experience": {"_count": 1}, "golden": {"_count": 1}, "heliotrope": {"_count": 1}}, "chill": {"_count": 5, "seemed": {"_count": 1}, "breeze": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "settled": {"_count": 1}}, "suddenly": {"_count": 1, "sharp": {"_count": 1}}, "cackling": {"_count": 3, "voice": {"_count": 2}, "ahead": {"_count": 1}}, "Hufflepuff": {"_count": 6, "fifth": {"_count": 1}, "fourth": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "girl": {"_count": 1}, "player": {"_count": 1}}, "temporary": {"_count": 4, "guardian": {"_count": 1}, "invisible": {"_count": 1}, "member": {"_count": 1}, "warehouse": {"_count": 1}}, "flowering": {"_count": 1, "shrub": {"_count": 1}}, "somber": {"_count": 2, "expression": {"_count": 1}, "black": {"_count": 1}}, "pushover": {"_count": 1, "": {"_count": 1}}, "knowitall": {"_count": 2, "at": {"_count": 2}}, "tough": {"_count": 3, "one": {"_count": 1}, "brown": {"_count": 1}, "night": {"_count": 1}}, "squelch": {"_count": 1, "and": {"_count": 1}}, "teammate": {"_count": 2, "or": {"_count": 1}, "do": {"_count": 1}}, "horribly": {"_count": 2, "familiar": {"_count": 1}, "honeyed": {"_count": 1}}, "swimming": {"_count": 1, "pool": {"_count": 1}}, "replay": {"_count": 1, "": {"_count": 1}}, "rematch": {"_count": 1, "": {"_count": 1}}, "margin": {"_count": 4, "of": {"_count": 2}, "as": {"_count": 1}, "above": {"_count": 1}}, "quaking": {"_count": 1, "voice": {"_count": 1}}, "stretcher": {"_count": 1, "said": {"_count": 1}}, "getwell": {"_count": 1, "card": {"_count": 1}}, "hinkypunk": {"_count": 2, "a": {"_count": 1}, "then": {"_count": 1}}, "cloth": {"_count": 2, "": {"_count": 1}, "moments": {"_count": 1}}, "moments": {"_count": 21, "silence": {"_count": 9}, "indecision": {"_count": 1}, "pressure": {"_count": 1}, "pause": {"_count": 2}, "hesitation": {"_count": 2}, "foraging": {"_count": 1}, "painful": {"_count": 1}, "notice": {"_count": 1}, "thought": {"_count": 1}, "bewilderment": {"_count": 1}, "warning": {"_count": 1}}, "buzz": {"_count": 2, "of": {"_count": 2}}, "humpbacked": {"_count": 1, "oneeyed": {"_count": 1}}, "mysterious": {"_count": 2, "wink": {"_count": 1}, "golden": {"_count": 1}}, "wrench": {"_count": 1, "giving": {"_count": 1}}, "grimace": {"_count": 7, "as": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 2}, "then": {"_count": 1}}, "Dungbomb": {"_count": 4, "in": {"_count": 1}, "": {"_count": 2}, "under": {"_count": 1}}, "spiders": {"_count": 2, "web": {"_count": 2}}, "fairly": {"_count": 4, "thin": {"_count": 1}, "small": {"_count": 1}, "bad": {"_count": 1}, "unpleasant": {"_count": 1}}, "cellar": {"_count": 1, "which": {"_count": 1}}, "womans": {"_count": 7, "voice": {"_count": 3}, "": {"_count": 2}, "liberty": {"_count": 1}, "cold": {"_count": 1}}, "breakin": {"_count": 1, "wouldnt": {"_count": 1}}, "layer": {"_count": 2, "of": {"_count": 2}}, "butterbeer": {"_count": 5, "in": {"_count": 2}, "under": {"_count": 1}, "": {"_count": 2}}, "rumor": {"_count": 5, "admitted": {"_count": 1}, "going": {"_count": 1}, "someone": {"_count": 1}, "that": {"_count": 1}, "whispered": {"_count": 1}}, "traitor": {"_count": 1, "": {"_count": 1}}, "heros": {"_count": 1, "death": {"_count": 1}}, "cornered": {"_count": 1, "and": {"_count": 1}}, "thought": {"_count": 5, "before": {"_count": 1}, "for": {"_count": 2}, "said": {"_count": 2}}, "Peppermint": {"_count": 1, "Toad": {"_count": 1}}, "panicky": {"_count": 1, "voice": {"_count": 1}}, "madman": {"_count": 3, "Harry": {"_count": 1}, "": {"_count": 2}}, "million": {"_count": 10, "pieces": {"_count": 1}, "questions": {"_count": 1}, "Hermione": {"_count": 1}, "miles": {"_count": 1}, "said": {"_count": 1}, "times": {"_count": 3}, "years": {"_count": 1}, "could": {"_count": 1}}, "shallow": {"_count": 2, "trench": {"_count": 1}, "stone": {"_count": 1}}, "case": {"_count": 6, "of": {"_count": 2}, "in": {"_count": 1}, "for": {"_count": 2}, "at": {"_count": 1}}, "tablecloth": {"_count": 1, "and": {"_count": 1}}, "damn": {"_count": 9, "whos": {"_count": 1}, "how": {"_count": 1}, "good": {"_count": 1}, "about": {"_count": 1}, "But": {"_count": 1}, "sight": {"_count": 3}, "either": {"_count": 1}}, "defense": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "manticore": {"_count": 1, "savaged": {"_count": 1}}, "freshly": {"_count": 1, "unwrapped": {"_count": 1}}, "Firebolt": {"_count": 7, "identical": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 4}, "which": {"_count": 1}}, "string": {"_count": 2, "of": {"_count": 2}}, "misjudged": {"_count": 1, "kick": {"_count": 1}}, "sullenfaced": {"_count": 1, "Slytherin": {"_count": 1}}, "gunshot": {"_count": 4, "the": {"_count": 1}, "Rons": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}}, "thunderbolt": {"_count": 1, "to": {"_count": 1}}, "flagon": {"_count": 1, "of": {"_count": 1}}, "raw": {"_count": 2, "January": {"_count": 1}, "bloody": {"_count": 1}}, "bonfire": {"_count": 1, "full": {"_count": 1}}, "lofty": {"_count": 1, "voice": {"_count": 1}}, "Patronus": {"_count": 23, "said": {"_count": 1}, "look": {"_count": 1}, "would": {"_count": 1}, "There": {"_count": 1}, "that": {"_count": 1}, "Charm": {"_count": 1}, "on": {"_count": 1}, "before": {"_count": 1}, "which": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 5}, "in": {"_count": 1}, "while": {"_count": 1}, "Harry": {"_count": 1}, "here": {"_count": 1}, "some": {"_count": 1}, "with": {"_count": 1}, "back": {"_count": 1}, "did": {"_count": 1}}, "guardian": {"_count": 1, "that": {"_count": 1}}, "shield": {"_count": 4, "between": {"_count": 1}, "He": {"_count": 1}, "the": {"_count": 1}, "today": {"_count": 1}}, "Hagridsized": {"_count": 1, "figure": {"_count": 1}}, "projection": {"_count": 1, "of": {"_count": 1}}, "wisp": {"_count": 4, "of": {"_count": 4}}, "cackle": {"_count": 4, "of": {"_count": 4}}, "badly": {"_count": 4, "tuned": {"_count": 1}, "wrapped": {"_count": 2}, "behaved": {"_count": 1}}, "detour": {"_count": 3, "behind": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}}, "tottering": {"_count": 2, "pile": {"_count": 2}}, "Hurling": {"_count": 1, "Hex": {"_count": 1}}, "semitransparent": {"_count": 1, "cloud": {"_count": 1}}, "dementors": {"_count": 2, "hood": {"_count": 2}}, "bedsheet": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "lastditch": {"_count": 1, "attempt": {"_count": 1}}, "ride": {"_count": 2, "on": {"_count": 2}}, "fault": {"_count": 1, "its": {"_count": 1}}, "fourth": {"_count": 5, "year": {"_count": 1}, "piece": {"_count": 1}, "school": {"_count": 1}, "champion": {"_count": 1}, "owl": {"_count": 1}}, "first": {"_count": 8, "": {"_count": 1}, "distant": {"_count": 1}, "year": {"_count": 2}, "step": {"_count": 1}, "glimpse": {"_count": 1}, "attempt": {"_count": 2}}, "superb": {"_count": 3, "replacement": {"_count": 1}, "Keeper": {"_count": 1}, "Occlumens": {"_count": 1}}, "parachute": {"_count": 1, "in": {"_count": 1}}, "builtin": {"_count": 1, "autobrake": {"_count": 1}}, "glint": {"_count": 5, "of": {"_count": 5}}, "collision": {"_count": 2, "": {"_count": 2}}, "gaggle": {"_count": 5, "of": {"_count": 5}}, "knife": {"_count": 10, "": {"_count": 3}, "without": {"_count": 1}, "between": {"_count": 1}, "out": {"_count": 1}, "thatll": {"_count": 1}, "there": {"_count": 1}, "soared": {"_count": 1}, "sharpener": {"_count": 1}}, "wealth": {"_count": 1, "of": {"_count": 1}}, "skeleton": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "righ": {"_count": 1, "state": {"_count": 1}}, "space": {"_count": 7, "in": {"_count": 2}, "up": {"_count": 1}, "What": {"_count": 1}, "through": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}}, "habit": {"_count": 4, "of": {"_count": 4}}, "NoseBiting": {"_count": 1, "Teacup": {"_count": 1}}, "slope": {"_count": 1, "to": {"_count": 1}}, "malevolent": {"_count": 3, "grin": {"_count": 1}, "glance": {"_count": 1}, "look": {"_count": 1}}, "zombie": {"_count": 1, "": {"_count": 1}}, "stick": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "law": {"_count": 1, "unto": {"_count": 1}}, "false": {"_count": 12, "idea": {"_count": 1}, "alarm": {"_count": 2}, "sense": {"_count": 4}, "name": {"_count": 1}, "memory": {"_count": 1}, "trail": {"_count": 1}, "impression": {"_count": 1}, "move": {"_count": 1}}, "pounding": {"_count": 1, "in": {"_count": 1}}, "shrug": {"_count": 1, "": {"_count": 1}}, "fistful": {"_count": 6, "of": {"_count": 6}}, "Zonko": {"_count": 1, "product": {"_count": 1}}, "Cheering": {"_count": 1, "Charm": {"_count": 1}}, "pillow": {"_count": 1, "": {"_count": 1}}, "crystal": {"_count": 5, "ball": {"_count": 3}, "chandelier": {"_count": 1}, "bottle": {"_count": 1}}, "burn": {"_count": 3, "on": {"_count": 2}, "in": {"_count": 1}}, "dewy": {"_count": 1, "smile": {"_count": 1}}, "holiday": {"_count": 2, "": {"_count": 1}, "wont": {"_count": 1}}, "model": {"_count": 3, "of": {"_count": 2}, "student": {"_count": 1}}, "Firebolti": {"_count": 1, "said": {"_count": 1}}, "fast": {"_count": 2, "kickoff": {"_count": 1}, "owl": {"_count": 1}}, "tide": {"_count": 2, "of": {"_count": 2}}, "manyarmed": {"_count": 1, "hug": {"_count": 1}}, "confused": {"_count": 3, "impression": {"_count": 2}, "voice": {"_count": 1}}, "sobbing": {"_count": 1, "Wood": {"_count": 1}}, "casual": {"_count": 4, "game": {"_count": 1}, "flick": {"_count": 3}}, "rustle": {"_count": 5, "at": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 2}, "somewhere": {"_count": 1}}, "tortoise": {"_count": 1, "": {"_count": 1}}, "turtle": {"_count": 1, "which": {"_count": 1}}, "spout": {"_count": 1, "for": {"_count": 1}}, "willowpatterned": {"_count": 1, "shell": {"_count": 1}}, "hasty": {"_count": 4, "lunch": {"_count": 1}, "inaudible": {"_count": 1}, "pat": {"_count": 1}, "chorus": {"_count": 1}}, "zero": {"_count": 1, "onto": {"_count": 1}}, "bakinghot": {"_count": 1, "sun": {"_count": 1}}, "witness": {"_count": 3, "to": {"_count": 2}, "if": {"_count": 1}}, "shining": {"_count": 6, "axe": {"_count": 1}, "highheeled": {"_count": 1}, "knob": {"_count": 1}, "silver": {"_count": 2}, "face": {"_count": 1}}, "grunting": {"_count": 1, "sort": {"_count": 1}}, "shriek": {"_count": 10, "": {"_count": 2}, "a": {"_count": 1}, "just": {"_count": 1}, "of": {"_count": 2}, "and": {"_count": 2}, "from": {"_count": 1}, "her": {"_count": 1}}, "rubyred": {"_count": 1, "glow": {"_count": 1}}, "sprint": {"_count": 2, "it": {"_count": 1}, "Hermione": {"_count": 1}}, "banner": {"_count": 1, "as": {"_count": 1}}, "rag": {"_count": 3, "doll": {"_count": 1}, "so": {"_count": 1}, "dipped": {"_count": 1}}, "root": {"_count": 1, "in": {"_count": 1}}, "leaf": {"_count": 4, "twitched": {"_count": 1}, "outta": {"_count": 1}, "out": {"_count": 2}}, "flick": {"_count": 6, "of": {"_count": 6}}, "crouch": {"_count": 1, "": {"_count": 1}}, "creak": {"_count": 3, "overhead": {"_count": 1}, "and": {"_count": 2}}, "trap": {"_count": 8, "What": {"_count": 1}, "": {"_count": 3}, "around": {"_count": 1}, "for": {"_count": 1}, "when": {"_count": 1}, "nor": {"_count": 1}}, "corpse": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "skull": {"_count": 7, "": {"_count": 2}, "with": {"_count": 2}, "and": {"_count": 1}, "of": {"_count": 1}, "still": {"_count": 1}}, "petrified": {"_count": 1, "whisper": {"_count": 1}}, "grunt": {"_count": 5, "of": {"_count": 3}, "on": {"_count": 1}, "but": {"_count": 1}}, "dry": {"_count": 3, "sob": {"_count": 2}, "chuckle": {"_count": 1}}, "shower": {"_count": 12, "of": {"_count": 12}}, "ringing": {"_count": 7, "silence": {"_count": 2}, "voice": {"_count": 4}, "force": {"_count": 1}}, "valiant": {"_count": 1, "effort": {"_count": 1}}, "whimper": {"_count": 4, "of": {"_count": 1}, "": {"_count": 1}, "her": {"_count": 1}, "and": {"_count": 1}}, "piglet": {"_count": 1, "scratching": {"_count": 1}}, "pet": {"_count": 6, "": {"_count": 1}, "dog": {"_count": 1}, "would": {"_count": 1}, "dragon": {"_count": 1}, "grindylow": {"_count": 1}, "Dont": {"_count": 1}}, "register": {"_count": 2, "showing": {"_count": 1}, "shook": {"_count": 1}}, "harmless": {"_count": 1, "wolf": {"_count": 1}}, "derisive": {"_count": 4, "noise": {"_count": 1}, "snort": {"_count": 1}, "laugh": {"_count": 1}, "caw": {"_count": 1}}, "gobletful": {"_count": 1, "along": {"_count": 1}}, "tame": {"_count": 1, "werewolf": {"_count": 1}}, "schoolboy": {"_count": 1, "grudge": {"_count": 1}}, "convicted": {"_count": 3, "murderer": {"_count": 2}, "Mugglehater": {"_count": 1}}, "kiss": {"_count": 1, "for": {"_count": 1}}, "werewolfs": {"_count": 1, "mind": {"_count": 1}}, "trickle": {"_count": 6, "of": {"_count": 6}}, "bony": {"_count": 1, "hand": {"_count": 1}}, "boys": {"_count": 5, "bedside": {"_count": 1}, "pocket": {"_count": 1}, "bathroom": {"_count": 2}, "": {"_count": 1}}, "struggle": {"_count": 5, "": {"_count": 4}, "of": {"_count": 1}}, "speededup": {"_count": 1, "film": {"_count": 1}}, "growing": {"_count": 3, "tree": {"_count": 1}, "boy": {"_count": 1}, "number": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "bluff": {"_count": 1, "": {"_count": 1}}, "terribly": {"_count": 1, "fury": {"_count": 1}}, "splint": {"_count": 1, "": {"_count": 1}}, "standing": {"_count": 5, "position": {"_count": 3}, "joke": {"_count": 1}, "ovation": {"_count": 1}}, "grotesque": {"_count": 3, "puppet": {"_count": 1}, "giant": {"_count": 1}, "face": {"_count": 1}}, "sixlegged": {"_count": 1, "race": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "scurrying": {"_count": 2, "through": {"_count": 1}, "of": {"_count": 1}}, "rumbling": {"_count": 1, "growl": {"_count": 1}}, "yelping": {"_count": 1, "a": {"_count": 1}}, "whining": {"_count": 1, "a": {"_count": 1}}, "shudder": {"_count": 8, "rolled": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "under": {"_count": 1}, "as": {"_count": 2}, "and": {"_count": 1}}, "gesture": {"_count": 4, "as": {"_count": 1}, "of": {"_count": 2}, "from": {"_count": 1}}, "gaping": {"_count": 2, "shapeless": {"_count": 1}, "hole": {"_count": 1}}, "possibility": {"_count": 5, "he": {"_count": 1}, "occurred": {"_count": 1}, "isnt": {"_count": 1}, "that": {"_count": 2}}, "blind": {"_count": 4, "spot": {"_count": 1}, "eye": {"_count": 2}, "man": {"_count": 1}}, "murderer": {"_count": 6, "and": {"_count": 1}, "": {"_count": 3}, "too": {"_count": 1}, "spat": {"_count": 1}}, "gnawing": {"_count": 1, "sensation": {"_count": 1}}, "dreadful": {"_count": 12, "ordeal": {"_count": 1}, "punishment": {"_count": 1}, "teacher": {"_count": 2}, "tragedy": {"_count": 1}, "gutwrenching": {"_count": 1}, "But": {"_count": 1}, "nosebleed": {"_count": 1}, "scene": {"_count": 1}, "leer": {"_count": 1}, "scream": {"_count": 1}, "blast": {"_count": 1}}, "hospital": {"_count": 6, "wing": {"_count": 2}, "": {"_count": 2}, "disguised": {"_count": 1}, "patient": {"_count": 1}}, "TimeTurner": {"_count": 1, "Hermione": {"_count": 1}}, "miracle": {"_count": 4, "": {"_count": 1}, "if": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}}, "lookout": {"_count": 9, "Okay": {"_count": 1}, "": {"_count": 2}, "both": {"_count": 1}, "for": {"_count": 3}, "growled": {"_count": 1}, "and": {"_count": 1}}, "doubt": {"_count": 1, "the": {"_count": 1}}, "grudging": {"_count": 2, "trot": {"_count": 1}, "smile": {"_count": 1}}, "swishing": {"_count": 1, "noise": {"_count": 1}}, "firmer": {"_count": 2, "grip": {"_count": 2}}, "clump": {"_count": 6, "of": {"_count": 6}}, "bush": {"_count": 2, "at": {"_count": 1}, "covered": {"_count": 1}}, "shapeless": {"_count": 1, "cloud": {"_count": 1}}, "stag": {"_count": 11, "": {"_count": 5}, "when": {"_count": 1}, "its": {"_count": 1}, "Patronus": {"_count": 2}, "it": {"_count": 1}, "as": {"_count": 1}}, "tightly": {"_count": 4, "spiraling": {"_count": 2}, "furled": {"_count": 2}}, "severe": {"_count": 2, "disappointment": {"_count": 1}, "look": {"_count": 1}}, "field": {"_count": 4, "day": {"_count": 2}, "in": {"_count": 1}, "at": {"_count": 1}}, "laughingstock": {"_count": 1, "": {"_count": 1}}, "pay": {"_count": 3, "raise": {"_count": 2}, "rise": {"_count": 1}}, "deputy": {"_count": 1, "who": {"_count": 1}}, "connection": {"_count": 5, "with": {"_count": 2}, "forged": {"_count": 1}, "between": {"_count": 1}, "that": {"_count": 1}}, "gamekeeper": {"_count": 1, "": {"_count": 1}}, "glorious": {"_count": 4, "half": {"_count": 1}, "day": {"_count": 1}, "infestation": {"_count": 1}, "view": {"_count": 1}}, "fellytone": {"_count": 1, "now": {"_count": 1}}, "hope": {"_count": 5, "of": {"_count": 3}, "a": {"_count": 1}, "I": {"_count": 1}}, "P": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "godfather": {"_count": 3, "": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}}, "much": {"_count": 16, "better": {"_count": 2}, "lower": {"_count": 1}, "louder": {"_count": 1}, "more": {"_count": 5}, "greater": {"_count": 1}, "closer": {"_count": 1}, "younger": {"_count": 2}, "older": {"_count": 1}, "slower": {"_count": 1}, "tighter": {"_count": 1}}, "hill": {"_count": 2, "overlooking": {"_count": 1}, "": {"_count": 1}}, "finelooking": {"_count": 1, "manor": {"_count": 1}}, "fine": {"_count": 12, "summers": {"_count": 1}, "way": {"_count": 1}, "thread": {"_count": 1}, "old": {"_count": 1}, "trickle": {"_count": 1}, "welldressed": {"_count": 1}, "catch": {"_count": 1}, "clear": {"_count": 1}, "marble": {"_count": 1}, "glowing": {"_count": 1}, "spirit": {"_count": 1}, "woman": {"_count": 1}}, "maid": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "rundown": {"_count": 2, "cottage": {"_count": 1}, "stone": {"_count": 1}}, "cuppa": {"_count": 3, "once": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "spare": {"_count": 5, "key": {"_count": 1}, "table": {"_count": 1}, "niffler": {"_count": 1}, "seat": {"_count": 1}, "wand": {"_count": 1}}, "teenage": {"_count": 3, "boy": {"_count": 2}, "Dumbledore": {"_count": 1}}, "dare": {"_count": 1, "": {"_count": 1}}, "flickering": {"_count": 3, "light": {"_count": 1}, "insubstantial": {"_count": 1}, "film": {"_count": 1}}, "bald": {"_count": 2, "patch": {"_count": 1}, "black": {"_count": 1}}, "gnarled": {"_count": 2, "finger": {"_count": 1}, "hand": {"_count": 1}}, "buildup": {"_count": 1, "of": {"_count": 1}}, "suitable": {"_count": 5, "person": {"_count": 1}, "spell": {"_count": 1}, "career": {"_count": 1}, "owl": {"_count": 1}, "candidate": {"_count": 1}}, "substitute": {"_count": 3, "": {"_count": 1}, "teacher": {"_count": 1}, "go": {"_count": 1}}, "hiss": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "faithful": {"_count": 4, "servant": {"_count": 2}, "Death": {"_count": 2}}, "sulky": {"_count": 3, "edge": {"_count": 1}, "little": {"_count": 1}, "expression": {"_count": 1}}, "whitehot": {"_count": 3, "wire": {"_count": 1}, "poker": {"_count": 1}, "whiplike": {"_count": 1}}, "darkened": {"_count": 2, "room": {"_count": 2}}, "hearth": {"_count": 1, "rug": {"_count": 1}}, "fiftyfoothigh": {"_count": 1, "hoop": {"_count": 1}}, "respectable": {"_count": 3, "suburban": {"_count": 1}, "face": {"_count": 1}, "amount": {"_count": 1}}, "living": {"_count": 6, "creature": {"_count": 1}, "reminder": {"_count": 1}, "soul": {"_count": 1}, "said": {"_count": 1}, "thing": {"_count": 1}, "eye": {"_count": 1}}, "venomous": {"_count": 3, "footlong": {"_count": 1}, "look": {"_count": 1}, "bubble": {"_count": 1}}, "stair": {"_count": 1, "or": {"_count": 1}}, "tremendous": {"_count": 3, "grunting": {"_count": 1}, "speed": {"_count": 1}, "scandal": {"_count": 1}}, "lightningshaped": {"_count": 2, "cut": {"_count": 1}, "scar": {"_count": 1}}, "fortnight": {"_count": 5, "to": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "before": {"_count": 1}}, "beach": {"_count": 2, "somewhere": {"_count": 1}, "umbrella": {"_count": 1}}, "bemused": {"_count": 3, "expression": {"_count": 1}, "sort": {"_count": 2}}, "parent": {"_count": 3, "an": {"_count": 1}, "you": {"_count": 1}, "had": {"_count": 1}}, "home": {"_count": 1, "once": {"_count": 1}}, "dangerous": {"_count": 6, "murderer": {"_count": 2}, "sort": {"_count": 1}, "voice": {"_count": 1}, "enemy": {"_count": 1}, "or": {"_count": 1}}, "grapefruit": {"_count": 3, "into": {"_count": 1}, "quarter": {"_count": 1}, "": {"_count": 1}}, "tremulous": {"_count": 2, "There": {"_count": 1}, "voice": {"_count": 1}}, "boisterous": {"_count": 1, "little": {"_count": 1}}, "sack": {"_count": 7, "full": {"_count": 1}, "of": {"_count": 4}, "by": {"_count": 1}, "on": {"_count": 1}}, "onceinalifetime": {"_count": 1, "opportunity": {"_count": 1}}, "square": {"_count": 2, "inch": {"_count": 1}, "silver": {"_count": 1}}, "sure": {"_count": 2, "way": {"_count": 1}, "sign": {"_count": 1}}, "sport": {"_count": 1, "he": {"_count": 1}}, "hastily": {"_count": 2, "scribbled": {"_count": 1}, "stifled": {"_count": 1}}, "postscript": {"_count": 1, "": {"_count": 1}}, "Ferrari": {"_count": 1, "": {"_count": 1}}, "fake": {"_count": 14, "coal": {"_count": 1}, "wand": {"_count": 1}, "smile": {"_count": 1}, "Galleon": {"_count": 1}, "in": {"_count": 3}, "trail": {"_count": 1}, "rasped": {"_count": 1}, "nor": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 2}}, "plug": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "jiffy": {"_count": 2, "though": {"_count": 1}, "an": {"_count": 1}}, "whooshing": {"_count": 2, "sound": {"_count": 2}}, "footlong": {"_count": 1, "purple": {"_count": 1}}, "china": {"_count": 1, "figure": {"_count": 1}}, "ponytail": {"_count": 5, "": {"_count": 1}, "like": {"_count": 1}, "hastily": {"_count": 1}, "longer": {"_count": 1}, "who": {"_count": 1}}, "fang": {"_count": 1, "dangling": {"_count": 1}}, "rock": {"_count": 4, "concert": {"_count": 1}, "on": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}}, "shade": {"_count": 3, "too": {"_count": 1}, "of": {"_count": 1}, "more": {"_count": 1}}, "rate": {"_count": 1, "of": {"_count": 1}}, "further": {"_count": 5, "poke": {"_count": 1}, "few": {"_count": 1}, "disgusting": {"_count": 1}, "amendment": {"_count": 1}, "three": {"_count": 1}}, "paw": {"_count": 2, "into": {"_count": 1}, "": {"_count": 1}}, "lawnmower": {"_count": 1, "with": {"_count": 1}}, "member": {"_count": 11, "of": {"_count": 11}}, "recent": {"_count": 1, "acquisition": {"_count": 1}}, "trim": {"_count": 2, "": {"_count": 2}}, "sample": {"_count": 2, "of": {"_count": 2}}, "sheaf": {"_count": 5, "of": {"_count": 5}}, "golfing": {"_count": 1, "sweater": {"_count": 1}}, "liein": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "test": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "license": {"_count": 3, "": {"_count": 2}, "for": {"_count": 1}}, "handy": {"_count": 2, "wood": {"_count": 1}, "penknife": {"_count": 1}}, "stitch": {"_count": 3, "in": {"_count": 3}}, "shout": {"_count": 11, "rent": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 4}, "if": {"_count": 1}, "of": {"_count": 3}, "then": {"_count": 1}}, "ruddyfaced": {"_count": 1, "wizard": {"_count": 1}}, "scrubby": {"_count": 2, "brown": {"_count": 2}}, "moldylooking": {"_count": 1, "old": {"_count": 1}}, "sackful": {"_count": 1, "of": {"_count": 1}}, "tweed": {"_count": 1, "suit": {"_count": 1}}, "kilt": {"_count": 2, "and": {"_count": 2}}, "poncho": {"_count": 2, "": {"_count": 2}}, "punctured": {"_count": 1, "football": {"_count": 1}}, "miles": {"_count": 1, "walk": {"_count": 1}}, "gate": {"_count": 2, "swam": {"_count": 1}, "": {"_count": 1}}, "ten": {"_count": 1, "": {"_count": 1}}, "five": {"_count": 1, "": {"_count": 1}}, "bloke": {"_count": 3, "walking": {"_count": 1}, "who": {"_count": 1}, "I": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "more": {"_count": 17, "enthusiastic": {"_count": 1}, "accurate": {"_count": 2}, "active": {"_count": 1}, "peculiar": {"_count": 1}, "private": {"_count": 1}, "businesslike": {"_count": 1}, "difficult": {"_count": 1}, "achievable": {"_count": 1}, "interesting": {"_count": 1}, "dignified": {"_count": 1}, "defeatedlooking": {"_count": 1}, "comfortable": {"_count": 2}, "than": {"_count": 1}, "desperately": {"_count": 1}, "beautiful": {"_count": 1}}, "front": {"_count": 2, "garden": {"_count": 1}, "pocket": {"_count": 1}}, "hindrance": {"_count": 1, "than": {"_count": 1}}, "help": {"_count": 1, "because": {"_count": 1}}, "quizzical": {"_count": 4, "look": {"_count": 3}, "half": {"_count": 1}}, "spangled": {"_count": 1, "banner": {"_count": 1}}, "sandyhaired": {"_count": 1, "woman": {"_count": 1}}, "poster": {"_count": 4, "of": {"_count": 3}, "giving": {"_count": 1}}, "heated": {"_count": 3, "argument": {"_count": 1}, "voice": {"_count": 1}, "discussion": {"_count": 1}}, "healthy": {"_count": 1, "breeze": {"_count": 1}}, "penfriend": {"_count": 1, "at": {"_count": 1}}, "running": {"_count": 2, "commentary": {"_count": 1}, "leap": {"_count": 1}}, "wasp": {"_count": 3, "was": {"_count": 1}, "that": {"_count": 1}, "buzzing": {"_count": 1}}, "powerfully": {"_count": 1, "built": {"_count": 1}}, "state": {"_count": 14, "of": {"_count": 13}, "Im": {"_count": 1}}, "hiccough": {"_count": 1, "in": {"_count": 1}}, "rubber": {"_count": 2, "chicken": {"_count": 1}, "haddock": {"_count": 1}}, "spoilsport": {"_count": 1, "Arthur": {"_count": 1}}, "notebook": {"_count": 3, "and": {"_count": 1}, "in": {"_count": 1}, "clutched": {"_count": 1}}, "brew": {"_count": 1, "I": {"_count": 1}}, "dicky": {"_count": 1, "bird": {"_count": 1}}, "leaky": {"_count": 1, "cauldron": {"_count": 1}}, "contrast": {"_count": 1, "with": {"_count": 1}}, "stiff": {"_count": 3, "upright": {"_count": 1}, "turban": {"_count": 1}, "nod": {"_count": 1}}, "slide": {"_count": 1, "rule": {"_count": 1}}, "bank": {"_count": 1, "manager": {"_count": 1}}, "hunchback": {"_count": 1, "": {"_count": 1}}, "niche": {"_count": 4, "in": {"_count": 1}, "beneath": {"_count": 1}, "opposite": {"_count": 1}, "where": {"_count": 1}}, "palpable": {"_count": 1, "cloud": {"_count": 1}}, "dancing": {"_count": 2, "shamrock": {"_count": 1}, "orange": {"_count": 1}}, "playbyplay": {"_count": 1, "breakdown": {"_count": 1}}, "swarm": {"_count": 4, "of": {"_count": 4}}, "tea": {"_count": 6, "towel": {"_count": 4}, "cozy": {"_count": 1}, "party": {"_count": 1}}, "toga": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "teeny": {"_count": 1, "quivering": {"_count": 1}}, "halfoctave": {"_count": 1, "and": {"_count": 1}}, "show": {"_count": 2, "": {"_count": 1}, "dog": {"_count": 1}}, "hedgehog": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "fatherly": {"_count": 3, "fashion": {"_count": 1}, "expression": {"_count": 1}, "sort": {"_count": 1}}, "springboard": {"_count": 1, "": {"_count": 1}}, "fireworks": {"_count": 1, "display": {"_count": 1}}, "lap": {"_count": 2, "of": {"_count": 2}}, "seamless": {"_count": 1, "team": {"_count": 1}}, "thunderous": {"_count": 2, "tide": {"_count": 1}, "voice": {"_count": 1}}, "skill": {"_count": 1, "unrivaled": {"_count": 1}}, "dive": {"_count": 4, "and": {"_count": 2}, "": {"_count": 1}, "toward": {"_count": 1}}, "horde": {"_count": 4, "of": {"_count": 4}}, "resounding": {"_count": 3, "earsplitting": {"_count": 1}, "clunk": {"_count": 1}, "crash": {"_count": 1}}, "disagreement": {"_count": 1, "about": {"_count": 1}}, "hundredthousandstrong": {"_count": 1, "crowd": {"_count": 1}}, "jacket": {"_count": 2, "and": {"_count": 2}}, "disgusted": {"_count": 5, "look": {"_count": 4}, "tone": {"_count": 1}}, "dishwasher": {"_count": 1, "at": {"_count": 1}}, "panicked": {"_count": 1, "shout": {"_count": 1}}, "colossal": {"_count": 2, "skull": {"_count": 1}, "explosion": {"_count": 1}}, "tongue": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "on": {"_count": 1}}, "sitting": {"_count": 9, "position": {"_count": 6}, "room": {"_count": 3}}, "mere": {"_count": 11, "shadow": {"_count": 1}, "inch": {"_count": 1}, "statement": {"_count": 1}, "technicality": {"_count": 1}, "twelve": {"_count": 1}, "fortnight": {"_count": 1}, "whim": {"_count": 1}, "headmaster": {"_count": 1}, "four": {"_count": 1}, "symbolic": {"_count": 1}, "effusion": {"_count": 1}}, "deeply": {"_count": 4, "unpleasant": {"_count": 1}, "resentful": {"_count": 1}, "wounded": {"_count": 1}, "ingrained": {"_count": 1}}, "servant": {"_count": 4, "who": {"_count": 1}, "returned": {"_count": 1}, "": {"_count": 1}, "unworthy": {"_count": 1}}, "Death": {"_count": 49, "Eater": {"_count": 47}, "Eaters": {"_count": 2}}, "persons": {"_count": 1, "memorys": {"_count": 1}}, "cry": {"_count": 10, "echoed": {"_count": 1}, "of": {"_count": 7}, "that": {"_count": 1}, "from": {"_count": 1}}, "rolledup": {"_count": 1, "copy": {"_count": 1}}, "twinkling": {"_count": 1, "blackandwhite": {"_count": 1}}, "shot": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "trance": {"_count": 2, "a": {"_count": 1}, "well": {"_count": 1}}, "leaden": {"_count": 1, "feeling": {"_count": 1}}, "claim": {"_count": 2, "for": {"_count": 1}, "its": {"_count": 1}}, "twelvebedroomed": {"_count": 1, "tent": {"_count": 1}}, "fact": {"_count": 4, "he": {"_count": 1}, "that": {"_count": 1}, "Crabbe": {"_count": 1}, "": {"_count": 1}}, "public": {"_count": 2, "statement": {"_count": 1}, "ward": {"_count": 1}}, "fireproof": {"_count": 1, "balaclava": {"_count": 1}}, "pained": {"_count": 3, "look": {"_count": 2}, "voice": {"_count": 1}}, "weeks": {"_count": 3, "worth": {"_count": 3}}, "frenzy": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "moldy": {"_count": 3, "looking": {"_count": 1}, "cupboard": {"_count": 1}, "old": {"_count": 1}}, "minor": {"_count": 2, "charge": {"_count": 1}, "scandal": {"_count": 1}}, "caution": {"_count": 1, "said": {"_count": 1}}, "comb": {"_count": 1, "through": {"_count": 1}}, "Mudbloodlover": {"_count": 1, "and": {"_count": 1}}, "moldering": {"_count": 1, "old": {"_count": 1}}, "min": {"_count": 1, "to": {"_count": 1}}, "building": {"_count": 8, "so": {"_count": 1}, "": {"_count": 2}, "up": {"_count": 1}, "full": {"_count": 2}, "like": {"_count": 1}, "he": {"_count": 1}}, "glacier": {"_count": 1, "and": {"_count": 1}}, "grandmother": {"_count": 1, "": {"_count": 1}}, "Summoning": {"_count": 7, "Charm": {"_count": 7}}, "father": {"_count": 3, "and": {"_count": 1}, "substitute": {"_count": 1}, "of": {"_count": 1}}, "promotion": {"_count": 1, "any": {"_count": 1}}, "pulp": {"_count": 3, "": {"_count": 1}, "if": {"_count": 1}, "weren": {"_count": 1}}, "rumble": {"_count": 1, "of": {"_count": 1}}, "gale": {"_count": 1, "": {"_count": 1}}, "bellcovered": {"_count": 1, "hat": {"_count": 1}}, "water": {"_count": 2, "bomb": {"_count": 1}, "beetle": {"_count": 1}}, "hatred": {"_count": 2, "which": {"_count": 1}, "so": {"_count": 1}}, "combination": {"_count": 5, "of": {"_count": 5}}, "double": {"_count": 8, "thumbsup": {"_count": 1}, "line": {"_count": 1}, "take": {"_count": 1}, "gold": {"_count": 1}, "period": {"_count": 2}, "cell": {"_count": 1}, "agent": {"_count": 1}}, "wish": {"_count": 1, "a": {"_count": 1}}, "daring": {"_count": 1, "plan": {"_count": 1}}, "misleading": {"_count": 1, "impression": {"_count": 1}}, "stormtossed": {"_count": 1, "fathomsdeep": {"_count": 1}}, "sizable": {"_count": 2, "chunk": {"_count": 1}, "stack": {"_count": 1}}, "ghosts": {"_count": 1, "council": {"_count": 1}}, "chisel": {"_count": 1, "": {"_count": 1}}, "diagonal": {"_count": 1, "gash": {"_count": 1}}, "coin": {"_count": 1, "and": {"_count": 1}}, "hip": {"_count": 2, "flask": {"_count": 2}}, "clawed": {"_count": 1, "foot": {"_count": 1}}, "leprechaun": {"_count": 1, "who": {"_count": 1}}, "friendly": {"_count": 7, "competition": {"_count": 1}, "face": {"_count": 1}, "way": {"_count": 1}, "little": {"_count": 2}, "gesture": {"_count": 1}, "BlastEnded": {"_count": 1}}, "measure": {"_count": 2, "we": {"_count": 1}, "of": {"_count": 1}}, "faraway": {"_count": 2, "look": {"_count": 1}, "place": {"_count": 1}}, "stand": {"_count": 2, "about": {"_count": 1}, "of": {"_count": 1}}, "skrewt": {"_count": 4, "and": {"_count": 2}, "": {"_count": 2}}, "project": {"_count": 1, "of": {"_count": 1}}, "brief": {"_count": 8, "period": {"_count": 1}, "glimpse": {"_count": 1}, "moment": {"_count": 2}, "onearmed": {"_count": 1}, "calm": {"_count": 1}, "statement": {"_count": 1}, "silence": {"_count": 1}}, "spooky": {"_count": 1, "manner": {"_count": 1}}, "position": {"_count": 7, "of": {"_count": 2}, "in": {"_count": 2}, "with": {"_count": 1}, "to": {"_count": 2}}, "hacking": {"_count": 1, "cough": {"_count": 1}}, "midget": {"_count": 1, "in": {"_count": 1}}, "tussle": {"_count": 1, "with": {"_count": 1}}, "handshake": {"_count": 1, "and": {"_count": 1}}, "pure": {"_count": 2, "white": {"_count": 1}, "blood": {"_count": 1}}, "smack": {"_count": 1, "to": {"_count": 1}}, "shocked": {"_count": 5, "voice": {"_count": 2}, "murmur": {"_count": 1}, "silence": {"_count": 1}, "pause": {"_count": 1}}, "chat": {"_count": 2, "with": {"_count": 2}}, "disappointed": {"_count": 2, "voice": {"_count": 2}}, "Scouring": {"_count": 1, "Charm": {"_count": 1}}, "horned": {"_count": 2, "toad": {"_count": 1}, "skull": {"_count": 1}}, "general": {"_count": 4, "murmur": {"_count": 1}, "idea": {"_count": 1}, "cry": {"_count": 1}, "outcry": {"_count": 1}}, "harsh": {"_count": 4, "laugh": {"_count": 2}, "croaky": {"_count": 1}, "bark": {"_count": 1}}, "trapeze": {"_count": 2, "": {"_count": 1}, "artist": {"_count": 1}}, "tarantula": {"_count": 1, "": {"_count": 1}}, "nosebleed": {"_count": 1, "": {"_count": 1}}, "situation": {"_count": 3, "where": {"_count": 1}, "like": {"_count": 1}, "in": {"_count": 1}}, "life": {"_count": 6, "sentence": {"_count": 2}, "already": {"_count": 1}, "term": {"_count": 1}, "of": {"_count": 1}, "belt": {"_count": 1}}, "torrent": {"_count": 1, "of": {"_count": 1}}, "cough": {"_count": 6, "owing": {"_count": 1}, "": {"_count": 1}, "drop": {"_count": 2}, "behind": {"_count": 1}, "potion": {"_count": 1}}, "treasured": {"_count": 2, "possession": {"_count": 2}}, "badge": {"_count": 5, "and": {"_count": 2}, "to": {"_count": 1}, "just": {"_count": 1}, "laugh": {"_count": 1}}, "Change": {"_count": 1, "in": {"_count": 1}}, "collecting": {"_count": 1, "tin": {"_count": 1}}, "pacifying": {"_count": 1, "sort": {"_count": 1}}, "barn": {"_count": 1, "owl": {"_count": 1}}, "tawny": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "owl": {"_count": 1}}, "reassuring": {"_count": 4, "sort": {"_count": 1}, "sight": {"_count": 1}, "nod": {"_count": 1}, "smile": {"_count": 1}}, "troubled": {"_count": 4, "mind": {"_count": 1}, "nights": {"_count": 1}, "expression": {"_count": 1}, "voice": {"_count": 1}}, "sweep": {"_count": 2, "of": {"_count": 2}}, "squirrel": {"_count": 1, "": {"_count": 1}}, "floating": {"_count": 1, "sensation": {"_count": 1}}, "satisfactory": {"_count": 1, "pincushion": {"_count": 1}}, "pin": {"_count": 1, "": {"_count": 1}}, "remarkable": {"_count": 1, "pace": {"_count": 1}}, "marked": {"_count": 3, "effect": {"_count": 1}, "man": {"_count": 2}}, "cactus": {"_count": 1, "": {"_count": 1}}, "bronze": {"_count": 2, "eagle": {"_count": 1}, "knocker": {"_count": 1}}, "bummer": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "nosy": {"_count": 1, "git": {"_count": 1}}, "panel": {"_count": 1, "of": {"_count": 1}}, "cockatrice": {"_count": 1, "the": {"_count": 1}}, "S": {"_count": 2, "": {"_count": 2}}, "response": {"_count": 3, "every": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 1}}, "sixth": {"_count": 3, "year": {"_count": 2}, "Horcrux": {"_count": 1}}, "shoe": {"_count": 1, "the": {"_count": 1}}, "childs": {"_count": 1, "sled": {"_count": 1}}, "gracious": {"_count": 1, "smile": {"_count": 1}}, "trifle": {"_count": 1, "": {"_count": 1}}, "riverbed": {"_count": 1, "": {"_count": 1}}, "whirlpool": {"_count": 1, "appeared": {"_count": 1}}, "mast": {"_count": 1, "": {"_count": 1}}, "resurrected": {"_count": 1, "wreck": {"_count": 1}}, "plank": {"_count": 1, "being": {"_count": 1}}, "fruity": {"_count": 1, "unctuous": {"_count": 1}}, "prominent": {"_count": 2, "curved": {"_count": 1}, "chin": {"_count": 1}}, "camp": {"_count": 2, "bed": {"_count": 2}}, "muffler": {"_count": 1, "around": {"_count": 1}}, "greater": {"_count": 2, "variety": {"_count": 1}, "hand": {"_count": 1}}, "food": {"_count": 1, "they": {"_count": 1}}, "veelcd": {"_count": 1, "he": {"_count": 1}}, "veela": {"_count": 3, "appeared": {"_count": 1}, "got": {"_count": 1}, "said": {"_count": 1}}, "smattering": {"_count": 3, "of": {"_count": 3}}, "Beater": {"_count": 2, "or": {"_count": 1}, "said": {"_count": 1}}, "jovial": {"_count": 1, "wave": {"_count": 1}}, "slip": {"_count": 2, "of": {"_count": 2}}, "champion": {"_count": 4, "has": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}}, "binding": {"_count": 1, "magical": {"_count": 1}}, "gvoice": {"_count": 1, "from": {"_count": 1}}, "diver": {"_count": 1, "preparing": {"_count": 1}}, "sloth": {"_count": 1, "": {"_count": 1}}, "makeshift": {"_count": 1, "paddock": {"_count": 1}}, "checked": {"_count": 1, "yellowandorange": {"_count": 1}}, "repressive": {"_count": 2, "look": {"_count": 1}, "sort": {"_count": 1}}, "beef": {"_count": 1, "casserole": {"_count": 1}}, "truly": {"_count": 5, "horrible": {"_count": 1}, "terrible": {"_count": 1}, "dreadful": {"_count": 1}, "glorious": {"_count": 1}, "evil": {"_count": 1}}, "rapt": {"_count": 1, "mistyeyed": {"_count": 1}}, "world": {"_count": 3, "record": {"_count": 1}, "in": {"_count": 2}}, "ton": {"_count": 1, "": {"_count": 1}}, "charred": {"_count": 1, "piece": {"_count": 1}}, "searchlight": {"_count": 1, "": {"_count": 1}}, "smaller": {"_count": 3, "room": {"_count": 1}, "headline": {"_count": 1}, "hall": {"_count": 1}}, "wizened": {"_count": 1, "witch": {"_count": 1}}, "walrus": {"_count": 2, "mustache": {"_count": 1}, "and": {"_count": 1}}, "ripple": {"_count": 4, "of": {"_count": 3}, "toward": {"_count": 1}}, "wider": {"_count": 1, "selection": {"_count": 1}}, "growl": {"_count": 2, "": {"_count": 2}}, "skilled": {"_count": 1, "witch": {"_count": 1}}, "cunningly": {"_count": 1, "disguised": {"_count": 1}}, "photocall": {"_count": 1, "or": {"_count": 1}}, "napkin": {"_count": 5, "": {"_count": 3}, "but": {"_count": 1}, "across": {"_count": 1}}, "prat": {"_count": 7, "of": {"_count": 1}, "Neville": {"_count": 1}, "": {"_count": 1}, "carrying": {"_count": 1}, "youre": {"_count": 1}, "and": {"_count": 1}, "its": {"_count": 1}}, "wall": {"_count": 8, "and": {"_count": 2}, "just": {"_count": 1}, "he": {"_count": 1}, "or": {"_count": 1}, "at": {"_count": 1}, "between": {"_count": 1}, "around": {"_count": 1}}, "signature": {"_count": 1, "now": {"_count": 1}}, "teetering": {"_count": 1, "tower": {"_count": 1}}, "dungeon": {"_count": 2, "for": {"_count": 1}, "than": {"_count": 1}}, "dam": {"_count": 1, "in": {"_count": 1}}, "beaver": {"_count": 1, "as": {"_count": 1}}, "cardboard": {"_count": 3, "box": {"_count": 2}, "sign": {"_count": 1}}, "QuickQuotes": {"_count": 1, "Quill": {"_count": 1}}, "crate": {"_count": 1, "of": {"_count": 1}}, "rebel": {"_count": 1, "": {"_count": 1}}, "courteous": {"_count": 2, "bow": {"_count": 1}, "little": {"_count": 1}}, "baton": {"_count": 1, "and": {"_count": 1}}, "mental": {"_count": 5, "note": {"_count": 4}, "problem": {"_count": 1}}, "Gregorovitch": {"_count": 2, "creation": {"_count": 1}, "vand": {"_count": 1}}, "fountain": {"_count": 4, "of": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}}, "horizon": {"_count": 1, "that": {"_count": 1}}, "stunningly": {"_count": 1, "pretty": {"_count": 1}}, "hanky": {"_count": 1, "Potter": {"_count": 1}}, "chipmunk": {"_count": 1, "": {"_count": 1}}, "liar": {"_count": 9, "": {"_count": 3}, "and": {"_count": 2}, "said": {"_count": 1}, "had": {"_count": 1}, "or": {"_count": 1}, "nor": {"_count": 1}}, "block": {"_count": 1, "about": {"_count": 1}}, "disobliging": {"_count": 1, "habit": {"_count": 1}}, "haven": {"_count": 1, "for": {"_count": 1}}, "Cedric": {"_count": 1, "badge": {"_count": 1}}, "whispered": {"_count": 3, "Thanks": {"_count": 1}, "conversation": {"_count": 1}, "argument": {"_count": 1}}, "flower": {"_count": 2, "that": {"_count": 1}, "bed": {"_count": 1}}, "pub": {"_count": 6, "": {"_count": 2}, "and": {"_count": 2}, "in": {"_count": 1}, "when": {"_count": 1}}, "silveryblue": {"_count": 1, "one": {"_count": 1}}, "cats": {"_count": 2, "bulging": {"_count": 1}, "gleamed": {"_count": 1}}, "yowling": {"_count": 1, "screeching": {"_count": 1}}, "range": {"_count": 3, "of": {"_count": 3}}, "Sleeping": {"_count": 1, "Draft": {"_count": 1}}, "strip": {"_count": 2, "of": {"_count": 1}, "off": {"_count": 1}}, "Hungarian": {"_count": 4, "Horntail": {"_count": 4}}, "Common": {"_count": 1, "Welsh": {"_count": 1}}, "Swedish": {"_count": 1, "ShortSnout": {"_count": 1}}, "Chinese": {"_count": 1, "Fireball": {"_count": 1}}, "clutch": {"_count": 1, "of": {"_count": 1}}, "moan": {"_count": 2, "of": {"_count": 2}}, "fifty": {"_count": 1, "foothigh": {"_count": 1}}, "quantity": {"_count": 2, "of": {"_count": 2}}, "goner": {"_count": 2, "he": {"_count": 1}, "wouldnt": {"_count": 1}}, "deal": {"_count": 3, "with": {"_count": 2}, "yet": {"_count": 1}}, "Stunning": {"_count": 9, "Spell": {"_count": 9}}, "stroll": {"_count": 4, "at": {"_count": 1}, "outside": {"_count": 1}, "around": {"_count": 1}, "with": {"_count": 1}}, "punch": {"_count": 1, "at": {"_count": 1}}, "dragons": {"_count": 5, "hide": {"_count": 1}, "firepower": {"_count": 1}, "eyes": {"_count": 1}, "egg": {"_count": 2}}, "surly": {"_count": 2, "look": {"_count": 1}, "voice": {"_count": 1}}, "Bulgaria": {"_count": 1, "scarf": {"_count": 1}}, "ferret": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "height": {"_count": 1, "of": {"_count": 1}}, "specimen": {"_count": 1, "of": {"_count": 1}}, "traditional": {"_count": 2, "part": {"_count": 2}}, "rune": {"_count": 2, "dictionary": {"_count": 1}, "and": {"_count": 1}}, "cool": {"_count": 7, "head": {"_count": 2}, "dimly": {"_count": 1}, "female": {"_count": 1}, "line": {"_count": 1}, "voice": {"_count": 1}, "second": {"_count": 1}}, "Welsh": {"_count": 1, "Green": {"_count": 1}}, "determined": {"_count": 3, "resignation": {"_count": 1}, "air": {"_count": 1}, "rulebreaker": {"_count": 1}}, "whistle": {"_count": 4, "all": {"_count": 1}, "he": {"_count": 1}, "blowing": {"_count": 1}, "behind": {"_count": 1}}, "crescendo": {"_count": 1, "inside": {"_count": 1}}, "heat": {"_count": 2, "haze": {"_count": 2}}, "sufficient": {"_count": 1, "threat": {"_count": 1}}, "dab": {"_count": 2, "of": {"_count": 1}, "hand": {"_count": 1}}, "hug": {"_count": 6, "and": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 2}, "he": {"_count": 1}}, "nine": {"_count": 1, "": {"_count": 1}}, "scratch": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "blowbyblow": {"_count": 2, "account": {"_count": 1}, "match": {"_count": 1}}, "custard": {"_count": 1, "cream": {"_count": 1}}, "roast": {"_count": 2, "ox": {"_count": 1}, "potato": {"_count": 1}}, "bargain": {"_count": 1, "": {"_count": 1}}, "kip": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "loop": {"_count": 1, "of": {"_count": 1}}, "zoological": {"_count": 1, "column": {"_count": 1}}, "mystical": {"_count": 1, "whisper": {"_count": 1}}, "vulture": {"_count": 1, "ever": {"_count": 1}}, "medical": {"_count": 1, "miracle": {"_count": 1}}, "tie": {"_count": 1, "patterned": {"_count": 1}}, "matching": {"_count": 4, "blue": {"_count": 1}, "hat": {"_count": 3}}, "disgraced": {"_count": 1, "elf": {"_count": 1}}, "barmy": {"_count": 1, "old": {"_count": 1}}, "cream": {"_count": 1, "cake": {"_count": 1}}, "sense": {"_count": 13, "of": {"_count": 13}}, "chocolate": {"_count": 1, "eclair": {"_count": 1}}, "younger": {"_count": 5, "student": {"_count": 1}, "Rita": {"_count": 1}, "brother": {"_count": 2}, "goblin": {"_count": 1}}, "disapproving": {"_count": 1, "voice": {"_count": 1}}, "representative": {"_count": 1, "of": {"_count": 1}}, "partner": {"_count": 6, "Potter": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "cinch": {"_count": 1, "compared": {"_count": 1}}, "Ballycastle": {"_count": 1, "Bats": {"_count": 1}}, "sputter": {"_count": 1, "of": {"_count": 1}}, "continued": {"_count": 1, "desire": {"_count": 1}}, "useless": {"_count": 2, "pretty": {"_count": 1}, "teacher": {"_count": 1}}, "Canary": {"_count": 1, "Cream": {"_count": 1}}, "tragedy": {"_count": 1, "Hermione": {"_count": 1}}, "scroll": {"_count": 6, "of": {"_count": 6}}, "Conjunctivitis": {"_count": 1, "Curse": {"_count": 1}}, "Chudley": {"_count": 1, "Cannon": {"_count": 1}}, "pattern": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "bulging": {"_count": 2, "bag": {"_count": 1}, "stocking": {"_count": 1}}, "dress": {"_count": 1, "than": {"_count": 1}}, "desperate": {"_count": 3, "attempt": {"_count": 1}, "gesture": {"_count": 1}, "bid": {"_count": 1}}, "Severing": {"_count": 2, "Charm": {"_count": 2}}, "vicar": {"_count": 1, "": {"_count": 1}}, "floaty": {"_count": 2, "periwinkleblue": {"_count": 1}, "lilaccolored": {"_count": 1}}, "flowing": {"_count": 1, "gown": {"_count": 1}}, "fiasco": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "wrong": {"_count": 1, "turning": {"_count": 1}}, "beautifully": {"_count": 1, "proportioned": {"_count": 1}}, "poltergeist": {"_count": 1, "ever": {"_count": 1}}, "lute": {"_count": 1, "a": {"_count": 1}}, "cello": {"_count": 1, "and": {"_count": 1}}, "slow": {"_count": 4, "mournful": {"_count": 1}, "doleful": {"_count": 1}, "impressive": {"_count": 1}, "sad": {"_count": 1}}, "withering": {"_count": 2, "look": {"_count": 2}}, "consignment": {"_count": 1, "of": {"_count": 1}}, "rosebush": {"_count": 1, "nearby": {"_count": 1}}, "purr": {"_count": 1, "in": {"_count": 1}}, "giantess": {"_count": 4, "for": {"_count": 2}, "": {"_count": 1}, "Hagrid": {"_count": 1}}, "mother": {"_count": 5, "": {"_count": 2}, "had": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}}, "dinosaur": {"_count": 1, "": {"_count": 1}}, "bath": {"_count": 7, "okay": {"_count": 1}, "and": {"_count": 1}, "help": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}}, "ball": {"_count": 4, "ask": {"_count": 1}, "of": {"_count": 2}, "placed": {"_count": 1}}, "goldfish": {"_count": 2, "out": {"_count": 1}, "any": {"_count": 1}}, "purring": {"_count": 1, "Crookshanks": {"_count": 1}}, "folded": {"_count": 3, "page": {"_count": 1}, "square": {"_count": 1}, "copy": {"_count": 1}}, "succession": {"_count": 1, "of": {"_count": 1}}, "flobberworm": {"_count": 3, "says": {"_count": 1}, "": {"_count": 2}}, "fourthyear": {"_count": 1, "student": {"_count": 1}}, "Daily": {"_count": 2, "Prophet": {"_count": 2}}, "bizarre": {"_count": 2, "twist": {"_count": 1}, "desire": {"_count": 1}}, "duty": {"_count": 3, "to": {"_count": 3}}, "Hogsmeade": {"_count": 2, "visit": {"_count": 1}, "weekend": {"_count": 1}}, "guilty": {"_count": 3, "squirm": {"_count": 1}, "weight": {"_count": 1}, "start": {"_count": 1}}, "weekend": {"_count": 1, "when": {"_count": 1}}, "prod": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "liking": {"_count": 3, "to": {"_count": 3}}, "dont": {"_count": 1, "jokeaboutthingslike": {"_count": 1}}, "sentence": {"_count": 1, "Bozo": {"_count": 1}}, "tenfoot": {"_count": 1, "broomstick": {"_count": 1}}, "grenade": {"_count": 1, "": {"_count": 1}}, "rage": {"_count": 2, "like": {"_count": 1}, "again": {"_count": 1}}, "lostlooking": {"_count": 1, "wizard": {"_count": 1}}, "splendid": {"_count": 1, "candlefilled": {"_count": 1}}, "differently": {"_count": 1, "colored": {"_count": 1}}, "diving": {"_count": 1, "board": {"_count": 1}}, "blonde": {"_count": 2, "mermaid": {"_count": 1}, "girl": {"_count": 1}}, "convenient": {"_count": 1, "place": {"_count": 1}}, "forbidden": {"_count": 1, "potion": {"_count": 1}}, "morose": {"_count": 1, "sort": {"_count": 1}}, "song": {"_count": 1, "whose": {"_count": 1}}, "chorus": {"_count": 4, "of": {"_count": 4}}, "dose": {"_count": 1, "of": {"_count": 1}}, "floorboard": {"_count": 1, "the": {"_count": 1}}, "narrower": {"_count": 1, "staircase": {"_count": 1}}, "bass": {"_count": 1, "drum": {"_count": 1}}, "clink": {"_count": 1, "of": {"_count": 1}}, "Triwizard": {"_count": 2, "clue": {"_count": 1}, "champion": {"_count": 1}}, "Tri": {"_count": 1, "wizard": {"_count": 1}}, "trusting": {"_count": 1, "man": {"_count": 1}}, "stab": {"_count": 3, "of": {"_count": 2}, "at": {"_count": 1}}, "chirruping": {"_count": 1, "noise": {"_count": 1}}, "penetrating": {"_count": 1, "glare": {"_count": 1}}, "treasure": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "career": {"_count": 6, "as": {"_count": 2}, "": {"_count": 2}, "she": {"_count": 1}, "in": {"_count": 1}}, "submarine": {"_count": 1, "or": {"_count": 1}}, "periscope": {"_count": 1, "sticking": {"_count": 1}}, "newt": {"_count": 1, "": {"_count": 1}}, "task": {"_count": 2, "that": {"_count": 1}, "They": {"_count": 1}}, "golfball": {"_count": 1, "stuck": {"_count": 1}}, "Wand": {"_count": 1, "Theres": {"_count": 1}}, "Way": {"_count": 1, "": {"_count": 1}}, "Wheezy": {"_count": 1, "": {"_count": 1}}, "dense": {"_count": 2, "clump": {"_count": 1}, "smoky": {"_count": 1}}, "meadow": {"_count": 2, "of": {"_count": 1}, "she": {"_count": 1}}, "heart": {"_count": 2, "attack": {"_count": 1}, "Kreacher": {"_count": 1}}, "snatch": {"_count": 2, "of": {"_count": 2}}, "stake": {"_count": 1, "outside": {"_count": 1}}, "merversion": {"_count": 1, "of": {"_count": 1}}, "crude": {"_count": 1, "sort": {"_count": 1}}, "sevenfoottall": {"_count": 1, "merman": {"_count": 1}}, "choker": {"_count": 1, "of": {"_count": 1}}, "request": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "please": {"_count": 1}}, "shark": {"_count": 1, "": {"_count": 1}}, "dolphin": {"_count": 1, "and": {"_count": 1}}, "straitjacket": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "hostage": {"_count": 1, "just": {"_count": 1}}, "glowing": {"_count": 5, "look": {"_count": 2}, "secret": {"_count": 1}, "strip": {"_count": 1}, "reputation": {"_count": 1}}, "bewitched": {"_count": 1, "sleep": {"_count": 1}}, "thrilling": {"_count": 2, "tale": {"_count": 2}}, "magazine": {"_count": 4, "in": {"_count": 1}, "entitled": {"_count": 1}, "upside": {"_count": 1}, "to": {"_count": 1}}, "plain": {"_count": 6, "but": {"_count": 1}, "black": {"_count": 3}, "pale": {"_count": 1}, "expanse": {"_count": 1}}, "worthier": {"_count": 2, "candidate": {"_count": 2}}, "sarcastic": {"_count": 1, "smile": {"_count": 1}}, "softer": {"_count": 1, "and": {"_count": 1}}, "Truth": {"_count": 1, "Potion": {"_count": 1}}, "measuring": {"_count": 1, "cup": {"_count": 1}}, "sidelong": {"_count": 1, "glance": {"_count": 1}}, "loaf": {"_count": 3, "of": {"_count": 3}}, "flask": {"_count": 5, "of": {"_count": 4}, "corked": {"_count": 1}}, "stile": {"_count": 1, "at": {"_count": 1}}, "drumstick": {"_count": 1, "sitting": {"_count": 1}}, "lovable": {"_count": 1, "stray": {"_count": 1}}, "rest": {"_count": 11, "with": {"_count": 1}, "Hermione": {"_count": 2}, "home": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 4}, "as": {"_count": 1}, "okay": {"_count": 1}}, "trial": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "bark": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "devoted": {"_count": 1, "houseelf": {"_count": 1}}, "deathbed": {"_count": 1, "visit": {"_count": 1}}, "mania": {"_count": 1, "with": {"_count": 1}}, "married": {"_count": 1, "couple": {"_count": 1}}, "liability": {"_count": 1, "at": {"_count": 1}}, "subscription": {"_count": 1, "to": {"_count": 1}}, "WickEd": {"_count": 1, "giRL": {"_count": 1}}, "prize": {"_count": 4, "fer": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}}, "niffler": {"_count": 4, "an": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}}, "lake": {"_count": 2, "": {"_count": 1}, "full": {"_count": 1}}, "pocketful": {"_count": 1, "of": {"_count": 1}}, "rigorous": {"_count": 1, "test": {"_count": 1}}, "vendetta": {"_count": 1, "against": {"_count": 1}}, "package": {"_count": 3, "of": {"_count": 1}, "just": {"_count": 1}, "to": {"_count": 1}}, "chicken": {"_count": 2, "egg": {"_count": 1}, "leg": {"_count": 1}}, "welldeserved": {"_count": 1, "break": {"_count": 1}}, "fighting": {"_count": 1, "chance": {"_count": 1}}, "vord": {"_count": 2, "": {"_count": 2}}, "course": {"_count": 1, "for": {"_count": 1}}, "wash": {"_count": 1, "and": {"_count": 1}}, "judge": {"_count": 1, "": {"_count": 1}}, "concert": {"_count": 2, "tonight": {"_count": 1}, "in": {"_count": 1}}, "standstill": {"_count": 2, "in": {"_count": 1}, "however": {"_count": 1}}, "mildly": {"_count": 3, "curious": {"_count": 1}, "interesting": {"_count": 1}, "interested": {"_count": 1}}, "ghostly": {"_count": 4, "bird": {"_count": 1}, "wail": {"_count": 1}, "moon": {"_count": 1}, "white": {"_count": 1}}, "glowering": {"_count": 1, "look": {"_count": 1}}, "runner": {"_count": 1, "": {"_count": 1}}, "theory": {"_count": 3, "said": {"_count": 1}, "no": {"_count": 1}, "however": {"_count": 1}}, "bat": {"_count": 1, "or": {"_count": 1}}, "sealed": {"_count": 1, "envelope": {"_count": 1}}, "mock": {"_count": 3, "bow": {"_count": 1}, "thoughtful": {"_count": 1}, "casual": {"_count": 1}}, "Crouch": {"_count": 1, "and": {"_count": 1}}, "cabinet": {"_count": 1, "": {"_count": 1}}, "hillside": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "headache": {"_count": 1, "cure": {"_count": 1}}, "blunder": {"_count": 2, "": {"_count": 1}, "if": {"_count": 1}}, "polished": {"_count": 1, "oak": {"_count": 1}}, "sliver": {"_count": 3, "of": {"_count": 3}}, "bench": {"_count": 4, "at": {"_count": 1}, "raised": {"_count": 1}, "and": {"_count": 1}, "beside": {"_count": 1}}, "fourteenyear": {"_count": 1, "old": {"_count": 1}}, "memory": {"_count": 4, "and": {"_count": 1}, "but": {"_count": 1}, "bobbing": {"_count": 1}, "": {"_count": 1}}, "bleak": {"_count": 2, "and": {"_count": 1}, "harsh": {"_count": 1}}, "curt": {"_count": 3, "voice": {"_count": 1}, "nod": {"_count": 2}}, "sardonic": {"_count": 1, "smile": {"_count": 1}}, "wise": {"_count": 1, "move": {"_count": 1}}, "remorse": {"_count": 1, "so": {"_count": 1}}, "network": {"_count": 1, "of": {"_count": 1}}, "Ludo": {"_count": 2, "Bagman": {"_count": 2}}, "truer": {"_count": 1, "word": {"_count": 1}}, "term": {"_count": 1, "of": {"_count": 1}}, "sad": {"_count": 3, "day": {"_count": 1}, "little": {"_count": 2}}, "frail": {"_count": 1, "wispylooking": {"_count": 1}}, "thickset": {"_count": 1, "man": {"_count": 1}}, "thinner": {"_count": 1, "and": {"_count": 1}}, "throne": {"_count": 1, "and": {"_count": 1}}, "slowmotion": {"_count": 1, "somersault": {"_count": 1}}, "Pensieve": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "glistening": {"_count": 1, "strand": {"_count": 1}}, "sin": {"_count": 1, "he": {"_count": 1}}, "figure": {"_count": 6, "rose": {"_count": 2}, "of": {"_count": 1}, "had": {"_count": 1}, "slightly": {"_count": 1}, "running": {"_count": 1}}, "reprimand": {"_count": 1, "was": {"_count": 1}}, "blur": {"_count": 4, "of": {"_count": 4}}, "bitterness": {"_count": 1, "Harry": {"_count": 1}}, "finality": {"_count": 2, "in": {"_count": 1}, "bordering": {"_count": 1}}, "wellplaced": {"_count": 1, "JellyLegs": {"_count": 1}}, "walkietalkie": {"_count": 1, "said": {"_count": 1}}, "goodluck": {"_count": 1, "card": {"_count": 1}}, "demanding": {"_count": 1, "competition": {"_count": 1}}, "Divination": {"_count": 1, "lesson": {"_count": 1}}, "plea": {"_count": 3, "for": {"_count": 2}, "in": {"_count": 1}}, "fondness": {"_count": 2, "for": {"_count": 2}}, "telling": {"_count": 1, "off": {"_count": 1}}, "tour": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "Cornish": {"_count": 1, "pasty": {"_count": 1}}, "brainwave": {"_count": 1, "about": {"_count": 1}}, "dusky": {"_count": 1, "purple": {"_count": 1}}, "junction": {"_count": 1, "of": {"_count": 1}}, "BlastEnded": {"_count": 2, "Skrewt": {"_count": 2}}, "IMPEDIMENT": {"_count": 1, "A": {"_count": 1}}, "left": {"_count": 2, "path": {"_count": 1}, "at": {"_count": 1}}, "sphinx": {"_count": 3, "": {"_count": 2}, "for": {"_count": 1}}, "hardtofind": {"_count": 1, "word": {"_count": 1}}, "creature": {"_count": 4, "I": {"_count": 1}, "indistinguishable": {"_count": 1}, "with": {"_count": 1}, "gets": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "imposter": {"_count": 1}}, "spiderl": {"_count": 1, "The": {"_count": 1}}, "choice": {"_count": 9, "of": {"_count": 2}, "between": {"_count": 3}, "didnt": {"_count": 1}, "too": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "plinth": {"_count": 1, "a": {"_count": 1}}, "hedge": {"_count": 1, "to": {"_count": 1}}, "handle": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "jerk": {"_count": 6, "somewhere": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "behind": {"_count": 1}, "the": {"_count": 1}}, "Portkey": {"_count": 12, "": {"_count": 3}, "which": {"_count": 2}, "said": {"_count": 1}, "or": {"_count": 1}, "before": {"_count": 1}, "here": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "you": {"_count": 1}}, "crouched": {"_count": 1, "human": {"_count": 1}}, "dribble": {"_count": 1, "of": {"_count": 1}}, "snakes": {"_count": 1, "with": {"_count": 1}}, "rustling": {"_count": 1, "seemed": {"_count": 1}}, "stench": {"_count": 1, "of": {"_count": 1}}, "still": {"_count": 1, "greater": {"_count": 1}}, "disappointment": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "stooped": {"_count": 1, "figure": {"_count": 1}}, "protection": {"_count": 2, "I": {"_count": 1}, "that": {"_count": 1}}, "presence": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "gift": {"_count": 5, "beyond": {"_count": 1}, "from": {"_count": 1}, "of": {"_count": 1}, "any": {"_count": 1}, "to": {"_count": 1}}, "veritable": {"_count": 1, "mine": {"_count": 1}}, "rudimentary": {"_count": 1, "weak": {"_count": 1}}, "foe": {"_count": 1, "": {"_count": 1}}, "tighter": {"_count": 2, "circle": {"_count": 1}, "group": {"_count": 1}}, "former": {"_count": 4, "life": {"_count": 1}, "Prime": {"_count": 1}, "ally": {"_count": 1}, "colleague": {"_count": 1}}, "virtue": {"_count": 1, "I": {"_count": 1}}, "chest": {"_count": 1, "and": {"_count": 1}}, "smoky": {"_count": 1, "statue": {"_count": 1}}, "marble": {"_count": 2, "angel": {"_count": 1}, "table": {"_count": 1}}, "ship": {"_count": 1, "": {"_count": 1}}, "graveyard": {"_count": 2, "": {"_count": 1}, "meant": {"_count": 1}}, "lock": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 1}, "would": {"_count": 1}}, "peppery": {"_count": 1, "taste": {"_count": 1}}, "streak": {"_count": 4, "of": {"_count": 4}}, "ring": {"_count": 6, "": {"_count": 2}, "on": {"_count": 1}, "of": {"_count": 2}, "glittered": {"_count": 1}}, "mass": {"_count": 11, "of": {"_count": 5}, "breakout": {"_count": 4}, "Muggle": {"_count": 1}, "midair": {"_count": 1}}, "draft": {"_count": 3, "of": {"_count": 2}, "or": {"_count": 1}}, "wail": {"_count": 6, "of": {"_count": 3}, "and": {"_count": 3}}, "commotion": {"_count": 3, "": {"_count": 1}, "outside": {"_count": 2}}, "bone": {"_count": 3, "": {"_count": 1}, "crushing": {"_count": 1}, "and": {"_count": 1}}, "sleep": {"_count": 1, "": {"_count": 1}}, "vehement": {"_count": 2, "exclamation": {"_count": 1}, "hiss": {"_count": 1}}, "grown": {"_count": 2, "wizards": {"_count": 1}, "man": {"_count": 1}}, "harassedlooking": {"_count": 2, "Madam": {"_count": 1}, "Fudge": {"_count": 1}}, "possibly": {"_count": 1, "dangerous": {"_count": 1}}, "raving": {"_count": 1, "lunatic": {"_count": 1}}, "lunatic": {"_count": 3, "like": {"_count": 1}, "murderer": {"_count": 1}, "": {"_count": 1}}, "defiant": {"_count": 4, "and": {"_count": 2}, "expression": {"_count": 1}, "yes": {"_count": 1}}, "kindly": {"_count": 1, "figure": {"_count": 1}}, "parting": {"_count": 1, "of": {"_count": 1}}, "threat": {"_count": 3, "it": {"_count": 1}, "that": {"_count": 1}, "Runcorn": {"_count": 1}}, "means": {"_count": 4, "of": {"_count": 2}, "to": {"_count": 2}}, "welcome": {"_count": 2, "back": {"_count": 1}, "for": {"_count": 1}}, "presentation": {"_count": 1, "ceremony": {"_count": 1}}, "near": {"_count": 1, "miracle": {"_count": 1}}, "lack": {"_count": 2, "of": {"_count": 2}}, "one": {"_count": 2, "armed": {"_count": 2}}, "cause": {"_count": 2, "for": {"_count": 2}}, "riot": {"_count": 1, "of": {"_count": 1}}, "gruff": {"_count": 2, "voice": {"_count": 2}}, "fragment": {"_count": 4, "of": {"_count": 4}}, "smirk": {"_count": 3, "quivering": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "drowsy": {"_count": 1, "silence": {"_count": 1}}, "nonexistent": {"_count": 1, "breeze": {"_count": 1}}, "jingle": {"_count": 1, "about": {"_count": 1}}, "batty": {"_count": 1, "catloving": {"_count": 1}}, "lifelong": {"_count": 3, "siesta": {"_count": 1}, "ban": {"_count": 2}}, "helicopter": {"_count": 1, "that": {"_count": 1}}, "novel": {"_count": 1, "way": {"_count": 1}}, "parked": {"_count": 1, "car": {"_count": 1}}, "bellowed": {"_count": 1, "oath": {"_count": 1}}, "croaky": {"_count": 2, "voice": {"_count": 1}, "whisper": {"_count": 1}}, "starting": {"_count": 1, "pistol": {"_count": 1}}, "resigned": {"_count": 2, "voice": {"_count": 2}}, "neighbors": {"_count": 1, "house": {"_count": 1}}, "precise": {"_count": 1, "date": {"_count": 1}}, "garage": {"_count": 1, "where": {"_count": 1}}, "stolen": {"_count": 2, "hippogriff": {"_count": 1}, "copy": {"_count": 1}}, "sultry": {"_count": 1, "velvety": {"_count": 1}}, "years": {"_count": 3, "hard": {"_count": 1}, "time": {"_count": 2}}, "hardened": {"_count": 1, "hooligan": {"_count": 1}}, "beeline": {"_count": 2, "for": {"_count": 1}, "straight": {"_count": 1}}, "smart": {"_count": 3, "move": {"_count": 1}, "pace": {"_count": 1}, "mouth": {"_count": 1}}, "yawn": {"_count": 3, "still": {"_count": 1}, "": {"_count": 1}, "behind": {"_count": 1}}, "tenyearold": {"_count": 1, "": {"_count": 1}}, "weightless": {"_count": 1, "veil": {"_count": 1}}, "creeping": {"_count": 1, "chill": {"_count": 1}}, "clanking": {"_count": 1, "string": {"_count": 1}}, "batch": {"_count": 3, "of": {"_count": 3}}, "teabag": {"_count": 1, "She": {"_count": 1}}, "miserable": {"_count": 3, "time": {"_count": 1}, "raincloud": {"_count": 1}, "gesture": {"_count": 1}}, "tattered": {"_count": 2, "overcoat": {"_count": 1}, "black": {"_count": 1}}, "basset": {"_count": 1, "hound": {"_count": 1}}, "heave": {"_count": 1, "and": {"_count": 1}}, "catastrophe": {"_count": 2, "": {"_count": 1}, "couldnt": {"_count": 1}}, "trot": {"_count": 2, "carpet": {"_count": 1}, "turning": {"_count": 1}}, "weakkneed": {"_count": 1, "Dudley": {"_count": 1}}, "screech": {"_count": 3, "owl": {"_count": 3}}, "Muggleinhabited": {"_count": 2, "area": {"_count": 2}}, "previous": {"_count": 3, "offense": {"_count": 1}, "written": {"_count": 1}, "occasion": {"_count": 1}}, "disciplinary": {"_count": 3, "hearing": {"_count": 3}}, "paralyzing": {"_count": 1, "dart": {"_count": 1}}, "feathery": {"_count": 1, "cannonball": {"_count": 1}}, "hopeful": {"_count": 1, "afterthought": {"_count": 1}}, "hearing": {"_count": 7, "said": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "trumpet": {"_count": 1}, "Summons": {"_count": 1}, "on": {"_count": 1}, "about": {"_count": 1}}, "plane": {"_count": 1, "he": {"_count": 1}}, "clattering": {"_count": 1, "a": {"_count": 1}}, "whirring": {"_count": 1, "of": {"_count": 1}}, "peck": {"_count": 1, "I": {"_count": 1}}, "breach": {"_count": 1, "in": {"_count": 1}}, "lethargy": {"_count": 1, "so": {"_count": 1}}, "wheezyvoiced": {"_count": 1, "silverhaired": {"_count": 1}}, "buttock": {"_count": 1, "": {"_count": 1}}, "longstanding": {"_count": 1, "arrangement": {"_count": 1}}, "stately": {"_count": 1, "looking": {"_count": 1}}, "plunger": {"_count": 2, "being": {"_count": 2}}, "sink": {"_count": 1, "he": {"_count": 1}}, "jumbled": {"_count": 1, "mixture": {"_count": 1}}, "strained": {"_count": 7, "expression": {"_count": 1}, "silence": {"_count": 2}, "voice": {"_count": 2}, "whisper": {"_count": 1}, "smile": {"_count": 1}}, "Metamorphmagus": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "conductors": {"_count": 2, "baton": {"_count": 2}}, "harness": {"_count": 1, "hanging": {"_count": 1}}, "stereo": {"_count": 1, "was": {"_count": 1}}, "chain": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "sweetish": {"_count": 1, "rotting": {"_count": 1}}, "derelict": {"_count": 1, "building": {"_count": 1}}, "dying": {"_count": 2, "person": {"_count": 1}, "wizard": {"_count": 1}}, "cobwebby": {"_count": 1, "chandelier": {"_count": 1}}, "rickety": {"_count": 5, "table": {"_count": 2}, "staircase": {"_count": 1}, "chair": {"_count": 1}, "wooden": {"_count": 1}}, "ribcracking": {"_count": 1, "hug": {"_count": 1}}, "serpents": {"_count": 1, "head": {"_count": 1}}, "halfhealed": {"_count": 1, "but": {"_count": 1}}, "loss": {"_count": 9, "for": {"_count": 3}, "to": {"_count": 3}, "is": {"_count": 1}, "poring": {"_count": 1}, "and": {"_count": 1}}, "major": {"_count": 1, "meeting": {"_count": 1}}, "git": {"_count": 3, "": {"_count": 2}, "so": {"_count": 1}}, "weirdo": {"_count": 1, "because": {"_count": 1}}, "topic": {"_count": 1, "to": {"_count": 1}}, "plaque": {"_count": 1, "just": {"_count": 1}}, "stupendous": {"_count": 2, "effort": {"_count": 2}}, "Permanent": {"_count": 2, "Sticking": {"_count": 2}}, "cavernous": {"_count": 1, "room": {"_count": 1}}, "prolonged": {"_count": 1, "grunting": {"_count": 1}}, "grimy": {"_count": 3, "black": {"_count": 2}, "dark": {"_count": 1}}, "pology": {"_count": 1, "grunted": {"_count": 1}}, "business": {"_count": 2, "opportunity": {"_count": 1}, "of": {"_count": 1}}, "beaklike": {"_count": 1, "protuberance": {"_count": 1}}, "regular": {"_count": 4, "mealtime": {"_count": 1}, "meeting": {"_count": 1}, "night": {"_count": 1}, "clock": {"_count": 1}}, "female": {"_count": 1, "Dudley": {"_count": 1}}, "coverup": {"_count": 1, "those": {"_count": 1}}, "Bludgers": {"_count": 1, "gone": {"_count": 1}}, "lull": {"_count": 1, "in": {"_count": 1}}, "tennis": {"_count": 2, "rally": {"_count": 1}, "serve": {"_count": 1}}, "collective": {"_count": 2, "shudder": {"_count": 1}, "intake": {"_count": 1}}, "difference": {"_count": 9, "between": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "There": {"_count": 1}, "in": {"_count": 1}, "being": {"_count": 1}}, "garbled": {"_count": 1, "version": {"_count": 1}}, "say": {"_count": 1, "in": {"_count": 1}}, "wry": {"_count": 3, "smile": {"_count": 2}, "thought": {"_count": 1}}, "tenthousandGalleon": {"_count": 3, "price": {"_count": 3}}, "weapon": {"_count": 6, "": {"_count": 4}, "as": {"_count": 1}, "more": {"_count": 1}}, "busy": {"_count": 5, "day": {"_count": 1}, "town": {"_count": 1}, "relentless": {"_count": 1}, "man": {"_count": 1}, "time": {"_count": 1}}, "nest": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "nozzle": {"_count": 1, "at": {"_count": 1}}, "spray": {"_count": 1, "Mrs": {"_count": 1}}, "spindlelegged": {"_count": 1, "table": {"_count": 1}}, "reproachful": {"_count": 4, "look": {"_count": 3}, "voice": {"_count": 1}}, "fold": {"_count": 1, "in": {"_count": 1}}, "struggling": {"_count": 2, "doxy": {"_count": 1}, "Golden": {"_count": 1}}, "wink": {"_count": 2, "": {"_count": 2}}, "mail": {"_count": 1, "order": {"_count": 1}}, "sagging": {"_count": 1, "armchair": {"_count": 1}}, "selection": {"_count": 2, "of": {"_count": 2}}, "coiled": {"_count": 1, "snakeskin": {"_count": 1}}, "safe": {"_count": 3, "place": {"_count": 2}, "station": {"_count": 1}}, "loincloth": {"_count": 2, "around": {"_count": 1}, "": {"_count": 1}}, "bloodshot": {"_count": 1, "and": {"_count": 1}}, "bullfrogs": {"_count": 1, "": {"_count": 1}}, "drain": {"_count": 1, "and": {"_count": 1}}, "criminal": {"_count": 2, "to": {"_count": 1}, "record": {"_count": 1}}, "ridiculously": {"_count": 2, "low": {"_count": 1}, "long": {"_count": 1}}, "disdainful": {"_count": 1, "look": {"_count": 1}}, "direct": {"_count": 3, "order": {"_count": 2}, "connection": {"_count": 1}}, "sprawling": {"_count": 1, "family": {"_count": 1}}, "cigarette": {"_count": 1, "burn": {"_count": 1}}, "Muggleborn": {"_count": 4, "Ted": {"_count": 1}, "should": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "safer": {"_count": 1, "house": {"_count": 1}}, "manylegged": {"_count": 1, "pair": {"_count": 1}}, "dining": {"_count": 1, "room": {"_count": 1}}, "watery": {"_count": 3, "stare": {"_count": 1}, "smile": {"_count": 1}, "chuckle": {"_count": 1}}, "memorable": {"_count": 1, "afternoon": {"_count": 1}}, "faceless": {"_count": 1, "Ministry": {"_count": 1}}, "quilted": {"_count": 1, "purple": {"_count": 1}}, "Disillusionment": {"_count": 4, "Charm": {"_count": 4}}, "sleepy": {"_count": 1, "looking": {"_count": 1}}, "heavily": {"_count": 4, "graffittied": {"_count": 1}, "dripping": {"_count": 1}, "laden": {"_count": 1}, "corrected": {"_count": 1}}, "vandal": {"_count": 1, "had": {"_count": 1}}, "click": {"_count": 3, "and": {"_count": 3}}, "rattle": {"_count": 1, "and": {"_count": 1}}, "search": {"_count": 4, "and": {"_count": 2}, "being": {"_count": 1}, "before": {"_count": 1}}, "chink": {"_count": 1, "of": {"_count": 1}}, "noblelooking": {"_count": 1, "wizard": {"_count": 1}}, "visitor": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "slit": {"_count": 2, "in": {"_count": 1}, "over": {"_count": 1}}, "bogstandard": {"_count": 1, "chicken": {"_count": 1}}, "cluttered": {"_count": 3, "open": {"_count": 1}, "desk": {"_count": 1}, "dressing": {"_count": 1}}, "dimly": {"_count": 3, "lit": {"_count": 3}}, "tarnished": {"_count": 3, "brass": {"_count": 1}, "mouth": {"_count": 1}, "tiara": {"_count": 1}}, "dismantled": {"_count": 1, "engine": {"_count": 1}}, "diagram": {"_count": 1, "showing": {"_count": 1}}, "disconsolate": {"_count": 1, "way": {"_count": 1}}, "smoking": {"_count": 1, "goblet": {"_count": 1}}, "sallowskinned": {"_count": 1, "wizard": {"_count": 1}}, "sepulchral": {"_count": 1, "voice": {"_count": 1}}, "monocle": {"_count": 2, "and": {"_count": 1}, "out": {"_count": 1}}, "fortified": {"_count": 1, "hopeful": {"_count": 1}}, "similar": {"_count": 4, "charge": {"_count": 1}, "Enlarging": {"_count": 1}, "battle": {"_count": 1}, "package": {"_count": 1}}, "booming": {"_count": 4, "voice": {"_count": 3}, "bark": {"_count": 1}}, "clearly": {"_count": 2, "defined": {"_count": 1}, "broken": {"_count": 1}}, "testy": {"_count": 2, "voice": {"_count": 2}}, "resident": {"_count": 1, "of": {"_count": 1}}, "frizzyhaired": {"_count": 1, "witch": {"_count": 1}}, "fluttery": {"_count": 1, "girlish": {"_count": 1}}, "croak": {"_count": 1, "": {"_count": 1}}, "simper": {"_count": 1, "that": {"_count": 1}}, "teensy": {"_count": 1, "moment": {"_count": 1}}, "suggestion": {"_count": 3, "of": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}}, "specific": {"_count": 2, "offense": {"_count": 1}, "number": {"_count": 1}}, "flock": {"_count": 2, "of": {"_count": 2}}, "vapid": {"_count": 1, "smile": {"_count": 1}}, "beauty": {"_count": 1, "contestant": {"_count": 1}}, "chant": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "vomiting": {"_count": 1, "toilet": {"_count": 1}}, "part": {"_count": 6, "of": {"_count": 6}}, "sponsored": {"_count": 1, "scrub": {"_count": 1}}, "rubbish": {"_count": 2, "bag": {"_count": 1}, "sense": {"_count": 1}}, "watermark": {"_count": 1, "": {"_count": 1}}, "cert": {"_count": 1, "": {"_count": 1}}, "scathing": {"_count": 4, "look": {"_count": 3}, "noise": {"_count": 1}}, "brighter": {"_count": 1, "scarlet": {"_count": 1}}, "dither": {"_count": 2, "": {"_count": 1}, "told": {"_count": 1}}, "sitdown": {"_count": 1, "dinner": {"_count": 1}}, "celebration": {"_count": 1, "actually": {"_count": 1}}, "toast": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "Class": {"_count": 2, "C": {"_count": 1}, "B": {"_count": 1}}, "Knut": {"_count": 7, "under": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 2}, "said": {"_count": 1}, "you": {"_count": 1}}, "Percylike": {"_count": 1, "estrangement": {"_count": 1}}, "puff": {"_count": 3, "of": {"_count": 3}}, "sly": {"_count": 1, "voice": {"_count": 1}}, "prefects": {"_count": 1, "badge": {"_count": 1}}, "squirming": {"_count": 3, "Crookshanks": {"_count": 2}, "mixture": {"_count": 1}}, "dustbin": {"_count": 2, "to": {"_count": 1}, "lid": {"_count": 1}}, "porkpie": {"_count": 1, "": {"_count": 1}}, "joyful": {"_count": 1, "bark": {"_count": 1}}, "clap": {"_count": 1, "on": {"_count": 1}}, "caged": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "lying": {"_count": 4, "showoff": {"_count": 1}, "attentionseeking": {"_count": 1}, "weirdo": {"_count": 1}, "foul": {"_count": 1}}, "onehanded": {"_count": 1, "grip": {"_count": 1}}, "permanently": {"_count": 2, "surprised": {"_count": 1}, "bloody": {"_count": 1}}, "necklace": {"_count": 3, "of": {"_count": 1}, "o": {"_count": 1}, "interjected": {"_count": 1}}, "singsong": {"_count": 1, "voice": {"_count": 1}}, "giggle": {"_count": 1, "": {"_count": 1}}, "slimy": {"_count": 2, "green": {"_count": 1}, "scabbed": {"_count": 1}}, "shrilly": {"_count": 1, "hooting": {"_count": 1}}, "concussed": {"_count": 1, "troll": {"_count": 1}}, "singing": {"_count": 1, "sensation": {"_count": 1}}, "turnip": {"_count": 1, "at": {"_count": 1}}, "romantic": {"_count": 1, "candlelit": {"_count": 1}}, "coincidence": {"_count": 3, "": {"_count": 2}, "he": {"_count": 1}}, "halfhearted": {"_count": 2, "way": {"_count": 1}, "shrug": {"_count": 1}}, "moonless": {"_count": 1, "night": {"_count": 1}}, "quite": {"_count": 2, "different": {"_count": 1}, "extraordinary": {"_count": 1}}, "brisk": {"_count": 4, "female": {"_count": 1}, "pace": {"_count": 2}, "walk": {"_count": 1}}, "coach": {"_count": 1, "to": {"_count": 1}}, "sweet": {"_count": 3, "little": {"_count": 1}, "smile": {"_count": 1}, "": {"_count": 1}}, "perplexed": {"_count": 1, "look": {"_count": 1}}, "pallid": {"_count": 2, "toadlike": {"_count": 1}, "doughy": {"_count": 1}}, "seethrough": {"_count": 1, "finger": {"_count": 1}}, "beaming": {"_count": 2, "smile": {"_count": 1}, "Professor": {"_count": 1}}, "significant": {"_count": 4, "glance": {"_count": 1}, "look": {"_count": 2}, "smile": {"_count": 1}}, "fullscale": {"_count": 1, "riot": {"_count": 1}}, "horrified": {"_count": 4, "look": {"_count": 1}, "gasp": {"_count": 1}, "silence": {"_count": 1}, "step": {"_count": 1}}, "detailed": {"_count": 2, "account": {"_count": 1}, "plan": {"_count": 1}}, "mood": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "measured": {"_count": 1, "voice": {"_count": 1}}, "slipper": {"_count": 1, "went": {"_count": 1}}, "dormitory": {"_count": 3, "with": {"_count": 2}, "in": {"_count": 1}}, "reasonable": {"_count": 3, "price": {"_count": 1}, "view": {"_count": 1}, "amount": {"_count": 1}}, "whoosh": {"_count": 1, "and": {"_count": 1}}, "sodden": {"_count": 1, "Daily": {"_count": 1}}, "kipper": {"_count": 1, "": {"_count": 1}}, "Snackbox": {"_count": 1, "before": {"_count": 1}}, "Skiving": {"_count": 1, "Snackbox": {"_count": 1}}, "secluded": {"_count": 1, "corner": {"_count": 1}}, "twomonth": {"_count": 1, "holiday": {"_count": 1}}, "Tornados": {"_count": 1, "badge": {"_count": 1}}, "sky": {"_count": 1, "blue": {"_count": 1}}, "classs": {"_count": 1, "silence": {"_count": 1}}, "grim": {"_count": 5, "pleasure": {"_count": 1}, "expression": {"_count": 1}, "smile": {"_count": 1}, "place": {"_count": 1}, "fortress": {"_count": 1}}, "shimmering": {"_count": 2, "mist": {"_count": 1}, "blur": {"_count": 1}}, "landing": {"_count": 1, "Sir": {"_count": 1}}, "neighboring": {"_count": 3, "picture": {"_count": 1}, "table": {"_count": 1}, "field": {"_count": 1}}, "footandahalflong": {"_count": 1, "essay": {"_count": 1}}, "months": {"_count": 1, "dream": {"_count": 1}}, "disciplinarian": {"_count": 1, "she": {"_count": 1}}, "carefully": {"_count": 2, "structured": {"_count": 1}, "measured": {"_count": 1}}, "context": {"_count": 1, "for": {"_count": 1}}, "query": {"_count": 1, "about": {"_count": 1}}, "defensive": {"_count": 2, "spell": {"_count": 1}, "and": {"_count": 1}}, "Ministrytrained": {"_count": 1, "educational": {"_count": 1}}, "secure": {"_count": 1, "riskfree": {"_count": 1}}, "Hand": {"_count": 1, "Mr": {"_count": 1}}, "theoretical": {"_count": 1, "knowledge": {"_count": 1}}, "grimly": {"_count": 2, "satisfied": {"_count": 1}, "pleased": {"_count": 1}}, "snarl": {"_count": 5, "": {"_count": 3}, "and": {"_count": 2}}, "biscuit": {"_count": 2, "Potter": {"_count": 1}, "she": {"_count": 1}}, "Ginger": {"_count": 1, "Newt": {"_count": 1}}, "nutcase": {"_count": 1, "and": {"_count": 1}}, "rainwashed": {"_count": 1, "window": {"_count": 1}}, "tenpoint": {"_count": 1, "bonus": {"_count": 1}}, "bucktoothed": {"_count": 1, "imitation": {"_count": 1}}, "bowtruckle": {"_count": 4, "lodges": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}, "feed": {"_count": 1}}, "sketch": {"_count": 1, "from": {"_count": 1}}, "moron": {"_count": 1, "one": {"_count": 1}}, "smudge": {"_count": 1, "of": {"_count": 1}}, "preliminary": {"_count": 1, "hello": {"_count": 1}}, "vote": {"_count": 1, "of": {"_count": 1}}, "tryout": {"_count": 1, "with": {"_count": 1}}, "figment": {"_count": 1, "of": {"_count": 1}}, "training": {"_count": 1, "session": {"_count": 1}}, "countercharm": {"_count": 1, "for": {"_count": 1}}, "sugary": {"_count": 1, "voice": {"_count": 1}}, "collection": {"_count": 3, "of": {"_count": 3}}, "luridly": {"_count": 1, "flowered": {"_count": 1}}, "straightbacked": {"_count": 1, "chair": {"_count": 1}}, "thumping": {"_count": 1, "noise": {"_count": 1}}, "creditable": {"_count": 1, "imitation": {"_count": 1}}, "scalpel": {"_count": 1, "yet": {"_count": 1}}, "disheveled": {"_count": 2, "Ron": {"_count": 1}, "and": {"_count": 1}}, "poor": {"_count": 6, "job": {"_count": 1}, "lookout": {"_count": 1}, "brokendown": {"_count": 1}, "old": {"_count": 1}, "assistant": {"_count": 1}, "recommendation": {"_count": 1}}, "reminder": {"_count": 4, "to": {"_count": 1}, "of": {"_count": 3}}, "contender": {"_count": 1, "": {"_count": 1}}, "revolted": {"_count": 1, "whisper": {"_count": 1}}, "practice": {"_count": 2, "session": {"_count": 1}, "tonight": {"_count": 1}}, "longer": {"_count": 2, "but": {"_count": 1}, "night": {"_count": 1}}, "Saturday": {"_count": 3, "morning": {"_count": 2}, "": {"_count": 1}}, "pterodactyls": {"_count": 1, "rose": {"_count": 1}}, "restless": {"_count": 1, "shifting": {"_count": 1}}, "flatfooted": {"_count": 1, "step": {"_count": 1}}, "tipoff": {"_count": 2, "that": {"_count": 1}, "from": {"_count": 1}}, "reliable": {"_count": 1, "source": {"_count": 1}}, "sale": {"_count": 1, "": {"_count": 1}}, "column": {"_count": 2, "": {"_count": 2}}, "iob": {"_count": 1, "for": {"_count": 1}}, "frameup": {"_count": 1, "": {"_count": 1}}, "reverie": {"_count": 1, "": {"_count": 1}}, "heartened": {"_count": 1, "tone": {"_count": 1}}, "Flying": {"_count": 1, "Charm": {"_count": 1}}, "liedown": {"_count": 1, "": {"_count": 1}}, "deeper": {"_count": 2, "scarlet": {"_count": 1}, "shade": {"_count": 1}}, "hoop": {"_count": 1, "or": {"_count": 1}}, "Blood": {"_count": 1, "Blisterpod": {"_count": 1}}, "Chaser": {"_count": 1, "gone": {"_count": 1}}, "sermon": {"_count": 1, "all": {"_count": 1}}, "lifesaver": {"_count": 1, "said": {"_count": 1}}, "surge": {"_count": 6, "of": {"_count": 5}, "toward": {"_count": 1}}, "sheet": {"_count": 6, "covered": {"_count": 1}, "of": {"_count": 3}, "on": {"_count": 1}, "": {"_count": 1}}, "code": {"_count": 1, "and": {"_count": 1}}, "crease": {"_count": 1, "between": {"_count": 1}}, "direction": {"_count": 1, "they": {"_count": 1}}, "candidate": {"_count": 1, "for": {"_count": 1}}, "teaching": {"_count": 2, "post": {"_count": 2}}, "WHAT": {"_count": 1, "": {"_count": 1}}, "headmaster": {"_count": 1, "in": {"_count": 1}}, "realistic": {"_count": 1, "idea": {"_count": 1}}, "carrying": {"_count": 1, "whisper": {"_count": 1}}, "pass": {"_count": 2, "is": {"_count": 1}, "and": {"_count": 1}}, "noncommittal": {"_count": 3, "noise": {"_count": 1}, "jerk": {"_count": 1}, "grunt": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "clipboard": {"_count": 3, "": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}}, "guest": {"_count": 3, "didnt": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}}, "period": {"_count": 1, "said": {"_count": 1}}, "greatgreatgranddaughter": {"_count": 1, "of": {"_count": 1}}, "prediction": {"_count": 1, "for": {"_count": 1}}, "gruesome": {"_count": 2, "and": {"_count": 1}, "sort": {"_count": 1}}, "strategy": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "Ministryapproved": {"_count": 1, "method": {"_count": 1}}, "challenge": {"_count": 1, "the": {"_count": 1}}, "mammal": {"_count": 1, "offers": {"_count": 1}}, "coldly": {"_count": 1, "indifferent": {"_count": 1}}, "lengthy": {"_count": 2, "interrogation": {"_count": 1}, "breakfast": {"_count": 1}}, "solution": {"_count": 2, "of": {"_count": 1}, "from": {"_count": 1}}, "fluke": {"_count": 1, "if": {"_count": 1}}, "sofa": {"_count": 3, "Ron": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "pen": {"_count": 1, "pal": {"_count": 1}}, "mite": {"_count": 1, "anxious": {"_count": 1}}, "stony": {"_count": 1, "silence": {"_count": 1}}, "fashion": {"_count": 2, "in": {"_count": 1}, "mumbled": {"_count": 1}}, "homework": {"_count": 2, "group": {"_count": 1}, "planner": {"_count": 1}}, "grumpylooking": {"_count": 1, "old": {"_count": 1}}, "seriously": {"_count": 1, "cool": {"_count": 1}}, "sensitive": {"_count": 1, "nature": {"_count": 1}}, "wart": {"_count": 2, "said": {"_count": 1}, "on": {"_count": 1}}, "rug": {"_count": 1, "in": {"_count": 1}}, "peculiar": {"_count": 2, "intensity": {"_count": 1}, "grinding": {"_count": 1}}, "sheltered": {"_count": 2, "corner": {"_count": 1}, "and": {"_count": 1}}, "fervent": {"_count": 1, "desire": {"_count": 1}}, "temper": {"_count": 1, "": {"_count": 1}}, "substandard": {"_count": 1, "teacher": {"_count": 1}}, "raspberry": {"_count": 1, "": {"_count": 1}}, "cheering": {"_count": 2, "and": {"_count": 1}, "Ron": {"_count": 1}}, "chew": {"_count": 1, "at": {"_count": 1}}, "skeptical": {"_count": 2, "noise": {"_count": 1}, "expression": {"_count": 1}}, "think": {"_count": 1, "and": {"_count": 1}}, "stubby": {"_count": 4, "short": {"_count": 1}, "finger": {"_count": 2}, "forefinger": {"_count": 1}}, "students": {"_count": 1, "rights": {"_count": 1}}, "vision": {"_count": 3, "or": {"_count": 1}, "of": {"_count": 2}}, "howling": {"_count": 1, "rush": {"_count": 1}}, "windowless": {"_count": 3, "corridor": {"_count": 2}, "passage": {"_count": 1}}, "spacious": {"_count": 1, "room": {"_count": 1}}, "satisfyingly": {"_count": 1, "loud": {"_count": 1}}, "leader": {"_count": 3, "said": {"_count": 1}, "in": {"_count": 1}, "who": {"_count": 1}}, "majority": {"_count": 1, "motion": {"_count": 1}}, "tower": {"_count": 3, "on": {"_count": 1}, "block": {"_count": 1}, "": {"_count": 1}}, "serial": {"_count": 1, "number": {"_count": 1}}, "Protean": {"_count": 2, "Charm": {"_count": 2}}, "lively": {"_count": 1, "interest": {"_count": 1}}, "deaf": {"_count": 1, "ear": {"_count": 1}}, "HairThickening": {"_count": 1, "Charm": {"_count": 1}}, "tendency": {"_count": 1, "to": {"_count": 1}}, "relentless": {"_count": 2, "campaign": {"_count": 1}, "flow": {"_count": 1}}, "delicate": {"_count": 3, "shade": {"_count": 2}, "stress": {"_count": 1}}, "rousing": {"_count": 2, "welcome": {"_count": 1}, "chorus": {"_count": 1}}, "tortured": {"_count": 1, "face": {"_count": 1}}, "fun": {"_count": 2, "fact": {"_count": 1}, "trip": {"_count": 1}}, "lone": {"_count": 2, "figure": {"_count": 1}, "mans": {"_count": 1}}, "promising": {"_count": 1, "new": {"_count": 1}}, "greenandsilver": {"_count": 1, "blur": {"_count": 1}}, "swollen": {"_count": 1, "lip": {"_count": 1}}, "disgraceful": {"_count": 1, "exhibition": {"_count": 1}}, "constricted": {"_count": 3, "voice": {"_count": 3}}, "reciprocal": {"_count": 1, "smile": {"_count": 1}}, "creaking": {"_count": 1, "sound": {"_count": 1}}, "puffy": {"_count": 2, "slit": {"_count": 1}, "mask": {"_count": 1}}, "haversack": {"_count": 1, "large": {"_count": 1}}, "softened": {"_count": 1, "expression": {"_count": 1}}, "journey": {"_count": 3, "lasting": {"_count": 1}, "was": {"_count": 1}, "they": {"_count": 1}}, "stifled": {"_count": 1, "noise": {"_count": 1}}, "sniff": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "sligh": {"_count": 1, "disagreement": {"_count": 1}}, "messenger": {"_count": 1, "off": {"_count": 1}}, "ridge": {"_count": 1, "one": {"_count": 1}}, "kneazle": {"_count": 1, "said": {"_count": 1}}, "friends": {"_count": 1, "broomstick": {"_count": 1}}, "tan": {"_count": 1, "": {"_count": 1}}, "oneeyed": {"_count": 1, "look": {"_count": 1}}, "chimaera": {"_count": 1, "she": {"_count": 1}}, "risk": {"_count": 3, "that": {"_count": 1}, "and": {"_count": 1}, "sendin": {"_count": 1}}, "trip": {"_count": 7, "inter": {"_count": 1}, "to": {"_count": 5}, "down": {"_count": 1}}, "cow": {"_count": 1, "with": {"_count": 1}}, "call": {"_count": 3, "anyway": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "stringy": {"_count": 2, "Slytherin": {"_count": 1}, "pallid": {"_count": 1}}, "sneering": {"_count": 2, "voice": {"_count": 1}, "smile": {"_count": 1}}, "herd": {"_count": 3, "": {"_count": 1}, "of": {"_count": 2}}, "male": {"_count": 1, "an": {"_count": 1}}, "dogll": {"_count": 1, "bite": {"_count": 1}}, "leer": {"_count": 1, "to": {"_count": 1}}, "malicious": {"_count": 3, "voice": {"_count": 1}, "smile": {"_count": 1}, "old": {"_count": 1}}, "positive": {"_count": 3, "avalanche": {"_count": 1}, "babble": {"_count": 1}, "nest": {"_count": 1}}, "lonely": {"_count": 5, "cracker": {"_count": 1}, "farm": {"_count": 1}, "winding": {"_count": 1}, "and": {"_count": 1}, "road": {"_count": 1}}, "threeweek": {"_count": 1, "break": {"_count": 1}}, "Happy": {"_count": 1, "Christmas": {"_count": 1}}, "Merry": {"_count": 2, "Christmas": {"_count": 2}}, "rreally": {"_count": 1, "good": {"_count": 1}}, "sob": {"_count": 4, "and": {"_count": 1}, "to": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 1}}, "clearer": {"_count": 3, "view": {"_count": 2}, "picture": {"_count": 1}}, "businesslike": {"_count": 3, "way": {"_count": 1}, "tone": {"_count": 1}, "voice": {"_count": 1}}, "raucous": {"_count": 2, "peal": {"_count": 1}, "scream": {"_count": 1}}, "teaspoon": {"_count": 3, "doesnt": {"_count": 1}, "proceeded": {"_count": 1}, "": {"_count": 1}}, "Cho": {"_count": 2, "who": {"_count": 2}}, "grouchy": {"_count": 1, "git": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "highbacked": {"_count": 1, "chair": {"_count": 1}}, "magnificently": {"_count": 1, "embroidered": {"_count": 1}}, "snowywhite": {"_count": 2, "nightshirt": {"_count": 1}, "towel": {"_count": 1}}, "backdrop": {"_count": 1, "of": {"_count": 1}}, "steady": {"_count": 1, "stream": {"_count": 1}}, "formless": {"_count": 1, "haze": {"_count": 1}}, "convulsive": {"_count": 1, "movement": {"_count": 1}}, "pang": {"_count": 3, "he": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}}, "blackened": {"_count": 1, "old": {"_count": 1}}, "cleverlooking": {"_count": 1, "wizard": {"_count": 1}}, "theatrical": {"_count": 1, "jerk": {"_count": 1}}, "reedy": {"_count": 1, "voice": {"_count": 1}}, "corpulent": {"_count": 1, "rednosed": {"_count": 1}}, "fraillooking": {"_count": 1, "old": {"_count": 1}}, "gimlet": {"_count": 1, "eyed": {"_count": 1}}, "birch": {"_count": 1, "rod": {"_count": 1}}, "swirl": {"_count": 2, "of": {"_count": 2}}, "solitary": {"_count": 4, "supper": {"_count": 1}, "figure": {"_count": 1}, "journey": {"_count": 1}, "oil": {"_count": 1}}, "mulish": {"_count": 2, "expression": {"_count": 1}, "look": {"_count": 1}}, "nod": {"_count": 3, "and": {"_count": 2}, "to": {"_count": 1}}, "wan": {"_count": 1, "smile": {"_count": 1}}, "refreshing": {"_count": 1, "nap": {"_count": 1}}, "grubbylooking": {"_count": 2, "warlock": {"_count": 1}, "wizard": {"_count": 1}}, "foulsmelling": {"_count": 1, "yellow": {"_count": 1}}, "BloodReplenishing": {"_count": 1, "Potion": {"_count": 1}}, "signpost": {"_count": 1, "": {"_count": 1}}, "reaction": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "readymade": {"_count": 1, "excuse": {"_count": 1}}, "sneaky": {"_count": 1, "voice": {"_count": 1}}, "film": {"_count": 1, "in": {"_count": 1}}, "savage": {"_count": 5, "pleasure": {"_count": 2}, "urge": {"_count": 1}, "and": {"_count": 1}, "beast": {"_count": 1}}, "humongous": {"_count": 1, "pile": {"_count": 1}}, "gibbon": {"_count": 1, "with": {"_count": 1}}, "walnut": {"_count": 1, "jammed": {"_count": 1}}, "medieval": {"_count": 2, "wizard": {"_count": 2}}, "ward": {"_count": 1, "": {"_count": 1}}, "tinsel": {"_count": 1, "wreath": {"_count": 1}}, "sweetie": {"_count": 1, "arent": {"_count": 1}}, "precocious": {"_count": 1, "twoyearold": {"_count": 1}}, "closed": {"_count": 1, "ward": {"_count": 1}}, "permanent": {"_count": 1, "home": {"_count": 1}}, "potted": {"_count": 2, "plant": {"_count": 2}}, "formidablelooking": {"_count": 1, "old": {"_count": 1}}, "shriveled": {"_count": 1, "clawlike": {"_count": 1}}, "sternly": {"_count": 1, "appraising": {"_count": 1}}, "pawn": {"_count": 2, "of": {"_count": 1}, "you": {"_count": 1}}, "T": {"_count": 1, "": {"_count": 1}}, "headmasters": {"_count": 1, "privilege": {"_count": 1}}, "castiron": {"_count": 1, "excuse": {"_count": 1}}, "mackintosh": {"_count": 1, "": {"_count": 1}}, "moody": {"_count": 2, "brooding": {"_count": 1}, "bite": {"_count": 1}}, "paperback": {"_count": 1, "book": {"_count": 1}}, "motorway": {"_count": 1, "": {"_count": 1}}, "main": {"_count": 1, "street": {"_count": 1}}, "viaduct": {"_count": 1, "surrounded": {"_count": 1}}, "windswept": {"_count": 2, "road": {"_count": 1}, "heathercovered": {"_count": 1}}, "careful": {"_count": 1, "eye": {"_count": 1}}, "pool": {"_count": 6, "of": {"_count": 6}}, "lamentable": {"_count": 1, "potionmaker": {"_count": 1}}, "complex": {"_count": 3, "and": {"_count": 2}, "array": {"_count": 1}}, "scorch": {"_count": 1, "mark": {"_count": 1}}, "Stinging": {"_count": 2, "Hex": {"_count": 1}, "Jinx": {"_count": 1}}, "filthy": {"_count": 9, "look": {"_count": 2}, "little": {"_count": 1}, "armchair": {"_count": 1}, "Muggle": {"_count": 1}, "dirtveined": {"_count": 1}, "old": {"_count": 2}, "finger": {"_count": 1}}, "Headless": {"_count": 1, "Hat": {"_count": 1}}, "witchs": {"_count": 2, "": {"_count": 1}, "wand": {"_count": 1}}, "pockmarked": {"_count": 1, "man": {"_count": 1}}, "pottedplant": {"_count": 1, "": {"_count": 1}}, "workplace": {"_count": 1, "accident": {"_count": 1}}, "spokeswizard": {"_count": 1, "for": {"_count": 1}}, "statement": {"_count": 4, "St": {"_count": 1}, "before": {"_count": 1}, "at": {"_count": 1}, "not": {"_count": 1}}, "frightenedlooking": {"_count": 1, "Professor": {"_count": 1}}, "sacking": {"_count": 1, "before": {"_count": 1}}, "crup": {"_count": 1, "a": {"_count": 1}}, "Jack": {"_count": 1, "Russell": {"_count": 1}}, "Valentines": {"_count": 1, "Day": {"_count": 1}}, "gentleman": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "thousandGalleon": {"_count": 1, "reward": {"_count": 1}}, "coffee": {"_count": 1, "": {"_count": 1}}, "cramped": {"_count": 1, "steamy": {"_count": 1}}, "standard": {"_count": 2, "with": {"_count": 1}, "around": {"_count": 1}}, "mounting": {"_count": 2, "pressure": {"_count": 1}, "excitement": {"_count": 1}}, "fount": {"_count": 1, "of": {"_count": 1}}, "cherub": {"_count": 1, "floated": {"_count": 1}}, "frilly": {"_count": 1, "napkin": {"_count": 1}}, "tuneful": {"_count": 1, "tinkle": {"_count": 1}}, "subject": {"_count": 1, "that": {"_count": 1}}, "splashy": {"_count": 1, "run": {"_count": 1}}, "diffrence": {"_count": 1, "havin": {"_count": 1}}, "dozenodd": {"_count": 1, "Death": {"_count": 1}}, "cocktail": {"_count": 1, "onion": {"_count": 1}}, "she": {"_count": 1, "glanced": {"_count": 1}}, "cherry": {"_count": 1, "out": {"_count": 1}}, "closerun": {"_count": 1, "contest": {"_count": 1}}, "win": {"_count": 2, "for": {"_count": 1}, "in": {"_count": 1}}, "gloating": {"_count": 1, "smile": {"_count": 1}}, "torch": {"_count": 4, "burning": {"_count": 1}, "and": {"_count": 2}, "on": {"_count": 1}}, "photograph": {"_count": 4, "too": {"_count": 1}, "near": {"_count": 1}, "of": {"_count": 1}, "from": {"_count": 1}}, "reporter": {"_count": 1, "asked": {"_count": 1}}, "watering": {"_count": 1, "can": {"_count": 1}}, "ripe": {"_count": 1, "old": {"_count": 1}}, "weedylooking": {"_count": 1, "boy": {"_count": 1}}, "progressively": {"_count": 1, "higher": {"_count": 1}}, "hooknosed": {"_count": 1, "man": {"_count": 1}}, "cowering": {"_count": 1, "woman": {"_count": 1}}, "bucking": {"_count": 1, "broomstick": {"_count": 1}}, "Shield": {"_count": 4, "Charm": {"_count": 4}}, "blackwalled": {"_count": 1, "blackfloored": {"_count": 1}}, "singularly": {"_count": 3, "unpleasant": {"_count": 1}, "humorless": {"_count": 1}, "mirthless": {"_count": 1}}, "parchment": {"_count": 1, "scroll": {"_count": 1}}, "hiccup": {"_count": 3, "was": {"_count": 1}, "": {"_count": 2}}, "thunderstruck": {"_count": 1, "Umbridge": {"_count": 1}}, "hoof": {"_count": 1, "shaped": {"_count": 1}}, "betrayal": {"_count": 2, "of": {"_count": 2}}, "hurt": {"_count": 2, "and": {"_count": 2}}, "centaurs": {"_count": 2, "battle": {"_count": 1}, "hoof": {"_count": 1}}, "squally": {"_count": 1, "April": {"_count": 1}}, "basin": {"_count": 3, "full": {"_count": 1}, "whose": {"_count": 1}, "of": {"_count": 1}}, "Calming": {"_count": 1, "Draught": {"_count": 1}}, "killjoy": {"_count": 1, "said": {"_count": 1}}, "scrum": {"_count": 2, "at": {"_count": 2}}, "delighted": {"_count": 2, "smile": {"_count": 1}, "laugh": {"_count": 1}}, "vicelike": {"_count": 1, "grip": {"_count": 1}}, "toughlooking": {"_count": 1, "wizard": {"_count": 1}}, "wait": {"_count": 1, "of": {"_count": 1}}, "counterjinx": {"_count": 1, "for": {"_count": 1}}, "reversal": {"_count": 1, "of": {"_count": 1}}, "written": {"_count": 1, "confession": {"_count": 1}}, "dismissive": {"_count": 1, "nod": {"_count": 1}}, "firsthand": {"_count": 1, "account": {"_count": 1}}, "performance": {"_count": 1, "of": {"_count": 1}}, "known": {"_count": 2, "enemy": {"_count": 1}, "Muggle": {"_count": 1}}, "sinister": {"_count": 1, "voheeeeeeeeee": {"_count": 1}}, "soppylooking": {"_count": 1, "witch": {"_count": 1}}, "silvertailed": {"_count": 1, "Weasley": {"_count": 1}}, "sparkler": {"_count": 1, "floated": {"_count": 1}}, "church": {"_count": 2, "full": {"_count": 1}, "and": {"_count": 1}}, "rocket": {"_count": 1, "and": {"_count": 1}}, "plant": {"_count": 1, "kept": {"_count": 1}}, "Snitch": {"_count": 5, "and": {"_count": 2}, "Scrimgeour": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}}, "twitchy": {"_count": 1, "manner": {"_count": 1}}, "Sunday": {"_count": 2, "finishing": {"_count": 1}, "": {"_count": 1}}, "cheer": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "gash": {"_count": 2, "appeared": {"_count": 1}, "on": {"_count": 1}}, "you": {"_count": 1, "knowwhat": {"_count": 1}}, "throwaway": {"_count": 2, "question": {"_count": 1}, "comment": {"_count": 1}}, "pincerlike": {"_count": 1, "grip": {"_count": 1}}, "swooping": {"_count": 2, "feeling": {"_count": 1}, "sensation": {"_count": 1}}, "rant": {"_count": 1, "about": {"_count": 1}}, "nagging": {"_count": 2, "voice": {"_count": 1}, "suspicion": {"_count": 1}}, "scribbled": {"_count": 2, "note": {"_count": 2}}, "franticlooking": {"_count": 1, "Hannah": {"_count": 1}}, "leaflet": {"_count": 1, "that": {"_count": 1}}, "pamphlet": {"_count": 1, "on": {"_count": 1}}, "challenging": {"_count": 1, "career": {"_count": 1}}, "sanctimonious": {"_count": 1, "little": {"_count": 1}}, "restful": {"_count": 1, "one": {"_count": 1}}, "smashing": {"_count": 1, "noise": {"_count": 1}}, "gleeful": {"_count": 2, "yell": {"_count": 1}, "wild": {"_count": 1}}, "fussy": {"_count": 2, "little": {"_count": 2}}, "minimum": {"_count": 1, "of": {"_count": 1}}, "stringent": {"_count": 1, "series": {"_count": 1}}, "pronounced": {"_count": 1, "aptitude": {"_count": 1}}, "competent": {"_count": 1, "teacher": {"_count": 1}}, "lightbulb": {"_count": 1, "blowing": {"_count": 1}}, "race": {"_count": 2, "when": {"_count": 1}, "apart": {"_count": 1}}, "lead": {"_count": 4, "weight": {"_count": 1}, "on": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}}, "summers": {"_count": 2, "day": {"_count": 2}}, "substance": {"_count": 1, "that": {"_count": 1}}, "swamp": {"_count": 1, "do": {"_count": 1}}, "Portable": {"_count": 1, "Swamp": {"_count": 1}}, "salute": {"_count": 1, "as": {"_count": 1}}, "horsewhip": {"_count": 1, "ready": {"_count": 1}}, "live": {"_count": 2, "eagle": {"_count": 1}, "adder": {"_count": 1}}, "ruffled": {"_count": 1, "flattened": {"_count": 1}}, "concerned": {"_count": 1, "expression": {"_count": 1}}, "mo": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "protruding": {"_count": 1, "root": {"_count": 1}}, "twig": {"_count": 2, "echoed": {"_count": 1}, "on": {"_count": 1}}, "culprit": {"_count": 1, "": {"_count": 1}}, "momen": {"_count": 1, "so": {"_count": 1}}, "mound": {"_count": 1, "at": {"_count": 1}}, "rippedup": {"_count": 1, "tree": {"_count": 1}}, "suspicious": {"_count": 2, "lack": {"_count": 1}, "look": {"_count": 1}}, "gray": {"_count": 4, "full": {"_count": 1}, "centaur": {"_count": 1}, "horse": {"_count": 1}, "blur": {"_count": 1}}, "birds": {"_count": 2, "nest": {"_count": 1}, "call": {"_count": 1}}, "rain": {"_count": 1, "of": {"_count": 1}}, "proud": {"_count": 1, "highcheekboned": {"_count": 1}}, "brutal": {"_count": 2, "fashion": {"_count": 1}, "urge": {"_count": 1}}, "placatory": {"_count": 1, "hand": {"_count": 1}}, "millimeter": {"_count": 2, "apart": {"_count": 1}, "": {"_count": 1}}, "manic": {"_count": 1, "gleam": {"_count": 1}}, "flourishing": {"_count": 1, "blackmarket": {"_count": 1}}, "boost": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "Substantive": {"_count": 1, "Charm": {"_count": 1}}, "Give": {"_count": 1, "the": {"_count": 1}}, "club": {"_count": 2, "soaring": {"_count": 1}, "taller": {"_count": 1}}, "Switching": {"_count": 1, "Spell": {"_count": 1}}, "Fanged": {"_count": 1, "Geranium": {"_count": 1}}, "bonus": {"_count": 1, "point": {"_count": 1}}, "desultory": {"_count": 1, "game": {"_count": 1}}, "fail": {"_count": 2, "": {"_count": 2}}, "chunk": {"_count": 2, "out": {"_count": 1}, "of": {"_count": 1}}, "Potions": {"_count": 1, "class": {"_count": 1}}, "firecrab": {"_count": 1, "without": {"_count": 1}}, "telescope": {"_count": 1, "as": {"_count": 1}}, "scandalized": {"_count": 1, "voice": {"_count": 1}}, "recurrence": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "heading": {"_count": 1, "in": {"_count": 1}}, "tribe": {"_count": 1, "of": {"_count": 1}}, "longfingered": {"_count": 4, "white": {"_count": 3}, "hand": {"_count": 1}}, "cooling": {"_count": 1, "drink": {"_count": 1}}, "hurricane": {"_count": 2, "causing": {"_count": 1}, "": {"_count": 1}}, "wonder": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "criticism": {"_count": 1, "Harry": {"_count": 1}}, "savingpeoplething": {"_count": 1, "": {"_count": 1}}, "\u2018savingpeoplething": {"_count": 1, "": {"_count": 1}}, "dusktilldawn": {"_count": 1, "endofexams": {"_count": 1}}, "recess": {"_count": 1, "where": {"_count": 1}}, "fatal": {"_count": 1, "blow": {"_count": 1}}, "convincingly": {"_count": 1, "exasperated": {"_count": 1}}, "fairground": {"_count": 1, "ride": {"_count": 1}}, "scuffle": {"_count": 2, "over": {"_count": 1}, "and": {"_count": 1}}, "stranglehold": {"_count": 1, "by": {"_count": 1}}, "Weasleyfree": {"_count": 1, "zone": {"_count": 1}}, "chintzcovered": {"_count": 1, "armchair": {"_count": 1}}, "flowerbed": {"_count": 1, "": {"_count": 1}}, "hungry": {"_count": 1, "expression": {"_count": 1}}, "cracked": {"_count": 4, "voice": {"_count": 1}, "mirror": {"_count": 1}, "and": {"_count": 2}}, "motherly": {"_count": 1, "voice": {"_count": 1}}, "pace": {"_count": 2, "behind": {"_count": 1}, "that": {"_count": 1}}, "care": {"_count": 1, "in": {"_count": 1}}, "bramble": {"_count": 1, "": {"_count": 1}}, "wholly": {"_count": 1, "unnecessary": {"_count": 1}}, "fallen": {"_count": 4, "sapling": {"_count": 1}, "chandelier": {"_count": 1}, "flower": {"_count": 1}, "twig": {"_count": 1}}, "wildlooking": {"_count": 1, "black": {"_count": 1}}, "horrorstruck": {"_count": 2, "squeak": {"_count": 1}, "face": {"_count": 1}}, "duncolored": {"_count": 1, "centaur": {"_count": 1}}, "crashing": {"_count": 3, "noise": {"_count": 1}, "blow": {"_count": 1}, "splash": {"_count": 1}}, "snow": {"_count": 1, "white": {"_count": 1}}, "lowhanging": {"_count": 1, "branch": {"_count": 1}}, "security": {"_count": 2, "troll": {"_count": 1}, "person": {"_count": 1}}, "stump": {"_count": 1, "nearby": {"_count": 1}}, "sweeping": {"_count": 1, "movement": {"_count": 1}}, "bloodred": {"_count": 2, "sunset": {"_count": 1}, "sky": {"_count": 1}}, "winding": {"_count": 2, "road": {"_count": 1}, "cobbled": {"_count": 1}}, "falling": {"_count": 1, "body": {"_count": 1}}, "politely": {"_count": 1, "interested": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "fiery": {"_count": 5, "X": {"_count": 1}, "cross": {"_count": 1}, "snake": {"_count": 1}, "shade": {"_count": 1}, "glow": {"_count": 1}}, "chained": {"_count": 1, "chair": {"_count": 1}}, "billowing": {"_count": 1, "glittering": {"_count": 1}}, "hummingbird": {"_count": 1, "emerged": {"_count": 1}}, "date": {"_count": 1, "of": {"_count": 1}}, "feverish": {"_count": 1, "fanatical": {"_count": 1}}, "halfblood": {"_count": 2, "too": {"_count": 1}, "Prince": {"_count": 1}}, "prophecy": {"_count": 8, "from": {"_count": 1}, "about": {"_count": 2}, "made": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "said": {"_count": 1}}, "glassfronted": {"_count": 2, "cabinet": {"_count": 1}, "case": {"_count": 1}}, "soap": {"_count": 2, "bubble": {"_count": 2}}, "peachlike": {"_count": 1, "fuzz": {"_count": 1}}, "bookcase": {"_count": 3, "and": {"_count": 2}, "beside": {"_count": 1}}, "cascade": {"_count": 1, "of": {"_count": 1}}, "pulse": {"_count": 2, "Harry": {"_count": 1}, "beat": {"_count": 1}}, "sinking": {"_count": 5, "heart": {"_count": 1}, "in": {"_count": 1}, "feeling": {"_count": 3}}, "oneintwelve": {"_count": 1, "chance": {"_count": 1}}, "brain": {"_count": 3, "burst": {"_count": 1}, "wave": {"_count": 2}}, "leaping": {"_count": 1, "fish": {"_count": 1}}, "taster": {"_count": 1, "": {"_count": 1}}, "crater": {"_count": 1, "right": {"_count": 1}}, "pearlywhite": {"_count": 1, "figure": {"_count": 1}}, "monkey": {"_count": 1, "up": {"_count": 1}}, "graceful": {"_count": 2, "arc": {"_count": 1}, "pirouette": {"_count": 1}}, "precautionary": {"_count": 1, "grip": {"_count": 1}}, "bulse": {"_count": 1, "There": {"_count": 1}}, "score": {"_count": 1, "of": {"_count": 1}}, "whirling": {"_count": 1, "of": {"_count": 1}}, "fear": {"_count": 1, "in": {"_count": 1}}, "cocoon": {"_count": 1, "of": {"_count": 1}}, "stunnedlooking": {"_count": 1, "Cornelius": {"_count": 1}}, "scarletrobed": {"_count": 1, "man": {"_count": 1}}, "whirlwind": {"_count": 1, "of": {"_count": 1}}, "Reallyl": {"_count": 1, "I": {"_count": 1}}, "I": {"_count": 2, "DONT": {"_count": 1}, "think": {"_count": 1}}, "rim": {"_count": 1, "of": {"_count": 1}}, "dormant": {"_count": 1, "snake": {"_count": 1}}, "throat": {"_count": 1, "": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "captive": {"_count": 1, "of": {"_count": 1}}, "sufficiently": {"_count": 1, "accomplished": {"_count": 1}}, "being": {"_count": 2, "with": {"_count": 2}}, "humans": {"_count": 3, "Dont": {"_count": 1}, "": {"_count": 2}}, "lingering": {"_count": 1, "protection": {"_count": 1}}, "surrogate": {"_count": 1, "son": {"_count": 1}}, "pampered": {"_count": 1, "little": {"_count": 1}}, "flaw": {"_count": 1, "in": {"_count": 1}}, "twinge": {"_count": 2, "of": {"_count": 2}}, "catch": {"_count": 1, "and": {"_count": 1}}, "future": {"_count": 1, "which": {"_count": 1}}, "force": {"_count": 1, "that": {"_count": 1}}, "select": {"_count": 1, "band": {"_count": 1}}, "trice": {"_count": 2, "by": {"_count": 1}, "Gabrielle": {"_count": 1}}, "showoff": {"_count": 1, "maniac": {"_count": 1}}, "Crumple": {"_count": 1, "Horned": {"_count": 1}}, "monument": {"_count": 2, "to": {"_count": 2}}, "walking": {"_count": 2, "stick": {"_count": 2}}, "cave": {"_count": 8, "like": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "were": {"_count": 1}, "on": {"_count": 1}, "I": {"_count": 1}, "beside": {"_count": 1}, "up": {"_count": 1}}, "lady": {"_count": 1, "friend": {"_count": 1}}, "regret": {"_count": 1, "that": {"_count": 1}}, "twoway": {"_count": 1, "mirror": {"_count": 1}}, "translucent": {"_count": 1, "somebody": {"_count": 1}}, "balaclava": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 1, "that": {"_count": 1}}, "voluminous": {"_count": 1, "traveling": {"_count": 1}}, "feat": {"_count": 2, "at": {"_count": 1}, "that": {"_count": 1}}, "kindred": {"_count": 1, "spirit": {"_count": 1}}, "luggage": {"_count": 1, "trolley": {"_count": 1}}, "prepared": {"_count": 1, "statement": {"_count": 1}}, "relaxed": {"_count": 1, "and": {"_count": 1}}, "flicker": {"_count": 3, "of": {"_count": 3}}, "selfproclaimed": {"_count": 1, "wizard": {"_count": 1}}, "hoax": {"_count": 2, "planned": {"_count": 1}, "then": {"_count": 1}}, "gerbil": {"_count": 1, "": {"_count": 1}}, "hallucination": {"_count": 2, "brought": {"_count": 1}, "she": {"_count": 1}}, "vain": {"_count": 1, "attempt": {"_count": 1}}, "builder": {"_count": 1, "or": {"_count": 1}}, "prison": {"_count": 1, "the": {"_count": 1}}, "whiskey": {"_count": 1, "": {"_count": 1}}, "country": {"_count": 4, "to": {"_count": 1}, "lane": {"_count": 3}}, "persistent": {"_count": 1, "habit": {"_count": 1}}, "glow": {"_count": 2, "of": {"_count": 2}}, "murder": {"_count": 1, "in": {"_count": 1}}, "disaster": {"_count": 1, "": {"_count": 1}}, "middleaged": {"_count": 1, "woman": {"_count": 1}}, "blow": {"_count": 6, "": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}, "Ron": {"_count": 1}, "nevertheless": {"_count": 1}}, "duck": {"_count": 1, "": {"_count": 1}}, "poorly": {"_count": 2, "performed": {"_count": 1}, "attended": {"_count": 1}}, "toothache": {"_count": 1, "": {"_count": 1}}, "disused": {"_count": 1, "mill": {"_count": 1}}, "slim": {"_count": 1, "hooded": {"_count": 1}}, "downstairs": {"_count": 1, "room": {"_count": 1}}, "sallow": {"_count": 1, "face": {"_count": 1}}, "drowned": {"_count": 1, "person": {"_count": 1}}, "threadbare": {"_count": 2, "sofa": {"_count": 1}, "carpet": {"_count": 1}}, "candlefilled": {"_count": 1, "lamp": {"_count": 1}}, "clinking": {"_count": 2, "of": {"_count": 1}, "sound": {"_count": 1}}, "relapse": {"_count": 1, "": {"_count": 1}}, "master": {"_count": 5, "you": {"_count": 1}, "he": {"_count": 1}, "yes": {"_count": 1}, "at": {"_count": 1}, "who": {"_count": 1}}, "comfortable": {"_count": 2, "job": {"_count": 1}, "winged": {"_count": 1}}, "stint": {"_count": 1, "in": {"_count": 1}}, "pitiable": {"_count": 1, "condition": {"_count": 1}}, "mediocre": {"_count": 1, "wizard": {"_count": 1}}, "tale": {"_count": 1, "of": {"_count": 1}}, "kneeling": {"_count": 2, "position": {"_count": 2}}, "redhot": {"_count": 1, "wire": {"_count": 1}}, "puddle": {"_count": 1, "of": {"_count": 1}}, "lionlike": {"_count": 1, "mane": {"_count": 1}}, "rift": {"_count": 1, "between": {"_count": 1}}, "residue": {"_count": 1, "of": {"_count": 1}}, "puce": {"_count": 1, "dressing": {"_count": 1}}, "housecoat": {"_count": 1, "over": {"_count": 1}}, "generous": {"_count": 2, "measure": {"_count": 2}}, "suspicion": {"_count": 1, "that": {"_count": 1}}, "difficulty": {"_count": 1, "has": {"_count": 1}}, "snout": {"_count": 1, "for": {"_count": 1}}, "hairraising": {"_count": 1, "shriek": {"_count": 1}}, "clock": {"_count": 3, "on": {"_count": 1}, "like": {"_count": 1}, "within": {"_count": 1}}, "use": {"_count": 1, "for": {"_count": 1}}, "dropped": {"_count": 1, "sword": {"_count": 1}}, "sideboard": {"_count": 1, "and": {"_count": 1}}, "talented": {"_count": 1, "boy": {"_count": 1}}, "self": {"_count": 1, "satisfied": {"_count": 1}}, "hamper": {"_count": 1, "every": {"_count": 1}}, "post": {"_count": 3, "at": {"_count": 1}, "owl": {"_count": 1}, "office": {"_count": 1}}, "squawk": {"_count": 1, "of": {"_count": 1}}, "lost": {"_count": 2, "cause": {"_count": 1}, "treasure": {"_count": 1}}, "farewell": {"_count": 1, "salute": {"_count": 1}}, "web": {"_count": 1, "around": {"_count": 1}}, "thread": {"_count": 1, "here": {"_count": 1}}, "closely": {"_count": 1, "related": {"_count": 1}}, "disservice": {"_count": 1, "by": {"_count": 1}}, "He": {"_count": 3, "stopped": {"_count": 1}, "looked": {"_count": 1}, "caught": {"_count": 1}}, "squashed": {"_count": 1, "face": {"_count": 1}}, "highflier": {"_count": 1, "": {"_count": 1}}, "mortified": {"_count": 1, "Mrs": {"_count": 1}}, "flair": {"_count": 1, "for": {"_count": 1}}, "Puking": {"_count": 1, "Pastille": {"_count": 1}}, "throaty": {"_count": 1, "voice": {"_count": 1}}, "tinkling": {"_count": 2, "laugh": {"_count": 2}}, "hardworking": {"_count": 1, "downto": {"_count": 1}}, "CurseBreaker": {"_count": 1, "isnt": {"_count": 1}}, "ballerina": {"_count": 2, "": {"_count": 2}}, "panda": {"_count": 1, "": {"_count": 1}}, "shack": {"_count": 1, "up": {"_count": 1}}, "Probity": {"_count": 1, "Probe": {"_count": 1}}, "twoseater": {"_count": 1, "sofa": {"_count": 1}}, "battalion": {"_count": 1, "of": {"_count": 1}}, "striped": {"_count": 2, "stained": {"_count": 1}, "one": {"_count": 1}}, "desire": {"_count": 7, "to": {"_count": 6}, "for": {"_count": 1}}, "squeeze": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "rack": {"_count": 1, "of": {"_count": 1}}, "clucking": {"_count": 1, "noise": {"_count": 1}}, "tape": {"_count": 1, "measure": {"_count": 1}}, "husband": {"_count": 1, "": {"_count": 1}}, "vacuum": {"_count": 1, "cleaner": {"_count": 1}}, "pirate": {"_count": 1, "ship": {"_count": 1}}, "tub": {"_count": 1, "out": {"_count": 1}}, "darker": {"_count": 1, "less": {"_count": 1}}, "money": {"_count": 1, "spinner": {"_count": 1}}, "customer": {"_count": 1, "out": {"_count": 1}}, "cluster": {"_count": 1, "of": {"_count": 1}}, "Mrs": {"_count": 2, "Weasleyish": {"_count": 1}, "Cole": {"_count": 1}}, "rude": {"_count": 3, "hand": {"_count": 2}, "awakening": {"_count": 1}}, "Pygmy": {"_count": 1, "Puff": {"_count": 1}}, "radio": {"_count": 1, "had": {"_count": 1}}, "sixteenyearold": {"_count": 2, "Does": {"_count": 1}, "to": {"_count": 1}}, "boldlooking": {"_count": 1, "girl": {"_count": 1}}, "stage": {"_count": 1, "whisper": {"_count": 1}}, "demented": {"_count": 1, "multicolored": {"_count": 1}}, "resignedlooking": {"_count": 1, "Trevor": {"_count": 1}}, "grandson": {"_count": 1, "": {"_count": 1}}, "Transfiguration": {"_count": 3, "N": {"_count": 1}, "lesson": {"_count": 1}, "test": {"_count": 1}}, "scarless": {"_count": 1, "Harry": {"_count": 1}}, "breathless": {"_count": 1, "third": {"_count": 1}}, "famously": {"_count": 1, "beautiful": {"_count": 1}}, "compere": {"_count": 1, "introducing": {"_count": 1}}, "longwinded": {"_count": 1, "reminiscence": {"_count": 1}}, "jerky": {"_count": 1, "crawl": {"_count": 1}}, "hundredfold": {"_count": 2, "this": {"_count": 1}, "in": {"_count": 1}}, "spoon": {"_count": 1, "and": {"_count": 1}}, "darkly": {"_count": 1, "significant": {"_count": 1}}, "fraud": {"_count": 1, "Harry": {"_count": 1}}, "Potter": {"_count": 1, "authority": {"_count": 1}}, "nauseated": {"_count": 1, "expression": {"_count": 1}}, "talent": {"_count": 1, "for": {"_count": 1}}, "firstperiod": {"_count": 1, "Ancient": {"_count": 1}}, "compliment": {"_count": 1, "before": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "blank": {"_count": 2, "schedule": {"_count": 1}, "until": {"_count": 1}}, "manyheaded": {"_count": 1, "monster": {"_count": 1}}, "neck": {"_count": 1, "is": {"_count": 1}}, "loving": {"_count": 1, "caress": {"_count": 1}}, "nonverbal": {"_count": 1, "spell": {"_count": 1}}, "splitsecond": {"_count": 1, "advantage": {"_count": 1}}, "goldcolored": {"_count": 1, "cauldron": {"_count": 1}}, "colorless": {"_count": 2, "odorless": {"_count": 1}, "voice": {"_count": 1}}, "radiant": {"_count": 2, "expression": {"_count": 1}, "smile": {"_count": 1}}, "shhing": {"_count": 1, "gesture": {"_count": 1}}, "particle": {"_count": 1, "had": {"_count": 1}}, "banned": {"_count": 2, "substance": {"_count": 1}, "subject": {"_count": 1}}, "disadvantage": {"_count": 1, "of": {"_count": 1}}, "clockwise": {"_count": 2, "stir": {"_count": 2}}, "stir": {"_count": 2, "or": {"_count": 1}, "particularly": {"_count": 1}}, "textbook": {"_count": 2, "": {"_count": 2}}, "moving": {"_count": 2, "spiral": {"_count": 1}, "target": {"_count": 1}}, "cheese": {"_count": 1, "cauldron": {"_count": 1}}, "swirling": {"_count": 1, "silvery": {"_count": 1}}, "forgetmenot": {"_count": 1, "": {"_count": 1}}, "frock": {"_count": 1, "coat": {"_count": 1}}, "reluctant": {"_count": 2, "trot": {"_count": 1}, "giggle": {"_count": 1}}, "scuffling": {"_count": 3, "noise": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}}, "summons": {"_count": 1, "to": {"_count": 1}}, "defenseless": {"_count": 1, "Ar": {"_count": 1}}, "Mugglelover": {"_count": 1, "the": {"_count": 1}}, "fantastic": {"_count": 1, "amount": {"_count": 1}}, "determinedly": {"_count": 1, "casual": {"_count": 1}}, "raid": {"_count": 1, "on": {"_count": 1}}, "strut": {"_count": 1, "": {"_count": 1}}, "swagger": {"_count": 1, "": {"_count": 1}}, "pileup": {"_count": 1, "halfway": {"_count": 1}}, "crashed": {"_count": 1, "Comet": {"_count": 1}}, "ferociously": {"_count": 1, "hit": {"_count": 1}}, "brutality": {"_count": 1, "that": {"_count": 1}}, "teddy": {"_count": 1, "bear": {"_count": 1}}, "halfbrother": {"_count": 1, "but": {"_count": 1}}, "confidential": {"_count": 1, "tipoff": {"_count": 1}}, "surprised": {"_count": 1, "look": {"_count": 1}}, "shrunken": {"_count": 2, "head": {"_count": 1}, "maroon": {"_count": 1}}, "rigidly": {"_count": 1, "disapproving": {"_count": 1}}, "ketchup": {"_count": 1, "bottle": {"_count": 1}}, "budding": {"_count": 1, "Death": {"_count": 1}}, "distraction": {"_count": 2, "arrived": {"_count": 1}, "watching": {"_count": 1}}, "thickly": {"_count": 1, "gloved": {"_count": 1}}, "regal": {"_count": 1, "wave": {"_count": 1}}, "junk": {"_count": 1, "shop": {"_count": 1}}, "gloved": {"_count": 2, "hand": {"_count": 2}}, "greenish": {"_count": 1, "glitter": {"_count": 1}}, "lifeanddeath": {"_count": 1, "matter": {"_count": 1}}, "rapid": {"_count": 1, "spread": {"_count": 1}}, "thatch": {"_count": 1, "of": {"_count": 1}}, "horsedrawn": {"_count": 1, "milk": {"_count": 1}}, "scruffy": {"_count": 1, "girl": {"_count": 1}}, "hallway": {"_count": 2, "tiled": {"_count": 1}, "lined": {"_count": 1}}, "sharpfeatured": {"_count": 1, "face": {"_count": 1}}, "giraffe": {"_count": 1, "had": {"_count": 1}}, "scholarship": {"_count": 1, "": {"_count": 1}}, "circus": {"_count": 1, "and": {"_count": 1}}, "bully": {"_count": 1, "": {"_count": 1}}, "whack": {"_count": 1, "on": {"_count": 1}}, "command": {"_count": 1, "and": {"_count": 1}}, "rail": {"_count": 1, "of": {"_count": 1}}, "yoyo": {"_count": 1, "a": {"_count": 1}}, "fund": {"_count": 1, "at": {"_count": 1}}, "gum": {"_count": 1, "shield": {"_count": 1}}, "pod": {"_count": 1, "just": {"_count": 1}}, "trowel": {"_count": 1, "": {"_count": 1}}, "thorny": {"_count": 1, "vine": {"_count": 1}}, "jelly": {"_count": 1, "": {"_count": 1}}, "A": {"_count": 1, "what": {"_count": 1}}, "twelveyearold": {"_count": 1, "": {"_count": 1}}, "seventhfloor": {"_count": 2, "corridor": {"_count": 2}}, "Beaters": {"_count": 1, "bat": {"_count": 1}}, "snide": {"_count": 3, "voice": {"_count": 2}, "and": {"_count": 1}}, "doubletake": {"_count": 1, "he": {"_count": 1}}, "mob": {"_count": 1, "of": {"_count": 1}}, "mane": {"_count": 1, "of": {"_count": 1}}, "brittle": {"_count": 1, "voice": {"_count": 1}}, "clawlike": {"_count": 1, "hand": {"_count": 1}}, "seizure": {"_count": 1, "Hermione": {"_count": 1}}, "roguish": {"_count": 1, "grin": {"_count": 1}}, "gillywater": {"_count": 1, "": {"_count": 1}}, "whatdidItellyou": {"_count": 1, "": {"_count": 1}}, "choked": {"_count": 2, "voice": {"_count": 2}}, "chandelier": {"_count": 2, "and": {"_count": 1}, "thickly": {"_count": 1}}, "blocked": {"_count": 1, "sink": {"_count": 1}}, "tasseled": {"_count": 2, "velvet": {"_count": 1}, "footstool": {"_count": 1}}, "thicket": {"_count": 1, "of": {"_count": 1}}, "fond": {"_count": 1, "if": {"_count": 1}}, "distinctly": {"_count": 2, "grayish": {"_count": 1}, "unlovable": {"_count": 1}}, "reminiscent": {"_count": 1, "gleam": {"_count": 1}}, "whoopsadaisy": {"_count": 1, "": {"_count": 1}}, "snappy": {"_count": 1, "retort": {"_count": 1}}, "paper": {"_count": 1, "airplane": {"_count": 1}}, "paperchain": {"_count": 1, "explosion": {"_count": 1}}, "scowling": {"_count": 1, "Mrs": {"_count": 1}}, "genuine": {"_count": 1, "Death": {"_count": 1}}, "ballad": {"_count": 1, "called": {"_count": 1}}, "title": {"_count": 1, "youre": {"_count": 1}}, "label": {"_count": 1, "reading": {"_count": 1}}, "maggot": {"_count": 1, "in": {"_count": 1}}, "daughterinlaw": {"_count": 1, "instead": {"_count": 1}}, "frozen": {"_count": 3, "rhododendron": {"_count": 1}, "expression": {"_count": 1}, "pool": {"_count": 1}}, "reply": {"_count": 1, "the": {"_count": 1}}, "symbol": {"_count": 3, "of": {"_count": 3}}, "worm": {"_count": 1, "": {"_count": 1}}, "scapegoat": {"_count": 1, "just": {"_count": 1}}, "mascot": {"_count": 1, "": {"_count": 1}}, "vat": {"_count": 1, "of": {"_count": 1}}, "twelveweek": {"_count": 1, "course": {"_count": 1}}, "hoselike": {"_count": 1, "jet": {"_count": 1}}, "baboon": {"_count": 1, "brandishing": {"_count": 1}}, "distinctive": {"_count": 1, "injury": {"_count": 1}}, "polite": {"_count": 1, "calm": {"_count": 1}}, "motley": {"_count": 1, "collection": {"_count": 1}}, "resentful": {"_count": 2, "admiration": {"_count": 1}, "look": {"_count": 1}}, "Mugglehater": {"_count": 2, "who": {"_count": 1}, "but": {"_count": 1}}, "velvet": {"_count": 3, "pouffe": {"_count": 2}, "bow": {"_count": 1}}, "recollection": {"_count": 1, "": {"_count": 1}}, "gloomier": {"_count": 1, "view": {"_count": 1}}, "garish": {"_count": 1, "shade": {"_count": 1}}, "Quafflesized": {"_count": 1, "egg": {"_count": 1}}, "stampeding": {"_count": 1, "troll": {"_count": 1}}, "complication": {"_count": 1, "Harry": {"_count": 1}}, "remedy": {"_count": 1, "Harry": {"_count": 1}}, "tonic": {"_count": 1, "for": {"_count": 1}}, "heartbeat": {"_count": 2, "in": {"_count": 1}, "then": {"_count": 1}}, "rattling": {"_count": 1, "gasp": {"_count": 1}}, "trail": {"_count": 2, "of": {"_count": 2}}, "longhaired": {"_count": 2, "woman": {"_count": 1}, "wizard": {"_count": 1}}, "ruddy": {"_count": 1, "teacher": {"_count": 1}}, "hulking": {"_count": 1, "figure": {"_count": 1}}, "talk": {"_count": 2, "beforehand": {"_count": 1}, "about": {"_count": 1}}, "ferocious": {"_count": 1, "swipe": {"_count": 1}}, "remarkably": {"_count": 2, "warm": {"_count": 1}, "selfless": {"_count": 1}}, "familiarlooking": {"_count": 1, "freckly": {"_count": 1}}, "discomfort": {"_count": 1, "not": {"_count": 1}}, "Gurdyroot": {"_count": 1, "she": {"_count": 1}}, "weary": {"_count": 2, "sort": {"_count": 1}, "male": {"_count": 1}}, "stronghold": {"_count": 1, "of": {"_count": 1}}, "role": {"_count": 1, "a": {"_count": 1}}, "melting": {"_count": 1, "iced": {"_count": 1}}, "conservatory": {"_count": 1, "": {"_count": 1}}, "raggedlooking": {"_count": 1, "woman": {"_count": 1}}, "pittance": {"_count": 1, "but": {"_count": 1}}, "lethal": {"_count": 1, "and": {"_count": 1}}, "refusal": {"_count": 2, "to": {"_count": 2}}, "taut": {"_count": 1, "leer": {"_count": 1}}, "purpose": {"_count": 1, "": {"_count": 1}}, "pointless": {"_count": 3, "warning": {"_count": 1}, "thing": {"_count": 1}, "and": {"_count": 1}}, "viciously": {"_count": 1, "difficult": {"_count": 1}}, "touchy": {"_count": 1, "subject": {"_count": 1}}, "nobility": {"_count": 1, "that": {"_count": 1}}, "Variety": {"_count": 1, "of": {"_count": 1}}, "nineyearold": {"_count": 1, "boy": {"_count": 1}}, "smelly": {"_count": 1, "sneak": {"_count": 1}}, "puppet": {"_count": 1, "to": {"_count": 1}}, "departed": {"_count": 3, "soul": {"_count": 2}, "statue": {"_count": 1}}, "shufti": {"_count": 1, "to": {"_count": 1}}, "cubicle": {"_count": 3, "behind": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 1}}, "sunny": {"_count": 1, "corner": {"_count": 1}}, "sprig": {"_count": 1, "of": {"_count": 1}}, "stroke": {"_count": 3, "of": {"_count": 2}, "and": {"_count": 1}}, "whim": {"_count": 1, "on": {"_count": 1}}, "pint": {"_count": 2, "": {"_count": 2}}, "tenfoothigh": {"_count": 1, "mound": {"_count": 1}}, "Pekingese": {"_count": 1, "": {"_count": 1}}, "plentiful": {"_count": 1, "supply": {"_count": 1}}, "lad": {"_count": 1, "sang": {"_count": 1}}, "Horcrux": {"_count": 32, "would": {"_count": 1}, "": {"_count": 14}, "hidden": {"_count": 1}, "is": {"_count": 5}, "that": {"_count": 2}, "then": {"_count": 1}, "by": {"_count": 1}, "wont": {"_count": 1}, "straightaway": {"_count": 1}, "here": {"_count": 1}, "every": {"_count": 1}, "demonstrate": {"_count": 1}, "in": {"_count": 1}, "though": {"_count": 1}}, "killer": {"_count": 3, "": {"_count": 3}}, "phenomenon": {"_count": 1, "I": {"_count": 1}}, "safeguard": {"_count": 1, "": {"_count": 1}}, "sevenpart": {"_count": 2, "soul": {"_count": 2}}, "spectral": {"_count": 1, "existence": {"_count": 1}}, "startling": {"_count": 1, "place": {"_count": 1}}, "total": {"_count": 2, "of": {"_count": 1}, "genius": {"_count": 1}}, "guess": {"_count": 3, "that": {"_count": 1}, "at": {"_count": 1}, "then": {"_count": 1}}, "rubyencrusted": {"_count": 1, "sword": {"_count": 1}}, "portion": {"_count": 1, "of": {"_count": 1}}, "mortal": {"_count": 2, "man": {"_count": 1}, "wound": {"_count": 1}}, "maimed": {"_count": 1, "and": {"_count": 1}}, "power": {"_count": 3, "that": {"_count": 1}, "beyond": {"_count": 2}}, "grave": {"_count": 3, "error": {"_count": 1}, "mistake": {"_count": 2}}, "battle": {"_count": 2, "to": {"_count": 1}, "was": {"_count": 1}}, "dilemma": {"_count": 1, "doesnt": {"_count": 1}}, "parade": {"_count": 1, "of": {"_count": 1}}, "stock": {"_count": 1, "of": {"_count": 1}}, "LegLocker": {"_count": 1, "Curse": {"_count": 1}}, "beloved": {"_count": 1, "pet": {"_count": 1}}, "city": {"_count": 2, "with": {"_count": 1}, "its": {"_count": 1}}, "hiding": {"_count": 1, "place": {"_count": 1}}, "beat": {"_count": 2, "": {"_count": 2}}, "nickname": {"_count": 2, "is": {"_count": 1}, "a": {"_count": 1}}, "cheat": {"_count": 1, "and": {"_count": 1}}, "reputation": {"_count": 1, "for": {"_count": 1}}, "comfort": {"_count": 2, "to": {"_count": 2}}, "shattered": {"_count": 1, "glass": {"_count": 1}}, "hobby": {"_count": 2, "of": {"_count": 2}}, "he": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "up": {"_count": 1}}, "Prince": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "routine": {"_count": 1, "sort": {"_count": 1}}, "Seer": {"_count": 1, "": {"_count": 1}}, "ruby": {"_count": 2, "red": {"_count": 1}, "she": {"_count": 1}}, "gallop": {"_count": 1, "": {"_count": 1}}, "quieter": {"_count": 1, "atmosphere": {"_count": 1}}, "sheer": {"_count": 1, "drop": {"_count": 1}}, "picnic": {"_count": 2, "": {"_count": 1}, "mate": {"_count": 1}}, "less": {"_count": 1, "cozy": {"_count": 1}}, "view": {"_count": 2, "of": {"_count": 2}}, "treacherous": {"_count": 1, "descent": {"_count": 1}}, "fissure": {"_count": 1, "in": {"_count": 1}}, "particular": {"_count": 1, "spot": {"_count": 1}}, "cavern": {"_count": 2, "so": {"_count": 1}, "and": {"_count": 1}}, "pedestal": {"_count": 1, "": {"_count": 1}}, "tenth": {"_count": 1, "gobletful": {"_count": 1}}, "streetlamp": {"_count": 1, "": {"_count": 1}}, "stimulant": {"_count": 2, "He": {"_count": 1}, "": {"_count": 1}}, "Freezing": {"_count": 1, "Charm": {"_count": 1}}, "stocky": {"_count": 1, "little": {"_count": 1}}, "yellow": {"_count": 1, "fingernail": {"_count": 1}}, "barrier": {"_count": 1, "behind": {"_count": 1}}, "waxwork": {"_count": 1, "but": {"_count": 1}}, "piglike": {"_count": 1, "squeal": {"_count": 1}}, "separate": {"_count": 1, "Death": {"_count": 1}}, "scrap": {"_count": 1, "of": {"_count": 1}}, "Killing": {"_count": 3, "Curse": {"_count": 3}}, "stricken": {"_count": 1, "lament": {"_count": 1}}, "silken": {"_count": 1, "handkerchief": {"_count": 1}}, "delegation": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "shouting": {"_count": 1, "match": {"_count": 1}}, "powderblue": {"_count": 1, "carriage": {"_count": 1}}, "distinct": {"_count": 1, "resemblance": {"_count": 1}}, "looker": {"_count": 1, "said": {"_count": 1}}, "potential": {"_count": 1, "killer": {"_count": 1}}, "funeral": {"_count": 4, "before": {"_count": 1}, "for": {"_count": 2}, "and": {"_count": 1}}, "talisman": {"_count": 2, "but": {"_count": 1}, "against": {"_count": 1}}, "nudge": {"_count": 1, "in": {"_count": 1}}, "breeze": {"_count": 1, "in": {"_count": 1}}, "sentinel": {"_count": 1, "near": {"_count": 1}}, "parents": {"_count": 1, "arms": {"_count": 1}}, "white": {"_count": 3, "marble": {"_count": 1}, "handkerchief": {"_count": 1}, "dress": {"_count": 1}}, "beech": {"_count": 1, "tree": {"_count": 1}}, "wedding": {"_count": 5, "could": {"_count": 1}, "having": {"_count": 1}, "for": {"_count": 1}, "before": {"_count": 1}, "cake": {"_count": 1}}, "purewhite": {"_count": 1, "peacock": {"_count": 1}}, "gilded": {"_count": 1, "mirror": {"_count": 1}}, "pearly": {"_count": 2, "glow": {"_count": 1}, "white": {"_count": 1}}, "Confundus": {"_count": 1, "Charm": {"_count": 1}}, "highranking": {"_count": 1, "official": {"_count": 1}}, "stabbing": {"_count": 1, "pain": {"_count": 1}}, "twoinchlong": {"_count": 1, "fragment": {"_count": 1}}, "profound": {"_count": 1, "effect": {"_count": 1}}, "renewed": {"_count": 1, "closeness": {"_count": 1}}, "cordial": {"_count": 1, "one": {"_count": 1}}, "turning": {"_count": 1, "point": {"_count": 1}}, "slice": {"_count": 1, "of": {"_count": 1}}, "biographers": {"_count": 1, "dream": {"_count": 1}}, "journalist": {"_count": 1, "as": {"_count": 1}}, "deadline": {"_count": 1, "is": {"_count": 1}}, "blameless": {"_count": 1, "life": {"_count": 1}}, "tantalizing": {"_count": 1, "smile": {"_count": 1}}, "bombshell": {"_count": 1, "or": {"_count": 1}}, "breakthrough": {"_count": 1, "piece": {"_count": 1}}, "notorious": {"_count": 1, "grudge": {"_count": 1}}, "sickly": {"_count": 1, "peach": {"_count": 1}}, "fawn": {"_count": 1, "zipup": {"_count": 1}}, "mauve": {"_count": 1, "top": {"_count": 1}}, "metronome": {"_count": 1, "": {"_count": 1}}, "booby": {"_count": 1, "trap": {"_count": 1}}, "helmet": {"_count": 1, "and": {"_count": 1}}, "companion": {"_count": 1, "each": {"_count": 1}}, "just": {"_count": 1, "doit": {"_count": 1}}, "hank": {"_count": 1, "of": {"_count": 1}}, "protector": {"_count": 1, "said": {"_count": 1}}, "thestral": {"_count": 2, "said": {"_count": 1}, "flicked": {"_count": 1}}, "soppy": {"_count": 1, "slavish": {"_count": 1}}, "bumper": {"_count": 1, "car": {"_count": 1}}, "toy": {"_count": 2, "on": {"_count": 1}, "broomstick": {"_count": 1}}, "tooth": {"_count": 1, "on": {"_count": 1}}, "vertical": {"_count": 2, "dive": {"_count": 1}, "line": {"_count": 1}}, "tank": {"_count": 1, "wasnt": {"_count": 1}}, "grain": {"_count": 1, "of": {"_count": 1}}, "mirthless": {"_count": 1, "laugh": {"_count": 1}}, "specialty": {"_count": 1, "of": {"_count": 1}}, "frost": {"_count": 1, "its": {"_count": 1}}, "pressured": {"_count": 1, "situation": {"_count": 1}}, "Secret": {"_count": 1, "Keeper": {"_count": 1}}, "revoltinglooking": {"_count": 1, "handkerchief": {"_count": 1}}, "mobile": {"_count": 1, "library": {"_count": 1}}, "daughter": {"_count": 3, "you": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}}, "ladder": {"_count": 1, "slid": {"_count": 1}}, "poxy": {"_count": 1, "napkin": {"_count": 1}}, "bridesmaid": {"_count": 1, "she": {"_count": 1}}, "counterargument": {"_count": 1, "Ron": {"_count": 1}}, "footnote": {"_count": 1, "": {"_count": 1}}, "wallshaking": {"_count": 1, "crash": {"_count": 1}}, "discarded": {"_count": 1, "Chocolate": {"_count": 1}}, "maniacal": {"_count": 1, "laugh": {"_count": 1}}, "mountainous": {"_count": 1, "horizon": {"_count": 1}}, "season": {"_count": 1, "": {"_count": 1}}, "departure": {"_count": 1, "from": {"_count": 1}}, "leetle": {"_count": 1, "less": {"_count": 1}}, "chapter": {"_count": 3, "on": {"_count": 2}, "entitled": {"_count": 1}}, "pigs": {"_count": 1, "tail": {"_count": 1}}, "dustbinlid": {"_count": 1, "sized": {"_count": 1}}, "will": {"_count": 1, "That": {"_count": 1}}, "pretext": {"_count": 1, "to": {"_count": 1}}, "stoptalkingnow": {"_count": 1, "sort": {"_count": 1}}, "drawstring": {"_count": 1, "pouch": {"_count": 1}}, "valuable": {"_count": 1, "object": {"_count": 1}}, "reference": {"_count": 1, "to": {"_count": 1}}, "disputed": {"_count": 1, "capture": {"_count": 1}}, "lit": {"_count": 2, "cigarette": {"_count": 1}, "stage": {"_count": 1}}, "crown": {"_count": 4, "Potter": {"_count": 1}, "really": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "seventeenyearold": {"_count": 2, "boy": {"_count": 1}, "": {"_count": 1}}, "damper": {"_count": 1, "on": {"_count": 1}}, "redheaded": {"_count": 1, "Muggle": {"_count": 1}}, "goldenjacketed": {"_count": 1, "band": {"_count": 1}}, "blue": {"_count": 1, "haze": {"_count": 1}}, "procession": {"_count": 1, "had": {"_count": 1}}, "hum": {"_count": 1, "of": {"_count": 1}}, "cap": {"_count": 1, "whose": {"_count": 1}}, "triangular": {"_count": 3, "eye": {"_count": 2}, "mark": {"_count": 1}}, "goodlooking": {"_count": 2, "girl": {"_count": 1}, "man": {"_count": 1}}, "darkhaired": {"_count": 1, "young": {"_count": 1}}, "relative": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "canopy": {"_count": 2, "supported": {"_count": 1}, "of": {"_count": 1}}, "podium": {"_count": 1, "": {"_count": 1}}, "lifetimes": {"_count": 2, "supply": {"_count": 1}, "beats": {"_count": 1}}, "vail": {"_count": 1, "at": {"_count": 1}}, "pupil": {"_count": 1, "there": {"_count": 1}}, "CrumpleHorned": {"_count": 3, "Snorkack": {"_count": 3}}, "vot": {"_count": 1, "": {"_count": 1}}, "Wrackspurt": {"_count": 1, "said": {"_count": 1}}, "wandmaker": {"_count": 2, "": {"_count": 1}, "what": {"_count": 1}}, "celebrated": {"_count": 1, "wandmaker": {"_count": 1}}, "drunken": {"_count": 1, "uncle": {"_count": 1}}, "biography": {"_count": 1, "of": {"_count": 1}}, "saint": {"_count": 1, "even": {"_count": 1}}, "terrifying": {"_count": 1, "woman": {"_count": 1}}, "Healer": {"_count": 1, "at": {"_count": 1}}, "drowning": {"_count": 2, "man": {"_count": 2}}, "protective": {"_count": 2, "charm": {"_count": 2}}, "cargo": {"_count": 1, "hold": {"_count": 1}}, "booth": {"_count": 1, "first": {"_count": 1}}, "twitch": {"_count": 1, "": {"_count": 1}}, "prickly": {"_count": 1, "silence": {"_count": 1}}, "Trace": {"_count": 2, "back": {"_count": 1}, "on": {"_count": 1}}, "wasted": {"_count": 1, "arm": {"_count": 1}}, "peak": {"_count": 1, "burning": {"_count": 1}}, "slighter": {"_count": 1, "figure": {"_count": 1}}, "tool": {"_count": 1, "to": {"_count": 1}}, "nameplate": {"_count": 1, "reading": {"_count": 1}}, "carved": {"_count": 2, "wooden": {"_count": 1}, "quality": {"_count": 1}}, "fascinating": {"_count": 1, "old": {"_count": 1}}, "veil": {"_count": 2, "": {"_count": 2}}, "halfremembered": {"_count": 1, "voice": {"_count": 1}}, "torn": {"_count": 2, "piece": {"_count": 2}}, "pompous": {"_count": 2, "little": {"_count": 1}, "prat": {"_count": 1}}, "recently": {"_count": 1, "smashed": {"_count": 1}}, "rallying": {"_count": 1, "tone": {"_count": 1}}, "locket": {"_count": 5, "": {"_count": 2}, "into": {"_count": 1}, "like": {"_count": 1}, "there": {"_count": 1}}, "bloodcurdling": {"_count": 1, "scream": {"_count": 1}}, "disposable": {"_count": 1, "creature": {"_count": 1}}, "bbasin": {"_count": 1, "full": {"_count": 1}}, "bruise": {"_count": 1, "already": {"_count": 1}}, "slave": {"_count": 1, "houseelves": {"_count": 1}}, "token": {"_count": 1, "of": {"_count": 1}}, "respectful": {"_count": 1, "salute": {"_count": 1}}, "supper": {"_count": 1, "composed": {"_count": 1}}, "cafe": {"_count": 1, "on": {"_count": 1}}, "masterstroke": {"_count": 1, "": {"_count": 1}}, "price": {"_count": 1, "upon": {"_count": 1}}, "survey": {"_count": 1, "of": {"_count": 1}}, "Muggleborns": {"_count": 1, "part": {"_count": 1}}, "mission": {"_count": 2, "": {"_count": 2}}, "halfwerewolf": {"_count": 1, "whose": {"_count": 1}}, "daredevil": {"_count": 1, "Harry": {"_count": 1}}, "consoling": {"_count": 1, "hand": {"_count": 1}}, "highnecked": {"_count": 1, "silk": {"_count": 1}}, "bleedin": {"_count": 1, "ouseelf": {"_count": 1}}, "spluttering": {"_count": 1, "and": {"_count": 1}}, "dislike": {"_count": 1, "for": {"_count": 1}}, "podgy": {"_count": 1, "pallid": {"_count": 1}}, "rosy": {"_count": 1, "glow": {"_count": 1}}, "merrily": {"_count": 1, "blazing": {"_count": 1}}, "headline": {"_count": 1, "that": {"_count": 1}}, "rippling": {"_count": 1, "scarlet": {"_count": 1}}, "twilit": {"_count": 1, "street": {"_count": 1}}, "foreign": {"_count": 1, "wandmaker": {"_count": 1}}, "steakandkidney": {"_count": 1, "pie": {"_count": 1}}, "birdcage": {"_count": 1, "and": {"_count": 1}}, "quavery": {"_count": 1, "voice": {"_count": 1}}, "repulsed": {"_count": 1, "Hermione": {"_count": 1}}, "slot": {"_count": 1, "in": {"_count": 1}}, "forced": {"_count": 1, "chuckle": {"_count": 1}}, "fireplace": {"_count": 1, "into": {"_count": 1}}, "wispy": {"_count": 1, "little": {"_count": 1}}, "clang": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "bushily": {"_count": 1, "whiskered": {"_count": 1}}, "frowning": {"_count": 1, "wizard": {"_count": 1}}, "rhythm": {"_count": 1, "to": {"_count": 1}}, "carpetmuffled": {"_count": 1, "footstep": {"_count": 1}}, "completed": {"_count": 1, "pamphlet": {"_count": 1}}, "Peaceful": {"_count": 1, "PureBlood": {"_count": 1}}, "simpering": {"_count": 1, "face": {"_count": 1}}, "peephole": {"_count": 1, "on": {"_count": 1}}, "rubberbulbed": {"_count": 1, "horn": {"_count": 1}}, "flouncy": {"_count": 1, "flowered": {"_count": 1}}, "telescopic": {"_count": 1, "attachment": {"_count": 1}}, "filing": {"_count": 1, "cabinet": {"_count": 1}}, "kitten": {"_count": 1, "in": {"_count": 1}}, "glossy": {"_count": 1, "book": {"_count": 1}}, "fullpage": {"_count": 1, "photograph": {"_count": 1}}, "soakingwet": {"_count": 1, "and": {"_count": 1}}, "torchlit": {"_count": 1, "stone": {"_count": 1}}, "wellknown": {"_count": 2, "broomstick": {"_count": 1}, "Dark": {"_count": 1}}, "balustrade": {"_count": 1, "sat": {"_count": 1}}, "brightsilver": {"_count": 1, "longhaired": {"_count": 1}}, "louder": {"_count": 1, "voice": {"_count": 1}}, "bribe": {"_count": 1, "from": {"_count": 1}}, "petty": {"_count": 1, "criminal": {"_count": 1}}, "Revulsion": {"_count": 1, "Jinx": {"_count": 1}}, "guy": {"_count": 1, "rope": {"_count": 1}}, "skyward": {"_count": 1, "flourish": {"_count": 1}}, "weakened": {"_count": 1, "condition": {"_count": 1}}, "bunk": {"_count": 2, "bed": {"_count": 1}, "replied": {"_count": 1}}, "billycan": {"_count": 1, "": {"_count": 1}}, "trussedup": {"_count": 1, "Father": {"_count": 1}}, "workshop": {"_count": 1, "wood": {"_count": 1}}, "crow": {"_count": 1, "of": {"_count": 1}}, "windowsill": {"_count": 1, "and": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "bacon": {"_count": 1, "sandwich": {"_count": 1}}, "descending": {"_count": 1, "mist": {"_count": 1}}, "nightmarish": {"_count": 1, "experience": {"_count": 1}}, "founders": {"_count": 1, "object": {"_count": 1}}, "riverbank": {"_count": 1, "in": {"_count": 1}}, "roundbellied": {"_count": 1, "cheerfulfaced": {"_count": 1}}, "necessary": {"_count": 1, "precaution": {"_count": 1}}, "return": {"_count": 1, "visit": {"_count": 1}}, "shortlived": {"_count": 1, "firework": {"_count": 1}}, "corrosive": {"_count": 1, "hatred": {"_count": 1}}, "stomachache": {"_count": 1, "but": {"_count": 1}}, "mountainside": {"_count": 1, "where": {"_count": 1}}, "Scottish": {"_count": 1, "loch": {"_count": 1}}, "supermarket": {"_count": 1, "under": {"_count": 1}}, "stomach": {"_count": 1, "full": {"_count": 1}}, "community": {"_count": 1, "": {"_count": 1}}, "friendship": {"_count": 1, "with": {"_count": 1}}, "balding": {"_count": 1, "middleaged": {"_count": 1}}, "pantomime": {"_count": 1, "horse": {"_count": 1}}, "Fidelius": {"_count": 1, "Charm": {"_count": 1}}, "war": {"_count": 2, "memorial": {"_count": 1}, "going": {"_count": 1}}, "windblown": {"_count": 1, "Christmas": {"_count": 1}}, "carol": {"_count": 1, "start": {"_count": 1}}, "bonnet": {"_count": 1, "he": {"_count": 1}}, "cracker": {"_count": 1, "of": {"_count": 1}}, "handknitted": {"_count": 1, "sweater": {"_count": 1}}, "kissing": {"_count": 1, "gate": {"_count": 1}}, "quotation": {"_count": 1, "Where": {"_count": 1}}, "bond": {"_count": 1, "that": {"_count": 1}}, "crumbling": {"_count": 1, "mossy": {"_count": 1}}, "surname": {"_count": 1, "that": {"_count": 1}}, "grief": {"_count": 1, "that": {"_count": 1}}, "wreath": {"_count": 2, "of": {"_count": 2}}, "cottage": {"_count": 2, "just": {"_count": 1}, "a": {"_count": 1}}, "bowfronted": {"_count": 1, "chest": {"_count": 1}}, "lowceilinged": {"_count": 1, "bedroom": {"_count": 1}}, "pencillike": {"_count": 1, "something": {"_count": 1}}, "marionette": {"_count": 1, "whose": {"_count": 1}}, "Blasting": {"_count": 1, "Curse": {"_count": 1}}, "valley": {"_count": 1, "blanketed": {"_count": 1}}, "pristine": {"_count": 1, "copy": {"_count": 1}}, "Grand": {"_count": 1, "Tour": {"_count": 1}}, "backfiring": {"_count": 1, "charm": {"_count": 1}}, "generation": {"_count": 1, "later": {"_count": 1}}, "charming": {"_count": 1, "boy": {"_count": 1}}, "jumper": {"_count": 1, "and": {"_count": 1}}, "jar": {"_count": 1, "": {"_count": 1}}, "depth": {"_count": 1, "of": {"_count": 1}}, "lure": {"_count": 2, "a": {"_count": 1}, "for": {"_count": 1}}, "panting": {"_count": 1, "voice": {"_count": 1}}, "flattish": {"_count": 1, "rock": {"_count": 1}}, "sycamore": {"_count": 1, "tree": {"_count": 1}}, "trapped": {"_count": 1, "cockroach": {"_count": 1}}, "sleepwalker": {"_count": 1, "toward": {"_count": 1}}, "malediction": {"_count": 1, "and": {"_count": 1}}, "gripping": {"_count": 1, "story": {"_count": 1}}, "buckle": {"_count": 1, "on": {"_count": 1}}, "backup": {"_count": 1, "": {"_count": 1}}, "Taboo": {"_count": 1, "on": {"_count": 1}}, "lynx": {"_count": 1, "we": {"_count": 1}}, "doe": {"_count": 3, "": {"_count": 1}, "Patronus": {"_count": 1}, "said": {"_count": 1}}, "slap": {"_count": 1, "in": {"_count": 1}}, "frosted": {"_count": 1, "web": {"_count": 1}}, "chess": {"_count": 1, "rook": {"_count": 1}}, "Snargaluff": {"_count": 1, "and": {"_count": 1}}, "knocker": {"_count": 1, "shaped": {"_count": 1}}, "workbench": {"_count": 1, "and": {"_count": 1}}, "description": {"_count": 1, "in": {"_count": 1}}, "shy": {"_count": 1, "and": {"_count": 1}}, "delightful": {"_count": 1, "young": {"_count": 1}}, "billywig": {"_count": 1, "propeller": {"_count": 1}}, "river": {"_count": 1, "too": {"_count": 1}}, "bridge": {"_count": 1, "appear": {"_count": 1}}, "fairy": {"_count": 2, "tale": {"_count": 2}}, "combative": {"_count": 1, "man": {"_count": 1}}, "quarrel": {"_count": 1, "": {"_count": 1}}, "packed": {"_count": 1, "table": {"_count": 1}}, "triangle": {"_count": 1, "to": {"_count": 1}}, "childrens": {"_count": 1, "tale": {"_count": 1}}, "Bedazzling": {"_count": 1, "Hex": {"_count": 1}}, "morality": {"_count": 1, "tale": {"_count": 1}}, "Resurrection": {"_count": 1, "Stone": {"_count": 1}}, "Cloak": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "Hallow": {"_count": 1, "and": {"_count": 1}}, "Quest": {"_count": 1, "": {"_count": 1}}, "dreary": {"_count": 1, "shower": {"_count": 1}}, "flame": {"_count": 1, "had": {"_count": 1}}, "vaguely": {"_count": 1, "interesting": {"_count": 1}}, "Wizarding": {"_count": 1, "village": {"_count": 1}}, "gas": {"_count": 1, "leak": {"_count": 1}}, "recreational": {"_count": 1, "sport": {"_count": 1}}, "\u2018Support": {"_count": 1, "Harry": {"_count": 1}}, "sixteenfoothigh": {"_count": 1, "half": {"_count": 1}}, "runaway": {"_count": 1, "goblin": {"_count": 1}}, "Dudley": {"_count": 1, "in": {"_count": 1}}, "supreme": {"_count": 1, "effort": {"_count": 1}}, "hell": {"_count": 1, "of": {"_count": 1}}, "base": {"_count": 1, "": {"_count": 1}}, "frightening": {"_count": 1, "face": {"_count": 1}}, "clanging": {"_count": 1, "echoing": {"_count": 1}}, "dank": {"_count": 1, "and": {"_count": 1}}, "Deluminator": {"_count": 1, "and": {"_count": 1}}, "likely": {"_count": 1, "story": {"_count": 1}}, "passable": {"_count": 1, "imitation": {"_count": 1}}, "spade": {"_count": 1, "": {"_count": 1}}, "woolen": {"_count": 1, "hat": {"_count": 1}}, "borrowed": {"_count": 1, "dressing": {"_count": 1}}, "dragonfly": {"_count": 1, "over": {"_count": 1}}, "goblins": {"_count": 1, "help": {"_count": 1}}, "calm": {"_count": 1, "he": {"_count": 1}}, "mutual": {"_count": 1, "quest": {"_count": 1}}, "mournful": {"_count": 1, "sound": {"_count": 1}}, "desirable": {"_count": 1, "object": {"_count": 1}}, "cliff": {"_count": 2, "overlooking": {"_count": 1}, "and": {"_count": 1}}, "tomb": {"_count": 1, "at": {"_count": 1}}, "masterpiece": {"_count": 1, "of": {"_count": 1}}, "swap": {"_count": 1, "": {"_count": 1}}, "hippos": {"_count": 1, "Daddy": {"_count": 1}}, "waltz": {"_count": 1, "nothing": {"_count": 1}}, "Snorkack": {"_count": 1, "horn": {"_count": 1}}, "worn": {"_count": 1, "velvet": {"_count": 1}}, "tiara": {"_count": 2, "piped": {"_count": 1}, "": {"_count": 1}}, "belief": {"_count": 1, "among": {"_count": 1}}, "determination": {"_count": 1, "almost": {"_count": 1}}, "weathered": {"_count": 1, "look": {"_count": 1}}, "shiver": {"_count": 1, "of": {"_count": 1}}, "muttered": {"_count": 1, "conversation": {"_count": 1}}, "fictional": {"_count": 1, "foreigner": {"_count": 1}}, "knifesharp": {"_count": 1, "memory": {"_count": 1}}, "trove": {"_count": 1, "of": {"_count": 1}}, "hairpin": {"_count": 2, "bend": {"_count": 1}, "swerve": {"_count": 1}}, "waterfall": {"_count": 1, "pounding": {"_count": 1}}, "cavelike": {"_count": 1, "opening": {"_count": 1}}, "jeweled": {"_count": 1, "goblet": {"_count": 1}}, "threeway": {"_count": 1, "spotlight": {"_count": 1}}, "rising": {"_count": 2, "tide": {"_count": 1}, "sense": {"_count": 1}}, "gush": {"_count": 1, "of": {"_count": 1}}, "grayandgreen": {"_count": 1, "map": {"_count": 1}}, "freezing": {"_count": 1, "green": {"_count": 1}}, "semicircle": {"_count": 1, "of": {"_count": 1}}, "ssmall": {"_count": 1, "golden": {"_count": 1}}, "strangers": {"_count": 1, "He": {"_count": 1}}, "desperately": {"_count": 1, "weak": {"_count": 1}}, "denser": {"_count": 1, "darkness": {"_count": 1}}, "grinding": {"_count": 1, "of": {"_count": 1}}, "hood": {"_count": 1, "": {"_count": 1}}, "wobblelegged": {"_count": 1, "chair": {"_count": 1}}, "thumb": {"_count": 1, "at": {"_count": 1}}, "comedown": {"_count": 1, "for": {"_count": 1}}, "positively": {"_count": 1, "dangerous": {"_count": 1}}, "backseat": {"_count": 1, "then": {"_count": 1}}, "teenager": {"_count": 1, "wiry": {"_count": 1}}, "following": {"_count": 1, "": {"_count": 1}}, "track": {"_count": 1, "record": {"_count": 1}}, "shake": {"_count": 1, "of": {"_count": 1}}, "curfew": {"_count": 1, "and": {"_count": 1}}, "Caterwauling": {"_count": 1, "Charm": {"_count": 1}}, "firstyear": {"_count": 1, "theyd": {"_count": 1}}, "balcony": {"_count": 1, "that": {"_count": 1}}, "hideout": {"_count": 1, "I": {"_count": 1}}, "ruined": {"_count": 1, "stone": {"_count": 1}}, "disinterred": {"_count": 1, "golden": {"_count": 1}}, "railway": {"_count": 1, "station": {"_count": 1}}, "diadem": {"_count": 1, "": {"_count": 1}}, "rap": {"_count": 1, "on": {"_count": 1}}, "genteel": {"_count": 1, "tap": {"_count": 1}}, "lavatory": {"_count": 1, "seat": {"_count": 1}}, "shattering": {"_count": 1, "of": {"_count": 1}}, "wrath": {"_count": 1, "that": {"_count": 1}}, "smashed": {"_count": 2, "window": {"_count": 2}}, "tingle": {"_count": 1, "of": {"_count": 1}}, "todo": {"_count": 1, "": {"_count": 1}}, "wildly": {"_count": 1, "transparent": {"_count": 1}}, "Ministryloving": {"_count": 1, "familydisowning": {"_count": 1}}, "strangling": {"_count": 1, "hug": {"_count": 1}}, "clipped": {"_count": 1, "voice": {"_count": 1}}, "hottempered": {"_count": 1, "man": {"_count": 1}}, "cursory": {"_count": 1, "and": {"_count": 1}}, "cathedral": {"_count": 1, "with": {"_count": 1}}, "gormless": {"_count": 1, "grin": {"_count": 1}}, "diedum": {"_count": 3, "": {"_count": 3}}, "whiplike": {"_count": 1, "movement": {"_count": 1}}, "flaming": {"_count": 2, "raptor": {"_count": 1}, "blur": {"_count": 1}}, "limb": {"_count": 1, "or": {"_count": 1}}, "fragile": {"_count": 2, "tower": {"_count": 1}, "and": {"_count": 1}}, "sparkling": {"_count": 1, "necklace": {"_count": 1}}, "yawning": {"_count": 1, "serpent": {"_count": 1}}, "rectangular": {"_count": 1, "patch": {"_count": 1}}, "bulllike": {"_count": 1, "roar": {"_count": 1}}, "desolate": {"_count": 1, "but": {"_count": 1}}, "service": {"_count": 1, "I": {"_count": 1}}, "starry": {"_count": 1, "transparent": {"_count": 1}}, "chute": {"_count": 1, "and": {"_count": 1}}, "sprinting": {"_count": 1, "Professor": {"_count": 1}}, "masked": {"_count": 2, "Death": {"_count": 2}}, "BodyBind": {"_count": 1, "Curse": {"_count": 1}}, "movement": {"_count": 1, "like": {"_count": 1}}, "monumental": {"_count": 1, "foot": {"_count": 1}}, "boar": {"_count": 1, "and": {"_count": 1}}, "wavering": {"_count": 1, "light": {"_count": 1}}, "gust": {"_count": 1, "of": {"_count": 1}}, "spike": {"_count": 1, "driven": {"_count": 1}}, "deathblow": {"_count": 1, "away": {"_count": 1}}, "blessed": {"_count": 1, "relief": {"_count": 1}}, "nearly": {"_count": 1, "deserted": {"_count": 1}}, "sunlit": {"_count": 1, "river": {"_count": 1}}, "Her": {"_count": 1, "pale": {"_count": 1}}, "freaks": {"_count": 1, "school": {"_count": 1}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "hilltop": {"_count": 1, "forlorn": {"_count": 1}}, "braver": {"_count": 1, "man": {"_count": 1}}, "weather": {"_count": 1, "forecast": {"_count": 1}}, "parasitic": {"_count": 1, "growth": {"_count": 1}}, "calamity": {"_count": 1, "but": {"_count": 1}}, "firemans": {"_count": 1, "lift": {"_count": 1}}, "pitiful": {"_count": 1, "noise": {"_count": 1}}, "hall": {"_count": 1, "larger": {"_count": 1}}, "truth": {"_count": 1, "he": {"_count": 1}}, "shared": {"_count": 1, "obsession": {"_count": 1}}, "damaged": {"_count": 1, "sister": {"_count": 1}}, "wayward": {"_count": 1, "brother": {"_count": 1}}, "worthy": {"_count": 1, "goal": {"_count": 1}}, "lover": {"_count": 1, "": {"_count": 1}}, "helpful": {"_count": 1, "hand": {"_count": 1}}, "freshening": {"_count": 1, "of": {"_count": 1}}, "trigger": {"_count": 1, "the": {"_count": 1}}, "misshapen": {"_count": 1, "bird": {"_count": 1}}, "trumpet": {"_count": 1, "call": {"_count": 1}}, "mundane": {"_count": 1, "finality": {"_count": 1}}, "Blibbering": {"_count": 1, "Humdinger": {"_count": 1}}, "victory": {"_count": 1, "song": {"_count": 1}}, "physical": {"_count": 1, "wound": {"_count": 1}}, "longing": {"_count": 1, "to": {"_count": 1}}, "reverence": {"_count": 1, "that": {"_count": 1}}, "Supersensory": {"_count": 1, "Charm": {"_count": 1}}}, "firm": {"_count": 20, "called": {"_count": 1, "Grunnings": {"_count": 1}}, "grip": {"_count": 6, "on": {"_count": 5}, "": {"_count": 1}}, "hold": {"_count": 1, "on": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "true": {"_count": 1}, "purposeful": {"_count": 1}}, "behind": {"_count": 1, "Dumbledore": {"_count": 1}}, "grasp": {"_count": 1, "on": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "ground": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "foundation": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "sources": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "this": {"_count": 1}}}, "called": {"_count": 378, "Grunnings": {"_count": 1, "which": {"_count": 1}}, "Dudley": {"_count": 1, "and": {"_count": 1}}, "Potter": {"_count": 3, "who": {"_count": 1}, "": {"_count": 1}, "have": {"_count": 1}}, "Harry": {"_count": 12, "": {"_count": 4}, "Potter": {"_count": 5}, "thumping": {"_count": 1}, "said": {"_count": 1}, "desperately": {"_count": 1}}, "a": {"_count": 14, "Muggle": {"_count": 1}, "telephone": {"_count": 1}, "familiar": {"_count": 1}, "meeting": {"_count": 1}, "TimeTurner": {"_count": 1}, "halt": {"_count": 2}, "cheery": {"_count": 1}, "Pensieve": {"_count": 1}, "tall": {"_count": 1}, "gimlet": {"_count": 1}, "hearing": {"_count": 1}, "voice": {"_count": 1}, "girl": {"_count": 1}}, "boaters": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "its": {"_count": 1}, "I": {"_count": 1}}, "Hagrid": {"_count": 3, "came": {"_count": 1}, "coming": {"_count": 1}, "hoarsely": {"_count": 1}}, "it": {"_count": 4, "gave": {"_count": 1}, "the": {"_count": 1}, "had": {"_count": 1}, "my": {"_count": 1}}, "to": {"_count": 17, "Hagrid": {"_count": 1}, "the": {"_count": 8}, "Riddle": {"_count": 1}, "Ron": {"_count": 3}, "him": {"_count": 1}, "her": {"_count": 2}, "Coote": {"_count": 1}}, "Flourish": {"_count": 1, "and": {"_count": 1}}, "after": {"_count": 13, "him": {"_count": 6}, "them": {"_count": 2}, "the": {"_count": 1}, "her": {"_count": 4}}, "over": {"_count": 5, "his": {"_count": 2}, "the": {"_count": 1}, "pointing": {"_count": 1}, "to": {"_count": 1}}, "pointing": {"_count": 1, "to": {"_count": 1}}, "Gryffindor": {"_count": 1, "Hufflepuff": {"_count": 1}}, "he": {"_count": 1, "fell": {"_count": 1}}, "and": {"_count": 2, "got": {"_count": 1}, "as": {"_count": 1}}, "Mrs": {"_count": 6, "Norris": {"_count": 1}, "Weasley": {"_count": 5}}, "Professor": {"_count": 3, "Sprout": {"_count": 2}, "McGonagall": {"_count": 1}}, "Quidditch": {"_count": 2, "Through": {"_count": 1}, "Teams": {"_count": 1}}, "Madam": {"_count": 2, "Hooch": {"_count": 1}, "Pomfrey": {"_count": 1}}, "Come": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "Ill": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 15}, "?": {"_count": 4}, "!": {"_count": 1}}, "Chasers": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 14, "Quaffle": {"_count": 1}, "Keeper": {"_count": 1}, "Patronus": {"_count": 1}, "condemned": {"_count": 1}, "Imperius": {"_count": 1}, "elf": {"_count": 1}, "Sloth": {"_count": 1}, "Slug": {"_count": 1}, "official": {"_count": 1}, "Half": {"_count": 1}, "most": {"_count": 1}, "tuftyhaired": {"_count": 1}, "locket": {"_count": 1}, "snake": {"_count": 1}}, "Nicolas": {"_count": 1, "Flamel": {"_count": 1}}, "Gred": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 4, "more": {"_count": 1}, "timeout": {"_count": 1}, "their": {"_count": 1}, "quiet": {"_count": 1}}, "that": {"_count": 1, "sir": {"_count": 1}}, "Who": {"_count": 1, "is": {"_count": 1}}, "him": {"_count": 6, "the": {"_count": 1}, "Prongs": {"_count": 1}, "back": {"_count": 2}, "brave": {"_count": 1}, "a": {"_count": 1}}, "them": {"_count": 4, "one": {"_count": 1}, "back": {"_count": 1}, "horses": {"_count": 1}, "all": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "thats": {"_count": 1, "a": {"_count": 1}}, "not": {"_count": 1, "taking": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "Bye": {"_count": 1, "Harry": {"_count": 1}}, "Muggles": {"_count": 1, "not": {"_count": 1}}, "Perkins": {"_count": 1, "in": {"_count": 1}}, "Prefects": {"_count": 1, "Who": {"_count": 1}}, "forward": {"_count": 3, "to": {"_count": 1}, "class": {"_count": 1}, "in": {"_count": 1}}, "back": {"_count": 7, "to": {"_count": 2}, "happily": {"_count": 1}, "": {"_count": 2}, "panting": {"_count": 1}, "in": {"_count": 1}}, "beaming": {"_count": 1, "around": {"_count": 1}}, "Bludgers": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "incredulously": {"_count": 1}}, "Fred": {"_count": 2, "as": {"_count": 1}, "indicating": {"_count": 1}}, "Hermione": {"_count": 4, "something": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 1}}, "her": {"_count": 6, "\u2018Mudblood": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}, "an": {"_count": 1}, "\u2018gaga": {"_count": 1}}, "Moste": {"_count": 1, "Potente": {"_count": 1}}, "through": {"_count": 5, "the": {"_count": 5}}, "Gather": {"_count": 1, "round": {"_count": 1}}, "Lockhart": {"_count": 1, "back": {"_count": 1}}, "Slytherin": {"_count": 1, "himself": {"_count": 1}}, "Flying": {"_count": 1, "with": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "today": {"_count": 1, "for": {"_count": 1}}, "Ancient": {"_count": 1, "Runes": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Mrs": {"_count": 1}}, "desperately": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "said": {"_count": 1, "Riddle": {"_count": 1}}, "Tom": {"_count": 2, "Riddle": {"_count": 2}}, "Fawkes": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 3}}, "Stan": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 4, "the": {"_count": 4}}, "from": {"_count": 2, "behind": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 8, "the": {"_count": 3}, "they": {"_count": 1}, "Katie": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 2}}, "sir": {"_count": 1, "Ill": {"_count": 1}}, "You": {"_count": 2, "should": {"_count": 1}, "Charmed": {"_count": 1}}, "off": {"_count": 2, "last": {"_count": 1}, "for": {"_count": 1}}, "grumpily": {"_count": 1, "after": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 3, "something": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "hoarsely": {"_count": 1, "after": {"_count": 1}}, "Davey": {"_count": 1, "Gudgeon": {"_count": 1}}, "interesting": {"_count": 1, "creatures": {"_count": 1}}, "terrifying": {"_count": 1, "monsters": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "service": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "Cho": {"_count": 1, "": {"_count": 1}}, "Frank": {"_count": 1, "Bryce": {"_count": 1}}, "Wormtail": {"_count": 1, "spoke": {"_count": 1}}, "Peter": {"_count": 1, "nicknamed": {"_count": 1}}, "dementors": {"_count": 1, "sightless": {"_count": 1}}, "Buckbeak": {"_count": 1, "and": {"_count": 1}}, "rabbit": {"_count": 1, "food": {"_count": 1}}, "Mr": {"_count": 2, "Roberts": {"_count": 1}, "Weasley": {"_count": 1}}, "happily": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}}, "out": {"_count": 11, "the": {"_count": 1}, "from": {"_count": 1}, "of": {"_count": 2}, "Abercrombie": {"_count": 1}, "to": {"_count": 4}, "that": {"_count": 1}, "Whos": {"_count": 1}}, "themselves": {"_count": 2, "said": {"_count": 1}, "Dumbledore": {"_count": 1}}, "me": {"_count": 5, "\u2018a": {"_count": 1}, "\u2018sir": {"_count": 1}, "\u2018Potter": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}}, "those": {"_count": 1, "whatdyoucallems": {"_count": 1}}, "heartily": {"_count": 1, "as": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "is": {"_count": 1, "Cedric": {"_count": 1}}, "merrily": {"_count": 1, "to": {"_count": 1}}, "irritably": {"_count": 1, "after": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 3}}, "Champions": {"_count": 1, "over": {"_count": 1}}, "miserably": {"_count": 1, "from": {"_count": 1}}, "earnestly": {"_count": 1, "over": {"_count": 1}}, "The": {"_count": 2, "Dark": {"_count": 1}, "Quibbler": {"_count": 1}}, "Ogg": {"_count": 1, "": {"_count": 1}}, "stuff": {"_count": 1, "like": {"_count": 1}}, "this": {"_count": 1, "boy": {"_count": 1}}, "Dobby": {"_count": 1, "had": {"_count": 1}}, "Winky": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "loudly": {"_count": 1, "after": {"_count": 1}}, "you": {"_count": 4, "\u2018Nymphadora": {"_count": 1}, "know": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}}, "Tonks": {"_count": 2, "who": {"_count": 1}, "and": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Hedwig": {"_count": 1, "down": {"_count": 1}}, "Luna": {"_count": 1, "watched": {"_count": 1}}, "commandingly": {"_count": 1, "along": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "her": {"_count": 1}}, "Angelina": {"_count": 2, "as": {"_count": 1}, "Fred": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "Anthony": {"_count": 1, "Goldstein": {"_count": 1}}, "fun": {"_count": 1, "the": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "upon": {"_count": 2, "to": {"_count": 1}, "Morfin": {"_count": 1}}, "Everard": {"_count": 1, "had": {"_count": 1}}, "Phineas": {"_count": 2, "eyeing": {"_count": 1}, "had": {"_count": 1}}, "Purge": {"_count": 1, "and": {"_count": 1}}, "throwing": {"_count": 1, "the": {"_count": 1}}, "stitches": {"_count": 1, "Molly": {"_count": 1}}, "Neville": {"_count": 1, "Neville": {"_count": 1}}, "fits": {"_count": 1, "of": {"_count": 1}}, "Theodore": {"_count": 1, "Nott": {"_count": 1}}, "Dawlish": {"_count": 2, "blinked": {"_count": 1}, "was": {"_count": 1}}, "yeh": {"_count": 1, "Hermy": {"_count": 1}}, "Parkinson": {"_count": 1, "Pansy": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "Magorian": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "Voldemort": {"_count": 1, "his": {"_count": 1}}, "Fudge": {"_count": 1, "in": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "Horace": {"_count": 1, "as": {"_count": 1}}, "softly": {"_count": 1, "Arthur": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "Belby": {"_count": 1, "from": {"_count": 1}}, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "Slughorn": {"_count": 2, "": {"_count": 1}, "genially": {"_count": 1}}, "Gaunt": {"_count": 1, "and": {"_count": 1}}, "Demelza": {"_count": 1, "Robins": {"_count": 1}}, "Hogwarts": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Lavender": {"_count": 1, "": {"_count": 1}}, "unless": {"_count": 1, "our": {"_count": 1}}, "A": {"_count": 1, "Cauldron": {"_count": 1}}, "Two": {"_count": 1, "minutes": {"_count": 1}}, "Twycross": {"_count": 1, "and": {"_count": 1}}, "Losers": {"_count": 1, "Lurgy": {"_count": 1}}, "Dumbledore": {"_count": 1, "but": {"_count": 1}}, "Octavius": {"_count": 1, "Pepper": {"_count": 1}}, "Odo": {"_count": 1, "": {"_count": 1}}, "Tobias": {"_count": 1, "Snape": {"_count": 1}}, "\u2018Prince": {"_count": 1, "": {"_count": 1}}, "unhealthy": {"_count": 2, "even": {"_count": 2}}, "holding": {"_count": 1, "on": {"_count": 1}}, "Wendell": {"_count": 1, "and": {"_count": 1}}, "Hes": {"_count": 1, "gone": {"_count": 1}}, "half": {"_count": 1, "sobbing": {"_count": 1}}, "Kreacherl": {"_count": 1, "There": {"_count": 1}}, "Muggleborn": {"_count": 1, "is": {"_count": 1}}, "another": {"_count": 2, "wizard": {"_count": 1}, "Death": {"_count": 1}}, "sycophantically": {"_count": 1, "Morning": {"_count": 1}}, "Umbridge": {"_count": 1, "": {"_count": 1}}, "Bathilda": {"_count": 1, "from": {"_count": 1}}, "us": {"_count": 1, "here": {"_count": 1}}, "All": {"_count": 1, "right": {"_count": 1}}, "something": {"_count": 1, "different": {"_count": 1}}, "Scabior": {"_count": 1, "": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "here": {"_count": 1, "for": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "insults": {"_count": 1, "at": {"_count": 1}}}, "Grunnings": {"_count": 3, "which": {"_count": 1, "made": {"_count": 1}}, "parking": {"_count": 1, "lot": {"_count": 1}}, "his": {"_count": 1, "drillmaking": {"_count": 1}}}, "which": {"_count": 1430, "made": {"_count": 14, "drills": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 3}, "Professor": {"_count": 1}, "Ginny": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 2}, "him": {"_count": 1}, "a": {"_count": 1}}, "came": {"_count": 2, "in": {"_count": 2}}, "he": {"_count": 143, "had": {"_count": 39}, "carried": {"_count": 1}, "opened": {"_count": 1}, "thought": {"_count": 1}, "was": {"_count": 16}, "buckled": {"_count": 1}, "changed": {"_count": 1}, "must": {"_count": 1}, "heaved": {"_count": 1}, "quickly": {"_count": 1}, "smoothed": {"_count": 1}, "liked": {"_count": 1}, "could": {"_count": 6}, "found": {"_count": 1}, "dodged": {"_count": 1}, "suspected": {"_count": 1}, "struggled": {"_count": 1}, "needed": {"_count": 1}, "seemed": {"_count": 1}, "pointed": {"_count": 1}, "thrust": {"_count": 1}, "belonged": {"_count": 1}, "supposed": {"_count": 1}, "paced": {"_count": 1}, "really": {"_count": 1}, "no": {"_count": 1}, "stared": {"_count": 1}, "will": {"_count": 1}, "slammed": {"_count": 1}, "rounded": {"_count": 1}, "wanted": {"_count": 1}, "would": {"_count": 3}, "feeds": {"_count": 1}, "did": {"_count": 1}, "placed": {"_count": 2}, "realized": {"_count": 1}, "might": {"_count": 2}, "saw": {"_count": 1}, "slung": {"_count": 1}, "Hermione": {"_count": 1}, "dived": {"_count": 1}, "knows": {"_count": 1}, "despises": {"_count": 1}, "has": {"_count": 2}, "recognized": {"_count": 1}, "gave": {"_count": 1}, "and": {"_count": 4}, "somehow": {"_count": 1}, "knew": {"_count": 1}, "returned": {"_count": 1}, "does": {"_count": 1}, "now": {"_count": 3}, "hid": {"_count": 1}, "should": {"_count": 1}, "gives": {"_count": 1}, "looked": {"_count": 1}, "worked": {"_count": 1}, "handed": {"_count": 2}, "left": {"_count": 1}, "felt": {"_count": 1}, "became": {"_count": 1}, "unrolled": {"_count": 1}, "kept": {"_count": 1}, "gazed": {"_count": 1}, "missed": {"_count": 1}, "prodded": {"_count": 1}, "clung": {"_count": 1}, "set": {"_count": 1}, "said": {"_count": 1}, "stood": {"_count": 1}, "took": {"_count": 1}, "lay": {"_count": 2}, "claimed": {"_count": 1}}, "were": {"_count": 54, "both": {"_count": 2}, "the": {"_count": 1}, "fun": {"_count": 1}, "all": {"_count": 3}, "slipping": {"_count": 1}, "dusty": {"_count": 1}, "drawn": {"_count": 1}, "now": {"_count": 2}, "hanging": {"_count": 1}, "gripping": {"_count": 1}, "floating": {"_count": 1}, "swimming": {"_count": 1}, "so": {"_count": 2}, "curling": {"_count": 1}, "on": {"_count": 1}, "squealing": {"_count": 1}, "to": {"_count": 1}, "very": {"_count": 2}, "like": {"_count": 1}, "swirling": {"_count": 1}, "buzzing": {"_count": 1}, "tottering": {"_count": 1}, "covered": {"_count": 2}, "already": {"_count": 1}, "often": {"_count": 1}, "presumably": {"_count": 1}, "trembling": {"_count": 1}, "always": {"_count": 1}, "ranged": {"_count": 1}, "also": {"_count": 1}, "heavily": {"_count": 1}, "almost": {"_count": 1}, "in": {"_count": 1}, "still": {"_count": 1}, "packed": {"_count": 1}, "nearest": {"_count": 1}, "tiny": {"_count": 1}, "being": {"_count": 1}, "whipped": {"_count": 1}, "Dogbreath": {"_count": 1}, "embroidered": {"_count": 1}, "slowly": {"_count": 1}, "made": {"_count": 1}, "cars": {"_count": 1}, "hung": {"_count": 1}, "echoed": {"_count": 1}, "crumbling": {"_count": 1}}, "was": {"_count": 220, "still": {"_count": 8}, "almost": {"_count": 1}, "difficult": {"_count": 1}, "written": {"_count": 2}, "up": {"_count": 1}, "made": {"_count": 2}, "dangling": {"_count": 2}, "fascinating": {"_count": 1}, "measuring": {"_count": 1}, "asleep": {"_count": 1}, "as": {"_count": 2}, "fastened": {"_count": 1}, "the": {"_count": 10}, "lucky": {"_count": 2}, "a": {"_count": 11}, "worse": {"_count": 1}, "confusing": {"_count": 1}, "very": {"_count": 2}, "to": {"_count": 1}, "wrapped": {"_count": 1}, "outofbounds": {"_count": 1}, "dappled": {"_count": 1}, "basking": {"_count": 1}, "parked": {"_count": 1}, "emblazoned": {"_count": 1}, "easily": {"_count": 2}, "lit": {"_count": 4}, "why": {"_count": 1}, "glittering": {"_count": 1}, "particularly": {"_count": 1}, "full": {"_count": 5}, "growing": {"_count": 2}, "halfempty": {"_count": 1}, "large": {"_count": 1}, "mounted": {"_count": 1}, "among": {"_count": 1}, "now": {"_count": 15}, "driven": {"_count": 1}, "black": {"_count": 1}, "tumultuous": {"_count": 1}, "attached": {"_count": 1}, "supposed": {"_count": 1}, "perhaps": {"_count": 1}, "smoking": {"_count": 1}, "completely": {"_count": 1}, "upside": {"_count": 1}, "so": {"_count": 4}, "being": {"_count": 2}, "an": {"_count": 2}, "open": {"_count": 1}, "propped": {"_count": 2}, "not": {"_count": 3}, "shaped": {"_count": 2}, "weatherbeaten": {"_count": 1}, "slightly": {"_count": 1}, "swelling": {"_count": 2}, "already": {"_count": 1}, "making": {"_count": 1}, "ended": {"_count": 1}, "bleeding": {"_count": 1}, "concealed": {"_count": 1}, "situated": {"_count": 3}, "packed": {"_count": 1}, "shivering": {"_count": 1}, "crowded": {"_count": 1}, "flooding": {"_count": 1}, "unsurprising": {"_count": 1}, "writhing": {"_count": 1}, "shooting": {"_count": 1}, "nearest": {"_count": 1}, "screaming": {"_count": 1}, "presumably": {"_count": 1}, "pitching": {"_count": 1}, "advancing": {"_count": 1}, "much": {"_count": 1}, "halftrue": {"_count": 1}, "nevertheless": {"_count": 1}, "carrying": {"_count": 1}, "continuing": {"_count": 1}, "gleaming": {"_count": 2}, "slipping": {"_count": 1}, "broken": {"_count": 2}, "usually": {"_count": 1}, "in": {"_count": 3}, "spinning": {"_count": 1}, "saying": {"_count": 1}, "lying": {"_count": 2}, "connected": {"_count": 1}, "putting": {"_count": 1}, "missing": {"_count": 2}, "hanging": {"_count": 2}, "called": {"_count": 1}, "just": {"_count": 2}, "due": {"_count": 2}, "searing": {"_count": 1}, "shining": {"_count": 1}, "apparently": {"_count": 1}, "perfectly": {"_count": 2}, "perched": {"_count": 1}, "ter": {"_count": 1}, "lined": {"_count": 1}, "right": {"_count": 1}, "precisely": {"_count": 1}, "also": {"_count": 1}, "becoming": {"_count": 1}, "until": {"_count": 1}, "currently": {"_count": 1}, "bearing": {"_count": 1}, "damp": {"_count": 1}, "carried": {"_count": 1}, "blown": {"_count": 1}, "sliding": {"_count": 1}, "how": {"_count": 1}, "surrounded": {"_count": 1}, "sticking": {"_count": 1}, "empty": {"_count": 1}, "proving": {"_count": 1}, "mercifully": {"_count": 1}, "foolish": {"_count": 1}, "taken": {"_count": 1}, "of": {"_count": 1}, "proved": {"_count": 1}, "scheduled": {"_count": 1}, "that": {"_count": 4}, "sad": {"_count": 1}, "set": {"_count": 1}, "even": {"_count": 1}, "more": {"_count": 1}, "patterned": {"_count": 1}, "heaped": {"_count": 1}, "studded": {"_count": 1}, "stretched": {"_count": 1}, "ajar": {"_count": 1}, "kept": {"_count": 1}, "examined": {"_count": 1}, "turning": {"_count": 1}, "long": {"_count": 1}, "ablaze": {"_count": 1}, "like": {"_count": 1}, "obscured": {"_count": 1}}, "lay": {"_count": 5, "silent": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 2}, "unread": {"_count": 1}}, "she": {"_count": 31, "left": {"_count": 1}, "gave": {"_count": 1}, "had": {"_count": 9}, "ate": {"_count": 1}, "was": {"_count": 6}, "lit": {"_count": 1}, "stretched": {"_count": 1}, "started": {"_count": 1}, "wore": {"_count": 1}, "seemed": {"_count": 1}, "blew": {"_count": 1}, "would": {"_count": 1}, "set": {"_count": 1}, "pushed": {"_count": 1}, "handed": {"_count": 1}, "now": {"_count": 1}, "thumbed": {"_count": 1}, "opened": {"_count": 1}}, "looked": {"_count": 9, "quite": {"_count": 1}, "angry": {"_count": 1}, "slightly": {"_count": 1}, "something": {"_count": 1}, "both": {"_count": 1}, "as": {"_count": 1}, "much": {"_count": 1}, "out": {"_count": 1}, "eerie": {"_count": 1}}, "hed": {"_count": 1, "put": {"_count": 1}}, "had": {"_count": 61, "once": {"_count": 1}, "been": {"_count": 20}, "begun": {"_count": 1}, "dropped": {"_count": 1}, "an": {"_count": 1}, "expanded": {"_count": 1}, "a": {"_count": 4}, "just": {"_count": 3}, "fluttered": {"_count": 1}, "appeared": {"_count": 1}, "to": {"_count": 1}, "included": {"_count": 1}, "awoken": {"_count": 1}, "settled": {"_count": 1}, "previously": {"_count": 1}, "now": {"_count": 2}, "if": {"_count": 1}, "turned": {"_count": 3}, "decided": {"_count": 1}, "holes": {"_count": 1}, "looked": {"_count": 1}, "slithered": {"_count": 1}, "taken": {"_count": 1}, "achieved": {"_count": 1}, "superb": {"_count": 1}, "started": {"_count": 2}, "grown": {"_count": 1}, "the": {"_count": 1}, "fallen": {"_count": 1}, "split": {"_count": 1}, "inspired": {"_count": 1}, "curdled": {"_count": 1}, "passed": {"_count": 1}}, "everyone": {"_count": 2, "got": {"_count": 1}, "said": {"_count": 1}}, "sagged": {"_count": 1, "under": {"_count": 1}}, "groaned": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 14, "ask": {"_count": 1}, "drink": {"_count": 1}, "put": {"_count": 1}, "tempt": {"_count": 1}, "practice": {"_count": 2}, "enjoy": {"_count": 1}, "mention": {"_count": 1}, "attempt": {"_count": 1}, "grow": {"_count": 1}, "beat": {"_count": 1}, "work": {"_count": 1}, "be": {"_count": 1}, "talk": {"_count": 1}}, "clamped": {"_count": 1, "it": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "turned": {"_count": 6, "out": {"_count": 5}, "emerald": {"_count": 1}}, "might": {"_count": 4, "have": {"_count": 1}, "make": {"_count": 1}, "Harrys": {"_count": 1}, "give": {"_count": 1}}, "it": {"_count": 10, "stood": {"_count": 1}, "was": {"_count": 2}, "became": {"_count": 1}, "is": {"_count": 1}, "hit": {"_count": 1}, "lay": {"_count": 1}, "can": {"_count": 1}, "passes": {"_count": 1}, "had": {"_count": 1}}, "seemed": {"_count": 16, "to": {"_count": 12}, "very": {"_count": 1}, "not": {"_count": 1}, "only": {"_count": 1}, "deserted": {"_count": 1}}, "one": {"_count": 8, "shed": {"_count": 1}, "he": {"_count": 1}, "hes": {"_count": 1}, "was": {"_count": 2}, "it": {"_count": 1}, "I": {"_count": 1}, "youd": {"_count": 1}}, "fell": {"_count": 6, "right": {"_count": 1}, "past": {"_count": 1}, "back": {"_count": 2}, "as": {"_count": 1}, "at": {"_count": 1}}, "rose": {"_count": 4, "high": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 1}}, "kept": {"_count": 2, "talking": {"_count": 1}, "flashing": {"_count": 1}}, "also": {"_count": 2, "goes": {"_count": 1}, "began": {"_count": 1}}, "clanged": {"_count": 1, "loudly": {"_count": 1}}, "they": {"_count": 51, "knew": {"_count": 1}, "refused": {"_count": 1}, "slurped": {"_count": 1}, "did": {"_count": 2}, "were": {"_count": 11}, "could": {"_count": 5}, "handed": {"_count": 1}, "all": {"_count": 1}, "had": {"_count": 14}, "forced": {"_count": 1}, "sneaked": {"_count": 1}, "found": {"_count": 1}, "might": {"_count": 1}, "understand": {"_count": 1}, "will": {"_count": 1}, "stood": {"_count": 2}, "needed": {"_count": 2}, "finally": {"_count": 1}, "have": {"_count": 1}, "Disapparated": {"_count": 1}, "sat": {"_count": 1}}, "dragged": {"_count": 1, "along": {"_count": 1}}, "nice": {"_count": 1, "play": {"_count": 1}}, "could": {"_count": 5, "happen": {"_count": 1}, "have": {"_count": 1}, "only": {"_count": 1}, "be": {"_count": 1}, "barely": {"_count": 1}}, "went": {"_count": 2, "spinning": {"_count": 1}, "out": {"_count": 1}}, "Fred": {"_count": 6, "seized": {"_count": 1}, "and": {"_count": 4}, "George": {"_count": 1}}, "will": {"_count": 10, "make": {"_count": 1}, "work": {"_count": 1}, "take": {"_count": 1}, "start": {"_count": 1}, "ensure": {"_count": 1}, "be": {"_count": 2}, "undoubtedly": {"_count": 1}, "protect": {"_count": 1}, "hide": {"_count": 1}}, "drew": {"_count": 1, "gasps": {"_count": 1}}, "surely": {"_count": 1, "meant": {"_count": 1}}, "swung": {"_count": 5, "up": {"_count": 1}, "open": {"_count": 1}, "inward": {"_count": 1}, "backward": {"_count": 1}, "down": {"_count": 1}}, "is": {"_count": 19, "which": {"_count": 1}, "fatal": {"_count": 1}, "a": {"_count": 1}, "going": {"_count": 1}, "why": {"_count": 3}, "located": {"_count": 2}, "much": {"_count": 1}, "impersonal": {"_count": 1}, "to": {"_count": 3}, "what": {"_count": 1}, "unfixed": {"_count": 1}, "just": {"_count": 1}, "illegal": {"_count": 1}, "compulsory": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "means": {"_count": 13, "Ill": {"_count": 1}, "hes": {"_count": 1}, "that": {"_count": 4}, "were": {"_count": 1}, "youd": {"_count": 1}, "you": {"_count": 1}, "of": {"_count": 1}, "we": {"_count": 1}, "dead": {"_count": 1}, "youve": {"_count": 1}}, "case": {"_count": 6, "I": {"_count": 3}, "he": {"_count": 1}, "it": {"_count": 1}, "where": {"_count": 1}}, "gave": {"_count": 6, "Harry": {"_count": 2}, "a": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 60, "reminded": {"_count": 1}, "hastily": {"_count": 1}, "realized": {"_count": 1}, "decided": {"_count": 1}, "had": {"_count": 12}, "was": {"_count": 8}, "scribbled": {"_count": 1}, "shook": {"_count": 1}, "guessed": {"_count": 1}, "supposed": {"_count": 2}, "returned": {"_count": 1}, "thought": {"_count": 1}, "recognized": {"_count": 3}, "forced": {"_count": 1}, "stroked": {"_count": 1}, "now": {"_count": 2}, "Ron": {"_count": 1}, "and": {"_count": 2}, "flung": {"_count": 1}, "retrieved": {"_count": 1}, "could": {"_count": 1}, "watched": {"_count": 1}, "doubted": {"_count": 1}, "concentrating": {"_count": 1}, "stared": {"_count": 1}, "found": {"_count": 2}, "Hermione": {"_count": 1}, "glared": {"_count": 1}, "listened": {"_count": 1}, "ignored": {"_count": 1}, "stepped": {"_count": 1}, "knew": {"_count": 2}, "waited": {"_count": 1}, "spotted": {"_count": 1}, "placed": {"_count": 1}}, "began": {"_count": 7, "to": {"_count": 7}}, "took": {"_count": 4, "a": {"_count": 2}, "in": {"_count": 1}, "the": {"_count": 1}}, "wound": {"_count": 1, "its": {"_count": 1}}, "would": {"_count": 18, "have": {"_count": 2}, "be": {"_count": 3}, "include": {"_count": 1}, "finish": {"_count": 1}, "take": {"_count": 3}, "enable": {"_count": 1}, "return": {"_count": 1}, "bring": {"_count": 1}, "keep": {"_count": 1}, "mean": {"_count": 2}, "undoubtedly": {"_count": 1}, "give": {"_count": 1}}, "I": {"_count": 26, "shall": {"_count": 1}, "really": {"_count": 1}, "grew": {"_count": 1}, "think": {"_count": 3}, "doubt": {"_count": 1}, "bet": {"_count": 1}, "knew": {"_count": 2}, "hope": {"_count": 2}, "know": {"_count": 1}, "have": {"_count": 2}, "do": {"_count": 2}, "brought": {"_count": 1}, "admit": {"_count": 1}, "am": {"_count": 2}, "guessed": {"_count": 1}, "asked": {"_count": 1}, "had": {"_count": 3}}, "wasnt": {"_count": 1, "visible": {"_count": 1}}, "showed": {"_count": 2, "they": {"_count": 1}, "a": {"_count": 1}}, "always": {"_count": 1, "mirrored": {"_count": 1}}, "floated": {"_count": 3, "all": {"_count": 1}, "slimy": {"_count": 1}, "unsupported": {"_count": 1}}, "led": {"_count": 3, "to": {"_count": 3}}, "now": {"_count": 4, "had": {"_count": 1}, "seemed": {"_count": 1}, "lay": {"_count": 1}, "housed": {"_count": 1}}, "told": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "concealed": {"_count": 1, "the": {"_count": 1}}, "position": {"_count": 1, "he": {"_count": 1}}, "cleared": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "sprang": {"_count": 2, "back": {"_count": 1}, "open": {"_count": 1}}, "you": {"_count": 11, "speak": {"_count": 1}, "can": {"_count": 2}, "will": {"_count": 2}, "are": {"_count": 1}, "were": {"_count": 1}, "would": {"_count": 2}, "and": {"_count": 1}, "place": {"_count": 1}}, "the": {"_count": 43, "other": {"_count": 3}, "Heir": {"_count": 1}, "stones": {"_count": 1}, "Firebolt": {"_count": 1}, "ink": {"_count": 1}, "words": {"_count": 2}, "secret": {"_count": 1}, "Dursleys": {"_count": 1}, "many": {"_count": 1}, "enclosure": {"_count": 1}, "owl": {"_count": 1}, "dementors": {"_count": 1}, "Ministry": {"_count": 2}, "Death": {"_count": 3}, "reflections": {"_count": 1}, "vomiting": {"_count": 1}, "class": {"_count": 1}, "person": {"_count": 1}, "group": {"_count": 1}, "silver": {"_count": 1}, "sword": {"_count": 1}, "towering": {"_count": 1}, "Prince": {"_count": 1}, "picture": {"_count": 1}, "boat": {"_count": 1}, "distant": {"_count": 1}, "Order": {"_count": 1}, "corpsefigure": {"_count": 1}, "houseelf": {"_count": 1}, "fire": {"_count": 1}, "nights": {"_count": 1}, "scalp": {"_count": 1}, "subject": {"_count": 1}, "cup": {"_count": 1}, "Room": {"_count": 1}, "bust": {"_count": 1}, "old": {"_count": 1}}, "included": {"_count": 2, "a": {"_count": 1}, "at": {"_count": 1}}, "struck": {"_count": 1, "them": {"_count": 1}}, "stood": {"_count": 10, "brass": {"_count": 1}, "next": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 2}, "a": {"_count": 1}, "an": {"_count": 1}, "right": {"_count": 1}, "Harrys": {"_count": 1}, "nothing": {"_count": 1}}, "knocked": {"_count": 1, "him": {"_count": 1}}, "restored": {"_count": 1, "silence": {"_count": 1}}, "meant": {"_count": 11, "they": {"_count": 2}, "that": {"_count": 8}, "Cedric": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "Hermione": {"_count": 11, "was": {"_count": 2}, "beamed": {"_count": 1}, "and": {"_count": 2}, "made": {"_count": 1}, "had": {"_count": 5}}, "round": {"_count": 1, "greenish": {"_count": 1}}, "sounded": {"_count": 4, "quite": {"_count": 1}, "oddly": {"_count": 1}, "like": {"_count": 1}, "impressive": {"_count": 1}}, "splashed": {"_count": 1, "onto": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "glued": {"_count": 1, "his": {"_count": 1}}, "may": {"_count": 1, "reach": {"_count": 1}}, "twisted": {"_count": 2, "and": {"_count": 1}, "itself": {"_count": 1}}, "two": {"_count": 1, "entwined": {"_count": 1}}, "appeared": {"_count": 2, "to": {"_count": 2}}, "five": {"_count": 1, "of": {"_count": 1}}, "Tom": {"_count": 2, "unlocked": {"_count": 1}, "Riddle": {"_count": 1}}, "deadened": {"_count": 1, "the": {"_count": 1}}, "gradually": {"_count": 1, "darkened": {"_count": 1}}, "shouted": {"_count": 1, "out": {"_count": 1}}, "of": {"_count": 11, "you": {"_count": 1}, "the": {"_count": 2}, "us": {"_count": 3}, "course": {"_count": 2}, "them": {"_count": 3}}, "didnt": {"_count": 2, "seem": {"_count": 2}}, "Trevor": {"_count": 1, "gulped": {"_count": 1}}, "wiped": {"_count": 1, "the": {"_count": 1}}, "chased": {"_count": 1, "its": {"_count": 1}}, "slithered": {"_count": 1, "and": {"_count": 1}}, "flipped": {"_count": 1, "over": {"_count": 1}}, "after": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "sang": {"_count": 1, "shrilly": {"_count": 1}}, "hit": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "filled": {"_count": 1, "a": {"_count": 1}}, "Crookshanks": {"_count": 3, "stretched": {"_count": 1}, "was": {"_count": 1}, "mewing": {"_count": 1}}, "revolved": {"_count": 1, "for": {"_count": 1}}, "put": {"_count": 2, "an": {"_count": 1}, "Gryffindor": {"_count": 1}}, "closed": {"_count": 2, "behind": {"_count": 1}, "like": {"_count": 1}}, "in": {"_count": 7, "themselves": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 2}, "any": {"_count": 2}, "one": {"_count": 1}}, "as": {"_count": 4, "George": {"_count": 1}, "Dumbledore": {"_count": 1}, "you": {"_count": 1}, "recently": {"_count": 1}}, "abysmally": {"_count": 1, "foolish": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "lesson": {"_count": 1, "have": {"_count": 1}}, "a": {"_count": 17, "Gryffindor": {"_count": 1}, "small": {"_count": 2}, "sky": {"_count": 1}, "pair": {"_count": 1}, "bowtruckle": {"_count": 1}, "letter": {"_count": 1}, "man": {"_count": 1}, "hiccup": {"_count": 1}, "single": {"_count": 1}, "cluster": {"_count": 1}, "number": {"_count": 1}, "person": {"_count": 1}, "note": {"_count": 1}, "cauldron": {"_count": 1}, "most": {"_count": 1}, "group": {"_count": 1}}, "successfully": {"_count": 1, "confused": {"_count": 1}}, "stuck": {"_count": 1, "out": {"_count": 1}}, "nearly": {"_count": 1, "killed": {"_count": 1}}, "involved": {"_count": 1, "me": {"_count": 1}}, "face": {"_count": 1, "showed": {"_count": 1}}, "his": {"_count": 7, "snowy": {"_count": 1}, "Divination": {"_count": 1}, "mother": {"_count": 1}, "father": {"_count": 1}, "scar": {"_count": 1}, "wand": {"_count": 1}, "mouth": {"_count": 1}}, "ruffled": {"_count": 1, "his": {"_count": 1}}, "Mrs": {"_count": 8, "Weasleys": {"_count": 1}, "Weasley": {"_count": 6}, "Cole": {"_count": 1}}, "felt": {"_count": 6, "pleasantly": {"_count": 1}, "as": {"_count": 1}, "satisfying": {"_count": 1}, "like": {"_count": 1}, "unrecognizable": {"_count": 1}, "friendlier": {"_count": 1}}, "shot": {"_count": 3, "out": {"_count": 1}, "open": {"_count": 1}, "from": {"_count": 1}}, "hopped": {"_count": 1, "off": {"_count": 1}}, "ones": {"_count": 4, "the": {"_count": 1}, "that": {"_count": 1}, "they": {"_count": 1}, "to": {"_count": 1}}, "burst": {"_count": 5, "": {"_count": 1}, "into": {"_count": 1}, "open": {"_count": 3}}, "strolled": {"_count": 1, "across": {"_count": 1}}, "slowly": {"_count": 1, "filtered": {"_count": 1}}, "illuminated": {"_count": 2, "the": {"_count": 2}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Ron": {"_count": 5, "fidgeted": {"_count": 1}, "had": {"_count": 1}, "returned": {"_count": 1}, "thanks": {"_count": 1}, "grabbed": {"_count": 1}}, "Dean": {"_count": 1, "and": {"_count": 1}}, "served": {"_count": 2, "the": {"_count": 1}, "as": {"_count": 1}}, "wobbled": {"_count": 1, "dangerously": {"_count": 1}}, "has": {"_count": 2, "been": {"_count": 1}, "never": {"_count": 1}}, "students": {"_count": 1, "are": {"_count": 1}}, "Dumbledore": {"_count": 6, "might": {"_count": 2}, "stared": {"_count": 1}, "had": {"_count": 2}, "leaned": {"_count": 1}}, "smelled": {"_count": 1, "strongly": {"_count": 1}}, "intermingle": {"_count": 1, "": {"_count": 1}}, "curses": {"_count": 1, "are": {"_count": 1}}, "Voldemort": {"_count": 5, "had": {"_count": 2}, "has": {"_count": 1}, "regarded": {"_count": 1}, "does": {"_count": 1}}, "Neville": {"_count": 3, "usually": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "grew": {"_count": 2, "steadily": {"_count": 1}, "wider": {"_count": 1}}, "announced": {"_count": 1, "the": {"_count": 1}}, "remained": {"_count": 2, "cold": {"_count": 1}, "absolute": {"_count": 1}}, "died": {"_count": 1, "away": {"_count": 1}}, "seconds": {"_count": 1, "later": {"_count": 1}}, "contained": {"_count": 2, "a": {"_count": 2}}, "Durmstrang": {"_count": 1, "will": {"_count": 1}}, "glowed": {"_count": 2, "green": {"_count": 1}, "softly": {"_count": 1}}, "tended": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "none": {"_count": 1, "but": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "somehow": {"_count": 1, "looked": {"_count": 1}}, "depicted": {"_count": 1, "Harry": {"_count": 1}}, "Pluto": {"_count": 1, "could": {"_count": 1}}, "Cedric": {"_count": 1, "Diggory": {"_count": 1}}, "spilled": {"_count": 1, "out": {"_count": 1}}, "Transforming": {"_count": 1, "Spells": {"_count": 1}}, "culminated": {"_count": 1, "in": {"_count": 1}}, "consisted": {"_count": 1, "of": {"_count": 1}}, "point": {"_count": 1, "Fred": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "clattered": {"_count": 1, "away": {"_count": 1}}, "swirled": {"_count": 1, "murkily": {"_count": 1}}, "Krum": {"_count": 1, "had": {"_count": 1}}, "exploded": {"_count": 1, "at": {"_count": 1}}, "surprised": {"_count": 1, "Harry": {"_count": 1}}, "Flitwick": {"_count": 1, "had": {"_count": 1}}, "moved": {"_count": 1, "slowly": {"_count": 1}}, "casts": {"_count": 1, "doubts": {"_count": 1}}, "YouKnowWho": {"_count": 1, "attempted": {"_count": 1}}, "takes": {"_count": 2, "place": {"_count": 1}, "the": {"_count": 1}}, "twinkled": {"_count": 1, "innocently": {"_count": 1}}, "hovered": {"_count": 1, "high": {"_count": 1}}, "crumpled": {"_count": 1, "beneath": {"_count": 1}}, "screeched": {"_count": 1, "the": {"_count": 1}}, "enclosed": {"_count": 1, "Tom": {"_count": 1}}, "soared": {"_count": 1, "downward": {"_count": 1}}, "my": {"_count": 1, "Death": {"_count": 1}}, "Moody": {"_count": 1, "had": {"_count": 1}}, "preceded": {"_count": 1, "it": {"_count": 1}}, "retained": {"_count": 1, "Cedrics": {"_count": 1}}, "buzzed": {"_count": 1, "angrily": {"_count": 1}}, "Uncle": {"_count": 2, "Vernons": {"_count": 1}, "Vernon": {"_count": 1}}, "formed": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 2, "string": {"_count": 1}, "room": {"_count": 1}}, "suited": {"_count": 1, "him": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "zoomed": {"_count": 1, "through": {"_count": 1}}, "time": {"_count": 7, "an": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 2}, "Dumbledore": {"_count": 1}, "many": {"_count": 1}}, "sported": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "loomed": {"_count": 1, "the": {"_count": 1}}, "Ginny": {"_count": 4, "was": {"_count": 1}, "had": {"_count": 2}, "weeping": {"_count": 1}}, "Sirius": {"_count": 4, "uttered": {"_count": 1}, "ignoring": {"_count": 1}, "looked": {"_count": 1}, "and": {"_count": 1}}, "restores": {"_count": 1, "you": {"_count": 1}}, "thoughts": {"_count": 1, "and": {"_count": 1}}, "scuttled": {"_count": 1, "up": {"_count": 1}}, "resisted": {"_count": 1, "all": {"_count": 1}}, "bore": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "hung": {"_count": 3, "a": {"_count": 2}, "directly": {"_count": 1}}, "sunlight": {"_count": 1, "was": {"_count": 1}}, "little": {"_count": 1, "red": {"_count": 1}}, "phoenix": {"_count": 1, "song": {"_count": 1}}, "constitutes": {"_count": 1, "an": {"_count": 1}}, "charged": {"_count": 1, "down": {"_count": 1}}, "swallowed": {"_count": 1, "it": {"_count": 1}}, "books": {"_count": 1, "he": {"_count": 1}}, "read": {"_count": 2, "CONGRATULATIONS": {"_count": 1}, "CAREER": {"_count": 1}}, "vanished": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "new": {"_count": 1, "arrivals": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "every": {"_count": 2, "bone": {"_count": 1}, "bubble": {"_count": 1}}, "sat": {"_count": 2, "an": {"_count": 1}, "a": {"_count": 1}}, "House": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "Nick": {"_count": 2, "did": {"_count": 1}, "had": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "defensive": {"_count": 1, "magic": {"_count": 1}}, "many": {"_count": 1, "members": {"_count": 1}}, "according": {"_count": 2, "to": {"_count": 2}}, "explained": {"_count": 1, "why": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "Filch": {"_count": 1, "glared": {"_count": 1}}, "landed": {"_count": 1, "perilously": {"_count": 1}}, "creates": {"_count": 1, "the": {"_count": 1}}, "have": {"_count": 2, "included": {"_count": 1}, "fitted": {"_count": 1}}, "even": {"_count": 1, "the": {"_count": 1}}, "owls": {"_count": 1, "issued": {"_count": 1}}, "deflated": {"_count": 1, "silently": {"_count": 1}}, "Peeves": {"_count": 1, "was": {"_count": 1}}, "isn": {"_count": 1, "somethin": {"_count": 1}}, "Hagrid": {"_count": 4, "stared": {"_count": 1}, "had": {"_count": 1}, "marched": {"_count": 1}, "was": {"_count": 1}}, "Malfoy": {"_count": 1, "had": {"_count": 1}}, "their": {"_count": 1, "partners": {"_count": 1}}, "makes": {"_count": 2, "us": {"_count": 1}, "it": {"_count": 1}}, "ward": {"_count": 1, "theyre": {"_count": 1}}, "jumped": {"_count": 1, "backward": {"_count": 1}}, "squeezed": {"_count": 1, "itself": {"_count": 1}}, "broke": {"_count": 2, "as": {"_count": 1}, "the": {"_count": 1}}, "concern": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 2, "touched": {"_count": 1}, "assembled": {"_count": 1}}, "Cho": {"_count": 1, "would": {"_count": 1}}, "proved": {"_count": 1, "to": {"_count": 1}}, "door": {"_count": 2, "ought": {"_count": 1}, "we": {"_count": 1}}, "night": {"_count": 1, "mist": {"_count": 1}}, "everybody": {"_count": 1, "had": {"_count": 1}}, "nobody": {"_count": 1, "looked": {"_count": 1}}, "recorded": {"_count": 1, "the": {"_count": 1}}, "golden": {"_count": 1, "letters": {"_count": 1}}, "shone": {"_count": 1, "chestnut": {"_count": 1}}, "left": {"_count": 1, "Harry": {"_count": 1}}, "subjects": {"_count": 2, "you": {"_count": 2}}, "Umbridge": {"_count": 1, "had": {"_count": 1}}, "promptly": {"_count": 1, "tore": {"_count": 1}}, "ensured": {"_count": 1, "them": {"_count": 1}}, "way": {"_count": 5, "to": {"_count": 3}, "dyou": {"_count": 1}, "was": {"_count": 1}}, "admittedly": {"_count": 1, "had": {"_count": 1}}, "snagged": {"_count": 1, "Harry": {"_count": 1}}, "shuddered": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "resembled": {"_count": 1, "a": {"_count": 1}}, "swayed": {"_count": 1, "menacingly": {"_count": 1}}, "Rons": {"_count": 1, "indignation": {"_count": 1}}, "warm": {"_count": 1, "summer": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "Malfoys": {"_count": 2, "gray": {"_count": 1}, "voice": {"_count": 1}}, "flew": {"_count": 2, "a": {"_count": 1}, "into": {"_count": 1}}, "fluttered": {"_count": 1, "for": {"_count": 1}}, "echoed": {"_count": 1, "off": {"_count": 1}}, "relinquished": {"_count": 1, "its": {"_count": 1}}, "Sibyll": {"_count": 1, "chose": {"_count": 1}}, "sure": {"_count": 2, "enough": {"_count": 2}}, "suddenly": {"_count": 1, "spoke": {"_count": 1}}, "we": {"_count": 8, "could": {"_count": 1}, "have": {"_count": 1}, "can": {"_count": 1}, "shall": {"_count": 1}, "build": {"_count": 1}, "are": {"_count": 2}, "took": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 2, "floated": {"_count": 1}, "was": {"_count": 1}}, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "yelled": {"_count": 1, "Ouch": {"_count": 1}}, "opened": {"_count": 3, "at": {"_count": 1}, "onto": {"_count": 1}, "to": {"_count": 1}}, "sold": {"_count": 1, "a": {"_count": 1}}, "inconveniently": {"_count": 1, "was": {"_count": 1}}, "each": {"_count": 1, "time": {"_count": 1}}, "gives": {"_count": 3, "you": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 1}}, "some": {"_count": 1, "his": {"_count": 1}}, "Snape": {"_count": 3, "ignored": {"_count": 1}, "had": {"_count": 1}, "lurked": {"_count": 1}}, "should": {"_count": 2, "be": {"_count": 1}, "add": {"_count": 1}}, "somebody": {"_count": 2, "had": {"_count": 2}}, "with": {"_count": 1, "his": {"_count": 1}}, "occurred": {"_count": 1, "here": {"_count": 1}}, "all": {"_count": 4, "three": {"_count": 1}, "floated": {"_count": 1}, "of": {"_count": 1}, "tumbled": {"_count": 1}}, "tore": {"_count": 1, "open": {"_count": 1}}, "already": {"_count": 1, "I": {"_count": 1}}, "Marvolo": {"_count": 1, "Gaunts": {"_count": 1}}, "no": {"_count": 2, "Ron": {"_count": 1}, "one": {"_count": 1}}, "Zacharias": {"_count": 1, "was": {"_count": 1}}, "caused": {"_count": 1, "blockages": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}, "Lavender": {"_count": 1, "and": {"_count": 1}}, "reduced": {"_count": 1, "Hermione": {"_count": 1}}, "girls": {"_count": 1, "would": {"_count": 1}}, "real": {"_count": 1, "fairies": {"_count": 1}}, "sobered": {"_count": 1, "Ron": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "resulted": {"_count": 2, "in": {"_count": 1}, "as": {"_count": 1}}, "naturally": {"_count": 1, "made": {"_count": 1}}, "jobs": {"_count": 1, "they": {"_count": 1}}, "specializes": {"_count": 1, "as": {"_count": 1}}, "irritated": {"_count": 1, "Harry": {"_count": 1}}, "leapt": {"_count": 1, "aside": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "enhances": {"_count": 1, "Lord": {"_count": 1}}, "incidentally": {"_count": 1, "is": {"_count": 1}}, "Montague": {"_count": 1, "had": {"_count": 1}}, "if": {"_count": 3, "they": {"_count": 1}, "united": {"_count": 2}}, "boy": {"_count": 1, "Voldemort": {"_count": 1}}, "dark": {"_count": 1, "water": {"_count": 1}}, "Hogwarts": {"_count": 1, "might": {"_count": 1}}, "trembled": {"_count": 1, "and": {"_count": 1}}, "clung": {"_count": 1, "to": {"_count": 1}}, "Potter": {"_count": 1, "spoke": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "your": {"_count": 1}}, "creaked": {"_count": 1, "slightly": {"_count": 1}}, "down": {"_count": 1, "His": {"_count": 1}}, "safe": {"_count": 1, "house": {"_count": 1}}, "R": {"_count": 1, "": {"_count": 1}}, "dribbled": {"_count": 1, "down": {"_count": 1}}, "Draco": {"_count": 1, "was": {"_count": 1}}, "Kreacher": {"_count": 1, "straightened": {"_count": 1}}, "Regulus": {"_count": 1, "had": {"_count": 1}}, "most": {"_count": 1, "experts": {"_count": 1}}, "ignited": {"_count": 1, "": {"_count": 1}}, "Master": {"_count": 1, "is": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "witch": {"_count": 1, "or": {"_count": 1}}, "strengthens": {"_count": 1, "it": {"_count": 1}}, "strengthen": {"_count": 1, "them": {"_count": 1}}, "James": {"_count": 2, "and": {"_count": 1}, "had": {"_count": 1}}, "there": {"_count": 1, "stood": {"_count": 1}}, "thrashed": {"_count": 1, "down": {"_count": 1}}, "shattered": {"_count": 1, "": {"_count": 1}}, "split": {"_count": 1, "into": {"_count": 1}}, "afforded": {"_count": 1, "the": {"_count": 1}}, "Xenophilius": {"_count": 1, "glanced": {"_count": 1}}, "gift": {"_count": 1, "is": {"_count": 1}}, "are": {"_count": 1, "good": {"_count": 1}}, "spoke": {"_count": 1, "in": {"_count": 1}}, "protruded": {"_count": 1, "a": {"_count": 1}}, "carried": {"_count": 1, "the": {"_count": 1}}, "wandmaker": {"_count": 1, "did": {"_count": 1}}, "who": {"_count": 2, "knew": {"_count": 2}}, "still": {"_count": 1, "brought": {"_count": 1}}, "chains": {"_count": 1, "led": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "became": {"_count": 1, "a": {"_count": 1}}, "reformed": {"_count": 1, "and": {"_count": 1}}, "narrowly": {"_count": 1, "missed": {"_count": 1}}, "looped": {"_count": 1, "itself": {"_count": 1}}, "drifted": {"_count": 1, "upward": {"_count": 1}}, "Lily": {"_count": 1, "laughed": {"_count": 1}}, "spun": {"_count": 1, "high": {"_count": 1}}, "emphasized": {"_count": 1, "the": {"_count": 1}}}, "made": {"_count": 925, "drills": {"_count": 2, "": {"_count": 2}}, "several": {"_count": 2, "important": {"_count": 1}, "timidlooking": {"_count": 1}}, "him": {"_count": 87, "uneasy": {"_count": 1}, "look": {"_count": 10}, "feel": {"_count": 21}, "jump": {"_count": 1}, "sick": {"_count": 1}, "freeze": {"_count": 2}, "stay": {"_count": 2}, "pass": {"_count": 1}, "do": {"_count": 1}, "wheel": {"_count": 1}, "recount": {"_count": 1}, "leave": {"_count": 1}, "stop": {"_count": 2}, "overbalance": {"_count": 1}, "tell": {"_count": 1}, "think": {"_count": 3}, "most": {"_count": 1}, "truly": {"_count": 1}, "frightening": {"_count": 1}, "want": {"_count": 1}, "lie": {"_count": 1}, "": {"_count": 2}, "write": {"_count": 1}, "unable": {"_count": 1}, "dive": {"_count": 1}, "quite": {"_count": 1}, "instantly": {"_count": 1}, "angry": {"_count": 1}, "wonder": {"_count": 1}, "laugh": {"_count": 1}, "prefect": {"_count": 1}, "realize": {"_count": 2}, "dislike": {"_count": 1}, "cast": {"_count": 1}, "even": {"_count": 1}, "ordinary": {"_count": 1}, "still": {"_count": 1}, "say": {"_count": 1}, "devoutly": {"_count": 1}, "glance": {"_count": 1}, "abandon": {"_count": 1}, "change": {"_count": 1}, "and": {"_count": 1}, "wish": {"_count": 1}, "both": {"_count": 1}, "turn": {"_count": 2}, "invincible": {"_count": 1}, "double": {"_count": 1}, "yew": {"_count": 1}, "cry": {"_count": 1}}, "passersby": {"_count": 1, "stare": {"_count": 1}}, "sense": {"_count": 6, "to": {"_count": 1}, "": {"_count": 3}, "for": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 58, "first": {"_count": 1}, "noise": {"_count": 1}, "whole": {"_count": 2}, "three": {"_count": 1}, "Dark": {"_count": 1}, "plates": {"_count": 2}, "oil": {"_count": 1}, "attacks": {"_count": 1}, "hairs": {"_count": 2}, "most": {"_count": 3}, "hair": {"_count": 2}, "potion": {"_count": 1}, "cat": {"_count": 1}, "door": {"_count": 1}, "sparse": {"_count": 1}, "second": {"_count": 3}, "prediction": {"_count": 2}, "necessary": {"_count": 1}, "trees": {"_count": 1}, "enclosure": {"_count": 1}, "slightest": {"_count": 1}, "snow": {"_count": 1}, "spider": {"_count": 1}, "suggestion": {"_count": 1}, "dustbins": {"_count": 1}, "cracking": {"_count": 1}, "sound": {"_count": 1}, "Imperius": {"_count": 1}, "journey": {"_count": 1}, "same": {"_count": 1}, "bond": {"_count": 1}, "remotest": {"_count": 1}, "ends": {"_count": 1}, "back": {"_count": 1}, "choice": {"_count": 1}, "Unbreakable": {"_count": 1}, "Wolfsbane": {"_count": 1}, "lawns": {"_count": 1}, "prophecy": {"_count": 2}, "kitchen": {"_count": 1}, "connection": {"_count": 2}, "banisters": {"_count": 1}, "possessor": {"_count": 1}, "offer": {"_count": 1}, "rock": {"_count": 1}, "grimy": {"_count": 1}, "ground": {"_count": 1}}, "no": {"_count": 25, "difference": {"_count": 4}, "sense": {"_count": 3}, "mark": {"_count": 1}, "further": {"_count": 1}, "effort": {"_count": 2}, "answer": {"_count": 1}, "mention": {"_count": 1}, "noise": {"_count": 2}, "objection": {"_count": 1}, "comment": {"_count": 1}, "response": {"_count": 1}, "easier": {"_count": 1}, "move": {"_count": 1}, "movement": {"_count": 1}, "attempt": {"_count": 3}, "sign": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "Aunt": {"_count": 3, "Petunia": {"_count": 3}}, "of": {"_count": 24, "yellowish": {"_count": 1}, "rubber": {"_count": 1}, "nothing": {"_count": 1}, "willow": {"_count": 1}, "stronger": {"_count": 1}, "wisps": {"_count": 1}, "glass": {"_count": 1}, "thick": {"_count": 1}, "fine": {"_count": 1}, "holly": {"_count": 1}, "marshmallow": {"_count": 1}, "a": {"_count": 1}, "white": {"_count": 2}, "smoke": {"_count": 1}, "the": {"_count": 1}, "dark": {"_count": 1}, "Spanish": {"_count": 1}, "wood": {"_count": 1}, "anything": {"_count": 1}, "what": {"_count": 1}, "you": {"_count": 1}, "blackthorn": {"_count": 1}, "silver": {"_count": 1}}, "a": {"_count": 121, "choking": {"_count": 2}, "grab": {"_count": 3}, "funny": {"_count": 4}, "mistake": {"_count": 11}, "prefect": {"_count": 4}, "Slytherin": {"_count": 1}, "sharp": {"_count": 1}, "cup": {"_count": 1}, "wild": {"_count": 1}, "violent": {"_count": 1}, "sound": {"_count": 4}, "teacher": {"_count": 1}, "rasping": {"_count": 1}, "lunge": {"_count": 1}, "small": {"_count": 4}, "horrible": {"_count": 2}, "sudden": {"_count": 4}, "full": {"_count": 1}, "grunting": {"_count": 1}, "startled": {"_count": 1}, "valiant": {"_count": 1}, "soft": {"_count": 2}, "derisive": {"_count": 1}, "better": {"_count": 1}, "gesture": {"_count": 1}, "habit": {"_count": 1}, "loud": {"_count": 4}, "good": {"_count": 2}, "fountain": {"_count": 1}, "mental": {"_count": 1}, "chirruping": {"_count": 1}, "grimace": {"_count": 1}, "point": {"_count": 1}, "noise": {"_count": 4}, "great": {"_count": 2}, "speech": {"_count": 1}, "decision": {"_count": 2}, "little": {"_count": 1}, "sad": {"_count": 1}, "beeline": {"_count": 1}, "bit": {"_count": 1}, "noncommittal": {"_count": 1}, "note": {"_count": 2}, "tiny": {"_count": 1}, "grotesque": {"_count": 1}, "skeptical": {"_count": 1}, "blunder": {"_count": 1}, "stifled": {"_count": 1}, "triumphant": {"_count": 1}, "convulsive": {"_count": 1}, "particularly": {"_count": 1}, "fine": {"_count": 1}, "fool": {"_count": 2}, "slight": {"_count": 2}, "terrible": {"_count": 3}, "prophecy": {"_count": 1}, "single": {"_count": 1}, "scathing": {"_count": 1}, "rude": {"_count": 1}, "real": {"_count": 1}, "bow": {"_count": 1}, "shhing": {"_count": 1}, "Horcrux": {"_count": 1}, "most": {"_count": 1}, "grave": {"_count": 2}, "very": {"_count": 1}, "desperate": {"_count": 1}, "break": {"_count": 1}, "pretty": {"_count": 1}, "copy": {"_count": 1}, "bridge": {"_count": 1}, "supreme": {"_count": 1}, "tiara": {"_count": 1}, "difference": {"_count": 1}, "hairpin": {"_count": 1}, "basin": {"_count": 1}}, "Dudley": {"_count": 3, "go": {"_count": 1}, "Dursley": {"_count": 1}, "even": {"_count": 1}}, "difficult": {"_count": 1, "by": {"_count": 1}}, "furious": {"_count": 2, "telephone": {"_count": 1}, "moves": {"_count": 1}}, "up": {"_count": 16, "a": {"_count": 1}, "entirely": {"_count": 1}, "mostly": {"_count": 1}, "his": {"_count": 4}, "for": {"_count": 3}, "the": {"_count": 1}, "all": {"_count": 1}, "have": {"_count": 1}, "himself": {"_count": 1}, "of": {"_count": 1}, "title": {"_count": 1}}, "another": {"_count": 3, "funny": {"_count": 1}, "announcement": {"_count": 1}, "note": {"_count": 1}}, "things": {"_count": 3, "happen": {"_count": 1}, "ten": {"_count": 1}, "worse": {"_count": 1}}, "his": {"_count": 42, "aunt": {"_count": 1}, "way": {"_count": 14}, "head": {"_count": 3}, "glasses": {"_count": 1}, "heart": {"_count": 3}, "stomach": {"_count": 2}, "solitary": {"_count": 1}, "voice": {"_count": 1}, "decision": {"_count": 3}, "ears": {"_count": 1}, "features": {"_count": 1}, "life": {"_count": 2}, "slow": {"_count": 1}, "scar": {"_count": 1}, "situation": {"_count": 1}, "insides": {"_count": 1}, "usual": {"_count": 1}, "ungainly": {"_count": 1}, "seventeenth": {"_count": 1}, "farewells": {"_count": 1}, "choice": {"_count": 1}}, "for": {"_count": 10, "the": {"_count": 3}, "him": {"_count": 2}, "you": {"_count": 1}, "himself": {"_count": 1}, "each": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}}, "their": {"_count": 47, "way": {"_count": 40}, "hearts": {"_count": 1}, "appearance": {"_count": 1}, "boos": {"_count": 1}, "slow": {"_count": 1}, "noisy": {"_count": 1}, "own": {"_count": 1}, "preparations": {"_count": 1}}, "any": {"_count": 6, "difference": {"_count": 2}, "sign": {"_count": 1}, "allusion": {"_count": 1}, "further": {"_count": 1}, "mark": {"_count": 1}}, "you": {"_count": 23, "think": {"_count": 2}, "a": {"_count": 1}, "know": {"_count": 1}, "two": {"_count": 1}, "all": {"_count": 1}, "SecretKeeper": {"_count": 1}, "decide": {"_count": 1}, "keen": {"_count": 1}, "out": {"_count": 1}, "practically": {"_count": 2}, "feel": {"_count": 1}, "promise": {"_count": 1}, "": {"_count": 1}, "write": {"_count": 1}, "forget": {"_count": 1}, "the": {"_count": 1}, "take": {"_count": 1}, "drink": {"_count": 1}, "leave": {"_count": 1}, "\u2018worthy": {"_count": 1}, "see": {"_count": 1}}, "them": {"_count": 13, "all": {"_count": 4}, "jump": {"_count": 1}, "tea": {"_count": 2}, "leave": {"_count": 1}, "almost": {"_count": 1}, "extremely": {"_count": 1}, "retreat": {"_count": 1}, "somehow": {"_count": 1}, "curseproof": {"_count": 1}}, "that": {"_count": 4, "rule": {"_count": 1}, "will": {"_count": 1}, "Bludger": {"_count": 1}, "dementor": {"_count": 1}}, "it": {"_count": 49, "a": {"_count": 2}, "up": {"_count": 1}, "look": {"_count": 5}, "sound": {"_count": 2}, "so": {"_count": 2}, "impossible": {"_count": 3}, "very": {"_count": 1}, "Unplottable": {"_count": 1}, "was": {"_count": 1}, "hover": {"_count": 1}, "clear": {"_count": 2}, "possible": {"_count": 2}, "quite": {"_count": 1}, "lousy": {"_count": 1}, "fun": {"_count": 2}, "much": {"_count": 2}, "all": {"_count": 2}, "over": {"_count": 1}, "plenty": {"_count": 1}, "worse": {"_count": 1}, "through": {"_count": 1}, "near": {"_count": 1}, "perfectly": {"_count": 1}, "my": {"_count": 1}, "to": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 2}, "George": {"_count": 1}, "hard": {"_count": 1}, "Bolting": {"_count": 1}, "happen": {"_count": 1}, "easy": {"_count": 1}, "this": {"_count": 1}, "our": {"_count": 1}}, "sure": {"_count": 16, "Peeves": {"_count": 1}, "there": {"_count": 1}, "that": {"_count": 6}, "of": {"_count": 2}, "he": {"_count": 2}, "Myrtle": {"_count": 1}, "I": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 35, "Ron": {"_count": 3}, "so": {"_count": 2}, "feel": {"_count": 13}, "ask": {"_count": 1}, "let": {"_count": 1}, "such": {"_count": 1}, "promise": {"_count": 1}, "cough": {"_count": 1}, "think": {"_count": 2}, "suspect": {"_count": 1}, "uneasy": {"_count": 1}, "positively": {"_count": 1}, "happiest": {"_count": 1}, "jump": {"_count": 1}, "and": {"_count": 1}, "stride": {"_count": 1}, "want": {"_count": 2}, "look": {"_count": 1}}, "Hagrid": {"_count": 1, "raise": {"_count": 1}}, "ter": {"_count": 2, "live": {"_count": 2}}, "prefect": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 37, "brush": {"_count": 1}, "the": {"_count": 2}, "stand": {"_count": 2}, "close": {"_count": 2}, "leave": {"_count": 2}, "turn": {"_count": 2}, "stuff": {"_count": 1}, "disembowel": {"_count": 1}, "stow": {"_count": 1}, "follow": {"_count": 2}, "shut": {"_count": 1}, "pull": {"_count": 2}, "remove": {"_count": 1}, "touch": {"_count": 1}, "take": {"_count": 1}, "seize": {"_count": 1}, "pat": {"_count": 1}, "run": {"_count": 1}, "somebody": {"_count": 1}, "feel": {"_count": 1}, "so": {"_count": 1}, "get": {"_count": 1}, "grab": {"_count": 1}, "change": {"_count": 1}, "speak": {"_count": 1}, "fill": {"_count": 1}, "grasp": {"_count": 1}, "repeat": {"_count": 1}, "chase": {"_count": 1}, "move": {"_count": 1}}, "regular": {"_count": 1, "checks": {"_count": 1}}, "her": {"_count": 17, "read": {"_count": 1}, "do": {"_count": 1}, "usual": {"_count": 1}, "go": {"_count": 1}, "eyes": {"_count": 1}, "give": {"_count": 1}, "stick": {"_count": 1}, "way": {"_count": 1}, "come": {"_count": 1}, "nervous": {"_count": 1}, "look": {"_count": 1}, "feel": {"_count": 1}, "broad": {"_count": 1}, "gs": {"_count": 1}, "an": {"_count": 1}, "forget": {"_count": 1}, "blush": {"_count": 1}}, "me": {"_count": 20, "buff": {"_count": 1}, "polish": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 2}, "their": {"_count": 1}, "swear": {"_count": 1}, "do": {"_count": 4}, "Keep": {"_count": 1}, "think": {"_count": 2}, "nervous": {"_count": 1}, "see": {"_count": 1}, "cry": {"_count": 1}, "come": {"_count": 1}, "jump": {"_count": 1}, "another": {"_count": 1}}, "all": {"_count": 4, "three": {"_count": 2}, "the": {"_count": 2}}, "an": {"_count": 14, "indistinct": {"_count": 1}, "entire": {"_count": 1}, "odd": {"_count": 3}, "enormous": {"_count": 1}, "impatient": {"_count": 2}, "opening": {"_count": 1}, "angry": {"_count": 1}, "Unbreakable": {"_count": 1}, "obvious": {"_count": 1}, "involuntary": {"_count": 1}, "effort": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "Professor": {"_count": 4, "Sprout": {"_count": 1}, "McGonagall": {"_count": 1}, "Umbridge": {"_count": 1}, "Trelawney": {"_count": 1}}, "two": {"_count": 2, "": {"_count": 1}, "low": {"_count": 1}}, "its": {"_count": 3, "way": {"_count": 2}, "final": {"_count": 1}}, "out": {"_count": 5, "and": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "Sirius": {"_count": 1}, "a": {"_count": 1}}, "Ginny": {"_count": 2, "write": {"_count": 1}, "go": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "something": {"_count": 2, "explode": {"_count": 1}, "up": {"_count": 1}}, "coffee": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 6, "a": {"_count": 1}, "though": {"_count": 3}, "they": {"_count": 1}, "the": {"_count": 1}}, "Ron": {"_count": 4, "even": {"_count": 1}, "and": {"_count": 2}, "laugh": {"_count": 1}}, "notes": {"_count": 1, "on": {"_count": 1}}, "Hermione": {"_count": 3, "say": {"_count": 1}, "more": {"_count": 1}, "a": {"_count": 1}}, "herself": {"_count": 2, "which": {"_count": 1}, "incredibly": {"_count": 1}}, "some": {"_count": 4, "changes": {"_count": 1}, "stuff": {"_count": 1}, "progress": {"_count": 1}, "truly": {"_count": 1}}, "by": {"_count": 11, "something": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 2}, "someone": {"_count": 1}, "an": {"_count": 1}, "wizards": {"_count": 1}, "appointment": {"_count": 1}, "Death": {"_count": 1}, "Ollivander": {"_count": 1}, "vicious": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "was": {"_count": 1, "startling": {"_count": 1}}, "not": {"_count": 1, "of": {"_count": 1}}, "good": {"_count": 1, "time": {"_count": 1}}, "more": {"_count": 1, "of": {"_count": 1}}, "contact": {"_count": 10, "with": {"_count": 7}, "why": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "himself": {"_count": 7, "loads": {"_count": 1}, "something": {"_count": 1}, "a": {"_count": 1}, "impossible": {"_count": 1}, "completely": {"_count": 1}, "lie": {"_count": 1}, "clear": {"_count": 1}}, "this": {"_count": 2, "dinner": {"_count": 1}, "point": {"_count": 1}}, "noises": {"_count": 3, "of": {"_count": 3}}, "very": {"_count": 1, "little": {"_count": 1}}, "these": {"_count": 1, "up": {"_count": 1}}, "Neville": {"_count": 1, "jump": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "everything": {"_count": 2, "much": {"_count": 1}, "worse": {"_count": 1}}, "champion": {"_count": 1, "": {"_count": 1}}, "arrangements": {"_count": 2, "to": {"_count": 2}}, "illegal": {"_count": 1, "Harry": {"_count": 1}}, "head": {"_count": 1, "of": {"_count": 1}}, "such": {"_count": 3, "a": {"_count": 2}, "caution": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "he": {"_count": 1, "continued": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 3}, "her": {"_count": 1}, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "liquid": {"_count": 1, "or": {"_count": 1}}, "solid": {"_count": 1, "Harry": {"_count": 1}}, "without": {"_count": 1, "assistance": {"_count": 1}}, "friends": {"_count": 1, "with": {"_count": 1}}, "my": {"_count": 7, "home": {"_count": 1}, "point": {"_count": 1}, "meaning": {"_count": 1}, "decision": {"_count": 2}, "vand": {"_count": 1}, "mum": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "tea": {"_count": 1, "and": {"_count": 1}}, "patches": {"_count": 1, "of": {"_count": 1}}, "flapping": {"_count": 1, "gestures": {"_count": 1}}, "odd": {"_count": 2, "hissing": {"_count": 1}, "crooning": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "us": {"_count": 5, "swear": {"_count": 3}, "think": {"_count": 1}, "feel": {"_count": 1}}, "Harrys": {"_count": 4, "insides": {"_count": 1}, "stomach": {"_count": 1}, "throat": {"_count": 1}, "flesh": {"_count": 1}}, "lovely": {"_count": 1, "respectable": {"_count": 1}}, "Gryffindor": {"_count": 1, "Quidditch": {"_count": 1}}, "directly": {"_count": 1, "for": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 2}, "last": {"_count": 1}}, "much": {"_count": 3, "of": {"_count": 1}, "more": {"_count": 1}, "less": {"_count": 1}}, "on": {"_count": 2, "your": {"_count": 1}, "the": {"_count": 1}}, "rather": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "should": {"_count": 1}}, "against": {"_count": 1, "me": {"_count": 1}}, "recently": {"_count": 1, "by": {"_count": 1}}, "with": {"_count": 2, "your": {"_count": 1}, "spades": {"_count": 1}}, "everyone": {"_count": 2, "in": {"_count": 1}, "sleepy": {"_count": 1}}, "like": {"_count": 1, "we": {"_count": 1}}, "em": {"_count": 2, "live": {"_count": 1}, "yet": {"_count": 1}}, "friendly": {"_count": 1, "contact": {"_count": 1}}, "earlier": {"_count": 1, "in": {"_count": 1}}, "bent": {"_count": 1, "lower": {"_count": 1}}, "enormous": {"_count": 1, "progress": {"_count": 1}}, "timid": {"_count": 1, "motions": {"_count": 1}}, "wild": {"_count": 1, "motions": {"_count": 1}}, "rude": {"_count": 1, "hand": {"_count": 1}}, "quite": {"_count": 1, "a": {"_count": 1}}, "frantic": {"_count": 1, "hushing": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "eye": {"_count": 1, "contact": {"_count": 1}}, "your": {"_count": 5, "appearance": {"_count": 1}, "presence": {"_count": 1}, "point": {"_count": 1}, "wand": {"_count": 2}}, "shortly": {"_count": 1, "before": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "soft": {"_count": 2, "chirruping": {"_count": 1}, "clipclopping": {"_count": 1}}, "Dumbledore": {"_count": 1, "look": {"_count": 1}}, "about": {"_count": 1, "you": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "Quidditch": {"_count": 1, "Captain": {"_count": 1}}, "Malfoy": {"_count": 1, "look": {"_count": 1}}, "or": {"_count": 2, "even": {"_count": 1}, "been": {"_count": 1}}, "carriage": {"_count": 1, "tracks": {"_count": 1}}, "jokes": {"_count": 1, "": {"_count": 1}}, "annotations": {"_count": 1, "and": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "additional": {"_count": 1, "notes": {"_count": 1}}, "detours": {"_count": 1, "to": {"_count": 1}}, "seven": {"_count": 1, "Horcruxes": {"_count": 1}}, "similar": {"_count": 1, "noises": {"_count": 1}}, "muttering": {"_count": 1, "an": {"_count": 1}}, "footholds": {"_count": 1, "leading": {"_count": 1}}, "echoing": {"_count": 1, "slapping": {"_count": 1}}, "great": {"_count": 1, "deep": {"_count": 1}}, "complicated": {"_count": 1, "movements": {"_count": 1}}, "steps": {"_count": 1, "to": {"_count": 1}}, "yeh": {"_count": 1, "say": {"_count": 1}}, "Voldemort": {"_count": 2, "hunt": {"_count": 1}, "more": {"_count": 1}}, "hastily": {"_count": 1, "": {"_count": 1}}, "strange": {"_count": 1, "shapes": {"_count": 1}}, "while": {"_count": 1, "Chief": {"_count": 1}}, "gold": {"_count": 1, "flames": {"_count": 1}}, "six": {"_count": 1, "": {"_count": 1}}, "purple": {"_count": 1, "and": {"_count": 1}}, "exceptionally": {"_count": 1, "few": {"_count": 1}}, "identical": {"_count": 1, "movements": {"_count": 1}}, "so": {"_count": 2, "much": {"_count": 2}}, "Kreacher": {"_count": 2, "drink": {"_count": 2}}, "Krums": {"_count": 1, "wand": {"_count": 1}}, "five": {"_count": 1, "of": {"_count": 1}}, "less": {"_count": 1, "noise": {"_count": 1}}, "models": {"_count": 1, "of": {"_count": 1}}, "scarlet": {"_count": 1, "against": {"_count": 1}}, "Madam": {"_count": 1, "Lestrange": {"_count": 1}}, "Travers": {"_count": 1, "come": {"_count": 1}}, "helmets": {"_count": 1, "set": {"_count": 1}}, "excuses": {"_count": 1, "for": {"_count": 1}}, "nearly": {"_count": 1, "solid": {"_count": 1}}}, "drills": {"_count": 9, "": {"_count": 5, ".": {"_count": 5}}, "he": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 1, "driven": {"_count": 1}}, "that": {"_count": 2, "morning": {"_count": 1}, "afternoon": {"_count": 1}}}, "He": {"_count": 5608, "was": {"_count": 709, "a": {"_count": 18}, "in": {"_count": 14}, "sure": {"_count": 15}, "rattled": {"_count": 1}, "still": {"_count": 30}, "tall": {"_count": 4}, "wearing": {"_count": 22}, "busy": {"_count": 1}, "almost": {"_count": 2}, "ripping": {"_count": 1}, "usually": {"_count": 1}, "careful": {"_count": 2}, "so": {"_count": 12}, "going": {"_count": 19}, "hungry": {"_count": 1}, "also": {"_count": 5}, "holding": {"_count": 4}, "takin": {"_count": 1}, "glaring": {"_count": 2}, "fine": {"_count": 2}, "liking": {"_count": 1}, "about": {"_count": 5}, "quite": {"_count": 9}, "starting": {"_count": 7}, "ever": {"_count": 1}, "just": {"_count": 4}, "looking": {"_count": 25}, "pale": {"_count": 4}, "beaming": {"_count": 1}, "right": {"_count": 3}, "too": {"_count": 3}, "an": {"_count": 3}, "curled": {"_count": 1}, "never": {"_count": 4}, "carrying": {"_count": 7}, "shaking": {"_count": 6}, "now": {"_count": 5}, "being": {"_count": 2}, "cursing": {"_count": 1}, "provoked": {"_count": 1}, "walking": {"_count": 10}, "the": {"_count": 11}, "safe": {"_count": 1}, "humming": {"_count": 1}, "wrong": {"_count": 2}, "very": {"_count": 15}, "trying": {"_count": 5}, "on": {"_count": 10}, "at": {"_count": 3}, "lying": {"_count": 8}, "bearing": {"_count": 1}, "scrambling": {"_count": 1}, "already": {"_count": 4}, "pleased": {"_count": 3}, "asking": {"_count": 2}, "supposed": {"_count": 1}, "clutching": {"_count": 2}, "straining": {"_count": 1}, "slumped": {"_count": 3}, "nervous": {"_count": 1}, "rocking": {"_count": 1}, "waiting": {"_count": 3}, "halfway": {"_count": 4}, "tired": {"_count": 2}, "back": {"_count": 3}, "much": {"_count": 2}, "biting": {"_count": 1}, "none": {"_count": 1}, "sweating": {"_count": 1}, "buying": {"_count": 1}, "blind": {"_count": 1}, "backing": {"_count": 1}, "shivering": {"_count": 3}, "innocent": {"_count": 2}, "becoming": {"_count": 2}, "more": {"_count": 2}, "standing": {"_count": 10}, "strangely": {"_count": 1}, "speaking": {"_count": 1}, "waving": {"_count": 1}, "not": {"_count": 31}, "stranded": {"_count": 1}, "sorely": {"_count": 1}, "like": {"_count": 2}, "embarrassed": {"_count": 1}, "drowning": {"_count": 1}, "often": {"_count": 1}, "used": {"_count": 2}, "as": {"_count": 5}, "distracted": {"_count": 2}, "suddenly": {"_count": 3}, "interrupted": {"_count": 1}, "breathing": {"_count": 1}, "falling": {"_count": 4}, "furious": {"_count": 2}, "thinking": {"_count": 5}, "ill": {"_count": 1}, "positive": {"_count": 1}, "winning": {"_count": 1}, "saving": {"_count": 2}, "completely": {"_count": 1}, "flying": {"_count": 1}, "feeling": {"_count": 3}, "gaining": {"_count": 1}, "thinner": {"_count": 2}, "writhing": {"_count": 1}, "sprawled": {"_count": 1}, "drawing": {"_count": 2}, "pointing": {"_count": 4}, "forbidden": {"_count": 1}, "crouched": {"_count": 1}, "alone": {"_count": 1}, "gone": {"_count": 3}, "conjuring": {"_count": 1}, "convinced": {"_count": 1}, "my": {"_count": 1}, "talking": {"_count": 5}, "dangerous": {"_count": 1}, "screaming": {"_count": 2}, "dead": {"_count": 2}, "kneeling": {"_count": 1}, "Captain": {"_count": 1}, "sitting": {"_count": 5}, "always": {"_count": 1}, "pressing": {"_count": 1}, "using": {"_count": 1}, "flexing": {"_count": 1}, "slightly": {"_count": 1}, "itching": {"_count": 1}, "judging": {"_count": 1}, "smiling": {"_count": 1}, "blushing": {"_count": 1}, "stunned": {"_count": 1}, "surely": {"_count": 1}, "grinning": {"_count": 1}, "caught": {"_count": 3}, "with": {"_count": 2}, "best": {"_count": 1}, "probably": {"_count": 1}, "fully": {"_count": 1}, "exhausted": {"_count": 2}, "chewing": {"_count": 1}, "passing": {"_count": 1}, "making": {"_count": 1}, "twisting": {"_count": 1}, "tipped": {"_count": 1}, "tough": {"_count": 1}, "working": {"_count": 1}, "out": {"_count": 2}, "sanest": {"_count": 1}, "having": {"_count": 2}, "riding": {"_count": 1}, "gazing": {"_count": 3}, "inside": {"_count": 2}, "staring": {"_count": 3}, "torturing": {"_count": 2}, "lifted": {"_count": 2}, "hanging": {"_count": 1}, "glad": {"_count": 3}, "worse": {"_count": 1}, "dreading": {"_count": 1}, "extremely": {"_count": 1}, "sixteen": {"_count": 1}, "only": {"_count": 3}, "expelled": {"_count": 1}, "astounded": {"_count": 1}, "desperate": {"_count": 2}, "scary": {"_count": 1}, "younger": {"_count": 1}, "determined": {"_count": 1}, "cleared": {"_count": 1}, "spared": {"_count": 1}, "really": {"_count": 3}, "sick": {"_count": 1}, "pulling": {"_count": 1}, "frowning": {"_count": 1}, "wiping": {"_count": 1}, "banned": {"_count": 1}, "finding": {"_count": 6}, "gliding": {"_count": 3}, "flat": {"_count": 2}, "turning": {"_count": 2}, "alive": {"_count": 1}, "unshaven": {"_count": 1}, "scared": {"_count": 1}, "sinking": {"_count": 1}, "no": {"_count": 2}, "rather": {"_count": 3}, "possessing": {"_count": 1}, "five": {"_count": 1}, "nine": {"_count": 1}, "watching": {"_count": 1}, "running": {"_count": 2}, "happier": {"_count": 1}, "remembering": {"_count": 1}, "oddly": {"_count": 2}, "improving": {"_count": 1}, "feet": {"_count": 2}, "sorry": {"_count": 1}, "recovering": {"_count": 1}, "even": {"_count": 1}, "hurtling": {"_count": 1}, "through": {"_count": 1}, "nothing": {"_count": 3}, "heading": {"_count": 1}, "heavily": {"_count": 1}, "remarkably": {"_count": 1}, "bluffing": {"_count": 1}, "speeding": {"_count": 1}, "once": {"_count": 1}, "trembling": {"_count": 1}, "straightening": {"_count": 1}, "immersed": {"_count": 1}, "bein": {"_count": 1}, "gibbering": {"_count": 1}, "deaf": {"_count": 1}, "hoping": {"_count": 1}, "laughing": {"_count": 2}, "jumping": {"_count": 1}, "there": {"_count": 1}, "shut": {"_count": 1}, "bound": {"_count": 1}, "forced": {"_count": 1}, "he": {"_count": 1}, "worried": {"_count": 3}, "sprinting": {"_count": 2}, "after": {"_count": 2}, "thrilled": {"_count": 1}, "disappointed": {"_count": 1}, "reminded": {"_count": 1}, "surrounded": {"_count": 1}, "far": {"_count": 1}, "cold": {"_count": 1}, "employed": {"_count": 1}, "reading": {"_count": 1}, "nicking": {"_count": 1}, "his": {"_count": 1}, "called": {"_count": 1}, "actually": {"_count": 1}, "keen": {"_count": 1}, "definitely": {"_count": 1}, "however": {"_count": 1}, "placed": {"_count": 1}, "proud": {"_count": 1}, "underage": {"_count": 1}, "arguing": {"_count": 1}, "nowhere": {"_count": 1}, "plainly": {"_count": 1}, "referring": {"_count": 1}, "deeply": {"_count": 1}, "bent": {"_count": 1}, "shouting": {"_count": 1}, "said": {"_count": 1}, "crying": {"_count": 1}, "clearly": {"_count": 1}, "rising": {"_count": 1}, "shorter": {"_count": 1}, "vaguely": {"_count": 1}, "spreadeagled": {"_count": 1}, "afraid": {"_count": 3}, "tugging": {"_count": 1}, "listening": {"_count": 1}, "staggered": {"_count": 1}, "Minister": {"_count": 1}, "abruptly": {"_count": 1}, "over": {"_count": 1}, "Harry": {"_count": 3}, "drenched": {"_count": 1}, "angry": {"_count": 1}, "panicking": {"_count": 1}, "keeping": {"_count": 1}, "Voldemort": {"_count": 1}, "larger": {"_count": 1}, "emaciated": {"_count": 1}, "full": {"_count": 1}, "whitefaced": {"_count": 1}, "to": {"_count": 1}, "crazed": {"_count": 1}, "exercising": {"_count": 1}, "moving": {"_count": 1}, "possessed": {"_count": 1}, "": {"_count": 1}, "roused": {"_count": 1}, "amazing": {"_count": 1}, "planning": {"_count": 1}, "dueling": {"_count": 1}, "half": {"_count": 1}, "rolling": {"_count": 1}, "confident": {"_count": 1}, "highly": {"_count": 1}, "accompanied": {"_count": 1}, "one": {"_count": 1}, "tiny": {"_count": 1}, "perfectly": {"_count": 1}, "thrown": {"_count": 1}, "killed": {"_count": 2}, "searching": {"_count": 1}}, "got": {"_count": 46, "into": {"_count": 4}, "stuck": {"_count": 1}, "up": {"_count": 14}, "to": {"_count": 11}, "the": {"_count": 2}, "very": {"_count": 1}, "away": {"_count": 1}, "a": {"_count": 2}, "caught": {"_count": 1}, "off": {"_count": 4}, "back": {"_count": 1}, "himself": {"_count": 1}, "ill": {"_count": 1}, "as": {"_count": 1}, "angry": {"_count": 1}}, "supposed": {"_count": 12, "this": {"_count": 2}, "he": {"_count": 4}, "now": {"_count": 1}, "that": {"_count": 3}, "none": {"_count": 1}, "Ron": {"_count": 1}}, "drummed": {"_count": 2, "his": {"_count": 1}, "lightly": {"_count": 1}}, "didnt": {"_count": 82, "see": {"_count": 1}, "know": {"_count": 10}, "blame": {"_count": 1}, "seem": {"_count": 4}, "say": {"_count": 3}, "look": {"_count": 3}, "have": {"_count": 6}, "feel": {"_count": 3}, "catch": {"_count": 1}, "realize": {"_count": 2}, "think": {"_count": 3}, "even": {"_count": 2}, "dare": {"_count": 2}, "want": {"_count": 10}, "move": {"_count": 2}, "work": {"_count": 1}, "mean": {"_count": 1}, "argue": {"_count": 1}, "stop": {"_count": 1}, "care": {"_count": 4}, "understand": {"_count": 1}, "take": {"_count": 1}, "actually": {"_count": 1}, "talk": {"_count": 1}, "need": {"_count": 2}, "mention": {"_count": 1}, "tell": {"_count": 1}, "appear": {"_count": 1}, "sound": {"_count": 1}, "like": {"_count": 4}, "refuse": {"_count": 1}, "only": {"_count": 1}, "give": {"_count": 1}, "let": {"_count": 2}, "make": {"_count": 1}, "really": {"_count": 1}}, "yelled": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "made": {"_count": 21, "several": {"_count": 1}, "his": {"_count": 2}, "sure": {"_count": 2}, "a": {"_count": 3}, "himself": {"_count": 1}, "him": {"_count": 1}, "wild": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}, "Mrs": {"_count": 1}, "it": {"_count": 1}, "no": {"_count": 1}, "seven": {"_count": 1}, "exceptionally": {"_count": 1}, "your": {"_count": 1}, "Kreacher": {"_count": 1}, "Krums": {"_count": 1}}, "eyed": {"_count": 1, "them": {"_count": 1}}, "looked": {"_count": 243, "back": {"_count": 8}, "simply": {"_count": 1}, "even": {"_count": 1}, "so": {"_count": 1}, "suddenly": {"_count": 3}, "terrified": {"_count": 3}, "tearful": {"_count": 1}, "closer": {"_count": 1}, "around": {"_count": 44}, "in": {"_count": 1}, "behind": {"_count": 1}, "very": {"_count": 5}, "at": {"_count": 18}, "skyward": {"_count": 1}, "carefully": {"_count": 1}, "as": {"_count": 8}, "up": {"_count": 31}, "down": {"_count": 27}, "dimly": {"_count": 1}, "over": {"_count": 4}, "wildly": {"_count": 3}, "feverishly": {"_count": 1}, "nervous": {"_count": 2}, "into": {"_count": 3}, "strangely": {"_count": 1}, "ill": {"_count": 1}, "pale": {"_count": 1}, "like": {"_count": 3}, "sober": {"_count": 1}, "closely": {"_count": 1}, "hopelessly": {"_count": 1}, "livid": {"_count": 1}, "shocked": {"_count": 1}, "exhausted": {"_count": 1}, "surlier": {"_count": 1}, "completely": {"_count": 2}, "positively": {"_count": 1}, "a": {"_count": 3}, "from": {"_count": 2}, "slightly": {"_count": 3}, "almost": {"_count": 1}, "after": {"_count": 1}, "both": {"_count": 2}, "particularly": {"_count": 1}, "thoroughly": {"_count": 1}, "utterly": {"_count": 1}, "furiously": {"_count": 1}, "dazed": {"_count": 1}, "interrogatively": {"_count": 1}, "perfectly": {"_count": 1}, "most": {"_count": 2}, "helplessly": {"_count": 1}, "just": {"_count": 1}, "eagerly": {"_count": 2}, "for": {"_count": 1}, "quickly": {"_count": 1}, "doubtfully": {"_count": 1}, "toward": {"_count": 1}, "rather": {"_count": 2}, "absolutely": {"_count": 1}, "ahead": {"_count": 1}, "highly": {"_count": 1}, "away": {"_count": 4}, "quite": {"_count": 2}, "hopefully": {"_count": 2}, "wary": {"_count": 1}, "unnerved": {"_count": 1}, "less": {"_count": 1}, "uncertainly": {"_count": 1}, "curiously": {"_count": 1}, "disturbed": {"_count": 1}, "left": {"_count": 1}, "mean": {"_count": 1}, "out": {"_count": 2}, "sideways": {"_count": 1}, "ghostly": {"_count": 1}, "years": {"_count": 1}, "happy": {"_count": 1}, "fleetingly": {"_count": 1}}, "dashed": {"_count": 6, "back": {"_count": 1}, "to": {"_count": 2}, "up": {"_count": 2}, "from": {"_count": 1}}, "put": {"_count": 31, "the": {"_count": 5}, "Harrys": {"_count": 1}, "Hedwig": {"_count": 1}, "on": {"_count": 4}, "Hagrids": {"_count": 1}, "his": {"_count": 8}, "down": {"_count": 3}, "them": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 3}, "back": {"_count": 1}, "me": {"_count": 1}}, "found": {"_count": 14, "it": {"_count": 3}, "what": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "that": {"_count": 1}, "her": {"_count": 1}, "Ron": {"_count": 1}, "this": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "had": {"_count": 498, "been": {"_count": 48}, "a": {"_count": 29}, "had": {"_count": 4}, "no": {"_count": 24}, "leapt": {"_count": 1}, "just": {"_count": 26}, "decided": {"_count": 1}, "done": {"_count": 2}, "already": {"_count": 7}, "never": {"_count": 40}, "always": {"_count": 6}, "only": {"_count": 3}, "looked": {"_count": 1}, "his": {"_count": 6}, "clearly": {"_count": 2}, "to": {"_count": 24}, "seen": {"_count": 6}, "almost": {"_count": 4}, "written": {"_count": 2}, "the": {"_count": 12}, "astonishingly": {"_count": 1}, "turned": {"_count": 3}, "spent": {"_count": 1}, "emerged": {"_count": 2}, "reckoned": {"_count": 1}, "stopped": {"_count": 5}, "pale": {"_count": 1}, "patched": {"_count": 1}, "even": {"_count": 2}, "pushed": {"_count": 1}, "simply": {"_count": 1}, "stayed": {"_count": 1}, "shut": {"_count": 1}, "removed": {"_count": 1}, "said": {"_count": 3}, "gone": {"_count": 3}, "made": {"_count": 4}, "so": {"_count": 1}, "completely": {"_count": 4}, "pinned": {"_count": 1}, "broken": {"_count": 1}, "sensed": {"_count": 1}, "several": {"_count": 1}, "touched": {"_count": 1}, "bowed": {"_count": 1}, "heard": {"_count": 4}, "finally": {"_count": 1}, "awoken": {"_count": 2}, "em": {"_count": 1}, "achieved": {"_count": 1}, "provided": {"_count": 1}, "forgotten": {"_count": 8}, "started": {"_count": 1}, "transformed": {"_count": 1}, "grown": {"_count": 1}, "expected": {"_count": 10}, "distinctly": {"_count": 1}, "lost": {"_count": 5}, "cake": {"_count": 1}, "emptied": {"_count": 1}, "rarely": {"_count": 2}, "moaned": {"_count": 1}, "walked": {"_count": 1}, "become": {"_count": 2}, "teetered": {"_count": 1}, "hoodwinked": {"_count": 1}, "long": {"_count": 1}, "thought": {"_count": 7}, "both": {"_count": 1}, "not": {"_count": 22}, "dropped": {"_count": 1}, "barely": {"_count": 6}, "an": {"_count": 2}, "reached": {"_count": 5}, "sneaked": {"_count": 1}, "less": {"_count": 1}, "let": {"_count": 1}, "visited": {"_count": 1}, "got": {"_count": 2}, "one": {"_count": 5}, "put": {"_count": 2}, "searched": {"_count": 1}, "gills": {"_count": 1}, "soon": {"_count": 1}, "inherited": {"_count": 1}, "two": {"_count": 1}, "yet": {"_count": 1}, "closed": {"_count": 1}, "come": {"_count": 1}, "captured": {"_count": 1}, "tortured": {"_count": 1}, "merely": {"_count": 2}, "avoided": {"_count": 1}, "moved": {"_count": 2}, "revisited": {"_count": 1}, "run": {"_count": 1}, "short": {"_count": 1}, "very": {"_count": 1}, "recently": {"_count": 1}, "forced": {"_count": 1}, "last": {"_count": 1}, "more": {"_count": 2}, "hardly": {"_count": 1}, "known": {"_count": 7}, "managed": {"_count": 1}, "enough": {"_count": 1}, "imagined": {"_count": 3}, "booked": {"_count": 1}, "wavy": {"_count": 1}, "autographed": {"_count": 1}, "named": {"_count": 1}, "fallen": {"_count": 1}, "drawn": {"_count": 4}, "ended": {"_count": 1}, "passed": {"_count": 2}, "hurried": {"_count": 1}, "half": {"_count": 1}, "now": {"_count": 1}, "quite": {"_count": 1}, "read": {"_count": 1}, "edged": {"_count": 1}, "probably": {"_count": 1}, "remained": {"_count": 1}, "gazed": {"_count": 1}, "squinted": {"_count": 1}, "small": {"_count": 1}, "pointed": {"_count": 1}, "stowed": {"_count": 1}, "loathed": {"_count": 1}, "Harry": {"_count": 1}, "found": {"_count": 1}, "lagged": {"_count": 1}, "still": {"_count": 1}, "shown": {"_count": 1}, "trodden": {"_count": 1}, "brains": {"_count": 1}, "but": {"_count": 1}, "consented": {"_count": 1}, "spoken": {"_count": 1}, "sat": {"_count": 1}, "sometimes": {"_count": 1}, "it": {"_count": 1}, "once": {"_count": 1}, "nearly": {"_count": 2}, "shouted": {"_count": 1}, "purewhite": {"_count": 1}, "him": {"_count": 1}, "soared": {"_count": 1}, "also": {"_count": 1}, "waited": {"_count": 1}, "spilled": {"_count": 1}, "trusted": {"_count": 1}, "returned": {"_count": 1}, "backed": {"_count": 1}, "sunk": {"_count": 1}, "scared": {"_count": 1}, "pulled": {"_count": 1}, "dislodged": {"_count": 1}, "disappeared": {"_count": 1}, "learned": {"_count": 1}, "described": {"_count": 1}, "chosen": {"_count": 1}, "shaken": {"_count": 1}, "traveled": {"_count": 1}, "failed": {"_count": 1}, "spotted": {"_count": 1}, "rendered": {"_count": 1}}, "also": {"_count": 10, "thought": {"_count": 1}, "realized": {"_count": 1}, "remembered": {"_count": 1}, "wondered": {"_count": 1}, "felt": {"_count": 3}, "suspected": {"_count": 1}, "likes": {"_count": 1}, "had": {"_count": 1}}, "hurried": {"_count": 16, "to": {"_count": 3}, "out": {"_count": 3}, "over": {"_count": 2}, "off": {"_count": 2}, "through": {"_count": 1}, "forward": {"_count": 2}, "back": {"_count": 2}, "down": {"_count": 1}}, "cleared": {"_count": 8, "his": {"_count": 8}}, "decided": {"_count": 5, "he": {"_count": 1}, "just": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}}, "couldnt": {"_count": 43, "see": {"_count": 7}, "kill": {"_count": 1}, "know": {"_count": 1}, "remember": {"_count": 2}, "stop": {"_count": 3}, "miss": {"_count": 1}, "turn": {"_count": 1}, "direct": {"_count": 1}, "stay": {"_count": 1}, "believe": {"_count": 2}, "ever": {"_count": 1}, "move": {"_count": 2}, "seem": {"_count": 1}, "not": {"_count": 1}, "help": {"_count": 3}, "afford": {"_count": 1}, "like": {"_count": 1}, "hear": {"_count": 3}, "walk": {"_count": 1}, "think": {"_count": 1}, "deny": {"_count": 1}, "ask": {"_count": 1}, "": {"_count": 2}, "quite": {"_count": 2}, "have": {"_count": 1}, "tell": {"_count": 1}}, "chuckled": {"_count": 3, "and": {"_count": 1}, "at": {"_count": 2}}, "flicked": {"_count": 5, "it": {"_count": 1}, "through": {"_count": 2}, "back": {"_count": 1}, "his": {"_count": 1}}, "clicked": {"_count": 5, "it": {"_count": 2}, "his": {"_count": 2}, "the": {"_count": 1}}, "turned": {"_count": 112, "to": {"_count": 31}, "on": {"_count": 3}, "right": {"_count": 4}, "his": {"_count": 14}, "back": {"_count": 6}, "and": {"_count": 9}, "quickly": {"_count": 1}, "around": {"_count": 9}, "the": {"_count": 4}, "intending": {"_count": 1}, "halfway": {"_count": 1}, "away": {"_count": 9}, "Draco": {"_count": 1}, "full": {"_count": 1}, "a": {"_count": 2}, "from": {"_count": 2}, "again": {"_count": 1}, "sideways": {"_count": 1}, "shook": {"_count": 1}, "over": {"_count": 3}, "onto": {"_count": 1}, "in": {"_count": 1}, "very": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "There": {"_count": 1}, "red": {"_count": 1}, "Hagrid": {"_count": 1}}, "never": {"_count": 15, "had": {"_count": 2}, "wrote": {"_count": 1}, "": {"_count": 1}, "knew": {"_count": 3}, "even": {"_count": 1}, "varied": {"_count": 1}, "managed": {"_count": 1}, "leaves": {"_count": 1}, "told": {"_count": 2}, "said": {"_count": 1}, "defeated": {"_count": 1}}, "went": {"_count": 14, "to": {"_count": 4}, "straight": {"_count": 1}, "back": {"_count": 3}, "quiet": {"_count": 1}, "completely": {"_count": 1}, "up": {"_count": 1}, "upstairs": {"_count": 1}, "into": {"_count": 1}, "mental": {"_count": 1}}, "does": {"_count": 7, "tend": {"_count": 1}, "not": {"_count": 6}}, "fell": {"_count": 10, "asleep": {"_count": 2}, "face": {"_count": 1}, "hard": {"_count": 1}, "silent": {"_count": 2}, "through": {"_count": 1}, "to": {"_count": 1}, "backward": {"_count": 1}, "headlong": {"_count": 1}}, "bent": {"_count": 19, "his": {"_count": 3}, "down": {"_count": 9}, "and": {"_count": 3}, "over": {"_count": 2}, "to": {"_count": 1}, "a": {"_count": 1}}, "laid": {"_count": 3, "Harry": {"_count": 1}, "the": {"_count": 2}}, "could": {"_count": 223, "just": {"_count": 3}, "see": {"_count": 28}, "go": {"_count": 1}, "hear": {"_count": 34}, "be": {"_count": 4}, "remember": {"_count": 3}, "run": {"_count": 2}, "vividly": {"_count": 1}, "guess": {"_count": 1}, "even": {"_count": 1}, "tell": {"_count": 11}, "have": {"_count": 8}, "feel": {"_count": 21}, "almost": {"_count": 2}, "not": {"_count": 71}, "no": {"_count": 4}, "understand": {"_count": 1}, "only": {"_count": 4}, "still": {"_count": 3}, "hardly": {"_count": 2}, "smell": {"_count": 2}, "stillve": {"_count": 1}, "if": {"_count": 1}, "now": {"_count": 1}, "as": {"_count": 1}, "abandon": {"_count": 1}, "describe": {"_count": 1}, "visualize": {"_count": 1}, "reverse": {"_count": 1}, "imagine": {"_count": 1}, "easily": {"_count": 1}, "sense": {"_count": 1}, "stand": {"_count": 1}, "also": {"_count": 1}, "barely": {"_count": 1}, "think": {"_count": 1}, "give": {"_count": 1}}, "rolled": {"_count": 11, "onto": {"_count": 1}, "over": {"_count": 4}, "down": {"_count": 1}, "up": {"_count": 2}, "cautiously": {"_count": 1}, "right": {"_count": 1}, "sideways": {"_count": 1}}, "wore": {"_count": 6, "round": {"_count": 2}, "halfmoon": {"_count": 1}, "glasses": {"_count": 1}, "a": {"_count": 1}, "spectacles": {"_count": 1}}, "ruffled": {"_count": 1, "Dudleys": {"_count": 1}}, "always": {"_count": 10, "sp": {"_count": 1}, "seems": {"_count": 1}, "thinks": {"_count": 1}, "had": {"_count": 1}, "lets": {"_count": 2}, "spoke": {"_count": 1}, "hinted": {"_count": 1}, "did": {"_count": 1}, "knows": {"_count": 1}}, "shot": {"_count": 6, "Harry": {"_count": 1}, "a": {"_count": 4}, "another": {"_count": 1}}, "liked": {"_count": 3, "to": {"_count": 1}, "being": {"_count": 1}, "it": {"_count": 1}}, "shuffled": {"_count": 2, "away": {"_count": 1}, "forward": {"_count": 1}}, "wouldnt": {"_count": 12, "have": {"_count": 4}, "believe": {"_count": 1}, "spend": {"_count": 1}, "be": {"_count": 2}, "like": {"_count": 1}, "want": {"_count": 1}, "give": {"_count": 2}}, "managed": {"_count": 4, "to": {"_count": 4}}, "thought": {"_count": 59, "two": {"_count": 1}, "of": {"_count": 15}, "for": {"_count": 4}, "too": {"_count": 1}, "it": {"_count": 1}, "Id": {"_count": 1}, "he": {"_count": 19}, "back": {"_count": 2}, "the": {"_count": 2}, "I": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}, "natural": {"_count": 1}, "at": {"_count": 1}, "like": {"_count": 1}, "Little": {"_count": 1}, "his": {"_count": 1}, "fleetingly": {"_count": 1}, "hard": {"_count": 1}, "that": {"_count": 3}}, "sat": {"_count": 33, "down": {"_count": 9}, "up": {"_count": 11}, "and": {"_count": 1}, "back": {"_count": 3}, "on": {"_count": 1}, "quite": {"_count": 2}, "there": {"_count": 3}, "with": {"_count": 1}, "bolt": {"_count": 1}, "low": {"_count": 1}}, "handed": {"_count": 11, "Uncle": {"_count": 1}, "Harry": {"_count": 3}, "them": {"_count": 1}, "over": {"_count": 3}, "her": {"_count": 2}, "the": {"_count": 1}}, "gave": {"_count": 38, "his": {"_count": 3}, "it": {"_count": 2}, "Harry": {"_count": 2}, "them": {"_count": 1}, "a": {"_count": 15}, "another": {"_count": 3}, "the": {"_count": 6}, "Harrys": {"_count": 1}, "an": {"_count": 1}, "him": {"_count": 1}, "Hermione": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}}, "took": {"_count": 61, "a": {"_count": 21}, "off": {"_count": 4}, "out": {"_count": 4}, "Hermiones": {"_count": 1}, "the": {"_count": 5}, "refuge": {"_count": 1}, "his": {"_count": 2}, "Harry": {"_count": 3}, "another": {"_count": 2}, "not": {"_count": 1}, "stuff": {"_count": 1}, "two": {"_count": 1}, "it": {"_count": 2}, "one": {"_count": 2}, "deep": {"_count": 1}, "several": {"_count": 2}, "Ginny": {"_count": 1}, "Sirius": {"_count": 1}, "back": {"_count": 1}, "them": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 2}, "into": {"_count": 1}}, "mustnt": {"_count": 1, "wake": {"_count": 1}}, "stole": {"_count": 3, "downstairs": {"_count": 1}, "some": {"_count": 1}, "it": {"_count": 1}}, "shouted": {"_count": 5, "at": {"_count": 1}, "something": {"_count": 1}, "aloud": {"_count": 1}, "Protego": {"_count": 1}, "\u2018Its": {"_count": 1}}, "stayed": {"_count": 3, "at": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}, "hummed": {"_count": 1, "Tiptoe": {"_count": 1}}, "drove": {"_count": 1, "them": {"_count": 1}}, "tried": {"_count": 45, "to": {"_count": 36}, "not": {"_count": 2}, "very": {"_count": 1}, "asking": {"_count": 1}, "said": {"_count": 1}, "twice": {"_count": 1}, "for": {"_count": 1}, "boosting": {"_count": 1}, "interfering": {"_count": 1}}, "shivered": {"_count": 1, "and": {"_count": 1}}, "lay": {"_count": 14, "and": {"_count": 1}, "on": {"_count": 3}, "down": {"_count": 2}, "there": {"_count": 2}, "for": {"_count": 1}, "quite": {"_count": 1}, "awake": {"_count": 1}, "back": {"_count": 1}, "facedown": {"_count": 1}, "in": {"_count": 1}}, "hoped": {"_count": 3, "the": {"_count": 1}, "when": {"_count": 1}, "very": {"_count": 1}}, "strode": {"_count": 19, "over": {"_count": 4}, "out": {"_count": 2}, "off": {"_count": 1}, "to": {"_count": 2}, "away": {"_count": 2}, "across": {"_count": 2}, "back": {"_count": 1}, "blindly": {"_count": 1}, "straight": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 1}, "right": {"_count": 1}}, "meant": {"_count": 1, "to": {"_count": 1}}, "held": {"_count": 25, "out": {"_count": 13}, "up": {"_count": 6}, "it": {"_count": 3}, "his": {"_count": 1}, "the": {"_count": 2}}, "passed": {"_count": 10, "the": {"_count": 3}, "a": {"_count": 1}, "Filch": {"_count": 1}, "Snape": {"_count": 1}, "Seamus": {"_count": 1}, "so": {"_count": 1}, "over": {"_count": 1}, "her": {"_count": 1}}, "pulled": {"_count": 65, "out": {"_count": 20}, "a": {"_count": 5}, "the": {"_count": 13}, "one": {"_count": 1}, "his": {"_count": 7}, "it": {"_count": 4}, "open": {"_count": 2}, "Harrys": {"_count": 1}, "off": {"_count": 2}, "two": {"_count": 1}, "Buckbeaks": {"_count": 1}, "Siriuss": {"_count": 1}, "her": {"_count": 2}, "an": {"_count": 1}, "from": {"_count": 1}, "Luna": {"_count": 1}, "hard": {"_count": 1}, "himself": {"_count": 1}}, "threw": {"_count": 19, "a": {"_count": 2}, "his": {"_count": 4}, "it": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "Dobby": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 6}, "me": {"_count": 1}, "aside": {"_count": 1}, "Hermione": {"_count": 1}}, "came": {"_count": 12, "ter": {"_count": 1}, "to": {"_count": 3}, "back": {"_count": 3}, "around": {"_count": 1}, "home": {"_count": 1}, "last": {"_count": 1}, "out": {"_count": 1}, "across": {"_count": 1}}, "brought": {"_count": 5, "the": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 2}, "one": {"_count": 1}}, "cast": {"_count": 8, "a": {"_count": 2}, "an": {"_count": 2}, "around": {"_count": 3}, "Harry": {"_count": 1}}, "wants": {"_count": 10, "payin": {"_count": 1}, "to": {"_count": 2}, "a": {"_count": 2}, "something": {"_count": 2}, "company": {"_count": 1}, "me": {"_count": 1}, "it": {"_count": 1}}, "usually": {"_count": 3, "gets": {"_count": 1}, "picked": {"_count": 1}, "kept": {"_count": 1}}, "remembers": {"_count": 2, "": {"_count": 1}, "me": {"_count": 1}}, "laughed": {"_count": 3, "nervously": {"_count": 1}, "so": {"_count": 1}, "before": {"_count": 1}}, "tapped": {"_count": 5, "the": {"_count": 1}, "his": {"_count": 1}, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}, "Ginny": {"_count": 1}}, "grinned": {"_count": 8, "at": {"_count": 4}, "too": {"_count": 1}, "broadly": {"_count": 2}, "up": {"_count": 1}}, "bowed": {"_count": 1, "as": {"_count": 1}}, "did": {"_count": 111, "look": {"_count": 1}, "still": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 3}, "said": {"_count": 1}, "indeed": {"_count": 1}, "not": {"_count": 91}, "a": {"_count": 1}, "the": {"_count": 3}, "run": {"_count": 1}, "hope": {"_count": 1}, "recognize": {"_count": 1}, "know": {"_count": 1}, "feel": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "stroked": {"_count": 3, "the": {"_count": 3}}, "works": {"_count": 6, "at": {"_count": 2}, "for": {"_count": 2}, "in": {"_count": 1}, "very": {"_count": 1}}, "told": {"_count": 21, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 1}, "them": {"_count": 2}, "em": {"_count": 1}, "me": {"_count": 11}, "Borgin": {"_count": 1}, "her": {"_count": 1}, "Voldemort": {"_count": 1}, "Hermione": {"_count": 1}, "us": {"_count": 1}}, "shook": {"_count": 10, "his": {"_count": 7}, "Harry": {"_count": 1}, "hands": {"_count": 1}, "the": {"_count": 1}}, "measured": {"_count": 1, "Harry": {"_count": 1}}, "felt": {"_count": 107, "a": {"_count": 12}, "particularly": {"_count": 1}, "braver": {"_count": 1}, "very": {"_count": 3}, "so": {"_count": 2}, "Quirrells": {"_count": 1}, "perfectly": {"_count": 1}, "his": {"_count": 6}, "the": {"_count": 7}, "relieved": {"_count": 2}, "weak": {"_count": 1}, "drained": {"_count": 2}, "dazed": {"_count": 1}, "himself": {"_count": 3}, "numb": {"_count": 1}, "it": {"_count": 3}, "much": {"_count": 2}, "more": {"_count": 1}, "as": {"_count": 11}, "temporarily": {"_count": 1}, "angry": {"_count": 2}, "its": {"_count": 1}, "that": {"_count": 5}, "older": {"_count": 1}, "vaguely": {"_count": 1}, "shaken": {"_count": 1}, "Ron": {"_count": 1}, "dirty": {"_count": 1}, "he": {"_count": 3}, "several": {"_count": 1}, "sick": {"_count": 2}, "stupid": {"_count": 1}, "just": {"_count": 1}, "elated": {"_count": 1}, "slightly": {"_count": 1}, "suddenly": {"_count": 1}, "strange": {"_count": 1}, "stunned": {"_count": 1}, "no": {"_count": 1}, "in": {"_count": 2}, "incredibly": {"_count": 1}, "like": {"_count": 2}, "Voldemort": {"_count": 1}, "ashamed": {"_count": 1}, "irrationally": {"_count": 1}, "beleaguered": {"_count": 1}, "hungry": {"_count": 1}, "exactly": {"_count": 1}, "empty": {"_count": 1}, "armed": {"_count": 1}, "lightheaded": {"_count": 1}, "Voldemorts": {"_count": 1}, "again": {"_count": 1}, "amused": {"_count": 1}, "ghostly": {"_count": 1}}, "raised": {"_count": 44, "the": {"_count": 12}, "his": {"_count": 29}, "Rons": {"_count": 1}, "a": {"_count": 2}}, "wasnt": {"_count": 29, "sure": {"_count": 2}, "the": {"_count": 2}, "in": {"_count": 2}, "a": {"_count": 3}, "even": {"_count": 2}, "alone": {"_count": 2}, "happy": {"_count": 1}, "so": {"_count": 1}, "ready": {"_count": 1}, "going": {"_count": 2}, "following": {"_count": 1}, "dreading": {"_count": 1}, "smiling": {"_count": 1}, "laughing": {"_count": 1}, "attracting": {"_count": 1}, "looking": {"_count": 1}, "entirely": {"_count": 1}, "trying": {"_count": 1}, "anywhere": {"_count": 1}, "dead": {"_count": 1}, "exactly": {"_count": 1}}, "paid": {"_count": 1, "seven": {"_count": 1}}, "bought": {"_count": 1, "Harry": {"_count": 1}}, "checked": {"_count": 3, "his": {"_count": 1}, "Percys": {"_count": 1}, "the": {"_count": 1}}, "left": {"_count": 14, "without": {"_count": 1}, "": {"_count": 3}, "Quirrell": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 2}, "you": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}, "more": {"_count": 1}, "part": {"_count": 1}}, "stopped": {"_count": 16, "a": {"_count": 1}, "his": {"_count": 2}, "again": {"_count": 1}, "on": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "looking": {"_count": 1}, "suddenly": {"_count": 1}, "laughing": {"_count": 1}, "careful": {"_count": 1}, "talking": {"_count": 1}, "in": {"_count": 2}, "walking": {"_count": 1}}, "wondered": {"_count": 25, "if": {"_count": 1}, "suddenly": {"_count": 1}, "whether": {"_count": 14}, "how": {"_count": 4}, "bleakly": {"_count": 1}, "why": {"_count": 1}, "what": {"_count": 1}, "when": {"_count": 1}, "who": {"_count": 1}}, "pushed": {"_count": 19, "his": {"_count": 5}, "open": {"_count": 3}, "the": {"_count": 4}, "up": {"_count": 2}, "it": {"_count": 1}, "Harry": {"_count": 1}, "himself": {"_count": 2}, "past": {"_count": 1}}, "started": {"_count": 11, "to": {"_count": 3}, "having": {"_count": 1}, "at": {"_count": 1}, "opening": {"_count": 1}, "making": {"_count": 1}, "running": {"_count": 1}, "playing": {"_count": 1}, "screaming": {"_count": 1}, "walking": {"_count": 1}}, "is": {"_count": 43, "said": {"_count": 1}, "with": {"_count": 1}, "still": {"_count": 1}, "too": {"_count": 2}, "not": {"_count": 4}, "clearly": {"_count": 1}, "trying": {"_count": 1}, "wanting": {"_count": 1}, "getting": {"_count": 1}, "very": {"_count": 1}, "needing": {"_count": 1}, "buying": {"_count": 1}, "so": {"_count": 1}, "indisposed": {"_count": 1}, "nosing": {"_count": 1}, "sending": {"_count": 1}, "mad": {"_count": 1}, "dead": {"_count": 2}, "now": {"_count": 1}, "at": {"_count": 1}, "mine": {"_count": 1}, "back": {"_count": 1}, "simply": {"_count": 1}, "returned": {"_count": 1}, "here": {"_count": 2}, "mental": {"_count": 1}, "Ron": {"_count": 1}, "planning": {"_count": 1}, "peddling": {"_count": 1}, "nearing": {"_count": 1}, "mediocre": {"_count": 1}, "able": {"_count": 1}, "much": {"_count": 1}, "determined": {"_count": 1}, "bound": {"_count": 1}, "panicking": {"_count": 1}, "his": {"_count": 1}}, "wriggled": {"_count": 2, "free": {"_count": 1}, "out": {"_count": 1}}, "glanced": {"_count": 40, "at": {"_count": 9}, "over": {"_count": 5}, "nervously": {"_count": 1}, "around": {"_count": 11}, "up": {"_count": 5}, "out": {"_count": 2}, "sideways": {"_count": 3}, "along": {"_count": 1}, "down": {"_count": 2}, "vaguely": {"_count": 1}}, "pointed": {"_count": 24, "at": {"_count": 8}, "excitedly": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 2}, "one": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 4}, "with": {"_count": 1}, "over": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}}, "seemed": {"_count": 39, "to": {"_count": 22}, "numb": {"_count": 1}, "beyond": {"_count": 1}, "furious": {"_count": 1}, "so": {"_count": 1}, "intent": {"_count": 1}, "really": {"_count": 1}, "too": {"_count": 1}, "not": {"_count": 1}, "remarkably": {"_count": 1}, "polite": {"_count": 1}, "unable": {"_count": 2}, "a": {"_count": 1}, "momentarily": {"_count": 1}, "simultaneously": {"_count": 1}, "just": {"_count": 1}, "set": {"_count": 1}}, "finally": {"_count": 2, "tore": {"_count": 1}, "tracked": {"_count": 1}}, "keeps": {"_count": 5, "getting": {"_count": 1}, "offering": {"_count": 1}, "talking": {"_count": 1}, "saying": {"_count": 1}, "trying": {"_count": 1}}, "might": {"_count": 21, "have": {"_count": 6}, "not": {"_count": 3}, "write": {"_count": 1}, "even": {"_count": 4}, "be": {"_count": 3}, "said": {"_count": 1}, "as": {"_count": 1}, "just": {"_count": 1}, "expect": {"_count": 1}}, "rummaged": {"_count": 3, "around": {"_count": 1}, "in": {"_count": 2}}, "waved": {"_count": 8, "his": {"_count": 4}, "Barty": {"_count": 1}, "then": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}}, "flopped": {"_count": 1, "back": {"_count": 1}}, "says": {"_count": 19, "Malfoys": {"_count": 1}, "hes": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 4}, "Berthas": {"_count": 1}, "someone": {"_count": 1}, "Crouch": {"_count": 1}, "that": {"_count": 1}, "\u2018counterjinx": {"_count": 1}, "": {"_count": 1}, "hell": {"_count": 1}, "youre": {"_count": 1}, "very": {"_count": 1}, "it": {"_count": 1}, "Professor": {"_count": 1}, "there": {"_count": 1}}, "and": {"_count": 59, "Ron": {"_count": 16}, "the": {"_count": 4}, "his": {"_count": 3}, "Hermione": {"_count": 12}, "Stan": {"_count": 1}, "Krum": {"_count": 1}, "Filch": {"_count": 1}, "Fred": {"_count": 1}, "Dumbledore": {"_count": 3}, "Harry": {"_count": 1}, "Cedric": {"_count": 2}, "Voldemort": {"_count": 2}, "George": {"_count": 3}, "all": {"_count": 1}, "Mr": {"_count": 1}, "Mrs": {"_count": 1}, "Professor": {"_count": 1}, "Cho": {"_count": 1}, "Hagrid": {"_count": 1}, "Luna": {"_count": 2}, "Dolohov": {"_count": 1}}, "hadnt": {"_count": 10, "expected": {"_count": 1}, "been": {"_count": 1}, "even": {"_count": 1}, "seen": {"_count": 2}, "told": {"_count": 1}, "done": {"_count": 1}, "thought": {"_count": 1}, "mentioned": {"_count": 1}, "given": {"_count": 1}}, "kept": {"_count": 29, "his": {"_count": 7}, "threatening": {"_count": 1}, "glancing": {"_count": 2}, "checking": {"_count": 1}, "wondering": {"_count": 1}, "talking": {"_count": 1}, "springing": {"_count": 1}, "saying": {"_count": 2}, "listening": {"_count": 1}, "looking": {"_count": 2}, "clicking": {"_count": 1}, "reliving": {"_count": 1}, "messing": {"_count": 1}, "on": {"_count": 1}, "putting": {"_count": 1}, "up": {"_count": 1}, "me": {"_count": 1}, "reciting": {"_count": 1}, "swallowing": {"_count": 1}, "telling": {"_count": 1}}, "gasped": {"_count": 3, "": {"_count": 3}}, "gives": {"_count": 1, "us": {"_count": 1}}, "heard": {"_count": 35, "Hermione": {"_count": 2}, "hooves": {"_count": 1}, "a": {"_count": 4}, "urgent": {"_count": 1}, "whoever": {"_count": 1}, "Ron": {"_count": 4}, "the": {"_count": 7}, "something": {"_count": 1}, "Voldemorts": {"_count": 1}, "Dudley": {"_count": 1}, "Sirius": {"_count": 1}, "Fred": {"_count": 1}, "whispers": {"_count": 1}, "Madam": {"_count": 1}, "every": {"_count": 1}, "one": {"_count": 1}, "only": {"_count": 1}, "nothing": {"_count": 1}, "screams": {"_count": 1}, "Hermiones": {"_count": 1}, "them": {"_count": 1}, "another": {"_count": 1}}, "remembered": {"_count": 16, "being": {"_count": 1}, "exactly": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 5}, "his": {"_count": 1}, "worrying": {"_count": 1}, "seeing": {"_count": 1}, "it": {"_count": 2}, "Dumbledore": {"_count": 1}, "He": {"_count": 1}, "how": {"_count": 1}}, "waited": {"_count": 15, "": {"_count": 3}, "until": {"_count": 5}, "for": {"_count": 5}, "eagerly": {"_count": 1}, "holding": {"_count": 1}}, "seized": {"_count": 16, "his": {"_count": 5}, "the": {"_count": 6}, "Harrys": {"_count": 1}, "Malfoy": {"_count": 1}, "Tonkss": {"_count": 1}, "papers": {"_count": 1}, "Hermione": {"_count": 1}}, "teaches": {"_count": 1, "Potions": {"_count": 1}}, "swooped": {"_count": 3, "suddenly": {"_count": 1}, "like": {"_count": 1}, "as": {"_count": 1}}, "would": {"_count": 47, "drop": {"_count": 1}, "lie": {"_count": 1}, "have": {"_count": 20}, "creep": {"_count": 1}, "willingly": {"_count": 1}, "talk": {"_count": 1}, "be": {"_count": 2}, "grab": {"_count": 1}, "not": {"_count": 6}, "hear": {"_count": 1}, "come": {"_count": 1}, "spend": {"_count": 1}, "do": {"_count": 2}, "walk": {"_count": 1}, "if": {"_count": 1}, "encase": {"_count": 1}, "need": {"_count": 1}, "want": {"_count": 1}, "try": {"_count": 1}, "yield": {"_count": 1}, "visit": {"_count": 1}}, "spoke": {"_count": 8, "in": {"_count": 1}, "politely": {"_count": 1}, "quite": {"_count": 2}, "as": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}}, "ignored": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "swept": {"_count": 4, "around": {"_count": 1}, "past": {"_count": 1}, "off": {"_count": 1}, "between": {"_count": 1}}, "let": {"_count": 18, "them": {"_count": 3}, "the": {"_count": 1}, "go": {"_count": 1}, "out": {"_count": 6}, "me": {"_count": 2}, "himself": {"_count": 1}, "Harry": {"_count": 1}, "no": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "grunted": {"_count": 1, "and": {"_count": 1}}, "complained": {"_count": 1, "loudly": {"_count": 1}}, "opened": {"_count": 28, "it": {"_count": 3}, "the": {"_count": 7}, "his": {"_count": 17}, "one": {"_count": 1}}, "mounted": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "leaned": {"_count": 10, "forward": {"_count": 4}, "against": {"_count": 2}, "on": {"_count": 1}, "across": {"_count": 1}, "even": {"_count": 1}, "over": {"_count": 1}}, "wanted": {"_count": 51, "to": {"_count": 34}, "Quidditch": {"_count": 1}, "the": {"_count": 4}, "more": {"_count": 3}, "me": {"_count": 4}, "Sirius": {"_count": 1}, "us": {"_count": 1}, "people": {"_count": 1}, "something": {"_count": 1}, "you": {"_count": 1}}, "caught": {"_count": 15, "that": {"_count": 1}, "sight": {"_count": 4}, "himself": {"_count": 2}, "Harrys": {"_count": 2}, "up": {"_count": 2}, "a": {"_count": 2}, "it": {"_count": 1}, "hold": {"_count": 1}}, "thinks": {"_count": 7, "this": {"_count": 1}, "hes": {"_count": 2}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "Im": {"_count": 1}, "it": {"_count": 1}}, "bolted": {"_count": 1, "his": {"_count": 1}}, "showed": {"_count": 7, "Harry": {"_count": 2}, "Snape": {"_count": 2}, "in": {"_count": 1}, "Borgin": {"_count": 1}, "no": {"_count": 1}}, "understood": {"_count": 2, "what": {"_count": 1}, "how": {"_count": 1}}, "then": {"_count": 15, "sank": {"_count": 1}, "took": {"_count": 1}, "pointed": {"_count": 1}, "climbed": {"_count": 1}, "walked": {"_count": 1}, "opened": {"_count": 1}, "dashed": {"_count": 1}, "crept": {"_count": 1}, "poured": {"_count": 1}, "bent": {"_count": 1}, "swapped": {"_count": 1}, "looked": {"_count": 1}, "made": {"_count": 1}, "faced": {"_count": 1}, "felt": {"_count": 1}}, "crossed": {"_count": 6, "the": {"_count": 2}, "to": {"_count": 3}, "it": {"_count": 1}}, "wiped": {"_count": 5, "it": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 2}}, "wished": {"_count": 17, "Ron": {"_count": 3}, "he": {"_count": 9}, "theyd": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}, "very": {"_count": 1}, "that": {"_count": 1}}, "limped": {"_count": 2, "over": {"_count": 1}, "toward": {"_count": 1}}, "knocked": {"_count": 3, "again": {"_count": 1}, "Malfoys": {"_count": 1}, "": {"_count": 1}}, "sprinted": {"_count": 8, "back": {"_count": 3}, "upstairs": {"_count": 1}, "up": {"_count": 1}, "out": {"_count": 2}, "half": {"_count": 1}}, "glared": {"_count": 4, "at": {"_count": 4}}, "gripped": {"_count": 5, "the": {"_count": 3}, "his": {"_count": 2}}, "stared": {"_count": 30, "through": {"_count": 1}, "at": {"_count": 12}, "unblinkingly": {"_count": 1}, "guiltily": {"_count": 1}, "": {"_count": 1}, "down": {"_count": 4}, "hard": {"_count": 1}, "numbly": {"_count": 1}, "up": {"_count": 1}, "hopelessly": {"_count": 1}, "all": {"_count": 1}, "apparently": {"_count": 1}, "around": {"_count": 2}, "into": {"_count": 1}, "ahead": {"_count": 1}}, "Ron": {"_count": 16, "and": {"_count": 14}, "Fred": {"_count": 2}}, "unwrapped": {"_count": 1, "it": {"_count": 1}}, "suspected": {"_count": 3, "he": {"_count": 1}, "me": {"_count": 1}, "Black": {"_count": 1}}, "slipped": {"_count": 8, "out": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}, "past": {"_count": 1}, "his": {"_count": 3}, "a": {"_count": 1}}, "crept": {"_count": 2, "out": {"_count": 1}, "along": {"_count": 1}}, "walked": {"_count": 40, "quickly": {"_count": 2}, "over": {"_count": 4}, "forward": {"_count": 2}, "up": {"_count": 2}, "away": {"_count": 5}, "off": {"_count": 1}, "quietly": {"_count": 1}, "resolutely": {"_count": 1}, "out": {"_count": 1}, "once": {"_count": 1}, "across": {"_count": 3}, "on": {"_count": 3}, "lazily": {"_count": 1}, "close": {"_count": 1}, "around": {"_count": 3}, "very": {"_count": 1}, "slowly": {"_count": 2}, "into": {"_count": 2}, "toward": {"_count": 1}, "half": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}}, "set": {"_count": 14, "off": {"_count": 10}, "out": {"_count": 1}, "the": {"_count": 1}, "Dawlish": {"_count": 1}, "it": {"_count": 1}}, "stumbled": {"_count": 7, "backward": {"_count": 2}, "to": {"_count": 1}, "but": {"_count": 1}, "forward": {"_count": 1}, "toward": {"_count": 1}, "and": {"_count": 1}}, "backed": {"_count": 4, "away": {"_count": 2}, "out": {"_count": 1}, "around": {"_count": 1}}, "squeezed": {"_count": 2, "through": {"_count": 1}, "Buckbeaks": {"_count": 1}}, "stepped": {"_count": 14, "in": {"_count": 1}, "forward": {"_count": 2}, "into": {"_count": 3}, "off": {"_count": 1}, "over": {"_count": 2}, "down": {"_count": 1}, "sideways": {"_count": 1}, "smartly": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}}, "whirled": {"_count": 1, "around": {"_count": 1}}, "reached": {"_count": 19, "out": {"_count": 5}, "the": {"_count": 6}, "into": {"_count": 1}, "forward": {"_count": 1}, "for": {"_count": 1}, "up": {"_count": 2}, "a": {"_count": 1}, "Harry": {"_count": 1}, "across": {"_count": 1}}, "tore": {"_count": 2, "his": {"_count": 1}, "off": {"_count": 1}}, "must": {"_count": 21, "have": {"_count": 10}, "be": {"_count": 5}, "really": {"_count": 1}, "not": {"_count": 1}, "try": {"_count": 1}, "make": {"_count": 1}, "act": {"_count": 1}, "speak": {"_count": 1}}, "said": {"_count": 37, "hed": {"_count": 7}, "that": {"_count": 2}, "we": {"_count": 1}, "nothing": {"_count": 3}, "he": {"_count": 3}, "hes": {"_count": 2}, "something": {"_count": 1}, "someone": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 4}, "my": {"_count": 1}, "the": {"_count": 2}, "well": {"_count": 1}, "Dad": {"_count": 1}, "\u2018His": {"_count": 1}, "Harry": {"_count": 1}, "gruffly": {"_count": 1}, "Bode": {"_count": 1}, "Professor": {"_count": 1}, "in": {"_count": 1}, "replied": {"_count": 1}}, "recognized": {"_count": 8, "the": {"_count": 4}, "Peter": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "one": {"_count": 1}}, "followed": {"_count": 9, "": {"_count": 1}, "Lupin": {"_count": 1}, "Cedric": {"_count": 1}, "Moody": {"_count": 1}, "his": {"_count": 1}, "Mr": {"_count": 1}, "Mundungus": {"_count": 1}, "her": {"_count": 2}}, "flew": {"_count": 5, "in": {"_count": 1}, "backward": {"_count": 2}, "higher": {"_count": 1}, "back": {"_count": 1}}, "glided": {"_count": 1, "toward": {"_count": 1}}, "climbed": {"_count": 8, "carefully": {"_count": 1}, "through": {"_count": 1}, "over": {"_count": 1}, "into": {"_count": 2}, "the": {"_count": 2}, "backward": {"_count": 1}}, "steadied": {"_count": 1, "himself": {"_count": 1}}, "asked": {"_count": 9, "if": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 5}, "him": {"_count": 1}}, "probably": {"_count": 5, "knew": {"_count": 1}, "suspected": {"_count": 1}, "wants": {"_count": 1}, "doesnt": {"_count": 1}, "told": {"_count": 1}}, "ushered": {"_count": 1, "them": {"_count": 1}}, "really": {"_count": 8, "knows": {"_count": 2}, "wanted": {"_count": 1}, "couldnt": {"_count": 1}, "trusts": {"_count": 1}, "didnt": {"_count": 1}, "thought": {"_count": 1}, "gets": {"_count": 1}}, "knew": {"_count": 87, "Neville": {"_count": 1}, "Dumbledore": {"_count": 1}, "it": {"_count": 7}, "the": {"_count": 2}, "now": {"_count": 1}, "immediately": {"_count": 2}, "that": {"_count": 23}, "he": {"_count": 12}, "who": {"_count": 3}, "they": {"_count": 1}, "perfectly": {"_count": 2}, "Snape": {"_count": 1}, "of": {"_count": 2}, "what": {"_count": 8}, "Dudley": {"_count": 1}, "how": {"_count": 1}, "Moody": {"_count": 1}, "long": {"_count": 1}, "she": {"_count": 1}, "exactly": {"_count": 2}, "where": {"_count": 1}, "all": {"_count": 1}, "one": {"_count": 1}, "even": {"_count": 1}, "said": {"_count": 1}, "when": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 2}, "nothing": {"_count": 1}, "Id": {"_count": 1}, "why": {"_count": 1}, "I": {"_count": 1}, "only": {"_count": 1}}, "half": {"_count": 2, "expected": {"_count": 1}, "wished": {"_count": 1}}, "led": {"_count": 11, "them": {"_count": 4}, "Harry": {"_count": 3}, "the": {"_count": 2}, "a": {"_count": 1}, "Ron": {"_count": 1}}, "flung": {"_count": 7, "back": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 1}, "himself": {"_count": 3}, "open": {"_count": 1}}, "paced": {"_count": 2, "up": {"_count": 1}, "the": {"_count": 1}}, "nearly": {"_count": 4, "had": {"_count": 1}, "extinguished": {"_count": 1}, "died": {"_count": 1}, "dropped": {"_count": 1}}, "watched": {"_count": 18, "an": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}, "as": {"_count": 5}, "Bagman": {"_count": 1}, "her": {"_count": 3}, "them": {"_count": 1}, "some": {"_count": 1}, "trying": {"_count": 1}, "Voldemorts": {"_count": 1}, "his": {"_count": 1}}, "saw": {"_count": 46, "the": {"_count": 6}, "his": {"_count": 1}, "Dobbys": {"_count": 1}, "Fred": {"_count": 2}, "Ron": {"_count": 2}, "my": {"_count": 1}, "a": {"_count": 8}, "Mr": {"_count": 1}, "it": {"_count": 2}, "Krums": {"_count": 1}, "everything": {"_count": 1}, "Malfoy": {"_count": 1}, "Fleur": {"_count": 1}, "himself": {"_count": 2}, "Dudley": {"_count": 1}, "them": {"_count": 2}, "me": {"_count": 1}, "that": {"_count": 1}, "Dean": {"_count": 1}, "what": {"_count": 1}, "Hermiones": {"_count": 1}, "quills": {"_count": 1}, "concern": {"_count": 1}, "Hermione": {"_count": 2}, "Rons": {"_count": 1}, "Lucius": {"_count": 1}, "Voldemort": {"_count": 1}, "Neville": {"_count": 1}}, "received": {"_count": 1, "an": {"_count": 1}}, "sent": {"_count": 5, "that": {"_count": 1}, "you": {"_count": 1}, "Professor": {"_count": 1}, "another": {"_count": 1}, "Ron": {"_count": 1}}, "pocketed": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "ran": {"_count": 22, "back": {"_count": 2}, "onto": {"_count": 1}, "forward": {"_count": 2}, "this": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 2}, "over": {"_count": 1}, "away": {"_count": 1}, "after": {"_count": 1}, "headfirst": {"_count": 1}, "down": {"_count": 3}, "up": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "while": {"_count": 1}}, "narrowed": {"_count": 1, "his": {"_count": 1}}, "rose": {"_count": 2, "up": {"_count": 1}, "quickly": {"_count": 1}}, "lowered": {"_count": 10, "himself": {"_count": 2}, "his": {"_count": 7}, "the": {"_count": 1}}, "landed": {"_count": 1, "sprawled": {"_count": 1}}, "expected": {"_count": 6, "to": {"_count": 2}, "nothing": {"_count": 1}, "Dad": {"_count": 1}, "the": {"_count": 2}}, "rammed": {"_count": 1, "it": {"_count": 1}}, "himself": {"_count": 2, "darted": {"_count": 1}, "fitted": {"_count": 1}}, "has": {"_count": 35, "had": {"_count": 1}, "braved": {"_count": 1}, "been": {"_count": 7}, "his": {"_count": 1}, "the": {"_count": 1}, "just": {"_count": 1}, "hidden": {"_count": 1}, "also": {"_count": 1}, "achieved": {"_count": 2}, "done": {"_count": 1}, "a": {"_count": 1}, "insisted": {"_count": 1}, "clearly": {"_count": 1}, "consented": {"_count": 1}, "lately": {"_count": 1}, "fought": {"_count": 1}, "no": {"_count": 1}, "to": {"_count": 2}, "since": {"_count": 1}, "known": {"_count": 1}, "never": {"_count": 1}, "now": {"_count": 1}, "gone": {"_count": 1}, "even": {"_count": 1}, "tried": {"_count": 1}, "traveled": {"_count": 1}, "her": {"_count": 1}}, "punished": {"_count": 1, "me": {"_count": 1}}, "clapped": {"_count": 4, "his": {"_count": 2}, "a": {"_count": 1}, "Harry": {"_count": 1}}, "closed": {"_count": 19, "his": {"_count": 15}, "the": {"_count": 4}}, "lies": {"_count": 2, "": {"_count": 2}}, "blinked": {"_count": 4, "": {"_count": 1}, "again": {"_count": 1}, "looked": {"_count": 1}, "and": {"_count": 1}}, "realized": {"_count": 3, "he": {"_count": 1}, "what": {"_count": 1}, "now": {"_count": 1}}, "saved": {"_count": 2, "his": {"_count": 1}, "your": {"_count": 1}}, "smiled": {"_count": 6, "and": {"_count": 1}, "at": {"_count": 2}, "slightly": {"_count": 1}, "to": {"_count": 1}, "ruefully": {"_count": 1}}, "exchanged": {"_count": 2, "dark": {"_count": 1}, "another": {"_count": 1}}, "missed": {"_count": 3, "Hogwarts": {"_count": 1}, "the": {"_count": 2}}, "gazed": {"_count": 9, "miserably": {"_count": 1}, "for": {"_count": 1}, "into": {"_count": 1}, "at": {"_count": 1}, "blankly": {"_count": 1}, "dreamily": {"_count": 1}, "around": {"_count": 1}, "up": {"_count": 2}}, "hasnt": {"_count": 9, "got": {"_count": 2}, "done": {"_count": 1}, "come": {"_count": 1}, "stopped": {"_count": 1}, "said": {"_count": 1}, "gone": {"_count": 1}, "been": {"_count": 2}}, "WhoMustNotBeNamed": {"_count": 4, "at": {"_count": 1}, "": {"_count": 3}}, "stomped": {"_count": 3, "flatfooted": {"_count": 1}, "around": {"_count": 1}, "off": {"_count": 1}}, "jumped": {"_count": 5, "the": {"_count": 1}, "down": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}}, "shooed": {"_count": 1, "the": {"_count": 1}}, "dreamed": {"_count": 2, "that": {"_count": 2}}, "hates": {"_count": 2, "me": {"_count": 1}, "Sirius": {"_count": 1}}, "takes": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "knows": {"_count": 12, "his": {"_count": 1}, "Im": {"_count": 2}, "where": {"_count": 2}, "she": {"_count": 1}, "the": {"_count": 1}, "man": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "carried": {"_count": 3, "Errol": {"_count": 1}, "on": {"_count": 1}, "them": {"_count": 1}}, "mopped": {"_count": 1, "his": {"_count": 1}}, "straightened": {"_count": 3, "up": {"_count": 3}}, "dropped": {"_count": 17, "his": {"_count": 9}, "into": {"_count": 1}, "the": {"_count": 3}, "these": {"_count": 1}, "a": {"_count": 2}, "to": {"_count": 1}}, "stood": {"_count": 33, "with": {"_count": 1}, "quite": {"_count": 2}, "in": {"_count": 1}, "up": {"_count": 20}, "back": {"_count": 3}, "there": {"_count": 1}, "staring": {"_count": 1}, "gazing": {"_count": 1}, "pokerstraight": {"_count": 1}, "watching": {"_count": 1}, "before": {"_count": 1}}, "thrust": {"_count": 7, "it": {"_count": 2}, "out": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 1}}, "barely": {"_count": 4, "had": {"_count": 2}, "talked": {"_count": 1}, "made": {"_count": 1}}, "wheeled": {"_count": 4, "his": {"_count": 1}, "around": {"_count": 2}, "about": {"_count": 1}}, "began": {"_count": 11, "to": {"_count": 10}, "edging": {"_count": 1}}, "now": {"_count": 4, "felt": {"_count": 1}, "had": {"_count": 1}, "understood": {"_count": 1}, "proceeded": {"_count": 1}}, "swallowed": {"_count": 8, "and": {"_count": 2}, "": {"_count": 3}, "hard": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "just": {"_count": 11, "wants": {"_count": 1}, "managed": {"_count": 1}, "stood": {"_count": 1}, "kept": {"_count": 1}, "didnt": {"_count": 2}, "got": {"_count": 2}, "wanted": {"_count": 3}}, "guards": {"_count": 1, "the": {"_count": 1}}, "soared": {"_count": 1, "right": {"_count": 1}}, "didn": {"_count": 1, "": {"_count": 1}}, "retched": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "winked": {"_count": 3, "at": {"_count": 2}, "": {"_count": 1}}, "gritted": {"_count": 1, "his": {"_count": 1}}, "retrieved": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "stuttered": {"_count": 1, "to": {"_count": 1}}, "peered": {"_count": 7, "at": {"_count": 2}, "more": {"_count": 1}, "out": {"_count": 2}, "over": {"_count": 1}, "into": {"_count": 1}}, "paused": {"_count": 14, "gazed": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}, "at": {"_count": 3}, "for": {"_count": 2}, "looking": {"_count": 1}, "outside": {"_count": 1}, "": {"_count": 3}}, "believed": {"_count": 4, "that": {"_count": 2}, "it": {"_count": 1}, "he": {"_count": 1}}, "disliked": {"_count": 1, "taking": {"_count": 1}}, "broke": {"_count": 11, "off": {"_count": 9}, "a": {"_count": 1}, "into": {"_count": 1}}, "scrawled": {"_count": 1, "an": {"_count": 1}}, "focused": {"_count": 1, "on": {"_count": 1}}, "should": {"_count": 10, "really": {"_count": 1}, "have": {"_count": 4}, "know": {"_count": 1}, "said": {"_count": 1}, "be": {"_count": 2}, "never": {"_count": 1}}, "blew": {"_count": 2, "his": {"_count": 2}}, "slumped": {"_count": 3, "back": {"_count": 1}, "backward": {"_count": 1}, "sideways": {"_count": 1}}, "crumpled": {"_count": 1, "up": {"_count": 1}}, "tells": {"_count": 2, "me": {"_count": 2}}, "brandished": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "lived": {"_count": 3, "about": {"_count": 1}, "alone": {"_count": 1}, "out": {"_count": 1}}, "cant": {"_count": 22, "be": {"_count": 7}, "go": {"_count": 1}, "believe": {"_count": 2}, "just": {"_count": 1}, "avoid": {"_count": 1}, "have": {"_count": 4}, "come": {"_count": 2}, "hear": {"_count": 1}, "miss": {"_count": 1}, "get": {"_count": 1}, "know": {"_count": 1}}, "flipped": {"_count": 2, "the": {"_count": 1}, "over": {"_count": 1}}, "grabbed": {"_count": 7, "the": {"_count": 3}, "both": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 2}}, "read": {"_count": 10, "her": {"_count": 1}, "the": {"_count": 6}, "it": {"_count": 1}, "out": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "banged": {"_count": 2, "on": {"_count": 1}, "the": {"_count": 1}}, "loves": {"_count": 5, "Muggle": {"_count": 1}, "playing": {"_count": 1}, "being": {"_count": 1}, "them": {"_count": 1}, "you": {"_count": 1}}, "shifted": {"_count": 1, "restlessly": {"_count": 1}}, "mustve": {"_count": 7, "been": {"_count": 1}, "known": {"_count": 3}, "left": {"_count": 1}, "upset": {"_count": 1}, "hidden": {"_count": 1}}, "sounds": {"_count": 3, "like": {"_count": 1}, "okay": {"_count": 1}, "exactly": {"_count": 1}}, "continued": {"_count": 10, "to": {"_count": 7}, "As": {"_count": 1}, "On": {"_count": 1}, "still": {"_count": 1}}, "sighed": {"_count": 6, "heavily": {"_count": 1}, "deeply": {"_count": 4}, "": {"_count": 1}}, "wouldn": {"_count": 1, "": {"_count": 1}}, "hardly": {"_count": 3, "seemed": {"_count": 1}, "heard": {"_count": 1}, "ever": {"_count": 1}}, "poured": {"_count": 2, "them": {"_count": 1}, "it": {"_count": 1}}, "entered": {"_count": 2, "looking": {"_count": 1}, "cautiously": {"_count": 1}}, "even": {"_count": 7, "found": {"_count": 1}, "joined": {"_count": 1}, "threw": {"_count": 1}, "wondered": {"_count": 1}, "forgot": {"_count": 1}, "lived": {"_count": 1}, "looked": {"_count": 1}}, "scanned": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "persuaded": {"_count": 1, "Dippet": {"_count": 1}}, "Harry": {"_count": 5, "had": {"_count": 4}, "Hermione": {"_count": 1}}, "looks": {"_count": 11, "like": {"_count": 5}, "really": {"_count": 1}, "a": {"_count": 2}, "exactly": {"_count": 1}, "bad": {"_count": 1}, "fine": {"_count": 1}}, "means": {"_count": 1, "you": {"_count": 1}}, "disappeared": {"_count": 3, "after": {"_count": 1}, "and": {"_count": 1}, "down": {"_count": 1}}, "nodded": {"_count": 11, "at": {"_count": 3}, "toward": {"_count": 2}, "sneeringly": {"_count": 1}, "and": {"_count": 1}, "hardly": {"_count": 1}, "here": {"_count": 1}, "but": {"_count": 1}, "slowly": {"_count": 1}}, "wrenched": {"_count": 8, "open": {"_count": 2}, "the": {"_count": 3}, "his": {"_count": 1}, "himself": {"_count": 2}}, "crashed": {"_count": 1, "down": {"_count": 1}}, "replaced": {"_count": 1, "the": {"_count": 1}}, "picked": {"_count": 14, "up": {"_count": 12}, "it": {"_count": 1}, "his": {"_count": 1}}, "helped": {"_count": 3, "himself": {"_count": 2}, "Fred": {"_count": 1}}, "pines": {"_count": 1, "if": {"_count": 1}}, "forced": {"_count": 12, "his": {"_count": 4}, "himself": {"_count": 4}, "Hermione": {"_count": 1}, "down": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "emptied": {"_count": 1, "the": {"_count": 1}}, "kicked": {"_count": 5, "his": {"_count": 3}, "hard": {"_count": 1}, "toward": {"_count": 1}}, "fumbled": {"_count": 2, "behind": {"_count": 1}, "in": {"_count": 1}}, "suddenly": {"_count": 6, "remembered": {"_count": 3}, "whipped": {"_count": 1}, "looked": {"_count": 1}, "wished": {"_count": 1}}, "murdered": {"_count": 1, "thirteen": {"_count": 1}}, "placed": {"_count": 5, "the": {"_count": 3}, "Flying": {"_count": 1}, "his": {"_count": 1}}, "drew": {"_count": 7, "on": {"_count": 1}, "his": {"_count": 3}, "up": {"_count": 1}, "out": {"_count": 1}, "a": {"_count": 1}}, "tramped": {"_count": 1, "up": {"_count": 1}}, "been": {"_count": 1, "a": {"_count": 1}}, "used": {"_count": 8, "to": {"_count": 6}, "magic": {"_count": 1}, "giants": {"_count": 1}}, "needs": {"_count": 3, "rest": {"_count": 1}, "to": {"_count": 1}, "quiet": {"_count": 1}}, "hesitated": {"_count": 12, "not": {"_count": 1}, "and": {"_count": 1}, "thinking": {"_count": 1}, "": {"_count": 1}, "then": {"_count": 2}, "here": {"_count": 1}, "for": {"_count": 2}, "listening": {"_count": 1}, "a": {"_count": 1}, "outside": {"_count": 1}}, "scowled": {"_count": 3, "at": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "jerked": {"_count": 3, "his": {"_count": 2}, "a": {"_count": 1}}, "strolled": {"_count": 1, "past": {"_count": 1}}, "wont": {"_count": 5, "be": {"_count": 3}, "stay": {"_count": 1}, "come": {"_count": 1}}, "clanked": {"_count": 1, "to": {"_count": 1}}, "emerged": {"_count": 2, "into": {"_count": 1}, "from": {"_count": 1}}, "consulted": {"_count": 2, "Unfogging": {"_count": 1}, "his": {"_count": 1}}, "untied": {"_count": 2, "one": {"_count": 1}, "it": {"_count": 1}}, "patted": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "swaggered": {"_count": 1, "into": {"_count": 1}}, "trickled": {"_count": 1, "a": {"_count": 1}}, "smirked": {"_count": 4, "at": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 1}}, "becomes": {"_count": 1, "confused": {"_count": 1}}, "seems": {"_count": 4, "like": {"_count": 1}, "aware": {"_count": 1}, "to": {"_count": 2}}, "dresses": {"_count": 1, "like": {"_count": 1}}, "accompanied": {"_count": 1, "them": {"_count": 1}}, "considered": {"_count": 1, "Harry": {"_count": 1}}, "drank": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "couldve": {"_count": 2, "flown": {"_count": 1}, "nicked": {"_count": 1}}, "revived": {"_count": 1, "a": {"_count": 1}}, "lost": {"_count": 3, "track": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 1}}, "needed": {"_count": 6, "to": {"_count": 3}, "time": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "doubted": {"_count": 4, "whether": {"_count": 1}, "very": {"_count": 1}, "however": {"_count": 1}, "that": {"_count": 1}}, "slid": {"_count": 2, "a": {"_count": 1}, "into": {"_count": 1}}, "folded": {"_count": 4, "it": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}, "this": {"_count": 1}}, "edged": {"_count": 1, "among": {"_count": 1}}, "advised": {"_count": 1, "them": {"_count": 1}}, "loved": {"_count": 4, "that": {"_count": 1}, "everything": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}}, "doesnt": {"_count": 13, "have": {"_count": 1}, "want": {"_count": 3}, "seem": {"_count": 1}, "need": {"_count": 2}, "look": {"_count": 1}, "care": {"_count": 1}, "mean": {"_count": 2}, "think": {"_count": 1}, "like": {"_count": 1}}, "positively": {"_count": 1, "fled": {"_count": 1}}, "racked": {"_count": 1, "his": {"_count": 1}}, "therefore": {"_count": 11, "increased": {"_count": 1}, "settled": {"_count": 1}, "had": {"_count": 1}, "started": {"_count": 1}, "approached": {"_count": 1}, "pulled": {"_count": 1}, "plunged": {"_count": 1}, "sprinted": {"_count": 1}, "set": {"_count": 1}, "withdrew": {"_count": 1}, "hurried": {"_count": 1}}, "screwed": {"_count": 4, "up": {"_count": 4}}, "deserves": {"_count": 1, "it": {"_count": 1}}, "bit": {"_count": 3, "Goyle": {"_count": 1}, "me": {"_count": 1}, "back": {"_count": 1}}, "only": {"_count": 9, "hoped": {"_count": 2}, "knew": {"_count": 1}, "followed": {"_count": 1}, "gave": {"_count": 1}, "wanted": {"_count": 2}, "said": {"_count": 1}, "approached": {"_count": 1}}, "dived": {"_count": 4, "again": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "accelerated": {"_count": 2, "so": {"_count": 1}, "rolling": {"_count": 1}}, "stretched": {"_count": 9, "out": {"_count": 7}, "his": {"_count": 2}}, "approached": {"_count": 6, "Harry": {"_count": 2}, "Lupin": {"_count": 1}, "the": {"_count": 2}, "one": {"_count": 1}}, "too": {"_count": 6, "was": {"_count": 2}, "began": {"_count": 1}, "put": {"_count": 1}, "glanced": {"_count": 1}, "broke": {"_count": 1}}, "he": {"_count": 7, "sent": {"_count": 2}, "was": {"_count": 1}, "cant": {"_count": 1}, "just": {"_count": 1}, "who": {"_count": 1}, "wasnt": {"_count": 1}}, "settled": {"_count": 3, "himself": {"_count": 3}}, "slithered": {"_count": 2, "between": {"_count": 1}, "over": {"_count": 1}}, "fought": {"_count": 3, "free": {"_count": 1}, "very": {"_count": 1}, "it": {"_count": 1}}, "assigned": {"_count": 1, "that": {"_count": 1}}, "separated": {"_count": 1, "Harrys": {"_count": 1}}, "killed": {"_count": 6, "him": {"_count": 1}, "Lily": {"_count": 1}, "enough": {"_count": 1}, "my": {"_count": 1}, "me": {"_count": 1}, "Arent": {"_count": 1}}, "especially": {"_count": 1, "disliked": {"_count": 1}}, "can": {"_count": 12, "go": {"_count": 2}, "still": {"_count": 1}, "watch": {"_count": 1}, "read": {"_count": 1}, "hardly": {"_count": 1}, "make": {"_count": 1}, "get": {"_count": 2}, "tell": {"_count": 1}, "have": {"_count": 1}, "punish": {"_count": 1}}, "muttered": {"_count": 1, "Mobilicorpus": {"_count": 1}}, "hung": {"_count": 1, "a": {"_count": 1}}, "leapt": {"_count": 9, "forward": {"_count": 1}, "from": {"_count": 2}, "in": {"_count": 1}, "over": {"_count": 2}, "to": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}}, "spun": {"_count": 3, "around": {"_count": 3}}, "explained": {"_count": 1, "what": {"_count": 1}}, "nudged": {"_count": 2, "Buckbeaks": {"_count": 1}, "Ron": {"_count": 1}}, "listened": {"_count": 1, "intently": {"_count": 1}}, "escaped": {"_count": 1, "": {"_count": 1}}, "betrayed": {"_count": 3, "my": {"_count": 1}, "too": {"_count": 2}}, "certainly": {"_count": 3, "wasnt": {"_count": 1}, "had": {"_count": 1}, "looked": {"_count": 1}}, "ripped": {"_count": 3, "open": {"_count": 2}, "back": {"_count": 1}}, "likes": {"_count": 5, "to": {"_count": 1}, "the": {"_count": 1}, "chasing": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "examined": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "concentrated": {"_count": 2, "hard": {"_count": 1}, "every": {"_count": 1}}, "amused": {"_count": 1, "himself": {"_count": 1}}, "noticed": {"_count": 4, "that": {"_count": 3}, "a": {"_count": 1}}, "unfolded": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "moved": {"_count": 15, "ever": {"_count": 1}, "quickly": {"_count": 1}, "forward": {"_count": 4}, "over": {"_count": 2}, "off": {"_count": 1}, "his": {"_count": 1}, "toward": {"_count": 2}, "closer": {"_count": 1}, "down": {"_count": 1}, "on": {"_count": 1}}, "annoys": {"_count": 1, "me": {"_count": 1}}, "failed": {"_count": 3, "the": {"_count": 1}, "to": {"_count": 2}}, "retreated": {"_count": 1, "a": {"_count": 1}}, "Disapparated": {"_count": 3, "": {"_count": 2}, "from": {"_count": 1}}, "played": {"_count": 2, "Quidditch": {"_count": 1}, "Seeker": {"_count": 1}}, "hoisted": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "speaks": {"_count": 3, "about": {"_count": 1}, "over": {"_count": 1}, "very": {"_count": 1}}, "ended": {"_count": 2, "it": {"_count": 1}, "up": {"_count": 1}}, "no": {"_count": 3, "longer": {"_count": 1}, "live": {"_count": 2}}, "heaved": {"_count": 7, "a": {"_count": 5}, "Ron": {"_count": 1}, "the": {"_count": 1}}, "bustled": {"_count": 3, "out": {"_count": 1}, "away": {"_count": 1}, "back": {"_count": 1}}, "whipped": {"_count": 3, "me": {"_count": 1}, "around": {"_count": 1}, "his": {"_count": 1}}, "mightve": {"_count": 1, "mentioned": {"_count": 1}}, "neither": {"_count": 2, "moved": {"_count": 1}, "confirmed": {"_count": 1}}, "spotted": {"_count": 3, "Hedwig": {"_count": 1}, "it": {"_count": 1}, "Ginny": {"_count": 1}}, "sprang": {"_count": 1, "back": {"_count": 1}}, "acknowledged": {"_count": 1, "it": {"_count": 1}}, "surveyed": {"_count": 1, "Fred": {"_count": 1}}, "stumped": {"_count": 4, "out": {"_count": 1}, "off": {"_count": 2}, "over": {"_count": 1}}, "fancies": {"_count": 2, "her": {"_count": 1}, "you": {"_count": 1}}, "hastened": {"_count": 2, "to": {"_count": 1}, "toward": {"_count": 1}}, "pressed": {"_count": 5, "his": {"_count": 2}, "the": {"_count": 3}}, "will": {"_count": 25, "come": {"_count": 2}, "be": {"_count": 4}, "rise": {"_count": 1}, "stay": {"_count": 1}, "undoubtedly": {"_count": 2}, "need": {"_count": 1}, "penetrate": {"_count": 1}, "not": {"_count": 4}, "have": {"_count": 3}, "telephone": {"_count": 1}, "continue": {"_count": 1}, "only": {"_count": 1}, "hate": {"_count": 1}, "want": {"_count": 1}, "know": {"_count": 1}}, "chanced": {"_count": 3, "half": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 1}}, "twirled": {"_count": 1, "the": {"_count": 1}}, "gathered": {"_count": 2, "a": {"_count": 1}, "himself": {"_count": 1}}, "lifted": {"_count": 2, "the": {"_count": 2}}, "ate": {"_count": 1, "alone": {"_count": 1}}, "imagined": {"_count": 5, "how": {"_count": 1}, "himself": {"_count": 1}, "trying": {"_count": 1}, "that": {"_count": 1}, "Voldemort": {"_count": 1}}, "returned": {"_count": 4, "to": {"_count": 2}, "last": {"_count": 1}, "from": {"_count": 1}}, "finished": {"_count": 1, "his": {"_count": 1}}, "spent": {"_count": 3, "the": {"_count": 1}, "most": {"_count": 1}, "much": {"_count": 1}}, "swung": {"_count": 4, "his": {"_count": 4}}, "squared": {"_count": 1, "his": {"_count": 1}}, "er": {"_count": 1, "just": {"_count": 1}}, "still": {"_count": 4, "hadnt": {"_count": 1}, "had": {"_count": 2}, "wont": {"_count": 1}}, "jammed": {"_count": 1, "it": {"_count": 1}}, "strained": {"_count": 2, "to": {"_count": 1}, "his": {"_count": 1}}, "surely": {"_count": 1, "doesnt": {"_count": 1}}, "offered": {"_count": 1, "to": {"_count": 1}}, "shouldnt": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "snapped": {"_count": 1, "it": {"_count": 1}}, "sank": {"_count": 4, "back": {"_count": 1}, "onto": {"_count": 1}, "into": {"_count": 2}}, "lurched": {"_count": 1, "forward": {"_count": 1}}, "pictured": {"_count": 1, "Bagmans": {"_count": 1}}, "avoided": {"_count": 2, "looking": {"_count": 1}, "going": {"_count": 1}}, "twisted": {"_count": 1, "around": {"_count": 1}}, "swam": {"_count": 3, "deeper": {"_count": 1}, "on": {"_count": 1}, "swiftly": {"_count": 1}}, "appeared": {"_count": 4, "to": {"_count": 2}, "according": {"_count": 1}, "around": {"_count": 1}}, "snatched": {"_count": 3, "up": {"_count": 3}}, "fixed": {"_count": 2, "his": {"_count": 2}}, "attempted": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "plunged": {"_count": 1, "a": {"_count": 1}}, "repressed": {"_count": 1, "a": {"_count": 1}}, "tipped": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "died": {"_count": 6, "about": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "some": {"_count": 1}, "as": {"_count": 1}}, "transformed": {"_count": 2, "into": {"_count": 1}, "back": {"_count": 1}}, "enclosed": {"_count": 1, "notes": {"_count": 1}}, "reminded": {"_count": 2, "Harry": {"_count": 2}}, "attacked": {"_count": 1, "me": {"_count": 1}}, "clambered": {"_count": 3, "through": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 1}}, "definitely": {"_count": 2, "mentioned": {"_count": 1}, "had": {"_count": 1}}, "mentioned": {"_count": 1, "his": {"_count": 1}}, "yawned": {"_count": 1, "widely": {"_count": 1}}, "marched": {"_count": 3, "down": {"_count": 1}, "straight": {"_count": 1}, "out": {"_count": 1}}, "wandered": {"_count": 1, "extremely": {"_count": 1}}, "preferred": {"_count": 3, "that": {"_count": 1}, "to": {"_count": 2}}, "alone": {"_count": 2, "knew": {"_count": 2}}, "motioned": {"_count": 1, "for": {"_count": 1}}, "often": {"_count": 1, "got": {"_count": 1}}, "cannot": {"_count": 5, "hope": {"_count": 1}, "give": {"_count": 1}, "block": {"_count": 3}}, "summoned": {"_count": 1, "the": {"_count": 1}}, "clutched": {"_count": 3, "them": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "shut": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "met": {"_count": 6, "nothing": {"_count": 1}, "Snape": {"_count": 1}, "her": {"_count": 1}, "an": {"_count": 1}, "Hermione": {"_count": 1}, "Aberforth": {"_count": 1}}, "weighed": {"_count": 1, "his": {"_count": 1}}, "merely": {"_count": 4, "stood": {"_count": 1}, "looked": {"_count": 2}, "scowled": {"_count": 1}}, "sounded": {"_count": 5, "slightly": {"_count": 1}, "like": {"_count": 1}, "a": {"_count": 1}, "exhausted": {"_count": 1}, "avid": {"_count": 1}}, "staggered": {"_count": 2, "back": {"_count": 1}, "backward": {"_count": 1}}, "caressed": {"_count": 1, "it": {"_count": 1}}, "extended": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "flexed": {"_count": 1, "the": {"_count": 1}}, "scrambled": {"_count": 3, "forward": {"_count": 1}, "through": {"_count": 1}, "up": {"_count": 1}}, "sought": {"_count": 2, "me": {"_count": 1}, "solitude": {"_count": 1}}, "overpowered": {"_count": 1, "her": {"_count": 1}}, "remained": {"_count": 5, "where": {"_count": 1}, "sitting": {"_count": 1}, "a": {"_count": 1}, "confused": {"_count": 1}, "quite": {"_count": 1}}, "forgave": {"_count": 1, "them": {"_count": 1}}, "agreed": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}}, "searched": {"_count": 2, "the": {"_count": 1}, "through": {"_count": 1}}, "dismissed": {"_count": 1, "Winky": {"_count": 1}}, "arrived": {"_count": 2, "at": {"_count": 2}}, "tortured": {"_count": 2, "her": {"_count": 1}, "me": {"_count": 1}}, "became": {"_count": 2, "a": {"_count": 1}, "aware": {"_count": 1}}, "insisted": {"_count": 1, "on": {"_count": 1}}, "witnessed": {"_count": 1, "Lord": {"_count": 1}}, "rocked": {"_count": 1, "backward": {"_count": 1}}, "stuck": {"_count": 2, "out": {"_count": 1}, "it": {"_count": 1}}, "crammed": {"_count": 1, "his": {"_count": 1}}, "suffered": {"_count": 1, "very": {"_count": 1}}, "guessed": {"_count": 2, "that": {"_count": 2}}, "risked": {"_count": 1, "his": {"_count": 1}}, "vos": {"_count": 1, "alvays": {"_count": 1}}, "cheeked": {"_count": 1, "me": {"_count": 1}}, "shuddered": {"_count": 2, "again": {"_count": 1}, "from": {"_count": 1}}, "gestured": {"_count": 3, "at": {"_count": 1}, "toward": {"_count": 1}, "sadly": {"_count": 1}}, "registered": {"_count": 1, "dimly": {"_count": 1}}, "stays": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "addressed": {"_count": 4, "the": {"_count": 2}, "Mr": {"_count": 1}, "Lupin": {"_count": 1}}, "rapped": {"_count": 2, "Harry": {"_count": 2}}, "applied": {"_count": 1, "for": {"_count": 1}}, "accepts": {"_count": 2, "that": {"_count": 2}}, "messed": {"_count": 1, "it": {"_count": 1}}, "tricks": {"_count": 1, "jinxes": {"_count": 1}}, "ducked": {"_count": 2, "": {"_count": 1}, "inside": {"_count": 1}}, "pinned": {"_count": 1, "it": {"_count": 1}}, "beckoned": {"_count": 1, "to": {"_count": 1}}, "extricated": {"_count": 1, "a": {"_count": 1}}, "ought": {"_count": 5, "to": {"_count": 5}}, "awoke": {"_count": 2, "abruptly": {"_count": 1}, "with": {"_count": 1}}, "dug": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "dumped": {"_count": 1, "the": {"_count": 1}}, "isnt": {"_count": 2, "a": {"_count": 1}, "shrinking": {"_count": 1}}, "filed": {"_count": 1, "into": {"_count": 1}}, "stuffed": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "reckons": {"_count": 1, "he": {"_count": 1}}, "underlined": {"_count": 1, "the": {"_count": 1}}, "skipped": {"_count": 1, "breakfast": {"_count": 1}}, "comes": {"_count": 1, "from": {"_count": 1}}, "indicated": {"_count": 4, "the": {"_count": 4}}, "pretended": {"_count": 4, "to": {"_count": 4}}, "bounded": {"_count": 1, "forward": {"_count": 1}}, "regained": {"_count": 1, "his": {"_count": 1}}, "jabbed": {"_count": 1, "at": {"_count": 1}}, "touched": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "zoomed": {"_count": 1, "higher": {"_count": 1}}, "whacked": {"_count": 1, "the": {"_count": 1}}, "insulted": {"_count": 1, "my": {"_count": 1}}, "adjusted": {"_count": 1, "the": {"_count": 1}}, "withdrew": {"_count": 1, "his": {"_count": 1}}, "flapped": {"_count": 2, "his": {"_count": 1}, "after": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "tasted": {"_count": 1, "the": {"_count": 1}}, "reared": {"_count": 1, "high": {"_count": 1}}, "sloped": {"_count": 1, "away": {"_count": 1}}, "hopped": {"_count": 1, "from": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "wishes": {"_count": 2, "me": {"_count": 1}, "none": {"_count": 1}}, "rubbed": {"_count": 3, "his": {"_count": 3}}, "trudged": {"_count": 1, "away": {"_count": 1}}, "simply": {"_count": 2, "did": {"_count": 1}, "skipped": {"_count": 1}}, "drained": {"_count": 2, "his": {"_count": 2}}, "feels": {"_count": 1, "angry": {"_count": 1}}, "publishes": {"_count": 1, "important": {"_count": 1}}, "unrolled": {"_count": 1, "it": {"_count": 1}}, "rested": {"_count": 1, "his": {"_count": 1}}, "relinquished": {"_count": 1, "his": {"_count": 1}}, "swished": {"_count": 1, "his": {"_count": 1}}, "sometimes": {"_count": 1, "felt": {"_count": 1}}, "scooped": {"_count": 1, "up": {"_count": 1}}, "cursed": {"_count": 1, "and": {"_count": 1}}, "shrugged": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "tilted": {"_count": 2, "the": {"_count": 2}}, "hurtled": {"_count": 4, "back": {"_count": 2}, "across": {"_count": 1}, "through": {"_count": 1}}, "inserted": {"_count": 1, "the": {"_count": 1}}, "crouched": {"_count": 5, "down": {"_count": 4}, "behind": {"_count": 1}}, "grew": {"_count": 1, "out": {"_count": 1}}, "WHAT": {"_count": 1, "": {"_count": 1}}, "smashed": {"_count": 1, "lanterns": {"_count": 1}}, "however": {"_count": 1, "seemed": {"_count": 1}}, "don": {"_count": 3, "know": {"_count": 1}, "speak": {"_count": 1}, "say": {"_count": 1}}, "migh": {"_count": 1, "be": {"_count": 1}}, "forgot": {"_count": 1, "the": {"_count": 1}}, "jogged": {"_count": 1, "the": {"_count": 1}}, "knelt": {"_count": 1, "down": {"_count": 1}}, "inhaled": {"_count": 1, "a": {"_count": 1}}, "stooped": {"_count": 4, "a": {"_count": 1}, "picked": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 1}}, "regretted": {"_count": 1, "giving": {"_count": 1}}, "dared": {"_count": 1, "he": {"_count": 1}}, "stands": {"_count": 1, "there": {"_count": 1}}, "dodged": {"_count": 3, "her": {"_count": 1}, "another": {"_count": 1}, "behind": {"_count": 1}}, "darted": {"_count": 2, "forward": {"_count": 2}}, "tugged": {"_count": 3, "and": {"_count": 1}, "again": {"_count": 1}, "open": {"_count": 1}}, "struggled": {"_count": 3, "and": {"_count": 1}, "up": {"_count": 1}, "on": {"_count": 1}}, "aimed": {"_count": 1, "a": {"_count": 1}}, "burst": {"_count": 3, "into": {"_count": 2}, "out": {"_count": 1}}, "like": {"_count": 1, "you": {"_count": 1}}, "alerted": {"_count": 1, "certain": {"_count": 1}}, "delegated": {"_count": 1, "to": {"_count": 1}}, "regarded": {"_count": 1, "him": {"_count": 1}}, "shed": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "discovered": {"_count": 1, "to": {"_count": 1}}, "chose": {"_count": 5, "you": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 2}, "his": {"_count": 1}}, "couldn": {"_count": 1, "have": {"_count": 1}}, "desisted": {"_count": 1, "only": {"_count": 1}}, "somehow": {"_count": 1, "could": {"_count": 1}}, "froze": {"_count": 1, "nose": {"_count": 1}}, "lives": {"_count": 1, "here": {"_count": 1}}, "shares": {"_count": 1, "everything": {"_count": 1}}, "calls": {"_count": 1, "me": {"_count": 1}}, "inclined": {"_count": 1, "his": {"_count": 1}}, "trusts": {"_count": 1, "you": {"_count": 1}}, "intends": {"_count": 1, "me": {"_count": 1}}, "gulped": {"_count": 3, "great": {"_count": 1}, "and": {"_count": 2}}, "bounced": {"_count": 1, "up": {"_count": 1}}, "twiddled": {"_count": 2, "his": {"_count": 2}}, "enjoys": {"_count": 2, "the": {"_count": 1}, "Acid": {"_count": 1}}, "taught": {"_count": 2, "Arthur": {"_count": 1}, "a": {"_count": 1}}, "groped": {"_count": 3, "inside": {"_count": 1}, "for": {"_count": 1}, "behind": {"_count": 1}}, "slit": {"_count": 1, "it": {"_count": 1}}, "contemplated": {"_count": 1, "Harry": {"_count": 1}}, "meandered": {"_count": 1, "off": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "invited": {"_count": 1, "Longbottom": {"_count": 1}}, "reflected": {"_count": 1, "uncomfortably": {"_count": 1}}, "refused": {"_count": 2, "to": {"_count": 1}, "all": {"_count": 1}}, "soon": {"_count": 2, "discovered": {"_count": 2}}, "squinted": {"_count": 2, "into": {"_count": 1}, "again": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "rarely": {"_count": 1, "appeared": {"_count": 1}}, "swilled": {"_count": 1, "the": {"_count": 1}}, "scares": {"_count": 1, "the": {"_count": 1}}, "swore": {"_count": 1, "theyd": {"_count": 1}}, "punched": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "claims": {"_count": 1, "to": {"_count": 1}}, "peeled": {"_count": 1, "a": {"_count": 1}}, "regards": {"_count": 1, "it": {"_count": 1}}, "plans": {"_count": 1, "it": {"_count": 1}}, "called": {"_count": 1, "it": {"_count": 1}}, "accepted": {"_count": 1, "a": {"_count": 1}}, "wrote": {"_count": 1, "spells": {"_count": 1}}, "accused": {"_count": 1, "me": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "admitted": {"_count": 1, "to": {"_count": 1}}, "sniffed": {"_count": 1, "Ernies": {"_count": 1}}, "licked": {"_count": 1, "his": {"_count": 1}}, "bellowed": {"_count": 1, "the": {"_count": 1}}, "turfed": {"_count": 1, "out": {"_count": 1}}, "chortled": {"_count": 1, "again": {"_count": 1}}, "tumbled": {"_count": 1, "through": {"_count": 1}}, "pondered": {"_count": 1, "for": {"_count": 1}}, "refilled": {"_count": 1, "Hagrids": {"_count": 1}}, "corked": {"_count": 1, "the": {"_count": 1}}, "hid": {"_count": 3, "it": {"_count": 2}, "the": {"_count": 1}}, "brushed": {"_count": 1, "some": {"_count": 1}}, "very": {"_count": 1, "quietly": {"_count": 1}}, "supported": {"_count": 2, "Malfoy": {"_count": 1}, "Dumbledores": {"_count": 1}}, "skidded": {"_count": 4, "to": {"_count": 2}, "around": {"_count": 2}}, "questioned": {"_count": 1, "me": {"_count": 1}}, "hated": {"_count": 2, "my": {"_count": 1}, "seeing": {"_count": 1}}, "shoved": {"_count": 2, "the": {"_count": 1}, "aside": {"_count": 1}}, "launched": {"_count": 2, "himself": {"_count": 2}}, "pelted": {"_count": 1, "toward": {"_count": 1}}, "obeyed": {"_count": 3, "its": {"_count": 1}, "": {"_count": 1}, "without": {"_count": 1}}, "immobilized": {"_count": 1, "me": {"_count": 1}}, "clenched": {"_count": 1, "his": {"_count": 1}}, "sped": {"_count": 2, "down": {"_count": 1}, "off": {"_count": 1}}, "despised": {"_count": 1, "Malfoy": {"_count": 1}}, "confessed": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 1, "only": {"_count": 1}}, "dabbled": {"_count": 1, "in": {"_count": 1}}, "tripped": {"_count": 1, "forward": {"_count": 1}}, "vanished": {"_count": 3, "from": {"_count": 1}, "into": {"_count": 1}, "with": {"_count": 1}}, "bloomed": {"_count": 1, "suddenly": {"_count": 1}}, "crawled": {"_count": 1, "out": {"_count": 1}}, "uncorked": {"_count": 1, "it": {"_count": 1}}, "gaped": {"_count": 1, "over": {"_count": 1}}, "chased": {"_count": 1, "MadEye": {"_count": 1}}, "retired": {"_count": 1, "several": {"_count": 1}}, "smoothed": {"_count": 1, "it": {"_count": 1}}, "frowned": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "swayed": {"_count": 1, "": {"_count": 1}}, "filled": {"_count": 1, "it": {"_count": 1}}, "headed": {"_count": 1, "downstairs": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "choked": {"_count": 1, "and": {"_count": 1}}, "prodded": {"_count": 1, "moodily": {"_count": 1}}, "added": {"_count": 1, "something": {"_count": 1}}, "dragged": {"_count": 1, "blankets": {"_count": 1}}, "venerated": {"_count": 1, "Snape": {"_count": 1}}, "recounted": {"_count": 1, "the": {"_count": 1}}, "rushed": {"_count": 1, "on": {"_count": 1}}, "stowed": {"_count": 1, "the": {"_count": 1}}, "riffled": {"_count": 1, "through": {"_count": 1}}, "represents": {"_count": 1, "Kendras": {"_count": 1}}, "were": {"_count": 1, "a": {"_count": 1}}, "changed": {"_count": 2, "Harry": {"_count": 1}, "course": {"_count": 1}}, "shared": {"_count": 1, "a": {"_count": 1}}, "woke": {"_count": 1, "repeatedly": {"_count": 1}}, "well": {"_count": 1, "Rons": {"_count": 1}}, "stirred": {"_count": 1, "several": {"_count": 1}}, "spread": {"_count": 2, "his": {"_count": 2}}, "blamed": {"_count": 1, "Ron": {"_count": 1}}, "experienced": {"_count": 1, "the": {"_count": 1}}, "resolved": {"_count": 1, "not": {"_count": 1}}, "bared": {"_count": 1, "his": {"_count": 1}}, "prowled": {"_count": 1, "behind": {"_count": 1}}, "cut": {"_count": 1, "to": {"_count": 1}}, "selected": {"_count": 1, "the": {"_count": 1}}, "redoubled": {"_count": 1, "his": {"_count": 1}}, "quailed": {"_count": 1, "beneath": {"_count": 1}}, "fastened": {"_count": 1, "his": {"_count": 1}}, "disapproves": {"_count": 1, "": {"_count": 1}}, "whispered": {"_count": 1, "urgently": {"_count": 1}}, "the": {"_count": 1, "greatest": {"_count": 1}}, "learned": {"_count": 1, "secrecy": {"_count": 1}}, "writhed": {"_count": 1, "through": {"_count": 1}}, "spat": {"_count": 1, "at": {"_count": 1}}, "already": {"_count": 2, "knows": {"_count": 1}, "comes": {"_count": 1}}, "sensed": {"_count": 1, "eyes": {"_count": 1}}, "allowed": {"_count": 1, "himself": {"_count": 1}}, "slowed": {"_count": 1, "down": {"_count": 1}}, "tracked": {"_count": 1, "me": {"_count": 1}}, "forged": {"_count": 1, "on": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "yearned": {"_count": 1, "not": {"_count": 1}}, "believes": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "envied": {"_count": 1, "even": {"_count": 1}}, "loped": {"_count": 1, "with": {"_count": 1}}, "recoiled": {"_count": 1, "": {"_count": 1}}, "tethered": {"_count": 1, "you": {"_count": 1}}, "lied": {"_count": 1, "you": {"_count": 1}}, "fears": {"_count": 1, "the": {"_count": 1}}, "beat": {"_count": 1, "you": {"_count": 1}}, "desired": {"_count": 1, "her": {"_count": 1}}, "intended": {"_count": 1, "that": {"_count": 1}}, "directed": {"_count": 1, "his": {"_count": 1}}}, "big": {"_count": 159, "beefy": {"_count": 1, "man": {"_count": 1}}, "to": {"_count": 2, "be": {"_count": 2}}, "one": {"_count": 4, "from": {"_count": 1}, "said": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 1}}, "trash": {"_count": 1, "cans": {"_count": 1}}, "and": {"_count": 4, "stupid": {"_count": 1}, "squashy": {"_count": 1}, "expensive": {"_count": 1}, "it": {"_count": 1}}, "for": {"_count": 8, "it": {"_count": 3}, "him": {"_count": 3}, "his": {"_count": 2}}, "squashy": {"_count": 1, "something": {"_count": 1}}, "city": {"_count": 1, "": {"_count": 1}}, "book": {"_count": 1, "shop": {"_count": 1}}, "as": {"_count": 4, "glowing": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}, "cricket": {"_count": 1}}, "plastic": {"_count": 2, "number": {"_count": 2}}, "hands": {"_count": 1, "and": {"_count": 1}}, "deal": {"_count": 5, "because": {"_count": 1}, "": {"_count": 3}, "though": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "hairy": {"_count": 2, "face": {"_count": 2}}, "you": {"_count": 2, "could": {"_count": 1}, "really": {"_count": 1}}, "a": {"_count": 2, "bunch": {"_count": 1}, "shock": {"_count": 1}}, "argument": {"_count": 1, "with": {"_count": 1}}, "chance": {"_count": 1, "to": {"_count": 1}}, "mistake": {"_count": 4, "": {"_count": 2}, "As": {"_count": 1}, "if": {"_count": 1}}, "enough": {"_count": 9, "to": {"_count": 3}, "by": {"_count": 1}, "for": {"_count": 3}, "envelope": {"_count": 1}, "and": {"_count": 1}}, "oldfashioned": {"_count": 1, "one": {"_count": 1}}, "supporter": {"_count": 2, "of": {"_count": 2}}, "old": {"_count": 1, "manors": {"_count": 1}}, "photograph": {"_count": 2, "on": {"_count": 1}, "of": {"_count": 1}}, "green": {"_count": 1, "pond": {"_count": 1}}, "smile": {"_count": 1, "Harry": {"_count": 1}}, "lumpy": {"_count": 1, "package": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "filthy": {"_count": 1, "spider": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "was": {"_count": 2, "snapping": {"_count": 1}, "this": {"_count": 1}}, "yellow": {"_count": 1, "eyes": {"_count": 1}}, "blundering": {"_count": 1, "Hagrid": {"_count": 1}}, "with": {"_count": 1, "wide": {"_count": 1}}, "black": {"_count": 1, "thing": {"_count": 1}}, "cat": {"_count": 1, "or": {"_count": 1}}, "red": {"_count": 2, "one": {"_count": 1}, "handbag": {"_count": 1}}, "stupid": {"_count": 1, "furball": {"_count": 1}}, "blurred": {"_count": 1, "shapes": {"_count": 1}}, "excitement": {"_count": 1, "this": {"_count": 1}}, "trouble": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}}, "friends": {"_count": 1, "whod": {"_count": 1}}, "house": {"_count": 4, "while": {"_count": 1}, "over": {"_count": 2}, "Tom": {"_count": 1}}, "fat": {"_count": 3, "toffees": {"_count": 1}, "mouth": {"_count": 1}, "lie": {"_count": 1}}, "did": {"_count": 1, "his": {"_count": 1}}, "row": {"_count": 1, "Ginny": {"_count": 1}}, "event": {"_count": 1, "to": {"_count": 1}}, "party": {"_count": 2, "coming": {"_count": 1}, "": {"_count": 1}}, "plans": {"_count": 2, "for": {"_count": 1}, "were": {"_count": 1}}, "bushy": {"_count": 1, "head": {"_count": 1}}, "thing": {"_count": 1, "they": {"_count": 1}}, "castle": {"_count": 1, "": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}, "bloke": {"_count": 1, "from": {"_count": 1}}, "dragon": {"_count": 1, "keeps": {"_count": 1}}, "bones": {"_count": 4, "": {"_count": 2}, "rather": {"_count": 1}, "if": {"_count": 1}}, "ugly": {"_count": 1, "face": {"_count": 1}}, "drop": {"_count": 1, "in": {"_count": 1}}, "toe": {"_count": 2, "": {"_count": 2}}, "bet": {"_count": 1, "on": {"_count": 1}}, "man": {"_count": 2, "carrying": {"_count": 1}, "Potter": {"_count": 1}}, "articles": {"_count": 1, "": {"_count": 1}}, "story": {"_count": 1, "outofcontrol": {"_count": 1}}, "disguise": {"_count": 1, "is": {"_count": 1}}, "bearded": {"_count": 1, "wizard": {"_count": 1}}, "round": {"_count": 1, "eyes": {"_count": 1}}, "mirror": {"_count": 1, "on": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "they": {"_count": 1}}, "groups": {"_count": 1, "like": {"_count": 1}}, "beasts": {"_count": 1, "winged": {"_count": 1}}, "stuff": {"_count": 1, "maybe": {"_count": 1}}, "blank": {"_count": 1, "periods": {"_count": 1}}, "secondrateri": {"_count": 1, "chided": {"_count": 1}}, "opportunity": {"_count": 1, "to": {"_count": 1}}, "disappoint": {"_count": 1, "He": {"_count": 1}}, "kids": {"_count": 1, "and": {"_count": 1}}, "buffoon": {"_count": 1, "I": {"_count": 1}}, "pal": {"_count": 1, "of": {"_count": 1}}, "job": {"_count": 1, "hes": {"_count": 1}}, "earner": {"_count": 1, "but": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "waistcoated": {"_count": 1, "belly": {"_count": 1}}, "cave": {"_count": 1, "": {"_count": 1}}, "lie": {"_count": 1, "to": {"_count": 1}}, "surprise": {"_count": 1, "though": {"_count": 1}}, "dark": {"_count": 1, "eyes": {"_count": 1}}, "Hufflepuff": {"_count": 1, "players": {"_count": 1}}, "fourlegged": {"_count": 1, "thing": {"_count": 1}}, "rangy": {"_count": 1, "man": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "problem": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "you": {"_count": 1}}, "ones": {"_count": 1, "Thorfinn": {"_count": 1}}, "shock": {"_count": 1, "said": {"_count": 1}}, "gold": {"_count": 1, "locket": {"_count": 1}}, "feet": {"_count": 1, "were": {"_count": 1}}, "forest": {"_count": 1, "isnt": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 1, "hero": {"_count": 1}}}, "beefy": {"_count": 3, "man": {"_count": 2, "with": {"_count": 2}}, "and": {"_count": 1, "purplefaced": {"_count": 1}}}, "man": {"_count": 469, "with": {"_count": 37, "hardly": {"_count": 1}, "wicked": {"_count": 1}, "red": {"_count": 1}, "sallow": {"_count": 1}, "very": {"_count": 1}, "long": {"_count": 4}, "the": {"_count": 7}, "graying": {"_count": 1}, "watery": {"_count": 1}, "a": {"_count": 8}, "sleek": {"_count": 1}, "greasy": {"_count": 1}, "short": {"_count": 1}, "waistlength": {"_count": 1}, "whom": {"_count": 1}, "hair": {"_count": 1}, "an": {"_count": 1}, "matted": {"_count": 1}, "eyes": {"_count": 1}, "golden": {"_count": 1}, "untidy": {"_count": 1}}, "had": {"_count": 5, "to": {"_count": 1}, "ever": {"_count": 1}, "appeared": {"_count": 1}, "come": {"_count": 1}, "a": {"_count": 1}}, "stumbled": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 23, "wearing": {"_count": 1}, "standing": {"_count": 4}, "dancing": {"_count": 1}, "fingering": {"_count": 1}, "hurrying": {"_count": 1}, "now": {"_count": 1}, "hidden": {"_count": 1}, "sitting": {"_count": 1}, "stirring": {"_count": 1}, "yelling": {"_count": 1}, "peering": {"_count": 1}, "shouting": {"_count": 1}, "pressing": {"_count": 1}, "Sirius": {"_count": 1}, "waving": {"_count": 1}, "shorter": {"_count": 1}, "": {"_count": 2}, "absurdly": {"_count": 1}, "watching": {"_count": 1}}, "hugged": {"_count": 1, "Mr": {"_count": 1}}, "appeared": {"_count": 2, "on": {"_count": 1}, "within": {"_count": 1}}, "sitting": {"_count": 5, "astride": {"_count": 1}, "fast": {"_count": 1}, "opposite": {"_count": 1}, "almost": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 11, "at": {"_count": 2}, "began": {"_count": 1}, "with": {"_count": 1}, "three": {"_count": 1}, "that": {"_count": 1}, "such": {"_count": 1}, "boy": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "smiled": {"_count": 1}}, "in": {"_count": 24, "a": {"_count": 9}, "the": {"_count": 8}, "black": {"_count": 3}, "rags": {"_count": 2}, "plain": {"_count": 1}, "his": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "came": {"_count": 1, "ambling": {"_count": 1}}, "than": {"_count": 1, "Vernon": {"_count": 1}}, "Dumbledore": {"_count": 7, "": {"_count": 6}, "slid": {"_count": 1}}, "made": {"_count": 1, "his": {"_count": 1}}, "being": {"_count": 1, "fitted": {"_count": 1}}, "": {"_count": 55, "!": {"_count": 5}, ".": {"_count": 47}, "?": {"_count": 3}}, "behind": {"_count": 2, "the": {"_count": 2}}, "from": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "standing": {"_count": 2, "next": {"_count": 1}, "before": {"_count": 1}}, "who": {"_count": 43, "looked": {"_count": 1}, "followed": {"_count": 1}, "seemed": {"_count": 1}, "did": {"_count": 1}, "has": {"_count": 2}, "had": {"_count": 14}, "owned": {"_count": 1}, "was": {"_count": 7}, "stared": {"_count": 1}, "stepped": {"_count": 1}, "wore": {"_count": 1}, "often": {"_count": 1}, "finds": {"_count": 1}, "can": {"_count": 1}, "could": {"_count": 1}, "ran": {"_count": 1}, "raised": {"_count": 1}, "knew": {"_count": 1}, "held": {"_count": 1}, "taught": {"_count": 1}, "brought": {"_count": 1}, "united": {"_count": 1}, "stood": {"_count": 1}}, "on": {"_count": 11, "earth": {"_count": 1}, "the": {"_count": 9}, "Wormtails": {"_count": 1}}, "or": {"_count": 2, "a": {"_count": 1}, "fear": {"_count": 1}}, "I": {"_count": 3, "was": {"_count": 2}, "ever": {"_count": 1}}, "to": {"_count": 10, "fit": {"_count": 1}, "slide": {"_count": 1}, "the": {"_count": 3}, "sit": {"_count": 1}, "hit": {"_count": 1}, "fumble": {"_count": 1}, "a": {"_count": 1}, "enter": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "going": {"_count": 1, "bald": {"_count": 1}}, "you": {"_count": 2, "cant": {"_count": 1}, "thought": {"_count": 1}}, "said": {"_count": 3, "Wood": {"_count": 1}, "Lee": {"_count": 1}, "his": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 3}, "trusting": {"_count": 1}}, "wearing": {"_count": 5, "chains": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "enormously": {"_count": 1}}, "swooped": {"_count": 1, "suddenly": {"_count": 1}}, "before": {"_count": 3, "": {"_count": 1}, "him": {"_count": 1}, "I": {"_count": 1}}, "please": {"_count": 1, "believe": {"_count": 1}}, "the": {"_count": 3, "Minister": {"_count": 1}, "Death": {"_count": 1}, "wifes": {"_count": 1}}, "he": {"_count": 10, "said": {"_count": 1}, "puffed": {"_count": 1}, "was": {"_count": 2}, "recognized": {"_count": 1}, "isnt": {"_count": 1}, "now": {"_count": 1}, "sought": {"_count": 1}, "needed": {"_count": 1}, "hated": {"_count": 1}}, "Dudders": {"_count": 1, "like": {"_count": 1}}, "would": {"_count": 4, "be": {"_count": 1}, "want": {"_count": 1}, "telephone": {"_count": 1}, "have": {"_count": 1}}, "Harry": {"_count": 7, "": {"_count": 1}, "had": {"_count": 4}, "said": {"_count": 1}, "recognized": {"_count": 1}}, "shifting": {"_count": 1, "boxes": {"_count": 1}}, "when": {"_count": 1, "James": {"_count": 1}}, "cruel": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "enter": {"_count": 1, "Gryffindor": {"_count": 1}}, "all": {"_count": 1, "Harry": {"_count": 1}}, "back": {"_count": 1, "inside": {"_count": 1}}, "hardly": {"_count": 1, "taller": {"_count": 1}}, "hes": {"_count": 3, "been": {"_count": 1}, "having": {"_count": 1}, "more": {"_count": 1}}, "called": {"_count": 8, "Frank": {"_count": 1}, "Wormtail": {"_count": 1}, "Peter": {"_count": 1}, "Ogg": {"_count": 1}, "Dawlish": {"_count": 2}, "Tobias": {"_count": 1}, "Scabior": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 3}, "a": {"_count": 1}, "whom": {"_count": 1}, "your": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "his": {"_count": 1, "back": {"_count": 1}}, "spoke": {"_count": 2, "once": {"_count": 1}, "again": {"_count": 1}}, "sounding": {"_count": 1, "amused": {"_count": 1}}, "laugh": {"_count": 1, "an": {"_count": 1}}, "could": {"_count": 2, "talk": {"_count": 1}, "be": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "why": {"_count": 1, "dont": {"_count": 1}}, "Muggle": {"_count": 1, "said": {"_count": 1}}, "walked": {"_count": 1, "forward": {"_count": 1}}, "been": {"_count": 1, "": {"_count": 1}}, "won": {"_count": 1, "Im": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "action": {"_count": 1}}, "gone": {"_count": 1, "slightly": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "stood": {"_count": 3, "in": {"_count": 1}, "frozen": {"_count": 1}, "facing": {"_count": 1}}, "holding": {"_count": 1, "a": {"_count": 1}}, "Hagrid": {"_count": 1, "has": {"_count": 1}}, "isnt": {"_count": 2, "he": {"_count": 2}}, "staggered": {"_count": 2, "out": {"_count": 1}, "upright": {"_count": 1}}, "too": {"_count": 1, "had": {"_count": 1}}, "a": {"_count": 1, "man": {"_count": 1}}, "flanked": {"_count": 1, "by": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "now": {"_count": 3, "sitting": {"_count": 1}, "striding": {"_count": 1}, "standing": {"_count": 1}}, "whose": {"_count": 1, "eyes": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "tall": {"_count": 1, "and": {"_count": 1}}, "stepped": {"_count": 1, "out": {"_count": 1}}, "so": {"_count": 3, "old": {"_count": 1}, "lets": {"_count": 1}, "utterly": {"_count": 1}}, "supporting": {"_count": 1, "him": {"_count": 1}}, "helping": {"_count": 1, "him": {"_count": 1}}, "asked": {"_count": 2, "at": {"_count": 1}, "for": {"_count": 1}}, "lying": {"_count": 3, "before": {"_count": 1}, "faceup": {"_count": 1}, "in": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "chose": {"_count": 1, "to": {"_count": 1}}, "carrying": {"_count": 1, "that": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "reaching": {"_count": 1, "an": {"_count": 1}}, "pulling": {"_count": 1, "himself": {"_count": 1}}, "turned": {"_count": 2, "at": {"_count": 1}, "his": {"_count": 1}}, "people": {"_count": 1, "believe": {"_count": 1}}, "floating": {"_count": 1, "on": {"_count": 1}}, "reached": {"_count": 1, "beneath": {"_count": 1}}, "has": {"_count": 1, "red": {"_count": 1}}, "disappeared": {"_count": 1, "through": {"_count": 1}}, "lay": {"_count": 1, "looking": {"_count": 1}}, "setting": {"_count": 1, "a": {"_count": 1}}, "kneeling": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "cowering": {"_count": 1, "upon": {"_count": 1}}, "almost": {"_count": 1, "fell": {"_count": 1}}, "joined": {"_count": 1, "to": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "sat": {"_count": 2, "poring": {"_count": 1}, "up": {"_count": 1}}, "jumped": {"_count": 1, "and": {"_count": 1}}, "yelled": {"_count": 1, "Be": {"_count": 1}}, "flew": {"_count": 1, "what": {"_count": 1}}, "it": {"_count": 1, "happens": {"_count": 1}}, "relinquished": {"_count": 1, "Harry": {"_count": 1}}, "lunged": {"_count": 2, "at": {"_count": 2}}, "Tom": {"_count": 1, "Dumbledore": {"_count": 1}}, "spinning": {"_count": 1, "inside": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "named": {"_count": 1, "Serious": {"_count": 1}}, "alive": {"_count": 2, "if": {"_count": 1}, "can": {"_count": 1}}, "opening": {"_count": 1, "the": {"_count": 1}}, "crept": {"_count": 1, "hunchbacked": {"_count": 1}}, "whom": {"_count": 2, "it": {"_count": 1}, "Harry": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "whos": {"_count": 1, "earned": {"_count": 1}}, "Florean": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 1, "ascending": {"_count": 1}}, "how": {"_count": 1, "would": {"_count": 1}}, "possibly": {"_count": 1, "troubled": {"_count": 1}}, "looking": {"_count": 1, "down": {"_count": 1}}, "indifferently": {"_count": 1, "": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "revolving": {"_count": 1, "slowly": {"_count": 1}}, "grabbed": {"_count": 1, "Harrys": {"_count": 1}}, "Voldemort": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 3, "and": {"_count": 3}}, "jerked": {"_count": 1, "awake": {"_count": 1}}, "skidded": {"_count": 1, "into": {"_count": 1}}, "broke": {"_count": 1, "it": {"_count": 1}}, "himself": {"_count": 1, "turned": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "most": {"_count": 1, "likely": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "tipped": {"_count": 1, "to": {"_count": 1}}, "against": {"_count": 1, "whom": {"_count": 1}}, "we": {"_count": 1, "ought": {"_count": 1}}, "were": {"_count": 1, "in": {"_count": 1}}, "And": {"_count": 1, "are": {"_count": 1}}, "once": {"_count": 1, "Charlie": {"_count": 1}}, "Lovegood": {"_count": 1, "veil": {"_count": 1}}, "started": {"_count": 1, "forward": {"_count": 1}}, "stared": {"_count": 1, "up": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "no": {"_count": 1, "please": {"_count": 1}}, "goblin": {"_count": 1, "I": {"_count": 1}}, "Hermione": {"_count": 1, "into": {"_count": 1}}, "decided": {"_count": 1, "that": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "brandishing": {"_count": 1, "an": {"_count": 1}}, "tying": {"_count": 1, "them": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "thrashing": {"_count": 1, "and": {"_count": 1}}, "dueling": {"_count": 1, "Percy": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "He": {"_count": 1, "did": {"_count": 1}}, "woman": {"_count": 2, "and": {"_count": 1}, "or": {"_count": 1}}, "an": {"_count": 1, "odd": {"_count": 1}}, "by": {"_count": 1, "far": {"_count": 1}}, "avoid": {"_count": 1, "pain": {"_count": 1}}, "still": {"_count": 1, "beaming": {"_count": 1}}, "much": {"_count": 1, "less": {"_count": 1}}, "that": {"_count": 1, "power": {"_count": 1}}}, "hardly": {"_count": 154, "any": {"_count": 10, "neck": {"_count": 1}, "of": {"_count": 4}, "better": {"_count": 1}, "time": {"_count": 3}, "shoppers": {"_count": 1}}, "ever": {"_count": 10, "seen": {"_count": 1}, "wakes": {"_count": 1}, "leave": {"_count": 1}, "stopped": {"_count": 1}, "good": {"_count": 1}, "flown": {"_count": 1}, "cried": {"_count": 1}, "does": {"_count": 1}, "seemed": {"_count": 1}, "heard": {"_count": 1}}, "changed": {"_count": 1, "at": {"_count": 1}}, "speak": {"_count": 1, "": {"_count": 1}}, "raised": {"_count": 1, "the": {"_count": 1}}, "lift": {"_count": 1, "a": {"_count": 1}}, "raise": {"_count": 1, "one": {"_count": 1}}, "glancing": {"_count": 1, "at": {"_count": 1}}, "noticed": {"_count": 5, "that": {"_count": 1}, "": {"_count": 2}, "what": {"_count": 1}, "the": {"_count": 1}}, "believe": {"_count": 10, "this": {"_count": 2}, "it": {"_count": 1}, "that": {"_count": 2}, "what": {"_count": 3}, "their": {"_count": 1}, "how": {"_count": 1}}, "disappeared": {"_count": 1, "when": {"_count": 1}}, "cared": {"_count": 1, "all": {"_count": 1}}, "fluttered": {"_count": 1, "out": {"_count": 1}}, "heard": {"_count": 2, "a": {"_count": 1}, "what": {"_count": 1}}, "knowing": {"_count": 3, "what": {"_count": 2}, "whether": {"_count": 1}}, "drew": {"_count": 1, "breath": {"_count": 1}}, "daring": {"_count": 5, "to": {"_count": 5}}, "one": {"_count": 1, "swallow": {"_count": 1}}, "gloated": {"_count": 1, "at": {"_count": 1}}, "feel": {"_count": 1, "his": {"_count": 1}}, "stand": {"_count": 3, "a": {"_count": 1}, "her": {"_count": 1}, "around": {"_count": 1}}, "listened": {"_count": 1, "as": {"_count": 1}}, "see": {"_count": 2, "for": {"_count": 1}, "anyway": {"_count": 1}}, "add": {"_count": 1, "that": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "point": {"_count": 1, "out": {"_count": 1}}, "remind": {"_count": 1, "you": {"_count": 1}}, "worth": {"_count": 1, "the": {"_count": 1}}, "able": {"_count": 4, "to": {"_count": 4}}, "seem": {"_count": 1, "to": {"_count": 1}}, "noticing": {"_count": 2, "where": {"_count": 1}, "what": {"_count": 1}}, "left": {"_count": 1, "him": {"_count": 1}}, "overtaxing": {"_count": 1, "you": {"_count": 1}}, "tell": {"_count": 1, "them": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}, "legible": {"_count": 1, "": {"_count": 1}}, "fail": {"_count": 2, "to": {"_count": 2}}, "taller": {"_count": 1, "than": {"_count": 1}}, "swallow": {"_count": 1, "": {"_count": 1}}, "anyone": {"_count": 1, "in": {"_count": 1}}, "get": {"_count": 2, "through": {"_count": 1}, "him": {"_count": 1}}, "be": {"_count": 4, "surprised": {"_count": 1}, "Moodys": {"_count": 1}, "called": {"_count": 1}, "considered": {"_count": 1}}, "a": {"_count": 1, "hiccough": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "touched": {"_count": 1, "plate": {"_count": 1}}, "think": {"_count": 2, "students": {"_count": 1}, "it": {"_count": 1}}, "rose": {"_count": 1, "above": {"_count": 1}}, "difficult": {"_count": 1, "to": {"_count": 1}}, "less": {"_count": 1, "crowded": {"_count": 1}}, "take": {"_count": 1, "his": {"_count": 1}}, "older": {"_count": 1, "than": {"_count": 1}}, "mattered": {"_count": 1, "but": {"_count": 1}}, "talk": {"_count": 1, "let": {"_count": 1}}, "bear": {"_count": 2, "it": {"_count": 1}, "to": {"_count": 1}}, "aware": {"_count": 2, "of": {"_count": 2}}, "stroll": {"_count": 1, "up": {"_count": 1}}, "knew": {"_count": 3, "each": {"_count": 1}, "what": {"_count": 2}}, "ate": {"_count": 1, "breakfast": {"_count": 1}}, "surprised": {"_count": 1, "his": {"_count": 1}}, "have": {"_count": 3, "set": {"_count": 1}, "laid": {"_count": 1}, "been": {"_count": 1}}, "talked": {"_count": 1, "to": {"_count": 1}}, "wait": {"_count": 1, "said": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "hear": {"_count": 2, "what": {"_count": 1}, "her": {"_count": 1}}, "make": {"_count": 3, "himself": {"_count": 1}, "him": {"_count": 1}, "out": {"_count": 1}}, "dared": {"_count": 1, "believe": {"_count": 1}}, "say": {"_count": 1, "\u2018Sorry": {"_count": 1}}, "anybody": {"_count": 1, "appeared": {"_count": 1}}, "beating": {"_count": 1, "": {"_count": 1}}, "larger": {"_count": 1, "than": {"_count": 1}}, "breathing": {"_count": 1, "listening": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "muster": {"_count": 1, "the": {"_count": 1}}, "count": {"_count": 1, "me": {"_count": 1}}, "breathe": {"_count": 3, "for": {"_count": 1}, "trembling": {"_count": 1}, "Death": {"_count": 1}}, "complain": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 3, "point": {"_count": 1}, "most": {"_count": 1}, "first": {"_count": 1}}, "qualified": {"_count": 1, "as": {"_count": 1}}, "hold": {"_count": 1, "her": {"_count": 1}}, "blame": {"_count": 1, "him": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "scoop": {"_count": 1, "up": {"_count": 1}}, "had": {"_count": 1, "any": {"_count": 1}}, "book": {"_count": 1, "rooms": {"_count": 1}}, "suppose": {"_count": 1, "that": {"_count": 1}}, "slept": {"_count": 1, "that": {"_count": 1}}, "mistake": {"_count": 1, "the": {"_count": 1}}}, "any": {"_count": 861, "neck": {"_count": 1, "although": {"_count": 1}}, "mention": {"_count": 2, "of": {"_count": 2}}, "more": {"_count": 65, "showers": {"_count": 1}, "firs": {"_count": 1}, "points": {"_count": 2}, "": {"_count": 5}, "nighttime": {"_count": 1}, "after": {"_count": 1}, "time": {"_count": 1}, "rules": {"_count": 1}, "trouble": {"_count": 2}, "just": {"_count": 1}, "school": {"_count": 1}, "of": {"_count": 8}, "magic": {"_count": 4}, "Miss": {"_count": 1}, "than": {"_count": 5}, "classes": {"_count": 1}, "Amos": {"_count": 1}, "information": {"_count": 1}, "horrified": {"_count": 1}, "about": {"_count": 2}, "grindylows": {"_count": 1}, "comfortable": {"_count": 1}, "enjoyable": {"_count": 1}, "provocation": {"_count": 1}, "Quidditch": {"_count": 1}, "rows": {"_count": 1}, "Death": {"_count": 1}, "sausages": {"_count": 1}, "outbursts": {"_count": 1}, "to": {"_count": 1}, "harm": {"_count": 1}, "lessons": {"_count": 1}, "danger": {"_count": 1}, "pleasurable": {"_count": 1}, "away": {"_count": 1}, "on": {"_count": 1}, "meaning": {"_count": 2}, "He": {"_count": 1}, "reasons": {"_count": 1}, "a": {"_count": 1}, "but": {"_count": 1}, "Dobbies": {"_count": 1}, "lives": {"_count": 1}}, "reason": {"_count": 1, "to": {"_count": 1}}, "boys": {"_count": 1, "head": {"_count": 1}}, "funny": {"_count": 2, "business": {"_count": 1}, "stuff": {"_count": 1}}, "of": {"_count": 165, "the": {"_count": 46}, "them": {"_count": 43}, "it": {"_count": 6}, "you": {"_count": 14}, "us": {"_count": 12}, "his": {"_count": 13}, "my": {"_count": 2}, "these": {"_count": 6}, "our": {"_count": 3}, "those": {"_count": 3}, "em": {"_count": 2}, "what": {"_count": 1}, "this": {"_count": 8}, "that": {"_count": 2}, "Hagrid": {"_count": 1}, "your": {"_count": 1}, "disguising": {"_count": 1}, "their": {"_count": 1}}, "money": {"_count": 5, "and": {"_count": 1}, "in": {"_count": 2}, "for": {"_count": 1}, "": {"_count": 1}}, "chair": {"_count": 1, "with": {"_count": 1}}, "breakfast": {"_count": 1, "leapt": {"_count": 1}}, "Harry": {"_count": 4, "confessed": {"_count": 1}, "had": {"_count": 2}, "unwrapped": {"_count": 1}}, "rule": {"_count": 1, "breaking": {"_count": 1}}, "magic": {"_count": 3, "yet": {"_count": 1}, "powers": {"_count": 1}, "is": {"_count": 1}}, "means": {"_count": 4, "To": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 1}}, "difference": {"_count": 9, "to": {"_count": 2}, "at": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 3}, "what": {"_count": 1}}, "idea": {"_count": 16, "that": {"_count": 1}, "where": {"_count": 2}, "what": {"_count": 5}, "how": {"_count": 6}, "who": {"_count": 1}, "why": {"_count": 1}}, "teacher": {"_count": 2, "in": {"_count": 1}, "she": {"_count": 1}}, "real": {"_count": 5, "damage": {"_count": 1}, "conviction": {"_count": 2}, "Galleons": {"_count": 1}, "princes": {"_count": 1}}, "dog": {"_count": 1, "needs": {"_count": 1}}, "old": {"_count": 4, "broomstick": {"_count": 1}, "time": {"_count": 2}, "home": {"_count": 1}}, "questions": {"_count": 3, "": {"_count": 1}, "well": {"_count": 1}, "Professor": {"_count": 1}}, "second": {"_count": 10, "the": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 6}, "now": {"_count": 1}, "Xenophiliuss": {"_count": 1}}, "rules": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "help": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "presents": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "excuse": {"_count": 4, "to": {"_count": 2}, "not": {"_count": 1}, "at": {"_count": 1}}, "metal": {"_count": 1, "into": {"_count": 1}}, "sign": {"_count": 11, "of": {"_count": 8}, "that": {"_count": 2}, "from": {"_count": 1}}, "moment": {"_count": 35, "": {"_count": 19}, "because": {"_count": 1}, "now": {"_count": 3}, "Back": {"_count": 1}, "theyll": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 1}, "shaking": {"_count": 1}, "that": {"_count": 1}, "laughing": {"_count": 1}, "then": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 1}}, "chance": {"_count": 11, "Gryffindor": {"_count": 1}, "at": {"_count": 1}, "of": {"_count": 1}, "writing": {"_count": 1}, "": {"_count": 1}, "hear": {"_count": 1}, "to": {"_count": 1}, "does": {"_count": 1}, "another": {"_count": 1}, "that": {"_count": 1}, "someones": {"_count": 1}}, "points": {"_count": 3, "back": {"_count": 1}, "from": {"_count": 1}, "left": {"_count": 1}}, "proof": {"_count": 3, "Snape": {"_count": 1}, "neither": {"_count": 1}, "": {"_count": 1}}, "Hogwarts": {"_count": 4, "to": {"_count": 1}, "students": {"_count": 1}, "student": {"_count": 2}}, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 2}}, "ideas": {"_count": 6, "": {"_count": 2}, "on": {"_count": 1}, "how": {"_count": 1}, "Hagrid": {"_count": 1}, "himself": {"_count": 1}}, "luck": {"_count": 7, "Ill": {"_count": 2}, "with": {"_count": 2}, "the": {"_count": 1}, "so": {"_count": 1}, "theyll": {"_count": 1}}, "better": {"_count": 9, "in": {"_count": 1}, "off": {"_count": 1}, "than": {"_count": 2}, "about": {"_count": 3}, "because": {"_count": 1}, "": {"_count": 1}}, "witch": {"_count": 4, "or": {"_count": 4}}, "cards": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 2, "to": {"_count": 1}, "at": {"_count": 1}}, "way": {"_count": 13, "hurt": {"_count": 1}, "out": {"_count": 2}, "": {"_count": 2}, "I": {"_count": 1}, "of": {"_count": 2}, "youll": {"_count": 1}, "Malfoy": {"_count": 2}, "to": {"_count": 1}, "she": {"_count": 1}}, "particular": {"_count": 5, "reason": {"_count": 2}, "harm": {"_count": 1}, "expertise": {"_count": 1}, "rush": {"_count": 1}}, "magical": {"_count": 1, "activity": {"_count": 1}}, "lengths": {"_count": 4, "to": {"_count": 3}, "for": {"_count": 1}}, "the": {"_count": 3, "wiser": {"_count": 2}, "worse": {"_count": 1}}, "Muggle": {"_count": 3, "money": {"_count": 2}, "dwellings": {"_count": 1}}, "other": {"_count": 25, "but": {"_count": 1}, "reason": {"_count": 1}, "time": {"_count": 3}, "broom": {"_count": 1}, "student": {"_count": 2}, "takers": {"_count": 1}, "": {"_count": 4}, "girl": {"_count": 1}, "tonight": {"_count": 1}, "its": {"_count": 1}, "way": {"_count": 2}, "living": {"_count": 1}, "miserable": {"_count": 1}, "wizard": {"_count": 2}, "man": {"_count": 1}, "leads": {"_count": 1}, "sort": {"_count": 1}}, "minute": {"_count": 1, "I": {"_count": 1}}, "trouble": {"_count": 3, "or": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "good": {"_count": 2, "": {"_count": 2}}, "supper": {"_count": 1, "": {"_count": 1}}, "prefects": {"_count": 1, "were": {"_count": 1}}, "accidents": {"_count": 1, "one": {"_count": 1}}, "fool": {"_count": 1, "should": {"_count": 1}}, "day": {"_count": 6, "now": {"_count": 4}, "": {"_count": 2}}, "slower": {"_count": 1, "youd": {"_count": 1}}, "new": {"_count": 2, "leads": {"_count": 1}, "ideas": {"_count": 1}}, "dwarfs": {"_count": 1, "however": {"_count": 1}}, "wizard": {"_count": 9, "Ive": {"_count": 1}, "the": {"_count": 1}, "who": {"_count": 1}, "living": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 1}, "alive": {"_count": 1}, "whos": {"_count": 1}, "at": {"_count": 1}}, "guidance": {"_count": 1, "Percy": {"_count": 1}}, "case": {"_count": 32, "": {"_count": 4}, "he": {"_count": 5}, "awkward": {"_count": 1}, "Harry": {"_count": 2}, "looked": {"_count": 2}, "it": {"_count": 3}, "had": {"_count": 1}, "gathering": {"_count": 1}, "giants": {"_count": 1}, "they": {"_count": 1}, "we": {"_count": 2}, "most": {"_count": 1}, "within": {"_count": 1}, "she": {"_count": 1}, "as": {"_count": 1}, "given": {"_count": 1}, "so": {"_count": 1}, "that": {"_count": 1}, "does": {"_count": 1}, "another": {"_count": 1}}, "unusual": {"_count": 1, "activity": {"_count": 1}}, "noise": {"_count": 3, "and": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 1}}, "ah": {"_count": 1, "killins": {"_count": 1}}, "laughter": {"_count": 1, "that": {"_count": 1}}, "creaking": {"_count": 1, "and": {"_count": 1}}, "part": {"_count": 2, "of": {"_count": 2}}, "longer": {"_count": 11, "": {"_count": 8}, "Potter": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 1}}, "sighting": {"_count": 1, "of": {"_count": 1}}, "any": {"_count": 1, "funny": {"_count": 1}}, "crap": {"_count": 1, "from": {"_count": 1}}, "doubt": {"_count": 2, "why": {"_count": 1}, "that": {"_count": 1}}, "such": {"_count": 4, "thing": {"_count": 1}, "boy": {"_count": 1}, "things": {"_count": 1}, "atrocity": {"_count": 1}}, "work": {"_count": 2, "done": {"_count": 1}, "however": {"_count": 1}}, "theory": {"_count": 1, "as": {"_count": 1}}, "record": {"_count": 1, "of": {"_count": 1}}, "thought": {"_count": 1, "of": {"_count": 1}}, "sounds": {"_count": 1, "above": {"_count": 1}}, "immediate": {"_count": 1, "danger": {"_count": 1}}, "kind": {"_count": 6, "": {"_count": 1}, "of": {"_count": 4}, "from": {"_count": 1}}, "rate": {"_count": 5, "and": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}}, "time": {"_count": 16, "now": {"_count": 2}, "": {"_count": 2}, "he": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}, "should": {"_count": 1}, "youre": {"_count": 1}, "to": {"_count": 3}, "during": {"_count": 1}, "left": {"_count": 3}}, "point": {"_count": 8, "in": {"_count": 6}, "asking": {"_count": 1}, "you": {"_count": 1}}, "hope": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "sound": {"_count": 3, "of": {"_count": 2}, "within": {"_count": 1}}, "chocolate": {"_count": 1, "": {"_count": 1}}, "decency": {"_count": 2, "hed": {"_count": 1}, "youd": {"_count": 1}}, "use": {"_count": 2, "they": {"_count": 1}, "to": {"_count": 1}}, "form": {"_count": 2, "which": {"_count": 1}, "of": {"_count": 1}}, "closer": {"_count": 2, "": {"_count": 1}, "turned": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "reply": {"_count": 2, "to": {"_count": 2}}, "spell": {"_count": 3, "that": {"_count": 3}}, "they": {"_count": 1, "had": {"_count": 1}}, "objections": {"_count": 1, "": {"_count": 1}}, "post": {"_count": 1, "at": {"_count": 1}}, "lace": {"_count": 1, "on": {"_count": 1}}, "casualties": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "spare": {"_count": 1}}, "dwelling": {"_count": 2, "in": {"_count": 1}, "place": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "others": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "area": {"_count": 1}}, "students": {"_count": 1, "who": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "bigger": {"_count": 1, "than": {"_count": 1}}, "baby": {"_count": 1, "of": {"_count": 1}}, "nearer": {"_count": 2, "at": {"_count": 1}, "than": {"_count": 1}}, "ducking": {"_count": 1, "out": {"_count": 1}}, "student": {"_count": 3, "could": {"_count": 1}, "who": {"_count": 1}, "or": {"_count": 1}}, "glory": {"_count": 1, "and": {"_count": 1}}, "having": {"_count": 1, "beaten": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "stragglers": {"_count": 1, "out": {"_count": 1}}, "Dungbombs": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "damage": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "sense": {"_count": 3, "": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}}, "insides": {"_count": 1, "at": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "lock": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "knot": {"_count": 1, "and": {"_count": 1}}, "left": {"_count": 1, "in": {"_count": 1}}, "inclination": {"_count": 2, "to": {"_count": 2}}, "guide": {"_count": 1, "however": {"_count": 1}}, "choice": {"_count": 5, "": {"_count": 1}, "if": {"_count": 1}, "Hermione": {"_count": 1}, "have": {"_count": 1}, "but": {"_count": 1}}, "attention": {"_count": 5, "": {"_count": 2}, "to": {"_count": 2}, "except": {"_count": 1}}, "leads": {"_count": 1, "on": {"_count": 1}}, "Goyle": {"_count": 1, "he": {"_count": 1}}, "fun": {"_count": 1, "at": {"_count": 1}}, "owls": {"_count": 2, "you": {"_count": 1}, "have": {"_count": 1}}, "conclusions": {"_count": 1, "about": {"_count": 1}}, "importance": {"_count": 1, "for": {"_count": 1}}, "Dark": {"_count": 2, "activity": {"_count": 1}, "wizard": {"_count": 1}}, "practicing": {"_count": 1, "": {"_count": 1}}, "races": {"_count": 1, "on": {"_count": 1}}, "cauldron": {"_count": 1, "Harry": {"_count": 1}}, "whisper": {"_count": 1, "of": {"_count": 1}}, "prisoners": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 1, "see": {"_count": 1}}, "Death": {"_count": 5, "Eater": {"_count": 3}, "Eaters": {"_count": 2}}, "attempt": {"_count": 2, "to": {"_count": 2}}, "expectation": {"_count": 1, "he": {"_count": 1}}, "Veritaserum": {"_count": 1, "": {"_count": 1}}, "study": {"_count": 1, "at": {"_count": 1}}, "Muggles": {"_count": 1, "looking": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "farther": {"_count": 3, "": {"_count": 2}, "I": {"_count": 1}}, "suspicious": {"_count": 1, "deaths": {"_count": 1}}, "food": {"_count": 3, "left": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "concern": {"_count": 1, "of": {"_count": 1}}, "description": {"_count": 1, "": {"_count": 1}}, "trace": {"_count": 2, "of": {"_count": 2}}, "plans": {"_count": 2, "to": {"_count": 2}}, "further": {"_count": 6, "": {"_count": 2}, "he": {"_count": 1}, "toward": {"_count": 1}, "protest": {"_count": 1}, "explanation": {"_count": 1}}, "lights": {"_count": 1, "on": {"_count": 1}}, "lineup": {"_count": 1, "": {"_count": 1}}, "Ministryapproved": {"_count": 1, "curriculum": {"_count": 1}}, "book": {"_count": 1, "that": {"_count": 1}}, "situation": {"_count": 1, "arising": {"_count": 1}}, "class": {"_count": 1, "is": {"_count": 1}}, "ink": {"_count": 1, "he": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "harm": {"_count": 2, "He": {"_count": 1}, "done": {"_count": 1}}, "worries": {"_count": 1, "about": {"_count": 1}}, "news": {"_count": 2, "about": {"_count": 2}}, "effect": {"_count": 1, "on": {"_count": 1}}, "information": {"_count": 3, "on": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 1}}, "defense": {"_count": 1, "from": {"_count": 1}}, "boils": {"_count": 1, "said": {"_count": 1}}, "anti": {"_count": 1, "Ministry": {"_count": 1}}, "condition": {"_count": 1, "said": {"_count": 1}}, "giants": {"_count": 1, "coming": {"_count": 1}}, "story": {"_count": 1, "Professor": {"_count": 1}}, "notice": {"_count": 1, "": {"_count": 1}}, "Seer": {"_count": 1, "blood": {"_count": 1}}, "fragments": {"_count": 1, "of": {"_count": 1}}, "language": {"_count": 1, "we": {"_count": 1}}, "invader": {"_count": 1, "": {"_count": 1}}, "explanation": {"_count": 1, "of": {"_count": 1}}, "force": {"_count": 1, "of": {"_count": 1}}, "conviction": {"_count": 1, "and": {"_count": 1}}, "number": {"_count": 3, "of": {"_count": 3}}, "improvement": {"_count": 1, "would": {"_count": 1}}, "worse": {"_count": 3, "than": {"_count": 2}, "can": {"_count": 1}}, "human": {"_count": 3, "teacher": {"_count": 1}, "kindness": {"_count": 1}, "language": {"_count": 1}}, "school": {"_count": 1, "rules": {"_count": 1}}, "evidence": {"_count": 1, "that": {"_count": 1}}, "mitigating": {"_count": 1, "factors": {"_count": 1}}, "career": {"_count": 1, "ideas": {"_count": 1}}, "thoughts": {"_count": 1, "about": {"_count": 1}}, "hurry": {"_count": 1, "": {"_count": 1}}, "elf": {"_count": 1, "clothes": {"_count": 1}}, "odd": {"_count": 1, "sound": {"_count": 1}}, "attack": {"_count": 1, "by": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "clue": {"_count": 1, "of": {"_count": 1}}, "surrounding": {"_count": 1, "wall": {"_count": 1}}, "\u2018in": {"_count": 1, "there": {"_count": 1}}, "hint": {"_count": 2, "of": {"_count": 1}, "that": {"_count": 1}}, "but": {"_count": 1, "them": {"_count": 1}}, "necessity": {"_count": 1, "for": {"_count": 1}}, "respect": {"_count": 1, "left": {"_count": 1}}, "powers": {"_count": 1, "he": {"_count": 1}}, "great": {"_count": 1, "sense": {"_count": 1}}, "extra": {"_count": 1, "helpings": {"_count": 1}}, "subject": {"_count": 1, "that": {"_count": 1}}, "details": {"_count": 1, "he": {"_count": 1}}, "man": {"_count": 2, "who": {"_count": 1}, "can": {"_count": 1}}, "counterjinx": {"_count": 1, "or": {"_count": 1}}, "invitation": {"_count": 1, "to": {"_count": 1}}, "need": {"_count": 2, "for": {"_count": 2}}, "ingredients": {"_count": 2, "at": {"_count": 1}, "or": {"_count": 1}}, "customers": {"_count": 1, "at": {"_count": 1}}, "House": {"_count": 1, "has": {"_count": 1}}, "joke": {"_count": 1, "items": {"_count": 1}}, "security": {"_count": 1, "restrictions": {"_count": 1}}, "enthusiasm": {"_count": 1, "": {"_count": 1}}, "reasonable": {"_count": 1, "teacher": {"_count": 1}}, "color": {"_count": 1, "": {"_count": 1}}, "measure": {"_count": 1, "Merope": {"_count": 1}}, "results": {"_count": 1, "": {"_count": 1}}, "parties": {"_count": 1, "said": {"_count": 1}}, "family": {"_count": 1, "at": {"_count": 1}}, "different": {"_count": 2, "except": {"_count": 1}, "": {"_count": 1}}, "punishment": {"_count": 1, "you": {"_count": 1}}, "allusion": {"_count": 1, "to": {"_count": 1}}, "tips": {"_count": 1, "": {"_count": 1}}, "smugger": {"_count": 1, "she": {"_count": 1}}, "letters": {"_count": 1, "from": {"_count": 1}}, "command": {"_count": 2, "I": {"_count": 2}}, "tree": {"_count": 1, "or": {"_count": 1}}, "too": {"_count": 1, "the": {"_count": 1}}, "options": {"_count": 1, "": {"_count": 1}}, "markings": {"_count": 1, "upon": {"_count": 1}}, "curses": {"_count": 1, "or": {"_count": 1}}, "beast": {"_count": 1, "she": {"_count": 1}}, "question": {"_count": 1, "of": {"_count": 1}}, "direction": {"_count": 1, "": {"_count": 1}}, "brandy": {"_count": 1, "have": {"_count": 1}}, "books": {"_count": 1, "on": {"_count": 1}}, "look": {"_count": 1, "or": {"_count": 1}}, "hidden": {"_count": 1, "codes": {"_count": 1}}, "worthy": {"_count": 1, "Gryffindor": {"_count": 1}}, "suggestion": {"_count": 1, "as": {"_count": 1}}, "favors": {"_count": 1, "": {"_count": 1}}, "burgeoning": {"_count": 1, "talent": {"_count": 1}}, "mark": {"_count": 1, "upon": {"_count": 1}}, "connection": {"_count": 1, "with": {"_count": 1}}, "resistance": {"_count": 1, "to": {"_count": 1}}, "Squibs": {"_count": 1, "would": {"_count": 1}}, "child": {"_count": 1, "be": {"_count": 1}}, "woman": {"_count": 1, "I": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "indication": {"_count": 1, "that": {"_count": 1}}, "unofficial": {"_count": 1, "student": {"_count": 1}}, "fit": {"_count": 1, "state": {"_count": 1}}, "in": {"_count": 1, "existence": {"_count": 1}}, "wizards": {"_count": 1, "believed": {"_count": 1}}, "knowledge": {"_count": 1, "of": {"_count": 1}}, "risks": {"_count": 1, "": {"_count": 1}}, "treasure": {"_count": 1, "Im": {"_count": 1}}, "goblin": {"_count": 1, "or": {"_count": 1}}, "instrument": {"_count": 1, "": {"_count": 1}}, "definite": {"_count": 1, "time": {"_count": 1}}, "misgivings": {"_count": 1, "in": {"_count": 1}}, "object": {"_count": 1, "is": {"_count": 1}}, "shoppers": {"_count": 1, "abroad": {"_count": 1}}, "Carrow": {"_count": 1, "supporters": {"_count": 1}}, "who": {"_count": 1, "want": {"_count": 1}}, "cost": {"_count": 1, "": {"_count": 1}}, "except": {"_count": 1, "the": {"_count": 1}}, "revelation": {"_count": 1, "or": {"_count": 1}}}, "neck": {"_count": 199, "although": {"_count": 1, "he": {"_count": 1}}, "which": {"_count": 2, "came": {"_count": 1}, "was": {"_count": 1}}, "small": {"_count": 1, "watery": {"_count": 1}}, "from": {"_count": 2, "behind": {"_count": 2}}, "": {"_count": 48, ".": {"_count": 44}, "!": {"_count": 1}, "?": {"_count": 3}}, "prickled": {"_count": 2, "": {"_count": 2}}, "and": {"_count": 43, "fell": {"_count": 1}, "stared": {"_count": 1}, "pulled": {"_count": 4}, "something": {"_count": 1}, "a": {"_count": 2}, "her": {"_count": 1}, "sat": {"_count": 1}, "broke": {"_count": 1}, "sobbed": {"_count": 1}, "knees": {"_count": 1}, "tied": {"_count": 1}, "the": {"_count": 1}, "sleeves": {"_count": 1}, "Wormtail": {"_count": 1}, "an": {"_count": 1}, "dragging": {"_count": 1}, "neck": {"_count": 2}, "then": {"_count": 1}, "forced": {"_count": 2}, "pressed": {"_count": 1}, "tugged": {"_count": 1}, "said": {"_count": 1}, "hastily": {"_count": 1}, "youll": {"_count": 1}, "boxes": {"_count": 1}, "gulping": {"_count": 1}, "walked": {"_count": 1}, "muttered": {"_count": 1}, "dropped": {"_count": 1}, "tucked": {"_count": 1}, "saw": {"_count": 1}, "groped": {"_count": 1}, "took": {"_count": 2}, "kissed": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "coughed": {"_count": 1, "and": {"_count": 1}}, "Malfoy": {"_count": 1, "Harry": {"_count": 1}}, "It": {"_count": 1, "wasnt": {"_count": 1}}, "But": {"_count": 1, "it": {"_count": 1}}, "they": {"_count": 1, "hurtled": {"_count": 1}}, "Harrys": {"_count": 1, "scar": {"_count": 1}}, "tripping": {"_count": 1, "over": {"_count": 1}}, "was": {"_count": 2, "almost": {"_count": 1}, "tucked": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "on": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 5, "red": {"_count": 1}, "he": {"_count": 3}, "Uncle": {"_count": 1}}, "sideways": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 7, "look": {"_count": 1}, "Buckbeak": {"_count": 1}, "hold": {"_count": 1}, "stop": {"_count": 1}, "ankles": {"_count": 1}, "catch": {"_count": 1}, "read": {"_count": 1}}, "had": {"_count": 2, "made": {"_count": 1}, "been": {"_count": 1}}, "Goyle": {"_count": 1, "had": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "lowered": {"_count": 1, "feeling": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "merely": {"_count": 1}, "clung": {"_count": 1}}, "of": {"_count": 14, "the": {"_count": 4}, "his": {"_count": 3}, "her": {"_count": 4}, "Rons": {"_count": 1}, "their": {"_count": 1}, "Harry": {"_count": 1}}, "you": {"_count": 1, "should": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "here": {"_count": 1}, "it": {"_count": 1}, "between": {"_count": 1}}, "stand": {"_count": 3, "up": {"_count": 3}}, "broken": {"_count": 1, "or": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 2, "stretched": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 3, "clapped": {"_count": 1}, "saw": {"_count": 1}, "was": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 2, "standing": {"_count": 1}, "drenched": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 3}, "the": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "rubbing": {"_count": 1, "it": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "Im": {"_count": 1, "saving": {"_count": 1}}, "Umbridge": {"_count": 1, "sent": {"_count": 1}}, "back": {"_count": 2, "as": {"_count": 1}, "even": {"_count": 1}}, "Neville": {"_count": 1, "did": {"_count": 1}}, "seemed": {"_count": 1, "about": {"_count": 1}}, "prickle": {"_count": 1, "unpleasantly": {"_count": 1}}, "thats": {"_count": 1, "Gwenog": {"_count": 1}}, "while": {"_count": 1, "staying": {"_count": 1}}, "is": {"_count": 1, "severed": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "thickness": {"_count": 1}}, "then": {"_count": 1, "sat": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "dropping": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "did": {"_count": 1}}, "aching": {"_count": 1, "because": {"_count": 1}}, "pulled": {"_count": 1, "on": {"_count": 1}}, "still": {"_count": 1, "burned": {"_count": 1}}, "at": {"_count": 1, "Bill": {"_count": 1}}, "his": {"_count": 1, "fingers": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "A": {"_count": 1, "tall": {"_count": 1}}}, "although": {"_count": 76, "he": {"_count": 9, "did": {"_count": 2}, "might": {"_count": 1}, "hadnt": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 3}, "refused": {"_count": 1}}, "people": {"_count": 1, "rarely": {"_count": 1}}, "that": {"_count": 3, "feels": {"_count": 1}, "might": {"_count": 1}, "was": {"_count": 1}}, "I": {"_count": 4, "have": {"_count": 1}, "do": {"_count": 1}, "did": {"_count": 1}, "know": {"_count": 1}}, "you": {"_count": 3, "were": {"_count": 1}, "may": {"_count": 1}, "have": {"_count": 1}}, "remnants": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 4, "wife": {"_count": 1}, "voice": {"_count": 2}, "conscience": {"_count": 1}}, "they": {"_count": 2, "could": {"_count": 1}, "all": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 2}, "had": {"_count": 1}}, "Hermione": {"_count": 2, "didnt": {"_count": 1}, "was": {"_count": 1}}, "she": {"_count": 6, "followed": {"_count": 1}, "might": {"_count": 1}, "should": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}}, "this": {"_count": 1, "could": {"_count": 1}}, "Harry": {"_count": 3, "knew": {"_count": 1}, "who": {"_count": 1}, "often": {"_count": 1}}, "if": {"_count": 2, "I": {"_count": 1}, "it": {"_count": 1}}, "normally": {"_count": 1, "proportioned": {"_count": 1}}, "halfway": {"_count": 1, "across": {"_count": 1}}, "fortunately": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 2, "was": {"_count": 1}, "thought": {"_count": 1}}, "the": {"_count": 3, "Dark": {"_count": 1}, "workers": {"_count": 1}, "eye": {"_count": 1}}, "speculation": {"_count": 1, "is": {"_count": 1}}, "ctd": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "insider": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 2}}, "judging": {"_count": 1, "by": {"_count": 1}}, "like": {"_count": 1, "Ron": {"_count": 1}}, "neither": {"_count": 1, "Harry": {"_count": 1}}, "Muggles": {"_count": 1, "around": {"_count": 1}}, "as": {"_count": 3, "we": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}}, "several": {"_count": 1, "twittering": {"_count": 1}}, "their": {"_count": 1, "seven": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}, "many": {"_count": 1, "now": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "its": {"_count": 1, "contents": {"_count": 1}}, "youre": {"_count": 1, "getting": {"_count": 1}}, "sometimes": {"_count": 1, "at": {"_count": 1}}, "actually": {"_count": 1, "a": {"_count": 1}}, "Dumbledores": {"_count": 1, "puppet": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}}, "he": {"_count": 14798, "did": {"_count": 286, "have": {"_count": 2}, "seem": {"_count": 3}, "this": {"_count": 2}, "wish": {"_count": 1}, "he": {"_count": 6}, "make": {"_count": 1}, "I": {"_count": 1}, "so": {"_count": 30}, "said": {"_count": 5}, "it": {"_count": 9}, "": {"_count": 16}, "save": {"_count": 1}, "to": {"_count": 3}, "as": {"_count": 1}, "want": {"_count": 1}, "isnt": {"_count": 1}, "indeed": {"_count": 1}, "was": {"_count": 1}, "still": {"_count": 1}, "at": {"_count": 2}, "not": {"_count": 151}, "Avada": {"_count": 1}, "right": {"_count": 1}, "hes": {"_count": 1}, "get": {"_count": 1}, "they": {"_count": 1}, "about": {"_count": 1}, "the": {"_count": 4}, "say": {"_count": 1}, "look": {"_count": 2}, "Im": {"_count": 1}, "Disapparate": {"_count": 1}, "before": {"_count": 1}, "that": {"_count": 1}, "FOUR": {"_count": 1}, "knowingly": {"_count": 1}, "and": {"_count": 1}, "himself": {"_count": 1}, "Voldemort": {"_count": 1}, "whenever": {"_count": 1}, "his": {"_count": 1}, "wonder": {"_count": 1}, "N": {"_count": 1}, "next": {"_count": 1}, "hate": {"_count": 1}, "Harry": {"_count": 1}, "tonight": {"_count": 1}, "then": {"_count": 1}, "blamed": {"_count": 1}, "with": {"_count": 1}, "increasingly": {"_count": 1}, "years": {"_count": 1}, "including": {"_count": 1}, "finish": {"_count": 1}, "away": {"_count": 1}, "He": {"_count": 1}, "them": {"_count": 1}, "let": {"_count": 1}, "believe": {"_count": 1}, "all": {"_count": 2}, "in": {"_count": 1}, "but": {"_count": 1}, "feel": {"_count": 1}}, "picked": {"_count": 11, "out": {"_count": 1}, "tonight": {"_count": 1}, "it": {"_count": 4}, "up": {"_count": 5}}, "left": {"_count": 46, "the": {"_count": 21}, "": {"_count": 1}, "his": {"_count": 1}, "walking": {"_count": 1}, "shutting": {"_count": 1}, "Hogwarts": {"_count": 4}, "Harry": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 2}, "voluntarily": {"_count": 1}, "office": {"_count": 1}, "her": {"_count": 3}, "but": {"_count": 1}, "to": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 2}, "This": {"_count": 1}, "said": {"_count": 1}}, "noticed": {"_count": 18, "the": {"_count": 2}, "a": {"_count": 4}, "anything": {"_count": 1}, "that": {"_count": 4}, "something": {"_count": 1}, "was": {"_count": 1}, "were": {"_count": 1}, "Harry": {"_count": 2}, "them": {"_count": 1}, "when": {"_count": 1}}, "had": {"_count": 1677, "seen": {"_count": 49}, "been": {"_count": 167}, "never": {"_count": 68}, "expected": {"_count": 12}, "just": {"_count": 53}, "hands": {"_count": 1}, "to": {"_count": 77}, "gotten": {"_count": 4}, "said": {"_count": 13}, "tried": {"_count": 12}, "a": {"_count": 35}, "moved": {"_count": 1}, "brought": {"_count": 8}, "ever": {"_count": 34}, "almost": {"_count": 4}, "enough": {"_count": 2}, "somehow": {"_count": 1}, "finally": {"_count": 6}, "touched": {"_count": 1}, "about": {"_count": 1}, "entered": {"_count": 6}, "hardly": {"_count": 1}, "found": {"_count": 14}, "pinned": {"_count": 2}, "everything": {"_count": 1}, "ten": {"_count": 1}, "no": {"_count": 26}, "gone": {"_count": 10}, "suddenly": {"_count": 3}, "pockets": {"_count": 1}, "not": {"_count": 79}, "the": {"_count": 23}, "": {"_count": 4}, "fallen": {"_count": 9}, "supposed": {"_count": 1}, "done": {"_count": 49}, "his": {"_count": 9}, "some": {"_count": 5}, "time": {"_count": 3}, "half": {"_count": 2}, "hidden": {"_count": 6}, "Harrys": {"_count": 2}, "fewer": {"_count": 1}, "another": {"_count": 1}, "managed": {"_count": 13}, "stopped": {"_count": 3}, "whiteblond": {"_count": 1}, "ter": {"_count": 1}, "passed": {"_count": 7}, "failed": {"_count": 3}, "got": {"_count": 10}, "finished": {"_count": 18}, "lost": {"_count": 8}, "was": {"_count": 1}, "arrived": {"_count": 6}, "money": {"_count": 1}, "in": {"_count": 2}, "pulled": {"_count": 3}, "become": {"_count": 4}, "hit": {"_count": 8}, "feared": {"_count": 1}, "ended": {"_count": 2}, "forgotten": {"_count": 8}, "shouted": {"_count": 3}, "handed": {"_count": 1}, "heard": {"_count": 30}, "swept": {"_count": 1}, "prevented": {"_count": 1}, "only": {"_count": 11}, "asked": {"_count": 3}, "given": {"_count": 10}, "had": {"_count": 23}, "felt": {"_count": 15}, "always": {"_count": 8}, "also": {"_count": 4}, "wanted": {"_count": 7}, "begun": {"_count": 1}, "left": {"_count": 21}, "meant": {"_count": 3}, "guessed": {"_count": 1}, "heaved": {"_count": 1}, "inherited": {"_count": 3}, "thrown": {"_count": 2}, "walked": {"_count": 2}, "five": {"_count": 1}, "once": {"_count": 12}, "saved": {"_count": 3}, "bound": {"_count": 1}, "on": {"_count": 1}, "even": {"_count": 2}, "pushed": {"_count": 2}, "stood": {"_count": 2}, "lockjaw": {"_count": 1}, "nearly": {"_count": 2}, "read": {"_count": 6}, "suspected": {"_count": 3}, "this": {"_count": 2}, "first": {"_count": 8}, "hoped": {"_count": 7}, "again": {"_count": 2}, "too": {"_count": 2}, "at": {"_count": 3}, "opened": {"_count": 1}, "overslept": {"_count": 1}, "reached": {"_count": 6}, "both": {"_count": 1}, "hooked": {"_count": 2}, "long": {"_count": 2}, "admitted": {"_count": 1}, "set": {"_count": 3}, "raised": {"_count": 2}, "evidently": {"_count": 3}, "any": {"_count": 5}, "sought": {"_count": 1}, "believed": {"_count": 1}, "successfully": {"_count": 1}, "deeply": {"_count": 1}, "made": {"_count": 14}, "awoken": {"_count": 4}, "performed": {"_count": 2}, "escaped": {"_count": 2}, "so": {"_count": 4}, "reminded": {"_count": 1}, "come": {"_count": 12}, "received": {"_count": 9}, "tied": {"_count": 1}, "written": {"_count": 6}, "barely": {"_count": 6}, "played": {"_count": 1}, "springs": {"_count": 1}, "actually": {"_count": 2}, "lined": {"_count": 1}, "owned": {"_count": 1}, "obviously": {"_count": 3}, "involved": {"_count": 1}, "now": {"_count": 2}, "fought": {"_count": 2}, "worn": {"_count": 2}, "run": {"_count": 2}, "hinted": {"_count": 1}, "when": {"_count": 2}, "joined": {"_count": 2}, "tricked": {"_count": 1}, "helped": {"_count": 1}, "experienced": {"_count": 3}, "told": {"_count": 7}, "mercifully": {"_count": 1}, "abandoned": {"_count": 2}, "certainly": {"_count": 1}, "procured": {"_count": 2}, "sped": {"_count": 2}, "sounded": {"_count": 1}, "disappeared": {"_count": 2}, "taken": {"_count": 12}, "seized": {"_count": 1}, "survived": {"_count": 3}, "shown": {"_count": 4}, "swerved": {"_count": 1}, "Ron": {"_count": 1}, "an": {"_count": 4}, "booked": {"_count": 1}, "yet": {"_count": 2}, "missed": {"_count": 6}, "upset": {"_count": 1}, "someone": {"_count": 1}, "zoomed": {"_count": 1}, "ascertained": {"_count": 1}, "that": {"_count": 1}, "let": {"_count": 2}, "overheard": {"_count": 5}, "imagined": {"_count": 4}, "thought": {"_count": 13}, "sent": {"_count": 1}, "completely": {"_count": 2}, "sprouted": {"_count": 1}, "grasped": {"_count": 1}, "already": {"_count": 14}, "vanished": {"_count": 3}, "appeared": {"_count": 3}, "dedicated": {"_count": 1}, "it": {"_count": 2}, "died": {"_count": 4}, "mistaken": {"_count": 1}, "practiced": {"_count": 1}, "sprained": {"_count": 1}, "but": {"_count": 2}, "wrapped": {"_count": 2}, "attended": {"_count": 1}, "learned": {"_count": 3}, "threatened": {"_count": 1}, "smuggled": {"_count": 1}, "crossed": {"_count": 1}, "started": {"_count": 3}, "thirteen": {"_count": 1}, "returned": {"_count": 5}, "watched": {"_count": 7}, "and": {"_count": 1}, "spent": {"_count": 4}, "wheeled": {"_count": 1}, "much": {"_count": 1}, "pounded": {"_count": 1}, "regretted": {"_count": 1}, "by": {"_count": 1}, "nothing": {"_count": 1}, "unsettling": {"_count": 1}, "sat": {"_count": 3}, "seemed": {"_count": 1}, "served": {"_count": 1}, "landed": {"_count": 3}, "conjured": {"_count": 2}, "more": {"_count": 3}, "replaced": {"_count": 2}, "huge": {"_count": 1}, "won": {"_count": 3}, "visited": {"_count": 2}, "dispensed": {"_count": 2}, "noticed": {"_count": 2}, "remembered": {"_count": 2}, "known": {"_count": 9}, "beaten": {"_count": 1}, "met": {"_count": 10}, "deduced": {"_count": 1}, "soon": {"_count": 1}, "intended": {"_count": 1}, "used": {"_count": 6}, "information": {"_count": 1}, "turned": {"_count": 4}, "complained": {"_count": 1}, "something": {"_count": 2}, "training": {"_count": 1}, "torn": {"_count": 1}, "really": {"_count": 2}, "sworn": {"_count": 2}, "Quidditch": {"_count": 1}, "hung": {"_count": 1}, "bruised": {"_count": 1}, "caught": {"_count": 1}, "because": {"_count": 1}, "Neville": {"_count": 1}, "decided": {"_count": 5}, "liked": {"_count": 1}, "promised": {"_count": 2}, "ensured": {"_count": 1}, "shared": {"_count": 1}, "attacked": {"_count": 2}, "journeyed": {"_count": 1}, "witnessed": {"_count": 2}, "placed": {"_count": 2}, "redoubling": {"_count": 1}, "squeezed": {"_count": 2}, "two": {"_count": 1}, "misheard": {"_count": 1}, "Occlumency": {"_count": 1}, "penetrated": {"_count": 2}, "twenty": {"_count": 1}, "put": {"_count": 1}, "suffered": {"_count": 5}, "glowed": {"_count": 1}, "quite": {"_count": 2}, "traveled": {"_count": 1}, "spoken": {"_count": 2}, "stepped": {"_count": 2}, "then": {"_count": 1}, "gained": {"_count": 2}, "expressed": {"_count": 1}, "with": {"_count": 3}, "observed": {"_count": 1}, "marked": {"_count": 2}, "mislabelled": {"_count": 1}, "understood": {"_count": 1}, "followed": {"_count": 1}, "dropped": {"_count": 5}, "led": {"_count": 1}, "jabbed": {"_count": 1}, "Lupin": {"_count": 1}, "reappeared": {"_count": 1}, "caused": {"_count": 1}, "emerged": {"_count": 1}, "talked": {"_count": 1}, "anticipated": {"_count": 1}, "last": {"_count": 4}, "climbed": {"_count": 2}, "trained": {"_count": 1}, "refused": {"_count": 2}, "thrust": {"_count": 1}, "fastened": {"_count": 1}, "keen": {"_count": 1}, "ordered": {"_count": 1}, "doused": {"_count": 1}, "struck": {"_count": 2}, "stuffed": {"_count": 1}, "permission": {"_count": 1}, "eaten": {"_count": 1}, "collapsed": {"_count": 1}, "achieved": {"_count": 2}, "happily": {"_count": 1}, "created": {"_count": 1}, "spotted": {"_count": 4}, "picked": {"_count": 2}, "rarely": {"_count": 1}, "skimmed": {"_count": 1}, "disturbed": {"_count": 1}, "concluded": {"_count": 1}, "simply": {"_count": 1}, "married": {"_count": 1}, "mysteriously": {"_count": 1}, "twice": {"_count": 1}, "momentarily": {"_count": 1}, "hated": {"_count": 1}, "withheld": {"_count": 1}, "still": {"_count": 2}, "indeed": {"_count": 2}, "checked": {"_count": 1}, "behaved": {"_count": 1}, "grown": {"_count": 1}, "collected": {"_count": 1}, "dawdled": {"_count": 1}, "pretended": {"_count": 2}, "Rufus": {"_count": 1}, "unrolled": {"_count": 1}, "shrunk": {"_count": 1}, "several": {"_count": 1}, "stolen": {"_count": 2}, "disagreed": {"_count": 1}, "apparently": {"_count": 1}, "boasted": {"_count": 1}, "most": {"_count": 2}, "business": {"_count": 1}, "secured": {"_count": 1}, "wheedled": {"_count": 1}, "frequently": {"_count": 1}, "loathed": {"_count": 1}, "ruined": {"_count": 1}, "rolled": {"_count": 1}, "tasted": {"_count": 1}, "slid": {"_count": 1}, "them": {"_count": 1}, "overtaken": {"_count": 1}, "cursed": {"_count": 1}, "located": {"_count": 1}, "sustained": {"_count": 1}, "moments": {"_count": 1}, "lowered": {"_count": 1}, "faced": {"_count": 1}, "rested": {"_count": 1}, "packed": {"_count": 1}, "merely": {"_count": 1}, "cut": {"_count": 1}, "sprung": {"_count": 1}, "rather": {"_count": 1}, "trodden": {"_count": 1}, "rushed": {"_count": 1}, "Hagrid": {"_count": 1}, "wasted": {"_count": 1}, "control": {"_count": 1}, "killed": {"_count": 5}, "idolized": {"_count": 1}, "access": {"_count": 1}, "crashed": {"_count": 1}, "overturned": {"_count": 1}, "sunk": {"_count": 1}, "surprised": {"_count": 1}, "worked": {"_count": 1}, "dared": {"_count": 1}, "swapped": {"_count": 1}, "narrowly": {"_count": 1}, "discovered": {"_count": 3}, "looked": {"_count": 1}, "retrieved": {"_count": 1}, "realized": {"_count": 2}, "retorted": {"_count": 1}, "cast": {"_count": 2}, "produced": {"_count": 1}, "snatched": {"_count": 1}, "attained": {"_count": 1}, "defeated": {"_count": 1}, "warned": {"_count": 1}, "stretched": {"_count": 1}, "chosen": {"_count": 1}, "misread": {"_count": 1}, "drunk": {"_count": 1}, "sprinted": {"_count": 1}, "estimated": {"_count": 1}, "dreaded": {"_count": 1}, "stowed": {"_count": 1}, "broken": {"_count": 1}, "recently": {"_count": 1}, "less": {"_count": 1}, "one": {"_count": 1}, "continued": {"_count": 1}, "parted": {"_count": 1}, "spawned": {"_count": 1}, "eyes": {"_count": 1}, "kidnapped": {"_count": 1}, "succeeded": {"_count": 1}, "divested": {"_count": 1}}, "jerked": {"_count": 4, "his": {"_count": 3}, "upright": {"_count": 1}}, "have": {"_count": 35, "been": {"_count": 5}, "forgotten": {"_count": 2}, "to": {"_count": 6}, "": {"_count": 2}, "given": {"_count": 2}, "let": {"_count": 1}, "time": {"_count": 1}, "just": {"_count": 1}, "held": {"_count": 1}, "expected": {"_count": 1}, "dreamed": {"_count": 2}, "done": {"_count": 2}, "imparted": {"_count": 1}, "told": {"_count": 2}, "left": {"_count": 2}, "turned": {"_count": 1}, "hidden": {"_count": 1}, "the": {"_count": 2}}, "watched": {"_count": 34, "the": {"_count": 5}, "": {"_count": 2}, "as": {"_count": 1}, "Malfoy": {"_count": 3}, "snow": {"_count": 1}, "Harry": {"_count": 2}, "several": {"_count": 1}, "other": {"_count": 1}, "Cedric": {"_count": 1}, "Joey": {"_count": 1}, "Krum": {"_count": 1}, "Filch": {"_count": 1}, "Madame": {"_count": 1}, "with": {"_count": 1}, "them": {"_count": 3}, "Fleur": {"_count": 1}, "Mrs": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 2}, "Dumbledore": {"_count": 1}, "a": {"_count": 1}, "Kreacher": {"_count": 1}, "Ginny": {"_count": 1}}, "drove": {"_count": 3, "toward": {"_count": 1}, "Uncle": {"_count": 1}, "a": {"_count": 1}}, "thought": {"_count": 158, "of": {"_count": 15}, "hed": {"_count": 4}, "or": {"_count": 1}, "nobody": {"_count": 1}, "he": {"_count": 29}, "it": {"_count": 12}, "they": {"_count": 3}, "a": {"_count": 1}, "as": {"_count": 4}, "Voldemort": {"_count": 2}, "is": {"_count": 1}, "desperately": {"_count": 3}, "I": {"_count": 3}, "bitterly": {"_count": 1}, "savagely": {"_count": 2}, "the": {"_count": 6}, "that": {"_count": 15}, "Harry": {"_count": 2}, "angrily": {"_count": 3}, "Aragog": {"_count": 1}, "sounded": {"_count": 1}, "quickly": {"_count": 1}, "": {"_count": 6}, "ed": {"_count": 1}, "you": {"_count": 5}, "Mr": {"_count": 1}, "about": {"_count": 2}, "his": {"_count": 4}, "Dumbledore": {"_count": 2}, "we": {"_count": 1}, "to": {"_count": 1}, "sliding": {"_count": 1}, "longingly": {"_count": 1}, "someone": {"_count": 1}, "this": {"_count": 3}, "perhaps": {"_count": 1}, "she": {"_count": 2}, "and": {"_count": 1}, "turning": {"_count": 1}, "but": {"_count": 1}, "there": {"_count": 1}, "had": {"_count": 1}, "might": {"_count": 1}, "with": {"_count": 2}, "at": {"_count": 1}, "was": {"_count": 1}, "most": {"_count": 1}, "Thicknesse": {"_count": 1}, "ruefully": {"_count": 1}, "back": {"_count": 1}, "be": {"_count": 1}}, "was": {"_count": 1783, "hoping": {"_count": 5}, "and": {"_count": 6}, "being": {"_count": 23}, "still": {"_count": 39}, "imagining": {"_count": 5}, "": {"_count": 30}, "looking": {"_count": 20}, "smiling": {"_count": 6}, "going": {"_count": 77}, "holding": {"_count": 14}, "gone": {"_count": 7}, "special": {"_count": 2}, "famous": {"_count": 2}, "dressed": {"_count": 2}, "very": {"_count": 8}, "something": {"_count": 2}, "almost": {"_count": 4}, "already": {"_count": 4}, "sitting": {"_count": 5}, "forbidden": {"_count": 2}, "allowed": {"_count": 2}, "the": {"_count": 32}, "wearing": {"_count": 18}, "doing": {"_count": 44}, "about": {"_count": 23}, "gettin": {"_count": 2}, "cornin": {"_count": 1}, "really": {"_count": 11}, "born": {"_count": 4}, "so": {"_count": 20}, "obviously": {"_count": 2}, "studyin": {"_count": 1}, "out": {"_count": 10}, "there": {"_count": 17}, "listening": {"_count": 8}, "stranded": {"_count": 1}, "a": {"_count": 49}, "alone": {"_count": 6}, "leaving": {"_count": 4}, "ready": {"_count": 3}, "off": {"_count": 5}, "joking": {"_count": 1}, "no": {"_count": 8}, "getting": {"_count": 7}, "hanging": {"_count": 3}, "one": {"_count": 4}, "trying": {"_count": 24}, "Hermione": {"_count": 1}, "gathering": {"_count": 1}, "pushing": {"_count": 1}, "sure": {"_count": 36}, "eating": {"_count": 2}, "now": {"_count": 13}, "playing": {"_count": 3}, "back": {"_count": 13}, "on": {"_count": 18}, "missing": {"_count": 3}, "laden": {"_count": 1}, "at": {"_count": 12}, "Filch": {"_count": 1}, "reflected": {"_count": 1}, "making": {"_count": 7}, "tired": {"_count": 1}, "just": {"_count": 9}, "stuttering": {"_count": 1}, "petrified": {"_count": 2}, "in": {"_count": 37}, "quite": {"_count": 8}, "hiding": {"_count": 3}, "singing": {"_count": 1}, "nowhere": {"_count": 1}, "acting": {"_count": 1}, "saying": {"_count": 16}, "wide": {"_count": 1}, "talking": {"_count": 14}, "shelling": {"_count": 1}, "most": {"_count": 3}, "here": {"_count": 10}, "indoors": {"_count": 1}, "mean": {"_count": 1}, "as": {"_count": 4}, "locked": {"_count": 3}, "seeing": {"_count": 8}, "free": {"_count": 5}, "lying": {"_count": 15}, "right": {"_count": 12}, "made": {"_count": 1}, "enchanting": {"_count": 1}, "busy": {"_count": 6}, "up": {"_count": 5}, "he": {"_count": 4}, "standing": {"_count": 14}, "lost": {"_count": 1}, "selling": {"_count": 1}, "distracted": {"_count": 3}, "sprawled": {"_count": 1}, "unable": {"_count": 5}, "supposed": {"_count": 19}, "cut": {"_count": 1}, "photographing": {"_count": 1}, "awake": {"_count": 5}, "gazing": {"_count": 4}, "keen": {"_count": 2}, "satisfied": {"_count": 1}, "always": {"_count": 10}, "blowing": {"_count": 1}, "skulking": {"_count": 1}, "dead": {"_count": 8}, "completely": {"_count": 2}, "wrong": {"_count": 4}, "young": {"_count": 3}, "Muggleborn": {"_count": 1}, "only": {"_count": 9}, "trembling": {"_count": 3}, "Muggle": {"_count": 1}, "somehow": {"_count": 1}, "planning": {"_count": 3}, "suddenly": {"_count": 3}, "likely": {"_count": 2}, "thinking": {"_count": 12}, "mine": {"_count": 1}, "oneup": {"_count": 1}, "wasting": {"_count": 2}, "hurrying": {"_count": 2}, "expelled": {"_count": 4}, "tilting": {"_count": 1}, "pitched": {"_count": 1}, "too": {"_count": 16}, "equally": {"_count": 1}, "heartily": {"_count": 1}, "lousy": {"_count": 1}, "faced": {"_count": 1}, "guilty": {"_count": 1}, "teetering": {"_count": 1}, "beaming": {"_count": 1}, "shaking": {"_count": 10}, "falling": {"_count": 3}, "smashed": {"_count": 1}, "hearing": {"_count": 5}, "sixteen": {"_count": 2}, "probably": {"_count": 4}, "barely": {"_count": 3}, "attempting": {"_count": 1}, "longing": {"_count": 2}, "writing": {"_count": 1}, "studying": {"_count": 2}, "lucky": {"_count": 3}, "well": {"_count": 1}, "mentally": {"_count": 1}, "surprised": {"_count": 3}, "eighteen": {"_count": 1}, "goggling": {"_count": 1}, "able": {"_count": 11}, "under": {"_count": 3}, "clever": {"_count": 1}, "sending": {"_count": 1}, "to": {"_count": 15}, "home": {"_count": 3}, "told": {"_count": 5}, "soaring": {"_count": 2}, "swinging": {"_count": 1}, "bullying": {"_count": 1}, "coming": {"_count": 1}, "ten": {"_count": 2}, "starting": {"_count": 5}, "less": {"_count": 2}, "or": {"_count": 3}, "forced": {"_count": 11}, "doin": {"_count": 1}, "goin": {"_count": 2}, "sobbing": {"_count": 1}, "cornered": {"_count": 1}, "said": {"_count": 2}, "merely": {"_count": 1}, "facing": {"_count": 7}, "positively": {"_count": 1}, "away": {"_count": 3}, "unpleasantly": {"_count": 1}, "reaching": {"_count": 1}, "concerned": {"_count": 5}, "interrupted": {"_count": 3}, "that": {"_count": 3}, "nearly": {"_count": 2}, "running": {"_count": 4}, "happy": {"_count": 3}, "laughing": {"_count": 1}, "old": {"_count": 1}, "poring": {"_count": 1}, "surrounded": {"_count": 3}, "safe": {"_count": 5}, "level": {"_count": 1}, "counting": {"_count": 2}, "dashing": {"_count": 1}, "knocked": {"_count": 3}, "losing": {"_count": 2}, "clinging": {"_count": 3}, "short": {"_count": 2}, "sympathetic": {"_count": 1}, "helping": {"_count": 1}, "living": {"_count": 2}, "taking": {"_count": 3}, "pulled": {"_count": 1}, "recognizable": {"_count": 1}, "backing": {"_count": 2}, "definitely": {"_count": 2}, "innocent": {"_count": 3}, "capable": {"_count": 1}, "flying": {"_count": 5}, "having": {"_count": 6}, "close": {"_count": 1}, "loose": {"_count": 1}, "constantly": {"_count": 2}, "odd": {"_count": 1}, "forcing": {"_count": 2}, "was": {"_count": 3}, "frozen": {"_count": 2}, "hissing": {"_count": 1}, "inside": {"_count": 2}, "used": {"_count": 3}, "enjoying": {"_count": 1}, "expected": {"_count": 2}, "tall": {"_count": 3}, "anxious": {"_count": 1}, "squashed": {"_count": 1}, "except": {"_count": 1}, "gagging": {"_count": 1}, "with": {"_count": 4}, "stuck": {"_count": 6}, "carrying": {"_count": 3}, "immediately": {"_count": 1}, "using": {"_count": 1}, "jabbing": {"_count": 2}, "supporting": {"_count": 1}, "drawing": {"_count": 1}, "surveying": {"_count": 1}, "sleeping": {"_count": 3}, "creeping": {"_count": 1}, "resting": {"_count": 1}, "seventeen": {"_count": 2}, "good": {"_count": 2}, "eavesdropping": {"_count": 2}, "temporarily": {"_count": 1}, "not": {"_count": 59}, "over": {"_count": 1}, "waiting": {"_count": 2}, "speaking": {"_count": 2}, "entered": {"_count": 1}, "tying": {"_count": 1}, "highly": {"_count": 1}, "given": {"_count": 1}, "reading": {"_count": 2}, "opening": {"_count": 1}, "glad": {"_count": 5}, "heading": {"_count": 3}, "walking": {"_count": 1}, "speeding": {"_count": 1}, "offering": {"_count": 1}, "she": {"_count": 1}, "rereading": {"_count": 1}, "also": {"_count": 8}, "though": {"_count": 1}, "certainly": {"_count": 1}, "telling": {"_count": 2}, "once": {"_count": 2}, "accusing": {"_count": 1}, "refusing": {"_count": 2}, "bouncing": {"_count": 1}, "putting": {"_count": 1}, "extremely": {"_count": 1}, "saving": {"_count": 1}, "finding": {"_count": 1}, "near": {"_count": 1}, "bound": {"_count": 1}, "interested": {"_count": 2}, "becoming": {"_count": 2}, "honest": {"_count": 2}, "concealing": {"_count": 1}, "brought": {"_count": 1}, "Sirius": {"_count": 1}, "part": {"_count": 1}, "unshaven": {"_count": 1}, "behaving": {"_count": 2}, "hurtling": {"_count": 1}, "watching": {"_count": 5}, "wheezing": {"_count": 1}, "yelling": {"_count": 1}, "found": {"_count": 1}, "observing": {"_count": 1}, "staring": {"_count": 10}, "strong": {"_count": 1}, "burning": {"_count": 2}, "confident": {"_count": 2}, "nervous": {"_count": 1}, "all": {"_count": 3}, "moving": {"_count": 5}, "bang": {"_count": 1}, "aching": {"_count": 1}, "tied": {"_count": 2}, "easy": {"_count": 1}, "buried": {"_count": 1}, "screaming": {"_count": 1}, "dodging": {"_count": 1}, "his": {"_count": 1}, "lined": {"_count": 1}, "ill": {"_count": 1}, "even": {"_count": 1}, "spoke": {"_count": 1}, "smuggled": {"_count": 1}, "transported": {"_count": 1}, "baring": {"_count": 1}, "screwing": {"_count": 1}, "suffering": {"_count": 1}, "involved": {"_count": 1}, "concealed": {"_count": 1}, "simply": {"_count": 1}, "siphoning": {"_count": 1}, "twice": {"_count": 1}, "shivering": {"_count": 1}, "drenched": {"_count": 1}, "agitated": {"_count": 1}, "certain": {"_count": 2}, "straining": {"_count": 2}, "disappointed": {"_count": 1}, "halfashamed": {"_count": 1}, "working": {"_count": 3}, "forever": {"_count": 1}, "voted": {"_count": 1}, "powerful": {"_count": 2}, "curled": {"_count": 1}, "glowering": {"_count": 1}, "I": {"_count": 1}, "prepared": {"_count": 3}, "murdered": {"_count": 1}, "grown": {"_count": 1}, "continuing": {"_count": 1}, "moodier": {"_count": 1}, "better": {"_count": 1}, "relieved": {"_count": 1}, "least": {"_count": 1}, "convinced": {"_count": 3}, "sent": {"_count": 1}, "elected": {"_count": 1}, "facetoface": {"_count": 2}, "Ron": {"_count": 1}, "glassyeyed": {"_count": 1}, "left": {"_count": 2}, "rebuffed": {"_count": 1}, "attracting": {"_count": 1}, "clutching": {"_count": 1}, "vaguely": {"_count": 1}, "perfectly": {"_count": 1}, "grateful": {"_count": 2}, "sorry": {"_count": 1}, "They": {"_count": 1}, "feeling": {"_count": 6}, "determined": {"_count": 5}, "grinning": {"_count": 2}, "agreeing": {"_count": 2}, "tempted": {"_count": 1}, "checking": {"_count": 2}, "tipped": {"_count": 1}, "pretty": {"_count": 2}, "determinedly": {"_count": 1}, "within": {"_count": 1}, "indeed": {"_count": 1}, "whatever": {"_count": 1}, "pleased": {"_count": 2}, "halfway": {"_count": 3}, "exhausted": {"_count": 1}, "related": {"_count": 1}, "aiming": {"_count": 2}, "muttered": {"_count": 1}, "winded": {"_count": 1}, "lyin": {"_count": 1}, "attacked": {"_count": 1}, "banging": {"_count": 1}, "youve": {"_count": 1}, "propped": {"_count": 1}, "an": {"_count": 1}, "confused": {"_count": 2}, "scared": {"_count": 2}, "actually": {"_count": 1}, "giving": {"_count": 2}, "rather": {"_count": 1}, "mumbling": {"_count": 1}, "egging": {"_count": 1}, "imprisoning": {"_count": 1}, "perched": {"_count": 1}, "guarding": {"_count": 1}, "whether": {"_count": 1}, "slowly": {"_count": 1}, "turning": {"_count": 1}, "feet": {"_count": 1}, "therefore": {"_count": 1}, "meeting": {"_count": 1}, "much": {"_count": 3}, "chewing": {"_count": 1}, "struggling": {"_count": 1}, "floating": {"_count": 1}, "bored": {"_count": 1}, "like": {"_count": 2}, "desperate": {"_count": 1}, "unequal": {"_count": 1}, "popular": {"_count": 1}, "around": {"_count": 1}, "armed": {"_count": 1}, "thoroughly": {"_count": 1}, "feinting": {"_count": 1}, "heard": {"_count": 1}, "sneaking": {"_count": 1}, "asking": {"_count": 1}, "delighted": {"_count": 1}, "If": {"_count": 1}, "nearer": {"_count": 1}, "thrust": {"_count": 1}, "unaware": {"_count": 2}, "rising": {"_count": 2}, "but": {"_count": 1}, "enslaved": {"_count": 1}, "how": {"_count": 1}, "kind": {"_count": 1}, "fulfilling": {"_count": 1}, "mistaken": {"_count": 2}, "never": {"_count": 2}, "neither": {"_count": 1}, "cold": {"_count": 2}, "failing": {"_count": 1}, "dealing": {"_count": 3}, "dripping": {"_count": 1}, "wiser": {"_count": 1}, "kneeling": {"_count": 2}, "enough": {"_count": 1}, "awakened": {"_count": 1}, "sickening": {"_count": 1}, "her": {"_count": 3}, "unwilling": {"_count": 1}, "behind": {"_count": 1}, "showing": {"_count": 4}, "expecting": {"_count": 1}, "shown": {"_count": 1}, "until": {"_count": 1}, "hungry": {"_count": 1}, "late": {"_count": 1}, "passing": {"_count": 1}, "breathing": {"_count": 1}, "playacting": {"_count": 1}, "amazed": {"_count": 1}, "called": {"_count": 1}, "carried": {"_count": 1}, "blinking": {"_count": 1}, "brandishing": {"_count": 1}, "dragging": {"_count": 1}, "arrested": {"_count": 1}, "overheard": {"_count": 2}, "Confunded": {"_count": 1}, "buying": {"_count": 1}, "glaring": {"_count": 1}, "shut": {"_count": 1}, "soon": {"_count": 3}, "ducking": {"_count": 1}, "spending": {"_count": 1}, "escorting": {"_count": 1}, "pretending": {"_count": 2}, "peeling": {"_count": 1}, "eyeing": {"_count": 1}, "slowing": {"_count": 1}, "frightening": {"_count": 1}, "trustworthy": {"_count": 1}, "again": {"_count": 1}, "conscious": {"_count": 1}, "streaking": {"_count": 1}, "rapidly": {"_count": 1}, "nothing": {"_count": 1}, "by": {"_count": 2}, "traveling": {"_count": 1}, "reduced": {"_count": 1}, "when": {"_count": 1}, "regretting": {"_count": 1}, "Slytherins": {"_count": 1}, "condemned": {"_count": 1}, "turned": {"_count": 1}, "destroying": {"_count": 1}, "intending": {"_count": 1}, "considering": {"_count": 1}, "advising": {"_count": 1}, "keeping": {"_count": 3}, "fighting": {"_count": 3}, "terrified": {"_count": 2}, "experiencing": {"_count": 2}, "deeply": {"_count": 1}, "trapped": {"_count": 1}, "compelled": {"_count": 1}, "intruding": {"_count": 1}, "weak": {"_count": 2}, "g": {"_count": 1}, "aware": {"_count": 1}, "infuriated": {"_count": 1}, "more": {"_count": 2}, "undertaking": {"_count": 1}, "guiltless": {"_count": 1}, "younger": {"_count": 2}, "flattering": {"_count": 1}, "nevertheless": {"_count": 1}, "alive": {"_count": 3}, "injured": {"_count": 1}, "headmaster": {"_count": 1}, "Scrimgeour": {"_count": 1}, "mental": {"_count": 1}, "affecting": {"_count": 1}, "squeezed": {"_count": 1}, "smaller": {"_count": 1}, "chasing": {"_count": 1}, "permitting": {"_count": 1}, "accustomed": {"_count": 1}, "invisible": {"_count": 1}, "impersonating": {"_count": 1}, "look": {"_count": 1}, "pointing": {"_count": 1}, "torturing": {"_count": 1}, "clammy": {"_count": 1}, "approaching": {"_count": 2}, "Tonkss": {"_count": 1}, "apparently": {"_count": 1}, "Harry": {"_count": 2}, "asleep": {"_count": 1}, "angrier": {"_count": 1}, "company": {"_count": 1}, "Undesirable": {"_count": 1}, "beside": {"_count": 1}, "Voldemort": {"_count": 2}, "gliding": {"_count": 2}, "seeking": {"_count": 2}, "digging": {"_count": 1}, "recuperating": {"_count": 1}, "submerged": {"_count": 1}, "such": {"_count": 1}, "undergoing": {"_count": 1}, "descended": {"_count": 2}, "impervious": {"_count": 1}, "bundled": {"_count": 1}, "staggering": {"_count": 1}, "peering": {"_count": 1}, "enraged": {"_count": 1}, "vanishing": {"_count": 1}, "master": {"_count": 1}, "rejoined": {"_count": 1}, "offended": {"_count": 1}, "ever": {"_count": 1}, "light": {"_count": 1}, "remembering": {"_count": 1}, "letting": {"_count": 1}, "thrown": {"_count": 1}, "concentrating": {"_count": 1}, "bellowing": {"_count": 1}, "worth": {"_count": 1}, "offensively": {"_count": 1}, "pressed": {"_count": 1}, "overcome": {"_count": 1}, "this": {"_count": 1}, "battling": {"_count": 1}, "bleeding": {"_count": 1}, "learning": {"_count": 1}, "brain": {"_count": 1}, "naked": {"_count": 1}, "of": {"_count": 1}, "afraid": {"_count": 1}, "striking": {"_count": 1}, "cleverer": {"_count": 1}, "Dumbledores": {"_count": 1}}, "sat": {"_count": 45, "in": {"_count": 1}, "down": {"_count": 19}, "bolt": {"_count": 1}, "hiccoughing": {"_count": 1}, "Harry": {"_count": 1}, "reading": {"_count": 1}, "": {"_count": 2}, "frozen": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 2}, "gingerly": {"_count": 1}, "back": {"_count": 1}, "eating": {"_count": 1}, "with": {"_count": 2}, "here": {"_count": 1}, "nevertheless": {"_count": 1}, "up": {"_count": 3}, "there": {"_count": 3}, "looking": {"_count": 1}, "tied": {"_count": 1}}, "couldnt": {"_count": 104, "help": {"_count": 5}, "see": {"_count": 8}, "": {"_count": 2}, "kill": {"_count": 2}, "often": {"_count": 1}, "explain": {"_count": 1}, "be": {"_count": 5}, "risk": {"_count": 1}, "imagine": {"_count": 1}, "decide": {"_count": 1}, "do": {"_count": 6}, "come": {"_count": 3}, "move": {"_count": 3}, "shake": {"_count": 1}, "speak": {"_count": 1}, "make": {"_count": 2}, "hear": {"_count": 3}, "believe": {"_count": 6}, "understand": {"_count": 2}, "Hagrids": {"_count": 1}, "fight": {"_count": 1}, "have": {"_count": 5}, "quite": {"_count": 3}, "just": {"_count": 1}, "suppress": {"_count": 1}, "think": {"_count": 3}, "die": {"_count": 1}, "remember": {"_count": 5}, "sit": {"_count": 1}, "look": {"_count": 1}, "get": {"_count": 4}, "cope": {"_count": 1}, "stand": {"_count": 2}, "brood": {"_count": 1}, "go": {"_count": 2}, "read": {"_count": 1}, "tell": {"_count": 1}, "walk": {"_count": 1}, "distinguish": {"_count": 1}, "reach": {"_count": 1}, "Filch": {"_count": 1}, "breathe": {"_count": 1}, "turn": {"_count": 1}, "stop": {"_count": 2}, "work": {"_count": 1}, "bring": {"_count": 2}, "talk": {"_count": 1}, "really": {"_count": 1}, "resist": {"_count": 1}, "take": {"_count": 1}}, "hadnt": {"_count": 72, "he": {"_count": 1}, "been": {"_count": 9}, "said": {"_count": 1}, "received": {"_count": 1}, "counted": {"_count": 1}, "noticed": {"_count": 4}, "looked": {"_count": 1}, "learned": {"_count": 1}, "stolen": {"_count": 2}, "gone": {"_count": 1}, "paid": {"_count": 1}, "at": {"_count": 1}, "because": {"_count": 1}, "walked": {"_count": 1}, "practiced": {"_count": 1}, "really": {"_count": 3}, "spoken": {"_count": 3}, "come": {"_count": 1}, "thought": {"_count": 2}, "it": {"_count": 1}, "had": {"_count": 3}, "found": {"_count": 2}, "called": {"_count": 1}, "got": {"_count": 1}, "seen": {"_count": 2}, "known": {"_count": 1}, "mentioned": {"_count": 1}, "asked": {"_count": 1}, "jinxed": {"_count": 1}, "yet": {"_count": 1}, "put": {"_count": 1}, "spotted": {"_count": 2}, "entered": {"_count": 1}, "done": {"_count": 4}, "told": {"_count": 1}, "bought": {"_count": 1}, "felt": {"_count": 1}, "overheard": {"_count": 1}, "heard": {"_count": 2}, "I": {"_count": 1}, "Cedric": {"_count": 1}, "written": {"_count": 1}, "realized": {"_count": 1}, "transformed": {"_count": 1}, "just": {"_count": 1}, "tried": {"_count": 1}}, "might": {"_count": 113, "have": {"_count": 32}, "be": {"_count": 22}, "get": {"_count": 1}, "not": {"_count": 9}, "cry": {"_count": 1}, "turn": {"_count": 1}, "wake": {"_count": 1}, "as": {"_count": 4}, "collapse": {"_count": 1}, "let": {"_count": 1}, "never": {"_count": 3}, "hear": {"_count": 2}, "to": {"_count": 1}, "just": {"_count": 3}, "start": {"_count": 1}, "run": {"_count": 1}, "do": {"_count": 1}, "find": {"_count": 1}, "attack": {"_count": 2}, "actually": {"_count": 1}, "know": {"_count": 2}, "become": {"_count": 1}, "even": {"_count": 2}, "try": {"_count": 2}, "seek": {"_count": 1}, "at": {"_count": 1}, "suddenly": {"_count": 1}, "kill": {"_count": 1}, "already": {"_count": 1}, "really": {"_count": 1}, "argue": {"_count": 1}, "see": {"_count": 2}, "use": {"_count": 1}, "begin": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "hide": {"_count": 1}, "fill": {"_count": 1}, "curse": {"_count": 1}, "come": {"_count": 1}}, "passed": {"_count": 50, "a": {"_count": 1}, "": {"_count": 11}, "the": {"_count": 7}, "like": {"_count": 1}, "her": {"_count": 4}, "and": {"_count": 5}, "them": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 2}, "Cho": {"_count": 1}, "on": {"_count": 1}, "there": {"_count": 1}, "muttered": {"_count": 1}, "Weasleys": {"_count": 1}, "Lupin": {"_count": 1}, "trying": {"_count": 1}, "but": {"_count": 1}, "gleaming": {"_count": 1}, "following": {"_count": 1}, "holding": {"_count": 1}, "faces": {"_count": 1}, "through": {"_count": 1}}, "caught": {"_count": 29, "a": {"_count": 4}, "it": {"_count": 3}, "sight": {"_count": 8}, "his": {"_count": 1}, "over": {"_count": 1}, "every": {"_count": 1}, "mainly": {"_count": 1}, "Colin": {"_count": 1}, "Harrys": {"_count": 1}, "only": {"_count": 1}, "the": {"_count": 1}, "blurred": {"_count": 1}, "up": {"_count": 2}, "Ginnys": {"_count": 1}, "in": {"_count": 1}, "one": {"_count": 1}}, "wanted": {"_count": 118, "to": {"_count": 72}, "not": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 7}, "before": {"_count": 1}, "at": {"_count": 2}, "the": {"_count": 1}, "or": {"_count": 1}, "his": {"_count": 1}, "when": {"_count": 1}, "it": {"_count": 2}, "above": {"_count": 1}, "nothing": {"_count": 1}, "alerted": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "very": {"_count": 1}, "now": {"_count": 1}, "me": {"_count": 4}, "company": {"_count": 1}, "Borgin": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 3}, "was": {"_count": 1}, "my": {"_count": 1}, "regular": {"_count": 1}, "done": {"_count": 1}, "Harry": {"_count": 1}, "no": {"_count": 1}, "Ron": {"_count": 1}, "us": {"_count": 1}, "Ginny": {"_count": 1}, "her": {"_count": 1}, "time": {"_count": 1}}, "changed": {"_count": 8, "his": {"_count": 4}, "the": {"_count": 1}, "at": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "wasnt": {"_count": 72, "even": {"_count": 2}, "there": {"_count": 5}, "really": {"_count": 3}, "sure": {"_count": 4}, "anywhere": {"_count": 1}, "chosen": {"_count": 1}, "miles": {"_count": 1}, "going": {"_count": 9}, "very": {"_count": 1}, "alone": {"_count": 1}, "intending": {"_count": 1}, "talking": {"_count": 1}, "a": {"_count": 1}, "much": {"_count": 1}, "about": {"_count": 1}, "expelled": {"_count": 1}, "completely": {"_count": 1}, "fool": {"_count": 1}, "the": {"_count": 4}, "listening": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 3}, "apprehensive": {"_count": 1}, "showing": {"_count": 1}, "doing": {"_count": 1}, "flying": {"_count": 1}, "on": {"_count": 1}, "riveted": {"_count": 1}, "hungry": {"_count": 1}, "at": {"_count": 1}, "sticking": {"_count": 1}, "speaking": {"_count": 1}, "entirely": {"_count": 1}, "supposed": {"_count": 1}, "being": {"_count": 1}, "making": {"_count": 1}, "invisible": {"_count": 1}, "giving": {"_count": 1}, "trying": {"_count": 2}, "prosecuted": {"_count": 1}, "pleased": {"_count": 1}, "bitten": {"_count": 1}, "I": {"_count": 1}, "exactly": {"_count": 1}, "terribly": {"_count": 1}, "wearing": {"_count": 1}, "impressed": {"_count": 1}, "concentrating": {"_count": 1}}, "walked": {"_count": 50, "straight": {"_count": 2}, "": {"_count": 2}, "past": {"_count": 5}, "into": {"_count": 1}, "away": {"_count": 5}, "headlong": {"_count": 1}, "up": {"_count": 4}, "through": {"_count": 4}, "in": {"_count": 4}, "slowly": {"_count": 3}, "back": {"_count": 2}, "toward": {"_count": 2}, "and": {"_count": 2}, "across": {"_count": 3}, "from": {"_count": 1}, "down": {"_count": 1}, "by": {"_count": 1}, "without": {"_count": 1}, "with": {"_count": 1}, "his": {"_count": 1}, "right": {"_count": 1}, "blindly": {"_count": 1}, "alone": {"_count": 1}, "on": {"_count": 1}}, "grunted": {"_count": 6, "as": {"_count": 2}, "": {"_count": 3}, "I": {"_count": 1}}, "said": {"_count": 1186, "in": {"_count": 46}, "as": {"_count": 19}, "heavily": {"_count": 3}, "looking": {"_count": 18}, "slowly": {"_count": 24}, "punching": {"_count": 2}, "I": {"_count": 7}, "loudly": {"_count": 10}, "finally": {"_count": 12}, "": {"_count": 283}, "cheerfully": {"_count": 2}, "stupidly": {"_count": 1}, "instead": {"_count": 1}, "rubbing": {"_count": 2}, "Im": {"_count": 3}, "everyone": {"_count": 1}, "Blown": {"_count": 1}, "quietly": {"_count": 42}, "ruefully": {"_count": 1}, "handing": {"_count": 2}, "Hagrid": {"_count": 1}, "people": {"_count": 1}, "softly": {"_count": 18}, "Every": {"_count": 1}, "and": {"_count": 40}, "at": {"_count": 1}, "but": {"_count": 5}, "coolly": {"_count": 4}, "irritably": {"_count": 3}, "wiping": {"_count": 1}, "with": {"_count": 11}, "that": {"_count": 2}, "to": {"_count": 34}, "throwing": {"_count": 2}, "its": {"_count": 1}, "What": {"_count": 1}, "He": {"_count": 1}, "dashing": {"_count": 1}, "something": {"_count": 1}, "showing": {"_count": 1}, "you": {"_count": 4}, "leering": {"_count": 3}, "The": {"_count": 2}, "simply": {"_count": 3}, "smiling": {"_count": 6}, "he": {"_count": 5}, "smoothly": {"_count": 1}, "hurrying": {"_count": 1}, "desperately": {"_count": 3}, "suddenly": {"_count": 7}, "greasily": {"_count": 1}, "Now": {"_count": 2}, "calmly": {"_count": 4}, "Sir": {"_count": 1}, "suspiciously": {"_count": 1}, "hell": {"_count": 1}, "Who": {"_count": 2}, "hoarsely": {"_count": 10}, "grimly": {"_count": 4}, "tensely": {"_count": 1}, "opening": {"_count": 2}, "grabbing": {"_count": 1}, "taking": {"_count": 2}, "brightly": {"_count": 2}, "breathlessly": {"_count": 3}, "raising": {"_count": 3}, "pointing": {"_count": 5}, "dramatically": {"_count": 1}, "it": {"_count": 18}, "glowering": {"_count": 2}, "hotly": {"_count": 1}, "patting": {"_count": 2}, "mournfully": {"_count": 1}, "sweetly": {"_count": 1}, "a": {"_count": 7}, "firmly": {"_count": 8}, "sharply": {"_count": 6}, "misreading": {"_count": 1}, "vaguely": {"_count": 1}, "fiercely": {"_count": 5}, "closing": {"_count": 1}, "tottering": {"_count": 1}, "Enough": {"_count": 1}, "pulling": {"_count": 5}, "aloud": {"_count": 1}, "gently": {"_count": 2}, "coldly": {"_count": 3}, "stiffly": {"_count": 2}, "tapping": {"_count": 1}, "twanging": {"_count": 1}, "sitting": {"_count": 6}, "shooing": {"_count": 1}, "shakily": {"_count": 2}, "lowering": {"_count": 3}, "approvingly": {"_count": 1}, "not": {"_count": 1}, "clicking": {"_count": 1}, "coughing": {"_count": 1}, "ushering": {"_count": 1}, "his": {"_count": 15}, "Youve": {"_count": 2}, "hurriedly": {"_count": 1}, "gloomily": {"_count": 2}, "nodding": {"_count": 2}, "excitedly": {"_count": 3}, "Ive": {"_count": 2}, "abruptly": {"_count": 3}, "glancing": {"_count": 1}, "angrily": {"_count": 5}, "\u2018None": {"_count": 1}, "Oh": {"_count": 2}, "eagerly": {"_count": 2}, "leaning": {"_count": 1}, "pointedly": {"_count": 1}, "thickly": {"_count": 2}, "shaking": {"_count": 3}, "pleasantly": {"_count": 2}, "furiously": {"_count": 4}, "seriously": {"_count": 2}, "sounding": {"_count": 3}, "again": {"_count": 7}, "happily": {"_count": 6}, "dreading": {"_count": 1}, "we": {"_count": 1}, "straightening": {"_count": 2}, "squeakily": {"_count": 1}, "hastily": {"_count": 7}, "trying": {"_count": 5}, "shortly": {"_count": 6}, "laying": {"_count": 1}, "touching": {"_count": 1}, "very": {"_count": 10}, "evenly": {"_count": 1}, "weakly": {"_count": 3}, "casually": {"_count": 1}, "accidentally": {"_count": 1}, "youd": {"_count": 2}, "thoughtfully": {"_count": 2}, "uncertainly": {"_count": 3}, "grumpily": {"_count": 2}, "marching": {"_count": 1}, "through": {"_count": 3}, "staring": {"_count": 6}, "picking": {"_count": 1}, "knowledgeably": {"_count": 1}, "kindly": {"_count": 3}, "the": {"_count": 5}, "heatedly": {"_count": 2}, "twiddling": {"_count": 1}, "once": {"_count": 2}, "lazily": {"_count": 1}, "blinking": {"_count": 1}, "jerkily": {"_count": 1}, "All": {"_count": 1}, "miserably": {"_count": 1}, "delightedly": {"_count": 1}, "beaming": {"_count": 3}, "shrilly": {"_count": 1}, "pushing": {"_count": 2}, "though": {"_count": 1}, "roughly": {"_count": 1}, "when": {"_count": 5}, "stroking": {"_count": 1}, "grinning": {"_count": 3}, "was": {"_count": 1}, "gravely": {"_count": 1}, "gruffly": {"_count": 9}, "instructions": {"_count": 1}, "over": {"_count": 3}, "nervously": {"_count": 1}, "Hows": {"_count": 1}, "Dragons": {"_count": 1}, "dully": {"_count": 2}, "offering": {"_count": 1}, "before": {"_count": 1}, "talking": {"_count": 1}, "doubtfully": {"_count": 1}, "quickly": {"_count": 4}, "no": {"_count": 3}, "wildly": {"_count": 1}, "impatiently": {"_count": 3}, "Come": {"_count": 1}, "ripping": {"_count": 1}, "awkwardly": {"_count": 2}, "hed": {"_count": 7}, "still": {"_count": 1}, "careful": {"_count": 1}, "if": {"_count": 1}, "after": {"_count": 4}, "Harry": {"_count": 2}, "reading": {"_count": 3}, "promptly": {"_count": 1}, "about": {"_count": 3}, "easily": {"_count": 1}, "amazed": {"_count": 1}, "clearly": {"_count": 1}, "Wormtail": {"_count": 1}, "were": {"_count": 1}, "Mr": {"_count": 1}, "turning": {"_count": 4}, "helping": {"_count": 1}, "holding": {"_count": 2}, "waving": {"_count": 1}, "evasively": {"_count": 2}, "flatly": {"_count": 2}, "scathingly": {"_count": 1}, "forcing": {"_count": 1}, "disbelievingly": {"_count": 1}, "loads": {"_count": 1}, "bracingly": {"_count": 2}, "ignoring": {"_count": 1}, "thinking": {"_count": 1}, "examining": {"_count": 1}, "Ah": {"_count": 1}, "other": {"_count": 1}, "beckoning": {"_count": 1}, "soothingly": {"_count": 1}, "proudly": {"_count": 2}, "aggressively": {"_count": 2}, "out": {"_count": 1}, "nothing": {"_count": 2}, "bowing": {"_count": 1}, "glumly": {"_count": 3}, "moving": {"_count": 2}, "grudgingly": {"_count": 1}, "slamming": {"_count": 1}, "spotting": {"_count": 1}, "gesturing": {"_count": 1}, "Listen": {"_count": 1}, "flattening": {"_count": 1}, "accelerating": {"_count": 1}, "briskly": {"_count": 1}, "gratefully": {"_count": 1}, "Thats": {"_count": 1}, "Yeah": {"_count": 1}, "yes": {"_count": 1}, "snarled": {"_count": 1}, "outraged": {"_count": 1}, "sadly": {"_count": 1}, "Well": {"_count": 2}, "lamely": {"_count": 1}, "bitterly": {"_count": 1}, "calling": {"_count": 1}, "feebly": {"_count": 3}, "truthfully": {"_count": 1}, "stretching": {"_count": 1}, "dropping": {"_count": 1}, "Havent": {"_count": 1}, "anything": {"_count": 1}, "Good": {"_count": 1}, "this": {"_count": 2}, "Malfoys": {"_count": 2}, "taken": {"_count": 1}, "urgently": {"_count": 1}, "Things": {"_count": 1}, "anxiously": {"_count": 2}, "stuffing": {"_count": 1}, "fairly": {"_count": 1}, "your": {"_count": 1}, "jerking": {"_count": 2}, "breathing": {"_count": 1}, "Would": {"_count": 1}, "faintly": {"_count": 1}, "gleefully": {"_count": 1}, "observing": {"_count": 1}, "curtly": {"_count": 2}, "struggling": {"_count": 1}, "playing": {"_count": 1}, "right": {"_count": 1}, "Finite": {"_count": 1}, "Very": {"_count": 2}, "comfortably": {"_count": 1}, "Sirius": {"_count": 1}, "for": {"_count": 2}, "mechanically": {"_count": 1}, "withdrawing": {"_count": 1}, "prodding": {"_count": 1}, "so": {"_count": 1}, "cautiously": {"_count": 1}, "Professor": {"_count": 2}, "ungraciously": {"_count": 1}, "because": {"_count": 2}, "Whats": {"_count": 1}, "\u2018that": {"_count": 1}, "\u2018Dont": {"_count": 1}, "jubilantly": {"_count": 1}, "confidently": {"_count": 2}, "airily": {"_count": 1}, "savagely": {"_count": 1}, "darkly": {"_count": 2}, "reassuringly": {"_count": 1}, "robustly": {"_count": 1}, "You": {"_count": 2}, "confusedly": {"_count": 1}, "drawing": {"_count": 1}, "keeping": {"_count": 1}, "summat": {"_count": 1}, "putting": {"_count": 1}, "earnestly": {"_count": 1}, "Enter": {"_count": 1}, "Greatness": {"_count": 1}, "swinging": {"_count": 1}, "scrambling": {"_count": 1}, "wisely": {"_count": 1}, "Dumbledore": {"_count": 1}, "running": {"_count": 1}, "tentatively": {"_count": 1}, "stopping": {"_count": 1}, "But": {"_count": 1}, "remembering": {"_count": 1}, "giving": {"_count": 1}, "MadEyes": {"_count": 1}, "shrugging": {"_count": 1}, "Here": {"_count": 1}, "extending": {"_count": 1}, "much": {"_count": 1}, "Grindelvald": {"_count": 1}, "draining": {"_count": 1}, "fighting": {"_count": 1}, "Yes": {"_count": 1}, "relentlessly": {"_count": 1}, "pressing": {"_count": 1}, "stupid": {"_count": 1}, "defensively": {"_count": 1}, "half": {"_count": 1}, "rather": {"_count": 1}, "apprehensively": {"_count": 1}, "Hermione": {"_count": 1}, "leading": {"_count": 1}, "shoving": {"_count": 1}, "without": {"_count": 1}, "settling": {"_count": 1}, "Weve": {"_count": 1}, "How": {"_count": 1}, "them": {"_count": 1}, "carefully": {"_count": 1}, "aghast": {"_count": 1}, "unable": {"_count": 1}, "Anything": {"_count": 1}, "Grindelwald": {"_count": 1}}, "didnt": {"_count": 155, "approve": {"_count": 1}, "dare": {"_count": 5}, "think": {"_count": 12}, "so": {"_count": 1}, "make": {"_count": 1}, "belong": {"_count": 2}, "even": {"_count": 5}, "want": {"_count": 28}, "know": {"_count": 9}, "like": {"_count": 3}, "remember": {"_count": 1}, "seem": {"_count": 6}, "recognize": {"_count": 1}, "meet": {"_count": 2}, "sound": {"_count": 2}, "keep": {"_count": 1}, "feel": {"_count": 5}, "have": {"_count": 13}, "turn": {"_count": 4}, "just": {"_count": 1}, "get": {"_count": 4}, "leave": {"_count": 1}, "realize": {"_count": 1}, "shut": {"_count": 1}, "blame": {"_count": 1}, "manage": {"_count": 1}, "mind": {"_count": 2}, "care": {"_count": 3}, "move": {"_count": 1}, "": {"_count": 4}, "do": {"_count": 5}, "pay": {"_count": 1}, "see": {"_count": 2}, "shout": {"_count": 1}, "need": {"_count": 3}, "import": {"_count": 1}, "stay": {"_count": 1}, "look": {"_count": 4}, "notice": {"_count": 1}, "put": {"_count": 1}, "open": {"_count": 1}, "and": {"_count": 1}, "tell": {"_count": 2}, "say": {"_count": 1}, "hesitate": {"_count": 1}, "die": {"_count": 2}, "destroy": {"_count": 1}, "give": {"_count": 2}, "go": {"_count": 1}, "wear": {"_count": 1}}, "pulled": {"_count": 64, "into": {"_count": 1}, "a": {"_count": 5}, "an": {"_count": 1}, "the": {"_count": 7}, "it": {"_count": 5}, "on": {"_count": 6}, "off": {"_count": 8}, "out": {"_count": 10}, "Harrys": {"_count": 1}, "with": {"_count": 1}, "two": {"_count": 1}, "himself": {"_count": 4}, "his": {"_count": 7}, "them": {"_count": 1}, "up": {"_count": 2}, "open": {"_count": 2}, "Hermione": {"_count": 1}, "her": {"_count": 1}}, "saw": {"_count": 243, "and": {"_count": 1}, "again": {"_count": 3}, "a": {"_count": 21}, "looked": {"_count": 1}, "that": {"_count": 32}, "the": {"_count": 27}, "was": {"_count": 3}, "only": {"_count": 1}, "Snape": {"_count": 3}, "Harry": {"_count": 4}, "Gilderoy": {"_count": 1}, "Ron": {"_count": 7}, "who": {"_count": 1}, "Mrs": {"_count": 2}, "it": {"_count": 13}, "nearly": {"_count": 1}, "Hermione": {"_count": 2}, "them": {"_count": 8}, "fresh": {"_count": 1}, "one": {"_count": 1}, "what": {"_count": 4}, "all": {"_count": 2}, "made": {"_count": 2}, "an": {"_count": 2}, "another": {"_count": 1}, "Hagrid": {"_count": 3}, "Professor": {"_count": 2}, "Cho": {"_count": 2}, "Glaring": {"_count": 1}, "something": {"_count": 5}, "Buckbeak": {"_count": 1}, "two": {"_count": 2}, "representatives": {"_count": 1}, "jets": {"_count": 1}, "Fred": {"_count": 2}, "Cedric": {"_count": 2}, "him": {"_count": 2}, "her": {"_count": 4}, "Dumbledore": {"_count": 3}, "Krum": {"_count": 1}, "": {"_count": 3}, "movement": {"_count": 2}, "himself": {"_count": 2}, "with": {"_count": 3}, "Cedrics": {"_count": 1}, "Sirius": {"_count": 2}, "Mr": {"_count": 1}, "youd": {"_count": 1}, "Neville": {"_count": 1}, "there": {"_count": 1}, "many": {"_count": 2}, "to": {"_count": 2}, "nothing": {"_count": 1}, "five": {"_count": 1}, "as": {"_count": 1}, "clocks": {"_count": 1}, "somebody": {"_count": 1}, "out": {"_count": 1}, "you": {"_count": 1}, "Malfoys": {"_count": 2}, "Malfoy": {"_count": 2}, "Harrys": {"_count": 1}, "Dean": {"_count": 1}, "Lupins": {"_count": 1}, "dimly": {"_count": 1}, "Voldemorts": {"_count": 2}, "Ginny": {"_count": 2}, "his": {"_count": 3}, "Madam": {"_count": 1}, "Nevilles": {"_count": 1}, "people": {"_count": 1}, "us": {"_count": 2}, "stretching": {"_count": 1}, "Dumbledores": {"_count": 1}, "Lupin": {"_count": 1}, "these": {"_count": 1}, "terrible": {"_count": 1}, "at": {"_count": 1}, "Voldemort": {"_count": 1}, "resentment": {"_count": 1}, "for": {"_count": 1}, "Bills": {"_count": 1}, "Tom": {"_count": 1}, "by": {"_count": 1}, "instead": {"_count": 1}, "Draco": {"_count": 1}, "Hermiones": {"_count": 1}, "Snapes": {"_count": 1}, "McGonagall": {"_count": 1}, "shock": {"_count": 1}, "families": {"_count": 1}}, "let": {"_count": 19, "himself": {"_count": 2}, "that": {"_count": 2}, "them": {"_count": 1}, "me": {"_count": 1}, "out": {"_count": 4}, "Harry": {"_count": 1}, "his": {"_count": 2}, "slip": {"_count": 2}, "go": {"_count": 3}, "in": {"_count": 1}}, "went": {"_count": 89, "into": {"_count": 5}, "down": {"_count": 2}, "to": {"_count": 10}, "": {"_count": 17}, "back": {"_count": 6}, "bright": {"_count": 1}, "upstairs": {"_count": 1}, "on": {"_count": 14}, "for": {"_count": 3}, "up": {"_count": 3}, "helped": {"_count": 1}, "downstairs": {"_count": 1}, "after": {"_count": 1}, "and": {"_count": 6}, "in": {"_count": 2}, "out": {"_count": 1}, "as": {"_count": 1}, "near": {"_count": 1}, "off": {"_count": 2}, "next": {"_count": 1}, "Snape": {"_count": 1}, "through": {"_count": 1}, "by": {"_count": 3}, "ahead": {"_count": 1}, "a": {"_count": 1}, "loopy": {"_count": 1}, "Harry": {"_count": 1}, "looking": {"_count": 1}}, "dared": {"_count": 6, "tell": {"_count": 1}, "to": {"_count": 2}, "ask": {"_count": 1}, "over": {"_count": 1}, "not": {"_count": 1}}, "could": {"_count": 714, "Their": {"_count": 1}, "bear": {"_count": 1}, "make": {"_count": 14}, "remember": {"_count": 9}, "ever": {"_count": 3}, "": {"_count": 16}, "hardly": {"_count": 13}, "see": {"_count": 59}, "and": {"_count": 8}, "persuade": {"_count": 1}, "tell": {"_count": 10}, "stop": {"_count": 16}, "buy": {"_count": 1}, "mention": {"_count": 1}, "say": {"_count": 7}, "explain": {"_count": 2}, "watch": {"_count": 2}, "carry": {"_count": 2}, "fly": {"_count": 1}, "do": {"_count": 25}, "be": {"_count": 16}, "toward": {"_count": 3}, "in": {"_count": 3}, "have": {"_count": 34}, "against": {"_count": 2}, "forget": {"_count": 1}, "yet": {"_count": 1}, "come": {"_count": 2}, "they": {"_count": 1}, "trying": {"_count": 1}, "when": {"_count": 2}, "only": {"_count": 13}, "go": {"_count": 6}, "said": {"_count": 2}, "just": {"_count": 14}, "bombard": {"_count": 1}, "play": {"_count": 2}, "slipped": {"_count": 1}, "expect": {"_count": 1}, "show": {"_count": 1}, "avoid": {"_count": 3}, "think": {"_count": 9}, "hear": {"_count": 26}, "crawl": {"_count": 1}, "look": {"_count": 3}, "barely": {"_count": 6}, "catch": {"_count": 2}, "speak": {"_count": 3}, "stand": {"_count": 10}, "return": {"_count": 2}, "sense": {"_count": 2}, "unwrap": {"_count": 1}, "get": {"_count": 7}, "sit": {"_count": 2}, "he": {"_count": 7}, "reach": {"_count": 5}, "definitely": {"_count": 2}, "turn": {"_count": 1}, "still": {"_count": 7}, "climb": {"_count": 1}, "his": {"_count": 1}, "willing": {"_count": 1}, "muster": {"_count": 4}, "ask": {"_count": 3}, "help": {"_count": 6}, "into": {"_count": 3}, "hold": {"_count": 1}, "feel": {"_count": 23}, "not": {"_count": 129}, "never": {"_count": 3}, "find": {"_count": 6}, "escape": {"_count": 1}, "kill": {"_count": 1}, "keep": {"_count": 4}, "read": {"_count": 1}, "without": {"_count": 2}, "across": {"_count": 1}, "try": {"_count": 3}, "rely": {"_count": 1}, "suddenly": {"_count": 1}, "manage": {"_count": 3}, "it": {"_count": 1}, "no": {"_count": 6}, "occasionally": {"_count": 2}, "tightly": {"_count": 1}, "concentrated": {"_count": 1}, "away": {"_count": 1}, "but": {"_count": 2}, "even": {"_count": 2}, "now": {"_count": 2}, "continue": {"_count": 1}, "touch": {"_count": 2}, "finish": {"_count": 4}, "draw": {"_count": 3}, "pay": {"_count": 1}, "then": {"_count": 1}, "lie": {"_count": 2}, "end": {"_count": 1}, "from": {"_count": 1}, "follow": {"_count": 1}, "to": {"_count": 5}, "while": {"_count": 1}, "devote": {"_count": 1}, "bolt": {"_count": 1}, "risk": {"_count": 1}, "remove": {"_count": 1}, "through": {"_count": 2}, "possibly": {"_count": 2}, "walk": {"_count": 1}, "fight": {"_count": 1}, "know": {"_count": 1}, "date": {"_count": 1}, "spend": {"_count": 1}, "also": {"_count": 1}, "pretend": {"_count": 1}, "peer": {"_count": 1}, "leave": {"_count": 1}, "sell": {"_count": 1}, "utter": {"_count": 1}, "pull": {"_count": 1}, "block": {"_count": 1}, "use": {"_count": 1}, "open": {"_count": 1}, "trust": {"_count": 1}, "respond": {"_count": 2}, "expound": {"_count": 1}, "needle": {"_count": 1}, "slip": {"_count": 1}, "take": {"_count": 3}, "detect": {"_count": 1}, "understand": {"_count": 1}, "trick": {"_count": 2}, "sometimes": {"_count": 1}, "remain": {"_count": 2}, "otherwise": {"_count": 1}, "easily": {"_count": 1}, "regain": {"_count": 1}, "put": {"_count": 1}, "passing": {"_count": 1}, "forcefeed": {"_count": 1}, "aim": {"_count": 1}, "move": {"_count": 3}, "complete": {"_count": 1}, "the": {"_count": 1}, "somehow": {"_count": 1}, "bring": {"_count": 1}, "before": {"_count": 1}, "really": {"_count": 1}, "act": {"_count": 1}, "appear": {"_count": 1}, "practically": {"_count": 1}, "demand": {"_count": 1}, "hope": {"_count": 1}, "check": {"_count": 1}, "count": {"_count": 1}, "separate": {"_count": 1}, "with": {"_count": 2}, "given": {"_count": 1}, "perform": {"_count": 1}, "conceal": {"_count": 1}, "question": {"_count": 1}, "wash": {"_count": 1}, "formulate": {"_count": 1}, "search": {"_count": 1}, "over": {"_count": 1}, "outdistance": {"_count": 1}, "rip": {"_count": 1}, "live": {"_count": 1}}, "": {"_count": 206, "?": {"_count": 201}, ".": {"_count": 5}}, "imagining": {"_count": 3, "things": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "fell": {"_count": 42, "asleep": {"_count": 6}, "over": {"_count": 3}, "": {"_count": 1}, "to": {"_count": 7}, "down": {"_count": 1}, "silent": {"_count": 6}, "back": {"_count": 3}, "forward": {"_count": 4}, "stretching": {"_count": 1}, "fully": {"_count": 1}, "against": {"_count": 1}, "spectacularly": {"_count": 1}, "backward": {"_count": 2}, "through": {"_count": 2}, "slowly": {"_count": 1}, "onto": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 138, "Petunia": {"_count": 2}, "Hagrid": {"_count": 4}, "Harry": {"_count": 23}, "his": {"_count": 7}, "Ron": {"_count": 28}, "Hermione": {"_count": 17}, "Professor": {"_count": 1}, "Riddle": {"_count": 1}, "Neville": {"_count": 1}, "Uncle": {"_count": 1}, "Hedwig": {"_count": 1}, "I": {"_count": 3}, "the": {"_count": 3}, "Sirius": {"_count": 3}, "Fudge": {"_count": 2}, "Dumbledore": {"_count": 11}, "George": {"_count": 5}, "Moodys": {"_count": 1}, "Mr": {"_count": 1}, "Fred": {"_count": 1}, "Snape": {"_count": 2}, "Lupin": {"_count": 2}, "Dudley": {"_count": 1}, "Luna": {"_count": 2}, "Malfoy": {"_count": 2}, "Cho": {"_count": 1}, "Trelawney": {"_count": 1}, "my": {"_count": 1}, "Billy": {"_count": 1}, "Ginny": {"_count": 2}, "Fleur": {"_count": 1}, "Voldemort": {"_count": 3}, "Griphook": {"_count": 1}, "only": {"_count": 1}, "Rose": {"_count": 1}}, "yawned": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "looked": {"_count": 191, "up": {"_count": 20}, "quickly": {"_count": 3}, "at": {"_count": 13}, "so": {"_count": 3}, "": {"_count": 1}, "a": {"_count": 2}, "along": {"_count": 1}, "and": {"_count": 1}, "around": {"_count": 22}, "like": {"_count": 3}, "in": {"_count": 3}, "imploringly": {"_count": 1}, "down": {"_count": 12}, "ready": {"_count": 1}, "pale": {"_count": 2}, "back": {"_count": 9}, "weakchinned": {"_count": 1}, "resentful": {"_count": 1}, "for": {"_count": 2}, "forward": {"_count": 1}, "the": {"_count": 3}, "especially": {"_count": 1}, "very": {"_count": 1}, "over": {"_count": 4}, "ahead": {"_count": 1}, "all": {"_count": 1}, "solid": {"_count": 1}, "as": {"_count": 6}, "across": {"_count": 1}, "almost": {"_count": 1}, "unsupported": {"_count": 1}, "exceptionally": {"_count": 1}, "slightly": {"_count": 2}, "out": {"_count": 4}, "strange": {"_count": 1}, "ill": {"_count": 1}, "half": {"_count": 1}, "younger": {"_count": 1}, "rather": {"_count": 4}, "away": {"_count": 2}, "because": {"_count": 1}, "hardly": {"_count": 1}, "livid": {"_count": 1}, "quite": {"_count": 4}, "fit": {"_count": 1}, "gaunter": {"_count": 1}, "on": {"_count": 1}, "older": {"_count": 1}, "completely": {"_count": 1}, "no": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}, "disgusted": {"_count": 1}, "neither": {"_count": 1}, "into": {"_count": 1}, "Malfoy": {"_count": 1}, "eagerly": {"_count": 1}, "Dumbledore": {"_count": 1}, "angry": {"_count": 1}, "utterly": {"_count": 1}, "nervous": {"_count": 1}, "ghostly": {"_count": 1}, "again": {"_count": 1}, "worried": {"_count": 1}, "if": {"_count": 1}, "fevered": {"_count": 1}, "both": {"_count": 1}, "Lupin": {"_count": 1}, "tough": {"_count": 1}, "furious": {"_count": 1}, "more": {"_count": 1}, "paler": {"_count": 1}, "terrified": {"_count": 1}, "grotesque": {"_count": 1}, "left": {"_count": 1}, "confused": {"_count": 1}, "goodnatured": {"_count": 1}, "much": {"_count": 1}, "concerned": {"_count": 1}, "now": {"_count": 1}, "exhausted": {"_count": 1}, "stricken": {"_count": 1}, "apprehensive": {"_count": 1}, "appealingly": {"_count": 1}, "delighted": {"_count": 1}, "less": {"_count": 1}, "ancient": {"_count": 1}, "he": {"_count": 1}}, "clicked": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "it": {"_count": 1}}, "spoke": {"_count": 42, "to": {"_count": 2}, "": {"_count": 13}, "and": {"_count": 4}, "was": {"_count": 1}, "from": {"_count": 1}, "Riddles": {"_count": 1}, "into": {"_count": 1}, "it": {"_count": 3}, "however": {"_count": 1}, "seemed": {"_count": 1}, "again": {"_count": 4}, "in": {"_count": 1}, "visions": {"_count": 1}, "them": {"_count": 1}, "wearing": {"_count": 1}, "dat": {"_count": 1}, "unable": {"_count": 1}, "his": {"_count": 2}, "Seamuss": {"_count": 1}, "a": {"_count": 1}}, "really": {"_count": 31, "has": {"_count": 1}, "was": {"_count": 3}, "Fred": {"_count": 1}, "wanted": {"_count": 7}, "needed": {"_count": 2}, "is": {"_count": 2}, "didnt": {"_count": 2}, "hoped": {"_count": 1}, "ill": {"_count": 2}, "belonged": {"_count": 1}, "believe": {"_count": 1}, "looked": {"_count": 1}, "swapped": {"_count": 1}, "doesnt": {"_count": 1}, "had": {"_count": 1}, "thought": {"_count": 1}, "worried": {"_count": 1}, "registered": {"_count": 1}, "": {"_count": 1}}, "tried": {"_count": 60, "to": {"_count": 52}, "ter": {"_count": 1}, "desperately": {"_count": 1}, "tentatively": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 1}, "again": {"_count": 2}}, "took": {"_count": 59, "a": {"_count": 18}, "both": {"_count": 1}, "the": {"_count": 13}, "it": {"_count": 3}, "them": {"_count": 2}, "flight": {"_count": 1}, "off": {"_count": 2}, "another": {"_count": 2}, "aim": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 3}, "Siriuss": {"_count": 1}, "you": {"_count": 1}, "out": {"_count": 2}, "that": {"_count": 1}, "several": {"_count": 3}, "in": {"_count": 2}, "his": {"_count": 1}, "numbness": {"_count": 1}}, "put": {"_count": 25, "it": {"_count": 4}, "on": {"_count": 2}, "up": {"_count": 2}, "Hermione": {"_count": 1}, "Hagrids": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "one": {"_count": 1}, "his": {"_count": 4}, "down": {"_count": 3}, "weight": {"_count": 1}, "out": {"_count": 2}, "the": {"_count": 1}, "off": {"_count": 1}}, "who": {"_count": 9, "told": {"_count": 1}, "had": {"_count": 4}, "deduced": {"_count": 1}, "says": {"_count": 1}, "stood": {"_count": 1}, "saw": {"_count": 1}}, "has": {"_count": 74, "left": {"_count": 1}, "said": {"_count": 6}, "many": {"_count": 1}, "not": {"_count": 3}, "been": {"_count": 13}, "to": {"_count": 3}, "managed": {"_count": 1}, "done": {"_count": 2}, "weapons": {"_count": 1}, "returned": {"_count": 1}, "dubbed": {"_count": 1}, "always": {"_count": 2}, "never": {"_count": 5}, "proved": {"_count": 1}, "suffered": {"_count": 1}, "more": {"_count": 1}, "ever": {"_count": 3}, "presented": {"_count": 1}, "Dumbledore": {"_count": 1}, "become": {"_count": 1}, "got": {"_count": 1}, "found": {"_count": 1}, "run": {"_count": 1}, "finished": {"_count": 1}, "realized": {"_count": 1}, "already": {"_count": 1}, "long": {"_count": 1}, "gone": {"_count": 1}, "": {"_count": 1}, "attempted": {"_count": 1}, "for": {"_count": 1}, "forbidden": {"_count": 1}, "chosen": {"_count": 1}, "lived": {"_count": 1}, "passed": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 2}, "qualities": {"_count": 1}, "his": {"_count": 1}, "undergone": {"_count": 1}, "no": {"_count": 1}, "just": {"_count": 1}, "converted": {"_count": 1}, "decided": {"_count": 1}}, "can": {"_count": 53, "walk": {"_count": 1}, "trust": {"_count": 1}, "help": {"_count": 1}, "hardly": {"_count": 1}, "break": {"_count": 1}, "be": {"_count": 7}, "": {"_count": 3}, "barely": {"_count": 1}, "fly": {"_count": 2}, "read": {"_count": 1}, "get": {"_count": 3}, "control": {"_count": 1}, "bring": {"_count": 1}, "turn": {"_count": 1}, "pay": {"_count": 1}, "put": {"_count": 2}, "only": {"_count": 3}, "ask": {"_count": 1}, "do": {"_count": 3}, "have": {"_count": 4}, "talk": {"_count": 1}, "return": {"_count": 1}, "come": {"_count": 1}, "stay": {"_count": 1}, "still": {"_count": 1}, "confide": {"_count": 1}, "tell": {"_count": 2}, "obey": {"_count": 1}, "Fly": {"_count": 1}, "beat": {"_count": 1}, "sneak": {"_count": 1}, "move": {"_count": 1}, "die": {"_count": 1}}, "wont": {"_count": 21, "even": {"_count": 2}, "know": {"_count": 1}, "pay": {"_count": 1}, "be": {"_count": 3}, "let": {"_count": 2}, "stay": {"_count": 1}, "answer": {"_count": 1}, "talk": {"_count": 1}, "thank": {"_count": 1}, "budge": {"_count": 1}, "succeed": {"_count": 1}, "write": {"_count": 1}, "do": {"_count": 1}, "or": {"_count": 1}, "tell": {"_count": 1}, "wont": {"_count": 1}, "care": {"_count": 1}}, "stopped": {"_count": 19, "and": {"_count": 2}, "": {"_count": 2}, "crying": {"_count": 1}, "quickly": {"_count": 1}, "again": {"_count": 3}, "abruptly": {"_count": 1}, "moving": {"_count": 1}, "worrying": {"_count": 1}, "swallowed": {"_count": 1}, "dead": {"_count": 2}, "himself": {"_count": 1}, "his": {"_count": 1}, "suggesting": {"_count": 1}, "outside": {"_count": 1}}, "murmured": {"_count": 8, "": {"_count": 4}, "holding": {"_count": 1}, "trying": {"_count": 1}, "taking": {"_count": 1}, "but": {"_count": 1}}, "slept": {"_count": 4, "on": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "as": {"_count": 1}}, "would": {"_count": 304, "be": {"_count": 54}, "spend": {"_count": 1}, "mutter": {"_count": 1}, "blink": {"_count": 1}, "meet": {"_count": 1}, "look": {"_count": 2}, "have": {"_count": 66}, "never": {"_count": 13}, "flay": {"_count": 1}, "say": {"_count": 2}, "shortly": {"_count": 3}, "said": {"_count": 3}, "at": {"_count": 1}, "take": {"_count": 2}, "ever": {"_count": 4}, "hear": {"_count": 2}, "rather": {"_count": 6}, "find": {"_count": 4}, "do": {"_count": 5}, "of": {"_count": 1}, "ask": {"_count": 1}, "certainly": {"_count": 1}, "": {"_count": 2}, "come": {"_count": 2}, "anyway": {"_count": 1}, "even": {"_count": 1}, "wait": {"_count": 1}, "without": {"_count": 1}, "need": {"_count": 3}, "spot": {"_count": 1}, "soon": {"_count": 3}, "simply": {"_count": 1}, "like": {"_count": 10}, "not": {"_count": 27}, "regard": {"_count": 1}, "fall": {"_count": 1}, "slide": {"_count": 1}, "pass": {"_count": 1}, "finish": {"_count": 1}, "feel": {"_count": 5}, "adopt": {"_count": 1}, "start": {"_count": 2}, "seeing": {"_count": 1}, "see": {"_count": 2}, "want": {"_count": 1}, "get": {"_count": 2}, "regret": {"_count": 1}, "burst": {"_count": 1}, "surely": {"_count": 4}, "tell": {"_count": 3}, "give": {"_count": 2}, "vomit": {"_count": 1}, "force": {"_count": 1}, "try": {"_count": 2}, "quite": {"_count": 1}, "know": {"_count": 3}, "turn": {"_count": 1}, "become": {"_count": 2}, "answer": {"_count": 1}, "probably": {"_count": 2}, "reimburse": {"_count": 1}, "go": {"_count": 2}, "reappear": {"_count": 1}, "seize": {"_count": 1}, "put": {"_count": 1}, "greatly": {"_count": 1}, "reward": {"_count": 1}, "fail": {"_count": 1}, "make": {"_count": 2}, "hold": {"_count": 1}, "by": {"_count": 1}, "stay": {"_count": 1}, "worry": {"_count": 1}, "normally": {"_count": 1}, "just": {"_count": 1}, "let": {"_count": 1}, "deserve": {"_count": 1}, "die": {"_count": 1}, "undoubtedly": {"_count": 1}, "no": {"_count": 1}, "prefer": {"_count": 1}, "destroy": {"_count": 1}, "believe": {"_count": 1}, "usually": {"_count": 1}, "she": {"_count": 1}, "live": {"_count": 1}, "miss": {"_count": 2}, "return": {"_count": 1}, "keep": {"_count": 1}}, "barked": {"_count": 4, "by": {"_count": 1}, "at": {"_count": 2}, "and": {"_count": 1}}, "ought": {"_count": 23, "to": {"_count": 21}, "not": {"_count": 2}}, "reminded": {"_count": 4, "himself": {"_count": 3}, "them": {"_count": 1}}, "knew": {"_count": 215, "that": {"_count": 27}, "the": {"_count": 10}, "it": {"_count": 24}, "hed": {"_count": 2}, "but": {"_count": 3}, "he": {"_count": 16}, "someone": {"_count": 1}, "how": {"_count": 5}, "": {"_count": 7}, "a": {"_count": 3}, "what": {"_count": 27}, "was": {"_count": 14}, "at": {"_count": 3}, "Ron": {"_count": 2}, "Lupin": {"_count": 1}, "you": {"_count": 3}, "I": {"_count": 3}, "they": {"_count": 7}, "and": {"_count": 1}, "immediately": {"_count": 2}, "his": {"_count": 3}, "Voldemort": {"_count": 1}, "Hagrid": {"_count": 2}, "this": {"_count": 1}, "Bagman": {"_count": 1}, "made": {"_count": 1}, "light": {"_count": 1}, "where": {"_count": 2}, "one": {"_count": 1}, "as": {"_count": 1}, "perfectly": {"_count": 3}, "her": {"_count": 1}, "who": {"_count": 2}, "Lee": {"_count": 1}, "Avery": {"_count": 1}, "something": {"_count": 1}, "surely": {"_count": 1}, "from": {"_count": 2}, "everything": {"_count": 1}, "exactly": {"_count": 1}, "more": {"_count": 2}, "would": {"_count": 1}, "Seamus": {"_count": 1}, "Id": {"_count": 1}, "Lord": {"_count": 1}, "so": {"_count": 1}, "there": {"_count": 1}, "without": {"_count": 1}, "must": {"_count": 1}, "had": {"_count": 1}, "even": {"_count": 1}, "Dumbledore": {"_count": 1}, "Legilimency": {"_count": 1}, "all": {"_count": 1}, "improve": {"_count": 1}, "anything": {"_count": 1}, "were": {"_count": 1}, "by": {"_count": 1}, "instinctively": {"_count": 1}, "to": {"_count": 1}, "she": {"_count": 1}, "why": {"_count": 1}, "yet": {"_count": 1}, "extremely": {"_count": 1}, "him": {"_count": 1}}, "screwed": {"_count": 1, "up": {"_count": 1}}, "shouted": {"_count": 47, "at": {"_count": 8}, "": {"_count": 12}, "Theres": {"_count": 1}, "and": {"_count": 9}, "waving": {"_count": 2}, "his": {"_count": 2}, "Harrys": {"_count": 1}, "advancing": {"_count": 1}, "STUPEFY": {"_count": 1}, "Wingardium": {"_count": 1}, "desperately": {"_count": 1}, "it": {"_count": 1}, "one": {"_count": 1}, "jabbing": {"_count": 1}, "over": {"_count": 1}, "but": {"_count": 1}, "out": {"_count": 1}, "with": {"_count": 1}, "after": {"_count": 1}}, "wished": {"_count": 12, "he": {"_count": 6}, "at": {"_count": 1}, "it": {"_count": 1}, "me": {"_count": 1}, "to": {"_count": 1}, "they": {"_count": 2}}, "should": {"_count": 34, "have": {"_count": 13}, "get": {"_count": 1}, "probably": {"_count": 1}, "look": {"_count": 1}, "be": {"_count": 6}, "snap": {"_count": 1}, "not": {"_count": 5}, "ask": {"_count": 1}, "talk": {"_count": 1}, "feel": {"_count": 1}, "want": {"_count": 1}, "act": {"_count": 1}, "she": {"_count": 1}}, "whined": {"_count": 1, "at": {"_count": 1}}, "got": {"_count": 88, "to": {"_count": 9}, "back": {"_count": 7}, "out": {"_count": 5}, "his": {"_count": 1}, "quickly": {"_count": 3}, "some": {"_count": 1}, "it": {"_count": 3}, "close": {"_count": 1}, "lost": {"_count": 1}, "gingerly": {"_count": 2}, "up": {"_count": 7}, "detention": {"_count": 1}, "thirty": {"_count": 1}, "blasted": {"_count": 1}, "slowly": {"_count": 1}, "in": {"_count": 2}, "there": {"_count": 2}, "hurt": {"_count": 1}, "really": {"_count": 1}, "thoroughly": {"_count": 1}, "dressed": {"_count": 1}, "within": {"_count": 1}, "released": {"_count": 1}, "off": {"_count": 9}, "burned": {"_count": 1}, "home": {"_count": 1}, "quietly": {"_count": 1}, "nearer": {"_count": 1}, "near": {"_count": 2}, "into": {"_count": 2}, "": {"_count": 3}, "the": {"_count": 2}, "all": {"_count": 1}, "taken": {"_count": 1}, "caught": {"_count": 1}, "undressed": {"_count": 1}, "what": {"_count": 1}, "a": {"_count": 3}, "any": {"_count": 1}, "something": {"_count": 1}, "both": {"_count": 1}, "hit": {"_count": 1}}, "kept": {"_count": 44, "saying": {"_count": 3}, "his": {"_count": 6}, "pointing": {"_count": 2}, "them": {"_count": 2}, "on": {"_count": 1}, "buyin": {"_count": 1}, "making": {"_count": 1}, "absentmindedly": {"_count": 1}, "popping": {"_count": 1}, "close": {"_count": 1}, "bumping": {"_count": 1}, "it": {"_count": 1}, "watching": {"_count": 1}, "telling": {"_count": 1}, "this": {"_count": 1}, "missing": {"_count": 1}, "calling": {"_count": 1}, "whispering": {"_count": 1}, "accidentally": {"_count": 1}, "talking": {"_count": 1}, "running": {"_count": 1}, "trying": {"_count": 1}, "revisiting": {"_count": 1}, "open": {"_count": 1}, "laughing": {"_count": 1}, "looking": {"_count": 2}, "the": {"_count": 2}, "visiting": {"_count": 1}, "bringing": {"_count": 1}, "chucking": {"_count": 1}, "glancing": {"_count": 1}, "himself": {"_count": 1}, "him": {"_count": 1}}, "apologized": {"_count": 1, "over": {"_count": 1}}, "collapsed": {"_count": 7, "into": {"_count": 1}, "onto": {"_count": 3}, "at": {"_count": 1}, "someones": {"_count": 1}, "backward": {"_count": 1}}, "strained": {"_count": 3, "his": {"_count": 2}, "to": {"_count": 1}}, "came": {"_count": 49, "up": {"_count": 3}, "back": {"_count": 10}, "to": {"_count": 17}, "across": {"_count": 2}, "running": {"_count": 2}, "bustling": {"_count": 1}, "nearer": {"_count": 1}, "": {"_count": 4}, "home": {"_count": 1}, "wandering": {"_count": 1}, "stumping": {"_count": 1}, "along": {"_count": 1}, "upstairs": {"_count": 1}, "after": {"_count": 1}, "out": {"_count": 1}, "accidentally": {"_count": 1}, "into": {"_count": 1}}, "supposed": {"_count": 12, "was": {"_count": 1}, "to": {"_count": 5}, "they": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 2}, "that": {"_count": 1}, "had": {"_count": 1}}, "wouldnt": {"_count": 40, "be": {"_count": 3}, "stay": {"_count": 1}, "she": {"_count": 1}, "try": {"_count": 1}, "take": {"_count": 1}, "have": {"_count": 14}, "eat": {"_count": 1}, "even": {"_count": 1}, "go": {"_count": 1}, "use": {"_count": 1}, "let": {"_count": 1}, "listen": {"_count": 1}, "say": {"_count": 1}, "need": {"_count": 2}, "hurt": {"_count": 1}, "but": {"_count": 2}, "give": {"_count": 2}, "run": {"_count": 1}, "want": {"_count": 1}, "tell": {"_count": 1}, "do": {"_count": 1}, "care": {"_count": 1}}, "told": {"_count": 124, "Harry": {"_count": 14}, "his": {"_count": 3}, "himself": {"_count": 16}, "Ron": {"_count": 11}, "them": {"_count": 20}, "us": {"_count": 4}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 4}, "me": {"_count": 7}, "Madam": {"_count": 1}, "Fudge": {"_count": 1}, "the": {"_count": 10}, "em": {"_count": 1}, "Lupin": {"_count": 1}, "Mrs": {"_count": 1}, "her": {"_count": 11}, "how": {"_count": 1}, "Mr": {"_count": 2}, "Mundungus": {"_count": 1}, "evil": {"_count": 1}, "Sirius": {"_count": 1}, "Bellatrix": {"_count": 1}, "Borgin": {"_count": 1}, "him": {"_count": 1}, "George": {"_count": 1}, "my": {"_count": 1}, "Kreacher": {"_count": 2}, "Grindelwald": {"_count": 1}, "Fleur": {"_count": 2}, "you": {"_count": 1}, "Dumbledore": {"_count": 1}}, "ran": {"_count": 29, "before": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}, "up": {"_count": 1}, "down": {"_count": 1}, "away": {"_count": 3}, "clanking": {"_count": 1}, "into": {"_count": 2}, "no": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 2}, "and": {"_count": 1}, "off": {"_count": 2}, "past": {"_count": 2}, "near": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}, "faster": {"_count": 1}}, "asked": {"_count": 132, "Aunt": {"_count": 1}, "as": {"_count": 3}, "how": {"_count": 1}, "pointing": {"_count": 3}, "Ron": {"_count": 6}, "Percy": {"_count": 2}, "excitedly": {"_count": 2}, "Dumbledore": {"_count": 2}, "": {"_count": 29}, "what": {"_count": 1}, "you": {"_count": 4}, "curiously": {"_count": 1}, "me": {"_count": 1}, "Harry": {"_count": 5}, "slowly": {"_count": 2}, "Lupin": {"_count": 1}, "them": {"_count": 3}, "her": {"_count": 7}, "Madam": {"_count": 1}, "Hermione": {"_count": 4}, "anxiously": {"_count": 1}, "startled": {"_count": 1}, "calmly": {"_count": 1}, "tentatively": {"_count": 1}, "more": {"_count": 1}, "looking": {"_count": 2}, "Mrs": {"_count": 1}, "trying": {"_count": 3}, "in": {"_count": 1}, "himself": {"_count": 1}, "MadEye": {"_count": 1}, "angrily": {"_count": 1}, "abruptly": {"_count": 2}, "eyeing": {"_count": 1}, "it": {"_count": 1}, "striding": {"_count": 1}, "something": {"_count": 1}, "happily": {"_count": 1}, "once": {"_count": 1}, "suddenly": {"_count": 1}, "Was": {"_count": 1}, "Professor": {"_count": 1}, "awkwardly": {"_count": 1}, "How": {"_count": 1}, "Ginny": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 3}, "Uncle": {"_count": 1}, "Hedwig": {"_count": 1}, "Slughorn": {"_count": 1}, "Muriel": {"_count": 1}, "Bathilda": {"_count": 1}, "Kreacher": {"_count": 1}, "starting": {"_count": 1}, "turning": {"_count": 1}, "eventually": {"_count": 1}, "for": {"_count": 3}, "from": {"_count": 1}, "peering": {"_count": 1}, "softly": {"_count": 1}, "Dobby": {"_count": 1}, "whispered": {"_count": 1}, "quietly": {"_count": 1}, "staring": {"_count": 1}, "Are": {"_count": 1}}, "carried": {"_count": 10, "everywhere": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}, "her": {"_count": 2}, "Pigwidgeon": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "informed": {"_count": 4, "Aunt": {"_count": 1}, "them": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "gasped": {"_count": 14, "": {"_count": 8}, "dabbing": {"_count": 1}, "careening": {"_count": 1}, "skidding": {"_count": 1}, "at": {"_count": 2}, "pinned": {"_count": 1}}, "sleeps": {"_count": 3, "": {"_count": 1}, "under": {"_count": 1}, "in": {"_count": 1}}, "visited": {"_count": 4, "Harry": {"_count": 1}, "Madam": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "owned": {"_count": 10, "from": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "including": {"_count": 1}, "to": {"_count": 1}, "one": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "number": {"_count": 1}, "but": {"_count": 1}}, "still": {"_count": 37, "didnt": {"_count": 4}, "couldnt": {"_count": 1}, "had": {"_count": 11}, "frightens": {"_count": 1}, "looked": {"_count": 1}, "think": {"_count": 1}, "hadnt": {"_count": 1}, "thinks": {"_count": 1}, "trapped": {"_count": 1}, "worried": {"_count": 1}, "managed": {"_count": 1}, "clutched": {"_count": 1}, "rather": {"_count": 1}, "after": {"_count": 1}, "felt": {"_count": 3}, "did": {"_count": 1}, "wished": {"_count": 1}, "made": {"_count": 1}, "found": {"_count": 1}, "held": {"_count": 1}, "needed": {"_count": 1}, "avoided": {"_count": 1}}, "wheezed": {"_count": 4, "at": {"_count": 1}, "": {"_count": 3}}, "crept": {"_count": 7, "across": {"_count": 1}, "around": {"_count": 1}, "back": {"_count": 2}, "along": {"_count": 1}, "up": {"_count": 1}, "down": {"_count": 1}}, "began": {"_count": 26, "but": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 14}, "a": {"_count": 1}, "winding": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "scrabbling": {"_count": 1}, "groping": {"_count": 1}, "I": {"_count": 1}}, "explained": {"_count": 11, "to": {"_count": 2}, "": {"_count": 5}, "all": {"_count": 1}, "how": {"_count": 1}, "briefly": {"_count": 1}, "about": {"_count": 1}}, "worked": {"_count": 9, "and": {"_count": 1}, "so": {"_count": 2}, "for": {"_count": 1}, "his": {"_count": 1}, "tirelessly": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "well": {"_count": 1}}, "spread": {"_count": 2, "marmalade": {"_count": 1}, "manure": {"_count": 1}}, "reached": {"_count": 60, "over": {"_count": 1}, "Harrys": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 39}, "absently": {"_count": 1}, "for": {"_count": 2}, "it": {"_count": 3}, "a": {"_count": 2}, "again": {"_count": 1}, "into": {"_count": 2}, "Dumbledore": {"_count": 1}, "them": {"_count": 2}, "Umbridges": {"_count": 1}, "out": {"_count": 1}, "number": {"_count": 1}, "his": {"_count": 1}}, "snorted": {"_count": 1, "": {"_count": 1}}, "drew": {"_count": 12, "back": {"_count": 1}, "closer": {"_count": 1}, "level": {"_count": 3}, "nearer": {"_count": 1}, "his": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}, "slowly": {"_count": 1}, "from": {"_count": 1}}, "slid": {"_count": 9, "the": {"_count": 3}, "sideways": {"_count": 1}, "out": {"_count": 2}, "away": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "gives": {"_count": 3, "you": {"_count": 1}, "Dobby": {"_count": 1}, "orders": {"_count": 1}}, "seemed": {"_count": 54, "to": {"_count": 38}, "much": {"_count": 1}, "strangely": {"_count": 1}, "decided": {"_count": 1}, "frightened": {"_count": 1}, "the": {"_count": 1}, "really": {"_count": 1}, "determined": {"_count": 2}, "perfectly": {"_count": 1}, "illdisposed": {"_count": 1}, "wholly": {"_count": 1}, "just": {"_count": 1}, "unable": {"_count": 1}, "so": {"_count": 1}, "down": {"_count": 1}, "unstoppable": {"_count": 1}}, "growled": {"_count": 17, "at": {"_count": 3}, "his": {"_count": 1}, "sounding": {"_count": 1}, "": {"_count": 7}, "finally": {"_count": 1}, "stumping": {"_count": 1}, "or": {"_count": 1}, "up": {"_count": 1}, "as": {"_count": 1}}, "boomed": {"_count": 5, "": {"_count": 1}, "sweeping": {"_count": 1}, "genially": {"_count": 1}, "taking": {"_count": 1}, "to": {"_count": 1}}, "commanded": {"_count": 1, "": {"_count": 1}}, "stammered": {"_count": 4, "What": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}}, "scribbled": {"_count": 3, "a": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "found": {"_count": 75, "his": {"_count": 6}, "a": {"_count": 5}, "an": {"_count": 2}, "Ron": {"_count": 3}, "the": {"_count": 10}, "out": {"_count": 4}, "extremely": {"_count": 1}, "he": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}, "himself": {"_count": 17}, "Mr": {"_count": 1}, "at": {"_count": 2}, "inviting": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "youd": {"_count": 1}, "it": {"_count": 7}, "that": {"_count": 4}, "someones": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}, "steps": {"_count": 1}, "all": {"_count": 1}, "time": {"_count": 1}}, "killed": {"_count": 13, "em": {"_count": 1}, "all": {"_count": 1}, "them": {"_count": 2}, "it": {"_count": 1}, "those": {"_count": 1}, "by": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 1}, "MadEye": {"_count": 1}, "him": {"_count": 1}}, "just": {"_count": 47, "wanted": {"_count": 8}, "liked": {"_count": 1}, "near": {"_count": 1}, "sat": {"_count": 2}, "knew": {"_count": 1}, "try": {"_count": 1}, "said": {"_count": 1}, "taught": {"_count": 1}, "caught": {"_count": 1}, "had": {"_count": 2}, "walk": {"_count": 1}, "heard": {"_count": 1}, "finish": {"_count": 1}, "told": {"_count": 1}, "likes": {"_count": 1}, "shook": {"_count": 1}, "nodded": {"_count": 1}, "grabbed": {"_count": 1}, "let": {"_count": 1}, "cant": {"_count": 1}, "made": {"_count": 1}, "shifted": {"_count": 1}, "wont": {"_count": 1}, "doesnt": {"_count": 1}, "attacked": {"_count": 1}, "sneered": {"_count": 1}, "says": {"_count": 1}, "got": {"_count": 1}, "thought": {"_count": 1}, "failed": {"_count": 1}, "laughed": {"_count": 1}, "burst": {"_count": 1}, "managed": {"_count": 1}, "have": {"_count": 1}, "give": {"_count": 1}, "saved": {"_count": 1}, "hand": {"_count": 1}, "thinks": {"_count": 1}}, "turned": {"_count": 101, "up": {"_count": 4}, "his": {"_count": 6}, "slowly": {"_count": 3}, "and": {"_count": 3}, "to": {"_count": 27}, "back": {"_count": 11}, "right": {"_count": 2}, "": {"_count": 3}, "the": {"_count": 2}, "on": {"_count": 5}, "a": {"_count": 3}, "tail": {"_count": 1}, "inquiringly": {"_count": 1}, "silently": {"_count": 1}, "out": {"_count": 2}, "from": {"_count": 1}, "with": {"_count": 1}, "pretty": {"_count": 1}, "still": {"_count": 1}, "off": {"_count": 1}, "left": {"_count": 2}, "away": {"_count": 4}, "over": {"_count": 1}, "looked": {"_count": 1}, "in": {"_count": 2}, "smiling": {"_count": 1}, "quickly": {"_count": 1}, "its": {"_count": 1}, "only": {"_count": 1}, "around": {"_count": 1}, "into": {"_count": 3}, "them": {"_count": 1}, "instead": {"_count": 1}, "hither": {"_count": 1}, "again": {"_count": 1}}, "decided": {"_count": 5, "ter": {"_count": 2}, "hed": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "remembered": {"_count": 38, "something": {"_count": 1}, "what": {"_count": 3}, "the": {"_count": 4}, "Sir": {"_count": 1}, "where": {"_count": 1}, "that": {"_count": 10}, "": {"_count": 2}, "their": {"_count": 1}, "how": {"_count": 1}, "Mrs": {"_count": 1}, "It": {"_count": 1}, "Sirius": {"_count": 2}, "Rons": {"_count": 1}, "seeing": {"_count": 1}, "you": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "any": {"_count": 1}, "Dumbledore": {"_count": 1}, "Luna": {"_count": 1}, "Dumbledores": {"_count": 1}, "with": {"_count": 1}}, "snarled": {"_count": 13, "I": {"_count": 1}, "at": {"_count": 6}, "as": {"_count": 1}, "staring": {"_count": 2}, "": {"_count": 2}, "his": {"_count": 1}}, "flattened": {"_count": 1, "himself": {"_count": 1}}, "go": {"_count": 4, "": {"_count": 3}, "when": {"_count": 1}}, "died": {"_count": 18, "": {"_count": 10}, "twentyfour": {"_count": 1}, "o": {"_count": 1}, "just": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "arranged": {"_count": 1}}, "possibly": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "Harry": {"_count": 31, "had": {"_count": 6}, "was": {"_count": 7}, "and": {"_count": 5}, "": {"_count": 1}, "Ron": {"_count": 1}, "would": {"_count": 4}, "trapped": {"_count": 1}, "ought": {"_count": 1}, "busy": {"_count": 1}, "Rons": {"_count": 1}, "found": {"_count": 1}, "who": {"_count": 2}}, "set": {"_count": 21, "a": {"_count": 1}, "off": {"_count": 12}, "the": {"_count": 1}, "eyes": {"_count": 1}, "quill": {"_count": 1}, "foot": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 2}, "upon": {"_count": 1}}, "hissed": {"_count": 15, "": {"_count": 4}, "evilly": {"_count": 1}, "showing": {"_count": 1}, "through": {"_count": 1}, "at": {"_count": 2}, "in": {"_count": 1}, "Ive": {"_count": 1}, "his": {"_count": 1}, "softly": {"_count": 1}, "when": {"_count": 1}, "angrily": {"_count": 1}}, "needs": {"_count": 18, "all": {"_count": 1}, "reminding": {"_count": 1}, "and": {"_count": 1}, "looking": {"_count": 1}, "to": {"_count": 9}, "me": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}, "Slughorn": {"_count": 1}, "persuading": {"_count": 1}}, "wants": {"_count": 36, "ter": {"_count": 3}, "you": {"_count": 5}, "Harry": {"_count": 1}, "probably": {"_count": 1}, "to": {"_count": 17}, "us": {"_count": 1}, "": {"_count": 2}, "nothing": {"_count": 1}, "them": {"_count": 1}, "from": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}, "what": {"_count": 1}}, "thundered": {"_count": 1, "INSULT": {"_count": 1}}, "cast": {"_count": 1, "one": {"_count": 1}}, "felt": {"_count": 187, "as": {"_count": 26}, "because": {"_count": 1}, "that": {"_count": 8}, "only": {"_count": 1}, "like": {"_count": 2}, "the": {"_count": 14}, "things": {"_count": 1}, "for": {"_count": 3}, "it": {"_count": 8}, "his": {"_count": 16}, "strangely": {"_count": 1}, "a": {"_count": 17}, "something": {"_count": 2}, "Fawkes": {"_count": 1}, "cold": {"_count": 3}, "really": {"_count": 1}, "its": {"_count": 1}, "solid": {"_count": 1}, "braver": {"_count": 1}, "himself": {"_count": 5}, "at": {"_count": 5}, "wideawake": {"_count": 1}, "more": {"_count": 2}, "so": {"_count": 2}, "he": {"_count": 5}, "pleasantly": {"_count": 1}, "one": {"_count": 1}, "about": {"_count": 3}, "almost": {"_count": 3}, "clammy": {"_count": 1}, "fingers": {"_count": 1}, "worse": {"_count": 1}, "sure": {"_count": 2}, "sickened": {"_count": 1}, "all": {"_count": 1}, "now": {"_count": 1}, "surprised": {"_count": 1}, "highly": {"_count": 1}, "heartless": {"_count": 1}, "slightly": {"_count": 2}, "feverish": {"_count": 1}, "thoroughly": {"_count": 1}, "again": {"_count": 2}, "rather": {"_count": 1}, "lightheaded": {"_count": 2}, "no": {"_count": 1}, "even": {"_count": 2}, "toward": {"_count": 1}, "": {"_count": 4}, "when": {"_count": 1}, "angry": {"_count": 1}, "safe": {"_count": 1}, "compelled": {"_count": 1}, "disoriented": {"_count": 1}, "sorry": {"_count": 1}, "I": {"_count": 1}, "arms": {"_count": 1}, "already": {"_count": 1}, "and": {"_count": 1}, "sick": {"_count": 1}, "free": {"_count": 1}, "hollow": {"_count": 1}, "excited": {"_count": 1}, "up": {"_count": 1}, "joyous": {"_count": 1}, "quite": {"_count": 1}, "gentle": {"_count": 1}, "irritated": {"_count": 1}, "uneasy": {"_count": 1}, "Hermione": {"_count": 1}, "Voldemorts": {"_count": 1}, "their": {"_count": 1}}, "flew": {"_count": 2, "off": {"_count": 1}, "forward": {"_count": 1}}, "pelts": {"_count": 1, "Dumbledore": {"_count": 1}}, "called": {"_count": 35, "it": {"_count": 1}, "Come": {"_count": 1}, "for": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 4}, "beaming": {"_count": 1}, "": {"_count": 4}, "as": {"_count": 2}, "Snape": {"_count": 1}, "hoarsely": {"_count": 1}, "interesting": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 2}, "through": {"_count": 1}, "heartily": {"_count": 1}, "is": {"_count": 1}, "down": {"_count": 1}, "throwing": {"_count": 1}, "yeh": {"_count": 1}, "wondering": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 2}, "across": {"_count": 1}, "back": {"_count": 1}}, "counted": {"_count": 1, "stitches": {"_count": 1}}, "parted": {"_count": 1, "the": {"_count": 1}}, "always": {"_count": 14, "that": {"_count": 1}, "favors": {"_count": 1}, "was": {"_count": 1}, "enjoyed": {"_count": 1}, "reserved": {"_count": 1}, "did": {"_count": 2}, "knows": {"_count": 1}, "took": {"_count": 1}, "hopes": {"_count": 1}, "made": {"_count": 1}, "called": {"_count": 1}, "saves": {"_count": 1}, "knew": {"_count": 1}}, "met": {"_count": 11, "vampires": {"_count": 1}, "Draco": {"_count": 1}, "Neville": {"_count": 1}, "Uncle": {"_count": 1}, "Crookshanks": {"_count": 1}, "me": {"_count": 1}, "along": {"_count": 1}, "": {"_count": 1}, "Seamus": {"_count": 1}, "nobody": {"_count": 1}, "Peeves": {"_count": 1}}, "muttered": {"_count": 57, "": {"_count": 13}, "that": {"_count": 1}, "to": {"_count": 6}, "Ive": {"_count": 1}, "suddenly": {"_count": 1}, "furiously": {"_count": 1}, "resentfully": {"_count": 1}, "embarrassed": {"_count": 1}, "sitting": {"_count": 1}, "taking": {"_count": 2}, "staring": {"_count": 1}, "under": {"_count": 2}, "pulling": {"_count": 1}, "distractedly": {"_count": 1}, "squeezing": {"_count": 1}, "OrchideousV": {"_count": 1}, "Nice": {"_count": 1}, "more": {"_count": 1}, "raising": {"_count": 1}, "but": {"_count": 1}, "faster": {"_count": 1}, "all": {"_count": 1}, "trying": {"_count": 1}, "writing": {"_count": 1}, "wearily": {"_count": 1}, "finally": {"_count": 1}, "I": {"_count": 1}, "splashing": {"_count": 1}, "pushing": {"_count": 1}, "angrily": {"_count": 1}, "grudgingly": {"_count": 1}, "awkwardly": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 1}, "struggling": {"_count": 1}, "Tergeo": {"_count": 1}, "Imperiol": {"_count": 1}, "crouching": {"_count": 1}}, "started": {"_count": 27, "emptying": {"_count": 1}, "to": {"_count": 11}, "banging": {"_count": 1}, "all": {"_count": 1}, "telling": {"_count": 1}, "again": {"_count": 1}, "toward": {"_count": 1}, "forward": {"_count": 1}, "off": {"_count": 1}, "work": {"_count": 1}, "at": {"_count": 1}, "ordering": {"_count": 1}, "passing": {"_count": 1}, "sendin": {"_count": 1}, "on": {"_count": 1}, "going": {"_count": 1}, "wearing": {"_count": 1}}, "leaned": {"_count": 10, "forward": {"_count": 3}, "against": {"_count": 2}, "casually": {"_count": 1}, "back": {"_count": 3}, "his": {"_count": 1}}, "gets": {"_count": 16, "drunk": {"_count": 1}, "lonely": {"_count": 1}, "back": {"_count": 1}, "people": {"_count": 1}, "a": {"_count": 1}, "up": {"_count": 1}, "mine": {"_count": 1}, "chucked": {"_count": 1}, "": {"_count": 1}, "off": {"_count": 1}, "it": {"_count": 2}, "here": {"_count": 1}, "going": {"_count": 1}, "caught": {"_count": 1}, "bored": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "ate": {"_count": 6, "the": {"_count": 1}, "continually": {"_count": 1}, "drank": {"_count": 1}, "his": {"_count": 1}, "more": {"_count": 1}, "surrounded": {"_count": 1}}, "know": {"_count": 9, "about": {"_count": 2}, "": {"_count": 2}, "who": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}, "secrets": {"_count": 1}, "had": {"_count": 1}}, "swallowed": {"_count": 2, "a": {"_count": 1}, "too": {"_count": 1}}, "added": {"_count": 121, "brightly": {"_count": 1}, "to": {"_count": 8}, "voicing": {"_count": 1}, "quickly": {"_count": 6}, "": {"_count": 2}, "nastily": {"_count": 1}, "as": {"_count": 10}, "hastily": {"_count": 5}, "pointing": {"_count": 3}, "swiftly": {"_count": 1}, "softly": {"_count": 1}, "shaking": {"_count": 1}, "twinkling": {"_count": 1}, "his": {"_count": 2}, "thoughtfully": {"_count": 1}, "all": {"_count": 1}, "placing": {"_count": 1}, "because": {"_count": 1}, "blandly": {"_count": 1}, "taking": {"_count": 1}, "unconvincingly": {"_count": 1}, "nudging": {"_count": 1}, "going": {"_count": 1}, "quietly": {"_count": 1}, "on": {"_count": 2}, "you": {"_count": 1}, "fondly": {"_count": 1}, "hopelessly": {"_count": 1}, "in": {"_count": 9}, "seeing": {"_count": 1}, "four": {"_count": 1}, "approaching": {"_count": 1}, "gesturing": {"_count": 1}, "catching": {"_count": 2}, "pacing": {"_count": 1}, "grinning": {"_count": 1}, "I": {"_count": 2}, "and": {"_count": 1}, "looking": {"_count": 3}, "scowling": {"_count": 1}, "irritably": {"_count": 1}, "angrily": {"_count": 1}, "uncertainly": {"_count": 1}, "perfectly": {"_count": 1}, "thrusting": {"_count": 1}, "poking": {"_count": 1}, "bitterly": {"_count": 1}, "nervously": {"_count": 1}, "threateningly": {"_count": 1}, "nodding": {"_count": 1}, "hurriedly": {"_count": 1}, "dropping": {"_count": 1}, "hotly": {"_count": 1}, "impatiently": {"_count": 1}, "defensively": {"_count": 2}, "sternly": {"_count": 1}, "warningly": {"_count": 1}, "becoming": {"_count": 1}, "turning": {"_count": 1}, "seized": {"_count": 1}, "under": {"_count": 1}, "at": {"_count": 2}, "stupidly": {"_count": 1}, "imploringly": {"_count": 1}, "casually": {"_count": 1}, "holding": {"_count": 1}, "Voldemorts": {"_count": 1}, "so": {"_count": 1}, "blinking": {"_count": 1}, "with": {"_count": 1}, "abruptly": {"_count": 1}, "sharply": {"_count": 1}, "Luna": {"_count": 1}, "a": {"_count": 1}, "beaming": {"_count": 1}, "spitefully": {"_count": 1}, "Dont": {"_count": 1}}, "gripped": {"_count": 2, "his": {"_count": 2}}, "measured": {"_count": 1, "he": {"_count": 1}}, "liked": {"_count": 14, "Mr": {"_count": 1}, "to": {"_count": 4}, "": {"_count": 1}, "as": {"_count": 1}, "watching": {"_count": 1}, "it": {"_count": 1}, "best": {"_count": 1}, "Slughorn": {"_count": 1}, "me": {"_count": 2}, "Ollivander": {"_count": 1}}, "chewed": {"_count": 1, "his": {"_count": 1}}, "wore": {"_count": 5, "a": {"_count": 2}, "looking": {"_count": 1}, "Marvolos": {"_count": 1}, "and": {"_count": 1}}, "rose": {"_count": 5, "in": {"_count": 1}, "fast": {"_count": 1}, "into": {"_count": 2}, "and": {"_count": 1}}, "blinked": {"_count": 6, "and": {"_count": 5}, "": {"_count": 1}}, "read": {"_count": 12, "": {"_count": 1}, "passages": {"_count": 1}, "aloud": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "an": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}, "Gregorovitch": {"_count": 1}, "the": {"_count": 2}}, "goes": {"_count": 6, "to": {"_count": 2}, "Flint": {"_count": 1}, "all": {"_count": 1}, "I": {"_count": 1}, "Ron": {"_count": 1}}, "needed": {"_count": 41, "saw": {"_count": 1}, "to": {"_count": 17}, "him": {"_count": 1}, "was": {"_count": 3}, "top": {"_count": 1}, "his": {"_count": 3}, "Hermione": {"_count": 1}, "oxygen": {"_count": 1}, "them": {"_count": 1}, "above": {"_count": 1}, "now": {"_count": 1}, "on": {"_count": 1}, "Remedial": {"_count": 1}, "somebody": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}, "so": {"_count": 1}, "I": {"_count": 1}, "answered": {"_count": 1}, "the": {"_count": 1}}, "going": {"_count": 9, "to": {"_count": 8}, "when": {"_count": 1}}, "missed": {"_count": 9, "it": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 3}, "doing": {"_count": 1}, "Quidditch": {"_count": 1}, "making": {"_count": 1}, "nearly": {"_count": 1}}, "must": {"_count": 66, "have": {"_count": 13}, "transfer": {"_count": 1}, "be": {"_count": 16}, "look": {"_count": 2}, "save": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 3}, "know": {"_count": 3}, "do": {"_count": 1}, "wake": {"_count": 1}, "still": {"_count": 1}, "master": {"_count": 1}, "continue": {"_count": 1}, "hurry": {"_count": 1}, "find": {"_count": 1}, "think": {"_count": 1}, "not": {"_count": 3}, "indeed": {"_count": 1}, "suffocate": {"_count": 1}, "somehow": {"_count": 1}, "catch": {"_count": 1}, "say": {"_count": 2}, "abandon": {"_count": 1}, "hide": {"_count": 1}, "return": {"_count": 1}, "redouble": {"_count": 1}, "undertake": {"_count": 1}, "die": {"_count": 2}, "exist": {"_count": 1}, "make": {"_count": 1}}, "done": {"_count": 7, "it": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 3}, "with": {"_count": 1}}, "broke": {"_count": 13, "into": {"_count": 3}, "off": {"_count": 3}, "free": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 2}, "He": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "closed": {"_count": 16, "his": {"_count": 7}, "the": {"_count": 8}, "it": {"_count": 1}}, "opened": {"_count": 35, "his": {"_count": 21}, "gloatingly": {"_count": 1}, "the": {"_count": 9}, "it": {"_count": 2}, "a": {"_count": 1}, "them": {"_count": 1}}, "heard": {"_count": 139, "the": {"_count": 19}, "himself": {"_count": 2}, "footsteps": {"_count": 4}, "voices": {"_count": 4}, "Ron": {"_count": 3}, "": {"_count": 1}, "somebody": {"_count": 1}, "Quirrells": {"_count": 1}, "Quirrell": {"_count": 1}, "Aunt": {"_count": 1}, "Uncle": {"_count": 2}, "something": {"_count": 4}, "what": {"_count": 3}, "Lee": {"_count": 1}, "as": {"_count": 2}, "Harry": {"_count": 1}, "it": {"_count": 6}, "more": {"_count": 3}, "concern": {"_count": 1}, "a": {"_count": 20}, "Riddles": {"_count": 1}, "Rons": {"_count": 3}, "angry": {"_count": 1}, "another": {"_count": 1}, "Mr": {"_count": 1}, "screaming": {"_count": 1}, "hooves": {"_count": 2}, "quick": {"_count": 1}, "Sirius": {"_count": 2}, "his": {"_count": 1}, "from": {"_count": 1}, "their": {"_count": 1}, "Harrys": {"_count": 1}, "an": {"_count": 1}, "MadEye": {"_count": 1}, "Oooh": {"_count": 1}, "her": {"_count": 5}, "Snape": {"_count": 2}, "movement": {"_count": 1}, "Cedric": {"_count": 1}, "Voldemort": {"_count": 2}, "Fudges": {"_count": 1}, "whispering": {"_count": 1}, "someone": {"_count": 1}, "noises": {"_count": 1}, "Bletchley": {"_count": 1}, "Nevilles": {"_count": 1}, "Tonks": {"_count": 1}, "Moody": {"_count": 1}, "Mrs": {"_count": 1}, "that": {"_count": 1}, "Umbridge": {"_count": 1}, "Hermione": {"_count": 5}, "three": {"_count": 1}, "Luna": {"_count": 1}, "hed": {"_count": 1}, "Malfoys": {"_count": 1}, "running": {"_count": 2}, "music": {"_count": 1}, "about": {"_count": 1}, "Neville": {"_count": 1}, "McGonagall": {"_count": 1}, "slight": {"_count": 1}, "Percy": {"_count": 1}}, "dropped": {"_count": 13, "it": {"_count": 1}, "his": {"_count": 4}, "the": {"_count": 5}, "with": {"_count": 1}, "Bellatrixs": {"_count": 1}, "down": {"_count": 1}}, "is": {"_count": 124, "": {"_count": 21}, "a": {"_count": 8}, "at": {"_count": 1}, "ages": {"_count": 1}, "delayed": {"_count": 1}, "Mom": {"_count": 1}, "look": {"_count": 1}, "safe": {"_count": 1}, "marvelous": {"_count": 1}, "fit": {"_count": 1}, "ready": {"_count": 4}, "or": {"_count": 2}, "currently": {"_count": 1}, "but": {"_count": 1}, "asleep": {"_count": 1}, "alone": {"_count": 1}, "feeling": {"_count": 3}, "left": {"_count": 1}, "human": {"_count": 1}, "the": {"_count": 3}, "so": {"_count": 1}, "Mr": {"_count": 1}, "its": {"_count": 1}, "The": {"_count": 1}, "to": {"_count": 3}, "Dennis": {"_count": 1}, "now": {"_count": 3}, "needing": {"_count": 1}, "being": {"_count": 1}, "Ron": {"_count": 2}, "Harry": {"_count": 1}, "said": {"_count": 3}, "why": {"_count": 1}, "underage": {"_count": 1}, "placed": {"_count": 1}, "Wormtail": {"_count": 1}, "in": {"_count": 2}, "under": {"_count": 1}, "extremely": {"_count": 1}, "no": {"_count": 1}, "well": {"_count": 1}, "thanks": {"_count": 1}, "staying": {"_count": 1}, "plotting": {"_count": 1}, "Professor": {"_count": 1}, "For": {"_count": 1}, "hes": {"_count": 1}, "found": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}, "going": {"_count": 2}, "not": {"_count": 2}, "here": {"_count": 1}, "below": {"_count": 1}, "disguised": {"_count": 1}, "mistaken": {"_count": 1}, "sixteen": {"_count": 1}, "determined": {"_count": 1}, "muttered": {"_count": 1}, "near": {"_count": 1}, "absent": {"_count": 1}, "very": {"_count": 1}, "ashamed": {"_count": 1}, "filthy": {"_count": 1}, "told": {"_count": 1}, "coming": {"_count": 1}, "still": {"_count": 1}, "perhaps": {"_count": 1}, "right": {"_count": 1}, "known": {"_count": 1}, "certain": {"_count": 1}, "there": {"_count": 1}, "nor": {"_count": 1}, "Hermione": {"_count": 1}, "he": {"_count": 1}, "rumored": {"_count": 1}, "maybe": {"_count": 1}, "like": {"_count": 1}, "dead": {"_count": 1}}, "remembers": {"_count": 3, "what": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "hardly": {"_count": 8, "ever": {"_count": 2}, "noticed": {"_count": 2}, "gloated": {"_count": 1}, "listened": {"_count": 1}, "knew": {"_count": 2}}, "wailed": {"_count": 2, "Ive": {"_count": 1}, "": {"_count": 1}}, "says": {"_count": 19, "were": {"_count": 1}, "that": {"_count": 1}, "\u2018Give": {"_count": 1}, "": {"_count": 1}, "hes": {"_count": 1}, "Harry": {"_count": 1}, "before": {"_count": 1}, "Snapes": {"_count": 1}, "he": {"_count": 2}, "hell": {"_count": 3}, "about": {"_count": 1}, "people": {"_count": 1}, "his": {"_count": 1}, "theres": {"_count": 1}, "its": {"_count": 1}, "and": {"_count": 1}}, "deserves": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "stared": {"_count": 27, "at": {"_count": 9}, "hungrily": {"_count": 1}, "down": {"_count": 6}, "back": {"_count": 1}, "ahead": {"_count": 1}, "avidly": {"_count": 1}, "up": {"_count": 2}, "out": {"_count": 1}, "into": {"_count": 2}, "wordlessly": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}}, "joined": {"_count": 12, "them": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 6}, "those": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 1}}, "a": {"_count": 3, "bit": {"_count": 1}, "judge": {"_count": 1}, "relative": {"_count": 1}}, "get": {"_count": 7, "covered": {"_count": 1}, "in": {"_count": 2}, "out": {"_count": 1}, "you": {"_count": 1}, "hurt": {"_count": 1}, "into": {"_count": 1}}, "pushed": {"_count": 15, "me": {"_count": 1}, "the": {"_count": 5}, "Harry": {"_count": 1}, "his": {"_count": 3}, "it": {"_count": 2}, "past": {"_count": 1}, "himself": {"_count": 1}, "through": {"_count": 1}}, "accidentally": {"_count": 1, "let": {"_count": 1}}, "bought": {"_count": 5, "me": {"_count": 1}, "three": {"_count": 1}, "himself": {"_count": 1}, "a": {"_count": 1}, "something": {"_count": 1}}, "doesnt": {"_count": 34, "want": {"_count": 6}, "know": {"_count": 6}, "stop": {"_count": 1}, "he": {"_count": 1}, "come": {"_count": 1}, "ask": {"_count": 1}, "care": {"_count": 3}, "win": {"_count": 1}, "like": {"_count": 2}, "think": {"_count": 3}, "said": {"_count": 1}, "share": {"_count": 1}, "tell": {"_count": 1}, "": {"_count": 1}, "mind": {"_count": 1}, "pop": {"_count": 1}, "seem": {"_count": 1}, "realize": {"_count": 1}, "already": {"_count": 1}}, "usually": {"_count": 7, "gives": {"_count": 1}, "did": {"_count": 2}, "gets": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 2}}, "struggled": {"_count": 15, "with": {"_count": 2}, "singlehandedly": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}, "against": {"_count": 1}, "to": {"_count": 8}, "desperate": {"_count": 1}}, "woke": {"_count": 4, "next": {"_count": 1}, "early": {"_count": 1}, "up": {"_count": 1}, "them": {"_count": 1}}, "gave": {"_count": 37, "an": {"_count": 3}, "him": {"_count": 1}, "a": {"_count": 7}, "you": {"_count": 2}, "up": {"_count": 2}, "in": {"_count": 1}, "me": {"_count": 4}, "them": {"_count": 2}, "two": {"_count": 1}, "what": {"_count": 1}, "Sirius": {"_count": 1}, "no": {"_count": 2}, "Ron": {"_count": 1}, "Narcissa": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 2}, "us": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}}, "poured": {"_count": 2, "sugar": {"_count": 1}, "the": {"_count": 1}}, "hated": {"_count": 14, "him": {"_count": 1}, "more": {"_count": 2}, "my": {"_count": 1}, "the": {"_count": 4}, "everything": {"_count": 1}, "most": {"_count": 1}, "it": {"_count": 1}, "Sirius": {"_count": 1}, "Voldemort": {"_count": 1}, "whose": {"_count": 1}}, "paused": {"_count": 6, "at": {"_count": 1}, "to": {"_count": 1}, "so": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "snapped": {"_count": 6, "at": {"_count": 2}, "": {"_count": 1}, "finally": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "rounded": {"_count": 8, "on": {"_count": 5}, "another": {"_count": 1}, "off": {"_count": 1}, "the": {"_count": 1}}, "sloped": {"_count": 2, "away": {"_count": 1}, "out": {"_count": 1}}, "held": {"_count": 18, "it": {"_count": 4}, "up": {"_count": 6}, "out": {"_count": 4}, "him": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 1}}, "soared": {"_count": 9, "air": {"_count": 1}, "around": {"_count": 2}, "over": {"_count": 2}, "upward": {"_count": 2}, "through": {"_count": 2}}, "realized": {"_count": 53, "hed": {"_count": 1}, "that": {"_count": 30}, "what": {"_count": 3}, "they": {"_count": 3}, "he": {"_count": 2}, "with": {"_count": 1}, "it": {"_count": 4}, "there": {"_count": 1}, "I": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "how": {"_count": 4}}, "threw": {"_count": 17, "the": {"_count": 6}, "it": {"_count": 2}, "a": {"_count": 1}, "himself": {"_count": 3}, "out": {"_count": 1}, "Harrys": {"_count": 1}, "back": {"_count": 1}, "away": {"_count": 1}, "something": {"_count": 1}}, "stretched": {"_count": 6, "out": {"_count": 6}}, "toppled": {"_count": 6, "gently": {"_count": 1}, "over": {"_count": 1}, "forward": {"_count": 1}, "out": {"_count": 1}, "on": {"_count": 1}, "backward": {"_count": 1}}, "imagined": {"_count": 7, "it": {"_count": 1}, "the": {"_count": 2}, "how": {"_count": 2}, "Dumbledore": {"_count": 1}, "simply": {"_count": 1}}, "stumped": {"_count": 2, "around": {"_count": 1}, "across": {"_count": 1}}, "swooped": {"_count": 2, "out": {"_count": 1}, "in": {"_count": 1}}, "expected": {"_count": 10, "you": {"_count": 1}, "it": {"_count": 1}, "something": {"_count": 1}, "": {"_count": 1}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "speeches": {"_count": 1}, "to": {"_count": 2}, "did": {"_count": 1}}, "lay": {"_count": 28, "awake": {"_count": 2}, "quite": {"_count": 1}, "starving": {"_count": 1}, "flat": {"_count": 2}, "": {"_count": 2}, "among": {"_count": 1}, "listening": {"_count": 1}, "immobile": {"_count": 1}, "there": {"_count": 3}, "back": {"_count": 2}, "sobbing": {"_count": 1}, "upon": {"_count": 1}, "wandless": {"_count": 1}, "winesodden": {"_count": 1}, "trying": {"_count": 1}, "down": {"_count": 1}, "unable": {"_count": 1}, "on": {"_count": 2}, "existed": {"_count": 1}, "seemed": {"_count": 1}, "quiescent": {"_count": 1}}, "tries": {"_count": 3, "to": {"_count": 2}, "not": {"_count": 1}}, "finds": {"_count": 3, "all": {"_count": 1}, "I": {"_count": 1}, "out": {"_count": 1}}, "tripped": {"_count": 7, "grabbed": {"_count": 1}, "and": {"_count": 1}, "headlong": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 2}}, "climbed": {"_count": 11, "back": {"_count": 1}, "into": {"_count": 1}, "through": {"_count": 3}, "a": {"_count": 2}, "watching": {"_count": 1}, "up": {"_count": 1}, "onto": {"_count": 2}}, "handed": {"_count": 4, "the": {"_count": 1}, "him": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}}, "squeaked": {"_count": 10, "": {"_count": 2}, "loudly": {"_count": 1}, "tentatively": {"_count": 1}, "his": {"_count": 1}, "wiping": {"_count": 1}, "Locomotor": {"_count": 1}, "avoiding": {"_count": 1}, "casting": {"_count": 1}, "in": {"_count": 1}}, "sounded": {"_count": 7, "offhand": {"_count": 1}, "highly": {"_count": 1}, "hopeful": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "stern": {"_count": 1}, "distraught": {"_count": 1}}, "prodded": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}}, "rumbled": {"_count": 1, "lead": {"_count": 1}}, "doing": {"_count": 14, "": {"_count": 4}, "here": {"_count": 3}, "without": {"_count": 1}, "with": {"_count": 1}, "sneaking": {"_count": 1}, "at": {"_count": 2}, "down": {"_count": 1}, "in": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "be": {"_count": 20, "afraid": {"_count": 1}, "a": {"_count": 1}, "taken": {"_count": 1}, "arrested": {"_count": 1}, "happy": {"_count": 1}, "with": {"_count": 1}, "paid": {"_count": 1}, "right": {"_count": 1}, "able": {"_count": 3}, "sure": {"_count": 2}, "allowed": {"_count": 1}, "in": {"_count": 2}, "living": {"_count": 1}, "upset": {"_count": 1}, "responsible": {"_count": 1}, "safe": {"_count": 1}}, "finished": {"_count": 20, "breathlessly": {"_count": 1}, "watching": {"_count": 1}, "": {"_count": 2}, "telling": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "disgustedly": {"_count": 1}, "desperately": {"_count": 1}, "lamely": {"_count": 1}, "defiantly": {"_count": 1}, "them": {"_count": 1}, "several": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "aggravated": {"_count": 1}, "speaking": {"_count": 1}, "than": {"_count": 1}, "lighting": {"_count": 1}, "enclosing": {"_count": 1}}, "after": {"_count": 4, "": {"_count": 1}, "apart": {"_count": 2}, "the": {"_count": 1}}, "beat": {"_count": 2, "the": {"_count": 1}, "Gryffindor": {"_count": 1}}, "dived": {"_count": 8, "downward": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}, "closing": {"_count": 1}, "under": {"_count": 1}, "amongst": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 1}}, "cant": {"_count": 23, "have": {"_count": 4}, "use": {"_count": 1}, "Miss": {"_count": 1}, "risk": {"_count": 1}, "understand": {"_count": 2}, "play": {"_count": 1}, "still": {"_count": 1}, "manage": {"_count": 1}, "be": {"_count": 4}, "really": {"_count": 2}, "stay": {"_count": 1}, "close": {"_count": 1}, "complain": {"_count": 1}, "leave": {"_count": 1}, "say": {"_count": 1}}, "hit": {"_count": 12, "the": {"_count": 9}, "Goyle": {"_count": 1}, "more": {"_count": 1}, "after": {"_count": 1}}, "nearly": {"_count": 7, "swallowed": {"_count": 1}, "knocked": {"_count": 1}, "ran": {"_count": 1}, "missed": {"_count": 1}, "killed": {"_count": 1}, "shoved": {"_count": 1}, "stumbled": {"_count": 1}}, "never": {"_count": 35, "had": {"_count": 6}, "wanted": {"_count": 1}, "even": {"_count": 1}, "mentioned": {"_count": 3}, "finished": {"_count": 1}, "tried": {"_count": 1}, "ate": {"_count": 1}, "heard": {"_count": 1}, "mentions": {"_count": 1}, "saw": {"_count": 1}, "killed": {"_count": 1}, "descended": {"_count": 1}, "really": {"_count": 1}, "gets": {"_count": 1}, "lost": {"_count": 1}, "expected": {"_count": 1}, "thought": {"_count": 1}, "asked": {"_count": 2}, "fulfilled": {"_count": 1}, "received": {"_count": 1}, "paused": {"_count": 1}, "revealed": {"_count": 1}, "assumed": {"_count": 1}, "got": {"_count": 1}, "realized": {"_count": 1}, "appreciated": {"_count": 1}, "meant": {"_count": 1}}, "groaned": {"_count": 5, "shes": {"_count": 1}, "sinking": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}}, "too": {"_count": 23, "carried": {"_count": 1}, "read": {"_count": 1}, "had": {"_count": 1}, "left": {"_count": 1}, "was": {"_count": 6}, "wanted": {"_count": 2}, "needed": {"_count": 1}, "who": {"_count": 1}, "remembered": {"_count": 1}, "vanished": {"_count": 1}, "put": {"_count": 1}, "were": {"_count": 1}, "wore": {"_count": 1}, "started": {"_count": 1}, "hurried": {"_count": 1}, "got": {"_count": 1}, "yelled": {"_count": 1}}, "free": {"_count": 1, "to": {"_count": 1}}, "stood": {"_count": 50, "there": {"_count": 8}, "": {"_count": 3}, "and": {"_count": 1}, "a": {"_count": 1}, "up": {"_count": 8}, "at": {"_count": 2}, "glaring": {"_count": 1}, "back": {"_count": 2}, "irresolute": {"_count": 1}, "with": {"_count": 2}, "surveying": {"_count": 1}, "on": {"_count": 3}, "trembling": {"_count": 1}, "too": {"_count": 1}, "directly": {"_count": 1}, "buffeted": {"_count": 1}, "now": {"_count": 1}, "it": {"_count": 1}, "rooted": {"_count": 1}, "The": {"_count": 1}, "alone": {"_count": 1}, "in": {"_count": 1}, "swaying": {"_count": 1}, "Disoriented": {"_count": 1}, "far": {"_count": 1}, "shudder": {"_count": 1}, "beside": {"_count": 1}, "but": {"_count": 1}, "near": {"_count": 1}}, "managed": {"_count": 18, "to": {"_count": 16}, "it": {"_count": 2}}, "in": {"_count": 6, "fact": {"_count": 2}, "the": {"_count": 2}, "an": {"_count": 1}, "some": {"_count": 1}}, "whispered": {"_count": 59, "": {"_count": 20}, "although": {"_count": 1}, "we": {"_count": 1}, "urgently": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 9}, "miserably": {"_count": 2}, "eagerly": {"_count": 1}, "his": {"_count": 2}, "again": {"_count": 1}, "halting": {"_count": 1}, "and": {"_count": 4}, "indicating": {"_count": 1}, "Why": {"_count": 1}, "stamping": {"_count": 1}, "can": {"_count": 1}, "moving": {"_count": 1}, "back": {"_count": 1}, "through": {"_count": 1}, "after": {"_count": 1}, "Lumos": {"_count": 1}, "into": {"_count": 2}, "it": {"_count": 1}, "clutching": {"_count": 1}, "Expecto": {"_count": 1}, "watching": {"_count": 1}}, "shoved": {"_count": 7, "Scabbers": {"_count": 1}, "Crookshanks": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "them": {"_count": 1}, "me": {"_count": 1}}, "dreamed": {"_count": 4, "about": {"_count": 1}, "that": {"_count": 2}, "of": {"_count": 1}}, "yelled": {"_count": 30, "": {"_count": 4}, "struggling": {"_count": 1}, "whacking": {"_count": 1}, "spitefully": {"_count": 1}, "seeing": {"_count": 1}, "shaking": {"_count": 1}, "pointing": {"_count": 1}, "except": {"_count": 1}, "for": {"_count": 1}, "advancing": {"_count": 1}, "DUCK": {"_count": 1}, "after": {"_count": 1}, "angrily": {"_count": 1}, "while": {"_count": 1}, "as": {"_count": 2}, "his": {"_count": 1}, "and": {"_count": 1}, "Protegol": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 1}, "KILL": {"_count": 1}, "over": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "throwing": {"_count": 1}, "Relashiol": {"_count": 1}}, "spluttered": {"_count": 3, "through": {"_count": 1}, "The": {"_count": 1}, "Saved": {"_count": 1}}, "ever": {"_count": 22, "refereed": {"_count": 1}, "did": {"_count": 2}, "heard": {"_count": 2}, "got": {"_count": 1}, "bothered": {"_count": 1}, "go": {"_count": 1}, "let": {"_count": 1}, "really": {"_count": 1}, "stuck": {"_count": 1}, "have": {"_count": 2}, "saw": {"_count": 2}, "returned": {"_count": 1}, "said": {"_count": 1}, "managed": {"_count": 1}, "wanted": {"_count": 1}, "shared": {"_count": 1}, "inside": {"_count": 1}, "went": {"_count": 1}}, "mumbled": {"_count": 10, "": {"_count": 4}, "groping": {"_count": 1}, "squinting": {"_count": 1}, "apologetically": {"_count": 1}, "shamefacedly": {"_count": 1}, "and": {"_count": 1}, "before": {"_count": 1}}, "unwrapped": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 7, "wondered": {"_count": 2}, "forgot": {"_count": 1}, "knows": {"_count": 1}, "saw": {"_count": 1}, "recognized": {"_count": 1}, "started": {"_count": 1}}, "sometimes": {"_count": 2, "had": {"_count": 1}, "made": {"_count": 1}}, "showed": {"_count": 8, "any": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "today": {"_count": 1}, "signs": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}, "remorse": {"_count": 1}}, "hiding": {"_count": 2, "behind": {"_count": 1}, "her": {"_count": 1}}, "borrowed": {"_count": 2, "Fluffy": {"_count": 1}, "": {"_count": 1}}, "ticked": {"_count": 1, "them": {"_count": 1}}, "already": {"_count": 8, "knew": {"_count": 3}, "been": {"_count": 1}, "planning": {"_count": 1}, "knows": {"_count": 1}, "did": {"_count": 1}, "acted": {"_count": 1}}, "stoked": {"_count": 1, "the": {"_count": 1}}, "beautiful": {"_count": 1, "": {"_count": 1}}, "knows": {"_count": 27, "his": {"_count": 1}, "more": {"_count": 1}, "Im": {"_count": 2}, "a": {"_count": 1}, "all": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 3}, "how": {"_count": 2}, "you": {"_count": 1}, "everything": {"_count": 1}, "he": {"_count": 1}, "protected": {"_count": 1}, "who": {"_count": 1}, "hes": {"_count": 1}, "exactly": {"_count": 1}, "too": {"_count": 1}, "she": {"_count": 1}, "youre": {"_count": 1}, "which": {"_count": 1}, "your": {"_count": 1}, "securitys": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 1}}, "leapt": {"_count": 11, "to": {"_count": 2}, "up": {"_count": 1}, "out": {"_count": 2}, "down": {"_count": 1}, "lightly": {"_count": 1}, "into": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}, "aside": {"_count": 1}}, "puffed": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "pale": {"_count": 1}}, "only": {"_count": 11, "got": {"_count": 2}, "killed": {"_count": 1}, "wanted": {"_count": 3}, "knew": {"_count": 2}, "just": {"_count": 1}, "heard": {"_count": 1}, "had": {"_count": 1}}, "repeated": {"_count": 17, "and": {"_count": 1}, "frowning": {"_count": 1}, "": {"_count": 5}, "mildly": {"_count": 1}, "in": {"_count": 3}, "hazily": {"_count": 1}, "the": {"_count": 1}, "loudly": {"_count": 2}, "stupidly": {"_count": 1}, "again": {"_count": 1}}, "pointed": {"_count": 31, "down": {"_count": 1}, "at": {"_count": 11}, "this": {"_count": 1}, "a": {"_count": 3}, "them": {"_count": 1}, "his": {"_count": 7}, "from": {"_count": 1}, "out": {"_count": 2}, "it": {"_count": 1}, "Hermiones": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}}, "staggered": {"_count": 12, "backward": {"_count": 1}, "sideways": {"_count": 2}, "": {"_count": 1}, "to": {"_count": 3}, "and": {"_count": 1}, "a": {"_count": 2}, "blindly": {"_count": 1}, "back": {"_count": 1}}, "lowered": {"_count": 7, "himself": {"_count": 1}, "Ron": {"_count": 1}, "his": {"_count": 5}}, "leaves": {"_count": 3, "this": {"_count": 2}, "it": {"_count": 1}}, "wondered": {"_count": 17, "aloud": {"_count": 1}, "what": {"_count": 3}, "whether": {"_count": 7}, "vaguely": {"_count": 1}, "if": {"_count": 1}, "how": {"_count": 1}, "with": {"_count": 1}, "yet": {"_count": 1}, "had": {"_count": 1}}, "shouldnt": {"_count": 4, "have": {"_count": 3}, "think": {"_count": 1}}, "half": {"_count": 3, "expected": {"_count": 2}, "wanted": {"_count": 1}}, "burst": {"_count": 5, "out": {"_count": 1}, "instead": {"_count": 1}, "into": {"_count": 2}, "through": {"_count": 1}}, "wouldn": {"_count": 1, "take": {"_count": 1}}, "didn": {"_count": 3, "want": {"_count": 2}, "object": {"_count": 1}}, "seem": {"_count": 1, "interested": {"_count": 1}}, "blurted": {"_count": 5, "out": {"_count": 5}}, "swayed": {"_count": 5, "where": {"_count": 1}, "slightly": {"_count": 1}, "trying": {"_count": 1}, "dangerously": {"_count": 1}, "with": {"_count": 1}}, "scooted": {"_count": 1, "off": {"_count": 1}}, "landed": {"_count": 8, "on": {"_count": 2}, "spreadeagled": {"_count": 1}, "hard": {"_count": 1}, "facedown": {"_count": 1}, "flat": {"_count": 2}, "his": {"_count": 1}}, "sent": {"_count": 11, "them": {"_count": 1}, "you": {"_count": 2}, "me": {"_count": 2}, "him": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 2}, "twelve": {"_count": 1}, "curses": {"_count": 1}}, "crashed": {"_count": 1, "to": {"_count": 1}}, "drained": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "braced": {"_count": 1, "himself": {"_count": 1}}, "neednt": {"_count": 2, "have": {"_count": 1}, "": {"_count": 1}}, "does": {"_count": 20, "said": {"_count": 2}, "have": {"_count": 1}, "": {"_count": 6}, "not": {"_count": 5}, "if": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "Id": {"_count": 1}, "set": {"_count": 1}}, "invented": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "make": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "hasnt": {"_count": 23, "gone": {"_count": 1}, "died": {"_count": 1}, "even": {"_count": 1}, "been": {"_count": 2}, "discovered": {"_count": 1}, "asked": {"_count": 2}, "got": {"_count": 6}, "shifted": {"_count": 1}, "seen": {"_count": 1}, "said": {"_count": 3}, "peaked": {"_count": 1}, "snapped": {"_count": 1}, "had": {"_count": 1}, "found": {"_count": 1}}, "cannot": {"_count": 6, "be": {"_count": 1}, "now": {"_count": 1}, "hurt": {"_count": 1}, "hear": {"_count": 1}, "Apparate": {"_count": 1}, "possess": {"_count": 1}}, "shows": {"_count": 3, "just": {"_count": 1}, "all": {"_count": 1}, "up": {"_count": 1}}, "may": {"_count": 7, "never": {"_count": 1}, "well": {"_count": 1}, "feel": {"_count": 1}, "have": {"_count": 3}, "be": {"_count": 1}}, "want": {"_count": 16, "to": {"_count": 6}, "": {"_count": 3}, "me": {"_count": 2}, "with": {"_count": 1}, "sir": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}}, "hates": {"_count": 4, "me": {"_count": 1}, "students": {"_count": 1}, "anyone": {"_count": 1}, "writing": {"_count": 1}}, "choked": {"_count": 5, "and": {"_count": 2}, "": {"_count": 2}, "my": {"_count": 1}}, "meant": {"_count": 11, "you": {"_count": 1}, "to": {"_count": 3}, "": {"_count": 2}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "I": {"_count": 1}, "Lucius": {"_count": 1}, "Oh": {"_count": 1}}, "sort": {"_count": 2, "of": {"_count": 2}}, "sobbed": {"_count": 3, "his": {"_count": 1}, "": {"_count": 2}}, "shoulda": {"_count": 1, "sacked": {"_count": 1}}, "roared": {"_count": 13, "across": {"_count": 1}, "": {"_count": 3}, "to": {"_count": 1}, "in": {"_count": 1}, "now": {"_count": 1}, "shaking": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}, "seizing": {"_count": 1}, "at": {"_count": 1}, "pointing": {"_count": 1}}, "emerged": {"_count": 6, "": {"_count": 1}, "from": {"_count": 3}, "his": {"_count": 1}, "into": {"_count": 1}}, "give": {"_count": 3, "now": {"_count": 1}, "us": {"_count": 1}, "to": {"_count": 1}}, "dashed": {"_count": 11, "back": {"_count": 2}, "off": {"_count": 1}, "forward": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}, "down": {"_count": 2}, "sideways": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}}, "dies": {"_count": 1, "sir": {"_count": 1}}, "will": {"_count": 38, "be": {"_count": 6}, "not": {"_count": 8}, "": {"_count": 3}, "perform": {"_count": 1}, "immediately": {"_count": 1}, "pay": {"_count": 2}, "reward": {"_count": 2}, "get": {"_count": 1}, "prefer": {"_count": 1}, "Minerva": {"_count": 1}, "have": {"_count": 4}, "return": {"_count": 1}, "said": {"_count": 1}, "remember": {"_count": 1}, "forgive": {"_count": 1}, "know": {"_count": 2}, "want": {"_count": 1}, "understand": {"_count": 1}}, "dragged": {"_count": 4, "Harry": {"_count": 1}, "himself": {"_count": 1}, "sweater": {"_count": 1}, "it": {"_count": 1}}, "paid": {"_count": 1, "a": {"_count": 1}}, "drank": {"_count": 7, "half": {"_count": 1}, "some": {"_count": 1}, "he": {"_count": 2}, "from": {"_count": 1}, "all": {"_count": 1}, "a": {"_count": 1}}, "crossed": {"_count": 8, "the": {"_count": 6}, "to": {"_count": 1}, "Magnolia": {"_count": 1}}, "tied": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "snatched": {"_count": 5, "up": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}, "at": {"_count": 1}, "it": {"_count": 1}}, "raided": {"_count": 1, "our": {"_count": 1}}, "clearly": {"_count": 2, "thought": {"_count": 1}, "had": {"_count": 1}}, "grasped": {"_count": 3, "it": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "thinks": {"_count": 25, "theyre": {"_count": 1}, "Dumbledores": {"_count": 1}, "murdering": {"_count": 1}, "Durmstrang": {"_count": 1}, "Im": {"_count": 1}, "Percy": {"_count": 1}, "I": {"_count": 2}, "we": {"_count": 2}, "no": {"_count": 1}, "Harry": {"_count": 1}, "youre": {"_count": 1}, "the": {"_count": 2}, "of": {"_count": 1}, "he": {"_count": 2}, "by": {"_count": 1}, "Gregorovitch": {"_count": 2}, "is": {"_count": 1}, "as": {"_count": 1}, "weve": {"_count": 1}, "it": {"_count": 1}}, "maybe": {"_count": 1, "would": {"_count": 1}}, "faltered": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "ripped": {"_count": 7, "open": {"_count": 1}, "back": {"_count": 1}, "them": {"_count": 2}, "it": {"_count": 1}, "off": {"_count": 1}, "in": {"_count": 1}}, "stayed": {"_count": 6, "shut": {"_count": 1}, "cool": {"_count": 1}, "where": {"_count": 1}, "alive": {"_count": 1}, "stockstill": {"_count": 1}, "in": {"_count": 1}}, "coughed": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "were": {"_count": 62, "being": {"_count": 2}, "something": {"_count": 2}, "deprived": {"_count": 1}, "about": {"_count": 4}, "recovering": {"_count": 1}, "sitting": {"_count": 2}, "the": {"_count": 2}, "heading": {"_count": 1}, "on": {"_count": 1}, "sleeping": {"_count": 1}, "made": {"_count": 1}, "checking": {"_count": 1}, "doing": {"_count": 1}, "a": {"_count": 8}, "annoyed": {"_count": 1}, "screwing": {"_count": 1}, "trying": {"_count": 2}, "draped": {"_count": 1}, "carrying": {"_count": 4}, "trapped": {"_count": 1}, "in": {"_count": 1}, "making": {"_count": 1}, "back": {"_count": 1}, "underwater": {"_count": 1}, "wearing": {"_count": 1}, "floating": {"_count": 1}, "giving": {"_count": 1}, "unsheathing": {"_count": 1}, "upstairs": {"_count": 1}, "falling": {"_count": 1}, "facing": {"_count": 1}, "almost": {"_count": 1}, "caught": {"_count": 2}, "still": {"_count": 1}, "your": {"_count": 1}, "contaminated": {"_count": 1}, "chewing": {"_count": 2}, "pressing": {"_count": 1}, "with": {"_count": 1}, "descending": {"_count": 1}, "passenger": {"_count": 1}, "clothed": {"_count": 1}}, "tucked": {"_count": 1, "it": {"_count": 1}}, "shot": {"_count": 9, "inside": {"_count": 1}, "off": {"_count": 2}, "out": {"_count": 1}, "toward": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 3}}, "strode": {"_count": 19, "away": {"_count": 2}, "off": {"_count": 3}, "back": {"_count": 4}, "over": {"_count": 4}, "down": {"_count": 1}, "forward": {"_count": 1}, "across": {"_count": 1}, "directly": {"_count": 1}, "toward": {"_count": 1}, "from": {"_count": 1}}, "hastily": {"_count": 3, "shoved": {"_count": 1}, "bent": {"_count": 1}, "looked": {"_count": 1}}, "finally": {"_count": 9, "let": {"_count": 1}, "entered": {"_count": 1}, "reached": {"_count": 1}, "saw": {"_count": 1}, "had": {"_count": 1}, "punched": {"_count": 1}, "found": {"_count": 1}, "fell": {"_count": 1}, "discovered": {"_count": 1}}, "beckoned": {"_count": 4, "to": {"_count": 1}, "everyone": {"_count": 1}, "Harry": {"_count": 2}}, "straightened": {"_count": 9, "his": {"_count": 2}, "up": {"_count": 6}, "himself": {"_count": 1}}, "barely": {"_count": 6, "came": {"_count": 1}, "spoke": {"_count": 1}, "recognized": {"_count": 1}, "had": {"_count": 1}, "flinched": {"_count": 1}, "registered": {"_count": 1}}, "slammed": {"_count": 10, "his": {"_count": 1}, "the": {"_count": 5}, "on": {"_count": 1}, "into": {"_count": 2}, "down": {"_count": 1}}, "patted": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "moaned": {"_count": 6, "as": {"_count": 1}, "": {"_count": 3}, "to": {"_count": 1}, "Dont": {"_count": 1}}, "understood": {"_count": 13, "as": {"_count": 1}, "too": {"_count": 2}, "": {"_count": 3}, "Krum": {"_count": 1}, "Bagmans": {"_count": 1}, "what": {"_count": 1}, "why": {"_count": 3}, "at": {"_count": 1}}, "merely": {"_count": 18, "continued": {"_count": 2}, "assumed": {"_count": 1}, "shrugged": {"_count": 2}, "took": {"_count": 1}, "snatched": {"_count": 1}, "drew": {"_count": 1}, "looked": {"_count": 2}, "ducked": {"_count": 1}, "shrank": {"_count": 1}, "raised": {"_count": 1}, "said": {"_count": 1}, "started": {"_count": 1}, "moved": {"_count": 1}, "pretended": {"_count": 1}, "nodded": {"_count": 1}}, "allowed": {"_count": 6, "himself": {"_count": 3}, "them": {"_count": 1}, "each": {"_count": 1}, "the": {"_count": 1}}, "gulped": {"_count": 4, "it": {"_count": 2}, "the": {"_count": 1}, "": {"_count": 1}}, "shook": {"_count": 11, "his": {"_count": 6}, "hands": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "Harrys": {"_count": 1}, "where": {"_count": 1}}, "disappeared": {"_count": 1, "and": {"_count": 1}}, "busied": {"_count": 1, "himself": {"_count": 1}}, "returned": {"_count": 20, "to": {"_count": 10}, "almost": {"_count": 1}, "one": {"_count": 1}, "again": {"_count": 1}, "but": {"_count": 2}, "didnt": {"_count": 1}, "a": {"_count": 1}, "annually": {"_count": 1}, "But": {"_count": 1}, "his": {"_count": 1}}, "mentioned": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "flipped": {"_count": 1, "her": {"_count": 1}}, "cried": {"_count": 10, "shrilly": {"_count": 1}, "beaming": {"_count": 1}, "when": {"_count": 1}, "EXPELLIARMUS": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 1}, "Stupefy": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}, "aloud": {"_count": 1}}, "skimmed": {"_count": 1, "through": {"_count": 1}}, "dismounted": {"_count": 1, "": {"_count": 1}}, "replied": {"_count": 4, "Plenty": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 2}}, "smiled": {"_count": 11, "nastily": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}, "broadly": {"_count": 1}, "": {"_count": 3}, "raised": {"_count": 1}, "once": {"_count": 1}, "when": {"_count": 1}, "more": {"_count": 1}}, "spat": {"_count": 8, "": {"_count": 2}, "suddenly": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 2}, "unexpectedly": {"_count": 1}, "in": {"_count": 1}}, "ill": {"_count": 1, "": {"_count": 1}}, "banished": {"_count": 1, "": {"_count": 1}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "mustnt": {"_count": 3, "expect": {"_count": 1}, "catch": {"_count": 1}, "do": {"_count": 1}}, "made": {"_count": 36, "me": {"_count": 1}, "to": {"_count": 4}, "a": {"_count": 9}, "his": {"_count": 5}, "contact": {"_count": 2}, "her": {"_count": 1}, "out": {"_count": 2}, "it": {"_count": 1}, "Harry": {"_count": 1}, "soft": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 2}, "while": {"_count": 1}, "less": {"_count": 1}, "himself": {"_count": 2}, "Travers": {"_count": 1}, "no": {"_count": 1}}, "erupted": {"_count": 1, "suddenly": {"_count": 1}}, "sees": {"_count": 6, "you": {"_count": 4}, "": {"_count": 1}, "us": {"_count": 1}}, "sputtered": {"_count": 2, "": {"_count": 1}, "looking": {"_count": 1}}, "hesitated": {"_count": 5, "looking": {"_count": 1}, "his": {"_count": 1}, "He": {"_count": 1}, "": {"_count": 1}, "glancing": {"_count": 1}}, "drifted": {"_count": 2, "away": {"_count": 1}, "through": {"_count": 1}}, "grinned": {"_count": 7, "at": {"_count": 2}, "happily": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}, "across": {"_count": 1}, "down": {"_count": 1}}, "shrieked": {"_count": 4, "": {"_count": 1}, "his": {"_count": 1}, "Master": {"_count": 1}, "standing": {"_count": 1}}, "screeched": {"_count": 1, "": {"_count": 1}}, "detested": {"_count": 2, "Filch": {"_count": 1}, "tasting": {"_count": 1}}, "talked": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "wrote": {"_count": 6, "on": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "my": {"_count": 1}, "I": {"_count": 1}, "two": {"_count": 1}}, "doubted": {"_count": 8, "it": {"_count": 1}, "whether": {"_count": 3}, "Sirius": {"_count": 1}, "she": {"_count": 1}, "they": {"_count": 1}, "anyone": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "suddenly": {"_count": 12, "remembered": {"_count": 1}, "sat": {"_count": 1}, "heard": {"_count": 1}, "realized": {"_count": 4}, "felt": {"_count": 2}, "knew": {"_count": 1}, "understood": {"_count": 2}}, "entered": {"_count": 18, "the": {"_count": 9}, "looked": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 2}, "barking": {"_count": 1}, "it": {"_count": 1}, "your": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "avoided": {"_count": 3, "it": {"_count": 1}, "her": {"_count": 2}}, "looped": {"_count": 1, "and": {"_count": 1}}, "nevertheless": {"_count": 1, "kept": {"_count": 1}}, "hung": {"_count": 3, "upside": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}}, "fled": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "headed": {"_count": 8, "straight": {"_count": 2}, "for": {"_count": 1}, "through": {"_count": 1}, "off": {"_count": 2}, "around": {"_count": 1}, "out": {"_count": 1}}, "fainted": {"_count": 2, "": {"_count": 2}}, "swung": {"_count": 7, "himself": {"_count": 1}, "his": {"_count": 2}, "it": {"_count": 2}, "there": {"_count": 1}, "a": {"_count": 1}}, "fixed": {"_count": 3, "that": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "means": {"_count": 2, "to": {"_count": 1}, "by": {"_count": 1}}, "admitted": {"_count": 2, "drying": {"_count": 1}, "breeding": {"_count": 1}}, "crawled": {"_count": 4, "back": {"_count": 1}, "forward": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "raised": {"_count": 33, "himself": {"_count": 2}, "the": {"_count": 5}, "his": {"_count": 21}, "it": {"_count": 1}, "a": {"_count": 4}}, "clumsily": {"_count": 1, "fed": {"_count": 1}}, "hoped": {"_count": 9, "was": {"_count": 4}, "shed": {"_count": 1}, "that": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 1}, "childishly": {"_count": 1}}, "do": {"_count": 14, "": {"_count": 4}, "to": {"_count": 3}, "in": {"_count": 1}, "it": {"_count": 2}, "where": {"_count": 1}, "about": {"_count": 1}, "when": {"_count": 1}, "that": {"_count": 1}}, "ended": {"_count": 2, "on": {"_count": 1}, "up": {"_count": 1}}, "sneered": {"_count": 4, "": {"_count": 4}}, "doubled": {"_count": 1, "up": {"_count": 1}}, "keeps": {"_count": 6, "a": {"_count": 1}, "changing": {"_count": 1}, "doing": {"_count": 2}, "it": {"_count": 1}, "being": {"_count": 1}}, "survived": {"_count": 1, "that": {"_count": 1}}, "stepped": {"_count": 11, "out": {"_count": 3}, "into": {"_count": 1}, "across": {"_count": 1}, "onto": {"_count": 1}, "away": {"_count": 1}, "up": {"_count": 1}, "forward": {"_count": 2}, "over": {"_count": 1}}, "filled": {"_count": 4, "most": {"_count": 1}, "up": {"_count": 1}, "that": {"_count": 1}, "them": {"_count": 1}}, "bounced": {"_count": 1, "past": {"_count": 1}}, "spotted": {"_count": 9, "Justin": {"_count": 1}, "Lupin": {"_count": 1}, "three": {"_count": 1}, "it": {"_count": 1}, "Fleurs": {"_count": 1}, "Ron": {"_count": 1}, "Crabbe": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}}, "stomped": {"_count": 2, "out": {"_count": 1}, "toward": {"_count": 1}}, "Hermione": {"_count": 3, "and": {"_count": 3}}, "termed": {"_count": 1, "their": {"_count": 1}}, "consumed": {"_count": 1, "": {"_count": 1}}, "kicked": {"_count": 3, "off": {"_count": 1}, "him": {"_count": 1}, "out": {"_count": 1}}, "looks": {"_count": 10, "every": {"_count": 1}, "like": {"_count": 3}, "just": {"_count": 1}, "at": {"_count": 1}, "young": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}}, "drawled": {"_count": 2, "looking": {"_count": 1}, "": {"_count": 1}}, "shrank": {"_count": 1, "they": {"_count": 1}}, "ducked": {"_count": 5, "around": {"_count": 1}, "crept": {"_count": 1}, "down": {"_count": 1}, "just": {"_count": 1}, "and": {"_count": 1}}, "murdered": {"_count": 5, "Myrtle": {"_count": 1}, "her": {"_count": 1}, "my": {"_count": 1}, "last": {"_count": 1}, "the": {"_count": 1}}, "himself": {"_count": 15, "had": {"_count": 6}, "was": {"_count": 4}, "would": {"_count": 1}, "might": {"_count": 1}, "felt": {"_count": 1}, "drifted": {"_count": 1}, "most": {"_count": 1}}, "hurried": {"_count": 22, "down": {"_count": 2}, "off": {"_count": 6}, "them": {"_count": 1}, "past": {"_count": 1}, "out": {"_count": 3}, "up": {"_count": 1}, "toward": {"_count": 2}, "Ron": {"_count": 1}, "into": {"_count": 1}, "away": {"_count": 2}, "around": {"_count": 1}, "to": {"_count": 1}}, "halfshouted": {"_count": 1, "": {"_count": 1}}, "sighed": {"_count": 5, "special": {"_count": 1}, "as": {"_count": 1}, "deeply": {"_count": 1}, "Hagrid": {"_count": 1}, "in": {"_count": 1}}, "moved": {"_count": 16, "closer": {"_count": 1}, "his": {"_count": 2}, "all": {"_count": 1}, "faster": {"_count": 1}, "them": {"_count": 1}, "toward": {"_count": 1}, "so": {"_count": 1}, "Harry": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 2}, "beyond": {"_count": 1}, "up": {"_count": 1}, "a": {"_count": 1}, "forward": {"_count": 1}}, "chose": {"_count": 4, "the": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 2}}, "swept": {"_count": 8, "off": {"_count": 2}, "into": {"_count": 1}, "from": {"_count": 2}, "among": {"_count": 1}, "the": {"_count": 1}, "past": {"_count": 1}}, "seems": {"_count": 9, "very": {"_count": 1}, "to": {"_count": 6}, "in": {"_count": 1}, "glad": {"_count": 1}}, "focused": {"_count": 1, "on": {"_count": 1}}, "yearned": {"_count": 2, "to": {"_count": 2}}, "contented": {"_count": 3, "himself": {"_count": 3}}, "nodded": {"_count": 6, "": {"_count": 2}, "politely": {"_count": 1}, "at": {"_count": 1}, "importantly": {"_count": 1}, "covertly": {"_count": 1}}, "jumped": {"_count": 10, "backward": {"_count": 1}, "slightly": {"_count": 1}, "up": {"_count": 1}, "down": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 2}, "as": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}}, "cared": {"_count": 6, "for": {"_count": 1}, "abou": {"_count": 1}, "more": {"_count": 1}, "not": {"_count": 1}, "about": {"_count": 2}}, "protected": {"_count": 1, "me": {"_count": 1}}, "learned": {"_count": 3, "so": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}}, "sneaked": {"_count": 3, "up": {"_count": 2}, "off": {"_count": 1}}, "blocked": {"_count": 2, "Harry": {"_count": 1}, "threequarters": {"_count": 1}}, "tugged": {"_count": 1, "and": {"_count": 1}}, "breathed": {"_count": 6, "": {"_count": 2}, "glancing": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "back": {"_count": 1}}, "agreed": {"_count": 4, "": {"_count": 2}, "but": {"_count": 1}, "that": {"_count": 1}}, "wrenched": {"_count": 4, "open": {"_count": 2}, "his": {"_count": 1}, "himself": {"_count": 1}}, "pocketed": {"_count": 2, "Harrys": {"_count": 1}, "it": {"_count": 1}}, "recited": {"_count": 1, "watching": {"_count": 1}}, "suspects": {"_count": 2, "me": {"_count": 1}, "it": {"_count": 1}}, "certainly": {"_count": 5, "kept": {"_count": 1}, "wasnt": {"_count": 1}, "caught": {"_count": 1}, "would": {"_count": 1}, "likes": {"_count": 1}}, "waved": {"_count": 12, "the": {"_count": 3}, "back": {"_count": 1}, "them": {"_count": 2}, "his": {"_count": 3}, "a": {"_count": 2}, "to": {"_count": 1}}, "forced": {"_count": 10, "himself": {"_count": 4}, "it": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 1}, "them": {"_count": 1}}, "waited": {"_count": 3, "for": {"_count": 1}, "until": {"_count": 2}}, "shut": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 1}, "Mrs": {"_count": 1}, "it": {"_count": 1}}, "rammed": {"_count": 1, "it": {"_count": 1}}, "grabbed": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 1}, "Hermione": {"_count": 1}, "a": {"_count": 1}}, "so": {"_count": 5, "unwisely": {"_count": 1}, "wanted": {"_count": 1}, "rarely": {"_count": 1}, "much": {"_count": 1}, "disliked": {"_count": 1}}, "gathered": {"_count": 3, "together": {"_count": 1}, "up": {"_count": 1}, "about": {"_count": 1}}, "ttook": {"_count": 1, "me": {"_count": 1}}, "whod": {"_count": 1, "made": {"_count": 1}}, "resurfaced": {"_count": 1, "as": {"_count": 1}}, "now": {"_count": 29, "": {"_count": 7}, "felt": {"_count": 2}, "had": {"_count": 3}, "saw": {"_count": 2}, "concentrated": {"_count": 1}, "needed": {"_count": 1}, "recognized": {"_count": 1}, "understood": {"_count": 1}, "happy": {"_count": 1}, "smoothed": {"_count": 1}, "kept": {"_count": 1}, "pointed": {"_count": 1}, "hated": {"_count": 1}, "bore": {"_count": 1}, "knew": {"_count": 2}, "carried": {"_count": 1}, "occupied": {"_count": 1}, "realized": {"_count": 1}}, "transferred": {"_count": 1, "some": {"_count": 1}}, "intended": {"_count": 4, "to": {"_count": 2}, "but": {"_count": 1}, "the": {"_count": 1}}, "lunged": {"_count": 1, "at": {"_count": 1}}, "also": {"_count": 9, "happened": {"_count": 1}, "ran": {"_count": 1}, "felt": {"_count": 1}, "bought": {"_count": 1}, "decided": {"_count": 1}, "caught": {"_count": 1}, "seemed": {"_count": 2}, "wanted": {"_count": 1}}, "unscrewed": {"_count": 1, "the": {"_count": 1}}, "belonged": {"_count": 5, "to": {"_count": 2}, "": {"_count": 2}, "that": {"_count": 1}}, "removed": {"_count": 4, "her": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 2}}, "reckons": {"_count": 3, "I": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "seized": {"_count": 15, "the": {"_count": 4}, "Harry": {"_count": 1}, "a": {"_count": 2}, "Malfoys": {"_count": 1}, "Harrys": {"_count": 1}, "one": {"_count": 2}, "his": {"_count": 2}, "her": {"_count": 1}, "Hermiones": {"_count": 1}}, "buckled": {"_count": 2, "tightly": {"_count": 1}, "in": {"_count": 1}}, "bellowed": {"_count": 18, "": {"_count": 5}, "and": {"_count": 2}, "striding": {"_count": 1}, "at": {"_count": 2}, "finally": {"_count": 1}, "pointing": {"_count": 3}, "in": {"_count": 1}, "SIRIUS": {"_count": 1}, "writhing": {"_count": 1}, "through": {"_count": 1}}, "simply": {"_count": 9, "be": {"_count": 1}, "turned": {"_count": 1}, "dipped": {"_count": 1}, "sat": {"_count": 1}, "refused": {"_count": 1}, "could": {"_count": 2}, "knew": {"_count": 1}, "listened": {"_count": 1}}, "bewitched": {"_count": 1, "the": {"_count": 1}}, "flung": {"_count": 10, "out": {"_count": 1}, "himself": {"_count": 6}, "his": {"_count": 2}, "open": {"_count": 1}}, "rolled": {"_count": 8, "back": {"_count": 1}, "over": {"_count": 5}, "up": {"_count": 1}, "behind": {"_count": 1}}, "werent": {"_count": 1, "when": {"_count": 1}}, "bowed": {"_count": 3, "himself": {"_count": 1}, "his": {"_count": 1}, "low": {"_count": 1}}, "slumped": {"_count": 2, "back": {"_count": 1}, "over": {"_count": 1}}, "been": {"_count": 13, "able": {"_count": 2}, "seeing": {"_count": 1}, "up": {"_count": 1}, "less": {"_count": 1}, "coming": {"_count": 1}, "doing": {"_count": 1}, "that": {"_count": 1}, "solid": {"_count": 1}, "telling": {"_count": 1}, "going": {"_count": 1}, "like": {"_count": 1}, "caught": {"_count": 1}}, "fancied": {"_count": 3, "": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}}, "pleased": {"_count": 1, "as": {"_count": 1}}, "glimpsed": {"_count": 6, "a": {"_count": 1}, "Cho": {"_count": 1}, "another": {"_count": 1}, "the": {"_count": 2}, "two": {"_count": 1}}, "Ron": {"_count": 13, "and": {"_count": 13}}, "recognized": {"_count": 17, "them": {"_count": 2}, "the": {"_count": 2}, "": {"_count": 1}, "as": {"_count": 3}, "with": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 2}, "Lunas": {"_count": 1}, "many": {"_count": 1}, "Pansy": {"_count": 1}, "her": {"_count": 1}, "from": {"_count": 1}}, "insists": {"_count": 1, "on": {"_count": 1}}, "minds": {"_count": 1, "the": {"_count": 1}}, "teaches": {"_count": 3, "": {"_count": 1}, "you": {"_count": 1}, "what": {"_count": 1}}, "wakes": {"_count": 1, "Ill": {"_count": 1}}, "played": {"_count": 2, "Seeker": {"_count": 1}, "in": {"_count": 1}}, "knocked": {"_count": 8, "Crookshankss": {"_count": 1}, "on": {"_count": 4}, "three": {"_count": 1}, "himself": {"_count": 1}, "the": {"_count": 1}}, "makes": {"_count": 1, "one": {"_count": 1}}, "gone": {"_count": 5, "to": {"_count": 2}, "": {"_count": 1}, "Kreacher": {"_count": 1}, "was": {"_count": 1}}, "smirked": {"_count": 3, "at": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 1}}, "need": {"_count": 7, "": {"_count": 2}, "it": {"_count": 1}, "not": {"_count": 3}, "another": {"_count": 1}}, "perhaps": {"_count": 2, "spend": {"_count": 1}, "ambush": {"_count": 1}}, "continued": {"_count": 16, "I": {"_count": 1}, "to": {"_count": 9}, "wiping": {"_count": 1}, "addressing": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}, "pointing": {"_count": 1}, "Arthur": {"_count": 1}}, "buried": {"_count": 2, "his": {"_count": 1}, "MadEye": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "bows": {"_count": 1, "back": {"_count": 1}}, "doesn": {"_count": 3, "bow": {"_count": 1}, "really": {"_count": 1}, "know": {"_count": 1}}, "won": {"_count": 4, "like": {"_count": 2}, "hurt": {"_count": 1}, "it": {"_count": 1}}, "preferred": {"_count": 4, "the": {"_count": 2}, "to": {"_count": 1}, "objects": {"_count": 1}}, "stirred": {"_count": 1, "his": {"_count": 1}}, "stuck": {"_count": 1, "his": {"_count": 1}}, "reappeared": {"_count": 2, "suddenly": {"_count": 1}, "looking": {"_count": 1}}, "wiggled": {"_count": 1, "his": {"_count": 1}}, "almost": {"_count": 6, "always": {"_count": 1}, "fell": {"_count": 1}, "screamed": {"_count": 1}, "laughed": {"_count": 1}, "forgot": {"_count": 1}, "welcomed": {"_count": 1}}, "whirled": {"_count": 4, "upright": {"_count": 1}, "his": {"_count": 1}, "around": {"_count": 1}, "it": {"_count": 1}}, "bullied": {"_count": 1, "Neville": {"_count": 1}}, "become": {"_count": 2, "a": {"_count": 2}}, "spent": {"_count": 5, "in": {"_count": 2}, "all": {"_count": 1}, "the": {"_count": 1}, "alone": {"_count": 1}}, "addressed": {"_count": 3, "his": {"_count": 1}, "reporters": {"_count": 1}, "himself": {"_count": 1}}, "pounced": {"_count": 1, "": {"_count": 1}}, "mad": {"_count": 2, "": {"_count": 2}}, "you": {"_count": 1, "know": {"_count": 1}}, "adopted": {"_count": 1, "an": {"_count": 1}}, "attacked": {"_count": 5, "": {"_count": 1}, "from": {"_count": 1}, "somebody": {"_count": 1}, "me": {"_count": 1}, "Umbridge": {"_count": 1}}, "urged": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "squinted": {"_count": 5, "back": {"_count": 1}, "at": {"_count": 1}, "down": {"_count": 2}, "over": {"_count": 1}}, "became": {"_count": 17, "aware": {"_count": 5}, "properly": {"_count": 1}, "as": {"_count": 1}, "flustered": {"_count": 1}, "more": {"_count": 1}, "Minister": {"_count": 1}, "immediately": {"_count": 1}, "so": {"_count": 1}, "disenchanted": {"_count": 1}, "downright": {"_count": 1}, "later": {"_count": 1}, "engrossed": {"_count": 1}, "violent": {"_count": 1}}, "flying": {"_count": 1, "": {"_count": 1}}, "magicked": {"_count": 1, "you": {"_count": 1}}, "quickly": {"_count": 3, "cast": {"_count": 1}, "hid": {"_count": 1}, "opened": {"_count": 1}}, "actually": {"_count": 11, "died": {"_count": 1}, "did": {"_count": 1}, "turned": {"_count": 1}, "managed": {"_count": 1}, "performed": {"_count": 1}, "got": {"_count": 1}, "made": {"_count": 2}, "said": {"_count": 1}, "asked": {"_count": 1}, "give": {"_count": 1}}, "definitely": {"_count": 2, "needed": {"_count": 1}, "wanted": {"_count": 1}}, "hauled": {"_count": 1, "us": {"_count": 1}}, "edged": {"_count": 4, "out": {"_count": 1}, "into": {"_count": 1}, "around": {"_count": 1}, "his": {"_count": 1}}, "lost": {"_count": 11, "count": {"_count": 1}, "his": {"_count": 5}, "you": {"_count": 1}, "the": {"_count": 1}, "no": {"_count": 1}, "sight": {"_count": 1}, "control": {"_count": 1}}, "alerted": {"_count": 1, "James": {"_count": 1}}, "Black": {"_count": 1, "had": {"_count": 1}}, "used": {"_count": 14, "ter": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 3}, "to": {"_count": 5}, "three": {"_count": 1}, "it": {"_count": 1}, "Nagini": {"_count": 1}, "Legilimency": {"_count": 1}}, "wasn": {"_count": 2, "upset": {"_count": 1}, "dangling": {"_count": 1}}, "givin": {"_count": 1, "it": {"_count": 1}}, "dve": {"_count": 2, "pitched": {"_count": 1}, "liked": {"_count": 1}}, "isnt": {"_count": 8, "trying": {"_count": 1}, "wanting": {"_count": 1}, "": {"_count": 2}, "speaking": {"_count": 1}, "down": {"_count": 1}, "working": {"_count": 1}, "but": {"_count": 1}}, "realize": {"_count": 4, "he": {"_count": 1}, "that": {"_count": 1}, "from": {"_count": 1}, "how": {"_count": 1}}, "likes": {"_count": 9, "you": {"_count": 2}, "but": {"_count": 1}, "work": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "said": {"_count": 1}, "about": {"_count": 1}, "and": {"_count": 1}}, "mightve": {"_count": 3, "heard": {"_count": 1}, "wanted": {"_count": 1}, "got": {"_count": 1}}, "advised": {"_count": 3, "the": {"_count": 1}, "me": {"_count": 1}, "her": {"_count": 1}}, "promised": {"_count": 2, "": {"_count": 1}, "my": {"_count": 1}}, "arrived": {"_count": 13, "but": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 4}, "to": {"_count": 1}, "there": {"_count": 1}, "outside": {"_count": 1}, "angry": {"_count": 1}, "in": {"_count": 1}}, "lit": {"_count": 1, "the": {"_count": 1}}, "heaved": {"_count": 2, "onto": {"_count": 1}, "Colin": {"_count": 1}}, "settled": {"_count": 1, "on": {"_count": 1}}, "sank": {"_count": 7, "into": {"_count": 2}, "onto": {"_count": 1}, "back": {"_count": 1}, "backward": {"_count": 1}, "to": {"_count": 2}}, "fought": {"_count": 10, "to": {"_count": 4}, "for": {"_count": 1}, "so": {"_count": 2}, "Lupin": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "probably": {"_count": 4, "didnt": {"_count": 1}, "couldnt": {"_count": 1}, "felt": {"_count": 1}, "would": {"_count": 1}}, "outstripped": {"_count": 1, "it": {"_count": 1}}, "stooped": {"_count": 1, "down": {"_count": 1}}, "look": {"_count": 2, "left": {"_count": 1}, "Harry": {"_count": 1}}, "bustled": {"_count": 1, "off": {"_count": 1}}, "stalked": {"_count": 2, "away": {"_count": 1}, "out": {"_count": 1}}, "whooshed": {"_count": 1, "past": {"_count": 1}}, "whipped": {"_count": 1, "out": {"_count": 1}}, "comes": {"_count": 6, "now": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}}, "sped": {"_count": 4, "up": {"_count": 1}, "through": {"_count": 1}, "past": {"_count": 1}, "back": {"_count": 1}}, "fumbled": {"_count": 3, "with": {"_count": 2}, "the": {"_count": 1}}, "scampered": {"_count": 1, "": {"_count": 1}}, "run": {"_count": 1, "": {"_count": 1}}, "wouldve": {"_count": 1, "met": {"_count": 1}}, "smoothed": {"_count": 2, "it": {"_count": 1}, "flat": {"_count": 1}}, "tore": {"_count": 4, "back": {"_count": 1}, "it": {"_count": 2}, "after": {"_count": 1}}, "hid": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "after": {"_count": 1}}, "bent": {"_count": 4, "down": {"_count": 2}, "over": {"_count": 1}, "upon": {"_count": 1}}, "consider": {"_count": 1, "the": {"_count": 1}}, "locked": {"_count": 2, "it": {"_count": 1}, "up": {"_count": 1}}, "glanced": {"_count": 15, "around": {"_count": 1}, "at": {"_count": 3}, "back": {"_count": 2}, "over": {"_count": 3}, "up": {"_count": 1}, "maliciously": {"_count": 1}, "hopefully": {"_count": 1}, "down": {"_count": 1}, "from": {"_count": 1}, "into": {"_count": 1}}, "hold": {"_count": 1, "Malfoy": {"_count": 1}}, "lifted": {"_count": 8, "it": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "down": {"_count": 1}, "Mundungus": {"_count": 1}, "Hermione": {"_count": 1}}, "appeared": {"_count": 11, "to": {"_count": 5}, "the": {"_count": 1}, "not": {"_count": 1}, "simply": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}, "One": {"_count": 1}}, "clambered": {"_count": 3, "back": {"_count": 1}, "over": {"_count": 1}, "out": {"_count": 1}}, "jabbed": {"_count": 2, "his": {"_count": 1}, "at": {"_count": 1}}, "stumbled": {"_count": 3, "through": {"_count": 1}, "There": {"_count": 1}, "and": {"_count": 1}}, "throw": {"_count": 1, "himself": {"_count": 1}}, "oughta": {"_count": 1, "see": {"_count": 1}}, "writhed": {"_count": 1, "in": {"_count": 1}}, "keeled": {"_count": 3, "over": {"_count": 3}}, "croaked": {"_count": 8, "pointing": {"_count": 1}, "": {"_count": 7}}, "clung": {"_count": 4, "on": {"_count": 2}, "to": {"_count": 1}, "tight": {"_count": 1}}, "aimed": {"_count": 3, "a": {"_count": 1}, "another": {"_count": 1}, "high": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "shown": {"_count": 1, "himself": {"_count": 1}}, "gazed": {"_count": 7, "intently": {"_count": 2}, "at": {"_count": 2}, "down": {"_count": 2}, "out": {"_count": 1}}, "overbalanced": {"_count": 1, "and": {"_count": 1}}, "cut": {"_count": 3, "it": {"_count": 2}, "up": {"_count": 1}}, "transformed": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "blew": {"_count": 3, "apart": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 1}}, "trusted": {"_count": 5, "me": {"_count": 1}, "Snape": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}, "Bellatrix": {"_count": 1}}, "stole": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "whatever": {"_count": 1}}, "bit": {"_count": 2, "himself": {"_count": 1}, "hard": {"_count": 1}}, "fake": {"_count": 1, "his": {"_count": 1}}, "scrambled": {"_count": 7, "around": {"_count": 1}, "up": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 3}, "from": {"_count": 1}}, "clutched": {"_count": 4, "his": {"_count": 2}, "Cedric": {"_count": 1}, "it": {"_count": 1}}, "pounded": {"_count": 4, "away": {"_count": 1}, "down": {"_count": 1}, "across": {"_count": 1}, "the": {"_count": 1}}, "groped": {"_count": 6, "in": {"_count": 2}, "his": {"_count": 1}, "hopelessly": {"_count": 1}, "around": {"_count": 2}}, "once": {"_count": 4, "tried": {"_count": 1}, "long": {"_count": 1}, "told": {"_count": 1}, "knew": {"_count": 1}}, "escaped": {"_count": 2, "when": {"_count": 1}, "nightmares": {"_count": 1}}, "consulted": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "talking": {"_count": 3, "about": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}}, "tell": {"_count": 7, "us": {"_count": 1}, "him": {"_count": 2}, "Slughorn": {"_count": 1}, "you": {"_count": 2}, "the": {"_count": 1}}, "placed": {"_count": 11, "his": {"_count": 3}, "the": {"_count": 4}, "carefully": {"_count": 1}, "an": {"_count": 1}, "gently": {"_count": 1}, "upon": {"_count": 1}}, "slipped": {"_count": 9, "through": {"_count": 1}, "a": {"_count": 1}, "sideways": {"_count": 1}, "off": {"_count": 1}, "his": {"_count": 1}, "for": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 1}, "the": {"_count": 1}}, "mighta": {"_count": 2, "met": {"_count": 1}, "taken": {"_count": 1}}, "er": {"_count": 1, "accidentally": {"_count": 1}}, "helps": {"_count": 1, "Voldemort": {"_count": 1}}, "no": {"_count": 6, "longer": {"_count": 5}, "doubt": {"_count": 1}}, "to": {"_count": 6, "do": {"_count": 1}, "know": {"_count": 2}, "lecture": {"_count": 1}, "take": {"_count": 1}, "stop": {"_count": 1}}, "halfexpecting": {"_count": 1, "to": {"_count": 1}}, "write": {"_count": 1, "": {"_count": 1}}, "somehow": {"_count": 3, "didnt": {"_count": 1}, "thought": {"_count": 1}, "managed": {"_count": 1}}, "rang": {"_count": 1, "the": {"_count": 1}}, "tended": {"_count": 1, "to": {"_count": 1}}, "waddled": {"_count": 3, "as": {"_count": 1}, "out": {"_count": 1}, "back": {"_count": 1}}, "next": {"_count": 2, "spoke": {"_count": 1}, "looked": {"_count": 1}}, "eat": {"_count": 1, "it": {"_count": 1}}, "annoys": {"_count": 1, "Errol": {"_count": 1}}, "helped": {"_count": 6, "himself": {"_count": 1}, "murder": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 2}, "him": {"_count": 1}}, "remained": {"_count": 4, "silent": {"_count": 1}, "sitting": {"_count": 1}, "quite": {"_count": 1}, "ten": {"_count": 1}}, "brandished": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "surely": {"_count": 1, "had": {"_count": 1}}, "trimmed": {"_count": 1, "it": {"_count": 1}}, "listen": {"_count": 1, "": {"_count": 1}}, "repaired": {"_count": 1, "them": {"_count": 1}}, "chanced": {"_count": 1, "a": {"_count": 1}}, "catch": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 3, "to": {"_count": 3}}, "Disapparated": {"_count": 4, "with": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "registered": {"_count": 1, "one": {"_count": 1}}, "spun": {"_count": 2, "on": {"_count": 2}}, "panted": {"_count": 14, "almost": {"_count": 1}, "coming": {"_count": 1}, "at": {"_count": 1}, "pointing": {"_count": 1}, "": {"_count": 4}, "his": {"_count": 1}, "staring": {"_count": 1}, "as": {"_count": 1}, "disentangling": {"_count": 1}, "clutching": {"_count": 1}, "massaging": {"_count": 1}}, "as": {"_count": 2, "good": {"_count": 1}, "Voldemort": {"_count": 1}}, "reply": {"_count": 1, "": {"_count": 1}}, "stuffed": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "nutter": {"_count": 1}}, "hugged": {"_count": 1, "Ginny": {"_count": 1}}, "or": {"_count": 5, "she": {"_count": 5}}, "crowed": {"_count": 1, "": {"_count": 1}}, "plunged": {"_count": 2, "his": {"_count": 2}}, "guessed": {"_count": 3, "they": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}}, "trapped": {"_count": 1, "it": {"_count": 1}}, "launched": {"_count": 4, "himself": {"_count": 3}, "into": {"_count": 1}}, "damn": {"_count": 1, "near": {"_count": 1}}, "talks": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "hobbled": {"_count": 1, "out": {"_count": 1}}, "terrified": {"_count": 1, "a": {"_count": 1}}, "flatly": {"_count": 1, "refused": {"_count": 1}}, "indicated": {"_count": 7, "the": {"_count": 3}, "a": {"_count": 1}, "another": {"_count": 1}, "Lupin": {"_count": 1}, "his": {"_count": 1}}, "surveyed": {"_count": 1, "Harry": {"_count": 1}}, "The": {"_count": 1, "door": {"_count": 1}}, "insisted": {"_count": 2, "on": {"_count": 1}, "upon": {"_count": 1}}, "puts": {"_count": 1, "up": {"_count": 1}}, "desisted": {"_count": 1, "": {"_count": 1}}, "wheeled": {"_count": 2, "around": {"_count": 2}}, "misses": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "studying": {"_count": 1, "or": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "jogged": {"_count": 1, "along": {"_count": 1}}, "an": {"_count": 1, "age": {"_count": 1}}, "like": {"_count": 4, "Madame": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "named": {"_count": 2, "names": {"_count": 1}, "the": {"_count": 1}}, "convinced": {"_count": 1, "the": {"_count": 1}}, "awoke": {"_count": 3, "on": {"_count": 1}, "next": {"_count": 2}}, "seriously": {"_count": 1, "considered": {"_count": 1}}, "overheard": {"_count": 3, "them": {"_count": 1}, "me": {"_count": 1}, "snatches": {"_count": 1}}, "best": {"_count": 1, "at": {"_count": 1}}, "mightnt": {"_count": 1, "just": {"_count": 1}}, "not": {"_count": 9, "swerved": {"_count": 1}, "Potter": {"_count": 1}, "see": {"_count": 1}, "only": {"_count": 1}, "for": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 2}, "known": {"_count": 1}}, "swerved": {"_count": 1, "to": {"_count": 1}}, "zoomed": {"_count": 4, "around": {"_count": 1}, "along": {"_count": 1}, "past": {"_count": 1}, "away": {"_count": 1}}, "dodged": {"_count": 2, "": {"_count": 1}, "Harrys": {"_count": 1}}, "Transfigured": {"_count": 1, "a": {"_count": 1}}, "playing": {"_count": 2, "at": {"_count": 1}, "with": {"_count": 1}}, "personally": {"_count": 1, "had": {"_count": 1}}, "appreciated": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "finishes": {"_count": 1, "this": {"_count": 1}}, "rushed": {"_count": 1, "over": {"_count": 1}}, "refused": {"_count": 4, "": {"_count": 1}, "to": {"_count": 2}, "my": {"_count": 1}}, "suspected": {"_count": 3, "had": {"_count": 1}, "Angelinas": {"_count": 1}, "that": {"_count": 1}}, "shelled": {"_count": 1, "salamander": {"_count": 1}}, "first": {"_count": 1, "arrived": {"_count": 1}}, "deduced": {"_count": 1, "from": {"_count": 1}}, "received": {"_count": 4, "bottom": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "demanded": {"_count": 9, "": {"_count": 4}, "looking": {"_count": 1}, "staring": {"_count": 1}, "of": {"_count": 2}, "that": {"_count": 1}}, "cute": {"_count": 1, "": {"_count": 1}}, "neared": {"_count": 2, "the": {"_count": 2}}, "come": {"_count": 6, "": {"_count": 1}, "straight": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}, "back": {"_count": 1}, "into": {"_count": 1}}, "dismissed": {"_count": 1, "her": {"_count": 1}}, "conjured": {"_count": 1, "a": {"_count": 1}}, "led": {"_count": 10, "her": {"_count": 1}, "the": {"_count": 6}, "them": {"_count": 1}, "Hermione": {"_count": 1}, "a": {"_count": 1}}, "he": {"_count": 5, "said": {"_count": 1}, "remembered": {"_count": 1}, "likes": {"_count": 1}, "doesnt": {"_count": 1}, "didnt": {"_count": 1}}, "slouched": {"_count": 1, "off": {"_count": 1}}, "laughed": {"_count": 3, "airily": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}}, "brushed": {"_count": 3, "past": {"_count": 1}, "it": {"_count": 1}, "accidentally": {"_count": 1}}, "annoyed": {"_count": 2, "me": {"_count": 2}}, "trying": {"_count": 1, "to": {"_count": 1}}, "hired": {"_count": 1, "Alastor": {"_count": 1}}, "avoiding": {"_count": 1, "us": {"_count": 1}}, "ignored": {"_count": 4, "them": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 2}}, "Bozo": {"_count": 1, "": {"_count": 1}}, "wiped": {"_count": 3, "them": {"_count": 1}, "a": {"_count": 1}, "sweat": {"_count": 1}}, "located": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "trod": {"_count": 2, "water": {"_count": 1}, "on": {"_count": 1}}, "alone": {"_count": 5, "could": {"_count": 2}, "among": {"_count": 1}, "knows": {"_count": 1}, "had": {"_count": 1}}, "dare": {"_count": 2, "say": {"_count": 1}, "move": {"_count": 1}}, "owed": {"_count": 2, "Moody": {"_count": 1}, "an": {"_count": 1}}, "think": {"_count": 10, "Snape": {"_count": 1}, "that": {"_count": 1}, "Dumbledore": {"_count": 1}, "himself": {"_count": 1}, "hell": {"_count": 1}, "hes": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 1}}, "Banished": {"_count": 1, "a": {"_count": 1}}, "faced": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "lights": {"_count": 1, "the": {"_count": 1}}, "sprinted": {"_count": 8, "along": {"_count": 2}, "down": {"_count": 1}, "up": {"_count": 1}, "back": {"_count": 1}, "toward": {"_count": 3}}, "discovered": {"_count": 7, "it": {"_count": 1}, "the": {"_count": 3}, "in": {"_count": 1}, "how": {"_count": 1}, "that": {"_count": 1}}, "disturbed": {"_count": 1, "the": {"_count": 1}}, "swam": {"_count": 1, "past": {"_count": 1}}, "mouthed": {"_count": 1, "looking": {"_count": 1}}, "most": {"_count": 2, "certainly": {"_count": 1}, "prized": {"_count": 1}}, "assured": {"_count": 4, "Padma": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "me": {"_count": 1}}, "reverted": {"_count": 1, "to": {"_count": 1}}, "bestows": {"_count": 2, "his": {"_count": 2}}, "wishes": {"_count": 1, "he": {"_count": 1}}, "feels": {"_count": 4, "the": {"_count": 1}, "no": {"_count": 1}, "it": {"_count": 1}, "lonely": {"_count": 1}}, "sacked": {"_count": 2, "her": {"_count": 2}}, "treats": {"_count": 1, "his": {"_count": 1}}, "wormed": {"_count": 1, "his": {"_count": 1}}, "trusts": {"_count": 3, "anyone": {"_count": 1}, "Snape": {"_count": 1}, "you": {"_count": 1}}, "vith": {"_count": 1, "your": {"_count": 1}}, "quickened": {"_count": 1, "his": {"_count": 1}}, "changes": {"_count": 1, "and": {"_count": 1}}, "peered": {"_count": 2, "around": {"_count": 1}, "over": {"_count": 1}}, "Hagrid": {"_count": 2, "growled": {"_count": 1}, "broke": {"_count": 1}}, "accuse": {"_count": 1, "Dumbledore": {"_count": 1}}, "couldve": {"_count": 5, "gotten": {"_count": 1}, "beaten": {"_count": 1}, "played": {"_count": 1}, "got": {"_count": 2}}, "folded": {"_count": 1, "up": {"_count": 1}}, "swished": {"_count": 1, "his": {"_count": 1}}, "specialized": {"_count": 1, "in": {"_count": 1}}, "rejoined": {"_count": 2, "our": {"_count": 1}, "the": {"_count": 1}}, "screamed": {"_count": 3, "up": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "are": {"_count": 1, "connected": {"_count": 1}}, "lived": {"_count": 6, "in": {"_count": 1}, "here": {"_count": 1}, "dare": {"_count": 1}, "or": {"_count": 1}, "working": {"_count": 1}, "alone": {"_count": 1}}, "listened": {"_count": 3, "to": {"_count": 2}, "outside": {"_count": 1}}, "attempted": {"_count": 11, "to": {"_count": 9}, "it": {"_count": 2}}, "remember": {"_count": 1, "that": {"_count": 1}}, "again": {"_count": 1, "found": {"_count": 1}}, "double": {"_count": 1, "back": {"_count": 1}}, "performed": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "approached": {"_count": 10, "": {"_count": 4}, "the": {"_count": 2}, "Luna": {"_count": 1}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "her": {"_count": 1}}, "retched": {"_count": 1, "and": {"_count": 1}}, "see": {"_count": 1, "where": {"_count": 1}}, "paced": {"_count": 5, "looking": {"_count": 1}, "his": {"_count": 2}, "consumed": {"_count": 1}, "slowly": {"_count": 1}}, "abandoned": {"_count": 1, "her": {"_count": 1}}, "brought": {"_count": 5, "me": {"_count": 2}, "her": {"_count": 1}, "all": {"_count": 1}, "two": {"_count": 1}}, "foolishly": {"_count": 1, "stopped": {"_count": 1}}, "meet": {"_count": 1, "there": {"_count": 1}}, "touched": {"_count": 7, "the": {"_count": 3}, "my": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "thrust": {"_count": 3, "roughly": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "connected": {"_count": 1, "with": {"_count": 1}}, "feared": {"_count": 4, "it": {"_count": 1}, "but": {"_count": 1}, "Dumbledore": {"_count": 1}, "me": {"_count": 1}}, "zigzagged": {"_count": 1, "behind": {"_count": 1}}, "tightened": {"_count": 1, "his": {"_count": 1}}, "treat": {"_count": 1, "them": {"_count": 1}}, "forgive": {"_count": 1, "them": {"_count": 1}}, "forgave": {"_count": 1, "the": {"_count": 1}}, "hurt": {"_count": 1, "them": {"_count": 1}}, "sensed": {"_count": 3, "that": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "asks": {"_count": 1, "them": {"_count": 1}}, "lacks": {"_count": 1, "proper": {"_count": 1}}, "gestured": {"_count": 3, "toward": {"_count": 1}, "to": {"_count": 2}}, "valued": {"_count": 1, "fair": {"_count": 1}}, "strayed": {"_count": 1, "across": {"_count": 1}}, "followed": {"_count": 2, "Fred": {"_count": 1}, "Bill": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "vanished": {"_count": 8, "into": {"_count": 1}, "": {"_count": 4}, "next": {"_count": 1}, "completely": {"_count": 1}, "downstairs": {"_count": 1}}, "proved": {"_count": 1, "himself": {"_count": 1}}, "soon": {"_count": 2, "came": {"_count": 2}}, "say": {"_count": 9, "you": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 4}, "prefers": {"_count": 1}, "something": {"_count": 1}, "to": {"_count": 1}}, "use": {"_count": 2, "his": {"_count": 1}, "another": {"_count": 1}}, "works": {"_count": 4, "at": {"_count": 1}, "for": {"_count": 2}, "is": {"_count": 1}}, "all": {"_count": 2, "right": {"_count": 1}, "empty": {"_count": 1}}, "Dumbledore": {"_count": 1, "intended": {"_count": 1}}, "inflated": {"_count": 1, "himself": {"_count": 1}}, "limped": {"_count": 2, "past": {"_count": 1}, "to": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "popped": {"_count": 1, "out": {"_count": 1}}, "founded": {"_count": 1, "it": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "Percy": {"_count": 1, "knew": {"_count": 1}}, "packed": {"_count": 1, "his": {"_count": 1}}, "meets": {"_count": 1, "Dad": {"_count": 1}}, "loves": {"_count": 1, "being": {"_count": 1}}, "hoisted": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "hears": {"_count": 2, "things": {"_count": 1}, "": {"_count": 1}}, "being": {"_count": 1, "so": {"_count": 1}}, "carries": {"_count": 1, "on": {"_count": 1}}, "fully": {"_count": 1, "expected": {"_count": 1}}, "distinctly": {"_count": 3, "heard": {"_count": 2}, "saw": {"_count": 1}}, "shuffled": {"_count": 2, "out": {"_count": 1}, "slowly": {"_count": 1}}, "realizes": {"_count": 3, "we": {"_count": 1}, "He": {"_count": 1}, "the": {"_count": 1}}, "takes": {"_count": 2, "it": {"_count": 1}, "no": {"_count": 1}}, "tells": {"_count": 3, "them": {"_count": 1}, "me": {"_count": 1}, "you": {"_count": 1}}, "often": {"_count": 2, "saw": {"_count": 1}, "felt": {"_count": 1}}, "dialed": {"_count": 1, "the": {"_count": 1}}, "compromised": {"_count": 1, "by": {"_count": 1}}, "steered": {"_count": 1, "him": {"_count": 1}}, "extracted": {"_count": 1, "a": {"_count": 1}}, "cricked": {"_count": 1, "his": {"_count": 1}}, "produced": {"_count": 1, "a": {"_count": 1}}, "completely": {"_count": 1, "ignored": {"_count": 1}}, "marched": {"_count": 3, "past": {"_count": 1}, "forward": {"_count": 1}, "out": {"_count": 1}}, "waiting": {"_count": 1, "outside": {"_count": 1}}, "pressed": {"_count": 8, "the": {"_count": 1}, "on": {"_count": 3}, "his": {"_count": 3}, "a": {"_count": 1}}, "poked": {"_count": 3, "his": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "clapped": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 2}}, "sincerely": {"_count": 2, "regretted": {"_count": 1}, "hoped": {"_count": 1}}, "chooses": {"_count": 2, "them": {"_count": 1}, "not": {"_count": 1}}, "wrap": {"_count": 1, "it": {"_count": 1}}, "loaded": {"_count": 1, "up": {"_count": 1}}, "then": {"_count": 2, "tore": {"_count": 1}, "": {"_count": 1}}, "copped": {"_count": 1, "it": {"_count": 1}}, "dressed": {"_count": 2, "at": {"_count": 1}, "particularly": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "gritted": {"_count": 1, "his": {"_count": 1}}, "neither": {"_count": 1, "noticed": {"_count": 1}}, "desired": {"_count": 1, "nothing": {"_count": 1}}, "loathed": {"_count": 3, "everything": {"_count": 1}, "the": {"_count": 1}, "so": {"_count": 1}}, "wove": {"_count": 1, "his": {"_count": 1}}, "stays": {"_count": 1, "in": {"_count": 1}}, "deliberately": {"_count": 1, "dropped": {"_count": 1}}, "flicked": {"_count": 2, "his": {"_count": 2}}, "dueled": {"_count": 2, "with": {"_count": 1}, "Grindelwald": {"_count": 1}}, "piled": {"_count": 1, "his": {"_count": 1}}, "nor": {"_count": 1, "Ron": {"_count": 1}}, "calls": {"_count": 1, "Hagrid": {"_count": 1}}, "written": {"_count": 1, "his": {"_count": 1}}, "released": {"_count": 3, "Harry": {"_count": 2}, "her": {"_count": 1}}, "controlled": {"_count": 1, "Quirrell": {"_count": 1}}, "possessed": {"_count": 4, "Quirrell": {"_count": 1}, "and": {"_count": 2}, "you": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "traipsed": {"_count": 1, "off": {"_count": 1}}, "dipped": {"_count": 1, "his": {"_count": 1}}, "any": {"_count": 1, "good": {"_count": 1}}, "considered": {"_count": 4, "accidentallyonpurpose": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "Bellatrix": {"_count": 1}}, "lousy": {"_count": 1, "": {"_count": 1}}, "delivered": {"_count": 1, "a": {"_count": 1}}, "treated": {"_count": 1, "her": {"_count": 1}}, "forgot": {"_count": 2, "his": {"_count": 2}}, "nudged": {"_count": 1, "Ron": {"_count": 1}}, "messed": {"_count": 1, "up": {"_count": 1}}, "recounted": {"_count": 2, "the": {"_count": 1}, "what": {"_count": 1}}, "saved": {"_count": 2, "that": {"_count": 1}, "every": {"_count": 1}}, "doodled": {"_count": 1, "idly": {"_count": 1}}, "mean": {"_count": 2, "the": {"_count": 1}, "Snape": {"_count": 1}}, "replaced": {"_count": 3, "it": {"_count": 1}, "his": {"_count": 1}, "Mr": {"_count": 1}}, "toweled": {"_count": 1, "his": {"_count": 1}}, "uses": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "feeds": {"_count": 1, "secretly": {"_count": 1}}, "dwelled": {"_count": 2, "instead": {"_count": 1}, "on": {"_count": 1}}, "retorted": {"_count": 1, "which": {"_count": 1}}, "drops": {"_count": 1, "the": {"_count": 1}}, "backed": {"_count": 3, "away": {"_count": 2}, "into": {"_count": 1}}, "abandon": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "insulted": {"_count": 1, "every": {"_count": 1}}, "quite": {"_count": 2, "agreed": {"_count": 1}, "forgot": {"_count": 1}}, "returns": {"_count": 1, "tomorrow": {"_count": 1}}, "rip": {"_count": 1, "off": {"_count": 1}}, "keeping": {"_count": 1, "in": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "resisted": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "collected": {"_count": 1, "up": {"_count": 1}}, "cleared": {"_count": 2, "his": {"_count": 2}}, "hitched": {"_count": 1, "up": {"_count": 1}}, "altered": {"_count": 1, "the": {"_count": 1}}, "dreaded": {"_count": 1, "the": {"_count": 1}}, "safe": {"_count": 1, "in": {"_count": 1}}, "expect": {"_count": 1, "to": {"_count": 1}}, "proceeded": {"_count": 3, "straight": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "strolled": {"_count": 2, "into": {"_count": 1}, "confidently": {"_count": 1}}, "retreated": {"_count": 3, "farther": {"_count": 1}, "down": {"_count": 1}, "a": {"_count": 1}}, "fed": {"_count": 1, "Buckbeak": {"_count": 1}}, "submitted": {"_count": 1, "to": {"_count": 1}}, "announced": {"_count": 4, "brightly": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}, "holding": {"_count": 1}}, "fluttered": {"_count": 1, "down": {"_count": 1}}, "halfwished": {"_count": 1, "given": {"_count": 1}}, "weighed": {"_count": 1, "every": {"_count": 1}}, "withdrew": {"_count": 3, "it": {"_count": 1}, "silvery": {"_count": 1}, "his": {"_count": 1}}, "rubbed": {"_count": 1, "his": {"_count": 1}}, "experienced": {"_count": 2, "pain": {"_count": 1}, "every": {"_count": 1}}, "lumbered": {"_count": 2, "after": {"_count": 1}, "out": {"_count": 1}}, "detected": {"_count": 1, "a": {"_count": 1}}, "mmmention": {"_count": 1, "me": {"_count": 1}}, "sneezed": {"_count": 1, "and": {"_count": 1}}, "browsed": {"_count": 1, "the": {"_count": 1}}, "undressed": {"_count": 1, "and": {"_count": 1}}, "darted": {"_count": 2, "terrified": {"_count": 1}, "across": {"_count": 1}}, "answered": {"_count": 4, "": {"_count": 1}, "his": {"_count": 2}, "none": {"_count": 1}}, "described": {"_count": 1, "telling": {"_count": 1}}, "don": {"_count": 1, "know": {"_count": 1}}, "trudged": {"_count": 1, "back": {"_count": 1}}, "streaked": {"_count": 1, "off": {"_count": 1}}, "the": {"_count": 5, "leader": {"_count": 1}, "one": {"_count": 2}, "most": {"_count": 1}, "killer": {"_count": 1}}, "evidently": {"_count": 2, "imagined": {"_count": 1}, "considered": {"_count": 1}}, "checked": {"_count": 3, "his": {"_count": 3}}, "leered": {"_count": 1, "": {"_count": 1}}, "hummed": {"_count": 1, "creakily": {"_count": 1}}, "rapped": {"_count": 1, "three": {"_count": 1}}, "succeeded": {"_count": 2, "in": {"_count": 1}, "then": {"_count": 1}}, "reread": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "scratched": {"_count": 1, "his": {"_count": 1}}, "slung": {"_count": 1, "over": {"_count": 1}}, "exists": {"_count": 2, "if": {"_count": 2}}, "scooped": {"_count": 1, "some": {"_count": 1}}, "dodges": {"_count": 3, "Johnson": {"_count": 1}, "Bell": {"_count": 1}, "Spinnet": {"_count": 1}}, "covers": {"_count": 1, "the": {"_count": 1}}, "kep": {"_count": 1, "wantin": {"_count": 1}}, "rather": {"_count": 1, "thought": {"_count": 1}}, "concluded": {"_count": 1, "modestly": {"_count": 1}}, "scurried": {"_count": 1, "forward": {"_count": 1}}, "much": {"_count": 1, "care": {"_count": 1}}, "willed": {"_count": 1, "it": {"_count": 1}}, "slip": {"_count": 1, "": {"_count": 1}}, "dares": {"_count": 1, "shrieked": {"_count": 1}}, "sought": {"_count": 4, "to": {"_count": 1}, "a": {"_count": 1}, "down": {"_count": 1}, "almost": {"_count": 1}}, "pelted": {"_count": 1, "through": {"_count": 1}}, "froze": {"_count": 1, "his": {"_count": 1}}, "narrowed": {"_count": 1, "his": {"_count": 1}}, "cracks": {"_count": 1, "like": {"_count": 1}}, "hear": {"_count": 1, "": {"_count": 1}}, "demonstrated": {"_count": 1, "tonight": {"_count": 1}}, "regained": {"_count": 1, "his": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "deserved": {"_count": 4, "Kreacher": {"_count": 1}, "seeing": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "despises": {"_count": 1, "and": {"_count": 1}}, "try": {"_count": 1, "and": {"_count": 1}}, "detests": {"_count": 1, "": {"_count": 1}}, "hadn": {"_count": 1, "gone": {"_count": 1}}, "inserted": {"_count": 1, "a": {"_count": 1}}, "shuddered": {"_count": 1, "theyve": {"_count": 1}}, "threatened": {"_count": 1, "a": {"_count": 1}}, "committed": {"_count": 3, "any": {"_count": 1}, "later": {"_count": 1}, "those": {"_count": 1}}, "caused": {"_count": 2, "the": {"_count": 2}}, "believes": {"_count": 3, "you": {"_count": 2}, "it": {"_count": 1}}, "inclined": {"_count": 2, "his": {"_count": 2}}, "scarcely": {"_count": 2, "belongs": {"_count": 1}, "heard": {"_count": 1}}, "embraced": {"_count": 1, "me": {"_count": 1}}, "when": {"_count": 3, "the": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "lobbed": {"_count": 1, "a": {"_count": 1}}, "becomes": {"_count": 1, "a": {"_count": 1}}, "shrugged": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "modestly": {"_count": 1}}, "stands": {"_count": 1, "to": {"_count": 1}}, "influences": {"_count": 1, "these": {"_count": 1}}, "prefers": {"_count": 1, "the": {"_count": 1}}, "tickled": {"_count": 1, "Crookshanks": {"_count": 1}}, "slowed": {"_count": 1, "in": {"_count": 1}}, "massaged": {"_count": 1, "his": {"_count": 1}}, "bumped": {"_count": 1, "into": {"_count": 1}}, "out": {"_count": 1, "there": {"_count": 1}}, "twinkled": {"_count": 1, "at": {"_count": 1}}, "smashed": {"_count": 4, "the": {"_count": 1}, "into": {"_count": 2}, "a": {"_count": 1}}, "invited": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 2, "to": {"_count": 2}}, "stamped": {"_count": 1, "hard": {"_count": 1}}, "despised": {"_count": 2, "himself": {"_count": 1}, "and": {"_count": 1}}, "suggested": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}, "using": {"_count": 1, "them": {"_count": 1}}, "greeted": {"_count": 2, "Harry": {"_count": 1}, "Death": {"_count": 1}}, "beamed": {"_count": 1, "and": {"_count": 1}}, "uttered": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "distinguished": {"_count": 1, "the": {"_count": 1}}, "mopped": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "jeered": {"_count": 1, "at": {"_count": 1}}, "accosted": {"_count": 1, "late": {"_count": 1}}, "passes": {"_count": 1, "peering": {"_count": 1}}, "Merope": {"_count": 1, "": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "treasured": {"_count": 1, "just": {"_count": 1}}, "posed": {"_count": 1, "the": {"_count": 1}}, "promptly": {"_count": 1, "crashed": {"_count": 1}}, "mounted": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "stowed": {"_count": 1, "his": {"_count": 1}}, "ricocheted": {"_count": 1, "off": {"_count": 1}}, "reacted": {"_count": 2, "when": {"_count": 1}, "instinctively": {"_count": 1}}, "hurtled": {"_count": 3, "around": {"_count": 1}, "back": {"_count": 1}, "drunkenly": {"_count": 1}}, "reserved": {"_count": 1, "at": {"_count": 1}}, "presented": {"_count": 1, "himself": {"_count": 1}}, "dreads": {"_count": 1, "facing": {"_count": 1}}, "But": {"_count": 1, "Mrs": {"_count": 1}}, "shares": {"_count": 1, "your": {"_count": 1}}, "lured": {"_count": 1, "into": {"_count": 1}}, "drones": {"_count": 1, "on": {"_count": 1}}, "absolutely": {"_count": 1, "fawns": {"_count": 1}}, "introduced": {"_count": 1, "us": {"_count": 1}}, "wrestled": {"_count": 1, "with": {"_count": 1}}, "cornered": {"_count": 1, "Dean": {"_count": 1}}, "failed": {"_count": 4, "to": {"_count": 3}, "": {"_count": 1}}, "reduced": {"_count": 1, "Demelza": {"_count": 1}}, "faking": {"_count": 1, "": {"_count": 1}}, "heartily": {"_count": 1, "disliked": {"_count": 1}}, "pretended": {"_count": 2, "to": {"_count": 2}}, "extricated": {"_count": 1, "himself": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "crouched": {"_count": 4, "down": {"_count": 2}, "the": {"_count": 1}, "hidden": {"_count": 1}}, "marshaled": {"_count": 1, "his": {"_count": 1}}, "\u2018accidentally": {"_count": 1, "let": {"_count": 1}}, "positions": {"_count": 1, "himself": {"_count": 1}}, "delved": {"_count": 1, "deeper": {"_count": 1}}, "observed": {"_count": 1, "this": {"_count": 1}}, "take": {"_count": 1, "a": {"_count": 1}}, "Dean": {"_count": 1, "and": {"_count": 1}}, "naturally": {"_count": 1, "drew": {"_count": 1}}, "charmed": {"_count": 1, "so": {"_count": 1}}, "searched": {"_count": 3, "in": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "permitted": {"_count": 2, "himself": {"_count": 1}, "Ron": {"_count": 1}}, "dangled": {"_count": 1, "helplessly": {"_count": 1}}, "halfrose": {"_count": 1, "from": {"_count": 1}}, "Snape": {"_count": 1, "didn": {"_count": 1}}, "regrets": {"_count": 1, "that": {"_count": 1}}, "skipped": {"_count": 1, "the": {"_count": 1}}, "disappears": {"_count": 1, "off": {"_count": 1}}, "shifted": {"_count": 2, "guiltily": {"_count": 1}, "his": {"_count": 1}}, "join": {"_count": 1, "the": {"_count": 1}}, "confided": {"_count": 2, "none": {"_count": 1}, "this": {"_count": 1}}, "tipped": {"_count": 5, "the": {"_count": 3}, "me": {"_count": 1}, "a": {"_count": 1}}, "rallied": {"_count": 1, "almost": {"_count": 1}}, "surreptitiously": {"_count": 1, "folded": {"_count": 1}}, "hastened": {"_count": 2, "to": {"_count": 2}}, "attends": {"_count": 1, "his": {"_count": 1}}, "enters": {"_count": 1, "The": {"_count": 1}}, "because": {"_count": 1, "that": {"_count": 1}}, "telling": {"_count": 1, "all": {"_count": 1}}, "lives": {"_count": 3, "in": {"_count": 1}, "": {"_count": 2}}, "tapped": {"_count": 2, "the": {"_count": 1}, "Ron": {"_count": 1}}, "directed": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "buries": {"_count": 1, "it": {"_count": 1}}, "provided": {"_count": 1, "but": {"_count": 1}}, "hatched": {"_count": 1, "": {"_count": 1}}, "particularly": {"_count": 1, "wanted": {"_count": 1}}, "created": {"_count": 1, "a": {"_count": 1}}, "feel": {"_count": 2, "it": {"_count": 1}, "so": {"_count": 1}}, "understands": {"_count": 1, "why": {"_count": 1}}, "find": {"_count": 2, "another": {"_count": 1}, "out": {"_count": 1}}, "reworded": {"_count": 1, "his": {"_count": 1}}, "knelt": {"_count": 2, "over": {"_count": 2}}, "halflifted": {"_count": 1, "Malfoy": {"_count": 1}}, "confiscate": {"_count": 1, "or": {"_count": 1}}, "copied": {"_count": 1, "out": {"_count": 1}}, "writes": {"_count": 1, "I": {"_count": 1}}, "healed": {"_count": 1, "all": {"_count": 1}}, "hammered": {"_count": 1, "and": {"_count": 1}}, "mastered": {"_count": 1, "his": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "spoiled": {"_count": 1, "everything": {"_count": 1}}, "struck": {"_count": 3, "out": {"_count": 1}, "up": {"_count": 1}, "an": {"_count": 1}}, "reveals": {"_count": 1, "his": {"_count": 1}}, "swiped": {"_count": 1, "his": {"_count": 1}}, "fall": {"_count": 1, "but": {"_count": 1}}, "licked": {"_count": 1, "his": {"_count": 1}}, "slashed": {"_count": 1, "at": {"_count": 1}}, "chasin": {"_count": 1, "them": {"_count": 1}}, "help": {"_count": 1, "": {"_count": 1}}, "die": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "ascended": {"_count": 1, "and": {"_count": 1}}, "awakens": {"_count": 1, "": {"_count": 1}}, "You": {"_count": 1, "thought": {"_count": 1}}, "turn": {"_count": 1, "you": {"_count": 1}}, "steeled": {"_count": 1, "himself": {"_count": 1}}, "cuddled": {"_count": 1, "Hagrid": {"_count": 1}}, "travels": {"_count": 1, "": {"_count": 1}}, "shouldered": {"_count": 1, "open": {"_count": 1}}, "tramped": {"_count": 1, "across": {"_count": 1}}, "rarely": {"_count": 1, "spoke": {"_count": 1}}, "displayed": {"_count": 1, "in": {"_count": 1}}, "dabbled": {"_count": 1, "in": {"_count": 1}}, "balled": {"_count": 1, "up": {"_count": 1}}, "advanced": {"_count": 2, "on": {"_count": 1}, "with": {"_count": 1}}, "kills": {"_count": 1, "Muggles": {"_count": 1}}, "slowly": {"_count": 1, "lowered": {"_count": 1}}, "coming": {"_count": 2, "with": {"_count": 1}, "too": {"_count": 1}}, "deposited": {"_count": 1, "cage": {"_count": 1}}, "glared": {"_count": 2, "at": {"_count": 2}}, "known": {"_count": 2, "": {"_count": 2}}, "covered": {"_count": 1, "the": {"_count": 1}}, "switched": {"_count": 1, "to": {"_count": 1}}, "loved": {"_count": 7, "whom": {"_count": 1}, "you": {"_count": 1}, "Hermione": {"_count": 1}, "scattered": {"_count": 1}, "": {"_count": 1}, "no": {"_count": 1}, "her": {"_count": 1}}, "turns": {"_count": 1, "up": {"_count": 1}}, "fished": {"_count": 1, "in": {"_count": 1}}, "nods": {"_count": 1, "a": {"_count": 1}}, "kissed": {"_count": 1, "her": {"_count": 1}}, "however": {"_count": 1, "found": {"_count": 1}}, "rocked": {"_count": 1, "backward": {"_count": 1}}, "accepted": {"_count": 1, "a": {"_count": 1}}, "unrolled": {"_count": 1, "and": {"_count": 1}}, "avoid": {"_count": 1, "taking": {"_count": 1}}, "wish": {"_count": 1, "to": {"_count": 1}}, "believed": {"_count": 4, "as": {"_count": 1}, "Voldemort": {"_count": 1}, "to": {"_count": 1}, "would": {"_count": 1}}, "sounds": {"_count": 1, "a": {"_count": 1}}, "vos": {"_count": 4, "not": {"_count": 1}, "never": {"_count": 1}, "finished": {"_count": 1}, "a": {"_count": 1}}, "improvised": {"_count": 1, "wildly": {"_count": 1}}, "truly": {"_count": 1, "more": {"_count": 1}}, "reported": {"_count": 1, "": {"_count": 1}}, "cursing": {"_count": 1, "someone": {"_count": 1}}, "loses": {"_count": 1, "control": {"_count": 1}}, "aware": {"_count": 1, "that": {"_count": 1}}, "lied": {"_count": 2, "Id": {"_count": 1}, "": {"_count": 1}}, "winced": {"_count": 1, "": {"_count": 1}}, "resumed": {"_count": 2, "his": {"_count": 1}, "packing": {"_count": 1}}, "succumbed": {"_count": 1, "to": {"_count": 1}}, "ordered": {"_count": 1, "Kreacher": {"_count": 1}}, "punished": {"_count": 1, "himself": {"_count": 1}}, "served": {"_count": 1, "them": {"_count": 1}}, "prowled": {"_count": 2, "the": {"_count": 1}, "speaking": {"_count": 1}}, "resigned": {"_count": 1, "he": {"_count": 1}}, "sit": {"_count": 1, "behind": {"_count": 1}}, "appointed": {"_count": 1, "me": {"_count": 1}}, "studied": {"_count": 1, "her": {"_count": 1}}, "Apparated": {"_count": 1, "onto": {"_count": 1}}, "agrees": {"_count": 1, "with": {"_count": 1}}, "extinguished": {"_count": 1, "his": {"_count": 1}}, "splattered": {"_count": 1, "the": {"_count": 1}}, "examined": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "survives": {"_count": 1, "Azkaban": {"_count": 1}}, "slackened": {"_count": 1, "his": {"_count": 1}}, "swapped": {"_count": 1, "places": {"_count": 1}}, "recalled": {"_count": 1, "the": {"_count": 1}}, "fired": {"_count": 1, "a": {"_count": 1}}, "repositioned": {"_count": 1, "himself": {"_count": 1}}, "far": {"_count": 1, "away": {"_count": 1}}, "associated": {"_count": 1, "with": {"_count": 1}}, "hangs": {"_count": 1, "right": {"_count": 1}}, "punched": {"_count": 1, "the": {"_count": 1}}, "washed": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "perused": {"_count": 1, "the": {"_count": 1}}, "fingered": {"_count": 1, "the": {"_count": 1}}, "expressed": {"_count": 1, "any": {"_count": 1}}, "traveled": {"_count": 1, "abroad": {"_count": 1}}, "lose": {"_count": 1, "": {"_count": 1}}, "stripped": {"_count": 1, "off": {"_count": 1}}, "scrabbled": {"_count": 1, "at": {"_count": 1}}, "seen": {"_count": 1, "her": {"_count": 1}}, "show": {"_count": 1, "himself": {"_count": 1}}, "mustve": {"_count": 1, "known": {"_count": 1}}, "boasted": {"_count": 1, "loudly": {"_count": 1}}, "both": {"_count": 1, "feared": {"_count": 1}}, "mourned": {"_count": 1, "Dobby": {"_count": 1}}, "dug": {"_count": 2, "Dobbys": {"_count": 2}}, "twisted": {"_count": 1, "the": {"_count": 1}}, "seeks": {"_count": 1, "another": {"_count": 1}}, "tracked": {"_count": 1, "him": {"_count": 1}}, "glided": {"_count": 1, "alongside": {"_count": 1}}, "dead": {"_count": 2, "": {"_count": 2}}, "slunk": {"_count": 1, "back": {"_count": 1}}, "longed": {"_count": 1, "to": {"_count": 1}}, "dripped": {"_count": 1, "dittany": {"_count": 1}}, "stormed": {"_count": 1, "up": {"_count": 1}}, "traced": {"_count": 1, "more": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "visit": {"_count": 1, "first": {"_count": 1}}, "moves": {"_count": 1, "the": {"_count": 1}}, "relaxed": {"_count": 1, "his": {"_count": 1}}, "honest": {"_count": 1, "with": {"_count": 1}}, "turning": {"_count": 1, "into": {"_count": 1}}, "stabbed": {"_count": 1, "me": {"_count": 1}}, "wears": {"_count": 1, "his": {"_count": 1}}, "skidded": {"_count": 1, "around": {"_count": 1}}, "steps": {"_count": 1, "on": {"_count": 1}}, "raked": {"_count": 1, "the": {"_count": 1}}, "prayed": {"_count": 1, "the": {"_count": 1}}, "crumpled": {"_count": 1, "to": {"_count": 1}}, "walled": {"_count": 1, "it": {"_count": 1}}, "leading": {"_count": 1, "Ron": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "keep": {"_count": 1, "going": {"_count": 1}}, "wandered": {"_count": 1, "away": {"_count": 1}}, "fears": {"_count": 1, "retribution": {"_count": 1}}, "fulfilled": {"_count": 1, "his": {"_count": 1}}, "betrayed": {"_count": 1, "fear": {"_count": 1}}, "destroyed": {"_count": 1, "it": {"_count": 1}}, "pursued": {"_count": 1, "you": {"_count": 1}}, "prompted": {"_count": 1, "him": {"_count": 1}}, "remain": {"_count": 1, "angry": {"_count": 1}}, "lurched": {"_count": 1, "a": {"_count": 1}}, "belongs": {"_count": 1, "": {"_count": 1}}, "claimed": {"_count": 1, "conquered": {"_count": 1}}, "craved": {"_count": 2, "the": {"_count": 1}, "most": {"_count": 1}}, "vented": {"_count": 1, "his": {"_count": 1}}}, "did": {"_count": 2061, "have": {"_count": 5, "a": {"_count": 2}, "were": {"_count": 2}, "his": {"_count": 1}}, "they": {"_count": 40, "pointed": {"_count": 1}, "go": {"_count": 2}, "have": {"_count": 3}, "throw": {"_count": 1}, "know": {"_count": 2}, "": {"_count": 8}, "find": {"_count": 4}, "want": {"_count": 1}, "Disapparate": {"_count": 1}, "release": {"_count": 1}, "were": {"_count": 1}, "not": {"_count": 2}, "do": {"_count": 2}, "settle": {"_count": 1}, "look": {"_count": 1}, "dream": {"_count": 1}, "notice": {"_count": 1}, "stand": {"_count": 1}, "get": {"_count": 1}, "row": {"_count": 1}, "swerve": {"_count": 1}, "ask": {"_count": 1}, "think": {"_count": 1}, "take": {"_count": 1}}, "": {"_count": 94, ".": {"_count": 72}, "?": {"_count": 11}, "!": {"_count": 11}}, "seem": {"_count": 8, "to": {"_count": 6}, "eager": {"_count": 1}, "more": {"_count": 1}}, "you": {"_count": 236, "know": {"_count": 15}, "get": {"_count": 26}, "say": {"_count": 19}, "": {"_count": 30}, "expect": {"_count": 2}, "talk": {"_count": 2}, "just": {"_count": 3}, "What": {"_count": 1}, "care": {"_count": 1}, "come": {"_count": 5}, "read": {"_count": 1}, "want": {"_count": 4}, "see": {"_count": 12}, "escape": {"_count": 4}, "survive": {"_count": 1}, "kill": {"_count": 2}, "do": {"_count": 25}, "all": {"_count": 2}, "Crookshanks": {"_count": 1}, "catch": {"_count": 1}, "go": {"_count": 3}, "realize": {"_count": 1}, "find": {"_count": 13}, "call": {"_count": 4}, "this": {"_count": 1}, "think": {"_count": 2}, "give": {"_count": 2}, "have": {"_count": 5}, "use": {"_count": 2}, "decide": {"_count": 1}, "hear": {"_count": 7}, "mean": {"_count": 1}, "bring": {"_count": 2}, "check": {"_count": 1}, "take": {"_count": 4}, "son": {"_count": 1}, "knowwhat": {"_count": 1}, "not": {"_count": 4}, "dream": {"_count": 1}, "sustain": {"_count": 1}, "put": {"_count": 3}, "dear": {"_count": 1}, "love": {"_count": 1}, "though": {"_count": 1}, "never": {"_count": 1}, "stop": {"_count": 1}, "stay": {"_count": 1}, "keep": {"_count": 1}, "injure": {"_count": 1}, "understand": {"_count": 1}, "Harry": {"_count": 1}, "feel": {"_count": 1}, "tell": {"_count": 2}, "smuggle": {"_count": 1}, "manage": {"_count": 1}, "ever": {"_count": 1}, "ask": {"_count": 1}, "relay": {"_count": 1}, "Riddle": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 842, "answer": {"_count": 43}, "suddenly": {"_count": 1}, "fade": {"_count": 3}, "manage": {"_count": 2}, "contain": {"_count": 1}, "return": {"_count": 10}, "exist": {"_count": 1}, "ask": {"_count": 10}, "appear": {"_count": 10}, "sit": {"_count": 1}, "know": {"_count": 77}, "look": {"_count": 31}, "speak": {"_count": 31}, "all": {"_count": 2}, "leave": {"_count": 3}, "remove": {"_count": 2}, "prevent": {"_count": 2}, "duck": {"_count": 1}, "move": {"_count": 13}, "seem": {"_count": 52}, "dare": {"_count": 24}, "conjure": {"_count": 1}, "join": {"_count": 2}, "entirely": {"_count": 2}, "extend": {"_count": 1}, "resume": {"_count": 1}, "come": {"_count": 6}, "smile": {"_count": 5}, "wink": {"_count": 1}, "make": {"_count": 7}, "persuade": {"_count": 1}, "talk": {"_count": 3}, "hibernate": {"_count": 1}, "appreciate": {"_count": 3}, "conceal": {"_count": 1}, "": {"_count": 19}, "wail": {"_count": 1}, "set": {"_count": 2}, "spring": {"_count": 1}, "recognize": {"_count": 8}, "hit": {"_count": 1}, "blink": {"_count": 1}, "have": {"_count": 17}, "bind": {"_count": 2}, "fasten": {"_count": 1}, "want": {"_count": 61}, "reply": {"_count": 5}, "bow": {"_count": 1}, "disappear": {"_count": 1}, "conquer": {"_count": 1}, "care": {"_count": 16}, "need": {"_count": 13}, "blame": {"_count": 1}, "see": {"_count": 9}, "steer": {"_count": 1}, "endear": {"_count": 1}, "fool": {"_count": 1}, "turn": {"_count": 2}, "respond": {"_count": 4}, "lower": {"_count": 2}, "relax": {"_count": 1}, "like": {"_count": 11}, "pass": {"_count": 1}, "go": {"_count": 2}, "argue": {"_count": 2}, "think": {"_count": 14}, "laugh": {"_count": 5}, "stir": {"_count": 4}, "elaborate": {"_count": 4}, "press": {"_count": 3}, "let": {"_count": 1}, "notice": {"_count": 3}, "sound": {"_count": 5}, "belong": {"_count": 2}, "even": {"_count": 12}, "read": {"_count": 1}, "understand": {"_count": 16}, "stop": {"_count": 3}, "puncture": {"_count": 1}, "flinch": {"_count": 1}, "though": {"_count": 1}, "tell": {"_count": 3}, "hate": {"_count": 2}, "complain": {"_count": 1}, "follow": {"_count": 2}, "take": {"_count": 6}, "find": {"_count": 4}, "improve": {"_count": 2}, "much": {"_count": 5}, "only": {"_count": 1}, "wince": {"_count": 1}, "matter": {"_count": 7}, "feel": {"_count": 8}, "present": {"_count": 1}, "regret": {"_count": 1}, "say": {"_count": 7}, "pull": {"_count": 2}, "hesitate": {"_count": 1}, "run": {"_count": 1}, "mention": {"_count": 2}, "immediately": {"_count": 4}, "beg": {"_count": 1}, "last": {"_count": 2}, "suit": {"_count": 1}, "bring": {"_count": 1}, "bother": {"_count": 5}, "cut": {"_count": 1}, "explain": {"_count": 1}, "pause": {"_count": 2}, "get": {"_count": 5}, "emerge": {"_count": 2}, "use": {"_count": 1}, "hear": {"_count": 4}, "object": {"_count": 1}, "budge": {"_count": 1}, "strike": {"_count": 3}, "wait": {"_count": 2}, "reappear": {"_count": 2}, "believe": {"_count": 8}, "writhe": {"_count": 1}, "teach": {"_count": 1}, "wish": {"_count": 4}, "soften": {"_count": 2}, "kill": {"_count": 1}, "mind": {"_count": 1}, "hurt": {"_count": 1}, "attempt": {"_count": 3}, "trust": {"_count": 3}, "draw": {"_count": 1}, "wake": {"_count": 1}, "warn": {"_count": 1}, "doubt": {"_count": 1}, "challenge": {"_count": 1}, "do": {"_count": 1}, "consider": {"_count": 1}, "touch": {"_count": 1}, "shake": {"_count": 1}, "really": {"_count": 1}, "enjoy": {"_count": 1}, "hang": {"_count": 1}, "stand": {"_count": 1}, "resent": {"_count": 1}, "complete": {"_count": 1}, "the": {"_count": 1}, "live": {"_count": 1}, "so": {"_count": 1}, "usually": {"_count": 2}, "invite": {"_count": 1}, "wear": {"_count": 1}, "oblige": {"_count": 1}, "die": {"_count": 1}, "deserve": {"_count": 2}, "linger": {"_count": 2}, "question": {"_count": 1}, "once": {"_count": 1}, "cause": {"_count": 1}, "continue": {"_count": 1}, "give": {"_count": 1}, "break": {"_count": 1}, "sleep": {"_count": 1}, "lift": {"_count": 1}, "crack": {"_count": 1}, "surprise": {"_count": 1}, "enhance": {"_count": 1}, "occur": {"_count": 2}, "meet": {"_count": 2}, "she": {"_count": 1}, "as": {"_count": 1}, "knock": {"_count": 1}, "change": {"_count": 2}, "work": {"_count": 4}, "try": {"_count": 1}, "penetrate": {"_count": 1}, "vary": {"_count": 1}, "vanish": {"_count": 1}, "yet": {"_count": 2}, "Lupin": {"_count": 1}, "quite": {"_count": 1}, "mean": {"_count": 1}, "cry": {"_count": 1}, "encourage": {"_count": 1}, "waver": {"_count": 2}, "realize": {"_count": 2}, "help": {"_count": 2}, "seek": {"_count": 2}, "open": {"_count": 2}, "affect": {"_count": 1}, "react": {"_count": 1}, "back": {"_count": 1}, "discuss": {"_count": 2}, "topple": {"_count": 1}, "lead": {"_count": 1}, "after": {"_count": 1}, "throw": {"_count": 1}, "shrink": {"_count": 1}, "deign": {"_count": 1}, "truly": {"_count": 1}, "contradict": {"_count": 1}, "yield": {"_count": 1}, "capture": {"_count": 1}, "catch": {"_count": 1}, "protest": {"_count": 1}, "multiply": {"_count": 1}, "fall": {"_count": 1}, "relinquish": {"_count": 1}, "stay": {"_count": 1}, "slow": {"_count": 1}, "convince": {"_count": 1}, "refer": {"_count": 1}, "raise": {"_count": 1}, "overcome": {"_count": 1}, "concern": {"_count": 1}, "naturally": {"_count": 1}}, "Harry": {"_count": 14, "survive": {"_count": 1}, "know": {"_count": 1}, "": {"_count": 6}, "watching": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 1}, "replied": {"_count": 1}, "began": {"_count": 1}, "realize": {"_count": 1}}, "the": {"_count": 42, "glass": {"_count": 1}, "people": {"_count": 1}, "cloak": {"_count": 1}, "best": {"_count": 1}, "stranger": {"_count": 1}, "Dursleys": {"_count": 1}, "witch": {"_count": 1}, "headmaster": {"_count": 1}, "two": {"_count": 2}, "smallest": {"_count": 1}, "Mark": {"_count": 1}, "dustbins": {"_count": 1}, "most": {"_count": 1}, "only": {"_count": 1}, "Cruciatus": {"_count": 1}, "tournament": {"_count": 1}, "FourPoint": {"_count": 1}, "same": {"_count": 6}, "Dark": {"_count": 1}, "Patronus": {"_count": 1}, "Fainting": {"_count": 1}, "dementors": {"_count": 2}, "dog": {"_count": 1}, "Imperius": {"_count": 1}, "hand": {"_count": 1}, "four": {"_count": 1}, "delicate": {"_count": 1}, "love": {"_count": 1}, "commentary": {"_count": 1}, "voice": {"_count": 1}, "young": {"_count": 1}, "Weasley": {"_count": 1}, "idiot": {"_count": 1}, "mysterious": {"_count": 1}, "sword": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "something": {"_count": 9, "hed": {"_count": 1}, "that": {"_count": 1}, "Snape": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "very": {"_count": 1}, "funny": {"_count": 1}, "she": {"_count": 1}, "about": {"_count": 1}}, "this": {"_count": 11, "": {"_count": 2}, "but": {"_count": 1}, "Harry": {"_count": 1}, "year": {"_count": 1}, "mean": {"_count": 1}, "weird": {"_count": 1}, "band": {"_count": 1}, "when": {"_count": 1}, "every": {"_count": 1}, "and": {"_count": 1}}, "manage": {"_count": 2, "ter": {"_count": 1}, "a": {"_count": 1}}, "look": {"_count": 3, "very": {"_count": 2}, "ill": {"_count": 1}}, "still": {"_count": 3, "look": {"_count": 1}, "do": {"_count": 1}, "fighting": {"_count": 1}}, "it": {"_count": 95, "he": {"_count": 3}, "first": {"_count": 1}, "matter": {"_count": 2}, "for": {"_count": 4}, "": {"_count": 27}, "and": {"_count": 2}, "feel": {"_count": 1}, "as": {"_count": 1}, "I": {"_count": 1}, "all": {"_count": 3}, "twice": {"_count": 1}, "hadnt": {"_count": 1}, "help": {"_count": 1}, "in": {"_count": 3}, "to": {"_count": 3}, "Harry": {"_count": 2}, "you": {"_count": 1}, "than": {"_count": 1}, "really": {"_count": 1}, "son": {"_count": 1}, "mean": {"_count": 1}, "Dont": {"_count": 1}, "because": {"_count": 1}, "Im": {"_count": 1}, "last": {"_count": 1}, "said": {"_count": 2}, "very": {"_count": 1}, "go": {"_count": 3}, "the": {"_count": 2}, "his": {"_count": 1}, "Prime": {"_count": 1}, "not": {"_count": 1}, "she": {"_count": 1}, "happen": {"_count": 3}, "again": {"_count": 2}, "well": {"_count": 1}, "have": {"_count": 1}, "Professor": {"_count": 1}, "appear": {"_count": 1}, "come": {"_count": 1}, "against": {"_count": 1}, "instinctively": {"_count": 1}, "probably": {"_count": 1}, "says": {"_count": 1}, "offend": {"_count": 1}, "strongly": {"_count": 1}, "it": {"_count": 1}, "we": {"_count": 1}}, "yes": {"_count": 1, "said": {"_count": 1}}, "great": {"_count": 1, "things": {"_count": 1}}, "become": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 104, "just": {"_count": 2}, "get": {"_count": 6}, "did": {"_count": 1}, "seem": {"_count": 1}, "know": {"_count": 6}, "": {"_count": 22}, "was": {"_count": 1}, "have": {"_count": 3}, "look": {"_count": 1}, "run": {"_count": 1}, "consider": {"_count": 1}, "had": {"_count": 1}, "looked": {"_count": 1}, "throw": {"_count": 1}, "fake": {"_count": 1}, "do": {"_count": 7}, "tell": {"_count": 2}, "catch": {"_count": 1}, "need": {"_count": 1}, "want": {"_count": 8}, "Bozo": {"_count": 1}, "think": {"_count": 3}, "make": {"_count": 1}, "remember": {"_count": 1}, "might": {"_count": 1}, "realize": {"_count": 3}, "treat": {"_count": 1}, "opened": {"_count": 1}, "move": {"_count": 1}, "say": {"_count": 5}, "wrap": {"_count": 1}, "said": {"_count": 4}, "abandon": {"_count": 1}, "like": {"_count": 1}, "hung": {"_count": 1}, "left": {"_count": 1}, "mmmention": {"_count": 1}, "much": {"_count": 1}, "try": {"_count": 1}, "Merope": {"_count": 1}, "come": {"_count": 1}, "die": {"_count": 1}, "muttered": {"_count": 1}, "actually": {"_count": 1}, "now": {"_count": 1}}, "we": {"_count": 7, "introduce": {"_count": 1}, "boys": {"_count": 1}, "": {"_count": 2}, "just": {"_count": 1}, "leave": {"_count": 1}, "go": {"_count": 1}}, "once": {"_count": 1, "hed": {"_count": 1}}, "wish": {"_count": 1, "they": {"_count": 1}}, "she": {"_count": 22, "say": {"_count": 1}, "said": {"_count": 1}, "ask": {"_count": 1}, "get": {"_count": 1}, "find": {"_count": 1}, "know": {"_count": 3}, "make": {"_count": 1}, "let": {"_count": 1}, "": {"_count": 5}, "want": {"_count": 2}, "sustain": {"_count": 1}, "always": {"_count": 1}, "show": {"_count": 1}, "think": {"_count": 2}}, "Snape": {"_count": 7, "expect": {"_count": 1}, "hate": {"_count": 1}, "think": {"_count": 1}, "save": {"_count": 1}, "his": {"_count": 1}, "react": {"_count": 1}, "punish": {"_count": 1}}, "Hagrid": {"_count": 1, "know": {"_count": 1}}, "talk": {"_count": 1, "about": {"_count": 1}}, "save": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "fall": {"_count": 1, "off": {"_count": 1}}, "a": {"_count": 23, "somersault": {"_count": 1}, "sort": {"_count": 1}, "cruel": {"_count": 1}, "horrible": {"_count": 1}, "phoenix": {"_count": 1}, "dozen": {"_count": 1}, "ridiculous": {"_count": 1}, "terrible": {"_count": 1}, "kind": {"_count": 1}, "gnawing": {"_count": 1}, "very": {"_count": 1}, "roaring": {"_count": 1}, "lap": {"_count": 1}, "back": {"_count": 2}, "deal": {"_count": 1}, "couple": {"_count": 1}, "coverup": {"_count": 1}, "double": {"_count": 1}, "bucktoothed": {"_count": 1}, "moment": {"_count": 1}, "doubletake": {"_count": 1}, "Summoning": {"_count": 1}}, "enchantments": {"_count": 1, "": {"_count": 1}}, "somethin": {"_count": 1, "o": {"_count": 1}}, "Fang": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 2, "written": {"_count": 1}, "best": {"_count": 1}}, "an": {"_count": 2, "I": {"_count": 1}, "odd": {"_count": 1}}, "Professor": {"_count": 5, "Sprout": {"_count": 1}, "Snapes": {"_count": 1}, "Trelawney": {"_count": 1}, "Slughorn": {"_count": 1}, "McGonagall": {"_count": 1}}, "make": {"_count": 1, "himself": {"_count": 1}}, "to": {"_count": 10, "the": {"_count": 1}, "it": {"_count": 2}, "youl": {"_count": 1}, "Aunt": {"_count": 1}, "that": {"_count": 1}, "Riddles": {"_count": 1}, "Kreacher": {"_count": 1}, "Rowle": {"_count": 1}, "open": {"_count": 1}}, "my": {"_count": 7, "troll": {"_count": 1}, "homework": {"_count": 1}, "best": {"_count": 2}, "parents": {"_count": 2}, "wand": {"_count": 1}}, "so": {"_count": 47, "Harry": {"_count": 2}, "the": {"_count": 4}, "in": {"_count": 1}, "platform": {"_count": 1}, "badly": {"_count": 1}, "and": {"_count": 1}, "an": {"_count": 2}, "staring": {"_count": 1}, "how": {"_count": 1}, "his": {"_count": 2}, "": {"_count": 8}, "that": {"_count": 3}, "turning": {"_count": 1}, "he": {"_count": 7}, "noticed": {"_count": 1}, "as": {"_count": 1}, "quite": {"_count": 1}, "After": {"_count": 1}, "for": {"_count": 1}, "Auntie": {"_count": 1}, "she": {"_count": 2}, "Riddles": {"_count": 1}, "talking": {"_count": 1}, "we": {"_count": 1}, "but": {"_count": 1}}, "do": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}}, "rather": {"_count": 1, "detest": {"_count": 1}}, "I": {"_count": 22, "get": {"_count": 1}, "mean": {"_count": 2}, "said": {"_count": 4}, "couldnt": {"_count": 1}, "wouldntve": {"_count": 1}, "ever": {"_count": 1}, "see": {"_count": 1}, "say": {"_count": 2}, "do": {"_count": 1}, "": {"_count": 3}, "cannot": {"_count": 1}, "not": {"_count": 2}, "care": {"_count": 1}, "it": {"_count": 1}}, "on": {"_count": 4, "Privet": {"_count": 1}, "the": {"_count": 2}, "weekends": {"_count": 1}}, "twelve": {"_count": 1, "O": {"_count": 1}}, "more": {"_count": 2, "damage": {"_count": 1}, "": {"_count": 1}}, "fly": {"_count": 1, "here": {"_count": 1}}, "mind": {"_count": 1, "but": {"_count": 1}}, "Lockhart": {"_count": 1, "want": {"_count": 1}}, "said": {"_count": 29, "Hagrid": {"_count": 2}, "Fudge": {"_count": 2}, "Hermione": {"_count": 4}, "Snape": {"_count": 1}, "Harry": {"_count": 9}, "Moody": {"_count": 1}, "Dumbledore": {"_count": 6}, "Lupin": {"_count": 1}, "Mr": {"_count": 1}, "Ron": {"_count": 1}, "Mrs": {"_count": 1}}, "Filch": {"_count": 2, "want": {"_count": 1}, "": {"_count": 1}}, "Dont": {"_count": 1, "lie": {"_count": 1}}, "Professors": {"_count": 1, "McGonagall": {"_count": 1}}, "that": {"_count": 18, "come": {"_count": 1}, "bird": {"_count": 1}, "": {"_count": 4}, "help": {"_count": 1}, "horrible": {"_count": 1}, "mean": {"_count": 5}, "hed": {"_count": 1}, "little": {"_count": 1}, "work": {"_count": 1}, "matter": {"_count": 1}, "poor": {"_count": 1}}, "giving": {"_count": 1, "each": {"_count": 1}}, "Dobby": {"_count": 2, "dream": {"_count": 1}, "a": {"_count": 1}}, "with": {"_count": 4, "much": {"_count": 1}, "his": {"_count": 1}, "Trelawney": {"_count": 1}, "Morfin": {"_count": 1}}, "fanning": {"_count": 1, "Nick": {"_count": 1}}, "whatever": {"_count": 3, "Malfoy": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "had": {"_count": 2, "signed": {"_count": 1}, "shot": {"_count": 1}}, "Goyle": {"_count": 1, "": {"_count": 1}}, "try": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "find": {"_count": 2, "Riddles": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 8, "best": {"_count": 3}, "quarry": {"_count": 1}, "tongue": {"_count": 1}, "hands": {"_count": 1}, "overwrought": {"_count": 1}, "head": {"_count": 1}}, "Riddle": {"_count": 1, "mean": {"_count": 1}}, "yeh": {"_count": 4, "have": {"_count": 1}, "": {"_count": 2}, "get": {"_count": 1}}, "kill": {"_count": 1, "that": {"_count": 1}}, "when": {"_count": 9, "he": {"_count": 5}, "descending": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}, "Professor": {"_count": 1}}, "think": {"_count": 3, "shed": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "midmorning": {"_count": 1, "when": {"_count": 1}}, "see": {"_count": 2, "the": {"_count": 1}, "your": {"_count": 1}}, "in": {"_count": 4, "your": {"_count": 1}, "practice": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "Ginny": {"_count": 2, "get": {"_count": 1}, "and": {"_count": 1}}, "catch": {"_count": 1, "a": {"_count": 1}}, "flag": {"_count": 1, "us": {"_count": 1}}, "then": {"_count": 3, "": {"_count": 2}, "it": {"_count": 1}}, "yet": {"_count": 2, "another": {"_count": 2}}, "as": {"_count": 10, "he": {"_count": 4}, "a": {"_count": 1}, "much": {"_count": 1}, "they": {"_count": 2}, "she": {"_count": 2}}, "Malfoy": {"_count": 5, "mean": {"_count": 1}, "and": {"_count": 1}, "pay": {"_count": 1}, "look": {"_count": 1}, "like": {"_count": 1}}, "at": {"_count": 5, "the": {"_count": 2}, "least": {"_count": 2}, "school": {"_count": 1}}, "express": {"_count": 1, "my": {"_count": 1}}, "want": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "make": {"_count": 1}}, "know": {"_count": 3, "the": {"_count": 1}, "this": {"_count": 1}, "your": {"_count": 1}}, "hear": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "isnt": {"_count": 1, "widely": {"_count": 1}}, "indeed": {"_count": 6, "": {"_count": 1}, "draw": {"_count": 1}, "know": {"_count": 1}, "test": {"_count": 1}, "seem": {"_count": 1}, "burn": {"_count": 1}}, "was": {"_count": 6, "hover": {"_count": 1}, "eat": {"_count": 1}, "blink": {"_count": 1}, "tell": {"_count": 1}, "sensible": {"_count": 1}, "sit": {"_count": 1}}, "Cho": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 1, "well": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "exacly": {"_count": 1, "what": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "everything": {"_count": 3, "perfectly": {"_count": 1}, "she": {"_count": 1}, "of": {"_count": 1}}, "your": {"_count": 4, "best": {"_count": 1}, "father": {"_count": 2}, "bidding": {"_count": 1}}, "Animagi": {"_count": 1, "in": {"_count": 1}}, "anything": {"_count": 4, "for": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}, "exciting": {"_count": 1}}, "note": {"_count": 1, "as": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 2}}, "put": {"_count": 2, "enough": {"_count": 1}, "it": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "one": {"_count": 1, "circuit": {"_count": 1}}, "The": {"_count": 1, "Bulgarian": {"_count": 1}}, "these": {"_count": 1, "things": {"_count": 1}}, "everyone": {"_count": 2, "else": {"_count": 1}, "thought": {"_count": 1}}, "divide": {"_count": 1, "Their": {"_count": 1}}, "Nevilles": {"_count": 1, "": {"_count": 1}}, "Avada": {"_count": 1, "Kedavra": {"_count": 1}}, "warn": {"_count": 2, "you": {"_count": 1}, "him": {"_count": 1}}, "laugh": {"_count": 1, "rather": {"_count": 1}}, "haughty": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "hes": {"_count": 1, "a": {"_count": 1}}, "Potter": {"_count": 2, "Moody": {"_count": 1}, "which": {"_count": 1}}, "get": {"_count": 1, "the": {"_count": 1}}, "stop": {"_count": 1, "crying": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "say": {"_count": 2, "Dobby": {"_count": 1}, "hed": {"_count": 1}}, "care": {"_count": 1, "": {"_count": 1}}, "Aberforth": {"_count": 2, "hide": {"_count": 1}, "Dumbledore": {"_count": 1}}, "about": {"_count": 1, "monsters": {"_count": 1}}, "nothing": {"_count": 11, "": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 7}, "at": {"_count": 1}, "but": {"_count": 1}}, "Crouch": {"_count": 1, "do": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 2, "Crouch": {"_count": 2}}, "Im": {"_count": 1, "telling": {"_count": 1}}, "Disapparate": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 6, "": {"_count": 1}, "have": {"_count": 1}, "tell": {"_count": 1}, "really": {"_count": 1}, "leave": {"_count": 1}, "do": {"_count": 1}}, "what": {"_count": 7, "one": {"_count": 1}, "Dumbledore": {"_count": 1}, "PPProfessor": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "she": {"_count": 1}}, "promise": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "Moody": {"_count": 1, "himself": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "before": {"_count": 1, "that": {"_count": 1}}, "George": {"_count": 1, "who": {"_count": 1}}, "win": {"_count": 1, "didnt": {"_count": 1}}, "run": {"_count": 1, "for": {"_count": 1}}, "Mark": {"_count": 1, "Evans": {"_count": 1}}, "magic": {"_count": 2, "": {"_count": 1}, "without": {"_count": 1}}, "but": {"_count": 3, "I": {"_count": 2}, "less": {"_count": 1}}, "mate": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "began": {"_count": 1}}, "FOUR": {"_count": 1, "WEEKS": {"_count": 1}}, "someone": {"_count": 2, "have": {"_count": 1}, "jus": {"_count": 1}}, "knowingly": {"_count": 1, "deliberately": {"_count": 1}}, "half": {"_count": 2, "a": {"_count": 1}, "of": {"_count": 1}}, "happen": {"_count": 1, "that": {"_count": 1}}, "them": {"_count": 2, "over": {"_count": 1}, "a": {"_count": 1}}, "hope": {"_count": 1, "Sirius": {"_count": 1}}, "recognize": {"_count": 1, "Sirius": {"_count": 1}}, "however": {"_count": 1, "take": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "Vicky": {"_count": 1, "say": {"_count": 1}}, "and": {"_count": 4, "Sirius": {"_count": 1}, "could": {"_count": 1}, "Im": {"_count": 1}, "instead": {"_count": 1}}, "himself": {"_count": 2, "": {"_count": 1}, "well": {"_count": 1}}, "yeah": {"_count": 1, "said": {"_count": 1}}, "another": {"_count": 1, "somersault": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "bring": {"_count": 1, "something": {"_count": 1}}, "Voldemort": {"_count": 2, "wherever": {"_count": 1}, "get": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "anybody": {"_count": 2, "else": {"_count": 1}, "look": {"_count": 1}}, "seriously": {"_count": 1, "consider": {"_count": 1}}, "whenever": {"_count": 1, "they": {"_count": 1}}, "did": {"_count": 2, "yeh": {"_count": 1}, "she": {"_count": 1}}, "Karkus": {"_count": 1, "say": {"_count": 1}}, "some": {"_count": 1, "o": {"_count": 1}}, "wha": {"_count": 1, "we": {"_count": 1}}, "Stun": {"_count": 1, "Padma": {"_count": 1}}, "witness": {"_count": 1, "it": {"_count": 1}}, "attack": {"_count": 1, "Mr": {"_count": 1}}, "Astrology": {"_count": 1, "with": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "exactly": {"_count": 1, "the": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "feel": {"_count": 2, "Cho": {"_count": 1}, "the": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}, "take": {"_count": 1, "off": {"_count": 1}}, "couldnt": {"_count": 1, "stand": {"_count": 1}}, "wonder": {"_count": 2, "occasionally": {"_count": 1}, "whether": {"_count": 1}}, "nine": {"_count": 1, "and": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "myself": {"_count": 1, "justice": {"_count": 1}}, "well": {"_count": 2, "didnt": {"_count": 1}, "very": {"_count": 1}}, "wand": {"_count": 1, "legislation": {"_count": 1}}, "next": {"_count": 1, "or": {"_count": 1}}, "hate": {"_count": 1, "it": {"_count": 1}}, "tonight": {"_count": 1, "I": {"_count": 1}}, "like": {"_count": 2, "to": {"_count": 1}, "you": {"_count": 1}}, "all": {"_count": 3, "I": {"_count": 1}, "he": {"_count": 1}, "right": {"_count": 1}}, "Slughorn": {"_count": 2, "seem": {"_count": 1}, "want": {"_count": 1}}, "mention": {"_count": 1, "": {"_count": 1}}, "surprise": {"_count": 1, "him": {"_count": 1}}, "brilliantly": {"_count": 1, "Ron": {"_count": 1}}, "use": {"_count": 1, "it": {"_count": 1}}, "Katie": {"_count": 1, "get": {"_count": 1}}, "intensely": {"_count": 1, "cross": {"_count": 1}}, "snog": {"_count": 1, "Krum": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "too": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "either": {"_count": 1, "of": {"_count": 1}}, "last": {"_count": 2, "year": {"_count": 1}, "time": {"_count": 1}}, "blamed": {"_count": 1, "for": {"_count": 1}}, "memories": {"_count": 1, "go": {"_count": 1}}, "hurt": {"_count": 1, "quite": {"_count": 1}}, "two": {"_count": 1, "more": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "increasingly": {"_count": 1, "these": {"_count": 1}}, "by": {"_count": 1, "giving": {"_count": 1}}, "years": {"_count": 1, "ago": {"_count": 1}}, "mainly": {"_count": 1, "because": {"_count": 1}}, "me": {"_count": 1, "the": {"_count": 1}}, "walk": {"_count": 1, "into": {"_count": 1}}, "wrong": {"_count": 2, "oh": {"_count": 1}, "Kreacher": {"_count": 1}}, "including": {"_count": 1, "members": {"_count": 1}}, "is": {"_count": 1, "my": {"_count": 1}}, "Scrimgeour": {"_count": 1, "want": {"_count": 1}}, "desire": {"_count": 1, "it": {"_count": 1}}, "finish": {"_count": 1, "it": {"_count": 1}}, "flushing": {"_count": 1, "it": {"_count": 1}}, "away": {"_count": 1, "with": {"_count": 1}}, "nobody": {"_count": 1, "ever": {"_count": 1}}, "Mrs": {"_count": 1, "Black": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}}, "He": {"_count": 1, "searched": {"_count": 1}}, "Regulus": {"_count": 2, "have": {"_count": 1}, "say": {"_count": 1}}, "made": {"_count": 1, "any": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "justice": {"_count": 1, "to": {"_count": 1}}, "Percy": {"_count": 1, "realize": {"_count": 1}}, "let": {"_count": 1, "drop": {"_count": 1}}, "read": {"_count": 1, "that": {"_count": 1}}, "believe": {"_count": 1, "these": {"_count": 1}}, "luck": {"_count": 1, "favor": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "She": {"_count": 1, "was": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Crabbe": {"_count": 1, "know": {"_count": 1}}, "both": {"_count": 1, "the": {"_count": 1}}, "intrigue": {"_count": 1, "him": {"_count": 1}}, "no": {"_count": 1, "better": {"_count": 1}}, "Confund": {"_count": 1, "him": {"_count": 1}}}, "have": {"_count": 4062, "a": {"_count": 254, "very": {"_count": 9}, "sister": {"_count": 2}, "go": {"_count": 10}, "look": {"_count": 19}, "copy": {"_count": 3}, "great": {"_count": 3}, "good": {"_count": 11}, "pasty": {"_count": 2}, "frog": {"_count": 1}, "few": {"_count": 6}, "bit": {"_count": 8}, "cup": {"_count": 4}, "clue": {"_count": 8}, "window": {"_count": 1}, "peaceful": {"_count": 1}, "hundred": {"_count": 1}, "harder": {"_count": 1}, "human": {"_count": 2}, "special": {"_count": 1}, "knack": {"_count": 1}, "lot": {"_count": 5}, "houseelf": {"_count": 1}, "chance": {"_count": 7}, "drink": {"_count": 7}, "fully": {"_count": 1}, "picture": {"_count": 1}, "pee": {"_count": 1}, "set": {"_count": 1}, "potion": {"_count": 1}, "basis": {"_count": 1}, "poke": {"_count": 2}, "volunteer": {"_count": 1}, "cat": {"_count": 1}, "thorough": {"_count": 1}, "normal": {"_count": 2}, "spot": {"_count": 1}, "crumpet": {"_count": 1}, "quick": {"_count": 6}, "deadly": {"_count": 1}, "fit": {"_count": 1}, "huge": {"_count": 1}, "clear": {"_count": 5}, "job": {"_count": 4}, "game": {"_count": 2}, "ride": {"_count": 1}, "single": {"_count": 2}, "habit": {"_count": 1}, "horrible": {"_count": 1}, "kiss": {"_count": 1}, "field": {"_count": 1}, "car": {"_count": 1}, "lovely": {"_count": 2}, "better": {"_count": 2}, "really": {"_count": 1}, "shot": {"_count": 1}, "fight": {"_count": 1}, "handsome": {"_count": 1}, "Slytherin": {"_count": 1}, "little": {"_count": 7}, "butterbeer": {"_count": 1}, "scar": {"_count": 1}, "box": {"_count": 1}, "word": {"_count": 5}, "castle": {"_count": 1}, "right": {"_count": 3}, "real": {"_count": 1}, "taste": {"_count": 1}, "theory": {"_count": 1}, "fondness": {"_count": 1}, "streak": {"_count": 1}, "sleep": {"_count": 1}, "vord": {"_count": 1}, "rest": {"_count": 1}, "shifty": {"_count": 1}, "heart": {"_count": 1}, "witness": {"_count": 1}, "record": {"_count": 1}, "break": {"_count": 1}, "reward": {"_count": 1}, "new": {"_count": 1}, "badge": {"_count": 1}, "ghost": {"_count": 1}, "gift": {"_count": 1}, "difficult": {"_count": 1}, "pen": {"_count": 1}, "guest": {"_count": 1}, "think": {"_count": 1}, "name": {"_count": 1}, "glance": {"_count": 1}, "couple": {"_count": 2}, "message": {"_count": 1}, "weapon": {"_count": 1}, "night": {"_count": 1}, "pinch": {"_count": 1}, "closer": {"_count": 1}, "fly": {"_count": 1}, "nice": {"_count": 2}, "problem": {"_count": 3}, "country": {"_count": 1}, "Pygmy": {"_count": 1}, "famously": {"_count": 1}, "baby": {"_count": 2}, "Christmas": {"_count": 1}, "seizure": {"_count": 1}, "bed": {"_count": 1}, "nightcap": {"_count": 1}, "stroll": {"_count": 1}, "grudge": {"_count": 1}, "talk": {"_count": 1}, "certain": {"_count": 1}, "power": {"_count": 2}, "decent": {"_count": 1}, "stock": {"_count": 1}, "Dark": {"_count": 1}, "nasty": {"_count": 1}, "wand": {"_count": 1}, "Death": {"_count": 1}, "long": {"_count": 1}, "pint": {"_count": 1}, "twitch": {"_count": 1}, "choice": {"_count": 1}, "steakandkidney": {"_count": 1}, "sweet": {"_count": 1}, "backup": {"_count": 1}, "duty": {"_count": 1}, "private": {"_count": 1}, "spectacular": {"_count": 1}, "plan": {"_count": 1}}, "been": {"_count": 545, "thinking": {"_count": 2}, "a": {"_count": 31}, "Harvey": {"_count": 1}, "behaving": {"_count": 1}, "hundreds": {"_count": 1}, "acting": {"_count": 1}, "phoning": {"_count": 1}, "celebrating": {"_count": 2}, "drifting": {"_count": 1}, "trying": {"_count": 4}, "surprised": {"_count": 4}, "accepted": {"_count": 1}, "warned": {"_count": 5}, "imagine": {"_count": 1}, "wild": {"_count": 1}, "hiding": {"_count": 1}, "the": {"_count": 11}, "chosen": {"_count": 2}, "quite": {"_count": 3}, "proud": {"_count": 4}, "killed": {"_count": 5}, "moved": {"_count": 1}, "many": {"_count": 1}, "braver": {"_count": 1}, "easy": {"_count": 3}, "because": {"_count": 1}, "worse": {"_count": 3}, "so": {"_count": 5}, "read": {"_count": 1}, "listening": {"_count": 2}, "extremely": {"_count": 2}, "loved": {"_count": 1}, "able": {"_count": 19}, "seen": {"_count": 1}, "worried": {"_count": 1}, "hard": {"_count": 2}, "anywhere": {"_count": 1}, "sacked": {"_count": 1}, "done": {"_count": 2}, "better": {"_count": 5}, "transfigured": {"_count": 1}, "dropped": {"_count": 1}, "taken": {"_count": 1}, "obscured": {"_count": 1}, "in": {"_count": 15}, "turned": {"_count": 1}, "locked": {"_count": 2}, "more": {"_count": 11}, "running": {"_count": 1}, "only": {"_count": 3}, "saying": {"_count": 2}, "blasted": {"_count": 1}, "very": {"_count": 8}, "overcome": {"_count": 1}, "three": {"_count": 1}, "made": {"_count": 4}, "my": {"_count": 3}, "Petrified": {"_count": 1}, "": {"_count": 8}, "given": {"_count": 2}, "left": {"_count": 1}, "twenty": {"_count": 1}, "waiting": {"_count": 3}, "welcome": {"_count": 1}, "hoodwinked": {"_count": 1}, "otherwise": {"_count": 1}, "told": {"_count": 4}, "dead": {"_count": 2}, "to": {"_count": 3}, "if": {"_count": 3}, "for": {"_count": 2}, "dreading": {"_count": 1}, "growing": {"_count": 1}, "crystal": {"_count": 1}, "sent": {"_count": 1}, "astounded": {"_count": 1}, "strong": {"_count": 1}, "there": {"_count": 7}, "Potter": {"_count": 1}, "doing": {"_count": 2}, "expelled": {"_count": 2}, "wearing": {"_count": 1}, "battling": {"_count": 1}, "shunned": {"_count": 1}, "impossible": {"_count": 1}, "well": {"_count": 1}, "eyes": {"_count": 1}, "highly": {"_count": 1}, "he": {"_count": 1}, "asked": {"_count": 2}, "increasing": {"_count": 1}, "two": {"_count": 1}, "working": {"_count": 2}, "nicelooking": {"_count": 1}, "watching": {"_count": 1}, "discovered": {"_count": 2}, "busy": {"_count": 2}, "pleased": {"_count": 1}, "several": {"_count": 1}, "screaming": {"_count": 2}, "capable": {"_count": 1}, "entirely": {"_count": 1}, "looking": {"_count": 3}, "at": {"_count": 4}, "seventeen": {"_count": 1}, "used": {"_count": 2}, "really": {"_count": 2}, "happy": {"_count": 3}, "successful": {"_count": 1}, "had": {"_count": 2}, "kind": {"_count": 1}, "announcing": {"_count": 1}, "entrusted": {"_count": 1}, "Harry": {"_count": 2}, "bravery": {"_count": 1}, "having": {"_count": 2}, "some": {"_count": 2}, "first": {"_count": 1}, "why": {"_count": 2}, "judging": {"_count": 1}, "cut": {"_count": 1}, "brought": {"_count": 3}, "of": {"_count": 2}, "anything": {"_count": 1}, "involved": {"_count": 1}, "furious": {"_count": 1}, "encrusted": {"_count": 1}, "stronger": {"_count": 1}, "taught": {"_count": 1}, "then": {"_count": 1}, "knocked": {"_count": 1}, "Moody": {"_count": 1}, "asleep": {"_count": 1}, "increased": {"_count": 1}, "torn": {"_count": 1}, "it": {"_count": 1}, "forced": {"_count": 2}, "me": {"_count": 2}, "Kreacher": {"_count": 1}, "developing": {"_count": 2}, "devoted": {"_count": 1}, "catastrophic": {"_count": 1}, "plainer": {"_count": 4}, "outside": {"_count": 1}, "successfully": {"_count": 1}, "this": {"_count": 1}, "present": {"_count": 1}, "Hagrids": {"_count": 1}, "called": {"_count": 1}, "mildly": {"_count": 1}, "run": {"_count": 1}, "exposed": {"_count": 1}, "introduced": {"_count": 1}, "complex": {"_count": 1}, "frightened": {"_count": 1}, "bubbling": {"_count": 1}, "informed": {"_count": 1}, "concerned": {"_count": 1}, "thrilled": {"_count": 1}, "injuries": {"_count": 1}, "sounding": {"_count": 1}, "going": {"_count": 2}, "goats": {"_count": 1}, "Hagrid": {"_count": 1}, "addled": {"_count": 1}, "insulted": {"_count": 1}, "harder": {"_count": 1}, "ordered": {"_count": 1}, "Stunned": {"_count": 1}, "expecting": {"_count": 1}, "too": {"_count": 3}, "something": {"_count": 2}, "messing": {"_count": 1}, "midway": {"_count": 1}, "experiencing": {"_count": 1}, "said": {"_count": 2}, "that": {"_count": 6}, "abashed": {"_count": 1}, "decorated": {"_count": 1}, "easier": {"_count": 1}, "badly": {"_count": 1}, "no": {"_count": 2}, "plotting": {"_count": 1}, "Harrys": {"_count": 1}, "rather": {"_count": 1}, "any": {"_count": 5}, "generally": {"_count": 1}, "planning": {"_count": 1}, "happier": {"_count": 2}, "applied": {"_count": 1}, "indistinguishable": {"_count": 1}, "on": {"_count": 3}, "touched": {"_count": 1}, "clearer": {"_count": 4}, "telling": {"_count": 1}, "chasing": {"_count": 1}, "you": {"_count": 1}, "tricked": {"_count": 1}, "yours": {"_count": 1}, "honored": {"_count": 1}, "dreaming": {"_count": 1}, "wreaking": {"_count": 1}, "unintelligible": {"_count": 1}, "guilty": {"_count": 1}, "invited": {"_count": 3}, "enjoying": {"_count": 1}, "sure": {"_count": 2}, "bewitched": {"_count": 1}, "set": {"_count": 1}, "pureblood": {"_count": 1}, "out": {"_count": 1}, "glad": {"_count": 1}, "taking": {"_count": 1}, "not": {"_count": 1}, "cropping": {"_count": 1}, "affected": {"_count": 1}, "another": {"_count": 1}, "dangerous": {"_count": 1}, "kissed": {"_count": 1}, "nice": {"_count": 1}, "rumors": {"_count": 1}, "immobilized": {"_count": 1}, "strengthened": {"_count": 1}, "ruined": {"_count": 1}, "Princes": {"_count": 1}, "wondering": {"_count": 1}, "teaching": {"_count": 1}, "put": {"_count": 1}, "found": {"_count": 1}, "boasting": {"_count": 1}, "purchased": {"_count": 1}, "away": {"_count": 1}, "incidents": {"_count": 1}, "magic": {"_count": 1}, "sitting": {"_count": 1}, "hoping": {"_count": 3}, "delayed": {"_count": 1}, "avoiding": {"_count": 1}, "all": {"_count": 1}, "tolerant": {"_count": 1}, "delivered": {"_count": 1}, "after": {"_count": 1}, "counting": {"_count": 1}, "fatal": {"_count": 1}, "an": {"_count": 4}, "curious": {"_count": 1}, "detached": {"_count": 1}, "fulfilled": {"_count": 1}, "ideal": {"_count": 1}, "much": {"_count": 1}, "here": {"_count": 2}, "half": {"_count": 1}, "clever": {"_count": 1}, "spending": {"_count": 1}, "vouchsafed": {"_count": 1}, "bandied": {"_count": 1}, "asking": {"_count": 2}, "reasonably": {"_count": 1}, "prepared": {"_count": 1}, "placed": {"_count": 1}, "minutes": {"_count": 1}, "feeble": {"_count": 1}, "murdered": {"_count": 1}, "sleeping": {"_count": 1}, "checking": {"_count": 1}, "his": {"_count": 4}, "careless": {"_count": 1}, "thwarted": {"_count": 1}, "echoed": {"_count": 1}, "enough": {"_count": 1}, "expected": {"_count": 1}, "with": {"_count": 1}, "back": {"_count": 1}, "Dad": {"_count": 1}, "years": {"_count": 1}, "insane": {"_count": 1}, "angry": {"_count": 2}, "where": {"_count": 1}, "held": {"_count": 1}, "gifted": {"_count": 1}, "mortified": {"_count": 1}, "handsome": {"_count": 1}, "judged": {"_count": 1}, "and": {"_count": 1}, "effing": {"_count": 1}, "raining": {"_count": 1}, "thirteen": {"_count": 1}, "expert": {"_count": 1}, "completely": {"_count": 1}, "worth": {"_count": 1}, "mourning": {"_count": 1}, "suspended": {"_count": 1}, "simply": {"_count": 1}, "inexpressibly": {"_count": 1}, "misleading": {"_count": 1}, "stories": {"_count": 1}, "broken": {"_count": 1}, "loads": {"_count": 2}, "traveling": {"_count": 1}, "tracked": {"_count": 1}, "inside": {"_count": 1}, "resting": {"_count": 1}, "fraught": {"_count": 1}, "innocent": {"_count": 1}, "returned": {"_count": 1}, "special": {"_count": 1}, "great": {"_count": 1}, "off": {"_count": 1}, "arrogant": {"_count": 1}, "Fiendfyre": {"_count": 1}, "perfectly": {"_count": 1}, "sneaking": {"_count": 1}, "raising": {"_count": 1}, "friends": {"_count": 1}, "praying": {"_count": 1}, "part": {"_count": 1}, "interested": {"_count": 1}, "defeated": {"_count": 1}}, "found": {"_count": 25, "it": {"_count": 3}, "out": {"_count": 6}, "of": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 3}, "her": {"_count": 1}, "those": {"_count": 1}, "you": {"_count": 1}, "Arthur": {"_count": 1}, "Sirius": {"_count": 1}, "three": {"_count": 1}, "Kreacher": {"_count": 1}, "Harry": {"_count": 1}}, "reported": {"_count": 1, "that": {"_count": 1}}, "suddenly": {"_count": 1, "changed": {"_count": 1}}, "to": {"_count": 380, "say": {"_count": 7}, "know": {"_count": 1}, "I": {"_count": 2}, "": {"_count": 4}, "ask": {"_count": 7}, "do": {"_count": 27}, "teach": {"_count": 1}, "put": {"_count": 8}, "get": {"_count": 9}, "save": {"_count": 1}, "fly": {"_count": 2}, "worry": {"_count": 5}, "be": {"_count": 19}, "stay": {"_count": 9}, "find": {"_count": 2}, "keep": {"_count": 8}, "risk": {"_count": 1}, "Harry": {"_count": 2}, "go": {"_count": 19}, "drop": {"_count": 1}, "join": {"_count": 4}, "fight": {"_count": 2}, "punish": {"_count": 1}, "shut": {"_count": 2}, "buy": {"_count": 3}, "check": {"_count": 2}, "watch": {"_count": 3}, "come": {"_count": 8}, "write": {"_count": 2}, "use": {"_count": 3}, "steal": {"_count": 1}, "forfeit": {"_count": 1}, "Hagrid": {"_count": 1}, "tell": {"_count": 14}, "report": {"_count": 1}, "take": {"_count": 9}, "turn": {"_count": 1}, "send": {"_count": 2}, "leave": {"_count": 9}, "expel": {"_count": 1}, "make": {"_count": 5}, "clear": {"_count": 1}, "sit": {"_count": 2}, "dig": {"_count": 1}, "pretend": {"_count": 1}, "eat": {"_count": 2}, "spend": {"_count": 1}, "lose": {"_count": 1}, "wait": {"_count": 11}, "hear": {"_count": 2}, "pass": {"_count": 2}, "think": {"_count": 9}, "witness": {"_count": 1}, "kill": {"_count": 7}, "answer": {"_count": 2}, "hide": {"_count": 2}, "read": {"_count": 1}, "move": {"_count": 4}, "cut": {"_count": 1}, "stagger": {"_count": 1}, "arrive": {"_count": 1}, "set": {"_count": 2}, "sell": {"_count": 1}, "fool": {"_count": 1}, "oops": {"_count": 1}, "compete": {"_count": 1}, "discuss": {"_count": 1}, "resort": {"_count": 1}, "talk": {"_count": 3}, "stand": {"_count": 1}, "face": {"_count": 3}, "shrink": {"_count": 1}, "look": {"_count": 6}, "listen": {"_count": 1}, "register": {"_count": 1}, "start": {"_count": 3}, "follow": {"_count": 1}, "really": {"_count": 1}, "try": {"_count": 6}, "examine": {"_count": 1}, "meet": {"_count": 2}, "crawl": {"_count": 1}, "run": {"_count": 1}, "override": {"_count": 1}, "duel": {"_count": 1}, "learn": {"_count": 2}, "unfreeze": {"_count": 1}, "give": {"_count": 2}, "borrow": {"_count": 1}, "endure": {"_count": 2}, "comb": {"_count": 1}, "hand": {"_count": 1}, "ban": {"_count": 1}, "stop": {"_count": 2}, "wont": {"_count": 1}, "return": {"_count": 2}, "study": {"_count": 1}, "split": {"_count": 1}, "work": {"_count": 2}, "hurt": {"_count": 2}, "dock": {"_count": 1}, "contradict": {"_count": 1}, "coach": {"_count": 1}, "break": {"_count": 2}, "mention": {"_count": 1}, "smash": {"_count": 1}, "enter": {"_count": 1}, "Add": {"_count": 1}, "disappear": {"_count": 1}, "notify": {"_count": 1}, "obey": {"_count": 1}, "sleep": {"_count": 2}, "rely": {"_count": 1}, "have": {"_count": 1}, "touch": {"_count": 1}, "control": {"_count": 1}, "bring": {"_count": 1}, "imitate": {"_count": 1}, "squeeze": {"_count": 1}, "suffer": {"_count": 1}, "see": {"_count": 2}, "contribute": {"_count": 1}, "understand": {"_count": 1}, "Apparate": {"_count": 1}, "show": {"_count": 2}, "bury": {"_count": 1}, "creep": {"_count": 1}, "change": {"_count": 1}, "finish": {"_count": 1}, "cross": {"_count": 1}, "tip": {"_count": 1}, "accept": {"_count": 1}, "journey": {"_count": 1}, "rub": {"_count": 1}, "solve": {"_count": 1}, "search": {"_count": 1}, "Disapparate": {"_count": 1}, "flush": {"_count": 1}, "submerge": {"_count": 1}, "kip": {"_count": 1}, "resist": {"_count": 1}, "deal": {"_count": 1}, "hum": {"_count": 1}, "wing": {"_count": 1}, "said": {"_count": 1}, "help": {"_count": 1}, "produce": {"_count": 1}, "to": {"_count": 1}, "Confund": {"_count": 1}}, "you": {"_count": 159, "": {"_count": 37}, "really": {"_count": 1}, "seen": {"_count": 2}, "all": {"_count": 1}, "been": {"_count": 32}, "got": {"_count": 14}, "done": {"_count": 3}, "outlined": {"_count": 1}, "this": {"_count": 1}, "Ron": {"_count": 2}, "blabbing": {"_count": 1}, "stopped": {"_count": 1}, "heard": {"_count": 4}, "had": {"_count": 4}, "ordered": {"_count": 1}, "just": {"_count": 1}, "known": {"_count": 2}, "ever": {"_count": 5}, "Harry": {"_count": 2}, "first": {"_count": 1}, "even": {"_count": 1}, "Peeves": {"_count": 1}, "youll": {"_count": 1}, "out": {"_count": 1}, "spilling": {"_count": 1}, "split": {"_count": 1}, "not": {"_count": 2}, "son": {"_count": 1}, "two": {"_count": 1}, "checked": {"_count": 1}, "wandered": {"_count": 1}, "suspected": {"_count": 1}, "written": {"_count": 1}, "boy": {"_count": 1}, "away": {"_count": 1}, "teaching": {"_count": 1}, "as": {"_count": 1}, "will": {"_count": 1}, "anyway": {"_count": 1}, "called": {"_count": 1}, "faced": {"_count": 1}, "managed": {"_count": 3}, "come": {"_count": 4}, "have": {"_count": 1}, "any": {"_count": 1}, "here": {"_count": 1}, "cleaned": {"_count": 1}, "decided": {"_count": 1}, "changed": {"_count": 1}, "merely": {"_count": 1}, "brought": {"_count": 1}, "removed": {"_count": 1}, "only": {"_count": 1}, "promised": {"_count": 1}, "missy": {"_count": 1}, "Severus": {"_count": 1}, "watched": {"_count": 1}}, "anything": {"_count": 10, "to": {"_count": 8}, "new": {"_count": 1}, "from": {"_count": 1}}, "thought": {"_count": 40, "hed": {"_count": 2}, "so": {"_count": 1}, "you": {"_count": 4}, "some": {"_count": 1}, "youd": {"_count": 4}, "that": {"_count": 4}, "": {"_count": 2}, "Black": {"_count": 1}, "he": {"_count": 3}, "it": {"_count": 3}, "possible": {"_count": 1}, "of": {"_count": 2}, "would": {"_count": 2}, "given": {"_count": 1}, "them": {"_count": 2}, "her": {"_count": 1}, "being": {"_count": 1}, "seeing": {"_count": 1}, "Id": {"_count": 1}, "quite": {"_count": 1}, "long": {"_count": 1}, "the": {"_count": 1}}, "known": {"_count": 35, "": {"_count": 4}, "it": {"_count": 4}, "about": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "better": {"_count": 2}, "Voldemort": {"_count": 1}, "he": {"_count": 2}, "hed": {"_count": 1}, "a": {"_count": 2}, "for": {"_count": 2}, "there": {"_count": 2}, "that": {"_count": 1}, "then": {"_count": 1}, "how": {"_count": 2}, "before": {"_count": 1}, "from": {"_count": 1}, "exactly": {"_count": 1}, "youd": {"_count": 1}, "what": {"_count": 1}, "would": {"_count": 1}, "if": {"_count": 1}, "some": {"_count": 1}}, "passed": {"_count": 7, "a": {"_count": 2}, "for": {"_count": 1}, "out": {"_count": 1}, "him": {"_count": 1}, "from": {"_count": 1}, "since": {"_count": 1}}, "noticed": {"_count": 28, "somethings": {"_count": 1}, "it": {"_count": 3}, "that": {"_count": 8}, "": {"_count": 3}, "anything": {"_count": 2}, "Karkaroff": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}, "if": {"_count": 1}, "my": {"_count": 1}, "said": {"_count": 2}, "hes": {"_count": 1}, "very": {"_count": 1}, "she": {"_count": 1}, "we": {"_count": 1}}, "disappeared": {"_count": 4, "at": {"_count": 1}, "arent": {"_count": 1}, "around": {"_count": 1}, "every": {"_count": 1}}, "much": {"_count": 14, "to": {"_count": 2}, "of": {"_count": 2}, "chance": {"_count": 2}, "time": {"_count": 3}, "difficulty": {"_count": 1}, "in": {"_count": 1}, "attention": {"_count": 1}, "more": {"_count": 1}, "preferred": {"_count": 1}}, "never": {"_count": 25, "seen": {"_count": 3}, "even": {"_count": 1}, "gone": {"_count": 1}, "known": {"_count": 3}, "yet": {"_count": 1}, "been": {"_count": 6}, "hurt": {"_count": 1}, "died": {"_count": 2}, "learned": {"_count": 1}, "faced": {"_count": 1}, "treated": {"_count": 1}, "set": {"_count": 1}, "encountered": {"_count": 1}, "It": {"_count": 1}, "sought": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 18}, "?": {"_count": 11}, "!": {"_count": 5}}, "made": {"_count": 36, "sense": {"_count": 1}, "a": {"_count": 3}, "Aunt": {"_count": 1}, "me": {"_count": 3}, "more": {"_count": 1}, "it": {"_count": 6}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 4}, "you": {"_count": 1}, "without": {"_count": 1}, "much": {"_count": 3}, "some": {"_count": 1}, "him": {"_count": 1}, "my": {"_count": 1}, "use": {"_count": 1}, "or": {"_count": 1}, "in": {"_count": 1}, "such": {"_count": 1}, "her": {"_count": 1}, "all": {"_count": 1}, "them": {"_count": 1}}, "that": {"_count": 15, "scar": {"_count": 1}, "ruddy": {"_count": 1}, "": {"_count": 3}, "happy": {"_count": 1}, "hovel": {"_count": 1}, "memory": {"_count": 1}, "last": {"_count": 1}, "Apparition": {"_count": 1}, "the": {"_count": 1}, "Kingsley": {"_count": 1}, "whispered": {"_count": 1}, "he": {"_count": 1}, "sword": {"_count": 1}}, "one": {"_count": 7, "myself": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 1}, "last": {"_count": 1}, "of": {"_count": 1}, "for": {"_count": 1}, "hour": {"_count": 1}}, "gone": {"_count": 27, "out": {"_count": 2}, "for": {"_count": 1}, "to": {"_count": 3}, "straight": {"_count": 1}, "over": {"_count": 1}, "that": {"_count": 1}, "very": {"_count": 1}, "on": {"_count": 3}, "temporarily": {"_count": 1}, "missing": {"_count": 1}, "wrong": {"_count": 1}, "further": {"_count": 2}, "so": {"_count": 1}, "": {"_count": 1}, "awry": {"_count": 1}, "the": {"_count": 1}, "astray": {"_count": 1}, "from": {"_count": 1}, "numb": {"_count": 1}, "we": {"_count": 1}, "up": {"_count": 1}}, "forgotten": {"_count": 13, "": {"_count": 1}, "that": {"_count": 2}, "to": {"_count": 2}, "what": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 1}, "him": {"_count": 1}, "lately": {"_count": 1}, "Ogden": {"_count": 1}, "why": {"_count": 1}}, "had": {"_count": 46, "more": {"_count": 3}, "it": {"_count": 2}, "to": {"_count": 4}, "a": {"_count": 9}, "enough": {"_count": 2}, "our": {"_count": 1}, "some": {"_count": 1}, "one": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 2}, "parents": {"_count": 1}, "if": {"_count": 1}, "their": {"_count": 2}, "Ron": {"_count": 1}, "me": {"_count": 1}, "his": {"_count": 2}, "two": {"_count": 1}, "anything": {"_count": 1}, "my": {"_count": 1}, "him": {"_count": 1}, "time": {"_count": 2}, "five": {"_count": 1}, "great": {"_count": 1}, "acid": {"_count": 1}, "an": {"_count": 1}, "several": {"_count": 1}, "brothers": {"_count": 1}}, "thirty": {"_count": 2, "": {"_count": 1}, "minutes": {"_count": 1}}, "fitted": {"_count": 2, "a": {"_count": 1}, "you": {"_count": 1}}, "shrunk": {"_count": 2, "in": {"_count": 1}, "slightly": {"_count": 1}}, "caught": {"_count": 5, "him": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}, "a": {"_count": 2}}, "enough": {"_count": 8, "ice": {"_count": 1}, "socks": {"_count": 1}, "Elixir": {"_count": 1}, "brains": {"_count": 1}, "here": {"_count": 1}, "space": {"_count": 1}, "to": {"_count": 1}, "Plimpies": {"_count": 1}}, "wrapped": {"_count": 1, "its": {"_count": 1}}, "sworn": {"_count": 11, "a": {"_count": 1}, "made": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 4}, "his": {"_count": 1}, "it": {"_count": 1}, "too": {"_count": 1}, "I": {"_count": 1}}, "cracked": {"_count": 1, "from": {"_count": 1}}, "burned": {"_count": 1, "it": {"_count": 1}}, "given": {"_count": 32, "anything": {"_count": 2}, "in": {"_count": 1}, "all": {"_count": 2}, "my": {"_count": 1}, "them": {"_count": 3}, "it": {"_count": 2}, "the": {"_count": 1}, "over": {"_count": 1}, "voice": {"_count": 1}, "this": {"_count": 1}, "to": {"_count": 1}, "us": {"_count": 2}, "evidence": {"_count": 1}, "you": {"_count": 4}, "a": {"_count": 2}, "almost": {"_count": 2}, "any": {"_count": 1}, "him": {"_count": 2}, "warning": {"_count": 1}, "Harry": {"_count": 1}}, "his": {"_count": 10, "room": {"_count": 1}, "key": {"_count": 1}, "cloak": {"_count": 1}, "magical": {"_count": 1}, "head": {"_count": 1}, "eye": {"_count": 1}, "chat": {"_count": 1}, "mirror": {"_count": 1}, "baby": {"_count": 2}}, "quailed": {"_count": 1, "under": {"_count": 1}}, "got": {"_count": 45, "back": {"_count": 1}, "two": {"_count": 1}, "the": {"_count": 6}, "you": {"_count": 1}, "powerful": {"_count": 1}, "to": {"_count": 7}, "his": {"_count": 1}, "a": {"_count": 4}, "dangling": {"_count": 2}, "anywhere": {"_count": 1}, "hold": {"_count": 2}, "stings": {"_count": 1}, "me": {"_count": 1}, "us": {"_count": 1}, "plenty": {"_count": 1}, "secret": {"_count": 1}, "items": {"_count": 1}, "something": {"_count": 1}, "rid": {"_count": 2}, "full": {"_count": 1}, "in": {"_count": 1}, "him": {"_count": 1}, "food": {"_count": 1}, "any": {"_count": 1}, "away": {"_count": 1}, "loads": {"_count": 1}, "good": {"_count": 1}, "": {"_count": 1}}, "cured": {"_count": 3, "and": {"_count": 1}, "it": {"_count": 2}}, "banks": {"_count": 1, "": {"_count": 1}}, "someone": {"_count": 4, "take": {"_count": 1}, "friendly": {"_count": 1}, "like": {"_count": 1}, "on": {"_count": 1}}, "their": {"_count": 5, "own": {"_count": 2}, "work": {"_count": 1}, "head": {"_count": 1}, "first": {"_count": 1}}, "the": {"_count": 71, "best": {"_count": 1}, "faintest": {"_count": 4}, "Bludgers": {"_count": 1}, "planets": {"_count": 1}, "Stone": {"_count": 2}, "Elixir": {"_count": 1}, "whole": {"_count": 2}, "deal": {"_count": 1}, "slightest": {"_count": 1}, "Prime": {"_count": 1}, "Sight": {"_count": 1}, "Grim": {"_count": 1}, "right": {"_count": 4}, "nerve": {"_count": 2}, "honor": {"_count": 2}, "letter": {"_count": 1}, "decency": {"_count": 1}, "others": {"_count": 1}, "authority": {"_count": 3}, "last": {"_count": 1}, "potion": {"_count": 1}, "same": {"_count": 3}, "brains": {"_count": 1}, "power": {"_count": 6}, "death": {"_count": 1}, "Seeing": {"_count": 1}, "gist": {"_count": 1}, "nightmares": {"_count": 1}, "other": {"_count": 1}, "guts": {"_count": 1}, "greatest": {"_count": 1}, "arrogance": {"_count": 1}, "house": {"_count": 1}, "usual": {"_count": 1}, "mouth": {"_count": 1}, "potions": {"_count": 1}, "book": {"_count": 1}, "name": {"_count": 1}, "sword": {"_count": 2}, "Trace": {"_count": 1}, "second": {"_count": 1}, "stone": {"_count": 1}, "ring": {"_count": 1}, "means": {"_count": 1}, "boy": {"_count": 1}, "snake": {"_count": 1}, "answer": {"_count": 1}, "poor": {"_count": 1}, "strength": {"_count": 2}, "phoenix": {"_count": 1}}, "jumped": {"_count": 2, "too": {"_count": 1}, "off": {"_count": 1}}, "your": {"_count": 25, "mothers": {"_count": 2}, "Potions": {"_count": 1}, "picture": {"_count": 1}, "autograph": {"_count": 2}, "soul": {"_count": 3}, "reward": {"_count": 1}, "Quidditch": {"_count": 1}, "drink": {"_count": 1}, "own": {"_count": 2}, "body": {"_count": 1}, "wand": {"_count": 1}, "chance": {"_count": 1}, "list": {"_count": 1}, "word": {"_count": 4}, "responses": {"_count": 1}, "family": {"_count": 1}, "little": {"_count": 1}}, "they": {"_count": 9, "": {"_count": 3}, "done": {"_count": 1}, "changed": {"_count": 1}, "got": {"_count": 1}, "really": {"_count": 1}, "let": {"_count": 1}, "usually": {"_count": 1}}, "built": {"_count": 1, "it": {"_count": 1}}, "done": {"_count": 102, "so": {"_count": 6}, "peering": {"_count": 1}, "it": {"_count": 20}, "to": {"_count": 2}, "some": {"_count": 1}, "ages": {"_count": 1}, "better": {"_count": 1}, "": {"_count": 14}, "this": {"_count": 2}, "something": {"_count": 3}, "on": {"_count": 2}, "well": {"_count": 4}, "the": {"_count": 3}, "that": {"_count": 7}, "anything": {"_count": 4}, "but": {"_count": 3}, "said": {"_count": 4}, "with": {"_count": 3}, "magic": {"_count": 2}, "because": {"_count": 1}, "at": {"_count": 1}, "one": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 2}, "without": {"_count": 1}, "my": {"_count": 1}, "been": {"_count": 1}, "Harry": {"_count": 1}, "in": {"_count": 1}, "could": {"_count": 1}, "more": {"_count": 1}, "great": {"_count": 1}, "yes": {"_count": 1}, "as": {"_count": 1}, "tonight": {"_count": 1}, "which": {"_count": 1}, "very": {"_count": 1}}, "said": {"_count": 50, "something": {"_count": 1}, "": {"_count": 3}, "Dumbledore": {"_count": 3}, "Harry": {"_count": 7}, "settle": {"_count": 1}, "youd": {"_count": 1}, "Black": {"_count": 1}, "Lupin": {"_count": 1}, "So": {"_count": 2}, "it": {"_count": 5}, "George": {"_count": 2}, "finding": {"_count": 1}, "Ron": {"_count": 2}, "Mr": {"_count": 1}, "some": {"_count": 1}, "why": {"_count": 1}, "Hermione": {"_count": 2}, "Fudge": {"_count": 1}, "most": {"_count": 1}, "that": {"_count": 6}, "Sirius": {"_count": 1}, "to": {"_count": 1}, "this": {"_count": 1}, "She": {"_count": 1}, "they": {"_count": 1}, "yourself": {"_count": 1}, "he": {"_count": 1}}, "already": {"_count": 20, "left": {"_count": 1}, "explained": {"_count": 1}, "been": {"_count": 2}, "apprehended": {"_count": 1}, "suffered": {"_count": 1}, "received": {"_count": 1}, "given": {"_count": 2}, "shown": {"_count": 1}, "found": {"_count": 1}, "told": {"_count": 1}, "said": {"_count": 1}, "confessed": {"_count": 1}, "put": {"_count": 1}, "proven": {"_count": 1}, "indicated": {"_count": 2}, "destroyed": {"_count": 1}, "placed": {"_count": 1}}, "Mars": {"_count": 1, "Bars": {"_count": 1}}, "were": {"_count": 2, "Bertie": {"_count": 1}, "very": {"_count": 1}}, "cards": {"_count": 1, "inside": {"_count": 1}}, "died": {"_count": 25, "and": {"_count": 1}, "": {"_count": 8}, "in": {"_count": 2}, "of": {"_count": 1}, "like": {"_count": 2}, "before": {"_count": 1}, "though": {"_count": 1}, "the": {"_count": 2}, "to": {"_count": 1}, "perhaps": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 2}, "on": {"_count": 1}, "I": {"_count": 1}}, "red": {"_count": 1, "hair": {"_count": 1}}, "some": {"_count": 20, "": {"_count": 1}, "breakfast": {"_count": 2}, "idea": {"_count": 1}, "tea": {"_count": 1}, "chocolate": {"_count": 1}, "food": {"_count": 1}, "sort": {"_count": 1}, "doubt": {"_count": 1}, "fun": {"_count": 2}, "like": {"_count": 1}, "Im": {"_count": 1}, "names": {"_count": 1}, "lunch": {"_count": 1}, "new": {"_count": 1}, "pudding": {"_count": 1}, "wolfish": {"_count": 1}, "questions": {"_count": 1}, "objection": {"_count": 1}}, "fit": {"_count": 1, "the": {"_count": 1}}, "classes": {"_count": 1, "with": {"_count": 1}}, "let": {"_count": 18, "it": {"_count": 1}, "Voldemort": {"_count": 1}, "him": {"_count": 1}, "Professor": {"_count": 1}, "Lee": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 2}, "any": {"_count": 1}, "you": {"_count": 2}, "Harry": {"_count": 1}, "her": {"_count": 1}, "Luna": {"_count": 1}, "me": {"_count": 1}, "us": {"_count": 1}, "such": {"_count": 1}}, "none": {"_count": 1, "For": {"_count": 1}}, "tried": {"_count": 9, "it": {"_count": 3}, "to": {"_count": 5}, "again": {"_count": 1}}, "pleased": {"_count": 1, "him": {"_count": 1}}, "seen": {"_count": 45, "their": {"_count": 1}, "or": {"_count": 1}, "what": {"_count": 3}, "you": {"_count": 2}, "her": {"_count": 3}, "me": {"_count": 1}, "him": {"_count": 2}, "Professor": {"_count": 1}, "that": {"_count": 3}, "during": {"_count": 1}, "it": {"_count": 5}, "to": {"_count": 1}, "Not": {"_count": 1}, "Lord": {"_count": 1}, "this": {"_count": 3}, "death": {"_count": 1}, "the": {"_count": 4}, "as": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 2}, "something": {"_count": 1}, "your": {"_count": 3}, "when": {"_count": 1}}, "also": {"_count": 5, "been": {"_count": 2}, "inherited": {"_count": 1}, "sprouted": {"_count": 1}, "heard": {"_count": 1}}, "told": {"_count": 50, "us": {"_count": 5}, "me": {"_count": 5}, "them": {"_count": 2}, "him": {"_count": 6}, "Lupin": {"_count": 1}, "everyone": {"_count": 1}, "you": {"_count": 16}, "Fleur": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 2}, "Hagrid": {"_count": 1}, "her": {"_count": 3}, "Dumbledore": {"_count": 1}, "Arthur": {"_count": 1}, "Hermione": {"_count": 1}, "Voldemort": {"_count": 1}, "Bellatrix": {"_count": 1}, "Flitwick": {"_count": 1}}, "we": {"_count": 7, "got": {"_count": 2}, "found": {"_count": 1}, "": {"_count": 2}, "had": {"_count": 1}, "been": {"_count": 1}}, "an": {"_count": 18, "extraordinary": {"_count": 1}, "egg": {"_count": 1}, "owl": {"_count": 2}, "excuse": {"_count": 1}, "interesting": {"_count": 1}, "alternative": {"_count": 1}, "hour": {"_count": 1}, "entire": {"_count": 1}, "escaped": {"_count": 1}, "\u2018Exceeds": {"_count": 1}, "appointment": {"_count": 3}, "accident": {"_count": 1}, "office": {"_count": 1}, "unusual": {"_count": 1}, "innocent": {"_count": 1}}, "struck": {"_count": 4, "Malfoy": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "any": {"_count": 1}}, "broken": {"_count": 7, "your": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 2}, "any": {"_count": 1}, "his": {"_count": 1}, "into": {"_count": 1}}, "tipped": {"_count": 1, "him": {"_count": 1}}, "hurried": {"_count": 1, "off": {"_count": 1}}, "another": {"_count": 14, "one": {"_count": 1}, "look": {"_count": 1}, "little": {"_count": 1}, "visitor": {"_count": 1}, "Head": {"_count": 1}, "go": {"_count": 2}, "round": {"_count": 1}, "year": {"_count": 1}, "five": {"_count": 1}, "word": {"_count": 1}, "peaceful": {"_count": 1}, "clear": {"_count": 1}, "glimpse": {"_count": 1}}, "two": {"_count": 4, "Beaters": {"_count": 1}, "minutes": {"_count": 1}, "more": {"_count": 1}, "last": {"_count": 1}}, "our": {"_count": 4, "name": {"_count": 1}, "three": {"_count": 1}, "first": {"_count": 1}, "things": {"_count": 1}}, "played": {"_count": 2, "for": {"_count": 1}, "my": {"_count": 1}}, "heard": {"_count": 31, "the": {"_count": 6}, "of": {"_count": 4}, "him": {"_count": 4}, "when": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}, "Hermione": {"_count": 1}, "while": {"_count": 1}, "enough": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 2}, "Hagrids": {"_count": 1}, "her": {"_count": 2}, "his": {"_count": 2}, "Lavender": {"_count": 1}, "differently": {"_count": 1}}, "time": {"_count": 14, "to": {"_count": 11}, "after": {"_count": 1}, "for": {"_count": 1}, "later": {"_count": 1}}, "taken": {"_count": 30, "on": {"_count": 1}, "the": {"_count": 4}, "to": {"_count": 3}, "Hagrid": {"_count": 1}, "all": {"_count": 1}, "Scabberss": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}, "fifty": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 4}, "most": {"_count": 1}, "it": {"_count": 1}, "Freds": {"_count": 1}, "kindly": {"_count": 1}, "her": {"_count": 2}, "": {"_count": 2}, "advantage": {"_count": 1}, "over": {"_count": 1}, "them": {"_count": 1}}, "gotten": {"_count": 4, "more": {"_count": 1}, "through": {"_count": 2}, "it": {"_count": 1}}, "needed": {"_count": 4, "saving": {"_count": 1}, "an": {"_count": 1}, "to": {"_count": 1}, "Horcruxes": {"_count": 1}}, "it": {"_count": 40, "": {"_count": 8}, "Rosmerta": {"_count": 1}, "back": {"_count": 7}, "Severus": {"_count": 1}, "ready": {"_count": 2}, "said": {"_count": 2}, "again": {"_count": 1}, "too": {"_count": 1}, "boy": {"_count": 1}, "chewing": {"_count": 1}, "underground": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 2}, "on": {"_count": 1}, "for": {"_count": 1}, "why": {"_count": 1}, "as": {"_count": 1}, "not": {"_count": 1}, "no": {"_count": 1}, "if": {"_count": 1}, "anymore": {"_count": 1}, "Harry": {"_count": 1}, "ripped": {"_count": 1}}, "my": {"_count": 7, "book": {"_count": 1}, "reasons": {"_count": 1}, "sources": {"_count": 1}, "Harry": {"_count": 1}, "orders": {"_count": 1}, "wand": {"_count": 1}, "room": {"_count": 1}}, "hurt": {"_count": 2, "hit": {"_count": 1}, "nobody": {"_count": 1}}, "Hagrid": {"_count": 2, "said": {"_count": 1}, "thrown": {"_count": 1}}, "changed": {"_count": 4, "her": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "my": {"_count": 1}}, "lost": {"_count": 13, "so": {"_count": 1}, "loads": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 1}, "all": {"_count": 1}, "buttocks": {"_count": 1}, "fingers": {"_count": 1}, "count": {"_count": 1}, "at": {"_count": 1}, "half": {"_count": 1}}, "woken": {"_count": 2, "me": {"_count": 1}, "up": {"_count": 1}}, "walked": {"_count": 4, "straight": {"_count": 2}, "out": {"_count": 1}, "in": {"_count": 1}}, "discovered": {"_count": 3, "the": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}}, "wasted": {"_count": 2, "away": {"_count": 1}, "months": {"_count": 1}}, "quite": {"_count": 4, "the": {"_count": 1}, "enough": {"_count": 2}, "liked": {"_count": 1}}, "laughed": {"_count": 1, "out": {"_count": 1}}, "minded": {"_count": 2, "but": {"_count": 1}, "she": {"_count": 1}}, "started": {"_count": 2, "studying": {"_count": 1}, "training": {"_count": 1}}, "Charlies": {"_count": 1, "answer": {"_count": 1}}, "hit": {"_count": 2, "him": {"_count": 1}, "It": {"_count": 1}}, "felt": {"_count": 10, "sorry": {"_count": 3}, "to": {"_count": 1}, "it": {"_count": 3}, "pain": {"_count": 1}, "that": {"_count": 1}, "strange": {"_count": 1}}, "believed": {"_count": 15, "it": {"_count": 6}, "possible": {"_count": 2}, "me": {"_count": 1}, "I": {"_count": 1}, "himself": {"_count": 1}, "for": {"_count": 1}, "him": {"_count": 1}, "this": {"_count": 1}, "Her": {"_count": 1}}, "cost": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 3, "bad": {"_count": 1}, "much": {"_count": 1}, "we": {"_count": 1}}, "gambled": {"_count": 1, "twelve": {"_count": 1}}, "showed": {"_count": 2, "in": {"_count": 1}, "you": {"_count": 1}}, "ter": {"_count": 10, "put": {"_count": 1}, "threaten": {"_count": 1}, "do": {"_count": 1}, "run": {"_count": 1}, "be": {"_count": 2}, "get": {"_count": 1}, "": {"_count": 1}, "go": {"_count": 2}}, "yeh": {"_count": 4, "seen": {"_count": 1}, "called": {"_count": 1}, "": {"_count": 1}, "Molly": {"_count": 1}}, "slain": {"_count": 1, "something": {"_count": 1}}, "but": {"_count": 2, "a": {"_count": 1}, "its": {"_count": 1}}, "scars": {"_count": 1, "burning": {"_count": 1}}, "learned": {"_count": 11, "about": {"_count": 2}, "by": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}}, "because": {"_count": 1, "Im": {"_count": 1}}, "business": {"_count": 1, "here": {"_count": 1}}, "left": {"_count": 26, "it": {"_count": 3}, "his": {"_count": 4}, "this": {"_count": 2}, "him": {"_count": 1}, "somebody": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 1}, "me": {"_count": 1}, "school": {"_count": 1}, "Harry": {"_count": 2}, "can": {"_count": 1}, "said": {"_count": 1}, "now": {"_count": 1}, "could": {"_count": 1}, "Azkaban": {"_count": 1}, "no": {"_count": 1}, "you": {"_count": 1}, "enormous": {"_count": 1}}, "him": {"_count": 8, "swooping": {"_count": 1}, "back": {"_count": 1}, "out": {"_count": 1}, "than": {"_count": 1}, "start": {"_count": 1}, "transferred": {"_count": 1}, "thrown": {"_count": 1}, "killed": {"_count": 1}}, "managed": {"_count": 4, "it": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 2}}, "bothered": {"_count": 2, "": {"_count": 2}}, "served": {"_count": 3, "him": {"_count": 2}, "better": {"_count": 1}}, "strength": {"_count": 1, "enough": {"_count": 1}}, "screamed": {"_count": 1, "but": {"_count": 1}}, "become": {"_count": 11, "": {"_count": 1}, "temporarily": {"_count": 1}, "a": {"_count": 3}, "intensely": {"_count": 1}, "one": {"_count": 1}, "strangely": {"_count": 1}, "overnight": {"_count": 1}, "more": {"_count": 1}, "solid": {"_count": 1}}, "form": {"_count": 1, "only": {"_count": 1}}, "always": {"_count": 7, "been": {"_count": 5}, "stood": {"_count": 1}, "portrayed": {"_count": 1}}, "me": {"_count": 8, "thrown": {"_count": 1}, "there": {"_count": 1}, "registered": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "followed": {"_count": 1}, "keep": {"_count": 1}}, "I": {"_count": 14, "been": {"_count": 1}, "missed": {"_count": 1}, "always": {"_count": 1}, "told": {"_count": 1}, "": {"_count": 3}, "not": {"_count": 2}, "so": {"_count": 1}, "know": {"_count": 1}, "said": {"_count": 1}, "must": {"_count": 1}, "have": {"_count": 1}}, "come": {"_count": 23, "round": {"_count": 1}, "straight": {"_count": 1}, "bursting": {"_count": 1}, "to": {"_count": 8}, "from": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 5}, "over": {"_count": 1}, "out": {"_count": 2}, "if": {"_count": 1}, "a": {"_count": 1}}, "crossed": {"_count": 4, "in": {"_count": 1}, "the": {"_count": 3}}, "kept": {"_count": 4, "him": {"_count": 2}, "you": {"_count": 1}, "from": {"_count": 1}}, "delayed": {"_count": 1, "his": {"_count": 1}}, "any": {"_count": 20, "": {"_count": 1}, "friends": {"_count": 1}, "Muggle": {"_count": 1}, "particular": {"_count": 2}, "lace": {"_count": 1}, "trouble": {"_count": 2}, "insides": {"_count": 1}, "choice": {"_count": 2}, "idea": {"_count": 3}, "worries": {"_count": 1}, "effect": {"_count": 1}, "evidence": {"_count": 1}, "customers": {"_count": 1}, "proof": {"_count": 1}, "ideas": {"_count": 1}}, "looked": {"_count": 10, "more": {"_count": 1}, "like": {"_count": 1}, "out": {"_count": 1}, "if": {"_count": 1}, "very": {"_count": 1}, "properly": {"_count": 1}, "comical": {"_count": 1}, "odd": {"_count": 1}, "after": {"_count": 1}, "but": {"_count": 1}}, "everything": {"_count": 5, "in": {"_count": 1}, "shoved": {"_count": 1}, "Sirius": {"_count": 1}, "everything": {"_count": 1}, "we": {"_count": 1}}, "er": {"_count": 2, "a": {"_count": 1}, "moved": {"_count": 1}}, "risen": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "met": {"_count": 8, "many": {"_count": 1}, "several": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}, "something": {"_count": 1}, "with": {"_count": 1}, "you": {"_count": 1}}, "them": {"_count": 10, "sir": {"_count": 1}, "covered": {"_count": 1}, "packed": {"_count": 1}, "twenty": {"_count": 1}, "": {"_count": 1}, "sprung": {"_count": 1}, "anymore": {"_count": 1}, "rounded": {"_count": 1}, "than": {"_count": 1}, "with": {"_count": 1}}, "received": {"_count": 5, "intelligence": {"_count": 2}, "enthusiastic": {"_count": 1}, "if": {"_count": 1}, "at": {"_count": 1}}, "saved": {"_count": 5, "Harry": {"_count": 1}, "me": {"_count": 1}, "her": {"_count": 1}, "Pettigrew": {"_count": 1}, "his": {"_count": 1}}, "locked": {"_count": 1, "me": {"_count": 1}}, "realized": {"_count": 12, "how": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "what": {"_count": 2}, "that": {"_count": 2}, "Crouch": {"_count": 1}, "you": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "crashed": {"_count": 1, "out": {"_count": 1}}, "liked": {"_count": 18, "it": {"_count": 2}, "by": {"_count": 1}, "to": {"_count": 5}, "nothing": {"_count": 2}, "Ron": {"_count": 1}, "Cho": {"_count": 1}, "him": {"_count": 2}, "perhaps": {"_count": 1}, "the": {"_count": 1}, "most": {"_count": 1}, "her": {"_count": 1}}, "garden": {"_count": 1, "gnomes": {"_count": 1}}, "not": {"_count": 25, "been": {"_count": 7}, "renounced": {"_count": 1}, "already": {"_count": 1}, "got": {"_count": 1}, "practiced": {"_count": 1}, "yet": {"_count": 1}, "done": {"_count": 1}, "of": {"_count": 1}, "asked": {"_count": 2}, "joined": {"_count": 1}, "told": {"_count": 2}, "inherited": {"_count": 1}, "": {"_count": 1}, "acted": {"_count": 1}, "confronted": {"_count": 1}, "come": {"_count": 1}, "given": {"_count": 1}}, "favorites": {"_count": 2, "that": {"_count": 1}, "as": {"_count": 1}}, "important": {"_count": 2, "business": {"_count": 1}, "information": {"_count": 1}}, "long": {"_count": 4, "ter": {"_count": 1}, "to": {"_count": 1}, "felt": {"_count": 1}, "been": {"_count": 1}}, "great": {"_count": 4, "pleasure": {"_count": 3}, "respect": {"_count": 1}}, "these": {"_count": 2, "Harry": {"_count": 1}, "students": {"_count": 1}}, "no": {"_count": 51, "choice": {"_count": 2}, "pleasure": {"_count": 1}, "sense": {"_count": 1}, "chance": {"_count": 3}, "idea": {"_count": 15}, "parents": {"_count": 1}, "power": {"_count": 1}, "hesitation": {"_count": 1}, "wish": {"_count": 1}, "wife": {"_count": 1}, "use": {"_count": 2}, "son": {"_count": 1}, "more": {"_count": 3}, "record": {"_count": 1}, "reason": {"_count": 1}, "subtlety": {"_count": 1}, "alternative": {"_count": 1}, "further": {"_count": 1}, "time": {"_count": 2}, "answer": {"_count": 1}, "memories": {"_count": 1}, "trouble": {"_count": 1}, "wand": {"_count": 1}, "right": {"_count": 1}, "respect": {"_count": 1}, "objection": {"_count": 1}, "control": {"_count": 1}, "explanation": {"_count": 1}, "confidence": {"_count": 1}, "secrets": {"_count": 1}}, "flouted": {"_count": 1, "the": {"_count": 1}}, "points": {"_count": 1, "taken": {"_count": 1}}, "kicked": {"_count": 2, "myself": {"_count": 1}, "him": {"_count": 1}}, "here": {"_count": 2, "are": {"_count": 1}, "she": {"_count": 1}}, "leaked": {"_count": 2, "out": {"_count": 2}}, "asked": {"_count": 13, "": {"_count": 2}, "what": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "her": {"_count": 1}, "Snape": {"_count": 1}, "myself": {"_count": 1}, "me": {"_count": 1}, "Dumbledore": {"_count": 1}, "more": {"_count": 1}, "him": {"_count": 1}}, "memorized": {"_count": 1, "Harrys": {"_count": 1}}, "slept": {"_count": 1, "through": {"_count": 1}}, "won": {"_count": 4, "the": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}}, "pointed": {"_count": 1, "out": {"_count": 1}}, "all": {"_count": 8, "seized": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "returned": {"_count": 1}, "used": {"_count": 1}, "their": {"_count": 1}, "been": {"_count": 1}, "he": {"_count": 1}}, "parted": {"_count": 1, "company": {"_count": 1}}, "benefited": {"_count": 1, "from": {"_count": 1}}, "Peeves": {"_count": 1, "out": {"_count": 1}}, "everyones": {"_count": 1, "attention": {"_count": 1}}, "simply": {"_count": 1, "been": {"_count": 1}}, "reached": {"_count": 12, "their": {"_count": 1}, "his": {"_count": 1}, "me": {"_count": 2}, "an": {"_count": 1}, "our": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "your": {"_count": 1}, "": {"_count": 1}, "my": {"_count": 1}}, "feelings": {"_count": 1, "you": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "attacked": {"_count": 2, "half": {"_count": 1}, "young": {"_count": 1}}, "weve": {"_count": 1, "been": {"_count": 1}}, "something": {"_count": 8, "more": {"_count": 1}, "to": {"_count": 6}, "you": {"_count": 1}}, "The": {"_count": 1, "three": {"_count": 1}}, "explained": {"_count": 4, "": {"_count": 1}, "more": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}}, "put": {"_count": 17, "me": {"_count": 1}, "it": {"_count": 3}, "on": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "Lord": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 2}, "all": {"_count": 1}, "stringent": {"_count": 1}, "the": {"_count": 1}, "fresh": {"_count": 1}, "them": {"_count": 1}}, "survived": {"_count": 5, "a": {"_count": 2}, "the": {"_count": 2}, "": {"_count": 1}}, "healing": {"_count": 1, "powers": {"_count": 1}}, "exactly": {"_count": 1, "an": {"_count": 1}}, "bought": {"_count": 3, "a": {"_count": 2}, "Fred": {"_count": 1}}, "hidden": {"_count": 9, "powers": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 1}, "something": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 2}, "it": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "so": {"_count": 2, "far": {"_count": 1}, "much": {"_count": 1}}, "turned": {"_count": 7, "into": {"_count": 1}, "out": {"_count": 3}, "him": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 1}}, "meant": {"_count": 7, "to": {"_count": 2}, "he": {"_count": 1}, "admitting": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "anything": {"_count": 1}}, "stolen": {"_count": 5, "nobody": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 3}}, "rarely": {"_count": 2, "been": {"_count": 1}, "heard": {"_count": 1}}, "there": {"_count": 2, "been": {"_count": 1}, "": {"_count": 1}}, "voted": {"_count": 1, "Hagrid": {"_count": 1}}, "Fathers": {"_count": 1, "vote": {"_count": 1}}, "forgiven": {"_count": 1, "Ernie": {"_count": 1}}, "yelled": {"_count": 1, "even": {"_count": 1}}, "lived": {"_count": 4, "here": {"_count": 1}, "with": {"_count": 2}, "to": {"_count": 1}}, "good": {"_count": 2, "news": {"_count": 2}}, "misunderstood": {"_count": 4, "Well": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "sold": {"_count": 1, "half": {"_count": 1}}, "picked": {"_count": 7, "it": {"_count": 3}, "Ginny": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}, "out": {"_count": 1}}, "guessed": {"_count": 10, "": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "did": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}, "correctly": {"_count": 1}, "he": {"_count": 1}, "because": {"_count": 1}, "I": {"_count": 1}}, "many": {"_count": 4, "questions": {"_count": 1}, "qualities": {"_count": 1}, "faults": {"_count": 1}, "more": {"_count": 1}}, "jammed": {"_count": 2, "": {"_count": 2}}, "against": {"_count": 1, "the": {"_count": 1}}, "shown": {"_count": 11, "me": {"_count": 2}, "on": {"_count": 1}, "you": {"_count": 2}, "bravery": {"_count": 3}, "themselves": {"_count": 1}, "in": {"_count": 1}, "this": {"_count": 1}}, "called": {"_count": 5, "Fawkes": {"_count": 1}, "this": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}}, "pulled": {"_count": 4, "that": {"_count": 2}, "out": {"_count": 1}, "herself": {"_count": 1}}, "happened": {"_count": 17, "then": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 4}, "if": {"_count": 3}, "when": {"_count": 1}, "is": {"_count": 1}, "can": {"_count": 1}, "since": {"_count": 1}, "at": {"_count": 1}, "except": {"_count": 1}, "only": {"_count": 1}}, "shouted": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "recovered": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 3, "nambypamby": {"_count": 1}, "one": {"_count": 1}, "he": {"_count": 1}}, "squeezed": {"_count": 2, "it": {"_count": 1}, "under": {"_count": 1}}, "mastered": {"_count": 2, "the": {"_count": 1}, "Legilimency": {"_count": 1}}, "dealt": {"_count": 1, "with": {"_count": 1}}, "mislaid": {"_count": 1, "his": {"_count": 1}}, "lunch": {"_count": 2, "when": {"_count": 1}, "but": {"_count": 1}}, "chosen": {"_count": 7, "for": {"_count": 1}, "to": {"_count": 2}, "her": {"_count": 1}, "any": {"_count": 1}, "wrong": {"_count": 1}, "his": {"_count": 1}}, "slid": {"_count": 1, "out": {"_count": 1}}, "on": {"_count": 1, "people": {"_count": 1}}, "assigned": {"_count": 1, "us": {"_count": 1}}, "need": {"_count": 2, "of": {"_count": 2}}, "finished": {"_count": 5, "with": {"_count": 1}, "adding": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}, "hours": {"_count": 1}}, "\u2018trials": {"_count": 1, "and": {"_count": 1}}, "very": {"_count": 4, "little": {"_count": 3}, "few": {"_count": 1}}, "stroked": {"_count": 1, "them": {"_count": 1}}, "bin": {"_count": 1, "told": {"_count": 1}}, "company": {"_count": 3, "when": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}}, "brought": {"_count": 12, "you": {"_count": 2}, "along": {"_count": 2}, "it": {"_count": 1}, "them": {"_count": 1}, "whatever": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 1}, "something": {"_count": 1}}, "Mr": {"_count": 2, "Filch": {"_count": 1}, "Weasley": {"_count": 1}}, "entered": {"_count": 6, "the": {"_count": 2}, "at": {"_count": 1}, "this": {"_count": 1}, "Hokeys": {"_count": 1}, "": {"_count": 1}}, "helped": {"_count": 4, "Black": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}}, "covered": {"_count": 1, "so": {"_count": 1}}, "spoken": {"_count": 3, "out": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "kissed": {"_count": 2, "her": {"_count": 1}, "Cho": {"_count": 1}}, "mercy": {"_count": 4, "": {"_count": 4}}, "nothing": {"_count": 5, "to": {"_count": 2}, "more": {"_count": 3}}, "confiscated": {"_count": 1, "it": {"_count": 1}}, "searched": {"_count": 2, "the": {"_count": 1}, "every": {"_count": 1}}, "trouble": {"_count": 2, "believing": {"_count": 1}, "controlling": {"_count": 1}}, "planned": {"_count": 2, "this": {"_count": 1}, "for": {"_count": 1}}, "stood": {"_count": 4, "a": {"_count": 1}, "were": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}}, "wanted": {"_count": 18, "because": {"_count": 1}, "to": {"_count": 7}, "me": {"_count": 2}, "everyone": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "someone": {"_count": 1}}, "accepted": {"_count": 2, "the": {"_count": 2}}, "decided": {"_count": 11, "to": {"_count": 6}, "the": {"_count": 1}, "that": {"_count": 2}, "in": {"_count": 1}, "": {"_count": 1}}, "fallen": {"_count": 8, "out": {"_count": 1}, "away": {"_count": 1}, "over": {"_count": 1}, "in": {"_count": 2}, "by": {"_count": 1}, "given": {"_count": 1}, "to": {"_count": 1}}, "sent": {"_count": 9, "it": {"_count": 1}, "Voldemort": {"_count": 1}, "someone": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 2}, "Harry": {"_count": 1}, "Snape": {"_count": 1}, "that": {"_count": 1}}, "difficulty": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "suggested": {"_count": 4, "putting": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}}, "complete": {"_count": 1, "confidence": {"_count": 1}}, "involved": {"_count": 1, "revealing": {"_count": 1}}, "set": {"_count": 8, "the": {"_count": 1}, "up": {"_count": 1}, "a": {"_count": 2}, "them": {"_count": 1}, "it": {"_count": 1}, "out": {"_count": 1}, "off": {"_count": 1}}, "sat": {"_count": 2, "in": {"_count": 1}, "here": {"_count": 1}}, "resulted": {"_count": 1, "in": {"_count": 1}}, "just": {"_count": 11, "asked": {"_count": 1}, "saved": {"_count": 1}, "been": {"_count": 2}, "four": {"_count": 1}, "got": {"_count": 1}, "given": {"_count": 1}, "found": {"_count": 1}, "witnessed": {"_count": 2}, "started": {"_count": 1}}, "informed": {"_count": 2, "me": {"_count": 1}, "her": {"_count": 1}}, "arrived": {"_count": 7, "in": {"_count": 1}, "by": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 1}, "this": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}}, "what": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "mistaken": {"_count": 1, "the": {"_count": 1}}, "produced": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "its": {"_count": 1, "head": {"_count": 1}}, "dozed": {"_count": 1, "off": {"_count": 1}}, "shaken": {"_count": 1, "so": {"_count": 1}}, "unhinged": {"_count": 1, "Black": {"_count": 1}}, "killed": {"_count": 10, "me": {"_count": 3}, "him": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}, "Dumbledore": {"_count": 1}, "Stan": {"_count": 1}}, "missed": {"_count": 6, "the": {"_count": 1}, "a": {"_count": 2}, "it": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "understood": {"_count": 5, "Harry": {"_count": 1}, "something": {"_count": 1}, "what": {"_count": 1}, "Helena": {"_count": 1}, "the": {"_count": 1}}, "released": {"_count": 3, "him": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "permitted": {"_count": 5, "Black": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 2}}, "reason": {"_count": 2, "to": {"_count": 2}}, "meddled": {"_count": 2, "with": {"_count": 1}, "Hagrid": {"_count": 1}}, "swung": {"_count": 1, "it": {"_count": 1}}, "led": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "Disapparated": {"_count": 4, "Severus": {"_count": 1}, "": {"_count": 2}, "right": {"_count": 1}}, "bitten": {"_count": 1, "any": {"_count": 1}}, "driven": {"_count": 1, "the": {"_count": 1}}, "stepped": {"_count": 1, "in": {"_count": 1}}, "regained": {"_count": 1, "under": {"_count": 1}}, "waited": {"_count": 2, "thirteen": {"_count": 1}, "to": {"_count": 1}}, "rejoined": {"_count": 1, "us": {"_count": 1}}, "formed": {"_count": 2, "our": {"_count": 1}, "or": {"_count": 1}}, "modified": {"_count": 1, "her": {"_count": 1}}, "dearly": {"_count": 1, "loved": {"_count": 1}}, "Harry": {"_count": 2, "stay": {"_count": 1}, "continued": {"_count": 1}}, "hoped": {"_count": 5, "and": {"_count": 1}, "that": {"_count": 2}, "under": {"_count": 1}, "for": {"_count": 1}}, "eaten": {"_count": 2, "him": {"_count": 1}, "enough": {"_count": 1}}, "those": {"_count": 1, "girls": {"_count": 1}}, "too": {"_count": 4, "many": {"_count": 4}}, "breath": {"_count": 1, "to": {"_count": 1}}, "spotted": {"_count": 5, "this": {"_count": 1}, "him": {"_count": 1}, "Hagrid": {"_count": 1}, "anything": {"_count": 1}, "my": {"_count": 1}}, "bowed": {"_count": 1, "to": {"_count": 1}}, "imagined": {"_count": 5, "": {"_count": 1}, "sitting": {"_count": 1}, "Luna": {"_count": 1}, "not": {"_count": 1}, "the": {"_count": 1}}, "fun": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}}, "fetched": {"_count": 1, "this": {"_count": 1}}, "dazed": {"_count": 1, "him": {"_count": 1}}, "lasted": {"_count": 2, "longer": {"_count": 1}, "much": {"_count": 1}}, "slipped": {"_count": 3, "into": {"_count": 1}, "out": {"_count": 1}, "past": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "dared": {"_count": 5, "say": {"_count": 1}, "to": {"_count": 2}, "do": {"_count": 1}, "use": {"_count": 1}}, "now": {"_count": 6, "come": {"_count": 1}, "given": {"_count": 1}, "successfully": {"_count": 1}, "lost": {"_count": 1}, "done": {"_count": 1}, "been": {"_count": 1}}, "betrayed": {"_count": 2, "them": {"_count": 1}, "us": {"_count": 1}}, "dress": {"_count": 2, "robes": {"_count": 2}}, "split": {"_count": 1, "all": {"_count": 1}}, "suited": {"_count": 1, "him": {"_count": 1}}, "Mugglerepelling": {"_count": 1, "charms": {"_count": 1}}, "grown": {"_count": 3, "at": {"_count": 1}, "several": {"_count": 1}, "up": {"_count": 1}}, "swum": {"_count": 1, "across": {"_count": 1}}, "only": {"_count": 5, "two": {"_count": 1}, "just": {"_count": 1}, "intensified": {"_count": 1}, "ever": {"_count": 1}, "one": {"_count": 1}}, "worked": {"_count": 7, "hard": {"_count": 1}, "tirelessly": {"_count": 1}, "for": {"_count": 2}, "out": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "agreed": {"_count": 3, "to": {"_count": 2}, "with": {"_count": 1}}, "mouths": {"_count": 1, "": {"_count": 1}}, "rushed": {"_count": 1, "to": {"_count": 1}}, "really": {"_count": 1, "hurt": {"_count": 1}}, "attained": {"_count": 1, "new": {"_count": 1}}, "twentyfour": {"_count": 1, "hours": {"_count": 1}}, "dribbled": {"_count": 1, "food": {"_count": 1}}, "breakfasted": {"_count": 1, "late": {"_count": 1}}, "normally": {"_count": 1, "": {"_count": 1}}, "misheard": {"_count": 2, "what": {"_count": 1}, "Professor": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "ensured": {"_count": 1, "that": {"_count": 1}}, "dashed": {"_count": 1, "through": {"_count": 1}}, "answered": {"_count": 1, "at": {"_count": 1}}, "settled": {"_count": 1, "inside": {"_count": 1}}, "coped": {"_count": 1, "with": {"_count": 1}}, "Snape": {"_count": 1, "flat": {"_count": 1}}, "prepared": {"_count": 3, "your": {"_count": 1}, "me": {"_count": 1}, "Harry": {"_count": 1}}, "stopped": {"_count": 9, "Colin": {"_count": 1}, "arguing": {"_count": 1}, "flouting": {"_count": 1}, "showing": {"_count": 1}, "walking": {"_count": 1}, "that": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "saying": {"_count": 1}}, "NOT": {"_count": 1, "got": {"_count": 1}}, "confirmed": {"_count": 3, "Rons": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "developed": {"_count": 3, "something": {"_count": 1}, "a": {"_count": 2}}, "decent": {"_count": 1, "wages": {"_count": 1}}, "scared": {"_count": 1, "him": {"_count": 1}}, "stayed": {"_count": 5, "longer": {"_count": 1}, "behind": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}, "home": {"_count": 1}}, "each": {"_count": 1, "pulled": {"_count": 1}}, "cared": {"_count": 3, "if": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}}, "suspected": {"_count": 1, "it": {"_count": 1}}, "nicked": {"_count": 1, "enough": {"_count": 1}}, "partners": {"_count": 1, "agreed": {"_count": 1}}, "dinner": {"_count": 3, "she": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}}, "still": {"_count": 1, "got": {"_count": 1}}, "grounds": {"_count": 1, "larger": {"_count": 1}}, "cropped": {"_count": 1, "up": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "toward": {"_count": 1, "werewolves": {"_count": 1}}, "inherited": {"_count": 2, "her": {"_count": 1}, "an": {"_count": 1}}, "paid": {"_count": 2, "her": {"_count": 1}, "any": {"_count": 1}}, "congratulated": {"_count": 1, "Harry": {"_count": 1}}, "vanished": {"_count": 3, "without": {"_count": 1}, "he": {"_count": 1}, "after": {"_count": 1}}, "supported": {"_count": 1, "his": {"_count": 1}}, "precisely": {"_count": 1, "an": {"_count": 1}}, "transfigured": {"_count": 1, "himself": {"_count": 1}}, "therefore": {"_count": 2, "decided": {"_count": 1}, "trawled": {"_count": 1}}, "captured": {"_count": 1, "these": {"_count": 1}}, "Snapes": {"_count": 1, "face": {"_count": 1}}, "inflated": {"_count": 1, "your": {"_count": 1}}, "joined": {"_count": 5, "your": {"_count": 1}, "Lord": {"_count": 1}, "forces": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "spent": {"_count": 2, "a": {"_count": 1}, "more": {"_count": 1}}, "overlooked": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "her": {"_count": 5, "": {"_count": 1}, "under": {"_count": 1}, "urge": {"_count": 1}, "in": {"_count": 1}, "tiara": {"_count": 1}}, "lured": {"_count": 1, "me": {"_count": 1}}, "almost": {"_count": 1, "finished": {"_count": 1}}, "experience": {"_count": 1, "in": {"_count": 1}}, "ever": {"_count": 9, "I": {"_count": 1}, "imagined": {"_count": 1}, "known": {"_count": 2}, "shown": {"_count": 1}, "had": {"_count": 1}, "been": {"_count": 1}, "seen": {"_count": 2}}, "expected": {"_count": 19, "to": {"_count": 2}, "from": {"_count": 1}, "of": {"_count": 3}, "before": {"_count": 1}, "": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 2}, "anything": {"_count": 2}, "nothing": {"_count": 1}, "top": {"_count": 1}, "you": {"_count": 2}, "him": {"_count": 1}}, "sir": {"_count": 1, "he": {"_count": 1}}, "names": {"_count": 1, "for": {"_count": 1}}, "more": {"_count": 6, "": {"_count": 2}, "reliable": {"_count": 1}, "success": {"_count": 1}, "important": {"_count": 1}, "people": {"_count": 1}}, "knowledge": {"_count": 1, "of": {"_count": 1}}, "attracted": {"_count": 1, "your": {"_count": 1}}, "held": {"_count": 6, "the": {"_count": 2}, "on": {"_count": 1}, "its": {"_count": 1}, "it": {"_count": 1}, "students": {"_count": 1}}, "failed": {"_count": 2, "to": {"_count": 1}, "had": {"_count": 1}}, "talked": {"_count": 3, "about": {"_count": 2}, "to": {"_count": 1}}, "parents": {"_count": 1, "still": {"_count": 1}}, "carried": {"_count": 1, "all": {"_count": 1}}, "used": {"_count": 7, "some": {"_count": 1}, "his": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "fail": {"_count": 1}, "me": {"_count": 1}, "in": {"_count": 1}}, "thrown": {"_count": 1, "a": {"_count": 1}}, "drowned": {"_count": 1, "Harry": {"_count": 1}}, "prevented": {"_count": 1, "me": {"_count": 1}}, "disappointed": {"_count": 1, "me": {"_count": 1}}, "better": {"_count": 2, "victims": {"_count": 1}, "things": {"_count": 1}}, "Crabbe": {"_count": 1, "": {"_count": 1}}, "six": {"_count": 1, "missing": {"_count": 1}}, "achieved": {"_count": 7, "this": {"_count": 1}, "and": {"_count": 1}, "\u2018Exceeds": {"_count": 1}, "a": {"_count": 1}, "correct": {"_count": 1}, "that": {"_count": 1}, "something": {"_count": 1}}, "remembered": {"_count": 1, "it": {"_count": 1}}, "ruined": {"_count": 2, "all": {"_count": 2}}, "considered": {"_count": 2, "running": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 3, "that": {"_count": 1}, "common": {"_count": 1}, "a": {"_count": 1}}, "removed": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "reappeared": {"_count": 1, "": {"_count": 1}}, "emerged": {"_count": 2, "from": {"_count": 2}}, "appeared": {"_count": 3, "of": {"_count": 1}, "name": {"_count": 1}, "to": {"_count": 1}}, "shouldered": {"_count": 1, "a": {"_count": 1}}, "doubtless": {"_count": 1, "told": {"_count": 1}}, "work": {"_count": 1, "for": {"_count": 1}}, "sprouted": {"_count": 1, "little": {"_count": 1}}, "surged": {"_count": 1, "through": {"_count": 1}}, "ago": {"_count": 1, "": {"_count": 1}}, "caused": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "sprung": {"_count": 2, "up": {"_count": 2}}, "interrogated": {"_count": 1, "the": {"_count": 1}}, "lifted": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "invented": {"_count": 1, "Extendable": {"_count": 1}}, "welcomed": {"_count": 1, "a": {"_count": 1}}, "spies": {"_count": 1, "inside": {"_count": 1}}, "last": {"_count": 3, "time": {"_count": 3}}, "cut": {"_count": 1, "out": {"_count": 1}}, "bet": {"_count": 1, "Oh": {"_count": 1}}, "ordered": {"_count": 1, "the": {"_count": 1}}, "swollen": {"_count": 1, "to": {"_count": 1}}, "scattered": {"_count": 1, "themselves": {"_count": 1}}, "appointed": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 2, "thinking": {"_count": 1}, "course": {"_count": 1}}, "committed": {"_count": 2, "the": {"_count": 1}, "those": {"_count": 1}}, "written": {"_count": 6, "to": {"_count": 2}, "all": {"_count": 1}, "of": {"_count": 1}, "them": {"_count": 1}, "on": {"_count": 1}}, "recently": {"_count": 2, "disclosed": {"_count": 1}, "sustained": {"_count": 1}}, "flown": {"_count": 2, "to": {"_count": 1}, "around": {"_count": 1}}, "touched": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "warned": {"_count": 1, "you": {"_count": 1}}, "plowed": {"_count": 1, "on": {"_count": 1}}, "affected": {"_count": 1, "her": {"_count": 1}}, "hated": {"_count": 1, "Harry": {"_count": 1}}, "swelled": {"_count": 1, "in": {"_count": 1}}, "followed": {"_count": 2, "any": {"_count": 1}, "us": {"_count": 1}}, "other": {"_count": 1, "queries": {"_count": 1}}, "devised": {"_count": 1, "our": {"_count": 1}}, "studied": {"_count": 3, "the": {"_count": 2}, "wandlore": {"_count": 1}}, "traveled": {"_count": 2, "exceptionally": {"_count": 1}, "widely": {"_count": 1}}, "dragged": {"_count": 1, "on": {"_count": 1}}, "swallowed": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "hinted": {"_count": 1, "above": {"_count": 1}}, "escaped": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "merpeople": {"_count": 1, "rounded": {"_count": 1}}, "powers": {"_count": 2, "to": {"_count": 1}, "beyond": {"_count": 1}}, "included": {"_count": 1, "the": {"_count": 1}}, "resigned": {"_count": 1, "in": {"_count": 1}}, "awarded": {"_count": 1, "you": {"_count": 1}}, "allowed": {"_count": 4, "you": {"_count": 1}, "such": {"_count": 1}, "us": {"_count": 1}, "The": {"_count": 1}}, "restricted": {"_count": 1, "himself": {"_count": 1}}, "hers": {"_count": 2, "she": {"_count": 1}, "instead": {"_count": 1}}, "run": {"_count": 4, "off": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}}, "blabbed": {"_count": 1, "to": {"_count": 1}}, "matured": {"_count": 1, "well": {"_count": 1}}, "applied": {"_count": 3, "regularly": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "perfected": {"_count": 1, "one": {"_count": 1}}, "Quidditch": {"_count": 1, "teams": {"_count": 1}}, "appealed": {"_count": 1, "to": {"_count": 1}}, "ruptured": {"_count": 1, "said": {"_count": 1}}, "real": {"_count": 1, "need": {"_count": 1}}, "forbidden": {"_count": 1, "her": {"_count": 1}}, "attempted": {"_count": 2, "a": {"_count": 1}, "before": {"_count": 1}}, "less": {"_count": 3, "authority": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}}, "supreme": {"_count": 1, "authority": {"_count": 1}}, "jus": {"_count": 1, "got": {"_count": 1}}, "strung": {"_count": 1, "a": {"_count": 1}}, "counted": {"_count": 1, "the": {"_count": 1}}, "indicated": {"_count": 1, "jubilation": {"_count": 1}}, "plenty": {"_count": 2, "of": {"_count": 2}}, "portraits": {"_count": 1, "hanging": {"_count": 1}}, "destroyed": {"_count": 4, "my": {"_count": 1}, "another": {"_count": 1}, "Aberforth": {"_count": 1}, "Kendra": {"_count": 1}}, "breakfast": {"_count": 1, "and": {"_count": 1}}, "enjoyed": {"_count": 1, "a": {"_count": 1}}, "dropped": {"_count": 3, "": {"_count": 1}, "Stinkpellets": {"_count": 1}, "ten": {"_count": 1}}, "dreamed": {"_count": 6, "of": {"_count": 4}, "that": {"_count": 2}}, "crawled": {"_count": 1, "into": {"_count": 1}}, "unlimited": {"_count": 1, "leisure": {"_count": 1}}, "forged": {"_count": 1, "some": {"_count": 1}}, "visited": {"_count": 3, "the": {"_count": 3}}, "extended": {"_count": 1, "the": {"_count": 1}}, "sliced": {"_count": 1, "into": {"_count": 1}}, "rallied": {"_count": 1, "around": {"_count": 1}}, "strict": {"_count": 1, "guidelines": {"_count": 1}}, "humbled": {"_count": 1, "Umbridge": {"_count": 1}}, "dreams": {"_count": 1, "about": {"_count": 1}}, "twelve": {"_count": 1, "children": {"_count": 1}}, "Lord": {"_count": 1, "Voldemorts": {"_count": 1}}, "dismissed": {"_count": 1, "her": {"_count": 1}}, "every": {"_count": 2, "right": {"_count": 1}, "time": {"_count": 1}}, "succeeded": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}}, "preferred": {"_count": 4, "to": {"_count": 1}, "not": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}}, "mapped": {"_count": 1, "the": {"_count": 1}}, "unraveled": {"_count": 1, "the": {"_count": 1}}, "Seen": {"_count": 1, "I": {"_count": 1}}, "couldnt": {"_count": 1, "you": {"_count": 1}}, "testimony": {"_count": 1, "from": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "absolutely": {"_count": 1, "no": {"_count": 1}}, "witnessed": {"_count": 1, "the": {"_count": 1}}, "five": {"_count": 1, "from": {"_count": 1}}, "Stunned": {"_count": 2, "the": {"_count": 1}, "Minerva": {"_count": 1}}, "knocked": {"_count": 1, "desks": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "messed": {"_count": 1, "up": {"_count": 1}}, "scraped": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 2, "to": {"_count": 1}, "I": {"_count": 1}}, "Harrys": {"_count": 1, "most": {"_count": 1}}, "GrubblyPlank": {"_count": 1, "yehll": {"_count": 1}}, "probably": {"_count": 1, "already": {"_count": 1}}, "opened": {"_count": 2, "again": {"_count": 1}, "that": {"_count": 1}}, "sacked": {"_count": 1, "him": {"_count": 1}}, "hours": {"_count": 1, "ahead": {"_count": 1}}, "spread": {"_count": 1, "people": {"_count": 1}}, "added": {"_count": 2, "extra": {"_count": 1}, "Gemino": {"_count": 1}}, "nearhuman": {"_count": 1, "intelligence": {"_count": 1}}, "unsteadied": {"_count": 1, "him": {"_count": 1}}, "irked": {"_count": 1, "me": {"_count": 1}}, "repaired": {"_count": 1, "itself": {"_count": 1}}, "reflected": {"_count": 1, "the": {"_count": 1}}, "thoroughly": {"_count": 1, "earned": {"_count": 1}}, "seemed": {"_count": 3, "much": {"_count": 1}, "more": {"_count": 1}, "an": {"_count": 1}}, "mistreated": {"_count": 1, "and": {"_count": 1}}, "awoken": {"_count": 3, "her": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}}, "recognized": {"_count": 6, "the": {"_count": 2}, "that": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "watched": {"_count": 2, "you": {"_count": 2}}, "such": {"_count": 3, "a": {"_count": 3}}, "proved": {"_count": 2, "that": {"_count": 1}, "themselves": {"_count": 1}}, "placed": {"_count": 3, "the": {"_count": 2}, "upon": {"_count": 1}}, "thrice": {"_count": 1, "defied": {"_count": 1}}, "power": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "marked": {"_count": 1, "the": {"_count": 1}}, "\u2018power": {"_count": 2, "the": {"_count": 2}}, "wondered": {"_count": 2, "why": {"_count": 1}, "who": {"_count": 1}}, "fifty": {"_count": 1, "points": {"_count": 1}}, "lessened": {"_count": 1, "slightly": {"_count": 1}}, "us": {"_count": 2, "to": {"_count": 1}, "all": {"_count": 1}}, "somehow": {"_count": 2, "foreseen": {"_count": 1}, "hoodwinked": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "moved": {"_count": 2, "into": {"_count": 1}, "fairly": {"_count": 1}}, "caved": {"_count": 1, "in": {"_count": 1}}, "murdered": {"_count": 2, "her": {"_count": 1}, "at": {"_count": 1}}, "clearly": {"_count": 1, "realized": {"_count": 1}}, "guests": {"_count": 1, "said": {"_count": 1}}, "returned": {"_count": 5, "to": {"_count": 1}, "from": {"_count": 1}, "he": {"_count": 1}, "nevertheless": {"_count": 1}, "at": {"_count": 1}}, "nowhere": {"_count": 1, "else": {"_count": 1}}, "hitherto": {"_count": 1, "refused": {"_count": 1}}, "invited": {"_count": 3, "me": {"_count": 2}, "friends": {"_count": 1}}, "robbed": {"_count": 1, "him": {"_count": 1}}, "corresponded": {"_count": 1, "of": {"_count": 1}}, "however": {"_count": 2, "vacated": {"_count": 1}, "great": {"_count": 1}}, "clarified": {"_count": 1, "the": {"_count": 1}}, "indeed": {"_count": 1, "inherited": {"_count": 1}}, "inflicted": {"_count": 1, "upon": {"_count": 1}}, "at": {"_count": 2, "least": {"_count": 2}}, "trespassed": {"_count": 1, "upon": {"_count": 1}}, "deserted": {"_count": 1, "him": {"_count": 1}}, "urgent": {"_count": 1, "matters": {"_count": 1}}, "forced": {"_count": 4, "the": {"_count": 1}, "their": {"_count": 1}, "her": {"_count": 1}, "Albus": {"_count": 1}}, "Tonks": {"_count": 1, "in": {"_count": 1}}, "tightened": {"_count": 1, "security": {"_count": 1}}, "cooler": {"_count": 1, "friends": {"_count": 1}}, "referred": {"_count": 2, "to": {"_count": 2}}, "increased": {"_count": 1, "in": {"_count": 1}}, "loved": {"_count": 2, "to": {"_count": 2}}, "landed": {"_count": 2, "himself": {"_count": 1}, "in": {"_count": 1}}, "evidently": {"_count": 1, "decided": {"_count": 1}}, "assured": {"_count": 1, "the": {"_count": 1}}, "particularly": {"_count": 1, "after": {"_count": 1}}, "earned": {"_count": 2, "her": {"_count": 1}, "that": {"_count": 1}}, "smelled": {"_count": 1, "at": {"_count": 1}}, "progressed": {"_count": 1, "furthest": {"_count": 1}}, "arranged": {"_count": 3, "with": {"_count": 1}, "that": {"_count": 1}, "matters": {"_count": 1}}, "wished": {"_count": 1, "": {"_count": 1}}, "contributed": {"_count": 1, "to": {"_count": 1}}, "fought": {"_count": 2, "him": {"_count": 1}, "said": {"_count": 1}}, "worried": {"_count": 1, "Ron": {"_count": 1}}, "yer": {"_count": 1, "fingers": {"_count": 1}}, "yielded": {"_count": 1, "any": {"_count": 1}}, "loads": {"_count": 1, "better": {"_count": 1}}, "brushed": {"_count": 1, "the": {"_count": 1}}, "inadvertently": {"_count": 1, "I": {"_count": 1}}, "happily": {"_count": 3, "exchanged": {"_count": 1}, "forgone": {"_count": 1}, "lain": {"_count": 1}}, "read": {"_count": 2, "before": {"_count": 1}, "whispered": {"_count": 1}}, "taught": {"_count": 2, "me": {"_count": 1}, "thousands": {"_count": 1}}, "abandoned": {"_count": 2, "her": {"_count": 1}, "restraint": {"_count": 1}}, "borrowed": {"_count": 1, "to": {"_count": 1}}, "feared": {"_count": 1, "my": {"_count": 1}}, "wreaked": {"_count": 1, "much": {"_count": 1}}, "shunned": {"_count": 1, "normal": {"_count": 1}}, "ample": {"_count": 1, "opportunity": {"_count": 1}}, "healed": {"_count": 1, "at": {"_count": 1}}, "confided": {"_count": 1, "in": {"_count": 1}}, "collected": {"_count": 1, "": {"_count": 1}}, "excited": {"_count": 1, "him": {"_count": 1}}, "experienced": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "expired": {"_count": 1, "within": {"_count": 1}}, "registered": {"_count": 1, "with": {"_count": 1}}, "whipped": {"_count": 1, "him": {"_count": 1}}, "mixed": {"_count": 1, "up": {"_count": 1}}, "lots": {"_count": 1, "of": {"_count": 1}}, "Malfoy": {"_count": 1, "followed": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "foreseen": {"_count": 1, "never": {"_count": 1}}, "exerted": {"_count": 2, "your": {"_count": 1}, "a": {"_count": 1}}, "exercised": {"_count": 1, "all": {"_count": 1}}, "drawn": {"_count": 2, "from": {"_count": 1}, "more": {"_count": 1}}, "remained": {"_count": 1, "here": {"_count": 1}}, "twice": {"_count": 1, "I": {"_count": 1}}, "experimented": {"_count": 1, "I": {"_count": 1}}, "pushed": {"_count": 1, "the": {"_count": 1}}, "ideas": {"_count": 1, "said": {"_count": 1}}, "retrieved": {"_count": 1, "that": {"_count": 1}}, "scribbled": {"_count": 1, "something": {"_count": 1}}, "improved": {"_count": 1, "him": {"_count": 1}}, "dried": {"_count": 1, "out": {"_count": 1}}, "sustained": {"_count": 2, "": {"_count": 1}, "heavy": {"_count": 1}}, "excellent": {"_count": 1, "contacts": {"_count": 1}}, "reserved": {"_count": 1, "the": {"_count": 1}}, "occurred": {"_count": 2, "to": {"_count": 2}}, "treated": {"_count": 1, "it": {"_count": 1}}, "imparted": {"_count": 1, "in": {"_count": 1}}, "endured": {"_count": 1, "all": {"_count": 1}}, "flitted": {"_count": 1, "into": {"_count": 1}}, "Katie": {"_count": 1, "back": {"_count": 1}}, "gladly": {"_count": 1, "exchanged": {"_count": 1}}, "suffered": {"_count": 3, "damage": {"_count": 1}, "a": {"_count": 1}, "several": {"_count": 1}}, "hung": {"_count": 1, "round": {"_count": 1}}, "glimpsed": {"_count": 1, "": {"_count": 1}}, "suspicions": {"_count": 1, "that": {"_count": 1}}, "discussed": {"_count": 1, "this": {"_count": 1}}, "once": {"_count": 1, "left": {"_count": 1}}, "gathered": {"_count": 1, "is": {"_count": 1}}, "detected": {"_count": 1, "something": {"_count": 1}}, "sealed": {"_count": 1, "again": {"_count": 1}}, "acted": {"_count": 1, "upon": {"_count": 1}}, "perhaps": {"_count": 1, "realized": {"_count": 1}}, "blown": {"_count": 1, "everything": {"_count": 1}}, "exhausted": {"_count": 2, "his": {"_count": 2}}, "Stupefied": {"_count": 1, "Flitwick": {"_count": 1}}, "infiltrated": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "difficulty": {"_count": 1}}, "several": {"_count": 1, "people": {"_count": 1}}, "announced": {"_count": 1, "that": {"_count": 1}}, "defeated": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "working": {"_count": 1, "to": {"_count": 1}}, "summoned": {"_count": 2, "it": {"_count": 1}, "Voldemort": {"_count": 1}}, "amplified": {"_count": 1, "his": {"_count": 1}}, "regarded": {"_count": 1, "it": {"_count": 1}}, "toughened": {"_count": 1, "her": {"_count": 1}}, "slunk": {"_count": 1, "inside": {"_count": 1}}, "succumbed": {"_count": 1, "for": {"_count": 1}}, "stretched": {"_count": 1, "the": {"_count": 1}}, "powerful": {"_count": 1, "evidence": {"_count": 1}}, "flesh": {"_count": 1, "memories": {"_count": 1}}, "enchanted": {"_count": 1, "this": {"_count": 1}}, "singled": {"_count": 1, "you": {"_count": 1}}, "stabbed": {"_count": 1, "him": {"_count": 1}}, "intervened": {"_count": 1, "if": {"_count": 1}}, "old": {"_count": 1, "photographs": {"_count": 1}}, "whole": {"_count": 1, "crowds": {"_count": 1}}, "b": {"_count": 1, "been": {"_count": 1}}, "nested": {"_count": 1, "in": {"_count": 1}}, "appreciated": {"_count": 1, "their": {"_count": 1}}, "belonged": {"_count": 4, "to": {"_count": 4}}, "stuck": {"_count": 1, "on": {"_count": 1}}, "magic": {"_count": 2, "that": {"_count": 2}}, "gained": {"_count": 2, "her": {"_count": 1}, "an": {"_count": 1}}, "tracked": {"_count": 1, "you": {"_count": 1}}, "deduced": {"_count": 1, "what": {"_count": 1}}, "provoked": {"_count": 1, "open": {"_count": 1}}, "defended": {"_count": 1, "you": {"_count": 1}}, "obtained": {"_count": 2, "magical": {"_count": 1}, "your": {"_count": 1}}, "\u2018stolen": {"_count": 1, "magic": {"_count": 1}}, "proven": {"_count": 1, "to": {"_count": 1}}, "disapproved": {"_count": 1, "he": {"_count": 1}}, "regretted": {"_count": 1, "it": {"_count": 1}}, "married": {"_count": 1, "her": {"_count": 1}}, "backed": {"_count": 1, "Harry": {"_count": 1}}, "revealed": {"_count": 1, "itself": {"_count": 1}}, "misgivings": {"_count": 1, "": {"_count": 1}}, "transported": {"_count": 1, "Mrs": {"_count": 1}}, "mentioned": {"_count": 1, "it": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "departed": {"_count": 1, "their": {"_count": 1}}, "little": {"_count": 1, "pictures": {"_count": 1}}, "dogged": {"_count": 1, "the": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "staked": {"_count": 1, "his": {"_count": 1}}, "lain": {"_count": 2, "on": {"_count": 1}, "dormant": {"_count": 1}}, "frozen": {"_count": 1, "as": {"_count": 1}}, "expressed": {"_count": 1, "that": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "descendants": {"_count": 1, "though": {"_count": 1}}, "sought": {"_count": 1, "them": {"_count": 1}}, "hosted": {"_count": 1, "a": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "Griphook": {"_count": 1, "": {"_count": 1}}, "envied": {"_count": 1, "anyone": {"_count": 1}}, "snapped": {"_count": 1, "the": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "re": {"_count": 1, "formed": {"_count": 1}}, "goblin": {"_count": 1, "friends": {"_count": 1}}, "laid": {"_count": 1, "Dobby": {"_count": 1}}, "instructions": {"_count": 1, "he": {"_count": 1}}, "disguised": {"_count": 1, "Hermione": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "free": {"_count": 1, "rein": {"_count": 1}}, "calmed": {"_count": 1, "her": {"_count": 1}}, "magical": {"_count": 1, "properties": {"_count": 1}}, "until": {"_count": 1, "midnight": {"_count": 1}}, "badgered": {"_count": 1, "me": {"_count": 1}}, "penetrated": {"_count": 1, "": {"_count": 1}}, "performed": {"_count": 2, "extraordinary": {"_count": 1}, "my": {"_count": 1}}, "contacted": {"_count": 1, "Hogwarts": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "trapped": {"_count": 1, "the": {"_count": 1}}, "usurped": {"_count": 1, "Luciuss": {"_count": 1}}, "things": {"_count": 1, "to": {"_count": 1}}, "protected": {"_count": 1, "him": {"_count": 1}}, "spied": {"_count": 1, "for": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "launched": {"_count": 1, "himself": {"_count": 1}}, "sneaked": {"_count": 1, "back": {"_count": 1}}, "sped": {"_count": 1, "up": {"_count": 1}}, "bypassed": {"_count": 1, "thought": {"_count": 1}}, "usually": {"_count": 1, "been": {"_count": 1}}, "journeyed": {"_count": 1, "together": {"_count": 1}}, "predicted": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "leadership": {"_count": 1, "thrust": {"_count": 1}}}, "large": {"_count": 640, "mustache": {"_count": 1, "": {"_count": 1}}, "tawny": {"_count": 2, "owl": {"_count": 2}}, "order": {"_count": 1, "of": {"_count": 1}}, "doughnut": {"_count": 1, "in": {"_count": 1}}, "spotted": {"_count": 4, "handkerchief": {"_count": 2}, "silk": {"_count": 1}, "toadstool": {"_count": 1}}, "pink": {"_count": 3, "beach": {"_count": 1}, "face": {"_count": 1}, "hand": {"_count": 1}}, "blond": {"_count": 5, "boy": {"_count": 1}, "head": {"_count": 2}, "muscular": {"_count": 1}, "Death": {"_count": 1}}, "purple": {"_count": 10, "face": {"_count": 4}, "turban": {"_count": 1}, "bubbles": {"_count": 1}, "fist": {"_count": 1}, "hands": {"_count": 1}, "bat": {"_count": 1}, "lump": {"_count": 1}}, "chocolate": {"_count": 2, "ice": {"_count": 1}, "gateau": {"_count": 1}}, "brandy": {"_count": 2, "": {"_count": 2}}, "metal": {"_count": 2, "tub": {"_count": 1}, "bowl": {"_count": 1}}, "letter": {"_count": 2, "H": {"_count": 2}}, "birdcage": {"_count": 2, "which": {"_count": 1}, "standing": {"_count": 1}}, "rock": {"_count": 4, "way": {"_count": 1}, "emerge": {"_count": 1}, "was": {"_count": 1}, "her": {"_count": 1}}, "sticky": {"_count": 1, "chocolate": {"_count": 1}}, "balloon": {"_count": 1, "was": {"_count": 1}}, "enough": {"_count": 7, "even": {"_count": 1}, "for": {"_count": 3}, "to": {"_count": 2}, "": {"_count": 1}}, "ledgers": {"_count": 1, "weighing": {"_count": 1}}, "ice": {"_count": 1, "creams": {"_count": 1}}, "as": {"_count": 13, "paving": {"_count": 1}, "possible": {"_count": 1}, "cabbages": {"_count": 1}, "theirs": {"_count": 1}, "these": {"_count": 1}, "a": {"_count": 2}, "this": {"_count": 1}, "the": {"_count": 2}, "saucers": {"_count": 1}, "tennis": {"_count": 1}, "sledges": {"_count": 1}}, "cage": {"_count": 4, "that": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "on": {"_count": 1}}, "clock": {"_count": 3, "over": {"_count": 1}, "that": {"_count": 1}, "ticking": {"_count": 1}}, "owl": {"_count": 1, "": {"_count": 1}}, "crowd": {"_count": 6, "of": {"_count": 3}, "jostling": {"_count": 1}, "swarming": {"_count": 1}, "around": {"_count": 1}}, "bite": {"_count": 1, "out": {"_count": 1}}, "front": {"_count": 2, "teeth": {"_count": 2}}, "gold": {"_count": 4, "chair": {"_count": 1}, "pocket": {"_count": 1}, "watch": {"_count": 1}, "letters": {"_count": 1}}, "teapot": {"_count": 1, "and": {"_count": 1}}, "marble": {"_count": 1, "which": {"_count": 1}}, "screech": {"_count": 1, "owls": {"_count": 1}}, "parcel": {"_count": 1, "and": {"_count": 1}}, "wooden": {"_count": 7, "crate": {"_count": 2}, "trunk": {"_count": 1}, "block": {"_count": 1}, "wireless": {"_count": 1}, "wardrobe": {"_count": 1}, "cased": {"_count": 1}}, "walnut": {"_count": 1, "": {"_count": 1}}, "stone": {"_count": 4, "griffin": {"_count": 1}, "pigpen": {"_count": 1}, "statues": {"_count": 1}, "reindeer": {"_count": 1}}, "banner": {"_count": 2, "on": {"_count": 1}, "stretched": {"_count": 1}}, "Gryffindor": {"_count": 2, "lion": {"_count": 1}, "banners": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}, "fir": {"_count": 1, "tree": {"_count": 1}}, "box": {"_count": 6, "of": {"_count": 4}, "next": {"_count": 1}, "stuffed": {"_count": 1}}, "yellow": {"_count": 4, "F": {"_count": 1}, "stars": {"_count": 1}, "boils": {"_count": 1}, "eyes": {"_count": 1}}, "black": {"_count": 12, "and": {"_count": 1}, "cabinet": {"_count": 2}, "camera": {"_count": 2}, "shapes": {"_count": 1}, "mass": {"_count": 1}, "spiders": {"_count": 1}, "liquidlooking": {"_count": 1}, "dog": {"_count": 1}, "mustache": {"_count": 1}, "letters": {"_count": 1}}, "book": {"_count": 2, "from": {"_count": 1}, "full": {"_count": 1}}, "crate": {"_count": 1, "": {"_count": 1}}, "crossbow": {"_count": 1, "and": {"_count": 1}}, "classroom": {"_count": 1, "where": {"_count": 1}}, "bowl": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "pile": {"_count": 10, "of": {"_count": 7}, "lay": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "silver": {"_count": 5, "key": {"_count": 1}, "noisemaker": {"_count": 1}, "something": {"_count": 1}, "eyes": {"_count": 1}, "tray": {"_count": 1}}, "his": {"_count": 1, "bottom": {"_count": 1}}, "and": {"_count": 33, "neckless": {"_count": 1}, "very": {"_count": 2}, "in": {"_count": 1}, "gray": {"_count": 2}, "thuggish": {"_count": 1}, "moldylooking": {"_count": 1}, "square": {"_count": 1}, "malevolent": {"_count": 1}, "solid": {"_count": 1}, "extremely": {"_count": 1}, "beautiful": {"_count": 2}, "slipped": {"_count": 1}, "monstrous": {"_count": 1}, "heavy": {"_count": 2}, "ferociouslooking": {"_count": 1}, "rather": {"_count": 1}, "the": {"_count": 1}, "angrylooking": {"_count": 1}, "ugly": {"_count": 1}, "oldfashioned": {"_count": 1}, "small": {"_count": 1}, "juicy": {"_count": 1}, "succulent": {"_count": 1}, "gaining": {"_count": 1}, "scaly": {"_count": 1}, "pale": {"_count": 1}, "silver": {"_count": 1}, "all": {"_count": 1}, "furry": {"_count": 1}}, "bat": {"_count": 1, "like": {"_count": 1}}, "manor": {"_count": 1, "house": {"_count": 1}}, "knobby": {"_count": 1, "bald": {"_count": 1}}, "dimly": {"_count": 2, "lit": {"_count": 2}}, "clothes": {"_count": 1, "brush": {"_count": 1}}, "strawberryandpeanutbutter": {"_count": 1, "ice": {"_count": 1}}, "pictures": {"_count": 1, "of": {"_count": 1}}, "trunks": {"_count": 3, "two": {"_count": 1}, "stood": {"_count": 1}, "lay": {"_count": 1}}, "dent": {"_count": 1, "into": {"_count": 1}}, "glass": {"_count": 2, "jars": {"_count": 1}, "ball": {"_count": 1}}, "slimy": {"_count": 1, "something": {"_count": 1}}, "plate": {"_count": 4, "of": {"_count": 4}}, "amount": {"_count": 8, "of": {"_count": 8}}, "key": {"_count": 1, "from": {"_count": 1}}, "white": {"_count": 6, "teeth": {"_count": 1}, "flakes": {"_count": 1}, "hand": {"_count": 1}, "roses": {"_count": 1}, "apron": {"_count": 1}, "stones": {"_count": 1}}, "plant": {"_count": 1, "pot": {"_count": 1}}, "supply": {"_count": 2, "of": {"_count": 2}}, "bottle": {"_count": 5, "of": {"_count": 3}, "was": {"_count": 1}, "in": {"_count": 1}}, "covered": {"_count": 1, "cage": {"_count": 1}}, "throbbing": {"_count": 1, "green": {"_count": 1}}, "diagram": {"_count": 1, "of": {"_count": 1}}, "figures": {"_count": 1, "before": {"_count": 1}}, "glistening": {"_count": 1, "slugs": {"_count": 1}}, "copper": {"_count": 3, "basin": {"_count": 1}, "kettle": {"_count": 1}, "saucepan": {"_count": 1}}, "boulder": {"_count": 1, "": {"_count": 1}}, "lilac": {"_count": 2, "blot": {"_count": 1}, "tree": {"_count": 1}}, "roll": {"_count": 2, "of": {"_count": 2}}, "glossy": {"_count": 1, "purple": {"_count": 1}}, "blackandgold": {"_count": 1, "cabinet": {"_count": 1}}, "ghost": {"_count": 1, "who": {"_count": 1}}, "puddle": {"_count": 1, "of": {"_count": 1}}, "OUT": {"_count": 1, "OF": {"_count": 1}}, "cracked": {"_count": 4, "and": {"_count": 1}, "glass": {"_count": 1}, "FoeGlass": {"_count": 1}, "black": {"_count": 1}}, "splinters": {"_count": 1, "": {"_count": 1}}, "evilsmelling": {"_count": 1, "green": {"_count": 1}}, "dungeons": {"_count": 1, "": {"_count": 1}}, "spellbook": {"_count": 1, "": {"_count": 1}}, "fan": {"_count": 1, "out": {"_count": 1}}, "clove": {"_count": 1, "of": {"_count": 1}}, "tin": {"_count": 1, "of": {"_count": 1}}, "plum": {"_count": 1, "cake": {"_count": 1}}, "mouths": {"_count": 1, "": {"_count": 1}}, "dollops": {"_count": 1, "of": {"_count": 1}}, "gulps": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "hand": {"_count": 2, "trembling": {"_count": 1}, "which": {"_count": 1}}, "lurid": {"_count": 1, "pink": {"_count": 1}}, "beaker": {"_count": 1, "of": {"_count": 1}}, "boy": {"_count": 2, "backing": {"_count": 1}, "flew": {"_count": 1}}, "mugs": {"_count": 2, "of": {"_count": 2}}, "spiders": {"_count": 1, "were": {"_count": 1}}, "sycamore": {"_count": 1, "tree": {"_count": 1}}, "turquoise": {"_count": 1, "dog": {"_count": 1}}, "oak": {"_count": 1, "": {"_count": 1}}, "paneled": {"_count": 1, "room": {"_count": 1}}, "pipe": {"_count": 1, "exposed": {"_count": 1}}, "steaming": {"_count": 1, "mug": {"_count": 1}}, "hole": {"_count": 1, "through": {"_count": 1}}, "leatherbound": {"_count": 2, "book": {"_count": 1}, "tomes": {"_count": 1}}, "empty": {"_count": 2, "cage": {"_count": 2}}, "strangely": {"_count": 1, "lopsided": {"_count": 1}}, "package": {"_count": 2, "tied": {"_count": 1}, "between": {"_count": 1}}, "snowy": {"_count": 1, "female": {"_count": 1}}, "pyramid": {"_count": 1, "": {"_count": 1}}, "jar": {"_count": 1, "of": {"_count": 1}}, "beefy": {"_count": 2, "man": {"_count": 1}, "and": {"_count": 1}}, "garden": {"_count": 1, "where": {"_count": 1}}, "amber": {"_count": 1, "eyes": {"_count": 1}}, "kiss": {"_count": 1, "on": {"_count": 1}}, "jaw": {"_count": 1, "against": {"_count": 1}}, "gulp": {"_count": 4, "of": {"_count": 4}}, "square": {"_count": 7, "houses": {"_count": 3}, "very": {"_count": 1}, "owners": {"_count": 1}, "envelope": {"_count": 1}, "package": {"_count": 1}}, "protruding": {"_count": 1, "ears": {"_count": 1}}, "photograph": {"_count": 3, "of": {"_count": 2}, "beside": {"_count": 1}}, "witch": {"_count": 1, "in": {"_count": 1}}, "iron": {"_count": 2, "cage": {"_count": 1}, "pot": {"_count": 1}}, "knobbly": {"_count": 1, "walking": {"_count": 1}}, "bag": {"_count": 4, "under": {"_count": 1}, "of": {"_count": 3}}, "lump": {"_count": 1, "indicated": {"_count": 1}}, "quantity": {"_count": 4, "of": {"_count": 4}}, "stack": {"_count": 2, "of": {"_count": 2}}, "piece": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "welcoming": {"_count": 1, "fire": {"_count": 1}}, "portrait": {"_count": 3, "of": {"_count": 3}}, "group": {"_count": 8, "of": {"_count": 7}, "including": {"_count": 1}}, "painting": {"_count": 1, "of": {"_count": 1}}, "glittering": {"_count": 1, "insect": {"_count": 1}}, "glasses": {"_count": 2, "magnified": {"_count": 1}, "full": {"_count": 1}}, "brilliantly": {"_count": 1, "orange": {"_count": 1}}, "dead": {"_count": 3, "spider": {"_count": 1}, "weight": {"_count": 1}, "frog": {"_count": 1}}, "tank": {"_count": 1, "of": {"_count": 1}}, "bombshell": {"_count": 1, "in": {"_count": 1}}, "umbrella": {"_count": 2, "Harry": {"_count": 1}, "stand": {"_count": 1}}, "slippery": {"_count": 1, "crocodile": {"_count": 1}}, "barrel": {"_count": 2, "of": {"_count": 1}, "standing": {"_count": 1}}, "ginger": {"_count": 1, "rug": {"_count": 1}}, "pointed": {"_count": 2, "witchs": {"_count": 1}, "ears": {"_count": 1}}, "spoon": {"_count": 1, "into": {"_count": 1}}, "packing": {"_count": 1, "case": {"_count": 1}}, "club": {"_count": 1, "": {"_count": 1}}, "bar": {"_count": 2, "of": {"_count": 1}, "gave": {"_count": 1}}, "picture": {"_count": 3, "of": {"_count": 3}}, "handful": {"_count": 1, "of": {"_count": 1}}, "nose": {"_count": 1, "out": {"_count": 1}}, "shape": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 1, "fighting": {"_count": 1}}, "thumps": {"_count": 1, "as": {"_count": 1}}, "tub": {"_count": 1, "of": {"_count": 1}}, "feet": {"_count": 3, "reappeared": {"_count": 1}, "dragging": {"_count": 1}, "and": {"_count": 1}}, "crystal": {"_count": 1, "ball": {"_count": 1}}, "tufts": {"_count": 1, "of": {"_count": 1}}, "gap": {"_count": 1, "in": {"_count": 1}}, "animals": {"_count": 1, "they": {"_count": 1}}, "bald": {"_count": 2, "patch": {"_count": 1}, "head": {"_count": 1}}, "chunk": {"_count": 7, "of": {"_count": 3}, "missing": {"_count": 2}, "with": {"_count": 1}, "out": {"_count": 1}}, "lunch": {"_count": 1, "though": {"_count": 1}}, "mullioned": {"_count": 1, "windows": {"_count": 1}}, "brightly": {"_count": 1, "colored": {"_count": 1}}, "red": {"_count": 5, "face": {"_count": 1}, "waterfilled": {"_count": 1}, "luminous": {"_count": 1}, "letters": {"_count": 1}, "ball": {"_count": 1}}, "bushy": {"_count": 1, "mustache": {"_count": 1}}, "for": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "collection": {"_count": 1, "of": {"_count": 1}}, "shiny": {"_count": 2, "burn": {"_count": 1}, "swellings": {"_count": 1}}, "frog": {"_count": 1, "": {"_count": 1}}, "disheveled": {"_count": 1, "shapes": {"_count": 1}}, "pot": {"_count": 2, "on": {"_count": 1}, "over": {"_count": 1}}, "parchment": {"_count": 2, "tickets": {"_count": 1}, "envelope": {"_count": 1}}, "amounts": {"_count": 3, "of": {"_count": 3}}, "number": {"_count": 5, "of": {"_count": 4}, "17": {"_count": 1}}, "groups": {"_count": 1, "at": {"_count": 1}}, "field": {"_count": 1, "toward": {"_count": 1}}, "pyramidshaped": {"_count": 1, "tent": {"_count": 1}}, "patch": {"_count": 2, "of": {"_count": 2}}, "belly": {"_count": 1, "he": {"_count": 1}}, "green": {"_count": 3, "rosette": {"_count": 1}, "shamrock": {"_count": 1}, "door": {"_count": 1}}, "tomato": {"_count": 1, "": {"_count": 1}}, "curved": {"_count": 3, "nose": {"_count": 2}, "dirty": {"_count": 1}}, "rip": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "bearded": {"_count": 1, "egg": {"_count": 1}}, "ruff": {"_count": 1, "which": {"_count": 1}}, "scroll": {"_count": 1, "of": {"_count": 1}}, "round": {"_count": 8, "as": {"_count": 1}, "green": {"_count": 1}, "table": {"_count": 1}, "amber": {"_count": 1}, "and": {"_count": 2}, "eyes": {"_count": 1}, "eye": {"_count": 1}}, "winged": {"_count": 1, "armchair": {"_count": 1}}, "he": {"_count": 2, "reached": {"_count": 1}, "saved": {"_count": 1}}, "vase": {"_count": 2, "on": {"_count": 1}, "of": {"_count": 1}}, "clear": {"_count": 1, "space": {"_count": 1}}, "portions": {"_count": 1, "of": {"_count": 1}}, "toy": {"_count": 1, "out": {"_count": 1}}, "sign": {"_count": 4, "that": {"_count": 1}, "had": {"_count": 2}, "to": {"_count": 1}}, "ornamental": {"_count": 1, "butterfly": {"_count": 1}}, "much": {"_count": 1, "larger": {"_count": 1}}, "house": {"_count": 1, "soaring": {"_count": 1}}, "fiery": {"_count": 1, "red": {"_count": 1}}, "dish": {"_count": 1, "of": {"_count": 1}}, "steakandkidney": {"_count": 1, "pudding": {"_count": 1}}, "deep": {"_count": 1, "blue": {"_count": 1}}, "roughly": {"_count": 1, "hewn": {"_count": 1}}, "quantities": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "talon": {"_count": 1, "in": {"_count": 1}}, "tentacle": {"_count": 1, "rose": {"_count": 1}}, "weight": {"_count": 1, "of": {"_count": 1}}, "barn": {"_count": 1, "owl": {"_count": 1}}, "BlastEnded": {"_count": 2, "Skrewt": {"_count": 2}}, "part": {"_count": 2, "of": {"_count": 2}}, "badge": {"_count": 1, "on": {"_count": 1}}, "space": {"_count": 1, "in": {"_count": 1}}, "mannish": {"_count": 1, "hands": {"_count": 1}}, "pale": {"_count": 5, "eyes": {"_count": 2}, "spiders": {"_count": 2}, "toad": {"_count": 1}}, "creamfilled": {"_count": 1, "chocolates": {"_count": 1}}, "but": {"_count": 2, "standing": {"_count": 1}, "it": {"_count": 1}}, "trunk": {"_count": 2, "under": {"_count": 1}, "stood": {"_count": 1}}, "figure": {"_count": 1, "eight": {"_count": 1}}, "canary": {"_count": 1, "": {"_count": 1}}, "ears": {"_count": 1, "": {"_count": 1}}, "chilly": {"_count": 1, "frosted": {"_count": 1}}, "piles": {"_count": 1, "of": {"_count": 1}}, "snowball": {"_count": 1, "thrown": {"_count": 1}}, "friend": {"_count": 1, "but": {"_count": 1}}, "arcs": {"_count": 1, "": {"_count": 1}}, "cabinet": {"_count": 1, "": {"_count": 1}}, "slits": {"_count": 1, "just": {"_count": 1}}, "blackened": {"_count": 1, "log": {"_count": 1}}, "bubble": {"_count": 2, "issued": {"_count": 1}, "": {"_count": 1}}, "bubbles": {"_count": 1, "came": {"_count": 1}}, "sponge": {"_count": 1, "cake": {"_count": 1}}, "shaggy": {"_count": 1, "black": {"_count": 1}}, "pieces": {"_count": 1, "of": {"_count": 1}}, "tears": {"_count": 2, "out": {"_count": 1}, "seeped": {"_count": 1}}, "checked": {"_count": 1, "tablecloth": {"_count": 1}}, "ham": {"_count": 1, "a": {"_count": 1}}, "rubies": {"_count": 1, "set": {"_count": 1}}, "or": {"_count": 1, "so": {"_count": 1}}, "yew": {"_count": 1, "tree": {"_count": 1}}, "snake": {"_count": 1, "slithered": {"_count": 1}}, "beads": {"_count": 1, "of": {"_count": 1}}, "furry": {"_count": 1, "ginger": {"_count": 1}}, "fat": {"_count": 1, "beetle": {"_count": 1}}, "hydrangea": {"_count": 1, "bush": {"_count": 1}}, "done": {"_count": 1, "as": {"_count": 1}}, "face": {"_count": 1, "he": {"_count": 1}}, "oversight": {"_count": 1, "of": {"_count": 1}}, "fire": {"_count": 1, "at": {"_count": 1}}, "cauldron": {"_count": 1, "of": {"_count": 1}}, "rhubarb": {"_count": 1, "crumble": {"_count": 1}}, "opal": {"_count": 1, "set": {"_count": 1}}, "batlike": {"_count": 1, "ears": {"_count": 1}}, "golden": {"_count": 1, "ring": {"_count": 1}}, "cardboard": {"_count": 1, "box": {"_count": 1}}, "dungeon": {"_count": 1, "he": {"_count": 1}}, "fly": {"_count": 2, "she": {"_count": 1}, "perched": {"_count": 1}}, "stuck": {"_count": 1, "in": {"_count": 1}}, "P": {"_count": 1, "was": {"_count": 1}}, "plateful": {"_count": 1, "of": {"_count": 1}}, "new": {"_count": 1, "sign": {"_count": 1}}, "damp": {"_count": 1, "barn": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "paper": {"_count": 2, "bag": {"_count": 1}, "bags": {"_count": 1}}, "technicolor": {"_count": 1, "kitten": {"_count": 1}}, "brown": {"_count": 1, "owl": {"_count": 1}}, "platter": {"_count": 1, "of": {"_count": 1}}, "swig": {"_count": 1, "of": {"_count": 1}}, "spiky": {"_count": 1, "black": {"_count": 1}}, "chattering": {"_count": 1, "group": {"_count": 1}}, "beech": {"_count": 1, "tree": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "silk": {"_count": 1, "cushions": {"_count": 1}}, "letters": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "blinking": {"_count": 1, "stupidly": {"_count": 1}}, "clump": {"_count": 1, "of": {"_count": 1}}, "oldfashioned": {"_count": 1, "red": {"_count": 1}}, "woman": {"_count": 1, "laden": {"_count": 1}}, "feathery": {"_count": 1, "wings": {"_count": 1}}, "turkey": {"_count": 1, "as": {"_count": 1}}, "window": {"_count": 1, "at": {"_count": 1}}, "gang": {"_count": 1, "of": {"_count": 1}}, "poster": {"_count": 2, "had": {"_count": 1}, "of": {"_count": 1}}, "bucket": {"_count": 1, "and": {"_count": 1}}, "slurp": {"_count": 1, "of": {"_count": 1}}, "handkerchief": {"_count": 1, "from": {"_count": 1}}, "today": {"_count": 1, "I": {"_count": 1}}, "bit": {"_count": 1, "and": {"_count": 1}}, "suit": {"_count": 1, "of": {"_count": 1}}, "pinch": {"_count": 1, "of": {"_count": 1}}, "broomshaped": {"_count": 1, "holes": {"_count": 1}}, "smooth": {"_count": 1, "mound": {"_count": 1}}, "fleshy": {"_count": 1, "ear": {"_count": 1}}, "mushroom": {"_count": 1, "and": {"_count": 1}}, "dog": {"_count": 1, "": {"_count": 1}}, "hourglass": {"_count": 1, "on": {"_count": 1}}, "Slytherins": {"_count": 1, "entered": {"_count": 1}}, "Slytherin": {"_count": 1, "girl": {"_count": 1}}, "circular": {"_count": 1, "room": {"_count": 1}}, "angry": {"_count": 1, "desperate": {"_count": 1}}, "blackandwhite": {"_count": 1, "picture": {"_count": 1}}, "bare": {"_count": 1, "pink": {"_count": 1}}, "rather": {"_count": 1, "clumsily": {"_count": 1}}, "mug": {"_count": 1, "between": {"_count": 1}}, "wardrobe": {"_count": 1, "then": {"_count": 1}}, "slice": {"_count": 1, "of": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "boxes": {"_count": 1, "of": {"_count": 1}}, "display": {"_count": 1, "near": {"_count": 1}}, "misty": {"_count": 1, "eyes": {"_count": 1}}, "dark": {"_count": 1, "eyes": {"_count": 1}}, "invisible": {"_count": 1, "moths": {"_count": 1}}, "wiryhaired": {"_count": 2, "youth": {"_count": 1}, "boy": {"_count": 1}}, "mouthful": {"_count": 1, "of": {"_count": 1}}, "bubbling": {"_count": 1, "cauldrons": {"_count": 1}}, "drops": {"_count": 1, "were": {"_count": 1}}, "flowery": {"_count": 1, "apron": {"_count": 1}}, "chain": {"_count": 1, "of": {"_count": 1}}, "Golden": {"_count": 1, "Snitch": {"_count": 1}}, "wrapped": {"_count": 1, "gift": {"_count": 1}}, "powder": {"_count": 1, "puff": {"_count": 1}}, "the": {"_count": 1, "leaflets": {"_count": 1}}, "blotches": {"_count": 1, "on": {"_count": 1}}, "droopy": {"_count": 1, "eyes": {"_count": 1}}, "belch": {"_count": 1, "": {"_count": 1}}, "cathedral": {"_count": 1, "whose": {"_count": 1}}, "cupboard": {"_count": 1, "that": {"_count": 1}}, "blueandwhite": {"_count": 1, "vase": {"_count": 1}}, "chunks": {"_count": 1, "of": {"_count": 1}}, "cave": {"_count": 1, "": {"_count": 1}}, "bruise": {"_count": 1, "on": {"_count": 1}}, "wad": {"_count": 1, "of": {"_count": 1}}, "hamlike": {"_count": 1, "hand": {"_count": 1}}, "sacks": {"_count": 1, "he": {"_count": 1}}, "mouth": {"_count": 1, "wide": {"_count": 1}}, "volume": {"_count": 1, "bound": {"_count": 1}}, "pots": {"_count": 1, "though": {"_count": 1}}, "basket": {"_count": 1, "of": {"_count": 1}}, "pearly": {"_count": 1, "white": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "dose": {"_count": 1, "of": {"_count": 1}}, "sunflower": {"_count": 1, "in": {"_count": 1}}, "shadow": {"_count": 1, "and": {"_count": 1}}, "bathtub": {"_count": 1, "": {"_count": 1}}, "bed": {"_count": 1, "with": {"_count": 1}}, "tureen": {"_count": 1, "in": {"_count": 1}}, "framed": {"_count": 1, "picture": {"_count": 1}}, "to": {"_count": 1, "fit": {"_count": 1}}, "bins": {"_count": 1, "the": {"_count": 1}}, "bosom": {"_count": 1, "": {"_count": 1}}, "shadows": {"_count": 1, "passed": {"_count": 1}}, "circle": {"_count": 1, "with": {"_count": 1}}, "spider": {"_count": 1, "sat": {"_count": 1}}, "suitcase": {"_count": 1, "": {"_count": 1}}, "oil": {"_count": 1, "painting": {"_count": 1}}, "loaf": {"_count": 1, "of": {"_count": 1}}, "ugly": {"_count": 1, "sea": {"_count": 1}}, "potted": {"_count": 1, "plants": {"_count": 1}}, "though": {"_count": 1, "they": {"_count": 1}}, "coat": {"_count": 1, "unless": {"_count": 1}}, "cages": {"_count": 1, "rattled": {"_count": 1}}}, "mustache": {"_count": 48, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "MOTORCYCLES": {"_count": 1, "DONT": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "missing": {"_count": 1, "that": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "quivering": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "though": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 7, "said": {"_count": 1}, "picked": {"_count": 1}, "made": {"_count": 1}, "he": {"_count": 1}, "severe": {"_count": 1}, "the": {"_count": 1}, "puffing": {"_count": 1}}, "bristled": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "furious": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "rival": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "both": {"_count": 2}}, "blowing": {"_count": 2, "hither": {"_count": 1}, "about": {"_count": 1}}, "something": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "quite": {"_count": 1}}, "flutter": {"_count": 1, "": {"_count": 1}}, "gleamed": {"_count": 1, "as": {"_count": 1}}, "curved": {"_count": 1, "above": {"_count": 1}}, "Ron": {"_count": 1, "retaliated": {"_count": 1}}, "less": {"_count": 1, "massive": {"_count": 1}}, "sitting": {"_count": 1, "again": {"_count": 1}}, "rippled": {"_count": 1, "his": {"_count": 1}}, "rippling": {"_count": 1, "indignantly": {"_count": 1}}, "no": {"_count": 1, "freckles": {"_count": 1}}, "aquiver": {"_count": 1, "": {"_count": 1}}}, "thin": {"_count": 182, "and": {"_count": 13, "blonde": {"_count": 1}, "very": {"_count": 1}, "gangling": {"_count": 1}, "balding": {"_count": 1}, "ragged": {"_count": 1}, "feeble": {"_count": 1}, "starved": {"_count": 1}, "flexible": {"_count": 1}, "he": {"_count": 1}, "looked": {"_count": 1}, "worn": {"_count": 1}, "blackhooded": {"_count": 1}, "nervouslooking": {"_count": 1}}, "face": {"_count": 8, "knobbly": {"_count": 1}, "full": {"_count": 1}, "": {"_count": 1}, "same": {"_count": 1}, "how": {"_count": 1}, "as": {"_count": 1}, "now": {"_count": 1}, "already": {"_count": 1}}, "scar": {"_count": 2, "on": {"_count": 1}, "shaped": {"_count": 1}}, "package": {"_count": 4, "and": {"_count": 1}, "he": {"_count": 1}, "carried": {"_count": 1}, "lying": {"_count": 1}}, "blackhaired": {"_count": 1, "man": {"_count": 1}}, "air": {"_count": 43, "and": {"_count": 3}, "": {"_count": 9}, "which": {"_count": 2}, "you": {"_count": 1}, "blocking": {"_count": 1}, "soon": {"_count": 1}, "at": {"_count": 2}, "next": {"_count": 1}, "surrounding": {"_count": 1}, "Aunt": {"_count": 1}, "beneath": {"_count": 1}, "in": {"_count": 4}, "had": {"_count": 1}, "straightbacked": {"_count": 1}, "over": {"_count": 1}, "all": {"_count": 1}, "to": {"_count": 1}, "pushed": {"_count": 1}, "on": {"_count": 1}, "as": {"_count": 2}, "toward": {"_count": 1}, "looking": {"_count": 1}, "extending": {"_count": 1}, "leaving": {"_count": 1}, "right": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}}, "lightningshaped": {"_count": 1, "scar": {"_count": 1}}, "nose": {"_count": 1, "touched": {"_count": 1}}, "man": {"_count": 4, "going": {"_count": 1}, "with": {"_count": 2}, "stepped": {"_count": 1}}, "her": {"_count": 2, "mouth": {"_count": 1}, "large": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "mist": {"_count": 2, "hanging": {"_count": 1}, "that": {"_count": 1}}, "jetblack": {"_count": 1, "tapers": {"_count": 1}}, "irritable": {"_count": 1, "woman": {"_count": 1}}, "book": {"_count": 1, "lay": {"_count": 1}}, "lines": {"_count": 1, "": {"_count": 1}}, "beard": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 3, "sabers": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "glittering": {"_count": 2, "venomous": {"_count": 1}, "ribbon": {"_count": 1}}, "box": {"_count": 1, "out": {"_count": 1}}, "sallow": {"_count": 2, "face": {"_count": 2}}, "mouth": {"_count": 8, "was": {"_count": 1}, "curled": {"_count": 1}, "every": {"_count": 1}, "": {"_count": 3}, "curling": {"_count": 2}}, "ink": {"_count": 1, "lines": {"_count": 1}}, "person": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "black": {"_count": 4, "mustache": {"_count": 1}, "quill": {"_count": 1}, "eyebrow": {"_count": 1}, "beard": {"_count": 1}}, "chest": {"_count": 2, "rose": {"_count": 1}, "": {"_count": 1}}, "colorless": {"_count": 1, "hair": {"_count": 1}}, "very": {"_count": 1, "thin": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "enough": {"_count": 1, "to": {"_count": 1}}, "wisp": {"_count": 1, "of": {"_count": 1}}, "gray": {"_count": 2, "scabbed": {"_count": 1}, "hair": {"_count": 1}}, "leakages": {"_count": 1, "have": {"_count": 1}}, "dark": {"_count": 2, "and": {"_count": 1}, "Seeker": {"_count": 1}}, "fingers": {"_count": 3, "were": {"_count": 1}, "still": {"_count": 1}, "his": {"_count": 1}}, "woman": {"_count": 2, "with": {"_count": 1}, "heavily": {"_count": 1}}, "like": {"_count": 1, "Dumbledore": {"_count": 1}}, "golden": {"_count": 3, "line": {"_count": 1}, "rods": {"_count": 1}, "Probe": {"_count": 1}}, "papery": {"_count": 1, "look": {"_count": 1}}, "arms": {"_count": 3, "put": {"_count": 1}, "trembled": {"_count": 1}, "to": {"_count": 1}}, "shining": {"_count": 1, "silver": {"_count": 1}}, "rising": {"_count": 1, "slowly": {"_count": 1}}, "raised": {"_count": 1, "Harry": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "wooden": {"_count": 1, "wand": {"_count": 1}}, "horsey": {"_count": 1, "face": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "balding": {"_count": 2, "redhaired": {"_count": 2}}, "again": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 2, "scars": {"_count": 1}, "fingers": {"_count": 1}}, "curtain": {"_count": 1, "": {"_count": 1}}, "pimply": {"_count": 1, "jugeared": {"_count": 1}}, "finger": {"_count": 1, "as": {"_count": 1}}, "nostrils": {"_count": 1, "flared": {"_count": 1}}, "spindly": {"_count": 1, "legs": {"_count": 1}}, "ribbons": {"_count": 1, "were": {"_count": 1}}, "flame": {"_count": 1, "flew": {"_count": 1}}, "tongue": {"_count": 1, "of": {"_count": 1}}, "slanting": {"_count": 5, "writing": {"_count": 3}, "handwriting": {"_count": 2}}, "wizard": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "trickle": {"_count": 1, "of": {"_count": 1}}, "Secrecy": {"_count": 1, "Sensor": {"_count": 1}}, "squinting": {"_count": 1, "through": {"_count": 1}}, "blankets": {"_count": 1, "": {"_count": 1}}, "fleshless": {"_count": 1, "arms": {"_count": 1}}, "legs": {"_count": 1, "now": {"_count": 1}}, "blanket": {"_count": 1, "and": {"_count": 1}}, "stream": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "laughing": {"_count": 1}}, "cut": {"_count": 1, "Bellatrix": {"_count": 1}}, "piteous": {"_count": 1, "human": {"_count": 1}}, "stick": {"_count": 1, "of": {"_count": 1}}, "sallowfaced": {"_count": 1, "sourlooking": {"_count": 1}}, "slits": {"_count": 1, "saw": {"_count": 1}}}, "blonde": {"_count": 25, "and": {"_count": 2, "had": {"_count": 1}, "curly": {"_count": 1}}, "pigtails": {"_count": 2, "stumbled": {"_count": 1}, "anxiously": {"_count": 1}}, "too": {"_count": 1, "tall": {"_count": 1}}, "hair": {"_count": 9, "and": {"_count": 2}, "was": {"_count": 2}, "streaming": {"_count": 1}, "": {"_count": 1}, "poked": {"_count": 1}, "hanging": {"_count": 1}, "Kingsley": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "mermaid": {"_count": 1, "who": {"_count": 1}}, "witch": {"_count": 3, "seated": {"_count": 1}, "irritably": {"_count": 1}, "behind": {"_count": 1}}, "girl": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "woman": {"_count": 1, "in": {"_count": 1}}, "she": {"_count": 1, "gave": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "had": {"_count": 10092, "nearly": {"_count": 10, "twice": {"_count": 1}, "bitten": {"_count": 1}, "fifteen": {"_count": 1}, "been": {"_count": 2}, "caught": {"_count": 1}, "crashed": {"_count": 1}, "lost": {"_count": 1}, "forgotten": {"_count": 1}, "reached": {"_count": 1}}, "a": {"_count": 351, "small": {"_count": 2}, "secret": {"_count": 1}, "perfectly": {"_count": 1}, "son": {"_count": 1}, "sister": {"_count": 1}, "nice": {"_count": 1}, "downpour": {"_count": 1}, "funny": {"_count": 7}, "thin": {"_count": 1}, "large": {"_count": 5}, "dream": {"_count": 2}, "tantrum": {"_count": 1}, "watch": {"_count": 1}, "furious": {"_count": 1}, "plan": {"_count": 2}, "swarthy": {"_count": 1}, "bag": {"_count": 1}, "bored": {"_count": 1}, "lotta": {"_count": 1}, "black": {"_count": 1}, "long": {"_count": 5}, "boogerflavored": {"_count": 1}, "good": {"_count": 8}, "girl": {"_count": 1}, "bossy": {"_count": 1}, "boat": {"_count": 1}, "very": {"_count": 13}, "big": {"_count": 2}, "single": {"_count": 1}, "piece": {"_count": 1}, "lot": {"_count": 6}, "couple": {"_count": 3}, "nasty": {"_count": 5}, "dark": {"_count": 1}, "powerful": {"_count": 2}, "drag": {"_count": 1}, "deep": {"_count": 2}, "word": {"_count": 2}, "bad": {"_count": 5}, "sudden": {"_count": 12}, "knack": {"_count": 2}, "bent": {"_count": 1}, "little": {"_count": 2}, "pretty": {"_count": 2}, "chance": {"_count": 4}, "houseelf": {"_count": 1}, "hard": {"_count": 3}, "cut": {"_count": 1}, "sign": {"_count": 1}, "look": {"_count": 4}, "steely": {"_count": 1}, "shabby": {"_count": 2}, "book": {"_count": 1}, "trace": {"_count": 1}, "point": {"_count": 4}, "crack": {"_count": 1}, "hairy": {"_count": 1}, "glittering": {"_count": 1}, "note": {"_count": 1}, "mustache": {"_count": 1}, "crisp": {"_count": 1}, "toe": {"_count": 1}, "pale": {"_count": 2}, "way": {"_count": 1}, "thick": {"_count": 2}, "teacher": {"_count": 2}, "few": {"_count": 3}, "practical": {"_count": 1}, "go": {"_count": 1}, "split": {"_count": 1}, "turn": {"_count": 1}, "crazy": {"_count": 1}, "great": {"_count": 6}, "stream": {"_count": 1}, "number": {"_count": 3}, "clear": {"_count": 6}, "nightmare": {"_count": 2}, "letter": {"_count": 2}, "match": {"_count": 1}, "fleeting": {"_count": 4}, "confused": {"_count": 2}, "horrible": {"_count": 2}, "spout": {"_count": 1}, "willowpatterned": {"_count": 1}, "fight": {"_count": 2}, "moments": {"_count": 1}, "shrewd": {"_count": 2}, "key": {"_count": 2}, "dangerous": {"_count": 1}, "fake": {"_count": 1}, "broad": {"_count": 1}, "front": {"_count": 1}, "penfriend": {"_count": 1}, "bit": {"_count": 8}, "wand": {"_count": 2}, "strange": {"_count": 2}, "hurried": {"_count": 1}, "handful": {"_count": 1}, "moldy": {"_count": 1}, "Defense": {"_count": 1}, "lesson": {"_count": 1}, "marked": {"_count": 1}, "strangely": {"_count": 1}, "fruity": {"_count": 1}, "Canary": {"_count": 1}, "pattern": {"_count": 1}, "giantess": {"_count": 2}, "source": {"_count": 1}, "stitch": {"_count": 1}, "knife": {"_count": 1}, "magazine": {"_count": 1}, "job": {"_count": 1}, "niffler": {"_count": 1}, "duel": {"_count": 1}, "brainwave": {"_count": 1}, "choice": {"_count": 3}, "finger": {"_count": 1}, "face": {"_count": 1}, "feeling": {"_count": 5}, "million": {"_count": 1}, "sharp": {"_count": 1}, "row": {"_count": 5}, "clearly": {"_count": 1}, "drink": {"_count": 1}, "troubled": {"_count": 1}, "dull": {"_count": 1}, "wheezy": {"_count": 1}, "mountain": {"_count": 1}, "distant": {"_count": 2}, "worse": {"_count": 1}, "most": {"_count": 2}, "tipoff": {"_count": 1}, "disciplinary": {"_count": 1}, "really": {"_count": 2}, "clue": {"_count": 1}, "sligh": {"_count": 1}, "fair": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "similar": {"_count": 1}, "right": {"_count": 1}, "stringy": {"_count": 1}, "habit": {"_count": 2}, "ruffled": {"_count": 1}, "proud": {"_count": 1}, "day": {"_count": 1}, "stab": {"_count": 1}, "nagging": {"_count": 1}, "problem": {"_count": 2}, "kind": {"_count": 2}, "weird": {"_count": 1}, "oneintwelve": {"_count": 1}, "vision": {"_count": 1}, "crumpled": {"_count": 1}, "breakout": {"_count": 1}, "field": {"_count": 1}, "toothache": {"_count": 1}, "comfortable": {"_count": 1}, "reasonable": {"_count": 1}, "proper": {"_count": 1}, "Probity": {"_count": 1}, "cardboard": {"_count": 1}, "plain": {"_count": 1}, "record": {"_count": 1}, "glimpse": {"_count": 1}, "narrow": {"_count": 2}, "pileup": {"_count": 1}, "shrunken": {"_count": 1}, "better": {"_count": 1}, "laugh": {"_count": 1}, "busy": {"_count": 1}, "hand": {"_count": 2}, "sharpfeatured": {"_count": 1}, "friend": {"_count": 1}, "student": {"_count": 1}, "permanently": {"_count": 1}, "purpose": {"_count": 1}, "free": {"_count": 1}, "thought": {"_count": 1}, "Horcrux": {"_count": 1}, "searing": {"_count": 1}, "voice": {"_count": 1}, "heavy": {"_count": 1}, "shouting": {"_count": 1}, "notebook": {"_count": 1}, "wonderful": {"_count": 1}, "profound": {"_count": 1}, "strong": {"_count": 1}, "vague": {"_count": 1}, "rather": {"_count": 1}, "goal": {"_count": 1}, "Trace": {"_count": 1}, "fit": {"_count": 1}, "cat": {"_count": 1}, "whole": {"_count": 1}, "carved": {"_count": 1}, "beard": {"_count": 1}, "gleeful": {"_count": 1}, "change": {"_count": 1}, "false": {"_count": 1}, "real": {"_count": 3}, "mark": {"_count": 1}, "family": {"_count": 1}, "fresh": {"_count": 1}, "quarrel": {"_count": 1}, "cold": {"_count": 1}, "view": {"_count": 1}, "bloody": {"_count": 1}, "new": {"_count": 1}, "pallid": {"_count": 1}, "dead": {"_count": 1}, "death": {"_count": 1}, "sense": {"_count": 1}}, "everything": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "never": {"_count": 277, "even": {"_count": 2}, "seen": {"_count": 61}, "hoped": {"_count": 1}, "happened": {"_count": 3}, "tasted": {"_count": 2}, "been": {"_count": 37}, "heard": {"_count": 26}, "had": {"_count": 7}, "exactly": {"_count": 1}, "believed": {"_count": 1}, "let": {"_count": 2}, "in": {"_count": 2}, "smelled": {"_count": 1}, "won": {"_count": 1}, "felt": {"_count": 4}, "met": {"_count": 5}, "mentioned": {"_count": 3}, "spoken": {"_count": 4}, "found": {"_count": 2}, "looked": {"_count": 3}, "told": {"_count": 3}, "wanted": {"_count": 4}, "written": {"_count": 1}, "known": {"_count": 10}, "occurred": {"_count": 1}, "tried": {"_count": 1}, "used": {"_count": 2}, "received": {"_count": 1}, "set": {"_count": 3}, "lost": {"_count": 1}, "shown": {"_count": 1}, "entered": {"_count": 2}, "given": {"_count": 1}, "revealed": {"_count": 2}, "taken": {"_count": 2}, "approached": {"_count": 1}, "read": {"_count": 1}, "yet": {"_count": 3}, "allowed": {"_count": 1}, "quite": {"_count": 4}, "really": {"_count": 5}, "actually": {"_count": 3}, "managed": {"_count": 2}, "shared": {"_count": 1}, "suffered": {"_count": 2}, "asked": {"_count": 3}, "failed": {"_count": 1}, "breathed": {"_count": 1}, "learned": {"_count": 4}, "done": {"_count": 3}, "run": {"_count": 1}, "loved": {"_count": 1}, "imagined": {"_count": 2}, "mmmade": {"_count": 1}, "traveled": {"_count": 1}, "before": {"_count": 4}, "endured": {"_count": 1}, "noticed": {"_count": 1}, "expected": {"_count": 4}, "needed": {"_count": 1}, "kept": {"_count": 1}, "intended": {"_count": 1}, "dreaded": {"_count": 1}, "hated": {"_count": 1}, "paid": {"_count": 1}, "witnessed": {"_count": 1}, "murdered": {"_count": 1}, "made": {"_count": 1}, "attended": {"_count": 1}, "thought": {"_count": 3}, "kissed": {"_count": 1}, "once": {"_count": 1}, "liked": {"_count": 1}, "encountered": {"_count": 2}, "left": {"_count": 1}, "gone": {"_count": 1}, "fully": {"_count": 1}, "discovered": {"_count": 1}, "questioned": {"_count": 1}}, "seen": {"_count": 127, "then": {"_count": 1}, "that": {"_count": 5}, "the": {"_count": 14}, "Harry": {"_count": 1}, "his": {"_count": 5}, "it": {"_count": 7}, "not": {"_count": 1}, "": {"_count": 4}, "in": {"_count": 16}, "Professor": {"_count": 1}, "for": {"_count": 1}, "him": {"_count": 9}, "them": {"_count": 3}, "pictures": {"_count": 1}, "Fudge": {"_count": 1}, "her": {"_count": 5}, "me": {"_count": 1}, "upon": {"_count": 1}, "himself": {"_count": 1}, "near": {"_count": 1}, "any": {"_count": 1}, "what": {"_count": 3}, "so": {"_count": 2}, "Cedric": {"_count": 1}, "Hermione": {"_count": 1}, "Mr": {"_count": 1}, "once": {"_count": 2}, "proofs": {"_count": 1}, "only": {"_count": 1}, "Bellatrix": {"_count": 1}, "those": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 3}, "except": {"_count": 1}, "Siriuss": {"_count": 1}, "Ron": {"_count": 2}, "though": {"_count": 1}, "Voldemort": {"_count": 1}, "into": {"_count": 1}, "enough": {"_count": 1}, "Sirius": {"_count": 1}, "Lord": {"_count": 1}, "each": {"_count": 1}, "Dumbledore": {"_count": 1}, "much": {"_count": 1}, "Ginny": {"_count": 1}, "Filch": {"_count": 1}, "Malfoy": {"_count": 1}, "emerge": {"_count": 1}, "somebody": {"_count": 1}, "when": {"_count": 1}, "some": {"_count": 1}, "before": {"_count": 1}, "and": {"_count": 2}, "by": {"_count": 1}, "something": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}, "Dumbledores": {"_count": 1}, "at": {"_count": 1}}, "to": {"_count": 380, "be": {"_count": 44}, "wear": {"_count": 1}, "look": {"_count": 4}, "run": {"_count": 3}, "wrestle": {"_count": 1}, "do": {"_count": 29}, "lean": {"_count": 3}, "drag": {"_count": 1}, "take": {"_count": 5}, "try": {"_count": 3}, "jog": {"_count": 3}, "go": {"_count": 19}, "remember": {"_count": 1}, "study": {"_count": 1}, "stand": {"_count": 3}, "keep": {"_count": 9}, "put": {"_count": 4}, "get": {"_count": 14}, "he": {"_count": 1}, "start": {"_count": 2}, "clap": {"_count": 1}, "find": {"_count": 5}, "walk": {"_count": 1}, "bunny": {"_count": 1}, "wait": {"_count": 5}, "speak": {"_count": 1}, "grab": {"_count": 1}, "Neville": {"_count": 1}, "struggle": {"_count": 1}, "write": {"_count": 2}, "duck": {"_count": 3}, "punish": {"_count": 2}, "hand": {"_count": 1}, "work": {"_count": 3}, "All": {"_count": 1}, "admit": {"_count": 10}, "squint": {"_count": 1}, "ask": {"_count": 5}, "buy": {"_count": 2}, "dive": {"_count": 2}, "open": {"_count": 1}, "say": {"_count": 5}, "iron": {"_count": 1}, "see": {"_count": 5}, "hoist": {"_count": 1}, "wander": {"_count": 1}, "move": {"_count": 3}, "stop": {"_count": 5}, "track": {"_count": 1}, "crane": {"_count": 2}, "come": {"_count": 5}, "dont": {"_count": 1}, "jump": {"_count": 1}, "exercise": {"_count": 2}, "flop": {"_count": 1}, "stifle": {"_count": 1}, "use": {"_count": 8}, "endure": {"_count": 8}, "stoop": {"_count": 1}, "kill": {"_count": 3}, "hold": {"_count": 2}, "stuff": {"_count": 1}, "fit": {"_count": 1}, "still": {"_count": 1}, "wade": {"_count": 2}, "seize": {"_count": 2}, "turn": {"_count": 1}, "fight": {"_count": 4}, "tell": {"_count": 3}, "know": {"_count": 2}, "contend": {"_count": 2}, "": {"_count": 5}, "flee": {"_count": 1}, "roll": {"_count": 1}, "pay": {"_count": 2}, "shout": {"_count": 1}, "fine": {"_count": 1}, "dash": {"_count": 1}, "make": {"_count": 2}, "choose": {"_count": 1}, "teach": {"_count": 1}, "blab": {"_count": 1}, "sit": {"_count": 2}, "disable": {"_count": 1}, "persuade": {"_count": 1}, "mop": {"_count": 1}, "extract": {"_count": 1}, "deal": {"_count": 1}, "yell": {"_count": 1}, "beat": {"_count": 1}, "think": {"_count": 3}, "stay": {"_count": 2}, "give": {"_count": 5}, "relive": {"_count": 1}, "lipread": {"_count": 1}, "hide": {"_count": 2}, "cope": {"_count": 1}, "blink": {"_count": 1}, "read": {"_count": 1}, "refuse": {"_count": 1}, "live": {"_count": 1}, "face": {"_count": 1}, "accommodate": {"_count": 1}, "act": {"_count": 2}, "cover": {"_count": 1}, "said": {"_count": 3}, "conjure": {"_count": 1}, "hex": {"_count": 1}, "suffer": {"_count": 2}, "enter": {"_count": 1}, "swerve": {"_count": 1}, "leave": {"_count": 3}, "clench": {"_count": 1}, "return": {"_count": 2}, "stir": {"_count": 1}, "step": {"_count": 1}, "approach": {"_count": 1}, "mean": {"_count": 1}, "deliver": {"_count": 1}, "accept": {"_count": 1}, "push": {"_count": 1}, "mull": {"_count": 1}, "share": {"_count": 1}, "reschedule": {"_count": 1}, "have": {"_count": 3}, "finish": {"_count": 2}, "mend": {"_count": 1}, "catch": {"_count": 1}, "suppress": {"_count": 1}, "repress": {"_count": 1}, "abandon": {"_count": 1}, "sink": {"_count": 1}, "check": {"_count": 3}, "succumb": {"_count": 1}, "admire": {"_count": 1}, "pack": {"_count": 1}, "concentrate": {"_count": 1}, "Apparate": {"_count": 1}, "let": {"_count": 1}, "talk": {"_count": 1}, "hope": {"_count": 1}, "die": {"_count": 2}, "borrow": {"_count": 1}, "and": {"_count": 1}, "reach": {"_count": 1}, "double": {"_count": 1}}, "almost": {"_count": 23, "finished": {"_count": 1}, "forgotten": {"_count": 8}, "reached": {"_count": 3}, "given": {"_count": 1}, "smiled": {"_count": 1}, "pelted": {"_count": 1}, "said": {"_count": 1}, "abandoned": {"_count": 1}, "let": {"_count": 1}, "mined": {"_count": 1}, "crashed": {"_count": 1}, "unloaded": {"_count": 1}, "snapped": {"_count": 1}, "dispersed": {"_count": 1}}, "been": {"_count": 1255, "hugged": {"_count": 1}, "called": {"_count": 2}, "put": {"_count": 5}, "watching": {"_count": 9}, "broken": {"_count": 3}, "waiting": {"_count": 8}, "on": {"_count": 15}, "lots": {"_count": 1}, "having": {"_count": 2}, "a": {"_count": 51}, "years": {"_count": 1}, "before": {"_count": 5}, "given": {"_count": 14}, "trying": {"_count": 8}, "chasing": {"_count": 1}, "climbing": {"_count": 1}, "younger": {"_count": 1}, "accepted": {"_count": 1}, "canceled": {"_count": 4}, "his": {"_count": 11}, "lying": {"_count": 3}, "pushed": {"_count": 4}, "in": {"_count": 26}, "made": {"_count": 8}, "to": {"_count": 7}, "wanting": {"_count": 1}, "upset": {"_count": 2}, "such": {"_count": 3}, "dark": {"_count": 1}, "really": {"_count": 2}, "loaded": {"_count": 1}, "with": {"_count": 1}, "worrying": {"_count": 2}, "talking": {"_count": 12}, "very": {"_count": 10}, "quite": {"_count": 5}, "drenched": {"_count": 1}, "working": {"_count": 5}, "taken": {"_count": 13}, "looking": {"_count": 13}, "quick": {"_count": 2}, "tugging": {"_count": 1}, "an": {"_count": 6}, "making": {"_count": 3}, "sent": {"_count": 7}, "known": {"_count": 2}, "sobbing": {"_count": 1}, "even": {"_count": 2}, "wondering": {"_count": 5}, "Harrys": {"_count": 1}, "nagging": {"_count": 1}, "so": {"_count": 18}, "close": {"_count": 3}, "stuck": {"_count": 4}, "secretly": {"_count": 1}, "down": {"_count": 1}, "that": {"_count": 5}, "longing": {"_count": 1}, "thrashing": {"_count": 1}, "bewitched": {"_count": 2}, "bothering": {"_count": 2}, "bad": {"_count": 1}, "caught": {"_count": 6}, "held": {"_count": 3}, "woken": {"_count": 1}, "treating": {"_count": 1}, "locked": {"_count": 1}, "left": {"_count": 5}, "destroyed": {"_count": 3}, "brought": {"_count": 5}, "fun": {"_count": 1}, "staring": {"_count": 3}, "": {"_count": 18}, "thinking": {"_count": 6}, "added": {"_count": 3}, "hit": {"_count": 4}, "the": {"_count": 20}, "magically": {"_count": 2}, "stretched": {"_count": 1}, "plunged": {"_count": 1}, "knocked": {"_count": 9}, "inching": {"_count": 1}, "removed": {"_count": 3}, "unconscious": {"_count": 1}, "expelled": {"_count": 5}, "spying": {"_count": 2}, "decorated": {"_count": 3}, "carved": {"_count": 2}, "lined": {"_count": 1}, "daubed": {"_count": 1}, "recently": {"_count": 1}, "led": {"_count": 1}, "attacked": {"_count": 8}, "speaking": {"_count": 1}, "sitting": {"_count": 11}, "forced": {"_count": 9}, "unable": {"_count": 5}, "blocked": {"_count": 2}, "Petrified": {"_count": 2}, "saying": {"_count": 3}, "extinguished": {"_count": 3}, "there": {"_count": 6}, "gazing": {"_count": 2}, "clipped": {"_count": 1}, "shouting": {"_count": 2}, "no": {"_count": 7}, "cooped": {"_count": 1}, "thrown": {"_count": 4}, "pulled": {"_count": 4}, "urging": {"_count": 2}, "reading": {"_count": 4}, "cleared": {"_count": 2}, "hard": {"_count": 4}, "up": {"_count": 2}, "written": {"_count": 2}, "bungled": {"_count": 1}, "almost": {"_count": 2}, "hastily": {"_count": 1}, "at": {"_count": 6}, "punctured": {"_count": 1}, "he": {"_count": 2}, "killed": {"_count": 3}, "sacked": {"_count": 2}, "unsuccessful": {"_count": 1}, "Uncle": {"_count": 1}, "one": {"_count": 3}, "allowed": {"_count": 2}, "thirteen": {"_count": 1}, "absent": {"_count": 1}, "stubbornly": {"_count": 1}, "murdered": {"_count": 3}, "flying": {"_count": 3}, "complaining": {"_count": 1}, "upstairs": {"_count": 1}, "Aunt": {"_count": 1}, "supplied": {"_count": 1}, "traveling": {"_count": 2}, "told": {"_count": 2}, "wearing": {"_count": 3}, "lenient": {"_count": 1}, "outside": {"_count": 2}, "darned": {"_count": 1}, "enemies": {"_count": 3}, "Harry": {"_count": 2}, "dreading": {"_count": 2}, "injured": {"_count": 2}, "drinking": {"_count": 2}, "was": {"_count": 2}, "bloodshed": {"_count": 1}, "slashed": {"_count": 2}, "torn": {"_count": 3}, "pbetween": {"_count": 1}, "she": {"_count": 3}, "strong": {"_count": 1}, "doing": {"_count": 3}, "floating": {"_count": 1}, "beaten": {"_count": 1}, "followed": {"_count": 1}, "ill": {"_count": 3}, "riding": {"_count": 1}, "warning": {"_count": 1}, "using": {"_count": 3}, "keeping": {"_count": 2}, "performed": {"_count": 1}, "asleep": {"_count": 1}, "enchanted": {"_count": 2}, "criticizing": {"_count": 1}, "moved": {"_count": 3}, "roving": {"_count": 1}, "subjected": {"_count": 2}, "prejudiced": {"_count": 1}, "sure": {"_count": 7}, "engulfed": {"_count": 1}, "standing": {"_count": 6}, "fired": {"_count": 1}, "expertly": {"_count": 1}, "hired": {"_count": 1}, "right": {"_count": 9}, "listening": {"_count": 4}, "facing": {"_count": 1}, "hiding": {"_count": 1}, "Seeker": {"_count": 1}, "spotted": {"_count": 2}, "noticeably": {"_count": 1}, "set": {"_count": 5}, "rummaging": {"_count": 1}, "turned": {"_count": 5}, "ripped": {"_count": 3}, "cringing": {"_count": 1}, "heard": {"_count": 1}, "too": {"_count": 4}, "poring": {"_count": 2}, "outwitted": {"_count": 1}, "many": {"_count": 1}, "picked": {"_count": 1}, "embroidered": {"_count": 1}, "most": {"_count": 4}, "rich": {"_count": 1}, "if": {"_count": 1}, "poisoned": {"_count": 3}, "lit": {"_count": 2}, "sputtering": {"_count": 1}, "running": {"_count": 2}, "dreaming": {"_count": 5}, "two": {"_count": 2}, "plotting": {"_count": 1}, "pierced": {"_count": 1}, "because": {"_count": 2}, "gaining": {"_count": 1}, "reduced": {"_count": 3}, "enough": {"_count": 1}, "innocent": {"_count": 1}, "convicted": {"_count": 3}, "committed": {"_count": 1}, "snatched": {"_count": 2}, "haunting": {"_count": 1}, "doubly": {"_count": 1}, "of": {"_count": 2}, "back": {"_count": 1}, "delivered": {"_count": 2}, "taped": {"_count": 1}, "emptied": {"_count": 1}, "lurking": {"_count": 3}, "burning": {"_count": 3}, "Head": {"_count": 1}, "squeezed": {"_count": 1}, "about": {"_count": 6}, "living": {"_count": 2}, "suddenly": {"_count": 1}, "stupid": {"_count": 3}, "nothing": {"_count": 3}, "fouled": {"_count": 1}, "struggling": {"_count": 2}, "hurt": {"_count": 2}, "Professor": {"_count": 1}, "demolished": {"_count": 2}, "genuine": {"_count": 1}, "showing": {"_count": 1}, "allpowerful": {"_count": 1}, "picturing": {"_count": 1}, "some": {"_count": 1}, "filled": {"_count": 2}, "they": {"_count": 1}, "gone": {"_count": 2}, "scrawled": {"_count": 1}, "erected": {"_count": 3}, "scrubbed": {"_count": 1}, "wasted": {"_count": 1}, "badgering": {"_count": 1}, "instructed": {"_count": 2}, "focused": {"_count": 2}, "wiped": {"_count": 2}, "placed": {"_count": 5}, "traced": {"_count": 1}, "me": {"_count": 1}, "parked": {"_count": 1}, "blushing": {"_count": 1}, "selected": {"_count": 1}, "ransacked": {"_count": 1}, "killing": {"_count": 1}, "during": {"_count": 1}, "desperate": {"_count": 1}, "feeling": {"_count": 2}, "leading": {"_count": 1}, "all": {"_count": 4}, "squashed": {"_count": 1}, "surrounded": {"_count": 1}, "leaning": {"_count": 1}, "gaunt": {"_count": 1}, "quoting": {"_count": 1}, "hoping": {"_count": 2}, "plastered": {"_count": 2}, "focusing": {"_count": 1}, "magicked": {"_count": 1}, "released": {"_count": 1}, "clutching": {"_count": 1}, "immeasurably": {"_count": 1}, "predicting": {"_count": 1}, "laden": {"_count": 1}, "like": {"_count": 4}, "changing": {"_count": 2}, "shut": {"_count": 2}, "done": {"_count": 5}, "chatting": {"_count": 1}, "attached": {"_count": 1}, "writhing": {"_count": 1}, "starting": {"_count": 1}, "changed": {"_count": 2}, "transformed": {"_count": 1}, "conjured": {"_count": 2}, "consumed": {"_count": 1}, "artfully": {"_count": 1}, "possible": {"_count": 1}, "extremely": {"_count": 1}, "lately": {"_count": 1}, "snapped": {"_count": 1}, "recounting": {"_count": 1}, "continuing": {"_count": 1}, "pressed": {"_count": 1}, "teasing": {"_count": 1}, "when": {"_count": 5}, "discovered": {"_count": 2}, "building": {"_count": 1}, "conversing": {"_count": 1}, "enameled": {"_count": 1}, "real": {"_count": 1}, "as": {"_count": 1}, "repaired": {"_count": 2}, "inside": {"_count": 3}, "dragged": {"_count": 1}, "for": {"_count": 2}, "planted": {"_count": 1}, "practicing": {"_count": 1}, "designed": {"_count": 1}, "hurrying": {"_count": 1}, "briefly": {"_count": 1}, "carrying": {"_count": 2}, "stabbed": {"_count": 1}, "Voldemort": {"_count": 1}, "my": {"_count": 1}, "cut": {"_count": 2}, "saw": {"_count": 1}, "found": {"_count": 3}, "fighting": {"_count": 2}, "through": {"_count": 1}, "their": {"_count": 2}, "less": {"_count": 1}, "dying": {"_count": 1}, "banned": {"_count": 3}, "split": {"_count": 1}, "near": {"_count": 1}, "warned": {"_count": 1}, "beating": {"_count": 2}, "doused": {"_count": 1}, "cleaved": {"_count": 1}, "last": {"_count": 1}, "crammed": {"_count": 2}, "minutely": {"_count": 1}, "seconds": {"_count": 2}, "sleepily": {"_count": 1}, "touched": {"_count": 1}, "obsessing": {"_count": 1}, "said": {"_count": 2}, "triggered": {"_count": 1}, "spraying": {"_count": 1}, "awarded": {"_count": 1}, "here": {"_count": 3}, "frowning": {"_count": 1}, "expecting": {"_count": 5}, "somewhat": {"_count": 1}, "tortured": {"_count": 2}, "worried": {"_count": 1}, "trapped": {"_count": 1}, "telling": {"_count": 2}, "busy": {"_count": 2}, "relying": {"_count": 1}, "bending": {"_count": 1}, "hoodwinked": {"_count": 1}, "which": {"_count": 1}, "Chos": {"_count": 1}, "Cedrics": {"_count": 1}, "absolute": {"_count": 1}, "interesting": {"_count": 1}, "her": {"_count": 1}, "another": {"_count": 1}, "packed": {"_count": 1}, "slightly": {"_count": 2}, "fast": {"_count": 1}, "honest": {"_count": 1}, "spending": {"_count": 1}, "advised": {"_count": 1}, "Oliver": {"_count": 1}, "wafting": {"_count": 1}, "hopeful": {"_count": 1}, "interrupted": {"_count": 1}, "draining": {"_count": 1}, "affixed": {"_count": 1}, "intercepted": {"_count": 1}, "moments": {"_count": 1}, "hopping": {"_count": 1}, "read": {"_count": 1}, "passed": {"_count": 2}, "eavesdropping": {"_count": 1}, "stationary": {"_count": 1}, "blown": {"_count": 4}, "Hermiones": {"_count": 1}, "purple": {"_count": 1}, "BlastEnded": {"_count": 1}, "aiming": {"_count": 1}, "poisonous": {"_count": 1}, "painted": {"_count": 4}, "handwritten": {"_count": 1}, "approaching": {"_count": 1}, "Rons": {"_count": 1}, "attempting": {"_count": 2}, "deposited": {"_count": 1}, "drawn": {"_count": 3}, "restraining": {"_count": 1}, "evening": {"_count": 1}, "full": {"_count": 2}, "expounding": {"_count": 1}, "spurred": {"_count": 1}, "after": {"_count": 1}, "getting": {"_count": 2}, "immensely": {"_count": 1}, "playing": {"_count": 1}, "fluttering": {"_count": 1}, "Bane": {"_count": 1}, "Seamuss": {"_count": 1}, "struck": {"_count": 1}, "burned": {"_count": 3}, "pinned": {"_count": 2}, "overturned": {"_count": 1}, "neck": {"_count": 1}, "embellishing": {"_count": 1}, "every": {"_count": 1}, "startled": {"_count": 1}, "wonderful": {"_count": 1}, "troublemakers": {"_count": 1}, "decent": {"_count": 1}, "eyewitnesses": {"_count": 1}, "observed": {"_count": 1}, "coated": {"_count": 1}, "regretting": {"_count": 1}, "narrowly": {"_count": 1}, "planning": {"_count": 3}, "hewn": {"_count": 1}, "nesting": {"_count": 1}, "replaced": {"_count": 2}, "draped": {"_count": 2}, "taking": {"_count": 2}, "levitating": {"_count": 1}, "though": {"_count": 1}, "describing": {"_count": 1}, "counting": {"_count": 2}, "spooning": {"_count": 1}, "punishing": {"_count": 1}, "gagged": {"_count": 1}, "wrong": {"_count": 3}, "seized": {"_count": 1}, "dropped": {"_count": 1}, "by": {"_count": 2}, "tried": {"_count": 1}, "borne": {"_count": 1}, "enclosed": {"_count": 1}, "ahead": {"_count": 1}, "edging": {"_count": 2}, "guarding": {"_count": 2}, "where": {"_count": 1}, "and": {"_count": 1}, "injuries": {"_count": 1}, "open": {"_count": 1}, "obsessed": {"_count": 1}, "forbidden": {"_count": 1}, "vanquished": {"_count": 1}, "mended": {"_count": 1}, "convinced": {"_count": 1}, "greeting": {"_count": 1}, "afraid": {"_count": 2}, "utterly": {"_count": 1}, "alone": {"_count": 3}, "involved": {"_count": 3}, "seen": {"_count": 2}, "growing": {"_count": 1}, "stealing": {"_count": 2}, "established": {"_count": 1}, "outbid": {"_count": 1}, "pleasant": {"_count": 1}, "painful": {"_count": 1}, "bursting": {"_count": 1}, "pasted": {"_count": 1}, "rumbled": {"_count": 1}, "blighted": {"_count": 1}, "married": {"_count": 1}, "delighted": {"_count": 1}, "revealed": {"_count": 1}, "intending": {"_count": 1}, "inquisitive": {"_count": 1}, "shocked": {"_count": 1}, "muttering": {"_count": 1}, "under": {"_count": 1}, "acting": {"_count": 1}, "pureblood": {"_count": 1}, "boarded": {"_count": 1}, "cursed": {"_count": 1}, "Slytherins": {"_count": 1}, "training": {"_count": 1}, "twisted": {"_count": 1}, "hung": {"_count": 1}, "enduring": {"_count": 1}, "rude": {"_count": 1}, "built": {"_count": 1}, "worth": {"_count": 1}, "informed": {"_count": 1}, "nodding": {"_count": 1}, "published": {"_count": 1}, "crying": {"_count": 2}, "awaiting": {"_count": 1}, "scribbled": {"_count": 1}, "reported": {"_count": 1}, "exceptionally": {"_count": 1}, "interrogated": {"_count": 1}, "examining": {"_count": 2}, "resolutely": {"_count": 1}, "happiest": {"_count": 1}, "able": {"_count": 3}, "careful": {"_count": 1}, "thwarted": {"_count": 1}, "fermenting": {"_count": 1}, "skulking": {"_count": 2}, "intended": {"_count": 1}, "mutilated": {"_count": 1}, "achieving": {"_count": 1}, "used": {"_count": 1}, "apprehended": {"_count": 1}, "kept": {"_count": 1}, "eager": {"_count": 1}, "hanging": {"_count": 1}, "invited": {"_count": 1}, "entrusted": {"_count": 1}, "blasted": {"_count": 2}, "savaged": {"_count": 1}, "deputy": {"_count": 1}, "weeping": {"_count": 1}, "discharged": {"_count": 1}, "unceremoniously": {"_count": 1}, "hidden": {"_count": 1}, "repacked": {"_count": 1}, "common": {"_count": 1}, "unpacked": {"_count": 1}, "buried": {"_count": 1}, "regrown": {"_count": 1}, "betrayed": {"_count": 1}, "separated": {"_count": 1}, "difficult": {"_count": 1}, "yet": {"_count": 1}, "alive": {"_count": 1}, "swept": {"_count": 1}, "pruned": {"_count": 1}, "negligible": {"_count": 1}, "tantamount": {"_count": 1}, "searched": {"_count": 1}, "shaken": {"_count": 1}, "disturbed": {"_count": 1}, "searching": {"_count": 1}, "tossed": {"_count": 1}, "present": {"_count": 1}, "bidden": {"_count": 1}, "burnished": {"_count": 1}, "freshly": {"_count": 1}, "folded": {"_count": 1}, "carefully": {"_count": 1}, "cast": {"_count": 2}, "cracked": {"_count": 2}, "hurtling": {"_count": 1}, "stolen": {"_count": 5}, "born": {"_count": 1}, "educated": {"_count": 1}, "raised": {"_count": 2}, "determined": {"_count": 1}, "imagining": {"_count": 1}, "little": {"_count": 1}, "wiping": {"_count": 1}, "spiked": {"_count": 1}, "its": {"_count": 1}, "tacked": {"_count": 1}, "positively": {"_count": 1}, "mounted": {"_count": 1}, "since": {"_count": 2}, "cheated": {"_count": 1}, "unbeatable": {"_count": 1}, "damaged": {"_count": 1}, "polishing": {"_count": 1}, "rammed": {"_count": 1}, "Stunned": {"_count": 1}, "slapped": {"_count": 1}, "tonight": {"_count": 1}, "sprinting": {"_count": 1}, "braced": {"_count": 1}, "unsure": {"_count": 1}, "outright": {"_count": 1}, "engraved": {"_count": 1}, "driven": {"_count": 2}, "surprised": {"_count": 1}, "firm": {"_count": 1}, "impossible": {"_count": 1}, "created": {"_count": 1}, "summoned": {"_count": 1}, "more": {"_count": 1}, "prepared": {"_count": 1}, "taught": {"_count": 1}, "cracking": {"_count": 1}, "lost": {"_count": 1}, "reproduced": {"_count": 1}, "thrust": {"_count": 1}, "returned": {"_count": 1}, "smashed": {"_count": 1}, "grouped": {"_count": 1}, "reprieved": {"_count": 1}, "flushed": {"_count": 1}, "drowned": {"_count": 1}, "memory": {"_count": 1}, "discourteous": {"_count": 1}, "I": {"_count": 1}, "but": {"_count": 1}, "huddled": {"_count": 1}, "treading": {"_count": 1}, "named": {"_count": 1}, "walking": {"_count": 1}}, "the": {"_count": 191, "same": {"_count": 11}, "best": {"_count": 5}, "most": {"_count": 1}, "money": {"_count": 1}, "gift": {"_count": 1}, "dormitory": {"_count": 1}, "horrible": {"_count": 4}, "nasty": {"_count": 2}, "dragon": {"_count": 1}, "right": {"_count": 4}, "BodyBind": {"_count": 1}, "strong": {"_count": 1}, "glummest": {"_count": 1}, "key": {"_count": 1}, "scene": {"_count": 1}, "run": {"_count": 1}, "power": {"_count": 2}, "brains": {"_count": 1}, "wand": {"_count": 4}, "Invisibility": {"_count": 3}, "bodies": {"_count": 1}, "hardest": {"_count": 1}, "worst": {"_count": 1}, "time": {"_count": 1}, "thought": {"_count": 1}, "effect": {"_count": 2}, "shortest": {"_count": 1}, "impression": {"_count": 19}, "cloak": {"_count": 1}, "shrunken": {"_count": 1}, "sensation": {"_count": 1}, "old": {"_count": 2}, "lightning": {"_count": 1}, "last": {"_count": 1}, "look": {"_count": 1}, "Quaffle": {"_count": 2}, "misfortune": {"_count": 2}, "distinct": {"_count": 8}, "sense": {"_count": 4}, "feeling": {"_count": 6}, "morning": {"_count": 1}, "number": {"_count": 1}, "idea": {"_count": 4}, "tournament": {"_count": 1}, "heavy": {"_count": 1}, "night": {"_count": 2}, "measure": {"_count": 1}, "Marauders": {"_count": 1}, "makings": {"_count": 1}, "body": {"_count": 1}, "shape": {"_count": 1}, "pleasure": {"_count": 4}, "map": {"_count": 1}, "sign": {"_count": 1}, "pinched": {"_count": 1}, "dementors": {"_count": 1}, "fleeting": {"_count": 1}, "very": {"_count": 1}, "manners": {"_count": 1}, "experience": {"_count": 1}, "selfsame": {"_count": 1}, "faintest": {"_count": 1}, "unmistakable": {"_count": 1}, "dream": {"_count": 1}, "common": {"_count": 1}, "heart": {"_count": 1}, "plump": {"_count": 1}, "chance": {"_count": 1}, "vision": {"_count": 3}, "Prophet": {"_count": 1}, "strangest": {"_count": 5}, "slightly": {"_count": 1}, "authority": {"_count": 1}, "slightest": {"_count": 1}, "grace": {"_count": 1}, "whole": {"_count": 2}, "door": {"_count": 2}, "Black": {"_count": 1}, "baby": {"_count": 3}, "solution": {"_count": 1}, "option": {"_count": 1}, "ability": {"_count": 1}, "nagging": {"_count": 1}, "Prince": {"_count": 1}, "other": {"_count": 1}, "Order": {"_count": 1}, "uncomfortable": {"_count": 2}, "answers": {"_count": 1}, "oven": {"_count": 1}, "essentials": {"_count": 1}, "Trace": {"_count": 1}, "sword": {"_count": 2}, "foresight": {"_count": 1}, "real": {"_count": 1}, "odd": {"_count": 1}, "Peverell": {"_count": 1}, "Cloak": {"_count": 1}, "stone": {"_count": 1}, "Elder": {"_count": 3}, "beaded": {"_count": 1}, "cup": {"_count": 1}, "beast": {"_count": 1}, "Cruciatus": {"_count": 1}, "battle": {"_count": 1}, "wish": {"_count": 1}, "form": {"_count": 1}}, "had": {"_count": 78, "a": {"_count": 12}, "around": {"_count": 1}, "it": {"_count": 1}, "for": {"_count": 1}, "reason": {"_count": 1}, "enough": {"_count": 4}, "time": {"_count": 3}, "no": {"_count": 7}, "their": {"_count": 3}, "far": {"_count": 1}, "in": {"_count": 2}, "too": {"_count": 3}, "its": {"_count": 2}, "experience": {"_count": 1}, "to": {"_count": 8}, "much": {"_count": 1}, "just": {"_count": 1}, "lessons": {"_count": 1}, "occasion": {"_count": 1}, "with": {"_count": 1}, "that": {"_count": 2}, "together": {"_count": 1}, "four": {"_count": 1}, "including": {"_count": 1}, "the": {"_count": 3}, "very": {"_count": 1}, "any": {"_count": 1}, "before": {"_count": 1}, "someone": {"_count": 1}, "an": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}, "this": {"_count": 1}, "virtually": {"_count": 1}, "nothing": {"_count": 1}, "some": {"_count": 1}, "right": {"_count": 1}, "plenty": {"_count": 1}, "and": {"_count": 1}}, "learned": {"_count": 12, "a": {"_count": 1}, "from": {"_count": 1}, "last": {"_count": 1}, "to": {"_count": 2}, "there": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}, "Mermish": {"_count": 1}, "control": {"_count": 1}, "that": {"_count": 1}, "nothing": {"_count": 1}}, "expected": {"_count": 40, "Mrs": {"_count": 1}, "more": {"_count": 2}, "it": {"_count": 5}, "": {"_count": 3}, "Lupin": {"_count": 1}, "that": {"_count": 2}, "Dumbledore": {"_count": 1}, "however": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 2}, "something": {"_count": 2}, "a": {"_count": 2}, "the": {"_count": 4}, "this": {"_count": 2}, "to": {"_count": 4}, "Hedwig": {"_count": 1}, "her": {"_count": 1}, "an": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 1}, "she": {"_count": 1}, "them": {"_count": 1}}, "ever": {"_count": 126, "been": {"_count": 12}, "remembered": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 3}, "failed": {"_count": 1}, "seen": {"_count": 43}, "met": {"_count": 2}, "punished": {"_count": 1}, "interrupted": {"_count": 2}, "set": {"_count": 1}, "laid": {"_count": 1}, "felt": {"_count": 4}, "given": {"_count": 2}, "heard": {"_count": 9}, "played": {"_count": 1}, "taken": {"_count": 2}, "told": {"_count": 2}, "come": {"_count": 1}, "experienced": {"_count": 5}, "written": {"_count": 1}, "moved": {"_count": 3}, "used": {"_count": 1}, "feared": {"_count": 1}, "said": {"_count": 1}, "knitted": {"_count": 1}, "sat": {"_count": 1}, "sold": {"_count": 1}, "attended": {"_count": 1}, "visited": {"_count": 1}, "cast": {"_count": 1}, "inhaled": {"_count": 1}, "encountered": {"_count": 2}, "guessed": {"_count": 1}, "done": {"_count": 2}, "or": {"_count": 1}, "asked": {"_count": 1}, "tasted": {"_count": 1}, "lived": {"_count": 1}, "penetrated": {"_count": 1}, "known": {"_count": 2}, "spoken": {"_count": 1}, "found": {"_count": 2}, "expected": {"_count": 1}, "cost": {"_count": 1}, "performed": {"_count": 1}}, "just": {"_count": 323, "arrived": {"_count": 7}, "brought": {"_count": 1}, "finished": {"_count": 4}, "thought": {"_count": 1}, "occurred": {"_count": 6}, "taken": {"_count": 7}, "raised": {"_count": 2}, "streamed": {"_count": 1}, "turned": {"_count": 8}, "read": {"_count": 2}, "put": {"_count": 1}, "awarded": {"_count": 1}, "chimed": {"_count": 1}, "bitten": {"_count": 2}, "left": {"_count": 11}, "heard": {"_count": 7}, "passed": {"_count": 6}, "said": {"_count": 6}, "announced": {"_count": 1}, "reached": {"_count": 6}, "started": {"_count": 4}, "ended": {"_count": 1}, "opened": {"_count": 6}, "dropped": {"_count": 2}, "been": {"_count": 28}, "missed": {"_count": 2}, "done": {"_count": 3}, "fed": {"_count": 1}, "set": {"_count": 2}, "flicked": {"_count": 1}, "realized": {"_count": 2}, "kicked": {"_count": 1}, "burst": {"_count": 1}, "caught": {"_count": 3}, "closed": {"_count": 2}, "given": {"_count": 3}, "gotten": {"_count": 2}, "ambled": {"_count": 2}, "fallen": {"_count": 2}, "happened": {"_count": 13}, "entered": {"_count": 9}, "come": {"_count": 6}, "one": {"_count": 2}, "vanished": {"_count": 2}, "seen": {"_count": 11}, "pressed": {"_count": 1}, "uttered": {"_count": 1}, "aged": {"_count": 1}, "blasted": {"_count": 1}, "had": {"_count": 3}, "Apparated": {"_count": 3}, "jumped": {"_count": 1}, "scrambled": {"_count": 1}, "noticed": {"_count": 6}, "won": {"_count": 1}, "joined": {"_count": 2}, "frozen": {"_count": 1}, "hit": {"_count": 1}, "bustled": {"_count": 1}, "straightened": {"_count": 1}, "emerged": {"_count": 5}, "before": {"_count": 1}, "written": {"_count": 1}, "about": {"_count": 1}, "under": {"_count": 1}, "got": {"_count": 3}, "told": {"_count": 4}, "unwrapped": {"_count": 1}, "pulled": {"_count": 2}, "helped": {"_count": 2}, "rescued": {"_count": 1}, "witnessed": {"_count": 1}, "lifted": {"_count": 1}, "hurried": {"_count": 1}, "watched": {"_count": 1}, "swung": {"_count": 1}, "smashed": {"_count": 1}, "zoomed": {"_count": 1}, "walked": {"_count": 3}, "appeared": {"_count": 3}, "flared": {"_count": 1}, "shot": {"_count": 1}, "experienced": {"_count": 1}, "swallowed": {"_count": 1}, "scratched": {"_count": 1}, "felt": {"_count": 1}, "sighted": {"_count": 1}, "smiled": {"_count": 1}, "dawned": {"_count": 1}, "praised": {"_count": 1}, "signed": {"_count": 1}, "slid": {"_count": 1}, "charged": {"_count": 1}, "melted": {"_count": 1}, "run": {"_count": 4}, "issued": {"_count": 1}, "broken": {"_count": 1}, "coughed": {"_count": 1}, "managed": {"_count": 2}, "reminded": {"_count": 1}, "achieved": {"_count": 1}, "made": {"_count": 2}, "sealed": {"_count": 1}, "struck": {"_count": 1}, "descended": {"_count": 1}, "stumped": {"_count": 1}, "remembered": {"_count": 1}, "swept": {"_count": 1}, "imparted": {"_count": 1}, "recognized": {"_count": 1}, "proved": {"_count": 1}, "behaved": {"_count": 1}, "crossed": {"_count": 1}, "met": {"_count": 1}, "spotted": {"_count": 1}, "embarked": {"_count": 1}, "fought": {"_count": 1}, "poked": {"_count": 1}, "glued": {"_count": 1}, "vacated": {"_count": 1}, "found": {"_count": 1}, "removed": {"_count": 1}, "encountered": {"_count": 1}, "refrained": {"_count": 1}, "fired": {"_count": 1}, "inadvertently": {"_count": 1}, "expressed": {"_count": 1}, "saved": {"_count": 2}, "soared": {"_count": 1}, "risked": {"_count": 1}, "knocked": {"_count": 1}, "flown": {"_count": 1}, "gone": {"_count": 1}, "eaten": {"_count": 1}, "died": {"_count": 1}, "held": {"_count": 1}, "dived": {"_count": 1}, "described": {"_count": 1}, "cleared": {"_count": 1}, "nodded": {"_count": 1}, "Stunned": {"_count": 1}, "cast": {"_count": 1}, "discovered": {"_count": 1}, "fragmented": {"_count": 1}, "backed": {"_count": 1}}, "gone": {"_count": 129, "": {"_count": 28}, "very": {"_count": 9}, "out": {"_count": 5}, "but": {"_count": 2}, "as": {"_count": 2}, "all": {"_count": 2}, "Ron": {"_count": 1}, "on": {"_count": 3}, "straight": {"_count": 1}, "back": {"_count": 3}, "to": {"_count": 15}, "and": {"_count": 4}, "slightly": {"_count": 2}, "a": {"_count": 2}, "from": {"_count": 3}, "pale": {"_count": 1}, "red": {"_count": 1}, "white": {"_count": 1}, "mad": {"_count": 4}, "suddenly": {"_count": 1}, "rigid": {"_count": 4}, "the": {"_count": 3}, "blank": {"_count": 1}, "one": {"_count": 1}, "south": {"_count": 1}, "completely": {"_count": 1}, "oddly": {"_count": 1}, "then": {"_count": 2}, "right": {"_count": 1}, "even": {"_count": 1}, "during": {"_count": 1}, "only": {"_count": 1}, "so": {"_count": 1}, "he": {"_count": 3}, "dry": {"_count": 1}, "around": {"_count": 1}, "too": {"_count": 2}, "up": {"_count": 1}, "Hagrid": {"_count": 1}, "when": {"_count": 1}, "there": {"_count": 1}, "they": {"_count": 1}, "leaving": {"_count": 1}, "had": {"_count": 1}, "upstairs": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "cross": {"_count": 1}, "wrong": {"_count": 1}, "where": {"_count": 1}}, "around": {"_count": 1, "its": {"_count": 1}}, "much": {"_count": 12, "sense": {"_count": 1}, "to": {"_count": 2}, "sleep": {"_count": 1}, "more": {"_count": 4}, "practice": {"_count": 1}, "longer": {"_count": 1}, "worse": {"_count": 1}, "time": {"_count": 1}}, "precious": {"_count": 1, "little": {"_count": 1}}, "powers": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "reached": {"_count": 58, "the": {"_count": 35}, "a": {"_count": 6}, "another": {"_count": 1}, "an": {"_count": 3}, "for": {"_count": 2}, "Lockharts": {"_count": 1}, "Professor": {"_count": 1}, "roughly": {"_count": 1}, "out": {"_count": 1}, "Snape": {"_count": 1}, "him": {"_count": 2}, "it": {"_count": 1}, "waterskiing": {"_count": 1}, "this": {"_count": 2}}, "she": {"_count": 8, "fixed": {"_count": 1}, "told": {"_count": 1}, "gone": {"_count": 1}, "met": {"_count": 1}, "agreed": {"_count": 1}, "was": {"_count": 1}, "even": {"_count": 1}, "led": {"_count": 1}}, "twelve": {"_count": 2, "hands": {"_count": 1}, "years": {"_count": 1}}, "broken": {"_count": 25, "the": {"_count": 4}, "her": {"_count": 1}, "out": {"_count": 1}, "wizard": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 4}, "free": {"_count": 3}, "windows": {"_count": 1}, "when": {"_count": 1}, "away": {"_count": 3}, "appalled": {"_count": 1}, "Harrys": {"_count": 1}, "": {"_count": 1}, "between": {"_count": 1}, "nearly": {"_count": 1}}, "hands": {"_count": 1, "the": {"_count": 1}}, "passed": {"_count": 33, "since": {"_count": 1}, "": {"_count": 5}, "on": {"_count": 2}, "his": {"_count": 1}, "too": {"_count": 1}, "only": {"_count": 1}, "the": {"_count": 3}, "out": {"_count": 3}, "every": {"_count": 1}, "that": {"_count": 1}, "earlier": {"_count": 2}, "however": {"_count": 1}, "in": {"_count": 1}, "through": {"_count": 1}, "Hogsmeade": {"_count": 1}, "everything": {"_count": 1}, "well": {"_count": 1}, "him": {"_count": 1}, "Voldemort": {"_count": 1}, "it": {"_count": 1}, "into": {"_count": 1}, "several": {"_count": 1}, "and": {"_count": 1}}, "woken": {"_count": 11, "up": {"_count": 4}, "with": {"_count": 1}, "him": {"_count": 2}, "several": {"_count": 1}, "he": {"_count": 2}, "Ravenclaws": {"_count": 1}}, "hardly": {"_count": 9, "changed": {"_count": 1}, "raised": {"_count": 1}, "disappeared": {"_count": 1}, "fluttered": {"_count": 1}, "left": {"_count": 1}, "talked": {"_count": 1}, "ever": {"_count": 3}}, "gotten": {"_count": 23, "the": {"_count": 4}, "it": {"_count": 1}, "up": {"_count": 2}, "to": {"_count": 8}, "from": {"_count": 2}, "used": {"_count": 1}, "a": {"_count": 2}, "lost": {"_count": 1}, "past": {"_count": 1}, "off": {"_count": 1}}, "something": {"_count": 11, "to": {"_count": 5}, "else": {"_count": 2}, "she": {"_count": 1}, "stuck": {"_count": 1}, "good": {"_count": 1}, "as": {"_count": 1}}, "always": {"_count": 48, "been": {"_count": 18}, "taken": {"_count": 2}, "forbidden": {"_count": 1}, "known": {"_count": 4}, "thought": {"_count": 3}, "imagined": {"_count": 1}, "got": {"_count": 2}, "worn": {"_count": 1}, "refrained": {"_count": 1}, "warned": {"_count": 1}, "liked": {"_count": 2}, "rather": {"_count": 1}, "featured": {"_count": 1}, "told": {"_count": 1}, "advised": {"_count": 1}, "expected": {"_count": 1}, "walked": {"_count": 1}, "had": {"_count": 1}, "shown": {"_count": 1}, "discussed": {"_count": 1}, "seemed": {"_count": 1}, "suspected": {"_count": 1}, "sensed": {"_count": 1}}, "punched": {"_count": 2, "him": {"_count": 2}}, "it": {"_count": 38, "as": {"_count": 1}, "for": {"_count": 2}, "from": {"_count": 2}, "to": {"_count": 1}, "with": {"_count": 1}, "bad": {"_count": 2}, "he": {"_count": 1}, "developed": {"_count": 1}, "signed": {"_count": 1}, "think": {"_count": 1}, "on": {"_count": 1}, "not": {"_count": 3}, "in": {"_count": 2}, "then": {"_count": 1}, "memorized": {"_count": 1}, "made": {"_count": 1}, "": {"_count": 6}, "now": {"_count": 1}, "and": {"_count": 1}, "coming": {"_count": 2}, "all": {"_count": 1}, "really": {"_count": 1}, "been": {"_count": 1}, "I": {"_count": 1}, "still": {"_count": 1}, "caught": {"_count": 1}}, "said": {"_count": 91, "": {"_count": 16}, "putting": {"_count": 1}, "he": {"_count": 3}, "the": {"_count": 4}, "something": {"_count": 3}, "Oh": {"_count": 1}, "about": {"_count": 9}, "Hearing": {"_count": 1}, "it": {"_count": 4}, "while": {"_count": 2}, "Voldemort": {"_count": 1}, "Dean": {"_count": 1}, "Fudge": {"_count": 1}, "tearfully": {"_count": 1}, "perhaps": {"_count": 1}, "that": {"_count": 6}, "Harry": {"_count": 3}, "back": {"_count": 1}, "as": {"_count": 1}, "curious": {"_count": 1}, "goodbye": {"_count": 2}, "anything": {"_count": 1}, "so": {"_count": 1}, "what": {"_count": 1}, "And": {"_count": 1}, "and": {"_count": 1}, "this": {"_count": 1}, "rather": {"_count": 1}, "she": {"_count": 1}, "explaining": {"_count": 1}, "at": {"_count": 2}, "them": {"_count": 1}, "one": {"_count": 1}, "Harrys": {"_count": 1}, "banking": {"_count": 1}, "its": {"_count": 1}, "to": {"_count": 4}, "Tell": {"_count": 1}, "a": {"_count": 1}, "Kreacher": {"_count": 1}, "nothing": {"_count": 1}, "her": {"_count": 1}, "either": {"_count": 1}, "when": {"_count": 1}, "in": {"_count": 1}}, "more": {"_count": 16, "haircuts": {"_count": 1}, "on": {"_count": 1}, "sense": {"_count": 1}, "of": {"_count": 1}, "owls": {"_count": 1}, "fun": {"_count": 1}, "gray": {"_count": 1}, "important": {"_count": 3}, "than": {"_count": 2}, "pressing": {"_count": 3}, "difficulty": {"_count": 1}}, "taken": {"_count": 95, "Harry": {"_count": 3}, "a": {"_count": 10}, "out": {"_count": 3}, "it": {"_count": 3}, "one": {"_count": 1}, "place": {"_count": 4}, "up": {"_count": 4}, "his": {"_count": 7}, "to": {"_count": 9}, "me": {"_count": 1}, "refuge": {"_count": 2}, "over": {"_count": 3}, "off": {"_count": 2}, "the": {"_count": 6}, "such": {"_count": 1}, "him": {"_count": 1}, "so": {"_count": 1}, "from": {"_count": 8}, "half": {"_count": 1}, "for": {"_count": 1}, "most": {"_count": 1}, "many": {"_count": 1}, "an": {"_count": 1}, "hold": {"_count": 1}, "issue": {"_count": 1}, "sides": {"_count": 1}, "Malfoy": {"_count": 1}, "almost": {"_count": 1}, "": {"_count": 1}, "part": {"_count": 1}, "them": {"_count": 2}, "no": {"_count": 1}, "as": {"_count": 1}, "Yaxley": {"_count": 1}, "all": {"_count": 1}, "possession": {"_count": 2}, "shape": {"_count": 1}, "shelter": {"_count": 1}, "leave": {"_count": 1}, "only": {"_count": 1}, "flight": {"_count": 1}, "trouble": {"_count": 1}}, "laughed": {"_count": 4, "himself": {"_count": 1}, "at": {"_count": 1}, "during": {"_count": 1}, "easily": {"_count": 1}}, "sheared": {"_count": 1, "it": {"_count": 1}}, "tried": {"_count": 31, "to": {"_count": 24}, "a": {"_count": 2}, "sitting": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 1}, "hard": {"_count": 1}, "the": {"_count": 1}}, "grown": {"_count": 16, "back": {"_count": 1}, "three": {"_count": 1}, "more": {"_count": 1}, "up": {"_count": 5}, "a": {"_count": 3}, "so": {"_count": 2}, "used": {"_count": 1}, "even": {"_count": 1}, "wild": {"_count": 1}}, "decided": {"_count": 19, "it": {"_count": 1}, "to": {"_count": 10}, "that": {"_count": 3}, "who": {"_count": 1}, "not": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}, "against": {"_count": 1}}, "received": {"_count": 19, "a": {"_count": 2}, "the": {"_count": 1}, "two": {"_count": 1}, "four": {"_count": 1}, "top": {"_count": 1}, "that": {"_count": 1}, "an": {"_count": 3}, "such": {"_count": 1}, "he": {"_count": 1}, "Ts": {"_count": 1}, "no": {"_count": 1}, "but": {"_count": 1}, "several": {"_count": 1}, "Yaxley": {"_count": 1}, "after": {"_count": 1}, "on": {"_count": 1}}, "asked": {"_count": 15, "Harry": {"_count": 2}, "Percy": {"_count": 1}, "for": {"_count": 2}, "Hermione": {"_count": 1}, "them": {"_count": 2}, "to": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 3}, "a": {"_count": 1}, "Professor": {"_count": 1}}, "in": {"_count": 18, "a": {"_count": 1}, "his": {"_count": 2}, "fact": {"_count": 2}, "years": {"_count": 1}, "months": {"_count": 1}, "Knock": {"_count": 1}, "mind": {"_count": 1}, "ages": {"_count": 1}, "store": {"_count": 3}, "the": {"_count": 3}, "Care": {"_count": 1}, "centuries": {"_count": 1}}, "died": {"_count": 47, "of": {"_count": 2}, "in": {"_count": 3}, "": {"_count": 13}, "youd": {"_count": 1}, "how": {"_count": 1}, "because": {"_count": 1}, "people": {"_count": 1}, "a": {"_count": 2}, "to": {"_count": 1}, "away": {"_count": 3}, "like": {"_count": 1}, "yet": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 4}, "for": {"_count": 2}, "although": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 3}, "or": {"_count": 1}, "here": {"_count": 1}, "there": {"_count": 1}, "knowing": {"_count": 1}, "fighting": {"_count": 1}}, "leapt": {"_count": 8, "back": {"_count": 1}, "to": {"_count": 3}, "onto": {"_count": 1}, "off": {"_count": 1}, "out": {"_count": 1}, "aside": {"_count": 1}}, "vanished": {"_count": 50, "": {"_count": 19}, "and": {"_count": 3}, "from": {"_count": 4}, "with": {"_count": 1}, "again": {"_count": 2}, "except": {"_count": 1}, "through": {"_count": 1}, "into": {"_count": 1}, "instead": {"_count": 1}, "they": {"_count": 1}, "this": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 2}, "there": {"_count": 1}, "unnaturally": {"_count": 1}, "it": {"_count": 1}, "amid": {"_count": 1}, "like": {"_count": 1}, "or": {"_count": 1}, "as": {"_count": 1}, "torturing": {"_count": 1}, "Malfoy": {"_count": 1}, "but": {"_count": 1}, "back": {"_count": 1}}, "dreamed": {"_count": 1, "and": {"_count": 1}}, "bowed": {"_count": 2, "to": {"_count": 2}}, "rushed": {"_count": 4, "them": {"_count": 1}, "ahead": {"_count": 1}, "upstairs": {"_count": 1}, "to": {"_count": 1}}, "waved": {"_count": 2, "merrily": {"_count": 1}, "what": {"_count": 1}}, "actually": {"_count": 10, "shaken": {"_count": 1}, "dropped": {"_count": 1}, "progressed": {"_count": 1}, "slid": {"_count": 1}, "laughed": {"_count": 1}, "come": {"_count": 1}, "read": {"_count": 1}, "taken": {"_count": 1}, "weighed": {"_count": 1}, "cast": {"_count": 1}}, "no": {"_count": 152, "one": {"_count": 2}, "friends": {"_count": 1}, "idea": {"_count": 37}, "sense": {"_count": 1}, "keyhole": {"_count": 1}, "way": {"_count": 1}, "title": {"_count": 1}, "choice": {"_count": 21}, "faces": {"_count": 1}, "trouble": {"_count": 1}, "time": {"_count": 3}, "memory": {"_count": 2}, "chance": {"_count": 4}, "effect": {"_count": 1}, "word": {"_count": 2}, "reason": {"_count": 2}, "means": {"_count": 2}, "sooner": {"_count": 2}, "room": {"_count": 1}, "proof": {"_count": 3}, "hope": {"_count": 1}, "thought": {"_count": 1}, "telephone": {"_count": 1}, "souvenirs": {"_count": 1}, "doubt": {"_count": 2}, "hair": {"_count": 1}, "desire": {"_count": 4}, "intention": {"_count": 2}, "family": {"_count": 1}, "objection": {"_count": 1}, "more": {"_count": 3}, "body": {"_count": 3}, "particular": {"_count": 1}, "prospect": {"_count": 1}, "alternative": {"_count": 1}, "visitors": {"_count": 1}, "opportunity": {"_count": 2}, "other": {"_count": 1}, "problem": {"_count": 1}, "excuse": {"_count": 1}, "interest": {"_count": 1}, "breath": {"_count": 1}, "love": {"_count": 1}, "business": {"_count": 1}, "extraordinary": {"_count": 1}, "wish": {"_count": 1}, "inkling": {"_count": 1}, "control": {"_count": 1}, "difficulty": {"_count": 2}, "luck": {"_count": 1}, "appetite": {"_count": 1}, "possible": {"_count": 1}, "blood": {"_count": 1}, "homework": {"_count": 1}, "right": {"_count": 1}, "suggestions": {"_count": 1}, "option": {"_count": 1}, "grudge": {"_count": 1}, "retort": {"_count": 1}, "new": {"_count": 1}, "ideas": {"_count": 1}, "wand": {"_count": 2}, "sword": {"_count": 1}, "strength": {"_count": 2}, "good": {"_count": 1}, "answers": {"_count": 1}, "answer": {"_count": 1}, "hold": {"_count": 1}, "knowledge": {"_count": 1}, "possibility": {"_count": 1}}, "started": {"_count": 47, "and": {"_count": 1}, "handing": {"_count": 1}, "to": {"_count": 18}, "Ron": {"_count": 1}, "they": {"_count": 1}, "again": {"_count": 2}, "telling": {"_count": 1}, "drawing": {"_count": 1}, "jabbering": {"_count": 1}, "": {"_count": 3}, "everything": {"_count": 1}, "juggling": {"_count": 1}, "inside": {"_count": 1}, "a": {"_count": 1}, "shouting": {"_count": 1}, "pacing": {"_count": 1}, "at": {"_count": 2}, "badly": {"_count": 1}, "studying": {"_count": 1}, "the": {"_count": 2}, "applying": {"_count": 1}, "ranting": {"_count": 1}, "Harry": {"_count": 1}, "bringing": {"_count": 1}, "in": {"_count": 1}}, "already": {"_count": 109, "broken": {"_count": 1}, "changed": {"_count": 2}, "been": {"_count": 13}, "had": {"_count": 3}, "agreed": {"_count": 1}, "jumped": {"_count": 1}, "left": {"_count": 3}, "heard": {"_count": 2}, "started": {"_count": 3}, "told": {"_count": 3}, "passed": {"_count": 2}, "decorated": {"_count": 1}, "won": {"_count": 1}, "retrieved": {"_count": 1}, "packed": {"_count": 1}, "finished": {"_count": 3}, "spotted": {"_count": 2}, "put": {"_count": 1}, "struggled": {"_count": 1}, "reduced": {"_count": 1}, "learned": {"_count": 1}, "set": {"_count": 1}, "gone": {"_count": 3}, "attracted": {"_count": 1}, "given": {"_count": 2}, "slapped": {"_count": 1}, "filled": {"_count": 1}, "stretched": {"_count": 2}, "swung": {"_count": 1}, "cried": {"_count": 1}, "arrived": {"_count": 1}, "promised": {"_count": 1}, "stepped": {"_count": 1}, "raised": {"_count": 1}, "tried": {"_count": 1}, "pointed": {"_count": 2}, "caught": {"_count": 1}, "sent": {"_count": 1}, "ripped": {"_count": 1}, "asked": {"_count": 2}, "suffered": {"_count": 1}, "defied": {"_count": 1}, "pulled": {"_count": 1}, "ducked": {"_count": 1}, "picked": {"_count": 1}, "released": {"_count": 1}, "attempted": {"_count": 1}, "discovered": {"_count": 2}, "sped": {"_count": 1}, "strode": {"_count": 1}, "singlehandedly": {"_count": 1}, "occurred": {"_count": 1}, "confessed": {"_count": 1}, "killed": {"_count": 1}, "tipped": {"_count": 1}, "forgotten": {"_count": 1}, "thrown": {"_count": 1}, "recounted": {"_count": 1}, "completed": {"_count": 1}, "returned": {"_count": 1}, "flung": {"_count": 1}, "turned": {"_count": 1}, "crossed": {"_count": 1}, "entered": {"_count": 1}, "taken": {"_count": 1}, "settled": {"_count": 1}, "reached": {"_count": 2}, "decided": {"_count": 1}, "got": {"_count": 1}, "stormed": {"_count": 1}, "acquired": {"_count": 1}, "warned": {"_count": 1}, "half": {"_count": 1}, "died": {"_count": 1}, "disappeared": {"_count": 1}}, "anything": {"_count": 14, "as": {"_count": 1}, "to": {"_count": 11}, "bad": {"_count": 1}, "special": {"_count": 1}}, "written": {"_count": 17, "to": {"_count": 5}, "only": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "hardly": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 2}, "in": {"_count": 1}, "To": {"_count": 1}, "Grindelwald": {"_count": 1}, "those": {"_count": 1}}, "squeezed": {"_count": 7, "through": {"_count": 2}, "the": {"_count": 1}, "past": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}, "between": {"_count": 1}}, "my": {"_count": 9, "cupboard": {"_count": 1}, "back": {"_count": 1}, "birthday": {"_count": 1}, "wand": {"_count": 1}, "way": {"_count": 1}, "hearing": {"_count": 1}, "say": {"_count": 1}, "small": {"_count": 1}, "Cloak": {"_count": 1}}, "four": {"_count": 5, "bedrooms": {"_count": 1}, "hundred": {"_count": 1}, "more": {"_count": 1}, "legs": {"_count": 1}, "days": {"_count": 1}}, "once": {"_count": 56, "driven": {"_count": 1}, "held": {"_count": 1}, "belonged": {"_count": 5}, "been": {"_count": 8}, "heard": {"_count": 1}, "won": {"_count": 1}, "owned": {"_count": 2}, "again": {"_count": 4}, "beaten": {"_count": 1}, "caught": {"_count": 1}, "mentioned": {"_count": 1}, "counted": {"_count": 1}, "made": {"_count": 1}, "worn": {"_count": 1}, "before": {"_count": 2}, "forced": {"_count": 1}, "accused": {"_count": 1}, "overheard": {"_count": 1}, "tormented": {"_count": 1}, "sat": {"_count": 1}, "sent": {"_count": 1}, "hidden": {"_count": 1}, "seen": {"_count": 1}, "robbed": {"_count": 1}, "lived": {"_count": 3}, "given": {"_count": 1}, "demolished": {"_count": 1}, "played": {"_count": 1}, "shut": {"_count": 1}, "used": {"_count": 1}, "moved": {"_count": 1}, "received": {"_count": 1}, "slept": {"_count": 1}, "spoken": {"_count": 1}, "followed": {"_count": 1}, "hoped": {"_count": 1}, "commanded": {"_count": 1}, "thought": {"_count": 1}}, "swapped": {"_count": 3, "at": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "sat": {"_count": 23, "on": {"_count": 2}, "at": {"_count": 1}, "together": {"_count": 1}, "down": {"_count": 10}, "making": {"_count": 1}, "up": {"_count": 4}, "there": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "himself": {"_count": 1}}, "grabbed": {"_count": 6, "Uncle": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}, "Harrys": {"_count": 1}, "me": {"_count": 1}}, "moved": {"_count": 14, "out": {"_count": 2}, "forward": {"_count": 2}, "upstairs": {"_count": 1}, "about": {"_count": 1}, "their": {"_count": 1}, "closer": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 2}, "close": {"_count": 2}, "away": {"_count": 1}}, "arrived": {"_count": 44, "right": {"_count": 1}, "": {"_count": 11}, "at": {"_count": 6}, "on": {"_count": 2}, "to": {"_count": 2}, "for": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 4}, "rose": {"_count": 1}, "here": {"_count": 1}, "and": {"_count": 3}, "outside": {"_count": 1}, "bringing": {"_count": 1}, "but": {"_count": 1}, "ahead": {"_count": 1}, "all": {"_count": 1}, "unseen": {"_count": 1}, "shortly": {"_count": 1}, "led": {"_count": 1}, "an": {"_count": 1}, "precisely": {"_count": 1}, "out": {"_count": 1}}, "handed": {"_count": 4, "Aunt": {"_count": 1}, "out": {"_count": 1}, "him": {"_count": 1}, "Mr": {"_count": 1}}, "run": {"_count": 16, "out": {"_count": 1}, "down": {"_count": 1}, "away": {"_count": 1}, "headlong": {"_count": 1}, "screaming": {"_count": 1}, "across": {"_count": 1}, "his": {"_count": 1}, "barely": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}, "halfway": {"_count": 1}, "forward": {"_count": 1}, "": {"_count": 1}, "toward": {"_count": 1}, "off": {"_count": 1}, "around": {"_count": 1}}, "wrenched": {"_count": 1, "their": {"_count": 1}}, "hit": {"_count": 28, "him": {"_count": 11}, "a": {"_count": 2}, "the": {"_count": 5}, "was": {"_count": 1}, "dead": {"_count": 1}, "": {"_count": 1}, "some": {"_count": 1}, "Draco": {"_count": 1}, "an": {"_count": 2}, "one": {"_count": 1}, "Harry": {"_count": 1}, "them": {"_count": 1}}, "such": {"_count": 6, "a": {"_count": 6}}, "parked": {"_count": 1, "at": {"_count": 1}}, "given": {"_count": 80, "him": {"_count": 28}, "Harry": {"_count": 8}, "a": {"_count": 3}, "them": {"_count": 7}, "himself": {"_count": 2}, "Dumbledore": {"_count": 1}, "way": {"_count": 2}, "in": {"_count": 1}, "instructions": {"_count": 1}, "up": {"_count": 7}, "Bagman": {"_count": 1}, "both": {"_count": 1}, "Hermione": {"_count": 1}, "each": {"_count": 1}, "you": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 3}, "her": {"_count": 1}, "place": {"_count": 1}, "it": {"_count": 2}, "another": {"_count": 1}, "Ron": {"_count": 3}, "his": {"_count": 2}, "as": {"_count": 1}}, "brought": {"_count": 24, "with": {"_count": 3}, "out": {"_count": 2}, "cakes": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}, "along": {"_count": 2}, "down": {"_count": 1}, "shame": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}, "good": {"_count": 1}, "Mundungus": {"_count": 1}, "was": {"_count": 2}, "from": {"_count": 3}}, "you": {"_count": 6, "and": {"_count": 1}, "bugged": {"_count": 1}, "maintained": {"_count": 1}, "marked": {"_count": 1}, "not": {"_count": 1}, "done": {"_count": 1}}, "questions": {"_count": 1, "to": {"_count": 1}}, "enough": {"_count": 27, "human": {"_count": 2}, "of": {"_count": 7}, "": {"_count": 5}, "sense": {"_count": 1}, "unpleasant": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}, "ter": {"_count": 1}, "at": {"_count": 1}, "hardship": {"_count": 1}, "OWLS": {"_count": 1}, "responsibility": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}, "trouble": {"_count": 1}}, "happened": {"_count": 117, "when": {"_count": 5}, "to": {"_count": 18}, "so": {"_count": 2}, "during": {"_count": 2}, "": {"_count": 31}, "in": {"_count": 8}, "at": {"_count": 4}, "with": {"_count": 1}, "if": {"_count": 2}, "and": {"_count": 4}, "the": {"_count": 2}, "there": {"_count": 1}, "hundreds": {"_count": 1}, "that": {"_count": 1}, "after": {"_count": 1}, "yesterday": {"_count": 1}, "down": {"_count": 1}, "again": {"_count": 1}, "since": {"_count": 1}, "on": {"_count": 3}, "now": {"_count": 1}, "every": {"_count": 1}, "it": {"_count": 1}, "yet": {"_count": 1}, "tonight": {"_count": 1}, "over": {"_count": 1}, "There": {"_count": 1}, "first": {"_count": 1}, "half": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 2}, "for": {"_count": 1}, "three": {"_count": 1}, "she": {"_count": 1}, "not": {"_count": 1}, "then": {"_count": 1}, "Expelliarmus": {"_count": 1}, "wanting": {"_count": 1}, "heads": {"_count": 1}, "as": {"_count": 1}, "no": {"_count": 1}, "he": {"_count": 1}, "many": {"_count": 1}, "before": {"_count": 1}, "because": {"_count": 2}}, "somehow": {"_count": 6, "found": {"_count": 1}, "managed": {"_count": 1}, "survived": {"_count": 1}, "wormed": {"_count": 1}, "become": {"_count": 1}, "diminished": {"_count": 1}}, "Albus": {"_count": 1, "Dumbled": {"_count": 1}}, "finally": {"_count": 24, "gone": {"_count": 1}, "got": {"_count": 1}, "realized": {"_count": 1}, "forgotten": {"_count": 1}, "fallen": {"_count": 2}, "taken": {"_count": 1}, "achieved": {"_count": 2}, "removed": {"_count": 2}, "given": {"_count": 1}, "convinced": {"_count": 1}, "filtered": {"_count": 1}, "started": {"_count": 1}, "spoken": {"_count": 1}, "been": {"_count": 1}, "managed": {"_count": 3}, "emptied": {"_count": 1}, "finished": {"_count": 1}, "crossed": {"_count": 1}, "landed": {"_count": 1}}, "got": {"_count": 43, "a": {"_count": 1}, "both": {"_count": 1}, "his": {"_count": 2}, "off": {"_count": 1}, "there": {"_count": 2}, "to": {"_count": 8}, "one": {"_count": 1}, "through": {"_count": 5}, "wind": {"_count": 1}, "you": {"_count": 2}, "into": {"_count": 1}, "this": {"_count": 1}, "back": {"_count": 1}, "herself": {"_count": 1}, "himself": {"_count": 2}, "out": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 2}, "so": {"_count": 1}, "the": {"_count": 1}, "dressed": {"_count": 1}, "her": {"_count": 1}, "two": {"_count": 1}, "lost": {"_count": 1}, "up": {"_count": 2}, "some": {"_count": 1}}, "hired": {"_count": 1, "was": {"_count": 1}}, "so": {"_count": 19, "many": {"_count": 1}, "far": {"_count": 7}, "often": {"_count": 3}, "much": {"_count": 2}, "nearly": {"_count": 1}, "recently": {"_count": 1}, "kindly": {"_count": 1}, "reluctantly": {"_count": 1}, "resembled": {"_count": 1}, "annoyed": {"_count": 1}}, "cooked": {"_count": 1, "up": {"_count": 1}}, "told": {"_count": 60, "him": {"_count": 23}, "me": {"_count": 4}, "them": {"_count": 15}, "Mrs": {"_count": 2}, "her": {"_count": 4}, "Cedric": {"_count": 1}, "and": {"_count": 1}, "Fudge": {"_count": 1}, "us": {"_count": 2}, "myself": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 1}, "you": {"_count": 2}, "Hermione": {"_count": 1}}, "steered": {"_count": 2, "him": {"_count": 2}}, "suddenly": {"_count": 19, "gone": {"_count": 3}, "realized": {"_count": 1}, "noticed": {"_count": 1}, "streamed": {"_count": 1}, "glowed": {"_count": 1}, "reached": {"_count": 1}, "spun": {"_count": 1}, "vanished": {"_count": 1}, "stopped": {"_count": 1}, "got": {"_count": 1}, "leapt": {"_count": 1}, "remembered": {"_count": 1}, "been": {"_count": 1}, "lost": {"_count": 1}, "dawned": {"_count": 1}, "become": {"_count": 2}}, "touched": {"_count": 6, "quivered": {"_count": 1}, "Madam": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "about": {"_count": 3, "eight": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}}, "their": {"_count": 18, "noses": {"_count": 1}, "teacups": {"_count": 1}, "eyes": {"_count": 2}, "wands": {"_count": 2}, "homemade": {"_count": 1}, "flaps": {"_count": 1}, "say": {"_count": 1}, "own": {"_count": 2}, "arms": {"_count": 1}, "uses": {"_count": 1}, "hands": {"_count": 1}, "Christmas": {"_count": 1}, "mind": {"_count": 1}, "Herbology": {"_count": 1}, "chance": {"_count": 1}}, "crammed": {"_count": 3, "all": {"_count": 1}, "them": {"_count": 1}, "themselves": {"_count": 1}}, "they": {"_count": 8, "complained": {"_count": 1}, "reached": {"_count": 1}, "gone": {"_count": 1}, "seen": {"_count": 1}, "deserted": {"_count": 1}, "not": {"_count": 1}, "been": {"_count": 1}, "fallen": {"_count": 1}}, "": {"_count": 38, ".": {"_count": 33}, "?": {"_count": 3}, "!": {"_count": 2}}, "bought": {"_count": 9, "him": {"_count": 5}, "for": {"_count": 1}, "his": {"_count": 1}, "eight": {"_count": 1}, "the": {"_count": 1}}, "left": {"_count": 99, "the": {"_count": 26}, "and": {"_count": 1}, "him": {"_count": 9}, "": {"_count": 5}, "both": {"_count": 1}, "when": {"_count": 1}, "his": {"_count": 7}, "Divination": {"_count": 1}, "them": {"_count": 4}, "blood": {"_count": 1}, "ajar": {"_count": 1}, "not": {"_count": 1}, "on": {"_count": 2}, "Azkaban": {"_count": 1}, "behind": {"_count": 5}, "in": {"_count": 1}, "Dumbledores": {"_count": 1}, "school": {"_count": 1}, "all": {"_count": 2}, "before": {"_count": 1}, "me": {"_count": 1}, "said": {"_count": 1}, "her": {"_count": 2}, "anything": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 1}, "Privet": {"_count": 1}, "abandoned": {"_count": 1}, "off": {"_count": 1}, "for": {"_count": 1}, "Hogwarts": {"_count": 3}, "a": {"_count": 2}, "it": {"_count": 3}, "Harry": {"_count": 1}, "you": {"_count": 1}, "of": {"_count": 1}, "this": {"_count": 1}, "messages": {"_count": 1}, "Hermione": {"_count": 1}, "Gringotts": {"_count": 1}, "number": {"_count": 1}}, "fer": {"_count": 1, "a": {"_count": 1}}, "entered": {"_count": 30, "a": {"_count": 2}, "the": {"_count": 19}, "it": {"_count": 2}, "himself": {"_count": 1}, "Mr": {"_count": 1}, "that": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}}, "come": {"_count": 131, "so": {"_count": 3}, "in": {"_count": 2}, "": {"_count": 8}, "from": {"_count": 5}, "true": {"_count": 1}, "bursting": {"_count": 1}, "around": {"_count": 1}, "home": {"_count": 3}, "out": {"_count": 4}, "facetoface": {"_count": 6}, "over": {"_count": 3}, "off": {"_count": 1}, "to": {"_count": 31}, "early": {"_count": 1}, "back": {"_count": 13}, "down": {"_count": 4}, "round": {"_count": 1}, "with": {"_count": 2}, "galloping": {"_count": 1}, "for": {"_count": 3}, "and": {"_count": 3}, "Harry": {"_count": 2}, "dashing": {"_count": 2}, "darting": {"_count": 1}, "onto": {"_count": 1}, "as": {"_count": 2}, "across": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "running": {"_count": 2}, "a": {"_count": 1}, "edging": {"_count": 1}, "flooding": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 2}, "all": {"_count": 1}, "was": {"_count": 1}, "hurtling": {"_count": 1}, "lunging": {"_count": 1}, "floating": {"_count": 1}, "read": {"_count": 1}, "hurrying": {"_count": 1}, "without": {"_count": 1}, "striding": {"_count": 1}, "top": {"_count": 1}, "again": {"_count": 1}, "when": {"_count": 1}, "now": {"_count": 1}, "much": {"_count": 1}, "thundering": {"_count": 1}}, "found": {"_count": 49, "in": {"_count": 2}, "out": {"_count": 4}, "anything": {"_count": 1}, "a": {"_count": 5}, "his": {"_count": 2}, "it": {"_count": 3}, "the": {"_count": 6}, "such": {"_count": 1}, "Harrys": {"_count": 1}, "Winky": {"_count": 1}, "herself": {"_count": 1}, "Myrtles": {"_count": 1}, "solace": {"_count": 1}, "himself": {"_count": 6}, "interesting": {"_count": 1}, "him": {"_count": 2}, "Dumbledore": {"_count": 1}, "Slughorn": {"_count": 1}, "its": {"_count": 1}, "Ron": {"_count": 1}, "nothing": {"_count": 1}, "an": {"_count": 1}, "them": {"_count": 2}, "Gryffindors": {"_count": 1}, "stuck": {"_count": 1}, "Harry": {"_count": 1}}, "pinned": {"_count": 7, "to": {"_count": 1}, "his": {"_count": 2}, "a": {"_count": 2}, "up": {"_count": 1}, "Mundungus": {"_count": 1}}, "talked": {"_count": 5, "Dudley": {"_count": 1}, "about": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "themselves": {"_count": 1}}, "set": {"_count": 21, "off": {"_count": 8}, "out": {"_count": 2}, "down": {"_count": 2}, "Dobby": {"_count": 1}, "foot": {"_count": 1}, "them": {"_count": 1}, "an": {"_count": 1}, "him": {"_count": 1}, "up": {"_count": 1}, "other": {"_count": 1}, "around": {"_count": 1}, "to": {"_count": 1}}, "ten": {"_count": 2, "minutes": {"_count": 1}, "days": {"_count": 1}}, "an": {"_count": 42, "owl": {"_count": 2}, "idea": {"_count": 7}, "enormous": {"_count": 1}, "entire": {"_count": 1}, "effect": {"_count": 1}, "unfortunate": {"_count": 1}, "exam": {"_count": 1}, "engagement": {"_count": 1}, "Axminster": {"_count": 1}, "urge": {"_count": 1}, "excellent": {"_count": 2}, "easier": {"_count": 1}, "oddly": {"_count": 1}, "inkling": {"_count": 2}, "inspected": {"_count": 1}, "unpleasant": {"_count": 1}, "uncle": {"_count": 1}, "opportunity": {"_count": 1}, "air": {"_count": 2}, "uncanny": {"_count": 1}, "unimpeded": {"_count": 1}, "enjoyable": {"_count": 1}, "enemy": {"_count": 1}, "empty": {"_count": 1}, "aura": {"_count": 1}, "accomplice": {"_count": 1}, "immense": {"_count": 1}, "ironclad": {"_count": 1}, "extremely": {"_count": 1}, "ominous": {"_count": 1}, "equal": {"_count": 1}, "answer": {"_count": 1}}, "cleared": {"_count": 7, "away": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "of": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}}, "he": {"_count": 41, "done": {"_count": 3}, "heard": {"_count": 2}, "learned": {"_count": 1}, "been": {"_count": 5}, "gone": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 2}, "not": {"_count": 2}, "filled": {"_count": 1}, "expected": {"_count": 1}, "ever": {"_count": 1}, "thought": {"_count": 1}, "reached": {"_count": 1}, "written": {"_count": 1}, "become": {"_count": 1}, "said": {"_count": 1}, "arrived": {"_count": 1}, "never": {"_count": 3}, "invited": {"_count": 1}, "finished": {"_count": 1}, "imagined": {"_count": 1}, "known": {"_count": 2}, "knew": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}, "felt": {"_count": 1}, "seen": {"_count": 1}, "already": {"_count": 1}, "traced": {"_count": 1}}, "done": {"_count": 117, "it": {"_count": 8}, "": {"_count": 19}, "a": {"_count": 5}, "her": {"_count": 1}, "the": {"_count": 11}, "for": {"_count": 2}, "one": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 2}, "without": {"_count": 1}, "to": {"_count": 3}, "went": {"_count": 1}, "his": {"_count": 1}, "nothing": {"_count": 1}, "lately": {"_count": 1}, "so": {"_count": 6}, "or": {"_count": 2}, "in": {"_count": 7}, "an": {"_count": 1}, "at": {"_count": 4}, "something": {"_count": 2}, "on": {"_count": 8}, "this": {"_count": 1}, "as": {"_count": 1}, "everything": {"_count": 1}, "with": {"_count": 1}, "when": {"_count": 2}, "straightened": {"_count": 1}, "shook": {"_count": 1}, "magic": {"_count": 1}, "since": {"_count": 1}, "any": {"_count": 1}, "all": {"_count": 2}, "then": {"_count": 1}, "after": {"_count": 1}, "quiet": {"_count": 1}, "two": {"_count": 1}, "reasonably": {"_count": 1}, "him": {"_count": 1}, "suspended": {"_count": 1}, "several": {"_count": 1}, "before": {"_count": 2}, "no": {"_count": 1}, "barely": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}, "rubbed": {"_count": 1, "it": {"_count": 1}}, "three": {"_count": 5, "wizard": {"_count": 1}, "heads": {"_count": 1}, "floors": {"_count": 1}, "years": {"_count": 1}, "highly": {"_count": 1}}, "any": {"_count": 24, "money": {"_count": 2}, "breakfast": {"_count": 1}, "of": {"_count": 3}, "idea": {"_count": 2}, "proof": {"_count": 2}, "luck": {"_count": 3}, "chocolate": {"_count": 1}, "decency": {"_count": 2}, "plans": {"_count": 1}, "news": {"_count": 1}, "thoughts": {"_count": 1}, "ideas": {"_count": 1}, "respect": {"_count": 1}, "hope": {"_count": 1}, "letters": {"_count": 1}, "time": {"_count": 1}}, "carried": {"_count": 4, "them": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "pockets": {"_count": 1, "rattling": {"_count": 1}}, "disappeared": {"_count": 30, "": {"_count": 7}, "from": {"_count": 3}, "and": {"_count": 2}, "then": {"_count": 1}, "youd": {"_count": 1}, "into": {"_count": 5}, "again": {"_count": 2}, "to": {"_count": 1}, "Ron": {"_count": 1}, "probably": {"_count": 1}, "Dumbledore": {"_count": 1}, "through": {"_count": 2}, "he": {"_count": 2}, "just": {"_count": 1}}, "not": {"_count": 307, "only": {"_count": 5}, "varied": {"_count": 1}, "brought": {"_count": 1}, "taken": {"_count": 3}, "died": {"_count": 3}, "heard": {"_count": 10}, "committed": {"_count": 2}, "felt": {"_count": 4}, "": {"_count": 2}, "been": {"_count": 54}, "entered": {"_count": 1}, "worked": {"_count": 2}, "escaped": {"_count": 2}, "approved": {"_count": 1}, "had": {"_count": 4}, "joined": {"_count": 1}, "eaten": {"_count": 2}, "needed": {"_count": 1}, "yet": {"_count": 18}, "forgotten": {"_count": 6}, "come": {"_count": 3}, "found": {"_count": 3}, "left": {"_count": 4}, "spoken": {"_count": 4}, "told": {"_count": 5}, "seen": {"_count": 14}, "The": {"_count": 2}, "foreseen": {"_count": 2}, "saved": {"_count": 1}, "noticed": {"_count": 8}, "yelled": {"_count": 1}, "made": {"_count": 4}, "combed": {"_count": 1}, "bothered": {"_count": 1}, "thought": {"_count": 5}, "dropped": {"_count": 1}, "really": {"_count": 2}, "said": {"_count": 2}, "asked": {"_count": 1}, "packed": {"_count": 3}, "misunderstood": {"_count": 1}, "appeared": {"_count": 1}, "added": {"_count": 1}, "even": {"_count": 7}, "warned": {"_count": 1}, "written": {"_count": 1}, "finished": {"_count": 3}, "dawdled": {"_count": 1}, "smashed": {"_count": 1}, "meant": {"_count": 5}, "recognized": {"_count": 2}, "expected": {"_count": 11}, "quite": {"_count": 2}, "restrained": {"_count": 1}, "wanted": {"_count": 2}, "imagined": {"_count": 1}, "contacted": {"_count": 1}, "merely": {"_count": 1}, "obeyed": {"_count": 1}, "once": {"_count": 1}, "practiced": {"_count": 1}, "reckoned": {"_count": 1}, "confided": {"_count": 2}, "of": {"_count": 1}, "laid": {"_count": 1}, "mixed": {"_count": 1}, "realized": {"_count": 4}, "reached": {"_count": 1}, "a": {"_count": 2}, "flinched": {"_count": 1}, "so": {"_count": 1}, "paused": {"_count": 1}, "dreamed": {"_count": 1}, "gone": {"_count": 2}, "as": {"_count": 2}, "talked": {"_count": 1}, "forgiven": {"_count": 1}, "uttered": {"_count": 1}, "known": {"_count": 3}, "secured": {"_count": 1}, "cracked": {"_count": 1}, "met": {"_count": 1}, "just": {"_count": 1}, "enjoyed": {"_count": 1}, "sped": {"_count": 1}, "understood": {"_count": 1}, "moved": {"_count": 2}, "raised": {"_count": 1}, "proved": {"_count": 1}, "forced": {"_count": 1}, "vacated": {"_count": 1}, "dared": {"_count": 1}, "eliminated": {"_count": 1}, "happened": {"_count": 2}, "immediately": {"_count": 2}, "spared": {"_count": 1}, "counted": {"_count": 1}, "answered": {"_count": 1}, "hurt": {"_count": 1}, "grasped": {"_count": 1}, "occurred": {"_count": 1}, "was": {"_count": 1}, "anticipated": {"_count": 1}, "betrayed": {"_count": 1}, "convinced": {"_count": 1}, "given": {"_count": 1}, "slept": {"_count": 2}, "persuaded": {"_count": 1}, "drawn": {"_count": 1}, "cried": {"_count": 1}, "simply": {"_count": 1}, "explained": {"_count": 1}, "having": {"_count": 1}, "won": {"_count": 1}, "lost": {"_count": 2}, "passed": {"_count": 1}, "previously": {"_count": 1}, "pained": {"_count": 1}}, "better": {"_count": 17, "change": {"_count": 1}, "get": {"_count": 4}, "hurry": {"_count": 1}, "make": {"_count": 1}, "separate": {"_count": 1}, "be": {"_count": 2}, "not": {"_count": 2}, "listen": {"_count": 1}, "come": {"_count": 1}, "go": {"_count": 1}, "things": {"_count": 1}, "return": {"_count": 1}}, "opened": {"_count": 20, "suddenly": {"_count": 1}, "the": {"_count": 6}, "again": {"_count": 1}, "of": {"_count": 1}, "with": {"_count": 1}, "their": {"_count": 2}, "his": {"_count": 3}, "": {"_count": 1}, "and": {"_count": 2}, "for": {"_count": 1}, "perhaps": {"_count": 1}}, "returned": {"_count": 27, "": {"_count": 9}, "to": {"_count": 11}, "from": {"_count": 1}, "emptyhanded": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "closing": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}}, "turned": {"_count": 89, "to": {"_count": 6}, "a": {"_count": 6}, "light": {"_count": 1}, "white": {"_count": 2}, "out": {"_count": 3}, "and": {"_count": 3}, "into": {"_count": 4}, "his": {"_count": 4}, "yellow": {"_count": 1}, "Hagrid": {"_count": 1}, "up": {"_count": 8}, "Orange": {"_count": 1}, "off": {"_count": 1}, "traitor": {"_count": 1}, "back": {"_count": 3}, "on": {"_count": 2}, "gold": {"_count": 1}, "rather": {"_count": 1}, "remarkably": {"_count": 1}, "him": {"_count": 1}, "jet": {"_count": 1}, "their": {"_count": 1}, "spy": {"_count": 1}, "bubblegum": {"_count": 1}, "brick": {"_count": 1}, "toward": {"_count": 1}, "an": {"_count": 2}, "the": {"_count": 3}, "scarlet": {"_count": 1}, "squatly": {"_count": 1}, "automatically": {"_count": 1}, "head": {"_count": 1}, "from": {"_count": 1}, "bright": {"_count": 2}, "as": {"_count": 1}, "away": {"_count": 3}, "it": {"_count": 1}, "pink": {"_count": 2}, "suddenly": {"_count": 1}, "green": {"_count": 1}, "red": {"_count": 3}, "her": {"_count": 1}, "blonde": {"_count": 1}, "Ron": {"_count": 1}, "upon": {"_count": 1}, "eleven": {"_count": 1}, "pale": {"_count": 2}, "clear": {"_count": 1}}, "mentioned": {"_count": 6, "a": {"_count": 1}, "along": {"_count": 1}, "something": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 1}, "their": {"_count": 1}}, "obviously": {"_count": 16, "been": {"_count": 1}, "tried": {"_count": 1}, "whittled": {"_count": 1}, "got": {"_count": 1}, "visited": {"_count": 1}, "just": {"_count": 2}, "not": {"_count": 2}, "gone": {"_count": 2}, "told": {"_count": 1}, "traveled": {"_count": 1}, "managed": {"_count": 1}, "forgotten": {"_count": 1}, "run": {"_count": 1}}, "barely": {"_count": 36, "touched": {"_count": 1}, "whipped": {"_count": 1}, "lasted": {"_count": 1}, "set": {"_count": 1}, "turned": {"_count": 1}, "closed": {"_count": 1}, "finished": {"_count": 1}, "left": {"_count": 1}, "raised": {"_count": 1}, "glimpsed": {"_count": 2}, "had": {"_count": 2}, "lain": {"_count": 1}, "to": {"_count": 1}, "noticed": {"_count": 1}, "begun": {"_count": 1}, "staggered": {"_count": 1}, "ten": {"_count": 1}, "reached": {"_count": 3}, "cleared": {"_count": 1}, "healed": {"_count": 1}, "taken": {"_count": 3}, "sat": {"_count": 1}, "resumed": {"_count": 1}, "a": {"_count": 1}, "hit": {"_count": 1}, "known": {"_count": 1}, "stood": {"_count": 1}, "read": {"_count": 1}, "joined": {"_count": 1}, "entered": {"_count": 1}}, "shouted": {"_count": 10, "GRYFFINDOR": {"_count": 1}, "herself": {"_count": 1}, "": {"_count": 2}, "stupidly": {"_count": 1}, "at": {"_count": 2}, "a": {"_count": 1}, "Its": {"_count": 1}, "out": {"_count": 1}}, "only": {"_count": 49, "just": {"_count": 18}, "one": {"_count": 2}, "seen": {"_count": 2}, "five": {"_count": 1}, "ever": {"_count": 3}, "had": {"_count": 1}, "seconds": {"_count": 2}, "hoped": {"_count": 1}, "found": {"_count": 1}, "gone": {"_count": 1}, "been": {"_count": 2}, "the": {"_count": 1}, "done": {"_count": 1}, "scattered": {"_count": 1}, "received": {"_count": 1}, "guaranteed": {"_count": 1}, "filled": {"_count": 1}, "opened": {"_count": 1}, "pulled": {"_count": 1}, "grudgingly": {"_count": 1}, "narrowly": {"_count": 1}, "let": {"_count": 1}, "persevered": {"_count": 1}, "agreed": {"_count": 1}, "managed": {"_count": 1}, "summoned": {"_count": 1}}, "eaten": {"_count": 8, "as": {"_count": 2}, "a": {"_count": 1}, "Scabbers": {"_count": 2}, "less": {"_count": 1}, "they": {"_count": 1}, "their": {"_count": 1}}, "become": {"_count": 47, "rather": {"_count": 1}, "a": {"_count": 5}, "icy": {"_count": 1}, "thicker": {"_count": 1}, "the": {"_count": 1}, "most": {"_count": 2}, "extremely": {"_count": 1}, "dislodged": {"_count": 1}, "an": {"_count": 1}, "famous": {"_count": 1}, "distracted": {"_count": 1}, "Hogwarts": {"_count": 1}, "of": {"_count": 2}, "immensely": {"_count": 1}, "hard": {"_count": 1}, "fewer": {"_count": 1}, "webbed": {"_count": 1}, "elongated": {"_count": 1}, "transparent": {"_count": 2}, "more": {"_count": 3}, "so": {"_count": 4}, "cool": {"_count": 1}, "quieter": {"_count": 1}, "glacial": {"_count": 1}, "springily": {"_count": 1}, "very": {"_count": 1}, "slightly": {"_count": 1}, "shriller": {"_count": 1}, "headmaster": {"_count": 1}, "inextricably": {"_count": 1}, "entangled": {"_count": 1}, "how": {"_count": 1}, "impacted": {"_count": 1}, "blurred": {"_count": 1}, "shed": {"_count": 1}}, "finished": {"_count": 60, "he": {"_count": 7}, "": {"_count": 3}, "Aunt": {"_count": 1}, "his": {"_count": 2}, "threatening": {"_count": 1}, "they": {"_count": 1}, "with": {"_count": 3}, "their": {"_count": 5}, "so": {"_count": 1}, "moths": {"_count": 1}, "breakfast": {"_count": 1}, "eating": {"_count": 3}, "it": {"_count": 2}, "Sirius": {"_count": 1}, "conjuring": {"_count": 1}, "buttoning": {"_count": 1}, "she": {"_count": 2}, "reading": {"_count": 1}, "more": {"_count": 1}, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "neither": {"_count": 1}, "her": {"_count": 2}, "saying": {"_count": 1}, "and": {"_count": 1}, "packing": {"_count": 1}, "using": {"_count": 1}, "dinner": {"_count": 1}, "speaking": {"_count": 3}, "there": {"_count": 1}, "kissing": {"_count": 1}, "Hermione": {"_count": 2}, "the": {"_count": 1}, "describing": {"_count": 1}, "telling": {"_count": 1}, "Lupin": {"_count": 1}, "that": {"_count": 1}}, "managed": {"_count": 44, "to": {"_count": 40}, "in": {"_count": 1}, "everything": {"_count": 1}, "an": {"_count": 1}, "it": {"_count": 1}}, "fallen": {"_count": 57, "asleep": {"_count": 6}, "and": {"_count": 3}, "off": {"_count": 5}, "over": {"_count": 2}, "on": {"_count": 2}, "sideways": {"_count": 1}, "out": {"_count": 5}, "at": {"_count": 1}, "before": {"_count": 2}, "to": {"_count": 3}, "fifty": {"_count": 1}, "into": {"_count": 3}, "through": {"_count": 1}, "": {"_count": 9}, "open": {"_count": 1}, "silent": {"_count": 3}, "right": {"_count": 1}, "short": {"_count": 1}, "in": {"_count": 2}, "back": {"_count": 1}, "exactly": {"_count": 1}, "from": {"_count": 1}, "with": {"_count": 1}, "briefly": {"_count": 1}}, "made": {"_count": 70, "any": {"_count": 1}, "the": {"_count": 8}, "Harry": {"_count": 2}, "them": {"_count": 1}, "it": {"_count": 4}, "him": {"_count": 4}, "sure": {"_count": 4}, "up": {"_count": 4}, "herself": {"_count": 1}, "a": {"_count": 5}, "an": {"_count": 1}, "his": {"_count": 4}, "Mrs": {"_count": 1}, "noises": {"_count": 1}, "very": {"_count": 1}, "what": {"_count": 1}, "arrangements": {"_count": 1}, "in": {"_count": 3}, "my": {"_count": 1}, "Wormtail": {"_count": 1}, "its": {"_count": 1}, "tea": {"_count": 1}, "Dudley": {"_count": 1}, "earlier": {"_count": 1}, "enormous": {"_count": 1}, "himself": {"_count": 2}, "contact": {"_count": 1}, "to": {"_count": 1}, "jokes": {"_count": 1}, "annotations": {"_count": 1}, "however": {"_count": 1}, "muttering": {"_count": 1}, "her": {"_count": 1}, "everyone": {"_count": 1}, "no": {"_count": 1}, "this": {"_count": 1}, "with": {"_count": 1}, "scarlet": {"_count": 1}, "for": {"_count": 1}, "your": {"_count": 1}}, "really": {"_count": 11, "been": {"_count": 2}, "fallen": {"_count": 1}, "happened": {"_count": 1}, "risen": {"_count": 1}, "wanted": {"_count": 1}, "seen": {"_count": 1}, "just": {"_count": 1}, "gone": {"_count": 1}, "killed": {"_count": 1}, "cared": {"_count": 1}}, "fought": {"_count": 5, "off": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}}, "noticed": {"_count": 19, "that": {"_count": 1}, "because": {"_count": 1}, "Harry": {"_count": 2}, "": {"_count": 4}, "a": {"_count": 2}, "their": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}, "earlier": {"_count": 1}, "too": {"_count": 1}, "what": {"_count": 1}, "another": {"_count": 1}, "this": {"_count": 1}}, "tea": {"_count": 1, "with": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "shot": {"_count": 7, "into": {"_count": 1}, "straight": {"_count": 1}, "directly": {"_count": 1}, "out": {"_count": 2}, "from": {"_count": 2}}, "looked": {"_count": 18, "through": {"_count": 1}, "in": {"_count": 1}, "away": {"_count": 2}, "more": {"_count": 1}, "like": {"_count": 1}, "downright": {"_count": 1}, "very": {"_count": 1}, "up": {"_count": 3}, "and": {"_count": 1}, "positively": {"_count": 1}, "around": {"_count": 2}, "horrified": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 1}}, "stewed": {"_count": 1, "his": {"_count": 1}}, "changed": {"_count": 17, "the": {"_count": 2}, "at": {"_count": 1}, "behind": {"_count": 1}, "since": {"_count": 1}, "": {"_count": 4}, "this": {"_count": 1}, "her": {"_count": 1}, "but": {"_count": 1}, "completely": {"_count": 2}, "already": {"_count": 1}, "toward": {"_count": 1}, "in": {"_count": 1}}, "emptied": {"_count": 3, "vault": {"_count": 1}, "his": {"_count": 2}}, "Potions": {"_count": 4, "with": {"_count": 2}, "that": {"_count": 2}}, "caught": {"_count": 15, "Ron": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 4}, "Harry": {"_count": 1}, "it": {"_count": 1}, "so": {"_count": 1}, "up": {"_count": 3}, "fire": {"_count": 1}, "earlier": {"_count": 1}, "him": {"_count": 1}}, "good": {"_count": 3, "reason": {"_count": 2}, "summers": {"_count": 1}}, "heard": {"_count": 68, "Fred": {"_count": 1}, "these": {"_count": 1}, "": {"_count": 3}, "in": {"_count": 3}, "that": {"_count": 3}, "twice": {"_count": 1}, "her": {"_count": 2}, "their": {"_count": 1}, "what": {"_count": 1}, "them": {"_count": 3}, "the": {"_count": 7}, "a": {"_count": 6}, "Mr": {"_count": 1}, "his": {"_count": 1}, "Voldemort": {"_count": 1}, "it": {"_count": 4}, "intruders": {"_count": 1}, "just": {"_count": 1}, "on": {"_count": 1}, "some": {"_count": 1}, "him": {"_count": 4}, "Phineas": {"_count": 1}, "as": {"_count": 2}, "Marietta": {"_count": 1}, "from": {"_count": 2}, "and": {"_count": 1}, "perfectly": {"_count": 1}, "voices": {"_count": 1}, "right": {"_count": 1}, "but": {"_count": 1}, "any": {"_count": 1}, "Lavender": {"_count": 1}, "Dean": {"_count": 1}, "nearly": {"_count": 1}, "about": {"_count": 1}, "for": {"_count": 1}, "exactly": {"_count": 1}, "she": {"_count": 1}, "Hermione": {"_count": 1}, "came": {"_count": 1}}, "short": {"_count": 6, "gray": {"_count": 1}, "legs": {"_count": 1}, "bristly": {"_count": 1}, "blonde": {"_count": 1}, "bandy": {"_count": 1}, "hair": {"_count": 1}}, "simply": {"_count": 6, "rolled": {"_count": 1}, "got": {"_count": 1}, "spotted": {"_count": 1}, "taken": {"_count": 1}, "never": {"_count": 1}, "been": {"_count": 1}}, "her": {"_count": 15, "arm": {"_count": 2}, "copy": {"_count": 1}, "hand": {"_count": 2}, "hands": {"_count": 1}, "ear": {"_count": 1}, "glasses": {"_count": 1}, "face": {"_count": 1}, "arms": {"_count": 1}, "own": {"_count": 1}, "round": {"_count": 1}, "wand": {"_count": 1}, "back": {"_count": 2}}, "spent": {"_count": 21, "all": {"_count": 2}, "ten": {"_count": 1}, "most": {"_count": 5}, "two": {"_count": 1}, "the": {"_count": 3}, "over": {"_count": 1}, "a": {"_count": 2}, "every": {"_count": 1}, "nearly": {"_count": 1}, "down": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}}, "supposed": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 4, "said": {"_count": 1}, "and": {"_count": 1}, "got": {"_count": 1}, "flung": {"_count": 1}}, "difficulty": {"_count": 5, "hiding": {"_count": 1}, "getting": {"_count": 1}, "in": {"_count": 2}, "extracting": {"_count": 1}}, "little": {"_count": 8, "fluttering": {"_count": 1}, "choice": {"_count": 1}, "to": {"_count": 3}, "thought": {"_count": 1}, "right": {"_count": 1}, "time": {"_count": 1}}, "mastered": {"_count": 3, "the": {"_count": 3}}, "all": {"_count": 36, "been": {"_count": 9}, "her": {"_count": 1}, "climbed": {"_count": 1}, "scuttled": {"_count": 1}, "kissed": {"_count": 1}, "his": {"_count": 1}, "risen": {"_count": 1}, "raised": {"_count": 1}, "clustered": {"_count": 1}, "night": {"_count": 1}, "week": {"_count": 1}, "finished": {"_count": 1}, "turned": {"_count": 1}, "greeted": {"_count": 1}, "agreed": {"_count": 1}, "died": {"_count": 1}, "these": {"_count": 1}, "disappeared": {"_count": 1}, "left": {"_count": 1}, "looked": {"_count": 1}, "tried": {"_count": 1}, "halted": {"_count": 1}, "term": {"_count": 1}, "the": {"_count": 2}, "methods": {"_count": 1}, "gone": {"_count": 1}, "found": {"_count": 1}}, "at": {"_count": 9, "the": {"_count": 1}, "any": {"_count": 1}, "least": {"_count": 3}, "number": {"_count": 1}, "last": {"_count": 3}}, "still": {"_count": 10, "been": {"_count": 2}, "not": {"_count": 6}, "endured": {"_count": 1}, "had": {"_count": 1}}, "sunk": {"_count": 10, "to": {"_count": 4}, "back": {"_count": 1}, "weak": {"_count": 1}, "themselves": {"_count": 1}, "right": {"_count": 1}, "through": {"_count": 1}, "out": {"_count": 1}}, "climbed": {"_count": 5, "two": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}, "back": {"_count": 1}}, "begun": {"_count": 18, "": {"_count": 3}, "to": {"_count": 13}, "in": {"_count": 1}, "the": {"_count": 1}}, "leaked": {"_count": 1, "out": {"_count": 1}}, "Hermione": {"_count": 3, "as": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "also": {"_count": 16, "lent": {"_count": 1}, "forgotten": {"_count": 2}, "had": {"_count": 2}, "said": {"_count": 1}, "started": {"_count": 1}, "taken": {"_count": 1}, "managed": {"_count": 1}, "seemed": {"_count": 1}, "been": {"_count": 2}, "shouted": {"_count": 1}, "collapsed": {"_count": 1}, "Harry": {"_count": 1}, "explained": {"_count": 1}}, "saved": {"_count": 10, "her": {"_count": 3}, "them": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "magpielike": {"_count": 1}, "Harrys": {"_count": 1}, "their": {"_count": 1}, "him": {"_count": 1}}, "conjured": {"_count": 8, "them": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 2}, "came": {"_count": 1}, "back": {"_count": 1}, "out": {"_count": 1}}, "his": {"_count": 45, "first": {"_count": 2}, "eyes": {"_count": 1}, "leg": {"_count": 1}, "bones": {"_count": 1}, "mind": {"_count": 1}, "head": {"_count": 2}, "own": {"_count": 1}, "nose": {"_count": 1}, "ear": {"_count": 1}, "copy": {"_count": 1}, "memory": {"_count": 1}, "name": {"_count": 1}, "wand": {"_count": 6}, "usual": {"_count": 1}, "supporters": {"_count": 1}, "on": {"_count": 1}, "face": {"_count": 1}, "best": {"_count": 1}, "breach": {"_count": 1}, "reasons": {"_count": 2}, "badge": {"_count": 1}, "fullsize": {"_count": 1}, "back": {"_count": 2}, "bag": {"_count": 1}, "mark": {"_count": 1}, "hand": {"_count": 1}, "answer": {"_count": 3}, "arm": {"_count": 1}, "tongue": {"_count": 1}, "wits": {"_count": 1}, "brother": {"_count": 1}, "retort": {"_count": 1}, "heart": {"_count": 1}, "hour": {"_count": 1}}, "binoculars": {"_count": 1, "": {"_count": 1}}, "painted": {"_count": 1, "a": {"_count": 1}}, "ruined": {"_count": 3, "": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}}, "performed": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}}, "some": {"_count": 17, "troll": {"_count": 1}, "sort": {"_count": 1}, "said": {"_count": 1}, "problems": {"_count": 1}, "of": {"_count": 1}, "harebrained": {"_count": 1}, "experience": {"_count": 2}, "notice": {"_count": 1}, "English": {"_count": 1}, "gaping": {"_count": 1}, "measure": {"_count": 1}, "very": {"_count": 1}, "wait": {"_count": 1}, "hope": {"_count": 1}, "secret": {"_count": 1}, "reservations": {"_count": 1}}, "scored": {"_count": 3, "Harry": {"_count": 1}, "there": {"_count": 1}, "twice": {"_count": 1}}, "time": {"_count": 31, "to": {"_count": 25}, "sir": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}, "anyway": {"_count": 1}, "they": {"_count": 1}, "havent": {"_count": 1}}, "blocked": {"_count": 1, "Harry": {"_count": 1}}, "half": {"_count": 6, "a": {"_count": 2}, "hoped": {"_count": 2}, "the": {"_count": 1}, "risen": {"_count": 1}}, "won": {"_count": 15, "by": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 5}, "in": {"_count": 2}, "a": {"_count": 1}, "WHAM": {"_count": 1}, "but": {"_count": 1}, "him": {"_count": 1}, "or": {"_count": 1}, "himself": {"_count": 1}}, "roaring": {"_count": 1, "fires": {"_count": 1}}, "lost": {"_count": 29, "he": {"_count": 1}, "them": {"_count": 1}, "its": {"_count": 2}, "black": {"_count": 1}, "his": {"_count": 7}, "": {"_count": 3}, "a": {"_count": 1}, "all": {"_count": 3}, "control": {"_count": 1}, "no": {"_count": 1}, "track": {"_count": 2}, "family": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "everybody": {"_count": 1}, "Perkinss": {"_count": 1}, "her": {"_count": 1}}, "signed": {"_count": 4, "up": {"_count": 2}, "Hermione": {"_count": 1}, "their": {"_count": 1}}, "golden": {"_count": 1, "bubbles": {"_count": 1}}, "indeed": {"_count": 10, "been": {"_count": 4}, "heard": {"_count": 1}, "just": {"_count": 2}, "ordered": {"_count": 1}, "made": {"_count": 1}, "lived": {"_count": 1}}, "let": {"_count": 15, "it": {"_count": 1}, "go": {"_count": 2}, "Harry": {"_count": 1}, "off": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}, "slip": {"_count": 2}, "air": {"_count": 1}, "in": {"_count": 1}, "her": {"_count": 1}, "out": {"_count": 3}}, "odd": {"_count": 2, "moments": {"_count": 1}, "taste": {"_count": 1}}, "trouble": {"_count": 4, "getting": {"_count": 1}, "like": {"_count": 1}, "remembering": {"_count": 1}, "with": {"_count": 1}}, "lent": {"_count": 4, "him": {"_count": 3}, "them": {"_count": 1}}, "torn": {"_count": 4, "open": {"_count": 1}, "these": {"_count": 1}, "it": {"_count": 1}, "off": {"_count": 1}}, "sent": {"_count": 22, "the": {"_count": 2}, "it": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 6}, "that": {"_count": 1}, "Hedwig": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 2}, "an": {"_count": 1}, "rocketing": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}, "Voldemort": {"_count": 1}, "Luna": {"_count": 1}}, "clearly": {"_count": 15, "gotten": {"_count": 1}, "been": {"_count": 4}, "come": {"_count": 1}, "tried": {"_count": 1}, "noticed": {"_count": 2}, "just": {"_count": 2}, "loathed": {"_count": 1}, "fallen": {"_count": 1}, "planned": {"_count": 1}, "never": {"_count": 1}}, "hidden": {"_count": 9, "in": {"_count": 2}, "himself": {"_count": 1}, "Grawp": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 1}, "his": {"_count": 1}}, "screamed": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "dark": {"_count": 2, "red": {"_count": 1}, "shadows": {"_count": 1}}, "Harrys": {"_count": 3, "knobbly": {"_count": 1}, "own": {"_count": 1}, "upper": {"_count": 1}}, "too": {"_count": 9, "many": {"_count": 2}, "much": {"_count": 6}, "": {"_count": 1}}, "one": {"_count": 17, "thought": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 4}, "bit": {"_count": 1}, "said": {"_count": 1}, "brief": {"_count": 2}, "horrifying": {"_count": 1}, "that": {"_count": 1}, "eye": {"_count": 1}, "hand": {"_count": 1}, "last": {"_count": 1}, "and": {"_count": 1}, "small": {"_count": 1}}, "convinced": {"_count": 2, "Harry": {"_count": 1}, "herself": {"_count": 1}}, "even": {"_count": 20, "less": {"_count": 1}, "noticed": {"_count": 1}, "padlocked": {"_count": 1}, "signed": {"_count": 1}, "looked": {"_count": 1}, "started": {"_count": 2}, "rung": {"_count": 1}, "though": {"_count": 1}, "put": {"_count": 1}, "been": {"_count": 1}, "begun": {"_count": 1}, "tried": {"_count": 1}, "unglued": {"_count": 1}, "hit": {"_count": 1}, "entered": {"_count": 1}, "exceeded": {"_count": 1}, "drifted": {"_count": 1}, "handled": {"_count": 1}, "heard": {"_count": 1}}, "replaced": {"_count": 7, "the": {"_count": 4}, "his": {"_count": 1}, "them": {"_count": 1}, "number": {"_count": 1}}, "fewer": {"_count": 1, "nightmares": {"_count": 1}}, "another": {"_count": 3, "reason": {"_count": 1}, "slug": {"_count": 1}, "worry": {"_count": 1}}, "both": {"_count": 9, "brought": {"_count": 1}, "placed": {"_count": 1}, "hands": {"_count": 1}, "jumped": {"_count": 1}, "turned": {"_count": 1}, "her": {"_count": 1}, "lived": {"_count": 1}, "lost": {"_count": 1}, "grabbed": {"_count": 1}}, "poked": {"_count": 1, "Ron": {"_count": 1}}, "pulled": {"_count": 21, "out": {"_count": 6}, "Mr": {"_count": 1}, "off": {"_count": 4}, "the": {"_count": 2}, "ahead": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 1}, "over": {"_count": 1}, "his": {"_count": 1}, "Dudleys": {"_count": 1}, "Peakes": {"_count": 1}, "Ron": {"_count": 1}}, "trusted": {"_count": 3, "enough": {"_count": 1}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}}, "guarded": {"_count": 1, "it": {"_count": 1}}, "now": {"_count": 29, "started": {"_count": 2}, "been": {"_count": 3}, "begun": {"_count": 1}, "settled": {"_count": 1}, "appeared": {"_count": 1}, "scored": {"_count": 1}, "reached": {"_count": 1}, "lined": {"_count": 1}, "gleefully": {"_count": 1}, "risen": {"_count": 1}, "failed": {"_count": 1}, "swooped": {"_count": 1}, "grown": {"_count": 1}, "taken": {"_count": 1}, "shared": {"_count": 1}, "become": {"_count": 1}, "served": {"_count": 1}, "left": {"_count": 1}, "set": {"_count": 1}, "seized": {"_count": 1}, "lifted": {"_count": 1}, "chosen": {"_count": 1}, "decided": {"_count": 1}, "achieved": {"_count": 1}, "vanished": {"_count": 1}, "returned": {"_count": 1}}, "stopped": {"_count": 51, "dead": {"_count": 2}, "drawing": {"_count": 1}, "noticing": {"_count": 1}, "right": {"_count": 1}, "laughing": {"_count": 1}, "in": {"_count": 1}, "shouting": {"_count": 1}, "feeling": {"_count": 1}, "discussing": {"_count": 1}, "his": {"_count": 1}, "abruptly": {"_count": 1}, "the": {"_count": 2}, "dancing": {"_count": 2}, "": {"_count": 2}, "calling": {"_count": 1}, "spinning": {"_count": 1}, "working": {"_count": 2}, "hurting": {"_count": 1}, "adding": {"_count": 1}, "twitching": {"_count": 1}, "at": {"_count": 1}, "walking": {"_count": 4}, "yelling": {"_count": 1}, "screaming": {"_count": 1}, "again": {"_count": 2}, "sounding": {"_count": 1}, "talking": {"_count": 2}, "Dumbledore": {"_count": 1}, "training": {"_count": 1}, "knitting": {"_count": 1}, "on": {"_count": 1}, "with": {"_count": 1}, "running": {"_count": 1}, "and": {"_count": 1}, "coming": {"_count": 1}, "drizzling": {"_count": 1}, "echoing": {"_count": 1}, "singing": {"_count": 1}, "speaking": {"_count": 1}, "moving": {"_count": 1}, "reading": {"_count": 1}}, "swollen": {"_count": 2, "to": {"_count": 1}, "Voldemorts": {"_count": 1}}, "Norbert": {"_count": 2, "packed": {"_count": 1}, "back": {"_count": 1}}, "Malfoy": {"_count": 2, "by": {"_count": 1}, "wanted": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 1}, "Bagman": {"_count": 1}, "so": {"_count": 1}}, "dropped": {"_count": 28, "out": {"_count": 3}, "from": {"_count": 2}, "him": {"_count": 2}, "": {"_count": 2}, "thats": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 3}, "but": {"_count": 1}, "into": {"_count": 3}, "in": {"_count": 4}, "the": {"_count": 2}, "one": {"_count": 1}, "The": {"_count": 1}, "to": {"_count": 1}}, "forgotten": {"_count": 28, "they": {"_count": 1}, "his": {"_count": 3}, "him": {"_count": 2}, "just": {"_count": 1}, "to": {"_count": 4}, "what": {"_count": 1}, "about": {"_count": 1}, "that": {"_count": 1}, "how": {"_count": 1}, "their": {"_count": 1}, "completely": {"_count": 1}, "he": {"_count": 1}, "all": {"_count": 3}, "the": {"_count": 3}, "until": {"_count": 1}, "Rons": {"_count": 1}, "lost": {"_count": 1}, "or": {"_count": 1}}, "detentions": {"_count": 1, "to": {"_count": 1}}, "sneaked": {"_count": 3, "up": {"_count": 1}, "off": {"_count": 1}, "a": {"_count": 1}}, "panicked": {"_count": 2, "and": {"_count": 1}, "on": {"_count": 1}}, "whiteblond": {"_count": 1, "hair": {"_count": 1}}, "astonishingly": {"_count": 1, "blue": {"_count": 1}}, "clenched": {"_count": 1, "suddenly": {"_count": 1}}, "met": {"_count": 24, "Some": {"_count": 1}, "on": {"_count": 1}, "you": {"_count": 1}, "before": {"_count": 1}, "Mr": {"_count": 1}, "Sir": {"_count": 1}, "their": {"_count": 1}, "Wormtail": {"_count": 1}, "this": {"_count": 2}, "a": {"_count": 1}, "nearly": {"_count": 1}, "Firenze": {"_count": 1}, "at": {"_count": 2}, "for": {"_count": 1}, "with": {"_count": 1}, "her": {"_count": 1}, "Hagrids": {"_count": 1}, "Professor": {"_count": 1}, "": {"_count": 2}, "scraggy": {"_count": 1}, "Dumbledore": {"_count": 1}}, "practical": {"_count": 1, "exams": {"_count": 1}}, "whiskers": {"_count": 1, "": {"_count": 1}}, "ter": {"_count": 15, "be": {"_count": 2}, "let": {"_count": 1}, "make": {"_count": 1}, "happen": {"_count": 1}, "lay": {"_count": 1}, "say": {"_count": 2}, "try": {"_count": 2}, "leg": {"_count": 1}, "rethink": {"_count": 1}, "use": {"_count": 1}, "bring": {"_count": 1}, "": {"_count": 1}}, "landed": {"_count": 14, "the": {"_count": 1}, "next": {"_count": 1}, "on": {"_count": 2}, "right": {"_count": 1}, "": {"_count": 3}, "hard": {"_count": 1}, "close": {"_count": 1}, "here": {"_count": 2}, "beside": {"_count": 1}, "seized": {"_count": 1}}, "used": {"_count": 19, "on": {"_count": 4}, "to": {"_count": 5}, "in": {"_count": 1}, "during": {"_count": 1}, "liberal": {"_count": 1}, "for": {"_count": 1}, "Voldemorts": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}, "magical": {"_count": 1}, "a": {"_count": 1}}, "clicked": {"_count": 1, "open": {"_count": 1}}, "Sprouts": {"_count": 1, "that": {"_count": 1}}, "tackled": {"_count": 1, "out": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "I": {"_count": 5, "reached": {"_count": 1}, "seen": {"_count": 1}, "not": {"_count": 3}}, "burst": {"_count": 12, "into": {"_count": 4}, "open": {"_count": 3}, "out": {"_count": 3}, "from": {"_count": 1}, "back": {"_count": 1}}, "tied": {"_count": 5, "for": {"_count": 1}, "back": {"_count": 1}, "around": {"_count": 1}, "cloths": {"_count": 1}, "up": {"_count": 1}}, "hoped": {"_count": 16, "that": {"_count": 6}, "": {"_count": 3}, "never": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "beyond": {"_count": 1}, "empty": {"_count": 1}, "Ron": {"_count": 1}, "for": {"_count": 1}}, "escaped": {"_count": 14, "with": {"_count": 1}, "and": {"_count": 1}, "him": {"_count": 2}, "from": {"_count": 3}, "": {"_count": 4}, "before": {"_count": 1}, "or": {"_count": 1}, "Azkaban": {"_count": 1}}, "failed": {"_count": 13, "to": {"_count": 6}, "her": {"_count": 1}, "him": {"_count": 2}, "Hermione": {"_count": 1}, "in": {"_count": 1}, "The": {"_count": 1}, "": {"_count": 1}}, "killed": {"_count": 13, "his": {"_count": 1}, "someone": {"_count": 1}, "Harrys": {"_count": 2}, "the": {"_count": 3}, "a": {"_count": 1}, "though": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "Fred": {"_count": 1}}, "rolled": {"_count": 2, "in": {"_count": 1}, "onto": {"_count": 1}}, "enjoyed": {"_count": 2, "muttering": {"_count": 1}, "over": {"_count": 1}}, "slipped": {"_count": 8, "through": {"_count": 2}, "between": {"_count": 1}, "down": {"_count": 2}, "up": {"_count": 1}, "off": {"_count": 1}, "so": {"_count": 1}}, "appeared": {"_count": 61, "among": {"_count": 1}, "holding": {"_count": 1}, "behind": {"_count": 1}, "along": {"_count": 1}, "in": {"_count": 18}, "piping": {"_count": 1}, "inside": {"_count": 1}, "out": {"_count": 8}, "on": {"_count": 6}, "upon": {"_count": 2}, "next": {"_count": 1}, "": {"_count": 4}, "followed": {"_count": 1}, "ten": {"_count": 1}, "Harry": {"_count": 1}, "which": {"_count": 1}, "from": {"_count": 1}, "at": {"_count": 2}, "amongst": {"_count": 1}, "between": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 1}, "high": {"_count": 1}, "and": {"_count": 1}, "just": {"_count": 2}, "where": {"_count": 1}}, "large": {"_count": 2, "bat": {"_count": 1}, "deep": {"_count": 1}}, "darted": {"_count": 3, "to": {"_count": 1}, "from": {"_count": 1}, "ahead": {"_count": 1}}, "delivered": {"_count": 3, "": {"_count": 1}, "Rons": {"_count": 1}, "itself": {"_count": 1}}, "was": {"_count": 1, "as": {"_count": 1}}, "covered": {"_count": 3, "nearly": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}}, "with": {"_count": 6, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "luck": {"_count": 1}, "regard": {"_count": 1}, "Sirius": {"_count": 1}}, "money": {"_count": 1, "you": {"_count": 1}}, "closed": {"_count": 17, "Mr": {"_count": 1}, "behind": {"_count": 7}, "the": {"_count": 2}, "on": {"_count": 1}, "his": {"_count": 1}, "tight": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}, "Hermione": {"_count": 1}}, "emerged": {"_count": 11, "into": {"_count": 2}, "from": {"_count": 9}}, "spotted": {"_count": 8, "their": {"_count": 1}, "Ron": {"_count": 2}, "what": {"_count": 1}, "": {"_count": 1}, "Kingsley": {"_count": 1}, "the": {"_count": 2}}, "stepped": {"_count": 9, "on": {"_count": 1}, "up": {"_count": 1}, "easily": {"_count": 1}, "off": {"_count": 1}, "directly": {"_count": 1}, "out": {"_count": 1}, "over": {"_count": 1}, "back": {"_count": 1}, "forward": {"_count": 1}}, "spoken": {"_count": 14, "in": {"_count": 2}, "and": {"_count": 1}, "turned": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "them": {"_count": 1}, "aloud": {"_count": 1}, "Snapes": {"_count": 1}, "for": {"_count": 1}, "without": {"_count": 1}, "about": {"_count": 1}, "She": {"_count": 1}}, "thrown": {"_count": 21, "himself": {"_count": 4}, "out": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 3}, "a": {"_count": 1}, "both": {"_count": 1}, "herself": {"_count": 1}, "him": {"_count": 2}, "her": {"_count": 1}, "away": {"_count": 1}, "to": {"_count": 1}, "some": {"_count": 1}, "something": {"_count": 1}, "Dumbledore": {"_count": 1}}, "reckoned": {"_count": 1, "of": {"_count": 1}}, "added": {"_count": 3, "": {"_count": 2}, "his": {"_count": 1}}, "clambered": {"_count": 2, "back": {"_count": 1}, "out": {"_count": 1}}, "nothing": {"_count": 14, "to": {"_count": 13}, "but": {"_count": 1}}, "snapped": {"_count": 3, "almost": {"_count": 1}, "": {"_count": 1}, "cleanly": {"_count": 1}}, "restarted": {"_count": 1, "": {"_count": 1}}, "pictured": {"_count": 1, "": {"_count": 1}}, "feared": {"_count": 2, "that": {"_count": 1}, "he": {"_count": 1}}, "ended": {"_count": 6, "up": {"_count": 3}, "and": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}}, "helped": {"_count": 6, "Gryffindor": {"_count": 2}, "him": {"_count": 2}, "Sirius": {"_count": 1}, "to": {"_count": 1}}, "bewitched": {"_count": 7, "the": {"_count": 2}, "his": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}}, "exploded": {"_count": 2, "a": {"_count": 2}}, "double": {"_count": 1, "Herbology": {"_count": 1}}, "that": {"_count": 14, "first": {"_count": 1}, "been": {"_count": 2}, "night": {"_count": 1}, "strange": {"_count": 1}, "their": {"_count": 1}, "thing": {"_count": 1}, "Howler": {"_count": 1}, "detention": {"_count": 1}, "odd": {"_count": 1}, "moment": {"_count": 1}, "cloak": {"_count": 1}, "grayish": {"_count": 1}, "led": {"_count": 1}}, "swallowed": {"_count": 6, "the": {"_count": 1}, "her": {"_count": 2}, "a": {"_count": 2}, "all": {"_count": 1}}, "pale": {"_count": 1, "green": {"_count": 1}}, "patched": {"_count": 1, "up": {"_count": 1}}, "produced": {"_count": 5, "in": {"_count": 1}, "such": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}}, "absolutely": {"_count": 1, "no": {"_count": 1}}, "struck": {"_count": 9, "": {"_count": 2}, "gold": {"_count": 1}, "before": {"_count": 1}, "Fawkes": {"_count": 1}, "Uncle": {"_count": 1}, "the": {"_count": 1}, "himself": {"_count": 1}, "at": {"_count": 1}}, "suffered": {"_count": 8, "their": {"_count": 1}, "at": {"_count": 1}, "What": {"_count": 1}, "": {"_count": 1}, "periods": {"_count": 1}, "a": {"_count": 2}, "some": {"_count": 1}}, "cemented": {"_count": 1, "his": {"_count": 1}}, "reason": {"_count": 1, "to": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "dripped": {"_count": 1, "from": {"_count": 1}}, "rescued": {"_count": 1, "the": {"_count": 1}}, "booked": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "glided": {"_count": 2, "over": {"_count": 2}}, "pushed": {"_count": 4, "to": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 2}}, "swept": {"_count": 3, "past": {"_count": 1}, "the": {"_count": 2}}, "prevented": {"_count": 1, "": {"_count": 1}}, "built": {"_count": 3, "a": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 1}}, "seriously": {"_count": 1, "considered": {"_count": 1}}, "thought": {"_count": 32, "desperately": {"_count": 1}, "he": {"_count": 4}, "then": {"_count": 1}, "that": {"_count": 9}, "this": {"_count": 2}, "all": {"_count": 1}, "was": {"_count": 2}, "to": {"_count": 3}, "about": {"_count": 1}, "Sirius": {"_count": 1}, "they": {"_count": 1}, "it": {"_count": 2}, "his": {"_count": 1}, "could": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}}, "cured": {"_count": 1, "of": {"_count": 1}}, "dealt": {"_count": 1, "with": {"_count": 1}}, "overridden": {"_count": 1, "Rons": {"_count": 1}}, "effects": {"_count": 1, "almost": {"_count": 1}}, "imagined": {"_count": 9, "the": {"_count": 2}, "them": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 4}, "a": {"_count": 1}}, "joined": {"_count": 15, "them": {"_count": 3}, "the": {"_count": 6}, "in": {"_count": 3}, "him": {"_count": 1}, "forces": {"_count": 1}, "Master": {"_count": 1}}, "stayed": {"_count": 2, "still": {"_count": 1}, "in": {"_count": 1}}, "directed": {"_count": 3, "it": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}}, "shut": {"_count": 3, "his": {"_count": 1}, "Crookshanks": {"_count": 1}, "behind": {"_count": 1}}, "removed": {"_count": 11, "them": {"_count": 2}, "his": {"_count": 4}, "it": {"_count": 2}, "their": {"_count": 1}, "from": {"_count": 1}, "all": {"_count": 1}}, "wanted": {"_count": 17, "deboning": {"_count": 1}, "to": {"_count": 9}, "him": {"_count": 3}, "before": {"_count": 1}, "so": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "hissed": {"_count": 1, "out": {"_count": 1}}, "lit": {"_count": 6, "a": {"_count": 2}, "the": {"_count": 1}, "went": {"_count": 1}, "up": {"_count": 1}, "their": {"_count": 1}}, "spread": {"_count": 6, "through": {"_count": 1}, "as": {"_count": 1}, "her": {"_count": 1}, "across": {"_count": 1}, "all": {"_count": 1}, "around": {"_count": 1}}, "expanded": {"_count": 1, "to": {"_count": 1}}, "subsided": {"_count": 5, "Snape": {"_count": 1}, "Professor": {"_count": 1}, "somewhat": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}}, "dragged": {"_count": 4, "him": {"_count": 3}, "it": {"_count": 1}}, "Slytherin": {"_count": 1, "blood": {"_count": 1}}, "dissolved": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "blackandwhite": {"_count": 1, "striped": {"_count": 1}}, "visited": {"_count": 6, "so": {"_count": 1}, "this": {"_count": 1}, "inside": {"_count": 1}, "many": {"_count": 1}, "Hepzibah": {"_count": 1}, "before": {"_count": 1}}, "put": {"_count": 15, "him": {"_count": 1}, "beetles": {"_count": 1}, "on": {"_count": 2}, "down": {"_count": 2}, "another": {"_count": 1}, "up": {"_count": 2}, "the": {"_count": 1}, "all": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "three": {"_count": 1}, "Harry": {"_count": 1}}, "hitherto": {"_count": 1, "been": {"_count": 1}}, "chosen": {"_count": 11, "to": {"_count": 6}, "seats": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}}, "bustled": {"_count": 3, "off": {"_count": 2}, "over": {"_count": 1}}, "remained": {"_count": 8, "alone": {"_count": 1}, "defiantly": {"_count": 1}, "entirely": {"_count": 1}, "speechless": {"_count": 1}, "unlocked": {"_count": 1}, "behind": {"_count": 2}, "to": {"_count": 1}}, "perched": {"_count": 3, "the": {"_count": 1}, "herself": {"_count": 1}, "on": {"_count": 1}}, "approached": {"_count": 3, "cautiously": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}}, "when": {"_count": 4, "he": {"_count": 3}, "the": {"_count": 1}}, "halfforgotten": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 2, "before": {"_count": 1}, "three": {"_count": 1}}, "them": {"_count": 10, "all": {"_count": 2}, "in": {"_count": 1}, "painfully": {"_count": 1}, "writing": {"_count": 1}, "drowned": {"_count": 1}, "dropped": {"_count": 1}, "poisoned": {"_count": 1}, "cooked": {"_count": 1}, "both": {"_count": 1}}, "disarmed": {"_count": 1, "Lockhart": {"_count": 1}}, "smashed": {"_count": 5, "all": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}, "while": {"_count": 1}}, "known": {"_count": 36, "it": {"_count": 3}, "he": {"_count": 2}, "the": {"_count": 1}, "this": {"_count": 2}, "Percy": {"_count": 1}, "all": {"_count": 3}, "at": {"_count": 1}, "Hagrid": {"_count": 1}, "Ginny": {"_count": 1}, "that": {"_count": 3}, "as": {"_count": 1}, "there": {"_count": 1}, "him": {"_count": 3}, "anything": {"_count": 2}, "about": {"_count": 4}, "Bathilda": {"_count": 1}, "since": {"_count": 1}, "Alastor": {"_count": 1}, "where": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 1}}, "jet": {"_count": 1, "black": {"_count": 1}}, "widened": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "retired": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "felt": {"_count": 20, "": {"_count": 2}, "when": {"_count": 2}, "sure": {"_count": 1}, "a": {"_count": 1}, "before": {"_count": 1}, "after": {"_count": 2}, "that": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}, "shoot": {"_count": 1}, "as": {"_count": 1}, "isolated": {"_count": 1}, "bolstered": {"_count": 1}, "at": {"_count": 1}, "about": {"_count": 1}, "fully": {"_count": 1}, "the": {"_count": 1}}, "inherited": {"_count": 8, "just": {"_count": 1}, "from": {"_count": 3}, "standing": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "Lilys": {"_count": 1}}, "wandered": {"_count": 2, "the": {"_count": 1}, "upward": {"_count": 1}}, "knocked": {"_count": 7, "Hagrid": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 1}, "her": {"_count": 1}, "on": {"_count": 2}}, "rumpled": {"_count": 1, "gray": {"_count": 1}}, "nowhere": {"_count": 1, "else": {"_count": 1}}, "plenty": {"_count": 6, "to": {"_count": 1}, "of": {"_count": 5}}, "hold": {"_count": 2, "of": {"_count": 2}}, "burned": {"_count": 5, "itself": {"_count": 1}, "a": {"_count": 1}, "low": {"_count": 1}, "again": {"_count": 1}, "him": {"_count": 1}}, "Professor": {"_count": 2, "McGonagalls": {"_count": 1}, "McGonagall": {"_count": 1}}, "visitors": {"_count": 1, "and": {"_count": 1}}, "scribbled": {"_count": 4, "at": {"_count": 1}, "I": {"_count": 1}, "all": {"_count": 1}, "on": {"_count": 1}}, "Gryffindor": {"_count": 1, "Tower": {"_count": 1}}, "shed": {"_count": 2, "it": {"_count": 1}, "even": {"_count": 1}}, "Fawkes": {"_count": 1, "and": {"_count": 1}}, "raised": {"_count": 8, "itself": {"_count": 1}, "his": {"_count": 4}, "herself": {"_count": 1}, "her": {"_count": 2}}, "distracted": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "pierced": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "soared": {"_count": 3, "back": {"_count": 1}, "between": {"_count": 1}, "from": {"_count": 1}}, "meant": {"_count": 7, "to": {"_count": 2}, "well": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}, "safety": {"_count": 1}}, "swooped": {"_count": 2, "through": {"_count": 1}, "past": {"_count": 1}}, "followed": {"_count": 15, "the": {"_count": 3}, "had": {"_count": 1}, "Harry": {"_count": 4}, "him": {"_count": 2}, "Professor": {"_count": 1}, "to": {"_count": 1}, "three": {"_count": 1}, "them": {"_count": 1}, "every": {"_count": 1}}, "guessed": {"_count": 1, "that": {"_count": 1}}, "completely": {"_count": 10, "forgotten": {"_count": 7}, "ignored": {"_count": 2}, "flown": {"_count": 1}}, "fluttered": {"_count": 4, "down": {"_count": 2}, "to": {"_count": 1}, "through": {"_count": 1}}, "threatened": {"_count": 3, "to": {"_count": 2}, "Harry": {"_count": 1}}, "therefore": {"_count": 2, "seized": {"_count": 1}, "gone": {"_count": 1}}, "crept": {"_count": 4, "downstairs": {"_count": 1}, "out": {"_count": 2}, "halfway": {"_count": 1}}, "answered": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "roared": {"_count": 1, "spraying": {"_count": 1}}, "warned": {"_count": 7, "Hermione": {"_count": 1}, "Hagrid": {"_count": 1}, "that": {"_count": 1}, "us": {"_count": 2}, "them": {"_count": 1}, "him": {"_count": 1}}, "Muggle": {"_count": 1, "parents": {"_count": 1}}, "pretended": {"_count": 4, "for": {"_count": 1}, "to": {"_count": 1}, "there": {"_count": 1}, "when": {"_count": 1}}, "rebounded": {"_count": 2, "upon": {"_count": 2}}, "fled": {"_count": 4, "": {"_count": 1}, "the": {"_count": 1}, "into": {"_count": 2}}, "crashed": {"_count": 3, "into": {"_count": 1}, "in": {"_count": 1}, "down": {"_count": 1}}, "jaws": {"_count": 1, "": {"_count": 1}}, "reappeared": {"_count": 10, "": {"_count": 1}, "this": {"_count": 1}, "lying": {"_count": 1}, "in": {"_count": 3}, "behind": {"_count": 1}, "sealing": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}}, "whacked": {"_count": 1, "Harry": {"_count": 1}}, "accidentally": {"_count": 3, "trodden": {"_count": 1}, "transplanted": {"_count": 1}, "put": {"_count": 1}}, "chased": {"_count": 3, "Harry": {"_count": 1}, "Scabbers": {"_count": 1}, "him": {"_count": 1}}, "refused": {"_count": 5, "to": {"_count": 5}}, "stated": {"_count": 1, "quite": {"_count": 1}}, "quite": {"_count": 7, "a": {"_count": 1}, "got": {"_count": 1}, "evaporated": {"_count": 1}, "forgotten": {"_count": 2}, "enough": {"_count": 1}, "emptied": {"_count": 1}}, "Colonel": {"_count": 1, "Fubster": {"_count": 1}}, "heaved": {"_count": 2, "his": {"_count": 1}, "himself": {"_count": 1}}, "sensed": {"_count": 4, "rather": {"_count": 1}, "Rons": {"_count": 1}, "the": {"_count": 1}, "someone": {"_count": 1}}, "unfurled": {"_count": 1, "a": {"_count": 1}}, "paid": {"_count": 5, "for": {"_count": 2}, "two": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}}, "walked": {"_count": 12, "right": {"_count": 2}, "into": {"_count": 2}, "around": {"_count": 1}, "so": {"_count": 1}, "straight": {"_count": 1}, "through": {"_count": 1}, "to": {"_count": 1}, "earlier": {"_count": 1}, "away": {"_count": 1}, "up": {"_count": 1}}, "us": {"_count": 1, "all": {"_count": 1}}, "Fudge": {"_count": 1, "been": {"_count": 1}}, "refilled": {"_count": 1, "his": {"_count": 1}}, "five": {"_count": 4, "years": {"_count": 1}, "weeks": {"_count": 1}, "teachers": {"_count": 1}, "legs": {"_count": 1}}, "seized": {"_count": 7, "a": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}, "handfuls": {"_count": 1}, "Dudleys": {"_count": 1}, "Ginny": {"_count": 1}}, "banged": {"_count": 1, "his": {"_count": 1}}, "murdered": {"_count": 6, "thirteen": {"_count": 1}, "her": {"_count": 1}, "more": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "apparently": {"_count": 3, "taken": {"_count": 1}, "found": {"_count": 1}, "suppressed": {"_count": 1}}, "two": {"_count": 10, "Defense": {"_count": 1}, "of": {"_count": 1}, "try": {"_count": 1}, "choices": {"_count": 1}, "months": {"_count": 1}, "last": {"_count": 1}, "changes": {"_count": 1}, "fresh": {"_count": 1}, "he": {"_count": 1}, "Hallows": {"_count": 1}}, "lasted": {"_count": 3, "only": {"_count": 1}, "more": {"_count": 1}, "a": {"_count": 1}}, "its": {"_count": 7, "uses": {"_count": 1}, "face": {"_count": 2}, "last": {"_count": 1}, "mind": {"_count": 1}, "merits": {"_count": 1}, "compensations": {"_count": 1}}, "decayed": {"_count": 1, "in": {"_count": 1}}, "several": {"_count": 3, "feet": {"_count": 1}, "reasons": {"_count": 1}, "long": {"_count": 1}}, "melted": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}}, "faced": {"_count": 3, "each": {"_count": 1}, "him": {"_count": 1}, "in": {"_count": 1}}, "definitely": {"_count": 5, "come": {"_count": 1}, "qualified": {"_count": 1}, "been": {"_count": 1}, "improved": {"_count": 1}, "chosen": {"_count": 1}}, "seated": {"_count": 1, "herself": {"_count": 1}}, "instructed": {"_count": 2, "then": {"_count": 1}, "and": {"_count": 1}}, "our": {"_count": 4, "first": {"_count": 1}, "name": {"_count": 1}, "conversation": {"_count": 1}, "disagreements": {"_count": 1}}, "bound": {"_count": 2, "shut": {"_count": 1}, "Karkaroff": {"_count": 1}}, "belted": {"_count": 1, "their": {"_count": 1}}, "misgivings": {"_count": 1, "": {"_count": 1}}, "bargained": {"_count": 1, "for": {"_count": 1}}, "far": {"_count": 1, "worse": {"_count": 1}}, "split": {"_count": 4, "on": {"_count": 1}, "open": {"_count": 2}, "his": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 4}, "first": {"_count": 1}}, "jumped": {"_count": 6, "backward": {"_count": 1}, "to": {"_count": 2}, "so": {"_count": 1}, "between": {"_count": 1}, "out": {"_count": 1}}, "lodged": {"_count": 1, "itself": {"_count": 1}}, "stood": {"_count": 15, "was": {"_count": 1}, "at": {"_count": 1}, "there": {"_count": 2}, "up": {"_count": 3}, "": {"_count": 2}, "and": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 1}, "watching": {"_count": 1}, "earlier": {"_count": 1}}, "frozen": {"_count": 6, "": {"_count": 2}, "in": {"_count": 1}, "his": {"_count": 1}, "Harrys": {"_count": 1}, "where": {"_count": 1}}, "deliberately": {"_count": 2, "stopped": {"_count": 1}, "left": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "dressed": {"_count": 2, "it": {"_count": 1}, "and": {"_count": 1}}, "traveled": {"_count": 7, "through": {"_count": 1}, "by": {"_count": 2}, "very": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "Transfiguration": {"_count": 1, "next": {"_count": 1}}, "resolved": {"_count": 1, "to": {"_count": 1}}, "offered": {"_count": 3, "to": {"_count": 2}, "him": {"_count": 1}}, "what": {"_count": 1, "were": {"_count": 1}}, "worn": {"_count": 8, "off": {"_count": 2}, "when": {"_count": 3}, "for": {"_count": 1}, "back": {"_count": 1}, "at": {"_count": 1}}, "Headmaster": {"_count": 1, "just": {"_count": 1}}, "called": {"_count": 7, "Hermione": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}, "Neville": {"_count": 1}, "for": {"_count": 1}, "out": {"_count": 1}}, "pointed": {"_count": 4, "out": {"_count": 2}, "with": {"_count": 1}, "": {"_count": 1}}, "lockjaw": {"_count": 2, "and": {"_count": 1}, "it": {"_count": 1}}, "read": {"_count": 14, "Harrys": {"_count": 4}, "all": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "these": {"_count": 1}, "this": {"_count": 1}, "most": {"_count": 1}, "had": {"_count": 1}}, "mortally": {"_count": 1, "offended": {"_count": 1}}, "nicked": {"_count": 1, "it": {"_count": 1}}, "suspected": {"_count": 7, "for": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}}, "shown": {"_count": 16, "his": {"_count": 1}, "Harry": {"_count": 3}, "him": {"_count": 2}, "them": {"_count": 3}, "at": {"_count": 1}, "her": {"_count": 1}, "any": {"_count": 1}, "no": {"_count": 2}, "Hermione": {"_count": 1}, "a": {"_count": 1}}, "me": {"_count": 2, "orders": {"_count": 1}, "use": {"_count": 1}}, "cracked": {"_count": 3, "the": {"_count": 1}, "down": {"_count": 2}}, "nobody": {"_count": 1, "ever": {"_count": 1}}, "betrayed": {"_count": 5, "them": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "Sirius": {"_count": 1}, "and": {"_count": 1}}, "pasted": {"_count": 1, "the": {"_count": 1}}, "awoken": {"_count": 11, "to": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 3}, "with": {"_count": 2}, "in": {"_count": 1}, "Ron": {"_count": 1}, "that": {"_count": 1}}, "rehearsed": {"_count": 1, "this": {"_count": 1}}, "nevertheless": {"_count": 2, "had": {"_count": 1}, "caused": {"_count": 1}}, "by": {"_count": 3, "no": {"_count": 1}, "and": {"_count": 1}, "now": {"_count": 1}}, "this": {"_count": 6, "much": {"_count": 1}, "been": {"_count": 1}, "real": {"_count": 1}, "time": {"_count": 1}, "last": {"_count": 1}, "place": {"_count": 1}}, "acted": {"_count": 3, "for": {"_count": 1}, "independently": {"_count": 1}, "as": {"_count": 1}}, "provided": {"_count": 3, "a": {"_count": 2}, "for": {"_count": 1}}, "waited": {"_count": 5, "only": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 3}}, "first": {"_count": 13, "ridden": {"_count": 1}, "heard": {"_count": 1}, "touched": {"_count": 1}, "clapped": {"_count": 1}, "seen": {"_count": 1}, "arrived": {"_count": 1}, "entered": {"_count": 1}, "taken": {"_count": 1}, "told": {"_count": 1}, "met": {"_count": 2}, "found": {"_count": 1}, "tried": {"_count": 1}}, "halted": {"_count": 1, "and": {"_count": 1}}, "rekindled": {"_count": 1, "with": {"_count": 1}}, "belonged": {"_count": 3, "to": {"_count": 3}}, "him": {"_count": 6, "in": {"_count": 1}, "this": {"_count": 1}, "at": {"_count": 1}, "from": {"_count": 1}, "cornered": {"_count": 1}, "tied": {"_count": 1}}, "em": {"_count": 2, "": {"_count": 1}, "before": {"_count": 1}}, "again": {"_count": 3, "escaped": {"_count": 1}, "stored": {"_count": 1}, "flown": {"_count": 1}}, "agreed": {"_count": 4, "to": {"_count": 3}, "that": {"_count": 1}}, "Black": {"_count": 2, "having": {"_count": 1}, "cornered": {"_count": 1}}, "proved": {"_count": 5, "twelve": {"_count": 1}, "you": {"_count": 1}, "impossible": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}}, "banned": {"_count": 3, "him": {"_count": 1}, "it": {"_count": 1}, "anything": {"_count": 1}}, "driven": {"_count": 3, "it": {"_count": 1}, "everything": {"_count": 2}}, "tipped": {"_count": 3, "off": {"_count": 2}, "him": {"_count": 1}}, "acquired": {"_count": 1, "a": {"_count": 1}}, "picked": {"_count": 8, "up": {"_count": 8}}, "smudged": {"_count": 1, "the": {"_count": 1}}, "slapped": {"_count": 2, "Malfoy": {"_count": 1}, "her": {"_count": 1}}, "because": {"_count": 2, "I": {"_count": 1}, "when": {"_count": 1}}, "planned": {"_count": 4, "said": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}}, "as": {"_count": 3, "much": {"_count": 2}, "I": {"_count": 1}}, "shadows": {"_count": 1, "like": {"_count": 1}}, "overslept": {"_count": 1, "and": {"_count": 1}}, "descended": {"_count": 2, "on": {"_count": 1}, "two": {"_count": 1}}, "swerved": {"_count": 2, "in": {"_count": 1}, "circled": {"_count": 1}}, "achieved": {"_count": 6, "what": {"_count": 1}, "the": {"_count": 4}, "Outstanding": {"_count": 1}}, "drawn": {"_count": 14, "up": {"_count": 2}, "herself": {"_count": 2}, "out": {"_count": 1}, "himself": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}, "his": {"_count": 2}, "level": {"_count": 1}, "the": {"_count": 1}, "blood": {"_count": 1}, "right": {"_count": 1}}, "included": {"_count": 1, "turning": {"_count": 1}}, "compiled": {"_count": 1, "the": {"_count": 1}}, "regained": {"_count": 3, "a": {"_count": 1}, "consciousness": {"_count": 1}, "since": {"_count": 1}}, "splattered": {"_count": 1, "it": {"_count": 1}}, "hooked": {"_count": 2, "around": {"_count": 1}, "him": {"_count": 1}}, "cut": {"_count": 5, "her": {"_count": 1}, "into": {"_count": 1}, "himself": {"_count": 1}, "tightly": {"_count": 1}, "him": {"_count": 1}}, "slid": {"_count": 11, "into": {"_count": 1}, "off": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 2}, "through": {"_count": 1}, "over": {"_count": 1}, "so": {"_count": 1}, "sideways": {"_count": 1}, "from": {"_count": 1}}, "long": {"_count": 16, "since": {"_count": 10}, "been": {"_count": 1}, "grizzled": {"_count": 1}, "dark": {"_count": 1}, "nursed": {"_count": 1}, "yellowish": {"_count": 1}, "loved": {"_count": 1}}, "bellowed": {"_count": 1, "it": {"_count": 1}}, "Crookshanks": {"_count": 2, "lying": {"_count": 1}, "again": {"_count": 1}}, "admitted": {"_count": 1, "me": {"_count": 1}}, "led": {"_count": 7, "three": {"_count": 1}, "them": {"_count": 2}, "his": {"_count": 1}, "for": {"_count": 1}, "not": {"_count": 1}, "to": {"_count": 1}}, "hardened": {"_count": 1, "and": {"_count": 1}}, "crossed": {"_count": 2, "the": {"_count": 2}}, "worked": {"_count": 10, "once": {"_count": 1}, "George": {"_count": 1}, "for": {"_count": 2}, "": {"_count": 1}, "it": {"_count": 1}, "at": {"_count": 1}, "before": {"_count": 1}, "after": {"_count": 1}, "really": {"_count": 1}}, "brandished": {"_count": 1, "a": {"_count": 1}}, "Pettigrew": {"_count": 1, "covered": {"_count": 1}}, "evidently": {"_count": 8, "pressed": {"_count": 1}, "been": {"_count": 2}, "tried": {"_count": 1}, "changed": {"_count": 1}, "failed": {"_count": 1}, "just": {"_count": 1}, "forgotten": {"_count": 1}}, "transformed": {"_count": 4, "": {"_count": 3}, "itself": {"_count": 1}}, "dived": {"_count": 3, "for": {"_count": 2}, "wildly": {"_count": 1}}, "hurried": {"_count": 3, "to": {"_count": 1}, "forward": {"_count": 1}, "straight": {"_count": 1}}, "dug": {"_count": 2, "in": {"_count": 1}, "into": {"_count": 1}}, "bounded": {"_count": 2, "out": {"_count": 1}, "up": {"_count": 1}}, "lowered": {"_count": 5, "its": {"_count": 1}, "his": {"_count": 4}}, "faded": {"_count": 5, "into": {"_count": 1}, "completely": {"_count": 1}, "off": {"_count": 1}, "once": {"_count": 1}, "from": {"_count": 1}}, "galloped": {"_count": 1, "toward": {"_count": 1}}, "sought": {"_count": 3, "sanctuary": {"_count": 1}, "to": {"_count": 1}, "refuge": {"_count": 1}}, "believed": {"_count": 6, "he": {"_count": 1}, "their": {"_count": 1}, "that": {"_count": 2}, "Rita": {"_count": 1}, "Harry": {"_count": 1}}, "successfully": {"_count": 2, "gone": {"_count": 1}, "disarmed": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "admiring": {"_count": 1}}, "scraped": {"_count": 1, "a": {"_count": 1}}, "nibbled": {"_count": 1, "one": {"_count": 1}}, "lived": {"_count": 11, "there": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "here": {"_count": 2}, "had": {"_count": 1}, "inside": {"_count": 1}, "really": {"_count": 1}, "or": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}}, "seethed": {"_count": 1, "with": {"_count": 1}}, "invented": {"_count": 2, "him": {"_count": 1}, "himself": {"_count": 1}}, "examined": {"_count": 1, "the": {"_count": 1}}, "concluded": {"_count": 4, "that": {"_count": 3}, "barely": {"_count": 1}}, "deeply": {"_count": 1, "mistrusted": {"_count": 1}}, "distinctly": {"_count": 1, "heard": {"_count": 1}}, "anywhere": {"_count": 1, "else": {"_count": 1}}, "seemed": {"_count": 15, "so": {"_count": 1}, "to": {"_count": 5}, "a": {"_count": 3}, "sincerely": {"_count": 1}, "the": {"_count": 1}, "down": {"_count": 1}, "lengthy": {"_count": 1}, "less": {"_count": 1}, "impossible": {"_count": 1}}, "swung": {"_count": 3, "around": {"_count": 1}, "open": {"_count": 1}, "shut": {"_count": 1}}, "watched": {"_count": 12, "him": {"_count": 4}, "her": {"_count": 2}, "the": {"_count": 2}, "from": {"_count": 1}, "his": {"_count": 1}, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}}, "hurt": {"_count": 5, "him": {"_count": 2}, "": {"_count": 1}, "so": {"_count": 1}, "much": {"_count": 1}}, "explained": {"_count": 4, "away": {"_count": 1}, "about": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 1}}, "parents": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "then": {"_count": 5, "turned": {"_count": 1}, "treated": {"_count": 1}, "about": {"_count": 1}, "Snape": {"_count": 1}, "patted": {"_count": 1}}, "disposed": {"_count": 1, "of": {"_count": 1}}, "survived": {"_count": 7, "with": {"_count": 1}, "": {"_count": 2}, "Mrs": {"_count": 1}, "the": {"_count": 1}, "Voldemorts": {"_count": 1}, "so": {"_count": 1}}, "lifted": {"_count": 4, "Voldemorts": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}}, "disbanded": {"_count": 1, "and": {"_count": 1}}, "experience": {"_count": 1, "with": {"_count": 1}}, "if": {"_count": 2, "Wormtail": {"_count": 1}, "possible": {"_count": 1}}, "conveniently": {"_count": 1, "forgotten": {"_count": 1}}, "liked": {"_count": 2, "them": {"_count": 1}, "Cho": {"_count": 1}}, "reminded": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "risen": {"_count": 20, "when": {"_count": 1}, "to": {"_count": 3}, "angrily": {"_count": 1}, "into": {"_count": 1}, "out": {"_count": 3}, "again": {"_count": 1}, "in": {"_count": 2}, "fully": {"_count": 1}, "excitedly": {"_count": 1}, "from": {"_count": 1}, "oblivious": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 1}}, "insisted": {"_count": 3, "that": {"_count": 2}, "on": {"_count": 1}}, "obliged": {"_count": 1, "with": {"_count": 1}}, "needed": {"_count": 4, "a": {"_count": 2}, "it": {"_count": 1}, "its": {"_count": 1}}, "struggled": {"_count": 1, "against": {"_count": 1}}, "cake": {"_count": 1, "and": {"_count": 1}}, "rarely": {"_count": 5, "seen": {"_count": 1}, "heard": {"_count": 1}, "gone": {"_count": 1}, "taught": {"_count": 1}, "felt": {"_count": 1}}, "borrowed": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "backed": {"_count": 2, "into": {"_count": 1}, "away": {"_count": 1}}, "bright": {"_count": 1, "red": {"_count": 1}}, "settled": {"_count": 10, "in": {"_count": 1}, "themselves": {"_count": 1}, "down": {"_count": 2}, "on": {"_count": 1}, "him": {"_count": 2}, "himself": {"_count": 2}, "over": {"_count": 1}}, "your": {"_count": 9, "fireplace": {"_count": 1}, "reasons": {"_count": 1}, "bandages": {"_count": 2}, "head": {"_count": 1}, "go": {"_count": 1}, "mothers": {"_count": 1}, "Felix": {"_count": 1}, "son": {"_count": 1}}, "scared": {"_count": 2, "Dudley": {"_count": 1}, "her": {"_count": 1}}, "spilled": {"_count": 6, "out": {"_count": 2}, "onto": {"_count": 1}, "": {"_count": 1}, "something": {"_count": 1}, "his": {"_count": 1}}, "cried": {"_count": 2, "the": {"_count": 1}, "Oooh": {"_count": 1}}, "words": {"_count": 1, "with": {"_count": 1}}, "previously": {"_count": 1, "held": {"_count": 1}}, "moaned": {"_count": 1, "continually": {"_count": 1}}, "intended": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "emitted": {"_count": 1, "a": {"_count": 1}}, "each": {"_count": 1, "hoisted": {"_count": 1}}, "trodden": {"_count": 4, "on": {"_count": 3}, "that": {"_count": 1}}, "sprouted": {"_count": 4, "out": {"_count": 1}, "flippers": {"_count": 1}, "right": {"_count": 1}, "antlers": {"_count": 1}}, "assured": {"_count": 1, "her": {"_count": 1}}, "collected": {"_count": 4, "his": {"_count": 1}, "several": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "those": {"_count": 3, "horns": {"_count": 1}, "lessons": {"_count": 1}, "thought": {"_count": 1}}, "played": {"_count": 2, "Quidditch": {"_count": 2}}, "springs": {"_count": 1, "attached": {"_count": 1}}, "complied": {"_count": 1, "with": {"_count": 1}}, "abided": {"_count": 1, "strictly": {"_count": 1}}, "greeted": {"_count": 1, "like": {"_count": 1}}, "formed": {"_count": 3, "a": {"_count": 2}, "which": {"_count": 1}}, "yet": {"_count": 7, "seen": {"_count": 3}, "heard": {"_count": 1}, "discovered": {"_count": 1}, "again": {"_count": 1}, "dealt": {"_count": 1}}, "undoubtedly": {"_count": 2, "won": {"_count": 1}, "played": {"_count": 1}}, "indicated": {"_count": 4, "squinting": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "teetered": {"_count": 1, "for": {"_count": 1}}, "nine": {"_count": 2, "golden": {"_count": 1}, "hands": {"_count": 1}}, "commented": {"_count": 1, "said": {"_count": 1}}, "shuddered": {"_count": 1, "to": {"_count": 1}}, "braved": {"_count": 1, "the": {"_count": 1}}, "rounded": {"_count": 2, "the": {"_count": 2}}, "Disapparated": {"_count": 2, "": {"_count": 1}, "one": {"_count": 1}}, "overheard": {"_count": 9, "the": {"_count": 2}, "between": {"_count": 4}, "him": {"_count": 1}, "Malfoy": {"_count": 1}, "": {"_count": 1}}, "occupied": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "resigned": {"_count": 2, "last": {"_count": 1}, "his": {"_count": 1}}, "lined": {"_count": 1, "up": {"_count": 1}}, "filled": {"_count": 6, "the": {"_count": 3}, "him": {"_count": 2}, "with": {"_count": 1}}, "tacked": {"_count": 1, "up": {"_count": 1}}, "placed": {"_count": 11, "warming": {"_count": 1}, "upon": {"_count": 2}, "a": {"_count": 2}, "in": {"_count": 1}, "it": {"_count": 1}, "himself": {"_count": 1}, "within": {"_count": 1}, "the": {"_count": 1}, "around": {"_count": 1}}, "hoodwinked": {"_count": 1, "the": {"_count": 1}}, "blown": {"_count": 3, "itself": {"_count": 1}, "somewhere": {"_count": 1}, "it": {"_count": 1}}, "owned": {"_count": 1, "one": {"_count": 1}}, "drifted": {"_count": 5, "": {"_count": 1}, "over": {"_count": 2}, "in": {"_count": 1}, "off": {"_count": 1}}, "described": {"_count": 6, "it": {"_count": 1}, "to": {"_count": 1}, "them": {"_count": 1}, "in": {"_count": 1}, "A": {"_count": 1}, "Hufflepuffs": {"_count": 1}}, "involved": {"_count": 1, "the": {"_count": 1}}, "disliked": {"_count": 1, "all": {"_count": 1}}, "declared": {"_count": 1, "themselves": {"_count": 1}}, "advanced": {"_count": 1, "on": {"_count": 1}}, "begged": {"_count": 1, "him": {"_count": 1}}, "dismissed": {"_count": 2, "them": {"_count": 1}, "his": {"_count": 1}}, "demonstrated": {"_count": 2, "the": {"_count": 1}, "how": {"_count": 1}}, "glass": {"_count": 1, "in": {"_count": 1}}, "Quidditch": {"_count": 5, "to": {"_count": 1}, "practices": {"_count": 1}, "practice": {"_count": 3}}, "announced": {"_count": 2, "that": {"_count": 1}, "Fudges": {"_count": 1}}, "assigned": {"_count": 1, "": {"_count": 1}}, "hinted": {"_count": 1, "that": {"_count": 1}}, "proposed": {"_count": 2, "this": {"_count": 1}, "it": {"_count": 1}}, "Its": {"_count": 1, "all": {"_count": 1}}, "wrapped": {"_count": 4, "scarves": {"_count": 1}, "the": {"_count": 1}, "around": {"_count": 2}}, "submitted": {"_count": 1, "their": {"_count": 1}}, "straightened": {"_count": 2, "up": {"_count": 2}}, "balled": {"_count": 2, "themselves": {"_count": 1}, "his": {"_count": 1}}, "considered": {"_count": 1, "it": {"_count": 1}}, "flitted": {"_count": 2, "into": {"_count": 1}, "away": {"_count": 1}}, "unearthed": {"_count": 1, "a": {"_count": 1}}, "tricked": {"_count": 2, "Dumbledores": {"_count": 1}, "them": {"_count": 1}}, "flown": {"_count": 9, "off": {"_count": 1}, "out": {"_count": 2}, "apart": {"_count": 1}, "up": {"_count": 1}, "open": {"_count": 1}, "at": {"_count": 2}, "a": {"_count": 1}}, "stolen": {"_count": 7, "their": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}, "his": {"_count": 1}, "hairs": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}}, "developed": {"_count": 5, "a": {"_count": 1}, "an": {"_count": 3}, "the": {"_count": 1}}, "Ron": {"_count": 4, "back": {"_count": 2}, "and": {"_count": 1}, "cast": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}, "supplied": {"_count": 1, "the": {"_count": 1}}, "experienced": {"_count": 5, "before": {"_count": 1}, "terror": {"_count": 1}, "enough": {"_count": 1}, "all": {"_count": 1}, "a": {"_count": 1}}, "suggested": {"_count": 3, "and": {"_count": 1}, "whether": {"_count": 1}, "a": {"_count": 1}}, "published": {"_count": 1, "her": {"_count": 1}}, "reported": {"_count": 2, "him": {"_count": 1}, "and": {"_count": 1}}, "interviewed": {"_count": 1, "other": {"_count": 1}}, "shrieked": {"_count": 1, "the": {"_count": 1}}, "fixed": {"_count": 1, "the": {"_count": 1}}, "mercifully": {"_count": 2, "abandoned": {"_count": 1}, "been": {"_count": 1}}, "abandoned": {"_count": 8, "the": {"_count": 4}, "": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 2}}, "certainly": {"_count": 7, "attempted": {"_count": 1}, "never": {"_count": 2}, "wiped": {"_count": 1}, "not": {"_count": 2}, "performed": {"_count": 1}}, "laid": {"_count": 3, "eggs": {"_count": 1}, "out": {"_count": 1}, "upon": {"_count": 1}}, "less": {"_count": 2, "than": {"_count": 2}}, "of": {"_count": 1, "him": {"_count": 1}}, "lied": {"_count": 2, "about": {"_count": 1}, "to": {"_count": 1}}, "procured": {"_count": 2, "for": {"_count": 1}, "a": {"_count": 1}}, "seven": {"_count": 1, "keyholes": {"_count": 1}}, "sped": {"_count": 2, "into": {"_count": 1}, "up": {"_count": 1}}, "Harry": {"_count": 4, "really": {"_count": 1}, "managed": {"_count": 1}, "knew": {"_count": 1}, "been": {"_count": 1}}, "nodded": {"_count": 2, "once": {"_count": 1}, "curtly": {"_count": 1}}, "volunteered": {"_count": 2, "for": {"_count": 1}, "Kreacher": {"_count": 1}}, "sounded": {"_count": 4, "rude": {"_count": 1}, "so": {"_count": 1}, "like": {"_count": 1}, "Harry": {"_count": 1}}, "molted": {"_count": 1, "and": {"_count": 1}}, "regurgitated": {"_count": 1, "his": {"_count": 1}}, "holes": {"_count": 1, "in": {"_count": 1}}, "feathers": {"_count": 1, "they": {"_count": 1}}, "copied": {"_count": 2, "down": {"_count": 2}}, "severed": {"_count": 1, "it": {"_count": 1}}, "kept": {"_count": 2, "the": {"_count": 1}, "quiet": {"_count": 1}}, "access": {"_count": 4, "to": {"_count": 4}}, "missed": {"_count": 8, "a": {"_count": 2}, "several": {"_count": 1}, "the": {"_count": 2}, "irreplaceable": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "caused": {"_count": 14, "his": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 1}, "by": {"_count": 1}, "so": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 2}, "such": {"_count": 1}, "number": {"_count": 1}}, "upset": {"_count": 1, "Harry": {"_count": 1}}, "arranged": {"_count": 3, "a": {"_count": 1}, "this": {"_count": 1}, "to": {"_count": 1}}, "slung": {"_count": 1, "over": {"_count": 1}}, "someone": {"_count": 2, "he": {"_count": 1}, "outside": {"_count": 1}}, "zoomed": {"_count": 2, "him": {"_count": 1}, "down": {"_count": 1}}, "neglected": {"_count": 1, "during": {"_count": 1}}, "ascertained": {"_count": 1, "that": {"_count": 1}}, "big": {"_count": 2, "bones": {"_count": 2}}, "lessons": {"_count": 2, "in": {"_count": 1}, "Quidditch": {"_count": 1}}, "occasion": {"_count": 1, "before": {"_count": 1}}, "before": {"_count": 2, "he": {"_count": 1}, "in": {"_count": 1}}, "flared": {"_count": 5, "inside": {"_count": 2}, "among": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "extinguished": {"_count": 1, "all": {"_count": 1}}, "searched": {"_count": 5, "all": {"_count": 1}, "the": {"_count": 2}, "before": {"_count": 2}}, "encircled": {"_count": 1, "the": {"_count": 1}}, "gills": {"_count": 1, "": {"_count": 1}}, "soon": {"_count": 6, "swum": {"_count": 1}, "filled": {"_count": 2}, "mastered": {"_count": 1}, "left": {"_count": 1}, "read": {"_count": 1}}, "grasped": {"_count": 2, "it": {"_count": 1}, "this": {"_count": 1}}, "paintings": {"_count": 1, "of": {"_count": 1}}, "grayish": {"_count": 1, "skin": {"_count": 1}}, "understood": {"_count": 2, "him": {"_count": 1}, "or": {"_count": 1}}, "many": {"_count": 5, "cuts": {"_count": 1}, "gilded": {"_count": 1}, "more": {"_count": 1}, "magical": {"_count": 1}, "hiding": {"_count": 1}}, "fun": {"_count": 1, "selecting": {"_count": 1}}, "dedicated": {"_count": 1, "his": {"_count": 1}}, "bulged": {"_count": 1, "as": {"_count": 1}}, "overreacted": {"_count": 1, "to": {"_count": 1}}, "breakfast": {"_count": 2, "": {"_count": 1}, "why": {"_count": 1}}, "allowed": {"_count": 2, "herself": {"_count": 1}, "a": {"_count": 1}}, "burnt": {"_count": 1, "out": {"_count": 1}}, "insulted": {"_count": 2, "them": {"_count": 1}, "James": {"_count": 1}}, "gathered": {"_count": 1, "around": {"_count": 1}}, "released": {"_count": 5, "it": {"_count": 1}, "him": {"_count": 2}, "her": {"_count": 1}, "Wormtail": {"_count": 1}}, "other": {"_count": 3, "stuff": {"_count": 1}, "other": {"_count": 1}, "ideas": {"_count": 1}}, "Dumbledore": {"_count": 5, "known": {"_count": 1}, "truly": {"_count": 1}, "told": {"_count": 1}, "introduced": {"_count": 1}, "taken": {"_count": 1}}, "departed": {"_count": 1, "then": {"_count": 1}}, "permanently": {"_count": 1, "affected": {"_count": 1}}, "fainted": {"_count": 1, "": {"_count": 1}}, "tortured": {"_count": 2, "Mr": {"_count": 1}, "her": {"_count": 1}}, "buzzed": {"_count": 1, "into": {"_count": 1}}, "mistaken": {"_count": 1, "the": {"_count": 1}}, "practiced": {"_count": 2, "had": {"_count": 1}, "Apparating": {"_count": 1}}, "singed": {"_count": 1, "the": {"_count": 1}}, "beaten": {"_count": 4, "him": {"_count": 2}, "Harry": {"_count": 1}, "em": {"_count": 1}}, "help": {"_count": 3, "on": {"_count": 2}, "Ron": {"_count": 1}}, "sprained": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 5, "his": {"_count": 1}, "Professor": {"_count": 1}, "Neville": {"_count": 1}, "a": {"_count": 1}, "I": {"_count": 1}}, "accepted": {"_count": 2, "what": {"_count": 1}, "even": {"_count": 1}}, "flipped": {"_count": 1, "over": {"_count": 1}}, "haunted": {"_count": 1, "his": {"_count": 1}}, "slithered": {"_count": 1, "back": {"_count": 1}}, "shivered": {"_count": 1, "": {"_count": 1}}, "faked": {"_count": 1, "his": {"_count": 1}}, "extracted": {"_count": 1, "all": {"_count": 1}}, "hated": {"_count": 3, "me": {"_count": 1}, "": {"_count": 1}, "those": {"_count": 1}}, "stripped": {"_count": 2, "me": {"_count": 1}, "a": {"_count": 1}}, "attended": {"_count": 1, "briefly": {"_count": 1}}, "drowned": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 3, "disappointing": {"_count": 1}, "good": {"_count": 1}, "little": {"_count": 1}}, "popped": {"_count": 2, "out": {"_count": 1}, "like": {"_count": 1}}, "recovered": {"_count": 3, "my": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 1}}, "loved": {"_count": 1, "Quidditch": {"_count": 1}}, "captured": {"_count": 1, "Bertha": {"_count": 1}}, "prepared": {"_count": 1, "the": {"_count": 1}}, "smuggled": {"_count": 1, "me": {"_count": 1}}, "revived": {"_count": 1, "Voldemort": {"_count": 1}}, "untied": {"_count": 1, "him": {"_count": 1}}, "connected": {"_count": 1, "his": {"_count": 1}}, "prowled": {"_count": 2, "the": {"_count": 2}}, "administered": {"_count": 1, "its": {"_count": 1}}, "sucked": {"_count": 2, "his": {"_count": 1}, "from": {"_count": 1}}, "realized": {"_count": 7, "that": {"_count": 3}, "what": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "Stunned": {"_count": 1, "young": {"_count": 1}}, "thirteen": {"_count": 1, "years": {"_count": 1}}, "merely": {"_count": 5, "requested": {"_count": 1}, "left": {"_count": 1}, "skimmed": {"_count": 1}, "glanced": {"_count": 1}, "signed": {"_count": 1}}, "avoided": {"_count": 1, "being": {"_count": 1}}, "murmured": {"_count": 1, "Cedrics": {"_count": 1}}, "unblocked": {"_count": 1, "him": {"_count": 1}}, "restrained": {"_count": 1, "herself": {"_count": 1}}, "blasted": {"_count": 5, "from": {"_count": 1}, "a": {"_count": 1}, "their": {"_count": 1}, "apart": {"_count": 1}, "More": {"_count": 1}}, "retreated": {"_count": 2, "into": {"_count": 1}, "the": {"_count": 1}}, "recently": {"_count": 5, "taken": {"_count": 1}, "become": {"_count": 1}, "spent": {"_count": 1}, "been": {"_count": 2}}, "wheeled": {"_count": 1, "about": {"_count": 1}}, "pounded": {"_count": 1, "these": {"_count": 1}}, "plagued": {"_count": 1, "him": {"_count": 1}}, "regretted": {"_count": 1, "this": {"_count": 1}}, "served": {"_count": 3, "twelve": {"_count": 1}, "as": {"_count": 1}, "him": {"_count": 1}}, "unsettling": {"_count": 1, "dreams": {"_count": 1}}, "wrought": {"_count": 2, "quite": {"_count": 1}, "a": {"_count": 1}}, "curled": {"_count": 1, "into": {"_count": 1}}, "revisited": {"_count": 1, "the": {"_count": 1}}, "erupted": {"_count": 4, "up": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}, "around": {"_count": 1}}, "ignited": {"_count": 1, "": {"_count": 1}}, "penetrated": {"_count": 5, "his": {"_count": 1}, "during": {"_count": 1}, "many": {"_count": 1}, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "sorted": {"_count": 2, "out": {"_count": 1}, "it": {"_count": 1}}, "remembered": {"_count": 3, "this": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}}, "predicted": {"_count": 4, "they": {"_count": 1}, "Snape": {"_count": 1}, "Angelinas": {"_count": 1}, "the": {"_count": 1}}, "maintained": {"_count": 2, "all": {"_count": 1}, "a": {"_count": 1}}, "echoed": {"_count": 1, "so": {"_count": 1}}, "installed": {"_count": 1, "three": {"_count": 1}}, "inflated": {"_count": 1, "pushing": {"_count": 1}}, "people": {"_count": 1, "from": {"_count": 1}}, "materialized": {"_count": 1, "out": {"_count": 1}}, "abated": {"_count": 2, "yet": {"_count": 1}, "perhaps": {"_count": 1}}, "committed": {"_count": 5, "the": {"_count": 1}, "during": {"_count": 1}, "a": {"_count": 1}, "another": {"_count": 1}, "this": {"_count": 1}}, "toppled": {"_count": 1, "backward": {"_count": 1}}, "lured": {"_count": 1, "Crookshanks": {"_count": 1}}, "huge": {"_count": 1, "numbers": {"_count": 1}}, "cannons": {"_count": 1, "for": {"_count": 1}}, "edged": {"_count": 2, "over": {"_count": 1}, "right": {"_count": 1}}, "forced": {"_count": 6, "the": {"_count": 1}, "him": {"_count": 2}, "both": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}}, "gnawed": {"_count": 1, "it": {"_count": 1}}, "bent": {"_count": 1, "closer": {"_count": 1}}, "stirred": {"_count": 5, "something": {"_count": 1}, "now": {"_count": 1}, "at": {"_count": 1}, "inside": {"_count": 1}, "close": {"_count": 1}}, "yelled": {"_count": 1, "in": {"_count": 1}}, "emotion": {"_count": 1, "to": {"_count": 1}}, "dispensed": {"_count": 2, "with": {"_count": 1}, "too": {"_count": 1}}, "ordered": {"_count": 3, "a": {"_count": 1}, "an": {"_count": 1}, "me": {"_count": 1}}, "last": {"_count": 6, "seen": {"_count": 3}, "walked": {"_count": 1}, "met": {"_count": 1}, "been": {"_count": 1}}, "confided": {"_count": 3, "some": {"_count": 1}, "in": {"_count": 1}, "Grimmauld": {"_count": 1}}, "attached": {"_count": 1, "itself": {"_count": 1}}, "new": {"_count": 1, "brooms": {"_count": 1}}, "together": {"_count": 1, "since": {"_count": 1}}, "overwhelmed": {"_count": 1, "him": {"_count": 1}}, "hung": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 1}}, "evaporated": {"_count": 1, "as": {"_count": 1}}, "lain": {"_count": 5, "": {"_count": 2}, "trapped": {"_count": 1}, "over": {"_count": 2}}, "hurtled": {"_count": 1, "straight": {"_count": 1}}, "tightly": {"_count": 1, "curled": {"_count": 1}}, "straggly": {"_count": 1, "waistlength": {"_count": 1}}, "stuck": {"_count": 3, "her": {"_count": 1}, "it": {"_count": 1}, "with": {"_count": 1}}, "flung": {"_count": 1, "her": {"_count": 1}}, "stuffed": {"_count": 2, "her": {"_count": 1}, "it": {"_count": 1}}, "Sirius": {"_count": 2, "been": {"_count": 1}, "he": {"_count": 1}}, "registered": {"_count": 2, "what": {"_count": 2}}, "deduced": {"_count": 1, "that": {"_count": 1}}, "Malfoys": {"_count": 1, "use": {"_count": 1}}, "A": {"_count": 1, "House": {"_count": 1}}, "contracted": {"_count": 2, "so": {"_count": 1}, "dragon": {"_count": 1}}, "marched": {"_count": 2, "up": {"_count": 1}, "off": {"_count": 1}}, "minor": {"_count": 1, "breakdowns": {"_count": 1}}, "affected": {"_count": 2, "Harrys": {"_count": 1}, "Ron": {"_count": 1}}, "proceeded": {"_count": 1, "straight": {"_count": 1}}, "paired": {"_count": 1, "up": {"_count": 1}}, "instead": {"_count": 1, "been": {"_count": 1}}, "winced": {"_count": 1, "horribly": {"_count": 1}}, "Dumbledores": {"_count": 1, "word": {"_count": 1}}, "great": {"_count": 4, "Defense": {"_count": 1}, "round": {"_count": 1}, "trouble": {"_count": 1}, "power": {"_count": 1}}, "snatched": {"_count": 6, "both": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 2}, "from": {"_count": 2}}, "information": {"_count": 1, "about": {"_count": 1}}, "gripped": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "healed": {"_count": 2, "but": {"_count": 1}, "Malfoys": {"_count": 1}}, "complained": {"_count": 1, "about": {"_count": 1}}, "training": {"_count": 1, "later": {"_count": 1}}, "selected": {"_count": 1, "one": {"_count": 1}}, "preferred": {"_count": 2, "Cedric": {"_count": 1}, "his": {"_count": 1}}, "things": {"_count": 1, "might": {"_count": 1}}, "pelted": {"_count": 1, "toward": {"_count": 1}}, "flashed": {"_count": 1, "into": {"_count": 1}}, "stiffened": {"_count": 1, "as": {"_count": 1}}, "interpreted": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "prefect": {"_count": 1, "duties": {"_count": 1}}, "permission": {"_count": 3, "from": {"_count": 1}, "to": {"_count": 2}}, "wondered": {"_count": 3, "why": {"_count": 1}, "whether": {"_count": 2}}, "curly": {"_count": 1, "reddishblonde": {"_count": 1}}, "sworn": {"_count": 2, "to": {"_count": 2}}, "momentarily": {"_count": 3, "forgotten": {"_count": 2}, "driven": {"_count": 1}}, "bothered": {"_count": 1, "to": {"_count": 1}}, "seared": {"_count": 1, "again": {"_count": 1}}, "worse": {"_count": 1, "": {"_count": 1}}, "Snapes": {"_count": 1, "essay": {"_count": 1}}, "screwed": {"_count": 1, "up": {"_count": 1}}, "assassinated": {"_count": 1, "": {"_count": 1}}, "reduced": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 2, "all": {"_count": 2}}, "endured": {"_count": 2, "their": {"_count": 1}, "much": {"_count": 1}}, "kissed": {"_count": 1, "him": {"_count": 1}}, "dismounted": {"_count": 1, "from": {"_count": 1}}, "bruised": {"_count": 1, "against": {"_count": 1}}, "abou": {"_count": 1, "six": {"_count": 1}}, "tears": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "improved": {"_count": 2, "beyond": {"_count": 1}, "dramatically": {"_count": 1}}, "unfrozen": {"_count": 1, "three": {"_count": 1}}, "Neville": {"_count": 1, "join": {"_count": 1}}, "probably": {"_count": 6, "been": {"_count": 4}, "set": {"_count": 1}, "come": {"_count": 1}}, "promised": {"_count": 2, "her": {"_count": 1}, "that": {"_count": 1}}, "switched": {"_count": 2, "them": {"_count": 1}, "to": {"_count": 1}}, "ensured": {"_count": 2, "that": {"_count": 2}}, "attacked": {"_count": 5, "Mr": {"_count": 2}, "Ron": {"_count": 1}, "me": {"_count": 1}, "and": {"_count": 1}}, "including": {"_count": 1, "the": {"_count": 1}}, "shared": {"_count": 2, "with": {"_count": 1}, "more": {"_count": 1}}, "shuffled": {"_count": 1, "to": {"_count": 1}}, "cast": {"_count": 7, "aside": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "around": {"_count": 1}, "with": {"_count": 1}, "upon": {"_count": 1}, "their": {"_count": 1}}, "journeyed": {"_count": 1, "miles": {"_count": 1}}, "these": {"_count": 1, "dreams": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}, "superb": {"_count": 1, "moving": {"_count": 1}}, "fangs": {"_count": 1, "which": {"_count": 1}}, "witnessed": {"_count": 4, "in": {"_count": 2}, "": {"_count": 1}, "Dumbledores": {"_count": 1}}, "mended": {"_count": 4, "the": {"_count": 1}, "Malfoys": {"_count": 1}, "he": {"_count": 1}, "last": {"_count": 1}}, "wavy": {"_count": 1, "blond": {"_count": 1}}, "damaged": {"_count": 1, "Professor": {"_count": 1}}, "autographed": {"_count": 1, "many": {"_count": 1}}, "narrowly": {"_count": 4, "missed": {"_count": 2}, "avoided": {"_count": 1}, "escaped": {"_count": 1}}, "stung": {"_count": 1, "Sirius": {"_count": 1}}, "beckoned": {"_count": 1, "him": {"_count": 1}}, "shortly": {"_count": 2, "before": {"_count": 2}}, "collided": {"_count": 1, "painfully": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "weakened": {"_count": 2, "his": {"_count": 1}, "himself": {"_count": 1}}, "occurred": {"_count": 4, "right": {"_count": 1}, "so": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 1}}, "redoubling": {"_count": 1, "his": {"_count": 1}}, "prickled": {"_count": 1, "occasionally": {"_count": 1}}, "slopped": {"_count": 1, "half": {"_count": 1}}, "pressed": {"_count": 2, "him": {"_count": 1}, "against": {"_count": 1}}, "dinner": {"_count": 1, "because": {"_count": 1}}, "named": {"_count": 1, "all": {"_count": 1}}, "Moodys": {"_count": 1, "Invisibility": {"_count": 1}}, "most": {"_count": 4, "of": {"_count": 2}, "rashly": {"_count": 1}, "space": {"_count": 1}}, "inflicted": {"_count": 1, "upon": {"_count": 1}}, "sprinted": {"_count": 3, "through": {"_count": 1}, "after": {"_count": 1}, "for": {"_count": 1}}, "kicked": {"_count": 1, "Firenze": {"_count": 1}}, "continued": {"_count": 3, "attending": {"_count": 1}, "after": {"_count": 1}, "to": {"_count": 1}}, "overcome": {"_count": 1, "two": {"_count": 1}}, "misheard": {"_count": 1, "her": {"_count": 1}}, "drunk": {"_count": 3, "anything": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}}, "Occlumency": {"_count": 1, "the": {"_count": 1}}, "twenty": {"_count": 1, "four": {"_count": 1}}, "hastily": {"_count": 3, "crossed": {"_count": 1}, "packed": {"_count": 1}, "replaced": {"_count": 1}}, "thick": {"_count": 2, "dark": {"_count": 1}, "hair": {"_count": 1}}, "twitched": {"_count": 2, "for": {"_count": 1}, "toward": {"_count": 1}}, "taunted": {"_count": 1, "him": {"_count": 1}}, "intervened": {"_count": 1, "his": {"_count": 1}}, "glowed": {"_count": 1, "with": {"_count": 1}}, "vouched": {"_count": 1, "for": {"_count": 1}}, "spun": {"_count": 1, "around": {"_count": 1}}, "deflated": {"_count": 1, "his": {"_count": 1}}, "fastened": {"_count": 4, "them": {"_count": 1}, "his": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}}, "exhausted": {"_count": 1, "the": {"_count": 1}}, "Grawp": {"_count": 1, "here": {"_count": 1}}, "disturbed": {"_count": 2, "him": {"_count": 1}, "its": {"_count": 1}}, "ignored": {"_count": 1, "Lupin": {"_count": 1}}, "acknowledged": {"_count": 1, "that": {"_count": 1}}, "sprung": {"_count": 4, "up": {"_count": 2}, "alive": {"_count": 1}, "into": {"_count": 1}}, "gained": {"_count": 2, "the": {"_count": 2}}, "confiscated": {"_count": 1, "the": {"_count": 1}}, "whenever": {"_count": 1, "she": {"_count": 1}}, "expressed": {"_count": 1, "a": {"_count": 1}}, "observed": {"_count": 1, "crossing": {"_count": 1}}, "marked": {"_count": 2, "its": {"_count": 1}, "a": {"_count": 1}}, "mislabelled": {"_count": 1, "Venus": {"_count": 1}}, "hastened": {"_count": 1, "to": {"_count": 1}}, "Stealth": {"_count": 1, "Sensoring": {"_count": 1}}, "attempted": {"_count": 2, "to": {"_count": 2}}, "wasted": {"_count": 2, "so": {"_count": 2}}, "elapsed": {"_count": 4, "since": {"_count": 3}, "": {"_count": 1}}, "neither": {"_count": 1, "done": {"_count": 1}}, "weighed": {"_count": 1, "Harrys": {"_count": 1}}, "obeyed": {"_count": 1, "it": {"_count": 1}}, "blue": {"_count": 1, "streaks": {"_count": 1}}, "mimicked": {"_count": 1, "him": {"_count": 1}}, "hollowed": {"_count": 1, "Bellatrix": {"_count": 1}}, "deflected": {"_count": 1, "it": {"_count": 1}}, "however": {"_count": 1, "given": {"_count": 1}}, "charmed": {"_count": 1, "shut": {"_count": 1}}, "crawled": {"_count": 2, "out": {"_count": 1}, "across": {"_count": 1}}, "ripped": {"_count": 1, "off": {"_count": 1}}, "contained": {"_count": 2, "TimeTurners": {"_count": 1}, "": {"_count": 1}}, "collapsed": {"_count": 5, "sideways": {"_count": 1}, "trying": {"_count": 1}, "halfway": {"_count": 1}, "and": {"_count": 1}, "heaving": {"_count": 1}}, "staggered": {"_count": 1, "to": {"_count": 1}}, "jabbed": {"_count": 1, "Hermiones": {"_count": 1}}, "Lupin": {"_count": 1, "did": {"_count": 1}}, "risked": {"_count": 1, "everything": {"_count": 1}}, "slammed": {"_count": 1, "the": {"_count": 1}}, "close": {"_count": 1, "contact": {"_count": 1}}, "hed": {"_count": 1, "never": {"_count": 1}}, "plainly": {"_count": 1, "not": {"_count": 1}}, "sealed": {"_count": 1, "by": {"_count": 1}}, "anticipated": {"_count": 4, "you": {"_count": 1}, "its": {"_count": 1}, "but": {"_count": 1}, "useless": {"_count": 1}}, "foreseen": {"_count": 2, "that": {"_count": 2}}, "triumphantly": {"_count": 1, "snatched": {"_count": 1}}, "thrice": {"_count": 1, "defied": {"_count": 1}}, "likewise": {"_count": 1, "been": {"_count": 1}}, "strode": {"_count": 1, "alone": {"_count": 1}}, "planted": {"_count": 1, "in": {"_count": 1}}, "taught": {"_count": 6, "them": {"_count": 2}, "him": {"_count": 1}, "all": {"_count": 1}, "at": {"_count": 1}, "Harry": {"_count": 1}}, "limped": {"_count": 1, "a": {"_count": 1}}, "singlehandedly": {"_count": 1, "demolished": {"_count": 1}}, "resulted": {"_count": 2, "in": {"_count": 2}}, "bounced": {"_count": 1, "out": {"_count": 1}}, "trained": {"_count": 1, "himself": {"_count": 1}}, "panted": {"_count": 1, "tipping": {"_count": 1}}, "gazed": {"_count": 1, "hopelessly": {"_count": 1}}, "thrust": {"_count": 1, "into": {"_count": 1}}, "squinted": {"_count": 1, "down": {"_count": 1}}, "teams": {"_count": 1, "of": {"_count": 1}}, "rather": {"_count": 2, "a": {"_count": 1}, "impressed": {"_count": 1}}, "keen": {"_count": 1, "yellowish": {"_count": 1}}, "slunk": {"_count": 1, "down": {"_count": 1}}, "paused": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "small": {"_count": 1, "watery": {"_count": 1}}, "sixteen": {"_count": 1, "years": {"_count": 1}}, "from": {"_count": 1, "you": {"_count": 1}}, "doused": {"_count": 1, "her": {"_count": 1}}, "sons": {"_count": 1, "I": {"_count": 1}}, "twisted": {"_count": 1, "Harrys": {"_count": 1}}, "Stretching": {"_count": 1, "Jinxes": {"_count": 1}}, "ridden": {"_count": 1, "once": {"_count": 1}}, "obligingly": {"_count": 1, "stretched": {"_count": 1}}, "stowed": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "perfected": {"_count": 1, "during": {"_count": 1}}, "glanced": {"_count": 1, "around": {"_count": 1}}, "boarded": {"_count": 1, "the": {"_count": 1}}, "happily": {"_count": 1, "abused": {"_count": 1}}, "flapped": {"_count": 1, "around": {"_count": 1}}, "created": {"_count": 1, "as": {"_count": 1}}, "loathed": {"_count": 3, "Snape": {"_count": 1}, "being": {"_count": 2}}, "comprised": {"_count": 1, "five": {"_count": 1}}, "imposed": {"_count": 1, "his": {"_count": 1}}, "recognized": {"_count": 1, "the": {"_count": 1}}, "succeeded": {"_count": 4, "in": {"_count": 3}, "": {"_count": 1}}, "skimmed": {"_count": 1, "through": {"_count": 1}}, "tracked": {"_count": 1, "him": {"_count": 1}}, "adjusted": {"_count": 1, "Dumbledore": {"_count": 1}}, "nailed": {"_count": 1, "a": {"_count": 1}}, "injured": {"_count": 1, "several": {"_count": 1}}, "greatly": {"_count": 1, "weakened": {"_count": 1}}, "married": {"_count": 1, "her": {"_count": 1}}, "exams": {"_count": 1, "every": {"_count": 1}}, "overdosed": {"_count": 1, "on": {"_count": 1}}, "mysteriously": {"_count": 1, "failed": {"_count": 1}}, "refrained": {"_count": 1, "from": {"_count": 1}}, "outflown": {"_count": 2, "all": {"_count": 1}, "Seamus": {"_count": 1}}, "often": {"_count": 1, "admired": {"_count": 1}}, "bin": {"_count": 1, "teachin": {"_count": 1}}, "substituted": {"_count": 1, "for": {"_count": 1}}, "twice": {"_count": 1, "used": {"_count": 1}}, "hoisted": {"_count": 2, "him": {"_count": 1}, "Severus": {"_count": 1}}, "stooped": {"_count": 2, "down": {"_count": 2}}, "sleet": {"_count": 1, "trapped": {"_count": 1}}, "argued": {"_count": 4, "about": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 2}}, "there": {"_count": 1, "been": {"_count": 1}}, "withheld": {"_count": 1, "mention": {"_count": 1}}, "rested": {"_count": 3, "last": {"_count": 1}, "": {"_count": 2}}, "Herbology": {"_count": 1, "first": {"_count": 1}}, "criticized": {"_count": 1, "him": {"_count": 1}}, "is": {"_count": 1, "from": {"_count": 1}}, "composed": {"_count": 1, "his": {"_count": 1}}, "anybody": {"_count": 2, "else": {"_count": 2}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "decorated": {"_count": 2, "so": {"_count": 1}, "her": {"_count": 1}}, "bitten": {"_count": 1, "Fred": {"_count": 1}}, "offended": {"_count": 1, "him": {"_count": 1}}, "glimpsed": {"_count": 2, "Mrs": {"_count": 1}, "his": {"_count": 1}}, "checked": {"_count": 2, "her": {"_count": 1}, "their": {"_count": 1}}, "clean": {"_count": 1, "plates": {"_count": 1}}, "cottoned": {"_count": 1, "on": {"_count": 1}}, "stormed": {"_count": 1, "from": {"_count": 1}}, "dried": {"_count": 1, "himself": {"_count": 1}}, "behaved": {"_count": 1, "before": {"_count": 1}}, "succumbed": {"_count": 1, "to": {"_count": 1}}, "congealed": {"_count": 1, "slightly": {"_count": 1}}, "dawdled": {"_count": 1, "deliberately": {"_count": 1}}, "recited": {"_count": 1, "it": {"_count": 1}}, "peered": {"_count": 1, "hopefully": {"_count": 1}}, "withdrawn": {"_count": 1, "his": {"_count": 1}}, "Snape": {"_count": 2, "still": {"_count": 1}, "already": {"_count": 1}}, "soot": {"_count": 1, "on": {"_count": 1}}, "eyes": {"_count": 5, "for": {"_count": 2}, "only": {"_count": 2}, "": {"_count": 1}}, "triumphed": {"_count": 1, "without": {"_count": 1}}, "flushed": {"_count": 1, "a": {"_count": 1}}, "reprimanded": {"_count": 1, "one": {"_count": 1}}, "jammed": {"_count": 1, "a": {"_count": 1}}, "inspired": {"_count": 1, "a": {"_count": 1}}, "messed": {"_count": 1, "up": {"_count": 1}}, "Rufus": {"_count": 1, "Scrimgeours": {"_count": 1}}, "full": {"_count": 1, "schedules": {"_count": 1}}, "unrolled": {"_count": 2, "it": {"_count": 1}, "then": {"_count": 1}}, "tripped": {"_count": 1, "over": {"_count": 1}}, "shrunk": {"_count": 1, "a": {"_count": 1}}, "advised": {"_count": 1, "Armando": {"_count": 1}}, "admired": {"_count": 1, "him": {"_count": 1}}, "Hokey": {"_count": 1, "bring": {"_count": 1}}, "gestured": {"_count": 1, "the": {"_count": 1}}, "disagreed": {"_count": 1, "with": {"_count": 1}}, "blabbed": {"_count": 1, "": {"_count": 1}}, "lots": {"_count": 2, "in": {"_count": 2}}, "lagged": {"_count": 1, "behind": {"_count": 1}}, "hovered": {"_count": 1, "on": {"_count": 1}}, "boasted": {"_count": 1, "openly": {"_count": 1}}, "curdled": {"_count": 1, "and": {"_count": 1}}, "pronounced": {"_count": 1, "his": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "contrived": {"_count": 1, "to": {"_count": 1}}, "business": {"_count": 1, "to": {"_count": 1}}, "secured": {"_count": 1, "the": {"_count": 1}}, "outlined": {"_count": 1, "": {"_count": 1}}, "wheedled": {"_count": 1, "the": {"_count": 1}}, "captained": {"_count": 1, "Gryffindor": {"_count": 1}}, "acid": {"_count": 1, "thrown": {"_count": 1}}, "jocularly": {"_count": 1, "attributed": {"_count": 1}}, "frequently": {"_count": 2, "wondered": {"_count": 1}, "pierced": {"_count": 1}}, "altered": {"_count": 2, "the": {"_count": 1}, "no": {"_count": 1}}, "increased": {"_count": 1, "tenfold": {"_count": 1}}, "wordlessly": {"_count": 1, "immobilized": {"_count": 1}}, "cost": {"_count": 4, "him": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "them": {"_count": 1}}, "tasted": {"_count": 1, "something": {"_count": 1}}, "overtaken": {"_count": 1, "using": {"_count": 1}}, "cursed": {"_count": 1, "Dumbledore": {"_count": 1}}, "located": {"_count": 1, "his": {"_count": 1}}, "sustained": {"_count": 1, "a": {"_count": 1}}, "enclosed": {"_count": 1, "his": {"_count": 1}}, "since": {"_count": 3, "been": {"_count": 1}, "I": {"_count": 1}, "condescended": {"_count": 1}}, "proof": {"_count": 1, "Snape": {"_count": 1}}, "moments": {"_count": 2, "when": {"_count": 1}, "seconds": {"_count": 1}}, "responded": {"_count": 1, "to": {"_count": 1}}, "until": {"_count": 2, "now": {"_count": 1}, "his": {"_count": 1}}, "discussed": {"_count": 2, "fighting": {"_count": 1}, "the": {"_count": 1}}, "hugged": {"_count": 1, "him": {"_count": 1}}, "ages": {"_count": 1, "": {"_count": 1}}, "visibly": {"_count": 1, "opened": {"_count": 1}}, "leaned": {"_count": 1, "forward": {"_count": 1}}, "packed": {"_count": 1, "it": {"_count": 1}}, "plunged": {"_count": 1, "his": {"_count": 1}}, "occasioned": {"_count": 1, "by": {"_count": 1}}, "Ministerial": {"_count": 1, "ambitions": {"_count": 1}}, "least": {"_count": 1, "contact": {"_count": 1}}, "brains": {"_count": 1, "she": {"_count": 1}}, "listened": {"_count": 1, "to": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "virtually": {"_count": 1, "no": {"_count": 1}}, "dogged": {"_count": 1, "him": {"_count": 1}}, "recounted": {"_count": 1, "it": {"_count": 1}}, "slowed": {"_count": 1, "to": {"_count": 1}}, "splintered": {"_count": 2, "with": {"_count": 1}, "apart": {"_count": 1}}, "consented": {"_count": 1, "to": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "jeered": {"_count": 2, "at": {"_count": 2}}, "staunched": {"_count": 1, "his": {"_count": 1}}, "drained": {"_count": 2, "his": {"_count": 1}, "from": {"_count": 1}}, "pudding": {"_count": 1, "": {"_count": 1}}, "sometimes": {"_count": 1, "thought": {"_count": 1}}, "honored": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 1, "right": {"_count": 1}}, "prodigious": {"_count": 1, "magical": {"_count": 1}}, "accessorized": {"_count": 1, "with": {"_count": 1}}, "presided": {"_count": 1, "at": {"_count": 1}}, "pursued": {"_count": 2, "him": {"_count": 2}}, "conquered": {"_count": 3, "the": {"_count": 1}, "Death": {"_count": 1}, "him": {"_count": 1}}, "control": {"_count": 1, "of": {"_count": 1}}, "unraveled": {"_count": 1, "again": {"_count": 1}}, "possessed": {"_count": 1, "him": {"_count": 1}}, "idolized": {"_count": 1, "": {"_count": 1}}, "slept": {"_count": 2, "last": {"_count": 1}, "on": {"_count": 1}}, "pilfered": {"_count": 1, "plenty": {"_count": 1}}, "plastered": {"_count": 1, "the": {"_count": 1}}, "perished": {"_count": 1, "like": {"_count": 1}}, "striven": {"_count": 1, "to": {"_count": 1}}, "salvaged": {"_count": 1, "": {"_count": 1}}, "proper": {"_count": 1, "pride": {"_count": 1}}, "tested": {"_count": 1, "the": {"_count": 1}}, "ffforbidden": {"_count": 1, "him": {"_count": 1}}, "overturned": {"_count": 1, "": {"_count": 1}}, "propelled": {"_count": 1, "him": {"_count": 1}}, "consoled": {"_count": 1, "him": {"_count": 1}}, "treated": {"_count": 1, "his": {"_count": 1}}, "resumed": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "jetblack": {"_count": 1, "hair": {"_count": 1}}, "identical": {"_count": 1, "shoulderlength": {"_count": 1}}, "relaxed": {"_count": 2, "into": {"_count": 1}, "and": {"_count": 1}}, "tailed": {"_count": 1, "Ministry": {"_count": 1}}, "high": {"_count": 1, "timbered": {"_count": 1}}, "laundered": {"_count": 1, "for": {"_count": 1}}, "concentrated": {"_count": 1, "all": {"_count": 1}}, "clanged": {"_count": 1, "shut": {"_count": 1}}, "Dirk": {"_count": 1, "Cresswells": {"_count": 1}}, "Apparated": {"_count": 1, "to": {"_count": 1}}, "surprised": {"_count": 1, "her": {"_count": 1}}, "assumed": {"_count": 1, "that": {"_count": 1}}, "purewhite": {"_count": 1, "hair": {"_count": 1}}, "camped": {"_count": 1, "there": {"_count": 1}}, "pitched": {"_count": 2, "the": {"_count": 2}}, "certain": {"_count": 1, "properties": {"_count": 1}}, "dared": {"_count": 1, "to": {"_count": 1}}, "deluded": {"_count": 1, "herself": {"_count": 1}}, "lingered": {"_count": 1, "a": {"_count": 1}}, "discovered": {"_count": 4, "one": {"_count": 1}, "that": {"_count": 1}, "about": {"_count": 1}, "it": {"_count": 1}}, "controlled": {"_count": 1, "the": {"_count": 1}}, "reinstated": {"_count": 1, "Umbridges": {"_count": 1}}, "skinny": {"_count": 1, "ankles": {"_count": 1}}, "brothers": {"_count": 1, "and": {"_count": 1}}, "surreptitiously": {"_count": 1, "obtained": {"_count": 1}}, "deep": {"_count": 1, "roots": {"_count": 1}}, "either": {"_count": 1, "died": {"_count": 1}}, "right": {"_count": 1, "after": {"_count": 1}}, "backfired": {"_count": 1, "": {"_count": 1}}, "carved": {"_count": 1, "their": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "rebuffed": {"_count": 1, "Bathilda": {"_count": 1}}, "retrieved": {"_count": 1, "the": {"_count": 1}}, "brushed": {"_count": 1, "him": {"_count": 1}}, "tightened": {"_count": 1, "and": {"_count": 1}}, "retorted": {"_count": 1, "to": {"_count": 1}}, "liquidized": {"_count": 1, "bogeyflavored": {"_count": 1}}, "stretched": {"_count": 3, "out": {"_count": 3}}, "earned": {"_count": 1, "a": {"_count": 1}}, "attained": {"_count": 1, "a": {"_count": 1}}, "defeated": {"_count": 1, "them": {"_count": 1}}, "dislodged": {"_count": 1, "the": {"_count": 1}}, "rummaged": {"_count": 1, "through": {"_count": 1}}, "snuffed": {"_count": 1, "it": {"_count": 1}}, "lightened": {"_count": 1, "a": {"_count": 1}}, "gold": {"_count": 1, "there": {"_count": 1}}, "misread": {"_count": 1, "the": {"_count": 1}}, "clashed": {"_count": 1, "with": {"_count": 1}}, "sidled": {"_count": 1, "into": {"_count": 1}}, "protected": {"_count": 1, "from": {"_count": 1}}, "infiltrated": {"_count": 1, "the": {"_count": 1}}, "room": {"_count": 1, "to": {"_count": 1}}, "divined": {"_count": 1, "the": {"_count": 1}}, "estimated": {"_count": 1, "and": {"_count": 1}}, "angry": {"_count": 1, "red": {"_count": 1}}, "dreaded": {"_count": 1, "but": {"_count": 1}}, "ways": {"_count": 1, "of": {"_count": 1}}, "destroyed": {"_count": 1, "any": {"_count": 1}}, "plumbed": {"_count": 1, "the": {"_count": 1}}, "riddled": {"_count": 1, "him": {"_count": 1}}, "eclipsed": {"_count": 1, "it": {"_count": 1}}, "resealed": {"_count": 1, "itself": {"_count": 1}}, "apprehended": {"_count": 1, "an": {"_count": 1}}, "unleashed": {"_count": 1, "the": {"_count": 1}}, "stationed": {"_count": 1, "Alecto": {"_count": 1}}, "eluded": {"_count": 1, "generations": {"_count": 1}}, "surely": {"_count": 1, "asked": {"_count": 1}}, "shaken": {"_count": 1, "his": {"_count": 1}}, "claimed": {"_count": 1, "my": {"_count": 1}}, "denied": {"_count": 1, "Dumbledore": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "sailed": {"_count": 1, "through": {"_count": 1}}, "strayed": {"_count": 1, "off": {"_count": 1}}, "concealed": {"_count": 1, "a": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "defended": {"_count": 1, "Snape": {"_count": 1}}, "deteriorated": {"_count": 1, "severely": {"_count": 1}}, "lunged": {"_count": 1, "for": {"_count": 1}}, "aimed": {"_count": 1, "to": {"_count": 1}}, "wands": {"_count": 1, "": {"_count": 1}}, "recorded": {"_count": 1, "House": {"_count": 1}}, "encased": {"_count": 1, "him": {"_count": 1}}, "reentered": {"_count": 1, "the": {"_count": 1}}, "perhaps": {"_count": 1, "taken": {"_count": 1}}, "brightened": {"_count": 1, "a": {"_count": 1}}, "overestimated": {"_count": 1, "him": {"_count": 1}}, "parted": {"_count": 1, "from": {"_count": 1}}, "years": {"_count": 1, "and": {"_count": 1}}, "spawned": {"_count": 1, "had": {"_count": 1}}, "rendered": {"_count": 1, "his": {"_count": 1}}, "tampered": {"_count": 1, "so": {"_count": 1}}, "showed": {"_count": 1, "it": {"_count": 1}}, "encouraged": {"_count": 1, "him": {"_count": 1}}, "proven": {"_count": 1, "as": {"_count": 1}}, "exercised": {"_count": 1, "over": {"_count": 1}}, "craved": {"_count": 1, "most": {"_count": 1}}, "kidnapped": {"_count": 1, "Ollivander": {"_count": 1}}, "shocked": {"_count": 1, "Voldemort": {"_count": 1}}, "complete": {"_count": 1, "faith": {"_count": 1}}, "thinned": {"_count": 1, "for": {"_count": 1}}, "divested": {"_count": 1, "himself": {"_count": 1}}}, "nearly": {"_count": 229, "twice": {"_count": 1, "the": {"_count": 1}}, "midnight": {"_count": 4, "before": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 2}}, "crashed": {"_count": 2, "into": {"_count": 1}, "the": {"_count": 1}}, "bitten": {"_count": 1, "off": {"_count": 1}}, "poking": {"_count": 1, "out": {"_count": 1}}, "there": {"_count": 11, "": {"_count": 3}, "he": {"_count": 1}, "come": {"_count": 1}, "said": {"_count": 2}, "with": {"_count": 1}, "now": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 1}}, "five": {"_count": 2, "hundred": {"_count": 1}, "years": {"_count": 1}}, "headless": {"_count": 1, "": {"_count": 1}}, "drowned": {"_count": 1, "but": {"_count": 1}}, "always": {"_count": 3, "win": {"_count": 1}, "had": {"_count": 1}, "right": {"_count": 1}}, "kills": {"_count": 1, "the": {"_count": 1}}, "swallowed": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "Christmas": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "broke": {"_count": 2, "his": {"_count": 2}}, "touching": {"_count": 1, "that": {"_count": 1}}, "an": {"_count": 4, "hour": {"_count": 4}}, "fell": {"_count": 3, "out": {"_count": 1}, "off": {"_count": 1}, "over": {"_count": 1}}, "as": {"_count": 25, "much": {"_count": 5}, "uncomfortable": {"_count": 1}, "sorry": {"_count": 1}, "simple": {"_count": 1}, "bad": {"_count": 2}, "well": {"_count": 2}, "anxious": {"_count": 1}, "composed": {"_count": 1}, "shocking": {"_count": 1}, "interesting": {"_count": 1}, "nice": {"_count": 1}, "odd": {"_count": 1}, "angry": {"_count": 2}, "tall": {"_count": 1}, "uneasy": {"_count": 1}, "easy": {"_count": 1}, "overgrown": {"_count": 1}, "hard": {"_count": 1}}, "out": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "half": {"_count": 4, "an": {"_count": 4}}, "had": {"_count": 1, "his": {"_count": 1}}, "were": {"_count": 1, "I": {"_count": 1}}, "killed": {"_count": 5, "you": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "both": {"_count": 1}}, "fifteen": {"_count": 2, "minutes": {"_count": 1}, "years": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "raised": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 2, "inch": {"_count": 1}, "witch": {"_count": 1}}, "knocked": {"_count": 3, "him": {"_count": 2}, "off": {"_count": 1}}, "twenty": {"_count": 1, "minutes": {"_count": 1}}, "lunchtime": {"_count": 2, "and": {"_count": 1}, "I": {"_count": 1}}, "time": {"_count": 7, "to": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 2}, "said": {"_count": 2}, "she": {"_count": 1}}, "four": {"_count": 8, "hours": {"_count": 1}, "months": {"_count": 1}, "years": {"_count": 4}, "in": {"_count": 2}}, "everyone": {"_count": 5, "in": {"_count": 2}, "was": {"_count": 1}, "there": {"_count": 1}, "had": {"_count": 1}}, "made": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "got": {"_count": 4, "Ron": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "Kingsley": {"_count": 1}}, "ready": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "upset": {"_count": 1, "his": {"_count": 1}}, "everybody": {"_count": 5, "seemed": {"_count": 1}, "else": {"_count": 2}, "now": {"_count": 1}, "in": {"_count": 1}}, "eleven": {"_count": 2, "the": {"_count": 1}, "youd": {"_count": 1}}, "extinguished": {"_count": 1, "the": {"_count": 1}}, "thrown": {"_count": 3, "into": {"_count": 1}, "from": {"_count": 1}, "off": {"_count": 1}}, "break": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "quarter": {"_count": 1}, "year": {"_count": 1}}, "cried": {"_count": 1, "when": {"_count": 1}}, "everything": {"_count": 4, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}, "they": {"_count": 1}, "but": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "scalped": {"_count": 1, "me": {"_count": 1}}, "hit": {"_count": 2, "another": {"_count": 1}, "Neville": {"_count": 1}}, "been": {"_count": 2, "run": {"_count": 1}, "kissed": {"_count": 1}}, "lost": {"_count": 2, "an": {"_count": 1}, "his": {"_count": 1}}, "cleaned": {"_count": 1, "us": {"_count": 1}}, "dropped": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "pulled": {"_count": 1, "off": {"_count": 1}}, "stabbed": {"_count": 1, "yeh": {"_count": 1}}, "did": {"_count": 2, "to": {"_count": 1}, "too": {"_count": 1}}, "upon": {"_count": 1, "them": {"_count": 1}}, "at": {"_count": 1, "Hagrids": {"_count": 1}}, "full": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "escaped": {"_count": 1, "them": {"_count": 1}}, "ran": {"_count": 1, "into": {"_count": 1}}, "knocking": {"_count": 1, "her": {"_count": 1}}, "three": {"_count": 2, "in": {"_count": 1}, "foot": {"_count": 1}}, "all": {"_count": 7, "of": {"_count": 3}, "the": {"_count": 2}, "turned": {"_count": 1}, "his": {"_count": 1}}, "gored": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "one": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "everyones": {"_count": 1, "favorite": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "many": {"_count": 1}}, "empty": {"_count": 1, "to": {"_count": 1}}, "fourteen": {"_count": 1, "years": {"_count": 1}}, "often": {"_count": 1, "enough": {"_count": 1}}, "caught": {"_count": 1, "Sirius": {"_count": 1}}, "in": {"_count": 1, "tears": {"_count": 1}}, "landing": {"_count": 1, "himself": {"_count": 1}}, "six": {"_count": 3, "months": {"_count": 1}, "years": {"_count": 1}, "hours": {"_count": 1}}, "over": {"_count": 1, "but": {"_count": 1}}, "unseated": {"_count": 1, "him": {"_count": 1}}, "sixteen": {"_count": 1, "years": {"_count": 1}}, "missed": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "fifty": {"_count": 2, "years": {"_count": 2}}, "eight": {"_count": 1, "oclock": {"_count": 1}}, "crying": {"_count": 1, "when": {"_count": 1}}, "two": {"_count": 3, "years": {"_count": 2}, "weeks": {"_count": 1}}, "died": {"_count": 1, "doing": {"_count": 1}}, "so": {"_count": 1, "": {"_count": 1}}, "late": {"_count": 1, "": {"_count": 1}}, "smiled": {"_count": 1, "then": {"_count": 1}}, "cracked": {"_count": 1, "his": {"_count": 1}}, "done": {"_count": 1, "Im": {"_count": 1}}, "saw": {"_count": 1, "me": {"_count": 1}}, "forgot": {"_count": 1, "": {"_count": 1}}, "nine": {"_count": 1, "": {"_count": 1}}, "overturned": {"_count": 1, "the": {"_count": 1}}, "illegible": {"_count": 1, "name": {"_count": 1}}, "morning": {"_count": 1, "": {"_count": 1}}, "severed": {"_count": 1, "in": {"_count": 1}}, "enough": {"_count": 1, "Plimpies": {"_count": 1}}, "shoved": {"_count": 1, "it": {"_count": 1}}, "seven": {"_count": 1, "years": {"_count": 1}}, "swallowing": {"_count": 1, "it": {"_count": 1}}, "dawn": {"_count": 1, "when": {"_count": 1}}, "forgotten": {"_count": 1, "that": {"_count": 1}}, "deserted": {"_count": 2, "": {"_count": 1}, "playground": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "stumbled": {"_count": 1, "": {"_count": 1}}, "walked": {"_count": 1, "into": {"_count": 1}}, "gave": {"_count": 1, "me": {"_count": 1}}, "solid": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "forced": {"_count": 1, "Harrys": {"_count": 1}}}, "twice": {"_count": 91, "the": {"_count": 4, "usual": {"_count": 1}, "size": {"_count": 2}, "work": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 15}, "?": {"_count": 2}}, "as": {"_count": 5, "tall": {"_count": 3}, "ugly": {"_count": 1}, "heavy": {"_count": 1}}, "around": {"_count": 2, "Uncle": {"_count": 1}, "every": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "each": {"_count": 2}}, "he": {"_count": 8, "dropped": {"_count": 1}, "thought": {"_count": 1}, "was": {"_count": 1}, "even": {"_count": 1}, "found": {"_count": 1}, "and": {"_count": 1}, "came": {"_count": 1}, "heard": {"_count": 1}}, "A": {"_count": 1, "minute": {"_count": 1}}, "Percy": {"_count": 1, "led": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 2, "usual": {"_count": 1}, "normal": {"_count": 1}}, "about": {"_count": 1, "breaking": {"_count": 1}}, "and": {"_count": 4, "remembered": {"_count": 1}, "both": {"_count": 1}, "produced": {"_count": 1}, "entered": {"_count": 1}}, "I": {"_count": 2, "failed": {"_count": 1}, "think": {"_count": 1}}, "tearing": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 5, "day": {"_count": 3}, "week": {"_count": 2}}, "at": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "in": {"_count": 6, "her": {"_count": 2}, "the": {"_count": 2}, "class": {"_count": 1}, "a": {"_count": 1}}, "they": {"_count": 2, "broke": {"_count": 1}, "were": {"_count": 1}}, "said": {"_count": 2, "Fred": {"_count": 1}, "Hermione": {"_count": 1}}, "more": {"_count": 2, "bringing": {"_count": 1}, "Dudley": {"_count": 1}}, "Harry": {"_count": 4, "saw": {"_count": 2}, "caught": {"_count": 1}, "considered": {"_count": 1}}, "youve": {"_count": 1, "saved": {"_count": 1}}, "Sirius": {"_count": 1, "made": {"_count": 1}}, "since": {"_count": 1, "we": {"_count": 1}}, "what": {"_count": 1, "e": {"_count": 1}}, "before": {"_count": 1, "stopping": {"_count": 1}}, "three": {"_count": 2, "times": {"_count": 2}}, "she": {"_count": 2, "had": {"_count": 1}, "clicked": {"_count": 1}}, "simply": {"_count": 1, "walking": {"_count": 1}}, "but": {"_count": 1, "hurried": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "normal": {"_count": 1, "size": {"_count": 1}}, "pausing": {"_count": 1, "to": {"_count": 1}}}, "usual": {"_count": 264, "amount": {"_count": 1, "of": {"_count": 1}}, "morning": {"_count": 2, "traffic": {"_count": 1}, "post": {"_count": 1}}, "when": {"_count": 3, "as": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 48, ".": {"_count": 45}, "!": {"_count": 1}, "?": {"_count": 2}}, "and": {"_count": 16, "Dudley": {"_count": 1}, "I": {"_count": 1}, "there": {"_count": 1}, "Neville": {"_count": 1}, "he": {"_count": 1}, "not": {"_count": 1}, "then": {"_count": 1}, "his": {"_count": 1}, "preparing": {"_count": 1}, "everybody": {"_count": 1}, "angrier": {"_count": 1}, "here": {"_count": 1}, "winced": {"_count": 1}, "most": {"_count": 1}, "once": {"_count": 1}, "her": {"_count": 1}}, "Hagrid": {"_count": 2, "muttered": {"_count": 1}, "": {"_count": 1}}, "everyones": {"_count": 1, "attention": {"_count": 1}}, "since": {"_count": 2, "the": {"_count": 1}, "then": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "bad": {"_count": 1, "temper": {"_count": 1}}, "size": {"_count": 1, "": {"_count": 1}}, "quivering": {"_count": 1, "treble": {"_count": 1}}, "from": {"_count": 2, "Kings": {"_count": 1}, "tomorrow": {"_count": 1}}, "sneer": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "cheerful": {"_count": 1, "self": {"_count": 1}}, "as": {"_count": 5, "though": {"_count": 1}, "it": {"_count": 1}, "curtains": {"_count": 1}, "he": {"_count": 2}}, "I": {"_count": 1, "think": {"_count": 1}}, "live": {"_count": 1, "bats": {"_count": 1}}, "for": {"_count": 3, "Hermione": {"_count": 1}, "the": {"_count": 1}, "new": {"_count": 1}}, "sleepy": {"_count": 1, "silence": {"_count": 1}}, "torpor": {"_count": 1, "": {"_count": 1}}, "pre": {"_count": 2, "match": {"_count": 1}, "bedtime": {"_count": 1}}, "collecting": {"_count": 1, "names": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 2, "": {"_count": 1}, "cloak": {"_count": 1}}, "lookout": {"_count": 1, "post": {"_count": 1}}, "toilet": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "waited": {"_count": 1}}, "places": {"_count": 1, "at": {"_count": 1}}, "but": {"_count": 6, "Lockhart": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 1}, "rather": {"_count": 1}, "also": {"_count": 1}, "Harry": {"_count": 1}}, "chair": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "Harry": {"_count": 5, "slit": {"_count": 1}, "hadnt": {"_count": 1}, "assured": {"_count": 1}, "you": {"_count": 1}, "next": {"_count": 1}}, "display": {"_count": 1, "of": {"_count": 1}}, "toothless": {"_count": 1, "grin": {"_count": 1}}, "lazy": {"_count": 1, "drawl": {"_count": 1}}, "path": {"_count": 1, "to": {"_count": 1}}, "prematch": {"_count": 1, "pep": {"_count": 1}}, "detention": {"_count": 1, "disembowelment": {"_count": 1}}, "standards": {"_count": 1, "he": {"_count": 1}}, "magnificent": {"_count": 1, "Christmas": {"_count": 1}}, "twelve": {"_count": 3, "Christmas": {"_count": 3}}, "brown": {"_count": 1, "coat": {"_count": 1}}, "curses": {"_count": 1, "but": {"_count": 1}}, "volume": {"_count": 1, "shrieking": {"_count": 1}}, "dramatic": {"_count": 1, "entrance": {"_count": 1}}, "pursuits": {"_count": 1, "were": {"_count": 1}}, "sickly": {"_count": 1, "scent": {"_count": 1}}, "standard": {"_count": 1, "Hermione": {"_count": 1}}, "you": {"_count": 1, "mean": {"_count": 1}}, "fashion": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "wizards": {"_count": 1}, "all": {"_count": 1}, "floating": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "beautiful": {"_count": 1, "selves": {"_count": 1}}, "splendid": {"_count": 1, "self": {"_count": 1}}, "doublet": {"_count": 1, "but": {"_count": 1}}, "argument": {"_count": 2, "you": {"_count": 1}, "about": {"_count": 1}}, "said": {"_count": 3, "Nearly": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "supply": {"_count": 1, "of": {"_count": 1}}, "large": {"_count": 1, "amount": {"_count": 1}}, "airyfairy": {"_count": 1, "self": {"_count": 1}}, "snores": {"_count": 1, "meant": {"_count": 1}}, "air": {"_count": 1, "of": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "signs": {"_count": 1, "of": {"_count": 1}}, "curt": {"_count": 1, "voice": {"_count": 1}}, "paranoid": {"_count": 1, "self": {"_count": 1}}, "enormous": {"_count": 1, "tankard": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "very": {"_count": 1, "aware": {"_count": 1}}, "scuffle": {"_count": 1, "of": {"_count": 1}}, "while": {"_count": 1, "his": {"_count": 1}}, "package": {"_count": 1, "including": {"_count": 1}}, "mass": {"_count": 1, "of": {"_count": 1}}, "uniform": {"_count": 1, "of": {"_count": 1}}, "came": {"_count": 1, "splashing": {"_count": 1}}, "pangs": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "notes": {"_count": 1, "but": {"_count": 1}}, "pinstriped": {"_count": 1, "cloak": {"_count": 1}}, "to": {"_count": 2, "act": {"_count": 1}, "find": {"_count": 1}}, "form": {"_count": 1, "": {"_count": 1}}, "decorations": {"_count": 1, "were": {"_count": 1}}, "confusion": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 1, "long": {"_count": 1}}, "carwashing": {"_count": 1, "and": {"_count": 1}}, "brisk": {"_count": 1, "snappish": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "reminder": {"_count": 1, "that": {"_count": 1}}, "barklike": {"_count": 1, "laugh": {"_count": 1}}, "racket": {"_count": 1, "up": {"_count": 1}}, "startofterm": {"_count": 1, "notices": {"_count": 1}}, "table": {"_count": 1, "at": {"_count": 1}}, "misty": {"_count": 1, "dreamy": {"_count": 1}}, "manner": {"_count": 1, "": {"_count": 1}}, "gang": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "Daily": {"_count": 1}}, "rubbish": {"_count": 1, "Hermione": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "mystic": {"_count": 1, "tones": {"_count": 1}}, "ethereal": {"_count": 2, "voice": {"_count": 1}, "mystic": {"_count": 1}}, "seats": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "teaching": {"_count": 1, "methods": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "grunts": {"_count": 1, "of": {"_count": 1}}, "greenandsilver": {"_count": 1, "scarves": {"_count": 1}}, "gorillas": {"_count": 1, "rather": {"_count": 1}}, "twos": {"_count": 1, "and": {"_count": 1}}, "spot": {"_count": 1, "and": {"_count": 1}}, "handknitted": {"_count": 1, "jumper": {"_count": 1}}, "though": {"_count": 1, "once": {"_count": 1}}, "rules": {"_count": 1, "do": {"_count": 1}}, "stuff": {"_count": 1, "lessons": {"_count": 1}}, "pile": {"_count": 1, "of": {"_count": 1}}, "corner": {"_count": 1, "of": {"_count": 1}}, "eight": {"_count": 1, "hats": {"_count": 1}}, "simple": {"_count": 1, "explanation": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "certain": {"_count": 1, "of": {"_count": 1}}, "position": {"_count": 1, "facing": {"_count": 1}}, "gusto": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 2}}, "distant": {"_count": 1, "rumbling": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "empty": {"_count": 1, "words": {"_count": 1}}, "slithering": {"_count": 1, "out": {"_count": 1}}, "without": {"_count": 1, "her": {"_count": 1}}, "lastminute": {"_count": 1, "scramble": {"_count": 1}}, "deafening": {"_count": 1, "scraping": {"_count": 1}}, "anxious": {"_count": 1, "parents": {"_count": 1}}, "self": {"_count": 1, "once": {"_count": 1}}, "checking": {"_count": 1, "off": {"_count": 1}}, "shortcut": {"_count": 1, "up": {"_count": 1}}, "excitable": {"_count": 1, "affair": {"_count": 1}}, "commentators": {"_count": 1, "started": {"_count": 1}}, "build": {"_count": 1, "for": {"_count": 1}}, "knack": {"_count": 1, "of": {"_count": 1}}, "teachers": {"_count": 1, "study": {"_count": 1}}, "affectionate": {"_count": 1, "treatment": {"_count": 1}}, "sometimes": {"_count": 1, "remaining": {"_count": 1}}, "seat": {"_count": 1, "in": {"_count": 1}}, "sensation": {"_count": 1, "that": {"_count": 1}}, "enchantments": {"_count": 1, "": {"_count": 1}}, "prodding": {"_count": 1, "act": {"_count": 1}}, "her": {"_count": 1, "mousecolored": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "features": {"_count": 1, "members": {"_count": 1}}, "detour": {"_count": 1, "along": {"_count": 1}}, "furniture": {"_count": 1, "had": {"_count": 1}}, "senses": {"_count": 1, "it": {"_count": 1}}, "evil": {"_count": 1, "": {"_count": 1}}, "contingent": {"_count": 1, "of": {"_count": 1}}, "length": {"_count": 1, "and": {"_count": 1}}, "loud": {"_count": 1, "crack": {"_count": 1}}, "low": {"_count": 1, "whisper": {"_count": 1}}, "sonorous": {"_count": 1, "clanking": {"_count": 1}}, "brief": {"_count": 1, "spell": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "tightness": {"_count": 1, "engulfed": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "update": {"_count": 1, "on": {"_count": 1}}, "appearance": {"_count": 1, "before": {"_count": 1}}, "protective": {"_count": 1, "spells": {"_count": 1}}, "magic": {"_count": 1, "": {"_count": 1}}}, "amount": {"_count": 51, "of": {"_count": 44, "neck": {"_count": 1}, "earth": {"_count": 1}, "mud": {"_count": 2}, "talent": {"_count": 1}, "license": {"_count": 1}, "gold": {"_count": 2}, "thick": {"_count": 1}, "beads": {"_count": 1}, "work": {"_count": 1}, "Transfiguration": {"_count": 1}, "bubbles": {"_count": 1}, "Charms": {"_count": 1}, "homework": {"_count": 3}, "shell": {"_count": 1}, "noise": {"_count": 2}, "fresh": {"_count": 1}, "apprehension": {"_count": 1}, "damage": {"_count": 1}, "water": {"_count": 1}, "inconvenience": {"_count": 1}, "very": {"_count": 1}, "floor": {"_count": 1}, "gaping": {"_count": 1}, "cheating": {"_count": 1}, "arrogance": {"_count": 1}, "guessing": {"_count": 1}, "skin": {"_count": 1}, "giggles": {"_count": 1}, "strain": {"_count": 1}, "time": {"_count": 2}, "illfeeling": {"_count": 1}, "what": {"_count": 1}, "excitement": {"_count": 1}, "edible": {"_count": 1}, "control": {"_count": 1}, "scarring": {"_count": 1}, "magical": {"_count": 1}, "disruption": {"_count": 1}}, "to": {"_count": 2, "more": {"_count": 1}, "win": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "going": {"_count": 1, "on": {"_count": 1}}, "below": {"_count": 1, "nevertheless": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}}, "came": {"_count": 765, "in": {"_count": 38, "very": {"_count": 1}, "both": {"_count": 1}, "": {"_count": 13}, "here": {"_count": 6}, "looking": {"_count": 1}, "Harry": {"_count": 1}, "smiling": {"_count": 1}, "and": {"_count": 1}, "accompanied": {"_count": 1}, "Professor": {"_count": 1}, "smoothly": {"_count": 1}, "together": {"_count": 1}, "with": {"_count": 1}, "from": {"_count": 1}, "Self": {"_count": 1}, "I": {"_count": 1}, "laughing": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}, "painful": {"_count": 1}, "great": {"_count": 1}}, "into": {"_count": 27, "the": {"_count": 7}, "his": {"_count": 2}, "view": {"_count": 6}, "focus": {"_count": 3}, "clearer": {"_count": 1}, "conflict": {"_count": 1}, "Dobbys": {"_count": 1}, "sharper": {"_count": 1}, "operation": {"_count": 1}, "effect": {"_count": 1}, "sight": {"_count": 2}, "contact": {"_count": 1}}, "back": {"_count": 66, "to": {"_count": 15}, "from": {"_count": 3}, "and": {"_count": 4}, "ter": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 3}, "out": {"_count": 1}, "saying": {"_count": 1}, "then": {"_count": 1}, "again": {"_count": 1}, "downstairs": {"_count": 1}, "accompanied": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 1}, "five": {"_count": 1}, "at": {"_count": 1}, "down": {"_count": 2}, "into": {"_count": 4}, "": {"_count": 5}, "within": {"_count": 1}, "with": {"_count": 1}, "Harry": {"_count": 1}, "here": {"_count": 2}, "didnt": {"_count": 1}, "youre": {"_count": 1}, "you": {"_count": 1}, "without": {"_count": 1}, "good": {"_count": 1}, "was": {"_count": 1}, "for": {"_count": 2}, "I": {"_count": 1}, "after": {"_count": 1}, "it": {"_count": 1}, "He": {"_count": 1}}, "waddling": {"_count": 2, "toward": {"_count": 1}, "down": {"_count": 1}}, "next": {"_count": 4, "happened": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}}, "up": {"_count": 13, "with": {"_count": 1}, "the": {"_count": 4}, "to": {"_count": 3}, "off": {"_count": 1}, "from": {"_count": 1}, "where": {"_count": 1}, "made": {"_count": 1}, "behind": {"_count": 1}}, "from": {"_count": 28, "": {"_count": 3}, "a": {"_count": 6}, "the": {"_count": 6}, "over": {"_count": 1}, "near": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "Fawkes": {"_count": 1}, "several": {"_count": 1}, "curtained": {"_count": 1}, "more": {"_count": 1}, "Wizarding": {"_count": 1}, "Beedle": {"_count": 1}, "Godrics": {"_count": 1}, "directly": {"_count": 1}, "an": {"_count": 1}}, "he": {"_count": 2, "would": {"_count": 1}, "piled": {"_count": 1}}, "the": {"_count": 21, "sound": {"_count": 4}, "day": {"_count": 1}, "other": {"_count": 1}, "deep": {"_count": 1}, "cold": {"_count": 2}, "feeble": {"_count": 1}, "howling": {"_count": 1}, "clink": {"_count": 1}, "sounds": {"_count": 1}, "seven": {"_count": 1}, "Irish": {"_count": 1}, "blueishgray": {"_count": 1}, "elephantine": {"_count": 1}, "dispiriting": {"_count": 1}, "necklace": {"_count": 1}, "muffled": {"_count": 1}, "clinking": {"_count": 1}}, "whizzing": {"_count": 2, "down": {"_count": 1}, "out": {"_count": 1}}, "pelting": {"_count": 6, "out": {"_count": 4}, "toward": {"_count": 1}, "back": {"_count": 1}}, "over": {"_count": 15, "to": {"_count": 5}, "at": {"_count": 1}, "and": {"_count": 2}, "the": {"_count": 2}, "him": {"_count": 2}, "me": {"_count": 1}, "Hermione": {"_count": 1}, "his": {"_count": 1}}, "ambling": {"_count": 1, "up": {"_count": 1}}, "skidding": {"_count": 3, "into": {"_count": 2}, "out": {"_count": 1}}, "home": {"_count": 7, "every": {"_count": 1}, "and": {"_count": 2}, "after": {"_count": 1}, "really": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "out": {"_count": 51, "": {"_count": 11}, "of": {"_count": 20}, "near": {"_count": 1}, "and": {"_count": 3}, "last": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 2}, "except": {"_count": 1}, "to": {"_count": 1}, "before": {"_count": 1}, "in": {"_count": 1}, "yesterday": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "deep": {"_count": 1}, "miles": {"_count": 1}, "it": {"_count": 1}, "because": {"_count": 1}, "onto": {"_count": 1}}, "ter": {"_count": 2, "yer": {"_count": 1}, "call": {"_count": 1}}, "to": {"_count": 112, "a": {"_count": 26}, "think": {"_count": 9}, "tell": {"_count": 1}, "him": {"_count": 11}, "get": {"_count": 1}, "visit": {"_count": 2}, "work": {"_count": 1}, "the": {"_count": 5}, "meet": {"_count": 1}, "Hogwarts": {"_count": 4}, "write": {"_count": 1}, "inspect": {"_count": 1}, "watch": {"_count": 1}, "spotting": {"_count": 1}, "using": {"_count": 1}, "see": {"_count": 3}, "my": {"_count": 2}, "chivvy": {"_count": 1}, "sit": {"_count": 1}, "rest": {"_count": 5}, "be": {"_count": 3}, "investigate": {"_count": 1}, "power": {"_count": 1}, "light": {"_count": 1}, "an": {"_count": 4}, "call": {"_count": 1}, "realize": {"_count": 1}, "Umbridges": {"_count": 1}, "ask": {"_count": 1}, "nothing": {"_count": 1}, "Healing": {"_count": 1}, "fetch": {"_count": 1}, "his": {"_count": 2}, "gin": {"_count": 1}, "Harry": {"_count": 4}, "life": {"_count": 2}, "look": {"_count": 1}, "find": {"_count": 1}, "live": {"_count": 1}, "possess": {"_count": 1}, "take": {"_count": 1}, "facedown": {"_count": 1}, "Egbert": {"_count": 1}, "fruition": {"_count": 1}}, "outta": {"_count": 1, "kinda": {"_count": 1}}, "hurtling": {"_count": 4, "up": {"_count": 1}, "into": {"_count": 1}, "out": {"_count": 2}}, "billowing": {"_count": 1, "out": {"_count": 1}}, "swarming": {"_count": 2, "in": {"_count": 1}, "over": {"_count": 1}}, "floating": {"_count": 3, "in": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 1}}, "striding": {"_count": 10, "into": {"_count": 3}, "toward": {"_count": 3}, "out": {"_count": 1}, "back": {"_count": 1}, "up": {"_count": 2}}, "bobbing": {"_count": 1, "over": {"_count": 1}}, "round": {"_count": 3, "for": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "shooting": {"_count": 4, "out": {"_count": 3}, "across": {"_count": 1}}, "an": {"_count": 3, "angry": {"_count": 1}, "image": {"_count": 1}, "evening": {"_count": 1}}, "sprinting": {"_count": 3, "into": {"_count": 2}, "down": {"_count": 1}}, "chasing": {"_count": 1, "after": {"_count": 1}}, "Malfoys": {"_count": 2, "cold": {"_count": 1}, "clear": {"_count": 1}}, "around": {"_count": 9, "the": {"_count": 6}, "rain": {"_count": 1}, "as": {"_count": 1}, "said": {"_count": 1}}, "much": {"_count": 1, "nearer": {"_count": 1}}, "spilling": {"_count": 1, "onto": {"_count": 1}}, "swiftly": {"_count": 2, "down": {"_count": 1}, "toward": {"_count": 1}}, "for": {"_count": 3, "him": {"_count": 1}, "his": {"_count": 1}, "me": {"_count": 1}}, "ripping": {"_count": 1, "noises": {"_count": 1}}, "swooping": {"_count": 1, "down": {"_count": 1}}, "hurrying": {"_count": 17, "out": {"_count": 2}, "over": {"_count": 1}, "up": {"_count": 2}, "toward": {"_count": 5}, "forward": {"_count": 2}, "into": {"_count": 3}, "back": {"_count": 1}, "down": {"_count": 1}}, "was": {"_count": 1, "it": {"_count": 1}}, "crawling": {"_count": 1, "across": {"_count": 1}}, "bursting": {"_count": 3, "through": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 1}}, "when": {"_count": 1, "their": {"_count": 1}}, "a": {"_count": 24, "sudden": {"_count": 2}, "seventh": {"_count": 1}, "horrible": {"_count": 1}, "faint": {"_count": 1}, "series": {"_count": 2}, "new": {"_count": 2}, "burst": {"_count": 1}, "bang": {"_count": 1}, "deafening": {"_count": 1}, "morning": {"_count": 1}, "face": {"_count": 1}, "crashing": {"_count": 1}, "time": {"_count": 1}, "shriek": {"_count": 1}, "loud": {"_count": 2}, "rasping": {"_count": 1}, "shout": {"_count": 1}, "whisper": {"_count": 1}, "great": {"_count": 1}, "rough": {"_count": 1}}, "galloping": {"_count": 2, "into": {"_count": 1}, "back": {"_count": 1}}, "slowly": {"_count": 1, "into": {"_count": 1}}, "thundering": {"_count": 1, "down": {"_count": 1}}, "too": {"_count": 3, "quickly": {"_count": 1}, "close": {"_count": 1}, "": {"_count": 1}}, "almost": {"_count": 1, "immediately": {"_count": 1}}, "here": {"_count": 5, "instead": {"_count": 1}, "and": {"_count": 1}, "tonight": {"_count": 1}, "unasked": {"_count": 1}, "you": {"_count": 1}}, "clattering": {"_count": 2, "in": {"_count": 1}, "past": {"_count": 1}}, "dashing": {"_count": 1, "down": {"_count": 1}}, "across": {"_count": 4, "somebody": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 2}}, "gliding": {"_count": 1, "out": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "shouldering": {"_count": 1, "his": {"_count": 1}}, "nearer": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "storming": {"_count": 1, "over": {"_count": 1}}, "bustling": {"_count": 7, "over": {"_count": 1}, "in": {"_count": 1}, "importantly": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}}, "running": {"_count": 12, "followed": {"_count": 1}, "up": {"_count": 2}, "toward": {"_count": 2}, "said": {"_count": 1}, "to": {"_count": 1}, "back": {"_count": 1}, "into": {"_count": 1}, "downstairs": {"_count": 1}, "after": {"_count": 1}, "out": {"_count": 1}}, "Rons": {"_count": 3, "and": {"_count": 1}, "muffled": {"_count": 1}, "angry": {"_count": 1}}, "down": {"_count": 3, "hard": {"_count": 1}, "here": {"_count": 1}, "to": {"_count": 1}}, "words": {"_count": 1, "Harry": {"_count": 1}}, "quickly": {"_count": 1, "his": {"_count": 1}}, "Riddles": {"_count": 1, "reply": {"_count": 1}}, "suddenly": {"_count": 2, "into": {"_count": 1}, "out": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "half": {"_count": 1, "marching": {"_count": 1}}, "free": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "Professor": {"_count": 2, "McGonagalls": {"_count": 1}, "Snape": {"_count": 1}}, "and": {"_count": 8, "nnow": {"_count": 1}, "then": {"_count": 1}, "Krum": {"_count": 1}, "warned": {"_count": 1}, "went": {"_count": 2}, "what": {"_count": 1}, "saw": {"_count": 1}}, "tumbling": {"_count": 1, "out": {"_count": 1}}, "quiet": {"_count": 1, "": {"_count": 1}}, "soaring": {"_count": 6, "from": {"_count": 1}, "through": {"_count": 1}, "out": {"_count": 2}, "in": {"_count": 1}, "over": {"_count": 1}}, "Hermiones": {"_count": 2, "voice": {"_count": 1}, "muffled": {"_count": 1}}, "straight": {"_count": 2, "down": {"_count": 1}, "here": {"_count": 1}}, "jogging": {"_count": 1, "into": {"_count": 1}}, "flying": {"_count": 5, "out": {"_count": 1}, "into": {"_count": 1}, "toward": {"_count": 2}, "across": {"_count": 1}}, "facetoface": {"_count": 2, "with": {"_count": 1}, "he": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "Percys": {"_count": 1, "voice": {"_count": 1}}, "very": {"_count": 2, "close": {"_count": 1}, "very": {"_count": 1}}, "Woods": {"_count": 1, "anguished": {"_count": 1}}, "through": {"_count": 5, "well": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 1}}, "Madam": {"_count": 1, "Rosmertas": {"_count": 1}}, "another": {"_count": 2, "voice": {"_count": 1}, "scream": {"_count": 1}}, "timidly": {"_count": 1, "out": {"_count": 1}}, "floodin": {"_count": 1, "back": {"_count": 1}}, "hurried": {"_count": 1, "footsteps": {"_count": 1}}, "leaping": {"_count": 1, "into": {"_count": 1}}, "close": {"_count": 2, "to": {"_count": 2}}, "as": {"_count": 7, "a": {"_count": 4}, "something": {"_count": 1}, "no": {"_count": 1}, "an": {"_count": 1}}, "streaking": {"_count": 1, "past": {"_count": 1}}, "Astronomy": {"_count": 1, "at": {"_count": 1}}, "sliding": {"_count": 1, "out": {"_count": 1}}, "walking": {"_count": 5, "briskly": {"_count": 1}, "alongside": {"_count": 1}, "into": {"_count": 1}, "behind": {"_count": 1}, "up": {"_count": 1}}, "Dumbledores": {"_count": 1, "voice": {"_count": 1}}, "charging": {"_count": 3, "out": {"_count": 2}, "around": {"_count": 1}}, "Harry": {"_count": 1, "Hermione": {"_count": 1}}, "Freds": {"_count": 1, "voice": {"_count": 1}}, "more": {"_count": 1, "naturally": {"_count": 1}}, "strolling": {"_count": 1, "out": {"_count": 1}}, "zooming": {"_count": 2, "into": {"_count": 1}, "gleefully": {"_count": 1}}, "tearing": {"_count": 2, "across": {"_count": 1}, "into": {"_count": 1}}, "rattling": {"_count": 1, "along": {"_count": 1}}, "Nevilles": {"_count": 1, "gloomy": {"_count": 1}}, "fluttering": {"_count": 1, "down": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "whipping": {"_count": 1, "up": {"_count": 1}}, "trotting": {"_count": 2, "up": {"_count": 1}, "at": {"_count": 1}}, "splashing": {"_count": 1, "out": {"_count": 1}}, "panting": {"_count": 2, "into": {"_count": 2}}, "after": {"_count": 3, "Voldemorts": {"_count": 1}, "them": {"_count": 1}, "Hagrid": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoys": {"_count": 1}}, "closer": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "sweeping": {"_count": 2, "up": {"_count": 1}, "down": {"_count": 1}}, "about": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 2, "hailing": {"_count": 1}, "range": {"_count": 1}}, "galumphing": {"_count": 1, "out": {"_count": 1}}, "Lupins": {"_count": 1, "voice": {"_count": 1}}, "wandering": {"_count": 1, "in": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "speeding": {"_count": 1, "out": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "limping": {"_count": 1, "through": {"_count": 1}}, "on": {"_count": 3, "inside": {"_count": 1}, "the": {"_count": 1}, "ahead": {"_count": 1}}, "swinging": {"_count": 1, "toward": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "wheezing": {"_count": 1, "into": {"_count": 1}}, "at": {"_count": 7, "the": {"_count": 2}, "me": {"_count": 2}, "last": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "bounding": {"_count": 1, "up": {"_count": 1}}, "Neville": {"_count": 1, "with": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "struggling": {"_count": 1, "toward": {"_count": 1}}, "pouring": {"_count": 2, "out": {"_count": 2}}, "Lees": {"_count": 1, "voice": {"_count": 1}}, "marching": {"_count": 1, "along": {"_count": 1}}, "clambering": {"_count": 1, "through": {"_count": 1}}, "stumping": {"_count": 2, "out": {"_count": 1}, "into": {"_count": 1}}, "quietly": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "inside": {"_count": 1, "all": {"_count": 1}}, "away": {"_count": 2, "stretching": {"_count": 1}, "too": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "toward": {"_count": 1, "me": {"_count": 1}}, "creeping": {"_count": 1, "into": {"_count": 1}}, "she": {"_count": 1, "she": {"_count": 1}}, "shuffling": {"_count": 2, "their": {"_count": 1}, "eagerly": {"_count": 1}}, "along": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "Mr": {"_count": 1, "Weasleys": {"_count": 1}}, "their": {"_count": 1, "first": {"_count": 1}}, "scurrying": {"_count": 2, "toward": {"_count": 1}, "around": {"_count": 1}}, "staggering": {"_count": 2, "up": {"_count": 1}, "right": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "butting": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "spinning": {"_count": 1, "into": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "slouching": {"_count": 1, "into": {"_count": 1}}, "croaked": {"_count": 1, "Hagrid": {"_count": 1}}, "padding": {"_count": 1, "softly": {"_count": 1}}, "upstairs": {"_count": 1, "said": {"_count": 1}}, "racing": {"_count": 1, "down": {"_count": 1}}, "true": {"_count": 1, "within": {"_count": 1}}, "falling": {"_count": 1, "through": {"_count": 1}}, "crashing": {"_count": 1, "down": {"_count": 1}}, "accidentally": {"_count": 1, "upon": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "barely": {"_count": 1, "level": {"_count": 1}}, "camping": {"_count": 1, "here": {"_count": 1}}, "Her": {"_count": 1, "presence": {"_count": 1}}, "so": {"_count": 2, "readily": {"_count": 1}, "close": {"_count": 1}}, "streaming": {"_count": 1, "across": {"_count": 1}}, "Bellatrixs": {"_count": 1, "voice": {"_count": 1}}, "Luciuss": {"_count": 1, "voice": {"_count": 1}}, "Wormtails": {"_count": 1, "voice": {"_count": 1}}, "cries": {"_count": 1, "of": {"_count": 1}}, "trundling": {"_count": 1, "along": {"_count": 1}}, "dementors": {"_count": 1, "ten": {"_count": 1}}, "Harrys": {"_count": 1, "old": {"_count": 1}}, "first": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "lurching": {"_count": 2, "around": {"_count": 1}, "out": {"_count": 1}}, "giggling": {"_count": 1, "in": {"_count": 1}}, "slow": {"_count": 1, "and": {"_count": 1}}, "without": {"_count": 1, "his": {"_count": 1}}, "lumbering": {"_count": 1, "around": {"_count": 1}}, "hooves": {"_count": 1, "and": {"_count": 1}}, "loudest": {"_count": 1, "of": {"_count": 1}}}, "useful": {"_count": 66, "as": {"_count": 2, "she": {"_count": 1}, "Bertha": {"_count": 1}}, "carry": {"_count": 1, "yer": {"_count": 1}}, "or": {"_count": 1, "yehll": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 9}, "!": {"_count": 1}, "?": {"_count": 1}}, "to": {"_count": 2, "have": {"_count": 1}, "occupy": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "player": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "has": {"_count": 1}}, "in": {"_count": 5, "an": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "hiding": {"_count": 1}}, "for": {"_count": 1, "next": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "little": {"_count": 1, "spell": {"_count": 1}}, "spies": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "I": {"_count": 1}}, "she": {"_count": 1, "would": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "loose": {"_count": 1, "floorboard": {"_count": 1}}, "contact": {"_count": 1, "at": {"_count": 1}}, "Hermione": {"_count": 1, "snapped": {"_count": 1}}, "at": {"_count": 1, "times": {"_count": 1}}, "aid": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "information": {"_count": 4, "on": {"_count": 1}, "from": {"_count": 2}, "have": {"_count": 1}}, "discovery": {"_count": 1, "of": {"_count": 1}}, "thing": {"_count": 2, "Ive": {"_count": 1}, "he": {"_count": 1}}, "Sirius": {"_count": 1, "muttered": {"_count": 1}}, "when": {"_count": 1, "theyre": {"_count": 1}}, "Oh": {"_count": 1, "please": {"_count": 1}}, "than": {"_count": 1, "Divination": {"_count": 1}}, "Snape": {"_count": 1, "laid": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "Potions": {"_count": 1}}, "ter": {"_count": 1, "the": {"_count": 1}}, "welcomeback": {"_count": 1, "present": {"_count": 1}}, "role": {"_count": 1, "as": {"_count": 1}}, "contacts": {"_count": 2, "between": {"_count": 1}, "": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "additions": {"_count": 1, "to": {"_count": 1}}, "recruiting": {"_count": 1, "ground": {"_count": 1}}, "if": {"_count": 1, "were": {"_count": 1}}, "spell": {"_count": 1, "Harry": {"_count": 1}}, "bright": {"_count": 1, "blue": {"_count": 1}}, "piped": {"_count": 1, "up": {"_count": 1}}}, "as": {"_count": 7081, "she": {"_count": 286, "spent": {"_count": 1}, "wrestled": {"_count": 1}, "did": {"_count": 5}, "went": {"_count": 6}, "opened": {"_count": 5}, "crossed": {"_count": 1}, "pleased": {"_count": 1}, "left": {"_count": 7}, "strode": {"_count": 3}, "knocked": {"_count": 1}, "towered": {"_count": 1}, "let": {"_count": 2}, "rushed": {"_count": 1}, "straightened": {"_count": 3}, "aimed": {"_count": 1}, "threw": {"_count": 6}, "spoke": {"_count": 7}, "had": {"_count": 11}, "found": {"_count": 1}, "came": {"_count": 3}, "landed": {"_count": 2}, "drifted": {"_count": 1}, "handed": {"_count": 1}, "Harry": {"_count": 4}, "disappeared": {"_count": 1}, "searched": {"_count": 1}, "examined": {"_count": 1}, "entered": {"_count": 1}, "stopped": {"_count": 1}, "swung": {"_count": 2}, "tugged": {"_count": 1}, "soared": {"_count": 2}, "picked": {"_count": 2}, "led": {"_count": 3}, "could": {"_count": 6}, "expected": {"_count": 1}, "stirred": {"_count": 1}, "kissed": {"_count": 1}, "leaned": {"_count": 1}, "fought": {"_count": 1}, "sobbed": {"_count": 1}, "walked": {"_count": 7}, "kept": {"_count": 1}, "fluttered": {"_count": 1}, "always": {"_count": 2}, "collected": {"_count": 1}, "was": {"_count": 9}, "pointed": {"_count": 3}, "stepped": {"_count": 2}, "looked": {"_count": 7}, "too": {"_count": 1}, "passed": {"_count": 10}, "read": {"_count": 3}, "approached": {"_count": 4}, "saw": {"_count": 1}, "got": {"_count": 1}, "stared": {"_count": 1}, "said": {"_count": 5}, "spotted": {"_count": 1}, "tried": {"_count": 1}, "smoothed": {"_count": 1}, "reached": {"_count": 3}, "strapped": {"_count": 1}, "hurried": {"_count": 3}, "screamed": {"_count": 1}, "pulled": {"_count": 8}, "made": {"_count": 2}, "took": {"_count": 4}, "gasped": {"_count": 1}, "touched": {"_count": 1}, "stalked": {"_count": 1}, "carried": {"_count": 1}, "strives": {"_count": 1}, "checked": {"_count": 1}, "drew": {"_count": 3}, "turned": {"_count": 6}, "swayed": {"_count": 1}, "talked": {"_count": 1}, "conducted": {"_count": 1}, "rummaged": {"_count": 1}, "watched": {"_count": 4}, "gulped": {"_count": 1}, "generally": {"_count": 1}, "seized": {"_count": 1}, "rounded": {"_count": 1}, "lay": {"_count": 1}, "tapped": {"_count": 1}, "shuffled": {"_count": 3}, "and": {"_count": 5}, "ran": {"_count": 3}, "continued": {"_count": 3}, "wound": {"_count": 1}, "glanced": {"_count": 2}, "peered": {"_count": 1}, "sent": {"_count": 1}, "brought": {"_count": 1}, "moved": {"_count": 1}, "slid": {"_count": 1}, "helped": {"_count": 1}, "set": {"_count": 1}, "marched": {"_count": 1}, "gazed": {"_count": 1}, "zigzagged": {"_count": 1}, "lunged": {"_count": 1}, "emerged": {"_count": 1}, "enfolded": {"_count": 1}, "waved": {"_count": 3}, "blinked": {"_count": 1}, "wended": {"_count": 1}, "climbed": {"_count": 2}, "told": {"_count": 1}, "replied": {"_count": 2}, "sat": {"_count": 2}, "caught": {"_count": 1}, "patted": {"_count": 1}, "put": {"_count": 1}, "answered": {"_count": 1}, "staggered": {"_count": 1}, "wants": {"_count": 1}, "pored": {"_count": 1}, "leapt": {"_count": 1}, "attempted": {"_count": 1}, "lowered": {"_count": 1}, "asked": {"_count": 1}, "pushed": {"_count": 1}, "slashed": {"_count": 1}, "dragged": {"_count": 2}, "resumed": {"_count": 1}, "tore": {"_count": 1}, "nodded": {"_count": 1}, "unwound": {"_count": 1}, "raised": {"_count": 3}, "suggested": {"_count": 1}, "gave": {"_count": 1}, "brandished": {"_count": 1}, "transformed": {"_count": 1}, "jogged": {"_count": 1}, "hovered": {"_count": 1}, "hugged": {"_count": 1}}, "unDursleyish": {"_count": 1, "as": {"_count": 1}}, "it": {"_count": 148, "was": {"_count": 8}, "had": {"_count": 33}, "passed": {"_count": 3}, "cleared": {"_count": 1}, "would": {"_count": 4}, "emerged": {"_count": 1}, "went": {"_count": 5}, "may": {"_count": 2}, "took": {"_count": 1}, "curled": {"_count": 1}, "cringed": {"_count": 1}, "did": {"_count": 4}, "ever": {"_count": 3}, "is": {"_count": 4}, "kicked": {"_count": 1}, "almost": {"_count": 1}, "muttered": {"_count": 1}, "shot": {"_count": 1}, "scuttled": {"_count": 2}, "whirled": {"_count": 1}, "launched": {"_count": 1}, "carved": {"_count": 1}, "reversed": {"_count": 1}, "twisted": {"_count": 1}, "always": {"_count": 4}, "approached": {"_count": 1}, "heated": {"_count": 1}, "so": {"_count": 1}, "sounds": {"_count": 1}, "tried": {"_count": 1}, "reached": {"_count": 1}, "stared": {"_count": 1}, "drew": {"_count": 1}, "raised": {"_count": 1}, "hopped": {"_count": 1}, "sprinted": {"_count": 1}, "surveyed": {"_count": 1}, "works": {"_count": 2}, "progressed": {"_count": 2}, "could": {"_count": 1}, "bobbed": {"_count": 1}, "didnt": {"_count": 1}, "rested": {"_count": 1}, "fluttered": {"_count": 1}, "prevented": {"_count": 1}, "came": {"_count": 2}, "should": {"_count": 1}, "entered": {"_count": 1}, "takes": {"_count": 1}, "But": {"_count": 1}, "turned": {"_count": 2}, "fell": {"_count": 3}, "might": {"_count": 1}, "scampered": {"_count": 1}, "sped": {"_count": 1}, "made": {"_count": 1}, "whipped": {"_count": 1}, "happens": {"_count": 1}, "burst": {"_count": 1}, "answered": {"_count": 1}, "seems": {"_count": 1}, "exploded": {"_count": 1}, "vanished": {"_count": 2}, "doesnt": {"_count": 1}, "smoked": {"_count": 1}, "started": {"_count": 1}, "cantered": {"_count": 1}, "seemed": {"_count": 1}, "coiled": {"_count": 2}, "struck": {"_count": 1}, "burned": {"_count": 1}, "repulsed": {"_count": 1}, "flew": {"_count": 1}, "dived": {"_count": 1}, "struggled": {"_count": 1}, "staggered": {"_count": 1}, "smashed": {"_count": 1}, "dropped": {"_count": 1}, "clattered": {"_count": 1}}, "he": {"_count": 1096, "picked": {"_count": 3}, "left": {"_count": 7}, "passed": {"_count": 31}, "could": {"_count": 84}, "took": {"_count": 14}, "spoke": {"_count": 19}, "shouted": {"_count": 3}, "crept": {"_count": 4}, "worked": {"_count": 1}, "spread": {"_count": 2}, "slid": {"_count": 3}, "found": {"_count": 1}, "ran": {"_count": 12}, "called": {"_count": 2}, "counted": {"_count": 1}, "ate": {"_count": 5}, "joined": {"_count": 3}, "liked": {"_count": 2}, "struggled": {"_count": 9}, "poured": {"_count": 2}, "was": {"_count": 43}, "pulled": {"_count": 21}, "looked": {"_count": 30}, "held": {"_count": 5}, "imagined": {"_count": 3}, "lay": {"_count": 11}, "had": {"_count": 66}, "climbed": {"_count": 4}, "handed": {"_count": 1}, "reached": {"_count": 17}, "dropped": {"_count": 2}, "beat": {"_count": 1}, "too": {"_count": 2}, "stood": {"_count": 12}, "walked": {"_count": 28}, "is": {"_count": 5}, "shoved": {"_count": 1}, "unwrapped": {"_count": 1}, "watched": {"_count": 21}, "stoked": {"_count": 1}, "lowered": {"_count": 3}, "tried": {"_count": 10}, "fell": {"_count": 5}, "emerged": {"_count": 3}, "dashed": {"_count": 2}, "tied": {"_count": 1}, "wasnt": {"_count": 1}, "hastily": {"_count": 1}, "straightened": {"_count": 3}, "crossed": {"_count": 4}, "opened": {"_count": 6}, "got": {"_count": 9}, "did": {"_count": 30}, "allowed": {"_count": 1}, "shook": {"_count": 2}, "always": {"_count": 4}, "skimmed": {"_count": 1}, "dismounted": {"_count": 1}, "replied": {"_count": 1}, "pointed": {"_count": 6}, "stared": {"_count": 14}, "grinned": {"_count": 2}, "detested": {"_count": 1}, "felt": {"_count": 7}, "talked": {"_count": 1}, "finished": {"_count": 4}, "suddenly": {"_count": 1}, "entered": {"_count": 7}, "hung": {"_count": 1}, "headed": {"_count": 1}, "clumsily": {"_count": 1}, "filled": {"_count": 2}, "bounced": {"_count": 1}, "shrank": {"_count": 1}, "threw": {"_count": 3}, "swept": {"_count": 5}, "focused": {"_count": 1}, "wrenched": {"_count": 2}, "drew": {"_count": 4}, "shut": {"_count": 2}, "paused": {"_count": 1}, "closed": {"_count": 6}, "didnt": {"_count": 3}, "heard": {"_count": 5}, "removed": {"_count": 1}, "saw": {"_count": 5}, "put": {"_count": 6}, "ripped": {"_count": 3}, "turned": {"_count": 19}, "flung": {"_count": 2}, "sat": {"_count": 19}, "Ron": {"_count": 4}, "spotted": {"_count": 1}, "made": {"_count": 7}, "strained": {"_count": 1}, "stirred": {"_count": 1}, "stuck": {"_count": 1}, "almost": {"_count": 1}, "addressed": {"_count": 2}, "ever": {"_count": 1}, "became": {"_count": 1}, "fought": {"_count": 4}, "and": {"_count": 16}, "whooshed": {"_count": 1}, "moved": {"_count": 3}, "went": {"_count": 19}, "strode": {"_count": 6}, "recognized": {"_count": 1}, "soared": {"_count": 4}, "lifted": {"_count": 2}, "clambered": {"_count": 2}, "stumbled": {"_count": 2}, "wrote": {"_count": 1}, "gazed": {"_count": 2}, "clutched": {"_count": 2}, "pounded": {"_count": 2}, "fainted": {"_count": 1}, "might": {"_count": 2}, "knew": {"_count": 2}, "said": {"_count": 19}, "helped": {"_count": 5}, "Harry": {"_count": 4}, "hurried": {"_count": 3}, "waved": {"_count": 2}, "managed": {"_count": 1}, "jumped": {"_count": 2}, "sprang": {"_count": 1}, "pushed": {"_count": 4}, "hugged": {"_count": 1}, "snatched": {"_count": 1}, "or": {"_count": 1}, "scribbled": {"_count": 2}, "carried": {"_count": 4}, "hobbled": {"_count": 1}, "doesnt": {"_count": 1}, "would": {"_count": 2}, "surveyed": {"_count": 1}, "couldnt": {"_count": 2}, "wheeled": {"_count": 1}, "knocked": {"_count": 1}, "jogged": {"_count": 1}, "likes": {"_count": 1}, "swerved": {"_count": 1}, "slipped": {"_count": 2}, "set": {"_count": 1}, "shelled": {"_count": 1}, "started": {"_count": 4}, "neared": {"_count": 1}, "has": {"_count": 2}, "wanted": {"_count": 2}, "Banished": {"_count": 1}, "landed": {"_count": 2}, "lights": {"_count": 1}, "leapt": {"_count": 1}, "sped": {"_count": 2}, "disturbed": {"_count": 1}, "swam": {"_count": 1}, "continued": {"_count": 4}, "came": {"_count": 3}, "beckoned": {"_count": 2}, "peered": {"_count": 2}, "folded": {"_count": 1}, "listened": {"_count": 1}, "smiled": {"_count": 1}, "approached": {"_count": 10}, "raised": {"_count": 7}, "should": {"_count": 2}, "followed": {"_count": 1}, "scrambled": {"_count": 1}, "slammed": {"_count": 2}, "inflated": {"_count": 1}, "now": {"_count": 1}, "limped": {"_count": 2}, "hoisted": {"_count": 2}, "dared": {"_count": 2}, "shuffled": {"_count": 2}, "attempted": {"_count": 5}, "wondered": {"_count": 1}, "extracted": {"_count": 1}, "glanced": {"_count": 1}, "pressed": {"_count": 2}, "poked": {"_count": 1}, "thought": {"_count": 2}, "dressed": {"_count": 1}, "wove": {"_count": 1}, "placed": {"_count": 2}, "zoomed": {"_count": 2}, "sprinted": {"_count": 4}, "stepped": {"_count": 5}, "arrived": {"_count": 1}, "toweled": {"_count": 1}, "backed": {"_count": 3}, "gave": {"_count": 2}, "squinted": {"_count": 3}, "remembered": {"_count": 3}, "hitched": {"_count": 1}, "swayed": {"_count": 1}, "fed": {"_count": 1}, "rubbed": {"_count": 1}, "lumbered": {"_count": 1}, "cut": {"_count": 1}, "browsed": {"_count": 1}, "trudged": {"_count": 1}, "rapped": {"_count": 1}, "crawled": {"_count": 1}, "read": {"_count": 2}, "stretched": {"_count": 2}, "willed": {"_count": 1}, "brushed": {"_count": 1}, "launched": {"_count": 1}, "sank": {"_count": 1}, "paced": {"_count": 1}, "demonstrated": {"_count": 1}, "dwelled": {"_count": 1}, "needed": {"_count": 1}, "were": {"_count": 1}, "intended": {"_count": 1}, "inserted": {"_count": 1}, "lived": {"_count": 2}, "attempts": {"_count": 1}, "lobbed": {"_count": 1}, "staggered": {"_count": 1}, "tickled": {"_count": 1}, "slowed": {"_count": 1}, "massaged": {"_count": 1}, "fumbled": {"_count": 1}, "groped": {"_count": 1}, "smashed": {"_count": 1}, "swung": {"_count": 2}, "began": {"_count": 2}, "mopped": {"_count": 2}, "mounted": {"_count": 2}, "stowed": {"_count": 1}, "smirked": {"_count": 1}, "shares": {"_count": 1}, "wrestled": {"_count": 1}, "dived": {"_count": 2}, "marshaled": {"_count": 1}, "delved": {"_count": 1}, "observed": {"_count": 1}, "charmed": {"_count": 1}, "usually": {"_count": 2}, "appeared": {"_count": 2}, "searched": {"_count": 1}, "checked": {"_count": 1}, "darted": {"_count": 1}, "drained": {"_count": 1}, "can": {"_count": 1}, "discovered": {"_count": 1}, "dodged": {"_count": 1}, "tipped": {"_count": 1}, "moaned": {"_count": 1}, "kept": {"_count": 1}, "swiped": {"_count": 1}, "tore": {"_count": 1}, "rolled": {"_count": 2}, "hated": {"_count": 1}, "ascended": {"_count": 1}, "cuddled": {"_count": 1}, "wiped": {"_count": 1}, "considered": {"_count": 1}, "visited": {"_count": 1}, "glared": {"_count": 1}, "dragged": {"_count": 1}, "accepted": {"_count": 1}, "looks": {"_count": 1}, "drank": {"_count": 1}, "studied": {"_count": 1}, "Apparated": {"_count": 1}, "splattered": {"_count": 1}, "let": {"_count": 2}, "examined": {"_count": 2}, "replaced": {"_count": 1}, "swapped": {"_count": 1}, "repositioned": {"_count": 1}, "himself": {"_count": 1}, "washed": {"_count": 2}, "hit": {"_count": 1}, "glimpsed": {"_count": 1}, "returned": {"_count": 2}, "stripped": {"_count": 1}, "vanished": {"_count": 1}, "crouched": {"_count": 1}, "forced": {"_count": 2}, "knelt": {"_count": 1}, "dug": {"_count": 1}, "shifted": {"_count": 1}, "gulped": {"_count": 1}, "glided": {"_count": 1}, "released": {"_count": 1}, "dripped": {"_count": 1}, "relaxed": {"_count": 1}, "whispered": {"_count": 1}, "led": {"_count": 1}, "seized": {"_count": 1}, "stomped": {"_count": 1}, "prowled": {"_count": 1}, "failed": {"_count": 1}, "wandered": {"_count": 1}, "asked": {"_count": 1}, "rose": {"_count": 1}, "sent": {"_count": 1}, "toppled": {"_count": 1}}, "owl": {"_count": 1, "after": {"_count": 1}}, "if": {"_count": 107, "he": {"_count": 26}, "it": {"_count": 13}, "they": {"_count": 6}, "nothing": {"_count": 1}, "their": {"_count": 1}, "hed": {"_count": 3}, "she": {"_count": 5}, "Snape": {"_count": 1}, "to": {"_count": 4}, "someone": {"_count": 2}, "Norberts": {"_count": 1}, "hoping": {"_count": 3}, "Devils": {"_count": 1}, "dropping": {"_count": 1}, "Harry": {"_count": 2}, "a": {"_count": 2}, "you": {"_count": 1}, "there": {"_count": 2}, "were": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 2}, "theyd": {"_count": 1}, "somebody": {"_count": 1}, "Perkins": {"_count": 1}, "its": {"_count": 3}, "all": {"_count": 2}, "of": {"_count": 1}, "the": {"_count": 2}, "suspended": {"_count": 1}, "gagged": {"_count": 1}, "Id": {"_count": 1}, "examining": {"_count": 1}, "still": {"_count": 1}, "Tonks": {"_count": 1}, "punched": {"_count": 1}, "Hermione": {"_count": 1}, "something": {"_count": 1}, "this": {"_count": 1}, "in": {"_count": 2}, "from": {"_count": 1}, "caught": {"_count": 1}, "fearing": {"_count": 1}, "Petrified": {"_count": 1}}, "the": {"_count": 504, "tiny": {"_count": 1}, "envelope": {"_count": 1}, "night": {"_count": 1}, "cold": {"_count": 2}, "boy": {"_count": 2}, "twins": {"_count": 6}, "train": {"_count": 10}, "others": {"_count": 3}, "first": {"_count": 4}, "hat": {"_count": 1}, "ghosts": {"_count": 1}, "Draught": {"_count": 1}, "Potions": {"_count": 1}, "High": {"_count": 1}, "Nimbus": {"_count": 1}, "broomstick": {"_count": 1}, "Bloody": {"_count": 1}, "Weasleys": {"_count": 3}, "ceiling": {"_count": 2}, "luminous": {"_count": 1}, "LegLocker": {"_count": 1}, "teams": {"_count": 2}, "Christmas": {"_count": 1}, "two": {"_count": 3}, "countryside": {"_count": 1}, "door": {"_count": 9}, "dish": {"_count": 1}, "rattling": {"_count": 1}, "full": {"_count": 1}, "landing": {"_count": 1}, "fire": {"_count": 1}, "hero": {"_count": 2}, "massive": {"_count": 1}, "car": {"_count": 4}, "sun": {"_count": 2}, "sky": {"_count": 3}, "portrait": {"_count": 2}, "wand": {"_count": 2}, "bell": {"_count": 4}, "chandelier": {"_count": 1}, "whole": {"_count": 2}, "gamekeepers": {"_count": 1}, "orchestra": {"_count": 1}, "people": {"_count": 2}, "three": {"_count": 6}, "Gryffindor": {"_count": 1}, "footsteps": {"_count": 1}, "potion": {"_count": 2}, "crowd": {"_count": 9}, "teachers": {"_count": 2}, "wall": {"_count": 5}, "old": {"_count": 1}, "snow": {"_count": 2}, "skin": {"_count": 1}, "Gryffindors": {"_count": 1}, "blurred": {"_count": 1}, "Ravenclaw": {"_count": 1}, "spider": {"_count": 4}, "King": {"_count": 1}, "grave": {"_count": 1}, "Chamber": {"_count": 1}, "other": {"_count": 4}, "music": {"_count": 1}, "blood": {"_count": 2}, "basilisks": {"_count": 1}, "basilisk": {"_count": 2}, "elf": {"_count": 2}, "last": {"_count": 1}, "Dursleys": {"_count": 2}, "archway": {"_count": 1}, "books": {"_count": 1}, "required": {"_count": 1}, "Sneakoscope": {"_count": 1}, "witch": {"_count": 1}, "greatest": {"_count": 1}, "lukewarm": {"_count": 1}, "little": {"_count": 4}, "knight": {"_count": 1}, "class": {"_count": 8}, "hindquarters": {"_count": 1}, "smooth": {"_count": 1}, "four": {"_count": 1}, "boggart": {"_count": 1}, "beans": {"_count": 1}, "next": {"_count": 1}, "gale": {"_count": 1}, "team": {"_count": 1}, "rain": {"_count": 2}, "SecretKeeper": {"_count": 1}, "painting": {"_count": 1}, "group": {"_count": 2}, "mud": {"_count": 1}, "best": {"_count": 2}, "Slytherin": {"_count": 1}, "Firebolt": {"_count": 1}, "one": {"_count": 6}, "wands": {"_count": 1}, "smallest": {"_count": 1}, "man": {"_count": 4}, "nearest": {"_count": 1}, "moon": {"_count": 2}, "hippogriff": {"_count": 1}, "top": {"_count": 1}, "enormous": {"_count": 3}, "frustrated": {"_count": 1}, "legs": {"_count": 1}, "small": {"_count": 1}, "boarded": {"_count": 1}, "boys": {"_count": 3}, "Apparition": {"_count": 1}, "Ministry": {"_count": 4}, "afternoon": {"_count": 2}, "veela": {"_count": 2}, "shamrock": {"_count": 1}, "Quaffle": {"_count": 2}, "pair": {"_count": 1}, "Irish": {"_count": 2}, "Top": {"_count": 1}, "marching": {"_count": 1}, "dress": {"_count": 1}, "Sorting": {"_count": 1}, "empty": {"_count": 1}, "remains": {"_count": 1}, "Hogwarts": {"_count": 2}, "ferret": {"_count": 2}, "Unforgivable": {"_count": 1}, "carriage": {"_count": 1}, "veelagirl": {"_count": 1}, "girl": {"_count": 1}, "lesson": {"_count": 1}, "snide": {"_count": 1}, "type": {"_count": 1}, "normal": {"_count": 1}, "whistle": {"_count": 1}, "wind": {"_count": 2}, "crowds": {"_count": 1}, "Horntail": {"_count": 1}, "Great": {"_count": 2}, "squealing": {"_count": 1}, "head": {"_count": 1}, "thirdyear": {"_count": 1}, "ball": {"_count": 1}, "Durmstrang": {"_count": 1}, "champions": {"_count": 1}, "Weird": {"_count": 1}, "dot": {"_count": 1}, "previous": {"_count": 5}, "kitchen": {"_count": 1}, "owls": {"_count": 1}, "Beauxbatons": {"_count": 1}, "scar": {"_count": 1}, "doors": {"_count": 1}, "ones": {"_count": 1}, "dementors": {"_count": 1}, "woman": {"_count": 2}, "safest": {"_count": 1}, "fifth": {"_count": 1}, "hundreds": {"_count": 2}, "windows": {"_count": 1}, "eyes": {"_count": 1}, "weakest": {"_count": 1}, "Death": {"_count": 4}, "curse": {"_count": 1}, "light": {"_count": 3}, "spells": {"_count": 2}, "phoenix": {"_count": 1}, "result": {"_count": 1}, "students": {"_count": 2}, "Spanish": {"_count": 1}, "newsreader": {"_count": 1}, "pain": {"_count": 3}, "surrounding": {"_count": 1}, "dementor": {"_count": 1}, "stag": {"_count": 1}, "owl": {"_count": 2}, "most": {"_count": 1}, "lock": {"_count": 3}, "neat": {"_count": 1}, "jeans": {"_count": 1}, "front": {"_count": 3}, "glass": {"_count": 1}, "prospect": {"_count": 1}, "female": {"_count": 1}, "pavement": {"_count": 1}, "telephone": {"_count": 1}, "lift": {"_count": 7}, "heavy": {"_count": 1}, "end": {"_count": 1}, "pupil": {"_count": 1}, "corpse": {"_count": 1}, "compartment": {"_count": 2}, "wheels": {"_count": 1}, "muttering": {"_count": 1}, "hem": {"_count": 1}, "twigs": {"_count": 1}, "bowtruckle": {"_count": 1}, "Blibbering": {"_count": 2}, "rest": {"_count": 2}, "mountainous": {"_count": 1}, "large": {"_count": 1}, "second": {"_count": 2}, "girls": {"_count": 1}, "day": {"_count": 1}, "hammering": {"_count": 1}, "Come": {"_count": 1}, "Room": {"_count": 2}, "feeble": {"_count": 1}, "Fat": {"_count": 2}, "snake": {"_count": 1}, "dummy": {"_count": 1}, "only": {"_count": 3}, "impact": {"_count": 1}, "Underground": {"_count": 1}, "Healer": {"_count": 1}, "exams": {"_count": 1}, "Knight": {"_count": 1}, "memory": {"_count": 1}, "librarian": {"_count": 1}, "final": {"_count": 1}, "post": {"_count": 1}, "holidays": {"_count": 1}, "centaurs": {"_count": 2}, "Quidditch": {"_count": 1}, "O": {"_count": 1}, "hand": {"_count": 1}, "Dark": {"_count": 1}, "shelves": {"_count": 2}, "babyheaded": {"_count": 1}, "brain": {"_count": 1}, "statue": {"_count": 1}, "shaggy": {"_count": 1}, "seventh": {"_count": 2}, "Prime": {"_count": 1}, "flames": {"_count": 2}, "silence": {"_count": 1}, "loaf": {"_count": 1}, "cloak": {"_count": 2}, "golden": {"_count": 1}, "engine": {"_count": 1}, "great": {"_count": 1}, "arts": {"_count": 1}, "printed": {"_count": 1}, "ideal": {"_count": 1}, "instructions": {"_count": 1}, "ring": {"_count": 1}, "Captain": {"_count": 1}, "hallway": {"_count": 1}, "newborn": {"_count": 1}, "sound": {"_count": 1}, "average": {"_count": 1}, "ground": {"_count": 1}, "Slughorn": {"_count": 1}, "smell": {"_count": 1}, "ghost": {"_count": 1}, "score": {"_count": 1}, "scene": {"_count": 2}, "houseelf": {"_count": 1}, "cup": {"_count": 1}, "thought": {"_count": 1}, "person": {"_count": 1}, "gates": {"_count": 1}, "tips": {"_count": 1}, "ghostly": {"_count": 1}, "chain": {"_count": 1}, "boat": {"_count": 1}, "innocent": {"_count": 1}, "brutalfaced": {"_count": 1}, "spell": {"_count": 1}, "huge": {"_count": 1}, "brother": {"_count": 1}, "yelping": {"_count": 1}, "razorsharp": {"_count": 1}, "locket": {"_count": 1}, "hospital": {"_count": 1}, "barman": {"_count": 1}, "buzz": {"_count": 1}, "branches": {"_count": 1}, "hissing": {"_count": 1}, "prisoner": {"_count": 1}, "son": {"_count": 1}, "Order": {"_count": 2}, "motorbike": {"_count": 1}, "tears": {"_count": 1}, "hairbrush": {"_count": 1}, "true": {"_count": 1}, "height": {"_count": 1}, "headquarters": {"_count": 1}, "bedroom": {"_count": 1}, "arrival": {"_count": 1}, "copy": {"_count": 1}, "canvas": {"_count": 1}, "waiters": {"_count": 1}, "men": {"_count": 1}, "Cloak": {"_count": 1}, "original": {"_count": 1}, "dusty": {"_count": 1}, "sick": {"_count": 1}, "Mudbloods": {"_count": 1}, "young": {"_count": 1}, "same": {"_count": 1}, "firewhisky": {"_count": 1}, "paralyzing": {"_count": 1}, "village": {"_count": 1}, "pub": {"_count": 1}, "eldest": {"_count": 1}, "wizard": {"_count": 1}, "Muggleboms": {"_count": 1}, "figures": {"_count": 1}, "story": {"_count": 1}, "opening": {"_count": 1}, "wizards": {"_count": 1}, "portraits": {"_count": 1}, "broken": {"_count": 1}, "relentless": {"_count": 1}, "Chief": {"_count": 1}, "breath": {"_count": 1}, "prisoners": {"_count": 2}, "latter": {"_count": 3}, "Snatchers": {"_count": 1}, "goblin": {"_count": 1}, "reflection": {"_count": 1}, "Deathstick": {"_count": 1}, "waves": {"_count": 1}, "goblins": {"_count": 1}, "clanking": {"_count": 1}, "entrance": {"_count": 1}, "wings": {"_count": 1}, "Hogs": {"_count": 1}, "passage": {"_count": 1}, "Ravenclaws": {"_count": 1}, "Malfoys": {"_count": 1}, "castle": {"_count": 1}, "creatures": {"_count": 1}, "serpent": {"_count": 1}, "tapestry": {"_count": 1}, "giants": {"_count": 1}, "sounds": {"_count": 1}, "giant": {"_count": 1}, "snakes": {"_count": 1}, "Chudley": {"_count": 1}, "survivors": {"_count": 1}, "screams": {"_count": 1}, "morning": {"_count": 1}, "family": {"_count": 1}}, "far": {"_count": 51, "apart": {"_count": 1}, "as": {"_count": 41}, "away": {"_count": 3}, "ahead": {"_count": 1}, "from": {"_count": 2}, "and": {"_count": 1}, "I": {"_count": 1}, "removed": {"_count": 1}}, "Kent": {"_count": 1, "Yorkshire": {"_count": 1}}, "casually": {"_count": 3, "as": {"_count": 3}}, "they": {"_count": 586, "went": {"_count": 20}, "looked": {"_count": 5}, "both": {"_count": 3}, "watched": {"_count": 9}, "always": {"_count": 1}, "walked": {"_count": 37}, "climbed": {"_count": 16}, "passed": {"_count": 39}, "hurtled": {"_count": 4}, "stepped": {"_count": 8}, "were": {"_count": 22}, "sailed": {"_count": 1}, "could": {"_count": 21}, "set": {"_count": 17}, "told": {"_count": 1}, "marched": {"_count": 4}, "crept": {"_count": 1}, "pushed": {"_count": 4}, "reached": {"_count": 18}, "trudged": {"_count": 2}, "hurried": {"_count": 10}, "hung": {"_count": 1}, "only": {"_count": 1}, "heaved": {"_count": 1}, "insulted": {"_count": 1}, "joined": {"_count": 7}, "slipped": {"_count": 2}, "approached": {"_count": 16}, "had": {"_count": 23}, "sped": {"_count": 3}, "moved": {"_count": 7}, "crossed": {"_count": 4}, "all": {"_count": 14}, "didnt": {"_count": 1}, "wandered": {"_count": 1}, "left": {"_count": 20}, "flew": {"_count": 4}, "began": {"_count": 3}, "entered": {"_count": 20}, "backtracked": {"_count": 1}, "have": {"_count": 1}, "fought": {"_count": 1}, "half": {"_count": 1}, "scanned": {"_count": 2}, "edged": {"_count": 1}, "turned": {"_count": 6}, "pored": {"_count": 1}, "took": {"_count": 5}, "strode": {"_count": 5}, "stood": {"_count": 5}, "squeezed": {"_count": 1}, "got": {"_count": 3}, "dug": {"_count": 1}, "listened": {"_count": 1}, "sat": {"_count": 10}, "werent": {"_count": 1}, "made": {"_count": 14}, "stripped": {"_count": 1}, "headed": {"_count": 6}, "prepared": {"_count": 2}, "rounded": {"_count": 2}, "leaned": {"_count": 1}, "changed": {"_count": 3}, "ate": {"_count": 1}, "descended": {"_count": 2}, "glimpsed": {"_count": 1}, "saw": {"_count": 2}, "rose": {"_count": 1}, "possibly": {"_count": 1}, "and": {"_count": 1}, "rested": {"_count": 2}, "positioned": {"_count": 1}, "swung": {"_count": 1}, "shook": {"_count": 1}, "retraced": {"_count": 1}, "did": {"_count": 1}, "relived": {"_count": 1}, "inched": {"_count": 1}, "filed": {"_count": 1}, "flickered": {"_count": 1}, "emerged": {"_count": 3}, "felt": {"_count": 2}, "drew": {"_count": 4}, "attempted": {"_count": 1}, "are": {"_count": 2}, "came": {"_count": 3}, "sniggered": {"_count": 1}, "finally": {"_count": 2}, "waltzed": {"_count": 1}, "struggled": {"_count": 2}, "fell": {"_count": 3}, "can": {"_count": 1}, "burst": {"_count": 2}, "swam": {"_count": 1}, "returned": {"_count": 1}, "started": {"_count": 1}, "circled": {"_count": 2}, "soared": {"_count": 2}, "really": {"_count": 1}, "dont": {"_count": 2}, "flapped": {"_count": 1}, "darted": {"_count": 1}, "streaked": {"_count": 1}, "sucked": {"_count": 1}, "mounted": {"_count": 2}, "traveled": {"_count": 1}, "put": {"_count": 3}, "gathered": {"_count": 1}, "trailed": {"_count": 1}, "arrived": {"_count": 1}, "followed": {"_count": 4}, "splashed": {"_count": 1}, "wheeled": {"_count": 1}, "dried": {"_count": 1}, "usually": {"_count": 1}, "gave": {"_count": 1}, "heard": {"_count": 2}, "closed": {"_count": 1}, "queued": {"_count": 2}, "ran": {"_count": 4}, "dared": {"_count": 2}, "played": {"_count": 1}, "spent": {"_count": 1}, "ascended": {"_count": 1}, "poked": {"_count": 1}, "hesitated": {"_count": 1}, "regained": {"_count": 1}, "hit": {"_count": 1}, "thought": {"_count": 1}, "jumped": {"_count": 1}, "settled": {"_count": 2}, "spoke": {"_count": 2}, "landed": {"_count": 2}, "call": {"_count": 1}, "practiced": {"_count": 1}, "yielded": {"_count": 1}, "grabbed": {"_count": 1}, "knew": {"_count": 2}, "assembled": {"_count": 1}, "neared": {"_count": 1}, "lifted": {"_count": 1}, "feed": {"_count": 1}, "scattered": {"_count": 1}, "laid": {"_count": 1}, "horrified": {"_count": 1}, "dashed": {"_count": 1}, "disappear": {"_count": 1}, "clanked": {"_count": 1}, "shut": {"_count": 1}, "devoured": {"_count": 1}, "propped": {"_count": 1}, "sidled": {"_count": 1}, "twisted": {"_count": 1}, "broke": {"_count": 1}, "opened": {"_count": 1}, "continue": {"_count": 1}, "searched": {"_count": 1}, "swerved": {"_count": 1}, "dabbed": {"_count": 1}, "swigged": {"_count": 1}, "live": {"_count": 1}, "staggered": {"_count": 1}, "faced": {"_count": 1}, "say": {"_count": 1}, "wove": {"_count": 1}, "thundered": {"_count": 1}}, "though": {"_count": 1025, "it": {"_count": 85}, "hoping": {"_count": 9}, "she": {"_count": 94}, "Dudley": {"_count": 1}, "hed": {"_count": 21}, "he": {"_count": 275}, "shed": {"_count": 3}, "theyd": {"_count": 3}, "this": {"_count": 18}, "a": {"_count": 28}, "the": {"_count": 44}, "any": {"_count": 1}, "Harry": {"_count": 11}, "his": {"_count": 26}, "in": {"_count": 6}, "all": {"_count": 3}, "they": {"_count": 59}, "someone": {"_count": 14}, "an": {"_count": 14}, "ice": {"_count": 1}, "life": {"_count": 1}, "Uncle": {"_count": 3}, "waiting": {"_count": 3}, "cold": {"_count": 2}, "Christmas": {"_count": 2}, "transfixed": {"_count": 1}, "struck": {"_count": 1}, "I": {"_count": 5}, "of": {"_count": 4}, "continuing": {"_count": 1}, "we": {"_count": 3}, "determined": {"_count": 5}, "to": {"_count": 13}, "from": {"_count": 5}, "dead": {"_count": 1}, "scared": {"_count": 2}, "Riddle": {"_count": 1}, "caught": {"_count": 1}, "carved": {"_count": 2}, "taking": {"_count": 1}, "resigned": {"_count": 1}, "her": {"_count": 1}, "somebody": {"_count": 13}, "Ron": {"_count": 3}, "Hagrid": {"_count": 1}, "ten": {"_count": 1}, "frightened": {"_count": 6}, "daring": {"_count": 3}, "words": {"_count": 1}, "enjoying": {"_count": 1}, "begging": {"_count": 1}, "trying": {"_count": 8}, "night": {"_count": 1}, "freezing": {"_count": 1}, "Harrys": {"_count": 2}, "following": {"_count": 2}, "expecting": {"_count": 9}, "on": {"_count": 2}, "Professor": {"_count": 2}, "Malfoy": {"_count": 4}, "there": {"_count": 10}, "each": {"_count": 4}, "theyve": {"_count": 1}, "looking": {"_count": 3}, "desperate": {"_count": 1}, "Black": {"_count": 2}, "rats": {"_count": 1}, "hypnotized": {"_count": 2}, "praying": {"_count": 2}, "worried": {"_count": 3}, "itching": {"_count": 1}, "Mrs": {"_count": 1}, "biting": {"_count": 1}, "afraid": {"_count": 1}, "Mr": {"_count": 3}, "sure": {"_count": 2}, "small": {"_count": 1}, "blinded": {"_count": 1}, "at": {"_count": 1}, "buckets": {"_count": 1}, "lost": {"_count": 1}, "nobody": {"_count": 1}, "hes": {"_count": 1}, "fascinated": {"_count": 1}, "unsure": {"_count": 2}, "what": {"_count": 2}, "everything": {"_count": 1}, "Dobby": {"_count": 1}, "suddenly": {"_count": 1}, "keen": {"_count": 1}, "something": {"_count": 8}, "angry": {"_count": 1}, "shutters": {"_count": 1}, "every": {"_count": 3}, "its": {"_count": 2}, "Dumbledore": {"_count": 4}, "speaking": {"_count": 2}, "if": {"_count": 1}, "Fleur": {"_count": 1}, "Wormtail": {"_count": 1}, "large": {"_count": 1}, "recalling": {"_count": 1}, "nothing": {"_count": 5}, "about": {"_count": 3}, "seeing": {"_count": 1}, "no": {"_count": 2}, "by": {"_count": 4}, "Dumbledores": {"_count": 1}, "those": {"_count": 1}, "some": {"_count": 1}, "testing": {"_count": 1}, "Moody": {"_count": 1}, "that": {"_count": 2}, "youre": {"_count": 1}, "voting": {"_count": 1}, "readying": {"_count": 1}, "you": {"_count": 6}, "swarming": {"_count": 1}, "doxies": {"_count": 1}, "inviting": {"_count": 1}, "making": {"_count": 1}, "checking": {"_count": 2}, "asking": {"_count": 2}, "scalded": {"_count": 1}, "detention": {"_count": 1}, "hit": {"_count": 3}, "fearful": {"_count": 1}, "traced": {"_count": 1}, "wishing": {"_count": 1}, "unable": {"_count": 2}, "boiling": {"_count": 1}, "seriously": {"_count": 1}, "Montagues": {"_count": 1}, "horrified": {"_count": 1}, "counting": {"_count": 1}, "dancing": {"_count": 1}, "poison": {"_count": 1}, "youve": {"_count": 2}, "poised": {"_count": 1}, "examining": {"_count": 1}, "reading": {"_count": 1}, "doing": {"_count": 1}, "halfway": {"_count": 1}, "anything": {"_count": 2}, "through": {"_count": 1}, "bound": {"_count": 1}, "anxious": {"_count": 1}, "freshly": {"_count": 1}, "hopeful": {"_count": 1}, "Hogwarts": {"_count": 1}, "rather": {"_count": 1}, "brandishing": {"_count": 1}, "Ill": {"_count": 1}, "terrified": {"_count": 1}, "anyone": {"_count": 2}, "burned": {"_count": 1}, "Snape": {"_count": 1}, "Kreacher": {"_count": 1}, "beating": {"_count": 1}, "theyre": {"_count": 2}, "quite": {"_count": 1}, "deciding": {"_count": 1}, "glued": {"_count": 1}, "Gryffindor": {"_count": 1}, "both": {"_count": 1}, "appraising": {"_count": 1}, "toasting": {"_count": 1}, "explaining": {"_count": 1}, "Voldemort": {"_count": 1}, "with": {"_count": 1}, "invisible": {"_count": 1}, "people": {"_count": 1}, "welcoming": {"_count": 1}, "coming": {"_count": 1}, "steeling": {"_count": 1}, "reproaching": {"_count": 1}, "were": {"_count": 1}, "repetition": {"_count": 1}, "hiding": {"_count": 1}, "ready": {"_count": 1}, "bracing": {"_count": 1}, "great": {"_count": 1}, "shes": {"_count": 1}, "weightless": {"_count": 1}, "Flitwick": {"_count": 1}, "wand": {"_count": 1}}, "still": {"_count": 6, "as": {"_count": 4}, "and": {"_count": 1}, "keeping": {"_count": 1}}, "a": {"_count": 284, "statue": {"_count": 2}, "cat": {"_count": 1}, "woman": {"_count": 1}, "normal": {"_count": 3}, "motorcycle": {"_count": 1}, "bedroom": {"_count": 1}, "thankyou": {"_count": 1}, "friend": {"_count": 3}, "matter": {"_count": 6}, "joke": {"_count": 2}, "board": {"_count": 4}, "Muggle": {"_count": 2}, "point": {"_count": 1}, "jeering": {"_count": 1}, "python": {"_count": 1}, "battering": {"_count": 1}, "fresh": {"_count": 3}, "sort": {"_count": 1}, "portly": {"_count": 2}, "hunting": {"_count": 1}, "secret": {"_count": 1}, "long": {"_count": 1}, "thick": {"_count": 1}, "prefect": {"_count": 2}, "blackboard": {"_count": 1}, "shadow": {"_count": 3}, "boy": {"_count": 3}, "ghost": {"_count": 5}, "peacocks": {"_count": 1}, "school": {"_count": 2}, "curse": {"_count": 1}, "bear": {"_count": 1}, "young": {"_count": 2}, "bucket": {"_count": 1}, "cockroach": {"_count": 1}, "real": {"_count": 4}, "shock": {"_count": 2}, "traitor": {"_count": 1}, "magnificent": {"_count": 1}, "pig": {"_count": 1}, "shield": {"_count": 3}, "teacher": {"_count": 4}, "lasting": {"_count": 1}, "bullet": {"_count": 1}, "huge": {"_count": 1}, "Howler": {"_count": 1}, "pillow": {"_count": 1}, "relief": {"_count": 2}, "pet": {"_count": 2}, "rat": {"_count": 1}, "dog": {"_count": 3}, "personal": {"_count": 2}, "unicorn": {"_count": 1}, "sudden": {"_count": 1}, "respectable": {"_count": 1}, "flash": {"_count": 1}, "gnome": {"_count": 1}, "chill": {"_count": 1}, "seamless": {"_count": 1}, "swarm": {"_count": 1}, "gigantic": {"_count": 4}, "second": {"_count": 4}, "coin": {"_count": 1}, "friendly": {"_count": 1}, "punishment": {"_count": 1}, "nosebleed": {"_count": 1}, "record": {"_count": 1}, "good": {"_count": 2}, "Beater": {"_count": 1}, "backward": {"_count": 1}, "storm": {"_count": 1}, "trick": {"_count": 1}, "fourth": {"_count": 1}, "highly": {"_count": 1}, "Sneakoscope": {"_count": 1}, "free": {"_count": 1}, "representative": {"_count": 1}, "dozen": {"_count": 1}, "crisp": {"_count": 1}, "dragons": {"_count": 1}, "partner": {"_count": 1}, "girl": {"_count": 2}, "last": {"_count": 2}, "bass": {"_count": 1}, "career": {"_count": 2}, "sign": {"_count": 2}, "gold": {"_count": 2}, "Triwizard": {"_count": 1}, "fine": {"_count": 1}, "snakes": {"_count": 1}, "child": {"_count": 2}, "jet": {"_count": 2}, "smoky": {"_count": 1}, "kindly": {"_count": 1}, "mark": {"_count": 1}, "few": {"_count": 2}, "sultry": {"_count": 1}, "squat": {"_count": 1}, "hopeful": {"_count": 1}, "son": {"_count": 4}, "mail": {"_count": 1}, "car": {"_count": 1}, "true": {"_count": 1}, "preliminary": {"_count": 1}, "reminder": {"_count": 4}, "whiff": {"_count": 1}, "pair": {"_count": 3}, "mammal": {"_count": 1}, "temporary": {"_count": 2}, "kind": {"_count": 1}, "regular": {"_count": 2}, "witch": {"_count": 1}, "lookout": {"_count": 2}, "slight": {"_count": 1}, "tall": {"_count": 1}, "potted": {"_count": 1}, "fount": {"_count": 1}, "mad": {"_count": 1}, "corner": {"_count": 1}, "scrawny": {"_count": 1}, "betrayal": {"_count": 1}, "silvertailed": {"_count": 1}, "church": {"_count": 2}, "foot": {"_count": 1}, "bad": {"_count": 3}, "lightbulb": {"_count": 1}, "great": {"_count": 4}, "warning": {"_count": 1}, "gang": {"_count": 1}, "as": {"_count": 1}, "baby": {"_count": 2}, "hundred": {"_count": 1}, "brain": {"_count": 1}, "spell": {"_count": 1}, "dark": {"_count": 1}, "means": {"_count": 1}, "mixture": {"_count": 1}, "being": {"_count": 2}, "humans": {"_count": 2}, "servant": {"_count": 1}, "surrogate": {"_count": 1}, "monument": {"_count": 2}, "scratch": {"_count": 1}, "member": {"_count": 1}, "top": {"_count": 1}, "leader": {"_count": 1}, "spy": {"_count": 1}, "Puking": {"_count": 1}, "Death": {"_count": 3}, "grandson": {"_count": 1}, "violent": {"_count": 1}, "dangerous": {"_count": 1}, "prize": {"_count": 1}, "forgetmenot": {"_count": 1}, "Mugglelover": {"_count": 1}, "new": {"_count": 1}, "textbook": {"_count": 1}, "feather": {"_count": 1}, "twelveyearold": {"_count": 1}, "moment": {"_count": 1}, "small": {"_count": 1}, "clock": {"_count": 1}, "useful": {"_count": 1}, "lad": {"_count": 1}, "weapon": {"_count": 1}, "safeguard": {"_count": 1}, "Horcrux": {"_count": 1}, "hearty": {"_count": 1}, "hiding": {"_count": 1}, "waxwork": {"_count": 1}, "talisman": {"_count": 1}, "shower": {"_count": 1}, "wedding": {"_count": 1}, "brother": {"_count": 1}, "most": {"_count": 1}, "loud": {"_count": 2}, "toy": {"_count": 1}, "streak": {"_count": 1}, "number": {"_count": 1}, "token": {"_count": 1}, "sheet": {"_count": 1}, "bribe": {"_count": 1}, "slimy": {"_count": 1}, "chickens": {"_count": 1}, "Muggleborn": {"_count": 1}, "tragic": {"_count": 1}, "minuscule": {"_count": 1}, "hiss": {"_count": 1}, "rather": {"_count": 1}, "Resurrection": {"_count": 1}, "confession": {"_count": 1}, "base": {"_count": 1}, "goat": {"_count": 1}, "serious": {"_count": 1}, "teenager": {"_count": 1}, "knife": {"_count": 1}, "different": {"_count": 1}, "wall": {"_count": 1}, "herd": {"_count": 1}, "conductors": {"_count": 1}, "very": {"_count": 1}, "Killing": {"_count": 1}}, "quiver": {"_count": 1, "when": {"_count": 1}}, "Harry": {"_count": 209, "Potter": {"_count": 2}, "was": {"_count": 9}, "had": {"_count": 22}, "and": {"_count": 18}, "brought": {"_count": 1}, "quickly": {"_count": 1}, "joined": {"_count": 1}, "dodged": {"_count": 1}, "scrambled": {"_count": 1}, "streaked": {"_count": 1}, "sped": {"_count": 1}, "because": {"_count": 2}, "began": {"_count": 2}, "": {"_count": 3}, "climbed": {"_count": 3}, "talked": {"_count": 1}, "jogged": {"_count": 1}, "could": {"_count": 6}, "with": {"_count": 1}, "watched": {"_count": 4}, "handed": {"_count": 1}, "helped": {"_count": 1}, "Ron": {"_count": 12}, "found": {"_count": 1}, "clamped": {"_count": 1}, "sat": {"_count": 2}, "saw": {"_count": 2}, "felt": {"_count": 1}, "let": {"_count": 1}, "swerved": {"_count": 2}, "jumped": {"_count": 2}, "opened": {"_count": 1}, "might": {"_count": 1}, "gazed": {"_count": 1}, "bid": {"_count": 1}, "knew": {"_count": 4}, "told": {"_count": 1}, "approached": {"_count": 4}, "slammed": {"_count": 2}, "remembered": {"_count": 3}, "pointed": {"_count": 2}, "snatched": {"_count": 1}, "crept": {"_count": 2}, "picked": {"_count": 1}, "put": {"_count": 2}, "flashed": {"_count": 1}, "ran": {"_count": 3}, "sprinted": {"_count": 2}, "reached": {"_count": 2}, "Dumbledore": {"_count": 1}, "looked": {"_count": 2}, "stroked": {"_count": 1}, "passed": {"_count": 2}, "crossed": {"_count": 1}, "would": {"_count": 2}, "clambered": {"_count": 1}, "spat": {"_count": 1}, "closed": {"_count": 2}, "pushed": {"_count": 1}, "bent": {"_count": 1}, "sank": {"_count": 2}, "stepped": {"_count": 1}, "leapt": {"_count": 2}, "scribbled": {"_count": 1}, "reports": {"_count": 1}, "kept": {"_count": 1}, "stared": {"_count": 1}, "hurtled": {"_count": 1}, "set": {"_count": 1}, "inserted": {"_count": 1}, "replaced": {"_count": 1}, "yelled": {"_count": 1}, "stood": {"_count": 1}, "proceeded": {"_count": 1}, "Ernie": {"_count": 1}, "unrolled": {"_count": 2}, "continued": {"_count": 1}, "pulled": {"_count": 2}, "hurried": {"_count": 1}, "headed": {"_count": 1}, "swung": {"_count": 1}, "came": {"_count": 1}, "lowered": {"_count": 1}, "has": {"_count": 1}, "entered": {"_count": 1}, "wrenched": {"_count": 1}, "spoke": {"_count": 1}, "led": {"_count": 2}, "coughed": {"_count": 1}, "still": {"_count": 1}, "moved": {"_count": 2}, "wiped": {"_count": 1}, "digested": {"_count": 1}, "took": {"_count": 1}, "ducked": {"_count": 1}, "says": {"_count": 1}, "tried": {"_count": 1}, "descended": {"_count": 1}, "at": {"_count": 1}, "burned": {"_count": 1}, "thrust": {"_count": 1}, "raised": {"_count": 1}, "skirted": {"_count": 1}, "grasped": {"_count": 1}, "reeled": {"_count": 1}, "made": {"_count": 1}, "whose": {"_count": 1}}, "important": {"_count": 1, "as": {"_count": 1}}, "this": {"_count": 13, "": {"_count": 2}, "long": {"_count": 1}, "is": {"_count": 1}, "house": {"_count": 1}, "boy": {"_count": 1}, "really": {"_count": 1}, "woman": {"_count": 1}, "nor": {"_count": 1}, "should": {"_count": 1}, "Cornelius": {"_count": 1}, "has": {"_count": 1}, "satsuma": {"_count": 1}}, "tall": {"_count": 8, "as": {"_count": 8}}, "wide": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "we": {"_count": 34, "was": {"_count": 1}, "all": {"_count": 2}, "were": {"_count": 1}, "havent": {"_count": 1}, "could": {"_count": 2}, "do": {"_count": 3}, "took": {"_count": 1}, "can": {"_count": 4}, "eat": {"_count": 1}, "are": {"_count": 4}, "know": {"_count": 4}, "got": {"_count": 2}, "cant": {"_count": 1}, "speak": {"_count": 2}, "have": {"_count": 1}, "must": {"_count": 1}, "surely": {"_count": 1}, "go": {"_count": 1}, "both": {"_count": 1}}, "Dumbledore": {"_count": 47, "stepped": {"_count": 1}, "sidled": {"_count": 1}, "settled": {"_count": 1}, "brushed": {"_count": 1}, "has": {"_count": 2}, "watched": {"_count": 1}, "got": {"_count": 2}, "placed": {"_count": 1}, "disappeared": {"_count": 1}, "had": {"_count": 3}, "says": {"_count": 1}, "sat": {"_count": 1}, "told": {"_count": 1}, "appeared": {"_count": 2}, "s": {"_count": 4}, "turned": {"_count": 1}, "whipped": {"_count": 1}, "advanced": {"_count": 1}, "picked": {"_count": 1}, "surveyed": {"_count": 1}, "passed": {"_count": 1}, "I": {"_count": 1}, "spoke": {"_count": 1}, "lit": {"_count": 1}, "poured": {"_count": 1}, "joined": {"_count": 1}, "raised": {"_count": 2}, "emptied": {"_count": 1}, "continued": {"_count": 1}, "lowered": {"_count": 1}, "began": {"_count": 1}, "led": {"_count": 1}, "slid": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}, "walked": {"_count": 1}, "strode": {"_count": 1}}, "well": {"_count": 105, "go": {"_count": 2}, "get": {"_count": 2}, "as": {"_count": 23}, "": {"_count": 36}, "so": {"_count": 1}, "be": {"_count": 4}, "its": {"_count": 1}, "close": {"_count": 1}, "tell": {"_count": 1}, "if": {"_count": 1}, "do": {"_count": 2}, "Weasley": {"_count": 1}, "she": {"_count": 1}, "sorry": {"_count": 1}, "how": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 1}, "not": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "have": {"_count": 6}, "hes": {"_count": 1}, "induct": {"_count": 1}, "clear": {"_count": 1}, "isnt": {"_count": 1}, "in": {"_count": 1}, "Potter": {"_count": 1}, "take": {"_count": 2}, "nourished": {"_count": 1}, "worth": {"_count": 1}, "He": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}, "thank": {"_count": 1}}, "Dudley": {"_count": 3, "was": {"_count": 2}, "with": {"_count": 1}}, "long": {"_count": 58, "as": {"_count": 56}, "experience": {"_count": 1}, "and": {"_count": 1}}, "there": {"_count": 7, "wasnt": {"_count": 1}, "Ern": {"_count": 1}, "are": {"_count": 2}, "was": {"_count": 1}, "hasnt": {"_count": 1}, "can": {"_count": 1}}, "fast": {"_count": 35, "as": {"_count": 35}}, "possible": {"_count": 76, "in": {"_count": 2}, "out": {"_count": 1}, "they": {"_count": 3}, "": {"_count": 24}, "between": {"_count": 1}, "to": {"_count": 4}, "toward": {"_count": 3}, "from": {"_count": 4}, "she": {"_count": 1}, "the": {"_count": 2}, "wiping": {"_count": 1}, "coupled": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 3}, "at": {"_count": 1}, "passing": {"_count": 1}, "for": {"_count": 2}, "along": {"_count": 1}, "though": {"_count": 2}, "listening": {"_count": 1}, "so": {"_count": 2}, "that": {"_count": 1}, "on": {"_count": 1}, "feeling": {"_count": 1}, "into": {"_count": 1}, "Smash": {"_count": 1}, "about": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}, "while": {"_count": 1}, "by": {"_count": 1}, "down": {"_count": 1}, "all": {"_count": 1}, "or": {"_count": 1}, "it": {"_count": 1}}, "usual": {"_count": 57, "when": {"_count": 1}, "": {"_count": 23}, "and": {"_count": 7}, "Hagrid": {"_count": 1}, "everyones": {"_count": 1}, "at": {"_count": 1}, "from": {"_count": 2}, "as": {"_count": 1}, "collecting": {"_count": 1}, "it": {"_count": 1}, "but": {"_count": 3}, "here": {"_count": 1}, "Aunt": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 3}, "except": {"_count": 1}, "certain": {"_count": 1}, "looked": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "checking": {"_count": 1}, "upon": {"_count": 1}}, "much": {"_count": 94, "to": {"_count": 4}, "time": {"_count": 3}, "as": {"_count": 50}, "space": {"_count": 1}, "fun": {"_count": 1}, "of": {"_count": 4}, "in": {"_count": 1}, "trouble": {"_count": 1}, "dignity": {"_count": 1}, "unpleasantness": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "right": {"_count": 2}, "about": {"_count": 2}, "food": {"_count": 1}, "again": {"_count": 2}, "information": {"_count": 1}, "success": {"_count": 1}, "pain": {"_count": 2}, "if": {"_count": 1}, "fear": {"_count": 1}, "progress": {"_count": 1}, "chance": {"_count": 2}, "his": {"_count": 1}, "like": {"_count": 1}, "experience": {"_count": 1}, "a": {"_count": 1}, "sneered": {"_count": 1}, "contempt": {"_count": 2}, "light": {"_count": 1}}, "anyone": {"_count": 6, "elses": {"_count": 1}, "else": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}}, "horrible": {"_count": 2, "as": {"_count": 1}, "thoughts": {"_count": 1}}, "your": {"_count": 21, "head": {"_count": 1}, "parents": {"_count": 3}, "enemy": {"_count": 1}, "house": {"_count": 1}, "mothers": {"_count": 2}, "brain": {"_count": 1}, "hideout": {"_count": 1}, "father": {"_count": 3}, "useless": {"_count": 1}, "mum": {"_count": 1}, "servants": {"_count": 1}, "friend": {"_count": 1}, "godfather": {"_count": 1}, "exDefense": {"_count": 1}, "prefects": {"_count": 1}, "own": {"_count": 1}}, "bad": {"_count": 25, "as": {"_count": 21}, "a": {"_count": 1}, "wasnt": {"_count": 1}, "": {"_count": 2}}, "fond": {"_count": 2, "of": {"_count": 2}}, "before": {"_count": 6, "": {"_count": 5}, "hastily": {"_count": 1}}, "its": {"_count": 13, "mine": {"_count": 1}, "Filch": {"_count": 1}, "not": {"_count": 4}, "my": {"_count": 1}, "undulating": {"_count": 1}, "front": {"_count": 1}, "inhabitants": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "owner": {"_count": 1}}, "easily": {"_count": 8, "as": {"_count": 3}, "but": {"_count": 1}, "have": {"_count": 2}, "detach": {"_count": 1}, "and": {"_count": 1}}, "nobody": {"_count": 2, "seemed": {"_count": 1}, "sees": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "normal": {"_count": 5, "as": {"_count": 3}, "humans": {"_count": 1}, "a": {"_count": 1}}, "talking": {"_count": 1, "on": {"_count": 1}}, "strange": {"_count": 2, "just": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 1, "abnormal": {"_count": 1}}, "abnormal": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 110, "can": {"_count": 15}, "ever": {"_count": 1}, "could": {"_count": 4}, "usually": {"_count": 2}, "understand": {"_count": 1}, "am": {"_count": 11}, "have": {"_count": 14}, "myself": {"_count": 1}, "was": {"_count": 10}, "work": {"_count": 1}, "dont": {"_count": 2}, "take": {"_count": 2}, "proved": {"_count": 1}, "bring": {"_count": 1}, "say": {"_count": 9}, "know": {"_count": 5}, "do": {"_count": 6}, "remember": {"_count": 2}, "hadnt": {"_count": 1}, "had": {"_count": 3}, "see": {"_count": 1}, "reminded": {"_count": 2}, "See": {"_count": 1}, "Know": {"_count": 1}, "should": {"_count": 1}, "would": {"_count": 1}, "asked": {"_count": 1}, "told": {"_count": 1}, "prefer": {"_count": 1}, "hope": {"_count": 1}, "trust": {"_count": 1}, "tell": {"_count": 1}, "believe": {"_count": 1}, "No": {"_count": 1}, "did": {"_count": 1}, "intended": {"_count": 1}, "crushed": {"_count": 1}}, "you": {"_count": 96, "could": {"_count": 4}, "wrote": {"_count": 1}, "can": {"_count": 15}, "see": {"_count": 4}, "said": {"_count": 1}, "Im": {"_count": 1}, "are": {"_count": 5}, "might": {"_count": 2}, "knew": {"_count": 1}, "stay": {"_count": 1}, "fell": {"_count": 1}, "mightve": {"_count": 1}, "please": {"_count": 1}, "caught": {"_count": 1}, "enter": {"_count": 1}, "know": {"_count": 8}, "ought": {"_count": 2}, "do": {"_count": 2}, "may": {"_count": 2}, "heard": {"_count": 2}, "got": {"_count": 1}, "or": {"_count": 1}, "look": {"_count": 2}, "": {"_count": 1}, "passed": {"_count": 1}, "have": {"_count": 6}, "left": {"_count": 1}, "watched": {"_count": 1}, "dont": {"_count": 2}, "very": {"_count": 5}, "think": {"_count": 1}, "will": {"_count": 3}, "learning": {"_count": 1}, "lay": {"_count": 2}, "struggled": {"_count": 1}, "found": {"_count": 1}, "already": {"_count": 1}, "saw": {"_count": 2}, "attempted": {"_count": 1}, "now": {"_count": 2}, "were": {"_count": 1}, "say": {"_count": 1}, "kept": {"_count": 1}, "did": {"_count": 1}}, "good": {"_count": 28, "a": {"_count": 2}, "as": {"_count": 24}, "happened": {"_count": 1}, "with": {"_count": 1}}, "for": {"_count": 9, "all": {"_count": 1}, "the": {"_count": 2}, "whos": {"_count": 1}, "you": {"_count": 1}, "Potter": {"_count": 1}, "Defense": {"_count": 1}, "being": {"_count": 1}, "this": {"_count": 1}}, "gamekeeper": {"_count": 4, "": {"_count": 3}, "fresh": {"_count": 1}}, "Dedalus": {"_count": 1, "Diggles": {"_count": 1}}, "big": {"_count": 6, "as": {"_count": 4}, "a": {"_count": 2}}, "glowing": {"_count": 1, "coals": {"_count": 1}}, "large": {"_count": 8, "as": {"_count": 7}, "blinking": {"_count": 1}}, "paving": {"_count": 1, "stones": {"_count": 1}}, "no": {"_count": 2, "two": {"_count": 1}, "surprise": {"_count": 1}}, "something": {"_count": 9, "inside": {"_count": 1}, "huge": {"_count": 1}, "of": {"_count": 1}, "was": {"_count": 1}, "icy": {"_count": 1}, "else": {"_count": 1}, "flashed": {"_count": 1}, "comical": {"_count": 1}, "shifted": {"_count": 1}}, "interesting": {"_count": 4, "as": {"_count": 3}, "or": {"_count": 1}}, "Ron": {"_count": 73, "found": {"_count": 1}, "collapsed": {"_count": 2}, "started": {"_count": 1}, "slipped": {"_count": 1}, "said": {"_count": 3}, "and": {"_count": 6}, "reappeared": {"_count": 1}, "laughed": {"_count": 1}, "hammered": {"_count": 1}, "feeling": {"_count": 1}, "came": {"_count": 4}, "stepped": {"_count": 1}, "began": {"_count": 1}, "chose": {"_count": 1}, "tipped": {"_count": 1}, "": {"_count": 1}, "felt": {"_count": 1}, "who": {"_count": 2}, "disappeared": {"_count": 1}, "did": {"_count": 1}, "though": {"_count": 1}, "slumped": {"_count": 1}, "looked": {"_count": 1}, "bounded": {"_count": 1}, "continued": {"_count": 2}, "vanished": {"_count": 1}, "got": {"_count": 1}, "opened": {"_count": 3}, "stared": {"_count": 1}, "with": {"_count": 1}, "dived": {"_count": 2}, "clicked": {"_count": 1}, "made": {"_count": 1}, "struggled": {"_count": 1}, "himself": {"_count": 1}, "dropped": {"_count": 2}, "pretended": {"_count": 1}, "he": {"_count": 1}, "unraveled": {"_count": 1}, "rightly": {"_count": 1}, "had": {"_count": 3}, "winced": {"_count": 1}, "joined": {"_count": 1}, "unwrapped": {"_count": 1}, "stripped": {"_count": 1}, "helped": {"_count": 1}, "attempted": {"_count": 1}, "raised": {"_count": 1}, "gave": {"_count": 2}, "pulled": {"_count": 1}, "hurried": {"_count": 1}, "caught": {"_count": 1}, "tried": {"_count": 1}}, "many": {"_count": 23, "Mars": {"_count": 1}, "white": {"_count": 1}, "sandwiches": {"_count": 1}, "people": {"_count": 4}, "O": {"_count": 1}, "toffees": {"_count": 1}, "antiMuggle": {"_count": 1}, "of": {"_count": 3}, "books": {"_count": 1}, "on": {"_count": 1}, "foreign": {"_count": 1}, "more": {"_count": 1}, "Death": {"_count": 1}, "questions": {"_count": 1}, "as": {"_count": 1}, "opportunities": {"_count": 1}, "lifts": {"_count": 1}, "innocent": {"_count": 1}}, "quick": {"_count": 3, "as": {"_count": 3}}, "red": {"_count": 4, "as": {"_count": 4}}, "his": {"_count": 76, "hair": {"_count": 2}, "": {"_count": 5}, "enemies": {"_count": 1}, "head": {"_count": 1}, "fat": {"_count": 1}, "word": {"_count": 1}, "own": {"_count": 3}, "stomach": {"_count": 3}, "homework": {"_count": 1}, "next": {"_count": 1}, "chest": {"_count": 1}, "sword": {"_count": 1}, "school": {"_count": 2}, "trembling": {"_count": 1}, "bad": {"_count": 1}, "speech": {"_count": 1}, "mother": {"_count": 3}, "face": {"_count": 2}, "names": {"_count": 1}, "friends": {"_count": 1}, "niffler": {"_count": 1}, "victims": {"_count": 1}, "feeling": {"_count": 1}, "lanky": {"_count": 1}, "answer": {"_count": 1}, "hooves": {"_count": 1}, "rheumatism": {"_count": 1}, "father": {"_count": 2}, "fellow": {"_count": 1}, "hands": {"_count": 1}, "scar": {"_count": 6}, "legs": {"_count": 1}, "equal": {"_count": 4}, "younger": {"_count": 1}, "eyes": {"_count": 1}, "hand": {"_count": 1}, "son": {"_count": 2}, "obvious": {"_count": 1}, "mission": {"_count": 1}, "heel": {"_count": 1}, "black": {"_count": 2}, "fingers": {"_count": 1}, "beard": {"_count": 1}, "six": {"_count": 1}, "wife": {"_count": 1}, "exgirlfriend": {"_count": 1}, "once": {"_count": 1}, "weapon": {"_count": 1}, "fear": {"_count": 1}, "heart": {"_count": 1}, "deputies": {"_count": 1}, "knees": {"_count": 1}}, "touched": {"_count": 1, "Goyle": {"_count": 1}}, "Goyle": {"_count": 1, "swung": {"_count": 1}}, "smooth": {"_count": 1, "as": {"_count": 1}}, "glass": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 14, "climbed": {"_count": 1}, "drifted": {"_count": 1}, "headed": {"_count": 1}, "went": {"_count": 1}, "scurried": {"_count": 1}, "wondered": {"_count": 1}, "began": {"_count": 3}, "separated": {"_count": 1}, "got": {"_count": 1}, "moved": {"_count": 1}, "will": {"_count": 1}, "in": {"_count": 1}}, "Professor": {"_count": 23, "McGonagall": {"_count": 7}, "Dumbledore": {"_count": 3}, "Trelawney": {"_count": 4}, "Lupin": {"_count": 2}, "Snape": {"_count": 1}, "Trelawneys": {"_count": 1}, "Dumbledores": {"_count": 1}, "Sprout": {"_count": 1}, "Flitwick": {"_count": 1}, "Marchbanks": {"_count": 1}, "Slughorn": {"_count": 1}}, "Hannah": {"_count": 1, "went": {"_count": 1}}, "brightly": {"_count": 4, "as": {"_count": 2}, "pink": {"_count": 1}, "in": {"_count": 1}}, "Zabini": {"_count": 1, "Blaise": {"_count": 1}}, "quickly": {"_count": 21, "as": {"_count": 21}}, "Percy": {"_count": 7, "took": {"_count": 1}, "Weasley": {"_count": 3}, "stormed": {"_count": 1}, "strode": {"_count": 1}, "handed": {"_count": 1}}, "suddenly": {"_count": 8, "as": {"_count": 7}, "lowered": {"_count": 1}}, "any": {"_count": 10, "of": {"_count": 7}, "and": {"_count": 1}, "man": {"_count": 1}, "goblin": {"_count": 1}}, "stumped": {"_count": 1, "as": {"_count": 1}}, "high": {"_count": 5, "into": {"_count": 1}, "as": {"_count": 2}, "and": {"_count": 1}, "it": {"_count": 1}}, "angry": {"_count": 4, "red": {"_count": 1}, "as": {"_count": 2}, "with": {"_count": 1}}, "boils": {"_count": 1, "started": {"_count": 1}}, "fierce": {"_count": 1, "as": {"_count": 1}}, "fer": {"_count": 1, "that": {"_count": 1}}, "tea": {"_count": 1, "with": {"_count": 1}}, "nervous": {"_count": 1, "about": {"_count": 1}}, "Neville": {"_count": 13, "was": {"_count": 2}, "white": {"_count": 1}, "Longbottoms": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}, "trod": {"_count": 1}, "stowed": {"_count": 1}, "took": {"_count": 1}, "crawled": {"_count": 1}, "had": {"_count": 1}, "entered": {"_count": 1}, "moved": {"_count": 1}}, "white": {"_count": 2, "as": {"_count": 2}}, "If": {"_count": 1, "he": {"_count": 1}}, "all": {"_count": 11, "they": {"_count": 1}, "twelve": {"_count": 1}, "the": {"_count": 4}, "assumed": {"_count": 1}, "turned": {"_count": 1}, "sped": {"_count": 1}, "enmity": {"_count": 1}, "light": {"_count": 1}}, "an": {"_count": 39, "added": {"_count": 2}, "equally": {"_count": 1}, "oak": {"_count": 1}, "outcast": {"_count": 1}, "afterthought": {"_count": 2}, "underage": {"_count": 1}, "extra": {"_count": 3}, "obsolete": {"_count": 1}, "Auror": {"_count": 2}, "old": {"_count": 2}, "alarm": {"_count": 1}, "egg": {"_count": 1}, "Invisibility": {"_count": 2}, "empty": {"_count": 1}, "invertebrate": {"_count": 1}, "attempt": {"_count": 1}, "order": {"_count": 1}, "accomplished": {"_count": 1}, "antidote": {"_count": 1}, "unbidden": {"_count": 1}, "enormous": {"_count": 1}, "electric": {"_count": 1}, "assistant": {"_count": 1}, "interim": {"_count": 1}, "eye": {"_count": 1}, "act": {"_count": 2}, "awful": {"_count": 1}, "outward": {"_count": 1}, "aside": {"_count": 1}, "edge": {"_count": 1}, "apple": {"_count": 1}}, "interested": {"_count": 1, "as": {"_count": 1}}, "everyone": {"_count": 14, "else": {"_count": 2}, "tried": {"_count": 1}, "continued": {"_count": 1}, "except": {"_count": 1}, "packed": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}, "settled": {"_count": 1}, "thinks": {"_count": 1}, "drank": {"_count": 1}, "drew": {"_count": 1}, "seems": {"_count": 1}, "who": {"_count": 1}}, "Wood": {"_count": 4, "took": {"_count": 1}, "droned": {"_count": 1}, "spoke": {"_count": 1}, "constantly": {"_count": 1}}, "hard": {"_count": 24, "as": {"_count": 23}, "and": {"_count": 1}}, "tree": {"_count": 1, "trunks": {"_count": 1}}, "their": {"_count": 9, "secret": {"_count": 1}, "hands": {"_count": 1}, "eyes": {"_count": 1}, "carriage": {"_count": 1}, "leader": {"_count": 2}, "glasses": {"_count": 1}, "Disillusionment": {"_count": 1}, "second": {"_count": 1}}, "Snape": {"_count": 21, "limped": {"_count": 1}, "came": {"_count": 1}, "awarded": {"_count": 1}, "unrolled": {"_count": 1}, "paused": {"_count": 1}, "had": {"_count": 4}, "swept": {"_count": 2}, "was": {"_count": 2}, "kept": {"_count": 1}, "struggled": {"_count": 1}, "righted": {"_count": 1}, "emerged": {"_count": 1}, "closed": {"_count": 1}, "and": {"_count": 1}, "left": {"_count": 1}, "sat": {"_count": 1}}, "bein": {"_count": 1, "in": {"_count": 1}}, "Adrian": {"_count": 1, "Pucey": {"_count": 1}}, "close": {"_count": 8, "as": {"_count": 6}, "her": {"_count": 1}, "to": {"_count": 1}}, "Seeker": {"_count": 4, "next": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "theyre": {"_count": 4, "both": {"_count": 1}, "made": {"_count": 1}, "your": {"_count": 1}, "so": {"_count": 1}}, "Mrs": {"_count": 23, "Norriss": {"_count": 1}, "Weasley": {"_count": 16}, "Figgs": {"_count": 1}, "Blacks": {"_count": 2}, "Weasleys": {"_count": 1}, "Black": {"_count": 1}, "Cattermole": {"_count": 1}}, "soon": {"_count": 25, "as": {"_count": 25}}, "hed": {"_count": 7, "drawn": {"_count": 1}, "thought": {"_count": 1}, "loathed": {"_count": 1}, "slept": {"_count": 1}, "looked": {"_count": 1}, "beaten": {"_count": 1}, "been": {"_count": 1}}, "air": {"_count": 2, "": {"_count": 2}}, "Filch": {"_count": 6, "and": {"_count": 1}, "lowered": {"_count": 1}, "placed": {"_count": 1}, "was": {"_count": 1}, "came": {"_count": 1}, "swelled": {"_count": 1}}, "quietly": {"_count": 8, "as": {"_count": 8}}, "Harrys": {"_count": 7, "did": {"_count": 2}, "eyes": {"_count": 1}, "friend": {"_count": 1}, "whole": {"_count": 1}, "heart": {"_count": 1}, "had": {"_count": 1}}, "Head": {"_count": 4, "Boy": {"_count": 1}, "of": {"_count": 3}}, "were": {"_count": 10, "not": {"_count": 1}, "their": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}, "going": {"_count": 1}, "seventeen": {"_count": 1}, "so": {"_count": 1}, "on": {"_count": 1}, "Terry": {"_count": 1}, "Oliver": {"_count": 1}}, "Quirrell": {"_count": 2, "stands": {"_count": 1}, "reached": {"_count": 1}}, "Hermione": {"_count": 51, "": {"_count": 5}, "looking": {"_count": 1}, "had": {"_count": 4}, "came": {"_count": 3}, "strode": {"_count": 1}, "whose": {"_count": 1}, "raised": {"_count": 1}, "might": {"_count": 1}, "ran": {"_count": 1}, "turned": {"_count": 1}, "hurried": {"_count": 1}, "and": {"_count": 1}, "placed": {"_count": 1}, "clapped": {"_count": 1}, "was": {"_count": 1}, "pulled": {"_count": 1}, "made": {"_count": 1}, "clung": {"_count": 1}, "marched": {"_count": 1}, "continued": {"_count": 2}, "perched": {"_count": 1}, "opened": {"_count": 2}, "managed": {"_count": 1}, "scanned": {"_count": 1}, "put": {"_count": 1}, "rolled": {"_count": 1}, "flung": {"_count": 1}, "caught": {"_count": 1}, "left": {"_count": 1}, "began": {"_count": 1}, "yanked": {"_count": 1}, "laid": {"_count": 1}, "knelt": {"_count": 1}, "advanced": {"_count": 1}, "threw": {"_count": 1}, "screamed": {"_count": 1}, "s": {"_count": 1}, "passed": {"_count": 1}, "charged": {"_count": 1}, "said": {"_count": 1}}, "evening": {"_count": 1, "after": {"_count": 1}}, "light": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 47, "forget": {"_count": 2}, "that": {"_count": 1}, "select": {"_count": 1}, "how": {"_count": 2}, "clear": {"_count": 1}, "be": {"_count": 1}, "avoid": {"_count": 2}, "call": {"_count": 2}, "illuminate": {"_count": 1}, "my": {"_count": 1}, "threaten": {"_count": 1}, "keep": {"_count": 1}, "see": {"_count": 1}, "your": {"_count": 1}, "who": {"_count": 1}, "catch": {"_count": 1}, "what": {"_count": 6}, "reread": {"_count": 1}, "which": {"_count": 1}, "claim": {"_count": 1}, "detect": {"_count": 1}, "examine": {"_count": 1}, "when": {"_count": 1}, "escape": {"_count": 2}, "enable": {"_count": 1}, "whether": {"_count": 1}, "store": {"_count": 1}, "refrain": {"_count": 1}, "getting": {"_count": 1}, "why": {"_count": 1}, "where": {"_count": 1}, "carry": {"_count": 1}, "watch": {"_count": 1}, "flood": {"_count": 1}, "enhance": {"_count": 1}, "place": {"_count": 1}, "himself": {"_count": 1}}, "wellknown": {"_count": 1, "but": {"_count": 1}}, "cool": {"_count": 1, "as": {"_count": 1}}, "best": {"_count": 2, "he": {"_count": 2}}, "Hagrid": {"_count": 19, "hurried": {"_count": 1}, "made": {"_count": 1}, "reached": {"_count": 1}, "lifted": {"_count": 1}, "keeps": {"_count": 1}, "himself": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "coughed": {"_count": 1}, "shook": {"_count": 1}, "that": {"_count": 1}, "had": {"_count": 1}, "shuffled": {"_count": 1}, "blasted": {"_count": 1}, "leaned": {"_count": 1}, "who": {"_count": 1}, "rummaged": {"_count": 1}, "cradled": {"_count": 1}}, "worried": {"_count": 1, "about": {"_count": 1}}, "often": {"_count": 3, "as": {"_count": 3}}, "Dumbledores": {"_count": 5, "around": {"_count": 1}, "footsteps": {"_count": 1}, "predecessor": {"_count": 1}, "had": {"_count": 1}, "I": {"_count": 1}}, "Lee": {"_count": 2, "Jordan": {"_count": 1}, "paused": {"_count": 1}}, "tight": {"_count": 1, "as": {"_count": 1}}, "young": {"_count": 3, "as": {"_count": 3}}, "little": {"_count": 6, "mercy": {"_count": 1}, "as": {"_count": 2}, "neck": {"_count": 1}, "notice": {"_count": 1}, "consideration": {"_count": 1}}, "powerful": {"_count": 3, "as": {"_count": 3}}, "Slytherin": {"_count": 1, "": {"_count": 1}}, "stupid": {"_count": 3, "as": {"_count": 3}}, "not": {"_count": 9, "normal": {"_count": 1}, "to": {"_count": 8}}, "headlights": {"_count": 1, "": {"_count": 1}}, "Dobbys": {"_count": 2, "head": {"_count": 1}, "hand": {"_count": 1}}, "Uncle": {"_count": 6, "Vernon": {"_count": 5}, "Vernons": {"_count": 1}}, "fruit": {"_count": 1, "bats": {"_count": 1}}, "Fred": {"_count": 12, "drove": {"_count": 1}, "and": {"_count": 6}, "swung": {"_count": 1}, "pulled": {"_count": 1}, "George": {"_count": 1}, "waved": {"_count": 1}, "had": {"_count": 1}}, "George": {"_count": 6, "took": {"_count": 1}, "dipped": {"_count": 1}, "Weasley": {"_count": 1}, "started": {"_count": 1}, "sat": {"_count": 1}, "had": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 2}, "Morfin": {"_count": 1}, "one": {"_count": 1}}, "her": {"_count": 15, "rage": {"_count": 1}, "face": {"_count": 1}, "teeth": {"_count": 1}, "voice": {"_count": 2}, "son": {"_count": 1}, "": {"_count": 2}, "short": {"_count": 1}, "wand": {"_count": 1}, "robe": {"_count": 1}, "sister": {"_count": 1}, "eyes": {"_count": 1}, "silvery": {"_count": 1}, "master": {"_count": 1}}, "Ive": {"_count": 3, "lived": {"_count": 1}, "found": {"_count": 1}, "said": {"_count": 1}}, "sparks": {"_count": 1, "flew": {"_count": 1}}, "different": {"_count": 1, "as": {"_count": 1}}, "youve": {"_count": 3, "spoken": {"_count": 1}, "searched": {"_count": 1}, "been": {"_count": 1}}, "oily": {"_count": 1, "as": {"_count": 1}}, "Draco": {"_count": 4, "drew": {"_count": 1}, "turned": {"_count": 1}, "Malfoy": {"_count": 1}, "hurried": {"_count": 1}}, "new": {"_count": 4, "": {"_count": 3}, "but": {"_count": 1}}, "Lockhart": {"_count": 5, "shook": {"_count": 1}, "flung": {"_count": 1}, "quickly": {"_count": 1}, "straightened": {"_count": 1}, "had": {"_count": 1}}, "surprised": {"_count": 2, "as": {"_count": 2}}, "Ginny": {"_count": 6, "": {"_count": 1}, "blanched": {"_count": 1}, "passed": {"_count": 1}, "made": {"_count": 1}, "joined": {"_count": 1}, "raised": {"_count": 1}}, "Ginnys": {"_count": 2, "cauldron": {"_count": 1}, "": {"_count": 1}}, "uncomfortable": {"_count": 1, "as": {"_count": 1}}, "using": {"_count": 1, "Floo": {"_count": 1}}, "thick": {"_count": 4, "as": {"_count": 4}}, "another": {"_count": 7, "twisted": {"_count": 1}, "thunderclap": {"_count": 1}, "seven": {"_count": 1}, "spell": {"_count": 1}, "part": {"_count": 1}, "invitation": {"_count": 1}, "couple": {"_count": 1}}, "severe": {"_count": 1, "as": {"_count": 1}}, "winning": {"_count": 1, "Witch": {"_count": 1}}, "Im": {"_count": 7, "sure": {"_count": 3}, "not": {"_count": 2}, "concerned": {"_count": 2}}, "Crabbe": {"_count": 3, "s": {"_count": 1}, "gleefully": {"_count": 1}, "did": {"_count": 1}}, "one": {"_count": 15, "of": {"_count": 8}, "": {"_count": 2}, "all": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 1}}, "celebrity": {"_count": 1, "does": {"_count": 1}}, "preoccupied": {"_count": 1, "as": {"_count": 1}}, "smoke": {"_count": 2, "and": {"_count": 1}, "unfurled": {"_count": 1}}, "Horseback": {"_count": 1, "Head": {"_count": 1}}, "Sir": {"_count": 1, "Patricks": {"_count": 1}}, "silence": {"_count": 1, "fell": {"_count": 1}}, "sorry": {"_count": 1, "as": {"_count": 1}}, "ever": {"_count": 44, "on": {"_count": 2}, "": {"_count": 16}, "but": {"_count": 6}, "was": {"_count": 1}, "in": {"_count": 3}, "if": {"_count": 1}, "I": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 2}, "which": {"_count": 1}, "as": {"_count": 1}, "glittering": {"_count": 1}, "by": {"_count": 1}, "lingering": {"_count": 1}, "though": {"_count": 1}, "Dumbledore": {"_count": 1}, "pulling": {"_count": 1}, "at": {"_count": 1}, "before": {"_count": 1}, "impenetrable": {"_count": 1}}, "boring": {"_count": 2, "as": {"_count": 2}}, "Rons": {"_count": 5, "ears": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "snores": {"_count": 1}, "doubts": {"_count": 1}}, "very": {"_count": 2, "suspicious": {"_count": 1}, "happy": {"_count": 1}}, "Thursday": {"_count": 1, "afternoons": {"_count": 1}}, "safe": {"_count": 1, "as": {"_count": 1}}, "poking": {"_count": 1, "a": {"_count": 1}}, "splashes": {"_count": 1, "of": {"_count": 1}}, "Malfoy": {"_count": 7, "sank": {"_count": 1}, "sniggered": {"_count": 1}, "walked": {"_count": 1}, "stalked": {"_count": 1}, "his": {"_count": 1}, "clambered": {"_count": 1}, "Crabbe": {"_count": 1}}, "Justin": {"_count": 1, "doesnt": {"_count": 1}}, "pure": {"_count": 3, "as": {"_count": 2}, "spirit": {"_count": 1}}, "anyones": {"_count": 1, "so": {"_count": 1}}, "ugly": {"_count": 3, "as": {"_count": 2}, "": {"_count": 1}}, "smoothly": {"_count": 1, "as": {"_count": 1}}, "Crabbes": {"_count": 1, "and": {"_count": 1}}, "easy": {"_count": 2, "as": {"_count": 2}}, "always": {"_count": 3, "and": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "wet": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "everything": {"_count": 3, "else": {"_count": 3}}, "green": {"_count": 3, "as": {"_count": 3}}, "dark": {"_count": 3, "as": {"_count": 3}}, "clean": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "Riddle": {"_count": 3, "had": {"_count": 1}, "rounded": {"_count": 1}, "asked": {"_count": 1}}, "more": {"_count": 7, "and": {"_count": 2}, "sparks": {"_count": 1}, "Death": {"_count": 1}, "curses": {"_count": 2}, "screams": {"_count": 1}}, "cabbages": {"_count": 1, "burst": {"_count": 1}}, "never": {"_count": 1, "before": {"_count": 1}}, "confused": {"_count": 5, "and": {"_count": 3}, "as": {"_count": 2}}, "readily": {"_count": 1, "as": {"_count": 1}}, "calmly": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "normally": {"_count": 1, "as": {"_count": 1}}, "sleek": {"_count": 1, "as": {"_count": 1}}, "Hermiones": {"_count": 3, "": {"_count": 1}, "hand": {"_count": 1}, "voice": {"_count": 1}}, "that": {"_count": 9, "one": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 1}, "important": {"_count": 1}}, "simple": {"_count": 4, "as": {"_count": 4}}, "theirs": {"_count": 1, "which": {"_count": 1}}, "narrow": {"_count": 1, "as": {"_count": 1}}, "these": {"_count": 2, "rocks": {"_count": 1}, "said": {"_count": 1}}, "marble": {"_count": 1, "and": {"_count": 1}}, "cold": {"_count": 3, "yet": {"_count": 1}, "as": {"_count": 2}}, "gone": {"_count": 1, "as": {"_count": 1}}, "sabers": {"_count": 1, "Fawkes": {"_count": 1}}, "warm": {"_count": 4, "blood": {"_count": 1}, "and": {"_count": 3}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "Lockharts": {"_count": 1, "valentine": {"_count": 1}}, "last": {"_count": 5, "time": {"_count": 3}, "week": {"_count": 1}, "Wednesday": {"_count": 1}}, "Dobby": {"_count": 3, "pulled": {"_count": 1}, "led": {"_count": 1}, "handed": {"_count": 1}}, "Muggles": {"_count": 3, "were": {"_count": 1}, "though": {"_count": 1}, "for": {"_count": 1}}, "downtrodden": {"_count": 1, "as": {"_count": 1}}, "ominous": {"_count": 1, "that": {"_count": 1}}, "Marge": {"_count": 1, "doesnt": {"_count": 1}}, "bushy": {"_count": 2, "as": {"_count": 2}}, "specks": {"_count": 1, "of": {"_count": 1}}, "Aunt": {"_count": 4, "Marges": {"_count": 1}, "Petunia": {"_count": 3}}, "Ern": {"_count": 1, "stamped": {"_count": 1}}, "anyfink": {"_count": 1, "still": {"_count": 1}}, "Tom": {"_count": 2, "beckoned": {"_count": 1}, "Riddles": {"_count": 1}}, "Predicting": {"_count": 1, "the": {"_count": 1}}, "Mr": {"_count": 17, "and": {"_count": 1}, "Weasley": {"_count": 11}, "Diggory": {"_count": 4}, "Cattermole": {"_count": 1}}, "Voldemorts": {"_count": 2, "righthand": {"_count": 1}, "the": {"_count": 1}}, "frightened": {"_count": 2, "of": {"_count": 1}, "as": {"_count": 1}}, "pink": {"_count": 1, "as": {"_count": 1}}, "shabby": {"_count": 2, "as": {"_count": 2}}, "happy": {"_count": 2, "with": {"_count": 1}, "nor": {"_count": 1}}, "Crookshanks": {"_count": 6, "sank": {"_count": 1}, "freed": {"_count": 1}, "s": {"_count": 1}, "inserted": {"_count": 1}, "clawed": {"_count": 1}, "curled": {"_count": 1}}, "Professors": {"_count": 1, "McGonagall": {"_count": 1}}, "unlikely": {"_count": 1, "as": {"_count": 1}}, "werewolves": {"_count": 2, "yet": {"_count": 1}, "and": {"_count": 1}}, "steady": {"_count": 1, "as": {"_count": 1}}, "strong": {"_count": 2, "as": {"_count": 2}}, "witnesses": {"_count": 1, "Im": {"_count": 1}}, "theyve": {"_count": 3, "got": {"_count": 2}, "never": {"_count": 1}}, "expensive": {"_count": 1, "as": {"_count": 1}}, "real": {"_count": 1, "humans": {"_count": 1}}, "exactly": {"_count": 1, "as": {"_count": 1}}, "low": {"_count": 6, "as": {"_count": 5}, "in": {"_count": 1}}, "exhausted": {"_count": 1, "as": {"_count": 1}}, "Lupin": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "Divination": {"_count": 1, "and": {"_count": 1}}, "necessary": {"_count": 1, "Wood": {"_count": 1}}, "magnificent": {"_count": 1, "as": {"_count": 1}}, "every": {"_count": 3, "head": {"_count": 1}, "thought": {"_count": 1}, "member": {"_count": 1}}, "tired": {"_count": 2, "as": {"_count": 2}}, "impressed": {"_count": 1, "with": {"_count": 1}}, "relief": {"_count": 1, "seeped": {"_count": 1}}, "Katie": {"_count": 3, "succeeded": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}}, "chalk": {"_count": 1, "": {"_count": 1}}, "everybody": {"_count": 6, "else": {"_count": 1}, "celebrated": {"_count": 1}, "moved": {"_count": 1}, "scrambled": {"_count": 1}, "in": {"_count": 1}, "looked": {"_count": 1}}, "dead": {"_count": 1, "Malfoy": {"_count": 1}}, "mine": {"_count": 3, "": {"_count": 1}, "Wormtail": {"_count": 1}, "is": {"_count": 1}}, "pathetic": {"_count": 1, "": {"_count": 1}}, "everyones": {"_count": 1, "heads": {"_count": 1}}, "commentator": {"_count": 1, "as": {"_count": 1}}, "fourteen": {"_count": 1, "brooms": {"_count": 1}}, "Marcus": {"_count": 1, "Flint": {"_count": 1}}, "Flint": {"_count": 1, "waited": {"_count": 1}}, "Johnson": {"_count": 1, "takes": {"_count": 1}}, "Bole": {"_count": 1, "sent": {"_count": 1}}, "June": {"_count": 2, "approached": {"_count": 1}, "the": {"_count": 1}}, "farfetched": {"_count": 1, "as": {"_count": 1}}, "someone": {"_count": 2, "knocked": {"_count": 1}, "who": {"_count": 1}}, "badly": {"_count": 4, "as": {"_count": 3}, "scarred": {"_count": 1}}, "Black": {"_count": 1, "lunged": {"_count": 1}}, "Blacks": {"_count": 2, "weight": {"_count": 1}, "": {"_count": 1}}, "humans": {"_count": 1, "so": {"_count": 1}}, "animals": {"_count": 1, "said": {"_count": 1}}, "killed": {"_count": 1, "them": {"_count": 1}}, "Secret": {"_count": 1, "Keeper": {"_count": 1}}, "Madam": {"_count": 3, "Pomfrey": {"_count": 2}, "Pince": {"_count": 1}}, "croaky": {"_count": 1, "as": {"_count": 1}}, "death": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "bright": {"_count": 3, "as": {"_count": 1}, "and": {"_count": 2}}, "Macnairs": {"_count": 1, "face": {"_count": 1}}, "witnessed": {"_count": 1, "below": {"_count": 1}}, "Buckbeaks": {"_count": 1, "wings": {"_count": 1}}, "Macnair": {"_count": 1, "returns": {"_count": 1}}, "thirteen": {"_count": 1, "birthdays": {"_count": 1}}, "ice": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 2, "we": {"_count": 1}, "their": {"_count": 1}}, "two": {"_count": 5, "days": {"_count": 1}, "of": {"_count": 1}, "thick": {"_count": 1}, "such": {"_count": 1}, "more": {"_count": 1}}, "useful": {"_count": 1, "as": {"_count": 1}}, "Bertha": {"_count": 2, "Jorkins": {"_count": 1}, "had": {"_count": 1}}, "Frank": {"_count": 1, "had": {"_count": 1}}, "welcome": {"_count": 2, "in": {"_count": 1}, "as": {"_count": 1}}, "dry": {"_count": 1, "rot": {"_count": 1}}, "miserable": {"_count": 2, "as": {"_count": 2}}, "was": {"_count": 5, "usual": {"_count": 1}, "inevitable": {"_count": 1}, "her": {"_count": 1}, "widely": {"_count": 1}, "his": {"_count": 1}}, "outraged": {"_count": 1, "as": {"_count": 1}}, "blank": {"_count": 1, "as": {"_count": 1}}, "what": {"_count": 2, "appeared": {"_count": 1}, "sounded": {"_count": 1}}, "mad": {"_count": 2, "as": {"_count": 2}}, "concerned": {"_count": 1, "about": {"_count": 1}}, "several": {"_count": 2, "knives": {"_count": 1}, "people": {"_count": 1}}, "Mugglelike": {"_count": 1, "as": {"_count": 1}}, "Ludo": {"_count": 2, "Bagman": {"_count": 1}, "Bagmans": {"_count": 1}}, "Bagman": {"_count": 3, "settled": {"_count": 1}, "who": {"_count": 1}, "walked": {"_count": 1}}, "darkness": {"_count": 3, "spread": {"_count": 1}, "and": {"_count": 1}, "pressed": {"_count": 1}}, "excited": {"_count": 2, "as": {"_count": 1}, "about": {"_count": 1}}, "velvet": {"_count": 1, "from": {"_count": 1}}, "my": {"_count": 4, "guest": {"_count": 1}, "mother": {"_count": 1}, "dad": {"_count": 1}, "mothers": {"_count": 1}}, "Mostafa": {"_count": 1, "mounted": {"_count": 1}}, "Troy": {"_count": 2, "made": {"_count": 1}, "and": {"_count": 1}}, "play": {"_count": 1, "resumed": {"_count": 1}}, "fiercely": {"_count": 1, "as": {"_count": 1}}, "trained": {"_count": 1, "mediwizards": {"_count": 1}}, "Krum": {"_count": 3, "and": {"_count": 1}, "looked": {"_count": 1}, "looking": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "ours": {"_count": 1, "Hermione": {"_count": 1}}, "Hogwarts": {"_count": 1, "how": {"_count": 1}}, "part": {"_count": 4, "of": {"_count": 4}}, "Hagrids": {"_count": 2, "moleskin": {"_count": 1}, "this": {"_count": 1}}, "Baddock": {"_count": 1, "joined": {"_count": 1}}, "broad": {"_count": 2, "Hagrid": {"_count": 1}, "was": {"_count": 1}}, "Dennis": {"_count": 1, "Creevey": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "Madley": {"_count": 1, "Laura": {"_count": 1}}, "McDonald": {"_count": 1, "Natalie": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "friendly": {"_count": 1, "as": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Moodys": {"_count": 1, "eyes": {"_count": 1}}, "fogged": {"_count": 1, "as": {"_count": 1}}, "Moody": {"_count": 2, "cleared": {"_count": 1}, "clunked": {"_count": 1}}, "Ernie": {"_count": 1, "hurried": {"_count": 1}}, "champion": {"_count": 1, "must": {"_count": 1}}, "fine": {"_count": 1, "as": {"_count": 1}}, "yours": {"_count": 2, "": {"_count": 2}}, "champions": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "tense": {"_count": 1, "and": {"_count": 1}}, "Cedric": {"_count": 10, "made": {"_count": 1}, "": {"_count": 2}, "Diggory": {"_count": 1}, "handed": {"_count": 1}, "did": {"_count": 1}, "ran": {"_count": 1}, "had": {"_count": 2}, "yelled": {"_count": 1}}, "at": {"_count": 3, "last": {"_count": 2}, "this": {"_count": 1}}, "blankly": {"_count": 1, "back": {"_count": 1}}, "been": {"_count": 3, "a": {"_count": 1}, "too": {"_count": 1}, "telling": {"_count": 1}}, "ze": {"_count": 1, "chance": {"_count": 1}}, "school": {"_count": 1, "champion": {"_count": 1}}, "our": {"_count": 3, "conversation": {"_count": 1}, "headquarters": {"_count": 1}, "friend": {"_count": 1}}, "everpresent": {"_count": 1, "as": {"_count": 1}}, "Hogsmeade": {"_count": 1, "was": {"_count": 1}}, "adept": {"_count": 2, "as": {"_count": 1}, "at": {"_count": 1}}, "wizards": {"_count": 2, "at": {"_count": 1}, "to": {"_count": 1}}, "dangerous": {"_count": 2, "as": {"_count": 2}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "highminded": {"_count": 1, "as": {"_count": 1}}, "youre": {"_count": 6, "concentrating": {"_count": 1}, "passing": {"_count": 1}, "already": {"_count": 1}, "told": {"_count": 2}, "neither": {"_count": 1}}, "anxious": {"_count": 2, "as": {"_count": 2}}, "composed": {"_count": 1, "as": {"_count": 1}}, "separate": {"_count": 1, "from": {"_count": 1}}, "those": {"_count": 5, "of": {"_count": 1}, "he": {"_count": 1}, "exceptional": {"_count": 1}, "on": {"_count": 1}, "nearest": {"_count": 1}}, "loudly": {"_count": 7, "as": {"_count": 6}, "and": {"_count": 1}}, "Cedrics": {"_count": 1, "": {"_count": 1}}, "pleased": {"_count": 2, "as": {"_count": 2}}, "Winkys": {"_count": 1, "had": {"_count": 1}}, "boys": {"_count": 1, "passed": {"_count": 1}}, "Binns": {"_count": 1, "hadnt": {"_count": 1}}, "Percys": {"_count": 2, "cauldronbottom": {"_count": 1}, "heels": {"_count": 1}}, "fully": {"_count": 1, "as": {"_count": 1}}, "Fleur": {"_count": 4, "went": {"_count": 1}, "had": {"_count": 2}, "Delacour": {"_count": 1}}, "generous": {"_count": 1, "of": {"_count": 1}}, "noble": {"_count": 1, "as": {"_count": 1}}, "selfless": {"_count": 1, "Theyre": {"_count": 1}}, "pretty": {"_count": 1, "as": {"_count": 1}}, "Parvati": {"_count": 2, "in": {"_count": 1}, "bypassed": {"_count": 1}}, "enthusiastically": {"_count": 1, "as": {"_count": 1}}, "supreme": {"_count": 1, "ruler": {"_count": 1}}, "great": {"_count": 1, "as": {"_count": 1}}, "yet": {"_count": 5, "on": {"_count": 1}, "an": {"_count": 1}, "unable": {"_count": 1}, "unknown": {"_count": 1}, "deserted": {"_count": 1}}, "comfortable": {"_count": 1, "I": {"_count": 1}}, "Parvatis": {"_count": 1, "robes": {"_count": 1}}, "shocking": {"_count": 1, "as": {"_count": 1}}, "crowded": {"_count": 1, "as": {"_count": 1}}, "strained": {"_count": 1, "as": {"_count": 1}}, "disappointed": {"_count": 1, "as": {"_count": 1}}, "minuscule": {"_count": 1, "labeled": {"_count": 1}}, "incomprehensible": {"_count": 1, "as": {"_count": 1}}, "loud": {"_count": 1, "as": {"_count": 1}}, "only": {"_count": 1, "Snape": {"_count": 1}}, "Karkaroff": {"_count": 2, "": {"_count": 1}, "gasped": {"_count": 1}}, "just": {"_count": 1, "another": {"_count": 1}}, "distant": {"_count": 2, "as": {"_count": 1}, "from": {"_count": 1}}, "follows": {"_count": 3, "": {"_count": 1}, "That": {"_count": 1}, "Mundungus": {"_count": 1}}, "short": {"_count": 1, "as": {"_count": 1}}, "godfather": {"_count": 1, "said": {"_count": 1}}, "menacing": {"_count": 1, "as": {"_count": 1}}, "ruthless": {"_count": 1, "and": {"_count": 1}}, "Minister": {"_count": 4, "of": {"_count": 4}}, "Sirius": {"_count": 8, "had": {"_count": 2}, "advised": {"_count": 1}, "wagged": {"_count": 1}, "Black": {"_count": 2}, "and": {"_count": 2}}, "pets": {"_count": 1, "Hagrid": {"_count": 1}}, "investigators": {"_count": 1, "but": {"_count": 1}}, "vivid": {"_count": 1, "as": {"_count": 1}}, "Snapes": {"_count": 1, "had": {"_count": 1}}, "Crouchs": {"_count": 1, "son": {"_count": 1}}, "worthy": {"_count": 1, "of": {"_count": 1}}, "serpents": {"_count": 1, "are": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "tightly": {"_count": 5, "as": {"_count": 5}}, "moonlight": {"_count": 1, "which": {"_count": 1}}, "powerless": {"_count": 1, "as": {"_count": 1}}, "weak": {"_count": 2, "as": {"_count": 2}}, "so": {"_count": 2, "many": {"_count": 2}}, "uncontrollably": {"_count": 1, "as": {"_count": 1}}, "Wormtail": {"_count": 2, "had": {"_count": 1}, "He": {"_count": 1}}, "slowly": {"_count": 4, "they": {"_count": 1}, "as": {"_count": 3}}, "Fudge": {"_count": 2, "had": {"_count": 1}, "attempted": {"_count": 1}}, "frequently": {"_count": 1, "as": {"_count": 1}}, "Winky": {"_count": 1, "wailed": {"_count": 1}}, "photographs": {"_count": 1, "which": {"_count": 1}}, "old": {"_count": 4, "and": {"_count": 1}, "as": {"_count": 2}, "just": {"_count": 1}}, "Bill": {"_count": 5, "pulled": {"_count": 1}, "appeared": {"_count": 1}, "and": {"_count": 1}, "made": {"_count": 1}, "opened": {"_count": 1}}, "sane": {"_count": 2, "as": {"_count": 2}}, "clear": {"_count": 1, "as": {"_count": 1}}, "shortsighted": {"_count": 1, "as": {"_count": 1}}, "Cornelius": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 2, "you": {"_count": 1}, "Remembralls": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "yer": {"_count": 1, "father": {"_count": 1}}, "sour": {"_count": 1, "and": {"_count": 1}}, "dirty": {"_count": 1, "as": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 2, "happened": {"_count": 1}, "any": {"_count": 1}}, "empty": {"_count": 2, "of": {"_count": 1}, "as": {"_count": 1}}, "vast": {"_count": 2, "as": {"_count": 1}, "quantities": {"_count": 1}}, "Dudleys": {"_count": 1, "first": {"_count": 1}}, "heavy": {"_count": 2, "as": {"_count": 1}, "footfalls": {"_count": 1}}, "meeting": {"_count": 1, "two": {"_count": 1}}, "Mundungus": {"_count": 4, "knows": {"_count": 1}, "stowed": {"_count": 1}, "": {"_count": 1}, "started": {"_count": 1}}, "Transfigured": {"_count": 1, "a": {"_count": 1}}, "hope": {"_count": 1, "and": {"_count": 1}}, "Tonks": {"_count": 2, "and": {"_count": 2}}, "wand": {"_count": 1, "sparks": {"_count": 1}}, "keen": {"_count": 1, "as": {"_count": 1}}, "vividly": {"_count": 1, "redhaired": {"_count": 1}}, "some": {"_count": 2, "stupid": {"_count": 1}, "have": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hes": {"_count": 2, "one": {"_count": 1}, "here": {"_count": 1}}, "most": {"_count": 2, "in": {"_count": 1}, "people": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Kingsley": {"_count": 3, "Shacklebolts": {"_count": 1}, "Disapparated": {"_count": 1}, "had": {"_count": 1}}, "brass": {"_count": 1, "oh": {"_count": 1}}, "Snuffles": {"_count": 1, "obviously": {"_count": 1}}, "devoted": {"_count": 1, "to": {"_count": 1}}, "saucers": {"_count": 1, "lurking": {"_count": 1}}, "cleaning": {"_count": 1, "but": {"_count": 1}}, "Master": {"_count": 2, "wishes": {"_count": 1}, "Regulus": {"_count": 1}}, "abruptly": {"_count": 1, "and": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "funny": {"_count": 2, "but": {"_count": 1}, "after": {"_count": 1}}, "funds": {"_count": 1, "Ill": {"_count": 1}}, "arrogant": {"_count": 2, "as": {"_count": 2}}, "MadEye": {"_count": 2, "shrugged": {"_count": 1}, "expected": {"_count": 1}}, "werewolf": {"_count": 1, "segregation": {"_count": 1}}, "Podmore": {"_count": 1, "hasnt": {"_count": 1}}, "unreliable": {"_count": 1, "as": {"_count": 1}}, "unnerved": {"_count": 1, "by": {"_count": 1}}, "Euan": {"_count": 1, "Abercrombie": {"_count": 1}}, "thin": {"_count": 2, "as": {"_count": 1}, "but": {"_count": 1}}, "Umbridge": {"_count": 5, "gave": {"_count": 1}, "walked": {"_count": 1}, "is": {"_count": 1}, "left": {"_count": 1}, "jogged": {"_count": 1}}, "students": {"_count": 2, "put": {"_count": 1}, "flooded": {"_count": 1}}, "errors": {"_count": 1, "of": {"_count": 1}}, "welcoming": {"_count": 1, "as": {"_count": 1}}, "first": {"_count": 1, "the": {"_count": 1}}, "longwinded": {"_count": 1, "as": {"_count": 1}}, "Oliver": {"_count": 1, "Woods": {"_count": 1}}, "agreeing": {"_count": 1, "that": {"_count": 1}}, "opposed": {"_count": 2, "to": {"_count": 2}}, "Goyles": {"_count": 1, "when": {"_count": 1}}, "directly": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "examinations": {"_count": 1, "": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "resolutely": {"_count": 1, "in": {"_count": 1}}, "Peeves": {"_count": 2, "cackled": {"_count": 1}, "swooped": {"_count": 1}}, "leaden": {"_count": 1, "and": {"_count": 1}}, "clothes": {"_count": 1, "": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "planned": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "effectively": {"_count": 1, "for": {"_count": 1}}, "nice": {"_count": 1, "as": {"_count": 1}}, "clearly": {"_count": 6, "uninhabited": {"_count": 1}, "as": {"_count": 4}, "audible": {"_count": 1}}, "mystified": {"_count": 1, "by": {"_count": 1}}, "Potter": {"_count": 2, "it": {"_count": 1}, "so": {"_count": 1}}, "nothing": {"_count": 6, "else": {"_count": 2}, "to": {"_count": 2}, "more": {"_count": 1}, "compared": {"_count": 1}}, "August": {"_count": 1, "30th": {"_count": 1}}, "dull": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "natural": {"_count": 1, "as": {"_count": 1}}, "being": {"_count": 1, "a": {"_count": 1}}, "round": {"_count": 1, "as": {"_count": 1}}, "Galleons": {"_count": 1, "": {"_count": 1}}, "began": {"_count": 1, "Angelina": {"_count": 1}}, "lucky": {"_count": 1, "though": {"_count": 1}}, "tennis": {"_count": 1, "balls": {"_count": 1}}, "hailstones": {"_count": 1, "on": {"_count": 1}}, "Sneakoscopes": {"_count": 1, "Secrecy": {"_count": 1}}, "odd": {"_count": 2, "as": {"_count": 2}}, "seeing": {"_count": 1, "them": {"_count": 1}}, "frozen": {"_count": 1, "iron": {"_count": 1}}, "pale": {"_count": 6, "and": {"_count": 1}, "as": {"_count": 5}}, "reluctant": {"_count": 1, "to": {"_count": 1}}, "Angelina": {"_count": 1, "and": {"_count": 1}}, "Gryffindor": {"_count": 1, "had": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}, "Golgomath": {"_count": 1, "no": {"_count": 1}}, "Gurg": {"_count": 1, "": {"_count": 1}}, "High": {"_count": 1, "Inquisitor": {"_count": 1}}, "twilight": {"_count": 1, "and": {"_count": 1}}, "\u2018dangerous": {"_count": 1, "": {"_count": 1}}, "Christmas": {"_count": 1, "approached": {"_count": 1}}, "nearly": {"_count": 1, "everybody": {"_count": 1}}, "usually": {"_count": 1, "happened": {"_count": 1}}, "solidly": {"_count": 1, "black": {"_count": 1}}, "Purge": {"_count": 1, "and": {"_count": 1}}, "elephant": {"_count": 1, "trunks": {"_count": 1}}, "steam": {"_count": 1, "came": {"_count": 1}}, "Buckbeak": {"_count": 1, "resumed": {"_count": 1}}, "wed": {"_count": 1, "hoped": {"_count": 1}}, "remote": {"_count": 1, "as": {"_count": 1}}, "unpleasant": {"_count": 1, "as": {"_count": 1}}, "poor": {"_count": 1, "as": {"_count": 1}}, "pain": {"_count": 2, "shot": {"_count": 2}}, "heavily": {"_count": 1, "bruised": {"_count": 1}}, "muddy": {"_count": 1, "as": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "Death": {"_count": 3, "Eaters": {"_count": 3}}, "Seamus": {"_count": 1, "had": {"_count": 1}}, "Dean": {"_count": 2, "and": {"_count": 2}}, "did": {"_count": 5, "several": {"_count": 1}, "the": {"_count": 3}, "two": {"_count": 1}}, "Marietta": {"_count": 1, "was": {"_count": 1}}, "headmistress": {"_count": 1, "running": {"_count": 1}}, "somebody": {"_count": 1, "adjusted": {"_count": 1}}, "deeply": {"_count": 2, "immersed": {"_count": 1}, "purple": {"_count": 1}}, "James": {"_count": 3, "made": {"_count": 1}, "had": {"_count": 1}, "came": {"_count": 1}}, "Dads": {"_count": 1, "got": {"_count": 1}}, "forerunners": {"_count": 1, "of": {"_count": 1}}, "anything": {"_count": 2, "else": {"_count": 1}, "because": {"_count": 1}}, "inattentive": {"_count": 1, "to": {"_count": 1}}, "demonstrated": {"_count": 1, "upstairs": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "Luna": {"_count": 3, "walked": {"_count": 1}, "made": {"_count": 1}, "rushed": {"_count": 1}}, "Cho": {"_count": 1, "walked": {"_count": 1}}, "small": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "dusk": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "ominous": {"_count": 1}}, "realization": {"_count": 1, "hit": {"_count": 1}}, "saplings": {"_count": 1, "stretching": {"_count": 1}}, "Grawp": {"_count": 3, "s": {"_count": 1}, "slept": {"_count": 1}, "opened": {"_count": 1}}, "sledges": {"_count": 1, "resting": {"_count": 1}}, "cricket": {"_count": 1, "balls": {"_count": 1}}, "speech": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 2, "Bane": {"_count": 1}, "Ron": {"_count": 1}}, "Hermy": {"_count": 1, "": {"_count": 1}}, "thoroughly": {"_count": 1, "as": {"_count": 1}}, "dreadful": {"_count": 1, "as": {"_count": 1}}, "lights": {"_count": 1, "in": {"_count": 1}}, "Mars": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 14, "lowered": {"_count": 1}, "wanted": {"_count": 1}, "reappeared": {"_count": 1}, "expects": {"_count": 1}, "": {"_count": 1}, "knew": {"_count": 2}, "turned": {"_count": 2}, "had": {"_count": 2}, "s": {"_count": 1}, "and": {"_count": 1}, "fell": {"_count": 1}}, "proof": {"_count": 2, "for": {"_count": 1}, "that": {"_count": 1}}, "footsteps": {"_count": 1, "were": {"_count": 1}}, "yourselves": {"_count": 1, "on": {"_count": 1}}, "Bane": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "hooves": {"_count": 1, "thundered": {"_count": 1}}, "blood": {"_count": 1, "ran": {"_count": 1}}, "painfully": {"_count": 1, "as": {"_count": 1}}, "lightly": {"_count": 2, "as": {"_count": 2}}, "ready": {"_count": 1, "as": {"_count": 1}}, "quiet": {"_count": 1, "as": {"_count": 1}}, "firmly": {"_count": 1, "shut": {"_count": 1}}, "blown": {"_count": 1, "lightbulbs": {"_count": 1}}, "ghosts": {"_count": 1, "fluid": {"_count": 1}}, "chunks": {"_count": 1, "of": {"_count": 1}}, "losing": {"_count": 1, "that": {"_count": 1}}, "boards": {"_count": 1, "and": {"_count": 1}}, "Bellatrix": {"_count": 4, "Lestrange": {"_count": 1}, "drew": {"_count": 1}, "gazed": {"_count": 1}, "to": {"_count": 1}}, "Nevilles": {"_count": 2, "legs": {"_count": 1}, "grandmother": {"_count": 1}}, "calm": {"_count": 1, "as": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "acute": {"_count": 2, "as": {"_count": 2}}, "terrible": {"_count": 1, "as": {"_count": 1}}, "recently": {"_count": 1, "as": {"_count": 1}}, "unbalanced": {"_count": 1, "yet": {"_count": 1}}, "three": {"_count": 1, "gigantic": {"_count": 1}}, "sinister": {"_count": 1, "with": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "Shacklebolts": {"_count": 1, "work": {"_count": 1}}, "perhaps": {"_count": 1, "you": {"_count": 1}}, "obnoxious": {"_count": 1, "and": {"_count": 1}}, "spy": {"_count": 1, "": {"_count": 1}}, "Shield": {"_count": 1, "and": {"_count": 1}}, "others": {"_count": 1, "by": {"_count": 1}}, "requested": {"_count": 1, "and": {"_count": 1}}, "headquarters": {"_count": 2, "said": {"_count": 1}, "now": {"_count": 1}}, "Kreacher": {"_count": 3, "thrashed": {"_count": 1}, "disentangled": {"_count": 1}, "raised": {"_count": 1}}, "rude": {"_count": 1, "as": {"_count": 1}}, "kicking": {"_count": 1, "down": {"_count": 1}}, "visible": {"_count": 1, "as": {"_count": 1}}, "floods": {"_count": 1, "concerning": {"_count": 1}}, "successfully": {"_count": 1, "as": {"_count": 1}}, "deep": {"_count": 1, "as": {"_count": 1}}, "curious": {"_count": 1, "about": {"_count": 1}}, "Lily": {"_count": 2, "had": {"_count": 1}, "joined": {"_count": 1}}, "patchy": {"_count": 1, "as": {"_count": 1}}, "prefect": {"_count": 1, "which": {"_count": 1}}, "Slughorn": {"_count": 3, "gave": {"_count": 1}, "called": {"_count": 1}, "bent": {"_count": 1}}, "Longbottom": {"_count": 1, "was": {"_count": 1}}, "mousyhaired": {"_count": 1, "and": {"_count": 1}}, "blackened": {"_count": 2, "and": {"_count": 2}}, "me": {"_count": 2, "assistant": {"_count": 1}, "": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "curtains": {"_count": 1, "had": {"_count": 1}}, "flexible": {"_count": 1, "and": {"_count": 1}}, "The": {"_count": 1, "Standard": {"_count": 1}}, "black": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "water": {"_count": 2, "": {"_count": 1}, "light": {"_count": 1}}, "promised": {"_count": 1, "and": {"_count": 1}}, "woefully": {"_count": 1, "wrong": {"_count": 1}}, "Humphrey": {"_count": 1, "Belcher": {"_count": 1}}, "kitchen": {"_count": 1, "and": {"_count": 1}}, "Ogden": {"_count": 1, "looked": {"_count": 1}}, "Merope": {"_count": 1, "who": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "Muggleborns": {"_count": 1, "to": {"_count": 1}}, "confirmation": {"_count": 1, "that": {"_count": 1}}, "astonished": {"_count": 1, "as": {"_count": 1}}, "shed": {"_count": 1, "said": {"_count": 1}}, "\u2018Professor": {"_count": 1, "or": {"_count": 1}}, "uneasy": {"_count": 1, "as": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "touchy": {"_count": 1, "and": {"_count": 1}}, "dejected": {"_count": 1, "and": {"_count": 1}}, "Captain": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "Keeper": {"_count": 1, "last": {"_count": 1}}, "Harper": {"_count": 1, "collided": {"_count": 1}}, "friends": {"_count": 3, "": {"_count": 2}, "you": {"_count": 1}}, "perfumes": {"_count": 1, "and": {"_count": 1}}, "modest": {"_count": 1, "as": {"_count": 1}}, "Horace": {"_count": 1, "described": {"_count": 1}}, "Mum": {"_count": 1, "": {"_count": 1}}, "Charlie": {"_count": 1, "isnt": {"_count": 1}}, "Celestina": {"_count": 1, "broke": {"_count": 1}}, "zat": {"_count": 1, "Tonks": {"_count": 1}}, "pleasant": {"_count": 1, "as": {"_count": 1}}, "successful": {"_count": 1, "at": {"_count": 1}}, "icy": {"_count": 1, "as": {"_count": 1}}, "rotund": {"_count": 1, "as": {"_count": 1}}, "respectful": {"_count": 1, "as": {"_count": 1}}, "true": {"_count": 1, "": {"_count": 1}}, "forgetful": {"_count": 1, "as": {"_count": 1}}, "February": {"_count": 1, "arrived": {"_count": 1}}, "lookouts": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "interestingly": {"_count": 1, "shaped": {"_count": 1}}, "McLaggen": {"_count": 1, "took": {"_count": 1}}, "rightfully": {"_count": 1, "his": {"_count": 1}}, "snakelike": {"_count": 1, "the": {"_count": 1}}, "such": {"_count": 3, "": {"_count": 1}, "belongs": {"_count": 1}, "was": {"_count": 1}}, "yourself": {"_count": 1, "never": {"_count": 1}}, "myself": {"_count": 1, "there": {"_count": 1}}, "youd": {"_count": 1, "like": {"_count": 1}}, "doorless": {"_count": 1, "as": {"_count": 1}}, "unnoticed": {"_count": 1, "by": {"_count": 1}}, "indeed": {"_count": 1, "happened": {"_count": 1}}, "Horcruxes": {"_count": 1, "": {"_count": 1}}, "tyrants": {"_count": 1, "everywhere": {"_count": 1}}, "immobile": {"_count": 1, "and": {"_count": 1}}, "indifferent": {"_count": 1, "as": {"_count": 1}}, "Katies": {"_count": 1, "friends": {"_count": 1}}, "Chaser": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "held": {"_count": 1, "her": {"_count": 1}}, "dimly": {"_count": 1, "lit": {"_count": 1}}, "waves": {"_count": 1, "of": {"_count": 1}}, "\u2018run": {"_count": 1, "\u2018hide": {"_count": 1}}, "bare": {"_count": 1, "and": {"_count": 1}}, "level": {"_count": 1, "and": {"_count": 1}}, "paralyzed": {"_count": 1, "as": {"_count": 1}}, "sending": {"_count": 1, "me": {"_count": 1}}, "four": {"_count": 2, "people": {"_count": 1}, "Horcruxes": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "stunned": {"_count": 1, "as": {"_count": 1}}, "belonging": {"_count": 2, "to": {"_count": 2}}, "bait": {"_count": 1, "once": {"_count": 1}}, "setting": {"_count": 1, "out": {"_count": 1}}, "unlike": {"_count": 1, "her": {"_count": 1}}, "Transfiguration": {"_count": 1, "Today": {"_count": 1}}, "comfortably": {"_count": 1, "as": {"_count": 1}}, "will": {"_count": 2, "the": {"_count": 1}, "every": {"_count": 1}}, "willing": {"_count": 1, "to": {"_count": 1}}, "random": {"_count": 1, "phrases": {"_count": 1}}, "innocent": {"_count": 1, "victims": {"_count": 1}}, "specky": {"_count": 1, "scrawny": {"_count": 1}}, "stars": {"_count": 1, "": {"_count": 1}}, "anywhere": {"_count": 1, "cant": {"_count": 1}}, "messy": {"_count": 1, "as": {"_count": 1}}, "gingerly": {"_count": 1, "as": {"_count": 1}}, "destructive": {"_count": 1, "as": {"_count": 1}}, "basilisk": {"_count": 1, "venom": {"_count": 1}}, "attractive": {"_count": 1, "as": {"_count": 1}}, "ancient": {"_count": 1, "as": {"_count": 1}}, "do": {"_count": 2, "many": {"_count": 1}, "the": {"_count": 1}}, "Cousin": {"_count": 1, "Barny": {"_count": 1}}, "gormless": {"_count": 1, "as": {"_count": 1}}, "music": {"_count": 1, "swelled": {"_count": 1}}, "Monsieur": {"_count": 1, "Delacour": {"_count": 1}}, "widely": {"_count": 2, "as": {"_count": 2}}, "carrier": {"_count": 1, "": {"_count": 1}}, "tears": {"_count": 1, "poured": {"_count": 1}}, "puzzled": {"_count": 1, "as": {"_count": 1}}, "Moony": {"_count": 1, "one": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "Kendra": {"_count": 1, "knew": {"_count": 1}}, "cotton": {"_count": 1, "wool": {"_count": 1}}, "headmaster": {"_count": 1, "": {"_count": 1}}, "surreptitiously": {"_count": 1, "as": {"_count": 1}}, "hushed": {"_count": 1, "as": {"_count": 1}}, "Runcorn": {"_count": 1, "and": {"_count": 1}}, "silently": {"_count": 2, "as": {"_count": 2}}, "whitefaced": {"_count": 1, "as": {"_count": 1}}, "Yaxleys": {"_count": 1, "curse": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "lifelines": {"_count": 1, "": {"_count": 1}}, "nonplussed": {"_count": 1, "as": {"_count": 1}}, "near": {"_count": 1, "getting": {"_count": 1}}, "unattainable": {"_count": 1, "as": {"_count": 1}}, "Phineas": {"_count": 2, "Nigellus": {"_count": 2}}, "walking": {"_count": 2, "into": {"_count": 2}}, "bewildered": {"_count": 1, "as": {"_count": 1}}, "mentioned": {"_count": 1, "a": {"_count": 1}}, "sanguine": {"_count": 1, "as": {"_count": 1}}, "overgrown": {"_count": 1, "as": {"_count": 1}}, "pulling": {"_count": 1, "Hermione": {"_count": 1}}, "pumpkins": {"_count": 1, "waddling": {"_count": 1}}, "Ivor": {"_count": 1, "Dillonsby": {"_count": 1}}, "squirrel": {"_count": 1, "poo": {"_count": 1}}, "precociously": {"_count": 1, "brilliant": {"_count": 1}}, "relayed": {"_count": 1, "to": {"_count": 1}}, "Batty": {"_count": 1, "pretends": {"_count": 1}}, "insignificant": {"_count": 1, "as": {"_count": 1}}, "insects": {"_count": 1, "beneath": {"_count": 1}}, "chivalrous": {"_count": 1, "that": {"_count": 1}}, "earrings": {"_count": 1, "": {"_count": 1}}, "beetroot": {"_count": 1, "juice": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "truly": {"_count": 2, "to": {"_count": 1}, "bringing": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloaks": {"_count": 1}}, "slightly": {"_count": 1, "odd": {"_count": 1}}, "Xenophilius": {"_count": 1, "s": {"_count": 1}}, "Xenophiliuss": {"_count": 1, "Stunning": {"_count": 1}}, "debris": {"_count": 1, "rained": {"_count": 1}}, "hiding": {"_count": 1, "under": {"_count": 1}}, "reality": {"_count": 1, "Harry": {"_count": 1}}, "regular": {"_count": 1, "listeners": {"_count": 1}}, "elusive": {"_count": 1, "as": {"_count": 1}}, "whichever": {"_count": 1, "twin": {"_count": 1}}, "vapor": {"_count": 1, "inside": {"_count": 1}}, "scared": {"_count": 2, "of": {"_count": 1}, "as": {"_count": 1}}, "shocked": {"_count": 1, "as": {"_count": 1}}, "Bellatrixs": {"_count": 1, "knife": {"_count": 1}}, "grand": {"_count": 1, "a": {"_count": 1}}, "valuable": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "human": {"_count": 1, "ones": {"_count": 1}}, "reckless": {"_count": 1, "a": {"_count": 1}}, "Griphook": {"_count": 1, "clambered": {"_count": 1}}, "steel": {"_count": 1, "it": {"_count": 1}}, "Albus": {"_count": 2, "and": {"_count": 1}, "resembled": {"_count": 1}}, "head": {"_count": 1, "of": {"_count": 1}}, "Aberforth": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "went": {"_count": 1}}, "Amycus": {"_count": 1, "burst": {"_count": 1}}, "frantically": {"_count": 1, "and": {"_count": 1}}, "wasps": {"_count": 1, "trapped": {"_count": 1}}, "slivers": {"_count": 1, "of": {"_count": 1}}, "dust": {"_count": 1, "fell": {"_count": 1}}, "somewhere": {"_count": 1, "out": {"_count": 1}}, "yells": {"_count": 1, "and": {"_count": 1}}, "capable": {"_count": 1, "the": {"_count": 1}}, "delicately": {"_count": 1, "and": {"_count": 1}}, "legend": {"_count": 1, "says": {"_count": 1}}, "greedily": {"_count": 1, "as": {"_count": 1}}, "Petunia": {"_count": 1, "succeeded": {"_count": 1}}, "wonderful": {"_count": 1, "as": {"_count": 1}}, "surely": {"_count": 2, "as": {"_count": 2}}, "Ignotus": {"_count": 1, "was": {"_count": 1}}, "Molly": {"_count": 1, "Weasleys": {"_count": 1}}, "Mollys": {"_count": 1, "curses": {"_count": 1}}, "Freddie": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 1, "me": {"_count": 1}}, "phoenix": {"_count": 1, "song": {"_count": 1}}, "together": {"_count": 1, "they": {"_count": 1}}}, "she": {"_count": 3558, "spent": {"_count": 2, "so": {"_count": 1}, "the": {"_count": 1}}, "didnt": {"_count": 30, "have": {"_count": 2}, "think": {"_count": 2}, "seem": {"_count": 2}, "even": {"_count": 2}, "say": {"_count": 2}, "pick": {"_count": 1}, "understand": {"_count": 1}, "know": {"_count": 1}, "really": {"_count": 2}, "wait": {"_count": 1}, "ask": {"_count": 1}, "do": {"_count": 1}, "want": {"_count": 4}, "look": {"_count": 2}, "forget": {"_count": 1}, "said": {"_count": 1}, "get": {"_count": 1}, "necessarily": {"_count": 1}, "move": {"_count": 1}, "exist": {"_count": 1}}, "wrestled": {"_count": 1, "a": {"_count": 1}}, "always": {"_count": 8, "got": {"_count": 1}, "wore": {"_count": 1}, "looked": {"_count": 1}, "did": {"_count": 2}, "reminded": {"_count": 1}, "want": {"_count": 1}, "have": {"_count": 1}}, "said": {"_count": 598, "sharply": {"_count": 4}, "impatiently": {"_count": 7}, "quickly": {"_count": 5}, "": {"_count": 125}, "when": {"_count": 6}, "kindly": {"_count": 1}, "looking": {"_count": 11}, "once": {"_count": 1}, "and": {"_count": 16}, "coldly": {"_count": 8}, "finally": {"_count": 3}, "shortly": {"_count": 2}, "Im": {"_count": 1}, "firmly": {"_count": 4}, "sniffily": {"_count": 1}, "glaring": {"_count": 1}, "her": {"_count": 12}, "as": {"_count": 15}, "Morning": {"_count": 1}, "Well": {"_count": 3}, "promptly": {"_count": 1}, "calmly": {"_count": 1}, "sulkily": {"_count": 1}, "silver": {"_count": 1}, "sitting": {"_count": 1}, "frowning": {"_count": 2}, "Hello": {"_count": 1}, "eyeing": {"_count": 1}, "in": {"_count": 36}, "breathlessly": {"_count": 6}, "pouring": {"_count": 1}, "happily": {"_count": 6}, "loudly": {"_count": 3}, "sternly": {"_count": 2}, "with": {"_count": 8}, "blankly": {"_count": 1}, "over": {"_count": 1}, "checking": {"_count": 1}, "swelling": {"_count": 1}, "suddenly": {"_count": 2}, "to": {"_count": 11}, "reprovingly": {"_count": 2}, "flatly": {"_count": 2}, "searching": {"_count": 1}, "You": {"_count": 2}, "handing": {"_count": 3}, "quietly": {"_count": 10}, "shrilly": {"_count": 5}, "not": {"_count": 1}, "dreamily": {"_count": 2}, "nervously": {"_count": 1}, "Id": {"_count": 1}, "softly": {"_count": 9}, "briskly": {"_count": 7}, "urgently": {"_count": 2}, "fiercely": {"_count": 3}, "Voldemorts": {"_count": 1}, "spotting": {"_count": 1}, "lowering": {"_count": 3}, "giggling": {"_count": 1}, "the": {"_count": 2}, "sorting": {"_count": 1}, "angrily": {"_count": 3}, "staring": {"_count": 2}, "mournfully": {"_count": 1}, "tensely": {"_count": 1}, "Ive": {"_count": 1}, "sardonically": {"_count": 1}, "brightly": {"_count": 5}, "Erm": {"_count": 1}, "contemptuously": {"_count": 1}, "imperiously": {"_count": 1}, "holding": {"_count": 3}, "standing": {"_count": 2}, "playfully": {"_count": 1}, "desperately": {"_count": 3}, "just": {"_count": 1}, "beaming": {"_count": 2}, "seriously": {"_count": 1}, "Did": {"_count": 1}, "hastily": {"_count": 2}, "made": {"_count": 1}, "again": {"_count": 2}, "coming": {"_count": 1}, "acidly": {"_count": 1}, "keenly": {"_count": 1}, "dismissively": {"_count": 1}, "slowly": {"_count": 3}, "catching": {"_count": 2}, "after": {"_count": 2}, "but": {"_count": 2}, "matteroffactly": {"_count": 1}, "shrugging": {"_count": 2}, "through": {"_count": 1}, "blinking": {"_count": 1}, "\u2018because": {"_count": 1}, "gloomily": {"_count": 2}, "pointing": {"_count": 10}, "this": {"_count": 2}, "mutinously": {"_count": 1}, "Come": {"_count": 2}, "continuing": {"_count": 1}, "tragically": {"_count": 1}, "jerkily": {"_count": 1}, "weakly": {"_count": 1}, "its": {"_count": 1}, "pensively": {"_count": 1}, "Its": {"_count": 1}, "poking": {"_count": 1}, "excitedly": {"_count": 1}, "glancing": {"_count": 1}, "fondly": {"_count": 2}, "shakily": {"_count": 2}, "tears": {"_count": 2}, "winking": {"_count": 1}, "loftily": {"_count": 2}, "simply": {"_count": 1}, "Oh": {"_count": 1}, "Has": {"_count": 1}, "an": {"_count": 1}, "Have": {"_count": 1}, "irritably": {"_count": 1}, "she": {"_count": 2}, "marching": {"_count": 1}, "smiling": {"_count": 4}, "abruptly": {"_count": 3}, "bluntly": {"_count": 2}, "blearily": {"_count": 1}, "we": {"_count": 1}, "consolingly": {"_count": 1}, "reproachfully": {"_count": 1}, "sweetly": {"_count": 2}, "snapping": {"_count": 1}, "you": {"_count": 2}, "anxiously": {"_count": 2}, "timidly": {"_count": 1}, "severely": {"_count": 1}, "at": {"_count": 1}, "still": {"_count": 3}, "Do": {"_count": 1}, "uncertainly": {"_count": 2}, "were": {"_count": 1}, "furiously": {"_count": 3}, "turning": {"_count": 4}, "defensively": {"_count": 1}, "dully": {"_count": 1}, "are": {"_count": 1}, "waving": {"_count": 1}, "vaguely": {"_count": 1}, "throwing": {"_count": 1}, "thickly": {"_count": 1}, "mopping": {"_count": 1}, "that": {"_count": 1}, "casting": {"_count": 1}, "eagerly": {"_count": 2}, "blushing": {"_count": 1}, "now": {"_count": 1}, "dramatically": {"_count": 1}, "baldly": {"_count": 1}, "witheringly": {"_count": 1}, "cackling": {"_count": 1}, "sadly": {"_count": 2}, "darkly": {"_count": 1}, "it": {"_count": 5}, "nothing": {"_count": 1}, "But": {"_count": 1}, "stunned": {"_count": 1}, "jubilantly": {"_count": 1}, "gaily": {"_count": 1}, "admiringly": {"_count": 1}, "coolly": {"_count": 3}, "feverishly": {"_count": 1}, "wiping": {"_count": 1}, "faintly": {"_count": 1}, "crossly": {"_count": 1}, "I": {"_count": 3}, "curtly": {"_count": 1}, "triumphantly": {"_count": 1}, "ruefully": {"_count": 1}, "warningly": {"_count": 1}, "resentfully": {"_count": 1}, "stiffly": {"_count": 2}, "rapping": {"_count": 1}, "annoyed": {"_count": 1}, "Shall": {"_count": 1}, "feebly": {"_count": 1}, "placidly": {"_count": 1}, "Hes": {"_count": 1}, "flaring": {"_count": 2}, "cheerfully": {"_count": 1}, "stuffing": {"_count": 1}, "glumly": {"_count": 1}, "plaintively": {"_count": 1}, "shed": {"_count": 1}, "scanning": {"_count": 1}, "sounding": {"_count": 1}, "nodding": {"_count": 1}, "soulfully": {"_count": 1}, "tentatively": {"_count": 1}, "pulling": {"_count": 1}, "coaxingly": {"_count": 1}, "hugging": {"_count": 1}, "peering": {"_count": 1}, "flipping": {"_count": 1}, "hotly": {"_count": 1}, "under": {"_count": 1}, "patting": {"_count": 1}, "crouching": {"_count": 1}, "between": {"_count": 1}, "was": {"_count": 1}, "fixing": {"_count": 1}, "wearily": {"_count": 1}, "hopelessly": {"_count": 1}, "bending": {"_count": 1}, "disdainfully": {"_count": 1}, "crisply": {"_count": 1}, "his": {"_count": 1}, "cutting": {"_count": 1}}, "asked": {"_count": 40, "": {"_count": 11}, "what": {"_count": 1}, "shrilly": {"_count": 1}, "looking": {"_count": 2}, "Wood": {"_count": 1}, "them": {"_count": 2}, "beaming": {"_count": 1}, "quietly": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 3}, "in": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}, "slowly": {"_count": 1}, "Harry": {"_count": 1}, "pausing": {"_count": 1}, "tentatively": {"_count": 1}, "smirking": {"_count": 1}, "through": {"_count": 1}, "batting": {"_count": 1}, "Ginny": {"_count": 1}, "brightly": {"_count": 1}, "Lupin": {"_count": 1}, "so": {"_count": 1}, "incredulously": {"_count": 1}}, "went": {"_count": 27, "on": {"_count": 10}, "and": {"_count": 1}, "to": {"_count": 4}, "into": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}, "red": {"_count": 1}, "scarlet": {"_count": 1}, "off": {"_count": 2}, "ferreting": {"_count": 1}, "an": {"_count": 1}, "Ill": {"_count": 1}, "she": {"_count": 1}}, "liked": {"_count": 5, "my": {"_count": 1}, "them": {"_count": 1}, "Cedric": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 408, "most": {"_count": 1}, "not": {"_count": 17}, "": {"_count": 4}, "a": {"_count": 13}, "in": {"_count": 8}, "looking": {"_count": 10}, "so": {"_count": 7}, "taking": {"_count": 3}, "going": {"_count": 11}, "probably": {"_count": 2}, "such": {"_count": 1}, "about": {"_count": 9}, "still": {"_count": 11}, "pretending": {"_count": 1}, "much": {"_count": 1}, "really": {"_count": 2}, "crying": {"_count": 2}, "dashing": {"_count": 1}, "leading": {"_count": 1}, "carrying": {"_count": 8}, "smiling": {"_count": 1}, "trying": {"_count": 6}, "but": {"_count": 2}, "now": {"_count": 6}, "jus": {"_count": 1}, "hopin": {"_count": 1}, "up": {"_count": 1}, "thinking": {"_count": 4}, "found": {"_count": 1}, "just": {"_count": 2}, "taken": {"_count": 1}, "Ron": {"_count": 1}, "sorry": {"_count": 2}, "doing": {"_count": 7}, "you": {"_count": 1}, "locked": {"_count": 1}, "the": {"_count": 7}, "inflating": {"_count": 2}, "very": {"_count": 2}, "draped": {"_count": 1}, "treated": {"_count": 1}, "right": {"_count": 4}, "deeply": {"_count": 1}, "holding": {"_count": 3}, "interrupted": {"_count": 1}, "with": {"_count": 3}, "yelling": {"_count": 2}, "actually": {"_count": 2}, "extremely": {"_count": 1}, "grinning": {"_count": 2}, "shouting": {"_count": 1}, "given": {"_count": 1}, "when": {"_count": 1}, "lurking": {"_count": 1}, "managing": {"_count": 1}, "liable": {"_count": 1}, "saying": {"_count": 5}, "convinced": {"_count": 1}, "bleeding": {"_count": 1}, "meeting": {"_count": 1}, "annoyed": {"_count": 4}, "cleaning": {"_count": 1}, "terrified": {"_count": 1}, "frightened": {"_count": 1}, "it": {"_count": 1}, "revealed": {"_count": 1}, "Head": {"_count": 1}, "steering": {"_count": 1}, "handling": {"_count": 2}, "an": {"_count": 1}, "eating": {"_count": 2}, "by": {"_count": 1}, "pruning": {"_count": 1}, "too": {"_count": 4}, "afraid": {"_count": 1}, "longing": {"_count": 1}, "though": {"_count": 2}, "wildly": {"_count": 1}, "glaring": {"_count": 1}, "also": {"_count": 1}, "surrounded": {"_count": 1}, "bound": {"_count": 2}, "fighting": {"_count": 2}, "standing": {"_count": 1}, "turning": {"_count": 1}, "wasting": {"_count": 1}, "already": {"_count": 2}, "beaming": {"_count": 1}, "putting": {"_count": 1}, "called": {"_count": 1}, "accompanied": {"_count": 1}, "filling": {"_count": 1}, "shaking": {"_count": 1}, "poring": {"_count": 1}, "Fleur": {"_count": 1}, "free": {"_count": 1}, "dead": {"_count": 4}, "there": {"_count": 3}, "dying": {"_count": 1}, "saving": {"_count": 2}, "trembling": {"_count": 2}, "listening": {"_count": 1}, "quite": {"_count": 3}, "rather": {"_count": 1}, "being": {"_count": 4}, "your": {"_count": 1}, "sitting": {"_count": 5}, "kissing": {"_count": 2}, "out": {"_count": 1}, "killed": {"_count": 1}, "sobbing": {"_count": 1}, "reading": {"_count": 1}, "wearing": {"_count": 3}, "talking": {"_count": 5}, "on": {"_count": 2}, "likely": {"_count": 1}, "writing": {"_count": 2}, "squinting": {"_count": 1}, "watching": {"_count": 2}, "giving": {"_count": 2}, "pleased": {"_count": 1}, "waiting": {"_count": 1}, "impressed": {"_count": 1}, "copying": {"_count": 1}, "getting": {"_count": 2}, "steeling": {"_count": 1}, "hurrying": {"_count": 1}, "near": {"_count": 1}, "practicing": {"_count": 1}, "choosing": {"_count": 1}, "addressing": {"_count": 1}, "acting": {"_count": 1}, "down": {"_count": 1}, "restraining": {"_count": 1}, "seeing": {"_count": 1}, "telling": {"_count": 4}, "nowhere": {"_count": 1}, "feeling": {"_count": 3}, "showing": {"_count": 1}, "breathing": {"_count": 1}, "falling": {"_count": 1}, "expelled": {"_count": 1}, "merely": {"_count": 1}, "at": {"_count": 1}, "forced": {"_count": 1}, "rescued": {"_count": 1}, "contemplating": {"_count": 1}, "answering": {"_count": 1}, "unable": {"_count": 1}, "furious": {"_count": 1}, "attempting": {"_count": 1}, "improving": {"_count": 1}, "one": {"_count": 1}, "good": {"_count": 1}, "making": {"_count": 2}, "as": {"_count": 1}, "covered": {"_count": 1}, "alone": {"_count": 1}, "able": {"_count": 1}, "she": {"_count": 1}, "wrong": {"_count": 2}, "writhing": {"_count": 1}, "relatively": {"_count": 1}, "no": {"_count": 2}, "indicating": {"_count": 1}, "wiping": {"_count": 1}, "planning": {"_count": 1}, "staring": {"_count": 1}, "close": {"_count": 1}, "indeed": {"_count": 1}, "off": {"_count": 2}, "perfect": {"_count": 1}, "nearly": {"_count": 1}, "here": {"_count": 1}, "therefore": {"_count": 1}, "proud": {"_count": 2}, "Muggleborn": {"_count": 1}, "helping": {"_count": 1}, "Snape": {"_count": 1}, "angry": {"_count": 1}, "allowed": {"_count": 1}, "fussing": {"_count": 1}, "remembering": {"_count": 1}, "rarely": {"_count": 1}, "ill": {"_count": 2}, "never": {"_count": 1}, "their": {"_count": 1}, "after": {"_count": 1}, "marshaling": {"_count": 1}, "supposed": {"_count": 1}, "all": {"_count": 1}, "leaving": {"_count": 1}, "gaga": {"_count": 1}, "that": {"_count": 1}, "determined": {"_count": 1}, "passing": {"_count": 1}, "bowed": {"_count": 1}, "coping": {"_count": 1}, "sensible": {"_count": 1}, "nothing": {"_count": 1}, "sad": {"_count": 1}, "scared": {"_count": 1}, "hurting": {"_count": 1}, "cut": {"_count": 1}, "beside": {"_count": 1}, "petrified": {"_count": 1}, "born": {"_count": 1}, "tucking": {"_count": 1}, "attacked": {"_count": 1}, "strange": {"_count": 1}, "sweet": {"_count": 1}, "quiet": {"_count": 1}, "fourteen": {"_count": 1}, "and": {"_count": 1}, "swallowed": {"_count": 1}, "who": {"_count": 1}, "beautiful": {"_count": 1}, "desperate": {"_count": 1}, "imagining": {"_count": 1}, "tactful": {"_count": 1}}, "had": {"_count": 313, "been": {"_count": 33}, "said": {"_count": 6}, "fer": {"_count": 1}, "to": {"_count": 8}, "conjured": {"_count": 1}, "done": {"_count": 4}, "decided": {"_count": 2}, "a": {"_count": 12}, "landed": {"_count": 2}, "used": {"_count": 4}, "burst": {"_count": 1}, "spoken": {"_count": 1}, "clambered": {"_count": 1}, "almost": {"_count": 1}, "swallowed": {"_count": 1}, "her": {"_count": 1}, "produced": {"_count": 3}, "come": {"_count": 6}, "brought": {"_count": 3}, "visitors": {"_count": 1}, "never": {"_count": 7}, "turned": {"_count": 4}, "gone": {"_count": 5}, "handed": {"_count": 1}, "made": {"_count": 5}, "acted": {"_count": 1}, "taken": {"_count": 5}, "ever": {"_count": 4}, "banned": {"_count": 1}, "heard": {"_count": 7}, "let": {"_count": 2}, "not": {"_count": 15}, "shadows": {"_count": 1}, "drawn": {"_count": 2}, "regained": {"_count": 2}, "hurried": {"_count": 1}, "met": {"_count": 1}, "intended": {"_count": 1}, "run": {"_count": 1}, "indicated": {"_count": 2}, "one": {"_count": 1}, "just": {"_count": 13}, "cleared": {"_count": 1}, "begged": {"_count": 1}, "assigned": {"_count": 1}, "Its": {"_count": 1}, "also": {"_count": 1}, "given": {"_count": 1}, "led": {"_count": 2}, "obviously": {"_count": 1}, "thought": {"_count": 3}, "hit": {"_count": 1}, "found": {"_count": 2}, "an": {"_count": 2}, "allowed": {"_count": 1}, "received": {"_count": 1}, "you": {"_count": 1}, "looked": {"_count": 1}, "no": {"_count": 1}, "left": {"_count": 3}, "had": {"_count": 2}, "got": {"_count": 3}, "restrained": {"_count": 1}, "remembered": {"_count": 1}, "worn": {"_count": 2}, "stopped": {"_count": 2}, "tried": {"_count": 1}, "learned": {"_count": 1}, "stuck": {"_count": 1}, "chosen": {"_count": 2}, "placed": {"_count": 2}, "definitely": {"_count": 1}, "only": {"_count": 2}, "winced": {"_count": 1}, "disappeared": {"_count": 2}, "in": {"_count": 3}, "preferred": {"_count": 1}, "interpreted": {"_count": 1}, "shown": {"_count": 1}, "followed": {"_count": 1}, "sat": {"_count": 2}, "reduced": {"_count": 1}, "managed": {"_count": 1}, "lockjaw": {"_count": 1}, "finished": {"_count": 4}, "already": {"_count": 3}, "probably": {"_count": 2}, "stood": {"_count": 2}, "settled": {"_count": 1}, "slopped": {"_count": 1}, "shed": {"_count": 1}, "something": {"_count": 1}, "described": {"_count": 1}, "shouted": {"_count": 1}, "vouched": {"_count": 1}, "sprouted": {"_count": 1}, "even": {"_count": 1}, "gotten": {"_count": 1}, "drifted": {"_count": 1}, "any": {"_count": 1}, "attempted": {"_count": 1}, "collapsed": {"_count": 1}, "slammed": {"_count": 1}, "sealed": {"_count": 1}, "started": {"_count": 2}, "returned": {"_count": 2}, "recovered": {"_count": 2}, "crept": {"_count": 1}, "pinned": {"_count": 1}, "slipped": {"_count": 1}, "entered": {"_count": 1}, "reached": {"_count": 2}, "laughed": {"_count": 1}, "time": {"_count": 1}, "convinced": {"_count": 1}, "the": {"_count": 3}, "clearly": {"_count": 1}, "merely": {"_count": 1}, "Disapparated": {"_count": 1}, "squeezed": {"_count": 1}, "succumbed": {"_count": 1}, "loathed": {"_count": 1}, "now": {"_count": 1}, "known": {"_count": 2}, "tripped": {"_count": 1}, "many": {"_count": 1}, "told": {"_count": 1}, "since": {"_count": 1}, "hugged": {"_count": 1}, "him": {"_count": 1}, "scribbled": {"_count": 1}, "dropped": {"_count": 1}, "accessorized": {"_count": 1}, "faced": {"_count": 1}, "helped": {"_count": 1}, "assumed": {"_count": 1}, "fastened": {"_count": 1}, "removed": {"_count": 1}, "deluded": {"_count": 1}, "sensed": {"_count": 2}, "seen": {"_count": 1}, "it": {"_count": 1}, "denied": {"_count": 1}, "little": {"_count": 1}, "brightened": {"_count": 1}, "insulted": {"_count": 1}, "cried": {"_count": 1}}, "fixed": {"_count": 2, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "did": {"_count": 42, "now": {"_count": 1}, "have": {"_count": 2}, "mind": {"_count": 1}, "not": {"_count": 20}, "see": {"_count": 1}, "said": {"_count": 2}, "it": {"_count": 1}, "something": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}, "with": {"_count": 1}, "this": {"_count": 1}, "like": {"_count": 1}, "did": {"_count": 1}, "so": {"_count": 3}, "a": {"_count": 1}, "that": {"_count": 1}}, "pressed": {"_count": 4, "on": {"_count": 3}, "a": {"_count": 1}}, "thought": {"_count": 20, "he": {"_count": 5}, "it": {"_count": 4}, "and": {"_count": 1}, "quite": {"_count": 1}, "him": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}, "Hagrid": {"_count": 1}, "she": {"_count": 1}, "you": {"_count": 1}, "might": {"_count": 1}, "wed": {"_count": 2}}, "opened": {"_count": 11, "the": {"_count": 3}, "her": {"_count": 6}, "it": {"_count": 1}, "to": {"_count": 1}}, "screeched": {"_count": 4, "": {"_count": 2}, "louder": {"_count": 1}, "pressing": {"_count": 1}}, "demanded": {"_count": 1, "": {"_count": 1}}, "hates": {"_count": 2, "the": {"_count": 1}, "Celestina": {"_count": 1}}, "snarled": {"_count": 2, "": {"_count": 2}}, "cried": {"_count": 14, "flinging": {"_count": 1}, "pointing": {"_count": 2}, "and": {"_count": 3}, "did": {"_count": 1}, "Cruc": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 1}, "on": {"_count": 1}, "shaking": {"_count": 1}, "for": {"_count": 1}}, "left": {"_count": 17, "to": {"_count": 1}, "taking": {"_count": 1}, "": {"_count": 5}, "the": {"_count": 6}, "see": {"_count": 1}, "me": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}}, "tried": {"_count": 6, "to": {"_count": 5}, "very": {"_count": 1}}, "crossed": {"_count": 1, "Privet": {"_count": 1}}, "couldnt": {"_count": 21, "believe": {"_count": 1}, "move": {"_count": 1}, "find": {"_count": 1}, "bear": {"_count": 1}, "miss": {"_count": 1}, "do": {"_count": 1}, "remember": {"_count": 2}, "hear": {"_count": 3}, "reach": {"_count": 1}, "see": {"_count": 1}, "climb": {"_count": 1}, "refuse": {"_count": 1}, "control": {"_count": 2}, "show": {"_count": 1}, "get": {"_count": 1}, "keep": {"_count": 1}, "stand": {"_count": 1}}, "might": {"_count": 26, "faint": {"_count": 2}, "have": {"_count": 10}, "run": {"_count": 1}, "be": {"_count": 5}, "knock": {"_count": 1}, "want": {"_count": 1}, "not": {"_count": 2}, "need": {"_count": 1}, "throw": {"_count": 1}, "soften": {"_count": 1}, "give": {"_count": 1}}, "got": {"_count": 18, "a": {"_count": 3}, "to": {"_count": 4}, "": {"_count": 1}, "up": {"_count": 3}, "against": {"_count": 1}, "so": {"_count": 1}, "back": {"_count": 1}, "Malfoy": {"_count": 1}, "hit": {"_count": 1}, "here": {"_count": 1}, "magic": {"_count": 1}}, "met": {"_count": 6, "that": {"_count": 1}, "to": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}, "Peeves": {"_count": 1}}, "pleased": {"_count": 1, "": {"_count": 1}}, "grabbed": {"_count": 2, "him": {"_count": 1}, "Hermione": {"_count": 1}}, "turned": {"_count": 31, "to": {"_count": 6}, "and": {"_count": 5}, "on": {"_count": 3}, "back": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 3}, "up": {"_count": 1}, "another": {"_count": 1}, "gracefully": {"_count": 1}, "scarlet": {"_count": 1}, "slightly": {"_count": 1}, "abruptly": {"_count": 1}, "quickly": {"_count": 1}, "slowly": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "away": {"_count": 1}, "the": {"_count": 1}}, "fell": {"_count": 2, "back": {"_count": 1}, "on": {"_count": 1}}, "put": {"_count": 11, "a": {"_count": 3}, "her": {"_count": 2}, "it": {"_count": 2}, "on": {"_count": 2}, "up": {"_count": 1}, "hers": {"_count": 1}}, "say": {"_count": 7, "": {"_count": 1}, "who": {"_count": 1}, "to": {"_count": 1}, "Dont": {"_count": 1}, "if": {"_count": 2}, "anything": {"_count": 1}}, "wasnt": {"_count": 15, "a": {"_count": 2}, "pointing": {"_count": 1}, "Petrified": {"_count": 1}, "carrying": {"_count": 1}, "even": {"_count": 1}, "telling": {"_count": 1}, "entirely": {"_count": 1}, "exactly": {"_count": 1}, "giggling": {"_count": 1}, "supposed": {"_count": 1}, "the": {"_count": 1}, "much": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 1}}, "gave": {"_count": 21, "them": {"_count": 1}, "him": {"_count": 3}, "to": {"_count": 1}, "Harry": {"_count": 2}, "an": {"_count": 1}, "a": {"_count": 9}, "up": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "Mrs": {"_count": 1}}, "changed": {"_count": 2, "her": {"_count": 1}, "changed": {"_count": 1}}, "fluttered": {"_count": 2, "down": {"_count": 2}}, "follows": {"_count": 1, "me": {"_count": 1}}, "hadnt": {"_count": 11, "tried": {"_count": 1}, "heard": {"_count": 3}, "acted": {"_count": 1}, "been": {"_count": 1}, "yet": {"_count": 1}, "done": {"_count": 1}, "stayed": {"_count": 1}, "taken": {"_count": 1}, "hesitated": {"_count": 1}}, "bored": {"_count": 1, "them": {"_count": 1}}, "barked": {"_count": 7, "": {"_count": 3}, "across": {"_count": 1}, "at": {"_count": 3}}, "told": {"_count": 26, "Malfoy": {"_count": 1}, "Harry": {"_count": 5}, "the": {"_count": 4}, "them": {"_count": 2}, "Professor": {"_count": 1}, "me": {"_count": 2}, "him": {"_count": 9}, "her": {"_count": 1}, "Lily": {"_count": 1}}, "shouted": {"_count": 8, "but": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 2}, "and": {"_count": 1}, "stamping": {"_count": 1}}, "strode": {"_count": 9, "toward": {"_count": 2}, "across": {"_count": 1}, "off": {"_count": 2}, "between": {"_count": 1}, "straight": {"_count": 1}, "into": {"_count": 1}, "past": {"_count": 1}}, "suddenly": {"_count": 5, "smiled": {"_count": 1}, "dashed": {"_count": 1}, "uttered": {"_count": 1}, "threw": {"_count": 1}, "abandoning": {"_count": 1}}, "snapped": {"_count": 15, "": {"_count": 5}, "now": {"_count": 1}, "sounding": {"_count": 1}, "open": {"_count": 1}, "before": {"_count": 1}, "as": {"_count": 2}, "waving": {"_count": 1}, "her": {"_count": 1}, "stuffing": {"_count": 1}, "dropping": {"_count": 1}}, "heard": {"_count": 6, "you": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}, "Malfoy": {"_count": 1}, "footsteps": {"_count": 1}}, "seemed": {"_count": 17, "to": {"_count": 14}, "very": {"_count": 1}, "older": {"_count": 1}, "distracted": {"_count": 1}}, "goes": {"_count": 1, "shes": {"_count": 1}}, "started": {"_count": 7, "looking": {"_count": 1}, "cutting": {"_count": 1}, "to": {"_count": 1}, "unloading": {"_count": 1}, "the": {"_count": 1}, "believing": {"_count": 1}, "": {"_count": 1}}, "knocked": {"_count": 1, "Professor": {"_count": 1}}, "crouched": {"_count": 2, "down": {"_count": 2}}, "scrambled": {"_count": 2, "back": {"_count": 1}, "blushing": {"_count": 1}}, "makes": {"_count": 1, "us": {"_count": 1}}, "thinks": {"_count": 10, "you": {"_count": 1}, "it": {"_count": 1}, "are": {"_count": 1}, "youre": {"_count": 1}, "theyre": {"_count": 1}, "its": {"_count": 1}, "she": {"_count": 1}, "going": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 19, "the": {"_count": 4}, "Harry": {"_count": 4}, "Ron": {"_count": 3}, "Lavender": {"_count": 1}, "Hermione": {"_count": 1}, "Dean": {"_count": 2}, "her": {"_count": 3}, "she": {"_count": 1}}, "sprinted": {"_count": 2, "up": {"_count": 1}, "away": {"_count": 1}}, "whispered": {"_count": 44, "excitedly": {"_count": 1}, "dramatically": {"_count": 1}, "": {"_count": 21}, "no": {"_count": 1}, "to": {"_count": 2}, "in": {"_count": 1}, "I": {"_count": 1}, "moving": {"_count": 1}, "there": {"_count": 1}, "back": {"_count": 2}, "pulling": {"_count": 1}, "urgently": {"_count": 1}, "as": {"_count": 1}, "bending": {"_count": 1}, "tears": {"_count": 1}, "come": {"_count": 1}, "and": {"_count": 2}, "waving": {"_count": 1}, "gazing": {"_count": 1}, "pointing": {"_count": 1}, "were": {"_count": 1}}, "found": {"_count": 5, "what": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 3}}, "kept": {"_count": 12, "nagging": {"_count": 1}, "looking": {"_count": 1}, "cutting": {"_count": 1}, "unusually": {"_count": 1}, "shuffling": {"_count": 1}, "saying": {"_count": 2}, "throwing": {"_count": 1}, "her": {"_count": 2}, "patting": {"_count": 1}, "cropping": {"_count": 1}}, "recognize": {"_count": 1, "a": {"_count": 1}}, "believes": {"_count": 2, "me": {"_count": 2}}, "towered": {"_count": 1, "over": {"_count": 1}}, "felt": {"_count": 4, "they": {"_count": 1}, "them": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}}, "spluttered": {"_count": 1, "": {"_count": 1}}, "agreed": {"_count": 5, "to": {"_count": 2}, "that": {"_count": 1}, "shivering": {"_count": 1}, "": {"_count": 1}}, "lost": {"_count": 3, "her": {"_count": 2}, "no": {"_count": 1}}, "stormed": {"_count": 4, "": {"_count": 1}, "off": {"_count": 1}, "away": {"_count": 1}, "out": {"_count": 1}}, "wailed": {"_count": 2, "": {"_count": 1}, "every": {"_count": 1}}, "can": {"_count": 13, "keep": {"_count": 1}, "take": {"_count": 1}, "chew": {"_count": 1}, "and": {"_count": 1}, "swim": {"_count": 1}, "": {"_count": 1}, "lecture": {"_count": 1}, "do": {"_count": 1}, "speak": {"_count": 1}, "get": {"_count": 1}, "I": {"_count": 1}, "have": {"_count": 1}, "stop": {"_count": 1}}, "watched": {"_count": 5, "in": {"_count": 1}, "him": {"_count": 1}, "Professor": {"_count": 2}, "Kreacher": {"_count": 1}}, "whipped": {"_count": 1, "out": {"_count": 1}}, "walked": {"_count": 14, "up": {"_count": 1}, "in": {"_count": 1}, "forward": {"_count": 1}, "him": {"_count": 1}, "by": {"_count": 2}, "away": {"_count": 2}, "": {"_count": 1}, "toward": {"_count": 1}, "off": {"_count": 1}, "back": {"_count": 1}, "she": {"_count": 1}, "over": {"_count": 1}}, "clapped": {"_count": 1, "her": {"_count": 1}}, "let": {"_count": 10, "go": {"_count": 1}, "Ron": {"_count": 1}, "out": {"_count": 6}, "you": {"_count": 1}, "the": {"_count": 1}}, "rushed": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "held": {"_count": 4, "herself": {"_count": 1}, "an": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 1}}, "straightened": {"_count": 3, "his": {"_count": 1}, "up": {"_count": 2}}, "squealed": {"_count": 3, "": {"_count": 1}, "through": {"_count": 1}, "her": {"_count": 1}}, "aimed": {"_count": 1, "a": {"_count": 1}}, "But": {"_count": 1, "he": {"_count": 1}}, "looked": {"_count": 65, "like": {"_count": 4}, "worried": {"_count": 1}, "at": {"_count": 3}, "around": {"_count": 5}, "up": {"_count": 5}, "almost": {"_count": 1}, "positively": {"_count": 2}, "terrified": {"_count": 1}, "exactly": {"_count": 1}, "nearly": {"_count": 1}, "angry": {"_count": 1}, "him": {"_count": 1}, "miserable": {"_count": 1}, "resolute": {"_count": 1}, "down": {"_count": 2}, "furious": {"_count": 1}, "just": {"_count": 2}, "slightly": {"_count": 3}, "as": {"_count": 5}, "back": {"_count": 4}, "madder": {"_count": 1}, "directly": {"_count": 1}, "rather": {"_count": 1}, "really": {"_count": 1}, "much": {"_count": 1}, "luminous": {"_count": 1}, "drawn": {"_count": 1}, "reproachfully": {"_count": 1}, "quite": {"_count": 2}, "more": {"_count": 1}, "hopefully": {"_count": 1}, "terrible": {"_count": 1}, "amused": {"_count": 1}, "simultaneously": {"_count": 1}, "a": {"_count": 1}, "frightened": {"_count": 2}, "into": {"_count": 1}, "irritable": {"_count": 1}}, "threw": {"_count": 15, "sausages": {"_count": 1}, "the": {"_count": 6}, "a": {"_count": 1}, "Witch": {"_count": 1}, "around": {"_count": 1}, "it": {"_count": 1}, "herself": {"_count": 3}, "her": {"_count": 1}}, "muttered": {"_count": 11, "things": {"_count": 1}, "pushing": {"_count": 1}, "angrily": {"_count": 1}, "": {"_count": 1}, "sleepily": {"_count": 1}, "groping": {"_count": 1}, "finally": {"_count": 1}, "again": {"_count": 1}, "no": {"_count": 1}, "something": {"_count": 1}, "more": {"_count": 1}}, "assured": {"_count": 1, "Harry": {"_count": 1}}, "added": {"_count": 56, "to": {"_count": 6}, "in": {"_count": 7}, "anxiously": {"_count": 2}, "and": {"_count": 3}, "eyeing": {"_count": 2}, "quickly": {"_count": 3}, "irritably": {"_count": 1}, "briskly": {"_count": 1}, "her": {"_count": 1}, "as": {"_count": 3}, "spotting": {"_count": 1}, "guiltily": {"_count": 1}, "hastily": {"_count": 3}, "looking": {"_count": 2}, "beaming": {"_count": 1}, "checking": {"_count": 1}, "": {"_count": 1}, "thoughtfully": {"_count": 1}, "staring": {"_count": 1}, "sweeping": {"_count": 1}, "kindly": {"_count": 1}, "at": {"_count": 1}, "rather": {"_count": 1}, "contemptuously": {"_count": 1}, "angrily": {"_count": 2}, "with": {"_count": 1}, "peering": {"_count": 1}, "broodingly": {"_count": 1}, "fiercely": {"_count": 1}, "when": {"_count": 1}, "before": {"_count": 1}, "pointing": {"_count": 1}, "bitterly": {"_count": 1}}, "pulled": {"_count": 24, "a": {"_count": 6}, "his": {"_count": 3}, "Harry": {"_count": 1}, "out": {"_count": 8}, "him": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 1}, "aside": {"_count": 1}, "her": {"_count": 1}}, "saw": {"_count": 19, "Harry": {"_count": 4}, "anything": {"_count": 1}, "him": {"_count": 3}, "that": {"_count": 1}, "Hagrid": {"_count": 1}, "who": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 1}, "Kreacher": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "Firenze": {"_count": 1}, "me": {"_count": 1}}, "be": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "sighed": {"_count": 6, "": {"_count": 1}, "and": {"_count": 1}, "just": {"_count": 1}, "as": {"_count": 1}, "looking": {"_count": 1}, "turning": {"_count": 1}}, "offered": {"_count": 1, "him": {"_count": 1}}, "cursed": {"_count": 1, "as": {"_count": 1}}, "rolled": {"_count": 2, "away": {"_count": 1}, "up": {"_count": 1}}, "rose": {"_count": 1, "out": {"_count": 1}}, "entered": {"_count": 3, "Harry": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "merely": {"_count": 5, "pointed": {"_count": 1}, "glared": {"_count": 1}, "shook": {"_count": 1}, "stared": {"_count": 1}, "looked": {"_count": 1}}, "came": {"_count": 11, "striding": {"_count": 1}, "nearer": {"_count": 1}, "back": {"_count": 2}, "marching": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 2}, "barely": {"_count": 1}, "": {"_count": 2}}, "is": {"_count": 26, "": {"_count": 6}, "till": {"_count": 1}, "said": {"_count": 2}, "back": {"_count": 1}, "told": {"_count": 1}, "selected": {"_count": 1}, "obliged": {"_count": 1}, "cant": {"_count": 1}, "not": {"_count": 1}, "allowed": {"_count": 1}, "without": {"_count": 1}, "my": {"_count": 1}, "reporting": {"_count": 1}, "and": {"_count": 1}, "all": {"_count": 1}, "still": {"_count": 1}, "quite": {"_count": 1}, "Ron": {"_count": 1}, "most": {"_count": 1}, "what": {"_count": 1}}, "spoke": {"_count": 18, "and": {"_count": 3}, "making": {"_count": 1}, "they": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 3}, "her": {"_count": 2}, "in": {"_count": 2}, "again": {"_count": 1}, "somebody": {"_count": 1}, "she": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}}, "wouldn": {"_count": 1, "say": {"_count": 1}}, "keeps": {"_count": 1, "having": {"_count": 1}}, "all": {"_count": 2, "all": {"_count": 1}, "right": {"_count": 1}}, "": {"_count": 55, "?": {"_count": 51}, ".": {"_count": 4}}, "reached": {"_count": 11, "it": {"_count": 1}, "down": {"_count": 1}, "the": {"_count": 5}, "for": {"_count": 2}, "him": {"_count": 2}}, "still": {"_count": 6, "seems": {"_count": 1}, "wont": {"_count": 2}, "possessed": {"_count": 1}, "suspected": {"_count": 1}, "had": {"_count": 1}}, "repeated": {"_count": 10, "suspiciously": {"_count": 1}, "swinging": {"_count": 1}, "shaking": {"_count": 1}, "impatiently": {"_count": 1}, "in": {"_count": 1}, "coolly": {"_count": 1}, "uncertainly": {"_count": 1}, "": {"_count": 1}, "brandishing": {"_count": 1}, "with": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "murmured": {"_count": 4, "running": {"_count": 1}, "over": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "raged": {"_count": 1, "holding": {"_count": 1}}, "would": {"_count": 46, "entrust": {"_count": 1}, "be": {"_count": 8}, "have": {"_count": 9}, "ordinarily": {"_count": 1}, "consent": {"_count": 1}, "one": {"_count": 1}, "say": {"_count": 1}, "not": {"_count": 10}, "help": {"_count": 2}, "seize": {"_count": 1}, "": {"_count": 1}, "return": {"_count": 1}, "like": {"_count": 1}, "attack": {"_count": 1}, "somehow": {"_count": 1}, "turn": {"_count": 1}, "see": {"_count": 1}, "allow": {"_count": 1}, "speak": {"_count": 1}, "unravel": {"_count": 1}, "never": {"_count": 1}}, "stopped": {"_count": 6, "before": {"_count": 1}, "in": {"_count": 1}, "dead": {"_count": 3}, "she": {"_count": 1}}, "could": {"_count": 60, "sit": {"_count": 1}, "possibly": {"_count": 1}, "boom": {"_count": 1}, "said": {"_count": 1}, "actually": {"_count": 1}, "muster": {"_count": 3}, "": {"_count": 3}, "smell": {"_count": 1}, "have": {"_count": 3}, "lay": {"_count": 1}, "reach": {"_count": 2}, "hear": {"_count": 1}, "see": {"_count": 6}, "say": {"_count": 2}, "easily": {"_count": 1}, "ignore": {"_count": 1}, "attach": {"_count": 1}, "reasonably": {"_count": 1}, "make": {"_count": 2}, "melt": {"_count": 1}, "induce": {"_count": 1}, "take": {"_count": 2}, "not": {"_count": 8}, "do": {"_count": 3}, "begin": {"_count": 1}, "complete": {"_count": 1}, "go": {"_count": 2}, "because": {"_count": 1}, "be": {"_count": 1}, "and": {"_count": 1}, "get": {"_count": 1}, "it": {"_count": 1}, "open": {"_count": 1}, "hardly": {"_count": 1}, "feel": {"_count": 1}}, "landed": {"_count": 2, "on": {"_count": 1}, "lightly": {"_count": 1}}, "were": {"_count": 9, "sending": {"_count": 1}, "something": {"_count": 1}, "some": {"_count": 1}, "mad": {"_count": 2}, "wearing": {"_count": 1}, "struggling": {"_count": 1}, "standing": {"_count": 1}, "sitting": {"_count": 1}}, "shook": {"_count": 4, "Millicent": {"_count": 1}, "her": {"_count": 3}}, "howled": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "cant": {"_count": 9, "feel": {"_count": 1}, "have": {"_count": 1}, "even": {"_count": 1}, "transform": {"_count": 1}, "break": {"_count": 1}, "make": {"_count": 1}, "say": {"_count": 1}, "work": {"_count": 1}, "blame": {"_count": 1}}, "lived": {"_count": 1, "just": {"_count": 1}}, "understand": {"_count": 1, "": {"_count": 1}}, "lowered": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 2}}, "never": {"_count": 9, "left": {"_count": 1}, "found": {"_count": 1}, "knew": {"_count": 1}, "has": {"_count": 1}, "puts": {"_count": 1}, "complained": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}, "attended": {"_count": 1}}, "finds": {"_count": 1, "out": {"_count": 1}}, "spotted": {"_count": 2, "me": {"_count": 1}, "Winky": {"_count": 1}}, "warned": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "must": {"_count": 8, "be": {"_count": 2}, "really": {"_count": 1}, "have": {"_count": 3}, "lie": {"_count": 1}, "": {"_count": 1}}, "wont": {"_count": 7, "wake": {"_count": 1}, "hear": {"_count": 1}, "do": {"_count": 1}, "let": {"_count": 1}, "speak": {"_count": 1}, "I": {"_count": 1}, "be": {"_count": 1}}, "finally": {"_count": 2, "became": {"_count": 1}, "bowed": {"_count": 1}}, "sat": {"_count": 8, "up": {"_count": 2}, "down": {"_count": 3}, "in": {"_count": 1}, "on": {"_count": 1}, "spectacles": {"_count": 1}}, "have": {"_count": 4, "been": {"_count": 1}, "learned": {"_count": 2}, "an": {"_count": 1}}, "allowed": {"_count": 1, "herself": {"_count": 1}}, "wanted": {"_count": 18, "to": {"_count": 14}, "me": {"_count": 1}, "us": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}}, "bred": {"_count": 1, "bulldogs": {"_count": 1}}, "does": {"_count": 7, "when": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}, "catch": {"_count": 1}, "say": {"_count": 1}, "": {"_count": 1}}, "even": {"_count": 6, "had": {"_count": 1}, "seemed": {"_count": 1}, "gets": {"_count": 1}, "held": {"_count": 1}, "forgot": {"_count": 1}, "consented": {"_count": 1}}, "chuckled": {"_count": 1, "": {"_count": 1}}, "patted": {"_count": 3, "Aunt": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}}, "ran": {"_count": 8, "off": {"_count": 2}, "for": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "up": {"_count": 1}, "from": {"_count": 1}, "freeing": {"_count": 1}}, "drifted": {"_count": 2, "up": {"_count": 1}, "off": {"_count": 1}}, "stalked": {"_count": 3, "off": {"_count": 2}, "away": {"_count": 1}}, "replied": {"_count": 9, "pointing": {"_count": 1}, "": {"_count": 1}, "waving": {"_count": 1}, "Youll": {"_count": 1}, "and": {"_count": 2}, "sadly": {"_count": 1}, "looking": {"_count": 1}, "Of": {"_count": 1}}, "handed": {"_count": 5, "Harry": {"_count": 1}, "him": {"_count": 1}, "to": {"_count": 2}, "out": {"_count": 1}}, "shot": {"_count": 6, "suddenly": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 2}, "Dumbledore": {"_count": 1}, "Ron": {"_count": 1}}, "caught": {"_count": 3, "Neville": {"_count": 1}, "sight": {"_count": 2}}, "pointed": {"_count": 10, "at": {"_count": 5}, "around": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}, "into": {"_count": 1}, "Bellatrixs": {"_count": 1}}, "transformed": {"_count": 2, "herself": {"_count": 1}, "various": {"_count": 1}}, "arrived": {"_count": 2, "at": {"_count": 1}, "the": {"_count": 1}}, "talking": {"_count": 2, "about": {"_count": 2}}, "phoned": {"_count": 1, "the": {"_count": 1}}, "packed": {"_count": 1, "all": {"_count": 1}}, "marched": {"_count": 3, "off": {"_count": 2}, "past": {"_count": 1}}, "Harry": {"_count": 10, "and": {"_count": 8}, "": {"_count": 1}, "Ron": {"_count": 1}}, "doesnt": {"_count": 7, "think": {"_count": 1}, "seem": {"_count": 1}, "want": {"_count": 1}, "said": {"_count": 1}, "keep": {"_count": 1}, "like": {"_count": 1}, "have": {"_count": 1}}, "who": {"_count": 6, "brought": {"_count": 1}, "had": {"_count": 4}, "finished": {"_count": 1}}, "called": {"_count": 11, "as": {"_count": 2}, "after": {"_count": 1}, "up": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 1}, "softly": {"_count": 1}, "over": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "Hes": {"_count": 1}}, "wouldnt": {"_count": 8, "let": {"_count": 1}, "be": {"_count": 1}, "": {"_count": 1}, "have": {"_count": 2}, "tell": {"_count": 1}, "come": {"_count": 1}, "do": {"_count": 1}}, "refused": {"_count": 2, "to": {"_count": 2}}, "after": {"_count": 2, "all": {"_count": 2}}, "knows": {"_count": 9, "the": {"_count": 1}, "": {"_count": 2}, "my": {"_count": 1}, "hes": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "who": {"_count": 1}}, "disappeared": {"_count": 3, "into": {"_count": 2}, "in": {"_count": 1}}, "needed": {"_count": 3, "to": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "bit": {"_count": 1, "her": {"_count": 1}}, "shrieked": {"_count": 14, "loudly": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 5}, "pointing": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "making": {"_count": 1}, "her": {"_count": 1}}, "barely": {"_count": 2, "spoke": {"_count": 1}, "reached": {"_count": 1}}, "doing": {"_count": 5, "it": {"_count": 2}, "back": {"_count": 1}, "here": {"_count": 1}, "that": {"_count": 1}}, "searched": {"_count": 1, "for": {"_count": 1}}, "rides": {"_count": 1, "a": {"_count": 1}}, "examined": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "hurtled": {"_count": 1, "downward": {"_count": 1}}, "tucked": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 8, "acted": {"_count": 1}, "wasnt": {"_count": 1}, "waved": {"_count": 1}, "poked": {"_count": 1}, "thought": {"_count": 1}, "couldnt": {"_count": 1}, "sort": {"_count": 1}, "wouldnt": {"_count": 1}}, "sent": {"_count": 3, "Neville": {"_count": 1}, "another": {"_count": 1}, "the": {"_count": 1}}, "sobbed": {"_count": 6, "": {"_count": 2}, "over": {"_count": 1}, "again": {"_count": 1}, "into": {"_count": 2}}, "swung": {"_count": 6, "it": {"_count": 1}, "forward": {"_count": 5}}, "tugged": {"_count": 1, "her": {"_count": 1}}, "soared": {"_count": 3, "around": {"_count": 1}, "over": {"_count": 1}, "like": {"_count": 1}}, "too": {"_count": 10, "was": {"_count": 2}, "looked": {"_count": 2}, "fought": {"_count": 1}, "left": {"_count": 1}, "lowered": {"_count": 1}, "swooped": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 1}}, "missed": {"_count": 2, "by": {"_count": 1}, "death": {"_count": 1}}, "burst": {"_count": 5, "out": {"_count": 3}, "into": {"_count": 2}}, "ask": {"_count": 1, "": {"_count": 1}}, "informed": {"_count": 2, "Harry": {"_count": 2}}, "began": {"_count": 9, "but": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 5}, "hacking": {"_count": 1}}, "hid": {"_count": 1, "them": {"_count": 1}}, "picked": {"_count": 3, "up": {"_count": 1}, "it": {"_count": 2}}, "choked": {"_count": 3, "": {"_count": 1}, "holding": {"_count": 1}, "of": {"_count": 1}}, "nodded": {"_count": 5, "again": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}}, "led": {"_count": 12, "me": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 5}, "the": {"_count": 5}}, "seized": {"_count": 4, "the": {"_count": 1}, "Fred": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 1}}, "meant": {"_count": 5, "Harry": {"_count": 1}, "Fred": {"_count": 1}, "isnt": {"_count": 1}, "it": {"_count": 1}, "business": {"_count": 1}}, "gasped": {"_count": 4, "": {"_count": 2}, "for": {"_count": 1}, "You": {"_count": 1}}, "mouthed": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "knew": {"_count": 15, "exactly": {"_count": 3}, "they": {"_count": 1}, "hed": {"_count": 1}, "of": {"_count": 1}, "if": {"_count": 1}, "the": {"_count": 1}, "Thus": {"_count": 1}, "Professor": {"_count": 1}, "Yeah": {"_count": 1}, "youd": {"_count": 1}, "would": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}}, "moaned": {"_count": 1, "dashing": {"_count": 1}}, "took": {"_count": 18, "out": {"_count": 1}, "marks": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}, "hold": {"_count": 1}, "a": {"_count": 3}, "advantage": {"_count": 1}, "you": {"_count": 3}, "back": {"_count": 1}, "offense": {"_count": 1}, "of": {"_count": 1}, "it": {"_count": 1}, "great": {"_count": 1}}, "headed": {"_count": 1, "back": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "gets": {"_count": 1, "back": {"_count": 1}}, "mean": {"_count": 1, "\u2018the": {"_count": 1}}, "longed": {"_count": 1, "to": {"_count": 1}}, "hit": {"_count": 3, "the": {"_count": 3}}, "expected": {"_count": 2, "": {"_count": 1}, "players": {"_count": 1}}, "stirred": {"_count": 1, "": {"_count": 1}}, "continued": {"_count": 9, "irritably": {"_count": 1}, "some": {"_count": 1}, "turning": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 3}, "Law": {"_count": 1}, "in": {"_count": 1}}, "worked": {"_count": 3, "in": {"_count": 2}, "her": {"_count": 1}}, "probably": {"_count": 4, "misread": {"_count": 1}, "would": {"_count": 1}, "cant": {"_count": 1}, "wasnt": {"_count": 1}}, "kissed": {"_count": 1, "Mr": {"_count": 1}}, "checked": {"_count": 3, "their": {"_count": 1}, "various": {"_count": 1}, "her": {"_count": 1}}, "glanced": {"_count": 6, "toward": {"_count": 1}, "sideways": {"_count": 1}, "at": {"_count": 3}, "back": {"_count": 1}}, "read": {"_count": 5, "aloud": {"_count": 2}, "": {"_count": 1}, "what": {"_count": 1}, "through": {"_count": 1}}, "struggled": {"_count": 1, "to": {"_count": 1}}, "squeaked": {"_count": 2, "distractedly": {"_count": 1}, "": {"_count": 1}}, "leaned": {"_count": 4, "forward": {"_count": 1}, "toward": {"_count": 2}, "back": {"_count": 1}}, "fought": {"_count": 1, "the": {"_count": 1}}, "run": {"_count": 1, "properly": {"_count": 1}}, "likes": {"_count": 3, "being": {"_count": 1}, "Harry": {"_count": 1}, "best": {"_count": 1}}, "broke": {"_count": 4, "off": {"_count": 3}, "into": {"_count": 1}}, "blinked": {"_count": 2, "several": {"_count": 1}, "at": {"_count": 1}}, "raised": {"_count": 10, "herself": {"_count": 1}, "it": {"_count": 1}, "no": {"_count": 1}, "her": {"_count": 5}, "a": {"_count": 2}}, "mightve": {"_count": 1, "picked": {"_count": 1}}, "flinched": {"_count": 1, "as": {"_count": 1}}, "gulped": {"_count": 2, "and": {"_count": 1}, "down": {"_count": 1}}, "will": {"_count": 6, "be": {"_count": 1}, "consent": {"_count": 1}, "": {"_count": 1}, "make": {"_count": 1}, "find": {"_count": 1}, "like": {"_count": 1}}, "disobeyed": {"_count": 1, "me": {"_count": 1}}, "hasnt": {"_count": 2, "got": {"_count": 1}, "found": {"_count": 1}}, "already": {"_count": 1, "did": {"_count": 1}}, "interviewed": {"_count": 1, "all": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "skidded": {"_count": 1, "on": {"_count": 1}}, "leapt": {"_count": 3, "to": {"_count": 2}, "up": {"_count": 1}}, "gone": {"_count": 1, "than": {"_count": 1}}, "answered": {"_count": 6, "": {"_count": 2}, "quietly": {"_count": 1}, "slowly": {"_count": 1}, "Kingsleys": {"_count": 1}, "his": {"_count": 1}}, "spread": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "ate": {"_count": 1, "gratefully": {"_count": 1}}, "stepped": {"_count": 3, "into": {"_count": 1}, "on": {"_count": 1}, "back": {"_count": 1}}, "doubted": {"_count": 1, "whether": {"_count": 1}}, "isnt": {"_count": 2, "": {"_count": 1}, "doing": {"_count": 1}}, "showed": {"_count": 2, "him": {"_count": 1}, "up": {"_count": 1}}, "clicked": {"_count": 2, "her": {"_count": 2}}, "lit": {"_count": 2, "with": {"_count": 1}, "the": {"_count": 1}}, "stretched": {"_count": 3, "out": {"_count": 1}, "her": {"_count": 1}, "like": {"_count": 1}}, "ripped": {"_count": 1, "the": {"_count": 1}}, "stood": {"_count": 8, "and": {"_count": 2}, "up": {"_count": 2}, "over": {"_count": 1}, "hugging": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}}, "insisted": {"_count": 1, "on": {"_count": 1}}, "judging": {"_count": 1, "against": {"_count": 1}}, "hissed": {"_count": 3, "back": {"_count": 1}, "You": {"_count": 1}, "": {"_count": 1}}, "collected": {"_count": 1, "glasses": {"_count": 1}}, "says": {"_count": 6, "it": {"_count": 1}, "were": {"_count": 2}, "they": {"_count": 1}, "she": {"_count": 1}, "must": {"_count": 1}}, "writhed": {"_count": 1, "and": {"_count": 1}}, "reared": {"_count": 1, "spreading": {"_count": 1}}, "grinned": {"_count": 1, "rather": {"_count": 1}}, "stared": {"_count": 2, "very": {"_count": 1}, "down": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 1}, "such": {"_count": 1}, "Snapes": {"_count": 1}, "a": {"_count": 1}}, "panted": {"_count": 3, "skidding": {"_count": 1}, "slipping": {"_count": 1}, "as": {"_count": 1}}, "made": {"_count": 10, "no": {"_count": 1}, "out": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 2}, "bent": {"_count": 1}, "timid": {"_count": 1}, "the": {"_count": 2}, "herself": {"_count": 1}}, "sounded": {"_count": 4, "a": {"_count": 2}, "unconvinced": {"_count": 1}, "cold": {"_count": 1}}, "didn": {"_count": 1, "seem": {"_count": 1}}, "swept": {"_count": 3, "off": {"_count": 2}, "over": {"_count": 1}}, "ever": {"_count": 3, "go": {"_count": 1}, "heard": {"_count": 1}, "has": {"_count": 1}}, "truly": {"_count": 1, "looked": {"_count": 1}}, "trilled": {"_count": 1, "straightening": {"_count": 1}}, "least": {"_count": 1, "expected": {"_count": 1}}, "giggled": {"_count": 3, "when": {"_count": 1}, "maliciously": {"_count": 1}, "and": {"_count": 1}}, "usually": {"_count": 3, "had": {"_count": 1}, "put": {"_count": 1}, "performed": {"_count": 1}}, "moved": {"_count": 6, "very": {"_count": 1}, "her": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "forward": {"_count": 1}, "weirdly": {"_count": 1}}, "wen": {"_count": 1, "": {"_count": 1}}, "passed": {"_count": 11, "angrily": {"_count": 1}, "": {"_count": 4}, "boarded": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 2}, "through": {"_count": 1}}, "definitely": {"_count": 1, "is": {"_count": 1}}, "confessed": {"_count": 1, "to": {"_count": 1}}, "get": {"_count": 2, "it": {"_count": 1}, "you": {"_count": 1}}, "escaped": {"_count": 1, "to": {"_count": 1}}, "find": {"_count": 1, "out": {"_count": 1}}, "stays": {"_count": 1, "that": {"_count": 1}}, "seems": {"_count": 2, "to": {"_count": 2}}, "approached": {"_count": 4, "": {"_count": 1}, "her": {"_count": 1}, "and": {"_count": 1}, "them": {"_count": 1}}, "hitched": {"_count": 1, "it": {"_count": 1}}, "snored": {"_count": 1, "": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "urt": {"_count": 1, "": {"_count": 1}}, "allow": {"_count": 1, "Madam": {"_count": 1}}, "demonstrated": {"_count": 1, "excellent": {"_count": 1}}, "know": {"_count": 4, "Viktor": {"_count": 1}, "your": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 1}}, "has": {"_count": 8, "got": {"_count": 1}, "accepted": {"_count": 1}, "no": {"_count": 2}, "their": {"_count": 1}, "What": {"_count": 1}, "extra": {"_count": 1}, "caught": {"_count": 1}}, "sneaked": {"_count": 1, "onto": {"_count": 1}}, "associated": {"_count": 1, "him": {"_count": 1}}, "slid": {"_count": 3, "off": {"_count": 2}, "Jinxes": {"_count": 1}}, "sputtered": {"_count": 1, "going": {"_count": 1}}, "so": {"_count": 2, "upset": {"_count": 1}, "famously": {"_count": 1}}, "followed": {"_count": 1, "Hagrids": {"_count": 1}}, "wrote": {"_count": 2, "about": {"_count": 1}, "that": {"_count": 1}}, "comes": {"_count": 2, "back": {"_count": 1}, "from": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "reckons": {"_count": 2, "weve": {"_count": 1}, "you": {"_count": 1}}, "set": {"_count": 5, "off": {"_count": 3}, "at": {"_count": 1}, "on": {"_count": 1}}, "couldve": {"_count": 1, "heard": {"_count": 1}}, "became": {"_count": 4, "considerably": {"_count": 1}, "a": {"_count": 2}, "": {"_count": 1}}, "died": {"_count": 7, "giving": {"_count": 1}, "didnt": {"_count": 1}, "": {"_count": 2}, "soon": {"_count": 1}, "several": {"_count": 1}, "for": {"_count": 1}}, "coming": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "leaving": {"_count": 1, "us": {"_count": 1}}, "drew": {"_count": 10, "out": {"_count": 2}, "herself": {"_count": 2}, "him": {"_count": 1}, "a": {"_count": 2}, "up": {"_count": 1}, "nearer": {"_count": 1}, "close": {"_count": 1}}, "smoothed": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "screamed": {"_count": 12, "pointing": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 6}, "her": {"_count": 1}, "very": {"_count": 1}, "after": {"_count": 1}}, "backed": {"_count": 3, "away": {"_count": 2}, "out": {"_count": 1}}, "dislodged": {"_count": 1, "a": {"_count": 1}}, "wants": {"_count": 5, "me": {"_count": 2}, "to": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 1}}, "wears": {"_count": 1, "": {"_count": 1}}, "inhabited": {"_count": 1, "with": {"_count": 1}}, "strapped": {"_count": 1, "Harrys": {"_count": 1}}, "hurried": {"_count": 8, "toward": {"_count": 2}, "off": {"_count": 4}, "out": {"_count": 1}, "back": {"_count": 1}}, "brought": {"_count": 2, "your": {"_count": 1}, "down": {"_count": 1}}, "laid": {"_count": 1, "the": {"_count": 1}}, "repaired": {"_count": 1, "the": {"_count": 1}}, "needs": {"_count": 3, "you": {"_count": 1}, "your": {"_count": 1}, "to": {"_count": 1}}, "builds": {"_count": 1, "up": {"_count": 1}}, "hated": {"_count": 1, "him": {"_count": 1}}, "swore": {"_count": 1, "he": {"_count": 1}}, "also": {"_count": 2, "seemed": {"_count": 1}, "looked": {"_count": 1}}, "wore": {"_count": 6, "a": {"_count": 2}, "over": {"_count": 1}, "draped": {"_count": 1}, "long": {"_count": 1}, "to": {"_count": 1}}, "blew": {"_count": 2, "her": {"_count": 2}}, "snatched": {"_count": 2, "it": {"_count": 1}, "up": {"_count": 1}}, "like": {"_count": 2, "him": {"_count": 1}, "Neville": {"_count": 1}}, "climbed": {"_count": 4, "into": {"_count": 1}, "through": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "cleared": {"_count": 1, "her": {"_count": 1}}, "simply": {"_count": 4, "watched": {"_count": 1}, "said": {"_count": 2}, "looked": {"_count": 1}}, "works": {"_count": 1, "for": {"_count": 1}}, "should": {"_count": 3, "have": {"_count": 1}, "find": {"_count": 1}, "": {"_count": 1}}, "smiled": {"_count": 4, "at": {"_count": 2}, "as": {"_count": 1}, "": {"_count": 1}}, "unfurled": {"_count": 1, "the": {"_count": 1}}, "alone": {"_count": 2, "seemed": {"_count": 1}, "knows": {"_count": 1}}, "supports": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 4, "not": {"_count": 1}, "unsure": {"_count": 1}, "singularly": {"_count": 1}, "to": {"_count": 1}}, "addressed": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "thrust": {"_count": 1, "Freds": {"_count": 1}}, "been": {"_count": 2, "lying": {"_count": 1}, "under": {"_count": 1}}, "touched": {"_count": 3, "him": {"_count": 1}, "my": {"_count": 1}, "said": {"_count": 1}}, "make": {"_count": 1, "you": {"_count": 1}}, "admitted": {"_count": 3, "herself": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}}, "yawned": {"_count": 1, "": {"_count": 1}}, "understood": {"_count": 3, "": {"_count": 1}, "London": {"_count": 1}, "them": {"_count": 1}}, "ignored": {"_count": 2, "it": {"_count": 1}, "them": {"_count": 1}}, "carried": {"_count": 1, "the": {"_count": 1}}, "reverse": {"_count": 1, "passed": {"_count": 1}}, "strives": {"_count": 1, "to": {"_count": 1}}, "drafted": {"_count": 1, "a": {"_count": 1}}, "loathes": {"_count": 1, "parthumans": {"_count": 1}}, "campaigned": {"_count": 1, "to": {"_count": 1}}, "training": {"_count": 1, "you": {"_count": 1}}, "swooped": {"_count": 2, "down": {"_count": 1}, "back": {"_count": 1}}, "descended": {"_count": 1, "the": {"_count": 1}}, "instructed": {"_count": 1, "them": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "deserves": {"_count": 1, "": {"_count": 1}}, "frowned": {"_count": 1, "at": {"_count": 1}}, "remained": {"_count": 1, "deep": {"_count": 1}}, "paused": {"_count": 1, "outside": {"_count": 1}}, "talks": {"_count": 2, "now": {"_count": 1}, "to": {"_count": 1}}, "delivered": {"_count": 1, "the": {"_count": 1}}, "hopped": {"_count": 1, "inside": {"_count": 1}}, "swayed": {"_count": 1, "on": {"_count": 1}}, "talked": {"_count": 1, "": {"_count": 1}}, "dares": {"_count": 1, "": {"_count": 1}}, "accepts": {"_count": 1, "that": {"_count": 1}}, "trusts": {"_count": 1, "me": {"_count": 1}}, "nearly": {"_count": 2, "got": {"_count": 1}, "overturned": {"_count": 1}}, "really": {"_count": 2, "saw": {"_count": 1}, "fancied": {"_count": 1}}, "sleeps": {"_count": 1, "it": {"_count": 1}}, "abstained": {"_count": 1, "from": {"_count": 1}}, "conducted": {"_count": 1, "the": {"_count": 1}}, "throws": {"_count": 2, "to": {"_count": 1}, "out": {"_count": 1}}, "rummaged": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 4, "unfurled": {"_count": 1}, "had": {"_count": 1}, "thinks": {"_count": 1}, "lowered": {"_count": 1}}, "that": {"_count": 2, "is": {"_count": 2}}, "banned": {"_count": 1, "him": {"_count": 1}}, "strolled": {"_count": 1, "into": {"_count": 1}}, "wheeled": {"_count": 1, "around": {"_count": 1}}, "hoisted": {"_count": 1, "her": {"_count": 1}}, "breathed": {"_count": 3, "in": {"_count": 2}, "": {"_count": 1}}, "then": {"_count": 1, "pointed": {"_count": 1}}, "finished": {"_count": 3, "writing": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "mimed": {"_count": 2, "walking": {"_count": 1}, "taking": {"_count": 1}}, "evidently": {"_count": 1, "intended": {"_count": 1}}, "bustled": {"_count": 2, "from": {"_count": 1}, "out": {"_count": 1}}, "imagine": {"_count": 1, "for": {"_count": 1}}, "beamed": {"_count": 2, "at": {"_count": 1}, "with": {"_count": 1}}, "corner": {"_count": 1, "you": {"_count": 1}}, "want": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "starts": {"_count": 1, "going": {"_count": 1}}, "see": {"_count": 1, "in": {"_count": 1}}, "lying": {"_count": 1, "in": {"_count": 1}}, "sank": {"_count": 1, "coughing": {"_count": 1}}, "may": {"_count": 1, "already": {"_count": 1}}, "soon": {"_count": 2, "released": {"_count": 1}, "ensured": {"_count": 1}}, "inquired": {"_count": 1, "curiously": {"_count": 1}}, "flapped": {"_count": 1, "around": {"_count": 1}}, "wished": {"_count": 3, "them": {"_count": 1}, "she": {"_count": 1}, "for": {"_count": 1}}, "settled": {"_count": 1, "herself": {"_count": 1}}, "peered": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "jerked": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "shoved": {"_count": 1, "Harry": {"_count": 1}}, "retained": {"_count": 1, "vestiges": {"_count": 1}}, "predict": {"_count": 1, "students": {"_count": 1}}, "demonstrate": {"_count": 1, "her": {"_count": 1}}, "generally": {"_count": 1, "remained": {"_count": 1}}, "catches": {"_count": 1, "yeh": {"_count": 1}}, "dashed": {"_count": 1, "to": {"_count": 1}}, "gazed": {"_count": 2, "at": {"_count": 1}, "intently": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "jumps": {"_count": 2, "up": {"_count": 1}, "out": {"_count": 1}}, "used": {"_count": 4, "to": {"_count": 3}, "a": {"_count": 1}}, "please": {"_count": 1, "please": {"_count": 1}}, "shrugged": {"_count": 2, "": {"_count": 2}}, "waved": {"_count": 6, "a": {"_count": 1}, "impatiently": {"_count": 1}, "her": {"_count": 3}, "at": {"_count": 1}}, "nipped": {"_count": 1, "in": {"_count": 1}}, "lay": {"_count": 3, "on": {"_count": 1}, "motionless": {"_count": 1}, "sprawled": {"_count": 1}}, "wastes": {"_count": 1, "her": {"_count": 1}}, "asks": {"_count": 1, "you": {"_count": 1}}, "tell": {"_count": 1, "us": {"_count": 1}}, "withdrew": {"_count": 2, "from": {"_count": 1}, "sliding": {"_count": 1}}, "named": {"_count": 1, "each": {"_count": 1}}, "tries": {"_count": 1, "Vanishing": {"_count": 1}}, "tapped": {"_count": 1, "each": {"_count": 1}}, "caused": {"_count": 1, "Harrys": {"_count": 1}}, "shuffled": {"_count": 4, "the": {"_count": 1}, "a": {"_count": 1}, "off": {"_count": 1}, "around": {"_count": 1}}, "married": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "attempted": {"_count": 3, "to": {"_count": 3}}, "doesn": {"_count": 1, "notice": {"_count": 1}}, "don": {"_count": 1, "seem": {"_count": 1}}, "snorted": {"_count": 1, "as": {"_count": 1}}, "strict": {"_count": 1, "": {"_count": 1}}, "ought": {"_count": 7, "to": {"_count": 5}, "not": {"_count": 2}}, "remind": {"_count": 1, "him": {"_count": 1}}, "clearly": {"_count": 1, "thought": {"_count": 1}}, "gestured": {"_count": 1, "around": {"_count": 1}}, "wound": {"_count": 1, "their": {"_count": 1}}, "ordered": {"_count": 1, "the": {"_count": 1}}, "deflected": {"_count": 1, "it": {"_count": 1}}, "yelled": {"_count": 1, "": {"_count": 1}}, "sealed": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "revolved": {"_count": 3, "slowly": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "shows": {"_count": 1, "signs": {"_count": 1}}, "mentioned": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 4, "now": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 2}}, "closed": {"_count": 3, "her": {"_count": 3}}, "jeered": {"_count": 3, "": {"_count": 3}}, "persisted": {"_count": 1, "": {"_count": 1}}, "staggered": {"_count": 4, "to": {"_count": 1}, "away": {"_count": 1}, "off": {"_count": 1}, "backward": {"_count": 1}}, "helped": {"_count": 1, "her": {"_count": 1}}, "done": {"_count": 1, "now": {"_count": 1}}, "here": {"_count": 1, "too": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "work": {"_count": 1, "that": {"_count": 1}}, "feels": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "cast": {"_count": 1, "sideways": {"_count": 1}}, "unscrewed": {"_count": 1, "it": {"_count": 1}}, "pushed": {"_count": 5, "her": {"_count": 1}, "under": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "back": {"_count": 1}}, "faltered": {"_count": 1, "as": {"_count": 1}}, "rarely": {"_count": 1, "left": {"_count": 1}}, "failed": {"_count": 1, "her": {"_count": 1}}, "despised": {"_count": 1, "the": {"_count": 1}}, "considerably": {"_count": 1, "speeded": {"_count": 1}}, "survived": {"_count": 1, "said": {"_count": 1}}, "thrashed": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 1, "like": {"_count": 1}}, "bellowed": {"_count": 1, "over": {"_count": 1}}, "drained": {"_count": 1, "her": {"_count": 1}}, "decided": {"_count": 1, "she": {"_count": 1}}, "dropped": {"_count": 4, "the": {"_count": 2}, "her": {"_count": 1}, "like": {"_count": 1}}, "zigzagged": {"_count": 1, "back": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "punctured": {"_count": 1, "a": {"_count": 1}}, "lunged": {"_count": 1, "at": {"_count": 1}}, "overheard": {"_count": 1, "you": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "sustain": {"_count": 1, "such": {"_count": 1}}, "think": {"_count": 3, "Id": {"_count": 1}, "wed": {"_count": 1}, "we": {"_count": 1}}, "enfolded": {"_count": 1, "Harry": {"_count": 1}}, "pouted": {"_count": 1, "": {"_count": 1}}, "arrives": {"_count": 1, "you": {"_count": 1}}, "returned": {"_count": 2, "to": {"_count": 1}, "her": {"_count": 1}}, "wended": {"_count": 1, "her": {"_count": 1}}, "holds": {"_count": 1, "on": {"_count": 1}}, "what": {"_count": 1, "am": {"_count": 1}}, "heaved": {"_count": 2, "her": {"_count": 1}, "another": {"_count": 1}}, "frequently": {"_count": 1, "strolled": {"_count": 1}}, "neednt": {"_count": 2, "have": {"_count": 1}, "": {"_count": 1}}, "supported": {"_count": 1, "wholeheartedly": {"_count": 1}}, "tipped": {"_count": 1, "you": {"_count": 1}}, "dodged": {"_count": 1, "them": {"_count": 1}}, "bore": {"_count": 1, "marks": {"_count": 1}}, "marries": {"_count": 1, "": {"_count": 1}}, "leads": {"_count": 1, "me": {"_count": 1}}, "managed": {"_count": 2, "this": {"_count": 1}, "to": {"_count": 1}}, "uncovered": {"_count": 1, "I": {"_count": 1}}, "concedes": {"_count": 1, "although": {"_count": 1}}, "wiggled": {"_count": 1, "her": {"_count": 1}}, "gripped": {"_count": 1, "his": {"_count": 1}}, "pored": {"_count": 1, "indecisively": {"_count": 1}}, "interposed": {"_count": 1, "Hermione": {"_count": 1}}, "ushered": {"_count": 1, "the": {"_count": 1}}, "explained": {"_count": 2, "pausing": {"_count": 1}, "as": {"_count": 1}}, "expects": {"_count": 1, "me": {"_count": 1}}, "show": {"_count": 1, "that": {"_count": 1}}, "existed": {"_count": 1, "until": {"_count": 1}}, "pretended": {"_count": 1, "otherwise": {"_count": 1}}, "slashed": {"_count": 2, "open": {"_count": 1}, "another": {"_count": 1}}, "dragged": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}}, "unlocked": {"_count": 1, "the": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "lives": {"_count": 1, "in": {"_count": 1}}, "feel": {"_count": 1, "about": {"_count": 1}}, "vanished": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "come": {"_count": 1, "up": {"_count": 1}}, "proceeded": {"_count": 1, "to": {"_count": 1}}, "resumed": {"_count": 1, "her": {"_count": 1}}, "toppled": {"_count": 2, "over": {"_count": 1}, "and": {"_count": 1}}, "removed": {"_count": 1, "Mafaldas": {"_count": 1}}, "tottered": {"_count": 1, "off": {"_count": 1}}, "waits": {"_count": 1, "": {"_count": 1}}, "jumped": {"_count": 1, "so": {"_count": 1}}, "wakes": {"_count": 1, "up": {"_count": 1}}, "tore": {"_count": 1, "open": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "placed": {"_count": 1, "it": {"_count": 1}}, "thumbed": {"_count": 1, "through": {"_count": 1}}, "indicated": {"_count": 1, "The": {"_count": 1}}, "slipped": {"_count": 1, "a": {"_count": 1}}, "unwound": {"_count": 1, "a": {"_count": 1}}, "only": {"_count": 1, "stared": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "hoped": {"_count": 1, "to": {"_count": 1}}, "first": {"_count": 1, "attempted": {"_count": 1}}, "the": {"_count": 2, "inadvertent": {"_count": 1}, "girl": {"_count": 1}}, "stumble": {"_count": 1, "across": {"_count": 1}}, "brushed": {"_count": 1, "the": {"_count": 1}}, "greeted": {"_count": 1, "with": {"_count": 1}}, "enticed": {"_count": 1, "him": {"_count": 1}}, "adopted": {"_count": 1, "when": {"_count": 1}}, "forgot": {"_count": 2, "to": {"_count": 2}}, "communicated": {"_count": 1, "mainly": {"_count": 1}}, "suggested": {"_count": 1, "handing": {"_count": 1}}, "survives": {"_count": 1, "the": {"_count": 1}}, "sneered": {"_count": 1, "attempting": {"_count": 1}}, "dies": {"_count": 1, "under": {"_count": 1}}, "leered": {"_count": 1, "": {"_count": 1}}, "brandished": {"_count": 1, "the": {"_count": 1}}, "maintained": {"_count": 1, "that": {"_count": 1}}, "scowled": {"_count": 1, "a": {"_count": 1}}, "eez": {"_count": 1, "charmante": {"_count": 1}}, "accepted": {"_count": 1, "the": {"_count": 1}}, "appealed": {"_count": 1, "to": {"_count": 1}}, "bludgering": {"_count": 1, "well": {"_count": 1}}, "jogged": {"_count": 1, "out": {"_count": 1}}, "hovered": {"_count": 1, "in": {"_count": 1}}, "stammered": {"_count": 1, "": {"_count": 1}}, "lifted": {"_count": 1, "aside": {"_count": 1}}, "trotted": {"_count": 1, "off": {"_count": 1}}, "flung": {"_count": 1, "them": {"_count": 1}}, "wiped": {"_count": 1, "her": {"_count": 1}}, "forced": {"_count": 1, "the": {"_count": 1}}, "considered": {"_count": 1, "the": {"_count": 1}}, "spat": {"_count": 1, "at": {"_count": 1}}, "flounced": {"_count": 1, "off": {"_count": 1}}, "half": {"_count": 1, "smiled": {"_count": 1}}, "means": {"_count": 1, "so": {"_count": 1}}, "eats": {"_count": 1, "it": {"_count": 1}}, "dueled": {"_count": 1, "three": {"_count": 1}}, "hugged": {"_count": 1, "him": {"_count": 1}}}, "spent": {"_count": 110, "so": {"_count": 2, "much": {"_count": 1}, "he": {"_count": 1}}, "a": {"_count": 13, "sleepless": {"_count": 1}, "lot": {"_count": 4}, "happy": {"_count": 1}, "long": {"_count": 1}, "bit": {"_count": 1}, "good": {"_count": 2}, "Sunday": {"_count": 1}, "large": {"_count": 1}, "considerable": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "his": {"_count": 3, "life": {"_count": 1}, "later": {"_count": 1}, "years": {"_count": 1}}, "half": {"_count": 3, "me": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "most": {"_count": 17, "of": {"_count": 17}}, "all": {"_count": 4, "evening": {"_count": 1}, "of": {"_count": 1}, "day": {"_count": 2}}, "ten": {"_count": 2, "years": {"_count": 1}, "whole": {"_count": 1}}, "the": {"_count": 28, "summer": {"_count": 1}, "evening": {"_count": 1}, "long": {"_count": 1}, "last": {"_count": 1}, "rest": {"_count": 9}, "whole": {"_count": 4}, "week": {"_count": 1}, "next": {"_count": 1}, "day": {"_count": 3}, "remaining": {"_count": 1}, "first": {"_count": 2}, "following": {"_count": 1}, "morning": {"_count": 1}, "previous": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "two": {"_count": 3, "months": {"_count": 2}, "nights": {"_count": 1}}, "in": {"_count": 3, "Professor": {"_count": 1}, "the": {"_count": 2}}, "much": {"_count": 5, "of": {"_count": 4}, "longer": {"_count": 1}}, "an": {"_count": 1, "unusually": {"_count": 1}}, "ages": {"_count": 1, "reading": {"_count": 1}}, "six": {"_count": 1, "months": {"_count": 1}}, "over": {"_count": 1, "an": {"_count": 1}}, "months": {"_count": 1, "persuading": {"_count": 1}}, "every": {"_count": 3, "evening": {"_count": 1}, "waking": {"_count": 1}, "school": {"_count": 1}}, "nine": {"_count": 1, "months": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "more": {"_count": 2, "than": {"_count": 1}, "time": {"_count": 1}}, "their": {"_count": 1, "lunch": {"_count": 1}}, "entirely": {"_count": 1, "in": {"_count": 1}}, "her": {"_count": 1, "first": {"_count": 1}}, "hours": {"_count": 1, "at": {"_count": 1}}, "many": {"_count": 1, "years": {"_count": 1}}, "nearly": {"_count": 1, "all": {"_count": 1}}, "down": {"_count": 1, "by": {"_count": 1}}, "at": {"_count": 1, "Privet": {"_count": 1}}, "alone": {"_count": 2, "with": {"_count": 2}}, "fruitless": {"_count": 1, "hours": {"_count": 1}}, "evening": {"_count": 1, "after": {"_count": 1}}, "together": {"_count": 1, "the": {"_count": 1}}}, "so": {"_count": 2505, "much": {"_count": 137, "of": {"_count": 1}, "as": {"_count": 21}, "since": {"_count": 1}, "like": {"_count": 1}, "to": {"_count": 7}, "": {"_count": 19}, "good": {"_count": 1}, "homework": {"_count": 5}, "it": {"_count": 1}, "about": {"_count": 3}, "I": {"_count": 2}, "he": {"_count": 6}, "that": {"_count": 12}, "trouble": {"_count": 3}, "harder": {"_count": 1}, "special": {"_count": 1}, "more": {"_count": 4}, "stronger": {"_count": 2}, "in": {"_count": 1}, "a": {"_count": 2}, "then": {"_count": 1}, "leisure": {"_count": 1}, "rowdier": {"_count": 1}, "perfumed": {"_count": 1}, "attention": {"_count": 1}, "money": {"_count": 1}, "having": {"_count": 1}, "meaningless": {"_count": 1}, "an": {"_count": 1}, "movement": {"_count": 1}, "Professor": {"_count": 1}, "anymore": {"_count": 1}, "time": {"_count": 3}, "you": {"_count": 2}, "damage": {"_count": 1}, "going": {"_count": 1}, "leaks": {"_count": 1}, "she": {"_count": 1}, "come": {"_count": 1}, "juice": {"_count": 1}, "they": {"_count": 2}, "trust": {"_count": 1}, "pain": {"_count": 1}, "the": {"_count": 2}, "blood": {"_count": 2}, "worse": {"_count": 1}, "younger": {"_count": 1}, "noise": {"_count": 1}, "else": {"_count": 1}, "relies": {"_count": 1}, "happier": {"_count": 1}, "Dobby": {"_count": 1}, "farther": {"_count": 1}, "depended": {"_count": 1}, "later": {"_count": 1}, "contempt": {"_count": 1}, "din": {"_count": 1}}, "upset": {"_count": 4, "at": {"_count": 2}, "crying": {"_count": 1}, "when": {"_count": 1}}, "worried": {"_count": 8, "that": {"_count": 1}, "about": {"_count": 2}, "I": {"_count": 2}, "The": {"_count": 1}, "so": {"_count": 1}, "She": {"_count": 1}}, "said": {"_count": 46, "Mrs": {"_count": 1}, "Dumbledore": {"_count": 7}, "Ron": {"_count": 2}, "Harry": {"_count": 13}, "Snape": {"_count": 2}, "Hermione": {"_count": 8}, "the": {"_count": 1}, "Neville": {"_count": 1}, "Professor": {"_count": 2}, "Lupin": {"_count": 3}, "a": {"_count": 1}, "Hagrid": {"_count": 1}, "nothing": {"_count": 1}, "Mr": {"_count": 1}, "Doge": {"_count": 1}, "Dumbledores": {"_count": 1}}, "suddenly": {"_count": 7, "and": {"_count": 1}, "that": {"_count": 4}, "they": {"_count": 1}, "it": {"_count": 1}}, "stiffly": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 19, "went": {"_count": 1}, "can": {"_count": 1}, "wasnt": {"_count": 1}, "cant": {"_count": 2}, "muttered": {"_count": 1}, "knows": {"_count": 1}, "rolled": {"_count": 1}, "said": {"_count": 1}, "tried": {"_count": 1}, "was": {"_count": 2}, "sealed": {"_count": 1}, "doesnt": {"_count": 1}, "what": {"_count": 1}, "thought": {"_count": 1}, "called": {"_count": 1}, "brushed": {"_count": 1}, "raised": {"_count": 1}}, "confusing": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "wild": {"_count": 1, "long": {"_count": 1}}, "that": {"_count": 377, "Privet": {"_count": 1}, "Dudley": {"_count": 1}, "his": {"_count": 17}, "they": {"_count": 38}, "Quirrell": {"_count": 1}, "the": {"_count": 59}, "no": {"_count": 2}, "only": {"_count": 7}, "Harry": {"_count": 24}, "people": {"_count": 3}, "Voldemort": {"_count": 2}, "small": {"_count": 1}, "he": {"_count": 62}, "it": {"_count": 36}, "Fred": {"_count": 1}, "none": {"_count": 5}, "Lockhart": {"_count": 1}, "students": {"_count": 1}, "she": {"_count": 16}, "Crabbe": {"_count": 1}, "Madam": {"_count": 1}, "one": {"_count": 3}, "everyone": {"_count": 4}, "Snape": {"_count": 1}, "a": {"_count": 6}, "Lupin": {"_count": 1}, "its": {"_count": 2}, "their": {"_count": 2}, "Professor": {"_count": 1}, "nobody": {"_count": 3}, "Crookshanks": {"_count": 1}, "Pettigrew": {"_count": 1}, "her": {"_count": 8}, "all": {"_count": 3}, "Hedwig": {"_count": 1}, "Hagrid": {"_count": 2}, "Ron": {"_count": 2}, "may": {"_count": 1}, "Harrys": {"_count": 3}, "as": {"_count": 1}, "Karkaroff": {"_count": 1}, "we": {"_count": 2}, "my": {"_count": 1}, "I": {"_count": 2}, "halfway": {"_count": 1}, "those": {"_count": 1}, "Neville": {"_count": 3}, "bits": {"_count": 1}, "doesnt": {"_count": 1}, "Cho": {"_count": 1}, "Hermione": {"_count": 2}, "at": {"_count": 1}, "hot": {"_count": 1}, "six": {"_count": 1}, "by": {"_count": 1}, "without": {"_count": 1}, "many": {"_count": 1}, "you": {"_count": 4}, "some": {"_count": 1}, "Grawps": {"_count": 1}, "light": {"_count": 1}, "Nevilles": {"_count": 1}, "in": {"_count": 1}, "every": {"_count": 1}, "lengthy": {"_count": 1}, "during": {"_count": 1}, "neither": {"_count": 1}, "Celestina": {"_count": 1}, "Scrimgeour": {"_count": 1}, "instead": {"_count": 1}, "more": {"_count": 1}, "twenty": {"_count": 1}, "Slytherins": {"_count": 1}, "Dumbledore": {"_count": 1}, "Mr": {"_count": 1}, "theyre": {"_count": 1}, "even": {"_count": 1}, "must": {"_count": 1}, "when": {"_count": 2}, "if": {"_count": 1}, "Voldemorts": {"_count": 1}, "Albus": {"_count": 1}}, "short": {"_count": 4, "he": {"_count": 1}, "they": {"_count": 2}, "that": {"_count": 1}}, "quickly": {"_count": 17, "": {"_count": 8}, "it": {"_count": 1}, "he": {"_count": 3}, "Harry": {"_count": 2}, "that": {"_count": 3}}, "youve": {"_count": 1, "never": {"_count": 1}}, "fast": {"_count": 44, "no": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 9}, "it": {"_count": 8}, "that": {"_count": 19}, "Cedric": {"_count": 1}, "after": {"_count": 1}, "The": {"_count": 1}, "or": {"_count": 1}, "Your": {"_count": 1}}, "angry": {"_count": 18, "he": {"_count": 3}, "": {"_count": 4}, "as": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 3}, "she": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}, "hed": {"_count": 1}, "said": {"_count": 1}, "is": {"_count": 1}}, "handsome": {"_count": 1, "and": {"_count": 1}}, "wet": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "hed": {"_count": 2, "never": {"_count": 1}, "hear": {"_count": 1}}, "plainly": {"_count": 1, "there": {"_count": 1}}, "Harry": {"_count": 25, "his": {"_count": 1}, "could": {"_count": 2}, "entered": {"_count": 1}, "felt": {"_count": 3}, "threw": {"_count": 1}, "Ron": {"_count": 1}, "climbed": {"_count": 1}, "reentered": {"_count": 1}, "enlisted": {"_count": 1}, "heard": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 2}, "heaved": {"_count": 1}, "generally": {"_count": 1}, "dropped": {"_count": 1}, "slipped": {"_count": 1}, "removed": {"_count": 1}, "realized": {"_count": 1}, "did": {"_count": 1}, "lost": {"_count": 1}}, "no": {"_count": 5, "one": {"_count": 2}, "harm": {"_count": 1}, "said": {"_count": 1}, "chance": {"_count": 1}}, "dangerous": {"_count": 3, "with": {"_count": 1}, "and": {"_count": 1}, "how": {"_count": 1}}, "long": {"_count": 38, "without": {"_count": 2}, "": {"_count": 7}, "that": {"_count": 6}, "and": {"_count": 2}, "to": {"_count": 2}, "had": {"_count": 1}, "Sirius": {"_count": 1}, "for": {"_count": 1}, "since": {"_count": 1}, "in": {"_count": 1}, "when": {"_count": 1}, "anticipated": {"_count": 1}, "added": {"_count": 1}, "see": {"_count": 1}, "because": {"_count": 1}, "been": {"_count": 1}, "ago": {"_count": 5}, "said": {"_count": 1}, "he": {"_count": 1}, "would": {"_count": 1}}, "they": {"_count": 49, "could": {"_count": 7}, "say": {"_count": 1}, "couldnt": {"_count": 1}, "didnt": {"_count": 2}, "nearly": {"_count": 1}, "were": {"_count": 4}, "wandered": {"_count": 1}, "wouldnt": {"_count": 3}, "cant": {"_count": 1}, "can": {"_count": 4}, "crossed": {"_count": 1}, "set": {"_count": 1}, "walked": {"_count": 1}, "began": {"_count": 1}, "kept": {"_count": 1}, "and": {"_count": 1}, "dont": {"_count": 2}, "went": {"_count": 1}, "retired": {"_count": 1}, "practiced": {"_count": 1}, "er": {"_count": 1}, "worked": {"_count": 1}, "grudgingly": {"_count": 1}, "headed": {"_count": 1}, "tramped": {"_count": 1}, "killed": {"_count": 1}, "had": {"_count": 2}, "passed": {"_count": 1}, "simply": {"_count": 1}, "knew": {"_count": 1}, "dragged": {"_count": 1}, "started": {"_count": 1}}, "all": {"_count": 2, "aboard": {"_count": 1}, "about": {"_count": 1}}, "full": {"_count": 13, "of": {"_count": 9}, "steam": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "hungry": {"_count": 1, "he": {"_count": 1}}, "wonderful": {"_count": 2, "but": {"_count": 1}, "you": {"_count": 1}}, "angrily": {"_count": 1, "that": {"_count": 1}}, "keen": {"_count": 10, "ter": {"_count": 2}, "to": {"_count": 7}, "for": {"_count": 1}}, "happy": {"_count": 11, "he": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "about": {"_count": 2}, "ter": {"_count": 1}, "to": {"_count": 1}, "here": {"_count": 1}, "that": {"_count": 1}}, "yehd": {"_count": 1, "be": {"_count": 1}}, "many": {"_count": 46, "questions": {"_count": 1}, "things": {"_count": 2}, "dangers": {"_count": 1}, "times": {"_count": 3}, "others": {"_count": 1}, "dangerous": {"_count": 1}, "of": {"_count": 9}, "feet": {"_count": 1}, "places": {"_count": 1}, "nationalities": {"_count": 1}, "people": {"_count": 6}, "Death": {"_count": 1}, "little": {"_count": 1}, "living": {"_count": 1}, "witnesses": {"_count": 1}, "flying": {"_count": 1}, "months": {"_count": 1}, "extraordinary": {"_count": 1}, "years": {"_count": 4}, "tiles": {"_count": 1}, "fraillooking": {"_count": 1}, "hours": {"_count": 1}, "opportunities": {"_count": 1}, "posters": {"_count": 1}, "": {"_count": 1}, "rumors": {"_count": 1}, "adolescent": {"_count": 1}}, "old": {"_count": 2, "Cornelius": {"_count": 1}, "and": {"_count": 1}}, "he": {"_count": 83, "could": {"_count": 16}, "went": {"_count": 4}, "had": {"_count": 4}, "couldnt": {"_count": 1}, "stopped": {"_count": 1}, "bought": {"_count": 1}, "began": {"_count": 1}, "decided": {"_count": 1}, "drank": {"_count": 1}, "attacked": {"_count": 1}, "headed": {"_count": 1}, "wasnt": {"_count": 1}, "stole": {"_count": 1}, "tried": {"_count": 3}, "got": {"_count": 1}, "remained": {"_count": 1}, "simply": {"_count": 1}, "won": {"_count": 1}, "wouldnt": {"_count": 3}, "looked": {"_count": 1}, "did": {"_count": 3}, "took": {"_count": 2}, "allowed": {"_count": 1}, "said": {"_count": 2}, "told": {"_count": 1}, "found": {"_count": 1}, "became": {"_count": 1}, "doesnt": {"_count": 1}, "was": {"_count": 1}, "changed": {"_count": 1}, "asked": {"_count": 1}, "brought": {"_count": 1}, "stayed": {"_count": 2}, "saw": {"_count": 1}, "pretended": {"_count": 1}, "ran": {"_count": 1}, "pulled": {"_count": 1}, "brushed": {"_count": 1}, "directed": {"_count": 1}, "merely": {"_count": 1}, "made": {"_count": 2}, "steeled": {"_count": 1}, "served": {"_count": 1}, "slackened": {"_count": 1}, "realized": {"_count": 1}, "gazed": {"_count": 1}, "stood": {"_count": 1}, "felt": {"_count": 2}, "shoved": {"_count": 1}, "thought": {"_count": 1}, "prompted": {"_count": 1}}, "huge": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "yet": {"_count": 3, "somehow": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}}, "far": {"_count": 57, "was": {"_count": 2}, "": {"_count": 9}, "had": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 2}, "this": {"_count": 3}, "sent": {"_count": 1}, "avoided": {"_count": 2}, "in": {"_count": 1}, "Please": {"_count": 1}, "even": {"_count": 1}, "A": {"_count": 1}, "away": {"_count": 2}, "she": {"_count": 1}, "around": {"_count": 1}, "as": {"_count": 3}, "would": {"_count": 1}, "into": {"_count": 2}, "though": {"_count": 1}, "except": {"_count": 1}, "looking": {"_count": 1}, "then": {"_count": 2}, "back": {"_count": 1}, "has": {"_count": 2}, "managed": {"_count": 1}, "Professor": {"_count": 1}, "that": {"_count": 2}, "because": {"_count": 1}, "something": {"_count": 1}, "suggests": {"_count": 1}, "I": {"_count": 1}, "been": {"_count": 2}, "failed": {"_count": 1}, "looked": {"_count": 1}, "through": {"_count": 1}, "down": {"_count": 1}}, "proud": {"_count": 5, "": {"_count": 2}, "of": {"_count": 2}, "so": {"_count": 1}}, "close": {"_count": 22, "that": {"_count": 3}, "together": {"_count": 2}, "to": {"_count": 12}, "they": {"_count": 2}, "": {"_count": 1}, "seemed": {"_count": 1}, "he": {"_count": 1}}, "happens": {"_count": 4, "that": {"_count": 4}}, "strange": {"_count": 1, "somehow": {"_count": 1}}, "scared": {"_count": 1, "of": {"_count": 1}}, "did": {"_count": 20, "he": {"_count": 1}, "Fang": {"_count": 1}, "they": {"_count": 1}, "Professors": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}, "Dumbledore": {"_count": 1}, "Moody": {"_count": 1}, "George": {"_count": 1}, "half": {"_count": 1}, "Snape": {"_count": 1}, "Malfoy": {"_count": 1}, "my": {"_count": 1}, "Mrs": {"_count": 1}, "Sirius": {"_count": 1}, "plenty": {"_count": 1}}, "because": {"_count": 2, "a": {"_count": 1}, "he": {"_count": 1}}, "polite": {"_count": 1, "when": {"_count": 1}}, "bothered": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 68, "cant": {"_count": 3}, "wouldn": {"_count": 1}, "told": {"_count": 2}, "said": {"_count": 1}, "need": {"_count": 1}, "dont": {"_count": 4}, "think": {"_count": 4}, "made": {"_count": 2}, "bit": {"_count": 1}, "convinced": {"_count": 1}, "took": {"_count": 3}, "could": {"_count": 3}, "hope": {"_count": 1}, "had": {"_count": 2}, "invented": {"_count": 1}, "wasnt": {"_count": 3}, "can": {"_count": 7}, "daresay": {"_count": 1}, "dunno": {"_count": 1}, "just": {"_count": 3}, "lies": {"_count": 1}, "thought": {"_count": 2}, "cleared": {"_count": 1}, "brought": {"_count": 1}, "should": {"_count": 1}, "alone": {"_count": 1}, "ditched": {"_count": 1}, "suppose": {"_count": 2}, "do": {"_count": 1}, "did": {"_count": 2}, "faked": {"_count": 1}, "sorta": {"_count": 1}, "believe": {"_count": 1}, "tried": {"_count": 1}, "knew": {"_count": 1}, "cast": {"_count": 1}, "clicked": {"_count": 1}, "reckon": {"_count": 1}, "didnt": {"_count": 1}, "I": {"_count": 1}}, "pleased": {"_count": 13, "of": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}, "about": {"_count": 2}, "with": {"_count": 2}, "": {"_count": 1}, "just": {"_count": 1}, "to": {"_count": 4}}, "dark": {"_count": 7, "on": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 2}, "inside": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "big": {"_count": 2, "you": {"_count": 1}, "for": {"_count": 1}}, "relieved": {"_count": 4, "to": {"_count": 2}, "that": {"_count": 1}, "at": {"_count": 1}}, "nervous": {"_count": 2, "thats": {"_count": 1}, "made": {"_count": 1}}, "tired": {"_count": 9, "and": {"_count": 1}, "she": {"_count": 2}, "of": {"_count": 2}, "they": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "youre": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "powerful": {"_count": 7, "it": {"_count": 1}, "that": {"_count": 3}, "he": {"_count": 1}, "again": {"_count": 1}, "how": {"_count": 1}}, "unfair": {"_count": 3, "that": {"_count": 2}, "said": {"_count": 1}}, "keep": {"_count": 1, "your": {"_count": 1}}, "were": {"_count": 7, "twenty": {"_count": 1}, "ready": {"_count": 2}, "running": {"_count": 1}, "not": {"_count": 1}, "going": {"_count": 1}, "his": {"_count": 1}}, "amazed": {"_count": 2, "so": {"_count": 2}}, "impressed": {"_count": 2, "he": {"_count": 1}, "at": {"_count": 1}}, "interfering": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 1, "what": {"_count": 1}}, "it": {"_count": 21, "can": {"_count": 1}, "is": {"_count": 3}, "was": {"_count": 7}, "didnt": {"_count": 2}, "took": {"_count": 1}, "had": {"_count": 1}, "creaked": {"_count": 1}, "seemed": {"_count": 2}, "would": {"_count": 1}, "did": {"_count": 1}, "could": {"_count": 1}}, "the": {"_count": 16, "players": {"_count": 1}, "first": {"_count": 2}, "Great": {"_count": 1}, "engine": {"_count": 1}, "untidier": {"_count": 1}, "dementors": {"_count": 2}, "Minister": {"_count": 1}, "firelight": {"_count": 1}, "light": {"_count": 1}, "five": {"_count": 1}, "following": {"_count": 1}, "room": {"_count": 1}, "names": {"_count": 1}, "lights": {"_count": 1}}, "busy": {"_count": 8, "what": {"_count": 1}, "getting": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 2}, "that": {"_count": 1}, "said": {"_count": 1}, "staring": {"_count": 1}}, "impatient": {"_count": 1, "that": {"_count": 1}}, "clever": {"_count": 2, "Ron": {"_count": 1}, "who": {"_count": 1}}, "a": {"_count": 2, "penalty": {"_count": 1}, "houseelf": {"_count": 1}}, "hard": {"_count": 43, "it": {"_count": 2}, "to": {"_count": 6}, "his": {"_count": 2}, "he": {"_count": 2}, "that": {"_count": 18}, "on": {"_count": 2}, "": {"_count": 1}, "across": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 2}, "away": {"_count": 1}, "against": {"_count": 2}, "with": {"_count": 1}, "she": {"_count": 1}, "not": {"_count": 1}}, "theres": {"_count": 2, "someone": {"_count": 1}, "no": {"_count": 1}}, "sorry": {"_count": 18, "said": {"_count": 2}, "": {"_count": 4}, "for": {"_count": 2}, "dear": {"_count": 1}, "what": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "Bill": {"_count": 1}, "to": {"_count": 1}, "Ron": {"_count": 1}, "hissed": {"_count": 1}, "you": {"_count": 1}, "Hermione": {"_count": 1}}, "well": {"_count": 18, "he": {"_count": 1}, "": {"_count": 5}, "be": {"_count": 1}, "protected": {"_count": 1}, "coordinated": {"_count": 1}, "on": {"_count": 1}, "with": {"_count": 1}, "said": {"_count": 1}, "see": {"_count": 1}, "yeh": {"_count": 1}, "had": {"_count": 1}, "at": {"_count": 1}, "Splinched": {"_count": 1}, "informed": {"_count": 1}}, "who": {"_count": 1, "sent": {"_count": 1}}, "badly": {"_count": 32, "if": {"_count": 2}, "": {"_count": 5}, "he": {"_count": 7}, "in": {"_count": 2}, "that": {"_count": 10}, "at": {"_count": 1}, "astray": {"_count": 1}, "injured": {"_count": 1}, "they": {"_count": 1}, "slashed": {"_count": 1}, "it": {"_count": 1}}, "desperate": {"_count": 3, "to": {"_count": 1}, "for": {"_count": 2}}, "Dumbledore": {"_count": 3, "smiled": {"_count": 1}, "couldnt": {"_count": 1}, "feels": {"_count": 1}}, "Snape": {"_count": 1, "hasnt": {"_count": 1}}, "excited": {"_count": 3, "since": {"_count": 1}, "": {"_count": 2}}, "horrible": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "grim": {"_count": 1, "and": {"_count": 1}}, "mean": {"_count": 1, "he": {"_count": 1}}, "sweet": {"_count": 2, "": {"_count": 2}}, "thick": {"_count": 8, "he": {"_count": 2}, "": {"_count": 1}, "that": {"_count": 3}, "and": {"_count": 2}}, "stupid": {"_count": 9, "as": {"_count": 2}, "": {"_count": 4}, "but": {"_count": 1}, "Ill": {"_count": 1}, "Harry": {"_count": 1}}, "ashamed": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 3, "Malfoy": {"_count": 1}, "the": {"_count": 1}, "Mrs": {"_count": 1}}, "delighted": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "bad": {"_count": 4, "": {"_count": 2}, "he": {"_count": 1}, "said": {"_count": 1}}, "be": {"_count": 3, "careful": {"_count": 2}, "it": {"_count": 1}}, "beautiful": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 75, ".": {"_count": 66}, "!": {"_count": 3}, "?": {"_count": 6}}, "glad": {"_count": 5, "we": {"_count": 1}, "Ive": {"_count": 1}, "to": {"_count": 2}, "so": {"_count": 1}}, "will": {"_count": 5, "we": {"_count": 1}, "you": {"_count": 2}, "the": {"_count": 1}, "raise": {"_count": 1}}, "naturally": {"_count": 1, "the": {"_count": 1}}, "deeply": {"_count": 6, "even": {"_count": 1}, "into": {"_count": 1}, "involved": {"_count": 1}, "that": {"_count": 2}, "uninviting": {"_count": 1}}, "good": {"_count": 11, "": {"_count": 3}, "to": {"_count": 1}, "looking": {"_count": 1}, "seeing": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}, "actually": {"_count": 1}, "and": {"_count": 1}}, "shocked": {"_count": 4, "he": {"_count": 1}, "when": {"_count": 1}, "to": {"_count": 1}, "she": {"_count": 1}}, "loud": {"_count": 3, "was": {"_count": 1}, "just": {"_count": 1}, "that": {"_count": 1}}, "unpleasant": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 6, "his": {"_count": 1}, "for": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}, "that": {"_count": 1}}, "particularly": {"_count": 1, "unusual": {"_count": 1}}, "lonely": {"_count": 1, "": {"_count": 1}}, "cut": {"_count": 1, "off": {"_count": 1}}, "low": {"_count": 13, "that": {"_count": 6}, "in": {"_count": 3}, "he": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}, "now": {"_count": 1}}, "instead": {"_count": 2, "he": {"_count": 2}}, "we": {"_count": 25, "kept": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 1}, "are": {"_count": 1}, "cant": {"_count": 2}, "know": {"_count": 1}, "wouldnt": {"_count": 1}, "can": {"_count": 3}, "needed": {"_count": 1}, "got": {"_count": 1}, "started": {"_count": 1}, "split": {"_count": 1}, "dont": {"_count": 2}, "entered": {"_count": 1}, "patrolled": {"_count": 1}, "thought": {"_count": 1}, "turn": {"_count": 1}, "suggest": {"_count": 1}, "dropped": {"_count": 1}, "need": {"_count": 1}}, "Stop": {"_count": 1, "gibbering": {"_count": 1}}, "crooked": {"_count": 1, "it": {"_count": 1}}, "ridiculous": {"_count": 2, "Fred": {"_count": 1}, "said": {"_count": 1}}, "you": {"_count": 25, "could": {"_count": 1}, "feel": {"_count": 1}, "found": {"_count": 1}, "met": {"_count": 1}, "will": {"_count": 2}, "might": {"_count": 2}, "cant": {"_count": 2}, "volunteer": {"_count": 1}, "can": {"_count": 6}, "wouldnt": {"_count": 1}, "dont": {"_count": 2}, "dreamed": {"_count": 1}, "couldnt": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}, "see": {"_count": 1}}, "Ron": {"_count": 3, "laid": {"_count": 1}, "seemed": {"_count": 1}, "tapped": {"_count": 1}}, "smart": {"_count": 1, "wonderful": {"_count": 1}}, "forcefully": {"_count": 4, "he": {"_count": 1}, "that": {"_count": 2}, "of": {"_count": 1}}, "hold": {"_count": 2, "on": {"_count": 1}, "your": {"_count": 1}}, "so": {"_count": 5, "Gryffindor": {"_count": 1}, "yehve": {"_count": 1}, "so": {"_count": 1}, "tired": {"_count": 1}, "sorry": {"_count": 1}}, "Gryffindor": {"_count": 1, "shouldnt": {"_count": 1}}, "owls": {"_count": 1, "streamed": {"_count": 1}}, "when": {"_count": 6, "Lockhart": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}}, "tufty": {"_count": 1, "little": {"_count": 1}}, "in": {"_count": 8, "Year": {"_count": 1}, "the": {"_count": 6}, "a": {"_count": 1}}, "to": {"_count": 5, "business": {"_count": 1}, "Harrys": {"_count": 1}, "allow": {"_count": 1}, "the": {"_count": 2}}, "sure": {"_count": 8, "": {"_count": 2}, "it": {"_count": 1}, "if": {"_count": 1}, "that": {"_count": 4}}, "shrill": {"_count": 2, "it": {"_count": 1}, "only": {"_count": 1}}, "broadly": {"_count": 1, "his": {"_count": 1}}, "late": {"_count": 5, "that": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}, "thisll": {"_count": 1}}, "as": {"_count": 33, "not": {"_count": 8}, "he": {"_count": 1}, "to": {"_count": 20}, "though": {"_count": 1}, "Longbottom": {"_count": 1}, "an": {"_count": 1}, "truly": {"_count": 1}}, "unlucky": {"_count": 1, "I": {"_count": 1}}, "great": {"_count": 1, "Hermione": {"_count": 1}}, "small": {"_count": 4, "he": {"_count": 1}, "they": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "narrowly": {"_count": 2, "that": {"_count": 1}, "yourself": {"_count": 1}}, "pathetic": {"_count": 2, "that": {"_count": 1}, "Id": {"_count": 1}}, "at": {"_count": 2, "eight": {"_count": 1}, "seven": {"_count": 1}}, "terrible": {"_count": 3, "": {"_count": 2}, "that": {"_count": 1}}, "important": {"_count": 9, "for": {"_count": 1}, "to": {"_count": 5}, "he": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 1}}, "nice": {"_count": 1, "though": {"_count": 1}}, "Ill": {"_count": 5, "just": {"_count": 1}, "have": {"_count": 2}, "play": {"_count": 1}, "be": {"_count": 1}}, "next": {"_count": 1, "day": {"_count": 1}}, "alert": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 2, "the": {"_count": 1}, "I": {"_count": 1}}, "Malfoy": {"_count": 1, "found": {"_count": 1}}, "Id": {"_count": 3, "recommend": {"_count": 1}, "have": {"_count": 1}, "like": {"_count": 1}}, "distressed": {"_count": 1, "": {"_count": 1}}, "crowded": {"_count": 4, "after": {"_count": 1}, "yet": {"_count": 1}, "with": {"_count": 1}, "that": {"_count": 1}}, "horribly": {"_count": 2, "wrong": {"_count": 1}, "so": {"_count": 1}}, "firmly": {"_count": 1, "that": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "somehow": {"_count": 3, "but": {"_count": 1}, "": {"_count": 2}}, "bright": {"_count": 2, "in": {"_count": 1}, "he": {"_count": 1}}, "willingly": {"_count": 1, "into": {"_count": 1}}, "uncomfortable": {"_count": 1, "": {"_count": 1}}, "often": {"_count": 21, "assured": {"_count": 1}, "the": {"_count": 1}, "did": {"_count": 1}, "that": {"_count": 3}, "both": {"_count": 1}, "he": {"_count": 3}, "lately": {"_count": 1}, "at": {"_count": 1}, "intruders": {"_count": 1}, "over": {"_count": 1}, "since": {"_count": 1}, "chosen": {"_count": 1}, "asked": {"_count": 1}, "felt": {"_count": 1}, "before": {"_count": 1}, "wrought": {"_count": 1}, "occupied": {"_count": 1}}, "tightly": {"_count": 22, "around": {"_count": 1}, "over": {"_count": 1}, "he": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 1}, "its": {"_count": 1}, "Harrys": {"_count": 1}, "that": {"_count": 5}, "his": {"_count": 1}, "it": {"_count": 3}, "but": {"_count": 1}, "on": {"_count": 1}, "bound": {"_count": 1}, "wrapped": {"_count": 1}, "stumbled": {"_count": 1}}, "quiet": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "miserable": {"_count": 5, "and": {"_count": 3}, "Harry": {"_count": 1}, "himself": {"_count": 1}}, "brave": {"_count": 5, "school": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "of": {"_count": 1}}, "unwisely": {"_count": 1, "challenged": {"_count": 1}}, "disappointed": {"_count": 1, "he": {"_count": 1}}, "modest": {"_count": 2, "Gilderoy": {"_count": 1}, "no": {"_count": 1}}, "violently": {"_count": 7, "that": {"_count": 4}, "he": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}}, "loudly": {"_count": 15, "that": {"_count": 13}, "and": {"_count": 1}, "in": {"_count": 1}}, "this": {"_count": 1, "bus": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "Black": {"_count": 1, "was": {"_count": 1}}, "near": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}}, "whats": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "Lupin": {"_count": 1, "muttered": {"_count": 1}}, "cocky": {"_count": 1, "last": {"_count": 1}}, "kind": {"_count": 2, "as": {"_count": 1}, "of": {"_count": 1}}, "youre": {"_count": 2, "going": {"_count": 1}, "just": {"_count": 1}}, "my": {"_count": 3, "dear": {"_count": 1}, "master": {"_count": 1}, "big": {"_count": 1}}, "mind": {"_count": 1, "you": {"_count": 1}}, "confident": {"_count": 1, "when": {"_count": 1}}, "yehve": {"_count": 1, "got": {"_count": 1}}, "clear": {"_count": 3, "away": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}}, "penetrating": {"_count": 1, "it": {"_count": 1}}, "Neville": {"_count": 2, "can": {"_count": 1}, "had": {"_count": 1}}, "enjoyable": {"_count": 1, "it": {"_count": 1}}, "weve": {"_count": 2, "had": {"_count": 1}, "been": {"_count": 1}}, "dejectedly": {"_count": 1, "that": {"_count": 1}}, "dont": {"_count": 5, "forget": {"_count": 1}, "waste": {"_count": 1}, "you": {"_count": 1}, "come": {"_count": 1}, "count": {"_count": 1}}, "viciously": {"_count": 1, "that": {"_count": 1}}, "than": {"_count": 1, "Malfoy": {"_count": 1}}, "early": {"_count": 6, "that": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "if": {"_count": 1}, "nor": {"_count": 1}}, "strong": {"_count": 6, "that": {"_count": 2}, "was": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 1}, "what": {"_count": 1}}, "clouded": {"_count": 1, "by": {"_count": 1}}, "soft": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "anxiously": {"_count": 1, "that": {"_count": 1}}, "their": {"_count": 2, "supply": {"_count": 1}, "only": {"_count": 1}}, "perfectly": {"_count": 1, "with": {"_count": 1}}, "unless": {"_count": 2, "he": {"_count": 1}, "youre": {"_count": 1}}, "deep": {"_count": 5, "it": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 1}}, "obviously": {"_count": 2, "the": {"_count": 1}, "magical": {"_count": 1}}, "fat": {"_count": 1, "was": {"_count": 1}}, "few": {"_count": 2, "of": {"_count": 1}, "well": {"_count": 1}}, "shiny": {"_count": 1, "already": {"_count": 1}}, "lost": {"_count": 1, "in": {"_count": 1}}, "during": {"_count": 2, "which": {"_count": 2}}, "sharply": {"_count": 1, "that": {"_count": 1}}, "tight": {"_count": 3, "Harry": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "furious": {"_count": 1, "with": {"_count": 1}}, "packed": {"_count": 2, "with": {"_count": 2}}, "swollen": {"_count": 2, "SHUT": {"_count": 1}, "it": {"_count": 1}}, "serious": {"_count": 1, "": {"_count": 1}}, "Severus": {"_count": 2, "": {"_count": 2}}, "hopelessly": {"_count": 1, "mundane": {"_count": 1}}, "absorbed": {"_count": 1, "he": {"_count": 1}}, "closely": {"_count": 5, "their": {"_count": 1}, "together": {"_count": 2}, "behind": {"_count": 1}, "around": {"_count": 1}}, "ancient": {"_count": 2, "he": {"_count": 1}, "cracked": {"_count": 1}}, "intently": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "foolhardy": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 5, "he": {"_count": 1}, "everyone": {"_count": 1}, "settled": {"_count": 1}, "wondered": {"_count": 1}, "I": {"_count": 1}}, "brilliant": {"_count": 1, "": {"_count": 1}}, "Hes": {"_count": 1, "come": {"_count": 1}}, "venomously": {"_count": 1, "that": {"_count": 1}}, "mistrusted": {"_count": 1, "by": {"_count": 1}}, "brightly": {"_count": 3, "didnt": {"_count": 1}, "white": {"_count": 1}, "blue": {"_count": 1}}, "impossible": {"_count": 1, "his": {"_count": 1}}, "thin": {"_count": 1, "": {"_count": 1}}, "calmly": {"_count": 1, "": {"_count": 1}}, "complicated": {"_count": 1, "so": {"_count": 1}}, "diverse": {"_count": 1, "that": {"_count": 1}}, "cheerful": {"_count": 3, "though": {"_count": 1}, "apart": {"_count": 1}, "MadEye": {"_count": 1}}, "difficult": {"_count": 4, "he": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "quietly": {"_count": 3, "that": {"_count": 2}, "he": {"_count": 1}}, "real": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "simple": {"_count": 1, "and": {"_count": 1}}, "obvious": {"_count": 3, "that": {"_count": 1}, "now": {"_count": 1}, "so": {"_count": 1}}, "surprising": {"_count": 1, "after": {"_count": 1}}, "nearly": {"_count": 2, "escaped": {"_count": 1}, "missed": {"_count": 1}}, "sharp": {"_count": 1, "when": {"_count": 1}}, "looking": {"_count": 1, "forward": {"_count": 1}}, "slightly": {"_count": 1, "to": {"_count": 1}}, "freckly": {"_count": 1, "that": {"_count": 1}}, "oldfashioned": {"_count": 1, "Mum": {"_count": 1}}, "thats": {"_count": 6, "where": {"_count": 1}, "Montague": {"_count": 1}, "all": {"_count": 1}, "nice": {"_count": 1}, "why": {"_count": 1}, "probably": {"_count": 1}}, "Muggles": {"_count": 2, "dont": {"_count": 1}, "could": {"_count": 1}}, "thoroughly": {"_count": 4, "that": {"_count": 1}, "hed": {"_count": 1}, "canvassed": {"_count": 1}, "": {"_count": 1}}, "never": {"_count": 1, "mind": {"_count": 1}}, "easily": {"_count": 3, "through": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "abruptly": {"_count": 1, "that": {"_count": 1}}, "white": {"_count": 2, "and": {"_count": 1}, "Harry": {"_count": 1}}, "uptight": {"_count": 1, "about": {"_count": 1}}, "exhausted": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "thatll": {"_count": 1, "be": {"_count": 1}}, "silly": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "platform": {"_count": 1, "nine": {"_count": 1}}, "nobody": {"_count": 4, "can": {"_count": 1}, "knows": {"_count": 1}, "would": {"_count": 1}, "keeps": {"_count": 1}}, "its": {"_count": 12, "impossible": {"_count": 1}, "one": {"_count": 1}, "mine": {"_count": 1}, "just": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "nothing": {"_count": 1}, "Black": {"_count": 1}, "your": {"_count": 1}, "all": {"_count": 1}, "not": {"_count": 1}, "now": {"_count": 1}}, "easy": {"_count": 6, "to": {"_count": 3}, "for": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "steamy": {"_count": 1, "that": {"_count": 1}}, "Hermione": {"_count": 2, "growing": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "secondhand": {"_count": 1}}, "of": {"_count": 1, "ghostly": {"_count": 1}}, "reminiscent": {"_count": 1, "of": {"_count": 1}}, "high": {"_count": 4, "that": {"_count": 3}, "it": {"_count": 1}}, "yehll": {"_count": 1, "be": {"_count": 1}}, "young": {"_count": 4, "in": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "Voldemort": {"_count": 2, "had": {"_count": 1}, "could": {"_count": 1}}, "ferociously": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "clearly": {"_count": 2, "against": {"_count": 1}, "elsewhere": {"_count": 1}}, "tiny": {"_count": 1, "his": {"_count": 1}}, "absolute": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 4, "he": {"_count": 1}, "the": {"_count": 2}, "months": {"_count": 1}}, "resembled": {"_count": 2, "a": {"_count": 1}, "Sirius": {"_count": 1}}, "stiff": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "here": {"_count": 2, "goes": {"_count": 1}, "I": {"_count": 1}}, "compatible": {"_count": 1, "with": {"_count": 1}}, "keeping": {"_count": 1, "an": {"_count": 1}}, "Karkaroff": {"_count": 1, "seemed": {"_count": 1}}, "inattentively": {"_count": 1, "that": {"_count": 1}}, "advanced": {"_count": 1, "that": {"_count": 1}}, "overexcited": {"_count": 1, "at": {"_count": 1}}, "only": {"_count": 1, "Hermione": {"_count": 1}}, "clean": {"_count": 2, "and": {"_count": 1}, "there": {"_count": 1}}, "Dobby": {"_count": 2, "is": {"_count": 1}, "did": {"_count": 1}}, "girls": {"_count": 1, "walked": {"_count": 1}}, "taken": {"_count": 1, "aback": {"_count": 1}}, "generous": {"_count": 1, "": {"_count": 1}}, "stunned": {"_count": 1, "by": {"_count": 1}}, "books": {"_count": 1, "she": {"_count": 1}}, "ve": {"_count": 1, "are": {"_count": 1}}, "interested": {"_count": 6, "in": {"_count": 3}, "that": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "dwarfed": {"_count": 1, "by": {"_count": 1}}, "creepy": {"_count": 1, "Parvati": {"_count": 1}}, "exhuberantly": {"_count": 1, "that": {"_count": 1}}, "Cho": {"_count": 1, "would": {"_count": 1}}, "mad": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 1, "all": {"_count": 1}}, "dense": {"_count": 1, "that": {"_count": 1}}, "what": {"_count": 8, "was": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 3}, "if": {"_count": 2}, "happened": {"_count": 1}}, "very": {"_count": 7, "like": {"_count": 1}, "sleepy": {"_count": 1}, "powerfully": {"_count": 1}, "far": {"_count": 1}, "familiar": {"_count": 1}, "important": {"_count": 1}, "typical": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "poor": {"_count": 1, "that": {"_count": 1}}, "why": {"_count": 2, "shouldnt": {"_count": 1}, "had": {"_count": 1}}, "intent": {"_count": 3, "on": {"_count": 2}, "upon": {"_count": 1}}, "an": {"_count": 2, "insane": {"_count": 1}, "unnatural": {"_count": 1}}, "cold": {"_count": 2, "he": {"_count": 1}, "against": {"_count": 1}}, "tarry": {"_count": 1, "not": {"_count": 1}}, "red": {"_count": 1, "now": {"_count": 1}}, "determined": {"_count": 5, "that": {"_count": 2}, "to": {"_count": 1}, "not": {"_count": 2}}, "urgent": {"_count": 1, "": {"_count": 1}}, "Ive": {"_count": 4, "heard": {"_count": 1}, "got": {"_count": 1}, "been": {"_count": 1}, "given": {"_count": 1}}, "filthy": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "thickly": {"_count": 1, "covered": {"_count": 1}}, "Hagrid": {"_count": 3, "gave": {"_count": 1}, "could": {"_count": 1}, "and": {"_count": 1}}, "panicky": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 2, "of": {"_count": 1}, "an": {"_count": 1}}, "slowly": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "Wormtail": {"_count": 1, "was": {"_count": 1}}, "heinous": {"_count": 1, "Father": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 1}, "intently": {"_count": 1}}, "how": {"_count": 2, "he": {"_count": 1}, "on": {"_count": 1}}, "tall": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "magical": {"_count": 1, "that": {"_count": 1}}, "his": {"_count": 3, "hood": {"_count": 1}, "scar": {"_count": 1}, "thoughts": {"_count": 1}}, "blindingly": {"_count": 1, "bright": {"_count": 1}}, "fiercely": {"_count": 4, "that": {"_count": 3}, "": {"_count": 1}}, "intense": {"_count": 2, "so": {"_count": 1}, "that": {"_count": 1}}, "allconsuming": {"_count": 1, "that": {"_count": 1}}, "hot": {"_count": 1, "he": {"_count": 1}}, "solid": {"_count": 2, "emerged": {"_count": 1}, "he": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "calm": {"_count": 2, "throughout": {"_count": 1}, "": {"_count": 1}}, "warm": {"_count": 1, "so": {"_count": 1}}, "ago": {"_count": 1, "when": {"_count": 1}}, "convinced": {"_count": 3, "that": {"_count": 3}}, "either": {"_count": 1, "because": {"_count": 1}}, "hoped": {"_count": 1, "that": {"_count": 1}}, "popular": {"_count": 1, "": {"_count": 1}}, "stifling": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 2, "Im": {"_count": 1}, "Luciuss": {"_count": 1}}, "unlike": {"_count": 1, "her": {"_count": 1}}, "menacingly": {"_count": 1, "through": {"_count": 1}}, "complete": {"_count": 1, "that": {"_count": 1}}, "chilled": {"_count": 1, "that": {"_count": 1}}, "Charlies": {"_count": 1, "trying": {"_count": 1}}, "e": {"_count": 1, "as": {"_count": 1}}, "And": {"_count": 1, "theyre": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "hes": {"_count": 2, "been": {"_count": 1}, "got": {"_count": 1}}, "try": {"_count": 1, "not": {"_count": 1}}, "shes": {"_count": 2, "got": {"_count": 1}, "been": {"_count": 1}}, "Sirius": {"_count": 2, "mimed": {"_count": 1}, "was": {"_count": 1}}, "dry": {"_count": 1, "he": {"_count": 1}}, "used": {"_count": 5, "to": {"_count": 5}}, "heartily": {"_count": 2, "it": {"_count": 1}, "of": {"_count": 1}}, "helped": {"_count": 1, "bring": {"_count": 1}}, "get": {"_count": 1, "out": {"_count": 1}}, "horseless": {"_count": 1, "stagecoaches": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "can": {"_count": 1, "tell": {"_count": 1}}, "For": {"_count": 1, "instance": {"_count": 1}}, "annoyed": {"_count": 2, "his": {"_count": 1}, "Ron": {"_count": 1}}, "whereas": {"_count": 1, "others": {"_count": 1}}, "Dursleyish": {"_count": 1, "": {"_count": 1}}, "Seamus": {"_count": 1, "said": {"_count": 1}}, "too": {"_count": 3, "she": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "tactless": {"_count": 1, "": {"_count": 1}}, "whether": {"_count": 1, "you": {"_count": 1}}, "unexpectedly": {"_count": 1, "still": {"_count": 1}}, "dim": {"_count": 1, "was": {"_count": 1}}, "tedious": {"_count": 1, "that": {"_count": 1}}, "do": {"_count": 7, "I": {"_count": 3}, "Harry": {"_count": 1}, "you": {"_count": 3}}, "foul": {"_count": 1, "that": {"_count": 1}}, "widely": {"_count": 1, "that": {"_count": 1}}, "just": {"_count": 1, "make": {"_count": 1}}, "rapidly": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "enthusiastically": {"_count": 1, "that": {"_count": 1}}, "required": {"_count": 1, "enormous": {"_count": 1}}, "ardently": {"_count": 1, "desires": {"_count": 1}}, "offensive": {"_count": 1, "that": {"_count": 1}}, "severely": {"_count": 2, "that": {"_count": 2}}, "encrusted": {"_count": 1, "with": {"_count": 1}}, "dreamy": {"_count": 1, "that": {"_count": 1}}, "furiously": {"_count": 1, "that": {"_count": 1}}, "narrowminded": {"_count": 1, "you": {"_count": 1}}, "accommodating": {"_count": 1, "this": {"_count": 1}}, "rather": {"_count": 2, "than": {"_count": 2}}, "naive": {"_count": 2, "said": {"_count": 1}, "sometimes": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "Dungs": {"_count": 1, "been": {"_count": 1}}, "sir": {"_count": 4, "said": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}}, "turning": {"_count": 1, "sharply": {"_count": 1}}, "suspicious": {"_count": 1, "if": {"_count": 1}}, "if": {"_count": 4, "youre": {"_count": 1}, "you": {"_count": 1}, "hed": {"_count": 1}, "we": {"_count": 1}}, "use": {"_count": 1, "the": {"_count": 1}}, "whispers": {"_count": 1, "of": {"_count": 1}}, "deafening": {"_count": 1, "that": {"_count": 1}}, "lousy": {"_count": 1, "at": {"_count": 1}}, "quick": {"_count": 2, "that": {"_count": 1}, "to": {"_count": 1}}, "there": {"_count": 3, "arent": {"_count": 1}, "was": {"_count": 1}, "we": {"_count": 1}}, "thestrals": {"_count": 1, "": {"_count": 1}}, "sedately": {"_count": 1, "and": {"_count": 1}}, "slow": {"_count": 1, "on": {"_count": 1}}, "grateful": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}}, "pale": {"_count": 3, "": {"_count": 1}, "that": {"_count": 2}}, "infernally": {"_count": 1, "convinced": {"_count": 1}}, "arrogant": {"_count": 2, "that": {"_count": 1}, "as": {"_count": 1}}, "work": {"_count": 1, "hard": {"_count": 1}}, "utter": {"_count": 1, "falsehoods": {"_count": 1}}, "vivid": {"_count": 1, "it": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "severe": {"_count": 1, "he": {"_count": 1}}, "steamed": {"_count": 1, "up": {"_count": 1}}, "Harrys": {"_count": 1, "might": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "boys": {"_count": 1, "can": {"_count": 1}}, "consumed": {"_count": 1, "with": {"_count": 1}}, "three": {"_count": 1, "four": {"_count": 1}}, "pretty": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "ten": {"_count": 1, "for": {"_count": 1}}, "gleeful": {"_count": 1, "since": {"_count": 1}}, "strongly": {"_count": 1, "tempted": {"_count": 1}}, "horrified": {"_count": 1, "and": {"_count": 1}}, "Alohomora": {"_count": 1, "wont": {"_count": 1}}, "youll": {"_count": 3, "need": {"_count": 1}, "just": {"_count": 1}, "be": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "your": {"_count": 1, "Charm": {"_count": 1}}, "forth": {"_count": 1, "said": {"_count": 1}}, "frequently": {"_count": 2, "in": {"_count": 1}, "she": {"_count": 1}}, "intensely": {"_count": 2, "curious": {"_count": 1}, "that": {"_count": 1}}, "lined": {"_count": 1, "it": {"_count": 1}}, "unlikely": {"_count": 1, "said": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "centaurs": {"_count": 1, "filling": {"_count": 1}}, "steeply": {"_count": 2, "that": {"_count": 1}, "well": {"_count": 1}}, "special": {"_count": 2, "about": {"_count": 2}}, "sweetly": {"_count": 1, "ignoring": {"_count": 1}}, "recently": {"_count": 3, "the": {"_count": 1}, "impersonated": {"_count": 1}, "flushed": {"_count": 1}}, "briefly": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "since": {"_count": 1, "his": {"_count": 1}}, "assiduously": {"_count": 1, "since": {"_count": 1}}, "does": {"_count": 3, "that": {"_count": 1}, "Voldemort": {"_count": 1}, "Voldemorts": {"_count": 1}}, "raw": {"_count": 1, "and": {"_count": 1}}, "noticed": {"_count": 1, "a": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}, "peculiarly": {"_count": 1, "that": {"_count": 1}}, "united": {"_count": 1, "in": {"_count": 1}}, "lets": {"_count": 1, "get": {"_count": 1}}, "You": {"_count": 1, "were": {"_count": 1}}, "making": {"_count": 1, "his": {"_count": 1}}, "desperately": {"_count": 1, "to": {"_count": 1}}, "rightly": {"_count": 1, "said": {"_count": 1}}, "theyre": {"_count": 2, "rushing": {"_count": 1}, "not": {"_count": 1}}, "cool": {"_count": 1, "youre": {"_count": 1}}, "thoughtful": {"_count": 1, "purred": {"_count": 1}}, "or": {"_count": 1, "was": {"_count": 1}}, "talented": {"_count": 2, "": {"_count": 2}}, "fond": {"_count": 1, "you": {"_count": 1}}, "sensational": {"_count": 1, "of": {"_count": 1}}, "politely": {"_count": 1, "": {"_count": 1}}, "awe": {"_count": 1, "inspiring": {"_count": 1}}, "disarmed": {"_count": 1, "that": {"_count": 1}}, "complex": {"_count": 1, "that": {"_count": 1}}, "impressive": {"_count": 1, "about": {"_count": 1}}, "matted": {"_count": 1, "with": {"_count": 1}}, "Merope": {"_count": 1, "was": {"_count": 1}}, "after": {"_count": 1, "Malfoy": {"_count": 1}}, "surprised": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "quite": {"_count": 1, "cheerfully": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}, "amusing": {"_count": 1, "in": {"_count": 1}}, "overcome": {"_count": 2, "there": {"_count": 1}, "to": {"_count": 1}}, "wellconnected": {"_count": 1, "but": {"_count": 1}}, "carefully": {"_count": 1, "since": {"_count": 1}}, "Slughorns": {"_count": 1, "office": {"_count": 1}}, "Bill": {"_count": 1, "will": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "lavishly": {"_count": 1, "that": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 1}, "been": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "overgrown": {"_count": 1, "Harry": {"_count": 1}}, "significant": {"_count": 1, "about": {"_count": 1}}, "finished": {"_count": 1, "Slughorn": {"_count": 1}}, "After": {"_count": 1, "you": {"_count": 1}}, "crammed": {"_count": 1, "with": {"_count": 1}}, "regularly": {"_count": 1, "and": {"_count": 1}}, "steeped": {"_count": 1, "in": {"_count": 1}}, "rumor": {"_count": 1, "has": {"_count": 1}}, "Kreacher": {"_count": 2, "has": {"_count": 1}, "came": {"_count": 1}}, "wisely": {"_count": 1, "tells": {"_count": 1}}, "kindly": {"_count": 1, "helped": {"_count": 1}}, "rarely": {"_count": 1, "saw": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "detrimental": {"_count": 1, "": {"_count": 1}}, "immersed": {"_count": 1, "in": {"_count": 1}}, "agitated": {"_count": 1, "": {"_count": 1}}, "concerned": {"_count": 1, "and": {"_count": 1}}, "Malfoys": {"_count": 1, "going": {"_count": 1}}, "vast": {"_count": 1, "that": {"_count": 1}}, "Only": {"_count": 1, "by": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "surely": {"_count": 1, "Bill": {"_count": 1}}, "me": {"_count": 1, "Ginny": {"_count": 1}}, "eet": {"_count": 1, "ees": {"_count": 1}}, "unhappy": {"_count": 1, "with": {"_count": 1}}, "jubilant": {"_count": 1, "were": {"_count": 1}}, "different": {"_count": 1, "from": {"_count": 1}}, "soon": {"_count": 1, "after": {"_count": 1}}, "uncertain": {"_count": 1, "that": {"_count": 1}}, "famously": {"_count": 1, "interviewed": {"_count": 1}}, "heavily": {"_count": 2, "that": {"_count": 1}, "guarded": {"_count": 1}}, "before": {"_count": 1, "Disapparating": {"_count": 1}}, "little": {"_count": 1, "interest": {"_count": 1}}, "lucky": {"_count": 1, "He": {"_count": 1}}, "insecurely": {"_count": 1, "": {"_count": 1}}, "terribly": {"_count": 1, "responsible": {"_count": 1}}, "although": {"_count": 1, "theres": {"_count": 1}}, "tough": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "brace": {"_count": 1, "yourself": {"_count": 1}}, "shaky": {"_count": 1, "": {"_count": 1}}, "awfful": {"_count": 1, "isnt": {"_count": 1}}, "destructive": {"_count": 1, "that": {"_count": 1}}, "tidy": {"_count": 1, "": {"_count": 1}}, "Scrimgeour": {"_count": 1, "spoke": {"_count": 1}}, "rare": {"_count": 1, "": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "honored": {"_count": 1, "": {"_count": 1}}, "respected": {"_count": 1, "and": {"_count": 1}}, "devastated": {"_count": 1, "by": {"_count": 1}}, "funny": {"_count": 1, "says": {"_count": 1}}, "reluctantly": {"_count": 1, "inherited": {"_count": 1}}, "pitiful": {"_count": 1, "": {"_count": 1}}, "called": {"_count": 1, "Muggleborn": {"_count": 1}}, "without": {"_count": 2, "a": {"_count": 1}, "your": {"_count": 1}}, "evil": {"_count": 1, "in": {"_count": 1}}, "partial": {"_count": 1, "": {"_count": 1}}, "determinedly": {"_count": 1, "": {"_count": 1}}, "careless": {"_count": 1, "remember": {"_count": 1}}, "theyve": {"_count": 3, "sent": {"_count": 1}, "got": {"_count": 1}, "never": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermole": {"_count": 1}}, "toadlike": {"_count": 1, "at": {"_count": 1}}, "people": {"_count": 1, "half": {"_count": 1}}, "Rons": {"_count": 1, "dad": {"_count": 1}}, "lunatic": {"_count": 1, "these": {"_count": 1}}, "dramatically": {"_count": 1, "that": {"_count": 1}}, "surprisingly": {"_count": 1, "willing": {"_count": 1}}, "worn": {"_count": 1, "that": {"_count": 1}}, "unbearably": {"_count": 1, "didnt": {"_count": 1}}, "dreadful": {"_count": 1, "for": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "adept": {"_count": 1, "at": {"_count": 1}}, "narrow": {"_count": 1, "that": {"_count": 1}}, "still": {"_count": 2, "shivery": {"_count": 1}, "that": {"_count": 1}}, "readily": {"_count": 1, "to": {"_count": 1}}, "Riddles": {"_count": 1, "eyes": {"_count": 1}}, "not": {"_count": 1, "anymore": {"_count": 1}}, "talking": {"_count": 1, "with": {"_count": 1}}, "Death": {"_count": 2, "took": {"_count": 2}}, "intrigued": {"_count": 1, "Hermione": {"_count": 1}}, "happened": {"_count": 1, "that": {"_count": 1}}, "endearingly": {"_count": 1, "familiar": {"_count": 1}}, "disliked": {"_count": 1, "over": {"_count": 1}}, "baldly": {"_count": 1, "the": {"_count": 1}}, "replied": {"_count": 1, "Ollivander": {"_count": 1}}, "crude": {"_count": 1, "but": {"_count": 1}}, "lenient": {"_count": 1, "": {"_count": 1}}, "strikingly": {"_count": 1, "like": {"_count": 1}}, "extraordinarily": {"_count": 1, "like": {"_count": 1}}, "theyll": {"_count": 1, "torture": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "dawn": {"_count": 1}}, "mismatched": {"_count": 1, "that": {"_count": 1}}, "someone": {"_count": 1, "from": {"_count": 1}}, "conspicuously": {"_count": 1, "lacked": {"_count": 1}}, "obsessed": {"_count": 1, "with": {"_count": 1}}, "damaged": {"_count": 1, "said": {"_count": 1}}, "precious": {"_count": 1, "To": {"_count": 1}}, "like": {"_count": 2, "his": {"_count": 1}, "Ron": {"_count": 1}}, "utterly": {"_count": 1, "so": {"_count": 1}}, "palpably": {"_count": 1, "content": {"_count": 1}}, "unstable": {"_count": 1, "that": {"_count": 1}}, "something": {"_count": 1, "happened": {"_count": 1}}, "illadvisedly": {"_count": 1, "with": {"_count": 1}}, "understanding": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 1, "lets": {"_count": 1}}}, "her": {"_count": 5305, "time": {"_count": 4, "craning": {"_count": 1}, "": {"_count": 1}, "crying": {"_count": 1}, "in": {"_count": 1}}, "sister": {"_count": 24, "and": {"_count": 4}, "": {"_count": 10}, "Padma": {"_count": 1}, "from": {"_count": 1}, "her": {"_count": 1}, "too": {"_count": 1}, "was": {"_count": 1}, "as": {"_count": 1}, "Bellatrix": {"_count": 1}, "again": {"_count": 1}, "at": {"_count": 1}, "Harry": {"_count": 1}}, "goodfornothing": {"_count": 1, "husband": {"_count": 1}}, "if": {"_count": 13, "hed": {"_count": 1}, "she": {"_count": 3}, "shed": {"_count": 1}, "you": {"_count": 4}, "Couldnt": {"_count": 1}, "we": {"_count": 2}, "shes": {"_count": 1}}, "daughter": {"_count": 5, "and": {"_count": 1}, "go": {"_count": 1}, "for": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 534, ".": {"_count": 452}, "?": {"_count": 46}, "!": {"_count": 36}}, "crowd": {"_count": 1, "": {"_count": 1}}, "tea": {"_count": 6, "through": {"_count": 1}, "set": {"_count": 1}, "towel": {"_count": 2}, "and": {"_count": 1}, "in": {"_count": 1}}, "hed": {"_count": 1, "heard": {"_count": 1}}, "head": {"_count": 121, "back": {"_count": 1}, "in": {"_count": 5}, "as": {"_count": 3}, "under": {"_count": 4}, "": {"_count": 30}, "inside": {"_count": 1}, "down": {"_count": 1}, "against": {"_count": 2}, "at": {"_count": 1}, "and": {"_count": 8}, "resting": {"_count": 1}, "toward": {"_count": 3}, "around": {"_count": 3}, "ah": {"_count": 1}, "frantically": {"_count": 3}, "completely": {"_count": 2}, "gave": {"_count": 1}, "so": {"_count": 3}, "held": {"_count": 1}, "furiously": {"_count": 1}, "bowed": {"_count": 2}, "sceptically": {"_count": 1}, "very": {"_count": 2}, "on": {"_count": 2}, "warningly": {"_count": 2}, "trembling": {"_count": 1}, "turned": {"_count": 1}, "Sturgis": {"_count": 1}, "turning": {"_count": 1}, "into": {"_count": 2}, "slightly": {"_count": 2}, "a": {"_count": 3}, "slowly": {"_count": 1}, "exasperatedly": {"_count": 1}, "Fudge": {"_count": 1}, "again": {"_count": 1}, "wondering": {"_count": 1}, "off": {"_count": 1}, "that": {"_count": 1}, "while": {"_count": 2}, "swiveling": {"_count": 1}, "bent": {"_count": 2}, "but": {"_count": 1}, "jerkily": {"_count": 1}, "which": {"_count": 1}, "to": {"_count": 1}, "ruefully": {"_count": 1}, "covered": {"_count": 1}, "her": {"_count": 1}, "almost": {"_count": 1}, "she": {"_count": 2}, "like": {"_count": 1}, "She": {"_count": 1}, "apparently": {"_count": 1}, "with": {"_count": 1}}, "something": {"_count": 4, "but": {"_count": 1}, "small": {"_count": 1}, "else": {"_count": 1}, "to": {"_count": 1}}, "it": {"_count": 5, "was": {"_count": 5}}, "on": {"_count": 19, "the": {"_count": 12}, "but": {"_count": 1}, "his": {"_count": 1}, "us": {"_count": 1}, "probation": {"_count": 1}, "while": {"_count": 1}, "which": {"_count": 1}, "her": {"_count": 1}}, "eyes": {"_count": 175, "beneath": {"_count": 1}, "and": {"_count": 10}, "her": {"_count": 1}, "are": {"_count": 1}, "flashing": {"_count": 2}, "wide": {"_count": 5}, "narrowed": {"_count": 2}, "out": {"_count": 2}, "were": {"_count": 16}, "open": {"_count": 1}, "": {"_count": 22}, "oddly": {"_count": 1}, "to": {"_count": 3}, "closed": {"_count": 1}, "full": {"_count": 1}, "now": {"_count": 3}, "with": {"_count": 5}, "became": {"_count": 1}, "rolled": {"_count": 1}, "snapped": {"_count": 1}, "completely": {"_count": 1}, "rolling": {"_count": 1}, "brimming": {"_count": 1}, "on": {"_count": 15}, "appear": {"_count": 1}, "following": {"_count": 1}, "glinting": {"_count": 1}, "filled": {"_count": 2}, "round": {"_count": 1}, "travel": {"_count": 1}, "flashed": {"_count": 2}, "hardening": {"_count": 1}, "crossed": {"_count": 1}, "as": {"_count": 3}, "twinkling": {"_count": 1}, "looked": {"_count": 2}, "at": {"_count": 2}, "in": {"_count": 1}, "again": {"_count": 2}, "popping": {"_count": 2}, "each": {"_count": 1}, "still": {"_count": 3}, "overbright": {"_count": 1}, "so": {"_count": 1}, "frantically": {"_count": 1}, "from": {"_count": 1}, "off": {"_count": 3}, "briefly": {"_count": 1}, "but": {"_count": 4}, "seemed": {"_count": 3}, "shining": {"_count": 1}, "threateningly": {"_count": 1}, "grew": {"_count": 1}, "for": {"_count": 2}, "burning": {"_count": 1}, "angrily": {"_count": 1}, "appeared": {"_count": 1}, "magnified": {"_count": 2}, "rather": {"_count": 1}, "gleamed": {"_count": 1}, "huge": {"_count": 2}, "met": {"_count": 1}, "flickering": {"_count": 1}, "fell": {"_count": 2}, "had": {"_count": 3}, "sparkling": {"_count": 1}, "staring": {"_count": 1}, "averted": {"_count": 1}, "welled": {"_count": 1}, "swam": {"_count": 1}, "into": {"_count": 1}, "noticing": {"_count": 1}, "too": {"_count": 1}, "upon": {"_count": 2}, "bright": {"_count": 1}, "without": {"_count": 1}, "precisely": {"_count": 1}}, "spectacles": {"_count": 3, "": {"_count": 2}, "flashing": {"_count": 1}}, "feet": {"_count": 71, "and": {"_count": 17}, "at": {"_count": 1}, "": {"_count": 22}, "closely": {"_count": 1}, "with": {"_count": 1}, "turned": {"_count": 1}, "said": {"_count": 1}, "shook": {"_count": 1}, "screaming": {"_count": 1}, "still": {"_count": 2}, "were": {"_count": 1}, "again": {"_count": 2}, "the": {"_count": 1}, "but": {"_count": 4}, "her": {"_count": 2}, "too": {"_count": 2}, "landed": {"_count": 1}, "in": {"_count": 2}, "up": {"_count": 1}, "as": {"_count": 1}, "sorting": {"_count": 1}, "sending": {"_count": 1}, "looking": {"_count": 1}, "Ron": {"_count": 1}, "pointed": {"_count": 1}, "was": {"_count": 1}}, "mouth": {"_count": 64, "changed": {"_count": 1}, "perhaps": {"_count": 1}, "open": {"_count": 3}, "as": {"_count": 3}, "Mr": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 10}, "but": {"_count": 2}, "was": {"_count": 3}, "stretched": {"_count": 1}, "and": {"_count": 4}, "too": {"_count": 1}, "so": {"_count": 1}, "wide": {"_count": 1}, "to": {"_count": 9}, "sagging": {"_count": 1}, "bulging": {"_count": 1}, "sucked": {"_count": 1}, "shut": {"_count": 1}, "with": {"_count": 2}, "slightly": {"_count": 3}, "looking": {"_count": 1}, "Snape": {"_count": 1}, "twitching": {"_count": 1}, "Pretty": {"_count": 1}, "on": {"_count": 1}, "when": {"_count": 1}, "again": {"_count": 1}, "It": {"_count": 1}, "Harry": {"_count": 1}, "had": {"_count": 1}, "her": {"_count": 1}, "She": {"_count": 1}, "she": {"_count": 1}}, "mind": {"_count": 7, "swallowed": {"_count": 1}, "about": {"_count": 1}, "than": {"_count": 1}, "we": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "nose": {"_count": 34, "in": {"_count": 3}, "to": {"_count": 1}, "and": {"_count": 7}, "": {"_count": 9}, "has": {"_count": 1}, "back": {"_count": 1}, "about": {"_count": 1}, "between": {"_count": 1}, "swelled": {"_count": 1}, "now": {"_count": 1}, "because": {"_count": 1}, "very": {"_count": 1}, "even": {"_count": 1}, "absently": {"_count": 1}, "but": {"_count": 1}, "looked": {"_count": 1}, "pointedly": {"_count": 1}, "scanning": {"_count": 1}}, "shrill": {"_count": 1, "voice": {"_count": 1}}, "walking": {"_count": 5, "toward": {"_count": 1}, "stick": {"_count": 2}, "back": {"_count": 1}, "alone": {"_count": 1}}, "leg": {"_count": 13, "": {"_count": 4}, "but": {"_count": 2}, "tripping": {"_count": 1}, "soared": {"_count": 1}, "and": {"_count": 1}, "wearily": {"_count": 1}, "so": {"_count": 1}, "very": {"_count": 1}, "Good": {"_count": 1}}, "arms": {"_count": 49, "around": {"_count": 12}, "": {"_count": 11}, "but": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 8}, "in": {"_count": 1}, "full": {"_count": 1}, "over": {"_count": 3}, "up": {"_count": 1}, "the": {"_count": 1}, "crossed": {"_count": 1}, "folded": {"_count": 3}, "held": {"_count": 1}, "outstretched": {"_count": 1}, "still": {"_count": 1}, "wrapped": {"_count": 1}, "wide": {"_count": 1}}, "crutches": {"_count": 1, "": {"_count": 1}}, "cats": {"_count": 1, "and": {"_count": 1}}, "Ickle": {"_count": 1, "Dudleykins": {"_count": 1}}, "throat": {"_count": 15, "and": {"_count": 3}, "her": {"_count": 1}, "": {"_count": 3}, "loudly": {"_count": 2}, "again": {"_count": 1}, "with": {"_count": 1}, "fussily": {"_count": 1}, "next": {"_count": 1}, "then": {"_count": 1}, "Then": {"_count": 1}}, "food": {"_count": 5, "processor": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "she": {"_count": 1}, "before": {"_count": 1}}, "from": {"_count": 13, "the": {"_count": 4}, "giving": {"_count": 1}, "carrying": {"_count": 1}, "behind": {"_count": 2}, "view": {"_count": 1}, "her": {"_count": 1}, "under": {"_count": 1}, "opening": {"_count": 1}, "touching": {"_count": 1}}, "pockets": {"_count": 1, "full": {"_count": 1}}, "for": {"_count": 20, "what": {"_count": 1}, "ages": {"_count": 2}, "wanting": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 3}, "us": {"_count": 1}, "hours": {"_count": 1}, "five": {"_count": 1}, "Siriuss": {"_count": 1}, "this": {"_count": 1}, "me": {"_count": 1}, "nearly": {"_count": 1}}, "wing": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "Hedwig": {"_count": 1}}, "first": {"_count": 9, "wand": {"_count": 1}, "class": {"_count": 1}, "evening": {"_count": 1}, "lesson": {"_count": 1}, "thing": {"_count": 1}, "afternoon": {"_count": 1}, "day": {"_count": 1}, "of": {"_count": 1}, "jailer": {"_count": 1}}, "Hedwig": {"_count": 1, "a": {"_count": 1}}, "cage": {"_count": 15, "and": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 4}, "all": {"_count": 1}, "when": {"_count": 1}, "staring": {"_count": 1}, "on": {"_count": 1}, "stood": {"_count": 1}, "are": {"_count": 1}, "would": {"_count": 1}, "at": {"_count": 1}}, "hand": {"_count": 98, "Mom": {"_count": 1}, "as": {"_count": 3}, "stretching": {"_count": 1}, "": {"_count": 29}, "shaken": {"_count": 1}, "impatiently": {"_count": 1}, "Harry": {"_count": 1}, "shaking": {"_count": 1}, "trembling": {"_count": 1}, "back": {"_count": 3}, "too": {"_count": 1}, "in": {"_count": 5}, "down": {"_count": 1}, "and": {"_count": 8}, "again": {"_count": 2}, "from": {"_count": 3}, "on": {"_count": 4}, "clutching": {"_count": 1}, "shook": {"_count": 1}, "blended": {"_count": 1}, "pressed": {"_count": 1}, "onto": {"_count": 1}, "gazing": {"_count": 1}, "up": {"_count": 1}, "was": {"_count": 3}, "over": {"_count": 1}, "slightly": {"_count": 1}, "her": {"_count": 3}, "Professor": {"_count": 1}, "still": {"_count": 1}, "around": {"_count": 1}, "regally": {"_count": 1}, "than": {"_count": 1}, "why": {"_count": 1}, "inside": {"_count": 1}, "halfway": {"_count": 1}, "you": {"_count": 1}, "to": {"_count": 2}, "away": {"_count": 2}, "held": {"_count": 1}, "while": {"_count": 1}, "She": {"_count": 1}, "for": {"_count": 1}}, "sons": {"_count": 6, "": {"_count": 2}, "as": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "fighting": {"_count": 1}}, "handkerchief": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "looked": {"_count": 1}}, "to": {"_count": 78, "kiss": {"_count": 1}, "Fang": {"_count": 1}, "be": {"_count": 4}, "get": {"_count": 2}, "read": {"_count": 1}, "have": {"_count": 1}, "Ron": {"_count": 1}, "send": {"_count": 1}, "come": {"_count": 4}, "remain": {"_count": 1}, "stay": {"_count": 1}, "move": {"_count": 1}, "wake": {"_count": 1}, "do": {"_count": 3}, "her": {"_count": 6}, "go": {"_count": 2}, "visit": {"_count": 1}, "me": {"_count": 1}, "make": {"_count": 2}, "finish": {"_count": 1}, "shut": {"_count": 1}, "keep": {"_count": 1}, "the": {"_count": 9}, "let": {"_count": 1}, "one": {"_count": 1}, "pull": {"_count": 1}, "speak": {"_count": 1}, "tell": {"_count": 1}, "Dumbledore": {"_count": 1}, "see": {"_count": 1}, "Hagrid": {"_count": 1}, "remember": {"_count": 1}, "pass": {"_count": 1}, "resume": {"_count": 1}, "repeat": {"_count": 1}, "take": {"_count": 1}, "lend": {"_count": 1}, "Lupin": {"_count": 1}, "understand": {"_count": 1}, "accompany": {"_count": 1}, "permit": {"_count": 1}, "leave": {"_count": 1}, "announce": {"_count": 1}, "wait": {"_count": 1}, "give": {"_count": 1}, "Harry": {"_count": 1}, "place": {"_count": 1}, "deliver": {"_count": 1}, "us": {"_count": 1}, "eat": {"_count": 1}, "calm": {"_count": 1}, "climb": {"_count": 1}, "press": {"_count": 1}, "know": {"_count": 1}}, "mother": {"_count": 9, "disappear": {"_count": 1}, "": {"_count": 2}, "out": {"_count": 1}, "all": {"_count": 1}, "Andromeda": {"_count": 1}, "to": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "new": {"_count": 10, "Hogwarts": {"_count": 1}, "cauldron": {"_count": 1}, "diary": {"_count": 1}, "schedule": {"_count": 1}, "Arithmancy": {"_count": 1}, "tinsel": {"_count": 1}, "copy": {"_count": 1}, "dress": {"_count": 1}, "Wizarding": {"_count": 1}, "challenger": {"_count": 1}}, "as": {"_count": 32, "she": {"_count": 12}, "the": {"_count": 2}, "though": {"_count": 2}, "he": {"_count": 4}, "well": {"_count": 1}, "they": {"_count": 1}, "two": {"_count": 1}, "Neville": {"_count": 1}, "his": {"_count": 1}, "much": {"_count": 1}, "a": {"_count": 3}, "quickly": {"_count": 1}, "if": {"_count": 1}, "greedily": {"_count": 1}}, "scroll": {"_count": 1, "and": {"_count": 1}}, "put": {"_count": 2, "just": {"_count": 1}, "his": {"_count": 1}}, "desk": {"_count": 22, "into": {"_count": 1}, "and": {"_count": 5}, "": {"_count": 8}, "again": {"_count": 1}, "frowning": {"_count": 1}, "sat": {"_count": 1}, "to": {"_count": 2}, "so": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 1}}, "match": {"_count": 1, "Professor": {"_count": 1}}, "seat": {"_count": 22, "and": {"_count": 3}, "but": {"_count": 1}, "to": {"_count": 4}, "or": {"_count": 1}, "": {"_count": 6}, "was": {"_count": 1}, "smiling": {"_count": 1}, "whimpering": {"_count": 1}, "on": {"_count": 1}, "saw": {"_count": 1}, "every": {"_count": 1}, "as": {"_count": 1}}, "leaving": {"_count": 2, "her": {"_count": 1}, "didnt": {"_count": 1}}, "Filch": {"_count": 1, "puts": {"_count": 1}}, "up": {"_count": 21, "to": {"_count": 2}, "": {"_count": 6}, "any": {"_count": 1}, "instead": {"_count": 1}, "said": {"_count": 2}, "the": {"_count": 3}, "before": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}, "last": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}}, "every": {"_count": 4, "word": {"_count": 1}, "evening": {"_count": 1}, "detail": {"_count": 1}, "chance": {"_count": 1}}, "face": {"_count": 158, "as": {"_count": 5}, "and": {"_count": 9}, "in": {"_count": 11}, "glowing": {"_count": 3}, "": {"_count": 53}, "while": {"_count": 1}, "with": {"_count": 5}, "that": {"_count": 4}, "shining": {"_count": 1}, "under": {"_count": 1}, "set": {"_count": 1}, "Harry": {"_count": 1}, "fell": {"_count": 1}, "behind": {"_count": 1}, "averted": {"_count": 1}, "was": {"_count": 12}, "convinced": {"_count": 1}, "to": {"_count": 1}, "turned": {"_count": 1}, "but": {"_count": 3}, "so": {"_count": 1}, "pale": {"_count": 1}, "Professor": {"_count": 1}, "where": {"_count": 1}, "once": {"_count": 1}, "working": {"_count": 1}, "hidden": {"_count": 2}, "stretched": {"_count": 1}, "quite": {"_count": 1}, "on": {"_count": 3}, "just": {"_count": 1}, "slightly": {"_count": 2}, "which": {"_count": 1}, "toward": {"_count": 1}, "covered": {"_count": 1}, "now": {"_count": 2}, "from": {"_count": 2}, "when": {"_count": 1}, "extremely": {"_count": 1}, "standing": {"_count": 1}, "not": {"_count": 1}, "still": {"_count": 1}, "eloquent": {"_count": 1}, "paperwhite": {"_count": 1}, "pressed": {"_count": 2}, "doesnt": {"_count": 1}, "suddenly": {"_count": 1}, "he": {"_count": 1}, "taut": {"_count": 1}, "back": {"_count": 1}, "away": {"_count": 1}, "waxen": {"_count": 1}, "all": {"_count": 1}, "beautiful": {"_count": 1}, "a": {"_count": 1}}, "mutter": {"_count": 3, "": {"_count": 1}, "Slave": {"_count": 1}, "a": {"_count": 1}}, "arm": {"_count": 24, "around": {"_count": 4}, "and": {"_count": 6}, "the": {"_count": 1}, "": {"_count": 3}, "where": {"_count": 1}, "tired": {"_count": 1}, "but": {"_count": 1}, "still": {"_count": 1}, "bravely": {"_count": 1}, "free": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 1}, "pressed": {"_count": 1}, "out": {"_count": 1}}, "glasses": {"_count": 12, "flashed": {"_count": 1}, "at": {"_count": 1}, "glinting": {"_count": 1}, "well": {"_count": 1}, "hugely": {"_count": 1}, "angrily": {"_count": 1}, "": {"_count": 2}, "muttering": {"_count": 1}, "perched": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}}, "chest": {"_count": 11, "I": {"_count": 1}, "": {"_count": 4}, "heaving": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 1}, "rising": {"_count": 2}, "large": {"_count": 1}}, "that": {"_count": 28, "": {"_count": 1}, "Madam": {"_count": 1}, "if": {"_count": 1}, "they": {"_count": 1}, "Ron": {"_count": 3}, "the": {"_count": 1}, "he": {"_count": 4}, "Professor": {"_count": 1}, "a": {"_count": 1}, "Dobby": {"_count": 1}, "you": {"_count": 1}, "means": {"_count": 1}, "we": {"_count": 1}, "she": {"_count": 4}, "Ginny": {"_count": 1}, "it": {"_count": 1}, "just": {"_count": 1}, "Albus": {"_count": 1}, "Gabrielle": {"_count": 1}, "was": {"_count": 1}}, "breath": {"_count": 16, "and": {"_count": 4}, "coming": {"_count": 1}, "horrified": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 2}, "Harrys": {"_count": 1}, "steaming": {"_count": 1}, "in": {"_count": 1}, "while": {"_count": 1}, "had": {"_count": 1}, "acknowledging": {"_count": 1}, "as": {"_count": 1}}, "bad": {"_count": 1, "temper": {"_count": 1}}, "his": {"_count": 13, "mouth": {"_count": 1}, "eyes": {"_count": 2}, "arm": {"_count": 1}, "eyebrows": {"_count": 2}, "cut": {"_count": 1}, "voice": {"_count": 2}, "brain": {"_count": 1}, "yellow": {"_count": 1}, "bundledup": {"_count": 1}, "heart": {"_count": 1}}, "along": {"_count": 4, "wouldnt": {"_count": 1}, "if": {"_count": 1}, "how": {"_count": 1}, "with": {"_count": 1}}, "gown": {"_count": 1, "flicked": {"_count": 1}}, "wand": {"_count": 166, "and": {"_count": 26}, "onto": {"_count": 1}, "": {"_count": 31}, "waved": {"_count": 1}, "casually": {"_count": 1}, "the": {"_count": 1}, "again": {"_count": 2}, "to": {"_count": 3}, "out": {"_count": 3}, "still": {"_count": 2}, "a": {"_count": 2}, "at": {"_count": 26}, "around": {"_count": 1}, "but": {"_count": 1}, "from": {"_count": 2}, "lovingly": {"_count": 1}, "muttered": {"_count": 1}, "in": {"_count": 9}, "hopefully": {"_count": 1}, "like": {"_count": 1}, "In": {"_count": 1}, "high": {"_count": 1}, "behind": {"_count": 2}, "it": {"_count": 1}, "stretched": {"_count": 1}, "an": {"_count": 2}, "so": {"_count": 4}, "she": {"_count": 5}, "now": {"_count": 1}, "wrested": {"_count": 1}, "against": {"_count": 1}, "came": {"_count": 1}, "trembling": {"_count": 1}, "raised": {"_count": 1}, "on": {"_count": 1}, "upon": {"_count": 1}, "over": {"_count": 2}, "said": {"_count": 1}, "shakily": {"_count": 1}, "Ogden": {"_count": 1}, "even": {"_count": 1}, "enthusiastically": {"_count": 1}, "near": {"_count": 1}, "threateningly": {"_count": 1}, "Hermione": {"_count": 1}, "rather": {"_count": 1}, "engulfing": {"_count": 1}, "Will": {"_count": 1}, "pointing": {"_count": 2}, "directed": {"_count": 1}, "moved": {"_count": 1}, "arm": {"_count": 1}, "first": {"_count": 1}, "not": {"_count": 1}, "pointed": {"_count": 1}, "then": {"_count": 1}, "ready": {"_count": 1}, "Fenrir": {"_count": 1}, "through": {"_count": 1}}, "he": {"_count": 21, "said": {"_count": 3}, "jabbed": {"_count": 1}, "didnt": {"_count": 1}, "had": {"_count": 3}, "tried": {"_count": 1}, "suspected": {"_count": 1}, "saw": {"_count": 1}, "pointed": {"_count": 1}, "will": {"_count": 1}, "knocked": {"_count": 1}, "pushed": {"_count": 1}, "rounded": {"_count": 1}, "did": {"_count": 1}, "realized": {"_count": 1}, "might": {"_count": 1}, "was": {"_count": 1}, "lowered": {"_count": 1}}, "friend": {"_count": 16, "Lavender": {"_count": 1}, "Violet": {"_count": 2}, "Vi": {"_count": 1}, "as": {"_count": 2}, "stood": {"_count": 1}, "ushered": {"_count": 1}, "first": {"_count": 1}, "for": {"_count": 1}, "Marietta": {"_count": 3}, "which": {"_count": 1}, "followed": {"_count": 1}, "But": {"_count": 1}}, "knocking": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 4, "the": {"_count": 3}, "Ogden": {"_count": 1}}, "look": {"_count": 6, "so": {"_count": 2}, "more": {"_count": 1}, "as": {"_count": 1}, "up": {"_count": 1}, "tame": {"_count": 1}}, "voice": {"_count": 90, "": {"_count": 15}, "still": {"_count": 1}, "was": {"_count": 5}, "shaking": {"_count": 3}, "glancing": {"_count": 1}, "alive": {"_count": 1}, "low": {"_count": 1}, "went": {"_count": 1}, "by": {"_count": 1}, "rising": {"_count": 5}, "at": {"_count": 1}, "quivered": {"_count": 1}, "echoed": {"_count": 3}, "and": {"_count": 3}, "now": {"_count": 1}, "so": {"_count": 2}, "cracking": {"_count": 1}, "stronger": {"_count": 2}, "had": {"_count": 1}, "quivering": {"_count": 1}, "shook": {"_count": 2}, "all": {"_count": 1}, "though": {"_count": 1}, "slightly": {"_count": 1}, "very": {"_count": 2}, "high": {"_count": 1}, "trembling": {"_count": 3}, "weak": {"_count": 1}, "like": {"_count": 1}, "growing": {"_count": 1}, "to": {"_count": 5}, "thinner": {"_count": 1}, "the": {"_count": 1}, "becoming": {"_count": 2}, "as": {"_count": 1}, "grew": {"_count": 1}, "it": {"_count": 1}, "echoing": {"_count": 3}, "however": {"_count": 1}, "constricted": {"_count": 1}, "trembled": {"_count": 1}, "staring": {"_count": 1}, "unusually": {"_count": 1}, "gentle": {"_count": 1}, "rang": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}, "broke": {"_count": 1}}, "Harry": {"_count": 13, "reminded": {"_count": 1}, "led": {"_count": 1}, "he": {"_count": 1}, "wheeled": {"_count": 1}, "and": {"_count": 3}, "turned": {"_count": 1}, "panted": {"_count": 1}, "groaned": {"_count": 1}, "shes": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}}, "what": {"_count": 10, "with": {"_count": 1}, "really": {"_count": 1}, "I": {"_count": 1}, "was": {"_count": 1}, "happened": {"_count": 1}, "she": {"_count": 1}, "had": {"_count": 2}, "he": {"_count": 1}, "they": {"_count": 1}}, "broom": {"_count": 9, "in": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 3}, "wont": {"_count": 1}, "lay": {"_count": 1}, "away": {"_count": 1}}, "silver": {"_count": 1, "whistle": {"_count": 1}}, "way": {"_count": 17, "across": {"_count": 1}, "out": {"_count": 2}, "to": {"_count": 2}, "over": {"_count": 2}, "along": {"_count": 1}, "she": {"_count": 1}, "back": {"_count": 1}, "of": {"_count": 1}, "through": {"_count": 2}, "looking": {"_count": 1}, "up": {"_count": 1}, "between": {"_count": 2}}, "she": {"_count": 14, "had": {"_count": 2}, "sat": {"_count": 1}, "nodded": {"_count": 1}, "gave": {"_count": 1}, "was": {"_count": 3}, "said": {"_count": 1}, "met": {"_count": 1}, "ought": {"_count": 1}, "unscrewed": {"_count": 1}, "hissed": {"_count": 1}, "addressed": {"_count": 1}}, "job": {"_count": 2, "": {"_count": 1}, "only": {"_count": 1}}, "pocket": {"_count": 9, "she": {"_count": 2}, "and": {"_count": 2}, "": {"_count": 1}, "the": {"_count": 1}, "pointed": {"_count": 1}, "for": {"_count": 2}}, "you": {"_count": 2, "didnt": {"_count": 1}, "know": {"_count": 1}}, "said": {"_count": 26, "Harry": {"_count": 6}, "Dumbledore": {"_count": 1}, "Ron": {"_count": 4}, "Hermione": {"_count": 4}, "Fred": {"_count": 2}, "to": {"_count": 1}, "Ginny": {"_count": 2}, "Pansy": {"_count": 1}, "Doge": {"_count": 2}, "Lupin": {"_count": 1}, "Neville": {"_count": 2}}, "top": {"_count": 1, "hat": {"_count": 1}}, "their": {"_count": 1, "reflections": {"_count": 1}}, "fingers": {"_count": 26, "crossed": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 5}, "blowing": {"_count": 1}, "slightly": {"_count": 1}, "and": {"_count": 2}, "were": {"_count": 2}, "through": {"_count": 2}, "together": {"_count": 2}, "on": {"_count": 1}, "a": {"_count": 1}, "so": {"_count": 1}, "for": {"_count": 1}, "inches": {"_count": 1}, "already": {"_count": 1}, "at": {"_count": 1}, "tenderly": {"_count": 1}}, "lap": {"_count": 15, "was": {"_count": 1}, "": {"_count": 6}, "and": {"_count": 4}, "one": {"_count": 1}, "from": {"_count": 1}, "onto": {"_count": 1}, "gingerly": {"_count": 1}}, "crossed": {"_count": 1, "fingers": {"_count": 1}}, "notes": {"_count": 3, "": {"_count": 1}, "hoping": {"_count": 1}, "as": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "in": {"_count": 39, "": {"_count": 2}, "such": {"_count": 2}, "the": {"_count": 14}, "a": {"_count": 4}, "his": {"_count": 3}, "admiration": {"_count": 1}, "charge": {"_count": 1}, "disbelief": {"_count": 1}, "turn": {"_count": 1}, "person": {"_count": 1}, "return": {"_count": 1}, "and": {"_count": 1}, "Potions": {"_count": 1}, "looks": {"_count": 1}, "front": {"_count": 1}, "here": {"_count": 1}, "life": {"_count": 1}, "time": {"_count": 1}, "earlier": {"_count": 1}}, "slippers": {"_count": 1, "as": {"_count": 1}}, "long": {"_count": 27, "pointed": {"_count": 1}, "emerald": {"_count": 1}, "silvery": {"_count": 2}, "black": {"_count": 2}, "dark": {"_count": 2}, "nails": {"_count": 1}, "hair": {"_count": 4}, "almondshaped": {"_count": 1}, "piece": {"_count": 1}, "braided": {"_count": 1}, "fingers": {"_count": 1}, "blonde": {"_count": 2}, "red": {"_count": 3}, "hooked": {"_count": 1}, "mane": {"_count": 1}, "sweetsmelling": {"_count": 1}, "darkred": {"_count": 1}, "silver": {"_count": 1}}, "temper": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "perhaps": {"_count": 1}}, "just": {"_count": 5, "this": {"_count": 1}, "put": {"_count": 1}, "because": {"_count": 2}, "before": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "lamplike": {"_count": 2, "eyes": {"_count": 2}}, "ankles": {"_count": 2, "": {"_count": 1}, "broken": {"_count": 1}}, "hands": {"_count": 67, "": {"_count": 16}, "to": {"_count": 4}, "on": {"_count": 3}, "gave": {"_count": 1}, "and": {"_count": 9}, "were": {"_count": 2}, "over": {"_count": 9}, "like": {"_count": 1}, "before": {"_count": 1}, "fighting": {"_count": 1}, "very": {"_count": 1}, "though": {"_count": 1}, "Witch": {"_count": 1}, "which": {"_count": 1}, "with": {"_count": 1}, "staring": {"_count": 1}, "once": {"_count": 1}, "too": {"_count": 1}, "clasped": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}, "together": {"_count": 1}, "there": {"_count": 1}, "well": {"_count": 1}, "more": {"_count": 1}, "again": {"_count": 1}, "still": {"_count": 1}, "hysterically": {"_count": 1}, "at": {"_count": 1}}, "by": {"_count": 9, "the": {"_count": 6}, "now": {"_count": 1}, "herself": {"_count": 1}, "reputation": {"_count": 1}}, "Alohomora": {"_count": 1, "Charm": {"_count": 1}}, "blank": {"_count": 2, "face": {"_count": 1}, "piece": {"_count": 1}}, "stone": {"_count": 1, "arm": {"_count": 1}}, "square": {"_count": 5, "the": {"_count": 1}, "spectacles": {"_count": 4}}, "shoulder": {"_count": 35, "to": {"_count": 2}, "": {"_count": 14}, "Harry": {"_count": 1}, "theyve": {"_count": 1}, "and": {"_count": 4}, "into": {"_count": 1}, "as": {"_count": 1}, "all": {"_count": 1}, "at": {"_count": 1}, "Its": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}, "gently": {"_count": 1}, "having": {"_count": 1}, "Ron": {"_count": 2}, "so": {"_count": 1}}, "opinion": {"_count": 1, "Professor": {"_count": 1}}, "out": {"_count": 12, "at": {"_count": 1}, "of": {"_count": 4}, "onto": {"_count": 2}, "when": {"_count": 1}, "after": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}}, "massive": {"_count": 3, "son": {"_count": 1}, "shoulders": {"_count": 1}, "brown": {"_count": 1}}, "husband": {"_count": 22, "": {"_count": 5}, "whose": {"_count": 1}, "Rodolphus": {"_count": 1}, "leaned": {"_count": 1}, "forward": {"_count": 1}, "during": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 4}, "could": {"_count": 1}, "abandoned": {"_count": 1}, "Percivals": {"_count": 1}, "to": {"_count": 1}, "died": {"_count": 1}, "in": {"_count": 1}}, "son": {"_count": 14, "while": {"_count": 1}, "": {"_count": 4}, "if": {"_count": 1}, "Neville": {"_count": 1}, "and": {"_count": 2}, "said": {"_count": 1}, "than": {"_count": 1}, "into": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}}, "large": {"_count": 6, "cage": {"_count": 1}, "jaw": {"_count": 1}, "glasses": {"_count": 1}, "mannish": {"_count": 1}, "ears": {"_count": 1}, "bosom": {"_count": 1}}, "wings": {"_count": 9, "wildly": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 3}, "halffurled": {"_count": 1}, "indignantly": {"_count": 1}, "at": {"_count": 1}, "all": {"_count": 1}}, "empty": {"_count": 3, "food": {"_count": 1}, "seat": {"_count": 1}, "palm": {"_count": 1}}, "feathers": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "friends": {"_count": 5, "tea": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "leaving": {"_count": 1}, "were": {"_count": 1}}, "hips": {"_count": 2, "staring": {"_count": 1}, "": {"_count": 1}}, "rage": {"_count": 1, "broke": {"_count": 1}}, "cheeks": {"_count": 12, "rather": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 3}, "glowing": {"_count": 1}, "flushed": {"_count": 1}, "reddening": {"_count": 1}, "were": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}}, "porridge": {"_count": 1, "bowl": {"_count": 1}}, "flaming": {"_count": 1, "hair": {"_count": 1}}, "elbow": {"_count": 2, "in": {"_count": 1}, "Harry": {"_count": 1}}, "saying": {"_count": 2, "we": {"_count": 1}, "grumpily": {"_count": 1}}, "bushy": {"_count": 3, "brown": {"_count": 1}, "hair": {"_count": 2}}, "handbag": {"_count": 9, "swinging": {"_count": 1}, "": {"_count": 1}, "extracted": {"_count": 1}, "stretched": {"_count": 1}, "the": {"_count": 1}, "still": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}, "so": {"_count": 1}}, "bag": {"_count": 42, "and": {"_count": 10}, "": {"_count": 13}, "for": {"_count": 1}, "out": {"_count": 1}, "took": {"_count": 1}, "the": {"_count": 1}, "just": {"_count": 1}, "which": {"_count": 1}, "back": {"_count": 2}, "again": {"_count": 1}, "open": {"_count": 1}, "onto": {"_count": 3}, "shut": {"_count": 2}, "before": {"_count": 1}, "once": {"_count": 1}, "from": {"_count": 1}, "waved": {"_count": 1}}, "hair": {"_count": 35, "": {"_count": 5}, "in": {"_count": 4}, "out": {"_count": 2}, "smiling": {"_count": 1}, "down": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 4}, "again": {"_count": 1}, "had": {"_count": 1}, "from": {"_count": 1}, "flying": {"_count": 2}, "tied": {"_count": 2}, "and": {"_count": 4}, "came": {"_count": 1}, "which": {"_count": 1}, "its": {"_count": 1}, "miraculously": {"_count": 1}, "while": {"_count": 2}}, "tipping": {"_count": 1, "the": {"_count": 1}}, "diary": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "vivid": {"_count": 2, "Weasley": {"_count": 1}, "hair": {"_count": 1}}, "washing": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "angry": {"_count": 1}}, "House": {"_count": 1, "and": {"_count": 1}}, "responsibility": {"_count": 1, "": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 3, "let": {"_count": 1}, "": {"_count": 1}, "whispered": {"_count": 1}}, "copy": {"_count": 8, "of": {"_count": 8}}, "finger": {"_count": 12, "": {"_count": 2}, "down": {"_count": 2}, "in": {"_count": 2}, "to": {"_count": 3}, "strayed": {"_count": 1}, "and": {"_count": 1}, "touched": {"_count": 1}}, "flyaway": {"_count": 3, "hair": {"_count": 2}, "gray": {"_count": 1}}, "clothes": {"_count": 2, "and": {"_count": 1}, "at": {"_count": 1}}, "fingernails": {"_count": 1, "would": {"_count": 1}}, "usual": {"_count": 15, "cheerful": {"_count": 1}, "toilet": {"_count": 1}, "dramatic": {"_count": 1}, "airyfairy": {"_count": 1}, "air": {"_count": 1}, "uniform": {"_count": 1}, "notes": {"_count": 1}, "brisk": {"_count": 1}, "misty": {"_count": 1}, "manner": {"_count": 1}, "mystic": {"_count": 1}, "ethereal": {"_count": 2}, "pre": {"_count": 1}, "knack": {"_count": 1}}, "belt": {"_count": 1, "and": {"_count": 1}}, "own": {"_count": 51, "ears": {"_count": 1}, "earmuffs": {"_count": 1}, "class": {"_count": 1}, "wand": {"_count": 5}, "farewell": {"_count": 1}, "free": {"_count": 1}, "The": {"_count": 1}, "brand": {"_count": 1}, "spray": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 6}, "knife": {"_count": 1}, "writing": {"_count": 1}, "teaching": {"_count": 1}, "and": {"_count": 1}, "fat": {"_count": 1}, "hands": {"_count": 1}, "knobbly": {"_count": 1}, "office": {"_count": 1}, "steed": {"_count": 1}, "stunning": {"_count": 1}, "life": {"_count": 3}, "glass": {"_count": 1}, "family": {"_count": 2}, "fork": {"_count": 1}, "hair": {"_count": 1}, "good": {"_count": 1}, "bathroom": {"_count": 1}, "Tom": {"_count": 1}, "deadpan": {"_count": 1}, "said": {"_count": 1}, "present": {"_count": 1}, "daughter": {"_count": 1}, "pureblood": {"_count": 1}, "neck": {"_count": 1}, "Shield": {"_count": 1}, "voice": {"_count": 1}, "advice": {"_count": 1}, "fake": {"_count": 1}}, "robes": {"_count": 28, "grasped": {"_count": 1}, "bulging": {"_count": 1}, "pulled": {"_count": 1}, "fall": {"_count": 1}, "": {"_count": 9}, "out": {"_count": 1}, "pulling": {"_count": 1}, "for": {"_count": 1}, "were": {"_count": 3}, "and": {"_count": 3}, "damp": {"_count": 1}, "which": {"_count": 1}, "an": {"_count": 1}, "right": {"_count": 1}, "as": {"_count": 1}, "drew": {"_count": 1}}, "read": {"_count": 1, "Lockharts": {"_count": 1}}, "schedule": {"_count": 2, "have": {"_count": 1}, "and": {"_count": 1}}, "name": {"_count": 9, "": {"_count": 2}, "properly": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}, "or": {"_count": 1}, "with": {"_count": 1}, "several": {"_count": 1}, "than": {"_count": 1}}, "paper": {"_count": 2, "over": {"_count": 1}, "": {"_count": 1}}, "\u2018Mudblood": {"_count": 2, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "jus": {"_count": 1, "yesterday": {"_count": 1}}, "eyebrows": {"_count": 27, "": {"_count": 10}, "raised": {"_count": 6}, "and": {"_count": 3}, "so": {"_count": 1}, "at": {"_count": 2}, "had": {"_count": 1}, "he": {"_count": 1}, "growing": {"_count": 1}, "slightly": {"_count": 1}, "coldly": {"_count": 1}}, "huge": {"_count": 4, "fan": {"_count": 1}, "eyes": {"_count": 1}, "glasses": {"_count": 1}, "hands": {"_count": 1}}, "whole": {"_count": 9, "head": {"_count": 1}, "face": {"_count": 2}, "family": {"_count": 2}, "body": {"_count": 1}, "Inquisitorial": {"_count": 1}, "owl": {"_count": 1}, "her": {"_count": 1}}, "into": {"_count": 10, "a": {"_count": 3}, "the": {"_count": 4}, "it": {"_count": 1}, "his": {"_count": 2}}, "and": {"_count": 92, "Ron": {"_count": 5}, "she": {"_count": 5}, "now": {"_count": 2}, "dropping": {"_count": 1}, "rammed": {"_count": 1}, "seizing": {"_count": 1}, "edged": {"_count": 1}, "was": {"_count": 2}, "as": {"_count": 1}, "sent": {"_count": 1}, "holding": {"_count": 2}, "insisted": {"_count": 1}, "Rons": {"_count": 1}, "said": {"_count": 1}, "her": {"_count": 4}, "tried": {"_count": 2}, "rather": {"_count": 1}, "his": {"_count": 2}, "continued": {"_count": 1}, "then": {"_count": 3}, "Harry": {"_count": 3}, "bending": {"_count": 1}, "returned": {"_count": 1}, "take": {"_count": 1}, "dismounted": {"_count": 1}, "handing": {"_count": 1}, "that": {"_count": 1}, "helped": {"_count": 1}, "ask": {"_count": 1}, "not": {"_count": 1}, "bewitched": {"_count": 1}, "a": {"_count": 1}, "Hermione": {"_count": 2}, "all": {"_count": 1}, "he": {"_count": 4}, "began": {"_count": 2}, "in": {"_count": 1}, "Professor": {"_count": 1}, "jinx": {"_count": 1}, "pulled": {"_count": 2}, "turned": {"_count": 1}, "who": {"_count": 1}, "sprinted": {"_count": 1}, "the": {"_count": 4}, "aimed": {"_count": 1}, "whipping": {"_count": 1}, "put": {"_count": 1}, "I": {"_count": 1}, "serve": {"_count": 1}, "knew": {"_count": 1}, "managed": {"_count": 1}, "taking": {"_count": 1}, "for": {"_count": 1}, "Xenophilius": {"_count": 1}, "with": {"_count": 1}, "give": {"_count": 1}, "vanished": {"_count": 1}, "threw": {"_count": 1}, "attack": {"_count": 1}, "talk": {"_count": 1}, "Ginny": {"_count": 1}, "prodded": {"_count": 1}, "hes": {"_count": 1}}, "wailing": {"_count": 1, "at": {"_count": 1}}, "er": {"_count": 1, "hello": {"_count": 1}}, "small": {"_count": 6, "seethrough": {"_count": 1}, "pointed": {"_count": 1}, "leaky": {"_count": 1}, "beaded": {"_count": 3}}, "ear": {"_count": 7, "": {"_count": 2}, "pressed": {"_count": 1}, "still": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "pelting": {"_count": 1, "her": {"_count": 1}}, "with": {"_count": 30, "moldy": {"_count": 1}, "a": {"_count": 12}, "an": {"_count": 1}, "wide": {"_count": 1}, "me": {"_count": 2}, "slightly": {"_count": 1}, "his": {"_count": 4}, "expressions": {"_count": 1}, "polite": {"_count": 1}, "Dungbombs": {"_count": 1}, "cold": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}}, "tail": {"_count": 4, "from": {"_count": 1}, "": {"_count": 2}, "thrashed": {"_count": 1}}, "closely": {"_count": 1, "through": {"_count": 1}}, "probably": {"_count": 1, "the": {"_count": 1}}, "Argus": {"_count": 1, "said": {"_count": 1}}, "bracingly": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 8, "they": {"_count": 2}, "she": {"_count": 5}, "he": {"_count": 1}}, "writings": {"_count": 1, "tiny": {"_count": 1}}, "lip": {"_count": 11, "": {"_count": 3}, "looking": {"_count": 2}, "was": {"_count": 1}, "bleeding": {"_count": 1}, "curling": {"_count": 1}, "and": {"_count": 2}, "deep": {"_count": 1}}, "might": {"_count": 1, "not": {"_count": 1}}, "lips": {"_count": 24, "and": {"_count": 5}, "but": {"_count": 1}, "then": {"_count": 1}, "pursed": {"_count": 2}, "were": {"_count": 2}, "": {"_count": 4}, "she": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 2}, "together": {"_count": 1}, "frankly": {"_count": 1}, "parted": {"_count": 1}, "slightly": {"_count": 1}, "on": {"_count": 1}}, "chin": {"_count": 9, "": {"_count": 3}, "on": {"_count": 1}, "panicstricken": {"_count": 1}, "however": {"_count": 1}, "in": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 1}}, "muffled": {"_count": 1, "sobs": {"_count": 1}}, "so": {"_count": 9, "upset": {"_count": 1}, "far": {"_count": 1}, "I": {"_count": 2}, "much": {"_count": 1}, "fast": {"_count": 1}, "furiously": {"_count": 1}, "that": {"_count": 1}, "well": {"_count": 1}}, "all": {"_count": 13, "the": {"_count": 4}, "over": {"_count": 1}, "through": {"_count": 2}, "they": {"_count": 1}, "lesson": {"_count": 1}, "about": {"_count": 3}, "holiday": {"_count": 1}}, "grasp": {"_count": 2, "and": {"_count": 1}, "slid": {"_count": 1}}, "stall": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "stopping": {"_count": 1, "the": {"_count": 1}}, "nightdress": {"_count": 4, "": {"_count": 2}, "fell": {"_count": 1}, "clearly": {"_count": 1}}, "Ginny": {"_count": 1, "was": {"_count": 1}}, "list": {"_count": 2, "they": {"_count": 1}, "and": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "heavy": {"_count": 2, "jaw": {"_count": 1}, "brass": {"_count": 1}}, "a": {"_count": 36, "weak": {"_count": 1}, "break": {"_count": 1}, "dewy": {"_count": 1}, "leg": {"_count": 1}, "pay": {"_count": 1}, "pained": {"_count": 1}, "fly": {"_count": 1}, "withering": {"_count": 2}, "bit": {"_count": 2}, "lot": {"_count": 1}, "Mudblood": {"_count": 1}, "handkerchief": {"_count": 1}, "permanently": {"_count": 1}, "liar": {"_count": 1}, "tenpoint": {"_count": 1}, "loud": {"_count": 1}, "faint": {"_count": 1}, "sharp": {"_count": 1}, "rather": {"_count": 1}, "hundred": {"_count": 1}, "small": {"_count": 1}, "watering": {"_count": 1}, "little": {"_count": 1}, "few": {"_count": 1}, "suspicious": {"_count": 1}, "happy": {"_count": 1}, "hasty": {"_count": 1}, "pittance": {"_count": 1}, "halfblood": {"_count": 1}, "squeeze": {"_count": 1}, "slight": {"_count": 1}, "one": {"_count": 1}, "savage": {"_count": 1}, "starry": {"_count": 1}}, "knight": {"_count": 1, "off": {"_count": 1}}, "beak": {"_count": 14, "": {"_count": 3}, "expecting": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 3}, "with": {"_count": 1}, "in": {"_count": 1}, "expectantly": {"_count": 1}, "briefly": {"_count": 1}, "furiously": {"_count": 1}, "impatiently": {"_count": 1}}, "card": {"_count": 1, "with": {"_count": 1}}, "eye": {"_count": 9, "not": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "she": {"_count": 1}, "as": {"_count": 1}}, "they": {"_count": 2, "heard": {"_count": 1}, "were": {"_count": 1}}, "Goyles": {"_count": 1, "hair": {"_count": 1}}, "looking": {"_count": 7, "so": {"_count": 1}, "around": {"_count": 1}, "back": {"_count": 1}, "affronted": {"_count": 1}, "slightly": {"_count": 1}, "thoroughly": {"_count": 1}, "unnerved": {"_count": 1}}, "disappearance": {"_count": 2, "when": {"_count": 1}, "being": {"_count": 1}}, "curtains": {"_count": 3, "again": {"_count": 1}, "": {"_count": 1}, "flying": {"_count": 1}}, "the": {"_count": 31, "shame": {"_count": 1}, "story": {"_count": 1}, "Mandrakes": {"_count": 1}, "tin": {"_count": 1}, "very": {"_count": 1}, "goods": {"_count": 1}, "thumbsup": {"_count": 1}, "satisfaction": {"_count": 3}, "cage": {"_count": 1}, "truth": {"_count": 2}, "way": {"_count": 1}, "letter": {"_count": 1}, "power": {"_count": 1}, "results": {"_count": 1}, "prophecy": {"_count": 1}, "pain": {"_count": 1}, "look": {"_count": 4}, "slip": {"_count": 1}, "piece": {"_count": 1}, "pod": {"_count": 1}, "news": {"_count": 1}, "torn": {"_count": 1}, "sheaf": {"_count": 1}, "Cloak": {"_count": 1}, "same": {"_count": 1}}, "each": {"_count": 1, "days": {"_count": 1}}, "evening": {"_count": 1, "dose": {"_count": 1}}, "stomach": {"_count": 2, "": {"_count": 1}, "bursting": {"_count": 1}}, "T": {"_count": 1, "": {"_count": 1}}, "telling": {"_count": 1, "Filch": {"_count": 1}}, "nerve": {"_count": 4, "thought": {"_count": 1}, "": {"_count": 2}, "after": {"_count": 1}}, "classroom": {"_count": 5, "he": {"_count": 1}, "that": {"_count": 1}, "emitting": {"_count": 1}, "as": {"_count": 1}, "for": {"_count": 1}}, "I": {"_count": 17, "dont": {"_count": 3}, "didnt": {"_count": 1}, "haff": {"_count": 1}, "did": {"_count": 1}, "like": {"_count": 1}, "was": {"_count": 1}, "passed": {"_count": 1}, "fancy": {"_count": 1}, "suppose": {"_count": 1}, "cant": {"_count": 1}, "feel": {"_count": 1}, "think": {"_count": 2}, "owe": {"_count": 1}, "told": {"_count": 1}}, "forehead": {"_count": 8, "": {"_count": 4}, "reddening": {"_count": 1}, "in": {"_count": 1}, "hit": {"_count": 1}, "and": {"_count": 1}}, "megaphone": {"_count": 1, "All": {"_count": 1}}, "was": {"_count": 5, "HermioneY": {"_count": 1}, "extravagant": {"_count": 1}, "covered": {"_count": 1}, "the": {"_count": 1}, "perfunctory": {"_count": 1}}, "where": {"_count": 1, "she": {"_count": 1}}, "chair": {"_count": 17, "exactly": {"_count": 1}, "had": {"_count": 1}, "toward": {"_count": 1}, "away": {"_count": 1}, "if": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 2}, "": {"_count": 3}, "in": {"_count": 1}, "by": {"_count": 1}, "but": {"_count": 1}, "turned": {"_count": 1}, "at": {"_count": 2}}, "not": {"_count": 4, "to": {"_count": 3}, "with": {"_count": 1}}, "word": {"_count": 1, "": {"_count": 1}}, "beady": {"_count": 3, "eye": {"_count": 1}, "eyes": {"_count": 2}}, "bedside": {"_count": 1, "cabinet": {"_count": 1}}, "right": {"_count": 3, "hand": {"_count": 1}, "away": {"_count": 1}, "marrying": {"_count": 1}}, "blankets": {"_count": 3, "and": {"_count": 2}, "but": {"_count": 1}}, "fist": {"_count": 2, "": {"_count": 2}}, "mirror": {"_count": 1, "and": {"_count": 1}}, "toilet": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "mangled": {"_count": 1, "body": {"_count": 1}}, "over": {"_count": 7, "": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 2}, "his": {"_count": 1}, "there": {"_count": 1}}, "heart": {"_count": 9, "and": {"_count": 3}, "in": {"_count": 1}, "out": {"_count": 2}, "": {"_count": 3}}, "secrets": {"_count": 2, "to": {"_count": 2}}, "pitiful": {"_count": 1, "worries": {"_count": 1}}, "brothers": {"_count": 6, "tease": {"_count": 1}, "wedding": {"_count": 1}, "they": {"_count": 1}, "stared": {"_count": 1}, "": {"_count": 1}, "clutching": {"_count": 1}}, "how": {"_count": 6, "she": {"_count": 3}, "much": {"_count": 2}, "Cedric": {"_count": 1}}, "soul": {"_count": 2, "to": {"_count": 1}, "happened": {"_count": 1}}, "deepest": {"_count": 1, "fears": {"_count": 1}}, "darkest": {"_count": 1, "secrets": {"_count": 1}}, "awkwardly": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 5, "first": {"_count": 1}, "the": {"_count": 4}}, "bathroom": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 2, "it": {"_count": 2}}, "old": {"_count": 5, "Transfiguration": {"_count": 1}, "houseelf": {"_count": 1}, "patched": {"_count": 1}, "self": {"_count": 1}, "tartan": {"_count": 1}}, "shed": {"_count": 1, "been": {"_count": 1}}, "burden": {"_count": 1, "then": {"_count": 1}}, "present": {"_count": 1, "": {"_count": 1}}, "life": {"_count": 10, "spying": {"_count": 1}, "during": {"_count": 1}, "looked": {"_count": 1}, "and": {"_count": 1}, "then": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}, "has": {"_count": 1}, "": {"_count": 1}, "didnt": {"_count": 1}}, "Aunt": {"_count": 1, "all": {"_count": 1}}, "precious": {"_count": 3, "dogs": {"_count": 1}, "books": {"_count": 1}, "son": {"_count": 1}}, "visits": {"_count": 1, "stood": {"_count": 1}}, "last": {"_count": 5, "visit": {"_count": 1}, "spoonful": {"_count": 1}, "note": {"_count": 1}, "three": {"_count": 1}, "Arithmancy": {"_count": 1}}, "favorite": {"_count": 4, "dog": {"_count": 1}, "way": {"_count": 1}, "shade": {"_count": 1}, "he": {"_count": 1}}, "clean": {"_count": 1, "floor": {"_count": 1}}, "mustache": {"_count": 1, "and": {"_count": 1}}, "glass": {"_count": 10, "of": {"_count": 3}, "and": {"_count": 3}, "": {"_count": 1}, "upon": {"_count": 1}, "it": {"_count": 1}, "flask": {"_count": 1}}, "great": {"_count": 5, "ruddy": {"_count": 1}, "tweed": {"_count": 1}, "black": {"_count": 1}, "brown": {"_count": 1}, "white": {"_count": 1}}, "napkin": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 2, "finger": {"_count": 1}, "adventure": {"_count": 1}}, "shovellike": {"_count": 1, "one": {"_count": 1}}, "sleeve": {"_count": 9, "": {"_count": 6}, "into": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}}, "tiny": {"_count": 5, "bloodshot": {"_count": 1}, "eyes": {"_count": 2}, "fists": {"_count": 1}, "egg": {"_count": 1}}, "tweed": {"_count": 2, "jacket": {"_count": 1}, "waistband": {"_count": 1}}, "down": {"_count": 11, "again": {"_count": 1}, "the": {"_count": 2}, "for": {"_count": 1}, "two": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "Slights": {"_count": 1}, "kill": {"_count": 1}}, "memory": {"_count": 6, "has": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 1}, "permanently": {"_count": 1}, "just": {"_count": 1}, "of": {"_count": 1}}, "purse": {"_count": 1, "": {"_count": 1}}, "owl": {"_count": 3, "": {"_count": 2}, "They": {"_count": 1}}, "shopping": {"_count": 2, "in": {"_count": 1}, "remember": {"_count": 1}}, "an": {"_count": 8, "example": {"_count": 1}, "all": {"_count": 1}, "alarmed": {"_count": 1}, "ironic": {"_count": 1}, "exploding": {"_count": 1}, "approving": {"_count": 1}, "interfering": {"_count": 1}, "outcast": {"_count": 1}}, "children": {"_count": 4, "then": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}, "tightly": {"_count": 1}}, "enormous": {"_count": 11, "handbag": {"_count": 1}, "gleaming": {"_count": 1}, "eyes": {"_count": 2}, "amber": {"_count": 1}, "wings": {"_count": 1}, "glassy": {"_count": 1}, "hands": {"_count": 1}, "protuberant": {"_count": 1}, "lenses": {"_count": 1}, "colored": {"_count": 1}}, "watch": {"_count": 15, "": {"_count": 11}, "again": {"_count": 1}, "and": {"_count": 1}, "every": {"_count": 1}, "if": {"_count": 1}}, "pass": {"_count": 1, "him": {"_count": 1}}, "corner": {"_count": 4, "looking": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "massaging": {"_count": 1}}, "sharp": {"_count": 2, "eyes": {"_count": 1}, "nose": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 2}, "to": {"_count": 1}}, "office": {"_count": 29, "a": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 9}, "said": {"_count": 2}, "returned": {"_count": 1}, "looking": {"_count": 1}, "without": {"_count": 1}, "to": {"_count": 1}, "piped": {"_count": 1}, "Fred": {"_count": 1}, "while": {"_count": 1}, "door": {"_count": 3}, "and": {"_count": 2}, "this": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}}, "course": {"_count": 1, "schedule": {"_count": 1}}, "spindly": {"_count": 1, "neck": {"_count": 1}}, "shawl": {"_count": 4, "and": {"_count": 2}, "from": {"_count": 1}, "": {"_count": 1}}, "glittering": {"_count": 3, "hand": {"_count": 1}, "beads": {"_count": 1}, "charmed": {"_count": 1}}, "mistiest": {"_count": 2, "voice": {"_count": 1}, "most": {"_count": 1}}, "nostrils": {"_count": 2, "had": {"_count": 1}, "flaring": {"_count": 1}}, "page": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "Arithmancy": {"_count": 4, "book": {"_count": 2}, "class": {"_count": 1}, "essay": {"_count": 1}}, "run": {"_count": 1, "up": {"_count": 1}}, "steakandkidney": {"_count": 1, "pudding": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "either": {"_count": 4, "": {"_count": 4}}, "very": {"_count": 6, "slowly": {"_count": 1}, "awkwardly": {"_count": 1}, "well": {"_count": 1}, "nose": {"_count": 1}, "hard": {"_count": 1}, "deferentially": {"_count": 1}}, "rabbit": {"_count": 1, "Binky": {"_count": 1}}, "now": {"_count": 6, "Ron": {"_count": 1}, "": {"_count": 1}, "knitting": {"_count": 1}, "and": {"_count": 1}, "thinking": {"_count": 1}, "someone": {"_count": 1}}, "papers": {"_count": 1, "neatly": {"_count": 1}}, "portrait": {"_count": 3, "which": {"_count": 1}, "swung": {"_count": 1}, "and": {"_count": 1}}, "running": {"_count": 2, "through": {"_count": 1}, "away": {"_count": 1}}, "whistle": {"_count": 6, "to": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "in": {"_count": 2}}, "cloak": {"_count": 11, "over": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "pocket": {"_count": 1}, "into": {"_count": 1}, "streaming": {"_count": 1}, "holding": {"_count": 1}, "cast": {"_count": 1}, "around": {"_count": 1}, "as": {"_count": 1}}, "throw": {"_count": 2, "away": {"_count": 1}, "a": {"_count": 1}}, "words": {"_count": 7, "heard": {"_count": 1}, "": {"_count": 2}, "were": {"_count": 2}, "had": {"_count": 1}, "very": {"_count": 1}}, "attempts": {"_count": 2, "to": {"_count": 2}}, "grinning": {"_count": 1, "": {"_count": 1}}, "broomstick": {"_count": 1, "": {"_count": 1}}, "homework": {"_count": 4, "over": {"_count": 1}, "when": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "Theres": {"_count": 1, "nothing": {"_count": 1}}, "dressing": {"_count": 2, "gown": {"_count": 2}}, "dormitory": {"_count": 1, "but": {"_count": 1}}, "cat": {"_count": 4, "": {"_count": 1}, "ever": {"_count": 1}, "ate": {"_count": 1}, "acted": {"_count": 1}}, "both": {"_count": 1, "holding": {"_count": 1}}, "book": {"_count": 6, "which": {"_count": 1}, "aside": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 2}, "once": {"_count": 1}}, "heel": {"_count": 5, "and": {"_count": 5}}, "interference": {"_count": 1, "he": {"_count": 1}}, "see": {"_count": 3, "reason": {"_count": 1}, "sense": {"_count": 1}, "him": {"_count": 1}}, "again": {"_count": 8, "": {"_count": 4}, "and": {"_count": 2}, "anyway": {"_count": 1}, "to": {"_count": 1}}, "louder": {"_count": 1, "that": {"_count": 1}}, "classes": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}}, "talking": {"_count": 3, "to": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}}, "work": {"_count": 3, "and": {"_count": 1}, "brought": {"_count": 1}, "as": {"_count": 1}}, "table": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "looking": {"_count": 1}}, "lifting": {"_count": 1, "books": {"_count": 1}}, "rune": {"_count": 1, "dictionary": {"_count": 1}}, "professional": {"_count": 1, "opinion": {"_count": 1}}, "easily": {"_count": 1, "and": {"_count": 1}}, "your": {"_count": 1, "acceleration": {"_count": 1}}, "tartan": {"_count": 4, "dressing": {"_count": 2}, "carpet": {"_count": 1}, "biscuit": {"_count": 1}}, "because": {"_count": 3, "o": {"_count": 1}, "her": {"_count": 1}, "she": {"_count": 1}}, "If": {"_count": 1, "shed": {"_count": 1}}, "hump": {"_count": 1, "heaved": {"_count": 1}}, "too": {"_count": 8, "said": {"_count": 1}, "before": {"_count": 1}, "well": {"_count": 1}, "": {"_count": 3}, "now": {"_count": 1}, "harshly": {"_count": 1}}, "awake": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "flinching": {"_count": 1, "every": {"_count": 1}}, "back": {"_count": 54, "to": {"_count": 13}, "on": {"_count": 8}, "": {"_count": 6}, "toward": {"_count": 1}, "as": {"_count": 2}, "for": {"_count": 2}, "question": {"_count": 1}, "but": {"_count": 2}, "Malfoy": {"_count": 1}, "firmly": {"_count": 1}, "and": {"_count": 4}, "whose": {"_count": 1}, "looking": {"_count": 1}, "up": {"_count": 2}, "gave": {"_count": 1}, "onto": {"_count": 1}, "against": {"_count": 1}, "the": {"_count": 1}, "inside": {"_count": 1}, "across": {"_count": 1}, "if": {"_count": 1}, "room": {"_count": 1}, "her": {"_count": 1}}, "bangles": {"_count": 2, "": {"_count": 1}, "beaming": {"_count": 1}}, "gauzy": {"_count": 1, "shawl": {"_count": 1}}, "books": {"_count": 4, "": {"_count": 2}, "away": {"_count": 1}, "back": {"_count": 1}}, "poke": {"_count": 1, "him": {"_count": 1}}, "clubs": {"_count": 1, "raised": {"_count": 1}}, "hat": {"_count": 8, "had": {"_count": 1}, "flattening": {"_count": 1}, "told": {"_count": 1}, "": {"_count": 2}, "trembled": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "tortoise": {"_count": 1, "had": {"_count": 1}}, "knees": {"_count": 11, "": {"_count": 4}, "beside": {"_count": 2}, "trembling": {"_count": 1}, "gave": {"_count": 2}, "he": {"_count": 1}, "shaking": {"_count": 1}}, "armchair": {"_count": 2, "her": {"_count": 1}, "and": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "about": {"_count": 11, "leaving": {"_count": 1}, "the": {"_count": 3}, "Dobby": {"_count": 1}, "them": {"_count": 1}, "whether": {"_count": 1}, "her": {"_count": 1}, "ten": {"_count": 1}, "following": {"_count": 1}, "your": {"_count": 1}}, "did": {"_count": 3, "you": {"_count": 1}, "we": {"_count": 1}, "he": {"_count": 1}}, "bed": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "hasnt": {"_count": 1}}, "completely": {"_count": 1, "bewildered": {"_count": 1}}, "shadowy": {"_count": 1, "face": {"_count": 1}}, "tree": {"_count": 1, "seizing": {"_count": 1}}, "weight": {"_count": 2, "to": {"_count": 1}, "nervously": {"_count": 1}}, "muttering": {"_count": 2, "Oh": {"_count": 1}, "Tentacula": {"_count": 1}}, "left": {"_count": 7, "hand": {"_count": 3}, "ear": {"_count": 1}, "nostril": {"_count": 1}, "leg": {"_count": 1}, "sleeve": {"_count": 1}}, "total": {"_count": 1, "of": {"_count": 1}}, "is": {"_count": 2, "living": {"_count": 1}, "a": {"_count": 1}}, "fourth": {"_count": 1, "sherry": {"_count": 1}}, "before": {"_count": 9, "we": {"_count": 2}, "she": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 1}, "Neville": {"_count": 1}, "bending": {"_count": 1}, "remembering": {"_count": 1}}, "were": {"_count": 3, "you": {"_count": 1}, "powerful": {"_count": 1}, "muttering": {"_count": 1}}, "information": {"_count": 1, "was": {"_count": 1}}, "holidays": {"_count": 1, "": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "water": {"_count": 1, "tray": {"_count": 1}}, "horselike": {"_count": 1, "teeth": {"_count": 1}}, "gleaming": {"_count": 1, "walls": {"_count": 1}}, "became": {"_count": 1, "apparent": {"_count": 1}}, "tongue": {"_count": 4, "as": {"_count": 1}, "again": {"_count": 1}, "so": {"_count": 1}, "moistening": {"_count": 1}}, "off": {"_count": 17, "": {"_count": 3}, "her": {"_count": 3}, "the": {"_count": 2}, "early": {"_count": 1}, "meeting": {"_count": 1}, "tell": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}, "Bellatrix": {"_count": 1}, "lately": {"_count": 1}, "by": {"_count": 1}, "she": {"_count": 1}}, "real": {"_count": 1, "wand": {"_count": 1}}, "but": {"_count": 26, "Bagman": {"_count": 1}, "nothing": {"_count": 1}, "staring": {"_count": 1}, "halfway": {"_count": 1}, "he": {"_count": 2}, "how": {"_count": 1}, "the": {"_count": 3}, "she": {"_count": 4}, "who": {"_count": 1}, "their": {"_count": 1}, "if": {"_count": 1}, "Hermione": {"_count": 1}, "unfortunately": {"_count": 1}, "do": {"_count": 1}, "said": {"_count": 1}, "when": {"_count": 1}, "something": {"_count": 1}, "returned": {"_count": 1}, "it": {"_count": 1}, "dementors": {"_count": 1}}, "wristwatch": {"_count": 1, "": {"_count": 1}}, "climbing": {"_count": 1, "the": {"_count": 1}}, "Summoning": {"_count": 1, "Charm": {"_count": 1}}, "side": {"_count": 6, "": {"_count": 2}, "Harry": {"_count": 2}, "looking": {"_count": 1}, "and": {"_count": 1}}, "eel": {"_count": 1, "farm": {"_count": 1}}, "velvetcovered": {"_count": 1, "tasseled": {"_count": 1}}, "screeched": {"_count": 1, "and": {"_count": 1}}, "spotted": {"_count": 1, "would": {"_count": 1}}, "say": {"_count": 4, "Ogwarts": {"_count": 1}, "this": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "go": {"_count": 8, "up": {"_count": 1}, "next": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "he": {"_count": 1}, "without": {"_count": 1}, "feeling": {"_count": 1}}, "bewitched": {"_count": 1, "so": {"_count": 1}}, "holding": {"_count": 1, "one": {"_count": 1}}, "squashed": {"_count": 2, "and": {"_count": 1}, "tomato": {"_count": 1}}, "ears": {"_count": 4, "flapping": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}}, "master": {"_count": 6, "and": {"_count": 1}, "": {"_count": 1}, "sir": {"_count": 1}, "now": {"_count": 1}, "she": {"_count": 1}, "capering": {"_count": 1}}, "masters": {"_count": 4, "reputation": {"_count": 1}, "secrets": {"_count": 2}, "were": {"_count": 1}}, "sobs": {"_count": 1, "echoed": {"_count": 1}}, "\u2018elf": {"_count": 1, "all": {"_count": 1}}, "bedroom": {"_count": 2, "slippers": {"_count": 1}, "ceiling": {"_count": 1}}, "limp": {"_count": 3, "hand": {"_count": 1}, "fingers": {"_count": 1}, "form": {"_count": 1}}, "ages": {"_count": 1, "ago": {"_count": 1}}, "pointed": {"_count": 1, "hat": {"_count": 1}}, "squarerimmed": {"_count": 1, "spectacles": {"_count": 1}}, "golden": {"_count": 1, "goblet": {"_count": 1}}, "reaction": {"_count": 1, "": {"_count": 1}}, "hardly": {"_count": 1, "touched": {"_count": 1}}, "knife": {"_count": 3, "and": {"_count": 3}}, "anxiety": {"_count": 1, "did": {"_count": 1}}, "toast": {"_count": 1, "too": {"_count": 1}}, "person": {"_count": 1, "in": {"_count": 1}}, "brand": {"_count": 1, "of": {"_count": 1}}, "give": {"_count": 1, "them": {"_count": 1}}, "fallen": {"_count": 1, "books": {"_count": 1}}, "plate": {"_count": 5, "and": {"_count": 2}, "closely": {"_count": 1}, "": {"_count": 2}}, "sentence": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "completed": {"_count": 1, "horoscope": {"_count": 1}}, "gaze": {"_count": 7, "saw": {"_count": 1}, "and": {"_count": 1}, "became": {"_count": 1}, "from": {"_count": 2}, "was": {"_count": 1}, "he": {"_count": 1}}, "including": {"_count": 1, "Ron": {"_count": 1}}, "instead": {"_count": 4, "refused": {"_count": 1}, "": {"_count": 2}, "though": {"_count": 1}}, "outstretched": {"_count": 2, "wing": {"_count": 1}, "hand": {"_count": 1}}, "sliding": {"_count": 1, "a": {"_count": 1}}, "perch": {"_count": 3, "showing": {"_count": 1}, "on": {"_count": 2}}, "stick": {"_count": 1, "out": {"_count": 1}}, "fly": {"_count": 3, "out": {"_count": 2}, "away": {"_count": 1}}, "rather": {"_count": 3, "surprised": {"_count": 1}, "disconcerted": {"_count": 1}, "bony": {"_count": 1}}, "quiet": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 2, "few": {"_count": 1}, "question": {"_count": 1}}, "plait": {"_count": 1, "": {"_count": 1}}, "neck": {"_count": 8, "": {"_count": 3}, "now": {"_count": 2}, "and": {"_count": 2}, "had": {"_count": 1}}, "thick": {"_count": 6, "fingers": {"_count": 1}, "spectacles": {"_count": 1}, "glasses": {"_count": 1}, "pearly": {"_count": 1}, "eyebrows": {"_count": 1}, "stubby": {"_count": 1}}, "students": {"_count": 3, "and": {"_count": 2}, "to": {"_count": 1}}, "muffler": {"_count": 1, "": {"_count": 1}}, "waist": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "opened": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "like": {"_count": 7, "an": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 2}, "a": {"_count": 3}}, "parchment": {"_count": 3, "into": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "badges": {"_count": 1, "": {"_count": 1}}, "box": {"_count": 1, "of": {"_count": 1}}, "sheet": {"_count": 2, "of": {"_count": 2}}, "frowning": {"_count": 2, "slightly": {"_count": 1}, "": {"_count": 1}}, "picture": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 1}}, "headmistress": {"_count": 1, "": {"_count": 1}}, "full": {"_count": 4, "and": {"_count": 1}, "height": {"_count": 3}}, "handsome": {"_count": 1, "head": {"_count": 1}}, "gigantic": {"_count": 1, "blacksatin": {"_count": 1}}, "foot": {"_count": 6, "": {"_count": 2}, "on": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 1}}, "swiftly": {"_count": 1, "out": {"_count": 1}}, "frame": {"_count": 6, "": {"_count": 3}, "in": {"_count": 1}, "with": {"_count": 1}, "just": {"_count": 1}}, "neighbors": {"_count": 1, "painting": {"_count": 1}}, "hinges": {"_count": 1, "to": {"_count": 1}}, "talons": {"_count": 1, "cut": {"_count": 1}}, "normally": {"_count": 1, "they": {"_count": 1}}, "gang": {"_count": 2, "of": {"_count": 2}}, "teeth": {"_count": 6, "elongated": {"_count": 1}, "she": {"_count": 1}, "fixed": {"_count": 1}, "and": {"_count": 1}, "clenched": {"_count": 1}, "when": {"_count": 1}}, "bottom": {"_count": 1, "lip": {"_count": 1}}, "best": {"_count": 1, "to": {"_count": 1}}, "collar": {"_count": 1, "": {"_count": 1}}, "heavyjawed": {"_count": 1, "face": {"_count": 1}}, "crocodileskin": {"_count": 7, "handbag": {"_count": 6}, "bag": {"_count": 1}}, "scarlettaloned": {"_count": 1, "fingers": {"_count": 1}}, "crocodile": {"_count": 2, "bag": {"_count": 2}}, "quill": {"_count": 14, "and": {"_count": 3}, "to": {"_count": 1}, "into": {"_count": 2}, "": {"_count": 4}, "poised": {"_count": 1}, "again": {"_count": 1}, "on": {"_count": 1}, "turned": {"_count": 1}}, "slip": {"_count": 1, "the": {"_count": 1}}, "knee": {"_count": 4, "suck": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "a": {"_count": 1}}, "piece": {"_count": 2, "about": {"_count": 1}, "of": {"_count": 1}}, "fair": {"_count": 1, "share": {"_count": 1}}, "photographer": {"_count": 1, "friend": {"_count": 1}}, "Ravenclaw": {"_count": 1, "friends": {"_count": 1}}, "mulled": {"_count": 1, "mead": {"_count": 1}}, "Hagrid": {"_count": 2, "offered": {"_count": 1}, "Charlie": {"_count": 1}}, "any": {"_count": 3, "old": {"_count": 1}, "story": {"_count": 1}, "attention": {"_count": 1}}, "student": {"_count": 1, "isnt": {"_count": 1}}, "at": {"_count": 14, "the": {"_count": 7}, "school": {"_count": 1}, "all": {"_count": 2}, "first": {"_count": 1}, "this": {"_count": 1}, "once": {"_count": 1}, "moments": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "clutch": {"_count": 1, "of": {"_count": 1}}, "evil": {"_count": 1, "yellow": {"_count": 1}}, "spiked": {"_count": 1, "tail": {"_count": 1}}, "eggs": {"_count": 1, "": {"_count": 1}}, "breathe": {"_count": 1, "fire": {"_count": 1}}, "fangs": {"_count": 1, "bared": {"_count": 1}}, "come": {"_count": 2, "on": {"_count": 1}, "with": {"_count": 1}}, "clawed": {"_count": 1, "front": {"_count": 1}}, "bewildered": {"_count": 1, "": {"_count": 1}}, "front": {"_count": 5, "": {"_count": 1}, "just": {"_count": 1}, "though": {"_count": 1}, "teeth": {"_count": 1}, "legs": {"_count": 1}}, "skirt": {"_count": 5, "caught": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "once": {"_count": 1}, "Poor": {"_count": 1}}, "explanation": {"_count": 1, "of": {"_count": 1}}, "obvious": {"_count": 1, "annoyance": {"_count": 1}}, "afterward": {"_count": 2, "": {"_count": 2}}, "forefinger": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "blouse": {"_count": 1, "and": {"_count": 1}}, "crying": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "Leanne": {"_count": 1}}, "stool": {"_count": 4, "and": {"_count": 2}, "staring": {"_count": 1}, "into": {"_count": 1}}, "tearstained": {"_count": 2, "face": {"_count": 2}}, "sobbing": {"_count": 2, "into": {"_count": 1}, "and": {"_count": 1}}, "hard": {"_count": 2, "in": {"_count": 2}}, "wed": {"_count": 1, "been": {"_count": 1}}, "no": {"_count": 3, "an": {"_count": 1}, "more": {"_count": 2}}, "Potions": {"_count": 1, "notes": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "classmates": {"_count": 1, "": {"_count": 1}}, "grandmother": {"_count": 1, "was": {"_count": 1}}, "business": {"_count": 1, "said": {"_count": 1}}, "one": {"_count": 5, "evening": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "broken": {"_count": 1}, "hand": {"_count": 1}}, "hoping": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "suddenly": {"_count": 1, "frowning": {"_count": 1}}, "carry": {"_count": 1, "on": {"_count": 1}}, "incredulously": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "wrists": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "dark": {"_count": 5, "eyes": {"_count": 3}, "eyebrows": {"_count": 1}, "hair": {"_count": 1}}, "immediately": {"_count": 1, "afterward": {"_count": 1}}, "talk": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "nodding": {"_count": 1}}, "opals": {"_count": 1, "glittering": {"_count": 1}}, "Hermyown": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 7, "from": {"_count": 3}, "": {"_count": 2}, "like": {"_count": 1}, "they": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "tell": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "low": {"_count": 1, "voice": {"_count": 1}}, "tone": {"_count": 7, "icy": {"_count": 1}, "indifferent": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 2}, "somewhere": {"_count": 1}, "dripped": {"_count": 1}}, "brutal": {"_count": 1, "nature": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "second": {"_count": 2, "cousin": {"_count": 1}, "drink": {"_count": 1}}, "butterbeer": {"_count": 3, "": {"_count": 1}, "clutched": {"_count": 1}, "cork": {"_count": 1}}, "paunchy": {"_count": 1, "photographer": {"_count": 1}}, "jeweled": {"_count": 1, "spectacles": {"_count": 1}}, "heavily": {"_count": 3, "penciled": {"_count": 1}, "lidded": {"_count": 2}}, "QuickQuotes": {"_count": 2, "Quill": {"_count": 2}}, "try": {"_count": 1, "": {"_count": 1}}, "big": {"_count": 3, "bones": {"_count": 1}, "round": {"_count": 1}, "fat": {"_count": 1}}, "glum": {"_count": 1, "face": {"_count": 1}}, "fins": {"_count": 1, "": {"_count": 1}}, "dying": {"_count": 2, "day": {"_count": 1}, "wish": {"_count": 1}}, "around": {"_count": 7, "and": {"_count": 1}, "to": {"_count": 1}, "so": {"_count": 1}, "forever": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "zoom": {"_count": 1, "back": {"_count": 1}}, "cushion": {"_count": 2, "zooming": {"_count": 1}, "to": {"_count": 1}}, "lessons": {"_count": 3, "on": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "rock": {"_count": 1, "while": {"_count": 1}}, "bindings": {"_count": 1, "too": {"_count": 1}}, "upward": {"_count": 1, "and": {"_count": 1}}, "ropes": {"_count": 1, "the": {"_count": 1}}, "attention": {"_count": 2, "back": {"_count": 1}, "to": {"_count": 1}}, "goal": {"_count": 1, "and": {"_count": 1}}, "hostage": {"_count": 1, "": {"_count": 1}}, "twentyfive": {"_count": 1, "points": {"_count": 1}}, "magnificent": {"_count": 1, "head": {"_count": 1}}, "touch": {"_count": 3, "said": {"_count": 1}, "Malfoy": {"_count": 1}, "and": {"_count": 1}}, "pestle": {"_count": 1, "suspended": {"_count": 1}}, "beetles": {"_count": 1, "again": {"_count": 1}}, "tent": {"_count": 1, "and": {"_count": 1}}, "being": {"_count": 2, "a": {"_count": 1}, "sacked": {"_count": 1}}, "disapproving": {"_count": 1, "looks": {"_count": 1}}, "already": {"_count": 2, "heavily": {"_count": 1}, "scarlet": {"_count": 1}}, "silence": {"_count": 2, "hie": {"_count": 1}, "Snape": {"_count": 1}}, "bewilderment": {"_count": 1, "the": {"_count": 1}}, "wrist": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "beadily": {"_count": 1, "": {"_count": 1}}, "carriage": {"_count": 2, "window": {"_count": 1}, "": {"_count": 1}}, "ill": {"_count": 2, "wishers": {"_count": 1}, "health": {"_count": 1}}, "anywhere": {"_count": 2, "near": {"_count": 2}}, "or": {"_count": 1, "something": {"_count": 1}}, "pursue": {"_count": 1, "vengeance": {"_count": 1}}, "hastily": {"_count": 1, "": {"_count": 1}}, "number": {"_count": 1, "now": {"_count": 1}}, "whats": {"_count": 1, "cornin": {"_count": 1}}, "winged": {"_count": 2, "armchair": {"_count": 1}, "glasses": {"_count": 1}}, "strangely": {"_count": 1, "enlarged": {"_count": 1}}, "stepladder": {"_count": 1, "however": {"_count": 1}}, "favor": {"_count": 1, "because": {"_count": 1}}, "Hermione": {"_count": 3, "said": {"_count": 1}, "leaned": {"_count": 1}, "we": {"_count": 1}}, "morning": {"_count": 1, "copy": {"_count": 1}}, "school": {"_count": 1, "bag": {"_count": 1}}, "mothers": {"_count": 5, "hand": {"_count": 1}, "shoulder": {"_count": 2}, "grip": {"_count": 1}, "Percy": {"_count": 1}}, "though": {"_count": 4, "did": {"_count": 1}, "Rons": {"_count": 1}, "less": {"_count": 1}, "Harry": {"_count": 1}}, "smile": {"_count": 5, "faltering": {"_count": 1}, "widening": {"_count": 1}, "wider": {"_count": 1}, "": {"_count": 1}, "faded": {"_count": 1}}, "hind": {"_count": 1, "legs": {"_count": 1}}, "mysterious": {"_count": 1, "smile": {"_count": 1}}, "who": {"_count": 1, "lies": {"_count": 1}}, "sacrifice": {"_count": 2, "": {"_count": 1}, "alive": {"_count": 1}}, "her": {"_count": 2, "mind": {"_count": 1}, "somewhat": {"_count": 1}}, "purpose": {"_count": 1, "": {"_count": 1}}, "drop": {"_count": 1, "to": {"_count": 1}}, "inside": {"_count": 3, "and": {"_count": 1}, "her": {"_count": 1}, "said": {"_count": 1}}, "forget": {"_count": 2, "what": {"_count": 1}, "that": {"_count": 1}}, "until": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "anger": {"_count": 1, "his": {"_count": 1}}, "persuaded": {"_count": 1, "": {"_count": 1}}, "fellow": {"_count": 9, "Beauxbatons": {"_count": 1}, "staff": {"_count": 1}, "educators": {"_count": 1}, "visitors": {"_count": 1}, "passengers": {"_count": 1}, "torturers": {"_count": 1}, "Death": {"_count": 2}, "Ravenclaws": {"_count": 1}}, "far": {"_count": 1, "across": {"_count": 1}}, "silvery": {"_count": 4, "hair": {"_count": 1}, "swanshaped": {"_count": 1}, "sheet": {"_count": 1}, "glow": {"_count": 1}}, "money": {"_count": 1, "back": {"_count": 1}}, "schoolbag": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "antennae": {"_count": 1, "are": {"_count": 1}}, "horrible": {"_count": 2, "stuff": {"_count": 1}, "bulging": {"_count": 1}}, "Ill": {"_count": 2, "let": {"_count": 1}, "be": {"_count": 1}}, "shes": {"_count": 4, "to": {"_count": 1}, "looked": {"_count": 1}, "very": {"_count": 1}, "in": {"_count": 1}}, "famous": {"_count": 1, "husband": {"_count": 1}}, "bony": {"_count": 3, "hands": {"_count": 1}, "nose": {"_count": 1}, "fingers": {"_count": 1}}, "net": {"_count": 1, "curtains": {"_count": 1}}, "wizened": {"_count": 1, "hands": {"_count": 1}}, "string": {"_count": 1, "bag": {"_count": 1}}, "astonished": {"_count": 1, "": {"_count": 1}}, "horsey": {"_count": 1, "teeth": {"_count": 1}}, "mention": {"_count": 1, "her": {"_count": 1}}, "energies": {"_count": 1, "into": {"_count": 1}}, "sisters": {"_count": 5, "were": {"_count": 1}, "arm": {"_count": 1}, "": {"_count": 1}, "hand": {"_count": 1}, "grasp": {"_count": 1}}, "scaly": {"_count": 1, "leg": {"_count": 1}}, "approaching": {"_count": 1, "he": {"_count": 1}}, "lit": {"_count": 1, "wand": {"_count": 1}}, "surname": {"_count": 1, "only": {"_count": 1}}, "reflection": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "straightening": {"_count": 1, "up": {"_count": 1}}, "watching": {"_count": 2, "his": {"_count": 1}, "him": {"_count": 1}}, "still": {"_count": 2, "breathing": {"_count": 1}, "smiling": {"_count": 1}}, "promise": {"_count": 1, "not": {"_count": 1}}, "fists": {"_count": 2, "clenched": {"_count": 1}, "trembling": {"_count": 1}}, "mollycoddling": {"_count": 1, "": {"_count": 1}}, "raging": {"_count": 1, "and": {"_count": 1}}, "return": {"_count": 1, "from": {"_count": 1}}, "everything": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "BatBogey": {"_count": 1, "Hexes": {"_count": 1}}, "heading": {"_count": 1, "upstairs": {"_count": 1}}, "brow": {"_count": 2, "with": {"_count": 1}, "furrowed": {"_count": 1}}, "scarf": {"_count": 1, "before": {"_count": 1}}, "protective": {"_count": 1, "scarf": {"_count": 1}}, "get": {"_count": 2, "into": {"_count": 1}, "away": {"_count": 1}}, "stride": {"_count": 2, "said": {"_count": 1}, "but": {"_count": 1}}, "brats": {"_count": 1, "messing": {"_count": 1}}, "house": {"_count": 3, "what": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}}, "treasures": {"_count": 1, "thrown": {"_count": 1}}, "balancing": {"_count": 1, "a": {"_count": 1}}, "eager": {"_count": 1, "for": {"_count": 1}}, "hes": {"_count": 1, "supposed": {"_count": 1}}, "trial": {"_count": 1, "and": {"_count": 1}}, "continuing": {"_count": 1, "allegiance": {"_count": 1}}, "pride": {"_count": 1, "that": {"_count": 1}}, "conviction": {"_count": 1, "that": {"_count": 1}}, "loyalty": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 2, "I": {"_count": 1}, "those": {"_count": 1}}, "coming": {"_count": 1, "in": {"_count": 1}}, "sleep": {"_count": 3, "behind": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}}, "cubicle": {"_count": 1, "wall": {"_count": 1}}, "monocle": {"_count": 2, "looked": {"_count": 1}, "and": {"_count": 1}}, "case": {"_count": 4, "": {"_count": 1}, "had": {"_count": 1}, "this": {"_count": 1}, "at": {"_count": 1}}, "carpet": {"_count": 1, "slippers": {"_count": 1}}, "quavery": {"_count": 1, "voice": {"_count": 1}}, "suspiciously": {"_count": 1, "": {"_count": 1}}, "withered": {"_count": 1, "cheeks": {"_count": 1}}, "flesh": {"_count": 1, "": {"_count": 1}}, "eyebrow": {"_count": 1, "where": {"_count": 1}}, "booming": {"_count": 1, "voice": {"_count": 1}}, "short": {"_count": 6, "curly": {"_count": 1}, "be": {"_count": 1}, "wand": {"_count": 1}, "legs": {"_count": 1}, "hair": {"_count": 1}, "silver": {"_count": 1}}, "truthfulness": {"_count": 1, "call": {"_count": 1}}, "briefcase": {"_count": 1, "so": {"_count": 1}}, "apron": {"_count": 1, "and": {"_count": 1}}, "letter": {"_count": 5, "": {"_count": 4}, "once": {"_count": 1}}, "jaw": {"_count": 3, "dropping": {"_count": 1}, "set": {"_count": 1}, "hanging": {"_count": 1}}, "youngest": {"_count": 1, "son": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "without": {"_count": 4, "attracting": {"_count": 1}, "saying": {"_count": 1}, "the": {"_count": 1}, "another": {"_count": 1}}, "round": {"_count": 4, "friendly": {"_count": 1}, "for": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}}, "personally": {"_count": 1, "": {"_count": 1}}, "shaking": {"_count": 2, "wand": {"_count": 2}}, "Molly": {"_count": 1, "dont": {"_count": 1}}, "cuffs": {"_count": 1, "": {"_count": 1}}, "unceremoniously": {"_count": 1, "into": {"_count": 1}}, "trunk": {"_count": 4, "inside": {"_count": 1}, "in": {"_count": 1}, "Professor": {"_count": 1}, "and": {"_count": 1}}, "upsidedown": {"_count": 3, "magazine": {"_count": 3}}, "pale": {"_count": 2, "eyes": {"_count": 1}, "cheeks": {"_count": 1}}, "knuckles": {"_count": 2, "in": {"_count": 1}, "blue": {"_count": 1}}, "magazine": {"_count": 1, "slipped": {"_count": 1}}, "legs": {"_count": 1, "and": {"_count": 1}}, "sides": {"_count": 1, "": {"_count": 1}}, "ribs": {"_count": 2, "": {"_count": 2}}, "wide": {"_count": 9, "silvery": {"_count": 1}, "mouth": {"_count": 1}, "toadlike": {"_count": 1}, "slack": {"_count": 2}, "smile": {"_count": 1}, "selfsatisfied": {"_count": 1}, "toads": {"_count": 1}, "complacent": {"_count": 1}}, "goblet": {"_count": 4, "and": {"_count": 2}, "with": {"_count": 1}, "": {"_count": 1}}, "Or": {"_count": 1, "well": {"_count": 1}}, "Neville": {"_count": 1, "winced": {"_count": 1}}, "stupid": {"_count": 1, "voice": {"_count": 1}}, "fluffy": {"_count": 2, "pink": {"_count": 1}, "ginger": {"_count": 1}}, "exchange": {"_count": 1, "a": {"_count": 1}}, "speech": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "was": {"_count": 1}}, "audience": {"_count": 1, "": {"_count": 1}}, "expression": {"_count": 7, "they": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 1}, "wild": {"_count": 1}, "afraid": {"_count": 1}, "that": {"_count": 1}, "remained": {"_count": 1}}, "taste": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 2, "satin": {"_count": 1}, "parchment": {"_count": 1}}, "blankly": {"_count": 1, "and": {"_count": 1}}, "orange": {"_count": 1, "juice": {"_count": 1}}, "holiday": {"_count": 1, "almost": {"_count": 1}}, "Quidditch": {"_count": 1, "team": {"_count": 1}}, "room": {"_count": 5, "was": {"_count": 1}, "at": {"_count": 1}, "carrying": {"_count": 1}, "": {"_count": 2}}, "subject": {"_count": 1, "above": {"_count": 1}}, "questioningly": {"_count": 1, "but": {"_count": 1}}, "falsely": {"_count": 1, "sweet": {"_count": 1}}, "stubbyfingered": {"_count": 1, "hands": {"_count": 1}}, "reach": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "softest": {"_count": 2, "most": {"_count": 2}}, "study": {"_count": 1, "": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "is": {"_count": 1}}, "shoulders": {"_count": 5, "and": {"_count": 2}, "giving": {"_count": 1}, "": {"_count": 1}, "she": {"_count": 1}}, "sanity": {"_count": 1, "": {"_count": 1}}, "cuttingly": {"_count": 1, "": {"_count": 1}}, "snail": {"_count": 1, "on": {"_count": 1}}, "woolly": {"_count": 1, "hats": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "jumping": {"_count": 1, "up": {"_count": 1}}, "while": {"_count": 3, "everyone": {"_count": 1}, "she": {"_count": 2}}, "attitude": {"_count": 1, "last": {"_count": 1}}, "prominent": {"_count": 1, "eyes": {"_count": 1}}, "earlobes": {"_count": 1, "": {"_count": 1}}, "apparently": {"_count": 1, "shell": {"_count": 1}}, "YouKnowWho": {"_count": 1, "s": {"_count": 1}}, "dropped": {"_count": 1, "his": {"_count": 1}}, "window": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "grip": {"_count": 4, "and": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 2}}, "drink": {"_count": 5, "tipping": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "with": {"_count": 1}}, "Charm": {"_count": 1, "Club": {"_count": 1}}, "under": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "boss": {"_count": 1, "yet": {"_count": 1}}, "somewhere": {"_count": 1, "near": {"_count": 1}}, "giving": {"_count": 2, "her": {"_count": 2}}, "amber": {"_count": 1, "eyes": {"_count": 1}}, "tie": {"_count": 1, "her": {"_count": 1}}, "parcel": {"_count": 1, "onto": {"_count": 1}}, "half": {"_count": 4, "in": {"_count": 1}, "of": {"_count": 2}, "a": {"_count": 1}}, "trouble": {"_count": 1, "": {"_count": 1}}, "wouldbe": {"_count": 1, "casual": {"_count": 1}}, "airborne": {"_count": 1, "team": {"_count": 1}}, "handing": {"_count": 1, "her": {"_count": 1}}, "frostiness": {"_count": 1, "seemed": {"_count": 1}}, "mightve": {"_count": 1, "got": {"_count": 1}}, "indignation": {"_count": 1, "": {"_count": 1}}, "defense": {"_count": 1, "of": {"_count": 1}}, "E": {"_count": 1, "for": {"_count": 1}}, "nut": {"_count": 1, "if": {"_count": 1}}, "clipboard": {"_count": 23, "from": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 11}, "once": {"_count": 1}, "were": {"_count": 1}, "waiting": {"_count": 1}, "at": {"_count": 1}, "\u2018has": {"_count": 1}, "again": {"_count": 1}}, "flowery": {"_count": 1, "bag": {"_count": 1}}, "shawls": {"_count": 4, "tight": {"_count": 1}, "around": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "hugely": {"_count": 1, "magnifying": {"_count": 1}}, "conversations": {"_count": 1, "with": {"_count": 1}}, "scrawny": {"_count": 1, "neck": {"_count": 1}}, "beads": {"_count": 2, "and": {"_count": 1}, "rattling": {"_count": 1}}, "poise": {"_count": 1, "almost": {"_count": 1}}, "will": {"_count": 2, "": {"_count": 1}, "like": {"_count": 1}}, "why": {"_count": 1, "do": {"_count": 1}}, "Daily": {"_count": 2, "Prophet": {"_count": 2}}, "drove": {"_count": 1, "the": {"_count": 1}}, "ask": {"_count": 1, "as": {"_count": 1}}, "quite": {"_count": 3, "clearly": {"_count": 1}, "impassive": {"_count": 1}, "obviously": {"_count": 1}}, "original": {"_count": 1, "suggestion": {"_count": 1}}, "reverie": {"_count": 2, "no": {"_count": 1}, "I": {"_count": 1}}, "toes": {"_count": 1, "": {"_count": 1}}, "usually": {"_count": 1, "giggling": {"_count": 1}}, "fault": {"_count": 4, "she": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 1}, "than": {"_count": 1}}, "protuberant": {"_count": 2, "eyes": {"_count": 2}}, "knitting": {"_count": 2, "needles": {"_count": 1}, "": {"_count": 1}}, "producing": {"_count": 1, "more": {"_count": 1}}, "bench": {"_count": 2, "": {"_count": 2}}, "pipe": {"_count": 2, "firmly": {"_count": 1}, "waggling": {"_count": 1}}, "question": {"_count": 1, "Snape": {"_count": 1}}, "magnified": {"_count": 1, "eyes": {"_count": 1}}, "inspection": {"_count": 1, "back": {"_count": 1}}, "wet": {"_count": 3, "cheeks": {"_count": 1}, "handkerchief": {"_count": 2}}, "black": {"_count": 2, "velvet": {"_count": 1}, "eye": {"_count": 1}}, "Angelina": {"_count": 1, "I": {"_count": 1}}, "Siriuss": {"_count": 1, "head": {"_count": 1}}, "Silencing": {"_count": 1, "Charm": {"_count": 1}}, "reproachfully": {"_count": 1, "": {"_count": 1}}, "some": {"_count": 2, "Puking": {"_count": 1}, "daffodils": {"_count": 1}}, "sodden": {"_count": 1, "and": {"_count": 1}}, "urge": {"_count": 1, "him": {"_count": 1}}, "team": {"_count": 1, "at": {"_count": 1}}, "Cho": {"_count": 1, "muttered": {"_count": 1}}, "mum": {"_count": 2, "works": {"_count": 2}}, "nervous": {"_count": 1, "": {"_count": 1}}, "vision": {"_count": 1, "and": {"_count": 1}}, "resemblance": {"_count": 3, "to": {"_count": 3}}, "most": {"_count": 3, "poisonously": {"_count": 1}, "pronounced": {"_count": 1}, "dangerous": {"_count": 1}}, "sickly": {"_count": 2, "smile": {"_count": 2}}, "wake": {"_count": 2, "": {"_count": 1}, "looking": {"_count": 1}}, "sternly": {"_count": 2, "with": {"_count": 1}, "because": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "": {"_count": 1}}, "mug": {"_count": 1, "slipped": {"_count": 1}}, "green": {"_count": 4, "tweed": {"_count": 1}, "hat": {"_count": 2}, "eyes": {"_count": 1}}, "bulging": {"_count": 4, "eyes": {"_count": 3}, "toads": {"_count": 1}}, "clearly": {"_count": 1, "at": {"_count": 1}}, "answer": {"_count": 1, "was": {"_count": 1}}, "giggles": {"_count": 1, "": {"_count": 1}}, "stubby": {"_count": 4, "hand": {"_count": 1}, "fingers": {"_count": 2}, "hands": {"_count": 1}}, "thing": {"_count": 1, "about": {"_count": 1}}, "quietly": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "parents": {"_count": 6, "something": {"_count": 1}, "house": {"_count": 3}, "who": {"_count": 1}, "stood": {"_count": 1}}, "several": {"_count": 2, "more": {"_count": 1}, "small": {"_count": 1}}, "eyelashes": {"_count": 3, "": {"_count": 2}, "around": {"_count": 1}}, "ink": {"_count": 1, "pot": {"_count": 1}}, "feelings": {"_count": 3, "toward": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "there": {"_count": 3, "under": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "lopsided": {"_count": 1, "spectacles": {"_count": 1}}, "Fred": {"_count": 1, "Ron": {"_count": 1}}, "gratitude": {"_count": 1, "but": {"_count": 1}}, "Moody": {"_count": 1, "gave": {"_count": 1}}, "romper": {"_count": 1, "suit": {"_count": 1}}, "which": {"_count": 1, "makes": {"_count": 1}}, "pulling": {"_count": 1, "open": {"_count": 1}}, "jacket": {"_count": 1, "before": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "yet": {"_count": 1, "his": {"_count": 1}}, "Percys": {"_count": 1, "nothing": {"_count": 1}}, "disapproval": {"_count": 1, "of": {"_count": 1}}, "dislike": {"_count": 1, "of": {"_count": 1}}, "childrens": {"_count": 1, "pleading": {"_count": 1}}, "response": {"_count": 1, "did": {"_count": 1}}, "catching": {"_count": 1, "her": {"_count": 1}}, "halfway": {"_count": 1, "up": {"_count": 1}}, "thin": {"_count": 4, "mouth": {"_count": 2}, "nostrils": {"_count": 1}, "white": {"_count": 1}}, "beauty": {"_count": 1, "": {"_count": 1}}, "stationary": {"_count": 1, "spoon": {"_count": 1}}, "pouchy": {"_count": 1, "toads": {"_count": 1}}, "closed": {"_count": 1, "it": {"_count": 1}}, "tray": {"_count": 1, "of": {"_count": 1}}, "beloved": {"_count": 2, "Fudges": {"_count": 1}, "master": {"_count": 1}}, "furious": {"_count": 2, "desire": {"_count": 1}, "criticisms": {"_count": 1}}, "personal": {"_count": 1, "control": {"_count": 1}}, "skill": {"_count": 1, "at": {"_count": 1}}, "tower": {"_count": 2, "room": {"_count": 2}}, "company": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "coffee": {"_count": 1, "and": {"_count": 1}}, "utterly": {"_count": 1, "bewildered": {"_count": 1}}, "shining": {"_count": 1, "face": {"_count": 1}}, "goggling": {"_count": 1, "at": {"_count": 1}}, "act": {"_count": 1, "like": {"_count": 1}}, "twoinch": {"_count": 1, "talons": {"_count": 1}}, "grubby": {"_count": 1, "raincoat": {"_count": 1}}, "cocktail": {"_count": 1, "onion": {"_count": 1}}, "onion": {"_count": 1, "back": {"_count": 1}}, "gillywater": {"_count": 1, "hes": {"_count": 1}}, "fathers": {"_count": 5, "quite": {"_count": 1}, "bizarre": {"_count": 1}, "peculiar": {"_count": 1}, "unusually": {"_count": 1}, "arm": {"_count": 1}}, "father": {"_count": 9, "was": {"_count": 2}, "turned": {"_count": 1}, "": {"_count": 2}, "yes": {"_count": 1}, "Luna": {"_count": 1}, "Ron": {"_count": 1}, "supported": {"_count": 1}}, "differently": {"_count": 1, "said": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "play": {"_count": 1, "with": {"_count": 1}}, "tottering": {"_count": 1, "pile": {"_count": 1}}, "Rune": {"_count": 1, "translation": {"_count": 1}}, "translation": {"_count": 1, "again": {"_count": 1}}, "converted": {"_count": 1, "and": {"_count": 1}}, "concentration": {"_count": 1, "and": {"_count": 1}}, "feel": {"_count": 1, "faintly": {"_count": 1}}, "innumerable": {"_count": 1, "shawls": {"_count": 1}}, "toadlike": {"_count": 2, "face": {"_count": 2}}, "trunks": {"_count": 1, "until": {"_count": 1}}, "firmly": {"_count": 1, "on": {"_count": 1}}, "past": {"_count": 1, "Umbridge": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "once": {"_count": 2, "I": {"_count": 1}, "more": {"_count": 1}}, "lodgings": {"_count": 1, "": {"_count": 1}}, "spoon": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "we": {"_count": 3, "took": {"_count": 1}, "arent": {"_count": 1}, "think": {"_count": 1}}, "wasnt": {"_count": 1, "she": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "curly": {"_count": 1, "fringe": {"_count": 1}}, "meaning": {"_count": 1, "was": {"_count": 1}}, "release": {"_count": 1, "": {"_count": 1}}, "robe": {"_count": 4, "up": {"_count": 1}, "ripped": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "oddly": {"_count": 1, "blank": {"_count": 1}}, "snarling": {"_count": 1, "face": {"_count": 1}}, "pimples": {"_count": 1, "": {"_count": 1}}, "Rons": {"_count": 2, "dad": {"_count": 1}, "got": {"_count": 1}}, "Hey": {"_count": 1, "EVANS": {"_count": 1}}, "custom": {"_count": 1, "had": {"_count": 1}}, "shriveled": {"_count": 1, "face": {"_count": 1}}, "fire": {"_count": 1, "to": {"_count": 1}}, "questions": {"_count": 1, "": {"_count": 1}}, "loudest": {"_count": 1, "yet": {"_count": 1}}, "fussy": {"_count": 1, "simpering": {"_count": 1}}, "broad": {"_count": 1, "flabby": {"_count": 1}}, "prey": {"_count": 2, "": {"_count": 1}, "just": {"_count": 1}}, "hell": {"_count": 1, "from": {"_count": 1}}, "troubles": {"_count": 1, "were": {"_count": 1}}, "reentrance": {"_count": 1, "and": {"_count": 1}}, "stubbornly": {"_count": 1, "they": {"_count": 1}}, "cheek": {"_count": 2, "against": {"_count": 1}, "": {"_count": 1}}, "teacup": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "self": {"_count": 1, "restraint": {"_count": 1}}, "shiny": {"_count": 1, "black": {"_count": 1}}, "chatting": {"_count": 1, "animatedly": {"_count": 1}}, "didnt": {"_count": 3, "you": {"_count": 2}, "he": {"_count": 1}}, "backward": {"_count": 2, "behind": {"_count": 1}, "onto": {"_count": 1}}, "tracks": {"_count": 2, "so": {"_count": 1}, "looking": {"_count": 1}}, "had": {"_count": 3, "to": {"_count": 1}, "been": {"_count": 1}, "taken": {"_count": 1}}, "chuck": {"_count": 1, "her": {"_count": 1}}, "wont": {"_count": 1, "hurt": {"_count": 1}}, "fork": {"_count": 1, "slid": {"_count": 1}}, "twitched": {"_count": 1, "Hermione": {"_count": 1}}, "ferret": {"_count": 1, "into": {"_count": 1}}, "Ancient": {"_count": 1, "Runes": {"_count": 1}}, "spleen": {"_count": 1, "on": {"_count": 1}}, "palm": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "telescope": {"_count": 1, "and": {"_count": 1}}, "star": {"_count": 1, "chart": {"_count": 1}}, "remaining": {"_count": 2, "helper": {"_count": 1}, "possessions": {"_count": 1}}, "fed": {"_count": 1, "to": {"_count": 1}}, "age": {"_count": 1, "": {"_count": 1}}, "Peeves": {"_count": 1, "is": {"_count": 1}}, "Where": {"_count": 1, "has": {"_count": 1}}, "captives": {"_count": 1, "like": {"_count": 1}}, "upper": {"_count": 1, "arms": {"_count": 1}}, "captor": {"_count": 1, "gazing": {"_count": 1}}, "coolly": {"_count": 1, "through": {"_count": 1}}, "furiously": {"_count": 1, "quivering": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "Slytherin": {"_count": 1, "captors": {"_count": 1}}, "minions": {"_count": 1, "was": {"_count": 1}}, "slightly": {"_count": 2, "": {"_count": 1}, "frustrated": {"_count": 1}}, "Inquisitorial": {"_count": 1, "Squad": {"_count": 1}}, "Umbridge": {"_count": 1, "was": {"_count": 1}}, "ragged": {"_count": 1, "breathing": {"_count": 1}}, "shorter": {"_count": 1, "legs": {"_count": 1}}, "pointedly": {"_count": 1, "": {"_count": 1}}, "mousy": {"_count": 2, "hair": {"_count": 2}}, "here": {"_count": 1, "Ronan": {"_count": 1}}, "use": {"_count": 2, "": {"_count": 1}, "once": {"_count": 1}}, "thestral": {"_count": 1, "and": {"_count": 1}}, "advice": {"_count": 1, "less": {"_count": 1}}, "spell": {"_count": 2, "and": {"_count": 1}, "flew": {"_count": 1}}, "mad": {"_count": 2, "eyes": {"_count": 1}, "it": {"_count": 1}}, "hood": {"_count": 5, "": {"_count": 3}, "as": {"_count": 1}, "more": {"_count": 1}}, "fellows": {"_count": 2, "and": {"_count": 1}, "jumped": {"_count": 1}}, "forward": {"_count": 1, "one": {"_count": 1}}, "properly": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "be": {"_count": 2, "dead": {"_count": 2}}, "other": {"_count": 3, "side": {"_count": 2}, "but": {"_count": 1}}, "wid": {"_count": 1, "us": {"_count": 1}}, "youre": {"_count": 1, "bedder": {"_count": 1}}, "ankle": {"_count": 1, "": {"_count": 1}}, "flying": {"_count": 1, "through": {"_count": 1}}, "broken": {"_count": 1, "ankle": {"_count": 1}}, "squarely": {"_count": 2, "in": {"_count": 2}}, "gaunt": {"_count": 1, "face": {"_count": 1}}, "mockbaby": {"_count": 1, "voice": {"_count": 1}}, "counterspell": {"_count": 1, "hit": {"_count": 1}}, "baby": {"_count": 1, "voice": {"_count": 1}}, "moving": {"_count": 1, "to": {"_count": 1}}, "crouching": {"_count": 1, "behind": {"_count": 1}}, "pinning": {"_count": 1, "her": {"_count": 1}}, "statue": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "only": {"_count": 1, "remaining": {"_count": 1}}, "blood": {"_count": 2, "but": {"_count": 1}, "is": {"_count": 1}}, "doorstep": {"_count": 1, "": {"_count": 1}}, "courteously": {"_count": 1, "I": {"_count": 1}}, "pillows": {"_count": 1, "no": {"_count": 1}}, "traveling": {"_count": 1, "cloak": {"_count": 1}}, "carpetbag": {"_count": 1, "into": {"_count": 1}}, "gleefully": {"_count": 1, "from": {"_count": 1}}, "alternately": {"_count": 1, "with": {"_count": 1}}, "missing": {"_count": 1, "books": {"_count": 1}}, "spells": {"_count": 1, "went": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "answers": {"_count": 1, "": {"_count": 1}}, "bright": {"_count": 1, "bubblegumpink": {"_count": 1}}, "quarry": {"_count": 1, "who": {"_count": 1}}, "pursuer": {"_count": 1, "followed": {"_count": 1}}, "distance": {"_count": 1, "now": {"_count": 1}}, "white": {"_count": 4, "and": {"_count": 1}, "face": {"_count": 1}, "chest": {"_count": 1}, "curls": {"_count": 1}}, "then": {"_count": 7, "pointed": {"_count": 1}, "returned": {"_count": 1}, "threw": {"_count": 1}, "waved": {"_count": 1}, "took": {"_count": 1}, "pulled": {"_count": 1}, "your": {"_count": 1}}, "Narcissa": {"_count": 1, "sat": {"_count": 1}}, "fury": {"_count": 1, "she": {"_count": 1}}, "eyelids": {"_count": 1, "": {"_count": 1}}, "fleeting": {"_count": 1, "expression": {"_count": 1}}, "tears": {"_count": 3, "as": {"_count": 1}, "falling": {"_count": 1}, "tained": {"_count": 1}}, "clutching": {"_count": 1, "hands": {"_count": 1}}, "more": {"_count": 1, "wine": {"_count": 1}}, "snoring": {"_count": 1, "master": {"_count": 1}}, "Ministry": {"_count": 1, "contacts": {"_count": 1}}, "appearance": {"_count": 2, "was": {"_count": 1}, "like": {"_count": 1}}, "customary": {"_count": 1, "shade": {"_count": 1}}, "features": {"_count": 1, "hastily": {"_count": 1}}, "snapped": {"_count": 1, "Ginny": {"_count": 1}}, "cousin": {"_count": 2, "": {"_count": 1}, "Sirius": {"_count": 1}}, "Metamorphosing": {"_count": 1, "": {"_count": 1}}, "powers": {"_count": 2, "must": {"_count": 1}, "that": {"_count": 1}}, "results": {"_count": 1, "out": {"_count": 1}}, "halfamused": {"_count": 1, "halfexasperated": {"_count": 1}}, "clock": {"_count": 1, "all": {"_count": 1}}, "cereal": {"_count": 1, "behind": {"_count": 1}}, "pretty": {"_count": 1, "neck": {"_count": 1}}, "sight": {"_count": 1, "willingly": {"_count": 1}}, "clutches": {"_count": 1, "": {"_count": 1}}, "heels": {"_count": 2, "": {"_count": 2}}, "wedding": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "dragging": {"_count": 1, "his": {"_count": 1}}, "presence": {"_count": 2, "over": {"_count": 1}, "as": {"_count": 1}}, "free": {"_count": 2, "Spectrespecs": {"_count": 1}, "hand": {"_count": 1}}, "knack": {"_count": 1, "for": {"_count": 1}}, "Spectrespecs": {"_count": 2, "farther": {"_count": 1}, "": {"_count": 1}}, "compartment": {"_count": 1, "when": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}, "husbands": {"_count": 2, "dying": {"_count": 1}, "crime": {"_count": 1}}, "mounds": {"_count": 1, "of": {"_count": 1}}, "place": {"_count": 4, "": {"_count": 2}, "as": {"_count": 1}, "between": {"_count": 1}}, "whatever": {"_count": 1, "she": {"_count": 1}}, "staggered": {"_count": 1, "a": {"_count": 1}}, "lack": {"_count": 2, "of": {"_count": 2}}, "prefects": {"_count": 1, "duty": {"_count": 1}}, "Charms": {"_count": 1, "O": {"_count": 1}}, "twenty": {"_count": 1, "points": {"_count": 1}}, "potion": {"_count": 2, "which": {"_count": 1}, "was": {"_count": 1}}, "cauldron": {"_count": 4, "her": {"_count": 1}, "around": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "essay": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "reshuffling": {"_count": 1, "vigorously": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "lank": {"_count": 1, "hair": {"_count": 1}}, "magical": {"_count": 2, "powers": {"_count": 1}, "bag": {"_count": 1}}, "abilities": {"_count": 1, "and": {"_count": 1}}, "escape": {"_count": 1, "from": {"_count": 1}}, "note": {"_count": 1, "of": {"_count": 1}}, "desertion": {"_count": 1, "may": {"_count": 1}}, "never": {"_count": 1, "saw": {"_count": 1}}, "carrying": {"_count": 1, "that": {"_count": 1}}, "undoubtedly": {"_count": 1, "thought": {"_count": 1}}, "terrible": {"_count": 1, "anguish": {"_count": 1}}, "Leanne": {"_count": 1, "": {"_count": 1}}, "deflating": {"_count": 1, "": {"_count": 1}}, "glove": {"_count": 1, "": {"_count": 1}}, "ungloved": {"_count": 1, "hand": {"_count": 1}}, "after": {"_count": 1, "Katie": {"_count": 1}}, "ten": {"_count": 1, "Galleons": {"_count": 1}}, "pregnancy": {"_count": 1, "Merope": {"_count": 1}}, "Merope": {"_count": 1, "stopped": {"_count": 1}}, "unrequited": {"_count": 1, "love": {"_count": 1}}, "of": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "threshold": {"_count": 1, "": {"_count": 1}}, "story": {"_count": 1, "": {"_count": 1}}, "cheekbones": {"_count": 1, "": {"_count": 1}}, "gin": {"_count": 1, "glass": {"_count": 1}}, "rosy": {"_count": 1, "cheeks": {"_count": 1}}, "thickly": {"_count": 1, "through": {"_count": 1}}, "fat": {"_count": 1, "lip": {"_count": 1}}, "its": {"_count": 2, "pathetic": {"_count": 1}, "a": {"_count": 1}}, "kissing": {"_count": 2, "Dean": {"_count": 2}}, "alone": {"_count": 2, "": {"_count": 2}}, "reputation": {"_count": 1, "as": {"_count": 1}}, "Gryffindor": {"_count": 1, "scarf": {"_count": 1}}, "spellwork": {"_count": 1, "at": {"_count": 1}}, "sunken": {"_count": 1, "cheeks": {"_count": 1}}, "skin": {"_count": 1, "like": {"_count": 1}}, "things": {"_count": 3, "grabbed": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 1}}, "need": {"_count": 1, "was": {"_count": 1}}, "vaguely": {"_count": 1, "on": {"_count": 1}}, "pencil": {"_count": 1, "case": {"_count": 1}}, "beam": {"_count": 1, "before": {"_count": 1}}, "stew": {"_count": 1, "": {"_count": 1}}, "furtively": {"_count": 1, "": {"_count": 1}}, "radish": {"_count": 1, "earrings": {"_count": 1}}, "severely": {"_count": 1, "": {"_count": 1}}, "shrewdly": {"_count": 1, "": {"_count": 1}}, "song": {"_count": 1, "on": {"_count": 1}}, "lately": {"_count": 1, "Remus": {"_count": 1}}, "having": {"_count": 1, "no": {"_count": 1}}, "phial": {"_count": 1, "into": {"_count": 1}}, "poison": {"_count": 1, "into": {"_count": 1}}, "bottle": {"_count": 1, "before": {"_count": 1}}, "hoop": {"_count": 1, "with": {"_count": 1}}, "repeated": {"_count": 1, "Ron": {"_count": 1}}, "This": {"_count": 1, "is": {"_count": 1}}, "confusion": {"_count": 1, "she": {"_count": 1}}, "anymore": {"_count": 2, "just": {"_count": 1}, "": {"_count": 1}}, "possession": {"_count": 1, "with": {"_count": 1}}, "magnifying": {"_count": 1, "spectacles": {"_count": 1}}, "stumble": {"_count": 1, "halfway": {"_count": 1}}, "trailing": {"_count": 2, "shawls": {"_count": 1}, "lace": {"_count": 1}}, "fleshy": {"_count": 1, "feet": {"_count": 1}}, "powder": {"_count": 1, "puff": {"_count": 1}}, "papery": {"_count": 1, "skin": {"_count": 1}}, "mistresss": {"_count": 3, "elbow": {"_count": 1}, "evening": {"_count": 1}, "cocoa": {"_count": 1}}, "lashes": {"_count": 1, "": {"_count": 1}}, "locket": {"_count": 1, "transfixed": {"_count": 1}}, "foolish": {"_count": 1, "smile": {"_count": 1}}, "greatest": {"_count": 1, "treasures": {"_count": 1}}, "collection": {"_count": 1, "most": {"_count": 1}}, "mousecolored": {"_count": 1, "hair": {"_count": 1}}, "post": {"_count": 1, "to": {"_count": 1}}, "Patronus": {"_count": 1, "is": {"_count": 1}}, "greenhouses": {"_count": 1, "and": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "close": {"_count": 1, "and": {"_count": 1}}, "even": {"_count": 2, "for": {"_count": 1}, "though": {"_count": 1}}, "jubilant": {"_count": 1, "friends": {"_count": 1}}, "however": {"_count": 2, "much": {"_count": 1}, "the": {"_count": 1}}, "jokes": {"_count": 1, "": {"_count": 1}}, "examinations": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 1, "shawls": {"_count": 1}}, "defensively": {"_count": 1, "and": {"_count": 1}}, "vastly": {"_count": 1, "magnified": {"_count": 1}}, "sherry": {"_count": 2, "bottles": {"_count": 2}}, "pub": {"_count": 1, "as": {"_count": 1}}, "messages": {"_count": 1, "Isnt": {"_count": 1}}, "likewise": {"_count": 1, "": {"_count": 1}}, "brother": {"_count": 3, "right": {"_count": 1}, "Amycus": {"_count": 1}, "have": {"_count": 1}}, "leaking": {"_count": 1, "eyes": {"_count": 1}}, "beautiful": {"_count": 4, "face": {"_count": 2}, "head": {"_count": 2}}, "eldest": {"_count": 1, "son": {"_count": 1}}, "mouse": {"_count": 1, "colored": {"_count": 1}}, "teachers": {"_count": 1, "": {"_count": 1}}, "briskness": {"_count": 1, "as": {"_count": 1}}, "sighed": {"_count": 1, "Ginny": {"_count": 1}}, "redtaloned": {"_count": 1, "hand": {"_count": 1}}, "ironcolored": {"_count": 1, "curls": {"_count": 1}}, "slim": {"_count": 1, "fingers": {"_count": 1}}, "longing": {"_count": 1, "for": {"_count": 1}}, "famously": {"_count": 1, "ferocious": {"_count": 1}}, "cozy": {"_count": 1, "home": {"_count": 1}}, "readers": {"_count": 1, "more": {"_count": 1}}, "spotless": {"_count": 1, "appliances": {"_count": 1}}, "stuff": {"_count": 1, "shes": {"_count": 1}}, "normal": {"_count": 1, "appearance": {"_count": 1}}, "hold": {"_count": 2, "on": {"_count": 2}}, "casual": {"_count": 1, "tone": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "twice": {"_count": 1, "on": {"_count": 1}}, "flustered": {"_count": 1, "": {"_count": 1}}, "elder": {"_count": 1, "sister": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "hopes": {"_count": 1, "up": {"_count": 1}}, "Norberta": {"_count": 1, "now": {"_count": 1}}, "brain": {"_count": 1, "whirring": {"_count": 1}}, "stop": {"_count": 1, "at": {"_count": 1}}, "Cackling": {"_count": 1, "Stump": {"_count": 1}}, "upstairs": {"_count": 1, "while": {"_count": 1}}, "radiance": {"_count": 1, "usually": {"_count": 1}}, "always": {"_count": 1, "read": {"_count": 1}}, "death": {"_count": 2, "Why": {"_count": 1}, "not": {"_count": 1}}, "Elphias": {"_count": 1, "": {"_count": 1}}, "fate": {"_count": 1, "while": {"_count": 1}}, "shoes": {"_count": 1, "and": {"_count": 1}}, "turn": {"_count": 1, "on": {"_count": 1}}, "beaded": {"_count": 2, "bag": {"_count": 2}}, "panic": {"_count": 2, "seemed": {"_count": 1}, "steadied": {"_count": 1}}, "clumsily": {"_count": 1, "on": {"_count": 1}}, "silhouette": {"_count": 1, "was": {"_count": 1}}, "gs": {"_count": 1, "the": {"_count": 1}}, "warm": {"_count": 1, "hand": {"_count": 1}}, "approval": {"_count": 1, "She": {"_count": 1}}, "flew": {"_count": 1, "open": {"_count": 1}}, "Ive": {"_count": 1, "made": {"_count": 1}}, "former": {"_count": 1, "village": {"_count": 1}}, "family": {"_count": 1, "was": {"_count": 1}}, "daughters": {"_count": 2, "existence": {"_count": 1}, "body": {"_count": 1}}, "two": {"_count": 1, "brothers": {"_count": 1}}, "soup": {"_count": 1, "toward": {"_count": 1}}, "soupspoon": {"_count": 1, "suspended": {"_count": 1}}, "shutting": {"_count": 1, "him": {"_count": 1}}, "balance": {"_count": 1, "and": {"_count": 1}}, "Umbridges": {"_count": 1, "velvet": {"_count": 1}}, "jewelry": {"_count": 1, "in": {"_count": 1}}, "glancing": {"_count": 2, "around": {"_count": 2}}, "shudder": {"_count": 1, "": {"_count": 1}}, "soft": {"_count": 1, "silky": {"_count": 1}}, "element": {"_count": 1, "upholding": {"_count": 1}}, "victim": {"_count": 1, "and": {"_count": 1}}, "finally": {"_count": 1, "withdrawing": {"_count": 1}}, "pretend": {"_count": 1, "Harry": {"_count": 1}}, "hot": {"_count": 1, "mug": {"_count": 1}}, "Apparating": {"_count": 1, "alongside": {"_count": 1}}, "partly": {"_count": 1, "to": {"_count": 1}}, "shirt": {"_count": 1, "": {"_count": 1}}, "silences": {"_count": 1, "rather": {"_count": 1}}, "tin": {"_count": 1, "plate": {"_count": 1}}, "punishment": {"_count": 1, "as": {"_count": 1}}, "sopping": {"_count": 1, "hair": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "supposing": {"_count": 1, "that": {"_count": 1}}, "index": {"_count": 1, "finger": {"_count": 1}}, "mood": {"_count": 1, "as": {"_count": 1}}, "dates": {"_count": 1, "of": {"_count": 1}}, "crouched": {"_count": 1, "beside": {"_count": 1}}, "feeling": {"_count": 1, "as": {"_count": 1}}, "stoutness": {"_count": 1, "her": {"_count": 1}}, "shuffling": {"_count": 1, "gait": {"_count": 1}}, "identity": {"_count": 1, "were": {"_count": 1}}, "ability": {"_count": 1, "to": {"_count": 1}}, "\u2018gaga": {"_count": 1, "": {"_count": 1}}, "pushing": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "approach": {"_count": 1, "": {"_count": 1}}, "deflected": {"_count": 1, "curse": {"_count": 1}}, "scream": {"_count": 2, "reverberating": {"_count": 1}, "CHARGE": {"_count": 1}}, "screaming": {"_count": 1, "from": {"_count": 1}}, "brown": {"_count": 1, "eyes": {"_count": 1}}, "pinched": {"_count": 1, "gray": {"_count": 1}}, "sitting": {"_count": 1, "beside": {"_count": 1}}, "watery": {"_count": 1, "smile": {"_count": 1}}, "frail": {"_count": 1, "and": {"_count": 1}}, "home": {"_count": 1, "her": {"_count": 1}}, "greatnephew": {"_count": 1, "Gellert": {"_count": 1}}, "cold": {"_count": 2, "hands": {"_count": 1}, "clear": {"_count": 1}}, "pajamas": {"_count": 1, "": {"_count": 1}}, "strangeness": {"_count": 1, "but": {"_count": 1}}, "inexplicable": {"_count": 1, "familiarity": {"_count": 1}}, "brightness": {"_count": 1, "was": {"_count": 1}}, "burnished": {"_count": 1, "image": {"_count": 1}}, "bunk": {"_count": 4, "and": {"_count": 1}, "reading": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "lose": {"_count": 1, "control": {"_count": 1}}, "temporarily": {"_count": 1, "speechless": {"_count": 1}}, "tightly": {"_count": 1, "knotted": {"_count": 1}}, "limbs": {"_count": 1, "locked": {"_count": 1}}, "intense": {"_count": 1, "eager": {"_count": 1}}, "good": {"_count": 1, "books": {"_count": 1}}, "untimely": {"_count": 1, "death": {"_count": 1}}, "restraint": {"_count": 1, "starting": {"_count": 1}}, "exasperation": {"_count": 1, "with": {"_count": 1}}, "body": {"_count": 2, "showed": {"_count": 1}, "shaking": {"_count": 1}}, "brotherinlaw": {"_count": 1, "her": {"_count": 1}}, "capitulation": {"_count": 1, "Lucius": {"_count": 1}}, "She": {"_count": 1, "was": {"_count": 1}}, "digging": {"_count": 1, "at": {"_count": 1}}, "vault": {"_count": 2, "": {"_count": 2}}, "afraid": {"_count": 1, "that": {"_count": 1}}, "prepare": {"_count": 1, "dinner": {"_count": 1}}, "somewhat": {"_count": 1, "irritable": {"_count": 1}}, "love": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "tiara": {"_count": 1, "back": {"_count": 1}}, "actual": {"_count": 1, "wand": {"_count": 1}}, "sock": {"_count": 1, "": {"_count": 1}}, "brains": {"_count": 1, "on": {"_count": 1}}, "drawing": {"_count": 1, "hoods": {"_count": 1}}, "path": {"_count": 1, "": {"_count": 1}}, "reaching": {"_count": 1, "for": {"_count": 1}}, "fullest": {"_count": 2, "height": {"_count": 2}}, "mistake": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "blistered": {"_count": 1, "fingers": {"_count": 1}}, "desperation": {"_count": 1, "what": {"_count": 1}}, "blasting": {"_count": 1, "the": {"_count": 1}}, "His": {"_count": 1, "lips": {"_count": 1}}, "doing": {"_count": 1, "magic": {"_count": 1}}, "safe": {"_count": 1, "and": {"_count": 1}}, "calm": {"_count": 1, "and": {"_count": 1}}, "rages": {"_count": 2, "and": {"_count": 2}}, "blowing": {"_count": 1, "up": {"_count": 1}}, "slight": {"_count": 1, "figure": {"_count": 1}}, "explain": {"_count": 1, "how": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "eagle": {"_count": 1, "on": {"_count": 1}}, "lost": {"_count": 1, "diadem": {"_count": 1}}, "forearm": {"_count": 1, "": {"_count": 1}}, "backside": {"_count": 1, "with": {"_count": 1}}, "Mark": {"_count": 1, "and": {"_count": 1}}, "senses": {"_count": 1, "but": {"_count": 1}}, "startled": {"_count": 1, "": {"_count": 1}}, "stood": {"_count": 1, "the": {"_count": 1}}, "final": {"_count": 1, "words": {"_count": 1}}, "dyou": {"_count": 1, "know": {"_count": 1}}, "raised": {"_count": 1, "her": {"_count": 1}}, "waistlength": {"_count": 1, "hair": {"_count": 1}}, "transparent": {"_count": 1, "cheeks": {"_count": 1}}, "confidence": {"_count": 1, "and": {"_count": 1}}, "loss": {"_count": 1, "my": {"_count": 1}}, "floating": {"_count": 1, "there": {"_count": 1}}, "paws": {"_count": 1, "no": {"_count": 1}}, "sanctuary": {"_count": 1, "": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "torn": {"_count": 1, "and": {"_count": 1}}, "command": {"_count": 1, "and": {"_count": 1}}, "enchanted": {"_count": 2, "starry": {"_count": 1}, "cage": {"_count": 1}}, "swing": {"_count": 1, "by": {"_count": 1}}, "sandals": {"_count": 1, "on": {"_count": 1}}, "courage": {"_count": 1, "returned": {"_count": 1}}, "brimful": {"_count": 1, "of": {"_count": 1}}, "footing": {"_count": 1, "": {"_count": 1}}, "struggling": {"_count": 1, "for": {"_count": 1}}, "lofty": {"_count": 1, "voice": {"_count": 1}}, "blush": {"_count": 1, "": {"_count": 1}}, "strictures": {"_count": 1, "on": {"_count": 1}}, "them": {"_count": 1, "safe": {"_count": 1}}, "minds": {"_count": 1, "going": {"_count": 1}}, "forever": {"_count": 1, "and": {"_count": 1}}, "breast": {"_count": 1, "heaving": {"_count": 1}}, "blazing": {"_count": 1, "look": {"_count": 1}}, "nails": {"_count": 1, "pierced": {"_count": 1}}, "aid": {"_count": 1, "": {"_count": 1}}, "brandnew": {"_count": 1, "Hogwarts": {"_count": 1}}}, "time": {"_count": 1672, "craning": {"_count": 1, "over": {"_count": 1}}, "to": {"_count": 185, "catch": {"_count": 3}, "decide": {"_count": 1}, "pull": {"_count": 3}, "run": {"_count": 2}, "come": {"_count": 1}, "yell": {"_count": 1}, "think": {"_count": 8}, "exchange": {"_count": 1}, "see": {"_count": 18}, "hear": {"_count": 4}, "send": {"_count": 2}, "fret": {"_count": 1}, "explain": {"_count": 3}, "prevent": {"_count": 2}, "dry": {"_count": 1}, "wonder": {"_count": 2}, "dwell": {"_count": 2}, "pack": {"_count": 1}, "leave": {"_count": 3}, "kill": {"_count": 1}, "Petrify": {"_count": 1}, "reply": {"_count": 1}, "use": {"_count": 1}, "persuade": {"_count": 1}, "regain": {"_count": 1}, "get": {"_count": 7}, "turn": {"_count": 2}, "do": {"_count": 7}, "register": {"_count": 1}, "seize": {"_count": 1}, "grab": {"_count": 1}, "fall": {"_count": 1}, "sneak": {"_count": 1}, "fathom": {"_count": 1}, "go": {"_count": 6}, "marvel": {"_count": 1}, "rescue": {"_count": 1}, "say": {"_count": 1}, "discuss": {"_count": 2}, "poison": {"_count": 1}, "time": {"_count": 7}, "overcome": {"_count": 1}, "fill": {"_count": 1}, "the": {"_count": 2}, "shelve": {"_count": 1}, "take": {"_count": 2}, "answer": {"_count": 2}, "draft": {"_count": 1}, "play": {"_count": 2}, "return": {"_count": 1}, "hurl": {"_count": 1}, "stop": {"_count": 1}, "be": {"_count": 3}, "stand": {"_count": 1}, "listen": {"_count": 3}, "eat": {"_count": 1}, "remind": {"_count": 1}, "steer": {"_count": 1}, "reflect": {"_count": 1}, "practice": {"_count": 2}, "write": {"_count": 1}, "Who": {"_count": 1}, "improve": {"_count": 1}, "knit": {"_count": 1}, "consider": {"_count": 2}, "learn": {"_count": 1}, "clamber": {"_count": 1}, "draw": {"_count": 1}, "look": {"_count": 1}, "speak": {"_count": 1}, "spare": {"_count": 1}, "tell": {"_count": 2}, "close": {"_count": 1}, "gather": {"_count": 1}, "communicate": {"_count": 1}, "feel": {"_count": 2}, "free": {"_count": 1}, "relax": {"_count": 1}, "explore": {"_count": 1}, "waste": {"_count": 2}, "argue": {"_count": 3}, "slam": {"_count": 1}, "duck": {"_count": 1}, "make": {"_count": 1}, "raise": {"_count": 1}, "find": {"_count": 2}, "calm": {"_count": 1}, "offer": {"_count": 1}, "wish": {"_count": 1}, "move": {"_count": 2}, "attempt": {"_count": 1}, "work": {"_count": 2}, "investigate": {"_count": 1}, "peruse": {"_count": 1}, "act": {"_count": 1}, "enjoy": {"_count": 1}, "glance": {"_count": 1}, "mention": {"_count": 1}, "disappear": {"_count": 1}, "collect": {"_count": 1}, "reach": {"_count": 1}, "talk": {"_count": 1}}, "by": {"_count": 3, "Mrs": {"_count": 1}, "Wood": {"_count": 1}, "an": {"_count": 1}}, "had": {"_count": 7, "passed": {"_count": 1}, "come": {"_count": 4}, "changed": {"_count": 1}, "elapsed": {"_count": 1}}, "Dudley": {"_count": 2, "arrived": {"_count": 1}, "had": {"_count": 1}}, "in": {"_count": 61, "his": {"_count": 15}, "your": {"_count": 3}, "seven": {"_count": 2}, "the": {"_count": 7}, "Hagrid": {"_count": 1}, "a": {"_count": 2}, "weeks": {"_count": 3}, "informing": {"_count": 1}, "fact": {"_count": 1}, "minutes": {"_count": 1}, "thirteen": {"_count": 1}, "days": {"_count": 2}, "an": {"_count": 2}, "telling": {"_count": 2}, "detention": {"_count": 2}, "Harrys": {"_count": 2}, "two": {"_count": 2}, "recent": {"_count": 1}, "July": {"_count": 1}, "France": {"_count": 1}, "St": {"_count": 1}, "her": {"_count": 1}, "regaling": {"_count": 1}, "living": {"_count": 1}, "hours": {"_count": 1}, "vilifying": {"_count": 1}, "three": {"_count": 1}, "months": {"_count": 2}}, "Aunt": {"_count": 2, "Petunia": {"_count": 2}}, "": {"_count": 287, ".": {"_count": 229}, "?": {"_count": 33}, "!": {"_count": 25}}, "they": {"_count": 47, "were": {"_count": 6}, "got": {"_count": 1}, "passed": {"_count": 2}, "couldnt": {"_count": 1}, "had": {"_count": 14}, "went": {"_count": 2}, "hit": {"_count": 1}, "reached": {"_count": 5}, "could": {"_count": 1}, "formed": {"_count": 1}, "entered": {"_count": 2}, "arrived": {"_count": 1}, "touched": {"_count": 1}, "caught": {"_count": 1}, "made": {"_count": 1}, "will": {"_count": 1}, "have": {"_count": 1}, "try": {"_count": 1}, "all": {"_count": 1}, "gained": {"_count": 1}, "set": {"_count": 1}, "might": {"_count": 1}}, "it": {"_count": 25, "was": {"_count": 9}, "sounded": {"_count": 1}, "seemed": {"_count": 1}, "has": {"_count": 1}, "would": {"_count": 1}, "did": {"_count": 2}, "woke": {"_count": 1}, "contained": {"_count": 1}, "stopped": {"_count": 1}, "took": {"_count": 1}, "had": {"_count": 3}, "really": {"_count": 1}, "calls": {"_count": 1}, "dragged": {"_count": 1}}, "he": {"_count": 118, "was": {"_count": 8}, "got": {"_count": 5}, "added": {"_count": 1}, "had": {"_count": 33}, "wanted": {"_count": 2}, "said": {"_count": 5}, "gets": {"_count": 1}, "looked": {"_count": 4}, "turned": {"_count": 2}, "saw": {"_count": 3}, "spoke": {"_count": 1}, "set": {"_count": 2}, "thought": {"_count": 3}, "did": {"_count": 2}, "is": {"_count": 2}, "wrote": {"_count": 1}, "wants": {"_count": 1}, "would": {"_count": 6}, "went": {"_count": 2}, "seemed": {"_count": 2}, "became": {"_count": 2}, "passed": {"_count": 2}, "glimpsed": {"_count": 1}, "bestows": {"_count": 2}, "felt": {"_count": 1}, "couldnt": {"_count": 1}, "just": {"_count": 1}, "told": {"_count": 1}, "remembered": {"_count": 1}, "opened": {"_count": 2}, "made": {"_count": 1}, "moved": {"_count": 1}, "announced": {"_count": 1}, "must": {"_count": 1}, "returned": {"_count": 1}, "could": {"_count": 4}, "came": {"_count": 1}, "halflifted": {"_count": 1}, "asked": {"_count": 1}, "raised": {"_count": 1}, "reached": {"_count": 1}, "lost": {"_count": 1}, "ever": {"_count": 1}, "tried": {"_count": 1}, "wished": {"_count": 1}}, "out": {"_count": 3, "on": {"_count": 1}, "said": {"_count": 1}, "into": {"_count": 1}}, "as": {"_count": 12, "possible": {"_count": 1}, "Harry": {"_count": 1}, "Divination": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 4}, "we": {"_count": 1}, "Dumbledore": {"_count": 1}, "you": {"_count": 1}}, "yesterday": {"_count": 1, "and": {"_count": 1}}, "hed": {"_count": 8, "make": {"_count": 1}, "almost": {"_count": 1}, "be": {"_count": 1}, "collapsed": {"_count": 1}, "put": {"_count": 1}, "been": {"_count": 1}, "started": {"_count": 1}, "smiled": {"_count": 1}}, "I": {"_count": 37, "saw": {"_count": 5}, "go": {"_count": 1}, "ever": {"_count": 2}, "want": {"_count": 2}, "had": {"_count": 1}, "reached": {"_count": 1}, "mean": {"_count": 1}, "cant": {"_count": 1}, "was": {"_count": 4}, "wanted": {"_count": 1}, "havent": {"_count": 1}, "will": {"_count": 1}, "got": {"_count": 2}, "thought": {"_count": 1}, "can": {"_count": 1}, "didnt": {"_count": 2}, "never": {"_count": 1}, "expect": {"_count": 1}, "shall": {"_count": 2}, "looked": {"_count": 1}, "am": {"_count": 1}, "tried": {"_count": 1}, "get": {"_count": 2}, "traced": {"_count": 1}}, "yeh": {"_count": 2, "read": {"_count": 1}, "was": {"_count": 1}}, "sagged": {"_count": 1, "right": {"_count": 1}}, "like": {"_count": 2, "but": {"_count": 1}, "this": {"_count": 1}}, "theyd": {"_count": 2, "tried": {"_count": 1}, "met": {"_count": 1}}, "and": {"_count": 49, "Hagrid": {"_count": 1}, "hell": {"_count": 1}, "hovered": {"_count": 1}, "if": {"_count": 1}, "partly": {"_count": 1}, "wrote": {"_count": 1}, "I": {"_count": 2}, "him": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "argues": {"_count": 1}, "next": {"_count": 1}, "hurled": {"_count": 1}, "energy": {"_count": 4}, "thought": {"_count": 1}, "croaked": {"_count": 1}, "knew": {"_count": 1}, "having": {"_count": 1}, "venue": {"_count": 1}, "er": {"_count": 1}, "date": {"_count": 3}, "a": {"_count": 2}, "expanded": {"_count": 1}, "so": {"_count": 1}, "frankly": {"_count": 1}, "neglected": {"_count": 1}, "he": {"_count": 2}, "that": {"_count": 1}, "yet": {"_count": 1}, "held": {"_count": 1}, "not": {"_count": 1}, "had": {"_count": 1}, "no": {"_count": 1}, "be": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}, "approaching": {"_count": 1}, "again": {"_count": 1}, "take": {"_count": 1}}, "with": {"_count": 14, "words": {"_count": 1}, "dogs": {"_count": 1}, "his": {"_count": 4}, "both": {"_count": 1}, "the": {"_count": 3}, "that": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}}, "there": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 2}}, "fer": {"_count": 2, "a": {"_count": 2}}, "at": {"_count": 20, "Hogwarts": {"_count": 5}, "Rons": {"_count": 1}, "the": {"_count": 6}, "all": {"_count": 6}, "home": {"_count": 1}, "school": {"_count": 1}}, "wasters": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 30, "last": {"_count": 1}, "Quaffle": {"_count": 2}, "first": {"_count": 1}, "only": {"_count": 1}, "Chamber": {"_count": 2}, "Ministry": {"_count": 1}, "boggart": {"_count": 1}, "Snitch": {"_count": 1}, "holidays": {"_count": 1}, "sounds": {"_count": 1}, "Imperius": {"_count": 1}, "whistle": {"_count": 1}, "question": {"_count": 1}, "food": {"_count": 1}, "words": {"_count": 1}, "news": {"_count": 1}, "identity": {"_count": 1}, "cave": {"_count": 1}, "blow": {"_count": 1}, "continued": {"_count": 1}, "other": {"_count": 1}, "sword": {"_count": 2}, "spider": {"_count": 1}, "brothers": {"_count": 1}, "mound": {"_count": 1}, "clearing": {"_count": 1}, "watching": {"_count": 1}}, "something": {"_count": 2, "that": {"_count": 1}, "like": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "eating": {"_count": 1, "the": {"_count": 1}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "several": {"_count": 2, "Ravenclaws": {"_count": 1}, "paper": {"_count": 1}}, "Harry": {"_count": 32, "made": {"_count": 1}, "pointed": {"_count": 1}, "looked": {"_count": 1}, "saw": {"_count": 3}, "and": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 5}, "arrived": {"_count": 1}, "got": {"_count": 1}, "just": {"_count": 1}, "lay": {"_count": 1}, "reached": {"_count": 1}, "was": {"_count": 2}, "heard": {"_count": 1}, "felt": {"_count": 2}, "found": {"_count": 1}, "went": {"_count": 1}, "Ron": {"_count": 1}, "really": {"_count": 1}, "imagined": {"_count": 1}, "tried": {"_count": 1}, "thought": {"_count": 1}, "imitated": {"_count": 1}}, "on": {"_count": 9, "a": {"_count": 1}, "February": {"_count": 1}, "the": {"_count": 3}, "he": {"_count": 1}, "Tuesday": {"_count": 1}, "Wednesday": {"_count": 1}, "my": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "Potter": {"_count": 2, "first": {"_count": 1}, "is": {"_count": 1}}, "for": {"_count": 55, "family": {"_count": 1}, "me": {"_count": 4}, "a": {"_count": 3}, "all": {"_count": 2}, "my": {"_count": 2}, "them": {"_count": 2}, "anything": {"_count": 1}, "you": {"_count": 3}, "this": {"_count": 1}, "stupid": {"_count": 1}, "the": {"_count": 9}, "breakfast": {"_count": 1}, "us": {"_count": 4}, "bed": {"_count": 3}, "more": {"_count": 1}, "two": {"_count": 1}, "speech": {"_count": 1}, "Gryffindor": {"_count": 1}, "Christmas": {"_count": 1}, "him": {"_count": 1}, "truthtelling": {"_count": 1}, "Arthur": {"_count": 1}, "studying": {"_count": 1}, "dinner": {"_count": 1}, "Monday": {"_count": 1}, "practical": {"_count": 1}, "instance": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "Disarming": {"_count": 1}, "long": {"_count": 1}, "as": {"_count": 1}}, "said": {"_count": 31, "Ron": {"_count": 4}, "Uncle": {"_count": 1}, "Harry": {"_count": 4}, "Hermione": {"_count": 4}, "Mrs": {"_count": 4}, "Mr": {"_count": 1}, "Bill": {"_count": 1}, "Percy": {"_count": 1}, "Dumbledore": {"_count": 4}, "the": {"_count": 2}, "Junior": {"_count": 1}, "Angelina": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Thicknesse": {"_count": 1}, "Voldemort": {"_count": 1}}, "than": {"_count": 2, "the": {"_count": 1}, "Sirius": {"_count": 1}}, "later": {"_count": 6, "to": {"_count": 1}, "glowering": {"_count": 1}, "today": {"_count": 1}, "that": {"_count": 1}, "shrugged": {"_count": 1}, "or": {"_count": 1}}, "Hedwig": {"_count": 1, "brought": {"_count": 1}}, "came": {"_count": 4, "for": {"_count": 1}, "": {"_count": 1}, "staggering": {"_count": 1}, "to": {"_count": 1}}, "Hermione": {"_count": 10, "had": {"_count": 2}, "": {"_count": 1}, "hissed": {"_count": 1}, "whispered": {"_count": 1}, "looked": {"_count": 1}, "caught": {"_count": 1}, "opened": {"_count": 1}, "took": {"_count": 1}, "said": {"_count": 1}}, "theyve": {"_count": 2, "been": {"_count": 1}, "ever": {"_count": 1}}, "frightenin": {"_count": 1, "you": {"_count": 1}}, "especially": {"_count": 1, "for": {"_count": 1}}, "we": {"_count": 13, "thought": {"_count": 1}, "played": {"_count": 2}, "went": {"_count": 1}, "sat": {"_count": 1}, "offered": {"_count": 1}, "could": {"_count": 1}, "were": {"_count": 2}, "found": {"_count": 1}, "got": {"_count": 1}, "can": {"_count": 1}, "need": {"_count": 1}}, "But": {"_count": 1, "this": {"_count": 1}}, "she": {"_count": 20, "lost": {"_count": 1}, "had": {"_count": 6}, "looked": {"_count": 3}, "said": {"_count": 2}, "raised": {"_count": 1}, "snored": {"_count": 1}, "spoke": {"_count": 1}, "mentioned": {"_count": 1}, "was": {"_count": 1}, "finished": {"_count": 1}, "did": {"_count": 1}, "knew": {"_count": 1}}, "Snape": {"_count": 4, "might": {"_count": 1}, "had": {"_count": 2}, "": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 2}, "way": {"_count": 1}}, "that": {"_count": 20, "Harry": {"_count": 3}, "someone": {"_count": 1}, "happened": {"_count": 1}, "summer": {"_count": 1}, "night": {"_count": 1}, "Sirius": {"_count": 1}, "Ron": {"_count": 2}, "he": {"_count": 5}, "Neville": {"_count": 1}, "nothing": {"_count": 1}, "I": {"_count": 1}, "suited": {"_count": 1}, "they": {"_count": 1}}, "when": {"_count": 12, "after": {"_count": 1}, "like": {"_count": 1}, "Black": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 2}, "Sirius": {"_count": 1}, "Lord": {"_count": 2}, "the": {"_count": 1}, "they": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "a": {"_count": 17, "spasm": {"_count": 1}, "teacher": {"_count": 1}, "dementor": {"_count": 1}, "student": {"_count": 1}, "jet": {"_count": 1}, "voice": {"_count": 1}, "large": {"_count": 1}, "complete": {"_count": 1}, "few": {"_count": 2}, "dead": {"_count": 2}, "wizard": {"_count": 1}, "little": {"_count": 1}, "neck": {"_count": 1}, "great": {"_count": 1}, "streak": {"_count": 1}}, "an": {"_count": 2, "argument": {"_count": 1}, "official": {"_count": 1}}, "this": {"_count": 8, "week": {"_count": 1}, "happened": {"_count": 2}, "year": {"_count": 2}, "sentence": {"_count": 1}, "subject": {"_count": 1}, "would": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 2}}, "tomorrow": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "but": {"_count": 14, "it": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}, "otherwise": {"_count": 1}, "she": {"_count": 1}, "could": {"_count": 1}, "the": {"_count": 3}, "Lupin": {"_count": 1}, "what": {"_count": 1}, "be": {"_count": 1}, "looking": {"_count": 1}, "used": {"_count": 1}}, "ushered": {"_count": 1, "Dobby": {"_count": 1}}, "just": {"_count": 4, "weeks": {"_count": 1}, "like": {"_count": 1}, "thought": {"_count": 1}, "forget": {"_count": 1}}, "knowing": {"_count": 1, "this": {"_count": 1}}, "shut": {"_count": 2, "up": {"_count": 2}}, "Ron": {"_count": 5, "tried": {"_count": 1}, "panted": {"_count": 1}, "and": {"_count": 1}, "protested": {"_count": 1}, "withdrew": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "meals": {"_count": 1}}, "Ill": {"_count": 1, "have": {"_count": 1}}, "would": {"_count": 2, "distract": {"_count": 1}, "not": {"_count": 1}}, "my": {"_count": 5, "sweet": {"_count": 1}, "diary": {"_count": 1}, "transformations": {"_count": 1}, "faithful": {"_count": 1}, "fine": {"_count": 1}}, "Halloween": {"_count": 1, "arrived": {"_count": 1}}, "reading": {"_count": 1, "but": {"_count": 1}}, "acting": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "aiming": {"_count": 2, "at": {"_count": 1}, "for": {"_count": 1}}, "Ive": {"_count": 5, "ever": {"_count": 3}, "tripped": {"_count": 1}, "seen": {"_count": 1}}, "off": {"_count": 4, "to": {"_count": 2}, "at": {"_count": 1}, "": {"_count": 1}}, "too": {"_count": 5, "he": {"_count": 1}, "many": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "wonderful": {"_count": 1, "red": {"_count": 1}}, "sir": {"_count": 3, "Dumbledore": {"_count": 1}, "": {"_count": 2}}, "Fred": {"_count": 2, "asked": {"_count": 1}, "and": {"_count": 1}}, "before": {"_count": 12, "one": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 2}, "Dumbledore": {"_count": 1}, "Voldemort": {"_count": 1}, "dawn": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}}, "was": {"_count": 12, "caught": {"_count": 1}, "expelled": {"_count": 1}, "different": {"_count": 1}, "slipping": {"_count": 1}, "left": {"_count": 1}, "up": {"_count": 1}, "more": {"_count": 1}, "shaking": {"_count": 1}, "told": {"_count": 1}, "here": {"_count": 1}, "ripe": {"_count": 1}, "afraid": {"_count": 1}}, "wouldnt": {"_count": 1, "want": {"_count": 1}}, "hell": {"_count": 1, "know": {"_count": 1}}, "waited": {"_count": 1, "until": {"_count": 1}}, "is": {"_count": 6, "for": {"_count": 1}, "short": {"_count": 1}, "the": {"_count": 1}, "ripe": {"_count": 1}, "not": {"_count": 1}, "long": {"_count": 1}}, "since": {"_count": 12, "they": {"_count": 1}, "hed": {"_count": 2}, "the": {"_count": 1}, "she": {"_count": 1}, "my": {"_count": 1}, "Dumbledores": {"_count": 1}, "he": {"_count": 2}, "Harry": {"_count": 2}, "leaving": {"_count": 1}}, "not": {"_count": 2, "even": {"_count": 1}, "tune": {"_count": 1}}, "its": {"_count": 3, "aim": {"_count": 1}, "nuthin": {"_count": 1}, "gettin": {"_count": 1}}, "Lucius": {"_count": 1, "said": {"_count": 1}}, "landing": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 17, "year": {"_count": 1}, "their": {"_count": 2}, "it": {"_count": 2}, "our": {"_count": 1}, "his": {"_count": 1}, "night": {"_count": 2}, "the": {"_count": 2}, "your": {"_count": 1}, "a": {"_count": 1}, "course": {"_count": 1}, "day": {"_count": 1}, "my": {"_count": 1}, "Kendras": {"_count": 1}}, "froze": {"_count": 1, "as": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "Hermione": {"_count": 1}}, "Stan": {"_count": 1, "shouted": {"_count": 1}}, "Fudge": {"_count": 2, "wasnt": {"_count": 1}, "appeared": {"_count": 1}}, "absentmindedly": {"_count": 1, "stroking": {"_count": 1}}, "remember": {"_count": 1, "Fred": {"_count": 1}}, "so": {"_count": 4, "mind": {"_count": 1}, "that": {"_count": 2}, "she": {"_count": 1}}, "int": {"_count": 1, "it": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "Neville": {"_count": 1, "charged": {"_count": 1}}, "being": {"_count": 6, "on": {"_count": 1}, "": {"_count": 1}, "though": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "Dumbledore": {"_count": 1}}, "challenging": {"_count": 1, "people": {"_count": 1}}, "you": {"_count": 23, "have": {"_count": 1}, "didnt": {"_count": 1}, "ordered": {"_count": 1}, "know": {"_count": 2}, "wanted": {"_count": 1}, "show": {"_count": 1}, "got": {"_count": 1}, "werent": {"_count": 1}, "realize": {"_count": 1}, "risked": {"_count": 1}, "try": {"_count": 1}, "learned": {"_count": 2}, "listened": {"_count": 1}, "come": {"_count": 1}, "can": {"_count": 1}, "enter": {"_count": 1}, "injured": {"_count": 1}, "see": {"_count": 1}, "tried": {"_count": 1}, "earned": {"_count": 1}, "ever": {"_count": 1}}, "somebody": {"_count": 1, "took": {"_count": 1}}, "ever": {"_count": 6, "he": {"_count": 2}, "I": {"_count": 1}, "just": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "after": {"_count": 5, "Christmas": {"_count": 1}, "the": {"_count": 2}, "Charlies": {"_count": 1}, "my": {"_count": 1}}, "next": {"_count": 2, "week": {"_count": 1}, "day": {"_count": 1}}, "until": {"_count": 6, "Wood": {"_count": 1}, "Buckbeaks": {"_count": 1}, "Crouch": {"_count": 1}, "youre": {"_count": 1}, "they": {"_count": 1}, "breakfast": {"_count": 1}}, "ter": {"_count": 2, "help": {"_count": 1}, "test": {"_count": 1}}, "now": {"_count": 8, "": {"_count": 3}, "Ron": {"_count": 1}, "to": {"_count": 1}, "Voldemorts": {"_count": 1}, "that": {"_count": 2}}, "all": {"_count": 3, "standing": {"_count": 1}, "the": {"_count": 1}, "summer": {"_count": 1}}, "Indeed": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 4, "he": {"_count": 2}, "youd": {"_count": 1}, "Ive": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "or": {"_count": 4, "opportunity": {"_count": 1}, "because": {"_count": 1}, "the": {"_count": 1}, "perhaps": {"_count": 1}}, "no": {"_count": 3, "tears": {"_count": 1}, "see": {"_count": 1}, "champion": {"_count": 1}}, "did": {"_count": 2, "you": {"_count": 2}}, "youve": {"_count": 2, "been": {"_count": 1}, "appeared": {"_count": 1}}, "though": {"_count": 3, "": {"_count": 1}, "Harry": {"_count": 1}, "without": {"_count": 1}}, "weve": {"_count": 4, "thought": {"_count": 1}, "got": {"_count": 1}, "done": {"_count": 1}, "saved": {"_count": 1}}, "pretending": {"_count": 1, "theyve": {"_count": 1}}, "nobody": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "may": {"_count": 1, "come": {"_count": 1}}, "his": {"_count": 3, "scar": {"_count": 1}, "knees": {"_count": 1}, "wand": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "already": {"_count": 3, "": {"_count": 3}}, "Apparated": {"_count": 1, "five": {"_count": 1}}, "if": {"_count": 4, "you": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 2}}, "Muggles": {"_count": 1, "have": {"_count": 1}}, "while": {"_count": 5, "Lynch": {"_count": 2}, "I": {"_count": 1}, "making": {"_count": 1}, "the": {"_count": 1}}, "Lynch": {"_count": 1, "hit": {"_count": 1}}, "quibbling": {"_count": 1, "about": {"_count": 1}}, "your": {"_count": 3, "scar": {"_count": 1}, "grandmother": {"_count": 1}, "departure": {"_count": 1}}, "submitting": {"_count": 1, "yourself": {"_count": 1}}, "consuming": {"_count": 1, "nature": {"_count": 1}}, "both": {"_count": 1, "acted": {"_count": 1}}, "lucky": {"_count": 2, "their": {"_count": 1}, "you": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "going": {"_count": 1, "over": {"_count": 1}}, "poring": {"_count": 1, "over": {"_count": 1}}, "ago": {"_count": 5, "that": {"_count": 2}, "but": {"_count": 1}, "Today": {"_count": 1}, "he": {"_count": 1}}, "afterward": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 2, "after": {"_count": 1}, "in": {"_count": 1}}, "shes": {"_count": 1, "told": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 2}}, "theres": {"_count": 1, "a": {"_count": 1}}, "thought": {"_count": 2, "Harry": {"_count": 1}, "it": {"_count": 1}}, "considering": {"_count": 1, "its": {"_count": 1}}, "Dobby": {"_count": 1, "had": {"_count": 1}}, "limit": {"_count": 5, "": {"_count": 1}, "though": {"_count": 1}, "of": {"_count": 2}, "he": {"_count": 1}}, "down": {"_count": 1, "there": {"_count": 1}}, "worrying": {"_count": 2, "about": {"_count": 1}, "aloud": {"_count": 1}}, "someone": {"_count": 3, "throws": {"_count": 1}, "spoke": {"_count": 1}, "put": {"_count": 1}}, "either": {"_count": 2, "in": {"_count": 1}, "said": {"_count": 1}}, "Karkaroff": {"_count": 1, "had": {"_count": 1}}, "flanking": {"_count": 1, "a": {"_count": 1}}, "will": {"_count": 3, "you": {"_count": 1}, "not": {"_count": 1}, "be": {"_count": 1}}, "Moody": {"_count": 1, "drew": {"_count": 1}}, "why": {"_count": 1, "people": {"_count": 1}}, "revealing": {"_count": 1, "different": {"_count": 1}}, "should": {"_count": 2, "they": {"_count": 1}, "come": {"_count": 1}}, "pulling": {"_count": 2, "from": {"_count": 1}, "him": {"_count": 1}}, "even": {"_count": 2, "though": {"_count": 1}, "if": {"_count": 1}}, "without": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "Hermione": {"_count": 1}}, "staring": {"_count": 1, "dazedly": {"_count": 1}}, "waiting": {"_count": 2, "for": {"_count": 2}}, "exploded": {"_count": 1, "high": {"_count": 1}}, "Percys": {"_count": 1, "names": {"_count": 1}}, "dragging": {"_count": 1, "the": {"_count": 1}}, "Mundungus": {"_count": 1, "called": {"_count": 1}}, "somewhere": {"_count": 1, "near": {"_count": 1}}, "youll": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "walked": {"_count": 1, "across": {"_count": 1}}, "hes": {"_count": 3, "not": {"_count": 1}, "made": {"_count": 1}, "tried": {"_count": 1}}, "merely": {"_count": 1, "looked": {"_count": 1}}, "last": {"_count": 2, "term": {"_count": 1}, "night": {"_count": 1}}, "upon": {"_count": 2, "Neville": {"_count": 1}, "the": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "get": {"_count": 1}}, "Hagrid": {"_count": 2, "had": {"_count": 1}, "waved": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "Katie": {"_count": 1, "was": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "same": {"_count": 3, "place": {"_count": 3}}, "eight": {"_count": 1, "oclock": {"_count": 1}}, "youd": {"_count": 1, "brought": {"_count": 1}}, "crying": {"_count": 1, "these": {"_count": 1}}, "Willys": {"_count": 1, "been": {"_count": 1}}, "feeling": {"_count": 1, "a": {"_count": 1}}, "Harrys": {"_count": 1, "sympathy": {"_count": 1}}, "giving": {"_count": 1, "off": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "felt": {"_count": 2, "so": {"_count": 1}, "the": {"_count": 1}}, "swelling": {"_count": 1, "with": {"_count": 1}}, "illegal": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "has": {"_count": 2, "passed": {"_count": 1}, "come": {"_count": 1}}, "reappearing": {"_count": 1, "seconds": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "James": {"_count": 1, "made": {"_count": 1}}, "floating": {"_count": 1, "along": {"_count": 1}}, "hasnt": {"_count": 1, "he": {"_count": 1}}, "muttering": {"_count": 1, "to": {"_count": 1}}, "smiled": {"_count": 1, "at": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 2}}, "Kreachers": {"_count": 1, "Master": {"_count": 1}}, "He": {"_count": 7, "heaved": {"_count": 1}, "could": {"_count": 3}, "seized": {"_count": 1}, "moved": {"_count": 1}, "launched": {"_count": 1}}, "Luna": {"_count": 1, "hit": {"_count": 1}}, "Voldemort": {"_count": 2, "was": {"_count": 1}, "smiled": {"_count": 1}}, "Dumbledore": {"_count": 4, "sounded": {"_count": 1}, "had": {"_count": 1}, "raised": {"_count": 1}, "was": {"_count": 1}}, "tonight": {"_count": 1, "in": {"_count": 1}}, "must": {"_count": 1, "come": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "gazing": {"_count": 1, "out": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "succeeding": {"_count": 1, "in": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "No": {"_count": 1, "said": {"_count": 1}}, "however": {"_count": 1, "not": {"_count": 1}}, "anyway": {"_count": 1, "Id": {"_count": 1}}, "taking": {"_count": 1, "in": {"_count": 1}}, "together": {"_count": 4, "": {"_count": 2}, "was": {"_count": 1}, "at": {"_count": 1}}, "depending": {"_count": 1, "on": {"_count": 1}}, "youre": {"_count": 1, "passing": {"_count": 1}}, "Zabini": {"_count": 1, "was": {"_count": 1}}, "looking": {"_count": 3, "around": {"_count": 1}, "up": {"_count": 1}, "for": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}, "Ogden": {"_count": 1, "raised": {"_count": 1}}, "forth": {"_count": 1, "": {"_count": 1}}, "yes": {"_count": 1, "Harry": {"_count": 1}}, "Slughorn": {"_count": 1, "had": {"_count": 1}}, "\u2018Oh": {"_count": 1, "this": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "Riddle": {"_count": 1, "looked": {"_count": 1}}, "around": {"_count": 1, "they": {"_count": 1}}, "chewing": {"_count": 1, "his": {"_count": 1}}, "what": {"_count": 2, "had": {"_count": 1}, "they": {"_count": 1}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "Malfoy": {"_count": 1, "be": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "knocking": {"_count": 1, "on": {"_count": 1}}, "Voldemorts": {"_count": 1, "eyes": {"_count": 1}}, "Hokey": {"_count": 1, "was": {"_count": 1}}, "during": {"_count": 1, "that": {"_count": 1}}, "vague": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "sleeping": {"_count": 1}}, "Pomona": {"_count": 1, "Slughorn": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "comes": {"_count": 1, "we": {"_count": 1}}, "wed": {"_count": 1, "reached": {"_count": 1}}, "havent": {"_count": 1, "we": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "Charity": {"_count": 1, "Burbage": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "stripping": {"_count": 1, "down": {"_count": 1}}, "When": {"_count": 1, "next": {"_count": 1}}, "Krum": {"_count": 1, "had": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "concentrating": {"_count": 1, "on": {"_count": 1}}, "does": {"_count": 1, "it": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "found": {"_count": 1, "his": {"_count": 1}}, "knew": {"_count": 1, "Id": {"_count": 1}}, "sinking": {"_count": 1, "her": {"_count": 1}}, "clearly": {"_count": 1, "audible": {"_count": 1}}, "sharp": {"_count": 1, "and": {"_count": 1}}, "anyone": {"_count": 1, "had": {"_count": 1}}, "pointing": {"_count": 1, "firstly": {"_count": 1}}, "much": {"_count": 1, "louder": {"_count": 1}}, "Rons": {"_count": 1, "name": {"_count": 1}}, "Dads": {"_count": 1, "been": {"_count": 1}}, "left": {"_count": 4, "now": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "perhaps": {"_count": 1}}, "snapped": {"_count": 1, "the": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "anger": {"_count": 1, "at": {"_count": 1}}, "theyll": {"_count": 1, "all": {"_count": 1}}, "thatd": {"_count": 1, "look": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "dangling": {"_count": 1, "on": {"_count": 1}}, "remaining": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "can": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "noting": {"_count": 1, "small": {"_count": 1}}, "Grawp": {"_count": 1, "came": {"_count": 1}}}, "craning": {"_count": 13, "over": {"_count": 2, "garden": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "around": {"_count": 3, "to": {"_count": 1}, "in": {"_count": 2}}, "necks": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 4, "neck": {"_count": 4}}, "their": {"_count": 2, "heads": {"_count": 1}, "necks": {"_count": 1}}}, "over": {"_count": 2377, "garden": {"_count": 1, "fences": {"_count": 1}}, "the": {"_count": 701, "country": {"_count": 5}, "place": {"_count": 19}, "top": {"_count": 38}, "bundle": {"_count": 2}, "low": {"_count": 3}, "bacon": {"_count": 1}, "postcard": {"_count": 1}, "next": {"_count": 20}, "edge": {"_count": 9}, "back": {"_count": 6}, "fireplace": {"_count": 2}, "wizard": {"_count": 1}, "babble": {"_count": 2}, "other": {"_count": 3}, "goblins": {"_count": 2}, "noise": {"_count": 4}, "side": {"_count": 6}, "door": {"_count": 3}, "one": {"_count": 2}, "arrivals": {"_count": 1}, "heads": {"_count": 19}, "Daily": {"_count": 3}, "floor": {"_count": 14}, "sea": {"_count": 1}, "hall": {"_count": 1}, "tables": {"_count": 3}, "troll": {"_count": 1}, "crowd": {"_count": 7}, "game": {"_count": 1}, "stands": {"_count": 5}, "branches": {"_count": 1}, "rope": {"_count": 1}, "centuries": {"_count": 3}, "damp": {"_count": 1}, "castle": {"_count": 7}, "fire": {"_count": 3}, "three": {"_count": 1}, "points": {"_count": 1}, "wound": {"_count": 1}, "dogs": {"_count": 2}, "threshold": {"_count": 23}, "storm": {"_count": 1}, "holidays": {"_count": 5}, "summer": {"_count": 28}, "table": {"_count": 9}, "same": {"_count": 1}, "garden": {"_count": 1}, "hedge": {"_count": 3}, "kitchen": {"_count": 1}, "state": {"_count": 1}, "village": {"_count": 2}, "Weasleys": {"_count": 1}, "handles": {"_count": 1}, "lake": {"_count": 6}, "dark": {"_count": 4}, "black": {"_count": 2}, "Post": {"_count": 1}, "desktop": {"_count": 1}, "diagram": {"_count": 1}, "grass": {"_count": 5}, "basin": {"_count": 3}, "tabletop": {"_count": 1}, "thuds": {"_count": 1}, "many": {"_count": 1}, "grounds": {"_count": 5}, "ceiling": {"_count": 2}, "countless": {"_count": 1}, "head": {"_count": 7}, "dampspotted": {"_count": 1}, "statue": {"_count": 1}, "scene": {"_count": 4}, "onlookers": {"_count": 1}, "diary": {"_count": 1}, "mattress": {"_count": 1}, "classs": {"_count": 1}, "ground": {"_count": 6}, "hand": {"_count": 1}, "leaves": {"_count": 1}, "coils": {"_count": 1}, "lightning": {"_count": 1}, "motionless": {"_count": 1}, "rubies": {"_count": 1}, "school": {"_count": 10}, "last": {"_count": 8}, "rooftops": {"_count": 1}, "tablecloth": {"_count": 2}, "windshield": {"_count": 1}, "rim": {"_count": 3}, "latest": {"_count": 1}, "managers": {"_count": 1}, "mans": {"_count": 2}, "luggage": {"_count": 1}, "first": {"_count": 1}, "paddock": {"_count": 2}, "beak": {"_count": 1}, "books": {"_count": 1}, "boggart": {"_count": 1}, "greenhouse": {"_count": 1}, "entrances": {"_count": 2}, "fresh": {"_count": 1}, "wind": {"_count": 1}, "entrance": {"_count": 4}, "shop": {"_count": 1}, "small": {"_count": 1}, "oneeyed": {"_count": 1}, "clinking": {"_count": 1}, "match": {"_count": 2}, "barriers": {"_count": 1}, "Care": {"_count": 1}, "crystal": {"_count": 1}, "cabin": {"_count": 1}, "longshadowed": {"_count": 1}, "quivering": {"_count": 1}, "bones": {"_count": 1}, "past": {"_count": 4}, "lawns": {"_count": 1}, "world": {"_count": 4}, "plan": {"_count": 2}, "crackling": {"_count": 1}, "scar": {"_count": 1}, "accusations": {"_count": 1}, "coffee": {"_count": 1}, "crest": {"_count": 1}, "hilltop": {"_count": 1}, "Portkey": {"_count": 1}, "misty": {"_count": 1}, "kettle": {"_count": 1}, "campsite": {"_count": 1}, "thousands": {"_count": 1}, "roar": {"_count": 2}, "tumultuous": {"_count": 1}, "tumult": {"_count": 2}, "shrieks": {"_count": 1}, "field": {"_count": 1}, "stadium": {"_count": 1}, "backs": {"_count": 1}, "fallen": {"_count": 1}, "treetops": {"_count": 4}, "following": {"_count": 3}, "collar": {"_count": 1}, "coming": {"_count": 2}, "Forbidden": {"_count": 1}, "forest": {"_count": 1}, "muddy": {"_count": 1}, "lipstick": {"_count": 1}, "Great": {"_count": 1}, "Age": {"_count": 1}, "line": {"_count": 1}, "moon": {"_count": 1}, "lawn": {"_count": 2}, "dragons": {"_count": 1}, "broom": {"_count": 1}, "holes": {"_count": 1}, "statues": {"_count": 1}, "lakes": {"_count": 1}, "portrait": {"_count": 1}, "headmaster": {"_count": 1}, "bar": {"_count": 1}, "papers": {"_count": 1}, "surface": {"_count": 2}, "entire": {"_count": 2}, "map": {"_count": 1}, "tiny": {"_count": 1}, "weed": {"_count": 1}, "stile": {"_count": 1}, "hedges": {"_count": 1}, "details": {"_count": 1}, "crowds": {"_count": 1}, "Pensieve": {"_count": 4}, "newspaper": {"_count": 1}, "sunny": {"_count": 1}, "hem": {"_count": 1}, "spiders": {"_count": 1}, "knots": {"_count": 1}, "cup": {"_count": 1}, "man": {"_count": 1}, "large": {"_count": 1}, "end": {"_count": 3}, "hydrangea": {"_count": 1}, "locked": {"_count": 1}, "doormat": {"_count": 1}, "dead": {"_count": 1}, "glittering": {"_count": 1}, "peeling": {"_count": 1}, "banisters": {"_count": 3}, "old": {"_count": 1}, "umbrella": {"_count": 1}, "desks": {"_count": 1}, "house": {"_count": 3}, "heavily": {"_count": 1}, "surrounding": {"_count": 2}, "spot": {"_count": 1}, "repeated": {"_count": 1}, "various": {"_count": 1}, "running": {"_count": 1}, "students": {"_count": 3}, "Hall": {"_count": 2}, "arms": {"_count": 1}, "room": {"_count": 1}, "silver": {"_count": 1}, "weekend": {"_count": 1}, "hammering": {"_count": 1}, "left": {"_count": 1}, "dragon": {"_count": 1}, "things": {"_count": 1}, "tip": {"_count": 1}, "rug": {"_count": 1}, "renewed": {"_count": 1}, "threadbare": {"_count": 1}, "Welcome": {"_count": 1}, "pictures": {"_count": 1}, "Christmas": {"_count": 1}, "occupants": {"_count": 1}, "salt": {"_count": 1}, "mossy": {"_count": 1}, "half": {"_count": 1}, "paper": {"_count": 2}, "sound": {"_count": 1}, "great": {"_count": 1}, "pine": {"_count": 1}, "marmalade": {"_count": 1}, "fifth": {"_count": 1}, "lunch": {"_count": 1}, "brightly": {"_count": 1}, "parchment": {"_count": 1}, "parapet": {"_count": 1}, "giant": {"_count": 1}, "Latin": {"_count": 1}, "trampling": {"_count": 1}, "Sorcerers": {"_count": 1}, "creatures": {"_count": 1}, "Hogwarts": {"_count": 1}, "prophecy": {"_count": 1}, "warm": {"_count": 1}, "Death": {"_count": 1}, "desk": {"_count": 2}, "sides": {"_count": 2}, "mountains": {"_count": 2}, "Quidditch": {"_count": 1}, "gleaming": {"_count": 1}, "indignity": {"_count": 1}, "year": {"_count": 1}, "second": {"_count": 2}, "Axminster": {"_count": 1}, "animal": {"_count": 1}, "trunk": {"_count": 1}, "wallpaper": {"_count": 1}, "chiming": {"_count": 1}, "path": {"_count": 1}, "Patented": {"_count": 1}, "Pygmy": {"_count": 1}, "position": {"_count": 1}, "snarling": {"_count": 1}, "queue": {"_count": 1}, "windows": {"_count": 1}, "tattered": {"_count": 1}, "pages": {"_count": 1}, "cabinet": {"_count": 1}, "rest": {"_count": 1}, "book": {"_count": 1}, "howling": {"_count": 2}, "raging": {"_count": 1}, "parcel": {"_count": 1}, "loud": {"_count": 2}, "satsuma": {"_count": 1}, "snowy": {"_count": 1}, "grate": {"_count": 1}, "Burrow": {"_count": 1}, "way": {"_count": 2}, "HalfBlood": {"_count": 1}, "wall": {"_count": 2}, "rippling": {"_count": 1}, "true": {"_count": 1}, "summ": {"_count": 1}, "memory": {"_count": 1}, "pincers": {"_count": 1}, "guttering": {"_count": 1}, "deep": {"_count": 2}, "rocky": {"_count": 1}, "silent": {"_count": 1}, "whistling": {"_count": 1}, "boundary": {"_count": 1}, "tower": {"_count": 1}, "body": {"_count": 2}, "battlements": {"_count": 1}, "rushing": {"_count": 1}, "twilit": {"_count": 1}, "hundreds": {"_count": 1}, "outpouring": {"_count": 1}, "privet": {"_count": 1}, "hubbub": {"_count": 1}, "thunderous": {"_count": 1}, "handlebars": {"_count": 1}, "Ministry": {"_count": 2}, "happier": {"_count": 1}, "frying": {"_count": 1}, "orchard": {"_count": 1}, "guests": {"_count": 1}, "trees": {"_count": 1}, "uneven": {"_count": 1}, "dinner": {"_count": 1}, "Deluminator": {"_count": 1}, "runes": {"_count": 1}, "exact": {"_count": 1}, "hill": {"_count": 1}, "brightness": {"_count": 1}, "sticky": {"_count": 2}, "dance": {"_count": 1}, "darker": {"_count": 1}, "carpet": {"_count": 1}, "banister": {"_count": 1}, "bed": {"_count": 2}, "post": {"_count": 1}, "Prophet": {"_count": 2}, "little": {"_count": 1}, "polished": {"_count": 1}, "barrier": {"_count": 1}, "void": {"_count": 1}, "steakandkidney": {"_count": 1}, "fate": {"_count": 1}, "watch": {"_count": 2}, "countryside": {"_count": 1}, "rush": {"_count": 1}, "rain": {"_count": 1}, "titles": {"_count": 1}, "strange": {"_count": 1}, "church": {"_count": 1}, "sparkling": {"_count": 1}, "ruled": {"_count": 1}, "Muggles": {"_count": 1}, "edges": {"_count": 1}, "frantically": {"_count": 1}, "radio": {"_count": 1}, "press": {"_count": 1}, "nearest": {"_count": 1}, "face": {"_count": 1}, "jeering": {"_count": 1}, "elf": {"_count": 1}, "horizon": {"_count": 3}, "ocean": {"_count": 1}, "tips": {"_count": 1}, "corpse": {"_count": 1}, "gateway": {"_count": 1}, "rattling": {"_count": 1}, "track": {"_count": 1}, "beasts": {"_count": 1}, "earth": {"_count": 1}, "street": {"_count": 1}, "mantelpiece": {"_count": 1}, "clamor": {"_count": 1}, "walls": {"_count": 1}, "deafening": {"_count": 1}, "marauding": {"_count": 1}, "stairs": {"_count": 1}, "pale": {"_count": 1}, "platform": {"_count": 1}, "cats": {"_count": 1}, "owls": {"_count": 1}, "Elder": {"_count": 1}, "outofsight": {"_count": 1}, "screams": {"_count": 1}, "sill": {"_count": 1}}, "dinner": {"_count": 3, "all": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 180, "Jim": {"_count": 1}, "their": {"_count": 5}, "the": {"_count": 66}, "sit": {"_count": 3}, "stand": {"_count": 3}, "Draco": {"_count": 1}, "Nearly": {"_count": 1}, "wish": {"_count": 1}, "Goyles": {"_count": 1}, "her": {"_count": 12}, "it": {"_count": 2}, "a": {"_count": 10}, "him": {"_count": 5}, "Harry": {"_count": 4}, "borrow": {"_count": 1}, "Neville": {"_count": 1}, "tell": {"_count": 1}, "where": {"_count": 3}, "them": {"_count": 7}, "Hermiones": {"_count": 1}, "Ron": {"_count": 5}, "look": {"_count": 1}, "congratulate": {"_count": 1}, "Montague": {"_count": 1}, "Hagrids": {"_count": 1}, "his": {"_count": 12}, "join": {"_count": 3}, "fix": {"_count": 1}, "get": {"_count": 1}, "Dean": {"_count": 1}, "Mr": {"_count": 2}, "talk": {"_count": 1}, "its": {"_count": 1}, "Hermione": {"_count": 1}, "Hagrid": {"_count": 1}, "Fred": {"_count": 1}, "one": {"_count": 1}, "Cedric": {"_count": 1}, "Dumbledore": {"_count": 2}, "help": {"_count": 1}, "YouKnowWho": {"_count": 1}, "examine": {"_count": 1}, "check": {"_count": 1}, "Diagon": {"_count": 1}, "Pansy": {"_count": 1}, "Professor": {"_count": 1}, "press": {"_count": 1}, "another": {"_count": 1}, "shake": {"_count": 1}, "Katies": {"_count": 1}, "intervene": {"_count": 1}, "Romulus": {"_count": 1}}, "Britain": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 26, "his": {"_count": 12}, "a": {"_count": 2}, "midair": {"_count": 1}, "the": {"_count": 6}, "bed": {"_count": 1}, "two": {"_count": 1}, "their": {"_count": 1}, "other": {"_count": 1}, "pain": {"_count": 1}}, "it": {"_count": 25, "couldnt": {"_count": 1}, "": {"_count": 8}, "had": {"_count": 1}, "and": {"_count": 3}, "his": {"_count": 1}, "that": {"_count": 1}, "swooped": {"_count": 1}, "once": {"_count": 1}, "but": {"_count": 1}, "gazing": {"_count": 1}, "they": {"_count": 1}, "well": {"_count": 1}, "spells": {"_count": 1}, "searching": {"_count": 1}, "said": {"_count": 1}, "WANTED": {"_count": 1}}, "Bristol": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 291, "forehead": {"_count": 2}, "head": {"_count": 42}, "hand": {"_count": 1}, "fat": {"_count": 1}, "shoulder": {"_count": 87}, "card": {"_count": 1}, "eyes": {"_count": 8}, "desk": {"_count": 1}, "arms": {"_count": 1}, "nose": {"_count": 2}, "robes": {"_count": 4}, "arm": {"_count": 4}, "hands": {"_count": 2}, "lamp": {"_count": 1}, "face": {"_count": 22}, "feet": {"_count": 3}, "bat": {"_count": 1}, "plate": {"_count": 1}, "great": {"_count": 1}, "eye": {"_count": 3}, "ears": {"_count": 3}, "pale": {"_count": 1}, "own": {"_count": 5}, "body": {"_count": 3}, "trunk": {"_count": 5}, "scar": {"_count": 3}, "nightshirt": {"_count": 2}, "Nimbus": {"_count": 1}, "Firebolt": {"_count": 2}, "chest": {"_count": 1}, "wasted": {"_count": 1}, "pasty": {"_count": 1}, "neck": {"_count": 1}, "backside": {"_count": 1}, "buttocks": {"_count": 1}, "massive": {"_count": 1}, "shoulders": {"_count": 4}, "sneakers": {"_count": 1}, "bedside": {"_count": 1}, "now": {"_count": 1}, "wand": {"_count": 4}, "mouth": {"_count": 3}, "dress": {"_count": 1}, "halfmoon": {"_count": 2}, "shorts": {"_count": 1}, "knees": {"_count": 1}, "bottle": {"_count": 1}, "unshaven": {"_count": 1}, "masters": {"_count": 1}, "bleeding": {"_count": 1}, "mothers": {"_count": 1}, "mismatched": {"_count": 1}, "right": {"_count": 1}, "pointed": {"_count": 1}, "parchment": {"_count": 1}, "essay": {"_count": 1}, "roll": {"_count": 1}, "book": {"_count": 2}, "swollen": {"_count": 1}, "steak": {"_count": 1}, "History": {"_count": 1}, "chin": {"_count": 1}, "floor": {"_count": 1}, "back": {"_count": 1}, "upper": {"_count": 1}, "broomstick": {"_count": 1}, "paper": {"_count": 1}, "pincenez": {"_count": 1}, "star": {"_count": 1}, "magical": {"_count": 1}, "chair": {"_count": 1}, "cornflakes": {"_count": 1}, "overlong": {"_count": 1}, "Quidditch": {"_count": 1}, "injury": {"_count": 1}, "cauldron": {"_count": 2}, "sausages": {"_count": 1}, "lower": {"_count": 1}, "sheets": {"_count": 1}, "lifeless": {"_count": 1}, "hips": {"_count": 1}, "Potions": {"_count": 1}, "freshly": {"_count": 1}, "blackened": {"_count": 1}, "broom": {"_count": 1}, "companions": {"_count": 1}, "skin": {"_count": 1}, "new": {"_count": 1}, "snout": {"_count": 1}, "soup": {"_count": 1}, "brain": {"_count": 1}, "heart": {"_count": 1}, "thoughts": {"_count": 1}, "glassy": {"_count": 1}, "sister": {"_count": 1}, "surroundings": {"_count": 1}}, "with": {"_count": 10, "": {"_count": 2}, "him": {"_count": 1}, "some": {"_count": 1}, "Fred": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "said": {"_count": 1}, "today": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 24, "and": {"_count": 3}, "charging": {"_count": 1}, "": {"_count": 7}, "pulled": {"_count": 1}, "in": {"_count": 2}, "thought": {"_count": 1}, "gazing": {"_count": 1}, "it": {"_count": 1}, "leering": {"_count": 1}, "Potter": {"_count": 1}, "her": {"_count": 1}, "resting": {"_count": 1}, "corked": {"_count": 1}, "said": {"_count": 1}, "sprinted": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 91, ".": {"_count": 77}, "?": {"_count": 9}, "!": {"_count": 5}}, "bits": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 78, "over": {"_count": 21}, "saw": {"_count": 3}, "fell": {"_count": 2}, "dropped": {"_count": 1}, "decided": {"_count": 1}, "he": {"_count": 2}, "together": {"_count": 1}, "dived": {"_count": 2}, "sped": {"_count": 1}, "felt": {"_count": 1}, "sat": {"_count": 3}, "how": {"_count": 1}, "lay": {"_count": 2}, "turned": {"_count": 1}, "put": {"_count": 1}, "snatching": {"_count": 1}, "began": {"_count": 2}, "grinned": {"_count": 1}, "tried": {"_count": 1}, "stuffed": {"_count": 1}, "causing": {"_count": 1}, "starting": {"_count": 1}, "scratching": {"_count": 1}, "holding": {"_count": 1}, "bounced": {"_count": 1}, "by": {"_count": 1}, "looked": {"_count": 1}, "thats": {"_count": 1}, "bearing": {"_count": 1}, "found": {"_count": 1}, "scrambled": {"_count": 2}, "then": {"_count": 2}, "perched": {"_count": 1}, "vomited": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "his": {"_count": 2}, "thought": {"_count": 1}, "around": {"_count": 1}, "was": {"_count": 1}, "looking": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}, "Hermione": {"_count": 1}, "they": {"_count": 1}, "anyone": {"_count": 2}}, "again": {"_count": 32, "": {"_count": 8}, "he": {"_count": 3}, "during": {"_count": 1}, "thats": {"_count": 1}, "for": {"_count": 1}, "I": {"_count": 1}, "next": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 2}, "leaving": {"_count": 1}, "shes": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 2}, "The": {"_count": 1}, "isn": {"_count": 1}, "more": {"_count": 1}, "crouching": {"_count": 1}, "they": {"_count": 1}, "a": {"_count": 1}, "In": {"_count": 1}}, "but": {"_count": 5, "there": {"_count": 1}, "you": {"_count": 1}, "her": {"_count": 1}, "Gregorovitch": {"_count": 1}, "others": {"_count": 1}}, "one": {"_count": 12, "of": {"_count": 7}, "platform": {"_count": 1}, "another": {"_count": 2}, "anothers": {"_count": 1}, "shoulder": {"_count": 1}}, "who": {"_count": 2, "would": {"_count": 1}, "might": {"_count": 1}}, "their": {"_count": 51, "faces": {"_count": 6}, "shoulders": {"_count": 8}, "noses": {"_count": 2}, "own": {"_count": 1}, "ankles": {"_count": 1}, "heads": {"_count": 17}, "tents": {"_count": 2}, "nightdresses": {"_count": 1}, "mouths": {"_count": 2}, "homework": {"_count": 1}, "ears": {"_count": 1}, "presents": {"_count": 1}, "tickets": {"_count": 1}, "sugar": {"_count": 1}, "bodies": {"_count": 1}, "joke": {"_count": 1}, "upturned": {"_count": 1}, "eyes": {"_count": 1}, "plan": {"_count": 1}, "pajamas": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "him": {"_count": 64, "as": {"_count": 3}, "not": {"_count": 1}, "and": {"_count": 8}, "occasionally": {"_count": 1}, "": {"_count": 18}, "again": {"_count": 2}, "inside": {"_count": 1}, "Expecto": {"_count": 1}, "all": {"_count": 1}, "but": {"_count": 1}, "back": {"_count": 1}, "anymore": {"_count": 1}, "he": {"_count": 4}, "once": {"_count": 1}, "gripping": {"_count": 1}, "stifling": {"_count": 1}, "to": {"_count": 1}, "looking": {"_count": 4}, "in": {"_count": 2}, "did": {"_count": 1}, "happy": {"_count": 1}, "wave": {"_count": 1}, "the": {"_count": 1}, "He": {"_count": 1}, "like": {"_count": 1}, "wand": {"_count": 1}, "powerful": {"_count": 1}, "indifferent": {"_count": 1}, "now": {"_count": 1}, "immersing": {"_count": 1}}, "a": {"_count": 68, "cart": {"_count": 1}, "pack": {"_count": 1}, "shop": {"_count": 1}, "stray": {"_count": 1}, "Special": {"_count": 1}, "thousand": {"_count": 2}, "sixthyear": {"_count": 1}, "gigantic": {"_count": 1}, "platform": {"_count": 2}, "large": {"_count": 1}, "freshly": {"_count": 1}, "pair": {"_count": 2}, "model": {"_count": 1}, "bed": {"_count": 1}, "month": {"_count": 2}, "burning": {"_count": 1}, "tree": {"_count": 1}, "sack": {"_count": 1}, "long": {"_count": 1}, "piece": {"_count": 3}, "week": {"_count": 1}, "century": {"_count": 1}, "number": {"_count": 1}, "single": {"_count": 1}, "bare": {"_count": 1}, "year": {"_count": 2}, "strange": {"_count": 1}, "bowl": {"_count": 1}, "hedge": {"_count": 1}, "stone": {"_count": 1}, "chair": {"_count": 2}, "poster": {"_count": 1}, "stack": {"_count": 1}, "ridge": {"_count": 1}, "friends": {"_count": 1}, "snowywhite": {"_count": 1}, "patch": {"_count": 1}, "bright": {"_count": 1}, "fallen": {"_count": 1}, "dirty": {"_count": 1}, "cardboard": {"_count": 1}, "pile": {"_count": 1}, "striped": {"_count": 1}, "fresh": {"_count": 2}, "tasseled": {"_count": 1}, "low": {"_count": 1}, "particular": {"_count": 1}, "body": {"_count": 1}, "picture": {"_count": 1}, "mug": {"_count": 1}, "sheaf": {"_count": 1}, "birdcage": {"_count": 1}, "valley": {"_count": 1}, "little": {"_count": 1}, "dark": {"_count": 1}, "tiny": {"_count": 1}, "nearby": {"_count": 1}, "girl": {"_count": 1}, "crowd": {"_count": 1}}, "Hagrid": {"_count": 3, "himself": {"_count": 1}, "s": {"_count": 2}}, "them": {"_count": 33, "": {"_count": 6}, "as": {"_count": 5}, "and": {"_count": 4}, "all": {"_count": 1}, "with": {"_count": 2}, "making": {"_count": 1}, "booming": {"_count": 1}, "from": {"_count": 2}, "at": {"_count": 1}, "too": {"_count": 1}, "on": {"_count": 1}, "some": {"_count": 1}, "like": {"_count": 1}, "then": {"_count": 1}, "would": {"_count": 1}, "again": {"_count": 1}, "both": {"_count": 1}, "dropping": {"_count": 1}, "where": {"_count": 1}}, "an": {"_count": 8, "underground": {"_count": 1}, "hour": {"_count": 4}, "we": {"_count": 1}, "enormous": {"_count": 1}, "armchair": {"_count": 1}}, "seats": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 19, "": {"_count": 7}, "a": {"_count": 2}, "with": {"_count": 2}, "please": {"_count": 3}, "said": {"_count": 1}, "to": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 1}, "muttered": {"_count": 1}}, "four": {"_count": 2, "long": {"_count": 2}}, "her": {"_count": 89, "eyes": {"_count": 3}, "glasses": {"_count": 1}, "shoulder": {"_count": 24}, "feet": {"_count": 1}, "flyaway": {"_count": 2}, "own": {"_count": 1}, "nightdress": {"_count": 2}, "head": {"_count": 10}, "mouth": {"_count": 8}, "square": {"_count": 1}, "work": {"_count": 1}, "horselike": {"_count": 1}, "golden": {"_count": 1}, "clutch": {"_count": 1}, "arm": {"_count": 1}, "face": {"_count": 7}, "back": {"_count": 1}, "hands": {"_count": 1}, "mothers": {"_count": 1}, "eye": {"_count": 1}, "all": {"_count": 1}, "upsidedown": {"_count": 1}, "robes": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "clipboard": {"_count": 1}, "Rune": {"_count": 1}, "and": {"_count": 1}, "gin": {"_count": 1}, "chin": {"_count": 1}, "heart": {"_count": 2}, "cauldron": {"_count": 1}, "even": {"_count": 1}, "son": {"_count": 2}, "copy": {"_count": 1}, "wand": {"_count": 1}, "pajamas": {"_count": 1}}, "on": {"_count": 5, "his": {"_count": 2}, "the": {"_count": 2}, "them": {"_count": 1}}, "at": {"_count": 55, "the": {"_count": 21}, "Harry": {"_count": 3}, "midnight": {"_count": 1}, "that": {"_count": 1}, "Harrys": {"_count": 1}, "Colins": {"_count": 1}, "Hogwarts": {"_count": 1}, "Ron": {"_count": 5}, "Percy": {"_count": 1}, "Hermione": {"_count": 2}, "him": {"_count": 5}, "Nevilles": {"_count": 1}, "Sirius": {"_count": 1}, "her": {"_count": 1}, "any": {"_count": 1}, "Rons": {"_count": 1}, "his": {"_count": 1}, "Lavender": {"_count": 1}, "least": {"_count": 1}, "Dean": {"_count": 1}, "Mrs": {"_count": 1}, "Xenophilius": {"_count": 1}, "them": {"_count": 1}, "last": {"_count": 1}}, "your": {"_count": 7, "broom": {"_count": 1}, "house": {"_count": 1}, "evening": {"_count": 1}, "own": {"_count": 1}, "papers": {"_count": 1}, "spattergroit": {"_count": 1}, "head": {"_count": 1}}, "Neville": {"_count": 2, "her": {"_count": 1}, "and": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "Hermione": {"_count": 9, "snarled": {"_count": 1}, "grabbed": {"_count": 1}, "cowering": {"_count": 1}, "Krum": {"_count": 1}, "s": {"_count": 2}, "with": {"_count": 1}, "": {"_count": 2}}, "that": {"_count": 3, "there": {"_count": 1}, "line": {"_count": 1}, "memory": {"_count": 1}}, "Gryffindor": {"_count": 1, "Tower": {"_count": 1}}, "laughing": {"_count": 1, "except": {"_count": 1}}, "people": {"_count": 1, "but": {"_count": 1}}, "from": {"_count": 10, "here": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}, "behind": {"_count": 1}, "trying": {"_count": 1}, "Trelawney": {"_count": 1}, "having": {"_count": 1}, "Cornelius": {"_count": 1}, "my": {"_count": 1}}, "dead": {"_count": 3, "leaves": {"_count": 2}, "the": {"_count": 1}}, "as": {"_count": 5, "she": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "Minister": {"_count": 1}, "quickly": {"_count": 1}}, "breakfast": {"_count": 7, "at": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 1}, "waving": {"_count": 1}, "the": {"_count": 1}}, "either": {"_count": 2, "side": {"_count": 1}, "of": {"_count": 1}}, "you": {"_count": 6, "take": {"_count": 1}, "and": {"_count": 1}, "know": {"_count": 1}, "can": {"_count": 1}, "outperforming": {"_count": 1}, "on": {"_count": 1}}, "HeWhoMustNotBe": {"_count": 2, "Named": {"_count": 2}}, "whenever": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 8, "Mr": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 2}, "George": {"_count": 1}, "Ginny": {"_count": 1}, "Lupin": {"_count": 1}, "Neville": {"_count": 1}}, "both": {"_count": 3, "clutching": {"_count": 1}, "of": {"_count": 2}}, "Gentlemen": {"_count": 1, "please": {"_count": 1}}, "there": {"_count": 27, "and": {"_count": 1}, "said": {"_count": 3}, "it": {"_count": 1}, "Harry": {"_count": 2}, "thats": {"_count": 1}, "": {"_count": 7}, "first": {"_count": 1}, "did": {"_count": 1}, "Here": {"_count": 1}, "the": {"_count": 2}, "beside": {"_count": 1}, "by": {"_count": 1}, "he": {"_count": 2}, "Mulciber": {"_count": 1}, "but": {"_count": 1}, "somewhere": {"_count": 1}}, "three": {"_count": 5, "sides": {"_count": 1}, "tables": {"_count": 1}, "times": {"_count": 1}, "feet": {"_count": 1}, "years": {"_count": 1}}, "full": {"_count": 1, "marks": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 9, "felt": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "happened": {"_count": 1}, "to": {"_count": 1}, "Malfoy": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "Filchs": {"_count": 1, "office": {"_count": 1}}, "shouting": {"_count": 1, "This": {"_count": 1}}, "looking": {"_count": 2, "excited": {"_count": 1}, "for": {"_count": 1}}, "smirking": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "something": {"_count": 3, "lying": {"_count": 1}, "on": {"_count": 1}, "said": {"_count": 1}}, "Justin": {"_count": 1, "and": {"_count": 1}}, "Christmas": {"_count": 7, "because": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "remembered": {"_count": 1}, "apparently": {"_count": 1}, "It": {"_count": 1}}, "backward": {"_count": 9, "onto": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 3}, "by": {"_count": 1}, "": {"_count": 1}, "landing": {"_count": 1}, "on": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "Harrys": {"_count": 21, "shoulder": {"_count": 6}, "hands": {"_count": 1}, "pillow": {"_count": 1}, "legs": {"_count": 1}, "glasses": {"_count": 1}, "head": {"_count": 5}, "narrow": {"_count": 1}, "face": {"_count": 1}, "skin": {"_count": 2}, "scar": {"_count": 1}, "words": {"_count": 1}}, "everything": {"_count": 2, "": {"_count": 2}}, "saw": {"_count": 1, "Malfoy": {"_count": 1}}, "Malfoy": {"_count": 4, "said": {"_count": 1}, "Crabbe": {"_count": 1}, "and": {"_count": 1}, "drew": {"_count": 1}}, "he": {"_count": 8, "said": {"_count": 2}, "added": {"_count": 1}, "told": {"_count": 1}, "had": {"_count": 1}, "doubted": {"_count": 1}, "drew": {"_count": 1}, "knew": {"_count": 1}}, "lists": {"_count": 1, "of": {"_count": 1}}, "themselves": {"_count": 5, "": {"_count": 2}, "and": {"_count": 2}, "but": {"_count": 1}}, "Ron": {"_count": 6, "and": {"_count": 2}, "they": {"_count": 1}, "lying": {"_count": 1}, "": {"_count": 2}}, "my": {"_count": 7, "robes": {"_count": 1}, "desk": {"_count": 1}, "dead": {"_count": 1}, "father": {"_count": 1}, "best": {"_count": 1}, "mothers": {"_count": 1}, "son": {"_count": 1}}, "Fawkes": {"_count": 1, "and": {"_count": 1}}, "sideways": {"_count": 4, "and": {"_count": 2}, "flattening": {"_count": 1}, "into": {"_count": 1}}, "all": {"_count": 19, "four": {"_count": 1}, "the": {"_count": 11}, "punishments": {"_count": 1}, "cunning": {"_count": 1}, "of": {"_count": 3}, "right": {"_count": 1}, "three": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "lunch": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "for": {"_count": 3, "": {"_count": 1}, "a": {"_count": 2}}, "wiv": {"_count": 1, "YouKnowOo": {"_count": 1}}, "Stans": {"_count": 1, "shoulder": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "yet": {"_count": 3, "said": {"_count": 2}, "Harry": {"_count": 1}}, "by": {"_count": 8, "the": {"_count": 7}, "his": {"_count": 1}}, "Dudleys": {"_count": 1, "piggy": {"_count": 1}}, "ter": {"_count": 1, "the": {"_count": 1}}, "horrible": {"_count": 1, "stuff": {"_count": 1}}, "me": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "like": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}}, "Dumbledore": {"_count": 4, "would": {"_count": 1}, "s": {"_count": 2}, "did": {"_count": 1}}, "so": {"_count": 6, "that": {"_count": 3}, "many": {"_count": 1}, "quickly": {"_count": 1}, "Dursleyish": {"_count": 1}}, "responsibility": {"_count": 1, "for": {"_count": 1}}, "enormously": {"_count": 1, "thick": {"_count": 1}}, "tension": {"_count": 1, "between": {"_count": 1}}, "Blacks": {"_count": 1, "heart": {"_count": 1}}, "Pettigrews": {"_count": 1, "head": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 2, "and": {"_count": 2}}, "empty": {"_count": 1, "sockets": {"_count": 1}}, "then": {"_count": 2, "seize": {"_count": 1}, "": {"_count": 1}}, "Buckbeaks": {"_count": 1, "back": {"_count": 1}}, "its": {"_count": 6, "face": {"_count": 1}, "back": {"_count": 2}, "bony": {"_count": 1}, "surface": {"_count": 1}, "horrible": {"_count": 1}}, "two": {"_count": 4, "hundred": {"_count": 1}, "years": {"_count": 1}, "successive": {"_count": 1}, "delicate": {"_count": 1}}, "Rons": {"_count": 7, "hand": {"_count": 1}, "fist": {"_count": 1}, "head": {"_count": 3}, "shoulder": {"_count": 1}, "cauldron": {"_count": 1}}, "Mr": {"_count": 3, "Weasley": {"_count": 1}, "Crouchs": {"_count": 1}, "Weasleys": {"_count": 1}}, "Bagman": {"_count": 1, "": {"_count": 1}}, "Pigwidgeons": {"_count": 1, "cage": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "as": {"_count": 1}}, "pointing": {"_count": 2, "into": {"_count": 1}, "at": {"_count": 1}}, "Freds": {"_count": 2, "and": {"_count": 1}, "left": {"_count": 1}}, "onto": {"_count": 14, "its": {"_count": 1}, "his": {"_count": 11}, "the": {"_count": 1}, "their": {"_count": 1}}, "before": {"_count": 1, "his": {"_count": 1}}, "plans": {"_count": 1, "for": {"_count": 1}}, "books": {"_count": 2, "during": {"_count": 1}, "": {"_count": 1}}, "twelve": {"_count": 1, "hours": {"_count": 1}}, "himself": {"_count": 16, "and": {"_count": 7}, "Harry": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 3}, "she": {"_count": 1}, "for": {"_count": 1}, "before": {"_count": 1}, "murmured": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "Dean": {"_count": 2, "who": {"_count": 1}, "Thomass": {"_count": 1}}, "Winkys": {"_count": 3, "sobs": {"_count": 1}, "screeches": {"_count": 1}, "continued": {"_count": 1}}, "horror": {"_count": 1, "struck": {"_count": 1}}, "Malfoys": {"_count": 1, "shoulder": {"_count": 1}}, "this": {"_count": 2, "lot": {"_count": 1}, "I": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "which": {"_count": 6, "they": {"_count": 1}, "would": {"_count": 1}, "hung": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "gives": {"_count": 1}}, "everybody": {"_count": 2, "except": {"_count": 1}, "elses": {"_count": 1}}, "hands": {"_count": 1, "on": {"_count": 1}}, "silt": {"_count": 1, "and": {"_count": 1}}, "vast": {"_count": 1, "expanses": {"_count": 1}}, "Krum": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "until": {"_count": 1, "Harrys": {"_count": 1}}, "Moodys": {"_count": 2, "shoulder": {"_count": 1}, "limp": {"_count": 1}}, "Crouchs": {"_count": 1, "face": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "goose": {"_count": 1, "bumps": {"_count": 1}}, "spilled": {"_count": 1, "potion": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "keep": {"_count": 1, "flying": {"_count": 1}}, "But": {"_count": 1, "the": {"_count": 1}}, "Dung": {"_count": 1, "said": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "soon": {"_count": 2, "Mr": {"_count": 1}, "": {"_count": 1}}, "another": {"_count": 3, "outbreak": {"_count": 1}, "body": {"_count": 1}, "prone": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "Prefect": {"_count": 1, "Ron": {"_count": 1}}, "Kreachers": {"_count": 2, "dead": {"_count": 1}, "continued": {"_count": 1}}, "faint": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "seconds": {"_count": 1, "later": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "fifteen": {"_count": 1, "Sickles": {"_count": 1}}, "tables": {"_count": 1, "in": {"_count": 1}}, "perfumed": {"_count": 1, "atmosphere": {"_count": 1}}, "break": {"_count": 1, "due": {"_count": 1}}, "boulders": {"_count": 1, "an": {"_count": 1}}, "food": {"_count": 1, "an": {"_count": 1}}, "Hagrids": {"_count": 2, "discolored": {"_count": 1}, "legs": {"_count": 1}}, "first": {"_count": 1, "and": {"_count": 1}}, "during": {"_count": 1, "Christmas": {"_count": 1}}, "beside": {"_count": 2, "the": {"_count": 2}}, "when": {"_count": 1, "the": {"_count": 1}}, "Hogsmeade": {"_count": 1, "looking": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "centuries": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "fire": {"_count": 1}}, "heels": {"_count": 1, "in": {"_count": 1}}, "James": {"_count": 1, "and": {"_count": 1}}, "any": {"_count": 3, "career": {"_count": 1}, "dwelling": {"_count": 1}, "Muggle": {"_count": 1}}, "Professor": {"_count": 2, "Umbridge": {"_count": 1}, "McGonagall": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "our": {"_count": 2, "star": {"_count": 1}, "present": {"_count": 1}}, "more": {"_count": 1, "villages": {"_count": 1}}, "Ginny": {"_count": 1, "s": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "Nevilles": {"_count": 2, "shoulders": {"_count": 1}, "jerking": {"_count": 1}}, "still": {"_count": 1, "thrashing": {"_count": 1}}, "Luna": {"_count": 1, "who": {"_count": 1}}, "drinks": {"_count": 1, "": {"_count": 1}}, "sure": {"_count": 1, "Voldemort": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "Privet": {"_count": 1, "Drive": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "muttered": {"_count": 1, "Neville": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "she": {"_count": 1, "told": {"_count": 1}}, "Ernies": {"_count": 1, "navy": {"_count": 1}}, "McLaggens": {"_count": 1, "face": {"_count": 1}}, "giant": {"_count": 1, "scorpions": {"_count": 1}}, "Riddles": {"_count": 1, "face": {"_count": 1}}, "Advanced": {"_count": 1, "PotionMaking": {"_count": 1}}, "several": {"_count": 1, "elderly": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "grounds": {"_count": 1, "carpeted": {"_count": 1}}, "innit": {"_count": 1, "": {"_count": 1}}, "young": {"_count": 1, "witches": {"_count": 1}}, "Hepzibah": {"_count": 1, "s": {"_count": 1}}, "Hermiones": {"_count": 3, "shoulder": {"_count": 3}}, "meals": {"_count": 1, "they": {"_count": 1}}, "Voldemorts": {"_count": 1, "imagination": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "panting": {"_count": 1, "a": {"_count": 1}}, "shops": {"_count": 1, "and": {"_count": 1}}, "Dumbledores": {"_count": 2, "face": {"_count": 1}, "spectacular": {"_count": 1}}, "or": {"_count": 1, "on": {"_count": 1}}, "thought": {"_count": 1, "for": {"_count": 1}}, "time": {"_count": 3, "to": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "Hogwarts": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "Bill": {"_count": 1, "but": {"_count": 1}}, "Fleurs": {"_count": 1, "shoulder": {"_count": 1}}, "Aunt": {"_count": 1, "Petunias": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "us": {"_count": 2, "A": {"_count": 1}, "right": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "Break": {"_count": 1, "with": {"_count": 1}}, "recently": {"_count": 1, "the": {"_count": 1}}, "stacks": {"_count": 1, "of": {"_count": 1}}, "Phineas": {"_count": 1, "Nigelluss": {"_count": 1}}, "Bathildas": {"_count": 1, "embossed": {"_count": 1}}, "sixteen": {"_count": 1, "years": {"_count": 1}}, "broken": {"_count": 1, "china": {"_count": 1}}, "Muggles": {"_count": 1, "": {"_count": 1}}, "chairs": {"_count": 1, "inside": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "gravel": {"_count": 1, "": {"_count": 1}}, "Wormtails": {"_count": 1, "mouth": {"_count": 1}}, "water": {"_count": 1, "the": {"_count": 1}}, "Gryffindors": {"_count": 1, "sword": {"_count": 1}}, "many": {"_count": 1, "windows": {"_count": 1}}, "shields": {"_count": 1, "and": {"_count": 1}}, "countryside": {"_count": 1, "parceled": {"_count": 1}}, "roads": {"_count": 1, "and": {"_count": 1}}, "Aberforths": {"_count": 1, "face": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "age": {"_count": 1, "wish": {"_count": 1}}, "firstyears": {"_count": 1, "to": {"_count": 1}}, "yeah": {"_count": 1, "said": {"_count": 1}}, "stone": {"_count": 1, "and": {"_count": 1}}, "Petunias": {"_count": 1, "head": {"_count": 1}}, "Slytherin": {"_count": 1, "": {"_count": 1}}}, "garden": {"_count": 101, "fences": {"_count": 1, "spying": {"_count": 1}}, "wall": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "": {"_count": 24, ".": {"_count": 21}, "!": {"_count": 2}, "?": {"_count": 1}}, "and": {"_count": 8, "into": {"_count": 1}, "back": {"_count": 1}, "up": {"_count": 1}, "saw": {"_count": 1}, "Percy": {"_count": 1}, "helping": {"_count": 1}, "the": {"_count": 2}}, "anyway": {"_count": 1, "you": {"_count": 1}}, "bench": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "hedge": {"_count": 2, "that": {"_count": 1}, "She": {"_count": 1}}, "for": {"_count": 2, "me": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "when": {"_count": 4, "I": {"_count": 1}, "he": {"_count": 1}, "Ive": {"_count": 1}, "Ginny": {"_count": 1}}, "was": {"_count": 1, "large": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "gnomes": {"_count": 1, "too": {"_count": 1}}, "sheds": {"_count": 1, "": {"_count": 1}}, "hose": {"_count": 1, "its": {"_count": 1}}, "to": {"_count": 3, "admire": {"_count": 1}, "its": {"_count": 1}, "say": {"_count": 1}}, "where": {"_count": 3, "she": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "path": {"_count": 6, "": {"_count": 4}, "Harry": {"_count": 1}, "Slughorn": {"_count": 1}}, "rat": {"_count": 1, "like": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "large": {"_count": 1}}, "brandishing": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "bottlebrush": {"_count": 1, "tail": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "attached": {"_count": 1, "complete": {"_count": 1}}, "fence": {"_count": 2, "looking": {"_count": 1}, "and": {"_count": 1}}, "winked": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "were": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "dizzying": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "gate": {"_count": 1, "swung": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "gnome": {"_count": 1, "that": {"_count": 1}}, "Scrimgeour": {"_count": 1, "limping": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "staring": {"_count": 1, "out": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 2}}, "toward": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "Mr": {"_count": 1, "Lovegood": {"_count": 1}}, "pond": {"_count": 1, "or": {"_count": 1}}, "between": {"_count": 1, "bushes": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "fences": {"_count": 1, "spying": {"_count": 1, "on": {"_count": 1}}}, "spying": {"_count": 12, "on": {"_count": 7, "the": {"_count": 3}, "him": {"_count": 2}, "Dumbledore": {"_count": 1}, "us": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "on": {"_count": 6828, "the": {"_count": 2257, "neighbors": {"_count": 1}, "dull": {"_count": 1}, "cheek": {"_count": 11}, "corner": {"_count": 7}, "edge": {"_count": 37}, "steering": {"_count": 2}, "ninth": {"_count": 1}, "evening": {"_count": 2}, "news": {"_count": 5}, "subject": {"_count": 15}, "wall": {"_count": 58}, "far": {"_count": 3}, "next": {"_count": 3}, "whole": {"_count": 7}, "pavement": {"_count": 2}, "streets": {"_count": 1}, "very": {"_count": 7}, "shoulder": {"_count": 25}, "road": {"_count": 2}, "arm": {"_count": 11}, "doorstep": {"_count": 4}, "step": {"_count": 2}, "letter": {"_count": 4}, "front": {"_count": 25}, "same": {"_count": 12}, "Dursleys": {"_count": 4}, "night": {"_count": 37}, "mantelpiece": {"_count": 7}, "door": {"_count": 43}, "stove": {"_count": 4}, "nose": {"_count": 7}, "table": {"_count": 43}, "way": {"_count": 29}, "roof": {"_count": 4}, "chimney": {"_count": 1}, "glass": {"_count": 5}, "concrete": {"_count": 1}, "other": {"_count": 99}, "doormat": {"_count": 4}, "Isle": {"_count": 1}, "point": {"_count": 10}, "head": {"_count": 6}, "bed": {"_count": 20}, "back": {"_count": 90}, "outskirts": {"_count": 4}, "windowsill": {"_count": 12}, "motheaten": {"_count": 1}, "rock": {"_count": 5}, "floor": {"_count": 147}, "empty": {"_count": 3}, "sofa": {"_count": 8}, "telephone": {"_count": 1}, "end": {"_count": 10}, "spot": {"_count": 55}, "job": {"_count": 1}, "collapsed": {"_count": 1}, "window": {"_count": 14}, "side": {"_count": 11}, "train": {"_count": 35}, "Underground": {"_count": 3}, "school": {"_count": 4}, "spindly": {"_count": 1}, "piece": {"_count": 2}, "left": {"_count": 8}, "platform": {"_count": 8}, "castle": {"_count": 5}, "hat": {"_count": 6}, "stool": {"_count": 6}, "right": {"_count": 17}, "grounds": {"_count": 19}, "righthand": {"_count": 3}, "wrong": {"_count": 4}, "third": {"_count": 13}, "first": {"_count": 16}, "collar": {"_count": 2}, "open": {"_count": 1}, "House": {"_count": 3}, "ground": {"_count": 102}, "opposite": {"_count": 7}, "grass": {"_count": 14}, "blackboard": {"_count": 5}, "team": {"_count": 12}, "doors": {"_count": 3}, "sleeve": {"_count": 1}, "seventh": {"_count": 6}, "Quidditch": {"_count": 10}, "desktop": {"_count": 1}, "golden": {"_count": 1}, "trolls": {"_count": 1}, "truth": {"_count": 2}, "shelf": {"_count": 4}, "dark": {"_count": 5}, "leg": {"_count": 2}, "fallen": {"_count": 2}, "path": {"_count": 2}, "roots": {"_count": 1}, "scar": {"_count": 1}, "stone": {"_count": 7}, "flute": {"_count": 1}, "Invisibility": {"_count": 2}, "white": {"_count": 1}, "keys": {"_count": 1}, "mirror": {"_count": 1}, "sheet": {"_count": 1}, "rest": {"_count": 1}, "garden": {"_count": 3}, "flower": {"_count": 1}, "newspaper": {"_count": 1}, "kitchen": {"_count": 6}, "hall": {"_count": 2}, "unlocked": {"_count": 1}, "dashboard": {"_count": 3}, "house": {"_count": 5}, "pipes": {"_count": 1}, "draining": {"_count": 1}, "counter": {"_count": 4}, "marble": {"_count": 3}, "sole": {"_count": 1}, "stairs": {"_count": 8}, "accelerator": {"_count": 2}, "sweeping": {"_count": 1}, "cliff": {"_count": 1}, "damp": {"_count": 2}, "Defense": {"_count": 1}, "office": {"_count": 4}, "lopsided": {"_count": 1}, "bench": {"_count": 5}, "Mandrakes": {"_count": 2}, "desk": {"_count": 15}, "Sorting": {"_count": 3}, "cover": {"_count": 4}, "ear": {"_count": 1}, "field": {"_count": 5}, "Slytherin": {"_count": 4}, "Gryffindor": {"_count": 9}, "walls": {"_count": 21}, "ceiling": {"_count": 8}, "scene": {"_count": 5}, "polished": {"_count": 1}, "legend": {"_count": 1}, "International": {"_count": 1}, "note": {"_count": 2}, "fastest": {"_count": 1}, "cold": {"_count": 4}, "Snitch": {"_count": 3}, "pillowcase": {"_count": 1}, "toilet": {"_count": 3}, "Polyjuice": {"_count": 2}, "loose": {"_count": 7}, "Hogwarts": {"_count": 13}, "stonecold": {"_count": 1}, "spare": {"_count": 1}, "uptake": {"_count": 3}, "paper": {"_count": 3}, "page": {"_count": 4}, "hospital": {"_count": 2}, "spiders": {"_count": 1}, "oak": {"_count": 1}, "floodlit": {"_count": 1}, "friends": {"_count": 1}, "tank": {"_count": 1}, "wet": {"_count": 3}, "smooth": {"_count": 3}, "trail": {"_count": 1}, "landing": {"_count": 4}, "shoulders": {"_count": 1}, "cupboard": {"_count": 1}, "sheets": {"_count": 3}, "luminous": {"_count": 1}, "sill": {"_count": 2}, "brown": {"_count": 1}, "chart": {"_count": 1}, "screen": {"_count": 1}, "television": {"_count": 3}, "boring": {"_count": 1}, "tail": {"_count": 1}, "inside": {"_count": 8}, "brake": {"_count": 1}, "Muggle": {"_count": 3}, "Knight": {"_count": 6}, "brakes": {"_count": 1}, "silver": {"_count": 1}, "run": {"_count": 14}, "last": {"_count": 7}, "care": {"_count": 1}, "hoods": {"_count": 1}, "bedside": {"_count": 7}, "threshold": {"_count": 5}, "tiny": {"_count": 1}, "long": {"_count": 1}, "tablecloth": {"_count": 1}, "top": {"_count": 16}, "chestnut": {"_count": 1}, "verge": {"_count": 8}, "teachers": {"_count": 2}, "balls": {"_count": 5}, "thing": {"_count": 1}, "battered": {"_count": 1}, "sixteenth": {"_count": 1}, "form": {"_count": 1}, "fourth": {"_count": 6}, "second": {"_count": 13}, "ways": {"_count": 1}, "broom": {"_count": 3}, "points": {"_count": 1}, "different": {"_count": 1}, "uneven": {"_count": 1}, "map": {"_count": 5}, "lookout": {"_count": 5}, "moment": {"_count": 1}, "face": {"_count": 2}, "Firebolt": {"_count": 2}, "outcome": {"_count": 2}, "speck": {"_count": 1}, "wrist": {"_count": 1}, "fence": {"_count": 1}, "weather": {"_count": 2}, "sides": {"_count": 3}, "fireplace": {"_count": 1}, "students": {"_count": 2}, "crowd": {"_count": 1}, "pretense": {"_count": 2}, "tallest": {"_count": 1}, "Black": {"_count": 1}, "spiral": {"_count": 1}, "ladder": {"_count": 1}, "parchment": {"_count": 8}, "chest": {"_count": 2}, "trunk": {"_count": 3}, "Marauders": {"_count": 4}, "wand": {"_count": 2}, "register": {"_count": 1}, "list": {"_count": 5}, "tree": {"_count": 1}, "joke": {"_count": 2}, "struggling": {"_count": 1}, "low": {"_count": 2}, "pillow": {"_count": 1}, "Fat": {"_count": 1}, "sixth": {"_count": 2}, "rope": {"_count": 2}, "cloak": {"_count": 2}, "dry": {"_count": 1}, "bank": {"_count": 5}, "soft": {"_count": 1}, "lefthand": {"_count": 6}, "battlements": {"_count": 1}, "day": {"_count": 8}, "Riddles": {"_count": 1}, "watch": {"_count": 5}, "walking": {"_count": 1}, "rotting": {"_count": 1}, "lamp": {"_count": 1}, "birthday": {"_count": 1}, "boards": {"_count": 1}, "horizon": {"_count": 1}, "mismatched": {"_count": 1}, "giant": {"_count": 2}, "still": {"_count": 1}, "Ravenclaw": {"_count": 2}, "match": {"_count": 2}, "contrary": {"_count": 17}, "warpath": {"_count": 1}, "chair": {"_count": 2}, "game": {"_count": 1}, "tripledecker": {"_count": 1}, "march": {"_count": 1}, "rug": {"_count": 1}, "twins": {"_count": 1}, "Dark": {"_count": 4}, "inch": {"_count": 1}, "lot": {"_count": 1}, "stoneflagged": {"_count": 1}, "droppingstrewn": {"_count": 1}, "goblin": {"_count": 1}, "morning": {"_count": 8}, "Triwizard": {"_count": 1}, "panel": {"_count": 2}, "rampage": {"_count": 1}, "carriage": {"_count": 1}, "surface": {"_count": 4}, "turbulent": {"_count": 1}, "soles": {"_count": 1}, "arrangements": {"_count": 1}, "eyes": {"_count": 1}, "goblet": {"_count": 2}, "hem": {"_count": 3}, "dungeon": {"_count": 3}, "tournament": {"_count": 2}, "22nd": {"_count": 1}, "pretext": {"_count": 2}, "chains": {"_count": 1}, "chain": {"_count": 1}, "count": {"_count": 3}, "dragons": {"_count": 2}, "Daily": {"_count": 4}, "forehead": {"_count": 3}, "following": {"_count": 2}, "champions": {"_count": 1}, "lake": {"_count": 2}, "flagged": {"_count": 2}, "old": {"_count": 3}, "ruff": {"_count": 1}, "frayed": {"_count": 1}, "girl": {"_count": 1}, "glittering": {"_count": 1}, "marketing": {"_count": 1}, "fifth": {"_count": 3}, "picture": {"_count": 1}, "staircase": {"_count": 2}, "bottommost": {"_count": 2}, "twenty": {"_count": 1}, "eggs": {"_count": 1}, "twentyfourth": {"_count": 1}, "topmost": {"_count": 2}, "cave": {"_count": 2}, "chicken": {"_count": 1}, "rocky": {"_count": 2}, "forest": {"_count": 2}, "desks": {"_count": 1}, "mysterious": {"_count": 1}, "Stunning": {"_count": 1}, "hearth": {"_count": 1}, "benches": {"_count": 1}, "arms": {"_count": 2}, "highest": {"_count": 1}, "jury": {"_count": 1}, "thought": {"_count": 1}, "hedge": {"_count": 1}, "cup": {"_count": 1}, "egg": {"_count": 1}, "hillside": {"_count": 1}, "alert": {"_count": 2}, "yew": {"_count": 1}, "overgrown": {"_count": 1}, "two": {"_count": 2}, "Moody": {"_count": 1}, "hour": {"_count": 1}, "pajamas": {"_count": 1}, "word": {"_count": 3}, "socalled": {"_count": 1}, "wooden": {"_count": 2}, "journey": {"_count": 3}, "statue": {"_count": 1}, "jar": {"_count": 1}, "hot": {"_count": 2}, "drought": {"_count": 1}, "street": {"_count": 2}, "swing": {"_count": 1}, "boys": {"_count": 1}, "case": {"_count": 1}, "alley": {"_count": 1}, "stair": {"_count": 1}, "hosepipe": {"_count": 1}, "twelfth": {"_count": 2}, "return": {"_count": 1}, "light": {"_count": 1}, "broomstick": {"_count": 1}, "exact": {"_count": 1}, "Firebolts": {"_count": 1}, "family": {"_count": 1}, "hearing": {"_count": 1}, "Ministry": {"_count": 3}, "problem": {"_count": 1}, "Wizengamot": {"_count": 1}, "receiving": {"_count": 1}, "sprays": {"_count": 1}, "bag": {"_count": 1}, "elf": {"_count": 1}, "visitor": {"_count": 1}, "eve": {"_count": 1}, "nearest": {"_count": 3}, "surrounding": {"_count": 3}, "judges": {"_count": 1}, "evidence": {"_count": 1}, "Extendable": {"_count": 2}, "bottom": {"_count": 2}, "black": {"_count": 2}, "dusty": {"_count": 1}, "plant": {"_count": 1}, "article": {"_count": 1}, "extensive": {"_count": 1}, "He": {"_count": 1}, "notice": {"_count": 3}, "owls": {"_count": 1}, "bandwagon": {"_count": 1}, "properties": {"_count": 1}, "message": {"_count": 1}, "tables": {"_count": 2}, "matter": {"_count": 3}, "use": {"_count": 1}, "board": {"_count": 3}, "move": {"_count": 4}, "windowpanes": {"_count": 2}, "plus": {"_count": 1}, "importance": {"_count": 1}, "proper": {"_count": 1}, "lace": {"_count": 1}, "outside": {"_count": 4}, "handle": {"_count": 1}, "Inanimatus": {"_count": 1}, "singed": {"_count": 1}, "situation": {"_count": 1}, "various": {"_count": 2}, "clipboard": {"_count": 1}, "main": {"_count": 1}, "bar": {"_count": 1}, "instrument": {"_count": 1}, "narrow": {"_count": 2}, "scroll": {"_count": 1}, "correct": {"_count": 3}, "bright": {"_count": 1}, "sodden": {"_count": 1}, "ongoing": {"_count": 1}, "weapon": {"_count": 1}, "hearthrug": {"_count": 3}, "book": {"_count": 2}, "greenhouse": {"_count": 1}, "west": {"_count": 1}, "badges": {"_count": 1}, "frozen": {"_count": 2}, "dragon": {"_count": 1}, "few": {"_count": 2}, "Polish": {"_count": 1}, "Gurg": {"_count": 1}, "valley": {"_count": 1}, "windows": {"_count": 2}, "meat": {"_count": 1}, "constant": {"_count": 1}, "Impediment": {"_count": 1}, "air": {"_count": 4}, "bridge": {"_count": 1}, "curtain": {"_count": 1}, "underground": {"_count": 2}, "doorknob": {"_count": 4}, "roads": {"_count": 1}, "others": {"_count": 1}, "quicker": {"_count": 1}, "bus": {"_count": 1}, "lawn": {"_count": 2}, "frame": {"_count": 1}, "decorations": {"_count": 1}, "ward": {"_count": 1}, "Atrium": {"_count": 1}, "line": {"_count": 1}, "closed": {"_count": 1}, "pavements": {"_count": 1}, "Prophet": {"_count": 2}, "off": {"_count": 1}, "dream": {"_count": 1}, "earthy": {"_count": 3}, "self": {"_count": 1}, "classroom": {"_count": 1}, "excuse": {"_count": 1}, "mayhem": {"_count": 1}, "plates": {"_count": 1}, "occasions": {"_count": 1}, "outermost": {"_count": 1}, "runty": {"_count": 1}, "lintel": {"_count": 1}, "thick": {"_count": 2}, "question": {"_count": 1}, "confederation": {"_count": 1}, "eyepieces": {"_count": 1}, "feet": {"_count": 1}, "Department": {"_count": 1}, "dais": {"_count": 2}, "draft": {"_count": 1}, "shelves": {"_count": 1}, "conversation": {"_count": 1}, "plinth": {"_count": 1}, "thronelike": {"_count": 1}, "tray": {"_count": 1}, "prophecy": {"_count": 2}, "reverse": {"_count": 1}, "print": {"_count": 1}, "drink": {"_count": 1}, "cobbles": {"_count": 1}, "rickety": {"_count": 1}, "Order": {"_count": 2}, "secret": {"_count": 1}, "fabled": {"_count": 1}, "topics": {"_count": 1}, "alarm": {"_count": 1}, "maroon": {"_count": 1}, "sideboard": {"_count": 1}, "ring": {"_count": 1}, "goingson": {"_count": 1}, "dresser": {"_count": 1}, "days": {"_count": 1}, "spider": {"_count": 1}, "Weasleys": {"_count": 1}, "deck": {"_count": 1}, "products": {"_count": 1}, "weight": {"_count": 1}, "go": {"_count": 1}, "spur": {"_count": 1}, "features": {"_count": 1}, "part": {"_count": 1}, "Slytherins": {"_count": 1}, "tails": {"_count": 1}, "room": {"_count": 2}, "pot": {"_count": 1}, "said": {"_count": 1}, "fourteenth": {"_count": 1}, "horse": {"_count": 1}, "popular": {"_count": 1}, "potatoes": {"_count": 1}, "wind": {"_count": 2}, "summer": {"_count": 1}, "matters": {"_count": 1}, "bell": {"_count": 1}, "ankle": {"_count": 1}, "fire": {"_count": 3}, "margins": {"_count": 1}, "Minister": {"_count": 1}, "carpet": {"_count": 1}, "Pensieve": {"_count": 1}, "shields": {"_count": 1}, "lists": {"_count": 1}, "parchments": {"_count": 1}, "idea": {"_count": 1}, "little": {"_count": 1}, "Hufflepuff": {"_count": 1}, "lockets": {"_count": 1}, "best": {"_count": 2}, "Cruciatus": {"_count": 1}, "Room": {"_count": 1}, "edges": {"_count": 2}, "elbow": {"_count": 1}, "flame": {"_count": 1}, "Astronomy": {"_count": 2}, "Elixir": {"_count": 2}, "fact": {"_count": 1}, "statues": {"_count": 1}, "common": {"_count": 2}, "Princes": {"_count": 1}, "coast": {"_count": 1}, "mirrored": {"_count": 1}, "Horcrux": {"_count": 2}, "actual": {"_count": 1}, "flagstones": {"_count": 1}, "Death": {"_count": 1}, "gleaming": {"_count": 1}, "Ministers": {"_count": 1}, "jagged": {"_count": 1}, "graveled": {"_count": 1}, "thirtieth": {"_count": 1}, "bike": {"_count": 1}, "seat": {"_count": 2}, "handlebars": {"_count": 1}, "dressing": {"_count": 1}, "plan": {"_count": 1}, "impulse": {"_count": 1}, "thirty": {"_count": 1}, "camp": {"_count": 1}, "firstfloor": {"_count": 1}, "crabapple": {"_count": 1}, "sword": {"_count": 1}, "wedding": {"_count": 1}, "witches": {"_count": 1}, "dance": {"_count": 1}, "mess": {"_count": 1}, "drawing": {"_count": 1}, "cushions": {"_count": 1}, "meaning": {"_count": 1}, "toy": {"_count": 1}, "island": {"_count": 3}, "thrashing": {"_count": 1}, "square": {"_count": 1}, "official": {"_count": 1}, "Cloak": {"_count": 1}, "real": {"_count": 1}, "workers": {"_count": 1}, "courtroom": {"_count": 1}, "mattress": {"_count": 1}, "pursuit": {"_count": 1}, "unknown": {"_count": 1}, "Horcruxes": {"_count": 1}, "locket": {"_count": 1}, "canvas": {"_count": 1}, "leafstrewn": {"_count": 1}, "tent": {"_count": 2}, "one": {"_count": 1}, "riverbank": {"_count": 1}, "occasion": {"_count": 2}, "south": {"_count": 1}, "tombstone": {"_count": 1}, "headstone": {"_count": 2}, "ice": {"_count": 1}, "gate": {"_count": 1}, "sign": {"_count": 1}, "snowy": {"_count": 1}, "filthy": {"_count": 1}, "trees": {"_count": 1}, "ruffled": {"_count": 1}, "flat": {"_count": 1}, "radio": {"_count": 2}, "Burrow": {"_count": 1}, "unforgettable": {"_count": 1}, "banks": {"_count": 1}, "grave": {"_count": 2}, "cool": {"_count": 1}, "mend": {"_count": 1}, "spectacular": {"_count": 1}, "twin": {"_count": 1}, "familiar": {"_count": 1}, "crooked": {"_count": 2}, "three": {"_count": 1}, "rare": {"_count": 1}, "Leaky": {"_count": 1}, "tracks": {"_count": 1}, "swords": {"_count": 1}, "swell": {"_count": 1}, "upside": {"_count": 1}, "lenses": {"_count": 1}, "curious": {"_count": 1}, "kids": {"_count": 1}, "raised": {"_count": 1}, "mouth": {"_count": 1}, "hawthorn": {"_count": 1}, "corridor": {"_count": 1}, "broken": {"_count": 1}, "upper": {"_count": 2}, "brink": {"_count": 1}, "playground": {"_count": 1}, "blossom": {"_count": 1}, "leafy": {"_count": 1}, "defensive": {"_count": 1}, "seats": {"_count": 1}, "carpeted": {"_count": 1}, "leaping": {"_count": 1}, "glasses": {"_count": 1}, "Elder": {"_count": 1}, "chairs": {"_count": 1}, "momentary": {"_count": 1}}, "young": {"_count": 1, "people": {"_count": 1}}, "a": {"_count": 267, "huddle": {"_count": 1}, "brick": {"_count": 1}, "cold": {"_count": 2}, "carousel": {"_count": 1}, "level": {"_count": 3}, "bus": {"_count": 2}, "shelf": {"_count": 5}, "stack": {"_count": 1}, "footstool": {"_count": 1}, "stool": {"_count": 3}, "faded": {"_count": 1}, "hinge": {"_count": 1}, "Friday": {"_count": 1}, "pile": {"_count": 3}, "broomstick": {"_count": 8}, "nighttime": {"_count": 2}, "trapdoor": {"_count": 1}, "toilet": {"_count": 1}, "fullgrown": {"_count": 1}, "toasting": {"_count": 1}, "silver": {"_count": 1}, "bucket": {"_count": 1}, "day": {"_count": 1}, "high": {"_count": 3}, "foul": {"_count": 1}, "bed": {"_count": 1}, "delivery": {"_count": 1}, "Hogwarts": {"_count": 1}, "cushion": {"_count": 1}, "magnificent": {"_count": 1}, "stone": {"_count": 3}, "shrill": {"_count": 1}, "spurt": {"_count": 1}, "table": {"_count": 7}, "raised": {"_count": 1}, "dark": {"_count": 2}, "burst": {"_count": 1}, "corner": {"_count": 2}, "groan": {"_count": 1}, "golden": {"_count": 1}, "Burning": {"_count": 1}, "list": {"_count": 1}, "few": {"_count": 4}, "plate": {"_count": 1}, "point": {"_count": 1}, "diet": {"_count": 2}, "summer": {"_count": 1}, "pair": {"_count": 2}, "small": {"_count": 4}, "brave": {"_count": 1}, "boggart": {"_count": 1}, "Quidditch": {"_count": 1}, "tiny": {"_count": 2}, "picture": {"_count": 1}, "student": {"_count": 1}, "handkerchief": {"_count": 1}, "green": {"_count": 1}, "raw": {"_count": 1}, "single": {"_count": 1}, "dementor": {"_count": 1}, "dusty": {"_count": 1}, "huge": {"_count": 2}, "wooden": {"_count": 1}, "bit": {"_count": 4}, "hill": {"_count": 1}, "fine": {"_count": 2}, "sudden": {"_count": 1}, "hearth": {"_count": 1}, "beach": {"_count": 1}, "footlong": {"_count": 1}, "bright": {"_count": 1}, "weeklong": {"_count": 1}, "hedgehog": {"_count": 1}, "top": {"_count": 1}, "patch": {"_count": 3}, "normal": {"_count": 1}, "tray": {"_count": 2}, "minor": {"_count": 1}, "map": {"_count": 1}, "large": {"_count": 3}, "trapeze": {"_count": 1}, "fellow": {"_count": 2}, "troubled": {"_count": 1}, "camp": {"_count": 1}, "skrewt": {"_count": 1}, "crate": {"_count": 1}, "horizon": {"_count": 1}, "low": {"_count": 1}, "cream": {"_count": 1}, "chocolate": {"_count": 1}, "Hungarian": {"_count": 1}, "weekend": {"_count": 1}, "goat": {"_count": 1}, "rock": {"_count": 1}, "page": {"_count": 1}, "worthier": {"_count": 1}, "hillside": {"_count": 1}, "bench": {"_count": 2}, "wasp": {"_count": 1}, "plinth": {"_count": 1}, "ring": {"_count": 1}, "story": {"_count": 1}, "coat": {"_count": 1}, "broom": {"_count": 3}, "rickety": {"_count": 2}, "plaque": {"_count": 1}, "yawn": {"_count": 1}, "spindlelegged": {"_count": 1}, "similar": {"_count": 1}, "long": {"_count": 3}, "chair": {"_count": 3}, "happier": {"_count": 1}, "Cleansweep": {"_count": 1}, "landing": {"_count": 1}, "Saturday": {"_count": 2}, "iob": {"_count": 1}, "moldy": {"_count": 1}, "mere": {"_count": 1}, "clipboard": {"_count": 1}, "wild": {"_count": 1}, "new": {"_count": 2}, "flight": {"_count": 1}, "message": {"_count": 1}, "wide": {"_count": 1}, "secret": {"_count": 1}, "train": {"_count": 1}, "broad": {"_count": 1}, "safe": {"_count": 1}, "stick": {"_count": 1}, "roll": {"_count": 2}, "truly": {"_count": 1}, "summers": {"_count": 1}, "place": {"_count": 1}, "protruding": {"_count": 1}, "bare": {"_count": 1}, "little": {"_count": 2}, "good": {"_count": 1}, "column": {"_count": 1}, "bramble": {"_count": 1}, "human": {"_count": 1}, "stump": {"_count": 1}, "desk": {"_count": 2}, "cackle": {"_count": 1}, "walking": {"_count": 1}, "glorious": {"_count": 1}, "night": {"_count": 3}, "piece": {"_count": 1}, "number": {"_count": 1}, "nearby": {"_count": 1}, "closely": {"_count": 1}, "box": {"_count": 1}, "visit": {"_count": 1}, "grimy": {"_count": 1}, "defenseless": {"_count": 1}, "gray": {"_count": 1}, "moment": {"_count": 2}, "first": {"_count": 1}, "very": {"_count": 2}, "trip": {"_count": 1}, "snowy": {"_count": 1}, "short": {"_count": 1}, "door": {"_count": 1}, "cup": {"_count": 1}, "tight": {"_count": 1}, "thestral": {"_count": 1}, "sofa": {"_count": 1}, "plan": {"_count": 1}, "poxy": {"_count": 1}, "discarded": {"_count": 1}, "seventeenyearold": {"_count": 1}, "sister": {"_count": 1}, "toy": {"_count": 1}, "hook": {"_count": 1}, "trail": {"_count": 1}, "Muggle": {"_count": 1}, "bookcase": {"_count": 1}, "forest": {"_count": 1}, "windowsill": {"_count": 1}, "riverbank": {"_count": 1}, "windswept": {"_count": 1}, "stomach": {"_count": 1}, "wall": {"_count": 1}, "pencillike": {"_count": 1}, "sweatshirt": {"_count": 1}, "jumper": {"_count": 1}, "final": {"_count": 1}, "spot": {"_count": 1}, "lit": {"_count": 1}, "minute": {"_count": 1}, "cliff": {"_count": 1}, "promise": {"_count": 1}, "distant": {"_count": 1}, "wobblelegged": {"_count": 1}, "dragon": {"_count": 1}, "cupboard": {"_count": 1}, "fragile": {"_count": 1}, "hilltop": {"_count": 1}, "lonely": {"_count": 1}}, "and": {"_count": 48, "a": {"_count": 1}, "I": {"_count": 3}, "on": {"_count": 6}, "get": {"_count": 1}, "they": {"_count": 1}, "neither": {"_count": 2}, "the": {"_count": 1}, "push": {"_count": 1}, "keep": {"_count": 1}, "ran": {"_count": 1}, "picking": {"_count": 1}, "his": {"_count": 2}, "sat": {"_count": 2}, "reveal": {"_count": 1}, "well": {"_count": 1}, "off": {"_count": 7}, "stopped": {"_count": 1}, "when": {"_count": 2}, "bitten": {"_count": 1}, "wait": {"_count": 1}, "raised": {"_count": 1}, "gave": {"_count": 1}, "we": {"_count": 1}, "do": {"_count": 1}, "Harry": {"_count": 1}, "let": {"_count": 1}, "then": {"_count": 1}, "set": {"_count": 1}, "now": {"_count": 1}, "knew": {"_count": 1}, "for": {"_count": 1}}, "drills": {"_count": 3, "": {"_count": 1}, "that": {"_count": 2}}, "his": {"_count": 651, "way": {"_count": 9}, "garden": {"_count": 1}, "jacket": {"_count": 1}, "heel": {"_count": 8}, "forehead": {"_count": 32}, "thick": {"_count": 1}, "racing": {"_count": 1}, "first": {"_count": 3}, "stomach": {"_count": 5}, "newspapers": {"_count": 1}, "computer": {"_count": 1}, "fat": {"_count": 2}, "side": {"_count": 10}, "huge": {"_count": 1}, "bed": {"_count": 19}, "jeans": {"_count": 3}, "face": {"_count": 82}, "cart": {"_count": 1}, "foot": {"_count": 4}, "nosie": {"_count": 1}, "chest": {"_count": 11}, "nose": {"_count": 4}, "card": {"_count": 1}, "porridge": {"_count": 1}, "broomstick": {"_count": 3}, "cold": {"_count": 1}, "lessons": {"_count": 1}, "sausages": {"_count": 1}, "bucking": {"_count": 1}, "bathrobe": {"_count": 1}, "knee": {"_count": 1}, "own": {"_count": 18}, "Quidditch": {"_count": 1}, "broom": {"_count": 5}, "shoulder": {"_count": 20}, "Nimbus": {"_count": 2}, "fingers": {"_count": 4}, "time": {"_count": 1}, "exam": {"_count": 1}, "wrist": {"_count": 2}, "sleeve": {"_count": 8}, "wavy": {"_count": 1}, "knees": {"_count": 9}, "head": {"_count": 8}, "mind": {"_count": 7}, "cloak": {"_count": 2}, "desk": {"_count": 12}, "pajamas": {"_count": 7}, "long": {"_count": 1}, "wide": {"_count": 1}, "rain": {"_count": 1}, "pillows": {"_count": 6}, "plate": {"_count": 4}, "fourposter": {"_count": 3}, "scarlet": {"_count": 2}, "moleskin": {"_count": 1}, "hand": {"_count": 4}, "ugly": {"_count": 1}, "feet": {"_count": 22}, "bedside": {"_count": 11}, "hands": {"_count": 4}, "porky": {"_count": 1}, "car": {"_count": 1}, "cheek": {"_count": 3}, "food": {"_count": 1}, "wand": {"_count": 3}, "feather": {"_count": 1}, "guard": {"_count": 1}, "photo": {"_count": 1}, "case": {"_count": 1}, "robes": {"_count": 8}, "beard": {"_count": 1}, "napkin": {"_count": 1}, "metal": {"_count": 1}, "deathbed": {"_count": 1}, "bandy": {"_count": 1}, "mothers": {"_count": 2}, "glasses": {"_count": 4}, "young": {"_count": 1}, "back": {"_count": 29}, "antidementor": {"_count": 1}, "tail": {"_count": 2}, "lap": {"_count": 3}, "other": {"_count": 4}, "broken": {"_count": 1}, "good": {"_count": 1}, "bandaged": {"_count": 1}, "walking": {"_count": 4}, "scar": {"_count": 2}, "eleventh": {"_count": 2}, "best": {"_count": 1}, "watch": {"_count": 3}, "sweater": {"_count": 1}, "hat": {"_count": 1}, "Omnioculars": {"_count": 2}, "whistle": {"_count": 3}, "terms": {"_count": 1}, "bloody": {"_count": 1}, "splayed": {"_count": 1}, "cut": {"_count": 1}, "camp": {"_count": 2}, "toast": {"_count": 1}, "partially": {"_count": 2}, "neck": {"_count": 2}, "every": {"_count": 1}, "righthand": {"_count": 1}, "son": {"_count": 1}, "arm": {"_count": 7}, "chair": {"_count": 1}, "staff": {"_count": 3}, "toes": {"_count": 2}, "Invisibility": {"_count": 2}, "orders": {"_count": 3}, "stupid": {"_count": 1}, "behalf": {"_count": 3}, "Firebolt": {"_count": 2}, "front": {"_count": 2}, "second": {"_count": 1}, "legs": {"_count": 1}, "ginger": {"_count": 1}, "inner": {"_count": 1}, "golden": {"_count": 1}, "splendid": {"_count": 1}, "right": {"_count": 5}, "left": {"_count": 4}, "torn": {"_count": 1}, "small": {"_count": 1}, "lips": {"_count": 3}, "idea": {"_count": 1}, "raised": {"_count": 1}, "godfather": {"_count": 1}, "eyes": {"_count": 1}, "throat": {"_count": 2}, "bedroom": {"_count": 2}, "days": {"_count": 1}, "maroon": {"_count": 1}, "spray": {"_count": 1}, "heels": {"_count": 4}, "parchment": {"_count": 2}, "very": {"_count": 2}, "folded": {"_count": 1}, "trainers": {"_count": 1}, "struggling": {"_count": 1}, "socks": {"_count": 1}, "sunken": {"_count": 1}, "conversation": {"_count": 1}, "coin": {"_count": 1}, "whiteblond": {"_count": 1}, "elbow": {"_count": 1}, "belly": {"_count": 1}, "dressing": {"_count": 1}, "perch": {"_count": 3}, "butterbeer": {"_count": 3}, "reappearance": {"_count": 1}, "rear": {"_count": 1}, "pillow": {"_count": 2}, "smoldering": {"_count": 1}, "journey": {"_count": 1}, "book": {"_count": 1}, "fathers": {"_count": 1}, "shoulders": {"_count": 3}, "level": {"_count": 1}, "boulderish": {"_count": 1}, "chart": {"_count": 2}, "wandering": {"_count": 1}, "godfathers": {"_count": 1}, "forearms": {"_count": 1}, "fourteenth": {"_count": 1}, "crooked": {"_count": 1}, "jar": {"_count": 1}, "cauldron": {"_count": 1}, "old": {"_count": 1}, "shiny": {"_count": 1}, "uninjured": {"_count": 1}, "backside": {"_count": 1}, "bit": {"_count": 1}, "fork": {"_count": 1}, "theory": {"_count": 1}, "waistcoat": {"_count": 2}, "throbbing": {"_count": 1}, "trainer": {"_count": 1}, "middle": {"_count": 1}, "table": {"_count": 1}, "Clapham": {"_count": 1}, "fifth": {"_count": 1}, "apron": {"_count": 1}, "trip": {"_count": 1}, "Keepers": {"_count": 1}, "crown": {"_count": 1}, "richly": {"_count": 1}, "new": {"_count": 1}, "palm": {"_count": 1}, "dragon": {"_count": 1}, "hoop": {"_count": 1}, "bedpost": {"_count": 1}, "because": {"_count": 1}, "walk": {"_count": 1}, "great": {"_count": 1}, "arms": {"_count": 1}, "finger": {"_count": 1}, "Horcruxes": {"_count": 1}, "door": {"_count": 1}, "stick": {"_count": 1}, "immediate": {"_count": 1}, "personal": {"_count": 1}, "uncle": {"_count": 1}, "cushions": {"_count": 1}, "mission": {"_count": 1}, "thigh": {"_count": 1}, "pallid": {"_count": 1}, "thin": {"_count": 1}, "job": {"_count": 1}, "heart": {"_count": 1}, "parents": {"_count": 1}, "crumbling": {"_count": 1}, "retinas": {"_count": 1}, "rucksack": {"_count": 1}, "grave": {"_count": 1}, "decision": {"_count": 1}, "skin": {"_count": 1}, "burned": {"_count": 1}, "cuff": {"_count": 1}, "safe": {"_count": 1}, "father": {"_count": 1}, "ruff": {"_count": 1}, "knuckles": {"_count": 1}, "seventeenth": {"_count": 1}, "Voldemort": {"_count": 1}}, "he": {"_count": 26, "yawned": {"_count": 1}, "said": {"_count": 8}, "snatched": {"_count": 1}, "felt": {"_count": 1}, "added": {"_count": 1}, "was": {"_count": 1}, "told": {"_count": 1}, "knew": {"_count": 1}, "cant": {"_count": 1}, "needs": {"_count": 2}, "explained": {"_count": 1}, "panted": {"_count": 1}, "heard": {"_count": 2}, "urged": {"_count": 1}, "smiled": {"_count": 1}, "might": {"_count": 1}, "must": {"_count": 1}}, "Privet": {"_count": 9, "Drive": {"_count": 9}}, "my": {"_count": 57, "way": {"_count": 2}, "ticket": {"_count": 1}, "birthday": {"_count": 2}, "own": {"_count": 14}, "side": {"_count": 3}, "travels": {"_count": 1}, "expertise": {"_count": 1}, "cousin": {"_count": 1}, "robes": {"_count": 2}, "command": {"_count": 1}, "doorstep": {"_count": 1}, "bed": {"_count": 2}, "last": {"_count": 1}, "whistle": {"_count": 4}, "mind": {"_count": 1}, "master": {"_count": 1}, "Invisibility": {"_count": 1}, "son": {"_count": 1}, "backside": {"_count": 1}, "head": {"_count": 1}, "knees": {"_count": 1}, "floor": {"_count": 1}, "chair": {"_count": 1}, "broom": {"_count": 1}, "life": {"_count": 1}, "dear": {"_count": 1}, "hands": {"_count": 1}, "account": {"_count": 2}, "interview": {"_count": 1}, "orders": {"_count": 1}, "wall": {"_count": 1}, "feet": {"_count": 1}, "rucksack": {"_count": 1}, "list": {"_count": 1}}, "": {"_count": 306, ".": {"_count": 194}, "!": {"_count": 49}, "?": {"_count": 63}}, "their": {"_count": 117, "news": {"_count": 1}, "favorite": {"_count": 1}, "right": {"_count": 1}, "way": {"_count": 19}, "long": {"_count": 1}, "faces": {"_count": 20}, "pajamas": {"_count": 1}, "very": {"_count": 2}, "stools": {"_count": 1}, "bathrobes": {"_count": 1}, "foreheads": {"_count": 1}, "coats": {"_count": 1}, "schedule": {"_count": 1}, "scarlet": {"_count": 1}, "own": {"_count": 4}, "eyeballs": {"_count": 1}, "brilliant": {"_count": 1}, "daughter": {"_count": 1}, "decent": {"_count": 1}, "front": {"_count": 2}, "elbows": {"_count": 1}, "team": {"_count": 1}, "flags": {"_count": 1}, "Chaser": {"_count": 1}, "backs": {"_count": 1}, "brooms": {"_count": 2}, "bellies": {"_count": 1}, "predictions": {"_count": 1}, "extraordinary": {"_count": 1}, "cloaks": {"_count": 3}, "arms": {"_count": 1}, "stomach": {"_count": 1}, "feet": {"_count": 5}, "outstretched": {"_count": 1}, "green": {"_count": 1}, "last": {"_count": 3}, "hats": {"_count": 1}, "side": {"_count": 2}, "meetings": {"_count": 1}, "guard": {"_count": 1}, "heads": {"_count": 2}, "snails": {"_count": 1}, "essays": {"_count": 1}, "robes": {"_count": 1}, "chests": {"_count": 2}, "doorstep": {"_count": 1}, "sleeves": {"_count": 1}, "bench": {"_count": 1}, "bows": {"_count": 1}, "linked": {"_count": 1}, "skulls": {"_count": 1}, "gloves": {"_count": 1}, "protective": {"_count": 1}, "breakfast": {"_count": 1}, "conversation": {"_count": 1}, "annual": {"_count": 1}, "spindlelegged": {"_count": 1}, "house": {"_count": 1}, "conversations": {"_count": 1}, "dusty": {"_count": 1}, "strained": {"_count": 1}, "visit": {"_count": 1}, "third": {"_count": 1}}, "is": {"_count": 3, "that": {"_count": 1}, "to": {"_count": 1}, "getting": {"_count": 1}}, "yourself": {"_count": 6, "Hagrid": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 3}, "she": {"_count": 1}}, "not": {"_count": 2, "knowing": {"_count": 1}, "tripping": {"_count": 1}}, "I": {"_count": 19, "want": {"_count": 2}, "think": {"_count": 2}, "shall": {"_count": 2}, "cant": {"_count": 2}, "need": {"_count": 1}, "gave": {"_count": 1}, "havent": {"_count": 1}, "mean": {"_count": 1}, "was": {"_count": 1}, "personally": {"_count": 1}, "dont": {"_count": 1}, "am": {"_count": 2}, "have": {"_count": 1}, "still": {"_count": 1}}, "Duddys": {"_count": 1, "birthday": {"_count": 1}}, "began": {"_count": 1, "wolfing": {"_count": 1}}, "Dudleys": {"_count": 5, "birthday": {"_count": 1}, "computer": {"_count": 2}, "face": {"_count": 1}, "forehead": {"_count": 1}}, "television": {"_count": 3, "for": {"_count": 1}, "": {"_count": 2}}, "top": {"_count": 111, "Uncle": {"_count": 1}, "of": {"_count": 102}, "like": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 3}, "o": {"_count": 1}, "was": {"_count": 1}}, "This": {"_count": 2, "specimen": {"_count": 1}, "is": {"_count": 1}}, "Harry": {"_count": 90, "": {"_count": 30}, "and": {"_count": 7}, "in": {"_count": 1}, "like": {"_count": 2}, "I": {"_count": 4}, "who": {"_count": 1}, "higher": {"_count": 1}, "looked": {"_count": 1}, "he": {"_count": 3}, "with": {"_count": 1}, "Yeah": {"_count": 1}, "said": {"_count": 3}, "was": {"_count": 2}, "because": {"_count": 1}, "were": {"_count": 1}, "Potter": {"_count": 1}, "how": {"_count": 1}, "well": {"_count": 1}, "she": {"_count": 2}, "hissed": {"_count": 1}, "open": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}, "for": {"_count": 2}, "what": {"_count": 1}, "since": {"_count": 1}, "his": {"_count": 1}, "havent": {"_count": 1}, "take": {"_count": 1}, "Ill": {"_count": 1}, "to": {"_count": 1}, "so": {"_count": 1}, "shouting": {"_count": 1}, "Let": {"_count": 1}, "however": {"_count": 1}, "thisll": {"_count": 1}, "but": {"_count": 1}, "Rita": {"_count": 1}, "checked": {"_count": 1}, "whispered": {"_count": 1}, "could": {"_count": 1}, "added": {"_count": 1}}, "her": {"_count": 181, "crutches": {"_count": 1}, "head": {"_count": 3}, "knocking": {"_count": 1}, "silver": {"_count": 1}, "seat": {"_count": 1}, "mind": {"_count": 2}, "": {"_count": 9}, "square": {"_count": 1}, "massive": {"_count": 1}, "hips": {"_count": 2}, "clothes": {"_count": 1}, "chin": {"_count": 3}, "cheeks": {"_count": 3}, "face": {"_count": 35}, "sleeve": {"_count": 5}, "enormous": {"_count": 1}, "long": {"_count": 1}, "desk": {"_count": 4}, "heel": {"_count": 5}, "too": {"_count": 1}, "broom": {"_count": 1}, "table": {"_count": 1}, "holidays": {"_count": 1}, "gleaming": {"_count": 1}, "tea": {"_count": 1}, "words": {"_count": 1}, "perch": {"_count": 1}, "thick": {"_count": 1}, "hinges": {"_count": 1}, "knee": {"_count": 3}, "hoping": {"_count": 1}, "feet": {"_count": 5}, "glum": {"_count": 1}, "stool": {"_count": 1}, "or": {"_count": 1}, "hand": {"_count": 1}, "plate": {"_count": 2}, "knees": {"_count": 2}, "to": {"_count": 1}, "tail": {"_count": 1}, "husband": {"_count": 1}, "apron": {"_count": 1}, "shoulder": {"_count": 3}, "own": {"_count": 6}, "woolly": {"_count": 1}, "nose": {"_count": 3}, "arm": {"_count": 1}, "lap": {"_count": 1}, "clipboard": {"_count": 15}, "instead": {"_count": 1}, "bag": {"_count": 1}, "cushion": {"_count": 1}, "chair": {"_count": 1}, "hat": {"_count": 3}, "tray": {"_count": 1}, "twoinch": {"_count": 1}, "cocktail": {"_count": 1}, "trunk": {"_count": 2}, "back": {"_count": 2}, "side": {"_count": 1}, "reentrance": {"_count": 1}, "palm": {"_count": 1}, "Slytherin": {"_count": 1}, "first": {"_count": 1}, "doorstep": {"_count": 1}, "though": {"_count": 1}, "cheekbones": {"_count": 1}, "way": {"_count": 2}, "essay": {"_count": 1}, "pencil": {"_count": 1}, "knitting": {"_count": 1}, "there": {"_count": 1}, "beautiful": {"_count": 1}, "then": {"_count": 1}, "large": {"_count": 1}, "hands": {"_count": 1}, "bunk": {"_count": 1}, "in": {"_count": 1}, "forearm": {"_count": 1}, "torn": {"_count": 1}, "command": {"_count": 1}, "cheek": {"_count": 1}, "and": {"_count": 1}, "mothers": {"_count": 1}}, "it": {"_count": 136, "": {"_count": 49}, "at": {"_count": 2}, "in": {"_count": 4}, "without": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 2}, "that": {"_count": 2}, "hes": {"_count": 1}, "and": {"_count": 5}, "saying": {"_count": 2}, "but": {"_count": 1}, "every": {"_count": 1}, "went": {"_count": 2}, "apart": {"_count": 1}, "waiting": {"_count": 1}, "he": {"_count": 2}, "which": {"_count": 1}, "these": {"_count": 1}, "to": {"_count": 2}, "said": {"_count": 2}, "running": {"_count": 1}, "for": {"_count": 4}, "now": {"_count": 1}, "all": {"_count": 4}, "into": {"_count": 1}, "like": {"_count": 1}, "itll": {"_count": 1}, "very": {"_count": 1}, "yeah": {"_count": 1}, "Harry": {"_count": 3}, "had": {"_count": 2}, "they": {"_count": 1}, "was": {"_count": 2}, "nor": {"_count": 1}, "when": {"_count": 1}, "seeing": {"_count": 1}, "Ron": {"_count": 1}, "properly": {"_count": 1}, "on": {"_count": 1}, "bu": {"_count": 1}, "or": {"_count": 1}, "cant": {"_count": 1}, "trying": {"_count": 2}, "from": {"_count": 1}, "warming": {"_count": 1}, "Yes": {"_count": 1}, "standing": {"_count": 1}, "we": {"_count": 1}, "happily": {"_count": 1}, "deduced": {"_count": 1}, "so": {"_count": 1}, "after": {"_count": 1}, "though": {"_count": 2}, "ready": {"_count": 1}, "seemed": {"_count": 1}, "quick": {"_count": 1}, "isnt": {"_count": 1}, "anyone": {"_count": 1}, "two": {"_count": 1}, "before": {"_count": 1}, "I": {"_count": 1}}, "purpose": {"_count": 15, "kicked": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 2}, "trying": {"_count": 1}, "but": {"_count": 2}, "said": {"_count": 1}, "shifted": {"_count": 1}, "did": {"_count": 1}, "it": {"_count": 1}}, "any": {"_count": 6, "of": {"_count": 3}, "kind": {"_count": 1}, "subject": {"_count": 1}, "joke": {"_count": 1}}, "something": {"_count": 6, "big": {"_count": 1}, "soft": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "neither": {"_count": 1}, "furtive": {"_count": 1}}, "upstairs": {"_count": 2, "and": {"_count": 1}, "Ron": {"_count": 1}}, "earth": {"_count": 47, "wants": {"_count": 2}, "Quidditch": {"_count": 1}, "was": {"_count": 10}, "would": {"_count": 4}, "have": {"_count": 1}, "were": {"_count": 3}, "that": {"_count": 1}, "did": {"_count": 5}, "dyou": {"_count": 1}, "he": {"_count": 3}, "": {"_count": 1}, "this": {"_count": 1}, "are": {"_count": 2}, "does": {"_count": 1}, "hadnt": {"_count": 1}, "had": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "didnt": {"_count": 1}, "could": {"_count": 1}, "makes": {"_count": 1}, "is": {"_count": 1}, "yet": {"_count": 1}, "should": {"_count": 1}}, "Sundays": {"_count": 1, "he": {"_count": 1}}, "toast": {"_count": 3, "for": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "Dudley": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "September": {"_count": 5, "1": {"_count": 1}, "first": {"_count": 3}, "the": {"_count": 1}}, "Halloween": {"_count": 4, "ten": {"_count": 1}, "": {"_count": 2}, "like": {"_count": 1}}, "yer": {"_count": 6, "forehead": {"_count": 1}, "list": {"_count": 1}, "ticket": {"_count": 1}, "own": {"_count": 2}, "dragonhide": {"_count": 1}}, "you": {"_count": 57, "an": {"_count": 1}, "": {"_count": 13}, "now": {"_count": 1}, "for": {"_count": 2}, "long": {"_count": 1}, "know": {"_count": 2}, "again": {"_count": 1}, "dont": {"_count": 1}, "three": {"_count": 1}, "isnt": {"_count": 1}, "so": {"_count": 1}, "will": {"_count": 1}, "My": {"_count": 1}, "while": {"_count": 1}, "Potter": {"_count": 2}, "and": {"_count": 2}, "mate": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}, "havent": {"_count": 1}, "Harry": {"_count": 3}, "Well": {"_count": 1}, "can": {"_count": 2}, "whatsoever": {"_count": 1}, "of": {"_count": 2}, "Phineas": {"_count": 1}, "cant": {"_count": 1}, "lot": {"_count": 1}, "later": {"_count": 1}, "said": {"_count": 2}, "if": {"_count": 1}, "as": {"_count": 1}, "she": {"_count": 1}, "do": {"_count": 1}, "anyway": {"_count": 1}, "Riddle": {"_count": 1}}, "in": {"_count": 28, "Harrys": {"_count": 1}, "the": {"_count": 11}, "his": {"_count": 2}, "Hagrids": {"_count": 3}, "there": {"_count": 1}, "years": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}, "silence": {"_count": 1}, "you": {"_count": 1}, "school": {"_count": 1}, "my": {"_count": 1}, "an": {"_count": 1}, "Harry": {"_count": 1}, "every": {"_count": 1}}, "Dumbledores": {"_count": 11, "orders": {"_count": 9}, "right": {"_count": 1}, "tomb": {"_count": 1}}, "that": {"_count": 47, "night": {"_count": 1}, "secret": {"_count": 1}, "cat": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 3}, "one": {"_count": 2}, "map": {"_count": 1}, "flyin": {"_count": 1}, "date": {"_count": 1}, "detention": {"_count": 1}, "Dumblydorr": {"_count": 1}, "we": {"_count": 1}, "egg": {"_count": 1}, "too": {"_count": 1}, "firelegs": {"_count": 1}, "must": {"_count": 1}, "occasion": {"_count": 5}, "clipboard": {"_count": 1}, "piece": {"_count": 1}, "sort": {"_count": 1}, "stretch": {"_count": 1}, "particular": {"_count": 1}, "leaflet": {"_count": 1}, "bruisell": {"_count": 1}, "compartment": {"_count": 1}, "very": {"_count": 1}, "enigmatic": {"_count": 1}, "necklace": {"_count": 1}, "the": {"_count": 2}, "Draco": {"_count": 1}, "tower": {"_count": 1}, "score": {"_count": 1}, "bite": {"_count": 1}, "hill": {"_count": 1}, "old": {"_count": 1}, "stone": {"_count": 1}, "list": {"_count": 1}, "ring": {"_count": 1}, "summers": {"_count": 1}}, "dunno": {"_count": 1, "what": {"_count": 1}}, "him": {"_count": 83, "": {"_count": 32}, "again": {"_count": 2}, "because": {"_count": 1}, "a": {"_count": 1}, "Alicia": {"_count": 1}, "seized": {"_count": 1}, "where": {"_count": 2}, "and": {"_count": 6}, "next": {"_count": 1}, "which": {"_count": 1}, "Sirius": {"_count": 1}, "try": {"_count": 1}, "if": {"_count": 1}, "halfway": {"_count": 1}, "stuffing": {"_count": 1}, "from": {"_count": 4}, "or": {"_count": 1}, "too": {"_count": 2}, "it": {"_count": 1}, "Whats": {"_count": 1}, "like": {"_count": 1}, "turning": {"_count": 1}, "to": {"_count": 1}, "months": {"_count": 1}, "its": {"_count": 1}, "beside": {"_count": 1}, "at": {"_count": 1}, "wands": {"_count": 1}, "he": {"_count": 1}, "nobody": {"_count": 1}, "when": {"_count": 2}, "no": {"_count": 1}, "now": {"_count": 1}, "getting": {"_count": 1}, "theyd": {"_count": 1}, "wouldnt": {"_count": 1}, "that": {"_count": 1}, "It": {"_count": 1}, "in": {"_count": 1}, "being": {"_count": 1}}, "them": {"_count": 41, "Harry": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 11}, "but": {"_count": 1}, "from": {"_count": 2}, "all": {"_count": 2}, "so": {"_count": 1}, "kissing": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 2}, "as": {"_count": 1}, "its": {"_count": 1}, "to": {"_count": 1}, "came": {"_count": 1}, "gasped": {"_count": 1}, "another": {"_count": 1}, "you": {"_count": 1}, "again": {"_count": 1}, "a": {"_count": 1}, "too": {"_count": 1}, "theyll": {"_count": 1}, "and": {"_count": 1}, "salamanders": {"_count": 1}, "said": {"_count": 1}, "perhaps": {"_count": 1}, "I": {"_count": 1}, "are": {"_count": 1}}, "as": {"_count": 9, "gamekeeper": {"_count": 2}, "best": {"_count": 1}, "tight": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}, "though": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "savaging": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 25, "": {"_count": 9}, "try": {"_count": 1}, "Mr": {"_count": 1}, "hurried": {"_count": 1}, "said": {"_count": 5}, "Potter": {"_count": 1}, "lets": {"_count": 1}, "who": {"_count": 1}, "Dumbledore": {"_count": 1}, "well": {"_count": 1}, "girl": {"_count": 1}, "open": {"_count": 1}, "just": {"_count": 1}}, "summat": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 31, "side": {"_count": 6}, "table": {"_count": 1}, "of": {"_count": 14}, "high": {"_count": 1}, "player": {"_count": 1}, "and": {"_count": 1}, "leg": {"_count": 2}, "o": {"_count": 1}, "foot": {"_count": 1}, "condition": {"_count": 1}, "what": {"_count": 1}, "wall": {"_count": 1}}, "Hogwarts": {"_count": 2, "business": {"_count": 1}, "again": {"_count": 1}}, "Harrys": {"_count": 87, "shoulder": {"_count": 9}, "forehead": {"_count": 13}, "lap": {"_count": 1}, "knee": {"_count": 3}, "face": {"_count": 19}, "other": {"_count": 2}, "window": {"_count": 1}, "head": {"_count": 2}, "ankles": {"_count": 1}, "scalp": {"_count": 1}, "arm": {"_count": 4}, "sock": {"_count": 1}, "bed": {"_count": 3}, "": {"_count": 1}, "bedside": {"_count": 1}, "mind": {"_count": 1}, "birthday": {"_count": 1}, "chest": {"_count": 3}, "thoughts": {"_count": 1}, "conscience": {"_count": 1}, "eyes": {"_count": 1}, "and": {"_count": 1}, "jeans": {"_count": 1}, "shoulders": {"_count": 1}, "right": {"_count": 2}, "potions": {"_count": 1}, "left": {"_count": 1}, "windpipe": {"_count": 1}, "love": {"_count": 1}, "back": {"_count": 1}, "fingers": {"_count": 1}, "than": {"_count": 1}, "helping": {"_count": 1}, "neck": {"_count": 1}, "count": {"_count": 1}, "ears": {"_count": 1}, "robes": {"_count": 1}}, "vampires": {"_count": 1, "mmyself": {"_count": 1}}, "lots": {"_count": 1, "ter": {"_count": 1}}, "high": {"_count": 3, "stools": {"_count": 2}, "": {"_count": 1}}, "back": {"_count": 4, "in": {"_count": 1}, "under": {"_count": 1}, "tofront": {"_count": 1}, "up": {"_count": 1}}, "broomsticks": {"_count": 6, "and": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 2}, "throwing": {"_count": 1}, "were": {"_count": 1}}, "some": {"_count": 13, "of": {"_count": 5}, "sort": {"_count": 1}, "work": {"_count": 1}, "gold": {"_count": 1}, "people": {"_count": 1}, "homework": {"_count": 1}, "trumpedup": {"_count": 1}, "future": {"_count": 1}, "surface": {"_count": 1}}, "to": {"_count": 34, "wait": {"_count": 1}, "the": {"_count": 8}, "a": {"_count": 1}, "her": {"_count": 2}, "his": {"_count": 4}, "me": {"_count": 4}, "each": {"_count": 2}, "kappas": {"_count": 1}, "greater": {"_count": 1}, "them": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "my": {"_count": 1}, "become": {"_count": 1}, "bigger": {"_count": 2}, "N": {"_count": 1}, "Rons": {"_count": 1}, "one": {"_count": 1}}, "its": {"_count": 50, "own": {"_count": 5}, "face": {"_count": 1}, "feet": {"_count": 2}, "paws": {"_count": 1}, "head": {"_count": 1}, "cushion": {"_count": 1}, "my": {"_count": 1}, "point": {"_count": 2}, "covers": {"_count": 1}, "saucer": {"_count": 1}, "plinth": {"_count": 1}, "hinges": {"_count": 1}, "rug": {"_count": 1}, "back": {"_count": 6}, "long": {"_count": 1}, "arms": {"_count": 1}, "front": {"_count": 2}, "fleshy": {"_count": 1}, "hind": {"_count": 3}, "tip": {"_count": 1}, "way": {"_count": 1}, "about": {"_count": 1}, "other": {"_count": 1}, "perch": {"_count": 1}, "ward": {"_count": 1}, "stand": {"_count": 1}, "dais": {"_count": 1}, "bank": {"_count": 1}, "side": {"_count": 4}, "ruff": {"_count": 1}, "container": {"_count": 1}, "shortened": {"_count": 1}, "wings": {"_count": 1}}, "go": {"_count": 2, "on": {"_count": 1}, "now": {"_count": 1}}, "try": {"_count": 1, "it": {"_count": 1}}, "plastic": {"_count": 1, "seats": {"_count": 1}}, "running": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 7, "the": {"_count": 4}, "his": {"_count": 1}, "here": {"_count": 1}, "a": {"_count": 1}}, "your": {"_count": 60, "nose": {"_count": 2}, "head": {"_count": 1}, "own": {"_count": 7}, "back": {"_count": 1}, "part": {"_count": 2}, "forehead": {"_count": 2}, "face": {"_count": 3}, "broom": {"_count": 1}, "ead": {"_count": 1}, "feet": {"_count": 1}, "grandmothers": {"_count": 1}, "happy": {"_count": 1}, "desk": {"_count": 1}, "information": {"_count": 1}, "ungrateful": {"_count": 1}, "school": {"_count": 1}, "list": {"_count": 1}, "splendid": {"_count": 1}, "potions": {"_count": 1}, "tangled": {"_count": 1}, "first": {"_count": 1}, "watch": {"_count": 1}, "side": {"_count": 5}, "conscience": {"_count": 1}, "dream": {"_count": 1}, "dinner": {"_count": 1}, "plate": {"_count": 1}, "weekend": {"_count": 1}, "dressinggown": {"_count": 1}, "date": {"_count": 1}, "Occlumency": {"_count": 1}, "way": {"_count": 1}, "reference": {"_count": 1}, "mind": {"_count": 2}, "aunt": {"_count": 1}, "guard": {"_count": 1}, "shoes": {"_count": 1}, "Invisibility": {"_count": 1}, "deathbed": {"_count": 2}, "parents": {"_count": 1}, "eyes": {"_count": 1}, "arm": {"_count": 1}, "orders": {"_count": 1}}, "You": {"_count": 2, "dont": {"_count": 1}, "Know": {"_count": 1}}, "have": {"_count": 2, "a": {"_count": 1}, "you": {"_count": 1}}, "alchemy": {"_count": 2, "with": {"_count": 2}}, "platform": {"_count": 3, "nine": {"_count": 3}}, "Rons": {"_count": 28, "lap": {"_count": 1}, "smudged": {"_count": 1}, "face": {"_count": 10}, "foot": {"_count": 2}, "top": {"_count": 1}, "head": {"_count": 1}, "shoulder": {"_count": 1}, "outstretched": {"_count": 1}, "and": {"_count": 1}, "pile": {"_count": 1}, "right": {"_count": 1}, "bed": {"_count": 2}, "goalkeeping": {"_count": 1}, "schedule": {"_count": 1}, "broom": {"_count": 1}, "bedside": {"_count": 1}, "Chudley": {"_count": 1}}, "either": {"_count": 55, "side": {"_count": 55}}, "Ive": {"_count": 3, "just": {"_count": 1}, "forgotten": {"_count": 1}, "got": {"_count": 1}}, "which": {"_count": 53, "it": {"_count": 2}, "were": {"_count": 3}, "stood": {"_count": 2}, "he": {"_count": 12}, "two": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 6}, "to": {"_count": 2}, "sat": {"_count": 1}, "they": {"_count": 6}, "she": {"_count": 3}, "Hermione": {"_count": 1}, "Malfoy": {"_count": 1}, "had": {"_count": 2}, "golden": {"_count": 1}, "a": {"_count": 2}, "Sirius": {"_count": 1}, "Marvolo": {"_count": 1}, "I": {"_count": 2}, "Harry": {"_count": 1}, "there": {"_count": 1}, "no": {"_count": 1}}, "Nevilles": {"_count": 4, "cloak": {"_count": 1}, "head": {"_count": 1}, "parents": {"_count": 1}, "face": {"_count": 1}}, "what": {"_count": 25, "you": {"_count": 2}, "promised": {"_count": 1}, "to": {"_count": 1}, "turned": {"_count": 1}, "might": {"_count": 1}, "appeared": {"_count": 1}, "wizards": {"_count": 1}, "they": {"_count": 3}, "seemed": {"_count": 2}, "he": {"_count": 5}, "we": {"_count": 1}, "Dumbledore": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}, "would": {"_count": 1}, "felt": {"_count": 1}, "now": {"_count": 1}}, "about": {"_count": 23, "wrestling": {"_count": 1}, "how": {"_count": 4}, "it": {"_count": 4}, "some": {"_count": 1}, "yesterdays": {"_count": 1}, "": {"_count": 4}, "or": {"_count": 1}, "underground": {"_count": 1}, "anything": {"_count": 1}, "Willy": {"_count": 1}, "his": {"_count": 1}, "famous": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "without": {"_count": 6, "everyone": {"_count": 1}, "me": {"_count": 2}, "that": {"_count": 1}, "wanting": {"_count": 1}, "waiting": {"_count": 1}}, "tiptoe": {"_count": 10, "to": {"_count": 4}, "slipped": {"_count": 1}, "": {"_count": 1}, "beneath": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "attempting": {"_count": 1}}, "finding": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "while": {"_count": 5, "they": {"_count": 2}, "were": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}}, "3": {"_count": 1, "1": {"_count": 1}}, "Thursday": {"_count": 12, "and": {"_count": 2}, "she": {"_count": 1}, "morning": {"_count": 2}, "evening": {"_count": 3}, "lunchtime": {"_count": 1}, "afternoon": {"_count": 1}, "": {"_count": 1}, "Defense": {"_count": 1}}, "Charlies": {"_count": 1, "old": {"_count": 1}}, "hurry": {"_count": 2, "up": {"_count": 1}, "growled": {"_count": 1}}, "boy": {"_count": 3, "its": {"_count": 1}, "go": {"_count": 1}, "": {"_count": 1}}, "dear": {"_count": 3, "": {"_count": 2}, "your": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 2}}, "but": {"_count": 5, "he": {"_count": 1}, "now": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}}, "anytime": {"_count": 1, "on": {"_count": 1}}, "Malfoys": {"_count": 6, "face": {"_count": 5}, "arm": {"_count": 1}}, "each": {"_count": 17, "side": {"_count": 3}, "team": {"_count": 3}, "arm": {"_count": 1}, "of": {"_count": 4}, "cheek": {"_count": 3}, "others": {"_count": 1}, "other": {"_count": 1}, "face": {"_count": 1}}, "for": {"_count": 16, "ages": {"_count": 1}, "dear": {"_count": 3}, "hours": {"_count": 2}, "some": {"_count": 1}, "five": {"_count": 1}, "what": {"_count": 2}, "your": {"_count": 1}, "another": {"_count": 1}, "three": {"_count": 1}, "pages": {"_count": 1}, "a": {"_count": 2}}, "substitutes": {"_count": 1, "so": {"_count": 1}}, "run": {"_count": 1, "run": {"_count": 1}}, "Hermione": {"_count": 30, "Granger": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 9}, "s": {"_count": 5}, "its": {"_count": 1}, "come": {"_count": 1}, "repeated": {"_count": 1}, "now": {"_count": 1}, "whispered": {"_count": 1}, "Ive": {"_count": 1}, "why": {"_count": 2}, "we": {"_count": 1}, "just": {"_count": 1}, "imitating": {"_count": 1}, "to": {"_count": 1}, "You": {"_count": 1}, "instead": {"_count": 1}}, "all": {"_count": 29, "three": {"_count": 1}, "fours": {"_count": 5}, "their": {"_count": 1}, "sides": {"_count": 7}, "day": {"_count": 1}, "of": {"_count": 3}, "summer": {"_count": 2}, "the": {"_count": 3}, "right": {"_count": 2}, "righ": {"_count": 1}, "concerned": {"_count": 1}, "common": {"_count": 1}, "around": {"_count": 1}}, "Snapes": {"_count": 8, "face": {"_count": 2}, "tail": {"_count": 1}, "greasy": {"_count": 1}, "Potions": {"_count": 1}, "office": {"_count": 1}, "desk": {"_count": 1}, "dementor": {"_count": 1}}, "sometimes": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 24, "Angelina": {"_count": 4}, "lets": {"_count": 1}, "round": {"_count": 1}, "no": {"_count": 1}, "Wood": {"_count": 1}, "you": {"_count": 1}, "get": {"_count": 1}, "Molly": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 5}, "Harry": {"_count": 2}, "Ron": {"_count": 1}, "Gryffindor": {"_count": 1}, "dear": {"_count": 1}, "that": {"_count": 2}}, "an": {"_count": 24, "extra": {"_count": 1}, "arm": {"_count": 1}, "old": {"_count": 1}, "escaped": {"_count": 1}, "unfamiliar": {"_count": 1}, "open": {"_count": 1}, "unpleasant": {"_count": 1}, "upturned": {"_count": 1}, "innocent": {"_count": 1}, "exchange": {"_count": 1}, "overlarge": {"_count": 1}, "even": {"_count": 1}, "apron": {"_count": 1}, "ordinary": {"_count": 2}, "expedition": {"_count": 1}, "invitation": {"_count": 1}, "unsuspecting": {"_count": 1}, "empty": {"_count": 1}, "elbow": {"_count": 1}, "awful": {"_count": 1}, "adult": {"_count": 1}, "adventure": {"_count": 1}, "expanding": {"_count": 1}}, "Deans": {"_count": 2, "side": {"_count": 1}, "other": {"_count": 1}}, "with": {"_count": 32, "only": {"_count": 1}, "it": {"_count": 6}, "without": {"_count": 1}, "Buckbeak": {"_count": 1}, "vigorous": {"_count": 1}, "Snapes": {"_count": 1}, "": {"_count": 3}, "transfiguring": {"_count": 1}, "practicing": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}, "said": {"_count": 1}, "her": {"_count": 2}, "Basics": {"_count": 1}, "at": {"_count": 1}, "you": {"_count": 2}, "a": {"_count": 1}, "more": {"_count": 1}, "what": {"_count": 1}, "Care": {"_count": 1}, "the": {"_count": 2}, "life": {"_count": 1}}, "much": {"_count": 2, "longer": {"_count": 1}, "": {"_count": 1}}, "fire": {"_count": 16, "": {"_count": 8}, "said": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "again": {"_count": 2}, "as": {"_count": 1}, "Id": {"_count": 1}, "and": {"_count": 1}}, "next": {"_count": 2, "to": {"_count": 1}, "year": {"_count": 1}}, "cheer": {"_count": 1, "up": {"_count": 1}}, "out": {"_count": 2, "": {"_count": 1}, "onto": {"_count": 1}}, "get": {"_count": 2, "it": {"_count": 1}, "on": {"_count": 1}}, "theyre": {"_count": 2, "lovely": {"_count": 1}, "waiting": {"_count": 1}}, "yours": {"_count": 1, "George": {"_count": 1}}, "Percy": {"_count": 1, "come": {"_count": 1}}, "were": {"_count": 4, "all": {"_count": 1}, "going": {"_count": 1}, "off": {"_count": 1}, "leaving": {"_count": 1}}, "two": {"_count": 3, "clawed": {"_count": 1}, "His": {"_count": 1}, "legs": {"_count": 1}}, "wohsi": {"_count": 1, "": {"_count": 1}}, "stand": {"_count": 1, "where": {"_count": 1}}, "cats": {"_count": 2, "": {"_count": 2}}, "dreams": {"_count": 1, "and": {"_count": 1}}, "giving": {"_count": 2, "me": {"_count": 1}, "him": {"_count": 1}}, "Woods": {"_count": 1, "side": {"_count": 1}}, "us": {"_count": 13, "": {"_count": 7}, "while": {"_count": 1}, "on": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 1}, "all": {"_count": 1}, "wherever": {"_count": 1}}, "Neville": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "yet": {"_count": 1}}, "Snape": {"_count": 14, "if": {"_count": 1}, "wait": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 2}, "s": {"_count": 3}, "as": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "himself": {"_count": 1}}, "Crabbe": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "Muggles": {"_count": 1, "whove": {"_count": 1}}, "earths": {"_count": 3, "Hagrid": {"_count": 1}, "a": {"_count": 1}, "she": {"_count": 1}}, "Hagrid": {"_count": 10, "you": {"_count": 1}, "anyway": {"_count": 1}, "s": {"_count": 3}, "": {"_count": 1}, "or": {"_count": 1}, "to": {"_count": 1}, "tell": {"_count": 1}, "in": {"_count": 1}}, "round": {"_count": 1, "here": {"_count": 1}}, "abou": {"_count": 2, "that": {"_count": 1}, "Harry": {"_count": 1}}, "protecting": {"_count": 1, "the": {"_count": 1}}, "em": {"_count": 2, "see": {"_count": 1}, "in": {"_count": 1}}, "Saturday": {"_count": 17, "": {"_count": 4}, "said": {"_count": 1}, "morning": {"_count": 2}, "night": {"_count": 2}, "and": {"_count": 2}, "afternoon": {"_count": 1}, "far": {"_count": 1}, "as": {"_count": 1}, "evening": {"_count": 1}, "had": {"_count": 1}, "next": {"_count": 1}}, "said": {"_count": 38, "Professor": {"_count": 1}, "Harry": {"_count": 10}, "Ron": {"_count": 10}, "Rons": {"_count": 1}, "old": {"_count": 1}, "Hermione": {"_count": 6}, "Hagrid": {"_count": 2}, "Uncle": {"_count": 2}, "Moody": {"_count": 1}, "Angelina": {"_count": 1}, "Fred": {"_count": 1}, "a": {"_count": 1}, "Neville": {"_count": 1}}, "Astronomy": {"_count": 1, "": {"_count": 1}}, "feverishly": {"_count": 1, "then": {"_count": 1}}, "Fluffy": {"_count": 1, "he": {"_count": 1}}, "here": {"_count": 15, "and": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 10}, "either": {"_count": 1}, "if": {"_count": 1}, "again": {"_count": 1}}, "by": {"_count": 9, "his": {"_count": 1}, "a": {"_count": 1}, "thinking": {"_count": 1}, "Pride": {"_count": 1}, "myself": {"_count": 1}, "daylight": {"_count": 1}, "lack": {"_count": 1}, "the": {"_count": 1}, "Peeves": {"_count": 1}}, "nettle": {"_count": 1, "wines": {"_count": 1}}, "this": {"_count": 37, "paper": {"_count": 1}, "hasnt": {"_count": 1}, "Professor": {"_count": 1}, "trip": {"_count": 1}, "wall": {"_count": 1}, "teaching": {"_count": 1}, "": {"_count": 4}, "table": {"_count": 1}, "boys": {"_count": 1}, "comfortable": {"_count": 1}, "map": {"_count": 1}, "spew": {"_count": 1}, "spot": {"_count": 1}, "matter": {"_count": 2}, "leg": {"_count": 1}, "are": {"_count": 1}, "hearing": {"_count": 1}, "floor": {"_count": 1}, "boy": {"_count": 1}, "thing": {"_count": 1}, "occasion": {"_count": 1}, "idea": {"_count": 1}, "long": {"_count": 1}, "intriguing": {"_count": 2}, "Remus": {"_count": 1}, "he": {"_count": 1}, "plan": {"_count": 1}, "meandering": {"_count": 1}, "cottage": {"_count": 1}, "point": {"_count": 1}, "very": {"_count": 1}, "way": {"_count": 1}}, "me": {"_count": 27, "": {"_count": 10}, "when": {"_count": 1}, "the": {"_count": 1}, "after": {"_count": 1}, "that": {"_count": 1}, "any": {"_count": 1}, "Professor": {"_count": 1}, "all": {"_count": 1}, "by": {"_count": 2}, "Luna": {"_count": 1}, "sir": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}, "well": {"_count": 1}, "what": {"_count": 1}, "hard": {"_count": 1}, "at": {"_count": 1}}, "these": {"_count": 7, "sweets": {"_count": 1}, "boys": {"_count": 1}, "occasions": {"_count": 2}, "absurd": {"_count": 1}, "said": {"_count": 2}}, "Madam": {"_count": 2, "Pomfrey": {"_count": 1}, "Hoochs": {"_count": 1}}, "jackets": {"_count": 2, "and": {"_count": 2}}, "again": {"_count": 6, "the": {"_count": 1}, "": {"_count": 2}, "gathering": {"_count": 1}, "and": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Mrs": {"_count": 6, "Masons": {"_count": 1}, "Weasleys": {"_count": 3}, "Norris": {"_count": 1}, "Weasley": {"_count": 1}}, "read": {"_count": 1, "it": {"_count": 1}}, "show": {"_count": 1, "in": {"_count": 1}}, "they": {"_count": 7, "storm": {"_count": 1}, "passed": {"_count": 1}, "saw": {"_count": 2}, "distinctly": {"_count": 1}, "walked": {"_count": 1}, "flew": {"_count": 1}}, "Experimental": {"_count": 3, "Charms": {"_count": 2}, "Breeding": {"_count": 1}}, "tinkering": {"_count": 1, "with": {"_count": 1}}, "Ill": {"_count": 6, "show": {"_count": 1}, "find": {"_count": 1}, "get": {"_count": 1}, "catch": {"_count": 1}, "be": {"_count": 1}, "let": {"_count": 1}}, "vacation": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "display": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "straight": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "taking": {"_count": 2, "the": {"_count": 1}, "any": {"_count": 1}}, "Dr": {"_count": 1, "": {"_count": 1}}, "Dracos": {"_count": 1, "shoulder": {"_count": 1}}, "And": {"_count": 4, "they": {"_count": 1}, "what": {"_count": 1}, "by": {"_count": 1}, "she": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Ron": {"_count": 25, "said": {"_count": 2}, "muttered": {"_count": 1}, "steered": {"_count": 1}, "clicking": {"_count": 1}, "": {"_count": 7}, "slowly": {"_count": 1}, "you": {"_count": 1}, "get": {"_count": 1}, "now": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 3}, "Hermione": {"_count": 1}, "called": {"_count": 1}, "when": {"_count": 1}, "who": {"_count": 1}, "she": {"_count": 1}}, "The": {"_count": 5, "engine": {"_count": 1}, "Medieval": {"_count": 1}, "bell": {"_count": 1}, "Principles": {"_count": 1}, "dragon": {"_count": 1}}, "wood": {"_count": 3, "they": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "exactly": {"_count": 1, "one": {"_count": 1}}, "several": {"_count": 2, "occasions": {"_count": 1}, "pillows": {"_count": 1}}, "though": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}}, "Dont": {"_count": 1, "know": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "Friday": {"_count": 13, "morning": {"_count": 3}, "the": {"_count": 2}, "": {"_count": 3}, "at": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "too": {"_count": 1}, "well": {"_count": 1}}, "grab": {"_count": 1, "your": {"_count": 1}}, "pure": {"_count": 1, "talent": {"_count": 1}}, "gettin": {"_count": 1, "kelpies": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 4, "arent": {"_count": 1}, "tell": {"_count": 1}, "be": {"_count": 1}, "jump": {"_count": 1}}, "Veronica": {"_count": 1, "Smethleys": {"_count": 1}}, "end": {"_count": 12, "the": {"_count": 1}, "": {"_count": 3}, "RiddikulusV": {"_count": 1}, "again": {"_count": 1}, "because": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 2}, "her": {"_count": 1}, "why": {"_count": 1}}, "tenterhooks": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}}, "handsome": {"_count": 1, "silver": {"_count": 1}}, "salvers": {"_count": 1, "there": {"_count": 1}}, "Professor": {"_count": 12, "Binns": {"_count": 1}, "Lupins": {"_count": 1}, "Trelawney": {"_count": 2}, "Trelawneys": {"_count": 2}, "Karkaroffs": {"_count": 1}, "McGonagalls": {"_count": 1}, "Umbridges": {"_count": 1}, "Umbridge": {"_count": 3}}, "lets": {"_count": 13, "have": {"_count": 1}, "go": {"_count": 5}, "get": {"_count": 4}, "all": {"_count": 1}, "do": {"_count": 1}, "take": {"_count": 1}}, "Myrtles": {"_count": 1, "gurgling": {"_count": 1}}, "youve": {"_count": 1, "only": {"_count": 1}}, "no": {"_count": 3, "teachers": {"_count": 1}, "account": {"_count": 2}}, "our": {"_count": 25, "brooms": {"_count": 1}, "side": {"_count": 8}, "team": {"_count": 1}, "first": {"_count": 2}, "plates": {"_count": 1}, "news": {"_count": 2}, "case": {"_count": 1}, "faults": {"_count": 1}, "members": {"_count": 1}, "wards": {"_count": 1}, "end": {"_count": 1}, "own": {"_count": 2}, "sister": {"_count": 1}, "program": {"_count": 1}, "young": {"_count": 1}}, "Oliver": {"_count": 1, "tell": {"_count": 1}}, "Dobbys": {"_count": 1, "wrist": {"_count": 1}}, "thin": {"_count": 2, "air": {"_count": 2}}, "over": {"_count": 1, "her": {"_count": 1}}, "Colin": {"_count": 2, "": {"_count": 2}}, "Sunday": {"_count": 11, "morning": {"_count": 5}, "": {"_count": 1}, "anyway": {"_count": 1}, "to": {"_count": 1}, "evening": {"_count": 2}, "but": {"_count": 1}}, "more": {"_count": 3, "important": {"_count": 1}, "calmly": {"_count": 1}, "than": {"_count": 1}}, "target": {"_count": 1, "in": {"_count": 1}}, "countless": {"_count": 1, "occasions": {"_count": 1}}, "tiptoes": {"_count": 2, "": {"_count": 1}, "past": {"_count": 1}}, "casters": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 4, "something": {"_count": 2}, "before": {"_count": 2}}, "Remember": {"_count": 1, "what": {"_count": 1}}, "spindlelegged": {"_count": 1, "tables": {"_count": 1}}, "waving": {"_count": 1, "the": {"_count": 1}}, "Justin": {"_count": 2, "and": {"_count": 2}}, "smoothly": {"_count": 1, "ignoring": {"_count": 1}}, "Hermiones": {"_count": 8, "door": {"_count": 1}, "bag": {"_count": 1}, "face": {"_count": 2}, "almost": {"_count": 1}, "shoulder": {"_count": 1}, "": {"_count": 1}, "theory": {"_count": 1}}, "chains": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "Vauxhall": {"_count": 1, "Road": {"_count": 1}}, "January": {"_count": 1, "first": {"_count": 1}}, "February": {"_count": 1, "fourteenth": {"_count": 1}}, "Malfoy": {"_count": 13, "and": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "who": {"_count": 2}, "sir": {"_count": 1}, "told": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}, "with": {"_count": 1}}, "Rubeus": {"_count": 1, "said": {"_count": 1}}, "team": {"_count": 1, "practices": {"_count": 1}}, "Muggleborns": {"_count": 1, "": {"_count": 1}}, "Hagrids": {"_count": 9, "table": {"_count": 1}, "massive": {"_count": 1}, "front": {"_count": 2}, "door": {"_count": 1}, "whiskery": {"_count": 1}, "cabin": {"_count": 1}, "face": {"_count": 1}, "other": {"_count": 1}}, "lowslung": {"_count": 1, "branches": {"_count": 1}}, "six": {"_count": 1, "immensely": {"_count": 1}}, "students": {"_count": 3, "": {"_count": 2}, "a": {"_count": 1}}, "scraps": {"_count": 1, "from": {"_count": 1}}, "tell": {"_count": 1, "us": {"_count": 1}}, "hurriedly": {"_count": 1, "treading": {"_count": 1}}, "inside": {"_count": 4, "it": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 2}}, "So": {"_count": 3, "youve": {"_count": 1}, "after": {"_count": 1}, "poor": {"_count": 1}}, "four": {"_count": 2, "Mudbloods": {"_count": 1}, "sturdy": {"_count": 1}}, "Dumbledore": {"_count": 18, "s": {"_count": 4}, "": {"_count": 3}, "an": {"_count": 1}, "for": {"_count": 2}, "and": {"_count": 4}, "to": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "anyway": {"_count": 1}}, "smiling": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "Georges": {"_count": 2, "head": {"_count": 1}, "other": {"_count": 1}}, "holiday": {"_count": 11, "in": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "summer": {"_count": 1}, "together": {"_count": 1}, "did": {"_count": 2}, "looking": {"_count": 1}}, "certain": {"_count": 1, "weekends": {"_count": 1}}, "weekends": {"_count": 4, "he": {"_count": 1}, "": {"_count": 2}, "since": {"_count": 1}}, "quickly": {"_count": 5, "I": {"_count": 1}, "hoping": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "seeing": {"_count": 1}}, "like": {"_count": 3, "that": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}}, "winking": {"_count": 1, "at": {"_count": 1}}, "No": {"_count": 1, "Vernon": {"_count": 1}}, "board": {"_count": 5, "and": {"_count": 2}, "closed": {"_count": 1}, "": {"_count": 2}}, "land": {"_count": 1, "": {"_count": 1}}, "blurted": {"_count": 1, "Harry": {"_count": 1}}, "request": {"_count": 2, "": {"_count": 2}}, "another": {"_count": 3, "book": {"_count": 1}, "boy": {"_count": 1}, "man": {"_count": 1}}, "dead": {"_count": 1, "blowflies": {"_count": 1}}, "closer": {"_count": 1, "inspection": {"_count": 1}}, "Percys": {"_count": 2, "chest": {"_count": 2}}, "treating": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "infuriating": {"_count": 1, "Percy": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "Crookshanks": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "Hermiones": {"_count": 1}}, "people": {"_count": 5, "who": {"_count": 2}, "": {"_count": 1}, "said": {"_count": 1}, "whove": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "we": {"_count": 4, "shall": {"_count": 1}, "wont": {"_count": 1}, "teach": {"_count": 1}, "dont": {"_count": 1}}, "everything": {"_count": 7, "in": {"_count": 1}, "thats": {"_count": 2}, "Sirius": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}, "boggarts": {"_count": 1, "and": {"_count": 1}}, "Monday": {"_count": 18, "": {"_count": 3}, "where": {"_count": 1}, "limp": {"_count": 1}, "will": {"_count": 1}, "morning": {"_count": 4}, "he": {"_count": 1}, "was": {"_count": 1}, "lunchtime": {"_count": 1}, "evening": {"_count": 1}, "night": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}}, "reverence": {"_count": 1, "by": {"_count": 1}}, "resuming": {"_count": 1, "his": {"_count": 1}}, "spitting": {"_count": 1, "and": {"_count": 1}}, "Lupins": {"_count": 3, "desk": {"_count": 1}, "face": {"_count": 1}, "shoulder": {"_count": 1}}, "shelves": {"_count": 4, "all": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 1}, "rising": {"_count": 1}}, "how": {"_count": 15, "fast": {"_count": 2}, "he": {"_count": 1}, "dyou": {"_count": 1}, "well": {"_count": 1}, "to": {"_count": 5}, "much": {"_count": 1}, "youre": {"_count": 1}, "best": {"_count": 2}, "the": {"_count": 1}}, "Silencel": {"_count": 1, "snarled": {"_count": 1}}, "werewolves": {"_count": 1, "from": {"_count": 1}}, "under": {"_count": 1, "here": {"_count": 1}}, "fast": {"_count": 1, "forward": {"_count": 1}}, "keeping": {"_count": 2, "Harry": {"_count": 1}, "yourself": {"_count": 1}}, "cheering": {"_count": 1, "him": {"_count": 1}}, "every": {"_count": 16, "face": {"_count": 2}, "little": {"_count": 1}, "side": {"_count": 4}, "inch": {"_count": 1}, "alternate": {"_count": 1}, "surface": {"_count": 2}, "step": {"_count": 1}, "other": {"_count": 1}, "new": {"_count": 1}, "tier": {"_count": 1}, "entrance": {"_count": 1}}, "cold": {"_count": 1, "damp": {"_count": 1}}, "using": {"_count": 1, "Black": {"_count": 1}}, "April": {"_count": 2, "20th": {"_count": 1}, "Fools": {"_count": 1}}, "lettin": {"_count": 1, "me": {"_count": 1}}, "revenge": {"_count": 1, "if": {"_count": 1}}, "squinting": {"_count": 1, "through": {"_count": 1}}, "wheels": {"_count": 1, "": {"_count": 1}}, "Christmas": {"_count": 11, "Day": {"_count": 7}, "night": {"_count": 1}, "Eve": {"_count": 1}, "morning": {"_count": 2}}, "being": {"_count": 2, "addressed": {"_count": 1}, "purebloods": {"_count": 1}}, "flying": {"_count": 3, "but": {"_count": 1}, "carpets": {"_count": 1}, "Muggle": {"_count": 1}}, "Voldemort": {"_count": 3, "himself": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "Undetectable": {"_count": 1, "Poisons": {"_count": 1}}, "Cleansweep": {"_count": 1, "Sevens": {"_count": 1}}, "Goyle": {"_count": 2, "s": {"_count": 2}}, "having": {"_count": 1, "acquired": {"_count": 1}}, "Gryffindors": {"_count": 1, "victory": {"_count": 1}}, "dressing": {"_count": 1, "gowns": {"_count": 1}}, "condition": {"_count": 1, "that": {"_count": 1}}, "entering": {"_count": 3, "Hagrids": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}}, "last": {"_count": 2, "time": {"_count": 1}, "years": {"_count": 1}}, "yeah": {"_count": 1, "I": {"_count": 1}}, "anyone": {"_count": 3, "and": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}}, "pressing": {"_count": 1, "his": {"_count": 1}}, "cue": {"_count": 1, "Ron": {"_count": 1}}, "Cheering": {"_count": 3, "Charms": {"_count": 3}}, "time": {"_count": 3, "because": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "dragons": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Angelina": {"_count": 2, "nice": {"_count": 1}, "COME": {"_count": 1}}, "Alicia": {"_count": 1, "": {"_count": 1}}, "stuff": {"_count": 1, "for": {"_count": 1}}, "Wednesday": {"_count": 8, "morning": {"_count": 2}, "I": {"_count": 1}, "and": {"_count": 2}, "evening": {"_count": 1}, "\u25a0": {"_count": 1}, "other": {"_count": 1}}, "herself": {"_count": 2, "she": {"_count": 1}, "and": {"_count": 1}}, "speaking": {"_count": 5, "terms": {"_count": 5}}, "Buckbeak": {"_count": 4, "": {"_count": 2}, "they": {"_count": 1}, "Harry": {"_count": 1}}, "Walking": {"_count": 1, "very": {"_count": 1}}, "went": {"_count": 1, "the": {"_count": 1}}, "Blacks": {"_count": 2, "wand": {"_count": 1}, "leg": {"_count": 1}}, "Lupin": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "Scabbers": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "Peter": {"_count": 2, "while": {"_count": 1}, "make": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "Remus": {"_count": 1, "snarled": {"_count": 1}}, "those": {"_count": 7, "attempting": {"_count": 1}, "brooms": {"_count": 1}, "Slytherins": {"_count": 1}, "occasions": {"_count": 1}, "Horcrux": {"_count": 1}, "nights": {"_count": 1}, "friends": {"_count": 1}}, "bended": {"_count": 1, "knee": {"_count": 1}}, "Exactly": {"_count": 1, "": {"_count": 1}}, "foot": {"_count": 3, "": {"_count": 2}, "into": {"_count": 1}}, "Buckbeaks": {"_count": 2, "rope": {"_count": 1}, "back": {"_count": 1}}, "from": {"_count": 2, "here": {"_count": 1}, "the": {"_count": 1}}, "howre": {"_count": 1, "we": {"_count": 1}}, "Sirius": {"_count": 5, "": {"_count": 5}}, "But": {"_count": 1, "no": {"_count": 1}}, "theres": {"_count": 2, "not": {"_count": 1}, "a": {"_count": 1}}, "emptying": {"_count": 1, "his": {"_count": 1}}, "Uncle": {"_count": 3, "Vernons": {"_count": 2}, "Vernon": {"_count": 1}}, "duty": {"_count": 7, "on": {"_count": 1}, "eh": {"_count": 1}, "muttered": {"_count": 1}, "until": {"_count": 1}, "tonight": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "Franks": {"_count": 1, "forehead": {"_count": 1}}, "carrot": {"_count": 1, "sticks": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "broom": {"_count": 1, "All": {"_count": 1}}, "normal": {"_count": 2, "clothes": {"_count": 1}, "people": {"_count": 1}}, "He": {"_count": 1, "approached": {"_count": 1}}, "A": {"_count": 1, "bag": {"_count": 1}}, "balance": {"_count": 1, "he": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "meals": {"_count": 1, "of": {"_count": 1}}, "cauldron": {"_count": 2, "bottoms": {"_count": 2}}, "both": {"_count": 8, "of": {"_count": 2}, "sides": {"_count": 3}, "charges": {"_count": 1}, "counts": {"_count": 1}, "cheeks": {"_count": 1}}, "thick": {"_count": 1, "black": {"_count": 1}}, "Muggle": {"_count": 2, "land": {"_count": 1}, "wounds": {"_count": 1}}, "fires": {"_count": 1, "outdoors": {"_count": 1}}, "Archie": {"_count": 1, "theres": {"_count": 1}}, "Ireland": {"_count": 1, "to": {"_count": 1}}, "helplessly": {"_count": 1, "as": {"_count": 1}}, "Krum": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "move": {"_count": 1, "Hermione": {"_count": 1}}, "Bagmans": {"_count": 1, "round": {"_count": 1}}, "fairly": {"_count": 1, "well": {"_count": 1}}, "pouring": {"_count": 1, "a": {"_count": 1}}, "deck": {"_count": 1, "": {"_count": 1}}, "ignoring": {"_count": 1, "Ron": {"_count": 1}}, "three": {"_count": 2, "on": {"_count": 1}, "Bill": {"_count": 1}}, "sticks": {"_count": 1, "": {"_count": 1}}, "home": {"_count": 1, "with": {"_count": 1}}, "spine": {"_count": 1, "of": {"_count": 1}}, "MadEye": {"_count": 1, "hes": {"_count": 1}}, "contenders": {"_count": 1, "this": {"_count": 1}}, "elf": {"_count": 1, "rights": {"_count": 1}}, "poufs": {"_count": 1, "very": {"_count": 1}}, "fortune": {"_count": 1, "telling": {"_count": 1}}, "Arnold": {"_count": 1, "Weasley": {"_count": 1}}, "dealing": {"_count": 1, "with": {"_count": 1}}, "Lavender": {"_count": 1, "": {"_count": 1}}, "everyones": {"_count": 1, "faces": {"_count": 1}}, "Lily": {"_count": 1, "Potter": {"_count": 1}}, "Longbottom": {"_count": 1, "Ive": {"_count": 1}}, "perches": {"_count": 1, "that": {"_count": 1}}, "putting": {"_count": 1, "Harry": {"_count": 1}}, "resisting": {"_count": 2, "the": {"_count": 2}}, "Summoning": {"_count": 2, "Charms": {"_count": 2}}, "alternate": {"_count": 1, "evenings": {"_count": 1}}, "at": {"_count": 8, "Hog": {"_count": 1}, "Hogwarts": {"_count": 3}, "three": {"_count": 1}, "Rons": {"_count": 1}, "school": {"_count": 1}, "least": {"_count": 1}}, "calmly": {"_count": 1, "one": {"_count": 1}}, "so": {"_count": 7, "long": {"_count": 1}, "quietly": {"_count": 1}, "enthusiastically": {"_count": 1}, "that": {"_count": 1}, "well": {"_count": 2}, "quickly": {"_count": 1}}, "November": {"_count": 1, "the": {"_count": 1}}, "Barty": {"_count": 1, "Im": {"_count": 1}}, "draping": {"_count": 1, "it": {"_count": 1}}, "whats": {"_count": 1, "happening": {"_count": 1}}, "excellent": {"_count": 1, "terms": {"_count": 1}}, "very": {"_count": 2, "well": {"_count": 2}}, "poisonous": {"_count": 1, "fungi": {"_count": 1}}, "whom": {"_count": 2, "to": {"_count": 1}, "it": {"_count": 1}}, "separate": {"_count": 1, "shots": {"_count": 1}}, "pages": {"_count": 1, "two": {"_count": 1}}, "Tuesday": {"_count": 8, "she": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "heavily": {"_count": 1}, "only": {"_count": 1}}, "please": {"_count": 1, "just": {"_count": 1}}, "someone": {"_count": 1, "which": {"_count": 1}}, "Cedric": {"_count": 2, "with": {"_count": 1}, "said": {"_count": 1}}, "POTTER": {"_count": 1, "STINKS": {"_count": 1}}, "hand": {"_count": 1, "if": {"_count": 1}}, "knew": {"_count": 1, "he": {"_count": 1}}, "learning": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "come": {"_count": 1, "and": {"_count": 1}}, "Mr": {"_count": 4, "Potter": {"_count": 1}, "Weasley": {"_count": 2}, "Bodes": {"_count": 1}}, "outside": {"_count": 4, "but": {"_count": 1}, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "where": {"_count": 1}}, "strike": {"_count": 1, "now": {"_count": 1}}, "quick": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "direct": {"_count": 1, "contact": {"_count": 1}}, "goblin": {"_count": 1, "rebellions": {"_count": 1}}, "poison": {"_count": 1, "antidotes": {"_count": 1}}, "chatting": {"_count": 1, "with": {"_count": 1}}, "developing": {"_count": 1, "something": {"_count": 1}}, "getting": {"_count": 5, "past": {"_count": 1}, "Harry": {"_count": 1}, "through": {"_count": 1}, "out": {"_count": 1}, "inside": {"_count": 1}}, "howm": {"_count": 1, "I": {"_count": 1}}, "causing": {"_count": 1, "Dobbys": {"_count": 1}}, "Dueling": {"_count": 1, "": {"_count": 1}}, "carved": {"_count": 1, "benches": {"_count": 1}}, "first": {"_count": 3, "name": {"_count": 1}, "sight": {"_count": 1}, "hearing": {"_count": 1}}, "somehow": {"_count": 1, "": {"_count": 1}}, "longer": {"_count": 1, "but": {"_count": 1}}, "Boxing": {"_count": 2, "Day": {"_count": 2}}, "easy": {"_count": 1, "does": {"_count": 1}}, "than": {"_count": 2, "I": {"_count": 2}}, "anything": {"_count": 4, "but": {"_count": 1}, "at": {"_count": 1}, "is": {"_count": 1}, "Bathilda": {"_count": 1}}, "metal": {"_count": 1, "and": {"_count": 1}}, "telling": {"_count": 1, "Sirius": {"_count": 1}}, "unicorns": {"_count": 1, "ever": {"_count": 1}}, "tha": {"_count": 1, "Horntail": {"_count": 1}}, "Saucy": {"_count": 1, "Tricks": {"_count": 1}}, "merpeople": {"_count": 1, "and": {"_count": 1}}, "famous": {"_count": 1, "witches": {"_count": 1}}, "magical": {"_count": 2, "inventions": {"_count": 1}, "creatures": {"_count": 1}}, "jump": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "staring": {"_count": 1, "around": {"_count": 1}}, "going": {"_count": 1, "so": {"_count": 1}}, "Rita": {"_count": 2, "Skeeters": {"_count": 1}, "Skeeter": {"_count": 1}}, "preventing": {"_count": 1, "Snape": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "points": {"_count": 2, "will": {"_count": 1}, "are": {"_count": 1}}, "there": {"_count": 5, "": {"_count": 2}, "the": {"_count": 1}, "was": {"_count": 1}, "as": {"_count": 1}}, "things": {"_count": 2, "but": {"_count": 1}, "Harry": {"_count": 1}}, "planetary": {"_count": 1, "divination": {"_count": 1}}, "Frank": {"_count": 1, "Longbottoms": {"_count": 1}}, "Wormtail": {"_count": 1, "and": {"_count": 1}}, "other": {"_count": 1, "occasions": {"_count": 1}}, "holding": {"_count": 1, "his": {"_count": 1}}, "continuing": {"_count": 1, "to": {"_count": 1}}, "\u2018er": {"_count": 1, "": {"_count": 1}}, "course": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "take": {"_count": 1, "it": {"_count": 1}}, "Wormtails": {"_count": 3, "weak": {"_count": 1}, "arm": {"_count": 1}, "right": {"_count": 1}}, "forcing": {"_count": 1, "that": {"_count": 1}}, "Cedrics": {"_count": 1, "wrist": {"_count": 1}}, "whose": {"_count": 1, "face": {"_count": 1}}, "summoning": {"_count": 1, "a": {"_count": 1}}, "Crouch": {"_count": 1, "and": {"_count": 1}}, "YouKnow": {"_count": 2, "Whos": {"_count": 1}, "Who": {"_count": 1}}, "private": {"_count": 1, "conversations": {"_count": 1}}, "asking": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 1}}, "doubt": {"_count": 1, "he": {"_count": 1}}, "street": {"_count": 1, "corners": {"_count": 1}}, "hardly": {"_count": 1, "aware": {"_count": 1}}, "before": {"_count": 2, "setting": {"_count": 1}, "saying": {"_count": 1}}, "Lumosl": {"_count": 1, "He": {"_count": 1}}, "pointing": {"_count": 2, "out": {"_count": 1}, "her": {"_count": 1}}, "dont": {"_count": 1, "go": {"_count": 1}}, "August": {"_count": 2, "12th": {"_count": 1}, "the": {"_count": 1}}, "son": {"_count": 2, "said": {"_count": 1}, "repeated": {"_count": 1}}, "12th": {"_count": 1, "August": {"_count": 1}}, "Stealth": {"_count": 1, "and": {"_count": 1}}, "plaques": {"_count": 1, "on": {"_count": 1}}, "recruiting": {"_count": 1, "more": {"_count": 1}}, "downstairs": {"_count": 2, "": {"_count": 2}}, "Well": {"_count": 2, "youd": {"_count": 1}, "be": {"_count": 1}}, "Ritas": {"_count": 1, "stuff": {"_count": 1}}, "hastily": {"_count": 1, "you": {"_count": 1}}, "spew": {"_count": 1, "Its": {"_count": 1}}, "defying": {"_count": 1, "the": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "doxies": {"_count": 1, "in": {"_count": 1}}, "Voldemorts": {"_count": 4, "orders": {"_count": 2}, "instructions": {"_count": 1}, "side": {"_count": 1}}, "motorcycles": {"_count": 1, "were": {"_count": 1}}, "Fudges": {"_count": 3, "left": {"_count": 2}, "right": {"_count": 1}}, "level": {"_count": 3, "nine": {"_count": 1}, "one": {"_count": 2}}, "Riddle": {"_count": 1, "and": {"_count": 1}}, "Ginny": {"_count": 3, "told": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}}, "Trevor": {"_count": 1, "into": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "ancient": {"_count": 2, "runes": {"_count": 1}, "skills": {"_count": 1}}, "friend": {"_count": 1, "And": {"_count": 1}}, "preserving": {"_count": 1, "what": {"_count": 1}}, "loudly": {"_count": 2, "is": {"_count": 1}, "before": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "giant": {"_count": 3, "wars": {"_count": 3}}, "parchment": {"_count": 2, "": {"_count": 1}, "like": {"_count": 1}}, "ourselves": {"_count": 2, "this": {"_count": 1}, "": {"_count": 1}}, "substandard": {"_count": 1, "teaching": {"_count": 1}}, "occasions": {"_count": 1, "like": {"_count": 1}}, "instead": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "Wood": {"_count": 1, "sometimes": {"_count": 1}}, "forever": {"_count": 1, "like": {"_count": 1}}, "rafters": {"_count": 1, "a": {"_count": 1}}, "feeling": {"_count": 1, "quietly": {"_count": 1}}, "homework": {"_count": 2, "as": {"_count": 1}, "again": {"_count": 1}}, "31st": {"_count": 1, "August": {"_count": 1}}, "dropping": {"_count": 1, "his": {"_count": 1}}, "SelfFertilizing": {"_count": 1, "Shrubs": {"_count": 1}}, "Katie": {"_count": 2, "": {"_count": 1}, "Bell": {"_count": 1}}, "hearing": {"_count": 1, "you": {"_count": 1}}, "becoming": {"_count": 1, "prefect": {"_count": 1}}, "weve": {"_count": 2, "got": {"_count": 2}}, "Trelawneys": {"_count": 1, "side": {"_count": 1}}, "matters": {"_count": 1, "about": {"_count": 1}}, "farfetched": {"_count": 1, "schemes": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "rough": {"_count": 1, "wooden": {"_count": 1}}, "When": {"_count": 1, "did": {"_count": 1}}, "probation": {"_count": 9, "": {"_count": 5}, "already": {"_count": 1}, "he": {"_count": 2}, "became": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "Imperviusl": {"_count": 1, "Okay": {"_count": 1}}, "straightening": {"_count": 1, "up": {"_count": 1}}, "many": {"_count": 2, "people": {"_count": 1}, "counts": {"_count": 1}}, "additional": {"_count": 1, "meetings": {"_count": 1}}, "wed": {"_count": 2, "better": {"_count": 2}}, "satisfying": {"_count": 1, "memories": {"_count": 1}}, "Gryffindor": {"_count": 1, "in": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "hold": {"_count": 1, "because": {"_count": 1}}, "almost": {"_count": 2, "daily": {"_count": 1}, "the": {"_count": 1}}, "form": {"_count": 3, "During": {"_count": 1}, "thats": {"_count": 1}, "its": {"_count": 1}}, "himself": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "Umbridge": {"_count": 3, "": {"_count": 2}, "on": {"_count": 1}}, "hed": {"_count": 1, "sent": {"_count": 1}}, "fer": {"_count": 3, "hours": {"_count": 1}, "years": {"_count": 1}, "midnight": {"_count": 1}}, "valiantly": {"_count": 1, "": {"_count": 1}}, "Cho": {"_count": 1, "": {"_count": 1}}, "pajamas": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "tables": {"_count": 1, "were": {"_count": 1}}, "nothing": {"_count": 3, "but": {"_count": 3}}, "clipboards": {"_count": 1, "like": {"_count": 1}}, "hot": {"_count": 1, "coals": {"_count": 1}}, "maybe": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "Muggle": {"_count": 1}}, "nonmagical": {"_count": 1, "wounds": {"_count": 1}}, "Gilderoys": {"_count": 1, "arm": {"_count": 1}}, "long": {"_count": 1, "green": {"_count": 1}}, "enthusiastically": {"_count": 1, "": {"_count": 1}}, "Siriuss": {"_count": 1, "face": {"_count": 1}}, "Valentines": {"_count": 2, "Day": {"_count": 2}}, "Umbridges": {"_count": 2, "most": {"_count": 1}, "door": {"_count": 1}}, "Bellatrix": {"_count": 1, "had": {"_count": 1}}, "full": {"_count": 1, "pay": {"_count": 1}}, "conversations": {"_count": 1, "with": {"_count": 1}}, "leave": {"_count": 1, "": {"_count": 1}}, "recent": {"_count": 2, "sightings": {"_count": 1}, "events": {"_count": 1}}, "fine": {"_count": 2, "next": {"_count": 1}, "": {"_count": 1}}, "Ginnys": {"_count": 1, "not": {"_count": 1}}, "feelings": {"_count": 1, "and": {"_count": 1}}, "House": {"_count": 1, "notice": {"_count": 1}}, "Partial": {"_count": 1, "Vanishment": {"_count": 1}}, "fruitless": {"_count": 1, "schemes": {"_count": 1}}, "guard": {"_count": 2, "duty": {"_count": 2}}, "Firenzes": {"_count": 2, "chest": {"_count": 1}, "message": {"_count": 1}}, "Patronuses": {"_count": 1, "which": {"_count": 1}}, "Willy": {"_count": 1, "Widdershins": {"_count": 1}}, "Dawlish": {"_count": 3, "Shacklebolt": {"_count": 1}, "the": {"_count": 1}, "believes": {"_count": 1}}, "since": {"_count": 1, "Dumbledore": {"_count": 1}}, "James": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "old": {"_count": 2, "Snivelly": {"_count": 1}, "headstones": {"_count": 1}}, "Wizard": {"_count": 1, "banking": {"_count": 1}}, "careers": {"_count": 1, "with": {"_count": 1}}, "jobs": {"_count": 1, "in": {"_count": 1}}, "talking": {"_count": 1, "a": {"_count": 1}}, "bringing": {"_count": 1, "your": {"_count": 1}}, "dates": {"_count": 1, "with": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "gazing": {"_count": 1, "down": {"_count": 1}}, "themselves": {"_count": 1, "before": {"_count": 1}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "yeh": {"_count": 1, "Harry": {"_count": 1}}, "Changs": {"_count": 1, "face": {"_count": 1}}, "till": {"_count": 1, "the": {"_count": 1}}, "question": {"_count": 1, "twentythree": {"_count": 1}}, "saying": {"_count": 1, "it": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "walking": {"_count": 1}}, "plates": {"_count": 2, "echoed": {"_count": 1}, "and": {"_count": 1}}, "calling": {"_count": 1, "loudly": {"_count": 1}}, "Grawp": {"_count": 1, "": {"_count": 1}}, "firm": {"_count": 1, "ground": {"_count": 1}}, "golden": {"_count": 1, "chains": {"_count": 1}}, "desks": {"_count": 1, "ranging": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 2}}, "around": {"_count": 3, "them": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "Im": {"_count": 1, "starving": {"_count": 1}}, "where": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "bridges": {"_count": 1, "": {"_count": 1}}, "responsible": {"_count": 1, "use": {"_count": 1}}, "student": {"_count": 1, "safety": {"_count": 1}}, "security": {"_count": 1, "questions": {"_count": 1}}, "doorsteps": {"_count": 1, "in": {"_count": 1}}, "firstname": {"_count": 1, "terms": {"_count": 1}}, "rats": {"_count": 1, "": {"_count": 1}}, "Potions": {"_count": 1, "unless": {"_count": 1}}, "everyone": {"_count": 3, "Molly": {"_count": 1}, "": {"_count": 1}, "though": {"_count": 1}}, "damn": {"_count": 1, "He": {"_count": 1}}, "stubbornly": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "two": {"_count": 1}}, "principle": {"_count": 2, "": {"_count": 1}, "see": {"_count": 1}}, "licorice": {"_count": 1, "wands": {"_count": 1}}, "nogtails": {"_count": 1, "": {"_count": 1}}, "Zabini": {"_count": 1, "": {"_count": 1}}, "landing": {"_count": 2, "then": {"_count": 1}, "clambered": {"_count": 1}}, "Tonkss": {"_count": 2, "face": {"_count": 1}, "family": {"_count": 1}}, "thereby": {"_count": 1, "gaining": {"_count": 1}}, "into": {"_count": 1, "pairs": {"_count": 1}}, "Slughorn": {"_count": 1, "s": {"_count": 1}}, "spindle": {"_count": 1, "legged": {"_count": 1}}, "Ogden": {"_count": 2, "knife": {"_count": 1}, "now": {"_count": 1}}, "ruthlessly": {"_count": 1, "Hanging": {"_count": 1}}, "UNoPoo": {"_count": 1, "but": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "suspicion": {"_count": 1, "of": {"_count": 1}}, "potions": {"_count": 1, "that": {"_count": 1}}, "hes": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "she": {"_count": 1}}, "er": {"_count": 1, "way": {"_count": 1}}, "secondhand": {"_count": 1, "but": {"_count": 1}}, "trips": {"_count": 1, "they": {"_count": 1}}, "protective": {"_count": 1, "goggles": {"_count": 1}}, "McLaggen": {"_count": 2, "because": {"_count": 1}, "next": {"_count": 1}}, "Seamuss": {"_count": 1, "head": {"_count": 1}}, "handing": {"_count": 1, "Ron": {"_count": 1}}, "Harper": {"_count": 1, "who": {"_count": 1}}, "goal": {"_count": 1, "its": {"_count": 1}}, "Peakes": {"_count": 1, "and": {"_count": 1}}, "Everlasting": {"_count": 1, "Elixirs": {"_count": 1}}, "why": {"_count": 1, "not": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "would": {"_count": 1, "I": {"_count": 1}}, "password": {"_count": 1, "": {"_count": 1}}, "Borgins": {"_count": 1, "progress": {"_count": 1}}, "unless": {"_count": 1, "theres": {"_count": 1}}, "witch": {"_count": 1, "and": {"_count": 1}}, "harder": {"_count": 1, "or": {"_count": 1}}, "antidotes": {"_count": 1, "": {"_count": 1}}, "Apparition": {"_count": 1, "was": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "Peevsie": {"_count": 1, "hell": {"_count": 1}}, "strategy": {"_count": 1, "you": {"_count": 1}}, "punctuated": {"_count": 1, "only": {"_count": 1}}, "best": {"_count": 1, "terms": {"_count": 1}}, "Hepzibahs": {"_count": 1, "face": {"_count": 1}}, "reading": {"_count": 1, "this": {"_count": 1}}, "dementors": {"_count": 1, "using": {"_count": 1}}, "doing": {"_count": 1, "it": {"_count": 1}}, "branches": {"_count": 1, "an": {"_count": 1}}, "bandages": {"_count": 1, "an": {"_count": 1}}, "Horcruxes": {"_count": 2, "Tom": {"_count": 1}, "in": {"_count": 1}}, "together": {"_count": 1, "very": {"_count": 1}}, "Do": {"_count": 1, "you": {"_count": 1}}, "whether": {"_count": 1, "it": {"_count": 1}}, "unfeeling": {"_count": 1, "their": {"_count": 1}}, "highheeled": {"_count": 2, "fluffy": {"_count": 1}, "boots": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "werent": {"_count": 1, "there": {"_count": 1}}, "Draco": {"_count": 1, "do": {"_count": 1}}, "after": {"_count": 2, "Snape": {"_count": 1}, "weve": {"_count": 1}}, "Bills": {"_count": 1, "pillow": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "even": {"_count": 1, "after": {"_count": 1}}, "remorselessly": {"_count": 1, "": {"_count": 1}}, "chairs": {"_count": 1, "sat": {"_count": 1}}, "glasses": {"_count": 2, "stuffing": {"_count": 1}, "": {"_count": 1}}, "tying": {"_count": 1, "up": {"_count": 1}}, "brooms": {"_count": 1, "soaring": {"_count": 1}}, "tight": {"_count": 3, "": {"_count": 1}, "then": {"_count": 1}, "to": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "Look": {"_count": 1, "if": {"_count": 1}}, "matching": {"_count": 1, "socks": {"_count": 1}}, "compliments": {"_count": 1, "when": {"_count": 1}}, "Dark": {"_count": 2, "artifacts": {"_count": 1}, "stuff": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "Mum": {"_count": 1, "until": {"_count": 1}}, "five": {"_count": 1, "seats": {"_count": 1}}, "Gernumbli": {"_count": 1, "magic": {"_count": 1}}, "still": {"_count": 1, "addressing": {"_count": 1}}, "lunged": {"_count": 1, "across": {"_count": 1}}, "itself": {"_count": 1, "making": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "Reguluss": {"_count": 1, "door": {"_count": 1}}, "Tottenham": {"_count": 1, "Court": {"_count": 1}}, "indifference": {"_count": 1, "": {"_count": 1}}, "Mad": {"_count": 1, "Eye": {"_count": 1}}, "bitterly": {"_count": 1, "drawing": {"_count": 1}}, "addressing": {"_count": 1, "Hermione": {"_count": 1}}, "chance": {"_count": 1, "": {"_count": 1}}, "ornately": {"_count": 1, "carved": {"_count": 1}}, "Krums": {"_count": 1, "chin": {"_count": 1}}, "hard": {"_count": 1, "wooden": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "elfish": {"_count": 1, "Apparition": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridges": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "too": {"_count": 1, "long": {"_count": 1}}, "scoffed": {"_count": 1, "Ron": {"_count": 1}}, "mulches": {"_count": 1, "of": {"_count": 1}}, "She": {"_count": 1, "said": {"_count": 1}}, "saucers": {"_count": 1, "around": {"_count": 1}}, "stacks": {"_count": 1, "of": {"_count": 1}}, "side": {"_count": 1, "tables": {"_count": 1}}, "Gregorovitchs": {"_count": 1, "windowsill": {"_count": 1}}, "stout": {"_count": 1, "Bathildas": {"_count": 1}}, "transspecies": {"_count": 1, "transformation": {"_count": 1}}, "Ariana": {"_count": 1, "calling": {"_count": 1}}, "Gellert": {"_count": 1, "Your": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "Ignotus": {"_count": 1, "s": {"_count": 1}}, "discussing": {"_count": 1, "seemed": {"_count": 1}}, "journeying": {"_count": 1, "to": {"_count": 1}}, "Potterwatch": {"_count": 2, "On": {"_count": 1}, "": {"_count": 1}}, "ere": {"_count": 1, "Greyback": {"_count": 1}}, "Ollivander": {"_count": 1, "now": {"_count": 1}}, "lumps": {"_count": 1, "of": {"_count": 1}}, "Gringotts": {"_count": 1, "felt": {"_count": 1}}, "Charing": {"_count": 1, "Cross": {"_count": 1}}, "anvils": {"_count": 1, "": {"_count": 1}}, "warning": {"_count": 1, "Snape": {"_count": 1}}, "keep": {"_count": 1, "quiet": {"_count": 1}}, "doxy": {"_count": 1, "eggs": {"_count": 1}}, "scarlet": {"_count": 1, "the": {"_count": 1}}, "blue": {"_count": 1, "": {"_count": 1}}, "Alecto": {"_count": 1, "sprawled": {"_count": 1}}, "Luna": {"_count": 1, "Dean": {"_count": 1}}, "pillars": {"_count": 1, "at": {"_count": 1}}, "My": {"_count": 1, "mother": {"_count": 1}}, "clawed": {"_count": 1, "feet": {"_count": 1}}, "horses": {"_count": 1, "their": {"_count": 1}}, "think": {"_count": 1, "of": {"_count": 1}}, "hips": {"_count": 1, "": {"_count": 1}}, "Severus": {"_count": 1, "lets": {"_count": 1}}, "trembling": {"_count": 1, "legs": {"_count": 1}}, "Mulciber": {"_count": 1, "and": {"_count": 1}}, "Quirrell": {"_count": 1, "wont": {"_count": 1}}, "Fleurs": {"_count": 1, "and": {"_count": 1}}, "frozen": {"_count": 1, "steel": {"_count": 1}}, "mere": {"_count": 1, "minutes": {"_count": 1}}, "They": {"_count": 1, "were": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "others": {"_count": 1, "to": {"_count": 1}}, "skill": {"_count": 1, "alone": {"_count": 1}}, "broomstick": {"_count": 1, "regulations": {"_count": 1}}}, "neighbors": {"_count": 28, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "would": {"_count": 3, "say": {"_count": 2}, "think": {"_count": 1}}, "dog": {"_count": 1, "in": {"_count": 1}}, "simply": {"_count": 1, "refused": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "heard": {"_count": 1, "bangs": {"_count": 1}}, "painting": {"_count": 1, "when": {"_count": 1}}, "who": {"_count": 3, "were": {"_count": 1}, "cheated": {"_count": 1}, "knew": {"_count": 1}}, "had": {"_count": 1, "disappeared": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 1, "talk": {"_count": 1}}, "and": {"_count": 3, "pointed": {"_count": 1}, "Harry": {"_count": 1}, "yet": {"_count": 1}}, "ears": {"_count": 1, "": {"_count": 1}}, "paper": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "spot": {"_count": 1}}, "lawn": {"_count": 1, "mower": {"_count": 1}}, "she": {"_count": 1, "soon": {"_count": 1}}, "often": {"_count": 1, "without": {"_count": 1}}}, "The": {"_count": 3900, "Dursley": {"_count": 2, "s": {"_count": 1}, "family": {"_count": 1}}, "Dursleys": {"_count": 35, "had": {"_count": 7}, "shuddered": {"_count": 1}, "knew": {"_count": 1}, "got": {"_count": 1}, "often": {"_count": 1}, "bought": {"_count": 1}, "house": {"_count": 1}, "ducked": {"_count": 1}, "were": {"_count": 4}, "couldnt": {"_count": 3}, "hadnt": {"_count": 1}, "wouldnt": {"_count": 1}, "liked": {"_count": 1}, "havent": {"_count": 1}, "didnt": {"_count": 1}, "rounded": {"_count": 1}, "fell": {"_count": 1}, "really": {"_count": 1}, "goggled": {"_count": 1}, "appeared": {"_count": 1}, "would": {"_count": 1}, "after": {"_count": 1}, "did": {"_count": 1}, "who": {"_count": 1}}, "nerve": {"_count": 1, "of": {"_count": 1}}, "traffic": {"_count": 1, "moved": {"_count": 1}}, "Potters": {"_count": 3, "thats": {"_count": 1}, "knew": {"_count": 1}, "smiled": {"_count": 1}}, "cat": {"_count": 2, "didnt": {"_count": 1}, "was": {"_count": 1}}, "newscaster": {"_count": 1, "allowed": {"_count": 1}}, "cats": {"_count": 2, "tail": {"_count": 1}, "ginger": {"_count": 1}}, "nearest": {"_count": 5, "street": {"_count": 1}, "dementor": {"_count": 1}, "thing": {"_count": 1}, "streetlamp": {"_count": 1}, "one": {"_count": 1}}, "owls": {"_count": 5, "are": {"_count": 1}, "sat": {"_count": 1}, "circled": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}}, "rumor": {"_count": 3, "is": {"_count": 2}, "flew": {"_count": 1}}, "sun": {"_count": 20, "rose": {"_count": 2}, "shone": {"_count": 1}, "blazed": {"_count": 1}, "had": {"_count": 5}, "was": {"_count": 10}, "slipped": {"_count": 1}}, "room": {"_count": 36, "held": {"_count": 1}, "went": {"_count": 4}, "gradually": {"_count": 1}, "was": {"_count": 18}, "at": {"_count": 1}, "as": {"_count": 1}, "grew": {"_count": 1}, "began": {"_count": 1}, "seemed": {"_count": 1}, "looked": {"_count": 1}, "simply": {"_count": 1}, "had": {"_count": 1}, "fell": {"_count": 1}, "above": {"_count": 1}, "faced": {"_count": 1}, "beyond": {"_count": 1}}, "table": {"_count": 5, "was": {"_count": 1}, "on": {"_count": 2}, "second": {"_count": 1}, "went": {"_count": 1}}, "only": {"_count": 54, "thing": {"_count": 7}, "sounds": {"_count": 2}, "times": {"_count": 1}, "time": {"_count": 2}, "person": {"_count": 8}, "light": {"_count": 2}, "sound": {"_count": 6}, "means": {"_count": 1}, "tricky": {"_count": 1}, "class": {"_count": 1}, "good": {"_count": 2}, "one": {"_count": 1}, "youknowwhat": {"_count": 1}, "new": {"_count": 1}, "Siriusfree": {"_count": 1}, "people": {"_count": 2}, "sources": {"_count": 1}, "remedy": {"_count": 1}, "other": {"_count": 2}, "trouble": {"_count": 1}, "gesture": {"_count": 1}, "problem": {"_count": 1}, "protection": {"_count": 1}, "things": {"_count": 2}, "potentially": {"_count": 1}, "reason": {"_count": 1}, "noise": {"_count": 1}, "place": {"_count": 1}, "way": {"_count": 1}}, "whole": {"_count": 44, "house": {"_count": 1}, "shack": {"_count": 1}, "hall": {"_count": 1}, "crowd": {"_count": 1}, "of": {"_count": 5}, "schools": {"_count": 2}, "things": {"_count": 1}, "thing": {"_count": 2}, "lot": {"_count": 1}, "point": {"_count": 2}, "class": {"_count": 7}, "team": {"_count": 2}, "countrys": {"_count": 1}, "common": {"_count": 2}, "story": {"_count": 1}, "Ministrys": {"_count": 1}, "pub": {"_count": 1}, "surface": {"_count": 1}, "school": {"_count": 1}, "sad": {"_count": 1}, "time": {"_count": 1}, "group": {"_count": 1}, "tearoom": {"_count": 1}, "room": {"_count": 2}, "Wizarding": {"_count": 2}, "Black": {"_count": 1}, "Hall": {"_count": 1}}, "problem": {"_count": 5, "was": {"_count": 4}, "facing": {"_count": 1}}, "harder": {"_count": 1, "she": {"_count": 1}}, "snake": {"_count": 19, "suddenly": {"_count": 1}, "jerked": {"_count": 1}, "nodded": {"_count": 1}, "jabbed": {"_count": 1}, "on": {"_count": 1}, "lifted": {"_count": 1}, "hissed": {"_count": 1}, "continued": {"_count": 1}, "reared": {"_count": 2}, "": {"_count": 1}, "is": {"_count": 1}, "struck": {"_count": 1}, "lunged": {"_count": 1}, "rustled": {"_count": 1}, "bit": {"_count": 1}, "was": {"_count": 2}, "survived": {"_count": 1}}, "boa": {"_count": 1, "constrictor": {"_count": 1}}, "great": {"_count": 10, "snake": {"_count": 2}, "shape": {"_count": 1}, "shamrock": {"_count": 1}, "black": {"_count": 2}, "mound": {"_count": 1}, "gray": {"_count": 1}, "blond": {"_count": 1}, "Atrium": {"_count": 1}}, "keeper": {"_count": 1, "of": {"_count": 1}}, "zoo": {"_count": 1, "director": {"_count": 1}}, "weirdest": {"_count": 1, "thing": {"_count": 1}}, "escape": {"_count": 1, "of": {"_count": 1}}, "rest": {"_count": 24, "of": {"_count": 23}, "proceeded": {"_count": 1}}, "poor": {"_count": 2, "toilets": {"_count": 1}, "things": {"_count": 1}}, "tub": {"_count": 1, "was": {"_count": 1}}, "Cupboard": {"_count": 1, "under": {"_count": 1}}, "envelope": {"_count": 1, "was": {"_count": 1}}, "monthold": {"_count": 1, "video": {"_count": 1}}, "Smallest": {"_count": 1, "Bedroom": {"_count": 1}}, "repaired": {"_count": 1, "alarm": {"_count": 1}}, "woman": {"_count": 6, "stared": {"_count": 1}, "who": {"_count": 1}, "stepped": {"_count": 1}, "named": {"_count": 1}, "gave": {"_count": 1}, "beckoned": {"_count": 1}}, "same": {"_count": 11, "thing": {"_count": 1}, "thought": {"_count": 1}, "reason": {"_count": 1}, "person": {"_count": 1}, "arm": {"_count": 1}, "held": {"_count": 1}, "process": {"_count": 1}, "goes": {"_count": 1}, "is": {"_count": 1}, "face": {"_count": 1}, "day": {"_count": 1}}, "Great": {"_count": 12, "Humbertos": {"_count": 1}, "Hall": {"_count": 11}}, "inside": {"_count": 3, "was": {"_count": 1}, "of": {"_count": 2}}, "storm": {"_count": 2, "raged": {"_count": 1}, "had": {"_count": 1}}, "lighted": {"_count": 1, "dial": {"_count": 1}}, "door": {"_count": 68, "was": {"_count": 4}, "of": {"_count": 17}, "swung": {"_count": 4}, "flew": {"_count": 3}, "behind": {"_count": 4}, "banged": {"_count": 4}, "into": {"_count": 1}, "opened": {"_count": 11}, "creaked": {"_count": 3}, "in": {"_count": 3}, "slammed": {"_count": 2}, "closed": {"_count": 3}, "had": {"_count": 2}, "through": {"_count": 1}, "right": {"_count": 1}, "to": {"_count": 2}, "burst": {"_count": 1}, "downstairs": {"_count": 1}, "get": {"_count": 1}}, "giant": {"_count": 10, "squeezed": {"_count": 1}, "chuckled": {"_count": 2}, "sat": {"_count": 1}, "took": {"_count": 1}, "spectral": {"_count": 1}, "gave": {"_count": 1}, "let": {"_count": 1}, "had": {"_count": 1}, "Gryffindor": {"_count": 1}}, "noise": {"_count": 4, "of": {"_count": 2}, "in": {"_count": 1}, "was": {"_count": 1}}, "Floor": {"_count": 1, "HutontheRock": {"_count": 1}}, "Sea": {"_count": 1, "": {"_count": 1}}, "anger": {"_count": 2, "faded": {"_count": 1}, "that": {"_count": 1}}, "hut": {"_count": 1, "was": {"_count": 1}}, "owl": {"_count": 11, "swooped": {"_count": 1}, "then": {"_count": 1}, "Mum": {"_count": 1}, "was": {"_count": 2}, "dropped": {"_count": 2}, "fluttered": {"_count": 1}, "stuck": {"_count": 1}, "screeched": {"_count": 1}, "had": {"_count": 1}}, "little": {"_count": 16, "bronze": {"_count": 1}, "creature": {"_count": 1}, "book": {"_count": 1}, "wall": {"_count": 1}, "people": {"_count": 1}, "color": {"_count": 2}, "baby": {"_count": 1}, "stories": {"_count": 1}, "flock": {"_count": 2}, "boat": {"_count": 1}, "of": {"_count": 1}, "man": {"_count": 1}, "ball": {"_count": 1}, "elf": {"_count": 1}}, "sky": {"_count": 21, "was": {"_count": 10}, "had": {"_count": 1}, "outside": {"_count": 6}, "lightened": {"_count": 1}, "still": {"_count": 1}, "turned": {"_count": 1}, "the": {"_count": 1}}, "boat": {"_count": 2, "Uncle": {"_count": 1}, "was": {"_count": 1}}, "Standard": {"_count": 13, "Book": {"_count": 13}}, "Dark": {"_count": 53, "Forces": {"_count": 2}, "Lord": {"_count": 40}, "Marks": {"_count": 1}, "Mark": {"_count": 6}, "Arts": {"_count": 2}, "Lords": {"_count": 2}}, "people": {"_count": 4, "hurrying": {"_count": 1}, "in": {"_count": 2}, "below": {"_count": 1}}, "low": {"_count": 1, "buzz": {"_count": 1}}, "usual": {"_count": 10, "Hagrid": {"_count": 1}, "argument": {"_count": 1}, "large": {"_count": 1}, "confusion": {"_count": 1}, "rules": {"_count": 1}, "empty": {"_count": 1}, "said": {"_count": 1}, "enchantments": {"_count": 1}, "low": {"_count": 1}, "tightness": {"_count": 1}}, "Leaky": {"_count": 2, "Cauldron": {"_count": 2}}, "old": {"_count": 14, "woman": {"_count": 2}, "scar": {"_count": 1}, "madman": {"_count": 1}, "feeling": {"_count": 1}, "womans": {"_count": 2}, "hag": {"_count": 1}, "argument": {"_count": 1}, "elf": {"_count": 1}, "goblin": {"_count": 3}, "mans": {"_count": 1}}, "brick": {"_count": 1, "he": {"_count": 1}}, "goblin": {"_count": 17, "was": {"_count": 2}, "wrinkled": {"_count": 1}, "looked": {"_count": 2}, "read": {"_count": 1}, "made": {"_count": 1}, "gazed": {"_count": 1}, "twisted": {"_count": 1}, "stroked": {"_count": 1}, "bowed": {"_count": 1}, "nodded": {"_count": 1}, "ate": {"_count": 1}, "clung": {"_count": 1}, "tossed": {"_count": 1}, "took": {"_count": 1}, "still": {"_count": 1}}, "rattling": {"_count": 1, "cart": {"_count": 1}}, "gold": {"_count": 2, "ones": {"_count": 1}, "I": {"_count": 1}}, "air": {"_count": 13, "became": {"_count": 1}, "was": {"_count": 8}, "of": {"_count": 1}, "through": {"_count": 1}, "exploded": {"_count": 1}, "around": {"_count": 1}}, "last": {"_count": 23, "shop": {"_count": 1}, "thing": {"_count": 8}, "week": {"_count": 1}, "time": {"_count": 2}, "murders": {"_count": 1}, "he": {"_count": 1}, "three": {"_count": 1}, "word": {"_count": 2}, "words": {"_count": 1}, "enemy": {"_count": 3}, "surface": {"_count": 1}, "trace": {"_count": 1}}, "very": {"_count": 15, "dust": {"_count": 1}, "man": {"_count": 1}, "last": {"_count": 3}, "idea": {"_count": 1}, "same": {"_count": 4}, "worst": {"_count": 1}, "best": {"_count": 2}, "floor": {"_count": 1}, "air": {"_count": 1}}, "pile": {"_count": 1, "of": {"_count": 1}}, "wand": {"_count": 8, "chooses": {"_count": 3}, "exploded": {"_count": 1}, "spun": {"_count": 1}, "siphoned": {"_count": 1}, "sparked": {"_count": 1}, "is": {"_count": 1}}, "late": {"_count": 1, "afternoon": {"_count": 1}}, "train": {"_count": 14, "pulled": {"_count": 1}, "began": {"_count": 2}, "did": {"_count": 1}, "slowed": {"_count": 1}, "rattled": {"_count": 2}, "was": {"_count": 3}, "came": {"_count": 1}, "": {"_count": 1}, "lurched": {"_count": 1}, "rounded": {"_count": 1}}, "guard": {"_count": 3, "had": {"_count": 1}, "around": {"_count": 1}, "was": {"_count": 1}}, "speaker": {"_count": 3, "was": {"_count": 3}}, "thing": {"_count": 25, "is": {"_count": 9}, "bowled": {"_count": 1}, "that": {"_count": 5}, "Harry": {"_count": 2}, "inside": {"_count": 1}, "Wormtail": {"_count": 1}, "seemed": {"_count": 1}, "against": {"_count": 1}, "YouKnow": {"_count": 1}, "about": {"_count": 1}, "looked": {"_count": 1}, "you": {"_count": 1}}, "first": {"_count": 28, "few": {"_count": 1}, "board": {"_count": 1}, "years": {"_count": 4}, "words": {"_count": 1}, "term": {"_count": 1}, "Divination": {"_count": 1}, "thing": {"_count": 3}, "column": {"_count": 1}, "task": {"_count": 3}, "shock": {"_count": 1}, "gulp": {"_count": 1}, "bore": {"_count": 1}, "champion": {"_count": 1}, "and": {"_count": 1}, "one": {"_count": 1}, "week": {"_count": 1}, "ten": {"_count": 1}, "sound": {"_count": 1}, "year": {"_count": 1}, "read": {"_count": 1}, "casualties": {"_count": 1}}, "boy": {"_count": 15, "lifted": {"_count": 1}, "slammed": {"_count": 1}, "has": {"_count": 1}, "is": {"_count": 1}, "with": {"_count": 1}, "was": {"_count": 1}, "began": {"_count": 1}, "who": {"_count": 4}, "the": {"_count": 1}, "hesitated": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 1}}, "two": {"_count": 18, "boys": {"_count": 1}, "things": {"_count": 1}, "remaining": {"_count": 1}, "of": {"_count": 2}, "spells": {"_count": 1}, "figures": {"_count": 1}, "girls": {"_count": 2}, "men": {"_count": 3}, "newcomers": {"_count": 1}, "workmen": {"_count": 1}, "young": {"_count": 1}, "oaks": {"_count": 1}, "stone": {"_count": 1}, "giants": {"_count": 1}}, "youngest": {"_count": 3, "boy": {"_count": 1}, "champion": {"_count": 1}, "brother": {"_count": 1}}, "oldest": {"_count": 2, "boy": {"_count": 1}, "Wizarding": {"_count": 1}}, "twins": {"_count": 8, "were": {"_count": 1}, "slid": {"_count": 1}, "turned": {"_count": 1}, "stared": {"_count": 1}, "heads": {"_count": 1}, "and": {"_count": 1}, "glared": {"_count": 1}, "grins": {"_count": 1}}, "Weasleys": {"_count": 6, "were": {"_count": 2}, "complained": {"_count": 1}, "roared": {"_count": 1}, "are": {"_count": 1}, "and": {"_count": 1}}, "countryside": {"_count": 1, "now": {"_count": 1}}, "neat": {"_count": 1, "fields": {"_count": 1}}, "rat": {"_count": 4, "was": {"_count": 3}, "look": {"_count": 1}}, "toadless": {"_count": 1, "boy": {"_count": 1}}, "Rise": {"_count": 3, "and": {"_count": 3}}, "narrow": {"_count": 2, "path": {"_count": 1}, "handwriting": {"_count": 1}}, "firs": {"_count": 1, "years": {"_count": 1}}, "entrance": {"_count": 8, "hall": {"_count": 6}, "to": {"_count": 1}, "is": {"_count": 1}}, "stone": {"_count": 9, "walls": {"_count": 1}, "wall": {"_count": 1}, "basin": {"_count": 1}, "floor": {"_count": 1}, "remained": {"_count": 1}, "was": {"_count": 1}, "steps": {"_count": 1}, "Pensieve": {"_count": 1}, "I": {"_count": 1}}, "startofterm": {"_count": 1, "banquet": {"_count": 1}}, "Sorting": {"_count": 13, "is": {"_count": 1}, "Ceremony": {"_count": 2}, "Ceremonys": {"_count": 1}, "Hat": {"_count": 7}, "of": {"_count": 1}, "continued": {"_count": 1}}, "four": {"_count": 10, "Houses": {"_count": 1}, "long": {"_count": 3}, "school": {"_count": 1}, "of": {"_count": 2}, "good": {"_count": 1}, "House": {"_count": 1}, "Slytherins": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "hat": {"_count": 5, "seemed": {"_count": 1}, "took": {"_count": 1}, "became": {"_count": 1}, "feels": {"_count": 1}, "considered": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "ghost": {"_count": 5, "patted": {"_count": 1}, "leapt": {"_count": 1}, "stuck": {"_count": 1}, "of": {"_count": 2}}, "pumpkin": {"_count": 1, "pasties": {"_count": 1}}, "dishes": {"_count": 1, "in": {"_count": 1}}, "Bloody": {"_count": 4, "Barons": {"_count": 2}, "Baron": {"_count": 2}}, "others": {"_count": 9, "laughed": {"_count": 1}, "were": {"_count": 2}, "hushed": {"_count": 1}, "flinched": {"_count": 1}, "moved": {"_count": 2}, "all": {"_count": 1}, "everyone": {"_count": 1}}, "hooknosed": {"_count": 1, "teacher": {"_count": 1}}, "pain": {"_count": 11, "had": {"_count": 2}, "in": {"_count": 5}, "was": {"_count": 2}, "vanished": {"_count": 1}, "of": {"_count": 1}}, "hall": {"_count": 6, "fell": {"_count": 1}, "looked": {"_count": 1}, "was": {"_count": 2}, "immediately": {"_count": 1}, "light": {"_count": 1}}, "Gryffindor": {"_count": 15, "first": {"_count": 1}, "common": {"_count": 4}, "Quidditch": {"_count": 1}, "team": {"_count": 3}, "party": {"_count": 1}, "Slytherin": {"_count": 1}, "crowd": {"_count": 1}, "fourth": {"_count": 1}, "table": {"_count": 1}, "Keepers": {"_count": 1}}, "ghosts": {"_count": 1, "didnt": {"_count": 1}}, "students": {"_count": 5, "all": {"_count": 1}, "were": {"_count": 1}, "from": {"_count": 2}, "who": {"_count": 1}}, "class": {"_count": 17, "everyone": {"_count": 1}, "exchanged": {"_count": 1}, "began": {"_count": 1}, "all": {"_count": 1}, "on": {"_count": 1}, "broke": {"_count": 1}, "knew": {"_count": 1}, "looked": {"_count": 2}, "backed": {"_count": 1}, "was": {"_count": 1}, "surged": {"_count": 1}, "which": {"_count": 1}, "gave": {"_count": 1}, "around": {"_count": 1}, "stared": {"_count": 1}, "filed": {"_count": 1}}, "rock": {"_count": 1, "cakes": {"_count": 1}}, "vault": {"_count": 3, "that": {"_count": 2}, "in": {"_count": 1}}, "Slytherins": {"_count": 17, "were": {"_count": 3}, "smiles": {"_count": 1}, "superior": {"_count": 1}, "must": {"_count": 1}, "always": {"_count": 1}, "still": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 1}, "howled": {"_count": 1}, "clamored": {"_count": 1}, "at": {"_count": 1}, "led": {"_count": 1}, "continued": {"_count": 1}, "sang": {"_count": 1}, "murmured": {"_count": 1}}, "other": {"_count": 33, "Slytherins": {"_count": 1}, "two": {"_count": 6}, "three": {"_count": 2}, "Beater": {"_count": 1}, "who": {"_count": 1}, "was": {"_count": 5}, "Ministry": {"_count": 1}, "Hogwarts": {"_count": 1}, "champions": {"_count": 1}, "elves": {"_count": 1}, "arm": {"_count": 1}, "ingredients": {"_count": 1}, "woman": {"_count": 1}, "day": {"_count": 1}, "will": {"_count": 1}, "spiders": {"_count": 1}, "one": {"_count": 1}, "packages": {"_count": 1}, "teachers": {"_count": 2}, "inhabitants": {"_count": 1}, "Horcruxes": {"_count": 1}, "members": {"_count": 1}}, "Remembrall": {"_count": 1, "glittered": {"_count": 1}}, "boys": {"_count": 7, "a": {"_count": 1}, "had": {"_count": 1}, "three": {"_count": 1}, "seeing": {"_count": 1}, "wouldnt": {"_count": 1}, "took": {"_count": 1}, "yes": {"_count": 1}}, "most": {"_count": 5, "you": {"_count": 1}, "ridiculous": {"_count": 1}, "they": {"_count": 1}, "recent": {"_count": 2}}, "Fat": {"_count": 8, "Lady": {"_count": 6}, "Ladys": {"_count": 1}, "Friar": {"_count": 1}}, "passwords": {"_count": 2, "\u2018Pig": {"_count": 1}, "still": {"_count": 1}}, "crystal": {"_count": 2, "trophy": {"_count": 1}, "orbs": {"_count": 1}}, "minutes": {"_count": 4, "crept": {"_count": 1}, "dragged": {"_count": 1}, "snailed": {"_count": 1}, "stretched": {"_count": 1}}, "clanging": {"_count": 2, "and": {"_count": 1}, "doorbell": {"_count": 1}}, "lock": {"_count": 2, "clicked": {"_count": 2}}, "forbidden": {"_count": 1, "corridor": {"_count": 1}}, "floor": {"_count": 10, "": {"_count": 1}, "was": {"_count": 3}, "of": {"_count": 2}, "seemed": {"_count": 1}, "began": {"_count": 1}, "trembled": {"_count": 1}, "on": {"_count": 1}}, "dog": {"_count": 3, "was": {"_count": 1}, "must": {"_count": 1}, "had": {"_count": 1}}, "Nimbus": {"_count": 1, "Two": {"_count": 1}}, "Chasers": {"_count": 2, "throw": {"_count": 2}}, "Bludgers": {"_count": 1, "rocket": {"_count": 1}}, "castle": {"_count": 9, "felt": {"_count": 1}, "was": {"_count": 5}, "grounds": {"_count": 1}, "seemed": {"_count": 1}, "ghosts": {"_count": 1}}, "feast": {"_count": 4, "appeared": {"_count": 1}, "remember": {"_count": 1}, "finished": {"_count": 1}, "is": {"_count": 1}}, "smell": {"_count": 6, "coming": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 3}, "from": {"_count": 1}}, "troll": {"_count": 6, "stopped": {"_count": 2}, "was": {"_count": 1}, "didnt": {"_count": 1}, "couldnt": {"_count": 1}, "swayed": {"_count": 1}}, "keys": {"_count": 1, "in": {"_count": 1}}, "shouting": {"_count": 1, "and": {"_count": 1}}, "club": {"_count": 2, "flew": {"_count": 1}, "": {"_count": 1}}, "common": {"_count": 8, "room": {"_count": 8}}, "mountains": {"_count": 1, "around": {"_count": 1}}, "Quidditch": {"_count": 5, "season": {"_count": 2}, "field": {"_count": 1}, "seasons": {"_count": 1}, "team": {"_count": 1}}, "day": {"_count": 7, "before": {"_count": 2}, "was": {"_count": 2}, "Ludo": {"_count": 1}, "had": {"_count": 1}, "after": {"_count": 1}}, "next": {"_count": 14, "morning": {"_count": 2}, "chamber": {"_count": 1}, "day": {"_count": 2}, "one": {"_count": 1}, "two": {"_count": 1}, "thing": {"_count": 4}, "few": {"_count": 1}, "password": {"_count": 1}, "moment": {"_count": 1}}, "seats": {"_count": 2, "might": {"_count": 1}, "on": {"_count": 1}}, "big": {"_count": 1, "one": {"_count": 1}}, "one": {"_count": 22, "weve": {"_count": 1}, "hed": {"_count": 1}, "night": {"_count": 1}, "with": {"_count": 5}, "your": {"_count": 1}, "who": {"_count": 5}, "good": {"_count": 2}, "pointing": {"_count": 1}, "difference": {"_count": 1}, "Montague": {"_count": 1}, "thing": {"_count": 2}, "facing": {"_count": 1}}, "Weasley": {"_count": 3, "twins": {"_count": 2}, "family": {"_count": 1}}, "afternoons": {"_count": 2, "events": {"_count": 1}, "Care": {"_count": 1}}, "lake": {"_count": 6, "froze": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}, "did": {"_count": 1}, "surely": {"_count": 1}}, "few": {"_count": 4, "owls": {"_count": 1}, "unbruised": {"_count": 1}, "Patronuses": {"_count": 1}, "Ravenclaws": {"_count": 1}}, "library": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 1}}, "trouble": {"_count": 8, "was": {"_count": 4}, "is": {"_count": 4}}, "white": {"_count": 6, "mice": {"_count": 1}, "queen": {"_count": 2}, "king": {"_count": 1}, "marble": {"_count": 1}, "stone": {"_count": 1}}, "Restricted": {"_count": 3, "Section": {"_count": 3}}, "lamp": {"_count": 1, "looked": {"_count": 1}}, "hairs": {"_count": 2, "on": {"_count": 2}}, "dark": {"_count": 8, "shapes": {"_count": 1}, "ward": {"_count": 1}, "shadows": {"_count": 1}, "one": {"_count": 1}, "dormitory": {"_count": 1}, "corridor": {"_count": 1}, "passage": {"_count": 1}, "foulsmelling": {"_count": 1}}, "tall": {"_count": 1, "thin": {"_count": 1}}, "reflections": {"_count": 1, "did": {"_count": 1}}, "snow": {"_count": 5, "still": {"_count": 1}, "melted": {"_count": 1}, "here": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}}, "happiest": {"_count": 1, "man": {"_count": 1}}, "Mirror": {"_count": 1, "will": {"_count": 1}}, "what": {"_count": 7, "": {"_count": 7}}, "ancient": {"_count": 2, "study": {"_count": 1}, "skills": {"_count": 1}}, "Stone": {"_count": 2, "will": {"_count": 1}, "": {"_count": 1}}, "idea": {"_count": 17, "of": {"_count": 8}, "was": {"_count": 2}, "that": {"_count": 4}, "as": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 1}}, "stands": {"_count": 1, "erupted": {"_count": 1}}, "games": {"_count": 1, "over": {"_count": 1}}, "evening": {"_count": 1, "air": {"_count": 1}}, "trees": {"_count": 4, "were": {"_count": 1}, "to": {"_count": 1}, "behind": {"_count": 1}, "looked": {"_count": 1}}, "Ministry": {"_count": 35, "of": {"_count": 13}, "wouldnt": {"_count": 1}, "have": {"_count": 1}, "would": {"_count": 1}, "disagrees": {"_count": 1}, "was": {"_count": 1}, "wants": {"_count": 1}, "does": {"_count": 1}, "suspects": {"_count": 1}, "is": {"_count": 2}, "are": {"_count": 1}, "did": {"_count": 1}, "places": {"_count": 1}, "cars": {"_count": 1}, "wasnt": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 1}, "can": {"_count": 2}, "has": {"_count": 1}, "workers": {"_count": 1}, "wizards": {"_count": 1}}, "egg": {"_count": 1, "was": {"_count": 1}}, "baby": {"_count": 3, "dragon": {"_count": 1}, "banged": {"_count": 1}, "Ariana": {"_count": 1}}, "following": {"_count": 6, "week": {"_count": 1}, "morning": {"_count": 2}, "day": {"_count": 2}, "fortnight": {"_count": 1}}, "clock": {"_count": 2, "on": {"_count": 2}}, "three": {"_count": 21, "of": {"_count": 19}, "Death": {"_count": 2}}, "cut": {"_count": 4, "had": {"_count": 1}, "in": {"_count": 1}, "dug": {"_count": 1}, "on": {"_count": 1}}, "steep": {"_count": 1, "spiral": {"_count": 1}}, "answer": {"_count": 4, "to": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}, "came": {"_count": 1}}, "light": {"_count": 9, "of": {"_count": 1}, "slid": {"_count": 1}, "was": {"_count": 4}, "fell": {"_count": 1}, "seemed": {"_count": 1}, "hit": {"_count": 1}}, "moon": {"_count": 4, "was": {"_count": 2}, "drifted": {"_count": 1}, "slid": {"_count": 1}}, "forest": {"_count": 5, "": {"_count": 2}, "was": {"_count": 1}, "hides": {"_count": 1}, "is": {"_count": 1}}, "cloaked": {"_count": 2, "figure": {"_count": 1}, "man": {"_count": 1}}, "hooded": {"_count": 4, "figure": {"_count": 1}, "creature": {"_count": 1}, "Death": {"_count": 2}}, "centaur": {"_count": 2, "didnt": {"_count": 1}, "advanced": {"_count": 1}}, "quicker": {"_count": 1, "he": {"_count": 1}}, "blood": {"_count": 1, "of": {"_count": 1}}, "Sorcerers": {"_count": 1, "Stone": {"_count": 1}}, "unicorns": {"_count": 1, "dead": {"_count": 1}}, "planets": {"_count": 1, "have": {"_count": 1}}, "books": {"_count": 2, "she": {"_count": 1}, "and": {"_count": 1}}, "distant": {"_count": 2, "music": {"_count": 1}, "grumble": {"_count": 1}}, "passageway": {"_count": 2, "sloped": {"_count": 1}, "leading": {"_count": 1}}, "moment": {"_count": 43, "the": {"_count": 8}, "he": {"_count": 11}, "they": {"_count": 5}, "she": {"_count": 3}, "their": {"_count": 1}, "when": {"_count": 1}, "has": {"_count": 1}, "Rita": {"_count": 1}, "Professor": {"_count": 1}, "we": {"_count": 1}, "that": {"_count": 2}, "shed": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 2}, "his": {"_count": 1}, "anyone": {"_count": 1}, "her": {"_count": 1}}, "horse": {"_count": 3, "pawed": {"_count": 1}, "things": {"_count": 1}, "was": {"_count": 1}}, "black": {"_count": 5, "knight": {"_count": 1}, "dog": {"_count": 1}, "door": {"_count": 1}, "shape": {"_count": 1}, "stone": {"_count": 1}}, "chessmen": {"_count": 2, "seemed": {"_count": 1}, "parted": {"_count": 1}}, "smallest": {"_count": 2, "bottle": {"_count": 1}, "of": {"_count": 1}}, "high": {"_count": 2, "voice": {"_count": 1}, "hedge": {"_count": 1}}, "turban": {"_count": 1, "fell": {"_count": 1}}, "feeling": {"_count": 2, "suddenly": {"_count": 1}, "of": {"_count": 1}}, "evil": {"_count": 1, "face": {"_count": 1}}, "Snitch": {"_count": 10, "": {"_count": 2}, "had": {"_count": 2}, "was": {"_count": 2}, "wheres": {"_count": 1}, "skirted": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "smiling": {"_count": 1, "face": {"_count": 1}}, "truth": {"_count": 7, "": {"_count": 1}, "was": {"_count": 4}, "is": {"_count": 2}}, "points": {"_count": 1, "are": {"_count": 1}}, "babble": {"_count": 2, "died": {"_count": 1}, "broke": {"_count": 1}}, "din": {"_count": 2, "was": {"_count": 1}, "of": {"_count": 1}}, "effect": {"_count": 6, "of": {"_count": 1}, "was": {"_count": 4}, "in": {"_count": 1}}, "Masons": {"_count": 2, "dont": {"_count": 1}, "will": {"_count": 1}}, "huge": {"_count": 3, "eyes": {"_count": 1}, "blackboard": {"_count": 1}, "snake": {"_count": 1}}, "creature": {"_count": 7, "slipped": {"_count": 1}, "that": {"_count": 2}, "whose": {"_count": 1}, "in": {"_count": 1}, "behind": {"_count": 2}}, "elf": {"_count": 16, "hung": {"_count": 1}, "was": {"_count": 2}, "wasnt": {"_count": 1}, "took": {"_count": 1}, "straightened": {"_count": 1}, "surveyed": {"_count": 1}, "looked": {"_count": 2}, "obediently": {"_count": 1}, "shivered": {"_count": 1}, "sat": {"_count": 1}, "quaked": {"_count": 1}, "lay": {"_count": 1}, "nodded": {"_count": 1}, "swayed": {"_count": 1}}, "wizard": {"_count": 17, "family": {"_count": 1}, "folded": {"_count": 1}, "went": {"_count": 1}, "in": {"_count": 2}, "who": {"_count": 1}, "dropped": {"_count": 1}, "tore": {"_count": 1}, "nodded": {"_count": 1}, "hobbled": {"_count": 1}, "was": {"_count": 1}, "clapped": {"_count": 1}, "intent": {"_count": 1}, "had": {"_count": 1}, "roared": {"_count": 1}, "leaned": {"_count": 1}, "turned": {"_count": 1}}, "pudding": {"_count": 1, "fell": {"_count": 1}}, "catflap": {"_count": 1, "rattled": {"_count": 1}}, "soup": {"_count": 1, "was": {"_count": 1}}, "car": {"_count": 11, "revved": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}, "vanished": {"_count": 1}, "gave": {"_count": 1}, "wobbled": {"_count": 1}, "however": {"_count": 1}, "screeched": {"_count": 1}, "stopped": {"_count": 1}, "which": {"_count": 1}, "turned": {"_count": 1}}, "Misuse": {"_count": 1, "of": {"_count": 1}}, "teapot": {"_count": 1, "went": {"_count": 1}}, "edge": {"_count": 1, "of": {"_count": 1}}, "kitchen": {"_count": 6, "was": {"_count": 3}, "door": {"_count": 3}}, "garden": {"_count": 2, "was": {"_count": 1}, "gate": {"_count": 1}}, "Chudley": {"_count": 1, "Cannons": {"_count": 1}}, "Adventures": {"_count": 1, "of": {"_count": 1}}, "ghoul": {"_count": 1, "in": {"_count": 1}}, "new": {"_count": 10, "Defense": {"_count": 1}, "passwords": {"_count": 1}, "sign": {"_count": 1}, "captain": {"_count": 1}, "secretary": {"_count": 1}, "one": {"_count": 2}, "term": {"_count": 1}, "master": {"_count": 1}, "boy": {"_count": 1}}, "right": {"_count": 2, "what": {"_count": 1}, "to": {"_count": 1}}, "soot": {"_count": 1, "Dont": {"_count": 1}}, "sooner": {"_count": 4, "he": {"_count": 1}, "we": {"_count": 2}, "this": {"_count": 1}}, "man": {"_count": 31, "who": {"_count": 3}, "was": {"_count": 3}, "with": {"_count": 3}, "of": {"_count": 1}, "behind": {"_count": 1}, "between": {"_count": 1}, "people": {"_count": 1}, "reached": {"_count": 1}, "has": {"_count": 1}, "called": {"_count": 2}, "jumped": {"_count": 1}, "flew": {"_count": 1}, "on": {"_count": 2}, "relinquished": {"_count": 1}, "in": {"_count": 2}, "crept": {"_count": 1}, "standing": {"_count": 1}, "skidded": {"_count": 1}, "broke": {"_count": 1}, "gave": {"_count": 1}, "at": {"_count": 1}, "lunged": {"_count": 1}}, "smile": {"_count": 7, "faded": {"_count": 4}, "had": {"_count": 1}, "spread": {"_count": 1}, "slid": {"_count": 1}}, "name": {"_count": 5, "Malfoy": {"_count": 1}, "Professor": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 1}}, "teachers": {"_count": 7, "all": {"_count": 1}, "on": {"_count": 1}, "rose": {"_count": 1}, "and": {"_count": 1}, "have": {"_count": 1}, "however": {"_count": 1}, "were": {"_count": 1}}, "vaults": {"_count": 1, "were": {"_count": 1}}, "bag": {"_count": 1, "of": {"_count": 1}}, "reason": {"_count": 3, "for": {"_count": 1}, "they": {"_count": 1}, "Albus": {"_count": 1}}, "crowd": {"_count": 26, "seemed": {"_count": 1}, "parted": {"_count": 1}, "burst": {"_count": 1}, "applauded": {"_count": 1}, "cheered": {"_count": 1}, "thinned": {"_count": 1}, "was": {"_count": 7}, "didnt": {"_count": 1}, "oooohed": {"_count": 1}, "below": {"_count": 1}, "beneath": {"_count": 2}, "screamed": {"_count": 1}, "in": {"_count": 1}, "around": {"_count": 2}, "laughed": {"_count": 1}, "murmured": {"_count": 1}, "continued": {"_count": 1}, "had": {"_count": 1}}, "real": {"_count": 6, "Lockhart": {"_count": 2}, "Moody": {"_count": 1}, "MadEye": {"_count": 1}, "Harry": {"_count": 1}, "Reg": {"_count": 1}}, "perfect": {"_count": 1, "moment": {"_count": 1}}, "company": {"_count": 2, "you": {"_count": 1}, "around": {"_count": 1}}, "assistant": {"_count": 2, "looked": {"_count": 1}, "nearly": {"_count": 1}}, "end": {"_count": 5, "of": {"_count": 4}, "said": {"_count": 1}}, "tricky": {"_count": 1, "part": {"_count": 1}}, "metal": {"_count": 2, "remained": {"_count": 1}, "shell": {"_count": 1}}, "trains": {"_count": 1, "left": {"_count": 1}}, "Hogwarts": {"_count": 11, "Express": {"_count": 6}, "champion": {"_count": 2}, "houseelves": {"_count": 1}, "staff": {"_count": 1}, "grounds": {"_count": 1}}, "wheels": {"_count": 1, "of": {"_count": 1}}, "toffees": {"_count": 1, "had": {"_count": 1}}, "engine": {"_count": 1, "groaned": {"_count": 1}}, "nose": {"_count": 2, "of": {"_count": 1}, "was": {"_count": 1}}, "tree": {"_count": 4, "they": {"_count": 1}, "smashed": {"_count": 1}, "was": {"_count": 1}, "stopped": {"_count": 1}}, "shadowy": {"_count": 2, "walls": {"_count": 1}, "outlines": {"_count": 1}}, "fireplace": {"_count": 1, "was": {"_count": 1}}, "dormitory": {"_count": 6, "door": {"_count": 3}, "was": {"_count": 2}, "doors": {"_count": 1}}, "red": {"_count": 3, "envelope": {"_count": 2}, "eyes": {"_count": 1}}, "Mandrake": {"_count": 1, "forms": {"_count": 1}}, "cry": {"_count": 1, "of": {"_count": 1}}, "leaves": {"_count": 2, "were": {"_count": 1}, "overhead": {"_count": 1}}, "Howler": {"_count": 1, "was": {"_count": 1}}, "Mandrakes": {"_count": 1, "didnt": {"_count": 1}}, "pixies": {"_count": 2, "were": {"_count": 1}, "shot": {"_count": 1}}, "bell": {"_count": 14, "rang": {"_count": 13}, "was": {"_count": 1}}, "cool": {"_count": 2, "morning": {"_count": 1}, "night": {"_count": 1}}, "Slytherin": {"_count": 8, "team": {"_count": 4}, "common": {"_count": 1}, "table": {"_count": 2}, "colors": {"_count": 1}}, "smug": {"_count": 1, "look": {"_count": 1}}, "Gryffindors": {"_count": 8, "were": {"_count": 1}, "packed": {"_count": 1}, "around": {"_count": 1}, "watched": {"_count": 1}, "burst": {"_count": 1}, "roared": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 1}}, "candles": {"_count": 3, "burned": {"_count": 1}, "all": {"_count": 1}, "had": {"_count": 1}}, "steam": {"_count": 2, "pouring": {"_count": 1}, "had": {"_count": 1}}, "firelight": {"_count": 2, "glowed": {"_count": 1}, "made": {"_count": 1}}, "sight": {"_count": 6, "of": {"_count": 3}, "seemed": {"_count": 1}, "made": {"_count": 1}, "therefore": {"_count": 1}}, "temperature": {"_count": 2, "dropped": {"_count": 1}, "in": {"_count": 1}}, "dungeon": {"_count": 5, "was": {"_count": 3}, "rang": {"_count": 1}, "door": {"_count": 1}}, "squat": {"_count": 2, "ghost": {"_count": 1}, "bandylegged": {"_count": 1}}, "Wailing": {"_count": 1, "Widow": {"_count": 1}}, "orchestra": {"_count": 1, "however": {"_count": 1}}, "assembly": {"_count": 1, "clapped": {"_count": 1}}, "horses": {"_count": 1, "galloped": {"_count": 1}}, "voice": {"_count": 4, "was": {"_count": 1}, "": {"_count": 1}, "made": {"_count": 1}, "rang": {"_count": 1}}, "chatter": {"_count": 1, "the": {"_count": 1}}, "silent": {"_count": 3, "crowd": {"_count": 1}, "seconds": {"_count": 1}, "kitchen": {"_count": 1}}, "tip": {"_count": 3, "of": {"_count": 3}}, "photographs": {"_count": 3, "of": {"_count": 1}, "that": {"_count": 1}, "took": {"_count": 1}}, "Chamber": {"_count": 5, "Has": {"_count": 1}, "of": {"_count": 3}, "was": {"_count": 1}}, "attack": {"_count": 3, "had": {"_count": 1}, "on": {"_count": 1}, "might": {"_count": 1}}, "Medieval": {"_count": 1, "Assembly": {"_count": 1}}, "story": {"_count": 7, "goes": {"_count": 1}, "of": {"_count": 3}, "had": {"_count": 1}, "was": {"_count": 1}, "says": {"_count": 1}}, "heir": {"_count": 1, "alone": {"_count": 1}}, "scene": {"_count": 7, "was": {"_count": 1}, "whirled": {"_count": 1}, "flickered": {"_count": 1}, "seemed": {"_count": 1}, "dissolved": {"_count": 2}, "changed": {"_count": 1}}, "corridor": {"_count": 3, "was": {"_count": 1}, "outside": {"_count": 1}, "dissolved": {"_count": 1}}, "Polyjuice": {"_count": 4, "Potion": {"_count": 3}, "Potions": {"_count": 1}}, "team": {"_count": 5, "pulled": {"_count": 1}, "changed": {"_count": 1}, "trooped": {"_count": 1}, "cheered": {"_count": 1}, "rose": {"_count": 1}}, "rain": {"_count": 8, "was": {"_count": 5}, "thickened": {"_count": 1}, "sounded": {"_count": 1}, "became": {"_count": 1}}, "Bludger": {"_count": 1, "had": {"_count": 1}}, "houseelfs": {"_count": 2, "goggling": {"_count": 1}, "highest": {"_count": 1}}, "family": {"_count": 2, "is": {"_count": 1}, "looked": {"_count": 1}}, "question": {"_count": 4, "is": {"_count": 4}}, "news": {"_count": 8, "that": {"_count": 3}, "about": {"_count": 2}, "of": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}}, "holidays": {"_count": 1, "would": {"_count": 1}}, "firework": {"_count": 1, "began": {"_count": 1}}, "long": {"_count": 4, "dining": {"_count": 1}, "mane": {"_count": 1}, "counter": {"_count": 1}, "game": {"_count": 1}}, "ceiling": {"_count": 6, "was": {"_count": 3}, "had": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}}, "words": {"_count": 16, "wouldnt": {"_count": 1}, "had": {"_count": 4}, "shone": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 5}, "came": {"_count": 2}, "seemed": {"_count": 2}}, "Hufflepuffs": {"_count": 4, "worst": {"_count": 1}, "who": {"_count": 2}, "were": {"_count": 1}}, "result": {"_count": 1, "was": {"_count": 1}}, "walls": {"_count": 11, "were": {"_count": 7}, "of": {"_count": 1}, "on": {"_count": 1}, "bore": {"_count": 1}, "and": {"_count": 1}}, "office": {"_count": 5, "door": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "dissolved": {"_count": 1}, "disappeared": {"_count": 1}}, "double": {"_count": 1, "attack": {"_count": 1}}, "potion": {"_count": 5, "will": {"_count": 1}, "hissed": {"_count": 1}, "that": {"_count": 1}, "within": {"_count": 1}, "turned": {"_count": 1}}, "labyrinthine": {"_count": 1, "passages": {"_count": 1}}, "figure": {"_count": 6, "was": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}, "stopped": {"_count": 1}, "seemed": {"_count": 1}, "came": {"_count": 1}}, "fact": {"_count": 10, "was": {"_count": 3}, "remained": {"_count": 1}, "that": {"_count": 5}, "of": {"_count": 1}}, "culprit": {"_count": 2, "must": {"_count": 1}, "has": {"_count": 1}}, "dwarf": {"_count": 1, "however": {"_count": 1}}, "hero": {"_count": 1, "who": {"_count": 1}}, "diary": {"_count": 6, "however": {"_count": 1}, "said": {"_count": 1}, "Riddles": {"_count": 1}, "had": {"_count": 1}, "wasnt": {"_count": 1}, "as": {"_count": 1}}, "ink": {"_count": 1, "shone": {"_count": 1}}, "monster": {"_count": 3, "lived": {"_count": 1}, "in": {"_count": 2}}, "pages": {"_count": 2, "of": {"_count": 1}, "carrying": {"_count": 1}}, "torches": {"_count": 1, "hadnt": {"_count": 1}}, "dead": {"_count": 3, "girls": {"_count": 1}, "lay": {"_count": 1}, "who": {"_count": 1}}, "least": {"_count": 1, "Hogwarts": {"_count": 1}}, "second": {"_count": 17, "years": {"_count": 1}, "Bludger": {"_count": 1}, "tasks": {"_count": 1}, "task": {"_count": 2}, "step": {"_count": 1}, "one": {"_count": 1}, "man": {"_count": 1}, "detention": {"_count": 1}, "Death": {"_count": 1}, "jet": {"_count": 1}, "figure": {"_count": 1}, "woman": {"_count": 1}, "group": {"_count": 1}, "attempt": {"_count": 1}, "page": {"_count": 2}}, "time": {"_count": 4, "had": {"_count": 2}, "is": {"_count": 1}, "has": {"_count": 1}}, "contents": {"_count": 3, "of": {"_count": 2}, "had": {"_count": 1}}, "bedclothes": {"_count": 1, "had": {"_count": 1}}, "teams": {"_count": 1, "walked": {"_count": 1}}, "Heir": {"_count": 4, "of": {"_count": 4}}, "journey": {"_count": 7, "through": {"_count": 2}, "to": {"_count": 2}, "has": {"_count": 1}, "was": {"_count": 1}, "home": {"_count": 1}}, "stranger": {"_count": 4, "had": {"_count": 1}, "was": {"_count": 1}, "reached": {"_count": 1}, "sat": {"_count": 1}}, "appointment": {"_count": 2, "or": {"_count": 1}, "has": {"_count": 1}}, "Herbology": {"_count": 1, "class": {"_count": 1}}, "centaurs": {"_count": 5, "are": {"_count": 1}, "": {"_count": 1}, "nearest": {"_count": 1}, "had": {"_count": 1}, "Bane": {"_count": 1}}, "darkness": {"_count": 5, "seemed": {"_count": 2}, "was": {"_count": 1}, "and": {"_count": 1}, "deepened": {"_count": 1}}, "forests": {"_count": 1, "turned": {"_count": 1}}, "sides": {"_count": 1, "of": {"_count": 1}}, "massive": {"_count": 1, "specimen": {"_count": 1}}, "body": {"_count": 1, "of": {"_count": 1}}, "exams": {"_count": 2, "will": {"_count": 1}, "are": {"_count": 1}}, "basilisk": {"_count": 7, "kills": {"_count": 1}, "burned": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "lunged": {"_count": 1}, "venom": {"_count": 1}, "": {"_count": 1}}, "water": {"_count": 3, "": {"_count": 1}, "didnt": {"_count": 1}, "was": {"_count": 1}}, "flood": {"_count": 1, "from": {"_count": 1}}, "more": {"_count": 6, "he": {"_count": 3}, "there": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "crowing": {"_count": 1, "of": {"_count": 1}}, "staffroom": {"_count": 2, "door": {"_count": 1}, "a": {"_count": 1}}, "Heads": {"_count": 5, "of": {"_count": 4}, "office": {"_count": 1}}, "side": {"_count": 2, "of": {"_count": 2}}, "tunnel": {"_count": 4, "was": {"_count": 2}, "turned": {"_count": 1}, "door": {"_count": 1}}, "adventure": {"_count": 1, "ends": {"_count": 1}}, "serpents": {"_count": 1, "parted": {"_count": 1}}, "hollow": {"_count": 1, "eye": {"_count": 1}}, "music": {"_count": 3, "was": {"_count": 1}, "stopped": {"_count": 1}, "made": {"_count": 1}}, "bird": {"_count": 1, "stopped": {"_count": 1}}, "longer": {"_count": 5, "you": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "enormous": {"_count": 2, "serpent": {"_count": 1}, "bearlike": {"_count": 1}}, "snakes": {"_count": 4, "tail": {"_count": 2}, "with": {"_count": 1}, "cage": {"_count": 1}}, "blinded": {"_count": 1, "serpent": {"_count": 1}}, "basilisks": {"_count": 1, "head": {"_count": 1}}, "Memory": {"_count": 1, "Charm": {"_count": 1}}, "chill": {"_count": 1, "air": {"_count": 1}}, "governors": {"_count": 1, "suspended": {"_count": 1}}, "elfs": {"_count": 2, "ugly": {"_count": 1}, "eyes": {"_count": 1}}, "quill": {"_count": 2, "paused": {"_count": 1}, "whizzed": {"_count": 1}}, "witch": {"_count": 7, "or": {"_count": 1}, "behind": {"_count": 1}, "with": {"_count": 1}, "sitting": {"_count": 1}, "spoke": {"_count": 1}, "was": {"_count": 1}, "glanced": {"_count": 1}}, "fight": {"_count": 1, "that": {"_count": 1}}, "silence": {"_count": 11, "in": {"_count": 1}, "was": {"_count": 2}, "spiraled": {"_count": 1}, "between": {"_count": 2}, "and": {"_count": 1}, "within": {"_count": 1}, "seemed": {"_count": 1}, "pressed": {"_count": 1}, "swallowed": {"_count": 1}}, "eyes": {"_count": 2, "behind": {"_count": 1}, "of": {"_count": 1}}, "clipping": {"_count": 1, "had": {"_count": 1}}, "Monster": {"_count": 6, "Book": {"_count": 6}}, "book": {"_count": 7, "toppled": {"_count": 1}, "was": {"_count": 1}, "snapped": {"_count": 1}, "tried": {"_count": 1}, "slipped": {"_count": 1}, "simply": {"_count": 1}, "had": {"_count": 1}}, "public": {"_count": 1, "is": {"_count": 1}}, "reporter": {"_count": 1, "had": {"_count": 1}}, "memory": {"_count": 3, "of": {"_count": 3}}, "Hogsmeade": {"_count": 1, "form": {"_count": 1}}, "Handbook": {"_count": 2, "he": {"_count": 1}, "of": {"_count": 1}}, "cupboard": {"_count": 1, "door": {"_count": 1}}, "Knight": {"_count": 5, "Bus": {"_count": 4}, "Buss": {"_count": 1}}, "conductor": {"_count": 1, "stopped": {"_count": 1}}, "Minister": {"_count": 8, "of": {"_count": 3}, "has": {"_count": 1}, "was": {"_count": 1}, "wouldnt": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "Decree": {"_count": 2, "for": {"_count": 2}}, "Azkaban": {"_count": 1, "guards": {"_count": 1}}, "snowy": {"_count": 2, "owl": {"_count": 2}}, "Firebolt": {"_count": 2, "has": {"_count": 1}, "turned": {"_count": 1}}, "manager": {"_count": 1, "pressed": {"_count": 1}}, "doubleended": {"_count": 1, "newt": {"_count": 1}}, "witchs": {"_count": 1, "eyes": {"_count": 1}}, "Ministrys": {"_count": 7, "providing": {"_count": 1}, "not": {"_count": 1}, "new": {"_count": 1}, "forced": {"_count": 1}, "keepin": {"_count": 1}, "littered": {"_count": 1}, "being": {"_count": 1}}, "guards": {"_count": 2, "told": {"_count": 1}, "say": {"_count": 1}}, "parlor": {"_count": 1, "door": {"_count": 1}}, "bottle": {"_count": 2, "of": {"_count": 1}, "tipped": {"_count": 1}}, "badge": {"_count": 1, "now": {"_count": 1}}, "compartment": {"_count": 1, "door": {"_count": 1}}, "cold": {"_count": 8, "went": {"_count": 1}, "voice": {"_count": 1}, "was": {"_count": 3}, "night": {"_count": 2}, "black": {"_count": 1}}, "coach": {"_count": 1, "smelled": {"_count": 1}}, "carriage": {"_count": 1, "picked": {"_count": 1}}, "thought": {"_count": 7, "of": {"_count": 3}, "gave": {"_count": 1}, "that": {"_count": 1}, "made": {"_count": 1}, "went": {"_count": 1}}, "golden": {"_count": 7, "plates": {"_count": 1}, "egg": {"_count": 1}, "thread": {"_count": 1}, "flag": {"_count": 1}, "grille": {"_count": 1}, "grilles": {"_count": 2}}, "dementors": {"_count": 25, "are": {"_count": 2}, "send": {"_count": 1}, "affect": {"_count": 1}, "will": {"_count": 4}, "wont": {"_count": 1}, "didnt": {"_count": 1}, "were": {"_count": 3}, "should": {"_count": 1}, "buried": {"_count": 1}, "tall": {"_count": 1}, "placed": {"_count": 1}, "icy": {"_count": 1}, "eyeless": {"_count": 1}, "remain": {"_count": 1}, "have": {"_count": 1}, "scattered": {"_count": 1}, "had": {"_count": 1}, "fell": {"_count": 1}, "chill": {"_count": 1}}, "shouts": {"_count": 1, "of": {"_count": 1}}, "knight": {"_count": 1, "seized": {"_count": 1}}, "knights": {"_count": 1, "rage": {"_count": 1}}, "shelves": {"_count": 1, "running": {"_count": 1}}, "heavily": {"_count": 2, "perfumed": {"_count": 2}}, "falcon": {"_count": 1, "": {"_count": 1}}, "skull": {"_count": 1, "": {"_count": 1}}, "Grim": {"_count": 1, "my": {"_count": 1}}, "Grims": {"_count": 1, "not": {"_count": 1}}, "talons": {"_count": 1, "on": {"_count": 1}}, "hippogriffs": {"_count": 1, "were": {"_count": 1}}, "hippogriff": {"_count": 6, "was": {"_count": 2}, "might": {"_count": 1}, "began": {"_count": 1}, "gave": {"_count": 1}, "took": {"_count": 1}}, "grass": {"_count": 1, "was": {"_count": 1}}, "Muggles": {"_count": 2, "think": {"_count": 1}, "who": {"_count": 1}}, "charm": {"_count": 2, "that": {"_count": 2}}, "wardrobe": {"_count": 5, "shook": {"_count": 1}, "wobbled": {"_count": 1}, "burst": {"_count": 2}, "doors": {"_count": 1}}, "banshee": {"_count": 2, "made": {"_count": 1}, "turned": {"_count": 1}}, "eyeball": {"_count": 1, "became": {"_count": 1}}, "legless": {"_count": 1, "spider": {"_count": 1}}, "point": {"_count": 9, "is": {"_count": 5}, "": {"_count": 1}, "Hermione": {"_count": 1}, "of": {"_count": 1}, "dangled": {"_count": 1}}, "weather": {"_count": 11, "was": {"_count": 2}, "worsened": {"_count": 1}, "couldnt": {"_count": 1}, "could": {"_count": 1}, "remained": {"_count": 1}, "": {"_count": 1}, "did": {"_count": 1}, "grew": {"_count": 2}, "beyond": {"_count": 1}}, "sixteenth": {"_count": 1, "of": {"_count": 1}}, "form": {"_count": 1, "clearly": {"_count": 1}}, "Halloween": {"_count": 2, "feast": {"_count": 2}}, "portrait": {"_count": 7, "swung": {"_count": 5}, "seemed": {"_count": 1}, "people": {"_count": 1}}, "trick": {"_count": 2, "is": {"_count": 1}, "was": {"_count": 1}}, "grindylow": {"_count": 1, "bared": {"_count": 1}}, "empty": {"_count": 6, "goblet": {"_count": 1}, "bottle": {"_count": 1}, "house": {"_count": 1}, "canvas": {"_count": 1}, "fireplace": {"_count": 1}, "words": {"_count": 1}}, "post": {"_count": 3, "office": {"_count": 1}, "owls": {"_count": 2}}, "food": {"_count": 2, "was": {"_count": 1}, "Sirius": {"_count": 1}}, "lights": {"_count": 1, "are": {"_count": 1}}, "Owlery": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "door": {"_count": 2}}, "school": {"_count": 5, "talked": {"_count": 1}, "owls": {"_count": 1}, "nurse": {"_count": 1}, "barn": {"_count": 1}, "was": {"_count": 1}}, "theories": {"_count": 1, "about": {"_count": 1}}, "third": {"_count": 10, "time": {"_count": 1}, "floor": {"_count": 1}, "years": {"_count": 2}, "and": {"_count": 1}, "tasks": {"_count": 1}, "person": {"_count": 1}, "group": {"_count": 1}, "was": {"_count": 2}}, "snout": {"_count": 1, "of": {"_count": 1}}, "wind": {"_count": 5, "was": {"_count": 2}, "though": {"_count": 1}, "and": {"_count": 1}, "buffeted": {"_count": 1}}, "Captains": {"_count": 1, "walked": {"_count": 1}}, "lightning": {"_count": 2, "the": {"_count": 1}, "had": {"_count": 1}}, "horrible": {"_count": 1, "truth": {"_count": 1}}, "Whomping": {"_count": 3, "Willow": {"_count": 3}}, "hinkypunk": {"_count": 1, "made": {"_count": 1}}, "fortress": {"_count": 1, "is": {"_count": 1}}, "tiniest": {"_count": 1, "speech": {"_count": 1}}, "word": {"_count": 4, "inside": {"_count": 1}, "echoed": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}}, "map": {"_count": 6, "went": {"_count": 1}, "said": {"_count": 1}, "showed": {"_count": 1}, "flew": {"_count": 1}, "shows": {"_count": 1}, "that": {"_count": 1}}, "passage": {"_count": 2, "twisted": {"_count": 1}, "beyond": {"_count": 1}}, "Christmas": {"_count": 1, "tree": {"_count": 1}}, "worst": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "perhaps": {"_count": 1}, "had": {"_count": 1}}, "number": {"_count": 2, "of": {"_count": 2}}, "information": {"_count": 1, "is": {"_count": 1}}, "murder": {"_count": 1, "of": {"_count": 1}}, "Forbidden": {"_count": 3, "Forest": {"_count": 3}}, "hearing": {"_count": 1, "will": {"_count": 1}}, "trip": {"_count": 1, "to": {"_count": 1}}, "Pocket": {"_count": 1, "Sneakoscope": {"_count": 1}}, "Sneakoscope": {"_count": 2, "whirled": {"_count": 1}, "on": {"_count": 1}}, "firstyear": {"_count": 1, "boy": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "boggart": {"_count": 1, "will": {"_count": 1}}, "spell": {"_count": 10, "I": {"_count": 1}, "shot": {"_count": 1}, "hit": {"_count": 4}, "was": {"_count": 1}, "had": {"_count": 1}, "merely": {"_count": 1}, "whatever": {"_count": 1}}, "Patronus": {"_count": 5, "is": {"_count": 1}, "turned": {"_count": 1}, "dissolved": {"_count": 2}, "he": {"_count": 1}}, "incantation": {"_count": 1, "is": {"_count": 1}}, "lamps": {"_count": 3, "around": {"_count": 1}, "in": {"_count": 1}, "dimmed": {"_count": 1}}, "dementor": {"_count": 3, "stepped": {"_count": 1}, "glided": {"_count": 1}, "must": {"_count": 1}}, "classroom": {"_count": 5, "lamps": {"_count": 1}, "was": {"_count": 1}, "floor": {"_count": 1}, "door": {"_count": 2}}, "sounds": {"_count": 3, "of": {"_count": 3}}, "screaming": {"_count": 3, "inside": {"_count": 1}, "had": {"_count": 1}, "grew": {"_count": 1}}, "match": {"_count": 3, "against": {"_count": 1}, "became": {"_count": 1}, "must": {"_count": 1}}, "true": {"_count": 3, "Patronus": {"_count": 1}, "story": {"_count": 1}, "master": {"_count": 1}}, "Ravenclaw": {"_count": 1, "team": {"_count": 1}}, "note": {"_count": 1, "inside": {"_count": 1}}, "minuscule": {"_count": 1, "writing": {"_count": 1}}, "opportunity": {"_count": 1, "was": {"_count": 1}}, "resemblance": {"_count": 1, "between": {"_count": 1}}, "parchment": {"_count": 2, "was": {"_count": 2}}, "safety": {"_count": 1, "measures": {"_count": 1}}, "fates": {"_count": 1, "have": {"_count": 1}}, "Inner": {"_count": 3, "Eye": {"_count": 3}}, "Easter": {"_count": 1, "holidays": {"_count": 1}}, "enmity": {"_count": 1, "between": {"_count": 1}}, "grounds": {"_count": 4, "were": {"_count": 4}}, "sound": {"_count": 12, "of": {"_count": 8}, "seemed": {"_count": 1}, "often": {"_count": 1}, "frightened": {"_count": 1}, "went": {"_count": 1}}, "tiny": {"_count": 9, "golden": {"_count": 2}, "owl": {"_count": 1}, "kitchen": {"_count": 1}, "creature": {"_count": 1}, "fluttering": {"_count": 1}, "little": {"_count": 1}, "number": {"_count": 1}, "elf": {"_count": 1}}, "Committee": {"_count": 1, "for": {"_count": 1}}, "blackmustached": {"_count": 1, "man": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "tower": {"_count": 1, "room": {"_count": 1}}, "heat": {"_count": 2, "was": {"_count": 1}, "from": {"_count": 1}}, "wandlight": {"_count": 2, "showed": {"_count": 1}, "sparkled": {"_count": 1}}, "windows": {"_count": 2, "were": {"_count": 1}, "open": {"_count": 1}}, "waxy": {"_count": 1, "skin": {"_count": 1}}, "taunt": {"_count": 1, "about": {"_count": 1}}, "fingers": {"_count": 1, "tightened": {"_count": 1}}, "seconds": {"_count": 1, "lengthened": {"_count": 1}}, "Professor": {"_count": 1, "walked": {"_count": 1}}, "Marauders": {"_count": 1, "Map": {"_count": 1}}, "important": {"_count": 5, "thing": {"_count": 3}, "point": {"_count": 1}, "things": {"_count": 1}}, "bedroom": {"_count": 3, "door": {"_count": 2}, "looked": {"_count": 1}}, "Shrieking": {"_count": 2, "Shack": {"_count": 2}}, "screams": {"_count": 2, "and": {"_count": 1}, "were": {"_count": 1}}, "villagers": {"_count": 3, "heard": {"_count": 1}, "of": {"_count": 1}, "exchanged": {"_count": 1}}, "jokes": {"_count": 1, "on": {"_count": 1}}, "biggest": {"_count": 1, "bit": {"_count": 1}}, "night": {"_count": 6, "they": {"_count": 1}, "my": {"_count": 1}, "was": {"_count": 1}, "wet": {"_count": 1}, "reached": {"_count": 1}, "that": {"_count": 1}}, "difference": {"_count": 1, "it": {"_count": 1}}, "yelping": {"_count": 2, "seemed": {"_count": 1}, "stopped": {"_count": 1}}, "blinding": {"_count": 1, "light": {"_count": 1}}, "shadows": {"_count": 2, "were": {"_count": 1}, "cast": {"_count": 1}}, "execution": {"_count": 1, "party": {"_count": 1}}, "footsteps": {"_count": 1, "stopped": {"_count": 1}}, "executioner": {"_count": 2, "seemed": {"_count": 1}, "": {"_count": 1}}, "cabin": {"_count": 1, "was": {"_count": 1}}, "window": {"_count": 3, "sprang": {"_count": 1}, "was": {"_count": 2}}, "Kiss": {"_count": 1, "will": {"_count": 1}}, "Daily": {"_count": 6, "Prophets": {"_count": 2}, "Prophet": {"_count": 4}}, "sweltering": {"_count": 1, "heat": {"_count": 1}}, "stag": {"_count": 3, "had": {"_count": 1}, "cantered": {"_count": 1}, "slowed": {"_count": 1}}, "grindylows": {"_count": 1, "empty": {"_count": 1}}, "consequences": {"_count": 1, "of": {"_count": 1}}, "exam": {"_count": 1, "results": {"_count": 1}}, "minute": {"_count": 2, "owl": {"_count": 1}, "hand": {"_count": 1}}, "Little": {"_count": 1, "Hangletons": {"_count": 1}}, "maid": {"_count": 1, "had": {"_count": 1}}, "police": {"_count": 3, "were": {"_count": 1}, "had": {"_count": 1}, "are": {"_count": 1}}, "Hanged": {"_count": 1, "Man": {"_count": 1}}, "doctors": {"_count": 1, "did": {"_count": 1}}, "Riddles": {"_count": 1, "were": {"_count": 1}}, "wealthy": {"_count": 2, "man": {"_count": 1}, "owner": {"_count": 1}}, "front": {"_count": 6, "door": {"_count": 3}, "three": {"_count": 1}, "doors": {"_count": 1}, "of": {"_count": 1}}, "fire": {"_count": 6, "he": {"_count": 1}, "was": {"_count": 3}, "in": {"_count": 1}, "crackled": {"_count": 1}}, "place": {"_count": 7, "is": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 1}, "according": {"_count": 1}, "looks": {"_count": 1}, "has": {"_count": 1}}, "the": {"_count": 4, "Quidditch": {"_count": 1}, "Dark": {"_count": 1}, "what": {"_count": 1}, "prophecy": {"_count": 1}}, "servant": {"_count": 2, "gave": {"_count": 1}, "died": {"_count": 1}}, "dim": {"_count": 1, "picture": {"_count": 1}}, "pictures": {"_count": 1, "in": {"_count": 1}}, "home": {"_count": 1, "Harry": {"_count": 1}}, "diet": {"_count": 1, "sheet": {"_count": 1}}, "doorbell": {"_count": 3, "rang": {"_count": 3}}, "postman": {"_count": 1, "noticed": {"_count": 1}}, "mustache": {"_count": 1, "bristled": {"_count": 1}}, "letter": {"_count": 4, "finished": {"_count": 1}, "was": {"_count": 2}, "addressed": {"_count": 1}}, "atmosphere": {"_count": 8, "inside": {"_count": 1}, "of": {"_count": 1}, "in": {"_count": 3}, "seemed": {"_count": 1}, "around": {"_count": 1}, "changed": {"_count": 1}}, "imminent": {"_count": 1, "arrival": {"_count": 1}}, "hammering": {"_count": 1, "stopped": {"_count": 1}}, "electric": {"_count": 1, "fire": {"_count": 1}}, "source": {"_count": 2, "of": {"_count": 2}}, "top": {"_count": 5, "secret": {"_count": 1}, "of": {"_count": 3}, "table": {"_count": 1}}, "Department": {"_count": 2, "of": {"_count": 2}}, "field": {"_count": 2, "is": {"_count": 1}, "looked": {"_count": 1}}, "tents": {"_count": 1, "here": {"_count": 1}}, "picture": {"_count": 4, "was": {"_count": 3}, "showed": {"_count": 1}}, "parting": {"_count": 1, "in": {"_count": 1}}, "Bulgarians": {"_count": 1, "are": {"_count": 1}}, "miniature": {"_count": 1, "Krum": {"_count": 1}}, "stairs": {"_count": 6, "into": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "are": {"_count": 1}, "opened": {"_count": 1}, "beneath": {"_count": 1}}, "Bluebottle": {"_count": 1, "A": {"_count": 1}}, "box": {"_count": 2, "filled": {"_count": 1}, "was": {"_count": 1}}, "Bulgarian": {"_count": 2, "wizard": {"_count": 1}, "Beaters": {"_count": 1}}, "Malfoys": {"_count": 3, "prided": {"_count": 1}, "": {"_count": 1}, "undoubtedly": {"_count": 1}}, "spectators": {"_count": 1, "screamed": {"_count": 1}}, "righthand": {"_count": 2, "side": {"_count": 1}, "window": {"_count": 1}}, "veela": {"_count": 3, "had": {"_count": 2}, "on": {"_count": 1}}, "speed": {"_count": 1, "of": {"_count": 1}}, "leprechauns": {"_count": 2, "who": {"_count": 1}, "had": {"_count": 1}}, "Beaters": {"_count": 2, "on": {"_count": 1}, "Peakes": {"_count": 1}}, "game": {"_count": 1, "recommenced": {"_count": 1}}, "Irish": {"_count": 2, "Beater": {"_count": 1}, "Chasers": {"_count": 1}}, "scoreboard": {"_count": 1, "was": {"_count": 1}}, "noises": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "singing": {"_count": 2, "had": {"_count": 1}, "grew": {"_count": 1}}, "floating": {"_count": 1, "people": {"_count": 1}}, "colored": {"_count": 1, "lanterns": {"_count": 1}}, "girl": {"_count": 13, "who": {"_count": 2}, "picked": {"_count": 1}, "walked": {"_count": 1}, "beside": {"_count": 1}, "gave": {"_count": 1}, "called": {"_count": 1}, "smiled": {"_count": 1}, "laughed": {"_count": 1}, "nodded": {"_count": 1}, "turned": {"_count": 1}, "did": {"_count": 1}, "and": {"_count": 1}}, "Wimbourne": {"_count": 1, "Wasps": {"_count": 1}}, "way": {"_count": 5, "they": {"_count": 1}, "he": {"_count": 2}, "some": {"_count": 1}, "Bathilda": {"_count": 1}}, "person": {"_count": 2, "who": {"_count": 2}}, "terror": {"_count": 1, "it": {"_count": 1}}, "pistons": {"_count": 1, "hissed": {"_count": 1}}, "thick": {"_count": 2, "rain": {"_count": 1}, "fingers": {"_count": 1}}, "lunch": {"_count": 1, "trolley": {"_count": 1}}, "tips": {"_count": 1, "of": {"_count": 1}}, "coat": {"_count": 1, "was": {"_count": 1}}, "founders": {"_count": 2, "put": {"_count": 1}, "of": {"_count": 1}}, "rip": {"_count": 1, "at": {"_count": 1}}, "largest": {"_count": 1, "number": {"_count": 1}}, "buzz": {"_count": 2, "of": {"_count": 2}}, "full": {"_count": 3, "list": {"_count": 1}, "weight": {"_count": 1}, "story": {"_count": 1}}, "corners": {"_count": 1, "of": {"_count": 1}}, "mouth": {"_count": 1, "looked": {"_count": 1}}, "blue": {"_count": 1, "eye": {"_count": 1}}, "tension": {"_count": 1, "that": {"_count": 1}}, "Triwizard": {"_count": 6, "Tournament": {"_count": 2}, "Cup": {"_count": 2}, "judge": {"_count": 1}, "Tournaments": {"_count": 1}}, "schools": {"_count": 1, "took": {"_count": 1}}, "heads": {"_count": 1, "of": {"_count": 1}}, "delegations": {"_count": 2, "from": {"_count": 2}}, "championsll": {"_count": 1, "get": {"_count": 1}}, "females": {"_count": 1, "Ve": {"_count": 1}}, "best": {"_count": 6, "thing": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "way": {"_count": 1}, "replied": {"_count": 1}, "results": {"_count": 1}}, "familiar": {"_count": 1, "sweet": {"_count": 1}}, "movements": {"_count": 2, "of": {"_count": 1}, "beneath": {"_count": 1}}, "perfumed": {"_count": 1, "fire": {"_count": 1}}, "ferret": {"_count": 1, "flew": {"_count": 1}}, "spider": {"_count": 5, "leapt": {"_count": 1}, "swelled": {"_count": 1}, "keeled": {"_count": 1}, "gave": {"_count": 1}, "did": {"_count": 1}}, "laughter": {"_count": 2, "died": {"_count": 1}, "had": {"_count": 1}}, "Imperius": {"_count": 3, "Curse": {"_count": 3}}, "Cruciatus": {"_count": 4, "Curse": {"_count": 4}}, "spiders": {"_count": 1, "legs": {"_count": 1}}, "use": {"_count": 2, "of": {"_count": 2}}, "Blast": {"_count": 1, "Ended": {"_count": 1}}, "appearance": {"_count": 1, "of": {"_count": 1}}, "suits": {"_count": 1, "of": {"_count": 1}}, "size": {"_count": 2, "of": {"_count": 2}}, "Durmstrang": {"_count": 3, "students": {"_count": 2}, "party": {"_count": 1}}, "Beauxbatons": {"_count": 2, "party": {"_count": 1}, "carriage": {"_count": 1}}, "tournament": {"_count": 1, "will": {"_count": 1}}, "plates": {"_count": 1, "in": {"_count": 1}}, "houseelves": {"_count": 7, "in": {"_count": 1}, "all": {"_count": 1}, "down": {"_count": 1}, "gave": {"_count": 1}, "crowded": {"_count": 1}, "theyll": {"_count": 1}, "of": {"_count": 1}}, "casket": {"_count": 1, "then": {"_count": 1}}, "instructions": {"_count": 1, "for": {"_count": 1}}, "champions": {"_count": 7, "will": {"_count": 3}, "are": {"_count": 1}, "arent": {"_count": 1}, "families": {"_count": 1}, "nodded": {"_count": 1}}, "lid": {"_count": 1, "creaked": {"_count": 1}}, "goblet": {"_count": 3, "will": {"_count": 1}, "filled": {"_count": 2}}, "placing": {"_count": 1, "of": {"_count": 1}}, "color": {"_count": 2, "drained": {"_count": 1}, "was": {"_count": 1}}, "Aging": {"_count": 1, "Potion": {"_count": 1}}, "decorations": {"_count": 1, "in": {"_count": 1}}, "gigantic": {"_count": 1, "powder": {"_count": 1}}, "elephantine": {"_count": 1, "flying": {"_count": 1}}, "look": {"_count": 3, "didnt": {"_count": 1}, "on": {"_count": 1}, "upon": {"_count": 1}}, "Goblet": {"_count": 3, "of": {"_count": 3}}, "flames": {"_count": 1, "inside": {"_count": 1}}, "champion": {"_count": 2, "for": {"_count": 2}}, "clapping": {"_count": 1, "and": {"_count": 1}}, "buzzing": {"_count": 1, "grew": {"_count": 1}}, "faces": {"_count": 2, "in": {"_count": 1}, "around": {"_count": 1}}, "wizened": {"_count": 2, "witch": {"_count": 2}}, "blast": {"_count": 1, "of": {"_count": 1}}, "Invisibility": {"_count": 2, "Cloak": {"_count": 2}}, "prospect": {"_count": 5, "of": {"_count": 5}}, "pair": {"_count": 3, "of": {"_count": 3}}, "skrewts": {"_count": 1, "were": {"_count": 1}}, "closest": {"_count": 2, "he": {"_count": 1}, "Death": {"_count": 1}}, "REAL": {"_count": 1, "Hogwarts": {"_count": 1}}, "injustice": {"_count": 2, "of": {"_count": 2}}, "experts": {"_count": 1, "upstairs": {"_count": 1}}, "Weighing": {"_count": 1, "of": {"_count": 1}}, "hornbeam": {"_count": 1, "wand": {"_count": 1}}, "photographer": {"_count": 1, "seemed": {"_count": 1}}, "shock": {"_count": 5, "of": {"_count": 3}, "had": {"_count": 1}, "shot": {"_count": 1}}, "article": {"_count": 2, "had": {"_count": 1}, "sounded": {"_count": 1}}, "days": {"_count": 1, "until": {"_count": 1}}, "Three": {"_count": 2, "Broomsticks": {"_count": 2}}, "back": {"_count": 6, "of": {"_count": 5}, "under": {"_count": 1}}, "large": {"_count": 4, "chunk": {"_count": 1}, "snake": {"_count": 1}, "dungeon": {"_count": 1}, "and": {"_count": 1}}, "Creevey": {"_count": 1, "brothers": {"_count": 1}}, "dragon": {"_count": 6, "keepers": {"_count": 1}, "let": {"_count": 1}, "had": {"_count": 2}, "seemed": {"_count": 1}, "did": {"_count": 1}}, "Death": {"_count": 29, "Eaters": {"_count": 20}, "Eater": {"_count": 9}}, "heavy": {"_count": 1, "book": {"_count": 1}}, "Firebolts": {"_count": 1, "going": {"_count": 1}}, "main": {"_count": 1, "thing": {"_count": 1}}, "Horntails": {"_count": 2, "head": {"_count": 2}}, "Horntail": {"_count": 1, "didnt": {"_count": 1}}, "tent": {"_count": 2, "was": {"_count": 1}, "emerged": {"_count": 1}}, "start": {"_count": 2, "of": {"_count": 2}}, "Prophet": {"_count": 5, "does": {"_count": 1}, "wouldnt": {"_count": 1}, "exists": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "Yule": {"_count": 2, "Ball": {"_count": 2}}, "pale": {"_count": 2, "blue": {"_count": 2}}, "thirdyear": {"_count": 1, "girls": {"_count": 1}}, "left": {"_count": 1, "sock": {"_count": 1}}, "oak": {"_count": 4, "front": {"_count": 4}}, "House": {"_count": 2, "tables": {"_count": 2}}, "fifth": {"_count": 5, "seat": {"_count": 1}, "owl": {"_count": 1}, "years": {"_count": 2}, "group": {"_count": 1}}, "Weird": {"_count": 3, "Sisters": {"_count": 3}}, "enemy": {"_count": 1, "Honestly": {"_count": 1}}, "unicorn": {"_count": 1, "was": {"_count": 1}}, "creation": {"_count": 1, "of": {"_count": 1}}, "handful": {"_count": 1, "that": {"_count": 1}}, "stupid": {"_count": 1, "prat": {"_count": 1}}, "pub": {"_count": 2, "was": {"_count": 2}}, "goblins": {"_count": 3, "all": {"_count": 1}, "play": {"_count": 1}, "started": {"_count": 1}}, "curtains": {"_count": 4, "were": {"_count": 2}, "in": {"_count": 1}, "had": {"_count": 1}}, "incomprehensible": {"_count": 1, "egg": {"_count": 1}}, "wailing": {"_count": 1, "screeching": {"_count": 1}}, "foam": {"_count": 1, "was": {"_count": 1}}, "torchlight": {"_count": 1, "flickered": {"_count": 1}}, "momentary": {"_count": 1, "happiness": {"_count": 1}}, "mermaid": {"_count": 1, "in": {"_count": 1}}, "excited": {"_count": 1, "babble": {"_count": 1}}, "tasks": {"_count": 1, "about": {"_count": 1}}, "whistle": {"_count": 2, "echoed": {"_count": 1}, "sounded": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "merpeople": {"_count": 2, "had": {"_count": 1}, "started": {"_count": 1}}, "ropes": {"_count": 1, "of": {"_count": 1}}, "merman": {"_count": 1, "laughed": {"_count": 1}}, "sharkman": {"_count": 1, "swam": {"_count": 1}}, "song": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "judges": {"_count": 1, "went": {"_count": 1}}, "brown": {"_count": 1, "owl": {"_count": 1}}, "moving": {"_count": 1, "picture": {"_count": 1}}, "winding": {"_count": 1, "lane": {"_count": 1}}, "cottages": {"_count": 1, "were": {"_count": 1}}, "Aurors": {"_count": 4, "were": {"_count": 1}, "had": {"_count": 1}, "are": {"_count": 2}}, "conclusion": {"_count": 1, "was": {"_count": 1}}, "Lestranges": {"_count": 2, "theyre": {"_count": 1}, "should": {"_count": 1}}, "elves": {"_count": 1, "who": {"_count": 1}}, "cheery": {"_count": 1, "smiles": {"_count": 1}}, "nifflers": {"_count": 1, "dived": {"_count": 1}}, "leprechaun": {"_count": 1, "gold": {"_count": 1}}, "Wronski": {"_count": 1, "Feint": {"_count": 1}}, "knees": {"_count": 1, "of": {"_count": 1}}, "password": {"_count": 1, "had": {"_count": 1}}, "wall": {"_count": 4, "was": {"_count": 1}, "behind": {"_count": 1}, "slid": {"_count": 1}, "began": {"_count": 1}}, "headmaster": {"_count": 8, "is": {"_count": 3}, "has": {"_count": 4}, "thinks": {"_count": 1}}, "less": {"_count": 1, "you": {"_count": 1}}, "many": {"_count": 1, "perches": {"_count": 1}}, "grin": {"_count": 1, "vanished": {"_count": 1}}, "eyelid": {"_count": 1, "of": {"_count": 1}}, "Ministryll": {"_count": 1, "be": {"_count": 1}}, "topmost": {"_count": 1, "sail": {"_count": 1}}, "dimly": {"_count": 2, "lit": {"_count": 2}}, "fumes": {"_count": 1, "from": {"_count": 1}}, "gargoyle": {"_count": 5, "did": {"_count": 1}, "remained": {"_count": 1}, "sprang": {"_count": 2}, "leapt": {"_count": 1}}, "patched": {"_count": 1, "and": {"_count": 1}}, "sword": {"_count": 13, "had": {"_count": 1}, "of": {"_count": 6}, "can": {"_count": 1}, "flashed": {"_count": 1}, "clanged": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}}, "silvery": {"_count": 5, "light": {"_count": 2}, "substance": {"_count": 1}, "lights": {"_count": 1}, "stuff": {"_count": 1}}, "surface": {"_count": 7, "of": {"_count": 6}, "began": {"_count": 1}}, "basin": {"_count": 2, "being": {"_count": 1}, "was": {"_count": 1}}, "watching": {"_count": 2, "crowd": {"_count": 2}}, "witches": {"_count": 1, "and": {"_count": 1}}, "jury": {"_count": 1, "will": {"_count": 1}}, "wispy": {"_count": 2, "little": {"_count": 1}, "witch": {"_count": 1}}, "thoughts": {"_count": 1, "inside": {"_count": 1}}, "years": {"_count": 1, "of": {"_count": 1}}, "Longbottoms": {"_count": 1, "were": {"_count": 1}}, "attacks": {"_count": 1, "on": {"_count": 1}}, "mood": {"_count": 1, "in": {"_count": 1}}, "cheers": {"_count": 1, "and": {"_count": 1}}, "towering": {"_count": 2, "hedges": {"_count": 1}, "structure": {"_count": 1}}, "maze": {"_count": 1, "was": {"_count": 1}}, "path": {"_count": 3, "ahead": {"_count": 1}, "was": {"_count": 2}}, "sleeve": {"_count": 1, "of": {"_count": 1}}, "silver": {"_count": 12, "stag": {"_count": 4}, "door": {"_count": 1}, "white": {"_count": 1}, "doe": {"_count": 3}, "fingers": {"_count": 1}, "tool": {"_count": 1}, "and": {"_count": 1}}, "world": {"_count": 2, "turned": {"_count": 1}, "had": {"_count": 1}}, "cup": {"_count": 2, "was": {"_count": 1}, "the": {"_count": 1}}, "skrewt": {"_count": 2, "issued": {"_count": 1}, "was": {"_count": 1}}, "quickest": {"_count": 1, "way": {"_count": 1}}, "sphinx": {"_count": 3, "sat": {"_count": 1}, "smiled": {"_count": 2}}, "middle": {"_count": 1, "of": {"_count": 1}}, "short": {"_count": 2, "man": {"_count": 1}, "queue": {"_count": 1}}, "bundle": {"_count": 1, "of": {"_count": 1}}, "liquid": {"_count": 2, "in": {"_count": 1}, "within": {"_count": 1}}, "diamond": {"_count": 1, "surface": {"_count": 1}}, "cauldron": {"_count": 1, "was": {"_count": 1}}, "thin": {"_count": 2, "man": {"_count": 1}, "line": {"_count": 1}}, "scar": {"_count": 5, "on": {"_count": 4}, "had": {"_count": 1}}, "tortured": {"_count": 1, "Death": {"_count": 1}}, "shiver": {"_count": 1, "ran": {"_count": 1}}, "direction": {"_count": 1, "of": {"_count": 1}}, "closer": {"_count": 1, "that": {"_count": 1}}, "shadow": {"_count": 2, "of": {"_count": 2}}, "smoky": {"_count": 1, "shadow": {"_count": 1}}, "face": {"_count": 2, "of": {"_count": 1}, "was": {"_count": 1}}, "ones": {"_count": 6, "who": {"_count": 4}, "with": {"_count": 1}, "tha": {"_count": 1}}, "faithless": {"_count": 1, "worthless": {"_count": 1}}, "foggy": {"_count": 1, "shapes": {"_count": 1}}, "spellbooks": {"_count": 1, "had": {"_count": 1}}, "imposter": {"_count": 2, "needed": {"_count": 1}, "has": {"_count": 1}}, "scars": {"_count": 2, "were": {"_count": 1}, "on": {"_count": 1}}, "mans": {"_count": 4, "eyelids": {"_count": 2}, "scowling": {"_count": 1}, "screams": {"_count": 1}}, "houseelf": {"_count": 9, "nursed": {"_count": 1}, "who": {"_count": 1}, "froze": {"_count": 1}, "kept": {"_count": 1}, "in": {"_count": 1}, "gave": {"_count": 1}, "returned": {"_count": 1}, "had": {"_count": 1}, "bowed": {"_count": 1}}, "bond": {"_count": 2, "connecting": {"_count": 1}, "between": {"_count": 1}}, "insane": {"_count": 2, "smile": {"_count": 1}, "laughter": {"_count": 1}}, "phoenix": {"_count": 3, "let": {"_count": 1}, "had": {"_count": 1}, "awoke": {"_count": 1}}, "wands": {"_count": 1, "connected": {"_count": 1}}, "Reverse": {"_count": 1, "Spell": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "skin": {"_count": 2, "mended": {"_count": 1}, "on": {"_count": 1}}, "plan": {"_count": 4, "succeeded": {"_count": 1}, "worked": {"_count": 1}, "as": {"_count": 1}, "was": {"_count": 1}}, "recollections": {"_count": 1, "he": {"_count": 1}}, "carriagesll": {"_count": 1, "be": {"_count": 1}}, "hottest": {"_count": 1, "day": {"_count": 1}}, "opening": {"_count": 1, "notes": {"_count": 1}}, "park": {"_count": 1, "was": {"_count": 1}}, "streetlamps": {"_count": 1, "from": {"_count": 1}}, "noble": {"_count": 2, "sport": {"_count": 1}, "blood": {"_count": 1}}, "effort": {"_count": 1, "of": {"_count": 1}}, "star": {"_count": 1, "strewn": {"_count": 1}}, "balmy": {"_count": 2, "evening": {"_count": 1}, "days": {"_count": 1}}, "revelation": {"_count": 1, "that": {"_count": 1}}, "scrupulously": {"_count": 1, "clean": {"_count": 1}}, "severity": {"_count": 1, "of": {"_count": 1}}, "madhouse": {"_count": 1, "has": {"_count": 1}}, "vein": {"_count": 1, "in": {"_count": 1}}, "miserable": {"_count": 1, "knot": {"_count": 1}}, "arrival": {"_count": 3, "of": {"_count": 2}, "on": {"_count": 1}}, "furious": {"_count": 1, "pretense": {"_count": 1}}, "letters": {"_count": 1, "from": {"_count": 1}}, "Kitchen": {"_count": 1, "Number": {"_count": 1}}, "remains": {"_count": 1, "of": {"_count": 1}}, "pipes": {"_count": 1, "gurgled": {"_count": 1}}, "Burrow": {"_count": 1, "": {"_count": 1}}, "restll": {"_count": 1, "be": {"_count": 1}}, "grimy": {"_count": 1, "fronts": {"_count": 1}}, "muffled": {"_count": 2, "pounding": {"_count": 1}, "figure": {"_count": 1}}, "headquarters": {"_count": 1, "of": {"_count": 1}}, "stereo": {"_count": 1, "in": {"_count": 1}}, "wizards": {"_count": 4, "behind": {"_count": 1}, "sealing": {"_count": 1}, "were": {"_count": 1}, "fled": {"_count": 1}}, "warm": {"_count": 1, "glow": {"_count": 1}}, "meetings": {"_count": 2, "over": {"_count": 2}}, "gloomy": {"_count": 2, "hallway": {"_count": 1}, "house": {"_count": 1}}, "motheaten": {"_count": 1, "velvet": {"_count": 1}}, "cloud": {"_count": 1, "of": {"_count": 1}}, "stew": {"_count": 1, "skidded": {"_count": 1}}, "bit": {"_count": 4, "about": {"_count": 2}, "of": {"_count": 2}}, "Order": {"_count": 9, "is": {"_count": 4}, "believes": {"_count": 1}, "of": {"_count": 4}}, "blank": {"_count": 3, "picture": {"_count": 2}, "parchment": {"_count": 1}}, "weapon": {"_count": 3, "Sirius": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "floorboard": {"_count": 1, "creaked": {"_count": 1}}, "carpet": {"_count": 1, "exhaled": {"_count": 1}}, "dedoxying": {"_count": 1, "of": {"_count": 1}}, "idiots": {"_count": 1, "are": {"_count": 1}}, "Mudblood": {"_count": 5, "is": {"_count": 2}, "touched": {"_count": 1}, "whos": {"_count": 1}, "Do": {"_count": 1}}, "tapestry": {"_count": 1, "looked": {"_count": 1}}, "pureblood": {"_count": 1, "families": {"_count": 1}}, "drawing": {"_count": 4, "room": {"_count": 4}}, "china": {"_count": 1, "which": {"_count": 1}}, "hearings": {"_count": 1, "on": {"_count": 1}}, "laws": {"_count": 1, "on": {"_count": 1}}, "rundown": {"_count": 1, "streets": {"_count": 1}}, "farther": {"_count": 2, "they": {"_count": 1}, "down": {"_count": 1}}, "peacockblue": {"_count": 1, "ceiling": {"_count": 1}}, "grilles": {"_count": 2, "slid": {"_count": 1}, "shut": {"_count": 1}}, "lift": {"_count": 11, "doors": {"_count": 6}, "clattered": {"_count": 1}, "doesnt": {"_count": 1}, "arrived": {"_count": 1}, "stopped": {"_count": 1}, "was": {"_count": 1}}, "doors": {"_count": 7, "closed": {"_count": 1}, "clanged": {"_count": 1}, "they": {"_count": 1}, "slid": {"_count": 2}, "of": {"_count": 1}, "opened": {"_count": 1}}, "remaining": {"_count": 3, "memos": {"_count": 1}, "two": {"_count": 1}, "Death": {"_count": 1}}, "Quibbler": {"_count": 33, "from": {"_count": 1}, "": {"_count": 11}, "again": {"_count": 2}, "upside": {"_count": 2}, "the": {"_count": 1}, "put": {"_count": 1}, "that": {"_count": 1}, "came": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "will": {"_count": 1}, "anywhere": {"_count": 1}, "but": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 2}, "interview": {"_count": 1}, "was": {"_count": 1}, "months": {"_count": 1}, "carried": {"_count": 1}, "said": {"_count": 1}}, "Atrium": {"_count": 3, "said": {"_count": 1}, "was": {"_count": 2}}, "plump": {"_count": 1, "witch": {"_count": 1}}, "accused": {"_count": 1, "being": {"_count": 1}}, "members": {"_count": 2, "of": {"_count": 2}}, "Wizengamot": {"_count": 4, "was": {"_count": 1}, "fell": {"_count": 1}, "were": {"_count": 2}}, "charges": {"_count": 2, "": {"_count": 1}, "against": {"_count": 1}}, "odds": {"_count": 1, "on": {"_count": 1}}, "Chair": {"_count": 1, "recognizes": {"_count": 1}}, "toadlike": {"_count": 1, "witch": {"_count": 1}}, "lines": {"_count": 1, "around": {"_count": 1}}, "Moody": {"_count": 1, "in": {"_count": 1}}, "image": {"_count": 1, "of": {"_count": 1}}, "figures": {"_count": 1, "of": {"_count": 1}}, "Stinksap": {"_count": 1, "vanished": {"_count": 1}}, "cartoon": {"_count": 1, "was": {"_count": 1}}, "headline": {"_count": 2, "on": {"_count": 1}, "of": {"_count": 1}}, "Hobgoblins": {"_count": 2, "who": {"_count": 1}, "was": {"_count": 1}}, "Quibblers": {"_count": 3, "rubbish": {"_count": 1}, "been": {"_count": 1}, "going": {"_count": 1}}, "coaches": {"_count": 1, "were": {"_count": 1}}, "carriages": {"_count": 1, "jingled": {"_count": 1}}, "Houses": {"_count": 1, "that": {"_count": 1}}, "warning": {"_count": 1, "history": {"_count": 1}}, "terrifiedlooking": {"_count": 1, "boy": {"_count": 1}}, "rare": {"_count": 1, "gifts": {"_count": 1}}, "treasure": {"_count": 1, "trove": {"_count": 1}}, "quiet": {"_count": 1, "that": {"_count": 1}}, "staff": {"_count": 2, "followed": {"_count": 1}, "was": {"_count": 1}}, "enchanted": {"_count": 2, "ceiling": {"_count": 2}}, "ingredients": {"_count": 2, "and": {"_count": 1}, "had": {"_count": 1}}, "Draught": {"_count": 1, "of": {"_count": 1}}, "Dream": {"_count": 5, "Oracle": {"_count": 5}}, "constant": {"_count": 1, "changing": {"_count": 1}}, "chapter": {"_count": 2, "they": {"_count": 1}, "ended": {"_count": 1}}, "funny": {"_count": 1, "thing": {"_count": 1}}, "hats": {"_count": 1, "have": {"_count": 1}}, "surfaces": {"_count": 1, "had": {"_count": 1}}, "pause": {"_count": 1, "in": {"_count": 1}}, "detritus": {"_count": 1, "of": {"_count": 1}}, "straw": {"_count": 1, "covered": {"_count": 1}}, "treetops": {"_count": 1, "of": {"_count": 1}}, "Tornadohater": {"_count": 1, "": {"_count": 1}}, "risk": {"_count": 2, "wouldve": {"_count": 2}}, "general": {"_count": 1, "standard": {"_count": 1}}, "abrupt": {"_count": 1, "fall": {"_count": 1}}, "snail": {"_count": 1, "as": {"_count": 1}}, "bowl": {"_count": 1, "of": {"_count": 1}}, "morning": {"_count": 3, "of": {"_count": 3}}, "sign": {"_count": 3, "creaked": {"_count": 1}, "of": {"_count": 2}}, "Hogs": {"_count": 3, "Head": {"_count": 3}}, "bay": {"_count": 1, "windows": {"_count": 1}}, "barman": {"_count": 6, "sidled": {"_count": 1}, "had": {"_count": 1}, "glared": {"_count": 1}, "entered": {"_count": 1}, "grunted": {"_count": 1}, "nodded": {"_count": 1}}, "barmans": {"_count": 2, "eyes": {"_count": 1}, "face": {"_count": 1}}, "group": {"_count": 2, "focused": {"_count": 1}, "of": {"_count": 1}}, "reaction": {"_count": 1, "was": {"_count": 1}}, "phrase": {"_count": 2, "stirred": {"_count": 1}, "fell": {"_count": 1}}, "veiled": {"_count": 1, "witch": {"_count": 1}}, "knowledge": {"_count": 5, "that": {"_count": 2}, "would": {"_count": 1}, "had": {"_count": 1}, "can": {"_count": 1}}, "above": {"_count": 4, "is": {"_count": 4}}, "happiness": {"_count": 3, "that": {"_count": 1}, "was": {"_count": 1}, "Harry": {"_count": 1}}, "prefects": {"_count": 1, "as": {"_count": 1}}, "fool": {"_count": 1, "honestly": {"_count": 1}}, "establishment": {"_count": 1, "": {"_count": 1}}, "Case": {"_count": 1, "for": {"_count": 1}}, "bullfrog": {"_count": 1, "on": {"_count": 1}}, "raven": {"_count": 2, "cawed": {"_count": 1}, "continued": {"_count": 1}}, "Defense": {"_count": 1, "Association": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "coin": {"_count": 1, "gleamed": {"_count": 1}}, "coins": {"_count": 1, "will": {"_count": 1}}, "Ravenclaws": {"_count": 3, "and": {"_count": 1}, "were": {"_count": 2}}, "skies": {"_count": 1, "and": {"_count": 1}}, "frosty": {"_count": 2, "grass": {"_count": 2}}, "balls": {"_count": 1, "were": {"_count": 1}}, "howling": {"_count": 1, "and": {"_count": 1}}, "High": {"_count": 2, "Inquisitor": {"_count": 1}, "Street": {"_count": 1}}, "stolen": {"_count": 1, "Snitch": {"_count": 1}}, "bolt": {"_count": 1, "was": {"_count": 1}}, "men": {"_count": 1, "fight": {"_count": 1}}, "small": {"_count": 3, "patch": {"_count": 1}, "eyes": {"_count": 1}, "golden": {"_count": 1}}, "stuff": {"_count": 2, "Ive": {"_count": 1}, "was": {"_count": 1}}, "dream": {"_count": 1, "changed": {"_count": 1}}, "portraits": {"_count": 6, "of": {"_count": 4}, "on": {"_count": 1}, "that": {"_count": 1}}, "instrument": {"_count": 1, "tinkled": {"_count": 1}}, "smoke": {"_count": 2, "serpent": {"_count": 1}, "and": {"_count": 1}}, "clinking": {"_count": 1, "noise": {"_count": 1}}, "shoes": {"_count": 1, "dont": {"_count": 1}}, "ward": {"_count": 1, "was": {"_count": 1}}, "fleshcolored": {"_count": 1, "strings": {"_count": 1}}, "tarnished": {"_count": 1, "chandeliers": {"_count": 1}}, "reception": {"_count": 1, "area": {"_count": 1}}, "Healer": {"_count": 1, "pointed": {"_count": 1}}, "magical": {"_count": 1, "defense": {"_count": 1}}, "adults": {"_count": 1, "seemed": {"_count": 1}}, "bus": {"_count": 1, "moved": {"_count": 1}}, "six": {"_count": 1, "of": {"_count": 1}}, "mind": {"_count": 2, "is": {"_count": 2}}, "curse": {"_count": 3, "that": {"_count": 1}, "Dolohov": {"_count": 1}, "didnt": {"_count": 1}}, "evidence": {"_count": 2, "suggests": {"_count": 1}, "is": {"_count": 1}}, "subject": {"_count": 1, "of": {"_count": 1}}, "poster": {"_count": 1, "By": {"_count": 1}}, "ten": {"_count": 1, "escaped": {"_count": 1}}, "hair": {"_count": 1, "that": {"_count": 1}}, "scarlet": {"_count": 1, "paint": {"_count": 1}}, "QuickQuotes": {"_count": 1, "Quill": {"_count": 1}}, "Quibbleii": {"_count": 1, "she": {"_count": 1}}, "Snackboxes": {"_count": 1, "are": {"_count": 1}}, "miracle": {"_count": 1, "was": {"_count": 1}}, "message": {"_count": 2, "apparently": {"_count": 1}, "said": {"_count": 1}}, "kneeling": {"_count": 1, "man": {"_count": 1}}, "week": {"_count": 2, "did": {"_count": 1}, "that": {"_count": 1}}, "attempt": {"_count": 1, "is": {"_count": 1}}, "attemps": {"_count": 1, "cornin": {"_count": 1}}, "Malfoy": {"_count": 2, "boy": {"_count": 2}}, "minister": {"_count": 1, "is": {"_count": 1}}, "purpose": {"_count": 1, "of": {"_count": 1}}, "latter": {"_count": 3, "gave": {"_count": 1}, "included": {"_count": 1}, "I": {"_count": 1}}, "dust": {"_count": 2, "was": {"_count": 1}, "vanished": {"_count": 1}}, "wreckage": {"_count": 2, "of": {"_count": 2}}, "notices": {"_count": 1, "had": {"_count": 1}}, "Inquisitorial": {"_count": 2, "Squad": {"_count": 2}}, "headmistress": {"_count": 1, "would": {"_count": 1}}, "Potter": {"_count": 1, "boy": {"_count": 1}}, "might": {"_count": 1, "of": {"_count": 1}}, "fireworks": {"_count": 1, "continued": {"_count": 1}}, "upshot": {"_count": 2, "of": {"_count": 2}}, "whizzes": {"_count": 1, "and": {"_count": 1}}, "sunlight": {"_count": 1, "was": {"_count": 1}}, "summers": {"_count": 1, "day": {"_count": 1}}, "lump": {"_count": 1, "in": {"_count": 1}}, "final": {"_count": 1, "match": {"_count": 1}}, "breaking": {"_count": 1, "of": {"_count": 1}}, "rim": {"_count": 1, "of": {"_count": 1}}, "legs": {"_count": 1, "were": {"_count": 1}}, "purposeful": {"_count": 1, "feverish": {"_count": 1}}, "famous": {"_count": 1, "Potter": {"_count": 1}}, "afternoon": {"_count": 2, "practical": {"_count": 1}, "wore": {"_count": 1}}, "practical": {"_count": 1, "examination": {"_count": 1}}, "Astronomy": {"_count": 1, "theory": {"_count": 1}}, "commotion": {"_count": 1, "out": {"_count": 1}}, "Formation": {"_count": 1, "of": {"_count": 1}}, "confederation": {"_count": 1, "had": {"_count": 1}}, "examination": {"_count": 1, "is": {"_count": 1}}, "garish": {"_count": 1, "kittens": {"_count": 1}}, "chestnutbodied": {"_count": 1, "centaur": {"_count": 1}}, "gray": {"_count": 1, "centaur": {"_count": 1}}, "clearing": {"_count": 1, "was": {"_count": 1}}, "CrumpleHorned": {"_count": 2, "Snorkack": {"_count": 2}}, "thestral": {"_count": 1, "streaked": {"_count": 1}}, "cooling": {"_count": 1, "air": {"_count": 1}}, "thestrals": {"_count": 1, "head": {"_count": 1}}, "scavenging": {"_count": 1, "thestrals": {"_count": 1}}, "circular": {"_count": 2, "wall": {"_count": 1}, "office": {"_count": 1}}, "pointed": {"_count": 1, "archway": {"_count": 1}}, "gently": {"_count": 1, "rippling": {"_count": 1}}, "knot": {"_count": 1, "in": {"_count": 1}}, "jet": {"_count": 3, "of": {"_count": 3}}, "cabinet": {"_count": 1, "fell": {"_count": 1}}, "babyheaded": {"_count": 1, "Death": {"_count": 1}}, "recent": {"_count": 1, "blow": {"_count": 1}}, "prophecy": {"_count": 7, "was": {"_count": 2}, "had": {"_count": 1}, "give": {"_count": 1}, "smashed": {"_count": 1}, "could": {"_count": 1}, "did": {"_count": 1}}, "hem": {"_count": 1, "of": {"_count": 1}}, "tank": {"_count": 1, "rose": {"_count": 1}}, "brains": {"_count": 1, "slipped": {"_count": 1}}, "statue": {"_count": 2, "of": {"_count": 1}, "stood": {"_count": 1}}, "headless": {"_count": 1, "statue": {"_count": 1}}, "force": {"_count": 5, "of": {"_count": 5}}, "head": {"_count": 1, "glowed": {"_count": 1}}, "polished": {"_count": 1, "wooden": {"_count": 1}}, "delicate": {"_count": 1, "silver": {"_count": 1}}, "guilt": {"_count": 1, "filling": {"_count": 1}}, "fountain": {"_count": 1, "we": {"_count": 1}}, "glass": {"_count": 2, "case": {"_count": 1}, "of": {"_count": 1}}, "prophecys": {"_count": 1, "smashed": {"_count": 1}}, "applicant": {"_count": 1, "however": {"_count": 1}}, "slowly": {"_count": 1, "revolving": {"_count": 1}}, "odd": {"_count": 3, "thing": {"_count": 2}, "chill": {"_count": 1}}, "official": {"_count": 2, "record": {"_count": 1}, "version": {"_count": 1}}, "Ministers": {"_count": 1, "statement": {"_count": 1}}, "hot": {"_count": 1, "sun": {"_count": 1}}, "frustrated": {"_count": 1, "face": {"_count": 1}}, "Prime": {"_count": 17, "Ministers": {"_count": 3}, "Minister": {"_count": 14}}, "bridge": {"_count": 1, "was": {"_count": 1}}, "Brockdale": {"_count": 3, "Bridge": {"_count": 3}}, "move": {"_count": 1, "should": {"_count": 1}}, "Office": {"_count": 1, "of": {"_count": 1}}, "papers": {"_count": 1, "had": {"_count": 1}}, "fox": {"_count": 1, "froze": {"_count": 1}}, "harsh": {"_count": 1, "cry": {"_count": 1}}, "pursuer": {"_count": 1, "caught": {"_count": 1}}, "sisters": {"_count": 2, "copied": {"_count": 1}, "considered": {"_count": 1}}, "duel": {"_count": 1, "with": {"_count": 1}}, "Unbreakable": {"_count": 1, "Vow": {"_count": 1}}, "misty": {"_count": 1, "fug": {"_count": 1}}, "nature": {"_count": 1, "of": {"_count": 1}}, "current": {"_count": 1, "whereabouts": {"_count": 1}}, "Wizarding": {"_count": 2, "community": {"_count": 2}}, "slightly": {"_count": 1, "problematic": {"_count": 1}}, "situation": {"_count": 3, "is": {"_count": 2}, "with": {"_count": 1}}, "magic": {"_count": 1, "I": {"_count": 1}}, "sensation": {"_count": 1, "does": {"_count": 1}}, "church": {"_count": 1, "clock": {"_count": 1}}, "leaflet": {"_count": 1, "wasnt": {"_count": 1}}, "furniture": {"_count": 1, "flew": {"_count": 1}}, "dazzling": {"_count": 1, "sunlight": {"_count": 1}}, "Prophets": {"_count": 2, "got": {"_count": 1}, "often": {"_count": 1}}, "Healers": {"_count": 1, "Helpmate": {"_count": 1}}, "wandmaker": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "took": {"_count": 1}, "still": {"_count": 1}}, "colorful": {"_count": 1, "glittering": {"_count": 1}}, "lefthand": {"_count": 1, "window": {"_count": 1}}, "packaging": {"_count": 1, "on": {"_count": 1}}, "proprietor": {"_count": 1, "of": {"_count": 1}}, "corridors": {"_count": 3, "which": {"_count": 1}, "were": {"_count": 1}, "outside": {"_count": 1}}, "exception": {"_count": 2, "was": {"_count": 1}, "sits": {"_count": 1}}, "Chosen": {"_count": 4, "One": {"_count": 4}}, "lanterns": {"_count": 1, "swinging": {"_count": 1}}, "Express": {"_count": 1, "was": {"_count": 1}}, "fury": {"_count": 1, "and": {"_count": 1}}, "talk": {"_count": 1, "and": {"_count": 1}}, "castles": {"_count": 1, "magical": {"_count": 1}}, "scowling": {"_count": 1, "boy": {"_count": 1}}, "distribution": {"_count": 1, "of": {"_count": 1}}, "sixth": {"_count": 1, "year": {"_count": 1}}, "concentration": {"_count": 1, "within": {"_count": 1}}, "sopophorous": {"_count": 1, "bean": {"_count": 1}}, "clear": {"_count": 1, "winner": {"_count": 1}}, "HalfBlood": {"_count": 3, "Prince": {"_count": 2}, "what": {"_count": 1}}, "Principles": {"_count": 1, "of": {"_count": 1}}, "arm": {"_count": 1, "pointing": {"_count": 1}}, "lane": {"_count": 2, "curved": {"_count": 1}, "was": {"_count": 1}}, "house": {"_count": 2, "seemed": {"_count": 1}, "": {"_count": 1}}, "pot": {"_count": 1, "mended": {"_count": 1}}, "jingling": {"_count": 3, "clopping": {"_count": 2}, "and": {"_count": 1}}, "sons": {"_count": 1, "quite": {"_count": 1}}, "Muggle": {"_count": 3, "Morfin": {"_count": 1}, "authorities": {"_count": 1}, "boy": {"_count": 1}}, "cover": {"_count": 1, "fell": {"_count": 1}}, "headmasters": {"_count": 2, "chair": {"_count": 1}, "and": {"_count": 1}}, "process": {"_count": 1, "took": {"_count": 1}}, "walk": {"_count": 1, "into": {"_count": 1}}, "road": {"_count": 1, "to": {"_count": 1}}, "bitter": {"_count": 1, "wind": {"_count": 1}}, "street": {"_count": 1, "was": {"_count": 1}}, "exceptions": {"_count": 1, "were": {"_count": 1}}, "label": {"_count": 1, "said": {"_count": 1}}, "sleetspattered": {"_count": 1, "windows": {"_count": 1}}, "Pensieve": {"_count": 1, "was": {"_count": 1}}, "orphans": {"_count": 1, "Harry": {"_count": 1}}, "asylum": {"_count": 1, "thats": {"_count": 1}}, "adult": {"_count": 2, "Voldemort": {"_count": 1}, "Snape": {"_count": 1}}, "rings": {"_count": 1, "gone": {"_count": 1}}, "weekends": {"_count": 1, "brutal": {"_count": 1}}, "Gwenog": {"_count": 1, "Jones": {"_count": 1}}, "pod": {"_count": 1, "flew": {"_count": 1}}, "crash": {"_count": 1, "however": {"_count": 1}}, "honest": {"_count": 2, "answer": {"_count": 2}}, "rumors": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "stories": {"_count": 1, "": {"_count": 1}}, "omens": {"_count": 1, "were": {"_count": 1}}, "gnome": {"_count": 3, "under": {"_count": 1}, "had": {"_count": 2}}, "Gaunts": {"_count": 1, "house": {"_count": 1}}, "soft": {"_count": 2, "golden": {"_count": 1}, "voice": {"_count": 1}}, "fog": {"_count": 1, "cleared": {"_count": 1}}, "dense": {"_count": 1, "fog": {"_count": 1}}, "poison": {"_count": 1, "could": {"_count": 1}}, "drowsing": {"_count": 1, "creature": {"_count": 1}}, "locket": {"_count": 7, "maybe": {"_count": 1}, "": {"_count": 2}, "they": {"_count": 1}, "was": {"_count": 2}, "you": {"_count": 1}}, "younger": {"_count": 1, "Dumbledore": {"_count": 1}}, "Dumbledore": {"_count": 6, "behind": {"_count": 1}, "family": {"_count": 2}, "we": {"_count": 2}, "in": {"_count": 1}}, "aftermath": {"_count": 1, "of": {"_count": 1}}, "Room": {"_count": 2, "of": {"_count": 2}}, "Inferius": {"_count": 1, "is": {"_count": 1}}, "sewers": {"_count": 1, "maybe": {"_count": 1}}, "mission": {"_count": 1, "whatever": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "Potions": {"_count": 1, "master": {"_count": 1}}, "careless": {"_count": 1, "way": {"_count": 1}}, "seventh": {"_count": 1, "part": {"_count": 1}}, "ring": {"_count": 4, "Harry": {"_count": 1}, "is": {"_count": 1}, "the": {"_count": 1}, "surely": {"_count": 1}}, "battle": {"_count": 4, "still": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}}, "runup": {"_count": 1, "to": {"_count": 1}}, "loud": {"_count": 1, "crash": {"_count": 1}}, "flow": {"_count": 1, "of": {"_count": 1}}, "bathroom": {"_count": 1, "seemed": {"_count": 1}}, "Prince": {"_count": 1, "only": {"_count": 1}}, "socalled": {"_count": 1, "HalfBlood": {"_count": 1}}, "lower": {"_count": 1, "rocks": {"_count": 1}}, "fissure": {"_count": 1, "soon": {"_count": 1}}, "slimy": {"_count": 1, "walls": {"_count": 1}}, "blazing": {"_count": 1, "silver": {"_count": 1}}, "bloodspattered": {"_count": 1, "rock": {"_count": 1}}, "greenish": {"_count": 1, "glow": {"_count": 1}}, "ripples": {"_count": 1, "had": {"_count": 1}}, "island": {"_count": 1, "was": {"_count": 1}}, "Inferi": {"_count": 1, "bumped": {"_count": 1}}, "protection": {"_count": 1, "was": {"_count": 1}}, "archway": {"_count": 1, "will": {"_count": 1}}, "ramparts": {"_count": 1, "were": {"_count": 1}}, "Avada": {"_count": 1, "Kedavra": {"_count": 1}}, "cases": {"_count": 1, "are": {"_count": 1}}, "death": {"_count": 1, "of": {"_count": 1}}, "beautiful": {"_count": 1, "weather": {"_count": 1}}, "warmth": {"_count": 1, "of": {"_count": 1}}, "mens": {"_count": 1, "long": {"_count": 1}}, "yew": {"_count": 1, "hedges": {"_count": 1}}, "hallway": {"_count": 1, "was": {"_count": 1}}, "rooms": {"_count": 1, "usual": {"_count": 1}}, "interest": {"_count": 1, "around": {"_count": 1}}, "Orders": {"_count": 1, "got": {"_count": 1}}, "gesture": {"_count": 1, "was": {"_count": 1}}, "hilarity": {"_count": 1, "mounted": {"_count": 1}}, "dwindling": {"_count": 1, "of": {"_count": 1}}, "flash": {"_count": 1, "of": {"_count": 1}}, "Practical": {"_count": 1, "Potioneer": {"_count": 1}}, "answers": {"_count": 1, "to": {"_count": 1}}, "Life": {"_count": 6, "and": {"_count": 6}}, "advance": {"_count": 1, "publicity": {"_count": 1}}, "broken": {"_count": 1, "bit": {"_count": 1}}, "nextdoor": {"_count": 1, "neighbors": {"_count": 1}}, "unique": {"_count": 1, "position": {"_count": 1}}, "hopes": {"_count": 1, "of": {"_count": 1}}, "Trace": {"_count": 2, "the": {"_count": 1}, "breaks": {"_count": 1}}, "pairs": {"_count": 1, "will": {"_count": 1}}, "broomstick": {"_count": 1, "spun": {"_count": 1}}, "motorbike": {"_count": 2, "zoomed": {"_count": 1}, "sped": {"_count": 1}}, "sidecar": {"_count": 1, "rose": {"_count": 1}}, "jinx": {"_count": 2, "hit": {"_count": 1}, "broke": {"_count": 1}}, "Portkey": {"_count": 2, "he": {"_count": 1}, "s": {"_count": 1}}, "realization": {"_count": 2, "crashed": {"_count": 1}, "of": {"_count": 1}}, "slightest": {"_count": 1, "breath": {"_count": 1}}, "firewhisky": {"_count": 2, "seared": {"_count": 1}, "seemed": {"_count": 1}}, "suddenness": {"_count": 1, "and": {"_count": 1}}, "bike": {"_count": 1, "was": {"_count": 1}}, "connection": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "Tracell": {"_count": 1, "break": {"_count": 1}}, "mangle": {"_count": 1, "turned": {"_count": 1}}, "kindest": {"_count": 1, "explanation": {"_count": 1}}, "measures": {"_count": 1, "they": {"_count": 1}}, "fragment": {"_count": 1, "of": {"_count": 1}}, "Delacours": {"_count": 2, "arrived": {"_count": 1}, "it": {"_count": 1}}, "rusty": {"_count": 1, "cauldrons": {"_count": 1}}, "chickens": {"_count": 1, "had": {"_count": 1}}, "Norwegian": {"_count": 1, "Ridgeback": {"_count": 1}}, "er": {"_count": 1, "sitting": {"_count": 1}}, "vast": {"_count": 1, "majority": {"_count": 1}}, "Tales": {"_count": 12, "of": {"_count": 12}}, "solitary": {"_count": 1, "lamp": {"_count": 1}}, "circumstance": {"_count": 1, "of": {"_count": 1}}, "Fountain": {"_count": 1, "of": {"_count": 1}}, "Wizard": {"_count": 1, "and": {"_count": 1}}, "supporting": {"_count": 1, "poles": {"_count": 1}}, "marquee": {"_count": 1, "was": {"_count": 1}}, "tuftyhaired": {"_count": 1, "wizard": {"_count": 1}}, "emptiest": {"_count": 1, "was": {"_count": 1}}, "band": {"_count": 1, "had": {"_count": 1}}, "strange": {"_count": 2, "triangular": {"_count": 1}, "idea": {"_count": 1}}, "Lovegoods": {"_count": 1, "are": {"_count": 1}}, "cross": {"_count": 1, "section": {"_count": 1}}, "holly": {"_count": 2, "and": {"_count": 2}}, "recitation": {"_count": 1, "of": {"_count": 1}}, "author": {"_count": 1, "of": {"_count": 1}}, "Dumbledores": {"_count": 2, "moved": {"_count": 1}, "lived": {"_count": 1}}, "gumchewing": {"_count": 1, "waitress": {"_count": 1}}, "waitress": {"_count": 1, "had": {"_count": 1}}, "larger": {"_count": 1, "of": {"_count": 1}}, "severed": {"_count": 1, "ropes": {"_count": 1}}, "grief": {"_count": 1, "that": {"_count": 1}}, "accusations": {"_count": 1, "he": {"_count": 1}}, "teenage": {"_count": 1, "Sirius": {"_count": 1}}, "Black": {"_count": 1, "family": {"_count": 1}}, "drawers": {"_count": 1, "contents": {"_count": 1}}, "DDark": {"_count": 1, "Lord": {"_count": 1}}, "presence": {"_count": 1, "of": {"_count": 1}}, "intruder": {"_count": 1, "took": {"_count": 1}}, "dustfigure": {"_count": 1, "exploded": {"_count": 1}}, "coup": {"_count": 1, "has": {"_count": 1}}, "mother": {"_count": 1, "Kendra": {"_count": 1}}, "timing": {"_count": 1, "was": {"_count": 1}}, "inhabitants": {"_count": 1, "of": {"_count": 1}}, "lurkers": {"_count": 1, "were": {"_count": 1}}, "watchers": {"_count": 1, "seemed": {"_count": 1}}, "quality": {"_count": 1, "of": {"_count": 1}}, "painted": {"_count": 1, "image": {"_count": 1}}, "buildings": {"_count": 1, "on": {"_count": 1}}, "plaque": {"_count": 1, "beneath": {"_count": 1}}, "young": {"_count": 1, "witch": {"_count": 1}}, "desk": {"_count": 1, "was": {"_count": 1}}, "pamphletmakers": {"_count": 1, "were": {"_count": 1}}, "petrified": {"_count": 1, "Muggleborns": {"_count": 1}}, "eyeless": {"_count": 1, "faces": {"_count": 1}}, "brats": {"_count": 1, "of": {"_count": 1}}, "S": {"_count": 1, "stands": {"_count": 1}}, "stags": {"_count": 1, "light": {"_count": 1}}, "chains": {"_count": 1, "clinked": {"_count": 1}}, "balding": {"_count": 2, "wizard": {"_count": 1}, "wizards": {"_count": 1}}, "wound": {"_count": 1, "now": {"_count": 1}}, "interior": {"_count": 1, "was": {"_count": 1}}, "tea": {"_count": 1, "seemed": {"_count": 1}}, "surrounding": {"_count": 1, "silence": {"_count": 1}}, "hanging": {"_count": 1, "mans": {"_count": 1}}, "theft": {"_count": 1, "had": {"_count": 1}}, "wooden": {"_count": 1, "slats": {"_count": 1}}, "argument": {"_count": 2, "about": {"_count": 1}, "became": {"_count": 1}}, "orphanage": {"_count": 3, "where": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "thief": {"_count": 2, "who": {"_count": 1}, "took": {"_count": 1}}, "enchantments": {"_count": 1, "they": {"_count": 1}}, "voices": {"_count": 1, "became": {"_count": 1}}, "delicious": {"_count": 1, "smell": {"_count": 1}}, "original": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "muddy": {"_count": 1, "river": {"_count": 1}}, "instant": {"_count": 1, "they": {"_count": 1}}, "muscles": {"_count": 1, "in": {"_count": 1}}, "villages": {"_count": 1, "of": {"_count": 1}}, "graveyard": {"_count": 1, "is": {"_count": 1}}, "life": {"_count": 1, "he": {"_count": 1}}, "beaded": {"_count": 1, "bag": {"_count": 1}}, "grave": {"_count": 1, "was": {"_count": 1}}, "headstone": {"_count": 1, "was": {"_count": 1}}, "hedge": {"_count": 1, "had": {"_count": 1}}, "odor": {"_count": 1, "of": {"_count": 1}}, "child": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "began": {"_count": 1}}, "gate": {"_count": 2, "creaked": {"_count": 2}}, "green": {"_count": 3, "light": {"_count": 2}, "eyes": {"_count": 1}}, "wood": {"_count": 1, "had": {"_count": 1}}, "dangling": {"_count": 1, "half": {"_count": 1}}, "feeble": {"_count": 1, "attempt": {"_count": 1}}, "pure": {"_count": 1, "colorless": {"_count": 1}}, "pouch": {"_count": 1, "was": {"_count": 1}}, "Greater": {"_count": 1, "Good": {"_count": 1}}, "fires": {"_count": 1, "lit": {"_count": 1}}, "prison": {"_count": 1, "Grindelwald": {"_count": 1}}, "Forest": {"_count": 1, "of": {"_count": 1}}, "imprint": {"_count": 1, "of": {"_count": 1}}, "ice": {"_count": 1, "reflected": {"_count": 1}}, "chain": {"_count": 1, "of": {"_count": 1}}, "ground": {"_count": 1, "around": {"_count": 1}}, "Horcrux": {"_count": 1, "was": {"_count": 1}}, "monstrous": {"_count": 1, "versions": {"_count": 1}}, "invisible": {"_count": 1, "shield": {"_count": 1}}, "Deluminator": {"_count": 2, "": {"_count": 1}, "turned": {"_count": 1}}, "sudden": {"_count": 1, "upswing": {"_count": 1}}, "signature": {"_count": 1, "said": {"_count": 1}}, "cluster": {"_count": 1, "of": {"_count": 1}}, "zigzagging": {"_count": 1, "path": {"_count": 1}}, "Deathly": {"_count": 5, "Hallows": {"_count": 5}}, "Tale": {"_count": 3, "of": {"_count": 3}}, "Elder": {"_count": 7, "Wand": {"_count": 7}}, "Resurrection": {"_count": 4, "Stone": {"_count": 4}}, "Cloak": {"_count": 6, "of": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "wouldnt": {"_count": 1}, "couldnt": {"_count": 1}}, "possessor": {"_count": 1, "would": {"_count": 1}}, "bloody": {"_count": 2, "trail": {"_count": 2}}, "trail": {"_count": 1, "goes": {"_count": 1}}, "expression": {"_count": 1, "was": {"_count": 1}}, "Deathstick": {"_count": 1, "the": {"_count": 1}}, "bed": {"_count": 1, "had": {"_count": 1}}, "bowls": {"_count": 1, "bounced": {"_count": 1}}, "bust": {"_count": 1, "of": {"_count": 1}}, "printing": {"_count": 1, "press": {"_count": 1}}, "Peverell": {"_count": 2, "coat": {"_count": 1}, "brothers": {"_count": 1}}, "change": {"_count": 1, "in": {"_count": 1}}, "downpour": {"_count": 1, "pursued": {"_count": 1}}, "visions": {"_count": 1, "he": {"_count": 1}}, "lot": {"_count": 1, "that": {"_count": 1}}, "program": {"_count": 1, "I": {"_count": 1}}, "Boy": {"_count": 2, "Who": {"_count": 2}}, "radios": {"_count": 1, "dial": {"_count": 1}}, "names": {"_count": 1, "Taboo": {"_count": 1}}, "relish": {"_count": 1, "in": {"_count": 1}}, "Snatchers": {"_count": 1, "were": {"_count": 1}}, "werewolf": {"_count": 2, "might": {"_count": 1}, "was": {"_count": 1}}, "prisoners": {"_count": 3, "were": {"_count": 1}, "lurched": {"_count": 1}, "must": {"_count": 1}}, "iron": {"_count": 1, "was": {"_count": 1}}, "gates": {"_count": 1, "swung": {"_count": 1}}, "emaciated": {"_count": 1, "figure": {"_count": 1}}, "frail": {"_count": 1, "man": {"_count": 1}}, "dreadfully": {"_count": 1, "familiar": {"_count": 1}}, "echoing": {"_count": 1, "bang": {"_count": 1}}, "cellar": {"_count": 1, "is": {"_count": 1}}, "eye": {"_count": 2, "blinked": {"_count": 1}, "Harry": {"_count": 1}}, "chandelier": {"_count": 1, "crashed": {"_count": 1}}, "sea": {"_count": 2, "was": {"_count": 1}, "gushed": {"_count": 1}}, "steady": {"_count": 1, "rhythm": {"_count": 1}}, "safest": {"_count": 1, "place": {"_count": 1}}, "hands": {"_count": 1, "that": {"_count": 1}}, "rising": {"_count": 1, "sun": {"_count": 1}}, "owner": {"_count": 1, "of": {"_count": 1}}, "reddish": {"_count": 1, "mound": {"_count": 1}}, "unbeatable": {"_count": 2, "wand": {"_count": 2}}, "tomb": {"_count": 1, "split": {"_count": 1}}, "shrouded": {"_count": 1, "figure": {"_count": 1}}, "wrappings": {"_count": 1, "fell": {"_count": 1}}, "spiderlike": {"_count": 1, "hand": {"_count": 1}}, "enormity": {"_count": 1, "of": {"_count": 1}}, "swords": {"_count": 1, "ours": {"_count": 1}}, "tiara": {"_count": 1, "sat": {"_count": 1}}, "dawn": {"_count": 1, "was": {"_count": 1}}, "bar": {"_count": 1, "of": {"_count": 1}}, "crooked": {"_count": 1, "cobbled": {"_count": 1}}, "Probes": {"_count": 1, "Harry": {"_count": 1}}, "Thiefs": {"_count": 2, "Downfall": {"_count": 2}}, "beasts": {"_count": 1, "scales": {"_count": 1}}, "shelf": {"_count": 1, "on": {"_count": 1}}, "blistered": {"_count": 1, "goblin": {"_count": 1}}, "clanking": {"_count": 1, "on": {"_count": 1}}, "tethered": {"_count": 1, "dragon": {"_count": 1}}, "cuffs": {"_count": 1, "broke": {"_count": 1}}, "scales": {"_count": 1, "were": {"_count": 1}}, "landscape": {"_count": 1, "seemed": {"_count": 1}}, "scream": {"_count": 2, "of": {"_count": 1}, "was": {"_count": 1}}, "flapping": {"_count": 1, "of": {"_count": 1}}, "Summoning": {"_count": 1, "Charm": {"_count": 1}}, "bright": {"_count": 1, "blue": {"_count": 1}}, "events": {"_count": 1, "that": {"_count": 1}}, "Quihhler": {"_count": 1, "so": {"_count": 1}}, "Carrows": {"_count": 3, "never": {"_count": 1}, "seemed": {"_count": 1}, "were": {"_count": 1}}, "lost": {"_count": 1, "diadem": {"_count": 1}}, "deserted": {"_count": 1, "Ravenclaw": {"_count": 1}}, "slopingshouldered": {"_count": 1, "figure": {"_count": 1}}, "ddiadem": {"_count": 1, "of": {"_count": 1}}, "Patronuses": {"_count": 1, "ran": {"_count": 1}}, "aged": {"_count": 1, "caretaker": {"_count": 1}}, "inexplicable": {"_count": 1, "absence": {"_count": 1}}, "Gray": {"_count": 1, "Lady": {"_count": 1}}, "Baron": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "furor": {"_count": 1, "of": {"_count": 1}}, "wandless": {"_count": 1, "Malfoy": {"_count": 1}}, "diadem": {"_count": 1, "seemed": {"_count": 1}}, "single": {"_count": 1, "unblocked": {"_count": 1}}, "fighters": {"_count": 1, "scattered": {"_count": 1}}, "gargantuan": {"_count": 1, "monster": {"_count": 1}}, "twig": {"_count": 1, "flew": {"_count": 1}}, "stab": {"_count": 1, "of": {"_count": 1}}, "hand": {"_count": 1, "holding": {"_count": 1}}, "flagstones": {"_count": 1, "of": {"_count": 1}}, "survivors": {"_count": 1, "stood": {"_count": 1}}, "injured": {"_count": 1, "were": {"_count": 1}}, "memories": {"_count": 1, "swirled": {"_count": 1}}, "playground": {"_count": 1, "was": {"_count": 1}}, "flower": {"_count": 1, "sat": {"_count": 1}}, "branch": {"_count": 1, "caught": {"_count": 1}}, "roll": {"_count": 1, "call": {"_count": 1}}, "intensity": {"_count": 1, "of": {"_count": 1}}, "hilltop": {"_count": 1, "faded": {"_count": 1}}, "images": {"_count": 1, "of": {"_count": 1}}, "awfulness": {"_count": 1, "of": {"_count": 1}}, "suffocating": {"_count": 1, "feeling": {"_count": 1}}, "triangle": {"_count": 1, "and": {"_count": 1}}, "childish": {"_count": 1, "question": {"_count": 1}}, "remnants": {"_count": 1, "of": {"_count": 1}}, "illusion": {"_count": 1, "was": {"_count": 1}}, "giants": {"_count": 1, "roared": {"_count": 1}}, "cores": {"_count": 1, "reacted": {"_count": 1}}, "Hallows": {"_count": 1, "the": {"_count": 1}}, "whisper": {"_count": 2, "was": {"_count": 2}}, "victorious": {"_count": 1, "procession": {"_count": 1}}, "son": {"_count": 1, "of": {"_count": 1}}, "emblem": {"_count": 1, "shield": {"_count": 1}}, "slash": {"_count": 1, "of": {"_count": 1}}, "charging": {"_count": 1, "centaurs": {"_count": 1}}, "yell": {"_count": 1, "of": {"_count": 1}}, "bang": {"_count": 1, "was": {"_count": 1}}, "fierce": {"_count": 1, "new": {"_count": 1}}, "previous": {"_count": 1, "master": {"_count": 1}}, "commuters": {"_count": 1, "stared": {"_count": 1}}, "five": {"_count": 1, "Potters": {"_count": 1}}}, "s": {"_count": 655, "had": {"_count": 2, "a": {"_count": 1}, "done": {"_count": 1}}, "heavy": {"_count": 1, "coat": {"_count": 1}}, "coat": {"_count": 2, "": {"_count": 1}, "seemed": {"_count": 1}}, "face": {"_count": 37, "had": {"_count": 1}, "was": {"_count": 5}, "": {"_count": 12}, "worked": {"_count": 1}, "that": {"_count": 1}, "when": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}, "swam": {"_count": 2}, "as": {"_count": 3}, "no": {"_count": 1}, "flushed": {"_count": 1}, "into": {"_count": 1}, "darkened": {"_count": 1}, "crumpled": {"_count": 1}, "which": {"_count": 1}, "and": {"_count": 1}, "losing": {"_count": 1}, "looking": {"_count": 1}}, "knuckle": {"_count": 1, "Crabbe": {"_count": 1}}, "twinkling": {"_count": 1, "eyes": {"_count": 1}}, "but": {"_count": 3, "they": {"_count": 1}, "it": {"_count": 1}, "if": {"_count": 1}}, "warmth": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 11, "had": {"_count": 1}, "": {"_count": 1}, "trembled": {"_count": 1}, "away": {"_count": 1}, "flew": {"_count": 1}, "shot": {"_count": 1}, "close": {"_count": 1}, "seemed": {"_count": 1}, "was": {"_count": 1}, "covered": {"_count": 1}, "as": {"_count": 1}}, "lips": {"_count": 1, "curled": {"_count": 1}}, "voice": {"_count": 13, "rang": {"_count": 2}, "carried": {"_count": 1}, "trembled": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 2}, "when": {"_count": 1}, "was": {"_count": 1}, "before": {"_count": 1}, "floated": {"_count": 1}, "reverberated": {"_count": 1}}, "big": {"_count": 1, "hairy": {"_count": 1}}, "lecture": {"_count": 1, "was": {"_count": 1}}, "eagle": {"_count": 1, "owl": {"_count": 1}}, "shouts": {"_count": 1, "": {"_count": 1}}, "fading": {"_count": 1, "footsteps": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 21}, "!": {"_count": 1}, "?": {"_count": 4}}, "binoculars": {"_count": 1, "but": {"_count": 1}}, "robes": {"_count": 2, "": {"_count": 2}}, "sudden": {"_count": 1, "sinister": {"_count": 1}}, "always": {"_count": 2, "wanted": {"_count": 1}, "been": {"_count": 1}}, "beard": {"_count": 1, "twitched": {"_count": 1}}, "chest": {"_count": 2, "swelled": {"_count": 1}, "and": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "darkened": {"_count": 1, "hut": {"_count": 1}}, "hut": {"_count": 2, "because": {"_count": 1}, "where": {"_count": 1}}, "arm": {"_count": 4, "": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 1}, "trembling": {"_count": 1}}, "right": {"_count": 2, "the": {"_count": 1}, "hand": {"_count": 1}}, "cheers": {"_count": 1, "echoed": {"_count": 1}}, "leg": {"_count": 1, "off": {"_count": 1}}, "winning": {"_count": 1, "the": {"_count": 1}}, "feelings": {"_count": 2, "toward": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 8, "he": {"_count": 1}, "Rons": {"_count": 1}, "Malfoys": {"_count": 1}, "immediately": {"_count": 1}, "nothing": {"_count": 1}, "Hermiones": {"_count": 1}, "After": {"_count": 1}, "Not": {"_count": 1}}, "enormous": {"_count": 3, "boots": {"_count": 1}, "shadow": {"_count": 1}, "shaggy": {"_count": 1}}, "least": {"_count": 1, "favorite": {"_count": 1}}, "desk": {"_count": 12, "": {"_count": 6}, "some": {"_count": 1}, "clutching": {"_count": 1}, "for": {"_count": 1}, "before": {"_count": 1}, "that": {"_count": 1}, "chimed": {"_count": 1}}, "neck": {"_count": 1, "": {"_count": 1}}, "house": {"_count": 2, "were": {"_count": 1}, "and": {"_count": 1}}, "pasty": {"_count": 1, "face": {"_count": 1}}, "knobbly": {"_count": 1, "hands": {"_count": 1}}, "office": {"_count": 25, "without": {"_count": 1}, "": {"_count": 6}, "if": {"_count": 1}, "then": {"_count": 1}, "or": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 2}, "after": {"_count": 1}, "door": {"_count": 1}, "which": {"_count": 1}, "he": {"_count": 1}, "seemed": {"_count": 1}, "at": {"_count": 2}, "behind": {"_count": 1}, "were": {"_count": 1}, "once": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}}, "long": {"_count": 8, "crooked": {"_count": 1}, "thin": {"_count": 1}, "as": {"_count": 1}, "cloak": {"_count": 1}, "hair": {"_count": 1}, "narrow": {"_count": 1}, "black": {"_count": 1}, "silver": {"_count": 1}}, "dry": {"_count": 1, "racking": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "lip": {"_count": 3, "trembled": {"_count": 1}, "curled": {"_count": 2}}, "every": {"_count": 1, "word": {"_count": 1}}, "classes": {"_count": 2, "": {"_count": 1}, "Snape": {"_count": 1}}, "eyes": {"_count": 14, "narrowed": {"_count": 1}, "": {"_count": 3}, "flickering": {"_count": 1}, "gleamed": {"_count": 1}, "that": {"_count": 1}, "moved": {"_count": 1}, "widened": {"_count": 1}, "flickered": {"_count": 1}, "swiveled": {"_count": 1}, "into": {"_count": 1}, "were": {"_count": 2}}, "eye": {"_count": 4, "peering": {"_count": 1}, "walking": {"_count": 1}, "": {"_count": 2}}, "upper": {"_count": 1, "lip": {"_count": 1}}, "cats": {"_count": 1, "attacked": {"_count": 1}}, "been": {"_count": 2, "attacked": {"_count": 1}, "driven": {"_count": 1}}, "pet": {"_count": 1, "bird": {"_count": 1}}, "heir": {"_count": 1, "was": {"_count": 1}}, "forehead": {"_count": 1, "and": {"_count": 1}}, "hairs": {"_count": 1, "": {"_count": 1}}, "flat": {"_count": 2, "nose": {"_count": 1}, "disbelief": {"_count": 1}}, "gigantic": {"_count": 1, "fists": {"_count": 1}}, "dull": {"_count": 1, "face": {"_count": 1}}, "or": {"_count": 2, "saved": {"_count": 1}, "N": {"_count": 1}}, "arrest": {"_count": 1, "than": {"_count": 1}}, "usual": {"_count": 1, "chair": {"_count": 1}}, "Harry": {"_count": 1, "shouted": {"_count": 1}}, "goodness": {"_count": 1, "": {"_count": 1}}, "rigid": {"_count": 1, "face": {"_count": 1}}, "shoulder": {"_count": 5, "just": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "not": {"_count": 5, "": {"_count": 1}, "telling": {"_count": 1}, "going": {"_count": 1}, "my": {"_count": 1}, "having": {"_count": 1}}, "power": {"_count": 1, "in": {"_count": 1}}, "shoes": {"_count": 1, "": {"_count": 1}}, "letter": {"_count": 2, "aside": {"_count": 1}, "might": {"_count": 1}}, "tattered": {"_count": 1, "left": {"_count": 1}}, "arms": {"_count": 4, "": {"_count": 3}, "trembling": {"_count": 1}}, "headmaster": {"_count": 2, "": {"_count": 1}, "hes": {"_count": 1}}, "name": {"_count": 2, "last": {"_count": 1}, "": {"_count": 1}}, "first": {"_count": 3, "lesson": {"_count": 1}, "class": {"_count": 1}, "attempt": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "fault": {"_count": 3, "Hagrid": {"_count": 1}, "that": {"_count": 2}}, "beetleblack": {"_count": 2, "eyes": {"_count": 2}}, "palm": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 1, "nostril": {"_count": 1}}, "back": {"_count": 9, "was": {"_count": 1}, "": {"_count": 4}, "appeared": {"_count": 1}, "Harry": {"_count": 1}, "before": {"_count": 1}, "tears": {"_count": 1}}, "profile": {"_count": 3, "which": {"_count": 1}, "": {"_count": 1}, "His": {"_count": 1}}, "black": {"_count": 3, "eyes": {"_count": 2}, "ones": {"_count": 1}}, "never": {"_count": 1, "been": {"_count": 1}}, "spell": {"_count": 2, "had": {"_count": 1}, "if": {"_count": 1}}, "nose": {"_count": 6, "": {"_count": 4}, "halfway": {"_count": 1}, "had": {"_count": 1}}, "story": {"_count": 1, "": {"_count": 1}}, "advice": {"_count": 1, "instead": {"_count": 1}}, "cabin": {"_count": 8, "made": {"_count": 1}, "with": {"_count": 1}, "through": {"_count": 1}, "still": {"_count": 1}, "": {"_count": 4}}, "knee": {"_count": 1, "": {"_count": 1}}, "claws": {"_count": 1, "ripped": {"_count": 1}}, "fur": {"_count": 2, "suddenly": {"_count": 1}, "and": {"_count": 1}}, "yellow": {"_count": 1, "eyes": {"_count": 1}}, "fresh": {"_count": 1, "attempt": {"_count": 1}}, "mouth": {"_count": 7, "thinned": {"_count": 1}, "was": {"_count": 1}, "twitched": {"_count": 1}, "fell": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}}, "the": {"_count": 1, "matter": {"_count": 1}}, "rune": {"_count": 1, "translation": {"_count": 1}}, "finger": {"_count": 1, "stand": {"_count": 1}}, "shoulders": {"_count": 4, "": {"_count": 3}, "again": {"_count": 1}}, "pocket": {"_count": 1, "": {"_count": 1}}, "steeds": {"_count": 1, "mouth": {"_count": 1}}, "Ordinary": {"_count": 1, "Wizarding": {"_count": 1}}, "Nastily": {"_count": 1, "Exhausting": {"_count": 1}}, "choco": {"_count": 1, "nut": {"_count": 1}}, "boggart": {"_count": 1, "but": {"_count": 1}}, "gonna": {"_count": 1, "come": {"_count": 1}}, "cupboard": {"_count": 1, "for": {"_count": 1}}, "breathing": {"_count": 2, "was": {"_count": 2}}, "tail": {"_count": 1, "bobbed": {"_count": 1}}, "grip": {"_count": 3, "on": {"_count": 1}, "": {"_count": 1}, "looking": {"_count": 1}}, "foot": {"_count": 1, "swing": {"_count": 1}}, "wand": {"_count": 13, "soared": {"_count": 2}, "that": {"_count": 1}, "apprehensively": {"_count": 1}, "flew": {"_count": 2}, "": {"_count": 2}, "tip": {"_count": 1}, "flying": {"_count": 1}, "and": {"_count": 1}, "gave": {"_count": 1}, "which": {"_count": 1}}, "fluffy": {"_count": 1, "head": {"_count": 1}}, "shriek": {"_count": 1, "of": {"_count": 1}}, "white": {"_count": 1, "face": {"_count": 1}}, "words": {"_count": 5, "through": {"_count": 1}, "": {"_count": 1}, "opened": {"_count": 1}, "Harry": {"_count": 1}, "appeared": {"_count": 1}}, "gloating": {"_count": 1, "voice": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "each": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "cooking": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "were": {"_count": 4, "Ordinary": {"_count": 1}, "drawing": {"_count": 1}, "upon": {"_count": 1}, "approaching": {"_count": 1}}, "outstretched": {"_count": 2, "hand": {"_count": 1}, "fingers": {"_count": 1}}, "terrified": {"_count": 2, "look": {"_count": 1}, "squeak": {"_count": 1}}, "other": {"_count": 2, "side": {"_count": 2}}, "hatred": {"_count": 1, "of": {"_count": 1}}, "overlarge": {"_count": 1, "nose": {"_count": 1}}, "moleskin": {"_count": 2, "just": {"_count": 1}, "waistcoat": {"_count": 1}}, "small": {"_count": 1, "wooden": {"_count": 1}}, "heavily": {"_count": 1, "guarded": {"_count": 1}}, "in": {"_count": 1, "such": {"_count": 1}}, "till": {"_count": 1, "fifth": {"_count": 1}}, "smile": {"_count": 1, "faded": {"_count": 1}}, "determination": {"_count": 1, "to": {"_count": 1}}, "lefthand": {"_count": 1, "side": {"_count": 1}}, "fingers": {"_count": 3, "": {"_count": 1}, "closed": {"_count": 1}, "which": {"_count": 1}}, "insistence": {"_count": 2, "that": {"_count": 1}, "hidden": {"_count": 1}}, "empty": {"_count": 1, "chair": {"_count": 1}}, "Have": {"_count": 1, "you": {"_count": 1}}, "dungeon": {"_count": 1, "after": {"_count": 1}}, "front": {"_count": 1, "teeth": {"_count": 1}}, "at": {"_count": 1, "midnight": {"_count": 1}}, "to": {"_count": 2, "tell": {"_count": 1}, "give": {"_count": 1}}, "giant": {"_count": 1, "winged": {"_count": 1}}, "garden": {"_count": 1, "fence": {"_count": 1}}, "strange": {"_count": 1, "collection": {"_count": 1}}, "crime": {"_count": 1, "fraternizing": {"_count": 1}}, "halfgiant": {"_count": 1, "she": {"_count": 1}}, "own": {"_count": 2, "mother": {"_count": 1}, "": {"_count": 1}}, "bushy": {"_count": 1, "hair": {"_count": 1}}, "miserable": {"_count": 1, "face": {"_count": 1}}, "footsteps": {"_count": 1, "halted": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "greasy": {"_count": 1, "temple": {"_count": 1}}, "sallow": {"_count": 1, "face": {"_count": 1}}, "broad": {"_count": 2, "back": {"_count": 2}}, "brilliant": {"_count": 1, "and": {"_count": 1}}, "certainly": {"_count": 1, "clever": {"_count": 1}}, "goblet": {"_count": 1, "before": {"_count": 1}}, "most": {"_count": 4, "satisfactory": {"_count": 1}, "dangerous": {"_count": 1}, "celebrated": {"_count": 1}, "prized": {"_count": 1}}, "part": {"_count": 1, "": {"_count": 1}}, "sunlit": {"_count": 1, "office": {"_count": 1}}, "light": {"_count": 1, "blue": {"_count": 1}}, "shadow": {"_count": 1, "": {"_count": 1}}, "wrist": {"_count": 1, "while": {"_count": 1}}, "grief": {"_count": 1, "seemed": {"_count": 1}}, "orders": {"_count": 2, "": {"_count": 1}, "has": {"_count": 1}}, "instructions": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "huge": {"_count": 2, "eyes": {"_count": 1}, "empty": {"_count": 1}}, "brother": {"_count": 2, "Rabastan": {"_count": 1}, "Aberforth": {"_count": 1}}, "booming": {"_count": 1, "voice": {"_count": 1}}, "full": {"_count": 1, "": {"_count": 1}}, "low": {"_count": 1, "grunt": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "said": {"_count": 4, "George": {"_count": 1}, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "Harry": {"_count": 1}}, "George": {"_count": 1, "said": {"_count": 1}}, "are": {"_count": 2, "really": {"_count": 1}, "spread": {"_count": 1}}, "you": {"_count": 1, "want": {"_count": 1}}, "shocked": {"_count": 1, "faces": {"_count": 1}}, "lap": {"_count": 1, "and": {"_count": 1}}, "threat": {"_count": 1, "was": {"_count": 1}}, "fate": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 3, "figment": {"_count": 1}, "lying": {"_count": 1}, "Death": {"_count": 1}}, "room": {"_count": 1, "He": {"_count": 1}}, "strong": {"_count": 1, "point": {"_count": 1}}, "still": {"_count": 1, "ringing": {"_count": 1}}, "equally": {"_count": 1, "long": {"_count": 1}}, "essay": {"_count": 1, "back": {"_count": 1}}, "winces": {"_count": 1, "": {"_count": 1}}, "opinion": {"_count": 1, "and": {"_count": 1}}, "ears": {"_count": 1, "with": {"_count": 1}}, "smiles": {"_count": 1, "had": {"_count": 1}}, "coming": {"_count": 1, "up": {"_count": 1}}, "whispered": {"_count": 1, "discussion": {"_count": 1}}, "good": {"_count": 1, "said": {"_count": 1}}, "posed": {"_count": 2, "ter": {"_count": 2}}, "helmet": {"_count": 1, "leerin": {"_count": 1}}, "way": {"_count": 1, "hidin": {"_count": 1}}, "cupboards": {"_count": 1, "": {"_count": 1}}, "fake": {"_count": 1, "cough": {"_count": 1}}, "prefect": {"_count": 1, "duties": {"_count": 1}}, "nor": {"_count": 1, "did": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "favorite": {"_count": 1, "photograph": {"_count": 1}}, "pallid": {"_count": 1, "face": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "cold": {"_count": 1, "voice": {"_count": 1}}, "drink": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 2, "Professor": {"_count": 1}, "that": {"_count": 1}}, "head": {"_count": 8, "": {"_count": 3}, "again": {"_count": 1}, "he": {"_count": 1}, "or": {"_count": 1}, "like": {"_count": 1}, "now": {"_count": 1}}, "teachings": {"_count": 1, "": {"_count": 1}}, "monster": {"_count": 1, "mates": {"_count": 1}}, "from": {"_count": 1, "Harrys": {"_count": 1}}, "drew": {"_count": 1, "steadily": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "bad": {"_count": 1, "mood": {"_count": 1}}, "fists": {"_count": 1, "": {"_count": 1}}, "offer": {"_count": 1, "to": {"_count": 1}}, "lopsided": {"_count": 2, "mouth": {"_count": 2}}, "feet": {"_count": 2, "which": {"_count": 1}, "seized": {"_count": 1}}, "knowledge": {"_count": 1, "of": {"_count": 1}}, "attack": {"_count": 1, "on": {"_count": 1}}, "though": {"_count": 1, "black": {"_count": 1}}, "chin": {"_count": 1, "": {"_count": 1}}, "injured": {"_count": 1, "hand": {"_count": 1}}, "watery": {"_count": 1, "eyes": {"_count": 1}}, "cosseted": {"_count": 1, "existence": {"_count": 1}}, "thats": {"_count": 1, "more": {"_count": 1}}, "great": {"_count": 1, "belly": {"_count": 1}}, "anyones": {"_count": 1, "got": {"_count": 1}}, "snide": {"_count": 1, "remarks": {"_count": 1}}, "remonstration": {"_count": 1, "was": {"_count": 1}}, "filthy": {"_count": 1, "face": {"_count": 1}}, "screams": {"_count": 2, "echoing": {"_count": 1}, "echoed": {"_count": 1}}, "now": {"_count": 1, "twilit": {"_count": 1}}, "increasing": {"_count": 1, "resentment": {"_count": 1}}, "eccentric": {"_count": 1, "appearance": {"_count": 1}}, "creation": {"_count": 1, "nobody": {"_count": 1}}, "cat": {"_count": 1, "appeared": {"_count": 1}}, "shuffling": {"_count": 1, "feet": {"_count": 1}}, "party": {"_count": 1, "and": {"_count": 1}}, "expression": {"_count": 4, "of": {"_count": 1}, "remained": {"_count": 1}, "hardened": {"_count": 1}, "did": {"_count": 1}}, "thanks": {"_count": 1, "": {"_count": 1}}, "pretense": {"_count": 1, "that": {"_count": 1}}, "hands": {"_count": 3, "lay": {"_count": 1}, "were": {"_count": 1}, "shook": {"_count": 1}}, "man": {"_count": 1, "through": {"_count": 1}}, "bright": {"_count": 1, "blue": {"_count": 1}}, "tendency": {"_count": 1, "to": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "candle": {"_count": 1, "extinguishing": {"_count": 1}}, "haughty": {"_count": 1, "profile": {"_count": 1}}, "word": {"_count": 1, "for": {"_count": 1}}, "using": {"_count": 1, "Crabbe": {"_count": 1}}, "overheated": {"_count": 1, "crowded": {"_count": 1}}, "open": {"_count": 2, "potion": {"_count": 1}, "mouth": {"_count": 1}}, "bat": {"_count": 1, "from": {"_count": 1}}, "chair": {"_count": 1, "and": {"_count": 1}}, "fat": {"_count": 1, "little": {"_count": 1}}, "ring": {"_count": 1, "so": {"_count": 1}}, "detailed": {"_count": 1, "knowledge": {"_count": 1}}, "doing": {"_count": 1, "in": {"_count": 1}}, "delighted": {"_count": 1, "with": {"_count": 1}}, "bucket": {"_count": 1, "sized": {"_count": 1}}, "flattering": {"_count": 1, "interest": {"_count": 1}}, "crinkled": {"_count": 1, "eyes": {"_count": 1}}, "tearfilled": {"_count": 1, "eyes": {"_count": 1}}, "fury": {"_count": 2, "about": {"_count": 1}, "at": {"_count": 1}}, "punishment": {"_count": 1, "of": {"_count": 1}}, "gasps": {"_count": 1, "of": {"_count": 1}}, "involved": {"_count": 1, "hell": {"_count": 1}}, "protection": {"_count": 1, "is": {"_count": 1}}, "waiting": {"_count": 1, "No": {"_count": 1}}, "wake": {"_count": 2, "the": {"_count": 1}, "as": {"_count": 1}}, "buckled": {"_count": 1, "shoes": {"_count": 1}}, "clenched": {"_count": 1, "hand": {"_count": 1}}, "insane": {"_count": 1, "determination": {"_count": 1}}, "extreme": {"_count": 1, "pallor": {"_count": 1}}, "uninjured": {"_count": 1, "arm": {"_count": 1}}, "Army": {"_count": 1, "used": {"_count": 1}}, "body": {"_count": 2, "must": {"_count": 1}, "": {"_count": 1}}, "moan": {"_count": 1, "of": {"_count": 1}}, "history": {"_count": 2, "": {"_count": 2}}, "repentance": {"_count": 1, "was": {"_count": 1}}, "duplicity": {"_count": 1, "and": {"_count": 1}}, "death": {"_count": 2, "and": {"_count": 2}}, "mother": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "inexcusable": {"_count": 1, "trust": {"_count": 1}}, "summons": {"_count": 1, "the": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "childhood": {"_count": 1, "or": {"_count": 1}}, "mysterious": {"_count": 1, "death": {"_count": 1}}, "biography": {"_count": 1, "has": {"_count": 1}}, "many": {"_count": 1, "magical": {"_count": 1}}, "potion": {"_count": 1, "looked": {"_count": 1}}, "jacket": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "here": {"_count": 1}}, "pale": {"_count": 1, "face": {"_count": 1}}, "sentence": {"_count": 1, "was": {"_count": 1}}, "surge": {"_count": 1, "of": {"_count": 1}}, "really": {"_count": 1, "contagious": {"_count": 1}}, "note": {"_count": 1, "was": {"_count": 1}}, "study": {"_count": 1, "window": {"_count": 1}}, "Quidditch": {"_count": 1, "knowledge": {"_count": 1}}, "locket": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "free": {"_count": 1, "arm": {"_count": 1}}, "family": {"_count": 2, "too": {"_count": 1}, "were": {"_count": 1}}, "my": {"_count": 1, "cousin": {"_count": 1}}, "unspoken": {"_count": 1, "reproaches": {"_count": 1}}, "new": {"_count": 1, "regime": {"_count": 1}}, "silent": {"_count": 1, "Stunning": {"_count": 1}}, "wife": {"_count": 1, "Well": {"_count": 1}}, "filing": {"_count": 1, "cabinets": {"_count": 1}}, "nonreappearance": {"_count": 1, "might": {"_count": 1}}, "Patronus": {"_count": 1, "vanished": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "sleeve": {"_count": 1, "": {"_count": 1}}, "glower": {"_count": 1, "with": {"_count": 1}}, "mind": {"_count": 2, "and": {"_count": 2}}, "trustworthiness": {"_count": 1, "": {"_count": 1}}, "crackdown": {"_count": 1, "Harry": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}, "beaded": {"_count": 1, "bag": {"_count": 1}}, "buttonedup": {"_count": 1, "coat": {"_count": 1}}, "mothers": {"_count": 1, "death": {"_count": 1}}, "next": {"_count": 1, "movements": {"_count": 1}}, "fans": {"_count": 1, "will": {"_count": 1}}, "slogan": {"_count": 1, "his": {"_count": 1}}, "ideas": {"_count": 1, "helped": {"_count": 1}}, "solicitousness": {"_count": 1, "": {"_count": 1}}, "answer": {"_count": 1, "however": {"_count": 1}}, "familiar": {"_count": 1, "thin": {"_count": 1}}, "mark": {"_count": 1, "but": {"_count": 1}}, "grave": {"_count": 1, "is": {"_count": 1}}, "banging": {"_count": 1, "and": {"_count": 1}}, "comprehension": {"_count": 1, "in": {"_count": 1}}, "throat": {"_count": 2, "": {"_count": 2}}, "figure": {"_count": 1, "to": {"_count": 1}}, "problem": {"_count": 1, "was": {"_count": 1}}, "ear": {"_count": 1, "": {"_count": 1}}, "glasses": {"_count": 1, "momentarily": {"_count": 1}}, "gaze": {"_count": 1, "which": {"_count": 1}}, "appearance": {"_count": 1, "in": {"_count": 1}}, "second": {"_count": 1, "Stunning": {"_count": 1}}, "bitter": {"_count": 1, "disappointment": {"_count": 1}}, "crooked": {"_count": 1, "nosed": {"_count": 1}}, "eyelids": {"_count": 1, "fluttered": {"_count": 1}}, "tone": {"_count": 1, "was": {"_count": 1}}, "cursed": {"_count": 1, "hand": {"_count": 1}}, "land": {"_count": 1, "between": {"_count": 1}}, "supposed": {"_count": 1, "great": {"_count": 1}}, "last": {"_count": 1, "plan": {"_count": 1}}, "trunk": {"_count": 1, "and": {"_count": 1}}}, "small": {"_count": 464, "son": {"_count": 2, "called": {"_count": 1}, "too": {"_count": 1}}, "hand": {"_count": 2, "closed": {"_count": 1}, "She": {"_count": 1}}, "and": {"_count": 25, "skinny": {"_count": 4}, "the": {"_count": 1}, "rather": {"_count": 3}, "leathery": {"_count": 1}, "deeply": {"_count": 1}, "had": {"_count": 1}, "shabby": {"_count": 3}, "gray": {"_count": 1}, "with": {"_count": 1}, "redhaired": {"_count": 1}, "truthful": {"_count": 1}, "purple": {"_count": 1}, "squat": {"_count": 1}, "insignificant": {"_count": 1}, "dark": {"_count": 1}, "embarrassed": {"_count": 1}, "ferrety": {"_count": 1}, "gold": {"_count": 1}}, "watery": {"_count": 5, "blue": {"_count": 1}, "eyes": {"_count": 4}}, "working": {"_count": 2, "tank": {"_count": 1}, "model": {"_count": 1}}, "window": {"_count": 4, "in": {"_count": 1}, "set": {"_count": 1}, "peered": {"_count": 1}, "their": {"_count": 1}}, "noises": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "leather": {"_count": 1, "pouch": {"_count": 1}}, "walled": {"_count": 1, "courtyard": {"_count": 1}}, "hole": {"_count": 2, "appeared": {"_count": 1}, "in": {"_count": 1}}, "cart": {"_count": 1, "came": {"_count": 1}}, "door": {"_count": 1, "in": {"_count": 1}}, "fortune": {"_count": 4, "belonging": {"_count": 1}, "that": {"_count": 1}, "from": {"_count": 1}, "right": {"_count": 1}}, "girl": {"_count": 4, "also": {"_count": 1}, "to": {"_count": 1}, "who": {"_count": 2}}, "crowd": {"_count": 4, "": {"_count": 1}, "of": {"_count": 1}, "watching": {"_count": 1}, "was": {"_count": 1}}, "smile": {"_count": 8, "": {"_count": 4}, "I": {"_count": 1}, "on": {"_count": 1}, "which": {"_count": 1}, "as": {"_count": 1}}, "empty": {"_count": 2, "chamber": {"_count": 1}, "bottle": {"_count": 1}}, "voice": {"_count": 19, "in": {"_count": 2}, "": {"_count": 10}, "came": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}, "looking": {"_count": 1}, "defiantly": {"_count": 1}, "fairly": {"_count": 1}, "inside": {"_count": 1}}, "just": {"_count": 1, "matches": {"_count": 1}}, "wooden": {"_count": 3, "house": {"_count": 1}, "cabin": {"_count": 1}, "wireless": {"_count": 1}}, "package": {"_count": 3, "from": {"_count": 1}, "in": {"_count": 1}, "which": {"_count": 1}}, "club": {"_count": 2, "a": {"_count": 1}, "knocking": {"_count": 1}}, "bald": {"_count": 1, "head": {"_count": 1}}, "pile": {"_count": 4, "of": {"_count": 4}}, "parcel": {"_count": 1, "contained": {"_count": 1}}, "jewel": {"_count": 1, "bright": {"_count": 1}}, "without": {"_count": 1, "it": {"_count": 1}}, "scream": {"_count": 1, "and": {"_count": 1}}, "sharp": {"_count": 1, "eyes": {"_count": 1}}, "amounts": {"_count": 1, "of": {"_count": 1}}, "click": {"_count": 2, "and": {"_count": 2}}, "yard": {"_count": 1, "and": {"_count": 1}}, "redheaded": {"_count": 1, "figure": {"_count": 1}}, "squeal": {"_count": 1, "and": {"_count": 1}}, "plaque": {"_count": 2, "on": {"_count": 1}, "with": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 2}}, "explosions": {"_count": 1, "from": {"_count": 1}}, "paddock": {"_count": 1, "the": {"_count": 1}}, "crack": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "goblin": {"_count": 1, "driven": {"_count": 1}}, "Ford": {"_count": 1, "Anglia": {"_count": 1}}, "mousyhaired": {"_count": 3, "boy": {"_count": 3}}, "muddy": {"_count": 1, "and": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "burp": {"_count": 1, "and": {"_count": 1}}, "vegetable": {"_count": 1, "patch": {"_count": 1}}, "slugs": {"_count": 1, "": {"_count": 1}}, "seethrough": {"_count": 1, "eyes": {"_count": 1}}, "noise": {"_count": 2, "like": {"_count": 1}, "of": {"_count": 1}}, "he": {"_count": 1, "couldnt": {"_count": 1}}, "yelp": {"_count": 1, "of": {"_count": 1}}, "melon": {"_count": 1, "": {"_count": 1}}, "knot": {"_count": 2, "of": {"_count": 2}}, "puff": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "Crabbe": {"_count": 1}}, "sack": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "As": {"_count": 1, "suddenly": {"_count": 1}}, "thin": {"_count": 1, "book": {"_count": 1}}, "circular": {"_count": 4, "mirror": {"_count": 1}, "tables": {"_count": 2}, "table": {"_count": 1}}, "cabin": {"_count": 1, "": {"_count": 1}}, "elephant": {"_count": 1, "emerged": {"_count": 1}}, "animal": {"_count": 1, "bones": {"_count": 1}}, "bomb": {"_count": 1, "": {"_count": 1}}, "blackrobed": {"_count": 1, "figure": {"_count": 1}}, "black": {"_count": 3, "book": {"_count": 1}, "E": {"_count": 1}, "cauldron": {"_count": 1}}, "differences": {"_count": 1, "Defense": {"_count": 1}}, "eyes": {"_count": 4, "swiveled": {"_count": 1}, "were": {"_count": 2}, "narrowing": {"_count": 1}}, "improvement": {"_count": 1, "after": {"_count": 1}}, "one": {"_count": 1, "then": {"_count": 1}}, "parlor": {"_count": 1, "": {"_count": 1}}, "table": {"_count": 7, "was": {"_count": 1}, "Death": {"_count": 1}, "stood": {"_count": 1}, "draped": {"_count": 1}, "in": {"_count": 2}, "beside": {"_count": 1}}, "red": {"_count": 2, "bottle": {"_count": 2}}, "tiger": {"_count": 1, "said": {"_count": 1}}, "wickerwork": {"_count": 1, "basket": {"_count": 1}}, "battered": {"_count": 1, "case": {"_count": 1}}, "sob": {"_count": 1, "Hermione": {"_count": 1}}, "room": {"_count": 2, "with": {"_count": 1}, "that": {"_count": 1}}, "spoon": {"_count": 1, "into": {"_count": 1}}, "pop": {"_count": 3, "and": {"_count": 1}, "Not": {"_count": 1}, "vanished": {"_count": 1}}, "bottle": {"_count": 3, "from": {"_count": 1}, "of": {"_count": 1}, "labeled": {"_count": 1}}, "sigh": {"_count": 1, "and": {"_count": 1}}, "sputter": {"_count": 1, "of": {"_count": 1}}, "ways": {"_count": 1, "": {"_count": 1}}, "squeaky": {"_count": 1, "noise": {"_count": 1}}, "vacant": {"_count": 1, "table": {"_count": 1}}, "gillywater": {"_count": 1, "Mine": {"_count": 1}}, "laugh": {"_count": 2, "": {"_count": 2}}, "chink": {"_count": 1, "of": {"_count": 1}}, "heap": {"_count": 1, "of": {"_count": 1}}, "child": {"_count": 3, "": {"_count": 2}, "promised": {"_count": 1}}, "struggling": {"_count": 1, "Snitch": {"_count": 1}}, "gasp": {"_count": 2, "looking": {"_count": 1}, "of": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "dull": {"_count": 1, "eyes": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}, "scuffles": {"_count": 1, "broke": {"_count": 1}}, "quickly": {"_count": 1, "stifled": {"_count": 1}}, "opening": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 6, "when": {"_count": 1}, "the": {"_count": 1}, "right": {"_count": 1}, "who": {"_count": 1}, "with": {"_count": 1}, "caught": {"_count": 1}}, "gray": {"_count": 3, "form": {"_count": 1}, "feathery": {"_count": 1}, "cactus": {"_count": 1}}, "boulder": {"_count": 1, "": {"_count": 1}}, "hammer": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "fact": {"_count": 1}}, "man": {"_count": 6, "his": {"_count": 1}, "walked": {"_count": 1}, "called": {"_count": 1}, "stood": {"_count": 1}, "halfway": {"_count": 1}, "in": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "owl": {"_count": 1, "flew": {"_count": 1}}, "drawstring": {"_count": 1, "bag": {"_count": 1}}, "cage": {"_count": 1, "and": {"_count": 1}}, "brightly": {"_count": 1, "colored": {"_count": 1}}, "stone": {"_count": 1, "cottage": {"_count": 1}}, "sign": {"_count": 2, "hammered": {"_count": 1}, "that": {"_count": 1}}, "children": {"_count": 3, "Harry": {"_count": 1}, "leaned": {"_count": 1}, "with": {"_count": 1}}, "oddly": {"_count": 1, "shaped": {"_count": 1}}, "queue": {"_count": 1, "for": {"_count": 1}}, "figure": {"_count": 3, "of": {"_count": 3}}, "box": {"_count": 2, "set": {"_count": 1}, "containing": {"_count": 1}}, "dial": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "clearing": {"_count": 1, "and": {"_count": 1}}, "kitchen": {"_count": 1, "table": {"_count": 1}}, "face": {"_count": 1, "protruded": {"_count": 1}}, "dark": {"_count": 5, "and": {"_count": 2}, "haired": {"_count": 1}, "leaflet": {"_count": 1}, "cluttered": {"_count": 1}}, "knife": {"_count": 1, "out": {"_count": 1}}, "phut": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 2, "distinct": {"_count": 1}, "bright": {"_count": 1}}, "curl": {"_count": 1, "did": {"_count": 1}}, "classroom": {"_count": 1, "most": {"_count": 1}}, "piece": {"_count": 3, "on": {"_count": 1}, "the": {"_count": 1}, "of": {"_count": 1}}, "Ludo": {"_count": 1, "said": {"_count": 1}}, "twittering": {"_count": 1, "birds": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 3}}, "hill": {"_count": 1, "": {"_count": 1}}, "objects": {"_count": 3, "toward": {"_count": 1}, "and": {"_count": 1}, "scattered": {"_count": 1}}, "model": {"_count": 2, "of": {"_count": 1}, "figure": {"_count": 1}}, "airplane": {"_count": 1, "and": {"_count": 1}}, "hurtled": {"_count": 1, "toward": {"_count": 1}}, "shoulders": {"_count": 1, "": {"_count": 1}}, "thing": {"_count": 1, "like": {"_count": 1}}, "menus": {"_count": 1, "were": {"_count": 1}}, "wink": {"_count": 1, "": {"_count": 1}}, "wave": {"_count": 1, "and": {"_count": 1}}, "horned": {"_count": 1, "water": {"_count": 1}}, "silverhaired": {"_count": 1, "girl": {"_count": 1}}, "crystal": {"_count": 4, "bottle": {"_count": 4}}, "to": {"_count": 2, "carry": {"_count": 1}, "contain": {"_count": 1}}, "injuries": {"_count": 1, "": {"_count": 1}}, "church": {"_count": 1, "was": {"_count": 1}}, "twig": {"_count": 1, "on": {"_count": 1}}, "animals": {"_count": 1, "like": {"_count": 1}}, "glass": {"_count": 6, "bottle": {"_count": 1}, "spheres": {"_count": 1}, "ball": {"_count": 1}, "of": {"_count": 2}, "phial": {"_count": 1}}, "feet": {"_count": 1, "for": {"_count": 1}}, "sealed": {"_count": 1, "glass": {"_count": 1}}, "clue": {"_count": 1, "not": {"_count": 1}}, "roll": {"_count": 3, "of": {"_count": 3}}, "shoot": {"_count": 1, "of": {"_count": 1}}, "ghost": {"_count": 1, "": {"_count": 1}}, "rolls": {"_count": 1, "of": {"_count": 1}}, "square": {"_count": 3, "": {"_count": 1}, "mirror": {"_count": 1}, "was": {"_count": 1}}, "round": {"_count": 2, "charred": {"_count": 1}, "burn": {"_count": 1}}, "smudged": {"_count": 1, "sign": {"_count": 1}}, "brass": {"_count": 1, "spike": {"_count": 1}}, "snort": {"_count": 1, "of": {"_count": 1}}, "wateryeyed": {"_count": 1, "man": {"_count": 1}}, "gang": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "hopeful": {"_count": 1, "bubble": {"_count": 1}}, "pointed": {"_count": 1, "teeth": {"_count": 1}}, "twinge": {"_count": 1, "of": {"_count": 1}}, "worried": {"_count": 1, "voice": {"_count": 1}}, "coughing": {"_count": 1, "fit": {"_count": 1}}, "bowl": {"_count": 1, "of": {"_count": 1}}, "inn": {"_count": 1, "": {"_count": 1}}, "dingy": {"_count": 1, "and": {"_count": 1}}, "group": {"_count": 4, "of": {"_count": 4}}, "embroidered": {"_count": 1, "handkerchief": {"_count": 1}}, "patch": {"_count": 1, "of": {"_count": 1}}, "unbiased": {"_count": 1, "part": {"_count": 1}}, "daughter": {"_count": 1, "tightly": {"_count": 1}}, "dent": {"_count": 1, "in": {"_count": 1}}, "trickle": {"_count": 1, "of": {"_count": 1}}, "pub": {"_count": 1, "which": {"_count": 1}}, "tea": {"_count": 1, "shop": {"_count": 1}}, "darkhaired": {"_count": 1, "boy": {"_count": 1}}, "wonder": {"_count": 1, "that": {"_count": 1}}, "choking": {"_count": 1, "noise": {"_count": 1}}, "dusty": {"_count": 2, "spun": {"_count": 1}, "glass": {"_count": 1}}, "consolation": {"_count": 1, "that": {"_count": 1}}, "prod": {"_count": 1, "with": {"_count": 1}}, "iced": {"_count": 1, "Snitches": {"_count": 1}}, "horribly": {"_count": 1, "smug": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}, "cuts": {"_count": 1, "and": {"_count": 1}}, "cloud": {"_count": 1, "of": {"_count": 1}}, "chamber": {"_count": 1, "beside": {"_count": 1}}, "groups": {"_count": 1, "of": {"_count": 1}}, "bite": {"_count": 1, "from": {"_count": 1}}, "collections": {"_count": 1, "of": {"_count": 1}}, "grandfather": {"_count": 1, "and": {"_count": 1}}, "spunglass": {"_count": 1, "ball": {"_count": 1}}, "wrinkled": {"_count": 1, "and": {"_count": 1}}, "mountain": {"_count": 1, "of": {"_count": 1}}, "sad": {"_count": 1, "chuckle": {"_count": 1}}, "dirty": {"_count": 2, "oil": {"_count": 1}, "and": {"_count": 1}}, "task": {"_count": 1, "force": {"_count": 1}}, "piggy": {"_count": 1, "eyes": {"_count": 1}}, "neat": {"_count": 1, "stone": {"_count": 1}}, "intake": {"_count": 1, "of": {"_count": 1}}, "telescope": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 1, "pot": {"_count": 1}}, "tray": {"_count": 1, "of": {"_count": 1}}, "stock": {"_count": 1, "of": {"_count": 1}}, "cramped": {"_count": 1, "handwriting": {"_count": 1}}, "scroll": {"_count": 2, "of": {"_count": 2}}, "bare": {"_count": 1, "room": {"_count": 1}}, "cardboard": {"_count": 2, "box": {"_count": 2}}, "everyday": {"_count": 1, "objects": {"_count": 1}}, "ring": {"_count": 1, "of": {"_count": 1}}, "stout": {"_count": 1, "bespectacled": {"_count": 1}}, "wings": {"_count": 1, "glued": {"_count": 1}}, "golden": {"_count": 4, "clock": {"_count": 2}, "cup": {"_count": 1}, "coins": {"_count": 1}}, "wizard": {"_count": 1, "whom": {"_count": 1}}, "WonWon": {"_count": 1, "said": {"_count": 1}}, "jeweled": {"_count": 1, "mirror": {"_count": 1}}, "leaky": {"_count": 1, "eyes": {"_count": 1}}, "island": {"_count": 1, "of": {"_count": 1}}, "cold": {"_count": 1, "lump": {"_count": 1}}, "marquee": {"_count": 1, "was": {"_count": 1}}, "mention": {"_count": 1, "on": {"_count": 1}}, "Id": {"_count": 1, "forgotten": {"_count": 1}}, "silverbacked": {"_count": 1, "hairbrush": {"_count": 1}}, "shake": {"_count": 1, "": {"_count": 1}}, "town": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 1, "furry": {"_count": 1}}, "book": {"_count": 1, "that": {"_count": 1}}, "object": {"_count": 1, "": {"_count": 1}}, "beaded": {"_count": 5, "bag": {"_count": 4}, "handbag": {"_count": 1}}, "tuftyhaired": {"_count": 1, "wizard": {"_count": 1}}, "whiteclothed": {"_count": 1, "tables": {"_count": 1}}, "portion": {"_count": 1, "of": {"_count": 1}}, "card": {"_count": 1, "that": {"_count": 1}}, "ferretylooking": {"_count": 1, "wizard": {"_count": 1}}, "desks": {"_count": 1, "not": {"_count": 1}}, "rectangular": {"_count": 2, "mirror": {"_count": 2}}, "woman": {"_count": 1, "stood": {"_count": 1}}, "fierce": {"_count": 1, "creature": {"_count": 1}}, "brown": {"_count": 1, "bottle": {"_count": 1}}, "flat": {"_count": 1, "complete": {"_count": 1}}, "green": {"_count": 1, "stones": {"_count": 1}}, "cross": {"_count": 1, "in": {"_count": 1}}, "market": {"_count": 1, "town": {"_count": 1}}, "copse": {"_count": 1, "of": {"_count": 1}}, "revenge": {"_count": 1, "before": {"_count": 1}}, "communities": {"_count": 1, "within": {"_count": 1}}, "villages": {"_count": 1, "and": {"_count": 1}}, "boys": {"_count": 1, "smile": {"_count": 1}}, "blackhaired": {"_count": 1, "boy": {"_count": 1}}, "fist": {"_count": 1, "": {"_count": 1}}, "ones": {"_count": 1, "whining": {"_count": 1}}, "sponge": {"_count": 1, "in": {"_count": 1}}, "frozen": {"_count": 1, "pool": {"_count": 1}}, "instance": {"_count": 1, "of": {"_count": 1}}, "silver": {"_count": 1, "object": {"_count": 1}}, "stones": {"_count": 1, "at": {"_count": 1}}, "cottage": {"_count": 1, "which": {"_count": 1}}, "cry": {"_count": 1, "of": {"_count": 1}}, "unconscious": {"_count": 1, "impulse": {"_count": 1}}, "reddish": {"_count": 1, "mound": {"_count": 1}}, "fire": {"_count": 1, "of": {"_count": 1}}, "landing": {"_count": 1, "": {"_count": 1}}, "snake": {"_count": 1, "had": {"_count": 1}}, "metal": {"_count": 1, "instruments": {"_count": 1}}, "quaking": {"_count": 1, "figure": {"_count": 1}}, "fireplace": {"_count": 1, "above": {"_count": 1}}, "cupboard": {"_count": 1, "opened": {"_count": 1}}, "space": {"_count": 2, "between": {"_count": 1}, "into": {"_count": 1}}, "protection": {"_count": 1, "from": {"_count": 1}}, "car": {"_count": 1, "was": {"_count": 1}}, "boat": {"_count": 1, "lay": {"_count": 1}}, "stringy": {"_count": 1, "": {"_count": 1}}, "thicket": {"_count": 1, "of": {"_count": 1}}, "rustling": {"_count": 1, "noise": {"_count": 1}}, "disparaging": {"_count": 1, "noise": {"_count": 1}}, "taste": {"_count": 1, "of": {"_count": 1}}, "service": {"_count": 1, "of": {"_count": 1}}, "soft": {"_count": 1, "thumpings": {"_count": 1}}, "naked": {"_count": 1, "child": {"_count": 1}}, "maimed": {"_count": 1, "creature": {"_count": 1}}, "shriek": {"_count": 1, "of": {"_count": 1}}, "comfort": {"_count": 1, "though": {"_count": 1}}}, "son": {"_count": 181, "called": {"_count": 2, "Dudley": {"_count": 1}, "Harry": {"_count": 1}}, "too": {"_count": 1, "but": {"_count": 1}}, "Harry": {"_count": 5, "Mr": {"_count": 1}, "": {"_count": 2}, "spotted": {"_count": 1}, "remains": {"_count": 1}}, "hed": {"_count": 1, "be": {"_count": 1}}, "I": {"_count": 2, "saw": {"_count": 1}, "told": {"_count": 1}}, "don": {"_count": 1, "need": {"_count": 1}}, "goin": {"_count": 1, "ter": {"_count": 1}}, "Dudley": {"_count": 5, "": {"_count": 2}, "were": {"_count": 1}, "had": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 62, ".": {"_count": 39}, "?": {"_count": 15}, "!": {"_count": 8}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 11, "saying": {"_count": 1}, "started": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}, "Siriuss": {"_count": 1}, "Voldemort": {"_count": 1}, "rather": {"_count": 1}, "pressed": {"_count": 1}, "handed": {"_count": 1}, "to": {"_count": 1}}, "has": {"_count": 3, "fine": {"_count": 1}, "recently": {"_count": 1}, "committed": {"_count": 1}}, "will": {"_count": 2, "amount": {"_count": 1}, "be": {"_count": 1}}, "Bill": {"_count": 2, "works": {"_count": 1}, "were": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 2, "never": {"_count": 1}, "treated": {"_count": 1}}, "Tom": {"_count": 1, "had": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "real": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "Cedric": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "Draco": {"_count": 5, "and": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "who": {"_count": 1}, "is": {"_count": 1}}, "Harrys": {"_count": 1, "hair": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "appears": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 3, "caught": {"_count": 2}, "as": {"_count": 1}}, "a": {"_count": 3, "Death": {"_count": 1}, "trial": {"_count": 1}, "dark": {"_count": 1}}, "off": {"_count": 2, "": {"_count": 2}}, "to": {"_count": 3, "the": {"_count": 1}, "defend": {"_count": 1}, "his": {"_count": 1}}, "dead": {"_count": 1, "his": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "of": {"_count": 6, "mine": {"_count": 1}, "a": {"_count": 3}, "hers": {"_count": 1}, "the": {"_count": 1}}, "being": {"_count": 1, "dragged": {"_count": 1}}, "might": {"_count": 1, "not": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "If": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 6, "Uncle": {"_count": 1}, "Sirius": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "Ted": {"_count": 1}, "Dirk": {"_count": 1}}, "repeated": {"_count": 1, "Uncle": {"_count": 1}}, "so": {"_count": 1, "hed": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 2}}, "again": {"_count": 1, "I": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Im": {"_count": 1, "here": {"_count": 1}}, "Morfin": {"_count": 2, "performed": {"_count": 1}, "and": {"_count": 1}}, "anywhere": {"_count": 1, "": {"_count": 1}}, "ran": {"_count": 1, "off": {"_count": 1}}, "who": {"_count": 1, "needed": {"_count": 1}}, "she": {"_count": 1, "began": {"_count": 1}}, "lying": {"_count": 1, "between": {"_count": 1}}, "than": {"_count": 1, "Lupin": {"_count": 1}}, "now": {"_count": 1, "back": {"_count": 1}}, "currently": {"_count": 1, "at": {"_count": 1}}, "stood": {"_count": 1, "so": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Hereward": {"_count": 1, "took": {"_count": 1}}, "whats": {"_count": 1, "his": {"_count": 1}}, "is": {"_count": 1, "dead": {"_count": 1}}, "he": {"_count": 1, "is": {"_count": 1}}, "lives": {"_count": 1, "": {"_count": 1}}, "safe": {"_count": 1, "": {"_count": 1}}, "mother": {"_count": 1, "to": {"_count": 1}}, "hugged": {"_count": 1, "him": {"_count": 1}}, "glide": {"_count": 1, "away": {"_count": 1}}}, "Dudley": {"_count": 355, "and": {"_count": 26, "in": {"_count": 1}, "Piers": {"_count": 5}, "Uncle": {"_count": 2}, "Harry": {"_count": 1}, "bullied": {"_count": 1}, "me": {"_count": 1}, "a": {"_count": 1}, "took": {"_count": 1}, "they": {"_count": 1}, "Dudleys": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}, "he": {"_count": 1}, "ducked": {"_count": 1}, "Aunt": {"_count": 1}, "I": {"_count": 3}, "said": {"_count": 1}, "Dudders": {"_count": 1}}, "mixing": {"_count": 1, "with": {"_count": 1}}, "into": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 1}, "sitting": {"_count": 1}, "a": {"_count": 1}}, "goodbye": {"_count": 1, "but": {"_count": 1}}, "was": {"_count": 30, "now": {"_count": 2}, "very": {"_count": 1}, "about": {"_count": 1}, "telling": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "sniffling": {"_count": 1}, "howling": {"_count": 1}, "dancing": {"_count": 1}, "blond": {"_count": 1}, "eating": {"_count": 1}, "a": {"_count": 1}, "bigboned": {"_count": 1}, "crammed": {"_count": 1}, "still": {"_count": 1}, "quite": {"_count": 1}, "no": {"_count": 1}, "good": {"_count": 1}, "as": {"_count": 1}, "curled": {"_count": 1}, "losing": {"_count": 1}, "remembering": {"_count": 1}, "staring": {"_count": 2}, "grinning": {"_count": 1}, "frowning": {"_count": 1}, "frightened": {"_count": 1}, "struggling": {"_count": 1}, "frightening": {"_count": 1}}, "had": {"_count": 35, "learned": {"_count": 1}, "been": {"_count": 2}, "gotten": {"_count": 1}, "punched": {"_count": 1}, "laughed": {"_count": 1}, "a": {"_count": 2}, "already": {"_count": 1}, "once": {"_count": 1}, "swapped": {"_count": 1}, "sat": {"_count": 1}, "run": {"_count": 1}, "always": {"_count": 2}, "hit": {"_count": 2}, "ever": {"_count": 1}, "lost": {"_count": 1}, "said": {"_count": 1}, "made": {"_count": 1}, "gone": {"_count": 1}, "spent": {"_count": 1}, "even": {"_count": 1}, "reached": {"_count": 1}, "finally": {"_count": 1}, "nothing": {"_count": 1}, "emerged": {"_count": 1}, "had": {"_count": 1}, "not": {"_count": 1}, "recently": {"_count": 1}, "nearly": {"_count": 1}, "that": {"_count": 1}, "added": {"_count": 1}, "turned": {"_count": 1}}, "": {"_count": 35, ".": {"_count": 28}, "!": {"_count": 2}, "?": {"_count": 5}}, "Dursley": {"_count": 4, "was": {"_count": 1}, "look": {"_count": 1}, "wending": {"_count": 1}, "I": {"_count": 1}}, "wanted": {"_count": 1, "a": {"_count": 1}}, "arrived": {"_count": 1, "in": {"_count": 1}}, "looked": {"_count": 4, "a": {"_count": 1}, "like": {"_count": 2}, "furious": {"_count": 1}}, "meanwhile": {"_count": 2, "was": {"_count": 1}, "seemed": {"_count": 1}}, "going": {"_count": 1, "red": {"_count": 1}}, "tantrum": {"_count": 1, "coming": {"_count": 1}}, "turned": {"_count": 3, "the": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}}, "thought": {"_count": 3, "for": {"_count": 1}, "this": {"_count": 1}, "hed": {"_count": 1}}, "sat": {"_count": 2, "down": {"_count": 1}, "frozen": {"_count": 1}}, "unwrap": {"_count": 1, "the": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "yelled": {"_count": 2, "between": {"_count": 1}, "and": {"_count": 1}}, "hit": {"_count": 1, "them": {"_count": 1}}, "stopped": {"_count": 1, "pretending": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 3}, "his": {"_count": 2}, "ere": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "quickly": {"_count": 1, "found": {"_count": 1}}, "stood": {"_count": 1, "with": {"_count": 1}}, "ordered": {"_count": 1, "": {"_count": 1}}, "moaned": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "raised": {"_count": 1}}, "came": {"_count": 3, "waddling": {"_count": 2}, "flying": {"_count": 1}}, "were": {"_count": 5, "leaning": {"_count": 1}, "still": {"_count": 1}, "all": {"_count": 1}, "Harrys": {"_count": 2}}, "could": {"_count": 2, "only": {"_count": 1}, "work": {"_count": 1}}, "to": {"_count": 9, "London": {"_count": 1}, "the": {"_count": 2}, "know": {"_count": 1}, "think": {"_count": 1}, "his": {"_count": 2}, "talk": {"_count": 1}, "Harry": {"_count": 1}}, "paraded": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 6, "his": {"_count": 1}, "bow": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "there": {"_count": 1}}, "banged": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 9, "Uncle": {"_count": 2}, "nothing": {"_count": 1}, "after": {"_count": 1}, "at": {"_count": 1}, "hoarsely": {"_count": 1}, "Harry": {"_count": 3}}, "get": {"_count": 1, "it": {"_count": 1}}, "suddenly": {"_count": 2, "": {"_count": 1}, "reappeared": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "wasnt": {"_count": 2, "used": {"_count": 1}, "lying": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "promptly": {"_count": 1, "had": {"_count": 1}}, "won": {"_count": 1, "so": {"_count": 1}}, "slept": {"_count": 1, "and": {"_count": 1}}, "kept": {"_count": 2, "all": {"_count": 1}, "running": {"_count": 1}}, "bawling": {"_count": 1, "at": {"_count": 1}}, "go": {"_count": 2, "and": {"_count": 1}, "just": {"_count": 1}}, "asked": {"_count": 2, "Harry": {"_count": 1}, "Aunt": {"_count": 1}}, "snored": {"_count": 1, "but": {"_count": 1}}, "sniveled": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "just": {"_count": 1}}, "jerked": {"_count": 1, "awake": {"_count": 1}}, "squeaked": {"_count": 1, "and": {"_count": 1}}, "fidgeted": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "who": {"_count": 7, "never": {"_count": 1}, "was": {"_count": 3}, "had": {"_count": 3}}, "screamed": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}, "looking": {"_count": 1, "terrified": {"_count": 1}}, "this": {"_count": 1, "summer": {"_count": 1}}, "gets": {"_count": 1, "enough": {"_count": 1}}, "gasped": {"_count": 1, "and": {"_count": 1}}, "put": {"_count": 1, "on": {"_count": 1}}, "you": {"_count": 1, "11": {"_count": 1}}, "offering": {"_count": 1, "his": {"_count": 1}}, "tearing": {"_count": 1, "out": {"_count": 1}}, "waddling": {"_count": 1, "toward": {"_count": 1}}, "repeated": {"_count": 1, "coming": {"_count": 1}}, "hitched": {"_count": 1, "up": {"_count": 1}}, "stumbled": {"_count": 1, "backward": {"_count": 1}}, "tripping": {"_count": 1, "over": {"_count": 1}}, "nor": {"_count": 1, "the": {"_count": 1}}, "lolled": {"_count": 1, "around": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "rattled": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "think": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "musical": {"_count": 1}}, "smirked": {"_count": 1, "and": {"_count": 1}}, "whose": {"_count": 2, "attention": {"_count": 1}, "hamlike": {"_count": 1}}, "only": {"_count": 1, "put": {"_count": 1}}, "expensive": {"_count": 1, "presents": {"_count": 1}}, "give": {"_count": 1, "a": {"_count": 1}}, "glowered": {"_count": 1, "at": {"_count": 1}}, "feel": {"_count": 1, "better": {"_count": 1}}, "stole": {"_count": 1, "the": {"_count": 1}}, "finished": {"_count": 1, "with": {"_count": 1}}, "didnt": {"_count": 2, "even": {"_count": 1}, "seem": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "edged": {"_count": 1, "along": {"_count": 1}}, "whimpered": {"_count": 2, "": {"_count": 2}}, "seized": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "massive": {"_count": 1}}, "shielding": {"_count": 1, "him": {"_count": 1}}, "appeared": {"_count": 3, "to": {"_count": 3}}, "hasnt": {"_count": 1, "got": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "learning": {"_count": 1, "to": {"_count": 1}}, "do": {"_count": 1, "then": {"_count": 1}}, "again": {"_count": 1, "so": {"_count": 1}}, "turning": {"_count": 1, "away": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "look": {"_count": 1, "sideways": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "snarled": {"_count": 2, "": {"_count": 2}}, "breathlessly": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "Im": {"_count": 1, "warning": {"_count": 1}}, "backed": {"_count": 1, "into": {"_count": 1}}, "pounding": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "thoroughly": {"_count": 1}}, "shut": {"_count": 1, "WHAM": {"_count": 1}}, "blundering": {"_count": 1, "away": {"_count": 1}}, "lay": {"_count": 1, "curled": {"_count": 1}}, "still": {"_count": 1, "supine": {"_count": 1}}, "either": {"_count": 1, "could": {"_count": 1}}, "seemed": {"_count": 3, "to": {"_count": 2}, "incapable": {"_count": 1}}, "along": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 2, "heave": {"_count": 1}, "pigs": {"_count": 1}}, "swayed": {"_count": 1, "for": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "found": {"_count": 1, "his": {"_count": 1}}, "nodded": {"_count": 1, "": {"_count": 1}}, "unexpectedly": {"_count": 1, "and": {"_count": 1}}, "mumbled": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "shakily": {"_count": 1, "": {"_count": 1}}, "whispered": {"_count": 1, "still": {"_count": 1}}, "how": {"_count": 1, "come": {"_count": 1}}, "jumped": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "home": {"_count": 1, "and": {"_count": 1}}, "riding": {"_count": 1, "a": {"_count": 1}}, "hurrying": {"_count": 1, "along": {"_count": 1}}, "scrambled": {"_count": 1, "out": {"_count": 1}}, "skulking": {"_count": 1, "behind": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}, "squeezed": {"_count": 1, "between": {"_count": 1}}, "Harrys": {"_count": 1, "large": {"_count": 1}}, "following": {"_count": 1, "his": {"_count": 1}}, "shrank": {"_count": 1, "nearer": {"_count": 1}}, "did": {"_count": 3, "not": {"_count": 3}}, "raised": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "if": {"_count": 1}}, "lets": {"_count": 1, "get": {"_count": 1}}, "for": {"_count": 1, "several": {"_count": 1}}, "subsided": {"_count": 1, "into": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "thats": {"_count": 1, "like": {"_count": 1}}, "gently": {"_count": 1, "released": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "nearly": {"_count": 1, "smiled": {"_count": 1}}, "puked": {"_count": 1, "on": {"_count": 1}}, "content": {"_count": 1, "to": {"_count": 1}}}, "their": {"_count": 2515, "opinion": {"_count": 1, "there": {"_count": 1}}, "greatest": {"_count": 1, "fear": {"_count": 1}}, "son": {"_count": 5, "Harry": {"_count": 1}, "Dudley": {"_count": 2}, "": {"_count": 2}}, "sleeping": {"_count": 5, "pattern": {"_count": 1}, "bags": {"_count": 4}}, "kind": {"_count": 5, "": {"_count": 2}, "Or": {"_count": 1}, "dont": {"_count": 1}, "of": {"_count": 1}}, "window": {"_count": 1, "now": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "leather": {"_count": 1, "boots": {"_count": 1}}, "street": {"_count": 2, "lamps": {"_count": 1}, "was": {"_count": 1}}, "glasses": {"_count": 6, "and": {"_count": 1}, "": {"_count": 2}, "looked": {"_count": 1}, "completely": {"_count": 1}, "bounced": {"_count": 1}}, "nephew": {"_count": 1, "on": {"_count": 1}}, "living": {"_count": 3, "room": {"_count": 1}, "selves": {"_count": 1}, "son": {"_count": 1}}, "backs": {"_count": 15, "while": {"_count": 1}, "to": {"_count": 2}, "on": {"_count": 3}, "slapped": {"_count": 1}, "their": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "up": {"_count": 1}, "resting": {"_count": 1}}, "favorite": {"_count": 4, "hobby": {"_count": 1}, "tune": {"_count": 1}, "noses": {"_count": 1}, "Quidditch": {"_count": 1}}, "fingers": {"_count": 5, "on": {"_count": 2}, "into": {"_count": 1}, "pulling": {"_count": 1}, "which": {"_count": 1}}, "heels": {"_count": 3, "as": {"_count": 1}, "into": {"_count": 1}, "some": {"_count": 1}}, "necks": {"_count": 11, "and": {"_count": 3}, "": {"_count": 3}, "while": {"_count": 1}, "to": {"_count": 2}, "at": {"_count": 1}, "a": {"_count": 1}}, "way": {"_count": 125, "into": {"_count": 10}, "through": {"_count": 18}, "back": {"_count": 15}, "to": {"_count": 13}, "toward": {"_count": 8}, "down": {"_count": 5}, "across": {"_count": 9}, "in": {"_count": 3}, "around": {"_count": 1}, "over": {"_count": 2}, "with": {"_count": 1}, "barely": {"_count": 1}, "which": {"_count": 1}, "upstairs": {"_count": 2}, "slowly": {"_count": 3}, "silently": {"_count": 1}, "up": {"_count": 7}, "": {"_count": 2}, "out": {"_count": 5}, "between": {"_count": 1}, "Ron": {"_count": 1}, "onto": {"_count": 2}, "downstairs": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}, "there": {"_count": 1}, "left": {"_count": 1}, "By": {"_count": 1}, "along": {"_count": 2}, "squeakily": {"_count": 1}, "she": {"_count": 1}, "forward": {"_count": 1}, "closer": {"_count": 1}, "inside": {"_count": 1}}, "very": {"_count": 10, "confused": {"_count": 1}, "first": {"_count": 4}, "next": {"_count": 1}, "last": {"_count": 1}, "eyes": {"_count": 2}, "great": {"_count": 1}}, "arms": {"_count": 18, "over": {"_count": 4}, "": {"_count": 4}, "crossed": {"_count": 1}, "closing": {"_count": 1}, "around": {"_count": 3}, "folded": {"_count": 1}, "full": {"_count": 2}, "still": {"_count": 1}, "that": {"_count": 1}}, "faces": {"_count": 56, "Uncle": {"_count": 1}, "": {"_count": 17}, "Nearly": {"_count": 1}, "when": {"_count": 1}, "if": {"_count": 1}, "Harry": {"_count": 1}, "glimmering": {"_count": 1}, "as": {"_count": 6}, "were": {"_count": 4}, "lit": {"_count": 1}, "their": {"_count": 1}, "masked": {"_count": 1}, "moving": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 2}, "seemed": {"_count": 1}, "full": {"_count": 1}, "burst": {"_count": 1}, "in": {"_count": 2}, "against": {"_count": 1}, "and": {"_count": 3}, "after": {"_count": 1}, "jumped": {"_count": 1}, "but": {"_count": 1}, "completely": {"_count": 1}, "hooded": {"_count": 1}, "cruel": {"_count": 1}, "at": {"_count": 1}}, "table": {"_count": 16, "": {"_count": 2}, "and": {"_count": 4}, "stared": {"_count": 1}, "rose": {"_count": 1}, "hiding": {"_count": 1}, "instead": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}, "clutching": {"_count": 1}, "quickly": {"_count": 1}, "a": {"_count": 1}, "last": {"_count": 1}}, "corner": {"_count": 2, "": {"_count": 1}, "neither": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "reach": {"_count": 1, "": {"_count": 1}}, "house": {"_count": 9, "was": {"_count": 1}, "forever": {"_count": 1}, "destroyed": {"_count": 1}, "as": {"_count": 1}, "of": {"_count": 1}, "if": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "youll": {"_count": 1}}, "gold": {"_count": 4, "in": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}, "at": {"_count": 1}}, "main": {"_count": 1, "job": {"_count": 1}}, "problems": {"_count": 1, "": {"_count": 1}}, "tickets": {"_count": 4, "": {"_count": 2}, "instead": {"_count": 1}, "and": {"_count": 1}}, "shopping": {"_count": 3, "": {"_count": 2}, "would": {"_count": 1}}, "noses": {"_count": 7, "pressed": {"_count": 2}, "": {"_count": 2}, "and": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}}, "turn": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}}, "right": {"_count": 17, "weighing": {"_count": 1}, "minds": {"_count": 1}, "the": {"_count": 2}, "came": {"_count": 1}, "stood": {"_count": 1}, "hands": {"_count": 1}, "showed": {"_count": 1}, "": {"_count": 1}, "mind": {"_count": 4}, "sprang": {"_count": 1}, "and": {"_count": 1}, "legs": {"_count": 1}, "Yaxley": {"_count": 1}}, "own": {"_count": 61, "": {"_count": 4}, "but": {"_count": 2}, "living": {"_count": 1}, "were": {"_count": 1}, "version": {"_count": 1}, "heads": {"_count": 1}, "devices": {"_count": 1}, "beds": {"_count": 1}, "cups": {"_count": 1}, "minister": {"_count": 1}, "wand": {"_count": 1}, "school": {"_count": 1}, "house": {"_count": 1}, "plates": {"_count": 1}, "dormitory": {"_count": 1}, "free": {"_count": 1}, "despair": {"_count": 1}, "champion": {"_count": 1}, "horrific": {"_count": 1}, "to": {"_count": 1}, "hangings": {"_count": 1}, "days": {"_count": 1}, "housework": {"_count": 1}, "letter": {"_count": 1}, "theories": {"_count": 1}, "ways": {"_count": 1}, "laws": {"_count": 1}, "accord": {"_count": 2}, "conversation": {"_count": 1}, "Skiving": {"_count": 1}, "footsteps": {"_count": 1}, "protection": {"_count": 1}, "portraits": {"_count": 1}, "slower": {"_count": 1}, "Stunning": {"_count": 1}, "Thats": {"_count": 1}, "tightly": {"_count": 1}, "methods": {"_count": 1}, "cousins": {"_count": 1}, "eyebrows": {"_count": 1}, "pants": {"_count": 1}, "more": {"_count": 1}, "volition": {"_count": 1}, "common": {"_count": 1}, "eyes": {"_count": 1}, "thoughts": {"_count": 1}, "things": {"_count": 1}, "journeys": {"_count": 1}, "small": {"_count": 1}, "safety": {"_count": 1}, "and": {"_count": 1}, "faces": {"_count": 1}, "Harry": {"_count": 1}, "Houses": {"_count": 1}, "side": {"_count": 1}, "surprise": {"_count": 1}}, "funny": {"_count": 1, "shaped": {"_count": 1}}, "legs": {"_count": 4, "": {"_count": 2}, "had": {"_count": 1}, "and": {"_count": 1}}, "families": {"_count": 14, "some": {"_count": 1}, "": {"_count": 4}, "if": {"_count": 1}, "weren": {"_count": 1}, "to": {"_count": 1}, "never": {"_count": 1}, "together": {"_count": 1}, "made": {"_count": 1}, "are": {"_count": 1}, "again": {"_count": 1}, "lay": {"_count": 1}}, "mother": {"_count": 7, "": {"_count": 1}, "fondly": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "refused": {"_count": 1}, "had": {"_count": 2}}, "younger": {"_count": 1, "sister": {"_count": 1}}, "sister": {"_count": 1, "half": {"_count": 1}}, "door": {"_count": 3, "and": {"_count": 1}, "Mrs": {"_count": 1}, "toward": {"_count": 1}}, "compartment": {"_count": 8, "and": {"_count": 1}, "": {"_count": 2}, "had": {"_count": 1}, "apparently": {"_count": 1}, "slid": {"_count": 1}, "where": {"_count": 1}, "door": {"_count": 1}}, "heads": {"_count": 84, "he": {"_count": 2}, "and": {"_count": 12}, "": {"_count": 31}, "together": {"_count": 8}, "there": {"_count": 1}, "not": {"_count": 1}, "were": {"_count": 2}, "inclined": {"_count": 1}, "around": {"_count": 1}, "both": {"_count": 1}, "looking": {"_count": 2}, "cackling": {"_count": 1}, "banged": {"_count": 1}, "bent": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}, "down": {"_count": 1}, "with": {"_count": 1}, "out": {"_count": 1}, "for": {"_count": 1}, "off": {"_count": 1}, "they": {"_count": 2}, "to": {"_count": 1}, "until": {"_count": 1}, "as": {"_count": 2}, "a": {"_count": 1}, "whether": {"_count": 1}, "like": {"_count": 1}, "again": {"_count": 1}, "screaming": {"_count": 1}, "frantically": {"_count": 1}}, "meeting": {"_count": 1, "in": {"_count": 1}}, "jackets": {"_count": 1, "and": {"_count": 1}}, "long": {"_count": 5, "black": {"_count": 2}, "bald": {"_count": 1}, "and": {"_count": 1}, "colored": {"_count": 1}}, "pockets": {"_count": 5, "with": {"_count": 2}, "weighed": {"_count": 1}, "bulging": {"_count": 1}, "as": {"_count": 1}}, "boat": {"_count": 1, "by": {"_count": 1}}, "ends": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 6, "chat": {"_count": 1}, "plastic": {"_count": 1}, "shoulders": {"_count": 1}, "gang": {"_count": 1}, "brother": {"_count": 1}, "sitting": {"_count": 1}}, "House": {"_count": 5, "teams": {"_count": 1}, "common": {"_count": 1}, "dormitories": {"_count": 1}, "tables": {"_count": 1}, "Quidditch": {"_count": 1}}, "last": {"_count": 17, "few": {"_count": 1}, "evening": {"_count": 1}, "meeting": {"_count": 2}, "hope": {"_count": 1}, "Defense": {"_count": 2}, "chance": {"_count": 1}, "lesson": {"_count": 2}, "match": {"_count": 1}, "trip": {"_count": 1}, "facetoface": {"_count": 1}, "unfinished": {"_count": 1}, "team": {"_count": 1}, "visit": {"_count": 1}, "respects": {"_count": 1}}, "feet": {"_count": 48, "and": {"_count": 13}, "": {"_count": 10}, "as": {"_count": 4}, "were": {"_count": 1}, "tossed": {"_count": 1}, "very": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}, "all": {"_count": 1}, "talking": {"_count": 1}, "slipping": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "grumbling": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 1}, "moving": {"_count": 1}, "its": {"_count": 1}, "back": {"_count": 1}, "looking": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "one": {"_count": 1}, "flattened": {"_count": 1}}, "dormitory": {"_count": 10, "and": {"_count": 1}, "about": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 4}, "still": {"_count": 1}, "all": {"_count": 1}, "together": {"_count": 1}}, "beds": {"_count": 9, "at": {"_count": 1}, "": {"_count": 5}, "with": {"_count": 1}, "than": {"_count": 1}, "and": {"_count": 1}}, "pajamas": {"_count": 6, "and": {"_count": 3}, "": {"_count": 2}, "being": {"_count": 1}}, "telescopes": {"_count": 5, "every": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "hastening": {"_count": 1}, "haphazardly": {"_count": 1}}, "first": {"_count": 23, "class": {"_count": 2}, "lessons": {"_count": 1}, "flying": {"_count": 1}, "lesson": {"_count": 5}, "year": {"_count": 2}, "exam": {"_count": 1}, "ever": {"_count": 1}, "instructions": {"_count": 1}, "meeting": {"_count": 1}, "encounter": {"_count": 2}, "full": {"_count": 1}, "trip": {"_count": 1}, "bottomofthetable": {"_count": 1}, "priority": {"_count": 1}, "duty": {"_count": 1}, "course": {"_count": 1}}, "owners": {"_count": 10, "and": {"_count": 2}, "once": {"_count": 1}, "had": {"_count": 1}, "talking": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "were": {"_count": 1}, "arms": {"_count": 1}, "voices": {"_count": 1}}, "laps": {"_count": 1, "": {"_count": 1}}, "hands": {"_count": 42, "": {"_count": 9}, "now": {"_count": 1}, "and": {"_count": 5}, "to": {"_count": 4}, "as": {"_count": 2}, "high": {"_count": 1}, "outstretched": {"_count": 1}, "on": {"_count": 3}, "together": {"_count": 2}, "over": {"_count": 2}, "if": {"_count": 1}, "before": {"_count": 1}, "when": {"_count": 1}, "too": {"_count": 1}, "up": {"_count": 1}, "even": {"_count": 1}, "into": {"_count": 1}, "like": {"_count": 1}, "perhaps": {"_count": 1}, "shadowing": {"_count": 1}, "shaken": {"_count": 1}, "witness": {"_count": 1}}, "potion": {"_count": 1, "was": {"_count": 1}}, "stools": {"_count": 1, "while": {"_count": 1}}, "cauldron": {"_count": 1, "": {"_count": 1}}, "teeth": {"_count": 4, "but": {"_count": 1}, "Harry": {"_count": 1}, "so": {"_count": 1}, "are": {"_count": 1}}, "brooms": {"_count": 13, "without": {"_count": 1}, "": {"_count": 4}, "but": {"_count": 1}, "and": {"_count": 4}, "Aidan": {"_count": 1}, "pelting": {"_count": 1}, "caused": {"_count": 1}}, "grips": {"_count": 1, "": {"_count": 1}}, "knuckles": {"_count": 1, "and": {"_count": 1}}, "bathrobes": {"_count": 2, "picked": {"_count": 1}, "hanging": {"_count": 1}}, "wands": {"_count": 63, "and": {"_count": 5}, "to": {"_count": 3}, "like": {"_count": 1}, "above": {"_count": 1}, "lay": {"_count": 1}, "at": {"_count": 4}, "went": {"_count": 1}, "": {"_count": 11}, "out": {"_count": 5}, "others": {"_count": 2}, "high": {"_count": 1}, "again": {"_count": 2}, "still": {"_count": 1}, "The": {"_count": 1}, "back": {"_count": 1}, "pointing": {"_count": 1}, "now": {"_count": 1}, "dazzling": {"_count": 1}, "were": {"_count": 2}, "flashing": {"_count": 1}, "in": {"_count": 2}, "concentrating": {"_count": 1}, "simultaneously": {"_count": 1}, "beneath": {"_count": 1}, "for": {"_count": 2}, "raised": {"_count": 1}, "waiting": {"_count": 1}, "Xenophilius": {"_count": 1}, "too": {"_count": 1}, "into": {"_count": 1}, "aloft": {"_count": 1}, "drawn": {"_count": 2}, "outstretched": {"_count": 1}, "holding": {"_count": 1}}, "eyes": {"_count": 43, "on": {"_count": 2}, "off": {"_count": 1}, "": {"_count": 11}, "as": {"_count": 2}, "set": {"_count": 1}, "looked": {"_count": 1}, "into": {"_count": 1}, "shut": {"_count": 1}, "open": {"_count": 1}, "met": {"_count": 3}, "wide": {"_count": 1}, "moved": {"_count": 1}, "the": {"_count": 1}, "dart": {"_count": 1}, "to": {"_count": 1}, "immediately": {"_count": 1}, "then": {"_count": 1}, "gleaming": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 2}, "They": {"_count": 1}, "grew": {"_count": 1}, "upon": {"_count": 1}, "downcast": {"_count": 1}, "shining": {"_count": 1}, "but": {"_count": 1}, "when": {"_count": 1}, "while": {"_count": 1}}, "Charms": {"_count": 2, "classroom": {"_count": 2}}, "lives": {"_count": 13, "right": {"_count": 1}, "": {"_count": 6}, "to": {"_count": 1}, "and": {"_count": 2}, "none": {"_count": 1}, "like": {"_count": 1}, "now": {"_count": 1}}, "ears": {"_count": 18, "against": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 8}, "pressed": {"_count": 1}, "but": {"_count": 1}, "punctuated": {"_count": 1}, "as": {"_count": 1}, "until": {"_count": 1}, "looking": {"_count": 1}, "and": {"_count": 1}}, "direction": {"_count": 6, "three": {"_count": 1}, "even": {"_count": 1}, "": {"_count": 4}}, "sudden": {"_count": 2, "appearance": {"_count": 1}, "stillness": {"_count": 1}}, "shoulders": {"_count": 15, "and": {"_count": 3}, "Ron": {"_count": 1}, "at": {"_count": 3}, "against": {"_count": 1}, "": {"_count": 3}, "banging": {"_count": 1}, "And": {"_count": 1}, "toward": {"_count": 1}, "Hermiones": {"_count": 1}}, "flushed": {"_count": 1, "sweaty": {"_count": 1}}, "great": {"_count": 5, "delight": {"_count": 1}, "surprise": {"_count": 1}, "leathery": {"_count": 1}, "achievements": {"_count": 1}, "new": {"_count": 1}}, "laughter": {"_count": 4, "at": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 1}, "in": {"_count": 1}}, "job": {"_count": 3, "to": {"_count": 2}, "would": {"_count": 1}}, "side": {"_count": 7, "from": {"_count": 1}, "": {"_count": 4}, "of": {"_count": 1}, "now": {"_count": 1}}, "team": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 2}, "Gryffindor": {"_count": 1}}, "minds": {"_count": 8, "": {"_count": 4}, "for": {"_count": 1}, "about": {"_count": 1}, "were": {"_count": 1}, "said": {"_count": 1}}, "victory": {"_count": 1, "they": {"_count": 1}}, "hearts": {"_count": 7, "stop": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "sank": {"_count": 1}, "to": {"_count": 1}, "proudly": {"_count": 1}, "": {"_count": 1}}, "panic": {"_count": 1, "": {"_count": 1}}, "Houses": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "friend": {"_count": 3, "": {"_count": 1}, "from": {"_count": 1}, "Lee": {"_count": 1}}, "secret": {"_count": 2, "weapon": {"_count": 1}, "she": {"_count": 1}}, "guilty": {"_count": 2, "faces": {"_count": 2}}, "scarlet": {"_count": 5, "Quidditch": {"_count": 1}, "Gryffindor": {"_count": 1}, "robes": {"_count": 3}}, "riders": {"_count": 2, "off": {"_count": 1}, "are": {"_count": 1}}, "breath": {"_count": 6, "rose": {"_count": 1}, "as": {"_count": 1}, "they": {"_count": 1}, "pretending": {"_count": 1}, "rattling": {"_count": 1}, "waiting": {"_count": 1}}, "hot": {"_count": 1, "cauldrons": {"_count": 1}}, "flimsy": {"_count": 1, "paper": {"_count": 1}}, "noticing": {"_count": 2, "anything": {"_count": 1}, "": {"_count": 1}}, "footsteps": {"_count": 9, "dying": {"_count": 1}, "was": {"_count": 1}, "echoing": {"_count": 1}, "slapping": {"_count": 1}, "": {"_count": 4}, "he": {"_count": 1}}, "reflections": {"_count": 1, "were": {"_count": 1}}, "discussion": {"_count": 1, "": {"_count": 1}}, "breaks": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 7, "match": {"_count": 1}, "Herbology": {"_count": 1}, "Potions": {"_count": 1}, "Divination": {"_count": 1}, "Defense": {"_count": 1}, "Transfiguration": {"_count": 1}, "move": {"_count": 1}}, "free": {"_count": 3, "time": {"_count": 2}, "afternoon": {"_count": 1}}, "extra": {"_count": 1, "work": {"_count": 1}}, "interest": {"_count": 1, "at": {"_count": 1}}, "mothers": {"_count": 2, "breathe": {"_count": 1}, "famous": {"_count": 1}}, "lesson": {"_count": 3, "the": {"_count": 1}, "on": {"_count": 1}, "by": {"_count": 1}}, "trowels": {"_count": 1, "at": {"_count": 1}}, "chairs": {"_count": 9, "up": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 1}, "their": {"_count": 1}, "that": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 2}}, "happiness": {"_count": 1, "": {"_count": 1}}, "being": {"_count": 1, "out": {"_count": 1}}, "bags": {"_count": 14, "already": {"_count": 1}, "before": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 4}, "Ron": {"_count": 1}, "and": {"_count": 3}, "to": {"_count": 1}, "back": {"_count": 1}, "Harry": {"_count": 1}}, "hero": {"_count": 3, "of": {"_count": 1}, "": {"_count": 2}}, "voices": {"_count": 16, "as": {"_count": 2}, "coming": {"_count": 1}, "since": {"_count": 1}, "echoed": {"_count": 1}, "above": {"_count": 1}, "awoke": {"_count": 1}, "had": {"_count": 1}, "down": {"_count": 1}, "": {"_count": 2}, "echoing": {"_count": 2}, "fading": {"_count": 1}, "lifted": {"_count": 1}, "once": {"_count": 1}}, "punishment": {"_count": 1, "was": {"_count": 1}}, "hair": {"_count": 9, "as": {"_count": 1}, "in": {"_count": 1}, "angrily": {"_count": 1}, "into": {"_count": 1}, "was": {"_count": 1}, "swirling": {"_count": 1}, "and": {"_count": 1}, "damp": {"_count": 1}, "ruffled": {"_count": 1}}, "view": {"_count": 1, "": {"_count": 1}}, "flanks": {"_count": 1, "heaving": {"_count": 1}}, "chance": {"_count": 4, "": {"_count": 3}, "as": {"_count": 1}}, "throats": {"_count": 3, "sore": {"_count": 1}, "": {"_count": 1}, "At": {"_count": 1}}, "written": {"_count": 1, "papers": {"_count": 1}}, "foreheads": {"_count": 1, "but": {"_count": 1}}, "studying": {"_count": 1, "they": {"_count": 1}}, "exam": {"_count": 2, "results": {"_count": 1}, "papers": {"_count": 1}}, "quills": {"_count": 1, "and": {"_count": 1}}, "parchment": {"_count": 3, "Harry": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "dark": {"_count": 3, "dormitory": {"_count": 1}, "slanting": {"_count": 1}, "waters": {"_count": 1}}, "nervous": {"_count": 1, "state": {"_count": 1}}, "bodies": {"_count": 9, "and": {"_count": 1}, "": {"_count": 5}, "were": {"_count": 2}, "their": {"_count": 1}}, "other": {"_count": 2, "knight": {"_count": 1}, "commitments": {"_count": 1}}, "men": {"_count": 1, "was": {"_count": 1}}, "nostrils": {"_count": 3, "making": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "robes": {"_count": 14, "up": {"_count": 2}, "over": {"_count": 1}, "snagging": {"_count": 1}, "seemed": {"_count": 1}, "against": {"_count": 1}, "to": {"_count": 1}, "shouldered": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 2}, "into": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 1}}, "insides": {"_count": 1, "Fourth": {"_count": 1}}, "affairs": {"_count": 1, "in": {"_count": 1}}, "wardrobes": {"_count": 1, "were": {"_count": 1}}, "trunks": {"_count": 13, "were": {"_count": 1}, "and": {"_count": 2}, "down": {"_count": 1}, "touched": {"_count": 1}, "": {"_count": 5}, "across": {"_count": 1}, "to": {"_count": 1}, "Crookshanks": {"_count": 1}}, "wizard": {"_count": 1, "robes": {"_count": 1}}, "veins": {"_count": 1, "and": {"_count": 1}}, "terror": {"_count": 1, "that": {"_count": 1}}, "idea": {"_count": 3, "of": {"_count": 3}}, "masters": {"_count": 5, "permission": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 2}, "were": {"_count": 1}}, "key": {"_count": 1, "keeps": {"_count": 1}}, "letters": {"_count": 6, "": {"_count": 1}, "and": {"_count": 2}, "would": {"_count": 1}, "Hermione": {"_count": 1}, "first": {"_count": 1}}, "horror": {"_count": 1, "of": {"_count": 1}}, "coats": {"_count": 1, "and": {"_count": 1}}, "underground": {"_count": 1, "vaults": {"_count": 1}}, "later": {"_count": 1, "careers": {"_count": 1}}, "surprise": {"_count": 6, "a": {"_count": 1}, "he": {"_count": 1}, "Professor": {"_count": 1}, "": {"_count": 3}}, "weight": {"_count": 1, "he": {"_count": 1}}, "trolleys": {"_count": 1, "and": {"_count": 1}}, "luggage": {"_count": 5, "back": {"_count": 1}, "from": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}}, "seats": {"_count": 22, "squinting": {"_count": 1}, "next": {"_count": 1}, "and": {"_count": 3}, "to": {"_count": 2}, "": {"_count": 5}, "until": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}, "Dumbledore": {"_count": 1}, "some": {"_count": 1}, "not": {"_count": 1}, "when": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "necessitating": {"_count": 1}}, "sweaters": {"_count": 1, "but": {"_count": 1}}, "floor": {"_count": 1, "of": {"_count": 1}}, "old": {"_count": 3, "dormitory": {"_count": 1}, "teacher": {"_count": 1}, "school": {"_count": 1}}, "petrified": {"_count": 1, "faces": {"_count": 1}}, "original": {"_count": 3, "state": {"_count": 1}, "spotless": {"_count": 1}, "silverywhite": {"_count": 1}}, "cries": {"_count": 3, "wont": {"_count": 1}, "strangely": {"_count": 1}, "acted": {"_count": 1}}, "tray": {"_count": 1, "by": {"_count": 1}}, "plant": {"_count": 1, "pots": {"_count": 1}}, "sharp": {"_count": 1, "little": {"_count": 1}}, "cage": {"_count": 2, "": {"_count": 2}}, "worst": {"_count": 2, "defeat": {"_count": 1}, "idea": {"_count": 1}}, "new": {"_count": 4, "Seeker": {"_count": 1}, "course": {"_count": 1}, "Beaters": {"_count": 1}, "policy": {"_count": 1}}, "broomsticks": {"_count": 4, "": {"_count": 2}, "over": {"_count": 1}, "confiscated": {"_count": 1}}, "appearance": {"_count": 3, "": {"_count": 2}, "had": {"_count": 1}}, "tea": {"_count": 2, "": {"_count": 1}, "while": {"_count": 1}}, "requirements": {"_count": 1, "": {"_count": 1}}, "labels": {"_count": 1, "Harry": {"_count": 1}}, "ankles": {"_count": 5, "from": {"_count": 1}, "they": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "Halloween": {"_count": 1, "feast": {"_count": 1}}, "steps": {"_count": 3, "instead": {"_count": 1}, "along": {"_count": 1}, "back": {"_count": 1}}, "tracks": {"_count": 3, "horrified": {"_count": 1}, "and": {"_count": 1}, "watching": {"_count": 1}}, "parties": {"_count": 1, "": {"_count": 1}}, "full": {"_count": 1, "size": {"_count": 1}}, "schedule": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 5, "ghost": {"_count": 1}, "chance": {"_count": 1}, "son": {"_count": 1}, "concern": {"_count": 1}, "daughter": {"_count": 1}}, "hurry": {"_count": 1, "to": {"_count": 1}}, "holders": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "mouths": {"_count": 11, "open": {"_count": 4}, "in": {"_count": 1}, "that": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 3}, "off": {"_count": 1}}, "boos": {"_count": 1, "and": {"_count": 1}}, "jobs": {"_count": 3, "and": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 1}}, "flailing": {"_count": 1, "arms": {"_count": 1}}, "opponent": {"_count": 1, "Snape": {"_count": 1}}, "time": {"_count": 9, "off": {"_count": 1}, "pretending": {"_count": 1}, "": {"_count": 1}, "until": {"_count": 1}, "on": {"_count": 2}, "and": {"_count": 1}, "together": {"_count": 1}, "stripping": {"_count": 1}}, "classes": {"_count": 4, "": {"_count": 1}, "to": {"_count": 1}, "too": {"_count": 1}, "what": {"_count": 1}}, "frames": {"_count": 14, "": {"_count": 2}, "to": {"_count": 2}, "muttering": {"_count": 1}, "thinking": {"_count": 1}, "but": {"_count": 2}, "the": {"_count": 2}, "heads": {"_count": 1}, "and": {"_count": 3}}, "tears": {"_count": 2, "have": {"_count": 1}, "receive": {"_count": 1}}, "antics": {"_count": 1, "seemed": {"_count": 1}}, "childish": {"_count": 1, "behavior": {"_count": 1}}, "third": {"_count": 3, "helpings": {"_count": 1}, "walk": {"_count": 1}, "run": {"_count": 1}}, "plans": {"_count": 6, "for": {"_count": 3}, "was": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}}, "hairs": {"_count": 1, "and": {"_count": 1}}, "large": {"_count": 2, "mouths": {"_count": 1}, "feet": {"_count": 1}}, "shoes": {"_count": 3, "because": {"_count": 1}, "outside": {"_count": 1}, "that": {"_count": 1}}, "precious": {"_count": 1, "sixty": {"_count": 1}}, "watches": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "best": {"_count": 12, "to": {"_count": 2}, "robes": {"_count": 1}, "chance": {"_count": 1}, "friend": {"_count": 1}, "moves": {"_count": 2}, "men": {"_count": 1}, "interests": {"_count": 1}, "advantage": {"_count": 1}, "goal": {"_count": 1}, "but": {"_count": 1}}, "hour": {"_count": 1, "was": {"_count": 1}}, "socks": {"_count": 2, "up": {"_count": 1}, "and": {"_count": 1}}, "Christmas": {"_count": 2, "holidays": {"_count": 1}, "lunch": {"_count": 1}}, "acne": {"_count": 1, "clears": {"_count": 1}}, "daughter": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "Easter": {"_count": 1, "holidays": {"_count": 1}}, "subjects": {"_count": 2, "for": {"_count": 1}, "who": {"_count": 1}}, "Heads": {"_count": 2, "of": {"_count": 2}}, "fellow": {"_count": 6, "students": {"_count": 1}, "Gryffindor": {"_count": 2}, "Gryffindors": {"_count": 1}, "guests": {"_count": 1}, "prisoners": {"_count": 1}}, "number": {"_count": 1, "Justin": {"_count": 1}}, "progress": {"_count": 3, "with": {"_count": 1}, "was": {"_count": 1}, "clear": {"_count": 1}}, "fixed": {"_count": 1, "course": {"_count": 1}}, "Defense": {"_count": 5, "Against": {"_count": 5}}, "usual": {"_count": 12, "places": {"_count": 1}, "beautiful": {"_count": 1}, "carwashing": {"_count": 1}, "argument": {"_count": 1}, "table": {"_count": 1}, "seats": {"_count": 2}, "grunts": {"_count": 1}, "pile": {"_count": 1}, "corner": {"_count": 1}, "shortcut": {"_count": 1}, "length": {"_count": 1}}, "spider": {"_count": 1, "guides": {"_count": 1}}, "skins": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "eyeballs": {"_count": 1, "as": {"_count": 1}}, "pincers": {"_count": 1, "excitedly": {"_count": 1}}, "many": {"_count": 3, "eyes": {"_count": 1}, "victims": {"_count": 1}, "injuries": {"_count": 1}}, "ugly": {"_count": 1, "black": {"_count": 1}}, "endless": {"_count": 1, "legs": {"_count": 1}}, "teachers": {"_count": 3, "long": {"_count": 1}, "to": {"_count": 1}, "thought": {"_count": 1}}, "exams": {"_count": 6, "would": {"_count": 1}, "which": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}}, "help": {"_count": 3, "but": {"_count": 1}, "so": {"_count": 1}, "as": {"_count": 1}}, "brilliant": {"_count": 1, "scheme": {"_count": 1}}, "mortal": {"_count": 1, "enemy": {"_count": 1}}, "students": {"_count": 3, "what": {"_count": 1}, "into": {"_count": 1}, "that": {"_count": 1}}, "dormitories": {"_count": 8, "": {"_count": 3}, "and": {"_count": 2}, "very": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}}, "expression": {"_count": 1, "grew": {"_count": 1}}, "plates": {"_count": 5, "of": {"_count": 2}, "": {"_count": 1}, "too": {"_count": 1}, "but": {"_count": 1}}, "fury": {"_count": 2, "they": {"_count": 1}, "that": {"_count": 1}}, "wings": {"_count": 4, "": {"_count": 3}, "restlessly": {"_count": 1}}, "guest": {"_count": 1, "": {"_count": 1}}, "bargain": {"_count": 1, "in": {"_count": 1}}, "decent": {"_count": 1, "hardworking": {"_count": 1}}, "aunts": {"_count": 1, "": {"_count": 1}}, "purchases": {"_count": 2, "its": {"_count": 1}, "Mr": {"_count": 1}}, "ice": {"_count": 1, "cream": {"_count": 1}}, "glass": {"_count": 2, "tank": {"_count": 1}, "": {"_count": 1}}, "skipping": {"_count": 1, "tricks": {"_count": 1}}, "fifth": {"_count": 2, "year": {"_count": 1}, "game": {"_count": 1}}, "previous": {"_count": 5, "year": {"_count": 1}, "Dark": {"_count": 1}, "conversations": {"_count": 1}, "lesson": {"_count": 1}, "state": {"_count": 1}}, "pudding": {"_count": 1, "": {"_count": 1}}, "rooms": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "things": {"_count": 6, "for": {"_count": 1}, "away": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "apparently": {"_count": 1}, "Hermione": {"_count": 1}}, "cages": {"_count": 1, "": {"_count": 1}}, "hats": {"_count": 5, "in": {"_count": 1}, "all": {"_count": 2}, "pulled": {"_count": 1}, "and": {"_count": 1}}, "children": {"_count": 7, "onto": {"_count": 1}, "exposed": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "three": {"_count": 3, "least": {"_count": 1}, "favorite": {"_count": 1}, "victims": {"_count": 1}}, "compartments": {"_count": 3, "": {"_count": 1}, "to": {"_count": 2}}, "traditional": {"_count": 1, "journey": {"_count": 1}}, "search": {"_count": 2, "of": {"_count": 1}, "Harry": {"_count": 1}}, "separate": {"_count": 1, "staircases": {"_count": 1}}, "familiar": {"_count": 1, "circular": {"_count": 1}}, "breakfasts": {"_count": 2, "hastily": {"_count": 1}, "while": {"_count": 1}}, "seventh": {"_count": 1, "long": {"_count": 1}}, "natural": {"_count": 2, "size": {"_count": 1}, "habitat": {"_count": 1}}, "teacups": {"_count": 2, "filled": {"_count": 1}, "back": {"_count": 1}}, "books": {"_count": 15, "at": {"_count": 1}, "and": {"_count": 5}, "": {"_count": 3}, "quills": {"_count": 1}, "Professor": {"_count": 1}, "while": {"_count": 1}, "now": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 1}}, "laughs": {"_count": 1, "as": {"_count": 1}}, "book": {"_count": 1, "shut": {"_count": 1}}, "front": {"_count": 3, "legs": {"_count": 1}, "doors": {"_count": 1}, "porches": {"_count": 1}}, "fierce": {"_count": 1, "heads": {"_count": 1}}, "powerful": {"_count": 3, "wings": {"_count": 1}, "scuttling": {"_count": 1}, "silver": {"_count": 1}}, "muscles": {"_count": 1, "threateningly": {"_count": 1}}, "dungeon": {"_count": 2, "common": {"_count": 2}}, "ribs": {"_count": 1, "": {"_count": 1}}, "ingredients": {"_count": 1, "on": {"_count": 1}}, "unused": {"_count": 1, "ingredients": {"_count": 1}}, "spare": {"_count": 1, "robes": {"_count": 1}}, "sleeves": {"_count": 3, "": {"_count": 1}, "rolled": {"_count": 1}, "who": {"_count": 1}}, "ponds": {"_count": 1, "": {"_count": 1}}, "squabble": {"_count": 1, "about": {"_count": 1}}, "love": {"_count": 1, "Potter": {"_count": 1}}, "elbows": {"_count": 1, "to": {"_count": 1}}, "final": {"_count": 3, "training": {"_count": 1}, "destination": {"_count": 1}, "match": {"_count": 1}}, "Seekers": {"_count": 1, "arms": {"_count": 1}}, "chances": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "styles": {"_count": 1, "quite": {"_count": 1}}, "hidden": {"_count": 1, "faces": {"_count": 1}}, "head": {"_count": 5, "of": {"_count": 1}, "": {"_count": 1}, "ripped": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}}, "dying": {"_count": 1, "parents": {"_count": 1}}, "presence": {"_count": 6, "though": {"_count": 1}, "slamming": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "then": {"_count": 1}, "was": {"_count": 1}}, "broom": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "supply": {"_count": 1, "of": {"_count": 1}}, "Quidditch": {"_count": 2, "match": {"_count": 1}, "robes": {"_count": 1}}, "stations": {"_count": 1, "at": {"_count": 1}}, "brother": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "barrel": {"_count": 1, "": {"_count": 1}}, "sweets": {"_count": 1, "the": {"_count": 1}}, "scarves": {"_count": 3, "": {"_count": 1}, "back": {"_count": 1}, "pulled": {"_count": 1}}, "money": {"_count": 3, "": {"_count": 1}, "bags": {"_count": 1}, "that": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "movements": {"_count": 2, "said": {"_count": 1}, "so": {"_count": 1}}, "league": {"_count": 1, "talentwise": {"_count": 1}}, "memories": {"_count": 3, "later": {"_count": 1}, "modified": {"_count": 1}, "said": {"_count": 1}}, "Secret": {"_count": 1, "Keeper": {"_count": 1}}, "cloaks": {"_count": 11, "from": {"_count": 1}, "soaked": {"_count": 1}, "and": {"_count": 3}, "more": {"_count": 1}, "": {"_count": 2}, "their": {"_count": 1}, "on": {"_count": 1}, "tightly": {"_count": 1}}, "party": {"_count": 1, "hats": {"_count": 1}}, "enjoyment": {"_count": 1, "and": {"_count": 1}}, "fourth": {"_count": 3, "week": {"_count": 1}, "meeting": {"_count": 1}, "lesson": {"_count": 1}}, "jaws": {"_count": 1, "upon": {"_count": 1}}, "soul": {"_count": 2, "sucked": {"_count": 1}, "": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "midst": {"_count": 9, "performed": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 5}, "leaving": {"_count": 1}, "dressed": {"_count": 1}}, "match": {"_count": 2, "against": {"_count": 2}}, "captains": {"_count": 1, "and": {"_count": 1}}, "Beater": {"_count": 1, "from": {"_count": 1}}, "staircase": {"_count": 1, "pulling": {"_count": 1}}, "clubs": {"_count": 3, "": {"_count": 1}, "made": {"_count": 1}, "nervously": {"_count": 1}}, "promise": {"_count": 1, "about": {"_count": 1}}, "pets": {"_count": 1, "said": {"_count": 1}}, "visit": {"_count": 2, "discussing": {"_count": 1}, "to": {"_count": 1}}, "climb": {"_count": 1, "was": {"_count": 1}}, "joke": {"_count": 4, "succeeded": {"_count": 1}, "shop": {"_count": 2}, "about": {"_count": 1}}, "sacrifice": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "apple": {"_count": 1, "pie": {"_count": 1}}, "crystal": {"_count": 2, "ball": {"_count": 2}}, "candle": {"_count": 1, "": {"_count": 1}}, "Orb": {"_count": 1, "": {"_count": 1}}, "flags": {"_count": 1, "and": {"_count": 1}}, "Chaser": {"_count": 2, "": {"_count": 2}}, "knees": {"_count": 3, "kept": {"_count": 1}, "or": {"_count": 1}, "again": {"_count": 1}}, "brains": {"_count": 3, "into": {"_count": 1}, "was": {"_count": 1}, "sometimes": {"_count": 1}}, "O": {"_count": 5, "": {"_count": 5}}, "common": {"_count": 4, "rooms": {"_count": 3}, "room": {"_count": 1}}, "flobberworm": {"_count": 1, "had": {"_count": 1}}, "lunch": {"_count": 2, "happily": {"_count": 1}, "hour": {"_count": 1}}, "class": {"_count": 1, "were": {"_count": 1}}, "markings": {"_count": 1, "and": {"_count": 1}}, "influence": {"_count": 1, "I": {"_count": 1}}, "sleep": {"_count": 2, "": {"_count": 2}}, "ways": {"_count": 1, "": {"_count": 1}}, "emotions": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "who": {"_count": 1}}, "slow": {"_count": 1, "progress": {"_count": 1}}, "vision": {"_count": 1, "they": {"_count": 1}}, "rattling": {"_count": 1, "breath": {"_count": 1}}, "behavior": {"_count": 2, "": {"_count": 2}}, "actions": {"_count": 1, "": {"_count": 1}}, "interference": {"_count": 1, "might": {"_count": 1}}, "positions": {"_count": 1, "at": {"_count": 1}}, "past": {"_count": 1, "or": {"_count": 1}}, "grip": {"_count": 2, "and": {"_count": 1}, "staring": {"_count": 1}}, "left": {"_count": 5, "just": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "arms": {"_count": 1}}, "chocolate": {"_count": 1, "quietly": {"_count": 1}}, "nerves": {"_count": 1, "jangling": {"_count": 1}}, "point": {"_count": 2, "": {"_count": 1}, "o": {"_count": 1}}, "spectacular": {"_count": 1, "performance": {"_count": 1}}, "dinner": {"_count": 3, "things": {"_count": 1}, "roundly": {"_count": 1}, "threw": {"_count": 1}}, "grownup": {"_count": 1, "son": {"_count": 1}}, "murderer": {"_count": 1, "for": {"_count": 1}}, "firesides": {"_count": 1, "when": {"_count": 1}}, "graves": {"_count": 2, "remained": {"_count": 1}, "perhaps": {"_count": 1}}, "bicycles": {"_count": 1, "over": {"_count": 1}}, "parents": {"_count": 6, "and": {"_count": 1}, "or": {"_count": 1}, "raise": {"_count": 1}, "over": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "attempts": {"_count": 3, "to": {"_count": 3}}, "dreams": {"_count": 2, "untroubled": {"_count": 1}, "": {"_count": 1}}, "story": {"_count": 2, "": {"_count": 1}, "Percy": {"_count": 1}}, "general": {"_count": 1, "wish": {"_count": 1}}, "fear": {"_count": 1, "of": {"_count": 1}}, "attitude": {"_count": 1, "had": {"_count": 1}}, "permission": {"_count": 1, "first": {"_count": 1}}, "cars": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "room": {"_count": 2, "for": {"_count": 1}, "he": {"_count": 1}}, "engagement": {"_count": 1, "any": {"_count": 1}}, "fake": {"_count": 1, "wands": {"_count": 1}}, "homemade": {"_count": 1, "strawberry": {"_count": 1}}, "departure": {"_count": 4, "": {"_count": 1}, "back": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}}, "rucksacks": {"_count": 1, "onto": {"_count": 1}}, "buses": {"_count": 1, "and": {"_count": 1}}, "bulky": {"_count": 1, "backpacks": {"_count": 1}}, "handiwork": {"_count": 1, "": {"_count": 1}}, "tents": {"_count": 4, "and": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 2}}, "flaps": {"_count": 1, "open": {"_count": 1}}, "names": {"_count": 24, "": {"_count": 5}, "embroidered": {"_count": 1}, "Troy": {"_count": 1}, "for": {"_count": 2}, "forward": {"_count": 1}, "Madame": {"_count": 1}, "down": {"_count": 1}, "led": {"_count": 1}, "to": {"_count": 4}, "on": {"_count": 3}, "in": {"_count": 2}, "here": {"_count": 1}, "at": {"_count": 1}}, "fireside": {"_count": 1, "and": {"_count": 1}}, "national": {"_count": 1, "anthems": {"_count": 1}}, "places": {"_count": 6, "in": {"_count": 3}, "awaiting": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 1}}, "lofty": {"_count": 1, "position": {"_count": 1}}, "native": {"_count": 1, "land": {"_count": 1}}, "discordant": {"_count": 1, "national": {"_count": 1}}, "skin": {"_count": 1, "shine": {"_count": 1}}, "whitegold": {"_count": 1, "hair": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "lead": {"_count": 2, "to": {"_count": 1}, "from": {"_count": 1}}, "ranks": {"_count": 2, "dodge": {"_count": 1}, "": {"_count": 1}}, "descent": {"_count": 1, "through": {"_count": 1}}, "Seeker": {"_count": 1, "on": {"_count": 1}}, "mascots": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "campsites": {"_count": 1, "": {"_count": 1}}, "lanterns": {"_count": 1, "": {"_count": 1}}, "bunks": {"_count": 1, "": {"_count": 1}}, "nightdresses": {"_count": 1, "with": {"_count": 1}}, "admirers": {"_count": 1, "had": {"_count": 1}}, "clearing": {"_count": 2, "": {"_count": 2}}, "support": {"_count": 1, "": {"_count": 1}}, "daily": {"_count": 2, "lives": {"_count": 1}, "business": {"_count": 1}}, "breakfast": {"_count": 4, "": {"_count": 2}, "in": {"_count": 1}, "then": {"_count": 1}}, "Divination": {"_count": 1, "teacher": {"_count": 1}}, "ruined": {"_count": 1, "property": {"_count": 1}}, "school": {"_count": 6, "robes": {"_count": 3}, "and": {"_count": 1}, "bags": {"_count": 1}, "trunks": {"_count": 1}}, "whereabouts": {"_count": 2, "so": {"_count": 1}, "to": {"_count": 1}}, "secrets": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "uniforms": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 4, "looked": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 2}}, "carriage": {"_count": 3, "came": {"_count": 1}, "and": {"_count": 1}, "clearly": {"_count": 1}}, "efforts": {"_count": 4, "to": {"_count": 2}, "into": {"_count": 1}, "on": {"_count": 1}}, "pupils": {"_count": 2, "": {"_count": 2}}, "wildest": {"_count": 1, "dreams": {"_count": 1}}, "wits": {"_count": 2, "Clang": {"_count": 1}, "about": {"_count": 1}}, "attention": {"_count": 2, "to": {"_count": 1}, "focused": {"_count": 1}}, "shortlisted": {"_count": 1, "contenders": {"_count": 1}}, "neighbors": {"_count": 4, "": {"_count": 1}, "and": {"_count": 2}, "ears": {"_count": 1}}, "bellies": {"_count": 1, "": {"_count": 1}}, "moment": {"_count": 1, "of": {"_count": 1}}, "opponents": {"_count": 2, "backs": {"_count": 1}, "at": {"_count": 1}}, "copies": {"_count": 4, "of": {"_count": 4}}, "cottage": {"_count": 1, "": {"_count": 1}}, "victims": {"_count": 3, "to": {"_count": 1}, "and": {"_count": 1}, "among": {"_count": 1}}, "predictions": {"_count": 2, "for": {"_count": 1}, "commending": {"_count": 1}}, "homework": {"_count": 11, "properly": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 2}, "from": {"_count": 1}, "though": {"_count": 1}, "that": {"_count": 1}, "again": {"_count": 1}, "might": {"_count": 1}, "and": {"_count": 1}}, "lessons": {"_count": 6, "were": {"_count": 2}, "but": {"_count": 1}, "lecturing": {"_count": 1}, "or": {"_count": 1}, "to": {"_count": 1}}, "unflinching": {"_count": 1, "acceptance": {"_count": 1}}, "antidote": {"_count": 1, "worked": {"_count": 1}}, "workload": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "project": {"_count": 1, "suggested": {"_count": 1}}, "extraordinary": {"_count": 1, "behavior": {"_count": 1}}, "raw": {"_count": 1, "pink": {"_count": 1}}, "enormous": {"_count": 3, "heads": {"_count": 1}, "strides": {"_count": 1}, "workload": {"_count": 1}}, "heights": {"_count": 1, "": {"_count": 1}}, "late": {"_count": 1, "teens": {"_count": 1}}, "position": {"_count": 3, "at": {"_count": 1}, "": {"_count": 2}}, "silhouettes": {"_count": 1, "passing": {"_count": 1}}, "bulk": {"_count": 1, "was": {"_count": 1}}, "heavy": {"_count": 1, "furs": {"_count": 1}}, "headmistress": {"_count": 1, "appeared": {"_count": 1}}, "differently": {"_count": 1, "colored": {"_count": 1}}, "furs": {"_count": 1, "the": {"_count": 1}}, "magical": {"_count": 2, "prowess": {"_count": 1}, "hats": {"_count": 1}}, "daring": {"_count": 1, "their": {"_count": 1}}, "powers": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "ability": {"_count": 1, "to": {"_count": 1}}, "name": {"_count": 5, "and": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "Said": {"_count": 1}, "down": {"_count": 1}}, "schools": {"_count": 1, "": {"_count": 1}}, "headmaster": {"_count": 2, "the": {"_count": 1}, "rising": {"_count": 1}}, "beards": {"_count": 1, "is": {"_count": 1}}, "slips": {"_count": 1, "of": {"_count": 1}}, "work": {"_count": 8, "cut": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "outside": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}}, "appetites": {"_count": 1, "": {"_count": 1}}, "nature": {"_count": 1, "ter": {"_count": 1}}, "wake": {"_count": 5, "jogging": {"_count": 1}, "checking": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}}, "disappointment": {"_count": 1, "fairly": {"_count": 1}}, "second": {"_count": 5, "feast": {"_count": 1}, "year": {"_count": 3}, "attempt": {"_count": 1}}, "advantage": {"_count": 1, "Moody": {"_count": 1}}, "instructions": {"_count": 1, "havent": {"_count": 1}}, "wish": {"_count": 1, "": {"_count": 1}}, "toast": {"_count": 1, "as": {"_count": 1}}, "champions": {"_count": 2, "glory": {"_count": 1}, "everything": {"_count": 1}}, "skrewts": {"_count": 1, "then": {"_count": 1}}, "stomach": {"_count": 1, "trying": {"_count": 1}}, "badges": {"_count": 1, "too": {"_count": 1}}, "explanations": {"_count": 1, "Snape": {"_count": 1}}, "lunchtimes": {"_count": 2, "": {"_count": 1}, "evenings": {"_count": 1}}, "hind": {"_count": 1, "legs": {"_count": 1}}, "open": {"_count": 2, "fanged": {"_count": 1}, "mouths": {"_count": 1}}, "outstretched": {"_count": 1, "necks": {"_count": 1}}, "fallen": {"_count": 1, "charges": {"_count": 1}}, "stuff": {"_count": 2, "": {"_count": 2}}, "thick": {"_count": 3, "hides": {"_count": 1}, "protective": {"_count": 1}, "black": {"_count": 1}}, "classroom": {"_count": 1, "and": {"_count": 1}}, "smiles": {"_count": 2, "evident": {"_count": 1}, "fading": {"_count": 1}}, "cooking": {"_count": 1, "": {"_count": 1}}, "preferred": {"_count": 1, "drink": {"_count": 1}}, "paddock": {"_count": 1, "was": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "fireblasting": {"_count": 1, "ends": {"_count": 1}}, "stings": {"_count": 1, "and": {"_count": 1}}, "suckers": {"_count": 1, "combined": {"_count": 1}}, "sparks": {"_count": 1, "": {"_count": 1}}, "counterparts": {"_count": 1, "above": {"_count": 1}}, "leave": {"_count": 2, "many": {"_count": 1}, "too": {"_count": 1}}, "age": {"_count": 2, "said": {"_count": 1}, "I": {"_count": 1}}, "partners": {"_count": 6, "What": {"_count": 1}, "open": {"_count": 1}, "to": {"_count": 1}, "reached": {"_count": 1}, "were": {"_count": 1}, "would": {"_count": 1}}, "recently": {"_count": 1, "repaired": {"_count": 1}}, "absence": {"_count": 6, "": {"_count": 3}, "was": {"_count": 2}, "struck": {"_count": 1}}, "Canary": {"_count": 1, "Creams": {"_count": 1}}, "chess": {"_count": 1, "match": {"_count": 1}}, "highest": {"_count": 1, "extent": {"_count": 1}}, "presents": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "snowball": {"_count": 1, "fight": {"_count": 1}}, "dress": {"_count": 2, "robes": {"_count": 2}}, "orders": {"_count": 1, "with": {"_count": 1}}, "fullest": {"_count": 2, "extent": {"_count": 2}}, "instruments": {"_count": 1, "and": {"_count": 1}}, "Head": {"_count": 2, "of": {"_count": 2}}, "natures": {"_count": 2, "is": {"_count": 1}, "theyre": {"_count": 1}}, "rosebush": {"_count": 1, "": {"_count": 1}}, "argument": {"_count": 3, "": {"_count": 2}, "down": {"_count": 1}}, "kids": {"_count": 4, "ha": {"_count": 1}, "outta": {"_count": 1}, "unless": {"_count": 1}, "injured": {"_count": 1}}, "office": {"_count": 1, "": {"_count": 1}}, "lack": {"_count": 2, "of": {"_count": 2}}, "nose": {"_count": 1, "hair": {"_count": 1}}, "green": {"_count": 1, "skin": {"_count": 1}}, "fists": {"_count": 3, "at": {"_count": 2}, "": {"_count": 1}}, "broken": {"_count": 1, "teeth": {"_count": 1}}, "caves": {"_count": 1, "to": {"_count": 1}}, "spears": {"_count": 1, "and": {"_count": 1}}, "greenhaired": {"_count": 1, "heads": {"_count": 1}}, "horrible": {"_count": 1, "screechy": {"_count": 1}}, "champion": {"_count": 1, "hadnt": {"_count": 1}}, "WitSharpening": {"_count": 1, "Potion": {"_count": 1}}, "desk": {"_count": 1, "while": {"_count": 1}}, "gardens": {"_count": 1, "larger": {"_count": 1}}, "talk": {"_count": 1, "because": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "boxes": {"_count": 1, "": {"_count": 1}}, "future": {"_count": 2, "and": {"_count": 1}, "careers": {"_count": 1}}, "owl": {"_count": 1, "back": {"_count": 1}}, "target": {"_count": 1, "does": {"_count": 1}}, "chests": {"_count": 6, "rising": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}, "looking": {"_count": 1}, "Slytherins": {"_count": 1}}, "dead": {"_count": 2, "and": {"_count": 1}, "see": {"_count": 1}}, "power": {"_count": 1, "only": {"_count": 1}}, "feelings": {"_count": 2, "": {"_count": 1}, "about": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "cold": {"_count": 1, "draining": {"_count": 1}}, "condition": {"_count": 1, "none": {"_count": 1}}, "tongues": {"_count": 2, "like": {"_count": 1}, "lolling": {"_count": 1}}, "uses": {"_count": 1, "did": {"_count": 1}}, "master": {"_count": 1, "to": {"_count": 1}}, "masks": {"_count": 2, "": {"_count": 1}, "fixed": {"_count": 1}}, "deaths": {"_count": 4, "by": {"_count": 1}, "": {"_count": 1}, "are": {"_count": 1}, "for": {"_count": 1}}, "curses": {"_count": 1, "following": {"_count": 1}}, "confusion": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "respective": {"_count": 1, "locks": {"_count": 1}}, "doors": {"_count": 1, "": {"_count": 1}}, "disloyalty": {"_count": 1, "to": {"_count": 1}}, "pleasures": {"_count": 1, "than": {"_count": 1}}, "rights": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "freedom": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "spy": {"_count": 1, "Dumbledore": {"_count": 1}}, "goblets": {"_count": 4, "and": {"_count": 1}, "untouched": {"_count": 1}, "of": {"_count": 1}, "they": {"_count": 1}}, "harness": {"_count": 1, "": {"_count": 1}}, "conversation": {"_count": 4, "about": {"_count": 1}, "": {"_count": 3}}, "drives": {"_count": 1, "and": {"_count": 1}}, "cool": {"_count": 2, "houses": {"_count": 1}, "shimmering": {"_count": 1}}, "sordid": {"_count": 1, "affairs": {"_count": 1}}, "various": {"_count": 4, "windows": {"_count": 1}, "fields": {"_count": 1}, "common": {"_count": 1}, "offenses": {"_count": 1}}, "strangling": {"_count": 1, "": {"_count": 1}}, "birthday": {"_count": 1, "presents": {"_count": 1}}, "farewells": {"_count": 1, "at": {"_count": 1}}, "batty": {"_count": 1, "old": {"_count": 1}}, "sockets": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "noisy": {"_count": 1, "progress": {"_count": 1}}, "least": {"_count": 1, "favorite": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "tellingsoff": {"_count": 1, "until": {"_count": 1}}, "car": {"_count": 1, "": {"_count": 1}}, "empty": {"_count": 1, "house": {"_count": 1}}, "course": {"_count": 1, "every": {"_count": 1}}, "bulbs": {"_count": 1, "and": {"_count": 1}}, "month": {"_count": 1, "apart": {"_count": 1}}, "expressions": {"_count": 5, "": {"_count": 1}, "when": {"_count": 1}, "if": {"_count": 1}, "reflected": {"_count": 1}, "told": {"_count": 1}}, "boundaries": {"_count": 1, "": {"_count": 1}}, "meetings": {"_count": 2, "said": {"_count": 1}, "unpredictable": {"_count": 1}}, "desks": {"_count": 1, "said": {"_count": 1}}, "food": {"_count": 1, "": {"_count": 1}}, "guard": {"_count": 1, "said": {"_count": 1}}, "bedroom": {"_count": 3, "": {"_count": 2}, "carrying": {"_count": 1}}, "foot": {"_count": 1, "on": {"_count": 1}}, "disagreement": {"_count": 1, "of": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "ambition": {"_count": 2, "to": {"_count": 1}, "or": {"_count": 1}}, "black": {"_count": 3, "eggs": {"_count": 1}, "coats": {"_count": 1}, "cloaks": {"_count": 1}}, "pureblood": {"_count": 1, "mania": {"_count": 1}}, "sandwiches": {"_count": 1, "and": {"_count": 1}}, "dusty": {"_count": 2, "shelves": {"_count": 1}, "glass": {"_count": 1}}, "tasks": {"_count": 1, "": {"_count": 1}}, "wardrobe": {"_count": 1, "": {"_count": 1}}, "cubicle": {"_count": 1, "walls": {"_count": 1}}, "thumbs": {"_count": 1, "": {"_count": 1}}, "papers": {"_count": 1, "and": {"_count": 1}}, "priorities": {"_count": 1, "right": {"_count": 1}}, "possessions": {"_count": 3, "seemed": {"_count": 1}, "": {"_count": 1}, "apart": {"_count": 1}}, "apology": {"_count": 1, "he": {"_count": 1}}, "eyebrows": {"_count": 1, "raised": {"_count": 1}}, "Pumpkin": {"_count": 1, "Pasties": {"_count": 1}}, "prefect": {"_count": 1, "badges": {"_count": 1}}, "skeletons": {"_count": 1, "of": {"_count": 1}}, "pupilless": {"_count": 1, "eyes": {"_count": 1}}, "blank": {"_count": 2, "white": {"_count": 1}, "frosted": {"_count": 1}}, "learning": {"_count": 1, "": {"_count": 1}}, "founders": {"_count": 1, "Retained": {"_count": 1}}, "bickering": {"_count": 1, "to": {"_count": 1}}, "History": {"_count": 2, "of": {"_count": 2}}, "ghost": {"_count": 1, "teacher": {"_count": 1}}, "flagons": {"_count": 1, "Harry": {"_count": 1}}, "spots": {"_count": 1, "said": {"_count": 1}}, "square": {"_count": 1, "spectacles": {"_count": 1}}, "schoolbags": {"_count": 2, "from": {"_count": 1}, "as": {"_count": 1}}, "largest": {"_count": 1, "amount": {"_count": 1}}, "snails": {"_count": 1, "the": {"_count": 1}}, "looks": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "teammates": {"_count": 1, "but": {"_count": 1}}, "roof": {"_count": 1, "while": {"_count": 1}}, "essays": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "stricken": {"_count": 1, "faces": {"_count": 1}}, "jinxes": {"_count": 1, "when": {"_count": 1}}, "opinions": {"_count": 1, "on": {"_count": 1}}, "mice": {"_count": 1, "in": {"_count": 1}}, "encounter": {"_count": 1, "now": {"_count": 1}}, "beers": {"_count": 1, "from": {"_count": 1}}, "bottles": {"_count": 3, "of": {"_count": 2}, "on": {"_count": 1}}, "tables": {"_count": 1, "conferring": {"_count": 1}}, "cloak": {"_count": 1, "collars": {"_count": 1}}, "level": {"_count": 1, "she": {"_count": 1}}, "breaths": {"_count": 1, "": {"_count": 1}}, "takings": {"_count": 1, "even": {"_count": 1}}, "intense": {"_count": 1, "relief": {"_count": 1}}, "agreement": {"_count": 1, "": {"_count": 1}}, "tiny": {"_count": 2, "dots": {"_count": 1}, "faces": {"_count": 1}}, "most": {"_count": 2, "recent": {"_count": 1}, "efficacious": {"_count": 1}}, "scars": {"_count": 1, "burn": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "sides": {"_count": 4, "victory": {"_count": 1}, "fragments": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}}, "snide": {"_count": 1, "comments": {"_count": 1}}, "approval": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "whole": {"_count": 1, "race": {"_count": 1}}, "mountain": {"_count": 1, "of": {"_count": 1}}, "break": {"_count": 1, "times": {"_count": 1}}, "eyelids": {"_count": 2, "and": {"_count": 1}, "it": {"_count": 1}}, "night": {"_count": 1, "things": {"_count": 1}}, "fathers": {"_count": 3, "dying": {"_count": 1}, "as": {"_count": 1}, "arrival": {"_count": 1}}, "lips": {"_count": 1, "speaking": {"_count": 1}}, "wigs": {"_count": 2, "askew": {"_count": 1}, "they": {"_count": 1}}, "vivid": {"_count": 1, "green": {"_count": 1}}, "doorstep": {"_count": 1, "six": {"_count": 1}}, "sullen": {"_count": 1, "host": {"_count": 1}}, "familys": {"_count": 1, "house": {"_count": 1}}, "visitors": {"_count": 1, "some": {"_count": 1}}, "health": {"_count": 1, "and": {"_count": 1}}, "sanity": {"_count": 1, "so": {"_count": 1}}, "burden": {"_count": 1, "of": {"_count": 1}}, "senses": {"_count": 1, "": {"_count": 1}}, "congratulations": {"_count": 1, "he": {"_count": 1}}, "forthcoming": {"_count": 1, "Occlumency": {"_count": 1}}, "afternoon": {"_count": 1, "lessons": {"_count": 1}}, "findings": {"_count": 1, "correctly": {"_count": 1}}, "mind": {"_count": 1, "attacked": {"_count": 1}}, "latest": {"_count": 1, "bit": {"_count": 1}}, "pictures": {"_count": 3, "looking": {"_count": 1}, "": {"_count": 1}, "faded": {"_count": 1}}, "leader": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "tailsll": {"_count": 1, "be": {"_count": 1}}, "conversations": {"_count": 4, "the": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}, "becoming": {"_count": 1}}, "coffees": {"_count": 1, "to": {"_count": 1}}, "sugar": {"_count": 1, "bowl": {"_count": 1}}, "hovering": {"_count": 1, "cherub": {"_count": 1}}, "practice": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "hoods": {"_count": 2, "": {"_count": 1}, "turned": {"_count": 1}}, "haste": {"_count": 1, "to": {"_count": 1}}, "leafy": {"_count": 1, "branches": {"_count": 1}}, "moons": {"_count": 1, "in": {"_count": 1}}, "mallowsweet": {"_count": 1, "fire": {"_count": 1}}, "silver": {"_count": 1, "instruments": {"_count": 1}}, "information": {"_count": 1, "was": {"_count": 1}}, "entrance": {"_count": 1, "": {"_count": 1}}, "upcoming": {"_count": 1, "examinations": {"_count": 1}}, "perusal": {"_count": 1, "": {"_count": 1}}, "silence": {"_count": 1, "to": {"_count": 1}}, "prolonged": {"_count": 1, "contact": {"_count": 1}}, "classrooms": {"_count": 1, "": {"_count": 1}}, "source": {"_count": 1, "but": {"_count": 1}}, "row": {"_count": 1, "of": {"_count": 1}}, "wand": {"_count": 2, "tips": {"_count": 2}}, "perches": {"_count": 1, "and": {"_count": 1}}, "sights": {"_count": 1, "": {"_count": 1}}, "might": {"_count": 2, "against": {"_count": 1}, "and": {"_count": 1}}, "study": {"_count": 1, "habits": {"_count": 1}}, "examination": {"_count": 1, "schedules": {"_count": 1}}, "pencil": {"_count": 1, "cases": {"_count": 1}}, "bench": {"_count": 1, "": {"_count": 1}}, "practical": {"_count": 2, "examination": {"_count": 1}, "Astronomy": {"_count": 1}}, "Herbology": {"_count": 1, "exam": {"_count": 1}}, "star": {"_count": 1, "charts": {"_count": 1}}, "immediate": {"_count": 1, "collapse": {"_count": 1}}, "overturned": {"_count": 1, "examination": {"_count": 1}}, "angry": {"_count": 1, "protests": {"_count": 1}}, "bows": {"_count": 3, "raised": {"_count": 1}, "and": {"_count": 1}, "hanging": {"_count": 1}}, "wild": {"_count": 1, "neighing": {"_count": 1}}, "pawing": {"_count": 1, "hooves": {"_count": 1}}, "white": {"_count": 1, "eyes": {"_count": 1}}, "reptilian": {"_count": 1, "heads": {"_count": 1}}, "mounts": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "thestral": {"_count": 1, "to": {"_count": 1}}, "ghostly": {"_count": 1, "reflections": {"_count": 1}}, "flames": {"_count": 1, "were": {"_count": 1}}, "erstwhile": {"_count": 1, "homes": {"_count": 1}}, "spheres": {"_count": 1, "Harry": {"_count": 1}}, "return": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 1, "best": {"_count": 1}}, "heart": {"_count": 1, "disgorging": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "windows": {"_count": 2, "dull": {"_count": 1}, "": {"_count": 1}}, "headquarters": {"_count": 1, "dont": {"_count": 1}}, "linked": {"_count": 1, "hands": {"_count": 1}}, "clasped": {"_count": 2, "hands": {"_count": 2}}, "company": {"_count": 2, "": {"_count": 2}}, "skulls": {"_count": 2, "their": {"_count": 1}, "": {"_count": 1}}, "contents": {"_count": 1, "flying": {"_count": 1}}, "cushions": {"_count": 1, "torn": {"_count": 1}}, "shelves": {"_count": 1, "oil": {"_count": 1}}, "charm": {"_count": 1, "or": {"_count": 1}}, "talent": {"_count": 1, "and": {"_count": 1}}, "post": {"_count": 1, "for": {"_count": 1}}, "perfume": {"_count": 1, "could": {"_count": 1}}, "business": {"_count": 1, "": {"_count": 1}}, "stride": {"_count": 1, "": {"_count": 1}}, "washing": {"_count": 1, "and": {"_count": 1}}, "year": {"_count": 2, "a": {"_count": 1}, "would": {"_count": 1}}, "uncle": {"_count": 1, "But": {"_count": 1}}, "carriages": {"_count": 1, "to": {"_count": 1}}, "friendship": {"_count": 2, "that": {"_count": 1}, "survive": {"_count": 1}}, "embarrassing": {"_count": 1, "conversation": {"_count": 1}}, "chosen": {"_count": 1, "N": {"_count": 1}}, "upturned": {"_count": 1, "faces": {"_count": 1}}, "spellcasting": {"_count": 1, "": {"_count": 1}}, "disastrous": {"_count": 1, "Occlumency": {"_count": 1}}, "afterlunch": {"_count": 1, "free": {"_count": 1}}, "cauldrons": {"_count": 1, "toward": {"_count": 1}}, "scales": {"_count": 1, "but": {"_count": 1}}, "tips": {"_count": 1, "reaching": {"_count": 1}}, "habit": {"_count": 1, "of": {"_count": 1}}, "runaway": {"_count": 1, "marriage": {"_count": 1}}, "greetings": {"_count": 1, "": {"_count": 1}}, "homes": {"_count": 2, "bound": {"_count": 1}, "to": {"_count": 1}}, "private": {"_count": 1, "lesson": {"_count": 1}}, "approach": {"_count": 3, "and": {"_count": 1}, "though": {"_count": 1}, "was": {"_count": 1}}, "path": {"_count": 2, "": {"_count": 1}, "blocked": {"_count": 1}}, "destinations": {"_count": 1, "": {"_count": 1}}, "gloves": {"_count": 1, "then": {"_count": 1}}, "indistinct": {"_count": 1, "figures": {"_count": 1}}, "top": {"_count": 1, "targets": {"_count": 1}}, "protective": {"_count": 2, "gloves": {"_count": 1}, "enchantments": {"_count": 1}}, "interrupted": {"_count": 1, "conversation": {"_count": 1}}, "goggles": {"_count": 1, "back": {"_count": 1}}, "opening": {"_count": 1, "match": {"_count": 1}}, "supporters": {"_count": 1, "": {"_count": 1}}, "Owl": {"_count": 1, "Order": {"_count": 1}}, "two": {"_count": 1, "friends": {"_count": 1}}, "guests": {"_count": 1, "were": {"_count": 1}}, "trust": {"_count": 1, "": {"_count": 1}}, "houseelves": {"_count": 1, "Christmas": {"_count": 1}}, "seven": {"_count": 1, "years": {"_count": 1}}, "decision": {"_count": 1, "however": {"_count": 1}}, "offsprings": {"_count": 1, "obedience": {"_count": 1}}, "walls": {"_count": 1, "": {"_count": 1}}, "midteens": {"_count": 1, "": {"_count": 1}}, "firstever": {"_count": 1, "Potions": {"_count": 1}}, "teacher": {"_count": 1, "Harry": {"_count": 1}}, "space": {"_count": 1, "": {"_count": 1}}, "hoop": {"_count": 1, "then": {"_count": 1}}, "trusted": {"_count": 1, "shortcuts": {"_count": 1}}, "different": {"_count": 1, "ways": {"_count": 1}}, "victim": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "treasures": {"_count": 2, "for": {"_count": 1}, "at": {"_count": 1}}, "arrival": {"_count": 2, "there": {"_count": 1}, "had": {"_count": 1}}, "charges": {"_count": 1, "youthful": {"_count": 1}}, "Apparition": {"_count": 2, "Test": {"_count": 2}}, "reports": {"_count": 1, "together": {"_count": 1}}, "tests": {"_count": 1, "that": {"_count": 1}}, "webs": {"_count": 1, "now": {"_count": 1}}, "tails": {"_count": 1, "they": {"_count": 1}}, "mugs": {"_count": 1, "": {"_count": 1}}, "gang": {"_count": 1, "leaders": {"_count": 1}}, "immortality": {"_count": 1, "": {"_count": 1}}, "flasks": {"_count": 1, "": {"_count": 1}}, "rare": {"_count": 1, "joint": {"_count": 1}}, "Captain": {"_count": 1, "had": {"_count": 1}}, "punishments": {"_count": 1, "": {"_count": 1}}, "actual": {"_count": 1, "name": {"_count": 1}}, "annual": {"_count": 1, "trip": {"_count": 1}}, "rays": {"_count": 1, "did": {"_count": 1}}, "bony": {"_count": 1, "hands": {"_count": 1}}, "sodden": {"_count": 1, "rags": {"_count": 1}}, "icy": {"_count": 1, "skin": {"_count": 1}}, "shrunken": {"_count": 1, "hands": {"_count": 1}}, "quarry": {"_count": 1, "was": {"_count": 1}}, "pain": {"_count": 1, "a": {"_count": 1}}, "mourning": {"_count": 1, "but": {"_count": 1}}, "products": {"_count": 1, "": {"_count": 1}}, "spindlelegged": {"_count": 1, "tables": {"_count": 1}}, "pointless": {"_count": 1, "adventure": {"_count": 1}}, "meat": {"_count": 1, "I": {"_count": 1}}, "benches": {"_count": 1, "in": {"_count": 1}}, "coins": {"_count": 1, "regularly": {"_count": 1}}, "pallid": {"_count": 1, "faces": {"_count": 1}}, "purplish": {"_count": 1, "hair": {"_count": 1}}, "respects": {"_count": 1, "too": {"_count": 1}}, "allotted": {"_count": 1, "places": {"_count": 1}}, "vertical": {"_count": 1, "slits": {"_count": 1}}, "lot": {"_count": 1, "": {"_count": 1}}, "knowledge": {"_count": 1, "and": {"_count": 1}}, "mark": {"_count": 1, "upon": {"_count": 1}}, "Diddykins": {"_count": 1, "": {"_count": 1}}, "Disillusionment": {"_count": 1, "Charms": {"_count": 1}}, "features": {"_count": 1, "began": {"_count": 1}}, "circle": {"_count": 1, "": {"_count": 1}}, "unconscious": {"_count": 1, "friend": {"_count": 1}}, "pursuers": {"_count": 1, "barely": {"_count": 1}}, "combined": {"_count": 1, "weight": {"_count": 1}}, "Portkey": {"_count": 1, "it": {"_count": 1}}, "silent": {"_count": 2, "vigil": {"_count": 1}, "communications": {"_count": 1}}, "fault": {"_count": 1, "he": {"_count": 1}}, "choice": {"_count": 1, "I": {"_count": 1}}, "recent": {"_count": 1, "journey": {"_count": 1}}, "SecretKeeper": {"_count": 1, "each": {"_count": 1}}, "lifes": {"_count": 1, "ambition": {"_count": 1}}, "correct": {"_count": 1, "name": {"_count": 1}}, "buttonholes": {"_count": 1, "Fred": {"_count": 1}}, "now": {"_count": 1, "entwined": {"_count": 1}}, "songs": {"_count": 1, "and": {"_count": 1}}, "neighbor": {"_count": 1, "": {"_count": 1}}, "booth": {"_count": 1, "and": {"_count": 1}}, "light": {"_count": 1, "darting": {"_count": 1}}, "eldest": {"_count": 1, "sons": {"_count": 1}}, "covers": {"_count": 1, "and": {"_count": 1}}, "reactions": {"_count": 1, "to": {"_count": 1}}, "beliefs": {"_count": 1, "": {"_count": 1}}, "pretext": {"_count": 1, "for": {"_count": 1}}, "suspicions": {"_count": 1, "are": {"_count": 1}}, "family": {"_count": 3, "": {"_count": 3}}, "mission": {"_count": 1, "secret": {"_count": 1}}, "vigil": {"_count": 1, "": {"_count": 1}}, "scattered": {"_count": 1, "parchment": {"_count": 1}}, "plan": {"_count": 4, "into": {"_count": 1}, "until": {"_count": 1}, "was": {"_count": 2}}, "careful": {"_count": 1, "scouting": {"_count": 1}}, "rightful": {"_count": 1, "place": {"_count": 1}}, "drawer": {"_count": 1, "and": {"_count": 1}}, "ragged": {"_count": 1, "breathing": {"_count": 1}}, "rotting": {"_count": 1, "scabbed": {"_count": 1}}, "freezing": {"_count": 1, "aura": {"_count": 1}}, "prey": {"_count": 2, "were": {"_count": 1}, "and": {"_count": 1}}, "corners": {"_count": 1, "they": {"_count": 1}}, "one": {"_count": 2, "safe": {"_count": 1}, "indispensable": {"_count": 1}}, "patch": {"_count": 1, "of": {"_count": 1}}, "protected": {"_count": 1, "clearing": {"_count": 1}}, "inadequate": {"_count": 1, "helping": {"_count": 1}}, "blackness": {"_count": 1, "swallowed": {"_count": 1}}, "speculations": {"_count": 1, "": {"_count": 1}}, "records": {"_count": 1, "that": {"_count": 1}}, "troubles": {"_count": 1, "": {"_count": 1}}, "continuing": {"_count": 1, "isolation": {"_count": 1}}, "total": {"_count": 1, "ignorance": {"_count": 1}}, "defenses": {"_count": 1, "were": {"_count": 1}}, "numberone": {"_count": 1, "priority": {"_count": 1}}, "informers": {"_count": 1, "looking": {"_count": 1}}, "fire": {"_count": 1, "then": {"_count": 1}}, "bank": {"_count": 1, "": {"_count": 1}}, "campsite": {"_count": 1, "": {"_count": 1}}, "protection": {"_count": 1, "": {"_count": 1}}, "speculation": {"_count": 1, "became": {"_count": 1}}, "worries": {"_count": 1, "they": {"_count": 1}}, "traces": {"_count": 1, "": {"_count": 1}}, "snowburdened": {"_count": 1, "roofs": {"_count": 1}}, "figures": {"_count": 1, "briefly": {"_count": 1}}, "facts": {"_count": 1, "right": {"_count": 1}}, "meaning": {"_count": 1, "and": {"_count": 1}}, "initials": {"_count": 1, "into": {"_count": 1}}, "safety": {"_count": 1, "lay": {"_count": 1}}, "seventeenyearold": {"_count": 1, "hero": {"_count": 1}}, "legendary": {"_count": 1, "duel": {"_count": 1}}, "attempt": {"_count": 1, "at": {"_count": 1}}, "rise": {"_count": 1, "to": {"_count": 1}}, "sheltered": {"_count": 1, "clearing": {"_count": 1}}, "innocent": {"_count": 1, "scurryings": {"_count": 1}}, "normal": {"_count": 1, "blue": {"_count": 1}}, "fortunes": {"_count": 1, "the": {"_count": 1}}, "ongoing": {"_count": 1, "exchange": {"_count": 1}}, "high": {"_count": 1, "vantage": {"_count": 1}}, "magic": {"_count": 2, "and": {"_count": 1}, "either": {"_count": 1}}, "mistake": {"_count": 1, "just": {"_count": 1}}, "narrow": {"_count": 1, "escape": {"_count": 1}}, "strained": {"_count": 1, "incredulous": {"_count": 1}}, "obsession": {"_count": 1, "with": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}, "suffering": {"_count": 1, "as": {"_count": 1}}, "example": {"_count": 1, "perhaps": {"_count": 1}}, "allegiance": {"_count": 1, "": {"_count": 1}}, "isolation": {"_count": 1, "he": {"_count": 1}}, "tent": {"_count": 1, "rasped": {"_count": 1}}, "sources": {"_count": 1, "they": {"_count": 1}}, "bindings": {"_count": 1, "again": {"_count": 1}}, "prison": {"_count": 1, "and": {"_count": 1}}, "sunken": {"_count": 1, "sockets": {"_count": 1}}, "store": {"_count": 1, "of": {"_count": 1}}, "state": {"_count": 1, "of": {"_count": 1}}, "preparations": {"_count": 2, "complete": {"_count": 1}, "to": {"_count": 1}}, "attempted": {"_count": 1, "assault": {"_count": 1}}, "planning": {"_count": 1, "sessions": {"_count": 1}}, "word": {"_count": 1, "": {"_count": 1}}, "spells": {"_count": 2, "and": {"_count": 1}, "collided": {"_count": 1}}, "hinges": {"_count": 1, "as": {"_count": 1}}, "clothing": {"_count": 1, "was": {"_count": 1}}, "race": {"_count": 1, "for": {"_count": 1}}, "stupidity": {"_count": 1, "and": {"_count": 1}}, "worried": {"_count": 1, "looks": {"_count": 1}}, "charms": {"_count": 1, "well": {"_count": 1}}, "surroundings": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "scabbed": {"_count": 1, "and": {"_count": 1}}, "fill": {"_count": 1, "and": {"_count": 1}}, "scrutiny": {"_count": 1, "and": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "shadows": {"_count": 1, "rippled": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "relatives": {"_count": 1, "to": {"_count": 1}}, "willingness": {"_count": 1, "for": {"_count": 1}}, "soft": {"_count": 1, "footsteps": {"_count": 1}}, "nightclothes": {"_count": 2, "flooded": {"_count": 1}, "with": {"_count": 1}}, "bound": {"_count": 1, "bodies": {"_count": 1}}, "plinths": {"_count": 1, "and": {"_count": 1}}, "fellows": {"_count": 2, "throughout": {"_count": 1}, "filed": {"_count": 1}}, "disembodied": {"_count": 2, "heads": {"_count": 1}, "feet": {"_count": 1}}, "proper": {"_count": 1, "place": {"_count": 1}}, "leering": {"_count": 1, "faces": {"_count": 1}}, "touch": {"_count": 1, "": {"_count": 1}}, "fanged": {"_count": 1, "mouths": {"_count": 1}}, "speed": {"_count": 1, "but": {"_count": 1}}, "Patronuses": {"_count": 1, "Luna": {"_count": 1}}, "resistance": {"_count": 1, "is": {"_count": 1}}, "Sorting": {"_count": 1, "": {"_count": 1}}, "faith": {"_count": 1, "in": {"_count": 1}}, "chill": {"_count": 1, "and": {"_count": 1}}, "footing": {"_count": 1, "on": {"_count": 1}}, "branches": {"_count": 1, "tangled": {"_count": 1}}, "roots": {"_count": 1, "gnarled": {"_count": 1}}, "cause": {"_count": 1, "": {"_count": 1}}, "current": {"_count": 1, "location": {"_count": 1}}, "concentrated": {"_count": 1, "gaze": {"_count": 1}}, "procession": {"_count": 1, "pass": {"_count": 1}}, "tramping": {"_count": 1, "footsteps": {"_count": 1}}, "vanquishers": {"_count": 1, "and": {"_count": 1}}, "hardest": {"_count": 1, "but": {"_count": 1}}, "incomprehensible": {"_count": 1, "shouts": {"_count": 1}}, "savior": {"_count": 1, "and": {"_count": 1}}, "guide": {"_count": 1, "and": {"_count": 1}}, "thanks": {"_count": 1, "hear": {"_count": 1}}, "shock": {"_count": 1, "and": {"_count": 1}}, "destination": {"_count": 1, "": {"_count": 1}}, "reunion": {"_count": 1, "": {"_count": 1}}}, "opinion": {"_count": 36, "there": {"_count": 1, "was": {"_count": 1}}, "asked": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "is": {"_count": 1, "Gilderoy": {"_count": 1}}, "you": {"_count": 1, "filthy": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "to": {"_count": 1}}, "of": {"_count": 3, "themselves": {"_count": 1}, "Dumbledore": {"_count": 1}, "your": {"_count": 1}}, "the": {"_count": 2, "best": {"_count": 1}, "Bloody": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "settled": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "he": {"_count": 1, "slid": {"_count": 1}}, "and": {"_count": 2, "not": {"_count": 1}, "apparently": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "nor": {"_count": 1, "his": {"_count": 1}}, "did": {"_count": 1, "wand": {"_count": 1}}, "particularly": {"_count": 1, "as": {"_count": 1}}, "this": {"_count": 1, "highly": {"_count": 1}}, "The": {"_count": 1, "mission": {"_count": 1}}, "on": {"_count": 2, "what": {"_count": 1}, "whether": {"_count": 1}}}, "there": {"_count": 2358, "was": {"_count": 554, "no": {"_count": 94}, "nothing": {"_count": 28}, "one": {"_count": 8}, "a": {"_count": 209}, "this": {"_count": 3}, "an": {"_count": 20}, "anything": {"_count": 2}, "complete": {"_count": 1}, "Malfoy": {"_count": 2}, "the": {"_count": 12}, "something": {"_count": 23}, "silence": {"_count": 14}, "already": {"_count": 2}, "usually": {"_count": 2}, "another": {"_count": 13}, "nobody": {"_count": 8}, "even": {"_count": 2}, "only": {"_count": 8}, "Fawkes": {"_count": 1}, "any": {"_count": 5}, "to": {"_count": 4}, "somethin": {"_count": 1}, "more": {"_count": 2}, "selfdisgust": {"_count": 1}, "in": {"_count": 3}, "Peter": {"_count": 1}, "some": {"_count": 3}, "definitely": {"_count": 2}, "still": {"_count": 8}, "blood": {"_count": 2}, "truth": {"_count": 1}, "he": {"_count": 1}, "also": {"_count": 3}, "going": {"_count": 1}, "Viktor": {"_count": 1}, "me": {"_count": 1}, "there": {"_count": 1}, "Ludo": {"_count": 1}, "Rosier": {"_count": 1}, "pure": {"_count": 1}, "barely": {"_count": 2}, "red": {"_count": 1}, "just": {"_count": 1}, "stone": {"_count": 1}, "wearing": {"_count": 1}, "snow": {"_count": 1}, "Death": {"_count": 1}, "loads": {"_count": 1}, "bad": {"_count": 1}, "very": {"_count": 2}, "every": {"_count": 1}, "nervousness": {"_count": 1}, "simply": {"_count": 1}, "dark": {"_count": 1}, "someone": {"_count": 2}, "fear": {"_count": 1}, "not": {"_count": 3}, "about": {"_count": 1}, "Emmeline": {"_count": 1}, "Dirk": {"_count": 1}, "all": {"_count": 2}, "quite": {"_count": 1}, "little": {"_count": 3}, "always": {"_count": 1}, "somebody": {"_count": 3}, "much": {"_count": 2}, "that": {"_count": 3}, "upon": {"_count": 1}, "Ginny": {"_count": 1}, "revulsion": {"_count": 1}, "Madame": {"_count": 1}, "time": {"_count": 1}, "nevertheless": {"_count": 1}, "undoubtedly": {"_count": 1}, "such": {"_count": 1}, "so": {"_count": 1}, "what": {"_count": 1}, "hardly": {"_count": 2}, "scarcely": {"_count": 1}, "safe": {"_count": 1}, "triumph": {"_count": 1}, "definite": {"_count": 1}, "relish": {"_count": 1}, "cold": {"_count": 1}}, "wasnt": {"_count": 11, "a": {"_count": 3}, "much": {"_count": 2}, "one": {"_count": 1}, "anyone": {"_count": 1}, "I": {"_count": 1}, "time": {"_count": 2}, "said": {"_count": 1}}, "seemed": {"_count": 8, "to": {"_count": 7}, "very": {"_count": 1}}, "were": {"_count": 163, "lots": {"_count": 1}, "a": {"_count": 7}, "little": {"_count": 1}, "to": {"_count": 1}, "woods": {"_count": 1}, "more": {"_count": 6}, "only": {"_count": 7}, "doors": {"_count": 2}, "the": {"_count": 5}, "seven": {"_count": 1}, "other": {"_count": 2}, "his": {"_count": 1}, "plenty": {"_count": 2}, "gnarled": {"_count": 1}, "rumors": {"_count": 1}, "hundreds": {"_count": 1}, "some": {"_count": 2}, "long": {"_count": 1}, "now": {"_count": 3}, "tree": {"_count": 1}, "too": {"_count": 2}, "cats": {"_count": 1}, "these": {"_count": 1}, "lanterns": {"_count": 1}, "dark": {"_count": 1}, "holly": {"_count": 1}, "no": {"_count": 17}, "tears": {"_count": 1}, "stains": {"_count": 1}, "near": {"_count": 1}, "gashes": {"_count": 1}, "so": {"_count": 2}, "an": {"_count": 1}, "deep": {"_count": 1}, "as": {"_count": 1}, "tiny": {"_count": 1}, "flecks": {"_count": 1}, "barely": {"_count": 1}, "about": {"_count": 2}, "many": {"_count": 3}, "two": {"_count": 4}, "five": {"_count": 1}, "catcalls": {"_count": 1}, "gardens": {"_count": 1}, "of": {"_count": 1}, "all": {"_count": 1}, "my": {"_count": 1}, "not": {"_count": 1}, "at": {"_count": 1}, "crackling": {"_count": 1}, "voices": {"_count": 3}, "black": {"_count": 1}, "several": {"_count": 6}, "quite": {"_count": 1}, "dementors": {"_count": 2}, "any": {"_count": 3}, "half": {"_count": 1}, "woolly": {"_count": 1}, "enough": {"_count": 1}, "students": {"_count": 1}, "large": {"_count": 1}, "disconsolate": {"_count": 1}, "good": {"_count": 1}, "hurried": {"_count": 1}, "buses": {"_count": 1}, "still": {"_count": 6}, "numerous": {"_count": 1}, "around": {"_count": 1}, "cries": {"_count": 2}, "bits": {"_count": 1}, "witches": {"_count": 1}, "iron": {"_count": 1}, "soft": {"_count": 1}, "also": {"_count": 1}, "directions": {"_count": 1}, "Slytherin": {"_count": 1}, "three": {"_count": 1}, "those": {"_count": 1}, "dazzling": {"_count": 1}, "acromantulas": {"_count": 1}, "chipped": {"_count": 1}, "what": {"_count": 1}, "bodies": {"_count": 1}, "times": {"_count": 2}, "renewed": {"_count": 1}, "smears": {"_count": 1}, "blank": {"_count": 1}, "six": {"_count": 1}, "spiked": {"_count": 1}, "intruders": {"_count": 1}, "four": {"_count": 1}, "hardly": {"_count": 1}, "gouge": {"_count": 1}, "owls": {"_count": 1}, "backups": {"_count": 1}}, "have": {"_count": 15, "been": {"_count": 13}, "always": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 401, ".": {"_count": 250}, "?": {"_count": 107}, "!": {"_count": 44}}, "will": {"_count": 14, "be": {"_count": 9}, "again": {"_count": 1}, "your": {"_count": 2}, "put": {"_count": 1}, "not": {"_count": 1}}, "had": {"_count": 25, "been": {"_count": 22}, "obviously": {"_count": 1}, "definitely": {"_count": 1}, "never": {"_count": 1}}, "asleep": {"_count": 1, "at": {"_count": 1}}, "or": {"_count": 5, "rather": {"_count": 1}, "what": {"_count": 1}, "just": {"_count": 1}, "not": {"_count": 1}, "cursed": {"_count": 1}}, "he": {"_count": 33, "was": {"_count": 6}, "didnt": {"_count": 1}, "muttered": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 6}, "snarled": {"_count": 1}, "called": {"_count": 1}, "changed": {"_count": 1}, "supposed": {"_count": 1}, "added": {"_count": 2}, "indicated": {"_count": 1}, "found": {"_count": 1}, "cannot": {"_count": 1}, "would": {"_count": 2}, "no": {"_count": 1}, "became": {"_count": 1}, "reported": {"_count": 1}, "thought": {"_count": 1}, "whispered": {"_count": 1}, "looked": {"_count": 1}, "wanted": {"_count": 1}}, "with": {"_count": 37, "lit": {"_count": 1}, "a": {"_count": 3}, "Ron": {"_count": 1}, "the": {"_count": 4}, "blank": {"_count": 1}, "his": {"_count": 10}, "bright": {"_count": 1}, "young": {"_count": 1}, "em": {"_count": 1}, "their": {"_count": 2}, "all": {"_count": 2}, "an": {"_count": 1}, "odd": {"_count": 1}, "them": {"_count": 2}, "Hagrid": {"_count": 1}, "her": {"_count": 1}, "nothing": {"_count": 1}, "your": {"_count": 1}, "Grawp": {"_count": 1}, "you": {"_count": 1}}, "too": {"_count": 10, "": {"_count": 6}, "remember": {"_count": 1}, "and": {"_count": 1}, "were": {"_count": 1}, "barely": {"_count": 1}}, "could": {"_count": 13, "be": {"_count": 11}, "no": {"_count": 1}, "only": {"_count": 1}}, "sir": {"_count": 4, "": {"_count": 4}}, "might": {"_count": 16, "be": {"_count": 13}, "have": {"_count": 3}}, "bidin": {"_count": 2, "his": {"_count": 2}}, "somewhere": {"_count": 6, "but": {"_count": 2}, "perhaps": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "and": {"_count": 50, "he": {"_count": 2}, "Dudley": {"_count": 1}, "then": {"_count": 3}, "so": {"_count": 3}, "take": {"_count": 1}, "be": {"_count": 1}, "forgotten": {"_count": 1}, "looked": {"_count": 1}, "grab": {"_count": 1}, "the": {"_count": 2}, "its": {"_count": 1}, "when": {"_count": 1}, "always": {"_count": 1}, "listening": {"_count": 1}, "fluttering": {"_count": 1}, "plenty": {"_count": 1}, "wise": {"_count": 1}, "MadEye": {"_count": 1}, "sometimes": {"_count": 1}, "a": {"_count": 1}, "everything": {"_count": 1}, "give": {"_count": 1}, "shes": {"_count": 1}, "let": {"_count": 1}, "his": {"_count": 1}, "Umbridge": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 1}, "cry": {"_count": 1}, "if": {"_count": 1}, "half": {"_count": 1}, "bleat": {"_count": 1}, "they": {"_count": 1}, "hide": {"_count": 1}, "tell": {"_count": 2}, "had": {"_count": 1}, "I": {"_count": 1}, "also": {"_count": 1}, "But": {"_count": 1}, "gave": {"_count": 1}, "suffered": {"_count": 1}, "see": {"_count": 1}, "still": {"_count": 1}}, "are": {"_count": 72, "dragons": {"_count": 1}, "loads": {"_count": 3}, "other": {"_count": 3}, "said": {"_count": 1}, "hundreds": {"_count": 2}, "some": {"_count": 2}, "powers": {"_count": 1}, "an": {"_count": 1}, "four": {"_count": 1}, "so": {"_count": 3}, "horrors": {"_count": 1}, "the": {"_count": 1}, "millions": {"_count": 1}, "others": {"_count": 1}, "better": {"_count": 1}, "only": {"_count": 1}, "Switching": {"_count": 1}, "there": {"_count": 2}, "spots": {"_count": 1}, "a": {"_count": 4}, "more": {"_count": 4}, "compensations": {"_count": 1}, "full": {"_count": 1}, "hardly": {"_count": 1}, "two": {"_count": 1}, "little": {"_count": 1}, "twentyeight": {"_count": 1}, "no": {"_count": 3}, "things": {"_count": 3}, "six": {"_count": 1}, "brains": {"_count": 1}, "ten": {"_count": 1}, "real": {"_count": 1}, "three": {"_count": 1}, "poisons": {"_count": 1}, "Parselmouths": {"_count": 1}, "many": {"_count": 1}, "several": {"_count": 1}, "much": {"_count": 1}, "members": {"_count": 1}, "throats": {"_count": 1}, "still": {"_count": 1}, "plans": {"_count": 1}, "around": {"_count": 1}, "very": {"_count": 1}, "wedding": {"_count": 1}, "ways": {"_count": 1}, "few": {"_count": 1}, "intruders": {"_count": 1}, "such": {"_count": 1}, "Crumple": {"_count": 1}, "impostors": {"_count": 1}, "far": {"_count": 1}}, "of": {"_count": 3, "everything": {"_count": 1}, "Muggles": {"_count": 1}, "course": {"_count": 1}}, "in": {"_count": 36, "an": {"_count": 1}, "the": {"_count": 17}, "a": {"_count": 5}, "ten": {"_count": 3}, "rows": {"_count": 1}, "black": {"_count": 1}, "bed": {"_count": 1}, "his": {"_count": 2}, "time": {"_count": 1}, "front": {"_count": 2}, "Godrics": {"_count": 1}, "overlarge": {"_count": 1}}, "really": {"_count": 3, "be": {"_count": 1}, "shops": {"_count": 1}, "was": {"_count": 1}}, "said": {"_count": 37, "Griphook": {"_count": 1}, "Hagrid": {"_count": 2}, "Harry": {"_count": 8}, "Ron": {"_count": 8}, "Hermione": {"_count": 3}, "Myrtle": {"_count": 1}, "Sirius": {"_count": 2}, "Dumbledore": {"_count": 2}, "Fred": {"_count": 1}, "Hermiones": {"_count": 1}, "Zabini": {"_count": 1}, "Ogden": {"_count": 1}, "Slughorn": {"_count": 1}, "Tonks": {"_count": 1}, "Lupin": {"_count": 1}, "Dirk": {"_count": 1}, "Aberforth": {"_count": 1}, "James": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "grinning": {"_count": 2, "at": {"_count": 1}, "like": {"_count": 1}}, "you": {"_count": 21, "are": {"_count": 12}, "have": {"_count": 3}, "heard": {"_count": 1}, "need": {"_count": 1}, "go": {"_count": 1}, "will": {"_count": 1}, "cannot": {"_count": 1}, "would": {"_count": 1}}, "between": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "like": {"_count": 7, "lightning": {"_count": 1}, "a": {"_count": 3}, "": {"_count": 1}, "an": {"_count": 1}, "tiny": {"_count": 1}}, "is": {"_count": 69, "Ive": {"_count": 1}, "little": {"_count": 2}, "only": {"_count": 3}, "one": {"_count": 1}, "a": {"_count": 10}, "": {"_count": 7}, "something": {"_count": 3}, "anything": {"_count": 2}, "none": {"_count": 1}, "nothing": {"_count": 5}, "very": {"_count": 2}, "Hermione": {"_count": 2}, "no": {"_count": 13}, "an": {"_count": 3}, "to": {"_count": 1}, "work": {"_count": 1}, "between": {"_count": 1}, "still": {"_count": 2}, "not": {"_count": 1}, "there": {"_count": 1}, "too": {"_count": 1}, "somebody": {"_count": 1}, "the": {"_count": 2}, "any": {"_count": 1}, "sure": {"_count": 1}, "endless": {"_count": 1}}, "soon": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "Harry": {"_count": 16, "": {"_count": 8}, "breathed": {"_count": 1}, "said": {"_count": 3}, "stop": {"_count": 1}, "it": {"_count": 1}, "weve": {"_count": 1}, "the": {"_count": 1}}, "must": {"_count": 9, "be": {"_count": 9}}, "still": {"_count": 3, "got": {"_count": 1}, "people": {"_count": 1}, "but": {"_count": 1}}, "among": {"_count": 2, "the": {"_count": 2}}, "at": {"_count": 13, "all": {"_count": 4}, "night": {"_count": 1}, "the": {"_count": 4}, "its": {"_count": 1}, "any": {"_count": 1}, "Harrys": {"_count": 1}, "last": {"_count": 1}}, "so": {"_count": 8, "keep": {"_count": 1}, "it": {"_count": 2}, "I": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 29, "take": {"_count": 2}, "keep": {"_count": 1}, "catch": {"_count": 1}, "last": {"_count": 1}, "be": {"_count": 3}, "enjoy": {"_count": 1}, "look": {"_count": 1}, "tell": {"_count": 1}, "help": {"_count": 3}, "make": {"_count": 1}, "watch": {"_count": 1}, "have": {"_count": 1}, "faint": {"_count": 1}, "see": {"_count": 1}, "ooze": {"_count": 1}, "greet": {"_count": 1}, "protect": {"_count": 4}, "bring": {"_count": 1}, "do": {"_count": 1}, "say": {"_count": 1}, "ambush": {"_count": 1}}, "yet": {"_count": 5, "": {"_count": 4}, "said": {"_count": 1}}, "but": {"_count": 19, "even": {"_count": 2}, "it": {"_count": 2}, "there": {"_count": 2}, "he": {"_count": 1}, "dark": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 2}, "invisible": {"_count": 1}, "instead": {"_count": 1}, "something": {"_count": 1}, "not": {"_count": 1}, "before": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}, "nobody": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 17, "neat": {"_count": 1}, "dozen": {"_count": 1}, "problem": {"_count": 2}, "few": {"_count": 1}, "round": {"_count": 1}, "chance": {"_count": 1}, "window": {"_count": 1}, "practical": {"_count": 1}, "little": {"_count": 1}, "clipboard": {"_count": 1}, "clue": {"_count": 1}, "defense": {"_count": 1}, "stray": {"_count": 1}, "way": {"_count": 1}, "slight": {"_count": 1}, "flat": {"_count": 1}}, "hes": {"_count": 1, "going": {"_count": 1}}, "nice": {"_count": 1, "dive": {"_count": 1}}, "move": {"_count": 1, "along": {"_count": 1}}, "cant": {"_count": 2, "you": {"_count": 1}, "be": {"_count": 1}}, "who": {"_count": 2, "shouldnt": {"_count": 1}, "might": {"_count": 1}}, "something": {"_count": 5, "that": {"_count": 2}, "like": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}}, "reflected": {"_count": 1, "behind": {"_count": 1}}, "hed": {"_count": 1, "touch": {"_count": 1}}, "arent": {"_count": 11, "wild": {"_count": 1}, "many": {"_count": 2}, "there": {"_count": 1}, "any": {"_count": 3}, "merpeople": {"_count": 1}, "enough": {"_count": 2}, "dementors": {"_count": 1}}, "d": {"_count": 2, "been": {"_count": 1}, "be": {"_count": 1}}, "werewolves": {"_count": 1, "I": {"_count": 1}}, "bin": {"_count": 1, "hurt": {"_count": 1}}, "along": {"_count": 3, "the": {"_count": 2}, "with": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "its": {"_count": 4, "only": {"_count": 1}, "the": {"_count": 1}, "just": {"_count": 1}, "up": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "squinting": {"_count": 1, "at": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 2, "there": {"_count": 1}, "listen": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 20, "one": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}, "ages": {"_count": 1}, "no": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 5}, "three": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 2}, "extra": {"_count": 1}, "you": {"_count": 1}, "Christmas": {"_count": 1}, "years": {"_count": 1}, "centuries": {"_count": 1}}, "that": {"_count": 4, "very": {"_count": 1}, "evening": {"_count": 1}, "he": {"_count": 2}}, "should": {"_count": 3, "have": {"_count": 3}}, "I": {"_count": 15, "was": {"_count": 1}, "realized": {"_count": 1}, "know": {"_count": 1}, "can": {"_count": 2}, "swear": {"_count": 1}, "saw": {"_count": 3}, "thought": {"_count": 2}, "dont": {"_count": 1}, "only": {"_count": 1}, "said": {"_count": 1}, "could": {"_count": 1}}, "lost": {"_count": 1, "for": {"_count": 1}}, "any": {"_count": 10, "particular": {"_count": 1}, "longer": {"_count": 1}, "chance": {"_count": 1}, "point": {"_count": 3}, "sign": {"_count": 1}, "more": {"_count": 1}, "markings": {"_count": 1}, "way": {"_count": 1}}, "came": {"_count": 10, "a": {"_count": 9}, "an": {"_count": 1}}, "until": {"_count": 5, "it": {"_count": 1}, "Moodys": {"_count": 1}, "next": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "\u2018I": {"_count": 1, "hope": {"_count": 1}}, "as": {"_count": 8, "long": {"_count": 1}, "well": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}, "soon": {"_count": 1}, "far": {"_count": 1}, "were": {"_count": 1}}, "escapators": {"_count": 1, "": {"_count": 1}}, "anyway": {"_count": 3, "": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 1}}, "gents": {"_count": 1, "break": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "Lockhart": {"_count": 1, "called": {"_count": 1}}, "Ron": {"_count": 4, "said": {"_count": 2}, "and": {"_count": 2}}, "They": {"_count": 1, "were": {"_count": 1}}, "all": {"_count": 12, "night": {"_count": 2}, "milling": {"_count": 1}, "the": {"_count": 2}, "journey": {"_count": 1}, "right": {"_count": 2}, "that": {"_count": 1}, "of": {"_count": 2}, "through": {"_count": 1}}, "But": {"_count": 1, "why": {"_count": 1}}, "by": {"_count": 9, "a": {"_count": 3}, "George": {"_count": 1}, "the": {"_count": 2}, "coincidence": {"_count": 1}, "carriage": {"_count": 1}, "Apparition": {"_count": 1}}, "wont": {"_count": 4, "be": {"_count": 3}, "they": {"_count": 1}}, "Percy": {"_count": 1, "said": {"_count": 1}}, "Scarhead": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 5, "but": {"_count": 1}, "Im": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}}, "though": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 1}}, "Miss": {"_count": 1, "Fawcett": {"_count": 1}}, "panicking": {"_count": 1, "a": {"_count": 1}}, "alone": {"_count": 11, "": {"_count": 3}, "sitting": {"_count": 1}, "and": {"_count": 2}, "given": {"_count": 1}, "Lees": {"_count": 1}, "gazing": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}}, "it": {"_count": 7, "got": {"_count": 1}, "is": {"_count": 1}, "was": {"_count": 3}, "isnt": {"_count": 1}, "lay": {"_count": 1}}, "would": {"_count": 18, "be": {"_count": 16}, "also": {"_count": 1}, "she": {"_count": 1}}, "anything": {"_count": 7, "missing": {"_count": 1}, "else": {"_count": 1}, "wrong": {"_count": 1}, "anyone": {"_count": 1}, "er": {"_count": 1}, "we": {"_count": 1}, "in": {"_count": 1}}, "been": {"_count": 3, "now": {"_count": 1}, "any": {"_count": 1}, "such": {"_count": 1}}, "didnt": {"_count": 2, "seem": {"_count": 2}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "excitement": {"_count": 1, "coursing": {"_count": 1}}, "isnt": {"_count": 9, "much": {"_count": 1}, "the": {"_count": 1}, "anything": {"_count": 1}, "but": {"_count": 1}, "a": {"_count": 2}, "anyone": {"_count": 1}, "said": {"_count": 1}, "there": {"_count": 1}}, "the": {"_count": 14, "more": {"_count": 1}, "smaller": {"_count": 1}, "lists": {"_count": 1}, "beast": {"_count": 1}, "night": {"_count": 3}, "usual": {"_count": 1}, "dormitory": {"_count": 1}, "filthy": {"_count": 1}, "next": {"_count": 1}, "following": {"_count": 1}, "man": {"_count": 1}, "plumes": {"_count": 1}}, "humming": {"_count": 1, "placidly": {"_count": 1}}, "Fawkes": {"_count": 1, "said": {"_count": 1}}, "alive": {"_count": 2, "Potter": {"_count": 1}, "and": {"_count": 1}}, "fury": {"_count": 1, "in": {"_count": 1}}, "whitefaced": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 3, "laughed": {"_count": 1}, "hour": {"_count": 1}, "no": {"_count": 1}}, "e": {"_count": 1, "went": {"_count": 1}}, "Ern": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 2, "last": {"_count": 1}, "once": {"_count": 1}}, "chuckled": {"_count": 1, "Tom": {"_count": 1}}, "dear": {"_count": 1, "said": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "theyre": {"_count": 2, "doing": {"_count": 1}, "staking": {"_count": 1}}, "before": {"_count": 5, "except": {"_count": 1}, "": {"_count": 2}, "Ancient": {"_count": 1}, "Filius": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "jus": {"_count": 1, "behind": {"_count": 1}}, "looking": {"_count": 13, "for": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 3}, "down": {"_count": 1}, "puzzled": {"_count": 1}, "awkward": {"_count": 1}, "old": {"_count": 1}, "like": {"_count": 1}, "rather": {"_count": 1}, "blank": {"_count": 1}, "utterly": {"_count": 1}}, "when": {"_count": 8, "they": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 2}, "Harry": {"_count": 1}, "you": {"_count": 1}, "Dumbledore": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "sweeping": {"_count": 1, "toward": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 4, "saying": {"_count": 1}, "that": {"_count": 2}, "only": {"_count": 1}}, "Hermione": {"_count": 3, "": {"_count": 2}, "Harrys": {"_count": 1}}, "gazing": {"_count": 2, "at": {"_count": 2}}, "flooded": {"_count": 1, "with": {"_count": 1}}, "massaging": {"_count": 1, "the": {"_count": 1}}, "We": {"_count": 1, "could": {"_count": 1}}, "laughing": {"_count": 1, "with": {"_count": 1}}, "sit": {"_count": 1, "muttering": {"_count": 1}}, "Hagrid": {"_count": 2, "": {"_count": 2}}, "cleaning": {"_count": 1, "out": {"_count": 1}}, "because": {"_count": 6, "she": {"_count": 1}, "they": {"_count": 1}, "Hagrid": {"_count": 1}, "someones": {"_count": 1}, "Harry": {"_count": 1}, "itll": {"_count": 1}}, "doesnt": {"_count": 1, "seem": {"_count": 1}}, "since": {"_count": 2, "Christmas": {"_count": 1}, "hed": {"_count": 1}}, "crouching": {"_count": 1, "among": {"_count": 1}}, "always": {"_count": 1, "is": {"_count": 1}}, "first": {"_count": 8, "SMACK": {"_count": 1}, "field": {"_count": 1}, "": {"_count": 4}, "you": {"_count": 1}, "Gryffindor": {"_count": 1}}, "fighting": {"_count": 1, "their": {"_count": 1}}, "staring": {"_count": 7, "out": {"_count": 1}, "at": {"_count": 5}, "up": {"_count": 1}}, "on": {"_count": 12, "his": {"_count": 2}, "Rons": {"_count": 1}, "the": {"_count": 6}, "their": {"_count": 1}, "holiday": {"_count": 1}, "either": {"_count": 1}}, "cloak": {"_count": 1, "on": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 3}}, "right": {"_count": 1, "over": {"_count": 1}}, "wand": {"_count": 1, "poised": {"_count": 1}}, "feeling": {"_count": 3, "suddenly": {"_count": 1}, "immensely": {"_count": 1}, "mutinous": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "Sirius": {"_count": 2, "Im": {"_count": 1}, "": {"_count": 1}}, "paralyzed": {"_count": 1, "not": {"_count": 1}}, "twitching": {"_count": 1, "with": {"_count": 1}}, "Snape": {"_count": 2, "": {"_count": 2}}, "we": {"_count": 3, "go": {"_count": 1}, "are": {"_count": 1}, "could": {"_count": 1}}, "hand": {"_count": 1, "still": {"_count": 1}}, "seething": {"_count": 1, "staring": {"_count": 1}}, "just": {"_count": 2, "last": {"_count": 1}, "a": {"_count": 1}}, "nor": {"_count": 1, "put": {"_count": 1}}, "shaking": {"_count": 2, "and": {"_count": 1}, "feeling": {"_count": 1}}, "about": {"_count": 2, "curse": {"_count": 1}, "using": {"_count": 1}}, "11": {"_count": 1, "be": {"_count": 1}}, "last": {"_count": 5, "We": {"_count": 1}, "year": {"_count": 2}, "night": {"_count": 1}, "summer": {"_count": 1}}, "without": {"_count": 3, "all": {"_count": 1}, "him": {"_count": 1}, "touching": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}, "adult": {"_count": 1, "wizards": {"_count": 1}}, "they": {"_count": 7, "saw": {"_count": 1}, "go": {"_count": 2}, "are": {"_count": 1}, "was": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 1}}, "pick": {"_count": 1, "his": {"_count": 1}}, "wearing": {"_count": 2, "masks": {"_count": 1}, "long": {"_count": 1}}, "did": {"_count": 3, "they": {"_count": 1}, "not": {"_count": 1}, "seem": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "certainly": {"_count": 1, "will": {"_count": 1}}, "hasnt": {"_count": 3, "been": {"_count": 3}}, "Here": {"_count": 1, "": {"_count": 1}}, "werent": {"_count": 1, "any": {"_count": 1}}, "clouds": {"_count": 1, "of": {"_count": 1}}, "than": {"_count": 2, "usual": {"_count": 1}, "hanging": {"_count": 1}}, "each": {"_count": 1, "looking": {"_count": 1}}, "doing": {"_count": 1, "it": {"_count": 1}}, "perhaps": {"_count": 1, "it": {"_count": 1}}, "leaning": {"_count": 1, "heavily": {"_count": 1}}, "rocking": {"_count": 1, "on": {"_count": 1}}, "aware": {"_count": 1, "that": {"_count": 1}}, "can": {"_count": 5, "be": {"_count": 5}}, "skulking": {"_count": 1, "around": {"_count": 1}}, "very": {"_count": 1, "narrow": {"_count": 1}}, "shes": {"_count": 1, "had": {"_count": 1}}, "oh": {"_count": 1, "come": {"_count": 1}}, "enough": {"_count": 1, "work": {"_count": 1}}, "talking": {"_count": 3, "to": {"_count": 2}, "into": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "waiting": {"_count": 5, "for": {"_count": 3}, "to": {"_count": 1}, "the": {"_count": 1}}, "acting": {"_count": 2, "the": {"_count": 1}, "like": {"_count": 1}}, "Granger": {"_count": 1, "": {"_count": 1}}, "beside": {"_count": 2, "Miss": {"_count": 1}, "the": {"_count": 1}}, "anymore": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "yare": {"_count": 1, "Hermione": {"_count": 1}}, "which": {"_count": 2, "surprised": {"_count": 1}, "should": {"_count": 1}}, "couldn": {"_count": 1, "he": {"_count": 1}}, "Professor": {"_count": 2, "": {"_count": 2}}, "except": {"_count": 2, "that": {"_count": 1}, "for": {"_count": 1}}, "dont": {"_count": 1, "let": {"_count": 1}}, "wouldnt": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "horrorstruck": {"_count": 1, "": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}, "panting": {"_count": 1, "his": {"_count": 1}}, "crumpled": {"_count": 1, "up": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "early": {"_count": 2, "on": {"_count": 1}, "we": {"_count": 1}}, "be": {"_count": 2, "recovery": {"_count": 1}, "time": {"_count": 1}}, "invisible": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 5, "said": {"_count": 1}, "had": {"_count": 1}, "replied": {"_count": 1}, "stood": {"_count": 1}, "was": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "cold": {"_count": 1, "trickles": {"_count": 1}}, "now": {"_count": 4, "": {"_count": 2}, "crouched": {"_count": 1}, "fighting": {"_count": 1}}, "risking": {"_count": 1, "his": {"_count": 1}}, "havent": {"_count": 1, "been": {"_count": 1}}, "goes": {"_count": 1, "Siriuss": {"_count": 1}}, "bold": {"_count": 1, "as": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "Bob": {"_count": 1, "": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "unless": {"_count": 1, "but": {"_count": 1}}, "if": {"_count": 3, "they": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "MadEye": {"_count": 1, "": {"_count": 1}}, "Id": {"_count": 1, "rather": {"_count": 1}}, "such": {"_count": 2, "friends": {"_count": 1}, "a": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "oozing": {"_count": 1, "droplets": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 2}}, "watching": {"_count": 1, "but": {"_count": 1}}, "clipboard": {"_count": 1, "on": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "George": {"_count": 1}}, "A": {"_count": 1, "month": {"_count": 1}}, "waitin": {"_count": 1, "ter": {"_count": 1}}, "wearin": {"_count": 1, "Karkus": {"_count": 1}}, "crying": {"_count": 1, "silently": {"_count": 1}}, "under": {"_count": 2, "false": {"_count": 1}, "the": {"_count": 1}}, "rose": {"_count": 1, "within": {"_count": 1}}, "big": {"_count": 1, "blank": {"_count": 1}}, "although": {"_count": 1, "halfway": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "\u2018Unspeakables": {"_count": 1, "said": {"_count": 1}}, "has": {"_count": 2, "been": {"_count": 1}, "he": {"_count": 1}}, "hell": {"_count": 1, "tell": {"_count": 1}}, "Sibyll": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Dolores": {"_count": 1, "said": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "yeh": {"_count": 1, "are": {"_count": 1}}, "irascible": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 4, "I": {"_count": 1}, "have": {"_count": 1}, "": {"_count": 1}, "cried": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "sure": {"_count": 2, "that": {"_count": 1}, "enough": {"_count": 1}}, "What": {"_count": 1, "do": {"_count": 1}}, "shattered": {"_count": 1, "": {"_count": 1}}, "filthy": {"_count": 1, "halfblood": {"_count": 1}}, "their": {"_count": 1, "voices": {"_count": 1}}, "Mulciber": {"_count": 1, "come": {"_count": 1}}, "unconscious": {"_count": 2, "": {"_count": 2}}, "once": {"_count": 1, "disguised": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "summer": {"_count": 1}}, "quite": {"_count": 1, "motionless": {"_count": 1}}, "stood": {"_count": 6, "Harrys": {"_count": 1}, "Hagrid": {"_count": 1}, "Percy": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 1}, "Xenophilius": {"_count": 1}}, "purring": {"_count": 1, "": {"_count": 1}}, "Borgin": {"_count": 1, "to": {"_count": 1}}, "bullying": {"_count": 1, "first": {"_count": 1}}, "Ginny": {"_count": 2, "": {"_count": 2}}, "seems": {"_count": 1, "little": {"_count": 1}}, "thinking": {"_count": 1, "himself": {"_count": 1}}, "beneath": {"_count": 2, "the": {"_count": 2}}, "however": {"_count": 1, "one": {"_count": 1}}, "sat": {"_count": 2, "the": {"_count": 1}, "Neville": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "breathing": {"_count": 1, "heavily": {"_count": 1}}, "including": {"_count": 1, "that": {"_count": 1}}, "Draco": {"_count": 1, "So": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "blazing": {"_count": 1, "white": {"_count": 1}}, "imprisoned": {"_count": 1, "by": {"_count": 1}}, "lying": {"_count": 1, "facedown": {"_count": 1}}, "yer": {"_count": 1, "evil": {"_count": 1}}, "listening": {"_count": 2, "he": {"_count": 1}, "to": {"_count": 1}}, "whispered": {"_count": 1, "Ginny": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "my": {"_count": 2, "Lord": {"_count": 2}}, "safe": {"_count": 1, "Harry": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "Percival": {"_count": 1}}, "theyll": {"_count": 2, "look": {"_count": 2}}, "old": {"_count": 1, "quills": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "occurred": {"_count": 1, "one": {"_count": 1}}, "holding": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "He": {"_count": 1, "even": {"_count": 1}}, "shaken": {"_count": 1, "": {"_count": 1}}, "invisibly": {"_count": 1, "and": {"_count": 1}}, "Shut": {"_count": 1, "up": {"_count": 1}}, "till": {"_count": 1, "YouKnowWho": {"_count": 1}}, "intensely": {"_count": 1, "shocking": {"_count": 1}}, "himself": {"_count": 2, "once": {"_count": 1}, "": {"_count": 1}}, "bloomed": {"_count": 1, "like": {"_count": 1}}, "The": {"_count": 1, "thing": {"_count": 1}}, "aint": {"_count": 1, "a": {"_count": 1}}, "shivering": {"_count": 1, "but": {"_count": 1}}, "flashed": {"_count": 1, "across": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "within": {"_count": 1, "hours": {"_count": 1}}, "down": {"_count": 1, "there": {"_count": 1}}, "ahead": {"_count": 2, "of": {"_count": 2}}, "passed": {"_count": 1, "a": {"_count": 1}}, "shone": {"_count": 1, "the": {"_count": 1}}, "Someone": {"_count": 1, "grab": {"_count": 1}}, "younger": {"_count": 1, "students": {"_count": 1}}, "where": {"_count": 1, "": {"_count": 1}}, "twirling": {"_count": 1, "the": {"_count": 1}}, "opening": {"_count": 1, "and": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "Snapes": {"_count": 1, "whole": {"_count": 1}}, "comes": {"_count": 1, "a": {"_count": 1}}, "stuffed": {"_count": 1, "out": {"_count": 1}}, "Ive": {"_count": 1, "had": {"_count": 1}}}, "no": {"_count": 1751, "finer": {"_count": 1, "boy": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 6, "was": {"_count": 1}, "groaned": {"_count": 1}, "doesnt": {"_count": 1}, "said": {"_count": 1}, "didn": {"_count": 1}, "wont": {"_count": 1}}, "point": {"_count": 25, "in": {"_count": 2}, "beating": {"_count": 1}, "talking": {"_count": 1}, "moving": {"_count": 1}, "hiding": {"_count": 1}, "putting": {"_count": 1}, "coming": {"_count": 1}, "tryin": {"_count": 1}, "worrying": {"_count": 1}, "looking": {"_count": 1}, "trying": {"_count": 1}, "continuing": {"_count": 1}, "pretending": {"_count": 1}, "telling": {"_count": 1}, "starting": {"_count": 1}, "hanging": {"_count": 1}, "apportioning": {"_count": 1}, "Harry": {"_count": 1}, "yelling": {"_count": 1}, "arguing": {"_count": 2}, "youll": {"_count": 1}, "waiting": {"_count": 1}, "staying": {"_count": 1}}, "good": {"_count": 36, "": {"_count": 9}, "telling": {"_count": 2}, "but": {"_count": 1}, "every": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 2}, "turning": {"_count": 1}, "at": {"_count": 2}, "hoping": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 1}, "snorted": {"_count": 1}, "reason": {"_count": 3}, "this": {"_count": 1}, "crying": {"_count": 1}, "I": {"_count": 1}, "Hermione": {"_count": 1}, "nagging": {"_count": 1}, "hiding": {"_count": 1}, "so": {"_count": 1}, "looking": {"_count": 1}, "Goyle": {"_count": 1}}, "reason": {"_count": 19, "for": {"_count": 3}, "to": {"_count": 9}, "at": {"_count": 2}, "on": {"_count": 1}, "I": {"_count": 1}, "why": {"_count": 2}, "not": {"_count": 1}}, "sign": {"_count": 47, "of": {"_count": 36}, "at": {"_count": 2}, "that": {"_count": 7}, "": {"_count": 2}}, "even": {"_count": 1, "the": {"_count": 1}}, "numbers": {"_count": 2, "instead": {"_count": 1}, "at": {"_count": 1}}, "business": {"_count": 2, "staying": {"_count": 1}, "being": {"_count": 1}}, "longer": {"_count": 100, "a": {"_count": 3}, "broken": {"_count": 1}, "pearlywhite": {"_count": 1}, "visible": {"_count": 2}, "alone": {"_count": 1}, "strutting": {"_count": 1}, "flap": {"_count": 1}, "grinning": {"_count": 1}, "your": {"_count": 1}, "has": {"_count": 1}, "standing": {"_count": 1}, "looked": {"_count": 3}, "able": {"_count": 1}, "avoid": {"_count": 1}, "talking": {"_count": 1}, "bushy": {"_count": 1}, "the": {"_count": 2}, "seemed": {"_count": 1}, "see": {"_count": 3}, "use": {"_count": 1}, "smooth": {"_count": 1}, "in": {"_count": 2}, "knew": {"_count": 1}, "aware": {"_count": 1}, "support": {"_count": 1}, "safe": {"_count": 1}, "buzzing": {"_count": 1}, "be": {"_count": 3}, "horseless": {"_count": 1}, "": {"_count": 1}, "fancied": {"_count": 1}, "live": {"_count": 1}, "up": {"_count": 1}, "spending": {"_count": 1}, "pretending": {"_count": 1}, "meet": {"_count": 1}, "their": {"_count": 1}, "hung": {"_count": 1}, "had": {"_count": 1}, "deathly": {"_count": 1}, "return": {"_count": 1}, "with": {"_count": 2}, "welcome": {"_count": 1}, "setting": {"_count": 1}, "hear": {"_count": 1}, "Page": {"_count": 1}, "struggling": {"_count": 1}, "laughing": {"_count": 1}, "seeing": {"_count": 1}, "enough": {"_count": 1}, "any": {"_count": 1}, "quite": {"_count": 1}, "studying": {"_count": 1}, "smiling": {"_count": 1}, "there": {"_count": 1}, "rely": {"_count": 1}, "made": {"_count": 1}, "he": {"_count": 1}, "handsome": {"_count": 1}, "hide": {"_count": 1}, "mirrorsmooth": {"_count": 1}, "sneering": {"_count": 1}, "crying": {"_count": 1}, "fit": {"_count": 1}, "contagious": {"_count": 1}, "call": {"_count": 1}, "tell": {"_count": 1}, "glowing": {"_count": 1}, "exist": {"_count": 1}, "possible": {"_count": 1}, "glittering": {"_count": 1}, "vomiting": {"_count": 1}, "under": {"_count": 1}, "turn": {"_count": 1}, "red": {"_count": 1}, "burned": {"_count": 1}, "seeks": {"_count": 1}, "work": {"_count": 1}, "have": {"_count": 2}, "Bellatrix": {"_count": 1}, "make": {"_count": 1}, "sent": {"_count": 1}, "fire": {"_count": 1}, "contain": {"_count": 1}, "control": {"_count": 1}, "cared": {"_count": 1}, "paying": {"_count": 1}}, "difference": {"_count": 10, "his": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 2}, "and": {"_count": 1}, "between": {"_count": 1}}, "matter": {"_count": 12, "if": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 2}, "Outside": {"_count": 1}, "how": {"_count": 5}, "what": {"_count": 2}}, "company": {"_count": 1, "except": {"_count": 1}}, "one": {"_count": 86, "saw": {"_count": 2}, "": {"_count": 4}, "could": {"_count": 6}, "dared": {"_count": 1}, "except": {"_count": 1}, "does": {"_count": 1}, "really": {"_count": 2}, "wanted": {"_count": 2}, "was": {"_count": 6}, "can": {"_count": 3}, "seems": {"_count": 2}, "else": {"_count": 17}, "had": {"_count": 2}, "takin": {"_count": 1}, "need": {"_count": 2}, "ter": {"_count": 1}, "would": {"_count": 3}, "on": {"_count": 1}, "but": {"_count": 3}, "wants": {"_count": 1}, "will": {"_count": 2}, "looked": {"_count": 2}, "outside": {"_count": 2}, "that": {"_count": 1}, "likin": {"_count": 1}, "there": {"_count": 1}, "came": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 2}, "sir": {"_count": 1}, "wouldve": {"_count": 1}, "believed": {"_count": 1}, "who": {"_count": 1}, "looks": {"_count": 1}, "elses": {"_count": 1}, "knows": {"_count": 2}, "seemed": {"_count": 1}, "around": {"_count": 1}, "better": {"_count": 1}, "and": {"_count": 1}}, "meals": {"_count": 1, "before": {"_count": 1}}, "photographs": {"_count": 1, "of": {"_count": 1}}, "escaping": {"_count": 2, "Dudleys": {"_count": 1}, "it": {"_count": 1}}, "friends": {"_count": 2, "no": {"_count": 1}, "": {"_count": 1}}, "other": {"_count": 14, "relatives": {"_count": 1}, "choice": {"_count": 1}, "headmaster": {"_count": 1}, "": {"_count": 1}, "word": {"_count": 1}, "perhaps": {"_count": 2}, "explanation": {"_count": 2}, "cause": {"_count": 1}, "way": {"_count": 1}, "wizard": {"_count": 1}, "purpose": {"_count": 1}, "sign": {"_count": 1}}, "mistake": {"_count": 5, "Mr": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "now": {"_count": 1}, "well": {"_count": 1}}, "stamp": {"_count": 1, "": {"_count": 1}}, "less": {"_count": 10, "than": {"_count": 5}, "stubborn": {"_count": 1}, "a": {"_count": 1}, "obviously": {"_count": 1}, "because": {"_count": 1}, "regretted": {"_count": 1}}, "damn": {"_count": 1, "letters": {"_count": 1}}, "television": {"_count": 1, "in": {"_count": 1}}, "ter": {"_count": 2, "summat": {"_count": 1}, "a": {"_count": 1}}, "said": {"_count": 37, "Harry": {"_count": 5}, "Ron": {"_count": 3}, "Dumbledore": {"_count": 5}, "Hermione": {"_count": 9}, "Neville": {"_count": 1}, "Lupin": {"_count": 2}, "Dobby": {"_count": 1}, "Bagman": {"_count": 1}, "Sirius": {"_count": 1}, "Madam": {"_count": 1}, "Umbridge": {"_count": 1}, "Cho": {"_count": 2}, "Hagrid": {"_count": 3}, "Bellatrix": {"_count": 1}, "Luna": {"_count": 1}}, "later": {"_count": 1, "than": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 2}, "couldnt": {"_count": 1}}, "idea": {"_count": 71, "when": {"_count": 1}, "what": {"_count": 16}, "how": {"_count": 8}, "": {"_count": 10}, "Lockhart": {"_count": 1}, "of": {"_count": 8}, "said": {"_count": 7}, "I": {"_count": 1}, "where": {"_count": 6}, "that": {"_count": 2}, "there": {"_count": 1}, "youre": {"_count": 1}, "he": {"_count": 2}, "any": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "Wormtail": {"_count": 1}, "Im": {"_count": 1}, "which": {"_count": 1}, "it": {"_count": 1}}, "words": {"_count": 4, "came": {"_count": 2}, "could": {"_count": 1}, "occurred": {"_count": 1}}, "ordinary": {"_count": 2, "cut": {"_count": 1}, "scar": {"_count": 1}}, "denying": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "teh": {"_count": 1, "a": {"_count": 1}}, "sense": {"_count": 10, "of": {"_count": 4}, "not": {"_count": 1}, "whatsoever": {"_count": 2}, "in": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "keyhole": {"_count": 3, "": {"_count": 1}, "or": {"_count": 1}, "nothing": {"_count": 1}}, "sir": {"_count": 6, "said": {"_count": 2}, "no": {"_count": 2}, "they": {"_count": 1}, "because": {"_count": 1}}, "two": {"_count": 1, "unicorns": {"_count": 1}}, "here": {"_count": 2, "ebony": {"_count": 1}, "he": {"_count": 1}}, "platform": {"_count": 1, "nine": {"_count": 1}}, "wonder": {"_count": 10, "he": {"_count": 2}, "no": {"_count": 1}, "we": {"_count": 1}, "Justin": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "Dumbledore": {"_count": 2}, "I": {"_count": 1}}, "big": {"_count": 1, "deal": {"_count": 1}}, "doubt": {"_count": 47, "about": {"_count": 4}, "that": {"_count": 11}, "by": {"_count": 1}, "carrying": {"_count": 1}, "and": {"_count": 1}, "asking": {"_count": 1}, "bearing": {"_count": 1}, "to": {"_count": 2}, "had": {"_count": 1}, "you": {"_count": 2}, "whatsoever": {"_count": 1}, "hoping": {"_count": 1}, "": {"_count": 2}, "Albus": {"_count": 1}, "which": {"_count": 1}, "looking": {"_count": 1}, "managed": {"_count": 1}, "said": {"_count": 1}, "be": {"_count": 1}, "would": {"_count": 1}, "banned": {"_count": 1}, "hoped": {"_count": 1}, "werewolves": {"_count": 1}, "whom": {"_count": 1}, "Ariana": {"_count": 1}, "sitting": {"_count": 1}, "Umbridge": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}, "its": {"_count": 1}, "of": {"_count": 1}}, "": {"_count": 71, "?": {"_count": 2}, ".": {"_count": 41}, "!": {"_count": 28}}, "magic": {"_count": 4, "should": {"_count": 1}, "Weasley": {"_count": 1}, "allowed": {"_count": 1}, "and": {"_count": 1}}, "contact": {"_count": 2, "": {"_count": 1}, "during": {"_count": 1}}, "mistaking": {"_count": 7, "what": {"_count": 1}, "that": {"_count": 2}, "him": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 1}}, "way": {"_count": 24, "to": {"_count": 1}, "that": {"_count": 2}, "of": {"_count": 3}, "McGonagall": {"_count": 1}, "": {"_count": 1}, "any": {"_count": 1}, "she": {"_count": 2}, "the": {"_count": 1}, "they": {"_count": 1}, "anyone": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}, "yeh": {"_count": 1}, "theyd": {"_count": 1}, "youll": {"_count": 1}, "I": {"_count": 1}, "out": {"_count": 4}}, "answer": {"_count": 8, "": {"_count": 4}, "to": {"_count": 2}, "but": {"_count": 1}, "except": {"_count": 1}}, "the": {"_count": 2, "Slytherins": {"_count": 1}, "book": {"_count": 1}}, "stopped": {"_count": 1, "by": {"_count": 1}}, "trouble": {"_count": 6, "and": {"_count": 1}, "recognizing": {"_count": 1}, "said": {"_count": 1}, "come": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "kid": {"_count": 1, "could": {"_count": 1}}, "proper": {"_count": 2, "family": {"_count": 1}, "wizard": {"_count": 1}}, "signature": {"_count": 1, "": {"_count": 1}}, "title": {"_count": 1, "at": {"_count": 1}}, "sound": {"_count": 13, "of": {"_count": 2}, "from": {"_count": 2}, "now": {"_count": 1}, "came": {"_count": 6}, "apart": {"_count": 1}, "other": {"_count": 1}}, "reflection": {"_count": 1, "again": {"_count": 1}}, "need": {"_count": 37, "to": {"_count": 25}, "for": {"_count": 6}, "thank": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "No": {"_count": 1}}, "parents": {"_count": 2, "then": {"_count": 1}, "Black": {"_count": 1}}, "money": {"_count": 1, "you": {"_count": 1}}, "brains": {"_count": 2, "": {"_count": 1}, "none": {"_count": 1}}, "choice": {"_count": 27, "": {"_count": 8}, "said": {"_count": 1}, "Professor": {"_count": 1}, "but": {"_count": 12}, "now": {"_count": 1}, "you": {"_count": 1}, "before": {"_count": 1}, "or": {"_count": 1}, "The": {"_count": 1}}, "oh": {"_count": 4, "no": {"_count": 3}, "Shut": {"_count": 1}}, "Ive": {"_count": 3, "just": {"_count": 2}, "had": {"_count": 1}}, "Ron": {"_count": 5, "admitted": {"_count": 1}, "gasped": {"_count": 1}, "came": {"_count": 1}, "said": {"_count": 1}, "intruded": {"_count": 1}}, "not": {"_count": 9, "again": {"_count": 1}, "you": {"_count": 1}, "yet": {"_count": 1}, "necessarily": {"_count": 1}, "at": {"_count": 3}, "even": {"_count": 1}, "History": {"_count": 1}}, "proof": {"_count": 9, "": {"_count": 1}, "that": {"_count": 2}, "yet": {"_count": 2}, "at": {"_count": 1}, "for": {"_count": 1}, "Voldemort": {"_count": 1}, "he": {"_count": 1}}, "werewolf": {"_count": 1, "an": {"_count": 1}}, "unicorn": {"_count": 1, "neither": {"_count": 1}}, "shame": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "no": {"_count": 16, "said": {"_count": 3}, "": {"_count": 7}, "squeaked": {"_count": 1}, "last": {"_count": 1}, "no": {"_count": 2}, "I": {"_count": 2}}, "time": {"_count": 40, "to": {"_count": 17}, "it": {"_count": 1}, "": {"_count": 6}, "Aunt": {"_count": 1}, "at": {"_count": 6}, "in": {"_count": 5}, "or": {"_count": 1}, "said": {"_count": 1}, "has": {"_count": 1}, "just": {"_count": 1}}, "wood": {"_count": 2, "": {"_count": 1}, "honestly": {"_count": 1}}, "there": {"_count": 3, "with": {"_count": 1}, "hasnt": {"_count": 1}, "is": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "mercy": {"_count": 1, "": {"_count": 1}}, "alternative": {"_count": 5, "": {"_count": 2}, "He": {"_count": 1}, "Umbridge": {"_count": 1}, "but": {"_count": 1}}, "match": {"_count": 4, "for": {"_count": 3}, "": {"_count": 1}}, "visible": {"_count": 4, "sign": {"_count": 1}, "heads": {"_count": 1}, "means": {"_count": 1}, "damage": {"_count": 1}}, "noise": {"_count": 6, "and": {"_count": 3}, "came": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}}, "presents": {"_count": 1, "and": {"_count": 1}}, "squeaked": {"_count": 1, "Dobby": {"_count": 1}}, "decent": {"_count": 1, "wizard": {"_count": 1}}, "Muggle": {"_count": 2, "would": {"_count": 1}, "ever": {"_count": 1}}, "offense": {"_count": 2, "meant": {"_count": 1}, "mate": {"_count": 1}}, "wizard": {"_count": 2, "family": {"_count": 1}, "had": {"_count": 1}}, "means": {"_count": 9, "the": {"_count": 2}, "of": {"_count": 4}, "forgotten": {"_count": 1}, "banished": {"_count": 1}, "for": {"_count": 1}}, "lower": {"_count": 1, "There": {"_count": 1}}, "Malfoys": {"_count": 1, "worth": {"_count": 1}}, "Arthur": {"_count": 1, "not": {"_count": 1}}, "ones": {"_count": 20, "watching": {"_count": 1}, "going": {"_count": 5}, "died": {"_count": 1}, "seen": {"_count": 2}, "really": {"_count": 1}, "that": {"_count": 1}, "warned": {"_count": 1}, "ever": {"_count": 2}, "done": {"_count": 1}, "fault": {"_count": 1}, "listening": {"_count": 1}, "sure": {"_count": 1}, "used": {"_count": 1}, "found": {"_count": 1}}, "questions": {"_count": 3, "about": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "Professor": {"_count": 1, "see": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "harm": {"_count": 4, "can": {"_count": 1}, "done": {"_count": 2}, "": {"_count": 1}}, "effect": {"_count": 3, "one": {"_count": 1}, "the": {"_count": 1}, "whatsoever": {"_count": 1}}, "girls": {"_count": 1, "on": {"_count": 1}}, "more": {"_count": 70, "than": {"_count": 10}, "ask": {"_count": 1}, "of": {"_count": 1}, "time": {"_count": 1}, "attacks": {"_count": 1}, "evening": {"_count": 1}, "said": {"_count": 1}, "chances": {"_count": 1}, "here": {"_count": 2}, "messing": {"_count": 1}, "talking": {"_count": 2}, "": {"_count": 9}, "argument": {"_count": 1}, "but": {"_count": 1}, "spring": {"_count": 1}, "I": {"_count": 1}, "magic": {"_count": 1}, "suspect": {"_count": 1}, "a": {"_count": 1}, "effect": {"_count": 1}, "expected": {"_count": 1}, "Master": {"_count": 1}, "you": {"_count": 2}, "to": {"_count": 1}, "objections": {"_count": 1}, "ter": {"_count": 1}, "difficult": {"_count": 1}, "Hogsmeade": {"_count": 1}, "significance": {"_count": 1}, "have": {"_count": 1}, "thought": {"_count": 1}, "footsteps": {"_count": 1}, "help": {"_count": 1}, "her": {"_count": 1}, "about": {"_count": 2}, "pretense": {"_count": 1}, "arguments": {"_count": 1}, "coherent": {"_count": 1}, "distinctivelooking": {"_count": 1}, "dangerous": {"_count": 1}, "successful": {"_count": 1}, "intelligible": {"_count": 1}, "part": {"_count": 1}, "murder": {"_count": 1}, "Draco": {"_count": 1}, "war": {"_count": 1}, "Sorting": {"_count": 1}, "Houses": {"_count": 1}, "Horcruxes": {"_count": 1}}, "importance": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 10, "not": {"_count": 4}, "wonderful": {"_count": 1}, "scheduled": {"_count": 1}, "yours": {"_count": 1}, "all": {"_count": 1}, "always": {"_count": 1}, "nothing": {"_count": 1}}, "memory": {"_count": 4, "for": {"_count": 1}, "no": {"_count": 1}, "of": {"_count": 2}}, "you": {"_count": 3, "wouldnt": {"_count": 1}, "misunderstand": {"_count": 1}, "will": {"_count": 1}}, "Peeves": {"_count": 2, "dont": {"_count": 1}, "": {"_count": 1}}, "evidence": {"_count": 3, "at": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}}, "student": {"_count": 2, "had": {"_count": 1}, "runs": {"_count": 1}}, "Chamber": {"_count": 1, "and": {"_count": 1}}, "monster": {"_count": 1, "": {"_count": 1}}, "stiff": {"_count": 1, "cat": {"_count": 1}}, "teachers": {"_count": 2, "going": {"_count": 1}, "near": {"_count": 1}}, "pressure": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "chance": {"_count": 20, "to": {"_count": 3}, "with": {"_count": 1}, "at": {"_count": 2}, "theyre": {"_count": 1}, "of": {"_count": 8}, "against": {"_count": 1}, "whatsoever": {"_count": 1}, "said": {"_count": 2}, "that": {"_count": 1}}, "danger": {"_count": 2, "he": {"_count": 1}, "of": {"_count": 1}}, "they": {"_count": 2, "cant": {"_count": 1}, "dont": {"_count": 1}}, "pixie": {"_count": 1, "": {"_count": 1}}, "whirring": {"_count": 1, "silver": {"_count": 1}}, "nearer": {"_count": 3, "locating": {"_count": 1}, "catching": {"_count": 1}, "laying": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "was": {"_count": 1}, "wouldnt": {"_count": 1}}, "whisper": {"_count": 1, "from": {"_count": 1}}, "pleasure": {"_count": 4, "at": {"_count": 3}, "to": {"_count": 1}}, "Muggleborns": {"_count": 1, "left": {"_count": 1}}, "last": {"_count": 1, "thing": {"_count": 1}}, "Hagrid": {"_count": 1, "visible": {"_count": 1}}, "better": {"_count": 7, "in": {"_count": 1}, "than": {"_count": 4}, "nasty": {"_count": 1}, "against": {"_count": 1}}, "comment": {"_count": 2, "about": {"_count": 1}, "but": {"_count": 1}}, "closer": {"_count": 2, "to": {"_count": 2}}, "onell": {"_count": 2, "ever": {"_count": 1}, "know": {"_count": 1}}, "easy": {"_count": 1, "task": {"_count": 1}}, "students": {"_count": 1, "have": {"_count": 1}}, "extraordinary": {"_count": 2, "magical": {"_count": 1}, "talent": {"_count": 1}}, "answering": {"_count": 3, "voice": {"_count": 2}, "flurry": {"_count": 1}}, "hurry": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "wound": {"_count": 1, "Get": {"_count": 1}}, "punishment": {"_count": 1, "": {"_count": 1}}, "lasting": {"_count": 1, "harm": {"_count": 1}}, "word": {"_count": 3, "from": {"_count": 1}, "to": {"_count": 1}, "about": {"_count": 1}}, "account": {"_count": 5, "goodfornothing": {"_count": 1}, "whatsoever": {"_count": 1}, "should": {"_count": 1}, "is": {"_count": 1}, "that": {"_count": 1}}, "lights": {"_count": 3, "shone": {"_count": 1}, "in": {"_count": 1}, "no": {"_count": 1}}, "seats": {"_count": 1, "instead": {"_count": 1}}, "recollection": {"_count": 1, "of": {"_count": 1}}, "Im": {"_count": 10, "very": {"_count": 1}, "not": {"_count": 4}, "sure": {"_count": 2}, "talking": {"_count": 1}, "sorry": {"_count": 1}, "halfblood": {"_count": 1}}, "desire": {"_count": 6, "to": {"_count": 4}, "at": {"_count": 2}}, "luck": {"_count": 2, "so": {"_count": 1}, "at": {"_count": 1}}, "theyre": {"_count": 1, "not": {"_count": 1}}, "hes": {"_count": 2, "breathing": {"_count": 1}, "back": {"_count": 1}}, "er": {"_count": 1, "Professor": {"_count": 1}}, "thought": {"_count": 3, "in": {"_count": 2}, "for": {"_count": 1}}, "doors": {"_count": 2, "off": {"_count": 1}, "apart": {"_count": 1}}, "sooner": {"_count": 10, "reached": {"_count": 1}, "out": {"_count": 1}, "let": {"_count": 1}, "torn": {"_count": 1}, "had": {"_count": 5}, "have": {"_count": 1}}, "a": {"_count": 2, "sheep": {"_count": 1}, "request": {"_count": 1}}, "Harry": {"_count": 6, "remember": {"_count": 1}, "wont": {"_count": 1}, "gasped": {"_count": 1}, "how": {"_count": 1}, "not": {"_count": 1}, "I": {"_count": 1}}, "A": {"_count": 1, "seam": {"_count": 1}}, "attention": {"_count": 3, "to": {"_count": 1}, "": {"_count": 2}}, "amount": {"_count": 1, "of": {"_count": 1}}, "visiting": {"_count": 2, "the": {"_count": 2}}, "thanks": {"_count": 3, "Colin": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "dementor": {"_count": 1, "will": {"_count": 1}}, "room": {"_count": 4, "in": {"_count": 1}, "go": {"_count": 1}, "for": {"_count": 1}, "Its": {"_count": 1}}, "take": {"_count": 2, "me": {"_count": 2}}, "hint": {"_count": 6, "of": {"_count": 6}}, "Dumbledore": {"_count": 4, "said": {"_count": 1}, "shouted": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}}, "laughing": {"_count": 2, "matter": {"_count": 2}}, "responsibility": {"_count": 1, "for": {"_count": 1}}, "bent": {"_count": 1, "twigs": {"_count": 1}}, "note": {"_count": 1, "at": {"_count": 1}}, "expert": {"_count": 1, "but": {"_count": 1}}, "patronum": {"_count": 1, "sorry": {"_count": 1}}, "change": {"_count": 6, "in": {"_count": 4}, "of": {"_count": 1}, "Harry": {"_count": 1}}, "condition": {"_count": 1, "to": {"_count": 1}}, "sabotage": {"_count": 1, "": {"_count": 1}}, "visibility": {"_count": 1, "problems": {"_count": 1}}, "arguing": {"_count": 1, "with": {"_count": 1}}, "interruption": {"_count": 4, "": {"_count": 2}, "if": {"_count": 1}, "is": {"_count": 1}}, "arm": {"_count": 1, "in": {"_count": 1}}, "use": {"_count": 13, "against": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 3}, "here": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 3}, "forcing": {"_count": 1}}, "wind": {"_count": 3, "to": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 1}}, "Quaffle": {"_count": 1, "intercepted": {"_count": 1}}, "Slytherin": {"_count": 1, "in": {"_count": 1}}, "Flint": {"_count": 1, "in": {"_count": 1}}, "tears": {"_count": 1, "had": {"_count": 1}}, "power": {"_count": 2, "ter": {"_count": 1}, "to": {"_count": 1}}, "place": {"_count": 1, "for": {"_count": 1}}, "cure": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "dog": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "hope": {"_count": 7, "of": {"_count": 3}, "": {"_count": 1}, "for": {"_count": 1}, "none": {"_count": 1}, "from": {"_count": 1}}, "effort": {"_count": 6, "to": {"_count": 5}, "you": {"_count": 1}}, "mark": {"_count": 1, "on": {"_count": 1}}, "I": {"_count": 23, "dont": {"_count": 7}, "I": {"_count": 1}, "want": {"_count": 1}, "shall": {"_count": 1}, "suppose": {"_count": 1}, "still": {"_count": 1}, "havent": {"_count": 2}, "must": {"_count": 1}, "need": {"_count": 1}, "get": {"_count": 1}, "bet": {"_count": 1}, "assure": {"_count": 1}, "cant": {"_count": 1}, "beg": {"_count": 1}, "didnt": {"_count": 2}}, "Ill": {"_count": 3, "have": {"_count": 1}, "do": {"_count": 1}, "ggo": {"_count": 1}}, "hesitation": {"_count": 1, "in": {"_count": 1}}, "news": {"_count": 1, "of": {"_count": 1}}, "telephone": {"_count": 1, "and": {"_count": 1}}, "wish": {"_count": 4, "to": {"_count": 4}}, "stronger": {"_count": 1, "and": {"_count": 1}}, "wife": {"_count": 1, "said": {"_count": 1}}, "stranger": {"_count": 1, "to": {"_count": 1}}, "send": {"_count": 1, "Pig": {"_count": 1}}, "hanging": {"_count": 1, "around": {"_count": 1}}, "go": {"_count": 5, "back": {"_count": 2}, "with": {"_count": 1}, "before": {"_count": 1}, "then": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "hang": {"_count": 1, "on": {"_count": 1}}, "thats": {"_count": 2, "miles": {"_count": 1}, "mine": {"_count": 1}}, "only": {"_count": 1, "the": {"_count": 1}}, "older": {"_count": 2, "than": {"_count": 2}}, "success": {"_count": 2, "at": {"_count": 1}, "finally": {"_count": 1}}, "George": {"_count": 1, "sorry": {"_count": 1}}, "mean": {"_count": 1, "feat": {"_count": 1}}, "souvenirs": {"_count": 1, "as": {"_count": 1}}, "disrespect": {"_count": 1, "sir": {"_count": 1}}, "great": {"_count": 1, "shakes": {"_count": 1}}, "Wronski": {"_count": 1, "Feint": {"_count": 1}}, "pity": {"_count": 2, "in": {"_count": 2}}, "flying": {"_count": 2, "fantasies": {"_count": 1}, "car": {"_count": 1}}, "numerals": {"_count": 1, "around": {"_count": 1}}, "new": {"_count": 2, "face": {"_count": 1}, "information": {"_count": 1}}, "champion": {"_count": 1, "will": {"_count": 1}}, "underage": {"_count": 2, "student": {"_count": 2}}, "excuses": {"_count": 1, "": {"_count": 1}}, "further": {"_count": 4, "inquiries": {"_count": 1}, "stocks": {"_count": 1}, "part": {"_count": 1}, "for": {"_count": 1}}, "countercurse": {"_count": 2, "": {"_count": 1}, "why": {"_count": 1}}, "blocking": {"_count": 1, "it": {"_count": 1}}, "pushing": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "nothin": {"_count": 1, "doin": {"_count": 1}}, "applause": {"_count": 1, "": {"_count": 1}}, "Vi": {"_count": 1, "its": {"_count": 1}}, "trace": {"_count": 4, "of": {"_count": 3}, "behind": {"_count": 1}}, "reply": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "though": {"_count": 1}}, "problems": {"_count": 1, "you": {"_count": 1}}, "objection": {"_count": 4, "": {"_count": 1}, "whatsoever": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}}, "horrible": {"_count": 1, "remarks": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "nothing": {"_count": 1, "": {"_count": 1}}, "competition": {"_count": 1, "": {"_count": 1}}, "comparison": {"_count": 1, "the": {"_count": 1}}, "Winky": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 1, "hed": {"_count": 1}}, "story": {"_count": 1, "about": {"_count": 1}}, "an": {"_count": 1, "she": {"_count": 1}}, "she": {"_count": 2, "even": {"_count": 1}, "said": {"_count": 1}}, "problem": {"_count": 10, "": {"_count": 4}, "said": {"_count": 2}, "at": {"_count": 1}, "with": {"_count": 1}, "saying": {"_count": 1}, "is": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "mood": {"_count": 1, "to": {"_count": 1}}, "Christmas": {"_count": 1, "tea": {"_count": 1}}, "getting": {"_count": 3, "around": {"_count": 1}, "another": {"_count": 1}, "away": {"_count": 1}}, "poor": {"_count": 1, "man": {"_count": 1}}, "food": {"_count": 1, "as": {"_count": 1}}, "waiters": {"_count": 1, "": {"_count": 1}}, "intention": {"_count": 4, "of": {"_count": 3}, "whatsoever": {"_count": 1}}, "response": {"_count": 2, "": {"_count": 1}, "except": {"_count": 1}}, "Triwizard": {"_count": 1, "event": {"_count": 1}}, "judging": {"_count": 1, "to": {"_count": 1}}, "thank": {"_count": 2, "you": {"_count": 2}}, "uncertain": {"_count": 1, "terms": {"_count": 1}}, "stroke": {"_count": 1, "of": {"_count": 1}}, "sudden": {"_count": 1, "burst": {"_count": 1}}, "Muggles": {"_count": 1, "would": {"_count": 1}}, "bones": {"_count": 1, "in": {"_count": 1}}, "resemblance": {"_count": 1, "at": {"_count": 1}}, "right": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "wait": {"_count": 1, "for": {"_count": 1}}, "windows": {"_count": 2, "merely": {"_count": 1}, "and": {"_count": 1}}, "pictures": {"_count": 1, "on": {"_count": 1}}, "decorations": {"_count": 1, "at": {"_count": 1}}, "son": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "notice": {"_count": 6, "whatsoever": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 2}}, "risks": {"_count": 1, "Concentrate": {"_count": 1}}, "family": {"_count": 2, "no": {"_count": 1}, "who": {"_count": 1}}, "child": {"_count": 1, "alive": {"_count": 1}}, "body": {"_count": 4, "and": {"_count": 1}, "to": {"_count": 2}, "why": {"_count": 1}}, "mother": {"_count": 1, "to": {"_count": 1}}, "help": {"_count": 4, "to": {"_count": 1}, "if": {"_count": 1}, "for": {"_count": 1}, "possible": {"_count": 1}}, "defense": {"_count": 1, "was": {"_count": 1}}, "benign": {"_count": 1, "smile": {"_count": 1}}, "twinkle": {"_count": 1, "in": {"_count": 1}}, "immediate": {"_count": 1, "danger": {"_count": 1}}, "loss": {"_count": 1, "": {"_count": 1}}, "mystery": {"_count": 1, "is": {"_count": 1}}, "higher": {"_count": 4, "praise": {"_count": 1}, "than": {"_count": 1}, "pleasure": {"_count": 1}, "position": {"_count": 1}}, "magical": {"_count": 1, "eye": {"_count": 1}}, "streetlamps": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 1, "or": {"_count": 1}}, "happiness": {"_count": 1, "in": {"_count": 1}}, "world": {"_count": 1, "other": {"_count": 1}}, "particular": {"_count": 1, "feeling": {"_count": 1}}, "AllEngland": {"_count": 1, "BestKept": {"_count": 1}}, "but": {"_count": 2, "thats": {"_count": 1}, "believe": {"_count": 1}}, "ambition": {"_count": 1, "and": {"_count": 1}}, "shes": {"_count": 1, "kept": {"_count": 1}}, "case": {"_count": 2, "against": {"_count": 2}}, "door": {"_count": 3, "behind": {"_count": 1}, "": {"_count": 2}}, "sorry": {"_count": 2, "Here": {"_count": 1}, "": {"_count": 1}}, "funny": {"_count": 1, "deaths": {"_count": 1}}, "talking": {"_count": 1, "she": {"_count": 1}}, "guarantee": {"_count": 1, "of": {"_count": 1}}, "because": {"_count": 2, "Kreacher": {"_count": 1}, "Master": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "witnesses": {"_count": 1, "": {"_count": 1}}, "record": {"_count": 1, "of": {"_count": 1}}, "dementors": {"_count": 2, "outside": {"_count": 1}, "nearby": {"_count": 1}}, "authority": {"_count": 2, "to": {"_count": 1}, "over": {"_count": 1}}, "law": {"_count": 1, "yet": {"_count": 1}}, "real": {"_count": 6, "need": {"_count": 2}, "use": {"_count": 1}, "importance": {"_count": 2}, "harm": {"_count": 1}}, "surely": {"_count": 1, "not": {"_count": 1}}, "tinkering": {"_count": 1, "": {"_count": 1}}, "entrance": {"_count": 1, "she": {"_count": 1}}, "deaths": {"_count": 1, "at": {"_count": 1}}, "lies": {"_count": 1, "Hermione": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "light": {"_count": 1, "in": {"_count": 1}}, "Snape": {"_count": 1, "today": {"_count": 1}}, "such": {"_count": 4, "things": {"_count": 1}, "invitation": {"_count": 1}, "thing": {"_count": 2}}, "prospect": {"_count": 2, "of": {"_count": 2}}, "moan": {"_count": 1, "of": {"_count": 1}}, "Beaters": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "returning": {"_count": 1, "the": {"_count": 1}}, "mention": {"_count": 3, "of": {"_count": 3}}, "okay": {"_count": 1, "I": {"_count": 1}}, "Gryffindor": {"_count": 1, "Quidditch": {"_count": 1}}, "surprise": {"_count": 1, "to": {"_count": 1}}, "infringement": {"_count": 1, "of": {"_count": 1}}, "signs": {"_count": 1, "of": {"_count": 1}}, "footsteps": {"_count": 1, "leading": {"_count": 1}}, "address": {"_count": 1, "": {"_count": 1}}, "snow": {"_count": 2, "on": {"_count": 1}, "building": {"_count": 1}}, "of": {"_count": 3, "course": {"_count": 3}}, "portraits": {"_count": 1, "down": {"_count": 1}}, "cowardly": {"_count": 1, "flight": {"_count": 1}}, "houseelves": {"_count": 1, "cant": {"_count": 1}}, "visitors": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "Quidditch": {"_count": 1, "to": {"_count": 1}}, "opportunity": {"_count": 2, "to": {"_count": 2}}, "subtlety": {"_count": 1, "Potter": {"_count": 1}}, "market": {"_count": 1, "for": {"_count": 1}}, "youre": {"_count": 2, "not": {"_count": 2}}, "copy": {"_count": 1, "of": {"_count": 1}}, "trees": {"_count": 1, "stood": {"_count": 1}}, "secret": {"_count": 1, "meetings": {"_count": 1}}, "snag": {"_count": 1, "Dumbledore": {"_count": 1}}, "scar": {"_count": 1, "on": {"_count": 1}}, "fixed": {"_count": 1, "idea": {"_count": 1}}, "neck": {"_count": 1, "in": {"_count": 1}}, "dont": {"_count": 3, "wake": {"_count": 1}, "touch": {"_count": 1}, "die": {"_count": 1}}, "bird": {"_count": 1, "in": {"_count": 1}}, "return": {"_count": 1, "from": {"_count": 1}}, "gas": {"_count": 1, "": {"_count": 1}}, "impression": {"_count": 1, "whatsoever": {"_count": 1}}, "excuse": {"_count": 1, "now": {"_count": 1}}, "fires": {"_count": 1, "burning": {"_count": 1}}, "glittering": {"_count": 1, "shimmering": {"_count": 1}}, "interest": {"_count": 4, "in": {"_count": 2}, "making": {"_count": 1}, "at": {"_count": 1}}, "stop": {"_count": 1, "stop": {"_count": 1}}, "breath": {"_count": 1, "to": {"_count": 1}}, "escape": {"_count": 2, "And": {"_count": 1}, "": {"_count": 1}}, "true": {"_count": 1, "loyalty": {"_count": 1}}, "love": {"_count": 1, "for": {"_count": 1}}, "truth": {"_count": 1, "whatsoever": {"_count": 1}}, "hurricane": {"_count": 1, "said": {"_count": 1}}, "obvious": {"_count": 1, "sign": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "silly": {"_count": 1, "boy": {"_count": 1}}, "bloke": {"_count": 1, "in": {"_count": 1}}, "owls": {"_count": 1, "have": {"_count": 1}}, "squealed": {"_count": 1, "Hermione": {"_count": 1}}, "Outstandings": {"_count": 1, "there": {"_count": 1}}, "Aurors": {"_count": 1, "waiting": {"_count": 1}}, "cheerful": {"_count": 1, "Hagrid": {"_count": 1}}, "Chosen": {"_count": 1, "One": {"_count": 1}}, "gasped": {"_count": 1, "Belby": {"_count": 1}}, "inkling": {"_count": 1, "of": {"_count": 1}}, "warning": {"_count": 2, "about": {"_count": 1}, "of": {"_count": 1}}, "dismay": {"_count": 1, "on": {"_count": 1}}, "remorse": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "mail": {"_count": 1, "since": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "Give": {"_count": 1, "it": {"_count": 1}}, "Filch": {"_count": 1, "theyre": {"_count": 1}}, "moment": {"_count": 1, "to": {"_count": 1}}, "Because": {"_count": 1, "he": {"_count": 1}}, "buzz": {"_count": 1, "of": {"_count": 1}}, "novice": {"_count": 1, "when": {"_count": 1}}, "beauty": {"_count": 1, "and": {"_count": 1}}, "Tom": {"_count": 1, "nor": {"_count": 1}}, "easier": {"_count": 1, "when": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "Id": {"_count": 1, "love": {"_count": 1}}, "plans": {"_count": 1, "to": {"_count": 1}}, "control": {"_count": 2, "knowing": {"_count": 1}, "over": {"_count": 1}}, "Wizarding": {"_count": 3, "princes": {"_count": 1}, "duel": {"_count": 1}, "master": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "pretense": {"_count": 1, "at": {"_count": 1}}, "affection": {"_count": 1, "for": {"_count": 1}}, "memories": {"_count": 1, "to": {"_count": 1}}, "difficulty": {"_count": 2, "understanding": {"_count": 1}, "whatsoever": {"_count": 1}}, "additional": {"_count": 1, "opportunities": {"_count": 1}}, "normal": {"_count": 1, "lessons": {"_count": 1}}, "part": {"_count": 1, "in": {"_count": 1}}, "Buggins": {"_count": 1, "Its": {"_count": 1}}, "rule": {"_count": 1, "saying": {"_count": 1}}, "question": {"_count": 4, "of": {"_count": 2}, "that": {"_count": 1}, "surely": {"_count": 1}}, "depth": {"_count": 1, "of": {"_count": 1}}, "mere": {"_count": 1, "assistant": {"_count": 1}}, "merely": {"_count": 1, "friendly": {"_count": 1}}, "rules": {"_count": 1, "that": {"_count": 1}}, "air": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "age": {"_count": 1, "ter": {"_count": 1}}, "purpose": {"_count": 1, "can": {"_count": 1}}, "self": {"_count": 1, "at": {"_count": 1}}, "different": {"_count": 1, "": {"_count": 1}}, "appetite": {"_count": 1, "at": {"_count": 1}}, "possible": {"_count": 1, "way": {"_count": 1}}, "breeze": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "waves": {"_count": 1, "": {"_count": 1}}, "larger": {"_count": 1, "than": {"_count": 1}}, "blood": {"_count": 2, "to": {"_count": 1}, "left": {"_count": 1}}, "release": {"_count": 1, "that": {"_count": 1}}, "health": {"_count": 1, "drink": {"_count": 1}}, "wand": {"_count": 3, "at": {"_count": 1}, "upon": {"_count": 1}, "": {"_count": 1}}, "move": {"_count": 1, "to": {"_count": 1}}, "these": {"_count": 1, "are": {"_count": 1}}, "fear": {"_count": 1, "at": {"_count": 1}}, "preparation": {"_count": 1, "for": {"_count": 1}}, "curiosity": {"_count": 1, "at": {"_count": 1}}, "homework": {"_count": 1, "to": {"_count": 1}}, "waking": {"_count": 1, "from": {"_count": 1}}, "comforting": {"_count": 1, "whisper": {"_count": 1}}, "niece": {"_count": 1, "of": {"_count": 1}}, "movement": {"_count": 1, "as": {"_count": 1}}, "going": {"_count": 1, "back": {"_count": 1}}, "suggestions": {"_count": 1, "": {"_count": 1}}, "option": {"_count": 1, "but": {"_count": 1}}, "radishes": {"_count": 1, "dangling": {"_count": 1}}, "queue": {"_count": 1, "outside": {"_count": 1}}, "grudge": {"_count": 1, "against": {"_count": 1}}, "Healer": {"_count": 1, "was": {"_count": 1}}, "reliance": {"_count": 1, "can": {"_count": 1}}, "spell": {"_count": 1, "occurred": {"_count": 1}}, "chances": {"_count": 1, "in": {"_count": 1}}, "complaints": {"_count": 1, "there": {"_count": 1}}, "fan": {"_count": 1, "of": {"_count": 1}}, "retort": {"_count": 1, "": {"_count": 1}}, "proven": {"_count": 1, "Wizarding": {"_count": 1}}, "we": {"_count": 1, "mustnt": {"_count": 1}}, "fit": {"_count": 2, "state": {"_count": 2}}, "live": {"_count": 2, "here": {"_count": 2}}, "bustling": {"_count": 1, "or": {"_count": 1}}, "authors": {"_count": 1, "name": {"_count": 1}}, "pretending": {"_count": 1, "Harry": {"_count": 1}}, "attempt": {"_count": 3, "to": {"_count": 3}}, "ropes": {"_count": 1, "holding": {"_count": 1}}, "please": {"_count": 2, "PLEASE": {"_count": 1}, "come": {"_count": 1}}, "sides": {"_count": 1, "": {"_count": 1}}, "serious": {"_count": 1, "injury": {"_count": 1}}, "redhaired": {"_count": 1, "figure": {"_count": 1}}, "ideas": {"_count": 1, "and": {"_count": 1}}, "map": {"_count": 1, "no": {"_count": 1}}, "plan": {"_count": 1, "": {"_count": 1}}, "sword": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "hoofprints": {"_count": 1, "in": {"_count": 1}}, "flash": {"_count": 1, "of": {"_count": 1}}, "strength": {"_count": 2, "to": {"_count": 1}, "left": {"_count": 1}}, "clothes": {"_count": 1, "in": {"_count": 1}}, "books": {"_count": 1, "in": {"_count": 1}}, "Vernon": {"_count": 1, "Dudley": {"_count": 1}}, "conscience": {"_count": 1, "": {"_count": 1}}, "call": {"_count": 1, "Wormtail": {"_count": 1}}, "stopping": {"_count": 1, "it": {"_count": 1}}, "master": {"_count": 1, "": {"_count": 1}}, "HELP": {"_count": 1, "": {"_count": 1}}, "answers": {"_count": 1, "There": {"_count": 1}}, "whites": {"_count": 1, "to": {"_count": 1}}, "respect": {"_count": 1, "for": {"_count": 1}}, "freckles": {"_count": 1, "a": {"_count": 1}}, "braking": {"_count": 1, "They": {"_count": 1}}, "hand": {"_count": 1, "but": {"_count": 1}}, "photograph": {"_count": 1, "of": {"_count": 1}}, "witch": {"_count": 1, "or": {"_count": 1}}, "prizes": {"_count": 1, "for": {"_count": 1}}, "hold": {"_count": 1, "over": {"_count": 1}}, "handle": {"_count": 1, "and": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "beginning": {"_count": 1, "": {"_count": 1}}, "golden": {"_count": 1, "locket": {"_count": 1}}, "telling": {"_count": 2, "from": {"_count": 1}, "They": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "knowledge": {"_count": 1, "As": {"_count": 1}}, "feeling": {"_count": 1, "": {"_count": 1}}, "explanation": {"_count": 1, "my": {"_count": 1}}, "sadness": {"_count": 1, "in": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}, "bangs": {"_count": 1, "or": {"_count": 1}}, "listen": {"_count": 1, "Tuney": {"_count": 1}}, "message": {"_count": 1, "Im": {"_count": 1}}, "halting": {"_count": 1, "such": {"_count": 1}}, "concern": {"_count": 1, "to": {"_count": 1}}, "confidence": {"_count": 1, "in": {"_count": 1}}, "goodbyes": {"_count": 1, "and": {"_count": 1}}, "explanations": {"_count": 1, "he": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "wandmaker": {"_count": 1, "could": {"_count": 1}}, "trains": {"_count": 1, "as": {"_count": 1}}, "secrets": {"_count": 1, "from": {"_count": 1}}, "man": {"_count": 1, "alive": {"_count": 1}}, "possibility": {"_count": 1, "of": {"_count": 1}}, "face": {"_count": 1, "existed": {"_count": 1}}, "collision": {"_count": 1, "came": {"_count": 1}}}, "finer": {"_count": 5, "boy": {"_count": 1, "anywhere": {"_count": 1}}, "points": {"_count": 2, "of": {"_count": 1}, "while": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "details": {"_count": 1, "for": {"_count": 1}}}, "boy": {"_count": 474, "anywhere": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 10, "another": {"_count": 1}, "back": {"_count": 1}, "saying": {"_count": 1}, "leaning": {"_count": 1}, "definitely": {"_count": 1}, "trying": {"_count": 1}, "full": {"_count": 1}, "sitting": {"_count": 1}, "only": {"_count": 1}, "watching": {"_count": 1}}, "": {"_count": 105, ".": {"_count": 54}, "?": {"_count": 17}, "!": {"_count": 34}}, "getting": {"_count": 1, "here": {"_count": 1}}, "fast": {"_count": 1, "asleep": {"_count": 1}}, "who": {"_count": 38, "lived": {"_count": 1}, "was": {"_count": 8}, "kept": {"_count": 2}, "came": {"_count": 1}, "had": {"_count": 8}, "needed": {"_count": 1}, "survived": {"_count": 1}, "didnt": {"_count": 1}, "conjured": {"_count": 1}, "brought": {"_count": 1}, "considers": {"_count": 1}, "defeated": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}, "stopped": {"_count": 1}, "could": {"_count": 1}, "hastily": {"_count": 1}, "who": {"_count": 1}, "roared": {"_count": 1}, "is": {"_count": 1}, "relied": {"_count": 1}, "has": {"_count": 2}}, "riding": {"_count": 1, "his": {"_count": 1}}, "lived": {"_count": 1, "in": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 20, "a": {"_count": 6}, "dreadlocks": {"_count": 2}, "her": {"_count": 1}, "sandy": {"_count": 1}, "the": {"_count": 2}, "no": {"_count": 1}, "mousy": {"_count": 1}, "food": {"_count": 1}, "an": {"_count": 2}, "untidy": {"_count": 1}, "high": {"_count": 1}, "dragon": {"_count": 1}}, "any": {"_count": 1, "funny": {"_count": 1}}, "this": {"_count": 1, "boy": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "girl": {"_count": 1}}, "he": {"_count": 6, "snarled": {"_count": 2}, "hated": {"_count": 1}, "said": {"_count": 1}, "got": {"_count": 1}, "thought": {"_count": 1}}, "Hogwarts": {"_count": 1, "too": {"_count": 1}}, "went": {"_count": 3, "on": {"_count": 1}, "furiously": {"_count": 1}, "rushing": {"_count": 1}}, "suddenly": {"_count": 1, "nodding": {"_count": 1}}, "didnt": {"_count": 1, "": {"_count": 1}}, "Ive": {"_count": 1, "heard": {"_count": 1}}, "less": {"_count": 1, "and": {"_count": 1}}, "hopped": {"_count": 1, "down": {"_count": 1}}, "in": {"_count": 15, "Madam": {"_count": 1}, "Diagon": {"_count": 1}, "my": {"_count": 2}, "his": {"_count": 4}, "many": {"_count": 1}, "pale": {"_count": 1}, "chains": {"_count": 1}, "July": {"_count": 1}, "question": {"_count": 1}, "here": {"_count": 1}, "person": {"_count": 1}}, "marched": {"_count": 1, "toward": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 6, "vanished": {"_count": 2}, "been": {"_count": 1}, "died": {"_count": 1}, "just": {"_count": 1}, "destroyed": {"_count": 1}}, "and": {"_count": 13, "off": {"_count": 1}, "Charlie": {"_count": 1}, "stay": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "go": {"_count": 1}, "realized": {"_count": 1}, "keep": {"_count": 1}, "I": {"_count": 1}, "girl": {"_count": 1}, "broke": {"_count": 1}, "yet": {"_count": 1}, "said": {"_count": 1}}, "lifted": {"_count": 1, "the": {"_count": 1}}, "tried": {"_count": 2, "to": {"_count": 2}}, "came": {"_count": 2, "striding": {"_count": 1}, "in": {"_count": 1}}, "isnt": {"_count": 1, "something": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "Harry": {"_count": 6, "had": {"_count": 2}, "knew": {"_count": 1}, "Potter": {"_count": 1}, "recognized": {"_count": 2}}, "miserably": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 4, "Hermione": {"_count": 1}, "therell": {"_count": 1}, "resist": {"_count": 1}, "anybody": {"_count": 1}}, "from": {"_count": 6, "Madam": {"_count": 1}, "Herbology": {"_count": 1}, "Beauxbatons": {"_count": 3}, "the": {"_count": 1}}, "they": {"_count": 2, "looked": {"_count": 1}, "told": {"_count": 1}}, "carelessly": {"_count": 1, "noticing": {"_count": 1}}, "next": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "even": {"_count": 1, "taller": {"_count": 1}}, "its": {"_count": 3, "all": {"_count": 1}, "into": {"_count": 1}, "remarkable": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 1}, "be": {"_count": 1}, "see": {"_count": 1}, "tell": {"_count": 1}, "me": {"_count": 1}}, "your": {"_count": 1, "parents": {"_count": 1}}, "you": {"_count": 7, "are": {"_count": 1}, "the": {"_count": 1}, "must": {"_count": 2}, "may": {"_count": 1}, "all": {"_count": 1}, "shouldnt": {"_count": 1}}, "we": {"_count": 1, "havent": {"_count": 1}}, "one": {"_count": 1, "sound": {"_count": 1}}, "hed": {"_count": 1, "seen": {"_count": 1}}, "smirking": {"_count": 1, "all": {"_count": 1}}, "but": {"_count": 4, "to": {"_count": 1}, "he": {"_count": 2}, "funds": {"_count": 1}}, "playing": {"_count": 1, "Quidditch": {"_count": 1}}, "needs": {"_count": 1, "rest": {"_count": 1}}, "solemnly": {"_count": 1, "hes": {"_count": 1}}, "sir": {"_count": 1, "I": {"_count": 1}}, "of": {"_count": 3, "about": {"_count": 1}, "fourteen": {"_count": 1}, "around": {"_count": 1}}, "said": {"_count": 8, "Dippet": {"_count": 1}, "Lockhart": {"_count": 1}, "Moody": {"_count": 1}, "Fleur": {"_count": 1}, "Professor": {"_count": 1}, "Dumbledore": {"_count": 1}, "Lupin": {"_count": 1}, "Aberforth": {"_count": 1}}, "slammed": {"_count": 1, "the": {"_count": 1}}, "backing": {"_count": 1, "against": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}, "flew": {"_count": 1, "open": {"_count": 1}}, "leapt": {"_count": 1, "on": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "speaking": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 7, "though": {"_count": 1}, "undoubtedly": {"_count": 1}, "had": {"_count": 2}, "come": {"_count": 1}, "as": {"_count": 1}, "been": {"_count": 1}}, "she": {"_count": 5, "said": {"_count": 4}, "went": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "no": {"_count": 2, "more": {"_count": 1}, "older": {"_count": 1}}, "younger": {"_count": 1, "than": {"_count": 1}}, "outside": {"_count": 1, "Flourish": {"_count": 1}}, "Marvelous": {"_count": 1, "said": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "does": {"_count": 1, "anything": {"_count": 1}}, "Id": {"_count": 1, "be": {"_count": 1}}, "called": {"_count": 4, "Davey": {"_count": 1}, "Harry": {"_count": 2}, "Dean": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "his": {"_count": 1}}, "thats": {"_count": 1, "hardly": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "brings": {"_count": 1, "his": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "would": {"_count": 4, "be": {"_count": 2}, "return": {"_count": 1}, "not": {"_count": 1}}, "a": {"_count": 1, "stranger": {"_count": 1}}, "is": {"_count": 6, "nothing": {"_count": 1}, "to": {"_count": 1}, "doing": {"_count": 1}, "breaking": {"_count": 1}, "modest": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 3, "I": {"_count": 2}, "they": {"_count": 1}}, "I": {"_count": 9, "believe": {"_count": 1}, "wont": {"_count": 1}, "know": {"_count": 1}, "might": {"_count": 1}, "was": {"_count": 1}, "think": {"_count": 1}, "have": {"_count": 1}, "reached": {"_count": 1}, "do": {"_count": 1}}, "the": {"_count": 5, "curse": {"_count": 1}, "boy": {"_count": 2}, "plan": {"_count": 1}, "gold": {"_count": 1}}, "whose": {"_count": 2, "teachers": {"_count": 1}, "appearance": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "walked": {"_count": 1, "forward": {"_count": 1}}, "down": {"_count": 1, "there": {"_count": 1}}, "passed": {"_count": 1, "Harry": {"_count": 1}}, "Karkaroff": {"_count": 1, "turned": {"_count": 1}}, "Potter": {"_count": 1, "he": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "like": {"_count": 2, "no": {"_count": 2}}, "suffering": {"_count": 1, "all": {"_count": 1}}, "looked": {"_count": 1, "pretty": {"_count": 1}}, "someone": {"_count": 1, "muttered": {"_count": 1}}, "below": {"_count": 1, "and": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "my": {"_count": 2, "downfall": {"_count": 1}, "Lord": {"_count": 1}}, "won": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 2, "ever": {"_count": 1}, "have": {"_count": 1}}, "dont": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "very": {"_count": 1, "quiet": {"_count": 1}}, "can": {"_count": 2, "talk": {"_count": 1}, "never": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "cares": {"_count": 1, "whats": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "telling": {"_count": 1, "her": {"_count": 1}}, "What": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 2, "have": {"_count": 1}, "soon": {"_count": 1}}, "before": {"_count": 3, "you": {"_count": 2}, "in": {"_count": 1}}, "whos": {"_count": 2, "a": {"_count": 1}, "vanished": {"_count": 1}}, "Kreacher": {"_count": 1, "doesnt": {"_count": 1}}, "did": {"_count": 1, "it": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "nodding": {"_count": 1, "at": {"_count": 1}}, "standing": {"_count": 2, "just": {"_count": 1}, "before": {"_count": 1}}, "where": {"_count": 1, "have": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "cried": {"_count": 1, "in": {"_count": 1}}, "cornered": {"_count": 1, "him": {"_count": 1}}, "sitting": {"_count": 4, "four": {"_count": 1}, "between": {"_count": 1}, "in": {"_count": 2}}, "not": {"_count": 2, "five": {"_count": 1}, "to": {"_count": 1}}, "struggling": {"_count": 1, "toward": {"_count": 1}}, "handed": {"_count": 1, "over": {"_count": 1}}, "snarled": {"_count": 1, "Gaunt": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "YouKnowWho": {"_count": 1, "said": {"_count": 1}}, "craving": {"_count": 1, "": {"_count": 1}}, "lurking": {"_count": 1, "in": {"_count": 1}}, "more": {"_count": 2, "knowledgeable": {"_count": 2}}, "mark": {"_count": 1, "my": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "ask": {"_count": 1, "away": {"_count": 1}}, "oh": {"_count": 1, "yes": {"_count": 1}}, "Riddle": {"_count": 1, "it": {"_count": 1}}, "so": {"_count": 2, "you": {"_count": 1}, "solid": {"_count": 1}}, "enough": {"_count": 2, "": {"_count": 1}, "information": {"_count": 1}}, "Voldemort": {"_count": 2, "would": {"_count": 1}, "held": {"_count": 1}}, "let": {"_count": 1, "us": {"_count": 1}}, "doesnt": {"_count": 1, "seem": {"_count": 1}}, "emerged": {"_count": 1, "out": {"_count": 1}}, "turns": {"_count": 1, "seventeen": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "swam": {"_count": 1, "tantalizingly": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "Begging": {"_count": 1, "your": {"_count": 1}}, "knew": {"_count": 1, "about": {"_count": 1}}, "But": {"_count": 1, "surely": {"_count": 1}}, "know": {"_count": 1, "that": {"_count": 1}}, "might": {"_count": 2, "try": {"_count": 1}, "return": {"_count": 1}}, "Grawpy": {"_count": 1, "": {"_count": 1}}, "All": {"_count": 1, "this": {"_count": 1}}, "found": {"_count": 1, "it": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "lounging": {"_count": 1, "on": {"_count": 1}}, "born": {"_count": 1, "at": {"_count": 1}}, "survives": {"_count": 1, "said": {"_count": 1}}, "murder": {"_count": 1, "me": {"_count": 1}}, "must": {"_count": 1, "die": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "caught": {"_count": 1, "in": {"_count": 1}}, "resembled": {"_count": 1, "Draco": {"_count": 1}}}, "anywhere": {"_count": 77, "": {"_count": 14, ".": {"_count": 8}, "!": {"_count": 4}, "?": {"_count": 2}}, "but": {"_count": 7, "they": {"_count": 1}, "at": {"_count": 4}, "of": {"_count": 1}, "Harry": {"_count": 1}}, "just": {"_count": 1, "give": {"_count": 1}}, "in": {"_count": 5, "this": {"_count": 1}, "the": {"_count": 3}, "Britain": {"_count": 1}}, "and": {"_count": 2, "Filch": {"_count": 1}, "assumed": {"_count": 1}}, "near": {"_count": 14, "here": {"_count": 2}, "the": {"_count": 4}, "there": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 2}, "your": {"_count": 1}, "Hagrids": {"_count": 1}, "Ginny": {"_count": 1}, "their": {"_count": 1}}, "else": {"_count": 7, "to": {"_count": 2}, "Hermione": {"_count": 1}, "": {"_count": 1}, "then": {"_count": 1}, "but": {"_count": 1}, "it": {"_count": 1}}, "Gasping": {"_count": 1, "for": {"_count": 1}}, "you": {"_count": 2, "want": {"_count": 1}, "like": {"_count": 1}}, "till": {"_count": 1, "youve": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "like": {"_count": 1, "it": {"_count": 1}}, "Precisely": {"_count": 1, "Amos": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "there": {"_count": 1}, "it": {"_count": 1}}, "said": {"_count": 2, "Moody": {"_count": 1}, "Harry": {"_count": 1}}, "though": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 3, "and": {"_count": 1}, "looked": {"_count": 1}, "shouldnt": {"_count": 1}}, "As": {"_count": 1, "Slytherin": {"_count": 1}}, "it": {"_count": 1, "just": {"_count": 1}}, "nor": {"_count": 1, "any": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "suspicious": {"_count": 1, "": {"_count": 1}}, "growled": {"_count": 1, "Hagrid": {"_count": 1}}, "cant": {"_count": 1, "we": {"_count": 1}}, "too": {"_count": 1, "long": {"_count": 1}}, "the": {"_count": 1, "eagle": {"_count": 1}}, "He": {"_count": 1, "swooped": {"_count": 1}}}, "Dursleys": {"_count": 220, "had": {"_count": 17, "everything": {"_count": 1}, "woken": {"_count": 1}, "received": {"_count": 1}, "given": {"_count": 1}, "cooked": {"_count": 1}, "no": {"_count": 1}, "never": {"_count": 3}, "always": {"_count": 1}, "completely": {"_count": 2}, "pretended": {"_count": 1}, "ever": {"_count": 1}, "managed": {"_count": 1}, "spotted": {"_count": 1}, "once": {"_count": 1}}, "sister": {"_count": 1, "but": {"_count": 1}}, "shuddered": {"_count": 1, "to": {"_count": 1}}, "knew": {"_count": 2, "that": {"_count": 1}, "they": {"_count": 1}}, "got": {"_count": 1, "into": {"_count": 1}}, "dark": {"_count": 1, "livingroom": {"_count": 1}}, "house": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}}, "scream": {"_count": 1, "as": {"_count": 1}}, "front": {"_count": 1, "door": {"_count": 1}}, "": {"_count": 35, ".": {"_count": 32}, "?": {"_count": 1}, "!": {"_count": 2}}, "often": {"_count": 1, "spoke": {"_count": 1}}, "car": {"_count": 4, "with": {"_count": 1}, "Aunt": {"_count": 1}, "": {"_count": 1}, "swinging": {"_count": 1}}, "he": {"_count": 3, "didnt": {"_count": 2}, "was": {"_count": 1}}, "hated": {"_count": 1, "even": {"_count": 1}}, "bought": {"_count": 1, "Dudley": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "were": {"_count": 16, "asleep": {"_count": 1}, "his": {"_count": 1}, "cowering": {"_count": 2}, "there": {"_count": 1}, "unhappy": {"_count": 1}, "what": {"_count": 1}, "showing": {"_count": 1}, "still": {"_count": 1}, "already": {"_count": 1}, "all": {"_count": 1}, "asking": {"_count": 1}, "going": {"_count": 2}, "laughing": {"_count": 1}, "outnumbered": {"_count": 1}}, "almost": {"_count": 1, "ten": {"_count": 1}}, "ducked": {"_count": 1, "but": {"_count": 1}}, "would": {"_count": 5, "remember": {"_count": 1}, "like": {"_count": 1}, "call": {"_count": 1}, "never": {"_count": 1}, "be": {"_count": 1}}, "a": {"_count": 2, "very": {"_count": 1}, "cheery": {"_count": 1}}, "who": {"_count": 6, "shrank": {"_count": 1}, "flinched": {"_count": 1}, "looked": {"_count": 2}, "seemed": {"_count": 1}, "had": {"_count": 1}}, "that": {"_count": 4, "this": {"_count": 1}, "his": {"_count": 1}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}}, "scuttled": {"_count": 1, "back": {"_count": 1}}, "couldnt": {"_count": 3, "have": {"_count": 1}, "possibly": {"_count": 1}, "be": {"_count": 1}}, "then": {"_count": 1, "handed": {"_count": 1}}, "send": {"_count": 1, "me": {"_count": 1}}, "wasnt": {"_count": 1, "fun": {"_count": 1}}, "to": {"_count": 5, "get": {"_count": 1}, "turn": {"_count": 1}, "jump": {"_count": 1}, "take": {"_count": 1}, "sign": {"_count": 1}}, "drive": {"_count": 1, "away": {"_count": 1}}, "and": {"_count": 5, "now": {"_count": 1}, "wait": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 1}, "followed": {"_count": 1}}, "saying": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 2, "did": {"_count": 1}, "the": {"_count": 1}}, "say": {"_count": 1, "when": {"_count": 1}}, "usually": {"_count": 1, "bought": {"_count": 1}}, "son": {"_count": 1, "Dudley": {"_count": 1}}, "care": {"_count": 1, "if": {"_count": 1}}, "if": {"_count": 1, "Harry": {"_count": 1}}, "doorstep": {"_count": 1, "eleven": {"_count": 1}}, "never": {"_count": 1, "understanding": {"_count": 1}}, "story": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 1}, "money": {"_count": 1}, "Hogwarts": {"_count": 1}}, "hadnt": {"_count": 2, "even": {"_count": 1}, "understood": {"_count": 1}}, "this": {"_count": 1, "he": {"_count": 1}}, "sound": {"_count": 1, "almost": {"_count": 1}}, "hear": {"_count": 1, "anything": {"_count": 1}}, "let": {"_count": 1, "him": {"_count": 1}}, "appeared": {"_count": 2, "and": {"_count": 1}, "taken": {"_count": 1}}, "have": {"_count": 1, "locked": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "bedroom": {"_count": 1, "": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "liked": {"_count": 1, "everything": {"_count": 1}}, "havent": {"_count": 1, "given": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "heard": {"_count": 1, "the": {"_count": 1}}, "roof": {"_count": 1, "": {"_count": 1}}, "need": {"_count": 1, "never": {"_count": 1}}, "already": {"_count": 1, "sitting": {"_count": 1}}, "made": {"_count": 2, "any": {"_count": 1}, "their": {"_count": 1}}, "leaving": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "didnt": {"_count": 1, "sign": {"_count": 1}}, "was": {"_count": 1, "going": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "best": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "amazement": {"_count": 1}, "front": {"_count": 1}}, "at": {"_count": 2, "last": {"_count": 1}, "least": {"_count": 1}}, "knowing": {"_count": 1, "that": {"_count": 1}}, "are": {"_count": 2, "terrified": {"_count": 1}, "out": {"_count": 1}}, "address": {"_count": 1, "in": {"_count": 1}}, "too": {"_count": 1, "long": {"_count": 1}}, "stupid": {"_count": 1, "rules": {"_count": 1}}, "uptight": {"_count": 1, "and": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "scrambling": {"_count": 1, "panicstricken": {"_count": 1}}, "boardedup": {"_count": 1, "fireplace": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "draw": {"_count": 1, "back": {"_count": 1}}, "became": {"_count": 1, "more": {"_count": 1}}, "living": {"_count": 3, "room": {"_count": 3}}, "which": {"_count": 1, "consisted": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "Hmm": {"_count": 1, "said": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "really": {"_count": 1, "were": {"_count": 1}}, "open": {"_count": 1, "window": {"_count": 1}}, "goggled": {"_count": 1, "at": {"_count": 1}}, "could": {"_count": 1, "call": {"_count": 1}}, "flower": {"_count": 1, "bed": {"_count": 1}}, "flinched": {"_count": 1, "looking": {"_count": 1}}, "kept": {"_count": 1, "well": {"_count": 1}}, "not": {"_count": 1, "now": {"_count": 1}}, "many": {"_count": 1, "labor": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "Harry": {"_count": 1, "pressed": {"_count": 1}}, "stood": {"_count": 1, "apparently": {"_count": 1}}, "after": {"_count": 2, "a": {"_count": 1}, "quick": {"_count": 1}}, "shag": {"_count": 1, "carpet": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "once": {"_count": 2, "more": {"_count": 2}}, "drew": {"_count": 1, "very": {"_count": 1}}, "said": {"_count": 1, "anything": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "replied": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "exchanged": {"_count": 1, "loving": {"_count": 1}}, "went": {"_count": 1, "out": {"_count": 1}}}, "everything": {"_count": 339, "they": {"_count": 6, "wanted": {"_count": 2}, "can": {"_count": 1}, "said": {"_count": 1}, "told": {"_count": 1}, "had": {"_count": 1}}, "from": {"_count": 8, "his": {"_count": 1}, "tiny": {"_count": 1}, "luminous": {"_count": 1}, "pictures": {"_count": 1}, "regulations": {"_count": 1}, "boils": {"_count": 1}, "precisely": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 11, "him": {"_count": 2}, "gain": {"_count": 1}, "do": {"_count": 5}, "me": {"_count": 1}, "deliver": {"_count": 1}, "confess": {"_count": 1}}, "perfect": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 56, "!": {"_count": 9}, ".": {"_count": 39}, "?": {"_count": 8}}, "he": {"_count": 18, "owned": {"_count": 3}, "needed": {"_count": 2}, "needs": {"_count": 1}, "could": {"_count": 4}, "says": {"_count": 1}, "had": {"_count": 3}, "met": {"_count": 1}, "knew": {"_count": 2}, "tells": {"_count": 1}}, "in": {"_count": 12, "here": {"_count": 1}, "One": {"_count": 1}, "life": {"_count": 1}, "Rons": {"_count": 1}, "front": {"_count": 4}, "his": {"_count": 1}, "spite": {"_count": 1}, "": {"_count": 1}, "while": {"_count": 1}}, "yeh": {"_count": 1, "need": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "and": {"_count": 6, "paid": {"_count": 1}, "how": {"_count": 1}, "we": {"_count": 1}, "are": {"_count": 1}, "Kreacher": {"_count": 1}, "keen": {"_count": 1}}, "I": {"_count": 12, "could": {"_count": 3}, "can": {"_count": 2}, "own": {"_count": 1}, "would": {"_count": 1}, "saw": {"_count": 1}, "know": {"_count": 2}, "heard": {"_count": 2}}, "except": {"_count": 4, "the": {"_count": 2}, "it": {"_count": 1}, "that": {"_count": 1}}, "that": {"_count": 18, "had": {"_count": 5}, "goes": {"_count": 2}, "has": {"_count": 2}, "was": {"_count": 3}, "made": {"_count": 1}, "happened": {"_count": 1}, "might": {"_count": 1}, "Muriel": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "else": {"_count": 15, "he": {"_count": 1}, "in": {"_count": 1}, "weve": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 2}, "they": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 3}, "she": {"_count": 1}, "out": {"_count": 1}, "Dumbledore": {"_count": 1}, "He": {"_count": 1}}, "Quirrell": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "family": {"_count": 1}}, "neat": {"_count": 1, "and": {"_count": 1}}, "went": {"_count": 5, "all": {"_count": 1}, "dark": {"_count": 2}, "black": {"_count": 1}, "right": {"_count": 1}}, "turned": {"_count": 1, "dull": {"_count": 1}}, "Hermione": {"_count": 1, "beamed": {"_count": 1}}, "Dobby": {"_count": 1, "had": {"_count": 1}}, "still": {"_count": 1, "seemed": {"_count": 1}}, "right": {"_count": 1, "said": {"_count": 1}}, "stopped": {"_count": 1, "": {"_count": 1}}, "onehanded": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "feverishly": {"_count": 1, "into": {"_count": 1}}, "outside": {"_count": 1, "his": {"_count": 1}}, "Aragog": {"_count": 1, "had": {"_count": 1}}, "Ginny": {"_count": 1, "had": {"_count": 1}}, "Ron": {"_count": 2, "owned": {"_count": 1}, "was": {"_count": 1}}, "the": {"_count": 2, "night": {"_count": 1}, "dementors": {"_count": 1}}, "of": {"_count": 2, "importance": {"_count": 1}, "which": {"_count": 1}}, "about": {"_count": 4, "the": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}}, "was": {"_count": 10, "quiet": {"_count": 2}, "much": {"_count": 1}, "still": {"_count": 1}, "back": {"_count": 1}, "made": {"_count": 1}, "fading": {"_count": 1}, "cool": {"_count": 1}, "he": {"_count": 1}, "gone": {"_count": 1}}, "we": {"_count": 6, "could": {"_count": 1}, "have": {"_count": 1}, "ask": {"_count": 1}, "need": {"_count": 3}}, "Florean": {"_count": 1, "Fortescue": {"_count": 1}}, "perfectly": {"_count": 1, "until": {"_count": 1}}, "much": {"_count": 2, "easier": {"_count": 1}, "much": {"_count": 1}}, "but": {"_count": 7, "in": {"_count": 1}, "that": {"_count": 1}, "tell": {"_count": 1}, "the": {"_count": 1}, "whats": {"_count": 1}, "cracked": {"_count": 1}, "it": {"_count": 1}}, "under": {"_count": 1, "control": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "Muggle": {"_count": 1, "": {"_count": 1}}, "gone": {"_count": 1, "green": {"_count": 1}}, "down": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 3, "day": {"_count": 1}, "right": {"_count": 2}}, "back": {"_count": 1, "at": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "Im": {"_count": 1, "saying": {"_count": 1}}, "thats": {"_count": 6, "going": {"_count": 4}, "why": {"_count": 1}, "not": {"_count": 1}}, "did": {"_count": 1, "seem": {"_count": 1}}, "Sirius": {"_count": 3, "had": {"_count": 2}, "told": {"_count": 1}}, "around": {"_count": 2, "him": {"_count": 2}}, "said": {"_count": 5, "Hermione": {"_count": 2}, "Harry": {"_count": 3}}, "hidden": {"_count": 1, "from": {"_count": 1}}, "youre": {"_count": 1, "told": {"_count": 1}}, "out": {"_count": 2, "from": {"_count": 1}, "that": {"_count": 1}}, "Dumbledore": {"_count": 2, "had": {"_count": 1}, "told": {"_count": 1}}, "too": {"_count": 1, "easily": {"_count": 1}}, "for": {"_count": 3, "him": {"_count": 1}, "herself": {"_count": 1}, "which": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "gambling": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 2, "we": {"_count": 1}, "Dad": {"_count": 1}}, "will": {"_count": 3, "be": {"_count": 2}, "I": {"_count": 1}}, "everything": {"_count": 3, "no": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "no": {"_count": 1, "wonder": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "dear": {"_count": 1, "Ive": {"_count": 1}}, "without": {"_count": 1, "proof": {"_count": 1}}, "you": {"_count": 8, "say": {"_count": 1}, "need": {"_count": 3}, "know": {"_count": 2}, "attempt": {"_count": 1}, "told": {"_count": 1}}, "disappearing": {"_count": 1, "well": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "because": {"_count": 2, "we": {"_count": 1}, "you": {"_count": 1}}, "shoved": {"_count": 1, "under": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "she": {"_count": 2, "made": {"_count": 1}, "whispered": {"_count": 1}}, "youve": {"_count": 2, "been": {"_count": 1}, "told": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "hes": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "Snape": {"_count": 1, "wanted": {"_count": 1}}, "became": {"_count": 1, "stationary": {"_count": 1}}, "always": {"_count": 1, "to": {"_count": 1}}, "repeated": {"_count": 1, "Dumbledore": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "within": {"_count": 1, "reach": {"_count": 1}}, "clear": {"_count": 1, "": {"_count": 1}}, "Youre": {"_count": 1, "coming": {"_count": 1}}, "Fudge": {"_count": 1, "did": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 2}}, "throwing": {"_count": 1, "away": {"_count": 1}}, "going": {"_count": 2, "dark": {"_count": 1}, "": {"_count": 1}}, "by": {"_count": 1, "turning": {"_count": 1}}, "But": {"_count": 1, "I": {"_count": 1}}, "Lumos": {"_count": 1, "Incendio": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "hed": {"_count": 1, "left": {"_count": 1}}, "Rita": {"_count": 1, "wrote": {"_count": 1}}, "Regulus": {"_count": 1, "had": {"_count": 1}}, "important": {"_count": 1, "Harry": {"_count": 1}}, "weve": {"_count": 1, "done": {"_count": 1}}, "dark": {"_count": 1, "wet": {"_count": 1}}, "even": {"_count": 2, "if": {"_count": 1}, "Parseltongue": {"_count": 1}}, "just": {"_count": 1, "trust": {"_count": 1}}, "worse": {"_count": 1, "I": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "alone": {"_count": 1, "Harry": {"_count": 1}}, "replied": {"_count": 1, "Professor": {"_count": 1}}, "is": {"_count": 1, "hidden": {"_count": 1}}, "darkened": {"_count": 1, "and": {"_count": 1}}, "yet": {"_count": 1, "you": {"_count": 1}}}, "wanted": {"_count": 556, "but": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 341, "say": {"_count": 10}, "see": {"_count": 12}, "shake": {"_count": 2}, "watch": {"_count": 2}, "keep": {"_count": 5}, "do": {"_count": 14}, "hide": {"_count": 4}, "be": {"_count": 18}, "use": {"_count": 4}, "ask": {"_count": 13}, "skip": {"_count": 2}, "borrow": {"_count": 2}, "get": {"_count": 7}, "referee": {"_count": 1}, "find": {"_count": 3}, "give": {"_count": 5}, "meet": {"_count": 4}, "join": {"_count": 2}, "buy": {"_count": 2}, "stop": {"_count": 5}, "show": {"_count": 4}, "go": {"_count": 17}, "to": {"_count": 1}, "beat": {"_count": 1}, "put": {"_count": 1}, "fit": {"_count": 1}, "kill": {"_count": 1}, "tell": {"_count": 14}, "flush": {"_count": 1}, "finish": {"_count": 1}, "examine": {"_count": 3}, "apply": {"_count": 1}, "he": {"_count": 2}, "know": {"_count": 21}, "shout": {"_count": 2}, "make": {"_count": 3}, "come": {"_count": 11}, "disappear": {"_count": 1}, "help": {"_count": 3}, "steal": {"_count": 1}, "return": {"_count": 2}, "hear": {"_count": 9}, "tail": {"_count": 1}, "lure": {"_count": 2}, "win": {"_count": 1}, "hurt": {"_count": 1}, "save": {"_count": 1}, "lie": {"_count": 1}, "leave": {"_count": 6}, "mix": {"_count": 1}, "look": {"_count": 4}, "end": {"_count": 2}, "attend": {"_count": 1}, "risk": {"_count": 1}, "talk": {"_count": 15}, "avoid": {"_count": 2}, "": {"_count": 7}, "warn": {"_count": 1}, "touch": {"_count": 1}, "and": {"_count": 2}, "whispered": {"_count": 1}, "attack": {"_count": 3}, "yell": {"_count": 1}, "reach": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "continue": {"_count": 1}, "listen": {"_count": 1}, "catch": {"_count": 1}, "open": {"_count": 1}, "wait": {"_count": 1}, "rain": {"_count": 1}, "try": {"_count": 1}, "study": {"_count": 1}, "triumph": {"_count": 1}, "have": {"_count": 1}, "write": {"_count": 1}, "sing": {"_count": 1}, "provoke": {"_count": 1}, "spend": {"_count": 2}, "take": {"_count": 3}, "run": {"_count": 2}, "stamp": {"_count": 1}, "discuss": {"_count": 3}, "peruse": {"_count": 1}, "happen": {"_count": 1}, "cry": {"_count": 2}, "rush": {"_count": 1}, "rage": {"_count": 2}, "chuck": {"_count": 1}, "pack": {"_count": 1}, "set": {"_count": 1}, "occupy": {"_count": 1}, "explain": {"_count": 1}, "teach": {"_count": 1}, "carry": {"_count": 1}, "waste": {"_count": 1}, "clarify": {"_count": 1}, "stay": {"_count": 1}, "when": {"_count": 1}, "visit": {"_count": 2}, "associate": {"_count": 1}, "hug": {"_count": 1}, "argue": {"_count": 1}, "distract": {"_count": 1}, "slam": {"_count": 1}, "bring": {"_count": 1}, "He": {"_count": 1}, "believe": {"_count": 1}, "spin": {"_count": 1}, "change": {"_count": 1}, "pass": {"_count": 1}, "dive": {"_count": 1}, "humiliate": {"_count": 1}, "swap": {"_count": 1}, "live": {"_count": 1}, "mark": {"_count": 1}, "dig": {"_count": 1}, "fight": {"_count": 1}, "explore": {"_count": 1}, "escape": {"_count": 1}, "shine": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 12, "racing": {"_count": 1}, "bit": {"_count": 1}, "dragon": {"_count": 1}, "quick": {"_count": 1}, "": {"_count": 1}, "few": {"_count": 1}, "word": {"_count": 1}, "look": {"_count": 1}, "blowbyblow": {"_count": 1}, "spy": {"_count": 1}, "private": {"_count": 1}, "lot": {"_count": 1}}, "on": {"_count": 1, "television": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 16}, "!": {"_count": 1}}, "before": {"_count": 2, "they": {"_count": 1}, "Siriuss": {"_count": 1}}, "em": {"_count": 1, "outta": {"_count": 1}}, "Dumbledore": {"_count": 1, "fer": {"_count": 1}}, "Dudley": {"_count": 1, "to": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "now": {"_count": 2, "was": {"_count": 2}}, "at": {"_count": 3, "his": {"_count": 1}, "home": {"_count": 1}, "Christmas": {"_count": 1}}, "Quidditch": {"_count": 1, "Through": {"_count": 1}}, "the": {"_count": 17, "Stone": {"_count": 1}, "tunnel": {"_count": 1}, "Defense": {"_count": 2}, "job": {"_count": 1}, "Dark": {"_count": 1}, "plates": {"_count": 1}, "Triwizard": {"_count": 1}, "blood": {"_count": 1}, "Ministers": {"_count": 1}, "two": {"_count": 1}, "information": {"_count": 1}, "piece": {"_count": 1}, "school": {"_count": 1}, "truth": {"_count": 2}, "Death": {"_count": 1}}, "ttto": {"_count": 1, "meet": {"_count": 1}}, "was": {"_count": 2, "a": {"_count": 1}, "for": {"_count": 1}}, "you": {"_count": 13, "dead": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 10}, "I": {"_count": 1}}, "deboning": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 5, "Potter": {"_count": 1}, "under": {"_count": 1}, "Potters": {"_count": 1}, "to": {"_count": 2}}, "me": {"_count": 20, "sent": {"_count": 1}, "back": {"_count": 1}, "killed": {"_count": 1}, "ter": {"_count": 1}, "to": {"_count": 14}, "prevented": {"_count": 1}, "": {"_count": 1}}, "ter": {"_count": 6, "find": {"_count": 1}, "make": {"_count": 1}, "be": {"_count": 1}, "go": {"_count": 1}, "send": {"_count": 1}, "give": {"_count": 1}}, "or": {"_count": 1, "eat": {"_count": 1}}, "anything": {"_count": 1, "as": {"_count": 1}}, "help": {"_count": 1, "with": {"_count": 1}}, "two": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 15, "": {"_count": 2}, "in": {"_count": 1}, "dead": {"_count": 2}, "for": {"_count": 1}, "to": {"_count": 6}, "and": {"_count": 1}, "alive": {"_count": 1}, "there": {"_count": 1}}, "it": {"_count": 7, "kept": {"_count": 1}, "to": {"_count": 4}, "": {"_count": 1}, "for": {"_count": 1}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "because": {"_count": 1, "thanks": {"_count": 1}}, "his": {"_count": 2, "wand": {"_count": 1}, "autograph": {"_count": 1}}, "them": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "more": {"_count": 5, "than": {"_count": 3}, "drinks": {"_count": 1}, "help": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "someone": {"_count": 2, "to": {"_count": 1}, "like": {"_count": 1}}, "everyone": {"_count": 1, "watching": {"_count": 1}}, "nesting": {"_count": 1, "mothers": {"_count": 1}}, "an": {"_count": 2, "Auror": {"_count": 1}, "excuse": {"_count": 1}}, "things": {"_count": 1, "thrown": {"_count": 1}}, "very": {"_count": 2, "much": {"_count": 1}, "very": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "above": {"_count": 1, "all": {"_count": 1}}, "nothing": {"_count": 2, "more": {"_count": 2}}, "Sirius": {"_count": 1, "to": {"_count": 1}}, "answers": {"_count": 1, "you": {"_count": 1}}, "alerted": {"_count": 1, "to": {"_count": 1}}, "wizards": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "so": {"_count": 3, "For": {"_count": 1}, "when": {"_count": 1}, "desperately": {"_count": 1}}, "us": {"_count": 7, "to": {"_count": 5}, "ter": {"_count": 1}, "The": {"_count": 1}}, "her": {"_count": 2, "to": {"_count": 2}}, "done": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "Golgomath": {"_count": 1, "as": {"_count": 1}}, "with": {"_count": 2, "all": {"_count": 2}}, "any": {"_count": 1, "Harry": {"_count": 1}}, "this": {"_count": 3, "to": {"_count": 1}, "dusty": {"_count": 1}, "": {"_count": 1}}, "some": {"_count": 1, "fresh": {"_count": 1}}, "nor": {"_count": 1, "died": {"_count": 1}}, "company": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 3, "would": {"_count": 1}, "lucky": {"_count": 1}, "diary": {"_count": 1}}, "Borgin": {"_count": 2, "to": {"_count": 2}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "Ron": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "my": {"_count": 1, "job": {"_count": 1}}, "Slughorn": {"_count": 1, "on": {"_count": 1}}, "regular": {"_count": 1, "reports": {"_count": 1}}, "from": {"_count": 1, "Horace": {"_count": 1}}, "people": {"_count": 1, "to": {"_count": 1}}, "every": {"_count": 1, "detail": {"_count": 1}}, "posters": {"_count": 1, "": {"_count": 1}}, "person": {"_count": 1, "in": {"_count": 1}}, "somewhere": {"_count": 1, "enclosed": {"_count": 1}}, "something": {"_count": 1, "from": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "then": {"_count": 1, "Vernon": {"_count": 1}}, "elves": {"_count": 1, "to": {"_count": 1}}, "Ginny": {"_count": 1, "to": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "glory": {"_count": 1, "": {"_count": 1}}}, "but": {"_count": 4291, "they": {"_count": 94, "also": {"_count": 1}, "hadnt": {"_count": 1}, "had": {"_count": 8}, "made": {"_count": 2}, "werent": {"_count": 4}, "got": {"_count": 1}, "dont": {"_count": 5}, "still": {"_count": 1}, "couldnt": {"_count": 4}, "caught": {"_count": 1}, "were": {"_count": 21}, "hardly": {"_count": 1}, "didnt": {"_count": 4}, "cant": {"_count": 1}, "cowered": {"_count": 1}, "are": {"_count": 2}, "said": {"_count": 2}, "ran": {"_count": 1}, "knew": {"_count": 1}, "thought": {"_count": 1}, "havent": {"_count": 1}, "did": {"_count": 5}, "hoped": {"_count": 1}, "could": {"_count": 1}, "wanted": {"_count": 1}, "laughed": {"_count": 1}, "really": {"_count": 1}, "concerned": {"_count": 1}, "um": {"_count": 1}, "would": {"_count": 2}, "told": {"_count": 1}, "make": {"_count": 1}, "was": {"_count": 1}, "found": {"_count": 1}, "can": {"_count": 1}, "do": {"_count": 1}, "took": {"_count": 1}, "managed": {"_count": 1}, "have": {"_count": 1}, "fell": {"_count": 1}, "and": {"_count": 1}, "missed": {"_count": 1}, "cannot": {"_count": 1}, "exist": {"_count": 1}, "wont": {"_count": 1}, "two": {"_count": 1}}, "missed": {"_count": 4, "because": {"_count": 1}, "Scabbers": {"_count": 1}, "and": {"_count": 1}, "instead": {"_count": 1}}, "there": {"_count": 85, "wasnt": {"_count": 3}, "was": {"_count": 57}, "seemed": {"_count": 1}, "have": {"_count": 3}, "were": {"_count": 4}, "you": {"_count": 3}, "is": {"_count": 5}, "did": {"_count": 1}, "it": {"_count": 1}, "are": {"_count": 2}, "seems": {"_count": 1}, "must": {"_count": 1}, "again": {"_count": 1}, "might": {"_count": 1}, "would": {"_count": 1}}, "thought": {"_count": 8, "better": {"_count": 2}, "it": {"_count": 3}, "that": {"_count": 2}, "his": {"_count": 1}}, "all": {"_count": 29, "the": {"_count": 12}, "he": {"_count": 2}, "were": {"_count": 2}, "three": {"_count": 2}, "it": {"_count": 1}, "bearing": {"_count": 1}, "that": {"_count": 5}, "they": {"_count": 2}, "of": {"_count": 1}, "was": {"_count": 1}}, "its": {"_count": 38, "not": {"_count": 7}, "incredible": {"_count": 1}, "all": {"_count": 2}, "like": {"_count": 1}, "dull": {"_count": 1}, "a": {"_count": 3}, "only": {"_count": 2}, "caved": {"_count": 1}, "them": {"_count": 1}, "way": {"_count": 1}, "beam": {"_count": 1}, "an": {"_count": 1}, "for": {"_count": 1}, "been": {"_count": 1}, "rather": {"_count": 1}, "worth": {"_count": 1}, "never": {"_count": 1}, "Ministry": {"_count": 1}, "very": {"_count": 1}, "great": {"_count": 1}, "in": {"_count": 1}, "about": {"_count": 1}, "just": {"_count": 1}, "tricky": {"_count": 1}, "im": {"_count": 1}, "us": {"_count": 1}, "the": {"_count": 1}, "treelike": {"_count": 1}}, "Mr": {"_count": 9, "Dursley": {"_count": 1}, "Ollivander": {"_count": 1}, "and": {"_count": 1}, "Roberts": {"_count": 1}, "Weasley": {"_count": 3}, "Diggory": {"_count": 1}, "Weasleys": {"_count": 1}}, "the": {"_count": 238, "cat": {"_count": 1}, "snake": {"_count": 2}, "empty": {"_count": 1}, "words": {"_count": 1}, "more": {"_count": 4}, "guard": {"_count": 1}, "woman": {"_count": 1}, "spell": {"_count": 3}, "girl": {"_count": 1}, "family": {"_count": 1}, "feather": {"_count": 1}, "expression": {"_count": 1}, "shriek": {"_count": 1}, "only": {"_count": 3}, "way": {"_count": 2}, "rustling": {"_count": 1}, "truth": {"_count": 2}, "moment": {"_count": 6}, "bewitched": {"_count": 1}, "ropes": {"_count": 1}, "next": {"_count": 3}, "foodll": {"_count": 1}, "gnome": {"_count": 1}, "little": {"_count": 1}, "whirl": {"_count": 1}, "attack": {"_count": 1}, "Slytherins": {"_count": 2}, "Bludger": {"_count": 1}, "rogue": {"_count": 1}, "pain": {"_count": 1}, "Sorting": {"_count": 1}, "dwarf": {"_count": 1}, "huge": {"_count": 1}, "fire": {"_count": 3}, "governors": {"_count": 1}, "cupboard": {"_count": 1}, "car": {"_count": 1}, "greatest": {"_count": 1}, "longer": {"_count": 1}, "thought": {"_count": 3}, "swelling": {"_count": 1}, "rest": {"_count": 3}, "street": {"_count": 1}, "blade": {"_count": 1}, "front": {"_count": 1}, "worst": {"_count": 1}, "hippogriff": {"_count": 1}, "password": {"_count": 1}, "damage": {"_count": 2}, "rat": {"_count": 1}, "footsteps": {"_count": 1}, "best": {"_count": 3}, "Harry": {"_count": 1}, "cold": {"_count": 2}, "trouble": {"_count": 1}, "others": {"_count": 2}, "blue": {"_count": 1}, "sound": {"_count": 2}, "grounds": {"_count": 2}, "Triwizard": {"_count": 1}, "man": {"_count": 1}, "lure": {"_count": 1}, "mere": {"_count": 2}, "hair": {"_count": 1}, "most": {"_count": 2}, "tail": {"_count": 1}, "cut": {"_count": 1}, "elves": {"_count": 1}, "reduction": {"_count": 1}, "beetle": {"_count": 1}, "peculiar": {"_count": 1}, "odd": {"_count": 1}, "rippling": {"_count": 1}, "merman": {"_count": 1}, "mermen": {"_count": 1}, "Bertha": {"_count": 1}, "owl": {"_count": 1}, "atmosphere": {"_count": 2}, "lack": {"_count": 1}, "increasing": {"_count": 1}, "potion": {"_count": 1}, "means": {"_count": 1}, "shadowy": {"_count": 1}, "heavy": {"_count": 1}, "memories": {"_count": 1}, "look": {"_count": 1}, "baggagehandlers": {"_count": 1}, "darkness": {"_count": 1}, "Dursleys": {"_count": 1}, "cats": {"_count": 1}, "general": {"_count": 1}, "mess": {"_count": 1}, "silence": {"_count": 1}, "presence": {"_count": 1}, "whole": {"_count": 2}, "sobbing": {"_count": 1}, "black": {"_count": 1}, "salamanders": {"_count": 1}, "memory": {"_count": 1}, "sky": {"_count": 1}, "world": {"_count": 1}, "grades": {"_count": 1}, "real": {"_count": 1}, "point": {"_count": 1}, "flood": {"_count": 1}, "other": {"_count": 4}, "whereabouts": {"_count": 1}, "voice": {"_count": 1}, "laughter": {"_count": 1}, "subject": {"_count": 1}, "door": {"_count": 1}, "students": {"_count": 2}, "houseelves": {"_count": 1}, "four": {"_count": 1}, "jinx": {"_count": 1}, "approaching": {"_count": 1}, "chair": {"_count": 1}, "problem": {"_count": 1}, "O": {"_count": 1}, "one": {"_count": 1}, "centaurs": {"_count": 1}, "horse": {"_count": 1}, "nearest": {"_count": 1}, "veil": {"_count": 1}, "force": {"_count": 1}, "Shield": {"_count": 1}, "rightful": {"_count": 1}, "halfblood": {"_count": 1}, "eyes": {"_count": 1}, "Department": {"_count": 1}, "gesture": {"_count": 1}, "evidence": {"_count": 1}, "idea": {"_count": 4}, "fact": {"_count": 2}, "hedgerows": {"_count": 1}, "lessons": {"_count": 1}, "ring": {"_count": 1}, "mouth": {"_count": 1}, "birds": {"_count": 1}, "top": {"_count": 1}, "face": {"_count": 1}, "Potions": {"_count": 1}, "view": {"_count": 1}, "source": {"_count": 2}, "crystal": {"_count": 1}, "Inferi": {"_count": 1}, "sight": {"_count": 1}, "birdsong": {"_count": 1}, "Death": {"_count": 5}, "wall": {"_count": 1}, "fourth": {"_count": 1}, "companion": {"_count": 1}, "hug": {"_count": 1}, "owner": {"_count": 1}, "Orders": {"_count": 1}, "Dark": {"_count": 1}, "elf": {"_count": 1}, "Order": {"_count": 1}, "thing": {"_count": 1}, "bag": {"_count": 1}, "doorway": {"_count": 1}, "cascading": {"_count": 1}, "right": {"_count": 1}, "cauldrons": {"_count": 1}, "doe": {"_count": 1}, "sword": {"_count": 2}, "shock": {"_count": 1}, "RiddleHarry": {"_count": 1}, "names": {"_count": 1}, "Third": {"_count": 1}, "golden": {"_count": 1}, "walls": {"_count": 1}, "conquered": {"_count": 1}, "Imperiused": {"_count": 1}, "copies": {"_count": 1}, "tips": {"_count": 1}, "dragon": {"_count": 1}, "question": {"_count": 1}, "lost": {"_count": 1}, "witch": {"_count": 1}, "swiftness": {"_count": 1}, "great": {"_count": 1}, "jet": {"_count": 1}, "duelers": {"_count": 1}, "sounds": {"_count": 1}, "Cloak": {"_count": 1}, "swarm": {"_count": 1}, "enormous": {"_count": 1}, "last": {"_count": 1}}, "after": {"_count": 18, "a": {"_count": 7}, "making": {"_count": 1}, "all": {"_count": 5}, "Hermione": {"_count": 1}, "walking": {"_count": 1}, "the": {"_count": 1}, "muttering": {"_count": 1}, "examining": {"_count": 1}}, "it": {"_count": 207, "had": {"_count": 14}, "made": {"_count": 7}, "wasnt": {"_count": 13}, "didnt": {"_count": 7}, "snapped": {"_count": 1}, "was": {"_count": 73}, "tightened": {"_count": 1}, "hadnt": {"_count": 2}, "wont": {"_count": 4}, "heard": {"_count": 1}, "wouldnt": {"_count": 2}, "seemed": {"_count": 7}, "passed": {"_count": 1}, "will": {"_count": 1}, "couldnt": {"_count": 2}, "all": {"_count": 2}, "could": {"_count": 2}, "looks": {"_count": 2}, "would": {"_count": 7}, "cannot": {"_count": 1}, "looked": {"_count": 1}, "kept": {"_count": 1}, "gave": {"_count": 1}, "certainly": {"_count": 1}, "always": {"_count": 1}, "takes": {"_count": 1}, "continued": {"_count": 1}, "seems": {"_count": 2}, "sounded": {"_count": 1}, "merely": {"_count": 1}, "is": {"_count": 3}, "did": {"_count": 12}, "burned": {"_count": 1}, "appeared": {"_count": 1}, "soared": {"_count": 1}, "says": {"_count": 2}, "must": {"_count": 1}, "hasnt": {"_count": 1}, "decided": {"_count": 1}, "werent": {"_count": 1}, "appears": {"_count": 1}, "comes": {"_count": 1}, "took": {"_count": 2}, "missed": {"_count": 1}, "remained": {"_count": 1}, "lives": {"_count": 1}, "might": {"_count": 2}, "sounds": {"_count": 1}, "slipped": {"_count": 1}, "turned": {"_count": 1}, "felt": {"_count": 2}, "feels": {"_count": 1}, "also": {"_count": 2}, "isnt": {"_count": 1}, "affects": {"_count": 1}, "does": {"_count": 1}, "cant": {"_count": 1}, "repulsed": {"_count": 1}}, "no": {"_count": 46, "even": {"_count": 1}, "numbers": {"_count": 1}, "words": {"_count": 3}, "you": {"_count": 1}, "sound": {"_count": 5}, "luck": {"_count": 1}, "ones": {"_count": 1}, "noise": {"_count": 1}, "amount": {"_count": 1}, "one": {"_count": 3}, "flying": {"_count": 1}, "doubt": {"_count": 1}, "horrible": {"_count": 1}, "brains": {"_count": 1}, "matter": {"_count": 3}, "sooner": {"_count": 2}, "": {"_count": 3}, "there": {"_count": 1}, "time": {"_count": 1}, "hint": {"_count": 1}, "I": {"_count": 1}, "Tom": {"_count": 1}, "more": {"_count": 2}, "purpose": {"_count": 1}, "sign": {"_count": 2}, "thanks": {"_count": 1}, "redhaired": {"_count": 1}, "less": {"_count": 2}, "collision": {"_count": 1}, "pressure": {"_count": 1}}, "he": {"_count": 421, "didnt": {"_count": 17}, "couldnt": {"_count": 16}, "was": {"_count": 60}, "knew": {"_count": 17}, "still": {"_count": 12}, "kept": {"_count": 5}, "had": {"_count": 39}, "blinked": {"_count": 2}, "did": {"_count": 36}, "thought": {"_count": 3}, "doesnt": {"_count": 4}, "fell": {"_count": 1}, "wasnt": {"_count": 10}, "looked": {"_count": 3}, "seemed": {"_count": 5}, "wouldnt": {"_count": 3}, "cant": {"_count": 1}, "must": {"_count": 2}, "felt": {"_count": 10}, "shouldnt": {"_count": 2}, "wished": {"_count": 2}, "drank": {"_count": 1}, "caught": {"_count": 1}, "barely": {"_count": 1}, "never": {"_count": 3}, "stayed": {"_count": 1}, "gave": {"_count": 2}, "could": {"_count": 28}, "too": {"_count": 3}, "ended": {"_count": 1}, "knows": {"_count": 1}, "cared": {"_count": 1}, "put": {"_count": 1}, "met": {"_count": 1}, "and": {"_count": 1}, "returned": {"_count": 1}, "insists": {"_count": 1}, "agreed": {"_count": 1}, "turned": {"_count": 1}, "simply": {"_count": 3}, "always": {"_count": 2}, "left": {"_count": 1}, "said": {"_count": 1}, "shoved": {"_count": 1}, "likes": {"_count": 1}, "lit": {"_count": 1}, "avoided": {"_count": 1}, "mustnt": {"_count": 1}, "stood": {"_count": 1}, "clung": {"_count": 1}, "is": {"_count": 4}, "hadnt": {"_count": 4}, "merely": {"_count": 5}, "really": {"_count": 2}, "trapped": {"_count": 1}, "just": {"_count": 6}, "got": {"_count": 3}, "appreciated": {"_count": 1}, "supposed": {"_count": 1}, "wants": {"_count": 2}, "isnt": {"_count": 1}, "deduced": {"_count": 1}, "quickly": {"_count": 1}, "died": {"_count": 1}, "somehow": {"_count": 1}, "ignored": {"_count": 3}, "wiped": {"_count": 1}, "can": {"_count": 1}, "held": {"_count": 1}, "might": {"_count": 2}, "remembered": {"_count": 1}, "moved": {"_count": 1}, "paused": {"_count": 1}, "now": {"_count": 1}, "clutched": {"_count": 1}, "seems": {"_count": 1}, "smirked": {"_count": 1}, "slammed": {"_count": 1}, "would": {"_count": 2}, "advised": {"_count": 1}, "overheard": {"_count": 1}, "tried": {"_count": 1}, "fancied": {"_count": 1}, "says": {"_count": 2}, "actually": {"_count": 1}, "hasnt": {"_count": 1}, "shook": {"_count": 2}, "don": {"_count": 1}, "kep": {"_count": 1}, "rather": {"_count": 1}, "saw": {"_count": 1}, "resisted": {"_count": 1}, "shouted": {"_count": 1}, "will": {"_count": 2}, "drifted": {"_count": 1}, "sat": {"_count": 1}, "wont": {"_count": 4}, "yelled": {"_count": 1}, "contented": {"_count": 1}, "pushed": {"_count": 1}, "smiled": {"_count": 1}, "filled": {"_count": 1}, "answered": {"_count": 2}, "may": {"_count": 1}, "need": {"_count": 1}, "cannot": {"_count": 1}, "also": {"_count": 1}, "found": {"_count": 1}, "trusted": {"_count": 1}, "Disapparated": {"_count": 1}, "nods": {"_count": 1}, "he": {"_count": 1}, "believes": {"_count": 1}, "nearly": {"_count": 1}, "continued": {"_count": 1}, "shrugged": {"_count": 2}, "forced": {"_count": 1}, "fought": {"_count": 1}, "made": {"_count": 2}, "struggled": {"_count": 1}, "wanted": {"_count": 1}, "neednt": {"_count": 1}, "lay": {"_count": 2}, "Harry": {"_count": 1}}, "Dumbledore": {"_count": 33, "who": {"_count": 1}, "thinks": {"_count": 1}, "asked": {"_count": 1}, "smiled": {"_count": 1}, "put": {"_count": 1}, "merely": {"_count": 3}, "took": {"_count": 1}, "raised": {"_count": 2}, "moved": {"_count": 1}, "made": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 7}, "bellowed": {"_count": 1}, "ignored": {"_count": 1}, "said": {"_count": 1}, "has": {"_count": 1}, "s": {"_count": 1}, "knew": {"_count": 1}, "cut": {"_count": 1}, "went": {"_count": 1}, "had": {"_count": 1}, "seemed": {"_count": 1}, "told": {"_count": 1}, "is": {"_count": 1}}, "theyre": {"_count": 8, "saying": {"_count": 1}, "not": {"_count": 2}, "good": {"_count": 1}, "going": {"_count": 1}, "scared": {"_count": 1}, "wasting": {"_count": 1}, "a": {"_count": 1}}, "how": {"_count": 14, "in": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 1}, "else": {"_count": 1}, "dyeh": {"_count": 1}, "could": {"_count": 3}, "he": {"_count": 1}, "soon": {"_count": 1}, "do": {"_count": 2}, "did": {"_count": 1}, "am": {"_count": 1}}, "you": {"_count": 60, "cant": {"_count": 4}, "could": {"_count": 1}, "do": {"_count": 4}, "Dont": {"_count": 1}, "know": {"_count": 3}, "still": {"_count": 1}, "didnt": {"_count": 2}, "wouldnt": {"_count": 3}, "said": {"_count": 2}, "can": {"_count": 6}, "say": {"_count": 1}, "seem": {"_count": 2}, "unlike": {"_count": 1}, "have": {"_count": 1}, "get": {"_count": 1}, "dont": {"_count": 1}, "like": {"_count": 1}, "will": {"_count": 1}, "were": {"_count": 5}, "told": {"_count": 2}, "just": {"_count": 1}, "must": {"_count": 3}, "cannot": {"_count": 1}, "may": {"_count": 1}, "see": {"_count": 1}, "had": {"_count": 1}, "want": {"_count": 1}, "stuck": {"_count": 1}, "wont": {"_count": 1}, "go": {"_count": 1}, "made": {"_count": 1}, "look": {"_count": 1}, "are": {"_count": 1}, "youve": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 200, "got": {"_count": 1}, "still": {"_count": 5}, "never": {"_count": 4}, "don": {"_count": 1}, "suppose": {"_count": 7}, "er": {"_count": 1}, "know": {"_count": 4}, "bet": {"_count": 3}, "dont": {"_count": 19}, "cant": {"_count": 8}, "havent": {"_count": 7}, "was": {"_count": 12}, "think": {"_count": 22}, "warned": {"_count": 2}, "hope": {"_count": 2}, "warn": {"_count": 1}, "reckon": {"_count": 1}, "daresay": {"_count": 3}, "couldnt": {"_count": 5}, "personally": {"_count": 1}, "admit": {"_count": 1}, "c": {"_count": 1}, "I": {"_count": 1}, "perceive": {"_count": 1}, "assure": {"_count": 1}, "need": {"_count": 3}, "gotta": {"_count": 1}, "am": {"_count": 9}, "thought": {"_count": 7}, "do": {"_count": 3}, "promise": {"_count": 1}, "like": {"_count": 2}, "is": {"_count": 1}, "hate": {"_count": 1}, "tell": {"_count": 1}, "will": {"_count": 3}, "just": {"_count": 3}, "vowed": {"_count": 1}, "waited": {"_count": 1}, "doubt": {"_count": 2}, "have": {"_count": 2}, "must": {"_count": 1}, "didnt": {"_count": 3}, "wanted": {"_count": 1}, "ad": {"_count": 1}, "only": {"_count": 1}, "want": {"_count": 3}, "feel": {"_count": 2}, "made": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 5}, "promised": {"_count": 1}, "wasnt": {"_count": 1}, "won": {"_count": 1}, "dunno": {"_count": 1}, "care": {"_count": 1}, "would": {"_count": 3}, "meant": {"_count": 1}, "cannot": {"_count": 1}, "assume": {"_count": 1}, "believe": {"_count": 2}, "suggest": {"_count": 1}, "can": {"_count": 2}, "needed": {"_count": 1}, "darent": {"_count": 1}, "walked": {"_count": 1}, "swear": {"_count": 1}, "hardly": {"_count": 1}, "beg": {"_count": 1}, "detest": {"_count": 1}, "could": {"_count": 2}, "closed": {"_count": 1}}, "get": {"_count": 1, "a": {"_count": 1}}, "Privet": {"_count": 1, "Drive": {"_count": 1}}, "Dudley": {"_count": 5, "Dursley": {"_count": 1}, "had": {"_count": 1}, "seemed": {"_count": 1}, "did": {"_count": 2}}, "not": {"_count": 41, "for": {"_count": 1}, "done": {"_count": 1}, "many": {"_count": 1}, "expecting": {"_count": 1}, "to": {"_count": 5}, "use": {"_count": 1}, "quickly": {"_count": 1}, "before": {"_count": 5}, "very": {"_count": 1}, "loudly": {"_count": 1}, "as": {"_count": 2}, "really": {"_count": 1}, "say": {"_count": 1}, "nearly": {"_count": 1}, "stupid": {"_count": 1}, "talking": {"_count": 1}, "quite": {"_count": 1}, "so": {"_count": 1}, "daring": {"_count": 2}, "today": {"_count": 1}, "unheard": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "altogether": {"_count": 1}, "transformed": {"_count": 1}, "ze": {"_count": 1}, "trusted": {"_count": 1}, "be": {"_count": 1}, "Harry": {"_count": 1}, "going": {"_count": 1}, "by": {"_count": 1}}, "Harry": {"_count": 165, "had": {"_count": 20}, "leapt": {"_count": 1}, "stayed": {"_count": 1}, "instead": {"_count": 1}, "couldnt": {"_count": 5}, "didnt": {"_count": 5}, "and": {"_count": 6}, "hissed": {"_count": 1}, "could": {"_count": 10}, "dodged": {"_count": 1}, "was": {"_count": 24}, "headed": {"_count": 1}, "swore": {"_count": 1}, "suddenly": {"_count": 1}, "sprinting": {"_count": 1}, "cut": {"_count": 2}, "shook": {"_count": 1}, "by": {"_count": 1}, "Potter": {"_count": 1}, "felt": {"_count": 5}, "pulled": {"_count": 3}, "found": {"_count": 2}, "understood": {"_count": 2}, "hardly": {"_count": 2}, "still": {"_count": 1}, "stuck": {"_count": 1}, "Ron": {"_count": 3}, "wanted": {"_count": 1}, "be": {"_count": 1}, "knew": {"_count": 8}, "noticed": {"_count": 2}, "returned": {"_count": 1}, "appreciated": {"_count": 1}, "who": {"_count": 2}, "wouldnt": {"_count": 1}, "distinctly": {"_count": 1}, "remained": {"_count": 1}, "whose": {"_count": 1}, "glancing": {"_count": 2}, "now": {"_count": 1}, "merely": {"_count": 2}, "jerked": {"_count": 1}, "continued": {"_count": 1}, "cast": {"_count": 1}, "spent": {"_count": 1}, "did": {"_count": 5}, "would": {"_count": 2}, "thought": {"_count": 4}, "jabbed": {"_count": 1}, "laughed": {"_count": 1}, "caught": {"_count": 1}, "seized": {"_count": 1}, "delved": {"_count": 1}, "": {"_count": 2}, "does": {"_count": 1}, "saw": {"_count": 3}, "lost": {"_count": 1}, "said": {"_count": 2}, "bellowed": {"_count": 1}, "if": {"_count": 1}, "decided": {"_count": 1}, "ached": {"_count": 1}, "disliked": {"_count": 1}, "wheeled": {"_count": 1}, "made": {"_count": 1}, "no": {"_count": 1}}, "Harrys": {"_count": 6, "heart": {"_count": 1}, "Tshirt": {"_count": 1}, "ears": {"_count": 1}, "spirits": {"_count": 1}, "eyes": {"_count": 1}, "scar": {"_count": 1}}, "before": {"_count": 50, "theyd": {"_count": 1}, "hed": {"_count": 4}, "you": {"_count": 1}, "he": {"_count": 25}, "they": {"_count": 5}, "she": {"_count": 5}, "Hermione": {"_count": 1}, "the": {"_count": 2}, "either": {"_count": 2}, "leaving": {"_count": 1}, "Harry": {"_count": 3}}, "certainly": {"_count": 2, "wouldnt": {"_count": 1}, "not": {"_count": 1}}, "at": {"_count": 47, "the": {"_count": 13}, "that": {"_count": 10}, "first": {"_count": 1}, "others": {"_count": 2}, "a": {"_count": 2}, "Harrys": {"_count": 1}, "Neville": {"_count": 1}, "least": {"_count": 10}, "Ron": {"_count": 1}, "Cho": {"_count": 1}, "Harry": {"_count": 1}, "Snape": {"_count": 1}, "these": {"_count": 1}, "her": {"_count": 1}, "school": {"_count": 1}}, "by": {"_count": 11, "the": {"_count": 3}, "asking": {"_count": 1}, "large": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "all": {"_count": 1}, "midday": {"_count": 1}, "and": {"_count": 1}, "Moaning": {"_count": 1}}, "as": {"_count": 65, "Dudley": {"_count": 1}, "he": {"_count": 19}, "the": {"_count": 5}, "they": {"_count": 6}, "Ron": {"_count": 1}, "long": {"_count": 3}, "its": {"_count": 1}, "Im": {"_count": 1}, "Harry": {"_count": 4}, "loudly": {"_count": 1}, "none": {"_count": 1}, "we": {"_count": 1}, "youve": {"_count": 1}, "she": {"_count": 4}, "you": {"_count": 2}, "Professor": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 3}, "normal": {"_count": 1}, "there": {"_count": 1}, "Hermione": {"_count": 2}, "a": {"_count": 1}, "before": {"_count": 1}, "nothing": {"_count": 1}, "far": {"_count": 1}, "Kendra": {"_count": 1}}, "Uncle": {"_count": 7, "Vernon": {"_count": 6}, "Vernons": {"_count": 1}}, "silent": {"_count": 1, "fight": {"_count": 1}}, "happy": {"_count": 1, "": {"_count": 1}}, "pulling": {"_count": 1, "great": {"_count": 1}}, "is": {"_count": 1, "one": {"_count": 1}}, "yehve": {"_count": 1, "got": {"_count": 1}}, "itll": {"_count": 4, "taste": {"_count": 1}, "take": {"_count": 1}, "be": {"_count": 1}, "go": {"_count": 1}}, "when": {"_count": 33, "he": {"_count": 10}, "she": {"_count": 5}, "youre": {"_count": 1}, "I": {"_count": 4}, "they": {"_count": 5}, "Moody": {"_count": 1}, "you": {"_count": 1}, "Snape": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "we": {"_count": 1}, "Ron": {"_count": 1}}, "looking": {"_count": 7, "very": {"_count": 1}, "worried": {"_count": 1}, "through": {"_count": 1}, "down": {"_count": 1}, "back": {"_count": 1}, "horrified": {"_count": 1}, "more": {"_count": 1}}, "someones": {"_count": 1, "gotta": {"_count": 1}}, "lost": {"_count": 1, "his": {"_count": 1}}, "somethin": {"_count": 1, "about": {"_count": 1}}, "pockets": {"_count": 1, "bunches": {"_count": 1}}, "well": {"_count": 11, "go": {"_count": 3}, "you": {"_count": 1}, "get": {"_count": 1}, "as": {"_count": 1}, "they": {"_count": 1}, "need": {"_count": 1}, "send": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}}, "hed": {"_count": 5, "never": {"_count": 2}, "forgotten": {"_count": 1}, "be": {"_count": 2}}, "nowhere": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 64, "trash": {"_count": 1}, "Gringotts": {"_count": 1}, "pink": {"_count": 1}, "moment": {"_count": 2}, "whole": {"_count": 1}, "door": {"_count": 2}, "halflife": {"_count": 1}, "voice": {"_count": 1}, "smoldering": {"_count": 1}, "cat": {"_count": 1}, "scar": {"_count": 1}, "large": {"_count": 2}, "heavy": {"_count": 1}, "horrible": {"_count": 1}, "blinding": {"_count": 1}, "lightningshaped": {"_count": 1}, "scream": {"_count": 1}, "vague": {"_count": 1}, "wizard": {"_count": 1}, "very": {"_count": 2}, "nasty": {"_count": 1}, "great": {"_count": 2}, "Ludo": {"_count": 1}, "defiant": {"_count": 1}, "years": {"_count": 1}, "split": {"_count": 2}, "pair": {"_count": 1}, "second": {"_count": 1}, "guilty": {"_count": 1}, "pass": {"_count": 1}, "backdrop": {"_count": 1}, "particularly": {"_count": 1}, "highly": {"_count": 1}, "spokeswizard": {"_count": 1}, "cutting": {"_count": 1}, "torch": {"_count": 1}, "soap": {"_count": 1}, "stretch": {"_count": 2}, "persistent": {"_count": 1}, "trick": {"_count": 2}, "couple": {"_count": 2}, "whiff": {"_count": 1}, "fat": {"_count": 1}, "lethal": {"_count": 1}, "smelly": {"_count": 1}, "few": {"_count": 1}, "curious": {"_count": 1}, "Snitch": {"_count": 1}, "frowning": {"_count": 1}, "painting": {"_count": 1}, "wand": {"_count": 1}, "plain": {"_count": 1}, "number": {"_count": 1}, "dull": {"_count": 1}, "boy": {"_count": 1}}, "then": {"_count": 56, "he": {"_count": 9}, "you": {"_count": 2}, "dropped": {"_count": 1}, "I": {"_count": 3}, "Hedwig": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 4}, "as": {"_count": 1}, "she": {"_count": 4}, "realized": {"_count": 2}, "Ron": {"_count": 2}, "poked": {"_count": 1}, "it": {"_count": 4}, "how": {"_count": 1}, "heard": {"_count": 1}, "Professor": {"_count": 1}, "his": {"_count": 1}, "fumbled": {"_count": 1}, "brightened": {"_count": 1}, "lay": {"_count": 1}, "why": {"_count": 1}, "Fang": {"_count": 1}, "turned": {"_count": 1}, "something": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}, "spotted": {"_count": 1}, "with": {"_count": 1}, "Hermione": {"_count": 1}, "there": {"_count": 1}, "would": {"_count": 1}}, "we": {"_count": 40, "gotta": {"_count": 1}, "never": {"_count": 2}, "feel": {"_count": 1}, "got": {"_count": 2}, "decided": {"_count": 2}, "cant": {"_count": 4}, "have": {"_count": 2}, "really": {"_count": 1}, "will": {"_count": 1}, "couldnt": {"_count": 1}, "think": {"_count": 4}, "dont": {"_count": 2}, "won": {"_count": 1}, "did": {"_count": 2}, "had": {"_count": 1}, "needed": {"_count": 1}, "happen": {"_count": 1}, "are": {"_count": 1}, "do": {"_count": 2}, "must": {"_count": 1}, "cannot": {"_count": 2}, "didnt": {"_count": 2}, "can": {"_count": 1}, "could": {"_count": 1}, "need": {"_count": 1}}, "take": {"_count": 1, "heed": {"_count": 1}}, "do": {"_count": 6, "not": {"_count": 4}, "you": {"_count": 1}, "nothing": {"_count": 1}}, "too": {"_count": 9, "late": {"_count": 9}}, "Hagrid": {"_count": 14, "groaned": {"_count": 1}, "understood": {"_count": 1}, "went": {"_count": 1}, "stood": {"_count": 1}, "ran": {"_count": 1}, "had": {"_count": 4}, "shook": {"_count": 1}, "was": {"_count": 1}, "merely": {"_count": 1}, "scowling": {"_count": 1}, "overrode": {"_count": 1}}, "knew": {"_count": 4, "better": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}, "it": {"_count": 1}}, "yer": {"_count": 1, "not": {"_count": 1}}, "whats": {"_count": 5, "curious": {"_count": 1}, "the": {"_count": 2}, "wrong": {"_count": 1}, "up": {"_count": 1}}, "great": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 13, "dare": {"_count": 1}, "do": {"_count": 1}, "seem": {"_count": 1}, "eat": {"_count": 1}, "start": {"_count": 1}, "say": {"_count": 2}, "pause": {"_count": 1}, "voice": {"_count": 1}, "believe": {"_count": 1}, "use": {"_count": 1}, "know": {"_count": 1}, "want": {"_count": 1}}, "just": {"_count": 9, "as": {"_count": 4}, "then": {"_count": 4}, "in": {"_count": 1}}, "could": {"_count": 12, "hardly": {"_count": 1}, "no": {"_count": 1}, "be": {"_count": 1}, "smell": {"_count": 1}, "still": {"_count": 1}, "not": {"_count": 5}, "see": {"_count": 1}, "you": {"_count": 1}}, "she": {"_count": 84, "grabbed": {"_count": 1}, "was": {"_count": 13}, "couldnt": {"_count": 2}, "kept": {"_count": 3}, "didnt": {"_count": 6}, "had": {"_count": 8}, "agreed": {"_count": 1}, "wasnt": {"_count": 3}, "looked": {"_count": 5}, "merely": {"_count": 2}, "still": {"_count": 2}, "packed": {"_count": 1}, "too": {"_count": 1}, "hid": {"_count": 1}, "flinched": {"_count": 1}, "clicked": {"_count": 1}, "hadnt": {"_count": 1}, "just": {"_count": 3}, "wont": {"_count": 2}, "told": {"_count": 1}, "seemed": {"_count": 2}, "hitched": {"_count": 1}, "said": {"_count": 1}, "ignored": {"_count": 1}, "drafted": {"_count": 1}, "gave": {"_count": 1}, "shook": {"_count": 2}, "made": {"_count": 1}, "did": {"_count": 5}, "wastes": {"_count": 1}, "deflected": {"_count": 1}, "never": {"_count": 1}, "could": {"_count": 2}, "took": {"_count": 2}, "thinks": {"_count": 1}, "appealed": {"_count": 1}, "also": {"_count": 1}, "closed": {"_count": 1}}, "nothing": {"_count": 24, "else": {"_count": 2}, "happened": {"_count": 10}, "worse": {"_count": 1}, "in": {"_count": 2}, "was": {"_count": 2}, "came": {"_count": 2}, "she": {"_count": 1}, "more": {"_count": 1}, "moved": {"_count": 1}, "nothing": {"_count": 1}, "flew": {"_count": 1}}, "if": {"_count": 40, "I": {"_count": 2}, "we": {"_count": 3}, "somethings": {"_count": 1}, "you": {"_count": 8}, "he": {"_count": 3}, "Karkaroffs": {"_count": 1}, "angered": {"_count": 1}, "Fawkes": {"_count": 1}, "Ginny": {"_count": 1}, "the": {"_count": 1}, "You": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 3}, "she": {"_count": 2}, "Fred": {"_count": 1}, "hes": {"_count": 1}, "Ron": {"_count": 1}, "there": {"_count": 1}, "Snape": {"_count": 1}, "what": {"_count": 1}, "Dumbledore": {"_count": 1}, "Gregorovitch": {"_count": 1}, "my": {"_count": 1}, "Voldemort": {"_count": 1}, "not": {"_count": 1}}, "Rons": {"_count": 3, "ears": {"_count": 1}, "face": {"_count": 1}, "was": {"_count": 1}}, "Hengist": {"_count": 1, "of": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 1}, "yeh": {"_count": 1}}, "this": {"_count": 34, "time": {"_count": 8}, "years": {"_count": 1}, "didnt": {"_count": 1}, "isnt": {"_count": 1}, "was": {"_count": 4}, "class": {"_count": 1}, "is": {"_count": 9}, "room": {"_count": 1}, "one": {"_count": 2}, "uncharacteristic": {"_count": 1}, "strategy": {"_count": 1}, "seemed": {"_count": 1}, "did": {"_count": 1}, "": {"_count": 1}, "wand": {"_count": 1}}, "imagine": {"_count": 2, "if": {"_count": 1}, "trying": {"_count": 1}}, "Professor": {"_count": 12, "McGonagall": {"_count": 5}, "Binns": {"_count": 1}, "Lupins": {"_count": 1}, "Trelawney": {"_count": 1}, "Flitwick": {"_count": 1}, "Umbridge": {"_count": 1}, "Marchbanks": {"_count": 1}, "Sprout": {"_count": 1}}, "Brown": {"_count": 1, "Lavender": {"_count": 1}}, "because": {"_count": 3, "no": {"_count": 1}, "groups": {"_count": 1}, "of": {"_count": 1}}, "one": {"_count": 7, "does": {"_count": 1}, "month": {"_count": 1}, "quick": {"_count": 1}, "Bertha": {"_count": 1}, "of": {"_count": 3}}, "sandyhaired": {"_count": 1, "Seamus": {"_count": 1}}, "Snape": {"_count": 20, "didnt": {"_count": 1}, "": {"_count": 1}, "wouldn": {"_count": 1}, "called": {"_count": 1}, "led": {"_count": 1}, "reached": {"_count": 1}, "took": {"_count": 1}, "seemed": {"_count": 1}, "overrode": {"_count": 1}, "pointed": {"_count": 1}, "for": {"_count": 1}, "hadnt": {"_count": 1}, "merely": {"_count": 1}, "forestalled": {"_count": 1}, "cut": {"_count": 1}, "had": {"_count": 3}, "blocked": {"_count": 1}, "deflected": {"_count": 1}}, "only": {"_count": 10, "because": {"_count": 1}, "bringing": {"_count": 1}, "bubbles": {"_count": 1}, "two": {"_count": 1}, "so": {"_count": 1}, "feeble": {"_count": 1}, "to": {"_count": 1}, "rage": {"_count": 1}, "Voldemorts": {"_count": 1}, "Harry": {"_count": 1}}, "solid": {"_count": 1, "walls": {"_count": 1}}, "Peeves": {"_count": 4, "the": {"_count": 1}, "turned": {"_count": 1}, "merely": {"_count": 1}, "who": {"_count": 1}}, "soon": {"_count": 1, "realized": {"_count": 1}}, "Quirrells": {"_count": 1, "lessons": {"_count": 1}}, "did": {"_count": 28, "Snape": {"_count": 1}, "not": {"_count": 26}, "Aberforth": {"_count": 1}}, "Ron": {"_count": 46, "kicked": {"_count": 1}, "hadnt": {"_count": 1}, "held": {"_count": 1}, "still": {"_count": 1}, "didnt": {"_count": 1}, "and": {"_count": 9}, "said": {"_count": 1}, "was": {"_count": 8}, "suddenly": {"_count": 1}, "gave": {"_count": 1}, "nudged": {"_count": 1}, "gasped": {"_count": 1}, "just": {"_count": 1}, "eyes": {"_count": 1}, "merely": {"_count": 1}, "grabbed": {"_count": 1}, "shook": {"_count": 2}, "Harryll": {"_count": 1}, "pushed": {"_count": 1}, "had": {"_count": 3}, "tended": {"_count": 1}, "remained": {"_count": 1}, "continued": {"_count": 1}, "picked": {"_count": 1}, "simply": {"_count": 1}, "did": {"_count": 1}, "the": {"_count": 1}, "insisted": {"_count": 1}}, "that": {"_count": 37, "was": {"_count": 10}, "could": {"_count": 1}, "wasnt": {"_count": 2}, "didnt": {"_count": 1}, "had": {"_count": 2}, "lake": {"_count": 1}, "doesnt": {"_count": 2}, "meant": {"_count": 1}, "she": {"_count": 1}, "did": {"_count": 1}, "the": {"_count": 2}, "sort": {"_count": 1}, "seemed": {"_count": 1}, "he": {"_count": 2}, "Weasley": {"_count": 1}, "cottage": {"_count": 1}, "they": {"_count": 1}, "does": {"_count": 1}, "huge": {"_count": 1}, "still": {"_count": 1}, "may": {"_count": 1}, "would": {"_count": 1}, "I": {"_count": 1}}, "everybody": {"_count": 1, "else": {"_count": 1}}, "Neville": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "Malfoy": {"_count": 11, "had": {"_count": 4}, "seemed": {"_count": 1}, "was": {"_count": 2}, "like": {"_count": 1}, "appeared": {"_count": 1}, "blocked": {"_count": 1}, "got": {"_count": 1}}, "allowed": {"_count": 3, "to": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "jerked": {"_count": 1, "suddenly": {"_count": 1}}, "his": {"_count": 75, "eyes": {"_count": 8}, "legs": {"_count": 1}, "arms": {"_count": 1}, "words": {"_count": 1}, "month": {"_count": 1}, "expression": {"_count": 2}, "worst": {"_count": 1}, "mind": {"_count": 3}, "fellow": {"_count": 1}, "usually": {"_count": 1}, "hands": {"_count": 2}, "Nimbus": {"_count": 1}, "Patronus": {"_count": 1}, "head": {"_count": 2}, "wand": {"_count": 3}, "face": {"_count": 3}, "tiny": {"_count": 1}, "round": {"_count": 1}, "white": {"_count": 1}, "heart": {"_count": 3}, "lessthanfriendly": {"_count": 1}, "voice": {"_count": 1}, "own": {"_count": 6}, "movement": {"_count": 1}, "curiosity": {"_count": 1}, "wife": {"_count": 1}, "spell": {"_count": 1}, "leg": {"_count": 1}, "injured": {"_count": 1}, "thirst": {"_count": 1}, "mouth": {"_count": 1}, "unfaltering": {"_count": 1}, "swollen": {"_count": 1}, "hopes": {"_count": 1}, "brain": {"_count": 1}, "hearing": {"_count": 1}, "footsteps": {"_count": 1}, "crossbow": {"_count": 1}, "appointment": {"_count": 1}, "dad": {"_count": 1}, "headless": {"_count": 1}, "supporters": {"_count": 1}, "assertion": {"_count": 1}, "hand": {"_count": 1}, "foot": {"_count": 1}, "murky": {"_count": 1}, "magic": {"_count": 1}, "an": {"_count": 1}, "thoughts": {"_count": 1}, "blue": {"_count": 1}, "deepest": {"_count": 1}, "red": {"_count": 1}}, "perfectly": {"_count": 1, "cheerful": {"_count": 1}}, "halfway": {"_count": 3, "across": {"_count": 1}, "there": {"_count": 1}, "up": {"_count": 1}}, "what": {"_count": 16, "choice": {"_count": 1}, "chance": {"_count": 1}, "sort": {"_count": 1}, "is": {"_count": 2}, "sounded": {"_count": 1}, "did": {"_count": 1}, "they": {"_count": 1}, "if": {"_count": 3}, "exactly": {"_count": 1}, "a": {"_count": 2}, "seemed": {"_count": 1}, "the": {"_count": 1}}, "even": {"_count": 18, "a": {"_count": 1}, "so": {"_count": 5}, "Harry": {"_count": 1}, "as": {"_count": 6}, "you": {"_count": 1}, "with": {"_count": 1}, "murmuring": {"_count": 1}, "more": {"_count": 1}, "before": {"_count": 1}}, "of": {"_count": 12, "course": {"_count": 8}, "your": {"_count": 1}, "dragon": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}}, "POTTER": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 16, "blocked": {"_count": 1}, "in": {"_count": 1}, "sayin": {"_count": 1}, "broken": {"_count": 1}, "not": {"_count": 3}, "definitely": {"_count": 1}, "only": {"_count": 1}, "still": {"_count": 1}, "never": {"_count": 1}, "that": {"_count": 1}, "gettin": {"_count": 1}, "gone": {"_count": 2}, "always": {"_count": 1}}, "instead": {"_count": 12, "of": {"_count": 4}, "there": {"_count": 1}, "Mr": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 1}, "hurried": {"_count": 1}}, "propped": {"_count": 1, "against": {"_count": 1}}, "see": {"_count": 3, "no": {"_count": 1}, "we": {"_count": 1}, "here": {"_count": 1}}, "still": {"_count": 26, "no": {"_count": 1}, "Professor": {"_count": 1}, "weak": {"_count": 1}, "making": {"_count": 1}, "without": {"_count": 1}, "gazing": {"_count": 1}, "posing": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 2}, "glaring": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 3}, "found": {"_count": 1}, "grinning": {"_count": 1}, "Lucius": {"_count": 1}, "if": {"_count": 1}, "eet": {"_count": 1}, "French": {"_count": 1}, "awkward": {"_count": 1}, "heavy": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 2}}, "crying": {"_count": 1, "at": {"_count": 1}}, "saw": {"_count": 5, "no": {"_count": 1}, "nothing": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 1}, "him": {"_count": 1}}, "with": {"_count": 22, "Ron": {"_count": 1}, "a": {"_count": 8}, "little": {"_count": 1}, "Albus": {"_count": 1}, "an": {"_count": 2}, "garlands": {"_count": 1}, "deliberate": {"_count": 1}, "one": {"_count": 1}, "deliberation": {"_count": 1}, "black": {"_count": 1}, "difficulty": {"_count": 1}, "those": {"_count": 1}, "unacceptable": {"_count": 1}, "that": {"_count": 1}}, "Im": {"_count": 25, "different": {"_count": 1}, "no": {"_count": 1}, "going": {"_count": 4}, "sure": {"_count": 2}, "a": {"_count": 1}, "not": {"_count": 4}, "afraid": {"_count": 4}, "nothing": {"_count": 1}, "aching": {"_count": 1}, "goin": {"_count": 1}, "talking": {"_count": 1}, "keeping": {"_count": 1}, "here": {"_count": 1}, "used": {"_count": 1}, "scared": {"_count": 1}}, "thats": {"_count": 16, "no": {"_count": 1}, "the": {"_count": 2}, "not": {"_count": 4}, "my": {"_count": 1}, "why": {"_count": 1}, "what": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 1}, "between": {"_count": 1}, "how": {"_count": 1}, "completely": {"_count": 1}, "hardly": {"_count": 1}}, "Hermione": {"_count": 49, "told": {"_count": 1}, "didnt": {"_count": 2}, "answered": {"_count": 1}, "had": {"_count": 2}, "shut": {"_count": 1}, "shrugged": {"_count": 1}, "wouldnt": {"_count": 1}, "interrupted": {"_count": 2}, "and": {"_count": 1}, "began": {"_count": 1}, "stamped": {"_count": 1}, "cantve": {"_count": 1}, "got": {"_count": 1}, "nudged": {"_count": 1}, "said": {"_count": 6}, "cut": {"_count": 1}, "who": {"_count": 2}, "paid": {"_count": 1}, "refused": {"_count": 1}, "brushed": {"_count": 1}, "broke": {"_count": 1}, "seeing": {"_count": 1}, "merely": {"_count": 1}, "was": {"_count": 2}, "bit": {"_count": 1}, "frowned": {"_count": 1}, "looked": {"_count": 1}, "made": {"_count": 1}, "continued": {"_count": 2}, "seized": {"_count": 1}, "pushed": {"_count": 1}, "downright": {"_count": 1}, "took": {"_count": 1}, "remained": {"_count": 1}, "shot": {"_count": 1}, "ignored": {"_count": 1}, "quelled": {"_count": 1}, "forestalled": {"_count": 1}}, "would": {"_count": 5, "they": {"_count": 1}, "it": {"_count": 2}, "live": {"_count": 1}, "assuredly": {"_count": 1}}, "turned": {"_count": 5, "in": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}}, "Madam": {"_count": 4, "Pomfrey": {"_count": 3}, "Hooch": {"_count": 1}}, "don": {"_count": 1, "go": {"_count": 1}}, "nobody": {"_count": 18, "would": {"_count": 1}, "seemed": {"_count": 3}, "answered": {"_count": 2}, "came": {"_count": 1}, "spoke": {"_count": 3}, "heard": {"_count": 1}, "was": {"_count": 3}, "laughed": {"_count": 1}, "else": {"_count": 1}, "moved": {"_count": 1}, "followed": {"_count": 1}}, "clouds": {"_count": 1, "scudding": {"_count": 1}}, "careful": {"_count": 1, "now": {"_count": 1}}, "below": {"_count": 1, "that": {"_count": 1}}, "hell": {"_count": 3, "have": {"_count": 1}, "be": {"_count": 1}, "do": {"_count": 1}}, "taken": {"_count": 1, "away": {"_count": 1}}, "never": {"_count": 6, "as": {"_count": 1}, "one": {"_count": 1}, "mind": {"_count": 2}, "until": {"_count": 1}, "had": {"_count": 1}}, "rest": {"_count": 1, "assured": {"_count": 1}}, "from": {"_count": 6, "the": {"_count": 3}, "that": {"_count": 1}, "a": {"_count": 1}, "what": {"_count": 1}}, "theres": {"_count": 13, "no": {"_count": 3}, "a": {"_count": 3}, "still": {"_count": 1}, "nothing": {"_count": 3}, "the": {"_count": 1}, "definite": {"_count": 1}, "been": {"_count": 1}}, "neither": {"_count": 5, "of": {"_count": 4}, "could": {"_count": 1}}, "determined": {"_count": 3, "": {"_count": 2}, "just": {"_count": 1}}, "stayed": {"_count": 1, "on": {"_count": 1}}, "couldnt": {"_count": 11, "feel": {"_count": 1}, "help": {"_count": 1}, "see": {"_count": 2}, "": {"_count": 2}, "reach": {"_count": 1}, "hear": {"_count": 1}, "bring": {"_count": 1}, "say": {"_count": 1}, "kill": {"_count": 1}}, "dark": {"_count": 2, "fire": {"_count": 1}, "solid": {"_count": 1}}, "cold": {"_count": 1, "and": {"_count": 1}}, "where": {"_count": 3, "is": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "your": {"_count": 4, "mother": {"_count": 1}, "sister": {"_count": 1}, "father": {"_count": 1}, "way": {"_count": 1}}, "Voldemort": {"_count": 7, "screamed": {"_count": 1}, "laughed": {"_count": 1}, "took": {"_count": 1}, "first": {"_count": 1}, "did": {"_count": 1}, "ahead": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 52, "Nicolas": {"_count": 1}, "ignore": {"_count": 1}, "expel": {"_count": 1}, "me": {"_count": 1}, "no": {"_count": 1}, "the": {"_count": 4}, "go": {"_count": 1}, "turn": {"_count": 1}, "run": {"_count": 1}, "start": {"_count": 1}, "attack": {"_count": 1}, "allow": {"_count": 1}, "accept": {"_count": 1}, "his": {"_count": 3}, "send": {"_count": 1}, "take": {"_count": 1}, "have": {"_count": 1}, "employ": {"_count": 1}, "give": {"_count": 2}, "leave": {"_count": 2}, "Harrys": {"_count": 3}, "force": {"_count": 1}, "disguise": {"_count": 1}, "keep": {"_count": 1}, "pretend": {"_count": 1}, "put": {"_count": 1}, "file": {"_count": 1}, "control": {"_count": 1}, "find": {"_count": 2}, "rip": {"_count": 1}, "help": {"_count": 1}, "an": {"_count": 1}, "obey": {"_count": 1}, "destroy": {"_count": 1}, "all": {"_count": 1}, "stay": {"_count": 1}, "retrieve": {"_count": 1}, "tell": {"_count": 1}, "fall": {"_count": 1}, "whom": {"_count": 1}, "crawl": {"_count": 1}, "save": {"_count": 1}}, "stopped": {"_count": 5, "quickly": {"_count": 3}, "in": {"_count": 1}, "abruptly": {"_count": 1}}, "very": {"_count": 8, "strict": {"_count": 1}, "stiff": {"_count": 1}, "brittle": {"_count": 1}, "quietly": {"_count": 1}, "pleased": {"_count": 1}, "few": {"_count": 1}, "glad": {"_count": 1}, "handsomely": {"_count": 1}}, "come": {"_count": 2, "they": {"_count": 1}, "on": {"_count": 1}}, "now": {"_count": 25, "the": {"_count": 3}, "is": {"_count": 1}, "he": {"_count": 4}, "that": {"_count": 6}, "to": {"_count": 1}, "with": {"_count": 1}, "several": {"_count": 1}, "Im": {"_count": 1}, "weve": {"_count": 1}, "there": {"_count": 1}, "it": {"_count": 2}, "they": {"_count": 1}, "its": {"_count": 1}, "let": {"_count": 1}}, "er": {"_count": 3, "is": {"_count": 1}, "he": {"_count": 1}, "Ted": {"_count": 1}}, "Dobby": {"_count": 8, "jumped": {"_count": 1}, "called": {"_count": 1}, "didnt": {"_count": 1}, "raised": {"_count": 1}, "beat": {"_count": 1}, "did": {"_count": 1}, "does": {"_count": 1}, "merely": {"_count": 1}}, "extra": {"_count": 1, "rooms": {"_count": 1}}, "leapt": {"_count": 1, "up": {"_count": 1}}, "Errol": {"_count": 1, "flopped": {"_count": 1}}, "perhaps": {"_count": 7, "it": {"_count": 2}, "he": {"_count": 1}, "we": {"_count": 1}, "somehow": {"_count": 1}, "she": {"_count": 1}, "those": {"_count": 1}}, "goodness": {"_count": 1, "me": {"_count": 1}}, "selling": {"_count": 1, "said": {"_count": 1}}, "opposite": {"_count": 1, "was": {"_count": 1}}, "felt": {"_count": 1, "dreadful": {"_count": 1}}, "Lockhart": {"_count": 4, "threw": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "appeared": {"_count": 1}}, "somehow": {"_count": 7, "they": {"_count": 1}, "Harry": {"_count": 2}, "he": {"_count": 2}, "the": {"_count": 2}}, "their": {"_count": 6, "street": {"_count": 1}, "pockets": {"_count": 1}, "mountain": {"_count": 1}, "opening": {"_count": 1}, "parents": {"_count": 1}, "normal": {"_count": 1}}, "for": {"_count": 25, "all": {"_count": 3}, "once": {"_count": 2}, "firteen": {"_count": 1}, "the": {"_count": 6}, "a": {"_count": 6}, "themselves": {"_count": 1}, "minor": {"_count": 1}, "gain": {"_count": 1}, "something": {"_count": 1}, "himself": {"_count": 1}, "Dumbledores": {"_count": 1}, "Voldemort": {"_count": 1}}, "next": {"_count": 5, "second": {"_count": 2}, "moment": {"_count": 3}}, "suddenly": {"_count": 6, "the": {"_count": 2}, "withdrew": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "found": {"_count": 1}}, "either": {"_count": 1, "he": {"_count": 1}}, "help": {"_count": 1, "came": {"_count": 1}}, "The": {"_count": 2, "dormitory": {"_count": 1}, "rest": {"_count": 1}}, "had": {"_count": 18, "never": {"_count": 3}, "to": {"_count": 1}, "no": {"_count": 3}, "barely": {"_count": 1}, "been": {"_count": 2}, "slipped": {"_count": 1}, "proceeded": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "waited": {"_count": 1}, "not": {"_count": 1}, "jumped": {"_count": 1}, "stretched": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "today": {"_count": 1, "was": {"_count": 1}}, "Miss": {"_count": 1, "Hermione": {"_count": 1}}, "Colin": {"_count": 2, "ignored": {"_count": 1}, "just": {"_count": 1}}, "apparently": {"_count": 7, "I": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "Mr": {"_count": 1}, "not": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "oh": {"_count": 2, "no": {"_count": 1}, "its": {"_count": 1}}, "inside": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "gave": {"_count": 3, "up": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}}, "hasnt": {"_count": 1, "got": {"_count": 1}}, "Squibs": {"_count": 1, "are": {"_count": 1}}, "misery": {"_count": 1, "at": {"_count": 1}}, "preferred": {"_count": 1, "to": {"_count": 1}}, "also": {"_count": 11, "at": {"_count": 1}, "with": {"_count": 3}, "his": {"_count": 1}, "about": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "rather": {"_count": 1}, "treating": {"_count": 1}}, "was": {"_count": 26, "now": {"_count": 1}, "forced": {"_count": 1}, "almost": {"_count": 1}, "furious": {"_count": 1}, "still": {"_count": 1}, "it": {"_count": 1}, "ambushed": {"_count": 1}, "standing": {"_count": 1}, "sitting": {"_count": 1}, "there": {"_count": 1}, "spared": {"_count": 1}, "saved": {"_count": 2}, "also": {"_count": 1}, "at": {"_count": 1}, "unsuccessful": {"_count": 1}, "distracted": {"_count": 1}, "pleased": {"_count": 1}, "leaning": {"_count": 1}, "thrown": {"_count": 1}, "far": {"_count": 1}, "not": {"_count": 1}, "convinced": {"_count": 1}, "staring": {"_count": 1}, "disappointed": {"_count": 1}, "dressed": {"_count": 1}}, "growing": {"_count": 1, "them": {"_count": 1}}, "everything": {"_count": 3, "still": {"_count": 1}, "outside": {"_count": 1}, "seemed": {"_count": 1}}, "black": {"_count": 1, "and": {"_count": 1}}, "enchanted": {"_count": 1, "snow": {"_count": 1}}, "caught": {"_count": 3, "himself": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}}, "accurate": {"_count": 2, "impression": {"_count": 2}}, "in": {"_count": 23, "the": {"_count": 7}, "those": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 1}, "thin": {"_count": 1}, "his": {"_count": 1}, "Harrys": {"_count": 1}, "Ravenclaw": {"_count": 1}, "nobody": {"_count": 1}, "all": {"_count": 1}, "Charms": {"_count": 1}, "reality": {"_count": 2}, "personality": {"_count": 1}, "spite": {"_count": 2}, "such": {"_count": 1}}, "signed": {"_count": 1, "up": {"_count": 1}}, "Quidditch": {"_count": 1, "and": {"_count": 1}}, "people": {"_count": 3, "were": {"_count": 1}, "have": {"_count": 1}, "are": {"_count": 1}}, "visitors": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 18}}, "got": {"_count": 1, "lodged": {"_count": 1}}, "cowering": {"_count": 1, "silently": {"_count": 1}}, "decided": {"_count": 2, "against": {"_count": 1}, "not": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "My": {"_count": 2, "sons": {"_count": 1}, "dear": {"_count": 1}}, "glanced": {"_count": 1, "up": {"_count": 1}}, "reluctantly": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 4, "have": {"_count": 1}, "be": {"_count": 2}, "hear": {"_count": 1}}, "none": {"_count": 12, "as": {"_count": 2}, "of": {"_count": 7}, "came": {"_count": 3}}, "Riddle": {"_count": 1, "laughed": {"_count": 1}}, "brilliant": {"_count": 1, "parentless": {"_count": 1}}, "so": {"_count": 5, "brave": {"_count": 1}, "dim": {"_count": 1}, "what": {"_count": 1}, "fast": {"_count": 1}, "were": {"_count": 1}}, "froze": {"_count": 1, "": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "jerking": {"_count": 1, "his": {"_count": 1}}, "Fawkes": {"_count": 1, "the": {"_count": 1}}, "weve": {"_count": 6, "had": {"_count": 2}, "got": {"_count": 1}, "overrun": {"_count": 1}, "all": {"_count": 1}, "never": {"_count": 1}}, "each": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "almost": {"_count": 1, "immediately": {"_count": 1}}, "massive": {"_count": 1, "He": {"_count": 1}}, "poured": {"_count": 1, "it": {"_count": 1}}, "youre": {"_count": 4, "safe": {"_count": 1}, "not": {"_count": 3}}, "why": {"_count": 13, "": {"_count": 3}, "was": {"_count": 1}, "dont": {"_count": 1}, "why": {"_count": 1}, "isnt": {"_count": 1}, "Harry": {"_count": 1}, "would": {"_count": 1}, "are": {"_count": 1}, "take": {"_count": 1}, "should": {"_count": 1}, "on": {"_count": 1}}, "my": {"_count": 9, "aunt": {"_count": 1}, "mind": {"_count": 1}, "scar": {"_count": 1}, "master": {"_count": 1}, "friend": {"_count": 1}, "loss": {"_count": 1}, "wand": {"_count": 1}, "father": {"_count": 1}, "arms": {"_count": 1}}, "rules": {"_count": 1, "are": {"_count": 1}}, "three": {"_count": 1, "bulging": {"_count": 1}}, "Scabbers": {"_count": 3, "shot": {"_count": 1}, "was": {"_count": 2}}, "Fudge": {"_count": 4, "went": {"_count": 1}, "bristled": {"_count": 1}, "seemed": {"_count": 1}, "wouldnt": {"_count": 1}}, "really": {"_count": 2, "quite": {"_count": 1}, "Harry": {"_count": 1}}, "seriously": {"_count": 1, "Sirius": {"_count": 1}}, "overlooked": {"_count": 1, "it": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "be": {"_count": 5, "very": {"_count": 1}, "warned": {"_count": 1}, "sure": {"_count": 1}, "overawed": {"_count": 1}, "quick": {"_count": 1}}, "nearly": {"_count": 3, "everybody": {"_count": 1}, "four": {"_count": 1}, "hit": {"_count": 1}}, "looked": {"_count": 5, "healthier": {"_count": 1}, "disgruntled": {"_count": 1}, "up": {"_count": 1}, "for": {"_count": 1}, "down": {"_count": 1}}, "interested": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 6, "old": {"_count": 1}, "argument": {"_count": 1}, "excruciating": {"_count": 1}, "impostor": {"_count": 1}, "acrid": {"_count": 1}, "Acceptable": {"_count": 1}}, "said": {"_count": 6, "Well": {"_count": 1}, "Ron": {"_count": 1}, "nothing": {"_count": 1}, "with": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}}, "Here": {"_count": 1, "": {"_count": 1}}, "pleased": {"_count": 5, "with": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "to": {"_count": 2}}, "Crookshanks": {"_count": 2, "clung": {"_count": 1}, "now": {"_count": 1}}, "Lupin": {"_count": 15, "had": {"_count": 2}, "raised": {"_count": 1}, "seized": {"_count": 1}, "says": {"_count": 1}, "said": {"_count": 3}, "": {"_count": 2}, "still": {"_count": 1}, "shook": {"_count": 1}, "wrenched": {"_count": 1}, "would": {"_count": 1}, "did": {"_count": 1}}, "once": {"_count": 5, "shes": {"_count": 1}, "Hagrids": {"_count": 1}, "again": {"_count": 2}, "or": {"_count": 1}}, "Sirius": {"_count": 9, "Black": {"_count": 3}, "shook": {"_count": 1}, "scowled": {"_count": 1}, "appeared": {"_count": 1}, "said": {"_count": 1}, "might": {"_count": 1}, "ended": {"_count": 1}}, "Diggorys": {"_count": 1, "weight": {"_count": 1}}, "Wood": {"_count": 1, "now": {"_count": 1}}, "unless": {"_count": 2, "we": {"_count": 1}, "some": {"_count": 1}}, "Wait": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 12, "sure": {"_count": 1}, "none": {"_count": 1}, "reluctant": {"_count": 1}, "giving": {"_count": 1}, "just": {"_count": 1}, "much": {"_count": 1}, "not": {"_count": 2}, "still": {"_count": 1}, "forced": {"_count": 1}, "all": {"_count": 1}, "no": {"_count": 1}}, "but": {"_count": 2, "Hermoine": {"_count": 1}, "": {"_count": 1}}, "Hermoine": {"_count": 1, "seemed": {"_count": 1}}, "honestly": {"_count": 1, "Harry": {"_count": 1}}, "trained": {"_count": 1, "Hit": {"_count": 1}}, "give": {"_count": 1, "him": {"_count": 1}}, "handsome": {"_count": 1, "full": {"_count": 1}}, "ddont": {"_count": 1, "put": {"_count": 1}}, "slightly": {"_count": 1, "raised": {"_count": 1}}, "stood": {"_count": 3, "up": {"_count": 1}, "frozen": {"_count": 1}, "there": {"_count": 1}}, "McGonagall": {"_count": 1, "still": {"_count": 1}}, "something": {"_count": 9, "else": {"_count": 1}, "that": {"_count": 1}, "told": {"_count": 1}, "perhaps": {"_count": 1}, "distracted": {"_count": 1}, "about": {"_count": 1}, "happened": {"_count": 1}, "was": {"_count": 1}, "kept": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "much": {"_count": 4, "applause": {"_count": 1}, "more": {"_count": 3}}, "shell": {"_count": 2, "never": {"_count": 1}, "save": {"_count": 1}}, "surely": {"_count": 3, "not": {"_count": 1}, "an": {"_count": 1}, "he": {"_count": 1}}, "swirling": {"_count": 1, "white": {"_count": 1}}, "lose": {"_count": 1, "the": {"_count": 1}}, "dropped": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 5, "Ron": {"_count": 1}, "bought": {"_count": 1}, "of": {"_count": 1}, "were": {"_count": 1}, "Umbridge": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 1}, "whether": {"_count": 1}, "winked": {"_count": 1}}, "nodded": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Black": {"_count": 4, "didnt": {"_count": 2}, "caught": {"_count": 1}, "Im": {"_count": 1}}, "Argh": {"_count": 1, "": {"_count": 1}}, "fell": {"_count": 2, "back": {"_count": 2}}, "little": {"_count": 1, "Peter": {"_count": 1}}, "youll": {"_count": 5, "need": {"_count": 1}, "have": {"_count": 1}, "notice": {"_count": 1}, "pass": {"_count": 1}, "know": {"_count": 1}}, "scared": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 2, "all": {"_count": 1}, "around": {"_count": 1}}, "dont": {"_count": 9, "kill": {"_count": 1}, "laugh": {"_count": 1}, "drift": {"_count": 1}, "worry": {"_count": 1}, "go": {"_count": 1}, "change": {"_count": 1}, "you": {"_count": 2}, "forget": {"_count": 1}}, "Buckbeak": {"_count": 2, "had": {"_count": 1}, "is": {"_count": 1}}, "guess": {"_count": 1, "what": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "Frank": {"_count": 1, "couldnt": {"_count": 1}}, "YouKnotuWho": {"_count": 1, "cant": {"_count": 1}}, "grapefruit": {"_count": 1, "it": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "Ive": {"_count": 11, "got": {"_count": 2}, "had": {"_count": 1}, "never": {"_count": 3}, "kept": {"_count": 1}, "found": {"_count": 1}, "told": {"_count": 1}, "cleaned": {"_count": 1}, "heard": {"_count": 1}}, "Aunt": {"_count": 6, "Petunia": {"_count": 6}}, "themselves": {"_count": 2, "and": {"_count": 1}, "read": {"_count": 1}}, "Bagman": {"_count": 3, "just": {"_count": 1}, "didnt": {"_count": 2}}, "safer": {"_count": 2, "": {"_count": 1}, "route": {"_count": 1}}, "Ludos": {"_count": 1, "always": {"_count": 1}}, "Mum": {"_count": 2, "and": {"_count": 2}}, "recovered": {"_count": 2, "himself": {"_count": 1}, "her": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "Krum": {"_count": 8, "ll": {"_count": 1}, "was": {"_count": 3}, "did": {"_count": 2}, "didnt": {"_count": 1}, "would": {"_count": 1}}, "will": {"_count": 1, "he": {"_count": 1}}, "Winky": {"_count": 2, "does": {"_count": 1}, "is": {"_count": 1}}, "stared": {"_count": 4, "determinedly": {"_count": 1}, "at": {"_count": 2}, "with": {"_count": 1}}, "more": {"_count": 3, "brutal": {"_count": 1}, "often": {"_count": 1}, "were": {"_count": 1}}, "Hassan": {"_count": 1, "Mostafa": {"_count": 1}}, "seemed": {"_count": 6, "to": {"_count": 2}, "wide": {"_count": 1}, "uncertain": {"_count": 1}, "otherwise": {"_count": 1}, "unable": {"_count": 1}}, "blimey": {"_count": 1, "": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "otherwise": {"_count": 10, "very": {"_count": 1}, "ignored": {"_count": 1}, "the": {"_count": 2}, "she": {"_count": 2}, "looked": {"_count": 1}, "okay": {"_count": 1}, "composed": {"_count": 1}, "unharmed": {"_count": 1}}, "descriptions": {"_count": 1, "of": {"_count": 1}}, "theyll": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "Arthurs": {"_count": 3, "the": {"_count": 1}, "never": {"_count": 1}, "been": {"_count": 1}}, "Percy": {"_count": 5, "apologizing": {"_count": 1}, "diverted": {"_count": 1}, "who": {"_count": 1}, "lay": {"_count": 1}, "would": {"_count": 1}}, "most": {"_count": 3, "wisely": {"_count": 1}, "averted": {"_count": 1}, "had": {"_count": 1}}, "maybe": {"_count": 4, "this": {"_count": 1}, "he": {"_count": 2}, "its": {"_count": 1}}, "Nevilles": {"_count": 1, "memory": {"_count": 1}}, "here": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "oddly": {"_count": 1, "satisfying": {"_count": 1}}, "deep": {"_count": 2, "affection": {"_count": 1}, "below": {"_count": 1}}, "refused": {"_count": 2, "to": {"_count": 2}}, "Moody": {"_count": 7, "was": {"_count": 3}, "made": {"_count": 1}, "had": {"_count": 1}, "pushed": {"_count": 1}, "ignored": {"_count": 1}}, "distinct": {"_count": 1, "voice": {"_count": 1}}, "unmistakably": {"_count": 1, "dead": {"_count": 1}}, "youve": {"_count": 5, "got": {"_count": 2}, "been": {"_count": 1}, "obviously": {"_count": 1}, "already": {"_count": 1}}, "ate": {"_count": 2, "furiously": {"_count": 1}, "with": {"_count": 1}}, "hooted": {"_count": 1, "softly": {"_count": 1}}, "betweentimes": {"_count": 1, "he": {"_count": 1}}, "believe": {"_count": 2, "me": {"_count": 2}}, "her": {"_count": 17, "next": {"_count": 1}, "fingers": {"_count": 1}, "eyes": {"_count": 6}, "face": {"_count": 1}, "friend": {"_count": 1}, "response": {"_count": 1}, "fussy": {"_count": 1}, "remaining": {"_count": 1}, "memory": {"_count": 1}, "expression": {"_count": 1}, "words": {"_count": 1}, "transparent": {"_count": 1}}, "being": {"_count": 2, "so": {"_count": 1}, "old": {"_count": 1}}, "found": {"_count": 5, "he": {"_count": 1}, "that": {"_count": 2}, "nothing": {"_count": 1}, "his": {"_count": 1}}, "yehll": {"_count": 1, "never": {"_count": 1}}, "Potters": {"_count": 1, "Karkaroff": {"_count": 1}}, "Dumblydorr": {"_count": 1, "My": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "which": {"_count": 9, "were": {"_count": 1}, "door": {"_count": 1}, "snagged": {"_count": 1}, "now": {"_count": 1}, "Snape": {"_count": 1}, "already": {"_count": 1}, "then": {"_count": 1}, "might": {"_count": 1}, "still": {"_count": 1}}, "though": {"_count": 1, "both": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "these": {"_count": 4, "days": {"_count": 1}, "surprises": {"_count": 1}, "were": {"_count": 1}, "signs": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "excited": {"_count": 1, "": {"_count": 1}}, "standing": {"_count": 2, "up": {"_count": 1}, "his": {"_count": 1}}, "like": {"_count": 1, "you": {"_count": 1}}, "dragons": {"_count": 1, "had": {"_count": 1}}, "himself": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "headed": {"_count": 1, "for": {"_count": 1}}, "rather": {"_count": 4, "pale": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "than": {"_count": 1}}, "whether": {"_count": 1, "friendly": {"_count": 1}}, "better": {"_count": 1, "not": {"_count": 1}}, "Cedric": {"_count": 2, "didnt": {"_count": 1}, "was": {"_count": 1}}, "working": {"_count": 1, "up": {"_count": 1}}, "sleek": {"_count": 1, "and": {"_count": 1}}, "Karkaroff": {"_count": 4, "wore": {"_count": 1}, "and": {"_count": 1}, "interrupted": {"_count": 1}, "had": {"_count": 1}}, "resisted": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "small": {"_count": 1, "menus": {"_count": 1}}, "whatever": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "she": {"_count": 1}}, "off": {"_count": 1, "out": {"_count": 1}}, "Albus": {"_count": 2, "Dumbledore": {"_count": 1}, "and": {"_count": 1}}, "swimming": {"_count": 1, "trunks": {"_count": 1}}, "Filch": {"_count": 2, "looked": {"_count": 1}, "seemed": {"_count": 1}}, "any": {"_count": 1, "moment": {"_count": 1}}, "on": {"_count": 10, "the": {"_count": 7}, "that": {"_count": 1}, "five": {"_count": 1}, "another": {"_count": 1}}, "badly": {"_count": 1, "": {"_count": 1}}, "cruel": {"_count": 1, "winds": {"_count": 1}}, "ambitious": {"_count": 1, "girl": {"_count": 1}}, "shed": {"_count": 1, "be": {"_count": 1}}, "seeing": {"_count": 1, "the": {"_count": 1}}, "doesnt": {"_count": 1, "bother": {"_count": 1}}, "meanwhile": {"_count": 1, "Muggles": {"_count": 1}}, "houseelves": {"_count": 1, "has": {"_count": 1}}, "composed": {"_count": 1, "from": {"_count": 1}}, "continued": {"_count": 9, "to": {"_count": 9}}, "Its": {"_count": 1, "my": {"_count": 1}}, "blackmail": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "normal": {"_count": 1}}, "some": {"_count": 2, "trials": {"_count": 1}, "funny": {"_count": 1}}, "unable": {"_count": 4, "to": {"_count": 4}}, "shes": {"_count": 5, "not": {"_count": 2}, "no": {"_count": 1}, "still": {"_count": 1}, "got": {"_count": 1}}, "Percys": {"_count": 1, "been": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "kept": {"_count": 2, "running": {"_count": 1}, "looking": {"_count": 1}}, "pacing": {"_count": 1, "from": {"_count": 1}}, "lies": {"_count": 1, "": {"_count": 1}}, "numb": {"_count": 1, "disbelief": {"_count": 1}}, "worse": {"_count": 1, "a": {"_count": 1}}, "vapor": {"_count": 1, "hanging": {"_count": 1}}, "might": {"_count": 1, "not": {"_count": 1}}, "keeping": {"_count": 1, "his": {"_count": 1}}, "bright": {"_count": 2, "deep": {"_count": 1}, "": {"_count": 1}}, "instinct": {"_count": 1, "kept": {"_count": 1}}, "quietly": {"_count": 1, "so": {"_count": 1}}, "fled": {"_count": 1, "at": {"_count": 1}}, "shook": {"_count": 2, "his": {"_count": 1}, "hands": {"_count": 1}}, "Mrs": {"_count": 9, "Weasley": {"_count": 8}, "Cattermole": {"_count": 1}}, "essentially": {"_count": 1, "good": {"_count": 1}}, "under": {"_count": 3, "the": {"_count": 1}, "counter": {"_count": 1}, "her": {"_count": 1}}, "ill": {"_count": 1, "Sirius": {"_count": 1}}, "lift": {"_count": 2, "slightly": {"_count": 1}, "at": {"_count": 1}}, "gratified": {"_count": 1, "signed": {"_count": 1}}, "another": {"_count": 3, "restless": {"_count": 1}, "light": {"_count": 1}, "blow": {"_count": 1}}, "Dont": {"_count": 1, "put": {"_count": 1}}, "luckily": {"_count": 2, "Id": {"_count": 1}, "the": {"_count": 1}}, "within": {"_count": 1, "seconds": {"_count": 1}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "far": {"_count": 4, "from": {"_count": 3}, "away": {"_count": 1}}, "made": {"_count": 3, "no": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 1}}, "tiny": {"_count": 1, "pinpricks": {"_count": 1}}, "clearly": {"_count": 3, "deep": {"_count": 1}, "we": {"_count": 1}, "": {"_count": 1}}, "Id": {"_count": 4, "rather": {"_count": 1}, "made": {"_count": 1}, "have": {"_count": 1}, "already": {"_count": 1}}, "Andromeda": {"_count": 1, "married": {"_count": 1}}, "Kreacher": {"_count": 3, "fixed": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}}, "Master": {"_count": 1, "will": {"_count": 1}}, "who": {"_count": 7, "left": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 3}, "wants": {"_count": 1}, "knew": {"_count": 1}}, "obviously": {"_count": 2, "you": {"_count": 1}, "it": {"_count": 1}}, "several": {"_count": 3, "more": {"_count": 1}, "other": {"_count": 1}, "times": {"_count": 1}}, "thank": {"_count": 1, "goodness": {"_count": 1}}, "ahead": {"_count": 1, "in": {"_count": 1}}, "And": {"_count": 1, "yet": {"_count": 1}}, "Knowing": {"_count": 2, "that": {"_count": 2}}, "Fully": {"_count": 1, "aware": {"_count": 1}}, "others": {"_count": 3, "were": {"_count": 1}, "bore": {"_count": 1}, "advanced": {"_count": 1}}, "fidgeting": {"_count": 1, "with": {"_count": 1}}, "everyone": {"_count": 2, "else": {"_count": 2}}, "again": {"_count": 5, "the": {"_count": 2}, "this": {"_count": 1}, "Vernon": {"_count": 1}, "he": {"_count": 1}}, "other": {"_count": 2, "than": {"_count": 2}}, "up": {"_count": 1, "close": {"_count": 1}}, "Kingsley": {"_count": 2, "might": {"_count": 1}, "showed": {"_count": 1}}, "remained": {"_count": 5, "bent": {"_count": 1}, "scratched": {"_count": 1}, "stubbornly": {"_count": 1}, "rooted": {"_count": 1}, "exactly": {"_count": 1}}, "MadEye": {"_count": 2, "wanted": {"_count": 1}, "made": {"_count": 1}}, "Ginny": {"_count": 9, "had": {"_count": 1}, "seemed": {"_count": 1}, "stuck": {"_count": 1}, "was": {"_count": 2}, "sped": {"_count": 1}, "Neville": {"_count": 1}, "said": {"_count": 1}, "could": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "invisible": {"_count": 1, "why": {"_count": 1}}, "fairly": {"_count": 1, "unenthusiastic": {"_count": 1}}, "lectured": {"_count": 1, "them": {"_count": 1}}, "Well": {"_count": 3, "then": {"_count": 2}, "its": {"_count": 1}}, "yeah": {"_count": 1, "hes": {"_count": 1}}, "followed": {"_count": 3, "suit": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}}, "sped": {"_count": 1, "up": {"_count": 1}}, "quite": {"_count": 2, "smooth": {"_count": 1}, "distinct": {"_count": 1}}, "Good": {"_count": 1, "evening": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "Hoopers": {"_count": 1, "a": {"_count": 1}}, "Angelina": {"_count": 1, "were": {"_count": 1}}, "uncharacteristically": {"_count": 1, "neither": {"_count": 1}}, "speaking": {"_count": 1, "in": {"_count": 1}}, "straightened": {"_count": 1, "the": {"_count": 1}}, "windy": {"_count": 1, "": {"_count": 1}}, "students": {"_count": 1, "dont": {"_count": 1}}, "wheres": {"_count": 1, "the": {"_count": 1}}, "someone": {"_count": 1, "to": {"_count": 1}}, "Hagrids": {"_count": 3, "got": {"_count": 1}, "immense": {"_count": 1}, "eyes": {"_count": 1}}, "odd": {"_count": 2, "words": {"_count": 1}, "things": {"_count": 1}}, "thanks": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "often": {"_count": 1, "they": {"_count": 1}}, "promised": {"_count": 1, "to": {"_count": 1}}, "merely": {"_count": 9, "causing": {"_count": 1}, "stood": {"_count": 1}, "crossed": {"_count": 1}, "sipped": {"_count": 1}, "said": {"_count": 1}, "broken": {"_count": 1}, "hit": {"_count": 1}, "propelled": {"_count": 1}, "looked": {"_count": 1}}, "erratic": {"_count": 1, "and": {"_count": 1}}, "nice": {"_count": 1, "Bludger": {"_count": 1}}, "tore": {"_count": 1, "it": {"_count": 1}}, "sat": {"_count": 1, "gazing": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "wincing": {"_count": 1, "": {"_count": 1}}, "tell": {"_count": 2, "us": {"_count": 2}}, "apart": {"_count": 3, "from": {"_count": 3}}, "mostly": {"_count": 1, "they": {"_count": 1}}, "ter": {"_count": 1, "stick": {"_count": 1}}, "necessary": {"_count": 1, "duty": {"_count": 1}}, "plowing": {"_count": 1, "on": {"_count": 1}}, "thestrals": {"_count": 2, "have": {"_count": 1}, "are": {"_count": 1}}, "feel": {"_count": 4, "that": {"_count": 2}, "a": {"_count": 2}}, "compared": {"_count": 1, "with": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "drowsing": {"_count": 1, "": {"_count": 1}}, "jumped": {"_count": 1, "out": {"_count": 1}}, "examining": {"_count": 1, "his": {"_count": 1}}, "went": {"_count": 2, "down": {"_count": 1}, "on": {"_count": 1}}, "terrifyingly": {"_count": 1, "strong": {"_count": 1}}, "without": {"_count": 2, "any": {"_count": 1}, "success": {"_count": 1}}, "fortunately": {"_count": 2, "she": {"_count": 1}, "neither": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "making": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "me": {"_count": 2, "whos": {"_count": 1}, "ter": {"_count": 1}}, "unfortunately": {"_count": 6, "prevented": {"_count": 1}, "you": {"_count": 1}, "for": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}, "Slughorn": {"_count": 1}}, "Augustus": {"_count": 1, "Pye": {"_count": 1}}, "fine": {"_count": 1, "people": {"_count": 1}}, "managing": {"_count": 1, "only": {"_count": 1}}, "worked": {"_count": 1, "relentlessly": {"_count": 1}}, "couples": {"_count": 1, "all": {"_count": 1}}, "Oh": {"_count": 1, "youll": {"_count": 1}}, "eyed": {"_count": 2, "Hermione": {"_count": 1}, "him": {"_count": 1}}, "spluttered": {"_count": 2, "Harry": {"_count": 1}, "Slughorn": {"_count": 1}}, "hitting": {"_count": 1, "Angelina": {"_count": 1}}, "Hannah": {"_count": 1, "Abbott": {"_count": 1}}, "thoroughly": {"_count": 1, "enjoying": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "Umbridge": {"_count": 4, "did": {"_count": 2}, "took": {"_count": 1}, "and": {"_count": 1}}, "Understanding": {"_count": 1, "blazed": {"_count": 1}}, "marched": {"_count": 1, "Harry": {"_count": 1}}, "rows": {"_count": 1, "and": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "always": {"_count": 3, "grabbed": {"_count": 1}, "dependably": {"_count": 1}, "it": {"_count": 1}}, "James": {"_count": 3, "seemed": {"_count": 1}, "grinned": {"_count": 1}, "Potter": {"_count": 1}}, "hadnt": {"_count": 1, "Lily": {"_count": 1}}, "smoke": {"_count": 1, "furled": {"_count": 1}}, "closed": {"_count": 2, "on": {"_count": 1}, "it": {"_count": 1}}, "personally": {"_count": 2, "I": {"_count": 2}}, "agreed": {"_count": 1, "after": {"_count": 1}}, "regretted": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "sharply": {"_count": 1, "defined": {"_count": 1}}, "Liechtenstein": {"_count": 1, "was": {"_count": 1}}, "flung": {"_count": 1, "himself": {"_count": 1}}, "sometimes": {"_count": 2, "circumstances": {"_count": 1}, "he": {"_count": 1}}, "forcing": {"_count": 1, "the": {"_count": 1}}, "We": {"_count": 1, "were": {"_count": 1}}, "twisted": {"_count": 1, "its": {"_count": 1}}, "Luna": {"_count": 3, "dismounted": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}}, "towering": {"_count": 1, "shelves": {"_count": 1}}, "eagerly": {"_count": 1, "this": {"_count": 1}}, "fragments": {"_count": 1, "of": {"_count": 1}}, "Tonks": {"_count": 1, "had": {"_count": 1}}, "dived": {"_count": 1, "off": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "walked": {"_count": 2, "over": {"_count": 1}, "forward": {"_count": 1}}, "Kreachers": {"_count": 1, "information": {"_count": 1}}, "myself": {"_count": 1, "realized": {"_count": 1}}, "exhilarated": {"_count": 1, "and": {"_count": 1}}, "four": {"_count": 2, "times": {"_count": 1}, "Slytherins": {"_count": 1}}, "recruiting": {"_count": 1, "followers": {"_count": 1}}, "beaming": {"_count": 1, "walking": {"_count": 1}}, "chose": {"_count": 1, "not": {"_count": 1}}, "fear": {"_count": 1, "that": {"_count": 1}}, "anyway": {"_count": 2, "hes": {"_count": 1}, "as": {"_count": 1}}, "Scrimgeour": {"_count": 2, "barely": {"_count": 1}, "did": {"_count": 1}}, "Then": {"_count": 1, "you": {"_count": 1}}, "kill": {"_count": 1, "him": {"_count": 1}}, "contact": {"_count": 1, "the": {"_count": 1}}, "shock": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "enjoyed": {"_count": 1, "it": {"_count": 1}}, "entirely": {"_count": 1, "silent": {"_count": 1}}, "neglect": {"_count": 1, "and": {"_count": 1}}, "taking": {"_count": 1, "up": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}, "Shes": {"_count": 1, "a": {"_count": 1}}, "stumbled": {"_count": 1, "over": {"_count": 1}}, "emblazoned": {"_count": 1, "with": {"_count": 1}}, "cast": {"_count": 1, "her": {"_count": 1}}, "hurried": {"_count": 1, "to": {"_count": 1}}, "absolutely": {"_count": 1, "convinced": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "potentially": {"_count": 1, "wonderful": {"_count": 1}}, "forced": {"_count": 1, "out": {"_count": 1}}, "thankfully": {"_count": 1, "this": {"_count": 1}}, "waited": {"_count": 2, "a": {"_count": 1}, "with": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "correct": {"_count": 1, "in": {"_count": 1}}, "glowered": {"_count": 1, "at": {"_count": 1}}, "Shield": {"_count": 1, "Charms": {"_count": 1}}, "Slughorn": {"_count": 2, "showed": {"_count": 1}, "immediately": {"_count": 1}}, "talent": {"_count": 1, "to": {"_count": 1}}, "occasionally": {"_count": 1, "gave": {"_count": 1}}, "Hang": {"_count": 1, "on": {"_count": 1}}, "becoming": {"_count": 1, "increasingly": {"_count": 1}}, "Gaunt": {"_count": 1, "had": {"_count": 1}}, "has": {"_count": 1, "somebody": {"_count": 1}}, "Morfin": {"_count": 1, "went": {"_count": 1}}, "reassured": {"_count": 1, "all": {"_count": 1}}, "times": {"_count": 1, "in": {"_count": 1}}, "broadchested": {"_count": 1, "thirdyear": {"_count": 1}}, "aimed": {"_count": 1, "well": {"_count": 1}}, "putting": {"_count": 1, "down": {"_count": 1}}, "finally": {"_count": 1, "crammed": {"_count": 1}}, "please": {"_count": 1, "dont": {"_count": 1}}, "gracefully": {"_count": 1, "her": {"_count": 1}}, "having": {"_count": 1, "had": {"_count": 1}}, "watched": {"_count": 1, "as": {"_count": 1}}, "spotlessly": {"_count": 1, "clean": {"_count": 1}}, "watching": {"_count": 1, "Riddle": {"_count": 1}}, "Where": {"_count": 1, "do": {"_count": 1}}, "Quite": {"_count": 1, "enough": {"_count": 1}}, "clutching": {"_count": 1, "an": {"_count": 1}}, "bellowed": {"_count": 1, "at": {"_count": 1}}, "carry": {"_count": 1, "on": {"_count": 1}}, "Coote": {"_count": 1, "grinning": {"_count": 1}}, "Harper": {"_count": 2, "was": {"_count": 1}, "did": {"_count": 1}}, "let": {"_count": 2, "go": {"_count": 1}, "me": {"_count": 1}}, "pretended": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "Remus": {"_count": 1, "is": {"_count": 1}}, "Dumbledores": {"_count": 1, "still": {"_count": 1}}, "Charlies": {"_count": 1, "bigger": {"_count": 1}}, "battle": {"_count": 1, "on": {"_count": 1}}, "pretending": {"_count": 1, "not": {"_count": 1}}, "backed": {"_count": 1, "away": {"_count": 1}}, "shocked": {"_count": 1, "terrified": {"_count": 1}}, "rallied": {"_count": 1, "almost": {"_count": 1}}, "impossible": {"_count": 1, "to": {"_count": 1}}, "jokes": {"_count": 1, "over": {"_count": 1}}, "attempted": {"_count": 1, "murder": {"_count": 1}}, "swung": {"_count": 1, "forward": {"_count": 1}}, "feeling": {"_count": 1, "slightly": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "continue": {"_count": 1, "with": {"_count": 1}}, "invited": {"_count": 1, "him": {"_count": 1}}, "Inferi": {"_count": 1, "are": {"_count": 1}}, "received": {"_count": 1, "no": {"_count": 1}}, "positively": {"_count": 1, "easy": {"_count": 1}}, "patted": {"_count": 1, "it": {"_count": 1}}, "Youre": {"_count": 1, "scared": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "fiddling": {"_count": 1, "with": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "delighted": {"_count": 1, "with": {"_count": 1}}, "theyve": {"_count": 1, "been": {"_count": 1}}, "try": {"_count": 1, "as": {"_count": 1}}, "Bring": {"_count": 1, "me": {"_count": 1}}, "funds": {"_count": 1, "were": {"_count": 1}}, "simply": {"_count": 4, "stood": {"_count": 1}, "to": {"_count": 2}, "there": {"_count": 1}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "crouched": {"_count": 1, "his": {"_count": 1}}, "Before": {"_count": 1, "Harry": {"_count": 1}}, "dreaming": {"_count": 1, "a": {"_count": 1}}, "upon": {"_count": 1, "draining": {"_count": 1}}, "many": {"_count": 1, "more": {"_count": 1}}, "those": {"_count": 2, "climbing": {"_count": 1}, "who": {"_count": 1}}, "scrambled": {"_count": 1, "back": {"_count": 1}}, "taller": {"_count": 1, "than": {"_count": 1}}, "stare": {"_count": 1, "at": {"_count": 1}}, "Hes": {"_count": 1, "a": {"_count": 1}}, "horror": {"_count": 1, "and": {"_count": 1}}, "sympathetic": {"_count": 1, "and": {"_count": 1}}, "Bill": {"_count": 5, "remained": {"_count": 1}, "was": {"_count": 1}, "reckons": {"_count": 1}, "did": {"_count": 1}, "shook": {"_count": 1}}, "Snapes": {"_count": 1, "place": {"_count": 1}}, "accept": {"_count": 1, "his": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "eyewitnesses": {"_count": 1, "inside": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "agree": {"_count": 1, "with": {"_count": 1}}, "wont": {"_count": 1, "it": {"_count": 1}}, "distant": {"_count": 1, "lights": {"_count": 1}}, "miraculously": {"_count": 1, "alive": {"_count": 1}}, "Thank": {"_count": 1, "goodness": {"_count": 1}}, "vanished": {"_count": 1, "pretty": {"_count": 1}}, "uninjured": {"_count": 1, "": {"_count": 1}}, "unhurt": {"_count": 1, "": {"_count": 1}}, "action": {"_count": 1, "would": {"_count": 1}}, "cozy": {"_count": 1, "room": {"_count": 1}}, "cracked": {"_count": 1, "": {"_count": 1}}, "frustrated": {"_count": 1, "": {"_count": 1}}, "Auntie": {"_count": 3, "Muriel": {"_count": 3}}, "explain": {"_count": 1, "then": {"_count": 1}}, "naturally": {"_count": 2, "Kendra": {"_count": 1}, "said": {"_count": 1}}, "bitter": {"_count": 1, "thoughts": {"_count": 1}}, "grudgingly": {"_count": 1, "and": {"_count": 1}}, "Mundungus": {"_count": 2, "Fletcher": {"_count": 1}, "interrupted": {"_count": 1}}, "took": {"_count": 1, "Kreacher": {"_count": 1}}, "sown": {"_count": 1, "doubt": {"_count": 1}}, "graying": {"_count": 1, "hair": {"_count": 1}}, "realized": {"_count": 1, "the": {"_count": 1}}, "dry": {"_count": 1, "sobs": {"_count": 1}}, "Reg": {"_count": 1, "said": {"_count": 1}}, "pale": {"_count": 1, "and": {"_count": 1}}, "used": {"_count": 1, "another": {"_count": 1}}, "lay": {"_count": 1, "so": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "Gregorovitch": {"_count": 1, "said": {"_count": 1}}, "berries": {"_count": 1, "or": {"_count": 1}}, "expected": {"_count": 1, "Harry": {"_count": 1}}, "impatience": {"_count": 1, "at": {"_count": 1}}, "beside": {"_count": 1, "themselves": {"_count": 1}}, "surprised": {"_count": 1, "": {"_count": 1}}, "rainswept": {"_count": 1, "woods": {"_count": 1}}, "evidently": {"_count": 1, "she": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "returned": {"_count": 1, "the": {"_count": 1}}, "triumph": {"_count": 1, "yes": {"_count": 1}}, "unnecessary": {"_count": 1, "quite": {"_count": 1}}, "pain": {"_count": 1, "and": {"_count": 1}}, "became": {"_count": 2, "lost": {"_count": 1}, "solemn": {"_count": 1}}, "devoted": {"_count": 1, "sidekick": {"_count": 1}}, "\u2018For": {"_count": 1, "the": {"_count": 1}}, "recognized": {"_count": 1, "the": {"_count": 1}}, "severe": {"_count": 1, "illness": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}, "drenched": {"_count": 1, "to": {"_count": 1}}, "approached": {"_count": 1, "Harry": {"_count": 1}}, "austerelooking": {"_count": 1, "witch": {"_count": 1}}, "Death": {"_count": 1, "spoke": {"_count": 1}}, "painfully": {"_count": 1, "limited": {"_count": 1}}, "fade": {"_count": 1, "with": {"_count": 1}}, "dementors": {"_count": 1, "in": {"_count": 1}}, "notice": {"_count": 1, "even": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "safety": {"_count": 1, "first": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "convincing": {"_count": 1, "": {"_count": 1}}, "familiar": {"_count": 1, "voice": {"_count": 1}}, "appeared": {"_count": 1, "too": {"_count": 1}}, "Bellatrix": {"_count": 2, "screamed": {"_count": 1}, "was": {"_count": 1}}, "Griphook": {"_count": 4, "sank": {"_count": 1}, "merely": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "laughing": {"_count": 1, "scornfully": {"_count": 1}}, "Narcissa": {"_count": 1, "had": {"_count": 1}}, "impressed": {"_count": 1, "as": {"_count": 1}}, "clutched": {"_count": 1, "his": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "remember": {"_count": 2, "how": {"_count": 1}, "I": {"_count": 1}}, "beg": {"_count": 1, "I": {"_count": 1}}, "whose": {"_count": 1, "wand": {"_count": 1}}, "effective": {"_count": 1, "": {"_count": 1}}, "getting": {"_count": 1, "as": {"_count": 1}}, "fury": {"_count": 1, "and": {"_count": 1}}, "bent": {"_count": 1, "to": {"_count": 1}}, "Aberforth": {"_count": 1, "kept": {"_count": 1}}, "revulsion": {"_count": 1, "He": {"_count": 1}}, "along": {"_count": 1, "what": {"_count": 1}}, "hobbled": {"_count": 1, "away": {"_count": 1}}, "anger": {"_count": 1, "and": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "fire": {"_count": 1, "What": {"_count": 1}}, "strangely": {"_count": 1, "familiar": {"_count": 1}}, "yours": {"_count": 1, "": {"_count": 1}}, "Luciuss": {"_count": 1, "wand": {"_count": 1}}, "Lily": {"_count": 1, "though": {"_count": 1}}, "reformed": {"_count": 1, "instantly": {"_count": 1}}, "keeps": {"_count": 1, "it": {"_count": 1}}, "sure": {"_count": 1, "that": {"_count": 1}}, "our": {"_count": 1, "interest": {"_count": 1}}, "less": {"_count": 1, "I": {"_count": 1}}, "broke": {"_count": 1, "down": {"_count": 1}}, "swallowed": {"_count": 1, "by": {"_count": 1}}, "fought": {"_count": 1, "his": {"_count": 1}}, "Voldemorts": {"_count": 1, "": {"_count": 1}}, "prowled": {"_count": 1, "in": {"_count": 1}}}, "also": {"_count": 222, "had": {"_count": 9, "a": {"_count": 3}, "an": {"_count": 1}, "plenty": {"_count": 1}, "to": {"_count": 1}, "prefect": {"_count": 1}, "clean": {"_count": 1}, "the": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "carried": {"_count": 1, "knobbly": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "bring": {"_count": 1, "an": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "red": {"_count": 1, "headed": {"_count": 1}}, "been": {"_count": 4, "asked": {"_count": 1}, "in": {"_count": 1}, "uncomfortable": {"_count": 1}, "addressed": {"_count": 1}}, "very": {"_count": 3, "hard": {"_count": 1}, "popular": {"_count": 1}, "loyal": {"_count": 1}}, "goes": {"_count": 1, "by": {"_count": 1}}, "lent": {"_count": 1, "him": {"_count": 1}}, "started": {"_count": 2, "teaching": {"_count": 1}, "using": {"_count": 1}}, "contained": {"_count": 1, "candy": {"_count": 1}}, "produces": {"_count": 1, "the": {"_count": 1}}, "forgotten": {"_count": 2, "that": {"_count": 1}, "their": {"_count": 1}}, "ask": {"_count": 1, "you": {"_count": 1}}, "sounded": {"_count": 1, "exactly": {"_count": 1}}, "a": {"_count": 12, "list": {"_count": 1}, "dozen": {"_count": 1}, "surprise": {"_count": 1}, "diving": {"_count": 1}, "girl": {"_count": 1}, "heavy": {"_count": 1}, "prefect": {"_count": 1}, "slightly": {"_count": 1}, "large": {"_count": 1}, "long": {"_count": 1}, "relative": {"_count": 1}, "quotation": {"_count": 1}}, "happened": {"_count": 3, "to": {"_count": 3}}, "warn": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 3, "Gryffindor": {"_count": 1}, "the": {"_count": 1}, "Parseltongue": {"_count": 1}}, "return": {"_count": 1, "to": {"_count": 1}}, "however": {"_count": 1, "dangerous": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "dimly": {"_count": 1, "aware": {"_count": 1}}, "an": {"_count": 2, "enormous": {"_count": 1}, "incredible": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "stole": {"_count": 1, "their": {"_count": 1}}, "slowly": {"_count": 1, "lengthening": {"_count": 1}}, "find": {"_count": 2, "that": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 3, "to": {"_count": 1}, "Travers": {"_count": 1}, "Professor": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "generous": {"_count": 1}}, "moving": {"_count": 1, "to": {"_count": 1}}, "kept": {"_count": 1, "throwing": {"_count": 1}}, "ran": {"_count": 1, "into": {"_count": 1}}, "felt": {"_count": 4, "the": {"_count": 1}, "dimly": {"_count": 1}, "an": {"_count": 1}, "slightly": {"_count": 1}}, "growing": {"_count": 1, "to": {"_count": 1}}, "know": {"_count": 1, "weve": {"_count": 1}}, "there": {"_count": 2, "looking": {"_count": 1}, "stuffed": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "gave": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "like": {"_count": 1, "to": {"_count": 1}}, "skated": {"_count": 1, "over": {"_count": 1}}, "shook": {"_count": 1, "Harrys": {"_count": 1}}, "of": {"_count": 2, "Gryffindor": {"_count": 1}, "course": {"_count": 1}}, "bought": {"_count": 1, "a": {"_count": 1}}, "applauding": {"_count": 1, "loudly": {"_count": 1}}, "traveling": {"_count": 1, "lost": {"_count": 1}}, "looking": {"_count": 4, "up": {"_count": 3}, "for": {"_count": 1}}, "my": {"_count": 1, "painful": {"_count": 1}}, "scowling": {"_count": 1, "at": {"_count": 1}}, "taken": {"_count": 1, "to": {"_count": 1}}, "bowing": {"_count": 1, "": {"_count": 1}}, "chortling": {"_count": 1, "went": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "with": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "lit": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 2, "fear": {"_count": 1}, "Firebolt": {"_count": 1}}, "smiling": {"_count": 1, "rather": {"_count": 1}}, "not": {"_count": 1, "as": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "used": {"_count": 1, "the": {"_count": 1}}, "needed": {"_count": 1, "his": {"_count": 1}}, "realized": {"_count": 1, "that": {"_count": 1}}, "remembered": {"_count": 1, "something": {"_count": 1}}, "be": {"_count": 3, "owls": {"_count": 1}, "decided": {"_count": 1}, "glad": {"_count": 1}}, "clutching": {"_count": 1, "a": {"_count": 1}}, "wondered": {"_count": 1, "why": {"_count": 1}}, "beaming": {"_count": 1, "": {"_count": 1}}, "impatient": {"_count": 1, "at": {"_count": 1}}, "holding": {"_count": 2, "a": {"_count": 1}, "so": {"_count": 1}}, "caught": {"_count": 1, "sight": {"_count": 1}}, "seemed": {"_count": 4, "too": {"_count": 1}, "to": {"_count": 1}, "vain": {"_count": 1}, "less": {"_count": 1}}, "under": {"_count": 1, "section": {"_count": 1}}, "true": {"_count": 1, "that": {"_count": 1}}, "drenched": {"_count": 1, "shook": {"_count": 1}}, "delighted": {"_count": 1, "to": {"_count": 1}}, "swigging": {"_count": 1, "butterbeer": {"_count": 1}}, "frowning": {"_count": 1, "the": {"_count": 1}}, "finding": {"_count": 1, "time": {"_count": 1}}, "think": {"_count": 2, "she": {"_count": 1}, "we": {"_count": 1}}, "reading": {"_count": 1, "the": {"_count": 1}}, "Siriuss": {"_count": 1, "eyes": {"_count": 1}}, "wearing": {"_count": 2, "several": {"_count": 1}, "the": {"_count": 1}}, "led": {"_count": 1, "to": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "turning": {"_count": 1, "a": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}, "became": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 5, "inescapable": {"_count": 1}, "matter": {"_count": 1}, "imaginative": {"_count": 1}, "only": {"_count": 1}, "wisest": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "suspended": {"_count": 1, "in": {"_count": 1}}, "deduced": {"_count": 1, "that": {"_count": 1}}, "more": {"_count": 1, "distant": {"_count": 1}}, "gazing": {"_count": 1, "up": {"_count": 1}}, "see": {"_count": 2, "Snape": {"_count": 1}, "the": {"_count": 1}}, "panting": {"_count": 1, "as": {"_count": 1}}, "leaping": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "advise": {"_count": 2, "Professor": {"_count": 1}, "Transfiguration": {"_count": 1}}, "suspected": {"_count": 1, "that": {"_count": 1}}, "spare": {"_count": 1, "quills": {"_count": 1}}, "looked": {"_count": 3, "happier": {"_count": 1}, "annoyed": {"_count": 1}, "haughty": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "perhaps": {"_count": 1, "the": {"_count": 1}}, "saved": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 1, "explain": {"_count": 1}}, "known": {"_count": 1, "to": {"_count": 1}}, "left": {"_count": 1, "you": {"_count": 1}}, "inherited": {"_count": 1, "He": {"_count": 1}}, "saw": {"_count": 1, "by": {"_count": 1}}, "likes": {"_count": 1, "the": {"_count": 1}}, "sprouted": {"_count": 1, "tentaclelike": {"_count": 1}}, "two": {"_count": 2, "seventhyear": {"_count": 1}, "broomsticks": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "shouted": {"_count": 1, "himself": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "possible": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "noticed": {"_count": 1, "that": {"_count": 1}}, "rather": {"_count": 2, "pleased": {"_count": 1}, "pale": {"_count": 1}}, "treating": {"_count": 1, "a": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}, "keen": {"_count": 1, "to": {"_count": 1}}, "standing": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 1, "very": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "broke": {"_count": 1, "the": {"_count": 1}}, "clasping": {"_count": 1, "his": {"_count": 1}}, "collapsed": {"_count": 1, "on": {"_count": 1}}, "modified": {"_count": 1, "my": {"_count": 1}}, "sure": {"_count": 1, "that": {"_count": 1}}, "tried": {"_count": 1, "tying": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "remained": {"_count": 1}}, "Dumbledores": {"_count": 1, "still": {"_count": 1}}, "another": {"_count": 1, "way": {"_count": 1}}, "something": {"_count": 1, "odd": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "who": {"_count": 1, "they": {"_count": 1}}, "parrots": {"_count": 1, "the": {"_count": 1}}, "gives": {"_count": 1, "us": {"_count": 1}}, "wet": {"_count": 1, "": {"_count": 1}}, "thick": {"_count": 1, "with": {"_count": 1}}, "killed": {"_count": 1, "": {"_count": 1}}, "heard": {"_count": 1, "within": {"_count": 1}}, "rescued": {"_count": 1, "a": {"_count": 1}}, "depends": {"_count": 1, "upon": {"_count": 1}}, "explained": {"_count": 1, "that": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "slightly": {"_count": 1, "indecent": {"_count": 1}}}, "secret": {"_count": 106, "and": {"_count": 2, "their": {"_count": 1}, "Frank": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 2}}, "": {"_count": 17, ".": {"_count": 13}, "?": {"_count": 3}, "!": {"_count": 1}}, "magic": {"_count": 1, "": {"_count": 1}}, "passageways": {"_count": 7, "of": {"_count": 1}, "and": {"_count": 3}, "so": {"_count": 1}, "on": {"_count": 1}, "covered": {"_count": 1}}, "passageway": {"_count": 4, "out": {"_count": 2}, "behind": {"_count": 1}, "": {"_count": 1}}, "weapon": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 5, "is": {"_count": 1}, "I": {"_count": 1}, "supported": {"_count": 1}, "the": {"_count": 1}, "Potter": {"_count": 1}}, "we": {"_count": 1, "hate": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "so": {"_count": 1, "naturally": {"_count": 1}}, "entrance": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "ambition": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "chamber": {"_count": 2, "at": {"_count": 1}, "under": {"_count": 1}}, "broom": {"_count": 1, "cupboard": {"_count": 1}}, "tunnel": {"_count": 1, "but": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "passage": {"_count": 2, "out": {"_count": 1}, "to": {"_count": 1}}, "passages": {"_count": 3, "theyll": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}}, "of": {"_count": 6, "our": {"_count": 1}, "the": {"_count": 1}, "how": {"_count": 1}, "finishing": {"_count": 1}, "Albus": {"_count": 1}, "my": {"_count": 1}}, "tunnels": {"_count": 1, "on": {"_count": 1}}, "inside": {"_count": 1, "a": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "community": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "idea": {"_count": 1}}, "a": {"_count": 1, "forbidden": {"_count": 1}}, "What": {"_count": 1, "": {"_count": 1}}, "hie": {"_count": 1, "Winky": {"_count": 1}}, "then": {"_count": 1, "suspension": {"_count": 1}}, "society": {"_count": 1, "said": {"_count": 1}}, "information": {"_count": 1, "out": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 2}}, "defense": {"_count": 1, "societies": {"_count": 1}}, "mission": {"_count": 1, "wasn": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 2, "on": {"_count": 1}, "only": {"_count": 1}}, "meetings": {"_count": 1, "for": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "Narcissa": {"_count": 1, "you": {"_count": 1}}, "burning": {"_count": 1, "passion": {"_count": 1}}, "plans": {"_count": 1, "in": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "method": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "organization": {"_count": 1, "known": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "messages": {"_count": 1, "with": {"_count": 1}}, "message": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 1, "Lupin": {"_count": 1}}, "including": {"_count": 1, "her": {"_count": 1}}, "havent": {"_count": 1, "I": {"_count": 1}}, "plan": {"_count": 1, "that": {"_count": 1}}, "path": {"_count": 1, "laid": {"_count": 1}}, "signs": {"_count": 1, "and": {"_count": 1}}, "workings": {"_count": 1, "of": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "its": {"_count": 1}}}, "greatest": {"_count": 45, "fear": {"_count": 2, "was": {"_count": 2}}, "sorcerer": {"_count": 3, "in": {"_count": 3}}, "headmaster": {"_count": 2, "Hogwarts": {"_count": 2}}, "wizard": {"_count": 9, "of": {"_count": 6}, "in": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "wizards": {"_count": 1, "havent": {"_count": 1}}, "Dark": {"_count": 1, "sorcerer": {"_count": 1}}, "achievement": {"_count": 1, "to": {"_count": 1}}, "regret": {"_count": 3, "therefore": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "friend": {"_count": 1, "but": {"_count": 1}}, "secrecy": {"_count": 1, "": {"_count": 1}}, "ambition": {"_count": 1, "to": {"_count": 1}}, "Ministers": {"_count": 1, "of": {"_count": 1}}, "treasure": {"_count": 3, "said": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "weakness": {"_count": 3, "was": {"_count": 1}, "Another": {"_count": 1}, "He": {"_count": 1}}, "sympathy": {"_count": 1, "with": {"_count": 1}}, "strength": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "treasures": {"_count": 1, "were": {"_count": 1}}, "pleasure": {"_count": 1, "lay": {"_count": 1}}, "loss": {"_count": 1, "and": {"_count": 1}}, "champion": {"_count": 1, "": {"_count": 1}}, "treasureV": {"_count": 1, "He": {"_count": 1}}, "effort": {"_count": 1, "it": {"_count": 1}}}, "fear": {"_count": 140, "was": {"_count": 6, "that": {"_count": 2}, "spiders": {"_count": 1}, "one": {"_count": 1}, "Peeves": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 32}, "!": {"_count": 1}, "?": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "the": {"_count": 4, "troll": {"_count": 1}, "thing": {"_count": 2}, "people": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "flitted": {"_count": 1, "across": {"_count": 1}}, "of": {"_count": 18, "the": {"_count": 1}, "a": {"_count": 3}, "Professor": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 2}, "injury": {"_count": 1}, "your": {"_count": 1}, "attack": {"_count": 1}, "this": {"_count": 1}, "being": {"_count": 2}, "identification": {"_count": 1}, "exposure": {"_count": 1}, "death": {"_count": 1}, "more": {"_count": 1}}, "if": {"_count": 1, "Id": {"_count": 1}}, "and": {"_count": 12, "excitement": {"_count": 1}, "alarm": {"_count": 1}, "sympathy": {"_count": 1}, "surprise": {"_count": 2}, "despair": {"_count": 2}, "steered": {"_count": 1}, "guilt": {"_count": 1}, "exhaustion": {"_count": 1}, "they": {"_count": 1}, "anxiety": {"_count": 1}}, "Malfoy": {"_count": 1, "thought": {"_count": 1}}, "drain": {"_count": 1, "out": {"_count": 1}}, "had": {"_count": 2, "spread": {"_count": 1}, "snuffed": {"_count": 1}}, "above": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 2, "speak": {"_count": 1}, "an": {"_count": 1}}, "spreading": {"_count": 1, "up": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "with": {"_count": 1}}, "came": {"_count": 2, "over": {"_count": 1}, "Her": {"_count": 1}}, "assassination": {"_count": 1, "too": {"_count": 1}}, "or": {"_count": 3, "rage": {"_count": 1}, "reason": {"_count": 1}, "speculation": {"_count": 1}}, "that": {"_count": 5, "Potter": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}}, "as": {"_count": 3, "his": {"_count": 1}, "Voldemorts": {"_count": 1}, "a": {"_count": 1}}, "them": {"_count": 1, "how": {"_count": 1}}, "from": {"_count": 3, "Voldemort": {"_count": 1}, "a": {"_count": 1}, "returning": {"_count": 1}}, "confirmed": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "handing": {"_count": 1, "me": {"_count": 1}}, "these": {"_count": 1, "doubters": {"_count": 1}}, "in": {"_count": 8, "Dobby": {"_count": 1}, "both": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}, "Malfoys": {"_count": 1}, "which": {"_count": 1}, "our": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "light": {"_count": 1, "and": {"_count": 1}}, "swelled": {"_count": 1, "inside": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "bay": {"_count": 1}}, "bubbled": {"_count": 1, "like": {"_count": 1}}, "amongst": {"_count": 1, "many": {"_count": 1}}, "rippling": {"_count": 1, "through": {"_count": 1}}, "fluttering": {"_count": 1, "in": {"_count": 1}}, "cloud": {"_count": 1, "his": {"_count": 1}}, "leavened": {"_count": 1, "his": {"_count": 1}}, "He": {"_count": 2, "had": {"_count": 1}, "saw": {"_count": 1}}, "mounted": {"_count": 1, "to": {"_count": 1}}, "attack": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 1, "had": {"_count": 1}}, "hot": {"_count": 1, "swords": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "burned": {"_count": 1, "inside": {"_count": 1}}, "gripping": {"_count": 1, "him": {"_count": 1}}, "infected": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "somebody": {"_count": 129, "would": {"_count": 1, "discover": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 1}, "!": {"_count": 1}}, "whimpering": {"_count": 1, "from": {"_count": 1}}, "who": {"_count": 7, "looked": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 1}, "really": {"_count": 1}, "has": {"_count": 1}, "gets": {"_count": 1}}, "else": {"_count": 20, "": {"_count": 5}, "attacked": {"_count": 1}, "who": {"_count": 1}, "wanted": {"_count": 1}, "sniffed": {"_count": 1}, "would": {"_count": 3}, "in": {"_count": 1}, "took": {"_count": 1}, "so": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 2}, "to": {"_count": 1}, "with": {"_count": 1}}, "elses": {"_count": 5, "memory": {"_count": 2}, "office": {"_count": 1}, "path": {"_count": 1}, "hand": {"_count": 1}}, "had": {"_count": 15, "just": {"_count": 3}, "pasted": {"_count": 1}, "smashed": {"_count": 1}, "bewitched": {"_count": 1}, "been": {"_count": 2}, "yelled": {"_count": 1}, "let": {"_count": 1}, "tipped": {"_count": 1}, "nailed": {"_count": 1}, "left": {"_count": 1}, "searched": {"_count": 1}, "called": {"_count": 1}}, "come": {"_count": 1, "in": {"_count": 1}}, "took": {"_count": 1, "this": {"_count": 1}}, "was": {"_count": 9, "about": {"_count": 1}, "playing": {"_count": 1}, "approaching": {"_count": 1}, "dead": {"_count": 1}, "going": {"_count": 2}, "if": {"_count": 1}, "cooking": {"_count": 1}, "firing": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 4, "let": {"_count": 1}, "cure": {"_count": 1}, "remain": {"_count": 1}, "organize": {"_count": 1}}, "welcoming": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "with": {"_count": 1, "brains": {"_count": 1}}, "whose": {"_count": 1, "loyalty": {"_count": 1}}, "standing": {"_count": 1, "just": {"_count": 1}}, "over": {"_count": 1, "Malfoys": {"_count": 1}}, "highly": {"_count": 1, "dangerous": {"_count": 1}}, "hed": {"_count": 1, "thought": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "soon": {"_count": 1, "he": {"_count": 1}}, "just": {"_count": 1, "wanted": {"_count": 1}}, "small": {"_count": 1, "and": {"_count": 1}}, "deaf": {"_count": 1, "": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "both": {"_count": 1, "foreign": {"_count": 1}}, "hammered": {"_count": 1, "hard": {"_count": 1}}, "is": {"_count": 1, "lying": {"_count": 1}}, "cried": {"_count": 1, "No": {"_count": 1}}, "tapped": {"_count": 1, "him": {"_count": 1}}, "adjusted": {"_count": 1, "their": {"_count": 1}}, "very": {"_count": 1, "obtuse": {"_count": 1}}, "your": {"_count": 1, "end": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "coughed": {"_count": 1, "behind": {"_count": 1}}, "screamed": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "yelled": {"_count": 1, "and": {"_count": 1}}, "anybody": {"_count": 1, "else": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "drifting": {"_count": 1, "across": {"_count": 1}}, "has": {"_count": 1, "suffered": {"_count": 1}}, "up": {"_count": 1, "ahead": {"_count": 1}}, "she": {"_count": 1, "knew": {"_count": 1}}, "wellknown": {"_count": 1, "or": {"_count": 1}}, "looked": {"_count": 1, "into": {"_count": 1}}, "nailed": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "Magical": {"_count": 1}}, "out": {"_count": 1, "there": {"_count": 1}}, "went": {"_count": 1, "in": {"_count": 1}}, "already": {"_count": 1, "in": {"_count": 1}}, "knew": {"_count": 1, "they": {"_count": 1}}, "erupted": {"_count": 1, "through": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "near": {"_count": 1, "him": {"_count": 1}}, "young": {"_count": 1, "and": {"_count": 1}}, "betrayed": {"_count": 1, "us": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "swapped": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 1, "or": {"_count": 1}}, "stood": {"_count": 1, "beyond": {"_count": 1}}, "blundering": {"_count": 1, "around": {"_count": 1}}}, "would": {"_count": 2203, "discover": {"_count": 1, "it": {"_count": 1}}, "say": {"_count": 21, "if": {"_count": 8}, "as": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "probable": {"_count": 1}, "such": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 3}, "said": {"_count": 1}, "when": {"_count": 1}, "its": {"_count": 1}, "": {"_count": 1}}, "soon": {"_count": 9, "be": {"_count": 4}, "have": {"_count": 1}, "expect": {"_count": 1}, "need": {"_count": 1}, "become": {"_count": 1}, "spill": {"_count": 1}}, "be": {"_count": 419, "it": {"_count": 1}, "if": {"_count": 4}, "enough": {"_count": 5}, "woken": {"_count": 1}, "a": {"_count": 22}, "going": {"_count": 2}, "so": {"_count": 2}, "too": {"_count": 5}, "coming": {"_count": 4}, "starting": {"_count": 2}, "learning": {"_count": 1}, "playing": {"_count": 4}, "replacing": {"_count": 1}, "staying": {"_count": 3}, "seeing": {"_count": 1}, "able": {"_count": 32}, "walking": {"_count": 1}, "said": {"_count": 1}, "easy": {"_count": 1}, "no": {"_count": 7}, "back": {"_count": 5}, "spending": {"_count": 2}, "the": {"_count": 14}, "quite": {"_count": 6}, "better": {"_count": 3}, "traveling": {"_count": 1}, "any": {"_count": 1}, "harmony": {"_count": 1}, "impossible": {"_count": 3}, "such": {"_count": 1}, "most": {"_count": 3}, "expelled": {"_count": 2}, "difficult": {"_count": 1}, "some": {"_count": 1}, "free": {"_count": 1}, "in": {"_count": 8}, "attacked": {"_count": 1}, "instructive": {"_count": 1}, "unsporting": {"_count": 1}, "getting": {"_count": 1}, "forcefed": {"_count": 1}, "those": {"_count": 1}, "of": {"_count": 2}, "against": {"_count": 1}, "to": {"_count": 7}, "ter": {"_count": 1}, "exams": {"_count": 1}, "useful": {"_count": 2}, "Dumbledore": {"_count": 1}, "quick": {"_count": 1}, "much": {"_count": 2}, "unable": {"_count": 1}, "delighted": {"_count": 5}, "wonderful": {"_count": 2}, "": {"_count": 6}, "panicstricken": {"_count": 1}, "just": {"_count": 1}, "carefully": {"_count": 1}, "all": {"_count": 3}, "out": {"_count": 1}, "canceled": {"_count": 1}, "an": {"_count": 6}, "very": {"_count": 5}, "leaving": {"_count": 5}, "because": {"_count": 1}, "perfect": {"_count": 1}, "er": {"_count": 1}, "sure": {"_count": 3}, "suspended": {"_count": 1}, "running": {"_count": 1}, "appearing": {"_count": 2}, "living": {"_count": 1}, "foolish": {"_count": 3}, "when": {"_count": 1}, "expected": {"_count": 1}, "Hermiones": {"_count": 1}, "writing": {"_count": 1}, "best": {"_count": 2}, "arriving": {"_count": 2}, "on": {"_count": 1}, "propelled": {"_count": 1}, "his": {"_count": 1}, "putting": {"_count": 1}, "clearly": {"_count": 3}, "for": {"_count": 5}, "quicker": {"_count": 1}, "something": {"_count": 2}, "beside": {"_count": 1}, "sitting": {"_count": 3}, "facing": {"_count": 2}, "speaking": {"_count": 1}, "questioned": {"_count": 1}, "Harrys": {"_count": 1}, "nicely": {"_count": 1}, "breathing": {"_count": 1}, "testing": {"_count": 1}, "great": {"_count": 1}, "thrown": {"_count": 1}, "rushing": {"_count": 1}, "like": {"_count": 2}, "disturbed": {"_count": 1}, "forewarned": {"_count": 1}, "worth": {"_count": 1}, "lost": {"_count": 1}, "highly": {"_count": 1}, "regaining": {"_count": 1}, "sent": {"_count": 1}, "played": {"_count": 1}, "only": {"_count": 1}, "announced": {"_count": 1}, "hot": {"_count": 1}, "spotted": {"_count": 1}, "awoken": {"_count": 1}, "headline": {"_count": 2}, "really": {"_count": 2}, "risking": {"_count": 1}, "heading": {"_count": 1}, "less": {"_count": 2}, "dangerous": {"_count": 1}, "returning": {"_count": 2}, "me": {"_count": 1}, "you": {"_count": 2}, "teaching": {"_count": 2}, "lucky": {"_count": 1}, "receiving": {"_count": 1}, "nice": {"_count": 1}, "allowed": {"_count": 2}, "up": {"_count": 1}, "interested": {"_count": 2}, "good": {"_count": 3}, "churlish": {"_count": 1}, "hard": {"_count": 1}, "inspecting": {"_count": 1}, "unwise": {"_count": 4}, "one": {"_count": 2}, "ashamed": {"_count": 1}, "ideally": {"_count": 1}, "Professor": {"_count": 1}, "someone": {"_count": 1}, "sacked": {"_count": 1}, "mine": {"_count": 1}, "ridiculous": {"_count": 1}, "at": {"_count": 1}, "insane": {"_count": 1}, "within": {"_count": 1}, "required": {"_count": 1}, "taking": {"_count": 2}, "sufficient": {"_count": 1}, "waiting": {"_count": 1}, "ten": {"_count": 1}, "protected": {"_count": 1}, "suitable": {"_count": 1}, "born": {"_count": 1}, "with": {"_count": 1}, "safer": {"_count": 1}, "glad": {"_count": 2}, "optimistic": {"_count": 1}, "haunted": {"_count": 1}, "burning": {"_count": 1}, "more": {"_count": 2}, "tantamount": {"_count": 1}, "poor": {"_count": 1}, "angry": {"_count": 1}, "Neville": {"_count": 1}, "neither": {"_count": 1}, "halfway": {"_count": 1}, "dropping": {"_count": 1}, "welladvised": {"_count": 1}, "around": {"_count": 1}, "plenty": {"_count": 1}, "devastated": {"_count": 1}, "friends": {"_count": 1}, "surfacing": {"_count": 1}, "down": {"_count": 1}, "astonished": {"_count": 1}, "missed": {"_count": 2}, "honored": {"_count": 1}, "entering": {"_count": 1}, "welcome": {"_count": 1}, "seventeen": {"_count": 1}, "prepared": {"_count": 3}, "preferable": {"_count": 1}, "unleashed": {"_count": 1}, "entirely": {"_count": 1}, "third": {"_count": 1}, "rejoining": {"_count": 1}, "filled": {"_count": 1}, "drowned": {"_count": 1}, "draped": {"_count": 1}, "asked": {"_count": 1}, "laid": {"_count": 1}, "another": {"_count": 1}, "scorched": {"_count": 1}, "utterly": {"_count": 1}, "tactless": {"_count": 1}, "seven": {"_count": 2}, "solved": {"_count": 1}, "excruciatingly": {"_count": 1}, "sharing": {"_count": 1}, "fine": {"_count": 1}, "prudent": {"_count": 2}, "different": {"_count": 1}, "poring": {"_count": 1}, "spared": {"_count": 1}, "loyal": {"_count": 1}, "time": {"_count": 3}, "sensible": {"_count": 1}, "magic": {"_count": 1}, "immeasurably": {"_count": 1}, "bound": {"_count": 1}, "possible": {"_count": 1}, "master": {"_count": 1}, "virtually": {"_count": 1}, "proclaimed": {"_count": 1}, "close": {"_count": 1}, "its": {"_count": 1}, "scared": {"_count": 1}, "covered": {"_count": 1}, "clean": {"_count": 1}, "finished": {"_count": 1}, "gone": {"_count": 1}, "repaid": {"_count": 1}, "right": {"_count": 1}, "permitted": {"_count": 1}, "sorted": {"_count": 1}, "lovely": {"_count": 1}}, "trust": {"_count": 1, "Hagrid": {"_count": 1}}, "expect": {"_count": 6, "astonishing": {"_count": 1}, "first": {"_count": 1}, "to": {"_count": 1}, "him": {"_count": 1}, "nothing": {"_count": 1}, "Harry": {"_count": 1}}, "spend": {"_count": 2, "the": {"_count": 1}, "Christmas": {"_count": 1}}, "give": {"_count": 16, "him": {"_count": 3}, "way": {"_count": 1}, "their": {"_count": 1}, "us": {"_count": 1}, "anything": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 2}, "the": {"_count": 1}, "everyone": {"_count": 1}, "better": {"_count": 1}, "away": {"_count": 2}}, "": {"_count": 22, "?": {"_count": 3}, "!": {"_count": 5}, ".": {"_count": 14}}, "listen": {"_count": 6, "at": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}, "Dudley": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "take": {"_count": 26, "a": {"_count": 3}, "him": {"_count": 6}, "Dark": {"_count": 1}, "this": {"_count": 1}, "second": {"_count": 1}, "place": {"_count": 3}, "hours": {"_count": 1}, "the": {"_count": 2}, "them": {"_count": 1}, "what": {"_count": 1}, "his": {"_count": 1}, "more": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 1}, "Voldemort": {"_count": 1}, "Harrys": {"_count": 1}}, "mutter": {"_count": 1, "whenever": {"_count": 1}}, "remember": {"_count": 4, "at": {"_count": 1}, "this": {"_count": 1}, "as": {"_count": 1}, "nothing": {"_count": 1}}, "have": {"_count": 374, "quailed": {"_count": 1}, "been": {"_count": 94}, "done": {"_count": 14}, "felt": {"_count": 5}, "because": {"_count": 1}, "to": {"_count": 31}, "screamed": {"_count": 1}, "a": {"_count": 5}, "believed": {"_count": 3}, "thought": {"_count": 12}, "made": {"_count": 6}, "liked": {"_count": 11}, "pointed": {"_count": 1}, "saved": {"_count": 3}, "refused": {"_count": 1}, "asked": {"_count": 3}, "found": {"_count": 5}, "given": {"_count": 9}, "meant": {"_count": 3}, "assigned": {"_count": 1}, "helped": {"_count": 1}, "stood": {"_count": 1}, "involved": {"_count": 1}, "resulted": {"_count": 1}, "wanted": {"_count": 7}, "had": {"_count": 3}, "the": {"_count": 4}, "died": {"_count": 3}, "understood": {"_count": 1}, "shown": {"_count": 1}, "killed": {"_count": 3}, "seen": {"_count": 5}, "happened": {"_count": 4}, "heard": {"_count": 2}, "said": {"_count": 4}, "dearly": {"_count": 1}, "taken": {"_count": 4}, "spotted": {"_count": 1}, "suited": {"_count": 1}, "realized": {"_count": 1}, "normally": {"_count": 1}, "needed": {"_count": 2}, "passed": {"_count": 2}, "scared": {"_count": 1}, "known": {"_count": 10}, "told": {"_count": 8}, "stayed": {"_count": 1}, "if": {"_count": 1}, "put": {"_count": 2}, "something": {"_count": 1}, "supported": {"_count": 1}, "you": {"_count": 1}, "expected": {"_count": 8}, "attracted": {"_count": 1}, "talked": {"_count": 1}, "emerged": {"_count": 1}, "appeared": {"_count": 1}, "broken": {"_count": 1}, "called": {"_count": 1}, "vanished": {"_count": 1}, "plowed": {"_count": 1}, "anything": {"_count": 1}, "got": {"_count": 1}, "received": {"_count": 1}, "failed": {"_count": 1}, "written": {"_count": 1}, "less": {"_count": 1}, "attacked": {"_count": 1}, "strung": {"_count": 1}, "kissed": {"_count": 1}, "dared": {"_count": 1}, "preferred": {"_count": 4}, "looked": {"_count": 2}, "knocked": {"_count": 1}, "stopped": {"_count": 1}, "such": {"_count": 1}, "\u2018power": {"_count": 1}, "caved": {"_count": 1}, "very": {"_count": 1}, "returned": {"_count": 1}, "guessed": {"_count": 1}, "loved": {"_count": 1}, "suggested": {"_count": 1}, "wished": {"_count": 1}, "seemed": {"_count": 1}, "quite": {"_count": 1}, "happily": {"_count": 2}, "leaked": {"_count": 1}, "ample": {"_count": 1}, "let": {"_count": 1}, "hoped": {"_count": 1}, "scribbled": {"_count": 1}, "chosen": {"_count": 1}, "gladly": {"_count": 1}, "just": {"_count": 1}, "served": {"_count": 1}, "recognized": {"_count": 2}, "us": {"_count": 1}, "defeated": {"_count": 1}, "dreamed": {"_count": 1}, "no": {"_count": 1}, "regarded": {"_count": 1}, "stretched": {"_count": 1}, "left": {"_count": 1}, "considered": {"_count": 1}, "defended": {"_count": 1}, "disapproved": {"_count": 1}, "drawn": {"_count": 1}, "much": {"_count": 1}, "hidden": {"_count": 1}, "grown": {"_count": 1}, "only": {"_count": 1}, "struck": {"_count": 1}, "destroyed": {"_count": 1}, "staked": {"_count": 1}, "lain": {"_count": 1}, "hers": {"_count": 1}, "sought": {"_count": 1}, "wondered": {"_count": 1}, "envied": {"_count": 1}, "gone": {"_count": 1}, "filled": {"_count": 1}, "used": {"_count": 1}}, "yeh": {"_count": 5, "be": {"_count": 1}, "mind": {"_count": 2}, "know": {"_count": 1}, "not": {"_count": 1}}, "you": {"_count": 46, "be": {"_count": 4}, "like": {"_count": 7}, "look": {"_count": 1}, "know": {"_count": 1}, "": {"_count": 10}, "escort": {"_count": 1}, "say": {"_count": 6}, "dread": {"_count": 1}, "mind": {"_count": 3}, "feel": {"_count": 2}, "if": {"_count": 2}, "prefer": {"_count": 1}, "not": {"_count": 2}, "Harry": {"_count": 1}, "ask": {"_count": 1}, "now": {"_count": 1}, "call": {"_count": 1}, "take": {"_count": 1}}, "blink": {"_count": 1, "": {"_count": 1}}, "surprise": {"_count": 1, "him": {"_count": 1}}, "usually": {"_count": 3, "have": {"_count": 3}}, "he": {"_count": 31, "have": {"_count": 8}, "want": {"_count": 3}, "simply": {"_count": 1}, "write": {"_count": 1}, "reply": {"_count": 1}, "": {"_count": 5}, "put": {"_count": 1}, "know": {"_count": 1}, "do": {"_count": 2}, "go": {"_count": 1}, "be": {"_count": 2}, "tell": {"_count": 2}, "knew": {"_count": 1}, "not": {"_count": 1}, "ever": {"_count": 1}}, "come": {"_count": 20, "back": {"_count": 4}, "in": {"_count": 3}, "off": {"_count": 1}, "facetoface": {"_count": 1}, "and": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 3}, "under": {"_count": 1}, "second": {"_count": 1}, "up": {"_count": 1}, "said": {"_count": 1}, "true": {"_count": 1}, "Harry": {"_count": 1}}, "like": {"_count": 56, "to": {"_count": 29}, "him": {"_count": 2}, "a": {"_count": 4}, "all": {"_count": 1}, "that": {"_count": 2}, "it": {"_count": 1}, "you": {"_count": 10}, "very": {"_count": 1}, "nothing": {"_count": 2}, "another": {"_count": 1}, "each": {"_count": 1}, "": {"_count": 2}}, "prefer": {"_count": 11, "you": {"_count": 1}, "me": {"_count": 1}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}, "not": {"_count": 1}, "that": {"_count": 2}, "him": {"_count": 1}, "to": {"_count": 1}, "objects": {"_count": 1}, "fewer": {"_count": 1}}, "do": {"_count": 21, "well": {"_count": 3}, "": {"_count": 2}, "the": {"_count": 2}, "him": {"_count": 1}, "it": {"_count": 3}, "you": {"_count": 1}, "better": {"_count": 3}, "whatever": {"_count": 1}, "if": {"_count": 3}, "so": {"_count": 1}, "with": {"_count": 1}}, "drop": {"_count": 1, "wastepaper": {"_count": 1}}, "I": {"_count": 18, "get": {"_count": 1}, "be": {"_count": 1}, "want": {"_count": 3}, "throw": {"_count": 1}, "go": {"_count": 1}, "kill": {"_count": 1}, "Potter": {"_count": 1}, "like": {"_count": 2}, "just": {"_count": 1}, "look": {"_count": 2}, "": {"_count": 3}, "am": {"_count": 1}}, "go": {"_count": 14, "without": {"_count": 1}, "so": {"_count": 1}, "to": {"_count": 2}, "out": {"_count": 1}, "nuts": {"_count": 1}, "away": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 2}, "first": {"_count": 1}}, "meet": {"_count": 3, "a": {"_count": 1}, "some": {"_count": 1}, "again": {"_count": 1}}, "tell": {"_count": 7, "anyone": {"_count": 1}, "them": {"_count": 1}, "": {"_count": 1}, "Riddle": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}}, "the": {"_count": 4, "Dursleys": {"_count": 1}, "matter": {"_count": 1}, "Death": {"_count": 1}, "goblins": {"_count": 1}}, "put": {"_count": 5, "his": {"_count": 2}, "you": {"_count": 1}, "on": {"_count": 1}, "him": {"_count": 1}}, "move": {"_count": 3, "up": {"_count": 1}, "onward": {"_count": 1}, "then": {"_count": 1}}, "never": {"_count": 58, "let": {"_count": 1}, "know": {"_count": 2}, "have": {"_count": 16}, "quite": {"_count": 1}, "betray": {"_count": 1}, "tell": {"_count": 1}, "ever": {"_count": 3}, "end": {"_count": 1}, "ve": {"_count": 1}, "need": {"_count": 1}, "send": {"_count": 1}, "be": {"_count": 3}, "dream": {"_count": 3}, "take": {"_count": 1}, "throw": {"_count": 1}, "catch": {"_count": 1}, "reach": {"_count": 2}, "allow": {"_count": 1}, "arrive": {"_count": 1}, "move": {"_count": 1}, "forgive": {"_count": 3}, "use": {"_count": 1}, "as": {"_count": 1}, "bring": {"_count": 1}, "attack": {"_count": 1}, "again": {"_count": 1}, "pierce": {"_count": 1}, "appear": {"_count": 1}, "talk": {"_count": 1}, "see": {"_count": 1}, "eat": {"_count": 1}, "visit": {"_count": 1}, "claim": {"_count": 1}}, "jump": {"_count": 1, "higher": {"_count": 1}}, "Snape": {"_count": 1, "do": {"_count": 1}}, "probably": {"_count": 13, "be": {"_count": 3}, "tell": {"_count": 2}, "have": {"_count": 2}, "increase": {"_count": 1}, "warm": {"_count": 1}, "remind": {"_count": 1}, "prove": {"_count": 1}, "block": {"_count": 1}, "wear": {"_count": 1}}, "look": {"_count": 11, "into": {"_count": 1}, "if": {"_count": 1}, "much": {"_count": 2}, "away": {"_count": 1}, "at": {"_count": 1}, "so": {"_count": 1}, "very": {"_count": 1}, "a": {"_count": 1}, "lovely": {"_count": 1}, "nice": {"_count": 1}}, "overtake": {"_count": 1, "Slytherin": {"_count": 1}}, "hear": {"_count": 8, "Harry": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 2}, "him": {"_count": 2}, "them": {"_count": 1}, "anything": {"_count": 1}}, "want": {"_count": 18, "it": {"_count": 2}, "to": {"_count": 12}, "Harry": {"_count": 1}, "with": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}}, "they": {"_count": 15, "be": {"_count": 2}, "": {"_count": 7}, "say": {"_count": 1}, "all": {"_count": 1}, "do": {"_count": 1}, "turn": {"_count": 1}, "if": {"_count": 1}, "realize": {"_count": 1}}, "dare": {"_count": 2, "to": {"_count": 1}, "attack": {"_count": 1}}, "press": {"_count": 1, "their": {"_count": 1}}, "she": {"_count": 11, "recognize": {"_count": 1}, "have": {"_count": 2}, "allow": {"_count": 1}, "say": {"_count": 4}, "": {"_count": 1}, "please": {"_count": 1}, "sighed": {"_count": 1}}, "accept": {"_count": 3, "for": {"_count": 1}, "that": {"_count": 1}, "nothing": {"_count": 1}}, "lose": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "happen": {"_count": 26, "when": {"_count": 4}, "if": {"_count": 8}, "": {"_count": 4}, "to": {"_count": 5}, "with": {"_count": 1}, "sir": {"_count": 1}, "in": {"_count": 1}, "next": {"_count": 2}}, "speak": {"_count": 3, "to": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "commit": {"_count": 1, "such": {"_count": 1}}, "trip": {"_count": 1, "": {"_count": 1}}, "find": {"_count": 14, "One": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 4}, "there": {"_count": 1}, "that": {"_count": 1}, "funny": {"_count": 1}, "inside": {"_count": 1}, "it": {"_count": 2}, "a": {"_count": 1}, "him": {"_count": 1}}, "suspect": {"_count": 1, "pppoor": {"_count": 1}}, "amuse": {"_count": 1, "you": {"_count": 1}}, "choose": {"_count": 1, "above": {"_count": 1}}, "make": {"_count": 34, "him": {"_count": 4}, "my": {"_count": 2}, "Harry": {"_count": 1}, "things": {"_count": 1}, "it": {"_count": 3}, "some": {"_count": 2}, "your": {"_count": 2}, "his": {"_count": 1}, "a": {"_count": 4}, "Ron": {"_count": 2}, "the": {"_count": 1}, "sense": {"_count": 1}, "of": {"_count": 1}, "Snape": {"_count": 1}, "up": {"_count": 3}, "you": {"_count": 1}, "her": {"_count": 1}, "our": {"_count": 1}, "its": {"_count": 1}, "to": {"_count": 1}}, "carry": {"_count": 3, "him": {"_count": 1}, "down": {"_count": 1}, "her": {"_count": 1}}, "sound": {"_count": 4, "too": {"_count": 1}, "very": {"_count": 2}, "highly": {"_count": 1}}, "manage": {"_count": 1, "to": {"_count": 1}}, "flay": {"_count": 1, "him": {"_count": 1}}, "also": {"_count": 5, "ask": {"_count": 1}, "like": {"_count": 1}, "be": {"_count": 1}, "advise": {"_count": 2}}, "expel": {"_count": 1, "him": {"_count": 1}}, "anyone": {"_count": 5, "bother": {"_count": 2}, "want": {"_count": 2}, "put": {"_count": 1}}, "admit": {"_count": 1, "their": {"_count": 1}}, "get": {"_count": 9, "Harry": {"_count": 1}, "to": {"_count": 1}, "detention": {"_count": 1}, "back": {"_count": 1}, "rid": {"_count": 1}, "dragged": {"_count": 1}, "the": {"_count": 1}, "angry": {"_count": 1}, "away": {"_count": 1}}, "stretch": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 2, "ever": {"_count": 1}, "want": {"_count": 1}}, "think": {"_count": 10, "it": {"_count": 1}, "wouldnt": {"_count": 1}, "thats": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 1}, "she": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}, "poorly": {"_count": 1}}, "stop": {"_count": 5, "and": {"_count": 1}, "talking": {"_count": 1}, "hurting": {"_count": 1}, "doing": {"_count": 1}, "prickling": {"_count": 1}}, "buy": {"_count": 1, "you": {"_count": 1}}, "remind": {"_count": 3, "you": {"_count": 2}, "everybody": {"_count": 1}}, "shortly": {"_count": 5, "be": {"_count": 4}, "become": {"_count": 1}}, "see": {"_count": 12, "this": {"_count": 1}, "through": {"_count": 1}, "them": {"_count": 1}, "Ron": {"_count": 1}, "Umbridge": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 2}, "when": {"_count": 1}, "": {"_count": 1}, "their": {"_count": 1}}, "it": {"_count": 23, "be": {"_count": 10}, "have": {"_count": 2}, "take": {"_count": 3}, "": {"_count": 4}, "would": {"_count": 1}, "fill": {"_count": 1}, "rest": {"_count": 1}, "still": {"_count": 1}}, "his": {"_count": 2, "ideal": {"_count": 1}, "Mistress": {"_count": 1}}, "bid": {"_count": 1, "for": {"_count": 1}}, "clear": {"_count": 1, "his": {"_count": 1}}, "qualify": {"_count": 1, "you": {"_count": 1}}, "distract": {"_count": 1, "Filch": {"_count": 1}}, "attend": {"_count": 1, "": {"_count": 1}}, "explain": {"_count": 2, "a": {"_count": 2}}, "help": {"_count": 9, "you": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 4}, "": {"_count": 2}, "as": {"_count": 1}}, "know": {"_count": 20, "it": {"_count": 1}, "Fred": {"_count": 1}, "exactly": {"_count": 1}, "if": {"_count": 2}, "Harry": {"_count": 2}, "that": {"_count": 2}, "what": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 2}, "straightaway": {"_count": 1}, "I": {"_count": 1}, "eventually": {"_count": 1}, "all": {"_count": 1}, "at": {"_count": 1}}, "entrust": {"_count": 2, "to": {"_count": 2}}, "ever": {"_count": 17, "know": {"_count": 2}, "like": {"_count": 1}, "have": {"_count": 1}, "see": {"_count": 1}, "deflect": {"_count": 1}, "fade": {"_count": 1}, "be": {"_count": 2}, "feel": {"_count": 2}, "guess": {"_count": 1}, "ever": {"_count": 1}, "succeed": {"_count": 1}, "meet": {"_count": 1}, "sell": {"_count": 1}, "look": {"_count": 1}}, "not": {"_count": 146, "want": {"_count": 4}, "say": {"_count": 2}, "be": {"_count": 31}, "have": {"_count": 31}, "give": {"_count": 3}, "rise": {"_count": 2}, "know": {"_count": 3}, "survive": {"_count": 1}, "agree": {"_count": 1}, "move": {"_count": 1}, "close": {"_count": 1}, "go": {"_count": 3}, "object": {"_count": 1}, "care": {"_count": 1}, "usually": {"_count": 1}, "hear": {"_count": 3}, "permit": {"_count": 2}, "tell": {"_count": 2}, "inflict": {"_count": 1}, "budge": {"_count": 3}, "speak": {"_count": 1}, "look": {"_count": 1}, "reach": {"_count": 1}, "let": {"_count": 5}, "sleep": {"_count": 1}, "break": {"_count": 1}, "support": {"_count": 2}, "believe": {"_count": 1}, "satisfy": {"_count": 1}, "think": {"_count": 2}, "turn": {"_count": 1}, "open": {"_count": 3}, "rest": {"_count": 2}, "like": {"_count": 2}, "risk": {"_count": 1}, "expect": {"_count": 1}, "come": {"_count": 1}, "find": {"_count": 2}, "dare": {"_count": 1}, "take": {"_count": 2}, "of": {"_count": 1}, "weesh": {"_count": 1}, "involve": {"_count": 1}, "see": {"_count": 1}, "notice": {"_count": 1}, "carry": {"_count": 1}, "": {"_count": 1}, "remain": {"_count": 1}, "make": {"_count": 1}, "do": {"_count": 1}, "suffer": {"_count": 1}, "yield": {"_count": 1}, "duck": {"_count": 1}, "perhaps": {"_count": 1}, "affect": {"_count": 1}, "hit": {"_count": 1}, "kill": {"_count": 1}}, "urge": {"_count": 2, "anyone": {"_count": 1}, "even": {"_count": 1}}, "advise": {"_count": 4, "you": {"_count": 4}}, "end": {"_count": 1, "up": {"_count": 1}}, "said": {"_count": 11, "Ron": {"_count": 4}, "Mr": {"_count": 1}, "Fred": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 3}, "Hermione": {"_count": 1}}, "support": {"_count": 1, "him": {"_count": 1}}, "start": {"_count": 3, "on": {"_count": 1}, "shouting": {"_count": 2}}, "one": {"_count": 4, "day": {"_count": 3}, "Horcrux": {"_count": 1}}, "perform": {"_count": 1, "a": {"_count": 1}}, "notice": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "simply": {"_count": 2, "love": {"_count": 1}, "ask": {"_count": 1}}, "knock": {"_count": 1, "some": {"_count": 1}}, "face": {"_count": 1, "expulsion": {"_count": 1}}, "lie": {"_count": 1, "low": {"_count": 1}}, "feel": {"_count": 13, "to": {"_count": 1}, "like": {"_count": 2}, "if": {"_count": 4}, "somehow": {"_count": 1}, "better": {"_count": 2}, "shaky": {"_count": 1}, "": {"_count": 1}, "elated": {"_count": 1}}, "cost": {"_count": 1, "": {"_count": 1}}, "include": {"_count": 1, "those": {"_count": 1}}, "at": {"_count": 2, "least": {"_count": 1}, "last": {"_count": 1}}, "of": {"_count": 7, "course": {"_count": 7}}, "terrify": {"_count": 1, "him": {"_count": 1}}, "finish": {"_count": 4, "him": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}, "Diggory": {"_count": 1}}, "Harry": {"_count": 2, "have": {"_count": 1}, "Potter": {"_count": 1}}, "mean": {"_count": 11, "to": {"_count": 1}, "cutting": {"_count": 1}, "he": {"_count": 1}, "trouble": {"_count": 1}, "another": {"_count": 1}, "placing": {"_count": 1}, "missing": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "revolution": {"_count": 1}, "an": {"_count": 1}}, "suffice": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "assist": {"_count": 1, "me": {"_count": 1}}, "leave": {"_count": 1, "it": {"_count": 1}}, "pass": {"_count": 3, "out": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "taste": {"_count": 1, "a": {"_count": 1}}, "assume": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "panic": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "reappear": {"_count": 3, "in": {"_count": 2}, "from": {"_count": 1}}, "inform": {"_count": 1, "them": {"_count": 1}}, "scoff": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 5, "love": {"_count": 1}, "help": {"_count": 1}, "be": {"_count": 3}}, "youve": {"_count": 1, "done": {"_count": 1}}, "spread": {"_count": 2, "over": {"_count": 1}, "the": {"_count": 1}}, "torment": {"_count": 1, "him": {"_count": 1}}, "die": {"_count": 4, "rather": {"_count": 1}, "for": {"_count": 1}, "just": {"_count": 1}, "in": {"_count": 1}}, "charge": {"_count": 1, "the": {"_count": 1}}, "win": {"_count": 4, "": {"_count": 1}, "the": {"_count": 2}, "but": {"_count": 1}}, "your": {"_count": 2, "head": {"_count": 1}, "Patronus": {"_count": 1}}, "hate": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "all": {"_count": 8, "be": {"_count": 3}, "still": {"_count": 1}, "stay": {"_count": 1}, "vanish": {"_count": 1}, "assume": {"_count": 1}, "remain": {"_count": 1}}, "kindly": {"_count": 1, "gaze": {"_count": 1}}, "certainly": {"_count": 5, "not": {"_count": 2}, "act": {"_count": 1}, "have": {"_count": 2}}, "realize": {"_count": 1, "what": {"_count": 1}}, "desert": {"_count": 1, "me": {"_count": 1}}, "then": {"_count": 4, "slip": {"_count": 1}, "reside": {"_count": 1}, "let": {"_count": 1}, "be": {"_count": 1}}, "allow": {"_count": 3, "and": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "creep": {"_count": 1, "out": {"_count": 1}}, "surely": {"_count": 10, "kill": {"_count": 1}, "have": {"_count": 3}, "live": {"_count": 1}, "love": {"_count": 1}, "be": {"_count": 2}, "come": {"_count": 1}, "die": {"_count": 1}}, "rather": {"_count": 16, "have": {"_count": 5}, "eat": {"_count": 1}, "hear": {"_count": 1}, "be": {"_count": 3}, "Ron": {"_count": 1}, "keep": {"_count": 1}, "study": {"_count": 1}, "die": {"_count": 1}, "not": {"_count": 2}}, "still": {"_count": 3, "have": {"_count": 1}, "be": {"_count": 2}}, "fuss": {"_count": 1, "worse": {"_count": 1}}, "write": {"_count": 1, "and": {"_count": 1}}, "call": {"_count": 1, "normal": {"_count": 1}}, "let": {"_count": 4, "me": {"_count": 1}, "Malfoy": {"_count": 2}, "Slughorn": {"_count": 1}}, "guess": {"_count": 1, "they": {"_count": 1}}, "fit": {"_count": 3, "comfortably": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 5, "have": {"_count": 1}, "be": {"_count": 4}}, "rise": {"_count": 1, "again": {"_count": 1}}, "just": {"_count": 3, "have": {"_count": 2}, "make": {"_count": 1}}, "willingly": {"_count": 1, "have": {"_count": 1}}, "change": {"_count": 1, "into": {"_count": 1}}, "fly": {"_count": 2, "out": {"_count": 2}}, "ask": {"_count": 3, "Ron": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}}, "ordinarily": {"_count": 1, "have": {"_count": 1}}, "alleviate": {"_count": 1, "his": {"_count": 1}}, "wear": {"_count": 2, "off": {"_count": 1}, "such": {"_count": 1}}, "involve": {"_count": 1, "how": {"_count": 1}}, "normally": {"_count": 4, "have": {"_count": 4}}, "weigh": {"_count": 1, "about": {"_count": 1}}, "keep": {"_count": 6, "out": {"_count": 1}, "their": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "Phineas": {"_count": 1}, "going": {"_count": 1}}, "believe": {"_count": 4, "him": {"_count": 2}, "that": {"_count": 2}}, "improve": {"_count": 2, "once": {"_count": 1}, "with": {"_count": 1}}, "explode": {"_count": 1, "causing": {"_count": 1}}, "skin": {"_count": 1, "them": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "consent": {"_count": 1, "to": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "burst": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "into": {"_count": 1}}, "raise": {"_count": 3, "an": {"_count": 1}, "awareness": {"_count": 1}, "every": {"_count": 1}}, "even": {"_count": 2, "have": {"_count": 2}}, "subdue": {"_count": 1, "a": {"_count": 1}}, "wait": {"_count": 1, "so": {"_count": 1}}, "break": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "cheer": {"_count": 3, "up": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "bother": {"_count": 1, "him": {"_count": 1}}, "no": {"_count": 4, "sooner": {"_count": 1}, "longer": {"_count": 3}}, "blow": {"_count": 1, "up": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "almost": {"_count": 1, "think": {"_count": 1}}, "a": {"_count": 1, "bath": {"_count": 1}}, "catch": {"_count": 2, "fire": {"_count": 1}, "snatches": {"_count": 1}}, "need": {"_count": 10, "to": {"_count": 3}, "for": {"_count": 2}, "three": {"_count": 1}, "and": {"_count": 1}, "nothing": {"_count": 1}, "them": {"_count": 1}, "sustenance": {"_count": 1}}, "attract": {"_count": 4, "Filch": {"_count": 1}, "far": {"_count": 2}, "unwanted": {"_count": 1}}, "drown": {"_count": 1, "one": {"_count": 1}}, "spot": {"_count": 2, "the": {"_count": 1}, "an": {"_count": 1}}, "show": {"_count": 2, "Harry": {"_count": 1}, "yourselves": {"_count": 1}}, "enable": {"_count": 3, "Harry": {"_count": 1}, "him": {"_count": 2}}, "grab": {"_count": 1, "the": {"_count": 1}}, "awake": {"_count": 1, "when": {"_count": 1}}, "most": {"_count": 1, "miss": {"_count": 1}}, "kick": {"_count": 1, "him": {"_count": 1}}, "send": {"_count": 1, "substandard": {"_count": 1}}, "swoop": {"_count": 2, "in": {"_count": 1}, "down": {"_count": 1}}, "but": {"_count": 3, "Its": {"_count": 1}, "hes": {"_count": 1}, "my": {"_count": 1}}, "pan": {"_count": 1, "for": {"_count": 1}}, "there": {"_count": 3, "": {"_count": 2}, "be": {"_count": 1}}, "undoubtedly": {"_count": 3, "be": {"_count": 1}, "have": {"_count": 1}, "last": {"_count": 1}}, "regard": {"_count": 1, "any": {"_count": 1}}, "appear": {"_count": 4, "to": {"_count": 2}, "there": {"_count": 1}, "in": {"_count": 1}}, "turn": {"_count": 6, "up": {"_count": 2}, "into": {"_count": 2}, "seventeen": {"_count": 1}, "away": {"_count": 1}}, "fall": {"_count": 1, "away": {"_count": 1}}, "try": {"_count": 4, "and": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}, "ever": {"_count": 1}}, "return": {"_count": 6, "me": {"_count": 1}, "to": {"_count": 3}, "from": {"_count": 1}, "but": {"_count": 1}}, "settle": {"_count": 1, "for": {"_count": 1}}, "bring": {"_count": 2, "him": {"_count": 2}}, "slide": {"_count": 1, "away": {"_count": 1}}, "fail": {"_count": 4, "": {"_count": 1}, "all": {"_count": 1}, "Divination": {"_count": 1}, "as": {"_count": 1}}, "emerge": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "guide": {"_count": 1, "Harry": {"_count": 1}}, "watch": {"_count": 1, "over": {"_count": 1}}, "snarled": {"_count": 1, "Uncle": {"_count": 1}}, "Dudley": {"_count": 1, "do": {"_count": 1}}, "spoiled": {"_count": 1, "pampered": {"_count": 1}}, "adopt": {"_count": 1, "at": {"_count": 1}}, "achieve": {"_count": 1, "nothing": {"_count": 1}}, "tie": {"_count": 1, "in": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}, "otherwise": {"_count": 1, "have": {"_count": 1}}, "kill": {"_count": 3, "him": {"_count": 2}, "to": {"_count": 1}}, "interest": {"_count": 1, "you": {"_count": 1}}, "determine": {"_count": 1, "to": {"_count": 1}}, "starting": {"_count": 1, "fifth": {"_count": 1}}, "require": {"_count": 2, "you": {"_count": 1}, "a": {"_count": 1}}, "Fudge": {"_count": 1, "have": {"_count": 1}}, "regret": {"_count": 1, "not": {"_count": 1}}, "hurry": {"_count": 3, "up": {"_count": 3}}, "remain": {"_count": 2, "etched": {"_count": 1}, "secret": {"_count": 1}}, "perhaps": {"_count": 1, "be": {"_count": 1}}, "pick": {"_count": 1, "up": {"_count": 1}}, "sell": {"_count": 1, "us": {"_count": 1}}, "understand": {"_count": 2, "what": {"_count": 1}, "and": {"_count": 1}}, "question": {"_count": 1, "whether": {"_count": 1}}, "vomit": {"_count": 1, "spectacularly": {"_count": 1}}, "force": {"_count": 1, "down": {"_count": 1}}, "immediately": {"_count": 1, "cease": {"_count": 1}}, "object": {"_count": 1, "whens": {"_count": 1}}, "promote": {"_count": 1, "a": {"_count": 1}}, "behave": {"_count": 1, "if": {"_count": 1}}, "permit": {"_count": 2, "Sirius": {"_count": 1}, "and": {"_count": 1}}, "stare": {"_count": 1, "aimlessly": {"_count": 1}}, "unfreeze": {"_count": 1, "and": {"_count": 1}}, "quite": {"_count": 1, "like": {"_count": 1}}, "brighten": {"_count": 1, "up": {"_count": 1}}, "become": {"_count": 3, "taciturn": {"_count": 1}, "": {"_count": 1}, "Minister": {"_count": 1}}, "increase": {"_count": 1, "as": {"_count": 1}}, "next": {"_count": 1, "see": {"_count": 1}}, "approve": {"_count": 1, "but": {"_count": 1}}, "answer": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "open": {"_count": 1, "Im": {"_count": 1}}, "seize": {"_count": 3, "his": {"_count": 2}, "a": {"_count": 1}}, "react": {"_count": 2, "to": {"_count": 1}, "when": {"_count": 1}}, "confirm": {"_count": 1, "a": {"_count": 1}}, "live": {"_count": 4, "to": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}, "neither": {"_count": 1}}, "warn": {"_count": 1, "Hagrid": {"_count": 1}}, "completely": {"_count": 1, "undermine": {"_count": 1}}, "spring": {"_count": 1, "back": {"_count": 1}}, "continue": {"_count": 2, "Hagrids": {"_count": 1}, "to": {"_count": 1}}, "reimburse": {"_count": 1, "him": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "Voldemort": {"_count": 3, "and": {"_count": 1}, "want": {"_count": 1}, "have": {"_count": 1}}, "hurt": {"_count": 1, "the": {"_count": 1}}, "serve": {"_count": 1, "you": {"_count": 1}}, "if": {"_count": 3, "Voldemort": {"_count": 1}, "I": {"_count": 1}, "youd": {"_count": 1}}, "cause": {"_count": 3, "him": {"_count": 2}, "the": {"_count": 1}}, "launch": {"_count": 1, "itself": {"_count": 1}}, "stay": {"_count": 2, "with": {"_count": 1}, "for": {"_count": 1}}, "pull": {"_count": 1, "him": {"_count": 1}}, "incense": {"_count": 1, "her": {"_count": 1}}, "much": {"_count": 2, "rather": {"_count": 2}}, "walk": {"_count": 2, "perhaps": {"_count": 1}, "in": {"_count": 1}}, "sacrifice": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "\u2018mark": {"_count": 1, "him": {"_count": 1}}, "greatly": {"_count": 3, "miss": {"_count": 1}, "appeal": {"_count": 1}, "increase": {"_count": 1}}, "fill": {"_count": 1, "several": {"_count": 1}}, "telephone": {"_count": 1, "and": {"_count": 1}}, "haunt": {"_count": 1, "him": {"_count": 1}}, "succeed": {"_count": 3, "of": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "there": {"_count": 1}}, "reward": {"_count": 1, "you": {"_count": 1}}, "care": {"_count": 1, "for": {"_count": 1}}, "indeed": {"_count": 2, "come": {"_count": 1}, "be": {"_count": 1}}, "or": {"_count": 1, "wouldnt": {"_count": 1}}, "join": {"_count": 1, "me": {"_count": 1}}, "hurtle": {"_count": 1, "out": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "hold": {"_count": 2, "it": {"_count": 1}, "if": {"_count": 1}}, "check": {"_count": 1, "the": {"_count": 1}}, "detract": {"_count": 1, "from": {"_count": 1}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "teach": {"_count": 1, "Harry": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "last": {"_count": 1, "hours": {"_count": 1}}, "draw": {"_count": 1, "attention": {"_count": 1}}, "love": {"_count": 1, "to": {"_count": 1}}, "insist": {"_count": 1, "upon": {"_count": 1}}, "forget": {"_count": 1, "that": {"_count": 1}}, "ensure": {"_count": 1, "that": {"_count": 1}}, "depart": {"_count": 1, "together": {"_count": 1}}, "sink": {"_count": 1, "to": {"_count": 1}}, "protect": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "implant": {"_count": 1, "a": {"_count": 1}}, "deserve": {"_count": 1, "another": {"_count": 1}}, "Slughorn": {"_count": 2, "want": {"_count": 2}}, "overexcite": {"_count": 1, "him": {"_count": 1}}, "poor": {"_count": 1, "Kreachers": {"_count": 1}}, "tend": {"_count": 2, "to": {"_count": 2}}, "suit": {"_count": 1, "me": {"_count": 1}}, "use": {"_count": 1, "the": {"_count": 1}}, "encase": {"_count": 1, "the": {"_count": 1}}, "appeal": {"_count": 1, "less": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "challenge": {"_count": 1, "him": {"_count": 1}}, "consider": {"_count": 2, "it": {"_count": 2}}, "somehow": {"_count": 2, "cause": {"_count": 1}, "know": {"_count": 1}}, "decide": {"_count": 1, "the": {"_count": 1}}, "hazard": {"_count": 1, "a": {"_count": 1}}, "hunt": {"_count": 1, "from": {"_count": 1}}, "destroy": {"_count": 2, "in": {"_count": 1}, "it": {"_count": 1}}, "work": {"_count": 3, "like": {"_count": 1}, "": {"_count": 2}}, "Dumbledore": {"_count": 1, "speak": {"_count": 1}}, "penetrate": {"_count": 1, "the": {"_count": 1}}, "attest": {"_count": 1, "he": {"_count": 1}}, "lift": {"_count": 1, "in": {"_count": 1}}, "swap": {"_count": 2, "their": {"_count": 2}}, "accompany": {"_count": 1, "him": {"_count": 1}}, "assuage": {"_count": 2, "his": {"_count": 2}}, "agree": {"_count": 1, "": {"_count": 1}}, "confiscate": {"_count": 1, "his": {"_count": 1}}, "please": {"_count": 1, "stand": {"_count": 1}}, "seem": {"_count": 1, "incredible": {"_count": 1}}, "occur": {"_count": 1, "within": {"_count": 1}}, "pay": {"_count": 1, "for": {"_count": 1}}, "Master": {"_count": 1, "prefer": {"_count": 1}}, "attack": {"_count": 1, "again": {"_count": 1}}, "intervene": {"_count": 1, "but": {"_count": 1}}, "prevent": {"_count": 1, "her": {"_count": 1}}, "assuredly": {"_count": 1, "feel": {"_count": 1}}, "learn": {"_count": 1, "in": {"_count": 1}}, "dull": {"_count": 1, "the": {"_count": 1}}, "instantly": {"_count": 1, "leave": {"_count": 1}}, "gladly": {"_count": 1, "have": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "pop": {"_count": 1, "up": {"_count": 1}}, "miss": {"_count": 3, "out": {"_count": 1}, "Bill": {"_count": 1}, "their": {"_count": 1}}, "unravel": {"_count": 1, "them": {"_count": 1}}, "burn": {"_count": 1, "and": {"_count": 1}}, "strike": {"_count": 1, "a": {"_count": 1}}, "collapse": {"_count": 1, "with": {"_count": 1}}, "suffer": {"_count": 1, "his": {"_count": 1}}, "yield": {"_count": 1, "very": {"_count": 1}}, "locate": {"_count": 1, "a": {"_count": 1}}, "visit": {"_count": 1, "the": {"_count": 1}}, "deflect": {"_count": 1, "him": {"_count": 1}}, "paralyze": {"_count": 1, "it": {"_count": 1}}, "now": {"_count": 1, "do": {"_count": 1}}, "spare": {"_count": 1, "her": {"_count": 1}}, "waste": {"_count": 1, "valuable": {"_count": 1}}, "lead": {"_count": 2, "him": {"_count": 1}, "us": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "strengthen": {"_count": 1, "him": {"_count": 1}}, "beat": {"_count": 1, "any": {"_count": 1}}}, "discover": {"_count": 22, "it": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "secret": {"_count": 1}, "reason": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 5, "you": {"_count": 1}, "there": {"_count": 1}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "him": {"_count": 1, "sitting": {"_count": 1}}, "their": {"_count": 1, "secret": {"_count": 1}}, "where": {"_count": 1, "you": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "never": {"_count": 1}}, "what": {"_count": 3, "became": {"_count": 1}, "has": {"_count": 1}, "Draco": {"_count": 1}}, "as": {"_count": 2, "much": {"_count": 2}}, "but": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "undo": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "it": {"_count": 10721, "": {"_count": 1912, ".": {"_count": 1188}, "?": {"_count": 514}, "!": {"_count": 210}}, "if": {"_count": 35, "anyone": {"_count": 1}, "you": {"_count": 10}, "I": {"_count": 4}, "they": {"_count": 2}, "Slytherin": {"_count": 1}, "hed": {"_count": 2}, "youve": {"_count": 1}, "he": {"_count": 4}, "someone": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 4}, "she": {"_count": 1}, "your": {"_count": 1}}, "was": {"_count": 1231, "possible": {"_count": 2}, "the": {"_count": 51}, "something": {"_count": 3}, "nearly": {"_count": 3}, "me": {"_count": 13}, "true": {"_count": 6}, "he": {"_count": 11}, "nothing": {"_count": 10}, "her": {"_count": 4}, "just": {"_count": 16}, "motorcycles": {"_count": 1}, "his": {"_count": 16}, "in": {"_count": 16}, "all": {"_count": 20}, "fast": {"_count": 1}, "and": {"_count": 4}, "a": {"_count": 116}, "jerked": {"_count": 1}, "Monday": {"_count": 1}, "Lily": {"_count": 1}, "no": {"_count": 18}, "daylight": {"_count": 1}, "very": {"_count": 19}, "there": {"_count": 7}, "impossible": {"_count": 12}, "incredible": {"_count": 2}, "empty": {"_count": 7}, "but": {"_count": 4}, "ever": {"_count": 2}, "Harrys": {"_count": 1}, "Rons": {"_count": 1}, "on": {"_count": 5}, "stuffed": {"_count": 1}, "one": {"_count": 5}, "locked": {"_count": 3}, "forbidden": {"_count": 1}, "quickly": {"_count": 1}, "standing": {"_count": 1}, "about": {"_count": 8}, "without": {"_count": 3}, "tiny": {"_count": 1}, "doing": {"_count": 3}, "because": {"_count": 11}, "coming": {"_count": 2}, "still": {"_count": 14}, "almost": {"_count": 14}, "To": {"_count": 1}, "returned": {"_count": 1}, "floating": {"_count": 1}, "dark": {"_count": 3}, "Snape": {"_count": 3}, "called": {"_count": 2}, "such": {"_count": 3}, "": {"_count": 31}, "safe": {"_count": 5}, "only": {"_count": 18}, "dead": {"_count": 1}, "as": {"_count": 21}, "killed": {"_count": 1}, "now": {"_count": 8}, "too": {"_count": 15}, "either": {"_count": 1}, "like": {"_count": 16}, "purple": {"_count": 1}, "an": {"_count": 20}, "wearing": {"_count": 1}, "from": {"_count": 5}, "Errols": {"_count": 1}, "several": {"_count": 2}, "remarkable": {"_count": 1}, "with": {"_count": 7}, "take": {"_count": 1}, "until": {"_count": 1}, "breathing": {"_count": 1}, "opened": {"_count": 1}, "time": {"_count": 10}, "this": {"_count": 5}, "right": {"_count": 4}, "Professor": {"_count": 2}, "horrible": {"_count": 1}, "bound": {"_count": 1}, "really": {"_count": 5}, "five": {"_count": 1}, "moving": {"_count": 4}, "at": {"_count": 8}, "their": {"_count": 5}, "us": {"_count": 1}, "magnetically": {"_count": 1}, "when": {"_count": 1}, "you": {"_count": 9}, "telling": {"_count": 2}, "creepy": {"_count": 1}, "so": {"_count": 8}, "barely": {"_count": 1}, "Nearly": {"_count": 1}, "Percy": {"_count": 2}, "him": {"_count": 5}, "fifty": {"_count": 2}, "before": {"_count": 1}, "was": {"_count": 3}, "Malfoy": {"_count": 4}, "being": {"_count": 3}, "not": {"_count": 22}, "pass": {"_count": 1}, "some": {"_count": 3}, "had": {"_count": 1}, "well": {"_count": 2}, "going": {"_count": 5}, "or": {"_count": 1}, "hardly": {"_count": 2}, "Lockhart": {"_count": 1}, "dreadful": {"_count": 1}, "real": {"_count": 2}, "alive": {"_count": 2}, "littered": {"_count": 1}, "Ginny": {"_count": 5}, "swelling": {"_count": 1}, "carrying": {"_count": 4}, "merely": {"_count": 3}, "over": {"_count": 5}, "clearly": {"_count": 2}, "flapping": {"_count": 1}, "leapt": {"_count": 1}, "rather": {"_count": 4}, "definitely": {"_count": 4}, "glistening": {"_count": 1}, "visible": {"_count": 1}, "drew": {"_count": 1}, "inside": {"_count": 2}, "loathing": {"_count": 1}, "good": {"_count": 2}, "crammed": {"_count": 2}, "bad": {"_count": 1}, "to": {"_count": 23}, "she": {"_count": 5}, "safer": {"_count": 1}, "Halloween": {"_count": 2}, "considerably": {"_count": 1}, "though": {"_count": 1}, "Black": {"_count": 1}, "Dumbledore": {"_count": 2}, "favoritism": {"_count": 1}, "clear": {"_count": 6}, "Ron": {"_count": 2}, "it": {"_count": 5}, "stupid": {"_count": 1}, "reflected": {"_count": 2}, "shimmering": {"_count": 1}, "straight": {"_count": 1}, "deserted": {"_count": 1}, "dragging": {"_count": 1}, "heading": {"_count": 1}, "prepared": {"_count": 1}, "planted": {"_count": 1}, "galloping": {"_count": 2}, "lucky": {"_count": 2}, "Potter": {"_count": 1}, "difficult": {"_count": 7}, "my": {"_count": 4}, "funny": {"_count": 2}, "driving": {"_count": 1}, "late": {"_count": 2}, "partly": {"_count": 1}, "paining": {"_count": 1}, "strangely": {"_count": 1}, "passing": {"_count": 1}, "following": {"_count": 1}, "highly": {"_count": 2}, "already": {"_count": 4}, "covered": {"_count": 3}, "someone": {"_count": 1}, "pulling": {"_count": 2}, "furnished": {"_count": 1}, "hot": {"_count": 2}, "flashing": {"_count": 1}, "however": {"_count": 1}, "actually": {"_count": 2}, "blurred": {"_count": 1}, "another": {"_count": 5}, "fraying": {"_count": 1}, "them": {"_count": 2}, "disgraceful": {"_count": 1}, "generally": {"_count": 1}, "second": {"_count": 1}, "pointing": {"_count": 1}, "nevertheless": {"_count": 1}, "Harry": {"_count": 3}, "half": {"_count": 1}, "excellent": {"_count": 1}, "growing": {"_count": 2}, "apparent": {"_count": 1}, "knotted": {"_count": 1}, "that": {"_count": 15}, "lonely": {"_count": 1}, "hard": {"_count": 10}, "dashing": {"_count": 1}, "Charlie": {"_count": 1}, "Karkaroff": {"_count": 3}, "much": {"_count": 5}, "exactly": {"_count": 2}, "amazing": {"_count": 1}, "worth": {"_count": 2}, "nowhere": {"_count": 1}, "best": {"_count": 4}, "zooming": {"_count": 1}, "Bartemius": {"_count": 1}, "blank": {"_count": 1}, "down": {"_count": 3}, "untidy": {"_count": 1}, "Lucius": {"_count": 1}, "knocked": {"_count": 1}, "unlikely": {"_count": 1}, "Mr": {"_count": 1}, "probably": {"_count": 3}, "pointless": {"_count": 2}, "enormous": {"_count": 1}, "upon": {"_count": 1}, "walking": {"_count": 1}, "larger": {"_count": 2}, "trying": {"_count": 1}, "through": {"_count": 1}, "destroyed": {"_count": 1}, "gone": {"_count": 4}, "bliss": {"_count": 1}, "beyond": {"_count": 1}, "Voldemort": {"_count": 2}, "fell": {"_count": 1}, "speeding": {"_count": 1}, "easier": {"_count": 4}, "painful": {"_count": 1}, "sinking": {"_count": 1}, "useless": {"_count": 2}, "full": {"_count": 5}, "Ludo": {"_count": 1}, "quite": {"_count": 7}, "thrown": {"_count": 1}, "But": {"_count": 1}, "demenders": {"_count": 1}, "great": {"_count": 1}, "simply": {"_count": 2}, "completely": {"_count": 1}, "bald": {"_count": 1}, "faded": {"_count": 1}, "embroidered": {"_count": 1}, "clenched": {"_count": 1}, "more": {"_count": 3}, "genuine": {"_count": 1}, "looking": {"_count": 1}, "supposed": {"_count": 3}, "watching": {"_count": 1}, "punctured": {"_count": 1}, "okay": {"_count": 1}, "likely": {"_count": 2}, "simmering": {"_count": 1}, "low": {"_count": 1}, "surely": {"_count": 3}, "Saturday": {"_count": 1}, "lousy": {"_count": 2}, "shaking": {"_count": 1}, "bleeding": {"_count": 1}, "staining": {"_count": 1}, "becoming": {"_count": 1}, "pretty": {"_count": 1}, "better": {"_count": 1}, "your": {"_count": 6}, "brilliant": {"_count": 1}, "muffled": {"_count": 2}, "taking": {"_count": 1}, "jus": {"_count": 1}, "odds": {"_count": 1}, "light": {"_count": 1}, "said": {"_count": 4}, "Where": {"_count": 1}, "Dobby": {"_count": 1}, "crucial": {"_count": 1}, "anything": {"_count": 1}, "for": {"_count": 2}, "beamed": {"_count": 1}, "took": {"_count": 1}, "Seamus": {"_count": 1}, "incumbent": {"_count": 1}, "slowly": {"_count": 1}, "Puddlemere": {"_count": 1}, "nice": {"_count": 1}, "short": {"_count": 1}, "banning": {"_count": 1}, "effective": {"_count": 1}, "unnerving": {"_count": 1}, "foolish": {"_count": 1}, "surprising": {"_count": 1}, "I": {"_count": 3}, "darling": {"_count": 1}, "eating": {"_count": 1}, "rumored": {"_count": 1}, "issuing": {"_count": 1}, "solely": {"_count": 1}, "adjusted": {"_count": 1}, "Minerva": {"_count": 1}, "finished": {"_count": 1}, "superb": {"_count": 1}, "sunken": {"_count": 1}, "dangerous": {"_count": 1}, "row": {"_count": 1}, "hidden": {"_count": 1}, "made": {"_count": 1}, "meaningless": {"_count": 2}, "making": {"_count": 1}, "caused": {"_count": 1}, "pain": {"_count": 1}, "YouKnowWho": {"_count": 2}, "colorless": {"_count": 1}, "swiftly": {"_count": 1}, "against": {"_count": 1}, "then": {"_count": 2}, "directly": {"_count": 1}, "within": {"_count": 1}, "certainly": {"_count": 1}, "Luna": {"_count": 2}, "lack": {"_count": 1}, "broken": {"_count": 1}, "encased": {"_count": 1}, "most": {"_count": 1}, "uncomfortable": {"_count": 1}, "natural": {"_count": 1}, "again": {"_count": 2}, "fishy": {"_count": 1}, "common": {"_count": 1}, "gloomier": {"_count": 1}, "inhabited": {"_count": 1}, "Lavender": {"_count": 1}, "always": {"_count": 1}, "cursed": {"_count": 1}, "has": {"_count": 1}, "Moaning": {"_count": 1}, "both": {"_count": 1}, "invented": {"_count": 1}, "honest": {"_count": 1}, "these": {"_count": 1}, "odd": {"_count": 2}, "scrawled": {"_count": 1}, "Cormac": {"_count": 1}, "wrenched": {"_count": 1}, "snowing": {"_count": 1}, "Sunday": {"_count": 1}, "ony": {"_count": 1}, "kept": {"_count": 1}, "cleverly": {"_count": 1}, "call": {"_count": 1}, "while": {"_count": 1}, "saying": {"_count": 1}, "celebrating": {"_count": 1}, "pitch": {"_count": 1}, "perfectly": {"_count": 1}, "crude": {"_count": 1}, "built": {"_count": 1}, "churning": {"_count": 2}, "hanging": {"_count": 1}, "four": {"_count": 1}, "summat": {"_count": 1}, "dry": {"_count": 1}, "Dumbledores": {"_count": 1}, "done": {"_count": 1}, "valuable": {"_count": 1}, "worthless": {"_count": 1}, "often": {"_count": 1}, "blasted": {"_count": 1}, "tonight": {"_count": 2}, "Mundungus": {"_count": 1}, "prickling": {"_count": 1}, "easy": {"_count": 1}, "gold": {"_count": 1}, "blissful": {"_count": 1}, "worthwhile": {"_count": 1}, "obvious": {"_count": 1}, "never": {"_count": 2}, "brittle": {"_count": 1}, "patently": {"_count": 1}, "far": {"_count": 1}, "essential": {"_count": 1}, "mine": {"_count": 1}, "merry": {"_count": 1}, "Hogwarts": {"_count": 1}, "vaguely": {"_count": 1}, "Wizardmade": {"_count": 1}, "near": {"_count": 1}, "Parseltongue": {"_count": 1}, "bitterly": {"_count": 1}, "virtually": {"_count": 1}, "agitated": {"_count": 1}, "Grindelwald": {"_count": 1}, "Godrics": {"_count": 1}, "fear": {"_count": 1}, "hopeless": {"_count": 1}, "beside": {"_count": 2}, "love": {"_count": 1}, "repellent": {"_count": 1}, "Godric": {"_count": 1}, "Gryffindors": {"_count": 1}, "bought": {"_count": 1}, "May": {"_count": 1}, "free": {"_count": 1}, "untethered": {"_count": 1}, "Potters": {"_count": 1}, "they": {"_count": 1}, "madness": {"_count": 1}, "pitchblack": {"_count": 1}, "evident": {"_count": 1}, "Sirius": {"_count": 1}, "determined": {"_count": 1}, "indeed": {"_count": 1}, "warm": {"_count": 1}, "withdrawn": {"_count": 1}, "instantly": {"_count": 1}, "applause": {"_count": 1}}, "struck": {"_count": 5, "Mr": {"_count": 1}, "Harry": {"_count": 2}, "them": {"_count": 1}, "Hermione": {"_count": 1}}, "harder": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 100, "wasnt": {"_count": 1}, "said": {"_count": 20}, "was": {"_count": 10}, "muttered": {"_count": 2}, "added": {"_count": 2}, "nearly": {"_count": 1}, "murmured": {"_count": 1}, "didn": {"_count": 1}, "did": {"_count": 3}, "couldnt": {"_count": 2}, "raised": {"_count": 1}, "kept": {"_count": 1}, "didnt": {"_count": 1}, "opened": {"_count": 1}, "hissed": {"_count": 1}, "had": {"_count": 9}, "straightened": {"_count": 1}, "felt": {"_count": 4}, "sped": {"_count": 1}, "locked": {"_count": 1}, "took": {"_count": 1}, "heard": {"_count": 1}, "grabbed": {"_count": 1}, "knew": {"_count": 2}, "again": {"_count": 1}, "needed": {"_count": 1}, "thought": {"_count": 2}, "leapt": {"_count": 1}, "saw": {"_count": 2}, "realized": {"_count": 2}, "glanced": {"_count": 1}, "told": {"_count": 6}, "says": {"_count": 1}, "panted": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 1}, "withdrew": {"_count": 1}, "turned": {"_count": 1}, "hurtled": {"_count": 1}, "must": {"_count": 1}, "removed": {"_count": 1}, "advised": {"_count": 1}, "stole": {"_count": 1}, "wanted": {"_count": 2}, "struck": {"_count": 1}, "pointed": {"_count": 1}}, "a": {"_count": 73, "lot": {"_count": 3}, "wave": {"_count": 1}, "secret": {"_count": 2}, "low": {"_count": 2}, "lullaby": {"_count": 1}, "man": {"_count": 1}, "deep": {"_count": 1}, "stronger": {"_count": 1}, "phantom": {"_count": 1}, "hundred": {"_count": 3}, "quick": {"_count": 1}, "shabby": {"_count": 1}, "good": {"_count": 2}, "blast": {"_count": 2}, "couple": {"_count": 1}, "minutes": {"_count": 1}, "note": {"_count": 1}, "trick": {"_count": 1}, "very": {"_count": 1}, "trim": {"_count": 1}, "poster": {"_count": 1}, "bit": {"_count": 6}, "house": {"_count": 1}, "revolving": {"_count": 1}, "third": {"_count": 1}, "song": {"_count": 1}, "horrible": {"_count": 1}, "rest": {"_count": 7}, "round": {"_count": 1}, "plump": {"_count": 1}, "ghost": {"_count": 1}, "little": {"_count": 3}, "go": {"_count": 1}, "complicated": {"_count": 1}, "moment": {"_count": 1}, "patch": {"_count": 1}, "centaurs": {"_count": 1}, "translucent": {"_count": 1}, "mere": {"_count": 1}, "day": {"_count": 1}, "folded": {"_count": 1}, "tiny": {"_count": 1}, "flying": {"_count": 1}, "vivid": {"_count": 1}, "lifetimes": {"_count": 1}, "small": {"_count": 2}, "look": {"_count": 1}, "kind": {"_count": 1}, "shower": {"_count": 1}, "grubby": {"_count": 1}, "wrath": {"_count": 1}}, "didnt": {"_count": 26, "improve": {"_count": 1}, "look": {"_count": 5}, "stop": {"_count": 1}, "work": {"_count": 5}, "just": {"_count": 1}, "you": {"_count": 1}, "hit": {"_count": 1}, "come": {"_count": 1}, "trouble": {"_count": 1}, "help": {"_count": 1}, "make": {"_count": 1}, "open": {"_count": 1}, "know": {"_count": 1}, "exist": {"_count": 1}, "hang": {"_count": 1}, "matter": {"_count": 1}, "he": {"_count": 1}, "seem": {"_count": 1}}, "had": {"_count": 326, "the": {"_count": 4}, "been": {"_count": 116}, "gone": {"_count": 8}, "something": {"_count": 2}, "grown": {"_count": 2}, "died": {"_count": 2}, "nearly": {"_count": 1}, "tried": {"_count": 1}, "never": {"_count": 7}, "to": {"_count": 9}, "my": {"_count": 1}, "come": {"_count": 7}, "given": {"_count": 1}, "a": {"_count": 5}, "at": {"_count": 1}, "once": {"_count": 4}, "barely": {"_count": 1}, "anything": {"_count": 3}, "fallen": {"_count": 3}, "whiskers": {"_count": 1}, "already": {"_count": 1}, "": {"_count": 1}, "hit": {"_count": 1}, "exploded": {"_count": 1}, "struck": {"_count": 1}, "all": {"_count": 2}, "started": {"_count": 6}, "too": {"_count": 1}, "turned": {"_count": 5}, "put": {"_count": 1}, "done": {"_count": 7}, "taken": {"_count": 4}, "got": {"_count": 1}, "jaws": {"_count": 1}, "passed": {"_count": 1}, "run": {"_count": 1}, "now": {"_count": 1}, "cracked": {"_count": 1}, "halted": {"_count": 1}, "shot": {"_count": 1}, "he": {"_count": 2}, "always": {"_count": 3}, "not": {"_count": 10}, "emitted": {"_count": 1}, "its": {"_count": 1}, "only": {"_count": 1}, "shuddered": {"_count": 1}, "worked": {"_count": 2}, "happened": {"_count": 9}, "become": {"_count": 2}, "hurt": {"_count": 1}, "before": {"_count": 1}, "stopped": {"_count": 3}, "spent": {"_count": 1}, "soon": {"_count": 1}, "bound": {"_count": 1}, "returned": {"_count": 1}, "for": {"_count": 1}, "singed": {"_count": 1}, "shivered": {"_count": 1}, "long": {"_count": 1}, "made": {"_count": 4}, "better": {"_count": 1}, "simply": {"_count": 1}, "on": {"_count": 3}, "completely": {"_count": 1}, "lain": {"_count": 1}, "affected": {"_count": 1}, "almost": {"_count": 1}, "just": {"_count": 5}, "burst": {"_count": 1}, "suddenly": {"_count": 1}, "clearly": {"_count": 2}, "begun": {"_count": 1}, "in": {"_count": 1}, "broken": {"_count": 1}, "smashed": {"_count": 1}, "snapped": {"_count": 1}, "sounded": {"_count": 1}, "seemed": {"_count": 1}, "his": {"_count": 1}, "four": {"_count": 1}, "appeared": {"_count": 2}, "slid": {"_count": 1}, "worn": {"_count": 1}, "vanished": {"_count": 3}, "cost": {"_count": 2}, "until": {"_count": 1}, "resulted": {"_count": 1}, "perished": {"_count": 1}, "propelled": {"_count": 1}, "unrolled": {"_count": 1}, "left": {"_count": 2}, "cleared": {"_count": 1}, "transformed": {"_count": 2}, "either": {"_count": 1}, "really": {"_count": 1}, "betrayed": {"_count": 1}, "split": {"_count": 1}, "three": {"_count": 1}, "divined": {"_count": 1}, "but": {"_count": 1}, "resealed": {"_count": 1}, "ever": {"_count": 1}, "encased": {"_count": 1}, "touched": {"_count": 1}, "little": {"_count": 1}, "exercised": {"_count": 1}}, "were": {"_count": 42, "waiting": {"_count": 1}, "empty": {"_count": 1}, "held": {"_count": 1}, "yesterday": {"_count": 3}, "a": {"_count": 9}, "moving": {"_count": 1}, "trying": {"_count": 1}, "not": {"_count": 2}, "": {"_count": 1}, "coming": {"_count": 2}, "made": {"_count": 4}, "stronger": {"_count": 1}, "still": {"_count": 1}, "skating": {"_count": 1}, "crouching": {"_count": 1}, "his": {"_count": 1}, "water": {"_count": 1}, "on": {"_count": 1}, "squeezing": {"_count": 1}, "so": {"_count": 1}, "the": {"_count": 1}, "reading": {"_count": 1}, "to": {"_count": 1}, "something": {"_count": 1}, "now": {"_count": 1}, "needed": {"_count": 1}, "me": {"_count": 1}}, "did": {"_count": 49, "": {"_count": 6}, "become": {"_count": 1}, "so": {"_count": 3}, "not": {"_count": 26}, "midmorning": {"_count": 1}, "I": {"_count": 1}, "was": {"_count": 2}, "a": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 2}, "bring": {"_count": 1}, "mainly": {"_count": 1}, "intrigue": {"_count": 1}, "said": {"_count": 1}}, "got": {"_count": 9, "out": {"_count": 2}, "heavier": {"_count": 1}, "washed": {"_count": 1}, "when": {"_count": 1}, "blown": {"_count": 1}, "worse": {"_count": 1}, "stolen": {"_count": 1}, "more": {"_count": 1}}, "all": {"_count": 118, "over": {"_count": 6}, "day": {"_count": 3}, "": {"_count": 18}, "back": {"_count": 2}, "seemed": {"_count": 1}, "planned": {"_count": 1}, "carrying": {"_count": 1}, "came": {"_count": 2}, "worked": {"_count": 1}, "up": {"_count": 8}, "stopped": {"_count": 1}, "along": {"_count": 3}, "the": {"_count": 9}, "right": {"_count": 4}, "with": {"_count": 2}, "surrounded": {"_count": 1}, "by": {"_count": 1}, "Professor": {"_count": 1}, "became": {"_count": 1}, "year": {"_count": 3}, "Aunt": {"_count": 1}, "they": {"_count": 1}, "said": {"_count": 1}, "night": {"_count": 1}, "meant": {"_count": 2}, "just": {"_count": 1}, "on": {"_count": 2}, "to": {"_count": 2}, "of": {"_count": 2}, "welled": {"_count": 1}, "out": {"_count": 3}, "looks": {"_count": 1}, "Angelina": {"_count": 1}, "because": {"_count": 1}, "I": {"_count": 1}, "himself": {"_count": 1}, "righ": {"_count": 1}, "wen": {"_count": 1}, "seem": {"_count": 1}, "from": {"_count": 2}, "happen": {"_count": 2}, "Luna": {"_count": 1}, "down": {"_count": 1}, "was": {"_count": 1}, "simply": {"_count": 1}, "into": {"_count": 1}, "yourself": {"_count": 1}, "fits": {"_count": 1}, "tested": {"_count": 1}, "comes": {"_count": 2}, "his": {"_count": 1}, "went": {"_count": 1}, "as": {"_count": 1}, "Miss": {"_count": 1}, "matters": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}, "Oh": {"_count": 1}, "kind": {"_count": 1}, "makes": {"_count": 1}}, "couldnt": {"_count": 13, "affect": {"_count": 1}, "see": {"_count": 1}, "": {"_count": 1}, "possibly": {"_count": 1}, "hurt": {"_count": 1}, "be": {"_count": 6}, "have": {"_count": 1}, "help": {"_count": 1}}, "open": {"_count": 46, "held": {"_count": 1}, "": {"_count": 17}, "at": {"_count": 1}, "and": {"_count": 10}, "against": {"_count": 1}, "Lupin": {"_count": 1}, "for": {"_count": 3}, "climbed": {"_count": 1}, "as": {"_count": 2}, "he": {"_count": 1}, "with": {"_count": 1}, "again": {"_count": 1}, "his": {"_count": 1}, "quickly": {"_count": 1}, "hard": {"_count": 1}, "flung": {"_count": 1}, "but": {"_count": 1}, "now": {"_count": 1}}, "up": {"_count": 104, "in": {"_count": 6}, "and": {"_count": 18}, "the": {"_count": 1}, "": {"_count": 19}, "to": {"_count": 13}, "so": {"_count": 2}, "But": {"_count": 1}, "there": {"_count": 1}, "Hagrid": {"_count": 1}, "at": {"_count": 1}, "saying": {"_count": 1}, "but": {"_count": 4}, "off": {"_count": 2}, "it": {"_count": 1}, "din": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 3}, "with": {"_count": 5}, "sir": {"_count": 1}, "anywhere": {"_count": 2}, "like": {"_count": 1}, "though": {"_count": 1}, "scrambled": {"_count": 1}, "It": {"_count": 1}, "out": {"_count": 1}, "carefully": {"_count": 1}, "her": {"_count": 1}, "now": {"_count": 2}, "as": {"_count": 2}, "Gaunt": {"_count": 1}, "have": {"_count": 1}, "full": {"_count": 1}, "that": {"_count": 1}, "here": {"_count": 1}, "she": {"_count": 1}, "somewhere": {"_count": 1}, "over": {"_count": 1}, "his": {"_count": 1}}, "again": {"_count": 51, "the": {"_count": 1}, "Dudley": {"_count": 1}, "": {"_count": 25}, "in": {"_count": 3}, "when": {"_count": 1}, "didnt": {"_count": 1}, "and": {"_count": 3}, "eh": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 2}, "said": {"_count": 2}, "opened": {"_count": 1}, "thats": {"_count": 1}, "for": {"_count": 1}, "his": {"_count": 1}, "with": {"_count": 1}, "slowly": {"_count": 1}, "simply": {"_count": 1}, "before": {"_count": 1}, "looking": {"_count": 1}}, "but": {"_count": 81, "after": {"_count": 1}, "he": {"_count": 6}, "Uncle": {"_count": 1}, "just": {"_count": 1}, "I": {"_count": 6}, "his": {"_count": 2}, "not": {"_count": 3}, "Errol": {"_count": 1}, "the": {"_count": 6}, "Colin": {"_count": 1}, "had": {"_count": 3}, "Snape": {"_count": 1}, "Argh": {"_count": 1}, "it": {"_count": 6}, "Madam": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "something": {"_count": 1}, "she": {"_count": 1}, "too": {"_count": 1}, "Fred": {"_count": 1}, "then": {"_count": 2}, "in": {"_count": 1}, "far": {"_count": 1}, "instead": {"_count": 1}, "caught": {"_count": 1}, "at": {"_count": 1}, "Malfoy": {"_count": 1}, "thestrals": {"_count": 1}, "very": {"_count": 1}, "that": {"_count": 1}, "saw": {"_count": 1}, "without": {"_count": 1}, "before": {"_count": 2}, "otherwise": {"_count": 1}, "no": {"_count": 1}, "apparently": {"_count": 1}, "Harper": {"_count": 1}, "this": {"_count": 1}, "being": {"_count": 1}, "there": {"_count": 2}, "nothing": {"_count": 1}, "as": {"_count": 1}, "accept": {"_count": 1}, "continued": {"_count": 1}, "simply": {"_count": 1}, "its": {"_count": 3}, "safety": {"_count": 1}, "bent": {"_count": 1}, "to": {"_count": 1}}, "would": {"_count": 188, "be": {"_count": 81}, "go": {"_count": 4}, "amuse": {"_count": 1}, "sound": {"_count": 4}, "stop": {"_count": 1}, "give": {"_count": 3}, "have": {"_count": 29}, "they": {"_count": 1}, "help": {"_count": 1}, "do": {"_count": 2}, "move": {"_count": 1}, "feel": {"_count": 3}, "come": {"_count": 1}, "taste": {"_count": 1}, "assume": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}, "burst": {"_count": 2}, "rather": {"_count": 1}, "make": {"_count": 2}, "undoubtedly": {"_count": 1}, "surely": {"_count": 2}, "tie": {"_count": 1}, "raise": {"_count": 1}, "look": {"_count": 5}, "said": {"_count": 1}, "really": {"_count": 3}, "brighten": {"_count": 1}, "confirm": {"_count": 1}, "soon": {"_count": 1}, "spring": {"_count": 1}, "if": {"_count": 1}, "not": {"_count": 5}, "incense": {"_count": 1}, "take": {"_count": 4}, "haunt": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "overexcite": {"_count": 1}, "I": {"_count": 1}, "work": {"_count": 1}, "fit": {"_count": 1}, "cheer": {"_count": 1}, "say": {"_count": 1}, "strike": {"_count": 1}, "suffice": {"_count": 1}, "need": {"_count": 1}, "mean": {"_count": 1}, "indeed": {"_count": 1}, "greatly": {"_count": 1}, "strengthen": {"_count": 1}}, "until": {"_count": 8, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "last": {"_count": 1}, "her": {"_count": 1}, "he": {"_count": 2}, "forced": {"_count": 1}, "they": {"_count": 1}}, "back": {"_count": 70, "in": {"_count": 5}, "": {"_count": 10}, "to": {"_count": 9}, "inside": {"_count": 1}, "together": {"_count": 1}, "onto": {"_count": 2}, "across": {"_count": 1}, "just": {"_count": 1}, "into": {"_count": 12}, "if": {"_count": 1}, "yet": {"_count": 1}, "said": {"_count": 3}, "Harry": {"_count": 1}, "so": {"_count": 1}, "please": {"_count": 1}, "on": {"_count": 3}, "almost": {"_count": 1}, "still": {"_count": 1}, "at": {"_count": 1}, "thank": {"_count": 1}, "up": {"_count": 1}, "over": {"_count": 3}, "upon": {"_count": 1}, "from": {"_count": 2}, "then": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "when": {"_count": 1}, "his": {"_count": 1}, "now": {"_count": 1}}, "wise": {"_count": 1, "to": {"_count": 1}}, "swelled": {"_count": 2, "to": {"_count": 1}, "through": {"_count": 1}}, "Professor": {"_count": 7, "Dumbledore": {"_count": 1}, "Flitwick": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 241, "me": {"_count": 27}, "the": {"_count": 29}, "Harry": {"_count": 9}, "MacDougal": {"_count": 1}, "yourself": {"_count": 2}, "Neville": {"_count": 1}, "use": {"_count": 1}, "my": {"_count": 3}, "them": {"_count": 4}, "make": {"_count": 4}, "explode": {"_count": 1}, "stop": {"_count": 3}, "purge": {"_count": 1}, "him": {"_count": 12}, "sprawl": {"_count": 1}, "Crabbe": {"_count": 1}, "anybody": {"_count": 2}, "you": {"_count": 15}, "be": {"_count": 12}, "Dumbledore": {"_count": 3}, "her": {"_count": 8}, "Dobby": {"_count": 1}, "his": {"_count": 7}, "Errols": {"_count": 1}, "all": {"_count": 1}, "finish": {"_count": 1}, "push": {"_count": 2}, "splash": {"_count": 1}, "give": {"_count": 1}, "assume": {"_count": 1}, "look": {"_count": 3}, "bits": {"_count": 1}, "keep": {"_count": 2}, "get": {"_count": 2}, "show": {"_count": 2}, "happen": {"_count": 4}, "any": {"_count": 1}, "himself": {"_count": 2}, "try": {"_count": 1}, "Hedwigs": {"_count": 1}, "Mr": {"_count": 1}, "yell": {"_count": 1}, "what": {"_count": 1}, "pieces": {"_count": 1}, "shoot": {"_count": 1}, "Fleur": {"_count": 2}, "Hagrid": {"_count": 2}, "annoy": {"_count": 1}, "find": {"_count": 2}, "breathe": {"_count": 1}, "Harrys": {"_count": 1}, "end": {"_count": 1}, "those": {"_count": 1}, "Fudge": {"_count": 2}, "do": {"_count": 3}, "come": {"_count": 1}, "Professor": {"_count": 1}, "page": {"_count": 1}, "bully": {"_count": 1}, "extract": {"_count": 1}, "Snapes": {"_count": 1}, "play": {"_count": 1}, "Madam": {"_count": 1}, "a": {"_count": 2}, "see": {"_count": 2}, "fly": {"_count": 1}, "tell": {"_count": 1}, "their": {"_count": 1}, "go": {"_count": 2}, "feel": {"_count": 1}, "secure": {"_count": 1}, "transform": {"_count": 1}, "Ron": {"_count": 3}, "wait": {"_count": 1}, "dinner": {"_count": 1}, "prevent": {"_count": 1}, "mean": {"_count": 1}, "hold": {"_count": 1}, "Molly": {"_count": 1}, "watch": {"_count": 1}, "no": {"_count": 1}, "break": {"_count": 2}, "": {"_count": 1}, "open": {"_count": 1}, "cut": {"_count": 1}, "summon": {"_count": 1}, "anyone": {"_count": 1}, "Ollivander": {"_count": 1}, "slice": {"_count": 1}, "youV": {"_count": 1}, "someone": {"_count": 1}, "kill": {"_count": 1}, "Voldemort": {"_count": 1}, "examine": {"_count": 1}}, "Dumbledore": {"_count": 4, "": {"_count": 3}, "replied": {"_count": 1}}, "Lily": {"_count": 1, "an": {"_count": 1}}, "inside": {"_count": 16, "Harrys": {"_count": 1}, "his": {"_count": 9}, "and": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 3}, "": {"_count": 1}}, "rose": {"_count": 4, "into": {"_count": 2}, "higher": {"_count": 1}, "in": {"_count": 1}}, "once": {"_count": 10, "and": {"_count": 1}, "Gryffindor": {"_count": 1}, "before": {"_count": 1}, "more": {"_count": 5}, "Harry": {"_count": 1}, "in": {"_count": 1}}, "crept": {"_count": 1, "into": {"_count": 1}}, "burn": {"_count": 1, "I": {"_count": 1}}, "involved": {"_count": 2, "punching": {"_count": 1}, "certain": {"_count": 1}}, "as": {"_count": 66, "long": {"_count": 2}, "they": {"_count": 4}, "quick": {"_count": 1}, "hard": {"_count": 5}, "it": {"_count": 4}, "though": {"_count": 13}, "always": {"_count": 1}, "steady": {"_count": 1}, "if": {"_count": 1}, "thirteen": {"_count": 1}, "he": {"_count": 2}, "a": {"_count": 10}, "frequently": {"_count": 1}, "everybody": {"_count": 1}, "the": {"_count": 3}, "Bellatrix": {"_count": 1}, "headquarters": {"_count": 1}, "that": {"_count": 1}, "confirmation": {"_count": 1}, "his": {"_count": 1}, "such": {"_count": 1}, "indeed": {"_count": 1}, "soon": {"_count": 2}, "gingerly": {"_count": 1}, "we": {"_count": 1}, "Batty": {"_count": 1}, "one": {"_count": 1}, "delicately": {"_count": 1}, "your": {"_count": 1}, "loudly": {"_count": 1}}, "made": {"_count": 35, "no": {"_count": 4}, "him": {"_count": 7}, "his": {"_count": 3}, "sense": {"_count": 3}, "was": {"_count": 1}, "the": {"_count": 3}, "Harry": {"_count": 3}, "he": {"_count": 1}, "it": {"_count": 1}, "me": {"_count": 2}, "one": {"_count": 1}, "a": {"_count": 1}, "contact": {"_count": 1}, "Voldemort": {"_count": 1}, "": {"_count": 1}, "everything": {"_count": 1}, "my": {"_count": 1}}, "while": {"_count": 10, "Harry": {"_count": 2}, "it": {"_count": 1}, "wearing": {"_count": 1}, "really": {"_count": 1}, "I": {"_count": 2}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 22, "": {"_count": 9}, "to": {"_count": 1}, "were": {"_count": 1}, "anyway": {"_count": 1}, "sir": {"_count": 1}, "arent": {"_count": 1}, "early": {"_count": 1}, "was": {"_count": 3}, "he": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}}, "wasnt": {"_count": 66, "easy": {"_count": 1}, "blond": {"_count": 1}, "Neville": {"_count": 1}, "what": {"_count": 1}, "Malfoy": {"_count": 1}, "surprising": {"_count": 1}, "that": {"_count": 2}, "Snape": {"_count": 1}, "his": {"_count": 1}, "worth": {"_count": 1}, "": {"_count": 2}, "Hagrid": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 3}, "Dumbledore": {"_count": 2}, "Granger": {"_count": 1}, "usual": {"_count": 1}, "an": {"_count": 2}, "Professor": {"_count": 1}, "as": {"_count": 2}, "for": {"_count": 2}, "good": {"_count": 1}, "Sirius": {"_count": 2}, "so": {"_count": 1}, "there": {"_count": 3}, "specifically": {"_count": 1}, "coming": {"_count": 1}, "just": {"_count": 3}, "bubble": {"_count": 1}, "working": {"_count": 1}, "much": {"_count": 1}, "me": {"_count": 3}, "hard": {"_count": 1}, "Moody": {"_count": 1}, "too": {"_count": 1}, "said": {"_count": 1}, "normal": {"_count": 1}, "unexpected": {"_count": 1}, "exactly": {"_count": 2}, "really": {"_count": 2}, "Crabbes": {"_count": 1}, "poison": {"_count": 1}, "even": {"_count": 1}, "supposed": {"_count": 1}, "stealing": {"_count": 1}, "because": {"_count": 1}, "your": {"_count": 1}}, "alone": {"_count": 8, "": {"_count": 6}, "said": {"_count": 1}, "as": {"_count": 1}}, "off": {"_count": 37, "": {"_count": 10}, "quickly": {"_count": 1}, "his": {"_count": 1}, "but": {"_count": 2}, "until": {"_count": 1}, "and": {"_count": 5}, "for": {"_count": 2}, "himself": {"_count": 1}, "Pettigrew": {"_count": 1}, "again": {"_count": 1}, "hang": {"_count": 1}, "all": {"_count": 1}, "sir": {"_count": 1}, "in": {"_count": 2}, "accidentally": {"_count": 1}, "with": {"_count": 1}, "Why": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 2}, "on": {"_count": 1}}, "over": {"_count": 66, "his": {"_count": 11}, "": {"_count": 4}, "Malfoy": {"_count": 1}, "themselves": {"_count": 1}, "the": {"_count": 10}, "even": {"_count": 1}, "and": {"_count": 5}, "to": {"_count": 4}, "now": {"_count": 1}, "with": {"_count": 1}, "an": {"_count": 1}, "himself": {"_count": 7}, "lunch": {"_count": 1}, "all": {"_count": 2}, "anyway": {"_count": 1}, "him": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}, "panting": {"_count": 1}, "in": {"_count": 3}, "again": {"_count": 1}, "Hermione": {"_count": 1}, "but": {"_count": 1}, "your": {"_count": 1}, "them": {"_count": 1}, "both": {"_count": 1}, "along": {"_count": 1}, "said": {"_count": 1}}, "seemed": {"_count": 87, "to": {"_count": 38}, "Quirrells": {"_count": 1}, "had": {"_count": 3}, "that": {"_count": 7}, "he": {"_count": 5}, "foolish": {"_count": 2}, "pointless": {"_count": 1}, "Dumbledore": {"_count": 2}, "like": {"_count": 1}, "perfectly": {"_count": 1}, "important": {"_count": 1}, "extraordinary": {"_count": 1}, "reckless": {"_count": 1}, "the": {"_count": 1}, "farfetched": {"_count": 1}, "an": {"_count": 1}, "such": {"_count": 1}, "with": {"_count": 1}, "they": {"_count": 1}, "suspended": {"_count": 1}, "stopped": {"_count": 1}, "rude": {"_count": 1}, "incredible": {"_count": 1}, "so": {"_count": 1}, "did": {"_count": 1}, "clear": {"_count": 1}, "impossible": {"_count": 1}, "as": {"_count": 2}, "than": {"_count": 1}, "much": {"_count": 1}, "more": {"_count": 1}, "unlikely": {"_count": 1}, "drove": {"_count": 1}, "intent": {"_count": 1}, "upon": {"_count": 1}}, "might": {"_count": 55, "have": {"_count": 12}, "be": {"_count": 18}, "not": {"_count": 5}, "distract": {"_count": 1}, "explode": {"_count": 1}, "fall": {"_count": 1}, "take": {"_count": 1}, "even": {"_count": 2}, "achieve": {"_count": 1}, "say": {"_count": 1}, "contaminate": {"_count": 1}, "speak": {"_count": 1}, "mean": {"_count": 1}, "ah": {"_count": 1}, "too": {"_count": 1}, "look": {"_count": 1}, "then": {"_count": 1}, "transform": {"_count": 1}, "just": {"_count": 1}, "break": {"_count": 1}, "oh": {"_count": 1}, "come": {"_count": 1}}, "must": {"_count": 36, "have": {"_count": 14}, "be": {"_count": 14}, "mean": {"_count": 1}, "feel": {"_count": 2}, "work": {"_count": 1}, "interfere": {"_count": 1}, "said": {"_count": 1}, "always": {"_count": 1}, "perform": {"_count": 1}}, "shouldnt": {"_count": 1, "no": {"_count": 1}}, "into": {"_count": 82, "a": {"_count": 20}, "the": {"_count": 29}, "his": {"_count": 14}, "her": {"_count": 3}, "three": {"_count": 1}, "an": {"_count": 2}, "Morans": {"_count": 1}, "Mr": {"_count": 1}, "your": {"_count": 1}, "powder": {"_count": 1}, "Bills": {"_count": 1}, "quarters": {"_count": 1}, "eighths": {"_count": 1}, "Nevilles": {"_count": 1}, "our": {"_count": 1}, "Sanguinis": {"_count": 1}, "seven": {"_count": 1}, "somebody": {"_count": 1}, "Hogwarts": {"_count": 1}}, "move": {"_count": 1, "he": {"_count": 1}}, "raised": {"_count": 5, "its": {"_count": 2}, "both": {"_count": 1}, "a": {"_count": 2}}, "nice": {"_count": 6, "there": {"_count": 1}, "and": {"_count": 3}, "to": {"_count": 1}, "big": {"_count": 1}}, "happened": {"_count": 25, "one": {"_count": 1}, "": {"_count": 9}, "there": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 2}, "while": {"_count": 1}, "whenever": {"_count": 1}, "you": {"_count": 1}, "Dad": {"_count": 1}, "again": {"_count": 1}, "all": {"_count": 1}, "both": {"_count": 1}, "and": {"_count": 1}, "then": {"_count": 1}, "but": {"_count": 1}}, "passed": {"_count": 5, "but": {"_count": 1}, "through": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "werent": {"_count": 3, "you": {"_count": 2}, "never": {"_count": 1}}, "it": {"_count": 33, "might": {"_count": 2}, "sounded": {"_count": 1}, "sped": {"_count": 1}, "wont": {"_count": 1}, "moved": {"_count": 1}, "blended": {"_count": 1}, "wouldnt": {"_count": 1}, "wasnt": {"_count": 1}, "felt": {"_count": 1}, "cant": {"_count": 1}, "rolled": {"_count": 1}, "could": {"_count": 2}, "would": {"_count": 2}, "was": {"_count": 4}, "leads": {"_count": 1}, "had": {"_count": 3}, "tried": {"_count": 1}, "punched": {"_count": 1}, "just": {"_count": 1}, "came": {"_count": 1}, "chose": {"_count": 1}, "screamed": {"_count": 1}, "is": {"_count": 1}, "turned": {"_count": 1}, "meant": {"_count": 1}}, "for": {"_count": 100, "several": {"_count": 1}, "seven": {"_count": 1}, "me": {"_count": 10}, "months": {"_count": 4}, "the": {"_count": 10}, "him": {"_count": 9}, "Mr": {"_count": 1}, "you": {"_count": 4}, "book": {"_count": 1}, "a": {"_count": 15}, "all": {"_count": 1}, "years": {"_count": 4}, "his": {"_count": 1}, "three": {"_count": 1}, "anything": {"_count": 1}, "tax": {"_count": 1}, "many": {"_count": 2}, "weeks": {"_count": 1}, "her": {"_count": 1}, "ten": {"_count": 1}, "when": {"_count": 2}, "more": {"_count": 1}, "four": {"_count": 1}, "long": {"_count": 1}, "over": {"_count": 1}, "once": {"_count": 1}, "heavens": {"_count": 1}, "herself": {"_count": 1}, "nearly": {"_count": 1}, "what": {"_count": 1}, "himself": {"_count": 1}, "Valentines": {"_count": 1}, "parties": {"_count": 1}, "example": {"_count": 1}, "granted": {"_count": 2}, "Dumbledore": {"_count": 1}, "anyone": {"_count": 1}, "he": {"_count": 2}, "its": {"_count": 1}, "my": {"_count": 2}, "Voldemort": {"_count": 1}, "too": {"_count": 1}, "every": {"_count": 1}, "exactly": {"_count": 1}, "instance": {"_count": 1}, "very": {"_count": 1}}, "best": {"_count": 9, "not": {"_count": 2}, "to": {"_count": 5}, "when": {"_count": 1}, "that": {"_count": 1}}, "his": {"_count": 24, "heart": {"_count": 1}, "mouth": {"_count": 1}, "right": {"_count": 1}, "face": {"_count": 2}, "nostrils": {"_count": 1}, "stomach": {"_count": 1}, "wandlight": {"_count": 1}, "leg": {"_count": 1}, "hand": {"_count": 2}, "eyes": {"_count": 1}, "arm": {"_count": 1}, "gnarled": {"_count": 1}, "fault": {"_count": 1}, "minuscule": {"_count": 1}, "first": {"_count": 1}, "imagination": {"_count": 1}, "wand": {"_count": 1}, "broomstick": {"_count": 1}, "own": {"_count": 1}, "scar": {"_count": 1}, "hair": {"_count": 1}, "thoughts": {"_count": 1}}, "high": {"_count": 3, "out": {"_count": 2}, "over": {"_count": 1}}, "curiously": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "looked": {"_count": 55, "as": {"_count": 22}, "wonderful": {"_count": 1}, "like": {"_count": 12}, "in": {"_count": 2}, "very": {"_count": 2}, "to": {"_count": 2}, "brandnew": {"_count": 1}, "dark": {"_count": 1}, "more": {"_count": 2}, "so": {"_count": 1}, "white": {"_count": 1}, "totally": {"_count": 1}, "better": {"_count": 1}, "interestingly": {"_count": 1}, "expectant": {"_count": 1}, "almost": {"_count": 1}, "rather": {"_count": 1}, "different": {"_count": 1}, "deliberate": {"_count": 1}}, "said": {"_count": 183, "Harry": {"_count": 33}, "Uncle": {"_count": 1}, "Hagrid": {"_count": 10}, "the": {"_count": 2}, "Ron": {"_count": 31}, "DO": {"_count": 1}, "Hermione": {"_count": 21}, "INQUIRY": {"_count": 1}, "Fred": {"_count": 5}, "": {"_count": 4}, "Dumbledore": {"_count": 4}, "Wood": {"_count": 1}, "George": {"_count": 4}, "Fudge": {"_count": 2}, "Madam": {"_count": 1}, "Lupin": {"_count": 7}, "Ginny": {"_count": 1}, "Mr": {"_count": 4}, "Percy": {"_count": 1}, "more": {"_count": 1}, "Moody": {"_count": 2}, "Sirius": {"_count": 5}, "Crouch": {"_count": 1}, "calmly": {"_count": 1}, "Aunt": {"_count": 1}, "Cho": {"_count": 2}, "Angelina": {"_count": 1}, "things": {"_count": 1}, "happily": {"_count": 1}, "Snape": {"_count": 2}, "Firenze": {"_count": 1}, "James": {"_count": 1}, "Professor": {"_count": 2}, "tell": {"_count": 1}, "Phineas": {"_count": 1}, "something": {"_count": 1}, "though": {"_count": 1}, "neither": {"_count": 1}, "it": {"_count": 1}, "Riddle": {"_count": 2}, "Slughorn": {"_count": 2}, "in": {"_count": 1}, "Voldemort": {"_count": 2}, "nothing": {"_count": 1}, "Hestia": {"_count": 1}, "Bill": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Dean": {"_count": 1}, "Griphook": {"_count": 2}, "Potter": {"_count": 1}, "On": {"_count": 1}, "Xenophilius": {"_count": 2}, "a": {"_count": 1}, "Aberforth": {"_count": 1}, "Malfoy": {"_count": 1}}, "be": {"_count": 40, "better": {"_count": 3}, "all": {"_count": 4}, "nearly": {"_count": 1}, "moving": {"_count": 1}, "though": {"_count": 1}, "good": {"_count": 2}, "dangerous": {"_count": 2}, "to": {"_count": 2}, "nice": {"_count": 1}, "okay": {"_count": 2}, "in": {"_count": 1}, "jinxed": {"_count": 1}, "an": {"_count": 1}, "true": {"_count": 1}, "dead": {"_count": 1}, "coincidence": {"_count": 1}, "Aurors": {"_count": 1}, "": {"_count": 5}, "she": {"_count": 1}, "if": {"_count": 2}, "that": {"_count": 1}, "when": {"_count": 1}, "Transfigured": {"_count": 1}, "sort": {"_count": 1}, "before": {"_count": 1}, "noted": {"_count": 1}}, "smelled": {"_count": 2, "strongly": {"_count": 1}, "quite": {"_count": 1}}, "swung": {"_count": 5, "clean": {"_count": 1}, "closed": {"_count": 2}, "inward": {"_count": 1}, "open": {"_count": 1}}, "easily": {"_count": 2, "back": {"_count": 1}, "saw": {"_count": 1}}, "at": {"_count": 92, "some": {"_count": 1}, "Hogwarts": {"_count": 3}, "a": {"_count": 1}, "the": {"_count": 20}, "all": {"_count": 11}, "Neville": {"_count": 1}, "Harrys": {"_count": 1}, "arms": {"_count": 2}, "her": {"_count": 1}, "Snapes": {"_count": 1}, "Madam": {"_count": 1}, "him": {"_count": 2}, "you": {"_count": 1}, "customs": {"_count": 1}, "Uncle": {"_count": 1}, "Peeves": {"_count": 1}, "any": {"_count": 2}, "Crabbe": {"_count": 1}, "Scabbers": {"_count": 1}, "his": {"_count": 1}, "Winky": {"_count": 1}, "that": {"_count": 2}, "Harry": {"_count": 3}, "once": {"_count": 9}, "them": {"_count": 1}, "night": {"_count": 1}, "school": {"_count": 1}, "home": {"_count": 1}, "Wormtail": {"_count": 1}, "Barty": {"_count": 1}, "short": {"_count": 1}, "last": {"_count": 5}, "dinner": {"_count": 1}, "least": {"_count": 2}, "mealtimes": {"_count": 1}, "WonWons": {"_count": 1}, "first": {"_count": 1}, "Lupins": {"_count": 1}, "vunce": {"_count": 1}, "": {"_count": 1}, "Hermione": {"_count": 1}, "Molly": {"_count": 1}}, "with": {"_count": 92, "trembling": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 8}, "his": {"_count": 16}, "anyone": {"_count": 1}, "sneaking": {"_count": 1}, "an": {"_count": 2}, "Lockhart": {"_count": 1}, "loathing": {"_count": 1}, "a": {"_count": 21}, "flamingred": {"_count": 1}, "light": {"_count": 1}, "that": {"_count": 1}, "our": {"_count": 1}, "Hagrid": {"_count": 1}, "proper": {"_count": 1}, "her": {"_count": 5}, "some": {"_count": 1}, "mounds": {"_count": 1}, "Ron": {"_count": 1}, "Krum": {"_count": 1}, "water": {"_count": 1}, "distaste": {"_count": 1}, "Moodys": {"_count": 1}, "you": {"_count": 3}, "your": {"_count": 2}, "Dumbledore": {"_count": 1}, "one": {"_count": 2}, "fumbling": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 1}, "cries": {"_count": 1}, "more": {"_count": 2}, "all": {"_count": 1}, "Listen": {"_count": 1}, "freshly": {"_count": 1}, "Snape": {"_count": 1}, "murder": {"_count": 1}}, "in": {"_count": 182, "green": {"_count": 1}, "its": {"_count": 2}, "somehow": {"_count": 1}, "the": {"_count": 37}, "half": {"_count": 3}, "brown": {"_count": 1}, "Hogwarts": {"_count": 1}, "about": {"_count": 2}, "for": {"_count": 5}, "": {"_count": 10}, "here": {"_count": 4}, "a": {"_count": 10}, "my": {"_count": 4}, "one": {"_count": 3}, "fancy": {"_count": 1}, "great": {"_count": 1}, "tightly": {"_count": 1}, "their": {"_count": 3}, "class": {"_count": 1}, "front": {"_count": 9}, "highbacked": {"_count": 1}, "Diagon": {"_count": 1}, "there": {"_count": 2}, "secret": {"_count": 1}, "his": {"_count": 18}, "to": {"_count": 1}, "Ill": {"_count": 1}, "fer": {"_count": 1}, "her": {"_count": 6}, "good": {"_count": 1}, "surprise": {"_count": 1}, "An": {"_count": 1}, "The": {"_count": 1}, "groups": {"_count": 1}, "turns": {"_count": 9}, "frustration": {"_count": 1}, "every": {"_count": 1}, "last": {"_count": 1}, "you": {"_count": 1}, "fear": {"_count": 1}, "case": {"_count": 4}, "places": {"_count": 1}, "plain": {"_count": 1}, "turn": {"_count": 1}, "time": {"_count": 2}, "your": {"_count": 2}, "him": {"_count": 1}, "red": {"_count": 1}, "me": {"_count": 1}, "favor": {"_count": 1}, "Parseltongue": {"_count": 1}, "familiar": {"_count": 1}, "curious": {"_count": 1}, "public": {"_count": 1}, "an": {"_count": 1}, "many": {"_count": 1}, "himself": {"_count": 1}, "Hermione": {"_count": 1}, "and": {"_count": 1}, "view": {"_count": 1}, "anything": {"_count": 1}, "Godrics": {"_count": 1}, "mad": {"_count": 1}, "any": {"_count": 1}, "living": {"_count": 1}, "until": {"_count": 1}}, "mind": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "and": {"_count": 222, "he": {"_count": 14}, "the": {"_count": 8}, "give": {"_count": 1}, "in": {"_count": 2}, "had": {"_count": 1}, "came": {"_count": 1}, "managed": {"_count": 1}, "Fred": {"_count": 1}, "to": {"_count": 1}, "reach": {"_count": 1}, "go": {"_count": 1}, "anyway": {"_count": 2}, "see": {"_count": 1}, "then": {"_count": 9}, "looked": {"_count": 2}, "puts": {"_count": 1}, "woe": {"_count": 1}, "pulled": {"_count": 3}, "I": {"_count": 10}, "winking": {"_count": 1}, "have": {"_count": 1}, "George": {"_count": 1}, "Harry": {"_count": 5}, "what": {"_count": 1}, "dropped": {"_count": 1}, "bowed": {"_count": 1}, "flung": {"_count": 1}, "hes": {"_count": 3}, "Dobby": {"_count": 2}, "began": {"_count": 4}, "sure": {"_count": 1}, "it": {"_count": 4}, "standing": {"_count": 1}, "this": {"_count": 1}, "Scabbers": {"_count": 1}, "found": {"_count": 3}, "decided": {"_count": 1}, "put": {"_count": 2}, "say": {"_count": 1}, "burned": {"_count": 1}, "understood": {"_count": 1}, "as": {"_count": 1}, "pushed": {"_count": 1}, "muttered": {"_count": 3}, "placed": {"_count": 2}, "sat": {"_count": 2}, "handed": {"_count": 1}, "bared": {"_count": 1}, "prised": {"_count": 1}, "positively": {"_count": 1}, "just": {"_count": 1}, "they": {"_count": 3}, "listening": {"_count": 1}, "read": {"_count": 5}, "there": {"_count": 2}, "saw": {"_count": 5}, "starting": {"_count": 1}, "spitting": {"_count": 1}, "streak": {"_count": 1}, "ran": {"_count": 1}, "Cedric": {"_count": 1}, "his": {"_count": 2}, "pointed": {"_count": 1}, "lay": {"_count": 1}, "vanished": {"_count": 2}, "turned": {"_count": 2}, "you": {"_count": 1}, "get": {"_count": 1}, "risk": {"_count": 1}, "disappeared": {"_count": 1}, "though": {"_count": 1}, "smashed": {"_count": 1}, "belched": {"_count": 1}, "crossed": {"_count": 1}, "pretended": {"_count": 1}, "an": {"_count": 1}, "before": {"_count": 1}, "missed": {"_count": 1}, "immediately": {"_count": 1}, "burst": {"_count": 1}, "was": {"_count": 1}, "fell": {"_count": 2}, "were": {"_count": 1}, "stared": {"_count": 1}, "start": {"_count": 1}, "took": {"_count": 1}, "moved": {"_count": 1}, "its": {"_count": 1}, "Luna": {"_count": 1}, "Bode": {"_count": 1}, "find": {"_count": 1}, "raised": {"_count": 1}, "Dumbledore": {"_count": 1}, "continued": {"_count": 1}, "not": {"_count": 3}, "none": {"_count": 1}, "landed": {"_count": 1}, "watch": {"_count": 1}, "streaked": {"_count": 1}, "deciphered": {"_count": 1}, "picked": {"_count": 1}, "quite": {"_count": 1}, "Dumbledores": {"_count": 1}, "vanishing": {"_count": 1}, "hopped": {"_count": 1}, "drank": {"_count": 2}, "shouted": {"_count": 1}, "nothing": {"_count": 1}, "got": {"_count": 1}, "left": {"_count": 1}, "passed": {"_count": 1}, "merely": {"_count": 1}, "so": {"_count": 1}, "leading": {"_count": 1}, "thats": {"_count": 1}, "could": {"_count": 1}, "examining": {"_count": 1}, "feed": {"_count": 1}, "when": {"_count": 1}, "theyre": {"_count": 1}, "let": {"_count": 1}, "shes": {"_count": 1}, "twenty": {"_count": 1}, "hastened": {"_count": 1}, "poured": {"_count": 1}, "throttle": {"_count": 1}, "every": {"_count": 1}, "laid": {"_count": 1}, "stepped": {"_count": 1}, "now": {"_count": 1}, "theyll": {"_count": 1}, "shook": {"_count": 1}, "all": {"_count": 2}, "Griphook": {"_count": 1}, "although": {"_count": 1}, "behind": {"_count": 1}, "at": {"_count": 1}, "met": {"_count": 1}, "whats": {"_count": 1}, "followed": {"_count": 1}, "moments": {"_count": 1}}, "Dursley": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 64, "him": {"_count": 8}, "the": {"_count": 15}, "breaking": {"_count": 1}, "above": {"_count": 3}, "going": {"_count": 1}, "you": {"_count": 3}, "your": {"_count": 2}, "view": {"_count": 1}, "her": {"_count": 4}, "my": {"_count": 2}, "every": {"_count": 1}, "a": {"_count": 1}, "Professor": {"_count": 1}, "Fred": {"_count": 1}, "Cornelius": {"_count": 1}, "said": {"_count": 1}, "Dumbledore": {"_count": 1}, "somewhere": {"_count": 1}, "his": {"_count": 2}, "top": {"_count": 1}, "Peru": {"_count": 1}, "such": {"_count": 1}, "their": {"_count": 1}, "Scrimgeour": {"_count": 1}, "anybody": {"_count": 1}, "Bill": {"_count": 1}, "himself": {"_count": 1}, "its": {"_count": 2}, "Kreacher": {"_count": 1}, "Dung": {"_count": 1}, "further": {"_count": 1}, "which": {"_count": 1}}, "mean": {"_count": 4, "they": {"_count": 1}, "": {"_count": 3}}, "quickly": {"_count": 6, "": {"_count": 1}, "and": {"_count": 2}, "one": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}}, "out": {"_count": 112, "of": {"_count": 34}, "Harry": {"_count": 3}, "": {"_count": 20}, "with": {"_count": 4}, "to": {"_count": 5}, "loud": {"_count": 2}, "in": {"_count": 2}, "on": {"_count": 3}, "flicked": {"_count": 1}, "for": {"_count": 2}, "said": {"_count": 2}, "Ron": {"_count": 2}, "eagerly": {"_count": 1}, "and": {"_count": 7}, "again": {"_count": 1}, "Dudley": {"_count": 1}, "havent": {"_count": 1}, "knowing": {"_count": 1}, "he": {"_count": 2}, "gazed": {"_count": 1}, "from": {"_count": 2}, "toward": {"_count": 1}, "by": {"_count": 1}, "He": {"_count": 2}, "theyre": {"_count": 1}, "Would": {"_count": 1}, "but": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}, "will": {"_count": 1}, "simply": {"_count": 1}, "came": {"_count": 1}, "returning": {"_count": 1}, "McGonagall": {"_count": 1}}, "down": {"_count": 35, "": {"_count": 5}, "safely": {"_count": 1}, "father": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 6}, "in": {"_count": 3}, "Strip": {"_count": 1}, "Wood": {"_count": 1}, "because": {"_count": 1}, "feeling": {"_count": 1}, "the": {"_count": 3}, "there": {"_count": 1}, "by": {"_count": 2}, "onto": {"_count": 1}, "so": {"_count": 1}, "now": {"_count": 1}, "it": {"_count": 1}, "thats": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "her": {"_count": 1}}, "I": {"_count": 47, "suppose": {"_count": 2}, "tell": {"_count": 1}, "dont": {"_count": 6}, "only": {"_count": 1}, "pounced": {"_count": 1}, "say": {"_count": 2}, "just": {"_count": 2}, "cant": {"_count": 1}, "could": {"_count": 2}, "never": {"_count": 1}, "did": {"_count": 2}, "havent": {"_count": 1}, "didnt": {"_count": 2}, "was": {"_count": 3}, "wont": {"_count": 1}, "became": {"_count": 1}, "knew": {"_count": 1}, "thought": {"_count": 1}, "certainly": {"_count": 1}, "slipped": {"_count": 1}, "hope": {"_count": 1}, "had": {"_count": 1}, "must": {"_count": 2}, "see": {"_count": 1}, "can": {"_count": 2}, "wanted": {"_count": 1}, "wouldnt": {"_count": 1}, "hate": {"_count": 1}, "bought": {"_count": 1}, "think": {"_count": 2}, "understood": {"_count": 1}}, "before": {"_count": 41, "and": {"_count": 1}, "the": {"_count": 3}, "he": {"_count": 5}, "": {"_count": 13}, "then": {"_count": 1}, "Hell": {"_count": 1}, "He": {"_count": 1}, "Saturdays": {"_count": 1}, "him": {"_count": 1}, "now": {"_count": 1}, "me": {"_count": 1}, "her": {"_count": 1}, "I": {"_count": 2}, "we": {"_count": 3}, "it": {"_count": 1}, "they": {"_count": 1}, "why": {"_count": 1}, "but": {"_count": 1}, "Ogdens": {"_count": 1}, "when": {"_count": 1}}, "grow": {"_count": 2, "back": {"_count": 2}}, "wriggles": {"_count": 1, "a": {"_count": 1}}, "snapped": {"_count": 4, "its": {"_count": 1}, "Ron": {"_count": 1}, "loudly": {"_count": 1}, "in": {"_count": 1}}, "Ill": {"_count": 4, "tell": {"_count": 2}, "bet": {"_count": 1}, "come": {"_count": 1}}, "twice": {"_count": 3, "on": {"_count": 1}, "tearing": {"_count": 1}, "": {"_count": 1}}, "gave": {"_count": 8, "the": {"_count": 2}, "one": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 3}, "them": {"_count": 1}}, "could": {"_count": 53, "sell": {"_count": 1}, "hurt": {"_count": 1}, "reach": {"_count": 1}, "to": {"_count": 1}, "happen": {"_count": 2}, "be": {"_count": 15}, "almost": {"_count": 1}, "catch": {"_count": 1}, "find": {"_count": 1}, "have": {"_count": 11}, "hardly": {"_count": 2}, "just": {"_count": 1}, "not": {"_count": 8}, "come": {"_count": 1}, "provide": {"_count": 1}, "no": {"_count": 2}, "still": {"_count": 1}, "smell": {"_count": 1}, "never": {"_count": 1}}, "without": {"_count": 12, "realizing": {"_count": 1}, "their": {"_count": 1}, "any": {"_count": 1}, "getting": {"_count": 1}, "comment": {"_count": 1}, "Hermione": {"_count": 1}, "looking": {"_count": 2}, "help": {"_count": 1}, "knocking": {"_count": 1}, "worrying": {"_count": 1}, "speaking": {"_count": 1}}, "eh": {"_count": 2, "PPPotter": {"_count": 1}, "": {"_count": 1}}, "wriggled": {"_count": 1, "in": {"_count": 1}}, "grew": {"_count": 1, "wider": {"_count": 1}}, "here": {"_count": 14, "somewhere": {"_count": 1}, "": {"_count": 6}, "Harry": {"_count": 2}, "on": {"_count": 1}, "for": {"_count": 1}, "No": {"_count": 1}, "its": {"_count": 1}, "are": {"_count": 1}}, "closely": {"_count": 8, "": {"_count": 5}, "and": {"_count": 2}, "he": {"_count": 1}}, "cleared": {"_count": 2, "Harry": {"_count": 1}, "my": {"_count": 1}}, "simply": {"_count": 4, "melted": {"_count": 1}, "vanished": {"_count": 1}, "because": {"_count": 1}, "been": {"_count": 1}}, "deep": {"_count": 2, "inside": {"_count": 1}, "down": {"_count": 1}}, "some": {"_count": 3, "o": {"_count": 1}, "of": {"_count": 1}, "silvery": {"_count": 1}}, "its": {"_count": 15, "really": {"_count": 1}, "too": {"_count": 1}, "awful": {"_count": 1}, "Scabbersl": {"_count": 1}, "all": {"_count": 1}, "a": {"_count": 1}, "more": {"_count": 1}, "private": {"_count": 1}, "horrible": {"_count": 1}, "up": {"_count": 1}, "only": {"_count": 1}, "my": {"_count": 1}, "face": {"_count": 1}, "great": {"_count": 1}, "so": {"_count": 1}}, "around": {"_count": 15, "a": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "his": {"_count": 3}, "him": {"_count": 1}, "said": {"_count": 1}, "himself": {"_count": 1}, "Hermione": {"_count": 2}, "with": {"_count": 1}, "each": {"_count": 1}, "her": {"_count": 1}}, "too": {"_count": 33, "was": {"_count": 1}, "": {"_count": 15}, "said": {"_count": 1}, "excited": {"_count": 1}, "Harry": {"_count": 1}, "hard": {"_count": 1}, "easy": {"_count": 1}, "had": {"_count": 1}, "far": {"_count": 1}, "closely": {"_count": 1}, "long": {"_count": 1}, "It": {"_count": 1}, "we": {"_count": 1}, "he": {"_count": 1}, "so": {"_count": 3}, "by": {"_count": 1}, "you": {"_count": 1}}, "swishing": {"_count": 1, "down": {"_count": 1}}, "yet": {"_count": 13, "do": {"_count": 1}, "again": {"_count": 2}, "Harry": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}, "was": {"_count": 1}, "because": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "thats": {"_count": 5, "very": {"_count": 1}, "why": {"_count": 2}, "all": {"_count": 1}, "disgusting": {"_count": 1}}, "painfully": {"_count": 1, "on": {"_count": 1}}, "gathered": {"_count": 1, "too": {"_count": 1}}, "first": {"_count": 2, "": {"_count": 2}}, "onto": {"_count": 17, "an": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 5}, "the": {"_count": 6}, "its": {"_count": 1}, "Harrys": {"_count": 1}, "their": {"_count": 1}}, "carefully": {"_count": 19, "and": {"_count": 2}, "into": {"_count": 2}, "tucked": {"_count": 1}, "from": {"_count": 1}, "this": {"_count": 1}, "inside": {"_count": 1}, "off": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}, "gradually": {"_count": 1}, "ignoring": {"_count": 1}, "away": {"_count": 1}, "for": {"_count": 1}, "back": {"_count": 1}, "but": {"_count": 1}, "before": {"_count": 1}}, "then": {"_count": 34, "": {"_count": 18}, "Malfoy": {"_count": 1}, "if": {"_count": 2}, "isnt": {"_count": 2}, "slowly": {"_count": 1}, "Harry": {"_count": 1}, "we": {"_count": 1}, "apparently": {"_count": 1}, "muttered": {"_count": 1}, "glanced": {"_count": 1}, "shuffled": {"_count": 1}, "because": {"_count": 1}, "that": {"_count": 1}, "clutched": {"_count": 1}, "I": {"_count": 1}}, "will": {"_count": 55, "be": {"_count": 25}, "save": {"_count": 2}, "merely": {"_count": 1}, "said": {"_count": 2}, "happen": {"_count": 4}, "shrink": {"_count": 1}, "assume": {"_count": 1}, "make": {"_count": 4}, "tell": {"_count": 1}, "receive": {"_count": 1}, "return": {"_count": 1}, "you": {"_count": 1}, "all": {"_count": 1}, "mean": {"_count": 1}, "he": {"_count": 1}, "help": {"_count": 1}, "matter": {"_count": 1}, "growled": {"_count": 1}, "open": {"_count": 1}, "keep": {"_count": 1}, "not": {"_count": 1}, "harm": {"_count": 1}, "truly": {"_count": 1}}, "sounds": {"_count": 10, "by": {"_count": 1}, "you": {"_count": 1}, "crazy": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "like": {"_count": 3}, "a": {"_count": 1}, "excellent": {"_count": 1}}, "mustve": {"_count": 7, "been": {"_count": 6}, "bin": {"_count": 1}}, "true": {"_count": 14, "": {"_count": 7}, "there": {"_count": 1}, "hes": {"_count": 1}, "that": {"_count": 3}, "interrupted": {"_count": 1}, "their": {"_count": 1}}, "hes": {"_count": 3, "gone": {"_count": 1}, "too": {"_count": 1}, "brought": {"_count": 1}}, "stood": {"_count": 5, "": {"_count": 1}, "quite": {"_count": 1}, "balanced": {"_count": 1}, "on": {"_count": 1}, "lopsided": {"_count": 1}}, "hurts": {"_count": 5, "a": {"_count": 1}, "again": {"_count": 1}, "him": {"_count": 1}, "doesnt": {"_count": 1}, "but": {"_count": 1}}, "Harry": {"_count": 85, "thought": {"_count": 1}, "had": {"_count": 3}, "muttered": {"_count": 1}, "Potter": {"_count": 5}, "felt": {"_count": 1}, "": {"_count": 26}, "heard": {"_count": 1}, "said": {"_count": 12}, "snarled": {"_count": 1}, "could": {"_count": 1}, "saw": {"_count": 1}, "snapped": {"_count": 2}, "meet": {"_count": 1}, "go": {"_count": 1}, "Ron": {"_count": 1}, "supposed": {"_count": 1}, "lied": {"_count": 1}, "threw": {"_count": 1}, "repeated": {"_count": 1}, "was": {"_count": 2}, "Dean": {"_count": 1}, "but": {"_count": 1}, "recognized": {"_count": 1}, "remembered": {"_count": 1}, "to": {"_count": 1}, "rolled": {"_count": 1}, "I": {"_count": 2}, "hold": {"_count": 1}, "don": {"_count": 1}, "do": {"_count": 1}, "whispered": {"_count": 1}, "replied": {"_count": 1}, "knew": {"_count": 1}, "did": {"_count": 1}, "asked": {"_count": 1}, "dried": {"_count": 1}, "went": {"_count": 1}, "look": {"_count": 1}, "cut": {"_count": 1}, "pictured": {"_count": 1}}, "on": {"_count": 78, "without": {"_count": 1}, "purpose": {"_count": 4}, "you": {"_count": 3}, "the": {"_count": 13}, "my": {"_count": 2}, "": {"_count": 6}, "theyre": {"_count": 1}, "Percy": {"_count": 1}, "his": {"_count": 6}, "Neville": {"_count": 1}, "Snape": {"_count": 2}, "a": {"_count": 5}, "fire": {"_count": 1}, "exactly": {"_count": 1}, "see": {"_count": 1}, "which": {"_count": 1}, "again": {"_count": 1}, "said": {"_count": 1}, "one": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 2}, "holiday": {"_count": 1}, "her": {"_count": 1}, "anyone": {"_count": 1}, "its": {"_count": 1}, "Ron": {"_count": 1}, "so": {"_count": 1}, "enthusiastically": {"_count": 1}, "him": {"_count": 1}, "your": {"_count": 1}, "that": {"_count": 2}, "top": {"_count": 2}, "an": {"_count": 2}, "had": {"_count": 1}, "branches": {"_count": 1}, "before": {"_count": 1}, "Harrys": {"_count": 1}, "me": {"_count": 1}, "too": {"_count": 1}, "this": {"_count": 1}, "all": {"_count": 1}}, "took": {"_count": 26, "a": {"_count": 3}, "to": {"_count": 3}, "it": {"_count": 1}, "him": {"_count": 1}, "Diggory": {"_count": 1}, "flight": {"_count": 1}, "off": {"_count": 3}, "five": {"_count": 1}, "for": {"_count": 3}, "his": {"_count": 1}, "centaurs": {"_count": 1}, "you": {"_count": 1}, "so": {"_count": 1}, "as": {"_count": 1}, "them": {"_count": 1}, "very": {"_count": 1}, "little": {"_count": 1}, "all": {"_count": 1}}, "finally": {"_count": 2, "shouted": {"_count": 1}, "puffed": {"_count": 1}}, "screamed": {"_count": 2, "SLYTHERIN": {"_count": 1}, "said": {"_count": 1}}, "properly": {"_count": 10, "": {"_count": 4}, "go": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "were": {"_count": 1}}, "which": {"_count": 6, "rose": {"_count": 1}, "means": {"_count": 1}, "Tom": {"_count": 1}, "appeared": {"_count": 1}, "contained": {"_count": 1}, "twisted": {"_count": 1}}, "Neville": {"_count": 4, "needed": {"_count": 1}, "urged": {"_count": 1}, "Ron": {"_count": 1}, "or": {"_count": 1}}, "tightened": {"_count": 1, "painfully": {"_count": 1}}, "hadnt": {"_count": 25, "stopped": {"_count": 1}, "all": {"_count": 1}, "been": {"_count": 18}, "worked": {"_count": 1}, "": {"_count": 1}, "occurred": {"_count": 1}, "come": {"_count": 1}, "become": {"_count": 1}}, "is": {"_count": 266, "known": {"_count": 1}, "theyre": {"_count": 2}, "try": {"_count": 1}, "the": {"_count": 7}, "at": {"_count": 1}, "now": {"_count": 2}, "a": {"_count": 11}, "love": {"_count": 1}, "possible": {"_count": 1}, "sang": {"_count": 1}, "Dudley": {"_count": 1}, "": {"_count": 37}, "difficult": {"_count": 2}, "for": {"_count": 5}, "not": {"_count": 16}, "come": {"_count": 1}, "safe": {"_count": 1}, "time": {"_count": 14}, "my": {"_count": 9}, "in": {"_count": 1}, "said": {"_count": 14}, "Potter": {"_count": 2}, "to": {"_count": 6}, "its": {"_count": 1}, "their": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 2}, "called": {"_count": 1}, "kinder": {"_count": 1}, "an": {"_count": 4}, "it": {"_count": 3}, "jinxfree": {"_count": 1}, "weve": {"_count": 1}, "merely": {"_count": 2}, "Professor": {"_count": 1}, "please": {"_count": 1}, "if": {"_count": 2}, "highly": {"_count": 1}, "late": {"_count": 1}, "amazing": {"_count": 1}, "though": {"_count": 2}, "very": {"_count": 2}, "only": {"_count": 1}, "essential": {"_count": 1}, "you": {"_count": 4}, "beautiful": {"_count": 1}, "Lucius": {"_count": 1}, "uneven": {"_count": 1}, "too": {"_count": 2}, "Dumbledores": {"_count": 1}, "that": {"_count": 3}, "I": {"_count": 2}, "true": {"_count": 6}, "also": {"_count": 2}, "lovely": {"_count": 1}, "Harry": {"_count": 1}, "wise": {"_count": 1}, "youre": {"_count": 2}, "Mr": {"_count": 1}, "oh": {"_count": 1}, "advisable": {"_count": 1}, "there": {"_count": 1}, "always": {"_count": 2}, "what": {"_count": 1}, "this": {"_count": 1}, "simply": {"_count": 1}, "his": {"_count": 1}, "weird": {"_count": 2}, "published": {"_count": 1}, "small": {"_count": 1}, "nobody": {"_count": 1}, "he": {"_count": 2}, "done": {"_count": 1}, "necessary": {"_count": 4}, "never": {"_count": 1}, "believed": {"_count": 1}, "growled": {"_count": 1}, "any": {"_count": 1}, "convenient": {"_count": 1}, "nevertheless": {"_count": 1}, "raspberry": {"_count": 1}, "heavy": {"_count": 1}, "widely": {"_count": 1}, "more": {"_count": 2}, "hard": {"_count": 1}, "before": {"_count": 1}, "clear": {"_count": 1}, "of": {"_count": 3}, "getting": {"_count": 1}, "usually": {"_count": 1}, "Tom": {"_count": 1}, "easy": {"_count": 1}, "we": {"_count": 1}, "quick": {"_count": 1}, "against": {"_count": 1}, "inadvisable": {"_count": 1}, "Lord": {"_count": 1}, "unavoidable": {"_count": 1}, "fitting": {"_count": 1}, "quite": {"_count": 1}, "your": {"_count": 1}, "released": {"_count": 1}, "even": {"_count": 1}, "mine": {"_count": 1}, "trackable": {"_count": 1}, "therefore": {"_count": 1}, "indeed": {"_count": 1}, "about": {"_count": 1}, "perfectly": {"_count": 1}, "such": {"_count": 1}, "Wait": {"_count": 1}, "unlikely": {"_count": 1}, "ghostly": {"_count": 1}, "doing": {"_count": 1}, "all": {"_count": 1}, "cannot": {"_count": 1}, "unprecedented": {"_count": 1}, "happening": {"_count": 1}, "yours": {"_count": 1}}, "wrong": {"_count": 6, "did": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}, "Dobby": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 37, "Snape": {"_count": 3}, "was": {"_count": 2}, "looked": {"_count": 1}, "seemed": {"_count": 1}, "he": {"_count": 3}, "you": {"_count": 7}, "night": {"_count": 1}, "only": {"_count": 1}, "twisted": {"_count": 1}, "it": {"_count": 2}, "YouKnow": {"_count": 1}, "could": {"_count": 1}, "Voldemort": {"_count": 1}, "snake": {"_count": 1}, "Bonaccord": {"_count": 1}, "way": {"_count": 1}, "time": {"_count": 2}, "Golpalotts": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "sometimes": {"_count": 1}, "she": {"_count": 1}, "wizards": {"_count": 1}}, "Hagrid": {"_count": 8, "definitely": {"_count": 1}, "": {"_count": 5}, "Weve": {"_count": 1}, "said": {"_count": 1}}, "emptying": {"_count": 1, "taking": {"_count": 1}}, "now": {"_count": 34, "": {"_count": 17}, "read": {"_count": 1}, "At": {"_count": 1}, "but": {"_count": 1}, "looked": {"_count": 1}, "bet": {"_count": 1}, "anyway": {"_count": 1}, "Harry": {"_count": 2}, "whispered": {"_count": 1}, "people": {"_count": 1}, "examining": {"_count": 1}, "human": {"_count": 1}, "lay": {"_count": 1}, "carrying": {"_count": 1}, "and": {"_count": 2}, "all": {"_count": 1}}, "hed": {"_count": 2, "spent": {"_count": 1}, "shown": {"_count": 1}}, "excitedly": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "tight": {"_count": 4, "like": {"_count": 1}, "about": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "turns": {"_count": 4, "red": {"_count": 1}, "out": {"_count": 2}, "opaque": {"_count": 1}}, "somewhere": {"_count": 5, "for": {"_count": 1}, "else": {"_count": 1}, "other": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "Potter": {"_count": 12, "": {"_count": 10}, "why": {"_count": 1}, "and": {"_count": 1}}, "even": {"_count": 9, "higher": {"_count": 1}, "someone": {"_count": 1}, "I": {"_count": 1}, "less": {"_count": 1}, "messier": {"_count": 1}, "reached": {"_count": 1}, "while": {"_count": 1}, "sprouted": {"_count": 1}, "though": {"_count": 1}}, "shot": {"_count": 2, "toward": {"_count": 1}, "up": {"_count": 1}}, "just": {"_count": 29, "in": {"_count": 4}, "enough": {"_count": 1}, "like": {"_count": 2}, "cant": {"_count": 1}, "the": {"_count": 2}, "because": {"_count": 1}, "as": {"_count": 2}, "seems": {"_count": 1}, "you": {"_count": 2}, "said": {"_count": 1}, "to": {"_count": 2}, "happen": {"_count": 1}, "now": {"_count": 1}, "means": {"_count": 1}, "occurred": {"_count": 1}, "go": {"_count": 1}, "popped": {"_count": 1}, "come": {"_count": 1}, "went": {"_count": 1}, "makes": {"_count": 1}, "Slipped": {"_count": 1}}, "watching": {"_count": 4, "Ron": {"_count": 1}, "them": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}}, "away": {"_count": 22, "and": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 10}, "up": {"_count": 1}, "carefully": {"_count": 1}, "from": {"_count": 1}, "rather": {"_count": 1}, "Uncle": {"_count": 1}, "idiot": {"_count": 1}, "whispering": {"_count": 1}, "but": {"_count": 1}, "din": {"_count": 1}, "the": {"_count": 1}}, "because": {"_count": 23, "I": {"_count": 3}, "hed": {"_count": 1}, "its": {"_count": 2}, "his": {"_count": 1}, "we": {"_count": 1}, "of": {"_count": 2}, "he": {"_count": 4}, "nobody": {"_count": 1}, "according": {"_count": 1}, "Fudge": {"_count": 1}, "she": {"_count": 1}, "Dumbledore": {"_count": 2}, "Spellmans": {"_count": 1}, "the": {"_count": 1}, "if": {"_count": 1}}, "wont": {"_count": 22, "help": {"_count": 1}, "be": {"_count": 7}, "leave": {"_count": 1}, "know": {"_count": 1}, "hurt": {"_count": 2}, "reignite": {"_count": 1}, "come": {"_count": 2}, "stay": {"_count": 1}, "kill": {"_count": 1}, "work": {"_count": 2}, "said": {"_count": 1}, "keep": {"_count": 1}, "it": {"_count": 1}}, "shut": {"_count": 11, "it": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 3}, "under": {"_count": 1}, "blocking": {"_count": 1}, "again": {"_count": 3}, "when": {"_count": 1}}, "listening": {"_count": 4, "": {"_count": 1}, "to": {"_count": 2}, "intently": {"_count": 1}}, "by": {"_count": 17, "surprise": {"_count": 1}, "heart": {"_count": 3}, "an": {"_count": 1}, "Mr": {"_count": 1}, "the": {"_count": 4}, "pretending": {"_count": 1}, "now": {"_count": 1}, "magic": {"_count": 2}, "air": {"_count": 1}, "wandlight": {"_count": 1}, "its": {"_count": 1}}, "right": {"_count": 22, "in": {"_count": 2}, "to": {"_count": 2}, "over": {"_count": 1}, "I": {"_count": 1}, "behind": {"_count": 2}, "after": {"_count": 3}, "But": {"_count": 1}, "said": {"_count": 2}, "for": {"_count": 1}, "Ill": {"_count": 1}, "you": {"_count": 1}, "Ron": {"_count": 1}, "up": {"_count": 1}, "here": {"_count": 1}, "beneath": {"_count": 1}, "but": {"_count": 1}}, "this": {"_count": 17, "time": {"_count": 9}, "year": {"_count": 1}, "way": {"_count": 4}, "evening": {"_count": 1}, "was": {"_count": 1}, "difficult": {"_count": 1}}, "Weasley": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 20, "one": {"_count": 1}, "the": {"_count": 5}, "they": {"_count": 1}, "her": {"_count": 1}, "Myrtles": {"_count": 1}, "his": {"_count": 2}, "its": {"_count": 1}, "quickly": {"_count": 1}, "which": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "carefully": {"_count": 2}, "including": {"_count": 1}, "looking": {"_count": 1}}, "zigzagging": {"_count": 2, "away": {"_count": 1}, "in": {"_count": 1}}, "zoomed": {"_count": 3, "around": {"_count": 1}, "out": {"_count": 1}, "gloomily": {"_count": 1}}, "can": {"_count": 21, "go": {"_count": 2}, "make": {"_count": 1}, "disguise": {"_count": 1}, "be": {"_count": 5}, "the": {"_count": 1}, "lead": {"_count": 1}, "if": {"_count": 1}, "do": {"_count": 1}, "see": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "destroy": {"_count": 1}, "flit": {"_count": 1}, "identify": {"_count": 1}, "explode": {"_count": 1}, "look": {"_count": 1}}, "any": {"_count": 1, "questions": {"_count": 1}}, "when": {"_count": 42, "he": {"_count": 5}, "Flint": {"_count": 1}, "its": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 5}, "the": {"_count": 2}, "Dad": {"_count": 1}, "Ireland": {"_count": 1}, "she": {"_count": 5}, "I": {"_count": 5}, "it": {"_count": 3}, "Millicent": {"_count": 1}, "you": {"_count": 2}, "hes": {"_count": 1}, "confronted": {"_count": 1}, "Harry": {"_count": 2}, "another": {"_count": 1}, "we": {"_count": 1}, "Scrimgeour": {"_count": 1}, "talking": {"_count": 1}, "my": {"_count": 1}}, "however": {"_count": 1, "they": {"_count": 1}}, "emerged": {"_count": 2, "into": {"_count": 1}, "a": {"_count": 1}}, "went": {"_count": 17, "": {"_count": 5}, "off": {"_count": 1}, "over": {"_count": 1}, "down": {"_count": 2}, "all": {"_count": 1}, "trampling": {"_count": 1}, "on": {"_count": 2}, "rather": {"_count": 1}, "that": {"_count": 1}, "coil": {"_count": 1}, "inside": {"_count": 1}}, "heard": {"_count": 2, "the": {"_count": 2}}, "dead": {"_count": 1, "": {"_count": 1}}, "getting": {"_count": 1, "warm": {"_count": 1}}, "wouldnt": {"_count": 14, "be": {"_count": 5}, "budge": {"_count": 1}, "close": {"_count": 1}, "hurt": {"_count": 1}, "they": {"_count": 1}, "fit": {"_count": 1}, "stop": {"_count": 1}, "matter": {"_count": 1}, "": {"_count": 1}, "reach": {"_count": 1}}, "isnt": {"_count": 22, "the": {"_count": 1}, "more": {"_count": 1}, "said": {"_count": 4}, "": {"_count": 2}, "it": {"_count": 3}, "quite": {"_count": 1}, "that": {"_count": 1}, "real": {"_count": 2}, "living": {"_count": 1}, "a": {"_count": 1}, "really": {"_count": 1}, "Ron": {"_count": 1}, "necessary": {"_count": 1}, "he": {"_count": 1}, "safe": {"_count": 1}}, "difficult": {"_count": 6, "not": {"_count": 1}, "to": {"_count": 5}}, "broke": {"_count": 5, "his": {"_count": 1}, "cleanly": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "apart": {"_count": 1}}, "holding": {"_count": 2, "on": {"_count": 1}, "his": {"_count": 1}}, "Hermione": {"_count": 16, "gasped": {"_count": 1}, "continued": {"_count": 1}, "came": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 5}, "said": {"_count": 3}, "began": {"_count": 1}, "do": {"_count": 1}, "okay": {"_count": 1}, "s": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "Flint": {"_count": 1, "was": {"_count": 1}}, "may": {"_count": 6, "fighting": {"_count": 1}, "however": {"_count": 1}, "seem": {"_count": 1}, "only": {"_count": 1}, "not": {"_count": 1}, "be": {"_count": 1}}, "slip": {"_count": 4, "because": {"_count": 1}, "through": {"_count": 1}, "that": {"_count": 2}}, "himself": {"_count": 8, "": {"_count": 7}, "people": {"_count": 1}}, "sounded": {"_count": 21, "a": {"_count": 2}, "like": {"_count": 5}, "as": {"_count": 7}, "timid": {"_count": 1}, "just": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}, "happy": {"_count": 1}, "clearly": {"_count": 1}}, "lay": {"_count": 5, "in": {"_count": 1}, "twitching": {"_count": 1}, "Higher": {"_count": 1}, "clutched": {"_count": 1}, "shuddering": {"_count": 1}}, "well": {"_count": 14, "": {"_count": 6}, "the": {"_count": 1}, "have": {"_count": 1}, "frankly": {"_count": 1}, "hes": {"_count": 1}, "almost": {"_count": 1}, "kind": {"_count": 1}, "its": {"_count": 1}, "than": {"_count": 1}}, "really": {"_count": 26, "once": {"_count": 1}, "": {"_count": 2}, "is": {"_count": 5}, "was": {"_count": 6}, "happen": {"_count": 1}, "true": {"_count": 1}, "useful": {"_count": 1}, "comes": {"_count": 1}, "does": {"_count": 1}, "matter": {"_count": 2}, "happened": {"_count": 1}, "close": {"_count": 1}, "said": {"_count": 1}, "come": {"_count": 1}, "yours": {"_count": 1}}, "the": {"_count": 70, "other": {"_count": 2}, "Invisibility": {"_count": 2}, "sight": {"_count": 1}, "game": {"_count": 1}, "tighter": {"_count": 2}, "House": {"_count": 1}, "times": {"_count": 1}, "Golden": {"_count": 1}, "snake": {"_count": 1}, "person": {"_count": 1}, "more": {"_count": 4}, "Sorting": {"_count": 1}, "wardrobe": {"_count": 1}, "room": {"_count": 2}, "Dementors": {"_count": 1}, "Snitch": {"_count": 1}, "Firebolts": {"_count": 1}, "dog": {"_count": 1}, "Riddle": {"_count": 1}, "whole": {"_count": 1}, "tongue": {"_count": 1}, "only": {"_count": 2}, "most": {"_count": 1}, "right": {"_count": 2}, "shape": {"_count": 1}, "spider": {"_count": 1}, "feeling": {"_count": 1}, "thing": {"_count": 1}, "rather": {"_count": 1}, "item": {"_count": 1}, "night": {"_count": 2}, "various": {"_count": 1}, "day": {"_count": 1}, "pickled": {"_count": 1}, "prophecy": {"_count": 1}, "shallow": {"_count": 1}, "best": {"_count": 1}, "same": {"_count": 3}, "tiny": {"_count": 1}, "shriveled": {"_count": 1}, "Death": {"_count": 1}, "wrong": {"_count": 1}, "maniac": {"_count": 1}, "real": {"_count": 1}, "piece": {"_count": 1}, "deeds": {"_count": 1}, "way": {"_count": 2}, "exclusive": {"_count": 1}, "might": {"_count": 1}, "photograph": {"_count": 1}, "Fidelius": {"_count": 1}, "Granger": {"_count": 1}, "true": {"_count": 1}, "false": {"_count": 1}, "four": {"_count": 1}, "pockmarked": {"_count": 1}, "gargoyle": {"_count": 1}}, "came": {"_count": 28, "to": {"_count": 12}, "something": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 2}, "and": {"_count": 1}, "too": {"_count": 1}, "from": {"_count": 3}, "Tom": {"_count": 1}, "back": {"_count": 2}, "it": {"_count": 1}}, "maybe": {"_count": 1, "not": {"_count": 1}}, "fall": {"_count": 3, "open": {"_count": 1}, "on": {"_count": 1}, "with": {"_count": 1}}, "belonged": {"_count": 4, "there": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "was": {"_count": 1}}, "white": {"_count": 1, "and": {"_count": 1}}, "reflected": {"_count": 1, "them": {"_count": 1}}, "only": {"_count": 11, "shows": {"_count": 2}, "once": {"_count": 2}, "if": {"_count": 1}, "Crookshanks": {"_count": 1}, "by": {"_count": 2}, "to": {"_count": 1}, "rises": {"_count": 1}, "reluctantly": {"_count": 1}}, "matter": {"_count": 12, "if": {"_count": 5}, "how": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 1}, "right": {"_count": 1}}, "does": {"_count": 20, "": {"_count": 7}, "said": {"_count": 3}, "this": {"_count": 1}, "not": {"_count": 3}, "a": {"_count": 1}, "seem": {"_count": 1}, "reopen": {"_count": 1}, "complicate": {"_count": 1}, "turn": {"_count": 1}, "fall": {"_count": 1}}, "shows": {"_count": 3, "me": {"_count": 1}, "is": {"_count": 1}, "that": {"_count": 1}}, "showed": {"_count": 4, "your": {"_count": 1}, "a": {"_count": 1}, "where": {"_count": 1}, "you": {"_count": 1}}, "entranced": {"_count": 1, "by": {"_count": 1}}, "you": {"_count": 22, "will": {"_count": 1}, "dont": {"_count": 2}, "knew": {"_count": 1}, "said": {"_count": 1}, "know": {"_count": 5}, "could": {"_count": 1}, "see": {"_count": 1}, "are": {"_count": 2}, "found": {"_count": 1}, "want": {"_count": 1}, "wanted": {"_count": 1}, "ought": {"_count": 1}, "pointless": {"_count": 1}, "take": {"_count": 1}, "can": {"_count": 1}, "didnt": {"_count": 1}}, "easier": {"_count": 6, "": {"_count": 1}, "for": {"_count": 2}, "to": {"_count": 1}, "I": {"_count": 1}, "or": {"_count": 1}}, "safe": {"_count": 4, "for": {"_count": 1}, "to": {"_count": 1}, "till": {"_count": 1}, "beside": {"_count": 1}}, "or": {"_count": 24, "not": {"_count": 5}, "turn": {"_count": 1}, "were": {"_count": 1}, "anyone": {"_count": 1}, "He": {"_count": 1}, "hed": {"_count": 1}, "should": {"_count": 1}, "Ill": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "Arthur": {"_count": 1}, "else": {"_count": 1}, "around": {"_count": 1}, "so": {"_count": 1}, "out": {"_count": 1}, "hell": {"_count": 1}, "stand": {"_count": 1}, "feel": {"_count": 1}, "leave": {"_count": 1}, "explained": {"_count": 1}}, "walked": {"_count": 1, "as": {"_count": 1}}, "whats": {"_count": 1, "the": {"_count": 1}}, "ter": {"_count": 4, "be": {"_count": 1}, "go": {"_count": 1}, "me": {"_count": 1}, "eat": {"_count": 1}}, "hatches": {"_count": 1, "feed": {"_count": 1}}, "two": {"_count": 4, "weeks": {"_count": 1}, "people": {"_count": 1}, "more": {"_count": 1}, "handles": {"_count": 1}}, "youd": {"_count": 2, "think": {"_count": 1}, "be": {"_count": 1}}, "bit": {"_count": 1, "me": {"_count": 1}}, "themselves": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 7, "any": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "stupendous": {"_count": 1}, "course": {"_count": 1}}, "kept": {"_count": 6, "throwing": {"_count": 1}, "lighting": {"_count": 1}, "quiet": {"_count": 1}, "me": {"_count": 1}, "tumbling": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 19, "if": {"_count": 1}, "so": {"_count": 1}, "extremely": {"_count": 1}, "extra": {"_count": 2}, "inch": {"_count": 1}, "urgent": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "easy": {"_count": 1}, "oddly": {"_count": 1}, "exclusive": {"_count": 1}, "upward": {"_count": 1}, "act": {"_count": 1}, "that": {"_count": 1}, "experimental": {"_count": 1}, "imprisonable": {"_count": 1}, "unexpected": {"_count": 1}}, "they": {"_count": 20, "reached": {"_count": 1}, "saw": {"_count": 2}, "broke": {"_count": 1}, "said": {"_count": 1}, "did": {"_count": 1}, "heard": {"_count": 2}, "were": {"_count": 2}, "found": {"_count": 1}, "had": {"_count": 3}, "got": {"_count": 1}, "want": {"_count": 1}, "both": {"_count": 1}, "sort": {"_count": 1}, "hit": {"_count": 1}, "wont": {"_count": 1}}, "cantve": {"_count": 2, "gone": {"_count": 1}, "bin": {"_count": 1}}, "ready": {"_count": 6, "to": {"_count": 4}, "by": {"_count": 1}, "for": {"_count": 1}}, "wasn": {"_count": 6, "no": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "fer": {"_count": 1}, "easy": {"_count": 1}}, "has": {"_count": 20, "been": {"_count": 9}, "its": {"_count": 2}, "not": {"_count": 1}, "judged": {"_count": 1}, "a": {"_count": 1}, "performed": {"_count": 1}, "an": {"_count": 1}, "already": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "promised": {"_count": 1}}, "Just": {"_count": 2, "in": {"_count": 1}, "because": {"_count": 1}}, "means": {"_count": 12, "dangers": {"_count": 1}, "": {"_count": 3}, "Dumbledores": {"_count": 1}, "said": {"_count": 2}, "I": {"_count": 2}, "anything": {"_count": 1}, "Lily": {"_count": 1}, "her": {"_count": 1}}, "cover": {"_count": 2, "all": {"_count": 1}, "to": {"_count": 1}}, "covers": {"_count": 1, "all": {"_count": 1}}, "tottered": {"_count": 1, "on": {"_count": 1}}, "slumped": {"_count": 1, "to": {"_count": 1}}, "fell": {"_count": 14, "back": {"_count": 1}, "heavily": {"_count": 1}, "right": {"_count": 1}, "into": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 4}, "upon": {"_count": 2}, "to": {"_count": 1}, "on": {"_count": 1}, "it": {"_count": 1}}, "curled": {"_count": 2, "around": {"_count": 1}, "beneath": {"_count": 1}}, "likes": {"_count": 1, "the": {"_count": 1}}, "muttered": {"_count": 2, "something": {"_count": 1}, "aloud": {"_count": 1}}, "loosening": {"_count": 1, "its": {"_count": 1}}, "cringed": {"_count": 1, "away": {"_count": 1}}, "unraveled": {"_count": 1, "itself": {"_count": 1}}, "sped": {"_count": 4, "toward": {"_count": 1}, "across": {"_count": 1}, "out": {"_count": 1}, "ever": {"_count": 1}}, "against": {"_count": 9, "the": {"_count": 1}, "another": {"_count": 1}, "yeh": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}, "em": {"_count": 1}, "The": {"_count": 1}, "my": {"_count": 1}, "its": {"_count": 1}}, "worked": {"_count": 11, "": {"_count": 5}, "while": {"_count": 1}, "I": {"_count": 1}, "or": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}}, "light": {"_count": 2, "suddenly": {"_count": 1}, "him": {"_count": 1}}, "Danger": {"_count": 1, "lies": {"_count": 1}}, "she": {"_count": 17, "said": {"_count": 7}, "burst": {"_count": 1}, "added": {"_count": 2}, "snapped": {"_count": 1}, "whispered": {"_count": 1}, "didnt": {"_count": 1}, "proceeded": {"_count": 1}, "let": {"_count": 1}, "stood": {"_count": 1}, "vanished": {"_count": 1}}, "wears": {"_count": 1, "off": {"_count": 1}}, "Snape": {"_count": 3, "who": {"_count": 1}, "decided": {"_count": 1}, "": {"_count": 1}}, "hard": {"_count": 10, "to": {"_count": 6}, "toward": {"_count": 1}, "itll": {"_count": 1}, "at": {"_count": 1}, "ter": {"_count": 1}}, "work": {"_count": 5, "": {"_count": 4}, "for": {"_count": 1}}, "whispered": {"_count": 2, "": {"_count": 2}}, "hissed": {"_count": 2, "": {"_count": 1}, "menacingly": {"_count": 1}}, "became": {"_count": 15, "clear": {"_count": 5}, "entangled": {"_count": 1}, "ruffled": {"_count": 1}, "the": {"_count": 1}, "apparent": {"_count": 2}, "excruciatingly": {"_count": 1}, "suddenly": {"_count": 1}, "windy": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "seems": {"_count": 16, "incredible": {"_count": 2}, "to": {"_count": 1}, "that": {"_count": 3}, "said": {"_count": 1}, "": {"_count": 3}, "Draco": {"_count": 1}, "as": {"_count": 1}, "mad": {"_count": 1}, "replied": {"_count": 1}, "its": {"_count": 1}, "is": {"_count": 1}}, "mainly": {"_count": 1, "for": {"_count": 1}}, "otherwise": {"_count": 1, "theyd": {"_count": 1}}, "ever": {"_count": 5, "was": {"_count": 3}, "lie": {"_count": 1}, "trying": {"_count": 1}}, "completely": {"_count": 2, "": {"_count": 1}, "throw": {"_count": 1}}, "sir": {"_count": 12, "": {"_count": 7}, "I": {"_count": 1}, "for": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}, "Ill": {"_count": 1}}, "bad": {"_count": 3, "staying": {"_count": 1}, "at": {"_count": 1}, "enough": {"_count": 1}}, "creaks": {"_count": 1, "Harry": {"_count": 1}}, "slid": {"_count": 3, "out": {"_count": 1}, "squelchily": {"_count": 1}, "apart": {"_count": 1}}, "crashed": {"_count": 1, "open": {"_count": 1}}, "home": {"_count": 2, "and": {"_count": 1}, "there": {"_count": 1}}, "apart": {"_count": 5, "puts": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "probably": {"_count": 3, "was": {"_count": 2}, "saved": {"_count": 1}}, "kicked": {"_count": 1, "out": {"_count": 1}}, "upside": {"_count": 7, "down": {"_count": 7}}, "fly": {"_count": 1, "": {"_count": 1}}, "go": {"_count": 7, "all": {"_count": 1}, "": {"_count": 3}, "dark": {"_count": 1}, "with": {"_count": 1}, "boy": {"_count": 1}}, "Ron": {"_count": 12, "muttered": {"_count": 1}, "said": {"_count": 1}, "told": {"_count": 1}, "": {"_count": 4}, "was": {"_count": 1}, "added": {"_count": 1}, "on": {"_count": 1}, "accidentally": {"_count": 1}, "snarled": {"_count": 1}}, "closed": {"_count": 1, "with": {"_count": 1}}, "saying": {"_count": 2, "RONALDS": {"_count": 1}, "SECOND": {"_count": 1}}, "shouted": {"_count": 3, "Tuck": {"_count": 1}, "Diagon": {"_count": 1}, "tiny": {"_count": 1}}, "felt": {"_count": 28, "as": {"_count": 6}, "like": {"_count": 13}, "at": {"_count": 1}, "almost": {"_count": 1}, "unpleasantly": {"_count": 1}, "odd": {"_count": 1}, "much": {"_count": 1}, "soothing": {"_count": 1}, "to": {"_count": 2}, "unbelievably": {"_count": 1}}, "appear": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "gives": {"_count": 4, "light": {"_count": 1}, "him": {"_count": 1}, "people": {"_count": 1}, "everyone": {"_count": 1}}, "resembled": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "flickered": {"_count": 1, "back": {"_count": 1}}, "every": {"_count": 3, "half": {"_count": 1}, "few": {"_count": 1}, "night": {"_count": 1}}, "almost": {"_count": 5, "ripped": {"_count": 1}, "impossible": {"_count": 2}, "unseated": {"_count": 1}, "at": {"_count": 1}}, "brandishing": {"_count": 1, "his": {"_count": 1}}, "Silence": {"_count": 1, "": {"_count": 1}}, "sound": {"_count": 7, "as": {"_count": 2}, "convincing": {"_count": 1}, "like": {"_count": 3}, "": {"_count": 1}}, "should": {"_count": 11, "it": {"_count": 1}, "be": {"_count": 4}, "": {"_count": 1}, "happen": {"_count": 1}, "have": {"_count": 1}, "help": {"_count": 1}, "cause": {"_count": 1}, "just": {"_count": 1}}, "burying": {"_count": 1, "him": {"_count": 1}}, "draw": {"_count": 1, "in": {"_count": 1}}, "look": {"_count": 12, "extremely": {"_count": 1}, "as": {"_count": 3}, "like": {"_count": 6}, "this": {"_count": 1}, "I": {"_count": 1}}, "either": {"_count": 10, "": {"_count": 6}, "said": {"_count": 2}, "I": {"_count": 1}, "where": {"_count": 1}}, "scuttled": {"_count": 2, "over": {"_count": 1}, "away": {"_count": 1}}, "engulfed": {"_count": 1, "him": {"_count": 1}}, "developed": {"_count": 1, "I": {"_count": 1}}, "easy": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "outstrips": {"_count": 1, "the": {"_count": 1}}, "furiously": {"_count": 1, "under": {"_count": 1}}, "doesnt": {"_count": 39, "make": {"_count": 4}, "hurt": {"_count": 2}, "do": {"_count": 1}, "stop": {"_count": 1}, "end": {"_count": 1}, "like": {"_count": 1}, "come": {"_count": 1}, "mean": {"_count": 1}, "work": {"_count": 2}, "it": {"_count": 1}, "look": {"_count": 2}, "necessarily": {"_count": 1}, "seem": {"_count": 5}, "matter": {"_count": 6}, "really": {"_count": 1}, "surprise": {"_count": 1}, "": {"_count": 1}, "fit": {"_count": 1}, "get": {"_count": 1}, "somethings": {"_count": 1}, "snapped": {"_count": 1}, "exist": {"_count": 2}, "she": {"_count": 1}}, "left": {"_count": 3, "the": {"_count": 2}, "behind": {"_count": 1}}, "whirled": {"_count": 2, "wildly": {"_count": 1}, "toward": {"_count": 1}}, "eagerly": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "rot": {"_count": 1, "to": {"_count": 1}}, "used": {"_count": 4, "many": {"_count": 1}, "to": {"_count": 2}, "Harrys": {"_count": 1}}, "Lockhart": {"_count": 1, "butted": {"_count": 1}}, "rings": {"_count": 1, "a": {"_count": 1}}, "fresh": {"_count": 1, "in": {"_count": 1}}, "Im": {"_count": 10, "still": {"_count": 1}, "sure": {"_count": 1}, "going": {"_count": 2}, "pretending": {"_count": 1}, "throwing": {"_count": 1}, "not": {"_count": 1}, "in": {"_count": 1}, "He": {"_count": 1}, "doing": {"_count": 1}}, "teaches": {"_count": 1, "you": {"_count": 1}}, "ignited": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "not": {"_count": 15, "": {"_count": 2}, "now": {"_count": 1}, "been": {"_count": 4}, "Wormtail": {"_count": 1}, "emerging": {"_count": 1}, "occurred": {"_count": 1}, "that": {"_count": 1}, "twelve": {"_count": 1}, "I": {"_count": 1}, "likely": {"_count": 1}, "for": {"_count": 1}}, "stands": {"_count": 1, "still": {"_count": 1}}, "take": {"_count": 6, "to": {"_count": 1}, "him": {"_count": 1}, "flight": {"_count": 1}, "you": {"_count": 1}, "Snape": {"_count": 1}, "me": {"_count": 1}}, "so": {"_count": 40, "narrowly": {"_count": 1}, "at": {"_count": 1}, "crowded": {"_count": 1}, "well": {"_count": 2}, "hard": {"_count": 1}, "clear": {"_count": 1}, "often": {"_count": 2}, "sharply": {"_count": 1}, "that": {"_count": 6}, "impossible": {"_count": 1}, "he": {"_count": 1}, "far": {"_count": 2}, "as": {"_count": 2}, "theres": {"_count": 1}, "yet": {"_count": 1}, "happens": {"_count": 1}, "I": {"_count": 1}, "Slughorns": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "we": {"_count": 1}, "jubilant": {"_count": 1}, "theyve": {"_count": 1}, "nobody": {"_count": 1}, "baldly": {"_count": 1}, "thoroughly": {"_count": 1}, "they": {"_count": 1}, "here": {"_count": 1}, "easy": {"_count": 1}, "difficult": {"_count": 1}}, "ruffle": {"_count": 1, "his": {"_count": 1}}, "launched": {"_count": 1, "a": {"_count": 1}}, "flies": {"_count": 1, "up": {"_count": 1}}, "like": {"_count": 12, "this": {"_count": 3}, "it": {"_count": 1}, "Hermiones": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 2}, "a": {"_count": 1}, "whitehot": {"_count": 1}}, "straight": {"_count": 4, "at": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}}, "feel": {"_count": 4, "remotely": {"_count": 1}, "now": {"_count": 1}, "being": {"_count": 1}, "like": {"_count": 1}}, "tastes": {"_count": 2, "better": {"_count": 1}, "disgusting": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 11, "time": {"_count": 3}, "night": {"_count": 6}, "year": {"_count": 2}}, "looking": {"_count": 5, "in": {"_count": 1}, "startled": {"_count": 1}, "too": {"_count": 1}, "slightly": {"_count": 1}, "up": {"_count": 1}}, "sneaking": {"_count": 1, "around": {"_count": 1}}, "landed": {"_count": 5, "right": {"_count": 1}, "on": {"_count": 2}, "pulled": {"_count": 1}, "in": {"_count": 1}}, "slithered": {"_count": 2, "straight": {"_count": 1}, "out": {"_count": 1}}, "free": {"_count": 2, "without": {"_count": 1}, "of": {"_count": 1}}, "usually": {"_count": 3, "was": {"_count": 2}, "goes": {"_count": 1}}, "slowly": {"_count": 2, "onto": {"_count": 1}, "and": {"_count": 1}}, "amusing": {"_count": 2, "either": {"_count": 1}, "to": {"_count": 1}}, "peaceful": {"_count": 1, "rather": {"_count": 1}}, "my": {"_count": 10, "fathers": {"_count": 1}, "fault": {"_count": 1}, "eyes": {"_count": 1}, "scar": {"_count": 1}, "name": {"_count": 1}, "\u2018furry": {"_count": 1}, "business": {"_count": 1}, "dear": {"_count": 1}, "priority": {"_count": 1}, "imagination": {"_count": 1}}, "under": {"_count": 7, "Rons": {"_count": 1}, "his": {"_count": 1}, "seventeen": {"_count": 1}, "the": {"_count": 1}, "control": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "cant": {"_count": 14, "hurt": {"_count": 3}, "": {"_count": 1}, "tell": {"_count": 1}, "be": {"_count": 3}, "make": {"_count": 1}, "come": {"_count": 1}, "take": {"_count": 1}, "happen": {"_count": 1}, "wait": {"_count": 1}, "have": {"_count": 1}}, "goes": {"_count": 5, "through": {"_count": 1}, "anywhere": {"_count": 1}, "all": {"_count": 1}, "okay": {"_count": 1}, "without": {"_count": 1}}, "how": {"_count": 6, "could": {"_count": 1}, "he": {"_count": 2}, "often": {"_count": 1}, "do": {"_count": 1}, "can": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 4}}, "still": {"_count": 9, "seemed": {"_count": 1}, "empty": {"_count": 1}, "wasnt": {"_count": 1}, "he": {"_count": 1}, "looking": {"_count": 1}, "said": {"_count": 1}, "work": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}}, "meaning": {"_count": 1, "that": {"_count": 1}}, "knocked": {"_count": 3, "him": {"_count": 2}, "her": {"_count": 1}}, "deserved": {"_count": 1, "the": {"_count": 1}}, "obvious": {"_count": 5, "all": {"_count": 1}, "": {"_count": 4}}, "understood": {"_count": 1, "Cornelius": {"_count": 1}}, "very": {"_count": 23, "irksome": {"_count": 1}, "tightly": {"_count": 1}, "hard": {"_count": 3}, "difficult": {"_count": 4}, "entertaining": {"_count": 1}, "good": {"_count": 1}, "close": {"_count": 1}, "much": {"_count": 4}, "slowly": {"_count": 1}, "halfheartedly": {"_count": 1}, "slow": {"_count": 1}, "far": {"_count": 1}, "fine": {"_count": 1}, "odd": {"_count": 1}, "recently": {"_count": 1}}, "tonight": {"_count": 6, "Ron": {"_count": 1}, "said": {"_count": 2}, "Ive": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "carved": {"_count": 1, "a": {"_count": 1}}, "moved": {"_count": 3, "slowly": {"_count": 1}, "along": {"_count": 1}, "without": {"_count": 1}}, "wild": {"_count": 1, "": {"_count": 1}}, "clicking": {"_count": 1, "their": {"_count": 1}}, "called": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "wanders": {"_count": 1, "so": {"_count": 1}}, "obviously": {"_count": 2, "knew": {"_count": 1}, "": {"_count": 1}}, "reversed": {"_count": 1, "back": {"_count": 1}}, "Petrified": {"_count": 1, "its": {"_count": 1}}, "something": {"_count": 4, "about": {"_count": 1}, "else": {"_count": 1}, "Professor": {"_count": 1}, "beating": {"_count": 1}}, "turned": {"_count": 16, "up": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "around": {"_count": 1}, "briefly": {"_count": 1}, "out": {"_count": 3}, "all": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}, "sharply": {"_count": 1}, "inward": {"_count": 1}}, "It": {"_count": 2, "all": {"_count": 1}, "was": {"_count": 1}}, "Scratched": {"_count": 1, "on": {"_count": 1}}, "do": {"_count": 7, "": {"_count": 2}, "it": {"_count": 1}, "you": {"_count": 2}, "some": {"_count": 1}, "I": {"_count": 1}}, "lit": {"_count": 2, "again": {"_count": 1}, "the": {"_count": 1}}, "hurt": {"_count": 8, "": {"_count": 4}, "much": {"_count": 1}, "so": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}}, "Riddles": {"_count": 1, "smile": {"_count": 1}}, "myself": {"_count": 8, "Harry": {"_count": 1}, "": {"_count": 3}, "until": {"_count": 1}, "but": {"_count": 1}, "later": {"_count": 1}, "people": {"_count": 1}}, "lifted": {"_count": 1, "the": {"_count": 1}}, "vibrating": {"_count": 3, "inside": {"_count": 1}, "and": {"_count": 1}, "very": {"_count": 1}}, "folded": {"_count": 1, "its": {"_count": 1}}, "shudder": {"_count": 1, "he": {"_count": 1}}, "coming": {"_count": 3, "There": {"_count": 1}, "to": {"_count": 2}}, "twisted": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "hit": {"_count": 10, "the": {"_count": 4}, "it": {"_count": 1}, "oh": {"_count": 1}, "him": {"_count": 3}, "Harry": {"_count": 1}}, "splintered": {"_count": 1, "as": {"_count": 1}}, "makes": {"_count": 13, "no": {"_count": 2}, "sense": {"_count": 2}, "him": {"_count": 2}, "for": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 1}, "perfect": {"_count": 1}, "an": {"_count": 1}, "any": {"_count": 1}, "much": {"_count": 1}}, "keeps": {"_count": 6, "its": {"_count": 2}, "sticking": {"_count": 1}, "rattling": {"_count": 1}, "appearing": {"_count": 1}, "telling": {"_count": 1}}, "Miss": {"_count": 2, "Weasley": {"_count": 1}, "": {"_count": 1}}, "Put": {"_count": 1, "you": {"_count": 1}}, "bounced": {"_count": 1, "back": {"_count": 1}}, "aside": {"_count": 10, "then": {"_count": 2}, "on": {"_count": 1}, "after": {"_count": 2}, "these": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}, "and": {"_count": 2}}, "always": {"_count": 5, "had": {"_count": 1}, "made": {"_count": 1}, "did": {"_count": 3}}, "sink": {"_count": 1, "lower": {"_count": 1}}, "ruffled": {"_count": 1, "its": {"_count": 1}}, "happily": {"_count": 2, "for": {"_count": 1}, "leaning": {"_count": 1}}, "delivered": {"_count": 1, "its": {"_count": 1}}, "reading": {"_count": 1, "Broomstick": {"_count": 1}}, "firmly": {"_count": 1, "in": {"_count": 1}}, "flipped": {"_count": 1, "onto": {"_count": 1}}, "stealthily": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 8, "longer": {"_count": 2}, "nothin": {"_count": 1}, "not": {"_count": 1}, "stop": {"_count": 1}, "sign": {"_count": 1}, "more": {"_count": 1}, "witch": {"_count": 1}}, "youve": {"_count": 2, "toed": {"_count": 1}, "ridden": {"_count": 1}}, "clear": {"_count": 4, "that": {"_count": 2}, "as": {"_count": 1}, "to": {"_count": 1}}, "happen": {"_count": 21, "again": {"_count": 1}, "": {"_count": 12}, "ddidnt": {"_count": 1}, "Harry": {"_count": 1}, "by": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "inside": {"_count": 1}, "I": {"_count": 1}, "Hagrid": {"_count": 1}}, "featherlight": {"_count": 1, "tied": {"_count": 1}}, "someone": {"_count": 1, "or": {"_count": 1}}, "approached": {"_count": 1, "and": {"_count": 1}}, "whod": {"_count": 1, "believe": {"_count": 1}}, "caused": {"_count": 4, "dinnit": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}}, "opened": {"_count": 4, "then": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "surely": {"_count": 1, "it": {"_count": 1}}, "Dad": {"_count": 2, "": {"_count": 2}}, "comes": {"_count": 6, "to": {"_count": 5}, "ever": {"_count": 1}}, "Fred": {"_count": 4, "whispered": {"_count": 1}, "said": {"_count": 2}, "let": {"_count": 1}}, "stowed": {"_count": 1, "Hedwig": {"_count": 1}}, "leaving": {"_count": 3, "the": {"_count": 1}, "Harrys": {"_count": 1}, "a": {"_count": 1}}, "checked": {"_count": 1, "in": {"_count": 1}}, "says": {"_count": 8, "the": {"_count": 1}, "": {"_count": 2}, "anyway": {"_count": 1}, "on": {"_count": 2}, "in": {"_count": 1}, "Bathilda": {"_count": 1}}, "plain": {"_count": 1, "that": {"_count": 1}}, "violently": {"_count": 1, "hopping": {"_count": 1}}, "heated": {"_count": 1, "a": {"_count": 1}}, "looks": {"_count": 14, "more": {"_count": 2}, "like": {"_count": 8}, "as": {"_count": 2}, "cool": {"_count": 1}, "": {"_count": 1}}, "counterclockwise": {"_count": 1, "": {"_count": 1}}, "matters": {"_count": 5, "but": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 1}, "sighed": {"_count": 1}, "to": {"_count": 1}}, "much": {"_count": 11, "longer": {"_count": 1}, "better": {"_count": 1}, "much": {"_count": 1}, "but": {"_count": 1}, "harder": {"_count": 2}, "more": {"_count": 1}, "quicker": {"_count": 1}, "": {"_count": 2}, "when": {"_count": 1}}, "make": {"_count": 4, "sure": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 2}}, "But": {"_count": 7, "then": {"_count": 1}, "far": {"_count": 1}, "she": {"_count": 2}, "as": {"_count": 1}, "he": {"_count": 1}, "why": {"_count": 1}}, "after": {"_count": 9, "Malfoy": {"_count": 1}, "a": {"_count": 2}, "youve": {"_count": 1}, "all": {"_count": 3}, "I": {"_count": 1}, "he": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "simmers": {"_count": 1, "and": {"_count": 1}}, "admirably": {"_count": 1, "": {"_count": 1}}, "thinks": {"_count": 1, "will": {"_count": 1}}, "better": {"_count": 7, "myself": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}, "that": {"_count": 2}, "than": {"_count": 2}}, "requires": {"_count": 2, "force": {"_count": 1}, "one": {"_count": 1}}, "began": {"_count": 5, "to": {"_count": 4}, "": {"_count": 1}}, "rolled": {"_count": 7, "over": {"_count": 2}, "off": {"_count": 1}, "right": {"_count": 1}, "into": {"_count": 1}, "away": {"_count": 1}, "out": {"_count": 1}}, "have": {"_count": 17, "been": {"_count": 7}, "drowned": {"_count": 1}, "gone": {"_count": 2}, "the": {"_count": 2}, "to": {"_count": 1}, "meant": {"_count": 1}, "written": {"_count": 1}, "come": {"_count": 1}, "they": {"_count": 1}}, "funny": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 11, "than": {"_count": 2}, "likely": {"_count": 2}, "deeply": {"_count": 1}, "snow": {"_count": 1}, "tightly": {"_count": 1}, "distinctive": {"_count": 1}, "difficult": {"_count": 2}, "neatly": {"_count": 1}}, "Oliver": {"_count": 2, "youre": {"_count": 1}, "": {"_count": 1}}, "these": {"_count": 1, "last": {"_count": 1}}, "logically": {"_count": 1, "said": {"_count": 1}}, "pity": {"_count": 1, "": {"_count": 1}}, "signed": {"_count": 1, "that": {"_count": 1}}, "useless": {"_count": 1, "he": {"_count": 1}}, "everywhere": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "jammed": {"_count": 1, "with": {"_count": 1}}, "ten": {"_count": 1, "points": {"_count": 1}}, "three": {"_count": 4, "": {"_count": 1}, "O": {"_count": 1}, "chairs": {"_count": 1}, "minutes": {"_count": 1}}, "roughly": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "possible": {"_count": 15, "": {"_count": 3}, "that": {"_count": 10}, "for": {"_count": 2}}, "becomes": {"_count": 1, "to": {"_count": 1}}, "anymore": {"_count": 12, "": {"_count": 6}, "he": {"_count": 2}, "just": {"_count": 1}, "Do": {"_count": 1}, "weve": {"_count": 1}, "It": {"_count": 1}}, "upset": {"_count": 1, "him": {"_count": 1}}, "each": {"_count": 1, "labeled": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "labeled": {"_count": 1, "Harry": {"_count": 1}}, "stumbling": {"_count": 1, "now": {"_count": 1}}, "blended": {"_count": 1, "so": {"_count": 1}}, "examining": {"_count": 1, "a": {"_count": 1}}, "burnt": {"_count": 1, "a": {"_count": 1}}, "occurred": {"_count": 7, "to": {"_count": 7}}, "Rosmerta": {"_count": 2, "said": {"_count": 2}}, "Filthy": {"_count": 1, "stinkin": {"_count": 1}}, "sometimes": {"_count": 3, "": {"_count": 2}, "when": {"_count": 1}}, "awful": {"_count": 1, "in": {"_count": 1}}, "hung": {"_count": 1, "in": {"_count": 1}}, "couldve": {"_count": 3, "been": {"_count": 3}}, "sweep": {"_count": 1, "the": {"_count": 1}}, "reluctantly": {"_count": 1, "and": {"_count": 1}}, "Sibyll": {"_count": 1, "said": {"_count": 1}}, "works": {"_count": 4, "correctly": {"_count": 1}, "tomorrow": {"_count": 1}, "or": {"_count": 1}, "for": {"_count": 1}}, "conjures": {"_count": 1, "up": {"_count": 1}}, "cannot": {"_count": 3, "feel": {"_count": 1}, "take": {"_count": 1}, "be": {"_count": 1}}, "your": {"_count": 3, "first": {"_count": 1}, "own": {"_count": 1}, "scar": {"_count": 1}}, "threw": {"_count": 1, "you": {"_count": 1}}, "upstairs": {"_count": 1, "Ill": {"_count": 1}}, "yourself": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "okay": {"_count": 6, "if": {"_count": 2}, "": {"_count": 2}, "Its": {"_count": 1}, "anyway": {"_count": 1}}, "tightly": {"_count": 3, "in": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "weaving": {"_count": 1, "in": {"_count": 1}}, "lurking": {"_count": 1, "near": {"_count": 1}}, "turn": {"_count": 1, "Changs": {"_count": 1}}, "between": {"_count": 4, "the": {"_count": 1}, "yourselves": {"_count": 1}, "Doge": {"_count": 1}, "his": {"_count": 1}}, "clean": {"_count": 2, "out": {"_count": 1}, "surreptitiously": {"_count": 1}}, "read": {"_count": 3, "Neville": {"_count": 1}, "All": {"_count": 1}, "DOLORES": {"_count": 1}}, "close": {"_count": 5, "to": {"_count": 5}}, "words": {"_count": 2, "appeared": {"_count": 2}}, "revolving": {"_count": 1, "very": {"_count": 1}}, "directly": {"_count": 4, "from": {"_count": 1}, "at": {"_count": 3}}, "extremely": {"_count": 3, "entertaining": {"_count": 1}, "hard": {"_count": 1}, "well": {"_count": 1}}, "He": {"_count": 10, "broke": {"_count": 1}, "would": {"_count": 1}, "looked": {"_count": 1}, "he": {"_count": 1}, "saw": {"_count": 1}, "pulled": {"_count": 1}, "wrenched": {"_count": 1}, "appeared": {"_count": 1}, "sprinted": {"_count": 1}, "must": {"_count": 1}}, "impossible": {"_count": 5, "for": {"_count": 1}, "to": {"_count": 4}}, "time": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "ages": {"_count": 2, "ago": {"_count": 2}}, "securely": {"_count": 2, "in": {"_count": 1}, "around": {"_count": 1}}, "grounds": {"_count": 1, "fairly": {"_count": 1}}, "Faking": {"_count": 1, "a": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 5, "": {"_count": 1}, "the": {"_count": 1}, "eighty": {"_count": 1}, "my": {"_count": 1}, "she": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "resemble": {"_count": 1, "": {"_count": 1}}, "writhing": {"_count": 1, "on": {"_count": 1}}, "happens": {"_count": 4, "": {"_count": 3}, "she": {"_count": 1}}, "streamed": {"_count": 1, "behind": {"_count": 1}}, "gas": {"_count": 1, "it": {"_count": 1}}, "skidded": {"_count": 2, "around": {"_count": 1}, "across": {"_count": 1}}, "stopped": {"_count": 3, "moving": {"_count": 1}, "": {"_count": 1}, "Mr": {"_count": 1}}, "one": {"_count": 6, "of": {"_count": 4}, "end": {"_count": 1}, "more": {"_count": 1}}, "panting": {"_count": 1, "his": {"_count": 1}}, "nouA": {"_count": 1, "said": {"_count": 1}}, "saw": {"_count": 1, "me": {"_count": 1}}, "You": {"_count": 1, "know": {"_count": 1}}, "tried": {"_count": 2, "to": {"_count": 2}}, "quick": {"_count": 3, "Remus": {"_count": 1}, "": {"_count": 1}, "look": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "Black": {"_count": 2, "hissed": {"_count": 1}, "was": {"_count": 1}}, "several": {"_count": 2, "times": {"_count": 1}, "of": {"_count": 1}}, "safely": {"_count": 3, "into": {"_count": 1}, "outside": {"_count": 1}, "": {"_count": 1}}, "Lupin": {"_count": 1, "still": {"_count": 1}}, "backward": {"_count": 2, "away": {"_count": 1}, "and": {"_count": 1}}, "canter": {"_count": 1, "to": {"_count": 1}}, "reached": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "immediately": {"_count": 3, "": {"_count": 2}, "exuded": {"_count": 1}}, "good": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "pushed": {"_count": 1, "him": {"_count": 1}}, "Snaped": {"_count": 1, "never": {"_count": 1}}, "peering": {"_count": 1, "desperately": {"_count": 1}}, "lower": {"_count": 1, "its": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "bowed": {"_count": 1, "its": {"_count": 1}}, "vanished": {"_count": 7, "": {"_count": 3}, "to": {"_count": 1}, "below": {"_count": 1}, "didnt": {"_count": 1}, "over": {"_count": 1}}, "Severus": {"_count": 3, "said": {"_count": 1}, "except": {"_count": 1}, "": {"_count": 1}}, "needs": {"_count": 3, "now": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}}, "happenin": {"_count": 1, "again": {"_count": 1}}, "behind": {"_count": 3, "Harry": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "creates": {"_count": 2, "a": {"_count": 1}, "all": {"_count": 1}}, "quiet": {"_count": 3, "from": {"_count": 1}, "Ron": {"_count": 1}, "what": {"_count": 1}}, "charged": {"_count": 2, "Mr": {"_count": 1}, "toward": {"_count": 1}}, "meant": {"_count": 16, "he": {"_count": 1}, "plenty": {"_count": 1}, "that": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 4}, "anyone": {"_count": 1}, "nothing": {"_count": 1}, "to": {"_count": 1}, "even": {"_count": 1}, "everything": {"_count": 1}, "though": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}}, "certainly": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 1}, "helped": {"_count": 1}}, "aloud": {"_count": 7, "": {"_count": 3}, "Harry": {"_count": 1}, "not": {"_count": 1}, "would": {"_count": 1}, "to": {"_count": 1}}, "amused": {"_count": 1, "them": {"_count": 1}}, "muffled": {"_count": 1, "the": {"_count": 1}}, "quietly": {"_count": 2, "and": {"_count": 2}}, "drew": {"_count": 3, "nearer": {"_count": 1}, "too": {"_count": 1}, "their": {"_count": 1}}, "cast": {"_count": 1, "long": {"_count": 1}}, "running": {"_count": 1, "a": {"_count": 1}}, "hopped": {"_count": 1, "on": {"_count": 1}}, "savoring": {"_count": 1, "the": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "cool": {"_count": 1, "": {"_count": 1}}, "flew": {"_count": 8, "across": {"_count": 2}, "up": {"_count": 2}, "ten": {"_count": 1}, "open": {"_count": 1}, "feet": {"_count": 1}, "out": {"_count": 1}}, "instantly": {"_count": 1, "as": {"_count": 1}}, "sprinted": {"_count": 1, "across": {"_count": 1}}, "greeting": {"_count": 1, "Mr": {"_count": 1}}, "using": {"_count": 3, "a": {"_count": 2}, "it": {"_count": 1}}, "Excellent": {"_count": 1, "": {"_count": 1}}, "bouncing": {"_count": 1, "off": {"_count": 1}}, "played": {"_count": 1, "before": {"_count": 1}}, "TROY": {"_count": 1, "SCORES": {"_count": 1}}, "Krums": {"_count": 1, "got": {"_count": 1}}, "vos": {"_count": 1, "very": {"_count": 1}}, "confiscated": {"_count": 1, "": {"_count": 1}}, "walk": {"_count": 1, "around": {"_count": 1}}, "uttered": {"_count": 1, "not": {"_count": 1}}, "remotely": {"_count": 1, "likely": {"_count": 1}}, "Amos": {"_count": 1, "said": {"_count": 1}}, "tip": {"_count": 2, "to": {"_count": 1}, "off": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "hasnt": {"_count": 3, "been": {"_count": 2}, "happened": {"_count": 1}}, "inspired": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 14, "": {"_count": 5}, "he": {"_count": 1}, "none": {"_count": 1}, "said": {"_count": 1}, "innit": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}, "so": {"_count": 1}, "Crabbe": {"_count": 1}, "the": {"_count": 1}}, "explodes": {"_count": 1, "": {"_count": 1}}, "wouldve": {"_count": 5, "been": {"_count": 2}, "covered": {"_count": 1}, "shown": {"_count": 1}, "wound": {"_count": 1}}, "think": {"_count": 1, "of": {"_count": 1}}, "help": {"_count": 3, "that": {"_count": 1}, "me": {"_count": 1}, "": {"_count": 1}}, "puts": {"_count": 1, "a": {"_count": 1}}, "theyll": {"_count": 1, "have": {"_count": 1}}, "Unplottable": {"_count": 2, "Come": {"_count": 1}, "will": {"_count": 1}}, "swaying": {"_count": 1, "with": {"_count": 1}}, "where": {"_count": 4, "he": {"_count": 1}, "it": {"_count": 2}, "Ron": {"_count": 1}}, "burst": {"_count": 3, "at": {"_count": 1}, "from": {"_count": 1}, "open": {"_count": 1}}, "sang": {"_count": 1, "when": {"_count": 1}}, "Sorted": {"_count": 1, "us": {"_count": 1}}, "being": {"_count": 5, "a": {"_count": 1}, "luck": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "summoned": {"_count": 1}}, "spends": {"_count": 1, "all": {"_count": 1}}, "immensely": {"_count": 2, "": {"_count": 2}}, "muttering": {"_count": 1, "words": {"_count": 1}}, "George": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "yeah": {"_count": 2, "said": {"_count": 2}}, "till": {"_count": 4, "then": {"_count": 1}, "break": {"_count": 1}, "later": {"_count": 1}, "the": {"_count": 1}}, "jump": {"_count": 1, "out": {"_count": 1}}, "takes": {"_count": 4, "real": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "six": {"_count": 1}}, "upon": {"_count": 6, "the": {"_count": 4}, "himself": {"_count": 1}, "herself": {"_count": 1}}, "remained": {"_count": 2, "motionless": {"_count": 1}, "immovable": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "knew": {"_count": 3, "what": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "twitch": {"_count": 1, "": {"_count": 1}}, "surveyed": {"_count": 1, "Harry": {"_count": 1}}, "thoroughly": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "say": {"_count": 2, "": {"_count": 1}, "how": {"_count": 1}}, "feels": {"_count": 5, "like": {"_count": 2}, "quite": {"_count": 1}, "But": {"_count": 1}, "": {"_count": 1}}, "apparently": {"_count": 2, "unsure": {"_count": 1}, "from": {"_count": 1}}, "start": {"_count": 1, "": {"_count": 1}}, "Angelina": {"_count": 1, "": {"_count": 1}}, "fer": {"_count": 3, "yeh": {"_count": 1}, "years": {"_count": 1}, "bindin": {"_count": 1}}, "propelled": {"_count": 1, "by": {"_count": 1}}, "Albus": {"_count": 2, "": {"_count": 1}, "Dumbledore": {"_count": 1}}, "floating": {"_count": 1, "there": {"_count": 1}}, "beneath": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "distracted": {"_count": 1, "Malfoy": {"_count": 1}}, "upright": {"_count": 1, "on": {"_count": 1}}, "emitted": {"_count": 1, "a": {"_count": 1}}, "regularly": {"_count": 1, "": {"_count": 1}}, "minutely": {"_count": 1, "turning": {"_count": 1}}, "beautiful": {"_count": 1, "": {"_count": 1}}, "gets": {"_count": 8, "nasty": {"_count": 1}, "out": {"_count": 2}, "better": {"_count": 1}, "cold": {"_count": 1}, "stolen": {"_count": 1}, "in": {"_count": 1}, "low": {"_count": 1}}, "less": {"_count": 2, "dangerous": {"_count": 1}, "": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "detects": {"_count": 2, "concealment": {"_count": 1}, "periods": {"_count": 1}}, "clicked": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "itll": {"_count": 2, "come": {"_count": 1}, "need": {"_count": 1}}, "greener": {"_count": 1, "than": {"_count": 1}}, "speeding": {"_count": 1, "through": {"_count": 1}}, "stinging": {"_count": 1, "he": {"_count": 1}}, "heal": {"_count": 1, "instantly": {"_count": 1}}, "sort": {"_count": 3, "of": {"_count": 3}}, "snored": {"_count": 1, "and": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "was": {"_count": 1}}, "exploded": {"_count": 4, "with": {"_count": 2}, "the": {"_count": 1}, "out": {"_count": 1}}, "giggles": {"_count": 1, "and": {"_count": 1}}, "yawned": {"_count": 1, "curled": {"_count": 1}}, "transpired": {"_count": 3, "did": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "circles": {"_count": 1, "overhead": {"_count": 1}}, "\u2018Tm": {"_count": 1, "not": {"_count": 1}}, "pulled": {"_count": 1, "the": {"_count": 1}}, "danced": {"_count": 1, "naked": {"_count": 1}}, "moments": {"_count": 1, "before": {"_count": 1}}, "progressed": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "since": {"_count": 3, "the": {"_count": 1}, "Thats": {"_count": 1}, "Kreacher": {"_count": 1}}, "soon": {"_count": 6, "she": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "transpired": {"_count": 1}, "but": {"_count": 1}}, "clashed": {"_count": 1, "horribly": {"_count": 1}}, "ought": {"_count": 5, "to": {"_count": 5}}, "her": {"_count": 4, "opals": {"_count": 1}, "treasures": {"_count": 1}, "drink": {"_count": 1}, "eyebrows": {"_count": 1}}, "going": {"_count": 4, "": {"_count": 3}, "while": {"_count": 1}}, "sneered": {"_count": 2, "Ron": {"_count": 1}, "Moody": {"_count": 1}}, "Then": {"_count": 1, "flee": {"_count": 1}}, "yer": {"_count": 1, "mother": {"_count": 1}}, "vigorously": {"_count": 1, "and": {"_count": 1}}, "hide": {"_count": 1, "in": {"_count": 1}}, "bobbed": {"_count": 2, "out": {"_count": 1}, "along": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "Trying": {"_count": 1, "to": {"_count": 1}}, "behave": {"_count": 1, "it": {"_count": 1}}, "Not": {"_count": 1, "all": {"_count": 1}}, "righ": {"_count": 1, "lettin": {"_count": 1}}, "revealed": {"_count": 1, "the": {"_count": 1}}, "memorized": {"_count": 1, "then": {"_count": 1}}, "blank": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "merely": {"_count": 3, "sank": {"_count": 1}, "a": {"_count": 1}, "shouted": {"_count": 1}}, "earlier": {"_count": 1, "But": {"_count": 1}}, "soared": {"_count": 10, "into": {"_count": 2}, "toward": {"_count": 2}, "away": {"_count": 1}, "across": {"_count": 1}, "straight": {"_count": 3}, "the": {"_count": 1}}, "overnight": {"_count": 1, "": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "pass": {"_count": 2, "smoothly": {"_count": 1}, "not": {"_count": 1}}, "tallied": {"_count": 1, "with": {"_count": 1}}, "dented": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 5, "Snape": {"_count": 1}, "Mad": {"_count": 1}, "him": {"_count": 1}, "caring": {"_count": 1}, "McGonagall": {"_count": 1}}, "grabbing": {"_count": 1, "a": {"_count": 1}}, "than": {"_count": 7, "Winky": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}, "Potions": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}, "disappeared": {"_count": 1, "": {"_count": 1}}, "growled": {"_count": 2, "Moody": {"_count": 2}}, "rested": {"_count": 2, "on": {"_count": 1}, "against": {"_count": 1}}, "fluttered": {"_count": 1, "across": {"_count": 1}}, "instead": {"_count": 5, "": {"_count": 3}, "on": {"_count": 1}, "of": {"_count": 1}}, "Pear": {"_count": 1, "Drop": {"_count": 1}}, "achieving": {"_count": 1, "nothing": {"_count": 1}}, "held": {"_count": 3, "a": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}}, "remembering": {"_count": 1, "how": {"_count": 1}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "dawned": {"_count": 1, "on": {"_count": 1}}, "energetically": {"_count": 1, "in": {"_count": 1}}, "prevented": {"_count": 1, "someone": {"_count": 1}}, "murmured": {"_count": 1, "Moody": {"_count": 1}}, "within": {"_count": 2, "this": {"_count": 1}, "his": {"_count": 1}}, "Father": {"_count": 1, "dont": {"_count": 1}}, "rather": {"_count": 3, "as": {"_count": 1}, "a": {"_count": 1}, "heightened": {"_count": 1}}, "woke": {"_count": 2, "you": {"_count": 1}, "me": {"_count": 1}}, "concerns": {"_count": 2, "a": {"_count": 1}, "Harry": {"_count": 1}}, "many": {"_count": 3, "times": {"_count": 3}}, "Of": {"_count": 2, "course": {"_count": 2}}, "tomorrow": {"_count": 5, "": {"_count": 3}, "just": {"_count": 1}, "said": {"_count": 1}}, "stop": {"_count": 9, "dead": {"_count": 1}, "make": {"_count": 2}, "moaned": {"_count": 1}, "lied": {"_count": 1}, "I": {"_count": 2}, "and": {"_count": 1}, "Professor": {"_count": 1}}, "flat": {"_count": 1, "in": {"_count": 1}}, "advanced": {"_count": 1, "sensing": {"_count": 1}}, "cautiously": {"_count": 1, "pointing": {"_count": 1}}, "intact": {"_count": 1, "": {"_count": 1}}, "worth": {"_count": 3, "chancing": {"_count": 1}, "investigating": {"_count": 1}, "telling": {"_count": 1}}, "froze": {"_count": 3, "he": {"_count": 1}, "in": {"_count": 1}, "absurdly": {"_count": 1}}, "burned": {"_count": 3, "a": {"_count": 1}, "black": {"_count": 1}, "suddenly": {"_count": 1}}, "tearing": {"_count": 1, "his": {"_count": 1}}, "Cedric": {"_count": 2, "muttered": {"_count": 1}, "": {"_count": 1}}, "spun": {"_count": 1, "around": {"_count": 1}}, "shook": {"_count": 1, "violently": {"_count": 1}}, "together": {"_count": 4, "": {"_count": 2}, "Dear": {"_count": 1}, "weve": {"_count": 1}}, "diminished": {"_count": 1, "terrified": {"_count": 1}}, "flickering": {"_count": 1, "in": {"_count": 1}}, "slopping": {"_count": 1, "around": {"_count": 1}}, "drown": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "sent": {"_count": 1, "sparks": {"_count": 1}}, "upward": {"_count": 3, "": {"_count": 2}, "Harry": {"_count": 1}}, "shone": {"_count": 1, "through": {"_count": 1}}, "gently": {"_count": 4, "too": {"_count": 1}, "with": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 1}}, "longed": {"_count": 1, "but": {"_count": 1}}, "writhed": {"_count": 1, "and": {"_count": 1}}, "begins": {"_count": 1, "and": {"_count": 1}}, "rebounded": {"_count": 2, "upon": {"_count": 1}, "everywhere": {"_count": 1}}, "appeared": {"_count": 4, "that": {"_count": 1}, "to": {"_count": 1}, "upon": {"_count": 1}, "Mrs": {"_count": 1}}, "Wormtail": {"_count": 2, "": {"_count": 2}}, "crack": {"_count": 1, "as": {"_count": 1}}, "trembled": {"_count": 1, "for": {"_count": 1}}, "connected": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 2, "it": {"_count": 1}, "knows": {"_count": 1}}, "filled": {"_count": 1, "his": {"_count": 1}}, "screeched": {"_count": 1, "it": {"_count": 1}}, "straightaway": {"_count": 2, "Theres": {"_count": 1}, "dont": {"_count": 1}}, "underwater": {"_count": 1, "": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "contained": {"_count": 3, "an": {"_count": 1}, "I": {"_count": 1}, "a": {"_count": 1}}, "damaged": {"_count": 1, "her": {"_count": 1}}, "ropes": {"_count": 1, "that": {"_count": 1}}, "sprang": {"_count": 1, "aside": {"_count": 1}}, "worse": {"_count": 4, "when": {"_count": 1}, "said": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 1}}, "swooped": {"_count": 1, "down": {"_count": 1}}, "unsure": {"_count": 1, "whether": {"_count": 1}}, "are": {"_count": 3, "we": {"_count": 2}, "Mr": {"_count": 1}}, "during": {"_count": 1, "his": {"_count": 1}}, "boy": {"_count": 3, "": {"_count": 2}, "I": {"_count": 1}}, "changes": {"_count": 1, "every": {"_count": 1}}, "been": {"_count": 7, "he": {"_count": 1}, "hurting": {"_count": 1}, "widely": {"_count": 1}, "busy": {"_count": 1}, "taken": {"_count": 1}, "Legilimency": {"_count": 1}, "lost": {"_count": 1}}, "snarled": {"_count": 3, "Dudley": {"_count": 2}, "Fenrir": {"_count": 1}}, "linked": {"_count": 1, "because": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "son": {"_count": 2, "": {"_count": 2}}, "Diddy": {"_count": 1, "": {"_count": 1}}, "youknow": {"_count": 1, "what": {"_count": 1}}, "outside": {"_count": 2, "that": {"_count": 1}, "school": {"_count": 1}}, "years": {"_count": 1, "ago": {"_count": 1}}, "actually": {"_count": 1, "hit": {"_count": 1}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "nor": {"_count": 2, "did": {"_count": 2}}, "varies": {"_count": 1, "just": {"_count": 1}}, "And": {"_count": 1, "with": {"_count": 1}}, "hover": {"_count": 1, "across": {"_count": 1}}, "another": {"_count": 3, "quarter": {"_count": 1}, "night": {"_count": 1}, "Death": {"_count": 1}}, "All": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 4, "the": {"_count": 4}}, "depends": {"_count": 2, "what": {"_count": 1}, "on": {"_count": 1}}, "e": {"_count": 1, "says": {"_count": 1}}, "full": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "fainted": {"_count": 1, "but": {"_count": 1}}, "telling": {"_count": 1, "lies": {"_count": 1}}, "shuffled": {"_count": 1, "hunchbacked": {"_count": 1}}, "Mudbloods": {"_count": 1, "and": {"_count": 1}}, "Dont": {"_count": 1, "we": {"_count": 1}}, "Kreacher": {"_count": 1, "will": {"_count": 1}}, "lightly": {"_count": 1, "with": {"_count": 1}}, "already": {"_count": 2, "full": {"_count": 1}, "": {"_count": 1}}, "followed": {"_count": 2, "by": {"_count": 2}}, "started": {"_count": 6, "breathing": {"_count": 1}, "to": {"_count": 2}, "there": {"_count": 1}, "its": {"_count": 1}, "": {"_count": 1}}, "interesting": {"_count": 1, "": {"_count": 1}}, "starts": {"_count": 1, "at": {"_count": 1}}, "Enough": {"_count": 1, "enough": {"_count": 1}}, "thud": {"_count": 1, "shut": {"_count": 1}}, "follows": {"_count": 2, "logically": {"_count": 1}, "that": {"_count": 1}}, "describes": {"_count": 1, "": {"_count": 1}}, "gazing": {"_count": 2, "unseeingly": {"_count": 1}, "into": {"_count": 1}}, "tenderly": {"_count": 1, "in": {"_count": 1}}, "Molly": {"_count": 1, "": {"_count": 1}}, "led": {"_count": 3, "to": {"_count": 1}, "as": {"_count": 1}, "you": {"_count": 1}}, "disturbing": {"_count": 1, "": {"_count": 1}}, "chasing": {"_count": 1, "the": {"_count": 1}}, "er": {"_count": 2, "do": {"_count": 1}, "": {"_count": 1}}, "resolutely": {"_count": 2, "upside": {"_count": 1}, "upon": {"_count": 1}}, "seeing": {"_count": 2, "Hagrid": {"_count": 1}, "how": {"_count": 1}}, "know": {"_count": 2, "if": {"_count": 1}, "could": {"_count": 1}}, "lives": {"_count": 3, "in": {"_count": 2}, "on": {"_count": 1}}, "picks": {"_count": 1, "things": {"_count": 1}}, "wants": {"_count": 1, "all": {"_count": 1}}, "sick": {"_count": 1, "of": {"_count": 1}}, "anger": {"_count": 1, "at": {"_count": 1}}, "cheap": {"_count": 1, "": {"_count": 1}}, "appropriate": {"_count": 2, "to": {"_count": 1}, "said": {"_count": 1}}, "clearly": {"_count": 2, "with": {"_count": 1}, "what": {"_count": 1}}, "fiercely": {"_count": 1, "at": {"_count": 1}}, "Good": {"_count": 1, "day": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "sealed": {"_count": 1, "itself": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "fine": {"_count": 3, "by": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}}, "tells": {"_count": 2, "him": {"_count": 1}, "me": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "including": {"_count": 1, "Ginny": {"_count": 1}}, "tell": {"_count": 1, "her": {"_count": 1}}, "unlikely": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "unless": {"_count": 1, "he": {"_count": 1}}, "wheres": {"_count": 1, "Hermione": {"_count": 1}}, "see": {"_count": 1, "what": {"_count": 1}}, "suspended": {"_count": 1, "an": {"_count": 1}}, "involve": {"_count": 1, "Paracelsus": {"_count": 1}}, "ripped": {"_count": 2, "down": {"_count": 1}, "apart": {"_count": 1}}, "quite": {"_count": 6, "clear": {"_count": 1}, "comfortably": {"_count": 1}, "easy": {"_count": 1}, "apart": {"_count": 1}, "calmly": {"_count": 1}, "a": {"_count": 1}}, "Alicia": {"_count": 1, "and": {"_count": 1}}, "lousy": {"_count": 1, "": {"_count": 1}}, "Hermes": {"_count": 1, "flew": {"_count": 1}}, "written": {"_count": 1, "down": {"_count": 1}}, "fun": {"_count": 2, "for": {"_count": 2}}, "whole": {"_count": 1, "": {"_count": 1}}, "ourselves": {"_count": 2, "": {"_count": 2}}, "groaned": {"_count": 1, "Ron": {"_count": 1}}, "odd": {"_count": 1, "that": {"_count": 1}}, "badly": {"_count": 1, "": {"_count": 1}}, "covered": {"_count": 2, "everything": {"_count": 1}, "the": {"_count": 1}}, "we": {"_count": 6, "dont": {"_count": 1}, "can": {"_count": 1}, "do": {"_count": 1}, "shall": {"_count": 1}, "found": {"_count": 1}, "bashed": {"_count": 1}}, "anyway": {"_count": 1, "of": {"_count": 1}}, "mentions": {"_count": 1, "teams": {"_count": 1}}, "exceptionally": {"_count": 1, "difficult": {"_count": 1}}, "hastily": {"_count": 2, "upon": {"_count": 1}, "and": {"_count": 1}}, "appears": {"_count": 3, "it": {"_count": 1}, "that": {"_count": 2}}, "fill": {"_count": 1, "itself": {"_count": 1}}, "formal": {"_count": 1, "and": {"_count": 1}}, "stand": {"_count": 1, "for": {"_count": 1}}, "melt": {"_count": 1, "back": {"_count": 1}}, "decided": {"_count": 1, "on": {"_count": 1}}, "chewing": {"_count": 1, "up": {"_count": 1}}, "Olympe": {"_count": 1, "": {"_count": 1}}, "Dead": {"_count": 1, "Hagrid": {"_count": 1}}, "inflicted": {"_count": 1, "from": {"_count": 1}}, "won": {"_count": 3, "hurt": {"_count": 1}, "it": {"_count": 1}, "Filch": {"_count": 1}}, "Cho": {"_count": 1, "": {"_count": 1}}, "Dean": {"_count": 1, "and": {"_count": 1}}, "Mr": {"_count": 4, "Weasley": {"_count": 2}, "Gaunt": {"_count": 1}, "Finnigan": {"_count": 1}}, "split": {"_count": 2, "in": {"_count": 1}, "became": {"_count": 1}}, "opening": {"_count": 1, "its": {"_count": 1}}, "Dilys": {"_count": 1, "will": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "quivered": {"_count": 1, "to": {"_count": 1}}, "seconds": {"_count": 1, "after": {"_count": 1}}, "slopped": {"_count": 1, "over": {"_count": 1}}, "underground": {"_count": 1, "like": {"_count": 1}}, "steady": {"_count": 4, "": {"_count": 3}, "prevented": {"_count": 1}}, "Muggles": {"_count": 1, "in": {"_count": 1}}, "attacked": {"_count": 1, "you": {"_count": 1}}, "halfway": {"_count": 1, "toward": {"_count": 1}}, "desperate": {"_count": 1, "for": {"_count": 1}}, "hungrily": {"_count": 1, "into": {"_count": 1}}, "today": {"_count": 1, "or": {"_count": 1}}, "described": {"_count": 1, "": {"_count": 1}}, "hers": {"_count": 1, "was": {"_count": 1}}, "later": {"_count": 1, "thatll": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "stretched": {"_count": 1, "sideways": {"_count": 1}}, "wishing": {"_count": 1, "he": {"_count": 1}}, "inadvisable": {"_count": 1, "for": {"_count": 1}}, "swirled": {"_count": 1, "silvery": {"_count": 1}}, "blinded": {"_count": 1, "him": {"_count": 1}}, "leads": {"_count": 1, "to": {"_count": 1}}, "tentatively": {"_count": 1, "": {"_count": 1}}, "died": {"_count": 2, "away": {"_count": 1}, "last": {"_count": 1}}, "sleek": {"_count": 1, "thick": {"_count": 1}}, "likely": {"_count": 4, "that": {"_count": 3}, "there": {"_count": 1}}, "tries": {"_count": 1, "to": {"_count": 1}}, "glared": {"_count": 1, "for": {"_count": 1}}, "kill": {"_count": 1, "her": {"_count": 1}}, "bu": {"_count": 1, "that": {"_count": 1}}, "indeed": {"_count": 1, "some": {"_count": 1}}, "Thats": {"_count": 1, "not": {"_count": 1}}, "sometime": {"_count": 1, "Snape": {"_count": 1}}, "February": {"_count": 1, "had": {"_count": 1}}, "wetter": {"_count": 1, "and": {"_count": 1}}, "dont": {"_count": 3, "you": {"_count": 2}, "ask": {"_count": 1}}, "their": {"_count": 3, "absence": {"_count": 1}, "leafy": {"_count": 1}, "tips": {"_count": 1}}, "ttoo": {"_count": 1, "": {"_count": 1}}, "wide": {"_count": 1, "and": {"_count": 1}}, "languidly": {"_count": 1, "removing": {"_count": 1}}, "interfered": {"_count": 1, "with": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "Master": {"_count": 1, "": {"_count": 1}}, "spill": {"_count": 1, "over": {"_count": 1}}, "increasingly": {"_count": 1, "difficult": {"_count": 1}}, "inevitable": {"_count": 1, "you": {"_count": 1}}, "therefore": {"_count": 1, "had": {"_count": 1}}, "stuck": {"_count": 1, "up": {"_count": 1}}, "fondly": {"_count": 1, "": {"_count": 1}}, "aaRGH": {"_count": 1, "": {"_count": 1}}, "Potters": {"_count": 1, "identical": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "particularly": {"_count": 2, "every": {"_count": 1}, "in": {"_count": 1}}, "occasionally": {"_count": 1, "said": {"_count": 1}}, "smiling": {"_count": 1, "in": {"_count": 1}}, "needed": {"_count": 1, "was": {"_count": 1}}, "blasted": {"_count": 1, "a": {"_count": 1}}, "placed": {"_count": 1, "his": {"_count": 1}}, "reminded": {"_count": 3, "of": {"_count": 1}, "him": {"_count": 2}}, "possibly": {"_count": 1, "be": {"_count": 1}}, "zoom": {"_count": 1, "farther": {"_count": 1}}, "bothers": {"_count": 1, "you": {"_count": 1}}, "warily": {"_count": 1, "": {"_count": 1}}, "flashed": {"_count": 1, "a": {"_count": 1}}, "gloomily": {"_count": 1, "but": {"_count": 1}}, "Minerva": {"_count": 1, "McGonagall": {"_count": 1}}, "please": {"_count": 1, "dont": {"_count": 1}}, "deserted": {"_count": 2, "": {"_count": 2}}, "helps": {"_count": 3, "Madam": {"_count": 1}, "when": {"_count": 2}}, "scampered": {"_count": 1, "happily": {"_count": 1}}, "strayed": {"_count": 1, "down": {"_count": 1}}, "wait": {"_count": 2, "Hagrid": {"_count": 1}, "until": {"_count": 1}}, "ruddy": {"_count": 1, "well": {"_count": 1}}, "eggs": {"_count": 1, "fell": {"_count": 1}}, "toward": {"_count": 3, "him": {"_count": 2}, "her": {"_count": 1}}, "untrue": {"_count": 1, "": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "dissolved": {"_count": 1, "into": {"_count": 1}}, "youll": {"_count": 2, "still": {"_count": 1}, "appear": {"_count": 1}}, "remember": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "illegally": {"_count": 1, "in": {"_count": 1}}, "annoyed": {"_count": 1, "her": {"_count": 1}}, "missed": {"_count": 3, "and": {"_count": 1}, "him": {"_count": 1}, "but": {"_count": 1}}, "facing": {"_count": 1, "them": {"_count": 1}}, "carry": {"_count": 1, "on": {"_count": 1}}, "\u25a0": {"_count": 1, "Thats": {"_count": 1}}, "accidentally": {"_count": 1, "didnt": {"_count": 1}}, "caught": {"_count": 2, "at": {"_count": 1}, "it": {"_count": 1}}, "those": {"_count": 1, "mad": {"_count": 1}}, "Youd": {"_count": 1, "better": {"_count": 1}}, "stays": {"_count": 1, "invisible": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "whirred": {"_count": 1, "back": {"_count": 1}}, "old": {"_count": 1, "though": {"_count": 1}}, "come": {"_count": 2, "away": {"_count": 1}, "from": {"_count": 1}}, "cracked": {"_count": 1, "open": {"_count": 1}}, "glimmered": {"_count": 1, "the": {"_count": 1}}, "dweamed": {"_count": 1, "was": {"_count": 1}}, "gaunt": {"_count": 1, "and": {"_count": 1}}, "creaked": {"_count": 1, "and": {"_count": 1}}, "unraveling": {"_count": 1, "like": {"_count": 1}}, "disgorge": {"_count": 1, "its": {"_count": 1}}, "bet": {"_count": 1, "its": {"_count": 1}}, "scrabbling": {"_count": 1, "like": {"_count": 1}}, "righteous": {"_count": 1, "anger": {"_count": 1}}, "pain": {"_count": 1, "seared": {"_count": 1}}, "dived": {"_count": 2, "at": {"_count": 1}, "toward": {"_count": 1}}, "wrapped": {"_count": 2, "itself": {"_count": 1}, "in": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "A": {"_count": 1, "picture": {"_count": 1}}, "final": {"_count": 1, "absolute": {"_count": 1}}, "mattered": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "perfectly": {"_count": 4, "": {"_count": 1}, "plain": {"_count": 2}, "so": {"_count": 1}}, "common": {"_count": 1, "politeness": {"_count": 1}}, "draped": {"_count": 1, "in": {"_count": 1}}, "somehow": {"_count": 2, "said": {"_count": 1}, "can": {"_count": 1}}, "shattered": {"_count": 1, "": {"_count": 1}}, "mate": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "added": {"_count": 1, "Lupin": {"_count": 1}}, "never": {"_count": 3, "boded": {"_count": 1}, "worked": {"_count": 1}, "occurred": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "\u2018breakdown": {"_count": 1, "of": {"_count": 1}}, "briefly": {"_count": 1, "his": {"_count": 1}}, "threateningly": {"_count": 1, "in": {"_count": 1}}, "Narcissa": {"_count": 1, "continued": {"_count": 1}}, "prove": {"_count": 1, "necessary": {"_count": 1}}, "exists": {"_count": 1, "are": {"_count": 1}}, "rude": {"_count": 1, "to": {"_count": 1}}, "justice": {"_count": 1, "": {"_count": 1}}, "useful": {"_count": 1, "": {"_count": 1}}, "bore": {"_count": 1, "": {"_count": 1}}, "warming": {"_count": 1, "his": {"_count": 1}}, "twitching": {"_count": 1, "a": {"_count": 1}}, "unpleasant": {"_count": 1, "": {"_count": 1}}, "glowed": {"_count": 2, "like": {"_count": 1}, "brightly": {"_count": 1}}, "whipped": {"_count": 2, "Mrs": {"_count": 1}, "upward": {"_count": 1}}, "far": {"_count": 1, "easier": {"_count": 1}}, "punched": {"_count": 1, "me": {"_count": 1}}, "removed": {"_count": 1, "all": {"_count": 1}}, "gingerly": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "done": {"_count": 2, "its": {"_count": 1}, "when": {"_count": 1}}, "regretfully": {"_count": 1, "back": {"_count": 1}}, "closing": {"_count": 1, "": {"_count": 1}}, "panicked": {"_count": 1, "voices": {"_count": 1}}, "enabled": {"_count": 1, "him": {"_count": 1}}, "wobbled": {"_count": 1, "dangerously": {"_count": 1}}, "carried": {"_count": 2, "over": {"_count": 1}, "clearly": {"_count": 1}}, "definite": {"_count": 1, "is": {"_count": 1}}, "most": {"_count": 2, "likely": {"_count": 1}, "unlikely": {"_count": 1}}, "causes": {"_count": 2, "giddiness": {"_count": 1}, "some": {"_count": 1}}, "paid": {"_count": 1, "off": {"_count": 1}}, "smartly": {"_count": 1, "on": {"_count": 1}}, "slipped": {"_count": 2, "from": {"_count": 1}, "down": {"_count": 1}}, "sufficiently": {"_count": 1, "to": {"_count": 1}}, "Ive": {"_count": 4, "seen": {"_count": 1}, "got": {"_count": 2}, "never": {"_count": 1}}, "grub": {"_count": 1, "on": {"_count": 1}}, "Instead": {"_count": 1, "he": {"_count": 1}}, "hands": {"_count": 1, "trembling": {"_count": 1}}, "pompous": {"_count": 1, "and": {"_count": 1}}, "Cecilia": {"_count": 1, "darling": {"_count": 1}}, "important": {"_count": 1, "to": {"_count": 1}}, "cost": {"_count": 1, "nine": {"_count": 1}}, "fair": {"_count": 1, "and": {"_count": 1}}, "Yes": {"_count": 1, "yes": {"_count": 1}}, "keep": {"_count": 1, "it": {"_count": 1}}, "near": {"_count": 1, "enough": {"_count": 1}}, "both": {"_count": 1, "rich": {"_count": 1}}, "except": {"_count": 3, "an": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 1}}, "although": {"_count": 1, "Muggles": {"_count": 1}}, "Riddle": {"_count": 2, "said": {"_count": 1}, "do": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "coincided": {"_count": 1, "with": {"_count": 1}}, "youre": {"_count": 3, "my": {"_count": 1}, "after": {"_count": 1}, "not": {"_count": 1}}, "drowned": {"_count": 1, "all": {"_count": 1}}, "slammed": {"_count": 1, "": {"_count": 1}}, "enthusiastically": {"_count": 1, "the": {"_count": 1}}, "glowered": {"_count": 1, "down": {"_count": 1}}, "gone": {"_count": 2, "": {"_count": 2}}, "spells": {"_count": 1, "he": {"_count": 1}}, "natural": {"_count": 1, "that": {"_count": 1}}, "pushing": {"_count": 1, "aside": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "flood": {"_count": 1, "from": {"_count": 1}}, "searching": {"_count": 1, "": {"_count": 1}}, "given": {"_count": 1, "the": {"_count": 1}}, "joined": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "hiding": {"_count": 1, "beneath": {"_count": 1}}, "mboy": {"_count": 1, "dont": {"_count": 1}}, "\u2018greatness": {"_count": 1, "what": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "round": {"_count": 1, "dusk": {"_count": 1}}, "get": {"_count": 1, "lucky": {"_count": 1}}, "happening": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "blowing": {"_count": 1, "his": {"_count": 1}}, "coiled": {"_count": 3, "then": {"_count": 1}, "itself": {"_count": 1}, "and": {"_count": 1}}, "overdone": {"_count": 1, "": {"_count": 1}}, "Tom": {"_count": 1, "very": {"_count": 1}}, "answered": {"_count": 1, "": {"_count": 1}}, "fitted": {"_count": 1, "Lord": {"_count": 1}}, "ran": {"_count": 1, "out": {"_count": 1}}, "protected": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "certain": {"_count": 1, "really": {"_count": 1}}, "snow": {"_count": 1, "said": {"_count": 1}}, "stew": {"_count": 1, "": {"_count": 1}}, "base": {"_count": 2, "treachery": {"_count": 2}}, "somebody": {"_count": 1, "else": {"_count": 1}}, "tweaking": {"_count": 1, "the": {"_count": 1}}, "deduced": {"_count": 1, "that": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "Malfoy": {"_count": 2, "was": {"_count": 1}, "jumped": {"_count": 1}}, "\u2018Your": {"_count": 1, "permission": {"_count": 1}}, "offered": {"_count": 1, "": {"_count": 1}}, "male": {"_count": 1, "or": {"_count": 1}}, "concerned": {"_count": 1, "his": {"_count": 1}}, "extended": {"_count": 1, "far": {"_count": 1}}, "intently": {"_count": 1, "as": {"_count": 1}}, "healed": {"_count": 1, "instantly": {"_count": 1}}, "knowing": {"_count": 1, "that": {"_count": 1}}, "hold": {"_count": 1, "both": {"_count": 1}}, "underestimates": {"_count": 1, "youth": {"_count": 1}}, "onward": {"_count": 1, "toward": {"_count": 1}}, "marble": {"_count": 1, "white": {"_count": 1}}, "kills": {"_count": 1, "you": {"_count": 1}}, "drop": {"_count": 1, "by": {"_count": 1}}, "created": {"_count": 1, "a": {"_count": 1}}, "sorry": {"_count": 1, "that": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "rest": {"_count": 1, "": {"_count": 1}}, "mere": {"_count": 1, "hours": {"_count": 1}}, "sooner": {"_count": 1, "rather": {"_count": 1}}, "threatened": {"_count": 1, "to": {"_count": 1}}, "swept": {"_count": 1, "over": {"_count": 1}}, "remains": {"_count": 1, "unlikely": {"_count": 1}}, "along": {"_count": 1, "to": {"_count": 1}}, "healthy": {"_count": 1, "": {"_count": 1}}, "six": {"_count": 1, "years": {"_count": 1}}, "Betty": {"_count": 1, "Im": {"_count": 1}}, "repeated": {"_count": 1, "Uncle": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "early": {"_count": 1, "because": {"_count": 1}}, "expand": {"_count": 1, "into": {"_count": 1}}, "meself": {"_count": 1, "yehve": {"_count": 1}}, "raise": {"_count": 1, "its": {"_count": 1}}, "drag": {"_count": 1, "his": {"_count": 1}}, "become": {"_count": 1, "so": {"_count": 1}}, "collapsed": {"_count": 1, "beneath": {"_count": 1}}, "enveloped": {"_count": 1, "him": {"_count": 1}}, "warns": {"_count": 1, "Dark": {"_count": 1}}, "beyond": {"_count": 1, "magical": {"_count": 1}}, "So": {"_count": 1, "was": {"_count": 1}}, "resolved": {"_count": 1, "itself": {"_count": 1}}, "individually": {"_count": 1, "": {"_count": 1}}, "taken": {"_count": 1, "this": {"_count": 1}}, "entertaining": {"_count": 1, "and": {"_count": 1}}, "spelling": {"_count": 1, "I": {"_count": 1}}, "why": {"_count": 2, "didnt": {"_count": 1}, "he": {"_count": 1}}, "personally": {"_count": 2, "shes": {"_count": 1}, "from": {"_count": 1}}, "beautified": {"_count": 1, "everybody": {"_count": 1}}, "veil": {"_count": 1, "": {"_count": 1}}, "menacingly": {"_count": 1, "on": {"_count": 1}}, "Aberforth": {"_count": 1, "shouted": {"_count": 1}}, "spoke": {"_count": 1, "in": {"_count": 1}}, "echoed": {"_count": 2, "like": {"_count": 1}, "around": {"_count": 1}}, "She": {"_count": 2, "glanced": {"_count": 1}, "raised": {"_count": 1}}, "checking": {"_count": 1, "every": {"_count": 1}}, "eerie": {"_count": 1, "cobwebbed": {"_count": 1}}, "solidified": {"_count": 1, "into": {"_count": 1}}, "Bolting": {"_count": 1, "the": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "proved": {"_count": 1, "to": {"_count": 1}}, "hidden": {"_count": 1, "from": {"_count": 1}}, "truthfully": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "would": {"_count": 1}}, "moaned": {"_count": 2, "the": {"_count": 1}, "faintly": {"_count": 1}}, "WANTED": {"_count": 1, "FOR": {"_count": 1}}, "For": {"_count": 1, "your": {"_count": 1}}, "valuable": {"_count": 1, "": {"_count": 1}}, "word": {"_count": 1, "perfect": {"_count": 1}}, "Cattermole": {"_count": 1, "and": {"_count": 1}}, "raining": {"_count": 1, "": {"_count": 1}}, "smoked": {"_count": 1, "": {"_count": 1}}, "sneaked": {"_count": 1, "up": {"_count": 1}}, "arrived": {"_count": 1, "": {"_count": 1}}, "rattled": {"_count": 1, "to": {"_count": 1}}, "instinctively": {"_count": 1, "without": {"_count": 1}}, "chose": {"_count": 1, "me": {"_count": 1}}, "concealed": {"_count": 1, "beneath": {"_count": 1}}, "cantered": {"_count": 1, "around": {"_count": 1}}, "Geminio": {"_count": 1, "There": {"_count": 1}}, "Reg": {"_count": 1, "I": {"_count": 1}}, "partly": {"_count": 1, "because": {"_count": 1}}, "parted": {"_count": 1, "contact": {"_count": 1}}, "They": {"_count": 4, "were": {"_count": 2}, "needed": {"_count": 1}, "seemed": {"_count": 1}}, "Stunned": {"_count": 1, "Dawlish": {"_count": 1}}, "prudent": {"_count": 1, "said": {"_count": 1}}, "Dirk": {"_count": 1, "had": {"_count": 1}}, "pattered": {"_count": 1, "on": {"_count": 1}}, "The": {"_count": 3, "others": {"_count": 1}, "color": {"_count": 1}, "inexplicable": {"_count": 1}}, "also": {"_count": 2, "made": {"_count": 1}, "gives": {"_count": 1}}, "doing": {"_count": 1, "in": {"_count": 1}}, "pulsing": {"_count": 1, "through": {"_count": 1}}, "sense": {"_count": 1, "that": {"_count": 1}}, "solemnly": {"_count": 1, "then": {"_count": 1}}, "slide": {"_count": 1, "over": {"_count": 1}}, "sear": {"_count": 1, "the": {"_count": 1}}, "crying": {"_count": 1, "he": {"_count": 1}}, "aghast": {"_count": 1, "unable": {"_count": 1}}, "His": {"_count": 1, "senses": {"_count": 1}}, "calls": {"_count": 1, "into": {"_count": 1}}, "lingering": {"_count": 1, "affection": {"_count": 1}}, "plays": {"_count": 1, "tricks": {"_count": 1}}, "pitchblack": {"_count": 1, "in": {"_count": 1}}, "obscured": {"_count": 1, "his": {"_count": 1}}, "counted": {"_count": 1, "as": {"_count": 1}}, "affects": {"_count": 1, "me": {"_count": 1}}, "affected": {"_count": 1, "you": {"_count": 1}}, "STAB": {"_count": 1, "IT": {"_count": 1}}, "nearly": {"_count": 3, "killed": {"_count": 1}, "swallowing": {"_count": 1}, "four": {"_count": 1}}, "anyone": {"_count": 2, "who": {"_count": 1}, "he": {"_count": 1}}, "thrice": {"_count": 1, "in": {"_count": 1}}, "passes": {"_count": 1, "from": {"_count": 1}}, "argued": {"_count": 1, "Ron": {"_count": 1}}, "fits": {"_count": 1, "of": {"_count": 1}}, "Their": {"_count": 1, "lamps": {"_count": 1}}, "Harrys": {"_count": 1, "scar": {"_count": 1}}, "aint": {"_count": 1, "Greyback": {"_count": 1}}, "Arthur": {"_count": 1, "Weasleys": {"_count": 1}}, "PLEASE": {"_count": 1, "": {"_count": 1}}, "hoping": {"_count": 1, "for": {"_count": 1}}, "dropping": {"_count": 1, "Hermione": {"_count": 1}}, "pillowlike": {"_count": 1, "over": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "repulsed": {"_count": 2, "him": {"_count": 2}}, "vanishes": {"_count": 1, "from": {"_count": 1}}, "resurfaces": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "business": {"_count": 1}}, "resist": {"_count": 1, "": {"_count": 1}}, "Every": {"_count": 1, "time": {"_count": 1}}, "rented": {"_count": 1, "by": {"_count": 1}}, "offend": {"_count": 1, "you": {"_count": 1}}, "working": {"_count": 1, "well": {"_count": 1}}, "strongly": {"_count": 1, "enough": {"_count": 1}}, "Bogrod": {"_count": 1, "in": {"_count": 1}}, "spread": {"_count": 1, "them": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "hears": {"_count": 1, "the": {"_count": 1}}, "trembling": {"_count": 1, "and": {"_count": 1}}, "found": {"_count": 1, "an": {"_count": 1}}, "scalding": {"_count": 1, "his": {"_count": 1}}, "reared": {"_count": 1, "Harry": {"_count": 1}}, "struggled": {"_count": 1, "upward": {"_count": 1}}, "forced": {"_count": 1, "its": {"_count": 1}}, "staggered": {"_count": 1, "into": {"_count": 1}}, "realized": {"_count": 1, "it": {"_count": 1}}, "realizes": {"_count": 1, "were": {"_count": 1}}, "climb": {"_count": 1, "higher": {"_count": 1}}, "Id": {"_count": 1, "had": {"_count": 1}}, "wished": {"_count": 1, "he": {"_count": 1}}, "HarryY": {"_count": 1, "THE": {"_count": 1}}, "Terry": {"_count": 1, "Boot": {"_count": 1}}, "drove": {"_count": 1, "them": {"_count": 1}}, "fast": {"_count": 2, "": {"_count": 2}}, "lost": {"_count": 1, "": {"_count": 1}}, "flying": {"_count": 1, "back": {"_count": 1}}, "smashed": {"_count": 2, "into": {"_count": 1}, "a": {"_count": 1}}, "What": {"_count": 1, "are": {"_count": 1}}, "absolutely": {"_count": 1, "brilliant": {"_count": 1}}, "exactly": {"_count": 1, "where": {"_count": 1}}, "unwise": {"_count": 1, "to": {"_count": 1}}, "steadied": {"_count": 1, "": {"_count": 1}}, "hot": {"_count": 1, "scum": {"_count": 1}}, "dropped": {"_count": 1, "toward": {"_count": 1}}, "WIT": {"_count": 1, "BEYOND": {"_count": 1}}, "unable": {"_count": 2, "to": {"_count": 1}, "it": {"_count": 1}}, "Voldemorts": {"_count": 1, "sibilant": {"_count": 1}}, "failed": {"_count": 1, "": {"_count": 1}}, "whitened": {"_count": 1, "as": {"_count": 1}}, "gushed": {"_count": 1, "from": {"_count": 1}}, "re": {"_count": 1, "formed": {"_count": 1}}, "clattered": {"_count": 1, "through": {"_count": 1}}, "pumped": {"_count": 1, "all": {"_count": 1}}, "Nagini": {"_count": 1, "": {"_count": 1}}, "strange": {"_count": 1, "": {"_count": 1}}, "dragged": {"_count": 1, "and": {"_count": 1}}, "regurgitated": {"_count": 1, "some": {"_count": 1}}, "baldly": {"_count": 1, "coldly": {"_count": 1}}, "completed": {"_count": 1, "the": {"_count": 1}}, "pressed": {"_count": 1, "between": {"_count": 1}}, "dangled": {"_count": 1, "empty": {"_count": 1}}, "love": {"_count": 1, "again": {"_count": 1}}, "months": {"_count": 1, "before": {"_count": 1}}, "building": {"_count": 1, "inside": {"_count": 1}}, "worry": {"_count": 1, "you": {"_count": 1}}}, "think": {"_count": 1701, "they": {"_count": 30, "could": {"_count": 3}, "should": {"_count": 2}, "took": {"_count": 1}, "liked": {"_count": 1}, "choose": {"_count": 1}, "had": {"_count": 1}, "suspect": {"_count": 1}, "cant": {"_count": 1}, "might": {"_count": 5}, "want": {"_count": 1}, "know": {"_count": 1}, "are": {"_count": 3}, "were": {"_count": 2}, "can": {"_count": 1}, "deserve": {"_count": 1}, "believe": {"_count": 1}, "think": {"_count": 1}, "ought": {"_count": 2}, "said": {"_count": 1}}, "what": {"_count": 26, "the": {"_count": 4}, "could": {"_count": 1}, "he": {"_count": 2}, "to": {"_count": 8}, "would": {"_count": 1}, "else": {"_count": 2}, "we": {"_count": 1}, "it": {"_count": 3}, "had": {"_count": 1}, "youve": {"_count": 1}, "ter": {"_count": 1}, "happened": {"_count": 1}}, "of": {"_count": 120, "it": {"_count": 18}, "anything": {"_count": 13}, "apple": {"_count": 1}, "dark": {"_count": 1}, "the": {"_count": 8}, "tackling": {"_count": 1}, "running": {"_count": 1}, "nobody": {"_count": 1}, "doing": {"_count": 2}, "anyone": {"_count": 3}, "gasped": {"_count": 1}, "her": {"_count": 1}, "Voldemort": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "Jamess": {"_count": 1}, "something": {"_count": 3}, "Black": {"_count": 1}, "a": {"_count": 13}, "only": {"_count": 1}, "any": {"_count": 6}, "his": {"_count": 2}, "flying": {"_count": 1}, "you": {"_count": 1}, "no": {"_count": 2}, "some": {"_count": 2}, "me": {"_count": 1}, "about": {"_count": 1}, "one": {"_count": 1}, "them": {"_count": 2}, "Sirius": {"_count": 2}, "what": {"_count": 1}, "said": {"_count": 1}, "nothing": {"_count": 5}, "things": {"_count": 1}, "banning": {"_count": 1}, "unfortunately": {"_count": 1}, "him": {"_count": 1}, "giving": {"_count": 1}, "an": {"_count": 1}, "for": {"_count": 1}, "killing": {"_count": 1}, "little": {"_count": 1}, "Hermione": {"_count": 1}, "further": {"_count": 1}, "Ron": {"_count": 1}, "anywhere": {"_count": 1}, "snow": {"_count": 1}, "many": {"_count": 1}, "": {"_count": 2}, "leaving": {"_count": 1}}, "he": {"_count": 93, "could": {"_count": 9}, "might": {"_count": 5}, "remembers": {"_count": 1}, "was": {"_count": 14}, "wanted": {"_count": 2}, "meant": {"_count": 1}, "sort": {"_count": 1}, "knows": {"_count": 2}, "did": {"_count": 4}, "managed": {"_count": 1}, "sneered": {"_count": 1}, "himself": {"_count": 1}, "thought": {"_count": 2}, "started": {"_count": 1}, "suspects": {"_count": 1}, "couldnt": {"_count": 2}, "yelled": {"_count": 1}, "said": {"_count": 6}, "aimed": {"_count": 1}, "realizes": {"_count": 1}, "can": {"_count": 2}, "knew": {"_count": 6}, "ought": {"_count": 1}, "has": {"_count": 2}, "": {"_count": 1}, "listened": {"_count": 1}, "knocked": {"_count": 1}, "had": {"_count": 2}, "left": {"_count": 1}, "is": {"_count": 4}, "just": {"_count": 1}, "dreads": {"_count": 1}, "must": {"_count": 2}, "still": {"_count": 1}, "succeeded": {"_count": 1}, "understands": {"_count": 1}, "would": {"_count": 2}, "realized": {"_count": 1}, "really": {"_count": 1}, "liked": {"_count": 1}, "whispered": {"_count": 1}, "looks": {"_count": 1}, "needs": {"_count": 1}}, "theyd": {"_count": 4, "be": {"_count": 2}, "have": {"_count": 1}, "feel": {"_count": 1}}, "this": {"_count": 16, "was": {"_count": 1}, "mirror": {"_count": 1}, "place": {"_count": 1}, "is": {"_count": 5}, "should": {"_count": 1}, "might": {"_count": 1}, "time": {"_count": 1}, "left": {"_count": 1}, "Prince": {"_count": 1}, "will": {"_count": 1}, "a": {"_count": 1}, "wand": {"_count": 1}}, "you": {"_count": 77, "can": {"_count": 1}, "must": {"_count": 5}, "should": {"_count": 10}, "know": {"_count": 6}, "could": {"_count": 6}, "meant": {"_count": 1}, "get": {"_count": 1}, "did": {"_count": 2}, "saw": {"_count": 1}, "were": {"_count": 5}, "didnt": {"_count": 1}, "are": {"_count": 5}, "might": {"_count": 3}, "will": {"_count": 7}, "treated": {"_count": 1}, "ought": {"_count": 5}, "alone": {"_count": 1}, "11": {"_count": 3}, "understood": {"_count": 1}, "managed": {"_count": 1}, "have": {"_count": 2}, "next": {"_count": 1}, "need": {"_count": 1}, "Horace": {"_count": 1}, "missed": {"_count": 1}, "knew": {"_count": 1}, "quite": {"_count": 1}, "may": {"_count": 1}, "would": {"_count": 1}, "couldnt": {"_count": 1}}, "it": {"_count": 87, "wise": {"_count": 1}, "might": {"_count": 4}, "is": {"_count": 12}, "had": {"_count": 2}, "was": {"_count": 24}, "must": {"_count": 4}, "did": {"_count": 1}, "best": {"_count": 2}, "looks": {"_count": 2}, "would": {"_count": 5}, "a": {"_count": 1}, "more": {"_count": 2}, "extremely": {"_count": 1}, "remotely": {"_count": 1}, "possible": {"_count": 1}, "makes": {"_count": 2}, "depends": {"_count": 1}, "better": {"_count": 1}, "hadnt": {"_count": 1}, "appropriate": {"_count": 1}, "rather": {"_count": 1}, "means": {"_count": 2}, "likely": {"_count": 1}, "amusing": {"_count": 1}, "will": {"_count": 4}, "can": {"_count": 2}, "went": {"_count": 1}, "right": {"_count": 1}, "unlikely": {"_count": 1}, "matters": {"_count": 1}, "should": {"_count": 1}, "through": {"_count": 1}, "unwise": {"_count": 1}}, "about": {"_count": 57, "how": {"_count": 1}, "it": {"_count": 20}, "as": {"_count": 2}, "and": {"_count": 1}, "during": {"_count": 1}, "the": {"_count": 7}, "his": {"_count": 2}, "other": {"_count": 1}, "dragons": {"_count": 1}, "in": {"_count": 1}, "Moaning": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}, "anything": {"_count": 1}, "what": {"_count": 4}, "something": {"_count": 1}, "that": {"_count": 2}, "Christmas": {"_count": 1}, "this": {"_count": 2}, "": {"_count": 1}, "retirement": {"_count": 1}, "Ginny": {"_count": 1}, "some": {"_count": 1}, "exactly": {"_count": 1}, "more": {"_count": 1}}, "theyre": {"_count": 7, "watching": {"_count": 1}, "doing": {"_count": 3}, "better": {"_count": 1}, "biding": {"_count": 1}, "called": {"_count": 1}}, "I": {"_count": 91, "can": {"_count": 6}, "still": {"_count": 1}, "remember": {"_count": 1}, "know": {"_count": 8}, "got": {"_count": 1}, "could": {"_count": 2}, "dont": {"_count": 4}, "should": {"_count": 3}, "will": {"_count": 10}, "was": {"_count": 8}, "mightve": {"_count": 1}, "cared": {"_count": 1}, "think": {"_count": 1}, "passed": {"_count": 1}, "gave": {"_count": 1}, "hear": {"_count": 1}, "am": {"_count": 3}, "entered": {"_count": 1}, "saw": {"_count": 3}, "walk": {"_count": 1}, "had": {"_count": 1}, "do": {"_count": 1}, "felt": {"_count": 2}, "need": {"_count": 1}, "cannot": {"_count": 1}, "have": {"_count": 5}, "want": {"_count": 5}, "give": {"_count": 1}, "wasnt": {"_count": 1}, "might": {"_count": 2}, "cheated": {"_count": 1}, "would": {"_count": 1}, "love": {"_count": 1}, "may": {"_count": 1}, "feel": {"_count": 1}, "see": {"_count": 1}, "used": {"_count": 1}, "havent": {"_count": 1}, "didnt": {"_count": 1}, "ought": {"_count": 1}, "did": {"_count": 2}, "understood": {"_count": 1}}, "yer": {"_count": 3, "parents": {"_count": 1}, "fatherd": {"_count": 1}, "doin": {"_count": 1}}, "Im": {"_count": 30, "gonna": {"_count": 1}, "pretty": {"_count": 1}, "going": {"_count": 6}, "just": {"_count": 1}, "a": {"_count": 4}, "losing": {"_count": 1}, "the": {"_count": 1}, "like": {"_count": 1}, "talking": {"_count": 1}, "trying": {"_count": 1}, "threatening": {"_count": 1}, "nearly": {"_count": 1}, "proud": {"_count": 1}, "not": {"_count": 1}, "being": {"_count": 1}, "doing": {"_count": 1}, "feeling": {"_count": 1}, "still": {"_count": 2}, "prejudiced": {"_count": 1}, "right": {"_count": 1}, "mad": {"_count": 1}}, "Ill": {"_count": 21, "bully": {"_count": 1}, "leave": {"_count": 1}, "go": {"_count": 5}, "be": {"_count": 2}, "come": {"_count": 3}, "take": {"_count": 2}, "sort": {"_count": 1}, "write": {"_count": 1}, "have": {"_count": 1}, "need": {"_count": 1}, "just": {"_count": 2}, "try": {"_count": 1}}, "Id": {"_count": 24, "leave": {"_count": 3}, "better": {"_count": 5}, "done": {"_count": 2}, "said": {"_count": 1}, "got": {"_count": 1}, "gone": {"_count": 1}, "rather": {"_count": 2}, "have": {"_count": 2}, "really": {"_count": 1}, "prefer": {"_count": 1}, "stoop": {"_count": 1}, "wear": {"_count": 1}, "like": {"_count": 1}, "feel": {"_count": 2}}, "hes": {"_count": 40, "brilliant": {"_count": 1}, "been": {"_count": 3}, "all": {"_count": 1}, "Slytherins": {"_count": 1}, "going": {"_count": 1}, "just": {"_count": 3}, "trying": {"_count": 2}, "broken": {"_count": 1}, "right": {"_count": 1}, "got": {"_count": 2}, "found": {"_count": 1}, "getting": {"_count": 1}, "trustworthy": {"_count": 1}, "quite": {"_count": 1}, "being": {"_count": 1}, "touched": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}, "barking": {"_count": 1}, "kidding": {"_count": 1}, "really": {"_count": 2}, "keen": {"_count": 1}, "avoiding": {"_count": 1}, "good": {"_count": 1}, "replaced": {"_count": 1}, "But": {"_count": 1}, "left": {"_count": 1}, "dyin": {"_count": 1}, "in": {"_count": 1}, "abroad": {"_count": 1}, "somewhere": {"_count": 1}, "killed": {"_count": 1}}, "we": {"_count": 59, "must": {"_count": 2}, "dragged": {"_count": 1}, "made": {"_count": 1}, "should": {"_count": 17}, "know": {"_count": 1}, "will": {"_count": 1}, "saw": {"_count": 3}, "need": {"_count": 3}, "want": {"_count": 1}, "were": {"_count": 3}, "start": {"_count": 1}, "ought": {"_count": 10}, "might": {"_count": 2}, "can": {"_count": 7}, "all": {"_count": 1}, "are": {"_count": 2}, "shall": {"_count": 1}, "could": {"_count": 1}, "Sort": {"_count": 1}}, "so": {"_count": 59, "said": {"_count": 25}, "somehow": {"_count": 3}, "": {"_count": 16}, "Severus": {"_count": 1}, "she": {"_count": 1}, "sir": {"_count": 2}, "do": {"_count": 1}, "Mr": {"_count": 1}, "shes": {"_count": 1}, "no": {"_count": 1}, "Harry": {"_count": 1}, "Only": {"_count": 1}, "although": {"_count": 1}, "Mrs": {"_count": 1}, "not": {"_count": 1}, "replied": {"_count": 1}, "because": {"_count": 1}}, "Moms": {"_count": 1, "got": {"_count": 1}}, "hed": {"_count": 13, "said": {"_count": 1}, "sign": {"_count": 1}, "put": {"_count": 1}, "let": {"_count": 1}, "really": {"_count": 1}, "do": {"_count": 1}, "love": {"_count": 1}, "ever": {"_count": 1}, "trust": {"_count": 1}, "have": {"_count": 3}, "already": {"_count": 1}}, "there": {"_count": 15, "was": {"_count": 5}, "can": {"_count": 1}, "are": {"_count": 2}, "must": {"_count": 1}, "is": {"_count": 4}, "might": {"_count": 1}, "were": {"_count": 1}}, "the": {"_count": 41, "ends": {"_count": 1}, "record": {"_count": 1}, "best": {"_count": 1}, "cloaks": {"_count": 1}, "Dursleys": {"_count": 1}, "feasts": {"_count": 1}, "Chamber": {"_count": 1}, "match": {"_count": 1}, "Firebolt": {"_count": 1}, "double": {"_count": 1}, "only": {"_count": 1}, "thief": {"_count": 1}, "loss": {"_count": 1}, "dead": {"_count": 1}, "sight": {"_count": 1}, "wand": {"_count": 1}, "way": {"_count": 1}, "Comet": {"_count": 1}, "course": {"_count": 1}, "appointment": {"_count": 1}, "reason": {"_count": 1}, "Ministry": {"_count": 2}, "portraits": {"_count": 1}, "two": {"_count": 1}, "word": {"_count": 1}, "handwriting": {"_count": 1}, "most": {"_count": 1}, "charm": {"_count": 1}, "idea": {"_count": 1}, "journey": {"_count": 1}, "Horcrux": {"_count": 4}, "Death": {"_count": 1}, "big": {"_count": 1}, "real": {"_count": 1}, "Elder": {"_count": 1}, "scratches": {"_count": 1}, "answer": {"_count": 1}}, "": {"_count": 75, ".": {"_count": 47}, "?": {"_count": 25}, "!": {"_count": 3}}, "Ive": {"_count": 18, "introduced": {"_count": 1}, "told": {"_count": 1}, "got": {"_count": 4}, "just": {"_count": 1}, "lost": {"_count": 1}, "heard": {"_count": 2}, "been": {"_count": 1}, "made": {"_count": 1}, "done": {"_count": 2}, "ever": {"_count": 1}, "cast": {"_count": 1}, "found": {"_count": 1}, "seen": {"_count": 1}}, "she": {"_count": 31, "wasnt": {"_count": 1}, "heard": {"_count": 1}, "believes": {"_count": 1}, "wanted": {"_count": 3}, "was": {"_count": 5}, "might": {"_count": 3}, "said": {"_count": 2}, "can": {"_count": 2}, "will": {"_count": 1}, "put": {"_count": 1}, "meant": {"_count": 1}, "took": {"_count": 1}, "trusts": {"_count": 1}, "whispered": {"_count": 1}, "would": {"_count": 1}, "feels": {"_count": 1}, "overheard": {"_count": 1}, "knows": {"_count": 2}, "wants": {"_count": 1}, "does": {"_count": 1}}, "Hermione": {"_count": 4, "does": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 1}, "and": {"_count": 1}}, "weve": {"_count": 11, "lost": {"_count": 2}, "got": {"_count": 4}, "broken": {"_count": 1}, "ever": {"_count": 1}, "outgrown": {"_count": 1}, "been": {"_count": 1}, "done": {"_count": 1}}, "well": {"_count": 14, "be": {"_count": 3}, "make": {"_count": 1}, "leave": {"_count": 1}, "all": {"_count": 1}, "tackle": {"_count": 1}, "go": {"_count": 1}, "have": {"_count": 2}, "try": {"_count": 1}, "theyre": {"_count": 1}, "find": {"_count": 1}, "flatten": {"_count": 1}}, "thats": {"_count": 17, "a": {"_count": 1}, "the": {"_count": 3}, "good": {"_count": 1}, "everything": {"_count": 2}, "all": {"_count": 3}, "how": {"_count": 1}, "true": {"_count": 2}, "as": {"_count": 1}, "why": {"_count": 1}, "funny": {"_count": 1}, "them": {"_count": 1}}, "youve": {"_count": 15, "got": {"_count": 7}, "had": {"_count": 2}, "gone": {"_count": 1}, "met": {"_count": 1}, "finally": {"_count": 1}, "still": {"_count": 1}, "been": {"_count": 2}}, "its": {"_count": 49, "just": {"_count": 2}, "funny": {"_count": 3}, "a": {"_count": 12}, "clever": {"_count": 1}, "jinxed": {"_count": 1}, "good": {"_count": 1}, "Malfoy": {"_count": 1}, "doing": {"_count": 1}, "gone": {"_count": 1}, "best": {"_count": 3}, "this": {"_count": 1}, "us": {"_count": 1}, "back": {"_count": 1}, "time": {"_count": 1}, "too": {"_count": 1}, "anything": {"_count": 1}, "an": {"_count": 1}, "beneath": {"_count": 1}, "near": {"_count": 1}, "the": {"_count": 1}, "true": {"_count": 1}, "very": {"_count": 1}, "fascinating": {"_count": 1}, "that": {"_count": 1}, "going": {"_count": 1}, "Quidditch": {"_count": 1}, "started": {"_count": 1}, "Christmas": {"_count": 1}, "supposed": {"_count": 1}, "all": {"_count": 1}, "theirs": {"_count": 1}, "genius": {"_count": 1}, "down": {"_count": 1}}, "all": {"_count": 3, "teachers": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}}, "much": {"_count": 7, "about": {"_count": 1}, "of": {"_count": 6}}, "anything": {"_count": 3, "else": {"_count": 1}, "could": {"_count": 1}, "that": {"_count": 1}}, "things": {"_count": 2, "over": {"_count": 1}, "through": {"_count": 1}}, "Quirrell": {"_count": 1, "had": {"_count": 1}}, "theyll": {"_count": 4, "believe": {"_count": 1}, "attack": {"_count": 1}, "get": {"_count": 1}, "be": {"_count": 1}}, "twice": {"_count": 1, "about": {"_count": 1}}, "youll": {"_count": 13, "be": {"_count": 6}, "find": {"_count": 2}, "also": {"_count": 1}, "like": {"_count": 2}, "get": {"_count": 2}}, "again": {"_count": 1, "boy": {"_count": 1}}, "that": {"_count": 69, "was": {"_count": 1}, "whatever": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 6}, "you": {"_count": 4}, "or": {"_count": 1}, "could": {"_count": 1}, "11": {"_count": 1}, "we": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 5}, "perhaps": {"_count": 1}, "eye": {"_count": 1}, "Dudley": {"_count": 1}, "": {"_count": 5}, "running": {"_count": 1}, "Dumbledore": {"_count": 3}, "went": {"_count": 1}, "counts": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 1}, "Voldemort": {"_count": 1}, "Sirius": {"_count": 1}, "I": {"_count": 4}, "HeWhoMustNotBe": {"_count": 1}, "had": {"_count": 1}, "will": {"_count": 4}, "she": {"_count": 2}, "under": {"_count": 1}, "it": {"_count": 2}, "Snape": {"_count": 1}, "though": {"_count": 1}, "is": {"_count": 1}, "would": {"_count": 1}, "Bill": {"_count": 1}, "there": {"_count": 2}, "theyd": {"_count": 1}, "did": {"_count": 1}, "exists": {"_count": 1}, "breaking": {"_count": 1}, "people": {"_count": 1}, "if": {"_count": 1}}, "theyve": {"_count": 7, "been": {"_count": 2}, "stopped": {"_count": 1}, "got": {"_count": 2}, "both": {"_count": 1}, "hurried": {"_count": 1}}, "youre": {"_count": 35, "up": {"_count": 1}, "harder": {"_count": 1}, "doing": {"_count": 6}, "setting": {"_count": 1}, "quite": {"_count": 1}, "being": {"_count": 1}, "going": {"_count": 3}, "playing": {"_count": 2}, "his": {"_count": 1}, "very": {"_count": 1}, "dead": {"_count": 1}, "in": {"_count": 1}, "just": {"_count": 1}, "ugly": {"_count": 1}, "funny": {"_count": 1}, "such": {"_count": 1}, "right": {"_count": 3}, "only": {"_count": 1}, "a": {"_count": 1}, "not": {"_count": 1}, "like": {"_count": 1}, "feeling": {"_count": 1}, "hard": {"_count": 1}, "think": {"_count": 1}, "saying": {"_count": 1}}, "hell": {"_count": 9, "leave": {"_count": 1}, "be": {"_count": 5}, "cry": {"_count": 1}, "turn": {"_count": 1}, "check": {"_count": 1}}, "wed": {"_count": 19, "let": {"_count": 1}, "better": {"_count": 9}, "all": {"_count": 3}, "care": {"_count": 2}, "do": {"_count": 1}, "continue": {"_count": 1}, "be": {"_count": 1}, "seen": {"_count": 1}}, "youd": {"_count": 10, "get": {"_count": 1}, "better": {"_count": 3}, "do": {"_count": 2}, "all": {"_count": 1}, "go": {"_count": 1}, "be": {"_count": 2}}, "said": {"_count": 19, "Ron": {"_count": 3}, "Harry": {"_count": 4}, "Hermione": {"_count": 1}, "Charlie": {"_count": 2}, "Madame": {"_count": 1}, "Dumbledore": {"_count": 5}, "Mrs": {"_count": 1}, "Snape": {"_count": 1}, "Bellatrixs": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "who": {"_count": 5, "else": {"_count": 2}, "": {"_count": 1}, "youre": {"_count": 1}, "Travers": {"_count": 1}}, "are": {"_count": 1, "gnomes": {"_count": 1}}, "another": {"_count": 2, "delivery": {"_count": 1}, "weeks": {"_count": 1}}, "their": {"_count": 1, "horror": {"_count": 1}}, "not": {"_count": 7, "growled": {"_count": 1}, "": {"_count": 2}, "Moaning": {"_count": 1}, "said": {"_count": 2}, "Ludo": {"_count": 1}}, "better": {"_count": 3, "of": {"_count": 3}}, "That": {"_count": 3, "said": {"_count": 1}, "could": {"_count": 1}, "cats": {"_count": 1}}, "Grans": {"_count": 1, "sending": {"_count": 1}}, "shes": {"_count": 8, "begun": {"_count": 1}, "trying": {"_count": 1}, "right": {"_count": 1}, "an": {"_count": 1}, "got": {"_count": 1}, "hoping": {"_count": 1}, "goodlooking": {"_count": 1}, "too": {"_count": 1}}, "would": {"_count": 1, "it": {"_count": 1}}, "getting": {"_count": 1, "your": {"_count": 1}}, "will": {"_count": 2, "make": {"_count": 2}}, "theres": {"_count": 11, "anything": {"_count": 2}, "a": {"_count": 6}, "any": {"_count": 3}}, "wouldnt": {"_count": 1, "you": {"_count": 1}}, "ghosts": {"_count": 1, "provided": {"_count": 1}}, "someone": {"_count": 5, "told": {"_count": 1}, "elses": {"_count": 1}, "tried": {"_count": 1}, "knew": {"_count": 1}, "got": {"_count": 1}}, "threatening": {"_count": 1, "Muggle": {"_count": 1}}, "therell": {"_count": 1, "be": {"_count": 1}}, "Potter": {"_count": 6, "liked": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "had": {"_count": 1}}, "wizards": {"_count": 1, "should": {"_count": 1}}, "his": {"_count": 4, "legs": {"_count": 1}, "wife": {"_count": 1}, "brain": {"_count": 1}, "resolution": {"_count": 1}}, "up": {"_count": 2, "at": {"_count": 1}, "a": {"_count": 1}}, "shed": {"_count": 1, "keep": {"_count": 1}}, "itll": {"_count": 2, "help": {"_count": 1}, "be": {"_count": 1}}, "famous": {"_count": 1, "good": {"_count": 1}}, "Hagrid": {"_count": 3, "was": {"_count": 1}, "set": {"_count": 1}, "told": {"_count": 1}}, "Dumbledore": {"_count": 10, "might": {"_count": 2}, "would": {"_count": 4}, "will": {"_count": 1}, "wanted": {"_count": 1}, "said": {"_count": 1}, "left": {"_count": 1}}, "Myrtles": {"_count": 1, "grown": {"_count": 1}}, "for": {"_count": 6, "itself": {"_count": 3}, "a": {"_count": 2}, "themselves": {"_count": 1}}, "two": {"_count": 1, "hundred": {"_count": 1}}, "Harry": {"_count": 11, "": {"_count": 2}, "should": {"_count": 1}, "had": {"_count": 1}, "swallowed": {"_count": 1}, "was": {"_count": 3}, "it": {"_count": 1}, "ought": {"_count": 1}, "tried": {"_count": 1}}, "Arthur": {"_count": 2, "Weasley": {"_count": 1}, "and": {"_count": 1}}, "how": {"_count": 5, "much": {"_count": 1}, "quickly": {"_count": 1}, "to": {"_count": 1}, "foolish": {"_count": 1}, "the": {"_count": 1}}, "Egypt": {"_count": 1, "agreed": {"_count": 1}}, "is": {"_count": 4, "right": {"_count": 1}, "litter": {"_count": 1}, "the": {"_count": 2}}, "and": {"_count": 4, "Im": {"_count": 1}, "get": {"_count": 1}, "some": {"_count": 1}, "move": {"_count": 1}}, "people": {"_count": 3, "are": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 1}}, "right": {"_count": 1, "well": {"_count": 1}}, "Divination": {"_count": 1, "seems": {"_count": 1}}, "other": {"_count": 1, "peoples": {"_count": 1}}, "Blacks": {"_count": 2, "still": {"_count": 2}}, "any": {"_count": 5, "of": {"_count": 3}, "student": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 3, "some": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}}, "anyone": {"_count": 8, "should": {"_count": 1}, "deserves": {"_count": 1}, "under": {"_count": 1}, "will": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 1}, "in": {"_count": 1}, "except": {"_count": 1}}, "Harrys": {"_count": 3, "going": {"_count": 1}, "got": {"_count": 1}, "right": {"_count": 1}}, "carefully": {"_count": 1, "about": {"_count": 1}}, "had": {"_count": 1, "anything": {"_count": 1}}, "a": {"_count": 12, "joke": {"_count": 1}, "skrewt": {"_count": 1}, "part": {"_count": 1}, "toast": {"_count": 1}, "girl": {"_count": 2}, "few": {"_count": 1}, "lifelong": {"_count": 1}, "bit": {"_count": 1}, "lot": {"_count": 1}, "Sorcerers": {"_count": 1}, "whole": {"_count": 1}}, "Malfoy": {"_count": 1, "did": {"_count": 1}}, "were": {"_count": 18, "in": {"_count": 2}, "trying": {"_count": 1}, "not": {"_count": 1}, "doing": {"_count": 2}, "well": {"_count": 1}, "going": {"_count": 7}, "allowed": {"_count": 1}, "scum": {"_count": 1}, "all": {"_count": 1}, "supposed": {"_count": 1}}, "straight": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "anymore": {"_count": 2, "": {"_count": 2}}, "He": {"_count": 1, "listened": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Mr": {"_count": 2, "Crouch": {"_count": 1}, "Weasley": {"_count": 1}}, "Durmstrang": {"_count": 1, "must": {"_count": 1}}, "students": {"_count": 1, "are": {"_count": 1}}, "Rita": {"_count": 1, "": {"_count": 1}}, "Karkaroff": {"_count": 2, "might": {"_count": 1}, "fled": {"_count": 1}}, "whats": {"_count": 1, "coming": {"_count": 1}}, "teeth": {"_count": 1, "and": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "Snape": {"_count": 4, "was": {"_count": 2}, "could": {"_count": 1}, "should": {"_count": 1}}, "Snapes": {"_count": 1, "up": {"_count": 1}}, "your": {"_count": 3, "best": {"_count": 1}, "father": {"_count": 1}, "boss": {"_count": 1}}, "Sirius": {"_count": 5, "": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}, "would": {"_count": 1}, "ever": {"_count": 1}}, "Krum": {"_count": 1, "got": {"_count": 1}}, "even": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 3, "use": {"_count": 1}, "be": {"_count": 1}, "check": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 2, "feel": {"_count": 1}, "remember": {"_count": 1}}, "Dobby": {"_count": 1, "will": {"_count": 1}}, "perhaps": {"_count": 1, "to": {"_count": 1}}, "purples": {"_count": 1, "really": {"_count": 1}}, "Dumbledores": {"_count": 2, "in": {"_count": 1}, "probably": {"_count": 1}}, "Mollys": {"_count": 1, "right": {"_count": 1}}, "where": {"_count": 3, "though": {"_count": 1}, "": {"_count": 2}}, "why": {"_count": 4, "theyre": {"_count": 1}, "hes": {"_count": 1}, "she": {"_count": 1}, "Umbridge": {"_count": 1}}, "private": {"_count": 1, "matters": {"_count": 1}}, "Rons": {"_count": 2, "mums": {"_count": 1}, "right": {"_count": 1}}, "himself": {"_count": 1, "superior": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "constituted": {"_count": 1, "an": {"_count": 1}}, "Mum": {"_count": 2, "could": {"_count": 1}, "thinks": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 2, "what": {"_count": 1}, "the": {"_count": 1}}, "correct": {"_count": 1, "me": {"_count": 1}}, "McGonagall": {"_count": 1, "was": {"_count": 1}}, "Umbridge": {"_count": 4, "would": {"_count": 1}, "attacked": {"_count": 1}, "reckons": {"_count": 1}, "will": {"_count": 1}}, "everybody": {"_count": 1, "should": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "only": {"_count": 2, "when": {"_count": 1}, "of": {"_count": 1}}, "learning": {"_count": 1, "to": {"_count": 1}}, "Filch": {"_count": 2, "would": {"_count": 1}, "mustve": {"_count": 1}}, "maybe": {"_count": 1, "it": {"_count": 1}}, "Expelliarmus": {"_count": 1, "is": {"_count": 1}}, "does": {"_count": 1, "count": {"_count": 1}}, "seein": {"_count": 1, "as": {"_count": 1}}, "my": {"_count": 2, "fangs": {"_count": 1}, "mother": {"_count": 1}}, "more": {"_count": 1, "clearly": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "Voldemort": {"_count": 1, "wants": {"_count": 1}}, "111": {"_count": 1, "go": {"_count": 1}}, "Daddy": {"_count": 1, "exactly": {"_count": 1}}, "anyones": {"_count": 1, "watching": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "Minister": {"_count": 1, "said": {"_count": 1}}, "Miss": {"_count": 1, "Edgecombe": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "anybody": {"_count": 1, "has": {"_count": 1}}, "James": {"_count": 1, "was": {"_count": 1}}, "Ron": {"_count": 2, "might": {"_count": 1}, "Bills": {"_count": 1}}, "yeh": {"_count": 1, "re": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "like": {"_count": 3, "her": {"_count": 1}, "that": {"_count": 2}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "her": {"_count": 3, "ankles": {"_count": 1}, "powers": {"_count": 1}, "minds": {"_count": 1}}, "Voldemortll": {"_count": 1, "say": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "HeWhoMustNotBe": {"_count": 1, "Named": {"_count": 1}}, "Buckbeak": {"_count": 1, "would": {"_count": 1}}, "ouch": {"_count": 1, "": {"_count": 1}}, "eet": {"_count": 1, "was": {"_count": 1}}, "YouKnow": {"_count": 2, "Whos": {"_count": 1}, "Who": {"_count": 1}}, "securitys": {"_count": 1, "a": {"_count": 1}}, "Malfoyd": {"_count": 1, "like": {"_count": 1}}, "Norfolk": {"_count": 1, "": {"_count": 1}}, "Slughorns": {"_count": 1, "interested": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "whatever": {"_count": 1, "he": {"_count": 1}}, "many": {"_count": 1, "people": {"_count": 1}}, "Harper": {"_count": 1, "of": {"_count": 1}}, "our": {"_count": 1, "subjects": {"_count": 1}}, "back": {"_count": 1, "said": {"_count": 1}}, "thatll": {"_count": 2, "work": {"_count": 1}, "help": {"_count": 1}}, "Stan": {"_count": 1, "should": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "out": {"_count": 1, "a": {"_count": 1}}, "Slughorn": {"_count": 1, "s": {"_count": 1}}, "probably": {"_count": 1, "on": {"_count": 1}}, "been": {"_count": 1, "offered": {"_count": 1}}, "too": {"_count": 1, "badly": {"_count": 1}}, "every": {"_count": 1, "prophecy": {"_count": 1}}, "girls": {"_count": 1, "are": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "its": {"_count": 1}}, "an": {"_count": 1, "enchantment": {"_count": 1}}, "Gibbon": {"_count": 1, "liked": {"_count": 1}}, "be": {"_count": 1, "easy": {"_count": 1}}, "Dung": {"_count": 1, "panicked": {"_count": 1}}, "Hermiones": {"_count": 2, "been": {"_count": 1}, "right": {"_count": 1}}, "Voldemorts": {"_count": 1, "looking": {"_count": 1}}, "dating": {"_count": 1, "opportunities": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Bathilda": {"_count": 1, "has": {"_count": 1}}, "somebodys": {"_count": 1, "been": {"_count": 1}}, "if": {"_count": 3, "Harry": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "Scrimgeour": {"_count": 1, "would": {"_count": 1}}, "properly": {"_count": 1, "Everything": {"_count": 1}}, "Albus": {"_count": 1, "was": {"_count": 1}}, "stuff": {"_count": 1, "stuff": {"_count": 1}}, "murmured": {"_count": 1, "Harry": {"_count": 1}}, "Fleur": {"_count": 1, "minded": {"_count": 1}}, "Lunas": {"_count": 1, "been": {"_count": 1}}, "Well": {"_count": 1, "why": {"_count": 1}}, "important": {"_count": 1, "enough": {"_count": 1}}, "ourselves": {"_count": 1, "lucky": {"_count": 1}}, "poorly": {"_count": 1, "of": {"_count": 1}}, "wands": {"_count": 1, "require": {"_count": 1}}, "suddenly": {"_count": 1, "of": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "have": {"_count": 1, "made": {"_count": 1}}, "happened": {"_count": 1, "and": {"_count": 1}}, "ever": {"_count": 1, "have": {"_count": 1}}, "than": {"_count": 1, "I": {"_count": 1}}}, "could": {"_count": 2764, "bear": {"_count": 2, "it": {"_count": 2}}, "he": {"_count": 36, "have": {"_count": 9}, "possibly": {"_count": 2}, "began": {"_count": 1}, "be": {"_count": 3}, "hurried": {"_count": 1}, "just": {"_count": 1}, "got": {"_count": 1}, "said": {"_count": 1}, "see": {"_count": 1}, "": {"_count": 2}, "ever": {"_count": 1}, "hear": {"_count": 1}, "think": {"_count": 1}, "asked": {"_count": 1}, "stepped": {"_count": 1}, "help": {"_count": 1}, "pointed": {"_count": 1}, "avoid": {"_count": 1}, "find": {"_count": 1}, "feel": {"_count": 1}, "lose": {"_count": 1}, "had": {"_count": 1}, "pulled": {"_count": 1}, "remain": {"_count": 1}}, "upset": {"_count": 1, "me": {"_count": 1}}, "Their": {"_count": 1, "son": {"_count": 1}}, "get": {"_count": 27, "mixed": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 3}, "an": {"_count": 1}, "from": {"_count": 1}, "us": {"_count": 1}, "Harry": {"_count": 1}, "into": {"_count": 2}, "through": {"_count": 1}, "to": {"_count": 1}, "back": {"_count": 1}, "nearer": {"_count": 1}, "in": {"_count": 2}, "out": {"_count": 2}, "her": {"_count": 2}, "something": {"_count": 1}, "farther": {"_count": 1}, "your": {"_count": 1}}, "have": {"_count": 195, "been": {"_count": 19}, "wrapped": {"_count": 1}, "sworn": {"_count": 11}, "fit": {"_count": 1}, "tried": {"_count": 1}, "pleased": {"_count": 1}, "played": {"_count": 1}, "taken": {"_count": 3}, "it": {"_count": 2}, "my": {"_count": 2}, "woken": {"_count": 1}, "laughed": {"_count": 1}, "crashed": {"_count": 1}, "lost": {"_count": 1}, "seen": {"_count": 3}, "slept": {"_count": 1}, "everyones": {"_count": 1}, "done": {"_count": 10}, "attacked": {"_count": 1}, "got": {"_count": 4}, "survived": {"_count": 1}, "stolen": {"_count": 1}, "picked": {"_count": 1}, "called": {"_count": 1}, "pulled": {"_count": 2}, "happened": {"_count": 5}, "had": {"_count": 3}, "brought": {"_count": 3}, "entered": {"_count": 1}, "finished": {"_count": 1}, "kissed": {"_count": 1}, "a": {"_count": 7}, "set": {"_count": 1}, "sat": {"_count": 1}, "produced": {"_count": 1}, "killed": {"_count": 2}, "one": {"_count": 1}, "bitten": {"_count": 1}, "driven": {"_count": 1}, "modified": {"_count": 1}, "hoped": {"_count": 3}, "passed": {"_count": 1}, "Disapparated": {"_count": 1}, "betrayed": {"_count": 1}, "made": {"_count": 3}, "really": {"_count": 1}, "given": {"_count": 2}, "coped": {"_count": 1}, "heard": {"_count": 3}, "found": {"_count": 2}, "told": {"_count": 6}, "gone": {"_count": 3}, "congratulated": {"_count": 1}, "disappeared": {"_count": 1}, "failed": {"_count": 1}, "stayed": {"_count": 1}, "used": {"_count": 2}, "prevented": {"_count": 1}, "prepared": {"_count": 2}, "held": {"_count": 2}, "ever": {"_count": 1}, "expected": {"_count": 2}, "risen": {"_count": 1}, "his": {"_count": 1}, "broken": {"_count": 1}, "her": {"_count": 1}, "run": {"_count": 3}, "counted": {"_count": 1}, "worked": {"_count": 1}, "caught": {"_count": 1}, "saved": {"_count": 1}, "talked": {"_count": 1}, "kicked": {"_count": 1}, "ended": {"_count": 1}, "removed": {"_count": 1}, "Stunned": {"_count": 1}, "chosen": {"_count": 1}, "reflected": {"_count": 1}, "applied": {"_count": 1}, "referred": {"_count": 1}, "opened": {"_count": 1}, "abandoned": {"_count": 1}, "the": {"_count": 1}, "wreaked": {"_count": 1}, "whipped": {"_count": 1}, "mixed": {"_count": 1}, "foreseen": {"_count": 1}, "": {"_count": 1}, "blown": {"_count": 1}, "summoned": {"_count": 1}, "achieved": {"_count": 1}, "destroyed": {"_count": 1}, "tracked": {"_count": 1}, "mentioned": {"_count": 1}, "another": {"_count": 1}, "invited": {"_count": 1}, "visited": {"_count": 1}, "forced": {"_count": 2}, "sent": {"_count": 1}, "no": {"_count": 1}, "Sirius": {"_count": 1}, "belonged": {"_count": 1}, "imagined": {"_count": 1}, "said": {"_count": 1}, "happily": {"_count": 1}, "discovered": {"_count": 1}, "calmed": {"_count": 1}, "believed": {"_count": 1}, "contacted": {"_count": 1}, "launched": {"_count": 1}, "predicted": {"_count": 1}}, "see": {"_count": 246, "a": {"_count": 15}, "Uncle": {"_count": 1}, "three": {"_count": 1}, "it": {"_count": 9}, "himself": {"_count": 1}, "mountains": {"_count": 2}, "his": {"_count": 4}, "Rons": {"_count": 2}, "the": {"_count": 39}, "Quirrell": {"_count": 2}, "another": {"_count": 1}, "nothing": {"_count": 9}, "they": {"_count": 1}, "Draco": {"_count": 1}, "famous": {"_count": 1}, "through": {"_count": 6}, "he": {"_count": 1}, "one": {"_count": 1}, "him": {"_count": 11}, "right": {"_count": 1}, "that": {"_count": 9}, "over": {"_count": 2}, "of": {"_count": 6}, "was": {"_count": 3}, "looked": {"_count": 2}, "more": {"_count": 2}, "Slytherin": {"_count": 1}, "if": {"_count": 1}, "Neville": {"_count": 2}, "": {"_count": 7}, "Percys": {"_count": 1}, "where": {"_count": 4}, "Black": {"_count": 1}, "her": {"_count": 4}, "Malfoy": {"_count": 3}, "something": {"_count": 1}, "them": {"_count": 7}, "now": {"_count": 2}, "unless": {"_count": 1}, "beads": {"_count": 1}, "what": {"_count": 4}, "Lupins": {"_count": 1}, "themselves": {"_count": 1}, "tiny": {"_count": 1}, "an": {"_count": 1}, "at": {"_count": 1}, "only": {"_count": 3}, "thousands": {"_count": 1}, "people": {"_count": 4}, "Hogwarts": {"_count": 1}, "out": {"_count": 2}, "their": {"_count": 2}, "finger": {"_count": 1}, "me": {"_count": 1}, "Seamus": {"_count": 1}, "Ginny": {"_count": 1}, "Cho": {"_count": 1}, "and": {"_count": 2}, "two": {"_count": 1}, "daylight": {"_count": 1}, "Madam": {"_count": 1}, "its": {"_count": 2}, "or": {"_count": 2}, "past": {"_count": 1}, "some": {"_count": 1}, "Cedric": {"_count": 1}, "Hagrid": {"_count": 4}, "looking": {"_count": 1}, "individual": {"_count": 1}, "MINISTRY": {"_count": 1}, "wearing": {"_count": 1}, "red": {"_count": 1}, "every": {"_count": 1}, "objects": {"_count": 1}, "any": {"_count": 1}, "Mr": {"_count": 1}, "Umbridge": {"_count": 1}, "fighting": {"_count": 1}, "Hermione": {"_count": 1}, "no": {"_count": 5}, "were": {"_count": 1}, "thestrals": {"_count": 1}, "Mrs": {"_count": 1}, "in": {"_count": 1}, "neither": {"_count": 1}, "Kreacher": {"_count": 1}, "Snapes": {"_count": 1}, "blood": {"_count": 1}, "because": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Percy": {"_count": 1}, "flaws": {"_count": 1}, "here": {"_count": 1}, "maybe": {"_count": 1}, "Voldemort": {"_count": 1}, "Nagini": {"_count": 1}, "even": {"_count": 1}}, "I": {"_count": 16, "wouldnt": {"_count": 1}, "say": {"_count": 2}, "borrow": {"_count": 2}, "have": {"_count": 3}, "ask": {"_count": 2}, "take": {"_count": 1}, "do": {"_count": 2}, "": {"_count": 2}, "think": {"_count": 1}}, "make": {"_count": 37, "out": {"_count": 16}, "a": {"_count": 4}, "them": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 3}, "himself": {"_count": 1}, "even": {"_count": 1}, "Harrys": {"_count": 1}, "life": {"_count": 1}, "neither": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "any": {"_count": 1}, "him": {"_count": 1}, "such": {"_count": 1}}, "just": {"_count": 40, "see": {"_count": 7}, "leave": {"_count": 2}, "let": {"_count": 1}, "shake": {"_count": 1}, "make": {"_count": 8}, "imagine": {"_count": 2}, "have": {"_count": 1}, "stay": {"_count": 1}, "find": {"_count": 1}, "be": {"_count": 1}, "get": {"_count": 3}, "predict": {"_count": 1}, "as": {"_count": 2}, "keep": {"_count": 2}, "lie": {"_count": 1}, "reach": {"_count": 2}, "use": {"_count": 1}, "possess": {"_count": 1}, "speak": {"_count": 1}, "just": {"_count": 1}}, "remember": {"_count": 13, "and": {"_count": 1}, "ever": {"_count": 1}, "as": {"_count": 1}, "too": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 2}, "of": {"_count": 2}, "being": {"_count": 2}, "knowing": {"_count": 1}, "": {"_count": 1}}, "ever": {"_count": 8, "remember": {"_count": 2}, "have": {"_count": 5}, "tell": {"_count": 1}}, "phone": {"_count": 1, "Marge": {"_count": 1}}, "take": {"_count": 15, "him": {"_count": 2}, "any": {"_count": 1}, "it": {"_count": 2}, "even": {"_count": 1}, "us": {"_count": 1}, "S": {"_count": 1}, "over": {"_count": 1}, "her": {"_count": 1}, "weeks": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}, "no": {"_count": 1}, "you": {"_count": 1}}, "hurry": {"_count": 1, "him": {"_count": 1}}, "hear": {"_count": 174, "him": {"_count": 15}, "the": {"_count": 30}, "Filch": {"_count": 1}, "footsteps": {"_count": 5}, "": {"_count": 4}, "Neville": {"_count": 1}, "running": {"_count": 1}, "them": {"_count": 5}, "apart": {"_count": 1}, "its": {"_count": 3}, "because": {"_count": 1}, "laughter": {"_count": 2}, "Myrtles": {"_count": 1}, "his": {"_count": 6}, "a": {"_count": 4}, "another": {"_count": 1}, "Fang": {"_count": 3}, "scraping": {"_count": 1}, "Ron": {"_count": 2}, "it": {"_count": 4}, "echoing": {"_count": 1}, "Lockhart": {"_count": 1}, "Dobby": {"_count": 1}, "Dobbys": {"_count": 1}, "movements": {"_count": 2}, "though": {"_count": 1}, "her": {"_count": 12}, "galloping": {"_count": 1}, "that": {"_count": 1}, "Hagrid": {"_count": 2}, "yelping": {"_count": 1}, "angry": {"_count": 1}, "nothing": {"_count": 4}, "screams": {"_count": 1}, "Mr": {"_count": 1}, "Madame": {"_count": 1}, "Bagman": {"_count": 1}, "screaming": {"_count": 1}, "splashing": {"_count": 1}, "too": {"_count": 1}, "two": {"_count": 1}, "an": {"_count": 1}, "voices": {"_count": 2}, "Cedric": {"_count": 1}, "shallow": {"_count": 1}, "noises": {"_count": 1}, "about": {"_count": 1}, "exactly": {"_count": 1}, "Siriuss": {"_count": 1}, "were": {"_count": 2}, "Rons": {"_count": 1}, "every": {"_count": 1}, "hundreds": {"_count": 1}, "Lunas": {"_count": 1}, "girls": {"_count": 1}, "Seamus": {"_count": 1}, "various": {"_count": 1}, "Stan": {"_count": 1}, "people": {"_count": 4}, "distant": {"_count": 1}, "movement": {"_count": 2}, "more": {"_count": 2}, "what": {"_count": 3}, "Hermione": {"_count": 1}, "was": {"_count": 1}, "someone": {"_count": 2}, "Xenophilius": {"_count": 1}, "Hermiones": {"_count": 1}, "Bellatrix": {"_count": 1}, "Luna": {"_count": 1}, "shouting": {"_count": 1}, "something": {"_count": 1}, "but": {"_count": 1}, "trees": {"_count": 1}, "and": {"_count": 2}, "Peeves": {"_count": 1}}, "": {"_count": 36, ".": {"_count": 35}, "?": {"_count": 1}}, "only": {"_count": 35, "gibber": {"_count": 1}, "hear": {"_count": 2}, "be": {"_count": 6}, "just": {"_count": 1}, "see": {"_count": 5}, "assume": {"_count": 4}, "catch": {"_count": 1}, "contact": {"_count": 1}, "open": {"_count": 1}, "take": {"_count": 1}, "perform": {"_count": 1}, "have": {"_count": 4}, "enter": {"_count": 1}, "gaze": {"_count": 1}, "talk": {"_count": 1}, "suppose": {"_count": 1}, "move": {"_count": 1}, "cling": {"_count": 1}, "lie": {"_count": 1}}, "hardly": {"_count": 46, "speak": {"_count": 1}, "lift": {"_count": 1}, "raise": {"_count": 1}, "believe": {"_count": 9}, "feel": {"_count": 1}, "see": {"_count": 2}, "tell": {"_count": 1}, "fail": {"_count": 2}, "swallow": {"_count": 1}, "get": {"_count": 2}, "be": {"_count": 4}, "take": {"_count": 1}, "talk": {"_count": 1}, "bear": {"_count": 2}, "have": {"_count": 3}, "hear": {"_count": 2}, "make": {"_count": 3}, "stand": {"_count": 1}, "muster": {"_count": 1}, "hold": {"_count": 1}, "blame": {"_count": 1}, "scoop": {"_count": 1}, "suppose": {"_count": 1}, "breathe": {"_count": 2}, "mistake": {"_count": 1}}, "work": {"_count": 3, "out": {"_count": 3}}, "be": {"_count": 136, "no": {"_count": 7}, "heard": {"_count": 12}, "": {"_count": 10}, "great": {"_count": 2}, "Hagrids": {"_count": 1}, "so": {"_count": 2}, "seen": {"_count": 9}, "carried": {"_count": 1}, "our": {"_count": 1}, "pushed": {"_count": 1}, "eating": {"_count": 1}, "a": {"_count": 7}, "dangerous": {"_count": 4}, "along": {"_count": 1}, "freely": {"_count": 1}, "coming": {"_count": 1}, "the": {"_count": 5}, "using": {"_count": 1}, "more": {"_count": 1}, "practicing": {"_count": 1}, "catching": {"_count": 1}, "sure": {"_count": 3}, "done": {"_count": 2}, "back": {"_count": 3}, "what": {"_count": 1}, "in": {"_count": 2}, "up": {"_count": 2}, "nothing": {"_count": 1}, "picking": {"_count": 1}, "thinking": {"_count": 1}, "worse": {"_count": 2}, "something": {"_count": 1}, "stored": {"_count": 1}, "very": {"_count": 1}, "anywhere": {"_count": 2}, "inside": {"_count": 1}, "only": {"_count": 2}, "loads": {"_count": 1}, "listening": {"_count": 1}, "miles": {"_count": 1}, "any": {"_count": 1}, "somebody": {"_count": 1}, "people": {"_count": 1}, "prevented": {"_count": 1}, "me": {"_count": 1}, "good": {"_count": 1}, "recounting": {"_count": 1}, "held": {"_count": 1}, "arranged": {"_count": 1}, "tricked": {"_count": 1}, "doing": {"_count": 2}, "under": {"_count": 1}, "innocent": {"_count": 1}, "valuable": {"_count": 1}, "worldclass": {"_count": 1}, "anything": {"_count": 1}, "old": {"_count": 1}, "killed": {"_count": 2}, "their": {"_count": 1}, "his": {"_count": 1}, "at": {"_count": 1}, "somewhere": {"_count": 1}, "counted": {"_count": 2}, "relied": {"_count": 1}, "bringing": {"_count": 1}, "going": {"_count": 1}, "either": {"_count": 1}, "some": {"_count": 1}, "discarded": {"_count": 1}, "scooped": {"_count": 1}, "saved": {"_count": 1}, "sleeping": {"_count": 1}, "years": {"_count": 1}, "charming": {"_count": 1}}, "they": {"_count": 16, "possibly": {"_count": 1}, "have": {"_count": 2}, "ever": {"_count": 1}, "suddenly": {"_count": 1}, "plunged": {"_count": 1}, "prove": {"_count": 1}, "": {"_count": 5}, "crept": {"_count": 1}, "darted": {"_count": 1}, "let": {"_count": 1}, "be": {"_count": 1}}, "go": {"_count": 25, "out": {"_count": 1}, "": {"_count": 1}, "anywhere": {"_count": 1}, "to": {"_count": 1}, "back": {"_count": 3}, "or": {"_count": 1}, "home": {"_count": 1}, "seriously": {"_count": 1}, "wrong": {"_count": 2}, "down": {"_count": 1}, "into": {"_count": 2}, "But": {"_count": 1}, "up": {"_count": 1}, "toward": {"_count": 1}, "with": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 2}, "together": {"_count": 1}, "on": {"_count": 1}, "no": {"_count": 1}}, "read": {"_count": 6, "the": {"_count": 1}, "upside": {"_count": 1}, "minds": {"_count": 1}, "it": {"_count": 1}, "every": {"_count": 1}, "Hermiones": {"_count": 1}}, "usually": {"_count": 1, "count": {"_count": 1}}, "imagine": {"_count": 6, "": {"_count": 2}, "how": {"_count": 2}, "clearly": {"_count": 1}, "from": {"_count": 1}}, "and": {"_count": 9, "to": {"_count": 1}, "hurried": {"_count": 1}, "flung": {"_count": 1}, "turned": {"_count": 1}, "that": {"_count": 1}, "pulled": {"_count": 1}, "Scrimgeours": {"_count": 1}, "jabbering": {"_count": 1}, "with": {"_count": 1}}, "yeh": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 33, "not": {"_count": 1}, "think": {"_count": 2}, "sign": {"_count": 1}, "show": {"_count": 2}, "know": {"_count": 1}, "": {"_count": 9}, "tell": {"_count": 4}, "make": {"_count": 1}, "forget": {"_count": 1}, "produce": {"_count": 1}, "say": {"_count": 1}, "Hermione": {"_count": 1}, "give": {"_count": 1}, "have": {"_count": 2}, "come": {"_count": 1}, "expect": {"_count": 1}, "help": {"_count": 1}, "keep": {"_count": 1}, "please": {"_count": 1}}, "a": {"_count": 3, "car": {"_count": 1}, "troll": {"_count": 1}, "Death": {"_count": 1}}, "persuade": {"_count": 4, "em": {"_count": 1}, "to": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}}, "tell": {"_count": 88, "it": {"_count": 3}, "when": {"_count": 1}, "us": {"_count": 2}, "he": {"_count": 6}, "was": {"_count": 1}, "": {"_count": 3}, "from": {"_count": 6}, "that": {"_count": 39}, "whether": {"_count": 1}, "her": {"_count": 2}, "they": {"_count": 1}, "Hermione": {"_count": 2}, "Dumbledore": {"_count": 1}, "harmed": {"_count": 1}, "Cedric": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 1}, "by": {"_count": 3}, "Snape": {"_count": 1}, "she": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 4}, "Sirius": {"_count": 1}, "Ron": {"_count": 1}, "would": {"_count": 1}, "but": {"_count": 1}, "him": {"_count": 1}}, "put": {"_count": 4, "the": {"_count": 1}, "you": {"_count": 1}, "Devils": {"_count": 1}, "into": {"_count": 1}}, "stop": {"_count": 24, "himself": {"_count": 11}, "him": {"_count": 7}, "her": {"_count": 1}, "it": {"_count": 2}, "them": {"_count": 3}}, "buy": {"_count": 3, "their": {"_count": 1}, "icecold": {"_count": 1}, "": {"_count": 1}}, "sell": {"_count": 2, "you": {"_count": 1}, "us": {"_count": 1}}, "mention": {"_count": 1, "this": {"_count": 1}}, "say": {"_count": 34, "something": {"_count": 1}, "Ive": {"_count": 1}, "another": {"_count": 8}, "or": {"_count": 2}, "he": {"_count": 1}, "Unfair": {"_count": 1}, "anything": {"_count": 9}, "that": {"_count": 2}, "a": {"_count": 3}, "about": {"_count": 1}, "it": {"_count": 1}, "more": {"_count": 1}, "sorry": {"_count": 1}, "Id": {"_count": 1}, "any": {"_count": 1}}, "answer": {"_count": 16, "Madam": {"_count": 1}, "Professor": {"_count": 1}, "there": {"_count": 1}, "Crookshanks": {"_count": 1}, "two": {"_count": 1}, "": {"_count": 4}, "The": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}, "Slughorn": {"_count": 1}, "Ron": {"_count": 1}, "sometimes": {"_count": 1}, "they": {"_count": 1}}, "explain": {"_count": 3, "": {"_count": 1}, "away": {"_count": 1}, "to": {"_count": 1}}, "watch": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "carry": {"_count": 6, "but": {"_count": 1}, "on": {"_count": 3}, "": {"_count": 1}, "Harry": {"_count": 1}}, "if": {"_count": 2, "it": {"_count": 1}, "you": {"_count": 1}}, "the": {"_count": 6, "remains": {"_count": 1}, "plate": {"_count": 1}, "enormous": {"_count": 1}, "boy": {"_count": 2}, "Horcrux": {"_count": 1}}, "think": {"_count": 27, "of": {"_count": 23}, "the": {"_count": 1}, "about": {"_count": 1}, "was": {"_count": 1}, "only": {"_count": 1}}, "do": {"_count": 79, "with": {"_count": 12}, "without": {"_count": 2}, "more": {"_count": 3}, "that": {"_count": 3}, "was": {"_count": 6}, "for": {"_count": 5}, "": {"_count": 4}, "Dobby": {"_count": 1}, "however": {"_count": 1}, "it": {"_count": 8}, "anything": {"_count": 6}, "to": {"_count": 6}, "hours": {"_count": 1}, "them": {"_count": 1}, "nothing": {"_count": 2}, "about": {"_count": 2}, "so": {"_count": 5}, "a": {"_count": 1}, "an": {"_count": 1}, "Occlumency": {"_count": 1}, "now": {"_count": 1}, "magic": {"_count": 2}, "no": {"_count": 1}, "you": {"_count": 1}, "not": {"_count": 1}, "and": {"_count": 1}, "what": {"_count": 1}}, "walk": {"_count": 4, "": {"_count": 1}, "around": {"_count": 1}, "away": {"_count": 1}, "forced": {"_count": 1}}, "pop": {"_count": 1, "up": {"_count": 1}}, "call": {"_count": 4, "it": {"_count": 1}, "him": {"_count": 2}, "that": {"_count": 1}}, "spot": {"_count": 1, "trouble": {"_count": 1}}, "fly": {"_count": 5, "well": {"_count": 1}, "off": {"_count": 1}, "wouldnt": {"_count": 1}, "in": {"_count": 1}, "without": {"_count": 1}}, "Ron": {"_count": 2, "muttered": {"_count": 1}, "not": {"_count": 1}}, "toward": {"_count": 4, "Peeves": {"_count": 1}, "the": {"_count": 2}, "Katie": {"_count": 1}}, "all": {"_count": 8, "have": {"_count": 3}, "transform": {"_count": 1}, "see": {"_count": 1}, "get": {"_count": 1}, "do": {"_count": 1}, "rally": {"_count": 1}}, "possibly": {"_count": 13, "need": {"_count": 1}, "mention": {"_count": 1}, "do": {"_count": 1}, "suspect": {"_count": 1}, "work": {"_count": 1}, "be": {"_count": 1}, "fit": {"_count": 1}, "persuade": {"_count": 1}, "say": {"_count": 1}, "wish": {"_count": 1}, "live": {"_count": 1}, "explain": {"_count": 1}, "imagine": {"_count": 1}}, "in": {"_count": 3, "every": {"_count": 1}, "the": {"_count": 1}, "such": {"_count": 1}}, "lock": {"_count": 1, "it": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "deal": {"_count": 1, "with": {"_count": 1}}, "happen": {"_count": 5, "to": {"_count": 1}, "again": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "here": {"_count": 1}}, "wait": {"_count": 4, "for": {"_count": 1}, "forever": {"_count": 1}, "": {"_count": 2}}, "find": {"_count": 16, "Flamel": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "was": {"_count": 2}, "on": {"_count": 1}, "including": {"_count": 1}, "nothing": {"_count": 1}, "someone": {"_count": 1}, "him": {"_count": 1}, "out": {"_count": 1}, "something": {"_count": 1}, "Harry": {"_count": 1}}, "ask": {"_count": 11, "your": {"_count": 1}, "without": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 1}, "": {"_count": 1}, "any": {"_count": 1}, "you": {"_count": 1}, "why": {"_count": 1}, "if": {"_count": 1}, "Dumbledore": {"_count": 1}}, "spear": {"_count": 1, "on": {"_count": 1}}, "feel": {"_count": 70, "his": {"_count": 10}, "the": {"_count": 17}, "Fangs": {"_count": 1}, "him": {"_count": 2}, "cold": {"_count": 1}, "it": {"_count": 7}, "himself": {"_count": 3}, "them": {"_count": 1}, "its": {"_count": 2}, "Ron": {"_count": 2}, "everyone": {"_count": 1}, "hundreds": {"_count": 1}, "Rita": {"_count": 1}, "pain": {"_count": 1}, "anything": {"_count": 1}, "a": {"_count": 4}, "fourteen": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 1}, "one": {"_count": 1}, "Ginnys": {"_count": 1}, "flecks": {"_count": 1}, "was": {"_count": 1}, "fear": {"_count": 1}, "or": {"_count": 1}, "her": {"_count": 1}, "Voldemort": {"_count": 1}, "that": {"_count": 1}, "their": {"_count": 1}, "he": {"_count": 1}, "Hagrid": {"_count": 1}}, "forget": {"_count": 1, "what": {"_count": 1}}, "drive": {"_count": 1, "you": {"_count": 1}}, "yet": {"_count": 1, "he": {"_count": 1}}, "hurt": {"_count": 3, "ter": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}}, "send": {"_count": 7, "Norbert": {"_count": 1}, "an": {"_count": 1}, "Sirius": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "Phineas": {"_count": 1}}, "come": {"_count": 14, "and": {"_count": 3}, "": {"_count": 2}, "straight": {"_count": 1}, "home": {"_count": 1}, "up": {"_count": 2}, "I": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 3}}, "sing": {"_count": 1, "": {"_count": 1}}, "suspend": {"_count": 1, "Norbert": {"_count": 1}}, "spoil": {"_count": 1, "their": {"_count": 1}}, "clamber": {"_count": 1, "onto": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "look": {"_count": 7, "more": {"_count": 1}, "at": {"_count": 3}, "after": {"_count": 1}, "back": {"_count": 1}, "little": {"_count": 1}}, "play": {"_count": 4, "cards": {"_count": 1}, "for": {"_count": 1}, "Exploding": {"_count": 1}, "every": {"_count": 1}}, "handle": {"_count": 1, "it": {"_count": 1}}, "when": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "still": {"_count": 29, "see": {"_count": 4}, "be": {"_count": 6}, "hear": {"_count": 9}, "sense": {"_count": 1}, "tell": {"_count": 1}, "exist": {"_count": 1}, "remember": {"_count": 1}, "spot": {"_count": 1}, "have": {"_count": 2}, "smell": {"_count": 1}, "go": {"_count": 1}, "stand": {"_count": 1}}, "want": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 424, "touch": {"_count": 3}, "have": {"_count": 28}, "afford": {"_count": 1}, "hear": {"_count": 18}, "remember": {"_count": 11}, "see": {"_count": 49}, "stop": {"_count": 7}, "tell": {"_count": 9}, "make": {"_count": 3}, "": {"_count": 4}, "unclench": {"_count": 1}, "block": {"_count": 1}, "to": {"_count": 1}, "hope": {"_count": 1}, "possess": {"_count": 1}, "hurt": {"_count": 1}, "continue": {"_count": 3}, "possibly": {"_count": 2}, "believe": {"_count": 13}, "or": {"_count": 1}, "return": {"_count": 1}, "even": {"_count": 3}, "understand": {"_count": 11}, "be": {"_count": 21}, "prevent": {"_count": 2}, "chew": {"_count": 1}, "help": {"_count": 39}, "wait": {"_count": 3}, "lie": {"_count": 1}, "detect": {"_count": 1}, "think": {"_count": 23}, "talk": {"_count": 1}, "but": {"_count": 1}, "explain": {"_count": 3}, "face": {"_count": 1}, "open": {"_count": 2}, "pretend": {"_count": 5}, "imagine": {"_count": 6}, "ignore": {"_count": 1}, "bear": {"_count": 14}, "give": {"_count": 2}, "care": {"_count": 1}, "let": {"_count": 3}, "quite": {"_count": 5}, "bring": {"_count": 4}, "start": {"_count": 1}, "wish": {"_count": 1}, "stand": {"_count": 6}, "settle": {"_count": 1}, "suppress": {"_count": 5}, "take": {"_count": 7}, "breathe": {"_count": 4}, "come": {"_count": 1}, "hold": {"_count": 1}, "speak": {"_count": 5}, "disobey": {"_count": 1}, "get": {"_count": 4}, "say": {"_count": 1}, "find": {"_count": 4}, "warn": {"_count": 1}, "close": {"_count": 1}, "muster": {"_count": 2}, "run": {"_count": 1}, "honestly": {"_count": 1}, "shrug": {"_count": 1}, "disguise": {"_count": 2}, "blame": {"_count": 4}, "peer": {"_count": 1}, "move": {"_count": 2}, "feel": {"_count": 2}, "press": {"_count": 1}, "keep": {"_count": 2}, "yet": {"_count": 1}, "play": {"_count": 1}, "perform": {"_count": 1}, "copy": {"_count": 1}, "follow": {"_count": 1}, "decide": {"_count": 1}, "resist": {"_count": 2}, "penetrate": {"_count": 2}, "draw": {"_count": 2}, "shake": {"_count": 2}, "comfortably": {"_count": 1}, "demonstrate": {"_count": 1}, "do": {"_count": 1}, "judge": {"_count": 1}, "argue": {"_count": 1}, "fight": {"_count": 1}, "destroy": {"_count": 1}, "conjure": {"_count": 1}, "count": {"_count": 1}, "entirely": {"_count": 1}, "altogether": {"_count": 1}, "hide": {"_count": 1}, "look": {"_count": 3}, "appreciate": {"_count": 1}, "throw": {"_count": 1}, "answer": {"_count": 1}, "finish": {"_count": 1}, "mar": {"_count": 1}, "fail": {"_count": 1}, "locate": {"_count": 1}, "rest": {"_count": 1}, "separate": {"_count": 1}, "call": {"_count": 1}, "now": {"_count": 1}, "Disapparate": {"_count": 1}, "would": {"_count": 1}, "seem": {"_count": 1}, "blush": {"_count": 1}, "permit": {"_count": 1}, "save": {"_count": 1}, "go": {"_count": 1}, "set": {"_count": 1}}, "never": {"_count": 12, "forgive": {"_count": 1}, "stop": {"_count": 1}, "have": {"_count": 6}, "come": {"_count": 1}, "convey": {"_count": 1}, "see": {"_count": 1}, "talk": {"_count": 1}}, "add": {"_count": 1, "up": {"_count": 1}}, "well": {"_count": 1, "be": {"_count": 1}}, "move": {"_count": 7, "Dobby": {"_count": 1}, "to": {"_count": 1}, "again": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}, "or": {"_count": 1}, "through": {"_count": 1}}, "talk": {"_count": 9, "through": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 5}, "out": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 6, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 2}, "angrily": {"_count": 1}, "Xenophilius": {"_count": 1}}, "havedied": {"_count": 1, "you": {"_count": 1}}, "bombard": {"_count": 1, "him": {"_count": 1}}, "practice": {"_count": 1, "Quidditch": {"_count": 1}}, "stand": {"_count": 13, "the": {"_count": 1}, "next": {"_count": 1}, "Fred": {"_count": 1}, "": {"_count": 3}, "whatever": {"_count": 1}, "to": {"_count": 1}, "another": {"_count": 2}, "it": {"_count": 1}, "seeing": {"_count": 1}, "clutching": {"_count": 1}}, "slipped": {"_count": 1, "out": {"_count": 1}}, "sink": {"_count": 2, "no": {"_count": 1}, "in": {"_count": 1}}, "expect": {"_count": 1, "next": {"_count": 1}}, "run": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "reach": {"_count": 13, "": {"_count": 6}, "it": {"_count": 1}, "and": {"_count": 1}, "through": {"_count": 1}, "any": {"_count": 1}, "journeys": {"_count": 1}, "no": {"_count": 1}, "this": {"_count": 1}}, "show": {"_count": 3, "every": {"_count": 1}, "them": {"_count": 1}, "and": {"_count": 1}}, "avoid": {"_count": 7, "looking": {"_count": 1}, "it": {"_count": 5}, "that": {"_count": 1}}, "raffle": {"_count": 1, "off": {"_count": 1}}, "it": {"_count": 16, "be": {"_count": 8}, "have": {"_count": 4}, "felt": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "sense": {"_count": 1}}, "whip": {"_count": 1, "up": {"_count": 1}}, "without": {"_count": 3, "actually": {"_count": 1}, "making": {"_count": 1}, "running": {"_count": 1}}, "Harry": {"_count": 3, "and": {"_count": 1}, "didnt": {"_count": 1}, "suddenly": {"_count": 1}}, "argue": {"_count": 2, "that": {"_count": 2}}, "crawl": {"_count": 1, "along": {"_count": 1}}, "easily": {"_count": 8, "be": {"_count": 1}, "sneak": {"_count": 1}, "have": {"_count": 4}, "understand": {"_count": 1}, "reach": {"_count": 1}}, "change": {"_count": 2, "into": {"_count": 1}, "his": {"_count": 1}}, "keep": {"_count": 6, "it": {"_count": 1}, "a": {"_count": 1}, "going": {"_count": 1}, "silent": {"_count": 1}, "what": {"_count": 1}, "an": {"_count": 1}}, "to": {"_count": 7, "knock": {"_count": 1}, "ignore": {"_count": 1}, "thwart": {"_count": 1}, "find": {"_count": 1}, "their": {"_count": 1}, "hide": {"_count": 1}, "the": {"_count": 1}}, "barely": {"_count": 11, "move": {"_count": 1}, "hear": {"_count": 1}, "walk": {"_count": 1}, "aim": {"_count": 1}, "cut": {"_count": 1}, "breathe": {"_count": 3}, "see": {"_count": 3}}, "catch": {"_count": 4, "Ernies": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 2}}, "speak": {"_count": 16, "": {"_count": 4}, "another": {"_count": 1}, "Parseltongue": {"_count": 2}, "Mermish": {"_count": 1}, "Mr": {"_count": 1}, "why": {"_count": 1}, "Hagrid": {"_count": 1}, "and": {"_count": 1}, "normally": {"_count": 1}, "to": {"_count": 1}, "however": {"_count": 1}, "there": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "harm": {"_count": 1, "someone": {"_count": 1}}, "sit": {"_count": 3, "down": {"_count": 2}, "in": {"_count": 1}}, "fail": {"_count": 1, "to": {"_count": 1}}, "follow": {"_count": 4, "to": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}}, "help": {"_count": 15, "them": {"_count": 1}, "Neville": {"_count": 1}, "him": {"_count": 2}, "it": {"_count": 3}, "me": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "despite": {"_count": 1}, "Professor": {"_count": 1}, "show": {"_count": 1}}, "return": {"_count": 3, "to": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "affect": {"_count": 1, "our": {"_count": 1}}, "miss": {"_count": 1, "a": {"_count": 1}}, "vividly": {"_count": 1, "remember": {"_count": 1}}, "crouch": {"_count": 1, "down": {"_count": 1}}, "again": {"_count": 1, "see": {"_count": 1}}, "guess": {"_count": 1, "what": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "Voldemorts": {"_count": 1}}, "sense": {"_count": 6, "it": {"_count": 2}, "somebody": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}}, "almost": {"_count": 7, "see": {"_count": 2}, "feel": {"_count": 2}, "taste": {"_count": 1}, "hear": {"_count": 2}}, "shut": {"_count": 1, "his": {"_count": 1}}, "unwrap": {"_count": 1, "it": {"_count": 1}}, "no": {"_count": 20, "longer": {"_count": 18}, "more": {"_count": 1}, "sooner": {"_count": 1}}, "boom": {"_count": 1, "out": {"_count": 1}}, "turn": {"_count": 6, "he": {"_count": 1}, "into": {"_count": 3}, "nasty": {"_count": 1}, "you": {"_count": 1}}, "even": {"_count": 5, "go": {"_count": 1}, "catch": {"_count": 1}, "ask": {"_count": 1}, "move": {"_count": 1}, "endure": {"_count": 1}}, "slide": {"_count": 1, "through": {"_count": 1}}, "reply": {"_count": 4, "there": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "pass": {"_count": 2, "me": {"_count": 1}, "a": {"_count": 1}}, "transform": {"_count": 4, "at": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 2}}, "sort": {"_count": 1, "of": {"_count": 1}}, "tarnish": {"_count": 1, "Harrys": {"_count": 1}}, "smell": {"_count": 11, "him": {"_count": 2}, "burning": {"_count": 1}, "the": {"_count": 2}, "damp": {"_count": 1}, "cooking": {"_count": 1}, "salt": {"_count": 1}, "a": {"_count": 1}, "burnt": {"_count": 1}, "beyond": {"_count": 1}}, "fool": {"_count": 2, "those": {"_count": 1}, "even": {"_count": 1}}, "resist": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "definitely": {"_count": 2, "hear": {"_count": 1}, "answer": {"_count": 1}}, "give": {"_count": 5, "em": {"_count": 1}, "me": {"_count": 1}, "you": {"_count": 1}, "us": {"_count": 1}, "my": {"_count": 1}}, "search": {"_count": 2, "the": {"_count": 1}, "for": {"_count": 1}}, "actually": {"_count": 1, "hold": {"_count": 1}}, "bring": {"_count": 5, "": {"_count": 1}, "me": {"_count": 1}, "them": {"_count": 1}, "people": {"_count": 1}, "was": {"_count": 1}}, "receive": {"_count": 1, "over": {"_count": 1}}, "climb": {"_count": 2, "in": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 1, "sweaty": {"_count": 1}}, "supply": {"_count": 1, "him": {"_count": 1}}, "muster": {"_count": 7, "": {"_count": 3}, "Harry": {"_count": 1}, "with": {"_count": 1}, "And": {"_count": 1}, "He": {"_count": 1}}, "join": {"_count": 1, "their": {"_count": 1}}, "impair": {"_count": 1, "your": {"_count": 1}}, "willing": {"_count": 1, "it": {"_count": 1}}, "cover": {"_count": 1, "themselves": {"_count": 1}}, "bent": {"_count": 1, "almost": {"_count": 1}}, "Scabbers": {"_count": 1, "be": {"_count": 1}}, "each": {"_count": 1, "turn": {"_count": 1}}, "slip": {"_count": 3, "beneath": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 1}}, "curse": {"_count": 1, "him": {"_count": 1}}, "hand": {"_count": 1, "him": {"_count": 1}}, "solve": {"_count": 1, "anything": {"_count": 1}}, "save": {"_count": 1, "more": {"_count": 1}}, "skirting": {"_count": 1, "around": {"_count": 1}}, "now": {"_count": 6, "hear": {"_count": 3}, "see": {"_count": 1}, "appreciate": {"_count": 1}, "get": {"_count": 1}}, "Buckbeak": {"_count": 1, "cantering": {"_count": 1}}, "shake": {"_count": 1, "hands": {"_count": 1}}, "Dumbledore": {"_count": 4, "take": {"_count": 1}, "have": {"_count": 2}, "not": {"_count": 1}}, "increase": {"_count": 1, "but": {"_count": 1}}, "use": {"_count": 6, "another": {"_count": 1}, "Dobby": {"_count": 1}, "the": {"_count": 1}, "against": {"_count": 1}, "you": {"_count": 1}, "Legilimency": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 1}, "Malfoys": {"_count": 1}, "Ron": {"_count": 1}}, "hold": {"_count": 1, "it": {"_count": 1}}, "seat": {"_count": 1, "twelve": {"_count": 1}}, "eat": {"_count": 1, "a": {"_count": 1}}, "choose": {"_count": 1, "instead": {"_count": 1}}, "hope": {"_count": 3, "for": {"_count": 2}, "to": {"_count": 1}}, "really": {"_count": 3, "control": {"_count": 1}, "understand": {"_count": 1}, "take": {"_count": 1}}, "escape": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "kill": {"_count": 1, "Harry": {"_count": 1}}, "throw": {"_count": 2, "off": {"_count": 2}}, "Apparate": {"_count": 2, "maybe": {"_count": 1}, "if": {"_count": 1}}, "offer": {"_count": 2, "him": {"_count": 1}, "any": {"_count": 1}}, "kip": {"_count": 1, "on": {"_count": 1}}, "anyone": {"_count": 1, "think": {"_count": 1}}, "Voldemort": {"_count": 3, "have": {"_count": 3}}, "understand": {"_count": 4, "the": {"_count": 1}, "what": {"_count": 1}, "her": {"_count": 1}, "unless": {"_count": 1}}, "we": {"_count": 3, "have": {"_count": 1}, "not": {"_count": 1}, "talk": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "try": {"_count": 6, "again": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "my": {"_count": 1}, "digging": {"_count": 1}}, "mean": {"_count": 3, "only": {"_count": 2}, "nothing": {"_count": 1}}, "win": {"_count": 1, "this": {"_count": 1}}, "feature": {"_count": 1, "these": {"_count": 1}}, "disrupt": {"_count": 1, "everyday": {"_count": 1}}, "rely": {"_count": 1, "upon": {"_count": 1}}, "advise": {"_count": 1, "them": {"_count": 1}}, "lift": {"_count": 1, "him": {"_count": 1}}, "recognize": {"_count": 1, "": {"_count": 1}}, "sneak": {"_count": 2, "into": {"_count": 1}, "upstairs": {"_count": 1}}, "that": {"_count": 1, "be": {"_count": 1}}, "break": {"_count": 3, "": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}}, "suddenly": {"_count": 1, "see": {"_count": 1}}, "this": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "manage": {"_count": 3, "to": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}}, "always": {"_count": 2, "attack": {"_count": 1}, "tell": {"_count": 1}}, "occasionally": {"_count": 2, "sending": {"_count": 1}, "pausing": {"_count": 1}}, "Rita": {"_count": 2, "Skeeter": {"_count": 2}}, "research": {"_count": 1, "magical": {"_count": 1}}, "end": {"_count": 3, "up": {"_count": 3}}, "happily": {"_count": 1, "have": {"_count": 1}}, "tightly": {"_count": 1, "bound": {"_count": 1}}, "demand": {"_count": 2, "to": {"_count": 1}, "some": {"_count": 1}}, "converse": {"_count": 1, "with": {"_count": 1}}, "concentrated": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 3, "he": {"_count": 1}, "by": {"_count": 1}, "there": {"_count": 1}}, "exist": {"_count": 1, "one": {"_count": 1}}, "vanquish": {"_count": 2, "even": {"_count": 1}, "Voldemort": {"_count": 1}}, "possess": {"_count": 1, "the": {"_count": 1}}, "stick": {"_count": 2, "his": {"_count": 2}}, "beat": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 2, "help": {"_count": 1}, "the": {"_count": 1}}, "continue": {"_count": 2, "making": {"_count": 1}, "this": {"_count": 1}}, "touch": {"_count": 2, "me": {"_count": 1}, "him": {"_count": 1}}, "finish": {"_count": 5, "the": {"_count": 2}, "Madam": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}}, "express": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "resume": {"_count": 2, "your": {"_count": 1}, "their": {"_count": 1}}, "lay": {"_count": 1, "her": {"_count": 1}}, "draw": {"_count": 4, "himself": {"_count": 1}, "up": {"_count": 1}, "breath": {"_count": 2}}, "pay": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "his": {"_count": 1}}, "Mundungus": {"_count": 1, "have": {"_count": 1}}, "ascertain": {"_count": 1, "how": {"_count": 1}}, "squash": {"_count": 1, "it": {"_count": 1}}, "lie": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "stillve": {"_count": 1, "kept": {"_count": 1}}, "descend": {"_count": 1, "the": {"_count": 1}}, "perpetrate": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 5, "a": {"_count": 1}, "his": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "interrupt": {"_count": 2, "him": {"_count": 1}, "I": {"_count": 1}}, "curtsy": {"_count": 1, "if": {"_count": 1}}, "glimpse": {"_count": 1, "through": {"_count": 1}}, "such": {"_count": 1, "friendships": {"_count": 1}}, "start": {"_count": 3, "applauding": {"_count": 1}, "said": {"_count": 1}, "again": {"_count": 1}}, "while": {"_count": 2, "having": {"_count": 1}, "still": {"_count": 1}}, "ignore": {"_count": 1, "the": {"_count": 1}}, "cost": {"_count": 1, "you": {"_count": 1}}, "devote": {"_count": 1, "much": {"_count": 1}}, "bolt": {"_count": 1, "something": {"_count": 1}}, "skip": {"_count": 1, "detention": {"_count": 1}}, "risk": {"_count": 1, "it": {"_count": 1}}, "attach": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 1, "see": {"_count": 1}}, "NO": {"_count": 1, "": {"_count": 1}}, "reasonably": {"_count": 1, "ignore": {"_count": 1}}, "permeate": {"_count": 1, "the": {"_count": 1}}, "order": {"_count": 1, "anything": {"_count": 1}}, "she": {"_count": 3, "": {"_count": 1}, "remind": {"_count": 1}, "think": {"_count": 1}}, "remove": {"_count": 1, "the": {"_count": 1}}, "quite": {"_count": 1, "believe": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "pull": {"_count": 2, "back": {"_count": 1}, "himself": {"_count": 1}}, "melt": {"_count": 1, "them": {"_count": 1}}, "interfere": {"_count": 1, "": {"_count": 1}}, "seriously": {"_count": 1, "damage": {"_count": 1}}, "dress": {"_count": 1, "as": {"_count": 1}}, "fight": {"_count": 1, "it": {"_count": 1}}, "wake": {"_count": 1, "you": {"_count": 1}}, "leave": {"_count": 3, "the": {"_count": 1}, "Harry": {"_count": 1}, "deeper": {"_count": 1}}, "deny": {"_count": 1, "you": {"_count": 1}}, "know": {"_count": 2, "what": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "easily": {"_count": 1}}, "date": {"_count": 1, "this": {"_count": 1}}, "meet": {"_count": 1, "me": {"_count": 1}}, "overhear": {"_count": 1, "lets": {"_count": 1}}, "spend": {"_count": 1, "the": {"_count": 1}}, "manure": {"_count": 1, "my": {"_count": 1}}, "pretend": {"_count": 3, "to": {"_count": 1}, "hed": {"_count": 1}, "not": {"_count": 1}}, "also": {"_count": 2, "see": {"_count": 2}}, "induce": {"_count": 1, "such": {"_count": 1}}, "test": {"_count": 1, "me": {"_count": 1}}, "abandon": {"_count": 1, "the": {"_count": 1}}, "compete": {"_count": 1, "with": {"_count": 1}}, "complicate": {"_count": 1, "the": {"_count": 1}}, "count": {"_count": 2, "on": {"_count": 1}, "he": {"_count": 1}}, "jus": {"_count": 1, "nip": {"_count": 1}}, "peer": {"_count": 1, "blearily": {"_count": 1}}, "Hagrid": {"_count": 1, "even": {"_count": 1}}, "close": {"_count": 1, "the": {"_count": 1}}, "rectify": {"_count": 1, "his": {"_count": 1}}, "begin": {"_count": 1, "beating": {"_count": 1}}, "describe": {"_count": 1, "its": {"_count": 1}}, "visualize": {"_count": 2, "a": {"_count": 1}, "them": {"_count": 1}}, "probably": {"_count": 2, "persuade": {"_count": 1}, "move": {"_count": 1}}, "utter": {"_count": 1, "a": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "complete": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "block": {"_count": 1, "it": {"_count": 1}}, "overcome": {"_count": 1, "his": {"_count": 1}}, "some": {"_count": 1, "Wizarding": {"_count": 1}}, "prevent": {"_count": 1, "this": {"_count": 1}}, "shout": {"_count": 1, "Now": {"_count": 1}}, "trust": {"_count": 1, "me": {"_count": 1}}, "remain": {"_count": 3, "at": {"_count": 2}, "behind": {"_count": 1}}, "cook": {"_count": 1, "better": {"_count": 1}}, "live": {"_count": 2, "while": {"_count": 1}, "a": {"_count": 1}}, "disabuse": {"_count": 1, "Hagrid": {"_count": 1}}, "dodge": {"_count": 1, "undetected": {"_count": 1}}, "respond": {"_count": 4, "however": {"_count": 1}, "to": {"_count": 2}, "Xenophilius": {"_count": 1}}, "expound": {"_count": 1, "on": {"_count": 1}}, "perform": {"_count": 2, "spells": {"_count": 1}, "a": {"_count": 1}}, "needle": {"_count": 1, "and": {"_count": 1}}, "Snape": {"_count": 1, "be": {"_count": 1}}, "detect": {"_count": 2, "a": {"_count": 1}, "underage": {"_count": 1}}, "fit": {"_count": 2, "it": {"_count": 1}, "yeh": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "distinctly": {"_count": 1, "hear": {"_count": 1}}, "dream": {"_count": 1, "up": {"_count": 1}}, "trick": {"_count": 2, "Malfoy": {"_count": 2}}, "sometimes": {"_count": 1, "making": {"_count": 1}}, "navigate": {"_count": 1, "their": {"_count": 1}}, "frighten": {"_count": 1, "you": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "intervene": {"_count": 1, "again": {"_count": 1}}, "Disapparate": {"_count": 2, "like": {"_count": 1}, "by": {"_count": 1}}, "otherwise": {"_count": 1, "be": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "regain": {"_count": 1, "a": {"_count": 1}}, "passing": {"_count": 1, "nobody": {"_count": 1}}, "forcefeed": {"_count": 1, "Dumbledore": {"_count": 1}}, "enter": {"_count": 1, "at": {"_count": 1}}, "aim": {"_count": 1, "a": {"_count": 1}}, "reverse": {"_count": 1, "what": {"_count": 1}}, "raise": {"_count": 2, "his": {"_count": 2}}, "somehow": {"_count": 1, "force": {"_count": 1}}, "arrange": {"_count": 1, "for": {"_count": 1}}, "evil": {"_count": 1, "be": {"_count": 1}}, "provide": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "before": {"_count": 1, "returning": {"_count": 1}}, "act": {"_count": 2, "on": {"_count": 1}, "Professor": {"_count": 1}}, "appear": {"_count": 1, "to": {"_count": 1}}, "practically": {"_count": 1, "hear": {"_count": 1}}, "defeat": {"_count": 1, "the": {"_count": 1}}, "simply": {"_count": 1, "choose": {"_count": 1}}, "visit": {"_count": 1, "it": {"_count": 1}}, "steal": {"_count": 1, "magic": {"_count": 1}}, "any": {"_count": 1, "child": {"_count": 1}}, "ave": {"_count": 1, "em": {"_count": 1}}, "recite": {"_count": 1, "it": {"_count": 1}}, "check": {"_count": 1, "the": {"_count": 1}}, "borrow": {"_count": 1, "it": {"_count": 1}}, "overpower": {"_count": 1, "her": {"_count": 1}}, "there": {"_count": 1, "have": {"_count": 1}}, "separate": {"_count": 1, "their": {"_count": 1}}, "judge": {"_count": 1, "it": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "given": {"_count": 1, "the": {"_count": 1}}, "claim": {"_count": 1, "that": {"_count": 1}}, "retort": {"_count": 1, "you": {"_count": 1}}, "kid": {"_count": 1, "themselves": {"_count": 1}}, "over": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "rescue": {"_count": 1, "her": {"_count": 1}}, "extinguish": {"_count": 1, "": {"_count": 1}}, "erode": {"_count": 1, "his": {"_count": 1}}, "conceal": {"_count": 2, "himself": {"_count": 1}, "ourselves": {"_count": 1}}, "scarper": {"_count": 1, "before": {"_count": 1}}, "question": {"_count": 1, "him": {"_count": 1}}, "oblige": {"_count": 1, "me": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "decide": {"_count": 1, "what": {"_count": 1}}, "wash": {"_count": 1, "his": {"_count": 1}}, "chew": {"_count": 1, "with": {"_count": 1}}, "parry": {"_count": 1, "the": {"_count": 1}}, "formulate": {"_count": 1, "a": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "cause": {"_count": 1, "and": {"_count": 1}}, "outdistance": {"_count": 1, "death": {"_count": 1}}, "rip": {"_count": 1, "out": {"_count": 1}}, "survive": {"_count": 1, "": {"_count": 1}}, "unite": {"_count": 1, "the": {"_count": 1}}}, "bear": {"_count": 42, "it": {"_count": 6, "if": {"_count": 1}, "": {"_count": 2}, "until": {"_count": 1}, "he": {"_count": 1}, "He": {"_count": 1}}, "people": {"_count": 1, "who": {"_count": 1}}, "in": {"_count": 2, "case": {"_count": 1}, "mind": {"_count": 1}}, "being": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "suddenly": {"_count": 1}}, "to": {"_count": 15, "leave": {"_count": 1}, "think": {"_count": 1}, "tell": {"_count": 1}, "meet": {"_count": 1}, "reside": {"_count": 1}, "discuss": {"_count": 1}, "hear": {"_count": 2}, "continue": {"_count": 1}, "see": {"_count": 1}, "remain": {"_count": 1}, "contemplate": {"_count": 1}, "look": {"_count": 2}, "join": {"_count": 1}}, "with": {"_count": 1, "gleaming": {"_count": 1}}, "no": {"_count": 1, "responsibility": {"_count": 1}}, "that": {"_count": 3, "in": {"_count": 2}, "scar": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}, "witness": {"_count": 1, "": {"_count": 1}}, "ridicule": {"_count": 1, "and": {"_count": 1}}, "seen": {"_count": 1, "him": {"_count": 1}}, "on": {"_count": 1, "its": {"_count": 1}}, "the": {"_count": 2, "unmistakable": {"_count": 1}, "idea": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "close": {"_count": 1, "contact": {"_count": 1}}}, "if": {"_count": 2023, "anyone": {"_count": 14, "found": {"_count": 2}, "was": {"_count": 4}, "gets": {"_count": 1}, "ever": {"_count": 1}, "approaches": {"_count": 1}, "has": {"_count": 2}, "but": {"_count": 1}, "could": {"_count": 1}, "moves": {"_count": 1}}, "the": {"_count": 69, "Potters": {"_count": 2}, "Dursleys": {"_count": 2}, "other": {"_count": 2}, "Stones": {"_count": 1}, "Ministry": {"_count": 4}, "stories": {"_count": 1}, "Chamber": {"_count": 2}, "likes": {"_count": 1}, "Sorting": {"_count": 1}, "person": {"_count": 3}, "attacks": {"_count": 1}, "new": {"_count": 1}, "culprit": {"_count": 1}, "school": {"_count": 1}, "whole": {"_count": 1}, "staff": {"_count": 1}, "boggart": {"_count": 1}, "dementors": {"_count": 3}, "shop": {"_count": 1}, "situation": {"_count": 1}, "Improper": {"_count": 1}, "goblet": {"_count": 1}, "skrewts": {"_count": 1}, "coast": {"_count": 2}, "sound": {"_count": 1}, "voices": {"_count": 1}, "time": {"_count": 1}, "tapestry": {"_count": 1}, "alternative": {"_count": 1}, "schools": {"_count": 1}, "pleasures": {"_count": 1}, "TimeTurner": {"_count": 1}, "great": {"_count": 1}, "first": {"_count": 1}, "owl": {"_count": 1}, "headmaster": {"_count": 1}, "centaurs": {"_count": 1}, "whwhole": {"_count": 1}, "plan": {"_count": 1}, "Death": {"_count": 4}, "Venomous": {"_count": 1}, "drinker": {"_count": 1}, "Stone": {"_count": 1}, "cabinet": {"_count": 1}, "Killing": {"_count": 1}, "elf": {"_count": 1}, "door": {"_count": 1}, "only": {"_count": 1}, "mere": {"_count": 1}, "Dark": {"_count": 1}, "dragon": {"_count": 1}, "boy": {"_count": 2}, "Mark": {"_count": 1}}, "he": {"_count": 263, "wanted": {"_count": 6}, "screwed": {"_count": 1}, "knew": {"_count": 8}, "dared": {"_count": 1}, "was": {"_count": 23}, "had": {"_count": 45}, "should": {"_count": 1}, "wasnt": {"_count": 1}, "just": {"_count": 1}, "got": {"_count": 3}, "hadnt": {"_count": 5}, "could": {"_count": 21}, "fell": {"_count": 1}, "showed": {"_count": 1}, "thought": {"_count": 3}, "leaves": {"_count": 1}, "is": {"_count": 5}, "did": {"_count": 13}, "can": {"_count": 2}, "does": {"_count": 1}, "gives": {"_count": 1}, "didnt": {"_count": 5}, "were": {"_count": 13}, "sees": {"_count": 1}, "told": {"_count": 2}, "keeps": {"_count": 2}, "took": {"_count": 1}, "tried": {"_count": 2}, "set": {"_count": 1}, "sneaked": {"_count": 1}, "carried": {"_count": 2}, "bewitched": {"_count": 1}, "minds": {"_count": 1}, "you": {"_count": 1}, "half": {"_count": 1}, "saw": {"_count": 1}, "helps": {"_count": 1}, "stayed": {"_count": 1}, "couldnt": {"_count": 3}, "doesnt": {"_count": 9}, "drove": {"_count": 1}, "knows": {"_count": 1}, "wont": {"_count": 2}, "hasnt": {"_count": 2}, "expected": {"_count": 1}, "kept": {"_count": 1}, "refused": {"_count": 2}, "annoyed": {"_count": 1}, "went": {"_count": 2}, "came": {"_count": 2}, "managed": {"_count": 3}, "too": {"_count": 1}, "walked": {"_count": 1}, "actually": {"_count": 1}, "let": {"_count": 2}, "needs": {"_count": 2}, "meets": {"_count": 1}, "has": {"_count": 2}, "stays": {"_count": 1}, "insulted": {"_count": 1}, "ever": {"_count": 2}, "found": {"_count": 1}, "arrived": {"_count": 1}, "broke": {"_count": 1}, "called": {"_count": 1}, "appeared": {"_count": 1}, "realized": {"_count": 1}, "hadn": {"_count": 1}, "simply": {"_count": 1}, "cant": {"_count": 1}, "joined": {"_count": 1}, "": {"_count": 2}, "insisted": {"_count": 1}, "permitted": {"_count": 1}, "couldve": {"_count": 1}, "still": {"_count": 2}, "intended": {"_count": 1}, "asked": {"_count": 1}, "spoiled": {"_count": 1}, "died": {"_count": 1}, "remained": {"_count": 1}, "tries": {"_count": 1}, "really": {"_count": 1}, "vos": {"_count": 1}, "shows": {"_count": 1}, "became": {"_count": 1}, "gets": {"_count": 1}, "survives": {"_count": 1}, "put": {"_count": 1}, "expressed": {"_count": 1}, "finds": {"_count": 1}, "needed": {"_count": 1}, "himself": {"_count": 1}, "moves": {"_count": 1}, "stood": {"_count": 1}, "fulfilled": {"_count": 1}, "proceeded": {"_count": 1}}, "hed": {"_count": 24, "had": {"_count": 2}, "never": {"_count": 1}, "been": {"_count": 2}, "just": {"_count": 2}, "be": {"_count": 1}, "got": {"_count": 1}, "killed": {"_count": 1}, "seen": {"_count": 1}, "cared": {"_count": 1}, "poured": {"_count": 1}, "ever": {"_count": 1}, "wanted": {"_count": 2}, "used": {"_count": 1}, "only": {"_count": 1}, "known": {"_count": 2}, "really": {"_count": 1}, "asked": {"_count": 1}, "already": {"_count": 1}, "left": {"_count": 1}}, "you": {"_count": 384, "ask": {"_count": 13}, "moved": {"_count": 1}, "please": {"_count": 12}, "seek": {"_count": 1}, "gave": {"_count": 1}, "see": {"_count": 2}, "can": {"_count": 25}, "met": {"_count": 1}, "arent": {"_count": 3}, "know": {"_count": 7}, "could": {"_count": 14}, "flew": {"_count": 1}, "want": {"_count": 24}, "die": {"_count": 3}, "dont": {"_count": 34}, "didnt": {"_count": 5}, "turn": {"_count": 1}, "follow": {"_count": 2}, "stick": {"_count": 1}, "find": {"_count": 1}, "knock": {"_count": 1}, "do": {"_count": 12}, "are": {"_count": 15}, "would": {"_count": 8}, "hadnt": {"_count": 7}, "shut": {"_count": 1}, "try": {"_count": 1}, "think": {"_count": 6}, "used": {"_count": 1}, "fed": {"_count": 1}, "walk": {"_count": 1}, "paid": {"_count": 1}, "two": {"_count": 4}, "get": {"_count": 8}, "were": {"_count": 9}, "like": {"_count": 13}, "wanted": {"_count": 4}, "must": {"_count": 4}, "found": {"_count": 2}, "had": {"_count": 8}, "cant": {"_count": 6}, "broke": {"_count": 1}, "sign": {"_count": 2}, "wouldnt": {"_count": 1}, "insult": {"_count": 1}, "went": {"_count": 1}, "go": {"_count": 2}, "knew": {"_count": 4}, "transform": {"_count": 1}, "saw": {"_count": 2}, "stay": {"_count": 1}, "will": {"_count": 9}, "attended": {"_count": 1}, "leave": {"_count": 2}, "need": {"_count": 6}, "say": {"_count": 1}, "won": {"_count": 2}, "have": {"_count": 6}, "wish": {"_count": 4}, "care": {"_count": 2}, "havent": {"_count": 3}, "let": {"_count": 4}, "put": {"_count": 1}, "just": {"_count": 6}, "really": {"_count": 4}, "prefer": {"_count": 1}, "and": {"_count": 1}, "turned": {"_count": 2}, "stopped": {"_count": 2}, "read": {"_count": 1}, "made": {"_count": 2}, "came": {"_count": 2}, "got": {"_count": 2}, "look": {"_count": 1}, "presented": {"_count": 1}, "miss": {"_count": 1}, "continue": {"_count": 2}, "three": {"_count": 1}, "bring": {"_count": 1}, "did": {"_count": 2}, "attempt": {"_count": 1}, "trot": {"_count": 1}, "annoy": {"_count": 1}, "come": {"_count": 1}, "keep": {"_count": 2}, "decided": {"_count": 2}, "wont": {"_count": 1}, "risked": {"_count": 1}, "stand": {"_count": 1}, "wait": {"_count": 1}, "I": {"_count": 1}, "break": {"_count": 1}, "lot": {"_count": 1}, "take": {"_count": 1}, "remember": {"_count": 1}, "left": {"_count": 1}, "split": {"_count": 1}, "meet": {"_count": 1}, "": {"_count": 1}, "should": {"_count": 1}, "ever": {"_count": 2}, "looked": {"_count": 1}, "shouted": {"_count": 1}, "offered": {"_count": 1}, "truly": {"_count": 1}, "choose": {"_count": 1}, "married": {"_count": 1}}, "it": {"_count": 106, "got": {"_count": 1}, "was": {"_count": 23}, "had": {"_count": 14}, "did": {"_count": 1}, "wriggles": {"_count": 1}, "could": {"_count": 2}, "made": {"_count": 1}, "turns": {"_count": 1}, "belonged": {"_count": 1}, "hadnt": {"_count": 4}, "stands": {"_count": 1}, "flies": {"_count": 1}, "doesnt": {"_count": 2}, "goes": {"_count": 1}, "all": {"_count": 1}, "turned": {"_count": 3}, "comes": {"_count": 1}, "threw": {"_count": 1}, "were": {"_count": 6}, "wasnt": {"_count": 4}, "really": {"_count": 3}, "came": {"_count": 1}, "couldnt": {"_count": 1}, "gets": {"_count": 3}, "danced": {"_count": 1}, "ignited": {"_count": 1}, "cant": {"_count": 1}, "led": {"_count": 1}, "happened": {"_count": 1}, "is": {"_count": 6}, "meant": {"_count": 1}, "wasn": {"_count": 1}, "seems": {"_count": 1}, "exists": {"_count": 1}, "does": {"_count": 5}, "isnt": {"_count": 1}, "ran": {"_count": 1}, "would": {"_count": 1}, "kills": {"_count": 1}, "makes": {"_count": 1}, "aint": {"_count": 1}, "spread": {"_count": 1}, "matters": {"_count": 1}}, "youd": {"_count": 21, "been": {"_count": 4}, "like": {"_count": 4}, "heard": {"_count": 1}, "given": {"_count": 1}, "be": {"_count": 1}, "never": {"_count": 1}, "missed": {"_count": 1}, "wanted": {"_count": 1}, "known": {"_count": 1}, "done": {"_count": 1}, "rather": {"_count": 1}, "just": {"_count": 1}, "nip": {"_count": 1}, "change": {"_count": 1}, "seen": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "YouKnowWho": {"_count": 2, "has": {"_count": 1}, "had": {"_count": 1}}, "we": {"_count": 104, "keep": {"_count": 2}, "cant": {"_count": 3}, "hadnt": {"_count": 2}, "might": {"_count": 1}, "win": {"_count": 1}, "ever": {"_count": 3}, "get": {"_count": 5}, "cross": {"_count": 2}, "were": {"_count": 4}, "werent": {"_count": 2}, "made": {"_count": 2}, "can": {"_count": 6}, "caught": {"_count": 2}, "have": {"_count": 1}, "are": {"_count": 6}, "just": {"_count": 5}, "dont": {"_count": 8}, "we": {"_count": 1}, "proceed": {"_count": 1}, "pretend": {"_count": 1}, "don": {"_count": 1}, "find": {"_count": 4}, "likes": {"_count": 1}, "havent": {"_count": 1}, "wake": {"_count": 1}, "didnt": {"_count": 1}, "bring": {"_count": 1}, "die": {"_count": 1}, "all": {"_count": 2}, "take": {"_count": 1}, "hear": {"_count": 1}, "want": {"_count": 3}, "tell": {"_count": 1}, "parade": {"_count": 1}, "well": {"_count": 1}, "do": {"_count": 5}, "couldn": {"_count": 1}, "could": {"_count": 2}, "": {"_count": 1}, "lit": {"_count": 1}, "fail": {"_count": 1}, "lose": {"_count": 1}, "accept": {"_count": 1}, "wanted": {"_count": 1}, "miss": {"_count": 1}, "come": {"_count": 1}, "wreck": {"_count": 1}, "join": {"_count": 1}, "skulk": {"_count": 1}, "spend": {"_count": 1}, "move": {"_count": 1}, "had": {"_count": 1}, "came": {"_count": 1}, "call": {"_count": 1}, "need": {"_count": 1}}, "today": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 160, "could": {"_count": 18}, "can": {"_count": 15}, "keep": {"_count": 2}, "slipped": {"_count": 1}, "do": {"_count": 1}, "were": {"_count": 15}, "added": {"_count": 1}, "told": {"_count": 2}, "wave": {"_count": 1}, "must": {"_count": 1}, "wanted": {"_count": 3}, "cant": {"_count": 1}, "look": {"_count": 1}, "got": {"_count": 2}, "develop": {"_count": 1}, "had": {"_count": 7}, "am": {"_count": 5}, "hadnt": {"_count": 5}, "have": {"_count": 5}, "know": {"_count": 2}, "accidentally": {"_count": 1}, "blew": {"_count": 1}, "dont": {"_count": 7}, "if": {"_count": 2}, "go": {"_count": 3}, "ever": {"_count": 2}, "lose": {"_count": 1}, "tell": {"_count": 2}, "give": {"_count": 1}, "murder": {"_count": 1}, "ask": {"_count": 1}, "was": {"_count": 4}, "did": {"_count": 4}, "use": {"_count": 1}, "say": {"_count": 1}, "said": {"_count": 1}, "sacked": {"_count": 1}, "need": {"_count": 1}, "wasnt": {"_count": 2}, "catch": {"_count": 1}, "knew": {"_count": 4}, "pack": {"_count": 1}, "refused": {"_count": 1}, "He": {"_count": 1}, "didnt": {"_count": 2}, "even": {"_count": 1}, "fetch": {"_count": 1}, "proceeded": {"_count": 1}, "couldve": {"_count": 1}, "didn": {"_count": 1}, "jus": {"_count": 1}, "remember": {"_count": 1}, "met": {"_count": 1}, "felt": {"_count": 1}, "want": {"_count": 4}, "fixed": {"_count": 1}, "walk": {"_count": 1}, "meet": {"_count": 1}, "Stunned": {"_count": 1}, "picked": {"_count": 1}, "left": {"_count": 1}, "talk": {"_count": 1}, "Hand": {"_count": 1}, "stay": {"_count": 1}, "help": {"_count": 1}, "take": {"_count": 1}}, "they": {"_count": 115, "cant": {"_count": 3}, "couldnt": {"_count": 1}, "put": {"_count": 1}, "know": {"_count": 3}, "wouldnt": {"_count": 1}, "came": {"_count": 1}, "walk": {"_count": 1}, "had": {"_count": 13}, "hadnt": {"_count": 1}, "were": {"_count": 13}, "could": {"_count": 2}, "all": {"_count": 1}, "lost": {"_count": 3}, "are": {"_count": 1}, "dont": {"_count": 2}, "ventured": {"_count": 1}, "retaliated": {"_count": 1}, "finished": {"_count": 1}, "closed": {"_count": 1}, "found": {"_count": 2}, "expelled": {"_count": 1}, "didnt": {"_count": 4}, "kept": {"_count": 2}, "beat": {"_count": 2}, "get": {"_count": 3}, "find": {"_count": 1}, "turned": {"_count": 1}, "stopped": {"_count": 1}, "turn": {"_count": 1}, "knew": {"_count": 5}, "end": {"_count": 1}, "opened": {"_count": 1}, "fancied": {"_count": 1}, "went": {"_count": 2}, "chuck": {"_count": 1}, "catch": {"_count": 1}, "would": {"_count": 1}, "believe": {"_count": 1}, "come": {"_count": 1}, "heard": {"_count": 1}, "ruled": {"_count": 1}, "abide": {"_count": 1}, "started": {"_count": 1}, "do": {"_count": 2}, "werent": {"_count": 1}, "can": {"_count": 2}, "think": {"_count": 1}, "really": {"_count": 1}, "just": {"_count": 1}, "sometimes": {"_count": 1}, "see": {"_count": 1}, "forget": {"_count": 1}, "caught": {"_count": 1}, "ask": {"_count": 1}, "became": {"_count": 1}, "got": {"_count": 2}, "won": {"_count": 2}, "made": {"_count": 1}, "wake": {"_count": 1}, "havent": {"_count": 1}, "preferred": {"_count": 1}, "looked": {"_count": 1}, "managed": {"_count": 1}, "wanted": {"_count": 1}, "saw": {"_count": 1}, "cast": {"_count": 1}}, "yehve": {"_count": 3, "got": {"_count": 2}, "finished": {"_count": 1}}, "Im": {"_count": 10, "the": {"_count": 1}, "not": {"_count": 3}, "happy": {"_count": 1}, "looking": {"_count": 1}, "ever": {"_count": 1}, "allowed": {"_count": 1}, "qualified": {"_count": 1}, "in": {"_count": 1}}, "yeh": {"_count": 15, "didnt": {"_count": 1}, "did": {"_count": 1}, "want": {"_count": 2}, "ask": {"_count": 2}, "know": {"_count": 1}, "wan": {"_count": 1}, "blink": {"_count": 1}, "tried": {"_count": 1}, "get": {"_count": 1}, "really": {"_count": 1}, "bait": {"_count": 1}, "jus": {"_count": 1}, "applied": {"_count": 1}}, "their": {"_count": 5, "house": {"_count": 1}, "little": {"_count": 1}, "antidote": {"_count": 1}, "families": {"_count": 1}, "Prime": {"_count": 1}}, "ever": {"_count": 9, "there": {"_count": 1}, "I": {"_count": 2}, "you": {"_count": 2}, "was": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "we": {"_count": 1}}, "anyones": {"_count": 4, "inside": {"_count": 1}, "run": {"_count": 1}, "watching": {"_count": 1}, "got": {"_count": 1}}, "thats": {"_count": 12, "what": {"_count": 5}, "true": {"_count": 1}, "all": {"_count": 2}, "really": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 14, "parents": {"_count": 1}, "life": {"_count": 1}, "grades": {"_count": 1}, "masters": {"_count": 1}, "own": {"_count": 1}, "teeth": {"_count": 1}, "son": {"_count": 1}, "name": {"_count": 1}, "mother": {"_count": 1}, "scar": {"_count": 1}, "Uncle": {"_count": 1}, "head": {"_count": 1}, "teammates": {"_count": 1}, "soul": {"_count": 1}}, "Id": {"_count": 9, "known": {"_count": 1}, "been": {"_count": 2}, "given": {"_count": 1}, "got": {"_count": 1}, "finished": {"_count": 1}, "dropped": {"_count": 1}, "gotten": {"_count": 1}, "used": {"_count": 1}}, "youre": {"_count": 37, "nervous": {"_count": 1}, "sure": {"_count": 3}, "caught": {"_count": 1}, "so": {"_count": 2}, "not": {"_count": 6}, "there": {"_count": 1}, "dining": {"_count": 1}, "wearing": {"_count": 1}, "dead": {"_count": 1}, "lucky": {"_count": 1}, "seen": {"_count": 1}, "talking": {"_count": 1}, "blackmailing": {"_count": 1}, "going": {"_count": 4}, "expelled": {"_count": 1}, "counting": {"_count": 1}, "carrying": {"_count": 1}, "bored": {"_count": 1}, "including": {"_count": 1}, "really": {"_count": 1}, "underage": {"_count": 1}, "still": {"_count": 2}, "thinking": {"_count": 1}, "planning": {"_count": 1}, "too": {"_count": 1}}, "nothing": {"_count": 1, "could": {"_count": 1}}, "that": {"_count": 19, "was": {"_count": 5}, "owls": {"_count": 1}, "": {"_count": 1}, "big": {"_count": 1}, "keeps": {"_count": 1}, "is": {"_count": 2}, "were": {"_count": 2}, "means": {"_count": 1}, "overgrown": {"_count": 1}, "ally": {"_count": 1}, "Hermione": {"_count": 1}, "really": {"_count": 1}, "bargain": {"_count": 1}}, "its": {"_count": 32, "true": {"_count": 3}, "not": {"_count": 3}, "this": {"_count": 1}, "against": {"_count": 1}, "staring": {"_count": 1}, "a": {"_count": 8}, "Malfoy": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "illegal": {"_count": 1}, "ever": {"_count": 1}, "Voldemorts": {"_count": 1}, "really": {"_count": 1}, "all": {"_count": 1}, "unusual": {"_count": 1}, "died": {"_count": 1}, "handwritten": {"_count": 1}, "his": {"_count": 1}, "solid": {"_count": 1}, "midnight": {"_count": 1}}, "Hagrid": {"_count": 2, "had": {"_count": 1}, "is": {"_count": 1}}, "theres": {"_count": 10, "something": {"_count": 2}, "a": {"_count": 2}, "no": {"_count": 1}, "one": {"_count": 2}, "going": {"_count": 1}, "an": {"_count": 1}, "kids": {"_count": 1}}, "she": {"_count": 54, "was": {"_count": 5}, "saw": {"_count": 4}, "never": {"_count": 1}, "did": {"_count": 1}, "does": {"_count": 4}, "can": {"_count": 4}, "could": {"_count": 3}, "wanted": {"_count": 2}, "had": {"_count": 7}, "hadnt": {"_count": 3}, "knew": {"_count": 4}, "will": {"_count": 1}, "cant": {"_count": 1}, "found": {"_count": 2}, "supports": {"_count": 1}, "throws": {"_count": 1}, "starts": {"_count": 1}, "showed": {"_count": 1}, "asks": {"_count": 1}, "wont": {"_count": 1}, "thinks": {"_count": 1}, "jumps": {"_count": 1}, "ever": {"_count": 1}, "would": {"_count": 1}, "wakes": {"_count": 1}, "thought": {"_count": 1}}, "Snape": {"_count": 12, "had": {"_count": 2}, "stole": {"_count": 1}, "hadnt": {"_count": 1}, "sees": {"_count": 1}, "is": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 1}, "chose": {"_count": 1}, "s": {"_count": 1}, "pretended": {"_count": 1}, "can": {"_count": 1}}, "there": {"_count": 13, "were": {"_count": 1}, "was": {"_count": 7}, "are": {"_count": 2}, "isnt": {"_count": 1}, "d": {"_count": 1}, "had": {"_count": 1}}, "to": {"_count": 4, "say": {"_count": 2}, "spring": {"_count": 1}, "a": {"_count": 1}}, "Flamel": {"_count": 1, "wasnt": {"_count": 1}}, "Percy": {"_count": 3, "hadnt": {"_count": 2}, "knows": {"_count": 1}}, "someone": {"_count": 9, "had": {"_count": 4}, "throws": {"_count": 1}, "younger": {"_count": 1}, "saw": {"_count": 1}, "flushes": {"_count": 1}, "from": {"_count": 1}}, "what": {"_count": 4, "it": {"_count": 1}, "if": {"_count": 2}, "Lupin": {"_count": 1}}, "hes": {"_count": 25, "six": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "away": {"_count": 1}, "okay": {"_count": 1}, "resigned": {"_count": 1}, "half": {"_count": 1}, "on": {"_count": 2}, "caught": {"_count": 1}, "not": {"_count": 1}, "seen": {"_count": 1}, "got": {"_count": 1}, "seeing": {"_count": 1}, "marking": {"_count": 1}, "published": {"_count": 1}, "willin": {"_count": 1}, "just": {"_count": 1}, "done": {"_count": 1}, "already": {"_count": 1}, "shown": {"_count": 1}, "tied": {"_count": 1}, "lying": {"_count": 1}, "been": {"_count": 1}, "gone": {"_count": 1}}, "Dumbledore": {"_count": 14, "was": {"_count": 2}, "cant": {"_count": 1}, "says": {"_count": 1}, "thinks": {"_count": 1}, "doesnt": {"_count": 1}, "couldnt": {"_count": 1}, "takes": {"_count": 1}, "had": {"_count": 2}, "needed": {"_count": 1}, "entrusted": {"_count": 1}, "broke": {"_count": 1}, "wanted": {"_count": 1}}, "brains": {"_count": 1, "were": {"_count": 1}}, "were": {"_count": 20, "keeping": {"_count": 1}, "with": {"_count": 1}, "more": {"_count": 2}, "I": {"_count": 1}, "seen": {"_count": 1}, "interested": {"_count": 1}, "lucky": {"_count": 2}, "going": {"_count": 4}, "bringing": {"_count": 1}, "dirt": {"_count": 1}, "smuggling": {"_count": 1}, "trying": {"_count": 1}, "not": {"_count": 1}, "trapped": {"_count": 1}, "mouthy": {"_count": 1}}, "Norberts": {"_count": 1, "fangs": {"_count": 1}}, "youll": {"_count": 9, "all": {"_count": 1}, "believe": {"_count": 3}, "just": {"_count": 3}, "excuse": {"_count": 1}, "take": {"_count": 1}}, "my": {"_count": 11, "father": {"_count": 1}, "schedules": {"_count": 1}, "armll": {"_count": 1}, "Mistress": {"_count": 1}, "tea": {"_count": 1}, "family": {"_count": 1}, "calculations": {"_count": 1}, "wife": {"_count": 1}, "office": {"_count": 1}, "presence": {"_count": 1}, "wand": {"_count": 1}}, "whatever": {"_count": 1, "hurt": {"_count": 1}}, "yer": {"_count": 1, "with": {"_count": 1}}, "any": {"_count": 8, "of": {"_count": 8}}, "either": {"_count": 2, "of": {"_count": 2}}, "Malfoy": {"_count": 5, "has": {"_count": 1}, "said": {"_count": 1}, "saw": {"_count": 1}, "recognizes": {"_count": 1}, "had": {"_count": 1}}, "somethings": {"_count": 2, "got": {"_count": 1}, "acreeping": {"_count": 1}}, "Bane": {"_count": 1, "doesnt": {"_count": 1}}, "hoping": {"_count": 3, "to": {"_count": 1}, "somebody": {"_count": 1}, "a": {"_count": 1}}, "Gryffindor": {"_count": 2, "wins": {"_count": 1}, "lost": {"_count": 1}}, "Filch": {"_count": 1, "spots": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "Devils": {"_count": 1, "Snare": {"_count": 1}}, "only": {"_count": 8, "Dumbledore": {"_count": 1}, "we": {"_count": 2}, "my": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}, "accidentally": {"_count": 1}}, "Harry": {"_count": 18, "lost": {"_count": 1}, "went": {"_count": 1}, "Potter": {"_count": 2}, "is": {"_count": 1}, "here": {"_count": 1}, "has": {"_count": 2}, "caught": {"_count": 1}, "wrote": {"_count": 1}, "had": {"_count": 3}, "could": {"_count": 2}, "was": {"_count": 1}, "so": {"_count": 1}, "still": {"_count": 1}}, "Hogwarts": {"_count": 2, "would": {"_count": 1}, "is": {"_count": 1}}, "er": {"_count": 1, "he": {"_count": 1}}, "youve": {"_count": 19, "never": {"_count": 1}, "seen": {"_count": 2}, "got": {"_count": 9}, "heard": {"_count": 1}, "only": {"_count": 1}, "gotten": {"_count": 1}, "just": {"_count": 1}, "ever": {"_count": 1}, "already": {"_count": 1}, "given": {"_count": 1}}, "Mum": {"_count": 3, "and": {"_count": 2}, "can": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "yehd": {"_count": 1, "cursed": {"_count": 1}}, "this": {"_count": 12, "is": {"_count": 3}, "plan": {"_count": 1}, "suits": {"_count": 1}, "would": {"_count": 2}, "were": {"_count": 1}, "list": {"_count": 1}, "human": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 1}}, "Potters": {"_count": 1, "marked": {"_count": 1}}, "Ron": {"_count": 10, "punched": {"_count": 1}, "didnt": {"_count": 1}, "admitted": {"_count": 1}, "touched": {"_count": 1}, "and": {"_count": 1}, "left": {"_count": 1}, "played": {"_count": 1}, "won": {"_count": 1}, "started": {"_count": 1}, "was": {"_count": 1}}, "possible": {"_count": 6, "louder": {"_count": 1}, "even": {"_count": 3}, "intensified": {"_count": 1}, "so": {"_count": 1}}, "Riddle": {"_count": 1, "got": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "theyre": {"_count": 12, "thinking": {"_count": 1}, "there": {"_count": 1}, "late": {"_count": 1}, "coming": {"_count": 1}, "not": {"_count": 2}, "any": {"_count": 1}, "trying": {"_count": 1}, "offered": {"_count": 1}, "using": {"_count": 1}, "lucky": {"_count": 1}, "telling": {"_count": 1}}, "shes": {"_count": 9, "still": {"_count": 1}, "completely": {"_count": 1}, "my": {"_count": 1}, "inspecting": {"_count": 1}, "bewitched": {"_count": 1}, "sent": {"_count": 1}, "dead": {"_count": 1}, "staying": {"_count": 1}, "a": {"_count": 1}}, "shed": {"_count": 3, "seen": {"_count": 1}, "been": {"_count": 1}, "just": {"_count": 1}}, "": {"_count": 9, "!": {"_count": 4}, ".": {"_count": 3}, "?": {"_count": 2}}, "people": {"_count": 4, "didnt": {"_count": 1}, "are": {"_count": 1}, "who": {"_count": 1}, "from": {"_count": 1}}, "even": {"_count": 1, "worse": {"_count": 1}}, "one": {"_count": 9, "of": {"_count": 6}, "hint": {"_count": 1}, "more": {"_count": 1}, "young": {"_count": 1}}, "dropping": {"_count": 1, "a": {"_count": 1}}, "theyd": {"_count": 7, "opened": {"_count": 1}, "walked": {"_count": 1}, "murdered": {"_count": 1}, "thought": {"_count": 1}, "have": {"_count": 1}, "bin": {"_count": 1}, "had": {"_count": 1}}, "Toms": {"_count": 1, "got": {"_count": 1}}, "not": {"_count": 10, "to": {"_count": 1}, "more": {"_count": 2}, "downright": {"_count": 1}, "nurtured": {"_count": 1}, "worse": {"_count": 1}, "a": {"_count": 1}, "entirely": {"_count": 1}, "comforting": {"_count": 1}, "there": {"_count": 1}}, "theyve": {"_count": 3, "got": {"_count": 3}}, "Harrys": {"_count": 2, "seen": {"_count": 1}, "been": {"_count": 1}}, "Potter": {"_count": 2, "could": {"_count": 1}, "was": {"_count": 1}}, "a": {"_count": 12, "teacher": {"_count": 2}, "Muggle": {"_count": 1}, "giant": {"_count": 1}, "Gryffindor": {"_count": 1}, "pocketful": {"_count": 1}, "reprimand": {"_count": 1}, "normal": {"_count": 1}, "part": {"_count": 1}, "giraffe": {"_count": 1}, "creature": {"_count": 1}, "single": {"_count": 1}}, "Hufflepuff": {"_count": 1, "loses": {"_count": 1}}, "Slytherin": {"_count": 3, "loses": {"_count": 1}, "wins": {"_count": 1}, "lose": {"_count": 1}}, "Black": {"_count": 1, "did": {"_count": 1}}, "Sirius": {"_count": 2, "Black": {"_count": 1}, "was": {"_count": 1}}, "Scabbers": {"_count": 1, "died": {"_count": 1}}, "Cho": {"_count": 2, "got": {"_count": 1}, "asked": {"_count": 1}}, "your": {"_count": 8, "father": {"_count": 1}, "dad": {"_count": 1}, "mother": {"_count": 1}, "mum": {"_count": 1}, "fool": {"_count": 1}, "dream": {"_count": 1}, "sons": {"_count": 1}, "backup": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}, "Peter": {"_count": 1, "Pettigrew": {"_count": 1}}, "if": {"_count": 2, "there": {"_count": 1}, "he": {"_count": 1}}, "Voldemort": {"_count": 10, "didnt": {"_count": 1}, "comes": {"_count": 1}, "wants": {"_count": 1}, "hadnt": {"_count": 1}, "really": {"_count": 1}, "burst": {"_count": 1}, "somehow": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "used": {"_count": 1}}, "Buckbeak": {"_count": 1, "has": {"_count": 1}}, "anything": {"_count": 7, "worse": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "even": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 1}, "warier": {"_count": 1}}, "Ive": {"_count": 3, "offered": {"_count": 1}, "got": {"_count": 2}}, "truth": {"_count": 2, "be": {"_count": 2}}, "Wormtail": {"_count": 1, "had": {"_count": 1}}, "curse": {"_count": 1, "scars": {"_count": 1}}, "weve": {"_count": 2, "disturbed": {"_count": 1}, "learned": {"_count": 1}}, "Dad": {"_count": 1, "didnt": {"_count": 1}}, "nobodys": {"_count": 1, "got": {"_count": 1}}, "Hedwig": {"_count": 1, "had": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "anybody": {"_count": 4, "would": {"_count": 1}, "else": {"_count": 1}, "cared": {"_count": 1}, "overstews": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "Moody": {"_count": 2, "turned": {"_count": 1}, "wanted": {"_count": 1}}, "no": {"_count": 2, "one": {"_count": 1}, "defense": {"_count": 1}}, "Cedric": {"_count": 2, "knows": {"_count": 1}, "had": {"_count": 1}}, "Karkaroff": {"_count": 1, "had": {"_count": 1}}, "Dobby": {"_count": 2, "wants": {"_count": 1}, "does": {"_count": 1}}, "everyone": {"_count": 2, "else": {"_count": 1}, "reacts": {"_count": 1}}, "Diggorys": {"_count": 1, "getting": {"_count": 1}}, "Crouch": {"_count": 2, "snuffs": {"_count": 1}, "wants": {"_count": 1}}, "Cedrics": {"_count": 1, "hint": {"_count": 1}}, "somebody": {"_count": 5, "was": {"_count": 1}, "had": {"_count": 1}, "just": {"_count": 1}, "looked": {"_count": 1}, "made": {"_count": 1}}, "every": {"_count": 1, "other": {"_count": 1}}, "by": {"_count": 2, "some": {"_count": 2}}, "Krum": {"_count": 1, "wasnt": {"_count": 1}}, "steam": {"_count": 1, "was": {"_count": 1}}, "Karkaroffs": {"_count": 1, "genuinely": {"_count": 1}}, "indeed": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "noticed": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "aims": {"_count": 1}}, "some": {"_count": 2, "loonys": {"_count": 1}, "fat": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Voldemorts": {"_count": 2, "trying": {"_count": 1}, "possessing": {"_count": 1}}, "Kreachers": {"_count": 1, "Mistress": {"_count": 1}}, "forced": {"_count": 1, "when": {"_count": 1}}, "Perkins": {"_count": 1, "is": {"_count": 1}}, "Fudge": {"_count": 1, "is": {"_count": 1}}, "something": {"_count": 4, "dd": {"_count": 1}, "had": {"_count": 1}, "went": {"_count": 1}, "heavy": {"_count": 1}}, "Arthur": {"_count": 2, "and": {"_count": 1}, "hadnt": {"_count": 1}}, "need": {"_count": 1, "be": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "Couldnt": {"_count": 1, "you": {"_count": 1}}, "angered": {"_count": 1, "they": {"_count": 1}}, "Olivers": {"_count": 1, "old": {"_count": 1}}, "training": {"_count": 1, "clashed": {"_count": 1}}, "Fawkes": {"_count": 1, "hadnt": {"_count": 1}}, "Umbridge": {"_count": 6, "does": {"_count": 1}, "finds": {"_count": 1}, "knows": {"_count": 1}, "asked": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}}, "Ginny": {"_count": 1, "hadnt": {"_count": 1}}, "Hermiones": {"_count": 1, "seen": {"_count": 1}}, "correctly": {"_count": 1, "made": {"_count": 1}}, "Olympe": {"_count": 1, "hadn": {"_count": 1}}, "those": {"_count": 1, "fangs": {"_count": 1}}, "St": {"_count": 2, "": {"_count": 2}}, "You": {"_count": 1, "Know": {"_count": 1}}, "Snapes": {"_count": 1, "giving": {"_count": 1}}, "Sturgis": {"_count": 1, "gasped": {"_count": 1}}, "and": {"_count": 1, "only": {"_count": 1}}, "Willy": {"_count": 1, "Widdershins": {"_count": 1}}, "everybodys": {"_count": 1, "in": {"_count": 1}}, "Montagues": {"_count": 1, "permanently": {"_count": 1}}, "Montague": {"_count": 1, "doesnt": {"_count": 1}}, "Longbottom": {"_count": 1, "suffocates": {"_count": 1}}, "necessary": {"_count": 2, "Bellatrix": {"_count": 1}, "What": {"_count": 1}}, "numbers": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "shielding": {"_count": 1}, "prayer": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "all": {"_count": 7, "that": {"_count": 1}, "of": {"_count": 2}, "the": {"_count": 2}, "three": {"_count": 1}, "its": {"_count": 1}}, "Lucius": {"_count": 1, "hadnt": {"_count": 1}}, "Draco": {"_count": 1, "is": {"_count": 1}}, "such": {"_count": 3, "an": {"_count": 1}, "cruelty": {"_count": 1}, "simple": {"_count": 1}}, "hampers": {"_count": 1, "of": {"_count": 1}}, "brewed": {"_count": 1, "correctly": {"_count": 1}}, "taken": {"_count": 1, "in": {"_count": 1}}, "word": {"_count": 1, "got": {"_count": 1}}, "wed": {"_count": 2, "stayed": {"_count": 1}, "both": {"_count": 1}}, "Professor": {"_count": 1, "GrubblyPlank": {"_count": 1}}, "Harper": {"_count": 1, "got": {"_count": 1}}, "bloodshot": {"_count": 1, "eye": {"_count": 1}}, "Fleur": {"_count": 1, "shares": {"_count": 1}}, "WonWon": {"_count": 1, "thinks": {"_count": 1}}, "kids": {"_count": 1, "are": {"_count": 1}}, "Coote": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "their": {"_count": 1}}, "Goyle": {"_count": 1, "was": {"_count": 1}}, "picked": {"_count": 1, "at": {"_count": 1}}, "ones": {"_count": 1, "body": {"_count": 1}}, "Slughorn": {"_count": 1, "had": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "suspended": {"_count": 1, "by": {"_count": 1}}, "gagged": {"_count": 1, "": {"_count": 1}}, "examining": {"_count": 1, "rotting": {"_count": 1}}, "still": {"_count": 1, "hoping": {"_count": 1}}, "Kendra": {"_count": 1, "hadnt": {"_count": 1}}, "Bathildas": {"_count": 1, "completely": {"_count": 1}}, "Tonks": {"_count": 1, "had": {"_count": 1}}, "purebloods": {"_count": 1, "and": {"_count": 1}}, "punched": {"_count": 1, "as": {"_count": 1}}, "present": {"_count": 1, "": {"_count": 1}}, "Bathilda": {"_count": 2, "was": {"_count": 1}, "s": {"_count": 1}}, "Mafalda": {"_count": 1, "can": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "that": {"_count": 1}}, "things": {"_count": 1, "were": {"_count": 1}}, "united": {"_count": 2, "will": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "Gregorovitch": {"_count": 1, "was": {"_count": 1}}, "working": {"_count": 1, "out": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "does": {"_count": 1}}, "caught": {"_count": 1, "by": {"_count": 1}}, "for": {"_count": 1, "instance": {"_count": 1}}, "fearing": {"_count": 1, "he": {"_count": 1}}, "presented": {"_count": 1, "outright": {"_count": 1}}, "Petrified": {"_count": 1, "and": {"_count": 1}}}, "anyone": {"_count": 367, "found": {"_count": 3, "out": {"_count": 3}}, "looked": {"_count": 1, "out": {"_count": 1}}, "elses": {"_count": 6, "there": {"_count": 1}, "": {"_count": 3}, "work": {"_count": 1}, "and": {"_count": 1}}, "was": {"_count": 6, "watching": {"_count": 2}, "wandering": {"_count": 1}, "listening": {"_count": 1}, "not": {"_count": 1}, "shouting": {"_count": 1}}, "knows": {"_count": 1, "is": {"_count": 1}}, "at": {"_count": 8, "Hogwarts": {"_count": 2}, "school": {"_count": 1}, "the": {"_count": 3}, "all": {"_count": 1}, "his": {"_count": 1}}, "else": {"_count": 49, "he": {"_count": 1}, "yet": {"_count": 1}, "might": {"_count": 1}, "until": {"_count": 1}, "in": {"_count": 3}, "all": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 10}, "had": {"_count": 1}, "has": {"_count": 2}, "could": {"_count": 1}, "gaping": {"_count": 1}, "was": {"_count": 1}, "they": {"_count": 1}, "Hermione": {"_count": 1}, "there": {"_count": 1}, "at": {"_count": 1}, "did": {"_count": 1}, "so": {"_count": 1}, "joins": {"_count": 1}, "hear": {"_count": 1}, "what": {"_count": 1}, "whos": {"_count": 1}, "listening": {"_count": 1}, "here": {"_count": 1}, "who": {"_count": 1}, "back": {"_count": 1}, "four": {"_count": 1}, "to": {"_count": 3}, "tact": {"_count": 1}, "we": {"_count": 1}, "Luna": {"_count": 1}, "die": {"_count": 1}, "tonight": {"_count": 1}, "know": {"_count": 1}}, "but": {"_count": 10, "a": {"_count": 1}, "his": {"_count": 1}, "me": {"_count": 2}, "he": {"_count": 1}, "themselves": {"_count": 1}, "myself": {"_count": 1}, "Then": {"_count": 1}, "Ron": {"_count": 1}, "I": {"_count": 1}}, "to": {"_count": 8, "share": {"_count": 1}, "death": {"_count": 1}, "give": {"_count": 1}, "worship": {"_count": 1}, "do": {"_count": 1}, "talk": {"_count": 1}, "use": {"_count": 1}, "get": {"_count": 1}}, "seen": {"_count": 1, "a": {"_count": 1}}, "except": {"_count": 6, "perhaps": {"_count": 1}, "Ron": {"_count": 1}, "you": {"_count": 1}, "us": {"_count": 1}, "Mr": {"_count": 1}, "in": {"_count": 1}}, "whod": {"_count": 3, "listen": {"_count": 2}, "go": {"_count": 1}}, "Wood": {"_count": 1, "wants": {"_count": 1}}, "could": {"_count": 14, "be": {"_count": 2}, "have": {"_count": 3}, "stop": {"_count": 1}, "make": {"_count": 1}, "interrupt": {"_count": 1}, "call": {"_count": 1}, "tell": {"_count": 2}, "put": {"_count": 1}, "do": {"_count": 1}, "get": {"_count": 1}}, "": {"_count": 33, "?": {"_count": 10}, ".": {"_count": 19}, "!": {"_count": 4}}, "had": {"_count": 2, "seen": {"_count": 1}, "been": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "noticing": {"_count": 2, "": {"_count": 2}}, "would": {"_count": 7, "you": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 2}, "feel": {"_count": 1}, "wear": {"_count": 1}, "see": {"_count": 1}}, "gets": {"_count": 1, "in": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "who": {"_count": 24, "had": {"_count": 2}, "hears": {"_count": 1}, "looked": {"_count": 1}, "thinks": {"_count": 1}, "deserved": {"_count": 1}, "crosses": {"_count": 1}, "asked": {"_count": 1}, "went": {"_count": 1}, "seeks": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}, "calls": {"_count": 1}, "complains": {"_count": 1}, "wants": {"_count": 1}, "can": {"_count": 2}, "annoys": {"_count": 1}, "has": {"_count": 2}, "might": {"_count": 1}, "met": {"_count": 1}, "Apparates": {"_count": 1}, "says": {"_count": 1}}, "in": {"_count": 11, "the": {"_count": 5}, "there": {"_count": 1}, "their": {"_count": 1}, "Little": {"_count": 1}, "as": {"_count": 1}, "his": {"_count": 1}, "this": {"_count": 1}}, "help": {"_count": 1, "you": {"_count": 1}}, "bother": {"_count": 2, "making": {"_count": 1}, "looking": {"_count": 1}}, "because": {"_count": 1, "no": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "fer": {"_count": 1, "the": {"_count": 1}}, "want": {"_count": 2, "to": {"_count": 2}}, "said": {"_count": 8, "Ron": {"_count": 1}, "made": {"_count": 1}, "or": {"_count": 1}, "Hermione": {"_count": 2}, "Harry": {"_count": 1}, "Malfoy": {"_count": 1}, "Doge": {"_count": 1}}, "near": {"_count": 2, "here": {"_count": 1}, "them": {"_count": 1}}, "now": {"_count": 2, "though": {"_count": 1}, "dear": {"_count": 1}}, "believe": {"_count": 2, "he": {"_count": 1}, "Malfoy": {"_count": 1}}, "beating": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 3, "practice": {"_count": 1}, "cause": {"_count": 1}, "Ill": {"_count": 1}}, "A": {"_count": 1, "vast": {"_count": 1}}, "knowing": {"_count": 1, "about": {"_count": 1}}, "wanted": {"_count": 1, "ter": {"_count": 1}}, "The": {"_count": 1, "snakes": {"_count": 1}}, "connected": {"_count": 1, "Lord": {"_count": 1}}, "finding": {"_count": 1, "out": {"_count": 1}}, "can": {"_count": 4, "do": {"_count": 2}, "read": {"_count": 1}, "use": {"_count": 1}}, "bin": {"_count": 1, "able": {"_count": 1}}, "going": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "fall": {"_count": 1, "off": {"_count": 1}}, "finds": {"_count": 1, "out": {"_count": 1}}, "ever": {"_count": 6, "mentioned": {"_count": 1}, "told": {"_count": 1}, "going": {"_count": 1}, "paid": {"_count": 1}, "tried": {"_count": 1}, "come": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 1}, "something": {"_count": 1}}, "should": {"_count": 1, "ride": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "deserves": {"_count": 2, "that": {"_count": 2}}, "youd": {"_count": 1, "better": {"_count": 1}}, "confirm": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 2, "me": {"_count": 1}, "that": {"_count": 1}}, "coming": {"_count": 2, "across": {"_count": 1}, "a": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "you": {"_count": 1}}, "even": {"_count": 1, "without": {"_count": 1}}, "dumpy": {"_count": 1, "when": {"_count": 1}}, "of": {"_count": 1, "Muggle": {"_count": 1}}, "fly": {"_count": 1, "like": {"_count": 1}}, "look": {"_count": 1, "good": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "know": {"_count": 4, "any": {"_count": 1}, "except": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "approaches": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 3, "Durmstrang": {"_count": 1}, "Hogwarts": {"_count": 1}, "the": {"_count": 1}}, "under": {"_count": 1, "seventeen": {"_count": 1}}, "telling": {"_count": 1, "me": {"_count": 1}}, "think": {"_count": 1, "that": {"_count": 1}}, "really": {"_count": 3, "want": {"_count": 1}, "witty": {"_count": 1}, "know": {"_count": 1}}, "took": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "do": {"_count": 1}}, "I": {"_count": 2, "showed": {"_count": 1}, "want": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "passed": {"_count": 1, "them": {"_count": 1}}, "well": {"_count": 1, "except": {"_count": 1}}, "he": {"_count": 4, "wanted": {"_count": 1}, "knew": {"_count": 1}, "likes": {"_count": 1}, "came": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "tell": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 1, "could": {"_count": 1}}, "sees": {"_count": 1, "": {"_count": 1}}, "brought": {"_count": 1, "any": {"_count": 1}}, "whats": {"_count": 1, "Vol": {"_count": 1}}, "whos": {"_count": 5, "in": {"_count": 1}, "interested": {"_count": 1}, "pretending": {"_count": 2}, "Disapparating": {"_count": 1}}, "has": {"_count": 3, "a": {"_count": 1}, "ever": {"_count": 1}, "any": {"_count": 1}}, "told": {"_count": 1, "you": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "saying": {"_count": 1, "You": {"_count": 1}}, "put": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 2, "the": {"_count": 1}, "talented": {"_count": 1}}, "Nevilles": {"_count": 1, "secret": {"_count": 1}}, "they": {"_count": 1, "reckons": {"_count": 1}}, "actually": {"_count": 1, "seen": {"_count": 1}}, "fancies": {"_count": 1, "buying": {"_count": 1}}, "Hermione": {"_count": 1, "worry": {"_count": 1}}, "suspected": {"_count": 1, "that": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 1, "from": {"_count": 1}}, "youve": {"_count": 1, "known": {"_count": 1}}, "needed": {"_count": 1, "reminding": {"_count": 1}}, "suggest": {"_count": 1, "that": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "Borgin": {"_count": 1, "and": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "nearby": {"_count": 1, "with": {"_count": 1}}, "behave": {"_count": 1, "as": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "quite": {"_count": 1, "like": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "pass": {"_count": 1, "until": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "what": {"_count": 1, "youre": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "knew": {"_count": 1, "of": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "hear": {"_count": 1, "him": {"_count": 1}}, "however": {"_count": 1, "apparently": {"_count": 1}}, "around": {"_count": 1, "you": {"_count": 1}}, "panic": {"_count": 1, "": {"_count": 1}}, "comes": {"_count": 1, "calling": {"_count": 1}}, "out": {"_count": 1, "there": {"_count": 1}}, "\u2018blood": {"_count": 1, "traitor": {"_count": 1}}, "beyond": {"_count": 1, "Grimmauld": {"_count": 1}}, "woulda": {"_count": 1, "got": {"_count": 1}}, "shouldnt": {"_count": 1, "go": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "famous": {"_count": 1, "or": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "moves": {"_count": 1, "outdoors": {"_count": 1}}, "particularly": {"_count": 1, "powerful": {"_count": 1}}, "heard": {"_count": 1, "of": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "lived": {"_count": 1, "behind": {"_count": 1}}, "foolish": {"_count": 1, "enough": {"_count": 1}}, "till": {"_count": 1, "youve": {"_count": 1}}}, "found": {"_count": 608, "out": {"_count": 91, "about": {"_count": 14}, "everything": {"_count": 2}, "than": {"_count": 1}, "what": {"_count": 9}, "where": {"_count": 2}, "something": {"_count": 2}, "who": {"_count": 5}, "how": {"_count": 11}, "he": {"_count": 4}, "somehow": {"_count": 1}, "even": {"_count": 1}, "Mr": {"_count": 1}, "why": {"_count": 1}, "whos": {"_count": 1}, "Id": {"_count": 1}, "": {"_count": 8}, "his": {"_count": 1}, "that": {"_count": 9}, "someone": {"_count": 2}, "more": {"_count": 1}, "they": {"_count": 1}, "since": {"_count": 1}, "Snape": {"_count": 1}, "Mundungus": {"_count": 1}, "and": {"_count": 1}, "after": {"_count": 2}, "the": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}, "when": {"_count": 1}, "anything": {"_count": 1}, "pretty": {"_count": 1}, "so": {"_count": 1}}, "it": {"_count": 44, "harder": {"_count": 1}, "a": {"_count": 3}, "peaceful": {"_count": 1}, "": {"_count": 4}, "very": {"_count": 6}, "and": {"_count": 1}, "inside": {"_count": 1}, "he": {"_count": 1}, "jammed": {"_count": 1}, "hard": {"_count": 2}, "in": {"_count": 1}, "already": {"_count": 1}, "disturbing": {"_count": 1}, "extremely": {"_count": 1}, "odd": {"_count": 1}, "okay": {"_count": 1}, "really": {"_count": 1}, "an": {"_count": 1}, "deserted": {"_count": 2}, "quite": {"_count": 1}, "again": {"_count": 1}, "unpleasant": {"_count": 1}, "hiding": {"_count": 1}, "the": {"_count": 1}, "difficult": {"_count": 3}, "it": {"_count": 2}, "Harry": {"_count": 1}, "we": {"_count": 1}, "PLEASE": {"_count": 1}}, "what": {"_count": 6, "he": {"_count": 3}, "she": {"_count": 1}, "they": {"_count": 1}, "looked": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Moody": {"_count": 1}, "Umbridge": {"_count": 1}}, "a": {"_count": 36, "pair": {"_count": 1}, "few": {"_count": 1}, "bottle": {"_count": 1}, "new": {"_count": 4}, "large": {"_count": 1}, "place": {"_count": 1}, "temporary": {"_count": 1}, "way": {"_count": 6}, "great": {"_count": 1}, "table": {"_count": 1}, "food": {"_count": 1}, "definite": {"_count": 1}, "miniature": {"_count": 1}, "novel": {"_count": 1}, "nest": {"_count": 1}, "murderous": {"_count": 1}, "contender": {"_count": 1}, "rickety": {"_count": 1}, "different": {"_count": 1}, "perfect": {"_count": 1}, "surprise": {"_count": 1}, "clear": {"_count": 1}, "heavily": {"_count": 1}, "Horcrux": {"_count": 1}, "pile": {"_count": 1}, "tower": {"_count": 1}, "trace": {"_count": 1}, "change": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 49, "largest": {"_count": 1}, "way": {"_count": 3}, "Weasleys": {"_count": 1}, "thing": {"_count": 1}, "page": {"_count": 2}, "rest": {"_count": 1}, "sight": {"_count": 2}, "diary": {"_count": 1}, "entrance": {"_count": 2}, "Improper": {"_count": 1}, "Slytherins": {"_count": 1}, "one": {"_count": 1}, "noise": {"_count": 1}, "right": {"_count": 1}, "lightningshaped": {"_count": 1}, "piece": {"_count": 1}, "Vanishing": {"_count": 1}, "whole": {"_count": 1}, "place": {"_count": 5}, "circular": {"_count": 1}, "new": {"_count": 1}, "written": {"_count": 1}, "headmasters": {"_count": 1}, "dead": {"_count": 1}, "very": {"_count": 1}, "necessity": {"_count": 1}, "man": {"_count": 1}, "thought": {"_count": 1}, "utmost": {"_count": 1}, "idea": {"_count": 1}, "Death": {"_count": 1}, "mood": {"_count": 1}, "ghoul": {"_count": 1}, "hot": {"_count": 1}, "Horcrux": {"_count": 1}, "need": {"_count": 1}, "crook": {"_count": 1}, "diadem": {"_count": 1}, "room": {"_count": 1}, "black": {"_count": 1}}, "their": {"_count": 5, "way": {"_count": 2}, "beds": {"_count": 1}, "lack": {"_count": 1}, "path": {"_count": 1}}, "his": {"_count": 21, "voice": {"_count": 7}, "way": {"_count": 3}, "Invisibility": {"_count": 1}, "scarlet": {"_count": 1}, "arm": {"_count": 1}, "own": {"_count": 1}, "throat": {"_count": 1}, "body": {"_count": 1}, "attentiveness": {"_count": 1}, "foot": {"_count": 1}, "glasses": {"_count": 1}, "nose": {"_count": 1}, "path": {"_count": 1}}, "himself": {"_count": 72, "out": {"_count": 1}, "shaking": {"_count": 1}, "on": {"_count": 2}, "being": {"_count": 4}, "facetoface": {"_count": 4}, "gripping": {"_count": 1}, "wishing": {"_count": 1}, "gazing": {"_count": 1}, "pinned": {"_count": 1}, "and": {"_count": 1}, "flat": {"_count": 1}, "behind": {"_count": 1}, "paralyzed": {"_count": 1}, "in": {"_count": 4}, "shouting": {"_count": 1}, "looking": {"_count": 1}, "sitting": {"_count": 2}, "somewhere": {"_count": 1}, "staring": {"_count": 5}, "facing": {"_count": 4}, "champion": {"_count": 1}, "thinking": {"_count": 3}, "jammed": {"_count": 1}, "daydreaming": {"_count": 1}, "walking": {"_count": 2}, "shunted": {"_count": 1}, "focusing": {"_count": 1}, "right": {"_count": 1}, "besieged": {"_count": 1}, "almost": {"_count": 2}, "a": {"_count": 2}, "kneeling": {"_count": 1}, "again": {"_count": 1}, "lying": {"_count": 1}, "hoping": {"_count": 1}, "able": {"_count": 1}, "three": {"_count": 1}, "trapped": {"_count": 1}, "once": {"_count": 1}, "remembering": {"_count": 1}, "wondering": {"_count": 1}, "longing": {"_count": 1}, "newly": {"_count": 1}, "backto": {"_count": 1}, "crammed": {"_count": 1}, "unable": {"_count": 1}, "taking": {"_count": 1}, "at": {"_count": 1}, "sliding": {"_count": 1}}, "in": {"_count": 8, "A": {"_count": 1}, "our": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 1}, "Moaning": {"_count": 1}, "Mongolia": {"_count": 1}, "bits": {"_count": 1}, "possession": {"_count": 1}}, "an": {"_count": 10, "empty": {"_count": 4}, "elderly": {"_count": 1}, "unpleasantlooking": {"_count": 1}, "antidote": {"_count": 1}, "unusually": {"_count": 1}, "incantation": {"_count": 1}, "object": {"_count": 1}}, "Ron": {"_count": 9, "just": {"_count": 1}, "and": {"_count": 4}, "at": {"_count": 1}, "being": {"_count": 1}, "was": {"_count": 1}, "perfectly": {"_count": 1}}, "him": {"_count": 23, "": {"_count": 6}, "he": {"_count": 2}, "Hagrid": {"_count": 1}, "on": {"_count": 2}, "inside": {"_count": 1}, "smuggling": {"_count": 1}, "was": {"_count": 1}, "attempting": {"_count": 1}, "lying": {"_count": 1}, "up": {"_count": 1}, "still": {"_count": 1}, "unconscious": {"_count": 1}, "and": {"_count": 2}, "said": {"_count": 1}, "grinning": {"_count": 1}}, "themselves": {"_count": 17, "in": {"_count": 7}, "at": {"_count": 2}, "facetoface": {"_count": 1}, "outside": {"_count": 2}, "unable": {"_count": 1}, "surrounded": {"_count": 1}, "becoming": {"_count": 1}, "the": {"_count": 1}, "looking": {"_count": 1}}, "them": {"_count": 7, "trying": {"_count": 1}, "": {"_count": 3}, "trolleys": {"_count": 1}, "chained": {"_count": 1}, "within": {"_count": 1}}, "something": {"_count": 2, "he": {"_count": 1}, "out": {"_count": 1}}, "you": {"_count": 5, "a": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "okay": {"_count": 1}, "guilty": {"_count": 1}}, "herself": {"_count": 2, "facing": {"_count": 1}, "facetoface": {"_count": 1}}, "me": {"_count": 5, "": {"_count": 1}, "Id": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 2}}, "this": {"_count": 9, "funny": {"_count": 1}, "one": {"_count": 1}, "at": {"_count": 1}, "stack": {"_count": 1}, "wand": {"_count": 1}, "such": {"_count": 1}, "story": {"_count": 1}, "an": {"_count": 1}, "very": {"_count": 1}}, "anything": {"_count": 3, "but": {"_count": 1}, "less": {"_count": 1}, "": {"_count": 1}}, "nothing": {"_count": 5, "": {"_count": 1}, "whatsoever": {"_count": 1}, "except": {"_count": 1}, "else": {"_count": 1}, "useful": {"_count": 1}}, "that": {"_count": 17, "he": {"_count": 9}, "the": {"_count": 3}, "it": {"_count": 1}, "Sirius": {"_count": 1}, "for": {"_count": 1}, "out": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "Flamel": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 3, "and": {"_count": 1}, "watching": {"_count": 1}, "downstairs": {"_count": 1}}, "Fang": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 5, "dead": {"_count": 1}, "with": {"_count": 1}, "single": {"_count": 1}, "": {"_count": 1}, "Horcrux": {"_count": 1}}, "Hagrid": {"_count": 1, "dont": {"_count": 1}}, "lurking": {"_count": 1, "in": {"_count": 1}}, "most": {"_count": 1, "unusual": {"_count": 1}}, "of": {"_count": 1, "getting": {"_count": 1}}, "Percy": {"_count": 1, "deeply": {"_count": 1}}, "late": {"_count": 1, "one": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 7, "never": {"_count": 1}, "had": {"_count": 2}, "didnt": {"_count": 2}, "could": {"_count": 1}, "was": {"_count": 1}}, "all": {"_count": 2, "this": {"_count": 1}, "three": {"_count": 1}}, "Watching": {"_count": 1, "Harry": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 2}, "Harrys": {"_count": 1}}, "her": {"_count": 7, "Harry": {"_count": 1}, "holding": {"_count": 1}, "emerging": {"_count": 1}, "sister": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "Mr": {"_count": 3, "Weasley": {"_count": 2}, "Crouch": {"_count": 1}}, "my": {"_count": 1, "badge": {"_count": 1}}, "excuses": {"_count": 1, "to": {"_count": 1}}, "Sir": {"_count": 1, "Cadogan": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "time": {"_count": 2, "ter": {"_count": 1}, "to": {"_count": 1}}, "some": {"_count": 1, "really": {"_count": 1}}, "Harry": {"_count": 6, "blocking": {"_count": 1}, "impertinent": {"_count": 1}, "Ron": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "Harrys": {"_count": 1, "throat": {"_count": 1}}, "was": {"_count": 1, "his": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 1}, "hidden": {"_count": 1}}, "level": {"_count": 1, "ground": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "Barty": {"_count": 1, "Crouchs": {"_count": 1}}, "extremely": {"_count": 1, "annoying": {"_count": 1}}, "upon": {"_count": 1, "arrival": {"_count": 1}}, "another": {"_count": 1, "way": {"_count": 1}}, "love": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "have": {"_count": 1}}, "oh": {"_count": 1, "come": {"_count": 1}}, "work": {"_count": 1, "sir": {"_count": 1}}, "myself": {"_count": 2, "in": {"_count": 1}, "out": {"_count": 1}}, "Myrtles": {"_count": 1, "outoforder": {"_count": 1}}, "solace": {"_count": 1, "in": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "you": {"_count": 1}}, "these": {"_count": 1, "instructions": {"_count": 1}}, "and": {"_count": 2, "felt": {"_count": 1}, "eliminated": {"_count": 1}}, "yourself": {"_count": 2, "equal": {"_count": 1}, "facetoface": {"_count": 1}}, "those": {"_count": 1, "names": {"_count": 1}}, "Dudleys": {"_count": 1, "massive": {"_count": 1}}, "at": {"_count": 3, "number": {"_count": 1}, "the": {"_count": 2}}, "spiders": {"_count": 1, "large": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "seats": {"_count": 3, "together": {"_count": 1}, "in": {"_count": 2}}, "inviting": {"_count": 1, "": {"_count": 1}}, "interesting": {"_count": 1, "": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 4}, "?": {"_count": 3}, "!": {"_count": 2}}, "five": {"_count": 1, "words": {"_count": 1}}, "if": {"_count": 1, "anything": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "antidotes": {"_count": 1, "to": {"_count": 1}}, "extra": {"_count": 1, "cleaning": {"_count": 1}}, "somewhere": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "practices": {"_count": 1}}, "ourselves": {"_count": 2, "a": {"_count": 1}, "another": {"_count": 1}}, "Karkus": {"_count": 1, "sittin": {"_count": 1}}, "three": {"_count": 2, "giants": {"_count": 1}, "that": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "there": {"_count": 1}}, "Arthur": {"_count": 1, "for": {"_count": 1}}, "Cho": {"_count": 1, "standing": {"_count": 1}}, "ways": {"_count": 1, "to": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "us": {"_count": 4, "a": {"_count": 1}, "": {"_count": 1}, "yesterday": {"_count": 1}, "in": {"_count": 1}}, "Montague": {"_count": 1, "sir": {"_count": 1}}, "helpful": {"_count": 1, "": {"_count": 1}}, "youd": {"_count": 1, "seen": {"_count": 1}}, "Potter": {"_count": 1, "using": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "Sirius": {"_count": 3, "Dont": {"_count": 1}, "learned": {"_count": 1}, "looking": {"_count": 1}}, "someones": {"_count": 1, "toes": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "Igor": {"_count": 1, "Karkaroffs": {"_count": 1}}, "our": {"_count": 1, "special": {"_count": 1}}, "Rons": {"_count": 1, "remark": {"_count": 1}}, "Slughorn": {"_count": 1, "why": {"_count": 1}}, "dead": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "its": {"_count": 1, "mark": {"_count": 1}}, "deeply": {"_count": 1, "amusing": {"_count": 1}}, "almost": {"_count": 1, "more": {"_count": 1}}, "steps": {"_count": 1, "that": {"_count": 1}}, "Madam": {"_count": 1, "Pince": {"_count": 1}}, "Tonks": {"_count": 1, "and": {"_count": 1}}, "Kreacher": {"_count": 1, "with": {"_count": 1}}, "Gregorovitch": {"_count": 2, "Hermione": {"_count": 1}, "": {"_count": 1}}, "bleak": {"_count": 1, "and": {"_count": 1}}, "Gryffindors": {"_count": 1, "sword": {"_count": 1}}, "glasses": {"_count": 1, "": {"_count": 1}}, "pavement": {"_count": 1, "and": {"_count": 1}}, "stuck": {"_count": 1, "to": {"_count": 1}}, "warm": {"_count": 1, "ground": {"_count": 1}}, "home": {"_count": 1, "here": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}}, "out": {"_count": 4313, "about": {"_count": 24, "the": {"_count": 9}, "us": {"_count": 1}, "our": {"_count": 1}, "poor": {"_count": 1}, "Winky": {"_count": 1}, "something": {"_count": 1}, "Hagrids": {"_count": 1}, "his": {"_count": 2}, "all": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 2}, "underage": {"_count": 1}, "them": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 188, "most": {"_count": 1}, "eyes": {"_count": 2}, "hand": {"_count": 38}, "leg": {"_count": 2}, "chest": {"_count": 4}, "wand": {"_count": 64}, "hands": {"_count": 5}, "tongue": {"_count": 3}, "own": {"_count": 8}, "arm": {"_count": 3}, "Spellotaped": {"_count": 1}, "wife": {"_count": 1}, "quill": {"_count": 2}, "copy": {"_count": 2}, "cheeks": {"_count": 1}, "real": {"_count": 1}, "soul": {"_count": 1}, "Firebolt": {"_count": 1}, "ear": {"_count": 1}, "bedroom": {"_count": 1}, "children": {"_count": 1}, "watch": {"_count": 1}, "Omnioculars": {"_count": 1}, "maroon": {"_count": 1}, "wooden": {"_count": 2}, "expression": {"_count": 1}, "arms": {"_count": 2}, "hip": {"_count": 1}, "sons": {"_count": 1}, "breath": {"_count": 1}, "forearm": {"_count": 1}, "Triwizard": {"_count": 1}, "eye": {"_count": 1}, "plans": {"_count": 1}, "freshly": {"_count": 1}, "cloth": {"_count": 1}, "usual": {"_count": 1}, "dream": {"_count": 1}, "Potions": {"_count": 1}, "good": {"_count": 1}, "right": {"_count": 2}, "book": {"_count": 1}, "legs": {"_count": 1}, "loudest": {"_count": 1}, "money": {"_count": 1}, "Invisibility": {"_count": 2}, "foot": {"_count": 1}, "round": {"_count": 1}, "enormous": {"_count": 1}, "weaknesses": {"_count": 1}, "trusty": {"_count": 1}, "large": {"_count": 1}, "invitation": {"_count": 1}, "mothers": {"_count": 1}, "fingers": {"_count": 1}, "left": {"_count": 1}, "thin": {"_count": 1}, "grand": {"_count": 1}, "and": {"_count": 1}, "fake": {"_count": 1}, "free": {"_count": 1}, "heart": {"_count": 1}}, "of": {"_count": 1870, "number": {"_count": 1}, "his": {"_count": 211}, "the": {"_count": 777}, "their": {"_count": 35}, "bed": {"_count": 29}, "hand": {"_count": 5}, "Uncle": {"_count": 3}, "him": {"_count": 20}, "sight": {"_count": 135}, "these": {"_count": 2}, "control": {"_count": 5}, "London": {"_count": 1}, "a": {"_count": 44}, "them": {"_count": 11}, "it": {"_count": 58}, "line": {"_count": 4}, "me": {"_count": 4}, "an": {"_count": 2}, "bounds": {"_count": 2}, "Hogwarts": {"_count": 9}, "earshot": {"_count": 18}, "Flitwicks": {"_count": 1}, "Gryffindor": {"_count": 1}, "breath": {"_count": 9}, "trouble": {"_count": 10}, "Gringotts": {"_count": 1}, "place": {"_count": 5}, "its": {"_count": 18}, "nowhere": {"_count": 24}, "her": {"_count": 62}, "here": {"_count": 37}, "thin": {"_count": 22}, "your": {"_count": 21}, "Harrys": {"_count": 12}, "reach": {"_count": 6}, "this": {"_count": 20}, "my": {"_count": 14}, "Hagrids": {"_count": 2}, "Rons": {"_count": 4}, "step": {"_count": 1}, "Colins": {"_count": 1}, "Malfoy": {"_count": 1}, "Ernies": {"_count": 1}, "school": {"_count": 11}, "dull": {"_count": 1}, "stone": {"_count": 1}, "respect": {"_count": 1}, "those": {"_count": 4}, "Ginny": {"_count": 1}, "focus": {"_count": 7}, "there": {"_count": 5}, "you": {"_count": 9}, "life": {"_count": 1}, "Azkaban": {"_count": 14}, "most": {"_count": 1}, "ten": {"_count": 3}, "Stink": {"_count": 1}, "turn": {"_count": 1}, "em": {"_count": 1}, "other": {"_count": 1}, "punishment": {"_count": 1}, "action": {"_count": 3}, "Professor": {"_count": 1}, "nerves": {"_count": 2}, "view": {"_count": 1}, "three": {"_count": 2}, "Pettigrews": {"_count": 2}, "harms": {"_count": 3}, "wizard": {"_count": 1}, "concern": {"_count": 1}, "Freds": {"_count": 1}, "Georges": {"_count": 2}, "Malfoys": {"_count": 1}, "weathered": {"_count": 1}, "retirement": {"_count": 4}, "ideas": {"_count": 1}, "Honeydukes": {"_count": 1}, "Hermione": {"_count": 4}, "Winky": {"_count": 2}, "water": {"_count": 1}, "Hagrid": {"_count": 1}, "one": {"_count": 3}, "Myrtles": {"_count": 1}, "swollen": {"_count": 1}, "fifty": {"_count": 1}, "Hogsmeade": {"_count": 2}, "anger": {"_count": 1}, "Moodys": {"_count": 1}, "habit": {"_count": 2}, "luck": {"_count": 1}, "loyalty": {"_count": 1}, "fear": {"_count": 1}, "hiding": {"_count": 3}, "Voldemorts": {"_count": 2}, "office": {"_count": 1}, "that": {"_count": 11}, "Mrs": {"_count": 1}, "pure": {"_count": 1}, "order": {"_count": 5}, "cubicles": {"_count": 1}, "Kingsleys": {"_count": 1}, "Muggle": {"_count": 1}, "very": {"_count": 1}, "tune": {"_count": 1}, "anyone": {"_count": 1}, "relief": {"_count": 1}, "books": {"_count": 1}, "showing": {"_count": 1}, "class": {"_count": 1}, "Divination": {"_count": 1}, "flying": {"_count": 1}, "Bludger": {"_count": 1}, "Fangs": {"_count": 1}, "date": {"_count": 2}, "Snape": {"_count": 2}, "every": {"_count": 1}, "irritation": {"_count": 1}, "sheer": {"_count": 1}, "course": {"_count": 1}, "business": {"_count": 1}, "students": {"_count": 1}, "Grimmauld": {"_count": 2}, "blackboards": {"_count": 1}, "windows": {"_count": 2}, "trees": {"_count": 1}, "temper": {"_count": 1}, "time": {"_count": 1}, "anguish": {"_count": 1}, "midair": {"_count": 2}, "Look": {"_count": 1}, "They": {"_count": 1}, "Dubbledorel": {"_count": 1}, "fireplaces": {"_count": 2}, "people": {"_count": 2}, "jail": {"_count": 1}, "arms": {"_count": 1}, "touch": {"_count": 1}, "interest": {"_count": 1}, "Herbology": {"_count": 1}, "five": {"_count": 1}, "another": {"_count": 2}, "fashion": {"_count": 1}, "McGonagalls": {"_count": 1}, "hours": {"_count": 2}, "what": {"_count": 1}, "reluctant": {"_count": 1}, "curiosity": {"_count": 1}, "Lucius": {"_count": 1}, "Slughorn": {"_count": 1}, "St": {"_count": 1}, "both": {"_count": 1}, "Dumbledores": {"_count": 1}, "trances": {"_count": 1}, "someone": {"_count": 2}, "nothing": {"_count": 2}, "somebody": {"_count": 1}, "Dumbledore": {"_count": 1}, "Kreachers": {"_count": 1}, "Scrimgeour": {"_count": 1}, "somebodys": {"_count": 1}, "Umbridge": {"_count": 1}, "whose": {"_count": 1}, "road": {"_count": 1}, "shame": {"_count": 1}, "being": {"_count": 1}, "someones": {"_count": 1}, "themselves": {"_count": 1}, "Harry": {"_count": 1}, "range": {"_count": 2}, "vain": {"_count": 1}}, "that": {"_count": 42, "they": {"_count": 2}, "dangerous": {"_count": 1}, "he": {"_count": 8}, "grubby": {"_count": 1}, "trouble": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 1}, "Harry": {"_count": 2}, "hed": {"_count": 1}, "everyone": {"_count": 1}, "Sirius": {"_count": 1}, "egg": {"_count": 3}, "one": {"_count": 1}, "in": {"_count": 2}, "Hagrid": {"_count": 2}, "Rons": {"_count": 1}, "fire": {"_count": 1}, "I": {"_count": 1}, "Voldemort": {"_count": 2}, "for": {"_count": 1}, "hes": {"_count": 1}, "boggart": {"_count": 1}, "Dolores": {"_count": 1}, "there": {"_count": 1}, "warning": {"_count": 1}, "late": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "with": {"_count": 42, "a": {"_count": 10}, "their": {"_count": 1}, "his": {"_count": 2}, "its": {"_count": 2}, "difficulty": {"_count": 1}, "me": {"_count": 5}, "work": {"_count": 1}, "Dumbledore": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "Ginny": {"_count": 2}, "my": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 4}, "you": {"_count": 1}, "someone": {"_count": 1}, "the": {"_count": 2}, "several": {"_count": 1}, "or": {"_count": 1}, "McLaggen": {"_count": 1}, "her": {"_count": 1}, "some": {"_count": 1}}, "on": {"_count": 35, "the": {"_count": 16}, "his": {"_count": 4}, "to": {"_count": 1}, "Colin": {"_count": 1}, "top": {"_count": 1}, "Professor": {"_count": 1}, "a": {"_count": 3}, "strike": {"_count": 1}, "Lupins": {"_count": 1}, "McLaggen": {"_count": 1}, "Mad": {"_count": 1}, "you": {"_count": 2}, "them": {"_count": 1}, "foot": {"_count": 1}}, "and": {"_count": 72, "patted": {"_count": 1}, "had": {"_count": 1}, "as": {"_count": 2}, "a": {"_count": 3}, "asked": {"_count": 1}, "grasping": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}, "look": {"_count": 1}, "he": {"_count": 3}, "took": {"_count": 2}, "Mr": {"_count": 1}, "read": {"_count": 1}, "they": {"_count": 2}, "ahead": {"_count": 1}, "Pettigrew": {"_count": 1}, "Ill": {"_count": 1}, "were": {"_count": 1}, "every": {"_count": 1}, "it": {"_count": 2}, "stared": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 2}, "was": {"_count": 3}, "by": {"_count": 1}, "to": {"_count": 3}, "seized": {"_count": 1}, "play": {"_count": 1}, "so": {"_count": 1}, "turned": {"_count": 1}, "burst": {"_count": 1}, "never": {"_count": 1}, "went": {"_count": 2}, "about": {"_count": 3}, "laying": {"_count": 1}, "leave": {"_count": 1}, "began": {"_count": 2}, "after": {"_count": 1}, "grab": {"_count": 1}, "how": {"_count": 1}, "looked": {"_count": 1}, "follow": {"_count": 1}, "pointing": {"_count": 1}, "showed": {"_count": 1}, "got": {"_count": 1}, "tapped": {"_count": 1}, "poisoned": {"_count": 1}, "I": {"_count": 1}, "rolled": {"_count": 1}, "promising": {"_count": 1}, "opened": {"_count": 1}, "kill": {"_count": 1}, "throw": {"_count": 1}, "gazed": {"_count": 1}, "its": {"_count": 1}}, "a": {"_count": 244, "lace": {"_count": 1}, "howl": {"_count": 3}, "large": {"_count": 6}, "tabby": {"_count": 1}, "hammer": {"_count": 1}, "very": {"_count": 2}, "handful": {"_count": 2}, "long": {"_count": 11}, "fat": {"_count": 1}, "lumpy": {"_count": 1}, "horrible": {"_count": 1}, "frightened": {"_count": 1}, "bright": {"_count": 1}, "faint": {"_count": 1}, "twelvefoot": {"_count": 1}, "list": {"_count": 1}, "hand": {"_count": 16}, "Chocolate": {"_count": 1}, "little": {"_count": 5}, "terrible": {"_count": 3}, "great": {"_count": 5}, "blood": {"_count": 1}, "bellow": {"_count": 2}, "low": {"_count": 5}, "few": {"_count": 5}, "shaking": {"_count": 1}, "mile": {"_count": 1}, "gasp": {"_count": 2}, "snort": {"_count": 2}, "book": {"_count": 2}, "piteous": {"_count": 1}, "steaming": {"_count": 1}, "couple": {"_count": 1}, "pudgy": {"_count": 1}, "squeal": {"_count": 1}, "quill": {"_count": 1}, "letter": {"_count": 1}, "belt": {"_count": 1}, "bottle": {"_count": 2}, "small": {"_count": 8}, "highpitched": {"_count": 2}, "bit": {"_count": 6}, "ray": {"_count": 1}, "shriek": {"_count": 3}, "crumpled": {"_count": 1}, "bony": {"_count": 1}, "scream": {"_count": 4}, "pair": {"_count": 2}, "notebook": {"_count": 2}, "derisive": {"_count": 2}, "new": {"_count": 1}, "hip": {"_count": 1}, "register": {"_count": 1}, "glass": {"_count": 2}, "yell": {"_count": 5}, "badge": {"_count": 1}, "terrified": {"_count": 1}, "whimper": {"_count": 1}, "fresh": {"_count": 2}, "moan": {"_count": 1}, "short": {"_count": 2}, "tiny": {"_count": 3}, "roar": {"_count": 4}, "shrill": {"_count": 1}, "sputter": {"_count": 1}, "particularly": {"_count": 1}, "folded": {"_count": 2}, "picture": {"_count": 1}, "ball": {"_count": 1}, "laugh": {"_count": 1}, "subscription": {"_count": 1}, "mouthful": {"_count": 1}, "face": {"_count": 1}, "wand": {"_count": 3}, "cry": {"_count": 1}, "piercing": {"_count": 1}, "wail": {"_count": 4}, "vehement": {"_count": 1}, "kind": {"_count": 1}, "pack": {"_count": 1}, "clean": {"_count": 1}, "grimy": {"_count": 1}, "chair": {"_count": 1}, "yelp": {"_count": 1}, "moldy": {"_count": 1}, "countercharm": {"_count": 1}, "leg": {"_count": 2}, "huge": {"_count": 1}, "strategy": {"_count": 2}, "pattern": {"_count": 1}, "piece": {"_count": 2}, "shriveled": {"_count": 1}, "screech": {"_count": 1}, "hearty": {"_count": 1}, "broom": {"_count": 1}, "struggling": {"_count": 1}, "cheer": {"_count": 1}, "bark": {"_count": 1}, "stream": {"_count": 1}, "pile": {"_count": 1}, "placatory": {"_count": 1}, "real": {"_count": 1}, "raucous": {"_count": 1}, "warning": {"_count": 1}, "noise": {"_count": 2}, "cackle": {"_count": 2}, "hairraising": {"_count": 1}, "sticky": {"_count": 1}, "singularly": {"_count": 1}, "mad": {"_count": 1}, "girls": {"_count": 1}, "lot": {"_count": 1}, "shout": {"_count": 1}, "scroll": {"_count": 2}, "hoselike": {"_count": 1}, "handkerchief": {"_count": 1}, "ghostly": {"_count": 1}, "box": {"_count": 1}, "loud": {"_count": 2}, "rather": {"_count": 1}, "longfingered": {"_count": 1}, "hastily": {"_count": 1}, "deafening": {"_count": 1}, "card": {"_count": 1}, "strangled": {"_count": 1}, "reluctant": {"_count": 1}, "tooth": {"_count": 1}, "mirthless": {"_count": 1}, "drawstring": {"_count": 1}, "consoling": {"_count": 1}, "set": {"_count": 1}, "way": {"_count": 2}, "chamber": {"_count": 1}, "fellow": {"_count": 1}, "trembling": {"_count": 1}, "worn": {"_count": 1}, "slightly": {"_count": 1}, "number": {"_count": 1}, "pale": {"_count": 1}, "bulllike": {"_count": 1}}, "all": {"_count": 10, "right": {"_count": 1}, "the": {"_count": 1}, "lined": {"_count": 1}, "of": {"_count": 1}, "week": {"_count": 1}, "light": {"_count": 1}, "his": {"_count": 1}, "thought": {"_count": 1}, "their": {"_count": 1}, "my": {"_count": 1}}, "": {"_count": 230, ".": {"_count": 178}, "!": {"_count": 25}, "?": {"_count": 27}}, "the": {"_count": 146, "silver": {"_count": 1}, "milk": {"_count": 1}, "letter": {"_count": 4}, "pink": {"_count": 1}, "House": {"_count": 2}, "fourth": {"_count": 1}, "look": {"_count": 1}, "moment": {"_count": 1}, "better": {"_count": 1}, "cloak": {"_count": 1}, "test": {"_count": 1}, "sheaf": {"_count": 1}, "piece": {"_count": 1}, "twisted": {"_count": 1}, "cakes": {"_count": 1}, "name": {"_count": 3}, "spiders": {"_count": 1}, "first": {"_count": 1}, "Hogsmeade": {"_count": 1}, "bedpans": {"_count": 2}, "map": {"_count": 2}, "hand": {"_count": 1}, "hump": {"_count": 1}, "bag": {"_count": 1}, "window": {"_count": 3}, "back": {"_count": 4}, "truth": {"_count": 1}, "possibility": {"_count": 1}, "Willow": {"_count": 1}, "contents": {"_count": 1}, "Marauders": {"_count": 6}, "old": {"_count": 2}, "ghostly": {"_count": 1}, "Wronski": {"_count": 2}, "trouble": {"_count": 1}, "color": {"_count": 1}, "miniature": {"_count": 1}, "scarlet": {"_count": 1}, "Hungarian": {"_count": 1}, "dragon": {"_count": 1}, "marks": {"_count": 1}, "clue": {"_count": 3}, "Sneakoscope": {"_count": 1}, "empty": {"_count": 1}, "clues": {"_count": 2}, "secret": {"_count": 1}, "best": {"_count": 1}, "fascinating": {"_count": 1}, "company": {"_count": 1}, "outline": {"_count": 1}, "wad": {"_count": 1}, "eggs": {"_count": 1}, "chair": {"_count": 1}, "Muggles": {"_count": 1}, "cards": {"_count": 1}, "neighbors": {"_count": 1}, "kitchen": {"_count": 1}, "list": {"_count": 1}, "instructions": {"_count": 1}, "note": {"_count": 2}, "offending": {"_count": 1}, "wrong": {"_count": 1}, "words": {"_count": 3}, "final": {"_count": 1}, "sound": {"_count": 1}, "firs": {"_count": 1}, "cushions": {"_count": 1}, "Christmas": {"_count": 1}, "front": {"_count": 1}, "word": {"_count": 1}, "L": {"_count": 1}, "golden": {"_count": 1}, "deed": {"_count": 1}, "stopper": {"_count": 1}, "correct": {"_count": 1}, "tiny": {"_count": 5}, "remainder": {"_count": 1}, "rolledup": {"_count": 1}, "remarkable": {"_count": 1}, "crimes": {"_count": 1}, "snake": {"_count": 1}, "finer": {"_count": 1}, "distant": {"_count": 1}, "tips": {"_count": 1}, "stars": {"_count": 1}, "fragment": {"_count": 1}, "chickens": {"_count": 1}, "oven": {"_count": 1}, "story": {"_count": 1}, "fake": {"_count": 2}, "lights": {"_count": 2}, "newcomer": {"_count": 1}, "paper": {"_count": 1}, "Invisibility": {"_count": 3}, "tent": {"_count": 1}, "food": {"_count": 1}, "sword": {"_count": 1}, "point": {"_count": 1}, "wand": {"_count": 2}, "drink": {"_count": 1}, "stone": {"_count": 1}, "indistinct": {"_count": 1}, "wide": {"_count": 1}, "other": {"_count": 1}, "two": {"_count": 2}, "symbol": {"_count": 1}, "stillvoluble": {"_count": 1}, "beaded": {"_count": 1}, "ceiling": {"_count": 1}, "little": {"_count": 1}}, "today": {"_count": 3, "": {"_count": 2}, "it": {"_count": 1}}, "for": {"_count": 50, "the": {"_count": 8}, "Peeves": {"_count": 1}, "ourselves": {"_count": 1}, "sure": {"_count": 1}, "Snape": {"_count": 1}, "several": {"_count": 1}, "exercise": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 2}, "it": {"_count": 3}, "your": {"_count": 1}, "news": {"_count": 1}, "Crookshanks": {"_count": 1}, "his": {"_count": 1}, "Barty": {"_count": 1}, "Fred": {"_count": 1}, "yourself": {"_count": 2}, "universal": {"_count": 1}, "herself": {"_count": 1}, "tea": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "Gryffindor": {"_count": 1}, "us": {"_count": 1}, "St": {"_count": 1}, "snakes": {"_count": 1}, "Chaser": {"_count": 1}, "good": {"_count": 1}, "her": {"_count": 1}, "myself": {"_count": 1}, "at": {"_count": 1}, "me": {"_count": 1}, "something": {"_count": 1}, "trout": {"_count": 1}, "you": {"_count": 2}, "Krum": {"_count": 1}, "Godrics": {"_count": 1}, "them": {"_count": 1}}, "onto": {"_count": 37, "the": {"_count": 33}, "rocks": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 1}}, "shopping": {"_count": 2, "with": {"_count": 2}}, "what": {"_count": 51, "hed": {"_count": 1}, "they": {"_count": 2}, "Snape": {"_count": 1}, "hes": {"_count": 2}, "theyd": {"_count": 1}, "would": {"_count": 2}, "had": {"_count": 2}, "appeared": {"_count": 2}, "it": {"_count": 6}, "I": {"_count": 1}, "we": {"_count": 3}, "she": {"_count": 1}, "the": {"_count": 6}, "his": {"_count": 1}, "was": {"_count": 4}, "old": {"_count": 1}, "her": {"_count": 1}, "looked": {"_count": 2}, "happened": {"_count": 1}, "youve": {"_count": 1}, "Malfoy": {"_count": 5}, "Malfoys": {"_count": 3}, "Draco": {"_count": 1}, "Skeeters": {"_count": 1}}, "shed": {"_count": 1, "broken": {"_count": 1}}, "both": {"_count": 2, "of": {"_count": 1}, "hands": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "at": {"_count": 60, "sea": {"_count": 1}, "last": {"_count": 2}, "odd": {"_count": 2}, "the": {"_count": 20}, "once": {"_count": 4}, "night": {"_count": 5}, "him": {"_count": 6}, "them": {"_count": 4}, "unsuspecting": {"_count": 1}, "her": {"_count": 2}, "Harry": {"_count": 1}, "a": {"_count": 1}, "Buckbeak": {"_count": 1}, "Kings": {"_count": 1}, "this": {"_count": 1}, "us": {"_count": 1}, "your": {"_count": 1}, "you": {"_count": 1}, "weekends": {"_count": 1}, "moonlit": {"_count": 1}, "its": {"_count": 1}, "all": {"_count": 1}, "an": {"_count": 1}}, "to": {"_count": 89, "be": {"_count": 27}, "the": {"_count": 2}, "touch": {"_count": 2}, "all": {"_count": 1}, "use": {"_count": 1}, "Ron": {"_count": 5}, "inspect": {"_count": 1}, "break": {"_count": 1}, "Azkaban": {"_count": 2}, "watch": {"_count": 1}, "sea": {"_count": 1}, "do": {"_count": 1}, "Hermione": {"_count": 1}, "rejoin": {"_count": 1}, "show": {"_count": 1}, "return": {"_count": 1}, "discuss": {"_count": 1}, "explore": {"_count": 1}, "meet": {"_count": 5}, "her": {"_count": 1}, "cure": {"_count": 1}, "stroke": {"_count": 1}, "see": {"_count": 1}, "his": {"_count": 1}, "face": {"_count": 1}, "speak": {"_count": 1}, "collect": {"_count": 1}, "them": {"_count": 2}, "hunt": {"_count": 1}, "buy": {"_count": 1}, "Harry": {"_count": 1}, "have": {"_count": 3}, "each": {"_count": 1}, "Umbridge": {"_count": 1}, "kill": {"_count": 1}, "your": {"_count": 1}, "him": {"_count": 4}, "take": {"_count": 1}, "track": {"_count": 1}, "enjoy": {"_count": 1}, "place": {"_count": 1}, "relay": {"_count": 1}, "capture": {"_count": 1}, "join": {"_count": 1}, "unseen": {"_count": 1}, "find": {"_count": 1}}, "an": {"_count": 24, "enormous": {"_count": 3}, "thats": {"_count": 1}, "all": {"_count": 1}, "practice": {"_count": 1}, "arrow": {"_count": 1}, "made": {"_count": 1}, "arm": {"_count": 7}, "audible": {"_count": 2}, "obliging": {"_count": 1}, "ominous": {"_count": 1}, "earsplitting": {"_count": 1}, "involuntary": {"_count": 1}, "unknown": {"_count": 1}, "exclamation": {"_count": 1}, "ear": {"_count": 1}}, "loud": {"_count": 8, "": {"_count": 5}, "with": {"_count": 1}, "\u2018Dear": {"_count": 1}, "enabled": {"_count": 1}}, "into": {"_count": 71, "the": {"_count": 59}, "a": {"_count": 7}, "Paddington": {"_count": 1}, "bright": {"_count": 1}, "open": {"_count": 1}, "weak": {"_count": 1}, "that": {"_count": 1}}, "there": {"_count": 34, "bidin": {"_count": 2}, "somewhere": {"_count": 4}, "": {"_count": 7}, "Ron": {"_count": 1}, "looking": {"_count": 1}, "in": {"_count": 1}, "too": {"_count": 1}, "and": {"_count": 3}, "doing": {"_count": 1}, "skulking": {"_count": 1}, "on": {"_count": 1}, "risking": {"_count": 1}, "Mr": {"_count": 1}, "watching": {"_count": 1}, "would": {"_count": 1}, "bullying": {"_count": 1}, "who": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 1}, "theyre": {"_count": 1}, "now": {"_count": 1}}, "five": {"_count": 1, "little": {"_count": 1}}, "even": {"_count": 4, "if": {"_count": 2}, "though": {"_count": 1}, "more": {"_count": 1}}, "Harry": {"_count": 14, "wouldnt": {"_count": 1}, "Potter": {"_count": 3}, "": {"_count": 3}, "heard": {"_count": 1}, "said": {"_count": 3}, "hurried": {"_count": 1}, "felt": {"_count": 1}, "had": {"_count": 1}}, "from": {"_count": 76, "behind": {"_count": 30}, "under": {"_count": 25}, "the": {"_count": 7}, "between": {"_count": 3}, "his": {"_count": 2}, "either": {"_count": 1}, "what": {"_count": 1}, "beneath": {"_count": 2}, "around": {"_count": 1}, "inside": {"_count": 1}, "underneath": {"_count": 3}}, "how": {"_count": 35, "to": {"_count": 18}, "the": {"_count": 2}, "badly": {"_count": 1}, "far": {"_count": 1}, "much": {"_count": 3}, "you": {"_count": 1}, "all": {"_count": 1}, "she": {"_count": 2}, "were": {"_count": 2}, "airplanes": {"_count": 1}, "they": {"_count": 1}, "his": {"_count": 1}, "brakes": {"_count": 1}}, "your": {"_count": 20, "arm": {"_count": 2}, "right": {"_count": 1}, "wand": {"_count": 3}, "dementor": {"_count": 1}, "pockets": {"_count": 2}, "name": {"_count": 2}, "quills": {"_count": 1}, "score": {"_count": 1}, "temper": {"_count": 1}, "ears": {"_count": 1}, "mouth": {"_count": 1}, "books": {"_count": 1}, "house": {"_count": 1}, "room": {"_count": 1}, "Mudblood": {"_count": 1}}, "her": {"_count": 38, "handkerchief": {"_count": 1}, "wand": {"_count": 17}, "washing": {"_count": 1}, "curtains": {"_count": 1}, "mirror": {"_count": 1}, "soul": {"_count": 1}, "new": {"_count": 1}, "leg": {"_count": 4}, "forefinger": {"_count": 1}, "QuickQuotes": {"_count": 1}, "hand": {"_count": 1}, "head": {"_count": 1}, "short": {"_count": 1}, "team": {"_count": 1}, "foot": {"_count": 1}, "books": {"_count": 1}, "hands": {"_count": 1}, "palm": {"_count": 1}, "life": {"_count": 1}}, "everything": {"_count": 4, "I": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 1}}, "some": {"_count": 2, "wizarding": {"_count": 1}, "stuff": {"_count": 1}}, "now": {"_count": 6, "said": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 2}, "while": {"_count": 1}}, "Ron": {"_count": 11, "said": {"_count": 2}, "whispered": {"_count": 2}, "because": {"_count": 1}, "he": {"_count": 1}, "or": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 2}, "went": {"_count": 1}}, "like": {"_count": 2, "little": {"_count": 1}, "this": {"_count": 1}}, "than": {"_count": 2, "waving": {"_count": 1}, "in": {"_count": 1}}, "saying": {"_count": 1, "Back": {"_count": 1}}, "if": {"_count": 7, "you": {"_count": 3}, "its": {"_count": 1}, "he": {"_count": 1}, "Im": {"_count": 1}, "Snape": {"_count": 1}}, "behind": {"_count": 6, "him": {"_count": 3}, "them": {"_count": 2}, "yeh": {"_count": 1}}, "cursing": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 10, "and": {"_count": 2}, "for": {"_count": 2}, "in": {"_count": 1}, "biding": {"_count": 1}, "tonight": {"_count": 1}, "youre": {"_count": 1}, "looking": {"_count": 1}, "Harry": {"_count": 1}}, "near": {"_count": 1, "their": {"_count": 1}}, "where": {"_count": 11, "the": {"_count": 4}, "he": {"_count": 3}, "most": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "Voldemort": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "sweets": {"_count": 2, "": {"_count": 2}}, "somehow": {"_count": 2, "and": {"_count": 1}, "this": {"_count": 1}}, "in": {"_count": 69, "the": {"_count": 31}, "one": {"_count": 1}, "front": {"_count": 12}, "a": {"_count": 4}, "ten": {"_count": 1}, "these": {"_count": 1}, "very": {"_count": 1}, "mountains": {"_count": 1}, "silence": {"_count": 1}, "public": {"_count": 3}, "boils": {"_count": 1}, "caves": {"_count": 1}, "turn": {"_count": 1}, "no": {"_count": 1}, "you": {"_count": 1}, "rows": {"_count": 1}, "his": {"_count": 2}, "case": {"_count": 1}, "favor": {"_count": 1}, "my": {"_count": 1}, "patches": {"_count": 1}, "pain": {"_count": 1}}, "something": {"_count": 6, "about": {"_count": 2}, "else": {"_count": 1}, "with": {"_count": 1}, "purple": {"_count": 1}, "to": {"_count": 1}}, "powdered": {"_count": 1, "spine": {"_count": 1}}, "who": {"_count": 16, "he": {"_count": 3}, "Flamel": {"_count": 1}, "Nicolas": {"_count": 1}, "did": {"_count": 2}, "threw": {"_count": 1}, "shouldnt": {"_count": 1}, "Ravenclaw": {"_count": 1}, "was": {"_count": 2}, "she": {"_count": 1}, "it": {"_count": 1}, "theyve": {"_count": 1}, "struck": {"_count": 1}}, "then": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "turned": {"_count": 1}, "well": {"_count": 1}}, "after": {"_count": 7, "training": {"_count": 1}, "that": {"_count": 1}, "her": {"_count": 1}, "about": {"_count": 1}, "he": {"_count": 2}, "what": {"_count": 1}}, "Gryffindor": {"_count": 1, "cant": {"_count": 1}}, "cold": {"_count": 6, "but": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}, "kept": {"_count": 1}}, "one": {"_count": 7, "afternoon": {"_count": 1}, "arm": {"_count": 1}, "of": {"_count": 3}, "soft": {"_count": 1}, "last": {"_count": 1}}, "he": {"_count": 18, "was": {"_count": 5}, "told": {"_count": 1}, "won": {"_count": 1}, "will": {"_count": 1}, "croaked": {"_count": 1}, "said": {"_count": 4}, "had": {"_count": 1}, "didn": {"_count": 1}, "knew": {"_count": 2}, "attacked": {"_count": 1}}, "livid": {"_count": 1, "on": {"_count": 1}}, "angrily": {"_count": 2, "": {"_count": 1}, "glaring": {"_count": 1}}, "again": {"_count": 20, "he": {"_count": 1}, "": {"_count": 13}, "as": {"_count": 1}, "screaming": {"_count": 1}, "soon": {"_count": 1}, "just": {"_count": 1}, "dragging": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 20, "Neville": {"_count": 1}, "George": {"_count": 1}, "Ron": {"_count": 1}, "Stan": {"_count": 1}, "Mr": {"_count": 1}, "a": {"_count": 2}, "Lupin": {"_count": 1}, "Harry": {"_count": 3}, "Gordon": {"_count": 1}, "Fred": {"_count": 2}, "Ginny": {"_count": 1}, "Hagrid": {"_count": 1}, "Alicia": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 2}}, "mountain": {"_count": 1, "trolls": {"_count": 1}}, "but": {"_count": 14, "he": {"_count": 2}, "it": {"_count": 1}, "she": {"_count": 1}, "were": {"_count": 1}, "after": {"_count": 2}, "then": {"_count": 2}, "as": {"_count": 1}, "thought": {"_count": 1}, "at": {"_count": 1}, "when": {"_count": 1}, "this": {"_count": 1}}, "over": {"_count": 22, "breakfast": {"_count": 1}, "the": {"_count": 15}, "his": {"_count": 1}, "my": {"_count": 2}, "one": {"_count": 1}, "a": {"_count": 1}, "all": {"_count": 1}}, "Hermiones": {"_count": 1, "neat": {"_count": 1}}, "they": {"_count": 3, "11": {"_count": 1}, "had": {"_count": 1}, "scattered": {"_count": 1}}, "asking": {"_count": 2, "for": {"_count": 1}, "people": {"_count": 1}}, "because": {"_count": 4, "the": {"_count": 2}, "there": {"_count": 1}, "Mary": {"_count": 1}}, "either": {"_count": 1, "We": {"_count": 1}}, "too": {"_count": 6, "early": {"_count": 1}, "and": {"_count": 1}, "some": {"_count": 1}, "": {"_count": 2}, "much": {"_count": 1}}, "more": {"_count": 12, "Dark": {"_count": 2}, "about": {"_count": 6}, "": {"_count": 2}, "than": {"_count": 1}, "voices": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "by": {"_count": 15, "the": {"_count": 7}, "a": {"_count": 2}, "Amos": {"_count": 1}, "Ministry": {"_count": 1}, "now": {"_count": 2}, "Filch": {"_count": 1}, "other": {"_count": 1}}, "course": {"_count": 1, "schedules": {"_count": 1}}, "sound": {"_count": 1, "completely": {"_count": 1}}, "signed": {"_count": 6, "photos": {"_count": 5}, "pictures": {"_count": 1}}, "their": {"_count": 13, "broomsticks": {"_count": 1}, "books": {"_count": 2}, "legs": {"_count": 1}, "faces": {"_count": 1}, "copies": {"_count": 2}, "wands": {"_count": 2}, "desks": {"_count": 1}, "heads": {"_count": 1}, "mallowsweet": {"_count": 1}, "time": {"_count": 1}}, "last": {"_count": 3, "month": {"_count": 1}, "night": {"_count": 1}, "year": {"_count": 1}}, "why": {"_count": 2, "any": {"_count": 1}, "": {"_count": 1}}, "There": {"_count": 2, "you": {"_count": 1}, "was": {"_count": 1}}, "Veronica": {"_count": 1, "Smethleys": {"_count": 1}}, "this": {"_count": 6, "time": {"_count": 1}, "evening": {"_count": 1}, "is": {"_count": 1}, "conclusion": {"_count": 1}, "morning": {"_count": 1}, "house": {"_count": 1}}, "she": {"_count": 6, "said": {"_count": 1}, "went": {"_count": 1}, "told": {"_count": 1}, "swore": {"_count": 1}, "had": {"_count": 2}}, "youngsters": {"_count": 1, "who": {"_count": 1}}, "Dark": {"_count": 1, "wizards": {"_count": 1}}, "you": {"_count": 10, "might": {"_count": 1}, "were": {"_count": 2}, "cant": {"_count": 1}, "two": {"_count": 1}, "know": {"_count": 2}, "see": {"_count": 1}, "helped": {"_count": 1}, "only": {"_count": 1}}, "fine": {"_count": 1, "she": {"_count": 1}}, "looking": {"_count": 2, "embarrassed": {"_count": 1}, "slightly": {"_count": 1}}, "whether": {"_count": 7, "hed": {"_count": 1}, "youve": {"_count": 1}, "theyve": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "youd": {"_count": 1}, "or": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "whos": {"_count": 1, "doing": {"_count": 1}}, "weve": {"_count": 2, "got": {"_count": 2}}, "youve": {"_count": 2, "got": {"_count": 1}, "been": {"_count": 1}}, "flicked": {"_count": 1, "it": {"_count": 1}}, "unless": {"_count": 2, "we": {"_count": 1}, "youve": {"_count": 1}}, "it": {"_count": 7, "wasnt": {"_count": 1}, "was": {"_count": 3}, "wont": {"_count": 1}, "proved": {"_count": 1}, "bobbed": {"_count": 1}}, "reflecting": {"_count": 1, "the": {"_count": 1}}, "Id": {"_count": 1, "like": {"_count": 1}}, "means": {"_count": 1, "finding": {"_count": 1}}, "eagerly": {"_count": 1, "and": {"_count": 1}}, "including": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "Mandrake": {"_count": 1, "juice": {"_count": 1}}, "any": {"_count": 2, "more": {"_count": 1}, "elf": {"_count": 1}}, "fell": {"_count": 1, "a": {"_count": 1}}, "horribly": {"_count": 1, "vividly": {"_count": 1}}, "suggestions": {"_count": 1, "for": {"_count": 1}}, "dark": {"_count": 1, "hints": {"_count": 1}}, "Vernon": {"_count": 1, "she": {"_count": 1}}, "weirdly": {"_count": 1, "as": {"_count": 1}}, "seized": {"_count": 2, "Hedwigs": {"_count": 1}, "the": {"_count": 1}}, "is": {"_count": 2, "wand": {"_count": 1}, "he": {"_count": 1}}, "tea": {"_count": 1, "youve": {"_count": 1}}, "alone": {"_count": 1, "until": {"_count": 1}}, "prototype": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 1}, "clearly": {"_count": 1}, "I": {"_count": 1}}, "or": {"_count": 3, "whatever": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}}, "though": {"_count": 2, "did": {"_count": 1}, "it": {"_count": 1}}, "toward": {"_count": 5, "it": {"_count": 1}, "the": {"_count": 3}, "me": {"_count": 1}}, "parchment": {"_count": 4, "ink": {"_count": 1}, "and": {"_count": 2}, "quills": {"_count": 1}}, "free": {"_count": 1, "samples": {"_count": 1}}, "Cedric": {"_count": 1, "Diggory": {"_count": 1}}, "trailing": {"_count": 1, "mud": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "ter": {"_count": 1, "sea": {"_count": 1}}, "someone": {"_count": 2, "who": {"_count": 1}, "wants": {"_count": 1}}, "through": {"_count": 11, "the": {"_count": 8}, "their": {"_count": 1}, "his": {"_count": 1}, "Aberforths": {"_count": 1}}, "anymore": {"_count": 1, "are": {"_count": 1}}, "was": {"_count": 3, "a": {"_count": 1}, "pretty": {"_count": 1}, "through": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "Potter": {"_count": 3, "": {"_count": 2}, "will": {"_count": 1}}, "were": {"_count": 3, "experimenting": {"_count": 1}, "the": {"_count": 2}}, "laughing": {"_count": 5, "": {"_count": 3}, "was": {"_count": 1}, "and": {"_count": 1}}, "without": {"_count": 2, "permission": {"_count": 1}, "a": {"_count": 1}}, "leaving": {"_count": 2, "wide": {"_count": 1}, "Harry": {"_count": 1}}, "under": {"_count": 4, "the": {"_count": 2}, "her": {"_count": 1}, "cover": {"_count": 1}}, "They": {"_count": 1, "covered": {"_count": 1}}, "Scabbers": {"_count": 1, "and": {"_count": 1}}, "felt": {"_count": 1, "the": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 2, "afterward": {"_count": 1}, "now": {"_count": 1}}, "youre": {"_count": 1, "gone": {"_count": 1}}, "HE": {"_count": 1, "DIDNT": {"_count": 1}}, "Dudley": {"_count": 1, "appeared": {"_count": 1}}, "wearing": {"_count": 1, "hornrimmed": {"_count": 1}}, "savagely": {"_count": 2, "now": {"_count": 1}, "": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "whats": {"_count": 2, "happened": {"_count": 1}, "going": {"_count": 1}}, "Ill": {"_count": 1, "get": {"_count": 1}}, "searching": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 2, "through": {"_count": 1}, "worse": {"_count": 1}}, "soon": {"_count": 3, "enough": {"_count": 2}, "He": {"_count": 1}}, "everywhere": {"_count": 2, "": {"_count": 1}, "thats": {"_count": 1}}, "Krum": {"_count": 1, "surrounded": {"_count": 1}}, "vampires": {"_count": 1, "": {"_count": 1}}, "fires": {"_count": 1, "all": {"_count": 1}}, "talking": {"_count": 1, "in": {"_count": 1}}, "Malfoys": {"_count": 1, "voice": {"_count": 1}}, "while": {"_count": 3, "a": {"_count": 1}, "I": {"_count": 1}, "Im": {"_count": 1}}, "particularly": {"_count": 1, "clearly": {"_count": 1}}, "names": {"_count": 1, "his": {"_count": 1}}, "its": {"_count": 7, "legs": {"_count": 1}, "leg": {"_count": 1}, "a": {"_count": 1}, "arms": {"_count": 1}, "really": {"_count": 1}, "what": {"_count": 1}, "too": {"_count": 1}}, "poring": {"_count": 1, "over": {"_count": 1}}, "large": {"_count": 1, "portions": {"_count": 1}}, "Siriuss": {"_count": 1, "letter": {"_count": 1}}, "four": {"_count": 1, "chairs": {"_count": 1}}, "except": {"_count": 2, "a": {"_count": 1}, "through": {"_count": 1}}, "younger": {"_count": 1, "contestants": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "anyway": {"_count": 3, "How": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "came": {"_count": 2, "the": {"_count": 1}, "Hermiones": {"_count": 1}}, "I": {"_count": 7, "A": {"_count": 1}, "dont": {"_count": 1}, "was": {"_count": 2}, "suppose": {"_count": 1}, "mean": {"_count": 1}, "will": {"_count": 1}}, "Cedrics": {"_count": 1, "shadow": {"_count": 1}}, "Winky": {"_count": 1, "has": {"_count": 1}}, "before": {"_count": 4, "Harry": {"_count": 1}, "him": {"_count": 2}, "pouring": {"_count": 1}}, "Dear": {"_count": 1, "Harry": {"_count": 1}}, "Hagrids": {"_count": 3, "next": {"_count": 1}, "some": {"_count": 1}, "purse": {"_count": 1}}, "havent": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "down": {"_count": 1, "his": {"_count": 1}}, "okay": {"_count": 1, "even": {"_count": 1}}, "past": {"_count": 3, "him": {"_count": 2}, "Malfoy": {"_count": 1}}, "dried": {"_count": 1, "himself": {"_count": 1}}, "trapped": {"_count": 1, "Harry": {"_count": 1}}, "haven": {"_count": 1, "yeh": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}, "once": {"_count": 2, "more": {"_count": 1}, "we": {"_count": 1}}, "hard": {"_count": 2, "finally": {"_count": 1}, "at": {"_count": 1}}, "beside": {"_count": 1, "them": {"_count": 1}}, "enough": {"_count": 1, "armadillo": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "What": {"_count": 1, "dyou": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "kidnap": {"_count": 1, "growled": {"_count": 1}}, "harmless": {"_count": 1, "if": {"_count": 1}}, "Moody": {"_count": 1, "breathed": {"_count": 1}}, "anything": {"_count": 4, "clearly": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "around": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}, "fiery": {"_count": 1, "sparks": {"_count": 1}}, "Wormtails": {"_count": 1, "left": {"_count": 1}}, "my": {"_count": 5, "orders": {"_count": 1}, "wand": {"_count": 2}, "office": {"_count": 1}, "own": {"_count": 1}}, "Moodys": {"_count": 1, "hip": {"_count": 1}}, "disguised": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 8, "one": {"_count": 1}, "it": {"_count": 1}, "though": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 2}, "soon": {"_count": 1}}, "Can": {"_count": 1, "I": {"_count": 1}}, "when": {"_count": 5, "we": {"_count": 1}, "he": {"_count": 1}, "weve": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "hes": {"_count": 2, "in": {"_count": 1}, "not": {"_count": 1}}, "Running": {"_count": 1, "to": {"_count": 1}}, "flanking": {"_count": 1, "them": {"_count": 1}}, "Mundungus": {"_count": 1, "had": {"_count": 1}}, "plates": {"_count": 1, "more": {"_count": 1}}, "leaflets": {"_count": 1, "can": {"_count": 1}}, "knowing": {"_count": 1, "my": {"_count": 1}}, "seven": {"_count": 1, "centuries": {"_count": 1}}, "occasionally": {"_count": 1, "and": {"_count": 1}}, "creases": {"_count": 1, "across": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "thatd": {"_count": 1, "be": {"_count": 1}}, "punishments": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "He": {"_count": 4, "left": {"_count": 1}, "pulled": {"_count": 1}, "was": {"_count": 1}, "felt": {"_count": 1}}, "Abercrombie": {"_count": 1, "Euan": {"_count": 1}}, "The": {"_count": 3, "Quibbler": {"_count": 1}, "Tales": {"_count": 2}}, "schedules": {"_count": 1, "": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "quill": {"_count": 1, "ink": {"_count": 1}}, "two": {"_count": 2, "misshapen": {"_count": 1}, "scrolls": {"_count": 1}}, "hats": {"_count": 1, "for": {"_count": 1}}, "human": {"_count": 1, "eyes": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "differently": {"_count": 1, "": {"_count": 1}}, "sentences": {"_count": 1, "here": {"_count": 1}}, "detentions": {"_count": 1, "to": {"_count": 1}}, "Dream": {"_count": 1, "Oracles": {"_count": 1}}, "books": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "stood": {"_count": 1}}, "sadly": {"_count": 1, "returned": {"_count": 1}}, "people": {"_count": 1, "who": {"_count": 1}}, "Hedwig": {"_count": 1, "to": {"_count": 1}}, "copies": {"_count": 1, "of": {"_count": 1}}, "those": {"_count": 1, "people": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 3, "pockets": {"_count": 1}, "amendment": {"_count": 1}, "results": {"_count": 1}}, "conditions": {"_count": 1, "and": {"_count": 1}}, "these": {"_count": 2, "encouraging": {"_count": 1}, "old": {"_count": 1}}, "fer": {"_count": 1, "ages": {"_count": 1}}, "faster": {"_count": 2, "than": {"_count": 1}, "": {"_count": 1}}, "we": {"_count": 2, "saw": {"_count": 1}, "were": {"_count": 1}}, "unsatisfactory": {"_count": 1, "teachers": {"_count": 1}}, "Trelawney": {"_count": 1, "but": {"_count": 1}}, "cushions": {"_count": 1, "all": {"_count": 1}}, "fistfuls": {"_count": 1, "of": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}, "gazed": {"_count": 1, "for": {"_count": 1}}, "disconsolately": {"_count": 1, "at": {"_count": 1}}, "yesterday": {"_count": 1, "I": {"_count": 1}}, "squeaks": {"_count": 1, "of": {"_count": 1}}, "fading": {"_count": 1, "from": {"_count": 1}}, "wont": {"_count": 1, "we": {"_count": 1}}, "soapsuds": {"_count": 1, "as": {"_count": 1}}, "get": {"_count": 2, "out": {"_count": 2}}, "OUT": {"_count": 1, "": {"_count": 1}}, "candles": {"_count": 1, "juggled": {"_count": 1}}, "me": {"_count": 1, "mother": {"_count": 1}}, "already": {"_count": 1, "if": {"_count": 1}}, "neverending": {"_count": 1, "answers": {"_count": 1}}, "upon": {"_count": 3, "the": {"_count": 1}, "together": {"_count": 1}, "a": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "till": {"_count": 1, "weve": {"_count": 1}}, "low": {"_count": 1, "hisses": {"_count": 1}}, "come": {"_count": 1, "out": {"_count": 1}}, "little": {"_count": 1, "HarryV": {"_count": 1}}, "yells": {"_count": 1, "of": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "was": {"_count": 1}}, "snippets": {"_count": 1, "from": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "well": {"_count": 1, "anything": {"_count": 1}}, "three": {"_count": 4, "glasses": {"_count": 1}, "figures": {"_count": 1}, "Extendable": {"_count": 1}, "bottles": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "until": {"_count": 1, "such": {"_count": 1}}, "casually": {"_count": 1, "by": {"_count": 1}}, "Ive": {"_count": 1, "watched": {"_count": 1}}, "everyone": {"_count": 1, "and": {"_count": 1}}, "rotten": {"_count": 1, "flobberworms": {"_count": 1}}, "instructions": {"_count": 1, "and": {"_count": 1}}, "theyre": {"_count": 1, "best": {"_count": 1}}, "together": {"_count": 2, "then": {"_count": 1}, "Fred": {"_count": 1}}, "McLaggen": {"_count": 1, "Theres": {"_count": 1}}, "half": {"_count": 2, "the": {"_count": 1}, "of": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "simply": {"_count": 2, "amused": {"_count": 1}, "to": {"_count": 1}}, "jars": {"_count": 1, "and": {"_count": 1}}, "Would": {"_count": 1, "he": {"_count": 1}}, "hed": {"_count": 1, "agreed": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "o": {"_count": 2, "there": {"_count": 1}, "that": {"_count": 1}}, "fast": {"_count": 2, "": {"_count": 1}, "If": {"_count": 1}}, "And": {"_count": 2, "his": {"_count": 1}, "she": {"_count": 1}}, "pretty": {"_count": 1, "much": {"_count": 1}}, "Whos": {"_count": 1, "there": {"_count": 1}}, "late": {"_count": 1, "": {"_count": 1}}, "straightened": {"_count": 1, "the": {"_count": 1}}, "But": {"_count": 1, "what": {"_count": 1}}, "sets": {"_count": 1, "of": {"_count": 1}}, "MadEye": {"_count": 1, "tried": {"_count": 1}}, "Im": {"_count": 1, "here": {"_count": 1}}, "yeh": {"_count": 1, "did": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "white": {"_count": 1, "against": {"_count": 1}}, "lights": {"_count": 1, "I": {"_count": 1}}, "Hermione": {"_count": 1, "you": {"_count": 1}}, "such": {"_count": 1, "usurpers": {"_count": 1}}, "Muggleborns": {"_count": 1, "because": {"_count": 1}}, "soup": {"_count": 1, "into": {"_count": 1}}, "carrying": {"_count": 1, "our": {"_count": 1}}, "deep": {"_count": 1, "and": {"_count": 1}}, "Yaxleys": {"_count": 1, "office": {"_count": 1}}, "grayish": {"_count": 1, "white": {"_count": 1}}, "Mad": {"_count": 1, "Eyes": {"_count": 1}}, "Vol": {"_count": 1, "Dont": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "can": {"_count": 1, "we": {"_count": 1}}, "replied": {"_count": 1, "Griphook": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "Phineas": {"_count": 1, "Nigelluss": {"_count": 1}}, "sharp": {"_count": 1, "and": {"_count": 1}}, "every": {"_count": 1, "other": {"_count": 1}}, "tent": {"_count": 1, "poles": {"_count": 1}}, "groping": {"_count": 1, "for": {"_count": 1}}, "wildly": {"_count": 1, "trying": {"_count": 1}}, "isnt": {"_count": 1, "there": {"_count": 1}}, "miles": {"_count": 1, "from": {"_count": 1}}, "Quibblers": {"_count": 1, "": {"_count": 1}}, "arms": {"_count": 1, "behind": {"_count": 1}}, "stuff": {"_count": 1, "for": {"_count": 1}}, "various": {"_count": 1, "rhythms": {"_count": 1}}, "Voldemorts": {"_count": 2, "thoughts": {"_count": 1}, "getting": {"_count": 1}}, "Dumbledores": {"_count": 1, "Snitch": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "sharply": {"_count": 1, "against": {"_count": 1}}, "Bellatrixs": {"_count": 1, "wand": {"_count": 1}}, "Bogrod": {"_count": 1, "accepted": {"_count": 1}}, "another": {"_count": 1, "hoarse": {"_count": 1}}, "somewhere": {"_count": 1, "different": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "McGonagall": {"_count": 1, "too": {"_count": 1}}, "YouKnowWho": {"_count": 1, "indefinitely": {"_count": 1}}, "lets": {"_count": 1, "get": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "anybodys": {"_count": 1, "faces": {"_count": 1}}}, "about": {"_count": 2462, "the": {"_count": 333, "Potters": {"_count": 2}, "cloudy": {"_count": 1}, "people": {"_count": 1}, "owls": {"_count": 1}, "end": {"_count": 2}, "YouKnowWhat": {"_count": 1}, "pale": {"_count": 1}, "four": {"_count": 1}, "Dark": {"_count": 6}, "weather": {"_count": 2}, "time": {"_count": 1}, "school": {"_count": 2}, "package": {"_count": 1}, "mysterious": {"_count": 3}, "special": {"_count": 1}, "different": {"_count": 1}, "size": {"_count": 3}, "Quaffle": {"_count": 1}, "troll": {"_count": 1}, "room": {"_count": 3}, "Sorcerers": {"_count": 3}, "smile": {"_count": 1}, "Stone": {"_count": 3}, "1637": {"_count": 1}, "sorta": {"_count": 1}, "stupid": {"_count": 1}, "car": {"_count": 1}, "disasterous": {"_count": 1}, "most": {"_count": 3}, "place": {"_count": 6}, "Headless": {"_count": 1}, "deathday": {"_count": 1}, "Chamber": {"_count": 6}, "students": {"_count": 1}, "coming": {"_count": 1}, "Gryffindors": {"_count": 1}, "last": {"_count": 2}, "hundredth": {"_count": 1}, "future": {"_count": 2}, "diary": {"_count": 2}, "match": {"_count": 5}, "spiders": {"_count": 1}, "Sorting": {"_count": 1}, "Hogsmeade": {"_count": 1}, "long": {"_count": 1}, "wizard": {"_count": 2}, "reaction": {"_count": 1}, "castle": {"_count": 2}, "Grim": {"_count": 3}, "dementors": {"_count": 6}, "dog": {"_count": 1}, "goblet": {"_count": 1}, "Astronomy": {"_count": 1}, "screaming": {"_count": 1}, "Marauders": {"_count": 1}, "hippogriff": {"_count": 1}, "Firebolt": {"_count": 1}, "conversation": {"_count": 2}, "hidden": {"_count": 1}, "passage": {"_count": 1}, "garlic": {"_count": 1}, "Invisibility": {"_count": 1}, "mudthrowing": {"_count": 1}, "next": {"_count": 4}, "cloak": {"_count": 1}, "Hogwarts": {"_count": 1}, "neck": {"_count": 1}, "extraordinary": {"_count": 1}, "journey": {"_count": 1}, "holidays": {"_count": 1}, "World": {"_count": 2}, "Riddles": {"_count": 2}, "house": {"_count": 1}, "Quidditch": {"_count": 3}, "toffees": {"_count": 1}, "dream": {"_count": 2}, "Ministry": {"_count": 3}, "fact": {"_count": 4}, "intruder": {"_count": 1}, "same": {"_count": 1}, "tournament": {"_count": 2}, "days": {"_count": 1}, "lesson": {"_count": 1}, "way": {"_count": 2}, "Triwizard": {"_count": 4}, "second": {"_count": 1}, "scene": {"_count": 2}, "large": {"_count": 1}, "skrewts": {"_count": 1}, "tasks": {"_count": 1}, "International": {"_count": 1}, "22nd": {"_count": 1}, "Daily": {"_count": 1}, "dragons": {"_count": 8}, "Slytherins": {"_count": 1}, "fairness": {"_count": 1}, "Malfoys": {"_count": 1}, "Yule": {"_count": 1}, "perfect": {"_count": 1}, "Horntail": {"_count": 1}, "dangers": {"_count": 1}, "Hagrid": {"_count": 1}, "merpeoples": {"_count": 1}, "aftermath": {"_count": 1}, "riot": {"_count": 1}, "hate": {"_count": 1}, "gold": {"_count": 1}, "supposed": {"_count": 1}, "third": {"_count": 2}, "night": {"_count": 2}, "chair": {"_count": 1}, "gamekeeper": {"_count": 1}, "instructions": {"_count": 1}, "hostages": {"_count": 1}, "boy": {"_count": 2}, "Reasonable": {"_count": 1}, "magical": {"_count": 2}, "Howler": {"_count": 1}, "Dursleys": {"_count": 1}, "nonexistent": {"_count": 1}, "only": {"_count": 2}, "slightly": {"_count": 1}, "Bagman": {"_count": 1}, "Order": {"_count": 1}, "hearing": {"_count": 3}, "regurgitating": {"_count": 1}, "toilet": {"_count": 1}, "possibility": {"_count": 1}, "goblins": {"_count": 1}, "reappearance": {"_count": 1}, "horses": {"_count": 1}, "Hall": {"_count": 1}, "dullest": {"_count": 1}, "composition": {"_count": 1}, "chapter": {"_count": 2}, "amount": {"_count": 2}, "importance": {"_count": 1}, "hours": {"_count": 1}, "bass": {"_count": 1}, "flying": {"_count": 1}, "High": {"_count": 1}, "spells": {"_count": 1}, "return": {"_count": 1}, "chatter": {"_count": 1}, "lessons": {"_count": 1}, "Shrieking": {"_count": 1}, "uses": {"_count": 1}, "sort": {"_count": 1}, "giants": {"_count": 1}, "Beaters": {"_count": 1}, "dumb": {"_count": 1}, "Potter": {"_count": 1}, "exams": {"_count": 2}, "corridor": {"_count": 1}, "matter": {"_count": 1}, "escaped": {"_count": 1}, "door": {"_count": 2}, "sight": {"_count": 1}, "D": {"_count": 3}, "Department": {"_count": 1}, "day": {"_count": 1}, "ugly": {"_count": 1}, "trolls": {"_count": 1}, "Garroting": {"_count": 1}, "prophecy": {"_count": 3}, "answer": {"_count": 1}, "Minister": {"_count": 1}, "worst": {"_count": 1}, "plan": {"_count": 1}, "disagreement": {"_count": 1}, "security": {"_count": 1}, "kind": {"_count": 1}, "Death": {"_count": 2}, "Patil": {"_count": 1}, "advisability": {"_count": 1}, "necklace": {"_count": 1}, "boys": {"_count": 1}, "inquisitorial": {"_count": 1}, "forthcoming": {"_count": 1}, "memory": {"_count": 1}, "man": {"_count": 1}, "hag": {"_count": 1}, "creatures": {"_count": 1}, "behavior": {"_count": 1}, "breakup": {"_count": 1}, "HalfBlood": {"_count": 1}, "book": {"_count": 1}, "weight": {"_count": 1}, "pair": {"_count": 1}, "real": {"_count": 1}, "Half": {"_count": 1}, "following": {"_count": 1}, "limited": {"_count": 1}, "resignation": {"_count": 1}, "first": {"_count": 1}, "Ron": {"_count": 1}, "promise": {"_count": 1}, "story": {"_count": 1}, "McKinnons": {"_count": 1}, "goblets": {"_count": 1}, "twin": {"_count": 2}, "sword": {"_count": 2}, "rest": {"_count": 2}, "places": {"_count": 1}, "village": {"_count": 1}, "wider": {"_count": 1}, "Taboo": {"_count": 1}, "sign": {"_count": 1}, "Hallows": {"_count": 3}, "stone": {"_count": 1}, "tale": {"_count": 1}, "Cloak": {"_count": 1}, "Resurrection": {"_count": 1}, "Deathly": {"_count": 3}, "Elder": {"_count": 1}, "Chief": {"_count": 1}, "Mudblood": {"_count": 1}, "other": {"_count": 1}, "wand": {"_count": 1}, "golden": {"_count": 1}, "others": {"_count": 1}, "cave": {"_count": 1}, "cup": {"_count": 1}, "greater": {"_count": 1}, "Carrows": {"_count": 1}, "Horcruxes": {"_count": 2}, "passageway": {"_count": 1}, "Horcrux": {"_count": 2}, "lost": {"_count": 1}, "diadem": {"_count": 1}, "situation": {"_count": 1}, "stuff": {"_count": 1}, "deaths": {"_count": 1}, "death": {"_count": 1}}, "": {"_count": 119, ".": {"_count": 52}, "?": {"_count": 59}, "!": {"_count": 8}}, "Mrs": {"_count": 2, "Next": {"_count": 1}, "Weasley": {"_count": 1}}, "that": {"_count": 84, "but": {"_count": 3}, "tea": {"_count": 1}, "said": {"_count": 7}, "no": {"_count": 1}, "": {"_count": 19}, "mirror": {"_count": 1}, "eh": {"_count": 1}, "Well": {"_count": 1}, "one": {"_count": 2}, "voice": {"_count": 3}, "yet": {"_count": 1}, "telephone": {"_count": 1}, "escaped": {"_count": 1}, "Arry": {"_count": 1}, "animal": {"_count": 1}, "map": {"_count": 1}, "just": {"_count": 1}, "skull": {"_count": 1}, "at": {"_count": 1}, "Ministry": {"_count": 1}, "wretched": {"_count": 1}, "evenings": {"_count": 1}, "Lucius": {"_count": 1}, "Harry": {"_count": 1}, "again": {"_count": 1}, "on": {"_count": 1}, "he": {"_count": 2}, "nosebleed": {"_count": 1}, "woman": {"_count": 1}, "right": {"_count": 1}, "corridor": {"_count": 1}, "far": {"_count": 1}, "then": {"_count": 1}, "place": {"_count": 1}, "Mums": {"_count": 1}, "particular": {"_count": 1}, "later": {"_count": 1}, "Ron": {"_count": 1}, "now": {"_count": 4}, "sir": {"_count": 1}, "if": {"_count": 1}, "precious": {"_count": 1}, "tattoo": {"_count": 1}, "locket": {"_count": 1}, "all": {"_count": 1}, "funny": {"_count": 1}, "Ted": {"_count": 1}, "symbol": {"_count": 1}, "other": {"_count": 1}, "when": {"_count": 1}, "Lupin": {"_count": 1}}, "Dudleys": {"_count": 2, "age": {"_count": 1}, "school": {"_count": 1}}, "them": {"_count": 41, "and": {"_count": 4}, "": {"_count": 14}, "to": {"_count": 1}, "afterwards": {"_count": 1}, "too": {"_count": 3}, "seemed": {"_count": 1}, "than": {"_count": 1}, "not": {"_count": 1}, "Im": {"_count": 1}, "because": {"_count": 1}, "years": {"_count": 1}, "We": {"_count": 1}, "as": {"_count": 1}, "sir": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}, "goblets": {"_count": 1}, "all": {"_count": 1}, "knew": {"_count": 1}, "for": {"_count": 2}, "Harry": {"_count": 1}}, "us": {"_count": 6, "all": {"_count": 1}, "and": {"_count": 1}, "about": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 1}}, "Harry": {"_count": 28, "every": {"_count": 1}, "like": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}, "this": {"_count": 2}, "and": {"_count": 3}, "the": {"_count": 1}, "not": {"_count": 1}, "lied": {"_count": 1}, "Potters": {"_count": 1}, "Potter": {"_count": 3}, "said": {"_count": 2}, "when": {"_count": 1}, "saw": {"_count": 1}, "behind": {"_count": 1}, "having": {"_count": 1}, "at": {"_count": 1}, "yelled": {"_count": 1}, "very": {"_count": 1}, "told": {"_count": 1}}, "it": {"_count": 172, "Dumbledore": {"_count": 1}, "": {"_count": 66}, "some": {"_count": 1}, "said": {"_count": 10}, "in": {"_count": 7}, "that": {"_count": 1}, "Hagrid": {"_count": 2}, "Weasley": {"_count": 2}, "the": {"_count": 4}, "and": {"_count": 5}, "whats": {"_count": 1}, "youd": {"_count": 1}, "all": {"_count": 4}, "Miss": {"_count": 1}, "but": {"_count": 3}, "sometimes": {"_count": 2}, "Harry": {"_count": 3}, "without": {"_count": 1}, "ages": {"_count": 1}, "before": {"_count": 2}, "as": {"_count": 3}, "Not": {"_count": 1}, "Im": {"_count": 1}, "at": {"_count": 4}, "Hermione": {"_count": 1}, "are": {"_count": 2}, "anymore": {"_count": 2}, "All": {"_count": 1}, "they": {"_count": 1}, "see": {"_count": 1}, "it": {"_count": 1}, "than": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 3}, "too": {"_count": 2}, "seconds": {"_count": 1}, "indeed": {"_count": 1}, "ttoo": {"_count": 1}, "when": {"_count": 2}, "to": {"_count": 2}, "if": {"_count": 1}, "till": {"_count": 1}, "he": {"_count": 3}, "old": {"_count": 1}, "last": {"_count": 1}, "added": {"_count": 1}, "dont": {"_count": 1}, "on": {"_count": 1}, "Ive": {"_count": 1}, "then": {"_count": 1}, "much": {"_count": 1}, "Mr": {"_count": 1}, "just": {"_count": 1}, "somewhere": {"_count": 1}, "from": {"_count": 1}, "quite": {"_count": 1}, "argued": {"_count": 1}, "Terry": {"_count": 1}, "remember": {"_count": 1}, "Ron": {"_count": 1}}, "four": {"_count": 4, "times": {"_count": 2}, "feet": {"_count": 1}, "of": {"_count": 1}}, "his": {"_count": 69, "own": {"_count": 1}, "parents": {"_count": 3}, "new": {"_count": 3}, "fans": {"_count": 1}, "fathers": {"_count": 2}, "wizarding": {"_count": 1}, "favorite": {"_count": 1}, "part": {"_count": 1}, "phone": {"_count": 1}, "Handbook": {"_count": 1}, "brief": {"_count": 1}, "secret": {"_count": 1}, "safety": {"_count": 1}, "father": {"_count": 2}, "sanity": {"_count": 1}, "resignation": {"_count": 1}, "reliability": {"_count": 1}, "life": {"_count": 2}, "scar": {"_count": 4}, "worries": {"_count": 1}, "old": {"_count": 1}, "report": {"_count": 1}, "earring": {"_count": 1}, "lack": {"_count": 1}, "wrinkled": {"_count": 1}, "dad": {"_count": 1}, "childhood": {"_count": 1}, "large": {"_count": 1}, "giantess": {"_count": 1}, "gamekeeper": {"_count": 1}, "business": {"_count": 2}, "present": {"_count": 1}, "mother": {"_count": 2}, "past": {"_count": 2}, "warm": {"_count": 1}, "mum": {"_count": 1}, "lot": {"_count": 1}, "delinquent": {"_count": 1}, "being": {"_count": 1}, "shouting": {"_count": 1}, "hand": {"_count": 1}, "dream": {"_count": 2}, "face": {"_count": 1}, "feelings": {"_count": 1}, "little": {"_count": 1}, "godfather": {"_count": 2}, "cloak": {"_count": 1}, "gormless": {"_count": 1}, "lesson": {"_count": 1}, "staff": {"_count": 1}, "master": {"_count": 1}, "Horcruxes": {"_count": 2}, "true": {"_count": 1}}, "whatshername": {"_count": 1, "your": {"_count": 1}}, "things": {"_count": 4, "people": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 88, "motorcycle": {"_count": 1}, "head": {"_count": 3}, "foot": {"_count": 4}, "hundred": {"_count": 12}, "game": {"_count": 1}, "century": {"_count": 1}, "minute": {"_count": 8}, "week": {"_count": 4}, "dragon": {"_count": 1}, "new": {"_count": 1}, "secret": {"_count": 1}, "month": {"_count": 1}, "thousand": {"_count": 2}, "nice": {"_count": 2}, "love": {"_count": 1}, "second": {"_count": 6}, "million": {"_count": 1}, "case": {"_count": 1}, "rat": {"_count": 1}, "few": {"_count": 1}, "troll": {"_count": 1}, "dozen": {"_count": 6}, "ton": {"_count": 1}, "mile": {"_count": 2}, "year": {"_count": 1}, "career": {"_count": 1}, "meeting": {"_count": 1}, "batch": {"_count": 1}, "joke": {"_count": 1}, "graveyard": {"_count": 1}, "stupid": {"_count": 1}, "load": {"_count": 1}, "windowless": {"_count": 1}, "prison": {"_count": 1}, "relapse": {"_count": 1}, "dying": {"_count": 1}, "student": {"_count": 1}, "mistake": {"_count": 1}, "desire": {"_count": 1}, "hole": {"_count": 1}, "wand": {"_count": 2}, "chess": {"_count": 1}, "cloak": {"_count": 1}, "stone": {"_count": 1}, "different": {"_count": 1}, "day": {"_count": 1}, "bathroom": {"_count": 1}, "diedum": {"_count": 1}}, "anything": {"_count": 14, "acting": {"_count": 1}, "except": {"_count": 1}, "even": {"_count": 2}, "at": {"_count": 1}, "unusual": {"_count": 2}, "odd": {"_count": 2}, "now": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "very": {"_count": 1}, "else": {"_count": 1}}, "all": {"_count": 13, "these": {"_count": 2}, "the": {"_count": 4}, "this": {"_count": 5}, "summer": {"_count": 1}, "that": {"_count": 1}}, "how": {"_count": 43, "he": {"_count": 5}, "good": {"_count": 1}, "the": {"_count": 3}, "were": {"_count": 1}, "I": {"_count": 3}, "her": {"_count": 1}, "they": {"_count": 1}, "rude": {"_count": 1}, "Sirius": {"_count": 1}, "we": {"_count": 1}, "that": {"_count": 1}, "no": {"_count": 1}, "bad": {"_count": 1}, "you": {"_count": 2}, "its": {"_count": 1}, "disturbed": {"_count": 1}, "Cedric": {"_count": 1}, "both": {"_count": 1}, "youre": {"_count": 1}, "how": {"_count": 1}, "Umbridge": {"_count": 1}, "hard": {"_count": 1}, "Harrys": {"_count": 1}, "hes": {"_count": 1}, "much": {"_count": 1}, "come": {"_count": 1}, "many": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 2}, "Ron": {"_count": 1}, "it": {"_count": 1}, "brilliant": {"_count": 1}, "humans": {"_count": 1}}, "this": {"_count": 52, "cupboard": {"_count": 1}, "time": {"_count": 2}, "while": {"_count": 1}, "or": {"_count": 2}, "I": {"_count": 1}, "": {"_count": 13}, "next": {"_count": 1}, "make": {"_count": 1}, "one": {"_count": 1}, "Molly": {"_count": 1}, "class": {"_count": 1}, "plan": {"_count": 1}, "but": {"_count": 1}, "new": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "task": {"_count": 1}, "how": {"_count": 1}, "least": {"_count": 1}, "said": {"_count": 3}, "Hermione": {"_count": 1}, "he": {"_count": 2}, "parting": {"_count": 1}, "war": {"_count": 1}, "about": {"_count": 1}, "prophecy": {"_count": 1}, "lovely": {"_count": 1}, "necklace": {"_count": 1}, "horrible": {"_count": 1}, "appointment": {"_count": 1}, "abuse": {"_count": 1}, "voice": {"_count": 1}, "breathed": {"_count": 1}, "Hallows": {"_count": 1}, "whether": {"_count": 1}}, "half": {"_count": 2, "an": {"_count": 1}, "a": {"_count": 1}}, "an": {"_count": 8, "undred": {"_count": 1}, "escaped": {"_count": 1}, "inch": {"_count": 1}, "hour": {"_count": 3}, "Inferius": {"_count": 1}, "important": {"_count": 1}}, "to": {"_count": 153, "explain": {"_count": 1}, "explode": {"_count": 1}, "go": {"_count": 4}, "start": {"_count": 8}, "come": {"_count": 4}, "faint": {"_count": 3}, "finish": {"_count": 1}, "be": {"_count": 8}, "answer": {"_count": 3}, "fall": {"_count": 3}, "cry": {"_count": 2}, "try": {"_count": 1}, "do": {"_count": 8}, "split": {"_count": 2}, "follow": {"_count": 2}, "say": {"_count": 3}, "fix": {"_count": 1}, "sprout": {"_count": 1}, "attack": {"_count": 1}, "tell": {"_count": 5}, "pass": {"_count": 1}, "drop": {"_count": 1}, "leave": {"_count": 5}, "collapse": {"_count": 1}, "turn": {"_count": 1}, "take": {"_count": 4}, "have": {"_count": 2}, "kill": {"_count": 4}, "commit": {"_count": 1}, "pronounce": {"_count": 1}, "ask": {"_count": 2}, "dive": {"_count": 2}, "become": {"_count": 2}, "find": {"_count": 1}, "pick": {"_count": 1}, "put": {"_count": 3}, "set": {"_count": 1}, "end": {"_count": 1}, "speak": {"_count": 1}, "ring": {"_count": 1}, "face": {"_count": 1}, "apologize": {"_count": 1}, "pull": {"_count": 2}, "reach": {"_count": 1}, "begin": {"_count": 2}, "run": {"_count": 1}, "see": {"_count": 6}, "shatter": {"_count": 1}, "throw": {"_count": 1}, "kiss": {"_count": 1}, "eat": {"_count": 1}, "get": {"_count": 2}, "catch": {"_count": 1}, "mention": {"_count": 1}, "attempt": {"_count": 1}, "drink": {"_count": 1}, "pay": {"_count": 1}, "swallow": {"_count": 1}, "extract": {"_count": 1}, "learn": {"_count": 1}, "tumultuous": {"_count": 1}, "give": {"_count": 1}, "hear": {"_count": 1}, "arrive": {"_count": 1}, "return": {"_count": 2}, "discover": {"_count": 1}, "perform": {"_count": 1}, "accompany": {"_count": 1}, "fly": {"_count": 1}, "strike": {"_count": 2}, "just": {"_count": 1}, "spill": {"_count": 1}, "break": {"_count": 1}, "laugh": {"_count": 1}, "argue": {"_count": 1}, "enter": {"_count": 2}, "touch": {"_count": 1}, "call": {"_count": 1}, "curse": {"_count": 1}, "happen": {"_count": 1}, "die": {"_count": 1}, "join": {"_count": 1}, "cast": {"_count": 1}, "tear": {"_count": 1}}, "Hogwarts": {"_count": 9, "o": {"_count": 1}, "was": {"_count": 1}, "forms": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "Neville": {"_count": 1}, "if": {"_count": 1}, "Harry": {"_count": 1}}, "ANYTHING": {"_count": 1, "": {"_count": 1}}, "yer": {"_count": 1, "mom": {"_count": 1}}, "twenty": {"_count": 7, "years": {"_count": 1}, "minutes": {"_count": 3}, "people": {"_count": 1}, "feet": {"_count": 1}, "of": {"_count": 1}}, "you": {"_count": 62, "probably": {"_count": 1}, "finished": {"_count": 1}, "stumped": {"_count": 1}, "of": {"_count": 2}, "youre": {"_count": 1}, "Neville": {"_count": 1}, "Weasley": {"_count": 1}, "Malfoy": {"_count": 1}, "": {"_count": 15}, "and": {"_count": 7}, "too": {"_count": 2}, "all": {"_count": 1}, "said": {"_count": 2}, "A": {"_count": 1}, "Harry": {"_count": 4}, "talk": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}, "staying": {"_count": 1}, "competing": {"_count": 1}, "very": {"_count": 1}, "as": {"_count": 1}, "Sirius": {"_count": 1}, "actually": {"_count": 1}, "or": {"_count": 1}, "Hermione": {"_count": 1}, "teaching": {"_count": 2}, "now": {"_count": 1}, "dear": {"_count": 1}, "being": {"_count": 1}, "hes": {"_count": 1}, "going": {"_count": 1}, "Griphook": {"_count": 1}, "young": {"_count": 1}, "ginger": {"_count": 1}}, "your": {"_count": 28, "parents": {"_count": 3}, "first": {"_count": 1}, "abnormality": {"_count": 1}, "hair": {"_count": 1}, "broomstick": {"_count": 1}, "Patronus": {"_count": 1}, "embargo": {"_count": 1}, "ears": {"_count": 1}, "scar": {"_count": 2}, "masters": {"_count": 1}, "lucky": {"_count": 1}, "course": {"_count": 1}, "hearing": {"_count": 1}, "summer": {"_count": 1}, "": {"_count": 1}, "Firebolt": {"_count": 1}, "dad": {"_count": 1}, "throat": {"_count": 1}, "father": {"_count": 1}, "stupid": {"_count": 1}, "singing": {"_count": 1}, "niece": {"_count": 1}, "mum": {"_count": 2}, "sister": {"_count": 1}}, "eight": {"_count": 3, "more": {"_count": 1}, "inches": {"_count": 1}, "oclock": {"_count": 1}}, "Harrys": {"_count": 6, "age": {"_count": 1}, "godfather": {"_count": 1}, "love": {"_count": 1}, "abilities": {"_count": 1}, "exceptional": {"_count": 1}, "wand": {"_count": 1}}, "Quidditch": {"_count": 10, "": {"_count": 2}, "constantly": {"_count": 1}, "fouls": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "later": {"_count": 1}, "and": {"_count": 1}, "either": {"_count": 1}, "said": {"_count": 1}}, "magic": {"_count": 3, "at": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "getting": {"_count": 5, "to": {"_count": 2}, "me": {"_count": 1}, "himself": {"_count": 1}, "into": {"_count": 1}}, "time": {"_count": 6, "wasters": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "too": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 66, "": {"_count": 24}, "he": {"_count": 3}, "they": {"_count": 2}, "said": {"_count": 1}, "and": {"_count": 4}, "not": {"_count": 1}, "once": {"_count": 1}, "right": {"_count": 1}, "who": {"_count": 1}, "from": {"_count": 1}, "forcing": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 2}, "being": {"_count": 1}, "its": {"_count": 1}, "a": {"_count": 2}, "then": {"_count": 2}, "on": {"_count": 1}, "all": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}, "like": {"_count": 1}, "are": {"_count": 1}, "rumors": {"_count": 1}, "going": {"_count": 1}, "had": {"_count": 1}, "dying": {"_count": 1}, "Harry": {"_count": 1}, "hell": {"_count": 1}, "his": {"_count": 1}, "I": {"_count": 1}, "than": {"_count": 1}, "Id": {"_count": 1}, "for": {"_count": 1}}, "having": {"_count": 10, "to": {"_count": 3}, "no": {"_count": 1}, "the": {"_count": 1}, "tea": {"_count": 2}, "your": {"_count": 1}, "Ron": {"_count": 1}, "come": {"_count": 1}}, "being": {"_count": 12, "a": {"_count": 1}, "left": {"_count": 1}, "dead": {"_count": 1}, "the": {"_count": 1}, "outofbounds": {"_count": 1}, "allowed": {"_count": 1}, "attacked": {"_count": 3}, "rude": {"_count": 1}, "\u2018halfblood": {"_count": 1}, "laughed": {"_count": 1}}, "my": {"_count": 25, "parents": {"_count": 2}, "school": {"_count": 1}, "greatness": {"_count": 1}, "defeat": {"_count": 1}, "sister": {"_count": 3}, "glasses": {"_count": 1}, "punishment": {"_count": 1}, "family": {"_count": 1}, "injury": {"_count": 1}, "arm": {"_count": 1}, "dad": {"_count": 2}, "vampire": {"_count": 1}, "son": {"_count": 1}, "scar": {"_count": 2}, "wand": {"_count": 1}, "grandmother": {"_count": 1}, "mum": {"_count": 1}, "presence": {"_count": 1}, "work": {"_count": 1}, "bleeding": {"_count": 1}}, "five": {"_count": 13, "hundred": {"_count": 1}, "minutes": {"_count": 7}, "oclock": {"_count": 1}, "hours": {"_count": 1}, "boys": {"_count": 1}, "seconds": {"_count": 1}, "": {"_count": 1}}, "six": {"_count": 5, "of": {"_count": 1}, "years": {"_count": 1}, "inches": {"_count": 1}, "houseelves": {"_count": 1}, "months": {"_count": 1}}, "Gringotts": {"_count": 2, "": {"_count": 1}, "before": {"_count": 1}}, "their": {"_count": 13, "meeting": {"_count": 1}, "first": {"_count": 1}, "guilty": {"_count": 1}, "masters": {"_count": 1}, "future": {"_count": 1}, "son": {"_count": 1}, "daily": {"_count": 1}, "deaths": {"_count": 1}, "study": {"_count": 1}, "business": {"_count": 1}, "embarrassing": {"_count": 1}, "plans": {"_count": 1}, "hero": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "wrestling": {"_count": 1, "a": {"_count": 1}}, "Slytherin": {"_count": 1, "but": {"_count": 1}}, "lessons": {"_count": 1, "I": {"_count": 1}}, "Snapes": {"_count": 3, "lesson": {"_count": 1}, "behavior": {"_count": 1}, "detentions": {"_count": 1}}, "Charlies": {"_count": 2, "work": {"_count": 1}, "letter": {"_count": 1}}, "as": {"_count": 9, "tea": {"_count": 1}, "he": {"_count": 1}, "thick": {"_count": 1}, "safe": {"_count": 1}, "welcome": {"_count": 1}, "much": {"_count": 3}, "near": {"_count": 1}}, "Snape": {"_count": 18, "that": {"_count": 2}, "": {"_count": 5}, "s": {"_count": 3}, "and": {"_count": 5}, "even": {"_count": 1}, "People": {"_count": 1}, "or": {"_count": 1}}, "flying": {"_count": 2, "a": {"_count": 1}, "as": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "soccer": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "face": {"_count": 1, "and": {"_count": 1}}, "punishing": {"_count": 1, "you": {"_count": 1}}, "Crabbe": {"_count": 2, "and": {"_count": 2}}, "Gryffindor": {"_count": 3, "do": {"_count": 1}, "winning": {"_count": 1}, "I": {"_count": 1}}, "yourselves": {"_count": 1, "dont": {"_count": 1}}, "Switching": {"_count": 1, "Spells": {"_count": 1}}, "and": {"_count": 4, "used": {"_count": 1}, "there": {"_count": 1}, "so": {"_count": 1}, "sprinted": {"_count": 1}}, "two": {"_count": 5, "inches": {"_count": 2}, "weeks": {"_count": 2}, "feet": {"_count": 1}}, "was": {"_count": 4, "never": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}}, "her": {"_count": 34, "": {"_count": 8}, "disappearance": {"_count": 1}, "shed": {"_count": 1}, "course": {"_count": 1}, "he": {"_count": 1}, "all": {"_count": 1}, "now": {"_count": 1}, "Hermione": {"_count": 1}, "just": {"_count": 1}, "view": {"_count": 1}, "from": {"_count": 1}, "Quidditch": {"_count": 1}, "apparently": {"_count": 1}, "seat": {"_count": 1}, "with": {"_count": 1}, "if": {"_count": 1}, "first": {"_count": 1}, "new": {"_count": 1}, "Ill": {"_count": 1}, "at": {"_count": 1}, "husbands": {"_count": 1}, "hoping": {"_count": 1}, "identity": {"_count": 1}, "exasperation": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "death": {"_count": 1}}, "breaking": {"_count": 3, "rules": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 5, "some": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "people": {"_count": 1}}, "Dean": {"_count": 1, "": {"_count": 1}}, "Fluffy": {"_count": 1, "": {"_count": 1}}, "Flamel": {"_count": 2, "": {"_count": 2}}, "even": {"_count": 1, "if": {"_count": 1}}, "not": {"_count": 7, "finding": {"_count": 1}, "meddling": {"_count": 1}, "hitting": {"_count": 1}, "meaning": {"_count": 1}, "telling": {"_count": 1}, "wanting": {"_count": 1}, "losing": {"_count": 1}}, "these": {"_count": 6, "dreams": {"_count": 1}, "attacks": {"_count": 1}, "four": {"_count": 1}, "": {"_count": 2}, "things": {"_count": 1}}, "showing": {"_count": 1, "Slytherin": {"_count": 1}}, "Quirrells": {"_count": 1, "\u2018hocuspocus": {"_count": 1}}, "in": {"_count": 9, "his": {"_count": 2}, "a": {"_count": 1}, "no": {"_count": 2}, "the": {"_count": 4}}, "whats": {"_count": 3, "guarding": {"_count": 1}, "really": {"_count": 1}, "going": {"_count": 1}}, "dragons": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "ter": {"_count": 1, "steal": {"_count": 1}}, "what": {"_count": 68, "might": {"_count": 3}, "they": {"_count": 7}, "Snape": {"_count": 2}, "I": {"_count": 2}, "he": {"_count": 11}, "everyone": {"_count": 2}, "Aragog": {"_count": 1}, "would": {"_count": 2}, "made": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 3}, "theyd": {"_count": 1}, "we": {"_count": 1}, "was": {"_count": 4}, "happened": {"_count": 3}, "you": {"_count": 3}, "had": {"_count": 4}, "she": {"_count": 1}, "leaving": {"_count": 1}, "a": {"_count": 2}, "has": {"_count": 1}, "youre": {"_count": 1}, "action": {"_count": 1}, "to": {"_count": 1}, "youve": {"_count": 2}, "were": {"_count": 1}, "Neville": {"_count": 1}, "Hagrid": {"_count": 1}, "kind": {"_count": 1}, "happens": {"_count": 1}, "your": {"_count": 1}, "Harry": {"_count": 1}}, "Malfoy": {"_count": 7, "they": {"_count": 1}, "Of": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 1}, "Hermione": {"_count": 1}}, "turnin": {"_count": 1, "up": {"_count": 1}}, "interfering": {"_count": 1, "with": {"_count": 1}}, "batty": {"_count": 1, "old": {"_count": 1}}, "Hagrid": {"_count": 16, "": {"_count": 6}, "s": {"_count": 2}, "headed": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 2}, "had": {"_count": 1}, "either": {"_count": 1}, "he": {"_count": 1}}, "she": {"_count": 4, "said": {"_count": 1}, "simply": {"_count": 2}, "was": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "good": {"_count": 1, "and": {"_count": 1}}, "Nicolas": {"_count": 1, "": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "insisting": {"_count": 1, "on": {"_count": 1}}, "\u2018We": {"_count": 1, "had": {"_count": 1}}, "our": {"_count": 4, "hero": {"_count": 1}, "new": {"_count": 2}, "things": {"_count": 1}}, "Hermione": {"_count": 7, "was": {"_count": 1}, "": {"_count": 4}, "Granger": {"_count": 1}, "Ill": {"_count": 1}}, "Ron": {"_count": 11, "was": {"_count": 1}, "though": {"_count": 1}, "Ron": {"_count": 1}, "right": {"_count": 1}, "": {"_count": 2}, "isnt": {"_count": 1}, "and": {"_count": 3}, "yet": {"_count": 1}}, "those": {"_count": 9, "American": {"_count": 1}, "Monster": {"_count": 1}, "in": {"_count": 1}, "fake": {"_count": 1}, "adventures": {"_count": 1}, "words": {"_count": 1}, "autographs": {"_count": 1}, "said": {"_count": 1}, "tempting": {"_count": 1}}, "lunatics": {"_count": 1, "": {"_count": 1}}, "twelve": {"_count": 1, "times": {"_count": 1}}, "Dobby": {"_count": 4, "the": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}, "but": {"_count": 1}}, "Malfoys": {"_count": 2, "family": {"_count": 1}, "activities": {"_count": 1}}, "everything": {"_count": 4, "to": {"_count": 1}, "Aragog": {"_count": 1}, "Sirius": {"_count": 1}, "": {"_count": 1}}, "some": {"_count": 5, "extremely": {"_count": 1}, "banshee": {"_count": 1}, "ugly": {"_count": 1}, "of": {"_count": 1}, "food": {"_count": 1}}, "Your": {"_count": 1, "sons": {"_count": 1}}, "life": {"_count": 3, "at": {"_count": 1}, "with": {"_count": 1}, "after": {"_count": 1}}, "needing": {"_count": 1, "a": {"_count": 1}}, "cruelty": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 3, "are": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "Filch": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 1}}, "poor": {"_count": 5, "Myrtle": {"_count": 2}, "Scabbers": {"_count": 1}, "old": {"_count": 1}, "ickle": {"_count": 1}}, "Justin": {"_count": 1, "FinchFletchley": {"_count": 1}}, "Lockhart": {"_count": 2, "being": {"_count": 1}, "": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}, "Ginny": {"_count": 3, "said": {"_count": 1}, "any": {"_count": 1}, "she": {"_count": 1}}, "fifty": {"_count": 6, "school": {"_count": 1}, "times": {"_count": 1}, "badges": {"_count": 1}, "yards": {"_count": 1}, "of": {"_count": 1}, "points": {"_count": 1}}, "slowacting": {"_count": 1, "venoms": {"_count": 1}}, "dangerous": {"_count": 2, "sports": {"_count": 1}, "halfbreeds": {"_count": 1}}, "Colin": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "Chameleon": {"_count": 1, "Ghouls": {"_count": 1}}, "cheering": {"_count": 1, "her": {"_count": 1}}, "dueling": {"_count": 1, "himself": {"_count": 1}}, "with": {"_count": 4, "Slytherins": {"_count": 1}, "the": {"_count": 1}, "Muggle": {"_count": 1}, "goats": {"_count": 1}}, "Mr": {"_count": 4, "Weasleys": {"_count": 1}, "and": {"_count": 1}, "Crouch": {"_count": 2}}, "death": {"_count": 1, "and": {"_count": 1}}, "Riddle": {"_count": 1, "so": {"_count": 1}}, "Entrancing": {"_count": 1, "Enchantments": {"_count": 1}}, "Riddles": {"_count": 1, "diary": {"_count": 1}}, "sixteen": {"_count": 4, "entered": {"_count": 1}, "who": {"_count": 1}, "said": {"_count": 1}, "feet": {"_count": 1}}, "closing": {"_count": 3, "the": {"_count": 2}, "Hogwarts": {"_count": 1}}, "why": {"_count": 5, "he": {"_count": 3}, "they": {"_count": 1}, "theyd": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "Hermiones": {"_count": 1, "empty": {"_count": 1}}, "where": {"_count": 3, "they": {"_count": 3}}, "Percy": {"_count": 5, "at": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "not": {"_count": 1}}, "hearing": {"_count": 1, "the": {"_count": 1}}, "Fawkess": {"_count": 1, "timely": {"_count": 1}}, "shrinking": {"_count": 1, "potions": {"_count": 1}}, "Wendelin": {"_count": 1, "the": {"_count": 1}}, "Hogsmeade": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "Grunnings": {"_count": 1, "his": {"_count": 1}}, "summat": {"_count": 1, "else": {"_count": 1}}, "medieval": {"_count": 2, "witch": {"_count": 1}, "witchhunts": {"_count": 1}}, "Muggles": {"_count": 2, "": {"_count": 2}}, "Scabbers": {"_count": 2, "": {"_count": 2}}, "attacking": {"_count": 2, "Harry": {"_count": 1}, "Krum": {"_count": 1}}, "something": {"_count": 18, "followed": {"_count": 1}, "": {"_count": 7}, "said": {"_count": 1}, "else": {"_count": 2}, "and": {"_count": 2}, "or": {"_count": 1}, "completely": {"_count": 1}, "though": {"_count": 1}, "diff": {"_count": 1}, "Katie": {"_count": 1}}, "Dumbledore": {"_count": 14, "not": {"_count": 1}, "Hagrid": {"_count": 1}, "by": {"_count": 1}, "in": {"_count": 1}, "seemed": {"_count": 1}, "s": {"_count": 1}, "": {"_count": 2}, "you": {"_count": 1}, "Im": {"_count": 1}, "that": {"_count": 2}, "at": {"_count": 1}, "he": {"_count": 1}}, "ten": {"_count": 5, "subjects": {"_count": 1}, "years": {"_count": 1}, "minutes": {"_count": 2}, "more": {"_count": 1}}, "Animagi": {"_count": 1, "wizards": {"_count": 1}}, "Nevilles": {"_count": 5, "cup": {"_count": 1}, "parents": {"_count": 4}}, "said": {"_count": 8, "Professor": {"_count": 1}, "Harry": {"_count": 3}, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}, "Sirius": {"_count": 1}, "Ginny": {"_count": 1}}, "Professor": {"_count": 5, "Lupin": {"_count": 1}, "Snape": {"_count": 2}, "Trelawneys": {"_count": 2}}, "about": {"_count": 1, "Hogwarts": {"_count": 1}}, "Crookshanks": {"_count": 2, "in": {"_count": 1}, "s": {"_count": 1}}, "me": {"_count": 18, "said": {"_count": 1}, "all": {"_count": 1}, "my": {"_count": 1}, "just": {"_count": 1}, "she": {"_count": 1}, "among": {"_count": 1}, "last": {"_count": 1}, "isnt": {"_count": 1}, "being": {"_count": 1}, "": {"_count": 4}, "have": {"_count": 1}, "to": {"_count": 1}, "saying": {"_count": 1}, "or": {"_count": 1}, "Dumbledore": {"_count": 1}}, "talking": {"_count": 1, "seriously": {"_count": 1}}, "other": {"_count": 5, "things": {"_count": 2}, "wizarding": {"_count": 2}, "cloaks": {"_count": 1}}, "werewolves": {"_count": 1, "two": {"_count": 1}}, "halfway": {"_count": 4, "down": {"_count": 2}, "along": {"_count": 2}}, "Sirius": {"_count": 11, "Black": {"_count": 1}, "": {"_count": 4}, "over": {"_count": 1}, "like": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}}, "Black": {"_count": 6, "": {"_count": 3}, "he": {"_count": 1}, "in": {"_count": 1}, "betraying": {"_count": 1}}, "famous": {"_count": 2, "cases": {"_count": 1}, "expupils": {"_count": 1}}, "rats": {"_count": 1, "living": {"_count": 1}}, "yesterdays": {"_count": 1, "lesson": {"_count": 1}}, "winning": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "Arithmancy": {"_count": 1, "Harry": {"_count": 1}}, "wherever": {"_count": 1, "he": {"_count": 1}}, "Saturday": {"_count": 1, "night": {"_count": 1}}, "helping": {"_count": 1, "him": {"_count": 1}}, "leaving": {"_count": 1, "it": {"_count": 1}}, "betraying": {"_count": 1, "Dumbledores": {"_count": 1}}, "Peter": {"_count": 1, "said": {"_count": 1}}, "sixty": {"_count": 1, "seconds": {"_count": 1}}, "fortyfive": {"_count": 1, "minutes": {"_count": 1}}, "robes": {"_count": 1, "swishing": {"_count": 1}}, "giving": {"_count": 3, "you": {"_count": 1}, "me": {"_count": 1}, "people": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "Magical": {"_count": 1, "Law": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "someone": {"_count": 1, "they": {"_count": 1}}, "Voldemort": {"_count": 20, "was": {"_count": 1}, "rising": {"_count": 1}, "getting": {"_count": 1}, "said": {"_count": 2}, "it": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "being": {"_count": 2}, "over": {"_count": 1}, "as": {"_count": 1}, "didnt": {"_count": 1}, "now": {"_count": 1}, "torturing": {"_count": 1}, "moving": {"_count": 1}, "she": {"_count": 1}, "defeating": {"_count": 1}}, "curse": {"_count": 1, "scars": {"_count": 1}}, "too": {"_count": 1, "many": {"_count": 1}}, "Abroad": {"_count": 1, "while": {"_count": 1}}, "rulebreaking": {"_count": 1, "and": {"_count": 1}}, "Father": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 1, "and": {"_count": 1}}, "thousands": {"_count": 1, "of": {"_count": 1}}, "playing": {"_count": 1, "against": {"_count": 1}}, "Bludgers": {"_count": 2, "and": {"_count": 1}, "near": {"_count": 1}}, "antiMuggle": {"_count": 1, "security": {"_count": 1}}, "security": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "measures": {"_count": 1}}, "Muggle": {"_count": 1, "dressing": {"_count": 1}}, "cobbing": {"_count": 1, "with": {"_count": 1}}, "ninety": {"_count": 1, "so": {"_count": 1}}, "who": {"_count": 3, "actually": {"_count": 1}, "might": {"_count": 1}, "they": {"_count": 1}}, "cauldron": {"_count": 1, "thickness": {"_count": 1}}, "Winky": {"_count": 1, "said": {"_count": 1}}, "eighteen": {"_count": 1, "ninety": {"_count": 1}}, "or": {"_count": 2, "go": {"_count": 1}, "who": {"_count": 1}}, "important": {"_count": 1, "stuff": {"_count": 1}}, "deaths": {"_count": 1, "that": {"_count": 1}}, "elf": {"_count": 1, "rights": {"_count": 1}}, "summed": {"_count": 1, "up": {"_count": 1}}, "one": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "nonwand": {"_count": 1, "use": {"_count": 1}}, "paranoid": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 4}}, "Diggory": {"_count": 1, "said": {"_count": 1}}, "houseelves": {"_count": 1, "for": {"_count": 1}}, "YouKnow": {"_count": 3, "Who": {"_count": 3}}, "its": {"_count": 2, "just": {"_count": 1}, "stringent": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "Krum": {"_count": 2, "being": {"_count": 1}, "kept": {"_count": 1}}, "Wonky": {"_count": 1, "Faints": {"_count": 1}}, "but": {"_count": 4, "homework": {"_count": 1}, "did": {"_count": 1}, "all": {"_count": 1}, "looking": {"_count": 1}}, "Siriuss": {"_count": 1, "whereabouts": {"_count": 1}}, "Karkaroff": {"_count": 3, "Hermione": {"_count": 1}, "": {"_count": 2}}, "fifteen": {"_count": 2, "minutes": {"_count": 2}}, "eighty": {"_count": 1, "times": {"_count": 1}}, "right": {"_count": 3, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "dinner": {"_count": 1, "he": {"_count": 1}}, "S": {"_count": 1, "": {"_count": 1}}, "Igor": {"_count": 1, "": {"_count": 1}}, "giants": {"_count": 1, "": {"_count": 1}}, "working": {"_count": 1, "out": {"_count": 1}}, "uni": {"_count": 1, "Look": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "goblins": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "goblin": {"_count": 1, "rebellions": {"_count": 1}}, "Ludo": {"_count": 2, "Bagman": {"_count": 2}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "breathing": {"_count": 1, "in": {"_count": 1}}, "Aqua": {"_count": 1, "Lungs": {"_count": 1}}, "breakfast": {"_count": 1, "on": {"_count": 1}}, "unicorns": {"_count": 1, "as": {"_count": 1}}, "monsters": {"_count": 1, "though": {"_count": 1}}, "seven": {"_count": 1, "": {"_count": 1}}, "anyone": {"_count": 3, "else": {"_count": 2}, "Hermione": {"_count": 1}}, "any": {"_count": 5, "other": {"_count": 1}, "of": {"_count": 4}}, "Cho": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Crouch": {"_count": 6, "": {"_count": 4}, "Crouch": {"_count": 1}, "there": {"_count": 1}}, "Bagman": {"_count": 1, "except": {"_count": 1}}, "Hagrids": {"_count": 1, "mum": {"_count": 1}}, "hidden": {"_count": 1, "microphones": {"_count": 1}}, "underground": {"_count": 1, "tunnels": {"_count": 1}}, "sending": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "work": {"_count": 2, "and": {"_count": 1}, "thats": {"_count": 1}}, "Disarming": {"_count": 1, "because": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 1}, "Voldemorts": {"_count": 1}}, "Voldemorts": {"_count": 5, "whereabouts": {"_count": 1}, "past": {"_count": 3}, "Horcruxes": {"_count": 1}}, "Rita": {"_count": 2, "Skeeter": {"_count": 2}}, "gillyweed": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "": {"_count": 1}}, "Cedric": {"_count": 10, "": {"_count": 4}, "he": {"_count": 1}, "Diggory": {"_count": 1}, "now": {"_count": 1}, "right": {"_count": 1}, "for": {"_count": 1}, "dying": {"_count": 1}}, "Fruit": {"_count": 1, "N": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "youknowwhat": {"_count": 1, "obviously": {"_count": 1}}, "long": {"_count": 1, "dark": {"_count": 1}}, "waterskiing": {"_count": 1, "budgerigars": {"_count": 1}}, "\u2018popkin": {"_count": 1, "and": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "owls": {"_count": 1, "and": {"_count": 1}}, "\u2018Professor": {"_count": 1, "growled": {"_count": 1}}, "packing": {"_count": 1, "": {"_count": 1}}, "number": {"_count": 1, "twelve": {"_count": 1}}, "guard": {"_count": 1, "duty": {"_count": 1}}, "thirty": {"_count": 1, "seconds": {"_count": 1}}, "big": {"_count": 1, "articles": {"_count": 1}}, "myself": {"_count": 2, "": {"_count": 1}, "no": {"_count": 1}}, "stretch": {"_count": 1, "your": {"_count": 1}}, "gold": {"_count": 1, "if": {"_count": 1}}, "taking": {"_count": 2, "away": {"_count": 1}, "the": {"_count": 1}}, "corridors": {"_count": 1, "and": {"_count": 1}}, "Scrimgeour": {"_count": 1, "": {"_count": 1}}, "whether": {"_count": 6, "youre": {"_count": 1}, "or": {"_count": 3}, "Mrs": {"_count": 1}, "I": {"_count": 1}}, "spew": {"_count": 1, "Ron": {"_count": 1}}, "pajamas": {"_count": 1, "": {"_count": 1}}, "prefects": {"_count": 1, "being": {"_count": 1}}, "outside": {"_count": 1, "lessons": {"_count": 1}}, "Bills": {"_count": 1, "hair": {"_count": 1}}, "three": {"_count": 3, "feet": {"_count": 1}, "seconds": {"_count": 1}, "": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "however": {"_count": 1, "He": {"_count": 1}}, "\u2018progress": {"_count": 1, "for": {"_count": 1}}, "\u2018pruning": {"_count": 1, "wherever": {"_count": 1}}, "YouKnowWho": {"_count": 3, "do": {"_count": 1}, "Well": {"_count": 1}, "odd": {"_count": 1}}, "no": {"_count": 1, "deaths": {"_count": 1}}, "exam": {"_count": 1, "results": {"_count": 1}}, "O": {"_count": 2, "": {"_count": 2}}, "using": {"_count": 2, "defensive": {"_count": 1}, "Umbridges": {"_count": 1}}, "defensive": {"_count": 1, "spells": {"_count": 1}}, "reborn": {"_count": 1, "Dark": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 2}}, "truth": {"_count": 1, "or": {"_count": 1}}, "keeping": {"_count": 2, "your": {"_count": 1}, "our": {"_count": 1}}, "Rons": {"_count": 4, "slur": {"_count": 1}, "mother": {"_count": 1}, "feelings": {"_count": 1}, "Apparition": {"_count": 1}}, "doing": {"_count": 1, "other": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "last": {"_count": 3, "summer": {"_count": 1}, "time": {"_count": 1}, "night": {"_count": 1}}, "Jupiters": {"_count": 1, "moons": {"_count": 1}}, "seeing": {"_count": 3, "it": {"_count": 1}, "hurt": {"_count": 1}, "them": {"_count": 1}}, "knowing": {"_count": 1, "that": {"_count": 1}}, "goings": {"_count": 1, "on": {"_count": 1}}, "handing": {"_count": 1, "out": {"_count": 1}}, "Parvatis": {"_count": 1, "most": {"_count": 1}}, "counterjinxes": {"_count": 1, "in": {"_count": 1}}, "which": {"_count": 2, "they": {"_count": 1}, "House": {"_count": 1}}, "preparing": {"_count": 1, "ourselves": {"_count": 1}}, "making": {"_count": 3, "sure": {"_count": 1}, "money": {"_count": 1}, "Hermione": {"_count": 1}}, "Lupin": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "test": {"_count": 1, "results": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "defending": {"_count": 1, "ourselves": {"_count": 1}}, "study": {"_count": 2, "groups": {"_count": 1}, "and": {"_count": 1}}, "Its": {"_count": 1, "okay": {"_count": 1}}, "learning": {"_count": 1, "to": {"_count": 1}}, "signing": {"_count": 1, "too": {"_count": 1}}, "Michael": {"_count": 3, "Corner": {"_count": 2}, "and": {"_count": 1}}, "twentysix": {"_count": 1, "Galleons": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "beating": {"_count": 1, "Slytherin": {"_count": 1}}, "Gryffindors": {"_count": 1, "chances": {"_count": 1}}, "sour": {"_count": 1, "grapes": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "Umbridge": {"_count": 1, "but": {"_count": 1}}, "halfbreeds": {"_count": 1, "all": {"_count": 1}}, "Christmas": {"_count": 1, "": {"_count": 1}}, "telling": {"_count": 1, "them": {"_count": 1}}, "girls": {"_count": 2, "": {"_count": 2}}, "we": {"_count": 1, "need": {"_count": 1}}, "Molly": {"_count": 2, "": {"_count": 1}, "dear": {"_count": 1}}, "Phineas": {"_count": 1, "s": {"_count": 1}}, "Willy": {"_count": 2, "Widdershinss": {"_count": 1}, "Widdershins": {"_count": 1}}, "dabbling": {"_count": 1, "in": {"_count": 1}}, "knitting": {"_count": 1, "a": {"_count": 1}}, "homework": {"_count": 1, "and": {"_count": 1}}, "Devils": {"_count": 1, "Snare": {"_count": 1}}, "Ornithomancy": {"_count": 1, "and": {"_count": 1}}, "walking": {"_count": 1, "down": {"_count": 1}}, "together": {"_count": 1, "on": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "HeWho": {"_count": 1, "MustNotBeNamed": {"_count": 1}}, "CrumpleHorned": {"_count": 1, "Snorkacks": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "eye": {"_count": 1, "contact": {"_count": 1}}, "staying": {"_count": 2, "anymore": {"_count": 1}, "in": {"_count": 1}}, "unfinished": {"_count": 1, "Transfiguration": {"_count": 1}}, "Marietta": {"_count": 2, "before": {"_count": 1}, "Edgecombe": {"_count": 1}}, "growing": {"_count": 1, "up": {"_count": 1}}, "copying": {"_count": 1, "them": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "\u2018just": {"_count": 1, "a": {"_count": 1}}, "Occlumency": {"_count": 1, "": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "trolls": {"_count": 1, "that": {"_count": 1}}, "Stubby": {"_count": 1, "Boardman": {"_count": 1}}, "silencing": {"_count": 1, "you": {"_count": 1}}, "fighting": {"_count": 1, "YouKnow": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "ways": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "whom": {"_count": 2, "it": {"_count": 1}, "she": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "Kreachers": {"_count": 1, "odd": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "rusted": {"_count": 1, "rigging": {"_count": 1}}, "Herbert": {"_count": 1, "Chorley": {"_count": 1}}, "Madam": {"_count": 1, "Bones": {"_count": 1}}, "Inferi": {"_count": 1, "": {"_count": 1}}, "retirement": {"_count": 1, "yourself": {"_count": 1}}, "discovering": {"_count": 1, "his": {"_count": 1}}, "Ariy": {"_count": 1, "Potter": {"_count": 1}}, "Florean": {"_count": 1, "Fortescue": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "plans": {"_count": 1, "for": {"_count": 1}}, "illustrious": {"_count": 1, "wizards": {"_count": 1}}, "Notts": {"_count": 1, "father": {"_count": 1}}, "remaining": {"_count": 1, "safely": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "felt": {"_count": 1}}, "staff": {"_count": 1, "appointments": {"_count": 1}}, "merrily": {"_count": 1, "it": {"_count": 1}}, "Morfin": {"_count": 1, "": {"_count": 1}}, "giggling": {"_count": 1, "and": {"_count": 1}}, "McLaggen": {"_count": 4, "": {"_count": 1}, "and": {"_count": 2}, "hitting": {"_count": 1}}, "\u2018the": {"_count": 1, "Prince": {"_count": 1}}, "Monday": {"_count": 1, "night": {"_count": 1}}, "following": {"_count": 1, "Malfoy": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "twothirds": {"_count": 1, "Rons": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "dont": {"_count": 1, "look": {"_count": 1}}, "Stan": {"_count": 1, "": {"_count": 1}}, "Patronuses": {"_count": 1, "": {"_count": 1}}, "Lupins": {"_count": 1, "mission": {"_count": 1}}, "Horcruxes": {"_count": 9, "": {"_count": 5}, "and": {"_count": 1}, "sir": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "Slughorn": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}}, "shuttin": {"_count": 1, "us": {"_count": 1}}, "I": {"_count": 1, "mended": {"_count": 1}}, "missing": {"_count": 1, "a": {"_count": 1}}, "old": {"_count": 1, "teachers": {"_count": 1}}, "Apparition": {"_count": 1, "Ron": {"_count": 1}}, "setting": {"_count": 1, "Kreacher": {"_count": 1}}, "voicing": {"_count": 1, "it": {"_count": 1}}, "stopping": {"_count": 1, "Voldemort": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 1}, "into": {"_count": 1}}, "burying": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "litter": {"_count": 1, "than": {"_count": 1}}, "individual": {"_count": 1, "players": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "interschool": {"_count": 1, "competitions": {"_count": 1}}, "Eileen": {"_count": 3, "Prince": {"_count": 3}}, "Not": {"_count": 1, "all": {"_count": 1}}, "nasty": {"_count": 1, "accusations": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "fire": {"_count": 1, "they": {"_count": 1}}, "tonight": {"_count": 1, "Dumbledore": {"_count": 1}}, "phoenix": {"_count": 1, "song": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "Dumbledores": {"_count": 3, "funeral": {"_count": 1}, "final": {"_count": 1}, "willingness": {"_count": 1}}, "R": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "even": {"_count": 1}}, "merpeople": {"_count": 1, "rights": {"_count": 1}}, "much": {"_count": 1, "worse": {"_count": 1}}, "underage": {"_count": 1, "magic": {"_count": 1}}, "fresh": {"_count": 1, "air": {"_count": 1}}, "wands": {"_count": 2, "had": {"_count": 1}, "like": {"_count": 1}}, "MadEye": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "finding": {"_count": 1, "the": {"_count": 1}}, "wandwork": {"_count": 1, "either": {"_count": 1}}, "Muriel": {"_count": 1, "": {"_count": 1}}, "Gregorovitch": {"_count": 2, "but": {"_count": 1}, "making": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "Ariana": {"_count": 1, "began": {"_count": 1}}, "information": {"_count": 1, "on": {"_count": 1}}, "Tonks": {"_count": 1, "": {"_count": 1}}, "James": {"_count": 1, "and": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "navy": {"_count": 1, "blue": {"_count": 1}}, "cutting": {"_count": 1, "off": {"_count": 1}}, "protective": {"_count": 1, "charms": {"_count": 1}}, "Dirk": {"_count": 1, "Cresswell": {"_count": 1}}, "wandlore": {"_count": 1, "": {"_count": 1}}, "think": {"_count": 1, "Ron": {"_count": 1}}, "Wizard": {"_count": 1, "dominance": {"_count": 1}}, "certain": {"_count": 1, "kinds": {"_count": 1}}, "repairing": {"_count": 1, "Harrys": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "whatll": {"_count": 1, "happen": {"_count": 1}}, "extra": {"_count": 1, "powerful": {"_count": 1}}, "charms": {"_count": 1, "wearing": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "Wrackspurts": {"_count": 1, "and": {"_count": 1}}, "wizards": {"_count": 1, "versus": {"_count": 1}}, "precisely": {"_count": 1, "that": {"_count": 1}}, "whose": {"_count": 1, "race": {"_count": 1}}, "looking": {"_count": 1, "handsome": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "Travers": {"_count": 1, "and": {"_count": 1}}, "exactly": {"_count": 1, "where": {"_count": 1}}, "dementors": {"_count": 1, "": {"_count": 1}}, "yourself": {"_count": 1, "breaking": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "school": {"_count": 1, "Id": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "killing": {"_count": 1, "a": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "gathering": {"_count": 1, "up": {"_count": 1}}, "services": {"_count": 1, "you": {"_count": 1}}, "bringing": {"_count": 1, "them": {"_count": 1}}, "once": {"_count": 1, "a": {"_count": 1}}}, "Potters": {"_count": 100, "": {"_count": 8, ".": {"_count": 6}, "?": {"_count": 1}, "!": {"_count": 1}}, "arrived": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 3, "a": {"_count": 1}, "been": {"_count": 1}, "his": {"_count": 1}}, "away": {"_count": 1, "they": {"_count": 1}}, "thats": {"_count": 1, "right": {"_count": 1}}, "were": {"_count": 1, "involved": {"_count": 1}}, "knew": {"_count": 2, "very": {"_count": 1}, "You": {"_count": 1}}, "son": {"_count": 4, "Harry": {"_count": 1}, "goin": {"_count": 1}, "": {"_count": 1}, "safe": {"_count": 1}}, "safe": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "been": {"_count": 3, "sent": {"_count": 1}, "hiding": {"_count": 1}, "mistreated": {"_count": 1}}, "smiled": {"_count": 1, "and": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "obviously": {"_count": 1, "spotted": {"_count": 1}}, "coming": {"_count": 1, "hes": {"_count": 1}}, "own": {"_count": 1, "good": {"_count": 1}}, "giving": {"_count": 1, "out": {"_count": 1}}, "life": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "marked": {"_count": 1, "him": {"_count": 1}}, "written": {"_count": 1, "in": {"_count": 1}}, "SecretKeeper": {"_count": 4, "": {"_count": 2}, "himself": {"_count": 1}, "he": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 2, "": {"_count": 1}, "Draco": {"_count": 1}}, "have": {"_count": 1, "made": {"_count": 1}}, "really": {"_count": 1, "putting": {"_count": 1}}, "delicate": {"_count": 1, "ears": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "Secret": {"_count": 3, "Keeper": {"_count": 1}, "Heartache": {"_count": 2}}, "godfather": {"_count": 1, "hereby": {"_count": 1}}, "Karkaroff": {"_count": 1, "said": {"_count": 1}}, "determination": {"_count": 1, "to": {"_count": 1}}, "name": {"_count": 3, "in": {"_count": 1}, "under": {"_count": 1}, "on": {"_count": 1}}, "wedding": {"_count": 2, "": {"_count": 1}, "papered": {"_count": 1}}, "greatest": {"_count": 1, "friend": {"_count": 1}}, "egg": {"_count": 1, "": {"_count": 1}}, "best": {"_count": 1, "interests": {"_count": 1}}, "score": {"_count": 1, "is": {"_count": 1}}, "well": {"_count": 1, "wishers": {"_count": 1}}, "wellwishers": {"_count": 1, "must": {"_count": 1}}, "strange": {"_count": 2, "behavior": {"_count": 1}, "escape": {"_count": 1}}, "brain": {"_count": 1, "was": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "map": {"_count": 1, "of": {"_count": 1}}, "Dumbledores": {"_count": 1, "favorite": {"_count": 1}}, "appearance": {"_count": 1, "did": {"_count": 1}}, "for": {"_count": 1, "Sunday": {"_count": 1}}, "offenses": {"_count": 1, "under": {"_count": 1}}, "behavior": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "letter": {"_count": 1, "": {"_count": 1}}, "owl": {"_count": 1, "": {"_count": 1}}, "meeting": {"_count": 1, "with": {"_count": 1}}, "identical": {"_count": 1, "twin": {"_count": 1}}, "Army": {"_count": 1, "": {"_count": 1}}, "incidentally": {"_count": 1, "who": {"_count": 1}}, "got": {"_count": 1, "more": {"_count": 1}}, "put": {"_count": 1, "together": {"_count": 1}}, "now": {"_count": 1, "having": {"_count": 1}}, "continued": {"_count": 1, "existence": {"_count": 1}}, "relatives": {"_count": 1, "": {"_count": 1}}, "moving": {"_count": 1, "through": {"_count": 1}}, "line": {"_count": 1, "up": {"_count": 1}}, "gasping": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 2, "look": {"_count": 1}, "are": {"_count": 1}}, "clothes": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "as": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "Someone": {"_count": 1}}, "an": {"_count": 1, "arrogant": {"_count": 1}}, "ddead": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "one": {"_count": 1}}, "approached": {"_count": 1, "the": {"_count": 1}}}, "Potter": {"_count": 1077, "was": {"_count": 14, "Mrs": {"_count": 1}, "still": {"_count": 1}, "a": {"_count": 2}, "safe": {"_count": 1}, "back": {"_count": 1}, "wandering": {"_count": 1}, "first": {"_count": 1}, "behind": {"_count": 1}, "the": {"_count": 1}, "snoring": {"_count": 1}, "taking": {"_count": 1}, "going": {"_count": 1}, "there": {"_count": 1}}, "wasnt": {"_count": 2, "such": {"_count": 1}, "a": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 1}, "has": {"_count": 1}}, "": {"_count": 385, ".": {"_count": 174}, "?": {"_count": 110}, "!": {"_count": 101}}, "are": {"_count": 3, "are": {"_count": 1}, "those": {"_count": 1}, "you": {"_count": 1}}, "Voldemorts": {"_count": 1, "power": {"_count": 1}}, "come": {"_count": 5, "and": {"_count": 1}, "down": {"_count": 1}, "here": {"_count": 1}, "back": {"_count": 1}, "on": {"_count": 1}}, "Day": {"_count": 1, "in": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "the": {"_count": 17, "boy": {"_count": 1}, "famous": {"_count": 1}, "Mudbloods": {"_count": 1}, "champions": {"_count": 3}, "first": {"_count": 1}, "Daily": {"_count": 1}, "Dark": {"_count": 3}, "two": {"_count": 1}, "only": {"_count": 1}, "Chosen": {"_count": 1}, "most": {"_count": 1}, "whole": {"_count": 1}, "sword": {"_count": 1}}, "in": {"_count": 9, "his": {"_count": 2}, "person": {"_count": 2}, "case": {"_count": 1}, "front": {"_count": 1}, "your": {"_count": 1}, "their": {"_count": 1}, "here": {"_count": 1}}, "The": {"_count": 3, "Cupboard": {"_count": 1}, "Smallest": {"_count": 1}, "Floor": {"_count": 1}}, "Room": {"_count": 1, "1": {"_count": 1}}, "We": {"_count": 3, "are": {"_count": 1}, "have": {"_count": 2}}, "at": {"_count": 4, "school": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}, "last": {"_count": 1}}, "not": {"_count": 6, "knowin": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 1}, "kill": {"_count": 1}, "far": {"_count": 1}}, "welcome": {"_count": 1, "back": {"_count": 1}}, "cant": {"_count": 1, "believe": {"_count": 1}}, "Im": {"_count": 1, "just": {"_count": 1}}, "just": {"_count": 1, "cant": {"_count": 1}}, "chorused": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 65, "Harry": {"_count": 1}, "Firenze": {"_count": 1}, "Malfoy": {"_count": 7}, "Nick": {"_count": 1}, "Snape": {"_count": 18}, "Professor": {"_count": 10}, "Riddle": {"_count": 1}, "Riddles": {"_count": 2}, "Aunt": {"_count": 1}, "Madam": {"_count": 5}, "Winky": {"_count": 1}, "a": {"_count": 1}, "Moody": {"_count": 3}, "Lucius": {"_count": 2}, "Umbridge": {"_count": 4}, "and": {"_count": 1}, "Dean": {"_count": 1}, "Narcissas": {"_count": 1}, "Griphook": {"_count": 1}, "the": {"_count": 1}, "McGonagall": {"_count": 1}, "Voldemorts": {"_count": 1}}, "he": {"_count": 28, "said": {"_count": 14}, "has": {"_count": 1}, "was": {"_count": 2}, "growled": {"_count": 2}, "muttered": {"_count": 1}, "leered": {"_count": 1}, "panted": {"_count": 1}, "read": {"_count": 1}, "will": {"_count": 1}, "must": {"_count": 1}, "squeaked": {"_count": 2}, "wants": {"_count": 1}}, "Harry": {"_count": 6, "": {"_count": 2}, "moved": {"_count": 1}, "was": {"_count": 1}, "stared": {"_count": 1}, "registered": {"_count": 1}}, "did": {"_count": 3, "she": {"_count": 1}, "say": {"_count": 1}, "not": {"_count": 1}}, "where": {"_count": 1, "would": {"_count": 1}}, "between": {"_count": 1, "monkshood": {"_count": 1}}, "asphodel": {"_count": 1, "and": {"_count": 1}}, "why": {"_count": 2, "didnt": {"_count": 1}, "are": {"_count": 1}}, "follow": {"_count": 1, "me": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 1}, "meeting": {"_count": 1}}, "or": {"_count": 4, "I": {"_count": 2}, "Ill": {"_count": 1}, "it": {"_count": 1}}, "first": {"_count": 2, "years": {"_count": 1}, "arrived": {"_count": 1}}, "for": {"_count": 4, "President": {"_count": 2}, "Harry": {"_count": 1}, "which": {"_count": 1}}, "but": {"_count": 5, "if": {"_count": 1}, "thats": {"_count": 1}, "Winky": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}}, "whos": {"_count": 1, "got": {"_count": 1}}, "I": {"_count": 16, "thought": {"_count": 2}, "know": {"_count": 2}, "think": {"_count": 4}, "thank": {"_count": 1}, "have": {"_count": 1}, "will": {"_count": 1}, "am": {"_count": 2}, "appreciate": {"_count": 1}, "tell": {"_count": 1}, "that": {"_count": 1}}, "their": {"_count": 2, "hero": {"_count": 1}, "numberone": {"_count": 1}}, "we": {"_count": 3, "owe": {"_count": 1}, "will": {"_count": 1}, "should": {"_count": 1}}, "an": {"_count": 1, "Hermione": {"_count": 1}}, "boy": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}, "to": {"_count": 1}}, "do": {"_count": 3, "you": {"_count": 2}, "try": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "asks": {"_count": 1, "if": {"_count": 1}}, "is": {"_count": 26, "humble": {"_count": 1}, "valiant": {"_count": 1}, "safe": {"_count": 1}, "not": {"_count": 2}, "greater": {"_count": 1}, "flying": {"_count": 1}, "a": {"_count": 1}, "my": {"_count": 1}, "clear": {"_count": 1}, "as": {"_count": 1}, "going": {"_count": 1}, "unaware": {"_count": 1}, "here": {"_count": 2}, "too": {"_count": 1}, "brave": {"_count": 1}, "very": {"_count": 1}, "ready": {"_count": 1}, "it": {"_count": 1}, "quite": {"_count": 1}, "concerned": {"_count": 1}, "still": {"_count": 1}, "dead": {"_count": 3}}, "speaks": {"_count": 1, "not": {"_count": 1}}, "met": {"_count": 1, "the": {"_count": 1}}, "escaped": {"_count": 2, "yet": {"_count": 1}, "me": {"_count": 1}}, "to": {"_count": 5, "warn": {"_count": 1}, "empty": {"_count": 1}, "them": {"_count": 1}, "help": {"_count": 1}, "enter": {"_count": 1}}, "must": {"_count": 9, "not": {"_count": 5}, "stay": {"_count": 1}, "say": {"_count": 1}, "go": {"_count": 1}, "wake": {"_count": 1}}, "goes": {"_count": 2, "back": {"_count": 1}, "where": {"_count": 1}}, "mustnt": {"_count": 2, "be": {"_count": 2}}, "thought": {"_count": 2, "his": {"_count": 1}, "he": {"_count": 1}}, "might": {"_count": 5, "not": {"_count": 1}, "resort": {"_count": 1}, "be": {"_count": 1}, "try": {"_count": 1}, "die": {"_count": 1}}, "will": {"_count": 10, "have": {"_count": 2}, "be": {"_count": 4}, "do": {"_count": 1}, "miss": {"_count": 1}, "not": {"_count": 1}, "come": {"_count": 1}}, "leaves": {"_count": 1, "Dobby": {"_count": 1}}, "got": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 1}, "such": {"_count": 1}, "to": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "and": {"_count": 52, "his": {"_count": 6}, "sealed": {"_count": 1}, "the": {"_count": 12}, "Weasley": {"_count": 4}, "all": {"_count": 1}, "you": {"_count": 3}, "Miss": {"_count": 1}, "myself": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 2}, "if": {"_count": 1}, "punishments": {"_count": 1}, "congratulations": {"_count": 1}, "tonight": {"_count": 1}, "Weasleys": {"_count": 1}, "Chang": {"_count": 1}, "instead": {"_count": 1}, "I": {"_count": 4}, "that": {"_count": 1}, "Sirius": {"_count": 1}, "theyre": {"_count": 1}, "him": {"_count": 1}, "its": {"_count": 1}, "theres": {"_count": 1}, "out": {"_count": 1}, "nobody": {"_count": 1}, "in": {"_count": 1}}, "smirked": {"_count": 1, "Malfoy": {"_count": 1}}, "fan": {"_count": 2, "club": {"_count": 2}}, "Weasley": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "Longbottom": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 2}}, "has": {"_count": 20, "done": {"_count": 1}, "always": {"_count": 2}, "another": {"_count": 1}, "come": {"_count": 1}, "to": {"_count": 2}, "kindly": {"_count": 1}, "had": {"_count": 2}, "quite": {"_count": 1}, "a": {"_count": 1}, "been": {"_count": 2}, "no": {"_count": 1}, "never": {"_count": 1}, "achieved": {"_count": 1}, "few": {"_count": 1}, "escaped": {"_count": 1}, "work": {"_count": 1}}, "came": {"_count": 3, "back": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "go": {"_count": 4, "back": {"_count": 1}, "home": {"_count": 2}, "": {"_count": 1}}, "would": {"_count": 5, "get": {"_count": 1}, "ever": {"_count": 1}, "be": {"_count": 1}, "think": {"_count": 1}, "know": {"_count": 1}}, "hurt": {"_count": 1, "enough": {"_count": 1}}, "only": {"_count": 1, "knew": {"_count": 1}}, "survived": {"_count": 2, "and": {"_count": 1}, "at": {"_count": 1}}, "shone": {"_count": 1, "like": {"_count": 1}}, "stay": {"_count": 1, "here": {"_count": 1}}, "risks": {"_count": 1, "his": {"_count": 1}}, "then": {"_count": 1, "Ernie": {"_count": 1}}, "had": {"_count": 10, "some": {"_count": 1}, "not": {"_count": 1}, "become": {"_count": 1}, "tried": {"_count": 1}, "gone": {"_count": 2}, "a": {"_count": 1}, "met": {"_count": 1}, "lived": {"_count": 1}, "anything": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "lurking": {"_count": 1, "Peeves": {"_count": 1}}, "you": {"_count": 18, "rotter": {"_count": 3}, "can": {"_count": 1}, "cant": {"_count": 1}, "know": {"_count": 3}, "are": {"_count": 2}, "just": {"_count": 1}, "did": {"_count": 1}, "need": {"_count": 1}, "must": {"_count": 1}, "deserve": {"_count": 1}, "tell": {"_count": 1}, "may": {"_count": 1}, "cannot": {"_count": 1}}, "she": {"_count": 20, "said": {"_count": 14}, "glanced": {"_count": 1}, "told": {"_count": 1}, "whispered": {"_count": 2}, "added": {"_count": 1}, "continued": {"_count": 1}}, "liked": {"_count": 1, "your": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 1}, "number": {"_count": 1}}, "freed": {"_count": 1, "Dobby": {"_count": 1}}, "set": {"_count": 2, "Dobby": {"_count": 2}}, "Please": {"_count": 1, "note": {"_count": 1}}, "felt": {"_count": 1, "just": {"_count": 1}}, "dont": {"_count": 1, "hesitate": {"_count": 1}}, "that": {"_count": 11, "Sibyll": {"_count": 1}, "his": {"_count": 1}, "table": {"_count": 1}, "night": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}, "concludes": {"_count": 1}, "is": {"_count": 1}, "you": {"_count": 1}, "my": {"_count": 1}, "was": {"_count": 1}}, "so": {"_count": 4, "you": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}, "wisely": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "could": {"_count": 1, "do": {"_count": 1}}, "youll": {"_count": 1, "understand": {"_count": 1}}, "Weve": {"_count": 1, "got": {"_count": 1}}, "interrupted": {"_count": 1, "Professor": {"_count": 1}}, "were": {"_count": 2, "brothers": {"_count": 1}, "talking": {"_count": 1}}, "trusted": {"_count": 1, "Black": {"_count": 1}}, "told": {"_count": 2, "Dumbledore": {"_count": 1}, "her": {"_count": 1}}, "insisted": {"_count": 1, "on": {"_count": 1}}, "safe": {"_count": 1, "from": {"_count": 1}}, "Snape": {"_count": 2, "said": {"_count": 1}, "continued": {"_count": 1}}, "Bell": {"_count": 1, "Johnson": {"_count": 1}}, "youre": {"_count": 2, "in": {"_count": 1}, "here": {"_count": 1}}, "what": {"_count": 3, "do": {"_count": 2}, "is": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "whoever": {"_count": 1, "he": {"_count": 1}}, "woke": {"_count": 1, "with": {"_count": 1}}, "likely": {"_count": 1, "to": {"_count": 1}}, "Moody": {"_count": 4, "growled": {"_count": 2}, "said": {"_count": 1}, "muttered": {"_count": 1}}, "fought": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 3, "good": {"_count": 2}, "pleased": {"_count": 1}}, "Karkaroff": {"_count": 1, "you": {"_count": 1}}, "growled": {"_count": 2, "Moody": {"_count": 2}}, "Malfoy": {"_count": 2, "said": {"_count": 1}, "I": {"_count": 1}}, "attacked": {"_count": 1, "me": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "leave": {"_count": 1, "your": {"_count": 1}}, "take": {"_count": 1, "your": {"_count": 1}}, "whose": {"_count": 1, "eyes": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 13, "": {"_count": 8}, "and": {"_count": 1}, "he": {"_count": 1}, "good": {"_count": 1}, "said": {"_count": 1}, "squeaked": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Dobby": {"_count": 2, "goes": {"_count": 1}, "whispered": {"_count": 1}}, "squeaked": {"_count": 2, "Dobby": {"_count": 1}, "Professor": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "a": {"_count": 3, "word": {"_count": 2}, "prefect": {"_count": 1}}, "\u2018Merry": {"_count": 1, "Christmas": {"_count": 1}}, "his": {"_count": 2, "present": {"_count": 1}, "whole": {"_count": 1}}, "they": {"_count": 2, "is": {"_count": 1}, "only": {"_count": 1}}, "if": {"_count": 2, "thats": {"_count": 1}, "were": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "standing": {"_count": 1, "exactly": {"_count": 1}}, "needs": {"_count": 1, "to": {"_count": 1}}, "Ten": {"_count": 1, "minutes": {"_count": 1}}, "breathe": {"_count": 1, "underwater": {"_count": 1}}, "lose": {"_count": 1, "his": {"_count": 1}}, "used": {"_count": 1, "gillyweed": {"_count": 1}}, "whats": {"_count": 1, "ailing": {"_count": 1}}, "can": {"_count": 2, "do": {"_count": 1}, "speak": {"_count": 1}}, "false": {"_count": 2, "and": {"_count": 1}, "hope": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 1}, "now": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 2, "right": {"_count": 1}, "these": {"_count": 1}}, "wants": {"_count": 3, "a": {"_count": 1}, "to": {"_count": 1}, "him": {"_count": 1}}, "storming": {"_count": 1, "from": {"_count": 1}}, "thatAlbus": {"_count": 1, "Dumbledore": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "blossomed": {"_count": 1, "from": {"_count": 1}}, "even": {"_count": 1, "then": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "saw": {"_count": 2, "me": {"_count": 2}}, "believed": {"_count": 1, "my": {"_count": 1}}, "my": {"_count": 1, "master": {"_count": 1}}, "ran": {"_count": 1, "to": {"_count": 1}}, "run": {"_count": 1, "into": {"_count": 1}}, "bringing": {"_count": 1, "Dumbledore": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "Further": {"_count": 1, "to": {"_count": 1}}, "Disciplinary": {"_count": 1, "Hearing": {"_count": 1}}, "boys": {"_count": 2, "hearing": {"_count": 1}, "head": {"_count": 1}}, "resident": {"_count": 1, "at": {"_count": 1}}, "lives": {"_count": 2, "said": {"_count": 1}, "is": {"_count": 1}}, "drawled": {"_count": 1, "Mr": {"_count": 1}}, "because": {"_count": 2, "Ill": {"_count": 1}, "he": {"_count": 1}}, "which": {"_count": 1, "means": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "use": {"_count": 1, "your": {"_count": 1}}, "hows": {"_count": 1, "your": {"_count": 1}}, "it": {"_count": 4, "could": {"_count": 1}, "is": {"_count": 1}, "was": {"_count": 1}, "makes": {"_count": 1}}, "does": {"_count": 2, "not": {"_count": 1}, "what": {"_count": 1}}, "having": {"_count": 1, "bad": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "says": {"_count": 1, "he": {"_count": 1}}, "kid": {"_count": 1, "we": {"_count": 1}}, "doesnt": {"_count": 3, "realize": {"_count": 1}, "care": {"_count": 1}, "mean": {"_count": 1}}, "few": {"_count": 1, "of": {"_count": 1}}, "Names": {"_count": 1, "Death": {"_count": 1}}, "1": {"_count": 1, "5": {"_count": 1}}, "Great": {"_count": 1, "Hall": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "organized": {"_count": 1, "it": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "let": {"_count": 1, "us": {"_count": 1}}, "Potions": {"_count": 1, "she": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "using": {"_count": 1, "my": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "last": {"_count": 1, "summer": {"_count": 1}}, "communicating": {"_count": 1, "just": {"_count": 1}}, "too": {"_count": 1, "shall": {"_count": 1}}, "Ron": {"_count": 1, "Weasley": {"_count": 1}}, "repeated": {"_count": 2, "the": {"_count": 1}, "Grey": {"_count": 1}}, "as": {"_count": 3, "I": {"_count": 2}, "quickly": {"_count": 1}}, "about": {"_count": 1, "both": {"_count": 1}}, "until": {"_count": 1, "weve": {"_count": 1}}, "your": {"_count": 1, "race": {"_count": 1}}, "either": {"_count": 1, "give": {"_count": 1}}, "He": {"_count": 1, "made": {"_count": 1}}, "thwart": {"_count": 1, "me": {"_count": 1}}, "page": {"_count": 1, "nine": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "still": {"_count": 1, "alive": {"_count": 1}}, "brat": {"_count": 1, "Kreacher": {"_count": 1}}, "precious": {"_count": 1, "Potter": {"_count": 1}}, "obviously": {"_count": 1, "he": {"_count": 1}}, "although": {"_count": 1, "you": {"_count": 1}}, "here": {"_count": 3, "so": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "authority": {"_count": 1, "it": {"_count": 1}}, "knows": {"_count": 1, "that": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "hasnt": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 1, "at": {"_count": 1}}, "sneered": {"_count": 1, "Malfoy": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "we": {"_count": 1}}, "belongs": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "from": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "Apparates": {"_count": 1, "or": {"_count": 1}}, "whom": {"_count": 1, "she": {"_count": 1}}, "spoke": {"_count": 1, "exclusively": {"_count": 1}}, "running": {"_count": 1, "away": {"_count": 1}}, "later": {"_count": 1, "gave": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "visited": {"_count": 1, "my": {"_count": 1}}, "whatever": {"_count": 1, "Dumbledore": {"_count": 1}}, "lost": {"_count": 1, "their": {"_count": 1}}, "fell": {"_count": 1, "like": {"_count": 1}}, "party": {"_count": 1, "in": {"_count": 1}}, "parties": {"_count": 1, "are": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 1, "we": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "whispered": {"_count": 1, "the": {"_count": 1}}, "dead": {"_count": 1, "by": {"_count": 1}}, "its": {"_count": 1, "POTTER": {"_count": 1}}, "dyou": {"_count": 1, "want": {"_count": 1}}, "try": {"_count": 1, "to": {"_count": 1}}, "Minerva": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "them": {"_count": 1}}, "directly": {"_count": 1, "to": {"_count": 1}}, "saved": {"_count": 1, "you": {"_count": 1}}, "fancies": {"_count": 1, "you": {"_count": 1}}, "Dumbledore": {"_count": 1, "as": {"_count": 1}}}, "sister": {"_count": 129, "but": {"_count": 3, "they": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}}, "because": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 12, "her": {"_count": 3}, "who": {"_count": 1}, "close": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "smacking": {"_count": 1}, "Snape": {"_count": 1}, "she": {"_count": 1}, "a": {"_count": 1}, "learn": {"_count": 1}}, "": {"_count": 40, ".": {"_count": 28}, "!": {"_count": 5}, "?": {"_count": 7}}, "like": {"_count": 1, "that": {"_count": 1}}, "lately": {"_count": 1, "have": {"_count": 1}}, "Marge": {"_count": 2, "who": {"_count": 1}, "one": {"_count": 1}}, "being": {"_count": 2, "what": {"_count": 1}, "Sorted": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "half": {"_count": 1, "laughing": {"_count": 1}}, "is": {"_count": 2, "also": {"_count": 1}, "too": {"_count": 1}}, "said": {"_count": 2, "said": {"_count": 1}, "Ron": {"_count": 1}}, "Ginny": {"_count": 3, "": {"_count": 2}, "brightly": {"_count": 1}}, "he": {"_count": 7, "had": {"_count": 3}, "added": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 1}, "went": {"_count": 1}}, "was": {"_count": 5, "a": {"_count": 3}, "fair": {"_count": 1}, "six": {"_count": 1}}, "might": {"_count": 1, "": {"_count": 1}}, "Padma": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "like": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "got": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Gabrielle": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 2, "Bellatrix": {"_count": 1}, "his": {"_count": 1}}, "her": {"_count": 1, "only": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "followed": {"_count": 2, "without": {"_count": 1}, "the": {"_count": 1}}, "will": {"_count": 1, "consent": {"_count": 1}}, "slouched": {"_count": 1, "into": {"_count": 1}}, "who": {"_count": 2, "now": {"_count": 1}, "was": {"_count": 1}}, "didnt": {"_count": 1, "really": {"_count": 1}}, "snogging": {"_count": 1, "people": {"_count": 1}}, "all": {"_count": 1, "summer": {"_count": 1}}, "Harry": {"_count": 2, "told": {"_count": 1}, "moved": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "falling": {"_count": 1, "for": {"_count": 1}}, "running": {"_count": 1, "down": {"_count": 1}}, "as": {"_count": 1, "unlike": {"_count": 1}}, "since": {"_count": 1, "she": {"_count": 1}}, "to": {"_count": 1, "care": {"_count": 1}}, "Ariana": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "intrigued": {"_count": 1}}, "Bellatrix": {"_count": 1, "became": {"_count": 1}}, "around": {"_count": 1, "trying": {"_count": 1}}, "suffered": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "for": {"_count": 1, "company": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "stopping": {"_count": 1, "her": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "free": {"_count": 1, "to": {"_count": 1}}, "teaches": {"_count": 1, "Muggle": {"_count": 1}}, "in": {"_count": 2, "there": {"_count": 1}, "tow": {"_count": 1}}, "seem": {"_count": 1, "unable": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}}, "hadnt": {"_count": 296, "met": {"_count": 1, "for": {"_count": 1}}, "he": {"_count": 11, "might": {"_count": 1}, "got": {"_count": 2}, "kept": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}, "noticed": {"_count": 1}, "thought": {"_count": 1}, "explained": {"_count": 1}}, "been": {"_count": 55, "able": {"_count": 3}, "at": {"_count": 1}, "lying": {"_count": 2}, "doing": {"_count": 1}, "so": {"_count": 3}, "upset": {"_count": 1}, "muttering": {"_count": 1}, "high": {"_count": 1}, "for": {"_count": 8}, "a": {"_count": 4}, "on": {"_count": 1}, "feeling": {"_count": 1}, "scared": {"_count": 1}, "seen": {"_count": 1}, "lit": {"_count": 1}, "one": {"_count": 1}, "in": {"_count": 2}, "shining": {"_count": 1}, "bitten": {"_count": 1}, "here": {"_count": 1}, "wearing": {"_count": 2}, "present": {"_count": 1}, "mentioned": {"_count": 1}, "much": {"_count": 2}, "Cedrics": {"_count": 1}, "working": {"_count": 1}, "the": {"_count": 1}, "driven": {"_count": 1}, "captioned": {"_count": 1}, "going": {"_count": 1}, "holding": {"_count": 1}, "there": {"_count": 2}, "her": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}, "picking": {"_count": 1}}, "said": {"_count": 3, "anything": {"_count": 2}, "Harry": {"_count": 1}}, "done": {"_count": 10, "anything": {"_count": 2}, "it": {"_count": 7}, "a": {"_count": 1}}, "received": {"_count": 1, "his": {"_count": 1}}, "counted": {"_count": 1, "on": {"_count": 1}}, "they": {"_count": 4, "been": {"_count": 2}, "spoken": {"_count": 1}, "made": {"_count": 1}}, "noticed": {"_count": 12, "the": {"_count": 2}, "him": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 2}, "that": {"_count": 1}, "anything": {"_count": 1}, "you": {"_count": 1}, "mate": {"_count": 1}, "": {"_count": 2}}, "known": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "pointed": {"_count": 1, "it": {"_count": 1}}, "looked": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "had": {"_count": 10, "any": {"_count": 2}, "a": {"_count": 3}, "anything": {"_count": 1}, "much": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}, "your": {"_count": 1}}, "learned": {"_count": 1, "all": {"_count": 1}}, "expected": {"_count": 2, "something": {"_count": 1}, "more": {"_count": 1}}, "stopped": {"_count": 1, "her": {"_count": 1}}, "brought": {"_count": 1, "Harry": {"_count": 1}}, "mentioned": {"_count": 3, "the": {"_count": 1}, "Black": {"_count": 1}, "Viktor": {"_count": 1}}, "tried": {"_count": 3, "": {"_count": 1}, "to": {"_count": 2}}, "moved": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "even": {"_count": 5, "lasted": {"_count": 1}, "reached": {"_count": 1}, "remembered": {"_count": 1}, "got": {"_count": 1}, "felt": {"_count": 1}}, "gone": {"_count": 2, "more": {"_count": 1}, "off": {"_count": 1}}, "stolen": {"_count": 2, "Nevilles": {"_count": 1}, "either": {"_count": 1}}, "spoken": {"_count": 5, "to": {"_count": 2}, "": {"_count": 1}, "clearly": {"_count": 1}, "I": {"_count": 1}}, "realized": {"_count": 3, "what": {"_count": 2}, "how": {"_count": 1}}, "found": {"_count": 4, "me": {"_count": 1}, "him": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 1}}, "locked": {"_count": 1, "the": {"_count": 1}}, "seen": {"_count": 8, "the": {"_count": 2}, "what": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}, "Mr": {"_count": 1}, "Ginny": {"_count": 1}}, "broken": {"_count": 1, "any": {"_count": 1}}, "heard": {"_count": 6, "a": {"_count": 2}, "him": {"_count": 1}, "what": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}}, "paid": {"_count": 1, "attention": {"_count": 1}}, "melted": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "because": {"_count": 1, "Professor": {"_count": 1}}, "walked": {"_count": 1, "five": {"_count": 1}}, "told": {"_count": 8, "him": {"_count": 2}, "the": {"_count": 1}, "that": {"_count": 1}, "anyone": {"_count": 1}, "Cedric": {"_count": 1}, "me": {"_count": 1}, "Michael": {"_count": 1}}, "changed": {"_count": 1, "one": {"_count": 1}}, "practiced": {"_count": 1, "all": {"_count": 1}}, "all": {"_count": 1, "been": {"_count": 1}}, "really": {"_count": 4, "done": {"_count": 1}, "": {"_count": 1}, "intended": {"_count": 1}, "expected": {"_count": 1}}, "come": {"_count": 4, "back": {"_count": 1}, "out": {"_count": 1}, "today": {"_count": 1}, "up": {"_count": 1}}, "written": {"_count": 2, "back": {"_count": 1}, "\u2018try": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "thought": {"_count": 3, "of": {"_count": 3}}, "started": {"_count": 1, "so": {"_count": 1}}, "squashed": {"_count": 1, "him": {"_count": 1}}, "married": {"_count": 1, "Muggles": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "occurred": {"_count": 1}}, "left": {"_count": 2, "my": {"_count": 1}, "the": {"_count": 1}}, "mended": {"_count": 1, "Harrys": {"_count": 1}}, "joined": {"_count": 1, "in": {"_count": 1}}, "discovered": {"_count": 1, "this": {"_count": 1}}, "acted": {"_count": 1, "of": {"_count": 1}}, "called": {"_count": 1, "again": {"_count": 1}}, "got": {"_count": 4, "a": {"_count": 1}, "cold": {"_count": 1}, "around": {"_count": 1}, "rid": {"_count": 1}}, "let": {"_count": 2, "go": {"_count": 1}, "his": {"_count": 1}}, "picked": {"_count": 1, "him": {"_count": 1}}, "taught": {"_count": 1, "them": {"_count": 1}}, "understood": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "decided": {"_count": 1, "what": {"_count": 1}}, "covered": {"_count": 1, "": {"_count": 1}}, "anyone": {"_count": 1, "ever": {"_count": 1}}, "gotten": {"_count": 1, "to": {"_count": 1}}, "ordered": {"_count": 1, "a": {"_count": 1}}, "asked": {"_count": 2, "what": {"_count": 1}, "Cho": {"_count": 1}}, "rushed": {"_count": 1, "over": {"_count": 1}}, "bothered": {"_count": 3, "to": {"_count": 2}, "was": {"_count": 1}}, "just": {"_count": 2, "been": {"_count": 1}, "tried": {"_count": 1}}, "entered": {"_count": 3, "the": {"_count": 2}, "yourself": {"_count": 1}}, "won": {"_count": 1, "the": {"_count": 1}}, "forgotten": {"_count": 2, "Malfoys": {"_count": 1}, "Dudley": {"_count": 1}}, "taken": {"_count": 3, "place": {"_count": 1}, "the": {"_count": 1}, "points": {"_count": 1}}, "jinxed": {"_count": 1, "it": {"_count": 1}}, "touched": {"_count": 1, "these": {"_count": 1}}, "bought": {"_count": 2, "this": {"_count": 1}, "anything": {"_count": 1}}, "yet": {"_count": 2, "used": {"_count": 1}, "started": {"_count": 1}}, "put": {"_count": 3, "his": {"_count": 2}, "them": {"_count": 1}}, "mastered": {"_count": 1, "Summoning": {"_count": 1}}, "discussed": {"_count": 1, "what": {"_count": 1}}, "spotted": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "reacted": {"_count": 1, "at": {"_count": 1}}, "worked": {"_count": 3, "": {"_count": 1}, "out": {"_count": 1}, "properly": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "felt": {"_count": 1, "how": {"_count": 1}}, "turned": {"_count": 3, "up": {"_count": 2}, "around": {"_count": 1}}, "wasted": {"_count": 1, "time": {"_count": 1}}, "stayed": {"_count": 1, "in": {"_count": 1}}, "held": {"_count": 1, "me": {"_count": 1}}, "given": {"_count": 2, "the": {"_count": 1}, "up": {"_count": 1}}, "overheard": {"_count": 1, "what": {"_count": 1}}, "I": {"_count": 3, "wouldnt": {"_count": 1}, "": {"_count": 2}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 2, "": {"_count": 1}, "Molly": {"_count": 1}}, "Cedric": {"_count": 1, "had": {"_count": 1}}, "she": {"_count": 2, "": {"_count": 1}, "delivered": {"_count": 1}}, "needed": {"_count": 1, "me": {"_count": 1}}, "explained": {"_count": 1, "yourself": {"_count": 1}}, "offered": {"_count": 1, "to": {"_count": 1}}, "considered": {"_count": 1, "this": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "hesitated": {"_count": 1, "she": {"_count": 1}}, "Lily": {"_count": 1, "asked": {"_count": 1}}, "James": {"_count": 1, "replied": {"_count": 1}}, "Dont": {"_count": 1, "you": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "slipped": {"_count": 1, "him": {"_count": 1}}, "caught": {"_count": 1, "Harry": {"_count": 1}}, "become": {"_count": 1, "": {"_count": 1}}, "transformed": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "alerted": {"_count": 1, "Snape": {"_count": 1}}, "died": {"_count": 1, "first": {"_count": 1}}, "Dumbledore": {"_count": 3, "told": {"_count": 2}, "explained": {"_count": 1}}}, "met": {"_count": 201, "for": {"_count": 5, "several": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "their": {"_count": 1}}, "that": {"_count": 1, "Potter": {"_count": 1}}, "vampires": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 3}, "their": {"_count": 1}}, "Malfoy": {"_count": 2, "before": {"_count": 1}, "Harry": {"_count": 1}}, "him": {"_count": 22, "when": {"_count": 2}, "outside": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 2}, "and": {"_count": 3}, "": {"_count": 3}, "used": {"_count": 1}, "once": {"_count": 1}, "the": {"_count": 1}, "Id": {"_count": 1}, "strange": {"_count": 1}, "an": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}, "today": {"_count": 1}, "tonight": {"_count": 1}}, "in": {"_count": 3, "Romania": {"_count": 1}, "the": {"_count": 1}, "midair": {"_count": 1}}, "Draco": {"_count": 2, "Malfoy": {"_count": 2}}, "his": {"_count": 6, "eyes": {"_count": 2}, "ears": {"_count": 1}, "downfall": {"_count": 2}, "gaze": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "Some": {"_count": 1, "say": {"_count": 1}}, "their": {"_count": 5, "ears": {"_count": 1}, "nostrils": {"_count": 1}, "deaths": {"_count": 1}, "eyes": {"_count": 2}}, "a": {"_count": 6, "dragon": {"_count": 1}, "Gryffindor": {"_count": 1}, "vampire": {"_count": 1}, "fully": {"_count": 1}, "set": {"_count": 1}, "number": {"_count": 1}}, "many": {"_count": 1, "decent": {"_count": 1}}, "the": {"_count": 7, "Dark": {"_count": 1}, "sly": {"_count": 1}, "teachers": {"_count": 1}, "most": {"_count": 1}, "Minister": {"_count": 1}, "creature": {"_count": 1}, "Ministers": {"_count": 1}}, "either": {"_count": 1, "of": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 11}, "?": {"_count": 4}, "!": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 5, "said": {"_count": 1}, "on": {"_count": 1}, "you": {"_count": 1}, "all": {"_count": 1}, "Griphook": {"_count": 1}}, "only": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "what": {"_count": 1}}, "Hagrid": {"_count": 1, "down": {"_count": 1}}, "Neville": {"_count": 2, "Longbottom": {"_count": 2}}, "to": {"_count": 1, "look": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "Seamus": {"_count": 2, "Finnigan": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "one": {"_count": 2, "that": {"_count": 1}, "like": {"_count": 1}}, "Professor": {"_count": 3, "Lupin": {"_count": 2}, "Trelawney": {"_count": 1}}, "some": {"_count": 2, "of": {"_count": 2}}, "Black": {"_count": 1, "on": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "them": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "Hermione": {"_count": 4, "": {"_count": 2}, "in": {"_count": 1}, "also": {"_count": 1}}, "they": {"_count": 1, "agreed": {"_count": 1}}, "Crookshanks": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 2, "he": {"_count": 1}, "coming": {"_count": 1}}, "anyone": {"_count": 2, "who": {"_count": 1}, "quite": {"_count": 1}}, "before": {"_count": 2, "and": {"_count": 1}, "squeaked": {"_count": 1}}, "my": {"_count": 3, "wife": {"_count": 1}, "mother": {"_count": 1}, "leetle": {"_count": 1}}, "Harrys": {"_count": 5, "ears": {"_count": 1}, "and": {"_count": 2}, "gaze": {"_count": 1}, "for": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}, "up": {"_count": 3, "with": {"_count": 3}}, "another": {"_count": 1, "one": {"_count": 1}}, "her": {"_count": 8, "second": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 1}, "eyes": {"_count": 2}, "at": {"_count": 1}, "wouldnt": {"_count": 1}, "upstairs": {"_count": 1}}, "Sir": {"_count": 1, "Cadogan": {"_count": 1}}, "something": {"_count": 2, "by": {"_count": 1}, "squashy": {"_count": 1}}, "nothing": {"_count": 1, "for": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "Fudge": {"_count": 1}, "dismay": {"_count": 1}, "Dumbledore": {"_count": 1}}, "about": {"_count": 1, "twenty": {"_count": 1}}, "Mundungus": {"_count": 2, "havent": {"_count": 1}, "in": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 2, "behavior": {"_count": 1}, "attitude": {"_count": 1}}, "your": {"_count": 1, "mother": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "at": {"_count": 5, "the": {"_count": 3}, "one": {"_count": 1}, "Hogwarts": {"_count": 1}}, "McGonagall": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "in": {"_count": 1}}, "im": {"_count": 1, "just": {"_count": 1}}, "Bode": {"_count": 1, "he": {"_count": 1}}, "nearly": {"_count": 1, "four": {"_count": 1}}, "Firenze": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 1, "words": {"_count": 1}}, "Rons": {"_count": 1, "": {"_count": 1}}, "challenges": {"_count": 1, "even": {"_count": 1}}, "Peeves": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "nobody": {"_count": 2, "either": {"_count": 1}, "on": {"_count": 1}}, "Thats": {"_count": 1, "not": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "Hagrids": {"_count": 1, "halfbrother": {"_count": 1}}, "three": {"_count": 1, "years": {"_count": 1}}, "an": {"_count": 1, "invisible": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "Harry": {"_count": 1, "dyeh": {"_count": 1}}, "scraggy": {"_count": 1, "and": {"_count": 1}}, "Fenrir": {"_count": 1, "Greyback": {"_count": 1}}, "Dean": {"_count": 1, "here": {"_count": 1}}, "of": {"_count": 1, "how": {"_count": 1}}, "Aberforth": {"_count": 2, "s": {"_count": 1}, "": {"_count": 1}}, "crowds": {"_count": 1, "of": {"_count": 1}}, "Dumbledore": {"_count": 1, "he": {"_count": 1}}, "Death": {"_count": 1, "on": {"_count": 1}}}, "for": {"_count": 5352, "several": {"_count": 19, "years": {"_count": 4}, "hours": {"_count": 2}, "minutes": {"_count": 5}, "weeks": {"_count": 1}, "acres": {"_count": 1}, "people": {"_count": 1}, "deaths": {"_count": 1}, "seconds": {"_count": 1}, "days": {"_count": 1}, "long": {"_count": 2}}, "keeping": {"_count": 4, "the": {"_count": 1}, "Lockhart": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}}, "work": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "something": {"_count": 36, "": {"_count": 8}, "he": {"_count": 2}, "you": {"_count": 2}, "sir": {"_count": 1}, "else": {"_count": 2}, "like": {"_count": 3}, "said": {"_count": 1}, "that": {"_count": 2}, "a": {"_count": 1}, "matteroffact": {"_count": 1}, "inside": {"_count": 1}, "to": {"_count": 4}, "even": {"_count": 1}, "while": {"_count": 1}, "and": {"_count": 1}, "different": {"_count": 1}, "important": {"_count": 1}, "in": {"_count": 1}, "hurtful": {"_count": 1}, "or": {"_count": 1}}, "nothing": {"_count": 12, "could": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 6}, "after": {"_count": 1}, "you": {"_count": 1}, "more": {"_count": 1}, "less": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "home": {"_count": 2, "hoping": {"_count": 1}, "insurance": {"_count": 1}}, "them": {"_count": 73, "to": {"_count": 20}, "": {"_count": 15}, "either": {"_count": 1}, "somewhere": {"_count": 1}, "but": {"_count": 3}, "all": {"_count": 5}, "and": {"_count": 2}, "wondering": {"_count": 1}, "both": {"_count": 1}, "hovering": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 3}, "outside": {"_count": 2}, "its": {"_count": 1}, "anymore": {"_count": 1}, "on": {"_count": 2}, "when": {"_count": 2}, "does": {"_count": 1}, "beside": {"_count": 1}, "sitting": {"_count": 1}, "they": {"_count": 1}, "at": {"_count": 2}, "sir": {"_count": 1}, "said": {"_count": 1}, "by": {"_count": 1}, "as": {"_count": 1}, "too": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "eleven": {"_count": 5, "years": {"_count": 4}, "people": {"_count": 1}}, "": {"_count": 83, ".": {"_count": 30}, "?": {"_count": 48}, "!": {"_count": 5}}, "a": {"_count": 760, "lemon": {"_count": 1}, "quiet": {"_count": 1}, "moment": {"_count": 210}, "change": {"_count": 9}, "real": {"_count": 2}, "while": {"_count": 58}, "few": {"_count": 54}, "glass": {"_count": 2}, "supply": {"_count": 1}, "single": {"_count": 2}, "time": {"_count": 2}, "long": {"_count": 22}, "reason": {"_count": 5}, "Seeker": {"_count": 1}, "Halloween": {"_count": 1}, "flowered": {"_count": 1}, "bit": {"_count": 15}, "week": {"_count": 9}, "whole": {"_count": 6}, "big": {"_count": 1}, "last": {"_count": 4}, "wizard": {"_count": 3}, "vacation": {"_count": 1}, "message": {"_count": 1}, "second": {"_count": 17}, "short": {"_count": 4}, "minute": {"_count": 9}, "drink": {"_count": 4}, "month": {"_count": 9}, "landmark": {"_count": 1}, "better": {"_count": 10}, "quick": {"_count": 4}, "new": {"_count": 4}, "seat": {"_count": 1}, "scream": {"_count": 1}, "tidal": {"_count": 1}, "friend": {"_count": 1}, "threefootlong": {"_count": 1}, "little": {"_count": 5}, "rough": {"_count": 1}, "Deflating": {"_count": 1}, "cup": {"_count": 2}, "Love": {"_count": 1}, "fraction": {"_count": 6}, "glimpse": {"_count": 3}, "warmup": {"_count": 1}, "walk": {"_count": 6}, "man": {"_count": 4}, "bird": {"_count": 1}, "hundred": {"_count": 1}, "sign": {"_count": 5}, "weeklong": {"_count": 1}, "couple": {"_count": 8}, "days": {"_count": 1}, "nutter": {"_count": 1}, "split": {"_count": 9}, "crime": {"_count": 2}, "bag": {"_count": 3}, "butterbeer": {"_count": 1}, "closer": {"_count": 3}, "happy": {"_count": 1}, "glint": {"_count": 2}, "tail": {"_count": 1}, "teacher": {"_count": 1}, "wreck": {"_count": 1}, "good": {"_count": 3}, "dare": {"_count": 1}, "mans": {"_count": 1}, "century": {"_count": 1}, "godfather": {"_count": 1}, "son": {"_count": 1}, "square": {"_count": 1}, "large": {"_count": 3}, "sackful": {"_count": 1}, "more": {"_count": 1}, "fire": {"_count": 1}, "bank": {"_count": 1}, "family": {"_count": 1}, "tiny": {"_count": 1}, "witch": {"_count": 1}, "start": {"_count": 5}, "houseelf": {"_count": 2}, "servant": {"_count": 1}, "twelvebedroomed": {"_count": 1}, "fact": {"_count": 2}, "pet": {"_count": 1}, "brief": {"_count": 1}, "Change": {"_count": 1}, "brother": {"_count": 1}, "S": {"_count": 1}, "response": {"_count": 1}, "fiftyfoot": {"_count": 1}, "door": {"_count": 1}, "photocall": {"_count": 1}, "stroll": {"_count": 1}, "free": {"_count": 1}, "hat": {"_count": 1}, "dance": {"_count": 1}, "private": {"_count": 2}, "magnificent": {"_count": 1}, "partner": {"_count": 1}, "flowing": {"_count": 1}, "woman": {"_count": 1}, "mother": {"_count": 3}, "story": {"_count": 2}, "human": {"_count": 2}, "very": {"_count": 15}, "handkerchief": {"_count": 1}, "note": {"_count": 1}, "table": {"_count": 1}, "house": {"_count": 2}, "prize": {"_count": 1}, "niffler": {"_count": 1}, "theory": {"_count": 1}, "nighttime": {"_count": 1}, "hardtofind": {"_count": 1}, "yes": {"_count": 1}, "hard": {"_count": 1}, "fullgrown": {"_count": 1}, "life": {"_count": 1}, "near": {"_count": 1}, "lack": {"_count": 1}, "dragon": {"_count": 1}, "previous": {"_count": 1}, "third": {"_count": 4}, "year": {"_count": 6}, "solid": {"_count": 1}, "desk": {"_count": 1}, "topic": {"_count": 1}, "fight": {"_count": 2}, "safe": {"_count": 1}, "memorable": {"_count": 1}, "pay": {"_count": 1}, "teensy": {"_count": 1}, "flock": {"_count": 1}, "watermark": {"_count": 1}, "Snackbox": {"_count": 1}, "specific": {"_count": 1}, "fresh": {"_count": 3}, "class": {"_count": 1}, "sight": {"_count": 1}, "suitable": {"_count": 1}, "teaching": {"_count": 1}, "students": {"_count": 1}, "first": {"_count": 2}, "hospital": {"_count": 1}, "reaction": {"_count": 2}, "crowd": {"_count": 1}, "clue": {"_count": 1}, "head": {"_count": 1}, "franticlooking": {"_count": 1}, "fortnight": {"_count": 2}, "minimum": {"_count": 1}, "culprit": {"_count": 1}, "mere": {"_count": 1}, "spot": {"_count": 1}, "question": {"_count": 1}, "job": {"_count": 2}, "sudden": {"_count": 1}, "weak": {"_count": 1}, "Sunday": {"_count": 1}, "call": {"_count": 2}, "telephone": {"_count": 1}, "master": {"_count": 1}, "residue": {"_count": 1}, "fifth": {"_count": 1}, "nose": {"_count": 1}, "brokendown": {"_count": 1}, "glance": {"_count": 1}, "joke": {"_count": 1}, "bite": {"_count": 1}, "N": {"_count": 1}, "cheese": {"_count": 1}, "patch": {"_count": 1}, "hearing": {"_count": 1}, "vein": {"_count": 1}, "bet": {"_count": 1}, "copy": {"_count": 1}, "spell": {"_count": 2}, "Beater": {"_count": 1}, "small": {"_count": 2}, "dozen": {"_count": 1}, "daughterinlaw": {"_count": 1}, "reply": {"_count": 1}, "twelveweek": {"_count": 1}, "full": {"_count": 1}, "Saturday": {"_count": 1}, "love": {"_count": 1}, "hulking": {"_count": 1}, "talk": {"_count": 1}, "seventh": {"_count": 1}, "Parselmouth": {"_count": 1}, "stroke": {"_count": 1}, "look": {"_count": 1}, "picnic": {"_count": 1}, "day": {"_count": 1}, "scrap": {"_count": 1}, "pale": {"_count": 1}, "rude": {"_count": 1}, "bombshell": {"_count": 1}, "cozy": {"_count": 1}, "different": {"_count": 1}, "way": {"_count": 2}, "dragons": {"_count": 1}, "record": {"_count": 1}, "celebrated": {"_count": 1}, "replacement": {"_count": 1}, "mouse": {"_count": 1}, "quill": {"_count": 1}, "body": {"_count": 1}, "lead": {"_count": 1}, "sword": {"_count": 1}, "recurrence": {"_count": 1}, "wand": {"_count": 2}, "laugh": {"_count": 1}, "trapdoor": {"_count": 1}, "hideout": {"_count": 1}, "quarter": {"_count": 1}, "stone": {"_count": 1}, "diedum": {"_count": 1}, "solitary": {"_count": 1}, "weather": {"_count": 1}, "Patronus": {"_count": 1}, "lifetime": {"_count": 1}}, "lemon": {"_count": 1, "drops": {"_count": 1}}, "neither": {"_count": 3, "as": {"_count": 1}, "family": {"_count": 1}, "can": {"_count": 1}}, "sweets": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 194, "said": {"_count": 3}, "": {"_count": 71}, "you": {"_count": 1}, "instead": {"_count": 1}, "to": {"_count": 31}, "because": {"_count": 1}, "really": {"_count": 1}, "over": {"_count": 1}, "hes": {"_count": 1}, "though": {"_count": 2}, "he": {"_count": 4}, "at": {"_count": 2}, "too": {"_count": 2}, "a": {"_count": 2}, "like": {"_count": 1}, "Imagine": {"_count": 1}, "again": {"_count": 1}, "they": {"_count": 2}, "before": {"_count": 1}, "if": {"_count": 4}, "could": {"_count": 1}, "anymore": {"_count": 1}, "that": {"_count": 3}, "and": {"_count": 8}, "Im": {"_count": 1}, "there": {"_count": 1}, "from": {"_count": 1}, "than": {"_count": 1}, "in": {"_count": 3}, "by": {"_count": 3}, "here": {"_count": 1}, "with": {"_count": 2}, "now": {"_count": 2}, "this": {"_count": 1}, "nobody": {"_count": 1}, "had": {"_count": 1}, "it": {"_count": 1}, "or": {"_count": 1}, "on": {"_count": 1}, "later": {"_count": 1}, "as": {"_count": 3}, "has": {"_count": 1}, "but": {"_count": 2}, "since": {"_count": 1}, "But": {"_count": 1}, "nor": {"_count": 1}, "thinking": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}, "while": {"_count": 1}, "after": {"_count": 2}, "still": {"_count": 1}, "casting": {"_count": 1}, "didnt": {"_count": 1}, "Hermione": {"_count": 1}, "hed": {"_count": 1}, "Id": {"_count": 1}, "only": {"_count": 1}, "wasnt": {"_count": 1}, "I": {"_count": 2}, "Ive": {"_count": 1}}, "some": {"_count": 57, "sign": {"_count": 6}, "food": {"_count": 3}, "strange": {"_count": 1}, "time": {"_count": 9}, "reason": {"_count": 13}, "things": {"_count": 1}, "shred": {"_count": 1}, "sort": {"_count": 1}, "": {"_count": 1}, "change": {"_count": 1}, "mulled": {"_count": 1}, "of": {"_count": 1}, "help": {"_count": 1}, "kind": {"_count": 2}, "conclusive": {"_count": 1}, "means": {"_count": 1}, "support": {"_count": 1}, "preferential": {"_count": 1}, "indication": {"_count": 1}, "hint": {"_count": 1}, "trace": {"_count": 1}, "years": {"_count": 1}, "hours": {"_count": 1}, "stupid": {"_count": 1}, "months": {"_count": 1}, "five": {"_count": 1}, "more": {"_count": 1}, "remorse": {"_count": 2}}, "long": {"_count": 11, "": {"_count": 2}, "said": {"_count": 3}, "journeys": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "periods": {"_count": 1}, "Ill": {"_count": 1}, "discussions": {"_count": 1}}, "socks": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 131, "age": {"_count": 2}, "bangs": {"_count": 1}, "baggy": {"_count": 1}, "wand": {"_count": 15}, "defeat": {"_count": 2}, "abysmal": {"_count": 1}, "moment": {"_count": 1}, "opinion": {"_count": 1}, "broomstick": {"_count": 1}, "camera": {"_count": 1}, "sentence": {"_count": 1}, "timing": {"_count": 1}, "friends": {"_count": 1}, "dirty": {"_count": 1}, "ink": {"_count": 1}, "auntie": {"_count": 1}, "improvement": {"_count": 1}, "two": {"_count": 1}, "class": {"_count": 1}, "unsatisfactory": {"_count": 1}, "kettle": {"_count": 1}, "alarm": {"_count": 1}, "bedside": {"_count": 1}, "glasses": {"_count": 4}, "wizards": {"_count": 1}, "birthday": {"_count": 2}, "final": {"_count": 1}, "Nimbus": {"_count": 1}, "Firebolts": {"_count": 1}, "visitor": {"_count": 1}, "protection": {"_count": 1}, "part": {"_count": 1}, "life": {"_count": 2}, "bad": {"_count": 1}, "change": {"_count": 1}, "work": {"_count": 1}, "clothes": {"_count": 1}, "own": {"_count": 11}, "answer": {"_count": 1}, "mistake": {"_count": 1}, "thirteenth": {"_count": 1}, "potion": {"_count": 1}, "schedule": {"_count": 1}, "Firebolt": {"_count": 1}, "behavior": {"_count": 1}, "wages": {"_count": 1}, "lapse": {"_count": 1}, "mother": {"_count": 1}, "sons": {"_count": 1}, "rudeness": {"_count": 1}, "immediate": {"_count": 1}, "godfather": {"_count": 2}, "nose": {"_count": 1}, "or": {"_count": 1}, "arm": {"_count": 1}, "favorite": {"_count": 1}, "body": {"_count": 2}, "Invisibility": {"_count": 1}, "father": {"_count": 3}, "illegal": {"_count": 1}, "feelings": {"_count": 1}, "fathers": {"_count": 1}, "half": {"_count": 1}, "O": {"_count": 1}, "stupidity": {"_count": 1}, "calmness": {"_count": 1}, "reaction": {"_count": 1}, "trunk": {"_count": 1}, "theory": {"_count": 1}, "actions": {"_count": 1}, "generosity": {"_count": 2}, "future": {"_count": 1}, "services": {"_count": 1}, "lesson": {"_count": 1}, "trick": {"_count": 1}, "commentary": {"_count": 1}, "jibe": {"_count": 1}, "infatuation": {"_count": 1}, "privacy": {"_count": 1}, "seventeenth": {"_count": 1}, "Mistress": {"_count": 1}, "very": {"_count": 1}, "hand": {"_count": 1}, "younger": {"_count": 1}, "sister": {"_count": 1}, "sisters": {"_count": 1}, "fury": {"_count": 1}, "lack": {"_count": 1}, "hired": {"_count": 1}, "Easter": {"_count": 1}, "voice": {"_count": 1}, "hesitation": {"_count": 1}, "help": {"_count": 1}, "savior": {"_count": 1}, "surrender": {"_count": 1}}, "the": {"_count": 880, "day": {"_count": 1}, "first": {"_count": 79}, "exits": {"_count": 1}, "family": {"_count": 1}, "postman": {"_count": 1}, "letter": {"_count": 2}, "counter": {"_count": 1}, "Dursleys": {"_count": 1}, "train": {"_count": 1}, "crash": {"_count": 1}, "discovery": {"_count": 2}, "Gryffindors": {"_count": 1}, "last": {"_count": 18}, "doorknob": {"_count": 1}, "Bludgers": {"_count": 1}, "next": {"_count": 10}, "Halloween": {"_count": 2}, "third": {"_count": 20}, "troll": {"_count": 1}, "two": {"_count": 1}, "match": {"_count": 6}, "Snitch": {"_count": 13}, "holidays": {"_count": 6}, "food": {"_count": 2}, "Mirror": {"_count": 1}, "rest": {"_count": 22}, "Gryffindor": {"_count": 3}, "House": {"_count": 4}, "faintest": {"_count": 1}, "best": {"_count": 6}, "exams": {"_count": 2}, "Dark": {"_count": 4}, "Stone": {"_count": 1}, "end": {"_count": 3}, "seventh": {"_count": 1}, "bestplayed": {"_count": 1}, "use": {"_count": 2}, "fudge": {"_count": 1}, "summer": {"_count": 6}, "letters": {"_count": 1}, "owl": {"_count": 1}, "Reasonable": {"_count": 5}, "Ministry": {"_count": 17}, "bottom": {"_count": 1}, "gnomes": {"_count": 1}, "teapot": {"_count": 1}, "coming": {"_count": 3}, "wizards": {"_count": 1}, "glass": {"_count": 1}, "handle": {"_count": 2}, "Daily": {"_count": 4}, "photographer": {"_count": 1}, "Muggle": {"_count": 1}, "solid": {"_count": 1}, "steering": {"_count": 1}, "famous": {"_count": 1}, "Restriction": {"_count": 4}, "greenhouses": {"_count": 1}, "final": {"_count": 1}, "old": {"_count": 1}, "job": {"_count": 8}, "rule": {"_count": 1}, "recipe": {"_count": 1}, "entertainment": {"_count": 1}, "brass": {"_count": 1}, "National": {"_count": 1}, "Bludger": {"_count": 1}, "ground": {"_count": 3}, "ballet": {"_count": 2}, "shimmering": {"_count": 2}, "Mandrakes": {"_count": 1}, "Heir": {"_count": 1}, "evening": {"_count": 2}, "thick": {"_count": 1}, "trophy": {"_count": 1}, "Quidditch": {"_count": 5}, "governors": {"_count": 1}, "headmasters": {"_count": 1}, "Forbidden": {"_count": 1}, "room": {"_count": 1}, "distant": {"_count": 2}, "death": {"_count": 2}, "Weasleys": {"_count": 2}, "steady": {"_count": 1}, "dark": {"_count": 1}, "second": {"_count": 8}, "journey": {"_count": 2}, "start": {"_count": 1}, "lamp": {"_count": 1}, "ride": {"_count": 2}, "way": {"_count": 2}, "cupboard": {"_count": 1}, "latch": {"_count": 1}, "Invisibility": {"_count": 2}, "stranded": {"_count": 1}, "Christmas": {"_count": 2}, "Minister": {"_count": 1}, "World": {"_count": 2}, "Firebolt": {"_count": 1}, "price": {"_count": 1}, "door": {"_count": 8}, "one": {"_count": 2}, "witch": {"_count": 1}, "1612": {"_count": 1}, "hospital": {"_count": 6}, "North": {"_count": 1}, "fact": {"_count": 6}, "Great": {"_count": 5}, "gallows": {"_count": 1}, "new": {"_count": 3}, "whole": {"_count": 7}, "Fat": {"_count": 1}, "beast": {"_count": 1}, "footsteps": {"_count": 1}, "safety": {"_count": 1}, "blizzard": {"_count": 1}, "teachers": {"_count": 2}, "moment": {"_count": 2}, "leatherbound": {"_count": 1}, "others": {"_count": 4}, "regrettable": {"_count": 1}, "Disposal": {"_count": 8}, "History": {"_count": 1}, "eighth": {"_count": 1}, "castle": {"_count": 1}, "locker": {"_count": 1}, "national": {"_count": 1}, "consequences": {"_count": 1}, "blow": {"_count": 1}, "class": {"_count": 4}, "Slytherin": {"_count": 1}, "book": {"_count": 3}, "sixth": {"_count": 3}, "Charms": {"_count": 1}, "grounds": {"_count": 1}, "executioner": {"_count": 1}, "kettle": {"_count": 1}, "absurdity": {"_count": 1}, "moon": {"_count": 1}, "rescuer": {"_count": 1}, "story": {"_count": 1}, "eyes": {"_count": 1}, "fright": {"_count": 1}, "Riddles": {"_count": 1}, "boy": {"_count": 2}, "protection": {"_count": 1}, "telephone": {"_count": 1}, "remainder": {"_count": 1}, "treat": {"_count": 1}, "sound": {"_count": 2}, "wizarding": {"_count": 1}, "office": {"_count": 1}, "Department": {"_count": 3}, "Cup": {"_count": 2}, "Accidental": {"_count": 1}, "Regulation": {"_count": 12}, "girls": {"_count": 4}, "tap": {"_count": 1}, "funny": {"_count": 1}, "tea": {"_count": 3}, "Irish": {"_count": 1}, "Omnioculars": {"_count": 1}, "briefest": {"_count": 1}, "gallant": {"_count": 1}, "Committee": {"_count": 1}, "person": {"_count": 2}, "Death": {"_count": 5}, "Treatment": {"_count": 1}, "startofterm": {"_count": 2}, "Triwizard": {"_count": 3}, "greater": {"_count": 5}, "entrance": {"_count": 1}, "people": {"_count": 1}, "more": {"_count": 1}, "disappearance": {"_count": 1}, "fourth": {"_count": 2}, "lesson": {"_count": 1}, "library": {"_count": 1}, "Society": {"_count": 1}, "Promotion": {"_count": 2}, "open": {"_count": 1}, "month": {"_count": 1}, "Durmstrang": {"_count": 3}, "tasks": {"_count": 1}, "feast": {"_count": 2}, "tournament": {"_count": 2}, "school": {"_count": 3}, "same": {"_count": 1}, "champions": {"_count": 1}, "Busy": {"_count": 1}, "dog": {"_count": 1}, "idea": {"_count": 1}, "Malfoys": {"_count": 1}, "Yule": {"_count": 1}, "tenth": {"_count": 1}, "ball": {"_count": 3}, "tournaments": {"_count": 1}, "deep": {"_count": 1}, "houseelves": {"_count": 2}, "Protection": {"_count": 1}, "portrait": {"_count": 2}, "intruder": {"_count": 1}, "source": {"_count": 9}, "Blast": {"_count": 1}, "Polyjuice": {"_count": 2}, "Wimbourne": {"_count": 1}, "socks": {"_count": 1}, "recipes": {"_count": 1}, "stone": {"_count": 2}, "corner": {"_count": 1}, "fifth": {"_count": 2}, "Banishing": {"_count": 1}, "trapdoor": {"_count": 1}, "task": {"_count": 1}, "center": {"_count": 1}, "lingering": {"_count": 1}, "bottle": {"_count": 1}, "Leaving": {"_count": 1}, "carriages": {"_count": 2}, "jumble": {"_count": 1}, "joke": {"_count": 2}, "tiniest": {"_count": 1}, "hundredth": {"_count": 1}, "Burrow": {"_count": 3}, "explosion": {"_count": 2}, "very": {"_count": 2}, "blessed": {"_count": 1}, "AllEngland": {"_count": 1}, "allclear": {"_count": 1}, "signal": {"_count": 1}, "largest": {"_count": 1}, "Order": {"_count": 13}, "meeting": {"_count": 1}, "chink": {"_count": 1}, "sake": {"_count": 2}, "filthy": {"_count": 1}, "purification": {"_count": 1}, "hearing": {"_count": 1}, "receiver": {"_count": 1}, "golden": {"_count": 1}, "defense": {"_count": 1}, "boys": {"_count": 1}, "Atrium": {"_count": 1}, "Skiving": {"_count": 1}, "life": {"_count": 2}, "familiar": {"_count": 1}, "carriage": {"_count": 1}, "double": {"_count": 1}, "unknown": {"_count": 1}, "usual": {"_count": 1}, "better": {"_count": 1}, "call": {"_count": 1}, "days": {"_count": 1}, "detection": {"_count": 1}, "message": {"_count": 1}, "tryouts": {"_count": 1}, "common": {"_count": 3}, "Owlery": {"_count": 1}, "real": {"_count": 2}, "bright": {"_count": 1}, "three": {"_count": 3}, "smell": {"_count": 1}, "Tri": {"_count": 1}, "parchment": {"_count": 1}, "fight": {"_count": 1}, "Defense": {"_count": 3}, "night": {"_count": 2}, "offer": {"_count": 2}, "seekers": {"_count": 1}, "Jinxed": {"_count": 2}, "solution": {"_count": 1}, "whereabouts": {"_count": 1}, "festivities": {"_count": 1}, "trip": {"_count": 1}, "Broom": {"_count": 1}, "D": {"_count": 5}, "occasion": {"_count": 3}, "past": {"_count": 7}, "presence": {"_count": 1}, "freakish": {"_count": 1}, "arrival": {"_count": 1}, "magazine": {"_count": 2}, "following": {"_count": 3}, "faith": {"_count": 1}, "umpteenth": {"_count": 2}, "newcomer": {"_count": 1}, "great": {"_count": 1}, "care": {"_count": 1}, "hours": {"_count": 1}, "expulsion": {"_count": 1}, "large": {"_count": 1}, "Deflagration": {"_count": 1}, "narrow": {"_count": 1}, "fun": {"_count": 2}, "subject": {"_count": 1}, "newly": {"_count": 1}, "students": {"_count": 1}, "dreams": {"_count": 1}, "simple": {"_count": 1}, "right": {"_count": 1}, "nine": {"_count": 1}, "rustle": {"_count": 1}, "molten": {"_count": 1}, "fidgetings": {"_count": 1}, "kill": {"_count": 1}, "shelter": {"_count": 1}, "time": {"_count": 5}, "whispering": {"_count": 1}, "slightest": {"_count": 1}, "man": {"_count": 3}, "sounds": {"_count": 2}, "healing": {"_count": 1}, "knowledge": {"_count": 1}, "post": {"_count": 2}, "front": {"_count": 1}, "Wizarding": {"_count": 3}, "opportunity": {"_count": 3}, "President": {"_count": 1}, "details": {"_count": 1}, "purposes": {"_count": 1}, "grand": {"_count": 1}, "shrunken": {"_count": 1}, "Muggles": {"_count": 1}, "mysterious": {"_count": 1}, "creature": {"_count": 1}, "Apparition": {"_count": 1}, "Detection": {"_count": 2}, "stories": {"_count": 2}, "public": {"_count": 1}, "Decoy": {"_count": 1}, "lunch": {"_count": 1}, "few": {"_count": 1}, "afternoons": {"_count": 1}, "babys": {"_count": 1}, "team": {"_count": 4}, "Keepers": {"_count": 1}, "potion": {"_count": 2}, "most": {"_count": 1}, "Slug": {"_count": 1}, "stump": {"_count": 1}, "tiny": {"_count": 2}, "party": {"_count": 2}, "vampire": {"_count": 1}, "corridor": {"_count": 2}, "Avada": {"_count": 1}, "Hover": {"_count": 1}, "pineapple": {"_count": 2}, "poison": {"_count": 1}, "Marauders": {"_count": 2}, "map": {"_count": 1}, "nerves": {"_count": 1}, "goblinmade": {"_count": 1}, "Prince": {"_count": 1}, "test": {"_count": 1}, "conclusion": {"_count": 1}, "burial": {"_count": 1}, "loss": {"_count": 1}, "pleasure": {"_count": 2}, "vanished": {"_count": 1}, "icy": {"_count": 1}, "gates": {"_count": 1}, "figure": {"_count": 1}, "strange": {"_count": 1}, "wedding": {"_count": 5}, "Hogwarts": {"_count": 2}, "password": {"_count": 1}, "funeral": {"_count": 2}, "cold": {"_count": 1}, "space": {"_count": 1}, "full": {"_count": 1}, "mirror": {"_count": 1}, "bedroom": {"_count": 1}, "Trace": {"_count": 1}, "broomstick": {"_count": 1}, "brake": {"_count": 1}, "state": {"_count": 1}, "back": {"_count": 1}, "side": {"_count": 1}, "chickens": {"_count": 1}, "Horcruxes": {"_count": 4}, "rehearsal": {"_count": 1}, "inconvenience": {"_count": 1}, "crime": {"_count": 1}, "countryside": {"_count": 1}, "poker": {"_count": 1}, "stairs": {"_count": 3}, "delay": {"_count": 1}, "main": {"_count": 1}, "lift": {"_count": 1}, "effect": {"_count": 1}, "accused": {"_count": 1}, "oldest": {"_count": 1}, "orphanage": {"_count": 1}, "other": {"_count": 1}, "bank": {"_count": 1}, "fake": {"_count": 1}, "oaf": {"_count": 1}, "fire": {"_count": 1}, "amusement": {"_count": 1}, "glint": {"_count": 1}, "blade": {"_count": 1}, "sword": {"_count": 2}, "Horcrux": {"_count": 2}, "answer": {"_count": 1}, "power": {"_count": 1}, "spiral": {"_count": 1}, "wand": {"_count": 1}, "Elder": {"_count": 2}, "Hallows": {"_count": 3}, "terrible": {"_count": 1}, "Wand": {"_count": 1}, "Mudblood": {"_count": 1}, "attack": {"_count": 1}, "handover": {"_count": 1}, "hilt": {"_count": 1}, "shops": {"_count": 1}, "wizard": {"_count": 1}, "opposite": {"_count": 1}, "elf": {"_count": 1}, "crackle": {"_count": 1}, "benefit": {"_count": 2}, "missing": {"_count": 1}, "length": {"_count": 1}, "diadem": {"_count": 1}, "tiara": {"_count": 1}, "mother": {"_count": 1}, "son": {"_count": 1}, "legend": {"_count": 1}, "wrong": {"_count": 1}, "longest": {"_count": 1}, "present": {"_count": 1}, "lie": {"_count": 1}, "scope": {"_count": 1}, "thestrals": {"_count": 1}}, "this": {"_count": 52, "even": {"_count": 1}, "wand": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 14}, "reason": {"_count": 2}, "was": {"_count": 3}, "Harry": {"_count": 1}, "afternoon": {"_count": 1}, "for": {"_count": 2}, "Ron": {"_count": 1}, "sort": {"_count": 1}, "money": {"_count": 1}, "you": {"_count": 1}, "entire": {"_count": 1}, "if": {"_count": 1}, "one": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 1}, "signal": {"_count": 1}, "lesson": {"_count": 1}, "bit": {"_count": 1}, "weeks": {"_count": 1}, "day": {"_count": 1}, "to": {"_count": 2}, "question": {"_count": 1}, "with": {"_count": 1}, "particularly": {"_count": 1}, "piece": {"_count": 1}, "pleasant": {"_count": 1}, "world": {"_count": 1}, "book": {"_count": 2}, "this": {"_count": 1}}, "being": {"_count": 11, "found": {"_count": 1}, "made": {"_count": 1}, "invisible": {"_count": 1}, "an": {"_count": 2}, "alive": {"_count": 1}, "outofbounds": {"_count": 1}, "rude": {"_count": 1}, "wrong": {"_count": 1}, "hoisted": {"_count": 1}, "about": {"_count": 1}}, "Harry": {"_count": 54, "at": {"_count": 2}, "": {"_count": 9}, "Harry": {"_count": 1}, "and": {"_count": 7}, "to": {"_count": 13}, "they": {"_count": 1}, "Potters": {"_count": 2}, "again": {"_count": 1}, "Potter": {"_count": 2}, "because": {"_count": 1}, "Ron": {"_count": 3}, "had": {"_count": 3}, "too": {"_count": 1}, "either": {"_count": 1}, "within": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}, "was": {"_count": 1}, "now": {"_count": 1}, "who": {"_count": 1}, "no": {"_count": 1}}, "hitting": {"_count": 1, "each": {"_count": 1}}, "later": {"_count": 1, "life": {"_count": 1}}, "breakfast": {"_count": 15, "": {"_count": 6}, "the": {"_count": 2}, "without": {"_count": 1}, "at": {"_count": 3}, "so": {"_count": 1}, "on": {"_count": 1}, "I": {"_count": 1}}, "you": {"_count": 165, "": {"_count": 45}, "said": {"_count": 9}, "in": {"_count": 4}, "already": {"_count": 1}, "Mr": {"_count": 3}, "if": {"_count": 1}, "leaves": {"_count": 1}, "boy": {"_count": 1}, "back": {"_count": 2}, "about": {"_count": 1}, "I": {"_count": 2}, "all": {"_count": 2}, "but": {"_count": 1}, "to": {"_count": 31}, "Harry": {"_count": 9}, "And": {"_count": 2}, "Hagrid": {"_count": 1}, "What": {"_count": 1}, "again": {"_count": 1}, "Hermione": {"_count": 2}, "two": {"_count": 2}, "which": {"_count": 1}, "Wormtail": {"_count": 1}, "whether": {"_count": 1}, "tomorrow": {"_count": 1}, "everywhere": {"_count": 2}, "alas": {"_count": 1}, "Dobby": {"_count": 1}, "too": {"_count": 3}, "Nott": {"_count": 1}, "should": {"_count": 1}, "or": {"_count": 1}, "pal": {"_count": 1}, "havent": {"_count": 1}, "isnt": {"_count": 1}, "Miss": {"_count": 1}, "might": {"_count": 1}, "she": {"_count": 1}, "from": {"_count": 1}, "youll": {"_count": 1}, "any": {"_count": 1}, "miss": {"_count": 1}, "during": {"_count": 1}, "useless": {"_count": 1}, "Avery": {"_count": 2}, "who": {"_count": 1}, "would": {"_count": 1}, "you": {"_count": 1}, "before": {"_count": 1}, "an": {"_count": 1}, "for": {"_count": 2}, "Vernon": {"_count": 1}, "here": {"_count": 1}, "rather": {"_count": 2}, "and": {"_count": 1}, "put": {"_count": 1}, "its": {"_count": 1}, "because": {"_count": 1}}, "books": {"_count": 1, "back": {"_count": 1}}, "letter": {"_count": 1, "bombs": {"_count": 1}}, "it": {"_count": 113, "": {"_count": 47}, "this": {"_count": 2}, "again": {"_count": 2}, "Snape": {"_count": 1}, "to": {"_count": 2}, "was": {"_count": 1}, "Im": {"_count": 1}, "so": {"_count": 1}, "but": {"_count": 4}, "in": {"_count": 1}, "is": {"_count": 1}, "and": {"_count": 5}, "Harry": {"_count": 3}, "Filthy": {"_count": 1}, "the": {"_count": 1}, "Neville": {"_count": 1}, "grounds": {"_count": 1}, "once": {"_count": 1}, "by": {"_count": 2}, "said": {"_count": 3}, "cool": {"_count": 1}, "you": {"_count": 1}, "did": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 2}, "concerns": {"_count": 1}, "right": {"_count": 1}, "snarled": {"_count": 1}, "didnt": {"_count": 1}, "Enough": {"_count": 1}, "that": {"_count": 2}, "unless": {"_count": 1}, "He": {"_count": 1}, "just": {"_count": 1}, "as": {"_count": 1}, "scrabbling": {"_count": 1}, "too": {"_count": 1}, "all": {"_count": 1}, "since": {"_count": 1}, "shows": {"_count": 1}, "concerned": {"_count": 1}, "now": {"_count": 1}, "though": {"_count": 1}, "tomorrow": {"_count": 1}, "Stunned": {"_count": 1}, "tonight": {"_count": 1}, "seemed": {"_count": 1}, "What": {"_count": 1}, "The": {"_count": 1}, "while": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 3}}, "visitors": {"_count": 1, "usually": {"_count": 1}}, "breath": {"_count": 16, "with": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}, "Malfoy": {"_count": 1}, "edging": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}, "Hagrids": {"_count": 1}, "and": {"_count": 1}, "EXPECTO": {"_count": 1}, "staring": {"_count": 1}, "Sirius": {"_count": 1}, "was": {"_count": 1}}, "number": {"_count": 1, "four": {"_count": 1}}, "about": {"_count": 6, "half": {"_count": 1}, "six": {"_count": 1}, "the": {"_count": 1}, "twenty": {"_count": 1}, "ten": {"_count": 2}}, "holding": {"_count": 1, "them": {"_count": 1}}, "none": {"_count": 2, "of": {"_count": 2}}, "tonight": {"_count": 5, "": {"_count": 3}, "was": {"_count": 1}, "Harry": {"_count": 1}}, "Dudley": {"_count": 4, "on": {"_count": 1}, "and": {"_count": 2}, "who": {"_count": 1}}, "what": {"_count": 37, "she": {"_count": 1}, "seemed": {"_count": 4}, "was": {"_count": 2}, "a": {"_count": 1}, "hed": {"_count": 1}, "he": {"_count": 6}, "looked": {"_count": 2}, "that": {"_count": 1}, "felt": {"_count": 5}, "lay": {"_count": 1}, "they": {"_count": 1}, "had": {"_count": 2}, "it": {"_count": 2}, "theyre": {"_count": 1}, "to": {"_count": 3}, "": {"_count": 1}, "youve": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "my": {"_count": 42, "mother": {"_count": 2}, "House": {"_count": 1}, "speech": {"_count": 2}, "kind": {"_count": 1}, "stomach": {"_count": 1}, "trouble": {"_count": 1}, "dad": {"_count": 1}, "use": {"_count": 1}, "own": {"_count": 2}, "Omnioculars": {"_count": 1}, "rebirthing": {"_count": 1}, "return": {"_count": 1}, "old": {"_count": 1}, "good": {"_count": 1}, "fathers": {"_count": 1}, "father": {"_count": 4}, "master": {"_count": 2}, "soul": {"_count": 1}, "spare": {"_count": 1}, "birthday": {"_count": 1}, "protection": {"_count": 1}, "hearing": {"_count": 1}, "Care": {"_count": 1}, "worthless": {"_count": 1}, "resignation": {"_count": 1}, "Eenglish": {"_count": 1}, "visit": {"_count": 1}, "deductions": {"_count": 1}, "trinkets": {"_count": 1}, "collection": {"_count": 1}, "mothers": {"_count": 2}, "parents": {"_count": 1}, "Luna": {"_count": 1}, "Master": {"_count": 1}}, "years": {"_count": 37, "": {"_count": 19}, "Good": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 5}, "the": {"_count": 1}, "one": {"_count": 1}, "much": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "but": {"_count": 1}, "old": {"_count": 1}, "that": {"_count": 1}, "now": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 1}}, "all": {"_count": 46, "this": {"_count": 1}, "they": {"_count": 1}, "those": {"_count": 2}, "I": {"_count": 2}, "he": {"_count": 3}, "that": {"_count": 1}, "of": {"_count": 10}, "we": {"_count": 1}, "the": {"_count": 12}, "its": {"_count": 3}, "their": {"_count": 1}, "Filch": {"_count": 1}, "these": {"_count": 1}, "": {"_count": 2}, "Scrimgeours": {"_count": 1}, "eternity": {"_count": 1}, "Harry": {"_count": 1}, "something": {"_count": 1}, "wands": {"_count": 1}}, "wizards": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "me": {"_count": 102, "to": {"_count": 12}, "": {"_count": 42}, "in": {"_count": 2}, "theyre": {"_count": 1}, "said": {"_count": 6}, "hidden": {"_count": 1}, "of": {"_count": 1}, "could": {"_count": 1}, "he": {"_count": 2}, "at": {"_count": 1}, "is": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 2}, "but": {"_count": 1}, "one": {"_count": 1}, "has": {"_count": 1}, "will": {"_count": 2}, "after": {"_count": 1}, "Harry": {"_count": 3}, "and": {"_count": 4}, "Potter": {"_count": 1}, "Mr": {"_count": 1}, "then": {"_count": 1}, "Dobby": {"_count": 1}, "health": {"_count": 1}, "wont": {"_count": 1}, "first": {"_count": 1}, "not": {"_count": 1}, "every": {"_count": 1}, "so": {"_count": 1}, "replied": {"_count": 1}, "here": {"_count": 1}, "Severus": {"_count": 1}, "as": {"_count": 2}, "this": {"_count": 1}}, "another": {"_count": 27, "boat": {"_count": 1}, "they": {"_count": 1}, "body": {"_count": 1}, "four": {"_count": 2}, "check": {"_count": 1}, "one": {"_count": 1}, "book": {"_count": 1}, "fifty": {"_count": 1}, "twenty": {"_count": 2}, "milk": {"_count": 1}, "couple": {"_count": 1}, "attempt": {"_count": 1}, "hour": {"_count": 2}, "moment": {"_count": 2}, "change": {"_count": 1}, "minute": {"_count": 1}, "fifteen": {"_count": 1}, "long": {"_count": 1}, "death": {"_count": 1}, "neither": {"_count": 1}, "No": {"_count": 1}, "month": {"_count": 1}, "ten": {"_count": 1}}, "day": {"_count": 1, "wear": {"_count": 1}}, "more": {"_count": 30, "": {"_count": 3}, "wine": {"_count": 1}, "time": {"_count": 1}, "perfect": {"_count": 1}, "Ministry": {"_count": 1}, "than": {"_count": 11}, "direct": {"_count": 1}, "people": {"_count": 1}, "instructions": {"_count": 1}, "relics": {"_count": 1}, "news": {"_count": 1}, "rousing": {"_count": 1}, "information": {"_count": 1}, "treasures": {"_count": 1}, "champagne": {"_count": 1}, "see": {"_count": 1}, "noises": {"_count": 1}, "bodies": {"_count": 1}}, "Hagrid": {"_count": 10, "an": {"_count": 1}, "when": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}, "could": {"_count": 1}, "theyre": {"_count": 1}, "a": {"_count": 1}, "s": {"_count": 1}}, "yeh": {"_count": 3, "": {"_count": 2}, "today": {"_count": 1}}, "All": {"_count": 4, "Occasions": {"_count": 3}, "the": {"_count": 1}}, "an": {"_count": 44, "excuse": {"_count": 3}, "interestinglooking": {"_count": 1}, "inquiry": {"_count": 1}, "hour": {"_count": 8}, "elbow": {"_count": 1}, "empty": {"_count": 2}, "answer": {"_count": 6}, "unprovoked": {"_count": 1}, "afternoon": {"_count": 1}, "autograph": {"_count": 1}, "event": {"_count": 1}, "escape": {"_count": 2}, "insiders": {"_count": 1}, "instant": {"_count": 6}, "Auror": {"_count": 3}, "early": {"_count": 1}, "emptier": {"_count": 1}, "occasion": {"_count": 1}, "object": {"_count": 1}, "update": {"_count": 1}, "animal": {"_count": 1}}, "weighing": {"_count": 1, "potion": {"_count": 1}}, "its": {"_count": 11, "horrible": {"_count": 1}, "decision": {"_count": 1}, "removal": {"_count": 1}, "poor": {"_count": 1}, "forked": {"_count": 1}, "actions": {"_count": 1}, "cheapness": {"_count": 1}, "history": {"_count": 1}, "unfortunate": {"_count": 1}, "owner": {"_count": 1}, "rightful": {"_count": 1}}, "charm": {"_count": 1, "work": {"_count": 1}}, "transfiguration": {"_count": 1, "": {"_count": 1}}, "company": {"_count": 6, "": {"_count": 3}, "still": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}}, "her": {"_count": 64, "to": {"_count": 6}, "": {"_count": 15}, "schedule": {"_count": 1}, "glass": {"_count": 1}, "page": {"_count": 1}, "rune": {"_count": 1}, "bag": {"_count": 2}, "Arithmancy": {"_count": 2}, "Harry": {"_count": 1}, "ages": {"_count": 1}, "face": {"_count": 1}, "fair": {"_count": 1}, "afterward": {"_count": 1}, "large": {"_count": 1}, "and": {"_count": 3}, "for": {"_count": 1}, "disappearance": {"_count": 1}, "loyalty": {"_count": 1}, "said": {"_count": 2}, "sanity": {"_count": 1}, "but": {"_count": 1}, "Rons": {"_count": 1}, "though": {"_count": 1}, "she": {"_count": 1}, "wedding": {"_count": 1}, "son": {"_count": 1}, "story": {"_count": 1}, "father": {"_count": 1}, "copy": {"_count": 1}, "own": {"_count": 1}, "examinations": {"_count": 1}, "eldest": {"_count": 1}, "lack": {"_count": 1}, "beaded": {"_count": 1}, "glancing": {"_count": 1}, "wand": {"_count": 1}, "even": {"_count": 1}, "throat": {"_count": 1}, "a": {"_count": 1}, "mother": {"_count": 1}}, "candy": {"_count": 1, "with": {"_count": 1}}, "one": {"_count": 36, "of": {"_count": 7}, "thing": {"_count": 6}, "another": {"_count": 1}, "will": {"_count": 1}, "teacher": {"_count": 1}, "night": {"_count": 3}, "outburst": {"_count": 1}, "shes": {"_count": 1}, "heartstopping": {"_count": 1}, "Mr": {"_count": 1}, "between": {"_count": 1}, "all": {"_count": 1}, "horrible": {"_count": 1}, "": {"_count": 2}, "hour": {"_count": 3}, "heart": {"_count": 1}, "particular": {"_count": 1}, "who": {"_count": 1}, "dont": {"_count": 1}, "mad": {"_count": 1}}, "practice": {"_count": 2, "and": {"_count": 1}, "they": {"_count": 1}}, "background": {"_count": 2, "reading": {"_count": 2}}, "Nevilles": {"_count": 2, "toad": {"_count": 1}, "parents": {"_count": 1}}, "Gringotts": {"_count": 3, "said": {"_count": 1}, "Wizarding": {"_count": 1}, "ever": {"_count": 1}}, "myself": {"_count": 6, "thanks": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "funnily": {"_count": 1}, "": {"_count": 1}, "than": {"_count": 1}}, "people": {"_count": 7, "who": {"_count": 4}, "to": {"_count": 1}, "whose": {"_count": 1}, "with": {"_count": 1}}, "teams": {"_count": 1, "during": {"_count": 1}}, "almost": {"_count": 4, "a": {"_count": 3}, "three": {"_count": 1}}, "ages": {"_count": 29, "until": {"_count": 1}, "": {"_count": 10}, "I": {"_count": 1}, "past": {"_count": 1}, "Professor": {"_count": 1}, "no": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 2}, "right": {"_count": 1}, "but": {"_count": 3}, "about": {"_count": 1}, "and": {"_count": 1}, "could": {"_count": 1}, "havent": {"_count": 1}, "But": {"_count": 1}, "started": {"_count": 1}, "outside": {"_count": 1}}, "nearly": {"_count": 10, "five": {"_count": 1}, "an": {"_count": 4}, "half": {"_count": 1}, "fourteen": {"_count": 1}, "fifty": {"_count": 1}, "two": {"_count": 1}, "all": {"_count": 1}}, "dinner": {"_count": 22, "and": {"_count": 2}, "their": {"_count": 1}, "": {"_count": 7}, "Im": {"_count": 2}, "that": {"_count": 1}, "is": {"_count": 1}, "He": {"_count": 1}, "I": {"_count": 1}, "without": {"_count": 1}, "however": {"_count": 1}, "on": {"_count": 1}, "now": {"_count": 1}, "glinted": {"_count": 1}, "about": {"_count": 1}}, "their": {"_count": 45, "House": {"_count": 2}, "first": {"_count": 3}, "lives": {"_count": 1}, "very": {"_count": 1}, "being": {"_count": 1}, "trunks": {"_count": 1}, "glasses": {"_count": 1}, "ice": {"_count": 1}, "traditional": {"_count": 1}, "enjoyment": {"_count": 1}, "Beater": {"_count": 1}, "actions": {"_count": 1}, "support": {"_count": 1}, "ruined": {"_count": 1}, "homework": {"_count": 1}, "unflinching": {"_count": 1}, "lesson": {"_count": 1}, "WitSharpening": {"_count": 1}, "Care": {"_count": 1}, "exams": {"_count": 1}, "bodies": {"_count": 1}, "disloyalty": {"_count": 1}, "lack": {"_count": 1}, "powers": {"_count": 1}, "essays": {"_count": 1}, "level": {"_count": 1}, "coffees": {"_count": 1}, "perusal": {"_count": 1}, "practical": {"_count": 2}, "return": {"_count": 1}, "ambition": {"_count": 1}, "charm": {"_count": 1}, "only": {"_count": 1}, "afterlunch": {"_count": 1}, "Apparition": {"_count": 1}, "continuing": {"_count": 1}, "legendary": {"_count": 1}, "attempt": {"_count": 1}, "allegiance": {"_count": 1}, "cause": {"_count": 1}, "son": {"_count": 1}}, "Peeves": {"_count": 4, "said": {"_count": 1}, "who": {"_count": 1}, "to": {"_count": 1}, "is": {"_count": 1}}, "class": {"_count": 1, "": {"_count": 1}}, "Filch": {"_count": 5, "whod": {"_count": 1}, "to": {"_count": 2}, "I": {"_count": 1}, "first": {"_count": 1}}, "getting": {"_count": 2, "rid": {"_count": 1}, "a": {"_count": 1}}, "monkshood": {"_count": 1, "and": {"_count": 1}}, "quills": {"_count": 1, "and": {"_count": 1}}, "your": {"_count": 51, "cheek": {"_count": 1}, "own": {"_count": 4}, "first": {"_count": 2}, "information": {"_count": 3}, "children": {"_count": 1}, "woeful": {"_count": 1}, "birthday": {"_count": 1}, "sister": {"_count": 1}, "next": {"_count": 3}, "friends": {"_count": 2}, "parents": {"_count": 1}, "last": {"_count": 1}, "attention": {"_count": 1}, "turn": {"_count": 1}, "shoulder": {"_count": 1}, "surprise": {"_count": 1}, "help": {"_count": 2}, "support": {"_count": 2}, "wand": {"_count": 1}, "letter": {"_count": 1}, "father": {"_count": 1}, "dismissal": {"_count": 1}, "army": {"_count": 1}, "Basic": {"_count": 1}, "happiness": {"_count": 1}, "peace": {"_count": 1}, "life": {"_count": 1}, "stuff": {"_count": 1}, "protection": {"_count": 1}, "eyes": {"_count": 1}, "little": {"_count": 1}, "Muggle": {"_count": 1}, "lessons": {"_count": 1}, "Apparition": {"_count": 1}, "crimes": {"_count": 1}, "sakes": {"_count": 2}, "guard": {"_count": 1}, "destruction": {"_count": 1}, "generous": {"_count": 1}}, "Gryffindor": {"_count": 26, "": {"_count": 11}, "in": {"_count": 1}, "faded": {"_count": 1}, "didnt": {"_count": 1}, "before": {"_count": 1}, "securing": {"_count": 1}, "who": {"_count": 1}, "with": {"_count": 1}, "come": {"_count": 1}, "blue": {"_count": 1}, "from": {"_count": 2}, "said": {"_count": 1}, "Keeper": {"_count": 1}, "to": {"_count": 1}, "Miss": {"_count": 1}}, "anything": {"_count": 17, "that": {"_count": 4}, "but": {"_count": 1}, "except": {"_count": 1}, "Harry": {"_count": 1}, "got": {"_count": 1}, "to": {"_count": 2}, "else": {"_count": 3}, "": {"_count": 1}, "dangerous": {"_count": 1}, "less": {"_count": 1}, "you": {"_count": 1}}, "Longbottom": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "weeks": {"_count": 12, "": {"_count": 5}, "and": {"_count": 2}, "after": {"_count": 1}, "now": {"_count": 1}, "months": {"_count": 1}, "why": {"_count": 1}, "said": {"_count": 1}}, "sure": {"_count": 12, "this": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 4}, "is": {"_count": 2}, "and": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}}, "knowing": {"_count": 1, "about": {"_count": 1}}, "hours": {"_count": 19, "I": {"_count": 1}, "": {"_count": 6}, "that": {"_count": 1}, "and": {"_count": 2}, "mulling": {"_count": 1}, "at": {"_count": 4}, "as": {"_count": 1}, "into": {"_count": 1}, "its": {"_count": 1}, "yearning": {"_count": 1}}, "breaking": {"_count": 2, "rules": {"_count": 1}, "the": {"_count": 1}}, "Wood": {"_count": 1, "Harry": {"_count": 1}}, "England": {"_count": 5, "if": {"_count": 1}, "before": {"_count": 1}, "himself": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "dear": {"_count": 6, "life": {"_count": 6}}, "President": {"_count": 2, "and": {"_count": 1}, "over": {"_count": 1}}, "silence": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 1}, "frowning": {"_count": 1}}, "said": {"_count": 4, "George": {"_count": 1}, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}}, "Snape": {"_count": 19, "to": {"_count": 4}, "": {"_count": 6}, "but": {"_count": 3}, "had": {"_count": 1}, "s": {"_count": 2}, "having": {"_count": 1}, "that": {"_count": 1}, "or": {"_count": 1}}, "bewitching": {"_count": 2, "several": {"_count": 1}, "a": {"_count": 1}}, "Christmas": {"_count": 33, "because": {"_count": 2}, "": {"_count": 14}, "so": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}, "locked": {"_count": 1}, "But": {"_count": 1}, "pudding": {"_count": 1}, "its": {"_count": 1}, "dinner": {"_count": 1}, "lunch": {"_count": 1}, "Ginny": {"_count": 1}, "every": {"_count": 1}, "no": {"_count": 1}, "Luna": {"_count": 1}}, "himself": {"_count": 16, "at": {"_count": 1}, "": {"_count": 5}, "counting": {"_count": 1}, "then": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}, "wasnt": {"_count": 1}, "wanting": {"_count": 1}, "in": {"_count": 2}}, "ourselves": {"_count": 1, "then": {"_count": 1}}, "Flamels": {"_count": 1, "name": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 13, "weeks": {"_count": 3}, "nights": {"_count": 1}, "exams": {"_count": 1}, "whole": {"_count": 2}, "house": {"_count": 1}, "people": {"_count": 2}, "of": {"_count": 2}, "headmasters": {"_count": 1}}, "prefect": {"_count": 1, "": {"_count": 1}}, "family": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 31, "had": {"_count": 4}, "thought": {"_count": 1}, "knows": {"_count": 1}, "smiled": {"_count": 2}, "let": {"_count": 1}, "flatly": {"_count": 1}, "is": {"_count": 2}, "was": {"_count": 9}, "always": {"_count": 1}, "could": {"_count": 3}, "met": {"_count": 1}, "knew": {"_count": 1}, "added": {"_count": 1}, "looked": {"_count": 1}, "hardly": {"_count": 1}, "did": {"_count": 1}}, "ten": {"_count": 11, "minutes": {"_count": 6}, "years": {"_count": 2}, "more": {"_count": 1}, "Galleons": {"_count": 1}, "long": {"_count": 1}}, "any": {"_count": 17, "excuse": {"_count": 2}, "unusual": {"_count": 1}, "sound": {"_count": 2}, "more": {"_count": 1}, "spell": {"_count": 1}, "of": {"_count": 4}, "fragments": {"_count": 1}, "odd": {"_count": 1}, "details": {"_count": 1}, "resistance": {"_count": 1}, "indication": {"_count": 1}, "who": {"_count": 1}}, "not": {"_count": 6, "wanting": {"_count": 2}, "only": {"_count": 1}, "telling": {"_count": 1}, "waking": {"_count": 1}, "trusting": {"_count": 1}}, "someone": {"_count": 10, "to": {"_count": 5}, "who": {"_count": 1}, "I": {"_count": 1}, "only": {"_count": 1}, "elses": {"_count": 1}, "": {"_count": 1}}, "seven": {"_count": 6, "years": {"_count": 2}, "of": {"_count": 1}, "minutes": {"_count": 2}, "hours": {"_count": 1}}, "no": {"_count": 4, "reason": {"_count": 2}, "good": {"_count": 2}}, "laughing": {"_count": 3, "at": {"_count": 1}, "": {"_count": 1}, "snapped": {"_count": 1}}, "Pleasure": {"_count": 1, "and": {"_count": 1}}, "frightening": {"_count": 1, "it": {"_count": 1}}, "classes": {"_count": 1, "": {"_count": 1}}, "whats": {"_count": 3, "left": {"_count": 1}, "waiting": {"_count": 2}}, "students": {"_count": 3, "to": {"_count": 2}, "and": {"_count": 1}}, "fear": {"_count": 4, "": {"_count": 2}, "of": {"_count": 2}}, "so": {"_count": 16, "long": {"_count": 14}, "many": {"_count": 2}}, "Voldemort": {"_count": 16, "": {"_count": 3}, "to": {"_count": 4}, "when": {"_count": 1}, "and": {"_count": 2}, "Harry": {"_count": 2}, "Ron": {"_count": 1}, "make": {"_count": 1}, "vanished": {"_count": 1}, "he": {"_count": 1}}, "now": {"_count": 6, "is": {"_count": 1}, "Harry": {"_count": 2}, "that": {"_count": 1}, "": {"_count": 1}, "then": {"_count": 1}}, "how": {"_count": 5, "pretty": {"_count": 1}, "much": {"_count": 1}, "long": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "London": {"_count": 1, "at": {"_count": 1}}, "Professor": {"_count": 16, "Flitwick": {"_count": 1}, "McGonagall": {"_count": 2}, "Sprout": {"_count": 1}, "Lupin": {"_count": 1}, "McGonagalls": {"_count": 3}, "Trelawney": {"_count": 1}, "Vector": {"_count": 1}, "GrubblyPlank": {"_count": 2}, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 1}, "Dippet": {"_count": 1}, "Snapes": {"_count": 1}}, "Flitwick": {"_count": 2, "and": {"_count": 1}, "finish": {"_count": 1}}, "freedom": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "decoration": {"_count": 1, "said": {"_count": 1}}, "spotting": {"_count": 1, "things": {"_count": 1}}, "nostrils": {"_count": 3, "like": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "mercy": {"_count": 3, "": {"_count": 2}, "for": {"_count": 1}}, "trying": {"_count": 7, "to": {"_count": 7}}, "words": {"_count": 7, "": {"_count": 6}, "strong": {"_count": 1}}, "things": {"_count": 3, "": {"_count": 1}, "like": {"_count": 1}, "to": {"_count": 1}}, "sneaking": {"_count": 1, "off": {"_count": 1}}, "pure": {"_count": 1, "nerve": {"_count": 1}}, "even": {"_count": 3, "Ravenclaw": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "both": {"_count": 4, "Aunt": {"_count": 1}, "of": {"_count": 3}}, "coffee": {"_count": 1, "Petunia": {"_count": 1}}, "arm": {"_count": 1, "and": {"_count": 1}}, "coming": {"_count": 3, "to": {"_count": 1}, "out": {"_count": 1}, "with": {"_count": 1}}, "months": {"_count": 16, "sir": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 8}, "poor": {"_count": 1}, "but": {"_count": 1}, "without": {"_count": 1}, "Ive": {"_count": 1}, "now": {"_count": 1}}, "Dobby": {"_count": 5, "": {"_count": 1}, "at": {"_count": 1}, "where": {"_count": 1}, "to": {"_count": 1}, "seemed": {"_count": 1}}, "support": {"_count": 12, "as": {"_count": 1}, "": {"_count": 7}, "Okay": {"_count": 1}, "that": {"_count": 1}, "looking": {"_count": 1}, "at": {"_count": 1}}, "doing": {"_count": 4, "it": {"_count": 2}, "as": {"_count": 1}, "so": {"_count": 1}}, "help": {"_count": 20, "but": {"_count": 4}, "when": {"_count": 2}, "Hermione": {"_count": 1}, "and": {"_count": 2}, "they": {"_count": 1}, "": {"_count": 6}, "said": {"_count": 1}, "Narcissa": {"_count": 1}, "now": {"_count": 1}, "McGonagall": {"_count": 1}}, "using": {"_count": 5, "magic": {"_count": 1}, "the": {"_count": 2}, "illegal": {"_count": 1}, "that": {"_count": 1}}, "Mum": {"_count": 1, "to": {"_count": 1}}, "questioning": {"_count": 8, "about": {"_count": 3}, "": {"_count": 2}, "today": {"_count": 1}, "sat": {"_count": 1}, "and": {"_count": 1}}, "having": {"_count": 5, "a": {"_count": 1}, "us": {"_count": 1}, "laughed": {"_count": 1}, "been": {"_count": 1}, "walked": {"_count": 1}}, "Mr": {"_count": 7, "Borgin": {"_count": 1}, "Weasleys": {"_count": 1}, "Payne": {"_count": 1}, "Crouch": {"_count": 3}, "Brilliant": {"_count": 1}}, "Its": {"_count": 1, "not": {"_count": 1}}, "less": {"_count": 1, "everywhere": {"_count": 1}}, "sale": {"_count": 7, "": {"_count": 2}, "the": {"_count": 1}, "everywhere": {"_count": 1}, "to": {"_count": 1}, "then": {"_count": 1}, "by": {"_count": 1}}, "Lucius": {"_count": 2, "Malfoy": {"_count": 2}}, "Hermione": {"_count": 14, "to": {"_count": 5}, "and": {"_count": 1}, "over": {"_count": 1}, "carrying": {"_count": 1}, "still": {"_count": 2}, "looked": {"_count": 1}, "like": {"_count": 1}, "s": {"_count": 1}, "which": {"_count": 1}}, "Flourish": {"_count": 1, "and": {"_count": 1}}, "quiet": {"_count": 3, "": {"_count": 3}}, "Harrys": {"_count": 11, "liking": {"_count": 2}, "least": {"_count": 1}, "parents": {"_count": 1}, "and": {"_count": 1}, "tipoff": {"_count": 1}, "entertainment": {"_count": 1}, "schoolbag": {"_count": 1}, "birthday": {"_count": 1}, "wand": {"_count": 1}, "inspection": {"_count": 1}}, "at": {"_count": 7, "least": {"_count": 3}, "the": {"_count": 1}, "that": {"_count": 2}, "first": {"_count": 1}}, "spare": {"_count": 1, "socks": {"_count": 1}}, "dont": {"_count": 1, "they": {"_count": 1}}, "Dumbledores": {"_count": 5, "writing": {"_count": 1}, "Army": {"_count": 1}, "and": {"_count": 1}, "last": {"_count": 1}, "passing": {"_count": 1}}, "crashing": {"_count": 1, "a": {"_count": 1}}, "publicity": {"_count": 1, "didnt": {"_count": 1}}, "giving": {"_count": 5, "you": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}, "autographs": {"_count": 1}}, "Eton": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "Lockhart": {"_count": 3, "to": {"_count": 1}, "telling": {"_count": 1}, "now": {"_count": 1}}, "warmth": {"_count": 2, "Harry": {"_count": 1}, "around": {"_count": 1}}, "today": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "that": {"_count": 34, "one": {"_count": 1}, "said": {"_count": 4}, "": {"_count": 12}, "you": {"_count": 1}, "time": {"_count": 1}, "was": {"_count": 1}, "last": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "boy": {"_count": 1}, "weve": {"_count": 1}, "instant": {"_count": 1}, "statement": {"_count": 1}, "Portkey": {"_count": 1}, "story": {"_count": 1}, "book": {"_count": 1}, "pupil": {"_count": 1}, "sort": {"_count": 1}, "stupid": {"_count": 1}, "reason": {"_count": 1}}, "Services": {"_count": 3, "to": {"_count": 3}}, "days": {"_count": 13, "on": {"_count": 1}, "Ive": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}, "not": {"_count": 1}, "at": {"_count": 1}, "so": {"_count": 1}, "you": {"_count": 1}}, "regular": {"_count": 1, "training": {"_count": 1}}, "themselves": {"_count": 6, "the": {"_count": 2}, "": {"_count": 3}, "later": {"_count": 1}}, "members": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "Sir": {"_count": 1, "Properly": {"_count": 1}}, "our": {"_count": 18, "match": {"_count": 1}, "next": {"_count": 1}, "schools": {"_count": 1}, "side": {"_count": 1}, "meeting": {"_count": 1}, "money": {"_count": 1}, "own": {"_count": 2}, "Skiving": {"_count": 1}, "tried": {"_count": 1}, "seventh": {"_count": 1}, "school": {"_count": 1}, "sons": {"_count": 1}, "families": {"_count": 1}, "lives": {"_count": 1}, "temporary": {"_count": 1}, "popular": {"_count": 1}, "safety": {"_count": 1}}, "parchment": {"_count": 1, "": {"_count": 1}}, "incantations": {"_count": 1, "and": {"_count": 1}}, "three": {"_count": 10, "men": {"_count": 1}, "months": {"_count": 2}, "years": {"_count": 3}, "whole": {"_count": 1}, "days": {"_count": 2}, "women": {"_count": 1}}, "living": {"_count": 1, "people": {"_count": 1}}, "half": {"_count": 3, "an": {"_count": 3}}, "evidence": {"_count": 1, "of": {"_count": 1}}, "turning": {"_count": 1, "out": {"_count": 1}}, "clues": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "Myrtle": {"_count": 1, "": {"_count": 1}}, "centuries": {"_count": 8, "": {"_count": 5}, "theyre": {"_count": 1}, "perhaps": {"_count": 1}, "but": {"_count": 1}}, "book": {"_count": 1, "signings": {"_count": 1}}, "twentyone": {"_count": 1, "days": {"_count": 1}}, "anyone": {"_count": 9, "else": {"_count": 4}, "unless": {"_count": 1}, "with": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "wishing": {"_count": 1}}, "then": {"_count": 3, "he": {"_count": 1}, "": {"_count": 2}}, "those": {"_count": 11, "of": {"_count": 1}, "who": {"_count": 5}, "kind": {"_count": 1}, "": {"_count": 1}, "two": {"_count": 1}, "wise": {"_count": 1}, "odd": {"_count": 1}}, "hot": {"_count": 2, "chocolate": {"_count": 2}}, "Moaning": {"_count": 1, "Myrtles": {"_count": 1}}, "five": {"_count": 12, "minutes": {"_count": 2}, "long": {"_count": 1}, "days": {"_count": 2}, "years": {"_count": 5}, "oclock": {"_count": 1}, "seconds": {"_count": 1}}, "Hermiones": {"_count": 3, "signal": {"_count": 1}, "wrist": {"_count": 1}, "help": {"_count": 1}}, "full": {"_count": 2, "details": {"_count": 2}}, "whatever": {"_count": 2, "his": {"_count": 1}, "Hermione": {"_count": 1}}, "Justin": {"_count": 1, "Finch": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "Dumbledore": {"_count": 17, "s": {"_count": 1}, "": {"_count": 7}, "when": {"_count": 1}, "first": {"_count": 1}, "still": {"_count": 1}, "to": {"_count": 2}, "it": {"_count": 1}, "but": {"_count": 1}, "moved": {"_count": 1}, "because": {"_count": 1}}, "but": {"_count": 3, "it": {"_count": 1}, "before": {"_count": 1}, "there": {"_count": 1}}, "laundry": {"_count": 1, "detergent": {"_count": 1}}, "Crabbe": {"_count": 2, "and": {"_count": 2}}, "comment": {"_count": 3, "although": {"_count": 1}, "yesterday": {"_count": 1}, "last": {"_count": 1}}, "animal": {"_count": 1, "transformations": {"_count": 1}}, "special": {"_count": 3, "services": {"_count": 3}}, "catching": {"_count": 1, "the": {"_count": 1}}, "Magical": {"_count": 12, "Merit": {"_count": 1}, "MischiefMakers": {"_count": 1}, "Maladies": {"_count": 9}, "Maintenance": {"_count": 1}}, "repotting": {"_count": 1, "again": {"_count": 1}}, "Transfiguration": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "next": {"_count": 1}}, "good": {"_count": 14, "this": {"_count": 1}, "": {"_count": 7}, "was": {"_count": 1}, "said": {"_count": 1}, "measure": {"_count": 3}, "just": {"_count": 1}}, "Charms": {"_count": 1, "one": {"_count": 1}}, "Riddles": {"_count": 1, "reply": {"_count": 1}}, "June": {"_count": 1, "thirteenth": {"_count": 1}}, "exercise": {"_count": 1, "and": {"_count": 1}}, "large": {"_count": 1, "and": {"_count": 1}}, "wanting": {"_count": 4, "to": {"_count": 4}}, "everything": {"_count": 4, "": {"_count": 3}, "Mrs": {"_count": 1}}, "Care": {"_count": 4, "of": {"_count": 4}}, "directions": {"_count": 1, "to": {"_count": 1}}, "once": {"_count": 13, "he": {"_count": 2}, "Hermione": {"_count": 2}, "but": {"_count": 1}, "": {"_count": 5}, "He": {"_count": 1}, "looking": {"_count": 1}, "to": {"_count": 1}}, "signs": {"_count": 8, "of": {"_count": 8}}, "noises": {"_count": 1, "other": {"_count": 1}}, "spiders": {"_count": 1, "": {"_count": 1}}, "cutting": {"_count": 1, "at": {"_count": 1}}, "aside": {"_count": 1, "from": {"_count": 1}}, "fifty": {"_count": 1, "years": {"_count": 1}}, "stupid": {"_count": 1, "little": {"_count": 1}}, "Riddle": {"_count": 2, "to": {"_count": 2}}, "fangs": {"_count": 1, "to": {"_count": 1}}, "itself": {"_count": 4, "if": {"_count": 2}, "": {"_count": 1}, "is": {"_count": 1}}, "rules": {"_count": 1, "he": {"_count": 1}}, "suspecting": {"_count": 1, "him": {"_count": 1}}, "next": {"_count": 5, "year": {"_count": 3}, "weeks": {"_count": 1}, "moment": {"_count": 1}}, "wizard": {"_count": 1, "tourists": {"_count": 1}}, "Hagrids": {"_count": 2, "card": {"_count": 1}, "cooking": {"_count": 1}}, "Incurably": {"_count": 4, "Criminal": {"_count": 4}}, "hopeless": {"_count": 1, "cases": {"_count": 1}}, "speech": {"_count": 2, "next": {"_count": 1}, "making": {"_count": 1}}, "firteen": {"_count": 1, "you": {"_count": 1}}, "fifteen": {"_count": 2, "you": {"_count": 1}, "years": {"_count": 1}}, "informing": {"_count": 2, "the": {"_count": 2}}, "blowing": {"_count": 1, "up": {"_count": 1}}, "money": {"_count": 1, "for": {"_count": 1}}, "spellbooks": {"_count": 1, "to": {"_count": 1}}, "Arithmancy": {"_count": 2, "Care": {"_count": 1}, "while": {"_count": 1}}, "Scabbers": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "under": {"_count": 1}}, "Humongous": {"_count": 1, "Bighead": {"_count": 1}}, "polishing": {"_count": 1, "I": {"_count": 1}}, "Black": {"_count": 2, "": {"_count": 2}}, "trouble": {"_count": 3, "Harry": {"_count": 1}, "said": {"_count": 1}, "dont": {"_count": 1}}, "permission": {"_count": 1, "said": {"_count": 1}}, "Ron": {"_count": 23, "Come": {"_count": 1}, "who": {"_count": 3}, "at": {"_count": 1}, "hed": {"_count": 1}, "": {"_count": 3}, "when": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 5}, "had": {"_count": 1}, "would": {"_count": 1}, "to": {"_count": 4}, "shouted": {"_count": 1}}, "saying": {"_count": 3, "so": {"_count": 1}, "angrily": {"_count": 1}, "that": {"_count": 1}}, "lunch": {"_count": 12, "": {"_count": 5}, "Im": {"_count": 1}, "all": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "if": {"_count": 1}, "so": {"_count": 1}, "made": {"_count": 1}}, "Malfoy": {"_count": 6, "Crabbe": {"_count": 2}, "": {"_count": 3}, "to": {"_count": 1}}, "every": {"_count": 8, "person": {"_count": 1}, "day": {"_count": 1}, "bit": {"_count": 1}, "little": {"_count": 1}, "three": {"_count": 1}, "one": {"_count": 1}, "young": {"_count": 1}, "drop": {"_count": 1}}, "Neville": {"_count": 4, "because": {"_count": 1}, "to": {"_count": 1}, "very": {"_count": 1}, "whose": {"_count": 1}}, "Astronomy": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "Crookshanks": {"_count": 3, "but": {"_count": 1}, "than": {"_count": 1}, "to": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 2}}, "foaming": {"_count": 1, "mugs": {"_count": 1}}, "Percy": {"_count": 1, "who": {"_count": 1}}, "talking": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}}, "Defense": {"_count": 6, "Against": {"_count": 6}}, "information": {"_count": 6, "": {"_count": 1}, "about": {"_count": 1}, "was": {"_count": 1}, "on": {"_count": 1}, "however": {"_count": 1}, "at": {"_count": 1}}, "Lupin": {"_count": 2, "": {"_count": 1}, "Ill": {"_count": 1}}, "us": {"_count": 43, "": {"_count": 13}, "once": {"_count": 1}, "said": {"_count": 4}, "Mrs": {"_count": 1}, "to": {"_count": 9}, "all": {"_count": 1}, "Karkaroff": {"_count": 1}, "at": {"_count": 2}, "he": {"_count": 1}, "there": {"_count": 1}, "just": {"_count": 1}, "Harry": {"_count": 2}, "old": {"_count": 1}, "we": {"_count": 1}, "and": {"_count": 1}, "whispered": {"_count": 1}, "called": {"_count": 1}, "There": {"_count": 1}}, "trifles": {"_count": 1, "like": {"_count": 1}}, "Woods": {"_count": 1, "usual": {"_count": 1}}, "timeout": {"_count": 1, "": {"_count": 1}}, "vampires": {"_count": 1, "I": {"_count": 1}}, "eavesdroppers": {"_count": 1, "": {"_count": 1}}, "business": {"_count": 4, "Minister": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}}, "YouKnowWho": {"_count": 5, "and": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "twelve": {"_count": 5, "stood": {"_count": 1}, "years": {"_count": 2}, "months": {"_count": 1}, "hours": {"_count": 1}}, "very": {"_count": 5, "long": {"_count": 2}, "little": {"_count": 1}, "rare": {"_count": 1}, "different": {"_count": 1}}, "jinxes": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Hogwarts": {"_count": 6, "": {"_count": 5}, "champion": {"_count": 1}}, "news": {"_count": 4, "of": {"_count": 1}, "werent": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "most": {"_count": 4, "of": {"_count": 3}, "Quaffle": {"_count": 1}}, "tomorrows": {"_count": 1, "match": {"_count": 1}}, "goal": {"_count": 6, "": {"_count": 2}, "Montague": {"_count": 1}, "hes": {"_count": 1}, "stop": {"_count": 1}, "come": {"_count": 1}}, "Alicia": {"_count": 1, "": {"_count": 1}}, "somebody": {"_count": 6, "to": {"_count": 1}, "at": {"_count": 1}, "who": {"_count": 2}, "else": {"_count": 1}, "": {"_count": 1}}, "lesser": {"_count": 1, "mortals": {"_count": 1}}, "precious": {"_count": 1, "Potters": {"_count": 1}}, "explanations": {"_count": 1, "to": {"_count": 1}}, "instructions": {"_count": 2, "thoroughly": {"_count": 1}, "they": {"_count": 1}}, "goodness": {"_count": 1, "sake": {"_count": 1}}, "Buckbeaks": {"_count": 1, "appeal": {"_count": 1}}, "size": {"_count": 1, "rather": {"_count": 1}}, "deliberate": {"_count": 1, "damage": {"_count": 1}}, "Madam": {"_count": 3, "Hoochs": {"_count": 1}, "Hooch": {"_count": 1}, "Malkins": {"_count": 1}}, "herself": {"_count": 5, "": {"_count": 3}, "because": {"_count": 1}, "by": {"_count": 1}}, "bringing": {"_count": 2, "it": {"_count": 1}, "him": {"_count": 1}}, "Hogsmeade": {"_count": 2, "": {"_count": 2}}, "Azkaban": {"_count": 1, "tonight": {"_count": 1}}, "believing": {"_count": 2, "you": {"_count": 1}, "in": {"_count": 1}}, "Lupins": {"_count": 1, "dropped": {"_count": 1}}, "Sirius": {"_count": 14, "and": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 2}, "after": {"_count": 1}, "so": {"_count": 2}, "to": {"_count": 4}, "okay": {"_count": 1}, "he": {"_count": 1}, "through": {"_count": 1}}, "leading": {"_count": 1, "his": {"_count": 1}}, "worms": {"_count": 3, "": {"_count": 1}, "again": {"_count": 1}, "at": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "accomplishing": {"_count": 1, "its": {"_count": 1}}, "miles": {"_count": 2, "around": {"_count": 1}, "": {"_count": 1}}, "gossip": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "they": {"_count": 8, "had": {"_count": 2}, "do": {"_count": 1}, "of": {"_count": 1}, "were": {"_count": 2}, "have": {"_count": 1}, "are": {"_count": 1}}, "plainly": {"_count": 1, "three": {"_count": 1}}, "leaving": {"_count": 2, "their": {"_count": 1}, "him": {"_count": 1}}, "Frank": {"_count": 2, "the": {"_count": 1}, "couldnt": {"_count": 1}}, "tax": {"_count": 1, "reasons": {"_count": 1}}, "many": {"_count": 11, "years": {"_count": 6}, "of": {"_count": 2}, "Harry": {"_count": 1}, "centuries": {"_count": 1}, "to": {"_count": 1}}, "attracting": {"_count": 1, "a": {"_count": 1}}, "Siriuss": {"_count": 3, "complete": {"_count": 1}, "mother": {"_count": 1}, "death": {"_count": 1}}, "which": {"_count": 13, "he": {"_count": 5}, "they": {"_count": 2}, "the": {"_count": 1}, "we": {"_count": 2}, "Fred": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "when": {"_count": 5, "Hedwig": {"_count": 1}, "were": {"_count": 1}, "Dumbledore": {"_count": 1}, "you": {"_count": 1}, "they": {"_count": 1}}, "looking": {"_count": 4, "politely": {"_count": 1}, "after": {"_count": 2}, "at": {"_count": 1}}, "thirty": {"_count": 1, "years": {"_count": 1}}, "thirteen": {"_count": 2, "years": {"_count": 2}}, "forgotten": {"_count": 1, "spellbooks": {"_count": 1}}, "stuff": {"_count": 1, "theyve": {"_count": 1}}, "heavens": {"_count": 13, "sake": {"_count": 13}}, "over": {"_count": 5, "a": {"_count": 4}, "two": {"_count": 1}}, "Apparating": {"_count": 1, "without": {"_count": 1}}, "beating": {"_count": 1, "their": {"_count": 1}}, "lack": {"_count": 3, "of": {"_count": 3}}, "awhile": {"_count": 1, "now": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "Ludo": {"_count": 1, "to": {"_count": 1}}, "Ireland": {"_count": 2, "red": {"_count": 1}, "": {"_count": 1}}, "Bulgaria": {"_count": 1, "which": {"_count": 1}}, "twenty": {"_count": 2, "minutes": {"_count": 2}}, "cobbing": {"_count": 1, "excessive": {"_count": 1}}, "looks": {"_count": 1, "alone": {"_count": 1}}, "Fred": {"_count": 2, "George": {"_count": 1}, "and": {"_count": 1}}, "noise": {"_count": 1, "from": {"_count": 1}}, "assent": {"_count": 1, "": {"_count": 1}}, "fun": {"_count": 2, "": {"_count": 2}}, "formal": {"_count": 1, "occasions": {"_count": 1}}, "smart": {"_count": 1, "parties": {"_count": 1}}, "each": {"_count": 12, "Did": {"_count": 1}, "challenge": {"_count": 1}, "student": {"_count": 1}, "of": {"_count": 6}, "month": {"_count": 1}, "other": {"_count": 2}}, "new": {"_count": 3, "staff": {"_count": 1}, "Gryffindor": {"_count": 1}, "Quidditch": {"_count": 1}}, "consideration": {"_count": 1, "": {"_count": 1}}, "North": {"_count": 1, "Tower": {"_count": 1}}, "eating": {"_count": 1, "": {"_count": 1}}, "ideas": {"_count": 1, "": {"_count": 1}}, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}, "catastrophes": {"_count": 1, "": {"_count": 1}}, "Ravenclaw": {"_count": 2, "yellow": {"_count": 1}, "said": {"_count": 1}}, "Hufflepuff": {"_count": 1, "and": {"_count": 1}}, "Slytherin": {"_count": 4, "": {"_count": 1}, "practice": {"_count": 1}, "said": {"_count": 1}, "House": {"_count": 1}}, "houseelves": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "yourself": {"_count": 7, "": {"_count": 2}, "said": {"_count": 2}, "and": {"_count": 1}, "but": {"_count": 1}, "I": {"_count": 1}}, "Bagman": {"_count": 2, "than": {"_count": 1}, "their": {"_count": 1}}, "Crouch": {"_count": 4, "perhaps": {"_count": 1}, "according": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "bed": {"_count": 5, "": {"_count": 2}, "I": {"_count": 1}, "one": {"_count": 1}, "in": {"_count": 1}}, "wages": {"_count": 1, "now": {"_count": 1}}, "Durmstrang": {"_count": 1, "he": {"_count": 1}}, "Beauxbatons": {"_count": 1, "said": {"_count": 1}}, "Cedric": {"_count": 1, "went": {"_count": 1}}, "Potters": {"_count": 1, "determination": {"_count": 1}}, "everybody": {"_count": 1, "else": {"_count": 1}}, "or": {"_count": 1, "accept": {"_count": 1}}, "board": {"_count": 1, "dusters": {"_count": 1}}, "daring": {"_count": 1, "to": {"_count": 1}}, "Potter": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}}, "Colin": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "temperamental": {"_count": 1}}, "scratches": {"_count": 1, "or": {"_count": 1}}, "forcing": {"_count": 2, "any": {"_count": 1}, "entry": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "calling": {"_count": 2, "him": {"_count": 2}}, "creatures": {"_count": 1, "like": {"_count": 1}}, "Dark": {"_count": 1, "wizards": {"_count": 1}}, "nutters": {"_count": 1, "like": {"_count": 1}}, "winegums": {"_count": 1, "or": {"_count": 1}}, "concentration": {"_count": 1, "": {"_count": 1}}, "Krum": {"_count": 2, "": {"_count": 2}}, "bothering": {"_count": 1, "me": {"_count": 1}}, "clothes": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "instance": {"_count": 28, "that": {"_count": 4}, "I": {"_count": 1}, "": {"_count": 9}, "had": {"_count": 1}, "was": {"_count": 1}, "almost": {"_count": 1}, "you": {"_count": 2}, "what": {"_count": 1}, "is": {"_count": 1}, "We": {"_count": 1}, "the": {"_count": 1}, "examinations": {"_count": 1}, "isnt": {"_count": 1}, "to": {"_count": 1}, "or": {"_count": 1}, "Greyback": {"_count": 1}}, "example": {"_count": 2, "from": {"_count": 1}, "making": {"_count": 1}}, "Diggory": {"_count": 1, "and": {"_count": 1}}, "drastic": {"_count": 1, "action": {"_count": 1}}, "Moody": {"_count": 3, "but": {"_count": 1}, "though": {"_count": 1}, "because": {"_count": 1}}, "eight": {"_count": 1, "oclock": {"_count": 1}}, "magical": {"_count": 1, "purposes": {"_count": 1}}, "granted": {"_count": 5, "that": {"_count": 3}, "as": {"_count": 1}, "Dumbledore": {"_count": 1}}, "telling": {"_count": 6, "me": {"_count": 4}, "the": {"_count": 1}, "him": {"_count": 1}}, "Barry": {"_count": 1, "Crouch": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "universal": {"_count": 1, "popularity": {"_count": 1}}, "relatives": {"_count": 1, "": {"_count": 1}}, "practicing": {"_count": 1, "inappropriate": {"_count": 1}}, "going": {"_count": 2, "in": {"_count": 1}, "after": {"_count": 1}}, "correct": {"_count": 1, "lawabiding": {"_count": 1}}, "nasty": {"_count": 1, "accidents": {"_count": 1}}, "Tricky": {"_count": 1, "Sorts": {"_count": 1}}, "Wacky": {"_count": 1, "Warlocks": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "biting": {"_count": 1, "anything": {"_count": 1}}, "first": {"_count": 1, "place": {"_count": 1}}, "famous": {"_count": 1, "wizards": {"_count": 1}}, "sacking": {"_count": 1, "Winky": {"_count": 1}}, "old": {"_count": 1, "Barty": {"_count": 1}}, "answers": {"_count": 1, "": {"_count": 1}}, "bones": {"_count": 1, "he": {"_count": 1}}, "Herbology": {"_count": 1, "": {"_count": 1}}, "magic": {"_count": 1, "Muggles": {"_count": 1}}, "blackmail": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 3, "were": {"_count": 1}, "dressed": {"_count": 1}, "was": {"_count": 1}}, "filth": {"_count": 1, "like": {"_count": 1}}, "by": {"_count": 3, "Albus": {"_count": 1}, "each": {"_count": 1}, "wizards": {"_count": 1}}, "fragments": {"_count": 1, "of": {"_count": 1}}, "attention": {"_count": 1, "": {"_count": 1}}, "violence": {"_count": 1, "": {"_count": 1}}, "Binns": {"_count": 1, "": {"_count": 1}}, "solid": {"_count": 1, "objects": {"_count": 1}}, "forgiveness": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 8, "had": {"_count": 2}, "knew": {"_count": 2}, "was": {"_count": 1}, "chose": {"_count": 1}, "think": {"_count": 1}, "have": {"_count": 1}}, "regeneration": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "possession": {"_count": 1, "as": {"_count": 1}}, "true": {"_count": 1, "rebirth": {"_count": 1}}, "only": {"_count": 3, "moments": {"_count": 1}, "half": {"_count": 1}, "then": {"_count": 1}}, "cleaning": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "nobility": {"_count": 1, "and": {"_count": 1}}, "Winkys": {"_count": 1, "continued": {"_count": 1}}, "asking": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "dreamless": {"_count": 1, "sleep": {"_count": 1}}, "tonights": {"_count": 1, "events": {"_count": 1}}, "these": {"_count": 2, "last": {"_count": 1}, "": {"_count": 1}}, "suggesting": {"_count": 1, "it": {"_count": 1}}, "Muggles": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "returning": {"_count": 2, "Cedrics": {"_count": 1}, "to": {"_count": 1}}, "certain": {"_count": 2, "": {"_count": 1}, "shapes": {"_count": 1}}, "celebration": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "spreading": {"_count": 3, "discord": {"_count": 2}, "evil": {"_count": 1}}, "stories": {"_count": 1, "all": {"_count": 1}}, "tea": {"_count": 3, "whenever": {"_count": 1}, "": {"_count": 2}}, "four": {"_count": 6, "solid": {"_count": 1}, "days": {"_count": 2}, "years": {"_count": 2}, "": {"_count": 1}}, "light": {"_count": 1, "to": {"_count": 1}}, "independent": {"_count": 1, "movement": {"_count": 1}}, "fighting": {"_count": 1, "off": {"_count": 1}}, "details": {"_count": 1, "about": {"_count": 1}}, "sleep": {"_count": 2, "even": {"_count": 1}, "to": {"_count": 1}}, "further": {"_count": 1, "sounds": {"_count": 1}}, "big": {"_count": 1, "trouble": {"_count": 1}}, "headquarters": {"_count": 2, "about": {"_count": 1}, "of": {"_count": 1}}, "human": {"_count": 3, "habitation": {"_count": 1}, "flesh": {"_count": 1}, "use": {"_count": 1}}, "twice": {"_count": 1, "what": {"_count": 1}}, "pudding": {"_count": 1, "": {"_count": 1}}, "slipping": {"_count": 1, "off": {"_count": 1}}, "causing": {"_count": 1, "pain": {"_count": 1}}, "heads": {"_count": 1, "and": {"_count": 1}}, "Sunday": {"_count": 1, "lunch": {"_count": 1}}, "joining": {"_count": 1, "up": {"_count": 1}}, "tomorrow": {"_count": 1, "morning": {"_count": 1}}, "registration": {"_count": 2, "at": {"_count": 2}}, "Aurors": {"_count": 2, "itll": {"_count": 1}, "": {"_count": 1}}, "Bode": {"_count": 1, "but": {"_count": 1}}, "Gods": {"_count": 1, "sake": {"_count": 1}}, "misdemeanors": {"_count": 1, "at": {"_count": 1}}, "Tonks": {"_count": 3, "but": {"_count": 1}, "to": {"_count": 1}, "instead": {"_count": 1}}, "meals": {"_count": 1, "sometimes": {"_count": 1}}, "nine": {"_count": 1, "months": {"_count": 1}}, "confirmation": {"_count": 1, "that": {"_count": 1}}, "other": {"_count": 2, "reasons": {"_count": 1}, "peoples": {"_count": 1}}, "whos": {"_count": 1, "going": {"_count": 1}}, "Sturgis": {"_count": 1, "": {"_count": 1}}, "safekeeping": {"_count": 2, "or": {"_count": 1}, "putting": {"_count": 1}}, "departure": {"_count": 1, "": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "as": {"_count": 1}}, "lit": {"_count": 1, "windows": {"_count": 1}}, "Fudge": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "But": {"_count": 1, "this": {"_count": 1}}, "food": {"_count": 1, "had": {"_count": 1}}, "without": {"_count": 1, "progress": {"_count": 1}}, "progresss": {"_count": 2, "sake": {"_count": 2}}, "simple": {"_count": 1, "parttime": {"_count": 1}}, "testers": {"_count": 2, "on": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 3, "everything": {"_count": 1}, "stop": {"_count": 1}, "little": {"_count": 1}}, "break": {"_count": 3, "Binns": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "Cedrics": {"_count": 1, "death": {"_count": 1}}, "testing": {"_count": 1, "said": {"_count": 1}}, "dream": {"_count": 1, "interpretation": {"_count": 1}}, "practical": {"_count": 2, "use": {"_count": 1}, "demonstrations": {"_count": 1}}, "Beginners": {"_count": 3, "": {"_count": 3}}, "time": {"_count": 3, "": {"_count": 3}}, "grains": {"_count": 1, "of": {"_count": 1}}, "earrings": {"_count": 1, "a": {"_count": 1}}, "McGonagall": {"_count": 1, "work": {"_count": 1}}, "Trelawney": {"_count": 1, "": {"_count": 1}}, "Umbridges": {"_count": 1, "office": {"_count": 1}}, "marking": {"_count": 2, "": {"_count": 1}, "feeling": {"_count": 1}}, "Divination": {"_count": 3, "their": {"_count": 1}, "": {"_count": 1}, "five": {"_count": 1}}, "inspiration": {"_count": 1, "": {"_count": 1}}, "Friday": {"_count": 1, "": {"_count": 1}}, "Dungbombs": {"_count": 1, "": {"_count": 1}}, "Madame": {"_count": 1, "Malkins": {"_count": 1}}, "Sprout": {"_count": 1, "on": {"_count": 1}}, "Rons": {"_count": 2, "goal": {"_count": 1}, "hasty": {"_count": 1}}, "barely": {"_count": 1, "three": {"_count": 1}}, "Head": {"_count": 1, "Boy": {"_count": 1}}, "trespass": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "fourteen": {"_count": 1, "years": {"_count": 1}}, "James": {"_count": 2, "": {"_count": 2}}, "double": {"_count": 1, "Potions": {"_count": 1}}, "\u2018Outstanding": {"_count": 1, "she": {"_count": 1}}, "\u2018Exceeds": {"_count": 1, "Expectations": {"_count": 1}}, "\u2018Acceptable": {"_count": 1, "and": {"_count": 1}}, "\u2018Poor": {"_count": 1, "Ron": {"_count": 1}}, "\u2018Dreadful": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 4, "such": {"_count": 1}, "seeing": {"_count": 1}, "another": {"_count": 1}, "one": {"_count": 1}}, "serious": {"_count": 1, "trouble": {"_count": 1}}, "wood": {"_count": 1, "lice": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "others": {"_count": 2, "the": {"_count": 1}, "sake": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "Angelina": {"_count": 1, "looked": {"_count": 1}}, "Binnss": {"_count": 1, "lesson": {"_count": 1}}, "birds": {"_count": 1, "of": {"_count": 1}}, "Potions": {"_count": 3, "all": {"_count": 1}, "on": {"_count": 1}, "brilliance": {"_count": 1}}, "NonOffensive": {"_count": 1, "Responses": {"_count": 1}}, "Strengthening": {"_count": 1, "Solutions": {"_count": 1}}, "Umbridge": {"_count": 2, "to": {"_count": 1}, "isnt": {"_count": 1}}, "homework": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "Winky": {"_count": 1, "too": {"_count": 1}}, "practices": {"_count": 1, "and": {"_count": 1}}, "short": {"_count": 1, "so": {"_count": 1}}, "improvement": {"_count": 1, "": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "examination": {"_count": 1, "at": {"_count": 1}}, "Montague": {"_count": 1, "he": {"_count": 1}}, "fat": {"_count": 1, "and": {"_count": 1}}, "release": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "patience": {"_count": 1, "as": {"_count": 1}}, "giants": {"_count": 2, "": {"_count": 2}}, "cooking": {"_count": 1, "she": {"_count": 1}}, "everyone": {"_count": 6, "to": {"_count": 1}, "captured": {"_count": 1}, "who": {"_count": 1}, "else": {"_count": 1}, "": {"_count": 2}}, "brains": {"_count": 1, "that": {"_count": 1}}, "Fawkes": {"_count": 1, "when": {"_count": 1}}, "anybody": {"_count": 4, "approaching": {"_count": 1}, "to": {"_count": 3}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "messing": {"_count": 1, "things": {"_count": 1}}, "St": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "lets": {"_count": 1, "see": {"_count": 1}}, "Arthur": {"_count": 2, "being": {"_count": 1}, "didnt": {"_count": 1}}, "window": {"_count": 1, "displays": {"_count": 1}}, "emergency": {"_count": 1, "bone": {"_count": 1}}, "pupils": {"_count": 3, "": {"_count": 2}, "unblinking": {"_count": 1}}, "Hedwig": {"_count": 3, "before": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}}, "entry": {"_count": 1, "": {"_count": 1}}, "term": {"_count": 1, "to": {"_count": 1}}, "anyway": {"_count": 2, "": {"_count": 2}}, "cover": {"_count": 4, "that": {"_count": 1}, "squealing": {"_count": 1}, "amongst": {"_count": 1}, "and": {"_count": 1}}, "six": {"_count": 2, "months": {"_count": 1}, "feet": {"_count": 1}}, "snakes": {"_count": 1, "for": {"_count": 1}}, "empty": {"_count": 1, "chairs": {"_count": 1}}, "flight": {"_count": 1, "": {"_count": 1}}, "misbehaving": {"_count": 1, "students": {"_count": 1}}, "playing": {"_count": 1, "Exploding": {"_count": 1}}, "YouKnow": {"_count": 1, "Shut": {"_count": 1}}, "Valentines": {"_count": 1, "Day": {"_count": 1}}, "free": {"_count": 2, "": {"_count": 2}}, "baths": {"_count": 1, "after": {"_count": 1}}, "Chaser": {"_count": 1, "": {"_count": 1}}, "parties": {"_count": 1, "eh": {"_count": 1}}, "position": {"_count": 2, "treading": {"_count": 1}, "receiving": {"_count": 1}}, "copies": {"_count": 1, "of": {"_count": 1}}, "appointing": {"_count": 1, "a": {"_count": 1}}, "allowing": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "setting": {"_count": 1, "up": {"_count": 1}}, "schoolage": {"_count": 1, "I": {"_count": 1}}, "for": {"_count": 3, "your": {"_count": 1}, "raising": {"_count": 1}, "danger": {"_count": 1}}, "contradicting": {"_count": 1, "me": {"_count": 1}}, "whom": {"_count": 5, "James": {"_count": 1}, "he": {"_count": 3}, "Merope": {"_count": 1}}, "Quidditch": {"_count": 1, "practice": {"_count": 1}}, "thrilling": {"_count": 1, "opportunities": {"_count": 1}}, "leaks": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "seconds": {"_count": 1}}, "Kreacher": {"_count": 6, "he": {"_count": 1}, "wonders": {"_count": 1}, "because": {"_count": 1}, "who": {"_count": 1}, "by": {"_count": 1}, "He": {"_count": 1}}, "Whipping": {"_count": 2, "": {"_count": 2}}, "shiny": {"_count": 1, "objects": {"_count": 1}}, "Occlumency": {"_count": 1, "lessons": {"_count": 1}}, "victory": {"_count": 1, "due": {"_count": 1}}, "better": {"_count": 1, "and": {"_count": 1}}, "minutes": {"_count": 1, "at": {"_count": 1}}, "wear": {"_count": 2, "her": {"_count": 1}, "there": {"_count": 1}}, "mixing": {"_count": 1, "with": {"_count": 1}}, "brain": {"_count": 1, "stimulants": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "Monday": {"_count": 2, "morning": {"_count": 1}, "nights": {"_count": 1}}, "hiccups": {"_count": 1, "": {"_count": 1}}, "Color": {"_count": 1, "Change": {"_count": 1}}, "proof": {"_count": 1, "": {"_count": 1}}, "giggling": {"_count": 1, "too": {"_count": 1}}, "stargazing": {"_count": 1, "cloudless": {"_count": 1}}, "pages": {"_count": 1, "and": {"_count": 1}}, "why": {"_count": 1, "dyou": {"_count": 1}}, "inflicting": {"_count": 1, "punishment": {"_count": 1}}, "truthtelling": {"_count": 1, "": {"_count": 1}}, "Grawps": {"_count": 1, "outstretched": {"_count": 1}}, "scraps": {"_count": 1, "of": {"_count": 1}}, "heroics": {"_count": 1, "the": {"_count": 1}}, "Notts": {"_count": 1, "injuries": {"_count": 1}}, "too": {"_count": 3, "long": {"_count": 3}}, "Voldemorts": {"_count": 3, "trick": {"_count": 1}, "complete": {"_count": 1}, "sayso": {"_count": 1}}, "study": {"_count": 1, "that": {"_count": 1}}, "alerting": {"_count": 1, "the": {"_count": 1}}, "Miss": {"_count": 1, "Lovegood": {"_count": 1}}, "folded": {"_count": 1, "ones": {"_count": 1}}, "Luna": {"_count": 2, "": {"_count": 2}}, "she": {"_count": 6, "closed": {"_count": 1}, "had": {"_count": 1}, "whispered": {"_count": 1}, "lit": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}}, "who": {"_count": 1, "in": {"_count": 1}}, "Bellatrix": {"_count": 2, "showed": {"_count": 1}, "had": {"_count": 1}}, "finishing": {"_count": 1, "him": {"_count": 1}}, "Draco": {"_count": 2, "He": {"_count": 1}, "Malfoy": {"_count": 1}}, "Luciuss": {"_count": 2, "mistake": {"_count": 1}, "recent": {"_count": 1}}, "choosing": {"_count": 1, "those": {"_count": 1}}, "mentioning": {"_count": 1, "it": {"_count": 1}}, "admitting": {"_count": 1, "it": {"_count": 1}}, "emotion": {"_count": 1, "at": {"_count": 1}}, "defensive": {"_count": 1, "jinxes": {"_count": 1}}, "protection": {"_count": 1, "": {"_count": 1}}, "Phlegm": {"_count": 1, "": {"_count": 1}}, "extra": {"_count": 1, "security": {"_count": 1}}, "wands": {"_count": 1, "": {"_count": 1}}, "language": {"_count": 1, "like": {"_count": 1}}, "minor": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "Ill": {"_count": 1, "decide": {"_count": 1}}, "Trevor": {"_count": 1, "and": {"_count": 1}}, "embarrassing": {"_count": 1, "honesty": {"_count": 1}}, "inviting": {"_count": 1, "someone": {"_count": 1}}, "hoping": {"_count": 1, "it": {"_count": 1}}, "morning": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "lateness": {"_count": 1, "I": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "Parkinson": {"_count": 2, "": {"_count": 1}, "wasnt": {"_count": 1}}, "ripping": {"_count": 1, "up": {"_count": 1}}, "studying": {"_count": 1, "Ron": {"_count": 1}}, "Runes": {"_count": 1, "she": {"_count": 1}}, "word": {"_count": 2, "from": {"_count": 1}, "as": {"_count": 1}}, "answering": {"_count": 1, "the": {"_count": 1}}, "dramatic": {"_count": 1, "effect": {"_count": 1}}, "dueling": {"_count": 1, "practice": {"_count": 1}}, "want": {"_count": 2, "of": {"_count": 2}}, "backing": {"_count": 1, "away": {"_count": 1}}, "Ogden": {"_count": 1, "rise": {"_count": 1}}, "owls": {"_count": 1, "said": {"_count": 1}}, "air": {"_count": 2, "": {"_count": 1}, "His": {"_count": 1}}, "grandeur": {"_count": 1, "meant": {"_count": 1}}, "eighteen": {"_count": 1, "years": {"_count": 1}}, "although": {"_count": 1, "neither": {"_count": 1}}, "shock": {"_count": 1, "": {"_count": 1}}, "repair": {"_count": 1, "": {"_count": 1}}, "siding": {"_count": 1, "with": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "gold": {"_count": 3, "": {"_count": 1}, "Not": {"_count": 1}, "insisting": {"_count": 1}}, "mad": {"_count": 1, "people": {"_count": 1}}, "howling": {"_count": 1, "in": {"_count": 1}}, "Tom": {"_count": 1, "the": {"_count": 1}}, "such": {"_count": 4, "a": {"_count": 2}, "filth": {"_count": 1}, "an": {"_count": 1}}, "cruelty": {"_count": 1, "secrecy": {"_count": 1}}, "Slughorns": {"_count": 1, "favorites": {"_count": 1}}, "Deans": {"_count": 1, "instant": {"_count": 1}}, "Ginny": {"_count": 3, "were": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "kissing": {"_count": 1, "her": {"_count": 1}}, "jealousy": {"_count": 1, "rather": {"_count": 1}}, "upholding": {"_count": 1, "rules": {"_count": 1}}, "Malfoys": {"_count": 2, "voice": {"_count": 1}, "periodic": {"_count": 1}}, "school": {"_count": 2, "": {"_count": 2}}, "Celestinas": {"_count": 1, "crooning": {"_count": 1}}, "perhaps": {"_count": 1, "the": {"_count": 1}}, "knowledge": {"_count": 1, "": {"_count": 1}}, "attacking": {"_count": 1, "one": {"_count": 1}}, "losing": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "murders": {"_count": 1, "he": {"_count": 1}}, "desperate": {"_count": 1, "measures": {"_count": 1}}, "nobody": {"_count": 2, "but": {"_count": 2}}, "sheer": {"_count": 1, "cheek": {"_count": 1}}, "Romilda": {"_count": 1, "Vane": {"_count": 1}}, "Slughorn": {"_count": 2, "himself": {"_count": 1}, "wore": {"_count": 1}}, "\u2018the": {"_count": 1, "Chosen": {"_count": 1}}, "longer": {"_count": 3, "than": {"_count": 3}}, "reasons": {"_count": 1, "best": {"_count": 1}}, "hexing": {"_count": 1, "him": {"_count": 1}}, "warding": {"_count": 1, "off": {"_count": 1}}, "Special": {"_count": 1, "Services": {"_count": 1}}, "visiting": {"_count": 1, "this": {"_count": 1}}, "revenge": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "gain": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "advice": {"_count": 1, "by": {"_count": 1}}, "additional": {"_count": 1, "practice": {"_count": 1}}, "Ancient": {"_count": 1, "Runes": {"_count": 1}}, "decades": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "poison": {"_count": 1, "he": {"_count": 1}}, "opening": {"_count": 1, "the": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "traces": {"_count": 1, "of": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "particularly": {"_count": 1, "significant": {"_count": 1}}, "romance": {"_count": 1, "all": {"_count": 1}}, "surely": {"_count": 1, "this": {"_count": 1}}, "as": {"_count": 2, "Hermione": {"_count": 1}, "he": {"_count": 1}}, "distracting": {"_count": 1, "Ginny": {"_count": 1}}, "trusting": {"_count": 2, "Snape": {"_count": 2}}, "create": {"_count": 1, "so": {"_count": 1}}, "afters": {"_count": 1, "Dumbledore": {"_count": 1}}, "seeing": {"_count": 1, "him": {"_count": 1}}, "werewolf": {"_count": 1, "bites": {"_count": 1}}, "raising": {"_count": 1, "everyones": {"_count": 1}}, "mere": {"_count": 2, "words": {"_count": 1}, "seconds": {"_count": 1}}, "closeness": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 3, "rights": {"_count": 1}, "protection": {"_count": 1}, "torture": {"_count": 1}}, "trout": {"_count": 1, "": {"_count": 1}}, "Skeeter": {"_count": 2, "s": {"_count": 1}, "to": {"_count": 1}}, "tolerance": {"_count": 1, "he": {"_count": 1}}, "misuse": {"_count": 1, "of": {"_count": 1}}, "fiddling": {"_count": 1, "about": {"_count": 1}}, "chapters": {"_count": 1, "nine": {"_count": 1}}, "traveling": {"_count": 1, "Uncle": {"_count": 1}}, "government": {"_count": 1, "protection": {"_count": 1}}, "safety": {"_count": 1, "": {"_count": 1}}, "expression": {"_count": 1, "before": {"_count": 1}}, "em": {"_count": 1, "": {"_count": 1}}, "pursuers": {"_count": 1, "he": {"_count": 1}}, "patching": {"_count": 1, "us": {"_count": 1}}, "Disarming": {"_count": 1, "is": {"_count": 1}}, "holey": {"_count": 1, "": {"_count": 1}}, "Bill": {"_count": 2, "and": {"_count": 2}}, "zem": {"_count": 1, "knowing": {"_count": 1}}, "precisely": {"_count": 1, "that": {"_count": 1}}, "Monsieur": {"_count": 1, "and": {"_count": 1}}, "survival": {"_count": 1, "": {"_count": 1}}, "Gregorovitch": {"_count": 1, "": {"_count": 1}}, "ending": {"_count": 1, "his": {"_count": 1}}, "staying": {"_count": 1, "well": {"_count": 1}}, "Justifiable": {"_count": 1, "Confiscation": {"_count": 1}}, "luck": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "vearing": {"_count": 1, "that": {"_count": 1}}, "distraction": {"_count": 1, "he": {"_count": 1}}, "likely": {"_count": 1, "hiding": {"_count": 1}}, "Master": {"_count": 1, "Regulus": {"_count": 1}}, "assistance": {"_count": 1, "": {"_count": 1}}, "torturing": {"_count": 1, "Harrys": {"_count": 1}}, "interview": {"_count": 1, "by": {"_count": 1}}, "danger": {"_count": 1, "or": {"_count": 1}}, "killing": {"_count": 1, "meself": {"_count": 1}}, "trading": {"_count": 1, "in": {"_count": 1}}, "normal": {"_count": 1, "clothing": {"_count": 1}}, "intruders": {"_count": 1, "every": {"_count": 1}}, "interrogation": {"_count": 1, "": {"_count": 1}}, "recordkeeping": {"_count": 1, "we": {"_count": 1}}, "fresh": {"_count": 1, "hiding": {"_count": 1}}, "Bletchley": {"_count": 1, "": {"_count": 1}}, "improper": {"_count": 1, "use": {"_count": 1}}, "Selwyn": {"_count": 1, "": {"_count": 1}}, "blood": {"_count": 1, "drenched": {"_count": 1}}, "comfort": {"_count": 1, "": {"_count": 1}}, "security": {"_count": 1, "": {"_count": 1}}, "mutual": {"_count": 1, "support": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "weaker": {"_count": 1, "souls": {"_count": 1}}, "moments": {"_count": 1, "": {"_count": 1}}, "photographs": {"_count": 1, "": {"_count": 1}}, "Exceptional": {"_count": 1, "SpellCasting": {"_count": 1}}, "GroundBreaking": {"_count": 1, "Contribution": {"_count": 1}}, "Greece": {"_count": 1, "the": {"_count": 1}}, "nearfatal": {"_count": 1, "attacks": {"_count": 1}}, "wishing": {"_count": 1, "that": {"_count": 1}}, "retreating": {"_count": 1, "several": {"_count": 1}}, "mushrooms": {"_count": 1, "Ron": {"_count": 1}}, "nonexistent": {"_count": 1, "blackberries": {"_count": 1}}, "Freshwater": {"_count": 2, "Plimpies": {"_count": 1}, "Plimpy": {"_count": 1}}, "sporting": {"_count": 1, "the": {"_count": 1}}, "travelers": {"_count": 1, "usually": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "Plimpies": {"_count": 1, "": {"_count": 1}}, "dust": {"_count": 1, "": {"_count": 1}}, "Xenophilius": {"_count": 1, "if": {"_count": 1}}, "dampening": {"_count": 1, "his": {"_count": 1}}, "guessing": {"_count": 1, "them": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "truants": {"_count": 1, "to": {"_count": 1}}, "picking": {"_count": 1, "you": {"_count": 1}}, "Greyback": {"_count": 1, "to": {"_count": 1}}, "here": {"_count": 1, "were": {"_count": 1}}, "rescuing": {"_count": 1, "me": {"_count": 1}}, "acting": {"_count": 1, "like": {"_count": 1}}, "personal": {"_count": 1, "gain": {"_count": 1}}, "places": {"_count": 1, "YouKnow": {"_count": 1}}, "experience": {"_count": 1, "the": {"_count": 1}}, "Peter": {"_count": 1, "Pettigrew": {"_count": 1}}, "payment": {"_count": 1, "": {"_count": 1}}, "mealtimes": {"_count": 1, "": {"_count": 1}}, "Griphook": {"_count": 1, "and": {"_count": 1}}, "Muriels": {"_count": 1, "zis": {"_count": 1}}, "goblin": {"_count": 1, "ownership": {"_count": 1}}, "possible": {"_count": 1, "skulduggery": {"_count": 1}}, "identification": {"_count": 1, "before": {"_count": 1}}, "open": {"_count": 1, "sea": {"_count": 1}}, "hearing": {"_count": 1, "about": {"_count": 1}}, "sticking": {"_count": 1, "my": {"_count": 1}}, "daybreak": {"_count": 1, "when": {"_count": 1}}, "Hallows": {"_count": 1, "and": {"_count": 1}}, "Aberforth": {"_count": 1, "to": {"_count": 1}}, "yelling": {"_count": 1, "about": {"_count": 1}}, "Gran": {"_count": 1, "": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "immediate": {"_count": 1, "action": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "Minerva": {"_count": 1, "McGonagall": {"_count": 1}}, "friends": {"_count": 1, "or": {"_count": 1}}, "objects": {"_count": 1, "he": {"_count": 1}}, "seconds": {"_count": 1, "as": {"_count": 1}}, "freaks": {"_count": 1, "": {"_count": 1}}, "Then": {"_count": 1, "a": {"_count": 1}}, "Dracos": {"_count": 1, "parents": {"_count": 1}}, "accidental": {"_count": 1, "victims": {"_count": 1}}, "slaughter": {"_count": 2, "But": {"_count": 1}, "and": {"_count": 1}}, "He": {"_count": 1, "recoiled": {"_count": 1}}, "fools": {"_count": 1, "said": {"_count": 1}}, "Ariana": {"_count": 1, "": {"_count": 1}}, "seizing": {"_count": 1, "power": {"_count": 1}}, "final": {"_count": 1, "kisses": {"_count": 1}}, "nineteen": {"_count": 1, "years": {"_count": 1}}}, "several": {"_count": 279, "years": {"_count": 8, "in": {"_count": 1}, "": {"_count": 2}, "ago": {"_count": 2}, "I": {"_count": 1}, "older": {"_count": 1}, "previously": {"_count": 1}}, "important": {"_count": 2, "telephone": {"_count": 1}, "points": {"_count": 1}}, "chipped": {"_count": 1, "mugs": {"_count": 1}}, "people": {"_count": 17, "behind": {"_count": 1}, "yelled": {"_count": 1}, "": {"_count": 2}, "had": {"_count": 1}, "echoed": {"_count": 1}, "looked": {"_count": 2}, "murmured": {"_count": 1}, "gasped": {"_count": 1}, "who": {"_count": 2}, "due": {"_count": 1}, "wolfwhistled": {"_count": 1}, "screamed": {"_count": 1}, "planted": {"_count": 1}, "were": {"_count": 1}}, "Ravenclaws": {"_count": 1, "stood": {"_count": 1}}, "booming": {"_count": 1, "barks": {"_count": 1}}, "purple": {"_count": 1, "firecrackers": {"_count": 1}}, "feet": {"_count": 10, "of": {"_count": 3}, "": {"_count": 1}, "as": {"_count": 1}, "from": {"_count": 1}, "away": {"_count": 2}, "below": {"_count": 1}, "into": {"_count": 1}}, "snowballs": {"_count": 1, "so": {"_count": 1}}, "live": {"_count": 2, "white": {"_count": 1}, "peacocks": {"_count": 1}}, "times": {"_count": 19, "": {"_count": 4}, "before": {"_count": 2}, "their": {"_count": 1}, "and": {"_count": 1}, "made": {"_count": 1}, "in": {"_count": 2}, "too": {"_count": 1}, "a": {"_count": 1}, "more": {"_count": 1}, "trying": {"_count": 1}, "he": {"_count": 2}, "his": {"_count": 1}, "to": {"_count": 1}}, "stories": {"_count": 1, "high": {"_count": 1}}, "occasions": {"_count": 1, "but": {"_count": 1}}, "of": {"_count": 20, "its": {"_count": 1}, "these": {"_count": 1}, "the": {"_count": 11}, "Crabbe": {"_count": 1}, "her": {"_count": 1}, "Dudleys": {"_count": 1}, "them": {"_count": 2}, "Dumbledore": {"_count": 1}, "Mrs": {"_count": 1}}, "hours": {"_count": 3, "and": {"_count": 1}, "earlier": {"_count": 1}, "afterward": {"_count": 1}}, "minutes": {"_count": 15, "before": {"_count": 6}, "later": {"_count": 2}, "hard": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "thought": {"_count": 1}, "to": {"_count": 1}}, "slugs": {"_count": 1, "dribbled": {"_count": 1}}, "deep": {"_count": 2, "breaths": {"_count": 2}}, "extra": {"_count": 1, "pairs": {"_count": 1}}, "long": {"_count": 8, "minutes": {"_count": 2}, "ginger": {"_count": 1}, "moments": {"_count": 4}, "scratches": {"_count": 1}}, "Slytherins": {"_count": 1, "were": {"_count": 1}}, "weeks": {"_count": 1, "": {"_count": 1}}, "students": {"_count": 1, "finally": {"_count": 1}}, "were": {"_count": 1, "thrown": {"_count": 1}}, "tense": {"_count": 1, "minutes": {"_count": 1}}, "Hogwarts": {"_count": 1, "feasts": {"_count": 1}}, "bottles": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "buttons": {"_count": 1, "had": {"_count": 1}}, "streets": {"_count": 1, "away": {"_count": 1}}, "days": {"_count": 4, "to": {"_count": 1}, "of": {"_count": 1}, "old": {"_count": 1}, "after": {"_count": 1}}, "inches": {"_count": 4, "too": {"_count": 1}, "of": {"_count": 2}, "": {"_count": 1}}, "places": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "small": {"_count": 3, "ways": {"_count": 1}, "children": {"_count": 1}, "golden": {"_count": 1}}, "previous": {"_count": 1, "headmasters": {"_count": 1}}, "tables": {"_count": 2, "spread": {"_count": 1}, "were": {"_count": 1}}, "bags": {"_count": 1, "full": {"_count": 1}}, "pints": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "classes": {"_count": 1, "at": {"_count": 1}}, "lessons": {"_count": 1, "at": {"_count": 1}}, "games": {"_count": 1, "of": {"_count": 1}}, "paces": {"_count": 3, "dragging": {"_count": 1}, "nearer": {"_count": 1}, "back": {"_count": 1}}, "knives": {"_count": 1, "soared": {"_count": 1}}, "gnomes": {"_count": 1, "sprinting": {"_count": 1}}, "acres": {"_count": 1, "": {"_count": 1}}, "turrets": {"_count": 1, "and": {"_count": 1}}, "ruined": {"_count": 1, "tents": {"_count": 1}}, "bodies": {"_count": 2, "were": {"_count": 2}}, "fifthyear": {"_count": 1, "girls": {"_count": 1}}, "attempts": {"_count": 1, "over": {"_count": 1}}, "open": {"_count": 1, "wooden": {"_count": 1}}, "Muggle": {"_count": 1, "lawkeepers": {"_count": 1}}, "memories": {"_count": 1, "before": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "passing": {"_count": 1}}, "owls": {"_count": 1, "in": {"_count": 1}}, "yards": {"_count": 1, "and": {"_count": 1}}, "upturned": {"_count": 1, "chairs": {"_count": 1}}, "burnt": {"_count": 1, "fingers": {"_count": 1}}, "guitars": {"_count": 1, "a": {"_count": 1}}, "pupils": {"_count": 1, "during": {"_count": 1}}, "pairs": {"_count": 1, "of": {"_count": 1}}, "notches": {"_count": 1, "": {"_count": 1}}, "deaths": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 2, "happened": {"_count": 2}}, "faces": {"_count": 1, "peering": {"_count": 1}}, "expensive": {"_count": 1, "racing": {"_count": 1}}, "sets": {"_count": 1, "of": {"_count": 1}}, "more": {"_count": 8, "inches": {"_count": 1}, "memos": {"_count": 1}, "minutes": {"_count": 1}, "times": {"_count": 1}, "kissing": {"_count": 1}, "stones": {"_count": 1}, "paces": {"_count": 1}, "Bludger": {"_count": 1}}, "rather": {"_count": 1, "shabbylooking": {"_count": 1}}, "panes": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "paper": {"_count": 1, "airplanes": {"_count": 1}}, "posters": {"_count": 2, "of": {"_count": 2}}, "happy": {"_count": 1, "years": {"_count": 1}}, "warnings": {"_count": 1, "before": {"_count": 1}}, "other": {"_count": 2, "people": {"_count": 1}, "goblins": {"_count": 1}}, "inkwells": {"_count": 1, "": {"_count": 1}}, "vases": {"_count": 1, "full": {"_count": 1}}, "voices": {"_count": 1, "": {"_count": 1}}, "scarves": {"_count": 1, "and": {"_count": 1}}, "timidlooking": {"_count": 1, "second": {"_count": 1}}, "pillows": {"_count": 1, "and": {"_count": 1}}, "loud": {"_count": 1, "barks": {"_count": 1}}, "new": {"_count": 3, "bruises": {"_count": 1}, "offices": {"_count": 1}, "establishments": {"_count": 1}}, "steps": {"_count": 6, "ahead": {"_count": 1}, "from": {"_count": 1}, "toward": {"_count": 1}, "": {"_count": 1}, "backward": {"_count": 1}, "before": {"_count": 1}}, "staggering": {"_count": 1, "steps": {"_count": 1}}, "hasty": {"_count": 1, "steps": {"_count": 1}}, "floors": {"_count": 2, "below": {"_count": 2}}, "shelves": {"_count": 1, "away": {"_count": 1}}, "booklets": {"_count": 1, "on": {"_count": 1}}, "beats": {"_count": 1, "": {"_count": 1}}, "lowhanging": {"_count": 1, "branches": {"_count": 1}}, "lights": {"_count": 1, "flickered": {"_count": 1}}, "seconds": {"_count": 4, "before": {"_count": 3}, "to": {"_count": 1}}, "hairs": {"_count": 1, "part": {"_count": 1}}, "large": {"_count": 3, "Slytherins": {"_count": 1}, "gulps": {"_count": 1}, "Gryffindor": {"_count": 1}}, "others": {"_count": 1, "roared": {"_count": 1}}, "escaped": {"_count": 1, "Death": {"_count": 1}}, "ways": {"_count": 1, "": {"_count": 1}}, "books": {"_count": 1, "Dursley": {"_count": 1}}, "carpenters": {"_count": 1, "a": {"_count": 1}}, "Muggles": {"_count": 1, "had": {"_count": 1}}, "boxes": {"_count": 1, "swore": {"_count": 1}}, "Ministry": {"_count": 1, "employees": {"_count": 1}}, "generations": {"_count": 2, "before": {"_count": 1}, "of": {"_count": 1}}, "tantrums": {"_count": 1, "one": {"_count": 1}}, "broken": {"_count": 1, "teeth": {"_count": 1}}, "frantic": {"_count": 1, "mice": {"_count": 1}}, "nasty": {"_count": 1, "scratches": {"_count": 1}}, "twittering": {"_count": 1, "yellow": {"_count": 1}}, "frightened": {"_count": 1, "first": {"_count": 1}}, "elderly": {"_count": 1, "warlocks": {"_count": 1}}, "relatives": {"_count": 1, "of": {"_count": 1}}, "woolly": {"_count": 1, "hats": {"_count": 1}}, "teachers": {"_count": 1, "Professor": {"_count": 1}}, "reasons": {"_count": 2, "though": {"_count": 1}, "why": {"_count": 1}}, "rusting": {"_count": 1, "swords": {"_count": 1}}, "hands": {"_count": 1, "pulled": {"_count": 1}}, "sunlit": {"_count": 1, "days": {"_count": 1}}, "sherry": {"_count": 1, "bottles": {"_count": 1}}, "moments": {"_count": 4, "Harry": {"_count": 1}, "of": {"_count": 1}, "before": {"_count": 1}, "Ron": {"_count": 1}}, "bewigged": {"_count": 1, "witches": {"_count": 1}}, "terrified": {"_count": 1, "students": {"_count": 1}}, "warlocks": {"_count": 1, "on": {"_count": 1}}, "staffing": {"_count": 1, "changes": {"_count": 1}}, "curly": {"_count": 1, "black": {"_count": 1}}, "pale": {"_count": 1, "violet": {"_count": 1}}, "distinct": {"_count": 1, "splashes": {"_count": 1}}, "plunks": {"_count": 1, "on": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "magical": {"_count": 1, "families": {"_count": 1}}, "shops": {"_count": 1, "a": {"_count": 1}}, "houses": {"_count": 1, "she": {"_count": 1}}, "questions": {"_count": 1, "": {"_count": 1}}, "blackbirds": {"_count": 1, "rose": {"_count": 1}}, "lumps": {"_count": 1, "of": {"_count": 1}}, "months": {"_count": 1, "ago": {"_count": 1}}, "wizard": {"_count": 1, "guards": {"_count": 1}}, "gashes": {"_count": 1, "to": {"_count": 1}}, "screams": {"_count": 1, "and": {"_count": 1}}, "cries": {"_count": 1, "of": {"_count": 1}}}, "years": {"_count": 542, "in": {"_count": 12, "fact": {"_count": 2}, "a": {"_count": 2}, "Azkaban": {"_count": 4}, "front": {"_count": 1}, "the": {"_count": 2}, "which": {"_count": 1}}, "": {"_count": 101, ".": {"_count": 83}, "?": {"_count": 8}, "!": {"_count": 10}}, "I": {"_count": 8, "have": {"_count": 2}, "award": {"_count": 1}, "reckon": {"_count": 2}, "bet": {"_count": 1}, "know": {"_count": 1}, "had": {"_count": 1}}, "had": {"_count": 7, "passed": {"_count": 1}, "never": {"_count": 1}, "noticed": {"_count": 1}, "been": {"_count": 1}, "stayed": {"_count": 1}, "I": {"_count": 1}, "Dumbledore": {"_count": 1}}, "ago": {"_count": 90, "there": {"_count": 1}, "now": {"_count": 2}, "": {"_count": 35}, "said": {"_count": 6}, "yehd": {"_count": 1}, "the": {"_count": 2}, "for": {"_count": 2}, "so": {"_count": 1}, "wasnt": {"_count": 2}, "yet": {"_count": 1}, "at": {"_count": 1}, "when": {"_count": 3}, "which": {"_count": 1}, "that": {"_count": 2}, "as": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 3}, "and": {"_count": 2}, "she": {"_count": 1}, "did": {"_count": 1}, "That": {"_count": 1}, "has": {"_count": 1}, "we": {"_count": 1}, "on": {"_count": 2}, "to": {"_count": 1}, "Harry": {"_count": 2}, "you": {"_count": 1}, "then": {"_count": 1}, "ticked": {"_count": 1}, "with": {"_count": 1}, "means": {"_count": 1}, "I": {"_count": 2}, "didnt": {"_count": 1}, "They": {"_count": 1}, "very": {"_count": 1}, "stolen": {"_count": 1}, "according": {"_count": 1}, "long": {"_count": 1}}, "since": {"_count": 4, "hed": {"_count": 1}, "the": {"_count": 1}, "last": {"_count": 1}, "Hagrid": {"_count": 1}}, "ten": {"_count": 1, "miserable": {"_count": 1}}, "as": {"_count": 2, "long": {"_count": 1}, "a": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 7, "Griphook": {"_count": 1}, "the": {"_count": 1}, "Black": {"_count": 1}, "Mr": {"_count": 2}, "Sirius": {"_count": 1}, "Professor": {"_count": 1}}, "cant": {"_count": 1, "have": {"_count": 1}}, "over": {"_count": 3, "here": {"_count": 2}, "beside": {"_count": 1}}, "follow": {"_count": 1, "me": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 2}}, "into": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 29, "follow": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 2}, "saw": {"_count": 1}, "never": {"_count": 1}, "tickets": {"_count": 1}, "years": {"_count": 7}, "little": {"_count": 1}, "on": {"_count": 1}, "it": {"_count": 2}, "above": {"_count": 1}, "left": {"_count": 1}, "will": {"_count": 1}, "considerably": {"_count": 1}, "looked": {"_count": 1}, "escaped": {"_count": 1}, "dropped": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 1}, "whom": {"_count": 1}, "not": {"_count": 1}}, "up": {"_count": 2, "here": {"_count": 1}, "to": {"_count": 1}}, "should": {"_count": 1, "note": {"_count": 1}}, "followed": {"_count": 1, "Percy": {"_count": 1}}, "never": {"_count": 2, "getting": {"_count": 1}, "you": {"_count": 1}}, "team": {"_count": 1, "is": {"_count": 1}}, "arent": {"_count": 1, "allowed": {"_count": 1}}, "coming": {"_count": 1, "through": {"_count": 1}}, "could": {"_count": 2, "have": {"_count": 1}, "hear": {"_count": 1}}, "but": {"_count": 6, "would": {"_count": 1}, "somehow": {"_count": 1}, "she": {"_count": 1}, "we": {"_count": 1}, "Ron": {"_count": 1}, "now": {"_count": 1}}, "old": {"_count": 22, "Ron": {"_count": 1}, "": {"_count": 5}, "said": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 3}, "an": {"_count": 1}, "Griselda": {"_count": 1}, "darkhaired": {"_count": 1}, "Dumbledores": {"_count": 1}, "with": {"_count": 1}, "Master": {"_count": 1}, "when": {"_count": 1}, "again": {"_count": 1}, "even": {"_count": 1}, "she": {"_count": 1}, "sallow": {"_count": 1}}, "to": {"_count": 14, "return": {"_count": 1}, "come": {"_count": 2}, "find": {"_count": 1}, "go": {"_count": 1}, "be": {"_count": 3}, "work": {"_count": 1}, "notice": {"_count": 1}, "become": {"_count": 2}, "me": {"_count": 1}, "describe": {"_count": 1}}, "before": {"_count": 12, "": {"_count": 6}, "at": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 2}, "you": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "filing": {"_count": 1, "into": {"_count": 1}}, "password": {"_count": 1, "not": {"_count": 1}}, "Good": {"_count": 1, "for": {"_count": 1}}, "nearby": {"_count": 1, "laughed": {"_count": 1}}, "werent": {"_count": 1, "you": {"_count": 1}}, "accidentally": {"_count": 1, "plastered": {"_count": 1}}, "the": {"_count": 4, "founders": {"_count": 1}, "last": {"_count": 1}, "villagers": {"_count": 1}, "thought": {"_count": 1}}, "are": {"_count": 2, "thoroughly": {"_count": 1}, "permitted": {"_count": 1}}, "were": {"_count": 7, "now": {"_count": 1}, "given": {"_count": 1}, "looking": {"_count": 1}, "slumping": {"_count": 1}, "indeed": {"_count": 1}, "allowed": {"_count": 1}, "suffering": {"_count": 1}}, "which": {"_count": 1, "happened": {"_count": 1}}, "is": {"_count": 1, "born": {"_count": 1}}, "Id": {"_count": 1, "spent": {"_count": 1}}, "of": {"_count": 15, "borrowed": {"_count": 1}, "Voldemorts": {"_count": 1}, "knowing": {"_count": 1}, "Charms": {"_count": 1}, "dreaming": {"_count": 1}, "information": {"_count": 1}, "study": {"_count": 1}, "that": {"_count": 1}, "age": {"_count": 1}, "magical": {"_count": 1}, "hiding": {"_count": 1}, "being": {"_count": 1}, "exile": {"_count": 1}, "turmoil": {"_count": 1}, "misery": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "at": {"_count": 6, "Hogwarts": {"_count": 5}, "Hog": {"_count": 1}}, "a": {"_count": 2, "souvenir": {"_count": 1}, "large": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 1}, "Voldemorts": {"_count": 1}}, "later": {"_count": 4, "she": {"_count": 1}, "Fudge": {"_count": 1}, "that": {"_count": 1}, "however": {"_count": 1}}, "older": {"_count": 3, "than": {"_count": 2}, "but": {"_count": 1}}, "or": {"_count": 3, "so": {"_count": 1}, "more": {"_count": 1}, "older": {"_count": 1}}, "alone": {"_count": 2, "in": {"_count": 2}}, "this": {"_count": 3, "way": {"_count": 1}, "December": {"_count": 1}, "meant": {"_count": 1}}, "some": {"_count": 1, "practice": {"_count": 1}}, "now": {"_count": 4, "": {"_count": 3}, "ever": {"_count": 1}}, "our": {"_count": 1, "year": {"_count": 1}}, "without": {"_count": 1, "anything": {"_count": 1}}, "that": {"_count": 5, "would": {"_count": 1}, "youve": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 1}}, "couldnt": {"_count": 1, "help": {"_count": 1}}, "World": {"_count": 1, "Championship": {"_count": 1}}, "Lees": {"_count": 1, "comments": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "they": {"_count": 2, "say": {"_count": 1}, "reestablished": {"_count": 1}}, "younger": {"_count": 2, "were": {"_count": 1}, "than": {"_count": 1}}, "nevertheless": {"_count": 1, "although": {"_count": 1}}, "by": {"_count": 1, "telling": {"_count": 1}}, "arrived": {"_count": 1, "at": {"_count": 1}}, "afterward": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "thing": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 6, "said": {"_count": 1}, "had": {"_count": 2}, "has": {"_count": 1}, "talked": {"_count": 1}, "was": {"_count": 1}}, "traditionally": {"_count": 1, "reached": {"_count": 1}}, "who": {"_count": 6, "had": {"_count": 1}, "sped": {"_count": 1}, "were": {"_count": 2}, "towered": {"_count": 1}, "would": {"_count": 1}}, "looked": {"_count": 1, "": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "batch": {"_count": 1, "of": {"_count": 1}}, "losing": {"_count": 1, "her": {"_count": 1}}, "foot": {"_count": 1, "the": {"_count": 1}}, "more": {"_count": 1, "magical": {"_count": 1}}, "above": {"_count": 1, "your": {"_count": 1}}, "sir": {"_count": 1, "trying": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "experience": {"_count": 1, "of": {"_count": 1}}, "bothered": {"_count": 1, "to": {"_count": 1}}, "repayment": {"_count": 1, "before": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 1}, "giggling": {"_count": 1}, "looking": {"_count": 1}, "centuries": {"_count": 1}}, "hard": {"_count": 1, "dieting": {"_count": 1}}, "hatred": {"_count": 1, "of": {"_count": 1}}, "not": {"_count": 2, "since": {"_count": 1}, "to": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "previously": {"_count": 7, "followed": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 2}, "": {"_count": 1}, "now": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "line": {"_count": 1, "up": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "must": {"_count": 1, "have": {"_count": 1}}, "entered": {"_count": 2, "led": {"_count": 1}, "the": {"_count": 1}}, "lined": {"_count": 1, "up": {"_count": 1}}, "faces": {"_count": 1, "glowed": {"_count": 1}}, "But": {"_count": 1, "then": {"_count": 1}}, "names": {"_count": 1, "was": {"_count": 1}}, "thinned": {"_count": 1, "in": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "where": {"_count": 1, "to": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "spilled": {"_count": 1, "out": {"_count": 1}}, "gathered": {"_count": 1, "around": {"_count": 1}}, "lessons": {"_count": 1, "and": {"_count": 1}}, "hasnt": {"_count": 1, "he": {"_count": 1}}, "hurried": {"_count": 1, "away": {"_count": 1}}, "Snape": {"_count": 1, "replied": {"_count": 1}}, "devoted": {"_count": 1, "service": {"_count": 1}}, "so": {"_count": 2, "whispers": {"_count": 1}, "your": {"_count": 1}}, "Beaters": {"_count": 1, "Derrick": {"_count": 1}}, "spending": {"_count": 1, "their": {"_count": 1}}, "sat": {"_count": 1, "at": {"_count": 1}}, "working": {"_count": 1, "until": {"_count": 1}}, "hes": {"_count": 1, "too": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "spent": {"_count": 1, "a": {"_count": 1}}, "talked": {"_count": 1, "very": {"_count": 1}}, "milled": {"_count": 1, "around": {"_count": 1}}, "ate": {"_count": 1, "lunch": {"_count": 1}}, "passed": {"_count": 1, "them": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "sooner": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 3, "No": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}}, "died": {"_count": 1, "a": {"_count": 1}}, "punching": {"_count": 1, "them": {"_count": 1}}, "including": {"_count": 1, "Katie": {"_count": 1}}, "Gryffindor": {"_count": 1, "Quidditch": {"_count": 1}}, "free": {"_count": 1, "periods": {"_count": 1}}, "if": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "first": {"_count": 1, "Apparition": {"_count": 1}}, "separates": {"_count": 1, "Hokeys": {"_count": 1}}, "during": {"_count": 2, "which": {"_count": 1}, "his": {"_count": 1}}, "running": {"_count": 1, "back": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "clustered": {"_count": 1, "together": {"_count": 1}}, "maybe": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "we": {"_count": 1}}, "travels": {"_count": 1, "that": {"_count": 1}}, "back": {"_count": 1, "about": {"_count": 1}}, "pleading": {"_count": 1, "for": {"_count": 1}}, "solid": {"_count": 1, "dislike": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "ter": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "end": {"_count": 1}}, "worth": {"_count": 1, "of": {"_count": 1}}, "until": {"_count": 1, "it": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "league": {"_count": 1, "": {"_count": 1}}, "buried": {"_count": 1, "in": {"_count": 1}}, "sniffed": {"_count": 1, "Lily": {"_count": 1}}}, "fact": {"_count": 244, "Mrs": {"_count": 1, "Dursley": {"_count": 1}}, "it": {"_count": 6, "was": {"_count": 3}, "didnt": {"_count": 1}, "started": {"_count": 1}, "looked": {"_count": 1}}, "he": {"_count": 10, "wasnt": {"_count": 1}, "was": {"_count": 3}, "flipped": {"_count": 1}, "had": {"_count": 2}, "stopped": {"_count": 1}, "added": {"_count": 1}, "barely": {"_count": 1}}, "that": {"_count": 113, "Harry": {"_count": 5}, "people": {"_count": 1}, "Draco": {"_count": 1}, "the": {"_count": 7}, "everybody": {"_count": 1}, "his": {"_count": 7}, "he": {"_count": 26}, "all": {"_count": 3}, "they": {"_count": 11}, "I": {"_count": 1}, "Ravenclaw": {"_count": 1}, "Harrys": {"_count": 1}, "hardly": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 7}, "Hufflepuff": {"_count": 1}, "Cedric": {"_count": 1}, "Hagrid": {"_count": 2}, "Fleur": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 2}, "hed": {"_count": 1}, "badges": {"_count": 1}, "she": {"_count": 4}, "Parvati": {"_count": 1}, "hes": {"_count": 1}, "Cho": {"_count": 1}, "you": {"_count": 4}, "members": {"_count": 1}, "we": {"_count": 2}, "your": {"_count": 1}, "YouKnow": {"_count": 1}, "Malfoy": {"_count": 2}, "nobody": {"_count": 2}, "McGonagall": {"_count": 1}, "Ron": {"_count": 1}, "fifty": {"_count": 1}, "Kingsley": {"_count": 1}, "Scrimgeour": {"_count": 1}, "a": {"_count": 1}, "their": {"_count": 1}, "Rons": {"_count": 1}, "Muggle": {"_count": 1}}, "I": {"_count": 12, "gotta": {"_count": 1}, "prefer": {"_count": 1}, "think": {"_count": 2}, "would": {"_count": 1}, "dont": {"_count": 1}, "was": {"_count": 1}, "wish": {"_count": 1}, "am": {"_count": 1}, "doubt": {"_count": 1}, "did": {"_count": 2}}, "Harry": {"_count": 7, "had": {"_count": 2}, "suspected": {"_count": 1}, "was": {"_count": 1}, "thought": {"_count": 1}, "would": {"_count": 2}}, "": {"_count": 9, ".": {"_count": 7}, "?": {"_count": 1}, "!": {"_count": 1}}, "they": {"_count": 2, "didnt": {"_count": 1}, "were": {"_count": 1}}, "been": {"_count": 2, "emptied": {"_count": 2}}, "in": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 1}, "Lupin": {"_count": 2}, "Hermione": {"_count": 1}}, "be": {"_count": 1, "getting": {"_count": 1}}, "Id": {"_count": 1, "say": {"_count": 1}}, "was": {"_count": 3, "that": {"_count": 3}}, "the": {"_count": 10, "Ministry": {"_count": 1}, "only": {"_count": 4}, "report": {"_count": 1}, "more": {"_count": 1}, "Gryffindors": {"_count": 1}, "room": {"_count": 1}, "place": {"_count": 1}}, "than": {"_count": 3, "the": {"_count": 1}, "talking": {"_count": 1}, "a": {"_count": 1}}, "sank": {"_count": 1, "right": {"_count": 1}}, "tone": {"_count": 1, "You": {"_count": 1}}, "remained": {"_count": 3, "however": {"_count": 1}, "that": {"_count": 2}}, "but": {"_count": 1, "I": {"_count": 1}}, "by": {"_count": 2, "Hagrids": {"_count": 1}, "slipping": {"_count": 1}}, "a": {"_count": 3, "conductor": {"_count": 1}, "useless": {"_count": 1}, "glistening": {"_count": 1}}, "Each": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 3, "looked": {"_count": 1}, "added": {"_count": 1}, "did": {"_count": 1}}, "however": {"_count": 1, "that": {"_count": 1}}, "even": {"_count": 1, "pure": {"_count": 1}}, "Ive": {"_count": 2, "no": {"_count": 1}, "never": {"_count": 1}}, "straightaway": {"_count": 1, "Fudge": {"_count": 1}}, "and": {"_count": 2, "that": {"_count": 1}, "journeying": {"_count": 1}}, "had": {"_count": 1, "penetrated": {"_count": 1}}, "manylegged": {"_count": 1, "creatures": {"_count": 1}}, "have": {"_count": 1, "a": {"_count": 1}}, "says": {"_count": 1, "Doris": {"_count": 1}}, "compared": {"_count": 2, "to": {"_count": 2}}, "subconsciously": {"_count": 1, "planning": {"_count": 1}}, "Professor": {"_count": 1, "adds": {"_count": 1}}, "Minerva": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 3, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "unless": {"_count": 1, "he": {"_count": 1}}, "or": {"_count": 1, "figure": {"_count": 1}}, "so": {"_count": 1, "quickly": {"_count": 1}}, "remains": {"_count": 2, "that": {"_count": 1}, "he": {"_count": 1}}, "hes": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 1, "departure": {"_count": 1}}, "being": {"_count": 1, "forgive": {"_count": 1}}, "Crabbe": {"_count": 1, "had": {"_count": 1}}, "his": {"_count": 1, "ability": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "cast": {"_count": 1, "by": {"_count": 1}}, "bring": {"_count": 1, "both": {"_count": 1}}, "to": {"_count": 2, "aid": {"_count": 1}, "string": {"_count": 1}}, "of": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "Dumbledore": {"_count": 1, "told": {"_count": 1}}, "Harrys": {"_count": 1, "a": {"_count": 1}}, "Im": {"_count": 1, "quite": {"_count": 1}}, "told": {"_count": 1, "Harry": {"_count": 1}}, "when": {"_count": 1, "all": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "pretended": {"_count": 39, "she": {"_count": 2, "didnt": {"_count": 2}}, "to": {"_count": 22, "be": {"_count": 11}, "ward": {"_count": 1}, "go": {"_count": 1}, "have": {"_count": 1}, "take": {"_count": 2}, "drink": {"_count": 1}, "do": {"_count": 1}, "conduct": {"_count": 1}, "watch": {"_count": 1}, "read": {"_count": 1}, "congratulate": {"_count": 1}}, "not": {"_count": 4, "to": {"_count": 4}}, "for": {"_count": 1, "ten": {"_count": 1}}, "a": {"_count": 1, "pureblood": {"_count": 1}}, "that": {"_count": 2, "his": {"_count": 1}, "she": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "hadnt": {"_count": 1}}, "otherwise": {"_count": 1, "She": {"_count": 1}}, "anything": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "when": {"_count": 1, "reassuring": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "goodfornothing": {"_count": 2, "husband": {"_count": 1, "were": {"_count": 1}}, "lazy": {"_count": 1, "scrounger": {"_count": 1}}}, "husband": {"_count": 32, "were": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 2}}, "Arthur": {"_count": 2, "has": {"_count": 1}, "Weasley": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "a": {"_count": 2, "thin": {"_count": 2}}, "whose": {"_count": 1, "expression": {"_count": 1}}, "Rodolphus": {"_count": 1, "came": {"_count": 1}}, "leaned": {"_count": 1, "over": {"_count": 1}}, "forward": {"_count": 1, "into": {"_count": 1}}, "during": {"_count": 1, "Harrys": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 5, "Ginny": {"_count": 1}, "watched": {"_count": 1}, "son": {"_count": 1}, "wife": {"_count": 1}, "child": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "abandoned": {"_count": 1, "her": {"_count": 1}}, "is": {"_count": 1, "brave": {"_count": 1}}, "Percivals": {"_count": 1, "wellpublicized": {"_count": 1}}, "to": {"_count": 1, "Ron": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "died": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}}, "unDursleyish": {"_count": 1, "as": {"_count": 1, "it": {"_count": 1}}}, "possible": {"_count": 156, "to": {"_count": 12, "be": {"_count": 2}, "their": {"_count": 1}, "Harrys": {"_count": 1}, "live": {"_count": 1}, "distinguish": {"_count": 1}, "track": {"_count": 1}, "eat": {"_count": 1}, "broadcast": {"_count": 1}, "trace": {"_count": 1}, "discern": {"_count": 1}, "that": {"_count": 1}}, "in": {"_count": 2, "case": {"_count": 1}, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 3, "scurried": {"_count": 1}, "crept": {"_count": 1}, "would": {"_count": 1}}, "": {"_count": 42, ".": {"_count": 38}, "?": {"_count": 4}}, "between": {"_count": 1, "them": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 2}, "Krum": {"_count": 1}}, "from": {"_count": 5, "life": {"_count": 1}, "Colin": {"_count": 1}, "Percy": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "louder": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "escaped": {"_count": 1}}, "even": {"_count": 4, "redder": {"_count": 1}, "worse": {"_count": 1}, "more": {"_count": 1}, "paler": {"_count": 1}}, "counterattack": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 2, "wonderful": {"_count": 1}, "Ministry": {"_count": 1}}, "wiping": {"_count": 1, "them": {"_count": 1}}, "that": {"_count": 16, "Snapes": {"_count": 1}, "something": {"_count": 1}, "it": {"_count": 1}, "some": {"_count": 2}, "Dobby": {"_count": 1}, "he": {"_count": 4}, "YouKnowWho": {"_count": 1}, "her": {"_count": 1}, "she": {"_count": 1}, "Ariana": {"_count": 1}, "the": {"_count": 1}, "Voldemort": {"_count": 1}}, "coupled": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 2, "it": {"_count": 1}, "they": {"_count": 1}}, "but": {"_count": 5, "had": {"_count": 1}, "positively": {"_count": 1}, "there": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "cause": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "would": {"_count": 1}, "wants": {"_count": 1}}, "passing": {"_count": 1, "Mr": {"_count": 1}}, "intensified": {"_count": 1, "last": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "for": {"_count": 5, "daring": {"_count": 1}, "Fred": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "anybody": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "opportunity": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "though": {"_count": 2, "the": {"_count": 2}}, "said": {"_count": 3, "Sirius": {"_count": 1}, "Dumbledore": {"_count": 1}, "Fred": {"_count": 1}}, "say": {"_count": 1, "top": {"_count": 1}}, "listening": {"_count": 1, "hard": {"_count": 1}}, "so": {"_count": 3, "Charlies": {"_count": 1}, "that": {"_count": 1}, "we": {"_count": 1}}, "on": {"_count": 1, "flying": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "exception": {"_count": 1, "of": {"_count": 1}}, "if": {"_count": 1, "youve": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Smash": {"_count": 1, "shelves": {"_count": 1}}, "explanation": {"_count": 1, "was": {"_count": 1}}, "my": {"_count": 1, "word": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "arrange": {"_count": 1, "to": {"_count": 1}}, "dispute": {"_count": 1, "": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "way": {"_count": 1, "of": {"_count": 1}}, "information": {"_count": 1, "on": {"_count": 1}}, "locations": {"_count": 2, "of": {"_count": 2}}, "by": {"_count": 1, "the": {"_count": 1}}, "skulduggery": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "or": {"_count": 1, "Hogwarts": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}}, "shuddered": {"_count": 21, "to": {"_count": 2, "think": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 6, "Ron": {"_count": 1}, "Neville": {"_count": 1}, "moaned": {"_count": 1}, "the": {"_count": 1}, "took": {"_count": 1}, "reared": {"_count": 1}}, "angrily": {"_count": 1, "but": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "theyve": {"_count": 1, "never": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "what": {"_count": 3009, "the": {"_count": 98, "neighbors": {"_count": 3}, "card": {"_count": 1}, "thieves": {"_count": 1}, "Bludgers": {"_count": 1}, "threeheaded": {"_count": 1}, "Mirror": {"_count": 1}, "planets": {"_count": 1}, "Seekers": {"_count": 1}, "school": {"_count": 1}, "consequences": {"_count": 1}, "crowd": {"_count": 1}, "Ministryd": {"_count": 1}, "trouble": {"_count": 1}, "dementors": {"_count": 1}, "woman": {"_count": 1}, "noble": {"_count": 1}, "enormous": {"_count": 1}, "voices": {"_count": 1}, "headmaster": {"_count": 1}, "truth": {"_count": 1}, "police": {"_count": 1}, "state": {"_count": 1}, "Bulgarians": {"_count": 2}, "worst": {"_count": 2}, "tournament": {"_count": 1}, "tasks": {"_count": 2}, "first": {"_count": 1}, "second": {"_count": 2}, "other": {"_count": 2}, "Weird": {"_count": 1}, "next": {"_count": 1}, "wailing": {"_count": 1}, "solution": {"_count": 1}, "sound": {"_count": 1}, "": {"_count": 1}, "answer": {"_count": 1}, "dementor": {"_count": 1}, "ruddy": {"_count": 2}, "Ministry": {"_count": 4}, "Order": {"_count": 1}, "Orders": {"_count": 1}, "picture": {"_count": 1}, "enemy": {"_count": 1}, "average": {"_count": 1}, "Svhole": {"_count": 1}, "sweets": {"_count": 1}, "others": {"_count": 3}, "classes": {"_count": 1}, "strange": {"_count": 1}, "Dark": {"_count": 2}, "Healer": {"_count": 1}, "source": {"_count": 1}, "centaurs": {"_count": 1}, "prophecy": {"_count": 3}, "smell": {"_count": 1}, "rest": {"_count": 1}, "Ministrys": {"_count": 1}, "three": {"_count": 1}, "Malfoy": {"_count": 1}, "room": {"_count": 1}, "Baron": {"_count": 1}, "sixth": {"_count": 1}, "diary": {"_count": 1}, "thing": {"_count": 1}, "message": {"_count": 1}, "aftereffects": {"_count": 1}, "Snitch": {"_count": 1}, "hell": {"_count": 1}, "symbol": {"_count": 2}, "mission": {"_count": 1}, "thief": {"_count": 1}, "sign": {"_count": 1}, "hells": {"_count": 1}, "wizards": {"_count": 1}, "protection": {"_count": 1}, "how": {"_count": 1}, "diadems": {"_count": 1}, "diadem": {"_count": 2}, "last": {"_count": 1}, "plan": {"_count": 1}}, "he": {"_count": 285, "had": {"_count": 68}, "and": {"_count": 1}, "was": {"_count": 102}, "wanted": {"_count": 10}, "said": {"_count": 6}, "clearly": {"_count": 1}, "could": {"_count": 6}, "wrote": {"_count": 1}, "means": {"_count": 2}, "hoped": {"_count": 4}, "termed": {"_count": 1}, "heard": {"_count": 3}, "did": {"_count": 10}, "teaches": {"_count": 2}, "saw": {"_count": 4}, "ought": {"_count": 1}, "called": {"_count": 2}, "told": {"_count": 1}, "thought": {"_count": 4}, "must": {"_count": 2}, "looks": {"_count": 1}, "really": {"_count": 2}, "needed": {"_count": 3}, "would": {"_count": 6}, "does": {"_count": 2}, "gets": {"_count": 1}, "tells": {"_count": 1}, "soon": {"_count": 1}, "sincerely": {"_count": 1}, "thinks": {"_count": 3}, "hears": {"_count": 1}, "wants": {"_count": 2}, "says": {"_count": 1}, "knew": {"_count": 3}, "evidently": {"_count": 2}, "usually": {"_count": 1}, "considered": {"_count": 1}, "is": {"_count": 2}, "has": {"_count": 2}, "might": {"_count": 2}, "deserved": {"_count": 1}, "pointed": {"_count": 1}, "gave": {"_count": 1}, "remembers": {"_count": 1}, "needs": {"_count": 3}, "likes": {"_count": 1}, "once": {"_count": 1}, "Harry": {"_count": 1}, "feared": {"_count": 1}, "left": {"_count": 1}, "asked": {"_count": 1}, "believed": {"_count": 1}, "felt": {"_count": 1}, "tried": {"_count": 1}}, "they": {"_count": 79, "were": {"_count": 30}, "have": {"_count": 1}, "recognized": {"_count": 1}, "had": {"_count": 9}, "call": {"_count": 2}, "did": {"_count": 3}, "thought": {"_count": 2}, "looked": {"_count": 1}, "get": {"_count": 1}, "want": {"_count": 3}, "is": {"_count": 1}, "eat": {"_count": 2}, "ate": {"_count": 1}, "like": {"_count": 1}, "would": {"_count": 3}, "think": {"_count": 1}, "grow": {"_count": 1}, "are": {"_count": 5}, "do": {"_count": 2}, "liked": {"_count": 1}, "should": {"_count": 1}, "said": {"_count": 3}, "saw": {"_count": 1}, "hit": {"_count": 1}, "knew": {"_count": 1}, "might": {"_count": 1}}, "I": {"_count": 109, "heard": {"_count": 1}, "expected": {"_count": 1}, "mean": {"_count": 12}, "always": {"_count": 2}, "said": {"_count": 10}, "think": {"_count": 9}, "got": {"_count": 2}, "can": {"_count": 6}, "did": {"_count": 7}, "was": {"_count": 11}, "see": {"_count": 2}, "have": {"_count": 6}, "told": {"_count": 3}, "wanted": {"_count": 2}, "must": {"_count": 2}, "could": {"_count": 3}, "am": {"_count": 4}, "But": {"_count": 1}, "need": {"_count": 1}, "": {"_count": 1}, "thought": {"_count": 3}, "should": {"_count": 2}, "found": {"_count": 2}, "meant": {"_count": 3}, "had": {"_count": 1}, "shall": {"_count": 1}, "want": {"_count": 1}, "do": {"_count": 1}, "overheard": {"_count": 1}, "considered": {"_count": 2}, "say": {"_count": 1}, "Because": {"_count": 1}, "just": {"_count": 1}, "knew": {"_count": 1}, "guessed": {"_count": 1}, "saw": {"_count": 1}}, "": {"_count": 151, "?": {"_count": 146}, ".": {"_count": 4}, "!": {"_count": 1}}, "everyones": {"_count": 2, "saying": {"_count": 1}, "going": {"_count": 1}}, "finally": {"_count": 1, "stopped": {"_count": 1}}, "was": {"_count": 196, "that": {"_count": 4}, "in": {"_count": 10}, "down": {"_count": 1}, "good": {"_count": 1}, "exciting": {"_count": 1}, "going": {"_count": 55}, "happening": {"_count": 24}, "facing": {"_count": 2}, "guarding": {"_count": 1}, "standing": {"_count": 1}, "under": {"_count": 2}, "it": {"_count": 3}, "so": {"_count": 2}, "written": {"_count": 2}, "coming": {"_count": 17}, "inside": {"_count": 4}, "dangerous": {"_count": 1}, "the": {"_count": 5}, "an": {"_count": 1}, "troubling": {"_count": 1}, "he": {"_count": 3}, "left": {"_count": 4}, "": {"_count": 1}, "wonderful": {"_count": 1}, "there": {"_count": 1}, "sitting": {"_count": 2}, "hidden": {"_count": 2}, "annoying": {"_count": 1}, "making": {"_count": 1}, "fast": {"_count": 1}, "unmistakably": {"_count": 3}, "causing": {"_count": 1}, "wrong": {"_count": 3}, "curious": {"_count": 1}, "funny": {"_count": 1}, "bothering": {"_count": 1}, "this": {"_count": 2}, "right": {"_count": 1}, "more": {"_count": 3}, "missing": {"_count": 1}, "I": {"_count": 1}, "all": {"_count": 2}, "behind": {"_count": 2}, "clearly": {"_count": 3}, "on": {"_count": 1}, "being": {"_count": 1}, "best": {"_count": 1}, "to": {"_count": 3}, "visible": {"_count": 1}, "Voldemort": {"_count": 1}, "guiding": {"_count": 1}, "evidently": {"_count": 1}, "now": {"_count": 1}, "due": {"_count": 1}, "engraved": {"_count": 1}, "Albus": {"_count": 1}, "\u2018the": {"_count": 1}, "worse": {"_count": 1}}, "must": {"_count": 6, "have": {"_count": 1}, "you": {"_count": 1}, "once": {"_count": 1}, "happen": {"_count": 1}, "be": {"_count": 1}, "he": {"_count": 1}}, "looked": {"_count": 81, "like": {"_count": 78}, "horribly": {"_count": 1}, "suspiciously": {"_count": 1}, "and": {"_count": 1}}, "time": {"_count": 1, "it": {"_count": 1}}, "hed": {"_count": 23, "said": {"_count": 1}, "been": {"_count": 5}, "bought": {"_count": 1}, "forgotten": {"_count": 1}, "seen": {"_count": 5}, "promised": {"_count": 1}, "heard": {"_count": 1}, "fallen": {"_count": 1}, "find": {"_count": 1}, "done": {"_count": 1}, "wanted": {"_count": 1}, "walked": {"_count": 1}, "just": {"_count": 1}, "meant": {"_count": 1}, "say": {"_count": 1}}, "should": {"_count": 3, "we": {"_count": 1}, "I": {"_count": 1}, "have": {"_count": 1}}, "seemed": {"_count": 40, "like": {"_count": 10}, "to": {"_count": 26}, "an": {"_count": 1}, "hours": {"_count": 1}, "a": {"_count": 1}, "total": {"_count": 1}}, "had": {"_count": 105, "been": {"_count": 6}, "happened": {"_count": 68}, "made": {"_count": 1}, "gone": {"_count": 1}, "woken": {"_count": 1}, "hitherto": {"_count": 1}, "hold": {"_count": 1}, "distracted": {"_count": 2}, "just": {"_count": 12}, "really": {"_count": 1}, "hit": {"_count": 1}, "become": {"_count": 2}, "caused": {"_count": 4}, "come": {"_count": 1}, "that": {"_count": 1}, "disturbed": {"_count": 1}, "the": {"_count": 1}}, "yeh": {"_count": 3, "are": {"_count": 2}, "get": {"_count": 1}}, "from": {"_count": 1, "me": {"_count": 1}}, "else": {"_count": 11, "would": {"_count": 1}, "they": {"_count": 1}, "How": {"_count": 1}, "centaurs": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "do": {"_count": 1}, "happened": {"_count": 1}, "can": {"_count": 1}, "did": {"_count": 1}}, "we": {"_count": 38, "call": {"_count": 3}, "want": {"_count": 1}, "should": {"_count": 2}, "needed": {"_count": 1}, "need": {"_count": 2}, "know": {"_count": 1}, "truly": {"_count": 1}, "heard": {"_count": 1}, "were": {"_count": 7}, "took": {"_count": 2}, "thought": {"_count": 1}, "wondered": {"_count": 1}, "put": {"_count": 1}, "can": {"_count": 1}, "might": {"_count": 2}, "did": {"_count": 2}, "had": {"_count": 2}, "are": {"_count": 2}, "would": {"_count": 1}, "bring": {"_count": 1}, "wanted": {"_count": 1}, "just": {"_count": 1}, "came": {"_count": 1}}, "she": {"_count": 48, "was": {"_count": 19}, "had": {"_count": 13}, "got": {"_count": 1}, "meant": {"_count": 2}, "is": {"_count": 1}, "likes": {"_count": 1}, "said": {"_count": 3}, "deserves": {"_count": 1}, "evidently": {"_count": 1}, "did": {"_count": 2}, "clearly": {"_count": 1}, "called": {"_count": 1}, "thinks": {"_count": 1}, "became": {"_count": 1}}, "happened": {"_count": 94, "to": {"_count": 27}, "when": {"_count": 4}, "": {"_count": 23}, "up": {"_count": 1}, "the": {"_count": 3}, "but": {"_count": 1}, "at": {"_count": 6}, "tonight": {"_count": 2}, "after": {"_count": 5}, "in": {"_count": 4}, "Mrs": {"_count": 2}, "Seamus": {"_count": 1}, "next": {"_count": 4}, "last": {"_count": 1}, "Dad": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "under": {"_count": 1}, "here": {"_count": 1}, "since": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 1}}, "it": {"_count": 103, "was": {"_count": 34}, "does": {"_count": 3}, "shows": {"_count": 1}, "must": {"_count": 2}, "is": {"_count": 10}, "means": {"_count": 5}, "felt": {"_count": 5}, "would": {"_count": 3}, "might": {"_count": 4}, "seemed": {"_count": 1}, "says": {"_count": 3}, "feels": {"_count": 1}, "all": {"_count": 2}, "really": {"_count": 2}, "looks": {"_count": 1}, "meant": {"_count": 8}, "said": {"_count": 5}, "sounded": {"_count": 1}, "needed": {"_count": 1}, "sounds": {"_count": 1}, "dweamed": {"_count": 1}, "had": {"_count": 3}, "contained": {"_count": 1}, "could": {"_count": 1}, "did": {"_count": 1}, "looked": {"_count": 2}, "ought": {"_count": 1}}, "does": {"_count": 12, "a": {"_count": 1}, "he": {"_count": 3}, "Dumbledore": {"_count": 1}, "that": {"_count": 3}, "it": {"_count": 3}, "she": {"_count": 1}}, "an": {"_count": 5, "honor": {"_count": 1}, "excellent": {"_count": 1}, "awful": {"_count": 1}, "eyesore": {"_count": 1}, "orrible": {"_count": 1}}, "to": {"_count": 83, "say": {"_count": 17}, "an": {"_count": 1}, "do": {"_count": 43}, "tell": {"_count": 1}, "choose": {"_count": 1}, "write": {"_count": 1}, "think": {"_count": 4}, "get": {"_count": 2}, "teach": {"_count": 1}, "expect": {"_count": 3}, "believe": {"_count": 5}, "ask": {"_count": 1}, "but": {"_count": 1}, "make": {"_count": 1}, "feel": {"_count": 1}}, "awaits": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 11, "earth": {"_count": 9}, "earths": {"_count": 2}}, "House": {"_count": 2, "you": {"_count": 1}, "youll": {"_count": 1}}, "you": {"_count": 110, "mean": {"_count": 11}, "see": {"_count": 3}, "and": {"_count": 3}, "You": {"_count": 1}, "were": {"_count": 11}, "have": {"_count": 6}, "expected": {"_count": 1}, "make": {"_count": 2}, "say": {"_count": 2}, "said": {"_count": 2}, "did": {"_count": 3}, "think": {"_count": 4}, "fear": {"_count": 1}, "are": {"_count": 12}, "want": {"_count": 7}, "need": {"_count": 2}, "like": {"_count": 2}, "wanted": {"_count": 2}, "seek": {"_count": 2}, "can": {"_count": 3}, "saw": {"_count": 5}, "put": {"_count": 1}, "two": {"_count": 2}, "overheard": {"_count": 1}, "would": {"_count": 1}, "know": {"_count": 4}, "had": {"_count": 1}, "meant": {"_count": 1}, "drink": {"_count": 1}, "heard": {"_count": 2}, "tell": {"_count": 1}, "described": {"_count": 1}, "told": {"_count": 1}, "will": {"_count": 1}, "what": {"_count": 1}, "hear": {"_count": 1}, "Overkill": {"_count": 1}, "looked": {"_count": 1}, "dream": {"_count": 1}, "promise": {"_count": 1}, "expect": {"_count": 1}}, "everyone": {"_count": 3, "in": {"_count": 1}, "was": {"_count": 1}, "else": {"_count": 1}}, "is": {"_count": 41, "Quidditch": {"_count": 1}, "to": {"_count": 1}, "lurking": {"_count": 1}, "hidden": {"_count": 2}, "a": {"_count": 2}, "it": {"_count": 7}, "this": {"_count": 5}, "at": {"_count": 1}, "unbecoming": {"_count": 1}, "due": {"_count": 1}, "that": {"_count": 2}, "all": {"_count": 1}, "he": {"_count": 2}, "they": {"_count": 1}, "expected": {"_count": 1}, "coming": {"_count": 1}, "you": {"_count": 2}, "right": {"_count": 1}, "easy": {"_count": 1}, "causing": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "more": {"_count": 1}, "soon": {"_count": 1}, "Xenophilius": {"_count": 1}}, "are": {"_count": 43, "Slytherin": {"_count": 1}, "you": {"_count": 31}, "they": {"_count": 3}, "the": {"_count": 3}, "exploding": {"_count": 1}, "those": {"_count": 1}, "Umbridges": {"_count": 1}, "we": {"_count": 2}}, "Ill": {"_count": 2, "get": {"_count": 1}, "do": {"_count": 1}}, "Harry": {"_count": 43, "had": {"_count": 8}, "thinks": {"_count": 1}, "thought": {"_count": 3}, "could": {"_count": 6}, "": {"_count": 2}, "was": {"_count": 9}, "and": {"_count": 1}, "recognized": {"_count": 2}, "knew": {"_count": 3}, "considered": {"_count": 2}, "said": {"_count": 1}, "Ill": {"_count": 1}, "visualized": {"_count": 1}, "did": {"_count": 1}, "told": {"_count": 1}, "assumed": {"_count": 1}}, "that": {"_count": 21, "wand": {"_count": 1}, "dogs": {"_count": 2}, "was": {"_count": 1}, "he": {"_count": 1}, "event": {"_count": 1}, "move": {"_count": 1}, "skull": {"_count": 1}, "wretched": {"_count": 1}, "woman": {"_count": 2}, "man": {"_count": 1}, "houseelfs": {"_count": 1}, "means": {"_count": 1}, "meant": {"_count": 3}, "memory": {"_count": 1}, "spell": {"_count": 1}, "had": {"_count": 1}, "wands": {"_count": 1}}, "Mr": {"_count": 6, "Ollivander": {"_count": 1}, "Weasley": {"_count": 4}, "Crouch": {"_count": 1}}, "Im": {"_count": 15, "famous": {"_count": 1}, "talking": {"_count": 1}, "up": {"_count": 2}, "going": {"_count": 1}, "telling": {"_count": 1}, "sure": {"_count": 1}, "for": {"_count": 1}, "not": {"_count": 1}, "supposed": {"_count": 1}, "doing": {"_count": 4}, "capable": {"_count": 1}}, "part": {"_count": 2, "of": {"_count": 2}}, "YouKnowWho": {"_count": 2, "looks": {"_count": 1}, "would": {"_count": 1}}, "theyll": {"_count": 4, "say": {"_count": 1}, "give": {"_count": 1}, "go": {"_count": 1}, "all": {"_count": 1}}, "do": {"_count": 30, "your": {"_count": 1}, "you": {"_count": 20}, "we": {"_count": 3}, "I": {"_count": 4}, "they": {"_count": 2}}, "a": {"_count": 39, "wizard": {"_count": 1}, "bezoar": {"_count": 1}, "racket": {"_count": 1}, "waste": {"_count": 4}, "garden": {"_count": 1}, "pleasure": {"_count": 1}, "Squib": {"_count": 1}, "stupid": {"_count": 2}, "load": {"_count": 1}, "boggart": {"_count": 1}, "nightmare": {"_count": 1}, "day": {"_count": 1}, "thing": {"_count": 2}, "tragic": {"_count": 1}, "mans": {"_count": 1}, "story": {"_count": 1}, "catastrophe": {"_count": 1}, "disappointment": {"_count": 1}, "lying": {"_count": 1}, "whole": {"_count": 1}, "dreadful": {"_count": 1}, "player": {"_count": 1}, "good": {"_count": 1}, "week": {"_count": 1}, "serious": {"_count": 1}, "master": {"_count": 1}, "stroke": {"_count": 1}, "nickname": {"_count": 1}, "great": {"_count": 1}, "few": {"_count": 1}, "bond": {"_count": 1}, "gripping": {"_count": 1}, "surprise": {"_count": 1}, "miracle": {"_count": 1}}, "weve": {"_count": 9, "forgot": {"_count": 1}, "got": {"_count": 4}, "found": {"_count": 1}, "just": {"_count": 1}, "Whatever": {"_count": 1}, "discussed": {"_count": 1}}, "if": {"_count": 46, "I": {"_count": 4}, "they": {"_count": 2}, "whatever": {"_count": 1}, "YouKnow": {"_count": 1}, "Riddle": {"_count": 1}, "the": {"_count": 2}, "theyd": {"_count": 1}, "he": {"_count": 8}, "Sirius": {"_count": 1}, "Id": {"_count": 1}, "we": {"_count": 3}, "a": {"_count": 1}, "it": {"_count": 3}, "you": {"_count": 1}, "youd": {"_count": 1}, "someone": {"_count": 2}, "somebody": {"_count": 1}, "those": {"_count": 1}, "Sturgis": {"_count": 1}, "Montagues": {"_count": 1}, "your": {"_count": 1}, "thats": {"_count": 1}, "she": {"_count": 1}, "Ron": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 2}, "Bathilda": {"_count": 1}, "at": {"_count": 1}}, "youd": {"_count": 6, "call": {"_count": 4}, "have": {"_count": 1}, "signed": {"_count": 1}}, "am": {"_count": 4, "I": {"_count": 4}}, "those": {"_count": 4, "thunderous": {"_count": 1}, "three": {"_count": 1}, "objects": {"_count": 1}, "Muggles": {"_count": 1}}, "could": {"_count": 10, "possibly": {"_count": 1}, "spoil": {"_count": 1}, "have": {"_count": 2}, "I": {"_count": 3}, "make": {"_count": 1}, "be": {"_count": 1}, "it": {"_count": 1}}, "lay": {"_count": 3, "underneath": {"_count": 1}, "beyond": {"_count": 1}, "ahead": {"_count": 1}}, "model": {"_count": 1, "is": {"_count": 1}}, "McGonagall": {"_count": 3, "meant": {"_count": 1}, "and": {"_count": 1}, "will": {"_count": 1}}, "with": {"_count": 11, "Quidditch": {"_count": 2}, "all": {"_count": 2}, "keepin": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "Dumbledore": {"_count": 1}, "branches": {"_count": 1}, "Filch": {"_count": 1}, "Voldemort": {"_count": 1}}, "choice": {"_count": 1, "did": {"_count": 1}}, "this": {"_count": 17, "means": {"_count": 6}, "is": {"_count": 3}, "looks": {"_count": 1}, "tournament": {"_count": 1}, "lots": {"_count": 1}, "might": {"_count": 1}, "meeting": {"_count": 1}, "one": {"_count": 1}, "has": {"_count": 1}, "meant": {"_count": 1}}, "its": {"_count": 14, "guardin": {"_count": 1}, "like": {"_count": 7}, "called": {"_count": 1}, "all": {"_count": 1}, "about": {"_count": 1}, "likel": {"_count": 1}, "rreally": {"_count": 1}, "been": {"_count": 1}}, "your": {"_count": 4, "familys": {"_count": 1}, "mum": {"_count": 1}, "mothers": {"_count": 1}, "wand": {"_count": 1}}, "come": {"_count": 1, "with": {"_count": 1}}, "Snape": {"_count": 12, "was": {"_count": 8}, "or": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}, "told": {"_count": 1}}, "Flamel": {"_count": 1, "might": {"_count": 1}}, "youre": {"_count": 45, "thinking": {"_count": 4}, "doing": {"_count": 10}, "talking": {"_count": 7}, "about": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 4}, "going": {"_count": 5}, "really": {"_count": 1}, "complaining": {"_count": 1}, "being": {"_count": 1}, "supposed": {"_count": 3}, "here": {"_count": 1}, "saying": {"_count": 2}, "not": {"_count": 1}, "suggesting": {"_count": 1}, "trying": {"_count": 1}, "all": {"_count": 1}}, "theyd": {"_count": 5, "do": {"_count": 1}, "done": {"_count": 1}, "got": {"_count": 1}, "overheard": {"_count": 1}, "have": {"_count": 1}}, "section": {"_count": 1, "he": {"_count": 1}}, "might": {"_count": 13, "happen": {"_count": 2}, "have": {"_count": 4}, "come": {"_count": 2}, "be": {"_count": 1}, "well": {"_count": 1}, "he": {"_count": 1}, "or": {"_count": 1}, "as": {"_count": 1}}, "Hagrid": {"_count": 11, "s": {"_count": 1}, "had": {"_count": 2}, "wants": {"_count": 1}, "meant": {"_count": 1}, "was": {"_count": 1}, "might": {"_count": 2}, "told": {"_count": 1}, "would": {"_count": 1}, "stared": {"_count": 1}}, "hes": {"_count": 39, "doing": {"_count": 10}, "saying": {"_count": 3}, "up": {"_count": 7}, "been": {"_count": 1}, "like": {"_count": 3}, "about": {"_count": 1}, "got": {"_count": 1}, "really": {"_count": 1}, "done": {"_count": 2}, "Dont": {"_count": 1}, "afraid": {"_count": 1}, "facing": {"_count": 1}, "talkin": {"_count": 1}, "interested": {"_count": 1}, "He": {"_count": 1}, "never": {"_count": 1}, "after": {"_count": 1}, "going": {"_count": 1}, "expecting": {"_count": 1}}, "really": {"_count": 13, "bit": {"_count": 1}, "happened": {"_count": 10}, "got": {"_count": 1}, "happens": {"_count": 1}}, "their": {"_count": 1, "punishment": {"_count": 1}}, "were": {"_count": 26, "gonna": {"_count": 1}, "you": {"_count": 4}, "possibly": {"_count": 1}, "unmistakably": {"_count": 1}, "Voldemorts": {"_count": 1}, "making": {"_count": 1}, "Ron": {"_count": 1}, "dementoids": {"_count": 1}, "putting": {"_count": 1}, "doing": {"_count": 4}, "up": {"_count": 1}, "talking": {"_count": 2}, "studyin": {"_count": 1}, "thinking": {"_count": 1}, "discussing": {"_count": 1}, "trying": {"_count": 1}, "the": {"_count": 1}, "looking": {"_count": 1}, "supposed": {"_count": 1}}, "has": {"_count": 14, "been": {"_count": 2}, "happened": {"_count": 9}, "got": {"_count": 1}, "Dumbledore": {"_count": 1}, "become": {"_count": 1}}, "unicorn": {"_count": 1, "blood": {"_count": 1}}, "Id": {"_count": 10, "always": {"_count": 1}, "done": {"_count": 3}, "look": {"_count": 1}, "love": {"_count": 1}, "get": {"_count": 1}, "been": {"_count": 1}, "like": {"_count": 1}, "do": {"_count": 1}}, "can": {"_count": 6, "we": {"_count": 3}, "he": {"_count": 1}, "I": {"_count": 2}}, "did": {"_count": 25, "Professor": {"_count": 3}, "kill": {"_count": 1}, "you": {"_count": 8}, "he": {"_count": 2}, "Crouch": {"_count": 1}, "your": {"_count": 1}, "Lord": {"_count": 1}, "they": {"_count": 1}, "happen": {"_count": 1}, "Karkus": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 2}, "Slughorn": {"_count": 1}, "that": {"_count": 1}}, "came": {"_count": 2, "next": {"_count": 2}}, "seems": {"_count": 1, "a": {"_count": 1}}, "11": {"_count": 1, "happen": {"_count": 1}}, "wizards": {"_count": 2, "called": {"_count": 1}, "can": {"_count": 1}}, "day": {"_count": 3, "it": {"_count": 3}}, "would": {"_count": 38, "be": {"_count": 2}, "happen": {"_count": 15}, "his": {"_count": 2}, "you": {"_count": 4}, "youve": {"_count": 1}, "have": {"_count": 4}, "he": {"_count": 2}, "come": {"_count": 1}, "Dudley": {"_count": 1}, "she": {"_count": 4}, "hurt": {"_count": 1}, "poor": {"_count": 1}}, "Lockharts": {"_count": 1, "got": {"_count": 1}}, "disgraces": {"_count": 1, "the": {"_count": 1}}, "Gilderoy": {"_count": 1, "Lockhart": {"_count": 1}}, "direction": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 14, "meant": {"_count": 1}, "does": {"_count": 1}, "": {"_count": 2}, "had": {"_count": 2}, "and": {"_count": 1}, "would": {"_count": 2}, "was": {"_count": 4}, "s": {"_count": 1}}, "Ive": {"_count": 20, "got": {"_count": 3}, "bin": {"_count": 1}, "done": {"_count": 4}, "heard": {"_count": 2}, "been": {"_count": 5}, "whos": {"_count": 1}, "just": {"_count": 2}, "told": {"_count": 1}, "learned": {"_count": 1}}, "kept": {"_count": 2, "you": {"_count": 2}}, "people": {"_count": 3, "call": {"_count": 2}, "believe": {"_count": 1}}, "yer": {"_count": 1, "little": {"_count": 1}}, "felt": {"_count": 13, "like": {"_count": 13}}, "sounded": {"_count": 10, "like": {"_count": 10}}, "exactly": {"_count": 6, "do": {"_count": 1}, "did": {"_count": 2}, "they": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 1}}, "Wood": {"_count": 1, "would": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "promised": {"_count": 1, "to": {"_count": 1}}, "kind": {"_count": 5, "of": {"_count": 5}}, "made": {"_count": 13, "him": {"_count": 3}, "Harry": {"_count": 2}, "them": {"_count": 1}, "this": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 3}, "it": {"_count": 2}}, "Salazar": {"_count": 1, "Slytherin": {"_count": 1}}, "other": {"_count": 3, "powers": {"_count": 1}, "rubbish": {"_count": 1}, "subjects": {"_count": 1}}, "sort": {"_count": 5, "of": {"_count": 5}}, "Ernie": {"_count": 2, "and": {"_count": 1}, "had": {"_count": 1}}, "have": {"_count": 10, "you": {"_count": 8}, "I": {"_count": 1}, "they": {"_count": 1}}, "Ron": {"_count": 8, "had": {"_count": 5}, "was": {"_count": 1}, "meant": {"_count": 2}}, "terrible": {"_count": 1, "power": {"_count": 1}}, "about": {"_count": 31, "you": {"_count": 3}, "Scabbers": {"_count": 1}, "Nevilles": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 8}, "Ron": {"_count": 2}, "outside": {"_count": 1}, "Cho": {"_count": 1}, "Crabbe": {"_count": 1}, "Molly": {"_count": 1}, "Percy": {"_count": 1}, "Michael": {"_count": 1}, "this": {"_count": 1}, "when": {"_count": 1}, "it": {"_count": 1}, "my": {"_count": 2}, "information": {"_count": 1}, "Tonks": {"_count": 1}, "that": {"_count": 1}, "your": {"_count": 1}}, "Malfoy": {"_count": 17, "was": {"_count": 9}, "said": {"_count": 2}, "had": {"_count": 5}, "s": {"_count": 1}}, "Filch": {"_count": 2, "had": {"_count": 1}, "has": {"_count": 1}}, "appeared": {"_count": 20, "to": {"_count": 20}}, "Potters": {"_count": 1, "written": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "wasnt": {"_count": 1, "there": {"_count": 1}}, "good": {"_count": 2, "were": {"_count": 1}, "will": {"_count": 1}}, "remained": {"_count": 5, "of": {"_count": 4}, "still": {"_count": 1}}, "Aragog": {"_count": 2, "had": {"_count": 1}, "would": {"_count": 1}}, "attacked": {"_count": 1, "them": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}, "Ginny": {"_count": 2, "might": {"_count": 1}, "had": {"_count": 1}}, "Dumbledore": {"_count": 27, "sends": {"_count": 1}, "had": {"_count": 8}, "wants": {"_count": 1}, "asked": {"_count": 1}, "was": {"_count": 4}, "said": {"_count": 2}, "told": {"_count": 2}, "would": {"_count": 2}, "s": {"_count": 1}, "meant": {"_count": 1}, "desired": {"_count": 1}, "left": {"_count": 1}, "wrote": {"_count": 1}, "wanted": {"_count": 1}}, "use": {"_count": 5, "Fawkes": {"_count": 1}, "would": {"_count": 2}, "have": {"_count": 1}, "did": {"_count": 1}}, "chance": {"_count": 1, "did": {"_count": 1}}, "where": {"_count": 1, "did": {"_count": 1}}, "will": {"_count": 12, "Ripper": {"_count": 1}, "frighten": {"_count": 1}, "you": {"_count": 3}, "it": {"_count": 1}, "become": {"_count": 1}, "people": {"_count": 1}, "they": {"_count": 1}, "happen": {"_count": 1}, "stop": {"_count": 1}, "be": {"_count": 1}}, "got": {"_count": 1, "in": {"_count": 1}}, "Black": {"_count": 2, "did": {"_count": 1}, "wants": {"_count": 1}}, "Stan": {"_count": 1, "might": {"_count": 1}}, "matters": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 3, "keeps": {"_count": 1}, "said": {"_count": 1}, "is": {"_count": 1}}, "Blacks": {"_count": 3, "after": {"_count": 1}, "capable": {"_count": 1}, "voice": {"_count": 1}}, "Draco": {"_count": 4, "Malfoy": {"_count": 3}, "is": {"_count": 1}}, "Professor": {"_count": 8, "McGonagall": {"_count": 4}, "Trelawney": {"_count": 1}, "Sprout": {"_count": 2}, "Binns": {"_count": 1}}, "happens": {"_count": 14, "": {"_count": 2}, "to": {"_count": 8}, "when": {"_count": 3}, "if": {"_count": 1}}, "shape": {"_count": 1, "it": {"_count": 1}}, "rubbish": {"_count": 1, "said": {"_count": 1}}, "fifty": {"_count": 1, "feet": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "brings": {"_count": 3, "you": {"_count": 3}}, "rescued": {"_count": 1, "Harry": {"_count": 1}}, "Pettigrews": {"_count": 1, "mother": {"_count": 1}}, "my": {"_count": 10, "mum": {"_count": 2}, "symptoms": {"_count": 1}, "dad": {"_count": 1}, "father": {"_count": 1}, "sister": {"_count": 1}, "friends": {"_count": 1}, "wand": {"_count": 1}, "sources": {"_count": 1}, "mother": {"_count": 1}}, "dementors": {"_count": 3, "do": {"_count": 1}, "were": {"_count": 2}}, "passwords": {"_count": 1, "he": {"_count": 1}}, "Sirius": {"_count": 8, "Black": {"_count": 1}, "had": {"_count": 2}, "thought": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 2}, "could": {"_count": 1}}, "Lucius": {"_count": 2, "Malfoys": {"_count": 1}, "Malfoy": {"_count": 1}}, "Lupin": {"_count": 3, "meant": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}}, "animal": {"_count": 2, "they": {"_count": 1}, "you": {"_count": 1}}, "theyve": {"_count": 5, "got": {"_count": 1}, "brought": {"_count": 1}, "named": {"_count": 1}, "been": {"_count": 1}, "done": {"_count": 1}}, "Peter": {"_count": 1, "mustve": {"_count": 1}}, "awful": {"_count": 1, "things": {"_count": 1}}, "these": {"_count": 6, "might": {"_count": 1}, "big": {"_count": 1}, "beings": {"_count": 1}, "things": {"_count": 1}, "remind": {"_count": 1}, "words": {"_count": 1}}, "Voldemort": {"_count": 9, "had": {"_count": 1}, "was": {"_count": 5}, "looks": {"_count": 1}, "did": {"_count": 2}}, "Aunt": {"_count": 1, "Petunias": {"_count": 1}}, "car": {"_count": 1, "Mr": {"_count": 1}}, "Arthur": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "theyre": {"_count": 15, "after": {"_count": 1}, "trying": {"_count": 1}, "doing": {"_count": 3}, "offered": {"_count": 1}, "calling": {"_count": 1}, "picking": {"_count": 1}, "saying": {"_count": 1}, "playing": {"_count": 1}, "for": {"_count": 1}, "told": {"_count": 1}, "like": {"_count": 1}, "called": {"_count": 1}, "sitting": {"_count": 1}}, "Krum": {"_count": 3, "was": {"_count": 1}, "did": {"_count": 1}, "and": {"_count": 1}}, "shes": {"_count": 6, "got": {"_count": 1}, "done": {"_count": 1}, "up": {"_count": 2}, "like": {"_count": 2}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "Shh": {"_count": 1, "": {"_count": 1}}, "human": {"_count": 1, "faces": {"_count": 1}}, "sorry": {"_count": 1, "": {"_count": 1}}, "illegal": {"_count": 1, "Dark": {"_count": 1}}, "Moody": {"_count": 4, "was": {"_count": 2}, "says": {"_count": 1}, "had": {"_count": 1}}, "signs": {"_count": 1, "": {"_count": 1}}, "Bagman": {"_count": 1, "had": {"_count": 1}}, "nonsense": {"_count": 2, "": {"_count": 2}}, "evidence": {"_count": 1, "is": {"_count": 1}}, "deadly": {"_count": 1, "dangerous": {"_count": 1}}, "Karkaroff": {"_count": 2, "was": {"_count": 1}, "wanted": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "Dobby": {"_count": 2, "said": {"_count": 1}, "here": {"_count": 1}}, "Crouch": {"_count": 3, "says": {"_count": 1}, "was": {"_count": 2}}, "all": {"_count": 4, "the": {"_count": 2}, "these": {"_count": 1}, "of": {"_count": 1}}, "excuse": {"_count": 1, "me": {"_count": 1}}, "anyone": {"_count": 1, "else": {"_count": 1}}, "his": {"_count": 8, "egg": {"_count": 1}, "plans": {"_count": 1}, "friends": {"_count": 1}, "regular": {"_count": 1}, "father": {"_count": 1}, "behavior": {"_count": 1}, "aunt": {"_count": 1}, "hand": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "precisely": {"_count": 1, "": {"_count": 1}}, "Cedric": {"_count": 2, "said": {"_count": 1}, "Diggory": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "sets": {"_count": 1, "him": {"_count": 1}}, "youll": {"_count": 4, "sorely": {"_count": 2}, "permit": {"_count": 1}, "be": {"_count": 1}}, "Diggory": {"_count": 1, "thought": {"_count": 1}}, "lives": {"_count": 2, "in": {"_count": 2}}, "Peeves": {"_count": 1, "was": {"_count": 1}}, "thats": {"_count": 1, "about": {"_count": 1}}, "Percys": {"_count": 1, "written": {"_count": 1}}, "dyou": {"_count": 3, "think": {"_count": 2}, "mean": {"_count": 1}}, "Dumbledores": {"_count": 1, "said": {"_count": 1}}, "one": {"_count": 2, "alone": {"_count": 1}, "of": {"_count": 1}}, "Wormtail": {"_count": 1, "was": {"_count": 1}}, "shed": {"_count": 1, "found": {"_count": 1}}, "loyalty": {"_count": 1, "to": {"_count": 1}}, "became": {"_count": 2, "of": {"_count": 2}}, "Minerva": {"_count": 1, "and": {"_count": 1}}, "someone": {"_count": 1, "is": {"_count": 1}}, "yehre": {"_count": 2, "talkin": {"_count": 1}, "like": {"_count": 1}}, "action": {"_count": 1, "Dumbledore": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "Lord": {"_count": 3, "Voldemort": {"_count": 3}}, "wouldnt": {"_count": 1, "he": {"_count": 1}}, "darling": {"_count": 1, "": {"_count": 1}}, "ARE": {"_count": 1, "dementoids": {"_count": 1}}, "what": {"_count": 2, "had": {"_count": 1}, "stitches": {"_count": 1}}, "form": {"_count": 2, "does": {"_count": 1}, "of": {"_count": 1}}, "youve": {"_count": 20, "just": {"_count": 1}, "done": {"_count": 6}, "got": {"_count": 6}, "": {"_count": 1}, "been": {"_count": 6}}, "old": {"_count": 1, "Snapes": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "e": {"_count": 1, "paid": {"_count": 1}}, "horrors": {"_count": 1, "this": {"_count": 1}}, "Kreacher": {"_count": 1, "can": {"_count": 1}}, "Mrs": {"_count": 3, "Weasley": {"_count": 2}, "Cole": {"_count": 1}}, "weather": {"_count": 1, "were": {"_count": 1}}, "dreadful": {"_count": 1, "lives": {"_count": 1}}, "color": {"_count": 1, "would": {"_count": 1}}, "wonderful": {"_count": 1, "news": {"_count": 1}}, "Fred": {"_count": 2, "had": {"_count": 1}, "said": {"_count": 1}}, "Dungs": {"_count": 1, "gotten": {"_count": 1}}, "Idve": {"_count": 1, "done": {"_count": 1}}, "Voldemorts": {"_count": 2, "up": {"_count": 1}, "capable": {"_count": 1}}, "MadEye": {"_count": 2, "says": {"_count": 1}, "would": {"_count": 1}}, "Neville": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "needs": {"_count": 1, "to": {"_count": 1}}, "Seamus": {"_count": 1, "was": {"_count": 1}}, "The": {"_count": 1, "point": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "Imago": {"_count": 1, "has": {"_count": 1}}, "school": {"_count": 1, "is": {"_count": 1}}, "goods": {"_count": 1, "theory": {"_count": 1}}, "Umbridge": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 1}, "thinks": {"_count": 1}}, "true": {"_count": 1, "": {"_count": 1}}, "itd": {"_count": 1, "be": {"_count": 1}}, "now": {"_count": 3, "she": {"_count": 1}, "that": {"_count": 1}, "felt": {"_count": 1}}, "You": {"_count": 1, "Know": {"_count": 1}}, "some": {"_count": 1, "are": {"_count": 1}}, "grade": {"_count": 1, "he": {"_count": 1}}, "grades": {"_count": 1, "we": {"_count": 1}}, "Flitwicks": {"_count": 1, "like": {"_count": 1}}, "Slinkhard": {"_count": 1, "says": {"_count": 1}}, "ourselves": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "makes": {"_count": 1, "him": {"_count": 1}}, "thestrals": {"_count": 1, "were": {"_count": 1}}, "wed": {"_count": 2, "done": {"_count": 1}, "do": {"_count": 1}}, "mood": {"_count": 1, "hes": {"_count": 1}}, "provocation": {"_count": 1, "Malfoy": {"_count": 1}}, "gifts": {"_count": 1, "": {"_count": 1}}, "giants": {"_count": 1, "hate": {"_count": 1}}, "way": {"_count": 3, "": {"_count": 3}}, "nargles": {"_count": 1, "were": {"_count": 1}}, "her": {"_count": 1, "feelings": {"_count": 1}}, "may": {"_count": 1, "be": {"_count": 1}}, "just": {"_count": 1, "happened": {"_count": 1}}, "trouble": {"_count": 1, "he": {"_count": 1}}, "bit": {"_count": 1, "her": {"_count": 1}}, "stitches": {"_count": 1, "are": {"_count": 1}}, "Bellatrix": {"_count": 3, "Lestrange": {"_count": 1}, "is": {"_count": 1}, "meant": {"_count": 1}}, "Little": {"_count": 1, "Miss": {"_count": 1}}, "our": {"_count": 1, "dear": {"_count": 1}}, "fresh": {"_count": 1, "horror": {"_count": 1}}, "twenty": {"_count": 1, "minutes": {"_count": 1}}, "oh": {"_count": 1, "Hagrid": {"_count": 1}}, "counts": {"_count": 1, "is": {"_count": 1}}, "Firenzes": {"_count": 1, "warning": {"_count": 1}}, "creatures": {"_count": 1, "they": {"_count": 1}}, "grounds": {"_count": 1, "are": {"_count": 1}}, "measures": {"_count": 1, "were": {"_count": 1}}, "PPProfessor": {"_count": 1, "Dumbledore": {"_count": 1}}, "danger": {"_count": 1, "lay": {"_count": 1}}, "hagger": {"_count": 1, "meant": {"_count": 1}}, "language": {"_count": 1, "it": {"_count": 1}}, "longdead": {"_count": 1, "past": {"_count": 1}}, "scumbags": {"_count": 1, "they": {"_count": 1}}, "curse": {"_count": 1, "to": {"_count": 1}}, "goes": {"_count": 1, "on": {"_count": 1}}, "dragons": {"_count": 1, "": {"_count": 1}}, "help": {"_count": 1, "do": {"_count": 1}}, "lies": {"_count": 2, "in": {"_count": 2}}, "little": {"_count": 3, "selfrestraint": {"_count": 1}, "of": {"_count": 1}, "girly": {"_count": 1}}, "hell": {"_count": 1, "teach": {"_count": 1}}, "resembled": {"_count": 1, "a": {"_count": 1}}, "Slughorn": {"_count": 3, "would": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}}, "attracts": {"_count": 1, "us": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "prompted": {"_count": 1, "Lord": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "concerns": {"_count": 1, "me": {"_count": 1}}, "Malfoys": {"_count": 7, "actually": {"_count": 1}, "up": {"_count": 2}, "doing": {"_count": 4}}, "say": {"_count": 1, "you": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "Apparition": {"_count": 1, "felt": {"_count": 1}}, "Horcruxes": {"_count": 2, "were": {"_count": 1}, "do": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "difference": {"_count": 1, "does": {"_count": 1}}, "McLaggen": {"_count": 1, "was": {"_count": 1}}, "Kreachers": {"_count": 1, "mistress": {"_count": 1}}, "Hokey": {"_count": 1, "witnessed": {"_count": 1}}, "attractions": {"_count": 1, "the": {"_count": 1}}, "better": {"_count": 1, "place": {"_count": 1}}, "of": {"_count": 1, "what": {"_count": 1}}, "awaited": {"_count": 1, "him": {"_count": 1}}, "He": {"_count": 1, "shouted": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "ter": {"_count": 1, "get": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "Skeeters": {"_count": 1, "unearthed": {"_count": 1}}, "nobody": {"_count": 1, "ever": {"_count": 1}}, "parents": {"_count": 1, "want": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "whatever": {"_count": 1, "She": {"_count": 1}}, "lived": {"_count": 1, "behind": {"_count": 1}}, "claim": {"_count": 1, "did": {"_count": 1}}, "Muriel": {"_count": 1, "said": {"_count": 1}}, "unconscious": {"_count": 1, "": {"_count": 1}}, "ideas": {"_count": 1, "they": {"_count": 1}}, "woman": {"_count": 1, "would": {"_count": 1}}, "Skeeter": {"_count": 1, "wrote": {"_count": 1}}, "Luna": {"_count": 1, "could": {"_count": 1}}, "Xenophilius": {"_count": 2, "had": {"_count": 2}}, "spells": {"_count": 2, "are": {"_count": 2}}, "Greyback": {"_count": 1, "said": {"_count": 1}}, "knowing": {"_count": 1, "in": {"_count": 1}}, "nothing": {"_count": 1, "happened": {"_count": 1}}, "hung": {"_count": 1, "on": {"_count": 1}}, "Ollivander": {"_count": 1, "had": {"_count": 1}}, "rumors": {"_count": 1, "you": {"_count": 1}}, "Griphook": {"_count": 1, "had": {"_count": 1}}, "Ariana": {"_count": 1, "had": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "Michael": {"_count": 1, "did": {"_count": 1}}, "lurked": {"_count": 1, "Harry": {"_count": 1}}, "well": {"_count": 1, "do": {"_count": 1}}, "gave": {"_count": 1, "you": {"_count": 1}}, "mus": {"_count": 1, "be": {"_count": 1}}, "appears": {"_count": 1, "to": {"_count": 1}}, "truly": {"_count": 1, "sharing": {"_count": 1}}, "needed": {"_count": 1, "to": {"_count": 1}}, "escaped": {"_count": 1, "from": {"_count": 1}}, "Gellert": {"_count": 1, "Grindelwald": {"_count": 1}}, "frightened": {"_count": 1, "me": {"_count": 1}}, "quality": {"_count": 1, "it": {"_count": 1}}, "gift": {"_count": 1, "you": {"_count": 1}}, "or": {"_count": 1, "who": {"_count": 1}}, "petty": {"_count": 1, "obstacles": {"_count": 1}}}, "arrived": {"_count": 205, "in": {"_count": 22, "the": {"_count": 13}, "a": {"_count": 1}, "time": {"_count": 1}, "this": {"_count": 1}, "greenhouse": {"_count": 1}, "Albania": {"_count": 1}, "Hogsmeade": {"_count": 1}, "what": {"_count": 1}, "Dumbledores": {"_count": 1}, "Grimmauld": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 6, "Harry": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "our": {"_count": 1}, "Hermione": {"_count": 1}, "double": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 33}, "!": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "moments": {"_count": 1, "later": {"_count": 1}}, "this": {"_count": 2, "morning": {"_count": 2}}, "at": {"_count": 42, "the": {"_count": 14}, "platform": {"_count": 1}, "this": {"_count": 2}, "his": {"_count": 3}, "Hogwarts": {"_count": 7}, "Hagrid": {"_count": 1}, "Snape": {"_count": 1}, "their": {"_count": 1}, "Hagrids": {"_count": 1}, "school": {"_count": 3}, "our": {"_count": 2}, "number": {"_count": 1}, "St": {"_count": 1}, "breakfast": {"_count": 1}, "Sirius": {"_count": 1}, "ten": {"_count": 1}, "Grimmauld": {"_count": 1}}, "nursing": {"_count": 1, "his": {"_count": 1}}, "spreading": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "what": {"_count": 1}, "time": {"_count": 1}}, "to": {"_count": 4, "see": {"_count": 1}, "sort": {"_count": 1}, "be": {"_count": 1}, "fight": {"_count": 1}}, "panting": {"_count": 1, "on": {"_count": 1}}, "back": {"_count": 4, "from": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}}, "here": {"_count": 6, "": {"_count": 3}, "Thank": {"_count": 1}, "tonight": {"_count": 1}, "in": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "to": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 2, "bought": {"_count": 1}, "said": {"_count": 1}}, "dramatically": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 2, "Uncle": {"_count": 1}, "Rita": {"_count": 1}}, "they": {"_count": 2, "would": {"_count": 1}, "noticed": {"_count": 1}}, "Percy": {"_count": 1, "bowed": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "Parvati": {"_count": 1}}, "early": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "nor": {"_count": 1, "late": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 8, "Harry": {"_count": 1}, "how": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}, "then": {"_count": 1}, "missed": {"_count": 1}, "they": {"_count": 1}}, "Hermione": {"_count": 2, "looked": {"_count": 1}, "dropped": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 3, "that": {"_count": 1}, "": {"_count": 1}, "next": {"_count": 1}}, "downstairs": {"_count": 2, "": {"_count": 1}, "ten": {"_count": 1}}, "the": {"_count": 4, "meetings": {"_count": 1}, "talk": {"_count": 1}, "day": {"_count": 1}, "following": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 2}}, "rose": {"_count": 1, "again": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 1, "cushion": {"_count": 1}}, "cold": {"_count": 1, "as": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "bringing": {"_count": 2, "with": {"_count": 2}}, "from": {"_count": 3, "Hogwarts": {"_count": 2}, "Romania": {"_count": 1}}, "outside": {"_count": 2, "a": {"_count": 1}, "Transfiguration": {"_count": 1}}, "she": {"_count": 1, "smoothed": {"_count": 1}}, "were": {"_count": 1, "sitting": {"_count": 1}}, "angry": {"_count": 1, "and": {"_count": 1}}, "its": {"_count": 1, "only": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "most": {"_count": 1, "people": {"_count": 1}}, "swooping": {"_count": 1, "down": {"_count": 1}}, "werent": {"_count": 1, "we": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "an": {"_count": 2, "hour": {"_count": 2}}, "unseen": {"_count": 1, "and": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "led": {"_count": 1, "into": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "bearing": {"_count": 1, "news": {"_count": 1}}, "a": {"_count": 1, "generation": {"_count": 1}}, "precisely": {"_count": 1, "because": {"_count": 1}}}, "street": {"_count": 138, "": {"_count": 34, ".": {"_count": 31}, "?": {"_count": 3}}, "that": {"_count": 4, "he": {"_count": 1}, "twisted": {"_count": 1}, "contained": {"_count": 1}, "was": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "nor": {"_count": 1, "when": {"_count": 1}}, "where": {"_count": 3, "everything": {"_count": 1}, "the": {"_count": 2}}, "lamp": {"_count": 2, "went": {"_count": 1}, "outside": {"_count": 1}}, "were": {"_count": 2, "two": {"_count": 1}, "Ron": {"_count": 1}}, "toward": {"_count": 4, "number": {"_count": 1}, "them": {"_count": 2}, "the": {"_count": 1}}, "screaming": {"_count": 1, "for": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "lamps": {"_count": 2, "so": {"_count": 1}, "of": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 4, "other": {"_count": 1}, "Grangers": {"_count": 1}, "severed": {"_count": 1}, "beggars": {"_count": 1}}, "full": {"_count": 6, "of": {"_count": 6}}, "trying": {"_count": 1, "to": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "sign": {"_count": 1, "hanging": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 4, "empty": {"_count": 1}, "packed": {"_count": 1}, "not": {"_count": 1}, "much": {"_count": 1}}, "would": {"_count": 2, "notice": {"_count": 1}, "be": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "heaving": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "new": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "apart": {"_count": 1, "an": {"_count": 1}}, "blown": {"_count": 1, "up": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 2}, "hear": {"_count": 1}, "think": {"_count": 1}, "visit": {"_count": 1}}, "heads": {"_count": 1, "bowed": {"_count": 1}}, "so": {"_count": 1, "deep": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "Uncle": {"_count": 1}}, "below": {"_count": 2, "": {"_count": 2}}, "then": {"_count": 3, "withdrew": {"_count": 1}, "closed": {"_count": 1}, "into": {"_count": 1}}, "but": {"_count": 1, "betweentimes": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}, "corners": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 10, "spot": {"_count": 1}, "shuddering": {"_count": 1}, "start": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}, "were": {"_count": 1}, "onto": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "slamming": {"_count": 1}}, "still": {"_count": 1, "hoping": {"_count": 1}}, "lined": {"_count": 2, "with": {"_count": 2}}, "past": {"_count": 1, "Zonkos": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "packed": {"_count": 1, "with": {"_count": 1}}, "outside": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "search": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "named": {"_count": 1, "Spinners": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "had": {"_count": 1}}, "devoted": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 2, "strode": {"_count": 1}, "moved": {"_count": 1}}, "thronged": {"_count": 1, "with": {"_count": 1}}, "leading": {"_count": 1, "out": {"_count": 1}}, "while": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 1, "wands": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "groping": {"_count": 1, "their": {"_count": 1}}, "Ill": {"_count": 1, "send": {"_count": 1}}, "against": {"_count": 1, "regulations": {"_count": 1}}}, "knew": {"_count": 991, "that": {"_count": 163, "the": {"_count": 30}, "if": {"_count": 5}, "Dudleys": {"_count": 1}, "Gryffindor": {"_count": 1}, "Charlie": {"_count": 1}, "said": {"_count": 2}, "Ron": {"_count": 8}, "there": {"_count": 3}, "he": {"_count": 23}, "Hagrid": {"_count": 3}, "expression": {"_count": 1}, "Sibyll": {"_count": 1}, "Hermione": {"_count": 4}, "old": {"_count": 1}, "Apparating": {"_count": 1}, "Mudblood": {"_count": 1}, "Slytherin": {"_count": 1}, "Dumbledore": {"_count": 3}, "to": {"_count": 1}, "I": {"_count": 2}, "Mr": {"_count": 1}, "voice": {"_count": 2}, "some": {"_count": 1}, "Voldemort": {"_count": 4}, "Nevilles": {"_count": 1}, "Seamuss": {"_count": 1}, "Snape": {"_count": 2}, "": {"_count": 4}, "half": {"_count": 1}, "Professor": {"_count": 1}, "she": {"_count": 9}, "Sirius": {"_count": 1}, "many": {"_count": 1}, "they": {"_count": 11}, "with": {"_count": 1}, "her": {"_count": 1}, "all": {"_count": 1}, "even": {"_count": 1}, "cough": {"_count": 1}, "Kreacher": {"_count": 1}, "a": {"_count": 1}, "going": {"_count": 1}, "you": {"_count": 3}, "at": {"_count": 1}, "worse": {"_count": 1}, "his": {"_count": 4}, "it": {"_count": 2}, "Greyback": {"_count": 1}, "Harry": {"_count": 3}, "much": {"_count": 1}, "Griphook": {"_count": 1}, "their": {"_count": 1}, "your": {"_count": 1}, "we": {"_count": 1}, "Bellatrix": {"_count": 1}, "only": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "he": {"_count": 64, "ought": {"_count": 3}, "had": {"_count": 8}, "was": {"_count": 27}, "just": {"_count": 1}, "hadnt": {"_count": 2}, "shouldnt": {"_count": 1}, "started": {"_count": 1}, "must": {"_count": 7}, "would": {"_count": 8}, "couldnt": {"_count": 2}, "didnt": {"_count": 1}, "should": {"_count": 1}, "could": {"_count": 1}, "deserved": {"_count": 1}}, "the": {"_count": 32, "man": {"_count": 1}, "secret": {"_count": 1}, "snake": {"_count": 1}, "diary": {"_count": 1}, "whole": {"_count": 2}, "truth": {"_count": 2}, "dementors": {"_count": 1}, "names": {"_count": 1}, "steps": {"_count": 1}, "one": {"_count": 1}, "end": {"_count": 1}, "other": {"_count": 1}, "scum": {"_count": 1}, "subject": {"_count": 1}, "respite": {"_count": 1}, "Ministryd": {"_count": 1}, "eye": {"_count": 1}, "Dark": {"_count": 1}, "time": {"_count": 1}, "prophecy": {"_count": 1}, "answer": {"_count": 2}, "tiny": {"_count": 1}, "room": {"_count": 1}, "centaurs": {"_count": 1}, "power": {"_count": 1}, "Ministry": {"_count": 1}, "Dumbledores": {"_count": 1}, "boat": {"_count": 1}, "Death": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 23}, "?": {"_count": 2}, "!": {"_count": 5}}, "what": {"_count": 81, "had": {"_count": 6}, "was": {"_count": 19}, "it": {"_count": 5}, "this": {"_count": 1}, "he": {"_count": 14}, "I": {"_count": 4}, "they": {"_count": 2}, "that": {"_count": 2}, "Harry": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 2}, "dementors": {"_count": 1}, "Voldemort": {"_count": 1}, "other": {"_count": 1}, "we": {"_count": 1}, "longdead": {"_count": 1}, "Snape": {"_count": 1}, "Lupin": {"_count": 1}, "but": {"_count": 1}, "really": {"_count": 1}, "Ron": {"_count": 1}, "would": {"_count": 1}, "youd": {"_count": 1}, "you": {"_count": 3}, "knowing": {"_count": 1}, "hung": {"_count": 1}, "Hermione": {"_count": 1}, "lurked": {"_count": 1}, "mus": {"_count": 1}, "happened": {"_count": 1}, "frightened": {"_count": 1}, "Dumbledore": {"_count": 1}}, "yeh": {"_count": 3, "werent": {"_count": 1}, "didn": {"_count": 1}, "hadnt": {"_count": 1}}, "Im": {"_count": 2, "a": {"_count": 1}, "staying": {"_count": 1}}, "youd": {"_count": 8, "be": {"_count": 3}, "seen": {"_count": 1}, "come": {"_count": 3}, "take": {"_count": 1}}, "they": {"_count": 17, "were": {"_count": 8}, "werent": {"_count": 2}, "had": {"_count": 3}, "would": {"_count": 2}, "needed": {"_count": 1}, "knew": {"_count": 1}}, "yer": {"_count": 1, "mum": {"_count": 1}}, "theyd": {"_count": 3, "come": {"_count": 1}, "been": {"_count": 1}, "drag": {"_count": 1}}, "better": {"_count": 4, "than": {"_count": 3}, "": {"_count": 1}}, "you": {"_count": 23, "shouldnt": {"_count": 1}, "would": {"_count": 4}, "were": {"_count": 9}, "hadnt": {"_count": 2}, "to": {"_count": 1}, "had": {"_count": 2}, "wont": {"_count": 1}, "could": {"_count": 1}, "wouldnt": {"_count": 1}, "werent": {"_count": 1}}, "it": {"_count": 73, "was": {"_count": 20}, "": {"_count": 13}, "Hermione": {"_count": 1}, "he": {"_count": 3}, "would": {"_count": 6}, "could": {"_count": 1}, "wouldnt": {"_count": 1}, "must": {"_count": 1}, "had": {"_count": 4}, "said": {"_count": 1}, "I": {"_count": 2}, "the": {"_count": 2}, "Harry": {"_count": 1}, "from": {"_count": 1}, "but": {"_count": 1}, "now": {"_count": 1}, "February": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}, "meant": {"_count": 1}, "He": {"_count": 1}, "by": {"_count": 1}, "so": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 2}, "his": {"_count": 1}, "HarryY": {"_count": 1}, "re": {"_count": 1}}, "hed": {"_count": 7, "been": {"_count": 1}, "never": {"_count": 1}, "bin": {"_count": 1}, "come": {"_count": 1}, "be": {"_count": 1}, "eat": {"_count": 1}, "passed": {"_count": 1}}, "somehow": {"_count": 1, "what": {"_count": 1}}, "was": {"_count": 19, "miles": {"_count": 1}, "that": {"_count": 13}, "concealed": {"_count": 1}, "in": {"_count": 1}, "right": {"_count": 1}, "likely": {"_count": 1}, "seconds": {"_count": 1}}, "someone": {"_count": 4, "was": {"_count": 4}}, "why": {"_count": 11, "it": {"_count": 1}, "": {"_count": 3}, "someone": {"_count": 1}, "Hagrid": {"_count": 1}, "Tom": {"_count": 1}, "They": {"_count": 1}, "she": {"_count": 2}, "Greyback": {"_count": 1}}, "for": {"_count": 4, "sure": {"_count": 2}, "more": {"_count": 1}, "he": {"_count": 1}}, "nothing": {"_count": 4, "about": {"_count": 2}, "": {"_count": 1}, "he": {"_count": 1}}, "them": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 3, "he": {"_count": 1}, "rather": {"_count": 1}, "nothing": {"_count": 1}}, "when": {"_count": 4, "they": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "how": {"_count": 18, "to": {"_count": 8}, "long": {"_count": 1}, "much": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 3}, "she": {"_count": 1}, "foolish": {"_count": 1}, "Ron": {"_count": 1}}, "Ron": {"_count": 9, "and": {"_count": 2}, "would": {"_count": 1}, "too": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 4}}, "everything": {"_count": 2, "except": {"_count": 1}, "went": {"_count": 1}}, "Neville": {"_count": 1, "like": {"_count": 1}}, "I": {"_count": 25, "was": {"_count": 11}, "must": {"_count": 3}, "had": {"_count": 2}, "could": {"_count": 2}, "would": {"_count": 1}, "didnt": {"_count": 1}, "ordered": {"_count": 1}, "couldnt": {"_count": 2}, "liked": {"_count": 1}, "knew": {"_count": 1}}, "one": {"_count": 4, "ter": {"_count": 1}, "thing": {"_count": 2}, "day": {"_count": 1}}, "Quirrell": {"_count": 1, "couldnt": {"_count": 1}}, "all": {"_count": 8, "was": {"_count": 1}, "the": {"_count": 1}, "about": {"_count": 3}, "of": {"_count": 2}, "along": {"_count": 1}}, "at": {"_count": 17, "once": {"_count": 15}, "a": {"_count": 1}, "last": {"_count": 1}}, "instantly": {"_count": 3, "that": {"_count": 2}, "hed": {"_count": 1}}, "sir": {"_count": 2, "But": {"_count": 1}, "must": {"_count": 1}}, "Dumbledore": {"_count": 5, "would": {"_count": 1}, "was": {"_count": 1}, "quite": {"_count": 1}, "s": {"_count": 1}, "": {"_count": 1}}, "perfectly": {"_count": 15, "well": {"_count": 15}}, "by": {"_count": 4, "sight": {"_count": 2}, "the": {"_count": 1}, "her": {"_count": 1}}, "a": {"_count": 7, "good": {"_count": 1}, "lot": {"_count": 1}, "werewolf": {"_count": 1}, "moment": {"_count": 1}, "dreadful": {"_count": 1}, "young": {"_count": 1}, "bit": {"_count": 1}}, "my": {"_count": 4, "secret": {"_count": 1}, "dad": {"_count": 1}, "grandfather": {"_count": 1}, "brother": {"_count": 1}}, "Salazar": {"_count": 1, "Slytherin": {"_count": 1}}, "now": {"_count": 4, "where": {"_count": 2}, "Voldemort": {"_count": 1}, "had": {"_count": 1}}, "who": {"_count": 12, "it": {"_count": 1}, "that": {"_count": 2}, "he": {"_count": 3}, "did": {"_count": 1}, "those": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 2}, "this": {"_count": 1}}, "immediately": {"_count": 5, "where": {"_count": 1}, "who": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 2}}, "so": {"_count": 2, "well": {"_count": 2}}, "Hagrid": {"_count": 5, "had": {"_count": 1}, "to": {"_count": 1}, "couldnt": {"_count": 1}, "would": {"_count": 2}}, "exactly": {"_count": 13, "how": {"_count": 4}, "what": {"_count": 6}, "who": {"_count": 1}, "why": {"_count": 1}, "where": {"_count": 1}}, "something": {"_count": 3, "Harry": {"_count": 1}, "like": {"_count": 1}, "was": {"_count": 1}}, "there": {"_count": 8, "was": {"_count": 5}, "were": {"_count": 2}, "would": {"_count": 1}}, "wizards": {"_count": 1, "everywhere": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "this": {"_count": 7, "of": {"_count": 1}, "couldnt": {"_count": 1}, "must": {"_count": 1}, "": {"_count": 2}, "would": {"_count": 1}, "was": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "his": {"_count": 11, "name": {"_count": 2}, "wand": {"_count": 1}, "butterflies": {"_count": 1}, "face": {"_count": 1}, "last": {"_count": 1}, "mother": {"_count": 1}, "father": {"_count": 1}, "favorite": {"_count": 1}, "Horcrux": {"_count": 1}, "body": {"_count": 1}}, "which": {"_count": 2, "one": {"_count": 1}, "of": {"_count": 1}}, "things": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 11, "was": {"_count": 6}, "had": {"_count": 2}, "meant": {"_count": 1}, "wasnt": {"_count": 1}, "wanted": {"_count": 1}}, "no": {"_count": 4, "more": {"_count": 2}, "wizard": {"_count": 1}, "better": {"_count": 1}}, "only": {"_count": 4, "half": {"_count": 1}, "too": {"_count": 2}, "that": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "Black": {"_count": 1, "was": {"_count": 1}}, "Minerva": {"_count": 1, "she": {"_count": 1}}, "him": {"_count": 9, "he": {"_count": 1}, "at": {"_count": 1}, "best": {"_count": 2}, "well": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}, "longest": {"_count": 1}, "so": {"_count": 1}}, "Lupin": {"_count": 1, "wouldnt": {"_count": 1}}, "about": {"_count": 13, "the": {"_count": 5}, "how": {"_count": 1}, "them": {"_count": 4}, "his": {"_count": 1}, "Ron": {"_count": 1}, "Not": {"_count": 1}}, "Sirius": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "longer": {"_count": 1}}, "Peter": {"_count": 1, "was": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "and": {"_count": 5, "one": {"_count": 1}, "I": {"_count": 1}, "Umbridge": {"_count": 1}, "so": {"_count": 1}, "now": {"_count": 1}}, "otherwise": {"_count": 1, "however": {"_count": 1}}, "where": {"_count": 15, "Harrys": {"_count": 1}, "he": {"_count": 3}, "his": {"_count": 1}, "Sirius": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 1}, "any": {"_count": 1}, "Voldemort": {"_count": 1}, "in": {"_count": 1}, "my": {"_count": 1}, "Harry": {"_count": 1}}, "too": {"_count": 3, "much": {"_count": 1}, "late": {"_count": 1}, "where": {"_count": 1}}, "enough": {"_count": 3, "about": {"_count": 1}, "to": {"_count": 1}, "not": {"_count": 1}}, "whether": {"_count": 1, "or": {"_count": 1}}, "these": {"_count": 1, "details": {"_count": 1}}, "wed": {"_count": 1, "seen": {"_count": 1}}, "Hermione": {"_count": 1, "would": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 2}}, "their": {"_count": 1, "job": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "Voldemort": {"_count": 3, "was": {"_count": 2}, "and": {"_count": 1}}, "each": {"_count": 4, "other": {"_count": 4}}, "Winky": {"_count": 1, "was": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "Bagman": {"_count": 1, "was": {"_count": 1}}, "made": {"_count": 1, "such": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "light": {"_count": 1, "and": {"_count": 1}}, "Snape": {"_count": 2, "was": {"_count": 2}}, "more": {"_count": 3, "curses": {"_count": 1}, "than": {"_count": 2}}, "her": {"_count": 4, "but": {"_count": 1}, "round": {"_count": 1}, "name": {"_count": 1}, "": {"_count": 1}}, "wasnt": {"_count": 1, "forgetful": {"_count": 1}}, "of": {"_count": 9, "course": {"_count": 2}, "a": {"_count": 1}, "goblins": {"_count": 1}, "what": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "Arianas": {"_count": 1}, "my": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}, "Voldemort": {"_count": 1}}, "because": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "anything": {"_count": 2, "for": {"_count": 1}, "we": {"_count": 1}}, "Dudley": {"_count": 1, "wasnt": {"_count": 1}}, "Albus": {"_count": 3, "Dumbledore": {"_count": 1}, "would": {"_count": 1}, "better": {"_count": 1}}, "nearly": {"_count": 1, "everything": {"_count": 1}}, "if": {"_count": 4, "she": {"_count": 1}, "any": {"_count": 1}, "I": {"_count": 1}, "anyone": {"_count": 1}}, "oh": {"_count": 1, "how": {"_count": 1}}, "Id": {"_count": 6, "get": {"_count": 1}, "have": {"_count": 2}, "shown": {"_count": 1}, "go": {"_count": 1}, "hear": {"_count": 1}}, "Moody": {"_count": 1, "was": {"_count": 1}}, "Thus": {"_count": 1, "the": {"_count": 1}}, "George": {"_count": 1, "had": {"_count": 1}}, "yet": {"_count": 2, "how": {"_count": 1}, "that": {"_count": 1}}, "long": {"_count": 1, "before": {"_count": 1}}, "Professor": {"_count": 2, "Umbridge": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Yeah": {"_count": 1, "she": {"_count": 1}}, "nor": {"_count": 3, "cared": {"_count": 3}}, "Lee": {"_count": 1, "was": {"_count": 1}}, "an": {"_count": 1, "he": {"_count": 1}}, "we": {"_count": 4, "was": {"_count": 2}, "were": {"_count": 2}}, "our": {"_count": 1, "lingo": {"_count": 1}}, "Arthur": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 4, "Hermione": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Harry": {"_count": 2}}, "or": {"_count": 3, "cared": {"_count": 1}, "suspected": {"_count": 2}}, "Avery": {"_count": 1, "was": {"_count": 1}}, "surely": {"_count": 1, "only": {"_count": 1}}, "from": {"_count": 4, "experience": {"_count": 1}, "the": {"_count": 1}, "those": {"_count": 1}, "their": {"_count": 1}}, "yehd": {"_count": 2, "say": {"_count": 1}, "find": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "not": {"_count": 3, "I": {"_count": 1}, "whether": {"_count": 1}, "where": {"_count": 1}}, "already": {"_count": 1, "of": {"_count": 1}}, "even": {"_count": 3, "then": {"_count": 2}, "as": {"_count": 1}}, "uttered": {"_count": 1, "a": {"_count": 1}}, "led": {"_count": 1, "down": {"_count": 1}}, "would": {"_count": 3, "see": {"_count": 1}, "draw": {"_count": 1}, "never": {"_count": 1}}, "just": {"_count": 1, "by": {"_count": 1}}, "Seamus": {"_count": 1, "would": {"_count": 1}}, "been": {"_count": 1, "Head": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 3, "anybody": {"_count": 1}, "arrived": {"_count": 1}, "been": {"_count": 1}}, "Slughorn": {"_count": 1, "would": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "such": {"_count": 1, "Dark": {"_count": 1}}, "must": {"_count": 2, "be": {"_count": 1}, "come": {"_count": 1}}, "instinctively": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "boded": {"_count": 1, "ill": {"_count": 1}}, "nobody": {"_count": 1, "could": {"_count": 1}}, "without": {"_count": 1, "knowing": {"_count": 1}}, "to": {"_count": 2, "be": {"_count": 2}}, "me": {"_count": 1, "then": {"_count": 1}}, "Ginny": {"_count": 1, "was": {"_count": 1}}, "Legilimency": {"_count": 1, "really": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Ariana": {"_count": 1, "would": {"_count": 1}}, "improve": {"_count": 1, "slightly": {"_count": 1}}, "were": {"_count": 1, "sobs": {"_count": 1}}, "on": {"_count": 2, "these": {"_count": 1}, "at": {"_count": 1}}, "didnt": {"_count": 1, "want": {"_count": 1}}, "Xenophilius": {"_count": 1, "hadnt": {"_count": 1}}, "youre": {"_count": 1, "with": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "with": {"_count": 1, "prodigious": {"_count": 1}}, "extremely": {"_count": 1, "well": {"_count": 1}}, "detected": {"_count": 1, "spells": {"_count": 1}}}, "too": {"_count": 1305, "but": {"_count": 15, "they": {"_count": 1}, "Brown": {"_count": 1}, "stopped": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "Krum": {"_count": 1}, "his": {"_count": 1}, "apart": {"_count": 1}, "Mrs": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}, "Ive": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 39, "he": {"_count": 2}, "then": {"_count": 2}, "started": {"_count": 1}, "Ron": {"_count": 1}, "of": {"_count": 1}, "after": {"_count": 1}, "adding": {"_count": 1}, "Mr": {"_count": 1}, "Harry": {"_count": 5}, "Snape": {"_count": 1}, "within": {"_count": 1}, "kissed": {"_count": 1}, "wondered": {"_count": 1}, "when": {"_count": 1}, "you": {"_count": 1}, "what": {"_count": 1}, "taking": {"_count": 1}, "before": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "all": {"_count": 1}, "seized": {"_count": 1}, "waited": {"_count": 1}, "got": {"_count": 1}, "rage": {"_count": 1}, "dangled": {"_count": 1}, "almost": {"_count": 1}, "together": {"_count": 1}, "were": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}, "much": {"_count": 1}}, "was": {"_count": 22, "wearing": {"_count": 2}, "snatched": {"_count": 1}, "looking": {"_count": 2}, "carrying": {"_count": 1}, "basking": {"_count": 1}, "exceedingly": {"_count": 1}, "shouting": {"_count": 2}, "smiling": {"_count": 1}, "illustrated": {"_count": 1}, "gazing": {"_count": 1}, "missing": {"_count": 1}, "light": {"_count": 1}, "soaked": {"_count": 1}, "out": {"_count": 1}, "a": {"_count": 1}, "disappointed": {"_count": 1}, "about": {"_count": 1}, "awake": {"_count": 1}, "holding": {"_count": 1}}, "well": {"_count": 18, "noble": {"_count": 1}, "cause": {"_count": 1}, "protected": {"_count": 2}, "the": {"_count": 3}, "it": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 2}, "to": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}, "yeh": {"_count": 1}}, "big": {"_count": 11, "to": {"_count": 2}, "": {"_count": 2}, "for": {"_count": 6}, "because": {"_count": 1}}, "": {"_count": 352, ".": {"_count": 289}, "?": {"_count": 35}, "!": {"_count": 28}}, "because": {"_count": 4, "she": {"_count": 2}, "there": {"_count": 1}, "Mr": {"_count": 1}}, "good": {"_count": 12, "to": {"_count": 5}, "a": {"_count": 1}, "": {"_count": 4}, "is": {"_count": 1}, "at": {"_count": 1}}, "some": {"_count": 2, "were": {"_count": 1}, "like": {"_count": 1}}, "close": {"_count": 9, "ter": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 3}, "to": {"_count": 3}, "and": {"_count": 1}}, "far": {"_count": 19, "": {"_count": 8}, "west": {"_count": 1}, "from": {"_count": 3}, "it": {"_count": 1}, "away": {"_count": 3}, "east": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 1}}, "small": {"_count": 6, "and": {"_count": 1}, "for": {"_count": 1}, "As": {"_count": 1}, "to": {"_count": 2}, "WonWon": {"_count": 1}}, "slow": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "many": {"_count": 20, "doors": {"_count": 1}, "close": {"_count": 1}, "legs": {"_count": 1}, "questions": {"_count": 2}, "of": {"_count": 4}, "stamps": {"_count": 1}, "clogging": {"_count": 1}, "": {"_count": 2}, "eyes": {"_count": 1}, "thoughts": {"_count": 1}, "faithful": {"_count": 1}, "owls": {"_count": 1}, "visitors": {"_count": 1}, "Gryffindor": {"_count": 1}, "mistakes": {"_count": 1}}, "late": {"_count": 42, "they": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 10}, "CRUNCH": {"_count": 1}, "was": {"_count": 2}, "Harry": {"_count": 2}, "Lockhart": {"_count": 1}, "Crookshanks": {"_count": 1}, "the": {"_count": 3}, "Sirius": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 3}, "Dobby": {"_count": 1}, "all": {"_count": 1}, "isnt": {"_count": 1}, "but": {"_count": 1}, "Snape": {"_count": 1}, "Umbridge": {"_count": 1}, "that": {"_count": 2}, "There": {"_count": 2}, "and": {"_count": 1}, "Stupefyl": {"_count": 1}, "for": {"_count": 1}}, "much": {"_count": 82, "": {"_count": 7}, "speed": {"_count": 1}, "because": {"_count": 2}, "on": {"_count": 2}, "already": {"_count": 1}, "for": {"_count": 3}, "atten": {"_count": 1}, "but": {"_count": 1}, "Hermione": {"_count": 1}, "about": {"_count": 4}, "into": {"_count": 1}, "mead": {"_count": 1}, "of": {"_count": 4}, "to": {"_count": 6}, "experience": {"_count": 3}, "attention": {"_count": 4}, "hair": {"_count": 1}, "noise": {"_count": 1}, "interference": {"_count": 1}, "miss": {"_count": 1}, "it": {"_count": 1}, "bother": {"_count": 1}, "fun": {"_count": 1}, "food": {"_count": 1}, "magic": {"_count": 1}, "importance": {"_count": 1}, "and": {"_count": 2}, "trouble": {"_count": 2}, "time": {"_count": 1}, "difficulty": {"_count": 2}, "so": {"_count": 1}, "truth": {"_count": 1}, "they": {"_count": 1}, "we": {"_count": 1}, "dragon": {"_count": 1}, "faith": {"_count": 1}, "going": {"_count": 1}, "like": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 1}, "ankle": {"_count": 1}, "risk": {"_count": 1}, "bitterness": {"_count": 1}, "ash": {"_count": 1}, "fer": {"_count": 1}, "from": {"_count": 1}, "upon": {"_count": 1}, "store": {"_count": 1}, "if": {"_count": 1}, "blame": {"_count": 1}, "its": {"_count": 1}, "understanding": {"_count": 1}, "pure": {"_count": 1}}, "excited": {"_count": 4, "and": {"_count": 1}, "about": {"_count": 1}, "to": {"_count": 2}}, "bad": {"_count": 8, "": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 3}, "then": {"_count": 1}, "was": {"_count": 1}, "this": {"_count": 1}}, "high": {"_count": 4, "to": {"_count": 2}, "or": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 6, "nervous": {"_count": 1}, "Willow": {"_count": 1}, "first": {"_count": 1}, "fire": {"_count": 1}, "long": {"_count": 1}, "lamp": {"_count": 1}}, "pleased": {"_count": 5, "with": {"_count": 3}, "": {"_count": 1}, "if": {"_count": 1}}, "disappeared": {"_count": 2, "and": {"_count": 1}, "into": {"_count": 1}}, "sleepy": {"_count": 3, "even": {"_count": 1}, "to": {"_count": 2}}, "polite": {"_count": 1, "to": {"_count": 1}}, "clearly": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 36, "Wood": {"_count": 1}, "Harry": {"_count": 6}, "Ron": {"_count": 7}, "Mrs": {"_count": 2}, "Hermione": {"_count": 5}, "George": {"_count": 3}, "Fred": {"_count": 2}, "Myrtle": {"_count": 1}, "Seamus": {"_count": 1}, "Cho": {"_count": 1}, "Professor": {"_count": 1}, "James": {"_count": 1}, "Neville": {"_count": 1}, "Luna": {"_count": 1}, "Dumbledore": {"_count": 2}, "Lupin": {"_count": 1}}, "Beaters": {"_count": 1, "": {"_count": 1}}, "busy": {"_count": 24, "with": {"_count": 2}, "looking": {"_count": 1}, "heaving": {"_count": 1}, "feeling": {"_count": 1}, "screwing": {"_count": 1}, "in": {"_count": 1}, "staring": {"_count": 2}, "cheering": {"_count": 1}, "seeing": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 3}, "keeping": {"_count": 1}, "dwelling": {"_count": 1}, "digesting": {"_count": 1}, "describing": {"_count": 1}, "being": {"_count": 1}, "unwrapping": {"_count": 1}, "saving": {"_count": 1}, "trying": {"_count": 1}}, "easy": {"_count": 5, "to": {"_count": 1}, "however": {"_count": 1}, "for": {"_count": 1}, "ter": {"_count": 1}, "he": {"_count": 1}}, "dark": {"_count": 4, "we": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}}, "were": {"_count": 9, "becoming": {"_count": 1}, "ogling": {"_count": 1}, "reappearing": {"_count": 1}, "remembering": {"_count": 1}, "gripping": {"_count": 1}, "wearing": {"_count": 1}, "you": {"_count": 1}, "hurtling": {"_count": 1}, "full": {"_count": 1}}, "never": {"_count": 1, "forget": {"_count": 1}}, "JORDAN": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "Important": {"_count": 1}}, "carried": {"_count": 1, "a": {"_count": 1}}, "full": {"_count": 4, "and": {"_count": 1}, "of": {"_count": 3}}, "they": {"_count": 1, "had": {"_count": 1}}, "scared": {"_count": 8, "to": {"_count": 8}}, "calm": {"_count": 1, "either": {"_count": 1}}, "little": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 4, "I": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}}, "Mr": {"_count": 2, "Longbottom": {"_count": 1}, "Potter": {"_count": 1}}, "friendly": {"_count": 4, "with": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 1}}, "careful": {"_count": 1, "Ronan": {"_count": 1}}, "hot": {"_count": 1, "": {"_count": 1}}, "nosy": {"_count": 1, "to": {"_count": 1}}, "weak": {"_count": 5, "to": {"_count": 4}, "at": {"_count": 1}}, "tight": {"_count": 2, "he": {"_count": 1}, "to": {"_count": 1}}, "heavy": {"_count": 6, "": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 2}, "together": {"_count": 1}, "and": {"_count": 1}}, "rude": {"_count": 1, "so": {"_count": 1}}, "great": {"_count": 2, "too": {"_count": 1}, "": {"_count": 1}}, "important": {"_count": 2, "sir": {"_count": 1}, "": {"_count": 1}}, "long": {"_count": 26, "to": {"_count": 1}, "": {"_count": 8}, "its": {"_count": 2}, "for": {"_count": 1}, "The": {"_count": 1}, "not": {"_count": 1}, "or": {"_count": 1}, "said": {"_count": 1}, "Weasley": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 2}, "Mrs": {"_count": 1}, "Ronald": {"_count": 1}, "so": {"_count": 1}, "she": {"_count": 1}, "Oh": {"_count": 1}, "landing": {"_count": 1}}, "you": {"_count": 5, "know": {"_count": 2}, "elped": {"_count": 1}, "may": {"_count": 1}, "said": {"_count": 1}}, "sorry": {"_count": 1, "for": {"_count": 1}}, "bright": {"_count": 1, "said": {"_count": 1}}, "soft": {"_count": 2, "with": {"_count": 2}}, "quiet": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 13, "added": {"_count": 3}, "said": {"_count": 1}, "would": {"_count": 1}, "wanted": {"_count": 1}, "looked": {"_count": 1}, "was": {"_count": 3}, "mentioned": {"_count": 1}, "came": {"_count": 1}, "cant": {"_count": 1}}, "early": {"_count": 5, "wait": {"_count": 1}, "to": {"_count": 3}, "in": {"_count": 1}}, "charmed": {"_count": 1, "": {"_count": 1}}, "crowded": {"_count": 1, "in": {"_count": 1}}, "quickly": {"_count": 4, "for": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 1}, "Lights": {"_count": 1}}, "your": {"_count": 1, "schoolmates": {"_count": 1}}, "keen": {"_count": 2, "ter": {"_count": 1}, "for": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "though": {"_count": 6, "the": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "when": {"_count": 1}}, "guilty": {"_count": 1, "": {"_count": 1}}, "gruesome": {"_count": 1, "to": {"_count": 1}}, "happy": {"_count": 9, "": {"_count": 2}, "about": {"_count": 1}, "to": {"_count": 3}, "myself": {"_count": 1}, "right": {"_count": 1}, "these": {"_count": 1}}, "dangerous": {"_count": 8, "Who": {"_count": 1}, "Dangerous": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 2}}, "runny": {"_count": 1, "but": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "large": {"_count": 3, "and": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "quick": {"_count": 5, "for": {"_count": 5}}, "or": {"_count": 3, "itd": {"_count": 1}, "else": {"_count": 1}, "it": {"_count": 1}}, "disgusted": {"_count": 1, "to": {"_count": 1}}, "sank": {"_count": 1, "without": {"_count": 1}}, "faded": {"_count": 1, "away": {"_count": 1}}, "had": {"_count": 11, "jet": {"_count": 1}, "been": {"_count": 4}, "vanished": {"_count": 1}, "come": {"_count": 1}, "written": {"_count": 1}, "recognized": {"_count": 1}, "seen": {"_count": 1}, "a": {"_count": 1}}, "Weasley": {"_count": 2, "": {"_count": 2}}, "heard": {"_count": 1, "Fang": {"_count": 1}}, "Harry": {"_count": 13, "had": {"_count": 1}, "muttered": {"_count": 1}, "snapped": {"_count": 1}, "said": {"_count": 1}, "me": {"_count": 1}, "": {"_count": 2}, "began": {"_count": 1}, "youve": {"_count": 1}, "stepped": {"_count": 1}, "Potter": {"_count": 1}, "thought": {"_count": 1}, "told": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "used": {"_count": 2, "to": {"_count": 2}}, "soon": {"_count": 12, "there": {"_count": 1}, "": {"_count": 4}, "the": {"_count": 2}, "and": {"_count": 2}, "said": {"_count": 1}, "they": {"_count": 1}, "for": {"_count": 1}}, "hard": {"_count": 9, "": {"_count": 3}, "Ron": {"_count": 1}, "he": {"_count": 1}, "Im": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}, "tightly": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 3}}, "short": {"_count": 4, "in": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "jeans": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "often": {"_count": 5, "into": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}, "before": {"_count": 1}}, "Oliver": {"_count": 1, "said": {"_count": 1}}, "left": {"_count": 2, "": {"_count": 2}}, "reflecting": {"_count": 1, "the": {"_count": 1}}, "thick": {"_count": 1, "to": {"_count": 1}}, "ill": {"_count": 3, "to": {"_count": 3}}, "near": {"_count": 4, "a": {"_count": 2}, "me": {"_count": 1}, "the": {"_count": 1}}, "advanced": {"_count": 1, "for": {"_count": 1}}, "feeble": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 2, "bit": {"_count": 1}, "book": {"_count": 1}}, "perfect": {"_count": 1, "to": {"_count": 1}}, "aware": {"_count": 1, "of": {"_count": 1}}, "unpleasant": {"_count": 1, "for": {"_count": 1}}, "old": {"_count": 4, "for": {"_count": 2}, "to": {"_count": 1}, "and": {"_count": 1}}, "looked": {"_count": 3, "very": {"_count": 1}, "as": {"_count": 1}, "ahead": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "she": {"_count": 1}}, "hes": {"_count": 2, "a": {"_count": 1}, "their": {"_count": 1}}, "cowardly": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Before": {"_count": 1, "he": {"_count": 1}}, "arrogant": {"_count": 1, "to": {"_count": 1}}, "began": {"_count": 1, "rolling": {"_count": 1}}, "without": {"_count": 1, "turning": {"_count": 1}}, "we": {"_count": 2, "will": {"_count": 1}, "only": {"_count": 1}}, "intent": {"_count": 2, "upon": {"_count": 2}}, "Well": {"_count": 1, "well": {"_count": 1}}, "thats": {"_count": 2, "procedure": {"_count": 1}, "probably": {"_count": 1}}, "straining": {"_count": 1, "to": {"_count": 1}}, "get": {"_count": 1, "inside": {"_count": 1}}, "I": {"_count": 7, "am": {"_count": 1}, "was": {"_count": 2}, "suppose": {"_count": 1}, "wonder": {"_count": 1}, "know": {"_count": 1}, "really": {"_count": 1}}, "belonged": {"_count": 1, "to": {"_count": 1}}, "worried": {"_count": 2, "": {"_count": 2}}, "thin": {"_count": 1, "leakages": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 5, "gave": {"_count": 2}, "said": {"_count": 2}, "sank": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}, "sir": {"_count": 3, "": {"_count": 3}}, "these": {"_count": 1, "Bulgarian": {"_count": 1}}, "tall": {"_count": 1, "and": {"_count": 1}}, "lazy": {"_count": 1, "to": {"_count": 1}}, "gulping": {"_count": 1, "gargoyles": {"_count": 1}}, "young": {"_count": 21, "": {"_count": 6}, "I": {"_count": 1}, "e": {"_count": 1}, "to": {"_count": 9}, "But": {"_count": 1}, "youre": {"_count": 1}, "much": {"_count": 1}, "at": {"_count": 1}}, "junior": {"_count": 1, "to": {"_count": 1}}, "looking": {"_count": 3, "up": {"_count": 1}, "very": {"_count": 1}, "anxious": {"_count": 1}}, "appalled": {"_count": 2, "to": {"_count": 2}}, "skilled": {"_count": 1, "with": {"_count": 1}}, "transfixed": {"_count": 1, "by": {"_count": 1}}, "Lavender": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "turning": {"_count": 1}}, "having": {"_count": 1, "just": {"_count": 1}}, "tired": {"_count": 2, "and": {"_count": 1}, "tonight": {"_count": 1}}, "that": {"_count": 3, "the": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}}, "bouncing": {"_count": 1, "upon": {"_count": 1}}, "exited": {"_count": 1, "though": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 1}, "she": {"_count": 1}}, "strong": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "risky": {"_count": 2, "in": {"_count": 1}, "said": {"_count": 1}}, "closely": {"_count": 2, "MadEyes": {"_count": 1}, "at": {"_count": 1}}, "powerfully": {"_count": 1, "magical": {"_count": 1}}, "queasy": {"_count": 1, "to": {"_count": 1}}, "resentful": {"_count": 1, "toward": {"_count": 1}}, "protective": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 2, "magical": {"_count": 1}, "tales": {"_count": 1}}, "it": {"_count": 1, "went": {"_count": 1}}, "put": {"_count": 2, "up": {"_count": 1}, "his": {"_count": 1}}, "four": {"_count": 1, "": {"_count": 1}}, "fought": {"_count": 1, "not": {"_count": 1}}, "as": {"_count": 2, "its": {"_count": 1}, "though": {"_count": 1}}, "eavy": {"_count": 1, "all": {"_count": 1}}, "It": {"_count": 2, "was": {"_count": 1}, "looked": {"_count": 1}}, "all": {"_count": 1, "milling": {"_count": 1}}, "enthusiastic": {"_count": 1, "about": {"_count": 1}}, "Stebbins": {"_count": 2, "": {"_count": 2}}, "ashamed": {"_count": 1, "to": {"_count": 1}}, "Myrtle": {"_count": 1, "jerked": {"_count": 1}}, "muttering": {"_count": 1, "to": {"_count": 1}}, "At": {"_count": 1, "once": {"_count": 1}}, "smelly": {"_count": 1, "": {"_count": 1}}, "powerful": {"_count": 1, "": {"_count": 1}}, "wanted": {"_count": 2, "to": {"_count": 2}}, "has": {"_count": 1, "disappeared": {"_count": 1}}, "reliable": {"_count": 1, "": {"_count": 1}}, "remember": {"_count": 4, "": {"_count": 4}}, "badly": {"_count": 5, "to": {"_count": 1}, "either": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}}, "horrible": {"_count": 2, "he": {"_count": 1}, "to": {"_count": 1}}, "willing": {"_count": 1, "to": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "shouting": {"_count": 1}}, "glanced": {"_count": 1, "at": {"_count": 1}}, "lowered": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "bothered": {"_count": 1, "with": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "damn": {"_count": 1, "soft": {"_count": 1}}, "clean": {"_count": 1, "dyou": {"_count": 1}}, "Scourgify": {"_count": 1, "She": {"_count": 1}}, "swooped": {"_count": 1, "over": {"_count": 1}}, "bore": {"_count": 1, "the": {"_count": 1}}, "Yeah": {"_count": 1, "yeah": {"_count": 1}}, "so": {"_count": 4, "that": {"_count": 2}, "thats": {"_count": 1}, "were": {"_count": 1}}, "youve": {"_count": 1, "done": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "plans": {"_count": 1, "he": {"_count": 1}}, "Keep": {"_count": 1, "muttering": {"_count": 1}}, "trivial": {"_count": 2, "for": {"_count": 2}}, "with": {"_count": 2, "the": {"_count": 1}, "regard": {"_count": 1}}, "broke": {"_count": 1, "off": {"_count": 1}}, "anxious": {"_count": 1, "about": {"_count": 1}}, "later": {"_count": 1, "this": {"_count": 1}}, "loudly": {"_count": 4, "to": {"_count": 2}, "in": {"_count": 1}, "How": {"_count": 1}}, "heavyhanded": {"_count": 1, "with": {"_count": 1}}, "Longbottom": {"_count": 1, "said": {"_count": 1}}, "Im": {"_count": 2, "absolutely": {"_count": 1}, "SecretKeeper": {"_count": 1}}, "worked": {"_count": 1, "up": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "preoccupied": {"_count": 2, "with": {"_count": 1}, "these": {"_count": 1}}, "Siriusl": {"_count": 1, "She": {"_count": 1}}, "stupid": {"_count": 2, "to": {"_count": 2}}, "chuffed": {"_count": 1, "with": {"_count": 1}}, "clouded": {"_count": 1, "by": {"_count": 1}}, "absorbed": {"_count": 1, "in": {"_count": 1}}, "concerned": {"_count": 1, "to": {"_count": 1}}, "distracted": {"_count": 1, "to": {"_count": 1}}, "reaching": {"_count": 1, "groping": {"_count": 1}}, "if": {"_count": 3, "his": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "Neville": {"_count": 1, "eh": {"_count": 1}}, "confined": {"_count": 1, "to": {"_count": 1}}, "Dilys": {"_count": 1, "": {"_count": 1}}, "heartily": {"_count": 2, "": {"_count": 2}}, "Hermione": {"_count": 1, "added": {"_count": 1}}, "wow": {"_count": 1, "What": {"_count": 1}}, "needed": {"_count": 1, "an": {"_count": 1}}, "distressed": {"_count": 1, "to": {"_count": 1}}, "opened": {"_count": 1, "at": {"_count": 1}}, "tidy": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 1, "would": {"_count": 1}}, "incensed": {"_count": 1, "to": {"_count": 1}}, "could": {"_count": 2, "hear": {"_count": 1}, "see": {"_count": 1}}, "fast": {"_count": 3, "to": {"_count": 1}, "turned": {"_count": 1}, "": {"_count": 1}}, "exclusively": {"_count": 1, "upon": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "breathed": {"_count": 1, "Luna": {"_count": 1}}, "dizzy": {"_count": 1, "and": {"_count": 1}}, "shatter": {"_count": 1, "that": {"_count": 1}}, "who": {"_count": 1, "gave": {"_count": 1}}, "deep": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "knowing": {"_count": 1, "him": {"_count": 1}}, "where": {"_count": 1, "Voldemort": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 1}, "been": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "deeply": {"_count": 1, "asleep": {"_count": 1}}, "now": {"_count": 1, "Head": {"_count": 1}}, "surprised": {"_count": 1, "that": {"_count": 1}}, "immature": {"_count": 1, "to": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "stern": {"_count": 1, "": {"_count": 1}}, "remembered": {"_count": 1, "the": {"_count": 1}}, "harshly": {"_count": 1, "Harry": {"_count": 1}}, "theyve": {"_count": 1, "told": {"_count": 1}}, "embarrassed": {"_count": 1, "to": {"_count": 1}}, "sore": {"_count": 1, "to": {"_count": 1}}, "Amidst": {"_count": 1, "all": {"_count": 1}}, "rowdy": {"_count": 1, "when": {"_count": 1}}, "tipsy": {"_count": 1, "to": {"_count": 1}}, "understanding": {"_count": 1, "": {"_count": 1}}, "fierce": {"_count": 1, "to": {"_count": 1}}, "enthusiastically": {"_count": 1, "so": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}, "angry": {"_count": 1, "to": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "afraid": {"_count": 1, "to": {"_count": 1}}, "clinging": {"_count": 1, "to": {"_count": 1}}, "popular": {"_count": 1, "for": {"_count": 1}}, "sensed": {"_count": 1, "the": {"_count": 1}}, "coiling": {"_count": 1, "the": {"_count": 1}}, "Together": {"_count": 1, "he": {"_count": 1}}, "poor": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "\u2018Evil": {"_count": 1, "is": {"_count": 1}}, "barely": {"_count": 1, "visible": {"_count": 1}}, "leaned": {"_count": 1, "on": {"_count": 1}}, "unwieldy": {"_count": 1, "for": {"_count": 1}}, "lacked": {"_count": 1, "confidence": {"_count": 1}}, "gently": {"_count": 1, "back": {"_count": 1}}, "kindly": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "fishy": {"_count": 1, "and": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "obvious": {"_count": 1, "she": {"_count": 1}}, "bulky": {"_count": 1, "to": {"_count": 1}}, "low": {"_count": 1, "cut": {"_count": 1}}, "wore": {"_count": 1, "glasses": {"_count": 1}}, "although": {"_count": 1, "its": {"_count": 1}}, "frail": {"_count": 1, "for": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "likely": {"_count": 1, "": {"_count": 1}}, "snow": {"_count": 1, "lay": {"_count": 1}}, "gutless": {"_count": 1, "to": {"_count": 1}}, "wary": {"_count": 1, "to": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "flew": {"_count": 1, "into": {"_count": 1}}, "Ron": {"_count": 1, "Hermione": {"_count": 1}}, "youre": {"_count": 1, "in": {"_count": 1}}, "outspoken": {"_count": 1, "in": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "hurried": {"_count": 1, "to": {"_count": 1}}, "huge": {"_count": 1, "to": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "lightly": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "turned": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "foolish": {"_count": 1, "to": {"_count": 1}}, "sought": {"_count": 1, "a": {"_count": 1}}, "shameful": {"_count": 1, "to": {"_count": 1}}, "collapsed": {"_count": 1, "": {"_count": 1}}, "fifty": {"_count": 1, "yards": {"_count": 1}}, "yelled": {"_count": 1, "his": {"_count": 1}}, "severe": {"_count": 1, "": {"_count": 1}}}, "never": {"_count": 1048, "even": {"_count": 18, "seen": {"_count": 2}, "got": {"_count": 2}, "heard": {"_count": 3}, "imagined": {"_count": 1}, "touched": {"_count": 1}, "told": {"_count": 2}, "accused": {"_count": 1}, "went": {"_count": 1}, "used": {"_count": 1}, "for": {"_count": 1}, "know": {"_count": 1}, "spoke": {"_count": 1}, "laid": {"_count": 1}}, "seen": {"_count": 87, "an": {"_count": 3}, "a": {"_count": 8}, "any": {"_count": 2}, "before": {"_count": 12}, "in": {"_count": 1}, "so": {"_count": 1}, "anything": {"_count": 9}, "her": {"_count": 7}, "Snape": {"_count": 1}, "spilling": {"_count": 1}, "Brazil": {"_count": 2}, "this": {"_count": 1}, "it": {"_count": 4}, "Percy": {"_count": 1}, "him": {"_count": 5}, "eye": {"_count": 1}, "such": {"_count": 2}, "witches": {"_count": 1}, "anyone": {"_count": 2}, "one": {"_count": 2}, "": {"_count": 1}, "Moaning": {"_count": 1}, "Professor": {"_count": 2}, "Dad": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}, "behavior": {"_count": 1}, "open": {"_count": 1}, "proof": {"_count": 1}, "that": {"_count": 1}, "Umbridge": {"_count": 1}, "take": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 3}, "Lupin": {"_count": 1}, "by": {"_count": 1}, "Potter": {"_count": 1}, "immensely": {"_count": 1}}, "hoped": {"_count": 1, "before": {"_count": 1}}, "had": {"_count": 39, "much": {"_count": 3}, "anything": {"_count": 2}, "such": {"_count": 1}, "so": {"_count": 3}, "any": {"_count": 3}, "trouble": {"_count": 2}, "sir": {"_count": 1}, "time": {"_count": 1}, "friends": {"_count": 1}, "to": {"_count": 2}, "a": {"_count": 6}, "em": {"_count": 1}, "new": {"_count": 1}, "great": {"_count": 1}, "the": {"_count": 3}, "your": {"_count": 1}, "": {"_count": 2}, "Ministerial": {"_count": 1}, "it": {"_count": 2}, "gold": {"_count": 1}, "his": {"_count": 1}}, "have": {"_count": 48, "": {"_count": 1}, "enough": {"_count": 1}, "believed": {"_count": 5}, "meant": {"_count": 1}, "to": {"_count": 1}, "guessed": {"_count": 2}, "formed": {"_count": 1}, "imagined": {"_count": 1}, "dared": {"_count": 1}, "been": {"_count": 4}, "let": {"_count": 2}, "set": {"_count": 1}, "too": {"_count": 1}, "found": {"_count": 1}, "expected": {"_count": 2}, "brought": {"_count": 1}, "I": {"_count": 1}, "got": {"_count": 2}, "taken": {"_count": 1}, "dropped": {"_count": 1}, "seen": {"_count": 1}, "another": {"_count": 1}, "won": {"_count": 1}, "known": {"_count": 1}, "joined": {"_count": 1}, "occurred": {"_count": 1}, "married": {"_count": 1}, "hidden": {"_count": 1}, "met": {"_count": 1}, "done": {"_count": 3}, "happened": {"_count": 1}, "held": {"_count": 1}, "died": {"_count": 1}, "murdered": {"_count": 1}, "worked": {"_count": 1}}, "know": {"_count": 16, "": {"_count": 2}, "Harry": {"_count": 1}, "what": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 2}, "Mum": {"_count": 1}, "do": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "exactly": {"_count": 1}, "him": {"_count": 1}}, "understand": {"_count": 2, "him": {"_count": 1}, "why": {"_count": 1}}, "been": {"_count": 76, "to": {"_count": 4}, "touched": {"_count": 1}, "the": {"_count": 2}, "brought": {"_count": 1}, "more": {"_count": 4}, "allowed": {"_count": 2}, "on": {"_count": 2}, "inside": {"_count": 5}, "told": {"_count": 1}, "asked": {"_count": 3}, "born": {"_count": 1}, "in": {"_count": 4}, "this": {"_count": 3}, "better": {"_count": 1}, "into": {"_count": 1}, "much": {"_count": 1}, "like": {"_count": 1}, "part": {"_count": 1}, "able": {"_count": 9}, "introduced": {"_count": 1}, "camping": {"_count": 1}, "through": {"_count": 1}, "afraid": {"_count": 1}, "accused": {"_count": 1}, "guilty": {"_count": 1}, "Peeves": {"_count": 1}, "washed": {"_count": 1}, "hurt": {"_count": 1}, "so": {"_count": 3}, "there": {"_count": 1}, "a": {"_count": 2}, "entered": {"_count": 1}, "less": {"_count": 2}, "late": {"_count": 1}, "wrong": {"_count": 1}, "seduced": {"_count": 1}, "alone": {"_count": 1}, "seen": {"_count": 1}, "likely": {"_count": 1}, "opened": {"_count": 1}, "spotted": {"_count": 1}, "traced": {"_count": 1}, "up": {"_count": 1}, "won": {"_count": 1}}, "spoke": {"_count": 3, "about": {"_count": 2}, "a": {"_count": 1}}, "happened": {"_count": 5, "the": {"_count": 1}, "before": {"_count": 3}, "as": {"_count": 1}}, "done": {"_count": 7, "before": {"_count": 2}, "in": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}}, "gone": {"_count": 3, "so": {"_count": 2}, "into": {"_count": 1}}, "exactly": {"_count": 3, "fun": {"_count": 1}, "starved": {"_count": 1}, "gave": {"_count": 1}}, "tasted": {"_count": 2, "anything": {"_count": 2}}, "thought": {"_count": 14, "yeh": {"_count": 1}, "to": {"_count": 3}, "Id": {"_count": 5}, "they": {"_count": 1}, "of": {"_count": 2}, "it": {"_count": 2}}, "wonder": {"_count": 1, "where": {"_count": 1}}, "told": {"_count": 14, "him": {"_count": 2}, "Ron": {"_count": 2}, "me": {"_count": 3}, "you": {"_count": 4}, "us": {"_count": 1}, "Lucius": {"_count": 1}, "any": {"_count": 1}}, "expected": {"_count": 6, "this": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}}, "tried": {"_count": 4, "to": {"_count": 4}}, "leave": {"_count": 2, "Hogwarts": {"_count": 1}, "our": {"_count": 1}}, "yours": {"_count": 2, "Thief": {"_count": 2}}, "read": {"_count": 3, "anything": {"_count": 1}, "one": {"_count": 1}, "an": {"_count": 1}}, "get": {"_count": 7, "such": {"_count": 1}, "anything": {"_count": 1}, "one": {"_count": 1}, "another": {"_count": 1}, "near": {"_count": 1}, "it": {"_count": 1}, "out": {"_count": 1}}, "heard": {"_count": 40, "of": {"_count": 14}, "anythin": {"_count": 1}, "the": {"_count": 4}, "Hermione": {"_count": 1}, "Hagrid": {"_count": 2}, "her": {"_count": 2}, "before": {"_count": 4}, "anything": {"_count": 1}, "there": {"_count": 1}, "Umbridge": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 2}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "Mr": {"_count": 1}, "such": {"_count": 1}, "Lucius": {"_count": 1}, "so": {"_count": 1}}, "blown": {"_count": 1, "up": {"_count": 1}}, "talk": {"_count": 3, "about": {"_count": 1}, "to": {"_count": 2}}, "getting": {"_count": 2, "proper": {"_count": 1}, "on": {"_count": 1}}, "knew": {"_count": 27, "you": {"_count": 1}, "": {"_count": 3}, "one": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 5}, "how": {"_count": 1}, "I": {"_count": 2}, "theyd": {"_count": 1}, "whether": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 2}, "said": {"_count": 1}, "me": {"_count": 1}, "what": {"_count": 1}, "a": {"_count": 1}, "which": {"_count": 1}, "about": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "asked": {"_count": 7, "said": {"_count": 1}, "Myrtle": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 2}, "": {"_count": 1}, "us": {"_count": 1}}, "believed": {"_count": 1, "he": {"_count": 1}}, "let": {"_count": 5, "him": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 2}, "me": {"_count": 1}}, "you": {"_count": 2, "must": {"_count": 1}, "may": {"_count": 1}}, "rest": {"_count": 2, "until": {"_count": 2}}, "going": {"_count": 10, "to": {"_count": 6}, "near": {"_count": 1}, "over": {"_count": 1}, "back": {"_count": 2}}, "speak": {"_count": 2, "again": {"_count": 1}, "ill": {"_count": 1}}, "forget": {"_count": 4, "Wizard": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "felt": {"_count": 8, "anything": {"_count": 1}, "before": {"_count": 1}, "so": {"_count": 2}, "this": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "more": {"_count": 1}}, "taught": {"_count": 2, "at": {"_count": 1}, "us": {"_count": 1}}, "in": {"_count": 3, "all": {"_count": 1}, "four": {"_count": 1}, "her": {"_count": 1}}, "known": {"_count": 14, "your": {"_count": 1}, "what": {"_count": 1}, "before": {"_count": 3}, "any": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}, "Alastor": {"_count": 1}, "carried": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "smelled": {"_count": 1, "so": {"_count": 1}}, "remember": {"_count": 2, "this": {"_count": 1}, "my": {"_count": 1}}, "lost": {"_count": 5, "a": {"_count": 2}, "my": {"_count": 1}, "to": {"_count": 1}, "an": {"_count": 1}}, "die": {"_count": 1, "": {"_count": 1}}, "quite": {"_count": 11, "remember": {"_count": 1}, "forgiven": {"_count": 1}, "what": {"_count": 1}, "noticed": {"_count": 1}, "got": {"_count": 2}, "forgotten": {"_count": 1}, "managed": {"_count": 1}, "right": {"_count": 1}, "forget": {"_count": 1}, "eradicated": {"_count": 1}}, "as": {"_count": 3, "often": {"_count": 1}, "long": {"_count": 2}}, "betray": {"_count": 1, "Dumbledore": {"_count": 1}}, "tell": {"_count": 2, "anyone": {"_count": 1}, "Dumbledore": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "!": {"_count": 2}}, "saw": {"_count": 8, "his": {"_count": 1}, "any": {"_count": 1}, "me": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "Snape": {"_count": 1}}, "wanted": {"_count": 10, "you": {"_count": 1}, "to": {"_count": 5}, "anything": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "this": {"_count": 1}}, "return": {"_count": 1, "to": {"_count": 1}}, "forgive": {"_count": 5, "": {"_count": 1}, "Hagrid": {"_count": 1}, "Kreacher": {"_count": 1}, "Snape": {"_count": 1}, "you": {"_count": 1}}, "drink": {"_count": 1, "again": {"_count": 1}}, "won": {"_count": 1, "so": {"_count": 1}}, "ever": {"_count": 6, "forget": {"_count": 1}, "": {"_count": 1}, "use": {"_count": 1}, "have": {"_count": 2}, "be": {"_count": 1}}, "went": {"_count": 2, "hungry": {"_count": 1}, "in": {"_count": 1}}, "understanding": {"_count": 1, "why": {"_count": 1}}, "given": {"_count": 2, "him": {"_count": 2}}, "set": {"_count": 5, "Dobby": {"_count": 1}, "foot": {"_count": 3}, "eyes": {"_count": 1}}, "meant": {"_count": 5, "any": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "to": {"_count": 2}}, "would": {"_count": 1, "have": {"_count": 1}}, "find": {"_count": 2, "it": {"_count": 1}, "them": {"_count": 1}}, "shuts": {"_count": 1, "up": {"_count": 1}}, "met": {"_count": 7, "either": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}, "another": {"_count": 1}, "her": {"_count": 1}, "Thats": {"_count": 1}, "anyone": {"_count": 1}}, "mentioned": {"_count": 9, "his": {"_count": 1}, "under": {"_count": 1}, "Black": {"_count": 1}, "how": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "before": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 1}}, "traveled": {"_count": 2, "by": {"_count": 1}, "on": {"_count": 1}}, "used": {"_count": 7, "it": {"_count": 1}, "a": {"_count": 1}, "veela": {"_count": 1}, "before": {"_count": 1}, "to": {"_count": 2}, "regularly": {"_count": 1}}, "wrote": {"_count": 2, "back": {"_count": 1}, "in": {"_count": 1}}, "spoken": {"_count": 6, "to": {"_count": 3}, "in": {"_count": 2}, "": {"_count": 1}}, "watched": {"_count": 1, "a": {"_count": 1}}, "flown": {"_count": 1, "": {"_count": 1}}, "found": {"_count": 9, "out": {"_count": 5}, "them": {"_count": 1}, "any": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "looked": {"_count": 4, "madder": {"_count": 1}, "darker": {"_count": 1}, "more": {"_count": 1}, "at": {"_count": 1}}, "touched": {"_count": 1, "Mrs": {"_count": 1}}, "laid": {"_count": 1, "a": {"_count": 1}}, "concentrated": {"_count": 1, "on": {"_count": 1}}, "did": {"_count": 4, "Dobby": {"_count": 1}, "anything": {"_count": 2}, "they": {"_count": 1}}, "kill": {"_count": 1, "you": {"_count": 1}}, "end": {"_count": 1, "sir": {"_count": 1}}, "fear": {"_count": 1, "": {"_count": 1}}, "Hagridl": {"_count": 1, "said": {"_count": 1}}, "ve": {"_count": 1, "let": {"_count": 1}}, "asks": {"_count": 1, "too": {"_count": 1}}, "stop": {"_count": 1, "reading": {"_count": 1}}, "written": {"_count": 1, "": {"_count": 1}}, "killed": {"_count": 3, "no": {"_count": 1}, "if": {"_count": 2}}, "need": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 1, "early": {"_count": 1}}, "said": {"_count": 12, "Hagrid": {"_count": 1}, "in": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 3}, "what": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "tha": {"_count": 1}, "why": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "before": {"_count": 5, "so": {"_count": 1}, "considered": {"_count": 1}, "appreciated": {"_count": 2}, "heard": {"_count": 1}}, "attack": {"_count": 2, "Hermione": {"_count": 1}, "me": {"_count": 1}}, "to": {"_count": 11, "do": {"_count": 1}, "try": {"_count": 2}, "realize": {"_count": 1}, "accept": {"_count": 1}, "be": {"_count": 1}, "reveal": {"_count": 1}, "mention": {"_count": 2}, "tell": {"_count": 1}, "see": {"_count": 1}}, "sent": {"_count": 1, "men": {"_count": 1}}, "never": {"_count": 3, "attacked": {"_count": 1}, "again": {"_count": 1}, "tell": {"_count": 1}}, "attacked": {"_count": 1, "anyone": {"_count": 1}}, "harmed": {"_count": 1, "a": {"_count": 1}}, "opened": {"_count": 2, "the": {"_count": 1}, "before": {"_count": 1}}, "left": {"_count": 4, "the": {"_count": 1}, "Harrys": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}}, "occurred": {"_count": 3, "to": {"_count": 3}}, "mind": {"_count": 16, "the": {"_count": 1}, "": {"_count": 3}, "how": {"_count": 1}, "eh": {"_count": 1}, "snapped": {"_count": 1}, "never": {"_count": 1}, "that": {"_count": 5}, "said": {"_count": 1}, "my": {"_count": 1}, "what": {"_count": 1}}, "came": {"_count": 5, "": {"_count": 1}, "back": {"_count": 2}, "for": {"_count": 1}, "facetoface": {"_count": 1}}, "sell": {"_count": 1, "another": {"_count": 1}}, "worked": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "one": {"_count": 2, "quite": {"_count": 1}, "ter": {"_count": 1}}, "enjoyed": {"_count": 1, "his": {"_count": 1}}, "received": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "send": {"_count": 1, "him": {"_count": 1}}, "be": {"_count": 18, "able": {"_count": 8}, "cheerful": {"_count": 1}, "allowed": {"_count": 2}, "happy": {"_count": 1}, "looked": {"_count": 1}, "as": {"_count": 1}, "lost": {"_count": 1}, "bosom": {"_count": 1}, "here": {"_count": 1}, "safe": {"_count": 1}}, "yet": {"_count": 6, "failed": {"_count": 2}, "had": {"_count": 1}, "been": {"_count": 2}, "led": {"_count": 1}}, "stocking": {"_count": 1, "them": {"_count": 1}}, "shown": {"_count": 3, "the": {"_count": 1}, "much": {"_count": 1}, "Mr": {"_count": 1}}, "say": {"_count": 1, "another": {"_count": 1}}, "insult": {"_count": 1, "one": {"_count": 1}}, "failed": {"_count": 3, "to": {"_count": 1}, "her": {"_count": 1}, "yet": {"_count": 1}}, "missed": {"_count": 5, "an": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 1}, "one": {"_count": 1}}, "entered": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "gave": {"_count": 1, "it": {"_count": 1}}, "want": {"_count": 2, "you": {"_count": 1}, "to": {"_count": 1}}, "wear": {"_count": 1, "those": {"_count": 1}}, "revealed": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "taken": {"_count": 4, "Crookshankss": {"_count": 1}, "him": {"_count": 1}, "any": {"_count": 1}, "to": {"_count": 1}}, "admit": {"_count": 1, "shes": {"_count": 1}}, "leaving": {"_count": 1, "Lupins": {"_count": 1}}, "finished": {"_count": 1, "the": {"_count": 1}}, "lies": {"_count": 1, "": {"_count": 1}}, "haunted": {"_count": 1, "": {"_count": 1}}, "dream": {"_count": 3, "theyd": {"_count": 1}, "of": {"_count": 2}}, "hurt": {"_count": 2, "a": {"_count": 1}, "anybody": {"_count": 1}}, "betrayed": {"_count": 1, "James": {"_count": 1}}, "brave": {"_count": 1, "like": {"_count": 1}}, "ate": {"_count": 1, "anythin": {"_count": 1}}, "happen": {"_count": 1, "again": {"_count": 1}}, "approached": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 7, "around": {"_count": 1}, "round": {"_count": 1}, "their": {"_count": 1}, "over": {"_count": 1}, "the": {"_count": 2}, "home": {"_count": 1}}, "wavered": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "allowed": {"_count": 1, "this": {"_count": 1}}, "delivered": {"_count": 1, "to": {"_count": 1}}, "really": {"_count": 12, "thought": {"_count": 3}, "seriously": {"_count": 1}, "gone": {"_count": 1}, "liked": {"_count": 1}, "understood": {"_count": 2}, "had": {"_count": 1}, "gave": {"_count": 1}, "": {"_count": 1}, "tried": {"_count": 1}}, "replace": {"_count": 1, "brooms": {"_count": 1}}, "actually": {"_count": 3, "met": {"_count": 2}, "heard": {"_count": 1}}, "go": {"_count": 3, "for": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 1}}, "managed": {"_count": 4, "to": {"_count": 4}}, "suggested": {"_count": 1, "you": {"_count": 1}}, "makes": {"_count": 1, "anyone": {"_count": 1}}, "take": {"_count": 1, "it": {"_count": 1}}, "wearing": {"_count": 1, "them": {"_count": 1}}, "miss": {"_count": 1, "a": {"_count": 1}}, "held": {"_count": 1, "him": {"_count": 1}}, "use": {"_count": 2, "Transfiguration": {"_count": 1}, "whatever": {"_count": 1}}, "persuade": {"_count": 1, "most": {"_count": 1}}, "mentions": {"_count": 1, "it": {"_count": 1}}, "shared": {"_count": 1, "this": {"_count": 1}}, "suffered": {"_count": 2, "nerves": {"_count": 1}, "for": {"_count": 1}}, "sacked": {"_count": 1, "him": {"_count": 1}}, "speaks": {"_count": 1, "ill": {"_count": 1}}, "having": {"_count": 2, "had": {"_count": 1}, "studied": {"_count": 1}}, "help": {"_count": 1, "him": {"_count": 1}}, "stick": {"_count": 1, "up": {"_count": 1}}, "was": {"_count": 1, "great": {"_count": 1}}, "come": {"_count": 6, "out": {"_count": 1}, "off": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}, "back": {"_count": 1}}, "breathed": {"_count": 1, "properly": {"_count": 1}}, "since": {"_count": 2, "Put": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 3, "Voldemort": {"_count": 1}, "prefect": {"_count": 1}, "good": {"_count": 1}}, "cared": {"_count": 2, "much": {"_count": 1}, "about": {"_count": 1}}, "caught": {"_count": 1, "": {"_count": 1}}, "descended": {"_count": 1, "to": {"_count": 1}}, "throw": {"_count": 1, "any": {"_count": 1}}, "noticed": {"_count": 2, "it": {"_count": 1}, "before": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "puts": {"_count": 1, "out": {"_count": 1}}, "crossed": {"_count": 1, "my": {"_count": 1}}, "catch": {"_count": 1, "up": {"_count": 1}}, "waver": {"_count": 1, "again": {"_count": 1}}, "my": {"_count": 1, "Lord": {"_count": 1}}, "regain": {"_count": 1, "my": {"_count": 1}}, "learned": {"_count": 6, "anything": {"_count": 1}, "how": {"_count": 3}, "to": {"_count": 2}}, "died": {"_count": 2, "": {"_count": 2}}, "run": {"_count": 1, "in": {"_count": 1}}, "reach": {"_count": 2, "his": {"_count": 2}}, "does": {"_count": 1, "drink": {"_count": 1}}, "loved": {"_count": 1, "me": {"_count": 1}}, "allow": {"_count": 1, "dementors": {"_count": 1}}, "keep": {"_count": 1, "Rita": {"_count": 1}}, "youre": {"_count": 1, "kidding": {"_count": 1}}, "arrive": {"_count": 1, "at": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "darken": {"_count": 1, "our": {"_count": 1}}, "mastered": {"_count": 1, "how": {"_count": 1}}, "imagined": {"_count": 3, "he": {"_count": 1}, "that": {"_count": 1}, "Harry": {"_count": 1}}, "We": {"_count": 1, "know": {"_count": 1}}, "eats": {"_count": 1, "here": {"_count": 1}}, "applied": {"_count": 1, "for": {"_count": 1}}, "move": {"_count": 1, "anything": {"_count": 1}}, "convey": {"_count": 1, "the": {"_count": 1}}, "mmmade": {"_count": 1, "up": {"_count": 1}}, "speaking": {"_count": 1, "Mrs": {"_count": 1}}, "varied": {"_count": 1, "the": {"_count": 1}}, "showed": {"_count": 1, "them": {"_count": 1}}, "finds": {"_count": 1, "it": {"_count": 1}}, "endured": {"_count": 1, "a": {"_count": 1}}, "feel": {"_count": 1, "you": {"_count": 1}}, "complained": {"_count": 1, "once": {"_count": 1}}, "open": {"_count": 1, "that": {"_count": 1}}, "paused": {"_count": 2, "while": {"_count": 1}, "to": {"_count": 1}}, "gets": {"_count": 1, "visitors": {"_count": 1}}, "nuffink": {"_count": 1, "very": {"_count": 1}}, "dislodged": {"_count": 1, "me": {"_count": 1}}, "dreamed": {"_count": 4, "Marietta": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 2}}, "lay": {"_count": 1, "a": {"_count": 1}}, "employ": {"_count": 1, "Harry": {"_count": 1}}, "teach": {"_count": 1, "me": {"_count": 1}}, "leaves": {"_count": 1, "a": {"_count": 1}}, "needed": {"_count": 1, "her": {"_count": 1}}, "kept": {"_count": 1, "him": {"_count": 1}}, "hope": {"_count": 1, "to": {"_count": 1}}, "wished": {"_count": 2, "so": {"_count": 1}, "to": {"_count": 1}}, "look": {"_count": 1, "back": {"_count": 1}}, "intended": {"_count": 1, "to": {"_count": 1}}, "faced": {"_count": 1, "": {"_count": 1}}, "safe": {"_count": 1, "to": {"_count": 1}}, "chose": {"_count": 1, "you": {"_count": 1}}, "dreaded": {"_count": 1, "his": {"_count": 1}}, "see": {"_count": 5, "Mum": {"_count": 1}, "me": {"_count": 1}, "eye": {"_count": 1}, "Hogwarts": {"_count": 1}, "their": {"_count": 1}}, "boded": {"_count": 1, "well": {"_count": 1}}, "make": {"_count": 1, "any": {"_count": 1}}, "deserted": {"_count": 1, "my": {"_count": 1}}, "suspected": {"_count": 1, "you": {"_count": 1}}, "allowing": {"_count": 1, "me": {"_count": 1}}, "stopped": {"_count": 2, "trusting": {"_count": 1}, "to": {"_count": 1}}, "treated": {"_count": 1, "Harry": {"_count": 1}}, "sought": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "bring": {"_count": 1, "him": {"_count": 1}}, "liked": {"_count": 2, "him": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "stops": {"_count": 1, "talking": {"_count": 1}}, "hated": {"_count": 1, "Malfoy": {"_count": 1}}, "paid": {"_count": 1, "him": {"_count": 1}}, "troubled": {"_count": 1, "to": {"_count": 1}}, "can": {"_count": 1, "tell": {"_count": 1}}, "snogged": {"_count": 1, "anyone": {"_count": 1}}, "promised": {"_count": 1, "Hermione": {"_count": 1}}, "good": {"_count": 1, "Harry": {"_count": 1}}, "checked": {"_count": 1, "": {"_count": 1}}, "listened": {"_count": 1, "": {"_count": 1}}, "detected": {"_count": 1, "in": {"_count": 1}}, "satisfactorily": {"_count": 1, "linked": {"_count": 1}}, "realized": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "anyone": {"_count": 1}, "it": {"_count": 1}}, "mixed": {"_count": 1, "an": {"_count": 1}}, "attracted": {"_count": 1, "me": {"_count": 1}}, "unicorn": {"_count": 1, "hair": {"_count": 1}}, "witnessed": {"_count": 1, "": {"_count": 1}}, "guessing": {"_count": 1, "that": {"_count": 1}}, "fulfilled": {"_count": 1, "his": {"_count": 1}}, "murdered": {"_count": 1, "your": {"_count": 1}}, "made": {"_count": 2, "it": {"_count": 1}, "gold": {"_count": 1}}, "much": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 1}, "be": {"_count": 1}}, "passed": {"_count": 1, "his": {"_count": 1}}, "envisaged": {"_count": 1, "a": {"_count": 1}}, "attended": {"_count": 2, "a": {"_count": 1}, "Hogwarts": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "bookish": {"_count": 1, "and": {"_count": 1}}, "proud": {"_count": 1, "or": {"_count": 1}}, "talked": {"_count": 1, "about": {"_count": 1}}, "pierce": {"_count": 1, "him": {"_count": 1}}, "appear": {"_count": 1, "on": {"_count": 1}}, "kissed": {"_count": 1, "him": {"_count": 1}}, "poverful": {"_count": 1, "in": {"_count": 1}}, "do": {"_count": 1, "seem": {"_count": 1}}, "pretended": {"_count": 2, "anything": {"_count": 1}, "I": {"_count": 1}}, "once": {"_count": 1, "told": {"_count": 1}}, "bothered": {"_count": 1, "to": {"_count": 1}}, "confided": {"_count": 1, "in": {"_count": 1}}, "obligatory": {"_count": 1, "before": {"_count": 1}}, "encountered": {"_count": 3, "or": {"_count": 2}, "before": {"_count": 1}}, "volunteered": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 3, "same": {"_count": 2}, "true": {"_count": 1}}, "walk": {"_count": 1, "shed": {"_count": 1}}, "eat": {"_count": 1, "": {"_count": 1}}, "assumed": {"_count": 1, "he": {"_count": 1}}, "visit": {"_count": 1, "them": {"_count": 1}}, "took": {"_count": 1, "Ancient": {"_count": 1}}, "until": {"_count": 1, "this": {"_count": 1}}, "extended": {"_count": 1, "his": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "prosper": {"_count": 1, "": {"_count": 1}}, "It": {"_count": 1, "doesnt": {"_count": 1}}, "thank": {"_count": 2, "you": {"_count": 2}}, "returned": {"_count": 1, "er": {"_count": 1}}, "claim": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "right": {"_count": 1, "again": {"_count": 1}}, "free": {"_count": 1, "said": {"_count": 1}}, "rumbled": {"_count": 1, "how": {"_count": 1}}, "fully": {"_count": 1, "appreciated": {"_count": 1}}, "Stunned": {"_count": 1, "anyone": {"_count": 1}}, "goes": {"_count": 1, "amiss": {"_count": 1}}, "admitted": {"_count": 1, "that": {"_count": 1}}, "discovered": {"_count": 1, "He": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "whispered": {"_count": 1, "Malfoy": {"_count": 1}}, "reveal": {"_count": 1, "the": {"_count": 1}}, "experienced": {"_count": 1, "": {"_count": 1}}, "understood": {"_count": 1, "": {"_count": 1}}, "appreciated": {"_count": 1, "what": {"_count": 1}}, "questioned": {"_count": 1, "his": {"_count": 1}}, "grasped": {"_count": 1, "": {"_count": 1}}, "discussed": {"_count": 1, "the": {"_count": 1}}, "touch": {"_count": 1, "our": {"_count": 1}}, "defeated": {"_count": 1, "Dumbledore": {"_count": 1}}, "beat": {"_count": 1, "Dumbledorel": {"_count": 1}}, "realizing": {"_count": 1, "exactly": {"_count": 1}}}, "even": {"_count": 892, "seen": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "CVs": {"_count": 1}}, "at": {"_count": 2, "nighttime": {"_count": 1}, "a": {"_count": 1}}, "sure": {"_count": 4, "his": {"_count": 1}, "why": {"_count": 1}, "whether": {"_count": 1}, "that": {"_count": 1}}, "if": {"_count": 84, "the": {"_count": 4}, "YouKnowWho": {"_count": 1}, "yeh": {"_count": 2}, "it": {"_count": 5}, "its": {"_count": 2}, "they": {"_count": 5}, "you": {"_count": 9}, "I": {"_count": 3}, "he": {"_count": 24}, "er": {"_count": 1}, "his": {"_count": 1}, "youre": {"_count": 2}, "theyre": {"_count": 1}, "no": {"_count": 2}, "shes": {"_count": 2}, "their": {"_count": 1}, "Snape": {"_count": 2}, "by": {"_count": 1}, "that": {"_count": 1}, "Umbridge": {"_count": 2}, "we": {"_count": 5}, "a": {"_count": 1}, "somebody": {"_count": 1}, "ones": {"_count": 1}, "Dumbledore": {"_count": 1}, "Bathildas": {"_count": 1}, "Bathilda": {"_count": 1}, "she": {"_count": 1}, "youve": {"_count": 1}}, "beadyeyed": {"_count": 1, "Mrs": {"_count": 1}}, "the": {"_count": 22, "Muggles": {"_count": 1}, "ceiling": {"_count": 1}, "faintest": {"_count": 1}, "dungeons": {"_count": 1}, "cat": {"_count": 1}, "hippogriff": {"_count": 1}, "mountains": {"_count": 1}, "leaves": {"_count": 1}, "one": {"_count": 1}, "best": {"_count": 1}, "ones": {"_count": 1}, "barman": {"_count": 1}, "Weasleys": {"_count": 1}, "stuffed": {"_count": 1}, "glow": {"_count": 1}, "users": {"_count": 1}, "Hogs": {"_count": 1}, "Half": {"_count": 1}, "slightest": {"_count": 1}, "most": {"_count": 1}, "ghosts": {"_count": 1}, "jeers": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "remember": {"_count": 2, "": {"_count": 1}, "what": {"_count": 1}}, "smaller": {"_count": 3, "and": {"_count": 1}, "than": {"_count": 1}, "voice": {"_count": 1}}, "have": {"_count": 9, "a": {"_count": 2}, "time": {"_count": 1}, "spotted": {"_count": 1}, "liked": {"_count": 1}, "known": {"_count": 2}, "been": {"_count": 1}, "had": {"_count": 1}}, "though": {"_count": 61, "he": {"_count": 17}, "everything": {"_count": 1}, "Harry": {"_count": 3}, "it": {"_count": 5}, "the": {"_count": 10}, "Ron": {"_count": 1}, "his": {"_count": 3}, "she": {"_count": 1}, "there": {"_count": 3}, "they": {"_count": 3}, "loads": {"_count": 1}, "a": {"_count": 1}, "Dumbledore": {"_count": 3}, "twothirds": {"_count": 1}, "Kreacher": {"_count": 1}, "none": {"_count": 1}, "hed": {"_count": 1}, "hes": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "Griphook": {"_count": 1}, "Petunia": {"_count": 1}}, "worth": {"_count": 1, "being": {"_count": 1}}, "more": {"_count": 58, "than": {"_count": 1}, "famous": {"_count": 1}, "unpleasant": {"_count": 1}, "trouble": {"_count": 1}, "strange": {"_count": 1}, "of": {"_count": 1}, "clueless": {"_count": 1}, "work": {"_count": 1}, "loudly": {"_count": 4}, "darkly": {"_count": 1}, "heartily": {"_count": 1}, "quietly": {"_count": 2}, "furious": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}, "disconcerting": {"_count": 1}, "space": {"_count": 1}, "frightened": {"_count": 2}, "unnaturally": {"_count": 1}, "certainty": {"_count": 1}, "noise": {"_count": 1}, "widely": {"_count": 1}, "ambitious": {"_count": 1}, "by": {"_count": 1}, "lopsided": {"_count": 1}, "tightly": {"_count": 1}, "formidable": {"_count": 1}, "terrified": {"_count": 1}, "longingly": {"_count": 1}, "pleased": {"_count": 2}, "said": {"_count": 1}, "attention": {"_count": 1}, "pronounced": {"_count": 1}, "tears": {"_count": 1}, "interested": {"_count": 1}, "exams": {"_count": 1}, "surprised": {"_count": 1}, "unusually": {"_count": 1}, "brightly": {"_count": 1}, "dangerous": {"_count": 1}, "deeply": {"_count": 1}, "Tom": {"_count": 1}, "alarmed": {"_count": 1}, "dishonorable": {"_count": 1}, "danger": {"_count": 1}, "cheered": {"_count": 1}, "cluttered": {"_count": 1}, "scared": {"_count": 1}, "savage": {"_count": 1}, "Hufflepuffs": {"_count": 1}, "people": {"_count": 1}}, "a": {"_count": 14, "cartoon": {"_count": 1}, "ghost": {"_count": 1}, "troll": {"_count": 1}, "little": {"_count": 1}, "scribble": {"_count": 1}, "sock": {"_count": 1}, "cat": {"_count": 1}, "year": {"_count": 2}, "relief": {"_count": 1}, "month": {"_count": 1}, "grunt": {"_count": 1}, "possibility": {"_count": 1}, "spell": {"_count": 1}}, "got": {"_count": 9, "rude": {"_count": 1}, "friends": {"_count": 1}, "started": {"_count": 1}, "the": {"_count": 1}, "MegaMutilation": {"_count": 1}, "his": {"_count": 1}, "homework": {"_count": 1}, "teeth": {"_count": 1}, "onto": {"_count": 1}}, "forced": {"_count": 1, "through": {"_count": 1}}, "know": {"_count": 13, "abou": {"_count": 2}, "what": {"_count": 4}, "": {"_count": 1}, "whats": {"_count": 1}, "his": {"_count": 1}, "who": {"_count": 1}, "why": {"_count": 1}, "she": {"_count": 1}, "whether": {"_count": 1}}, "lower": {"_count": 3, "an": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "after": {"_count": 1}}, "realizing": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 7, "Hagrid": {"_count": 1}, "a": {"_count": 4}, "Hagrids": {"_count": 1}, "moments": {"_count": 1}}, "deeper": {"_count": 4, "passing": {"_count": 1}, "now": {"_count": 1}, "in": {"_count": 1}, "dip": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "heard": {"_count": 4, "of": {"_count": 3}, "her": {"_count": 1}}, "be": {"_count": 12, "allowed": {"_count": 1}, "spoiled": {"_count": 1}, "here": {"_count": 1}, "able": {"_count": 1}, "underground": {"_count": 1}, "pretending": {"_count": 1}, "painless": {"_count": 2}, "at": {"_count": 1}, "destined": {"_count": 1}, "that": {"_count": 1}, "unique": {"_count": 1}}, "notice": {"_count": 3, "how": {"_count": 1}, "Malfoy": {"_count": 1}, "as": {"_count": 1}}, "nastier": {"_count": 1, "smile": {"_count": 1}}, "tell": {"_count": 4, "him": {"_count": 2}, "you": {"_count": 1}, "us": {"_count": 1}}, "brave": {"_count": 2, "enough": {"_count": 1}, "Azkaban": {"_count": 1}}, "get": {"_count": 3, "there": {"_count": 1}, "detention": {"_count": 1}, "time": {"_count": 1}}, "when": {"_count": 9, "hed": {"_count": 1}, "Hermione": {"_count": 1}, "he": {"_count": 4}, "I": {"_count": 1}, "her": {"_count": 1}, "they": {"_count": 1}}, "imagined": {"_count": 1, "such": {"_count": 1}}, "taller": {"_count": 2, "than": {"_count": 2}}, "to": {"_count": 13, "be": {"_count": 1}, "look": {"_count": 1}, "himself": {"_count": 2}, "have": {"_count": 2}, "suggest": {"_count": 1}, "attend": {"_count": 1}, "Ron": {"_count": 1}, "stroll": {"_count": 1}, "tell": {"_count": 1}, "confirm": {"_count": 1}, "save": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "people": {"_count": 2, "like": {"_count": 1}, "who": {"_count": 1}}, "stopper": {"_count": 1, "death": {"_count": 1}}, "with": {"_count": 8, "both": {"_count": 1}, "the": {"_count": 3}, "our": {"_count": 1}, "his": {"_count": 3}}, "higher": {"_count": 5, "and": {"_count": 1}, "voice": {"_count": 1}, "so": {"_count": 1}, "Draco": {"_count": 1}, "pitch": {"_count": 1}}, "looking": {"_count": 2, "at": {"_count": 1}, "back": {"_count": 1}}, "lasted": {"_count": 1, "two": {"_count": 1}}, "scratch": {"_count": 1, "himself": {"_count": 1}}, "reached": {"_count": 2, "the": {"_count": 2}}, "touched": {"_count": 2, "one": {"_count": 1}, "it": {"_count": 1}}, "seem": {"_count": 2, "to": {"_count": 2}}, "stop": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 3, "got": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}, "less": {"_count": 8, "time": {"_count": 1}, "when": {"_count": 1}, "focused": {"_count": 1}, "eager": {"_count": 1}, "welcome": {"_count": 1}, "said": {"_count": 1}, "than": {"_count": 1}, "did": {"_count": 1}}, "wondered": {"_count": 3, "whether": {"_count": 2}, "fleetingly": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 2}, "step": {"_count": 1}}, "Quidditch": {"_count": 1, "had": {"_count": 1}}, "noticed": {"_count": 1, "him": {"_count": 1}}, "by": {"_count": 4, "centaurs": {"_count": 1}, "the": {"_count": 2}, "Hogwarts": {"_count": 1}}, "around": {"_count": 1, "Hogwarts": {"_count": 1}}, "now": {"_count": 11, "be": {"_count": 3}, "weeks": {"_count": 1}, "settling": {"_count": 1}, "talking": {"_count": 1}, "that": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 1}, "where": {"_count": 1}}, "larger": {"_count": 3, "than": {"_count": 2}, "toad": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "manage": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "me": {"_count": 1, "sometimes": {"_count": 1}}, "Ravenclaw": {"_count": 1, "and": {"_count": 1}}, "padlocked": {"_count": 1, "Harrys": {"_count": 1}}, "remembered": {"_count": 1, "that": {"_count": 1}}, "than": {"_count": 7, "playing": {"_count": 1}, "that": {"_count": 1}, "Wood": {"_count": 1}, "Dobbys": {"_count": 1}, "these": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "taunting": {"_count": 1, "Dudley": {"_count": 1}}, "top": {"_count": 1, "of": {"_count": 1}}, "write": {"_count": 1, "to": {"_count": 1}}, "hungrier": {"_count": 1, "than": {"_count": 1}}, "that": {"_count": 5, "good": {"_count": 1}, "": {"_count": 1}, "Dumbledores": {"_count": 1}, "afternoon": {"_count": 1}, "was": {"_count": 1}}, "worse": {"_count": 10, "when": {"_count": 1}, "I": {"_count": 1}, "Harrys": {"_count": 1}, "from": {"_count": 1}, "for": {"_count": 1}, "job": {"_count": 1}, "": {"_count": 1}, "than": {"_count": 2}, "to": {"_count": 1}}, "go": {"_count": 2, "into": {"_count": 1}, "wherever": {"_count": 1}}, "pay": {"_count": 1, "you": {"_count": 1}}, "underage": {"_count": 1, "wizards": {"_count": 1}}, "Lockhart": {"_count": 1, "couldnt": {"_count": 1}}, "started": {"_count": 8, "said": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 2}, "pudding": {"_count": 1}, "work": {"_count": 1}, "school": {"_count": 1}}, "signed": {"_count": 1, "a": {"_count": 1}}, "someone": {"_count": 2, "invisible": {"_count": 1}, "dreading": {"_count": 1}}, "over": {"_count": 3, "their": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 11, "the": {"_count": 4}, "daylight": {"_count": 1}, "his": {"_count": 2}, "newsprint": {"_count": 1}, "those": {"_count": 1}, "this": {"_count": 1}, "Lupins": {"_count": 1}}, "ludicrous": {"_count": 1, "tale": {"_count": 1}}, "look": {"_count": 3, "at": {"_count": 1}, "something": {"_count": 1}, "as": {"_count": 1}}, "aware": {"_count": 1, "of": {"_count": 1}}, "grateful": {"_count": 1, "but": {"_count": 1}}, "touch": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "as": {"_count": 21, "Harry": {"_count": 3}, "he": {"_count": 14}, "they": {"_count": 2}, "Riddle": {"_count": 1}, "his": {"_count": 1}}, "care": {"_count": 2, "that": {"_count": 1}, "much": {"_count": 1}}, "Auntie": {"_count": 1, "Mabels": {"_count": 1}}, "bigger": {"_count": 1, "and": {"_count": 1}}, "unhappier": {"_count": 1, "about": {"_count": 1}}, "so": {"_count": 5, "it": {"_count": 2}, "": {"_count": 1}, "I": {"_count": 1}, "still": {"_count": 1}}, "louder": {"_count": 7, "": {"_count": 2}, "in": {"_count": 1}, "at": {"_count": 1}, "shriek": {"_count": 1}, "WEASLEY": {"_count": 1}, "to": {"_count": 1}}, "found": {"_count": 1, "me": {"_count": 1}}, "told": {"_count": 2, "Hagrid": {"_count": 1}, "us": {"_count": 1}}, "other": {"_count": 1, "monsters": {"_count": 1}}, "was": {"_count": 1, "surprised": {"_count": 1}}, "before": {"_count": 4, "I": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}}, "paler": {"_count": 4, "than": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "looked": {"_count": 3, "up": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}}, "removing": {"_count": 1, "his": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloaks": {"_count": 1}}, "himself": {"_count": 1, "by": {"_count": 1}}, "watching": {"_count": 1, "when": {"_count": 1}}, "redder": {"_count": 1, "": {"_count": 1}}, "met": {"_count": 1, "one": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 3}}, "die": {"_count": 1, "today": {"_count": 1}}, "angrier": {"_count": 3, "and": {"_count": 1}, "than": {"_count": 1}, "that": {"_count": 1}}, "Hermione": {"_count": 5, "and": {"_count": 1}, "wasnt": {"_count": 1}, "had": {"_count": 1}, "gave": {"_count": 1}, "would": {"_count": 1}}, "taught": {"_count": 1, "you": {"_count": 1}}, "recognize": {"_count": 1, "a": {"_count": 1}}, "break": {"_count": 1, "his": {"_count": 1}}, "Wood": {"_count": 2, "admits": {"_count": 1}, "wanted": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "who": {"_count": 1}}, "Scabbers": {"_count": 1, "poked": {"_count": 1}}, "opened": {"_count": 3, "his": {"_count": 2}, "her": {"_count": 1}}, "an": {"_count": 1, "indistinct": {"_count": 1}}, "my": {"_count": 2, "fine": {"_count": 1}, "most": {"_count": 1}}, "longer": {"_count": 3, "Muggle": {"_count": 1}, "so": {"_count": 1}, "than": {"_count": 1}}, "come": {"_count": 2, "to": {"_count": 1}, "down": {"_count": 1}}, "been": {"_count": 2, "inside": {"_count": 1}, "awarded": {"_count": 1}}, "Freds": {"_count": 1, "and": {"_count": 1}}, "forgot": {"_count": 3, "to": {"_count": 1}, "that": {"_count": 2}}, "bother": {"_count": 1, "to": {"_count": 1}}, "catch": {"_count": 1, "their": {"_count": 1}}, "I": {"_count": 4, "dont": {"_count": 1}, "dreamed": {"_count": 1}, "do": {"_count": 1}, "can": {"_count": 1}}, "attack": {"_count": 1, "yourself": {"_count": 1}}, "see": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 4, "an": {"_count": 1}, "squabbles": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 3}}, "knows": {"_count": 1, "where": {"_count": 1}}, "slightly": {"_count": 2, "out": {"_count": 1}, "alarming": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 2}}, "protest": {"_count": 1, "at": {"_count": 1}}, "including": {"_count": 1, "old": {"_count": 1}}, "run": {"_count": 1, "when": {"_count": 1}}, "human": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "getting": {"_count": 1, "his": {"_count": 1}}, "rung": {"_count": 1, "": {"_count": 1}}, "perform": {"_count": 1, "a": {"_count": 1}}, "Potions": {"_count": 1, "was": {"_count": 1}}, "Hagrid": {"_count": 1, "wont": {"_count": 1}}, "teeth": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 2, "Sprout": {"_count": 1}, "McGonagall": {"_count": 1}}, "his": {"_count": 4, "last": {"_count": 1}, "fear": {"_count": 1}, "devotion": {"_count": 1}, "parents": {"_count": 1}}, "further": {"_count": 5, "than": {"_count": 1}, "": {"_count": 1}, "behind": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}}, "goodlooking": {"_count": 1, "": {"_count": 1}}, "footing": {"_count": 1, "arent": {"_count": 1}}, "surlier": {"_count": 1, "than": {"_count": 1}}, "blink": {"_count": 1, "just": {"_count": 1}}, "from": {"_count": 4, "this": {"_count": 1}, "above": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "think": {"_count": 2, "of": {"_count": 1}, "about": {"_count": 1}}, "joined": {"_count": 1, "in": {"_count": 1}}, "harder": {"_count": 1, "her": {"_count": 1}}, "stopped": {"_count": 1, "to": {"_count": 1}}, "bloody": {"_count": 1, "and": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 4, "didnt": {"_count": 2}, "knows": {"_count": 1}, "despised": {"_count": 1}}, "ask": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "threw": {"_count": 1, "the": {"_count": 1}}, "pure": {"_count": 1, "human": {"_count": 1}}, "went": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "pretend": {"_count": 1, "they": {"_count": 1}}, "asked": {"_count": 1, "the": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "saw": {"_count": 1, "a": {"_count": 1}}, "accused": {"_count": 1, "of": {"_count": 1}}, "closer": {"_count": 2, "tilting": {"_count": 1}, "excitement": {"_count": 1}}, "cheerful": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 2, "fists": {"_count": 1}, "sheltered": {"_count": 1}}, "Moodys": {"_count": 1, "magical": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "born": {"_count": 1, "Potter": {"_count": 1}}, "move": {"_count": 1, "he": {"_count": 1}}, "then": {"_count": 6, "Potter": {"_count": 1}, "you": {"_count": 1}, "might": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}}, "Dumbledore": {"_count": 3, "": {"_count": 1}, "would": {"_count": 1}, "cannot": {"_count": 1}}, "glad": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "ter": {"_count": 1, "you": {"_count": 1}}, "mention": {"_count": 2, "Cedric": {"_count": 1}, "how": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "summon": {"_count": 1, "the": {"_count": 1}}, "gets": {"_count": 1, "the": {"_count": 1}}, "felt": {"_count": 2, "anything": {"_count": 1}, "pity": {"_count": 1}}, "faster": {"_count": 2, "around": {"_count": 1}, "": {"_count": 1}}, "reported": {"_count": 2, "that": {"_count": 2}}, "tense": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "age": {"_count": 1}, "deaths": {"_count": 1}}, "danker": {"_count": 1, "and": {"_count": 1}}, "used": {"_count": 1, "the": {"_count": 1}}, "Bagman": {"_count": 1, "wouldnt": {"_count": 1}}, "Kreacher": {"_count": 1, "looked": {"_count": 1}}, "Sirius": {"_count": 1, "seemed": {"_count": 1}}, "fall": {"_count": 1, "off": {"_count": 1}}, "complain": {"_count": 1, "that": {"_count": 1}}, "wider": {"_count": 2, "": {"_count": 2}}, "able": {"_count": 1, "to": {"_count": 1}}, "put": {"_count": 2, "on": {"_count": 1}, "down": {"_count": 1}}, "try": {"_count": 1, "to": {"_count": 1}}, "murkier": {"_count": 1, "gray": {"_count": 1}}, "check": {"_count": 1, "his": {"_count": 1}}, "mad": {"_count": 1, "he": {"_count": 1}}, "those": {"_count": 2, "who": {"_count": 2}}, "eagerly": {"_count": 1, "at": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "Zacharias": {"_count": 3, "Smith": {"_count": 3}}, "admired": {"_count": 1, "him": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 2, "it": {"_count": 1}, "rude": {"_count": 1}}, "do": {"_count": 1, "anything": {"_count": 1}}, "there": {"_count": 2, "when": {"_count": 1}, "Hermione": {"_count": 1}}, "Patronuses": {"_count": 1, "": {"_count": 1}}, "nearer": {"_count": 2, "him": {"_count": 1}, "Dumbledore": {"_count": 1}}, "comic": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 1, "his": {"_count": 1}}, "you": {"_count": 3, "Arthur": {"_count": 1}, "could": {"_count": 1}, "Severus": {"_count": 1}}, "begun": {"_count": 2, "to": {"_count": 2}}, "tried": {"_count": 1, "to": {"_count": 1}}, "unglued": {"_count": 1, "herself": {"_count": 1}}, "want": {"_count": 2, "to": {"_count": 2}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "hanging": {"_count": 1, "around": {"_count": 1}}, "realized": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "frightened": {"_count": 1, "": {"_count": 1}}, "tomorrows": {"_count": 1, "weather": {"_count": 1}}, "farther": {"_count": 2, "backward": {"_count": 1}, "so": {"_count": 1}}, "centaurs": {"_count": 2, "sometimes": {"_count": 1}, "knowledge": {"_count": 1}}, "better": {"_count": 2, "to": {"_count": 1}, "than": {"_count": 1}}, "messier": {"_count": 1, "than": {"_count": 1}}, "after": {"_count": 5, "youve": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "theyd": {"_count": 1}, "Harry": {"_count": 1}}, "recognized": {"_count": 1, "the": {"_count": 1}}, "happen": {"_count": 1, "Oh": {"_count": 1}}, "Luna": {"_count": 1, "looked": {"_count": 1}}, "whether": {"_count": 1, "she": {"_count": 1}}, "hoping": {"_count": 1, "that": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "greater": {"_count": 3, "urgency": {"_count": 1}, "danger": {"_count": 1}, "relief": {"_count": 1}}, "needing": {"_count": 1, "to": {"_count": 1}}, "grown": {"_count": 1, "wizards": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "wilder": {"_count": 1, "and": {"_count": 1}}, "once": {"_count": 1, "or": {"_count": 1}}, "heat": {"_count": 1, "on": {"_count": 1}}, "suspect": {"_count": 1, "that": {"_count": 1}}, "ill": {"_count": 1, "and": {"_count": 1}}, "Slughorn": {"_count": 1, "makes": {"_count": 1}}, "exceeded": {"_count": 1, "expectations": {"_count": 1}}, "make": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "pressed": {"_count": 1, "their": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "fully": {"_count": 1, "qualified": {"_count": 1}}, "endure": {"_count": 1, "Filchs": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "fiercer": {"_count": 1, "and": {"_count": 1}}, "\u2018the": {"_count": 1, "Chosen": {"_count": 1}}, "here": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "hoped": {"_count": 1, "for": {"_count": 1}}, "while": {"_count": 2, "he": {"_count": 1}, "countless": {"_count": 1}}, "moving": {"_count": 1, "": {"_count": 1}}, "quite": {"_count": 1, "fun": {"_count": 1}}, "held": {"_count": 1, "it": {"_count": 1}}, "stay": {"_count": 1, "alive": {"_count": 1}}, "understand": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "Severus": {"_count": 1, "And": {"_count": 1}}, "liking": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "expect": {"_count": 1, "him": {"_count": 1}}, "noticing": {"_count": 1, "Lavender": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "consider": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "escorted": {"_count": 1, "them": {"_count": 1}}, "consented": {"_count": 1, "to": {"_count": 1}}, "sound": {"_count": 1, "angry": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "Malfoy": {"_count": 1}}, "drove": {"_count": 1, "Ginny": {"_count": 1}}, "find": {"_count": 1, "it": {"_count": 1}}, "considered": {"_count": 1, "that": {"_count": 1}}, "such": {"_count": 1, "orders": {"_count": 1}}, "disappointed": {"_count": 1, "as": {"_count": 1}}, "Borgin": {"_count": 1, "didnt": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "Filch": {"_count": 1, "Mrs": {"_count": 1}}, "saying": {"_count": 1, "the": {"_count": 1}}, "say": {"_count": 1, "Hogwarts": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "compared": {"_count": 1, "with": {"_count": 1}}, "sinister": {"_count": 2, "": {"_count": 2}}, "within": {"_count": 1, "this": {"_count": 1}}, "Inferi": {"_count": 1, "which": {"_count": 1}}, "drive": {"_count": 1, "he": {"_count": 1}}, "Mundungus": {"_count": 1, "whom": {"_count": 1}}, "above": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "prettier": {"_count": 1, "than": {"_count": 1}}, "thought": {"_count": 2, "of": {"_count": 1}, "I": {"_count": 1}}, "defend": {"_count": 1, "himself": {"_count": 1}}, "letters": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 3}}, "drifted": {"_count": 1, "out": {"_count": 1}}, "handled": {"_count": 1, "the": {"_count": 1}}, "brutal": {"_count": 1, "treatment": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "bothering": {"_count": 1, "to": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "graver": {"_count": 1, "doubt": {"_count": 1}}, "murmuring": {"_count": 1, "the": {"_count": 1}}, "troubling": {"_count": 1, "to": {"_count": 1}}, "years": {"_count": 1, "but": {"_count": 1}}, "hopeful": {"_count": 1, "as": {"_count": 1}}, "Dirk": {"_count": 1, "gave": {"_count": 1}}, "feel": {"_count": 1, "hungry": {"_count": 1}}, "open": {"_count": 1, "A": {"_count": 1}}, "approach": {"_count": 1, "very": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "Durmstrang": {"_count": 1, "felt": {"_count": 1}}, "carved": {"_count": 1, "over": {"_count": 1}}, "Rita": {"_count": 1, "cant": {"_count": 1}}, "spoke": {"_count": 1, "to": {"_count": 1}}, "lived": {"_count": 1, "with": {"_count": 1}}, "Parseltongue": {"_count": 1, "but": {"_count": 1}}, "fear": {"_count": 1, "": {"_count": 1}}, "Bellatrix": {"_count": 1, "froze": {"_count": 1}}, "explain": {"_count": 1, "satisfactorily": {"_count": 1}}, "tighter": {"_count": 1, "as": {"_count": 1}}, "sprouted": {"_count": 1, "a": {"_count": 1}}, "fighting": {"_count": 1, "": {"_count": 1}}, "halfway": {"_count": 1, "to": {"_count": 1}}, "adored": {"_count": 1, "that": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "deny": {"_count": 2, "it": {"_count": 1}, "thats": {"_count": 1}}, "laughter": {"_count": 1, "": {"_count": 1}}, "embraced": {"_count": 1, "the": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "laid": {"_count": 1, "a": {"_count": 1}}}, "seen": {"_count": 605, "him": {"_count": 46, "": {"_count": 9}, "Ginny": {"_count": 1}, "make": {"_count": 1}, "scrubbing": {"_count": 1}, "fly": {"_count": 1}, "like": {"_count": 1}, "out": {"_count": 1}, "transform": {"_count": 1}, "do": {"_count": 1}, "wear": {"_count": 1}, "you": {"_count": 1}, "since": {"_count": 3}, "but": {"_count": 1}, "kissing": {"_count": 1}, "in": {"_count": 2}, "as": {"_count": 1}, "twice": {"_count": 1}, "looking": {"_count": 1}, "arrive": {"_count": 1}, "go": {"_count": 1}, "take": {"_count": 1}, "this": {"_count": 1}, "during": {"_count": 1}, "Voldemorts": {"_count": 1}, "give": {"_count": 1}, "croon": {"_count": 1}, "swill": {"_count": 1}, "they": {"_count": 1}, "going": {"_count": 1}, "plainly": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "somewhere": {"_count": 1}, "before": {"_count": 1}, "then": {"_count": 1}}, "then": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 3, "owl": {"_count": 1}, "adult": {"_count": 1}, "infestation": {"_count": 1}}, "the": {"_count": 41, "boy": {"_count": 2}, "snake": {"_count": 2}, "fire": {"_count": 1}, "dragon": {"_count": 1}, "basilisk": {"_count": 1}, "real": {"_count": 2}, "worst": {"_count": 1}, "Snitch": {"_count": 6}, "Grim": {"_count": 1}, "error": {"_count": 2}, "pupils": {"_count": 1}, "sort": {"_count": 1}, "flash": {"_count": 1}, "curses": {"_count": 1}, "dragons": {"_count": 2}, "place": {"_count": 2}, "Slytherin": {"_count": 1}, "page": {"_count": 1}, "door": {"_count": 2}, "twins": {"_count": 1}, "vision": {"_count": 2}, "momentary": {"_count": 1}, "Room": {"_count": 1}, "stone": {"_count": 1}, "other": {"_count": 1}, "bank": {"_count": 1}, "diadem": {"_count": 1}, "man": {"_count": 1}}, "in": {"_count": 35, "daylight": {"_count": 1}, "his": {"_count": 10}, "the": {"_count": 12}, "many": {"_count": 1}, "Holidays": {"_count": 1}, "Magnolia": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 3}, "years": {"_count": 1}, "public": {"_count": 1}, "picture": {"_count": 1}, "Moodys": {"_count": 1}, "aspersions": {"_count": 1}}, "on": {"_count": 8, "Privet": {"_count": 1}, "television": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "their": {"_count": 2}, "Gellert": {"_count": 1}}, "a": {"_count": 22, "cat": {"_count": 1}, "toad": {"_count": 2}, "game": {"_count": 1}, "degnoming": {"_count": 1}, "student": {"_count": 1}, "great": {"_count": 1}, "Grim": {"_count": 1}, "room": {"_count": 1}, "dementor": {"_count": 1}, "huge": {"_count": 1}, "badge": {"_count": 1}, "worse": {"_count": 1}, "real": {"_count": 1}, "more": {"_count": 1}, "whole": {"_count": 1}, "friend": {"_count": 1}, "long": {"_count": 1}, "wizard": {"_count": 1}, "mass": {"_count": 1}, "Death": {"_count": 1}, "newspaper": {"_count": 1}}, "any": {"_count": 3, "reason": {"_count": 1}, "such": {"_count": 1}, "before": {"_count": 1}}, "that": {"_count": 14, "fateful": {"_count": 1}, "poor": {"_count": 1}, "Id": {"_count": 1}, "night": {"_count": 1}, "yet": {"_count": 1}, "before": {"_count": 2}, "her": {"_count": 1}, "kind": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 2}, "memory": {"_count": 1}, "George": {"_count": 1}}, "you": {"_count": 12, "before": {"_count": 1}, "could": {"_count": 1}, "She": {"_count": 1}, "die": {"_count": 1}, "": {"_count": 1}, "play": {"_count": 1}, "in": {"_count": 2}, "and": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}, "He": {"_count": 1}}, "before": {"_count": 15, "windows": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 9}, "though": {"_count": 1}, "who": {"_count": 1}, "containing": {"_count": 1}, "It": {"_count": 1}}, "it": {"_count": 37, "said": {"_count": 1}, "too": {"_count": 1}, "walked": {"_count": 1}, "used": {"_count": 1}, "": {"_count": 6}, "so": {"_count": 1}, "played": {"_count": 1}, "look": {"_count": 1}, "all": {"_count": 1}, "before": {"_count": 6}, "Cedric": {"_count": 1}, "this": {"_count": 1}, "at": {"_count": 2}, "sleek": {"_count": 1}, "in": {"_count": 2}, "alive": {"_count": 1}, "she": {"_count": 2}, "happen": {"_count": 1}, "as": {"_count": 1}, "yet": {"_count": 1}, "and": {"_count": 1}, "He": {"_count": 1}, "Potter": {"_count": 1}, "the": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 5, "many": {"_count": 1}, "far": {"_count": 2}, "much": {"_count": 1}, "Harry": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "anything": {"_count": 14, "like": {"_count": 2}, "so": {"_count": 3}, "funny": {"_count": 1}, "odd": {"_count": 1}, "quite": {"_count": 2}, "in": {"_count": 1}, "that": {"_count": 2}, "less": {"_count": 1}, "to": {"_count": 1}}, "all": {"_count": 2, "afternoon": {"_count": 1}, "this": {"_count": 1}}, "her": {"_count": 25, "look": {"_count": 1}, "this": {"_count": 1}, "so": {"_count": 2}, "looking": {"_count": 1}, "for": {"_count": 1}, "new": {"_count": 1}, "in": {"_count": 3}, "said": {"_count": 1}, "": {"_count": 1}, "since": {"_count": 1}, "all": {"_count": 1}, "before": {"_count": 1}, "shes": {"_count": 1}, "at": {"_count": 1}, "beam": {"_count": 1}, "hair": {"_count": 1}, "kissing": {"_count": 1}, "and": {"_count": 1}, "lose": {"_count": 1}, "doing": {"_count": 1}, "as": {"_count": 1}, "Yeah": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 4, "play": {"_count": 1}, "collapse": {"_count": 1}, "before": {"_count": 1}, "Potter": {"_count": 1}}, "": {"_count": 50, ".": {"_count": 40}, "?": {"_count": 8}, "!": {"_count": 2}}, "his": {"_count": 8, "leg": {"_count": 1}, "parents": {"_count": 2}, "father": {"_count": 4}, "pub": {"_count": 1}}, "not": {"_count": 1, "only": {"_count": 1}}, "or": {"_count": 3, "been": {"_count": 1}, "heard": {"_count": 2}}, "Snape": {"_count": 2, "look": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 10, "heard": {"_count": 2}, "deduced": {"_count": 1}, "done": {"_count": 2}, "all": {"_count": 1}, "he": {"_count": 1}, "felt": {"_count": 1}, "for": {"_count": 1}, "picked": {"_count": 1}}, "carrying": {"_count": 1, "an": {"_count": 1}}, "anythin": {"_count": 3, "": {"_count": 1}, "Ronan": {"_count": 1}, "odd": {"_count": 1}}, "what": {"_count": 14, "Harry": {"_count": 1}, "I": {"_count": 2}, "was": {"_count": 2}, "Aunt": {"_count": 1}, "he": {"_count": 3}, "you": {"_count": 1}, "shes": {"_count": 1}, "theyre": {"_count": 1}, "else": {"_count": 1}, "youll": {"_count": 1}}, "me": {"_count": 4, "coming": {"_count": 1}, "before": {"_count": 1}, "crossing": {"_count": 1}, "amongst": {"_count": 1}}, "Quirrell": {"_count": 1, "there": {"_count": 1}}, "spilling": {"_count": 1, "from": {"_count": 1}}, "those": {"_count": 3, "things": {"_count": 1}, "chains": {"_count": 1}, "cool": {"_count": 1}}, "Percy": {"_count": 2, "at": {"_count": 1}, "look": {"_count": 1}}, "he": {"_count": 3, "hissed": {"_count": 1}, "had": {"_count": 1}, "killed": {"_count": 1}}, "Professor": {"_count": 4, "McGonagall": {"_count": 2}, "Dumbledore": {"_count": 1}, "Sprout": {"_count": 1}}, "trying": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 4, "themselves": {"_count": 1}, "thirteen": {"_count": 1}, "a": {"_count": 1}, "weeks": {"_count": 1}}, "halfhidden": {"_count": 1, "behind": {"_count": 1}}, "spiders": {"_count": 1, "act": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Mr": {"_count": 1}}, "Marcus": {"_count": 1, "Flint": {"_count": 1}}, "Ron": {"_count": 5, "or": {"_count": 1}, "": {"_count": 2}, "make": {"_count": 1}, "looked": {"_count": 1}}, "Brazil": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "since": {"_count": 3, "its": {"_count": 1}, "last": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "enough": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "this": {"_count": 8, "man": {"_count": 1}, "Horntail": {"_count": 1}, "place": {"_count": 1}, "coming": {"_count": 1}, "yet": {"_count": 1}, "at": {"_count": 1}, "IF": {"_count": 1}, "": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 5, "be": {"_count": 2}, "it": {"_count": 1}, "that": {"_count": 2}}, "them": {"_count": 11, "out": {"_count": 1}, "": {"_count": 5}, "coming": {"_count": 1}, "together": {"_count": 1}, "at": {"_count": 2}, "properly": {"_count": 1}}, "something": {"_count": 5, "": {"_count": 1}, "in": {"_count": 1}, "Potter": {"_count": 1}, "interesting": {"_count": 2}}, "pictures": {"_count": 1, "of": {"_count": 1}}, "Fudge": {"_count": 1, "once": {"_count": 1}}, "hide": {"_count": 1, "nor": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "eye": {"_count": 1, "to": {"_count": 1}}, "teaching": {"_count": 1, "the": {"_count": 1}}, "yeh": {"_count": 1, "practicin": {"_count": 1}}, "such": {"_count": 3, "tactics": {"_count": 1}, "a": {"_count": 2}}, "my": {"_count": 3, "copy": {"_count": 1}, "son": {"_count": 1}, "grandson": {"_count": 1}}, "slinking": {"_count": 1, "toward": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "hes": {"_count": 1, "tied": {"_count": 1}}, "Wed": {"_count": 1, "only": {"_count": 1}}, "by": {"_count": 3, "ourselves": {"_count": 1}, "the": {"_count": 1}, "anybody": {"_count": 1}}, "how": {"_count": 2, "as": {"_count": 1}, "it": {"_count": 1}}, "himself": {"_count": 1, "Harry": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "pottering": {"_count": 1, "around": {"_count": 1}}, "Mr": {"_count": 3, "or": {"_count": 1}, "Diggory": {"_count": 1}, "Crouch": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 1, "those": {"_count": 1}}, "one": {"_count": 4, "that": {"_count": 1}, "": {"_count": 1}, "person": {"_count": 1}, "before": {"_count": 1}}, "anyone": {"_count": 5, "fly": {"_count": 1}, "from": {"_count": 2}, "": {"_count": 1}, "behave": {"_count": 1}}, "though": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 2}}, "including": {"_count": 1, "several": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Cedric": {"_count": 2, "lately": {"_count": 1}, "dead": {"_count": 1}}, "during": {"_count": 1, "my": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "Parvati": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "in": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "Snapes": {"_count": 1, "face": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "Crouch": {"_count": 1, "lately": {"_count": 1}}, "movement": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 2, "when": {"_count": 1}, "before": {"_count": 1}}, "Dumbledore": {"_count": 4, "more": {"_count": 1}, "wear": {"_count": 1}, "send": {"_count": 1}, "since": {"_count": 1}}, "Krum": {"_count": 1, "do": {"_count": 1}}, "proofs": {"_count": 1, "of": {"_count": 1}}, "only": {"_count": 1, "in": {"_count": 1}}, "Sirius": {"_count": 3, "and": {"_count": 1}, "lying": {"_count": 1}, "seemed": {"_count": 1}}, "Dad": {"_count": 2, "row": {"_count": 1}, "as": {"_count": 1}}, "Not": {"_count": 1, "if": {"_count": 1}}, "Bellatrix": {"_count": 1, "Lestrange": {"_count": 1}}, "was": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "daylight": {"_count": 1, "for": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 2}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "Siriuss": {"_count": 2, "head": {"_count": 2}}, "crossing": {"_count": 1, "the": {"_count": 1}}, "behavior": {"_count": 1, "like": {"_count": 1}}, "em": {"_count": 1, "big": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "much": {"_count": 1}, "he": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "Kreacher": {"_count": 1, "lately": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "Healer": {"_count": 1, "Smethwyck": {"_count": 1}}, "your": {"_count": 4, "name": {"_count": 1}, "heart": {"_count": 1}, "dreams": {"_count": 1}, "fears": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "proof": {"_count": 1, "that": {"_count": 1}}, "sunlight": {"_count": 1, "for": {"_count": 1}}, "Voldemort": {"_count": 2, "though": {"_count": 1}, "murdering": {"_count": 1}}, "scenes": {"_count": 1, "from": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "Umbridge": {"_count": 2, "looking": {"_count": 1}, "shed": {"_count": 1}}, "Malfoy": {"_count": 2, "look": {"_count": 1}, "close": {"_count": 1}}, "take": {"_count": 1, "an": {"_count": 1}}, "who": {"_count": 1, "can": {"_count": 1}}, "Hagrid": {"_count": 1, "in": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "again": {"_count": 1, "meant": {"_count": 1}}, "looking": {"_count": 1, "out": {"_count": 1}}, "buying": {"_count": 1, "them": {"_count": 1}}, "nor": {"_count": 1, "heard": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "noses": {"_count": 1, "like": {"_count": 1}}, "Hannah": {"_count": 1, "since": {"_count": 1}}, "Ginny": {"_count": 2, "glowering": {"_count": 1}, "at": {"_count": 1}}, "Filch": {"_count": 1, "had": {"_count": 1}}, "popping": {"_count": 1, "in": {"_count": 1}}, "laced": {"_count": 1, "her": {"_count": 1}}, "emerge": {"_count": 1, "from": {"_count": 1}}, "lurking": {"_count": 1, "around": {"_count": 1}}, "Slughorn": {"_count": 1, "enter": {"_count": 1}}, "somebody": {"_count": 1, "knew": {"_count": 1}}, "completely": {"_count": 1, "blank": {"_count": 1}}, "Lupin": {"_count": 1, "lose": {"_count": 1}}, "when": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "Lunas": {"_count": 1}}, "CVs": {"_count": 1, "": {"_count": 1}}, "Dudleys": {"_count": 1, "lips": {"_count": 1}}, "some": {"_count": 1, "extremely": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "Viktor": {"_count": 1, "storming": {"_count": 1}}, "running": {"_count": 1, "from": {"_count": 1}}, "Lovegood": {"_count": 1, "lets": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "Potter": {"_count": 1, "in": {"_count": 1}}, "Dumbledores": {"_count": 1, "eye": {"_count": 1}}, "getting": {"_count": 1, "in": {"_count": 1}}, "Remus": {"_count": 2, "": {"_count": 2}}, "immensely": {"_count": 1, "old": {"_count": 1}}}, "him": {"_count": 6988, "": {"_count": 1753, ".": {"_count": 1503}, "!": {"_count": 109}, "?": {"_count": 141}}, "uneasy": {"_count": 1, "": {"_count": 1}}, "seized": {"_count": 4, "his": {"_count": 2}, "Dudley": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 181, "stern": {"_count": 2}, "cheap": {"_count": 1}, "large": {"_count": 4}, "bit": {"_count": 7}, "coat": {"_count": 1}, "lot": {"_count": 5}, "small": {"_count": 2}, "second": {"_count": 4}, "Gryffindor": {"_count": 1}, "meringue": {"_count": 1}, "decent": {"_count": 1}, "terrible": {"_count": 2}, "real": {"_count": 1}, "tragic": {"_count": 1}, "mop": {"_count": 1}, "demonic": {"_count": 1}, "look": {"_count": 6}, "frecklefaced": {"_count": 1}, "molting": {"_count": 1}, "piercing": {"_count": 1}, "book": {"_count": 1}, "luxury": {"_count": 1}, "question": {"_count": 1}, "warning": {"_count": 4}, "lifetime": {"_count": 3}, "push": {"_count": 1}, "lovely": {"_count": 1}, "note": {"_count": 1}, "glazed": {"_count": 1}, "particularly": {"_count": 2}, "bunch": {"_count": 1}, "thought": {"_count": 1}, "piece": {"_count": 1}, "scarlet": {"_count": 2}, "Chocolate": {"_count": 1}, "bedsheet": {"_count": 1}, "detention": {"_count": 1}, "trick": {"_count": 1}, "few": {"_count": 4}, "cuppa": {"_count": 1}, "murderer": {"_count": 1}, "home": {"_count": 1}, "severe": {"_count": 1}, "cursed": {"_count": 1}, "group": {"_count": 2}, "hundred": {"_count": 1}, "seat": {"_count": 3}, "resounding": {"_count": 1}, "hatred": {"_count": 1}, "while": {"_count": 1}, "space": {"_count": 1}, "treat": {"_count": 1}, "moment": {"_count": 2}, "very": {"_count": 6}, "liar": {"_count": 1}, "butterbeer": {"_count": 1}, "short": {"_count": 2}, "monstrous": {"_count": 1}, "a": {"_count": 1}, "present": {"_count": 1}, "strong": {"_count": 2}, "father": {"_count": 1}, "dull": {"_count": 1}, "letter": {"_count": 2}, "blanket": {"_count": 1}, "swift": {"_count": 3}, "job": {"_count": 2}, "quizzical": {"_count": 1}, "great": {"_count": 4}, "single": {"_count": 2}, "faceless": {"_count": 1}, "true": {"_count": 1}, "clap": {"_count": 1}, "split": {"_count": 1}, "sense": {"_count": 1}, "long": {"_count": 2}, "smile": {"_count": 1}, "burning": {"_count": 1}, "lying": {"_count": 1}, "curt": {"_count": 1}, "disgusted": {"_count": 1}, "choice": {"_count": 1}, "branch": {"_count": 1}, "fleeting": {"_count": 1}, "memory": {"_count": 1}, "clear": {"_count": 1}, "brief": {"_count": 1}, "filthy": {"_count": 2}, "little": {"_count": 3}, "common": {"_count": 1}, "handsome": {"_count": 1}, "confession": {"_count": 1}, "lady": {"_count": 1}, "tale": {"_count": 1}, "difficulty": {"_count": 1}, "birthday": {"_count": 1}, "cold": {"_count": 1}, "reckless": {"_count": 1}, "compliment": {"_count": 1}, "threatening": {"_count": 1}, "prat": {"_count": 1}, "whatdidItellyou": {"_count": 1}, "contemptuous": {"_count": 1}, "clue": {"_count": 1}, "bezoar": {"_count": 1}, "crossbow": {"_count": 1}, "painful": {"_count": 1}, "potion": {"_count": 1}, "stack": {"_count": 1}, "deep": {"_count": 1}, "ring": {"_count": 1}, "soppy": {"_count": 1}, "new": {"_count": 2}, "stoptalkingnow": {"_count": 1}, "kind": {"_count": 1}, "coward": {"_count": 1}, "womans": {"_count": 1}, "dark": {"_count": 1}, "way": {"_count": 1}, "moments": {"_count": 1}, "talisman": {"_count": 1}, "standing": {"_count": 1}, "sandwich": {"_count": 1}}, "over": {"_count": 27, "dinner": {"_count": 2}, "to": {"_count": 6}, "with": {"_count": 2}, "": {"_count": 2}, "the": {"_count": 10}, "as": {"_count": 1}, "there": {"_count": 1}, "onto": {"_count": 2}, "his": {"_count": 1}}, "and": {"_count": 363, "Mrs": {"_count": 2}, "he": {"_count": 27}, "a": {"_count": 5}, "carried": {"_count": 1}, "the": {"_count": 17}, "looked": {"_count": 4}, "they": {"_count": 7}, "by": {"_count": 1}, "saw": {"_count": 9}, "Harry": {"_count": 8}, "began": {"_count": 4}, "it": {"_count": 6}, "in": {"_count": 2}, "turned": {"_count": 2}, "spoke": {"_count": 1}, "waving": {"_count": 1}, "make": {"_count": 1}, "then": {"_count": 10}, "started": {"_count": 2}, "Hermione": {"_count": 4}, "Ive": {"_count": 1}, "pulled": {"_count": 4}, "your": {"_count": 1}, "burst": {"_count": 1}, "Im": {"_count": 1}, "an": {"_count": 1}, "Ron": {"_count": 7}, "Colin": {"_count": 1}, "his": {"_count": 19}, "went": {"_count": 2}, "continued": {"_count": 1}, "for": {"_count": 2}, "at": {"_count": 1}, "Riddle": {"_count": 1}, "plunged": {"_count": 1}, "moments": {"_count": 1}, "hurried": {"_count": 1}, "whether": {"_count": 1}, "I": {"_count": 4}, "above": {"_count": 1}, "Lavender": {"_count": 1}, "yeh": {"_count": 1}, "both": {"_count": 2}, "made": {"_count": 2}, "answered": {"_count": 1}, "Percy": {"_count": 1}, "there": {"_count": 4}, "told": {"_count": 4}, "leading": {"_count": 1}, "was": {"_count": 2}, "Seamus": {"_count": 1}, "before": {"_count": 1}, "two": {"_count": 1}, "held": {"_count": 2}, "stepped": {"_count": 1}, "pushed": {"_count": 2}, "Black": {"_count": 1}, "pointed": {"_count": 2}, "she": {"_count": 3}, "stormed": {"_count": 1}, "about": {"_count": 1}, "Aunt": {"_count": 1}, "holding": {"_count": 1}, "smiling": {"_count": 1}, "showing": {"_count": 1}, "tucking": {"_count": 1}, "as": {"_count": 4}, "Peter": {"_count": 1}, "fell": {"_count": 1}, "Ludo": {"_count": 1}, "lay": {"_count": 1}, "knew": {"_count": 3}, "sniggering": {"_count": 1}, "accepting": {"_count": 1}, "stared": {"_count": 1}, "after": {"_count": 1}, "who": {"_count": 1}, "muttered": {"_count": 2}, "closed": {"_count": 1}, "am": {"_count": 1}, "Albus": {"_count": 1}, "Cedric": {"_count": 1}, "unwittingly": {"_count": 1}, "thought": {"_count": 2}, "no": {"_count": 2}, "Voldemort": {"_count": 5}, "threw": {"_count": 1}, "now": {"_count": 2}, "clambered": {"_count": 1}, "strengthening": {"_count": 1}, "prepared": {"_count": 1}, "whispered": {"_count": 2}, "what": {"_count": 1}, "that": {"_count": 5}, "shaking": {"_count": 1}, "taking": {"_count": 1}, "said": {"_count": 2}, "moved": {"_count": 1}, "departed": {"_count": 2}, "you": {"_count": 4}, "escaped": {"_count": 1}, "poking": {"_count": 1}, "played": {"_count": 1}, "even": {"_count": 4}, "sat": {"_count": 1}, "George": {"_count": 1}, "prescribing": {"_count": 1}, "stumped": {"_count": 1}, "seeing": {"_count": 1}, "remaining": {"_count": 1}, "reached": {"_count": 1}, "Cho": {"_count": 1}, "helping": {"_count": 1}, "of": {"_count": 1}, "rather": {"_count": 1}, "Fudge": {"_count": 1}, "Marietta": {"_count": 1}, "ask": {"_count": 1}, "Ginny": {"_count": 1}, "if": {"_count": 1}, "we": {"_count": 1}, "knocked": {"_count": 1}, "twisted": {"_count": 1}, "Hermiones": {"_count": 1}, "ducked": {"_count": 1}, "gasped": {"_count": 1}, "causing": {"_count": 1}, "hit": {"_count": 1}, "flung": {"_count": 1}, "tell": {"_count": 1}, "Good": {"_count": 1}, "round": {"_count": 1}, "with": {"_count": 4}, "soon": {"_count": 1}, "noticed": {"_count": 1}, "redoubled": {"_count": 1}, "kissed": {"_count": 1}, "her": {"_count": 2}, "whispering": {"_count": 1}, "looking": {"_count": 2}, "Mr": {"_count": 1}, "Malfoy": {"_count": 1}, "swear": {"_count": 1}, "Gryffindor": {"_count": 1}, "increased": {"_count": 1}, "so": {"_count": 1}, "appeared": {"_count": 2}, "thats": {"_count": 1}, "Snape": {"_count": 2}, "Kreacher": {"_count": 1}, "until": {"_count": 1}, "back": {"_count": 1}, "youve": {"_count": 1}, "weighed": {"_count": 1}, "helped": {"_count": 2}, "running": {"_count": 1}, "something": {"_count": 1}, "screeching": {"_count": 1}, "help": {"_count": 1}, "how": {"_count": 1}, "hed": {"_count": 1}, "hugged": {"_count": 1}, "YouKnowWho": {"_count": 1}, "shot": {"_count": 1}, "away": {"_count": 1}, "did": {"_count": 1}, "Mundungus": {"_count": 1}, "perused": {"_count": 1}, "using": {"_count": 1}, "him": {"_count": 1}, "yet": {"_count": 1}, "claim": {"_count": 1}, "handing": {"_count": 1}, "realized": {"_count": 1}, "ripped": {"_count": 1}, "laid": {"_count": 1}, "understanding": {"_count": 1}, "head": {"_count": 1}, "on": {"_count": 2}, "my": {"_count": 1}, "felt": {"_count": 1}, "theyve": {"_count": 1}, "sent": {"_count": 1}, "hell": {"_count": 1}, "obediently": {"_count": 1}, "walked": {"_count": 1}, "together": {"_count": 1}, "onto": {"_count": 1}}, "from": {"_count": 98, "the": {"_count": 19}, "being": {"_count": 2}, "staying": {"_count": 1}, "concentrating": {"_count": 1}, "doing": {"_count": 1}, "killing": {"_count": 1}, "every": {"_count": 3}, "hitting": {"_count": 1}, "beating": {"_count": 1}, "tackling": {"_count": 1}, "under": {"_count": 2}, "behind": {"_count": 3}, "view": {"_count": 1}, "all": {"_count": 2}, "leaping": {"_count": 1}, "there": {"_count": 1}, "going": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}, "Mr": {"_count": 1}, "wanting": {"_count": 1}, "launching": {"_count": 1}, "retorting": {"_count": 1}, "me": {"_count": 3}, "outside": {"_count": 1}, "getting": {"_count": 1}, "stands": {"_count": 1}, "out": {"_count": 1}, "her": {"_count": 2}, "neck": {"_count": 1}, "Voldemort": {"_count": 1}, "Cedrics": {"_count": 1}, "his": {"_count": 5}, "rising": {"_count": 1}, "hooting": {"_count": 1}, "Privet": {"_count": 1}, "across": {"_count": 2}, "Chief": {"_count": 1}, "between": {"_count": 2}, "their": {"_count": 1}, "seizing": {"_count": 1}, "tree": {"_count": 1}, "here": {"_count": 2}, "overhead": {"_count": 1}, "beneath": {"_count": 1}, "expulsion": {"_count": 1}, "inside": {"_count": 1}, "what": {"_count": 1}, "repeating": {"_count": 1}, "Muggle": {"_count": 1}, "harm": {"_count": 1}, "reading": {"_count": 1}, "Snape": {"_count": 1}, "now": {"_count": 1}, "knocking": {"_count": 1}, "an": {"_count": 1}, "reaching": {"_count": 1}, "over": {"_count": 1}, "a": {"_count": 1}, "sight": {"_count": 2}, "posters": {"_count": 1}, "Lord": {"_count": 1}}, "by": {"_count": 25, "his": {"_count": 3}, "an": {"_count": 1}, "inches": {"_count": 2}, "the": {"_count": 5}, "Sirius": {"_count": 1}, "Dumbledore": {"_count": 1}, "You": {"_count": 1}, "running": {"_count": 1}, "Mundungus": {"_count": 1}, "magical": {"_count": 1}, "owl": {"_count": 1}, "night": {"_count": 1}, "Felix": {"_count": 1}, "a": {"_count": 1}, "Grindelwald": {"_count": 1}, "Godric": {"_count": 1}, "Albus": {"_count": 1}, "superior": {"_count": 1}}, "kicking": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 75, "Dumbledore": {"_count": 4}, "Harry": {"_count": 24}, "Ron": {"_count": 13}, "George": {"_count": 4}, "Fred": {"_count": 3}, "Professor": {"_count": 1}, "Hermione": {"_count": 5}, "Snape": {"_count": 2}, "Lupin": {"_count": 5}, "Ginny": {"_count": 1}, "Sirius": {"_count": 1}, "Cedric": {"_count": 1}, "Mrs": {"_count": 1}, "the": {"_count": 2}, "Id": {"_count": 1}, "Hagrid": {"_count": 2}, "Umbridge": {"_count": 1}, "what": {"_count": 1}, "Tonks": {"_count": 1}, "Griphook": {"_count": 1}, "Hold": {"_count": 1}}, "when": {"_count": 34, "hes": {"_count": 2}, "Hagrid": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}, "weve": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 15}, "they": {"_count": 1}, "it": {"_count": 1}, "Lord": {"_count": 1}, "Harry": {"_count": 2}, "we": {"_count": 3}, "anything": {"_count": 1}, "Slughorn": {"_count": 1}, "Lily": {"_count": 1}}, "sir": {"_count": 6, "": {"_count": 5}, "did": {"_count": 1}}, "out": {"_count": 69, "all": {"_count": 1}, "of": {"_count": 46}, "Ron": {"_count": 1}, "": {"_count": 6}, "from": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}, "while": {"_count": 1}, "to": {"_count": 1}, "if": {"_count": 1}, "with": {"_count": 2}, "What": {"_count": 1}, "Moody": {"_count": 1}, "into": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "here": {"_count": 14, "Hagrid": {"_count": 2}, "": {"_count": 4}, "at": {"_count": 1}, "said": {"_count": 1}, "beyond": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 1}, "spreadeagled": {"_count": 1}, "to": {"_count": 1}}, "what": {"_count": 32, "must": {"_count": 1}, "was": {"_count": 3}, "part": {"_count": 1}, "really": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 2}, "Peeves": {"_count": 1}, "had": {"_count": 2}, "to": {"_count": 4}, "she": {"_count": 2}, "has": {"_count": 2}, "a": {"_count": 1}, "might": {"_count": 1}, "Slughorn": {"_count": 1}, "about": {"_count": 1}, "hes": {"_count": 2}, "youre": {"_count": 1}, "Ive": {"_count": 1}, "if": {"_count": 1}, "he": {"_count": 1}, "woman": {"_count": 1}, "": {"_count": 1}}, "on": {"_count": 74, "the": {"_count": 43}, "their": {"_count": 3}, "his": {"_count": 4}, "it": {"_count": 1}, "either": {"_count": 2}, "a": {"_count": 4}, "": {"_count": 3}, "with": {"_count": 1}, "purpose": {"_count": 1}, "any": {"_count": 1}, "April": {"_count": 1}, "top": {"_count": 1}, "Privet": {"_count": 1}, "other": {"_count": 1}, "tiptoes": {"_count": 1}, "that": {"_count": 1}, "each": {"_count": 1}, "up": {"_count": 1}, "this": {"_count": 1}, "both": {"_count": 1}, "which": {"_count": 1}}, "look": {"_count": 12, "at": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 2}, "like": {"_count": 3}, "much": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 2}, "rather": {"_count": 1}}, "to": {"_count": 284, "the": {"_count": 34}, "death": {"_count": 2}, "go": {"_count": 10}, "buy": {"_count": 1}, "die": {"_count": 2}, "do": {"_count": 8}, "hurry": {"_count": 1}, "hang": {"_count": 2}, "his": {"_count": 9}, "remember": {"_count": 1}, "Dumbledore": {"_count": 2}, "be": {"_count": 12}, "say": {"_count": 6}, "try": {"_count": 2}, "within": {"_count": 1}, "me": {"_count": 5}, "eat": {"_count": 1}, "explain": {"_count": 1}, "catch": {"_count": 1}, "where": {"_count": 2}, "Hagrids": {"_count": 1}, "loud": {"_count": 1}, "get": {"_count": 5}, "find": {"_count": 2}, "check": {"_count": 3}, "enter": {"_count": 1}, "squeal": {"_count": 1}, "report": {"_count": 1}, "see": {"_count": 2}, "Azkaban": {"_count": 1}, "come": {"_count": 7}, "talk": {"_count": 1}, "have": {"_count": 4}, "ask": {"_count": 4}, "search": {"_count": 1}, "start": {"_count": 1}, "mount": {"_count": 2}, "snuff": {"_count": 1}, "change": {"_count": 2}, "keep": {"_count": 3}, "wash": {"_count": 1}, "you": {"_count": 2}, "show": {"_count": 1}, "stay": {"_count": 5}, "": {"_count": 1}, "Mr": {"_count": 1}, "sleep": {"_count": 1}, "kill": {"_count": 1}, "tie": {"_count": 1}, "join": {"_count": 3}, "hear": {"_count": 2}, "work": {"_count": 1}, "take": {"_count": 6}, "power": {"_count": 1}, "blast": {"_count": 1}, "pass": {"_count": 2}, "it": {"_count": 2}, "arrange": {"_count": 1}, "punish": {"_count": 1}, "torture": {"_count": 1}, "prove": {"_count": 2}, "send": {"_count": 1}, "capture": {"_count": 1}, "her": {"_count": 1}, "tell": {"_count": 4}, "sit": {"_count": 1}, "let": {"_count": 4}, "stew": {"_count": 1}, "spy": {"_count": 1}, "chase": {"_count": 1}, "know": {"_count": 1}, "give": {"_count": 1}, "make": {"_count": 3}, "examine": {"_count": 1}, "a": {"_count": 2}, "court": {"_count": 1}, "Umbridge": {"_count": 1}, "cut": {"_count": 1}, "learn": {"_count": 2}, "smile": {"_count": 1}, "one": {"_count": 1}, "St": {"_count": 1}, "recount": {"_count": 1}, "turn": {"_count": 2}, "transport": {"_count": 1}, "shake": {"_count": 1}, "Grimmauld": {"_count": 1}, "hold": {"_count": 1}, "compete": {"_count": 1}, "relive": {"_count": 1}, "hurt": {"_count": 1}, "Rons": {"_count": 1}, "howl": {"_count": 1}, "feel": {"_count": 1}, "topple": {"_count": 1}, "fall": {"_count": 1}, "\u2018get": {"_count": 1}, "succeed": {"_count": 1}, "remain": {"_count": 1}, "Hogwarts": {"_count": 1}, "blame": {"_count": 1}, "retell": {"_count": 1}, "vanish": {"_count": 1}, "confide": {"_count": 2}, "erupt": {"_count": 1}, "ride": {"_count": 1}, "postpone": {"_count": 1}, "other": {"_count": 1}, "share": {"_count": 1}, "carve": {"_count": 1}, "use": {"_count": 1}, "leave": {"_count": 1}, "Madam": {"_count": 1}, "extract": {"_count": 1}, "Professor": {"_count": 1}, "yell": {"_count": 1}, "reapply": {"_count": 1}, "stuff": {"_count": 1}, "taste": {"_count": 1}, "rest": {"_count": 1}, "retreat": {"_count": 1}, "mend": {"_count": 1}, "convince": {"_count": 1}, "swear": {"_count": 1}, "swoop": {"_count": 1}, "sniffed": {"_count": 1}, "help": {"_count": 1}, "understand": {"_count": 1}, "escort": {"_count": 1}, "hand": {"_count": 1}, "bump": {"_count": 1}, "free": {"_count": 1}, "or": {"_count": 1}, "poor": {"_count": 1}, "approach": {"_count": 1}, "this": {"_count": 1}, "pick": {"_count": 1}, "resurface": {"_count": 1}, "follow": {"_count": 1}, "us": {"_count": 1}, "simply": {"_count": 1}, "hide": {"_count": 1}, "open": {"_count": 1}, "protest": {"_count": 1}, "raise": {"_count": 1}, "two": {"_count": 1}, "end": {"_count": 1}, "speak": {"_count": 1}, "live": {"_count": 1}}, "in": {"_count": 173, "the": {"_count": 66}, "midjump": {"_count": 1}, "wed": {"_count": 2}, "there": {"_count": 2}, "his": {"_count": 7}, "fact": {"_count": 1}, "this": {"_count": 2}, "enough": {"_count": 1}, "a": {"_count": 19}, "Slytherin": {"_count": 2}, "dark": {"_count": 1}, "thick": {"_count": 1}, "surprise": {"_count": 4}, "an": {"_count": 3}, "disbelief": {"_count": 2}, "alarm": {"_count": 1}, "amazement": {"_count": 2}, "Azkaban": {"_count": 1}, "you": {"_count": 1}, "peace": {"_count": 1}, "here": {"_count": 1}, "my": {"_count": 1}, "while": {"_count": 1}, "disgust": {"_count": 1}, "for": {"_count": 1}, "mind": {"_count": 2}, "front": {"_count": 6}, "conversation": {"_count": 2}, "just": {"_count": 1}, "what": {"_count": 1}, "Bulgaria": {"_count": 1}, "watched": {"_count": 1}, "": {"_count": 2}, "Dumbledores": {"_count": 1}, "secret": {"_count": 1}, "charge": {"_count": 1}, "seconds": {"_count": 1}, "such": {"_count": 1}, "with": {"_count": 1}, "horror": {"_count": 1}, "case": {"_count": 2}, "their": {"_count": 1}, "primary": {"_count": 1}, "temper": {"_count": 1}, "awe": {"_count": 1}, "seventh": {"_count": 1}, "prison": {"_count": 1}, "sight": {"_count": 1}, "view": {"_count": 1}, "spite": {"_count": 1}, "Potions": {"_count": 1}, "any": {"_count": 1}, "touch": {"_count": 1}, "folds": {"_count": 1}, "those": {"_count": 1}, "spirit": {"_count": 1}, "return": {"_count": 1}, "vision": {"_count": 1}, "its": {"_count": 1}, "life": {"_count": 1}, "worshipful": {"_count": 1}, "sunlight": {"_count": 1}, "Gryffindor": {"_count": 1}, "every": {"_count": 1}}, "anything": {"_count": 6, "he": {"_count": 1}, "dangerous": {"_count": 1}, "said": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 2}}, "spoil": {"_count": 1, "your": {"_count": 1}}, "but": {"_count": 90, "before": {"_count": 3}, "not": {"_count": 1}, "they": {"_count": 5}, "then": {"_count": 4}, "Hagrid": {"_count": 1}, "nobody": {"_count": 1}, "no": {"_count": 1}, "had": {"_count": 1}, "didnt": {"_count": 1}, "he": {"_count": 19}, "his": {"_count": 6}, "Moody": {"_count": 2}, "Ron": {"_count": 1}, "the": {"_count": 5}, "itll": {"_count": 1}, "when": {"_count": 1}, "Harry": {"_count": 3}, "I": {"_count": 1}, "continued": {"_count": 1}, "knew": {"_count": 1}, "that": {"_count": 1}, "Dumbledore": {"_count": 1}, "ahead": {"_count": 1}, "none": {"_count": 1}, "to": {"_count": 1}, "examining": {"_count": 1}, "stared": {"_count": 1}, "Dobby": {"_count": 1}, "odd": {"_count": 1}, "it": {"_count": 3}, "which": {"_count": 1}, "this": {"_count": 1}, "bellowed": {"_count": 1}, "even": {"_count": 2}, "on": {"_count": 1}, "upon": {"_count": 1}, "one": {"_count": 1}, "was": {"_count": 1}, "now": {"_count": 1}, "Hermione": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "found": {"_count": 1}, "her": {"_count": 1}, "as": {"_count": 1}, "only": {"_count": 1}, "regretted": {"_count": 1}, "hit": {"_count": 1}}, "into": {"_count": 42, "a": {"_count": 16}, "the": {"_count": 17}, "his": {"_count": 1}, "telling": {"_count": 1}, "sinking": {"_count": 1}, "Azkaban": {"_count": 1}, "submission": {"_count": 1}, "an": {"_count": 2}, "Umbridges": {"_count": 1}, "giving": {"_count": 1}}, "as": {"_count": 139, "usual": {"_count": 2}, "though": {"_count": 24}, "he": {"_count": 45}, "much": {"_count": 3}, "quickly": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 8}, "we": {"_count": 2}, "far": {"_count": 2}, "Dumbledore": {"_count": 1}, "gamekeeper": {"_count": 1}, "Seeker": {"_count": 1}, "Secret": {"_count": 1}, "hard": {"_count": 1}, "she": {"_count": 4}, "they": {"_count": 5}, "well": {"_count": 2}, "Harry": {"_count": 1}, "Minister": {"_count": 1}, "Mrs": {"_count": 1}, "had": {"_count": 1}, "to": {"_count": 1}, "arrogant": {"_count": 1}, "nothing": {"_count": 1}, "long": {"_count": 2}, "rather": {"_count": 1}, "I": {"_count": 1}, "his": {"_count": 2}, "visible": {"_count": 1}, "Lily": {"_count": 1}, "Hagrid": {"_count": 2}, "their": {"_count": 1}, "ever": {"_count": 1}, "if": {"_count": 3}, "at": {"_count": 1}, "it": {"_count": 2}, "by": {"_count": 1}, "pain": {"_count": 1}, "mine": {"_count": 1}, "were": {"_count": 1}, "students": {"_count": 1}, "clearly": {"_count": 1}, "surely": {"_count": 1}}, "away": {"_count": 25, "they": {"_count": 2}, "but": {"_count": 1}, "while": {"_count": 1}, "from": {"_count": 6}, "": {"_count": 4}, "an": {"_count": 1}, "Ron": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 2}, "whatever": {"_count": 1}, "kept": {"_count": 1}, "said": {"_count": 1}, "yet": {"_count": 1}}, "another": {"_count": 4, "one": {"_count": 1}, "rock": {"_count": 1}, "pang": {"_count": 1}, "gift": {"_count": 1}}, "Harry": {"_count": 45, "could": {"_count": 5}, "": {"_count": 5}, "panted": {"_count": 1}, "spotted": {"_count": 1}, "followed": {"_count": 1}, "skidded": {"_count": 1}, "from": {"_count": 1}, "thought": {"_count": 1}, "was": {"_count": 3}, "kicked": {"_count": 1}, "threw": {"_count": 2}, "heard": {"_count": 2}, "continued": {"_count": 1}, "pulled": {"_count": 1}, "Potter": {"_count": 1}, "managed": {"_count": 1}, "said": {"_count": 2}, "struggled": {"_count": 1}, "remembered": {"_count": 1}, "felt": {"_count": 3}, "hes": {"_count": 1}, "but": {"_count": 1}, "\u2018Wouldnt": {"_count": 1}, "concentrated": {"_count": 1}, "reached": {"_count": 1}, "her": {"_count": 1}, "saw": {"_count": 1}, "plowed": {"_count": 1}, "dived": {"_count": 1}, "told": {"_count": 1}}, "once": {"_count": 20, "while": {"_count": 1}, "on": {"_count": 1}, "more": {"_count": 10}, "around": {"_count": 1}, "Ive": {"_count": 1}, "when": {"_count": 1}, "before": {"_count": 1}, "again": {"_count": 1}, "since": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "with": {"_count": 96, "your": {"_count": 1}, "a": {"_count": 24}, "pain": {"_count": 2}, "its": {"_count": 1}, "questions": {"_count": 1}, "his": {"_count": 6}, "these": {"_count": 1}, "clothes": {"_count": 2}, "concern": {"_count": 1}, "my": {"_count": 1}, "something": {"_count": 2}, "fangs": {"_count": 1}, "anything": {"_count": 1}, "an": {"_count": 3}, "her": {"_count": 9}, "such": {"_count": 2}, "those": {"_count": 2}, "Mrs": {"_count": 1}, "the": {"_count": 9}, "ease": {"_count": 1}, "Viktor": {"_count": 1}, "him": {"_count": 1}, "nothing": {"_count": 2}, "great": {"_count": 3}, "this": {"_count": 1}, "their": {"_count": 1}, "awe": {"_count": 1}, "all": {"_count": 1}, "much": {"_count": 1}, "unfocused": {"_count": 1}, "said": {"_count": 1}, "me": {"_count": 1}, "that": {"_count": 2}, "when": {"_count": 1}, "magic": {"_count": 1}, "similar": {"_count": 1}, "trembling": {"_count": 1}, "virtually": {"_count": 1}, "half": {"_count": 1}, "Ron": {"_count": 1}, "enormous": {"_count": 1}}, "get": {"_count": 8, "out": {"_count": 1}, "it": {"_count": 1}, "away": {"_count": 3}, "you": {"_count": 1}, "him": {"_count": 1}, "excited": {"_count": 1}}, "banging": {"_count": 1, "things": {"_count": 1}}, "which": {"_count": 9, "was": {"_count": 3}, "turned": {"_count": 1}, "nearly": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}, "books": {"_count": 1}, "seemed": {"_count": 1}}, "sharply": {"_count": 4, "on": {"_count": 2}, "back": {"_count": 1}, "": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 53, "at": {"_count": 1}, "to": {"_count": 5}, "": {"_count": 11}, "Im": {"_count": 1}, "the": {"_count": 4}, "Crabbe": {"_count": 1}, "said": {"_count": 2}, "properly": {"_count": 1}, "here": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 2}, "an": {"_count": 1}, "wondering": {"_count": 1}, "close": {"_count": 1}, "so": {"_count": 3}, "a": {"_count": 4}, "there": {"_count": 1}, "as": {"_count": 2}, "then": {"_count": 1}, "enormously": {"_count": 1}, "like": {"_count": 1}, "by": {"_count": 1}, "with": {"_count": 1}, "locked": {"_count": 1}, "Arkie": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}}, "three": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 25, "these": {"_count": 1}, "right": {"_count": 2}, "summer": {"_count": 3}, "the": {"_count": 9}, "because": {"_count": 1}, "of": {"_count": 2}, "around": {"_count": 1}, "week": {"_count": 1}, "over": {"_count": 1}, "morning": {"_count": 1}, "along": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "he": {"_count": 146, "said": {"_count": 7}, "wont": {"_count": 1}, "must": {"_count": 3}, "had": {"_count": 13}, "told": {"_count": 2}, "whispered": {"_count": 2}, "closed": {"_count": 1}, "was": {"_count": 17}, "went": {"_count": 1}, "mustnt": {"_count": 1}, "heard": {"_count": 4}, "avoided": {"_count": 1}, "could": {"_count": 8}, "kicked": {"_count": 1}, "didnt": {"_count": 1}, "tried": {"_count": 2}, "yelled": {"_count": 1}, "blew": {"_count": 1}, "thought": {"_count": 1}, "understood": {"_count": 1}, "whirled": {"_count": 1}, "moved": {"_count": 1}, "muttered": {"_count": 1}, "added": {"_count": 2}, "explained": {"_count": 1}, "seized": {"_count": 1}, "reached": {"_count": 1}, "took": {"_count": 1}, "wasnt": {"_count": 1}, "couldnt": {"_count": 1}, "turned": {"_count": 3}, "would": {"_count": 2}, "knew": {"_count": 3}, "pointed": {"_count": 1}, "saw": {"_count": 4}, "fell": {"_count": 1}, "swayed": {"_count": 1}, "hates": {"_count": 1}, "did": {"_count": 3}, "resisted": {"_count": 1}, "works": {"_count": 1}, "needed": {"_count": 1}, "strode": {"_count": 1}, "squeaked": {"_count": 1}, "shook": {"_count": 1}, "pulled": {"_count": 2}, "wrenched": {"_count": 1}, "looked": {"_count": 2}, "felt": {"_count": 4}, "narrowed": {"_count": 1}, "ran": {"_count": 1}, "grinned": {"_count": 1}, "stopped": {"_count": 1}, "distinctly": {"_count": 1}, "handed": {"_count": 1}, "listened": {"_count": 1}, "ducked": {"_count": 1}, "dived": {"_count": 1}, "cant": {"_count": 1}, "Harry": {"_count": 1}, "assured": {"_count": 1}, "picked": {"_count": 1}, "slowly": {"_count": 1}, "clicked": {"_count": 1}, "joined": {"_count": 1}, "cried": {"_count": 1}, "wanted": {"_count": 1}, "realized": {"_count": 1}, "swung": {"_count": 1}, "read": {"_count": 1}, "hardly": {"_count": 1}, "leapt": {"_count": 1}, "might": {"_count": 1}, "dueled": {"_count": 1}, "wished": {"_count": 1}, "can": {"_count": 1}, "became": {"_count": 1}, "soared": {"_count": 1}, "seemed": {"_count": 1}, "will": {"_count": 1}, "passed": {"_count": 1}}, "an": {"_count": 26, "he": {"_count": 1}, "envelope": {"_count": 1}, "encouraging": {"_count": 1}, "extra": {"_count": 1}, "owl": {"_count": 2}, "extremely": {"_count": 1}, "almost": {"_count": 1}, "excuse": {"_count": 3}, "enormous": {"_count": 2}, "odd": {"_count": 3}, "We": {"_count": 1}, "his": {"_count": 1}, "an": {"_count": 1}, "order": {"_count": 1}, "introduction": {"_count": 1}, "easy": {"_count": 1}, "unusually": {"_count": 1}, "antidote": {"_count": 1}, "ambitious": {"_count": 1}, "engaging": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 19, "like": {"_count": 1}, "the": {"_count": 12}, "and": {"_count": 1}, "": {"_count": 3}, "for": {"_count": 1}, "to": {"_count": 1}}, "had": {"_count": 14, "happened": {"_count": 1}, "got": {"_count": 1}, "only": {"_count": 1}, "rebounded": {"_count": 1}, "lowered": {"_count": 1}, "started": {"_count": 1}, "changed": {"_count": 1}, "his": {"_count": 1}, "registered": {"_count": 1}, "called": {"_count": 1}, "broken": {"_count": 1}, "stood": {"_count": 1}, "high": {"_count": 1}, "risen": {"_count": 1}}, "hadnt": {"_count": 5, "he": {"_count": 2}, "had": {"_count": 1}, "changed": {"_count": 1}, "she": {"_count": 1}}, "growled": {"_count": 1, "Hagrid": {"_count": 1}}, "Hagrid": {"_count": 4, "grunted": {"_count": 1}, "": {"_count": 1}, "blew": {"_count": 1}, "began": {"_count": 1}}, "five": {"_count": 1, "Knuts": {"_count": 1}}, "feel": {"_count": 31, "as": {"_count": 3}, "ill": {"_count": 1}, "sick": {"_count": 1}, "better": {"_count": 2}, "he": {"_count": 2}, "sleepy": {"_count": 2}, "any": {"_count": 4}, "uncomfortable": {"_count": 1}, "very": {"_count": 1}, "slightly": {"_count": 2}, "sure": {"_count": 1}, "if": {"_count": 1}, "hot": {"_count": 1}, "like": {"_count": 1}, "nervous": {"_count": 1}, "more": {"_count": 1}, "some": {"_count": 1}, "quite": {"_count": 1}, "worse": {"_count": 2}, "strangely": {"_count": 1}, "just": {"_count": 1}}, "flying": {"_count": 3, "": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}}, "so": {"_count": 47, "far": {"_count": 2}, "much": {"_count": 5}, "desperate": {"_count": 1}, "busy": {"_count": 1}, "that": {"_count": 11}, "we": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 4}, "anxiously": {"_count": 1}, "hard": {"_count": 1}, "late": {"_count": 1}, "tightly": {"_count": 2}, "": {"_count": 2}, "easily": {"_count": 1}, "very": {"_count": 1}, "angry": {"_count": 1}, "my": {"_count": 1}, "as": {"_count": 1}, "does": {"_count": 1}, "if": {"_count": 1}, "agitated": {"_count": 1}, "determinedly": {"_count": 1}, "long": {"_count": 1}, "forcefully": {"_count": 1}, "yet": {"_count": 1}, "well": {"_count": 1}, "I": {"_count": 1}}, "inside": {"_count": 13, "": {"_count": 2}, "him": {"_count": 2}, "among": {"_count": 1}, "yourself": {"_count": 1}, "Wormtail": {"_count": 1}, "a": {"_count": 1}, "What": {"_count": 1}, "information": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "wiping": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "buried": {"_count": 1, "deep": {"_count": 1}}, "back": {"_count": 78, "by": {"_count": 1}, "to": {"_count": 12}, "his": {"_count": 4}, "in": {"_count": 4}, "for": {"_count": 1}, "": {"_count": 20}, "down": {"_count": 6}, "from": {"_count": 1}, "you": {"_count": 1}, "onto": {"_count": 2}, "into": {"_count": 4}, "at": {"_count": 2}, "along": {"_count": 1}, "rushed": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "broke": {"_count": 1}, "said": {"_count": 1}, "if": {"_count": 1}, "without": {"_count": 1}, "as": {"_count": 1}, "out": {"_count": 1}, "will": {"_count": 1}, "the": {"_count": 1}, "against": {"_count": 2}, "home": {"_count": 1}, "outside": {"_count": 1}, "inside": {"_count": 1}, "Lilys": {"_count": 1}, "up": {"_count": 1}, "under": {"_count": 1}}, "slipped": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "chocolate": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 77, "all": {"_count": 13}, "once": {"_count": 7}, "the": {"_count": 30}, "lunchtime": {"_count": 1}, "last": {"_count": 4}, "anything": {"_count": 1}, "Hogwarts": {"_count": 2}, "least": {"_count": 3}, "midnight": {"_count": 1}, "every": {"_count": 1}, "Quidditch": {"_count": 1}, "arms": {"_count": 1}, "it": {"_count": 3}, "twentytwo": {"_count": 1}, "home": {"_count": 1}, "bay": {"_count": 1}, "that": {"_count": 1}, "your": {"_count": 1}, "any": {"_count": 1}, "Kings": {"_count": 1}, "my": {"_count": 1}, "her": {"_count": 1}}, "something": {"_count": 9, "you": {"_count": 1}, "so": {"_count": 1}, "other": {"_count": 1}, "to": {"_count": 2}, "only": {"_count": 1}, "important": {"_count": 1}, "I": {"_count": 1}, "else": {"_count": 1}}, "shrieked": {"_count": 2, "and": {"_count": 1}, "Filch": {"_count": 1}}, "saying": {"_count": 7, "something": {"_count": 1}, "Amazing": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}, "Like": {"_count": 1}}, "looking": {"_count": 21, "": {"_count": 2}, "at": {"_count": 2}, "around": {"_count": 1}, "concerned": {"_count": 1}, "scared": {"_count": 1}, "anxious": {"_count": 1}, "livid": {"_count": 1}, "terrified": {"_count": 1}, "into": {"_count": 1}, "happier": {"_count": 1}, "puzzled": {"_count": 2}, "extremely": {"_count": 1}, "very": {"_count": 1}, "furious": {"_count": 1}, "alarmed": {"_count": 1}, "curious": {"_count": 1}, "up": {"_count": 1}, "grim": {"_count": 1}}, "Mom": {"_count": 1, "oh": {"_count": 1}}, "Ginny": {"_count": 2, "and": {"_count": 1}, "was": {"_count": 1}}, "Fred": {"_count": 2, "": {"_count": 1}, "seemed": {"_count": 1}}, "yellow": {"_count": 1, "yesterday": {"_count": 1}}, "more": {"_count": 9, "interesting": {"_count": 1}, "than": {"_count": 2}, "jets": {"_count": 1}, "like": {"_count": 1}, "incentives": {"_count": 1}, "Inferi": {"_count": 1}, "likely": {"_count": 1}, "detentions": {"_count": 1}}, "we": {"_count": 9, "havent": {"_count": 2}, "can": {"_count": 1}, "want": {"_count": 1}, "dont": {"_count": 1}, "might": {"_count": 1}, "had": {"_count": 1}, "hated": {"_count": 1}, "shall": {"_count": 1}}, "again": {"_count": 32, "": {"_count": 15}, "and": {"_count": 3}, "but": {"_count": 3}, "he": {"_count": 4}, "Vernon": {"_count": 1}, "wearing": {"_count": 1}, "then": {"_count": 1}, "speaking": {"_count": 1}, "not": {"_count": 1}, "powerful": {"_count": 1}, "with": {"_count": 1}}, "or": {"_count": 21, "Ron": {"_count": 1}, "doubled": {"_count": 1}, "us": {"_count": 1}, "hadnt": {"_count": 1}, "Hagrid": {"_count": 1}, "would": {"_count": 2}, "the": {"_count": 1}, "hit": {"_count": 1}, "get": {"_count": 1}, "as": {"_count": 1}, "else": {"_count": 2}, "anything": {"_count": 1}, "herself": {"_count": 2}, "allow": {"_count": 1}, "bewitching": {"_count": 1}, "Dumbledore": {"_count": 1}, "Got": {"_count": 1}, "of": {"_count": 1}}, "you": {"_count": 12, "could": {"_count": 1}, "know": {"_count": 3}, "would": {"_count": 2}, "will": {"_count": 2}, "see": {"_count": 1}, "dont": {"_count": 1}, "just": {"_count": 1}, "coward": {"_count": 1}}, "jump": {"_count": 4, "about": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}}, "screamed": {"_count": 2, "": {"_count": 1}, "ATTACK": {"_count": 1}}, "sat": {"_count": 1, "Hagrid": {"_count": 1}}, "the": {"_count": 100, "thumbs": {"_count": 1}, "truth": {"_count": 2}, "broom": {"_count": 1}, "creeps": {"_count": 1}, "cloak": {"_count": 1}, "Seeker": {"_count": 1}, "old": {"_count": 2}, "flowerpot": {"_count": 1}, "Bludger": {"_count": 1}, "tips": {"_count": 1}, "engine": {"_count": 1}, "sword": {"_count": 1}, "filthy": {"_count": 1}, "twelfth": {"_count": 1}, "password": {"_count": 2}, "trunk": {"_count": 1}, "Potters": {"_count": 1}, "chance": {"_count": 2}, "effects": {"_count": 1}, "letter": {"_count": 2}, "Fat": {"_count": 1}, "pencil": {"_count": 1}, "dragons": {"_count": 1}, "Daily": {"_count": 1}, "night": {"_count": 2}, "Weasleys": {"_count": 1}, "dark": {"_count": 1}, "last": {"_count": 2}, "pain": {"_count": 1}, "hand": {"_count": 1}, "traces": {"_count": 1}, "shapes": {"_count": 1}, "one": {"_count": 1}, "thing": {"_count": 1}, "instant": {"_count": 1}, "air": {"_count": 1}, "doleful": {"_count": 1}, "glass": {"_count": 1}, "magazine": {"_count": 1}, "slightest": {"_count": 2}, "prefect": {"_count": 1}, "moment": {"_count": 3}, "stupid": {"_count": 1}, "full": {"_count": 1}, "courtesy": {"_count": 1}, "message": {"_count": 1}, "strings": {"_count": 1}, "wrong": {"_count": 1}, "Impediment": {"_count": 1}, "wine": {"_count": 1}, "wings": {"_count": 1}, "others": {"_count": 1}, "tip": {"_count": 1}, "pictures": {"_count": 1}, "baby": {"_count": 1}, "entirely": {"_count": 1}, "more": {"_count": 1}, "tour": {"_count": 1}, "same": {"_count": 1}, "look": {"_count": 1}, "potion": {"_count": 1}, "kind": {"_count": 1}, "politest": {"_count": 1}, "part": {"_count": 1}, "diary": {"_count": 2}, "tools": {"_count": 1}, "looks": {"_count": 1}, "yells": {"_count": 1}, "little": {"_count": 1}, "path": {"_count": 1}, "dreadful": {"_count": 1}, "chill": {"_count": 1}, "secret": {"_count": 1}, "only": {"_count": 1}, "lure": {"_count": 1}, "symbol": {"_count": 1}, "embodiment": {"_count": 1}, "idea": {"_count": 1}, "previous": {"_count": 1}, "less": {"_count": 1}, "things": {"_count": 1}, "fake": {"_count": 1}, "mingled": {"_count": 1}, "stag": {"_count": 1}, "power": {"_count": 1}, "portraits": {"_count": 1}, "small": {"_count": 1}, "Elder": {"_count": 1}, "flaming": {"_count": 1}}, "were": {"_count": 15, "now": {"_count": 1}, "at": {"_count": 1}, "looking": {"_count": 1}, "standing": {"_count": 1}, "falling": {"_count": 1}, "pointing": {"_count": 1}, "swaying": {"_count": 1}, "throbbing": {"_count": 1}, "wondering": {"_count": 1}, "a": {"_count": 1}, "full": {"_count": 1}, "thinking": {"_count": 1}, "directly": {"_count": 1}, "all": {"_count": 1}, "Ron": {"_count": 1}}, "sick": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 12, "was": {"_count": 3}, "didnt": {"_count": 1}, "had": {"_count": 2}, "said": {"_count": 3}, "left": {"_count": 1}, "slipped": {"_count": 1}, "dropped": {"_count": 1}}, "zooming": {"_count": 1, "away": {"_count": 1}}, "telling": {"_count": 6, "him": {"_count": 1}, "Professor": {"_count": 1}, "Seamus": {"_count": 1}, "Madame": {"_count": 1}, "your": {"_count": 1}, "Crabbe": {"_count": 1}}, "one": {"_count": 9, "of": {"_count": 2}, "last": {"_count": 1}, "or": {"_count": 1}, "look": {"_count": 1}, "Seer": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 1}, "thing": {"_count": 1}}, "not": {"_count": 16, "to": {"_count": 7}, "Ronan": {"_count": 1}, "stopping": {"_count": 1}, "into": {"_count": 1}, "a": {"_count": 1}, "after": {"_count": 1}, "Ron": {"_count": 1}, "once": {"_count": 1}, "without": {"_count": 1}, "": {"_count": 1}}, "behind": {"_count": 3, "their": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "narrowly": {"_count": 1, "escaping": {"_count": 1}}, "near": {"_count": 1, "one": {"_count": 1}}, "hang": {"_count": 1, "on": {"_count": 1}}, "packages": {"_count": 1, "of": {"_count": 1}}, "gasp": {"_count": 1, "slip": {"_count": 1}}, "advice": {"_count": 1, "such": {"_count": 1}}, "mutter": {"_count": 1, "probably": {"_count": 1}}, "off": {"_count": 50, "": {"_count": 12}, "or": {"_count": 1}, "ref": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 8}, "again": {"_count": 1}, "when": {"_count": 2}, "until": {"_count": 1}, "doesnt": {"_count": 1}, "for": {"_count": 4}, "his": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 2}, "on": {"_count": 1}, "toward": {"_count": 2}, "while": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 3}, "before": {"_count": 1}, "Professor": {"_count": 1}, "Kreacher": {"_count": 1}, "without": {"_count": 1}}, "anywhere": {"_count": 2, "but": {"_count": 1}, "just": {"_count": 1}}, "knocking": {"_count": 2, "his": {"_count": 1}, "chairs": {"_count": 1}}, "make": {"_count": 3, "Nevilles": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "instead": {"_count": 7, "lifting": {"_count": 1}, "of": {"_count": 4}, "and": {"_count": 1}, "": {"_count": 1}}, "hed": {"_count": 5, "be": {"_count": 3}, "been": {"_count": 1}, "made": {"_count": 1}}, "theyd": {"_count": 3, "be": {"_count": 1}, "sent": {"_count": 1}, "have": {"_count": 1}}, "holding": {"_count": 7, "a": {"_count": 5}, "his": {"_count": 1}, "out": {"_count": 1}}, "Quidditch": {"_count": 1, "Through": {"_count": 1}}, "hes": {"_count": 10, "after": {"_count": 1}, "an": {"_count": 1}, "been": {"_count": 2}, "only": {"_count": 3}, "a": {"_count": 1}, "the": {"_count": 1}, "supposed": {"_count": 1}}, "slowly": {"_count": 3, "higher": {"_count": 1}, "backward": {"_count": 1}, "and": {"_count": 1}}, "only": {"_count": 5, "just": {"_count": 1}, "to": {"_count": 2}, "a": {"_count": 1}, "he": {"_count": 1}}, "obviously": {"_count": 2, "hoping": {"_count": 1}, "Im": {"_count": 1}}, "if": {"_count": 30, "he": {"_count": 10}, "Dumbledore": {"_count": 1}, "I": {"_count": 4}, "ever": {"_count": 1}, "Ron": {"_count": 1}, "Cho": {"_count": 1}, "hes": {"_count": 2}, "they": {"_count": 2}, "you": {"_count": 3}, "we": {"_count": 2}, "Draco": {"_count": 1}, "its": {"_count": 1}, "youd": {"_count": 1}}, "clap": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 31, "hate": {"_count": 1}, "need": {"_count": 1}, "was": {"_count": 3}, "said": {"_count": 2}, "never": {"_count": 2}, "turned": {"_count": 1}, "will": {"_count": 3}, "had": {"_count": 1}, "spose": {"_count": 1}, "fought": {"_count": 1}, "reckon": {"_count": 1}, "feel": {"_count": 1}, "would": {"_count": 1}, "say": {"_count": 1}, "just": {"_count": 1}, "wouldnt": {"_count": 1}, "think": {"_count": 1}, "do": {"_count": 1}, "wonder": {"_count": 1}, "dont": {"_count": 2}, "hope": {"_count": 1}, "felt": {"_count": 1}, "swear": {"_count": 1}, "know": {"_count": 1}}, "brightly": {"_count": 1, "": {"_count": 1}}, "shaking": {"_count": 3, "their": {"_count": 2}, "": {"_count": 1}}, "just": {"_count": 9, "his": {"_count": 1}, "as": {"_count": 5}, "in": {"_count": 1}, "inside": {"_count": 1}, "like": {"_count": 1}}, "fell": {"_count": 1, "asleep": {"_count": 1}}, "much": {"_count": 4, "": {"_count": 2}, "either": {"_count": 1}, "moren": {"_count": 1}}, "of": {"_count": 13, "course": {"_count": 2}, "his": {"_count": 1}, "still": {"_count": 1}, "attacking": {"_count": 1}, "apart": {"_count": 1}, "all": {"_count": 1}, "luring": {"_count": 1}, "everything": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "having": {"_count": 1}}, "was": {"_count": 39, "something": {"_count": 1}, "put": {"_count": 1}, "a": {"_count": 2}, "another": {"_count": 1}, "marching": {"_count": 1}, "saying": {"_count": 1}, "stored": {"_count": 1}, "covered": {"_count": 1}, "aching": {"_count": 1}, "during": {"_count": 1}, "trembling": {"_count": 1}, "so": {"_count": 1}, "it": {"_count": 2}, "circling": {"_count": 1}, "redolent": {"_count": 1}, "really": {"_count": 1}, "continuing": {"_count": 1}, "laughing": {"_count": 2}, "eyeing": {"_count": 1}, "momentarily": {"_count": 1}, "tied": {"_count": 1}, "that": {"_count": 3}, "roaring": {"_count": 1}, "the": {"_count": 1}, "being": {"_count": 1}, "illuminated": {"_count": 1}, "suffering": {"_count": 1}, "falling": {"_count": 1}, "Sirius": {"_count": 1}, "daunting": {"_count": 1}, "Hogwarts": {"_count": 1}, "after": {"_count": 1}, "afraid": {"_count": 1}, "already": {"_count": 1}}, "smiling": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "half": {"_count": 1, "joy": {"_count": 1}}, "about": {"_count": 26, "these": {"_count": 1}, "Charlies": {"_count": 1}, "Hagrid": {"_count": 1}, "why": {"_count": 1}, "medieval": {"_count": 1}, "Snapes": {"_count": 1}, "Karkaroff": {"_count": 1}, "the": {"_count": 10}, "it": {"_count": 1}, "so": {"_count": 1}, "this": {"_count": 1}, "using": {"_count": 1}, "Occlumency": {"_count": 1}, "Voldemort": {"_count": 1}, "Rons": {"_count": 1}, "": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "while": {"_count": 13, "he": {"_count": 4}, "Uncle": {"_count": 1}, "hes": {"_count": 2}, "you": {"_count": 1}, "they": {"_count": 1}, "youve": {"_count": 1}, "as": {"_count": 1}, "Merope": {"_count": 1}, "Ron": {"_count": 1}}, "leading": {"_count": 1, "him": {"_count": 1}}, "outside": {"_count": 6, "the": {"_count": 3}, "": {"_count": 1}, "said": {"_count": 1}, "an": {"_count": 1}}, "Neville": {"_count": 2, "": {"_count": 2}}, "for": {"_count": 73, "Christmas": {"_count": 3}, "doing": {"_count": 1}, "a": {"_count": 24}, "wanting": {"_count": 2}, "the": {"_count": 2}, "what": {"_count": 4}, "some": {"_count": 1}, "ages": {"_count": 1}, "his": {"_count": 3}, "instructions": {"_count": 1}, "anything": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 2}, "returning": {"_count": 1}, "slipping": {"_count": 1}, "months": {"_count": 3}, "signs": {"_count": 1}, "being": {"_count": 1}, "just": {"_count": 2}, "looking": {"_count": 1}, "every": {"_count": 1}, "me": {"_count": 1}, "us": {"_count": 1}, "howling": {"_count": 1}, "five": {"_count": 1}, "help": {"_count": 1}, "weeks": {"_count": 1}, "so": {"_count": 2}, "there": {"_count": 1}, "another": {"_count": 1}, "lack": {"_count": 1}, "Harrys": {"_count": 1}, "nothing": {"_count": 1}, "it": {"_count": 1}, "seconds": {"_count": 1}, "her": {"_count": 1}}, "because": {"_count": 18, "theyre": {"_count": 1}, "everyone": {"_count": 1}, "he": {"_count": 3}, "the": {"_count": 1}, "every": {"_count": 1}, "they": {"_count": 2}, "hes": {"_count": 5}, "of": {"_count": 1}, "weve": {"_count": 1}, "it": {"_count": 2}}, "trying": {"_count": 9, "to": {"_count": 8}, "not": {"_count": 1}}, "good": {"_count": 7, "luck": {"_count": 3}, "to": {"_count": 1}, "": {"_count": 1}, "night": {"_count": 1}, "a": {"_count": 1}}, "alive": {"_count": 10, "again": {"_count": 1}, "": {"_count": 5}, "under": {"_count": 1}, "if": {"_count": 1}, "So": {"_count": 1}, "so": {"_count": 1}}, "wrestling": {"_count": 1, "him": {"_count": 1}}, "missing": {"_count": 1, "him": {"_count": 1}}, "onto": {"_count": 5, "their": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "glance": {"_count": 4, "at": {"_count": 1}, "edgily": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 1}}, "go": {"_count": 13, "Harry": {"_count": 1}, "": {"_count": 4}, "with": {"_count": 1}, "if": {"_count": 1}, "she": {"_count": 1}, "wondering": {"_count": 1}, "feeling": {"_count": 1}, "down": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 1}}, "free": {"_count": 9, "": {"_count": 5}, "didnt": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}}, "Norbert": {"_count": 1, "said": {"_count": 1}}, "forever": {"_count": 3, "but": {"_count": 2}, "": {"_count": 1}}, "cant": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "feed": {"_count": 1, "Norbert": {"_count": 1}}, "without": {"_count": 7, "words": {"_count": 1}, "asking": {"_count": 1}, "tryin": {"_count": 1}, "a": {"_count": 1}, "really": {"_count": 1}, "publicizing": {"_count": 1}, "question": {"_count": 1}}, "they": {"_count": 16, "called": {"_count": 1}, "were": {"_count": 6}, "could": {"_count": 1}, "cant": {"_count": 1}, "d": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 2}, "are": {"_count": 1}, "arrived": {"_count": 1}, "kept": {"_count": 1}}, "how": {"_count": 18, "to": {"_count": 6}, "it": {"_count": 1}, "come": {"_count": 1}, "a": {"_count": 1}, "very": {"_count": 2}, "mistaken": {"_count": 1}, "his": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}}, "Dumbledore": {"_count": 4, "ll": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}, "dead": {"_count": 1}}, "sacked": {"_count": 1, "": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "crashing": {"_count": 2, "away": {"_count": 1}, "to": {"_count": 1}}, "freeze": {"_count": 2, "where": {"_count": 2}}, "galloping": {"_count": 1, "and": {"_count": 1}}, "anymore": {"_count": 4, "": {"_count": 2}, "Dumbledore": {"_count": 1}, "hes": {"_count": 1}}, "awake": {"_count": 2, "": {"_count": 2}}, "ever": {"_count": 3, "since": {"_count": 3}}, "letters": {"_count": 2, "": {"_count": 1}, "over": {"_count": 1}}, "after": {"_count": 8, "Fluffy": {"_count": 1}, "his": {"_count": 1}, "only": {"_count": 1}, "dark": {"_count": 1}, "a": {"_count": 1}, "all": {"_count": 1}, "winning": {"_count": 1}, "he": {"_count": 1}}, "Fluffys": {"_count": 1, "a": {"_count": 1}}, "down": {"_count": 33, "jus": {"_count": 1}, "many": {"_count": 1}, "a": {"_count": 2}, "with": {"_count": 1}, "as": {"_count": 2}, "myself": {"_count": 2}, "but": {"_count": 1}, "the": {"_count": 3}, "miss": {"_count": 1}, "badly": {"_count": 1}, "two": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 2}, "at": {"_count": 1}, "to": {"_count": 1}, "though": {"_count": 1}, "on": {"_count": 1}, "soon": {"_count": 1}, "beside": {"_count": 1}, "into": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 1}, "Hagrid": {"_count": 1}}, "asleep": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 8, "second": {"_count": 1}, "better": {"_count": 1}, "good": {"_count": 1}, "day": {"_count": 1}, "moment": {"_count": 2}, "": {"_count": 1}, "harm": {"_count": 1}}, "really": {"_count": 3, "": {"_count": 1}, "an": {"_count": 1}, "we": {"_count": 1}}, "swooping": {"_count": 1, "around": {"_count": 1}}, "who": {"_count": 6, "would": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 1}, "began": {"_count": 1}, "was": {"_count": 2}}, "faithfully": {"_count": 1, "although": {"_count": 1}}, "hunched": {"_count": 1, "in": {"_count": 1}}, "both": {"_count": 6, "hands": {"_count": 1}, "very": {"_count": 1}, "seemed": {"_count": 1}, "of": {"_count": 1}, "pale": {"_count": 1}, "unreasonable": {"_count": 1}}, "my": {"_count": 8, "hands": {"_count": 1}, "cauldron": {"_count": 1}, "bed": {"_count": 1}, "guest": {"_count": 1}, "father": {"_count": 2}, "Lord": {"_count": 2}}, "fool": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 45, "face": {"_count": 3}, "present": {"_count": 1}, "beady": {"_count": 1}, "silverblond": {"_count": 1}, "wand": {"_count": 3}, "ears": {"_count": 1}, "bright": {"_count": 1}, "mother": {"_count": 1}, "knuckles": {"_count": 1}, "heart": {"_count": 2}, "magical": {"_count": 1}, "chance": {"_count": 1}, "head": {"_count": 1}, "frustration": {"_count": 1}, "fury": {"_count": 1}, "faithful": {"_count": 1}, "scar": {"_count": 2}, "eyes": {"_count": 2}, "nose": {"_count": 1}, "schedule": {"_count": 1}, "first": {"_count": 2}, "spirits": {"_count": 1}, "whole": {"_count": 1}, "bottle": {"_count": 1}, "classmates": {"_count": 1}, "thick": {"_count": 1}, "flailing": {"_count": 1}, "snakelike": {"_count": 1}, "hands": {"_count": 2}, "brain": {"_count": 1}, "seat": {"_count": 1}, "terrified": {"_count": 1}, "arms": {"_count": 1}, "fault": {"_count": 1}, "grip": {"_count": 1}, "empty": {"_count": 1}}, "Voldemort": {"_count": 4, "Harry": {"_count": 1}, "Lupin": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}}, "Quirrell": {"_count": 1, "said": {"_count": 1}}, "hasnt": {"_count": 2, "he": {"_count": 1}, "been": {"_count": 1}}, "stood": {"_count": 3, "Aunt": {"_count": 1}, "Crabbe": {"_count": 1}, "Ron": {"_count": 1}}, "like": {"_count": 32, "a": {"_count": 9}, "that": {"_count": 5}, "one": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "this": {"_count": 1}, "any": {"_count": 1}, "some": {"_count": 4}, "silver": {"_count": 1}, "youre": {"_count": 1}, "poison": {"_count": 1}, "an": {"_count": 1}, "smoke": {"_count": 1}, "vomit": {"_count": 1}, "cold": {"_count": 1}, "fire": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Uncle": {"_count": 2, "Vernons": {"_count": 1}, "Vernon": {"_count": 1}}, "laughing": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "work": {"_count": 2, "to": {"_count": 1}, "out": {"_count": 1}}, "even": {"_count": 15, "if": {"_count": 2}, "over": {"_count": 1}, "though": {"_count": 3}, "more": {"_count": 3}, "as": {"_count": 1}, "said": {"_count": 1}, "less": {"_count": 1}, "understand": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}}, "Dobby": {"_count": 2, "bounded": {"_count": 1}, "straightened": {"_count": 1}}, "upstairs": {"_count": 4, "": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "crying": {"_count": 1}}, "followed": {"_count": 1, "immediately": {"_count": 1}}, "will": {"_count": 4, "be": {"_count": 2}, "you": {"_count": 1}, "care": {"_count": 1}}, "Mum": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 21, "it": {"_count": 2}, "alive": {"_count": 1}, "hed": {"_count": 1}, "he": {"_count": 6}, "a": {"_count": 1}, "midnight": {"_count": 1}, "lunchtime": {"_count": 1}, "killing": {"_count": 1}, "": {"_count": 1}, "would": {"_count": 1}, "they": {"_count": 1}, "going": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "almost": {"_count": 4, "nervously": {"_count": 1}, "as": {"_count": 1}, "cautiously": {"_count": 1}, "like": {"_count": 1}}, "through": {"_count": 26, "using": {"_count": 1}, "the": {"_count": 12}, "a": {"_count": 1}, "and": {"_count": 1}, "some": {"_count": 1}, "her": {"_count": 5}, "Umbridges": {"_count": 1}, "his": {"_count": 2}, "six": {"_count": 1}, "heavily": {"_count": 1}}, "showing": {"_count": 1, "mossy": {"_count": 1}}, "right": {"_count": 11, "into": {"_count": 1}, "through": {"_count": 1}, "mind": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "enough": {"_count": 1}, "up": {"_count": 2}, "at": {"_count": 1}, "now": {"_count": 1}, "said": {"_count": 1}}, "tightly": {"_count": 5, "to": {"_count": 1}, "below": {"_count": 1}, "": {"_count": 3}}, "now": {"_count": 29, "free": {"_count": 1}, "but": {"_count": 2}, "": {"_count": 13}, "those": {"_count": 1}, "to": {"_count": 2}, "Dumbledores": {"_count": 1}, "was": {"_count": 1}, "taking": {"_count": 1}, "hes": {"_count": 2}, "the": {"_count": 1}, "like": {"_count": 1}, "see": {"_count": 1}, "that": {"_count": 1}, "than": {"_count": 1}}, "alone": {"_count": 13, "he": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 7}, "Hermione": {"_count": 1}, "Lily": {"_count": 1}, "leave": {"_count": 1}, "Neville": {"_count": 1}}, "backward": {"_count": 9, "into": {"_count": 1}, "onto": {"_count": 2}, "": {"_count": 2}, "away": {"_count": 1}, "off": {"_count": 1}, "out": {"_count": 1}, "toward": {"_count": 1}}, "Dad": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}, "hear": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "lurching": {"_count": 1, "sideways": {"_count": 1}}, "that": {"_count": 89, "the": {"_count": 8}, "hair": {"_count": 1}, "night": {"_count": 2}, "Mr": {"_count": 2}, "this": {"_count": 3}, "": {"_count": 2}, "he": {"_count": 14}, "it": {"_count": 5}, "from": {"_count": 1}, "if": {"_count": 1}, "was": {"_count": 2}, "nothing": {"_count": 2}, "sticking": {"_count": 1}, "wasnt": {"_count": 1}, "fool": {"_count": 1}, "satisfaction": {"_count": 1}, "its": {"_count": 1}, "could": {"_count": 1}, "burglars": {"_count": 1}, "barely": {"_count": 1}, "they": {"_count": 5}, "until": {"_count": 1}, "Snape": {"_count": 1}, "would": {"_count": 1}, "on": {"_count": 2}, "hed": {"_count": 2}, "after": {"_count": 1}, "Dumbledore": {"_count": 1}, "hatefully": {"_count": 1}, "Kreacher": {"_count": 1}, "comfort": {"_count": 1}, "had": {"_count": 1}, "most": {"_count": 1}, "there": {"_count": 1}, "chance": {"_count": 1}, "is": {"_count": 1}, "Slughorn": {"_count": 1}, "information": {"_count": 1}, "lived": {"_count": 1}, "but": {"_count": 1}, "Voldemort": {"_count": 3}, "did": {"_count": 1}, "Harrys": {"_count": 1}, "she": {"_count": 2}, "Xenophilius": {"_count": 1}, "Ron": {"_count": 1}, "of": {"_count": 1}, "suggested": {"_count": 1}, "Harry": {"_count": 1}}, "Or": {"_count": 1, "maybe": {"_count": 1}}, "flat": {"_count": 3, "": {"_count": 1}, "while": {"_count": 1}, "out": {"_count": 1}}, "painfully": {"_count": 3, "on": {"_count": 2}, "in": {"_count": 1}}, "far": {"_count": 2, "more": {"_count": 1}, "too": {"_count": 1}}, "Alicia": {"_count": 1, "shrieked": {"_count": 1}}, "reeling": {"_count": 1, "backward": {"_count": 1}}, "still": {"_count": 9, "Harry": {"_count": 1}, "scuttling": {"_count": 1}, "while": {"_count": 1}, "streaking": {"_count": 1}, "more": {"_count": 1}, "present": {"_count": 1}, "clutching": {"_count": 1}, "fully": {"_count": 1}, "shielding": {"_count": 1}}, "Ron": {"_count": 22, "said": {"_count": 2}, "growled": {"_count": 1}, "how": {"_count": 1}, "was": {"_count": 4}, "had": {"_count": 2}, "hated": {"_count": 1}, "muttered": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 4}, "rubbed": {"_count": 1}, "clapped": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}, "whispered": {"_count": 1}}, "face": {"_count": 1, "first": {"_count": 1}}, "Id": {"_count": 7, "never": {"_count": 1}, "flay": {"_count": 1}, "forgotten": {"_count": 1}, "want": {"_count": 1}, "have": {"_count": 2}, "like": {"_count": 1}}, "occasionally": {"_count": 1, "saying": {"_count": 1}}, "frowning": {"_count": 5, "in": {"_count": 1}, "slightly": {"_count": 1}, "slit": {"_count": 1}, "": {"_count": 2}}, "suspend": {"_count": 1, "students": {"_count": 1}}, "dipping": {"_count": 1, "his": {"_count": 1}}, "Filch": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "alarmed": {"_count": 1, "Filch": {"_count": 1}}, "Was": {"_count": 1, "that": {"_count": 1}}, "join": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 15, "not": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 2}, "whispered": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}, "said": {"_count": 1}, "is": {"_count": 1}, "Ron": {"_count": 1}, "separately": {"_count": 1}, "in": {"_count": 1}, "I": {"_count": 2}, "Rosie": {"_count": 1}}, "including": {"_count": 3, "all": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}, "it": {"_count": 12, "would": {"_count": 1}, "was": {"_count": 6}, "had": {"_count": 2}, "wouldve": {"_count": 1}, "wasnt": {"_count": 1}, "hit": {"_count": 1}}, "scrubbing": {"_count": 1, "the": {"_count": 1}}, "stay": {"_count": 3, "behind": {"_count": 1}, "Lupin": {"_count": 1}, "shut": {"_count": 1}}, "turned": {"_count": 1, "abruptly": {"_count": 1}}, "hoping": {"_count": 2, "for": {"_count": 1}, "praying": {"_count": 1}}, "toward": {"_count": 9, "the": {"_count": 5}, "them": {"_count": 1}, "bed": {"_count": 1}, "a": {"_count": 2}}, "squeak": {"_count": 1, "See": {"_count": 1}}, "\u2018Youll": {"_count": 1, "be": {"_count": 1}}, "Malfoy": {"_count": 2, "the": {"_count": 1}, "said": {"_count": 1}}, "realizing": {"_count": 1, "its": {"_count": 1}}, "Madam": {"_count": 1, "Hooch": {"_count": 1}}, "deal": {"_count": 1, "with": {"_count": 1}}, "gasped": {"_count": 1, "and": {"_count": 1}}, "pass": {"_count": 2, "out": {"_count": 1}, "not": {"_count": 1}}, "cough": {"_count": 1, "and": {"_count": 1}}, "robbing": {"_count": 1, "his": {"_count": 1}}, "never": {"_count": 2, "fear": {"_count": 1}, "again": {"_count": 1}}, "walked": {"_count": 1, "a": {"_count": 1}}, "do": {"_count": 10, "it": {"_count": 3}, "you": {"_count": 2}, "so": {"_count": 2}, "the": {"_count": 1}, "under": {"_count": 1}, "": {"_count": 1}}, "forward": {"_count": 6, "as": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "funny": {"_count": 2, "Every": {"_count": 1}, "if": {"_count": 1}}, "opened": {"_count": 1, "with": {"_count": 1}}, "split": {"_count": 1, "in": {"_count": 1}}, "there": {"_count": 14, "alone": {"_count": 1}, "": {"_count": 4}, "by": {"_count": 1}, "as": {"_count": 1}, "was": {"_count": 2}, "were": {"_count": 2}, "anymore": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}}, "made": {"_count": 5, "him": {"_count": 3}, "Harrys": {"_count": 1}, "it": {"_count": 1}}, "wheel": {"_count": 1, "around": {"_count": 1}}, "seconds": {"_count": 2, "before": {"_count": 1}, "later": {"_count": 1}}, "Ill": {"_count": 1, "swear": {"_count": 1}}, "gasping": {"_count": 1, "to": {"_count": 1}}, "automatically": {"_count": 1, "": {"_count": 1}}, "sneaking": {"_count": 1, "around": {"_count": 1}}, "Good": {"_count": 1, "thing": {"_count": 1}}, "came": {"_count": 2, "suddenly": {"_count": 1}, "another": {"_count": 1}}, "walk": {"_count": 4, "out": {"_count": 1}, "": {"_count": 2}, "through": {"_count": 1}}, "standing": {"_count": 8, "stockstill": {"_count": 1}, "in": {"_count": 1}, "over": {"_count": 1}, "up": {"_count": 1}, "longingly": {"_count": 1}, "there": {"_count": 2}, "on": {"_count": 1}}, "forgetting": {"_count": 1, "that": {"_count": 1}}, "recount": {"_count": 1, "what": {"_count": 1}}, "except": {"_count": 3, "not": {"_count": 1}, "Uncle": {"_count": 1}, "Harry": {"_count": 1}}, "different": {"_count": 1, "advice": {"_count": 1}}, "talking": {"_count": 6, "loudly": {"_count": 1}, "to": {"_count": 3}, "about": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 16, "time": {"_count": 4}, "afternoon": {"_count": 1}, "one": {"_count": 1}, "morning": {"_count": 3}, "lesson": {"_count": 1}, "": {"_count": 2}, "close": {"_count": 1}, "but": {"_count": 1}, "evening": {"_count": 1}, "news": {"_count": 1}}, "aiming": {"_count": 1, "a": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "gloating": {"_count": 1, "to": {"_count": 1}}, "hard": {"_count": 13, "under": {"_count": 1}, "in": {"_count": 7}, "": {"_count": 1}, "on": {"_count": 2}, "around": {"_count": 1}, "and": {"_count": 1}}, "treacle": {"_count": 1, "toffee": {"_count": 1}}, "exactly": {"_count": 4, "like": {"_count": 1}, "spellbound": {"_count": 1}, "when": {"_count": 1}, "where": {"_count": 1}}, "quivering": {"_count": 1, "": {"_count": 1}}, "leave": {"_count": 3, "the": {"_count": 2}, "Hogwarts": {"_count": 1}}, "yelping": {"_count": 1, "into": {"_count": 1}}, "where": {"_count": 7, "we": {"_count": 1}, "he": {"_count": 4}, "a": {"_count": 1}, "to": {"_count": 1}}, "its": {"_count": 14, "a": {"_count": 1}, "not": {"_count": 2}, "urgent": {"_count": 1}, "as": {"_count": 1}, "you": {"_count": 1}, "really": {"_count": 1}, "five": {"_count": 1}, "rready": {"_count": 1}, "just": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "got": {"_count": 1}, "allegiance": {"_count": 1}}, "feeble": {"_count": 1, "once": {"_count": 1}}, "Tom": {"_count": 1, "Tom": {"_count": 1}}, "twirling": {"_count": 1, "Harrys": {"_count": 1}}, "didnt": {"_count": 3, "you": {"_count": 1}, "mention": {"_count": 1}, "they": {"_count": 1}}, "whole": {"_count": 1, "lined": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "coming": {"_count": 6, "out": {"_count": 3}, "hes": {"_count": 1}, "within": {"_count": 1}, "and": {"_count": 1}}, "myself": {"_count": 2, "fifty": {"_count": 1}, "if": {"_count": 1}}, "Lockhart": {"_count": 1, "looked": {"_count": 1}}, "crouching": {"_count": 1, "at": {"_count": 1}}, "Professor": {"_count": 5, "Dumbledore": {"_count": 1}, "": {"_count": 1}, "Karkaroff": {"_count": 1}, "Trelawney": {"_count": 1}, "Slughorn": {"_count": 1}}, "screaming": {"_count": 2, "You": {"_count": 1}, "for": {"_count": 1}}, "write": {"_count": 2, "his": {"_count": 1}, "and": {"_count": 1}}, "suspiciously": {"_count": 4, "": {"_count": 3}, "Harry": {"_count": 1}}, "heading": {"_count": 2, "for": {"_count": 1}, "straight": {"_count": 1}}, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "panic": {"_count": 2, "": {"_count": 1}, "fogging": {"_count": 1}}, "magic": {"_count": 3, "or": {"_count": 1}, "": {"_count": 1}, "much": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 1, "was": {"_count": 1}}, "checked": {"_count": 1, "over": {"_count": 1}}, "next": {"_count": 4, "to": {"_count": 1}, "day": {"_count": 1}, "moment": {"_count": 1}, "I": {"_count": 1}}, "then": {"_count": 20, "": {"_count": 5}, "said": {"_count": 1}, "obviously": {"_count": 1}, "at": {"_count": 2}, "he": {"_count": 2}, "we": {"_count": 1}, "spat": {"_count": 1}, "whether": {"_count": 1}, "whispered": {"_count": 1}, "are": {"_count": 1}, "for": {"_count": 1}, "took": {"_count": 1}, "you": {"_count": 1}, "remembered": {"_count": 1}}, "perhaps": {"_count": 2, "because": {"_count": 1}, "with": {"_count": 1}}, "stop": {"_count": 3, "then": {"_count": 1}, "dead": {"_count": 1}, "him": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 1}, "Fudge": {"_count": 1}}, "miserable": {"_count": 1, "I": {"_count": 1}}, "wont": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "too": {"_count": 20, "": {"_count": 14}, "Before": {"_count": 1}, "and": {"_count": 2}, "a": {"_count": 1}, "shatter": {"_count": 1}, "he": {"_count": 1}}, "apprehensively": {"_count": 3, "but": {"_count": 2}, "as": {"_count": 1}}, "heard": {"_count": 1, "the": {"_count": 1}}, "sideways": {"_count": 4, "as": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}}, "hurry": {"_count": 1, "and": {"_count": 1}}, "beaming": {"_count": 4, "around": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 1}}, "overbalance": {"_count": 1, "and": {"_count": 1}}, "along": {"_count": 9, "the": {"_count": 2}, "too": {"_count": 2}, "at": {"_count": 1}, "with": {"_count": 1}, "unless": {"_count": 1}, "here": {"_count": 1}, "Crabbe": {"_count": 1}}, "running": {"_count": 3, "through": {"_count": 1}, "toward": {"_count": 1}, "after": {"_count": 1}}, "reappear": {"_count": 1, "in": {"_count": 1}}, "Shut": {"_count": 1, "up": {"_count": 1}}, "sharpish": {"_count": 1, "cause": {"_count": 1}}, "catching": {"_count": 1, "him": {"_count": 1}}, "under": {"_count": 11, "his": {"_count": 1}, "arrest": {"_count": 1}, "the": {"_count": 7}, "their": {"_count": 1}, "magical": {"_count": 1}}, "outta": {"_count": 2, "here": {"_count": 1}, "the": {"_count": 1}}, "straight": {"_count": 4, "away": {"_count": 1}, "to": {"_count": 2}, "back": {"_count": 1}}, "would": {"_count": 5, "they": {"_count": 1}, "know": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 1}, "waste": {"_count": 1}}, "best": {"_count": 4, "she": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}}, "wink": {"_count": 1, "at": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "Snape": {"_count": 3, "said": {"_count": 2}, "and": {"_count": 1}}, "bobbing": {"_count": 1, "up": {"_count": 1}}, "most": {"_count": 5, "in": {"_count": 1}, "determined": {"_count": 1}, "nights": {"_count": 1}, "was": {"_count": 1}, "faithfully": {"_count": 1}}, "reaching": {"_count": 1, "inside": {"_count": 1}}, "took": {"_count": 2, "out": {"_count": 1}, "a": {"_count": 1}}, "dying": {"_count": 3, "wasnt": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}}, "fly": {"_count": 2, "in": {"_count": 1}, "away": {"_count": 1}}, "everywhere": {"_count": 2, "like": {"_count": 1}, "not": {"_count": 1}}, "intently": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "classes": {"_count": 1}}, "tips": {"_count": 1, "": {"_count": 1}}, "Diggorys": {"_count": 1, "got": {"_count": 1}}, "flick": {"_count": 1, "through": {"_count": 1}}, "blowing": {"_count": 1, "hard": {"_count": 1}}, "completely": {"_count": 2, "the": {"_count": 1}, "right": {"_count": 1}}, "Then": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "until": {"_count": 9, "he": {"_count": 4}, "were": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "quite": {"_count": 1}, "finally": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "company": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "Hermione": {"_count": 13, "whispered": {"_count": 2}, "looked": {"_count": 1}, "": {"_count": 2}, "scowled": {"_count": 1}, "repeated": {"_count": 1}, "I": {"_count": 1}, "cause": {"_count": 1}, "and": {"_count": 1}, "clapped": {"_count": 1}, "explained": {"_count": 1}, "sat": {"_count": 1}}, "godfather": {"_count": 1, "to": {"_count": 1}}, "offering": {"_count": 1, "to": {"_count": 1}}, "Ha": {"_count": 1, "": {"_count": 1}}, "eh": {"_count": 2, "": {"_count": 2}}, "limb": {"_count": 1, "from": {"_count": 1}}, "lost": {"_count": 1, "for": {"_count": 1}}, "whether": {"_count": 6, "hed": {"_count": 1}, "they": {"_count": 2}, "Dumbledore": {"_count": 1}, "Griphook": {"_count": 1}, "from": {"_count": 1}}, "two": {"_count": 4, "years": {"_count": 1}, "weeks": {"_count": 1}, "attempts": {"_count": 1}, "cups": {"_count": 1}}, "unrecognizable": {"_count": 1, "": {"_count": 1}}, "tied": {"_count": 3, "up": {"_count": 3}}, "breathlessly": {"_count": 1, "": {"_count": 1}}, "Imagine": {"_count": 1, "that": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "Expecto": {"_count": 2, "patronurrd": {"_count": 1}, "patronum": {"_count": 1}}, "Go": {"_count": 3, "": {"_count": 3}}, "off~": {"_count": 1, "The": {"_count": 1}}, "grinning": {"_count": 5, "from": {"_count": 1}, "": {"_count": 3}, "broadly": {"_count": 1}}, "entrance": {"_count": 1, "": {"_count": 1}}, "tell": {"_count": 1, "me": {"_count": 1}}, "wander": {"_count": 1, "about": {"_count": 1}}, "rejoin": {"_count": 1, "the": {"_count": 1}}, "closely": {"_count": 6, "": {"_count": 4}, "as": {"_count": 1}, "for": {"_count": 1}}, "forcing": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "dives": {"_count": 1, "were": {"_count": 1}}, "Ravenclaw": {"_count": 1, "would": {"_count": 1}}, "HARRY": {"_count": 1, "THIS": {"_count": 1}}, "rather": {"_count": 2, "than": {"_count": 1}, "pityingly": {"_count": 1}}, "shed": {"_count": 1, "have": {"_count": 1}}, "than": {"_count": 6, "to": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "old": {"_count": 1}, "usual": {"_count": 1}, "inventing": {"_count": 1}}, "recognized": {"_count": 2, "the": {"_count": 1}, "Snape": {"_count": 1}}, "prepare": {"_count": 1, "Buckbeaks": {"_count": 1}}, "Buckbeak": {"_count": 1, "spat": {"_count": 1}}, "walking": {"_count": 2, "back": {"_count": 1}, "along": {"_count": 1}}, "some": {"_count": 8, "gold": {"_count": 1}, "Owl": {"_count": 1}, "": {"_count": 1}, "craning": {"_count": 1}, "with": {"_count": 1}, "said": {"_count": 1}, "ten": {"_count": 1}, "advice": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "downstairs": {"_count": 1, "trying": {"_count": 1}}, "think": {"_count": 3, "he": {"_count": 1}, "hes": {"_count": 1}, "of": {"_count": 1}}, "blubber": {"_count": 1, "": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "clearly": {"_count": 1, "thinking": {"_count": 1}}, "clubs": {"_count": 1, "raised": {"_count": 1}}, "halfblinded": {"_count": 1, "by": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "trotted": {"_count": 1, "Cornelius": {"_count": 1}}, "Scabbers": {"_count": 1, "shut": {"_count": 1}}, "farther": {"_count": 1, "underground": {"_count": 1}}, "clutching": {"_count": 2, "his": {"_count": 2}}, "Crookshanks": {"_count": 1, "on": {"_count": 1}}, "collide": {"_count": 1, "with": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "escaping": {"_count": 1, "": {"_count": 1}}, "twelve": {"_count": 1, "years": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "transform": {"_count": 1, "": {"_count": 1}}, "wouldnt": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "hands": {"_count": 1, "outstretched": {"_count": 1}}, "Snapes": {"_count": 2, "head": {"_count": 1}, "eyes": {"_count": 1}}, "Pettigrew": {"_count": 1, "had": {"_count": 1}}, "breathing": {"_count": 1, "but": {"_count": 1}}, "first": {"_count": 3, "": {"_count": 2}, "Hed": {"_count": 1}}, "bending": {"_count": 1, "over": {"_count": 1}}, "tonight": {"_count": 2, "": {"_count": 2}}, "Sirius": {"_count": 2, "has": {"_count": 1}, "is": {"_count": 1}}, "across": {"_count": 12, "the": {"_count": 12}}, "panting": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "ter": {"_count": 3, "be": {"_count": 1}, "remember": {"_count": 1}, "let": {"_count": 1}}, "bowl": {"_count": 1, "Harry": {"_count": 1}}, "dragging": {"_count": 1, "Buckbeak": {"_count": 1}}, "steady": {"_count": 1, "": {"_count": 1}}, "better": {"_count": 3, "": {"_count": 1}, "their": {"_count": 1}, "looking": {"_count": 1}}, "sitting": {"_count": 6, "up": {"_count": 1}, "here": {"_count": 1}, "on": {"_count": 1}, "with": {"_count": 1}, "bolt": {"_count": 1}, "there": {"_count": 1}}, "Prongs": {"_count": 1, "": {"_count": 1}}, "come": {"_count": 3, "back": {"_count": 2}, "up": {"_count": 1}}, "aghast": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 4, "increase": {"_count": 1}, "not": {"_count": 1}, "I": {"_count": 1}, "be": {"_count": 1}}, "truly": {"_count": 3, "happy": {"_count": 1}, "invulnerable": {"_count": 1}, "invincible": {"_count": 1}}, "permission": {"_count": 1, "to": {"_count": 1}}, "try": {"_count": 4, "as": {"_count": 1}, "sniggered": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "limping": {"_count": 1, "across": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "But": {"_count": 3, "before": {"_count": 1}, "how": {"_count": 1}, "Harry": {"_count": 1}}, "scrambled": {"_count": 1, "out": {"_count": 1}}, "fall": {"_count": 2, "to": {"_count": 2}}, "wherever": {"_count": 2, "he": {"_count": 2}}, "Harrys": {"_count": 2, "owl": {"_count": 1}, "scar": {"_count": 1}}, "loaded": {"_count": 1, "his": {"_count": 1}}, "Wormtail": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "escape": {"_count": 2, "on": {"_count": 1}, "me": {"_count": 1}}, "smuggling": {"_count": 1, "doughnuts": {"_count": 1}}, "safely": {"_count": 2, "onto": {"_count": 1}, "to": {"_count": 1}}, "are": {"_count": 5, "you": {"_count": 4}, "genuine": {"_count": 1}}, "youre": {"_count": 2, "going": {"_count": 1}, "not": {"_count": 1}}, "clamped": {"_count": 1, "firmly": {"_count": 1}}, "stand": {"_count": 1, "up": {"_count": 1}}, "itching": {"_count": 1, "to": {"_count": 1}}, "intense": {"_count": 1, "suffering": {"_count": 1}}, "seriously": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "if": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "their": {"_count": 5, "shoulders": {"_count": 1}, "letters": {"_count": 1}, "arms": {"_count": 1}, "voices": {"_count": 1}, "incomprehensible": {"_count": 1}}, "magnetically": {"_count": 1, "onward": {"_count": 1}}, "happy": {"_count": 2, "": {"_count": 1}, "memories": {"_count": 1}}, "excitedly": {"_count": 1, "that": {"_count": 1}}, "weve": {"_count": 2, "got": {"_count": 1}, "been": {"_count": 1}}, "nice": {"_count": 1, "odds": {"_count": 1}}, "thrusting": {"_count": 1, "Omnioculars": {"_count": 1}}, "thats": {"_count": 1, "him": {"_count": 1}}, "gesticulating": {"_count": 1, "toward": {"_count": 1}}, "full": {"_count": 4, "in": {"_count": 2}, "of": {"_count": 1}, "on": {"_count": 1}}, "Look": {"_count": 1, "at": {"_count": 1}}, "vanish": {"_count": 1, "with": {"_count": 1}}, "moving": {"_count": 3, "around": {"_count": 1}, "forward": {"_count": 1}, "through": {"_count": 1}}, "forget": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "calling": {"_count": 1, "from": {"_count": 1}}, "does": {"_count": 1, "he": {"_count": 1}}, "frightening": {"_count": 1, "": {"_count": 1}}, "raised": {"_count": 1, "it": {"_count": 1}}, "Moodys": {"_count": 2, "keeping": {"_count": 1}, "fear": {"_count": 1}}, "till": {"_count": 1, "Thursday": {"_count": 1}}, "halfway": {"_count": 1, "along": {"_count": 1}}, "her": {"_count": 15, "tail": {"_count": 1}, "badges": {"_count": 1}, "wand": {"_count": 2}, "neck": {"_count": 1}, "wide": {"_count": 2}, "face": {"_count": 2}, "mouth": {"_count": 1}, "bright": {"_count": 1}, "hands": {"_count": 1}, "lips": {"_count": 2}, "beautiful": {"_count": 1}}, "nothing": {"_count": 2, "worked": {"_count": 1}, "but": {"_count": 1}}, "washing": {"_count": 1, "himself": {"_count": 1}}, "wear": {"_count": 1, "once": {"_count": 1}}, "openmouthed": {"_count": 2, "": {"_count": 2}}, "Im": {"_count": 4, "sure": {"_count": 2}, "not": {"_count": 1}, "the": {"_count": 1}}, "going": {"_count": 5, "down": {"_count": 1}, "about": {"_count": 1}, "on": {"_count": 1}, "along": {"_count": 1}, "up": {"_count": 1}}, "killed": {"_count": 2, "": {"_count": 2}}, "dead": {"_count": 5, "": {"_count": 1}, "someone": {"_count": 1}, "ever": {"_count": 1}, "and": {"_count": 1}, "anyway": {"_count": 1}}, "Oh": {"_count": 1, "if": {"_count": 1}}, "closed": {"_count": 2, "ranks": {"_count": 1}, "shutting": {"_count": 1}}, "stuffing": {"_count": 1, "crisps": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "grow": {"_count": 1, "up": {"_count": 1}}, "whats": {"_count": 3, "happened": {"_count": 2}, "happening": {"_count": 1}}, "posted": {"_count": 1, "on": {"_count": 1}}, "someones": {"_count": 1, "entered": {"_count": 1}}, "being": {"_count": 5, "champion": {"_count": 1}, "halfgiant": {"_count": 1}, "led": {"_count": 1}, "a": {"_count": 2}}, "intoning": {"_count": 1, "ignore": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "squeaked": {"_count": 1, "Colin": {"_count": 1}}, "very": {"_count": 6, "intently": {"_count": 1}, "hard": {"_count": 1}, "much": {"_count": 1}, "distracting": {"_count": 1}, "dull": {"_count": 1}, "tightly": {"_count": 1}}, "wands": {"_count": 2, "to": {"_count": 1}, "up": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "miss": {"_count": 1, "Sirius": {"_count": 1}}, "quake": {"_count": 1, "": {"_count": 1}}, "enter": {"_count": 1, "that": {"_count": 1}}, "Rons": {"_count": 1, "jealousy": {"_count": 1}}, "eyes": {"_count": 2, "full": {"_count": 1}, "opening": {"_count": 1}}, "every": {"_count": 5, "time": {"_count": 2}, "ounce": {"_count": 1}, "bit": {"_count": 1}, "few": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "is": {"_count": 2, "to": {"_count": 1}, "during": {"_count": 1}}, "blankly": {"_count": 1, "": {"_count": 1}}, "started": {"_count": 1, "chucking": {"_count": 1}}, "luck": {"_count": 4, "as": {"_count": 2}, "for": {"_count": 1}, "said": {"_count": 1}}, "swim": {"_count": 1, "strangely": {"_count": 1}}, "waiting": {"_count": 3, "for": {"_count": 1}, "But": {"_count": 1}, "before": {"_count": 1}}, "zero": {"_count": 1, "Rons": {"_count": 1}}, "anticipation": {"_count": 1, "all": {"_count": 1}}, "bearing": {"_count": 1, "a": {"_count": 1}}, "oh": {"_count": 2, "no": {"_count": 1}, "all": {"_count": 1}}, "no": {"_count": 9, "more": {"_count": 1}, "stroke": {"_count": 1}, "sudden": {"_count": 1}, "pleasure": {"_count": 2}, "gasped": {"_count": 1}, "problem": {"_count": 1}, "flash": {"_count": 1}, "remorse": {"_count": 1}}, "wearing": {"_count": 1, "Dobbys": {"_count": 1}}, "life": {"_count": 1, "had": {"_count": 1}}, "sometimes": {"_count": 1, "sir": {"_count": 1}}, "staring": {"_count": 2, "pointedly": {"_count": 1}, "at": {"_count": 1}}, "give": {"_count": 2, "a": {"_count": 1}, "Lucius": {"_count": 1}}, "Vicky": {"_count": 1, "yet": {"_count": 1}}, "arrive": {"_count": 3, "": {"_count": 1}, "then": {"_count": 1}, "said": {"_count": 1}}, "find": {"_count": 3, "out": {"_count": 2}, "the": {"_count": 1}}, "Vickyl": {"_count": 1, "Hermione": {"_count": 1}}, "laugh": {"_count": 2, "": {"_count": 2}}, "say": {"_count": 3, "brusquely": {"_count": 1}, "YouKnowWhos": {"_count": 1}, "it": {"_count": 1}}, "apar": {"_count": 1, "from": {"_count": 1}}, "This": {"_count": 2, "is": {"_count": 1}, "bloke": {"_count": 1}}, "silently": {"_count": 2, "go": {"_count": 1}, "from": {"_count": 1}}, "thrown": {"_count": 2, "out": {"_count": 2}}, "slightly": {"_count": 7, "": {"_count": 3}, "off": {"_count": 1}, "crosseyed": {"_count": 1}, "out": {"_count": 1}, "hunched": {"_count": 1}}, "avoid": {"_count": 1, "an": {"_count": 1}}, "punishments": {"_count": 1, "or": {"_count": 1}}, "catch": {"_count": 1, "his": {"_count": 1}}, "gazing": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "eagerly": {"_count": 1, "pointing": {"_count": 1}}, "whatsoever": {"_count": 1, "": {"_count": 1}}, "pointed": {"_count": 1, "excitedly": {"_count": 1}}, "struggle": {"_count": 2, "through": {"_count": 1}, "to": {"_count": 1}}, "wild": {"_count": 1, "greenhaired": {"_count": 1}}, "fortyseven": {"_count": 1, "points": {"_count": 1}}, "forty": {"_count": 1, "points": {"_count": 1}}, "dismiss": {"_count": 1, "a": {"_count": 1}}, "Why": {"_count": 1, "did": {"_count": 1}}, "die": {"_count": 2, "": {"_count": 2}}, "letting": {"_count": 1, "Snape": {"_count": 1}}, "admire": {"_count": 1, "Crouch": {"_count": 1}}, "since": {"_count": 8, "the": {"_count": 2}, "Saturday": {"_count": 1}, "Siriuss": {"_count": 1}, "Sirius": {"_count": 1}, "he": {"_count": 1}, "Dumbledores": {"_count": 1}, "": {"_count": 1}}, "digging": {"_count": 1, "from": {"_count": 1}}, "closer": {"_count": 2, "though": {"_count": 1}, "Harry": {"_count": 1}}, "lie": {"_count": 1, "still": {"_count": 1}}, "against": {"_count": 5, "a": {"_count": 1}, "me": {"_count": 1}, "continued": {"_count": 1}, "telling": {"_count": 1}, "his": {"_count": 1}}, "taken": {"_count": 1, "aback": {"_count": 1}}, "lure": {"_count": 1, "yeh": {"_count": 1}}, "instructions": {"_count": 2, "": {"_count": 1}, "Cornelius": {"_count": 1}}, "couldnt": {"_count": 1, "they": {"_count": 1}}, "practice": {"_count": 1, "for": {"_count": 1}}, "Voldemorts": {"_count": 4, "voice": {"_count": 1}, "got": {"_count": 1}, "thoughts": {"_count": 2}}, "taking": {"_count": 2, "him": {"_count": 1}, "in": {"_count": 1}}, "whose": {"_count": 1, "door": {"_count": 1}}, "torture": {"_count": 1, "countless": {"_count": 1}}, "indicating": {"_count": 1, "the": {"_count": 1}}, "sweating": {"_count": 1, "in": {"_count": 1}}, "Mother": {"_count": 1, "I": {"_count": 1}}, "gave": {"_count": 4, "a": {"_count": 2}, "him": {"_count": 1}, "his": {"_count": 1}}, "kissing": {"_count": 1, "Florence": {"_count": 1}}, "afterward": {"_count": 1, "he": {"_count": 1}}, "lose": {"_count": 1, "his": {"_count": 1}}, "tapping": {"_count": 2, "their": {"_count": 1}, "it": {"_count": 1}}, "risk": {"_count": 1, "his": {"_count": 1}}, "Ced": {"_count": 1, "": {"_count": 1}}, "fill": {"_count": 1, "in": {"_count": 1}}, "northwest": {"_count": 1, "": {"_count": 1}}, "smiled": {"_count": 1, "and": {"_count": 1}}, "onward": {"_count": 1, "in": {"_count": 1}}, "hit": {"_count": 2, "him": {"_count": 1}, "by": {"_count": 1}}, "glinting": {"_count": 1, "in": {"_count": 1}}, "pushing": {"_count": 1, "a": {"_count": 1}}, "did": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 1}, "Malfoy": {"_count": 1}}, "convinced": {"_count": 1, "Bertha": {"_count": 1}}, "ruthlessly": {"_count": 1, "forward": {"_count": 1}}, "fighting": {"_count": 1, "to": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "hearing": {"_count": 1, "them": {"_count": 1}}, "raise": {"_count": 2, "his": {"_count": 2}}, "roughly": {"_count": 1, "and": {"_count": 1}}, "Whats": {"_count": 1, "happened": {"_count": 1}}, "No": {"_count": 1, "I": {"_count": 1}}, "pushed": {"_count": 1, "a": {"_count": 1}}, "have": {"_count": 5, "much": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 2}, "that": {"_count": 1}}, "shortly": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "paleskinned": {"_count": 1, "slightly": {"_count": 1}}, "smell": {"_count": 1, "fresh": {"_count": 1}}, "beyond": {"_count": 2, "the": {"_count": 1}, "any": {"_count": 1}}, "rest": {"_count": 1, "": {"_count": 1}}, "stronger": {"_count": 1, "than": {"_count": 1}}, "returned": {"_count": 1, "his": {"_count": 1}}, "became": {"_count": 1, "hazy": {"_count": 1}}, "plainly": {"_count": 3, "for": {"_count": 1}, "before": {"_count": 1}, "again": {"_count": 1}}, "refusing": {"_count": 1, "pointblank": {"_count": 1}}, "regaining": {"_count": 1, "the": {"_count": 1}}, "palpable": {"_count": 1, "his": {"_count": 1}}, "questions": {"_count": 1, "or": {"_count": 1}}, "sit": {"_count": 1, "in": {"_count": 1}}, "havent": {"_count": 2, "we": {"_count": 1}, "you": {"_count": 1}}, "shocked": {"_count": 1, "": {"_count": 1}}, "long": {"_count": 2, "after": {"_count": 1}, "": {"_count": 1}}, "well": {"_count": 2, "or": {"_count": 1}, "considering": {"_count": 1}}, "somehow": {"_count": 1, "": {"_count": 1}}, "muttering": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "grinding": {"_count": 1, "their": {"_count": 1}}, "impossible": {"_count": 1, "to": {"_count": 1}}, "why": {"_count": 5, "hadnt": {"_count": 1}, "you": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 2}}, "news": {"_count": 1, "had": {"_count": 1}}, "nobody": {"_count": 2, "would": {"_count": 1}, "knew": {"_count": 1}}, "watch": {"_count": 2, "him": {"_count": 1}, "while": {"_count": 1}}, "powerless": {"_count": 1, "to": {"_count": 1}}, "hovering": {"_count": 1, "over": {"_count": 1}}, "Think": {"_count": 1, "": {"_count": 1}}, "gripping": {"_count": 2, "his": {"_count": 2}}, "instinctively": {"_count": 1, "raising": {"_count": 1}}, "perfectly": {"_count": 1, "": {"_count": 1}}, "start": {"_count": 1, "raging": {"_count": 1}}, "Mrs": {"_count": 2, "Figg": {"_count": 1}, "Weasley": {"_count": 1}}, "stifling": {"_count": 1, "all": {"_count": 1}}, "unable": {"_count": 2, "to": {"_count": 2}}, "Lupin": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "moved": {"_count": 1}}, "MadEye": {"_count": 1, "said": {"_count": 1}}, "stowing": {"_count": 1, "his": {"_count": 1}}, "bald": {"_count": 2, "pate": {"_count": 1}, "that": {"_count": 1}}, "critically": {"_count": 1, "": {"_count": 1}}, "breathe": {"_count": 1, "Hermione": {"_count": 1}}, "taller": {"_count": 1, "and": {"_count": 1}}, "twice": {"_count": 2, "since": {"_count": 1}, "in": {"_count": 1}}, "either": {"_count": 1, "said": {"_count": 1}}, "warily": {"_count": 1, "": {"_count": 1}}, "absentmindedly": {"_count": 1, "behind": {"_count": 1}}, "hopeful": {"_count": 1, "that": {"_count": 1}}, "yet": {"_count": 2, "no": {"_count": 1}, "": {"_count": 1}}, "planning": {"_count": 1, "to": {"_count": 1}}, "getting": {"_count": 3, "more": {"_count": 1}, "better": {"_count": 1}, "the": {"_count": 1}}, "paround": {"_count": 1, "your": {"_count": 1}}, "thundering": {"_count": 1, "down": {"_count": 1}}, "curiously": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "snogging": {"_count": 1, "a": {"_count": 1}}, "bodily": {"_count": 2, "from": {"_count": 1}, "onto": {"_count": 1}}, "during": {"_count": 4, "dinner": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}}, "evidently": {"_count": 2, "incensed": {"_count": 1}, "for": {"_count": 1}}, "dont": {"_count": 2, "worry": {"_count": 1}, "go": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "aside": {"_count": 3, "and": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "others": {"_count": 1, "lifting": {"_count": 1}}, "strange": {"_count": 2, "bloke": {"_count": 1}, "even": {"_count": 1}}, "borrow": {"_count": 1, "so": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}, "dive": {"_count": 1, "for": {"_count": 1}}, "ordering": {"_count": 1, "goblins": {"_count": 1}}, "gleaming": {"_count": 2, "solidly": {"_count": 1}, "slightly": {"_count": 1}}, "quite": {"_count": 4, "sure": {"_count": 1}, "incomprehensible": {"_count": 1}, "as": {"_count": 1}, "clearly": {"_count": 1}}, "instantly": {"_count": 2, "obvious": {"_count": 1}, "": {"_count": 1}}, "And": {"_count": 2, "only": {"_count": 1}, "you": {"_count": 1}}, "He": {"_count": 10, "had": {"_count": 3}, "could": {"_count": 1}, "felt": {"_count": 1}, "lowered": {"_count": 1}, "fell": {"_count": 1}, "would": {"_count": 1}, "hurtled": {"_count": 1}, "gripped": {"_count": 1}}, "mad": {"_count": 1, "or": {"_count": 1}}, "filled": {"_count": 2, "their": {"_count": 1}, "Harry": {"_count": 1}}, "Seamus": {"_count": 1, "looked": {"_count": 1}}, "overhearing": {"_count": 1, "what": {"_count": 1}}, "softly": {"_count": 1, "": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "however": {"_count": 1, "and": {"_count": 1}}, "stretching": {"_count": 1, "out": {"_count": 1}}, "turning": {"_count": 2, "out": {"_count": 1}, "up": {"_count": 1}}, "send": {"_count": 1, "it": {"_count": 1}}, "brave": {"_count": 1, "": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "watching": {"_count": 1, "his": {"_count": 1}}, "unbalanced": {"_count": 1, "and": {"_count": 1}}, "having": {"_count": 2, "Lord": {"_count": 1}, "a": {"_count": 1}}, "soak": {"_count": 1, "your": {"_count": 1}}, "angry": {"_count": 1, "by": {"_count": 1}}, "months": {"_count": 1, "ago": {"_count": 1}}, "thought": {"_count": 1, "they": {"_count": 1}}, "reproachfully": {"_count": 1, "": {"_count": 1}}, "carted": {"_count": 1, "off": {"_count": 1}}, "adding": {"_count": 1, "the": {"_count": 1}}, "rattling": {"_count": 1, "his": {"_count": 1}}, "singeing": {"_count": 1, "his": {"_count": 1}}, "know": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 2}}, "wonder": {"_count": 1, "": {"_count": 1}}, "stopped": {"_count": 1, "him": {"_count": 1}}, "anxious": {"_count": 1, "glances": {"_count": 1}}, "authority": {"_count": 1, "": {"_count": 1}}, "lurked": {"_count": 1, "Crabbe": {"_count": 1}}, "turns": {"_count": 1, "out": {"_count": 1}}, "yell": {"_count": 1, "hes": {"_count": 1}}, "wideeyed": {"_count": 1, "": {"_count": 1}}, "rip": {"_count": 1, "off": {"_count": 1}}, "evry": {"_count": 1, "day": {"_count": 1}}, "abou": {"_count": 1, "us": {"_count": 1}}, "thirty": {"_count": 1, "seconds": {"_count": 1}}, "coldly": {"_count": 1, "his": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}, "earlier": {"_count": 1, "as": {"_count": 1}}, "seeing": {"_count": 1, "Angelinas": {"_count": 1}}, "paralyzing": {"_count": 1, "his": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "shimmering": {"_count": 1, "in": {"_count": 1}}, "saw": {"_count": 1, "a": {"_count": 1}}, "might": {"_count": 1, "spill": {"_count": 1}}, "past": {"_count": 2, "under": {"_count": 1}, "the": {"_count": 1}}, "later": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "threw": {"_count": 1, "on": {"_count": 1}}, "truthfully": {"_count": 1, "that": {"_count": 1}}, "hell": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "lying": {"_count": 3, "unconscious": {"_count": 1}, "on": {"_count": 1}, "apparently": {"_count": 1}}, "bringing": {"_count": 1, "him": {"_count": 1}}, "cheer": {"_count": 1, "her": {"_count": 1}}, "Er": {"_count": 1, "said": {"_count": 1}}, "always": {"_count": 1, "looking": {"_count": 1}}, "squash": {"_count": 1, "him": {"_count": 1}}, "deliberately": {"_count": 1, "and": {"_count": 1}}, "doing": {"_count": 2, "anything": {"_count": 2}}, "beside": {"_count": 1, "the": {"_count": 1}}, "carrying": {"_count": 4, "a": {"_count": 3}, "the": {"_count": 1}}, "room": {"_count": 1, "to": {"_count": 1}}, "am": {"_count": 2, "I": {"_count": 2}}, "given": {"_count": 1, "the": {"_count": 1}}, "resign": {"_count": 1, "Ginny": {"_count": 1}}, "incandescent": {"_count": 1, "with": {"_count": 1}}, "asking": {"_count": 1, "him": {"_count": 1}}, "Bode": {"_count": 1, "couldnt": {"_count": 1}}, "move": {"_count": 3, "or": {"_count": 1}, "sideways": {"_count": 1}, "ahead": {"_count": 1}}, "framed": {"_count": 1, "in": {"_count": 1}}, "suitable": {"_count": 1, "": {"_count": 1}}, "unblinkingly": {"_count": 1, "through": {"_count": 1}}, "snapped": {"_count": 1, "Umbridge": {"_count": 1}}, "sprang": {"_count": 1, "into": {"_count": 1}}, "McGonagall": {"_count": 1, "widened": {"_count": 1}}, "headfirst": {"_count": 1, "into": {"_count": 1}}, "hopefully": {"_count": 1, "though": {"_count": 1}}, "within": {"_count": 2, "seconds": {"_count": 2}}, "gag": {"_count": 1, "choking": {"_count": 1}}, "Leave": {"_count": 1, "him": {"_count": 1}}, "ALONE": {"_count": 1, "": {"_count": 1}}, "apologize": {"_count": 1, "Lily": {"_count": 1}}, "white": {"_count": 1, "with": {"_count": 1}}, "prefect": {"_count": 1, "in": {"_count": 1}}, "isnt": {"_count": 4, "it": {"_count": 3}, "she": {"_count": 1}}, "simply": {"_count": 1, "going": {"_count": 1}}, "twenty": {"_count": 2, "": {"_count": 1}, "feet": {"_count": 1}}, "take": {"_count": 1, "from": {"_count": 1}}, "Did": {"_count": 1, "Madame": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "English": {"_count": 2, "lessons": {"_count": 1}, "yeah": {"_count": 1}}, "apologetically": {"_count": 1, "": {"_count": 1}}, "encouragingly": {"_count": 2, "": {"_count": 2}}, "personally": {"_count": 1, "in": {"_count": 1}}, "become": {"_count": 1, "an": {"_count": 1}}, "The": {"_count": 7, "man": {"_count": 1}, "feast": {"_count": 1}, "Dark": {"_count": 1}, "three": {"_count": 1}, "Prophet": {"_count": 1}, "Tales": {"_count": 1}, "ring": {"_count": 1}}, "double": {"_count": 2, "over": {"_count": 2}}, "anyway": {"_count": 1, "said": {"_count": 1}}, "quills": {"_count": 1, "scratched": {"_count": 1}}, "jovially": {"_count": 1, "and": {"_count": 1}}, "save": {"_count": 3, "Sirius": {"_count": 1}, "him": {"_count": 1}, "Norbert": {"_count": 1}}, "frantic": {"_count": 1, "to": {"_count": 1}}, "ttto": {"_count": 1, "tell": {"_count": 1}}, "upright": {"_count": 3, "Hermione": {"_count": 1}, "so": {"_count": 1}, "again": {"_count": 1}}, "backed": {"_count": 1, "into": {"_count": 1}}, "Yeah": {"_count": 1, "but": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "set": {"_count": 2, "his": {"_count": 1}, "down": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "has": {"_count": 1, "he": {"_count": 1}}, "bellowed": {"_count": 1, "REDUCTOl": {"_count": 1}}, "tiny": {"_count": 1, "lights": {"_count": 1}}, "thinking": {"_count": 3, "properly": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "squarely": {"_count": 1, "on": {"_count": 1}}, "realized": {"_count": 1, "even": {"_count": 1}}, "pain": {"_count": 1, "": {"_count": 1}}, "flew": {"_count": 2, "open": {"_count": 1}, "high": {"_count": 1}}, "torch": {"_count": 1, "lit": {"_count": 1}}, "little": {"_count": 1, "baby": {"_count": 1}}, "kill": {"_count": 5, "us": {"_count": 1}, "and": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 2}}, "magisterially": {"_count": 1, "over": {"_count": 1}}, "directly": {"_count": 1, "and": {"_count": 1}}, "hurt": {"_count": 1, "him": {"_count": 1}}, "quietly": {"_count": 2, "": {"_count": 2}}, "stir": {"_count": 1, "behind": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "realize": {"_count": 3, "that": {"_count": 1}, "more": {"_count": 1}, "it": {"_count": 1}}, "She": {"_count": 2, "was": {"_count": 1}, "gave": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "born": {"_count": 2, "as": {"_count": 1}, "no": {"_count": 1}}, "greeting": {"_count": 1, "him": {"_count": 1}}, "properly": {"_count": 1, "since": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "dislike": {"_count": 1, "Fudges": {"_count": 1}}, "announcing": {"_count": 1, "that": {"_count": 1}}, "transferred": {"_count": 1, "to": {"_count": 1}}, "cast": {"_count": 1, "around": {"_count": 1}}, "moments": {"_count": 1, "later": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}, "finished": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "invincible": {"_count": 2, "You": {"_count": 1}, "": {"_count": 1}}, "rumors": {"_count": 1, "that": {"_count": 1}}, "persuade": {"_count": 2, "him": {"_count": 1}, "this": {"_count": 1}}, "see": {"_count": 1, "he": {"_count": 1}}, "temporarily": {"_count": 2, "of": {"_count": 1}, "mesmerized": {"_count": 1}}, "nor": {"_count": 2, "could": {"_count": 1}, "any": {"_count": 1}}, "\u2018Witherwings": {"_count": 1, "for": {"_count": 1}}, "upon": {"_count": 3, "your": {"_count": 1}, "peoples": {"_count": 1}, "Voldemort": {"_count": 1}}, "houseroom": {"_count": 1, "": {"_count": 1}}, "solicitously": {"_count": 1, "": {"_count": 1}}, "Neither": {"_count": 1, "can": {"_count": 1}}, "school": {"_count": 1, "robes": {"_count": 1}}, "burn": {"_count": 1, "": {"_count": 1}}, "speaking": {"_count": 1, "bracing": {"_count": 1}}, "goodbye": {"_count": 1, "": {"_count": 1}}, "fix": {"_count": 1, "something": {"_count": 1}}, "load": {"_count": 1, "his": {"_count": 1}}, "Zabini": {"_count": 1, "collapsed": {"_count": 1}}, "remained": {"_count": 1, "hidden": {"_count": 1}}, "sternly": {"_count": 1, "": {"_count": 1}}, "teach": {"_count": 2, "Defense": {"_count": 1}, "": {"_count": 1}}, "simultaneously": {"_count": 1, "of": {"_count": 1}}, "FatheA": {"_count": 1, "cackled": {"_count": 1}}, "lumbering": {"_count": 1, "off": {"_count": 1}}, "croon": {"_count": 1, "over": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "genially": {"_count": 1, "in": {"_count": 1}}, "fast": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "asleep": {"_count": 1}}, "stealing": {"_count": 1, "everything": {"_count": 1}}, "swill": {"_count": 1, "them": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "slip": {"_count": 2, "his": {"_count": 1}, "an": {"_count": 1}}, "permanently": {"_count": 1, "": {"_count": 1}}, "ordinary": {"_count": 1, "": {"_count": 1}}, "peering": {"_count": 1, "over": {"_count": 1}}, "nasty": {"_count": 1, "looks": {"_count": 1}}, "play": {"_count": 2, "at": {"_count": 1}, "regularly": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "devoutly": {"_count": 1, "thankful": {"_count": 1}}, "looked": {"_count": 3, "faintly": {"_count": 1}, "simply": {"_count": 1}, "at": {"_count": 1}}, "resentfully": {"_count": 1, "as": {"_count": 1}}, "Slughorn": {"_count": 1, "led": {"_count": 1}}, "purposefully": {"_count": 1, "into": {"_count": 1}}, "McLaggen": {"_count": 1, "makes": {"_count": 1}}, "agrees": {"_count": 1, "that": {"_count": 1}}, "prey": {"_count": 1, "in": {"_count": 1}}, "\u2018Prince": {"_count": 1, "": {"_count": 1}}, "stonyfaced": {"_count": 1, "": {"_count": 1}}, "spinning": {"_count": 1, "very": {"_count": 1}}, "your": {"_count": 1, "support": {"_count": 1}}, "several": {"_count": 3, "seconds": {"_count": 1}, "hands": {"_count": 1}, "feet": {"_count": 1}}, "admiring": {"_count": 2, "looks": {"_count": 2}}, "oblivious": {"_count": 1, "to": {"_count": 1}}, "lurking": {"_count": 1, "somewhere": {"_count": 1}}, "run": {"_count": 2, "amok": {"_count": 1}, "straight": {"_count": 1}}, "anxiously": {"_count": 2, "but": {"_count": 1}, "from": {"_count": 1}}, "didn": {"_count": 1, "get": {"_count": 1}}, "lyin": {"_count": 1, "there": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "firmly": {"_count": 2, "back": {"_count": 1}, "": {"_count": 1}}, "messages": {"_count": 1, "or": {"_count": 1}}, "cornered": {"_count": 2, "now": {"_count": 1}, "in": {"_count": 1}}, "abandon": {"_count": 1, "the": {"_count": 1}}, "bleakly": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 1, "Slughorn": {"_count": 1}}, "consolingly": {"_count": 1, "on": {"_count": 1}}, "smirked": {"_count": 1, "at": {"_count": 1}}, "uniquely": {"_count": 1, "deadly": {"_count": 1}}, "unawares": {"_count": 1, "": {"_count": 1}}, "merely": {"_count": 1, "grunting": {"_count": 1}}, "happier": {"_count": 2, "than": {"_count": 2}}, "drenched": {"_count": 1, "in": {"_count": 1}}, "wave": {"_count": 2, "after": {"_count": 1}, "then": {"_count": 1}}, "probably": {"_count": 1, "for": {"_count": 1}}, "unendurable": {"_count": 2, "pain": {"_count": 2}}, "opening": {"_count": 1, "his": {"_count": 1}}, "falling": {"_count": 2, "backward": {"_count": 1}, "from": {"_count": 1}}, "trailing": {"_count": 1, "waterlogged": {"_count": 1}}, "should": {"_count": 1, "he": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "flush": {"_count": 1, "in": {"_count": 1}}, "silent": {"_count": 1, "and": {"_count": 1}}, "paralyzed": {"_count": 1, "against": {"_count": 1}}, "It": {"_count": 3, "was": {"_count": 2}, "made": {"_count": 1}}, "yelled": {"_count": 1, "Incendiol": {"_count": 1}}, "sneering": {"_count": 1, "": {"_count": 1}}, "screech": {"_count": 1, "Harry": {"_count": 1}}, "feeling": {"_count": 1, "the": {"_count": 1}}, "lifted": {"_count": 1, "known": {"_count": 1}}, "To": {"_count": 1, "the": {"_count": 1}}, "Fang": {"_count": 1, "began": {"_count": 1}}, "upward": {"_count": 1, "": {"_count": 1}}, "sobs": {"_count": 1, "and": {"_count": 1}}, "whispering": {"_count": 1, "wondering": {"_count": 1}}, "unconscious": {"_count": 1, "on": {"_count": 1}}, "horribly": {"_count": 1, "of": {"_count": 1}}, "casting": {"_count": 1, "nervous": {"_count": 1}}, "startled": {"_count": 1, "the": {"_count": 1}}, "displayed": {"_count": 1, "nothing": {"_count": 1}}, "breathless": {"_count": 1, "and": {"_count": 1}}, "many": {"_count": 1, "enemies": {"_count": 1}}, "forevermore": {"_count": 1, "": {"_count": 1}}, "venerable": {"_count": 1, "and": {"_count": 1}}, "rage": {"_count": 1, "against": {"_count": 1}}, "There": {"_count": 2, "could": {"_count": 1}, "was": {"_count": 1}}, "retrieve": {"_count": 1, "it": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "giving": {"_count": 1, "him": {"_count": 1}}, "brooms": {"_count": 1, "were": {"_count": 1}}, "yells": {"_count": 1, "around": {"_count": 1}}, "slam": {"_count": 1, "his": {"_count": 1}}, "barely": {"_count": 2, "maintaining": {"_count": 1}, "noticing": {"_count": 1}}, "groped": {"_count": 1, "for": {"_count": 1}}, "none": {"_count": 1, "too": {"_count": 1}}, "Ive": {"_count": 2, "checked": {"_count": 1}, "had": {"_count": 1}}, "change": {"_count": 1, "targets": {"_count": 1}}, "seeming": {"_count": 1, "to": {"_count": 1}}, "cry": {"_count": 2, "out": {"_count": 2}}, "dispelling": {"_count": 1, "the": {"_count": 1}}, "surprised": {"_count": 1, "The": {"_count": 1}}, "fought": {"_count": 1, "him": {"_count": 1}}, "stumping": {"_count": 1, "in": {"_count": 1}}, "wish": {"_count": 1, "they": {"_count": 1}}, "Dont": {"_count": 1, "": {"_count": 1}}, "steadily": {"_count": 1, "he": {"_count": 1}}, "Her": {"_count": 1, "future": {"_count": 1}}, "hey": {"_count": 1, "": {"_count": 1}}, "Bill": {"_count": 2, "did": {"_count": 1}, "said": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "longest": {"_count": 1, "if": {"_count": 1}}, "opposite": {"_count": 1, "Hermione": {"_count": 1}}, "waved": {"_count": 1, "her": {"_count": 1}}, "possess": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "wand": {"_count": 1, "outstretched": {"_count": 1}}, "bore": {"_count": 1, "a": {"_count": 1}}, "everything": {"_count": 1, "but": {"_count": 1}}, "years": {"_count": 1, "before": {"_count": 1}}, "mere": {"_count": 1, "hours": {"_count": 1}}, "tuck": {"_count": 1, "up": {"_count": 1}}, "raising": {"_count": 1, "its": {"_count": 1}}, "conscious": {"_count": 1, "Kreacher": {"_count": 1}}, "scribbling": {"_count": 1, "on": {"_count": 1}}, "confirmed": {"_count": 1, "his": {"_count": 1}}, "expanding": {"_count": 1, "inside": {"_count": 1}}, "sensed": {"_count": 1, "perhaps": {"_count": 1}}, "sending": {"_count": 1, "him": {"_count": 1}}, "YouKnowWho": {"_count": 1, "please": {"_count": 1}}, "relentlessly": {"_count": 1, "": {"_count": 1}}, "lay": {"_count": 1, "down": {"_count": 1}}, "somewhere": {"_count": 1, "": {"_count": 1}}, "apparently": {"_count": 1, "without": {"_count": 1}}, "hiding": {"_count": 1, "anything": {"_count": 1}}, "break": {"_count": 1, "out": {"_count": 1}}, "yets": {"_count": 1, "one": {"_count": 1}}, "gladly": {"_count": 2, "its": {"_count": 1}, "and": {"_count": 1}}, "finally": {"_count": 1, "sitting": {"_count": 1}}, "rooted": {"_count": 1, "to": {"_count": 1}}, "felt": {"_count": 2, "cold": {"_count": 1}, "like": {"_count": 1}}, "turn": {"_count": 2, "and": {"_count": 1}, "Petunia": {"_count": 1}}, "powerful": {"_count": 1, "muscular": {"_count": 1}}, "pressing": {"_count": 1, "the": {"_count": 1}}, "indifferent": {"_count": 1, "to": {"_count": 1}}, "scars": {"_count": 1, "to": {"_count": 1}}, "Their": {"_count": 1, "daring": {"_count": 1}}, "crooned": {"_count": 1, "RiddleHermione": {"_count": 1}}, "hardly": {"_count": 1, "knowing": {"_count": 1}}, "V": {"_count": 1, "NO": {"_count": 1}}, "Xenophilius": {"_count": 1, "drew": {"_count": 1}}, "immersing": {"_count": 1, "his": {"_count": 1}}, "waving": {"_count": 1, "it": {"_count": 1}}, "protection": {"_count": 1, "and": {"_count": 1}}, "backtoback": {"_count": 1, "with": {"_count": 1}}, "plus": {"_count": 1, "his": {"_count": 1}}, "obliquely": {"_count": 1, "a": {"_count": 1}}, "carefully": {"_count": 1, "look": {"_count": 1}}, "Bella": {"_count": 1, "Potter": {"_count": 1}}, "projecting": {"_count": 1, "an": {"_count": 1}}, "pale": {"_count": 1, "and": {"_count": 1}}, "shouting": {"_count": 1, "and": {"_count": 1}}, "Cissy": {"_count": 1, "": {"_count": 1}}, "SkeleGro": {"_count": 1, "we": {"_count": 1}}, "yew": {"_count": 1, "and": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "hows": {"_count": 1, "this": {"_count": 1}}, "clapped": {"_count": 1, "his": {"_count": 1}}, "can": {"_count": 1, "move": {"_count": 1}}, "Ted": {"_count": 1, "after": {"_count": 1}}, "press": {"_count": 1, "his": {"_count": 1}}, "terrified": {"_count": 1, "Bellatrix": {"_count": 1}}, "quick": {"_count": 1, "enough": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "Take": {"_count": 1, "care": {"_count": 1}}, "pretty": {"_count": 1, "badly": {"_count": 1}}, "beseechingly": {"_count": 1, "but": {"_count": 1}}, "frozen": {"_count": 1, "in": {"_count": 1}}, "clanking": {"_count": 1, "along": {"_count": 1}}, "shoulder": {"_count": 1, "to": {"_count": 1}}, "speak": {"_count": 1, "before": {"_count": 1}}, "Goyle": {"_count": 1, "leapt": {"_count": 1}}, "yyourself": {"_count": 1, "": {"_count": 1}}, "How": {"_count": 1, "many": {"_count": 1}}, "cruel": {"_count": 1, "and": {"_count": 1}}, "knowing": {"_count": 1, "that": {"_count": 1}}, "head": {"_count": 1, "and": {"_count": 1}}, "close": {"_count": 1, "": {"_count": 1}}, "united": {"_count": 1, "in": {"_count": 1}}, "place": {"_count": 1, "the": {"_count": 1}}, "Sev": {"_count": 1, "hes": {"_count": 1}}, "incoherent": {"_count": 1, "and": {"_count": 1}}, "You": {"_count": 1, "disgust": {"_count": 1}}, "fail": {"_count": 1, "and": {"_count": 1}}, "help": {"_count": 1, "and": {"_count": 1}}, "information": {"_count": 1, "I": {"_count": 1}}, "hoped": {"_count": 1, "to": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "making": {"_count": 1, "scarcely": {"_count": 1}}, "sprightly": {"_count": 1, "and": {"_count": 1}}, "ached": {"_count": 1, "and": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "harder": {"_count": 1, "into": {"_count": 1}}, "stroking": {"_count": 1, "Naginis": {"_count": 1}}, "striding": {"_count": 1, "backward": {"_count": 1}}, "Bellatrix": {"_count": 1, "was": {"_count": 1}}, "Of": {"_count": 1, "course": {"_count": 1}}, "pulling": {"_count": 1, "him": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "nodded": {"_count": 1, "curtly": {"_count": 1}}, "love": {"_count": 1, "": {"_count": 1}}}, "This": {"_count": 489, "boy": {"_count": 3, "was": {"_count": 1}, "needs": {"_count": 1}, "would": {"_count": 1}}, "bunch": {"_count": 1, "were": {"_count": 1}}, "mans": {"_count": 1, "name": {"_count": 1}}, "morning": {"_count": 2, "it": {"_count": 1}, "however": {"_count": 1}}, "is": {"_count": 143, "boring": {"_count": 1}, "it": {"_count": 10}, "Ron": {"_count": 1}, "the": {"_count": 19}, "money": {"_count": 1}, "Harry": {"_count": 3}, "where": {"_count": 2}, "a": {"_count": 11}, "what": {"_count": 4}, "for": {"_count": 1}, "our": {"_count": 4}, "funny": {"_count": 1}, "all": {"_count": 4}, "out": {"_count": 1}, "unbelievable": {"_count": 1}, "an": {"_count": 4}, "just": {"_count": 1}, "called": {"_count": 1}, "Neville": {"_count": 1}, "very": {"_count": 2}, "brilliant": {"_count": 2}, "supposed": {"_count": 1}, "such": {"_count": 1}, "three": {"_count": 1}, "magic": {"_count": 1}, "Amos": {"_count": 1}, "Hermione": {"_count": 1}, "due": {"_count": 1}, "Rita": {"_count": 1}, "no": {"_count": 2}, "ony": {"_count": 1}, "mad": {"_count": 2}, "mostly": {"_count": 1}, "not": {"_count": 6}, "simply": {"_count": 1}, "really": {"_count": 4}, "old": {"_count": 1}, "night": {"_count": 1}, "Alastor": {"_count": 1}, "us": {"_count": 1}, "getting": {"_count": 1}, "school": {"_count": 1}, "your": {"_count": 4}, "urgent": {"_count": 2}, "how": {"_count": 1}, "Firenze": {"_count": 1}, "Hermy": {"_count": 1}, "more": {"_count": 1}, "bizarre": {"_count": 1}, "vengeance": {"_count": 1}, "in": {"_count": 1}, "cool": {"_count": 1}, "Cormac": {"_count": 1}, "private": {"_count": 1}, "Mr": {"_count": 1}, "understandable": {"_count": 1}, "insane": {"_count": 2}, "Felix": {"_count": 1}, "merely": {"_count": 2}, "most": {"_count": 1}, "": {"_count": 1}, "different": {"_count": 1}, "my": {"_count": 3}, "YouKnowWho": {"_count": 1}, "why": {"_count": 1}, "Granger": {"_count": 1}, "nothing": {"_count": 2}, "Dragomir": {"_count": 1}, "war": {"_count": 1}, "as": {"_count": 1}}, "specimen": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "supposed": {"_count": 1}}, "was": {"_count": 67, "why": {"_count": 1}, "supposed": {"_count": 2}, "just": {"_count": 2}, "so": {"_count": 1}, "something": {"_count": 1}, "part": {"_count": 1}, "exactly": {"_count": 3}, "the": {"_count": 12}, "too": {"_count": 1}, "evidently": {"_count": 1}, "partly": {"_count": 1}, "Hogwarts": {"_count": 1}, "more": {"_count": 1}, "getting": {"_count": 1}, "his": {"_count": 2}, "starting": {"_count": 1}, "saying": {"_count": 1}, "not": {"_count": 5}, "unhelpful": {"_count": 1}, "true": {"_count": 1}, "a": {"_count": 6}, "my": {"_count": 1}, "most": {"_count": 2}, "he": {"_count": 1}, "rather": {"_count": 1}, "such": {"_count": 1}, "different": {"_count": 1}, "it": {"_count": 1}, "where": {"_count": 1}, "your": {"_count": 2}, "one": {"_count": 1}, "an": {"_count": 1}, "pure": {"_count": 1}, "infuriating": {"_count": 1}, "Harry": {"_count": 1}, "neither": {"_count": 1}, "stretching": {"_count": 1}, "in": {"_count": 1}, "their": {"_count": 1}, "crucial": {"_count": 1}}, "reminded": {"_count": 2, "Harry": {"_count": 2}}, "seemed": {"_count": 3, "to": {"_count": 2}, "an": {"_count": 1}}, "hat": {"_count": 1, "was": {"_count": 1}}, "way": {"_count": 17, "": {"_count": 5}, "said": {"_count": 3}, "he": {"_count": 1}, "Potter": {"_count": 1}, "you": {"_count": 1}, "please": {"_count": 3}, "Lucius": {"_count": 1}, "Voldemort": {"_count": 1}, "Harry": {"_count": 1}}, "balls": {"_count": 1, "called": {"_count": 1}}, "said": {"_count": 4, "Wood": {"_count": 1}, "Karkaroff": {"_count": 1}, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 1}}, "only": {"_count": 1, "left": {"_count": 1}}, "isnt": {"_count": 16, "safe": {"_count": 1}, "magic": {"_count": 1}, "justice": {"_count": 1}, "my": {"_count": 1}, "some": {"_count": 1}, "like": {"_count": 1}, "a": {"_count": 3}, "right": {"_count": 2}, "how": {"_count": 1}, "your": {"_count": 1}, "love": {"_count": 1}, "about": {"_count": 2}}, "didnt": {"_count": 4, "have": {"_count": 1}, "worry": {"_count": 1}, "help": {"_count": 1}, "sound": {"_count": 1}}, "wasnt": {"_count": 3, "what": {"_count": 1}, "the": {"_count": 2}}, "needs": {"_count": 1, "thinking": {"_count": 1}}, "couldnt": {"_count": 1, "be": {"_count": 1}}, "mirror": {"_count": 1, "is": {"_count": 1}}, "scar": {"_count": 1, "was": {"_count": 1}}, "could": {"_count": 2, "well": {"_count": 1}, "be": {"_count": 1}}, "makes": {"_count": 1, "the": {"_count": 1}}, "Muggle": {"_count": 1, "woman": {"_count": 1}}, "thought": {"_count": 2, "Harry": {"_count": 1}, "seemed": {"_count": 1}}, "first": {"_count": 2, "ones": {"_count": 1}, "one": {"_count": 1}}, "cat": {"_count": 3, "wasnt": {"_count": 1}, "isnt": {"_count": 1}, "Crookshanks": {"_count": 1}}, "Polyjuice": {"_count": 1, "stuff": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "settles": {"_count": 1, "it": {"_count": 1}}, "Ernie": {"_count": 1, "did": {"_count": 1}}, "left": {"_count": 3, "Harry": {"_count": 2}, "a": {"_count": 1}}, "must": {"_count": 3, "be": {"_count": 2}, "just": {"_count": 1}}, "circular": {"_count": 1, "room": {"_count": 1}}, "made": {"_count": 2, "Professor": {"_count": 1}, "Ron": {"_count": 1}}, "match": {"_count": 1, "has": {"_count": 1}}, "will": {"_count": 5, "be": {"_count": 1}, "do": {"_count": 2}, "not": {"_count": 1}, "make": {"_count": 1}}, "snake": {"_count": 1, "which": {"_count": 1}}, "means": {"_count": 4, "said": {"_count": 2}, "clothes": {"_count": 1}, "if": {"_count": 1}}, "has": {"_count": 3, "been": {"_count": 2}, "always": {"_count": 1}}, "separation": {"_count": 1, "from": {"_count": 1}}, "meant": {"_count": 5, "that": {"_count": 4}, "as": {"_count": 1}}, "directed": {"_count": 1, "Aunt": {"_count": 1}}, "worked": {"_count": 1, "quite": {"_count": 1}}, "ones": {"_count": 4, "got": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 1}, "in": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "stateoftheart": {"_count": 1, "racing": {"_count": 1}}, "explained": {"_count": 1, "everything": {"_count": 1}}, "had": {"_count": 3, "only": {"_count": 1}, "to": {"_count": 1}, "not": {"_count": 1}}, "one": {"_count": 5, "moved": {"_count": 1}, "he": {"_count": 1}, "looks": {"_count": 1}, "bore": {"_count": 1}, "was": {"_count": 1}}, "time": {"_count": 18, "Neville": {"_count": 1}, "it": {"_count": 4}, "tomorrow": {"_count": 1}, "was": {"_count": 1}, "they": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 1}, "ready": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}}, "potion": {"_count": 2, "is": {"_count": 1}, "cannot": {"_count": 1}}, "lesson": {"_count": 1, "began": {"_count": 1}}, "Harry": {"_count": 2, "is": {"_count": 2}}, "little": {"_count": 1, "beautys": {"_count": 1}}, "map": {"_count": 2, "showed": {"_count": 1}, "was": {"_count": 1}}, "figure": {"_count": 1, "was": {"_count": 1}}, "measure": {"_count": 1, "has": {"_count": 1}}, "might": {"_count": 2, "help": {"_count": 1}, "have": {"_count": 1}}, "charm": {"_count": 1, "is": {"_count": 1}}, "did": {"_count": 3, "seem": {"_count": 1}, "not": {"_count": 2}}, "Friday": {"_count": 1, "": {"_count": 1}}, "feels": {"_count": 2, "weird": {"_count": 1}, "like": {"_count": 1}}, "parchment": {"_count": 1, "is": {"_count": 1}}, "helplessness": {"_count": 1, "was": {"_count": 1}}, "place": {"_count": 1, "is": {"_count": 1}}, "house": {"_count": 3, "Lupin": {"_count": 1}, "": {"_count": 1}, "invisible": {"_count": 1}}, "cringing": {"_count": 1, "bit": {"_count": 1}}, "cannot": {"_count": 3, "wait": {"_count": 1}, "be": {"_count": 2}}, "whole": {"_count": 2, "Black": {"_count": 1}, "tournaments": {"_count": 1}}, "doors": {"_count": 1, "been": {"_count": 1}}, "door": {"_count": 1, "has": {"_count": 1}}, "proposal": {"_count": 1, "had": {"_count": 1}}, "surprised": {"_count": 1, "him": {"_count": 1}}, "too": {"_count": 2, "belonged": {"_count": 1}, "was": {"_count": 1}}, "man": {"_count": 3, "could": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "just": {"_count": 1, "arrived": {"_count": 1}}, "pair": {"_count": 1, "Im": {"_count": 1}}, "puzzled": {"_count": 1, "Harry": {"_count": 1}}, "hasnt": {"_count": 1, "got": {"_count": 1}}, "Dumbledore": {"_count": 1, "raised": {"_count": 1}}, "news": {"_count": 1, "about": {"_count": 1}}, "therefore": {"_count": 1, "they": {"_count": 1}}, "tournaments": {"_count": 1, "famous": {"_count": 1}}, "cheered": {"_count": 1, "up": {"_count": 1}}, "gave": {"_count": 1, "Harry": {"_count": 1}}, "year": {"_count": 3, "however": {"_count": 2}, "we": {"_count": 1}}, "evening": {"_count": 2, "after": {"_count": 1}, "he": {"_count": 1}}, "lot": {"_count": 2, "keep": {"_count": 1}, "need": {"_count": 1}}, "belongs": {"_count": 1, "to": {"_count": 1}}, "egg": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 2}}, "class": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 2, "must": {"_count": 1}, "was": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}, "phoenix": {"_count": 1, "in": {"_count": 1}}, "dog": {"_count": 1, "will": {"_count": 1}}, "Mark": {"_count": 1, "has": {"_count": 1}}, "bloke": {"_count": 1, "Mundungus": {"_count": 1}}, "Lord": {"_count": 1, "Voldythings": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "solid": {"_count": 1, "silver": {"_count": 1}}, "leads": {"_count": 1, "me": {"_count": 1}}, "should": {"_count": 2, "give": {"_count": 1}, "allow": {"_count": 1}}, "pronouncement": {"_count": 1, "was": {"_count": 1}}, "room": {"_count": 2, "isnt": {"_count": 1}, "was": {"_count": 1}}, "may": {"_count": 1, "not": {"_count": 1}}, "this": {"_count": 2, "was": {"_count": 1}, "one": {"_count": 1}}, "latest": {"_count": 1, "decree": {"_count": 1}}, "last": {"_count": 3, "Azkaban": {"_count": 1}, "part": {"_count": 1}, "mention": {"_count": 1}}, "woman": {"_count": 1, "recommends": {"_count": 1}}, "centaur": {"_count": 1, "had": {"_count": 1}}, "human": {"_count": 1, "now": {"_count": 1}}, "suited": {"_count": 1, "Harry": {"_count": 1}}, "stuff": {"_count": 1, "can": {"_count": 1}}, "information": {"_count": 2, "took": {"_count": 1}, "did": {"_count": 1}}, "office": {"_count": 1, "is": {"_count": 1}}, "pain": {"_count": 1, "is": {"_count": 1}}, "particular": {"_count": 1, "opponent": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "magic": {"_count": 1, "will": {"_count": 1}}, "idea": {"_count": 1, "however": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}, "Book": {"_count": 1, "is": {"_count": 1}}, "discussion": {"_count": 1, "is": {"_count": 1}}, "detentions": {"_count": 1, "already": {"_count": 1}}, "strategy": {"_count": 1, "meant": {"_count": 1}}, "looks": {"_count": 1, "familiar": {"_count": 1}}, "younger": {"_count": 1, "Albus": {"_count": 1}}, "effectively": {"_count": 1, "stopped": {"_count": 1}}, "group": {"_count": 1, "had": {"_count": 1}}, "proved": {"_count": 1, "impossible": {"_count": 1}}, "girl": {"_count": 2, "hasnt": {"_count": 1}, "is": {"_count": 1}}, "being": {"_count": 1, "the": {"_count": 1}}, "mantra": {"_count": 1, "seemed": {"_count": 1}}, "brat": {"_count": 1, "has": {"_count": 1}}, "question": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "R": {"_count": 1, "": {"_count": 1}}, "Snitch": {"_count": 1, "he": {"_count": 1}}, "belonged": {"_count": 1, "to": {"_count": 1}}, "particularly": {"_count": 1, "infuriated": {"_count": 1}}, "however": {"_count": 1, "did": {"_count": 1}}, "scant": {"_count": 1, "news": {"_count": 1}}, "picture": {"_count": 2, "Hermione": {"_count": 1}, "looks": {"_count": 1}}, "note": {"_count": 1, "was": {"_count": 1}}, "initial": {"_count": 1, "contact": {"_count": 1}}, "dreadful": {"_count": 1, "coffin": {"_count": 1}}, "cant": {"_count": 1, "be": {"_count": 1}}, "struck": {"_count": 1, "Harry": {"_count": 1}}, "explains": {"_count": 1, "everything": {"_count": 1}}, "wand": {"_count": 1, "belonged": {"_count": 1}}, "appearance": {"_count": 1, "of": {"_count": 1}}, "coldblooded": {"_count": 1, "walk": {"_count": 1}}}, "another": {"_count": 666, "good": {"_count": 1, "reason": {"_count": 1}}, "word": {"_count": 35, "on": {"_count": 1}, "": {"_count": 11}, "Hermione": {"_count": 1}, "however": {"_count": 1}, "against": {"_count": 1}, "he": {"_count": 3}, "something": {"_count": 1}, "Professor": {"_count": 1}, "his": {"_count": 1}, "stepping": {"_count": 1}, "there": {"_count": 1}, "of": {"_count": 1}, "closing": {"_count": 1}, "out": {"_count": 1}, "with": {"_count": 1}, "slammed": {"_count": 1}, "to": {"_count": 1}, "leaving": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}, "Tonks": {"_count": 1}, "but": {"_count": 1}}, "lemon": {"_count": 1, "drop": {"_count": 1}}, "boy": {"_count": 2, "lived": {"_count": 1}, "": {"_count": 1}}, "two": {"_count": 4, "presents": {"_count": 1}, "inches": {"_count": 1}, "months": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 21, "and": {"_count": 1}, "": {"_count": 8}, "Harry": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "which": {"_count": 1}, "before": {"_count": 1}, "who": {"_count": 1}, "youve": {"_count": 1}, "of": {"_count": 1}, "from": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}, "too": {"_count": 1}}, "funny": {"_count": 1, "noise": {"_count": 1}}, "pocket": {"_count": 1, "inside": {"_count": 1}}, "boat": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 7, "his": {"_count": 2}, "the": {"_count": 3}, "Fizzing": {"_count": 1}, "Hogwartss": {"_count": 1}}, "goblin": {"_count": 1, "": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "wizards": {"_count": 3, "wand": {"_count": 2}, "life": {"_count": 1}}, "feather": {"_count": 1, "just": {"_count": 1}}, "escalator": {"_count": 1, "out": {"_count": 1}}, "day": {"_count": 3, "on": {"_count": 2}, "": {"_count": 1}}, "in": {"_count": 7, "a": {"_count": 2}, "my": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "silence": {"_count": 1}, "horror": {"_count": 1}}, "and": {"_count": 5, "hardly": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 2}, "his": {"_count": 1}}, "long": {"_count": 6, "table": {"_count": 1}, "walk": {"_count": 1}, "draw": {"_count": 1}, "day": {"_count": 1}, "moment": {"_count": 1}, "misty": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 20}}, "they": {"_count": 1, "had": {"_count": 1}}, "point": {"_count": 1, "youve": {"_count": 1}}, "rock": {"_count": 1, "cake": {"_count": 1}}, "school": {"_count": 1, "rule": {"_count": 1}}, "Harry": {"_count": 2, "in": {"_count": 1}, "was": {"_count": 1}}, "owl": {"_count": 4, "dropped": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "would": {"_count": 1}}, "player": {"_count": 2, "on": {"_count": 1}, "without": {"_count": 1}}, "Bludger": {"_count": 1, "which": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "look": {"_count": 3, "You": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "reason": {"_count": 1, "for": {"_count": 1}}, "as": {"_count": 3, "usual": {"_count": 1}, "belonging": {"_count": 1}, "they": {"_count": 1}}, "penalty": {"_count": 3, "for": {"_count": 1}, "past": {"_count": 1}, "yes": {"_count": 1}}, "little": {"_count": 6, "chat": {"_count": 1}, "dose": {"_count": 1}, "throatclearing": {"_count": 1}, "Hem": {"_count": 1}, "bottle": {"_count": 1}, "parcel": {"_count": 1}}, "note": {"_count": 7, "from": {"_count": 2}, "on": {"_count": 3}, "": {"_count": 2}}, "staircase": {"_count": 1, "then": {"_count": 1}}, "even": {"_count": 1, "one": {"_count": 1}}, "fifty": {"_count": 2, "points": {"_count": 1}, "years": {"_count": 1}}, "bid": {"_count": 1, "for": {"_count": 1}}, "door": {"_count": 8, "": {"_count": 2}, "and": {"_count": 1}, "into": {"_count": 2}, "There": {"_count": 1}, "across": {"_count": 1}, "stood": {"_count": 1}}, "body": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "visitor": {"_count": 1, "": {"_count": 1}}, "four": {"_count": 4, "weeks": {"_count": 2}, "": {"_count": 1}, "months": {"_count": 1}}, "delivery": {"_count": 1, "might": {"_count": 1}}, "to": {"_count": 2, "catch": {"_count": 1}, "speak": {"_count": 1}}, "Head": {"_count": 1, "Boy": {"_count": 1}}, "Gringotts": {"_count": 1, "goblin": {"_count": 1}}, "tap": {"_count": 1, "of": {"_count": 1}}, "check": {"_count": 1, "on": {"_count": 1}}, "twisted": {"_count": 1, "limb": {"_count": 1}}, "branch": {"_count": 1, "": {"_count": 1}}, "huge": {"_count": 1, "bite": {"_count": 1}}, "twinge": {"_count": 1, "of": {"_count": 1}}, "ten": {"_count": 5, "points": {"_count": 2}, "minutes": {"_count": 2}, "Galleons": {"_count": 1}}, "Howler": {"_count": 1, "back": {"_count": 1}}, "toe": {"_count": 1, "out": {"_count": 1}}, "roguish": {"_count": 1, "wink": {"_count": 1}}, "board": {"_count": 1, "under": {"_count": 1}}, "slug": {"_count": 1, "attack": {"_count": 1}}, "book": {"_count": 3, "": {"_count": 1}, "Harry": {"_count": 1}, "which": {"_count": 1}}, "inch": {"_count": 1, "or": {"_count": 1}}, "village": {"_count": 1, "will": {"_count": 1}}, "autograph": {"_count": 1, "": {"_count": 1}}, "worry": {"_count": 1, "": {"_count": 1}}, "fierce": {"_count": 1, "dive": {"_count": 1}}, "way": {"_count": 3, "": {"_count": 1}, "did": {"_count": 1}, "of": {"_count": 1}}, "girls": {"_count": 1, "toilet": {"_count": 1}}, "Dark": {"_count": 1, "Lord": {"_count": 1}}, "corridor": {"_count": 6, "which": {"_count": 2}, "they": {"_count": 1}, "when": {"_count": 1}, "turned": {"_count": 1}, "he": {"_count": 1}}, "figure": {"_count": 2, "the": {"_count": 1}, "sprinting": {"_count": 1}}, "familiar": {"_count": 2, "voice": {"_count": 2}}, "person": {"_count": 2, "until": {"_count": 1}, "was": {"_count": 1}}, "attack": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "today": {"_count": 1}}, "very": {"_count": 2, "serious": {"_count": 1}, "familiar": {"_count": 1}}, "double": {"_count": 1, "attack": {"_count": 1}}, "loud": {"_count": 9, "rap": {"_count": 1}, "BANG": {"_count": 1}, "crack": {"_count": 6}, "bang": {"_count": 1}}, "difficult": {"_count": 1, "journey": {"_count": 1}}, "announcement": {"_count": 1, "at": {"_count": 1}}, "message": {"_count": 2, "": {"_count": 2}}, "thud": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "ow": {"_count": 1, "": {"_count": 1}}, "bend": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 2, "really": {"_count": 1}, "had": {"_count": 1}}, "unusual": {"_count": 1, "thing": {"_count": 1}}, "tremendous": {"_count": 2, "BANG": {"_count": 2}}, "bow": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "purchases": {"_count": 1}}, "Astronomy": {"_count": 1, "lesson": {"_count": 1}}, "pair": {"_count": 2, "of": {"_count": 2}}, "year": {"_count": 4, "at": {"_count": 1}, "like": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "stunned": {"_count": 1, "": {"_count": 1}}, "impression": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 3, "he": {"_count": 1}, "had": {"_count": 1}, "didnt": {"_count": 1}}, "fruitless": {"_count": 1, "tug": {"_count": 1}}, "tinkle": {"_count": 1, "of": {"_count": 1}}, "crack": {"_count": 1, "and": {"_count": 1}}, "hour": {"_count": 7, "of": {"_count": 2}, "before": {"_count": 1}, "while": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "shot": {"_count": 1, "at": {"_count": 1}}, "sip": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 2}}, "gulp": {"_count": 3, "of": {"_count": 3}}, "wave": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 4, "same": {"_count": 1}, "snorin": {"_count": 1}, "greatest": {"_count": 1}, "Slytherins": {"_count": 1}}, "clap": {"_count": 1, "of": {"_count": 1}}, "flash": {"_count": 5, "of": {"_count": 5}}, "Quidditch": {"_count": 3, "match": {"_count": 3}}, "match": {"_count": 1, "": {"_count": 1}}, "Hogsmeade": {"_count": 3, "trip": {"_count": 2}, "visit": {"_count": 1}}, "Dungbomb": {"_count": 1, "I": {"_count": 1}}, "box": {"_count": 1, "of": {"_count": 1}}, "chance": {"_count": 1, "Quickly": {"_count": 1}}, "wall": {"_count": 1, "were": {"_count": 1}}, "problem": {"_count": 1, "": {"_count": 1}}, "flurry": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 4, "laughing": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "memory": {"_count": 2, "a": {"_count": 1}, "darted": {"_count": 1}}, "go": {"_count": 3, "": {"_count": 2}, "this": {"_count": 1}}, "treasured": {"_count": 1, "gift": {"_count": 1}}, "twenty": {"_count": 3, "minutes": {"_count": 2}, "for": {"_count": 1}}, "nearfatal": {"_count": 1, "accident": {"_count": 1}}, "spectacular": {"_count": 1, "save": {"_count": 1}}, "milk": {"_count": 1, "jug": {"_count": 1}}, "dot": {"_count": 1, "moving": {"_count": 1}}, "rat": {"_count": 1, "or": {"_count": 1}}, "blinding": {"_count": 1, "flash": {"_count": 1}}, "wrench": {"_count": 1, "": {"_count": 1}}, "couple": {"_count": 6, "of": {"_count": 5}, "look": {"_count": 1}}, "along": {"_count": 1, "a": {"_count": 1}}, "piece": {"_count": 3, "of": {"_count": 3}}, "form": {"_count": 1, "for": {"_count": 1}}, "Its": {"_count": 1, "not": {"_count": 1}}, "witch": {"_count": 2, "or": {"_count": 1}, "but": {"_count": 1}}, "wizard": {"_count": 5, "said": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "crept": {"_count": 1}}, "brave": {"_count": 1, "stab": {"_count": 1}}, "ornament": {"_count": 1, "": {"_count": 1}}, "evil": {"_count": 1, "grin": {"_count": 1}}, "big": {"_count": 2, "event": {"_count": 1}, "mistake": {"_count": 1}}, "at": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}}, "friend": {"_count": 1, "Merlins": {"_count": 1}}, "twelve": {"_count": 1, "seats": {"_count": 1}}, "position": {"_count": 1, "sir": {"_count": 1}}, "frightened": {"_count": 1, "look": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "great": {"_count": 7, "wave": {"_count": 1}, "gulp": {"_count": 2}, "bite": {"_count": 1}, "sigh": {"_count": 1}, "throb": {"_count": 1}, "snort": {"_count": 1}}, "lap": {"_count": 1, "of": {"_count": 1}}, "surprised": {"_count": 1, "": {"_count": 1}}, "leprechaun": {"_count": 1, "formation": {"_count": 1}}, "bouncing": {"_count": 1, "off": {"_count": 1}}, "pop": {"_count": 2, "and": {"_count": 2}}, "wizarding": {"_count": 1, "school": {"_count": 1}}, "bomb": {"_count": 1, "at": {"_count": 1}}, "empty": {"_count": 2, "chair": {"_count": 1}, "plinth": {"_count": 1}}, "thunderclap": {"_count": 1, "sounded": {"_count": 1}}, "bite": {"_count": 3, "": {"_count": 1}, "if": {"_count": 1}, "of": {"_count": 1}}, "attempt": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "narrower": {"_count": 1, "staircase": {"_count": 1}}, "bumping": {"_count": 1, "blindly": {"_count": 1}}, "slight": {"_count": 1, "smile": {"_count": 1}}, "order": {"_count": 1, "form": {"_count": 1}}, "human": {"_count": 2, "was": {"_count": 1}, "could": {"_count": 1}}, "butterbeer": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 1, "an": {"_count": 1}}, "pang": {"_count": 1, "to": {"_count": 1}}, "giant": {"_count": 3, "threeheaded": {"_count": 1}, "when": {"_count": 1}, "came": {"_count": 1}}, "false": {"_count": 1, "alarm": {"_count": 1}}, "harsh": {"_count": 1, "laugh": {"_count": 1}}, "ugly": {"_count": 1, "opposing": {"_count": 1}}, "had": {"_count": 2, "not": {"_count": 1}, "he": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "sensible": {"_count": 1, "word": {"_count": 1}}, "round": {"_count": 1, "with": {"_count": 1}}, "row": {"_count": 2, "because": {"_count": 1}, "would": {"_count": 1}}, "nervously": {"_count": 1, "Harry": {"_count": 1}}, "poured": {"_count": 1, "icewhite": {"_count": 1}}, "feature": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "stunning": {"_count": 1, "performance": {"_count": 1}}, "gold": {"_count": 1, "draped": {"_count": 1}}, "emotional": {"_count": 1, "blow": {"_count": 1}}, "that": {"_count": 3, "screamed": {"_count": 1}, "if": {"_count": 1}, "Fudge": {"_count": 1}}, "paper": {"_count": 1, "": {"_count": 1}}, "skrewt": {"_count": 1, "hatching": {"_count": 1}}, "abrupt": {"_count": 1, "change": {"_count": 1}}, "blunder": {"_count": 1, "from": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "shining": {"_count": 2, "silver": {"_count": 2}}, "this": {"_count": 1, "was": {"_count": 1}}, "path": {"_count": 1, "": {"_count": 1}}, "corner": {"_count": 4, "and": {"_count": 3}, "this": {"_count": 1}}, "forcing": {"_count": 1, "himself": {"_count": 1}}, "through": {"_count": 1, "their": {"_count": 1}}, "head": {"_count": 2, "was": {"_count": 2}}, "moment": {"_count": 3, "anyway": {"_count": 1}, "then": {"_count": 1}, "there": {"_count": 1}}, "hint": {"_count": 1, "You": {"_count": 1}}, "innocent": {"_count": 1, "source": {"_count": 1}}, "deep": {"_count": 3, "breath": {"_count": 1}, "draught": {"_count": 1}, "cut": {"_count": 1}}, "beautiful": {"_count": 1, "summers": {"_count": 1}}, "restless": {"_count": 1, "disturbed": {"_count": 1}}, "quarter": {"_count": 2, "of": {"_count": 2}}, "change": {"_count": 2, "of": {"_count": 2}}, "Permanent": {"_count": 1, "Sticking": {"_count": 1}}, "small": {"_count": 2, "round": {"_count": 1}, "fortune": {"_count": 1}}, "shuddering": {"_count": 2, "yawn": {"_count": 2}}, "passage": {"_count": 1, "turned": {"_count": 1}}, "chair": {"_count": 1, "I": {"_count": 1}}, "outbreak": {"_count": 1, "of": {"_count": 1}}, "kiss": {"_count": 1, "on": {"_count": 1}}, "family": {"_count": 1, "row": {"_count": 1}}, "Frog": {"_count": 1, "said": {"_count": 1}}, "nervous": {"_count": 1, "look": {"_count": 1}}, "exchanging": {"_count": 1, "summer": {"_count": 1}}, "magnificent": {"_count": 1, "feast": {"_count": 1}}, "teachers": {"_count": 1, "hands": {"_count": 1}}, "direction": {"_count": 1, "": {"_count": 1}}, "biscuit": {"_count": 1, "she": {"_count": 1}}, "five": {"_count": 2, "points": {"_count": 1}, "for": {"_count": 1}}, "essay": {"_count": 1, "at": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 2, "day": {"_count": 1}, "one": {"_count": 1}}, "evenings": {"_count": 1, "work": {"_count": 1}}, "teacher": {"_count": 1, "in": {"_count": 1}}, "detention": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "glance": {"_count": 3, "out": {"_count": 1}, "at": {"_count": 2}}, "helping": {"_count": 1, "of": {"_count": 1}}, "clear": {"_count": 2, "fine": {"_count": 1}, "shot": {"_count": 1}}, "weeks": {"_count": 2, "detentions": {"_count": 1}, "worth": {"_count": 1}}, "Decree": {"_count": 1, "saying": {"_count": 1}}, "smoking": {"_count": 1, "drink": {"_count": 1}}, "somersault": {"_count": 1, "all": {"_count": 1}}, "decree": {"_count": 1, "which": {"_count": 1}}, "pause": {"_count": 5, "in": {"_count": 2}, "": {"_count": 1}, "then": {"_count": 1}, "an": {"_count": 1}}, "back": {"_count": 1, "flip": {"_count": 1}}, "said": {"_count": 2, "Angelina": {"_count": 1}, "Dumbledore": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "fortifying": {"_count": 1, "gulp": {"_count": 1}}, "gift": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "present": {"_count": 3, "an": {"_count": 1}, "gives": {"_count": 1}, "": {"_count": 1}}, "giants": {"_count": 1, "head": {"_count": 1}}, "Seeker": {"_count": 1, "": {"_count": 1}}, "gentle": {"_count": 1, "tap": {"_count": 1}}, "portrait": {"_count": 1, "this": {"_count": 1}}, "minute": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "shove": {"_count": 1, "between": {"_count": 1}}, "poke": {"_count": 1, "in": {"_count": 1}}, "visit": {"_count": 1, "escorted": {"_count": 1}}, "glittering": {"_count": 1, "smile": {"_count": 1}}, "rather": {"_count": 1, "hopelessly": {"_count": 1}}, "dozen": {"_count": 1, "decrees": {"_count": 1}}, "persons": {"_count": 1, "mind": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "handful": {"_count": 1, "of": {"_count": 1}}, "story": {"_count": 1, "about": {"_count": 1}}, "booming": {"_count": 1, "chorus": {"_count": 1}}, "seven": {"_count": 1, "owls": {"_count": 1}}, "tellingoff": {"_count": 1, "from": {"_count": 1}}, "parthuman": {"_count": 1, "": {"_count": 1}}, "quick": {"_count": 1, "look": {"_count": 1}}, "muffled": {"_count": 1, "wail": {"_count": 1}}, "shock": {"_count": 1, "of": {"_count": 1}}, "pleasurable": {"_count": 1, "squirm": {"_count": 1}}, "notice": {"_count": 1, "on": {"_count": 1}}, "flask": {"_count": 1, "and": {"_count": 1}}, "cough": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 1, "means": {"_count": 1}}, "thing": {"_count": 1, "how": {"_count": 1}}, "fifteen": {"_count": 1, "minutes": {"_count": 1}}, "low": {"_count": 2, "roar": {"_count": 1}, "musical": {"_count": 1}}, "goal": {"_count": 1, "": {"_count": 1}}, "fine": {"_count": 1, "warm": {"_count": 1}}, "Gryffindor": {"_count": 1, "Quidditch": {"_count": 1}}, "niffler": {"_count": 1, "in": {"_count": 1}}, "dry": {"_count": 1, "little": {"_count": 1}}, "scene": {"_count": 1, "like": {"_count": 1}}, "bottle": {"_count": 2, "of": {"_count": 2}}, "foot": {"_count": 1, "or": {"_count": 1}}, "roar": {"_count": 1, "of": {"_count": 1}}, "painful": {"_count": 1, "prickle": {"_count": 1}}, "more": {"_count": 2, "painful": {"_count": 1}, "powerful": {"_count": 1}}, "throb": {"_count": 1, "": {"_count": 1}}, "fiery": {"_count": 1, "cross": {"_count": 1}}, "desk": {"_count": 1, "as": {"_count": 1}}, "heavy": {"_count": 1, "body": {"_count": 1}}, "jet": {"_count": 4, "of": {"_count": 4}}, "spell": {"_count": 2, "soared": {"_count": 1}, "at": {"_count": 1}}, "step": {"_count": 2, "A": {"_count": 1}, "forward": {"_count": 1}}, "stupendous": {"_count": 1, "heave": {"_count": 1}}, "Killing": {"_count": 1, "Curse": {"_count": 1}}, "old": {"_count": 1, "mans": {"_count": 1}}, "explanation": {"_count": 1, "Harry": {"_count": 1}}, "hooded": {"_count": 1, "figure": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "Muggleborn": {"_count": 1, "a": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}, "guinea": {"_count": 1, "pig": {"_count": 1}}, "question": {"_count": 1, "occurred": {"_count": 1}}, "time": {"_count": 2, "": {"_count": 1}, "He": {"_count": 1}}, "Death": {"_count": 4, "Eater": {"_count": 4}}, "aproned": {"_count": 1, "helper": {"_count": 1}}, "generous": {"_count": 1, "gulp": {"_count": 1}}, "healthy": {"_count": 1, "measure": {"_count": 1}}, "swig": {"_count": 4, "of": {"_count": 4}}, "shared": {"_count": 1, "his": {"_count": 1}}, "party": {"_count": 1, "just": {"_count": 1}}, "full": {"_count": 1, "House": {"_count": 1}}, "Keeper": {"_count": 1, "so": {"_count": 1}}, "nasty": {"_count": 1, "look": {"_count": 1}}, "flock": {"_count": 1, "of": {"_count": 1}}, "peaceful": {"_count": 1, "moment": {"_count": 1}}, "subject": {"_count": 1, "he": {"_count": 1}}, "crystal": {"_count": 1, "phial": {"_count": 1}}, "punching": {"_count": 1, "if": {"_count": 1}}, "neither": {"_count": 1, "the": {"_count": 1}}, "Prince": {"_count": 1, "hex": {"_count": 1}}, "invitation": {"_count": 1, "to": {"_count": 1}}, "girlish": {"_count": 1, "giggle": {"_count": 1}}, "murder": {"_count": 1, "whether": {"_count": 1}}, "assault": {"_count": 1, "on": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "yell": {"_count": 1, "from": {"_count": 1}}, "bed": {"_count": 1, "near": {"_count": 1}}, "few": {"_count": 1, "seconds": {"_count": 1}}, "soul": {"_count": 1, "until": {"_count": 1}}, "meeting": {"_count": 1, "": {"_count": 1}}, "twitch": {"_count": 1, "of": {"_count": 1}}, "tragedy": {"_count": 1, "had": {"_count": 1}}, "burst": {"_count": 1, "of": {"_count": 1}}, "blocking": {"_count": 1, "jinx": {"_count": 1}}, "scream": {"_count": 1, "Your": {"_count": 1}}, "onetoone": {"_count": 1, "meeting": {"_count": 1}}, "large": {"_count": 1, "gulp": {"_count": 1}}, "Stunning": {"_count": 1, "Spell": {"_count": 1}}, "girl": {"_count": 1, "in": {"_count": 1}}, "taste": {"_count": 1, "of": {"_count": 1}}, "photograph": {"_count": 1, "a": {"_count": 1}}, "month": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "months": {"_count": 1}}, "lift": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "floor": {"_count": 1, "Mr": {"_count": 1}}, "Summoning": {"_count": 1, "Charm": {"_count": 1}}, "channel": {"_count": 1, "": {"_count": 1}}, "glimpse": {"_count": 1, "of": {"_count": 1}}, "founders": {"_count": 1, "object": {"_count": 1}}, "Horcrux": {"_count": 3, "": {"_count": 1}, "down": {"_count": 1}, "could": {"_count": 1}}, "lonely": {"_count": 1, "and": {"_count": 1}}, "kid": {"_count": 1, "injured": {"_count": 1}}, "shower": {"_count": 1, "of": {"_count": 1}}, "light": {"_count": 1, "appeared": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "peculiar": {"_count": 1, "object": {"_count": 1}}, "white": {"_count": 1, "shape": {"_count": 1}}, "bang": {"_count": 2, "another": {"_count": 1}, "a": {"_count": 1}}, "squeal": {"_count": 1, "when": {"_count": 1}}, "secure": {"_count": 1, "location": {"_count": 1}}, "Potterwatch": {"_count": 1, "": {"_count": 1}}, "matter": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 1, "who": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "goblet": {"_count": 1, "of": {"_count": 1}}, "set": {"_count": 2, "of": {"_count": 2}}, "however": {"_count": 1, "they": {"_count": 1}}, "hoarse": {"_count": 1, "roar": {"_count": 1}}, "slash": {"_count": 1, "to": {"_count": 1}}, "messages": {"_count": 1, "": {"_count": 1}}, "noise": {"_count": 1, "behind": {"_count": 1}}, "into": {"_count": 1, "its": {"_count": 1}}, "frozen": {"_count": 1, "": {"_count": 1}}, "random": {"_count": 1, "turn": {"_count": 1}}, "broken": {"_count": 1, "window": {"_count": 1}}, "hand": {"_count": 1, "but": {"_count": 1}}, "masked": {"_count": 1, "Death": {"_count": 1}}, "enormous": {"_count": 1, "crystal": {"_count": 1}}, "with": {"_count": 1, "glad": {"_count": 1}}, "compartment": {"_count": 1, "": {"_count": 1}}, "curt": {"_count": 1, "nod": {"_count": 1}}, "blow": {"_count": 1, "against": {"_count": 1}}, "dull": {"_count": 1, "blow": {"_count": 1}}, "prone": {"_count": 1, "figure": {"_count": 1}}, "short": {"_count": 1, "pause": {"_count": 1}}, "woman": {"_count": 1, "laughing": {"_count": 1}}}, "good": {"_count": 780, "reason": {"_count": 12, "for": {"_count": 3}, "because": {"_count": 1}, "": {"_count": 2}, "not": {"_count": 1}, "to": {"_count": 2}, "GrubblyPlanks": {"_count": 1}, "just": {"_count": 1}, "why": {"_count": 1}}, "mood": {"_count": 11, "until": {"_count": 1}, "": {"_count": 2}, "hes": {"_count": 1}, "he": {"_count": 3}, "couldnt": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 72, ".": {"_count": 54}, "?": {"_count": 8}, "!": {"_count": 10}}, "one": {"_count": 8, "": {"_count": 4}, "for": {"_count": 1}, "an": {"_count": 1}, "here": {"_count": 1}, "I": {"_count": 1}}, "Lord": {"_count": 1, "theyre": {"_count": 1}}, "telling": {"_count": 2, "the": {"_count": 1}, "himself": {"_count": 1}}, "to": {"_count": 17, "last": {"_count": 1}, "argue": {"_count": 1}, "lose": {"_count": 1}, "keep": {"_count": 1}, "get": {"_count": 3}, "know": {"_count": 2}, "Dobby": {"_count": 1}, "see": {"_count": 2}, "be": {"_count": 3}, "Morfin": {"_count": 1}, "have": {"_count": 1}}, "training": {"_count": 1, "for": {"_count": 1}}, "a": {"_count": 4, "witch": {"_count": 1}, "time": {"_count": 1}, "way": {"_count": 1}, "little": {"_count": 1}}, "beating": {"_count": 1, "wouldnt": {"_count": 1}}, "dream": {"_count": 1, "": {"_count": 1}}, "idea": {"_count": 26, "but": {"_count": 1}, "of": {"_count": 2}, "we": {"_count": 1}, "if": {"_count": 3}, "": {"_count": 3}, "to": {"_count": 3}, "for": {"_count": 3}, "what": {"_count": 2}, "from": {"_count": 1}, "after": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 4}, "Harry": {"_count": 1}}, "results": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "term": {"_count": 5, "said": {"_count": 1}, "send": {"_count": 1}, "boys": {"_count": 1}, "okay": {"_count": 1}, "": {"_count": 1}}, "marks": {"_count": 2, "and": {"_count": 1}, "Hermione": {"_count": 1}}, "time": {"_count": 8, "eating": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "weve": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}, "said": {"_count": 1}}, "is": {"_count": 4, "it": {"_count": 3}, "he": {"_count": 1}}, "for": {"_count": 10, "them": {"_count": 1}, "you": {"_count": 2}, "her": {"_count": 1}, "him": {"_count": 2}, "lunch": {"_count": 1}, "Harry": {"_count": 1}, "us": {"_count": 1}, "it": {"_count": 1}}, "but": {"_count": 2, "because": {"_count": 1}, "it": {"_count": 1}}, "look": {"_count": 10, "at": {"_count": 8}, "around": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 27, "the": {"_count": 2}, "Wood": {"_count": 1}, "Harry": {"_count": 6}, "Mrs": {"_count": 2}, "Ron": {"_count": 4}, "Lupin": {"_count": 1}, "Bill": {"_count": 1}, "Voldemort": {"_count": 1}, "Sirius": {"_count": 1}, "Professor": {"_count": 1}, "Ginny": {"_count": 1}, "Umbridge": {"_count": 1}, "Dumbledore": {"_count": 4}, "Hermione": {"_count": 1}}, "kick": {"_count": 2, "": {"_count": 1}, "up": {"_count": 1}}, "if": {"_count": 5, "he": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}, "people": {"_count": 1}, "we": {"_count": 1}}, "he": {"_count": 6, "is": {"_count": 1}, "blocked": {"_count": 1}, "hurried": {"_count": 1}, "said": {"_count": 2}, "was": {"_count": 1}}, "Harry": {"_count": 4, "Wood": {"_count": 1}, "lied": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "chance": {"_count": 8, "they": {"_count": 1}, "now": {"_count": 1}, "we": {"_count": 1}, "well": {"_count": 1}, "then": {"_count": 1}, "Im": {"_count": 1}, "hed": {"_count": 1}, "Umbridge": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "Quidditch": {"_count": 5, "match": {"_count": 1}, "player": {"_count": 2}, "players": {"_count": 2}}, "at": {"_count": 25, "drawing": {"_count": 2}, "chess": {"_count": 1}, "Muggle": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 2}, "recognizing": {"_count": 1}, "Divination": {"_count": 1}, "the": {"_count": 1}, "Herbology": {"_count": 1}, "anything": {"_count": 1}, "this": {"_count": 2}, "escaping": {"_count": 1}, "Defense": {"_count": 1}, "Quidditch": {"_count": 1}, "pretty": {"_count": 1}, "finding": {"_count": 1}, "giving": {"_count": 1}, "healing": {"_count": 1}, "all": {"_count": 1}, "dodging": {"_count": 1}, "nonverbal": {"_count": 1}, "magic": {"_count": 1}}, "find": {"_count": 1, "of": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "armchairs": {"_count": 2, "by": {"_count": 2}}, "player": {"_count": 1, "yet": {"_count": 1}}, "luck": {"_count": 15, "outside": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 7}, "on": {"_count": 1}, "or": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "Ronald": {"_count": 1}}, "laugh": {"_count": 2, "at": {"_count": 1}, "with": {"_count": 1}}, "enough": {"_count": 15, "about": {"_count": 1}, "for": {"_count": 7}, "mood": {"_count": 2}, "": {"_count": 2}, "to": {"_count": 2}, "charm": {"_count": 1}}, "omen": {"_count": 2, "": {"_count": 2}}, "as": {"_count": 27, "you": {"_count": 1}, "new": {"_count": 4}, "winning": {"_count": 1}, "dead": {"_count": 1}, "killed": {"_count": 1}, "it": {"_count": 1}, "mine": {"_count": 1}, "told": {"_count": 1}, "ours": {"_count": 1}, "usual": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 3}, "her": {"_count": 1}, "Hagrid": {"_count": 1}, "my": {"_count": 1}, "were": {"_count": 1}, "James": {"_count": 1}, "he": {"_count": 1}, "youd": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "gave": {"_count": 1}}, "and": {"_count": 15, "evil": {"_count": 2}, "beheaded": {"_count": 1}, "Zonkos": {"_count": 1}, "loyal": {"_count": 1}, "kind": {"_count": 1}, "She": {"_count": 1}, "early": {"_count": 1}, "scanned": {"_count": 1}, "to": {"_count": 1}, "proper": {"_count": 1}, "nearly": {"_count": 1}, "brave": {"_count": 1}, "faithful": {"_count": 1}, "any": {"_count": 1}}, "audience": {"_count": 1, "they": {"_count": 1}}, "nights": {"_count": 1, "sleep": {"_count": 1}}, "Herbology": {"_count": 1, "mark": {"_count": 1}}, "holiday": {"_count": 2, "said": {"_count": 1}, "Dudley": {"_count": 1}}, "compliments": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 5, "magicking": {"_count": 1}, "that": {"_count": 1}, "Vernon": {"_count": 1}, "yeh": {"_count": 1}, "you": {"_count": 1}}, "turning": {"_count": 1, "your": {"_count": 1}}, "push": {"_count": 1, "Harry": {"_count": 1}}, "looking": {"_count": 3, "wizard": {"_count": 1}, "it": {"_count": 1}, "like": {"_count": 1}}, "its": {"_count": 1, "just": {"_count": 1}}, "thing": {"_count": 9, "Hermione": {"_count": 1}, "yer": {"_count": 1}, "about": {"_count": 3}, "to": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}}, "Vanishing": {"_count": 1, "Spell": {"_count": 1}}, "girl": {"_count": 2, "": {"_count": 1}, "youve": {"_count": 1}}, "fight": {"_count": 3, "and": {"_count": 1}, "aided": {"_count": 1}, "said": {"_count": 1}}, "seat": {"_count": 2, "Harry": {"_count": 1}, "Ronald": {"_count": 1}}, "job": {"_count": 3, "on": {"_count": 3}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "sign": {"_count": 4, "even": {"_count": 2}, "I": {"_count": 1}, "that": {"_count": 1}}, "the": {"_count": 3, "fur": {"_count": 1}, "fourth": {"_count": 1}, "power": {"_count": 1}}, "deal": {"_count": 7, "of": {"_count": 4}, "less": {"_count": 1}, "calmer": {"_count": 1}, "happier": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "party": {"_count": 1, "when": {"_count": 1}}, "fun": {"_count": 1, "Thats": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "is": {"_count": 1}}, "night": {"_count": 14, "and": {"_count": 5}, "": {"_count": 3}, "to": {"_count": 3}, "He": {"_count": 1}, "put": {"_count": 1}, "Harry": {"_count": 1}}, "pets": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "these": {"_count": 1}, "starting": {"_count": 1}}, "things": {"_count": 2, "in": {"_count": 1}, "he": {"_count": 1}}, "his": {"_count": 1, "confidence": {"_count": 1}}, "friend": {"_count": 4, "and": {"_count": 1}, "somewhere": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "man": {"_count": 2, "": {"_count": 1}, "Florean": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "news": {"_count": 8, "she": {"_count": 1}, "for": {"_count": 1}, "whatever": {"_count": 1}, "because": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "it": {"_count": 5, "would": {"_count": 2}, "is": {"_count": 2}, "did": {"_count": 1}}, "will": {"_count": 1, "it": {"_count": 1}}, "moment": {"_count": 1, "to": {"_count": 1}}, "great": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 1}, "the": {"_count": 3}, "there": {"_count": 1}, "everyone": {"_count": 1}}, "feast": {"_count": 1, "Might": {"_count": 1}}, "snorted": {"_count": 1, "Uncle": {"_count": 1}}, "thrashing": {"_count": 1, "is": {"_count": 1}}, "lad": {"_count": 4, "": {"_count": 3}, "really": {"_count": 1}}, "broom": {"_count": 2, "already": {"_count": 1}, "isnt": {"_count": 1}}, "guide": {"_count": 1, "to": {"_count": 1}}, "boy": {"_count": 8, "and": {"_count": 2}, "Id": {"_count": 1}, "or": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "hex": {"_count": 2, "would": {"_count": 1}, "and": {"_count": 1}}, "company": {"_count": 1, "but": {"_count": 1}}, "Hermione": {"_count": 2, "but": {"_count": 1}, "kept": {"_count": 1}}, "sirs": {"_count": 1, "and": {"_count": 1}}, "firs": {"_count": 1, "lesson": {"_count": 1}}, "teacher": {"_count": 5, "said": {"_count": 1}, "is": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "You": {"_count": 1}}, "too": {"_count": 2, "Oliver": {"_count": 1}, "": {"_count": 1}}, "Keeper": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 1}, "Muggle": {"_count": 1}, "him": {"_count": 1}}, "feeling": {"_count": 3, "every": {"_count": 1}, "about": {"_count": 2}}, "strong": {"_count": 2, "defense": {"_count": 1}, "Patronus": {"_count": 1}}, "defense": {"_count": 1, "": {"_count": 1}}, "Christmas": {"_count": 3, "": {"_count": 3}}, "lesson": {"_count": 3, "collecting": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}}, "substitute": {"_count": 1, "for": {"_count": 1}}, "work": {"_count": 1, "everyone": {"_count": 1}}, "flier": {"_count": 3, "she": {"_count": 1}, "from": {"_count": 1}, "said": {"_count": 1}}, "lady": {"_count": 1, "": {"_count": 1}}, "stuff": {"_count": 4, "fer": {"_count": 1}, "planned": {"_count": 1}, "abou": {"_count": 2}}, "day": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}}, "gloat": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "thatll": {"_count": 1, "give": {"_count": 1}}, "few": {"_count": 1, "years": {"_count": 1}}, "Alicia": {"_count": 1, "": {"_count": 1}}, "leg": {"_count": 1, "but": {"_count": 1}}, "care": {"_count": 1, "of": {"_count": 1}}, "pet": {"_count": 2, "": {"_count": 2}}, "nap": {"_count": 1, "": {"_count": 1}}, "spirits": {"_count": 3, "laughing": {"_count": 1}, "though": {"_count": 1}, "an": {"_count": 1}}, "argument": {"_count": 1, "to": {"_count": 1}}, "distance": {"_count": 2, "from": {"_count": 1}, "away": {"_count": 1}}, "ear": {"_count": 1, "still": {"_count": 1}}, "summer": {"_count": 5, "Harry": {"_count": 1}, "so": {"_count": 1}, "Luna": {"_count": 1}, "": {"_count": 2}}, "tickets": {"_count": 2, "for": {"_count": 1}, "Bagman": {"_count": 1}}, "chap": {"_count": 1, "": {"_count": 1}}, "impression": {"_count": 4, "": {"_count": 2}, "of": {"_count": 1}, "see": {"_count": 1}}, "houseelf": {"_count": 3, "": {"_count": 1}, "isnt": {"_count": 1}, "hie": {"_count": 1}}, "lord": {"_count": 2, "I": {"_count": 2}}, "elf": {"_count": 1, "I": {"_count": 1}}, "byes": {"_count": 1, "to": {"_count": 1}}, "sharp": {"_count": 1, "shock": {"_count": 1}}, "really": {"_count": 1, "that": {"_count": 1}}, "month": {"_count": 1, "are": {"_count": 1}}, "hard": {"_count": 3, "training": {"_count": 1}, "poke": {"_count": 1}, "work": {"_count": 1}}, "Potter": {"_count": 3, "very": {"_count": 2}, "": {"_count": 1}}, "indeed": {"_count": 5, "": {"_count": 4}, "said": {"_count": 1}}, "ferret": {"_count": 1, "Malfoy": {"_count": 1}}, "student": {"_count": 1, "and": {"_count": 1}}, "long": {"_count": 6, "sleep": {"_count": 2}, "interview": {"_count": 1}, "replies": {"_count": 1}, "way": {"_count": 2}}, "looks": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "hurry": {"_count": 1, "up": {"_count": 1}}, "condition": {"_count": 1, "before": {"_count": 1}}, "try": {"_count": 1, "": {"_count": 1}}, "actor": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "combination": {"_count": 1, "Harry": {"_count": 1}}, "way": {"_count": 1, "to": {"_count": 1}}, "plan": {"_count": 1, "from": {"_count": 1}}, "general": {"_count": 1, "advice": {"_count": 1}}, "wizard": {"_count": 3, "miss": {"_count": 1}, "in": {"_count": 1}, "I": {"_count": 1}}, "Head": {"_count": 1, "of": {"_count": 1}}, "do": {"_count": 1, "I": {"_count": 1}}, "ones": {"_count": 3, "will": {"_count": 1}, "now": {"_count": 1}, "to": {"_count": 1}}, "fortune": {"_count": 2, "in": {"_count": 1}, "was": {"_count": 1}}, "seven": {"_count": 1, "or": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "swimmer": {"_count": 1, "hed": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "theory": {"_count": 1, "but": {"_count": 1}}, "six": {"_count": 2, "inches": {"_count": 1}, "months": {"_count": 1}}, "family": {"_count": 1, "had": {"_count": 1}}, "nifflers": {"_count": 1, "arent": {"_count": 1}}, "books": {"_count": 3, "tryin": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "behavior": {"_count": 1, "": {"_count": 1}}, "natured": {"_count": 1, "": {"_count": 1}}, "hold": {"_count": 1, "": {"_count": 1}}, "sittin": {"_count": 1, "worryin": {"_count": 1}}, "already": {"_count": 1, "said": {"_count": 1}}, "point": {"_count": 2, "Petunia": {"_count": 1}, "said": {"_count": 1}}, "considering": {"_count": 1, "how": {"_count": 1}}, "business": {"_count": 1, "opportunity": {"_count": 1}}, "crying": {"_count": 1, "over": {"_count": 1}}, "thought": {"_count": 1, "we": {"_count": 1}}, "bit": {"_count": 3, "of": {"_count": 3}}, "squirt": {"_count": 1, "will": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "first": {"_count": 1, "impression": {"_count": 1}}, "show": {"_count": 1, "of": {"_count": 1}}, "friends": {"_count": 2, "decided": {"_count": 1}, "": {"_count": 1}}, "bye": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "afternoon": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "I": {"_count": 3, "cant": {"_count": 1}, "mean": {"_count": 1}, "do": {"_count": 1}}, "people": {"_count": 1, "and": {"_count": 1}}, "healthy": {"_count": 1, "P": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "Griphook": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "imitation": {"_count": 3, "of": {"_count": 3}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "was": {"_count": 2, "going": {"_count": 1}, "born": {"_count": 1}}, "when": {"_count": 2, "were": {"_count": 1}, "youre": {"_count": 1}}, "Reductor": {"_count": 1, "Curse": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "without": {"_count": 1, "the": {"_count": 1}}, "ter": {"_count": 1, "see": {"_count": 1}}, "summers": {"_count": 1, "did": {"_count": 1}}, "signs": {"_count": 1, "": {"_count": 1}}, "actually": {"_count": 2, "": {"_count": 1}, "replied": {"_count": 1}}, "hes": {"_count": 2, "covered": {"_count": 1}, "here": {"_count": 1}}, "view": {"_count": 1, "as": {"_count": 1}}, "cover": {"_count": 1, "story": {"_count": 1}}, "location": {"_count": 1, "for": {"_count": 1}}, "arm": {"_count": 1, "to": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "grace": {"_count": 1, "": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}, "seeing": {"_count": 1, "how": {"_count": 1}}, "on": {"_count": 2, "feelings": {"_count": 1}, "Tuesday": {"_count": 1}}, "course": {"_count": 1, "of": {"_count": 1}}, "happened": {"_count": 1, "Seamus": {"_count": 1}}, "poor": {"_count": 1, "thing": {"_count": 1}}, "fifty": {"_count": 1, "points": {"_count": 1}}, "witness": {"_count": 1, "is": {"_count": 1}}, "jolly": {"_count": 1, "good": {"_count": 1}}, "Minister": {"_count": 1, "very": {"_count": 1}}, "now": {"_count": 1, "Potty": {"_count": 1}}, "curse": {"_count": 1, "": {"_count": 1}}, "sense": {"_count": 2, "offunV": {"_count": 1}, "of": {"_count": 1}}, "person": {"_count": 1, "": {"_count": 1}}, "Argus": {"_count": 1, "she": {"_count": 1}}, "nagging": {"_count": 1, "me": {"_count": 1}}, "an": {"_count": 2, "riled": {"_count": 1}, "actor": {"_count": 1}}, "big": {"_count": 1, "kids": {"_count": 1}}, "weekend": {"_count": 1, "day": {"_count": 1}}, "grade": {"_count": 1, "but": {"_count": 1}}, "price": {"_count": 1, "for": {"_count": 1}}, "hiding": {"_count": 2, "places": {"_count": 1}, "place": {"_count": 1}}, "smattering": {"_count": 1, "of": {"_count": 1}}, "evening": {"_count": 4, "Harry": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 1}}, "witch": {"_count": 1, "": {"_count": 1}}, "onion": {"_count": 1, "soup": {"_count": 1}}, "Auror": {"_count": 1, "but": {"_count": 1}}, "so": {"_count": 2, "they": {"_count": 1}, "that": {"_count": 1}}, "Dad": {"_count": 1, "can": {"_count": 1}}, "chat": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "good": {"_count": 1}}, "morning": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "itll": {"_count": 2, "do": {"_count": 2}}, "decision": {"_count": 1, "The": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "save": {"_count": 1, "with": {"_count": 1}}, "knowledge": {"_count": 1, "of": {"_count": 1}}, "then": {"_count": 1, "all": {"_count": 1}}, "measure": {"_count": 3, "his": {"_count": 1}, "checked": {"_count": 1}, "slit": {"_count": 1}}, "haul": {"_count": 1, "this": {"_count": 1}}, "He": {"_count": 1, "stopped": {"_count": 1}}, "master": {"_count": 1, "to": {"_count": 1}}, "interrupted": {"_count": 1, "Snape": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "quality": {"_count": 1, "venom": {"_count": 1}}, "die": {"_count": 1, "young": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "Ginny": {"_count": 1, "look": {"_count": 1}}, "weather": {"_count": 1, "and": {"_count": 1}}, "Occlumens": {"_count": 2, "The": {"_count": 1}, "isnt": {"_count": 1}}, "site": {"_count": 1, "for": {"_count": 1}}, "mountaineers": {"_count": 1, "and": {"_count": 1}}, "health": {"_count": 1, "Harry": {"_count": 1}}, "story": {"_count": 1, "but": {"_count": 1}}, "murmured": {"_count": 1, "Dumbledore": {"_count": 1}}, "aim": {"_count": 1, "with": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "times": {"_count": 1, "": {"_count": 1}}, "snapped": {"_count": 1, "Fleur": {"_count": 1}}, "youve": {"_count": 1, "fed": {"_count": 1}}, "Bills": {"_count": 1, "escorting": {"_count": 1}}, "Weasleys": {"_count": 1, "to": {"_count": 1}}, "value": {"_count": 1, "": {"_count": 1}}, "go": {"_count": 1, "just": {"_count": 1}}, "riddance": {"_count": 1, "for": {"_count": 1}}, "food": {"_count": 2, "appear": {"_count": 1}, "out": {"_count": 1}}, "case": {"_count": 1, "against": {"_count": 1}}, "hour": {"_count": 1, "after": {"_count": 1}}, "meal": {"_count": 1, "Hermione": {"_count": 1}}, "bloke": {"_count": 1, "": {"_count": 1}}, "eye": {"_count": 1, "moved": {"_count": 1}}, "nineteen": {"_count": 1, "YouKnowWhos": {"_count": 1}}, "place": {"_count": 1, "to": {"_count": 1}}, "than": {"_count": 1, "in": {"_count": 1}}, "bathroom": {"_count": 1, "once": {"_count": 1}}, "candidate": {"_count": 1, "for": {"_count": 1}}, "Death": {"_count": 1, "Eatersll": {"_count": 1}}, "overview": {"_count": 1, "excellent": {"_count": 1}}, "question": {"_count": 1, "": {"_count": 1}}, "Goyle": {"_count": 1, "was": {"_count": 1}}, "youre": {"_count": 1, "being": {"_count": 1}}, "heart": {"_count": 1, "": {"_count": 1}}}, "reason": {"_count": 137, "for": {"_count": 16, "keeping": {"_count": 2}, "them": {"_count": 2}, "not": {"_count": 1}, "this": {"_count": 1}, "Siriuss": {"_count": 1}, "all": {"_count": 1}, "doing": {"_count": 1}, "inviting": {"_count": 1}, "my": {"_count": 1}, "trusting": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}, "calling": {"_count": 1}, "which": {"_count": 1}}, "the": {"_count": 4, "sight": {"_count": 1}, "back": {"_count": 1}, "Ministry": {"_count": 1}, "skrewts": {"_count": 1}}, "to": {"_count": 24, "lose": {"_count": 1}, "be": {"_count": 2}, "fight": {"_count": 1}, "tell": {"_count": 1}, "lie": {"_count": 1}, "believe": {"_count": 4}, "stop": {"_count": 1}, "suppose": {"_count": 1}, "harm": {"_count": 1}, "do": {"_count": 1}, "Who": {"_count": 1}, "complain": {"_count": 1}, "turn": {"_count": 1}, "expel": {"_count": 1}, "postpone": {"_count": 1}, "regret": {"_count": 1}, "look": {"_count": 1}, "trouble": {"_count": 1}, "delay": {"_count": 1}, "dislike": {"_count": 1}}, "she": {"_count": 3, "had": {"_count": 2}, "was": {"_count": 1}}, "he": {"_count": 14, "was": {"_count": 3}, "had": {"_count": 3}, "whispered": {"_count": 1}, "glanced": {"_count": 1}, "carried": {"_count": 1}, "wanted": {"_count": 1}, "did": {"_count": 1}, "didnt": {"_count": 1}, "left": {"_count": 1}, "thinks": {"_count": 1}}, "peppermint": {"_count": 1, "humbugs": {"_count": 1}}, "why": {"_count": 5, "were": {"_count": 1}, "you": {"_count": 1}, "everybody": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "because": {"_count": 1, "Neville": {"_count": 1}}, "they": {"_count": 2, "werent": {"_count": 1}, "were": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "": {"_count": 10, ".": {"_count": 10}}, "with": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "on": {"_count": 1, "earth": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "youre": {"_count": 2, "here": {"_count": 1}, "so": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "Ginny": {"_count": 1, "Weasleys": {"_count": 1}}, "that": {"_count": 5, "Harry": {"_count": 1}, "Avery": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 2}}, "you": {"_count": 3, "fell": {"_count": 1}, "have": {"_count": 1}, "bear": {"_count": 1}}, "So": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 1, "seemed": {"_count": 1}}, "I": {"_count": 3, "shouldnt": {"_count": 1}, "never": {"_count": 1}, "am": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "found": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "caught": {"_count": 1, "up": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "glanced": {"_count": 1, "up": {"_count": 1}}, "Umbridge": {"_count": 1, "doesnt": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "ter": {"_count": 1, "run": {"_count": 1}}, "GrubblyPlanks": {"_count": 1, "idea": {"_count": 1}}, "of": {"_count": 1, "robbing": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "Snape": {"_count": 1, "seemed": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "Hagrid": {"_count": 1, "was": {"_count": 1}}, "Harrys": {"_count": 1, "parents": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "looked": {"_count": 2, "annoyed": {"_count": 1}, "very": {"_count": 1}}, "had": {"_count": 3, "taken": {"_count": 1}, "turned": {"_count": 1}, "dropped": {"_count": 1}}, "it": {"_count": 2, "did": {"_count": 1}, "was": {"_count": 1}}, "Scrimgeour": {"_count": 1, "was": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Albus": {"_count": 1, "never": {"_count": 1}}, "thats": {"_count": 1, "the": {"_count": 1}}}, "keeping": {"_count": 120, "the": {"_count": 5, "Potters": {"_count": 1}, "school": {"_count": 1}, "giant": {"_count": 1}, "dragon": {"_count": 1}, "sword": {"_count": 1}}, "a": {"_count": 15, "class": {"_count": 1}, "thing": {"_count": 1}, "firm": {"_count": 4}, "close": {"_count": 1}, "record": {"_count": 1}, "lookout": {"_count": 2}, "wary": {"_count": 1}, "dream": {"_count": 1}, "lot": {"_count": 1}, "watch": {"_count": 1}, "tight": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "his": {"_count": 13, "mind": {"_count": 1}, "eyes": {"_count": 4}, "snakelike": {"_count": 1}, "mouth": {"_count": 1}, "small": {"_count": 1}, "voice": {"_count": 1}, "bottle": {"_count": 1}, "distance": {"_count": 1}, "hand": {"_count": 1}, "secrets": {"_count": 1}}, "safe": {"_count": 1, "": {"_count": 1}}, "busy": {"_count": 2, "": {"_count": 1}, "Barty": {"_count": 1}}, "dragons": {"_count": 1, "in": {"_count": 1}}, "him": {"_count": 7, "so": {"_count": 1}, "company": {"_count": 1}, "away": {"_count": 1}, "waiting": {"_count": 1}, "from": {"_count": 1}, "permanently": {"_count": 1}, "alive": {"_count": 1}}, "her": {"_count": 2, "head": {"_count": 1}, "distance": {"_count": 1}}, "me": {"_count": 2, "going": {"_count": 1}, "out": {"_count": 1}}, "guard": {"_count": 1, "Ron": {"_count": 1}}, "Lockhart": {"_count": 1, "in": {"_count": 1}}, "mightily": {"_count": 1, "quiet": {"_count": 1}}, "an": {"_count": 12, "eye": {"_count": 12}}, "Harry": {"_count": 3, "in": {"_count": 1}, "as": {"_count": 1}, "later": {"_count": 1}}, "them": {"_count": 1, "at": {"_count": 1}}, "YouKnowWho": {"_count": 1, "informed": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "it": {"_count": 7, "quiet": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "steady": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "going": {"_count": 1}}, "those": {"_count": 1, "fearsome": {"_count": 1}}, "Madame": {"_count": 1, "Maximes": {"_count": 1}}, "yourself": {"_count": 1, "out": {"_count": 1}}, "watch": {"_count": 5, "on": {"_count": 1}, "over": {"_count": 2}, "outside": {"_count": 1}, "said": {"_count": 1}}, "certain": {"_count": 1, "facts": {"_count": 1}}, "cool": {"_count": 1, "this": {"_count": 1}}, "himself": {"_count": 2, "from": {"_count": 1}, "deliberately": {"_count": 1}}, "tabs": {"_count": 1, "on": {"_count": 1}}, "your": {"_count": 3, "noses": {"_count": 1}, "head": {"_count": 1}, "face": {"_count": 1}}, "up": {"_count": 7, "with": {"_count": 4}, "a": {"_count": 1}, "": {"_count": 2}}, "one": {"_count": 2, "eye": {"_count": 2}}, "in": {"_count": 2, "there": {"_count": 1}, "the": {"_count": 1}}, "determinedly": {"_count": 1, "straight": {"_count": 1}}, "silent": {"_count": 1, "if": {"_count": 1}}, "going": {"_count": 1, "with": {"_count": 1}}, "Sirius": {"_count": 1, "out": {"_count": 1}}, "Horace": {"_count": 1, "": {"_count": 1}}, "anger": {"_count": 1, "out": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "close": {"_count": 1}}, "our": {"_count": 1, "prisoner": {"_count": 1}}, "locked": {"_count": 1, "up": {"_count": 1}}, "us": {"_count": 1, "hanging": {"_count": 1}}, "Griphook": {"_count": 1, "happy": {"_count": 1}}, "goblinmade": {"_count": 1, "objects": {"_count": 1}}, "Nagini": {"_count": 1, "close": {"_count": 1}}}, "away": {"_count": 1124, "they": {"_count": 4, "didnt": {"_count": 1}, "bought": {"_count": 1}, "had": {"_count": 1}, "reached": {"_count": 1}}, "happily": {"_count": 1, "as": {"_count": 1}}, "from": {"_count": 289, "all": {"_count": 2}, "them": {"_count": 21}, "Curses": {"_count": 1}, "the": {"_count": 101}, "me": {"_count": 6}, "Filchs": {"_count": 1}, "their": {"_count": 3}, "Professor": {"_count": 2}, "his": {"_count": 9}, "this": {"_count": 5}, "that": {"_count": 2}, "it": {"_count": 4}, "school": {"_count": 1}, "where": {"_count": 4}, "him": {"_count": 33}, "there": {"_count": 2}, "telling": {"_count": 1}, "your": {"_count": 4}, "home": {"_count": 3}, "Percy": {"_count": 2}, "its": {"_count": 2}, "Crookshanks": {"_count": 1}, "Harry": {"_count": 9}, "Ron": {"_count": 7}, "each": {"_count": 3}, "both": {"_count": 1}, "work": {"_count": 1}, "Muggles": {"_count": 1}, "her": {"_count": 21}, "Moodys": {"_count": 1}, "Rita": {"_count": 1}, "Hogwarts": {"_count": 3}, "Dobby": {"_count": 1}, "Krum": {"_count": 1}, "Hermione": {"_count": 1}, "one": {"_count": 2}, "court": {"_count": 1}, "us": {"_count": 1}, "Privet": {"_count": 1}, "Sirius": {"_count": 2}, "prying": {"_count": 1}, "Parvati": {"_count": 1}, "our": {"_count": 1}, "Bellatrix": {"_count": 1}, "anything": {"_count": 1}, "here": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 2}, "a": {"_count": 1}, "Crabbe": {"_count": 1}, "Harrys": {"_count": 1}, "Ginny": {"_count": 1}, "Mr": {"_count": 1}, "Lunas": {"_count": 1}, "Hogsmeade": {"_count": 1}, "Godrics": {"_count": 1}, "himself": {"_count": 1}, "Lily": {"_count": 1}, "Death": {"_count": 1}, "Voldemort": {"_count": 1}}, "": {"_count": 228, ".": {"_count": 203}, "!": {"_count": 13}, "?": {"_count": 12}}, "but": {"_count": 6, "it": {"_count": 1}, "not": {"_count": 1}, "instead": {"_count": 1}, "obviously": {"_count": 1}, "the": {"_count": 1}, "looked": {"_count": 1}}, "without": {"_count": 3, "a": {"_count": 1}, "another": {"_count": 2}}, "muttering": {"_count": 2, "about": {"_count": 1}, "under": {"_count": 1}}, "the": {"_count": 31, "boy": {"_count": 2}, "memories": {"_count": 1}, "wind": {"_count": 1}, "hours": {"_count": 1}, "shattered": {"_count": 1}, "knuckles": {"_count": 1}, "Bulgarian": {"_count": 1}, "Irish": {"_count": 1}, "moment": {"_count": 2}, "desks": {"_count": 1}, "beetle": {"_count": 1}, "afternoon": {"_count": 1}, "second": {"_count": 1}, "chilly": {"_count": 1}, "time": {"_count": 2}, "pangs": {"_count": 1}, "door": {"_count": 1}, "Horcrux": {"_count": 1}, "canker": {"_count": 1}, "useless": {"_count": 1}, "popular": {"_count": 1}, "yard": {"_count": 1}, "wetness": {"_count": 1}, "wait": {"_count": 1}, "thing": {"_count": 1}, "sword": {"_count": 1}, "better": {"_count": 1}, "fangs": {"_count": 1}}, "he": {"_count": 8, "closed": {"_count": 1}, "heard": {"_count": 1}, "growled": {"_count": 1}, "lifted": {"_count": 1}, "was": {"_count": 1}, "switched": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}}, "in": {"_count": 27, "a": {"_count": 7}, "the": {"_count": 4}, "spite": {"_count": 1}, "Moaning": {"_count": 1}, "answer": {"_count": 1}, "some": {"_count": 1}, "fear": {"_count": 1}, "French": {"_count": 1}, "different": {"_count": 1}, "her": {"_count": 1}, "an": {"_count": 1}, "our": {"_count": 1}, "mutters": {"_count": 1}, "what": {"_count": 1}, "rapid": {"_count": 1}, "Hagrids": {"_count": 1}, "fright": {"_count": 1}, "places": {"_count": 1}}, "as": {"_count": 15, "Goyle": {"_count": 1}, "quietly": {"_count": 1}, "possible": {"_count": 1}, "though": {"_count": 3}, "easily": {"_count": 1}, "fast": {"_count": 2}, "a": {"_count": 1}, "Professor": {"_count": 1}, "Slughorn": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "through": {"_count": 10, "the": {"_count": 8}, "doors": {"_count": 1}, "a": {"_count": 1}}, "theres": {"_count": 1, "so": {"_count": 1}}, "Peeves": {"_count": 2, "or": {"_count": 1}, "please": {"_count": 1}}, "rattling": {"_count": 1, "coats": {"_count": 1}}, "with": {"_count": 32, "one": {"_count": 1}, "Crabbe": {"_count": 1}, "her": {"_count": 2}, "the": {"_count": 4}, "anything": {"_count": 1}, "a": {"_count": 3}, "our": {"_count": 1}, "it": {"_count": 4}, "him": {"_count": 1}, "his": {"_count": 2}, "stuff": {"_count": 1}, "this": {"_count": 2}, "them": {"_count": 1}, "Ron": {"_count": 1}, "any": {"_count": 1}, "you": {"_count": 1}, "Mum": {"_count": 1}, "us": {"_count": 2}, "every": {"_count": 1}, "their": {"_count": 1}}, "saw": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 35, "punch": {"_count": 1}, "Filch": {"_count": 1}, "he": {"_count": 2}, "saw": {"_count": 1}, "in": {"_count": 1}, "get": {"_count": 1}, "headed": {"_count": 2}, "back": {"_count": 1}, "may": {"_count": 1}, "standing": {"_count": 1}, "continued": {"_count": 1}, "I": {"_count": 1}, "was": {"_count": 1}, "muttering": {"_count": 1}, "quills": {"_count": 1}, "attempting": {"_count": 1}, "deposited": {"_count": 1}, "Professor": {"_count": 1}, "disappeared": {"_count": 1}, "seizing": {"_count": 1}, "toppled": {"_count": 1}, "whenever": {"_count": 1}, "the": {"_count": 1}, "looking": {"_count": 1}, "lock": {"_count": 1}, "caught": {"_count": 1}, "then": {"_count": 1}, "turned": {"_count": 1}, "returned": {"_count": 1}, "some": {"_count": 1}, "hot": {"_count": 1}, "ran": {"_count": 1}, "as": {"_count": 1}}, "into": {"_count": 17, "the": {"_count": 13}, "her": {"_count": 1}, "a": {"_count": 1}, "nothingness": {"_count": 1}, "silver": {"_count": 1}}, "no": {"_count": 4, "trouble": {"_count": 1}, "use": {"_count": 1}, "because": {"_count": 1}, "said": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "before": {"_count": 10, "it": {"_count": 1}, "Malfoy": {"_count": 1}, "he": {"_count": 2}, "seven": {"_count": 1}, "Umbridge": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 1}, "her": {"_count": 1}}, "Harry": {"_count": 8, "looked": {"_count": 1}, "raised": {"_count": 1}, "moved": {"_count": 1}, "could": {"_count": 1}, "lay": {"_count": 1}, "saw": {"_count": 1}, "whispered": {"_count": 1}, "was": {"_count": 1}}, "while": {"_count": 2, "its": {"_count": 1}, "it": {"_count": 1}}, "if": {"_count": 3, "it": {"_count": 1}, "they": {"_count": 1}, "youre": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "by": {"_count": 5, "the": {"_count": 2}, "twenty": {"_count": 1}, "contact": {"_count": 1}, "halfglancing": {"_count": 1}}, "his": {"_count": 12, "plate": {"_count": 1}, "wand": {"_count": 1}, "darning": {"_count": 1}, "empty": {"_count": 1}, "Order": {"_count": 1}, "things": {"_count": 1}, "bright": {"_count": 1}, "job": {"_count": 1}, "eyes": {"_count": 2}, "scar": {"_count": 1}, "position": {"_count": 1}}, "for": {"_count": 4, "questioning": {"_count": 1}, "me": {"_count": 1}, "cleaning": {"_count": 1}, "Christmas": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "head": {"_count": 1, "and": {"_count": 1}}, "Percy": {"_count": 1, "snapped": {"_count": 1}}, "madly": {"_count": 2, "wafting": {"_count": 1}, "": {"_count": 1}}, "shrieking": {"_count": 1, "indignantly": {"_count": 1}}, "dropping": {"_count": 1, "out": {"_count": 1}}, "toward": {"_count": 9, "the": {"_count": 7}, "Sirius": {"_count": 1}, "another": {"_count": 1}}, "moving": {"_count": 2, "upward": {"_count": 1}, "between": {"_count": 1}}, "making": {"_count": 3, "his": {"_count": 1}, "notes": {"_count": 1}, "no": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 14, "give": {"_count": 1}, "hide": {"_count": 1}, "a": {"_count": 1}, "see": {"_count": 2}, "wake": {"_count": 1}, "the": {"_count": 2}, "reach": {"_count": 1}, "keep": {"_count": 1}, "meet": {"_count": 1}, "hang": {"_count": 1}, "reveal": {"_count": 1}, "look": {"_count": 1}}, "clearing": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "with": {"_count": 1}}, "watching": {"_count": 1, "it": {"_count": 1}}, "looking": {"_count": 5, "suspiciously": {"_count": 1}, "disappointed": {"_count": 1}, "scandalized": {"_count": 1}, "around": {"_count": 1}, "queasy": {"_count": 1}}, "at": {"_count": 12, "the": {"_count": 4}, "these": {"_count": 1}, "any": {"_count": 1}, "her": {"_count": 1}, "once": {"_count": 4}, "his": {"_count": 1}}, "tearing": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 6, "the": {"_count": 6}}, "will": {"_count": 3, "not": {"_count": 1}, "you": {"_count": 2}}, "an": {"_count": 1, "the": {"_count": 1}}, "Says": {"_count": 1, "who": {"_count": 1}}, "hopefully": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 5, "probably": {"_count": 1}, "Harry": {"_count": 1}, "positively": {"_count": 1}, "Hokey": {"_count": 1}, "and": {"_count": 1}}, "towering": {"_count": 1, "above": {"_count": 1}}, "said": {"_count": 8, "Ron": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 2}, "Mr": {"_count": 1}, "Moody": {"_count": 1}, "Harry": {"_count": 1}, "Umbridge": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "hardly": {"_count": 1, "daring": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "until": {"_count": 3, "he": {"_count": 1}, "Monday": {"_count": 1}, "Harry": {"_count": 1}}, "bird": {"_count": 1, "said": {"_count": 1}}, "Dumbledore": {"_count": 2, "interrupted": {"_count": 1}, "said": {"_count": 1}}, "Harrys": {"_count": 3, "spellbooks": {"_count": 1}, "long": {"_count": 1}, "gold": {"_count": 1}}, "inside": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "Ern": {"_count": 1, "said": {"_count": 1}}, "reluctantly": {"_count": 1, "and": {"_count": 1}}, "somehow": {"_count": 1, "managing": {"_count": 1}}, "Ginny": {"_count": 1, "said": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 2}}, "then": {"_count": 6, "give": {"_count": 1}, "he": {"_count": 1}, "Rita": {"_count": 1}, "mboy": {"_count": 2}, "my": {"_count": 1}}, "your": {"_count": 2, "things": {"_count": 1}, "enemies": {"_count": 1}}, "their": {"_count": 6, "books": {"_count": 2}, "unused": {"_count": 1}, "work": {"_count": 1}, "position": {"_count": 2}}, "rubbing": {"_count": 1, "their": {"_count": 1}}, "Neville": {"_count": 1, "was": {"_count": 1}}, "leaving": {"_count": 9, "Neville": {"_count": 1}, "Harry": {"_count": 2}, "nothing": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "Kreacher": {"_count": 1}, "Snape": {"_count": 1}}, "cursing": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 16, "": {"_count": 6}, "hoisted": {"_count": 1}, "inside": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "shouldve": {"_count": 1}, "when": {"_count": 1}, "terrified": {"_count": 1}, "before": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 1}}, "Ron": {"_count": 2, "threw": {"_count": 1}, "who": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 10, "your": {"_count": 1}, "hed": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 3}, "she": {"_count": 2}, "theyre": {"_count": 1}, "a": {"_count": 1}}, "Then": {"_count": 1, "a": {"_count": 1}}, "whatre": {"_count": 1, "they": {"_count": 1}}, "gazing": {"_count": 1, "around": {"_count": 1}}, "tethered": {"_count": 1, "to": {"_count": 1}}, "Crookshanks": {"_count": 1, "": {"_count": 1}}, "Scabbers": {"_count": 2, "come": {"_count": 2}}, "against": {"_count": 1, "the": {"_count": 1}}, "As": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 8, "the": {"_count": 8}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 3, "foot": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}}, "all": {"_count": 4, "those": {"_count": 1}, "the": {"_count": 2}, "enchantment": {"_count": 1}}, "several": {"_count": 2, "paces": {"_count": 1}, "more": {"_count": 1}}, "half": {"_count": 1, "his": {"_count": 1}}, "carefully": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 3, "a": {"_count": 2}, "this": {"_count": 1}}, "it": {"_count": 1, "explodes": {"_count": 1}}, "Malfoy": {"_count": 2, "said": {"_count": 1}, "s": {"_count": 1}}, "staring": {"_count": 1, "very": {"_count": 1}}, "Miss": {"_count": 1, "Brown": {"_count": 1}}, "almost": {"_count": 4, "instantly": {"_count": 3}, "escaping": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "back": {"_count": 4, "to": {"_count": 1}, "toward": {"_count": 1}, "up": {"_count": 1}, "along": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "anything": {"_count": 1, "else": {"_count": 1}}, "after": {"_count": 2, "Snape": {"_count": 1}, "the": {"_count": 1}}, "great": {"_count": 1, "multicolored": {"_count": 1}}, "not": {"_count": 2, "back": {"_count": 1}, "as": {"_count": 1}}, "more": {"_count": 2, "forcefully": {"_count": 1}, "quickly": {"_count": 1}}, "down": {"_count": 6, "the": {"_count": 6}}, "crosseyed": {"_count": 1, "while": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "hair": {"_count": 1, "seemed": {"_count": 1}}, "rather": {"_count": 1, "hastily": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "smiling": {"_count": 2, "at": {"_count": 1}, "to": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "unopened": {"_count": 1, "though": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "batlike": {"_count": 1, "and": {"_count": 1}}, "idiot": {"_count": 1, "boy": {"_count": 1}}, "boy": {"_count": 1, "dont": {"_count": 1}}, "shrinking": {"_count": 1, "rapidly": {"_count": 1}}, "who": {"_count": 1, "didnt": {"_count": 1}}, "promptly": {"_count": 1, "at": {"_count": 1}}, "yet": {"_count": 3, "said": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 6, "his": {"_count": 1}, "a": {"_count": 2}, "Hermiones": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 3}, "not": {"_count": 1}}, "irritably": {"_count": 1, "": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "each": {"_count": 1, "carrying": {"_count": 1}}, "delicately": {"_count": 1, "leaving": {"_count": 1}}, "had": {"_count": 1, "never": {"_count": 1}}, "smirking": {"_count": 1, "over": {"_count": 1}}, "radishes": {"_count": 1, "swinging": {"_count": 1}}, "Angelina": {"_count": 1, "came": {"_count": 1}}, "she": {"_count": 5, "instructed": {"_count": 1}, "snapped": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 2}}, "upon": {"_count": 1, "which": {"_count": 1}}, "rose": {"_count": 1, "with": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "walked": {"_count": 1, "over": {"_count": 1}}, "her": {"_count": 4, "lips": {"_count": 1}, "glass": {"_count": 1}, "long": {"_count": 1}, "powder": {"_count": 1}}, "please": {"_count": 2, "": {"_count": 2}}, "Lee": {"_count": 1, "Jordans": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "Mum": {"_count": 1, "says": {"_count": 1}}, "stretching": {"_count": 1, "from": {"_count": 1}}, "out": {"_count": 2, "the": {"_count": 1}, "of": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "replaced": {"_count": 1, "by": {"_count": 1}}, "clutching": {"_count": 1, "The": {"_count": 1}}, "whispering": {"_count": 1, "Dont": {"_count": 1}}, "laughing": {"_count": 1, "heartily": {"_count": 1}}, "didnt": {"_count": 1, "we": {"_count": 1}}, "nothing": {"_count": 1, "happened": {"_count": 1}}, "stamping": {"_count": 1, "out": {"_count": 1}}, "If": {"_count": 1, "we": {"_count": 1}}, "understand": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "still": {"_count": 2, "talking": {"_count": 1}, "farther": {"_count": 1}}, "were": {"_count": 1, "people": {"_count": 1}}, "She": {"_count": 1, "grabbed": {"_count": 1}}, "gouging": {"_count": 1, "long": {"_count": 1}}, "already": {"_count": 1, "even": {"_count": 1}}, "quickly": {"_count": 4, "grinning": {"_count": 1}, "as": {"_count": 2}, "to": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 2, "or": {"_count": 1}, "so": {"_count": 1}}, "everything": {"_count": 1, "that": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "everyone": {"_count": 1, "was": {"_count": 1}}, "sloping": {"_count": 1, "steeply": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "gwhat": {"_count": 1, "sounded": {"_count": 1}}, "whatever": {"_count": 1, "": {"_count": 1}}, "feebly": {"_count": 1, "": {"_count": 1}}, "cackling": {"_count": 1, "and": {"_count": 1}}, "howre": {"_count": 1, "we": {"_count": 1}}, "staggering": {"_count": 1, "slightly": {"_count": 1}}, "swiftly": {"_count": 1, "retching": {"_count": 1}}, "where": {"_count": 1, "she": {"_count": 1}}, "bearing": {"_count": 1, "the": {"_count": 1}}, "vanishing": {"_count": 1, "from": {"_count": 1}}, "too": {"_count": 2, "clinging": {"_count": 1}, "for": {"_count": 1}}, "that": {"_count": 2, "Dean": {"_count": 1}, "locket": {"_count": 1}}, "perhaps": {"_count": 2, "to": {"_count": 1}, "from": {"_count": 1}}, "The": {"_count": 1, "bloodspattered": {"_count": 1}}, "nor": {"_count": 1, "can": {"_count": 1}}, "drawing": {"_count": 1, "his": {"_count": 1}}, "pointedly": {"_count": 1, "waved": {"_count": 1}}, "apparently": {"_count": 1, "fearful": {"_count": 1}}, "those": {"_count": 1, "parts": {"_count": 1}}, "wet": {"_count": 1, "and": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "there": {"_count": 3, "was": {"_count": 3}}, "kept": {"_count": 1, "him": {"_count": 1}}, "our": {"_count": 1, "position": {"_count": 1}}, "good": {"_count": 1, "riddance": {"_count": 1}}, "din": {"_count": 1, "I": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "intent": {"_count": 1, "on": {"_count": 1}}, "heads": {"_count": 1, "together": {"_count": 1}}, "wishing": {"_count": 1, "he": {"_count": 1}}, "discarded": {"_count": 1, "as": {"_count": 1}}, "shielding": {"_count": 1, "his": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "swooping": {"_count": 1, "low": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "lighting": {"_count": 1, "lamps": {"_count": 1}}, "hunch": {"_count": 1, "shouldered": {"_count": 1}}, "bitterly": {"_count": 1, "": {"_count": 1}}, "pressed": {"_count": 1, "his": {"_count": 1}}, "become": {"_count": 1, "smaller": {"_count": 1}}, "charging": {"_count": 1, "through": {"_count": 1}}, "stooping": {"_count": 1, "over": {"_count": 1}}}, "want": {"_count": 970, "Dudley": {"_count": 1, "mixing": {"_count": 1}}, "to": {"_count": 564, "believe": {"_count": 5}, "read": {"_count": 3}, "stay": {"_count": 9}, "walk": {"_count": 3}, "be": {"_count": 45}, "go": {"_count": 37}, "everyone": {"_count": 1}, "watch": {"_count": 2}, "hear": {"_count": 20}, "tell": {"_count": 7}, "know": {"_count": 42}, "show": {"_count": 6}, "see": {"_count": 22}, "pressure": {"_count": 1}, "talk": {"_count": 19}, "do": {"_count": 15}, "stop": {"_count": 4}, "kill": {"_count": 7}, "sample": {"_count": 1}, "miss": {"_count": 3}, "start": {"_count": 2}, "touch": {"_count": 2}, "celebrate": {"_count": 2}, "frighten": {"_count": 1}, "change": {"_count": 1}, "break": {"_count": 4}, "find": {"_count": 4}, "attack": {"_count": 4}, "investigate": {"_count": 2}, "enter": {"_count": 2}, "give": {"_count": 8}, "say": {"_count": 9}, "press": {"_count": 1}, "name": {"_count": 1}, "meet": {"_count": 1}, "thank": {"_count": 1}, "ask": {"_count": 6}, "help": {"_count": 5}, "make": {"_count": 7}, "lose": {"_count": 4}, "get": {"_count": 15}, "set": {"_count": 1}, "send": {"_count": 4}, "put": {"_count": 4}, "look": {"_count": 9}, "": {"_count": 18}, "bend": {"_count": 1}, "play": {"_count": 3}, "try": {"_count": 2}, "to": {"_count": 1}, "continue": {"_count": 3}, "select": {"_count": 1}, "admit": {"_count": 4}, "commit": {"_count": 1}, "spend": {"_count": 1}, "said": {"_count": 4}, "leave": {"_count": 5}, "interview": {"_count": 1}, "think": {"_count": 6}, "move": {"_count": 4}, "finish": {"_count": 7}, "contact": {"_count": 1}, "block": {"_count": 1}, "worry": {"_count": 3}, "Apparate": {"_count": 1}, "take": {"_count": 8}, "raise": {"_count": 1}, "fix": {"_count": 1}, "write": {"_count": 1}, "curse": {"_count": 1}, "keep": {"_count": 6}, "win": {"_count": 1}, "beat": {"_count": 1}, "suffer": {"_count": 1}, "sit": {"_count": 1}, "work": {"_count": 1}, "learn": {"_count": 4}, "end": {"_count": 1}, "listen": {"_count": 1}, "consider": {"_count": 1}, "pin": {"_count": 1}, "up": {"_count": 1}, "concentrate": {"_count": 1}, "kiss": {"_count": 3}, "support": {"_count": 1}, "repay": {"_count": 1}, "question": {"_count": 1}, "have": {"_count": 5}, "avoid": {"_count": 1}, "wake": {"_count": 2}, "bottle": {"_count": 1}, "turn": {"_count": 1}, "draw": {"_count": 4}, "join": {"_count": 2}, "fight": {"_count": 2}, "experiment": {"_count": 1}, "share": {"_count": 1}, "er": {"_count": 2}, "pull": {"_count": 1}, "pass": {"_count": 1}, "sound": {"_count": 2}, "relinquish": {"_count": 1}, "choose": {"_count": 1}, "wave": {"_count": 1}, "discuss": {"_count": 1}, "blow": {"_count": 1}, "rely": {"_count": 1}, "use": {"_count": 2}, "forget": {"_count": 1}, "intrude": {"_count": 2}, "come": {"_count": 11}, "Harry": {"_count": 1}, "speak": {"_count": 1}, "ride": {"_count": 1}, "drag": {"_count": 1}, "calm": {"_count": 1}, "add": {"_count": 1}, "bring": {"_count": 2}, "act": {"_count": 1}, "chip": {"_count": 1}, "respond": {"_count": 1}, "steal": {"_count": 2}, "cause": {"_count": 1}, "feel": {"_count": 1}, "save": {"_count": 1}, "check": {"_count": 1}, "wait": {"_count": 1}, "practice": {"_count": 1}, "rip": {"_count": 1}, "invite": {"_count": 1}, "butt": {"_count": 1}, "eat": {"_count": 1}, "poison": {"_count": 2}, "fly": {"_count": 1}, "catch": {"_count": 1}, "teach": {"_count": 2}, "pause": {"_count": 1}, "open": {"_count": 1}, "taste": {"_count": 1}, "wear": {"_count": 1}, "test": {"_count": 1}, "argue": {"_count": 1}, "immediately": {"_count": 1}, "die": {"_count": 3}, "even": {"_count": 1}, "remember": {"_count": 1}, "cross": {"_count": 1}, "drink": {"_count": 1}, "call": {"_count": 2}, "hurt": {"_count": 1}, "let": {"_count": 1}, "conquer": {"_count": 1}, "kid": {"_count": 1}, "drop": {"_count": 1}, "hide": {"_count": 1}, "stick": {"_count": 1}, "express": {"_count": 1}, "spill": {"_count": 2}, "reveal": {"_count": 1}, "approach": {"_count": 1}}, "you": {"_count": 61, "to": {"_count": 40}, "all": {"_count": 5}, "attacked": {"_count": 1}, "running": {"_count": 1}, "wandering": {"_count": 1}, "betting": {"_count": 1}, "back": {"_count": 2}, "lot": {"_count": 1}, "returning": {"_count": 1}, "questioning": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}, "trained": {"_count": 1}, "chucked": {"_count": 1}, "down": {"_count": 1}, "butting": {"_count": 1}, "please": {"_count": 1}}, "everything": {"_count": 1, "perfect": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 10}, "!": {"_count": 2}, "?": {"_count": 17}}, "Harry": {"_count": 10, "could": {"_count": 1}, "to": {"_count": 5}, "dead": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}}, "him": {"_count": 14, "in": {"_count": 1}, "dead": {"_count": 1}, "back": {"_count": 2}, "to": {"_count": 5}, "they": {"_count": 1}, "there": {"_count": 1}, "given": {"_count": 1}, "": {"_count": 1}, "finished": {"_count": 1}}, "he": {"_count": 1, "began": {"_count": 1}}, "anythin": {"_count": 1, "ter": {"_count": 1}}, "ter": {"_count": 17, "keep": {"_count": 1}, "get": {"_count": 1}, "stay": {"_count": 2}, "do": {"_count": 1}, "go": {"_count": 3}, "miss": {"_count": 1}, "spoil": {"_count": 2}, "put": {"_count": 2}, "be": {"_count": 1}, "Apparate": {"_count": 1}, "come": {"_count": 1}, "hurt": {"_count": 1}}, "owls": {"_count": 1, "theyre": {"_count": 1}}, "this": {"_count": 7, "its": {"_count": 1}, "diary": {"_count": 1}, "time": {"_count": 1}, "dealt": {"_count": 1}, "over": {"_count": 1}, "lot": {"_count": 1}, "one": {"_count": 1}}, "it": {"_count": 18, "": {"_count": 6}, "ter": {"_count": 1}, "understood": {"_count": 1}, "to": {"_count": 2}, "confiscated": {"_count": 1}, "ready": {"_count": 1}, "and": {"_count": 1}, "very": {"_count": 1}, "Tom": {"_count": 1}, "you": {"_count": 1}, "back": {"_count": 1}, "said": {"_count": 1}}, "me": {"_count": 25, "to": {"_count": 22}, "as": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "Slytherin": {"_count": 1, "to": {"_count": 1}}, "everybody": {"_count": 1, "knowing": {"_count": 1}}, "one": {"_count": 3, "": {"_count": 1}, "anywhere": {"_count": 1}, "of": {"_count": 1}}, "anything": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "a": {"_count": 27, "nice": {"_count": 2}, "bet": {"_count": 1}, "word": {"_count": 6}, "bit": {"_count": 1}, "foul": {"_count": 1}, "Kwikspell": {"_count": 1}, "photo": {"_count": 1}, "replacement": {"_count": 1}, "drink": {"_count": 1}, "quick": {"_count": 1}, "werewolf": {"_count": 1}, "connection": {"_count": 1}, "dragon": {"_count": 1}, "Mudblood": {"_count": 1}, "houseelf": {"_count": 1}, "Hogwarts": {"_count": 1}, "Skiving": {"_count": 1}, "sketch": {"_count": 1}, "pay": {"_count": 1}, "few": {"_count": 1}, "fuss": {"_count": 1}}, "any": {"_count": 7, "help": {"_count": 1}, "of": {"_count": 1}, "accidents": {"_count": 1}, "any": {"_count": 1}, "at": {"_count": 1}, "Carrow": {"_count": 1}, "more": {"_count": 1}}, "said": {"_count": 5, "Percy": {"_count": 1}, "Harry": {"_count": 2}, "Ron": {"_count": 1}, "Fred": {"_count": 1}}, "more": {"_count": 4, "trouble": {"_count": 1}, "than": {"_count": 2}, "bacon": {"_count": 1}}, "the": {"_count": 18, "card": {"_count": 1}, "book": {"_count": 1}, "Chamber": {"_count": 1}, "boggart": {"_count": 1}, "prefects": {"_count": 1}, "job": {"_count": 2}, "pants": {"_count": 1}, "veela": {"_count": 1}, "truth": {"_count": 3}, "whole": {"_count": 1}, "trunks": {"_count": 1}, "facts": {"_count": 1}, "sword": {"_count": 2}, "house": {"_count": 1}}, "no": {"_count": 2, "one": {"_count": 2}}, "Fang": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 3, "to": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 1}}, "all": {"_count": 2, "that": {"_count": 1}, "right": {"_count": 1}}, "us": {"_count": 12, "showing": {"_count": 1}, "back": {"_count": 1}, "visiting": {"_count": 1}, "to": {"_count": 5}, "trained": {"_count": 1}, "heard": {"_count": 1}, "out": {"_count": 1}, "all": {"_count": 1}}, "people": {"_count": 4, "to": {"_count": 3}, "saying": {"_count": 1}}, "with": {"_count": 7, "you": {"_count": 2}, "him": {"_count": 1}, "me": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "gold": {"_count": 1}}, "What": {"_count": 1, "is": {"_count": 1}}, "another": {"_count": 3, "Dark": {"_count": 1}, "row": {"_count": 1}, "tellingoff": {"_count": 1}}, "that": {"_count": 9, "lying": {"_count": 1}, "Quidditch": {"_count": 1}, "": {"_count": 2}, "too": {"_count": 1}, "bundle": {"_count": 1}, "gold": {"_count": 1}, "on": {"_count": 1}, "story": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "my": {"_count": 2, "removal": {"_count": 1}, "Quidditch": {"_count": 1}}, "fame": {"_count": 1, "you": {"_count": 1}}, "proof": {"_count": 1, "Harry": {"_count": 1}}, "an": {"_count": 1, "owl": {"_count": 1}}, "revenge": {"_count": 4, "": {"_count": 2}, "on": {"_count": 2}}, "Lupin": {"_count": 2, "to": {"_count": 1}, "or": {"_count": 1}}, "your": {"_count": 7, "letter": {"_count": 1}, "fullest": {"_count": 1}, "essay": {"_count": 2}, "dementor": {"_count": 1}, "toothbrush": {"_count": 1}, "word": {"_count": 1}}, "everyone": {"_count": 3, "in": {"_count": 1}, "else": {"_count": 1}, "to": {"_count": 1}}, "two": {"_count": 1, "rolls": {"_count": 1}}, "them": {"_count": 10, "by": {"_count": 1}, "to": {"_count": 6}, "there": {"_count": 1}, "": {"_count": 2}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 3, "children": {"_count": 1}, "broomsticks": {"_count": 1}, "only": {"_count": 1}}, "his": {"_count": 3, "visit": {"_count": 1}, "hard": {"_count": 1}, "excited": {"_count": 1}}, "some": {"_count": 2, "swotty": {"_count": 1}, "peace": {"_count": 1}}, "compensation": {"_count": 1, "for": {"_count": 1}}, "sick": {"_count": 1, "leave": {"_count": 1}}, "someone": {"_count": 3, "older": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}}, "pets": {"_count": 1, "that": {"_count": 1}}, "George": {"_count": 1, "to": {"_count": 1}}, "food": {"_count": 1, "": {"_count": 1}}, "photos": {"_count": 1, "for": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "visitors": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 2, "back": {"_count": 1}, "chucked": {"_count": 1}}, "Moody": {"_count": 1, "to": {"_count": 1}}, "thirteen": {"_count": 1, "years": {"_count": 1}}, "there": {"_count": 1, "to": {"_count": 1}}, "threehundred": {"_count": 1, "andsixty": {"_count": 1}}, "anyone": {"_count": 5, "to": {"_count": 3}, "else": {"_count": 2}}, "wizards": {"_count": 1, "on": {"_count": 1}}, "Voldemort": {"_count": 1, "killed": {"_count": 1}}, "dinner": {"_count": 1, "before": {"_count": 1}}, "Of": {"_count": 1, "course": {"_count": 1}}, "is": {"_count": 2, "Dumbledore": {"_count": 1}, "an": {"_count": 1}}, "too": {"_count": 2, "many": {"_count": 2}}, "anyway": {"_count": 1, "": {"_count": 1}}, "passed": {"_count": 1, "": {"_count": 1}}, "detention": {"_count": 1, "watch": {"_count": 1}}, "freedom": {"_count": 1, "after": {"_count": 1}}, "Spell": {"_count": 1, "Damage": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "sugar": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "do": {"_count": 1}}, "Arithmancy": {"_count": 1, "though": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "humans": {"_count": 1, "in": {"_count": 1}}, "nonsense": {"_count": 1, "shouted": {"_count": 1}}, "help": {"_count": 2, "finding": {"_count": 1}, "or": {"_count": 1}}, "wands": {"_count": 1, "drawn": {"_count": 1}}, "these": {"_count": 1, "anymore": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 2}}, "each": {"_count": 1, "of": {"_count": 1}}, "yeh": {"_count": 1, "ter": {"_count": 1}}, "regular": {"_count": 1, "reports": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "thats": {"_count": 1}}, "trouble": {"_count": 1, "for": {"_count": 1}}, "But": {"_count": 1, "dont": {"_count": 1}}, "I": {"_count": 1, "KNOW": {"_count": 1}}, "breakfast": {"_count": 1, "before": {"_count": 1}}, "Gregorovitch": {"_count": 1, "": {"_count": 1}}, "excuses": {"_count": 1, "made": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "from": {"_count": 1, "Griphook": {"_count": 1}}, "Ariana": {"_count": 1, "set": {"_count": 1}}, "Dumbledore": {"_count": 1, "to": {"_count": 1}}}, "mixing": {"_count": 6, "with": {"_count": 2, "a": {"_count": 1}, "any": {"_count": 1}}, "up": {"_count": 3, "a": {"_count": 1}, "Love": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "potion": {"_count": 1}}}, "child": {"_count": 45, "like": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 4, "our": {"_count": 1}, "case": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 1, "only": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 9}, "!": {"_count": 1}, "?": {"_count": 3}}, "who": {"_count": 2, "had": {"_count": 1}, "has": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "alive": {"_count": 1, "ever": {"_count": 1}}, "playing": {"_count": 1, "hideandseek": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Watch": {"_count": 1, "where": {"_count": 1}}, "dying": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "child": {"_count": 1}}, "Lupin": {"_count": 1, "actually": {"_count": 1}}, "be": {"_count": 1, "ashamed": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}, "would": {"_count": 1, "never": {"_count": 1}}, "was": {"_count": 2, "laughing": {"_count": 1}, "trapped": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "promised": {"_count": 1, "a": {"_count": 1}}, "counting": {"_count": 1, "in": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "curled": {"_count": 1, "on": {"_count": 1}}, "lay": {"_count": 1, "whimpering": {"_count": 1}}, "seeking": {"_count": 1, "reassurance": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "like": {"_count": 2294, "that": {"_count": 155, "": {"_count": 55}, "and": {"_count": 5}, "locked": {"_count": 1}, "Ron": {"_count": 1}, "but": {"_count": 2}, "for": {"_count": 2}, "you": {"_count": 3}, "room": {"_count": 1}, "said": {"_count": 12}, "sir": {"_count": 1}, "hed": {"_count": 2}, "Harry": {"_count": 4}, "Creevey": {"_count": 1}, "it": {"_count": 1}, "Hedwigs": {"_count": 1}, "of": {"_count": 1}, "when": {"_count": 6}, "before": {"_count": 4}, "just": {"_count": 1}, "stuff": {"_count": 1}, "ever": {"_count": 1}, "to": {"_count": 2}, "they": {"_count": 1}, "the": {"_count": 2}, "Percy": {"_count": 1}, "or": {"_count": 2}, "Krum": {"_count": 1}, "look": {"_count": 1}, "spider": {"_count": 2}, "this": {"_count": 1}, "at": {"_count": 2}, "book": {"_count": 1}, "I": {"_count": 1}, "bring": {"_count": 1}, "here": {"_count": 1}, "flat": {"_count": 1}, "Dumbledore": {"_count": 1}, "which": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 2}, "Hermione": {"_count": 3}, "mate": {"_count": 1}, "Potter": {"_count": 2}, "its": {"_count": 1}, "while": {"_count": 1}, "right": {"_count": 1}, "now": {"_count": 1}, "she": {"_count": 1}, "on": {"_count": 1}, "though": {"_count": 1}, "Muggle": {"_count": 1}, "working": {"_count": 1}, "had": {"_count": 1}, "not": {"_count": 1}, "mumbled": {"_count": 1}, "itll": {"_count": 1}, "across": {"_count": 1}, "always": {"_count": 1}, "light": {"_count": 1}, "Miss": {"_count": 1}, "idea": {"_count": 1}}, "yourself": {"_count": 2, "should": {"_count": 1}, "can": {"_count": 1}}, "this": {"_count": 98, "man": {"_count": 1}, "as": {"_count": 2}, "happens": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 5}, "he": {"_count": 4}, "people": {"_count": 1}, "": {"_count": 31}, "from": {"_count": 2}, "again": {"_count": 1}, "every": {"_count": 1}, "doesnt": {"_count": 1}, "slammed": {"_count": 1}, "it": {"_count": 1}, "thanks": {"_count": 1}, "to": {"_count": 3}, "is": {"_count": 2}, "cant": {"_count": 1}, "with": {"_count": 1}, "Thats": {"_count": 1}, "oh": {"_count": 1}, "Harry": {"_count": 1}, "one": {"_count": 1}, "Dobby": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 1}, "at": {"_count": 1}, "she": {"_count": 2}, "thought": {"_count": 1}, "plenty": {"_count": 1}, "what": {"_count": 1}, "on": {"_count": 1}, "all": {"_count": 1}, "so": {"_count": 2}, "was": {"_count": 1}, "lot": {"_count": 1}, "He": {"_count": 1}, "Dawlish": {"_count": 1}, "proves": {"_count": 1}, "Professor": {"_count": 1}, "happened": {"_count": 1}, "but": {"_count": 1}, "forever": {"_count": 1}, "shall": {"_count": 1}, "Snape": {"_count": 1}, "Tom": {"_count": 1}, "even": {"_count": 1}, "simply": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}, "song": {"_count": 1}, "if": {"_count": 1}, "Please": {"_count": 1}, "when": {"_count": 1}}, "us": {"_count": 5, "": {"_count": 2}, "to": {"_count": 1}, "usin": {"_count": 1}, "and": {"_count": 1}}, "baby": {"_count": 1, "dolphins": {"_count": 1}}, "a": {"_count": 483, "bolt": {"_count": 4}, "wounded": {"_count": 4}, "large": {"_count": 12}, "baby": {"_count": 2}, "pig": {"_count": 8}, "slug": {"_count": 1}, "rat": {"_count": 1}, "gigantic": {"_count": 1}, "bill": {"_count": 1}, "giant": {"_count": 5}, "mouse": {"_count": 1}, "foghorn": {"_count": 2}, "sword": {"_count": 3}, "football": {"_count": 1}, "firecracker": {"_count": 2}, "dragon": {"_count": 2}, "canaryyellow": {"_count": 1}, "toothless": {"_count": 1}, "firework": {"_count": 2}, "fat": {"_count": 1}, "mouth": {"_count": 3}, "hawk": {"_count": 2}, "cork": {"_count": 3}, "javelin": {"_count": 1}, "short": {"_count": 1}, "pair": {"_count": 6}, "windmill": {"_count": 1}, "boulder": {"_count": 2}, "coconut": {"_count": 1}, "cannonball": {"_count": 1}, "palace": {"_count": 1}, "cannon": {"_count": 3}, "normal": {"_count": 1}, "bullet": {"_count": 3}, "second": {"_count": 2}, "crumpled": {"_count": 1}, "cloak": {"_count": 2}, "very": {"_count": 5}, "harp": {"_count": 1}, "snake": {"_count": 8}, "radish": {"_count": 1}, "winded": {"_count": 1}, "bomb": {"_count": 3}, "dog": {"_count": 5}, "whip": {"_count": 3}, "banshee": {"_count": 2}, "great": {"_count": 5}, "maniac": {"_count": 3}, "ghost": {"_count": 1}, "kind": {"_count": 1}, "sabertoothed": {"_count": 1}, "potato": {"_count": 2}, "lasso": {"_count": 2}, "bullfrog": {"_count": 1}, "warm": {"_count": 1}, "scarlet": {"_count": 1}, "wrathful": {"_count": 1}, "wrung": {"_count": 1}, "signed": {"_count": 1}, "thousand": {"_count": 1}, "wrinkled": {"_count": 1}, "rope": {"_count": 2}, "boomerang": {"_count": 1}, "thick": {"_count": 2}, "beacon": {"_count": 2}, "statue": {"_count": 3}, "balloon": {"_count": 1}, "small": {"_count": 8}, "silent": {"_count": 1}, "boiling": {"_count": 1}, "barrel": {"_count": 1}, "newspaper": {"_count": 1}, "stone": {"_count": 6}, "sort": {"_count": 1}, "gun": {"_count": 2}, "few": {"_count": 3}, "tent": {"_count": 1}, "miniature": {"_count": 2}, "Mug": {"_count": 1}, "real": {"_count": 1}, "monstrous": {"_count": 2}, "salami": {"_count": 1}, "vast": {"_count": 2}, "hag": {"_count": 1}, "bar": {"_count": 1}, "child": {"_count": 7}, "pug": {"_count": 1}, "classroom": {"_count": 1}, "cross": {"_count": 3}, "bowler": {"_count": 1}, "hippo": {"_count": 1}, "Grim": {"_count": 2}, "donkey": {"_count": 1}, "broomstick": {"_count": 1}, "good": {"_count": 4}, "crab": {"_count": 1}, "word": {"_count": 4}, "spiders": {"_count": 1}, "Christmas": {"_count": 1}, "low": {"_count": 1}, "gunshot": {"_count": 4}, "glittering": {"_count": 1}, "wisp": {"_count": 1}, "semitransparent": {"_count": 1}, "joke": {"_count": 1}, "skeleton": {"_count": 1}, "zombie": {"_count": 1}, "Zonko": {"_count": 1}, "turtle": {"_count": 1}, "zero": {"_count": 1}, "man": {"_count": 4}, "spell": {"_count": 2}, "banner": {"_count": 1}, "skull": {"_count": 2}, "brother": {"_count": 1}, "piglet": {"_count": 1}, "grotesque": {"_count": 2}, "horse": {"_count": 1}, "much": {"_count": 1}, "parent": {"_count": 2}, "loose": {"_count": 1}, "gesture": {"_count": 1}, "fang": {"_count": 1}, "muddy": {"_count": 1}, "Muggle": {"_count": 3}, "rabbit": {"_count": 1}, "healthy": {"_count": 1}, "leaky": {"_count": 1}, "hunchback": {"_count": 1}, "cup": {"_count": 4}, "cloud": {"_count": 1}, "palpable": {"_count": 1}, "curtain": {"_count": 1}, "toga": {"_count": 3}, "swarm": {"_count": 1}, "top": {"_count": 1}, "tongue": {"_count": 1}, "new": {"_count": 1}, "long": {"_count": 7}, "min": {"_count": 1}, "diagonal": {"_count": 1}, "veela": {"_count": 1}, "diver": {"_count": 1}, "sloth": {"_count": 1}, "grimace": {"_count": 2}, "beaver": {"_count": 1}, "baton": {"_count": 1}, "cats": {"_count": 2}, "really": {"_count": 1}, "slightly": {"_count": 1}, "single": {"_count": 1}, "heat": {"_count": 1}, "fly": {"_count": 1}, "vulture": {"_count": 1}, "dress": {"_count": 1}, "vicar": {"_count": 1}, "fountain": {"_count": 1}, "fool": {"_count": 1}, "goldfish": {"_count": 1}, "wig": {"_count": 1}, "blind": {"_count": 1}, "nighttime": {"_count": 1}, "meadow": {"_count": 1}, "merversion": {"_count": 1}, "guard": {"_count": 1}, "bark": {"_count": 2}, "ghostly": {"_count": 1}, "vivid": {"_count": 1}, "silvery": {"_count": 1}, "mere": {"_count": 1}, "starting": {"_count": 1}, "weightless": {"_count": 1}, "paralyzing": {"_count": 1}, "feathery": {"_count": 1}, "rest": {"_count": 1}, "plunger": {"_count": 2}, "conductors": {"_count": 1}, "silver": {"_count": 2}, "serpents": {"_count": 1}, "piece": {"_count": 1}, "grin": {"_count": 1}, "loincloth": {"_count": 2}, "bullfrogs": {"_count": 1}, "drain": {"_count": 1}, "cigarette": {"_count": 1}, "tough": {"_count": 1}, "manylegged": {"_count": 1}, "spider": {"_count": 1}, "set": {"_count": 1}, "serious": {"_count": 1}, "full": {"_count": 1}, "beauty": {"_count": 1}, "houseelf": {"_count": 2}, "hero": {"_count": 1}, "porkpie": {"_count": 1}, "load": {"_count": 1}, "door": {"_count": 1}, "furry": {"_count": 1}, "pterodactyls": {"_count": 1}, "guest": {"_count": 1}, "couple": {"_count": 3}, "green": {"_count": 1}, "weapon": {"_count": 2}, "lifesize": {"_count": 1}, "leer": {"_count": 1}, "straitjacket": {"_count": 1}, "spiral": {"_count": 1}, "griffin": {"_count": 1}, "cat": {"_count": 1}, "sheet": {"_count": 1}, "bell": {"_count": 1}, "tangle": {"_count": 1}, "gibbon": {"_count": 1}, "nest": {"_count": 1}, "mousetrap": {"_count": 1}, "nutter": {"_count": 1}, "flickering": {"_count": 1}, "scorch": {"_count": 1}, "human": {"_count": 1}, "dementor": {"_count": 1}, "draft": {"_count": 1}, "written": {"_count": 1}, "toad": {"_count": 3}, "plant": {"_count": 1}, "true": {"_count": 1}, "cough": {"_count": 1}, "dirty": {"_count": 1}, "hurricane": {"_count": 1}, "shield": {"_count": 1}, "leaping": {"_count": 1}, "blunt": {"_count": 1}, "monkey": {"_count": 1}, "cocoon": {"_count": 1}, "deep": {"_count": 1}, "knife": {"_count": 1}, "redhot": {"_count": 1}, "fiery": {"_count": 1}, "dropped": {"_count": 1}, "torch": {"_count": 2}, "walrus": {"_count": 1}, "ballerina": {"_count": 1}, "vacuum": {"_count": 1}, "girls": {"_count": 1}, "strut": {"_count": 1}, "hospital": {"_count": 1}, "trap": {"_count": 1}, "sack": {"_count": 1}, "strange": {"_count": 1}, "hail": {"_count": 1}, "quiet": {"_count": 1}, "fine": {"_count": 1}, "hundred": {"_count": 1}, "puppet": {"_count": 1}, "rag": {"_count": 1}, "killer": {"_count": 1}, "girl": {"_count": 1}, "city": {"_count": 1}, "quieter": {"_count": 1}, "stimulant": {"_count": 2}, "venomous": {"_count": 1}, "quick": {"_count": 1}, "breeze": {"_count": 1}, "sentinel": {"_count": 1}, "smile": {"_count": 1}, "metronome": {"_count": 1}, "blur": {"_count": 1}, "frost": {"_count": 1}, "presence": {"_count": 1}, "fist": {"_count": 1}, "holiday": {"_count": 1}, "soap": {"_count": 1}, "bird": {"_count": 3}, "lit": {"_count": 1}, "crown": {"_count": 1}, "triangular": {"_count": 2}, "drowning": {"_count": 2}, "cargo": {"_count": 1}, "bright": {"_count": 1}, "friendly": {"_count": 1}, "torn": {"_count": 1}, "blanket": {"_count": 2}, "curse": {"_count": 1}, "fair": {"_count": 1}, "a": {"_count": 1}, "tiny": {"_count": 1}, "workshop": {"_count": 1}, "pointless": {"_count": 1}, "dead": {"_count": 1}, "stomachache": {"_count": 1}, "pantomime": {"_count": 1}, "war": {"_count": 1}, "marionette": {"_count": 1}, "cauldron": {"_count": 1}, "wall": {"_count": 1}, "trapped": {"_count": 1}, "sister": {"_count": 1}, "sleepwalker": {"_count": 1}, "malediction": {"_count": 1}, "collection": {"_count": 1}, "mountain": {"_count": 1}, "Stinging": {"_count": 1}, "gift": {"_count": 1}, "hippos": {"_count": 1}, "bit": {"_count": 1}, "furnace": {"_count": 1}, "grayandgreen": {"_count": 1}, "little": {"_count": 2}, "job": {"_count": 1}, "tennis": {"_count": 1}, "promise": {"_count": 1}, "serpent": {"_count": 1}, "spike": {"_count": 1}, "death": {"_count": 1}, "trapeze": {"_count": 1}, "frantic": {"_count": 1}, "curious": {"_count": 1}, "coward": {"_count": 1}, "trigger": {"_count": 1}, "misshapen": {"_count": 1}, "trumpet": {"_count": 1}, "cockroach": {"_count": 1}, "physical": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 2}, "Vernons": {"_count": 1}}, "hard": {"_count": 1, "work": {"_count": 1}}, "his": {"_count": 32, "father": {"_count": 4}, "other": {"_count": 1}, "even": {"_count": 1}, "birthday": {"_count": 1}, "usual": {"_count": 1}, "hair": {"_count": 1}, "wife": {"_count": 1}, "anymore": {"_count": 1}, "mother": {"_count": 3}, "mothers": {"_count": 2}, "voice": {"_count": 1}, "fathers": {"_count": 1}, "heads": {"_count": 1}, "parents": {"_count": 3}, "papa": {"_count": 1}, "said": {"_count": 1}, "poor": {"_count": 1}, "at": {"_count": 1}, "friend": {"_count": 1}, "brothers": {"_count": 2}, "sister": {"_count": 1}, "older": {"_count": 1}, "searched": {"_count": 1}}, "maniacs": {"_count": 1, "the": {"_count": 1}}, "Dudley": {"_count": 2, "except": {"_count": 1}, "content": {"_count": 1}}, "dirty": {"_count": 2, "rags": {"_count": 1}, "laundry": {"_count": 1}}, "everyone": {"_count": 6, "elses": {"_count": 1}, "else": {"_count": 5}}, "he": {"_count": 19, "was": {"_count": 7}, "thought": {"_count": 1}, "wants": {"_count": 1}, "could": {"_count": 1}, "knows": {"_count": 1}, "thinks": {"_count": 1}, "controlled": {"_count": 1}, "treated": {"_count": 1}, "messed": {"_count": 1}, "and": {"_count": 1}, "would": {"_count": 1}, "did": {"_count": 1}, "hated": {"_count": 1}}, "you": {"_count": 62, "and": {"_count": 2}, "stop": {"_count": 1}, "wont": {"_count": 1}, "were": {"_count": 1}, "Tom": {"_count": 1}, "did": {"_count": 1}, "Hermione": {"_count": 1}, "said": {"_count": 3}, "killed": {"_count": 2}, "": {"_count": 5}, "Ron": {"_count": 1}, "for": {"_count": 1}, "saw": {"_count": 1}, "Harry": {"_count": 2}, "Karkaroff": {"_count": 1}, "to": {"_count": 15}, "all": {"_count": 3}, "in": {"_count": 1}, "please": {"_count": 1}, "know": {"_count": 2}, "can": {"_count": 1}, "of": {"_count": 1}, "three": {"_count": 1}, "obviously": {"_count": 1}, "Potter": {"_count": 1}, "attempted": {"_count": 1}, "that": {"_count": 1}, "havent": {"_count": 2}, "11": {"_count": 1}, "want": {"_count": 1}, "sorry": {"_count": 1}, "told": {"_count": 1}, "so": {"_count": 1}, "Severus": {"_count": 1}, "have": {"_count": 1}}, "bullets": {"_count": 1, "": {"_count": 1}}, "hours": {"_count": 4, "they": {"_count": 1}, "": {"_count": 2}, "wondering": {"_count": 1}}, "black": {"_count": 2, "beetles": {"_count": 1}, "stone": {"_count": 1}}, "yer": {"_count": 1, "dad": {"_count": 1}}, "I": {"_count": 20, "told": {"_count": 1}, "havent": {"_count": 1}, "got": {"_count": 1}, "was": {"_count": 3}, "say": {"_count": 4}, "reckon": {"_count": 1}, "thought": {"_count": 1}, "wanted": {"_count": 1}, "used": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "did": {"_count": 1}, "might": {"_count": 1}, "am": {"_count": 1}, "could": {"_count": 1}}, "Mimblewimble": {"_count": 1, "": {"_count": 1}}, "yours": {"_count": 4, "what": {"_count": 1}, "": {"_count": 2}, "down": {"_count": 1}}, "fireworks": {"_count": 1, "and": {"_count": 1}}, "ter": {"_count": 6, "see": {"_count": 2}, "introduce": {"_count": 1}, "come": {"_count": 1}, "know": {"_count": 1}, "draw": {"_count": 1}}, "them": {"_count": 11, "": {"_count": 4}, "either": {"_count": 1}, "any": {"_count": 1}, "Hermione": {"_count": 1}, "you": {"_count": 1}, "much": {"_count": 1}, "does": {"_count": 1}, "said": {"_count": 1}}, "sayin": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 5, "I": {"_count": 1}, "it": {"_count": 3}, "nearly": {"_count": 1}}, "parking": {"_count": 1, "meters": {"_count": 1}}, "one": {"_count": 9, "": {"_count": 3}, "of": {"_count": 3}, "good": {"_count": 1}, "gigantic": {"_count": 1}, "my": {"_count": 1}}, "going": {"_count": 4, "into": {"_count": 1}, "to": {"_count": 1}, "however": {"_count": 1}, "out": {"_count": 1}}, "when": {"_count": 9, "they": {"_count": 1}, "he": {"_count": 5}, "Voldemort": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}}, "like": {"_count": 1, "soccer": {"_count": 1}}, "soccer": {"_count": 1, "in": {"_count": 1}}, "cats": {"_count": 1, "they": {"_count": 1}}, "Professor": {"_count": 5, "Quirrell": {"_count": 1}, "McGonagall": {"_count": 2}, "Trelawney": {"_count": 1}, "Moody": {"_count": 1}}, "moons": {"_count": 1, "through": {"_count": 1}}, "tapping": {"_count": 1, "the": {"_count": 1}}, "Harrys": {"_count": 5, "in": {"_count": 1}, "breath": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "the": {"_count": 127, "oldest": {"_count": 1}, "Weasleys": {"_count": 2}, "ones": {"_count": 2}, "sky": {"_count": 4}, "air": {"_count": 1}, "feeble": {"_count": 1}, "look": {"_count": 2}, "handle": {"_count": 1}, "sound": {"_count": 3}, "rest": {"_count": 6}, "sort": {"_count": 4}, "setting": {"_count": 1}, "largest": {"_count": 1}, "thousandth": {"_count": 1}, "way": {"_count": 2}, "book": {"_count": 1}, "idea": {"_count": 6}, "dark": {"_count": 1}, "burrow": {"_count": 1}, "end": {"_count": 1}, "bearsized": {"_count": 1}, "twins": {"_count": 1}, "Quidditch": {"_count": 1}, "Irish": {"_count": 1}, "houseelf": {"_count": 2}, "World": {"_count": 1}, "Gryffindors": {"_count": 1}, "only": {"_count": 2}, "one": {"_count": 8}, "breath": {"_count": 1}, "giant": {"_count": 1}, "place": {"_count": 1}, "fact": {"_count": 1}, "boy": {"_count": 1}, "other": {"_count": 2}, "Ministry": {"_count": 4}, "presentday": {"_count": 1}, "dementors": {"_count": 1}, "dazzling": {"_count": 1}, "Triwizard": {"_count": 1}, "others": {"_count": 4}, "deck": {"_count": 1}, "clatter": {"_count": 1}, "plan": {"_count": 1}, "eerie": {"_count": 1}, "Cleansweep": {"_count": 1}, "elite": {"_count": 1}, "emphasis": {"_count": 1}, "Three": {"_count": 1}, "Strengthening": {"_count": 1}, "present": {"_count": 1}, "call": {"_count": 1}, "thestrals": {"_count": 1}, "lights": {"_count": 1}, "night": {"_count": 1}, "dozenth": {"_count": 1}, "very": {"_count": 1}, "traitor": {"_count": 1}, "Prophet": {"_count": 1}, "kind": {"_count": 2}, "squares": {"_count": 1}, "next": {"_count": 1}, "last": {"_count": 1}, "Prince": {"_count": 1}, "entire": {"_count": 1}, "crisp": {"_count": 1}, "middle": {"_count": 1}, "Pensieve": {"_count": 1}, "first": {"_count": 1}, "injuries": {"_count": 1}, "baby": {"_count": 1}, "needle": {"_count": 1}, "bizarre": {"_count": 1}, "breathing": {"_count": 1}, "goblin": {"_count": 1}, "stillfrail": {"_count": 1}, "wrong": {"_count": 1}, "beard": {"_count": 1}, "sails": {"_count": 1}, "quest": {"_count": 1}, "interior": {"_count": 1}, "vault": {"_count": 1}, "Chamber": {"_count": 1}, "sea": {"_count": 1}, "slithering": {"_count": 1}, "bruise": {"_count": 1}, "families": {"_count": 1}, "head": {"_count": 1}}, "lightning": {"_count": 2, "": {"_count": 1}, "rods": {"_count": 1}}, "": {"_count": 56, "?": {"_count": 21}, ".": {"_count": 34}, "!": {"_count": 1}}, "corned": {"_count": 1, "beef": {"_count": 1}}, "chocolate": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 115, "get": {"_count": 4}, "say": {"_count": 3}, "come": {"_count": 4}, "tell": {"_count": 3}, "see": {"_count": 14}, "have": {"_count": 4}, "know": {"_count": 11}, "help": {"_count": 1}, "think": {"_count": 5}, "add": {"_count": 1}, "register": {"_count": 1}, "clear": {"_count": 1}, "speak": {"_count": 2}, "apologize": {"_count": 1}, "keep": {"_count": 2}, "conceal": {"_count": 1}, "check": {"_count": 2}, "remind": {"_count": 1}, "be": {"_count": 6}, "wait": {"_count": 1}, "stay": {"_count": 2}, "in": {"_count": 1}, "prove": {"_count": 1}, "feel": {"_count": 2}, "give": {"_count": 2}, "ask": {"_count": 2}, "mention": {"_count": 1}, "use": {"_count": 1}, "And": {"_count": 1}, "do": {"_count": 4}, "congratulate": {"_count": 1}, "hear": {"_count": 1}, "gather": {"_count": 1}, "deal": {"_count": 1}, "kill": {"_count": 1}, "sleep": {"_count": 1}, "hit": {"_count": 1}, "drink": {"_count": 1}, "skulk": {"_count": 1}, "experiment": {"_count": 1}, "take": {"_count": 1}, "face": {"_count": 1}, "start": {"_count": 2}, "go": {"_count": 2}, "participate": {"_count": 1}, "poison": {"_count": 1}, "share": {"_count": 1}, "make": {"_count": 1}, "shake": {"_count": 1}, "believe": {"_count": 1}, "boast": {"_count": 1}, "invite": {"_count": 1}, "appeal": {"_count": 1}, "refer": {"_count": 1}, "introduce": {"_count": 1}, "wash": {"_count": 1}, "said": {"_count": 1}, "stand": {"_count": 1}}, "bodyguards": {"_count": 1, "": {"_count": 1}}, "leaving": {"_count": 1, "do": {"_count": 1}}, "your": {"_count": 18, "family": {"_count": 1}, "attitude": {"_count": 1}, "tone": {"_count": 1}, "father": {"_count": 7}, "dear": {"_count": 1}, "mother": {"_count": 3}, "Quidditch": {"_count": 1}, "hero": {"_count": 1}, "filthy": {"_count": 1}, "methods": {"_count": 1}}, "pale": {"_count": 3, "lanterns": {"_count": 1}, "sapphires": {"_count": 1}, "green": {"_count": 1}}, "an": {"_count": 70, "unpleasant": {"_count": 1}, "angry": {"_count": 3}, "eagle": {"_count": 2}, "owl": {"_count": 1}, "unused": {"_count": 1}, "overgrown": {"_count": 3}, "old": {"_count": 11}, "equal": {"_count": 1}, "ordinary": {"_count": 2}, "underfed": {"_count": 1}, "arm": {"_count": 1}, "absorbing": {"_count": 1}, "escalator": {"_count": 2}, "uncle": {"_count": 1}, "acorn": {"_count": 1}, "animal": {"_count": 1}, "extremely": {"_count": 1}, "hour": {"_count": 3}, "iced": {"_count": 1}, "oversized": {"_count": 1}, "evil": {"_count": 1}, "innocent": {"_count": 1}, "oldfashioned": {"_count": 1}, "elf": {"_count": 1}, "accident": {"_count": 3}, "idiot": {"_count": 1}, "immensely": {"_count": 1}, "extra": {"_count": 1}, "empty": {"_count": 1}, "insect": {"_count": 1}, "oddly": {"_count": 1}, "enormous": {"_count": 1}, "illness": {"_count": 1}, "amphitheater": {"_count": 1}, "octopuss": {"_count": 1}, "overturned": {"_count": 1}, "ignorant": {"_count": 1}, "enthusiastic": {"_count": 1}, "absurd": {"_count": 1}, "innocently": {"_count": 1}, "enormously": {"_count": 1}, "icy": {"_count": 1}, "explosion": {"_count": 1}, "unsteady": {"_count": 1}, "open": {"_count": 1}, "omelet": {"_count": 1}, "aged": {"_count": 1}, "oncoming": {"_count": 1}, "ancient": {"_count": 1}}, "little": {"_count": 4, "hissing": {"_count": 1}, "Professor": {"_count": 1}, "roving": {"_count": 1}, "pink": {"_count": 1}}, "Harry": {"_count": 14, "at": {"_count": 1}, "had": {"_count": 2}, "felt": {"_count": 1}, "": {"_count": 2}, "is": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 2}, "told": {"_count": 1}, "was": {"_count": 1}, "or": {"_count": 1}, "could": {"_count": 1}}, "lead": {"_count": 3, "again": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}}, "Filchs": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 31, "hadnt": {"_count": 1}, "any": {"_count": 1}, "": {"_count": 12}, "because": {"_count": 4}, "even": {"_count": 1}, "either": {"_count": 1}, "yet": {"_count": 1}, "were": {"_count": 2}, "had": {"_count": 1}, "And": {"_count": 1}, "much": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "really": {"_count": 1}, "though": {"_count": 1}, "looked": {"_count": 1}}, "Ron": {"_count": 8, "didnt": {"_count": 1}, "told": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "thought": {"_count": 1}, "and": {"_count": 1}}, "Flitwick": {"_count": 2, "started": {"_count": 1}, "he": {"_count": 1}}, "Hagrid": {"_count": 8, "s": {"_count": 1}, "who": {"_count": 1}, "said": {"_count": 3}, "told": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "horses": {"_count": 1, "could": {"_count": 1}}, "fat": {"_count": 3, "little": {"_count": 2}, "worms": {"_count": 1}}, "it": {"_count": 57, "": {"_count": 23}, "before": {"_count": 2}, "at": {"_count": 1}, "is": {"_count": 2}, "was": {"_count": 4}, "or": {"_count": 1}, "said": {"_count": 6}, "would": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 2}, "you": {"_count": 1}, "if": {"_count": 1}, "doesnt": {"_count": 1}, "the": {"_count": 1}, "back": {"_count": 1}, "says": {"_count": 1}, "much": {"_count": 2}, "no": {"_count": 1}, "better": {"_count": 1}, "She": {"_count": 1}, "crying": {"_count": 1}, "really": {"_count": 1}, "but": {"_count": 1}}, "basketball": {"_count": 1, "on": {"_count": 1}}, "home": {"_count": 2, "than": {"_count": 1}, "safe": {"_count": 1}}, "lumpy": {"_count": 1, "gray": {"_count": 1}}, "chilled": {"_count": 1, "steel": {"_count": 1}}, "Muggle": {"_count": 1, "chess": {"_count": 1}}, "directing": {"_count": 1, "troops": {"_count": 1}}, "water": {"_count": 3, "woven": {"_count": 1}, "he": {"_count": 1}, "beneath": {"_count": 1}}, "sharing": {"_count": 1, "it": {"_count": 1}}, "blood": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "mine": {"_count": 1, "Harry": {"_count": 1}}, "Bill": {"_count": 3, "used": {"_count": 1}, "and": {"_count": 2}}, "Hermione": {"_count": 8, "": {"_count": 2}, "was": {"_count": 1}, "secondclass": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "Pansy": {"_count": 1}, "had": {"_count": 1}}, "hundreds": {"_count": 2, "before": {"_count": 1}, "of": {"_count": 1}}, "its": {"_count": 10, "about": {"_count": 2}, "a": {"_count": 1}, "fellow": {"_count": 1}, "going": {"_count": 2}, "quite": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 1}, "just": {"_count": 1}}, "himself": {"_count": 3, "was": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "hooves": {"_count": 1, "to": {"_count": 1}}, "some": {"_count": 22, "stalking": {"_count": 1}, "weird": {"_count": 1}, "horrible": {"_count": 1}, "sort": {"_count": 4}, "common": {"_count": 1}, "grisly": {"_count": 1}, "vine": {"_count": 1}, "horrific": {"_count": 1}, "kind": {"_count": 1}, "naughty": {"_count": 1}, "enormous": {"_count": 1}, "noxious": {"_count": 1}, "monstrous": {"_count": 1}, "filthy": {"_count": 1}, "of": {"_count": 2}, "great": {"_count": 1}, "bizarre": {"_count": 2}}, "hed": {"_count": 2, "never": {"_count": 1}, "been": {"_count": 1}}, "donkeys": {"_count": 1, "after": {"_count": 1}}, "fortunetelling": {"_count": 1, "to": {"_count": 1}}, "singing": {"_count": 1, "": {"_count": 1}}, "Filch": {"_count": 1, "every": {"_count": 1}}, "Peeves": {"_count": 3, "swooping": {"_count": 1}, "but": {"_count": 1}, "blowing": {"_count": 1}}, "wings": {"_count": 1, "to": {"_count": 1}}, "doing": {"_count": 3, "": {"_count": 1}, "was": {"_count": 2}}, "ice": {"_count": 2, "": {"_count": 2}}, "half": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 2}}, "having": {"_count": 6, "a": {"_count": 2}, "an": {"_count": 1}, "friends": {"_count": 1}, "this": {"_count": 1}, "somebody": {"_count": 1}}, "ears": {"_count": 1, "and": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 2}}, "Time": {"_count": 1, "to": {"_count": 1}}, "Charm": {"_count": 1, "Your": {"_count": 1}}, "dont": {"_count": 1, "know": {"_count": 1}}, "Santa": {"_count": 1, "Claus": {"_count": 1}}, "walking": {"_count": 1, "into": {"_count": 1}}, "plugs": {"_count": 1, "and": {"_count": 1}}, "whole": {"_count": 1, "human": {"_count": 1}}, "multicolored": {"_count": 1, "ants": {"_count": 1}}, "Percys": {"_count": 1, "": {"_count": 1}}, "coming": {"_count": 2, "out": {"_count": 1}, "down": {"_count": 1}}, "me": {"_count": 14, "youll": {"_count": 1}, "as": {"_count": 2}, "to": {"_count": 4}, "shouldnt": {"_count": 1}, "": {"_count": 4}, "I": {"_count": 1}, "then": {"_count": 1}}, "listening": {"_count": 2, "to": {"_count": 2}}, "rockets": {"_count": 1, "": {"_count": 1}}, "caterpillars": {"_count": 1, "": {"_count": 1}}, "Malfoys": {"_count": 3, "family": {"_count": 1}, "got": {"_count": 1}, "having": {"_count": 1}}, "no": {"_count": 4, "time": {"_count": 2}, "other": {"_count": 2}}, "Fames": {"_count": 1, "a": {"_count": 1}}, "missiles": {"_count": 1, "": {"_count": 1}}, "stepping": {"_count": 2, "through": {"_count": 1}, "into": {"_count": 1}}, "breathing": {"_count": 1, "loudly": {"_count": 1}}, "chalk": {"_count": 1, "snapping": {"_count": 1}}, "spiders": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "explaining": {"_count": 1, "you": {"_count": 1}}, "three": {"_count": 1, "of": {"_count": 1}}, "vermin": {"_count": 1, "sir": {"_count": 1}}, "clubs": {"_count": 1, "others": {"_count": 1}}, "swords": {"_count": 2, "in": {"_count": 1}, "sparks": {"_count": 1}}, "thick": {"_count": 2, "dark": {"_count": 1}, "snakes": {"_count": 1}}, "overcooked": {"_count": 1, "cabbage": {"_count": 1}}, "hot": {"_count": 2, "wax": {"_count": 2}}, "bolts": {"_count": 1, "his": {"_count": 1}}, "being": {"_count": 15, "Goyle": {"_count": 1}, "caught": {"_count": 1}, "introduced": {"_count": 1}, "bad": {"_count": 1}, "tethered": {"_count": 1}, "hit": {"_count": 1}, "enslaved": {"_count": 1}, "back": {"_count": 2}, "sucked": {"_count": 1}, "locked": {"_count": 1}, "a": {"_count": 1}, "stationary": {"_count": 1}, "inside": {"_count": 1}, "called": {"_count": 1}}, "Goyle": {"_count": 2, "said": {"_count": 1}, "concentrating": {"_count": 1}}, "Percy": {"_count": 3, "said": {"_count": 1}, "who": {"_count": 1}, "singing": {"_count": 1}}, "came": {"_count": 1, "Riddles": {"_count": 1}}, "theyre": {"_count": 4, "heading": {"_count": 1}, "havin": {"_count": 1}, "hoping": {"_count": 1}, "scum": {"_count": 1}}, "they": {"_count": 11, "were": {"_count": 1}, "think": {"_count": 1}, "Disapparated": {"_count": 1}, "mated": {"_count": 1}, "wanted": {"_count": 1}, "did": {"_count": 1}, "could": {"_count": 2}, "care": {"_count": 1}, "can": {"_count": 1}, "might": {"_count": 1}}, "at": {"_count": 3, "least": {"_count": 2}, "St": {"_count": 1}}, "something": {"_count": 5, "big": {"_count": 1}, "dead": {"_count": 1}, "rose": {"_count": 1}, "like": {"_count": 1}, "out": {"_count": 1}}, "those": {"_count": 5, "surging": {"_count": 1}, "foul": {"_count": 1}, "that": {"_count": 2}, "of": {"_count": 1}}, "applause": {"_count": 1, "except": {"_count": 1}}, "their": {"_count": 3, "very": {"_count": 1}, "parents": {"_count": 1}, "worst": {"_count": 1}}, "Fangs": {"_count": 1, "stared": {"_count": 1}}, "Dobby": {"_count": 1, "did": {"_count": 1}}, "hatred": {"_count": 1, "": {"_count": 1}}, "rushing": {"_count": 1, "down": {"_count": 1}}, "if": {"_count": 2, "they": {"_count": 1}, "Voldemort": {"_count": 1}}, "her": {"_count": 19, "": {"_count": 6}, "spotted": {"_count": 1}, "masters": {"_count": 1}, "we": {"_count": 1}, "either": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "whatever": {"_count": 1}, "brothers": {"_count": 1}, "shes": {"_count": 1}, "old": {"_count": 1}, "husband": {"_count": 1}, "not": {"_count": 1}, "master": {"_count": 1}}, "magic": {"_count": 4, "": {"_count": 2}, "my": {"_count": 1}, "jus": {"_count": 1}}, "Im": {"_count": 6, "normal": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}, "trying": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 1}}, "longs": {"_count": 1, "its": {"_count": 1}}, "Sirius": {"_count": 4, "Black": {"_count": 1}, "": {"_count": 1}, "did": {"_count": 1}, "like": {"_count": 1}}, "marbles": {"_count": 1, "in": {"_count": 1}}, "Rons": {"_count": 3, "did": {"_count": 1}, "as": {"_count": 1}, "it": {"_count": 1}}, "wandering": {"_count": 1, "off": {"_count": 1}}, "Black": {"_count": 1, "you": {"_count": 1}}, "zero": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 3, "thinking": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}}, "mad": {"_count": 5, "though": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}, "every": {"_count": 1}}, "exposing": {"_count": 1, "the": {"_count": 1}}, "dark": {"_count": 2, "enclosed": {"_count": 1}, "ghosts": {"_count": 1}}, "all": {"_count": 6, "of": {"_count": 1}, "cats": {"_count": 1}, "houseelves": {"_count": 1}, "the": {"_count": 2}, "young": {"_count": 1}}, "drowning": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 3, "old": {"_count": 1}, "dear": {"_count": 1}, "lawbreaking": {"_count": 1}}, "scaly": {"_count": 1, "monkeys": {"_count": 1}}, "wildfire": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 13, "Ron": {"_count": 1}, "Moody": {"_count": 1}, "Harry": {"_count": 2}, "Sirius": {"_count": 1}, "Fred": {"_count": 2}, "George": {"_count": 1}, "Luna": {"_count": 1}, "Hagrid": {"_count": 1}, "Ginny": {"_count": 1}, "Zabini": {"_count": 1}, "Narcissa": {"_count": 1}}, "working": {"_count": 1, "": {"_count": 1}}, "brilliant": {"_count": 1, "watersnakes": {"_count": 1}}, "warning": {"_count": 1, "in": {"_count": 1}}, "thunderstorms": {"_count": 1, "": {"_count": 1}}, "yellow": {"_count": 2, "cabbages": {"_count": 1}, "pus": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "toads": {"_count": 1, "hop": {"_count": 1}}, "poison": {"_count": 2, "": {"_count": 1}, "gas": {"_count": 1}}, "normal": {"_count": 1, "people": {"_count": 1}}, "Pettigrew": {"_count": 1, "": {"_count": 1}}, "bein": {"_count": 2, "back": {"_count": 1}, "born": {"_count": 1}}, "Malfoy": {"_count": 4, "said": {"_count": 1}, "if": {"_count": 1}, "to": {"_count": 2}}, "BLOOD": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 7, "was": {"_count": 2}, "wasnt": {"_count": 1}, "did": {"_count": 1}, "used": {"_count": 1}, "meant": {"_count": 1}, "couldnt": {"_count": 1}}, "Scabbers": {"_count": 2, "has": {"_count": 1}, "s": {"_count": 1}}, "staying": {"_count": 1, "indoors": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 4}}, "What": {"_count": 2, "would": {"_count": 1}, "its": {"_count": 1}}, "Lupins": {"_count": 1, "under": {"_count": 1}}, "The": {"_count": 2, "Handbook": {"_count": 1}, "Ministry": {"_count": 1}}, "GO": {"_count": 1, "GRYFFINDOR": {"_count": 1}}, "knuckles": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 2, "other": {"_count": 1}, "of": {"_count": 1}}, "son": {"_count": 1, "Potter": {"_count": 1}}, "watching": {"_count": 1, "a": {"_count": 1}}, "farfetched": {"_count": 1, "and": {"_count": 1}}, "entrants": {"_count": 1, "in": {"_count": 1}}, "mist": {"_count": 3, "before": {"_count": 1}, "catching": {"_count": 1}, "he": {"_count": 1}}, "any": {"_count": 4, "other": {"_count": 3}, "human": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "anyones": {"_count": 1, "there": {"_count": 1}}, "reins": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 1, "and": {"_count": 1}}, "theres": {"_count": 2, "anything": {"_count": 1}, "a": {"_count": 1}}, "James": {"_count": 4, "": {"_count": 2}, "he": {"_count": 1}, "said": {"_count": 1}}, "Voldemorts": {"_count": 3, "it": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "someone": {"_count": 2, "like": {"_count": 1}, "attempting": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "badly": {"_count": 1, "mixed": {"_count": 1}}, "warm": {"_count": 1, "breath": {"_count": 1}}, "Dad": {"_count": 2, "and": {"_count": 1}, "you": {"_count": 1}}, "Ludo": {"_count": 1, "said": {"_count": 1}}, "Well": {"_count": 1, "bet": {"_count": 1}}, "brass": {"_count": 1, "binoculars": {"_count": 1}}, "heights": {"_count": 1, "": {"_count": 1}}, "golden": {"_count": 1, "rain": {"_count": 1}}, "sleeping": {"_count": 1, "at": {"_count": 1}}, "Krum": {"_count": 3, "might": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "gunfire": {"_count": 1, "": {"_count": 1}}, "Hermiones": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "whispered": {"_count": 1}, "was": {"_count": 1}}, "emerald": {"_count": 1, "stars": {"_count": 1}}, "Winky": {"_count": 1, "did": {"_count": 1}}, "seeing": {"_count": 2, "YouKnowWho": {"_count": 1}, "her": {"_count": 1}}, "most": {"_count": 2, "of": {"_count": 2}}, "much": {"_count": 1, "longer": {"_count": 1}}, "Boys": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 2, "Crouch": {"_count": 1}, "Weasleys": {"_count": 1}}, "Hogwarts": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "anymore": {"_count": 1}}, "utterly": {"_count": 1, "uncivilized": {"_count": 1}}, "and": {"_count": 4, "was": {"_count": 1}, "just": {"_count": 1}, "Ill": {"_count": 1}, "I": {"_count": 1}}, "once": {"_count": 1, "this": {"_count": 1}}, "Arithmancy": {"_count": 1, "": {"_count": 1}}, "plants": {"_count": 1, "than": {"_count": 1}}, "minor": {"_count": 1, "explosions": {"_count": 1}}, "deformed": {"_count": 1, "shellless": {"_count": 1}}, "shes": {"_count": 4, "got": {"_count": 2}, "put": {"_count": 1}, "in": {"_count": 1}}, "people": {"_count": 3, "who": {"_count": 1}, "just": {"_count": 1}, "staring": {"_count": 1}}, "until": {"_count": 1, "youre": {"_count": 1}}, "were": {"_count": 1, "accusing": {"_count": 1}}, "houseelves": {"_count": 2, "here": {"_count": 1}, "who": {"_count": 1}}, "Lockhart": {"_count": 1, "The": {"_count": 1}}, "highly": {"_count": 1, "contagious": {"_count": 1}}, "Neville": {"_count": 3, "had": {"_count": 1}, "": {"_count": 2}}, "ghostly": {"_count": 1, "eyes": {"_count": 1}}, "Dumbledore": {"_count": 7, "but": {"_count": 1}, "said": {"_count": 1}, "could": {"_count": 1}, "gave": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}, "keep": {"_count": 1}}, "theyve": {"_count": 3, "finally": {"_count": 1}, "got": {"_count": 2}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 1, "fine": {"_count": 1}}, "Bills": {"_count": 1, "but": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "chips": {"_count": 1, "of": {"_count": 1}}, "every": {"_count": 2, "wand": {"_count": 1}, "other": {"_count": 1}}, "these": {"_count": 2, "they": {"_count": 1}, "but": {"_count": 1}}, "hags": {"_count": 1, "who": {"_count": 1}}, "such": {"_count": 1, "an": {"_count": 1}}, "fiery": {"_count": 1, "rockets": {"_count": 1}}, "nothing": {"_count": 5, "more": {"_count": 1}, "Harry": {"_count": 1}, "better": {"_count": 3}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "stones": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "breaking": {"_count": 1, "glass": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "childrens": {"_count": 1, "soccer": {"_count": 1}}, "Christmas": {"_count": 1, "wasnt": {"_count": 1}}, "snakes": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "Cedric": {"_count": 2, "prepared": {"_count": 1}, "those": {"_count": 1}}, "Moody": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "uge": {"_count": 1, "statues": {"_count": 1}}, "zat": {"_count": 1, "": {"_count": 1}}, "trolls": {"_count": 2, "": {"_count": 1}, "really": {"_count": 1}}, "killing": {"_count": 1, "everyone": {"_count": 1}}, "unicorns": {"_count": 1, "not": {"_count": 1}}, "youd": {"_count": 2, "think": {"_count": 1}, "dare": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "cheating": {"_count": 1, "than": {"_count": 1}}, "yeh": {"_count": 1, "wouldn": {"_count": 1}}, "lying": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 2, "which": {"_count": 1}, "it": {"_count": 1}}, "Crouch": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "Hagrids": {"_count": 1, "all": {"_count": 1}}, "slimy": {"_count": 2, "grayishgreen": {"_count": 1}, "cauliflowers": {"_count": 1}}, "octopus": {"_count": 1, "tentacles": {"_count": 1}}, "silver": {"_count": 1, "darts": {"_count": 1}}, "potatofilled": {"_count": 1, "sacks": {"_count": 1}}, "hes": {"_count": 3, "dying": {"_count": 1}, "using": {"_count": 1}, "eating": {"_count": 1}}, "take": {"_count": 1, "a": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "spades": {"_count": 1, "and": {"_count": 1}}, "sparkly": {"_count": 1, "stuff": {"_count": 1}}, "clouds": {"_count": 1, "separated": {"_count": 1}}, "light": {"_count": 2, "made": {"_count": 1}, "like": {"_count": 1}}, "wind": {"_count": 1, "made": {"_count": 1}}, "glass": {"_count": 1, "": {"_count": 1}}, "Wormtails": {"_count": 1, "blunder": {"_count": 1}}, "Bodrod": {"_count": 1, "the": {"_count": 1}}, "large": {"_count": 2, "pale": {"_count": 2}}, "molten": {"_count": 1, "silver": {"_count": 1}}, "themselves": {"_count": 1, "had": {"_count": 1}}, "jackals": {"_count": 1, "their": {"_count": 1}}, "Cedrics": {"_count": 1, "as": {"_count": 1}}, "waking": {"_count": 2, "from": {"_count": 2}}, "triumph": {"_count": 1, "in": {"_count": 1}}, "Voldemort": {"_count": 5, "himself": {"_count": 1}, "": {"_count": 2}, "even": {"_count": 1}, "cried": {"_count": 1}}, "fingers": {"_count": 1, "with": {"_count": 1}}, "Privet": {"_count": 1, "Drive": {"_count": 1}}, "wizard": {"_count": 1, "magic": {"_count": 1}}, "with": {"_count": 1, "wizards": {"_count": 1}}, "giant": {"_count": 2, "birds": {"_count": 1}, "soapsuds": {"_count": 1}}, "serpents": {"_count": 2, "": {"_count": 2}}, "\u2018a": {"_count": 1, "tale": {"_count": 1}}, "battle": {"_count": 1, "fumes": {"_count": 1}}, "Snapes": {"_count": 1, "shrank": {"_count": 1}}, "Dung": {"_count": 2, "around": {"_count": 1}, "and": {"_count": 1}}, "my": {"_count": 9, "second": {"_count": 1}, "mother": {"_count": 3}, "lyrics": {"_count": 1}, "autograph": {"_count": 1}, "assistance": {"_count": 1}, "sister": {"_count": 1}, "little": {"_count": 1}}, "needles": {"_count": 1, "as": {"_count": 1}}, "chewing": {"_count": 1, "carpet": {"_count": 1}}, "miniature": {"_count": 2, "rockets": {"_count": 1}, "hammers": {"_count": 1}}, "jewels": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 4, "boys": {"_count": 1}, "members": {"_count": 1}, "grotesque": {"_count": 1}, "large": {"_count": 1}}, "Ginnys": {"_count": 1, "older": {"_count": 1}}, "shriveled": {"_count": 1, "black": {"_count": 1}}, "heroes": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "so": {"_count": 4, "many": {"_count": 3}, "much": {"_count": 1}}, "boils": {"_count": 1, "rather": {"_count": 1}}, "rancid": {"_count": 1, "manure": {"_count": 1}}, "dancing": {"_count": 1, "very": {"_count": 1}}, "somebodys": {"_count": 1, "maiden": {"_count": 1}}, "pillars": {"_count": 1, "four": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "jarring": {"_count": 1, "notes": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "Stinksap": {"_count": 2, "": {"_count": 1}, "teachers": {"_count": 1}}, "Seamuss": {"_count": 1, "he": {"_count": 1}}, "yourselves": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "it": {"_count": 1}}, "hats": {"_count": 1, "to": {"_count": 1}}, "woolly": {"_count": 1, "bladders": {"_count": 1}}, "tiny": {"_count": 3, "pixieish": {"_count": 1}, "starlike": {"_count": 1}, "suns": {"_count": 1}}, "brown": {"_count": 1, "rice": {"_count": 1}}, "just": {"_count": 1, "make": {"_count": 1}}, "essays": {"_count": 1, "for": {"_count": 1}}, "Molly": {"_count": 1, "said": {"_count": 1}}, "Kreacher": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "Nevilles": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Alicia": {"_count": 1, "told": {"_count": 1}}, "jinxes": {"_count": 1, "does": {"_count": 1}}, "S": {"_count": 1, "": {"_count": 1}}, "Diggory": {"_count": 1, "was": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "windmills": {"_count": 1, "then": {"_count": 1}}, "somethings": {"_count": 1, "attacked": {"_count": 1}}, "threats": {"_count": 2, "under": {"_count": 1}, "to": {"_count": 1}}, "Umbridge": {"_count": 1, "": {"_count": 1}}, "hairy": {"_count": 1, "hams": {"_count": 1}}, "Potter": {"_count": 2, "and": {"_count": 1}, "here": {"_count": 1}}, "Weasley": {"_count": 1, "Is": {"_count": 1}}, "Muggles": {"_count": 3, "all": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}}, "we": {"_count": 3, "was": {"_count": 1}, "were": {"_count": 1}, "really": {"_count": 1}}, "wizards": {"_count": 3, "an": {"_count": 1}, "magic": {"_count": 1}, "Ron": {"_count": 1}}, "watchin": {"_count": 1, "bits": {"_count": 1}}, "tha": {"_count": 1, "": {"_count": 1}}, "rhino": {"_count": 1, "hide": {"_count": 1}}, "Karkus": {"_count": 1, "overload": {"_count": 1}}, "favorin": {"_count": 1, "YouKnowWho": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "Parvati": {"_count": 1, "and": {"_count": 1}}, "grunting": {"_count": 1, "a": {"_count": 1}}, "GrubblyPlank": {"_count": 1, "wouldnt": {"_count": 1}}, "Dobbys": {"_count": 1, "head": {"_count": 1}}, "Umbridges": {"_count": 2, "": {"_count": 1}, "office": {"_count": 1}}, "A": {"_count": 1, "CLEAN": {"_count": 1}}, "long": {"_count": 1, "skinny": {"_count": 1}}, "joining": {"_count": 1, "in": {"_count": 1}}, "Do": {"_count": 1, "it": {"_count": 1}}, "well": {"_count": 1, "have": {"_count": 1}}, "Snape": {"_count": 4, "but": {"_count": 2}, "": {"_count": 1}, "was": {"_count": 1}}, "mind": {"_count": 1, "reading": {"_count": 1}}, "venom": {"_count": 1, "": {"_count": 1}}, "Occlumency": {"_count": 1, "much": {"_count": 1}}, "bile": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 2, "oh": {"_count": 1}, "she": {"_count": 1}}, "guards": {"_count": 1, "and": {"_count": 1}}, "daughter": {"_count": 1, "eh": {"_count": 1}}, "losing": {"_count": 1, "a": {"_count": 1}}, "MadEye": {"_count": 2, "Moodys": {"_count": 1}, "like": {"_count": 1}}, "mines": {"_count": 1, "everywhere": {"_count": 1}}, "sparkling": {"_count": 1, "clouds": {"_count": 1}}, "question": {"_count": 1, "ten": {"_count": 1}}, "youve": {"_count": 1, "just": {"_count": 1}}, "Dont": {"_count": 1, "be": {"_count": 1}}, "thats": {"_count": 1, "a": {"_count": 1}}, "Honestly": {"_count": 1, "some": {"_count": 1}}, "jumping": {"_count": 1, "on": {"_count": 1}}, "McGonagall": {"_count": 1, "or": {"_count": 1}}, "grenades": {"_count": 1, "toward": {"_count": 1}}, "Gran": {"_count": 1, "really": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "Trelawneys": {"_count": 1, "said": {"_count": 1}}, "Trelawney": {"_count": 1, "hes": {"_count": 1}}, "scurrying": {"_count": 1, "burrowing": {"_count": 1}}, "another": {"_count": 1, "bottle": {"_count": 1}}, "cloaks": {"_count": 1, "": {"_count": 1}}, "obedient": {"_count": 1, "hounds": {"_count": 1}}, "luminous": {"_count": 1, "insect": {"_count": 1}}, "thousands": {"_count": 1, "of": {"_count": 1}}, "purple": {"_count": 1, "flame": {"_count": 1}}, "ribbons": {"_count": 1, "of": {"_count": 1}}, "rolls": {"_count": 1, "of": {"_count": 1}}, "ropes": {"_count": 1, "": {"_count": 1}}, "arrows": {"_count": 1, "past": {"_count": 1}}, "bells": {"_count": 1, "": {"_count": 1}}, "raindrops": {"_count": 1, "and": {"_count": 1}}, "Gryffindor": {"_count": 1, "beating": {"_count": 1}}, "tonight": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "World": {"_count": 1, "Cup": {"_count": 1}}, "Karkaroff": {"_count": 1, "didnt": {"_count": 1}}, "powder": {"_count": 1, "over": {"_count": 1}}, "gold": {"_count": 1, "and": {"_count": 1}}, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}, "cannon": {"_count": 1, "fire": {"_count": 1}}, "hell": {"_count": 2, "be": {"_count": 2}}, "cooking": {"_count": 1, "and": {"_count": 1}}, "tchah": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "Ollivanders": {"_count": 1, "gone": {"_count": 1}}, "old": {"_count": 1, "times": {"_count": 1}}, "Borgins": {"_count": 1, "got": {"_count": 1}}, "revenge": {"_count": 1, "": {"_count": 1}}, "gargoyles": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "fighting": {"_count": 1, "a": {"_count": 1}}, "drink": {"_count": 1, "": {"_count": 1}}, "plain": {"_count": 1, "water": {"_count": 1}}, "goldfish": {"_count": 1, "above": {"_count": 1}}, "liquid": {"_count": 1, "licorice": {"_count": 1}}, "spells": {"_count": 1, "that": {"_count": 1}}, "footlong": {"_count": 1, "maggots": {"_count": 1}}, "knives": {"_count": 1, "on": {"_count": 1}}, "\u2018doctor": {"_count": 1, "": {"_count": 1}}, "betrayal": {"_count": 1, "of": {"_count": 1}}, "brother": {"_count": 1, "and": {"_count": 1}}, "parchment": {"_count": 1, "and": {"_count": 1}}, "really": {"_count": 1, "good": {"_count": 1}}, "mandolins": {"_count": 1, "issued": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "real": {"_count": 1, "magic": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "nor": {"_count": 2, "dislike": {"_count": 1}, "about": {"_count": 1}}, "everything": {"_count": 2, "else": {"_count": 2}}, "No": {"_count": 1, "I": {"_count": 1}}, "driedup": {"_count": 1, "kidneys": {"_count": 1}}, "catsick": {"_count": 1, "over": {"_count": 1}}, "abou": {"_count": 1, "Snape": {"_count": 1}}, "Bibble": {"_count": 1, "no": {"_count": 1}}, "cat": {"_count": 1, "litter": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 1}, "gone": {"_count": 1}}, "Borgin": {"_count": 1, "and": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "Tonks": {"_count": 1, "look": {"_count": 1}}, "Aragog": {"_count": 1, "Horace": {"_count": 1}}, "gas": {"_count": 1, "": {"_count": 1}}, "weve": {"_count": 1, "all": {"_count": 1}}, "song": {"_count": 1, "": {"_count": 1}}, "crimson": {"_count": 1, "flowers": {"_count": 1}}, "dragon": {"_count": 1, "eggshells": {"_count": 1}}, "wet": {"_count": 1, "tar": {"_count": 1}}, "smoke": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "many": {"_count": 1, "creatures": {"_count": 1}}, "appreciation": {"_count": 1, "for": {"_count": 1}}, "none": {"_count": 1, "that": {"_count": 1}}, "kids": {"_count": 1, "Dumbledore": {"_count": 1}}, "flames": {"_count": 2, "in": {"_count": 1}, "their": {"_count": 1}}, "fire": {"_count": 4, "Harry": {"_count": 2}, "as": {"_count": 1}, "": {"_count": 1}}, "drops": {"_count": 1, "of": {"_count": 1}}, "glittering": {"_count": 1, "grit": {"_count": 1}}, "vomit": {"_count": 1, "he": {"_count": 1}}, "\u2018I": {"_count": 2, "love": {"_count": 1}, "dont": {"_count": 1}}, "remembering": {"_count": 1, "a": {"_count": 1}}, "mud": {"_count": 1, "": {"_count": 1}}, "bogies": {"_count": 1, "": {"_count": 1}}, "asking": {"_count": 1, "them": {"_count": 1}}, "cushions": {"_count": 1, "with": {"_count": 1}}, "courage": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "drains": {"_count": 1}}, "anywhere": {"_count": 1, "in": {"_count": 1}}, "gazing": {"_count": 1, "into": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "gnomes": {"_count": 1, "": {"_count": 1}}, "Elphias": {"_count": 1, "": {"_count": 1}}, "theyd": {"_count": 1, "been": {"_count": 1}}, "acid": {"_count": 1, "in": {"_count": 1}}, "cold": {"_count": 2, "air": {"_count": 1}, "water": {"_count": 1}}, "resisting": {"_count": 1, "the": {"_count": 1}}, "diseased": {"_count": 1, "things": {"_count": 1}}, "Aberforth": {"_count": 1, "": {"_count": 1}}, "Muriel": {"_count": 1, "or": {"_count": 1}}, "animals": {"_count": 2, "": {"_count": 1}, "stupid": {"_count": 1}}, "reading": {"_count": 1, "kids": {"_count": 1}}, "gingerbread": {"_count": 1, "houses": {"_count": 1}}, "why": {"_count": 1, "isnt": {"_count": 1}}, "faceless": {"_count": 1, "sentinels": {"_count": 1}}, "Mafalda": {"_count": 1, "though": {"_count": 1}}, "crackings": {"_count": 1, "of": {"_count": 1}}, "Gringotts": {"_count": 1, "the": {"_count": 1}}, "scalding": {"_count": 1, "knives": {"_count": 1}}, "fear": {"_count": 2, "": {"_count": 2}}, "fluffy": {"_count": 1, "white": {"_count": 1}}, "Abbott": {"_count": 1, "he": {"_count": 1}}, "Dumbledores": {"_count": 1, "tomb": {"_count": 1}}, "meat": {"_count": 1, "gone": {"_count": 1}}, "lava": {"_count": 1, "scorching": {"_count": 1}}, "Dogbreath": {"_count": 1, "Doge": {"_count": 1}}, "frozen": {"_count": 1, "earth": {"_count": 1}}, "trees": {"_count": 1, "with": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "ear": {"_count": 1, "trumpets": {"_count": 1}}, "burning": {"_count": 1, "underpants": {"_count": 1}}, "boulders": {"_count": 1, "Harry": {"_count": 1}}, "using": {"_count": 1, "the": {"_count": 1}}, "physical": {"_count": 2, "pain": {"_count": 2}}, "sinking": {"_count": 1, "into": {"_count": 1}}, "planning": {"_count": 1, "to": {"_count": 1}}, "Dora": {"_count": 1, "but": {"_count": 1}}, "whitehot": {"_count": 1, "bodies": {"_count": 1}}, "skittles": {"_count": 1, "and": {"_count": 1}}, "strips": {"_count": 1, "of": {"_count": 1}}, "bowtruckles": {"_count": 1, "on": {"_count": 1}}, "punishment": {"_count": 1, "the": {"_count": 1}}, "shrapnel": {"_count": 1, "through": {"_count": 1}}, "wood": {"_count": 1, "": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 1, "much": {"_count": 1}}, "flesh": {"_count": 1, "in": {"_count": 1}}, "Hedwig": {"_count": 1, "so": {"_count": 1}}, "Patronuses": {"_count": 1, "to": {"_count": 1}}, "ghosts": {"_count": 1, "as": {"_count": 1}}, "rock": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "here": {"_count": 1}}, "Kings": {"_count": 1, "Cross": {"_count": 1}}, "softly": {"_count": 1, "falling": {"_count": 1}}, "bull": {"_count": 1, "elephants": {"_count": 1}}, "wolves": {"_count": 1, "about": {"_count": 1}}, "Ignotus": {"_count": 1, "its": {"_count": 1}}, "cobwebs": {"_count": 1, "in": {"_count": 1}}}, "When": {"_count": 431, "Mr": {"_count": 1, "and": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 14, "could": {"_count": 1}, "are": {"_count": 1}, "think": {"_count": 1}, "say": {"_count": 6}, "have": {"_count": 2}, "cleaned": {"_count": 1}, "stripped": {"_count": 1}, "wanted": {"_count": 1}}, "he": {"_count": 87, "was": {"_count": 3}, "had": {"_count": 16}, "turned": {"_count": 2}, "woke": {"_count": 1}, "looked": {"_count": 6}, "tried": {"_count": 1}, "finally": {"_count": 1}, "reached": {"_count": 10}, "wasnt": {"_count": 2}, "came": {"_count": 1}, "heard": {"_count": 2}, "did": {"_count": 4}, "spoke": {"_count": 5}, "and": {"_count": 1}, "awoke": {"_count": 2}, "saw": {"_count": 3}, "took": {"_count": 1}, "touched": {"_count": 1}, "Ron": {"_count": 1}, "found": {"_count": 1}, "sat": {"_count": 2}, "knocked": {"_count": 1}, "next": {"_count": 1}, "emerged": {"_count": 1}, "passed": {"_count": 2}, "paused": {"_count": 1}, "entered": {"_count": 2}, "withdrew": {"_count": 1}, "realized": {"_count": 1}, "merely": {"_count": 1}, "told": {"_count": 1}, "arrived": {"_count": 1}, "could": {"_count": 1}, "opened": {"_count": 1}, "straightened": {"_count": 2}, "pulled": {"_count": 1}, "broke": {"_count": 1}, "tracked": {"_count": 1}, "wondered": {"_count": 1}}, "September": {"_count": 1, "came": {"_count": 1}}, "the": {"_count": 52, "mail": {"_count": 1}, "bell": {"_count": 11}, "ghost": {"_count": 1}, "bars": {"_count": 1}, "door": {"_count": 3}, "whole": {"_count": 1}, "new": {"_count": 1}, "hubbub": {"_count": 1}, "Transfiguration": {"_count": 1}, "boggart": {"_count": 1}, "dementors": {"_count": 1}, "hat": {"_count": 1}, "puddings": {"_count": 1}, "second": {"_count": 1}, "barn": {"_count": 1}, "audience": {"_count": 1}, "decorations": {"_count": 1}, "champions": {"_count": 1}, "song": {"_count": 1}, "next": {"_count": 1}, "Weird": {"_count": 1}, "Dark": {"_count": 2}, "post": {"_count": 1}, "connection": {"_count": 1}, "Potions": {"_count": 1}, "doors": {"_count": 2}, "last": {"_count": 1}, "cleverlooking": {"_count": 1}, "final": {"_count": 1}, "ticket": {"_count": 1}, "pressure": {"_count": 1}, "sun": {"_count": 1}, "time": {"_count": 1}, "Chamber": {"_count": 1}, "cake": {"_count": 1}, "Patronuses": {"_count": 1}, "flame": {"_count": 1}, "flask": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 2}}, "I": {"_count": 31, "open": {"_count": 1}, "call": {"_count": 2}, "failed": {"_count": 1}, "heard": {"_count": 1}, "tell": {"_count": 1}, "count": {"_count": 1}, "was": {"_count": 4}, "think": {"_count": 1}, "cornered": {"_count": 1}, "went": {"_count": 3}, "cant": {"_count": 1}, "had": {"_count": 1}, "say": {"_count": 1}, "ask": {"_count": 1}, "fell": {"_count": 1}, "told": {"_count": 1}, "first": {"_count": 1}, "saw": {"_count": 2}, "get": {"_count": 2}, "tried": {"_count": 1}, "lived": {"_count": 1}, "refused": {"_count": 1}, "discovered": {"_count": 1}}, "they": {"_count": 48, "had": {"_count": 9}, "say": {"_count": 1}, "shook": {"_count": 1}, "left": {"_count": 2}, "knocked": {"_count": 1}, "told": {"_count": 1}, "flew": {"_count": 1}, "were": {"_count": 5}, "spotted": {"_count": 1}, "hear": {"_count": 1}, "reached": {"_count": 5}, "get": {"_count": 1}, "went": {"_count": 3}, "let": {"_count": 1}, "finally": {"_count": 1}, "saw": {"_count": 1}, "arrived": {"_count": 4}, "entered": {"_count": 2}, "got": {"_count": 1}, "passed": {"_count": 1}, "walked": {"_count": 1}, "heard": {"_count": 1}, "returned": {"_count": 1}, "know": {"_count": 1}, "spoke": {"_count": 1}}, "Neville": {"_count": 1, "Longbottom": {"_count": 1}}, "it": {"_count": 7, "finally": {"_count": 2}, "bit": {"_count": 1}, "is": {"_count": 1}, "had": {"_count": 2}, "came": {"_count": 1}}, "everyone": {"_count": 6, "had": {"_count": 5}, "was": {"_count": 1}}, "Harry": {"_count": 40, "knocked": {"_count": 1}, "finally": {"_count": 1}, "pulled": {"_count": 1}, "walked": {"_count": 1}, "had": {"_count": 7}, "pushed": {"_count": 2}, "got": {"_count": 1}, "relieved": {"_count": 1}, "Ron": {"_count": 2}, "and": {"_count": 4}, "woke": {"_count": 2}, "entered": {"_count": 1}, "reached": {"_count": 3}, "told": {"_count": 1}, "touched": {"_count": 1}, "didnt": {"_count": 1}, "did": {"_count": 2}, "continued": {"_count": 2}, "laid": {"_count": 1}, "awoke": {"_count": 1}, "next": {"_count": 1}, "landed": {"_count": 1}, "stood": {"_count": 1}, "looked": {"_count": 1}}, "are": {"_count": 2, "you": {"_count": 2}}, "Malfoy": {"_count": 1, "had": {"_count": 1}}, "Angelina": {"_count": 2, "had": {"_count": 1}, "blew": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "Marchbanks": {"_count": 1}}, "dinners": {"_count": 1, "over": {"_count": 1}}, "young": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 7, "last": {"_count": 6}, "long": {"_count": 1}}, "is": {"_count": 1, "Gilderoy": {"_count": 1}}, "hed": {"_count": 5, "found": {"_count": 1}, "finished": {"_count": 2}, "opened": {"_count": 1}, "finally": {"_count": 1}}, "Filch": {"_count": 1, "wasnt": {"_count": 1}}, "she": {"_count": 8, "reached": {"_count": 2}, "spoke": {"_count": 2}, "saw": {"_count": 2}, "had": {"_count": 2}}, "youve": {"_count": 4, "finished": {"_count": 1}, "all": {"_count": 1}, "both": {"_count": 1}, "done": {"_count": 1}}, "Snape": {"_count": 3, "turned": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}}, "Draco": {"_count": 2, "points": {"_count": 1}, "Malfoy": {"_count": 1}}, "Hermione": {"_count": 3, "had": {"_count": 2}, "returned": {"_count": 1}}, "Ive": {"_count": 2, "had": {"_count": 1}, "Stunned": {"_count": 1}}, "in": {"_count": 1, "doubt": {"_count": 1}}, "Dumbledore": {"_count": 5, "addressed": {"_count": 1}, "pushed": {"_count": 1}, "finds": {"_count": 1}, "straightened": {"_count": 1}, "spoke": {"_count": 1}}, "will": {"_count": 1, "they": {"_count": 1}}, "Fortunes": {"_count": 1, "Turn": {"_count": 1}}, "You": {"_count": 1, "Know": {"_count": 1}}, "Ron": {"_count": 3, "and": {"_count": 1}, "woke": {"_count": 1}, "offered": {"_count": 1}}, "nobody": {"_count": 4, "has": {"_count": 1}, "did": {"_count": 2}, "spoke": {"_count": 1}}, "did": {"_count": 8, "I": {"_count": 1}, "Dumbledore": {"_count": 1}, "this": {"_count": 1}, "you": {"_count": 4}, "it": {"_count": 1}}, "can": {"_count": 3, "I": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}}, "this": {"_count": 1, "gets": {"_count": 1}}, "one": {"_count": 1, "wizard": {"_count": 1}}, "real": {"_count": 1, "Muggles": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "Mostafa": {"_count": 1, "blew": {"_count": 1}}, "would": {"_count": 1, "he": {"_count": 1}}, "all": {"_count": 4, "the": {"_count": 4}}, "their": {"_count": 2, "headmistress": {"_count": 1}, "voices": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "houseelves": {"_count": 1, "have": {"_count": 1}}, "Lupin": {"_count": 2, "had": {"_count": 2}}, "Dobby": {"_count": 1, "had": {"_count": 1}}, "we": {"_count": 10, "get": {"_count": 2}, "told": {"_count": 1}, "saw": {"_count": 1}, "met": {"_count": 1}, "heard": {"_count": 2}, "cant": {"_count": 1}, "were": {"_count": 1}, "come": {"_count": 1}}, "Voldemort": {"_count": 2, "disappeared": {"_count": 1}, "discovered": {"_count": 1}}, "none": {"_count": 1, "appeared": {"_count": 1}}, "Azkaban": {"_count": 1, "is": {"_count": 1}}, "Winky": {"_count": 1, "was": {"_count": 1}}, "theyre": {"_count": 1, "immobilized": {"_count": 1}}, "Sirius": {"_count": 1, "wrested": {"_count": 1}}, "darkness": {"_count": 1, "fell": {"_count": 1}}, "first": {"_count": 1, "they": {"_count": 1}}, "old": {"_count": 1, "Slytherin": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "neither": {"_count": 2, "Ron": {"_count": 2}}, "everybody": {"_count": 1, "had": {"_count": 1}}, "your": {"_count": 1, "scar": {"_count": 1}}, "Alicia": {"_count": 1, "Spinnet": {"_count": 1}}, "Slytherins": {"_count": 1, "some": {"_count": 1}}, "youre": {"_count": 1, "ready": {"_count": 1}}, "Hermiones": {"_count": 1, "Daily": {"_count": 1}}, "Bode": {"_count": 1, "tried": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "several": {"_count": 2, "long": {"_count": 1}, "carpenters": {"_count": 1}}, "Mums": {"_count": 1, "next": {"_count": 1}}, "Harrys": {"_count": 1, "examiner": {"_count": 1}}, "however": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "Ginny": {"_count": 1, "had": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "theres": {"_count": 1, "strife": {"_count": 1}}, "Albus": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "looking": {"_count": 1}}, "Scrimgeour": {"_count": 1, "made": {"_count": 1}}, "next": {"_count": 1, "they": {"_count": 1}}, "finally": {"_count": 1, "he": {"_count": 1}}, "my": {"_count": 2, "wand": {"_count": 1}, "sister": {"_count": 1}}, "YouKnowWho": {"_count": 1, "realized": {"_count": 1}}, "was": {"_count": 1, "it": {"_count": 1}}, "Dolohov": {"_count": 1, "and": {"_count": 1}}, "Mummys": {"_count": 1, "gone": {"_count": 1}}}, "woke": {"_count": 45, "up": {"_count": 12, "on": {"_count": 3}, "last": {"_count": 1}, "Harry": {"_count": 2}, "and": {"_count": 2}, "with": {"_count": 1}, "so": {"_count": 1}, "an": {"_count": 1}, "fwightened": {"_count": 1}}, "with": {"_count": 6, "a": {"_count": 6}}, "early": {"_count": 5, "the": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 2}, "next": {"_count": 1}}, "at": {"_count": 1, "five": {"_count": 1}}, "sweating": {"_count": 1, "and": {"_count": 1}}, "next": {"_count": 1, "day": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "find": {"_count": 1}}, "them": {"_count": 3, "all": {"_count": 1}, "after": {"_count": 1}, "up": {"_count": 1}}, "quite": {"_count": 1, "suddenly": {"_count": 1}}, "the": {"_count": 3, "next": {"_count": 1}, "portrait": {"_count": 1}, "following": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "the": {"_count": 1}}, "extremely": {"_count": 1, "early": {"_count": 1}}, "as": {"_count": 1, "suddenly": {"_count": 1}}, "him": {"_count": 1, "it": {"_count": 1}}, "me": {"_count": 3, "up": {"_count": 3}}, "you": {"_count": 1, "up": {"_count": 1}}, "repeatedly": {"_count": 1, "panicky": {"_count": 1}}}, "up": {"_count": 4316, "on": {"_count": 74, "the": {"_count": 25}, "a": {"_count": 3}, "Dr": {"_count": 1}, "Privet": {"_count": 1}, "his": {"_count": 6}, "Sunday": {"_count": 3}, "some": {"_count": 1}, "them": {"_count": 1}, "that": {"_count": 1}, "one": {"_count": 2}, "Cheering": {"_count": 1}, "stuff": {"_count": 1}, "Blacks": {"_count": 1}, "him": {"_count": 2}, "resisting": {"_count": 1}, "this": {"_count": 1}, "direct": {"_count": 1}, "points": {"_count": 1}, "spew": {"_count": 1}, "top": {"_count": 1}, "your": {"_count": 1}, "her": {"_count": 2}, "em": {"_count": 1}, "several": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 2}, "end": {"_count": 1}, "Hagrid": {"_count": 1}, "Borgins": {"_count": 1}, "all": {"_count": 2}, "an": {"_count": 1}, "Harrys": {"_count": 1}, "you": {"_count": 1}, "level": {"_count": 2}, "people": {"_count": 1}}, "his": {"_count": 163, "briefcase": {"_count": 1}, "face": {"_count": 11}, "newspaper": {"_count": 1}, "long": {"_count": 1}, "steak": {"_count": 2}, "hand": {"_count": 5}, "lamp": {"_count": 1}, "Nimbus": {"_count": 2}, "sleeve": {"_count": 3}, "courage": {"_count": 2}, "place": {"_count": 1}, "trousers": {"_count": 2}, "wand": {"_count": 12}, "sleeves": {"_count": 3}, "feet": {"_count": 2}, "nostrils": {"_count": 1}, "jadegreen": {"_count": 1}, "robes": {"_count": 3}, "quill": {"_count": 2}, "mind": {"_count": 9}, "numb": {"_count": 1}, "last": {"_count": 1}, "hands": {"_count": 3}, "arms": {"_count": 3}, "pinstriped": {"_count": 1}, "visor": {"_count": 2}, "fork": {"_count": 2}, "cauldron": {"_count": 2}, "position": {"_count": 2}, "shoelace": {"_count": 2}, "glasses": {"_count": 1}, "bag": {"_count": 4}, "eyes": {"_count": 8}, "whole": {"_count": 1}, "old": {"_count": 1}, "walking": {"_count": 1}, "spoon": {"_count": 2}, "enormous": {"_count": 1}, "letter": {"_count": 1}, "own": {"_count": 4}, "miniature": {"_count": 1}, "first": {"_count": 1}, "knife": {"_count": 2}, "pestle": {"_count": 1}, "ginger": {"_count": 1}, "fingers": {"_count": 1}, "path": {"_count": 1}, "bloody": {"_count": 1}, "vision": {"_count": 1}, "army": {"_count": 1}, "body": {"_count": 1}, "flagrant": {"_count": 1}, "aunt": {"_count": 1}, "badge": {"_count": 1}, "plate": {"_count": 1}, "bloodstained": {"_count": 1}, "lunch": {"_count": 1}, "schoolbag": {"_count": 3}, "Potions": {"_count": 1}, "dragon": {"_count": 1}, "loincloth": {"_count": 1}, "bedroom": {"_count": 1}, "chest": {"_count": 1}, "plump": {"_count": 1}, "potatoes": {"_count": 1}, "end": {"_count": 1}, "hair": {"_count": 3}, "or": {"_count": 1}, "heart": {"_count": 1}, "packing": {"_count": 1}, "followers": {"_count": 1}, "drink": {"_count": 1}, "pajama": {"_count": 1}, "fallen": {"_count": 1}, "jacket": {"_count": 1}, "": {"_count": 1}, "bald": {"_count": 1}, "subject": {"_count": 1}, "neck": {"_count": 2}, "nose": {"_count": 2}, "family": {"_count": 1}, "muddy": {"_count": 1}, "Firebolt": {"_count": 1}, "nosey": {"_count": 1}, "things": {"_count": 1}, "muscley": {"_count": 1}, "expedition": {"_count": 1}, "right": {"_count": 1}}, "the": {"_count": 542, "road": {"_count": 6}, "street": {"_count": 12}, "brass": {"_count": 1}, "house": {"_count": 2}, "mail": {"_count": 1}, "cracks": {"_count": 1}, "door": {"_count": 1}, "note": {"_count": 1}, "stone": {"_count": 22}, "white": {"_count": 2}, "tracks": {"_count": 1}, "steps": {"_count": 16}, "card": {"_count": 1}, "marble": {"_count": 35}, "corridor": {"_count": 18}, "stairs": {"_count": 54}, "sleeves": {"_count": 4}, "passage": {"_count": 3}, "rear": {"_count": 7}, "field": {"_count": 6}, "top": {"_count": 1}, "tallest": {"_count": 2}, "dark": {"_count": 7}, "sparks": {"_count": 1}, "figure": {"_count": 1}, "grassy": {"_count": 2}, "fallen": {"_count": 2}, "moment": {"_count": 1}, "next": {"_count": 3}, "smallest": {"_count": 1}, "dinner": {"_count": 1}, "hall": {"_count": 3}, "car": {"_count": 1}, "hill": {"_count": 2}, "goods": {"_count": 1}, "crowded": {"_count": 2}, "alley": {"_count": 1}, "line": {"_count": 1}, "post": {"_count": 2}, "engine": {"_count": 1}, "envelope": {"_count": 4}, "passageway": {"_count": 5}, "sad": {"_count": 1}, "empty": {"_count": 3}, "dream": {"_count": 1}, "balaclava": {"_count": 1}, "limp": {"_count": 1}, "potion": {"_count": 1}, "letter": {"_count": 5}, "parchment": {"_count": 6}, "slope": {"_count": 3}, "diary": {"_count": 1}, "tunnel": {"_count": 1}, "long": {"_count": 2}, "bloodstained": {"_count": 1}, "small": {"_count": 1}, "bridge": {"_count": 1}, "third": {"_count": 1}, "clipping": {"_count": 1}, "parcel": {"_count": 3}, "loose": {"_count": 2}, "trousers": {"_count": 1}, "side": {"_count": 2}, "knife": {"_count": 1}, "spider": {"_count": 1}, "subject": {"_count": 1}, "goblet": {"_count": 1}, "boys": {"_count": 2}, "map": {"_count": 3}, "tail": {"_count": 1}, "Sneakoscope": {"_count": 1}, "nearest": {"_count": 1}, "Firebolt": {"_count": 1}, "High": {"_count": 3}, "Zonkos": {"_count": 1}, "challenge": {"_count": 1}, "pitch": {"_count": 4}, "exam": {"_count": 1}, "jug": {"_count": 1}, "mess": {"_count": 1}, "milk": {"_count": 1}, "cloak": {"_count": 1}, "sloping": {"_count": 3}, "sounds": {"_count": 1}, "crumbling": {"_count": 2}, "Invisibility": {"_count": 3}, "fireplace": {"_count": 1}, "rickety": {"_count": 1}, "tables": {"_count": 1}, "potatoes": {"_count": 1}, "table": {"_count": 4}, "boot": {"_count": 1}, "gentle": {"_count": 1}, "misty": {"_count": 1}, "dusty": {"_count": 1}, "rumbling": {"_count": 1}, "path": {"_count": 5}, "tents": {"_count": 1}, "damp": {"_count": 1}, "argument": {"_count": 1}, "staircase": {"_count": 8}, "mans": {"_count": 1}, "track": {"_count": 1}, "sweeping": {"_count": 1}, "lakes": {"_count": 1}, "Sorting": {"_count": 1}, "hat": {"_count": 2}, "last": {"_count": 2}, "BlastEnded": {"_count": 1}, "somersaulting": {"_count": 1}, "book": {"_count": 2}, "lawns": {"_count": 1}, "golden": {"_count": 3}, "dish": {"_count": 1}, "grounds": {"_count": 2}, "gap": {"_count": 2}, "Goblet": {"_count": 1}, "Write": {"_count": 1}, "flowers": {"_count": 1}, "nerve": {"_count": 1}, "courage": {"_count": 1}, "slack": {"_count": 1}, "girls": {"_count": 2}, "tap": {"_count": 1}, "whole": {"_count": 2}, "egg": {"_count": 1}, "spiral": {"_count": 3}, "jagged": {"_count": 1}, "wrong": {"_count": 1}, "ingredients": {"_count": 1}, "copy": {"_count": 1}, "magazine": {"_count": 1}, "left": {"_count": 2}, "cave": {"_count": 1}, "flask": {"_count": 1}, "drive": {"_count": 3}, "bottle": {"_count": 2}, "number": {"_count": 2}, "rows": {"_count": 1}, "counterjinx": {"_count": 1}, "paper": {"_count": 1}, "stands": {"_count": 1}, "black": {"_count": 1}, "houseelf": {"_count": 1}, "hip": {"_count": 1}, "moving": {"_count": 2}, "ward": {"_count": 5}, "chimney": {"_count": 2}, "three": {"_count": 1}, "worn": {"_count": 1}, "string": {"_count": 1}, "lengths": {"_count": 1}, "bag": {"_count": 1}, "pile": {"_count": 2}, "owl": {"_count": 1}, "newspaper": {"_count": 6}, "collars": {"_count": 1}, "pair": {"_count": 1}, "wall": {"_count": 2}, "hats": {"_count": 1}, "uses": {"_count": 1}, "quill": {"_count": 1}, "hint": {"_count": 1}, "Gryffindor": {"_count": 1}, "fastening": {"_count": 1}, "muddy": {"_count": 1}, "steak": {"_count": 1}, "snow": {"_count": 1}, "window": {"_count": 1}, "aisle": {"_count": 6}, "cushions": {"_count": 1}, "escalator": {"_count": 1}, "glass": {"_count": 2}, "Daily": {"_count": 1}, "otherwise": {"_count": 1}, "queue": {"_count": 1}, "slippery": {"_count": 1}, "Pensieve": {"_count": 1}, "criminals": {"_count": 1}, "dung": {"_count": 1}, "story": {"_count": 1}, "front": {"_count": 4}, "others": {"_count": 2}, "incantations": {"_count": 1}, "life": {"_count": 1}, "Transfiguration": {"_count": 1}, "space": {"_count": 1}, "room": {"_count": 2}, "tiered": {"_count": 1}, "head": {"_count": 1}, "words": {"_count": 1}, "garden": {"_count": 3}, "chair": {"_count": 1}, "bank": {"_count": 2}, "Death": {"_count": 1}, "carefully": {"_count": 1}, "walls": {"_count": 1}, "tray": {"_count": 2}, "closed": {"_count": 1}, "platform": {"_count": 1}, "chance": {"_count": 1}, "process": {"_count": 1}, "sopophorous": {"_count": 1}, "pot": {"_count": 2}, "lane": {"_count": 2}, "hard": {"_count": 1}, "name": {"_count": 1}, "Bludgers": {"_count": 1}, "school": {"_count": 1}, "glasses": {"_count": 1}, "sodden": {"_count": 1}, "sixth": {"_count": 1}, "other": {"_count": 1}, "tower": {"_count": 1}, "pure": {"_count": 1}, "best": {"_count": 1}, "sack": {"_count": 1}, "few": {"_count": 1}, "tent": {"_count": 4}, "tiny": {"_count": 1}, "wide": {"_count": 1}, "creaking": {"_count": 1}, "blankets": {"_count": 1}, "locket": {"_count": 1}, "wedding": {"_count": 1}, "sketchy": {"_count": 1}, "skirts": {"_count": 1}, "beaded": {"_count": 1}, "wooded": {"_count": 1}, "incline": {"_count": 1}, "Horcrux": {"_count": 3}, "son": {"_count": 1}, "smashed": {"_count": 1}, "sword": {"_count": 1}, "broken": {"_count": 1}, "Deluminator": {"_count": 1}, "mangled": {"_count": 1}, "Snitch": {"_count": 1}, "steep": {"_count": 1}, "leather": {"_count": 1}, "fake": {"_count": 1}, "Hall": {"_count": 1}, "troops": {"_count": 1}, "sides": {"_count": 1}, "bench": {"_count": 1}, "mantle": {"_count": 1}, "cause": {"_count": 1}, "Elder": {"_count": 1}, "holly": {"_count": 1}}, "to": {"_count": 492, "his": {"_count": 18}, "find": {"_count": 3}, "them": {"_count": 5}, "him": {"_count": 15}, "a": {"_count": 6}, "know": {"_count": 1}, "the": {"_count": 163}, "London": {"_count": 3}, "": {"_count": 44}, "shake": {"_count": 1}, "it": {"_count": 4}, "try": {"_count": 1}, "Gryffindor": {"_count": 8}, "Snape": {"_count": 3}, "get": {"_count": 4}, "something": {"_count": 11}, "people": {"_count": 1}, "look": {"_count": 3}, "our": {"_count": 3}, "yell": {"_count": 1}, "bed": {"_count": 11}, "have": {"_count": 2}, "today": {"_count": 1}, "said": {"_count": 5}, "Hagrids": {"_count": 2}, "your": {"_count": 5}, "show": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 4}, "teach": {"_count": 1}, "stay": {"_count": 1}, "Moaning": {"_count": 1}, "brush": {"_count": 1}, "breakfast": {"_count": 1}, "her": {"_count": 16}, "murder": {"_count": 1}, "tell": {"_count": 1}, "cross": {"_count": 1}, "change": {"_count": 1}, "see": {"_count": 12}, "long": {"_count": 1}, "speak": {"_count": 1}, "much": {"_count": 1}, "be": {"_count": 2}, "making": {"_count": 2}, "where": {"_count": 2}, "each": {"_count": 2}, "school": {"_count": 4}, "no": {"_count": 5}, "Siriuss": {"_count": 1}, "two": {"_count": 1}, "walk": {"_count": 2}, "all": {"_count": 1}, "trying": {"_count": 1}, "levitating": {"_count": 1}, "now": {"_count": 1}, "scratch": {"_count": 5}, "my": {"_count": 8}, "Madam": {"_count": 3}, "Snapes": {"_count": 3}, "leave": {"_count": 3}, "spy": {"_count": 1}, "meet": {"_count": 1}, "go": {"_count": 2}, "Parvati": {"_count": 1}, "Christmas": {"_count": 1}, "their": {"_count": 2}, "anything": {"_count": 2}, "Snuffles": {"_count": 1}, "do": {"_count": 1}, "judge": {"_count": 1}, "The": {"_count": 1}, "Disapparating": {"_count": 1}, "this": {"_count": 3}, "full": {"_count": 1}, "how": {"_count": 1}, "hes": {"_count": 1}, "peoples": {"_count": 1}, "oh": {"_count": 1}, "at": {"_count": 1}, "Fudges": {"_count": 1}, "Harry": {"_count": 6}, "Mrs": {"_count": 1}, "giving": {"_count": 1}, "us": {"_count": 1}, "O": {"_count": 1}, "while": {"_count": 1}, "learn": {"_count": 1}, "date": {"_count": 2}, "take": {"_count": 1}, "so": {"_count": 1}, "escort": {"_count": 1}, "last": {"_count": 1}, "sleep": {"_count": 1}, "accompany": {"_count": 1}, "for": {"_count": 1}, "you": {"_count": 3}, "Professor": {"_count": 1}, "North": {"_count": 1}, "inspect": {"_count": 1}, "to": {"_count": 1}, "join": {"_count": 1}, "twentyfour": {"_count": 1}, "such": {"_count": 1}, "wellconnected": {"_count": 1}, "somewhere": {"_count": 1}, "within": {"_count": 1}, "lately": {"_count": 1}, "Rons": {"_count": 1}, "kiss": {"_count": 1}, "if": {"_count": 1}, "Ron": {"_count": 1}, "or": {"_count": 2}, "eye": {"_count": 1}, "in": {"_count": 1}, "save": {"_count": 1}, "let": {"_count": 1}, "me": {"_count": 1}, "hearing": {"_count": 1}, "retrieve": {"_count": 1}, "though": {"_count": 1}, "move": {"_count": 1}}, "in": {"_count": 159, "anything": {"_count": 1}, "the": {"_count": 53}, "Godrics": {"_count": 1}, "a": {"_count": 12}, "brown": {"_count": 1}, "his": {"_count": 12}, "Gryffindor": {"_count": 3}, "front": {"_count": 14}, "our": {"_count": 4}, "it": {"_count": 1}, "time": {"_count": 3}, "all": {"_count": 2}, "her": {"_count": 2}, "bed": {"_count": 4}, "unexpected": {"_count": 1}, "fits": {"_count": 1}, "my": {"_count": 2}, "Azkaban": {"_count": 7}, "Australia": {"_count": 1}, "fright": {"_count": 1}, "lessons": {"_count": 1}, "their": {"_count": 3}, "anger": {"_count": 1}, "Potions": {"_count": 1}, "serious": {"_count": 1}, "mild": {"_count": 1}, "Umbridges": {"_count": 1}, "no": {"_count": 2}, "O": {"_count": 1}, "Grimmauld": {"_count": 2}, "Little": {"_count": 1}, "concentration": {"_count": 2}, "that": {"_count": 1}, "there": {"_count": 2}, "Slughorns": {"_count": 1}, "an": {"_count": 2}, "detention": {"_count": 1}, "every": {"_count": 1}, "your": {"_count": 1}, "one": {"_count": 2}, "Harry": {"_count": 2}, "any": {"_count": 1}, "St": {"_count": 1}, "polite": {"_count": 1}}, "suddenly": {"_count": 3, "at": {"_count": 1}, "wide": {"_count": 1}, "looking": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 333, "down": {"_count": 104}, "gasped": {"_count": 1}, "stared": {"_count": 3}, "hidden": {"_count": 1}, "we": {"_count": 1}, "Hagrid": {"_count": 1}, "stretched": {"_count": 2}, "scratching": {"_count": 1}, "tucked": {"_count": 1}, "pulled": {"_count": 4}, "he": {"_count": 4}, "put": {"_count": 2}, "shook": {"_count": 1}, "shes": {"_count": 1}, "found": {"_count": 2}, "felt": {"_count": 2}, "performed": {"_count": 1}, "started": {"_count": 5}, "open": {"_count": 1}, "struggled": {"_count": 1}, "began": {"_count": 4}, "grabbed": {"_count": 1}, "pulling": {"_count": 2}, "wont": {"_count": 1}, "saw": {"_count": 9}, "slumped": {"_count": 1}, "rubbing": {"_count": 1}, "looking": {"_count": 3}, "crossed": {"_count": 2}, "coming": {"_count": 1}, "left": {"_count": 1}, "shrieked": {"_count": 1}, "turning": {"_count": 2}, "stewing": {"_count": 1}, "to": {"_count": 1}, "frowning": {"_count": 1}, "then": {"_count": 4}, "showing": {"_count": 3}, "spin": {"_count": 1}, "any": {"_count": 1}, "watched": {"_count": 2}, "reaching": {"_count": 1}, "walking": {"_count": 1}, "cried": {"_count": 1}, "moved": {"_count": 3}, "allowing": {"_count": 1}, "piling": {"_count": 1}, "I": {"_count": 2}, "read": {"_count": 1}, "about": {"_count": 2}, "faced": {"_count": 1}, "feeling": {"_count": 1}, "one": {"_count": 2}, "by": {"_count": 1}, "cramming": {"_count": 1}, "yelled": {"_count": 1}, "pressed": {"_count": 1}, "a": {"_count": 1}, "limped": {"_count": 1}, "turn": {"_count": 2}, "followed": {"_count": 1}, "start": {"_count": 1}, "playing": {"_count": 1}, "their": {"_count": 1}, "thought": {"_count": 3}, "returned": {"_count": 2}, "glaring": {"_count": 1}, "get": {"_count": 5}, "turned": {"_count": 3}, "ripped": {"_count": 1}, "headed": {"_count": 1}, "stuffed": {"_count": 1}, "holding": {"_count": 1}, "slouched": {"_count": 1}, "cleared": {"_count": 1}, "appointed": {"_count": 1}, "pretending": {"_count": 1}, "went": {"_count": 2}, "closed": {"_count": 1}, "shrivel": {"_count": 1}, "walked": {"_count": 4}, "asked": {"_count": 1}, "strode": {"_count": 1}, "when": {"_count": 1}, "were": {"_count": 1}, "unfolded": {"_count": 1}, "watch": {"_count": 1}, "attempted": {"_count": 2}, "so": {"_count": 1}, "pointed": {"_count": 1}, "crying": {"_count": 1}, "took": {"_count": 2}, "looked": {"_count": 4}, "swayed": {"_count": 1}, "dont": {"_count": 1}, "Harry": {"_count": 1}, "find": {"_count": 2}, "threw": {"_count": 2}, "realized": {"_count": 1}, "gave": {"_count": 1}, "shuffled": {"_count": 1}, "flap": {"_count": 1}, "leaned": {"_count": 1}, "reached": {"_count": 1}, "tagged": {"_count": 1}, "blew": {"_count": 1}, "tapped": {"_count": 1}, "painful": {"_count": 1}, "dressed": {"_count": 1}, "take": {"_count": 1}, "made": {"_count": 2}, "dragging": {"_count": 1}, "smiled": {"_count": 1}, "allow": {"_count": 1}, "realize": {"_count": 1}, "taking": {"_count": 1}, "handed": {"_count": 1}, "seized": {"_count": 1}, "covered": {"_count": 1}, "striding": {"_count": 2}, "revealed": {"_count": 1}, "steered": {"_count": 1}, "straightening": {"_count": 1}, "hurried": {"_count": 1}, "squashing": {"_count": 1}, "leave": {"_count": 1}, "they": {"_count": 2}, "pushing": {"_count": 1}, "throwing": {"_count": 1}, "starting": {"_count": 1}, "hurrying": {"_count": 1}, "yet": {"_count": 1}, "examined": {"_count": 2}, "suddenly": {"_count": 1}, "flutter": {"_count": 1}, "hugged": {"_count": 1}, "raising": {"_count": 1}, "glided": {"_count": 1}, "change": {"_count": 1}, "didnt": {"_count": 1}, "tell": {"_count": 1}, "listen": {"_count": 1}, "unbolted": {"_count": 1}, "glanced": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "stretching": {"_count": 1}, "bits": {"_count": 1}, "replaced": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}, "spent": {"_count": 1}, "carried": {"_count": 1}, "begun": {"_count": 1}, "wandless": {"_count": 1}, "Albus": {"_count": 2}, "her": {"_count": 1}, "look": {"_count": 1}, "as": {"_count": 1}, "understanding": {"_count": 1}, "Dumbledore": {"_count": 1}}, "at": {"_count": 349, "the": {"_count": 149}, "his": {"_count": 4}, "least": {"_count": 2}, "all": {"_count": 1}, "Harry": {"_count": 31}, "once": {"_count": 15}, "Ron": {"_count": 10}, "Hogwarts": {"_count": 4}, "it": {"_count": 4}, "them": {"_count": 9}, "dawn": {"_count": 1}, "Justin": {"_count": 1}, "Hermione": {"_count": 6}, "him": {"_count": 44}, "half": {"_count": 1}, "dinner": {"_count": 1}, "Christmas": {"_count": 1}, "last": {"_count": 1}, "our": {"_count": 1}, "Lupin": {"_count": 2}, "Dumbledore": {"_count": 8}, "two": {"_count": 1}, "Mr": {"_count": 2}, "her": {"_count": 13}, "Moody": {"_count": 1}, "Hagrid": {"_count": 5}, "any": {"_count": 1}, "that": {"_count": 1}, "breakfast": {"_count": 1}, "Krum": {"_count": 1}, "Crouch": {"_count": 4}, "first": {"_count": 1}, "Fudge": {"_count": 3}, "Ordinary": {"_count": 1}, "Trelawney": {"_count": 1}, "an": {"_count": 1}, "Snape": {"_count": 2}, "Harrys": {"_count": 1}, "James": {"_count": 1}, "Grawp": {"_count": 1}, "Malfoy": {"_count": 1}, "Tonks": {"_count": 1}, "its": {"_count": 1}, "Leanne": {"_count": 1}, "a": {"_count": 1}, "ten": {"_count": 1}, "this": {"_count": 1}, "Mrs": {"_count": 1}, "little": {"_count": 1}, "oh": {"_count": 1}, "school": {"_count": 1}}, "": {"_count": 388, ".": {"_count": 291}, "!": {"_count": 52}, "?": {"_count": 45}}, "their": {"_count": 17, "glasses": {"_count": 1}, "wands": {"_count": 1}, "parchment": {"_count": 2}, "hands": {"_count": 2}, "aunts": {"_count": 1}, "own": {"_count": 1}, "sleeves": {"_count": 1}, "things": {"_count": 3}, "buses": {"_count": 1}, "instruments": {"_count": 1}, "papers": {"_count": 1}, "bodies": {"_count": 1}, "possessions": {"_count": 1}}, "yet": {"_count": 3, "": {"_count": 1}, "were": {"_count": 1}, "again": {"_count": 1}}, "close": {"_count": 7, "to": {"_count": 2}, "as": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}}, "with": {"_count": 134, "a": {"_count": 10}, "these": {"_count": 1}, "the": {"_count": 16}, "Malfoy": {"_count": 1}, "them": {"_count": 10}, "something": {"_count": 1}, "you": {"_count": 8}, "her": {"_count": 8}, "Harry": {"_count": 4}, "Muggles": {"_count": 1}, "": {"_count": 1}, "whats": {"_count": 1}, "Aunt": {"_count": 1}, "him": {"_count": 12}, "Hermione": {"_count": 3}, "laughter": {"_count": 1}, "it": {"_count": 2}, "silent": {"_count": 2}, "Mum": {"_count": 1}, "my": {"_count": 2}, "his": {"_count": 7}, "their": {"_count": 1}, "snow": {"_count": 1}, "Professor": {"_count": 1}, "fear": {"_count": 1}, "no": {"_count": 1}, "your": {"_count": 1}, "Lupin": {"_count": 1}, "Percy": {"_count": 2}, "Neville": {"_count": 1}, "rubbish": {"_count": 1}, "Ron": {"_count": 3}, "of": {"_count": 1}, "Umbridge": {"_count": 1}, "all": {"_count": 1}, "somewhere": {"_count": 1}, "Katie": {"_count": 1}, "Fred": {"_count": 1}, "Hagrid": {"_count": 1}, "another": {"_count": 1}, "one": {"_count": 1}, "\u2018eihwaz": {"_count": 1}, "this": {"_count": 1}, "additional": {"_count": 1}, "McLaggen": {"_count": 3}, "each": {"_count": 1}, "Dean": {"_count": 1}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}, "such": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "plans": {"_count": 1}, "Griphook": {"_count": 1}, "that": {"_count": 1}, "nothing": {"_count": 1}}, "boy": {"_count": 2, "": {"_count": 1}, "we": {"_count": 1}}, "here": {"_count": 41, "": {"_count": 7}, "without": {"_count": 1}, "so": {"_count": 1}, "to": {"_count": 5}, "isnt": {"_count": 1}, "and": {"_count": 3}, "because": {"_count": 1}, "now": {"_count": 1}, "if": {"_count": 1}, "in": {"_count": 2}, "said": {"_count": 1}, "this": {"_count": 1}, "whatever": {"_count": 1}, "havent": {"_count": 1}, "I": {"_count": 1}, "or": {"_count": 1}, "when": {"_count": 1}, "its": {"_count": 1}, "he": {"_count": 2}, "anyway": {"_count": 1}, "quick": {"_count": 1}, "Runcorn": {"_count": 1}, "Harry": {"_count": 1}, "from": {"_count": 1}, "Hermione": {"_count": 1}, "with": {"_count": 1}, "before": {"_count": 1}}, "gasping": {"_count": 1, "for": {"_count": 1}}, "while": {"_count": 5, "he": {"_count": 1}, "yelling": {"_count": 1}, "weve": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}}, "an": {"_count": 16, "alien": {"_count": 1}, "down": {"_count": 1}, "ashenfaced": {"_count": 1}, "all": {"_count": 1}, "aunt": {"_count": 1}, "said": {"_count": 1}, "entire": {"_count": 1}, "put": {"_count": 1}, "say": {"_count": 1}, "unauthorized": {"_count": 1}, "came": {"_count": 1}, "crawled": {"_count": 1}, "army": {"_count": 1}, "antidote": {"_count": 1}, "octave": {"_count": 1}, "uproar": {"_count": 1}}, "a": {"_count": 157, "letter": {"_count": 1}, "bed": {"_count": 1}, "bit": {"_count": 8}, "new": {"_count": 2}, "tiny": {"_count": 1}, "toilet": {"_count": 3}, "pasty": {"_count": 1}, "pack": {"_count": 1}, "green": {"_count": 1}, "passageway": {"_count": 1}, "flight": {"_count": 1}, "simple": {"_count": 1}, "piece": {"_count": 2}, "tree": {"_count": 3}, "little": {"_count": 8}, "staircase": {"_count": 2}, "bright": {"_count": 1}, "courageous": {"_count": 1}, "lot": {"_count": 1}, "chimney": {"_count": 1}, "sumptuous": {"_count": 1}, "good": {"_count": 4}, "large": {"_count": 3}, "minute": {"_count": 1}, "Mandrake": {"_count": 1}, "difficult": {"_count": 1}, "terrific": {"_count": 1}, "small": {"_count": 4}, "Love": {"_count": 1}, "chance": {"_count": 1}, "hand": {"_count": 7}, "narrow": {"_count": 2}, "handsome": {"_count": 1}, "packet": {"_count": 1}, "chair": {"_count": 8}, "Patronus": {"_count": 2}, "very": {"_count": 3}, "stick": {"_count": 1}, "great": {"_count": 1}, "running": {"_count": 1}, "playbyplay": {"_count": 1}, "wand": {"_count": 1}, "poster": {"_count": 1}, "side": {"_count": 3}, "badge": {"_count": 1}, "trifle": {"_count": 1}, "stack": {"_count": 1}, "copy": {"_count": 1}, "nine": {"_count": 1}, "mirror": {"_count": 1}, "slow": {"_count": 1}, "particularly": {"_count": 1}, "measuring": {"_count": 1}, "niffler": {"_count": 1}, "struggle": {"_count": 1}, "tenyearold": {"_count": 1}, "look": {"_count": 1}, "few": {"_count": 4}, "head": {"_count": 1}, "long": {"_count": 2}, "corridor": {"_count": 2}, "pair": {"_count": 1}, "straightbacked": {"_count": 1}, "chant": {"_count": 1}, "serpent": {"_count": 1}, "whole": {"_count": 1}, "better": {"_count": 1}, "subject": {"_count": 1}, "second": {"_count": 1}, "third": {"_count": 1}, "stream": {"_count": 1}, "crossbow": {"_count": 1}, "lunascope": {"_count": 1}, "real": {"_count": 1}, "street": {"_count": 1}, "steep": {"_count": 2}, "post": {"_count": 1}, "tray": {"_count": 1}, "fork": {"_count": 1}, "pile": {"_count": 1}, "relentless": {"_count": 1}, "powerful": {"_count": 1}, "heavy": {"_count": 1}, "remedy": {"_count": 1}, "constant": {"_count": 1}, "book": {"_count": 1}, "hundred": {"_count": 1}, "tenth": {"_count": 1}, "couple": {"_count": 2}, "sword": {"_count": 1}, "conversation": {"_count": 1}, "tent": {"_count": 1}, "close": {"_count": 1}, "fight": {"_count": 1}, "bird": {"_count": 1}, "stone": {"_count": 1}, "quill": {"_count": 1}, "following": {"_count": 1}, "position": {"_count": 1}, "fallen": {"_count": 2}, "fistful": {"_count": 1}}, "quickly": {"_count": 6, "and": {"_count": 5}, "pushing": {"_count": 1}}, "around": {"_count": 3, "them": {"_count": 1}, "it": {"_count": 1}, "such": {"_count": 1}}, "under": {"_count": 5, "the": {"_count": 3}, "her": {"_count": 1}, "different": {"_count": 1}}, "just": {"_count": 6, "to": {"_count": 2}, "now": {"_count": 1}, "in": {"_count": 3}}, "yeh": {"_count": 1, "great": {"_count": 1}}, "into": {"_count": 49, "the": {"_count": 32}, "second": {"_count": 1}, "Dumbledores": {"_count": 2}, "Uncle": {"_count": 1}, "his": {"_count": 4}, "Buckbeaks": {"_count": 1}, "rebellion": {"_count": 1}, "an": {"_count": 1}, "Bagmans": {"_count": 1}, "those": {"_count": 1}, "Moodys": {"_count": 1}, "Lupins": {"_count": 1}, "Harrys": {"_count": 2}}, "Dursley": {"_count": 1, "yeh": {"_count": 1}}, "so": {"_count": 21, "angrily": {"_count": 1}, "they": {"_count": 2}, "much": {"_count": 3}, "long": {"_count": 1}, "quickly": {"_count": 3}, "suddenly": {"_count": 1}, "early": {"_count": 1}, "warm": {"_count": 1}, "that": {"_count": 2}, "fast": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 2}, "badly": {"_count": 1}}, "ter": {"_count": 12, "town": {"_count": 1}, "London": {"_count": 1}, "the": {"_count": 4}, "": {"_count": 1}, "school": {"_count": 2}, "Karkuss": {"_count": 1}, "you": {"_count": 1}, "dinner": {"_count": 1}}, "proudly": {"_count": 2, "": {"_count": 2}}, "as": {"_count": 29, "usual": {"_count": 2}, "much": {"_count": 2}, "suddenly": {"_count": 1}, "Mrs": {"_count": 1}, "fruit": {"_count": 1}, "Sir": {"_count": 1}, "though": {"_count": 4}, "he": {"_count": 1}, "the": {"_count": 2}, "many": {"_count": 1}, "Tonks": {"_count": 1}, "they": {"_count": 2}, "students": {"_count": 1}, "a": {"_count": 3}, "me": {"_count": 1}, "Ron": {"_count": 1}, "an": {"_count": 1}, "we": {"_count": 2}, "dust": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "two": {"_count": 5, "seats": {"_count": 1}, "very": {"_count": 1}, "plump": {"_count": 1}, "and": {"_count": 1}, "more": {"_count": 1}}, "setting": {"_count": 1, "fire": {"_count": 1}}, "knowin": {"_count": 1, "yer": {"_count": 1}}, "for": {"_count": 60, "its": {"_count": 1}, "Longbottom": {"_count": 1}, "the": {"_count": 9}, "this": {"_count": 1}, "his": {"_count": 5}, "them": {"_count": 2}, "you": {"_count": 4}, "Lockhart": {"_count": 1}, "nearly": {"_count": 2}, "Transfiguration": {"_count": 1}, "everything": {"_count": 1}, "a": {"_count": 9}, "him": {"_count": 2}, "it": {"_count": 3}, "herself": {"_count": 1}, "Neville": {"_count": 1}, "Harry": {"_count": 1}, "themselves": {"_count": 1}, "me": {"_count": 1}, "Herbology": {"_count": 1}, "until": {"_count": 1}, "examination": {"_count": 1}, "what": {"_count": 1}, "Voldemort": {"_count": 1}, "sale": {"_count": 1}, "ages": {"_count": 1}, "additional": {"_count": 1}, "that": {"_count": 1}, "Snape": {"_count": 1}, "killing": {"_count": 1}, "said": {"_count": 1}, "having": {"_count": 1}}, "said": {"_count": 43, "Ron": {"_count": 15}, "Percy": {"_count": 1}, "Harry": {"_count": 7}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 9}, "Mr": {"_count": 2}, "Wood": {"_count": 1}, "Lupin": {"_count": 1}, "George": {"_count": 1}, "Angelina": {"_count": 1}, "Tonics": {"_count": 1}, "Luna": {"_count": 1}, "Xenophilius": {"_count": 1}, "Professor": {"_count": 1}}, "front": {"_count": 3, "the": {"_count": 1}, "with": {"_count": 1}, "oo": {"_count": 1}}, "Scabbers": {"_count": 3, "by": {"_count": 1}, "": {"_count": 2}}, "her": {"_count": 35, "scroll": {"_count": 1}, "hand": {"_count": 4}, "crossed": {"_count": 1}, "old": {"_count": 1}, "present": {"_count": 1}, "eyes": {"_count": 4}, "bag": {"_count": 2}, "and": {"_count": 1}, "wand": {"_count": 2}, "huge": {"_count": 1}, "beetles": {"_count": 1}, "neck": {"_count": 1}, "half": {"_count": 1}, "quill": {"_count": 1}, "left": {"_count": 1}, "crocodileskin": {"_count": 1}, "nose": {"_count": 2}, "face": {"_count": 1}, "clock": {"_count": 1}, "remaining": {"_count": 1}, "sherry": {"_count": 1}, "finger": {"_count": 1}, "mistake": {"_count": 1}, "own": {"_count": 2}, "forehead": {"_count": 1}}, "outside": {"_count": 4, "classrooms": {"_count": 1}, "his": {"_count": 1}, "Snapes": {"_count": 1}, "classes": {"_count": 1}}, "that": {"_count": 9, "you": {"_count": 1}, "easily": {"_count": 1}, "Quidditch": {"_count": 1}, "paper": {"_count": 1}, "Id": {"_count": 1}, "Harry": {"_count": 1}, "almost": {"_count": 1}, "there": {"_count": 1}, "spell": {"_count": 1}}, "behind": {"_count": 10, "you": {"_count": 1}, "Neville": {"_count": 1}, "them": {"_count": 3}, "him": {"_count": 3}, "me": {"_count": 1}, "Harry": {"_count": 1}}, "next": {"_count": 3, "morning": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}}, "all": {"_count": 15, "over": {"_count": 4}, "night": {"_count": 2}, "his": {"_count": 2}, "the": {"_count": 4}, "lesson": {"_count": 1}, "sorts": {"_count": 1}, "those": {"_count": 1}}, "like": {"_count": 5, "a": {"_count": 2}, "me": {"_count": 1}, "the": {"_count": 1}, "drink": {"_count": 1}}, "you": {"_count": 8, "get": {"_count": 2}, "two": {"_count": 2}, "useless": {"_count": 1}, "horrible": {"_count": 1}, "three": {"_count": 1}, "just": {"_count": 1}}, "Malfoy": {"_count": 6, "snapped": {"_count": 1}, "flanked": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}}, "up": {"_count": 2, "he": {"_count": 1}, "to": {"_count": 1}}, "he": {"_count": 24, "soared": {"_count": 1}, "told": {"_count": 2}, "saw": {"_count": 5}, "groaned": {"_count": 1}, "wondered": {"_count": 1}, "said": {"_count": 4}, "added": {"_count": 1}, "could": {"_count": 3}, "opened": {"_count": 1}, "met": {"_count": 1}, "was": {"_count": 2}, "dashed": {"_count": 1}, "wanted": {"_count": 1}}, "out": {"_count": 11, "of": {"_count": 10}, "there": {"_count": 1}}, "both": {"_count": 2, "of": {"_count": 1}, "hands": {"_count": 1}}, "Peeves": {"_count": 2, "please": {"_count": 1}, "report": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "twig": {"_count": 1, "by": {"_count": 1}}, "its": {"_count": 8, "tiny": {"_count": 1}, "nose": {"_count": 2}, "nearly": {"_count": 1}, "mind": {"_count": 1}, "a": {"_count": 1}, "handlebars": {"_count": 1}, "the": {"_count": 1}}, "one": {"_count": 8, "of": {"_count": 6}, "or": {"_count": 1}, "hand": {"_count": 1}}, "liking": {"_count": 1, "each": {"_count": 1}}, "months": {"_count": 1, "later": {"_count": 1}}, "Harry": {"_count": 27, "muttered": {"_count": 2}, "got": {"_count": 1}, "stared": {"_count": 1}, "yawned": {"_count": 1}, "youre": {"_count": 1}, "persuaded": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 5}, "thought": {"_count": 1}, "very": {"_count": 1}, "could": {"_count": 1}, "noticed": {"_count": 1}, "said": {"_count": 2}, "pretended": {"_count": 1}, "yelled": {"_count": 1}, "took": {"_count": 1}, "looked": {"_count": 1}, "jumped": {"_count": 1}, "Potter": {"_count": 1}, "told": {"_count": 1}, "saw": {"_count": 1}}, "high": {"_count": 4, "high": {"_count": 1}, "he": {"_count": 1}, "above": {"_count": 1}, "an": {"_count": 1}}, "there": {"_count": 38, "a": {"_count": 1}, "hes": {"_count": 1}, "move": {"_count": 1}, "gents": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}, "Fawkes": {"_count": 1}, "": {"_count": 8}, "jus": {"_count": 1}, "We": {"_count": 1}, "yet": {"_count": 1}, "about": {"_count": 1}, "like": {"_count": 1}, "covered": {"_count": 1}, "with": {"_count": 4}, "in": {"_count": 1}, "to": {"_count": 3}, "alone": {"_count": 2}, "Ron": {"_count": 2}, "again": {"_count": 1}, "all": {"_count": 1}, "without": {"_count": 1}, "weve": {"_count": 1}, "he": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}, "ahead": {"_count": 7, "he": {"_count": 2}, "": {"_count": 4}, "fastening": {"_count": 1}}, "some": {"_count": 6, "story": {"_count": 1}, "impressive": {"_count": 1}, "sandwiches": {"_count": 1}, "more": {"_count": 1}, "Christmas": {"_count": 1}, "hot": {"_count": 1}}, "Harrys": {"_count": 4, "sweater": {"_count": 1}, "disgusting": {"_count": 1}, "face": {"_count": 1}, "arm": {"_count": 1}}, "hope": {"_count": 5, "of": {"_count": 2}, "now": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 1}}, "study": {"_count": 2, "schedules": {"_count": 2}}, "Dittany": {"_count": 1, "in": {"_count": 1}}, "until": {"_count": 5, "he": {"_count": 1}, "Professor": {"_count": 1}, "we": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}}, "stuff": {"_count": 2, "about": {"_count": 2}}, "I": {"_count": 8, "can": {"_count": 1}, "want": {"_count": 1}, "cant": {"_count": 1}, "think": {"_count": 1}, "couldnt": {"_count": 1}, "Third": {"_count": 1}, "tell": {"_count": 1}, "dont": {"_count": 1}}, "but": {"_count": 21, "Professor": {"_count": 1}, "the": {"_count": 3}, "Ron": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}, "there": {"_count": 1}, "his": {"_count": 2}, "Dumbledore": {"_count": 1}, "Moody": {"_count": 1}, "then": {"_count": 1}, "youll": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 1}, "when": {"_count": 1}, "Sirius": {"_count": 1}, "Lupin": {"_count": 1}, "realized": {"_count": 1}, "now": {"_count": 1}}, "green": {"_count": 1, "sparks": {"_count": 1}}, "red": {"_count": 3, "sparks": {"_count": 3}}, "too": {"_count": 12, "": {"_count": 4}, "he": {"_count": 1}, "long": {"_count": 1}, "late": {"_count": 1}, "and": {"_count": 1}, "soon": {"_count": 1}, "Harry": {"_count": 1}, "quickly": {"_count": 1}, "ready": {"_count": 1}}, "if": {"_count": 4, "ever": {"_count": 1}, "Bane": {"_count": 1}, "I": {"_count": 1}, "Harper": {"_count": 1}}, "every": {"_count": 2, "sigh": {"_count": 1}, "now": {"_count": 1}}, "it": {"_count": 7, "was": {"_count": 2}, "right": {"_count": 1}, "would": {"_count": 1}, "hurt": {"_count": 1}, "wouldve": {"_count": 1}, "nearly": {"_count": 1}}, "last": {"_count": 2, "night": {"_count": 2}}, "who": {"_count": 2, "just": {"_count": 1}, "can": {"_count": 1}}, "again": {"_count": 62, "and": {"_count": 8}, "almost": {"_count": 1}, "": {"_count": 31}, "Oliver": {"_count": 1}, "but": {"_count": 2}, "the": {"_count": 3}, "with": {"_count": 1}, "from": {"_count": 1}, "hell": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 1}, "about": {"_count": 1}, "Hermione": {"_count": 1}, "rubbing": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "there": {"_count": 1}, "Dumbledore": {"_count": 1}, "Shes": {"_count": 1}, "while": {"_count": 1}, "Snape": {"_count": 1}}, "loosening": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 4, "trying": {"_count": 1}, "dead": {"_count": 1}, "prepared": {"_count": 1}, "starving": {"_count": 1}}, "hell": {"_count": 1, "already": {"_count": 1}}, "over": {"_count": 14, "their": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 3}, "here": {"_count": 2}, "a": {"_count": 1}, "it": {"_count": 1}, "himself": {"_count": 1}}, "Hagrid": {"_count": 5, "we": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "no": {"_count": 1}}, "by": {"_count": 27, "Madam": {"_count": 1}, "the": {"_count": 14}, "his": {"_count": 5}, "magic": {"_count": 1}, "adding": {"_count": 1}, "hand": {"_count": 1}, "Muggles": {"_count": 2}, "Carrow": {"_count": 1}, "what": {"_count": 1}}, "hardly": {"_count": 1, "daring": {"_count": 1}}, "near": {"_count": 4, "the": {"_count": 3}, "Scrivenshafts": {"_count": 1}}, "from": {"_count": 31, "the": {"_count": 22}, "Kent": {"_count": 1}, "Lockharts": {"_count": 1}, "its": {"_count": 1}, "his": {"_count": 1}, "Hagrids": {"_count": 1}, "her": {"_count": 2}, "first": {"_count": 1}, "their": {"_count": 1}}, "Hedwigs": {"_count": 4, "cage": {"_count": 3}, "owl": {"_count": 1}}, "back": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "But": {"_count": 2, "your": {"_count": 1}, "what": {"_count": 1}}, "was": {"_count": 2, "Witching": {"_count": 1}, "the": {"_count": 1}}, "through": {"_count": 17, "the": {"_count": 16}, "oblivion": {"_count": 1}}, "normally": {"_count": 1, "They": {"_count": 1}}, "entirely": {"_count": 1, "of": {"_count": 1}}, "mostly": {"_count": 1, "of": {"_count": 1}}, "Hedwig": {"_count": 1, "who": {"_count": 1}}, "toward": {"_count": 9, "them": {"_count": 1}, "the": {"_count": 4}, "Dumbledore": {"_count": 1}, "a": {"_count": 1}, "Snape": {"_count": 1}, "Hogwarts": {"_count": 1}}, "lashing": {"_count": 1, "out": {"_count": 1}}, "Colin": {"_count": 1, "whose": {"_count": 1}}, "snapped": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "Neville": {"_count": 2, "Longbottoms": {"_count": 1}, "": {"_count": 1}}, "round": {"_count": 1, "them": {"_count": 1}}, "theyre": {"_count": 1, "only": {"_count": 1}}, "caught": {"_count": 1, "sight": {"_count": 1}}, "completely": {"_count": 3, "now": {"_count": 1}, "forgetting": {"_count": 1}, "and": {"_count": 1}}, "specially": {"_count": 1, "": {"_count": 1}}, "hanging": {"_count": 1, "onto": {"_count": 1}}, "Ron": {"_count": 17, "": {"_count": 5}, "was": {"_count": 1}, "moaned": {"_count": 2}, "holding": {"_count": 1}, "and": {"_count": 2}, "said": {"_count": 1}, "advised": {"_count": 1}, "but": {"_count": 1}, "snapped": {"_count": 1}, "we": {"_count": 1}, "climbed": {"_count": 1}}, "off": {"_count": 5, "her": {"_count": 1}, "the": {"_count": 4}}, "between": {"_count": 3, "them": {"_count": 2}, "the": {"_count": 1}}, "Parvati": {"_count": 1, "Patil": {"_count": 1}}, "your": {"_count": 10, "chances": {"_count": 1}, "aunt": {"_count": 1}, "schedule": {"_count": 1}, "scores": {"_count": 1}, "street": {"_count": 1}, "anger": {"_count": 1}, "breakfast": {"_count": 1}, "hair": {"_count": 1}, "ideas": {"_count": 1}, "little": {"_count": 1}}, "my": {"_count": 9, "remaining": {"_count": 1}, "sleeve": {"_count": 2}, "books": {"_count": 1}, "armadillo": {"_count": 1}, "Mistresss": {"_count": 1}, "evenings": {"_count": 1}, "wife": {"_count": 1}, "dream": {"_count": 1}}, "dressed": {"_count": 5, "and": {"_count": 1}, "again": {"_count": 1}, "went": {"_count": 1}, "picked": {"_count": 1}, "in": {"_count": 1}}, "portable": {"_count": 1, "waterproof": {"_count": 1}}, "amazed": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 3, "aim": {"_count": 1}, "an": {"_count": 1}, "hold": {"_count": 1}}, "lips": {"_count": 1, "Harry": {"_count": 1}}, "partners": {"_count": 1, "": {"_count": 1}}, "wheezing": {"_count": 1, "": {"_count": 1}}, "saying": {"_count": 2, "Whoops": {"_count": 1}, "to": {"_count": 1}}, "nervously": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "filled": {"_count": 1, "his": {"_count": 1}}, "she": {"_count": 8, "said": {"_count": 4}, "was": {"_count": 2}, "staggered": {"_count": 1}, "snapped": {"_count": 1}}, "Goyles": {"_count": 1, "boatlike": {"_count": 1}}, "youre": {"_count": 2, "wasting": {"_count": 1}, "not": {"_count": 1}}, "am": {"_count": 1, "a": {"_count": 1}}, "our": {"_count": 2, "laws": {"_count": 1}, "school": {"_count": 1}}, "Myrtle": {"_count": 1, "": {"_count": 1}}, "theyll": {"_count": 2, "be": {"_count": 2}}, "before": {"_count": 3, "the": {"_count": 1}, "I": {"_count": 1}, "we": {"_count": 1}}, "something": {"_count": 5, "": {"_count": 1}, "that": {"_count": 1}, "on": {"_count": 1}, "silver": {"_count": 1}, "amusing": {"_count": 1}}, "walked": {"_count": 5, "past": {"_count": 1}, "straight": {"_count": 1}, "across": {"_count": 1}, "swiftly": {"_count": 1}, "over": {"_count": 1}}, "Potions": {"_count": 2, "said": {"_count": 1}, "after": {"_count": 1}}, "closing": {"_count": 1, "his": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "against": {"_count": 16, "the": {"_count": 11}, "": {"_count": 1}, "her": {"_count": 1}, "one": {"_count": 1}, "Snape": {"_count": 1}, "anything": {"_count": 1}}, "or": {"_count": 4, "something": {"_count": 1}, "catch": {"_count": 1}, "siphoned": {"_count": 1}, "youll": {"_count": 1}}, "onto": {"_count": 11, "his": {"_count": 2}, "the": {"_count": 6}, "a": {"_count": 1}, "its": {"_count": 1}, "Ravenclaws": {"_count": 1}}, "most": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "panting": {"_count": 2, "Rons": {"_count": 1}, "and": {"_count": 1}}, "any": {"_count": 4, "longer": {"_count": 1}, "moment": {"_count": 2}, "thought": {"_count": 1}}, "this": {"_count": 7, "": {"_count": 1}, "is": {"_count": 1}, "discussion": {"_count": 1}, "one": {"_count": 1}, "evening": {"_count": 1}, "corridor": {"_count": 1}, "cozy": {"_count": 1}}, "stretched": {"_count": 2, "and": {"_count": 1}, "her": {"_count": 1}}, "Rons": {"_count": 4, "letter": {"_count": 1}, "leg": {"_count": 1}, "robes": {"_count": 1}, "dried": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "Madam": {"_count": 1, "Marsh": {"_count": 1}}, "din": {"_count": 1, "they": {"_count": 1}}, "is": {"_count": 1, "aunt": {"_count": 1}}, "whenever": {"_count": 2, "he": {"_count": 2}}, "first": {"_count": 3, "because": {"_count": 1}, "from": {"_count": 1}, "he": {"_count": 1}}, "massaging": {"_count": 1, "his": {"_count": 1}}, "speed": {"_count": 3, "": {"_count": 1}, "on": {"_count": 1}, "round": {"_count": 1}}, "more": {"_count": 3, "and": {"_count": 1}, "than": {"_count": 1}, "clearly": {"_count": 1}}, "since": {"_count": 2, "five": {"_count": 1}, "his": {"_count": 1}}, "after": {"_count": 7, "youve": {"_count": 1}, "himself": {"_count": 1}, "the": {"_count": 1}, "two": {"_count": 1}, "themselves": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}}, "these": {"_count": 2, "daisy": {"_count": 1}, "roots": {"_count": 1}}, "Malfoys": {"_count": 1, "roots": {"_count": 1}}, "listening": {"_count": 3, "closely": {"_count": 1}, "to": {"_count": 1}, "hard": {"_count": 1}}, "Trevor": {"_count": 1, "the": {"_count": 1}}, "mouthing": {"_count": 1, "wordlessly": {"_count": 1}}, "What": {"_count": 2, "did": {"_count": 1}, "": {"_count": 1}}, "ridiculously": {"_count": 1, "complicated": {"_count": 1}}, "Black": {"_count": 1, "must": {"_count": 1}}, "looking": {"_count": 9, "around": {"_count": 3}, "like": {"_count": 1}, "nervous": {"_count": 1}, "flustered": {"_count": 1}, "exultant": {"_count": 1}, "worried": {"_count": 1}, "for": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "crammed": {"_count": 1, "the": {"_count": 1}}, "excitement": {"_count": 1, "flooding": {"_count": 1}}, "indignantly": {"_count": 1, "": {"_count": 1}}, "everything": {"_count": 2, "from": {"_count": 1}, "I": {"_count": 1}}, "Crookshanks": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "about": {"_count": 4, "my": {"_count": 2}, "spew": {"_count": 1}, "work": {"_count": 1}}, "fer": {"_count": 2, "me": {"_count": 1}, "good": {"_count": 1}}, "surveying": {"_count": 1, "Hermione": {"_count": 1}}, "Wood": {"_count": 1, "told": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "wherever": {"_count": 1, "he": {"_count": 1}}, "Gryffindor": {"_count": 1, "in": {"_count": 1}}, "earlier": {"_count": 1, "than": {"_count": 1}}, "asking": {"_count": 1, "her": {"_count": 1}}, "startled": {"_count": 1, "": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "everyonell": {"_count": 1, "hear": {"_count": 1}}, "beside": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 2}}, "when": {"_count": 10, "I": {"_count": 1}, "at": {"_count": 1}, "Harry": {"_count": 1}, "Professor": {"_count": 1}, "we": {"_count": 2}, "she": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "youre": {"_count": 1}}, "Remus": {"_count": 1, "snarled": {"_count": 1}}, "rubbing": {"_count": 2, "his": {"_count": 2}}, "putting": {"_count": 1, "his": {"_count": 1}}, "killing": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "BAM": {"_count": 1, "": {"_count": 1}}, "properly": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "only": {"_count": 3, "when": {"_count": 2}, "briefly": {"_count": 1}}, "even": {"_count": 3, "more": {"_count": 2}, "at": {"_count": 1}}, "Dudleys": {"_count": 1, "morale": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 5, "small": {"_count": 1}, "abruptly": {"_count": 1}, "suddenly": {"_count": 2}, "quietly": {"_count": 1}}, "fireplace": {"_count": 1, "burst": {"_count": 1}}, "another": {"_count": 2, "ornament": {"_count": 1}, "narrower": {"_count": 1}}, "three": {"_count": 3, "more": {"_count": 1}, "fingers": {"_count": 1}, "very": {"_count": 1}}, "Pig": {"_count": 1, "said": {"_count": 1}}, "candles": {"_count": 1, "to": {"_count": 1}}, "what": {"_count": 2, "were": {"_count": 1}, "looked": {"_count": 1}}, "safe": {"_count": 1, "points": {"_count": 1}}, "half": {"_count": 3, "shares": {"_count": 1}, "the": {"_count": 2}}, "Weatherby": {"_count": 1, "said": {"_count": 1}}, "along": {"_count": 2, "one": {"_count": 1}, "the": {"_count": 1}}, "rotten": {"_count": 1, "and": {"_count": 1}}, "sir": {"_count": 2, "": {"_count": 2}}, "anywhere": {"_count": 2, "Precisely": {"_count": 1}, "": {"_count": 1}}, "Mr": {"_count": 4, "Weasley": {"_count": 1}, "Crouch": {"_count": 2}, "ThomasY": {"_count": 1}}, "tiptoed": {"_count": 1, "to": {"_count": 1}}, "much": {"_count": 2, "of": {"_count": 1}, "straighter": {"_count": 1}}, "down": {"_count": 1, "and": {"_count": 1}}, "squelchy": {"_count": 1, "handfuls": {"_count": 1}}, "straight": {"_count": 10, "he": {"_count": 1}, "said": {"_count": 1}, "again": {"_count": 1}, "interested": {"_count": 1}, "": {"_count": 4}, "wideeyed": {"_count": 1}, "her": {"_count": 1}}, "predictions": {"_count": 1, "which": {"_count": 1}}, "make": {"_count": 1, "a": {"_count": 1}}, "early": {"_count": 3, "and": {"_count": 2}, "tomorrow": {"_count": 1}}, "having": {"_count": 2, "lunch": {"_count": 1}, "children": {"_count": 1}}, "went": {"_count": 2, "across": {"_count": 1}, "over": {"_count": 1}}, "nodding": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 4, "whimpering": {"_count": 1}, "got": {"_count": 1}, "s": {"_count": 1}, "so": {"_count": 1}}, "together": {"_count": 2, "": {"_count": 1}, "like": {"_count": 1}}, "during": {"_count": 2, "the": {"_count": 2}}, "those": {"_count": 4, "predictions": {"_count": 1}, "benches": {"_count": 1}, "veela": {"_count": 1}, "stairs": {"_count": 1}}, "carefully": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "alongside": {"_count": 1, "them": {"_count": 1}}, "skirting": {"_count": 1, "the": {"_count": 1}}, "wouldnt": {"_count": 1, "she": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "noticing": {"_count": 1, "dimly": {"_count": 1}}, "Diggory": {"_count": 1, "already": {"_count": 1}}, "though": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "several": {"_count": 1}}, "nine": {"_count": 1, "of": {"_count": 1}}, "Winky": {"_count": 1, "she": {"_count": 1}}, "singeing": {"_count": 1, "his": {"_count": 1}}, "mate": {"_count": 1, "or": {"_count": 1}}, "laughing": {"_count": 1, "you": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "": {"_count": 1}}, "uncertainly": {"_count": 1, "and": {"_count": 1}}, "late": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "nicely": {"_count": 1, "either": {"_count": 1}}, "now": {"_count": 12, "the": {"_count": 1}, "and": {"_count": 3}, "putting": {"_count": 1}, "": {"_count": 3}, "Professor": {"_count": 1}, "said": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "Bartys": {"_count": 1, "illness": {"_count": 1}}, "S": {"_count": 2, "": {"_count": 2}}, "sputtering": {"_count": 1, "and": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "puddles": {"_count": 1, "and": {"_count": 1}}, "purring": {"_count": 1, "deeply": {"_count": 1}}, "straightening": {"_count": 1, "his": {"_count": 1}}, "turned": {"_count": 2, "to": {"_count": 1}, "his": {"_count": 1}}, "Love": {"_count": 1, "Potions": {"_count": 1}}, "Siriuss": {"_count": 2, "chicken": {"_count": 1}, "letter": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "eagerly": {"_count": 4, "she": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "Ill": {"_count": 1, "take": {"_count": 1}}, "clutching": {"_count": 1, "his": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}, "hexes": {"_count": 1, "or": {"_count": 1}}, "Karkaroffs": {"_count": 1, "arms": {"_count": 1}}, "shaking": {"_count": 1, "their": {"_count": 1}}, "fresh": {"_count": 1, "hexes": {"_count": 1}}, "does": {"_count": 1, "she": {"_count": 1}}, "thinking": {"_count": 1, "that": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "Cedric": {"_count": 1, "was": {"_count": 1}}, "pulled": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "past": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "threw": {"_count": 1, "back": {"_count": 1}}, "forming": {"_count": 1, "a": {"_count": 1}}, "Avery": {"_count": 1, "said": {"_count": 1}}, "bent": {"_count": 1, "over": {"_count": 1}}, "Moodys": {"_count": 1, "clothes": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 1}, "a": {"_count": 1}}, "inside": {"_count": 6, "him": {"_count": 3}, "me": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "tonight": {"_count": 2, "": {"_count": 2}}, "Dudley": {"_count": 1, "Im": {"_count": 1}}, "scrambled": {"_count": 1, "to": {"_count": 1}}, "Figgy": {"_count": 1, "": {"_count": 1}}, "number": {"_count": 1, "fours": {"_count": 1}}, "braced": {"_count": 1, "for": {"_count": 1}}, "tomorrow": {"_count": 3, "to": {"_count": 1}, "and": {"_count": 2}}, "headquarters": {"_count": 1, "somewhere": {"_count": 1}}, "books": {"_count": 2, "and": {"_count": 1}, "only": {"_count": 1}}, "than": {"_count": 1, "I": {"_count": 1}}, "they": {"_count": 2, "cant": {"_count": 1}, "would": {"_count": 1}}, "twelve": {"_count": 1, "scrolls": {"_count": 1}}, "had": {"_count": 2, "the": {"_count": 1}, "been": {"_count": 1}}, "trouble": {"_count": 1, "for": {"_count": 1}}, "positioned": {"_count": 1, "herself": {"_count": 1}}, "dodgy": {"_count": 1, "cauldrons": {"_count": 1}}, "eyeing": {"_count": 1, "them": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Head": {"_count": 1, "Boy": {"_count": 1}}, "straightened": {"_count": 1, "his": {"_count": 1}}, "Mums": {"_count": 1, "going": {"_count": 1}}, "hadnt": {"_count": 1, "we": {"_count": 1}}, "The": {"_count": 6, "Quibbler": {"_count": 1}, "arrival": {"_count": 1}, "force": {"_count": 1}, "pure": {"_count": 1}, "sky": {"_count": 1}, "door": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 4, "havent": {"_count": 1}, "can": {"_count": 1}, "want": {"_count": 2}}, "havent": {"_count": 1, "you": {"_count": 1}}, "somehow": {"_count": 1, "": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "Miss": {"_count": 1, "Grangeii": {"_count": 1}}, "nostrils": {"_count": 1, "wide": {"_count": 1}}, "expectantly": {"_count": 2, "at": {"_count": 1}, "waiting": {"_count": 1}}, "right": {"_count": 3, "next": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "level": {"_count": 1, "with": {"_count": 1}}, "night": {"_count": 1, "had": {"_count": 1}}, "Ickle": {"_count": 1, "Prefect": {"_count": 1}}, "feeling": {"_count": 1, "distinctly": {"_count": 1}}, "then": {"_count": 3, "emptied": {"_count": 1}, "introduce": {"_count": 1}, "battle": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "inquiringly": {"_count": 1, "still": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "potion": {"_count": 1, "ingredients": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "dusty": {"_count": 1, "butterbeers": {"_count": 1}}, "everyone": {"_count": 1, "I": {"_count": 1}}, "Well": {"_count": 1, "that": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 2, "and": {"_count": 1}, "shaking": {"_count": 1}}, "beaming": {"_count": 1, "with": {"_count": 1}}, "counting": {"_count": 1, "their": {"_count": 1}}, "time": {"_count": 1, "you": {"_count": 1}}, "straighter": {"_count": 3, "in": {"_count": 3}}, "fast": {"_count": 1, "when": {"_count": 1}}, "Luna": {"_count": 3, "Lovegood": {"_count": 1}, "": {"_count": 2}}, "backtofront": {"_count": 1, "for": {"_count": 1}}, "where": {"_count": 1, "we": {"_count": 1}}, "waitin": {"_count": 1, "fer": {"_count": 1}}, "ten": {"_count": 1, "stubby": {"_count": 1}}, "tinsel": {"_count": 1, "when": {"_count": 1}}, "obediently": {"_count": 1, "Harry": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}, "extra": {"_count": 1, "chairs": {"_count": 1}}, "Christmas": {"_count": 1, "decorations": {"_count": 1}}, "sandwiches": {"_count": 1, "": {"_count": 1}}, "wont": {"_count": 1, "they": {"_count": 1}}, "hearing": {"_count": 1, "the": {"_count": 1}}, "talking": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 3, "not": {"_count": 1}, "rubbing": {"_count": 1}, "holding": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "Rookwood": {"_count": 1, "whispered": {"_count": 1}}, "Potter": {"_count": 4, "": {"_count": 3}, "although": {"_count": 1}}, "Divination": {"_count": 1, "now": {"_count": 1}}, "Dobby": {"_count": 1, "who": {"_count": 1}}, "anymore": {"_count": 1, "of": {"_count": 1}}, "dont": {"_count": 1, "be": {"_count": 1}}, "robes": {"_count": 1, "and": {"_count": 1}}, "smiling": {"_count": 1, "": {"_count": 1}}, "drink": {"_count": 1, "up": {"_count": 1}}, "hastily": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "jammed": {"_count": 1, "inside": {"_count": 1}}, "Padfoot": {"_count": 1, "said": {"_count": 1}}, "James": {"_count": 1, "glancing": {"_count": 1}}, "married": {"_count": 3, "": {"_count": 2}, "or": {"_count": 1}}, "MAKE": {"_count": 1, "A": {"_count": 1}}, "peoples": {"_count": 1, "studying": {"_count": 1}}, "apprehensively": {"_count": 1, "in": {"_count": 1}}, "pullin": {"_count": 1, "up": {"_count": 1}}, "twentyfoot": {"_count": 1, "pine": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "first": {"_count": 1}}, "fwightened": {"_count": 1, "and": {"_count": 1}}, "Hermiones": {"_count": 2, "wand": {"_count": 2}}, "Pluto": {"_count": 1, "in": {"_count": 1}}, "residence": {"_count": 1, "in": {"_count": 1}}, "signs": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "dust": {"_count": 1, "down": {"_count": 1}}, "shadowy": {"_count": 1, "and": {"_count": 1}}, "rather": {"_count": 2, "suddenly": {"_count": 1}, "flushed": {"_count": 1}}, "enormously": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 2, "new": {"_count": 1}, "steps": {"_count": 1}}, "Ancient": {"_count": 1, "Runes": {"_count": 1}}, "north": {"_count": 1, "": {"_count": 1}}, "hopefully": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "including": {"_count": 1, "those": {"_count": 1}}, "blinking": {"_count": 1, "": {"_count": 1}}, "trees": {"_count": 1, "by": {"_count": 1}}, "trials": {"_count": 1, "at": {"_count": 1}}, "valerian": {"_count": 1, "roots": {"_count": 1}}, "Slughorn": {"_count": 1, "was": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "Gaunt": {"_count": 1, "bellowed": {"_count": 1}}, "tea": {"_count": 1, "in": {"_count": 1}}, "hurrying": {"_count": 1, "around": {"_count": 1}}, "spells": {"_count": 1, "like": {"_count": 1}}, "short": {"_count": 4, "and": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}}, "goblets": {"_count": 1, "of": {"_count": 1}}, "carrots": {"_count": 1, "for": {"_count": 1}}, "tips": {"_count": 2, "": {"_count": 2}}, "Stan": {"_count": 1, "Shunpike": {"_count": 1}}, "arguments": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "youll": {"_count": 1, "have": {"_count": 1}}, "tergether": {"_count": 1, "but": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "giving": {"_count": 1, "them": {"_count": 1}}, "appointments": {"_count": 1, "put": {"_count": 1}}, "Hokey": {"_count": 1, "": {"_count": 1}}, "sourfaced": {"_count": 1, "Slughorn": {"_count": 1}}, "alarmed": {"_count": 1, "": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "terrified": {"_count": 1, "Snape": {"_count": 1}}, "desperately": {"_count": 1, "": {"_count": 1}}, "title": {"_count": 1, "somebodys": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "water": {"_count": 1}}, "wake": {"_count": 2, "up": {"_count": 2}}, "Rennervatel": {"_count": 1, "he": {"_count": 1}}, "full": {"_count": 1, "to": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "Impedi": {"_count": 1, "But": {"_count": 1}}, "Bills": {"_count": 2, "wounds": {"_count": 1}, "pillows": {"_count": 1}}, "murmured": {"_count": 1, "See": {"_count": 1}}, "which": {"_count": 2, "they": {"_count": 1}, "down": {"_count": 1}}, "Voldemorts": {"_count": 1, "chair": {"_count": 1}}, "courage": {"_count": 1, "to": {"_count": 1}}, "sucked": {"_count": 1, "toward": {"_count": 1}}, "however": {"_count": 1, "when": {"_count": 1}}, "thanks": {"_count": 1, "for": {"_count": 1}}, "swaying": {"_count": 2, "slightly": {"_count": 1}, "more": {"_count": 1}}, "rustled": {"_count": 1, "its": {"_count": 1}}, "Hogwarts": {"_count": 1, "A": {"_count": 1}}, "An": {"_count": 1, "Appraisal": {"_count": 1}}, "evidently": {"_count": 1, "following": {"_count": 1}}, "although": {"_count": 1, "Harry": {"_count": 1}}, "breakouts": {"_count": 1, "from": {"_count": 1}}, "diverted": {"_count": 1, "": {"_count": 1}}, "richer": {"_count": 1, "than": {"_count": 1}}, "somewhere": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "locked": {"_count": 1, "him": {"_count": 1}}, "facing": {"_count": 1, "each": {"_count": 1}}, "jinxes": {"_count": 1, "against": {"_count": 1}}, "goatcharming": {"_count": 1, "like": {"_count": 1}}, "curled": {"_count": 1, "into": {"_count": 1}}, "instantly": {"_count": 1, "It": {"_count": 1}}, "clumsily": {"_count": 1, "there": {"_count": 1}}, "saw": {"_count": 1, "Mr": {"_count": 1}}, "Arkie": {"_count": 1, "Alderton": {"_count": 1}}, "Albert": {"_count": 1, "": {"_count": 1}}, "reasonably": {"_count": 1, "well": {"_count": 1}}, "sorting": {"_count": 1, "out": {"_count": 1}}, "dragging": {"_count": 1, "Hermione": {"_count": 1}}, "not": {"_count": 1, "in": {"_count": 1}}, "later": {"_count": 1, "if": {"_count": 1}}, "Muggleborns": {"_count": 1, "and": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "mightnt": {"_count": 1, "he": {"_count": 1}}, "vermin": {"_count": 1, "": {"_count": 1}}, "great": {"_count": 1, "sunken": {"_count": 1}}, "Scabior": {"_count": 1, "": {"_count": 1}}, "broad": {"_count": 1, "stone": {"_count": 1}}, "steaks": {"_count": 1, "for": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "Bellatrixs": {"_count": 1, "wand": {"_count": 1}}, "climb": {"_count": 1, "up": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "water": {"_count": 1, "in": {"_count": 1}}, "shivering": {"_count": 1, "vaguely": {"_count": 1}}, "tall": {"_count": 1, "as": {"_count": 1}}, "Id": {"_count": 1, "let": {"_count": 1}}, "arms": {"_count": 1, "against": {"_count": 1}}, "fangs": {"_count": 1, "both": {"_count": 1}}, "adjacent": {"_count": 1, "aisles": {"_count": 1}}, "following": {"_count": 1, "Ron": {"_count": 1}}, "A": {"_count": 1, "giant": {"_count": 1}}, "far": {"_count": 1, "too": {"_count": 1}}, "hands": {"_count": 1, "on": {"_count": 1}}, "Keep": {"_count": 1, "an": {"_count": 1}}}, "dull": {"_count": 56, "gray": {"_count": 1, "Tuesday": {"_count": 1}}, "granite": {"_count": 1, "gray": {"_count": 1}}, "work": {"_count": 3, "said": {"_count": 1}, "requiring": {"_count": 1}, "looking": {"_count": 1}}, "and": {"_count": 5, "foggy": {"_count": 1}, "even": {"_count": 1}, "dark": {"_count": 1}, "blind": {"_count": 1}, "she": {"_count": 1}}, "cloudy": {"_count": 1, "gray": {"_count": 1}}, "lecture": {"_count": 1, "on": {"_count": 1}}, "light": {"_count": 1, "given": {"_count": 1}}, "deepset": {"_count": 1, "eyes": {"_count": 1}}, "face": {"_count": 1, "into": {"_count": 1}}, "thud": {"_count": 3, "and": {"_count": 1}, "that": {"_count": 1}, "on": {"_count": 1}}, "color": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "scraping": {"_count": 1, "noise": {"_count": 1}}, "greenish": {"_count": 1, "tinge": {"_count": 1}}, "clunk": {"_count": 3, "echoed": {"_count": 1}, "of": {"_count": 1}, "on": {"_count": 1}}, "red": {"_count": 1, "flush": {"_count": 1}}, "glimmering": {"_count": 1, "stones": {"_count": 1}}, "sinking": {"_count": 1, "sensation": {"_count": 1}}, "grinding": {"_count": 2, "noise": {"_count": 2}}, "learnedbyheart": {"_count": 1, "sound": {"_count": 1}}, "murmur": {"_count": 1, "of": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "pounding": {"_count": 1, "pain": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "voice": {"_count": 1, "This": {"_count": 1}}, "thats": {"_count": 1, "bound": {"_count": 1}}, "purple": {"_count": 1, "flush": {"_count": 1}}, "March": {"_count": 1, "blurred": {"_count": 1}}, "sludgecolored": {"_count": 1, "eyes": {"_count": 1}}, "inner": {"_count": 1, "light": {"_count": 1}}, "without": {"_count": 1, "him": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "postermuffled": {"_count": 1, "shop": {"_count": 1}}, "thunk": {"_count": 1, "that": {"_count": 1}}, "was": {"_count": 1, "talking": {"_count": 1}}, "pink": {"_count": 1, "he": {"_count": 1}}, "story": {"_count": 1, "about": {"_count": 1}}, "for": {"_count": 1, "such": {"_count": 1}}, "thuds": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "shock": {"_count": 1}}, "hopelessness": {"_count": 1, "was": {"_count": 1}}, "flush": {"_count": 1, "of": {"_count": 1}}, "blow": {"_count": 1, "to": {"_count": 1}}}, "gray": {"_count": 128, "Tuesday": {"_count": 1, "our": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "rat": {"_count": 2, "which": {"_count": 1}, "Scabbers": {"_count": 1}}, "one": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 9, "fast": {"_count": 1}, "the": {"_count": 2}, "then": {"_count": 1}, "its": {"_count": 1}, "his": {"_count": 3}, "it": {"_count": 1}}, "hair": {"_count": 23, "and": {"_count": 9}, "was": {"_count": 3}, "": {"_count": 2}, "then": {"_count": 1}, "out": {"_count": 2}, "than": {"_count": 1}, "sat": {"_count": 1}, "disheveled": {"_count": 1}, "who": {"_count": 1}, "Apparated": {"_count": 1}, "flying": {"_count": 1}}, "its": {"_count": 1, "great": {"_count": 1}}, "glue": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 1, "slithering": {"_count": 1}}, "feather": {"_count": 1, "duster": {"_count": 1}}, "eyes": {"_count": 11, "": {"_count": 2}, "swept": {"_count": 1}, "it": {"_count": 1}, "blank": {"_count": 1}, "narrowed": {"_count": 2}, "through": {"_count": 1}, "glittering": {"_count": 1}, "were": {"_count": 1}, "raked": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "fell": {"_count": 1, "into": {"_count": 1}}, "smoke": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "cat": {"_count": 2, "who": {"_count": 1}, "Mrs": {"_count": 1}}, "cake": {"_count": 1, "in": {"_count": 1}}, "snow": {"_count": 1, "at": {"_count": 1}}, "ones": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "places": {"_count": 1}}, "feet": {"_count": 1, "stood": {"_count": 1}}, "keeled": {"_count": 1, "right": {"_count": 1}}, "which": {"_count": 1, "gradually": {"_count": 1}}, "face": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "bronze": {"_count": 1, "pinkish": {"_count": 1}}, "hippogriff": {"_count": 2, "away": {"_count": 1}, "Buckbeak": {"_count": 1}}, "pony": {"_count": 1, "": {"_count": 1}}, "hairs": {"_count": 1, "and": {"_count": 1}}, "form": {"_count": 1, "twisting": {"_count": 1}}, "scabbed": {"_count": 1, "skin": {"_count": 1}}, "was": {"_count": 1, "bobbing": {"_count": 1}}, "light": {"_count": 1, "that": {"_count": 1}}, "feathery": {"_count": 1, "tennis": {"_count": 1}}, "owl": {"_count": 4, "that": {"_count": 1}, "was": {"_count": 1}, "landed": {"_count": 1}, "opening": {"_count": 1}}, "swirled": {"_count": 1, "overhead": {"_count": 1}}, "armor": {"_count": 1, "their": {"_count": 1}}, "nightshirt": {"_count": 1, "and": {"_count": 1}}, "hands": {"_count": 1, "seized": {"_count": 1}}, "horse": {"_count": 2, "half": {"_count": 1}, "roared": {"_count": 1}}, "robes": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "exhaustion": {"_count": 1}}, "ghost": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "slimy": {"_count": 1, "scabbed": {"_count": 1}}, "dawn": {"_count": 1, "": {"_count": 1}}, "clouds": {"_count": 1, "": {"_count": 1}}, "cactus": {"_count": 1, "in": {"_count": 1}}, "steam": {"_count": 1, "Rons": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "bandages": {"_count": 2, "though": {"_count": 1}, "rapped": {"_count": 1}}, "the": {"_count": 1, "mountains": {"_count": 1}}, "January": {"_count": 1, "morning": {"_count": 1}}, "full": {"_count": 1, "moon": {"_count": 1}}, "centaur": {"_count": 7, "with": {"_count": 1}, "pawed": {"_count": 1}, "whom": {"_count": 1}, "holding": {"_count": 2}, "threw": {"_count": 1}, "to": {"_count": 1}}, "his": {"_count": 1, "clothes": {"_count": 1}}, "dress": {"_count": 1, "was": {"_count": 1}}, "owls": {"_count": 1, "": {"_count": 1}}, "blankets": {"_count": 1, "his": {"_count": 1}}, "figure": {"_count": 1, "was": {"_count": 1}}, "cloud": {"_count": 1, "it": {"_count": 1}}, "corner": {"_count": 1, "of": {"_count": 1}}, "fish": {"_count": 1, "on": {"_count": 1}}, "carapace": {"_count": 1, "something": {"_count": 1}}, "spiral": {"_count": 1, "horn": {"_count": 1}}, "blur": {"_count": 1, "that": {"_count": 1}}}, "Tuesday": {"_count": 18, "our": {"_count": 1, "story": {"_count": 1}}, "was": {"_count": 2, "Harrys": {"_count": 1}, "Cedric": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 2, "very": {"_count": 1}, "shouted": {"_count": 1}}, "Percy": {"_count": 1, "was": {"_count": 1}}, "Ill": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "he": {"_count": 1, "would": {"_count": 1}}, "evening": {"_count": 1, "she": {"_count": 1}}, "heavily": {"_count": 1, "muffled": {"_count": 1}}, "morning": {"_count": 1, "striding": {"_count": 1}}, "only": {"_count": 1, "seven": {"_count": 1}}}, "our": {"_count": 539, "story": {"_count": 3, "starts": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 1}}, "heads": {"_count": 1, "": {"_count": 1}}, "world": {"_count": 5, "will": {"_count": 1}, "I": {"_count": 1}, "knows": {"_count": 2}, "they": {"_count": 1}}, "floors": {"_count": 2, "A": {"_count": 1}, "a": {"_count": 1}}, "family": {"_count": 7, "have": {"_count": 1}, "to": {"_count": 1}, "has": {"_count": 1}, "anymore": {"_count": 1}, "": {"_count": 1}, "thats": {"_count": 1}, "does": {"_count": 1}}, "kind": {"_count": 6, "werent": {"_count": 1}, "regard": {"_count": 1}, "underwent": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "ever": {"_count": 1}}, "ways": {"_count": 1, "": {"_count": 1}}, "sport": {"_count": 1, "": {"_count": 1}}, "mother": {"_count": 1, "": {"_count": 1}}, "brother": {"_count": 1, "": {"_count": 1}}, "course": {"_count": 1, "books": {"_count": 1}}, "food": {"_count": 2, "and": {"_count": 1}, "parcels": {"_count": 1}}, "side": {"_count": 12, "after": {"_count": 1}, "had": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 5}, "now": {"_count": 1}, "is": {"_count": 2}, "said": {"_count": 1}}, "banquet": {"_count": 1, "I": {"_count": 1}}, "older": {"_count": 2, "students": {"_count": 2}}, "brains": {"_count": 1, "all": {"_count": 1}}, "first": {"_count": 14, "week": {"_count": 1}, "spells": {"_count": 1}, "Quidditch": {"_count": 1}, "Divination": {"_count": 1}, "match": {"_count": 2}, "year": {"_count": 3}, "day": {"_count": 2}, "meeting": {"_count": 1}, "Defense": {"_count": 1}, "Potions": {"_count": 1}}, "hoops": {"_count": 1, "and": {"_count": 1}}, "name": {"_count": 3, "on": {"_count": 3}}, "hearts": {"_count": 2, "": {"_count": 1}, "are": {"_count": 1}}, "laws": {"_count": 4, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "lives": {"_count": 9, "are": {"_count": 1}, "": {"_count": 2}, "here": {"_count": 1}, "when": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "twice": {"_count": 1}}, "only": {"_count": 1, "chance": {"_count": 1}}, "fault": {"_count": 4, "hes": {"_count": 1}, "how": {"_count": 1}, "it": {"_count": 1}, "whoever": {"_count": 1}}, "business": {"_count": 4, "to": {"_count": 3}, "what": {"_count": 1}}, "forest": {"_count": 3, "": {"_count": 2}, "when": {"_count": 1}}, "feet": {"_count": 3, "wandering": {"_count": 1}, "": {"_count": 2}}, "way": {"_count": 6, "across": {"_count": 1}, "": {"_count": 2}, "rather": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}}, "number": {"_count": 4, "hold": {"_count": 1}, "will": {"_count": 2}, "to": {"_count": 1}}, "teeth": {"_count": 2, "into": {"_count": 1}, "and": {"_count": 1}}, "delicious": {"_count": 1, "feast": {"_count": 1}}, "enemies": {"_count": 2, "but": {"_count": 1}, "you": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}, "hero": {"_count": 1, "at": {"_count": 1}}, "nephew": {"_count": 1, "very": {"_count": 1}}, "house": {"_count": 6, "": {"_count": 1}, "hed": {"_count": 1}, "and": {"_count": 1}, "late": {"_count": 1}, "near": {"_count": 1}, "Ill": {"_count": 1}}, "sheds": {"_count": 1, "full": {"_count": 1}}, "lot": {"_count": 3, "have": {"_count": 1}, "": {"_count": 2}}, "school": {"_count": 7, "stuff": {"_count": 1}, "is": {"_count": 1}, "Now": {"_count": 1}, "since": {"_count": 1}, "": {"_count": 2}, "trunks": {"_count": 1}}, "luck": {"_count": 2, "": {"_count": 1}, "though": {"_count": 1}}, "stuff": {"_count": 3, "said": {"_count": 1}, "youre": {"_count": 1}, "anymore": {"_count": 1}}, "step": {"_count": 2, "from": {"_count": 1}, "George": {"_count": 1}}, "Mandrakes": {"_count": 1, "are": {"_count": 1}}, "new": {"_count": 11, "training": {"_count": 2}, "theories": {"_count": 1}, "books": {"_count": 1}, "Head": {"_count": 1}, "Defense": {"_count": 2}, "program": {"_count": 1}, "headmistress": {"_count": 1}, "students": {"_count": 1}, "regime": {"_count": 1}}, "control": {"_count": 2, "Harry": {"_count": 1}, "to": {"_count": 1}}, "practice": {"_count": 1, "time": {"_count": 1}}, "team": {"_count": 2, "": {"_count": 2}}, "Hermione": {"_count": 1, "can": {"_count": 1}}, "requirements": {"_count": 1, "": {"_count": 1}}, "match": {"_count": 2, "against": {"_count": 2}}, "brooms": {"_count": 2, "": {"_count": 2}}, "last": {"_count": 3, "practice": {"_count": 1}, "chance": {"_count": 1}, "year": {"_count": 1}}, "wands": {"_count": 4, "in": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "dormitory": {"_count": 4, "": {"_count": 2}, "Harry": {"_count": 1}, "how": {"_count": 1}}, "common": {"_count": 2, "room": {"_count": 2}}, "reporter": {"_count": 1, "": {"_count": 1}}, "manor": {"_count": 1, "last": {"_count": 1}}, "own": {"_count": 13, "secret": {"_count": 1}, "cleverness": {"_count": 1}, "departments": {"_count": 1}, "schools": {"_count": 1}, "good": {"_count": 1}, "glasses": {"_count": 1}, "hands": {"_count": 1}, "safety": {"_count": 1}, "necks": {"_count": 1}, "anymore": {"_count": 1}, "socks": {"_count": 1}, "hard": {"_count": 1}, "tail": {"_count": 1}}, "whole": {"_count": 2, "future": {"_count": 1}, "stock": {"_count": 1}}, "old": {"_count": 4, "subjects": {"_count": 1}, "houseelf": {"_count": 1}, "hands": {"_count": 1}, "students": {"_count": 1}}, "password": {"_count": 1, "Exactly": {"_count": 1}}, "tower": {"_count": 1, "unless": {"_count": 1}}, "car": {"_count": 1, "": {"_count": 1}}, "hollow": {"_count": 1, "before": {"_count": 1}}, "midst": {"_count": 2, "": {"_count": 2}}, "catching": {"_count": 1, "the": {"_count": 1}}, "land": {"_count": 1, "there": {"_count": 1}}, "Ginny": {"_count": 1, "got": {"_count": 1}}, "words": {"_count": 1, "Dumbledore": {"_count": 1}}, "choices": {"_count": 1, "Harry": {"_count": 1}}, "abilities": {"_count": 1, "": {"_count": 1}}, "gamekeeper": {"_count": 1, "back": {"_count": 1}}, "most": {"_count": 2, "prominent": {"_count": 1}, "crucial": {"_count": 1}}, "eldest": {"_count": 1, "son": {"_count": 1}}, "driver": {"_count": 1, "Ernie": {"_count": 1}}, "books": {"_count": 3, "He": {"_count": 1}, "": {"_count": 2}}, "regular": {"_count": 2, "jobs": {"_count": 1}, "contributors": {"_count": 1}}, "exciting": {"_count": 1, "news": {"_count": 1}}, "cloaks": {"_count": 1, "": {"_count": 1}}, "excellent": {"_count": 1, "feast": {"_count": 1}}, "ranks": {"_count": 1, "this": {"_count": 1}}, "second": {"_count": 2, "new": {"_count": 1}, "year": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "end": {"_count": 2, "of": {"_count": 1}, "something": {"_count": 1}}, "compartment": {"_count": 2, "didnt": {"_count": 1}, "": {"_count": 1}}, "goal": {"_count": 1, "or": {"_count": 1}}, "hands": {"_count": 2, "off": {"_count": 1}, "on": {"_count": 1}}, "year": {"_count": 3, "said": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "next": {"_count": 2, "lesson": {"_count": 1}, "months": {"_count": 1}}, "search": {"_count": 2, "was": {"_count": 1}, "for": {"_count": 1}}, "focus": {"_count": 1, "": {"_count": 1}}, "other": {"_count": 2, "Defense": {"_count": 1}, "ancient": {"_count": 1}}, "Christmas": {"_count": 1, "shopping": {"_count": 1}}, "success": {"_count": 1, "said": {"_count": 1}}, "inquiry": {"_count": 1, "into": {"_count": 1}}, "concern": {"_count": 1, "about": {"_count": 1}}, "teacher": {"_count": 1, "": {"_count": 1}}, "exams": {"_count": 2, "Professor": {"_count": 1}, "said": {"_count": 1}}, "fifth": {"_count": 1, "year": {"_count": 1}}, "nicknames": {"_count": 1, "": {"_count": 1}}, "fingers": {"_count": 3, "yet": {"_count": 1}, "crossed": {"_count": 1}, "": {"_count": 1}}, "actions": {"_count": 1, "are": {"_count": 1}}, "brief": {"_count": 1, "meeting": {"_count": 1}}, "journey": {"_count": 1, "I": {"_count": 1}}, "path": {"_count": 1, "to": {"_count": 1}}, "plan": {"_count": 1, "and": {"_count": 1}}, "department": {"_count": 3, "just": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "plates": {"_count": 1, "at": {"_count": 1}}, "Ced": {"_count": 1, "always": {"_count": 1}}, "colors": {"_count": 1, "": {"_count": 1}}, "son": {"_count": 1, "Draco": {"_count": 1}}, "referee": {"_count": 1, "acclaimed": {"_count": 1}}, "time": {"_count": 2, "quibbling": {"_count": 1}, "without": {"_count": 1}}, "winning": {"_count": 1, "streak": {"_count": 1}}, "impartial": {"_count": 1, "judge": {"_count": 1}}, "foreign": {"_count": 2, "guests": {"_count": 2}}, "names": {"_count": 1, "": {"_count": 1}}, "Divination": {"_count": 1, "stuff": {"_count": 1}}, "manifesto": {"_count": 1, "": {"_count": 1}}, "leaflet": {"_count": 1, "campaign": {"_count": 1}}, "guests": {"_count": 2, "before": {"_count": 1}, "are": {"_count": 1}}, "three": {"_count": 1, "champions": {"_count": 1}}, "er": {"_count": 2, "objective": {"_count": 1}, "message": {"_count": 1}}, "meetings": {"_count": 1, "and": {"_count": 1}}, "schools": {"_count": 2, "": {"_count": 1}, "secrets": {"_count": 1}}, "champions": {"_count": 3, "their": {"_count": 1}, "is": {"_count": 1}, "are": {"_count": 1}}, "conversation": {"_count": 2, "turns": {"_count": 1}, "by": {"_count": 1}}, "detentions": {"_count": 1, "tomorrow": {"_count": 1}}, "silence": {"_count": 2, "sir": {"_count": 1}, "for": {"_count": 1}}, "hair": {"_count": 1, "down": {"_count": 1}}, "private": {"_count": 2, "domains": {"_count": 1}, "lessons": {"_count": 1}}, "voices": {"_count": 2, "sound": {"_count": 2}}, "decision": {"_count": 1, "": {"_count": 1}}, "dear": {"_count": 2, "older": {"_count": 1}, "new": {"_count": 1}}, "work": {"_count": 1, "on": {"_count": 1}}, "fellows": {"_count": 2, "He": {"_count": 1}, "for": {"_count": 1}}, "verdict": {"_count": 1, "": {"_count": 1}}, "meeting": {"_count": 2, "and": {"_count": 1}, "after": {"_count": 1}}, "curiosity": {"_count": 1, "": {"_count": 1}}, "attention": {"_count": 1, "to": {"_count": 1}}, "times": {"_count": 1, "is": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "natural": {"_count": 1, "allies": {"_count": 1}}, "young": {"_count": 2, "friend": {"_count": 1}, "Slytherin": {"_count": 1}}, "duel": {"_count": 1, "": {"_count": 1}}, "fathers": {"_count": 1, "to": {"_count": 1}}, "fake": {"_count": 1, "Moody": {"_count": 1}}, "beds": {"_count": 2, "at": {"_count": 1}, "Cornelius": {"_count": 1}}, "feast": {"_count": 1, "with": {"_count": 1}}, "aims": {"_count": 1, "are": {"_count": 1}}, "letter": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "money": {"_count": 1, "back": {"_count": 1}}, "news": {"_count": 3, "Vernon": {"_count": 1}, "": {"_count": 1}, "till": {"_count": 1}}, "I": {"_count": 1, "didnt": {"_count": 1}}, "window": {"_count": 2, "": {"_count": 1}, "boy": {"_count": 1}}, "letters": {"_count": 2, "go": {"_count": 1}, "were": {"_count": 1}}, "doorstep": {"_count": 1, "again": {"_count": 1}}, "possessions": {"_count": 1, "": {"_count": 1}}, "lifes": {"_count": 1, "worth": {"_count": 1}}, "best": {"_count": 2, "said": {"_count": 1}, "efforts": {"_count": 1}}, "Skiving": {"_count": 1, "Snackboxes": {"_count": 1}}, "testers": {"_count": 1, "are": {"_count": 1}}, "investigation": {"_count": 1, "up": {"_count": 1}}, "case": {"_count": 1, "": {"_count": 1}}, "lawbreaking": {"_count": 1, "days": {"_count": 1}}, "trunks": {"_count": 1, "packed": {"_count": 1}}, "financial": {"_count": 1, "backer": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "noble": {"_count": 1, "school": {"_count": 1}}, "faults": {"_count": 1, "and": {"_count": 1}}, "Hogwarts": {"_count": 1, "is": {"_count": 1}}, "newcomers": {"_count": 1, "said": {"_count": 1}}, "ancestors": {"_count": 1, "must": {"_count": 1}}, "tried": {"_count": 1, "and": {"_count": 1}}, "headmasters": {"_count": 1, "been": {"_count": 1}}, "subscription": {"_count": 1, "": {"_count": 1}}, "spirits": {"_count": 1, "up": {"_count": 1}}, "futures": {"_count": 1, "lie": {"_count": 1}}, "seventh": {"_count": 1, "year": {"_count": 1}}, "O": {"_count": 7, "": {"_count": 7}}, "research": {"_count": 1, "and": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "exam": {"_count": 1, "": {"_count": 1}}, "homework": {"_count": 2, "": {"_count": 1}, "this": {"_count": 1}}, "temper": {"_count": 1, "already": {"_count": 1}}, "biggest": {"_count": 1, "friend": {"_count": 1}}, "guard": {"_count": 1, "going": {"_count": 1}}, "father": {"_count": 1, "escorted": {"_count": 1}}, "parents": {"_count": 2, "but": {"_count": 1}, "beliefs": {"_count": 1}}, "childrens": {"_count": 1, "best": {"_count": 1}}, "study": {"_count": 1, "of": {"_count": 1}}, "third": {"_count": 1, "year": {"_count": 1}}, "Quidditch": {"_count": 1, "practice": {"_count": 1}}, "place": {"_count": 1, "hasnt": {"_count": 1}}, "Strengthening": {"_count": 1, "Solutions": {"_count": 1}}, "fate": {"_count": 1, "": {"_count": 1}}, "faces": {"_count": 1, "it": {"_count": 1}}, "leader": {"_count": 1, "": {"_count": 1}}, "pockets": {"_count": 1, "theres": {"_count": 1}}, "members": {"_count": 1, "skin": {"_count": 1}}, "King": {"_count": 12, "": {"_count": 6}, "Weasley": {"_count": 3}, "He": {"_count": 3}}, "amendment": {"_count": 1, "": {"_count": 1}}, "gift": {"_count": 1, "up": {"_count": 1}}, "eyes": {"_count": 3, "on": {"_count": 1}, "skinned": {"_count": 1}, "off": {"_count": 1}}, "present": {"_count": 4, "down": {"_count": 1}, "said": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "lingo": {"_count": 1, "an": {"_count": 1}}, "promises": {"_count": 1, "": {"_count": 1}}, "cave": {"_count": 2, "lookin": {"_count": 1}, "said": {"_count": 1}}, "mugs": {"_count": 1, "": {"_count": 1}}, "dad": {"_count": 2, "": {"_count": 1}, "dying": {"_count": 1}}, "Welcome": {"_count": 1, "Witch": {"_count": 1}}, "longterm": {"_count": 1, "resident": {"_count": 1}}, "wards": {"_count": 1, "but": {"_count": 1}}, "necks": {"_count": 2, "on": {"_count": 1}, "said": {"_count": 1}}, "races": {"_count": 1, "": {"_count": 1}}, "informant": {"_count": 1, "": {"_count": 1}}, "justice": {"_count": 1, "system": {"_count": 1}}, "bit": {"_count": 1, "for": {"_count": 1}}, "classroom": {"_count": 1, "": {"_count": 1}}, "mail": {"_count": 1, "": {"_count": 1}}, "career": {"_count": 1, "consultation": {"_count": 1}}, "talents": {"_count": 1, "in": {"_count": 1}}, "products": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "knowledge": {"_count": 2, "and": {"_count": 1}, "But": {"_count": 1}}, "tolerance": {"_count": 1, "is": {"_count": 1}}, "results": {"_count": 1, "": {"_count": 1}}, "Charms": {"_count": 1, "tests": {"_count": 1}}, "star": {"_count": 1, "charts": {"_count": 1}}, "cause": {"_count": 1, "": {"_count": 1}}, "relationship": {"_count": 1, "was": {"_count": 1}}, "whereabouts": {"_count": 1, "or": {"_count": 1}}, "headquarters": {"_count": 2, "that": {"_count": 1}, "there": {"_count": 1}}, "reward": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 2, "stroke": {"_count": 1}, "chance": {"_count": 1}}, "discussion": {"_count": 1, "yes": {"_count": 1}}, "Bonder": {"_count": 1, "": {"_count": 1}}, "centaur": {"_count": 1, "herd": {"_count": 1}}, "options": {"_count": 1, "with": {"_count": 1}}, "Head": {"_count": 1, "of": {"_count": 1}}, "examinations": {"_count": 1, "after": {"_count": 1}}, "special": {"_count": 2, "bathroom": {"_count": 1}, "WonderWitch": {"_count": 1}}, "Decoy": {"_count": 1, "Detonators": {"_count": 1}}, "startup": {"_count": 1, "loan": {"_count": 1}}, "sister": {"_count": 2, "he": {"_count": 1}, "since": {"_count": 1}}, "robes": {"_count": 1, "on": {"_count": 1}}, "caretaker": {"_count": 1, "has": {"_count": 1}}, "yeah": {"_count": 1, "Im": {"_count": 1}}, "schedules": {"_count": 1, "": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "Transfiguration": {"_count": 1, "class": {"_count": 1}}, "subjects": {"_count": 1, "most": {"_count": 1}}, "information": {"_count": 1, "is": {"_count": 1}}, "mails": {"_count": 1, "still": {"_count": 1}}, "anguish": {"_count": 1, "Harry": {"_count": 1}}, "primary": {"_count": 1, "aim": {"_count": 1}}, "previous": {"_count": 1, "lesson": {"_count": 1}}, "finest": {"_count": 2, "treasure": {"_count": 1}, "Wizarding": {"_count": 1}}, "little": {"_count": 1, "meeting": {"_count": 1}}, "tests": {"_count": 1, "": {"_count": 1}}, "theory": {"_count": 1, "of": {"_count": 1}}, "aid": {"_count": 1, "should": {"_count": 1}}, "orders": {"_count": 1, "": {"_count": 1}}, "colleagues": {"_count": 1, "is": {"_count": 1}}, "disagreements": {"_count": 1, "as": {"_count": 1}}, "people": {"_count": 1, "before": {"_count": 1}}, "friend": {"_count": 1, "Thicknesse": {"_count": 1}}, "prisoner": {"_count": 1, "quiet": {"_count": 1}}, "familys": {"_count": 1, "house": {"_count": 1}}, "oldest": {"_count": 1, "family": {"_count": 1}}, "guest": {"_count": 1, "Severus": {"_count": 1}}, "separate": {"_count": 1, "careers": {"_count": 1}}, "trip": {"_count": 1, "Albuss": {"_count": 1}}, "protective": {"_count": 1, "charms": {"_count": 1}}, "daughter": {"_count": 1, "": {"_count": 1}}, "Portkey": {"_count": 1, "and": {"_count": 1}}, "sons": {"_count": 1, "": {"_count": 1}}, "efforts": {"_count": 1, "tonight": {"_count": 1}}, "hunt": {"_count": 1, "for": {"_count": 1}}, "families": {"_count": 1, "to": {"_count": 1}}, "priority": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "families": {"_count": 1}}, "things": {"_count": 2, "now": {"_count": 1}, "": {"_count": 1}}, "talks": {"_count": 1, "last": {"_count": 1}}, "English": {"_count": 1, "customs": {"_count": 1}}, "presence": {"_count": 1, "might": {"_count": 1}}, "cousin": {"_count": 1, "Barny": {"_count": 1}}, "day": {"_count": 1, "Squibs": {"_count": 1}}, "position": {"_count": 1, "he": {"_count": 1}}, "displeasure": {"_count": 1, "": {"_count": 1}}, "marriage": {"_count": 1, "what": {"_count": 1}}, "intelligence": {"_count": 1, "said": {"_count": 1}}, "sympathies": {"_count": 1, "": {"_count": 1}}, "disguises": {"_count": 1, "the": {"_count": 1}}, "precautions": {"_count": 1, "well": {"_count": 1}}, "of": {"_count": 1, "Bathildas": {"_count": 1}}, "counterarguments": {"_count": 1, "": {"_count": 1}}, "sufferings": {"_count": 1, "into": {"_count": 1}}, "mum": {"_count": 1, "always": {"_count": 1}}, "recipe": {"_count": 1, "for": {"_count": 1}}, "temporary": {"_count": 1, "absence": {"_count": 1}}, "area": {"_count": 1, "by": {"_count": 1}}, "listeners": {"_count": 4, "of": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "will": {"_count": 1}}, "popular": {"_count": 1, "feature": {"_count": 1}}, "program": {"_count": 1, "that": {"_count": 1}}, "usual": {"_count": 1, "update": {"_count": 1}}, "powers": {"_count": 1, "": {"_count": 1}}, "code": {"_count": 1, "to": {"_count": 1}}, "care": {"_count": 1, "which": {"_count": 1}}, "habit": {"_count": 1, "of": {"_count": 1}}, "longfingered": {"_count": 1, "friends": {"_count": 1}}, "mothers": {"_count": 1, "knee": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "students": {"_count": 1, "and": {"_count": 1}}, "resistance": {"_count": 1, "or": {"_count": 1}}, "prefects": {"_count": 1, "to": {"_count": 1}}, "owls": {"_count": 1, "": {"_count": 1}}, "safety": {"_count": 1, "": {"_count": 1}}, "help": {"_count": 1, "said": {"_count": 1}}, "schemes": {"_count": 1, "the": {"_count": 1}}, "interest": {"_count": 1, "in": {"_count": 1}}, "children": {"_count": 1, "again": {"_count": 1}}, "contribution": {"_count": 1, "not": {"_count": 1}}, "Victoire": {"_count": 1, "": {"_count": 1}}, "love": {"_count": 1, "": {"_count": 1}}}, "story": {"_count": 162, "starts": {"_count": 1, "there": {"_count": 1}}, "when": {"_count": 2, "every": {"_count": 1}, "she": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 20}, "!": {"_count": 3}, "?": {"_count": 3}}, "again": {"_count": 1, "": {"_count": 1}}, "wasnt": {"_count": 1, "new": {"_count": 1}}, "Harry": {"_count": 4, "left": {"_count": 1}, "": {"_count": 2}, "could": {"_count": 1}}, "about": {"_count": 8, "a": {"_count": 2}, "those": {"_count": 1}, "Hagrid": {"_count": 1}, "Crouch": {"_count": 1}, "how": {"_count": 2}, "interschool": {"_count": 1}}, "and": {"_count": 3, "believed": {"_count": 1}, "anyone": {"_count": 1}, "I": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 1, "even": {"_count": 1}}, "that": {"_count": 4, "he": {"_count": 1}, "shows": {"_count": 1}, "Im": {"_count": 1}, "Viktor": {"_count": 1}}, "had": {"_count": 3, "come": {"_count": 1}, "been": {"_count": 1}, "finally": {"_count": 1}}, "starting": {"_count": 1, "with": {"_count": 1}}, "anywhere": {"_count": 1, "else": {"_count": 1}}, "goes": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 4, "it": {"_count": 2}, "I": {"_count": 1}, "there": {"_count": 1}}, "of": {"_count": 21, "how": {"_count": 2}, "what": {"_count": 4}, "his": {"_count": 2}, "the": {"_count": 7}, "that": {"_count": 1}, "Harry": {"_count": 1}, "sending": {"_count": 1}, "Fred": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}}, "he": {"_count": 2, "wanted": {"_count": 1}, "had": {"_count": 1}}, "was": {"_count": 5, "given": {"_count": 1}, "going": {"_count": 1}, "": {"_count": 1}, "told": {"_count": 1}, "obscured": {"_count": 1}}, "youve": {"_count": 1, "ever": {"_count": 1}}, "boy": {"_count": 1, "or": {"_count": 1}}, "Ill": {"_count": 1, "sign": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "made": {"_count": 1, "no": {"_count": 1}}, "get": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 6, "Dumbledore": {"_count": 1}, "Ron": {"_count": 2}, "a": {"_count": 1}, "Hermione": {"_count": 2}}, "except": {"_count": 1, "your": {"_count": 1}}, "Amos": {"_count": 1, "": {"_count": 1}}, "Percy": {"_count": 1, "swelled": {"_count": 1}}, "without": {"_count": 1, "question": {"_count": 1}}, "shouting": {"_count": 1, "shrilly": {"_count": 1}}, "to": {"_count": 1, "fit": {"_count": 1}}, "anyway": {"_count": 2, "Dumbledore": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 2, "is": {"_count": 1}, "made": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 2, "this": {"_count": 1}, "that": {"_count": 1}}, "appears": {"_count": 1, "they": {"_count": 1}}, "outofcontrol": {"_count": 1, "dementors": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "very": {"_count": 1, "nice": {"_count": 1}}, "Dumbledore": {"_count": 1, "cleared": {"_count": 1}}, "firsthand": {"_count": 2, "": {"_count": 2}}, "two": {"_count": 1, "months": {"_count": 1}}, "highly": {"_count": 1, "interesting": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "looked": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "Harrys": {"_count": 1}}, "for": {"_count": 1, "Arthur": {"_count": 1}}, "here": {"_count": 1, "Dumbledore": {"_count": 1}}, "out": {"_count": 2, "there": {"_count": 1}, "loud": {"_count": 1}}, "from": {"_count": 2, "that": {"_count": 1}, "here": {"_count": 1}}, "available": {"_count": 1, "even": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 1}, "collapse": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "designed": {"_count": 1, "to": {"_count": 1}}, "somewhere": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "you": {"_count": 1, "arrived": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "as": {"_count": 2, "far": {"_count": 1}, "they": {"_count": 1}}, "another": {"_count": 1, "time": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "where": {"_count": 1, "we": {"_count": 1}}, "Malfoy": {"_count": 1, "had": {"_count": 1}}, "could": {"_count": 1, "wait": {"_count": 1}}, "then": {"_count": 1, "do": {"_count": 1}}, "being": {"_count": 1, "unable": {"_count": 1}}, "repeated": {"_count": 1, "by": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "refers": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "actually": {"_count": 1}}, "says": {"_count": 1, "that": {"_count": 1}}, "Fit": {"_count": 1, "everything": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}}, "starts": {"_count": 11, "there": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "eight": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "September": {"_count": 1}}, "and": {"_count": 1, "well": {"_count": 1}}, "with": {"_count": 2, "my": {"_count": 1}, "The": {"_count": 1}}, "in": {"_count": 1, "ten": {"_count": 1}}, "crying": {"_count": 1, "Fred": {"_count": 1}}, "going": {"_count": 1, "out": {"_count": 1}}}, "nothing": {"_count": 589, "about": {"_count": 9, "the": {"_count": 4}, "no": {"_count": 1}, "his": {"_count": 1}, "Voldemort": {"_count": 1}, "Harrys": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "except": {"_count": 7, "a": {"_count": 1}, "perhaps": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "Well": {"_count": 1}, "that": {"_count": 1}, "her": {"_count": 1}}, "could": {"_count": 8, "upset": {"_count": 1}, "have": {"_count": 5}, "put": {"_count": 1}, "hurt": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 80, "the": {"_count": 4}, "stop": {"_count": 2}, "what": {"_count": 2}, "lose": {"_count": 1}, "how": {"_count": 4}, "drink": {"_count": 1}, "distract": {"_count": 1}, "find": {"_count": 1}, "follow": {"_count": 1}, "do": {"_count": 21}, "be": {"_count": 6}, "feel": {"_count": 1}, "me": {"_count": 1}, "worry": {"_count": 3}, "cry": {"_count": 1}, "prevent": {"_count": 1}, "look": {"_count": 2}, "improve": {"_count": 1}, "fear": {"_count": 3}, "criticize": {"_count": 1}, "seize": {"_count": 1}, "suggest": {"_count": 2}, "Rons": {"_count": 1}, "dispel": {"_count": 1}, "warrant": {"_count": 1}, "make": {"_count": 1}, "any": {"_count": 1}, "anyone": {"_count": 1}, "say": {"_count": 2}, "see": {"_count": 1}, "Marvolos": {"_count": 1}, "raise": {"_count": 1}, "tell": {"_count": 1}, "help": {"_count": 2}, "eat": {"_count": 2}, "him": {"_count": 1}, "fight": {"_count": 1}, "Snape": {"_count": 1}}, "": {"_count": 64, ".": {"_count": 54}, "?": {"_count": 1}, "!": {"_count": 9}}, "was": {"_count": 10, "going": {"_count": 1}, "moving": {"_count": 4}, "stirring": {"_count": 2}, "wrong": {"_count": 1}, "happening": {"_count": 1}, "given": {"_count": 1}}, "a": {"_count": 1, "good": {"_count": 1}}, "but": {"_count": 79, "pockets": {"_count": 1}, "a": {"_count": 17}, "dark": {"_count": 1}, "misery": {"_count": 1}, "an": {"_count": 2}, "Sirius": {"_count": 1}, "the": {"_count": 11}, "swirling": {"_count": 1}, "grapefruit": {"_count": 1}, "swimming": {"_count": 1}, "ill": {"_count": 1}, "Good": {"_count": 1}, "sat": {"_count": 1}, "looked": {"_count": 2}, "making": {"_count": 1}, "couples": {"_count": 1}, "marched": {"_count": 1}, "rows": {"_count": 1}, "thinking": {"_count": 1}, "turned": {"_count": 1}, "towering": {"_count": 1}, "his": {"_count": 5}, "continued": {"_count": 2}, "shock": {"_count": 2}, "neglect": {"_count": 1}, "Dumbledore": {"_count": 1}, "talent": {"_count": 1}, "what": {"_count": 1}, "stare": {"_count": 1}, "walked": {"_count": 1}, "distant": {"_count": 1}, "action": {"_count": 1}, "Voldemort": {"_count": 1}, "bitter": {"_count": 1}, "berries": {"_count": 1}, "impatience": {"_count": 1}, "rainswept": {"_count": 1}, "pain": {"_count": 1}, "light": {"_count": 1}, "beg": {"_count": 1}, "getting": {"_count": 1}, "revulsion": {"_count": 1}, "fire": {"_count": 1}, "its": {"_count": 1}, "merely": {"_count": 1}}, "in": {"_count": 13, "them": {"_count": 1}, "here": {"_count": 2}, "the": {"_count": 2}, "there": {"_count": 2}, "Madcap": {"_count": 1}, "A": {"_count": 1}, "sight": {"_count": 1}, "particular": {"_count": 1}, "it": {"_count": 1}, "Harrys": {"_count": 1}}, "at": {"_count": 16, "all": {"_count": 15}, "Hogwarts": {"_count": 1}}, "else": {"_count": 16, "for": {"_count": 2}, "": {"_count": 3}, "all": {"_count": 1}, "seemed": {"_count": 2}, "worth": {"_count": 1}, "had": {"_count": 2}, "to": {"_count": 2}, "and": {"_count": 1}, "while": {"_count": 1}, "speak": {"_count": 1}}, "would": {"_count": 4, "surprise": {"_count": 1}, "make": {"_count": 1}, "work": {"_count": 1}, "": {"_count": 1}}, "happened": {"_count": 16, "": {"_count": 9}, "until": {"_count": 1}, "She": {"_count": 1}, "one": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "Pettigrew": {"_count": 1}, "except": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 7, "been": {"_count": 1}, "happened": {"_count": 4}, "brushed": {"_count": 1}, "shocked": {"_count": 1}}, "happens": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 4, "you": {"_count": 2}, "not": {"_count": 1}, "one": {"_count": 1}}, "worse": {"_count": 5, "than": {"_count": 3}, "": {"_count": 1}, "had": {"_count": 1}}, "interfere": {"_count": 1, "with": {"_count": 1}}, "like": {"_count": 9, "the": {"_count": 2}, "Santa": {"_count": 1}, "a": {"_count": 3}, "any": {"_count": 1}, "that": {"_count": 2}}, "mysterious": {"_count": 1, "to": {"_count": 1}}, "more": {"_count": 32, "or": {"_count": 2}, "exciting": {"_count": 1}, "than": {"_count": 16}, "eventful": {"_count": 1}, "to": {"_count": 4}, "frightening": {"_count": 1}, "important": {"_count": 2}, "about": {"_count": 1}, "sophisticated": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}, "remained": {"_count": 1}}, "gives": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 7, "two": {"_count": 1}, "can": {"_count": 5}, "know": {"_count": 1}}, "said": {"_count": 8, "Harry": {"_count": 2}, "the": {"_count": 1}, "Mr": {"_count": 1}, "Slughorn": {"_count": 1}, "Dumbledore": {"_count": 1}, "Ron": {"_count": 1}, "Snape": {"_count": 1}}, "though": {"_count": 2, "was": {"_count": 1}, "perhaps": {"_count": 1}}, "very": {"_count": 2, "frightening": {"_count": 1}, "humorous": {"_count": 1}}, "dear": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "so": {"_count": 3, "they": {"_count": 1}, "important": {"_count": 1}, "much": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "better": {"_count": 8, "to": {"_count": 1}, "than": {"_count": 7}}, "with": {"_count": 2, "Crabbes": {"_count": 1}, "chocolate": {"_count": 1}}, "wrong": {"_count": 14, "with": {"_count": 12}, "I": {"_count": 1}, "certainly": {"_count": 1}}, "he": {"_count": 14, "said": {"_count": 2}, "could": {"_count": 4}, "merely": {"_count": 1}, "did": {"_count": 2}, "was": {"_count": 2}, "looked": {"_count": 1}, "growled": {"_count": 1}, "had": {"_count": 1}}, "written": {"_count": 3, "in": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 1}}, "short": {"_count": 4, "of": {"_count": 4}}, "really": {"_count": 1, "Id": {"_count": 1}}, "I": {"_count": 4, "can": {"_count": 1}, "wouldnt": {"_count": 1}, "say": {"_count": 1}, "have": {"_count": 1}}, "special": {"_count": 1, "about": {"_count": 1}}, "anyone": {"_count": 2, "can": {"_count": 1}, "said": {"_count": 1}}, "against": {"_count": 1, "your": {"_count": 1}}, "woolly": {"_count": 1, "about": {"_count": 1}}, "there": {"_count": 7, "either": {"_count": 1}, "Snape": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 3}, "was": {"_count": 1}}, "while": {"_count": 1, "Black": {"_count": 1}}, "less": {"_count": 3, "than": {"_count": 3}}, "that": {"_count": 1, "had": {"_count": 1}}, "brave": {"_count": 1, "about": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "to": {"_count": 1}}, "seriously": {"_count": 1, "wrong": {"_count": 1}}, "they": {"_count": 3, "could": {"_count": 2}, "were": {"_count": 1}}, "we": {"_count": 5, "can": {"_count": 2}, "could": {"_count": 1}, "had": {"_count": 1}, "do": {"_count": 1}}, "after": {"_count": 1, "my": {"_count": 1}}, "Molly": {"_count": 1, "mumbled": {"_count": 1}}, "personall": {"_count": 1, "It": {"_count": 1}}, "worked": {"_count": 1, "so": {"_count": 1}}, "whatsoever": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "came": {"_count": 3, "out": {"_count": 3}}, "will": {"_count": 1, "hurt": {"_count": 1}}, "went": {"_count": 1, "wrong": {"_count": 1}}, "she": {"_count": 4, "said": {"_count": 2}, "can": {"_count": 1}, "choked": {"_count": 1}}, "Moody": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 3, "almost": {"_count": 1}, "ten": {"_count": 1}, "it": {"_count": 1}}, "nothing": {"_count": 10, "compared": {"_count": 2}, "to": {"_count": 2}, "said": {"_count": 1}, "": {"_count": 2}, "would": {"_count": 1}, "but": {"_count": 1}, "nothing": {"_count": 1}}, "compared": {"_count": 5, "to": {"_count": 4}, "with": {"_count": 1}}, "Dobby": {"_count": 1, "says": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 2}, "this": {"_count": 1}, "cartomancy": {"_count": 1}, "value": {"_count": 1}, "Hagrid": {"_count": 1}, "no": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "could": {"_count": 1}}, "unless": {"_count": 1, "I": {"_count": 1}}, "doing": {"_count": 1, "": {"_count": 1}}, "suspended": {"_count": 1, "in": {"_count": 1}}, "not": {"_count": 3, "the": {"_count": 1}, "even": {"_count": 1}, "Hermione": {"_count": 1}}, "insignificant": {"_count": 1, "in": {"_count": 1}}, "below": {"_count": 1, "now": {"_count": 1}}, "waiting": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "its": {"_count": 2, "But": {"_count": 1}, "I": {"_count": 1}}, "between": {"_count": 1, "you": {"_count": 1}}, "fishy": {"_count": 1, "about": {"_count": 1}}, "good": {"_count": 1, "he": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "useful": {"_count": 2, "Snape": {"_count": 1}, "in": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "under": {"_count": 1, "\u2018Exceeds": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "mattered": {"_count": 2, "except": {"_count": 2}}, "Dumbledore": {"_count": 1, "kill": {"_count": 1}}, "Fudge": {"_count": 1, "was": {"_count": 1}}, "Narcissa": {"_count": 1, "seemed": {"_count": 1}}, "keeping": {"_count": 1, "his": {"_count": 1}}, "this": {"_count": 1, "filthy": {"_count": 1}}, "The": {"_count": 1, "corridors": {"_count": 1}}, "funny": {"_count": 1, "Ginnys": {"_count": 1}}, "odd": {"_count": 1, "about": {"_count": 1}}, "blurry": {"_count": 1, "or": {"_count": 1}}, "either": {"_count": 1, "broken": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "however": {"_count": 1, "except": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "inside": {"_count": 1, "but": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "but": {"_count": 1}}, "my": {"_count": 1, "Lord": {"_count": 1}}, "blue": {"_count": 1, "there": {"_count": 1}}, "were": {"_count": 1, "five": {"_count": 1}}, "tarnish": {"_count": 1, "your": {"_count": 1}}, "moved": {"_count": 1, "except": {"_count": 1}}, "Albert": {"_count": 1, "but": {"_count": 1}}, "left": {"_count": 1, "nothing": {"_count": 1}}, "Dark": {"_count": 1, "about": {"_count": 1}}, "fancy": {"_count": 1, "on": {"_count": 1}}, "reflected": {"_count": 1, "there": {"_count": 1}}, "too": {"_count": 1, "fast": {"_count": 1}}, "flew": {"_count": 1, "through": {"_count": 1}}, "ever": {"_count": 1, "but": {"_count": 1}}, "scary": {"_count": 1, "about": {"_count": 1}}}, "cloudy": {"_count": 12, "sky": {"_count": 3, "outside": {"_count": 1}, "curves": {"_count": 1}, "which": {"_count": 1}}, "night": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "sky": {"_count": 1}}, "Mum": {"_count": 1, "": {"_count": 1}}, "gray": {"_count": 1, "": {"_count": 1}}, "tonight": {"_count": 1, "when": {"_count": 1}}, "Patronus": {"_count": 1, "vanished": {"_count": 1}}, "vapor": {"_count": 2, "rather": {"_count": 1}, "had": {"_count": 1}}}, "sky": {"_count": 155, "outside": {"_count": 15, "to": {"_count": 1}, "": {"_count": 1}, "sparkled": {"_count": 1}, "the": {"_count": 5}, "was": {"_count": 5}, "and": {"_count": 1}, "grew": {"_count": 1}}, "and": {"_count": 11, "a": {"_count": 1}, "torrential": {"_count": 1}, "lake": {"_count": 1}, "began": {"_count": 1}, "Albus": {"_count": 1}, "two": {"_count": 1}, "he": {"_count": 1}, "wide": {"_count": 1}, "listened": {"_count": 1}, "laughed": {"_count": 1}, "even": {"_count": 1}}, "the": {"_count": 3, "very": {"_count": 1}, "old": {"_count": 1}, "smell": {"_count": 1}}, "was": {"_count": 17, "quite": {"_count": 1}, "a": {"_count": 8}, "getting": {"_count": 2}, "so": {"_count": 1}, "suddenly": {"_count": 1}, "darkening": {"_count": 1}, "empty": {"_count": 1}, "visible": {"_count": 1}, "now": {"_count": 1}}, "as": {"_count": 4, "Harry": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "bright": {"_count": 1}}, "": {"_count": 43, ".": {"_count": 43}}, "to": {"_count": 2, "deliver": {"_count": 1}, "house": {"_count": 1}}, "had": {"_count": 2, "turned": {"_count": 2}}, "a": {"_count": 4, "note": {"_count": 1}, "bright": {"_count": 1}, "good": {"_count": 1}, "great": {"_count": 1}}, "became": {"_count": 1, "steadily": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "motionless": {"_count": 1, "in": {"_count": 1}}, "lightened": {"_count": 2, "suddenly": {"_count": 1}, "very": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "an": {"_count": 1}}, "from": {"_count": 2, "their": {"_count": 1}, "far": {"_count": 1}}, "overhead": {"_count": 2, "deepened": {"_count": 1}, "and": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 1, "summer": {"_count": 1}}, "every": {"_count": 2, "time": {"_count": 2}}, "here": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "blue": {"_count": 1, "badge": {"_count": 1}}, "still": {"_count": 1, "appeared": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "visible": {"_count": 4, "through": {"_count": 3}, "from": {"_count": 1}}, "above": {"_count": 5, "us": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}}, "smiled": {"_count": 1, "at": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}, "beyond": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "growing": {"_count": 1, "larger": {"_count": 1}}, "Smith": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 1, "beginning": {"_count": 1}}, "Harry": {"_count": 1, "heaved": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "which": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "stretched": {"_count": 1, "over": {"_count": 1}}, "curves": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 2, "gave": {"_count": 1}, "was": {"_count": 1}}, "until": {"_count": 1, "it": {"_count": 1}}}, "outside": {"_count": 346, "to": {"_count": 5, "suggest": {"_count": 1}, "watch": {"_count": 1}, "say": {"_count": 1}, "empty": {"_count": 1}, "give": {"_count": 1}}, "the": {"_count": 98, "door": {"_count": 12}, "kitchen": {"_count": 2}, "car": {"_count": 1}, "nearest": {"_count": 1}, "front": {"_count": 3}, "school": {"_count": 1}, "library": {"_count": 1}, "locker": {"_count": 1}, "staffroom": {"_count": 2}, "thirdfloor": {"_count": 2}, "Great": {"_count": 1}, "village": {"_count": 1}, "doors": {"_count": 2}, "station": {"_count": 2}, "pool": {"_count": 1}, "curtain": {"_count": 1}, "closet": {"_count": 1}, "window": {"_count": 11}, "class": {"_count": 1}, "Defense": {"_count": 1}, "windows": {"_count": 4}, "common": {"_count": 2}, "classroom": {"_count": 4}, "students": {"_count": 1}, "entrance": {"_count": 1}, "circle": {"_count": 1}, "time": {"_count": 4}, "fortress": {"_count": 1}, "grounds": {"_count": 1}, "walls": {"_count": 2}, "bedroom": {"_count": 1}, "world": {"_count": 1}, "room": {"_count": 2}, "gates": {"_count": 1}, "mullioned": {"_count": 1}, "Charms": {"_count": 1}, "office": {"_count": 1}, "dormitory": {"_count": 1}, "Leaky": {"_count": 1}, "inn": {"_count": 1}, "castle": {"_count": 4}, "Three": {"_count": 2}, "first": {"_count": 1}, "double": {"_count": 1}, "hospital": {"_count": 1}, "Room": {"_count": 2}, "body": {"_count": 1}, "crowded": {"_count": 1}, "mundane": {"_count": 1}, "great": {"_count": 1}, "courtrooms": {"_count": 1}, "tent": {"_count": 2}}, "was": {"_count": 6, "showing": {"_count": 1}, "scattered": {"_count": 1}, "so": {"_count": 1}, "inky": {"_count": 1}, "indigo": {"_count": 1}, "growing": {"_count": 1}}, "a": {"_count": 10, "gloomy": {"_count": 1}, "classroom": {"_count": 1}, "kind": {"_count": 1}, "large": {"_count": 2}, "fork": {"_count": 1}, "grimy": {"_count": 1}, "small": {"_count": 1}, "compartment": {"_count": 2}}, "": {"_count": 38, ".": {"_count": 36}, "!": {"_count": 1}, "?": {"_count": 1}}, "knocking": {"_count": 1, "to": {"_count": 1}}, "dropped": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 3, "Apothecary": {"_count": 1}, "apothecary": {"_count": 1}, "show": {"_count": 1}}, "Gringotts": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 7}, "case": {"_count": 1}}, "are": {"_count": 2, "behaving": {"_count": 1}, "giving": {"_count": 1}}, "classrooms": {"_count": 1, "stood": {"_count": 1}}, "stuffing": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "his": {"_count": 11, "house": {"_count": 1}, "front": {"_count": 1}, "little": {"_count": 1}, "door": {"_count": 1}, "hut": {"_count": 1}, "classroom": {"_count": 1}, "cabin": {"_count": 1}, "control": {"_count": 1}, "study": {"_count": 1}, "bedroom": {"_count": 1}, "chest": {"_count": 1}}, "and": {"_count": 9, "enjoy": {"_count": 1}, "he": {"_count": 1}, "lounged": {"_count": 1}, "her": {"_count": 1}, "several": {"_count": 1}, "Draco": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "their": {"_count": 1}}, "but": {"_count": 3, "Snape": {"_count": 1}, "before": {"_count": 1}, "into": {"_count": 1}}, "of": {"_count": 5, "school": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "Hogwarts": {"_count": 1}}, "school": {"_count": 10, "and": {"_count": 1}, "said": {"_count": 1}, "You": {"_count": 1}, "": {"_count": 3}, "while": {"_count": 1}, "sir": {"_count": 1}, "you": {"_count": 1}, "They": {"_count": 1}}, "Harrys": {"_count": 1, "window": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "sparkled": {"_count": 1, "with": {"_count": 1}}, "waiting": {"_count": 2, "for": {"_count": 2}}, "into": {"_count": 2, "the": {"_count": 2}}, "told": {"_count": 1, "him": {"_count": 1}}, "your": {"_count": 2, "front": {"_count": 1}, "window": {"_count": 1}}, "then": {"_count": 1, "Headmaster": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "again": {"_count": 5, "he": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "their": {"_count": 4, "dormitories": {"_count": 1}, "house": {"_count": 1}, "door": {"_count": 1}, "compartment": {"_count": 1}}, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}, "as": {"_count": 2, "Uncle": {"_count": 1}, "they": {"_count": 1}}, "cafes": {"_count": 1, "where": {"_count": 1}}, "Florean": {"_count": 2, "Fortescues": {"_count": 2}}, "Flourish": {"_count": 2, "and": {"_count": 2}}, "Quality": {"_count": 1, "Quidditch": {"_count": 1}}, "owls": {"_count": 1, "hooted": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "pounded": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 2, "room": {"_count": 2}}, "Honeydukes": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Bellatrix": {"_count": 1}}, "next": {"_count": 1, "second": {"_count": 1}}, "Hagrid": {"_count": 1, "croaked": {"_count": 1}}, "Hogwarts": {"_count": 6, "but": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "whod": {"_count": 1}, "who": {"_count": 1}, "what": {"_count": 1}}, "girls": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 2, "morning": {"_count": 1}, "right": {"_count": 1}}, "each": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 1, "seeing": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "tearing": {"_count": 1, "feverishly": {"_count": 1}}, "one": {"_count": 1, "door": {"_count": 1}}, "my": {"_count": 1, "office": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 2}, "he": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "number": {"_count": 3, "four": {"_count": 1}, "eleven": {"_count": 1}, "twelve": {"_count": 1}}, "our": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 1, "madhouse": {"_count": 1}}, "onto": {"_count": 1, "Uncle": {"_count": 1}}, "several": {"_count": 1, "sets": {"_count": 1}}, "Ministry": {"_count": 3, "control": {"_count": 3}}, "looking": {"_count": 1, "pale": {"_count": 1}}, "Fudges": {"_count": 1, "office": {"_count": 1}}, "lessons": {"_count": 1, "": {"_count": 1}}, "Hogsmeade": {"_count": 1, "station": {"_count": 1}}, "Snapes": {"_count": 2, "classroom": {"_count": 2}}, "class": {"_count": 1, "hours": {"_count": 1}}, "Umbridges": {"_count": 1, "window": {"_count": 1}}, "he": {"_count": 2, "told": {"_count": 1}, "could": {"_count": 1}}, "Scrivenshafts": {"_count": 1, "Quill": {"_count": 1}}, "muffled": {"_count": 1, "in": {"_count": 1}}, "meetings": {"_count": 1, "": {"_count": 1}}, "grew": {"_count": 2, "steadily": {"_count": 1}, "paler": {"_count": 1}}, "where": {"_count": 2, "students": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "many": {"_count": 1}}, "Molly": {"_count": 1, "Tonks": {"_count": 1}}, "Arthur": {"_count": 1, "they": {"_count": 1}}, "she": {"_count": 2, "added": {"_count": 1}, "said": {"_count": 1}}, "ten": {"_count": 1, "people": {"_count": 1}}, "Birmingham": {"_count": 1, "said": {"_count": 1}}, "help": {"_count": 1, "and": {"_count": 1}}, "these": {"_count": 1, "walls": {"_count": 1}}, "classes": {"_count": 1, "discussing": {"_count": 1}}, "Transfiguration": {"_count": 1, "than": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "Herbology": {"_count": 1, "a": {"_count": 1}}, "Potions": {"_count": 1, "a": {"_count": 1}}, "past": {"_count": 1, "midnight": {"_count": 1}}, "Umb": {"_count": 1, "ridges": {"_count": 1}}, "Madam": {"_count": 2, "Malkins": {"_count": 1}, "Puddifoots": {"_count": 1}}, "carrying": {"_count": 1, "an": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "either": {"_count": 1, "already": {"_count": 1}}, "ledge": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 2, "legs": {"_count": 1}, "range": {"_count": 1}}, "were": {"_count": 1, "deserted": {"_count": 1}}, "now": {"_count": 1, "the": {"_count": 1}}, "increased": {"_count": 1, "the": {"_count": 1}}, "We": {"_count": 1, "know": {"_count": 1}}, "world": {"_count": 1, "for": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "with": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "air": {"_count": 1, "it": {"_count": 1}}, "Harry": {"_count": 1, "glanced": {"_count": 1}}, "grunted": {"_count": 1, "Goyle": {"_count": 1}}}, "suggest": {"_count": 40, "that": {"_count": 14, "strange": {"_count": 1}, "he": {"_count": 2}, "they": {"_count": 4}, "such": {"_count": 1}, "you": {"_count": 3}, "it": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}}, "you": {"_count": 9, "all": {"_count": 2}, "make": {"_count": 1}, "look": {"_count": 1}, "go": {"_count": 2}, "take": {"_count": 1}, "both": {"_count": 1}, "ask": {"_count": 1}}, "Headmaster": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "pair": {"_count": 1}}, "a": {"_count": 2, "Conjunctivitis": {"_count": 1}, "term": {"_count": 1}}, "to": {"_count": 3, "him": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "hes": {"_count": 2, "hurt": {"_count": 1}, "not": {"_count": 1}}, "his": {"_count": 1, "disbelief": {"_count": 1}}, "we": {"_count": 2, "press": {"_count": 1}, "establish": {"_count": 1}}, "as": {"_count": 1, "some": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "what": {"_count": 1}}}, "things": {"_count": 425, "would": {"_count": 2, "soon": {"_count": 1}, "happen": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 61, "?": {"_count": 15}, ".": {"_count": 41}, "!": {"_count": 5}}, "to": {"_count": 17, "stop": {"_count": 1}, "happen": {"_count": 1}, "say": {"_count": 1}, "the": {"_count": 1}, "help": {"_count": 1}, "Mr": {"_count": 1}, "think": {"_count": 1}, "which": {"_count": 1}, "worry": {"_count": 1}, "do": {"_count": 2}, "tell": {"_count": 1}, "her": {"_count": 1}, "discuss": {"_count": 2}, "remember": {"_count": 1}, "gossip": {"_count": 1}}, "often": {"_count": 3, "happened": {"_count": 2}, "skip": {"_count": 1}}, "people": {"_count": 1, "at": {"_count": 1}}, "gray": {"_count": 1, "for": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 28, "wouldnt": {"_count": 1}, "don": {"_count": 1}, "werent": {"_count": 1}, "are": {"_count": 5}, "Harry": {"_count": 2}, "the": {"_count": 1}, "Uncle": {"_count": 1}, "he": {"_count": 1}, "have": {"_count": 1}, "wizards": {"_count": 1}, "had": {"_count": 4}, "broke": {"_count": 1}, "I": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 1}, "Dumbledore": {"_count": 1}, "Neville": {"_count": 1}, "troubled": {"_count": 1}, "moved": {"_count": 1}, "you": {"_count": 1}}, "in": {"_count": 15, "the": {"_count": 6}, "there": {"_count": 3}, "his": {"_count": 2}, "jars": {"_count": 1}, "Azkaban": {"_count": 1}, "their": {"_count": 1}, "this": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 11, "of": {"_count": 6}, "said": {"_count": 1}, "": {"_count": 1}, "onto": {"_count": 1}, "Harry": {"_count": 1}, "like": {"_count": 1}}, "he": {"_count": 15, "said": {"_count": 3}, "liked": {"_count": 1}, "was": {"_count": 3}, "had": {"_count": 3}, "should": {"_count": 2}, "did": {"_count": 1}, "could": {"_count": 1}, "would": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "happened": {"_count": 6, "": {"_count": 1}, "please": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 2}}, "happen": {"_count": 7, "when": {"_count": 1}, "": {"_count": 2}, "without": {"_count": 1}, "at": {"_count": 2}, "to": {"_count": 1}}, "from": {"_count": 5, "Gringotts": {"_count": 1}, "you": {"_count": 1}, "Snape": {"_count": 1}, "inside": {"_count": 1}, "Tom": {"_count": 1}}, "up": {"_count": 10, "a": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 2}, "for": {"_count": 2}, "during": {"_count": 1}, "there": {"_count": 1}, "wont": {"_count": 1}}, "like": {"_count": 17, "parking": {"_count": 1}, "Time": {"_count": 1}, "dont": {"_count": 1}, "plugs": {"_count": 1}, "breathing": {"_count": 1}, "What": {"_count": 1}, "that": {"_count": 5}, "A": {"_count": 1}, "Do": {"_count": 1}, "The": {"_count": 1}, "Honestly": {"_count": 1}, "betrayal": {"_count": 1}, "time": {"_count": 1}}, "outside": {"_count": 1, "them": {"_count": 1}}, "terrible": {"_count": 1, "yes": {"_count": 1}}, "friendly": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 7, "had": {"_count": 2}, "didnt": {"_count": 2}, "before": {"_count": 1}, "could": {"_count": 1}, "deduced": {"_count": 1}}, "worth": {"_count": 2, "knowing": {"_count": 1}, "dying": {"_count": 1}}, "this": {"_count": 1, "tells": {"_count": 1}}, "you": {"_count": 7, "cant": {"_count": 1}, "dont": {"_count": 2}, "can": {"_count": 1}, "shouldnt": {"_count": 2}, "tell": {"_count": 1}}, "over": {"_count": 5, "and": {"_count": 1}, "whenever": {"_count": 1}, "in": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}}, "guarding": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 3, "wanted": {"_count": 1}, "dont": {"_count": 1}, "had": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "here": {"_count": 2, "really": {"_count": 1}, "I": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "friendship": {"_count": 1, "and": {"_count": 1}}, "most": {"_count": 1, "human": {"_count": 1}}, "Id": {"_count": 1, "like": {"_count": 1}}, "I": {"_count": 4, "want": {"_count": 1}, "forgot": {"_count": 1}, "need": {"_count": 1}, "would": {"_count": 1}}, "were": {"_count": 9, "going": {"_count": 1}, "getting": {"_count": 1}, "so": {"_count": 1}, "looking": {"_count": 1}, "done": {"_count": 1}, "they": {"_count": 1}, "illegal": {"_count": 1}, "linked": {"_count": 1}, "different": {"_count": 1}}, "and": {"_count": 6, "passing": {"_count": 1}, "throw": {"_count": 1}, "headed": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "turning": {"_count": 1}}, "they": {"_count": 5, "think": {"_count": 1}, "are": {"_count": 1}, "all": {"_count": 1}, "could": {"_count": 1}, "can": {"_count": 1}}, "our": {"_count": 1, "lot": {"_count": 1}}, "secondhand": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "too": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "ending": {"_count": 1, "with": {"_count": 1}}, "hes": {"_count": 3, "done": {"_count": 1}, "seen": {"_count": 1}, "stealing": {"_count": 1}}, "weird": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 8, "to": {"_count": 1}, "getting": {"_count": 1}, "called": {"_count": 1}, "run": {"_count": 1}, "going": {"_count": 1}, "happening": {"_count": 1}, "you": {"_count": 1}, "important": {"_count": 1}}, "could": {"_count": 1, "go": {"_count": 1}}, "another": {"_count": 1, "very": {"_count": 1}}, "Albus": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 7, "Harry": {"_count": 1}, "Ludo": {"_count": 2}, "the": {"_count": 1}, "discovering": {"_count": 1}, "old": {"_count": 1}, "Ginny": {"_count": 1}}, "Ive": {"_count": 2, "found": {"_count": 1}, "never": {"_count": 1}}, "straight": {"_count": 1, "before": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 1}, "you": {"_count": 1}, "years": {"_count": 1}, "myself": {"_count": 1}}, "those": {"_count": 1, "dementors": {"_count": 1}}, "away": {"_count": 4, "and": {"_count": 1}, "under": {"_count": 1}, "": {"_count": 2}}, "ten": {"_count": 1, "times": {"_count": 1}}, "first": {"_count": 1, "what": {"_count": 1}}, "the": {"_count": 4, "others": {"_count": 1}, "right": {"_count": 1}, "Ministrys": {"_count": 1}, "knowledge": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "aside": {"_count": 1, "he": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "big": {"_count": 1, "enough": {"_count": 1}}, "have": {"_count": 3, "happened": {"_count": 1}, "been": {"_count": 2}}, "said": {"_count": 4, "Harry": {"_count": 1}, "Ginny": {"_count": 2}, "Aberforth": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "Frank": {"_count": 1, "had": {"_count": 1}}, "fizzy": {"_count": 1, "drinks": {"_count": 1}}, "obviously": {"_count": 1, "so": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "Mr": {"_count": 1, "Bagman": {"_count": 1}}, "mean": {"_count": 1, "": {"_count": 1}}, "worse": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 4, "their": {"_count": 1}, "his": {"_count": 2}, "your": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "added": {"_count": 1}}, "under": {"_count": 1, "its": {"_count": 1}}, "during": {"_count": 1, "lessons": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "happening": {"_count": 1, "to": {"_count": 1}}, "thrown": {"_count": 1, "at": {"_count": 1}}, "Professor": {"_count": 1, "GrubblyPlank": {"_count": 1}}, "around": {"_count": 1, "as": {"_count": 1}}, "flying": {"_count": 1, "across": {"_count": 1}}, "sir": {"_count": 1, "he": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "without": {"_count": 1, "being": {"_count": 1}}, "but": {"_count": 2, "all": {"_count": 1}, "that": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "dont": {"_count": 1, "work": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "left": {"_count": 3, "in": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}}, "keep": {"_count": 1, "calling": {"_count": 1}}, "Plumbers": {"_count": 1, "": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}, "pulling": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 1, "happened": {"_count": 1}}, "seething": {"_count": 1, "": {"_count": 1}}, "quite": {"_count": 1, "plain": {"_count": 1}}, "yourselves": {"_count": 1, "but": {"_count": 1}}, "as": {"_count": 6, "the": {"_count": 3}, "long": {"_count": 1}, "interestingly": {"_count": 1}, "Invisibility": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "Peeves": {"_count": 1}, "your": {"_count": 1}}, "sustained": {"_count": 1, "Harry": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "might": {"_count": 1, "have": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "themselves": {"_count": 1, "and": {"_count": 1}}, "weve": {"_count": 1, "done": {"_count": 1}}, "girls": {"_count": 1, "do": {"_count": 1}}, "That": {"_count": 1, "said": {"_count": 1}}, "anyway": {"_count": 1, "because": {"_count": 1}}, "more": {"_count": 1, "importan": {"_count": 1}}, "kept": {"_count": 1, "happening": {"_count": 1}}, "actually": {"_count": 1, "works": {"_count": 1}}, "toppling": {"_count": 1, "grandfather": {"_count": 1}}, "much": {"_count": 1, "worse": {"_count": 1}}, "was": {"_count": 1, "no": {"_count": 1}}, "pellmell": {"_count": 1, "into": {"_count": 1}}, "off": {"_count": 1, "us": {"_count": 1}}, "myself": {"_count": 1, "No": {"_count": 1}}, "Luna": {"_count": 1, "often": {"_count": 1}}, "funny": {"_count": 1, "things": {"_count": 1}}, "move": {"_count": 1, "without": {"_count": 1}}, "got": {"_count": 1, "out": {"_count": 1}}, "grabbed": {"_count": 1, "Harry": {"_count": 1}}, "behind": {"_count": 1, "Harry": {"_count": 1}}, "sometimes": {"_count": 1, "doesnt": {"_count": 1}}, "private": {"_count": 1, "said": {"_count": 1}}, "youve": {"_count": 1, "said": {"_count": 1}}, "level": {"_count": 1, "but": {"_count": 1}}, "become": {"_count": 1, "murkier": {"_count": 1}}, "There": {"_count": 1, "were": {"_count": 1}}, "suggest": {"_count": 1, "to": {"_count": 1}}, "apparently": {"_count": 1, "they": {"_count": 1}}, "than": {"_count": 1, "physical": {"_count": 1}}, "nor": {"_count": 1, "did": {"_count": 1}}, "matter": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "it": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "": {"_count": 1}}, "infecting": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}, "wizards": {"_count": 1, "dont": {"_count": 1}}, "Hermione": {"_count": 1, "dawdling": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "bad": {"_count": 1, "for": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "theres": {"_count": 1, "nothing": {"_count": 1}}}, "soon": {"_count": 195, "be": {"_count": 8, "happening": {"_count": 1}, "over": {"_count": 1}, "back": {"_count": 2}, "out": {"_count": 1}, "beyond": {"_count": 1}, "shivering": {"_count": 1}, "in": {"_count": 1}}, "I": {"_count": 2, "expect": {"_count": 2}}, "as": {"_count": 30, "he": {"_count": 7}, "hed": {"_count": 1}, "possible": {"_count": 9}, "you": {"_count": 1}, "Ive": {"_count": 1}, "they": {"_count": 1}, "Macnair": {"_count": 1}, "I": {"_count": 6}, "we": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 24}, "!": {"_count": 1}, "?": {"_count": 1}}, "Harry": {"_count": 5, "": {"_count": 2}, "said": {"_count": 2}, "told": {"_count": 1}}, "find": {"_count": 2, "out": {"_count": 2}}, "realized": {"_count": 1, "they": {"_count": 1}}, "when": {"_count": 1, "youve": {"_count": 1}}, "thick": {"_count": 1, "with": {"_count": 1}}, "far": {"_count": 1, "behind": {"_count": 1}}, "he": {"_count": 5, "was": {"_count": 2}, "would": {"_count": 2}, "said": {"_count": 1}}, "enough": {"_count": 9, "": {"_count": 4}, "anyway": {"_count": 1}, "said": {"_count": 1}, "Hermione": {"_count": 1}, "but": {"_count": 1}, "too": {"_count": 1}}, "crashing": {"_count": 1, "through": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 2}}, "she": {"_count": 2, "was": {"_count": 2}}, "there": {"_count": 1, "was": {"_count": 1}}, "forget": {"_count": 1, "the": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "well": {"_count": 1, "be": {"_count": 1}}, "coming": {"_count": 1, "over": {"_count": 1}}, "twenty": {"_count": 1, "feet": {"_count": 1}}, "Pettigrew": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 2, "long": {"_count": 2}}, "back": {"_count": 1, "in": {"_count": 1}}, "Yours": {"_count": 1, "sincerely": {"_count": 1}}, "Ron": {"_count": 1, "Calm": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "tugging": {"_count": 1, "on": {"_count": 1}}, "caught": {"_count": 1, "up": {"_count": 1}}, "arguing": {"_count": 1, "enjoyably": {"_count": 1}}, "see": {"_count": 1, "growled": {"_count": 1}}, "stowing": {"_count": 1, "their": {"_count": 1}}, "immersed": {"_count": 1, "in": {"_count": 1}}, "know": {"_count": 1, "": {"_count": 1}}, "striding": {"_count": 1, "across": {"_count": 1}}, "yelling": {"_count": 1, "Don": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "leg": {"_count": 1}}, "have": {"_count": 2, "had": {"_count": 1}, "spent": {"_count": 1}}, "swum": {"_count": 1, "so": {"_count": 1}}, "saw": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 4, "dwellings": {"_count": 1}, "Hogwarts": {"_count": 1}, "whistle": {"_count": 1}, "vein": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "filled": {"_count": 2, "his": {"_count": 1}, "all": {"_count": 1}}, "mastered": {"_count": 1, "the": {"_count": 1}}, "died": {"_count": 1, "away": {"_count": 1}}, "Macnair": {"_count": 1, "": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "soon": {"_count": 1}}, "came": {"_count": 2, "within": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 4, "in": {"_count": 1}, "finish": {"_count": 1}, "partly": {"_count": 1}, "it": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "were": {"_count": 1, "definitely": {"_count": 1}}, "left": {"_count": 1, "most": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "swallowed": {"_count": 1, "up": {"_count": 1}}, "said": {"_count": 2, "Fred": {"_count": 1}, "Mrs": {"_count": 1}}, "devised": {"_count": 1, "a": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "released": {"_count": 1, "him": {"_count": 1}}, "crack": {"_count": 1, "under": {"_count": 1}}, "expect": {"_count": 1, "him": {"_count": 1}}, "need": {"_count": 1, "a": {"_count": 1}}, "Ritas": {"_count": 1, "interview": {"_count": 1}}, "centaurs": {"_count": 1, "may": {"_count": 1}}, "wish": {"_count": 1, "hed": {"_count": 1}}, "become": {"_count": 1, "the": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "mate": {"_count": 1, "said": {"_count": 1}}, "discovered": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "opened": {"_count": 2, "up": {"_count": 1}, "into": {"_count": 1}}, "felt": {"_count": 1, "both": {"_count": 1}}, "became": {"_count": 1, "clear": {"_count": 1}}, "after": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "vanish": {"_count": 1, "from": {"_count": 1}}, "Riddle": {"_count": 1, "learned": {"_count": 1}}, "given": {"_count": 1, "particular": {"_count": 1}}, "And": {"_count": 1, "what": {"_count": 1}}, "He": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "regular": {"_count": 1}}, "to": {"_count": 1, "emerge": {"_count": 1}}, "really": {"_count": 1, "soon": {"_count": 1}}, "transpired": {"_count": 1, "were": {"_count": 1}}, "ensured": {"_count": 1, "that": {"_count": 1}}, "spill": {"_count": 1, "over": {"_count": 1}}, "her": {"_count": 1, "brightness": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "too": {"_count": 1, "Ron": {"_count": 1}}, "opening": {"_count": 1, "another": {"_count": 1}}, "they": {"_count": 1, "arrived": {"_count": 1}}, "would": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "next": {"_count": 1}}}, "happening": {"_count": 77, "all": {"_count": 1, "over": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "while": {"_count": 1, "we": {"_count": 1}}, "Ron": {"_count": 2, "was": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 19, "?": {"_count": 5}, ".": {"_count": 12}, "!": {"_count": 2}}, "as": {"_count": 1, "soon": {"_count": 1}}, "in": {"_count": 4, "Ouagadougou": {"_count": 1}, "the": {"_count": 2}, "Umbridge": {"_count": 1}}, "already": {"_count": 1, "and": {"_count": 1}}, "within": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "now": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "could": {"_count": 1}}, "inside": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}}, "at": {"_count": 9, "Hogwarts": {"_count": 8}, "the": {"_count": 1}}, "the": {"_count": 1, "Irish": {"_count": 1}}, "below": {"_count": 3, "because": {"_count": 1}, "alert": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "to": {"_count": 1}, "why": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "to": {"_count": 9, "him": {"_count": 2}, "come": {"_count": 1}, "Zacharias": {"_count": 1}, "Hermione": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}, "everyones": {"_count": 1}, "you": {"_count": 1}}, "lately": {"_count": 1, "hasnt": {"_count": 1}}, "saw": {"_count": 1, "him": {"_count": 1}}, "fast": {"_count": 1, "enough": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "quickly": {"_count": 1, "enough": {"_count": 1}}, "elsewhere": {"_count": 1, "": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "regularly": {"_count": 1, "over": {"_count": 1}}, "about": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "all": {"_count": 1}}, "Here": {"_count": 1, "we": {"_count": 1}}}, "all": {"_count": 3935, "over": {"_count": 153, "the": {"_count": 74}, "Britain": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 17}, "Gryffindor": {"_count": 1}, "people": {"_count": 1}, "": {"_count": 11}, "said": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 1}, "at": {"_count": 1}, "it": {"_count": 8}, "he": {"_count": 1}, "my": {"_count": 2}, "Harry": {"_count": 1}, "wiv": {"_count": 1}, "Harrys": {"_count": 1}, "again": {"_count": 11}, "their": {"_count": 4}, "her": {"_count": 1}, "horror": {"_count": 1}, "until": {"_count": 1}, "from": {"_count": 2}, "goose": {"_count": 1}, "me": {"_count": 1}, "Ron": {"_count": 1}, "Hogsmeade": {"_count": 1}, "him": {"_count": 2}, "thought": {"_count": 1}, "and": {"_count": 2}}, "why": {"_count": 2, "that": {"_count": 1}, "they": {"_count": 1}}, "about": {"_count": 64, "the": {"_count": 11}, "Mrs": {"_count": 1}, "Hogwarts": {"_count": 1}, "having": {"_count": 1}, "you": {"_count": 5}, "your": {"_count": 1}, "their": {"_count": 1}, "Charlies": {"_count": 1}, "it": {"_count": 2}, "them": {"_count": 4}, "Dobby": {"_count": 2}, "": {"_count": 3}, "Muggles": {"_count": 2}, "Mr": {"_count": 2}, "my": {"_count": 1}, "how": {"_count": 2}, "Black": {"_count": 1}, "his": {"_count": 1}, "playing": {"_count": 1}, "Harry": {"_count": 1}, "Snape": {"_count": 1}, "that": {"_count": 1}, "me": {"_count": 1}, "three": {"_count": 1}, "her": {"_count": 3}, "fifty": {"_count": 1}, "Patronuses": {"_count": 1}, "giving": {"_count": 1}, "Lupins": {"_count": 1}, "Horcruxes": {"_count": 1}, "trying": {"_count": 2}, "stopping": {"_count": 1}, "R": {"_count": 1}, "wandwork": {"_count": 1}, "Voldemort": {"_count": 1}, "Kreacher": {"_count": 1}, "protective": {"_count": 1}}, "the": {"_count": 490, "same": {"_count": 31}, "people": {"_count": 4}, "things": {"_count": 4}, "way": {"_count": 55}, "times": {"_count": 2}, "cats": {"_count": 1}, "time": {"_count": 55}, "green": {"_count": 1}, "toys": {"_count": 1}, "letters": {"_count": 1}, "hair": {"_count": 2}, "dog": {"_count": 1}, "ordinary": {"_count": 1}, "course": {"_count": 1}, "Weasleys": {"_count": 4}, "spells": {"_count": 2}, "chances": {"_count": 1}, "staring": {"_count": 3}, "strange": {"_count": 1}, "armchairs": {"_count": 1}, "points": {"_count": 1}, "last": {"_count": 1}, "Chasers": {"_count": 1}, "confusion": {"_count": 1}, "Slytherins": {"_count": 5}, "curtains": {"_count": 3}, "extra": {"_count": 2}, "trouble": {"_count": 3}, "right": {"_count": 1}, "trees": {"_count": 1}, "triumphant": {"_count": 1}, "thumbsup": {"_count": 1}, "odd": {"_count": 1}, "difference": {"_count": 4}, "Lockharts": {"_count": 1}, "Lockhart": {"_count": 1}, "first": {"_count": 1}, "Squibs": {"_count": 1}, "ingredients": {"_count": 2}, "teachers": {"_count": 6}, "muttering": {"_count": 2}, "credit": {"_count": 1}, "Mudblood": {"_count": 1}, "gold": {"_count": 2}, "witches": {"_count": 1}, "stuff": {"_count": 5}, "answers": {"_count": 2}, "good": {"_count": 5}, "film": {"_count": 1}, "students": {"_count": 7}, "Dark": {"_count": 1}, "blame": {"_count": 1}, "unusual": {"_count": 1}, "tombs": {"_count": 1}, "fuss": {"_count": 2}, "fun": {"_count": 1}, "thing": {"_count": 1}, "doors": {"_count": 2}, "Muggles": {"_count": 3}, "lamps": {"_count": 2}, "other": {"_count": 7}, "books": {"_count": 3}, "Gryffindors": {"_count": 2}, "secret": {"_count": 1}, "happiness": {"_count": 2}, "boys": {"_count": 2}, "while": {"_count": 10}, "noise": {"_count": 7}, "work": {"_count": 2}, "entrances": {"_count": 1}, "help": {"_count": 2}, "strength": {"_count": 2}, "makings": {"_count": 1}, "precautions": {"_count": 1}, "police": {"_count": 1}, "bones": {"_count": 4}, "order": {"_count": 1}, "arrangements": {"_count": 1}, "atmosphere": {"_count": 1}, "details": {"_count": 2}, "best": {"_count": 2}, "Gringotts": {"_count": 1}, "money": {"_count": 1}, "magic": {"_count": 1}, "preparation": {"_count": 1}, "stops": {"_count": 1}, "Hufflepuffs": {"_count": 1}, "Beauxbatons": {"_count": 1}, "candles": {"_count": 1}, "applause": {"_count": 1}, "notice": {"_count": 2}, "attention": {"_count": 4}, "different": {"_count": 1}, "champions": {"_count": 1}, "palefaced": {"_count": 1}, "leaflet": {"_count": 1}, "laughter": {"_count": 1}, "wind": {"_count": 1}, "girls": {"_count": 2}, "screechy": {"_count": 1}, "food": {"_count": 1}, "tables": {"_count": 2}, "wailing": {"_count": 1}, "Bulgarians": {"_count": 1}, "taps": {"_count": 2}, "echoes": {"_count": 1}, "bubbles": {"_count": 1}, "remaining": {"_count": 2}, "hostages": {"_count": 2}, "usual": {"_count": 2}, "goblin": {"_count": 1}, "hexes": {"_count": 1}, "blood": {"_count": 2}, "curious": {"_count": 1}, "kerfuffle": {"_count": 1}, "mess": {"_count": 1}, "crooks": {"_count": 1}, "facts": {"_count": 1}, "overflowing": {"_count": 1}, "mad": {"_count": 1}, "envelopes": {"_count": 1}, "Houses": {"_count": 2}, "rubbish": {"_count": 1}, "questions": {"_count": 1}, "robes": {"_count": 1}, "jauntiness": {"_count": 1}, "tasks": {"_count": 1}, "evidence": {"_count": 3}, "Ministry": {"_count": 2}, "hats": {"_count": 1}, "clothes": {"_count": 1}, "Sneakoscopes": {"_count": 1}, "members": {"_count": 3}, "faces": {"_count": 2}, "dusty": {"_count": 1}, "racket": {"_count": 1}, "counterjinxes": {"_count": 2}, "others": {"_count": 3}, "passengers": {"_count": 1}, "information": {"_count": 2}, "conversation": {"_count": 1}, "meeting": {"_count": 1}, "words": {"_count": 1}, "uproar": {"_count": 1}, "world": {"_count": 1}, "Easter": {"_count": 1}, "signs": {"_count": 1}, "career": {"_count": 1}, "owls": {"_count": 2}, "peculiar": {"_count": 1}, "Occlumency": {"_count": 1}, "school": {"_count": 1}, "pairs": {"_count": 1}, "moment": {"_count": 1}, "breath": {"_count": 2}, "Death": {"_count": 2}, "crashes": {"_count": 1}, "fireplaces": {"_count": 1}, "portraits": {"_count": 2}, "hallmarks": {"_count": 1}, "ridiculing": {"_count": 1}, "rest": {"_count": 5}, "terrible": {"_count": 2}, "Prime": {"_count": 1}, "kitchen": {"_count": 1}, "panic": {"_count": 1}, "dust": {"_count": 1}, "Chosen": {"_count": 1}, "publicity": {"_count": 1}, "previous": {"_count": 1}, "effect": {"_count": 1}, "sensitivity": {"_count": 1}, "stupid": {"_count": 1}, "brown": {"_count": 1}, "competition": {"_count": 1}, "rejected": {"_count": 1}, "tentaclelike": {"_count": 1}, "fight": {"_count": 1}, "yelling": {"_count": 1}, "whole": {"_count": 1}, "assistance": {"_count": 1}, "ugliest": {"_count": 1}, "wine": {"_count": 1}, "bandaging": {"_count": 1}, "staff": {"_count": 1}, "inky": {"_count": 1}, "temptation": {"_count": 2}, "suffering": {"_count": 1}, "luck": {"_count": 1}, "clutter": {"_count": 2}, "Felix": {"_count": 1}, "boxes": {"_count": 1}, "glory": {"_count": 1}, "highlights": {"_count": 1}, "protection": {"_count": 1}, "underage": {"_count": 1}, "instruction": {"_count": 1}, "guests": {"_count": 1}, "general": {"_count": 1}, "goodlooking": {"_count": 1}, "Formica": {"_count": 1}, "change": {"_count": 1}, "debris": {"_count": 1}, "ornaments": {"_count": 1}, "potion": {"_count": 2}, "purebloods": {"_count": 1}, "easier": {"_count": 1}, "valuables": {"_count": 1}, "authority": {"_count": 1}, "marks": {"_count": 1}, "rules": {"_count": 1}, "missing": {"_count": 1}, "tawdry": {"_count": 1}, "atrocities": {"_count": 1}, "sweaters": {"_count": 1}, "pebbles": {"_count": 1}, "wreckage": {"_count": 1}, "inmates": {"_count": 1}, "programs": {"_count": 1}, "alleged": {"_count": 1}, "hard": {"_count": 1}, "difficulties": {"_count": 1}, "old": {"_count": 1}, "discordant": {"_count": 1}, "windows": {"_count": 1}, "screaming": {"_count": 1}, "surrounding": {"_count": 1}, "harder": {"_count": 1}, "Horcruxes": {"_count": 1}, "force": {"_count": 1}}, "upset": {"_count": 4, "at": {"_count": 1}, "like": {"_count": 1}, "that": {"_count": 1}, "about": {"_count": 1}}, "they": {"_count": 13, "normally": {"_count": 1}, "got": {"_count": 1}, "wanted": {"_count": 1}, "knew": {"_count": 1}, "were": {"_count": 1}, "want": {"_count": 1}, "see": {"_count": 1}, "could": {"_count": 3}, "do": {"_count": 1}, "had": {"_count": 2}}, "this": {"_count": 73, "have": {"_count": 1}, "in": {"_count": 4}, "for": {"_count": 1}, "about": {"_count": 4}, "very": {"_count": 2}, "would": {"_count": 1}, "noise": {"_count": 3}, "time": {"_count": 8}, "stuff": {"_count": 3}, "whats": {"_count": 1}, "": {"_count": 11}, "yesterday": {"_count": 1}, "pureblood": {"_count": 1}, "commotion": {"_count": 1}, "unpleasantness": {"_count": 1}, "stuffs": {"_count": 1}, "doesnt": {"_count": 1}, "talking": {"_count": 1}, "merits": {"_count": 1}, "had": {"_count": 1}, "year": {"_count": 1}, "fuss": {"_count": 1}, "from": {"_count": 1}, "secrecy": {"_count": 1}, "hysteria": {"_count": 1}, "do": {"_count": 1}, "worry": {"_count": 1}, "easily": {"_count": 1}, "they": {"_count": 1}, "years": {"_count": 1}, "to": {"_count": 1}, "garbage": {"_count": 1}, "bad": {"_count": 1}, "trouble": {"_count": 1}, "a": {"_count": 1}, "chilly": {"_count": 1}, "mist": {"_count": 1}, "we": {"_count": 1}, "Dumbledore": {"_count": 1}, "uncertainty": {"_count": 1}, "\u2018Chosen": {"_count": 1}, "hard": {"_count": 1}, "hidden": {"_count": 1}, "junk": {"_count": 1}, "mess": {"_count": 1}}, "": {"_count": 333, ".": {"_count": 274}, "?": {"_count": 27}, "!": {"_count": 32}}, "day": {"_count": 27, "said": {"_count": 3}, "for": {"_count": 2}, "": {"_count": 11}, "long": {"_count": 1}, "and": {"_count": 3}, "weve": {"_count": 1}, "was": {"_count": 1}, "without": {"_count": 1}, "waiting": {"_count": 1}, "I": {"_count": 1}, "does": {"_count": 1}, "in": {"_count": 1}}, "right": {"_count": 315, "she": {"_count": 4}, "Voldemort": {"_count": 1}, "before": {"_count": 2}, "": {"_count": 131}, "Harry": {"_count": 16}, "if": {"_count": 7}, "up": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 8}, "thanks": {"_count": 1}, "talk": {"_count": 1}, "Hermione": {"_count": 2}, "and": {"_count": 5}, "said": {"_count": 36}, "its": {"_count": 1}, "will": {"_count": 1}, "Mum": {"_count": 1}, "hes": {"_count": 3}, "for": {"_count": 4}, "in": {"_count": 2}, "all": {"_count": 3}, "He": {"_count": 2}, "again": {"_count": 1}, "Crookshanks": {"_count": 1}, "Mr": {"_count": 1}, "Potter": {"_count": 2}, "I": {"_count": 4}, "but": {"_count": 4}, "then": {"_count": 12}, "with": {"_count": 3}, "Mrs": {"_count": 1}, "taking": {"_count": 1}, "Professor": {"_count": 3}, "sonny": {"_count": 1}, "are": {"_count": 1}, "Neville": {"_count": 1}, "George": {"_count": 1}, "Hagrid": {"_count": 1}, "really": {"_count": 1}, "dont": {"_count": 2}, "son": {"_count": 1}, "now": {"_count": 2}, "arry": {"_count": 1}, "Tonks": {"_count": 1}, "you": {"_count": 1}, "though": {"_count": 1}, "Ive": {"_count": 1}, "we": {"_count": 2}, "the": {"_count": 1}, "because": {"_count": 1}, "why": {"_count": 1}, "or": {"_count": 1}, "Arthur": {"_count": 1}, "Draco": {"_count": 2}, "out": {"_count": 1}, "wont": {"_count": 1}, "111": {"_count": 1}, "at": {"_count": 1}, "havent": {"_count": 1}, "Argus": {"_count": 1}, "Ill": {"_count": 1}, "come": {"_count": 1}, "dear": {"_count": 1}, "didnt": {"_count": 1}, "Im": {"_count": 1}, "sir": {"_count": 1}, "panted": {"_count": 1}, "blustered": {"_count": 1}, "well": {"_count": 1}, "theyre": {"_count": 1}, "shaken": {"_count": 1}, "giant": {"_count": 1}, "youre": {"_count": 1}, "She": {"_count": 1}, "Selwyn": {"_count": 1}, "weve": {"_count": 1}, "Ginny": {"_count": 1}, "murmured": {"_count": 1}}, "gets": {"_count": 1, "so": {"_count": 1}}, "hes": {"_count": 1, "done": {"_count": 1}}, "places": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 68, "until": {"_count": 1}, "another": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 7}, "Im": {"_count": 1}, "Muggle": {"_count": 1}, "when": {"_count": 1}, "Potter": {"_count": 1}, "water": {"_count": 1}, "one": {"_count": 1}, "stuff": {"_count": 4}, "but": {"_count": 2}, "the": {"_count": 2}, "remains": {"_count": 1}, "Hermione": {"_count": 2}, "about": {"_count": 4}, "of": {"_count": 1}, "lots": {"_count": 1}, "noise": {"_count": 1}, "sustained": {"_count": 1}, "happened": {"_count": 2}, "came": {"_count": 2}, "Bagman": {"_count": 1}, "might": {"_count": 1}, "was": {"_count": 3}, "sort": {"_count": 1}, "we": {"_count": 1}, "relieved": {"_count": 1}, "had": {"_count": 1}, "magic": {"_count": 1}, "way": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 2}, "and": {"_count": 1}, "wasnt": {"_count": 1}, "time": {"_count": 1}, "I": {"_count": 1}, "persecution": {"_count": 1}, "to": {"_count": 1}, "Ive": {"_count": 1}, "tosh": {"_count": 1}, "were": {"_count": 1}, "quickwitted": {"_count": 1}, "for": {"_count": 1}, "has": {"_count": 1}, "you": {"_count": 1}, "from": {"_count": 1}, "drew": {"_count": 1}}, "very": {"_count": 15, "sad": {"_count": 1}, "impressed": {"_count": 1}, "well": {"_count": 4}, "strange": {"_count": 1}, "malevolently": {"_count": 1}, "late": {"_count": 1}, "mixed": {"_count": 1}, "fine": {"_count": 1}, "good": {"_count": 1}, "odd": {"_count": 1}, "long": {"_count": 1}, "interesting": {"_count": 1}}, "Dudleys": {"_count": 2, "birthday": {"_count": 1}, "favorite": {"_count": 1}}, "he": {"_count": 64, "had": {"_count": 12}, "wanted": {"_count": 1}, "is": {"_count": 1}, "could": {"_count": 17}, "managed": {"_count": 1}, "needed": {"_count": 3}, "knew": {"_count": 6}, "was": {"_count": 4}, "moved": {"_count": 1}, "felt": {"_count": 3}, "informed": {"_count": 1}, "headed": {"_count": 1}, "lifted": {"_count": 1}, "ever": {"_count": 1}, "just": {"_count": 2}, "can": {"_count": 1}, "Harry": {"_count": 1}, "meant": {"_count": 1}, "did": {"_count": 1}, "cared": {"_count": 2}, "who": {"_count": 1}, "longed": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 24, "youll": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 4}, "it": {"_count": 1}, "Im": {"_count": 2}, "as": {"_count": 1}, "merely": {"_count": 1}, "given": {"_count": 1}, "he": {"_count": 3}, "I": {"_count": 1}, "Harry": {"_count": 2}, "after": {"_count": 1}, "still": {"_count": 1}, "heard": {"_count": 1}, "the": {"_count": 1}, "shell": {"_count": 1}, "eventually": {"_count": 1}}, "had": {"_count": 3, "taken": {"_count": 1}, "not": {"_count": 1}, "gone": {"_count": 1}}, "hed": {"_count": 3, "tried": {"_count": 1}, "never": {"_count": 1}, "heard": {"_count": 1}}, "too": {"_count": 5, "good": {"_count": 1}, "aware": {"_count": 1}, "soon": {"_count": 1}, "interested": {"_count": 1}, "often": {"_count": 1}}, "along": {"_count": 31, "the": {"_count": 11}, "": {"_count": 7}, "where": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 4}, "now": {"_count": 1}, "and": {"_count": 1}, "youre": {"_count": 1}, "I": {"_count": 1}, "The": {"_count": 1}, "it": {"_count": 1}}, "sorts": {"_count": 26, "of": {"_count": 24}, "at": {"_count": 1}, "she": {"_count": 1}}, "back": {"_count": 8, "in": {"_count": 2}, "here": {"_count": 1}, "up": {"_count": 1}, "dere": {"_count": 1}, "into": {"_count": 1}, "together": {"_count": 1}, "for": {"_count": 1}}, "for": {"_count": 18, "Harry": {"_count": 1}, "the": {"_count": 4}, "it": {"_count": 2}, "giving": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 3}, "his": {"_count": 1}, "ten": {"_count": 1}, "Snape": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "keeping": {"_count": 1}}, "in": {"_count": 42, "green": {"_count": 1}, "mauve": {"_count": 1}, "a": {"_count": 3}, "here": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 6}, "case": {"_count": 1}, "being": {"_count": 1}, "all": {"_count": 2}, "my": {"_count": 3}, "Lucius": {"_count": 1}, "lighting": {"_count": 1}, "fact": {"_count": 1}, "Hogwarts": {"_count": 1}, "autumn": {"_count": 1}, "great": {"_count": 1}, "turn": {"_count": 1}, "": {"_count": 1}, "one": {"_count": 1}, "no": {"_count": 1}, "their": {"_count": 2}, "your": {"_count": 3}, "bits": {"_count": 1}, "his": {"_count": 1}, "about": {"_count": 1}, "danger": {"_count": 1}, "reasoned": {"_count": 1}, "it": {"_count": 1}, "Lily": {"_count": 1}}, "these": {"_count": 45, "people": {"_count": 4}, "years": {"_count": 8}, "attacks": {"_count": 2}, "long": {"_count": 2}, "security": {"_count": 2}, "mutant": {"_count": 1}, "around": {"_count": 1}, "things": {"_count": 2}, "Ministry": {"_count": 1}, "Dark": {"_count": 1}, "wizards": {"_count": 1}, "lives": {"_count": 1}, "hexes": {"_count": 1}, "ruddy": {"_count": 1}, "injuries": {"_count": 2}, "she": {"_count": 1}, "letters": {"_count": 1}, "whats": {"_count": 1}, "you": {"_count": 1}, "terrible": {"_count": 1}, "precautions": {"_count": 1}, "funny": {"_count": 1}, "whispers": {"_count": 1}, "potions": {"_count": 1}, "": {"_count": 2}, "old": {"_count": 1}, "reconnaissance": {"_count": 1}, "rumors": {"_count": 1}, "evenings": {"_count": 1}}, "big": {"_count": 1, "and": {"_count": 1}}, "quite": {"_count": 2, "happy": {"_count": 1}, "the": {"_count": 1}}, "bent": {"_count": 2, "because": {"_count": 1}, "their": {"_count": 1}}, "inside": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "aboard": {"_count": 1, "": {"_count": 1}}, "wondering": {"_count": 2, "where": {"_count": 1}, "what": {"_count": 1}}, "necessary": {"_count": 1, "books": {"_count": 1}}, "living": {"_count": 2, "on": {"_count": 1}, "creatures": {"_count": 1}}, "yer": {"_count": 4, "books": {"_count": 1}, "stuff": {"_count": 1}, "parents": {"_count": 1}, "valuables": {"_count": 1}}, "pupils": {"_count": 2, "clothes": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 14, "had": {"_count": 1}, "I": {"_count": 1}, "could": {"_count": 4}, "knew": {"_count": 1}, "Potter": {"_count": 1}, "and": {"_count": 1}, "Im": {"_count": 1}, "": {"_count": 1}, "do": {"_count": 1}, "walked": {"_count": 1}, "needed": {"_count": 1}}, "be": {"_count": 17, "some": {"_count": 1}, "over": {"_count": 5}, "in": {"_count": 4}, "aware": {"_count": 1}, "horrible": {"_count": 1}, "pureblood": {"_count": 1}, "so": {"_count": 1}, "down": {"_count": 1}, "gone": {"_count": 1}, "for": {"_count": 1}}, "of": {"_count": 183, "a": {"_count": 15}, "them": {"_count": 47}, "you": {"_count": 24}, "Harrys": {"_count": 2}, "us": {"_count": 13}, "whom": {"_count": 22}, "these": {"_count": 4}, "recovery": {"_count": 1}, "this": {"_count": 9}, "his": {"_count": 5}, "it": {"_count": 7}, "their": {"_count": 8}, "different": {"_count": 1}, "which": {"_count": 3}, "em": {"_count": 3}, "Mr": {"_count": 1}, "another": {"_count": 1}, "whose": {"_count": 1}, "our": {"_count": 1}, "the": {"_count": 3}, "yeh": {"_count": 1}, "Jupiters": {"_count": 1}, "that": {"_count": 1}, "Siriuss": {"_count": 1}, "Hermione": {"_count": 1}, "your": {"_count": 2}, "water": {"_count": 1}, "But": {"_count": 1}, "Hogwartss": {"_count": 1}, "those": {"_count": 1}, "my": {"_count": 1}}, "your": {"_count": 20, "equipment": {"_count": 1}, "family": {"_count": 3}, "things": {"_count": 1}, "fault": {"_count": 2}, "power": {"_count": 1}, "basic": {"_count": 1}, "new": {"_count": 1}, "books": {"_count": 1}, "might": {"_count": 1}, "savings": {"_count": 2}, "socks": {"_count": 1}, "news": {"_count": 1}, "toads": {"_count": 1}, "little": {"_count": 1}, "N": {"_count": 1}, "endeavors": {"_count": 1}}, "our": {"_count": 16, "family": {"_count": 1}, "course": {"_count": 1}, "food": {"_count": 1}, "school": {"_count": 1}, "old": {"_count": 1}, "books": {"_count": 1}, "Christmas": {"_count": 1}, "lives": {"_count": 1}, "meetings": {"_count": 1}, "champions": {"_count": 1}, "mail": {"_count": 1}, "mails": {"_count": 1}, "talks": {"_count": 1}, "precautions": {"_count": 1}, "counterarguments": {"_count": 1}, "listeners": {"_count": 1}}, "HeWho": {"_count": 1, "MustNotBeNamed": {"_count": 1}}, "as": {"_count": 5, "they": {"_count": 1}, "if": {"_count": 1}, "far": {"_count": 2}, "well": {"_count": 1}}, "their": {"_count": 25, "funny": {"_count": 1}, "extra": {"_count": 1}, "heads": {"_count": 2}, "shopping": {"_count": 2}, "trunks": {"_count": 1}, "sweets": {"_count": 1}, "money": {"_count": 1}, "gold": {"_count": 1}, "homework": {"_count": 2}, "attempts": {"_count": 1}, "O": {"_count": 1}, "scars": {"_count": 1}, "names": {"_count": 1}, "might": {"_count": 2}, "post": {"_count": 1}, "various": {"_count": 1}, "efforts": {"_count": 2}, "informers": {"_count": 1}, "plans": {"_count": 1}, "shock": {"_count": 1}}, "on": {"_count": 10, "yer": {"_count": 1}, "Cleansweep": {"_count": 1}, "the": {"_count": 3}, "YouKnow": {"_count": 1}, "your": {"_count": 1}, "ourselves": {"_count": 1}, "because": {"_count": 1}, "harder": {"_count": 1}}, "got": {"_count": 11, "punctures": {"_count": 1}, "between": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 3}, "our": {"_count": 1}, "away": {"_count": 1}, "horrible": {"_count": 1}, "some": {"_count": 1}, "code": {"_count": 1}}, "with": {"_count": 19, "flaming": {"_count": 1}, "milk": {"_count": 1}, "a": {"_count": 1}, "Harrys": {"_count": 1}, "Professor": {"_count": 2}, "red": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 2}, "those": {"_count": 1}, "his": {"_count": 1}, "Cho": {"_count": 1}, "him": {"_count": 2}, "very": {"_count": 1}, "hitherto": {"_count": 1}, "warmth": {"_count": 1}, "rather": {"_count": 1}}, "people": {"_count": 3, "Im": {"_count": 1}, "the": {"_count": 1}, "into": {"_count": 1}}, "dry": {"_count": 1, "said": {"_count": 1}}, "Harrys": {"_count": 4, "pasties": {"_count": 1}, "favorites": {"_count": 1}, "life": {"_count": 1}, "willpower": {"_count": 1}}, "worked": {"_count": 3, "for": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 1}}, "it": {"_count": 13, "was": {"_count": 3}, "looked": {"_count": 1}, "could": {"_count": 1}, "did": {"_count": 1}, "can": {"_count": 1}, "revealed": {"_count": 1}, "makes": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 1}, "seemed": {"_count": 1}, "came": {"_count": 1}}, "part": {"_count": 3, "of": {"_count": 3}}, "down": {"_count": 11, "the": {"_count": 2}, "my": {"_count": 1}, "there": {"_count": 1}, "his": {"_count": 2}, "her": {"_count": 2}, "everything": {"_count": 1}, "to": {"_count": 2}}, "three": {"_count": 49, "of": {"_count": 41}, "heads": {"_count": 1}, "Riddles": {"_count": 1}, "girls": {"_count": 1}, "kneeling": {"_count": 1}, "o": {"_count": 1}, "goal": {"_count": 1}, "Dursleys": {"_count": 1}, "objects": {"_count": 1}}, "at": {"_count": 5, "once": {"_count": 4}, "work": {"_count": 1}}, "smarten": {"_count": 1, "yourselves": {"_count": 1}}, "a": {"_count": 12, "bad": {"_count": 1}, "little": {"_count": 2}, "bit": {"_count": 1}, "finger": {"_count": 1}, "laugh": {"_count": 1}, "rather": {"_count": 1}, "shimmering": {"_count": 1}, "lot": {"_count": 1}, "famous": {"_count": 1}, "member": {"_count": 1}, "matter": {"_count": 1}}, "doing": {"_count": 2, "here": {"_count": 2}}, "here": {"_count": 3, "in": {"_count": 2}, "time": {"_count": 1}}, "there": {"_count": 5, "": {"_count": 3}, "is": {"_count": 1}, "was": {"_count": 1}}, "delicious": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 1, "for": {"_count": 1}}, "really": {"_count": 3, "pleased": {"_count": 1}, "sorry": {"_count": 1}, "the": {"_count": 1}}, "fed": {"_count": 2, "and": {"_count": 2}}, "rot": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 14, "do": {"_count": 1}, "know": {"_count": 2}, "can": {"_count": 3}, "have": {"_count": 1}, "answered": {"_count": 1}, "arent": {"_count": 1}, "need": {"_count": 1}, "ever": {"_count": 1}, "could": {"_count": 2}, "wen": {"_count": 1}}, "ducked": {"_count": 1, "": {"_count": 1}}, "scrambled": {"_count": 2, "through": {"_count": 1}, "out": {"_count": 1}}, "but": {"_count": 19, "solid": {"_count": 1}, "as": {"_count": 1}, "why": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 4}, "an": {"_count": 1}, "fidgeting": {"_count": 1}, "merely": {"_count": 1}, "wincing": {"_count": 1}, "would": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "had": {"_count": 1}, "only": {"_count": 1}, "their": {"_count": 1}}, "seemed": {"_count": 6, "to": {"_count": 6}}, "hated": {"_count": 1, "him": {"_count": 1}}, "silver": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 82, "the": {"_count": 33}, "them": {"_count": 14}, "it": {"_count": 2}, "him": {"_count": 13}, "for": {"_count": 2}, "his": {"_count": 2}, "Harry": {"_count": 2}, "Ive": {"_count": 1}, "ze": {"_count": 1}, "look": {"_count": 1}, "were": {"_count": 2}, "came": {"_count": 1}, "had": {"_count": 1}, "my": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "these": {"_count": 1}, "and": {"_count": 1}, "running": {"_count": 1}}, "copying": {"_count": 1, "that": {"_count": 1}}, "into": {"_count": 6, "pairs": {"_count": 2}, "trouble": {"_count": 1}, "dung": {"_count": 1}, "bats": {"_count": 1}, "the": {"_count": 1}}, "groan": {"_count": 1, "": {"_count": 1}}, "talk": {"_count": 1, "": {"_count": 1}}, "stupid": {"_count": 1, "with": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "my": {"_count": 30, "time": {"_count": 1}, "ruddy": {"_count": 1}, "Hogwarts": {"_count": 2}, "fault": {"_count": 12}, "school": {"_count": 1}, "customers": {"_count": 1}, "adult": {"_count": 1}, "lessons": {"_count": 1}, "life": {"_count": 2}, "devoted": {"_count": 1}, "efforts": {"_count": 1}, "dear": {"_count": 1}, "stuff": {"_count": 1}, "years": {"_count": 1}, "Building": {"_count": 1}, "dreams": {"_count": 1}, "mothers": {"_count": 1}}, "his": {"_count": 75, "dreams": {"_count": 1}, "homework": {"_count": 3}, "life": {"_count": 3}, "might": {"_count": 18}, "teeth": {"_count": 1}, "things": {"_count": 1}, "presents": {"_count": 1}, "essays": {"_count": 1}, "new": {"_count": 1}, "other": {"_count": 1}, "breathing": {"_count": 1}, "weight": {"_count": 1}, "school": {"_count": 1}, "most": {"_count": 1}, "ancestors": {"_count": 1}, "wriggling": {"_count": 1}, "cold": {"_count": 1}, "clothes": {"_count": 1}, "efforts": {"_count": 2}, "head": {"_count": 1}, "debts": {"_count": 1}, "dimwitted": {"_count": 1}, "selfcontrol": {"_count": 1}, "senses": {"_count": 3}, "problems": {"_count": 1}, "snide": {"_count": 1}, "insides": {"_count": 1}, "O": {"_count": 1}, "least": {"_count": 1}, "lessons": {"_count": 1}, "heart": {"_count": 3}, "Defense": {"_count": 1}, "faith": {"_count": 1}, "fault": {"_count": 3}, "time": {"_count": 1}, "monster": {"_count": 1}, "worldly": {"_count": 1}, "old": {"_count": 1}, "preoccupations": {"_count": 1}, "powers": {"_count": 1}, "force": {"_count": 1}, "courage": {"_count": 1}, "hope": {"_count": 1}, "strength": {"_count": 1}, "willpower": {"_count": 1}, "anger": {"_count": 1}, "determination": {"_count": 1}}, "little": {"_count": 1, "about": {"_count": 1}}, "evening": {"_count": 4, "giving": {"_count": 1}, "burst": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "forward": {"_count": 2, "": {"_count": 2}}, "six": {"_count": 1, "eyes": {"_count": 1}}, "been": {"_count": 18, "": {"_count": 2}, "dying": {"_count": 1}, "waiting": {"_count": 2}, "a": {"_count": 1}, "quick": {"_count": 1}, "hardest": {"_count": 1}, "oping": {"_count": 1}, "playing": {"_count": 1}, "bewitched": {"_count": 1}, "covered": {"_count": 1}, "enormous": {"_count": 1}, "together": {"_count": 1}, "draped": {"_count": 1}, "extinguished": {"_count": 1}, "in": {"_count": 1}, "deemed": {"_count": 1}}, "have": {"_count": 14, "been": {"_count": 4}, "favorites": {"_count": 1}, "forgotten": {"_count": 1}, "one": {"_count": 1}, "prepared": {"_count": 1}, "noticed": {"_count": 1}, "squeezed": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 2}, "had": {"_count": 1}}, "want": {"_count": 2, "one": {"_count": 1}, "a": {"_count": 1}}, "afternoon": {"_count": 2, "": {"_count": 2}}, "youd": {"_count": 1, "better": {"_count": 1}}, "until": {"_count": 2, "they": {"_count": 2}}, "said": {"_count": 28, "Thanks": {"_count": 1}, "Hermione": {"_count": 2}, "Percy": {"_count": 1}, "Ron": {"_count": 4}, "Snape": {"_count": 1}, "Hagrid": {"_count": 2}, "George": {"_count": 1}, "Dumbledore": {"_count": 1}, "Sirius": {"_count": 3}, "Harry": {"_count": 4}, "Filch": {"_count": 2}, "Umbridge": {"_count": 1}, "Warrington": {"_count": 1}, "Ginny": {"_count": 1}, "and": {"_count": 1}, "Auntie": {"_count": 1}, "similar": {"_count": 1}}, "teachers": {"_count": 1, "are": {"_count": 1}}, "gathered": {"_count": 1, "around": {"_count": 1}}, "fours": {"_count": 7, "coughed": {"_count": 1}, "banging": {"_count": 1}, "came": {"_count": 1}, "as": {"_count": 1}, "his": {"_count": 1}, "again": {"_count": 1}, "still": {"_count": 1}}, "I": {"_count": 18, "saw": {"_count": 1}, "knew": {"_count": 1}, "wanted": {"_count": 1}, "need": {"_count": 2}, "needed": {"_count": 1}, "swear": {"_count": 1}, "know": {"_count": 2}, "think": {"_count": 1}, "didnt": {"_count": 1}, "mean": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 2}, "must": {"_count": 1}, "can": {"_count": 1}, "feel": {"_count": 1}}, "were": {"_count": 8, "Professor": {"_count": 1}, "full": {"_count": 1}, "Which": {"_count": 1}, "many": {"_count": 1}, "talking": {"_count": 1}, "looking": {"_count": 1}, "most": {"_count": 1}, "gone": {"_count": 1}}, "those": {"_count": 43, "people": {"_count": 4}, "points": {"_count": 2}, "": {"_count": 1}, "amazing": {"_count": 1}, "Mudbloods": {"_count": 1}, "things": {"_count": 2}, "moves": {"_count": 1}, "poor": {"_count": 1}, "Muggles": {"_count": 2}, "dementors": {"_count": 4}, "wishing": {"_count": 1}, "brothers": {"_count": 1}, "hours": {"_count": 1}, "nice": {"_count": 1}, "she": {"_count": 1}, "Dungbombs": {"_count": 1}, "cauldrons": {"_count": 1}, "other": {"_count": 1}, "With": {"_count": 1}, "eyes": {"_count": 1}, "injuries": {"_count": 1}, "regurgitating": {"_count": 1}, "that": {"_count": 1}, "who": {"_count": 2}, "extra": {"_count": 1}, "buttons": {"_count": 1}, "books": {"_count": 1}, "awful": {"_count": 1}, "protective": {"_count": 1}, "years": {"_count": 3}, "still": {"_count": 1}}, "so": {"_count": 7, "impressed": {"_count": 1}, "I": {"_count": 1}, "slow": {"_count": 1}, "he": {"_count": 1}, "badly": {"_count": 1}, "confusing": {"_count": 1}, "easy": {"_count": 1}}, "wearing": {"_count": 5, "ours": {"_count": 1}, "bright": {"_count": 1}, "golden": {"_count": 1}, "the": {"_count": 2}}, "invisible": {"_count": 1, "too": {"_count": 1}}, "last": {"_count": 5, "night": {"_count": 1}, "summer": {"_count": 2}, "year": {"_count": 2}}, "night": {"_count": 16, "with": {"_count": 1}, "": {"_count": 8}, "said": {"_count": 2}, "like": {"_count": 1}, "if": {"_count": 1}, "she": {"_count": 1}, "cutting": {"_count": 1}, "waiting": {"_count": 1}}, "her": {"_count": 18, "fingers": {"_count": 1}, "notes": {"_count": 2}, "usual": {"_count": 1}, "secrets": {"_count": 2}, "pitiful": {"_count": 1}, "children": {"_count": 1}, "classes": {"_count": 1}, "energies": {"_count": 1}, "homework": {"_count": 1}, "fault": {"_count": 1}, "work": {"_count": 1}, "feathers": {"_count": 1}, "lessons": {"_count": 1}, "missing": {"_count": 1}, "Ministry": {"_count": 1}, "love": {"_count": 1}}, "pplaces": {"_count": 1, "Severus": {"_count": 1}}, "drew": {"_count": 1, "their": {"_count": 1}}, "helped": {"_count": 1, "buckle": {"_count": 1}}, "forget": {"_count": 1, "this": {"_count": 1}}, "come": {"_count": 5, "out": {"_count": 1}, "an": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "you": {"_count": 17, "need": {"_count": 5}, "may": {"_count": 1}, "were": {"_count": 1}, "will": {"_count": 2}, "needed": {"_count": 1}, "know": {"_count": 3}, "are": {"_count": 1}, "did": {"_count": 1}, "dont": {"_count": 1}, "like": {"_count": 1}}, "Ive": {"_count": 3, "got": {"_count": 2}, "been": {"_count": 1}}, "nervous": {"_count": 1, "breathing": {"_count": 1}}, "go": {"_count": 9, "back": {"_count": 1}, "to": {"_count": 2}, "said": {"_count": 1}, "into": {"_count": 1}, "haywire": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "home": {"_count": 1}}, "swooped": {"_count": 1, "down": {"_count": 1}}, "crumpled": {"_count": 1, "on": {"_count": 1}}, "taller": {"_count": 1, "than": {"_count": 1}}, "are": {"_count": 3, "different": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "was": {"_count": 13, "lost": {"_count": 1}, "Potions": {"_count": 1}, "that": {"_count": 2}, "the": {"_count": 2}, "blackness": {"_count": 1}, "icy": {"_count": 1}, "a": {"_count": 1}, "well": {"_count": 1}, "quiet": {"_count": 1}, "still": {"_count": 1}, "not": {"_count": 1}}, "to": {"_count": 44, "the": {"_count": 4}, "get": {"_count": 3}, "do": {"_count": 1}, "Herbology": {"_count": 1}, "work": {"_count": 2}, "go": {"_count": 2}, "divide": {"_count": 1}, "turn": {"_count": 3}, "himself": {"_count": 1}, "hide": {"_count": 1}, "be": {"_count": 2}, "Hogwarts": {"_count": 1}, "eat": {"_count": 1}, "er": {"_count": 1}, "regenerate": {"_count": 1}, "stay": {"_count": 1}, "you": {"_count": 1}, "stop": {"_count": 1}, "pass": {"_count": 1}, "her": {"_count": 1}, "kill": {"_count": 1}, "order": {"_count": 2}, "pack": {"_count": 1}, "him": {"_count": 1}, "chat": {"_count": 1}, "return": {"_count": 1}, "unite": {"_count": 1}, "leave": {"_count": 2}, "brew": {"_count": 1}, "see": {"_count": 1}, "ensure": {"_count": 1}, "myself": {"_count": 1}}, "kinds": {"_count": 2, "of": {"_count": 2}}, "students": {"_count": 3, "warning": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "bursting": {"_count": 1, "out": {"_count": 1}}, "summer": {"_count": 17, "": {"_count": 6}, "even": {"_count": 1}, "this": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}, "rolled": {"_count": 1}, "he": {"_count": 1}, "what": {"_count": 1}, "as": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}, "playing": {"_count": 1}}, "time": {"_count": 5, "Lord": {"_count": 1}, "": {"_count": 2}, "without": {"_count": 1}, "a": {"_count": 1}}, "know": {"_count": 18, "today": {"_count": 1}, "of": {"_count": 1}, "what": {"_count": 2}, "YouKnowWho": {"_count": 1}, "the": {"_count": 3}, "Professor": {"_count": 1}, "you": {"_count": 3}, "now": {"_count": 1}, "that": {"_count": 3}, "where": {"_count": 1}, "how": {"_count": 1}}, "thats": {"_count": 2, "keeping": {"_count": 1}, "obvious": {"_count": 1}}, "shapes": {"_count": 1, "and": {"_count": 1}}, "weve": {"_count": 3, "got": {"_count": 3}}, "hanging": {"_count": 1, "dumbstruck": {"_count": 1}}, "pleased": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "four": {"_count": 4, "plates": {"_count": 1}, "of": {"_count": 2}, "legs": {"_count": 1}}, "sat": {"_count": 6, "down": {"_count": 6}}, "read": {"_count": 1, "their": {"_count": 1}}, "Lockharts": {"_count": 2, "books": {"_count": 1}, "lessons": {"_count": 1}}, "up": {"_count": 12, "to": {"_count": 2}, "Ron": {"_count": 1}, "": {"_count": 2}, "before": {"_count": 1}, "again": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}, "Ickle": {"_count": 1}, "mightnt": {"_count": 1}, "in": {"_count": 1}}, "early": {"_count": 1, "the": {"_count": 1}}, "watching": {"_count": 5, "him": {"_count": 4}, "her": {"_count": 1}}, "separated": {"_count": 1, "": {"_count": 1}}, "meet": {"_count": 1, "at": {"_count": 1}}, "planned": {"_count": 1, "out": {"_count": 1}}, "winking": {"_count": 1, "and": {"_count": 1}}, "Break": {"_count": 1, "it": {"_count": 1}}, "publicity": {"_count": 1, "But": {"_count": 1}}, "sitting": {"_count": 5, "comfortably": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 2}, "together": {"_count": 1}}, "hurried": {"_count": 3, "into": {"_count": 2}, "inside": {"_count": 1}}, "underage": {"_count": 1, "and": {"_count": 1}}, "sides": {"_count": 10, "": {"_count": 5}, "the": {"_count": 1}, "about": {"_count": 1}, "now": {"_count": 1}, "some": {"_count": 1}, "Ron": {"_count": 1}}, "manner": {"_count": 1, "of": {"_count": 1}}, "Mr": {"_count": 1, "and": {"_count": 1}}, "seven": {"_count": 2, "of": {"_count": 2}}, "bought": {"_count": 1, "a": {"_count": 1}}, "magic": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 3, "we": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "records": {"_count": 1, "": {"_count": 1}}, "seized": {"_count": 1, "up": {"_count": 1}}, "morning": {"_count": 5, "and": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "looked": {"_count": 20, "bright": {"_count": 1}, "fearfully": {"_count": 1}, "very": {"_count": 2}, "extremely": {"_count": 1}, "up": {"_count": 4}, "back": {"_count": 1}, "delighted": {"_count": 1}, "away": {"_count": 1}, "unnerved": {"_count": 1}, "rather": {"_count": 1}, "puzzled": {"_count": 1}, "at": {"_count": 2}, "stricken": {"_count": 1}, "around": {"_count": 1}, "over": {"_count": 1}}, "burning": {"_count": 1, "bright": {"_count": 1}}, "year": {"_count": 15, "because": {"_count": 1}, "Ginnyl": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 5}, "theyve": {"_count": 1}, "making": {"_count": 1}, "and": {"_count": 2}, "said": {"_count": 1}, "see": {"_count": 1}}, "nodding": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 2, "stiff": {"_count": 1}, "right": {"_count": 1}}, "stiff": {"_count": 1, "and": {"_count": 1}}, "launched": {"_count": 1, "into": {"_count": 1}}, "every": {"_count": 1, "face": {"_count": 1}}, "who": {"_count": 2, "were": {"_count": 1}, "are": {"_count": 1}}, "climbed": {"_count": 4, "it": {"_count": 1}, "awkwardly": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "looking": {"_count": 16, "uptight": {"_count": 1}, "thunderstruck": {"_count": 1}, "nervously": {"_count": 1}, "at": {"_count": 5}, "in": {"_count": 1}, "rather": {"_count": 1}, "adoringly": {"_count": 1}, "as": {"_count": 1}, "anxious": {"_count": 1}, "very": {"_count": 1}, "exceptionally": {"_count": 1}, "serious": {"_count": 1}}, "weathers": {"_count": 1, "Too": {"_count": 1}}, "except": {"_count": 8, "their": {"_count": 1}, "for": {"_count": 2}, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}, "Potterwatch": {"_count": 1}, "Greyback": {"_count": 1}}, "game": {"_count": 1, "": {"_count": 1}}, "carrying": {"_count": 1, "their": {"_count": 1}}, "hear": {"_count": 1, "me": {"_count": 1}}, "bad": {"_count": 1, "can": {"_count": 1}}, "righ": {"_count": 23, "": {"_count": 10}, "said": {"_count": 1}, "really": {"_count": 1}, "he": {"_count": 1}, "Hagrid": {"_count": 2}, "fer": {"_count": 1}, "they": {"_count": 1}, "are": {"_count": 1}, "then": {"_count": 1}, "Harry": {"_count": 2}, "in": {"_count": 1}, "Fang": {"_count": 1}}, "hot": {"_count": 1, "an": {"_count": 1}}, "came": {"_count": 3, "back": {"_count": 2}, "in": {"_count": 1}}, "what": {"_count": 3, "they": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}}, "drink": {"_count": 1, "them": {"_count": 1}}, "kept": {"_count": 1, "quiet": {"_count": 1}}, "throw": {"_count": 1, "books": {"_count": 1}}, "covered": {"_count": 4, "with": {"_count": 2}, "in": {"_count": 2}}, "stopped": {"_count": 2, "What": {"_count": 1}, "talking": {"_count": 1}}, "giving": {"_count": 1, "him": {"_count": 1}}, "safe": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "twelve": {"_count": 2, "signatures": {"_count": 1}, "of": {"_count": 1}}, "miss": {"_count": 1, "your": {"_count": 1}}, "theyd": {"_count": 1, "have": {"_count": 1}}, "Im": {"_count": 1, "sayin": {"_count": 1}}, "packed": {"_count": 3, "their": {"_count": 1}, "arent": {"_count": 1}, "and": {"_count": 1}}, "keen": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "scuttled": {"_count": 1, "away": {"_count": 1}}, "through": {"_count": 11, "Hagrid": {"_count": 1}, "Herbology": {"_count": 1}, "dinner": {"_count": 4}, "History": {"_count": 1}, "Charms": {"_count": 1}, "the": {"_count": 3}}, "others": {"_count": 4, "": {"_count": 3}, "the": {"_count": 1}}, "studying": {"_count": 1, "hard": {"_count": 1}}, "surprised": {"_count": 5, "to": {"_count": 2}, "said": {"_count": 1}, "if": {"_count": 1}, "that": {"_count": 1}}, "danger": {"_count": 1, "had": {"_count": 1}}, "no": {"_count": 1, "onell": {"_count": 1}}, "fits": {"_count": 3, "": {"_count": 2}, "No": {"_count": 1}}, "by": {"_count": 9, "yourself": {"_count": 4}, "itself": {"_count": 1}, "himself": {"_count": 2}, "the": {"_count": 1}, "Winky": {"_count": 1}}, "shes": {"_count": 1, "not": {"_count": 1}}, "book": {"_count": 1, "signings": {"_count": 1}}, "directions": {"_count": 16, "but": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "so": {"_count": 2}, "taking": {"_count": 1}, "missed": {"_count": 1}, "under": {"_count": 1}, "narrowly": {"_count": 1}, "he": {"_count": 1}, "many": {"_count": 1}, "along": {"_count": 1}, "Draco": {"_count": 1}}, "like": {"_count": 9, "to": {"_count": 2}, "that": {"_count": 1}, "youd": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}, "appreciation": {"_count": 1}}, "get": {"_count": 4, "out": {"_count": 1}, "your": {"_count": 1}, "for": {"_count": 1}, "ready": {"_count": 1}}, "because": {"_count": 4, "hed": {"_count": 1}, "of": {"_count": 1}, "because": {"_count": 1}, "I": {"_count": 1}}, "nine": {"_count": 2, "of": {"_count": 1}, "hands": {"_count": 1}}, "though": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "proceeded": {"_count": 1, "into": {"_count": 1}}, "times": {"_count": 6, "so": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}}, "comes": {"_count": 3, "down": {"_count": 2}, "to": {"_count": 1}}, "YouKnowOos": {"_count": 1, "supporters": {"_count": 1}}, "them": {"_count": 4, "Muggles": {"_count": 1}, "people": {"_count": 1}, "dates": {"_count": 1}, "toads": {"_count": 1}}, "squeaking": {"_count": 1, "squawking": {"_count": 1}}, "off": {"_count": 3, "our": {"_count": 1}, "": {"_count": 1}, "doing": {"_count": 1}}, "blotchy": {"_count": 1, "": {"_count": 1}}, "sandwiches": {"_count": 1, "": {"_count": 1}}, "jump": {"_count": 5, "": {"_count": 1}, "and": {"_count": 2}, "Hagrid": {"_count": 1}, "Mr": {"_count": 1}}, "clammy": {"_count": 1, "": {"_count": 1}}, "weak": {"_count": 1, "and": {"_count": 1}}, "more": {"_count": 2, "like": {"_count": 1}, "than": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "closed": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "talking": {"_count": 3, "in": {"_count": 1}, "spiritedly": {"_count": 1}, "loudly": {"_count": 1}}, "magical": {"_count": 2, "arts": {"_count": 1}, "concealment": {"_count": 1}}, "finished": {"_count": 2, "deciding": {"_count": 1}, "reading": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "shook": {"_count": 3, "their": {"_count": 3}}, "shouting": {"_count": 1, "about": {"_count": 1}}, "watched": {"_count": 3, "her": {"_count": 1}, "eagerly": {"_count": 1}, "Ron": {"_count": 1}}, "its": {"_count": 9, "worth": {"_count": 1}, "cracked": {"_count": 1}, "might": {"_count": 1}, "a": {"_count": 1}, "pallor": {"_count": 1}, "support": {"_count": 1}, "powers": {"_count": 1}, "an": {"_count": 1}, "remaining": {"_count": 1}}, "Malfoy": {"_count": 1, "s": {"_count": 1}}, "different": {"_count": 1, "sizes": {"_count": 1}}, "goes": {"_count": 2, "well": {"_count": 2}}, "retreated": {"_count": 1, "backed": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 2}}, "is": {"_count": 4, "fear": {"_count": 1}, "it": {"_count": 1}, "own": {"_count": 1}, "what": {"_count": 1}}, "colorcoded": {"_count": 1, "depending": {"_count": 1}}, "left": {"_count": 2, "the": {"_count": 1}, "for": {"_count": 1}}, "doors": {"_count": 1, "into": {"_count": 1}}, "went": {"_count": 5, "out": {"_count": 1}, "quiet": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "pitchblack": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "whod": {"_count": 1, "suggested": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "gasped": {"_count": 1, "": {"_count": 1}}, "depends": {"_count": 1, "on": {"_count": 1}}, "intent": {"_count": 1, "on": {"_count": 1}}, "trapped": {"_count": 2, "inside": {"_count": 2}}, "although": {"_count": 1, "they": {"_count": 1}}, "happily": {"_count": 1, "discussing": {"_count": 1}}, "from": {"_count": 4, "something": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "thoughts": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 2}}, "pointed": {"_count": 1, "that": {"_count": 1}}, "kissed": {"_count": 1, "Harry": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "future": {"_count": 1, "Hogsmeade": {"_count": 1}}, "abou": {"_count": 1, "it": {"_count": 1}}, "cats": {"_count": 1, "do": {"_count": 1}}, "do": {"_count": 4, "they": {"_count": 1}, "it": {"_count": 1}, "with": {"_count": 1}, "yourselves": {"_count": 1}}, "sleep": {"_count": 1, "in": {"_count": 1}}, "standing": {"_count": 4, "on": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}}, "tonguetied": {"_count": 1, "": {"_count": 1}}, "sittin": {"_count": 1, "there": {"_count": 1}}, "lesson": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "grinning": {"_count": 1, "broadly": {"_count": 1}}, "Wood": {"_count": 1, "was": {"_count": 1}}, "going": {"_count": 6, "to": {"_count": 6}}, "dignity": {"_count": 1, "forgotten": {"_count": 1}}, "anybody": {"_count": 1, "felt": {"_count": 1}}, "separately": {"_count": 1, "Neville": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "boarded": {"_count": 1, "up": {"_count": 1}}, "deftly": {"_count": 1, "then": {"_count": 1}}, "transform": {"_count": 1, "": {"_count": 1}}, "think": {"_count": 5, "youre": {"_count": 1}, "hed": {"_count": 1}, "hes": {"_count": 1}, "it": {"_count": 1}, "our": {"_count": 1}}, "Voldemorts": {"_count": 1, "supporters": {"_count": 1}}, "became": {"_count": 2, "": {"_count": 1}, "still": {"_count": 1}}, "Padfoot": {"_count": 1, "old": {"_count": 1}}, "school": {"_count": 1, "rules": {"_count": 1}}, "straight": {"_count": 1, "back": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 1}, "stripping": {"_count": 1}}, "excited": {"_count": 3, "because": {"_count": 1}, "when": {"_count": 1}, "I": {"_count": 1}}, "deep": {"_count": 1, "and": {"_count": 1}}, "agreed": {"_count": 4, "that": {"_count": 2}, "on": {"_count": 2}}, "drop": {"_count": 1, "dead": {"_count": 1}}, "sleeping": {"_count": 1, "": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "Do": {"_count": 1, "not": {"_count": 1}}, "becoming": {"_count": 1, "confused": {"_count": 1}}, "moving": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "okay": {"_count": 1, "the": {"_count": 1}}, "food": {"_count": 1, "doublechecked": {"_count": 1}}, "busy": {"_count": 2, "talking": {"_count": 1}, "": {"_count": 1}}, "jumped": {"_count": 3, "": {"_count": 3}}, "stood": {"_count": 3, "there": {"_count": 2}, "looking": {"_count": 1}}, "speeding": {"_count": 1, "forward": {"_count": 1}}, "seem": {"_count": 3, "to": {"_count": 2}, "more": {"_count": 1}}, "squeeze": {"_count": 1, "in": {"_count": 1}}, "offended": {"_count": 1, "when": {"_count": 1}}, "later": {"_count": 3, "": {"_count": 3}}, "sporting": {"_count": 1, "green": {"_count": 1}}, "risen": {"_count": 1, "into": {"_count": 1}}, "made": {"_count": 5, "their": {"_count": 2}, "him": {"_count": 1}, "noises": {"_count": 1}, "sense": {"_count": 1}}, "alone": {"_count": 3, "": {"_count": 2}, "again": {"_count": 1}}, "raised": {"_count": 1, "their": {"_count": 1}}, "staring": {"_count": 6, "at": {"_count": 4}, "down": {"_count": 1}, "": {"_count": 1}}, "Disapparated": {"_count": 1, "before": {"_count": 1}}, "clamoring": {"_count": 1, "to": {"_count": 1}}, "perfectly": {"_count": 1, "okay": {"_count": 1}}, "crammed": {"_count": 1, "into": {"_count": 1}}, "hands": {"_count": 1, "on": {"_count": 1}}, "need": {"_count": 2, "to": {"_count": 1}, "your": {"_count": 1}}, "week": {"_count": 7, "": {"_count": 2}, "looking": {"_count": 1}, "as": {"_count": 1}, "have": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}}, "sending": {"_count": 1, "Howlers": {"_count": 1}}, "better": {"_count": 1, "go": {"_count": 1}}, "setting": {"_count": 1, "off": {"_count": 1}}, "severely": {"_count": 1, "scratched": {"_count": 1}}, "sooner": {"_count": 1, "than": {"_count": 1}}, "tonight": {"_count": 2, "you": {"_count": 1}, "said": {"_count": 1}}, "below": {"_count": 1, "third": {"_count": 1}}, "enjoy": {"_count": 1, "it": {"_count": 1}}, "extend": {"_count": 1, "every": {"_count": 1}}, "draped": {"_count": 1, "with": {"_count": 1}}, "weekend": {"_count": 2, "that": {"_count": 1}, "theyre": {"_count": 1}}, "see": {"_count": 1, "it": {"_count": 1}}, "pretense": {"_count": 3, "Ron": {"_count": 1}, "Professor": {"_count": 1}, "now": {"_count": 1}}, "bearing": {"_count": 1, "the": {"_count": 1}}, "milling": {"_count": 2, "around": {"_count": 2}}, "bore": {"_count": 2, "the": {"_count": 2}}, "colluding": {"_count": 1, "in": {"_count": 1}}, "palominos": {"_count": 1, "and": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "gone": {"_count": 2, "to": {"_count": 1}, "wrong": {"_count": 1}}, "swiveled": {"_count": 1, "around": {"_count": 1}}, "disappointed": {"_count": 1, "Hermione": {"_count": 1}}, "happening": {"_count": 1, "at": {"_count": 1}}, "Dumbledores": {"_count": 1, "letting": {"_count": 1}}, "treating": {"_count": 1, "him": {"_count": 1}}, "since": {"_count": 4, "he": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "setting": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "What": {"_count": 1, "breeds": {"_count": 1}}, "Karkaroff": {"_count": 1, "had": {"_count": 1}}, "hundreds": {"_count": 1, "upon": {"_count": 1}}, "an": {"_count": 3, "yeh": {"_count": 1}, "ornate": {"_count": 1}, "infusion": {"_count": 1}}, "sleepy": {"_count": 1, "but": {"_count": 1}}, "holding": {"_count": 1, "you": {"_count": 1}}, "lined": {"_count": 1, "with": {"_count": 1}}, "clustered": {"_count": 2, "around": {"_count": 2}}, "zis": {"_count": 1, "Ogwarts": {"_count": 1}}, "protective": {"_count": 1, "of": {"_count": 1}}, "Hogwarts": {"_count": 2, "secrets": {"_count": 1}, "headmasters": {"_count": 1}}, "extremely": {"_count": 1, "hairy": {"_count": 1}}, "not": {"_count": 5, "at": {"_count": 3}, "one": {"_count": 1}, "offended": {"_count": 1}}, "attending": {"_count": 1, "balls": {"_count": 1}}, "worried": {"_count": 1, "": {"_count": 1}}, "hate": {"_count": 3, "Hagrid": {"_count": 2}, "them": {"_count": 1}}, "heading": {"_count": 1, "back": {"_count": 1}}, "slid": {"_count": 1, "off": {"_count": 1}}, "tha": {"_count": 1, "respectable": {"_count": 1}}, "Filch": {"_count": 1, "I": {"_count": 1}}, "meant": {"_count": 2, "": {"_count": 2}}, "supposed": {"_count": 4, "to": {"_count": 4}}, "Yehre": {"_count": 1, "goin": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "hostages": {"_count": 1, "to": {"_count": 1}}, "nor": {"_count": 1, "would": {"_count": 1}}, "accounts": {"_count": 3, "it": {"_count": 1}, "he": {"_count": 1}, "unusually": {"_count": 1}}, "just": {"_count": 5, "when": {"_count": 1}, "these": {"_count": 1}, "a": {"_count": 2}, "talk": {"_count": 1}}, "turned": {"_count": 6, "out": {"_count": 1}, "to": {"_count": 3}, "up": {"_count": 2}}, "after": {"_count": 1, "Rita": {"_count": 1}}, "did": {"_count": 2, "remember": {"_count": 1}, "so": {"_count": 1}}, "Except": {"_count": 1, "put": {"_count": 1}}, "look": {"_count": 3, "this": {"_count": 1}, "a": {"_count": 1}, "like": {"_count": 1}}, "turn": {"_count": 2, "out": {"_count": 2}}, "hope": {"_count": 1, "was": {"_count": 1}}, "positioned": {"_count": 1, "so": {"_count": 1}}, "murmuring": {"_count": 1, "together": {"_count": 1}}, "else": {"_count": 3, "was": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}}, "Aurors": {"_count": 1, "said": {"_count": 1}}, "hushed": {"_count": 1, "up": {"_count": 1}}, "called": {"_count": 1, "stuff": {"_count": 1}}, "wished": {"_count": 1, "him": {"_count": 1}}, "whole": {"_count": 1, "and": {"_count": 1}}, "fear": {"_count": 1, "": {"_count": 1}}, "proved": {"_count": 1, "instead": {"_count": 1}}, "useful": {"_count": 1, "information": {"_count": 1}}, "assumed": {"_count": 1, "him": {"_count": 1}}, "believed": {"_count": 2, "had": {"_count": 1}, "the": {"_count": 1}}, "when": {"_count": 5, "there": {"_count": 1}, "they": {"_count": 1}, "has": {"_count": 1}, "he": {"_count": 2}}, "thought": {"_count": 9, "": {"_count": 1}, "that": {"_count": 2}, "Harry": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}, "obliterated": {"_count": 1}}, "other": {"_count": 3, "Death": {"_count": 1}, "discomfort": {"_count": 1}, "concerns": {"_count": 1}}, "costs": {"_count": 2, "": {"_count": 2}}, "determined": {"_count": 2, "to": {"_count": 2}}, "started": {"_count": 1, "spinning": {"_count": 1}}, "Amos": {"_count": 1, "": {"_count": 1}}, "please": {"_count": 1, "to": {"_count": 1}}, "whether": {"_count": 1, "you": {"_count": 1}}, "possessed": {"_count": 1, "no": {"_count": 1}}, "once": {"_count": 2, "again": {"_count": 1}, "more": {"_count": 1}}, "if": {"_count": 5, "our": {"_count": 1}, "I": {"_count": 2}, "Harry": {"_count": 1}, "Percy": {"_count": 1}}, "facing": {"_count": 3, "dark": {"_count": 1}, "the": {"_count": 2}}, "lying": {"_count": 1, "unconscious": {"_count": 1}}, "forgotten": {"_count": 1, "what": {"_count": 1}}, "finishing": {"_count": 1, "in": {"_count": 1}}, "welled": {"_count": 1, "up": {"_count": 1}}, "owned": {"_count": 1, "by": {"_count": 1}}, "dark": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "desire": {"_count": 1, "for": {"_count": 1}}, "out": {"_count": 6, "": {"_count": 2}, "said": {"_count": 1}, "including": {"_count": 1}, "of": {"_count": 2}}, "Dumbledore": {"_count": 2, "had": {"_count": 2}}, "empty": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "further": {"_count": 1, "thought": {"_count": 1}}, "still": {"_count": 5, "eyeing": {"_count": 1}, "be": {"_count": 1}, "had": {"_count": 1}, "gathered": {"_count": 1}, "here": {"_count": 1}}, "soared": {"_count": 1, "into": {"_count": 1}}, "stepped": {"_count": 1, "outside": {"_count": 1}}, "frozen": {"_count": 1, "to": {"_count": 1}}, "sorry": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "impressed": {"_count": 2, "I": {"_count": 1}, "by": {"_count": 1}}, "nodded": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "regarding": {"_count": 1, "him": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "smiled": {"_count": 1, "humorlessly": {"_count": 1}}, "theyve": {"_count": 1, "really": {"_count": 1}}, "houseelves": {"_count": 1, "there": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "interrelated": {"_count": 1, "said": {"_count": 1}}, "It": {"_count": 2, "doesnt": {"_count": 1}, "was": {"_count": 1}}, "tucking": {"_count": 1, "into": {"_count": 1}}, "found": {"_count": 2, "themselves": {"_count": 1}, "home": {"_count": 1}}, "working": {"_count": 1, "very": {"_count": 1}}, "thrown": {"_count": 2, "unceremoniously": {"_count": 1}, "out": {"_count": 1}}, "looks": {"_count": 1, "rather": {"_count": 1}}, "happiness": {"_count": 1, "had": {"_count": 1}}, "sure": {"_count": 3, "that": {"_count": 2}, "whether": {"_count": 1}}, "charges": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "getting": {"_count": 1, "to": {"_count": 1}}, "pass": {"_count": 1, "you": {"_count": 1}}, "knew": {"_count": 1, "Id": {"_count": 1}}, "proceeds": {"_count": 1, "to": {"_count": 1}}, "downstairs": {"_count": 1, "she": {"_count": 1}}, "holiday": {"_count": 1, "": {"_count": 1}}, "stems": {"_count": 1, "from": {"_count": 1}}, "waving": {"_count": 2, "happily": {"_count": 1}, "and": {"_count": 1}}, "round": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "journey": {"_count": 1, "said": {"_count": 1}}, "fillup": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 3, "knew": {"_count": 1}, "whispered": {"_count": 1}, "said": {"_count": 1}}, "whatever": {"_count": 1, "his": {"_count": 1}}, "digesting": {"_count": 1, "another": {"_count": 1}}, "headed": {"_count": 1, "toward": {"_count": 1}}, "fidgeting": {"_count": 1, "stopped": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "means": {"_count": 4, "come": {"_count": 1}, "stay": {"_count": 1}, "continue": {"_count": 1}, "tell": {"_count": 1}}, "thirty": {"_count": 1, "eagerly": {"_count": 1}}, "desirable": {"_count": 1, "near": {"_count": 1}}, "body": {"_count": 1, "parts": {"_count": 1}}, "Angelina": {"_count": 2, "Johnson": {"_count": 1}, "wants": {"_count": 1}}, "Ron": {"_count": 2, "had": {"_count": 1}, "Ive": {"_count": 1}}, "maybe": {"_count": 1, "its": {"_count": 1}}, "Hermiones": {"_count": 1, "elf": {"_count": 1}}, "missing": {"_count": 1, "our": {"_count": 1}}, "annoyed": {"_count": 1, "because": {"_count": 1}}, "flying": {"_count": 1, "as": {"_count": 1}}, "repose": {"_count": 1, "confidence": {"_count": 1}}, "laughed": {"_count": 1, "except": {"_count": 1}}, "took": {"_count": 3, "out": {"_count": 1}, "deep": {"_count": 1}, "several": {"_count": 1}}, "smilingly": {"_count": 1, "and": {"_count": 1}}, "Cornelius": {"_count": 3, "Fudge": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "ought": {"_count": 2, "to": {"_count": 2}}, "term": {"_count": 2, "": {"_count": 1}, "though": {"_count": 1}}, "honorable": {"_count": 1, "and": {"_count": 1}}, "signed": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "well": {"_count": 2, "said": {"_count": 1}, "now": {"_count": 1}}, "funny": {"_count": 3, "look": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}}, "together": {"_count": 1, "come": {"_count": 1}}, "stowed": {"_count": 1, "their": {"_count": 1}}, "himself": {"_count": 1, "sir": {"_count": 1}}, "show": {"_count": 1, "when": {"_count": 1}}, "divide": {"_count": 1, "into": {"_count": 1}}, "leave": {"_count": 3, "in": {"_count": 1}, "you": {"_count": 1}, "their": {"_count": 1}}, "change": {"_count": 1, "to": {"_count": 1}}, "never": {"_count": 1, "lost": {"_count": 1}}, "yelling": {"_count": 2, "and": {"_count": 1}, "there": {"_count": 1}}, "sing": {"_count": 2, "Weasley": {"_count": 2}}, "punishments": {"_count": 1, "sanctions": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "eager": {"_count": 1, "": {"_count": 1}}, "wen": {"_count": 1, "wrong": {"_count": 1}}, "wizards": {"_count": 2, "just": {"_count": 1}, "can": {"_count": 1}}, "happy": {"_count": 3, "if": {"_count": 1}, "to": {"_count": 1}, "forgetfulness": {"_count": 1}}, "bewitching": {"_count": 1, "snowballs": {"_count": 1}}, "divided": {"_count": 1, "up": {"_count": 1}}, "recognition": {"_count": 1, "": {"_count": 1}}, "snoozing": {"_count": 1, "in": {"_count": 1}}, "used": {"_count": 1, "a": {"_count": 1}}, "sped": {"_count": 1, "forward": {"_count": 1}}, "drank": {"_count": 1, "and": {"_count": 1}}, "stay": {"_count": 2, "with": {"_count": 1}, "together": {"_count": 1}}, "followed": {"_count": 1, "her": {"_count": 1}}, "happen": {"_count": 2, "": {"_count": 2}}, "anyone": {"_count": 1, "could": {"_count": 1}}, "young": {"_count": 1, "people": {"_count": 1}}, "permission": {"_count": 1, "to": {"_count": 1}}, "misunderstood": {"_count": 1, "said": {"_count": 1}}, "saying": {"_count": 1, "was": {"_count": 1}}, "averted": {"_count": 1, "their": {"_count": 1}}, "greeted": {"_count": 1, "Mr": {"_count": 1}}, "keeping": {"_count": 1, "determinedly": {"_count": 1}}, "beaming": {"_count": 1, "toothily": {"_count": 1}}, "feverishly": {"_count": 1, "": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "flung": {"_count": 1, "backward": {"_count": 1}}, "Sirius": {"_count": 2, "included": {"_count": 1}, "had": {"_count": 1}}, "emotion": {"_count": 3, "": {"_count": 1}, "every": {"_count": 1}, "before": {"_count": 1}}, "died": {"_count": 1, "at": {"_count": 1}}, "or": {"_count": 2, "he": {"_count": 1}, "to": {"_count": 1}}, "Luna": {"_count": 1, "told": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "pelted": {"_count": 1, "toward": {"_count": 1}}, "student": {"_count": 1, "societies": {"_count": 1}}, "awake": {"_count": 1, "very": {"_count": 1}}, "maam": {"_count": 1, "not": {"_count": 1}}, "owl": {"_count": 1, "post": {"_count": 1}}, "secret": {"_count": 1, "passages": {"_count": 1}}, "simply": {"_count": 1, "because": {"_count": 1}}, "uttered": {"_count": 1, "under": {"_count": 1}}, "idiots": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 1, "to": {"_count": 1}}, "bullyin": {"_count": 1, "him": {"_count": 1}}, "o": {"_count": 1, "them": {"_count": 1}}, "squeaked": {"_count": 1, "Hermione": {"_count": 1}}, "He": {"_count": 2, "is": {"_count": 1}, "looked": {"_count": 1}}, "cunning": {"_count": 1, "for": {"_count": 1}}, "seated": {"_count": 1, "and": {"_count": 1}}, "milk": {"_count": 1, "in": {"_count": 1}}, "screamed": {"_count": 1, "": {"_count": 1}}, "bleating": {"_count": 1, "about": {"_count": 1}}, "light": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 1}}, "pointing": {"_count": 1, "upward": {"_count": 1}}, "fell": {"_count": 3, "silent": {"_count": 3}}, "Rons": {"_count": 3, "the": {"_count": 1}, "return": {"_count": 1}, "idea": {"_count": 1}}, "ready": {"_count": 2, "then": {"_count": 1}, "for": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "thinking": {"_count": 3, "hard": {"_count": 1}, "the": {"_count": 2}}, "gazing": {"_count": 2, "openmouthed": {"_count": 1}, "at": {"_count": 1}}, "knocked": {"_count": 1, "backward": {"_count": 1}}, "messed": {"_count": 1, "up": {"_count": 1}}, "halted": {"_count": 2, "gazing": {"_count": 1}, "in": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "righd": {"_count": 1, "and": {"_count": 1}}, "disappeared": {"_count": 1, "and": {"_count": 1}}, "how": {"_count": 1, "brave": {"_count": 1}}, "hardly": {"_count": 1, "better": {"_count": 1}}, "Wizarding": {"_count": 1, "homes": {"_count": 1}}, "vanish": {"_count": 1, "that": {"_count": 1}}, "clearly": {"_count": 1, "in": {"_count": 1}}, "ranged": {"_count": 1, "there": {"_count": 1}}, "reminders": {"_count": 1, "of": {"_count": 1}}, "tried": {"_count": 1, "unsuccessfully": {"_count": 1}}, "memory": {"_count": 1, "modifications": {"_count": 1}}, "rally": {"_count": 1, "once": {"_count": 1}}, "inclined": {"_count": 1, "to": {"_count": 1}}, "color": {"_count": 1, "so": {"_count": 1}}, "family": {"_count": 1, "members": {"_count": 1}}, "take": {"_count": 1, "against": {"_count": 1}}, "reluctant": {"_count": 1, "to": {"_count": 1}}, "determinedly": {"_count": 1, "avoiding": {"_count": 1}}, "clutching": {"_count": 1, "heavy": {"_count": 1}}, "rolling": {"_count": 1, "around": {"_count": 1}}, "fixed": {"_count": 1, "with": {"_count": 1}}, "eyes": {"_count": 2, "onto": {"_count": 1}, "in": {"_count": 1}}, "assume": {"_count": 1, "he": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "Ogden": {"_count": 1, "could": {"_count": 1}}, "possible": {"_count": 1, "dispute": {"_count": 1}}, "applicants": {"_count": 1, "for": {"_count": 1}}, "concerned": {"_count": 1, "": {"_count": 1}}, "searched": {"_count": 1, "when": {"_count": 1}}, "Muffliato": {"_count": 1, "a": {"_count": 1}}, "OUCH": {"_count": 1, "": {"_count": 1}}, "wrapped": {"_count": 1, "up": {"_count": 1}}, "appropriate": {"_count": 1, "measures": {"_count": 1}}, "important": {"_count": 1, "and": {"_count": 1}}, "sound": {"_count": 1, "of": {"_count": 1}}, "enmity": {"_count": 1, "forgotten": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "hoping": {"_count": 1, "theyre": {"_count": 1}}, "boys": {"_count": 1, "care": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "convinced": {"_count": 1, "Snapes": {"_count": 1}}, "top": {"_count": 1, "secret": {"_count": 1}}, "observing": {"_count": 1, "him": {"_count": 1}}, "Scrimgeours": {"_count": 1, "talk": {"_count": 1}}, "perception": {"_count": 1, "isnt": {"_count": 1}}, "onerous": {"_count": 1, "I": {"_count": 1}}, "claimed": {"_count": 1, "credit": {"_count": 1}}, "only": {"_count": 1, "Dumbledore": {"_count": 1}}, "sympathetic": {"_count": 1, "when": {"_count": 1}}, "common": {"_count": 1, "room": {"_count": 1}}, "reason": {"_count": 1, "had": {"_count": 1}}, "black": {"_count": 1, "and": {"_count": 1}}, "spiked": {"_count": 1, "with": {"_count": 1}}, "locked": {"_count": 1, "up": {"_count": 1}}, "anyway": {"_count": 1, "Dumbledore": {"_count": 1}}, "prepared": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "McLaggen": {"_count": 1, "had": {"_count": 1}}, "interesting": {"_count": 1, "": {"_count": 1}}, "offers": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "your": {"_count": 1}}, "aware": {"_count": 1, "by": {"_count": 1}}, "Aragogs": {"_count": 1, "dead": {"_count": 1}}, "tested": {"_count": 1, "for": {"_count": 1}}, "hypothetical": {"_count": 1, "what": {"_count": 1}}, "eternity": {"_count": 1, "if": {"_count": 1}}, "transformed": {"_count": 1, "into": {"_count": 1}}, "highly": {"_count": 1, "amused": {"_count": 1}}, "Romilda": {"_count": 1, "Vane": {"_count": 1}}, "methods": {"_count": 1, "of": {"_count": 1}}, "opposition": {"_count": 1, "but": {"_count": 1}}, "lookin": {"_count": 1, "at": {"_count": 1}}, "wondered": {"_count": 1, "": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "wanted": {"_count": 1, "more": {"_count": 1}}, "fighting": {"_count": 1, "": {"_count": 1}}, "ran": {"_count": 1, "forward": {"_count": 1}}, "suddenly": {"_count": 1, "became": {"_count": 1}}, "Remus": {"_count": 1, "young": {"_count": 1}}, "examinations": {"_count": 1, "postponed": {"_count": 1}}, "chairs": {"_count": 1, "facing": {"_count": 1}}, "warmth": {"_count": 1, "from": {"_count": 1}}, "heads": {"_count": 1, "turned": {"_count": 1}}, "work": {"_count": 1, "together": {"_count": 1}}, "mate": {"_count": 1, "with": {"_count": 1}}, "usual": {"_count": 1, "senses": {"_count": 1}}, "head": {"_count": 1, "for": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "shooting": {"_count": 1, "curses": {"_count": 1}}, "tear": {"_count": 1, "tracks": {"_count": 1}}, "imagining": {"_count": 1, "him": {"_count": 1}}, "dangerous": {"_count": 1, "to": {"_count": 1}}, "emblazoned": {"_count": 1, "with": {"_count": 1}}, "saw": {"_count": 1, "it": {"_count": 1}}, "passed": {"_count": 1, "through": {"_count": 1}}, "then": {"_count": 2, "is": {"_count": 1}, "he": {"_count": 1}}, "ate": {"_count": 1, "rather": {"_count": 1}}, "wear": {"_count": 1, "what": {"_count": 1}}, "laughing": {"_count": 1, "so": {"_count": 1}}, "floated": {"_count": 1, "gracefully": {"_count": 1}}, "happened": {"_count": 1, "years": {"_count": 1}}, "Albus": {"_count": 1, "s": {"_count": 1}}, "Doge": {"_count": 1, "did": {"_count": 1}}, "They": {"_count": 1, "still": {"_count": 1}}, "stacked": {"_count": 1, "by": {"_count": 1}}, "rright": {"_count": 1, "": {"_count": 1}}, "stuck": {"_count": 1, "together": {"_count": 1}}, "Miss": {"_count": 1, "Bellas": {"_count": 1}}, "safer": {"_count": 1, "if": {"_count": 1}}, "accompanied": {"_count": 1, "him": {"_count": 1}}, "being": {"_count": 1, "watched": {"_count": 1}}, "intents": {"_count": 1, "and": {"_count": 1}}, "something": {"_count": 1, "she": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}, "friends": {"_count": 1, "together": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "matters": {"_count": 1, "": {"_count": 1}}, "fit": {"_count": 1, "under": {"_count": 1}}, "stew": {"_count": 1, "and": {"_count": 1}}, "embossed": {"_count": 1, "with": {"_count": 1}}, "formed": {"_count": 1, "the": {"_count": 1}}, "gawping": {"_count": 1, "at": {"_count": 1}}, "exits": {"_count": 1, "and": {"_count": 1}}, "clues": {"_count": 1, "to": {"_count": 1}}, "likely": {"_count": 1, "he": {"_count": 1}}, "behind": {"_count": 1, "you": {"_count": 1}}, "gave": {"_count": 1, "an": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "Parseltongue": {"_count": 1, "and": {"_count": 1}}, "put": {"_count": 2, "his": {"_count": 1}, "our": {"_count": 1}}, "remain": {"_count": 1, "still": {"_count": 1}}, "Id": {"_count": 2, "walked": {"_count": 1}, "be": {"_count": 1}}, "flapping": {"_count": 1, "wings": {"_count": 1}}, "tumbled": {"_count": 1, "onto": {"_count": 1}}, "sources": {"_count": 1, "of": {"_count": 1}}, "familiar": {"_count": 1, "with": {"_count": 1}}, "understand": {"_count": 1, "": {"_count": 1}}, "nonsense": {"_count": 1, "": {"_count": 1}}, "ridiculous": {"_count": 1, "": {"_count": 1}}, "makes": {"_count": 2, "sense": {"_count": 2}}, "wrong": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "human": {"_count": 1, "arent": {"_count": 1}}, "thinks": {"_count": 1, "we": {"_count": 1}}, "green": {"_count": 1, "": {"_count": 1}}, "perish": {"_count": 1, "if": {"_count": 1}}, "tension": {"_count": 1, "drained": {"_count": 1}}, "traipsed": {"_count": 1, "back": {"_count": 1}}, "wands": {"_count": 1, "does": {"_count": 1}}, "Travers": {"_count": 1, "said": {"_count": 1}}, "clambered": {"_count": 1, "into": {"_count": 1}}, "enchantment": {"_count": 1, "all": {"_count": 1}}, "Oh": {"_count": 1, "did": {"_count": 1}}, "Wizardkind": {"_count": 1, "and": {"_count": 1}}, "discipline": {"_count": 1, "": {"_count": 1}}, "noise": {"_count": 1, "ceased": {"_count": 1}}, "backing": {"_count": 1, "away": {"_count": 1}}, "seems": {"_count": 1, "calm": {"_count": 1}}, "thundering": {"_count": 1, "after": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "scattered": {"_count": 1, "and": {"_count": 1}}, "wait": {"_count": 1, "because": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "die": {"_count": 1, "one": {"_count": 1}}, "aiming": {"_count": 1, "to": {"_count": 1}}, "If": {"_count": 1, "she": {"_count": 1}}, "responsibility": {"_count": 1, "from": {"_count": 1}}, "things": {"_count": 1, "the": {"_count": 1}}, "within": {"_count": 1, "reach": {"_count": 1}}, "battling": {"_count": 1, "their": {"_count": 1}}, "sneered": {"_count": 1, "Voldemort": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}}, "country": {"_count": 50, "": {"_count": 13, ".": {"_count": 11}, "?": {"_count": 2}}, "were": {"_count": 1, "holding": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "anyone": {"_count": 1, "could": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "hiding": {"_count": 1}}, "lane": {"_count": 5, "trees": {"_count": 1}, "full": {"_count": 1}, "beside": {"_count": 1}, "bordered": {"_count": 1}, "": {"_count": 1}}, "up": {"_count": 1, "for": {"_count": 1}}, "from": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 5, "well": {"_count": 1}, "after": {"_count": 1}, "is": {"_count": 1}, "between": {"_count": 1}, "he": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "for": {"_count": 1, "two": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "This": {"_count": 1, "time": {"_count": 1}}, "an": {"_count": 1, "stuff": {"_count": 1}}, "the": {"_count": 1, "opponent": {"_count": 1}}, "to": {"_count": 1, "run": {"_count": 1}}, "on": {"_count": 1, "trips": {"_count": 1}}, "they": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 2, "dont": {"_count": 1}, "think": {"_count": 1}}, "if": {"_count": 2, "youve": {"_count": 1}, "you": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "braving": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "hours": {"_count": 1, "after": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}}, "hummed": {"_count": 5, "as": {"_count": 1, "he": {"_count": 1}}, "Tiptoe": {"_count": 1, "Through": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "loudly": {"_count": 1, "but": {"_count": 1}}, "creakily": {"_count": 1, "under": {"_count": 1}}}, "picked": {"_count": 149, "out": {"_count": 2, "his": {"_count": 1}, "for": {"_count": 1}}, "up": {"_count": 100, "his": {"_count": 21}, "the": {"_count": 42}, "a": {"_count": 16}, "their": {"_count": 2}, "Neville": {"_count": 1}, "her": {"_count": 4}, "Rons": {"_count": 1}, "speed": {"_count": 2}, "Trevor": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}, "something": {"_count": 1}, "Hedwigs": {"_count": 1}, "Hogwarts": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "Hermione": {"_count": 1}, "one": {"_count": 2}}, "it": {"_count": 24, "up": {"_count": 24}}, "to": {"_count": 1, "play": {"_count": 1}}, "for": {"_count": 2, "teams": {"_count": 1}, "one": {"_count": 1}}, "the": {"_count": 4, "shining": {"_count": 1}, "lock": {"_count": 1}, "losing": {"_count": 1}, "exit": {"_count": 1}}, "Harry": {"_count": 2, "to": {"_count": 1}, "up": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "twilight": {"_count": 1}, "his": {"_count": 1}}, "him": {"_count": 1, "up": {"_count": 1}}, "tonight": {"_count": 1, "you": {"_count": 1}}, "over": {"_count": 1, "so": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 2, "up": {"_count": 1}, "way": {"_count": 1}}, "them": {"_count": 2, "up": {"_count": 2}}, "Ginny": {"_count": 1, "Neville": {"_count": 1}}, "her": {"_count": 1, "up": {"_count": 1}}, "himself": {"_count": 1, "up": {"_count": 1}}}, "his": {"_count": 13706, "most": {"_count": 11, "boring": {"_count": 1}, "dangerous": {"_count": 1}, "devoted": {"_count": 2}, "prized": {"_count": 1}, "loyal": {"_count": 1}, "faithful": {"_count": 1}, "precious": {"_count": 1}, "trusted": {"_count": 1}, "painful": {"_count": 1}, "cowardly": {"_count": 1}}, "high": {"_count": 8, "chair": {"_count": 1}, "laugh": {"_count": 1}, "spirits": {"_count": 1}, "hippogriff": {"_count": 1}, "cold": {"_count": 1}, "clear": {"_count": 2}, "reedy": {"_count": 1}}, "briefcase": {"_count": 4, "pecked": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "cereal": {"_count": 1, "at": {"_count": 1}}, "car": {"_count": 4, "and": {"_count": 2}, "coat": {"_count": 1}, "keys": {"_count": 1}}, "head": {"_count": 552, "around": {"_count": 1}, "": {"_count": 132}, "the": {"_count": 5}, "got": {"_count": 1}, "just": {"_count": 1}, "NEVER": {"_count": 1}, "in": {"_count": 17}, "and": {"_count": 61}, "brought": {"_count": 1}, "when": {"_count": 2}, "back": {"_count": 5}, "on": {"_count": 12}, "Wingardium": {"_count": 1}, "buzzing": {"_count": 3}, "that": {"_count": 1}, "through": {"_count": 3}, "suspended": {"_count": 1}, "knocking": {"_count": 1}, "which": {"_count": 4}, "torn": {"_count": 1}, "violently": {"_count": 2}, "it": {"_count": 2}, "bowed": {"_count": 3}, "felt": {"_count": 1}, "lessened": {"_count": 1}, "hurt": {"_count": 2}, "pound": {"_count": 1}, "was": {"_count": 11}, "with": {"_count": 4}, "furiously": {"_count": 1}, "so": {"_count": 4}, "frantically": {"_count": 1}, "his": {"_count": 7}, "toward": {"_count": 5}, "against": {"_count": 3}, "Gerroff": {"_count": 1}, "almost": {"_count": 1}, "out": {"_count": 7}, "during": {"_count": 1}, "at": {"_count": 6}, "high": {"_count": 2}, "fell": {"_count": 1}, "a": {"_count": 10}, "vigorously": {"_count": 2}, "drooping": {"_count": 1}, "irritably": {"_count": 1}, "Harry": {"_count": 4}, "inclined": {"_count": 1}, "wideeyed": {"_count": 1}, "impatiently": {"_count": 2}, "up": {"_count": 2}, "but": {"_count": 3}, "like": {"_count": 3}, "ready": {"_count": 1}, "to": {"_count": 15}, "inside": {"_count": 1}, "except": {"_count": 2}, "into": {"_count": 4}, "from": {"_count": 4}, "seriously": {"_count": 1}, "very": {"_count": 3}, "hopelessly": {"_count": 1}, "hit": {"_count": 3}, "listening": {"_count": 1}, "whenever": {"_count": 1}, "off": {"_count": 3}, "Not": {"_count": 1}, "these": {"_count": 1}, "would": {"_count": 3}, "this": {"_count": 3}, "slowly": {"_count": 3}, "mouthing": {"_count": 1}, "over": {"_count": 1}, "looking": {"_count": 3}, "shrill": {"_count": 1}, "twittering": {"_count": 1}, "quickly": {"_count": 1}, "flopping": {"_count": 1}, "ripple": {"_count": 1}, "didnt": {"_count": 1}, "The": {"_count": 1}, "flopped": {"_count": 1}, "unsmilingly": {"_count": 1}, "disappear": {"_count": 1}, "hardly": {"_count": 2}, "as": {"_count": 9}, "grinning": {"_count": 1}, "seemed": {"_count": 3}, "protruding": {"_count": 1}, "where": {"_count": 4}, "disbelievingly": {"_count": 1}, "Im": {"_count": 1}, "spin": {"_count": 1}, "break": {"_count": 1}, "nervously": {"_count": 1}, "staring": {"_count": 1}, "right": {"_count": 1}, "trying": {"_count": 5}, "did": {"_count": 1}, "wondering": {"_count": 1}, "think": {"_count": 1}, "he": {"_count": 6}, "I": {"_count": 2}, "then": {"_count": 1}, "reverberating": {"_count": 1}, "drooped": {"_count": 1}, "until": {"_count": 1}, "darkly": {"_count": 1}, "collided": {"_count": 1}, "had": {"_count": 4}, "Bow": {"_count": 1}, "cowering": {"_count": 1}, "all": {"_count": 1}, "flying": {"_count": 1}, "throbbing": {"_count": 1}, "pounding": {"_count": 1}, "awkwardly": {"_count": 2}, "cut": {"_count": 1}, "they": {"_count": 1}, "bemused": {"_count": 1}, "noticing": {"_count": 1}, "hurriedly": {"_count": 1}, "low": {"_count": 1}, "closer": {"_count": 1}, "sharply": {"_count": 1}, "sagging": {"_count": 1}, "vibrated": {"_count": 1}, "using": {"_count": 1}, "beaming": {"_count": 1}, "reappeared": {"_count": 1}, "youre": {"_count": 1}, "ache": {"_count": 1}, "glimmered": {"_count": 1}, "close": {"_count": 1}, "down": {"_count": 3}, "hurtled": {"_count": 1}, "backward": {"_count": 1}, "firmly": {"_count": 1}, "dismissively": {"_count": 1}, "completely": {"_count": 1}, "pompously": {"_count": 1}, "swam": {"_count": 1}, "again": {"_count": 2}, "another": {"_count": 1}, "sank": {"_count": 1}, "lying": {"_count": 1}, "bawling": {"_count": 1}, "level": {"_count": 1}, "an": {"_count": 1}, "slightly": {"_count": 2}, "for": {"_count": 1}, "about": {"_count": 1}, "barely": {"_count": 1}, "experimentally": {"_count": 1}, "too": {"_count": 1}, "immediately": {"_count": 1}, "wearily": {"_count": 1}, "continued": {"_count": 1}, "thatched": {"_count": 1}, "hastily": {"_count": 1}, "unsmiling": {"_count": 1}, "wobbling": {"_count": 1}, "Ginny": {"_count": 1}, "showering": {"_count": 1}, "said": {"_count": 1}, "still": {"_count": 2}, "ever": {"_count": 1}, "tilted": {"_count": 1}, "jerkily": {"_count": 1}, "An": {"_count": 1}, "grabbed": {"_count": 1}, "under": {"_count": 1}, "despite": {"_count": 1}, "vanishing": {"_count": 1}, "pointing": {"_count": 1}, "rocking": {"_count": 1}, "Fine": {"_count": 1}, "feverishly": {"_count": 1}, "turning": {"_count": 1}, "lightly": {"_count": 1}, "built": {"_count": 1}, "subserviently": {"_count": 1}, "hes": {"_count": 1}, "threatening": {"_count": 1}, "Mrs": {"_count": 1}, "than": {"_count": 1}}, "mirror": {"_count": 4, "": {"_count": 1}, "in": {"_count": 1}, "sleepily": {"_count": 1}, "on": {"_count": 1}}, "mind": {"_count": 144, "": {"_count": 32}, "by": {"_count": 1}, "back": {"_count": 2}, "on": {"_count": 7}, "off": {"_count": 4}, "he": {"_count": 5}, "all": {"_count": 2}, "as": {"_count": 5}, "still": {"_count": 4}, "was": {"_count": 6}, "what": {"_count": 1}, "about": {"_count": 2}, "empty": {"_count": 1}, "across": {"_count": 1}, "around": {"_count": 2}, "in": {"_count": 1}, "again": {"_count": 2}, "entirely": {"_count": 1}, "right": {"_count": 1}, "it": {"_count": 1}, "wander": {"_count": 1}, "said": {"_count": 4}, "like": {"_count": 3}, "trying": {"_count": 1}, "and": {"_count": 4}, "had": {"_count": 2}, "upon": {"_count": 1}, "racing": {"_count": 3}, "but": {"_count": 1}, "immediately": {"_count": 1}, "one": {"_count": 1}, "tried": {"_count": 1}, "of": {"_count": 2}, "this": {"_count": 1}, "for": {"_count": 1}, "even": {"_count": 1}, "if": {"_count": 1}, "free": {"_count": 1}, "hitching": {"_count": 1}, "now": {"_count": 1}, "seemed": {"_count": 1}, "the": {"_count": 3}, "to": {"_count": 4}, "I": {"_count": 1}, "than": {"_count": 3}, "lumbering": {"_count": 1}, "came": {"_count": 1}, "a": {"_count": 1}, "every": {"_count": 1}, "affected": {"_count": 1}, "burst": {"_count": 1}, "Kreacher": {"_count": 1}, "Sirius": {"_count": 1}, "that": {"_count": 1}, "working": {"_count": 1}, "He": {"_count": 1}, "viewed": {"_count": 1}, "full": {"_count": 1}, "swift": {"_count": 1}, "firmly": {"_count": 1}, "down": {"_count": 1}, "clean": {"_count": 1}, "We": {"_count": 1}, "crammed": {"_count": 1}}, "fingers": {"_count": 93, "on": {"_count": 2}, "through": {"_count": 2}, "": {"_count": 21}, "under": {"_count": 2}, "Professor": {"_count": 1}, "showing": {"_count": 1}, "they": {"_count": 1}, "in": {"_count": 4}, "at": {"_count": 2}, "close": {"_count": 1}, "and": {"_count": 8}, "a": {"_count": 1}, "over": {"_count": 3}, "twisting": {"_count": 1}, "distractedly": {"_count": 2}, "as": {"_count": 4}, "impatiently": {"_count": 1}, "stuffed": {"_count": 1}, "along": {"_count": 1}, "tingling": {"_count": 1}, "crossed": {"_count": 1}, "trembling": {"_count": 2}, "from": {"_count": 1}, "grew": {"_count": 1}, "He": {"_count": 1}, "now": {"_count": 1}, "clenched": {"_count": 2}, "staring": {"_count": 2}, "struggling": {"_count": 1}, "ripped": {"_count": 1}, "around": {"_count": 1}, "he": {"_count": 1}, "tightening": {"_count": 1}, "to": {"_count": 1}, "together": {"_count": 1}, "backward": {"_count": 1}, "encountered": {"_count": 1}, "fumbled": {"_count": 1}, "thinking": {"_count": 1}, "looking": {"_count": 1}, "then": {"_count": 1}, "into": {"_count": 1}, "when": {"_count": 1}, "away": {"_count": 1}, "the": {"_count": 1}, "shaking": {"_count": 1}, "tight": {"_count": 1}, "pressed": {"_count": 1}, "Harrys": {"_count": 1}, "watching": {"_count": 1}}, "eyes": {"_count": 526, "fell": {"_count": 6}, "": {"_count": 84}, "glinting": {"_count": 6}, "off": {"_count": 11}, "but": {"_count": 5}, "shut": {"_count": 5}, "was": {"_count": 3}, "ready": {"_count": 1}, "away": {"_count": 7}, "fixed": {"_count": 14}, "for": {"_count": 5}, "when": {"_count": 3}, "glittered": {"_count": 1}, "from": {"_count": 8}, "filled": {"_count": 1}, "lingering": {"_count": 1}, "were": {"_count": 23}, "not": {"_count": 1}, "stepped": {"_count": 1}, "on": {"_count": 23}, "wide": {"_count": 11}, "wider": {"_count": 1}, "closed": {"_count": 6}, "open": {"_count": 1}, "again": {"_count": 12}, "his": {"_count": 6}, "glittering": {"_count": 3}, "gleaming": {"_count": 2}, "raked": {"_count": 1}, "twinkling": {"_count": 8}, "popping": {"_count": 3}, "dancing": {"_count": 1}, "huge": {"_count": 1}, "which": {"_count": 2}, "staring": {"_count": 2}, "just": {"_count": 1}, "against": {"_count": 4}, "and": {"_count": 44}, "because": {"_count": 1}, "screwed": {"_count": 6}, "werent": {"_count": 1}, "frowning": {"_count": 1}, "frantically": {"_count": 1}, "as": {"_count": 7}, "narrowed": {"_count": 2}, "tight": {"_count": 4}, "if": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 9}, "widening": {"_count": 8}, "at": {"_count": 9}, "looked": {"_count": 2}, "there": {"_count": 2}, "until": {"_count": 1}, "almost": {"_count": 2}, "flashing": {"_count": 3}, "wandering": {"_count": 1}, "along": {"_count": 1}, "somber": {"_count": 1}, "a": {"_count": 3}, "bulging": {"_count": 5}, "nevertheless": {"_count": 1}, "with": {"_count": 6}, "red": {"_count": 1}, "in": {"_count": 4}, "Lumos": {"_count": 1}, "moving": {"_count": 2}, "thought": {"_count": 1}, "now": {"_count": 3}, "dart": {"_count": 1}, "darted": {"_count": 1}, "continued": {"_count": 1}, "trying": {"_count": 3}, "tightly": {"_count": 1}, "to": {"_count": 9}, "performed": {"_count": 1}, "too": {"_count": 1}, "blazing": {"_count": 2}, "hardening": {"_count": 1}, "hard": {"_count": 1}, "snapping": {"_count": 1}, "misting": {"_count": 1}, "thats": {"_count": 1}, "still": {"_count": 4}, "brimming": {"_count": 2}, "skinned": {"_count": 1}, "swollen": {"_count": 2}, "very": {"_count": 2}, "alight": {"_count": 1}, "whenever": {"_count": 1}, "skyward": {"_count": 1}, "down": {"_count": 1}, "so": {"_count": 1}, "furious": {"_count": 1}, "while": {"_count": 1}, "upon": {"_count": 2}, "wanting": {"_count": 1}, "blearily": {"_count": 1}, "lingered": {"_count": 1}, "like": {"_count": 2}, "watering": {"_count": 5}, "stung": {"_count": 1}, "Harrys": {"_count": 1}, "instead": {"_count": 1}, "back": {"_count": 1}, "thick": {"_count": 1}, "traveled": {"_count": 1}, "rolling": {"_count": 1}, "traveling": {"_count": 1}, "out": {"_count": 1}, "darting": {"_count": 2}, "slits": {"_count": 1}, "unfocused": {"_count": 2}, "rubbed": {"_count": 1}, "alighted": {"_count": 1}, "they": {"_count": 1}, "flicking": {"_count": 1}, "swaying": {"_count": 1}, "widened": {"_count": 1}, "stream": {"_count": 1}, "saw": {"_count": 1}, "wearily": {"_count": 2}, "scanning": {"_count": 1}, "streaming": {"_count": 1}, "had": {"_count": 1}, "found": {"_count": 1}, "moved": {"_count": 1}, "searching": {"_count": 1}, "merely": {"_count": 1}, "cold": {"_count": 1}, "seemed": {"_count": 1}, "expectantly": {"_count": 1}, "once": {"_count": 1}, "gripping": {"_count": 1}, "The": {"_count": 1}, "burned": {"_count": 1}, "He": {"_count": 2}, "They": {"_count": 1}, "Harry": {"_count": 2}, "flew": {"_count": 1}, "panting": {"_count": 1}, "thinking": {"_count": 1}, "willing": {"_count": 1}, "averted": {"_count": 1}, "the": {"_count": 1}, "raking": {"_count": 1}, "concentrating": {"_count": 1}, "focused": {"_count": 1}, "absently": {"_count": 1}, "momentarily": {"_count": 1}, "is": {"_count": 1}, "flitted": {"_count": 1}, "under": {"_count": 1}, "some": {"_count": 1}, "remained": {"_count": 1}, "by": {"_count": 1}, "an": {"_count": 1}, "whiten": {"_count": 1}}, "back": {"_count": 108, "to": {"_count": 13}, "and": {"_count": 6}, "on": {"_count": 27}, "": {"_count": 17}, "legs": {"_count": 2}, "aching": {"_count": 1}, "pocket": {"_count": 1}, "Dobby": {"_count": 1}, "his": {"_count": 5}, "against": {"_count": 2}, "garden": {"_count": 2}, "killed": {"_count": 1}, "was": {"_count": 1}, "breathing": {"_count": 1}, "purring": {"_count": 1}, "a": {"_count": 1}, "staring": {"_count": 1}, "like": {"_count": 1}, "in": {"_count": 4}, "so": {"_count": 1}, "this": {"_count": 1}, "with": {"_count": 2}, "rigid": {"_count": 1}, "still": {"_count": 1}, "beside": {"_count": 1}, "at": {"_count": 1}, "again": {"_count": 1}, "calling": {"_count": 1}, "then": {"_count": 1}, "looking": {"_count": 1}, "but": {"_count": 1}, "teeth": {"_count": 1}, "Ernie": {"_count": 1}, "Dumbledores": {"_count": 1}, "by": {"_count": 1}, "communicating": {"_count": 1}, "Dobbys": {"_count": 1}, "hastily": {"_count": 1}}, "office": {"_count": 39, "on": {"_count": 1}, "snapped": {"_count": 1}, "leaving": {"_count": 1}, "": {"_count": 9}, "and": {"_count": 4}, "door": {"_count": 3}, "staring": {"_count": 1}, "as": {"_count": 3}, "then": {"_count": 1}, "is": {"_count": 1}, "I": {"_count": 1}, "because": {"_count": 1}, "last": {"_count": 1}, "afterward": {"_count": 1}, "reading": {"_count": 1}, "mournfully": {"_count": 1}, "when": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 1}, "all": {"_count": 1}, "during": {"_count": 1}}, "legs": {"_count": 44, "and": {"_count": 3}, "had": {"_count": 3}, "": {"_count": 6}, "was": {"_count": 2}, "he": {"_count": 1}, "wouldnt": {"_count": 1}, "in": {"_count": 1}, "were": {"_count": 3}, "would": {"_count": 1}, "up": {"_count": 1}, "into": {"_count": 1}, "heavily": {"_count": 1}, "shaking": {"_count": 1}, "didnt": {"_count": 1}, "fractured": {"_count": 1}, "seemed": {"_count": 1}, "searing": {"_count": 1}, "so": {"_count": 1}, "purring": {"_count": 1}, "as": {"_count": 1}, "back": {"_count": 1}, "on": {"_count": 1}, "numb": {"_count": 1}, "hit": {"_count": 1}, "drawn": {"_count": 1}, "still": {"_count": 2}, "continued": {"_count": 1}, "stretched": {"_count": 1}, "apparently": {"_count": 1}, "where": {"_count": 1}, "off": {"_count": 1}}, "way": {"_count": 98, "back": {"_count": 11}, "into": {"_count": 6}, "forward": {"_count": 1}, "to": {"_count": 3}, "down": {"_count": 2}, "by": {"_count": 1}, "more": {"_count": 2}, "along": {"_count": 2}, "around": {"_count": 2}, "swiftly": {"_count": 1}, "out": {"_count": 11}, "through": {"_count": 13}, "onto": {"_count": 1}, "Voldemort": {"_count": 1}, "inside": {"_count": 1}, "over": {"_count": 3}, "up": {"_count": 3}, "toward": {"_count": 5}, "between": {"_count": 2}, "with": {"_count": 1}, "across": {"_count": 1}, "hasnt": {"_count": 1}, "past": {"_count": 2}, "for": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "unblocked": {"_count": 1}, "": {"_count": 2}, "home": {"_count": 1}, "he": {"_count": 1}, "steadily": {"_count": 1}, "slowly": {"_count": 1}, "closer": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 2}, "but": {"_count": 2}, "despite": {"_count": 1}, "blocked": {"_count": 1}, "carefully": {"_count": 1}, "theyre": {"_count": 1}, "was": {"_count": 1}, "nearer": {"_count": 1}}, "secretary": {"_count": 1, "not": {"_count": 1}}, "telephone": {"_count": 1, "and": {"_count": 1}}, "home": {"_count": 2, "number": {"_count": 1}, "comforts": {"_count": 1}}, "mustache": {"_count": 9, "thinking": {"_count": 1}, "at": {"_count": 1}, "missing": {"_count": 1}, "quivering": {"_count": 1}, "": {"_count": 1}, "excitedly": {"_count": 1}, "something": {"_count": 1}, "flutter": {"_count": 1}, "rippling": {"_count": 1}}, "nephew": {"_count": 3, "was": {"_count": 1}, "Harrys": {"_count": 1}, "making": {"_count": 1}}, "face": {"_count": 425, "split": {"_count": 4}, "he": {"_count": 5}, "in": {"_count": 20}, "and": {"_count": 26}, "like": {"_count": 3}, "into": {"_count": 8}, "": {"_count": 128}, "as": {"_count": 15}, "tearstreaked": {"_count": 1}, "the": {"_count": 5}, "but": {"_count": 6}, "because": {"_count": 2}, "stiff": {"_count": 1}, "with": {"_count": 9}, "pale": {"_count": 3}, "blistering": {"_count": 1}, "straight": {"_count": 2}, "horribly": {"_count": 1}, "over": {"_count": 1}, "squinting": {"_count": 1}, "Harry": {"_count": 2}, "Seamus": {"_count": 1}, "shining": {"_count": 2}, "waking": {"_count": 1}, "splattering": {"_count": 1}, "still": {"_count": 3}, "turned": {"_count": 2}, "on": {"_count": 3}, "his": {"_count": 4}, "wore": {"_count": 1}, "stark": {"_count": 1}, "was": {"_count": 21}, "livid": {"_count": 2}, "after": {"_count": 1}, "an": {"_count": 2}, "where": {"_count": 2}, "gleeful": {"_count": 1}, "then": {"_count": 3}, "very": {"_count": 2}, "to": {"_count": 5}, "hot": {"_count": 1}, "glazed": {"_count": 1}, "again": {"_count": 3}, "mingling": {"_count": 1}, "mounted": {"_count": 1}, "free": {"_count": 1}, "impassive": {"_count": 1}, "contorted": {"_count": 2}, "buried": {"_count": 2}, "there": {"_count": 2}, "it": {"_count": 1}, "bloodless": {"_count": 1}, "hidden": {"_count": 2}, "upward": {"_count": 1}, "screwed": {"_count": 4}, "out": {"_count": 1}, "now": {"_count": 3}, "somehow": {"_count": 1}, "pulled": {"_count": 1}, "lit": {"_count": 2}, "redden": {"_count": 1}, "half": {"_count": 1}, "breaking": {"_count": 1}, "reddening": {"_count": 1}, "working": {"_count": 1}, "Accio": {"_count": 1}, "burn": {"_count": 1}, "burning": {"_count": 2}, "scratched": {"_count": 1}, "so": {"_count": 3}, "did": {"_count": 1}, "Voldemort": {"_count": 1}, "you": {"_count": 1}, "purpling": {"_count": 1}, "against": {"_count": 1}, "a": {"_count": 3}, "white": {"_count": 2}, "which": {"_count": 3}, "grow": {"_count": 2}, "averted": {"_count": 1}, "thinking": {"_count": 1}, "contorting": {"_count": 1}, "leaned": {"_count": 1}, "close": {"_count": 1}, "covered": {"_count": 2}, "I": {"_count": 1}, "all": {"_count": 1}, "framed": {"_count": 1}, "barely": {"_count": 1}, "whats": {"_count": 1}, "fell": {"_count": 1}, "growing": {"_count": 1}, "That": {"_count": 1}, "deliberately": {"_count": 1}, "they": {"_count": 1}, "down": {"_count": 1}, "Neville": {"_count": 1}, "anguished": {"_count": 1}, "had": {"_count": 2}, "pressed": {"_count": 2}, "of": {"_count": 1}, "slid": {"_count": 1}, "when": {"_count": 1}, "listening": {"_count": 1}, "toward": {"_count": 1}, "falling": {"_count": 1}, "broke": {"_count": 1}, "expressionless": {"_count": 1}, "remained": {"_count": 1}, "anyway": {"_count": 1}, "sank": {"_count": 1}, "above": {"_count": 1}, "touched": {"_count": 1}, "whitened": {"_count": 1}, "reflected": {"_count": 1}, "paler": {"_count": 1}, "smacking": {"_count": 1}, "that": {"_count": 2}, "gleaming": {"_count": 1}, "shone": {"_count": 1}, "at": {"_count": 1}, "stood": {"_count": 1}, "drained": {"_count": 1}, "glistened": {"_count": 1}, "felt": {"_count": 1}, "away": {"_count": 1}, "seemed": {"_count": 1}, "is": {"_count": 1}, "swelling": {"_count": 1}, "regained": {"_count": 1}, "bruised": {"_count": 1}, "sticking": {"_count": 1}, "cut": {"_count": 1}, "for": {"_count": 1}, "within": {"_count": 1}, "He": {"_count": 1}, "hungrily": {"_count": 1}, "from": {"_count": 1}}, "mood": {"_count": 3, "was": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "garden": {"_count": 1, "wall": {"_count": 1}}, "wife": {"_count": 34, "": {"_count": 8}, "Perenelle": {"_count": 1}, "will": {"_count": 1}, "Petunia": {"_count": 1}, "were": {"_count": 3}, "was": {"_count": 2}, "all": {"_count": 1}, "the": {"_count": 1}, "told": {"_count": 1}, "nervously": {"_count": 1}, "and": {"_count": 3}, "to": {"_count": 2}, "past": {"_count": 1}, "dead": {"_count": 1}, "laid": {"_count": 1}, "children": {"_count": 1}, "know": {"_count": 1}, "she": {"_count": 1}, "made": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}}, "armchair": {"_count": 8, "": {"_count": 2}, "his": {"_count": 1}, "rubbing": {"_count": 1}, "and": {"_count": 3}, "before": {"_count": 1}}, "throat": {"_count": 89, "nervously": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 32}, "for": {"_count": 1}, "importantly": {"_count": 1}, "and": {"_count": 15}, "loudly": {"_count": 5}, "with": {"_count": 1}, "I": {"_count": 1}, "very": {"_count": 1}, "tight": {"_count": 1}, "significantly": {"_count": 2}, "then": {"_count": 2}, "wasnt": {"_count": 1}, "as": {"_count": 1}, "his": {"_count": 2}, "muttered": {"_count": 1}, "into": {"_count": 1}, "obstructed": {"_count": 1}, "still": {"_count": 1}, "too": {"_count": 1}, "the": {"_count": 1}, "rendered": {"_count": 1}, "was": {"_count": 2}, "might": {"_count": 1}, "gruffly": {"_count": 1}, "Aunt": {"_count": 1}, "blistering": {"_count": 1}, "gulped": {"_count": 1}, "Petrificus": {"_count": 1}, "it": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}, "dry": {"_count": 1}, "Harry": {"_count": 1}, "got": {"_count": 1}}, "name": {"_count": 56, "again": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 18}, "everyone": {"_count": 1}, "was": {"_count": 4}, "somewhere": {"_count": 1}, "rearranged": {"_count": 1}, "could": {"_count": 1}, "and": {"_count": 2}, "had": {"_count": 1}, "on": {"_count": 1}, "right": {"_count": 1}, "in": {"_count": 3}, "into": {"_count": 1}, "hadnt": {"_count": 1}, "Crouch": {"_count": 1}, "as": {"_count": 3}, "what": {"_count": 1}, "too": {"_count": 1}, "softly": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 2}, "with": {"_count": 1}, "he": {"_count": 1}, "has": {"_count": 1}, "its": {"_count": 1}, "didnt": {"_count": 1}, "seemed": {"_count": 1}, "breaks": {"_count": 1}}, "heart": {"_count": 92, "sinking": {"_count": 3}, "isnt": {"_count": 1}, "twanging": {"_count": 1}, "": {"_count": 5}, "racing": {"_count": 3}, "thumping": {"_count": 5}, "doing": {"_count": 2}, "beating": {"_count": 4}, "feel": {"_count": 1}, "sank": {"_count": 2}, "was": {"_count": 11}, "lighter": {"_count": 2}, "turn": {"_count": 1}, "banging": {"_count": 1}, "stand": {"_count": 1}, "didnt": {"_count": 1}, "he": {"_count": 1}, "pumping": {"_count": 2}, "suddenly": {"_count": 1}, "felt": {"_count": 1}, "rate": {"_count": 2}, "on": {"_count": 1}, "upon": {"_count": 1}, "pounding": {"_count": 5}, "continued": {"_count": 1}, "lifting": {"_count": 1}, "beat": {"_count": 2}, "Harry": {"_count": 1}, "gave": {"_count": 1}, "hammering": {"_count": 2}, "lay": {"_count": 1}, "now": {"_count": 3}, "sink": {"_count": 1}, "leapt": {"_count": 2}, "leaping": {"_count": 1}, "lift": {"_count": 2}, "would": {"_count": 1}, "skipped": {"_count": 1}, "positively": {"_count": 1}, "and": {"_count": 1}, "still": {"_count": 1}, "without": {"_count": 1}, "where": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}, "skip": {"_count": 1}, "to": {"_count": 1}, "hammered": {"_count": 1}, "They": {"_count": 1}, "Professor": {"_count": 1}, "seemed": {"_count": 1}, "his": {"_count": 1}}, "hair": {"_count": 86, "and": {"_count": 11}, "simply": {"_count": 1}, "so": {"_count": 2}, "exactly": {"_count": 1}, "fixing": {"_count": 1}, "": {"_count": 20}, "was": {"_count": 8}, "net": {"_count": 1}, "as": {"_count": 6}, "out": {"_count": 4}, "more": {"_count": 1}, "lie": {"_count": 2}, "over": {"_count": 1}, "clean": {"_count": 1}, "the": {"_count": 1}, "fly": {"_count": 1}, "using": {"_count": 1}, "Harry": {"_count": 2}, "on": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}, "with": {"_count": 1}, "dry": {"_count": 1}, "back": {"_count": 2}, "while": {"_count": 1}, "making": {"_count": 1}, "again": {"_count": 1}, "said": {"_count": 2}, "under": {"_count": 1}, "flat": {"_count": 1}, "stand": {"_count": 1}, "graying": {"_count": 1}, "rainflecked": {"_count": 1}, "turning": {"_count": 1}, "plastered": {"_count": 1}, "overgrown": {"_count": 1}}, "belt": {"_count": 6, "": {"_count": 3}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "nose": {"_count": 89, "was": {"_count": 12}, "pressed": {"_count": 3}, "with": {"_count": 4}, "": {"_count": 13}, "against": {"_count": 2}, "and": {"_count": 7}, "only": {"_count": 1}, "on": {"_count": 6}, "that": {"_count": 1}, "but": {"_count": 1}, "began": {"_count": 1}, "Harry": {"_count": 2}, "in": {"_count": 4}, "knowingly": {"_count": 1}, "again": {"_count": 2}, "moved": {"_count": 1}, "out": {"_count": 1}, "flat": {"_count": 1}, "where": {"_count": 1}, "heavily": {"_count": 1}, "looked": {"_count": 1}, "touched": {"_count": 1}, "to": {"_count": 1}, "threatening": {"_count": 1}, "did": {"_count": 1}, "evidently": {"_count": 1}, "bloody": {"_count": 1}, "led": {"_count": 1}, "as": {"_count": 3}, "even": {"_count": 1}, "break": {"_count": 1}, "flow": {"_count": 1}, "while": {"_count": 1}, "hard": {"_count": 1}, "or": {"_count": 1}, "got": {"_count": 1}, "an": {"_count": 1}, "inches": {"_count": 1}, "buried": {"_count": 1}, "noisily": {"_count": 1}, "slid": {"_count": 1}, "he": {"_count": 1}}, "boots": {"_count": 3, "was": {"_count": 1}, "to": {"_count": 1}, "up": {"_count": 1}}, "cloak": {"_count": 47, "looking": {"_count": 1}, "and": {"_count": 8}, "suddenly": {"_count": 1}, "tucked": {"_count": 1}, "he": {"_count": 1}, "over": {"_count": 3}, "off": {"_count": 2}, "for": {"_count": 1}, "a": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 11}, "with": {"_count": 2}, "was": {"_count": 2}, "his": {"_count": 1}, "which": {"_count": 2}, "next": {"_count": 1}, "from": {"_count": 1}, "Harrys": {"_count": 1}, "more": {"_count": 1}, "at": {"_count": 1}, "though": {"_count": 1}, "stuffed": {"_count": 1}, "as": {"_count": 1}, "Moody": {"_count": 1}}, "inside": {"_count": 3, "pocket": {"_count": 3}}, "proper": {"_count": 2, "name": {"_count": 1}, "speech": {"_count": 1}}, "pocket": {"_count": 95, "and": {"_count": 34}, "": {"_count": 30}, "before": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 3}, "he": {"_count": 3}, "money": {"_count": 1}, "untied": {"_count": 1}, "then": {"_count": 2}, "set": {"_count": 1}, "speared": {"_count": 1}, "bearing": {"_count": 1}, "stuffed": {"_count": 1}, "for": {"_count": 4}, "Harry": {"_count": 1}, "a": {"_count": 2}, "opened": {"_count": 1}, "with": {"_count": 1}, "This": {"_count": 1}, "knelt": {"_count": 1}, "restoring": {"_count": 1}, "revealing": {"_count": 1}, "the": {"_count": 1}}, "aunt": {"_count": 15, "and": {"_count": 10}, "snapped": {"_count": 1}, "an": {"_count": 1}, "utterly": {"_count": 1}, "for": {"_count": 1}, "uncle": {"_count": 1}}, "mother": {"_count": 76, "all": {"_count": 1}, "": {"_count": 11}, "and": {"_count": 18}, "would": {"_count": 2}, "I": {"_count": 1}, "who": {"_count": 2}, "had": {"_count": 4}, "alight": {"_count": 1}, "again": {"_count": 1}, "the": {"_count": 2}, "was": {"_count": 5}, "roused": {"_count": 1}, "as": {"_count": 1}, "came": {"_count": 1}, "likes": {"_count": 1}, "really": {"_count": 1}, "by": {"_count": 1}, "with": {"_count": 1}, "once": {"_count": 1}, "on": {"_count": 2}, "his": {"_count": 3}, "said": {"_count": 1}, "pushed": {"_count": 1}, "see": {"_count": 1}, "dropped": {"_count": 1}, "hoisted": {"_count": 1}, "to": {"_count": 2}, "she": {"_count": 1}, "home": {"_count": 1}, "at": {"_count": 1}, "or": {"_count": 1}, "doing": {"_count": 1}, "stood": {"_count": 1}, "walk": {"_count": 1}, "smiled": {"_count": 1}}, "halfmoon": {"_count": 15, "glasses": {"_count": 3}, "spectacles": {"_count": 12}}, "feet": {"_count": 324, "in": {"_count": 4}, "": {"_count": 85}, "so": {"_count": 3}, "but": {"_count": 11}, "again": {"_count": 19}, "on": {"_count": 1}, "trembling": {"_count": 2}, "I": {"_count": 1}, "were": {"_count": 4}, "and": {"_count": 53}, "landing": {"_count": 1}, "caught": {"_count": 1}, "veins": {"_count": 1}, "just": {"_count": 1}, "as": {"_count": 8}, "holding": {"_count": 1}, "along": {"_count": 1}, "he": {"_count": 5}, "He": {"_count": 1}, "his": {"_count": 6}, "slipping": {"_count": 1}, "numb": {"_count": 1}, "hit": {"_count": 3}, "looking": {"_count": 2}, "at": {"_count": 5}, "a": {"_count": 2}, "then": {"_count": 2}, "ready": {"_count": 1}, "111": {"_count": 1}, "too": {"_count": 5}, "with": {"_count": 2}, "very": {"_count": 1}, "though": {"_count": 3}, "thundering": {"_count": 1}, "Ron": {"_count": 1}, "stretched": {"_count": 1}, "smiling": {"_count": 2}, "found": {"_count": 2}, "waving": {"_count": 1}, "swigging": {"_count": 1}, "to": {"_count": 5}, "wincing": {"_count": 1}, "trod": {"_count": 1}, "hiding": {"_count": 1}, "wanting": {"_count": 1}, "yawning": {"_count": 1}, "barely": {"_count": 1}, "dangling": {"_count": 1}, "rubbing": {"_count": 2}, "slam": {"_count": 1}, "reached": {"_count": 1}, "lift": {"_count": 1}, "carried": {"_count": 1}, "Harry": {"_count": 4}, "pulling": {"_count": 1}, "once": {"_count": 3}, "staring": {"_count": 1}, "this": {"_count": 1}, "while": {"_count": 1}, "allowing": {"_count": 1}, "taking": {"_count": 1}, "looked": {"_count": 1}, "showing": {"_count": 1}, "feeling": {"_count": 1}, "glaring": {"_count": 1}, "slowly": {"_count": 1}, "stuffed": {"_count": 1}, "halfway": {"_count": 1}, "now": {"_count": 1}, "wand": {"_count": 1}, "still": {"_count": 2}, "the": {"_count": 4}, "sobbing": {"_count": 1}, "leave": {"_count": 2}, "right": {"_count": 1}, "masked": {"_count": 1}, "up": {"_count": 1}, "clattering": {"_count": 1}, "quickly": {"_count": 1}, "immediately": {"_count": 1}, "resting": {"_count": 1}, "left": {"_count": 1}, "dragged": {"_count": 1}, "slide": {"_count": 1}, "before": {"_count": 1}, "for": {"_count": 1}, "shaking": {"_count": 1}, "cringing": {"_count": 1}, "His": {"_count": 1}, "thinking": {"_count": 1}, "was": {"_count": 1}, "which": {"_count": 1}, "picked": {"_count": 1}, "by": {"_count": 2}, "drew": {"_count": 1}, "knelt": {"_count": 1}, "is": {"_count": 1}, "walked": {"_count": 1}, "when": {"_count": 1}, "unarmed": {"_count": 1}, "Hidden": {"_count": 1}}, "vast": {"_count": 4, "muscular": {"_count": 1}, "orblike": {"_count": 1}, "forehead": {"_count": 1}, "web": {"_count": 1}}, "forehead": {"_count": 75, "they": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 24}, "with": {"_count": 4}, "which": {"_count": 2}, "was": {"_count": 3}, "on": {"_count": 4}, "in": {"_count": 1}, "told": {"_count": 1}, "furrowed": {"_count": 1}, "clearly": {"_count": 1}, "where": {"_count": 1}, "wrinkled": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 6}, "but": {"_count": 3}, "seared": {"_count": 2}, "relic": {"_count": 1}, "has": {"_count": 1}, "prickled": {"_count": 1}, "or": {"_count": 1}, "burned": {"_count": 2}, "pressed": {"_count": 1}, "had": {"_count": 1}, "as": {"_count": 1}, "throbbing": {"_count": 2}, "angrily": {"_count": 1}, "for": {"_count": 1}, "starting": {"_count": 1}, "it": {"_count": 1}, "thinking": {"_count": 1}, "pierced": {"_count": 1}}, "arms": {"_count": 103, "and": {"_count": 22}, "opened": {"_count": 3}, "around": {"_count": 6}, "pinned": {"_count": 1}, "were": {"_count": 3}, "": {"_count": 16}, "over": {"_count": 6}, "hurried": {"_count": 1}, "despite": {"_count": 1}, "but": {"_count": 2}, "to": {"_count": 4}, "folded": {"_count": 3}, "where": {"_count": 2}, "slightly": {"_count": 1}, "so": {"_count": 1}, "raised": {"_count": 2}, "full": {"_count": 1}, "lifted": {"_count": 1}, "under": {"_count": 1}, "his": {"_count": 1}, "shaking": {"_count": 2}, "clamped": {"_count": 1}, "stretched": {"_count": 1}, "in": {"_count": 2}, "wide": {"_count": 3}, "legs": {"_count": 1}, "as": {"_count": 4}, "trembling": {"_count": 1}, "above": {"_count": 1}, "overlong": {"_count": 1}, "outstretched": {"_count": 3}, "out": {"_count": 1}, "gave": {"_count": 1}, "wrapped": {"_count": 1}, "beat": {"_count": 1}, "He": {"_count": 1}}, "great": {"_count": 32, "shaggy": {"_count": 5}, "relief": {"_count": 2}, "hand": {"_count": 1}, "eyes": {"_count": 2}, "bristling": {"_count": 1}, "purple": {"_count": 2}, "surprise": {"_count": 5}, "sharp": {"_count": 1}, "fear": {"_count": 1}, "yellow": {"_count": 1}, "fists": {"_count": 1}, "velvetcovered": {"_count": 1}, "walrus": {"_count": 1}, "orblike": {"_count": 1}, "spotted": {"_count": 1}, "ugly": {"_count": 1}, "black": {"_count": 1}, "bloodshot": {"_count": 1}, "pale": {"_count": 1}, "domed": {"_count": 1}, "bearded": {"_count": 1}}, "streaming": {"_count": 4, "eyes": {"_count": 3}, "nose": {"_count": 1}}, "jacket": {"_count": 20, "sleeve": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 6}, "for": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "Dumbledore": {"_count": 1}, "pocket": {"_count": 3}, "to": {"_count": 1}, "he": {"_count": 1}}, "heel": {"_count": 10, "and": {"_count": 6}, "": {"_count": 1}, "to": {"_count": 1}, "vaulted": {"_count": 1}, "was": {"_count": 1}}, "blankets": {"_count": 1, "without": {"_count": 1}}, "cousin": {"_count": 13, "Dudley": {"_count": 3}, "anymore": {"_count": 1}, "": {"_count": 4}, "the": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "Bellatrix": {"_count": 1}, "who": {"_count": 1}}, "first": {"_count": 42, "bicycle": {"_count": 1}, "day": {"_count": 3}, "bedroom": {"_count": 1}, "letter": {"_count": 1}, "match": {"_count": 1}, "Quidditch": {"_count": 2}, "words": {"_count": 1}, "year": {"_count": 5}, "ever": {"_count": 2}, "Defense": {"_count": 1}, "visit": {"_count": 1}, "attempt": {"_count": 2}, "lesson": {"_count": 1}, "step": {"_count": 1}, "chance": {"_count": 1}, "job": {"_count": 2}, "detention": {"_count": 1}, "foray": {"_count": 1}, "Occlumency": {"_count": 1}, "save": {"_count": 1}, "faint": {"_count": 1}, "name": {"_count": 1}, "pod": {"_count": 1}, "as": {"_count": 1}, "circuit": {"_count": 1}, "since": {"_count": 1}, "would": {"_count": 1}, "nightmarish": {"_count": 1}, "broomstick": {"_count": 1}, "real": {"_count": 1}, "kingdom": {"_count": 1}, "term": {"_count": 1}}, "father": {"_count": 90, "being": {"_count": 1}, "": {"_count": 17}, "a": {"_count": 4}, "with": {"_count": 1}, "had": {"_count": 14}, "drumming": {"_count": 1}, "what": {"_count": 1}, "waving": {"_count": 1}, "rang": {"_count": 1}, "and": {"_count": 10}, "he": {"_count": 2}, "the": {"_count": 2}, "all": {"_count": 1}, "his": {"_count": 3}, "never": {"_count": 1}, "was": {"_count": 1}, "you": {"_count": 1}, "for": {"_count": 1}, "who": {"_count": 4}, "anymore": {"_count": 1}, "Sirius": {"_count": 2}, "tormenting": {"_count": 1}, "before": {"_count": 1}, "as": {"_count": 2}, "cast": {"_count": 1}, "warningly": {"_count": 1}, "attempted": {"_count": 1}, "use": {"_count": 1}, "nor": {"_count": 1}, "or": {"_count": 1}, "Percival": {"_count": 1}, "to": {"_count": 1}, "might": {"_count": 1}, "looked": {"_count": 1}, "slight": {"_count": 1}, "join": {"_count": 1}, "has": {"_count": 1}, "over": {"_count": 1}, "nodded": {"_count": 1}, "alone": {"_count": 1}}, "bed": {"_count": 78, "and": {"_count": 13}, "": {"_count": 23}, "reading": {"_count": 2}, "or": {"_count": 1}, "watching": {"_count": 1}, "Ron": {"_count": 1}, "without": {"_count": 3}, "sneaking": {"_count": 1}, "put": {"_count": 1}, "thrown": {"_count": 1}, "for": {"_count": 4}, "drew": {"_count": 1}, "where": {"_count": 2}, "when": {"_count": 1}, "with": {"_count": 2}, "revealing": {"_count": 1}, "a": {"_count": 1}, "wrenched": {"_count": 1}, "in": {"_count": 2}, "on": {"_count": 1}, "his": {"_count": 1}, "all": {"_count": 1}, "settled": {"_count": 1}, "picked": {"_count": 1}, "got": {"_count": 1}, "then": {"_count": 1}, "strangled": {"_count": 1}, "it": {"_count": 1}, "rubbing": {"_count": 1}, "refusing": {"_count": 1}, "they": {"_count": 1}, "again": {"_count": 1}, "at": {"_count": 1}, "fully": {"_count": 1}, "desiring": {"_count": 1}}, "age": {"_count": 3, "": {"_count": 2}, "had": {"_count": 1}}, "own": {"_count": 364, "appearance": {"_count": 1}, "joke": {"_count": 1}, "story": {"_count": 1}, "sort": {"_count": 1}, "subject": {"_count": 1}, "wand": {"_count": 34}, "pile": {"_count": 1}, "and": {"_count": 7}, "new": {"_count": 1}, "bed": {"_count": 4}, "Quidditch": {"_count": 1}, "": {"_count": 32}, "one": {"_count": 1}, "reasons": {"_count": 1}, "palms": {"_count": 1}, "list": {"_count": 1}, "face": {"_count": 7}, "gleaming": {"_count": 1}, "House": {"_count": 1}, "son": {"_count": 5}, "winking": {"_count": 1}, "desk": {"_count": 1}, "pounding": {"_count": 2}, "homework": {"_count": 1}, "true": {"_count": 1}, "head": {"_count": 5}, "life": {"_count": 3}, "toilet": {"_count": 1}, "ribs": {"_count": 1}, "blood": {"_count": 5}, "powers": {"_count": 1}, "daughter": {"_count": 1}, "Hedwig": {"_count": 1}, "trunk": {"_count": 4}, "name": {"_count": 4}, "breath": {"_count": 3}, "students": {"_count": 1}, "roots": {"_count": 1}, "beautifully": {"_count": 1}, "classes": {"_count": 1}, "around": {"_count": 1}, "star": {"_count": 1}, "botched": {"_count": 1}, "legs": {"_count": 1}, "presents": {"_count": 1}, "skin": {"_count": 1}, "work": {"_count": 1}, "watch": {"_count": 1}, "waiting": {"_count": 1}, "death": {"_count": 6}, "voice": {"_count": 3}, "leg": {"_count": 1}, "attempts": {"_count": 1}, "father": {"_count": 2}, "homemade": {"_count": 1}, "grapefruit": {"_count": 2}, "shamrock": {"_count": 1}, "children": {"_count": 1}, "throat": {"_count": 3}, "ears": {"_count": 2}, "Firebolt": {"_count": 1}, "pajamas": {"_count": 2}, "sleeves": {"_count": 1}, "daring": {"_count": 2}, "fourposter": {"_count": 2}, "food": {"_count": 2}, "free": {"_count": 1}, "Hermione": {"_count": 1}, "foot": {"_count": 1}, "invention": {"_count": 1}, "menu": {"_count": 1}, "hand": {"_count": 6}, "safety": {"_count": 1}, "elf": {"_count": 1}, "but": {"_count": 1}, "steam": {"_count": 1}, "body": {"_count": 6}, "silvery": {"_count": 1}, "for": {"_count": 1}, "picture": {"_count": 2}, "that": {"_count": 1}, "brilliance": {"_count": 1}, "it": {"_count": 1}, "chest": {"_count": 1}, "weight": {"_count": 1}, "magical": {"_count": 1}, "is": {"_count": 1}, "frustration": {"_count": 1}, "lungs": {"_count": 1}, "shoulders": {"_count": 1}, "eyes": {"_count": 3}, "accord": {"_count": 2}, "hopes": {"_count": 1}, "feelings": {"_count": 1}, "again": {"_count": 2}, "dead": {"_count": 1}, "defense": {"_count": 1}, "team": {"_count": 1}, "private": {"_count": 2}, "bag": {"_count": 1}, "cloak": {"_count": 1}, "fake": {"_count": 1}, "interlocked": {"_count": 1}, "his": {"_count": 1}, "wondering": {"_count": 1}, "with": {"_count": 2}, "rather": {"_count": 1}, "feet": {"_count": 1}, "thoughts": {"_count": 3}, "mouth": {"_count": 2}, "memories": {"_count": 1}, "examination": {"_count": 1}, "fallen": {"_count": 1}, "bat": {"_count": 1}, "mind": {"_count": 2}, "strength": {"_count": 1}, "people": {"_count": 1}, "arm": {"_count": 2}, "Stunning": {"_count": 1}, "rage": {"_count": 1}, "sense": {"_count": 1}, "temple": {"_count": 1}, "reflection": {"_count": 2}, "broad": {"_count": 1}, "scaredlooking": {"_count": 1}, "office": {"_count": 1}, "whiskey": {"_count": 1}, "results": {"_count": 1}, "inscrutable": {"_count": 1}, "mother": {"_count": 1}, "invitation": {"_count": 1}, "seat": {"_count": 1}, "nose": {"_count": 1}, "quivering": {"_count": 1}, "goggles": {"_count": 1}, "flesh": {"_count": 1}, "knees": {"_count": 1}, "recollections": {"_count": 1}, "hoop": {"_count": 1}, "hands": {"_count": 1}, "goblet": {"_count": 1}, "gnarled": {"_count": 1}, "book": {"_count": 1}, "potion": {"_count": 1}, "precious": {"_count": 1}, "superiority": {"_count": 1}, "ends": {"_count": 1}, "gain": {"_count": 1}, "soul": {"_count": 1}, "traveling": {"_count": 1}, "lack": {"_count": 1}, "invisible": {"_count": 1}, "question": {"_count": 1}, "hammering": {"_count": 1}, "sleeve": {"_count": 2}, "grief": {"_count": 1}, "clutching": {"_count": 1}, "long": {"_count": 1}, "lap": {"_count": 1}, "bright": {"_count": 2}, "glass": {"_count": 1}, "into": {"_count": 1}, "train": {"_count": 1}, "two": {"_count": 1}, "robes": {"_count": 1}, "tableclothsized": {"_count": 1}, "house": {"_count": 2}, "stupidity": {"_count": 1}, "pound": {"_count": 1}, "hair": {"_count": 1}, "there": {"_count": 1}, "shock": {"_count": 1}, "longfingered": {"_count": 1}, "wit": {"_count": 1}, "while": {"_count": 1}, "The": {"_count": 1}, "neck": {"_count": 2}, "fear": {"_count": 1}, "Over": {"_count": 1}, "presumption": {"_count": 1}, "I": {"_count": 1}, "heart": {"_count": 1}, "frantic": {"_count": 1}, "sentimental": {"_count": 1}, "family": {"_count": 1}, "age": {"_count": 1}, "disillusionment": {"_count": 1}, "back": {"_count": 1}, "Cloak": {"_count": 1}, "destination": {"_count": 1}, "home": {"_count": 1}, "cellar": {"_count": 1}, "astonished": {"_count": 1}, "right": {"_count": 1}, "splitting": {"_count": 1}, "Mark": {"_count": 1}, "then": {"_count": 1}, "present": {"_count": 1}, "jacket": {"_count": 1}, "happiness": {"_count": 1}, "telling": {"_count": 1}, "country": {"_count": 1}, "knotted": {"_count": 1}, "disappointment": {"_count": 1}, "Harrys": {"_count": 1}, "through": {"_count": 1}, "fist": {"_count": 1}, "breathing": {"_count": 1}, "destruction": {"_count": 1}, "living": {"_count": 1}, "assumption": {"_count": 1}, "trembling": {"_count": 1}, "a": {"_count": 1}, "magic": {"_count": 1}, "survival": {"_count": 1}, "manner": {"_count": 1}, "spell": {"_count": 1}, "rebounding": {"_count": 1}, "composition": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "newspaper": {"_count": 6, "and": {"_count": 2}, "as": {"_count": 2}, "the": {"_count": 1}, "at": {"_count": 1}}, "class": {"_count": 6, "put": {"_count": 1}, "to": {"_count": 1}, "saying": {"_count": 1}, "Ron": {"_count": 1}, "at": {"_count": 1}, "again": {"_count": 1}}, "thick": {"_count": 8, "fat": {"_count": 1}, "black": {"_count": 1}, "snowflecked": {"_count": 1}, "silver": {"_count": 1}, "arms": {"_count": 1}, "fingers": {"_count": 2}, "shiny": {"_count": 1}}, "presents": {"_count": 4, "": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}}, "bacon": {"_count": 7, "as": {"_count": 1}, "to": {"_count": 1}, "sandwiches": {"_count": 1}, "": {"_count": 1}, "both": {"_count": 1}, "rinds": {"_count": 1}, "with": {"_count": 1}}, "moneys": {"_count": 1, "worth": {"_count": 1}}, "parents": {"_count": 64, "took": {"_count": 1}, "had": {"_count": 8}, "at": {"_count": 2}, "are": {"_count": 1}, "and": {"_count": 3}, "disappearing": {"_count": 1}, "": {"_count": 9}, "dead": {"_count": 1}, "wedding": {"_count": 1}, "last": {"_count": 1}, "again": {"_count": 1}, "voices": {"_count": 2}, "best": {"_count": 2}, "would": {"_count": 3}, "tent": {"_count": 1}, "deaths": {"_count": 3}, "whereabouts": {"_count": 1}, "Oh": {"_count": 1}, "too": {"_count": 1}, "fourteenyearold": {"_count": 1}, "were": {"_count": 2}, "pictures": {"_count": 1}, "beaming": {"_count": 2}, "attackers": {"_count": 1}, "shouting": {"_count": 1}, "murder": {"_count": 1}, "flair": {"_count": 1}, "or": {"_count": 1}, "like": {"_count": 1}, "then": {"_count": 1}, "from": {"_count": 1}, "graves": {"_count": 1}, "smiling": {"_count": 1}, "faces": {"_count": 1}, "moldering": {"_count": 1}, "grave": {"_count": 1}, "Sirius": {"_count": 1}, "immediately": {"_count": 1}}, "mothers": {"_count": 33, "arms": {"_count": 2}, "face": {"_count": 1}, "eye": {"_count": 4}, "orders": {"_count": 1}, "life": {"_count": 1}, "voice": {"_count": 3}, "death": {"_count": 2}, "anxious": {"_count": 1}, "sister": {"_count": 1}, "": {"_count": 2}, "portrait": {"_count": 1}, "heart": {"_count": 1}, "boots": {"_count": 1}, "room": {"_count": 1}, "old": {"_count": 1}, "letter": {"_count": 5}, "house": {"_count": 1}, "fathers": {"_count": 1}, "clutches": {"_count": 1}, "words": {"_count": 1}, "foolishness": {"_count": 1}}, "luck": {"_count": 4, "was": {"_count": 1}, "breaking": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "life": {"_count": 86, "": {"_count": 27}, "he": {"_count": 5}, "a": {"_count": 1}, "being": {"_count": 1}, "and": {"_count": 6}, "until": {"_count": 1}, "because": {"_count": 1}, "had": {"_count": 1}, "depended": {"_count": 2}, "when": {"_count": 1}, "Harry": {"_count": 2}, "that": {"_count": 1}, "as": {"_count": 2}, "but": {"_count": 1}, "looking": {"_count": 1}, "people": {"_count": 1}, "standing": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 2}, "almost": {"_count": 1}, "the": {"_count": 3}, "let": {"_count": 1}, "asked": {"_count": 1}, "once": {"_count": 1}, "anyway": {"_count": 1}, "his": {"_count": 1}, "And": {"_count": 1}, "phoenix": {"_count": 1}, "on": {"_count": 2}, "knocking": {"_count": 1}, "hell": {"_count": 1}, "while": {"_count": 1}, "at": {"_count": 2}, "seemed": {"_count": 1}, "must": {"_count": 1}, "just": {"_count": 1}, "by": {"_count": 1}, "since": {"_count": 1}, "was": {"_count": 1}, "Imperiol": {"_count": 1}, "span": {"_count": 1}, "toward": {"_count": 1}, "from": {"_count": 1}}, "large": {"_count": 16, "purple": {"_count": 3}, "crossbow": {"_count": 1}, "white": {"_count": 1}, "and": {"_count": 1}, "bushy": {"_count": 1}, "friend": {"_count": 1}, "feet": {"_count": 1}, "blond": {"_count": 1}, "yellow": {"_count": 1}, "bare": {"_count": 1}, "round": {"_count": 1}, "droopy": {"_count": 1}, "spotted": {"_count": 1}, "pink": {"_count": 1}}, "bangs": {"_count": 4, "which": {"_count": 1}, "to": {"_count": 1}, "again": {"_count": 1}, "down": {"_count": 1}}, "baggy": {"_count": 2, "clothes": {"_count": 1}, "old": {"_count": 1}}, "cupboard": {"_count": 14, "for": {"_count": 1}, "was": {"_count": 1}, "or": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 1}, "and": {"_count": 1}, "force": {"_count": 1}, "in": {"_count": 1}, "one": {"_count": 1}, "watched": {"_count": 1}}, "favorite": {"_count": 16, "subjects": {"_count": 1}, "program": {"_count": 1}, "way": {"_count": 1}, "Quidditch": {"_count": 1}, "carols": {"_count": 1}, "shop": {"_count": 1}, "haunts": {"_count": 1}, "treacle": {"_count": 1}, "squashy": {"_count": 1}, "student": {"_count": 1}, "crystalized": {"_count": 1}, "teapot": {"_count": 1}, "time": {"_count": 1}, "pupil": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}}, "seat": {"_count": 54, "and": {"_count": 13}, "looking": {"_count": 3}, "to": {"_count": 5}, "grinning": {"_count": 1}, "very": {"_count": 1}, "tip": {"_count": 1}, "": {"_count": 11}, "onto": {"_count": 1}, "first": {"_count": 1}, "following": {"_count": 1}, "throwing": {"_count": 1}, "as": {"_count": 2}, "at": {"_count": 3}, "behind": {"_count": 1}, "watching": {"_count": 1}, "that": {"_count": 1}, "with": {"_count": 2}, "transferred": {"_count": 1}, "in": {"_count": 1}, "intending": {"_count": 1}, "the": {"_count": 1}, "Im": {"_count": 1}}, "asking": {"_count": 1, "questions": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "knickerbocker": {"_count": 1, "glory": {"_count": 1}}, "knuckles": {"_count": 13, "but": {"_count": 2}, "in": {"_count": 3}, "": {"_count": 2}, "white": {"_count": 1}, "and": {"_count": 1}, "threateningly": {"_count": 1}, "whiten": {"_count": 1}, "menacingly": {"_count": 1}, "into": {"_count": 1}}, "leg": {"_count": 31, "while": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 11}, "wasnt": {"_count": 1}, "ripped": {"_count": 1}, "and": {"_count": 2}, "against": {"_count": 1}, "which": {"_count": 2}, "over": {"_count": 3}, "was": {"_count": 4}, "kicking": {"_count": 1}, "connected": {"_count": 1}, "gingerly": {"_count": 1}, "his": {"_count": 1}}, "dark": {"_count": 10, "cupboard": {"_count": 1}, "eyes": {"_count": 3}, "bedroom": {"_count": 2}, "cold": {"_count": 1}, "hair": {"_count": 2}, "robes": {"_count": 1}}, "memory": {"_count": 13, "during": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 4}, "modified": {"_count": 1}, "he": {"_count": 2}, "to": {"_count": 2}, "might": {"_count": 1}, "for": {"_count": 1}}, "only": {"_count": 10, "family": {"_count": 1}, "hope": {"_count": 1}, "chance": {"_count": 3}, "weapon": {"_count": 1}, "comfort": {"_count": 1}, "correspondent": {"_count": 1}, "remaining": {"_count": 1}, "regular": {"_count": 1}}, "hand": {"_count": 305, "in": {"_count": 9}, "trembling": {"_count": 1}, "by": {"_count": 2}, "": {"_count": 74}, "out": {"_count": 3}, "and": {"_count": 25}, "at": {"_count": 3}, "tears": {"_count": 1}, "almost": {"_count": 1}, "to": {"_count": 19}, "vigorously": {"_count": 2}, "a": {"_count": 1}, "after": {"_count": 1}, "when": {"_count": 1}, "which": {"_count": 2}, "on": {"_count": 9}, "into": {"_count": 14}, "for": {"_count": 6}, "wrung": {"_count": 1}, "as": {"_count": 12}, "ready": {"_count": 1}, "grubby": {"_count": 1}, "eagerly": {"_count": 2}, "clenched": {"_count": 3}, "automatically": {"_count": 1}, "solemnly": {"_count": 1}, "was": {"_count": 6}, "slowly": {"_count": 1}, "but": {"_count": 2}, "seemed": {"_count": 1}, "over": {"_count": 5}, "not": {"_count": 2}, "so": {"_count": 5}, "pulled": {"_count": 1}, "impatiently": {"_count": 1}, "had": {"_count": 4}, "back": {"_count": 1}, "whizzing": {"_count": 1}, "nervously": {"_count": 1}, "outstretched": {"_count": 5}, "from": {"_count": 1}, "held": {"_count": 1}, "though": {"_count": 2}, "inside": {"_count": 7}, "under": {"_count": 1}, "up": {"_count": 1}, "let": {"_count": 1}, "thrust": {"_count": 1}, "seized": {"_count": 1}, "still": {"_count": 2}, "briefly": {"_count": 1}, "said": {"_count": 2}, "I": {"_count": 1}, "with": {"_count": 1}, "wrapped": {"_count": 1}, "healed": {"_count": 1}, "herself": {"_count": 1}, "or": {"_count": 1}, "throbbed": {"_count": 1}, "now": {"_count": 1}, "would": {"_count": 1}, "that": {"_count": 2}, "the": {"_count": 2}, "hit": {"_count": 1}, "yet": {"_count": 1}, "Draco": {"_count": 1}, "shaking": {"_count": 2}, "forward": {"_count": 1}, "toward": {"_count": 1}, "drift": {"_count": 1}, "holding": {"_count": 1}, "upon": {"_count": 3}, "trying": {"_count": 1}, "shook": {"_count": 1}, "tightly": {"_count": 1}, "palm": {"_count": 1}, "waited": {"_count": 1}, "flew": {"_count": 1}, "again": {"_count": 2}, "crushed": {"_count": 1}, "flying": {"_count": 1}, "leaving": {"_count": 1}, "without": {"_count": 1}, "wordlessly": {"_count": 1}, "pressed": {"_count": 1}, "around": {"_count": 1}, "slightly": {"_count": 1}, "closed": {"_count": 1}, "looking": {"_count": 1}, "about": {"_count": 1}, "actually": {"_count": 1}, "tremble": {"_count": 1}, "it": {"_count": 1}, "waiting": {"_count": 1}, "three": {"_count": 1}, "instinctively": {"_count": 1}, "staring": {"_count": 1}, "absentmindedly": {"_count": 1}}, "longestever": {"_count": 1, "punishment": {"_count": 1}}, "new": {"_count": 29, "video": {"_count": 1}, "knickerbockers": {"_count": 1}, "room": {"_count": 1}, "owl": {"_count": 1}, "broomstick": {"_count": 2}, "chess": {"_count": 1}, "tactics": {"_count": 1}, "sweater": {"_count": 1}, "schoolbooks": {"_count": 1}, "books": {"_count": 1}, "things": {"_count": 1}, "job": {"_count": 1}, "socks": {"_count": 1}, "silver": {"_count": 1}, "broom": {"_count": 2}, "Cleansweep": {"_count": 1}, "homework": {"_count": 1}, "mistress": {"_count": 1}, "classes": {"_count": 1}, "team": {"_count": 1}, "evidence": {"_count": 1}, "copy": {"_count": 1}, "brutally": {"_count": 1}, "robes": {"_count": 1}, "best": {"_count": 2}, "selfabsorption": {"_count": 1}}, "remote": {"_count": 1, "control": {"_count": 1}}, "racing": {"_count": 1, "bike": {"_count": 1}}, "Smeltings": {"_count": 1, "uniform": {"_count": 1}}, "brandnew": {"_count": 1, "uniform": {"_count": 1}}, "ribs": {"_count": 18, "might": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 7}, "were": {"_count": 1}, "would": {"_count": 1}, "but": {"_count": 1}, "splinter": {"_count": 1}, "and": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "like": {"_count": 1}}, "Smelting": {"_count": 4, "stick": {"_count": 4}}, "paper": {"_count": 8, "": {"_count": 2}, "and": {"_count": 2}, "with": {"_count": 1}, "scuffing": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}}, "whole": {"_count": 20, "life": {"_count": 6}, "attention": {"_count": 1}, "year": {"_count": 1}, "weight": {"_count": 1}, "body": {"_count": 5}, "brain": {"_count": 1}, "being": {"_count": 1}, "face": {"_count": 2}, "hand": {"_count": 1}, "story": {"_count": 1}}, "letter": {"_count": 14, "": {"_count": 7}, "which": {"_count": 1}, "open": {"_count": 1}, "to": {"_count": 2}, "It": {"_count": 1}, "from": {"_count": 1}, "arrived": {"_count": 1}}, "reach": {"_count": 1, "": {"_count": 1}}, "glasses": {"_count": 83, "dangling": {"_count": 2}, "askew": {"_count": 6}, "off": {"_count": 2}, "he": {"_count": 3}, "snap": {"_count": 1}, "on": {"_count": 4}, "slip": {"_count": 1}, "and": {"_count": 19}, "kept": {"_count": 1}, "": {"_count": 13}, "were": {"_count": 3}, "back": {"_count": 4}, "which": {"_count": 2}, "put": {"_count": 1}, "fell": {"_count": 2}, "that": {"_count": 1}, "as": {"_count": 1}, "from": {"_count": 1}, "blinking": {"_count": 1}, "with": {"_count": 3}, "but": {"_count": 1}, "slipped": {"_count": 1}, "gone": {"_count": 1}, "lying": {"_count": 1}, "still": {"_count": 1}, "splattered": {"_count": 1}, "straight": {"_count": 1}, "Rons": {"_count": 1}, "out": {"_count": 1}, "inside": {"_count": 1}, "making": {"_count": 1}, "They": {"_count": 1}}, "stomach": {"_count": 84, "to": {"_count": 2}, "rumbling": {"_count": 1}, "": {"_count": 27}, "disappear": {"_count": 1}, "gave": {"_count": 3}, "dropping": {"_count": 1}, "had": {"_count": 2}, "in": {"_count": 1}, "Harry": {"_count": 3}, "clench": {"_count": 2}, "he": {"_count": 1}, "contract": {"_count": 1}, "and": {"_count": 5}, "that": {"_count": 2}, "writhing": {"_count": 1}, "at": {"_count": 2}, "as": {"_count": 6}, "every": {"_count": 2}, "flooded": {"_count": 1}, "drop": {"_count": 1}, "warming": {"_count": 1}, "turned": {"_count": 1}, "when": {"_count": 1}, "for": {"_count": 1}, "churned": {"_count": 1}, "did": {"_count": 1}, "peashooter": {"_count": 1}, "the": {"_count": 1}, "leapt": {"_count": 1}, "It": {"_count": 1}, "perform": {"_count": 1}, "floor": {"_count": 1}, "seemed": {"_count": 2}, "but": {"_count": 1}, "So": {"_count": 1}, "until": {"_count": 1}, "Colin": {"_count": 1}, "told": {"_count": 1}}, "uncle": {"_count": 14, "": {"_count": 1}, "spraying": {"_count": 1}, "looked": {"_count": 1}, "could": {"_count": 1}, "entered": {"_count": 1}, "whenever": {"_count": 1}, "took": {"_count": 1}, "was": {"_count": 2}, "bellowed": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}, "now": {"_count": 1}}, "foot": {"_count": 31, "through": {"_count": 1}, "": {"_count": 8}, "where": {"_count": 1}, "on": {"_count": 4}, "down": {"_count": 3}, "vanished": {"_count": 1}, "instead": {"_count": 1}, "again": {"_count": 1}, "connect": {"_count": 1}, "slowly": {"_count": 2}, "and": {"_count": 2}, "was": {"_count": 1}, "broke": {"_count": 1}, "to": {"_count": 1}, "caught": {"_count": 1}, "the": {"_count": 1}, "slipped": {"_count": 1}}, "tortoise": {"_count": 1, "through": {"_count": 1}}, "room": {"_count": 21, "back": {"_count": 1}, "with": {"_count": 1}, "around": {"_count": 1}, "if": {"_count": 1}, "collecting": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}, "went": {"_count": 1}, "and": {"_count": 3}, "again": {"_count": 1}, "yesterday": {"_count": 1}, "all": {"_count": 1}, "through": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}, "like": {"_count": 1}}, "horror": {"_count": 8, "Harry": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "felt": {"_count": 1}, "that": {"_count": 1}}, "uncles": {"_count": 7, "face": {"_count": 1}, "temper": {"_count": 1}, "mind": {"_count": 2}, "sausage": {"_count": 1}, "temple": {"_count": 1}, "big": {"_count": 1}}, "newspapers": {"_count": 1, "no": {"_count": 1}}, "television": {"_count": 2, "VCR": {"_count": 1}, "on": {"_count": 1}}, "sports": {"_count": 1, "bag": {"_count": 1}}, "computer": {"_count": 1, "": {"_count": 1}}, "birthdays": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "hands": {"_count": 194, "together": {"_count": 13}, "now": {"_count": 1}, "clasped": {"_count": 2}, "on": {"_count": 8}, "": {"_count": 27}, "and": {"_count": 25}, "smoother": {"_count": 1}, "to": {"_count": 6}, "pressed": {"_count": 2}, "once": {"_count": 1}, "over": {"_count": 13}, "afterward": {"_count": 1}, "were": {"_count": 5}, "whereas": {"_count": 1}, "began": {"_count": 1}, "outstretched": {"_count": 2}, "The": {"_count": 1}, "shook": {"_count": 3}, "whereabouts": {"_count": 1}, "under": {"_count": 2}, "gripping": {"_count": 2}, "clean": {"_count": 1}, "Alicia": {"_count": 1}, "thinking": {"_count": 2}, "blocking": {"_count": 1}, "opened": {"_count": 1}, "tighten": {"_count": 1}, "behind": {"_count": 1}, "gave": {"_count": 1}, "in": {"_count": 6}, "off": {"_count": 1}, "placed": {"_count": 1}, "as": {"_count": 6}, "Come": {"_count": 1}, "like": {"_count": 1}, "still": {"_count": 3}, "incriminated": {"_count": 1}, "around": {"_count": 1}, "clamped": {"_count": 1}, "theres": {"_count": 1}, "flying": {"_count": 1}, "deep": {"_count": 3}, "forming": {"_count": 1}, "pressing": {"_count": 1}, "the": {"_count": 1}, "whether": {"_count": 1}, "his": {"_count": 2}, "hard": {"_count": 1}, "which": {"_count": 1}, "full": {"_count": 2}, "apparently": {"_count": 1}, "could": {"_count": 1}, "shaking": {"_count": 2}, "desperate": {"_count": 1}, "agitatedly": {"_count": 1}, "by": {"_count": 1}, "so": {"_count": 1}, "while": {"_count": 1}, "flew": {"_count": 1}, "curled": {"_count": 2}, "upon": {"_count": 1}, "wide": {"_count": 1}, "closed": {"_count": 1}, "fly": {"_count": 1}, "but": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "clutching": {"_count": 1}, "sank": {"_count": 1}, "returning": {"_count": 1}, "half": {"_count": 1}, "away": {"_count": 1}, "covering": {"_count": 1}, "impervious": {"_count": 1}, "linked": {"_count": 1}, "regrow": {"_count": 1}, "at": {"_count": 1}, "He": {"_count": 1}}, "boat": {"_count": 1, "": {"_count": 1}}, "fat": {"_count": 14, "wrist": {"_count": 1}, "bottom": {"_count": 2}, "arm": {"_count": 1}, "legs": {"_count": 1}, "face": {"_count": 1}, "gray": {"_count": 2}, "head": {"_count": 1}, "fist": {"_count": 1}, "pony": {"_count": 1}, "thumbs": {"_count": 1}, "cheeks": {"_count": 1}, "little": {"_count": 1}}, "birthday": {"_count": 11, "tick": {"_count": 1}, "": {"_count": 2}, "had": {"_count": 1}, "cards": {"_count": 1}, "brought": {"_count": 1}, "card": {"_count": 1}, "Professor": {"_count": 1}, "cake": {"_count": 1}, "anyway": {"_count": 1}, "set": {"_count": 1}}, "black": {"_count": 27, "overcoat": {"_count": 1}, "robes": {"_count": 6}, "eyes": {"_count": 14}, "beard": {"_count": 1}, "school": {"_count": 1}, "traveling": {"_count": 1}, "cloak": {"_count": 2}, "withered": {"_count": 1}}, "mouth": {"_count": 197, "and": {"_count": 24}, "with": {"_count": 6}, "was": {"_count": 6}, "to": {"_count": 28}, "but": {"_count": 7}, "": {"_count": 36}, "open": {"_count": 3}, "as": {"_count": 4}, "onto": {"_count": 1}, "held": {"_count": 1}, "hanging": {"_count": 6}, "when": {"_count": 3}, "on": {"_count": 3}, "wide": {"_count": 4}, "opening": {"_count": 1}, "in": {"_count": 2}, "again": {"_count": 2}, "hung": {"_count": 1}, "had": {"_count": 3}, "unsurprisingly": {"_count": 1}, "than": {"_count": 1}, "full": {"_count": 2}, "apparently": {"_count": 1}, "shut": {"_count": 3}, "furiously": {"_count": 3}, "fell": {"_count": 2}, "uncertainly": {"_count": 1}, "into": {"_count": 1}, "if": {"_count": 1}, "sagging": {"_count": 2}, "before": {"_count": 1}, "curl": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 1}, "closed": {"_count": 2}, "yet": {"_count": 1}, "twitched": {"_count": 2}, "halfopen": {"_count": 1}, "ignited": {"_count": 1}, "What": {"_count": 1}, "slightly": {"_count": 3}, "stupidly": {"_count": 1}, "lifting": {"_count": 1}, "opened": {"_count": 1}, "tightly": {"_count": 1}, "even": {"_count": 2}, "gaping": {"_count": 2}, "still": {"_count": 1}, "so": {"_count": 1}, "hoping": {"_count": 1}, "half": {"_count": 1}, "he": {"_count": 1}, "agape": {"_count": 1}, "once": {"_count": 1}, "pointed": {"_count": 1}, "however": {"_count": 1}, "He": {"_count": 1}, "bone": {"_count": 1}, "the": {"_count": 1}, "muffling": {"_count": 1}, "bleeding": {"_count": 1}, "lolling": {"_count": 1}}, "weight": {"_count": 10, "and": {"_count": 1}, "gingerly": {"_count": 1}, "onto": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 5}, "at": {"_count": 1}}, "coat": {"_count": 6, "a": {"_count": 1}, "": {"_count": 3}, "clutching": {"_count": 1}, "now": {"_count": 1}}, "anger": {"_count": 19, "he": {"_count": 2}, "staggering": {"_count": 1}, "ebb": {"_count": 1}, "": {"_count": 4}, "had": {"_count": 1}, "Professor": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 2}, "you": {"_count": 1}, "was": {"_count": 1}, "must": {"_count": 1}, "spill": {"_count": 1}, "or": {"_count": 1}, "at": {"_count": 1}}, "marks": {"_count": 1, "werent": {"_count": 1}}, "voice": {"_count": 239, "": {"_count": 39}, "he": {"_count": 4}, "Peeves": {"_count": 1}, "shaking": {"_count": 7}, "icy": {"_count": 1}, "cracking": {"_count": 3}, "calm": {"_count": 1}, "again": {"_count": 2}, "low": {"_count": 1}, "mysteriously": {"_count": 1}, "until": {"_count": 1}, "sitting": {"_count": 1}, "echoing": {"_count": 9}, "down": {"_count": 1}, "breaking": {"_count": 2}, "back": {"_count": 3}, "feeble": {"_count": 1}, "steady": {"_count": 3}, "now": {"_count": 9}, "full": {"_count": 2}, "to": {"_count": 5}, "as": {"_count": 9}, "so": {"_count": 5}, "and": {"_count": 13}, "shook": {"_count": 2}, "die": {"_count": 1}, "wavering": {"_count": 1}, "Harry": {"_count": 1}, "light": {"_count": 1}, "easily": {"_count": 1}, "even": {"_count": 5}, "rising": {"_count": 7}, "growing": {"_count": 3}, "when": {"_count": 1}, "slightly": {"_count": 3}, "not": {"_count": 1}, "echoed": {"_count": 5}, "sounded": {"_count": 4}, "much": {"_count": 1}, "that": {"_count": 1}, "unctuous": {"_count": 1}, "conspiratorially": {"_count": 2}, "still": {"_count": 2}, "how": {"_count": 1}, "was": {"_count": 16}, "casual": {"_count": 3}, "boomed": {"_count": 1}, "remained": {"_count": 2}, "He": {"_count": 1}, "for": {"_count": 2}, "but": {"_count": 3}, "at": {"_count": 2}, "had": {"_count": 1}, "its": {"_count": 1}, "dramatically": {"_count": 1}, "a": {"_count": 2}, "about": {"_count": 1}, "while": {"_count": 1}, "hoarse": {"_count": 1}, "before": {"_count": 1}, "carrying": {"_count": 1}, "delicately": {"_count": 1}, "It": {"_count": 1}, "seemed": {"_count": 2}, "unmistakable": {"_count": 1}, "spinning": {"_count": 1}, "gentle": {"_count": 1}, "might": {"_count": 1}, "tailing": {"_count": 1}, "friendly": {"_count": 1}, "reasonable": {"_count": 1}, "strained": {"_count": 1}, "uncharacteristically": {"_count": 1}, "cold": {"_count": 1}, "ringing": {"_count": 1}, "the": {"_count": 1}, "came": {"_count": 1}, "harsh": {"_count": 1}, "rougher": {"_count": 1}, "quite": {"_count": 1}, "frozen": {"_count": 1}, "weaker": {"_count": 1}, "made": {"_count": 2}, "brittle": {"_count": 1}, "cracked": {"_count": 1}, "barely": {"_count": 1}, "heavy": {"_count": 1}, "magically": {"_count": 1}, "than": {"_count": 1}, "carried": {"_count": 1}}, "every": {"_count": 5, "syllable": {"_count": 1}, "move": {"_count": 1}, "other": {"_count": 1}, "attempt": {"_count": 1}, "nerve": {"_count": 1}}, "overcoat": {"_count": 1, "he": {"_count": 1}}, "tongue": {"_count": 24, "between": {"_count": 3}, "and": {"_count": 2}, "out": {"_count": 1}, "sympathetically": {"_count": 1}, "poking": {"_count": 1}, "get": {"_count": 1}, "threw": {"_count": 1}, "around": {"_count": 1}, "again": {"_count": 1}, "impatiently": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 2}, "to": {"_count": 2}, "if": {"_count": 1}, "curled": {"_count": 1}, "tied": {"_count": 1}, "rolled": {"_count": 1}, "the": {"_count": 1}}, "teeth": {"_count": 42, "he": {"_count": 1}, "at": {"_count": 2}, "on": {"_count": 1}, "and": {"_count": 5}, "bared": {"_count": 2}, "apart": {"_count": 1}, "chattering": {"_count": 4}, "": {"_count": 10}, "together": {"_count": 1}, "gritted": {"_count": 1}, "were": {"_count": 5}, "into": {"_count": 2}, "furiously": {"_count": 2}, "hoping": {"_count": 1}, "convinced": {"_count": 1}, "chose": {"_count": 1}, "had": {"_count": 1}, "as": {"_count": 1}}, "things": {"_count": 10, "tomorrow": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "with": {"_count": 1}, "away": {"_count": 1}, "seething": {"_count": 1}, "pellmell": {"_count": 1}, "out": {"_count": 1}, "left": {"_count": 1}}, "power": {"_count": 8, "cause": {"_count": 1}, "were": {"_count": 1}, "to": {"_count": 3}, "as": {"_count": 1}, "beyond": {"_count": 1}, "when": {"_count": 1}}, "side": {"_count": 47, "before": {"_count": 1}, "came": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 23}, "of": {"_count": 2}, "the": {"_count": 2}, "Harry": {"_count": 1}, "then": {"_count": 1}, "talking": {"_count": 1}, "as": {"_count": 1}, "hed": {"_count": 1}, "that": {"_count": 1}, "how": {"_count": 1}, "closed": {"_count": 1}, "with": {"_count": 1}, "a": {"_count": 1}, "wondering": {"_count": 1}, "bleeding": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 2}, "even": {"_count": 1}, "shaking": {"_count": 1}}, "courage": {"_count": 7, "": {"_count": 3}, "mounting": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 2}}, "fists": {"_count": 15, "were": {"_count": 1}, "": {"_count": 3}, "clenching": {"_count": 1}, "clenched": {"_count": 1}, "still": {"_count": 1}, "casting": {"_count": 1}, "raised": {"_count": 1}, "flailing": {"_count": 1}, "surrounded": {"_count": 1}, "upon": {"_count": 1}, "tightly": {"_count": 1}, "and": {"_count": 2}}, "time": {"_count": 15, "like": {"_count": 1}, "But": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 3}, "challenging": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 2}, "he": {"_count": 1}, "looking": {"_count": 1}, "chewing": {"_count": 1}}, "powers": {"_count": 9, "": {"_count": 3}, "sir": {"_count": 1}, "if": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "of": {"_count": 1}}, "surprise": {"_count": 9, "Hagrid": {"_count": 1}, "Quirrell": {"_count": 1}, "Ron": {"_count": 2}, "he": {"_count": 1}, "neither": {"_count": 1}, "that": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 1}}, "revenge": {"_count": 2, "without": {"_count": 1}, "the": {"_count": 1}}, "umbrella": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "trousers": {"_count": 5, "": {"_count": 2}, "and": {"_count": 2}, "which": {"_count": 1}}, "beard": {"_count": 14, "": {"_count": 6}, "Thats": {"_count": 1}, "twitching": {"_count": 1}, "as": {"_count": 2}, "twitched": {"_count": 1}, "and": {"_count": 1}, "is": {"_count": 1}, "around": {"_count": 1}}, "bushy": {"_count": 7, "eyebrows": {"_count": 3}, "mustache": {"_count": 1}, "tail": {"_count": 2}, "beard": {"_count": 1}}, "huge": {"_count": 7, "boots": {"_count": 1}, "hairy": {"_count": 1}, "flat": {"_count": 1}, "boulder": {"_count": 1}, "head": {"_count": 1}, "bloodshot": {"_count": 1}, "frame": {"_count": 1}}, "sideways": {"_count": 1, "looks": {"_count": 1}}, "excitement": {"_count": 5, "": {"_count": 3}, "nor": {"_count": 1}, "all": {"_count": 1}}, "shoulder": {"_count": 137, "and": {"_count": 21}, "jus": {"_count": 1}, "as": {"_count": 9}, "at": {"_count": 12}, "but": {"_count": 5}, "": {"_count": 46}, "to": {"_count": 8}, "gently": {"_count": 1}, "she": {"_count": 2}, "for": {"_count": 1}, "Hermione": {"_count": 1}, "following": {"_count": 1}, "they": {"_count": 1}, "carrying": {"_count": 1}, "got": {"_count": 1}, "muttered": {"_count": 1}, "ripping": {"_count": 1}, "with": {"_count": 1}, "so": {"_count": 2}, "foggy": {"_count": 1}, "Harry": {"_count": 3}, "then": {"_count": 1}, "his": {"_count": 2}, "yet": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 2}, "the": {"_count": 2}, "just": {"_count": 1}, "Ill": {"_count": 1}, "when": {"_count": 1}, "was": {"_count": 1}, "tears": {"_count": 1}, "wondering": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 1}}, "key": {"_count": 1, "sir": {"_count": 1}}, "pockets": {"_count": 22, "onto": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 8}, "excitedly": {"_count": 1}, "chinking": {"_count": 1}, "even": {"_count": 1}, "looking": {"_count": 2}, "still": {"_count": 1}, "into": {"_count": 1}, "be": {"_count": 1}, "as": {"_count": 1}, "desperately": {"_count": 1}, "and": {"_count": 2}}, "chest": {"_count": 97, "": {"_count": 41}, "with": {"_count": 2}, "expanded": {"_count": 1}, "to": {"_count": 2}, "of": {"_count": 1}, "pocket": {"_count": 1}, "where": {"_count": 1}, "thrown": {"_count": 1}, "it": {"_count": 1}, "again": {"_count": 1}, "cutting": {"_count": 1}, "and": {"_count": 11}, "since": {"_count": 1}, "seemed": {"_count": 2}, "loosened": {"_count": 1}, "over": {"_count": 1}, "his": {"_count": 2}, "heaving": {"_count": 1}, "he": {"_count": 2}, "swelling": {"_count": 1}, "the": {"_count": 2}, "so": {"_count": 1}, "she": {"_count": 1}, "might": {"_count": 1}, "purred": {"_count": 1}, "at": {"_count": 1}, "searing": {"_count": 1}, "roaring": {"_count": 1}, "was": {"_count": 3}, "clogging": {"_count": 1}, "into": {"_count": 1}, "by": {"_count": 1}, "beside": {"_count": 1}, "a": {"_count": 1}, "were": {"_count": 1}, "afraid": {"_count": 1}, "patted": {"_count": 1}, "but": {"_count": 1}, "contract": {"_count": 1}}, "knees": {"_count": 75, "from": {"_count": 1}, "": {"_count": 11}, "werent": {"_count": 1}, "let": {"_count": 1}, "and": {"_count": 14}, "Harry": {"_count": 2}, "sagging": {"_count": 1}, "his": {"_count": 2}, "as": {"_count": 1}, "groveling": {"_count": 1}, "staggered": {"_count": 1}, "hit": {"_count": 1}, "feeling": {"_count": 1}, "obediently": {"_count": 1}, "seemed": {"_count": 1}, "slightly": {"_count": 2}, "gasping": {"_count": 1}, "onto": {"_count": 1}, "buckled": {"_count": 4}, "beside": {"_count": 6}, "crawled": {"_count": 1}, "staring": {"_count": 1}, "had": {"_count": 2}, "again": {"_count": 1}, "a": {"_count": 1}, "remained": {"_count": 2}, "were": {"_count": 2}, "behind": {"_count": 1}, "jutting": {"_count": 1}, "shaking": {"_count": 1}, "he": {"_count": 1}, "No": {"_count": 1}, "back": {"_count": 1}, "at": {"_count": 1}, "relinquished": {"_count": 1}, "in": {"_count": 1}, "clutching": {"_count": 1}, "gave": {"_count": 1}}, "neck": {"_count": 74, "": {"_count": 21}, "prickled": {"_count": 1}, "and": {"_count": 17}, "coughed": {"_count": 1}, "But": {"_count": 1}, "tripping": {"_count": 1}, "was": {"_count": 2}, "as": {"_count": 2}, "sideways": {"_count": 1}, "to": {"_count": 4}, "had": {"_count": 1}, "too": {"_count": 1}, "Harry": {"_count": 3}, "again": {"_count": 1}, "over": {"_count": 1}, "were": {"_count": 1}, "for": {"_count": 3}, "rubbing": {"_count": 1}, "Umbridge": {"_count": 1}, "back": {"_count": 1}, "into": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}, "so": {"_count": 1}, "aching": {"_count": 1}, "pulled": {"_count": 1}, "his": {"_count": 1}, "through": {"_count": 1}}, "long": {"_count": 59, "fingers": {"_count": 9}, "black": {"_count": 6}, "arms": {"_count": 2}, "nostrils": {"_count": 2}, "silver": {"_count": 5}, "curly": {"_count": 1}, "pointed": {"_count": 1}, "golden": {"_count": 1}, "crooked": {"_count": 3}, "moleskin": {"_count": 1}, "hair": {"_count": 3}, "greasy": {"_count": 1}, "ginger": {"_count": 1}, "bald": {"_count": 1}, "green": {"_count": 1}, "wild": {"_count": 1}, "mane": {"_count": 1}, "tail": {"_count": 1}, "hands": {"_count": 1}, "white": {"_count": 4}, "dark": {"_count": 2}, "unkempt": {"_count": 1}, "beard": {"_count": 1}, "palomino": {"_count": 1}, "pale": {"_count": 1}, "pinstriped": {"_count": 1}, "gnarled": {"_count": 1}, "legs": {"_count": 1}, "nose": {"_count": 1}, "yellow": {"_count": 1}, "thin": {"_count": 1}, "nails": {"_count": 1}}, "thanks": {"_count": 2, "sounding": {"_count": 1}, "and": {"_count": 1}}, "wide": {"_count": 11, "pale": {"_count": 1}, "mad": {"_count": 1}, "wicked": {"_count": 1}, "grin": {"_count": 1}, "malicious": {"_count": 1}, "eyes": {"_count": 1}, "babyblue": {"_count": 1}, "red": {"_count": 1}, "forehead": {"_count": 1}, "behind": {"_count": 1}, "shining": {"_count": 1}}, "pink": {"_count": 2, "umbrella": {"_count": 2}}, "nostrils": {"_count": 8, "was": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}, "were": {"_count": 1}, "full": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}}, "pale": {"_count": 14, "stare": {"_count": 1}, "cheeks": {"_count": 1}, "aunt": {"_count": 1}, "eyes": {"_count": 5}, "pointed": {"_count": 2}, "face": {"_count": 3}, "skin": {"_count": 1}}, "wand": {"_count": 681, "and": {"_count": 97}, "when": {"_count": 2}, "but": {"_count": 21}, "back": {"_count": 15}, "a": {"_count": 4}, "": {"_count": 101}, "in": {"_count": 7}, "still": {"_count": 7}, "out": {"_count": 13}, "down": {"_count": 3}, "up": {"_count": 4}, "robes": {"_count": 1}, "with": {"_count": 4}, "furiously": {"_count": 1}, "tapped": {"_count": 2}, "yelling": {"_count": 1}, "to": {"_count": 9}, "high": {"_count": 4}, "straight": {"_count": 3}, "at": {"_count": 66}, "quickly": {"_count": 1}, "exploded": {"_count": 1}, "too": {"_count": 3}, "again": {"_count": 24}, "nervously": {"_count": 1}, "murmured": {"_count": 1}, "Harry": {"_count": 5}, "which": {"_count": 10}, "just": {"_count": 1}, "flew": {"_count": 3}, "held": {"_count": 12}, "aside": {"_count": 1}, "had": {"_count": 4}, "almost": {"_count": 1}, "tap": {"_count": 1}, "said": {"_count": 1}, "away": {"_count": 2}, "ready": {"_count": 8}, "touched": {"_count": 1}, "muttered": {"_count": 5}, "it": {"_count": 3}, "very": {"_count": 3}, "tightly": {"_count": 3}, "from": {"_count": 11}, "stuck": {"_count": 1}, "blinking": {"_count": 2}, "pointing": {"_count": 12}, "hand": {"_count": 5}, "convulsively": {"_count": 1}, "raised": {"_count": 7}, "covering": {"_count": 1}, "gazing": {"_count": 1}, "burst": {"_count": 2}, "on": {"_count": 8}, "outstretched": {"_count": 2}, "Aunt": {"_count": 1}, "Bill": {"_count": 1}, "directed": {"_count": 1}, "her": {"_count": 1}, "lighting": {"_count": 1}, "was": {"_count": 7}, "wasnt": {"_count": 1}, "marched": {"_count": 1}, "leaving": {"_count": 1}, "pointed": {"_count": 2}, "before": {"_count": 3}, "once": {"_count": 6}, "threateningly": {"_count": 1}, "all": {"_count": 1}, "without": {"_count": 3}, "occasionally": {"_count": 1}, "instead": {"_count": 2}, "into": {"_count": 5}, "lit": {"_count": 2}, "tip": {"_count": 4}, "point": {"_count": 1}, "holding": {"_count": 1}, "hesitating": {"_count": 1}, "as": {"_count": 11}, "slightly": {"_count": 2}, "slipped": {"_count": 1}, "closed": {"_count": 1}, "even": {"_count": 2}, "the": {"_count": 3}, "more": {"_count": 2}, "give": {"_count": 1}, "shudder": {"_count": 1}, "would": {"_count": 1}, "upward": {"_count": 2}, "wildly": {"_count": 3}, "he": {"_count": 7}, "under": {"_count": 2}, "hastily": {"_count": 2}, "hurriedly": {"_count": 1}, "gave": {"_count": 1}, "repaired": {"_count": 1}, "are": {"_count": 1}, "fly": {"_count": 1}, "unnecessarily": {"_count": 1}, "The": {"_count": 2}, "inside": {"_count": 2}, "being": {"_count": 1}, "that": {"_count": 2}, "so": {"_count": 5}, "looked": {"_count": 1}, "she": {"_count": 2}, "tighter": {"_count": 1}, "fell": {"_count": 2}, "directly": {"_count": 1}, "clutched": {"_count": 2}, "backward": {"_count": 1}, "aloft": {"_count": 1}, "toward": {"_count": 1}, "conjured": {"_count": 1}, "for": {"_count": 3}, "reassuringly": {"_count": 1}, "higher": {"_count": 1}, "careful": {"_count": 1}, "muttering": {"_count": 2}, "Vanishing": {"_count": 1}, "carelessly": {"_count": 1}, "snapped": {"_count": 1}, "falling": {"_count": 1}, "over": {"_count": 1}, "through": {"_count": 2}, "Snape": {"_count": 1}, "hoping": {"_count": 1}, "arm": {"_count": 1}, "ramming": {"_count": 1}, "acted": {"_count": 1}, "It": {"_count": 2}, "leave": {"_count": 1}, "no": {"_count": 1}, "moved": {"_count": 1}, "Hermione": {"_count": 1}, "deliberately": {"_count": 1}, "however": {"_count": 1}, "not": {"_count": 2}, "looking": {"_count": 1}, "ignited": {"_count": 1}, "He": {"_count": 2}, "crashing": {"_count": 1}, "his": {"_count": 1}, "Disarmed": {"_count": 1}, "thats": {"_count": 1}, "then": {"_count": 1}, "there": {"_count": 1}, "evaporated": {"_count": 1}, "between": {"_count": 1}, "illuminated": {"_count": 1}, "gripped": {"_count": 1}, "Hagrid": {"_count": 1}, "against": {"_count": 1}, "slide": {"_count": 1}, "resealed": {"_count": 1}}, "shop": {"_count": 2, "": {"_count": 1}, "four": {"_count": 1}}, "hamburger": {"_count": 1, "trying": {"_count": 1}}, "jeans": {"_count": 16, "because": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 2}, "rang": {"_count": 1}, "as": {"_count": 1}, "pocket": {"_count": 3}, "pockets": {"_count": 1}, "leaving": {"_count": 1}, "onto": {"_count": 1}}, "wizards": {"_count": 2, "robes": {"_count": 1}, "hat": {"_count": 1}}, "Hogwarts": {"_count": 2, "list": {"_count": 1}, "prefect": {"_count": 1}}, "cart": {"_count": 3, "after": {"_count": 1}, "he": {"_count": 1}, "off": {"_count": 1}}, "trolley": {"_count": 5, "around": {"_count": 3}, "forward": {"_count": 1}, "directly": {"_count": 1}}, "trunk": {"_count": 81, "toward": {"_count": 1}, "and": {"_count": 20}, "": {"_count": 12}, "up": {"_count": 3}, "at": {"_count": 1}, "right": {"_count": 2}, "his": {"_count": 1}, "to": {"_count": 4}, "just": {"_count": 1}, "open": {"_count": 1}, "but": {"_count": 1}, "all": {"_count": 1}, "again": {"_count": 2}, "extracted": {"_count": 1}, "with": {"_count": 2}, "yet": {"_count": 1}, "on": {"_count": 1}, "pulled": {"_count": 1}, "every": {"_count": 1}, "he": {"_count": 2}, "in": {"_count": 3}, "lay": {"_count": 1}, "swinging": {"_count": 1}, "laid": {"_count": 1}, "along": {"_count": 1}, "still": {"_count": 1}, "trying": {"_count": 1}, "slammed": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}, "from": {"_count": 1}, "shut": {"_count": 1}, "onto": {"_count": 1}, "into": {"_count": 1}, "as": {"_count": 1}, "upstairs": {"_count": 1}, "turned": {"_count": 1}, "for": {"_count": 1}, "before": {"_count": 1}, "owl": {"_count": 1}}, "sweaty": {"_count": 7, "hair": {"_count": 1}, "nose": {"_count": 1}, "brow": {"_count": 1}, "hands": {"_count": 1}, "face": {"_count": 3}}, "relief": {"_count": 7, "a": {"_count": 1}, "he": {"_count": 1}, "Dumbledore": {"_count": 1}, "that": {"_count": 1}, "Hermione": {"_count": 1}, "Malfoy": {"_count": 1}, "Ron": {"_count": 1}}, "nosie": {"_count": 1, "": {"_count": 1}}, "billowing": {"_count": 1, "black": {"_count": 1}}, "scar": {"_count": 103, "": {"_count": 19}, "were": {"_count": 2}, "in": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "again": {"_count": 2}, "had": {"_count": 5}, "hurting": {"_count": 6}, "felt": {"_count": 1}, "burning": {"_count": 2}, "hurt": {"_count": 1}, "was": {"_count": 10}, "reached": {"_count": 1}, "seared": {"_count": 4}, "his": {"_count": 2}, "burned": {"_count": 3}, "making": {"_count": 1}, "wasnt": {"_count": 1}, "prickle": {"_count": 1}, "prickling": {"_count": 4}, "would": {"_count": 2}, "still": {"_count": 5}, "seemed": {"_count": 1}, "hardly": {"_count": 1}, "began": {"_count": 1}, "searing": {"_count": 1}, "subsided": {"_count": 1}, "on": {"_count": 2}, "gave": {"_count": 3}, "sear": {"_count": 1}, "now": {"_count": 2}, "pulsed": {"_count": 1}, "continued": {"_count": 1}, "peaked": {"_count": 1}, "The": {"_count": 1}, "burst": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "prickled": {"_count": 3}, "pulse": {"_count": 1}, "absently": {"_count": 1}, "became": {"_count": 1}, "trying": {"_count": 1}, "throbbed": {"_count": 1}}, "Chocolate": {"_count": 1, "Frog": {"_count": 1}}, "card": {"_count": 3, "and": {"_count": 2}, "castle": {"_count": 1}}, "defeat": {"_count": 2, "of": {"_count": 2}}, "work": {"_count": 6, "on": {"_count": 2}, "sir": {"_count": 1}, "than": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "partner": {"_count": 4, "Nicolas": {"_count": 2}, "so": {"_count": 1}, "time": {"_count": 1}}, "astonishment": {"_count": 5, "that": {"_count": 4}, "it": {"_count": 1}}, "stunned": {"_count": 2, "face": {"_count": 1}, "": {"_count": 1}}, "brothers": {"_count": 6, "and": {"_count": 1}, "were": {"_count": 1}, "sees": {"_count": 1}, "face": {"_count": 1}, "The": {"_count": 1}, "": {"_count": 1}}, "finger": {"_count": 25, "sharp": {"_count": 1}, "dramatically": {"_count": 1}, "": {"_count": 6}, "swiftly": {"_count": 1}, "still": {"_count": 1}, "affectionately": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 2}, "perhaps": {"_count": 1}, "to": {"_count": 1}, "around": {"_count": 1}, "you": {"_count": 1}, "for": {"_count": 1}, "reprovingly": {"_count": 1}, "significantly": {"_count": 1}, "under": {"_count": 1}, "would": {"_count": 1}, "glued": {"_count": 1}, "again": {"_count": 1}}, "tail": {"_count": 7, "": {"_count": 3}, "and": {"_count": 1}, "madly": {"_count": 1}, "frantically": {"_count": 1}, "again": {"_count": 1}}, "family": {"_count": 24, "said": {"_count": 2}, "": {"_count": 5}, "in": {"_count": 1}, "for": {"_count": 1}, "anymore": {"_count": 1}, "sir": {"_count": 1}, "was": {"_count": 1}, "all": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "shouldnt": {"_count": 1}, "to": {"_count": 1}, "too": {"_count": 1}, "hes": {"_count": 1}, "home": {"_count": 1}, "this": {"_count": 1}, "tree": {"_count": 1}, "or": {"_count": 1}, "surrounded": {"_count": 1}}, "sneakers": {"_count": 3, "underneath": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}}, "freckles": {"_count": 1, "": {"_count": 1}}, "toad": {"_count": 4, "sniffed": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}, "as": {"_count": 1}}, "left": {"_count": 46, "ear": {"_count": 5}, "": {"_count": 4}, "he": {"_count": 2}, "full": {"_count": 1}, "hand": {"_count": 12}, "saw": {"_count": 1}, "forearm": {"_count": 2}, "looking": {"_count": 1}, "and": {"_count": 4}, "moving": {"_count": 1}, "flew": {"_count": 1}, "eye": {"_count": 1}, "but": {"_count": 1}, "arm": {"_count": 5}, "Ron": {"_count": 1}, "buttock": {"_count": 1}, "Ernie": {"_count": 1}, "was": {"_count": 1}, "broke": {"_count": 1}}, "teachers": {"_count": 2, "wig": {"_count": 1}, "at": {"_count": 1}}, "doom": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 29, "school": {"_count": 1}, "nightmare": {"_count": 1}, "robes": {"_count": 1}, "smile": {"_count": 1}, "swagger": {"_count": 1}, "suitcase": {"_count": 1}, "age": {"_count": 2}, "rat": {"_count": 1}, "Wasp": {"_count": 2}, "owners": {"_count": 1}, "impatience": {"_count": 1}, "masters": {"_count": 3}, "flannel": {"_count": 1}, "traveling": {"_count": 1}, "supporters": {"_count": 1}, "motorcycle": {"_count": 1}, "colleague": {"_count": 1}, "post": {"_count": 1}, "insecurities": {"_count": 1}, "Potions": {"_count": 2}, "book": {"_count": 1}, "friend": {"_count": 1}, "mistress": {"_count": 1}, "headmasters": {"_count": 1}}, "wish": {"_count": 3, "at": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "friends": {"_count": 36, "Crabbe": {"_count": 2}, "had": {"_count": 2}, "may": {"_count": 1}, "darkened": {"_count": 1}, "": {"_count": 6}, "defeated": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}, "you": {"_count": 1}, "and": {"_count": 1}, "played": {"_count": 1}, "into": {"_count": 1}, "with": {"_count": 1}, "bent": {"_count": 1}, "to": {"_count": 2}, "call": {"_count": 1}, "wouldnt": {"_count": 1}, "came": {"_count": 1}, "paid": {"_count": 1}, "ought": {"_count": 1}, "live": {"_count": 1}, "benefited": {"_count": 1}, "learned": {"_count": 1}, "Arthur": {"_count": 1}, "offers": {"_count": 1}, "caught": {"_count": 1}, "too": {"_count": 1}}, "ear": {"_count": 49, "": {"_count": 18}, "and": {"_count": 3}, "making": {"_count": 1}, "to": {"_count": 3}, "when": {"_count": 1}, "Bee": {"_count": 1}, "in": {"_count": 1}, "staring": {"_count": 1}, "against": {"_count": 3}, "toward": {"_count": 1}, "then": {"_count": 1}, "I": {"_count": 1}, "affectionately": {"_count": 1}, "Arthur": {"_count": 1}, "reckless": {"_count": 1}, "as": {"_count": 1}, "Im": {"_count": 1}, "close": {"_count": 1}, "give": {"_count": 1}, "with": {"_count": 1}, "still": {"_count": 1}, "very": {"_count": 1}, "did": {"_count": 1}, "not": {"_count": 1}, "hair": {"_count": 1}, "her": {"_count": 1}}, "arm": {"_count": 88, "giving": {"_count": 1}, "": {"_count": 22}, "which": {"_count": 2}, "supporting": {"_count": 1}, "around": {"_count": 4}, "raised": {"_count": 1}, "to": {"_count": 5}, "from": {"_count": 3}, "break": {"_count": 1}, "he": {"_count": 2}, "was": {"_count": 1}, "but": {"_count": 3}, "flapped": {"_count": 1}, "reboned": {"_count": 1}, "and": {"_count": 14}, "as": {"_count": 3}, "again": {"_count": 2}, "gasping": {"_count": 1}, "in": {"_count": 2}, "with": {"_count": 1}, "just": {"_count": 1}, "out": {"_count": 3}, "Hedwig": {"_count": 1}, "twelve": {"_count": 1}, "tightly": {"_count": 2}, "bent": {"_count": 1}, "still": {"_count": 1}, "nevertheless": {"_count": 1}, "a": {"_count": 1}, "away": {"_count": 1}, "by": {"_count": 1}, "not": {"_count": 1}, "It": {"_count": 1}, "back": {"_count": 1}}, "eye": {"_count": 39, "and": {"_count": 2}, "": {"_count": 15}, "he": {"_count": 3}, "with": {"_count": 1}, "against": {"_count": 1}, "Harry": {"_count": 4}, "paused": {"_count": 1}, "still": {"_count": 1}, "which": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 1}, "again": {"_count": 2}, "back": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "Scrimgeour": {"_count": 1}, "from": {"_count": 1}, "panic": {"_count": 1}}, "empty": {"_count": 20, "gold": {"_count": 1}, "teacup": {"_count": 2}, "tankard": {"_count": 1}, "hand": {"_count": 4}, "brain": {"_count": 1}, "classroom": {"_count": 1}, "plate": {"_count": 1}, "cereal": {"_count": 1}, "words": {"_count": 1}, "glass": {"_count": 4}, "breakfast": {"_count": 1}, "canvas": {"_count": 1}, "hands": {"_count": 1}}, "plate": {"_count": 24, "with": {"_count": 2}, "": {"_count": 4}, "flying": {"_count": 1}, "without": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 4}, "what": {"_count": 1}, "Pork": {"_count": 1}, "of": {"_count": 1}, "feeling": {"_count": 1}, "for": {"_count": 1}, "watched": {"_count": 1}, "since": {"_count": 1}, "again": {"_count": 1}, "already": {"_count": 1}, "as": {"_count": 1}}, "steak": {"_count": 4, "": {"_count": 1}, "again": {"_count": 2}, "at": {"_count": 1}}, "goblet": {"_count": 11, "": {"_count": 4}, "on": {"_count": 1}, "and": {"_count": 2}, "of": {"_count": 1}, "once": {"_count": 1}, "slowly": {"_count": 1}, "coughing": {"_count": 1}}, "absurd": {"_count": 1, "turban": {"_count": 1}}, "destiny": {"_count": 2, "": {"_count": 2}}, "dormitory": {"_count": 9, "the": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}, "all": {"_count": 1}, "next": {"_count": 1}, "and": {"_count": 1}, "where": {"_count": 1}}, "body": {"_count": 71, "behind": {"_count": 3}, "completely": {"_count": 1}, "": {"_count": 13}, "but": {"_count": 2}, "bubbled": {"_count": 1}, "leave": {"_count": 1}, "and": {"_count": 7}, "he": {"_count": 4}, "enjoying": {"_count": 1}, "low": {"_count": 1}, "than": {"_count": 3}, "around": {"_count": 1}, "were": {"_count": 1}, "to": {"_count": 1}, "back": {"_count": 3}, "was": {"_count": 4}, "felt": {"_count": 1}, "from": {"_count": 2}, "or": {"_count": 1}, "for": {"_count": 1}, "until": {"_count": 1}, "heavy": {"_count": 1}, "as": {"_count": 3}, "they": {"_count": 1}, "ended": {"_count": 1}, "wrapped": {"_count": 1}, "became": {"_count": 1}, "toward": {"_count": 1}, "then": {"_count": 1}, "ached": {"_count": 1}, "violent": {"_count": 1}, "seemed": {"_count": 1}, "screamed": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "would": {"_count": 1}, "feeble": {"_count": 1}}, "desk": {"_count": 64, "": {"_count": 22}, "chair": {"_count": 2}, "and": {"_count": 14}, "drawer": {"_count": 2}, "snatched": {"_count": 1}, "glinting": {"_count": 1}, "drawers": {"_count": 1}, "that": {"_count": 2}, "he": {"_count": 2}, "of": {"_count": 1}, "ready": {"_count": 1}, "stood": {"_count": 1}, "sat": {"_count": 2}, "placed": {"_count": 1}, "dictating": {"_count": 1}, "is": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}, "straightening": {"_count": 1}, "Fudge": {"_count": 1}, "Hermione": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}, "took": {"_count": 1}, "beside": {"_count": 1}}, "porridge": {"_count": 5, "": {"_count": 3}, "when": {"_count": 1}, "away": {"_count": 1}}, "books": {"_count": 20, "at": {"_count": 1}, "": {"_count": 2}, "into": {"_count": 2}, "look": {"_count": 1}, "an": {"_count": 1}, "too": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 5}, "onto": {"_count": 1}, "aside": {"_count": 1}, "back": {"_count": 2}, "away": {"_count": 1}}, "horned": {"_count": 1, "slugs": {"_count": 1}}, "spirits": {"_count": 8, "were": {"_count": 1}, "": {"_count": 2}, "slip": {"_count": 1}, "soar": {"_count": 1}, "could": {"_count": 1}, "even": {"_count": 1}, "but": {"_count": 1}}, "very": {"_count": 20, "first": {"_count": 4}, "crooked": {"_count": 2}, "own": {"_count": 2}, "formidablelooking": {"_count": 1}, "heart": {"_count": 1}, "small": {"_count": 1}, "confused": {"_count": 1}, "best": {"_count": 1}, "great": {"_count": 2}, "brain": {"_count": 1}, "bones": {"_count": 1}, "prominent": {"_count": 1}, "last": {"_count": 1}, "soul": {"_count": 1}}, "ears": {"_count": 88, "": {"_count": 33}, "mingled": {"_count": 1}, "in": {"_count": 3}, "flapped": {"_count": 2}, "was": {"_count": 1}, "to": {"_count": 8}, "and": {"_count": 6}, "opened": {"_count": 1}, "as": {"_count": 3}, "he": {"_count": 1}, "that": {"_count": 2}, "were": {"_count": 2}, "shrivel": {"_count": 1}, "with": {"_count": 2}, "flapping": {"_count": 2}, "again": {"_count": 1}, "going": {"_count": 1}, "drooping": {"_count": 2}, "then": {"_count": 1}, "full": {"_count": 1}, "for": {"_count": 1}, "ache": {"_count": 1}, "reddening": {"_count": 1}, "turn": {"_count": 1}, "now": {"_count": 1}, "waggling": {"_count": 1}, "turning": {"_count": 1}, "scratched": {"_count": 1}, "his": {"_count": 1}, "which": {"_count": 1}, "so": {"_count": 1}, "bright": {"_count": 1}, "Dumbledore": {"_count": 1}, "straining": {"_count": 1}}, "robes": {"_count": 126, "": {"_count": 36}, "whipped": {"_count": 1}, "above": {"_count": 1}, "quickly": {"_count": 1}, "and": {"_count": 27}, "straight": {"_count": 1}, "pulled": {"_count": 2}, "tightly": {"_count": 1}, "was": {"_count": 1}, "ripped": {"_count": 2}, "as": {"_count": 2}, "nothing": {"_count": 1}, "his": {"_count": 1}, "Malfoy": {"_count": 1}, "then": {"_count": 1}, "pretending": {"_count": 1}, "he": {"_count": 3}, "without": {"_count": 2}, "on": {"_count": 3}, "for": {"_count": 1}, "wondering": {"_count": 1}, "waited": {"_count": 1}, "He": {"_count": 1}, "looked": {"_count": 1}, "reaching": {"_count": 1}, "were": {"_count": 4}, "but": {"_count": 2}, "cast": {"_count": 1}, "before": {"_count": 1}, "Stupefy": {"_count": 1}, "not": {"_count": 1}, "Harry": {"_count": 1}, "Moody": {"_count": 1}, "stuffed": {"_count": 1}, "somewhere": {"_count": 1}, "just": {"_count": 1}, "with": {"_count": 2}, "falling": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "like": {"_count": 1}, "so": {"_count": 1}, "hanging": {"_count": 1}, "swirling": {"_count": 1}, "withdrew": {"_count": 1}, "stained": {"_count": 1}, "where": {"_count": 1}, "telling": {"_count": 1}, "apparently": {"_count": 1}, "whipping": {"_count": 1}, "because": {"_count": 1}, "swung": {"_count": 1}}, "childhood": {"_count": 2, "zooming": {"_count": 1}, "before": {"_count": 1}}, "broomstick": {"_count": 27, "": {"_count": 9}, "later": {"_count": 1}, "and": {"_count": 6}, "up": {"_count": 1}, "sharply": {"_count": 1}, "just": {"_count": 1}, "trying": {"_count": 1}, "You": {"_count": 1}, "feeling": {"_count": 1}, "covered": {"_count": 1}, "under": {"_count": 1}, "servicing": {"_count": 1}, "over": {"_count": 1}, "broken": {"_count": 1}}, "grandmother": {"_count": 6, "had": {"_count": 2}, "": {"_count": 2}, "during": {"_count": 1}, "looking": {"_count": 1}}, "broom": {"_count": 50, "": {"_count": 15}, "handle": {"_count": 2}, "straight": {"_count": 2}, "was": {"_count": 1}, "at": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "tomorrow": {"_count": 1}, "and": {"_count": 8}, "when": {"_count": 1}, "through": {"_count": 1}, "completely": {"_count": 1}, "Dad": {"_count": 1}, "one": {"_count": 1}, "tail": {"_count": 1}, "stretching": {"_count": 1}, "upward": {"_count": 1}, "luckily": {"_count": 1}, "over": {"_count": 1}, "as": {"_count": 2}, "all": {"_count": 1}, "to": {"_count": 1}, "due": {"_count": 1}, "Madam": {"_count": 1}, "his": {"_count": 1}, "shudder": {"_count": 1}}, "scared": {"_count": 1, "white": {"_count": 1}}, "": {"_count": 24, ".": {"_count": 20}, "?": {"_count": 2}, "!": {"_count": 2}}, "wrist": {"_count": 12, "hobbled": {"_count": 1}, "": {"_count": 5}, "to": {"_count": 1}, "and": {"_count": 3}, "Harry": {"_count": 1}, "as": {"_count": 1}}, "fist": {"_count": 27, "": {"_count": 7}, "raised": {"_count": 1}, "still": {"_count": 1}, "on": {"_count": 3}, "in": {"_count": 4}, "beating": {"_count": 1}, "held": {"_count": 1}, "jolting": {"_count": 1}, "down": {"_count": 1}, "and": {"_count": 3}, "onto": {"_count": 1}, "with": {"_count": 1}, "like": {"_count": 1}, "raining": {"_count": 1}}, "fault": {"_count": 13, "Professor": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 4}, "said": {"_count": 1}, "Ron": {"_count": 1}, "Sirius": {"_count": 1}, "that": {"_count": 2}, "she": {"_count": 1}, "all": {"_count": 1}}, "bags": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "dreams": {"_count": 10, "had": {"_count": 1}, "": {"_count": 3}, "never": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "when": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}}, "second": {"_count": 8, "whos": {"_count": 1}, "cup": {"_count": 1}, "year": {"_count": 3}, "one": {"_count": 1}, "detention": {"_count": 1}, "favorite": {"_count": 1}}, "cold": {"_count": 11, "pie": {"_count": 1}, "eyes": {"_count": 4}, "black": {"_count": 3}, "gray": {"_count": 1}, "sneering": {"_count": 1}, "hand": {"_count": 1}}, "big": {"_count": 6, "chance": {"_count": 1}, "ugly": {"_count": 1}, "toe": {"_count": 2}, "waistcoated": {"_count": 1}, "feet": {"_count": 1}}, "watch": {"_count": 37, "and": {"_count": 10}, "": {"_count": 15}, "Harry": {"_count": 1}, "five": {"_count": 1}, "again": {"_count": 1}, "two": {"_count": 1}, "every": {"_count": 1}, "to": {"_count": 1}, "then": {"_count": 1}, "which": {"_count": 1}, "let": {"_count": 1}, "phase": {"_count": 1}, "as": {"_count": 1}, "It": {"_count": 1}}, "annoying": {"_count": 1, "singsong": {"_count": 1}}, "glee": {"_count": 1, "as": {"_count": 1}}, "lessons": {"_count": 3, "that": {"_count": 1}, "for": {"_count": 1}, "planned": {"_count": 1}}, "dinner": {"_count": 2, "that": {"_count": 1}, "on": {"_count": 1}}, "lightest": {"_count": 1, "touch": {"_count": 1}}, "team": {"_count": 11, "an": {"_count": 2}, "followed": {"_count": 1}, "some": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 2}, "had": {"_count": 1}, "streaking": {"_count": 1}}, "homework": {"_count": 11, "but": {"_count": 2}, "without": {"_count": 1}, "done": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 2}, "under": {"_count": 1}, "around": {"_count": 1}, "tonight": {"_count": 1}, "though": {"_count": 1}}, "pile": {"_count": 3, "of": {"_count": 3}}, "hat": {"_count": 12, "": {"_count": 3}, "the": {"_count": 1}, "onto": {"_count": 1}, "again": {"_count": 1}, "he": {"_count": 1}, "inside": {"_count": 1}, "practice": {"_count": 1}, "as": {"_count": 1}, "The": {"_count": 1}, "brim": {"_count": 1}}, "turban": {"_count": 4, "askew": {"_count": 1}, "": {"_count": 3}}, "element": {"_count": 1, "": {"_count": 1}}, "lip": {"_count": 11, "": {"_count": 3}, "his": {"_count": 1}, "twitching": {"_count": 1}, "curling": {"_count": 4}, "curled": {"_count": 1}, "and": {"_count": 1}}, "nerves": {"_count": 3, "about": {"_count": 1}, "left": {"_count": 1}, "couldnt": {"_count": 1}}, "sausages": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "Nimbus": {"_count": 17, "Two": {"_count": 13}, "was": {"_count": 1}, "dropped": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "binoculars": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 20, "Woods": {"_count": 1}, "saw": {"_count": 1}, "Rons": {"_count": 6}, "Hermiones": {"_count": 2}, "Harrys": {"_count": 1}, "Voldemorts": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "all": {"_count": 1}, "was": {"_count": 1}, "everything": {"_count": 1}, "Fleurs": {"_count": 1}, "I": {"_count": 1}, "Lunas": {"_count": 1}}, "feelings": {"_count": 15, "": {"_count": 4}, "when": {"_count": 1}, "by": {"_count": 3}, "of": {"_count": 2}, "to": {"_count": 1}, "Harry": {"_count": 1}, "about": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}}, "control": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "breath": {"_count": 51, "": {"_count": 19}, "trying": {"_count": 1}, "Happy": {"_count": 1}, "and": {"_count": 4}, "pleased": {"_count": 1}, "the": {"_count": 1}, "expecto": {"_count": 1}, "as": {"_count": 7}, "I": {"_count": 1}, "in": {"_count": 2}, "all": {"_count": 1}, "coming": {"_count": 2}, "had": {"_count": 1}, "pulling": {"_count": 1}, "his": {"_count": 2}, "Malfoy": {"_count": 1}, "came": {"_count": 1}, "he": {"_count": 1}, "foul": {"_count": 1}, "fighting": {"_count": 1}, "on": {"_count": 1}}, "bucking": {"_count": 1, "broomstick": {"_count": 1}}, "tree": {"_count": 2, "off": {"_count": 1}, "vaulted": {"_count": 1}}, "grandfather": {"_count": 1, "": {"_count": 1}}, "knight": {"_count": 1, "": {"_count": 1}}, "bathrobe": {"_count": 1, "": {"_count": 1}}, "shoulders": {"_count": 39, "and": {"_count": 9}, "to": {"_count": 1}, "stretched": {"_count": 1}, "uncomfortably": {"_count": 1}, "": {"_count": 12}, "raised": {"_count": 1}, "were": {"_count": 2}, "by": {"_count": 1}, "a": {"_count": 1}, "Snape": {"_count": 1}, "in": {"_count": 2}, "Harry": {"_count": 1}, "onto": {"_count": 1}, "angrily": {"_count": 1}, "concentrating": {"_count": 1}, "neither": {"_count": 1}, "again": {"_count": 1}, "now": {"_count": 1}}, "reflection": {"_count": 10, "looked": {"_count": 1}, "vanished": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "pale": {"_count": 1}, "defiantly": {"_count": 1}, "more": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 2}}, "sweater": {"_count": 6, "": {"_count": 3}, "vest": {"_count": 1}, "back": {"_count": 1}, "actually": {"_count": 1}}, "pointed": {"_count": 8, "wizards": {"_count": 2}, "hat": {"_count": 2}, "nose": {"_count": 1}, "face": {"_count": 1}, "beard": {"_count": 1}, "teeth": {"_count": 1}}, "slice": {"_count": 1, "": {"_count": 1}}, "prefect": {"_count": 3, "badge": {"_count": 3}}, "fourposter": {"_count": 16, "": {"_count": 2}, "bed": {"_count": 1}, "and": {"_count": 4}, "he": {"_count": 2}, "in": {"_count": 1}, "thinking": {"_count": 1}, "shut": {"_count": 1}, "but": {"_count": 1}, "closed": {"_count": 1}, "ten": {"_count": 1}, "instead": {"_count": 1}}, "fathers": {"_count": 20, "": {"_count": 3}, "cloak": {"_count": 1}, "family": {"_count": 1}, "Invisibility": {"_count": 1}, "arm": {"_count": 1}, "three": {"_count": 1}, "hooked": {"_count": 1}, "voice": {"_count": 2}, "grave": {"_count": 1}, "talent": {"_count": 1}, "character": {"_count": 1}, "behavior": {"_count": 1}, "old": {"_count": 1}, "friends": {"_count": 1}, "ring": {"_count": 1}, "action": {"_count": 1}, "stag": {"_count": 1}}, "sleep": {"_count": 10, "": {"_count": 6}, "for": {"_count": 1}, "and": {"_count": 3}}, "lamp": {"_count": 5, "to": {"_count": 1}, "which": {"_count": 1}, "bobbing": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}}, "knee": {"_count": 8, "let": {"_count": 1}, "": {"_count": 4}, "hooting": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}}, "soft": {"_count": 2, "greasy": {"_count": 1}, "snakes": {"_count": 1}}, "other": {"_count": 24, "noses": {"_count": 1}, "books": {"_count": 1}, "hand": {"_count": 6}, "classes": {"_count": 1}, "ear": {"_count": 1}, "friends": {"_count": 1}, "best": {"_count": 1}, "er": {"_count": 1}, "supporters": {"_count": 1}, "side": {"_count": 4}, "painting": {"_count": 1}, "penalties": {"_count": 1}, "ambition": {"_count": 1}, "famous": {"_count": 1}, "faults": {"_count": 1}, "senses": {"_count": 1}}, "even": {"_count": 1, "a": {"_count": 1}}, "senses": {"_count": 13, "": {"_count": 7}, "he": {"_count": 1}, "vibrating": {"_count": 1}, "just": {"_count": 1}, "Harry": {"_count": 1}, "must": {"_count": 1}, "straining": {"_count": 1}}, "paisley": {"_count": 1, "pajamas": {"_count": 1}}, "image": {"_count": 1, "": {"_count": 1}}, "grandfathers": {"_count": 1, "nodding": {"_count": 1}}, "insides": {"_count": 21, "had": {"_count": 2}, "churning": {"_count": 1}, "started": {"_count": 1}, "": {"_count": 1}, "fog": {"_count": 1}, "squirmed": {"_count": 1}, "writhed": {"_count": 1}, "like": {"_count": 1}, "back": {"_count": 1}, "boiling": {"_count": 1}, "writhe": {"_count": 1}, "aching": {"_count": 1}, "were": {"_count": 4}, "blazing": {"_count": 1}, "burning": {"_count": 1}, "Hot": {"_count": 1}, "that": {"_count": 1}}, "pillow": {"_count": 12, "it": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 2}, "any": {"_count": 1}, "at": {"_count": 1}, "exceptionally": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 2}, "I": {"_count": 1}, "he": {"_count": 1}}, "six": {"_count": 3, "hundred": {"_count": 1}, "fellow": {"_count": 1}, "doppelgangers": {"_count": 1}}, "Quidditch": {"_count": 9, "robes": {"_count": 4}, "things": {"_count": 3}, "training": {"_count": 1}, "ban": {"_count": 1}}, "sleeve": {"_count": 18, "": {"_count": 9}, "as": {"_count": 2}, "and": {"_count": 3}, "staring": {"_count": 1}, "but": {"_count": 1}, "which": {"_count": 1}, "to": {"_count": 1}}, "usual": {"_count": 28, "bad": {"_count": 1}, "quivering": {"_count": 1}, "sneer": {"_count": 1}, "black": {"_count": 2}, "lookout": {"_count": 1}, "toothless": {"_count": 1}, "lazy": {"_count": 1}, "brown": {"_count": 1}, "fashion": {"_count": 1}, "doublet": {"_count": 1}, "supply": {"_count": 1}, "signs": {"_count": 1}, "curt": {"_count": 1}, "paranoid": {"_count": 1}, "enormous": {"_count": 1}, "voice": {"_count": 1}, "pinstriped": {"_count": 1}, "barklike": {"_count": 1}, "gang": {"_count": 1}, "eight": {"_count": 1}, "position": {"_count": 1}, "gusto": {"_count": 1}, "self": {"_count": 1}, "affectionate": {"_count": 1}, "seat": {"_count": 1}, "prodding": {"_count": 1}, "detour": {"_count": 1}}, "quill": {"_count": 29, "and": {"_count": 6}, "there": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 5}, "a": {"_count": 1}, "suspended": {"_count": 2}, "between": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 4}, "too": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 1}, "pulling": {"_count": 1}, "frowning": {"_count": 1}, "to": {"_count": 1}, "very": {"_count": 1}}, "moleskin": {"_count": 5, "overcoat": {"_count": 4}, "vest": {"_count": 1}}, "hut": {"_count": 5, "": {"_count": 2}, "one": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "mommy": {"_count": 1, "": {"_count": 1}}, "gamekeeping": {"_count": 2, "duties": {"_count": 2}}, "marbles": {"_count": 3, "Ron": {"_count": 1}, "My": {"_count": 1}, "": {"_count": 1}}, "teddy": {"_count": 1, "bear": {"_count": 1}}, "crate": {"_count": 1, "": {"_count": 1}}, "business": {"_count": 3, "from": {"_count": 1}, "as": {"_count": 2}}, "misery": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "step": {"_count": 2, "Quirrell": {"_count": 1}, "": {"_count": 1}}, "AntiDark": {"_count": 1, "Force": {"_count": 1}}, "tracks": {"_count": 13, "": {"_count": 5}, "and": {"_count": 2}, "fell": {"_count": 1}, "stopped": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "listening": {"_count": 1}, "clearly": {"_count": 1}}, "gaze": {"_count": 24, "": {"_count": 4}, "from": {"_count": 4}, "And": {"_count": 1}, "unfocused": {"_count": 1}, "to": {"_count": 5}, "unflinchingly": {"_count": 1}, "up": {"_count": 1}, "fell": {"_count": 2}, "lingered": {"_count": 1}, "but": {"_count": 1}, "once": {"_count": 1}, "made": {"_count": 1}, "drift": {"_count": 1}}, "crossbow": {"_count": 10, "raising": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 1}, "and": {"_count": 1}, "over": {"_count": 1}, "again": {"_count": 1}, "was": {"_count": 1}, "uncomfortably": {"_count": 1}}, "bow": {"_count": 3, "again": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}}, "front": {"_count": 21, "legs": {"_count": 1}, "row": {"_count": 1}, "": {"_count": 4}, "door": {"_count": 3}, "paw": {"_count": 2}, "paws": {"_count": 1}, "pocket": {"_count": 1}, "feet": {"_count": 1}, "as": {"_count": 1}, "nudged": {"_count": 1}, "afraid": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}, "for": {"_count": 1}, "teeth": {"_count": 1}}, "gloomy": {"_count": 1, "voice": {"_count": 1}}, "hind": {"_count": 2, "legs": {"_count": 2}}, "sheets": {"_count": 2, "he": {"_count": 1}, "chicken": {"_count": 1}}, "Invisibility": {"_count": 25, "Cloak": {"_count": 25}}, "exams": {"_count": 2, "when": {"_count": 1}, "had": {"_count": 1}}, "trip": {"_count": 3, "into": {"_count": 1}, "to": {"_count": 2}}, "house": {"_count": 11, "his": {"_count": 1}, "and": {"_count": 1}, "last": {"_count": 1}, "": {"_count": 5}, "during": {"_count": 1}, "shortly": {"_count": 1}, "has": {"_count": 1}}, "eyebrows": {"_count": 37, "": {"_count": 16}, "his": {"_count": 1}, "raised": {"_count": 5}, "at": {"_count": 4}, "and": {"_count": 5}, "how": {"_count": 1}, "slightly": {"_count": 1}, "but": {"_count": 1}, "which": {"_count": 1}, "Hermione": {"_count": 1}, "again": {"_count": 1}}, "hood": {"_count": 6, "up": {"_count": 1}, "shook": {"_count": 1}, "fell": {"_count": 1}, "slipped": {"_count": 2}, "during": {"_count": 1}}, "exam": {"_count": 1, "": {"_count": 1}}, "sides": {"_count": 4, "": {"_count": 3}, "blurred": {"_count": 1}}, "wicked": {"_count": 1, "black": {"_count": 1}}, "little": {"_count": 11, "joke": {"_count": 3}, "wooden": {"_count": 1}, "sphere": {"_count": 1}, "sister": {"_count": 1}, "beak": {"_count": 1}, "friend": {"_count": 1}, "Potions": {"_count": 1}, "evening": {"_count": 1}, "parties": {"_count": 1}}, "lips": {"_count": 45, "and": {"_count": 6}, "": {"_count": 11}, "looking": {"_count": 1}, "as": {"_count": 2}, "form": {"_count": 1}, "it": {"_count": 1}, "welcome": {"_count": 1}, "though": {"_count": 1}, "again": {"_count": 1}, "pressed": {"_count": 2}, "making": {"_count": 1}, "moving": {"_count": 2}, "nervously": {"_count": 1}, "tightly": {"_count": 1}, "when": {"_count": 1}, "almost": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "slowly": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 2}, "in": {"_count": 1}, "drawn": {"_count": 1}, "trembled": {"_count": 1}, "easily": {"_count": 1}}, "attention": {"_count": 11, "and": {"_count": 1}, "to": {"_count": 3}, "by": {"_count": 1}, "mouthing": {"_count": 1}, "in": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 2}}, "fingertips": {"_count": 4, "": {"_count": 2}, "together": {"_count": 1}, "were": {"_count": 1}}, "helmeted": {"_count": 1, "head": {"_count": 1}}, "crown": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "ankles": {"_count": 5, "were": {"_count": 1}, "": {"_count": 2}, "pulled": {"_count": 1}, "he": {"_count": 1}}, "real": {"_count": 2, "pocket": {"_count": 1}, "wand": {"_count": 1}}, "might": {"_count": 18, "and": {"_count": 1}, "": {"_count": 5}, "looking": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 2}, "to": {"_count": 2}, "trying": {"_count": 1}, "for": {"_count": 1}, "on": {"_count": 2}, "not": {"_count": 1}}, "bare": {"_count": 6, "skin": {"_count": 1}, "chest": {"_count": 2}, "feet": {"_count": 2}, "hand": {"_count": 1}}, "grasp": {"_count": 5, "knew": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "yes": {"_count": 1}, "said": {"_count": 1}}, "followers": {"_count": 8, "as": {"_count": 2}, "": {"_count": 1}, "sent": {"_count": 1}, "who": {"_count": 1}, "but": {"_count": 1}, "are": {"_count": 1}, "I": {"_count": 1}}, "enemies": {"_count": 3, "": {"_count": 2}, "are": {"_count": 1}}, "return": {"_count": 15, "to": {"_count": 9}, "was": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 1}, "more": {"_count": 1}, "with": {"_count": 1}}, "soul": {"_count": 23, "with": {"_count": 1}, "": {"_count": 3}, "out": {"_count": 1}, "rattling": {"_count": 1}, "youd": {"_count": 1}, "was": {"_count": 3}, "repeatedly": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 2}, "concealed": {"_count": 1}, "however": {"_count": 1}, "inside": {"_count": 1}, "may": {"_count": 1}, "saw": {"_count": 1}, "there": {"_count": 1}, "had": {"_count": 1}, "that": {"_count": 1}, "so": {"_count": 1}}, "rocker": {"_count": 3, "said": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 1}}, "hero": {"_count": 1, "was": {"_count": 1}}, "many": {"_count": 5, "candy": {"_count": 1}, "chins": {"_count": 1}, "detentions": {"_count": 1}, "admirers": {"_count": 1}, "layers": {"_count": 1}}, "good": {"_count": 7, "Herbology": {"_count": 1}, "hand": {"_count": 1}, "leg": {"_count": 1}, "ear": {"_count": 1}, "looks": {"_count": 1}, "fortune": {"_count": 1}, "arm": {"_count": 1}}, "abysmal": {"_count": 2, "Potions": {"_count": 1}, "memory": {"_count": 1}}, "words": {"_count": 10, "were": {"_count": 2}, "": {"_count": 4}, "carefully": {"_count": 1}, "as": {"_count": 1}, "pierced": {"_count": 1}, "at": {"_count": 1}}, "bottom": {"_count": 3, "drooped": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "chair": {"_count": 72, "with": {"_count": 3}, "that": {"_count": 2}, "and": {"_count": 12}, "": {"_count": 20}, "so": {"_count": 2}, "stunned": {"_count": 1}, "as": {"_count": 3}, "hurried": {"_count": 1}, "backward": {"_count": 1}, "to": {"_count": 1}, "crouched": {"_count": 2}, "was": {"_count": 1}, "looking": {"_count": 1}, "his": {"_count": 2}, "conjuring": {"_count": 1}, "aside": {"_count": 1}, "hovered": {"_count": 1}, "an": {"_count": 1}, "onto": {"_count": 1}, "becoming": {"_count": 1}, "closer": {"_count": 1}, "by": {"_count": 1}, "fall": {"_count": 1}, "roughly": {"_count": 1}, "but": {"_count": 2}, "at": {"_count": 1}, "not": {"_count": 1}, "staring": {"_count": 1}, "smiling": {"_count": 1}, "rubbing": {"_count": 1}, "legs": {"_count": 1}, "a": {"_count": 1}, "gazing": {"_count": 1}}, "temples": {"_count": 1, "": {"_count": 1}}, "purplefaced": {"_count": 1, "uncle": {"_count": 1}}, "small": {"_count": 12, "sharp": {"_count": 1}, "dull": {"_count": 1}, "gray": {"_count": 1}, "club": {"_count": 1}, "figure": {"_count": 1}, "shoulders": {"_count": 1}, "feet": {"_count": 1}, "daughter": {"_count": 1}, "eyes": {"_count": 1}, "piggy": {"_count": 1}, "and": {"_count": 1}, "fist": {"_count": 1}}, "classes": {"_count": 4, "though": {"_count": 1}, "was": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}}, "cabin": {"_count": 23, "next": {"_count": 1}, "": {"_count": 5}, "his": {"_count": 1}, "as": {"_count": 1}, "leaving": {"_count": 1}, "Hagrid": {"_count": 1}, "balancing": {"_count": 1}, "today": {"_count": 1}, "with": {"_count": 1}, "wall": {"_count": 1}, "and": {"_count": 4}, "was": {"_count": 1}, "Hermione": {"_count": 1}, "window": {"_count": 1}, "wearing": {"_count": 1}, "slamming": {"_count": 1}}, "place": {"_count": 11, "on": {"_count": 1}, "at": {"_count": 2}, "between": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 3}, "in": {"_count": 2}, "of": {"_count": 1}}, "lightning": {"_count": 2, "scar": {"_count": 2}}, "dead": {"_count": 4, "mothers": {"_count": 1}, "parents": {"_count": 1}, "godfather": {"_count": 1}, "headmaster": {"_count": 1}}, "hopes": {"_count": 5, "hadnt": {"_count": 1}, "up": {"_count": 1}, "were": {"_count": 2}, "in": {"_count": 1}}, "toast": {"_count": 4, "": {"_count": 2}, "he": {"_count": 1}, "and": {"_count": 1}}, "best": {"_count": 26, "friends": {"_count": 3}, "to": {"_count": 4}, "friend": {"_count": 5}, "suit": {"_count": 2}, "subject": {"_count": 1}, "not": {"_count": 2}, "and": {"_count": 2}, "interests": {"_count": 1}, "one": {"_count": 1}, "mate": {"_count": 1}, "source": {"_count": 1}, "man": {"_count": 1}, "chance": {"_count": 1}, "hope": {"_count": 1}}, "archenemy": {"_count": 1, "Draco": {"_count": 1}}, "former": {"_count": 1, "self": {"_count": 1}}, "livid": {"_count": 1, "face": {"_count": 1}}, "moment": {"_count": 4, "of": {"_count": 4}}, "pitiful": {"_count": 1, "supper": {"_count": 1}}, "bedroom": {"_count": 36, "on": {"_count": 2}, "": {"_count": 7}, "but": {"_count": 1}, "came": {"_count": 1}, "trying": {"_count": 1}, "as": {"_count": 1}, "with": {"_count": 1}, "walls": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}, "door": {"_count": 8}, "leaving": {"_count": 1}, "again": {"_count": 1}, "light": {"_count": 1}, "in": {"_count": 2}, "window": {"_count": 2}, "and": {"_count": 1}, "Harry": {"_count": 1}, "arriving": {"_count": 1}, "when": {"_count": 1}}, "orblike": {"_count": 2, "eyes": {"_count": 2}}, "triumph": {"_count": 1, "over": {"_count": 1}}, "bat": {"_count": 5, "ears": {"_count": 2}, "with": {"_count": 1}, "and": {"_count": 2}}, "strength": {"_count": 6, "": {"_count": 1}, "leave": {"_count": 1}, "Harry": {"_count": 1}, "braced": {"_count": 1}, "against": {"_count": 1}, "said": {"_count": 1}}, "word": {"_count": 7, "that": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}, "and": {"_count": 1}, "\u2018special": {"_count": 1}}, "deal": {"_count": 1, "if": {"_count": 1}}, "tiny": {"_count": 9, "eyes": {"_count": 4}, "black": {"_count": 1}, "model": {"_count": 1}, "babys": {"_count": 1}, "wing": {"_count": 1}, "limbs": {"_count": 1}}, "situation": {"_count": 2, "": {"_count": 1}, "real": {"_count": 1}}, "cage": {"_count": 6, "": {"_count": 3}, "hooting": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}}, "sore": {"_count": 1, "head": {"_count": 1}}, "job": {"_count": 7, "It": {"_count": 1}, "done": {"_count": 1}, "to": {"_count": 1}, "further": {"_count": 1}, "just": {"_count": 1}, "though": {"_count": 1}, "now": {"_count": 1}}, "knife": {"_count": 12, "and": {"_count": 8}, "pulled": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}}, "household": {"_count": 1, "pests": {"_count": 1}}, "childrens": {"_count": 1, "": {"_count": 1}}, "opinion": {"_count": 6, "": {"_count": 2}, "of": {"_count": 1}, "he": {"_count": 1}, "nor": {"_count": 1}, "this": {"_count": 1}}, "socks": {"_count": 6, "and": {"_count": 4}, "": {"_count": 2}}, "Gringotts": {"_count": 3, "bank": {"_count": 1}, "vault": {"_count": 2}}, "elbow": {"_count": 10, "and": {"_count": 6}, "": {"_count": 2}, "to": {"_count": 1}, "saying": {"_count": 1}}, "broken": {"_count": 8, "glasses": {"_count": 2}, "wand": {"_count": 3}, "leg": {"_count": 3}}, "son": {"_count": 29, "and": {"_count": 3}, "": {"_count": 8}, "had": {"_count": 2}, "Cedric": {"_count": 1}, "on": {"_count": 1}, "Draco": {"_count": 2}, "a": {"_count": 2}, "off": {"_count": 2}, "dead": {"_count": 1}, "to": {"_count": 1}, "Morfin": {"_count": 1}, "lying": {"_count": 1}, "Harry": {"_count": 1}, "Hereward": {"_count": 1}, "hugged": {"_count": 1}, "glide": {"_count": 1}}, "greasy": {"_count": 3, "hair": {"_count": 1}, "curtains": {"_count": 1}, "black": {"_count": 1}}, "grades": {"_count": 2, "dont": {"_count": 1}, "and": {"_count": 1}}, "oily": {"_count": 3, "voice": {"_count": 1}, "manner": {"_count": 1}, "hair": {"_count": 1}}, "hiding": {"_count": 7, "place": {"_count": 4}, "places": {"_count": 3}}, "mouthful": {"_count": 4, "of": {"_count": 4}}, "glistening": {"_count": 1, "bald": {"_count": 1}}, "vault": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "autobiography": {"_count": 1, "MAGICAL": {"_count": 1}}, "wavy": {"_count": 2, "hair": {"_count": 2}}, "schoolmates": {"_count": 1, "will": {"_count": 1}}, "shoe": {"_count": 2, "": {"_count": 1}, "burned": {"_count": 1}}, "report": {"_count": 2, "said": {"_count": 1}, "on": {"_count": 1}}, "month": {"_count": 1, "at": {"_count": 1}}, "box": {"_count": 3, "of": {"_count": 3}}, "right": {"_count": 68, "": {"_count": 4}, "Ron": {"_count": 1}, "arm": {"_count": 10}, "side": {"_count": 1}, "hand": {"_count": 20}, "foot": {"_count": 2}, "ear": {"_count": 3}, "Hermione": {"_count": 1}, "lay": {"_count": 1}, "mind": {"_count": 2}, "so": {"_count": 1}, "watching": {"_count": 1}, "into": {"_count": 1}, "saw": {"_count": 2}, "maintaining": {"_count": 1}, "leg": {"_count": 1}, "her": {"_count": 1}, "however": {"_count": 1}, "and": {"_count": 2}, "eye": {"_count": 1}, "temple": {"_count": 1}, "as": {"_count": 1}, "Malfoys": {"_count": 1}, "I": {"_count": 1}, "which": {"_count": 1}, "minds": {"_count": 1}, "Hermiones": {"_count": 1}, "fist": {"_count": 2}, "his": {"_count": 1}, "he": {"_count": 1}}, "window": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "door": {"_count": 8, "the": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 2}, "once": {"_count": 1}, "day": {"_count": 1}, "": {"_count": 1}, "swung": {"_count": 1}}, "full": {"_count": 5, "weight": {"_count": 1}, "powers": {"_count": 1}, "and": {"_count": 1}, "height": {"_count": 1}, "bidding": {"_count": 1}}, "faithful": {"_count": 4, "sidekick": {"_count": 1}, "servant": {"_count": 1}, "gang": {"_count": 1}, "Death": {"_count": 1}}, "spectacles": {"_count": 4, "": {"_count": 1}, "a": {"_count": 1}, "askew": {"_count": 1}, "on": {"_count": 1}}, "beak": {"_count": 7, "": {"_count": 1}, "go": {"_count": 1}, "looking": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}, "wide": {"_count": 1}}, "crimson": {"_count": 1, "forehead": {"_count": 1}}, "eardrums": {"_count": 5, "throb": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "were": {"_count": 1}}, "golden": {"_count": 4, "hair": {"_count": 1}, "plate": {"_count": 1}, "perch": {"_count": 1}, "token": {"_count": 1}}, "lungs": {"_count": 12, "": {"_count": 4}, "and": {"_count": 4}, "were": {"_count": 1}, "driving": {"_count": 1}, "to": {"_count": 1}, "seemed": {"_count": 1}}, "beetle": {"_count": 3, "a": {"_count": 1}, "it": {"_count": 1}, "with": {"_count": 1}}, "bag": {"_count": 57, "": {"_count": 13}, "and": {"_count": 18}, "split": {"_count": 1}, "toward": {"_count": 1}, "as": {"_count": 4}, "slipped": {"_count": 1}, "into": {"_count": 2}, "at": {"_count": 1}, "for": {"_count": 1}, "down": {"_count": 1}, "over": {"_count": 2}, "grabbed": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}, "withdrew": {"_count": 1}, "which": {"_count": 1}, "he": {"_count": 1}, "more": {"_count": 1}, "seized": {"_count": 1}, "before": {"_count": 1}, "reflecting": {"_count": 1}, "looking": {"_count": 1}, "with": {"_count": 1}}, "familys": {"_count": 1, "whole": {"_count": 1}}, "Spellotaped": {"_count": 1, "wand": {"_count": 1}}, "turquoise": {"_count": 1, "robes": {"_count": 1}}, "camera": {"_count": 6, "and": {"_count": 1}, "swinging": {"_count": 1}, "raised": {"_count": 1}, "": {"_count": 3}}, "ideal": {"_count": 1, "gift": {"_count": 1}}, "sleeves": {"_count": 5, "brandished": {"_count": 1}, "": {"_count": 3}, "once": {"_count": 1}}, "scarlet": {"_count": 7, "team": {"_count": 1}, "robes": {"_count": 3}, "eyes": {"_count": 2}, "slitpupiled": {"_count": 1}}, "photographic": {"_count": 1, "self": {"_count": 1}}, "Slytherin": {"_count": 2, "Quidditch": {"_count": 1}, "banner": {"_count": 1}}, "lap": {"_count": 17, "": {"_count": 3}, "at": {"_count": 1}, "purring": {"_count": 1}, "Neville": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 5}, "burst": {"_count": 1}, "rolled": {"_count": 1}, "a": {"_count": 1}, "tears": {"_count": 1}}, "expression": {"_count": 24, "brightened": {"_count": 1}, "clearing": {"_count": 2}, "neutral": {"_count": 1}, "most": {"_count": 1}, "": {"_count": 1}, "very": {"_count": 1}, "rapt": {"_count": 1}, "defiant": {"_count": 1}, "serene": {"_count": 1}, "changed": {"_count": 1}, "was": {"_count": 3}, "shrewd": {"_count": 2}, "hungry": {"_count": 1}, "almost": {"_count": 1}, "greedy": {"_count": 1}, "hardened": {"_count": 1}, "disgruntled": {"_count": 1}, "miserable": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "scrubbed": {"_count": 2, "table": {"_count": 1}, "wooden": {"_count": 1}}, "basin": {"_count": 1, "": {"_count": 1}}, "outstretched": {"_count": 2, "hand": {"_count": 1}, "hands": {"_count": 1}}, "jaws": {"_count": 2, "together": {"_count": 1}, "feeling": {"_count": 1}}, "chin": {"_count": 16, "": {"_count": 2}, "bumping": {"_count": 1}, "upon": {"_count": 1}, "unconcernedly": {"_count": 1}, "looking": {"_count": 1}, "drooping": {"_count": 1}, "onto": {"_count": 1}, "with": {"_count": 1}, "but": {"_count": 2}, "so": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}, "thoughtfully": {"_count": 1}}, "third": {"_count": 6, "year": {"_count": 4}, "son": {"_count": 1}, "attempt": {"_count": 1}}, "precious": {"_count": 2, "pumpkins": {"_count": 1}, "Horcrux": {"_count": 1}}, "fan": {"_count": 2, "mail": {"_count": 1}, "clubll": {"_count": 1}}, "shepherds": {"_count": 2, "pie": {"_count": 2}}, "aching": {"_count": 1, "hand": {"_count": 1}}, "fans": {"_count": 1, "": {"_count": 1}}, "pajamas": {"_count": 15, "got": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 4}, "as": {"_count": 1}, "slippers": {"_count": 1}, "he": {"_count": 1}, "took": {"_count": 1}, "said": {"_count": 1}, "looked": {"_count": 1}}, "doublet": {"_count": 1, "": {"_count": 1}}, "airy": {"_count": 1, "tone": {"_count": 1}}, "endless": {"_count": 1, "battle": {"_count": 1}}, "foul": {"_count": 2, "cat": {"_count": 1}, "rat": {"_count": 1}}, "jowls": {"_count": 6, "aquiver": {"_count": 4}, "quivering": {"_count": 1}, "were": {"_count": 1}}, "bulbous": {"_count": 1, "nose": {"_count": 1}}, "sentence": {"_count": 5, "to": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 1}, "hanging": {"_count": 1}, "": {"_count": 1}}, "timing": {"_count": 1, "": {"_count": 1}}, "halfcompleted": {"_count": 1, "form": {"_count": 1}}, "pouchy": {"_count": 3, "cheeks": {"_count": 2}, "face": {"_count": 1}}, "Potions": {"_count": 6, "homework": {"_count": 1}, "essay": {"_count": 2}, "book": {"_count": 3}}, "rash": {"_count": 1, "promise": {"_count": 1}}, "plumed": {"_count": 1, "hat": {"_count": 1}}, "bearded": {"_count": 1, "head": {"_count": 1}}, "audience": {"_count": 1, "but": {"_count": 1}}, "usually": {"_count": 3, "bloodless": {"_count": 1}, "toothy": {"_count": 1}, "sleek": {"_count": 1}}, "popping": {"_count": 2, "eyes": {"_count": 2}}, "blotched": {"_count": 1, "and": {"_count": 1}}, "gaunt": {"_count": 2, "face": {"_count": 2}}, "History": {"_count": 2, "of": {"_count": 2}}, "parchment": {"_count": 11, "which": {"_count": 1}, "list": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "while": {"_count": 1}, "thinking": {"_count": 1}, "ignoring": {"_count": 1}}, "writing": {"_count": 4, "as": {"_count": 1}, "becoming": {"_count": 1}, "was": {"_count": 1}, "at": {"_count": 1}}, "entering": {"_count": 1, "the": {"_count": 1}}, "routine": {"_count": 1, "had": {"_count": 1}}, "notes": {"_count": 11, "and": {"_count": 2}, "": {"_count": 3}, "before": {"_count": 1}, "on": {"_count": 2}, "serenely": {"_count": 1}, "looking": {"_count": 1}, "joyfully": {"_count": 1}}, "trance": {"_count": 1, "Lavender": {"_count": 1}}, "dry": {"_count": 2, "wheezy": {"_count": 1}, "reedy": {"_count": 1}}, "House": {"_count": 3, "if": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "toy": {"_count": 1, "broomstick": {"_count": 1}}, "Charms": {"_count": 2, "homework": {"_count": 1}, "classroom": {"_count": 1}}, "club": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "direction": {"_count": 8, "": {"_count": 3}, "followed": {"_count": 1}, "and": {"_count": 2}, "seemed": {"_count": 1}, "he": {"_count": 1}}, "rain": {"_count": 1, "drenched": {"_count": 1}}, "numb": {"_count": 4, "brain": {"_count": 1}, "legs": {"_count": 1}, "feet": {"_count": 1}, "fingers": {"_count": 1}}, "remaining": {"_count": 3, "hand": {"_count": 1}, "limbs": {"_count": 1}, "breath": {"_count": 1}}, "Seeker": {"_count": 2, "was": {"_count": 1}, "Wood": {"_count": 1}}, "jadegreen": {"_count": 1, "sleeves": {"_count": 1}}, "worst": {"_count": 8, "fears": {"_count": 2}, "subject": {"_count": 1}, "suspicions": {"_count": 1}, "enemy": {"_count": 2}, "fear": {"_count": 2}}, "pillows": {"_count": 15, "": {"_count": 6}, "and": {"_count": 4}, "watching": {"_count": 1}, "as": {"_count": 1}, "while": {"_count": 1}, "aching": {"_count": 1}, "fuming": {"_count": 1}}, "limp": {"_count": 3, "arm": {"_count": 1}, "feet": {"_count": 1}, "right": {"_count": 1}}, "ugly": {"_count": 6, "head": {"_count": 3}, "pincered": {"_count": 1}, "squashed": {"_count": 1}, "face": {"_count": 1}}, "masters": {"_count": 5, "dinner": {"_count": 1}, "present": {"_count": 1}, "defeat": {"_count": 1}, "head": {"_count": 1}, "soul": {"_count": 1}}, "bulging": {"_count": 2, "eyes": {"_count": 2}}, "Bludger": {"_count": 1, "would": {"_count": 1}}, "ragged": {"_count": 1, "pillowcase": {"_count": 1}}, "bedside": {"_count": 22, "table": {"_count": 14}, "cabinet": {"_count": 7}, "to": {"_count": 1}}, "attacker": {"_count": 3, "": {"_count": 2}, "was": {"_count": 1}}, "bones": {"_count": 1, "back": {"_count": 1}}, "smile": {"_count": 6, "fading": {"_count": 3}, "did": {"_count": 1}, "now": {"_count": 1}, "faltered": {"_count": 1}}, "round": {"_count": 12, "face": {"_count": 7}, "glasses": {"_count": 1}, "blue": {"_count": 2}, "eyes": {"_count": 1}, "boyish": {"_count": 1}}, "watery": {"_count": 1, "potion": {"_count": 1}}, "cauldron": {"_count": 24, "pulled": {"_count": 1}, "": {"_count": 7}, "right": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 5}, "saw": {"_count": 1}, "with": {"_count": 1}, "yet": {"_count": 1}, "for": {"_count": 1}, "intending": {"_count": 1}, "he": {"_count": 1}, "smirking": {"_count": 1}, "which": {"_count": 1}, "on": {"_count": 1}}, "greatgreatgreatgreat": {"_count": 1, "grandson": {"_count": 1}}, "wizarding": {"_count": 2, "relatives": {"_count": 1}, "friends": {"_count": 1}}, "brain": {"_count": 39, "but": {"_count": 2}, "": {"_count": 5}, "so": {"_count": 2}, "had": {"_count": 2}, "seemed": {"_count": 2}, "if": {"_count": 1}, "concentrate": {"_count": 1}, "too": {"_count": 1}, "then": {"_count": 1}, "turned": {"_count": 1}, "was": {"_count": 5}, "disengaged": {"_count": 1}, "against": {"_count": 1}, "working": {"_count": 2}, "teeming": {"_count": 1}, "aching": {"_count": 1}, "a": {"_count": 1}, "felt": {"_count": 1}, "Sirius": {"_count": 1}, "without": {"_count": 1}, "unacknowledged": {"_count": 1}, "and": {"_count": 1}, "slow": {"_count": 1}, "like": {"_count": 1}, "quite": {"_count": 1}, "you": {"_count": 1}}, "horse": {"_count": 1, "and": {"_count": 1}}, "friend": {"_count": 12, "into": {"_count": 1}, "Hannah": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 3}, "promptly": {"_count": 1}, "Sanguini": {"_count": 1}, "and": {"_count": 1}, "Peter": {"_count": 1}, "Nicolas": {"_count": 1}, "Gellert": {"_count": 1}}, "free": {"_count": 13, "time": {"_count": 2}, "hand": {"_count": 8}, "right": {"_count": 1}, "fist": {"_count": 1}, "index": {"_count": 1}}, "next": {"_count": 6, "victim": {"_count": 1}, "cushion": {"_count": 1}, "speech": {"_count": 1}, "lesson": {"_count": 1}, "Stunning": {"_count": 1}, "word": {"_count": 1}}, "white": {"_count": 12, "lips": {"_count": 1}, "face": {"_count": 3}, "hair": {"_count": 1}, "skin": {"_count": 1}, "faced": {"_count": 1}, "blond": {"_count": 1}, "hands": {"_count": 2}, "fingers": {"_count": 2}}, "massive": {"_count": 8, "gloved": {"_count": 1}, "hand": {"_count": 1}, "backside": {"_count": 1}, "chest": {"_count": 2}, "purple": {"_count": 1}, "shoulders": {"_count": 2}}, "breathing": {"_count": 7, "fast": {"_count": 2}, "faster": {"_count": 1}, "was": {"_count": 1}, "becoming": {"_count": 1}, "eased": {"_count": 1}, "heavy": {"_count": 1}}, "wits": {"_count": 4, "that": {"_count": 1}, "": {"_count": 2}, "about": {"_count": 1}}, "penetrating": {"_count": 2, "lightblue": {"_count": 2}}, "balaclava": {"_count": 1, "perched": {"_count": 1}}, "shaggy": {"_count": 6, "black": {"_count": 2}, "head": {"_count": 4}}, "agitation": {"_count": 1, "sending": {"_count": 1}}, "growing": {"_count": 1, "dread": {"_count": 1}}, "fanged": {"_count": 1, "servant": {"_count": 1}}, "being": {"_count": 3, "Slytherin": {"_count": 1}, "as": {"_count": 1}, "any": {"_count": 1}}, "dirty": {"_count": 4, "work": {"_count": 2}, "face": {"_count": 1}, "blankets": {"_count": 1}}, "duty": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "present": {"_count": 6, "": {"_count": 3}, "and": {"_count": 1}, "darkness": {"_count": 1}, "here": {"_count": 1}}, "comeuppance": {"_count": 2, "in": {"_count": 1}, "for": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "shoes": {"_count": 8, "and": {"_count": 3}, "halfpolished": {"_count": 1}, "pulled": {"_count": 1}, "": {"_count": 1}, "feet": {"_count": 1}, "His": {"_count": 1}}, "ridiculous": {"_count": 1, "Muggle": {"_count": 1}}, "shield": {"_count": 1, "about": {"_count": 1}}, "special": {"_count": 1, "award": {"_count": 1}}, "diary": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 7, "her": {"_count": 7}}, "harp": {"_count": 1, "in": {"_count": 1}}, "ink": {"_count": 6, "bottle": {"_count": 5}, "": {"_count": 1}}, "ripped": {"_count": 2, "bag": {"_count": 2}}, "musical": {"_count": 1, "valentine": {"_count": 1}}, "temper": {"_count": 15, "": {"_count": 4}, "rising": {"_count": 5}, "getting": {"_count": 1}, "at": {"_count": 1}, "red": {"_count": 1}, "was": {"_count": 1}, "rise": {"_count": 1}, "with": {"_count": 1}}, "hurry": {"_count": 1, "to": {"_count": 1}}, "thumbs": {"_count": 4, "watching": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}, "together": {"_count": 1}}, "award": {"_count": 1, "": {"_count": 1}}, "Oh": {"_count": 1, "Potter": {"_count": 1}}, "career": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "appointment": {"_count": 1}}, "experience": {"_count": 1, "": {"_count": 1}}, "cheerful": {"_count": 1, "mood": {"_count": 1}}, "views": {"_count": 2, "heard": {"_count": 1}, "on": {"_count": 1}}, "toe": {"_count": 6, "only": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}}, "chairs": {"_count": 1, "and": {"_count": 1}}, "bowler": {"_count": 13, "": {"_count": 1}, "waited": {"_count": 1}, "hat": {"_count": 8}, "tilted": {"_count": 1}, "rapidly": {"_count": 1}, "so": {"_count": 1}}, "blue": {"_count": 5, "eyes": {"_count": 3}, "eye": {"_count": 1}, "pajamas": {"_count": 1}}, "basket": {"_count": 3, "": {"_count": 2}, "during": {"_count": 1}}, "bright": {"_count": 6, "blue": {"_count": 2}, "green": {"_count": 1}, "red": {"_count": 1}, "brown": {"_count": 1}, "black": {"_count": 1}}, "ground": {"_count": 4, "took": {"_count": 1}, "": {"_count": 2}, "this": {"_count": 1}}, "heels": {"_count": 19, "the": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 10}, "gazing": {"_count": 1}, "moments": {"_count": 1}, "Neville": {"_count": 1}, "then": {"_count": 1}, "Fang": {"_count": 1}, "lighting": {"_count": 1}, "and": {"_count": 1}}, "stool": {"_count": 4, "and": {"_count": 3}, "": {"_count": 1}}, "attempts": {"_count": 5, "to": {"_count": 5}}, "pruning": {"_count": 1, "shears": {"_count": 1}}, "hints": {"_count": 1, "that": {"_count": 1}}, "confidence": {"_count": 3, "that": {"_count": 2}, "": {"_count": 1}}, "resolve": {"_count": 1, "and": {"_count": 1}}, "deep": {"_count": 6, "booming": {"_count": 1}, "voice": {"_count": 3}, "calming": {"_count": 1}, "slow": {"_count": 1}}, "pincers": {"_count": 3, "with": {"_count": 1}, "rapidly": {"_count": 1}, "furiously": {"_count": 1}}, "eight": {"_count": 2, "milky": {"_count": 1}, "hats": {"_count": 1}}, "domed": {"_count": 1, "web": {"_count": 1}}, "fellow": {"_count": 18, "spiders": {"_count": 1}, "diners": {"_count": 1}, "Gryffindors": {"_count": 3}, "rats": {"_count": 1}, "members": {"_count": 1}, "Durmstrang": {"_count": 2}, "students": {"_count": 4}, "judges": {"_count": 1}, "Death": {"_count": 1}, "D": {"_count": 1}, "": {"_count": 1}, "pictures": {"_count": 1}}, "anxiety": {"_count": 2, "to": {"_count": 2}}, "limbs": {"_count": 4, "and": {"_count": 1}, "began": {"_count": 1}, "wrapped": {"_count": 1}, "working": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}}, "idea": {"_count": 3, "of": {"_count": 2}, "into": {"_count": 1}}, "delight": {"_count": 3, "it": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "stonyfaced": {"_count": 1, "colleagues": {"_count": 1}}, "trunks": {"_count": 1, "shut": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "shaking": {"_count": 7, "voice": {"_count": 1}, "shoulders": {"_count": 1}, "fingers": {"_count": 1}, "hands": {"_count": 2}, "finger": {"_count": 1}, "hand": {"_count": 1}}, "palms": {"_count": 2, "": {"_count": 2}}, "hungry": {"_count": 1, "eyes": {"_count": 1}}, "quiet": {"_count": 3, "voice": {"_count": 1}, "thoughtful": {"_count": 1}, "for": {"_count": 1}}, "defender": {"_count": 1, "": {"_count": 1}}, "chances": {"_count": 4, "": {"_count": 2}, "of": {"_count": 2}}, "cheek": {"_count": 10, "as": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 2}, "from": {"_count": 1}, "or": {"_count": 1}, "clumsily": {"_count": 1}, "I": {"_count": 1}, "told": {"_count": 1}}, "eerie": {"_count": 1, "song": {"_count": 1}}, "sword": {"_count": 4, "thin": {"_count": 1}, "out": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}}, "vision": {"_count": 10, "went": {"_count": 1}, "was": {"_count": 3}, "more": {"_count": 1}, "shaking": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "brightening": {"_count": 1}}, "bloodsoaked": {"_count": 1, "robes": {"_count": 1}}, "eager": {"_count": 2, "face": {"_count": 2}}, "beady": {"_count": 1, "eyes": {"_count": 1}}, "part": {"_count": 4, "in": {"_count": 2}, "believed": {"_count": 1}, "Albus": {"_count": 1}}, "vague": {"_count": 2, "smile": {"_count": 1}, "suspicions": {"_count": 1}}, "handpicked": {"_count": 1, "students": {"_count": 1}}, "Muggle": {"_count": 6, "Protection": {"_count": 1}, "parents": {"_count": 1}, "obsession": {"_count": 1}, "companion": {"_count": 1}, "grandparents": {"_count": 1}, "contraptions": {"_count": 1}}, "houseelf": {"_count": 4, "": {"_count": 2}, "being": {"_count": 1}, "saves": {"_count": 1}}, "slimy": {"_count": 1, "filthy": {"_count": 1}}, "eaglefeather": {"_count": 3, "quill": {"_count": 3}}, "essay": {"_count": 7, "Witch": {"_count": 1}, "quill": {"_count": 1}, "and": {"_count": 2}, "though": {"_count": 1}, "because": {"_count": 1}, "": {"_count": 1}}, "flashlight": {"_count": 1, "closer": {"_count": 1}}, "summer": {"_count": 1, "holidays": {"_count": 1}}, "spellbooks": {"_count": 1, "had": {"_count": 1}}, "chance": {"_count": 9, "in": {"_count": 1}, "": {"_count": 3}, "PETRIFICUS": {"_count": 1}, "to": {"_count": 1}, "all": {"_count": 1}, "of": {"_count": 1}, "He": {"_count": 1}}, "owl": {"_count": 1, "Hedwig": {"_count": 1}}, "enormous": {"_count": 22, "cousin": {"_count": 1}, "hands": {"_count": 4}, "wings": {"_count": 1}, "face": {"_count": 2}, "thuggish": {"_count": 1}, "black": {"_count": 1}, "green": {"_count": 1}, "eyes": {"_count": 1}, "round": {"_count": 1}, "chest": {"_count": 1}, "spotted": {"_count": 1}, "feet": {"_count": 2}, "silver": {"_count": 1}, "wooden": {"_count": 1}, "copper": {"_count": 1}, "belly": {"_count": 1}, "relief": {"_count": 1}}, "last": {"_count": 24, "two": {"_count": 1}, "parcel": {"_count": 1}, "star": {"_count": 1}, "night": {"_count": 1}, "few": {"_count": 1}, "encounter": {"_count": 1}, "piece": {"_count": 2}, "one": {"_count": 1}, "appearance": {"_count": 1}, "chance": {"_count": 3}, "dream": {"_count": 1}, "desperate": {"_count": 1}, "living": {"_count": 1}, "days": {"_count": 1}, "respects": {"_count": 1}, "Horcrux": {"_count": 1}, "hour": {"_count": 1}, "visit": {"_count": 1}, "laugh": {"_count": 1}, "weakness": {"_count": 1}, "best": {"_count": 1}}, "thirteenth": {"_count": 2, "birthday": {"_count": 2}}, "pet": {"_count": 2, "rat": {"_count": 2}}, "seventh": {"_count": 2, "and": {"_count": 2}}, "Head": {"_count": 4, "Boy": {"_count": 2}, "of": {"_count": 2}}, "neat": {"_count": 2, "hair": {"_count": 1}, "suit": {"_count": 1}}, "hornrimmed": {"_count": 3, "glasses": {"_count": 3}}, "soup": {"_count": 4, "": {"_count": 2}, "transferring": {"_count": 1}, "would": {"_count": 1}}, "clock": {"_count": 1, "": {"_count": 1}}, "phone": {"_count": 1, "call": {"_count": 1}}, "three": {"_count": 5, "birthday": {"_count": 1}, "friends": {"_count": 1}, "favorite": {"_count": 1}, "Ds": {"_count": 1}, "opponents": {"_count": 1}}, "piggy": {"_count": 3, "little": {"_count": 2}, "eyes": {"_count": 1}}, "five": {"_count": 2, "chins": {"_count": 1}, "fellows": {"_count": 1}}, "teacup": {"_count": 5, "glanced": {"_count": 1}, "rather": {"_count": 1}, "stood": {"_count": 1}, "so": {"_count": 1}, "chewing": {"_count": 1}}, "mean": {"_count": 1, "little": {"_count": 1}}, "auntie": {"_count": 1, "said": {"_count": 1}}, "porky": {"_count": 2, "shoulder": {"_count": 1}, "hands": {"_count": 1}}, "temple": {"_count": 12, "": {"_count": 4}, "pulsing": {"_count": 2}, "removed": {"_count": 1}, "and": {"_count": 4}, "like": {"_count": 1}}, "blond": {"_count": 1, "hair": {"_count": 1}}, "improvement": {"_count": 1, "": {"_count": 1}}, "food": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "Handbook": {"_count": 1, "of": {"_count": 1}}, "drillmaking": {"_count": 1, "company": {"_count": 1}}, "fourth": {"_count": 2, "slice": {"_count": 1}, "year": {"_count": 1}}, "book": {"_count": 12, "A": {"_count": 1}, "": {"_count": 4}, "though": {"_count": 1}, "didnt": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}, "a": {"_count": 1}, "away": {"_count": 1}, "and": {"_count": 1}}, "pie": {"_count": 1, "to": {"_count": 1}}, "trouser": {"_count": 1, "leg": {"_count": 1}}, "heavy": {"_count": 4, "trunk": {"_count": 1}, "head": {"_count": 1}, "footfalls": {"_count": 1}, "black": {"_count": 1}}, "money": {"_count": 6, "out": {"_count": 1}, "bag": {"_count": 5}}, "fall": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "from": {"_count": 1}}, "professional": {"_count": 1, "manner": {"_count": 1}}, "troubles": {"_count": 1, "for": {"_count": 1}}, "Defense": {"_count": 3, "Against": {"_count": 3}}, "waxy": {"_count": 1, "white": {"_count": 1}}, "slow": {"_count": 3, "voice": {"_count": 1}, "painful": {"_count": 1}, "deep": {"_count": 1}}, "passengers": {"_count": 1, "in": {"_count": 1}}, "feather": {"_count": 1, "bed": {"_count": 1}}, "pinstriped": {"_count": 5, "cloak": {"_count": 5}}, "bottlegreen": {"_count": 1, "suit": {"_count": 1}}, "nightshirt": {"_count": 4, "and": {"_count": 2}, "Filch": {"_count": 1}, "": {"_count": 1}}, "crumpet": {"_count": 1, "impatiently": {"_count": 1}}, "strange": {"_count": 1, "new": {"_count": 1}}, "essays": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "companion": {"_count": 5, "": {"_count": 2}, "fell": {"_count": 1}, "his": {"_count": 1}, "who": {"_count": 1}}, "store": {"_count": 1, "of": {"_count": 1}}, "school": {"_count": 12, "robes": {"_count": 3}, "things": {"_count": 2}, "trunk": {"_count": 3}, "ones": {"_count": 1}, "career": {"_count": 2}, "": {"_count": 1}}, "two": {"_count": 4, "new": {"_count": 1}, "best": {"_count": 2}, "friends": {"_count": 1}}, "booklist": {"_count": 4, "out": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "gloves": {"_count": 3, "and": {"_count": 2}, "on": {"_count": 1}}, "whiskers": {"_count": 2, "": {"_count": 2}}, "guard": {"_count": 3, "": {"_count": 1}, "or": {"_count": 1}, "the": {"_count": 1}}, "badge": {"_count": 7, "": {"_count": 3}, "into": {"_count": 1}, "smirking": {"_count": 1}, "said": {"_count": 1}, "three": {"_count": 1}}, "photo": {"_count": 1, "of": {"_count": 1}}, "girlfriend": {"_count": 8, "": {"_count": 3}, "Penelope": {"_count": 1}, "started": {"_count": 1}, "seemed": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}}, "shiny": {"_count": 3, "badge": {"_count": 1}, "pate": {"_count": 1}, "forehead": {"_count": 1}}, "light": {"_count": 2, "brown": {"_count": 1}, "blue": {"_count": 1}}, "case": {"_count": 9, "she": {"_count": 1}, "": {"_count": 3}, "against": {"_count": 1}, "properly": {"_count": 1}, "closed": {"_count": 1}, "since": {"_count": 1}, "was": {"_count": 1}}, "squashed": {"_count": 1, "face": {"_count": 1}}, "yellow": {"_count": 5, "eyes": {"_count": 3}, "teeth": {"_count": 2}}, "cronies": {"_count": 3, "Vincent": {"_count": 1}, "Crabbe": {"_count": 1}, "would": {"_count": 1}}, "corner": {"_count": 1, "": {"_count": 1}}, "tired": {"_count": 1, "gray": {"_count": 1}}, "handful": {"_count": 1, "of": {"_count": 1}}, "skin": {"_count": 20, "": {"_count": 6}, "and": {"_count": 2}, "his": {"_count": 1}, "Sirius": {"_count": 1}, "as": {"_count": 2}, "once": {"_count": 1}, "pain": {"_count": 1}, "the": {"_count": 2}, "still": {"_count": 1}, "throbbing": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}}, "pulse": {"_count": 3, "": {"_count": 2}, "quickening": {"_count": 1}}, "remedies": {"_count": 1, "": {"_count": 1}}, "collapsing": {"_count": 1, "in": {"_count": 1}}, "thin": {"_count": 10, "sallow": {"_count": 1}, "face": {"_count": 3}, "mouth": {"_count": 2}, "gray": {"_count": 1}, "chest": {"_count": 1}, "legs": {"_count": 1}, "arms": {"_count": 1}}, "shining": {"_count": 2, "face": {"_count": 1}, "moment": {"_count": 1}}, "napkin": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "course": {"_count": 1, "schedule": {"_count": 1}}, "pony": {"_count": 1, "": {"_count": 1}}, "metal": {"_count": 1, "knees": {"_count": 1}}, "visor": {"_count": 3, "to": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "sweating": {"_count": 3, "face": {"_count": 1}, "brow": {"_count": 2}}, "armor": {"_count": 2, "": {"_count": 1}, "screaming": {"_count": 1}}, "question": {"_count": 3, "the": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}}, "pouf": {"_count": 2, "": {"_count": 2}}, "copy": {"_count": 20, "of": {"_count": 20}}, "fork": {"_count": 10, "but": {"_count": 1}, "fall": {"_count": 1}, "falling": {"_count": 1}, "": {"_count": 2}, "glaring": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}, "You": {"_count": 1}, "hover": {"_count": 1}}, "thread": {"_count": 1, "so": {"_count": 1}}, "feathers": {"_count": 2, "out": {"_count": 1}, "had": {"_count": 1}}, "which": {"_count": 1, "didnt": {"_count": 1}}, "collar": {"_count": 3, "as": {"_count": 1}, "like": {"_count": 1}, "apparently": {"_count": 1}}, "shirtsleeves": {"_count": 1, "at": {"_count": 1}}, "boarhound": {"_count": 1, "Fang": {"_count": 1}}, "hooked": {"_count": 6, "nose": {"_count": 6}}, "potion": {"_count": 9, "feverishly": {"_count": 1}, "tonight": {"_count": 1}, "making": {"_count": 1}, "to": {"_count": 1}, "again": {"_count": 1}, "it": {"_count": 1}, "which": {"_count": 1}, "looked": {"_count": 1}, "kit": {"_count": 1}}, "robe": {"_count": 5, "poured": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "over": {"_count": 1}}, "tatty": {"_count": 1, "old": {"_count": 1}}, "curlytoed": {"_count": 1, "feet": {"_count": 1}}, "brooms": {"_count": 1, "": {"_count": 1}}, "lacy": {"_count": 1, "dress": {"_count": 1}}, "gang": {"_count": 4, "of": {"_count": 1}, "every": {"_count": 1}, "spent": {"_count": 1}, "had": {"_count": 1}}, "grandmothers": {"_count": 2, "clothes": {"_count": 1}, "best": {"_count": 1}}, "deathbed": {"_count": 1, "": {"_count": 1}}, "unsatisfactory": {"_count": 1, "classes": {"_count": 1}}, "pacing": {"_count": 5, "the": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}}, "star": {"_count": 3, "chart": {"_count": 2}, "act": {"_count": 1}}, "bandy": {"_count": 1, "legs": {"_count": 1}}, "solitary": {"_count": 1, "way": {"_count": 1}}, "grip": {"_count": 17, "": {"_count": 3}, "it": {"_count": 1}, "tightening": {"_count": 1}, "on": {"_count": 4}, "but": {"_count": 1}, "Kreacher": {"_count": 1}, "upon": {"_count": 2}, "and": {"_count": 3}, "the": {"_count": 1}}, "kettle": {"_count": 1, "": {"_count": 1}}, "tea": {"_count": 8, "down": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}, "cozy": {"_count": 3}}, "cackle": {"_count": 1, "": {"_count": 1}}, "tone": {"_count": 8, "made": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 2}, "making": {"_count": 1}, "seemed": {"_count": 1}, "was": {"_count": 1}}, "mum": {"_count": 4, "": {"_count": 2}, "and": {"_count": 2}}, "cheeks": {"_count": 6, "blew": {"_count": 1}, "and": {"_count": 1}, "smooth": {"_count": 1}, "were": {"_count": 1}, "bulging": {"_count": 1}, "": {"_count": 1}}, "alarm": {"_count": 1, "clock": {"_count": 1}}, "teammates": {"_count": 2, "let": {"_count": 1}, "had": {"_count": 1}}, "sodden": {"_count": 1, "bangs": {"_count": 1}}, "bowl": {"_count": 4, "of": {"_count": 2}, "because": {"_count": 1}, "": {"_count": 1}}, "bandages": {"_count": 1, "and": {"_count": 1}}, "refusal": {"_count": 1, "to": {"_count": 1}}, "young": {"_count": 1, "face": {"_count": 1}}, "manic": {"_count": 1, "energy": {"_count": 1}}, "classroom": {"_count": 3, "with": {"_count": 1}, "before": {"_count": 1}, "door": {"_count": 1}}, "filing": {"_count": 1, "cabinets": {"_count": 1}}, "study": {"_count": 4, "the": {"_count": 1}, "schedule": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "minute": {"_count": 1, "wand": {"_count": 1}}, "figure": {"_count": 2, "": {"_count": 2}}, "tankard": {"_count": 5, "": {"_count": 2}, "and": {"_count": 1}, "with": {"_count": 1}, "set": {"_count": 1}}, "doubleagent": {"_count": 1, "role": {"_count": 1}}, "support": {"_count": 2, "openly": {"_count": 1}, "will": {"_count": 1}}, "downfall": {"_count": 3, "in": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 1}}, "true": {"_count": 5, "colors": {"_count": 2}, "identity": {"_count": 2}, "destiny": {"_count": 1}}, "godfather": {"_count": 18, "Ill": {"_count": 1}, "two": {"_count": 1}, "": {"_count": 6}, "to": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}, "every": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "or": {"_count": 1}, "yet": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 1}}, "motorbike": {"_count": 1, "ter": {"_count": 1}}, "poor": {"_count": 3, "mother": {"_count": 1}, "owl": {"_count": 1}, "leadership": {"_count": 1}}, "er": {"_count": 1, "eventual": {"_count": 1}}, "dad": {"_count": 8, "": {"_count": 2}, "is": {"_count": 1}, "was": {"_count": 2}, "being": {"_count": 1}, "were": {"_count": 1}, "so": {"_count": 1}}, "cabinet": {"_count": 1, "took": {"_count": 1}}, "claws": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "leather": {"_count": 2, "vest": {"_count": 1}, "jacket": {"_count": 1}}, "tangled": {"_count": 5, "beard": {"_count": 4}, "black": {"_count": 1}}, "gigantic": {"_count": 2, "hands": {"_count": 1}, "arms": {"_count": 1}}, "brief": {"_count": 2, "spell": {"_count": 2}}, "bedspread": {"_count": 1, "": {"_count": 1}}, "pajama": {"_count": 3, "pocket": {"_count": 1}, "trousers": {"_count": 2}}, "palm": {"_count": 6, "": {"_count": 4}, "upon": {"_count": 1}, "to": {"_count": 1}}, "conversation": {"_count": 4, "with": {"_count": 2}, "while": {"_count": 1}, "not": {"_count": 1}}, "antidementor": {"_count": 1, "lessons": {"_count": 1}}, "promise": {"_count": 3, "at": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "thoughts": {"_count": 25, "back": {"_count": 1}, "rather": {"_count": 1}, "": {"_count": 4}, "without": {"_count": 1}, "and": {"_count": 4}, "before": {"_count": 1}, "swirl": {"_count": 1}, "to": {"_count": 2}, "Celestina": {"_count": 1}, "on": {"_count": 2}, "his": {"_count": 1}, "for": {"_count": 1}, "but": {"_count": 1}, "turned": {"_count": 1}, "could": {"_count": 1}, "northward": {"_count": 1}, "buzzed": {"_count": 1}}, "position": {"_count": 5, "in": {"_count": 1}, "at": {"_count": 1}, "beside": {"_count": 1}, "upon": {"_count": 1}, "": {"_count": 1}}, "shoelace": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "brains": {"_count": 9, "": {"_count": 3}, "to": {"_count": 2}, "but": {"_count": 1}, "over": {"_count": 1}, "Harry": {"_count": 1}, "though": {"_count": 1}}, "better": {"_count": 2, "judgment": {"_count": 1}, "nature": {"_count": 1}}, "chocolate": {"_count": 1, "wishing": {"_count": 1}}, "Patronus": {"_count": 3, "was": {"_count": 2}, "it": {"_count": 1}}, "secret": {"_count": 4, "desire": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}}, "bottle": {"_count": 5, "thoughtfully": {"_count": 1}, "of": {"_count": 3}, "she": {"_count": 1}}, "butterbeer": {"_count": 9, "thanked": {"_count": 1}, "watching": {"_count": 1}, "and": {"_count": 1}, "bottle": {"_count": 3}, "in": {"_count": 1}, "he": {"_count": 1}, "down": {"_count": 1}}, "Firebolt": {"_count": 28, "and": {"_count": 7}, "": {"_count": 3}, "upward": {"_count": 1}, "over": {"_count": 3}, "that": {"_count": 1}, "around": {"_count": 2}, "the": {"_count": 1}, "he": {"_count": 2}, "hurtling": {"_count": 1}, "feeling": {"_count": 1}, "though": {"_count": 1}, "gripped": {"_count": 1}, "for": {"_count": 1}, "toward": {"_count": 1}, "because": {"_count": 1}, "will": {"_count": 1}}, "rat": {"_count": 3, "tonic": {"_count": 1}, "very": {"_count": 1}, "up": {"_count": 1}}, "final": {"_count": 5, "instructions": {"_count": 1}, "detention": {"_count": 1}, "meal": {"_count": 1}, "Horcrux": {"_count": 1}, "destination": {"_count": 1}}, "displeasure": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "toes": {"_count": 6, "before": {"_count": 1}, "hitting": {"_count": 1}, "like": {"_count": 1}, "beside": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}}, "feeble": {"_count": 1, "Patronus": {"_count": 1}}, "speciality": {"_count": 1, "he": {"_count": 1}}, "quarry": {"_count": 3, "": {"_count": 2}, "had": {"_count": 1}}, "hangings": {"_count": 1, "he": {"_count": 1}}, "curtains": {"_count": 1, "he": {"_count": 1}}, "chilling": {"_count": 1, "tale": {"_count": 1}}, "vampire": {"_count": 1, "essay": {"_count": 1}}, "hippogriffs": {"_count": 1, "SPLAT": {"_count": 1}}, "silverblond": {"_count": 1, "hair": {"_count": 1}}, "muddy": {"_count": 2, "hands": {"_count": 1}, "footprints": {"_count": 1}}, "safety": {"_count": 1, "": {"_count": 1}}, "advantage": {"_count": 3, "his": {"_count": 1}, "": {"_count": 1}, "He": {"_count": 1}}, "compliments": {"_count": 1, "to": {"_count": 1}}, "abnormally": {"_count": 1, "large": {"_count": 1}}, "fire": {"_count": 1, "seized": {"_count": 1}}, "shabby": {"_count": 1, "robes": {"_count": 1}}, "bit": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "handkerchief": {"_count": 7, "": {"_count": 2}, "and": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 1}, "back": {"_count": 1}, "once": {"_count": 1}}, "Firebolts": {"_count": 1, "safety": {"_count": 1}}, "four": {"_count": 5, "poster": {"_count": 4}, "paws": {"_count": 1}}, "Beaters": {"_count": 1, "club": {"_count": 1}}, "jaw": {"_count": 8, "clenched": {"_count": 1}, "drop": {"_count": 2}, "set": {"_count": 2}, "move": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "dive": {"_count": 1, "his": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Confusing": {"_count": 1, "Concoction": {"_count": 1}}, "success": {"_count": 1, "Harry": {"_count": 1}}, "boss": {"_count": 3, "": {"_count": 2}, "was": {"_count": 1}}, "thumb": {"_count": 5, "toward": {"_count": 2}, "over": {"_count": 2}, "at": {"_count": 1}}, "master": {"_count": 12, "": {"_count": 5}, "and": {"_count": 1}, "he": {"_count": 1}, "Sirius": {"_count": 1}, "that": {"_count": 1}, "oh": {"_count": 1}, "what": {"_count": 1}, "most": {"_count": 1}}, "servants": {"_count": 3, "aid": {"_count": 1}, "going": {"_count": 1}, "His": {"_count": 1}}, "visitor": {"_count": 1, "palefaced": {"_count": 1}}, "silver": {"_count": 5, "beard": {"_count": 1}, "Patronus": {"_count": 1}, "eyebrows": {"_count": 1}, "hair": {"_count": 1}, "hand": {"_count": 1}}, "sharp": {"_count": 4, "head": {"_count": 2}, "eyes": {"_count": 2}}, "shouts": {"_count": 1, "at": {"_count": 1}}, "bottlebrush": {"_count": 3, "tail": {"_count": 3}}, "elbows": {"_count": 1, "": {"_count": 1}}, "grin": {"_count": 3, "widened": {"_count": 1}, "fading": {"_count": 1}, "sagged": {"_count": 1}}, "wasted": {"_count": 1, "wrist": {"_count": 1}}, "sunken": {"_count": 3, "gaze": {"_count": 1}, "veined": {"_count": 1}, "eyes": {"_count": 1}}, "hippogriff": {"_count": 1, "was": {"_count": 1}}, "hollowed": {"_count": 1, "eyes": {"_count": 1}}, "graying": {"_count": 2, "hair": {"_count": 2}}, "trust": {"_count": 2, "while": {"_count": 1}, "": {"_count": 1}}, "reasons": {"_count": 4, "": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}, "replied": {"_count": 1}}, "wasnt": {"_count": 1, "the": {"_count": 1}}, "bonds": {"_count": 2, "": {"_count": 2}}, "clawlike": {"_count": 1, "hands": {"_count": 1}}, "kind": {"_count": 3, "Ive": {"_count": 1}, "which": {"_count": 1}, "that": {"_count": 1}}, "death": {"_count": 7, "": {"_count": 2}, "with": {"_count": 1}, "must": {"_count": 1}, "would": {"_count": 1}, "it": {"_count": 1}, "but": {"_count": 1}}, "wet": {"_count": 5, "eyes": {"_count": 1}, "hands": {"_count": 1}, "face": {"_count": 2}, "hair": {"_count": 1}}, "pasty": {"_count": 1, "face": {"_count": 1}}, "middle": {"_count": 3, "finger": {"_count": 2}, "name": {"_count": 1}}, "index": {"_count": 2, "was": {"_count": 1}, "finger": {"_count": 1}}, "fathomless": {"_count": 2, "eyes": {"_count": 1}, "black": {"_count": 1}}, "brow": {"_count": 6, "furrowed": {"_count": 5}, "on": {"_count": 1}}, "maimed": {"_count": 1, "hand": {"_count": 1}}, "answer": {"_count": 8, "": {"_count": 3}, "to": {"_count": 2}, "before": {"_count": 1}, "ready": {"_count": 2}}, "lolling": {"_count": 1, "head": {"_count": 1}}, "paw": {"_count": 1, "to": {"_count": 1}}, "bandaged": {"_count": 1, "leg": {"_count": 1}}, "bald": {"_count": 5, "tail": {"_count": 1}, "patch": {"_count": 2}, "head": {"_count": 2}}, "muzzle": {"_count": 1, "and": {"_count": 1}}, "paws": {"_count": 1, "faded": {"_count": 1}}, "formless": {"_count": 1, "Patronus": {"_count": 1}}, "protection": {"_count": 4, "outofbounds": {"_count": 1}, "might": {"_count": 1}, "youd": {"_count": 1}, "": {"_count": 1}}, "eyelids": {"_count": 6, "too": {"_count": 1}, "": {"_count": 1}, "flickering": {"_count": 1}, "grew": {"_count": 1}, "disorienting": {"_count": 1}, "Harry": {"_count": 1}}, "shout": {"_count": 1, "had": {"_count": 1}}, "waistcoat": {"_count": 7, "": {"_count": 3}, "in": {"_count": 1}, "and": {"_count": 2}, "threatened": {"_count": 1}}, "doorway": {"_count": 1, "shaking": {"_count": 1}}, "scaly": {"_count": 2, "knees": {"_count": 1}, "front": {"_count": 1}}, "sobs": {"_count": 1, "": {"_count": 1}}, "rope": {"_count": 2, "too": {"_count": 1}, "around": {"_count": 1}}, "ghost": {"_count": 3, "": {"_count": 2}, "or": {"_count": 1}}, "sanity": {"_count": 1, "": {"_count": 1}}, "wings": {"_count": 2, "contentedly": {"_count": 1}, "to": {"_count": 1}}, "trembling": {"_count": 2, "fingertips": {"_count": 1}, "hand": {"_count": 1}}, "flanks": {"_count": 1, "with": {"_count": 1}}, "sleek": {"_count": 4, "neck": {"_count": 1}, "blond": {"_count": 2}, "silver": {"_count": 1}}, "rider": {"_count": 1, "became": {"_count": 1}}, "behavior": {"_count": 5, "to": {"_count": 1}, "of": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}, "might": {"_count": 1}}, "tableclothsized": {"_count": 2, "handkerchiefs": {"_count": 1}, "handkerchief": {"_count": 1}}, "battered": {"_count": 2, "old": {"_count": 1}, "visage": {"_count": 1}}, "drawers": {"_count": 1, "": {"_count": 1}}, "vacated": {"_count": 1, "chair": {"_count": 1}}, "servant": {"_count": 4, "in": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}, "Wormtail": {"_count": 1}}, "resignation": {"_count": 1, "": {"_count": 1}}, "topgrade": {"_count": 1, "N": {"_count": 1}}, "reliability": {"_count": 1, "but": {"_count": 1}}, "cottage": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "seventy": {"_count": 1, "seventh": {"_count": 1}}, "bad": {"_count": 5, "leg": {"_count": 2}, "marks": {"_count": 1}, "mood": {"_count": 2}}, "stick": {"_count": 2, "and": {"_count": 2}}, "hotwater": {"_count": 2, "bottle": {"_count": 2}}, "kitchen": {"_count": 1, "fully": {"_count": 1}}, "walking": {"_count": 8, "stick": {"_count": 8}}, "hold": {"_count": 3, "on": {"_count": 2}, "around": {"_count": 1}}, "nerve": {"_count": 3, "": {"_count": 3}}, "speech": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "decision": {"_count": 9, "the": {"_count": 1}, "as": {"_count": 1}, "because": {"_count": 1}, "": {"_count": 2}, "when": {"_count": 1}, "not": {"_count": 1}, "they": {"_count": 1}, "With": {"_count": 1}}, "wardrobe": {"_count": 2, "and": {"_count": 1}, "once": {"_count": 1}}, "untidy": {"_count": 2, "black": {"_count": 2}}, "cupped": {"_count": 1, "hands": {"_count": 1}}, "snowy": {"_count": 3, "owl": {"_count": 3}}, "worries": {"_count": 2, "about": {"_count": 1}, "rather": {"_count": 1}}, "steady": {"_count": 2, "rise": {"_count": 1}, "girlfriend": {"_count": 1}}, "eleventh": {"_count": 2, "birthday": {"_count": 2}}, "symptoms": {"_count": 1, "listed": {"_count": 1}}, "visit": {"_count": 1, "punctuated": {"_count": 1}}, "problem": {"_count": 3, "still": {"_count": 1}, "": {"_count": 2}}, "finished": {"_count": 1, "letter": {"_count": 1}}, "PlayStation": {"_count": 1, "out": {"_count": 1}}, "endofyear": {"_count": 1, "report": {"_count": 1}}, "poundage": {"_count": 1, "was": {"_count": 1}}, "grapefruit": {"_count": 1, "without": {"_count": 1}}, "spoon": {"_count": 6, "": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 1}, "down": {"_count": 1}}, "connections": {"_count": 1, "at": {"_count": 1}}, "breast": {"_count": 2, "pocket": {"_count": 2}}, "living": {"_count": 3, "room": {"_count": 2}, "body": {"_count": 1}}, "extremely": {"_count": 1, "baggy": {"_count": 1}}, "backside": {"_count": 3, "and": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "suit": {"_count": 2, "opened": {"_count": 1}, "jacket": {"_count": 1}}, "buttocks": {"_count": 1, "he": {"_count": 1}}, "swollen": {"_count": 7, "tongue": {"_count": 1}, "heart": {"_count": 1}, "eye": {"_count": 2}, "eyelids": {"_count": 1}, "face": {"_count": 1}, "eyes": {"_count": 1}}, "innocence": {"_count": 1, "": {"_count": 1}}, "earring": {"_count": 2, "which": {"_count": 1}, "in": {"_count": 1}}, "isolation": {"_count": 1, "from": {"_count": 1}}, "clothes": {"_count": 7, "more": {"_count": 2}, "but": {"_count": 1}, "on": {"_count": 1}, "then": {"_count": 1}, "were": {"_count": 2}}, "Apparition": {"_count": 1, "test": {"_count": 1}}, "children": {"_count": 4, "": {"_count": 2}, "knowing": {"_count": 1}, "that": {"_count": 1}}, "navel": {"_count": 8, "had": {"_count": 1}, "": {"_count": 5}, "that": {"_count": 1}, "the": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "forefinger": {"_count": 4, "was": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "raised": {"_count": 1}}, "colleague": {"_count": 1, "a": {"_count": 1}}, "change": {"_count": 2, "but": {"_count": 1}, "of": {"_count": 1}}, "brows": {"_count": 1, "unknitted": {"_count": 1}}, "backpack": {"_count": 2, "from": {"_count": 1}, "and": {"_count": 1}}, "water": {"_count": 3, "and": {"_count": 1}, "bombs": {"_count": 1}, "jug": {"_count": 1}}, "flowered": {"_count": 1, "nightdress": {"_count": 1}}, "disapproval": {"_count": 1, "of": {"_count": 1}}, "department": {"_count": 1, "did": {"_count": 1}}, "yellowandblack": {"_count": 1, "robes": {"_count": 1}}, "boyish": {"_count": 2, "face": {"_count": 1}, "grin": {"_count": 1}}, "look": {"_count": 2, "of": {"_count": 2}}, "short": {"_count": 2, "gray": {"_count": 1}, "legs": {"_count": 1}}, "narrow": {"_count": 1, "toothbrush": {"_count": 1}}, "ancestors": {"_count": 2, "had": {"_count": 2}}, "undrunk": {"_count": 1, "tea": {"_count": 1}}, "dancing": {"_count": 1, "shamrock": {"_count": 1}}, "station": {"_count": 1, "sir": {"_count": 1}}, "Omnioculars": {"_count": 15, "and": {"_count": 3}, "": {"_count": 3}, "back": {"_count": 2}, "so": {"_count": 1}, "again": {"_count": 1}, "squinting": {"_count": 1}, "twiddled": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}}, "houseelfs": {"_count": 1, "saving": {"_count": 1}}, "seats": {"_count": 1, "": {"_count": 1}}, "whistle": {"_count": 7, "Mostafa": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "everybody": {"_count": 1}, "merely": {"_count": 1}}, "speed": {"_count": 1, "dial": {"_count": 1}}, "lenses": {"_count": 1, "": {"_count": 1}}, "muscles": {"_count": 2, "and": {"_count": 1}, "were": {"_count": 1}}, "red": {"_count": 13, "robes": {"_count": 1}, "eyes": {"_count": 11}, "face": {"_count": 1}}, "terms": {"_count": 1, "thats": {"_count": 1}}, "bloody": {"_count": 5, "face": {"_count": 2}, "leg": {"_count": 1}, "knife": {"_count": 1}, "forehead": {"_count": 1}}, "waist": {"_count": 4, "and": {"_count": 3}, "joined": {"_count": 1}}, "wriggling": {"_count": 1, "diagrams": {"_count": 1}}, "fantasies": {"_count": 1, "of": {"_count": 1}}, "splayed": {"_count": 1, "feet": {"_count": 1}}, "miniature": {"_count": 1, "Krum": {"_count": 1}}, "elf": {"_count": 1, "on": {"_count": 1}}, "colleagues": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "toothbrush": {"_count": 1, "mustache": {"_count": 1}}, "silence": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "moments": {"_count": 1, "of": {"_count": 1}}, "scrubby": {"_count": 1, "brown": {"_count": 1}}, "overshined": {"_count": 1, "shoes": {"_count": 1}}, "shirt": {"_count": 4, "and": {"_count": 1}, "front": {"_count": 1}, "": {"_count": 1}, "down": {"_count": 1}}, "cut": {"_count": 4, "said": {"_count": 1}, "hand": {"_count": 1}, "thumb": {"_count": 1}, "finger": {"_count": 1}}, "bunk": {"_count": 1, "with": {"_count": 1}}, "Chudley": {"_count": 1, "Cannons": {"_count": 1}}, "number": {"_count": 1, "": {"_count": 1}}, "mistake": {"_count": 3, "at": {"_count": 1}, "": {"_count": 2}}, "somewhat": {"_count": 1, "shriveled": {"_count": 1}}, "camp": {"_count": 4, "bed": {"_count": 4}}, "dress": {"_count": 5, "robes": {"_count": 5}}, "yard": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "dustbins": {"_count": 2, "": {"_count": 2}}, "record": {"_count": 1, "weve": {"_count": 1}}, "maroon": {"_count": 5, "dress": {"_count": 1}, "paisley": {"_count": 1}, "pajamas": {"_count": 2}, "socks": {"_count": 1}}, "hooting": {"_count": 1, "": {"_count": 1}}, "formidable": {"_count": 1, "witch": {"_count": 1}}, "Ireland": {"_count": 2, "rosette": {"_count": 2}}, "pudgy": {"_count": 1, "hand": {"_count": 1}}, "sopping": {"_count": 1, "hair": {"_count": 1}}, "partially": {"_count": 3, "severed": {"_count": 3}}, "sweeping": {"_count": 1, "silver": {"_count": 1}}, "magnificent": {"_count": 2, "deep": {"_count": 1}, "sweeping": {"_count": 1}}, "terrifiedlooking": {"_count": 1, "peers": {"_count": 1}}, "brother": {"_count": 8, "": {"_count": 3}, "Fabian": {"_count": 1}, "Regulus": {"_count": 1}, "though": {"_count": 1}, "and": {"_count": 2}}, "ruff": {"_count": 5, "a": {"_count": 1}, "slipped": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}}, "righthand": {"_count": 1, "side": {"_count": 1}}, "mane": {"_count": 4, "of": {"_count": 4}}, "lessthan": {"_count": 1, "warm": {"_count": 1}}, "traveling": {"_count": 8, "cloak": {"_count": 7}, "basket": {"_count": 1}}, "headboard": {"_count": 1, "and": {"_count": 1}}, "minds": {"_count": 8, "eye": {"_count": 7}, "resistance": {"_count": 1}}, "schedule": {"_count": 6, "": {"_count": 2}, "under": {"_count": 1}, "but": {"_count": 1}, "if": {"_count": 1}, "weve": {"_count": 1}}, "least": {"_count": 4, "favorite": {"_count": 3}, "amusing": {"_count": 1}}, "fears": {"_count": 3, "that": {"_count": 1}, "were": {"_count": 1}, "with": {"_count": 1}}, "laugh": {"_count": 2, "into": {"_count": 1}, "like": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "normal": {"_count": 8, "eye": {"_count": 7}, "state": {"_count": 1}}, "now": {"_count": 4, "brilliantly": {"_count": 1}, "clean": {"_count": 1}, "after": {"_count": 1}, "yet": {"_count": 1}}, "wooden": {"_count": 6, "leg": {"_count": 5}, "table": {"_count": 1}}, "sixth": {"_count": 1, "cauldron": {"_count": 1}}, "fingernails": {"_count": 3, "": {"_count": 1}, "into": {"_count": 1}, "staring": {"_count": 1}}, "dungeon": {"_count": 1, "": {"_count": 1}}, "clawed": {"_count": 1, "wooden": {"_count": 1}}, "twisted": {"_count": 1, "and": {"_count": 1}}, "magical": {"_count": 35, "eye": {"_count": 31}, "powers": {"_count": 1}, "education": {"_count": 1}, "instruments": {"_count": 1}, "power": {"_count": 1}}, "heavily": {"_count": 1, "scarred": {"_count": 1}}, "gnarled": {"_count": 4, "hands": {"_count": 3}, "toes": {"_count": 1}}, "mismatched": {"_count": 3, "feet": {"_count": 1}, "eyes": {"_count": 2}}, "lopsided": {"_count": 3, "mouth": {"_count": 3}}, "stuff": {"_count": 1, "Moody": {"_count": 1}}, "pen": {"_count": 1, "into": {"_count": 1}}, "predictions": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "Harrys": {"_count": 1, "fault": {"_count": 1}}, "sleeping": {"_count": 2, "brain": {"_count": 1}, "bag": {"_count": 1}}, "Divination": {"_count": 1, "homework": {"_count": 1}}, "lack": {"_count": 2, "of": {"_count": 2}}, "classmates": {"_count": 7, "did": {"_count": 1}, "certainly": {"_count": 1}, "turned": {"_count": 1}, "were": {"_count": 2}, "in": {"_count": 1}, "for": {"_count": 1}}, "kneecaps": {"_count": 1, "": {"_count": 1}}, "paces": {"_count": 1, "four": {"_count": 1}}, "sack": {"_count": 1, "": {"_count": 1}}, "scrambled": {"_count": 1, "eggs": {"_count": 1}}, "lead": {"_count": 3, "broke": {"_count": 1}, "in": {"_count": 1}, "though": {"_count": 1}}, "skrewts": {"_count": 1, "": {"_count": 1}}, "goatee": {"_count": 4, "finishing": {"_count": 1}, "around": {"_count": 1}, "and": {"_count": 2}}, "rather": {"_count": 2, "weak": {"_count": 1}, "pompous": {"_count": 1}}, "students": {"_count": 5, "": {"_count": 2}, "toward": {"_count": 1}, "away": {"_count": 1}, "to": {"_count": 1}}, "autograph": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "moldy": {"_count": 1, "old": {"_count": 1}}, "fame": {"_count": 1, "as": {"_count": 1}}, "furs": {"_count": 2, "back": {"_count": 1}, "around": {"_count": 1}}, "warmly": {"_count": 1, "paternal": {"_count": 1}}, "staff": {"_count": 6, "his": {"_count": 2}, "as": {"_count": 1}, "on": {"_count": 1}, "fresh": {"_count": 1}, "to": {"_count": 1}}, "mutilated": {"_count": 2, "face": {"_count": 1}, "arm": {"_count": 1}}, "darning": {"_count": 1, "": {"_count": 1}}, "smooth": {"_count": 1, "chin": {"_count": 1}}, "names": {"_count": 2, "come": {"_count": 1}, "was": {"_count": 1}}, "steely": {"_count": 1, "smile": {"_count": 1}}, "curtain": {"_count": 1, "of": {"_count": 1}}, "unctuous": {"_count": 2, "tone": {"_count": 1}, "smile": {"_count": 1}}, "notice": {"_count": 3, "but": {"_count": 1}, "that": {"_count": 1}, "just": {"_count": 1}}, "category": {"_count": 1, "": {"_count": 1}}, "wrinkled": {"_count": 1, "skin": {"_count": 1}}, "immense": {"_count": 3, "relief": {"_count": 1}, "capacity": {"_count": 1}, "chest": {"_count": 1}}, "story": {"_count": 9, "without": {"_count": 1}, "shouting": {"_count": 1}, "said": {"_count": 1}, "firsthand": {"_count": 1}, "was": {"_count": 1}, "He": {"_count": 1}, "would": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "familiar": {"_count": 2, "sneer": {"_count": 1}, "kindly": {"_count": 1}}, "wild": {"_count": 4, "eyebrows": {"_count": 1}, "beard": {"_count": 1}, "hair": {"_count": 1}, "young": {"_count": 1}}, "straight": {"_count": 1, "nose": {"_count": 1}}, "silkiest": {"_count": 1, "voice": {"_count": 1}}, "table": {"_count": 3, "": {"_count": 2}, "where": {"_count": 1}}, "horn": {"_count": 1, "after": {"_count": 1}}, "measurements": {"_count": 1, "and": {"_count": 1}}, "path": {"_count": 4, "": {"_count": 1}, "trying": {"_count": 1}, "blocked": {"_count": 1}, "but": {"_count": 1}}, "ers": {"_count": 1, "into": {"_count": 1}}, "bunches": {"_count": 1, "emerged": {"_count": 1}}, "hip": {"_count": 5, "flask": {"_count": 5}}, "meeting": {"_count": 4, "with": {"_count": 4}}, "buttonhole": {"_count": 1, "": {"_count": 1}}, "moonlit": {"_count": 2, "stroll": {"_count": 1}, "cactus": {"_count": 1}}, "ship": {"_count": 1, "to": {"_count": 1}}, "ways": {"_count": 1, "and": {"_count": 1}}, "orders": {"_count": 5, "": {"_count": 2}, "they": {"_count": 1}, "if": {"_count": 1}, "Dumbledore": {"_count": 1}}, "toosmall": {"_count": 1, "pajamas": {"_count": 1}}, "sock": {"_count": 1, "": {"_count": 1}}, "stupid": {"_count": 3, "ship": {"_count": 1}, "subject": {"_count": 1}, "party": {"_count": 1}}, "prowess": {"_count": 1, "at": {"_count": 1}}, "blind": {"_count": 1, "panic": {"_count": 1}}, "dragon": {"_count": 6, "and": {"_count": 2}, "unscathed": {"_count": 1}, "steak": {"_count": 2}, "skin": {"_count": 1}}, "model": {"_count": 1, "": {"_count": 1}}, "fear": {"_count": 5, "": {"_count": 1}, "of": {"_count": 3}, "mounted": {"_count": 1}}, "progress": {"_count": 2, "its": {"_count": 1}, "": {"_count": 1}}, "uninjured": {"_count": 5, "arm": {"_count": 1}, "hand": {"_count": 4}}, "egg": {"_count": 2, "": {"_count": 1}, "means": {"_count": 1}}, "behalf": {"_count": 3, "was": {"_count": 1}, "sighed": {"_count": 1}, "": {"_count": 1}}, "burn": {"_count": 1, "": {"_count": 1}}, "sting": {"_count": 1, "so": {"_count": 1}}, "enthusiasm": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "secrets": {"_count": 2, "and": {"_count": 1}, "clutched": {"_count": 1}}, "tie": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "plans": {"_count": 10, "for": {"_count": 4}, "said": {"_count": 1}, "are": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}}, "wages": {"_count": 2, "": {"_count": 1}, "sir": {"_count": 1}}, "headless": {"_count": 2, "rubber": {"_count": 1}, "guard": {"_count": 1}}, "interview": {"_count": 2, "with": {"_count": 1}, "for": {"_count": 1}}, "lesson": {"_count": 5, "on": {"_count": 1}, "so": {"_count": 1}, "about": {"_count": 1}, "with": {"_count": 2}}, "Exploding": {"_count": 1, "Snap": {"_count": 1}}, "stew": {"_count": 1, "": {"_count": 1}}, "abrupt": {"_count": 2, "return": {"_count": 1}, "change": {"_count": 1}}, "oldest": {"_count": 1, "and": {"_count": 1}}, "Sneakoscope": {"_count": 1, "for": {"_count": 1}}, "odd": {"_count": 3, "ones": {"_count": 1}, "smock": {"_count": 1}, "clothes": {"_count": 1}}, "shorts": {"_count": 3, "they": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "lapse": {"_count": 1, "in": {"_count": 1}}, "cuffs": {"_count": 1, "": {"_count": 1}}, "reindeer": {"_count": 1, "": {"_count": 1}}, "election": {"_count": 1, "as": {"_count": 1}}, "Blinky": {"_count": 1, "or": {"_count": 1}}, "up": {"_count": 2, "uncertainly": {"_count": 1}, "backtofront": {"_count": 1}}, "yellowing": {"_count": 1, "teeth": {"_count": 1}}, "horrible": {"_count": 2, "hairy": {"_count": 1}, "pouchy": {"_count": 1}}, "absence": {"_count": 5, "you": {"_count": 1}, "": {"_count": 1}, "being": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}}, "ignorance": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "lessthanfriendly": {"_count": 1, "feelings": {"_count": 1}}, "help": {"_count": 3, "if": {"_count": 1}, "and": {"_count": 1}, "then": {"_count": 1}}, "presence": {"_count": 3, "": {"_count": 2}, "without": {"_count": 1}}, "mysterious": {"_count": 2, "influence": {"_count": 1}, "disappearance": {"_count": 1}}, "newfound": {"_count": 2, "authority": {"_count": 1}, "brilliance": {"_count": 1}}, "care": {"_count": 1, "with": {"_count": 1}}, "campaign": {"_count": 2, "of": {"_count": 2}}, "reign": {"_count": 1, "of": {"_count": 1}}, "antics": {"_count": 1, "during": {"_count": 1}}, "giantess": {"_count": 2, "mother": {"_count": 2}}, "gamekeeper": {"_count": 1, "duties": {"_count": 1}}, "assistant": {"_count": 1, "says": {"_count": 1}}, "assistance": {"_count": 1, "would": {"_count": 1}}, "dustbinlidsized": {"_count": 1, "hands": {"_count": 1}}, "dresser": {"_count": 1, "opened": {"_count": 1}}, "pride": {"_count": 2, "and": {"_count": 2}}, "excursion": {"_count": 1, "carefully": {"_count": 1}}, "footsteps": {"_count": 5, "echoing": {"_count": 2}, "": {"_count": 1}, "made": {"_count": 1}, "and": {"_count": 1}}, "youth": {"_count": 4, "but": {"_count": 1}, "": {"_count": 3}}, "something": {"_count": 1, "he": {"_count": 1}}, "cat": {"_count": 1, "Mrs": {"_count": 1}}, "curiosity": {"_count": 3, "got": {"_count": 1}, "held": {"_count": 1}, "even": {"_count": 1}}, "rapid": {"_count": 1, "shuffling": {"_count": 1}}, "wheezy": {"_count": 1, "voice": {"_count": 1}}, "scrawny": {"_count": 1, "dust": {"_count": 1}}, "trapped": {"_count": 1, "leg": {"_count": 1}}, "loudly": {"_count": 1, "thumping": {"_count": 1}}, "off": {"_count": 1, "Shut": {"_count": 1}}, "overlarge": {"_count": 1, "nostrils": {"_count": 1}}, "mangled": {"_count": 1, "face": {"_count": 1}}, "firstborn": {"_count": 1, "son": {"_count": 1}}, "map": {"_count": 1, "but": {"_count": 1}}, "adventures": {"_count": 1, "of": {"_count": 1}}, "cushion": {"_count": 2, "did": {"_count": 1}, "to": {"_count": 1}}, "POTTER": {"_count": 1, "STINKS": {"_count": 1}}, "Wheezy": {"_count": 3, "Find": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 1}}, "rapidly": {"_count": 2, "numbing": {"_count": 1}, "swelling": {"_count": 1}}, "gills": {"_count": 1, "sending": {"_count": 1}}, "flipperlike": {"_count": 1, "feet": {"_count": 1}}, "ankle": {"_count": 5, "": {"_count": 2}, "out": {"_count": 1}, "when": {"_count": 1}, "Harry": {"_count": 1}}, "webbed": {"_count": 3, "hand": {"_count": 1}, "hands": {"_count": 2}}, "features": {"_count": 4, "look": {"_count": 1}, "once": {"_count": 1}, "had": {"_count": 1}, "thick": {"_count": 1}}, "flippers": {"_count": 2, "furiously": {"_count": 1}, "and": {"_count": 1}}, "hostage": {"_count": 2, "though": {"_count": 1}, "": {"_count": 1}}, "determination": {"_count": 5, "to": {"_count": 5}}, "pestle": {"_count": 3, "with": {"_count": 1}, "and": {"_count": 1}, "down": {"_count": 1}}, "sharks": {"_count": 1, "head": {"_count": 1}}, "press": {"_count": 1, "cuttings": {"_count": 1}}, "ingredients": {"_count": 1, "and": {"_count": 1}}, "scarab": {"_count": 2, "beetles": {"_count": 2}}, "ginger": {"_count": 5, "roots": {"_count": 5}}, "feigned": {"_count": 1, "deafness": {"_count": 1}}, "inner": {"_count": 2, "forearm": {"_count": 1}, "pocket": {"_count": 1}}, "feathery": {"_count": 1, "neck": {"_count": 1}}, "inferiors": {"_count": 1, "not": {"_count": 1}}, "equals": {"_count": 1, "": {"_count": 1}}, "unshaven": {"_count": 1, "face": {"_count": 1}}, "supporters": {"_count": 4, "are": {"_count": 1}, "mind": {"_count": 1}, "and": {"_count": 2}}, "chicken": {"_count": 2, "bone": {"_count": 1}, "": {"_count": 1}}, "reputation": {"_count": 2, "had": {"_count": 1}, "as": {"_count": 1}}, "sons": {"_count": 5, "body": {"_count": 1}, "voice": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "thin": {"_count": 1}}, "disobedient": {"_count": 1, "houseelf": {"_count": 1}}, "filthy": {"_count": 2, "hair": {"_count": 1}, "curved": {"_count": 1}}, "shadowed": {"_count": 1, "eyes": {"_count": 1}}, "hie": {"_count": 1, "Winky": {"_count": 1}}, "spade": {"_count": 1, "but": {"_count": 1}}, "niffler": {"_count": 1, "dived": {"_count": 1}}, "beetleblack": {"_count": 3, "eyes": {"_count": 3}}, "potato": {"_count": 1, "": {"_count": 1}}, "wiggling": {"_count": 1, "ears": {"_count": 1}}, "movement": {"_count": 1, "seemed": {"_count": 1}}, "pace": {"_count": 1, "as": {"_count": 1}}, "flask": {"_count": 1, "": {"_count": 1}}, "scars": {"_count": 1, "stretched": {"_count": 1}}, "scarred": {"_count": 1, "and": {"_count": 1}}, "chintz": {"_count": 1, "armchair": {"_count": 1}}, "advice": {"_count": 3, "He": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "steps": {"_count": 2, "stopping": {"_count": 1}, "to": {"_count": 1}}, "personal": {"_count": 3, "history": {"_count": 1}, "safety": {"_count": 1}, "appearance": {"_count": 1}}, "limegreen": {"_count": 1, "bowler": {"_count": 1}}, "aid": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "appearance": {"_count": 6, "": {"_count": 3}, "instead": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "information": {"_count": 2, "I": {"_count": 1}, "would": {"_count": 1}}, "bidding": {"_count": 3, "": {"_count": 1}, "under": {"_count": 1}, "but": {"_count": 1}}, "Quidditchplaying": {"_count": 1, "fitness": {"_count": 1}}, "splendid": {"_count": 1, "performance": {"_count": 1}}, "late": {"_count": 1, "teens": {"_count": 1}}, "strawcolored": {"_count": 1, "hair": {"_count": 1}}, "freckled": {"_count": 2, "skin": {"_count": 1}, "face": {"_count": 1}}, "trial": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "companions": {"_count": 6, "had": {"_count": 1}, "quickly": {"_count": 1}, "head": {"_count": 1}, "told": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 1}}, "suitability": {"_count": 1, "to": {"_count": 1}}, "insistence": {"_count": 2, "that": {"_count": 2}}, "deepseated": {"_count": 1, "confusion": {"_count": 1}}, "desperation": {"_count": 3, "to": {"_count": 3}}, "breakfast": {"_count": 1, "in": {"_count": 1}}, "darkhaired": {"_count": 1, "mother": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "magically": {"_count": 1, "magnified": {"_count": 1}}, "wandlight": {"_count": 4, "waving": {"_count": 1}, "sparkling": {"_count": 1}, "trained": {"_count": 1}, "and": {"_count": 1}}, "shadow": {"_count": 2, "flicker": {"_count": 1}, "or": {"_count": 1}}, "beam": {"_count": 1, "of": {"_count": 1}}, "Monster": {"_count": 1, "Book": {"_count": 1}}, "immediate": {"_count": 5, "thought": {"_count": 1}, "removal": {"_count": 1}, "right": {"_count": 1}, "plans": {"_count": 1}, "dread": {"_count": 1}}, "haste": {"_count": 5, "he": {"_count": 1}, "to": {"_count": 3}, "his": {"_count": 1}}, "spell": {"_count": 3, "had": {"_count": 1}, "": {"_count": 2}}, "already": {"_count": 3, "injured": {"_count": 1}, "doxyfilled": {"_count": 1}, "bulging": {"_count": 1}}, "torn": {"_count": 4, "robes": {"_count": 2}, "shirtsleeve": {"_count": 1}, "jeans": {"_count": 1}}, "efforts": {"_count": 7, "Cedric": {"_count": 1}, "that": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 3}, "seemed": {"_count": 1}}, "injured": {"_count": 5, "leg": {"_count": 2}, "hand": {"_count": 2}, "arm": {"_count": 1}}, "stinging": {"_count": 1, "eyes": {"_count": 1}}, "open": {"_count": 4, "gray": {"_count": 1}, "wardrobe": {"_count": 1}, "mouth": {"_count": 1}, "eyes": {"_count": 1}}, "halfopen": {"_count": 1, "mouth": {"_count": 1}}, "bundle": {"_count": 1, "lit": {"_count": 1}}, "nightmares": {"_count": 2, "for": {"_count": 1}, "without": {"_count": 1}}, "gleaming": {"_count": 1, "red": {"_count": 1}}, "snakelike": {"_count": 4, "face": {"_count": 4}}, "terrible": {"_count": 3, "face": {"_count": 1}, "smile": {"_count": 1}, "snakelike": {"_count": 1}}, "slitlike": {"_count": 1, "nostrils": {"_count": 1}}, "bleeding": {"_count": 7, "arm": {"_count": 1}, "aching": {"_count": 1}, "nose": {"_count": 2}, "hand": {"_count": 1}, "now": {"_count": 1}, "lip": {"_count": 1}}, "debt": {"_count": 1, "already": {"_count": 1}}, "helpers": {"_count": 1, "": {"_count": 1}}, "powerful": {"_count": 1, "new": {"_count": 1}}, "blank": {"_count": 1, "red": {"_count": 1}}, "lipless": {"_count": 1, "mouth": {"_count": 1}}, "journey": {"_count": 2, "back": {"_count": 1}, "through": {"_count": 1}}, "relations": {"_count": 2, "care": {"_count": 1}, "and": {"_count": 1}}, "spine": {"_count": 2, "curve": {"_count": 1}, "was": {"_count": 1}}, "astonished": {"_count": 1, "gaze": {"_count": 1}}, "victims": {"_count": 1, "prowled": {"_count": 1}}, "dearest": {"_count": 1, "his": {"_count": 1}}, "closest": {"_count": 5, "supporter": {"_count": 1}, "neighbors": {"_count": 1}, "attackers": {"_count": 1}, "living": {"_count": 1}, "companion": {"_count": 1}}, "grizzled": {"_count": 1, "hair": {"_count": 1}}, "service": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 3, "learn": {"_count": 1}, "": {"_count": 1}, "misdeeds": {"_count": 1}}, "habits": {"_count": 1, "so": {"_count": 1}}, "stump": {"_count": 1, "of": {"_count": 1}}, "perch": {"_count": 4, "flown": {"_count": 1}, "beside": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 1}}, "warm": {"_count": 1, "weight": {"_count": 1}}, "bedcovers": {"_count": 2, "unnecessarily": {"_count": 1}, "were": {"_count": 1}}, "exhaustion": {"_count": 1, "had": {"_count": 1}}, "continued": {"_count": 1, "existence": {"_count": 1}}, "tales": {"_count": 1, "are": {"_count": 1}}, "comfortable": {"_count": 1, "and": {"_count": 1}}, "outrage": {"_count": 1, "": {"_count": 1}}, "forearm": {"_count": 3, "and": {"_count": 1}, "sent": {"_count": 1}, "": {"_count": 1}}, "means": {"_count": 1, "of": {"_count": 1}}, "tenmonth": {"_count": 1, "imprisonment": {"_count": 1}}, "debts": {"_count": 1, "": {"_count": 1}}, "Triwizard": {"_count": 2, "winnings": {"_count": 2}}, "Tshirt": {"_count": 4, "baggy": {"_count": 1}, "was": {"_count": 1}, "tucking": {"_count": 1}, "as": {"_count": 1}}, "trainers": {"_count": 5, "were": {"_count": 1}, "Hedwig": {"_count": 1}, "and": {"_count": 1}, "slippery": {"_count": 1}, "by": {"_count": 1}}, "Uncle": {"_count": 5, "Vernon": {"_count": 2}, "Damocles": {"_count": 1}, "Morfin": {"_count": 2}}, "lot": {"_count": 1, "on": {"_count": 1}}, "dimwitted": {"_count": 1, "lies": {"_count": 1}}, "evening": {"_count": 1, "walks": {"_count": 1}}, "sprinklers": {"_count": 1, "on": {"_count": 1}}, "raised": {"_count": 1, "wand": {"_count": 1}}, "rudeness": {"_count": 1, "but": {"_count": 1}}, "feeling": {"_count": 2, "of": {"_count": 2}}, "certainty": {"_count": 2, "leaked": {"_count": 1}, "which": {"_count": 1}}, "waking": {"_count": 1, "moments": {"_count": 1}}, "letters": {"_count": 2, "were": {"_count": 1}, "its": {"_count": 1}}, "reward": {"_count": 2, "was": {"_count": 1}, "for": {"_count": 1}}, "musings": {"_count": 1, "and": {"_count": 1}}, "physique": {"_count": 1, "": {"_count": 1}}, "frustration": {"_count": 2, "on": {"_count": 1}, "at": {"_count": 1}}, "delinquent": {"_count": 1, "appearance": {"_count": 1}}, "ease": {"_count": 3, "humming": {"_count": 1}, "tilting": {"_count": 1}, "but": {"_count": 1}}, "selfcontrol": {"_count": 1, "": {"_count": 1}}, "ickle": {"_count": 1, "boxing": {"_count": 1}}, "veins": {"_count": 6, "what": {"_count": 1}, "chilling": {"_count": 1}, "like": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "Harry": {"_count": 1}}, "reason": {"_count": 1, "caught": {"_count": 1}}, "sightless": {"_count": 1, "eyes": {"_count": 1}}, "search": {"_count": 3, "and": {"_count": 1}, "for": {"_count": 1}, "Mr": {"_count": 1}}, "disbelieving": {"_count": 1, "relief": {"_count": 1}}, "wrists": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "batty": {"_count": 1, "old": {"_count": 1}}, "thing": {"_count": 1, "": {"_count": 1}}, "Adams": {"_count": 4, "apple": {"_count": 4}}, "consciousness": {"_count": 1, "like": {"_count": 1}}, "temperature": {"_count": 1, "": {"_count": 1}}, "surroundings": {"_count": 7, "": {"_count": 4}, "could": {"_count": 1}, "solidified": {"_count": 1}, "seemed": {"_count": 1}}, "She": {"_count": 1, "seized": {"_count": 1}}, "company": {"_count": 2, "on": {"_count": 1}, "upon": {"_count": 1}}, "breach": {"_count": 1, "of": {"_count": 1}}, "apathetic": {"_count": 1, "phases": {"_count": 1}}, "exhausted": {"_count": 1, "mind": {"_count": 1}}, "shock": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "top": {"_count": 1, "hat": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "problems": {"_count": 2, "seemed": {"_count": 1}, "it": {"_count": 1}}, "lit": {"_count": 5, "wand": {"_count": 4}, "wandtip": {"_count": 1}}, "guts": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "utmost": {"_count": 2, "to": {"_count": 1}, "not": {"_count": 1}}, "shift": {"_count": 1, "had": {"_count": 1}}, "fury": {"_count": 6, "at": {"_count": 2}, "": {"_count": 2}, "that": {"_count": 1}, "the": {"_count": 1}}, "thirst": {"_count": 1, "for": {"_count": 1}}, "urge": {"_count": 1, "to": {"_count": 1}}, "days": {"_count": 2, "off": {"_count": 1}, "playing": {"_count": 1}}, "loyalty": {"_count": 1, "lay": {"_count": 1}}, "eldest": {"_count": 1, "son": {"_count": 1}}, "droopy": {"_count": 2, "bloodshot": {"_count": 1}, "basset": {"_count": 1}}, "matted": {"_count": 1, "ginger": {"_count": 1}}, "pipe": {"_count": 1, "back": {"_count": 1}}, "snide": {"_count": 1, "hints": {"_count": 1}}, "cuff": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "questions": {"_count": 1, "answered": {"_count": 1}}, "Death": {"_count": 7, "Eaters": {"_count": 6}, "Eater": {"_count": 1}}, "army": {"_count": 2, "again": {"_count": 1}, "said": {"_count": 1}}, "command": {"_count": 3, "witches": {"_count": 1}, "": {"_count": 2}}, "Ministry": {"_count": 2, "he": {"_count": 1}, "to": {"_count": 1}}, "Order": {"_count": 2, "of": {"_count": 2}}, "chilly": {"_count": 1, "bed": {"_count": 1}}, "outline": {"_count": 2, "by": {"_count": 1}, "gleaming": {"_count": 1}}, "bedclothes": {"_count": 1, "and": {"_count": 1}}, "spray": {"_count": 1, "": {"_count": 1}}, "cauldrons": {"_count": 1, "through": {"_count": 1}}, "snoutlike": {"_count": 4, "nose": {"_count": 4}}, "bitten": {"_count": 1, "hand": {"_count": 1}}, "loincloth": {"_count": 3, "muttering": {"_count": 1}, "and": {"_count": 1}, "Sirius": {"_count": 1}}, "muttering": {"_count": 1, "becoming": {"_count": 1}}, "Transfiguration": {"_count": 5, "teacher": {"_count": 1}, "homework": {"_count": 2}, "essay": {"_count": 1}, "notes": {"_count": 1}}, "imagination": {"_count": 6, "showing": {"_count": 1}, "or": {"_count": 2}, "away": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}}, "chops": {"_count": 1, "but": {"_count": 1}}, "hearing": {"_count": 4, "and": {"_count": 2}, "was": {"_count": 1}, "at": {"_count": 1}}, "freshly": {"_count": 2, "laundered": {"_count": 1}, "completed": {"_count": 1}}, "ticket": {"_count": 1, "and": {"_count": 1}}, "Daily": {"_count": 2, "Prophet": {"_count": 2}}, "fringe": {"_count": 1, "as": {"_count": 1}}, "bomber": {"_count": 1, "jacket": {"_count": 1}}, "unfaltering": {"_count": 1, "gaze": {"_count": 1}}, "actions": {"_count": 3, "having": {"_count": 1}, "tonight": {"_count": 1}, "": {"_count": 1}}, "neighbor": {"_count": 2, "a": {"_count": 1}, "Dolohov": {"_count": 1}}, "encouragement": {"_count": 1, "chased": {"_count": 1}}, "papers": {"_count": 3, "": {"_count": 2}, "found": {"_count": 1}}, "flagrant": {"_count": 1, "misuse": {"_count": 1}}, "defense": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "air": {"_count": 2, "passages": {"_count": 1}, "of": {"_count": 1}}, "laces": {"_count": 1, "": {"_count": 1}}, "encounter": {"_count": 1, "with": {"_count": 1}}, "cloth": {"_count": 1, "": {"_count": 1}}, "arrival": {"_count": 2, "": {"_count": 2}}, "what": {"_count": 2, "": {"_count": 1}, "will": {"_count": 1}}, "prefects": {"_count": 2, "badge": {"_count": 2}}, "folded": {"_count": 1, "robes": {"_count": 1}}, "saggy": {"_count": 1, "bloodshot": {"_count": 1}}, "electric": {"_count": 1, "blue": {"_count": 1}}, "struggling": {"_count": 1, "toad": {"_count": 1}}, "schoolbag": {"_count": 12, "and": {"_count": 2}, "": {"_count": 1}, "onto": {"_count": 1}, "back": {"_count": 2}, "beside": {"_count": 1}, "with": {"_count": 1}, "carefully": {"_count": 1}, "swung": {"_count": 1}, "along": {"_count": 1}, "ignoring": {"_count": 1}}, "spot": {"_count": 1, "and": {"_count": 1}}, "Trevor": {"_count": 1, "free": {"_count": 1}}, "level": {"_count": 2, "": {"_count": 1}, "above": {"_count": 1}}, "mates": {"_count": 3, "before": {"_count": 1}, "had": {"_count": 1}, "get": {"_count": 1}}, "picture": {"_count": 4, "in": {"_count": 1}, "looking": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}}, "wake": {"_count": 7, "": {"_count": 4}, "into": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "mission": {"_count": 4, "the": {"_count": 1}, "to": {"_count": 2}, "in": {"_count": 1}}, "highbacked": {"_count": 1, "golden": {"_count": 1}}, "recent": {"_count": 2, "bitter": {"_count": 1}, "encounter": {"_count": 1}}, "headmaster": {"_count": 4, "": {"_count": 1}, "back": {"_count": 1}, "was": {"_count": 1}, "telling": {"_count": 1}}, "feathered": {"_count": 1, "hat": {"_count": 1}}, "steakand": {"_count": 1, "kidney": {"_count": 1}}, "attentiveness": {"_count": 1, "ebbing": {"_count": 1}}, "holiday": {"_count": 1, "would": {"_count": 1}}, "Mimbulus": {"_count": 2, "mimbletonia": {"_count": 2}}, "poster": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "glum": {"_count": 1, "expression": {"_count": 1}}, "joke": {"_count": 1, "shop": {"_count": 1}}, "lunch": {"_count": 2, "by": {"_count": 1}, "hour": {"_count": 1}}, "flagon": {"_count": 1, "the": {"_count": 1}}, "premature": {"_count": 1, "death": {"_count": 1}}, "regular": {"_count": 1, "nightmare": {"_count": 1}}, "concentration": {"_count": 1, "sliding": {"_count": 1}}, "torpor": {"_count": 1, "": {"_count": 1}}, "shouting": {"_count": 1, "match": {"_count": 1}}, "halffinished": {"_count": 1, "apple": {"_count": 1}}, "lanky": {"_count": 1, "frame": {"_count": 1}}, "clipboard": {"_count": 1, "and": {"_count": 1}}, "looked": {"_count": 1, "a": {"_count": 1}}, "bloodstained": {"_count": 1, "bowtruckle": {"_count": 1}}, "spirit": {"_count": 1, "": {"_count": 1}}, "dream": {"_count": 13, "diary": {"_count": 3}, "": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 1}, "last": {"_count": 1}, "willing": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}}, "attitude": {"_count": 3, "and": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 1}}, "bench": {"_count": 1, "and": {"_count": 1}}, "steakandkidney": {"_count": 1, "pie": {"_count": 1}}, "dismissal": {"_count": 1, "again": {"_count": 1}}, "smarting": {"_count": 1, "right": {"_count": 1}}, "Cleans": {"_count": 1, "weep": {"_count": 1}}, "more": {"_count": 1, "pressing": {"_count": 1}}, "midriff": {"_count": 2, "": {"_count": 1}, "knocked": {"_count": 1}}, "fourposters": {"_count": 1, "hangings": {"_count": 1}}, "tryout": {"_count": 1, "though": {"_count": 1}}, "heads": {"_count": 1, "been": {"_count": 1}}, "sneering": {"_count": 1, "drawl": {"_count": 1}}, "skull": {"_count": 8, "": {"_count": 3}, "his": {"_count": 1}, "round": {"_count": 1}, "might": {"_count": 1}, "and": {"_count": 1}, "cracked": {"_count": 1}}, "fifth": {"_count": 2, "spoiled": {"_count": 1}, "": {"_count": 1}}, "Astronomy": {"_count": 1, "essay": {"_count": 1}}, "scowl": {"_count": 1, "": {"_count": 1}}, "guilt": {"_count": 1, "": {"_count": 1}}, "grinning": {"_count": 1, "face": {"_count": 1}}, "dislike": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "halfeaten": {"_count": 1, "bit": {"_count": 1}}, "Wiltshire": {"_count": 1, "mansion": {"_count": 1}}, "moonstone": {"_count": 1, "essay": {"_count": 1}}, "roll": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "O": {"_count": 4, "": {"_count": 4}}, "Dream": {"_count": 1, "Oracle": {"_count": 1}}, "detention": {"_count": 3, "that": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "outburst": {"_count": 1, "already": {"_count": 1}}, "various": {"_count": 1, "encounters": {"_count": 1}}, "slight": {"_count": 3, "surprise": {"_count": 1}, "annoyance": {"_count": 1}, "sneer": {"_count": 1}}, "pub": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "rag": {"_count": 1, "irritably": {"_count": 1}}, "signature": {"_count": 1, "but": {"_count": 1}}, "performance": {"_count": 2, "in": {"_count": 2}}, "monotonous": {"_count": 1, "drone": {"_count": 1}}, "gray": {"_count": 2, "eyes": {"_count": 1}, "hair": {"_count": 1}}, "low": {"_count": 1, "sneering": {"_count": 1}}, "bullfrog": {"_count": 2, "so": {"_count": 1}, "swelled": {"_count": 1}}, "judgment": {"_count": 1, "": {"_count": 1}}, "towel": {"_count": 1, "the": {"_count": 1}}, "peg": {"_count": 1, "and": {"_count": 1}}, "pencillike": {"_count": 1, "nose": {"_count": 1}}, "relentless": {"_count": 2, "clubbing": {"_count": 1}, "pacing": {"_count": 1}}, "Umgubular": {"_count": 1, "Slashkilter": {"_count": 1}}, "coin": {"_count": 1, "and": {"_count": 1}}, "Galleon": {"_count": 1, "into": {"_count": 1}}, "blood": {"_count": 3, "made": {"_count": 1}, "to": {"_count": 1}, "soaked": {"_count": 1}}, "morale": {"_count": 1, "he": {"_count": 1}}, "butterflies": {"_count": 1, "were": {"_count": 1}}, "complexion": {"_count": 1, "pale": {"_count": 1}}, "whiteblond": {"_count": 2, "head": {"_count": 2}}, "frantic": {"_count": 1, "scouring": {"_count": 1}}, "illegal": {"_count": 1, "Bludger": {"_count": 1}}, "bucketshaped": {"_count": 1, "mugs": {"_count": 1}}, "mug": {"_count": 4, "and": {"_count": 1}, "high": {"_count": 1}, "his": {"_count": 1}, "too": {"_count": 1}}, "one": {"_count": 7, "open": {"_count": 1}, "big": {"_count": 1}, "great": {"_count": 2}, "last": {"_count": 1}, "previous": {"_count": 1}, "and": {"_count": 1}}, "respectful": {"_count": 1, "greetings": {"_count": 1}}, "messenger": {"_count": 1, "when": {"_count": 1}}, "newly": {"_count": 2, "uncovered": {"_count": 1}, "repaired": {"_count": 1}}, "cuts": {"_count": 1, "still": {"_count": 1}}, "half": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "moon": {"_count": 1}}, "expulsion": {"_count": 1, "from": {"_count": 1}}, "belly": {"_count": 2, "": {"_count": 2}}, "vibrant": {"_count": 1, "blurred": {"_count": 1}}, "fangs": {"_count": 2, "deeply": {"_count": 1}, "into": {"_count": 1}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "terror": {"_count": 3, "and": {"_count": 1}, "for": {"_count": 2}}, "beautiful": {"_count": 1, "head": {"_count": 1}}, "portrait": {"_count": 8, "panting": {"_count": 1}, "and": {"_count": 3}, "in": {"_count": 2}, "": {"_count": 2}}, "day": {"_count": 2, "clothes": {"_count": 1}, "": {"_count": 1}}, "turn": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "predicament": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "daughter": {"_count": 10, "like": {"_count": 1}, "Lucky": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}, "Merope": {"_count": 1}, "dutifully": {"_count": 1}, "who": {"_count": 1}, "go": {"_count": 1}}, "approval": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "jinxes": {"_count": 1, "backfired": {"_count": 1}}, "silk": {"_count": 1, "gloves": {"_count": 1}}, "frame": {"_count": 5, "and": {"_count": 2}, "undoubtedly": {"_count": 1}, "trying": {"_count": 1}, "": {"_count": 1}}, "scratching": {"_count": 1, "at": {"_count": 1}}, "fullsize": {"_count": 1, "version": {"_count": 1}}, "Christmas": {"_count": 1, "jumper": {"_count": 1}}, "turkey": {"_count": 2, "dinner": {"_count": 1}, "and": {"_count": 1}}, "Healer": {"_count": 1, "along": {"_count": 1}}, "signing": {"_count": 1, "with": {"_count": 1}}, "plump": {"_count": 2, "face": {"_count": 2}}, "den": {"_count": 1, "": {"_count": 1}}, "reappearance": {"_count": 2, "his": {"_count": 1}, "could": {"_count": 1}}, "bitter": {"_count": 1, "muttering": {"_count": 1}}, "castles": {"_count": 1, "was": {"_count": 1}}, "rear": {"_count": 1, "chair": {"_count": 1}}, "lapdogs": {"_count": 1, "working": {"_count": 1}}, "magic": {"_count": 2, "in": {"_count": 1}, "still": {"_count": 1}}, "godfathers": {"_count": 4, "face": {"_count": 1}, "wasted": {"_count": 1}, "last": {"_count": 1}, "bedroom": {"_count": 1}}, "trepidation": {"_count": 1, "as": {"_count": 1}}, "emotions": {"_count": 2, "and": {"_count": 1}, "are": {"_count": 1}}, "prickling": {"_count": 1, "scar": {"_count": 1}}, "private": {"_count": 3, "office": {"_count": 1}, "secretary": {"_count": 1}, "library": {"_count": 1}}, "coffee": {"_count": 1, "so": {"_count": 1}}, "sudden": {"_count": 3, "lunging": {"_count": 1}, "excursion": {"_count": 1}, "appearance": {"_count": 1}}, "pewter": {"_count": 1, "tankard": {"_count": 1}}, "cockandbull": {"_count": 1, "story": {"_count": 1}}, "baked": {"_count": 1, "potato": {"_count": 1}}, "potatoes": {"_count": 2, "translating": {"_count": 1}, "with": {"_count": 1}}, "end": {"_count": 3, "on": {"_count": 1}, "": {"_count": 1}, "because": {"_count": 1}}, "sense": {"_count": 3, "of": {"_count": 3}}, "snore": {"_count": 1, "for": {"_count": 1}}, "orange": {"_count": 1, "juice": {"_count": 1}}, "headache": {"_count": 1, "would": {"_count": 1}}, "a": {"_count": 1, "hooknosed": {"_count": 1}}, "calm": {"_count": 1, "voice": {"_count": 1}}, "hooves": {"_count": 1, "thudded": {"_count": 1}}, "puffy": {"_count": 3, "blackened": {"_count": 1}, "eyes": {"_count": 1}, "eyelids": {"_count": 1}}, "floor": {"_count": 1, "but": {"_count": 1}}, "momentary": {"_count": 1, "inattention": {"_count": 1}}, "crooked": {"_count": 4, "nose": {"_count": 4}}, "interlocked": {"_count": 1, "fingers": {"_count": 1}}, "smoldering": {"_count": 1, "cloak": {"_count": 1}}, "confession": {"_count": 1, "have": {"_count": 1}}, "notetaking": {"_count": 1, "": {"_count": 1}}, "Junior": {"_count": 2, "Assistant": {"_count": 1}, "Ministers": {"_count": 1}}, "knowledge": {"_count": 2, "of": {"_count": 1}, "remained": {"_count": 1}}, "rheumatism": {"_count": 1, "would": {"_count": 1}}, "almost": {"_count": 1, "full": {"_count": 1}}, "suggestion": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "squeaky": {"_count": 2, "little": {"_count": 2}}, "touch": {"_count": 3, "": {"_count": 1}, "He": {"_count": 1}, "and": {"_count": 1}}, "fifteenyear": {"_count": 1, "old": {"_count": 1}}, "answers": {"_count": 1, "he": {"_count": 1}}, "neighbors": {"_count": 1, "paper": {"_count": 1}}, "examination": {"_count": 2, "questions": {"_count": 1}, "of": {"_count": 1}}, "intense": {"_count": 1, "relief": {"_count": 1}}, "reflexes": {"_count": 1, "were": {"_count": 1}}, "fallen": {"_count": 3, "wand": {"_count": 1}, "telescope": {"_count": 1}, "case": {"_count": 1}}, "upper": {"_count": 4, "arm": {"_count": 3}, "lip": {"_count": 1}}, "bruised": {"_count": 4, "arm": {"_count": 1}, "face": {"_count": 2}, "foot": {"_count": 1}}, "excuse": {"_count": 1, "went": {"_count": 1}}, "Easter": {"_count": 2, "egg": {"_count": 1}, "holidays": {"_count": 1}}, "chat": {"_count": 1, "with": {"_count": 1}}, "leaflet": {"_count": 1, "on": {"_count": 1}}, "entire": {"_count": 1, "body": {"_count": 1}}, "twin": {"_count": 1, "": {"_count": 1}}, "belled": {"_count": 1, "hat": {"_count": 1}}, "sojourn": {"_count": 1, "in": {"_count": 1}}, "cup": {"_count": 2, "up": {"_count": 1}, "too": {"_count": 1}}, "conscious": {"_count": 1, "self": {"_count": 1}}, "overwrought": {"_count": 1, "brain": {"_count": 1}}, "startlingly": {"_count": 1, "huge": {"_count": 1}}, "boulderish": {"_count": 1, "face": {"_count": 1}}, "forest": {"_count": 1, "as": {"_count": 1}}, "recital": {"_count": 1, "": {"_count": 1}}, "careers": {"_count": 1, "consultation": {"_count": 1}}, "pincenez": {"_count": 1, "at": {"_count": 1}}, "quavery": {"_count": 1, "old": {"_count": 1}}, "Levitation": {"_count": 1, "Charm": {"_count": 1}}, "written": {"_count": 1, "exam": {"_count": 1}}, "practical": {"_count": 1, "could": {"_count": 1}}, "iguana": {"_count": 1, "whereas": {"_count": 1}}, "veined": {"_count": 1, "and": {"_count": 1}}, "queen": {"_count": 2, "forward": {"_count": 2}}, "ambitions": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "sample": {"_count": 1, "flask": {"_count": 1}}, "crystal": {"_count": 1, "ball": {"_count": 1}}, "examiners": {"_count": 1, "reflection": {"_count": 1}}, "chart": {"_count": 4, "however": {"_count": 1}, "to": {"_count": 1}, "when": {"_count": 1}, "Harry": {"_count": 1}}, "telescope": {"_count": 4, "and": {"_count": 2}, "he": {"_count": 1}, "staring": {"_count": 1}}, "unconscious": {"_count": 1, "colleagues": {"_count": 1}}, "giant": {"_count": 1, "blood": {"_count": 1}}, "appointment": {"_count": 1, "was": {"_count": 1}}, "destination": {"_count": 6, "at": {"_count": 1}, "he": {"_count": 1}, "Hogsmeade": {"_count": 1}, "then": {"_count": 1}, "not": {"_count": 1}, "was": {"_count": 1}}, "scope": {"_count": 1, "for": {"_count": 1}}, "Mistress": {"_count": 5, "now": {"_count": 1}, "are": {"_count": 1}, "Black": {"_count": 1}, "say": {"_count": 1}, "was": {"_count": 1}}, "loudest": {"_count": 1, "cackle": {"_count": 1}}, "scalp": {"_count": 2, "": {"_count": 2}}, "gag": {"_count": 1, "": {"_count": 1}}, "fellows": {"_count": 5, "": {"_count": 1}, "slowed": {"_count": 1}, "almost": {"_count": 1}, "Scabior": {"_count": 1}, "Spread": {"_count": 1}}, "bricklike": {"_count": 1, "yellow": {"_count": 1}}, "dull": {"_count": 1, "sludgecolored": {"_count": 1}}, "horses": {"_count": 2, "neck": {"_count": 2}}, "thestrals": {"_count": 1, "glossy": {"_count": 1}}, "thestral": {"_count": 4, "did": {"_count": 1}, "onto": {"_count": 1}, "but": {"_count": 1}, "a": {"_count": 1}}, "faith": {"_count": 1, "was": {"_count": 1}}, "instinct": {"_count": 1, "was": {"_count": 1}}, "staring": {"_count": 1, "companions": {"_count": 1}}, "stupidity": {"_count": 1, "": {"_count": 1}}, "tight": {"_count": 1, "grip": {"_count": 1}}, "wandering": {"_count": 1, "foot": {"_count": 1}}, "plan": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "message": {"_count": 1, "to": {"_count": 1}}, "lightningbolt": {"_count": 1, "scar": {"_count": 1}}, "aim": {"_count": 1, "to": {"_count": 1}}, "mask": {"_count": 5, "had": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "slipped": {"_count": 1}}, "amazement": {"_count": 2, "Hermione": {"_count": 1}, "and": {"_count": 1}}, "meaning": {"_count": 1, "could": {"_count": 1}}, "comrade": {"_count": 1, "both": {"_count": 1}}, "sights": {"_count": 1, "": {"_count": 1}}, "captors": {"_count": 2, "encircling": {"_count": 1}, "over": {"_count": 1}}, "captor": {"_count": 1, "her": {"_count": 1}}, "clutching": {"_count": 1, "hand": {"_count": 1}}, "field": {"_count": 1, "of": {"_count": 1}}, "worthless": {"_count": 1, "mind": {"_count": 1}}, "stone": {"_count": 1, "guard": {"_count": 1}}, "stroll": {"_count": 1, "up": {"_count": 1}}, "statue": {"_count": 1, "guard": {"_count": 1}}, "agony": {"_count": 1, "he": {"_count": 1}}, "slipperclad": {"_count": 1, "feet": {"_count": 1}}, "rumpled": {"_count": 1, "gray": {"_count": 1}}, "calmness": {"_count": 1, "and": {"_count": 1}}, "arrest": {"_count": 1, "telling": {"_count": 1}}, "opportunity": {"_count": 2, "shortly": {"_count": 1}, "": {"_count": 1}}, "longfingered": {"_count": 4, "hands": {"_count": 3}, "hand": {"_count": 1}}, "cost": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "nest": {"_count": 1, "of": {"_count": 1}}, "equal": {"_count": 4, "but": {"_count": 1}, "": {"_count": 3}}, "creed": {"_count": 1, "is": {"_count": 1}}, "forearms": {"_count": 1, "where": {"_count": 1}}, "fourteenth": {"_count": 2, "Frog": {"_count": 1}, "bucket": {"_count": 1}}, "welcome": {"_count": 1, "": {"_count": 1}}, "departure": {"_count": 1, "he": {"_count": 1}}, "dandelion": {"_count": 1, "juice": {"_count": 1}}, "glass": {"_count": 8, "": {"_count": 1}, "and": {"_count": 2}, "down": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}, "upon": {"_count": 1}}, "talk": {"_count": 2, "with": {"_count": 1}, "of": {"_count": 1}}, "wishes": {"_count": 1, "varied": {"_count": 1}}, "packing": {"_count": 1, "": {"_count": 1}}, "belief": {"_count": 3, "that": {"_count": 1}, "in": {"_count": 2}}, "pawns": {"_count": 1, "chased": {"_count": 1}}, "zip": {"_count": 1, "a": {"_count": 1}}, "sinisterly": {"_count": 1, "revolving": {"_count": 1}}, "political": {"_count": 1, "opponents": {"_count": 1}}, "government": {"_count": 1, "supposed": {"_count": 1}}, "marble": {"_count": 1, "mantelpiece": {"_count": 1}}, "green": {"_count": 2, "bowler": {"_count": 2}}, "dying": {"_count": 1, "day": {"_count": 1}}, "after": {"_count": 1, "so": {"_count": 1}}, "reassurances": {"_count": 1, "that": {"_count": 1}}, "grueling": {"_count": 1, "election": {"_count": 1}}, "delighted": {"_count": 1, "niece": {"_count": 1}}, "term": {"_count": 1, "in": {"_count": 1}}, "charge": {"_count": 1, "": {"_count": 1}}, "voters": {"_count": 1, "made": {"_count": 1}}, "indignation": {"_count": 1, "at": {"_count": 1}}, "fullest": {"_count": 1, "height": {"_count": 1}}, "drink": {"_count": 3, "again": {"_count": 1}, "in": {"_count": 1}, "watching": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "disbelief": {"_count": 1, "": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "reactions": {"_count": 1, "are": {"_count": 1}}, "her": {"_count": 1, "tears": {"_count": 1}}, "yes": {"_count": 1, "with": {"_count": 1}}, "reply": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "flesh": {"_count": 3, "had": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "younger": {"_count": 5, "brother": {"_count": 4}, "self": {"_count": 1}}, "will": {"_count": 11, "makes": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 3}, "are": {"_count": 1}, "just": {"_count": 1}, "and": {"_count": 1}, "so": {"_count": 1}, "his": {"_count": 1}, "never": {"_count": 1}}, "rightful": {"_count": 1, "mistress": {"_count": 1}}, "jar": {"_count": 1, "of": {"_count": 1}}, "seventeenth": {"_count": 4, "birthday": {"_count": 3}, "it": {"_count": 1}}, "eyeballs": {"_count": 1, "were": {"_count": 1}}, "working": {"_count": 1, "life": {"_count": 1}}, "illuminated": {"_count": 2, "wand": {"_count": 2}}, "lower": {"_count": 3, "belly": {"_count": 2}, "face": {"_count": 1}}, "prominent": {"_count": 1, "eyes": {"_count": 1}}, "walls": {"_count": 1, "": {"_count": 1}}, "comfort": {"_count": 1, "": {"_count": 1}}, "favorites": {"_count": 1, "with": {"_count": 1}}, "collection": {"_count": 1, "\u2018the": {"_count": 1}}, "preoccupied": {"_count": 1, "silence": {"_count": 1}}, "watering": {"_count": 1, "eyes": {"_count": 1}}, "results": {"_count": 1, "": {"_count": 1}}, "ambition": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "evenings": {"_count": 1, "eating": {"_count": 1}}, "brown": {"_count": 1, "hair": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "cornflakes": {"_count": 1, "and": {"_count": 1}}, "shopping": {"_count": 1, "while": {"_count": 1}}, "overlong": {"_count": 1, "robe": {"_count": 1}}, "flaming": {"_count": 1, "hair": {"_count": 1}}, "mummy": {"_count": 1, "is": {"_count": 1}}, "Hand": {"_count": 1, "of": {"_count": 1}}, "broomsticks": {"_count": 1, "bent": {"_count": 1}}, "silent": {"_count": 1, "companion": {"_count": 1}}, "grimfaced": {"_count": 1, "Auror": {"_count": 1}}, "compartment": {"_count": 1, "with": {"_count": 1}}, "theory": {"_count": 5, "the": {"_count": 1}, "Harry": {"_count": 1}, "what": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 1}}, "hunch": {"_count": 1, "was": {"_count": 1}}, "encouraging": {"_count": 1, "smile": {"_count": 1}}, "trainer": {"_count": 2, "as": {"_count": 1}, "allowing": {"_count": 1}}, "comic": {"_count": 1, "and": {"_count": 1}}, "reaction": {"_count": 1, "": {"_count": 1}}, "haughty": {"_count": 1, "features": {"_count": 1}}, "attack": {"_count": 2, "on": {"_count": 1}, "upon": {"_count": 1}}, "throbbing": {"_count": 2, "nose": {"_count": 1}, "right": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "tardiness": {"_count": 1, "and": {"_count": 1}}, "timekeeping": {"_count": 1, "would": {"_count": 1}}, "distorted": {"_count": 2, "reflection": {"_count": 1}, "shadow": {"_count": 1}}, "treacle": {"_count": 1, "tart": {"_count": 1}}, "barely": {"_count": 1, "connected": {"_count": 1}}, "purpleandgold": {"_count": 1, "sleeve": {"_count": 1}}, "injury": {"_count": 1, "": {"_count": 1}}, "hearts": {"_count": 2, "desire": {"_count": 1}, "content": {"_count": 1}}, "vocabulary": {"_count": 1, "had": {"_count": 1}}, "subject": {"_count": 1, "he": {"_count": 1}}, "cheery": {"_count": 1, "wave": {"_count": 1}}, "application": {"_count": 1, "and": {"_count": 1}}, "sallow": {"_count": 1, "face": {"_count": 1}}, "personality": {"_count": 1, "upon": {"_count": 1}}, "beaming": {"_count": 1, "mouth": {"_count": 1}}, "annoyance": {"_count": 1, "he": {"_count": 1}}, "roots": {"_count": 1, "Harry": {"_count": 1}}, "bean": {"_count": 1, "with": {"_count": 1}}, "duties": {"_count": 1, "": {"_count": 1}}, "bizarre": {"_count": 1, "appearance": {"_count": 1}}, "stride": {"_count": 1, "and": {"_count": 1}}, "frock": {"_count": 2, "coat": {"_count": 2}}, "respect": {"_count": 1, "for": {"_count": 1}}, "scroll": {"_count": 2, "of": {"_count": 2}}, "sister": {"_count": 13, "": {"_count": 3}, "who": {"_count": 1}, "falling": {"_count": 1}, "and": {"_count": 2}, "Ariana": {"_count": 1}, "was": {"_count": 2}, "free": {"_count": 1}, "he": {"_count": 1}, "picked": {"_count": 1}}, "daughters": {"_count": 1, "throat": {"_count": 1}}, "early": {"_count": 2, "death": {"_count": 1}, "losses": {"_count": 1}}, "baby": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "gormless": {"_count": 1, "brother": {"_count": 1}}, "shoelaces": {"_count": 1, "if": {"_count": 1}}, "Captaincy": {"_count": 1, "": {"_count": 1}}, "minuscule": {"_count": 1, "and": {"_count": 1}}, "Clapham": {"_count": 1, "home": {"_count": 1}}, "choices": {"_count": 1, "Harry": {"_count": 1}}, "chosen": {"_count": 1, "Beaters": {"_count": 1}}, "Cleansweep": {"_count": 1, "Eleven": {"_count": 1}}, "razorsharp": {"_count": 1, "beak": {"_count": 1}}, "rock": {"_count": 2, "cakes": {"_count": 1}, "cake": {"_count": 1}}, "apron": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "brutal": {"_count": 1, "giant": {"_count": 1}}, "monster": {"_count": 1, "fancies": {"_count": 1}}, "tears": {"_count": 1, "": {"_count": 1}}, "walrus": {"_count": 3, "mustache": {"_count": 3}}, "textbooks": {"_count": 2, "that": {"_count": 1}, "were": {"_count": 1}}, "mattress": {"_count": 1, "": {"_count": 1}}, "title": {"_count": 1, "I": {"_count": 1}}, "Secrecy": {"_count": 2, "Sensor": {"_count": 2}}, "scarf": {"_count": 2, "over": {"_count": 1}, "from": {"_count": 1}}, "rainwashed": {"_count": 1, "glasses": {"_count": 1}}, "suitcase": {"_count": 1, "with": {"_count": 1}}, "MalfoyIsaDeathEater": {"_count": 1, "theory": {"_count": 1}}, "witch": {"_count": 2, "wife": {"_count": 1}, "mother": {"_count": 1}}, "mark": {"_count": 1, "all": {"_count": 1}}, "generosity": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "scabs": {"_count": 1, "and": {"_count": 1}}, "future": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "velvet": {"_count": 2, "suit": {"_count": 1}, "hat": {"_count": 1}}, "papa": {"_count": 1, "and": {"_count": 1}}, "handsome": {"_count": 4, "father": {"_count": 1}, "features": {"_count": 1}, "face": {"_count": 1}, "companion": {"_count": 1}}, "hollow": {"_count": 2, "cheeks": {"_count": 1}, "cheek": {"_count": 1}}, "finely": {"_count": 1, "carved": {"_count": 1}}, "worldly": {"_count": 1, "possessions": {"_count": 1}}, "list": {"_count": 1, "of": {"_count": 1}}, "ability": {"_count": 2, "to": {"_count": 2}}, "obvious": {"_count": 1, "instincts": {"_count": 1}}, "contempt": {"_count": 1, "for": {"_count": 1}}, "bullying": {"_count": 1, "behavior": {"_count": 1}}, "weaknesses": {"_count": 2, "": {"_count": 1}, "like": {"_count": 1}}, "spells": {"_count": 1, "": {"_count": 1}}, "goggles": {"_count": 1, "up": {"_count": 1}}, "choice": {"_count": 2, "once": {"_count": 1}, "while": {"_count": 1}}, "technique": {"_count": 2, "became": {"_count": 1}, "somehow": {"_count": 1}}, "friendship": {"_count": 2, "with": {"_count": 1}, "more": {"_count": 1}}, "Keeping": {"_count": 1, "skills": {"_count": 1}}, "assertion": {"_count": 1, "that": {"_count": 1}}, "suspicions": {"_count": 2, "about": {"_count": 2}}, "form": {"_count": 1, "": {"_count": 1}}, "Keepers": {"_count": 1, "gloves": {"_count": 1}}, "megaphone": {"_count": 1, "": {"_count": 1}}, "intentions": {"_count": 1, "perfectly": {"_count": 1}}, "smoking": {"_count": 1, "jacket": {"_count": 1}}, "manner": {"_count": 1, "changed": {"_count": 1}}, "mead": {"_count": 1, "up": {"_count": 1}}, "rule": {"_count": 1, "they": {"_count": 1}}, "services": {"_count": 1, "": {"_count": 1}}, "stocking": {"_count": 1, "": {"_count": 1}}, "eagerness": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "worm": {"_count": 1, "and": {"_count": 1}}, "mistakes": {"_count": 1, "": {"_count": 1}}, "wirerimmed": {"_count": 1, "glasses": {"_count": 1}}, "loud": {"_count": 1, "voice": {"_count": 1}}, "post": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "confidences": {"_count": 1, "had": {"_count": 1}}, "years": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "secondhand": {"_count": 1, "robes": {"_count": 1}}, "blackened": {"_count": 7, "hand": {"_count": 3}, "burnedlooking": {"_count": 1}, "fingers": {"_count": 1}, "fingertips": {"_count": 1}, "useless": {"_count": 1}}, "withered": {"_count": 3, "hand": {"_count": 3}}, "parentage": {"_count": 2, "": {"_count": 1}, "trying": {"_count": 1}}, "investigations": {"_count": 1, "into": {"_count": 1}}, "previously": {"_count": 1, "despised": {"_count": 1}}, "sixteenth": {"_count": 1, "year": {"_count": 1}}, "Gaunt": {"_count": 1, "relatives": {"_count": 1}}, "possibilities": {"_count": 1, "": {"_count": 1}}, "ring": {"_count": 1, "": {"_count": 1}}, "richly": {"_count": 1, "embroidered": {"_count": 1}}, "defenses": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "trusty": {"_count": 1, "copy": {"_count": 1}}, "dragonskin": {"_count": 1, "briefcase": {"_count": 1}}, "failure": {"_count": 1, "and": {"_count": 1}}, "trick": {"_count": 1, "with": {"_count": 1}}, "substance": {"_count": 1, "or": {"_count": 1}}, "argument": {"_count": 1, "with": {"_count": 1}}, "hoop": {"_count": 5, "and": {"_count": 2}, "so": {"_count": 1}, "again": {"_count": 1}, "during": {"_count": 1}}, "bedpost": {"_count": 1, "staring": {"_count": 1}}, "balance": {"_count": 2, "by": {"_count": 1}, "as": {"_count": 1}}, "disastrous": {"_count": 1, "first": {"_count": 1}}, "extremities": {"_count": 1, "jerking": {"_count": 1}}, "bearskin": {"_count": 1, "coat": {"_count": 1}}, "vastness": {"_count": 1, "": {"_count": 1}}, "commentary": {"_count": 1, "during": {"_count": 1}}, "relationship": {"_count": 4, "with": {"_count": 4}}, "Keeper": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "covers": {"_count": 1, "": {"_count": 1}}, "recently": {"_count": 1, "mended": {"_count": 1}}, "lifeless": {"_count": 1, "form": {"_count": 1}}, "blessing": {"_count": 1, "": {"_count": 1}}, "bandage": {"_count": 1, "turban": {"_count": 1}}, "hips": {"_count": 1, "like": {"_count": 1}}, "knobbly": {"_count": 1, "little": {"_count": 1}}, "nosey": {"_count": 1, "draw": {"_count": 1}}, "cork": {"_count": 1, "and": {"_count": 1}}, "earsies": {"_count": 1, "Harry": {"_count": 1}}, "flailing": {"_count": 2, "limbs": {"_count": 1}, "hand": {"_count": 1}}, "shriveled": {"_count": 1, "little": {"_count": 1}}, "jumper": {"_count": 1, "": {"_count": 1}}, "tennisballsized": {"_count": 1, "eyes": {"_count": 1}}, "feebler": {"_count": 1, "sentences": {"_count": 1}}, "grandparents": {"_count": 2, "and": {"_count": 1}, "they": {"_count": 1}}, "schooling": {"_count": 1, "with": {"_count": 1}}, "honesty": {"_count": 1, "": {"_count": 1}}, "disappearance": {"_count": 1, "": {"_count": 1}}, "orphanage": {"_count": 2, "just": {"_count": 1}, "on": {"_count": 1}}, "wine": {"_count": 2, "": {"_count": 1}, "glass": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "misspelled": {"_count": 1, "words": {"_count": 1}}, "teacozy": {"_count": 1, "hat": {"_count": 1}}, "pure": {"_count": 2, "blood": {"_count": 2}}, "manners": {"_count": 1, "are": {"_count": 1}}, "Dark": {"_count": 1, "Mark": {"_count": 1}}, "whispered": {"_count": 1, "plans": {"_count": 1}}, "conclusion": {"_count": 1, "on": {"_count": 1}}, "patrolling": {"_count": 1, "he": {"_count": 1}}, "jibe": {"_count": 1, "about": {"_count": 1}}, "request": {"_count": 3, "to": {"_count": 1}, "the": {"_count": 2}}, "patience": {"_count": 1, "completely": {"_count": 1}}, "utter": {"_count": 1, "astonishment": {"_count": 1}}, "The": {"_count": 1, "Prophets": {"_count": 1}}, "Hiccuping": {"_count": 1, "Solution": {"_count": 1}}, "walk": {"_count": 1, "to": {"_count": 1}}, "crinkled": {"_count": 1, "eyes": {"_count": 1}}, "horrified": {"_count": 1, "gaze": {"_count": 1}}, "shortcuts": {"_count": 1, "": {"_count": 1}}, "Not": {"_count": 1, "the": {"_count": 1}}, "gingeryblond": {"_count": 1, "mustache": {"_count": 1}}, "longing": {"_count": 1, "": {"_count": 1}}, "hard": {"_count": 1, "work": {"_count": 1}}, "Horcruxes": {"_count": 11, "Horcruxes": {"_count": 1}, "He": {"_count": 1}, "with": {"_count": 1}, "are": {"_count": 1}, "Voldemort": {"_count": 1}, "": {"_count": 4}, "before": {"_count": 1}, "he": {"_count": 1}}, "regenerated": {"_count": 1, "body": {"_count": 1}}, "exile": {"_count": 1, "without": {"_count": 1}}, "goal": {"_count": 2, "of": {"_count": 1}, "or": {"_count": 1}}, "loss": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "glittering": {"_count": 1, "robes": {"_count": 1}}, "nights": {"_count": 1, "work": {"_count": 1}}, "conscience": {"_count": 2, "ached": {"_count": 1}, "squirmed": {"_count": 1}}, "preoccupations": {"_count": 1, "Harry": {"_count": 1}}, "reverie": {"_count": 1, "hurrying": {"_count": 1}}, "countercurse": {"_count": 1, "for": {"_count": 1}}, "panic": {"_count": 2, "his": {"_count": 1}, "could": {"_count": 1}}, "task": {"_count": 1, "finally": {"_count": 1}}, "Herbology": {"_count": 1, "homework": {"_count": 1}}, "contemplation": {"_count": 2, "of": {"_count": 2}}, "bezoar": {"_count": 1, "tip": {"_count": 1}}, "desire": {"_count": 2, "to": {"_count": 2}}, "murderous": {"_count": 1, "quest": {"_count": 1}}, "retort": {"_count": 2, "scared": {"_count": 1}, "ready": {"_count": 1}}, "youthful": {"_count": 1, "victims": {"_count": 1}}, "benumbed": {"_count": 1, "fingers": {"_count": 1}}, "soaking": {"_count": 1, "clothes": {"_count": 1}}, "spinedeep": {"_count": 1, "coldness": {"_count": 1}}, "style": {"_count": 1, "": {"_count": 1}}, "Horcrux": {"_count": 3, "": {"_count": 1}, "there": {"_count": 1}, "was": {"_count": 1}}, "lake": {"_count": 1, "": {"_count": 1}}, "startled": {"_count": 1, "voice": {"_count": 1}}, "burned": {"_count": 2, "fingers": {"_count": 1}, "and": {"_count": 1}}, "grazed": {"_count": 1, "forearm": {"_count": 1}}, "weakened": {"_count": 1, "voice": {"_count": 1}}, "inexpert": {"_count": 1, "Apparition": {"_count": 1}}, "Cloak": {"_count": 1, "out": {"_count": 1}}, "disarmer": {"_count": 1, "and": {"_count": 1}}, "test": {"_count": 1, "": {"_count": 1}}, "invisible": {"_count": 1, "chest": {"_count": 1}}, "sisters": {"_count": 2, "wheezing": {"_count": 1}, "death": {"_count": 1}}, "shortcut": {"_count": 1, "were": {"_count": 1}}, "jinx": {"_count": 1, "hit": {"_count": 1}}, "opponent": {"_count": 1, "took": {"_count": 1}}, "wrecked": {"_count": 1, "cabin": {"_count": 1}}, "cover": {"_count": 1, "": {"_count": 1}}, "wounds": {"_count": 1, "with": {"_count": 1}}, "supply": {"_count": 1, "of": {"_count": 1}}, "lament": {"_count": 1, "to": {"_count": 1}}, "surname": {"_count": 1, "in": {"_count": 1}}, "collapse": {"_count": 1, "in": {"_count": 1}}, "haughtylooking": {"_count": 1, "father": {"_count": 1}}, "Slughorn": {"_count": 1, "would": {"_count": 1}}, "yellowish": {"_count": 1, "eyes": {"_count": 1}}, "infatuation": {"_count": 1, "with": {"_count": 1}}, "halfbrother": {"_count": 1, "and": {"_count": 1}}, "nightmare": {"_count": 1, "no": {"_count": 1}}, "protectors": {"_count": 1, "had": {"_count": 1}}, "resolution": {"_count": 1, "would": {"_count": 1}}, "irritation": {"_count": 1, "with": {"_count": 1}}, "blunt": {"_count": 1, "features": {"_count": 1}}, "silhouette": {"_count": 1, "": {"_count": 1}}, "current": {"_count": 1, "place": {"_count": 1}}, "triumphs": {"_count": 1, "": {"_count": 1}}, "wandfree": {"_count": 2, "hand": {"_count": 2}}, "onto": {"_count": 1, "the": {"_count": 1}}, "determined": {"_count": 1, "support": {"_count": 1}}, "example": {"_count": 1, "not": {"_count": 1}}, "greatest": {"_count": 2, "pleasure": {"_count": 1}, "loss": {"_count": 1}}, "daytoday": {"_count": 1, "life": {"_count": 1}}, "discovery": {"_count": 1, "of": {"_count": 1}}, "generation": {"_count": 1, "": {"_count": 1}}, "grave": {"_count": 2, "": {"_count": 1}, "if": {"_count": 1}}, "later": {"_count": 1, "years": {"_count": 1}}, "supposed": {"_count": 2, "achievements": {"_count": 1}, "hatred": {"_count": 1}}, "famous": {"_count": 1, "defeat": {"_count": 1}}, "conviction": {"_count": 1, "that": {"_count": 1}}, "force": {"_count": 1, "at": {"_count": 1}}, "overflowing": {"_count": 1, "bin": {"_count": 1}}, "lawn": {"_count": 1, "mower": {"_count": 1}}, "movements": {"_count": 1, "with": {"_count": 1}}, "dumbbells": {"_count": 1, "to": {"_count": 1}}, "rucksack": {"_count": 15, "then": {"_count": 1}, "gave": {"_count": 1}, "Firebolt": {"_count": 1}, "and": {"_count": 4}, "were": {"_count": 1}, "slipped": {"_count": 1}, "with": {"_count": 1}, "swung": {"_count": 1}, "": {"_count": 2}, "toward": {"_count": 1}, "from": {"_count": 1}}, "unnaturally": {"_count": 1, "tidy": {"_count": 1}}, "ungainly": {"_count": 1, "way": {"_count": 1}}, "sacks": {"_count": 1, "at": {"_count": 1}}, "privacy": {"_count": 1, "as": {"_count": 1}}, "discomfort": {"_count": 1, "that": {"_count": 1}}, "flowery": {"_count": 2, "pink": {"_count": 2}}, "halfclosed": {"_count": 1, "eyelids": {"_count": 1}}, "unspoken": {"_count": 1, "plea": {"_count": 1}}, "bulk": {"_count": 1, "through": {"_count": 1}}, "mingled": {"_count": 1, "oaths": {"_count": 1}}, "twins": {"_count": 1, "wound": {"_count": 1}}, "tearsoaked": {"_count": 1, "mother": {"_count": 1}}, "protegee": {"_count": 1, "at": {"_count": 1}}, "cushions": {"_count": 1, "": {"_count": 1}}, "firewhisky": {"_count": 1, "to": {"_count": 1}}, "pounding": {"_count": 2, "forehead": {"_count": 1}, "head": {"_count": 1}}, "stay": {"_count": 1, "": {"_count": 1}}, "apple": {"_count": 1, "tart": {"_count": 1}}, "access": {"_count": 1, "to": {"_count": 1}}, "confusion": {"_count": 1, "": {"_count": 1}}, "note": {"_count": 1, "he": {"_count": 1}}, "Dumbledores": {"_count": 1, "funeral": {"_count": 1}}, "Trace": {"_count": 1, "Harry": {"_count": 1}}, "possessions": {"_count": 2, "its": {"_count": 1}, "his": {"_count": 1}}, "muscley": {"_count": 1, "arms": {"_count": 1}}, "Deluminator": {"_count": 2, "Mr": {"_count": 1}, "and": {"_count": 1}}, "badly": {"_count": 1, "shaven": {"_count": 1}}, "Yes": {"_count": 1, "he": {"_count": 1}}, "invitation": {"_count": 1, "to": {"_count": 1}}, "symbol": {"_count": 1, "I": {"_count": 1}}, "thigh": {"_count": 1, "sparks": {"_count": 1}}, "Squib": {"_count": 2, "sister": {"_count": 2}}, "bundledup": {"_count": 1, "robes": {"_count": 1}}, "wandtip": {"_count": 1, "and": {"_count": 1}}, "memories": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "difference": {"_count": 2, "from": {"_count": 2}}, "slightly": {"_count": 1, "arrogant": {"_count": 1}}, "inclusion": {"_count": 1, "in": {"_count": 1}}, "nerveless": {"_count": 1, "fingers": {"_count": 1}}, "inky": {"_count": 1, "fingers": {"_count": 1}}, "batlike": {"_count": 2, "ears": {"_count": 2}}, "outfit": {"_count": 1, "": {"_count": 1}}, "bullfrogs": {"_count": 2, "voice": {"_count": 2}}, "sagging": {"_count": 1, "eyes": {"_count": 1}}, "snout": {"_count": 2, "and": {"_count": 1}, "a": {"_count": 1}}, "lawless": {"_count": 1, "ways": {"_count": 1}}, "Masters": {"_count": 1, "bidding": {"_count": 1}}, "beloved": {"_count": 1, "Regulus": {"_count": 1}}, "pallid": {"_count": 1, "forehead": {"_count": 1}}, "yell": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "warning": {"_count": 1, "most": {"_count": 1}}, "human": {"_count": 1, "face": {"_count": 1}}, "rage": {"_count": 2, "was": {"_count": 1}, "now": {"_count": 1}}, "momentarily": {"_count": 1, "exposed": {"_count": 1}}, "appreciation": {"_count": 1, "of": {"_count": 1}}, "mate": {"_count": 1, "\u2018Ill": {"_count": 1}}, "wellmuscled": {"_count": 1, "arms": {"_count": 1}}, "belongings": {"_count": 1, "Say": {"_count": 1}}, "glinting": {"_count": 1, "eyes": {"_count": 1}}, "suspicion": {"_count": 1, "as": {"_count": 1}}, "pages": {"_count": 1, "slipped": {"_count": 1}}, "options": {"_count": 1, "": {"_count": 1}}, "lids": {"_count": 1, "": {"_count": 1}}, "henchmen": {"_count": 1, "know": {"_count": 1}}, "lumbagos": {"_count": 1, "so": {"_count": 1}}, "color": {"_count": 1, "had": {"_count": 1}}, "clenched": {"_count": 1, "fist": {"_count": 1}}, "portion": {"_count": 1, "away": {"_count": 1}}, "terrified": {"_count": 1, "face": {"_count": 1}}, "lantern": {"_count": 1, "illuminated": {"_count": 1}}, "constant": {"_count": 1, "refrain": {"_count": 1}}, "disappointment": {"_count": 1, "": {"_count": 1}}, "fancy": {"_count": 1, "": {"_count": 1}}, "struggles": {"_count": 1, "to": {"_count": 1}}, "blindfolded": {"_count": 1, "head": {"_count": 1}}, "murky": {"_count": 1, "backdrop": {"_count": 1}}, "status": {"_count": 1, "of": {"_count": 1}}, "previous": {"_count": 1, "assertion": {"_count": 1}}, "painting": {"_count": 1, "": {"_count": 1}}, "exgirlfriend": {"_count": 1, "": {"_count": 1}}, "permission": {"_count": 1, "slip": {"_count": 1}}, "fill": {"_count": 1, "and": {"_count": 1}}, "excited": {"_count": 1, "trepidation": {"_count": 1}}, "torso": {"_count": 1, "squeezing": {"_count": 1}}, "scream": {"_count": 1, "was": {"_count": 1}}, "pain": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "painted": {"_count": 1, "face": {"_count": 1}}, "crib": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "suffering": {"_count": 1, "": {"_count": 1}}, "enemy": {"_count": 2, "": {"_count": 1}, "dead": {"_count": 1}}, "eighteenth": {"_count": 1, "birthday": {"_count": 1}}, "expedition": {"_count": 1, "as": {"_count": 1}}, "admirers": {"_count": 1, "believed": {"_count": 1}}, "opposition": {"_count": 1, "to": {"_count": 1}}, "devotion": {"_count": 1, "to": {"_count": 1}}, "rise": {"_count": 2, "to": {"_count": 2}}, "abilities": {"_count": 1, "into": {"_count": 1}}, "greataunt": {"_count": 1, "in": {"_count": 1}}, "crumbling": {"_count": 1, "pedestal": {"_count": 1}}, "once": {"_count": 1, "best": {"_count": 1}}, "justification": {"_count": 1, "for": {"_count": 1}}, "opponents": {"_count": 1, "": {"_count": 1}}, "retinas": {"_count": 1, "it": {"_count": 1}}, "exhilaration": {"_count": 1, "as": {"_count": 1}}, "smoky": {"_count": 1, "breath": {"_count": 1}}, "stead": {"_count": 1, "": {"_count": 1}}, "underwear": {"_count": 1, "barefooted": {"_count": 1}}, "windpipe": {"_count": 1, "": {"_count": 1}}, "frozen": {"_count": 1, "fingers": {"_count": 1}}, "saviors": {"_count": 1, "identity": {"_count": 1}}, "nearstrangulation": {"_count": 1, "": {"_count": 1}}, "helplessness": {"_count": 1, "": {"_count": 1}}, "buoyant": {"_count": 1, "spirits": {"_count": 1}}, "weeks": {"_count": 1, "away": {"_count": 1}}, "phoenix": {"_count": 1, "wand": {"_count": 1}}, "tapping": {"_count": 1, "at": {"_count": 1}}, "Wellingtoned": {"_count": 1, "legs": {"_count": 1}}, "Gurdyroot": {"_count": 1, "infusion": {"_count": 1}}, "weapon": {"_count": 1, "he": {"_count": 1}}, "slaughter": {"_count": 1, "of": {"_count": 1}}, "weird": {"_count": 1, "take": {"_count": 1}}, "ancestry": {"_count": 1, "": {"_count": 1}}, "kids": {"_count": 1, "": {"_count": 1}}, "nearly": {"_count": 1, "seven": {"_count": 1}}, "hope": {"_count": 1, "and": {"_count": 1}}, "discoveries": {"_count": 1, "": {"_count": 1}}, "feverish": {"_count": 1, "contemplation": {"_count": 1}}, "dormant": {"_count": 1, "leadership": {"_count": 1}}, "whereabouts": {"_count": 1, "his": {"_count": 1}}, "instincts": {"_count": 1, "which": {"_count": 1}}, "allconsuming": {"_count": 1, "obsession": {"_count": 1}}, "excruciatingly": {"_count": 1, "painful": {"_count": 1}}, "hired": {"_count": 1, "savagery": {"_count": 1}}, "puffedup": {"_count": 1, "eyes": {"_count": 1}}, "distended": {"_count": 1, "forehead": {"_count": 1}}, "misshapen": {"_count": 1, "features": {"_count": 1}}, "fate": {"_count": 1, "in": {"_count": 1}}, "men": {"_count": 1, "and": {"_count": 1}}, "distance": {"_count": 2, "from": {"_count": 1}, "this": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "She": {"_count": 1}}, "unresisting": {"_count": 1, "grip": {"_count": 1}}, "swarthy": {"_count": 1, "face": {"_count": 1}}, "fruitless": {"_count": 1, "efforts": {"_count": 1}}, "hesitation": {"_count": 1, "his": {"_count": 1}}, "purple": {"_count": 1, "face": {"_count": 1}}, "wrath": {"_count": 1, "barely": {"_count": 1}}, "retribution": {"_count": 1, "if": {"_count": 1}}, "he": {"_count": 1, "wondered": {"_count": 1}}, "sweat": {"_count": 1, "and": {"_count": 1}}, "grief": {"_count": 1, "in": {"_count": 1}}, "glassy": {"_count": 1, "stare": {"_count": 1}}, "murmured": {"_count": 1, "instruction": {"_count": 1}}, "handiwork": {"_count": 1, "for": {"_count": 1}}, "clean": {"_count": 2, "hands": {"_count": 1}, "unblemished": {"_count": 1}}, "slanting": {"_count": 1, "black": {"_count": 1}}, "faded": {"_count": 1, "eyes": {"_count": 1}}, "knobbleknuckled": {"_count": 1, "fingers": {"_count": 1}}, "protuberant": {"_count": 1, "eyes": {"_count": 1}}, "birthright": {"_count": 1, "": {"_count": 1}}, "tomb": {"_count": 1, "": {"_count": 1}}, "spindly": {"_count": 1, "fingers": {"_count": 1}}, "distaste": {"_count": 1, "was": {"_count": 1}}, "meat": {"_count": 1, "bloody": {"_count": 1}}, "farewells": {"_count": 1, "hugging": {"_count": 1}}, "loathing": {"_count": 1, "of": {"_count": 1}}, "action": {"_count": 1, "at": {"_count": 1}}, "disguise": {"_count": 1, "but": {"_count": 1}}, "Probe": {"_count": 1, "": {"_count": 1}}, "senior": {"_count": 1, "": {"_count": 1}}, "befuddled": {"_count": 2, "expression": {"_count": 1}, "and": {"_count": 1}}, "meekly": {"_count": 1, "": {"_count": 1}}, "treasures": {"_count": 1, "his": {"_count": 1}}, "safeguards": {"_count": 1, "his": {"_count": 1}}, "anchors": {"_count": 1, "to": {"_count": 1}}, "boiling": {"_count": 1, "brain": {"_count": 1}}, "an": {"_count": 1, "dementors": {"_count": 1}}, "grand": {"_count": 1, "plans": {"_count": 1}}, "clever": {"_count": 1, "schemes": {"_count": 1}}, "purpose": {"_count": 1, "": {"_count": 1}}, "prizes": {"_count": 1, "keeping": {"_count": 1}}, "correspondence": {"_count": 1, "with": {"_count": 1}}, "elder": {"_count": 2, "brother": {"_count": 1}, "brothers": {"_count": 1}}, "account": {"_count": 1, "too": {"_count": 1}}, "deputies": {"_count": 1, "": {"_count": 1}}, "general": {"_count": 1, "air": {"_count": 1}}, "injuries": {"_count": 1, "with": {"_count": 1}}, "willpower": {"_count": 1, "to": {"_count": 1}}, "bars": {"_count": 1, "turned": {"_count": 1}}, "fake": {"_count": 1, "Galleon": {"_count": 1}}, "safe": {"_count": 1, "passage": {"_count": 1}}, "piglike": {"_count": 1, "face": {"_count": 1}}, "crimes": {"_count": 1, "forgotten": {"_count": 1}}, "Shield": {"_count": 1, "Charm": {"_count": 1}}, "attackers": {"_count": 1, "Harry": {"_count": 1}}, "emeraldgreen": {"_count": 1, "silk": {"_count": 1}}, "photograph": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 2, "processes": {"_count": 1}, "": {"_count": 1}}, "ideas": {"_count": 2, "": {"_count": 1}, "caught": {"_count": 1}}, "advances": {"_count": 1, "to": {"_count": 1}}, "chains": {"_count": 1, "as": {"_count": 1}}, "savior": {"_count": 1, "and": {"_count": 1}}, "smaller": {"_count": 1, "kin": {"_count": 1}}, "weakness": {"_count": 1, "you": {"_count": 1}}, "burning": {"_count": 1, "scar": {"_count": 1}}, "view": {"_count": 1, "": {"_count": 1}}, "flank": {"_count": 1, "poured": {"_count": 1}}, "innards": {"_count": 1, "everything": {"_count": 1}}, "torturing": {"_count": 1, "grief": {"_count": 1}}, "older": {"_count": 1, "self": {"_count": 1}}, "unexpected": {"_count": 1, "appearance": {"_count": 1}}, "poorly": {"_count": 1, "cut": {"_count": 1}}, "dreadful": {"_count": 1, "Muggle": {"_count": 1}}, "resentment": {"_count": 1, "": {"_count": 1}}, "humiliation": {"_count": 1, "and": {"_count": 1}}, "straggling": {"_count": 1, "black": {"_count": 1}}, "deepest": {"_count": 1, "nature": {"_count": 1}}, "snake": {"_count": 1, "": {"_count": 1}}, "dread": {"_count": 1, "of": {"_count": 1}}, "surrender": {"_count": 1, "had": {"_count": 1}}, "bark": {"_count": 1, "booming": {"_count": 1}}, "searched": {"_count": 1, "his": {"_count": 1}}, "volition": {"_count": 1, "": {"_count": 1}}, "hour": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "total": {"_count": 1, "solitude": {"_count": 1}}, "greed": {"_count": 1, "and": {"_count": 1}}, "cruelty": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "never": {"_count": 1}}, "undetected": {"_count": 1, "wrongdoing": {"_count": 1}}, "schemes": {"_count": 1, "for": {"_count": 1}}, "cell": {"_count": 1, "at": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "obsession": {"_count": 1, "with": {"_count": 1}}, "heaving": {"_count": 1, "sobs": {"_count": 1}}, "closed": {"_count": 2, "eyelids": {"_count": 1}, "lids": {"_count": 1}}, "lashes": {"_count": 1, "Harry": {"_count": 1}}, "emerald": {"_count": 1, "pajamas": {"_count": 1}}, "snakes": {"_count": 1, "face": {"_count": 1}}, "screams": {"_count": 1, "humorless": {"_count": 1}}, "pupils": {"_count": 1, "contract": {"_count": 1}}, "enemys": {"_count": 1, "shell": {"_count": 1}}, "laughing": {"_count": 1, "mouth": {"_count": 1}}, "eartrumpet": {"_count": 1, "and": {"_count": 1}}, "satisfaction": {"_count": 1, "": {"_count": 1}}}, "most": {"_count": 520, "boring": {"_count": 5, "tie": {"_count": 1}, "class": {"_count": 1}, "department": {"_count": 1}, "creatures": {"_count": 1}, "subject": {"_count": 1}}, "anxious": {"_count": 2, "to": {"_count": 2}}, "of": {"_count": 99, "his": {"_count": 9}, "their": {"_count": 5}, "our": {"_count": 3}, "the": {"_count": 56}, "her": {"_count": 2}, "all": {"_count": 4}, "em": {"_count": 1}, "them": {"_count": 9}, "which": {"_count": 1}, "it": {"_count": 1}, "my": {"_count": 2}, "whom": {"_count": 2}, "you": {"_count": 1}, "Divination": {"_count": 1}, "Saturday": {"_count": 1}, "what": {"_count": 1}}, "miserable": {"_count": 1, "little": {"_count": 1}}, "ragged": {"_count": 1, "blanket": {"_count": 1}}, "peculiar": {"_count": 6, "feeling": {"_count": 1}, "expression": {"_count": 2}, "fashion": {"_count": 1}, "sensation": {"_count": 1}, "kitchen": {"_count": 1}}, "dearly": {"_count": 1, "in": {"_count": 1}}, "points": {"_count": 1, "is": {"_count": 1}}, "complex": {"_count": 2, "and": {"_count": 2}}, "poisons": {"_count": 2, "": {"_count": 2}}, "you": {"_count": 1, "and": {"_count": 1}}, "important": {"_count": 17, "ball": {"_count": 1}, "wizarding": {"_count": 1}, "phase": {"_count": 1}, "tools": {"_count": 1}, "of": {"_count": 2}, "hie": {"_count": 1}, "means": {"_count": 1}, "thing": {"_count": 3}, "": {"_count": 1}, "I": {"_count": 1}, "one": {"_count": 1}, "memory": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "serious": {"_count": 2, "Quidditch": {"_count": 1}, "of": {"_count": 1}}, "was": {"_count": 4, "that": {"_count": 2}, "the": {"_count": 2}}, "desperate": {"_count": 1, "desire": {"_count": 1}}, "horrible": {"_count": 4, "animal": {"_count": 1}, "noise": {"_count": 1}, "books": {"_count": 1}, "thing": {"_count": 1}}, "popular": {"_count": 4, "and": {"_count": 1}, "sport": {"_count": 2}, "with": {"_count": 1}}, "hated": {"_count": 1, "": {"_count": 1}}, "certainly": {"_count": 6, "will": {"_count": 1}, "wont": {"_count": 1}, "not": {"_count": 1}, "isnt": {"_count": 1}, "had": {"_count": 1}, "are": {"_count": 1}}, "displeased": {"_count": 2, "": {"_count": 2}}, "terrible": {"_count": 2, "face": {"_count": 1}, "things": {"_count": 1}}, "relieved": {"_count": 2, "you": {"_count": 1}, "when": {"_count": 1}}, "human": {"_count": 1, "beings": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "grievously": {"_count": 1, "for": {"_count": 1}}, "unusual": {"_count": 7, "about": {"_count": 1}, "exam": {"_count": 1}, "form": {"_count": 1}, "to": {"_count": 1}, "Cho": {"_count": 1}, "lesson": {"_count": 1}, "": {"_count": 1}}, "ridiculous": {"_count": 1, "rumors": {"_count": 1}}, "antidotes": {"_count": 1, "": {"_count": 1}}, "unlike": {"_count": 3, "Hagrid": {"_count": 1}, "his": {"_count": 2}}, "insulting": {"_count": 1, "thing": {"_count": 1}}, "students": {"_count": 2, "avoided": {"_count": 1}, "would": {"_count": 1}}, "welcome": {"_count": 1, "too": {"_count": 1}}, "advanced": {"_count": 1, "He": {"_count": 1}}, "exciting": {"_count": 2, "thing": {"_count": 1}, "player": {"_count": 1}}, "learned": {"_count": 1, "witches": {"_count": 1}}, "depressing": {"_count": 1, "bathroom": {"_count": 1}}, "complicated": {"_count": 1, "potion": {"_count": 1}}, "interesting": {"_count": 2, "": {"_count": 1}, "thing": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "people": {"_count": 11, "were": {"_count": 1}, "senseless": {"_count": 1}, "thought": {"_count": 1}, "wished": {"_count": 1}, "had": {"_count": 3}, "while": {"_count": 1}, "": {"_count": 1}, "would": {"_count": 1}, "only": {"_count": 1}}, "wondrous": {"_count": 1, "for": {"_count": 1}}, "unfortunate": {"_count": 1, "said": {"_count": 1}}, "intimate": {"_count": 1, "friends": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}}, "brilliant": {"_count": 2, "student": {"_count": 2}}, "interested": {"_count": 1, "in": {"_count": 1}}, "prominent": {"_count": 1, "pureblood": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "extraordinary": {"_count": 2, "of": {"_count": 1}, "things": {"_count": 1}}, "feared": {"_count": 2, "Dark": {"_count": 1}, "and": {"_count": 1}}, "about": {"_count": 3, "Hogwarts": {"_count": 1}, "in": {"_count": 1}, "Slughorn": {"_count": 1}}, "prized": {"_count": 4, "possessions": {"_count": 3}, "apparently": {"_count": 1}}, "with": {"_count": 1, "large": {"_count": 1}}, "infamous": {"_count": 1, "prisoner": {"_count": 1}}, "fascinating": {"_count": 1, "wizarding": {"_count": 1}}, "appeared": {"_count": 1, "in": {"_count": 1}}, "magnificent": {"_count": 2, "broom": {"_count": 1}, "battery": {"_count": 1}}, "severely": {"_count": 2, "haunted": {"_count": 1}, "because": {"_count": 1}}, "difficult": {"_count": 3, "of": {"_count": 1}, "": {"_count": 1}, "magic": {"_count": 1}}, "imprecise": {"_count": 1, "branches": {"_count": 1}}, "wizards": {"_count": 3, "": {"_count": 1}, "doesnt": {"_count": 1}, "would": {"_count": 1}}, "obvious": {"_count": 1, "thing": {"_count": 1}}, "bizarre": {"_count": 2, "creatures": {"_count": 1}, "thing": {"_count": 1}}, "dangerous": {"_count": 11, "voice": {"_count": 2}, "supporters": {"_count": 1}, "and": {"_count": 2}, "Dark": {"_count": 1}, "to": {"_count": 2}, "journey": {"_count": 1}, "": {"_count": 1}, "wand": {"_count": 1}}, "fears": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "and": {"_count": 2, "imagine": {"_count": 1}, "he": {"_count": 1}}, "peoples": {"_count": 1, "favorite": {"_count": 1}}, "succulentlooking": {"_count": 1, "sweets": {"_count": 1}}, "delicious": {"_count": 1, "thing": {"_count": 1}}, "heavily": {"_count": 2, "guarded": {"_count": 1}, "punished": {"_count": 1}}, "devoted": {"_count": 3, "servant": {"_count": 1}, "of": {"_count": 1}, "servants": {"_count": 1}}, "faraway": {"_count": 1, "voice": {"_count": 1}}, "haunted": {"_count": 1, "dwelling": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "intelligent": {"_count": 1, "of": {"_count": 1}}, "evil": {"_count": 2, "wizard": {"_count": 2}}, "is": {"_count": 1, "the": {"_count": 1}}, "impenetrable": {"_count": 1, "Harry": {"_count": 1}}, "plainly": {"_count": 1, "when": {"_count": 1}}, "unpopular": {"_count": 1, "": {"_count": 1}}, "effectively": {"_count": 1, "I": {"_count": 1}}, "powerful": {"_count": 7, "Dark": {"_count": 1}, "spells": {"_count": 1}, "wizard": {"_count": 1}, "wizards": {"_count": 1}, "love": {"_count": 1}, "he": {"_count": 1}, "curse": {"_count": 1}}, "reluctant": {"_count": 1, "to": {"_count": 1}}, "unpleasant": {"_count": 4, "turn": {"_count": 1}, "thing": {"_count": 1}, "he": {"_count": 1}, "shock": {"_count": 1}}, "fundamental": {"_count": 1, "instincts": {"_count": 1}}, "upset": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "noticeable": {"_count": 1, "person": {"_count": 1}}, "cheerfully": {"_count": 1, "back": {"_count": 1}}, "beautiful": {"_count": 4, "women": {"_count": 1}, "and": {"_count": 1}, "thing": {"_count": 1}, "summers": {"_count": 1}}, "profusely": {"_count": 1, "said": {"_count": 1}}, "conspicuous": {"_count": 1, "since": {"_count": 1}}, "wisely": {"_count": 1, "in": {"_count": 1}}, "excellent": {"_count": 1, "way": {"_count": 1}}, "worthy": {"_count": 2, "to": {"_count": 2}}, "wonderful": {"_count": 4, "feeling": {"_count": 1}, "person": {"_count": 1}, "prospect": {"_count": 1}, "birthday": {"_count": 1}}, "unusually": {"_count": 2, "they": {"_count": 1}, "already": {"_count": 1}}, "particularly": {"_count": 2, "guests": {"_count": 1}, "if": {"_count": 1}}, "injust": {"_count": 1, "": {"_count": 1}}, "irregular": {"_count": 1, "": {"_count": 1}}, "repulsive": {"_count": 1, "things": {"_count": 1}}, "amazing": {"_count": 3, "things": {"_count": 1}, "room": {"_count": 1}, "stories": {"_count": 1}}, "seriously": {"_count": 1, "displeased": {"_count": 1}}, "stunning": {"_count": 1, "he": {"_count": 1}}, "illnatured": {"_count": 1, "": {"_count": 1}}, "useful": {"_count": 3, "aid": {"_count": 1}, "of": {"_count": 1}, "if": {"_count": 1}}, "urgent": {"_count": 1, "problem": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "miss": {"_count": 1, "that": {"_count": 1}}, "lurid": {"_count": 1, "socks": {"_count": 1}}, "secret": {"_count": 1, "What": {"_count": 1}}, "fun": {"_count": 1, "they": {"_count": 1}}, "successful": {"_count": 1, "so": {"_count": 1}}, "satisfactory": {"_count": 1, "yes": {"_count": 1}}, "interestingly": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "famous": {"_count": 1, "Parselmouth": {"_count": 1}}, "faithful": {"_count": 4, "That": {"_count": 1}, "servant": {"_count": 1}, "of": {"_count": 1}, "Does": {"_count": 1}}, "afraid": {"_count": 1, "we": {"_count": 1}}, "recent": {"_count": 8, "first": {"_count": 1}, "owl": {"_count": 1}, "dreams": {"_count": 1}, "dream": {"_count": 1}, "meetings": {"_count": 1}, "ream": {"_count": 1}, "Defense": {"_count": 1}, "of": {"_count": 1}}, "essential": {"_count": 1, "step": {"_count": 1}}, "subdued": {"_count": 1, "table": {"_count": 1}}, "realistic": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 2, "Hes": {"_count": 1}, "worry": {"_count": 1}}, "fleeting": {"_count": 2, "of": {"_count": 1}, "moment": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "averted": {"_count": 1, "their": {"_count": 1}}, "unlikely": {"_count": 4, "to": {"_count": 1}, "that": {"_count": 2}, "possibility": {"_count": 1}}, "major": {"_count": 1, "jinxes": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "illuminating": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "carefully": {"_count": 2, "over": {"_count": 1}, "particularly": {"_count": 1}}, "sweetly": {"_count": 1, "girlish": {"_count": 1}}, "think": {"_count": 1, "hes": {"_count": 1}}, "pleasantly": {"_count": 1, "surprised": {"_count": 1}}, "often": {"_count": 2, "come": {"_count": 1}, "he": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}, "poisonously": {"_count": 1, "sweet": {"_count": 1}}, "unhelpful": {"_count": 2, "glance": {"_count": 1}, "mood": {"_count": 1}}, "likely": {"_count": 8, "to": {"_count": 7}, "objection": {"_count": 1}}, "insensitive": {"_count": 1, "wart": {"_count": 1}}, "convincingly": {"_count": 1, "kept": {"_count": 1}}, "celebrated": {"_count": 1, "Heads": {"_count": 1}}, "unfortunately": {"_count": 3, "well": {"_count": 1}, "in": {"_count": 1}, "Ron": {"_count": 1}}, "grievous": {"_count": 2, "affliction": {"_count": 1}, "peril": {"_count": 1}}, "highly": {"_count": 2, "of": {"_count": 2}}, "minds": {"_count": 1, "are": {"_count": 1}}, "relaxed": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "pronounced": {"_count": 1, "cough": {"_count": 1}}, "curious": {"_count": 3, "sensations": {"_count": 1}, "little": {"_count": 1}, "expression": {"_count": 1}}, "nights": {"_count": 1, "with": {"_count": 1}}, "stringent": {"_count": 1, "Anti": {"_count": 1}}, "wanted": {"_count": 2, "wizards": {"_count": 1}, "person": {"_count": 1}}, "venoms": {"_count": 1, "act": {"_count": 1}}, "loyal": {"_count": 2, "servant": {"_count": 1}, "his": {"_count": 1}}, "mysterious": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "accomplished": {"_count": 3, "Legilimens": {"_count": 1}, "at": {"_count": 2}}, "admirable": {"_count": 1, "said": {"_count": 1}}, "convenient": {"_count": 1, "and": {"_count": 1}}, "precious": {"_count": 1, "if": {"_count": 1}}, "trusted": {"_count": 1, "advisor": {"_count": 1}}, "sincerely": {"_count": 1, "Albus": {"_count": 1}}, "satisfied": {"_count": 1, "expression": {"_count": 1}}, "Wizarding": {"_count": 1, "dwellings": {"_count": 1}}, "expensive": {"_count": 1, "beating": {"_count": 1}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "warmly": {"_count": 1, "anticipated": {"_count": 1}}, "pleasant": {"_count": 1, "said": {"_count": 1}}, "welldeserved": {"_count": 1, "": {"_count": 1}}, "marvelous": {"_count": 1, "BatBogey": {"_count": 1}}, "effort": {"_count": 1, "in": {"_count": 1}}, "seductive": {"_count": 1, "scents": {"_count": 1}}, "men": {"_count": 1, "my": {"_count": 1}}, "incomprehensible": {"_count": 1, "of": {"_count": 1}}, "unconvincing": {"_count": 1, "stab": {"_count": 1}}, "surprising": {"_count": 1, "": {"_count": 1}}, "suggestive": {"_count": 1, "": {"_count": 1}}, "energetic": {"_count": 1, "means": {"_count": 1}}, "unHermioneish": {"_count": 1, "giggle": {"_count": 1}}, "savage": {"_count": 1, "werewolf": {"_count": 1}}, "understandably": {"_count": 1, "as": {"_count": 1}}, "favorably": {"_count": 1, "impressed": {"_count": 1}}, "handsome": {"_count": 1, "face": {"_count": 1}}, "crucial": {"_count": 2, "piece": {"_count": 1}, "memory": {"_count": 1}}, "gruesome": {"_count": 1, "potions": {"_count": 1}}, "uncomfortable": {"_count": 2, "experience": {"_count": 1}, "silence": {"_count": 1}}, "painful": {"_count": 1, "injury": {"_count": 1}}, "jealously": {"_count": 1, "": {"_count": 1}}, "agreeable": {"_count": 1, "feeling": {"_count": 1}}, "rashly": {"_count": 1, "invented": {"_count": 1}}, "morose": {"_count": 1, "": {"_count": 1}}, "authorities": {"_count": 1, "agree": {"_count": 1}}, "efficacious": {"_count": 1, "if": {"_count": 1}}, "convincing": {"_count": 1, "hesitancy": {"_count": 1}}, "powerfully": {"_count": 3, "magical": {"_count": 3}}, "ominous": {"_count": 1, "to": {"_count": 1}}, "unhappy": {"_count": 1, "that": {"_count": 1}}, "deeply": {"_count": 1, "": {"_count": 1}}, "importantly": {"_count": 1, "of": {"_count": 1}}, "shaken": {"_count": 1, "pale": {"_count": 1}}, "Hermioneish": {"_count": 1, "look": {"_count": 1}}, "desirable": {"_count": 1, "circumstance": {"_count": 1}}, "notable": {"_count": 2, "magical": {"_count": 2}}, "inspiring": {"_count": 1, "and": {"_count": 1}}, "journalists": {"_count": 2, "would": {"_count": 2}}, "turbulent": {"_count": 1, "and": {"_count": 1}}, "troubled": {"_count": 1, "adolescence": {"_count": 1}}, "testing": {"_count": 1, "moments": {"_count": 1}}, "strange": {"_count": 1, "to": {"_count": 1}}, "space": {"_count": 1, "was": {"_count": 1}}, "skilled": {"_count": 1, "Aurors": {"_count": 1}}, "honored": {"_count": 1, "at": {"_count": 1}}, "Quaffle": {"_count": 1, "drops": {"_count": 1}}, "eccentriclooking": {"_count": 1, "wizard": {"_count": 1}}, "suspicious": {"_count": 1, "Lancelot": {"_count": 1}}, "attentively": {"_count": 1, "": {"_count": 1}}, "gifted": {"_count": 1, "magical": {"_count": 1}}, "days": {"_count": 1, "shes": {"_count": 1}}, "experts": {"_count": 1, "agree": {"_count": 1}}, "intriguing": {"_count": 1, "": {"_count": 1}}, "baggy": {"_count": 1, "Y": {"_count": 1}}, "Ministry": {"_count": 1, "people": {"_count": 1}}, "senior": {"_count": 1, "Ministry": {"_count": 1}}, "gnarled": {"_count": 1, "and": {"_count": 1}}, "unwisely": {"_count": 1, "there": {"_count": 1}}, "ornate": {"_count": 1, "frames": {"_count": 1}}, "strangelooking": {"_count": 1, "house": {"_count": 1}}, "bizarrelooking": {"_count": 1, "headdress": {"_count": 1}}, "excited": {"_count": 1, "that": {"_count": 1}}, "unwillingly": {"_count": 1, "handed": {"_count": 1}}, "easily": {"_count": 1, "traced": {"_count": 1}}, "familiar": {"_count": 2, "voice": {"_count": 2}}, "cowardly": {"_count": 1, "servant": {"_count": 1}}, "underhanded": {"_count": 1, "and": {"_count": 1}}, "ancient": {"_count": 1, "chambers": {"_count": 1}}, "prone": {"_count": 1, "to": {"_count": 1}}, "faithfully": {"_count": 1, "in": {"_count": 1}}, "contemptuous": {"_count": 1, "manner": {"_count": 1}}, "danger": {"_count": 1, "": {"_count": 1}}, "frightened": {"_count": 1, "began": {"_count": 1}}, "wearing": {"_count": 1, "traveling": {"_count": 1}}, "pompous": {"_count": 1, "manner": {"_count": 1}}, "distant": {"_count": 1, "scream": {"_count": 1}}, "closely": {"_count": 1, "the": {"_count": 1}}, "stupendous": {"_count": 1, "relief": {"_count": 1}}}, "boring": {"_count": 25, "tie": {"_count": 1, "for": {"_count": 1}}, "Dudley": {"_count": 1, "moaned": {"_count": 1}}, "class": {"_count": 1, "was": {"_count": 1}}, "department": {"_count": 1, "said": {"_count": 1}}, "book": {"_count": 1, "called": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "as": {"_count": 2, "ever": {"_count": 1}, "Percys": {"_count": 1}}, "having": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "lawabiding": {"_count": 1, "neighbors": {"_count": 1}}, "into": {"_count": 6, "him": {"_count": 1}, "Harrys": {"_count": 3}, "Sirius": {"_count": 1}, "Harry": {"_count": 1}}, "creatures": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "useless": {"_count": 1}}, "Scabbers": {"_count": 1, "was": {"_count": 1}}, "life": {"_count": 1, "hasnt": {"_count": 1}}, "subject": {"_count": 1, "ever": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "work": {"_count": 1, "punctuated": {"_count": 1}}}, "tie": {"_count": 23, "for": {"_count": 2, "work": {"_count": 1}, "it": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "pulled": {"_count": 1}}, "a": {"_count": 1, "long": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "just": {"_count": 1, "visible": {"_count": 1}}, "hanging": {"_count": 1, "from": {"_count": 1}}, "him": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 3, "wide": {"_count": 1}, "trunk": {"_count": 1}, "shoelaces": {"_count": 1}}, "the": {"_count": 1, "letter": {"_count": 1}}, "up": {"_count": 1, "nine": {"_count": 1}}, "patterned": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "so": {"_count": 1}}, "her": {"_count": 1, "parcel": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}, "reeking": {"_count": 1, "of": {"_count": 1}}, "these": {"_count": 1, "little": {"_count": 1}}}, "work": {"_count": 357, "and": {"_count": 8, "Mrs": {"_count": 1}, "pain": {"_count": 1}, "deciding": {"_count": 1}, "carefully": {"_count": 1}, "stuff": {"_count": 1}, "giving": {"_count": 1}, "confiscate": {"_count": 1}, "who": {"_count": 1}}, "": {"_count": 66, ".": {"_count": 49}, "?": {"_count": 10}, "!": {"_count": 7}}, "Harry": {"_count": 7, "the": {"_count": 1}, "": {"_count": 2}, "took": {"_count": 1}, "said": {"_count": 1}, "told": {"_count": 1}, "went": {"_count": 1}}, "out": {"_count": 26, "what": {"_count": 3}, "how": {"_count": 8}, "the": {"_count": 6}, "that": {"_count": 2}, "whether": {"_count": 1}, "a": {"_count": 3}, "who": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "that": {"_count": 6, "day": {"_count": 1}, "well": {"_count": 1}, "out": {"_count": 3}, "one": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 12, "strange": {"_count": 1}, "here": {"_count": 1}, "your": {"_count": 1}, "reverse": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 4}, "their": {"_count": 1}, "other": {"_count": 1}, "this": {"_count": 1}}, "on": {"_count": 15, "you": {"_count": 1}, "alchemy": {"_count": 2}, "cats": {"_count": 1}, "their": {"_count": 1}, "Summoning": {"_count": 1}, "that": {"_count": 1}, "Monday": {"_count": 1}, "the": {"_count": 1}, "planetary": {"_count": 1}, "a": {"_count": 1}, "Patronuses": {"_count": 1}, "these": {"_count": 2}, "everything": {"_count": 1}}, "anyway": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "robes": {"_count": 1, "black": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 1}, "better": {"_count": 1}}, "with": {"_count": 4, "dragons": {"_count": 1}, "him": {"_count": 2}, "Fudge": {"_count": 1}}, "of": {"_count": 5, "Dark": {"_count": 1}, "a": {"_count": 1}, "Muggles": {"_count": 1}, "course": {"_count": 1}, "art": {"_count": 1}}, "much": {"_count": 1, "easier": {"_count": 1}}, "it": {"_count": 7, "out": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}}, "though": {"_count": 3, "": {"_count": 1}, "you": {"_count": 1}, "Ron": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 12, "do": {"_count": 5}, "traveling": {"_count": 1}, "be": {"_count": 3}, "finish": {"_count": 1}, "get": {"_count": 1}, "stare": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 8, "Mrs": {"_count": 1}, "Ron": {"_count": 2}, "Uncle": {"_count": 1}, "Dumbledore": {"_count": 1}, "George": {"_count": 1}, "Harry": {"_count": 1}, "Lupin": {"_count": 1}}, "the": {"_count": 6, "fight": {"_count": 1}, "Department": {"_count": 1}, "guinea": {"_count": 1}, "spell": {"_count": 1}, "rest": {"_count": 1}, "knots": {"_count": 1}}, "but": {"_count": 6, "today": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 1}, "hell": {"_count": 1}, "thats": {"_count": 1}}, "at": {"_count": 8, "the": {"_count": 4}, "double": {"_count": 1}, "Hogwarts": {"_count": 1}, "a": {"_count": 1}, "Borgin": {"_count": 1}}, "or": {"_count": 2, "Ill": {"_count": 1}, "to": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 18, "me": {"_count": 2}, "the": {"_count": 6}, "five": {"_count": 1}, "two": {"_count": 1}, "him": {"_count": 2}, "anyone": {"_count": 1}, "each": {"_count": 1}, "you": {"_count": 1}, "Professor": {"_count": 1}, "Dumbledore": {"_count": 1}, "up": {"_count": 1}}, "Riddles": {"_count": 1, "diary": {"_count": 1}}, "pruning": {"_count": 1, "the": {"_count": 1}}, "involved": {"_count": 1, "": {"_count": 1}}, "anymore": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 3, "theyre": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 1}}, "extrahard": {"_count": 1, "to": {"_count": 1}}, "done": {"_count": 2, "": {"_count": 2}}, "they": {"_count": 3, "had": {"_count": 1}, "were": {"_count": 1}, "broke": {"_count": 1}}, "only": {"_count": 1, "if": {"_count": 1}}, "everyone": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "shes": {"_count": 1, "tryin": {"_count": 1}}, "alone": {"_count": 2, "this": {"_count": 1}, "digging": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "hastily": {"_count": 1}, "could": {"_count": 1}}, "I": {"_count": 3, "cant": {"_count": 1}, "suppose": {"_count": 1}, "can": {"_count": 1}}, "very": {"_count": 2, "hard": {"_count": 1}, "well": {"_count": 1}}, "because": {"_count": 2, "of": {"_count": 2}}, "then": {"_count": 5, "": {"_count": 4}, "would": {"_count": 1}}, "sir": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "were": {"_count": 2, "there": {"_count": 1}, "we": {"_count": 1}}, "requiring": {"_count": 1, "much": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "cut": {"_count": 1, "out": {"_count": 1}}, "an": {"_count": 1, "insultin": {"_count": 1}}, "like": {"_count": 3, "that": {"_count": 2}, "this": {"_count": 1}}, "searching": {"_count": 2, "through": {"_count": 1}, "them": {"_count": 1}}, "did": {"_count": 1, "it": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "together": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "better": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 2, "I": {"_count": 1}, "said": {"_count": 1}}, "parties": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "term": {"_count": 1}}, "up": {"_count": 1, "Bartys": {"_count": 1}}, "hard": {"_count": 2, "to": {"_count": 1}, "all": {"_count": 1}}, "around": {"_count": 1, "Hogwarts": {"_count": 1}}, "properly": {"_count": 3, "against": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "against": {"_count": 2, "me": {"_count": 1}, "the": {"_count": 1}}, "Oh": {"_count": 1, "not": {"_count": 1}}, "ignores": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 5, "cleaning": {"_count": 1}, "well": {"_count": 2}, "he": {"_count": 1}, "I": {"_count": 1}}, "wonders": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "except": {"_count": 1, "lack": {"_count": 1}}, "thats": {"_count": 1, "her": {"_count": 1}}, "Ron": {"_count": 2, "guarding": {"_count": 1}, "said": {"_count": 1}}, "harder": {"_count": 2, "from": {"_count": 1}, "than": {"_count": 1}}, "accepted": {"_count": 1, "thats": {"_count": 1}}, "than": {"_count": 1, "Harry": {"_count": 1}}, "outside": {"_count": 1, "and": {"_count": 1}}, "brought": {"_count": 1, "more": {"_count": 1}}, "its": {"_count": 2, "mainly": {"_count": 1}, "just": {"_count": 1}}, "this": {"_count": 2, "spell": {"_count": 1}, "way": {"_count": 1}}, "well": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 2, "bit": {"_count": 1}, "little": {"_count": 1}}, "which": {"_count": 2, "I": {"_count": 1}, "will": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "seems": {"_count": 1, "satisfactory": {"_count": 1}}, "continues": {"_count": 1, "to": {"_count": 1}}, "parttime": {"_count": 1, "at": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "private": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "it": {"_count": 1}}, "without": {"_count": 1, "saying": {"_count": 1}}, "Why": {"_count": 1, "didnt": {"_count": 1}}, "however": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "them": {"_count": 1}}, "punctuated": {"_count": 1, "as": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "out": {"_count": 1}}, "surfaces": {"_count": 1, "or": {"_count": 1}}, "He": {"_count": 1, "imagined": {"_count": 1}}, "doing": {"_count": 1, "he": {"_count": 1}}, "surface": {"_count": 1, "and": {"_count": 1}}, "Master": {"_count": 1, "Regulus": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "if": {"_count": 1, "Dumbledore": {"_count": 1}}, "hes": {"_count": 1, "been": {"_count": 1}}, "our": {"_count": 1, "way": {"_count": 1}}, "glorying": {"_count": 1, "in": {"_count": 1}}, "metal": {"_count": 1, "in": {"_count": 1}}, "chopping": {"_count": 1, "up": {"_count": 1}}, "muttering": {"_count": 1, "under": {"_count": 1}}, "something": {"_count": 1, "out": {"_count": 1}}, "spells": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "nothing": {"_count": 1, "would": {"_count": 1}}}, "gossiped": {"_count": 1, "away": {"_count": 1, "happily": {"_count": 1}}}, "happily": {"_count": 127, "as": {"_count": 13, "she": {"_count": 3}, "they": {"_count": 3}, "Ern": {"_count": 1}, "Troy": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "shouting": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 44, ".": {"_count": 44}}, "stretching": {"_count": 1, "out": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "anticipating": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "over": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "waving": {"_count": 1, "a": {"_count": 1}}, "about": {"_count": 2, "what": {"_count": 1}, "his": {"_count": 1}}, "discussing": {"_count": 1, "their": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "Harry": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}, "stuffing": {"_count": 1, "a": {"_count": 1}}, "imagining": {"_count": 1, "what": {"_count": 1}}, "looking": {"_count": 2, "around": {"_count": 2}}, "pointing": {"_count": 2, "at": {"_count": 1}, "them": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "bouncing": {"_count": 1, "on": {"_count": 1}}, "have": {"_count": 1, "put": {"_count": 1}}, "brandishing": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 2, "dishing": {"_count": 1}, "pelting": {"_count": 1}}, "I": {"_count": 1, "bet": {"_count": 1}}, "pulling": {"_count": 1, "a": {"_count": 1}}, "leaping": {"_count": 1, "to": {"_count": 1}}, "Dobby": {"_count": 1, "has": {"_count": 1}}, "and": {"_count": 4, "clap": {"_count": 1}, "he": {"_count": 1}, "Cho": {"_count": 1}, "they": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}}, "If": {"_count": 1, "youve": {"_count": 1}}, "joining": {"_count": 1, "Harry": {"_count": 1}}, "answering": {"_count": 1, "Harrys": {"_count": 1}}, "on": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "dyou": {"_count": 1, "know": {"_count": 1}}, "away": {"_count": 1, "across": {"_count": 1}}, "abused": {"_count": 1, "all": {"_count": 1}}, "exchanged": {"_count": 1, "the": {"_count": 1}}, "leaning": {"_count": 1, "against": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "forgone": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "wheres": {"_count": 1, "Hokey": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "impervious": {"_count": 1, "to": {"_count": 1}}, "seconds": {"_count": 1, "later": {"_count": 1}}, "plumping": {"_count": 1, "up": {"_count": 1}}, "striding": {"_count": 1, "into": {"_count": 1}}, "lain": {"_count": 1, "down": {"_count": 1}}}, "wrestled": {"_count": 4, "a": {"_count": 1, "screaming": {"_count": 1}}, "her": {"_count": 1, "knight": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "screaming": {"_count": 94, "Dudley": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 5, "sweets": {"_count": 1}, "his": {"_count": 1}, "release": {"_count": 1}, "my": {"_count": 1}, "their": {"_count": 1}}, "": {"_count": 10, "!": {"_count": 1}, ".": {"_count": 9}}, "and": {"_count": 17, "flailing": {"_count": 1}, "Harry": {"_count": 1}, "pleading": {"_count": 1}, "thought": {"_count": 1}, "lying": {"_count": 1}, "stamping": {"_count": 1}, "groans": {"_count": 1}, "applauding": {"_count": 1}, "fistbeating": {"_count": 1}, "shouting": {"_count": 2}, "screaming": {"_count": 1}, "banging": {"_count": 1}, "writhing": {"_count": 1}, "holding": {"_count": 1}, "yelling": {"_count": 1}, "waving": {"_count": 1}}, "You": {"_count": 1, "solved": {"_count": 1}}, "terrible": {"_count": 1, "terrified": {"_count": 1}}, "A": {"_count": 1, "loud": {"_count": 1}}, "screaming": {"_count": 1, "inside": {"_count": 1}}, "inside": {"_count": 3, "his": {"_count": 1}, "Harrys": {"_count": 1}, "him": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "belonged": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "its": {"_count": 1, "delight": {"_count": 1}}, "itself": {"_count": 1, "hoarse": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "all": {"_count": 1, "sorts": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "there": {"_count": 1}}, "from": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 1}, "protest": {"_count": 1}, "agony": {"_count": 1}, "pain": {"_count": 1}}, "had": {"_count": 2, "stopped": {"_count": 2}}, "down": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "loudly": {"_count": 1}}, "their": {"_count": 1, "Seeker": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "applauding": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 3, "misery": {"_count": 1}, "rage": {"_count": 1}, "bloodlust": {"_count": 1}}, "they": {"_count": 1, "all": {"_count": 1}}, "filled": {"_count": 2, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "boy": {"_count": 1, "and": {"_count": 1}}, "more": {"_count": 1, "loudly": {"_count": 1}}, "sobbing": {"_count": 1, "hysterically": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Malfoy": {"_count": 1, "yelling": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 1}, "hammering": {"_count": 1}, "The": {"_count": 1}, "until": {"_count": 1}}, "several": {"_count": 1, "floors": {"_count": 1}}, "students": {"_count": 1, "caused": {"_count": 1}}, "nonstop": {"_count": 1, "her": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "a": {"_count": 1, "horrible": {"_count": 1}}, "but": {"_count": 2, "far": {"_count": 1}, "before": {"_count": 1}}, "too": {"_count": 1, "but": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "pleading": {"_count": 1, "with": {"_count": 1}}, "news": {"_count": 1, "from": {"_count": 1}}, "encouragement": {"_count": 1, "his": {"_count": 1}}, "advice": {"_count": 1, "and": {"_count": 1}}, "instructions": {"_count": 1, "to": {"_count": 1}}}, "into": {"_count": 3438, "his": {"_count": 301, "high": {"_count": 1}, "car": {"_count": 1}, "belt": {"_count": 3}, "first": {"_count": 1}, "billowing": {"_count": 1}, "trunk": {"_count": 7}, "seat": {"_count": 4}, "hand": {"_count": 7}, "mouth": {"_count": 17}, "head": {"_count": 4}, "pillow": {"_count": 2}, "crossbow": {"_count": 1}, "class": {"_count": 1}, "real": {"_count": 1}, "beard": {"_count": 4}, "desk": {"_count": 2}, "report": {"_count": 1}, "door": {"_count": 1}, "bag": {"_count": 16}, "robes": {"_count": 6}, "basin": {"_count": 1}, "outstretched": {"_count": 1}, "elbow": {"_count": 1}, "pajamas": {"_count": 1}, "ripped": {"_count": 1}, "cauldron": {"_count": 6}, "domed": {"_count": 1}, "shaking": {"_count": 2}, "palms": {"_count": 1}, "arm": {"_count": 1}, "cabin": {"_count": 4}, "bedroom": {"_count": 2}, "stomach": {"_count": 7}, "pocket": {"_count": 23}, "collar": {"_count": 1}, "other": {"_count": 1}, "office": {"_count": 5}, "briefcase": {"_count": 1}, "cabinet": {"_count": 1}, "face": {"_count": 10}, "tangled": {"_count": 4}, "tea": {"_count": 1}, "shoulder": {"_count": 5}, "hands": {"_count": 8}, "back": {"_count": 1}, "front": {"_count": 1}, "neck": {"_count": 1}, "case": {"_count": 1}, "ear": {"_count": 4}, "room": {"_count": 3}, "breast": {"_count": 1}, "mustache": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 4}, "own": {"_count": 9}, "bunk": {"_count": 1}, "yard": {"_count": 1}, "house": {"_count": 1}, "socks": {"_count": 1}, "traveling": {"_count": 1}, "lap": {"_count": 3}, "fourposter": {"_count": 3}, "goblet": {"_count": 1}, "hair": {"_count": 1}, "chest": {"_count": 2}, "plate": {"_count": 1}, "dustbinlidsized": {"_count": 1}, "off": {"_count": 1}, "lungs": {"_count": 2}, "shoulders": {"_count": 1}, "godfather": {"_count": 1}, "empty": {"_count": 2}, "mind": {"_count": 6}, "jeans": {"_count": 2}, "cousin": {"_count": 1}, "throat": {"_count": 2}, "chair": {"_count": 5}, "chilly": {"_count": 1}, "bed": {"_count": 1}, "already": {"_count": 1}, "schoolbag": {"_count": 1}, "arms": {"_count": 6}, "ink": {"_count": 1}, "skin": {"_count": 6}, "armchair": {"_count": 2}, "bowl": {"_count": 1}, "frame": {"_count": 1}, "godfathers": {"_count": 1}, "usual": {"_count": 1}, "eyes": {"_count": 2}, "handkerchief": {"_count": 1}, "startlingly": {"_count": 1}, "skull": {"_count": 2}, "long": {"_count": 1}, "pockets": {"_count": 1}, "open": {"_count": 1}, "inner": {"_count": 1}, "hollow": {"_count": 1}, "jacket": {"_count": 1}, "stocking": {"_count": 1}, "previously": {"_count": 1}, "hoop": {"_count": 1}, "pillows": {"_count": 1}, "walrus": {"_count": 1}, "last": {"_count": 1}, "thoughts": {"_count": 1}, "book": {"_count": 1}, "dormitory": {"_count": 1}, "brothers": {"_count": 1}, "large": {"_count": 1}, "waistcoat": {"_count": 1}, "massive": {"_count": 1}, "eyebrows": {"_count": 1}, "memories": {"_count": 1}, "portrait": {"_count": 2}, "small": {"_count": 1}, "parents": {"_count": 1}, "flesh": {"_count": 1}, "Gurdyroot": {"_count": 1}, "palm": {"_count": 1}, "free": {"_count": 1}, "school": {"_count": 1}, "grasp": {"_count": 1}, "minds": {"_count": 1}, "body": {"_count": 1}, "temple": {"_count": 1}, "laughing": {"_count": 1}}, "someone": {"_count": 3, "just": {"_count": 1}, "nobody": {"_count": 1}, "elses": {"_count": 1}}, "a": {"_count": 395, "wide": {"_count": 5}, "tight": {"_count": 2}, "revolting": {"_count": 1}, "trash": {"_count": 1}, "chair": {"_count": 20}, "smile": {"_count": 4}, "knot": {"_count": 1}, "corner": {"_count": 10}, "hot": {"_count": 1}, "pig": {"_count": 2}, "small": {"_count": 10}, "bag": {"_count": 2}, "heap": {"_count": 1}, "heavy": {"_count": 2}, "bucket": {"_count": 2}, "needle": {"_count": 1}, "sneer": {"_count": 1}, "twisted": {"_count": 1}, "large": {"_count": 11}, "classroom": {"_count": 1}, "bin": {"_count": 1}, "run": {"_count": 11}, "suit": {"_count": 2}, "door": {"_count": 1}, "nightmare": {"_count": 1}, "patch": {"_count": 3}, "little": {"_count": 1}, "book": {"_count": 1}, "sort": {"_count": 2}, "spectacular": {"_count": 1}, "game": {"_count": 1}, "sweat": {"_count": 1}, "snuffbox": {"_count": 1}, "school": {"_count": 1}, "seat": {"_count": 5}, "furnace": {"_count": 1}, "back": {"_count": 1}, "dingy": {"_count": 1}, "barrel": {"_count": 1}, "leather": {"_count": 1}, "bookshop": {"_count": 1}, "bookshelf": {"_count": 1}, "blaze": {"_count": 1}, "fabulous": {"_count": 1}, "pot": {"_count": 1}, "button": {"_count": 1}, "speech": {"_count": 1}, "stupor": {"_count": 1}, "pair": {"_count": 2}, "motheaten": {"_count": 1}, "yak": {"_count": 1}, "drawer": {"_count": 2}, "freezer": {"_count": 1}, "wizarding": {"_count": 2}, "roll": {"_count": 1}, "great": {"_count": 1}, "man": {"_count": 3}, "box": {"_count": 1}, "sleeve": {"_count": 1}, "blizzard": {"_count": 1}, "badger": {"_count": 1}, "look": {"_count": 1}, "minuscule": {"_count": 1}, "whirl": {"_count": 1}, "hidden": {"_count": 1}, "clearing": {"_count": 3}, "girls": {"_count": 1}, "tree": {"_count": 2}, "painful": {"_count": 1}, "silk": {"_count": 1}, "brick": {"_count": 1}, "sumptuous": {"_count": 1}, "particularly": {"_count": 1}, "painting": {"_count": 1}, "vacant": {"_count": 1}, "tabby": {"_count": 1}, "bonebreaking": {"_count": 1}, "rat": {"_count": 2}, "thousand": {"_count": 3}, "wooden": {"_count": 1}, "flowering": {"_count": 1}, "furious": {"_count": 1}, "spot": {"_count": 2}, "dementor": {"_count": 1}, "good": {"_count": 1}, "silvery": {"_count": 1}, "green": {"_count": 2}, "perfectly": {"_count": 1}, "horrible": {"_count": 1}, "tortoise": {"_count": 1}, "werewolf": {"_count": 2}, "different": {"_count": 1}, "standing": {"_count": 3}, "grudging": {"_count": 1}, "deserted": {"_count": 1}, "giant": {"_count": 2}, "rubber": {"_count": 1}, "kind": {"_count": 5}, "dive": {"_count": 3}, "disagreement": {"_count": 1}, "sitting": {"_count": 6}, "trance": {"_count": 2}, "frenzy": {"_count": 1}, "single": {"_count": 1}, "pulp": {"_count": 1}, "stormtossed": {"_count": 1}, "bar": {"_count": 1}, "hacking": {"_count": 1}, "horned": {"_count": 1}, "satisfactory": {"_count": 1}, "gracious": {"_count": 1}, "line": {"_count": 1}, "state": {"_count": 1}, "trap": {"_count": 3}, "ferret": {"_count": 1}, "crescendo": {"_count": 1}, "dog": {"_count": 1}, "custard": {"_count": 1}, "bathroom": {"_count": 1}, "fit": {"_count": 1}, "response": {"_count": 1}, "more": {"_count": 4}, "submarine": {"_count": 1}, "goldfish": {"_count": 1}, "frog": {"_count": 1}, "huddle": {"_count": 1}, "bewitched": {"_count": 1}, "cell": {"_count": 1}, "lot": {"_count": 2}, "bat": {"_count": 1}, "dark": {"_count": 6}, "bowl": {"_count": 2}, "false": {"_count": 3}, "deep": {"_count": 3}, "gleaming": {"_count": 1}, "Portkey": {"_count": 3}, "compartment": {"_count": 1}, "one": {"_count": 1}, "beetle": {"_count": 1}, "harness": {"_count": 1}, "patchwork": {"_count": 1}, "ribcracking": {"_count": 1}, "load": {"_count": 2}, "few": {"_count": 1}, "sagging": {"_count": 1}, "ridiculously": {"_count": 1}, "sack": {"_count": 2}, "corridor": {"_count": 2}, "dimly": {"_count": 1}, "Muggle": {"_count": 1}, "very": {"_count": 1}, "rubbish": {"_count": 1}, "storm": {"_count": 2}, "new": {"_count": 1}, "nutter": {"_count": 1}, "neighboring": {"_count": 1}, "bottle": {"_count": 1}, "scream": {"_count": 1}, "cough": {"_count": 1}, "spacious": {"_count": 1}, "chorus": {"_count": 1}, "raucous": {"_count": 1}, "doze": {"_count": 2}, "hug": {"_count": 3}, "nearby": {"_count": 5}, "snake": {"_count": 1}, "moody": {"_count": 1}, "splashy": {"_count": 1}, "squally": {"_count": 1}, "room": {"_count": 2}, "crumpled": {"_count": 1}, "rant": {"_count": 1}, "flask": {"_count": 1}, "swamp": {"_count": 1}, "flock": {"_count": 1}, "building": {"_count": 1}, "recess": {"_count": 1}, "chintzcovered": {"_count": 1}, "dim": {"_count": 1}, "bloodred": {"_count": 1}, "bird": {"_count": 1}, "grandfather": {"_count": 1}, "bookcase": {"_count": 1}, "table": {"_count": 1}, "hundred": {"_count": 2}, "gerbil": {"_count": 1}, "second": {"_count": 1}, "slightly": {"_count": 1}, "tiny": {"_count": 1}, "kneeling": {"_count": 2}, "space": {"_count": 1}, "bone": {"_count": 2}, "range": {"_count": 1}, "longwinded": {"_count": 1}, "red": {"_count": 1}, "crowd": {"_count": 2}, "reluctant": {"_count": 1}, "bow": {"_count": 2}, "bare": {"_count": 1}, "hallway": {"_count": 2}, "cave": {"_count": 2}, "jelly": {"_count": 1}, "defiant": {"_count": 1}, "paper": {"_count": 1}, "miniature": {"_count": 1}, "rage": {"_count": 1}, "half": {"_count": 1}, "cracked": {"_count": 1}, "stupid": {"_count": 1}, "plentiful": {"_count": 1}, "long": {"_count": 1}, "mirror": {"_count": 1}, "vertical": {"_count": 1}, "muddy": {"_count": 1}, "bedroom": {"_count": 1}, "handkerchief": {"_count": 1}, "brilliant": {"_count": 1}, "bright": {"_count": 1}, "vail": {"_count": 1}, "booth": {"_count": 1}, "prickly": {"_count": 1}, "kitchen": {"_count": 1}, "ball": {"_count": 1}, "couple": {"_count": 1}, "high": {"_count": 1}, "cubicle": {"_count": 2}, "slot": {"_count": 1}, "smaller": {"_count": 1}, "torchlit": {"_count": 1}, "bun": {"_count": 1}, "Horcrux": {"_count": 3}, "library": {"_count": 1}, "balding": {"_count": 1}, "lowceilinged": {"_count": 1}, "shadowy": {"_count": 1}, "gang": {"_count": 1}, "fight": {"_count": 1}, "gigantic": {"_count": 1}, "dreadful": {"_count": 1}, "frightening": {"_count": 1}, "dank": {"_count": 1}, "Gringotts": {"_count": 2}, "crack": {"_count": 1}, "freezing": {"_count": 1}, "railway": {"_count": 1}, "strangling": {"_count": 1}, "gormless": {"_count": 1}, "chute": {"_count": 1}}, "the": {"_count": 1516, "driveway": {"_count": 2}, "house": {"_count": 12}, "living": {"_count": 7}, "front": {"_count": 7}, "air": {"_count": 142}, "night": {"_count": 20}, "kitchen": {"_count": 22}, "car": {"_count": 5}, "hall": {"_count": 23}, "room": {"_count": 67}, "middle": {"_count": 17}, "sea": {"_count": 1}, "hut": {"_count": 1}, "fierce": {"_count": 1}, "shadows": {"_count": 11}, "storm": {"_count": 1}, "firelight": {"_count": 4}, "fire": {"_count": 21}, "other": {"_count": 4}, "sofa": {"_count": 1}, "harbor": {"_count": 1}, "matter": {"_count": 1}, "world": {"_count": 1}, "station": {"_count": 6}, "Dursleys": {"_count": 1}, "corridor": {"_count": 16}, "picture": {"_count": 3}, "Great": {"_count": 21}, "chair": {"_count": 7}, "road": {"_count": 1}, "hooknosed": {"_count": 1}, "breakin": {"_count": 1}, "Gryffindor": {"_count": 4}, "eyes": {"_count": 1}, "common": {"_count": 17}, "crate": {"_count": 3}, "crowded": {"_count": 2}, "row": {"_count": 2}, "faces": {"_count": 1}, "forest": {"_count": 37}, "second": {"_count": 2}, "cold": {"_count": 3}, "classroom": {"_count": 2}, "thick": {"_count": 1}, "clearing": {"_count": 1}, "heart": {"_count": 2}, "trees": {"_count": 9}, "depths": {"_count": 5}, "midst": {"_count": 3}, "keyhole": {"_count": 1}, "ceiling": {"_count": 2}, "lock": {"_count": 2}, "lounge": {"_count": 1}, "hedge": {"_count": 4}, "shade": {"_count": 4}, "dining": {"_count": 1}, "back": {"_count": 16}, "frying": {"_count": 1}, "flames": {"_count": 8}, "flowerpot": {"_count": 1}, "shop": {"_count": 6}, "bank": {"_count": 1}, "corners": {"_count": 2}, "cauldron": {"_count": 10}, "low": {"_count": 1}, "silence": {"_count": 5}, "darkness": {"_count": 27}, "Hall": {"_count": 6}, "four": {"_count": 1}, "vast": {"_count": 2}, "dungeons": {"_count": 3}, "story": {"_count": 4}, "circular": {"_count": 4}, "Whomping": {"_count": 2}, "chattering": {"_count": 2}, "overcast": {"_count": 1}, "crowd": {"_count": 9}, "stands": {"_count": 5}, "oneroomed": {"_count": 1}, "basin": {"_count": 7}, "table": {"_count": 2}, "darkened": {"_count": 1}, "castle": {"_count": 28}, "ink": {"_count": 3}, "envelope": {"_count": 1}, "entrance": {"_count": 42}, "last": {"_count": 4}, "passage": {"_count": 3}, "toilet": {"_count": 4}, "dormitory": {"_count": 3}, "stall": {"_count": 1}, "potion": {"_count": 2}, "dungeon": {"_count": 4}, "wall": {"_count": 12}, "desk": {"_count": 3}, "first": {"_count": 5}, "next": {"_count": 7}, "dark": {"_count": 18}, "sink": {"_count": 2}, "spirit": {"_count": 1}, "page": {"_count": 1}, "school": {"_count": 11}, "Forbidden": {"_count": 2}, "moonlit": {"_count": 1}, "pitchdark": {"_count": 1}, "very": {"_count": 2}, "windshield": {"_count": 1}, "class": {"_count": 1}, "hospital": {"_count": 2}, "deserted": {"_count": 4}, "Chamber": {"_count": 4}, "pipe": {"_count": 2}, "giant": {"_count": 1}, "diary": {"_count": 1}, "stone": {"_count": 5}, "roof": {"_count": 1}, "tunnel": {"_count": 3}, "rapt": {"_count": 1}, "Dark": {"_count": 2}, "garden": {"_count": 8}, "spare": {"_count": 1}, "gap": {"_count": 2}, "shadowed": {"_count": 1}, "Muggle": {"_count": 2}, "backyard": {"_count": 1}, "real": {"_count": 1}, "luggage": {"_count": 5}, "folds": {"_count": 1}, "lumpy": {"_count": 1}, "cavernous": {"_count": 2}, "grass": {"_count": 1}, "left": {"_count": 1}, "strangestlooking": {"_count": 1}, "hustle": {"_count": 1}, "teacup": {"_count": 1}, "paddock": {"_count": 2}, "Three": {"_count": 2}, "rain": {"_count": 2}, "mud": {"_count": 1}, "cellar": {"_count": 2}, "hole": {"_count": 2}, "Acid": {"_count": 1}, "Honeydukes": {"_count": 1}, "handsome": {"_count": 2}, "cabin": {"_count": 2}, "attack": {"_count": 1}, "empty": {"_count": 4}, "nearest": {"_count": 4}, "packing": {"_count": 1}, "stunned": {"_count": 1}, "gathering": {"_count": 2}, "stadium": {"_count": 5}, "tower": {"_count": 1}, "statue": {"_count": 1}, "sunlight": {"_count": 1}, "office": {"_count": 10}, "passageway": {"_count": 2}, "dim": {"_count": 1}, "Orbs": {"_count": 1}, "crystal": {"_count": 1}, "handle": {"_count": 1}, "dirtiest": {"_count": 1}, "megaphone": {"_count": 1}, "light": {"_count": 6}, "quagmire": {"_count": 1}, "trunk": {"_count": 6}, "Orb": {"_count": 1}, "grounds": {"_count": 12}, "jug": {"_count": 1}, "shadow": {"_count": 2}, "moon": {"_count": 1}, "landing": {"_count": 1}, "sewer": {"_count": 1}, "Hogwarts": {"_count": 1}, "grave": {"_count": 3}, "pumpkin": {"_count": 1}, "fence": {"_count": 1}, "roots": {"_count": 1}, "ground": {"_count": 11}, "ward": {"_count": 2}, "distance": {"_count": 5}, "Ministry": {"_count": 8}, "wrong": {"_count": 1}, "village": {"_count": 4}, "old": {"_count": 2}, "country": {"_count": 3}, "mirror": {"_count": 4}, "palm": {"_count": 1}, "green": {"_count": 3}, "yard": {"_count": 5}, "boot": {"_count": 2}, "campsite": {"_count": 2}, "wood": {"_count": 5}, "box": {"_count": 7}, "sky": {"_count": 11}, "bridge": {"_count": 1}, "Top": {"_count": 1}, "woods": {"_count": 2}, "tiny": {"_count": 3}, "warm": {"_count": 1}, "door": {"_count": 3}, "Triwizard": {"_count": 1}, "crates": {"_count": 2}, "sides": {"_count": 1}, "seat": {"_count": 6}, "jar": {"_count": 4}, "glass": {"_count": 1}, "Department": {"_count": 5}, "sunrise": {"_count": 1}, "space": {"_count": 1}, "warmth": {"_count": 2}, "goblet": {"_count": 3}, "blue": {"_count": 4}, "Goblet": {"_count": 7}, "side": {"_count": 4}, "one": {"_count": 3}, "lake": {"_count": 11}, "rafters": {"_count": 2}, "cupboard": {"_count": 2}, "watery": {"_count": 2}, "frame": {"_count": 3}, "bag": {"_count": 2}, "silk": {"_count": 1}, "enclosure": {"_count": 2}, "tent": {"_count": 4}, "groove": {"_count": 1}, "water": {"_count": 8}, "Slytherin": {"_count": 1}, "bathroom": {"_count": 4}, "window": {"_count": 1}, "soft": {"_count": 1}, "weed": {"_count": 1}, "inside": {"_count": 2}, "wild": {"_count": 4}, "great": {"_count": 2}, "hearth": {"_count": 1}, "dusk": {"_count": 2}, "soil": {"_count": 1}, "cloudy": {"_count": 1}, "maze": {"_count": 3}, "pitchdarkness": {"_count": 1}, "tournament": {"_count": 1}, "corridors": {"_count": 2}, "hilt": {"_count": 1}, "substance": {"_count": 1}, "far": {"_count": 2}, "chamber": {"_count": 2}, "darkening": {"_count": 2}, "bottomless": {"_count": 1}, "path": {"_count": 1}, "face": {"_count": 2}, "ghostly": {"_count": 1}, "blackness": {"_count": 1}, "FoeGlass": {"_count": 1}, "scalp": {"_count": 1}, "fold": {"_count": 1}, "black": {"_count": 4}, "compartment": {"_count": 7}, "flower": {"_count": 1}, "alley": {"_count": 1}, "almost": {"_count": 1}, "basement": {"_count": 2}, "Order": {"_count": 1}, "stopper": {"_count": 1}, "sack": {"_count": 2}, "rubbish": {"_count": 1}, "receiver": {"_count": 1}, "stream": {"_count": 1}, "smaller": {"_count": 1}, "lift": {"_count": 5}, "category": {"_count": 1}, "now": {"_count": 1}, "pool": {"_count": 5}, "wastepaper": {"_count": 1}, "twins": {"_count": 1}, "open": {"_count": 6}, "weak": {"_count": 1}, "prefect": {"_count": 1}, "compartments": {"_count": 1}, "coachs": {"_count": 1}, "musty": {"_count": 1}, "damp": {"_count": 2}, "Fat": {"_count": 1}, "skin": {"_count": 1}, "fireplace": {"_count": 5}, "blindingly": {"_count": 1}, "changing": {"_count": 3}, "bowl": {"_count": 1}, "outskirts": {"_count": 1}, "bright": {"_count": 2}, "High": {"_count": 1}, "staffroom": {"_count": 3}, "courtyard": {"_count": 1}, "bucket": {"_count": 1}, "solid": {"_count": 1}, "practice": {"_count": 1}, "cracked": {"_count": 4}, "dregs": {"_count": 1}, "icy": {"_count": 3}, "dazzling": {"_count": 1}, "silent": {"_count": 1}, "corner": {"_count": 2}, "crook": {"_count": 1}, "region": {"_count": 1}, "armchair": {"_count": 1}, "mans": {"_count": 1}, "man": {"_count": 1}, "others": {"_count": 1}, "wintry": {"_count": 1}, "headquarters": {"_count": 1}, "airing": {"_count": 1}, "backseat": {"_count": 1}, "double": {"_count": 1}, "minds": {"_count": 1}, "greasy": {"_count": 1}, "Pensieve": {"_count": 10}, "top": {"_count": 1}, "napkin": {"_count": 1}, "pouring": {"_count": 1}, "doorway": {"_count": 1}, "torrential": {"_count": 1}, "conversation": {"_count": 2}, "feathery": {"_count": 1}, "department": {"_count": 1}, "Room": {"_count": 7}, "painting": {"_count": 1}, "surface": {"_count": 2}, "sunlit": {"_count": 1}, "sun": {"_count": 1}, "folder": {"_count": 1}, "records": {"_count": 1}, "crack": {"_count": 3}, "glorious": {"_count": 1}, "cover": {"_count": 1}, "crossbow": {"_count": 1}, "small": {"_count": 1}, "shadowy": {"_count": 2}, "teeming": {"_count": 1}, "grate": {"_count": 1}, "dancing": {"_count": 1}, "wide": {"_count": 2}, "abandoned": {"_count": 1}, "balmy": {"_count": 1}, "center": {"_count": 1}, "mane": {"_count": 1}, "horses": {"_count": 2}, "neck": {"_count": 1}, "walls": {"_count": 1}, "surrounding": {"_count": 3}, "slitted": {"_count": 1}, "new": {"_count": 2}, "eyehole": {"_count": 1}, "dais": {"_count": 1}, "wooden": {"_count": 1}, "trap": {"_count": 1}, "silver": {"_count": 1}, "prophecy": {"_count": 1}, "bottom": {"_count": 1}, "upper": {"_count": 1}, "emerald": {"_count": 2}, "Prime": {"_count": 2}, "bargain": {"_count": 1}, "cushions": {"_count": 2}, "ownership": {"_count": 1}, "sitting": {"_count": 4}, "full": {"_count": 1}, "chilly": {"_count": 1}, "smoothly": {"_count": 1}, "average": {"_count": 1}, "whole": {"_count": 1}, "main": {"_count": 3}, "cramped": {"_count": 1}, "lesson": {"_count": 1}, "headmasters": {"_count": 1}, "silvery": {"_count": 1}, "greenhouses": {"_count": 1}, "wind": {"_count": 1}, "case": {"_count": 1}, "swirling": {"_count": 1}, "cardboard": {"_count": 1}, "magical": {"_count": 1}, "sudden": {"_count": 1}, "girls": {"_count": 2}, "party": {"_count": 1}, "chorus": {"_count": 1}, "packed": {"_count": 1}, "present": {"_count": 1}, "proceedings": {"_count": 1}, "mercifully": {"_count": 1}, "dying": {"_count": 1}, "belt": {"_count": 1}, "candlelit": {"_count": 1}, "boys": {"_count": 2}, "sunshine": {"_count": 2}, "bottle": {"_count": 1}, "arena": {"_count": 2}, "sunny": {"_count": 2}, "ladies": {"_count": 1}, "grimy": {"_count": 1}, "already": {"_count": 2}, "twilit": {"_count": 1}, "cliff": {"_count": 2}, "still": {"_count": 1}, "boat": {"_count": 3}, "whitened": {"_count": 1}, "street": {"_count": 3}, "fight": {"_count": 1}, "opposite": {"_count": 1}, "place": {"_count": 2}, "waiting": {"_count": 1}, "cool": {"_count": 1}, "mudlike": {"_count": 1}, "sidecar": {"_count": 3}, "whirling": {"_count": 1}, "red": {"_count": 2}, "Burrow": {"_count": 1}, "bin": {"_count": 1}, "hug": {"_count": 1}, "Burrows": {"_count": 1}, "marquee": {"_count": 1}, "growing": {"_count": 1}, "panicking": {"_count": 1}, "shelter": {"_count": 1}, "compressing": {"_count": 2}, "weasel": {"_count": 1}, "elfs": {"_count": 1}, "lamplight": {"_count": 1}, "prematurely": {"_count": 1}, "bags": {"_count": 1}, "courtroom": {"_count": 1}, "arms": {"_count": 1}, "Atrium": {"_count": 1}, "fireplaces": {"_count": 1}, "stillopen": {"_count": 1}, "beaded": {"_count": 2}, "river": {"_count": 1}, "suffocating": {"_count": 1}, "war": {"_count": 1}, "graveyard": {"_count": 1}, "snow": {"_count": 1}, "square": {"_count": 1}, "milky": {"_count": 1}, "mound": {"_count": 1}, "crib": {"_count": 1}, "intruders": {"_count": 1}, "snake": {"_count": 1}, "attainment": {"_count": 1}, "rocky": {"_count": 2}, "Hallows": {"_count": 1}, "flesh": {"_count": 1}, "goblins": {"_count": 2}, "apparently": {"_count": 1}, "drawing": {"_count": 1}, "unknown": {"_count": 1}, "hard": {"_count": 1}, "little": {"_count": 1}, "sunken": {"_count": 1}, "vault": {"_count": 1}, "combined": {"_count": 1}, "rough": {"_count": 1}, "earth": {"_count": 1}, "possession": {"_count": 1}, "heaving": {"_count": 1}, "outer": {"_count": 1}, "marble": {"_count": 1}, "Lestranges": {"_count": 2}, "into": {"_count": 1}, "crushing": {"_count": 1}, "mountains": {"_count": 1}, "bar": {"_count": 1}, "Hogs": {"_count": 1}, "underground": {"_count": 1}, "dust": {"_count": 1}, "labyrinth": {"_count": 1}, "aisle": {"_count": 1}, "bulwark": {"_count": 1}, "battle": {"_count": 1}, "earthy": {"_count": 1}, "thin": {"_count": 1}, "dusty": {"_count": 1}, "long": {"_count": 1}, "billowing": {"_count": 1}, "carriage": {"_count": 1}}, "bed": {"_count": 29, "": {"_count": 9}, "was": {"_count": 1}, "and": {"_count": 8}, "his": {"_count": 1}, "making": {"_count": 1}, "twitched": {"_count": 1}, "Seamus": {"_count": 1}, "he": {"_count": 1}, "rolled": {"_count": 1}, "but": {"_count": 1}, "thinking": {"_count": 1}, "wishing": {"_count": 1}, "yawning": {"_count": 1}, "in": {"_count": 1}}, "an": {"_count": 29, "uneasy": {"_count": 3}, "icy": {"_count": 1}, "explanation": {"_count": 1}, "empty": {"_count": 4}, "armchair": {"_count": 6}, "awful": {"_count": 1}, "explosion": {"_count": 1}, "old": {"_count": 3}, "elegant": {"_count": 1}, "animal": {"_count": 1}, "unpleasant": {"_count": 1}, "invisible": {"_count": 1}, "enchanted": {"_count": 1}, "inside": {"_count": 2}, "open": {"_count": 1}, "ambush": {"_count": 1}}, "darkness": {"_count": 7, "": {"_count": 5}, "those": {"_count": 1}, "he": {"_count": 1}}, "life": {"_count": 17, "with": {"_count": 1}, "in": {"_count": 6}, "all": {"_count": 2}, "": {"_count": 2}, "at": {"_count": 1}, "there": {"_count": 1}, "It": {"_count": 1}, "casting": {"_count": 1}, "on": {"_count": 1}, "its": {"_count": 1}}, "their": {"_count": 51, "living": {"_count": 1}, "boat": {"_count": 1}, "scarlet": {"_count": 3}, "hearts": {"_count": 1}, "floor": {"_count": 1}, "cage": {"_count": 2}, "classes": {"_count": 2}, "large": {"_count": 1}, "plates": {"_count": 1}, "pudding": {"_count": 1}, "sleeping": {"_count": 2}, "crystal": {"_count": 1}, "own": {"_count": 1}, "ears": {"_count": 2}, "usual": {"_count": 1}, "bunks": {"_count": 1}, "school": {"_count": 3}, "cars": {"_count": 1}, "pajamas": {"_count": 1}, "classroom": {"_count": 1}, "dress": {"_count": 1}, "hands": {"_count": 1}, "midst": {"_count": 3}, "seats": {"_count": 1}, "harness": {"_count": 1}, "bedroom": {"_count": 1}, "sandwiches": {"_count": 1}, "open": {"_count": 1}, "eyes": {"_count": 2}, "neighbors": {"_count": 1}, "Defense": {"_count": 1}, "holders": {"_count": 1}, "cushions": {"_count": 1}, "hoop": {"_count": 1}, "dark": {"_count": 1}, "skulls": {"_count": 1}, "booth": {"_count": 1}, "previous": {"_count": 1}, "great": {"_count": 1}, "fanged": {"_count": 1}}, "terrible": {"_count": 3, "trouble": {"_count": 2}, "being": {"_count": 1}}, "tears": {"_count": 21, "and": {"_count": 3}, "": {"_count": 13}, "very": {"_count": 1}, "which": {"_count": 1}, "during": {"_count": 1}, "at": {"_count": 1}, "over": {"_count": 1}}, "Dudleys": {"_count": 1, "second": {"_count": 1}}, "Uncle": {"_count": 3, "Vernons": {"_count": 3}}, "pieces": {"_count": 5, "before": {"_count": 1}, "along": {"_count": 1}, "": {"_count": 2}, "against": {"_count": 1}}, "its": {"_count": 17, "frame": {"_count": 1}, "box": {"_count": 1}, "deep": {"_count": 1}, "pocket": {"_count": 1}, "usual": {"_count": 1}, "face": {"_count": 2}, "crystalline": {"_count": 1}, "handle": {"_count": 1}, "depths": {"_count": 3}, "leather": {"_count": 1}, "pool": {"_count": 1}, "eyes": {"_count": 1}, "breast": {"_count": 1}, "fellows": {"_count": 1}}, "rats": {"_count": 1, "": {"_count": 1}}, "warty": {"_count": 1, "toads": {"_count": 1}}, "solid": {"_count": 2, "wall": {"_count": 1}, "hedge": {"_count": 1}}, "getting": {"_count": 1, "me": {"_count": 1}}, "Paddington": {"_count": 1, "station": {"_count": 1}}, "sitting": {"_count": 1, "next": {"_count": 1}}, "Diagon": {"_count": 6, "Alley": {"_count": 6}}, "it": {"_count": 46, "thats": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 9}, "they": {"_count": 1}, "light": {"_count": 1}, "": {"_count": 15}, "shouted": {"_count": 1}, "burying": {"_count": 1}, "either": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 2}, "with": {"_count": 3}, "too": {"_count": 1}, "expecting": {"_count": 1}, "Dean": {"_count": 1}, "quite": {"_count": 1}, "somehow": {"_count": 1}, "youll": {"_count": 1}, "Harry": {"_count": 1}, "Bogrod": {"_count": 1}, "though": {"_count": 1}}, "that": {"_count": 10, "barrier": {"_count": 1}, "vulturetopped": {"_count": 1}, "spew": {"_count": 1}, "kitchen": {"_count": 1}, "maze": {"_count": 1}, "alleyway": {"_count": 1}, "Vanishing": {"_count": 1}, "feeling": {"_count": 1}, "diary": {"_count": 1}, "vault": {"_count": 1}}, "sight": {"_count": 13, "": {"_count": 3}, "and": {"_count": 5}, "through": {"_count": 1}, "with": {"_count": 2}, "almost": {"_count": 1}, "as": {"_count": 1}}, "Goyle": {"_count": 1, "s": {"_count": 1}}, "your": {"_count": 19, "Houses": {"_count": 1}, "fabulous": {"_count": 1}, "possession": {"_count": 1}, "department": {"_count": 1}, "head": {"_count": 1}, "bathroom": {"_count": 1}, "office": {"_count": 2}, "mind": {"_count": 2}, "broom": {"_count": 1}, "house": {"_count": 1}, "sitting": {"_count": 1}, "ownership": {"_count": 2}, "old": {"_count": 1}, "robes": {"_count": 1}, "bunk": {"_count": 1}, "tomb": {"_count": 1}}, "Houses": {"_count": 4, "": {"_count": 1}, "by": {"_count": 1}, "took": {"_count": 1}, "Because": {"_count": 1}}, "line": {"_count": 2, "behind": {"_count": 1}, "until": {"_count": 1}}, "applause": {"_count": 8, "as": {"_count": 1}, "": {"_count": 3}, "all": {"_count": 1}, "too": {"_count": 1}, "again": {"_count": 1}, "once": {"_count": 1}}, "something": {"_count": 10, "else": {"_count": 1}, "very": {"_count": 2}, "sinister": {"_count": 1}, "heavy": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}, "that": {"_count": 1}, "like": {"_count": 1}, "worth": {"_count": 1}}, "needles": {"_count": 1, "and": {"_count": 1}}, "Harrys": {"_count": 52, "eyes": {"_count": 4}, "legs": {"_count": 1}, "room": {"_count": 1}, "finger": {"_count": 1}, "lap": {"_count": 6}, "arms": {"_count": 3}, "face": {"_count": 8}, "stomach": {"_count": 1}, "hands": {"_count": 2}, "teacup": {"_count": 1}, "determined": {"_count": 1}, "": {"_count": 3}, "arm": {"_count": 1}, "mouth": {"_count": 2}, "hand": {"_count": 2}, "and": {"_count": 1}, "ear": {"_count": 2}, "shoulder": {"_count": 1}, "mind": {"_count": 3}, "who": {"_count": 1}, "foot": {"_count": 1}, "he": {"_count": 1}, "summer": {"_count": 1}, "palm": {"_count": 1}, "brain": {"_count": 1}, "head": {"_count": 1}, "flesh": {"_count": 1}}, "words": {"_count": 4, "": {"_count": 2}, "so": {"_count": 1}, "that": {"_count": 1}}, "animals": {"_count": 3, "for": {"_count": 1}, "and": {"_count": 2}}, "those": {"_count": 4, "cold": {"_count": 1}, "bright": {"_count": 1}, "blue": {"_count": 1}, "behind": {"_count": 1}}, "pairs": {"_count": 10, "and": {"_count": 3}, "to": {"_count": 1}, "": {"_count": 4}, "Harry": {"_count": 1}, "please": {"_count": 1}}, "laughter": {"_count": 1, "": {"_count": 1}}, "trouble": {"_count": 12, "": {"_count": 4}, "and": {"_count": 1}, "too": {"_count": 1}, "one": {"_count": 1}, "because": {"_count": 1}, "for": {"_count": 1}, "now": {"_count": 1}, "anymore": {"_count": 1}, "though": {"_count": 1}}, "hunched": {"_count": 1, "black": {"_count": 1}}, "Filch": {"_count": 1, "or": {"_count": 1}}, "armchairs": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "Harry": {"_count": 4, "as": {"_count": 1}, "like": {"_count": 1}, "just": {"_count": 1}, "who": {"_count": 1}}, "second": {"_count": 1, "place": {"_count": 1}}, "Hagrids": {"_count": 4, "jacket": {"_count": 1}, "hut": {"_count": 1}, "cabin": {"_count": 1}, "house": {"_count": 1}}, "material": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 14, "the": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 2}, "Filch": {"_count": 1}, "by": {"_count": 1}, "flew": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "I": {"_count": 1}, "for": {"_count": 1}, "dispelling": {"_count": 1}}, "you": {"_count": 7, "": {"_count": 5}, "all": {"_count": 1}, "lately": {"_count": 1}}, "pure": {"_count": 1, "gold": {"_count": 1}}, "Snape": {"_count": 5, "wherever": {"_count": 1}, "s": {"_count": 3}, "": {"_count": 1}}, "Dumbledores": {"_count": 7, "smiling": {"_count": 1}, "blue": {"_count": 1}, "face": {"_count": 1}, "corridor": {"_count": 1}, "lined": {"_count": 1}, "mouth": {"_count": 1}, "grave": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 2}}, "view": {"_count": 24, "hiding": {"_count": 1}, "above": {"_count": 1}, "her": {"_count": 1}, "seated": {"_count": 1}, "across": {"_count": 1}, "": {"_count": 6}, "closely": {"_count": 1}, "standing": {"_count": 1}, "dragging": {"_count": 1}, "a": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 2}, "Dumbledores": {"_count": 1}, "upon": {"_count": 1}, "will": {"_count": 1}, "shouting": {"_count": 1}, "Harry": {"_count": 1}, "both": {"_count": 1}}, "blackness": {"_count": 1, "down": {"_count": 1}}, "our": {"_count": 9, "delicious": {"_count": 1}, "hollow": {"_count": 1}, "midst": {"_count": 1}, "compartment": {"_count": 1}, "own": {"_count": 1}, "justice": {"_count": 1}, "forest": {"_count": 1}, "schedules": {"_count": 1}, "headquarters": {"_count": 1}}, "account": {"_count": 3, "": {"_count": 3}}, "platform": {"_count": 1, "nine": {"_count": 1}}, "town": {"_count": 1, "to": {"_count": 1}}, "dung": {"_count": 1, "beetles": {"_count": 1}}, "wails": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 75, "empty": {"_count": 1}, "bag": {"_count": 11}, "": {"_count": 3}, "glass": {"_count": 1}, "cage": {"_count": 2}, "either": {"_count": 1}, "office": {"_count": 4}, "homework": {"_count": 1}, "arms": {"_count": 2}, "cloak": {"_count": 1}, "neighbors": {"_count": 1}, "crocodile": {"_count": 1}, "mouth": {"_count": 1}, "handbag": {"_count": 2}, "skirt": {"_count": 1}, "handkerchief": {"_count": 1}, "schoolbag": {"_count": 1}, "stride": {"_count": 1}, "flesh": {"_count": 1}, "flyaway": {"_count": 1}, "face": {"_count": 1}, "eye": {"_count": 1}, "horrible": {"_count": 1}, "ink": {"_count": 1}, "armchair": {"_count": 1}, "lap": {"_count": 3}, "gillywater": {"_count": 1}, "seat": {"_count": 1}, "furiously": {"_count": 1}, "hands": {"_count": 3}, "hand": {"_count": 3}, "pillows": {"_count": 1}, "chair": {"_count": 1}, "tears": {"_count": 1}, "cereal": {"_count": 1}, "compartment": {"_count": 1}, "shoulder": {"_count": 1}, "cauldron": {"_count": 1}, "bottle": {"_count": 1}, "toilet": {"_count": 1}, "fingers": {"_count": 1}, "hair": {"_count": 1}, "pocket": {"_count": 1}, "eyes": {"_count": 2}, "room": {"_count": 1}, "sleep": {"_count": 1}, "pinched": {"_count": 1}, "home": {"_count": 1}, "bed": {"_count": 1}, "intense": {"_count": 1}}, "bright": {"_count": 1, "sunlight": {"_count": 1}}, "Gringotts": {"_count": 5, "Harry": {"_count": 1}, "than": {"_count": 1}, "": {"_count": 3}}, "Flourish": {"_count": 1, "and": {"_count": 1}}, "Ginnys": {"_count": 1, "cauldron": {"_count": 1}}, "one": {"_count": 14, "small": {"_count": 1}, "of": {"_count": 12}, "another": {"_count": 1}}, "Ron": {"_count": 5, "just": {"_count": 1}, "who": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "told": {"_count": 1}}, "chairs": {"_count": 3, "by": {"_count": 1}, "outside": {"_count": 1}, "all": {"_count": 1}}, "Hermiones": {"_count": 5, "jug": {"_count": 1}, "hands": {"_count": 1}, "ear": {"_count": 1}, "arms": {"_count": 1}, "throat": {"_count": 1}}, "flames": {"_count": 6, "and": {"_count": 2}, "": {"_count": 4}}, "ashes": {"_count": 1, "": {"_count": 1}}, "practice": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 1, "some": {"_count": 1}}, "muddy": {"_count": 1, "streams": {"_count": 1}}, "lanterns": {"_count": 1, "large": {"_count": 1}}, "anguished": {"_count": 1, "sobs": {"_count": 1}}, "action": {"_count": 7, "and": {"_count": 1}, "with": {"_count": 2}, "": {"_count": 3}, "that": {"_count": 1}}, "somebody": {"_count": 3, "else": {"_count": 1}, "elses": {"_count": 2}}, "three": {"_count": 4, "of": {"_count": 2}, "glasses": {"_count": 1}, "chairs": {"_count": 1}}, "other": {"_count": 3, "people": {"_count": 1}, "peoples": {"_count": 1}, "objects": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 5}, "?": {"_count": 2}, "!": {"_count": 1}}, "Snapes": {"_count": 13, "private": {"_count": 1}, "office": {"_count": 6}, "who": {"_count": 1}, "dark": {"_count": 1}, "memories": {"_count": 1}, "black": {"_count": 1}, "pale": {"_count": 1}, "ferocious": {"_count": 1}}, "any": {"_count": 3, "more": {"_count": 1}, "Death": {"_count": 1}, "of": {"_count": 1}}, "what": {"_count": 11, "he": {"_count": 2}, "was": {"_count": 3}, "looked": {"_count": 1}, "resembled": {"_count": 1}, "seemed": {"_count": 2}, "might": {"_count": 1}, "appeared": {"_count": 1}}, "dinner": {"_count": 1, "": {"_count": 1}}, "smithereens": {"_count": 1, "": {"_count": 1}}, "song": {"_count": 4, "Oh": {"_count": 1}, "": {"_count": 1}, "A": {"_count": 1}, "In": {"_count": 1}}, "flame": {"_count": 4, "when": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "real": {"_count": 1, "panic": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "ourselves": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 14, "of": {"_count": 2}, "others": {"_count": 8}, "other": {"_count": 3}, "one": {"_count": 1}}, "Crabbe": {"_count": 2, "and": {"_count": 1}, "s": {"_count": 1}}, "Goyles": {"_count": 2, "thick": {"_count": 1}, "take": {"_count": 1}}, "disrepute": {"_count": 1, "Mr": {"_count": 1}}, "himself": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "class": {"_count": 3, "": {"_count": 2}, "they": {"_count": 1}}, "focus": {"_count": 6, "": {"_count": 3}, "again": {"_count": 1}, "grinning": {"_count": 1}, "when": {"_count": 1}}, "bloom": {"_count": 2, "in": {"_count": 1}, "before": {"_count": 1}}, "glowing": {"_count": 1, "ash": {"_count": 1}}, "slippers": {"_count": 1, "": {"_count": 1}}, "boxes": {"_count": 1, "on": {"_count": 1}}, "place": {"_count": 9, "": {"_count": 5}, "a": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "fell": {"_count": 1}}, "Mrs": {"_count": 2, "Weasleys": {"_count": 1}, "Weasley": {"_count": 1}}, "Dumbledore": {"_count": 6, "s": {"_count": 5}, "keeping": {"_count": 1}}, "innocent": {"_count": 1, "hands": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoys": {"_count": 1}}, "next": {"_count": 1, "doors": {"_count": 1}}, "Aunt": {"_count": 1, "Marges": {"_count": 1}}, "Stans": {"_count": 1, "hand": {"_count": 1}}, "position": {"_count": 4, "once": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "Muggle": {"_count": 1, "London": {"_count": 1}}, "several": {"_count": 1, "people": {"_count": 1}}, "Rons": {"_count": 9, "hand": {"_count": 3}, "drink": {"_count": 1}, "arms": {"_count": 2}, "glass": {"_count": 1}, "hands": {"_count": 2}}, "Hogwarts": {"_count": 11, "": {"_count": 4}, "as": {"_count": 1}, "at": {"_count": 1}, "just": {"_count": 1}, "uniforms": {"_count": 1}, "through": {"_count": 1}, "these": {"_count": 1}, "said": {"_count": 1}}, "total": {"_count": 2, "darkness": {"_count": 2}}, "herself": {"_count": 1, "with": {"_count": 1}}, "exactly": {"_count": 1, "equal": {"_count": 1}}, "Nevilles": {"_count": 3, "potion": {"_count": 1}, "chest": {"_count": 1}, "hand": {"_count": 1}}, "half": {"_count": 2, "a": {"_count": 1}, "of": {"_count": 1}}, "Hogsmeade": {"_count": 19, "with": {"_count": 2}, "": {"_count": 4}, "said": {"_count": 1}, "it": {"_count": 1}, "again": {"_count": 2}, "without": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "for": {"_count": 1}, "despite": {"_count": 1}}, "every": {"_count": 5, "face": {"_count": 1}, "corner": {"_count": 2}, "Orderconnected": {"_count": 1}, "nook": {"_count": 1}}, "dreams": {"_count": 1, "full": {"_count": 1}}, "bogs": {"_count": 1, "said": {"_count": 1}}, "December": {"_count": 1, "": {"_count": 1}}, "Honeydukes": {"_count": 4, "with": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}}, "hiding": {"_count": 13, "": {"_count": 4}, "himself": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 1}, "save": {"_count": 1}, "by": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "Blacks": {"_count": 2, "hands": {"_count": 1}, "robes": {"_count": 1}}, "Quality": {"_count": 1, "Quidditch": {"_count": 1}}, "February": {"_count": 1, "with": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "McGonagalls": {"_count": 1}, "Flitwicks": {"_count": 1}}, "Weasley": {"_count": 1, "apparently": {"_count": 1}}, "telling": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 2}}, "silent": {"_count": 2, "giggles": {"_count": 2}}, "concentrating": {"_count": 1, "while": {"_count": 1}}, "sinking": {"_count": 1, "waisthigh": {"_count": 1}}, "this": {"_count": 8, "place": {"_count": 1}, "school": {"_count": 1}, "tournament": {"_count": 1}, "engagement": {"_count": 1}, "hole": {"_count": 1}, "mulch": {"_count": 1}, "he": {"_count": 1}, "state": {"_count": 1}}, "such": {"_count": 4, "large": {"_count": 1}, "danger": {"_count": 1}, "a": {"_count": 2}}, "becoming": {"_count": 1, "Animagi": {"_count": 1}}, "them": {"_count": 7, "": {"_count": 5}, "and": {"_count": 1}, "it": {"_count": 1}}, "Gryffindor": {"_count": 3, "Tower": {"_count": 2}, "": {"_count": 1}}, "old": {"_count": 1, "school": {"_count": 1}}, "clawed": {"_count": 1, "paws": {"_count": 1}}, "Fudges": {"_count": 1, "face": {"_count": 1}}, "speech": {"_count": 4, "at": {"_count": 1}, "": {"_count": 3}}, "Buckbeaks": {"_count": 1, "fierce": {"_count": 1}}, "Kings": {"_count": 1, "Cross": {"_count": 1}}, "disrepair": {"_count": 1, "": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "clearer": {"_count": 1, "focus": {"_count": 1}}, "bats": {"_count": 1, "if": {"_count": 1}}, "quarters": {"_count": 2, "her": {"_count": 1}, "biggest": {"_count": 1}}, "which": {"_count": 16, "Mrs": {"_count": 1}, "Mr": {"_count": 1}, "he": {"_count": 6}, "she": {"_count": 2}, "his": {"_count": 1}, "dark": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 2}, "James": {"_count": 1}}, "conflict": {"_count": 1, "": {"_count": 1}}, "Dudley": {"_count": 1, "who": {"_count": 1}}, "identical": {"_count": 1, "evil": {"_count": 1}}, "bowls": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 9, "smaller": {"_count": 1}, "piles": {"_count": 2}, "bunches": {"_count": 1}, "snakes": {"_count": 1}, "": {"_count": 1}, "enormous": {"_count": 1}, "lifts": {"_count": 1}, "again": {"_count": 1}}, "Morans": {"_count": 1, "path": {"_count": 1}}, "sharp": {"_count": 2, "cruelbeaked": {"_count": 1}, "relief": {"_count": 1}}, "screams": {"_count": 1, "of": {"_count": 1}}, "pajamas": {"_count": 1, "and": {"_count": 1}}, "actual": {"_count": 1, "dreams": {"_count": 1}}, "grotesque": {"_count": 1, "shapes": {"_count": 1}}, "terrified": {"_count": 1, "sobs": {"_count": 1}}, "my": {"_count": 19, "robes": {"_count": 1}, "dress": {"_count": 1}, "office": {"_count": 4}, "masters": {"_count": 2}, "mind": {"_count": 1}, "waiting": {"_count": 1}, "N": {"_count": 3}, "old": {"_count": 1}, "room": {"_count": 1}, "protesting": {"_count": 1}, "school": {"_count": 1}, "head": {"_count": 1}, "vault": {"_count": 1}}, "Mr": {"_count": 3, "Weasleys": {"_count": 2}, "Diggorys": {"_count": 1}}, "work": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}}, "London": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "making": {"_count": 2, "them": {"_count": 1}, "up": {"_count": 1}}, "believing": {"_count": 3, "he": {"_count": 1}, "that": {"_count": 2}}, "fresh": {"_count": 1, "embarrassment": {"_count": 1}}, "some": {"_count": 2, "ink": {"_count": 1}, "form": {"_count": 1}}, "hysterics": {"_count": 1, "": {"_count": 1}}, "lines": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "lightly": {"_count": 1, "": {"_count": 1}}, "fists": {"_count": 4, "": {"_count": 2}, "she": {"_count": 1}, "as": {"_count": 1}}, "forgetting": {"_count": 1, "that": {"_count": 1}}, "accepting": {"_count": 1, "his": {"_count": 1}}, "midair": {"_count": 1, "so": {"_count": 1}}, "shadow": {"_count": 2, "wherever": {"_count": 1}, "is": {"_count": 1}}, "greater": {"_count": 1, "prominence": {"_count": 1}}, "long": {"_count": 1, "sickly": {"_count": 1}}, "thoughtful": {"_count": 1, "silence": {"_count": 1}}, "silence": {"_count": 7, "without": {"_count": 1}, "still": {"_count": 1}, "": {"_count": 5}}, "Azkaban": {"_count": 3, "in": {"_count": 2}, "we": {"_count": 1}}, "Voldemort": {"_count": 1, "is": {"_count": 1}}, "greenhouse": {"_count": 2, "three": {"_count": 2}}, "lunch": {"_count": 1, "": {"_count": 1}}, "cubicles": {"_count": 2, "he": {"_count": 1}, "which": {"_count": 1}}, "rebellion": {"_count": 1, "": {"_count": 1}}, "pillowlined": {"_count": 1, "boxes": {"_count": 1}}, "Hagrid": {"_count": 2, "s": {"_count": 1}, "and": {"_count": 1}}, "giving": {"_count": 3, "Dobby": {"_count": 1}, "me": {"_count": 1}, "Voldemort": {"_count": 1}}, "Dobbys": {"_count": 1, "immense": {"_count": 1}}, "guinea": {"_count": 1, "pigs": {"_count": 1}}, "feather": {"_count": 1, "all": {"_count": 1}}, "Beauxbatons": {"_count": 1, "e": {"_count": 1}}, "existence": {"_count": 2, "along": {"_count": 1}, "": {"_count": 1}}, "school": {"_count": 2, "anymore": {"_count": 1}, "": {"_count": 1}}, "Bagmans": {"_count": 1, "round": {"_count": 1}}, "anyone": {"_count": 1, "he": {"_count": 1}}, "living": {"_count": 1, "replicas": {"_count": 1}}, "Moodys": {"_count": 2, "hand": {"_count": 1}, "heavily": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "transports": {"_count": 1, "of": {"_count": 1}}, "ringlets": {"_count": 1, "": {"_count": 1}}, "dry": {"_count": 1, "clothes": {"_count": 1}}, "submission": {"_count": 1, "before": {"_count": 1}}, "Gladrags": {"_count": 1, "Wizardwear": {"_count": 1}}, "private": {"_count": 1, "conversations": {"_count": 1}}, "to": {"_count": 1, "practice": {"_count": 1}}, "Flitwicks": {"_count": 1, "cupboard": {"_count": 1}}, "helping": {"_count": 1, "Harry": {"_count": 1}}, "space": {"_count": 6, "": {"_count": 4}, "aching": {"_count": 1}, "for": {"_count": 1}}, "difficulty": {"_count": 1, "and": {"_count": 1}}, "dead": {"_count": 1, "ends": {"_count": 1}}, "Cedrics": {"_count": 2, "": {"_count": 1}, "face": {"_count": 1}}, "petrified": {"_count": 1, "sobs": {"_count": 1}}, "powder": {"_count": 1, "": {"_count": 1}}, "Voldemorts": {"_count": 9, "wand": {"_count": 1}, "mind": {"_count": 6}, "world": {"_count": 1}, "face": {"_count": 1}}, "grass": {"_count": 1, "the": {"_count": 1}}, "sharper": {"_count": 1, "focus": {"_count": 1}}, "showing": {"_count": 1, "you": {"_count": 1}}, "Georges": {"_count": 3, "hands": {"_count": 1}, "palm": {"_count": 1}, "hand": {"_count": 1}}, "thin": {"_count": 6, "air": {"_count": 6}}, "Magnolia": {"_count": 3, "Crescent": {"_count": 2}, "Road": {"_count": 1}}, "step": {"_count": 2, "beside": {"_count": 2}}, "silver": {"_count": 3, "mist": {"_count": 3}}, "Privet": {"_count": 1, "Drive": {"_count": 1}}, "pretending": {"_count": 1, "it": {"_count": 1}}, "ash": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "Siriuss": {"_count": 2, "house": {"_count": 1}, "shoes": {"_count": 1}}, "nothing": {"_count": 1, "insignificant": {"_count": 1}}, "Bills": {"_count": 2, "heavily": {"_count": 1}, "spreadeagled": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "following": {"_count": 1, "him": {"_count": 1}}, "operation": {"_count": 4, "very": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "furious": {"_count": 1, "tears": {"_count": 1}}, "another": {"_count": 3, "passage": {"_count": 1}, "channel": {"_count": 1}, "Horcrux": {"_count": 1}}, "offenses": {"_count": 1, "committed": {"_count": 1}}, "why": {"_count": 1, "two": {"_count": 1}}, "urgent": {"_count": 1, "whispered": {"_count": 1}}, "madness": {"_count": 1, "": {"_count": 1}}, "Ginny": {"_count": 3, "and": {"_count": 1}, "who": {"_count": 1}, "Arnold": {"_count": 1}}, "open": {"_count": 2, "country": {"_count": 2}}, "kumquats": {"_count": 1, "": {"_count": 1}}, "motion": {"_count": 1, "": {"_count": 1}}, "Hufflepuff": {"_count": 1, "and": {"_count": 1}}, "Peeves": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 3, "s": {"_count": 2}, "who": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "Malfoys": {"_count": 2, "hands": {"_count": 1}, "stomach": {"_count": 1}}, "eighths": {"_count": 1, "git": {"_count": 1}}, "good": {"_count": 1, "people": {"_count": 1}}, "Umbridges": {"_count": 5, "face": {"_count": 1}, "office": {"_count": 4}}, "service": {"_count": 1, "sir": {"_count": 1}}, "stone": {"_count": 2, "behind": {"_count": 1}, "": {"_count": 1}}, "light": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "liquid": {"_count": 1, "wax": {"_count": 1}}, "jeans": {"_count": 1, "and": {"_count": 1}}, "harm": {"_count": 1, "": {"_count": 1}}, "shadows": {"_count": 1, "": {"_count": 1}}, "nothingness": {"_count": 6, "": {"_count": 3}, "moving": {"_count": 1}, "spinning": {"_count": 1}, "her": {"_count": 1}}, "insanity": {"_count": 2, "by": {"_count": 2}}, "oblivion": {"_count": 1, "muttered": {"_count": 1}}, "Lupins": {"_count": 3, "prematurely": {"_count": 1}, "arms": {"_count": 1}, "livid": {"_count": 1}}, "Occlumency": {"_count": 1, "had": {"_count": 1}}, "hysterical": {"_count": 1, "sobs": {"_count": 1}}, "relief": {"_count": 1, "by": {"_count": 1}}, "neighboring": {"_count": 2, "frames": {"_count": 1}, "paintings": {"_count": 1}}, "effect": {"_count": 2, "until": {"_count": 1}, "": {"_count": 1}}, "sixth": {"_count": 1, "and": {"_count": 1}}, "emeraldgreen": {"_count": 2, "flames": {"_count": 1}, "flame": {"_count": 1}}, "Umbridge": {"_count": 1, "s": {"_count": 1}}, "fires": {"_count": 1, "or": {"_count": 1}}, "servitude": {"_count": 1, "to": {"_count": 1}}, "Montagues": {"_count": 1, "open": {"_count": 1}}, "more": {"_count": 2, "protests": {"_count": 1}, "dim": {"_count": 1}}, "things": {"_count": 1, "toppling": {"_count": 1}}, "going": {"_count": 2, "there": {"_count": 2}}, "Ravenclaws": {"_count": 1, "glass": {"_count": 1}}, "catching": {"_count": 1, "the": {"_count": 1}}, "Bellatrixs": {"_count": 1, "glowering": {"_count": 1}}, "detail": {"_count": 1, "about": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "rubber": {"_count": 1, "chickens": {"_count": 1}}, "Knockturn": {"_count": 1, "Alley": {"_count": 1}}, "windows": {"_count": 1, "as": {"_count": 1}}, "Borgin": {"_count": 1, "and": {"_count": 1}}, "weak": {"_count": 1, "clear": {"_count": 1}}, "Gregory": {"_count": 1, "Goyles": {"_count": 1}}, "porridge": {"_count": 1, "and": {"_count": 1}}, "cauldrons": {"_count": 1, "": {"_count": 1}}, "thickets": {"_count": 1, "of": {"_count": 1}}, "Ogdens": {"_count": 1, "face": {"_count": 1}}, "custody": {"_count": 2, "late": {"_count": 1}, "and": {"_count": 1}}, "groups": {"_count": 1, "of": {"_count": 1}}, "Sanguinis": {"_count": 1, "hand": {"_count": 1}}, "conversation": {"_count": 1, "": {"_count": 1}}, "jail": {"_count": 1, "and": {"_count": 1}}, "speaking": {"_count": 1, "after": {"_count": 1}}, "Morfins": {"_count": 1, "mind": {"_count": 1}}, "ten": {"_count": 1, "different": {"_count": 1}}, "Slughorn": {"_count": 3, "s": {"_count": 2}, "who": {"_count": 1}}, "Lunas": {"_count": 2, "megaphone": {"_count": 1}, "vacant": {"_count": 1}}, "overdrive": {"_count": 1, "rapidly": {"_count": 1}}, "Kreachers": {"_count": 1, "mouth": {"_count": 1}}, "tight": {"_count": 1, "satin": {"_count": 1}}, "girls": {"_count": 2, "": {"_count": 2}}, "up": {"_count": 1, "there": {"_count": 1}}, "sobs": {"_count": 1, "again": {"_count": 1}}, "seven": {"_count": 3, "pieces": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "whose": {"_count": 1, "hands": {"_count": 1}}, "Lord": {"_count": 1, "Voldemorts": {"_count": 1}}, "wine": {"_count": 1, "her": {"_count": 1}}, "bathrooms": {"_count": 1, "between": {"_count": 1}}, "June": {"_count": 1, "for": {"_count": 1}}, "maintaining": {"_count": 1, "the": {"_count": 1}}, "us": {"_count": 1, "almost": {"_count": 1}}, "seats": {"_count": 1, "at": {"_count": 1}}, "both": {"_count": 1, "Ginny": {"_count": 1}}, "learned": {"_count": 1, "publications": {"_count": 1}}, "being": {"_count": 3, "as": {"_count": 1}, "in": {"_count": 1}, "while": {"_count": 1}}, "scarletfaced": {"_count": 1, "silence": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "hands": {"_count": 1, "Hermione": {"_count": 1}}, "inches": {"_count": 1, "of": {"_count": 1}}, "scraps": {"_count": 1, "of": {"_count": 1}}, "Doges": {"_count": 1, "earnest": {"_count": 1}}, "raucous": {"_count": 1, "giggles": {"_count": 1}}, "these": {"_count": 1, "letters": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "pristine": {"_count": 1, "bowls": {"_count": 1}}, "adjoining": {"_count": 1, "cubicles": {"_count": 1}}, "neat": {"_count": 1, "stacks": {"_count": 1}}, "fog": {"_count": 1, "": {"_count": 1}}, "lungs": {"_count": 1, "that": {"_count": 1}}, "Vol": {"_count": 1, "Dont": {"_count": 1}}, "sleep": {"_count": 1, "once": {"_count": 1}}, "exile": {"_count": 1, "and": {"_count": 1}}, "weeks": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "yours": {"_count": 1, "": {"_count": 1}}, "thinking": {"_count": 1, "that": {"_count": 1}}, "folds": {"_count": 1, "of": {"_count": 1}}, "procuring": {"_count": 1, "Veritaserum": {"_count": 1}}, "question": {"_count": 1, "everything": {"_count": 1}}, "Riddles": {"_count": 1, "eyes": {"_count": 1}}, "perspective": {"_count": 1, "doesnt": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "listlessness": {"_count": 1, "galvanized": {"_count": 1}}, "Wizarding": {"_count": 1, "territory": {"_count": 1}}, "isnt": {"_count": 1, "empty": {"_count": 1}}, "Bellatrix": {"_count": 1, "before": {"_count": 1}}, "gentle": {"_count": 1, "trots": {"_count": 1}}, "details": {"_count": 1, "about": {"_count": 1}}, "even": {"_count": 1, "greater": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "icy": {"_count": 1, "water": {"_count": 1}}, "pain": {"_count": 1, "and": {"_count": 1}}, "sunlight": {"_count": 1, "and": {"_count": 1}}, "Deaths": {"_count": 1, "welcoming": {"_count": 1}}, "surroundings": {"_count": 1, "": {"_count": 1}}, "realms": {"_count": 1, "of": {"_count": 1}}, "subservience": {"_count": 1, "": {"_count": 1}}, "red": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "Herbology": {"_count": 1, "and": {"_count": 1}}}, "high": {"_count": 246, "chair": {"_count": 2, "": {"_count": 1}, "behind": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "waves": {"_count": 1, "splattered": {"_count": 1}}, "cold": {"_count": 18, "cruel": {"_count": 1}, "laugh": {"_count": 1}, "voice": {"_count": 13}, "mirthless": {"_count": 1}, "merciless": {"_count": 1}, "and": {"_count": 1}}, "stools": {"_count": 2, "behind": {"_count": 1}, "serving": {"_count": 1}}, "security": {"_count": 2, "vault": {"_count": 1}, "prisoners": {"_count": 1}}, "mountain": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 4, "make": {"_count": 1}, "reach": {"_count": 1}, "Aragog": {"_count": 1}, "cast": {"_count": 1}}, "above": {"_count": 19, "the": {"_count": 4}, "flashing": {"_count": 1}, "them": {"_count": 6}, "him": {"_count": 4}, "Lynch": {"_count": 1}, "Krum": {"_count": 1}, "his": {"_count": 2}}, "and": {"_count": 11, "cold": {"_count": 2}, "so": {"_count": 1}, "her": {"_count": 1}, "went": {"_count": 1}, "observed": {"_count": 1}, "wide": {"_count": 1}, "saw": {"_count": 2}, "they": {"_count": 1}, "there": {"_count": 1}}, "into": {"_count": 11, "the": {"_count": 11}}, "or": {"_count": 1, "always": {"_count": 1}}, "windows": {"_count": 9, "": {"_count": 5}, "looking": {"_count": 1}, "onto": {"_count": 1}, "and": {"_count": 1}, "were": {"_count": 1}}, "enough": {"_count": 5, "to": {"_count": 4}, "for": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "in": {"_count": 15, "the": {"_count": 9}, "front": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 2}, "celebration": {"_count": 1}}, "petrified": {"_count": 1, "scream": {"_count": 1}}, "high": {"_count": 3, "up": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}}, "up": {"_count": 2, "into": {"_count": 1}, "a": {"_count": 1}}, "unbroken": {"_count": 1, "earsplitting": {"_count": 1}}, "as": {"_count": 6, "the": {"_count": 3}, "you": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}}, "voice": {"_count": 9, "cackled": {"_count": 1}, "\u2018Oh": {"_count": 1}, "spoke": {"_count": 2}, "": {"_count": 4}, "shriek": {"_count": 1}}, "he": {"_count": 1, "pointed": {"_count": 1}}, "chamber": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 4, "what": {"_count": 3}, "pointed": {"_count": 1}}, "theyd": {"_count": 1, "never": {"_count": 1}}, "false": {"_count": 1, "laugh": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 2}, "a": {"_count": 1}, "her": {"_count": 1}, "clawed": {"_count": 1}}, "narrow": {"_count": 1, "windows": {"_count": 1}}, "astonishment": {"_count": 1, "": {"_count": 1}}, "curtains": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "Malfoy": {"_count": 1}}, "bookshelves": {"_count": 1, "Harry": {"_count": 1}}, "wind": {"_count": 3, "stopping": {"_count": 1}, "whipping": {"_count": 1}, "and": {"_count": 1}}, "over": {"_count": 5, "his": {"_count": 3}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "laugh": {"_count": 1, "again": {"_count": 1}}, "pillars": {"_count": 1, "and": {"_count": 1}}, "spirits": {"_count": 3, "ebbing": {"_count": 1}, "": {"_count": 1}, "seeing": {"_count": 1}}, "heels": {"_count": 2, "and": {"_count": 1}, "her": {"_count": 1}}, "pitched": {"_count": 7, "voice": {"_count": 1}, "squeak": {"_count": 1}, "laughter": {"_count": 2}, "and": {"_count": 1}, "terrified": {"_count": 1}, "whisper": {"_count": 1}}, "arc": {"_count": 1, "and": {"_count": 1}}, "opinion": {"_count": 1, "of": {"_count": 1}}, "its": {"_count": 2, "horny": {"_count": 1}, "head": {"_count": 1}}, "right": {"_count": 1, "opposite": {"_count": 1}}, "jinks": {"_count": 1, "sir": {"_count": 1}}, "a": {"_count": 1, "glint": {"_count": 1}}, "ranking": {"_count": 1, "Ministry": {"_count": 1}}, "dark": {"_count": 2, "glass": {"_count": 1}, "against": {"_count": 1}}, "that": {"_count": 4, "the": {"_count": 2}, "they": {"_count": 1}, "Hermione": {"_count": 1}}, "speed": {"_count": 1, "": {"_count": 1}}, "winds": {"_count": 1, "its": {"_count": 1}}, "ceilinged": {"_count": 1, "room": {"_count": 1}}, "collar": {"_count": 1, "which": {"_count": 1}}, "stone": {"_count": 1, "ceiling": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "it": {"_count": 1}}, "fence": {"_count": 1, "on": {"_count": 1}}, "goalposts": {"_count": 1, "apparently": {"_count": 1}}, "mountains": {"_count": 1, "see": {"_count": 1}}, "an": {"_count": 1, "keep": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "girlish": {"_count": 1, "voice": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "marks": {"_count": 2, "in": {"_count": 2}}, "skills": {"_count": 1, "in": {"_count": 1}}, "cheekbones": {"_count": 2, "and": {"_count": 2}}, "mullioned": {"_count": 1, "windows": {"_count": 1}}, "time": {"_count": 1, "your": {"_count": 1}}, "tangled": {"_count": 1, "hedgerows": {"_count": 1}}, "railings": {"_count": 1, "": {"_count": 1}}, "dudgeon": {"_count": 1, "and": {"_count": 1}}, "level": {"_count": 1, "of": {"_count": 1}}, "throughout": {"_count": 1, "the": {"_count": 1}}, "outcrop": {"_count": 1, "of": {"_count": 1}}, "tide": {"_count": 1, "": {"_count": 1}}, "neatly": {"_count": 1, "manicured": {"_count": 1}}, "hedge": {"_count": 1, "curved": {"_count": 1}}, "clear": {"_count": 4, "voice": {"_count": 3}, "and": {"_count": 1}}, "hippogriff": {"_count": 1, "because": {"_count": 1}}, "anticipation": {"_count": 1, "": {"_count": 1}}, "bun": {"_count": 1, "": {"_count": 1}}, "timbered": {"_count": 1, "gables": {"_count": 1}}, "it": {"_count": 2, "resembled": {"_count": 1}, "gave": {"_count": 1}}, "raised": {"_count": 1, "platform": {"_count": 1}}, "his": {"_count": 1, "arms": {"_count": 1}}, "vantage": {"_count": 1, "point": {"_count": 1}}, "hedges": {"_count": 2, "and": {"_count": 1}, "that": {"_count": 1}}, "walls": {"_count": 1, "of": {"_count": 1}}, "shelf": {"_count": 1, "amongst": {"_count": 1}}, "screams": {"_count": 1, "": {"_count": 1}}, "wroughtiron": {"_count": 1, "gates": {"_count": 1}}, "forehead": {"_count": 1, "and": {"_count": 1}}, "sparkling": {"_count": 1, "ceiling": {"_count": 1}}, "vaulted": {"_count": 1, "ceiling": {"_count": 1}}, "reedy": {"_count": 1, "voice": {"_count": 1}}}, "chair": {"_count": 280, "": {"_count": 60, ".": {"_count": 60}}, "and": {"_count": 36, "Aunt": {"_count": 1}, "pointing": {"_count": 1}, "said": {"_count": 1}, "slouched": {"_count": 1}, "followed": {"_count": 1}, "slumped": {"_count": 1}, "set": {"_count": 1}, "stared": {"_count": 1}, "across": {"_count": 1}, "glided": {"_count": 1}, "saw": {"_count": 1}, "surveyed": {"_count": 1}, "sat": {"_count": 2}, "staring": {"_count": 2}, "an": {"_count": 2}, "a": {"_count": 1}, "sank": {"_count": 1}, "when": {"_count": 1}, "walked": {"_count": 1}, "Harry": {"_count": 1}, "table": {"_count": 1}, "leaning": {"_count": 1}, "started": {"_count": 1}, "fell": {"_count": 1}, "ran": {"_count": 1}, "seated": {"_count": 1}, "then": {"_count": 1}, "her": {"_count": 1}, "reread": {"_count": 1}, "bound": {"_count": 1}, "boxes": {"_count": 1}, "goggling": {"_count": 1}, "Dumbledore": {"_count": 1}}, "that": {"_count": 4, "Hagrid": {"_count": 1}, "only": {"_count": 1}, "gave": {"_count": 1}, "it": {"_count": 1}}, "but": {"_count": 6, "the": {"_count": 1}, "leapt": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "Snape": {"_count": 1}, "before": {"_count": 1}}, "with": {"_count": 9, "Harry": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 2}, "its": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 2}}, "sat": {"_count": 1, "Albus": {"_count": 1}}, "next": {"_count": 5, "to": {"_count": 5}}, "nearest": {"_count": 1, "them": {"_count": 1}}, "slumped": {"_count": 1, "against": {"_count": 1}}, "grinned": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 9, "the": {"_count": 7}, "his": {"_count": 1}, "dinner": {"_count": 1}}, "by": {"_count": 4, "the": {"_count": 4}}, "stood": {"_count": 2, "against": {"_count": 1}, "in": {"_count": 1}}, "behind": {"_count": 7, "the": {"_count": 3}, "Lee": {"_count": 1}, "it": {"_count": 1}, "Perkinss": {"_count": 1}, "his": {"_count": 1}}, "exactly": {"_count": 1, "like": {"_count": 1}}, "had": {"_count": 2, "just": {"_count": 1}, "swung": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 3}}, "very": {"_count": 1, "hard": {"_count": 1}}, "stunned": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 4, "get": {"_count": 1}, "see": {"_count": 1}, "chair": {"_count": 1}, "run": {"_count": 1}}, "beside": {"_count": 16, "Ron": {"_count": 1}, "him": {"_count": 3}, "her": {"_count": 2}, "Dudley": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 3}, "Sirius": {"_count": 1}, "his": {"_count": 1}, "Riddle": {"_count": 1}, "Bills": {"_count": 1}, "the": {"_count": 1}}, "legs": {"_count": 4, "move": {"_count": 1}, "and": {"_count": 1}, "before": {"_count": 1}, "sank": {"_count": 1}}, "as": {"_count": 6, "though": {"_count": 3}, "she": {"_count": 1}, "his": {"_count": 1}, "usual": {"_count": 1}}, "And": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 10, "midair": {"_count": 1}, "which": {"_count": 1}, "front": {"_count": 3}, "the": {"_count": 3}, "fury": {"_count": 1}, "a": {"_count": 1}}, "eyes": {"_count": 1, "shut": {"_count": 1}}, "feeling": {"_count": 1, "as": {"_count": 1}}, "near": {"_count": 1, "them": {"_count": 1}}, "hurried": {"_count": 1, "to": {"_count": 1}}, "staring": {"_count": 2, "glumly": {"_count": 1}, "at": {"_count": 1}}, "being": {"_count": 1, "dragged": {"_count": 1}}, "into": {"_count": 1, "place": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "snagged": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 6, "facing": {"_count": 1}, "wearing": {"_count": 1}, "empty": {"_count": 1}, "swearing": {"_count": 1}, "indeed": {"_count": 1}, "deserted": {"_count": 1}}, "spoke": {"_count": 1, "as": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "backward": {"_count": 1, "as": {"_count": 1}}, "hooting": {"_count": 1, "indignantly": {"_count": 1}}, "crouched": {"_count": 2, "down": {"_count": 2}}, "furious": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "miniature": {"_count": 1}, "little": {"_count": 1}}, "ft": {"_count": 1, "was": {"_count": 1}}, "glowed": {"_count": 1, "suddenly": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "looking": {"_count": 1, "replete": {"_count": 1}}, "her": {"_count": 3, "fists": {"_count": 1}, "magnified": {"_count": 1}, "hand": {"_count": 1}}, "his": {"_count": 2, "face": {"_count": 1}, "eyes": {"_count": 1}}, "knocking": {"_count": 1, "over": {"_count": 1}}, "the": {"_count": 2, "chains": {"_count": 1}, "chatter": {"_count": 1}}, "I": {"_count": 2, "Weasley": {"_count": 1}, "cant": {"_count": 1}}, "conjuring": {"_count": 1, "a": {"_count": 1}}, "struggling": {"_count": 1, "with": {"_count": 1}}, "aside": {"_count": 1, "strode": {"_count": 1}}, "opposite": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}}, "hovered": {"_count": 1, "uncertainly": {"_count": 1}}, "an": {"_count": 1, "inch": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "becoming": {"_count": 1, "aware": {"_count": 1}}, "dragged": {"_count": 1, "his": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "farthest": {"_count": 1, "from": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "fall": {"_count": 1, "back": {"_count": 1}}, "roughly": {"_count": 1, "aside": {"_count": 1}}, "toppled": {"_count": 2, "right": {"_count": 1}, "over": {"_count": 1}}, "turned": {"_count": 1, "a": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 1}, "unlike": {"_count": 1}}, "however": {"_count": 1, "there": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "smiling": {"_count": 1, "into": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "thin": {"_count": 1}}, "raise": {"_count": 1, "her": {"_count": 1}}, "Im": {"_count": 1, "a": {"_count": 1}}, "Hermione": {"_count": 1, "closed": {"_count": 1}}, "Whether": {"_count": 1, "because": {"_count": 1}}, "leg": {"_count": 1, "": {"_count": 1}}, "curled": {"_count": 1, "up": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "drumming": {"_count": 1, "its": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "clutching": {"_count": 1, "at": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "then": {"_count": 1, "turned": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}}, "None": {"_count": 45, "of": {"_count": 43, "them": {"_count": 13}, "you": {"_count": 2}, "the": {"_count": 16}, "your": {"_count": 2}, "these": {"_count": 2}, "this": {"_count": 2}, "us": {"_count": 5}, "my": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}}, "them": {"_count": 4171, "noticed": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "werent": {"_count": 1, "young": {"_count": 1}}, "had": {"_count": 47, "never": {"_count": 1}, "been": {"_count": 5}, "happened": {"_count": 1}, "written": {"_count": 1}, "forgotten": {"_count": 1}, "their": {"_count": 1}, "called": {"_count": 1}, "disappeared": {"_count": 1}, "ever": {"_count": 4}, "a": {"_count": 4}, "the": {"_count": 4}, "paid": {"_count": 1}, "opened": {"_count": 1}, "taken": {"_count": 1}, "realized": {"_count": 1}, "believed": {"_count": 1}, "reached": {"_count": 1}, "broken": {"_count": 1}, "fallen": {"_count": 2}, "managed": {"_count": 1}, "not": {"_count": 1}, "turned": {"_count": 1}, "gone": {"_count": 1}, "gotten": {"_count": 1}, "thick": {"_count": 1}, "received": {"_count": 1}, "still": {"_count": 1}, "seemed": {"_count": 1}, "walked": {"_count": 1}, "wands": {"_count": 1}, "frozen": {"_count": 1}, "now": {"_count": 1}, "mentioned": {"_count": 1}}, "next": {"_count": 3, "to": {"_count": 1}, "summer": {"_count": 1}, "": {"_count": 1}}, "angrily": {"_count": 2, "as": {"_count": 1}, "into": {"_count": 1}}, "clutching": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 33, "thought": {"_count": 1}, "he": {"_count": 4}, "they": {"_count": 3}, "didnt": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 2}, "knew": {"_count": 1}, "as": {"_count": 1}, "all": {"_count": 1}, "Wait": {"_count": 1}, "missed": {"_count": 1}, "then": {"_count": 3}, "because": {"_count": 1}, "there": {"_count": 2}, "also": {"_count": 1}, "she": {"_count": 1}, "impossible": {"_count": 1}, "his": {"_count": 1}, "merely": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 1}, "would": {"_count": 1}, "oh": {"_count": 1}, "at": {"_count": 1}}, "to": {"_count": 168, "come": {"_count": 2}, "keep": {"_count": 5}, "mixing": {"_count": 1}, "do": {"_count": 4}, "make": {"_count": 2}, "the": {"_count": 17}, "return": {"_count": 1}, "put": {"_count": 1}, "fly": {"_count": 1}, "it": {"_count": 2}, "arrive": {"_count": 1}, "laugh": {"_count": 2}, "be": {"_count": 5}, "leave": {"_count": 5}, "die": {"_count": 3}, "a": {"_count": 5}, "know": {"_count": 2}, "say": {"_count": 1}, "follow": {"_count": 1}, "her": {"_count": 1}, "go": {"_count": 4}, "me": {"_count": 8}, "Voldemort": {"_count": 1}, "use": {"_count": 1}, "sense": {"_count": 1}, "become": {"_count": 1}, "take": {"_count": 2}, "see": {"_count": 1}, "lock": {"_count": 1}, "drink": {"_count": 1}, "dress": {"_count": 1}, "appear": {"_count": 2}, "get": {"_count": 2}, "kill": {"_count": 1}, "share": {"_count": 2}, "soar": {"_count": 1}, "getting": {"_count": 1}, "research": {"_count": 1}, "read": {"_count": 1}, "Fleur": {"_count": 1}, "talk": {"_count": 1}, "wake": {"_count": 1}, "study": {"_count": 1}, "play": {"_count": 1}, "subside": {"_count": 1}, "let": {"_count": 1}, "cushion": {"_count": 1}, "wait": {"_count": 1}, "belong": {"_count": 1}, "write": {"_count": 1}, "bring": {"_count": 1}, "pat": {"_count": 1}, "their": {"_count": 7}, "find": {"_count": 3}, "you": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 1}, "first": {"_count": 1}, "have": {"_count": 1}, "meet": {"_count": 1}, "rejoin": {"_count": 1}, "remember": {"_count": 1}, "jump": {"_count": 1}, "speak": {"_count": 1}, "us": {"_count": 1}, "all": {"_count": 1}, "himself": {"_count": 1}, "paper": {"_count": 1}, "wriggle": {"_count": 1}, "visit": {"_count": 1}, "look": {"_count": 1}, "join": {"_count": 1}, "congratulate": {"_count": 1}, "sell": {"_count": 1}, "grip": {"_count": 1}, "swim": {"_count": 1}, "believe": {"_count": 1}, "Harry": {"_count": 1}, "our": {"_count": 1}, "Slughorn": {"_count": 1}, "hate": {"_count": 1}, "clamber": {"_count": 1}, "Professor": {"_count": 1}, "help": {"_count": 1}, "hover": {"_count": 1}, "patrol": {"_count": 1}, "catch": {"_count": 1}, "understand": {"_count": 1}, "remain": {"_count": 1}, "show": {"_count": 1}, "contradict": {"_count": 1}, "lead": {"_count": 1}, "sort": {"_count": 1}, "this": {"_count": 1}, "grope": {"_count": 1}, "shuffle": {"_count": 1}, "Bill": {"_count": 1}, "summon": {"_count": 1}, "Muriels": {"_count": 2}, "Stun": {"_count": 1}, "listen": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 167, "their": {"_count": 2}, "that": {"_count": 2}, "of": {"_count": 1}, "Uncle": {"_count": 1}, "as": {"_count": 2}, "gave": {"_count": 1}, "Harry": {"_count": 15}, "they": {"_count": 11}, "landed": {"_count": 1}, "turned": {"_count": 3}, "stood": {"_count": 1}, "shut": {"_count": 1}, "a": {"_count": 6}, "vanishing": {"_count": 1}, "starting": {"_count": 1}, "sometimes": {"_count": 1}, "raised": {"_count": 1}, "for": {"_count": 1}, "several": {"_count": 1}, "sick": {"_count": 1}, "still": {"_count": 2}, "Stan": {"_count": 1}, "headed": {"_count": 2}, "knew": {"_count": 1}, "tethered": {"_count": 1}, "now": {"_count": 2}, "sleepy": {"_count": 1}, "looking": {"_count": 1}, "clearing": {"_count": 1}, "then": {"_count": 6}, "instead": {"_count": 1}, "mens": {"_count": 1}, "Dumbledore": {"_count": 1}, "bolted": {"_count": 1}, "down": {"_count": 1}, "I": {"_count": 3}, "told": {"_count": 1}, "attack": {"_count": 1}, "weve": {"_count": 1}, "unless": {"_count": 1}, "heavy": {"_count": 1}, "seated": {"_count": 1}, "read": {"_count": 1}, "theyre": {"_count": 1}, "let": {"_count": 1}, "Hermione": {"_count": 3}, "settled": {"_count": 1}, "telling": {"_count": 1}, "even": {"_count": 1}, "he": {"_count": 6}, "behind": {"_count": 1}, "all": {"_count": 2}, "Hagrid": {"_count": 1}, "closed": {"_count": 1}, "managed": {"_count": 1}, "said": {"_count": 1}, "ran": {"_count": 1}, "Mrs": {"_count": 1}, "why": {"_count": 1}, "nobody": {"_count": 1}, "correct": {"_count": 1}, "Crookshanks": {"_count": 1}, "was": {"_count": 4}, "found": {"_count": 1}, "simply": {"_count": 2}, "hurrying": {"_count": 1}, "some": {"_count": 2}, "the": {"_count": 4}, "hissed": {"_count": 1}, "Rons": {"_count": 1}, "pointed": {"_count": 1}, "demanding": {"_count": 1}, "pulled": {"_count": 2}, "off": {"_count": 1}, "causing": {"_count": 1}, "hide": {"_count": 1}, "placed": {"_count": 1}, "opened": {"_count": 1}, "forced": {"_count": 1}, "begun": {"_count": 1}, "put": {"_count": 1}, "strikes": {"_count": 1}, "beneath": {"_count": 1}, "Professors": {"_count": 1}, "people": {"_count": 1}, "destroy": {"_count": 1}, "streaked": {"_count": 1}, "each": {"_count": 1}, "once": {"_count": 1}, "threw": {"_count": 1}, "hastened": {"_count": 1}, "into": {"_count": 1}, "only": {"_count": 1}, "continued": {"_count": 1}, "give": {"_count": 1}, "marched": {"_count": 1}, "broke": {"_count": 1}, "when": {"_count": 1}, "how": {"_count": 1}, "it": {"_count": 1}, "hoisted": {"_count": 1}, "Freds": {"_count": 1}, "glanced": {"_count": 1}, "take": {"_count": 1}, "while": {"_count": 1}, "Harrys": {"_count": 1}}, "": {"_count": 893, ".": {"_count": 797}, "?": {"_count": 68}, "!": {"_count": 28}}, "said": {"_count": 44, "Dumbledore": {"_count": 2}, "Uncle": {"_count": 1}, "anything": {"_count": 2}, "Harry": {"_count": 12}, "Malfoy": {"_count": 2}, "Fudge": {"_count": 1}, "Mr": {"_count": 1}, "Ron": {"_count": 5}, "Black": {"_count": 1}, "Mrs": {"_count": 1}, "Hermione": {"_count": 4}, "to": {"_count": 1}, "Hagrid": {"_count": 1}, "Snape": {"_count": 2}, "Luna": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Ogden": {"_count": 1}, "Voldemort": {"_count": 1}, "Slughorn": {"_count": 1}, "Ted": {"_count": 1}, "Arry": {"_count": 1}, "Ginny": {"_count": 1}}, "all": {"_count": 157, "day": {"_count": 1}, "inside": {"_count": 2}, "": {"_count": 32}, "there": {"_count": 1}, "into": {"_count": 3}, "groan": {"_count": 1}, "stupid": {"_count": 1}, "forward": {"_count": 2}, "as": {"_count": 3}, "in": {"_count": 6}, "those": {"_count": 1}, "nervous": {"_count": 1}, "to": {"_count": 11}, "about": {"_count": 3}, "early": {"_count": 1}, "watching": {"_count": 1}, "the": {"_count": 10}, "with": {"_count": 8}, "every": {"_count": 1}, "what": {"_count": 1}, "wearing": {"_count": 1}, "no": {"_count": 1}, "that": {"_count": 2}, "jump": {"_count": 5}, "talking": {"_count": 1}, "now": {"_count": 1}, "deftly": {"_count": 1}, "his": {"_count": 2}, "straight": {"_count": 1}, "looking": {"_count": 3}, "during": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 3}, "made": {"_count": 1}, "of": {"_count": 1}, "very": {"_count": 1}, "working": {"_count": 1}, "was": {"_count": 1}, "pass": {"_count": 1}, "she": {"_count": 2}, "whatever": {"_count": 1}, "before": {"_count": 1}, "I": {"_count": 1}, "on": {"_count": 1}, "right": {"_count": 1}, "when": {"_count": 1}, "smilingly": {"_count": 1}, "leave": {"_count": 1}, "trying": {"_count": 1}, "but": {"_count": 2}, "off": {"_count": 1}, "feverishly": {"_count": 1}, "milk": {"_count": 1}, "out": {"_count": 2}, "ranged": {"_count": 1}, "come": {"_count": 1}, "for": {"_count": 1}, "get": {"_count": 1}, "highly": {"_count": 1}, "back": {"_count": 2}, "tear": {"_count": 1}, "from": {"_count": 1}, "once": {"_count": 1}, "said": {"_count": 1}, "stacked": {"_count": 1}, "beneath": {"_count": 1}, "stew": {"_count": 1}, "these": {"_count": 1}, "Id": {"_count": 1}, "He": {"_count": 1}, "again": {"_count": 1}, "If": {"_count": 1}, "then": {"_count": 1}}, "a": {"_count": 48, "letter": {"_count": 1}, "talking": {"_count": 1}, "huge": {"_count": 1}, "glass": {"_count": 1}, "brilliantly": {"_count": 1}, "troll": {"_count": 1}, "key": {"_count": 1}, "tap": {"_count": 1}, "different": {"_count": 2}, "plate": {"_count": 2}, "bowl": {"_count": 1}, "rather": {"_count": 1}, "very": {"_count": 2}, "furtive": {"_count": 1}, "hug": {"_count": 1}, "last": {"_count": 1}, "human": {"_count": 1}, "sarcastic": {"_count": 1}, "month": {"_count": 1}, "smirk": {"_count": 1}, "shower": {"_count": 1}, "sprawling": {"_count": 1}, "load": {"_count": 1}, "name": {"_count": 1}, "more": {"_count": 1}, "few": {"_count": 1}, "potion": {"_count": 1}, "stringy": {"_count": 1}, "hand": {"_count": 1}, "supply": {"_count": 1}, "bunch": {"_count": 1}, "drawling": {"_count": 1}, "man": {"_count": 1}, "disservice": {"_count": 1}, "boldlooking": {"_count": 1}, "skinny": {"_count": 1}, "generous": {"_count": 1}, "little": {"_count": 1}, "while": {"_count": 1}, "sheer": {"_count": 1}, "sudden": {"_count": 1}, "place": {"_count": 1}, "favor": {"_count": 1}, "glow": {"_count": 1}, "corridor": {"_count": 1}}, "stood": {"_count": 5, "and": {"_count": 1}, "transfixed": {"_count": 1}, "back": {"_count": 1}, "a": {"_count": 1}, "Lupin": {"_count": 1}}, "put": {"_count": 3, "them": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}}, "on": {"_count": 51, "": {"_count": 4}, "the": {"_count": 13}, "make": {"_count": 1}, "their": {"_count": 4}, "my": {"_count": 1}, "squinting": {"_count": 1}, "then": {"_count": 1}, "Cheering": {"_count": 1}, "and": {"_count": 3}, "all": {"_count": 1}, "his": {"_count": 3}, "Archie": {"_count": 1}, "said": {"_count": 1}, "Krum": {"_count": 1}, "a": {"_count": 2}, "poison": {"_count": 1}, "causing": {"_count": 1}, "here": {"_count": 1}, "Rons": {"_count": 1}, "you": {"_count": 1}, "magical": {"_count": 1}, "though": {"_count": 1}, "highheeled": {"_count": 1}, "our": {"_count": 1}, "again": {"_count": 1}, "us": {"_count": 1}, "Harry": {"_count": 1}, "They": {"_count": 1}}, "like": {"_count": 17, "a": {"_count": 11}, "an": {"_count": 2}, "that": {"_count": 1}, "cloaks": {"_count": 1}, "this": {"_count": 1}, "animals": {"_count": 1}}, "happen": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 34, "had": {"_count": 1}, "saw": {"_count": 4}, "was": {"_count": 2}, "and": {"_count": 4}, "caught": {"_count": 1}, "said": {"_count": 1}, "whod": {"_count": 1}, "": {"_count": 3}, "noticed": {"_count": 2}, "Ron": {"_count": 3}, "leaned": {"_count": 1}, "could": {"_count": 3}, "glanced": {"_count": 1}, "feeling": {"_count": 1}, "heard": {"_count": 1}, "Hermione": {"_count": 1}, "took": {"_count": 1}, "looked": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}}, "jump": {"_count": 5, "": {"_count": 4}, "back": {"_count": 1}}, "as": {"_count": 74, "fast": {"_count": 1}, "before": {"_count": 1}, "should": {"_count": 1}, "they": {"_count": 30}, "the": {"_count": 10}, "very": {"_count": 1}, "Mr": {"_count": 1}, "Professors": {"_count": 1}, "unlikely": {"_count": 1}, "though": {"_count": 7}, "her": {"_count": 1}, "a": {"_count": 2}, "Mugglelike": {"_count": 1}, "he": {"_count": 5}, "are": {"_count": 1}, "forerunners": {"_count": 1}, "more": {"_count": 1}, "Snape": {"_count": 1}, "she": {"_count": 2}, "small": {"_count": 1}, "Fleur": {"_count": 1}, "much": {"_count": 1}, "I": {"_count": 1}, "an": {"_count": 1}}, "how": {"_count": 8, "it": {"_count": 1}, "to": {"_count": 1}, "bus": {"_count": 1}, "much": {"_count": 1}, "er": {"_count": 1}, "the": {"_count": 1}, "uncomfortable": {"_count": 1}, "very": {"_count": 1}}, "in": {"_count": 86, "the": {"_count": 30}, "my": {"_count": 2}, "exactly": {"_count": 1}, "struggling": {"_count": 1}, "and": {"_count": 1}, "here": {"_count": 4}, "dreams": {"_count": 1}, "horror": {"_count": 1}, "front": {"_count": 1}, "detention": {"_count": 2}, "a": {"_count": 4}, "but": {"_count": 1}, "his": {"_count": 3}, "silence": {"_count": 1}, "your": {"_count": 1}, "each": {"_count": 1}, "turn": {"_count": 2}, "their": {"_count": 4}, "touch": {"_count": 1}, "Herbology": {"_count": 1}, "": {"_count": 2}, "muttered": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}, "some": {"_count": 1}, "Hogsmeade": {"_count": 1}, "which": {"_count": 1}, "envelopes": {"_count": 1}, "studying": {"_count": 1}, "through": {"_count": 1}, "particular": {"_count": 1}, "as": {"_count": 1}, "prison": {"_count": 1}, "her": {"_count": 1}, "Potions": {"_count": 1}, "did": {"_count": 1}, "two": {"_count": 1}, "Mrs": {"_count": 1}, "she": {"_count": 1}, "total": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}}, "out": {"_count": 43, "of": {"_count": 25}, "but": {"_count": 2}, "Potter": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 1}, "there": {"_count": 2}, "into": {"_count": 2}, "to": {"_count": 1}, "sadly": {"_count": 1}, "you": {"_count": 1}, "And": {"_count": 1}, "and": {"_count": 1}, "Bogrod": {"_count": 1}, "Harry": {"_count": 1}}, "were": {"_count": 61, "all": {"_count": 1}, "laughing": {"_count": 1}, "thickset": {"_count": 1}, "out": {"_count": 2}, "thinking": {"_count": 1}, "grumbling": {"_count": 1}, "looking": {"_count": 2}, "so": {"_count": 2}, "hitting": {"_count": 1}, "rather": {"_count": 1}, "a": {"_count": 1}, "enormous": {"_count": 1}, "marionettes": {"_count": 1}, "shivering": {"_count": 1}, "whispering": {"_count": 1}, "running": {"_count": 1}, "injured": {"_count": 1}, "wearing": {"_count": 1}, "still": {"_count": 2}, "picking": {"_count": 1}, "": {"_count": 2}, "peering": {"_count": 1}, "backing": {"_count": 1}, "before": {"_count": 1}, "carrying": {"_count": 1}, "never": {"_count": 1}, "nursing": {"_count": 1}, "puffyeyed": {"_count": 1}, "stirring": {"_count": 1}, "talking": {"_count": 1}, "hooded": {"_count": 1}, "there": {"_count": 1}, "watching": {"_count": 2}, "now": {"_count": 2}, "drawing": {"_count": 1}, "barely": {"_count": 1}, "in": {"_count": 1}, "pulling": {"_count": 1}, "sitting": {"_count": 1}, "sprinting": {"_count": 1}, "breathless": {"_count": 1}, "playing": {"_count": 1}, "drifting": {"_count": 1}, "blurred": {"_count": 1}, "awake": {"_count": 1}, "pursuing": {"_count": 1}, "planning": {"_count": 1}, "passed": {"_count": 1}, "the": {"_count": 1}, "clutching": {"_count": 1}, "used": {"_count": 1}, "hiding": {"_count": 1}, "forced": {"_count": 1}, "together": {"_count": 1}}, "into": {"_count": 40, "the": {"_count": 19}, "a": {"_count": 6}, "darkness": {"_count": 2}, "his": {"_count": 2}, "focus": {"_count": 1}, "two": {"_count": 1}, "London": {"_count": 1}, "their": {"_count": 1}, "picking": {"_count": 1}, "greenhouse": {"_count": 1}, "position": {"_count": 1}, "trouble": {"_count": 1}, "another": {"_count": 1}, "silence": {"_count": 1}, "something": {"_count": 1}}, "we": {"_count": 4, "dont": {"_count": 2}, "is": {"_count": 1}, "were": {"_count": 1}}, "theyll": {"_count": 5, "just": {"_count": 1}, "go": {"_count": 1}, "all": {"_count": 1}, "be": {"_count": 1}, "tell": {"_count": 1}}, "cheerfully": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "up": {"_count": 39, "while": {"_count": 1}, "": {"_count": 6}, "a": {"_count": 1}, "I": {"_count": 1}, "into": {"_count": 2}, "the": {"_count": 4}, "round": {"_count": 1}, "theyre": {"_count": 1}, "and": {"_count": 7}, "near": {"_count": 1}, "when": {"_count": 2}, "to": {"_count": 4}, "properly": {"_count": 1}, "nicely": {"_count": 1}, "with": {"_count": 2}, "off": {"_count": 1}, "again": {"_count": 1}, "facing": {"_count": 1}, "through": {"_count": 1}}, "knew": {"_count": 5, "": {"_count": 1}, "if": {"_count": 1}, "that": {"_count": 2}, "uttered": {"_count": 1}}, "pointing": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "here": {"_count": 7, "in": {"_count": 1}, "sir": {"_count": 1}, "said": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 2}}, "was": {"_count": 35, "smoking": {"_count": 1}, "pushing": {"_count": 1}, "the": {"_count": 3}, "dangling": {"_count": 1}, "from": {"_count": 1}, "shunting": {"_count": 1}, "lowering": {"_count": 1}, "a": {"_count": 3}, "wiped": {"_count": 1}, "engraved": {"_count": 1}, "still": {"_count": 1}, "small": {"_count": 1}, "now": {"_count": 1}, "positioned": {"_count": 1}, "looking": {"_count": 1}, "already": {"_count": 1}, "singing": {"_count": 1}, "also": {"_count": 1}, "really": {"_count": 1}, "anywhere": {"_count": 1}, "whispering": {"_count": 1}, "heavy": {"_count": 1}, "to": {"_count": 1}, "inhabited": {"_count": 1}, "at": {"_count": 1}, "that": {"_count": 1}, "Levicorpus": {"_count": 1}, "more": {"_count": 1}, "rising": {"_count": 1}, "definitely": {"_count": 1}, "giving": {"_count": 1}}, "through": {"_count": 20, "the": {"_count": 11}, "a": {"_count": 1}, "doorways": {"_count": 1}, "": {"_count": 2}, "his": {"_count": 2}, "carefully": {"_count": 1}, "Harrys": {"_count": 1}, "thick": {"_count": 1}}, "the": {"_count": 54, "people": {"_count": 2}, "headline": {"_count": 1}, "handful": {"_count": 1}, "single": {"_count": 1}, "Hogwarts": {"_count": 1}, "large": {"_count": 1}, "benefit": {"_count": 1}, "map": {"_count": 1}, "story": {"_count": 1}, "best": {"_count": 1}, "door": {"_count": 1}, "contents": {"_count": 2}, "veelagirl": {"_count": 1}, "sights": {"_count": 1}, "Beauxbatons": {"_count": 1}, "entrance": {"_count": 1}, "stars": {"_count": 1}, "boy": {"_count": 1}, "hand": {"_count": 1}, "benches": {"_count": 1}, "rest": {"_count": 1}, "other": {"_count": 1}, "golden": {"_count": 1}, "task": {"_count": 1}, "sky": {"_count": 1}, "one": {"_count": 1}, "Shield": {"_count": 1}, "woman": {"_count": 1}, "O": {"_count": 1}, "reason": {"_count": 1}, "thestrals": {"_count": 1}, "only": {"_count": 1}, "place": {"_count": 1}, "Death": {"_count": 1}, "chance": {"_count": 1}, "rough": {"_count": 1}, "bewildered": {"_count": 1}, "huge": {"_count": 1}, "moment": {"_count": 1}, "essential": {"_count": 1}, "ghoul": {"_count": 1}, "better": {"_count": 1}, "old": {"_count": 1}, "double": {"_count": 1}, "wife": {"_count": 1}, "liveried": {"_count": 1}, "more": {"_count": 1}, "passage": {"_count": 1}, "trick": {"_count": 1}, "cursed": {"_count": 1}, "last": {"_count": 1}, "least": {"_count": 1}}, "say": {"_count": 2, "the": {"_count": 1}, "Support": {"_count": 1}}, "Enter": {"_count": 1, "stranger": {"_count": 1}}, "wide": {"_count": 1, "open": {"_count": 1}}, "Gringotts": {"_count": 1, "carts": {"_count": 1}}, "off": {"_count": 29, "to": {"_count": 3}, "anyway": {"_count": 1}, "the": {"_count": 6}, "on": {"_count": 3}, "": {"_count": 5}, "and": {"_count": 1}, "with": {"_count": 1}, "their": {"_count": 1}, "yourself": {"_count": 1}, "toward": {"_count": 1}, "guard": {"_count": 1}, "for": {"_count": 2}, "He": {"_count": 1}, "Dad": {"_count": 1}, "or": {"_count": 1}}, "have": {"_count": 3, "never": {"_count": 1}, "been": {"_count": 2}}, "at": {"_count": 42, "all": {"_count": 2}, "Hogwarts": {"_count": 2}, "their": {"_count": 4}, "it": {"_count": 4}, "least": {"_count": 1}, "the": {"_count": 15}, "bay": {"_count": 1}, "me": {"_count": 1}, "exactly": {"_count": 1}, "ones": {"_count": 1}, "once": {"_count": 1}, "random": {"_count": 1}, "Seamus": {"_count": 1}, "him": {"_count": 1}, "last": {"_count": 1}, "close": {"_count": 1}, "Kings": {"_count": 1}, "home": {"_count": 1}, "that": {"_count": 1}, "Greyback": {"_count": 1}}, "curses": {"_count": 1, "yet": {"_count": 1}}, "Dursleys": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 17, "wide": {"_count": 1}, "hands": {"_count": 1}, "hand": {"_count": 1}, "turquoise": {"_count": 1}, "body": {"_count": 1}, "deep": {"_count": 1}, "long": {"_count": 1}, "plump": {"_count": 1}, "wand": {"_count": 1}, "scar": {"_count": 1}, "hair": {"_count": 2}, "blessing": {"_count": 1}, "Dark": {"_count": 1}, "ears": {"_count": 1}, "way": {"_count": 1}, "breath": {"_count": 1}}, "from": {"_count": 36, "his": {"_count": 1}, "here": {"_count": 1}, "locking": {"_count": 1}, "leaving": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 12}, "view": {"_count": 2}, "Great": {"_count": 1}, "shaking": {"_count": 1}, "Hagrid": {"_count": 1}, "a": {"_count": 1}, "using": {"_count": 1}, "out": {"_count": 1}, "which": {"_count": 1}, "their": {"_count": 1}, "beneath": {"_count": 1}, "just": {"_count": 1}, "on": {"_count": 1}, "eating": {"_count": 1}, "now": {"_count": 1}, "every": {"_count": 1}, "one": {"_count": 1}, "wizard": {"_count": 1}, "behind": {"_count": 1}}, "know": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "goodbye": {"_count": 1, "and": {"_count": 1}}, "apart": {"_count": 6, "and": {"_count": 1}, "": {"_count": 3}, "from": {"_count": 1}, "apparently": {"_count": 1}}, "you": {"_count": 9, "know": {"_count": 6}, "can": {"_count": 1}, "go": {"_count": 1}, "have": {"_count": 1}}, "either": {"_count": 4, "": {"_count": 3}, "if": {"_count": 1}}, "disappeared": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 48, "Harry": {"_count": 3}, "although": {"_count": 1}, "Hagrid": {"_count": 2}, "the": {"_count": 3}, "a": {"_count": 1}, "Professor": {"_count": 1}, "their": {"_count": 2}, "all": {"_count": 1}, "luggage": {"_count": 1}, "he": {"_count": 10}, "to": {"_count": 1}, "I": {"_count": 2}, "Sirius": {"_count": 1}, "they": {"_count": 4}, "deadened": {"_count": 1}, "Quidditch": {"_count": 1}, "day": {"_count": 1}, "don": {"_count": 1}, "everyone": {"_count": 1}, "humans": {"_count": 1}, "it": {"_count": 1}, "nothing": {"_count": 1}, "": {"_count": 1}, "left": {"_count": 1}, "for": {"_count": 1}, "must": {"_count": 1}, "there": {"_count": 1}, "several": {"_count": 1}, "swords": {"_count": 1}}, "right": {"_count": 2, "underneath": {"_count": 1}, "he": {"_count": 1}}, "led": {"_count": 1, "to": {"_count": 1}}, "looked": {"_count": 23, "like": {"_count": 1}, "up": {"_count": 3}, "into": {"_count": 1}, "out": {"_count": 1}, "cheerful": {"_count": 1}, "gleeful": {"_count": 1}, "surprised": {"_count": 1}, "very": {"_count": 1}, "as": {"_count": 1}, "more": {"_count": 1}, "cautiously": {"_count": 1}, "at": {"_count": 1}, "too": {"_count": 1}, "around": {"_count": 3}, "a": {"_count": 1}, "rather": {"_count": 1}, "away": {"_count": 1}, "upward": {"_count": 1}, "alert": {"_count": 1}}, "sparkling": {"_count": 2, "clean": {"_count": 2}}, "they": {"_count": 15, "started": {"_count": 1}, "could": {"_count": 1}, "crossed": {"_count": 1}, "heard": {"_count": 3}, "put": {"_count": 1}, "werent": {"_count": 1}, "were": {"_count": 2}, "strolled": {"_count": 1}, "permitted": {"_count": 1}, "took": {"_count": 1}, "vanished": {"_count": 1}, "had": {"_count": 1}}, "glided": {"_count": 1, "suddenly": {"_count": 1}}, "trying": {"_count": 6, "to": {"_count": 5}, "hard": {"_count": 1}}, "there": {"_count": 6, "were": {"_count": 1}, "but": {"_count": 1}, "must": {"_count": 1}, "to": {"_count": 2}, "could": {"_count": 1}}, "well": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "weigh": {"_count": 1, "dried": {"_count": 1}}, "started": {"_count": 5, "to": {"_count": 2}, "pushing": {"_count": 1}, "across": {"_count": 1}, "forward": {"_count": 1}}, "could": {"_count": 20, "do": {"_count": 1}, "miss": {"_count": 1}, "say": {"_count": 4}, "stop": {"_count": 1}, "hear": {"_count": 2}, "open": {"_count": 1}, "not": {"_count": 1}, "have": {"_count": 2}, "see": {"_count": 1}, "catch": {"_count": 1}, "express": {"_count": 1}, "respond": {"_count": 1}, "offer": {"_count": 1}, "be": {"_count": 1}, "parry": {"_count": 1}}, "I": {"_count": 14, "cant": {"_count": 1}, "will": {"_count": 1}, "was": {"_count": 2}, "saw": {"_count": 1}, "really": {"_count": 1}, "think": {"_count": 1}, "expect": {"_count": 2}, "suppose": {"_count": 1}, "jus": {"_count": 1}, "the": {"_count": 1}, "would": {"_count": 1}, "wanted": {"_count": 1}}, "toppled": {"_count": 1, "right": {"_count": 1}}, "sprinted": {"_count": 2, "down": {"_count": 1}, "off": {"_count": 1}}, "somewhere": {"_count": 2, "else": {"_count": 1}, "": {"_count": 1}}, "are": {"_count": 15, "called": {"_count": 1}, "at": {"_count": 1}, "still": {"_count": 1}, "you": {"_count": 1}, "working": {"_count": 1}, "standing": {"_count": 1}, "brilliant": {"_count": 1}, "any": {"_count": 1}, "almost": {"_count": 1}, "halfbloods": {"_count": 1}, "on": {"_count": 1}, "too": {"_count": 1}, "supposed": {"_count": 1}, "really": {"_count": 1}, "binding": {"_count": 1}}, "inside": {"_count": 12, "the": {"_count": 6}, "": {"_count": 5}, "tight": {"_count": 1}}, "toward": {"_count": 4, "the": {"_count": 4}}, "since": {"_count": 4, "the": {"_count": 2}, "becoming": {"_count": 1}, "I": {"_count": 1}}, "look": {"_count": 6, "up": {"_count": 1}, "stunned": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}, "like": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "looking": {"_count": 21, "at": {"_count": 1}, "flushed": {"_count": 1}, "stern": {"_count": 1}, "very": {"_count": 2}, "disapproving": {"_count": 1}, "around": {"_count": 2}, "terrified": {"_count": 1}, "over": {"_count": 1}, "extremely": {"_count": 1}, "from": {"_count": 1}, "so": {"_count": 1}, "perfectly": {"_count": 1}, "lost": {"_count": 1}, "livid": {"_count": 1}, "disheveled": {"_count": 1}, "shocked": {"_count": 1}, "up": {"_count": 1}, "scared": {"_count": 1}, "toward": {"_count": 1}}, "do": {"_count": 7, "": {"_count": 1}, "it": {"_count": 2}, "you": {"_count": 2}, "whatever": {"_count": 1}, "said": {"_count": 1}}, "copy": {"_count": 1, "How": {"_count": 1}}, "what": {"_count": 21, "hed": {"_count": 3}, "was": {"_count": 2}, "weve": {"_count": 1}, "really": {"_count": 2}, "happened": {"_count": 1}, "the": {"_count": 2}, "had": {"_count": 1}, "Professor": {"_count": 1}, "he": {"_count": 4}, "it": {"_count": 1}, "hes": {"_count": 1}, "that": {"_count": 1}, "has": {"_count": 1}}, "both": {"_count": 21, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 6}, "large": {"_count": 1}, "awake": {"_count": 1}, "into": {"_count": 1}, "talking": {"_count": 1}, "the": {"_count": 1}, "owls": {"_count": 1}, "for": {"_count": 1}, "pushing": {"_count": 1}, "with": {"_count": 1}, "next": {"_count": 1}, "as": {"_count": 1}, "together": {"_count": 1}, "away": {"_count": 1}}, "followed": {"_count": 3, "Hagrid": {"_count": 1}, "": {"_count": 2}}, "over": {"_count": 18, "the": {"_count": 6}, "looking": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "Pigwidgeons": {"_count": 1}, "to": {"_count": 3}, "their": {"_count": 1}, "her": {"_count": 2}, "Hermione": {"_count": 1}, "his": {"_count": 1}}, "so": {"_count": 17, "well": {"_count": 1}, "much": {"_count": 3}, "they": {"_count": 2}, "long": {"_count": 1}, "often": {"_count": 1}, "he": {"_count": 1}, "fast": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 3}, "severely": {"_count": 1}, "united": {"_count": 1}, "fiercely": {"_count": 1}}, "invisible": {"_count": 1, "or": {"_count": 1}}, "any": {"_count": 8, "old": {"_count": 1}, "more": {"_count": 1}, "having": {"_count": 1}, "attention": {"_count": 2}, "longer": {"_count": 1}, "clue": {"_count": 1}, "of": {"_count": 1}}, "again": {"_count": 25, "tonight": {"_count": 1}, "": {"_count": 11}, "never": {"_count": 1}, "to": {"_count": 1}, "Dumbledore": {"_count": 1}, "pacing": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 3}, "with": {"_count": 1}, "Well": {"_count": 1}, "the": {"_count": 1}, "Phineas": {"_count": 1}, "Harry": {"_count": 1}}, "standing": {"_count": 6, "around": {"_count": 1}, "on": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 1}, "just": {"_count": 1}, "quite": {"_count": 1}}, "dont": {"_count": 5, "you": {"_count": 2}, "we": {"_count": 1}, "worry": {"_count": 1}, "hurt": {"_count": 1}}, "then": {"_count": 20, "he": {"_count": 1}, "": {"_count": 6}, "darted": {"_count": 1}, "Angelinas": {"_count": 1}, "set": {"_count": 1}, "came": {"_count": 1}, "said": {"_count": 1}, "stood": {"_count": 1}, "snorted": {"_count": 1}, "demonstrate": {"_count": 1}, "she": {"_count": 1}, "saw": {"_count": 1}, "they": {"_count": 1}, "leave": {"_count": 1}, "Harry": {"_count": 1}}, "down": {"_count": 19, "on": {"_count": 1}, "to": {"_count": 3}, "the": {"_count": 3}, "a": {"_count": 3}, "": {"_count": 3}, "onto": {"_count": 2}, "and": {"_count": 2}, "through": {"_count": 1}, "before": {"_count": 1}}, "forget": {"_count": 1, "": {"_count": 1}}, "tea": {"_count": 4, "and": {"_count": 2}, "": {"_count": 2}}, "stoat": {"_count": 1, "sandwiches": {"_count": 1}}, "nuts": {"_count": 1, "": {"_count": 1}}, "dropped": {"_count": 2, "their": {"_count": 1}, "off": {"_count": 1}}, "leave": {"_count": 1, "saying": {"_count": 1}}, "made": {"_count": 6, "them": {"_count": 1}, "their": {"_count": 3}, "the": {"_count": 1}, "him": {"_count": 1}}, "almost": {"_count": 2, "drop": {"_count": 1}, "at": {"_count": 1}}, "very": {"_count": 6, "much": {"_count": 2}, "well": {"_count": 1}, "subdued": {"_count": 1}, "soon": {"_count": 1}, "pinkfaced": {"_count": 1}}, "whistling": {"_count": 1, "and": {"_count": 1}}, "outside": {"_count": 4, "": {"_count": 2}, "the": {"_count": 1}, "his": {"_count": 1}}, "werewolves": {"_count": 1, "before": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 33, "added": {"_count": 2}, "thinks": {"_count": 1}, "had": {"_count": 3}, "was": {"_count": 2}, "took": {"_count": 1}, "swung": {"_count": 1}, "could": {"_count": 2}, "pushed": {"_count": 1}, "croaked": {"_count": 1}, "kept": {"_count": 1}, "would": {"_count": 2}, "finished": {"_count": 1}, "said": {"_count": 2}, "saw": {"_count": 3}, "pulled": {"_count": 1}, "just": {"_count": 1}, "felt": {"_count": 1}, "heard": {"_count": 2}, "did": {"_count": 1}, "realized": {"_count": 2}, "and": {"_count": 1}, "discovered": {"_count": 1}}, "listened": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 3, "by": {"_count": 1}, "of": {"_count": 2}}, "turn": {"_count": 2, "a": {"_count": 1}, "tail": {"_count": 1}}, "back": {"_count": 21, "": {"_count": 3}, "into": {"_count": 3}, "You": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 2}, "and": {"_count": 2}, "up": {"_count": 2}, "from": {"_count": 1}, "out": {"_count": 2}, "inside": {"_count": 1}, "so": {"_count": 1}, "for": {"_count": 1}}, "sat": {"_count": 6, "nervously": {"_count": 1}, "in": {"_count": 1}, "down": {"_count": 3}, "clamlike": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "way": {"_count": 1, "across": {"_count": 1}}, "alive": {"_count": 4, "that": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "long": {"_count": 1}}, "pull": {"_count": 1, "their": {"_count": 1}}, "hardly": {"_count": 2, "daring": {"_count": 1}, "able": {"_count": 1}}, "though": {"_count": 4, "different": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 35, "a": {"_count": 10}, "about": {"_count": 1}, "Humongous": {"_count": 1}, "their": {"_count": 4}, "instance": {"_count": 1}, "ages": {"_count": 1}, "me": {"_count": 1}, "his": {"_count": 1}, "leaving": {"_count": 1}, "centuries": {"_count": 1}, "other": {"_count": 1}, "the": {"_count": 3}, "years": {"_count": 1}, "days": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}, "several": {"_count": 1}, "yourself": {"_count": 1}, "bringing": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "everything": {"_count": 7, "Quirrell": {"_count": 1}, "Dobby": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 2}, "Ron": {"_count": 1}, "they": {"_count": 1}}, "nice": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 14, "to": {"_count": 7}, "even": {"_count": 3}, "being": {"_count": 1}, "just": {"_count": 1}, "unless": {"_count": 1}, "one": {"_count": 1}}, "go": {"_count": 5, "through": {"_count": 2}, "mad": {"_count": 1}, "feeling": {"_count": 1}, "beaming": {"_count": 1}}, "called": {"_count": 2, "Bye": {"_count": 1}, "Harry": {"_count": 1}}, "graciously": {"_count": 1, "to": {"_count": 1}}, "drinks": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 4, "if": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 2}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "her": {"_count": 7, "hands": {"_count": 1}, "bushy": {"_count": 1}, "eyes": {"_count": 1}, "stubbyfingered": {"_count": 1}, "shriveled": {"_count": 1}, "beautiful": {"_count": 1}, "knuckles": {"_count": 1}}, "youve": {"_count": 1, "just": {"_count": 1}}, "really": {"_count": 4, "dizzy": {"_count": 1}, "knew": {"_count": 1}, "ill": {"_count": 1}, "defeated": {"_count": 1}}, "too": {"_count": 19, "he": {"_count": 2}, "long": {"_count": 1}, "": {"_count": 9}, "said": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "people": {"_count": 1}, "soon": {"_count": 1}, "much": {"_count": 1}, "breathed": {"_count": 1}}, "beetleblack": {"_count": 1, "eyes": {"_count": 1}}, "good": {"_count": 3, "as": {"_count": 1}, "night": {"_count": 2}}, "safely": {"_count": 5, "in": {"_count": 2}, "down": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 1}}, "credit": {"_count": 2, "for": {"_count": 1}, "it": {"_count": 1}}, "bent": {"_count": 4, "low": {"_count": 1}, "over": {"_count": 2}, "as": {"_count": 1}}, "stared": {"_count": 9, "and": {"_count": 1}, "down": {"_count": 1}, "into": {"_count": 1}, "at": {"_count": 4}, "just": {"_count": 1}, "": {"_count": 1}}, "mainly": {"_count": 2, "because": {"_count": 1}, "cheers": {"_count": 1}}, "vanished": {"_count": 1, "and": {"_count": 1}}, "pummeled": {"_count": 1, "it": {"_count": 1}}, "replaced": {"_count": 1, "by": {"_count": 1}}, "extremely": {"_count": 2, "thirsty": {"_count": 1}, "tipsy": {"_count": 1}}, "winding": {"_count": 1, "its": {"_count": 1}}, "upward": {"_count": 2, "again": {"_count": 1}, "the": {"_count": 1}}, "WATCH": {"_count": 1, "OUT": {"_count": 1}}, "easily": {"_count": 1, "visible": {"_count": 1}}, "hes": {"_count": 1, "waiting": {"_count": 1}}, "away": {"_count": 21, "from": {"_count": 5}, "along": {"_count": 1}, "": {"_count": 5}, "toward": {"_count": 1}, "more": {"_count": 1}, "and": {"_count": 1}, "irritably": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 1}, "yet": {"_count": 1}, "in": {"_count": 1}, "immediately": {"_count": 1}}, "alone": {"_count": 4, "with": {"_count": 1}, "how": {"_count": 1}, "together": {"_count": 1}, "since": {"_count": 1}}, "when": {"_count": 15, "she": {"_count": 1}, "something": {"_count": 1}, "our": {"_count": 1}, "they": {"_count": 5}, "Viktor": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "Firenze": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 1}}, "signaling": {"_count": 1, "the": {"_count": 1}}, "another": {"_count": 3, "roguish": {"_count": 1}, "row": {"_count": 1}, "one": {"_count": 1}}, "seized": {"_count": 1, "Neville": {"_count": 1}}, "shredded": {"_count": 1, "books": {"_count": 1}}, "fly": {"_count": 1, "around": {"_count": 1}}, "came": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 1}, "close": {"_count": 1}, "after": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "pulled": {"_count": 3, "Ron": {"_count": 1}, "through": {"_count": 1}, "Harry": {"_count": 1}}, "wearing": {"_count": 10, "a": {"_count": 5}, "long": {"_count": 1}, "redandgold": {"_count": 1}, "rosettes": {"_count": 1}, "earmuffs": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 10, "was": {"_count": 3}, "looked": {"_count": 1}, "shuffled": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 2}, "roared": {"_count": 1}, "gives": {"_count": 1}}, "Peeves": {"_count": 3, "the": {"_count": 2}, "broke": {"_count": 1}}, "realized": {"_count": 1, "what": {"_count": 1}}, "pass": {"_count": 6, "": {"_count": 3}, "watching": {"_count": 1}, "said": {"_count": 1}, "me": {"_count": 1}}, "half": {"_count": 1, "in": {"_count": 1}}, "making": {"_count": 5, "suggestions": {"_count": 1}, "any": {"_count": 1}, "sure": {"_count": 1}, "very": {"_count": 1}, "them": {"_count": 1}}, "about": {"_count": 15, "that": {"_count": 1}, "Colin": {"_count": 1}, "hearing": {"_count": 1}, "Fawkess": {"_count": 1}, "Animagi": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}, "his": {"_count": 2}, "it": {"_count": 1}, "Voldemorts": {"_count": 1}, "who": {"_count": 1}, "Voldemort": {"_count": 1}, "me": {"_count": 1}}, "Godric": {"_count": 1, "Gryffindor": {"_count": 1}}, "dead": {"_count": 1, "said": {"_count": 1}}, "along": {"_count": 6, "flapping": {"_count": 1}, "the": {"_count": 4}, "with": {"_count": 1}}, "examined": {"_count": 1, "the": {"_count": 1}}, "rue": {"_count": 1, "the": {"_count": 1}}, "squinting": {"_count": 1, "around": {"_count": 1}}, "five": {"_count": 2, "times": {"_count": 1}, "minutes": {"_count": 1}}, "wondering": {"_count": 1, "where": {"_count": 1}}, "swung": {"_count": 1, "their": {"_count": 1}}, "see": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}, "lying": {"_count": 4, "here": {"_count": 1}, "around": {"_count": 2}, "": {"_count": 1}}, "pompously": {"_count": 1, "that": {"_count": 1}}, "anything": {"_count": 3, "": {"_count": 1}, "about": {"_count": 1}, "in": {"_count": 1}}, "chewed": {"_count": 1, "greedily": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 12, "": {"_count": 5}, "Ernie": {"_count": 1}, "The": {"_count": 1}, "but": {"_count": 1}, "dropped": {"_count": 1}, "Bill": {"_count": 1}, "not": {"_count": 1}, "looking": {"_count": 1}}, "around": {"_count": 14, "Hermiones": {"_count": 1}, "a": {"_count": 1}, "ever": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 2}, "Wormtails": {"_count": 1}, "": {"_count": 4}, "your": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}}, "hed": {"_count": 1, "seen": {"_count": 1}}, "sitting": {"_count": 4, "down": {"_count": 1}, "outside": {"_count": 1}, "there": {"_count": 1}, "on": {"_count": 1}}, "fell": {"_count": 3, "silent": {"_count": 3}}, "with": {"_count": 39, "checks": {"_count": 1}, "a": {"_count": 8}, "her": {"_count": 6}, "his": {"_count": 4}, "an": {"_count": 3}, "extreme": {"_count": 1}, "the": {"_count": 6}, "what": {"_count": 2}, "empty": {"_count": 1}, "their": {"_count": 2}, "one": {"_count": 1}, "something": {"_count": 1}, "some": {"_count": 1}, "seconds": {"_count": 1}, "enormous": {"_count": 1}}, "further": {"_count": 3, "information": {"_count": 1}, "": {"_count": 2}}, "open": {"_count": 1, "": {"_count": 1}}, "severely": {"_count": 1, "through": {"_count": 1}}, "dashed": {"_count": 1, "to": {"_count": 1}}, "watch": {"_count": 1, "the": {"_count": 1}}, "sniffing": {"_count": 1, "tree": {"_count": 1}}, "flung": {"_count": 2, "up": {"_count": 1}, "themselves": {"_count": 1}}, "clicked": {"_count": 1, "Aragog": {"_count": 1}}, "fresh": {"_count": 1, "meat": {"_count": 1}}, "may": {"_count": 1, "well": {"_count": 1}}, "home": {"_count": 2, "first": {"_count": 1}, "and": {"_count": 1}}, "books": {"_count": 1, "were": {"_count": 1}}, "exactly": {"_count": 1, "how": {"_count": 1}}, "turned": {"_count": 4, "to": {"_count": 3}, "away": {"_count": 1}}, "shut": {"_count": 1, "at": {"_count": 1}}, "hovering": {"_count": 1, "in": {"_count": 1}}, "where": {"_count": 6, "the": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}}, "spoke": {"_count": 7, "": {"_count": 3}, "as": {"_count": 1}, "for": {"_count": 1}, "again": {"_count": 1}, "at": {"_count": 1}}, "seemed": {"_count": 15, "to": {"_count": 11}, "confirmed": {"_count": 1}, "positively": {"_count": 1}, "insurmountable": {"_count": 1}, "awed": {"_count": 1}}, "find": {"_count": 1, "their": {"_count": 1}}, "kissing": {"_count": 1, "in": {"_count": 1}}, "holding": {"_count": 4, "up": {"_count": 1}, "hands": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "under": {"_count": 4, "the": {"_count": 3}, "her": {"_count": 1}}, "boomed": {"_count": 1, "Aunt": {"_count": 1}}, "Muggles": {"_count": 1, "dead": {"_count": 1}}, "Azkaban": {"_count": 1, "guards": {"_count": 1}}, "nearly": {"_count": 3, "ten": {"_count": 1}, "everyone": {"_count": 1}, "half": {"_count": 1}}, "arguing": {"_count": 1, "when": {"_count": 1}}, "trolleys": {"_count": 1, "unloaded": {"_count": 1}}, "joined": {"_count": 1, "the": {"_count": 1}}, "pointed": {"_count": 1, "at": {"_count": 1}}, "seats": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 5, "very": {"_count": 1}, "like": {"_count": 1}, "a": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "no": {"_count": 2, "reason": {"_count": 1}, "time": {"_count": 1}}, "filled": {"_count": 3, "suddenly": {"_count": 1}, "with": {"_count": 1}, "up": {"_count": 1}}, "Password": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 2, "died": {"_count": 1}, "ever": {"_count": 1}}, "together": {"_count": 9, "with": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}, "anyway": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}}, "kept": {"_count": 3, "breaking": {"_count": 1}, "looking": {"_count": 2}}, "detention": {"_count": 1, "": {"_count": 1}}, "roughly": {"_count": 1, "so": {"_count": 1}}, "quietly": {"_count": 2, "": {"_count": 2}}, "heading": {"_count": 1, "for": {"_count": 1}}, "walking": {"_count": 2, "between": {"_count": 1}, "meekly": {"_count": 1}}, "loose": {"_count": 2, "": {"_count": 2}}, "striding": {"_count": 1, "up": {"_count": 1}}, "people": {"_count": 3, "were": {"_count": 2}, "": {"_count": 1}}, "covered": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 7, "Monday": {"_count": 1}, "the": {"_count": 1}, "Ravenclaw": {"_count": 1}, "Argus": {"_count": 1}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}, "inches": {"_count": 1}}, "coming": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}}, "hurriedly": {"_count": 2, "on": {"_count": 2}}, "With": {"_count": 1, "a": {"_count": 1}}, "yet": {"_count": 7, "": {"_count": 3}, "another": {"_count": 1}, "more": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}}, "Lupin": {"_count": 1, "looked": {"_count": 1}}, "left": {"_count": 6, "Honeydukes": {"_count": 1}, "and": {"_count": 1}, "Rons": {"_count": 1}, "the": {"_count": 2}, "their": {"_count": 1}}, "tipped": {"_count": 1, "him": {"_count": 1}}, "gargoyles": {"_count": 1, "at": {"_count": 1}}, "dementors": {"_count": 3, "outta": {"_count": 1}, "make": {"_count": 1}, "if": {"_count": 1}}, "tears": {"_count": 2, "leaking": {"_count": 1}, "still": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "downstairs": {"_count": 2, "and": {"_count": 1}, "Greyback": {"_count": 1}}, "palmistry": {"_count": 1, "and": {"_count": 1}}, "wont": {"_count": 2, "bring": {"_count": 1}, "take": {"_count": 1}}, "disappear": {"_count": 2, "The": {"_count": 1}, "": {"_count": 1}}, "miserably": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 3, "burst": {"_count": 1}, "let": {"_count": 1}, "still": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "gambling": {"_count": 1, "their": {"_count": 1}}, "dates": {"_count": 1, "yeh": {"_count": 1}}, "after": {"_count": 4, "a": {"_count": 1}, "only": {"_count": 1}, "they": {"_count": 1}, "all": {"_count": 1}}, "interpret": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 6, "Wood": {"_count": 1}, "though": {"_count": 1}, "Zacharias": {"_count": 1}, "Mundungus": {"_count": 1}, "through": {"_count": 1}, "Ron": {"_count": 1}}, "or": {"_count": 11, "brandishing": {"_count": 1}, "was": {"_count": 1}, "tell": {"_count": 1}, "blasting": {"_count": 1}, "that": {"_count": 1}, "just": {"_count": 1}, "something": {"_count": 1}, "their": {"_count": 1}, "hear": {"_count": 1}, "because": {"_count": 1}, "well": {"_count": 1}}, "Angelinas": {"_count": 1, "way": {"_count": 1}}, "bending": {"_count": 2, "low": {"_count": 2}}, "unhappily": {"_count": 1, "": {"_count": 1}}, "quiet": {"_count": 2, "as": {"_count": 1}, "anyway": {"_count": 1}}, "going": {"_count": 1, "nearer": {"_count": 1}}, "twigs": {"_count": 1, "clenched": {"_count": 1}}, "Crookshanks": {"_count": 1, "s": {"_count": 1}}, "dragging": {"_count": 1, "his": {"_count": 1}}, "whatever": {"_count": 1, "you": {"_count": 1}}, "my": {"_count": 3, "mother": {"_count": 1}, "parents": {"_count": 1}, "Triwizard": {"_count": 1}}, "afterwards": {"_count": 1, "": {"_count": 1}}, "screaming": {"_count": 1, "all": {"_count": 1}}, "kill": {"_count": 1, "me": {"_count": 1}}, "edging": {"_count": 1, "awkwardly": {"_count": 1}}, "gliding": {"_count": 1, "in": {"_count": 1}}, "watching": {"_count": 2, "him": {"_count": 1}, "as": {"_count": 1}}, "died": {"_count": 1, "": {"_count": 1}}, "retreat": {"_count": 1, "Snape": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "until": {"_count": 4, "they": {"_count": 2}, "the": {"_count": 1}, "with": {"_count": 1}}, "running": {"_count": 3, "toward": {"_count": 1}, "off": {"_count": 1}, "back": {"_count": 1}}, "been": {"_count": 1, "out": {"_count": 1}}, "whispered": {"_count": 3, "in": {"_count": 1}, "to": {"_count": 1}, "No": {"_count": 1}}, "packed": {"_count": 1, "off": {"_count": 1}}, "more": {"_count": 5, "clearly": {"_count": 1}, "than": {"_count": 1}, "closely": {"_count": 1}, "tea": {"_count": 1}, "refined": {"_count": 1}}, "suspiciously": {"_count": 1, "and": {"_count": 1}}, "painfully": {"_count": 1, "regrown": {"_count": 1}}, "forever": {"_count": 2, "": {"_count": 2}}, "smiled": {"_count": 1, "at": {"_count": 1}}, "What": {"_count": 1, "have": {"_count": 1}}, "anyway": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "than": {"_count": 7, "the": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 2}, "as": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}}, "just": {"_count": 6, "now": {"_count": 1}, "the": {"_count": 1}, "ignore": {"_count": 1}, "as": {"_count": 1}, "behind": {"_count": 1}, "visible": {"_count": 1}}, "headed": {"_count": 2, "downstairs": {"_count": 1}, "back": {"_count": 1}}, "crowded": {"_count": 1, "around": {"_count": 1}}, "grown": {"_count": 1, "men": {"_count": 1}}, "conjured": {"_count": 1, "fires": {"_count": 1}}, "Archie": {"_count": 1, "not": {"_count": 1}}, "Disapparated": {"_count": 1, "": {"_count": 1}}, "shouts": {"_count": 1, "and": {"_count": 1}}, "staring": {"_count": 2, "down": {"_count": 1}, "up": {"_count": 1}}, "booming": {"_count": 1, "into": {"_count": 1}}, "without": {"_count": 4, "wind": {"_count": 1}, "pausing": {"_count": 1}, "conscious": {"_count": 1}, "words": {"_count": 1}}, "sulkily": {"_count": 1, "": {"_count": 1}}, "violently": {"_count": 1, "through": {"_count": 1}}, "hurtled": {"_count": 2, "toward": {"_count": 1}, "through": {"_count": 1}}, "mop": {"_count": 1, "him": {"_count": 1}}, "Mr": {"_count": 3, "Weasley": {"_count": 1}, "Roberts": {"_count": 1}, "Bartemius": {"_count": 1}}, "something": {"_count": 3, "that": {"_count": 1}, "he": {"_count": 1}, "unreasonable": {"_count": 1}}, "floating": {"_count": 1, "along": {"_count": 1}}, "pulling": {"_count": 2, "coats": {"_count": 1}, "on": {"_count": 1}}, "shouted": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "erupted": {"_count": 1, "with": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "surged": {"_count": 1, "forward": {"_count": 1}}, "Dad": {"_count": 1, "": {"_count": 1}}, "tonight": {"_count": 1, "the": {"_count": 1}}, "Bill": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "still": {"_count": 4, "wearing": {"_count": 1}, "do": {"_count": 1}, "bleeding": {"_count": 1}, "addressing": {"_count": 1}}, "marched": {"_count": 1, "out": {"_count": 1}}, "importantly": {"_count": 1, "the": {"_count": 1}}, "properly": {"_count": 3, "so": {"_count": 1}, "make": {"_count": 1}, "since": {"_count": 1}}, "Ron": {"_count": 8, "": {"_count": 2}, "was": {"_count": 1}, "muttered": {"_count": 1}, "theyre": {"_count": 1}, "had": {"_count": 1}, "Yeah": {"_count": 1}, "and": {"_count": 1}}, "shrieked": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 6, "water": {"_count": 1}, "this": {"_count": 2}, "course": {"_count": 1}, "doing": {"_count": 1}, "the": {"_count": 1}}, "except": {"_count": 1, "the": {"_count": 1}}, "sick": {"_count": 1, "leave": {"_count": 1}}, "Hogwarts": {"_count": 1, "champion": {"_count": 1}}, "briskly": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 9, "they": {"_count": 1}, "Christmas": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}, "Mum": {"_count": 1}, "dinner": {"_count": 1}, "much": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 4, "summer": {"_count": 2}, "for": {"_count": 1}, "year": {"_count": 1}}, "slowly": {"_count": 3, "emptied": {"_count": 1}, "almost": {"_count": 1}, "on": {"_count": 1}}, "leapt": {"_count": 1, "lightly": {"_count": 1}}, "asleep": {"_count": 1, "though": {"_count": 1}}, "recovered": {"_count": 1, "only": {"_count": 1}}, "writing": {"_count": 1, "weekly": {"_count": 1}}, "representing": {"_count": 1, "a": {"_count": 1}}, "apparently": {"_count": 2, "impressed": {"_count": 1}, "convinced": {"_count": 1}}, "okay": {"_count": 1, "at": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "eating": {"_count": 1, "toast": {"_count": 1}}, "sprouted": {"_count": 1, "identical": {"_count": 1}}, "announced": {"_count": 2, "Hermiones": {"_count": 2}}, "please": {"_count": 4, "to": {"_count": 1}, "": {"_count": 2}, "please": {"_count": 1}}, "grinning": {"_count": 1, "broadly": {"_count": 1}}, "opened": {"_count": 1, "again": {"_count": 1}}, "ignore": {"_count": 2, "them": {"_count": 2}}, "Potter": {"_count": 3, "": {"_count": 3}}, "pressed": {"_count": 1, "their": {"_count": 1}}, "scrambled": {"_count": 2, "out": {"_count": 1}, "back": {"_count": 1}}, "carefully": {"_count": 6, "and": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 2}, "inside": {"_count": 1}, "in": {"_count": 1}}, "however": {"_count": 2, "had": {"_count": 1}, "looked": {"_count": 1}}, "talking": {"_count": 4, "to": {"_count": 1}, "quietly": {"_count": 1}, "very": {"_count": 1}, "and": {"_count": 1}}, "squashed": {"_count": 1, "into": {"_count": 1}}, "Im": {"_count": 2, "not": {"_count": 1}, "sure": {"_count": 1}}, "she": {"_count": 6, "went": {"_count": 1}, "thrust": {"_count": 1}, "said": {"_count": 2}, "added": {"_count": 1}, "would": {"_count": 1}}, "sporting": {"_count": 2, "Support": {"_count": 2}}, "secretary": {"_count": 1, "and": {"_count": 1}}, "would": {"_count": 6, "probably": {"_count": 1}, "come": {"_count": 1}, "want": {"_count": 1}, "see": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}}, "teeter": {"_count": 1, "dangerously": {"_count": 1}}, "securely": {"_count": 1, "to": {"_count": 1}}, "moved": {"_count": 2, "right": {"_count": 1}, "toward": {"_count": 1}}, "counted": {"_count": 1, "Hagrid": {"_count": 1}}, "set": {"_count": 4, "to": {"_count": 1}, "off": {"_count": 2}, "up": {"_count": 1}}, "healthy": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 3, "Ive": {"_count": 1}, "of": {"_count": 1}, "she": {"_count": 1}}, "clearly": {"_count": 1, "in": {"_count": 1}}, "screening": {"_count": 1, "the": {"_count": 1}}, "waving": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "their": {"_count": 9, "smiles": {"_count": 1}, "rights": {"_count": 1}, "largest": {"_count": 1}, "flames": {"_count": 1}, "correct": {"_count": 1}, "figures": {"_count": 1}, "hair": {"_count": 1}, "wands": {"_count": 1}, "leader": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "seven": {"_count": 1, "Sickles": {"_count": 1}}, "its": {"_count": 6, "sting": {"_count": 1}, "front": {"_count": 1}, "Katie": {"_count": 1}, "the": {"_count": 1}, "enormous": {"_count": 1}, "a": {"_count": 1}}, "stop": {"_count": 1, "work": {"_count": 1}}, "offering": {"_count": 1, "snacks": {"_count": 1}}, "which": {"_count": 6, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}, "was": {"_count": 1}, "recorded": {"_count": 1}, "burst": {"_count": 1}, "grew": {"_count": 1}}, "onto": {"_count": 5, "their": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 3}}, "girls": {"_count": 2, "excitedly": {"_count": 1}, "yet": {"_count": 1}}, "sniggering": {"_count": 1, "and": {"_count": 1}}, "much": {"_count": 3, "when": {"_count": 1}, "they": {"_count": 1}, "more": {"_count": 1}}, "working": {"_count": 1, "until": {"_count": 1}}, "play": {"_count": 1, "games": {"_count": 1}}, "giggled": {"_count": 1, "harder": {"_count": 1}}, "shrunk": {"_count": 1, "she": {"_count": 1}}, "himself": {"_count": 2, "sir": {"_count": 1}, "": {"_count": 1}}, "politely": {"_count": 1, "": {"_count": 1}}, "meaning": {"_count": 1, "that": {"_count": 1}}, "having": {"_count": 3, "any": {"_count": 1}, "used": {"_count": 1}, "fun": {"_count": 1}}, "past": {"_count": 2, "the": {"_count": 1}, "several": {"_count": 1}}, "hours": {"_count": 1, "and": {"_count": 1}}, "landing": {"_count": 1, "on": {"_count": 1}}, "jobs": {"_count": 1, "so": {"_count": 1}}, "angry": {"_count": 1, "red": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "rose": {"_count": 2, "a": {"_count": 1}, "from": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "swirling": {"_count": 1, "around": {"_count": 1}}, "jumped": {"_count": 4, "I": {"_count": 1}, "unnoticed": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}}, "Malfoy": {"_count": 3, "took": {"_count": 1}, "Crabbe": {"_count": 1}, "with": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 2}, "London": {"_count": 1}}, "bowed": {"_count": 1, "low": {"_count": 1}}, "imperiously": {"_count": 1, "for": {"_count": 1}}, "supported": {"_count": 1, "by": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "proved": {"_count": 1, "false": {"_count": 1}}, "last": {"_count": 3, "lesson": {"_count": 2}, "season": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "climbing": {"_count": 1, "over": {"_count": 1}}, "twenty": {"_count": 2, "feet": {"_count": 1}, "minutes": {"_count": 1}}, "leaning": {"_count": 1, "on": {"_count": 1}}, "hanging": {"_count": 1, "in": {"_count": 1}}, "does": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "Get": {"_count": 1, "on": {"_count": 1}}, "permission": {"_count": 1, "to": {"_count": 1}}, "shortly": {"_count": 1, "afterward": {"_count": 1}}, "walked": {"_count": 2, "away": {"_count": 1}, "back": {"_count": 1}}, "proceeded": {"_count": 1, "up": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "closing": {"_count": 1, "all": {"_count": 1}}, "onehanded": {"_count": 1, "over": {"_count": 1}}, "approaching": {"_count": 1, "Voldemort": {"_count": 1}}, "shortened": {"_count": 1, "their": {"_count": 1}}, "lasted": {"_count": 1, "long": {"_count": 1}}, "drawing": {"_count": 2, "their": {"_count": 1}, "closer": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "closed": {"_count": 1, "now": {"_count": 1}}, "pushing": {"_count": 2, "nearer": {"_count": 1}, "Hermione": {"_count": 1}}, "gasped": {"_count": 3, "it": {"_count": 1}, "and": {"_count": 2}}, "jostled": {"_count": 1, "fighting": {"_count": 1}}, "taking": {"_count": 3, "him": {"_count": 1}, "Weasley": {"_count": 1}, "Polyjuice": {"_count": 1}}, "most": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "went": {"_count": 1, "to": {"_count": 1}}, "contains": {"_count": 1, "a": {"_count": 1}}, "whipped": {"_count": 1, "around": {"_count": 1}}, "Dumbledore": {"_count": 2, "end": {"_count": 1}, "had": {"_count": 1}}, "once": {"_count": 3, "more": {"_count": 2}, "": {"_count": 1}}, "mutter": {"_count": 1, "themselves": {"_count": 1}}, "southward": {"_count": 1, "": {"_count": 1}}, "cornered": {"_count": 1, "him": {"_count": 1}}, "try": {"_count": 2, "": {"_count": 1}, "sneered": {"_count": 1}}, "Dudley": {"_count": 1, "was": {"_count": 1}}, "peering": {"_count": 1, "anxiously": {"_count": 1}}, "years": {"_count": 1, "ago": {"_count": 1}}, "till": {"_count": 1, "theyve": {"_count": 1}}, "theyd": {"_count": 1, "been": {"_count": 1}}, "hastily": {"_count": 2, "into": {"_count": 1}, "pretend": {"_count": 1}}, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "exchanging": {"_count": 1, "a": {"_count": 1}}, "lately": {"_count": 1, "because": {"_count": 1}}, "anymore": {"_count": 2, "is": {"_count": 1}, "will": {"_count": 1}}, "tomorrow": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "toads": {"_count": 1, "from": {"_count": 1}}, "easy": {"_count": 1, "targets": {"_count": 1}}, "upstairs": {"_count": 1, "looking": {"_count": 1}}, "realize": {"_count": 2, "their": {"_count": 1}, "that": {"_count": 1}}, "beside": {"_count": 2, "a": {"_count": 1}, "Professor": {"_count": 1}}, "personally": {"_count": 1, "where": {"_count": 1}}, "smashed": {"_count": 1, "": {"_count": 1}}, "repair": {"_count": 1, "a": {"_count": 1}}, "whispering": {"_count": 3, "together": {"_count": 1}, "about": {"_count": 1}, "the": {"_count": 1}}, "shifted": {"_count": 1, "uncomfortably": {"_count": 1}}, "soon": {"_count": 1, "however": {"_count": 1}}, "doing": {"_count": 2, "this": {"_count": 1}, "all": {"_count": 1}}, "But": {"_count": 1, "maybe": {"_count": 1}}, "sprung": {"_count": 1, "on": {"_count": 1}}, "surrounded": {"_count": 2, "by": {"_count": 2}}, "dddead": {"_count": 1, "all": {"_count": 1}}, "starve": {"_count": 1, "": {"_count": 1}}, "snapping": {"_count": 1, "at": {"_count": 1}}, "leaned": {"_count": 1, "against": {"_count": 1}}, "places": {"_count": 1, "": {"_count": 1}}, "nudged": {"_count": 1, "their": {"_count": 1}}, "drowned": {"_count": 1, "hes": {"_count": 1}}, "poisoned": {"_count": 1, "hes": {"_count": 1}}, "cooked": {"_count": 1, "in": {"_count": 1}}, "horses": {"_count": 1, "though": {"_count": 1}}, "vapor": {"_count": 1, "rising": {"_count": 1}}, "ever": {"_count": 2, "since": {"_count": 1}, "again": {"_count": 1}}, "creaked": {"_count": 1, "into": {"_count": 1}}, "spent": {"_count": 1, "the": {"_count": 1}}, "lapsed": {"_count": 1, "into": {"_count": 1}}, "brought": {"_count": 1, "their": {"_count": 1}}, "midgets": {"_count": 1, "": {"_count": 1}}, "being": {"_count": 4, "engrossed": {"_count": 1}, "separated": {"_count": 1}, "ripped": {"_count": 1}, "Deaths": {"_count": 1}}, "echoed": {"_count": 1, "Harrys": {"_count": 1}}, "filthy": {"_count": 1, "looks": {"_count": 1}}, "coldly": {"_count": 1, "as": {"_count": 1}}, "steady": {"_count": 1, "is": {"_count": 1}}, "purring": {"_count": 1, "loudly": {"_count": 1}}, "ill": {"_count": 1, "weve": {"_count": 1}}, "free": {"_count": 1, "when": {"_count": 1}}, "turning": {"_count": 2, "they": {"_count": 1}, "hurriedly": {"_count": 1}}, "impressive": {"_count": 1, "creatures": {"_count": 1}}, "Father": {"_count": 1, "was": {"_count": 1}}, "transfixed": {"_count": 1, "until": {"_count": 1}}, "cobbled": {"_count": 1, "together": {"_count": 1}}, "sleepily": {"_count": 1, "and": {"_count": 1}}, "bore": {"_count": 1, "unmistakable": {"_count": 1}}, "savoring": {"_count": 1, "the": {"_count": 1}}, "landed": {"_count": 1, "at": {"_count": 1}}, "yawning": {"_count": 1, "": {"_count": 1}}, "passing": {"_count": 2, "back": {"_count": 1}, "very": {"_count": 1}}, "reading": {"_count": 1, "through": {"_count": 1}}, "sound": {"_count": 1, "more": {"_count": 1}}, "deliberately": {"_count": 1, "fell": {"_count": 1}}, "especially": {"_count": 1, "as": {"_count": 1}}, "hesitated": {"_count": 1, "outside": {"_count": 1}}, "first": {"_count": 3, "": {"_count": 1}, "through": {"_count": 1}, "He": {"_count": 1}}, "asked": {"_count": 1, "his": {"_count": 1}}, "croaked": {"_count": 1, "You": {"_count": 1}}, "lost": {"_count": 2, "in": {"_count": 2}}, "homework": {"_count": 3, "and": {"_count": 1}, "in": {"_count": 1}, "lessons": {"_count": 1}}, "ran": {"_count": 4, "for": {"_count": 1}, "as": {"_count": 1}, "after": {"_count": 1}, "up": {"_count": 1}}, "narrowly": {"_count": 2, "dodged": {"_count": 1}, "avoiding": {"_count": 1}}, "lifted": {"_count": 2, "their": {"_count": 2}}, "striking": {"_count": 1, "Katie": {"_count": 1}}, "complaining": {"_count": 1, "in": {"_count": 1}}, "hung": {"_count": 1, "back": {"_count": 1}}, "will": {"_count": 3, "clean": {"_count": 1}, "come": {"_count": 1}, "it": {"_count": 1}}, "insulting": {"_count": 1, "sir": {"_count": 1}}, "flying": {"_count": 1, "into": {"_count": 1}}, "rather": {"_count": 1, "sourly": {"_count": 1}}, "Terry": {"_count": 1, "Boots": {"_count": 1}}, "seventh": {"_count": 1, "years": {"_count": 1}}, "waved": {"_count": 1, "at": {"_count": 1}}, "accompanied": {"_count": 2, "by": {"_count": 2}}, "WEASLEY": {"_count": 1, "IS": {"_count": 1}}, "We": {"_count": 3, "do": {"_count": 1}, "just": {"_count": 1}, "dont": {"_count": 1}}, "whats": {"_count": 1, "that": {"_count": 1}}, "straight": {"_count": 1, "through": {"_count": 1}}, "quivering": {"_count": 1, "with": {"_count": 1}}, "squeezed": {"_count": 2, "past": {"_count": 1}, "in": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 2, "ter": {"_count": 1}, "to": {"_count": 1}}, "upside": {"_count": 2, "down": {"_count": 2}}, "convinced": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "heard": {"_count": 1, "it": {"_count": 1}}, "Ministry": {"_count": 1, "don": {"_count": 1}}, "an": {"_count": 3, "it": {"_count": 1}, "some": {"_count": 1}, "easier": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "preferred": {"_count": 1, "Professor": {"_count": 1}}, "\u2018Shows": {"_count": 1, "": {"_count": 1}}, "questions": {"_count": 1, "": {"_count": 1}}, "intoned": {"_count": 1, "Hermione": {"_count": 1}}, "neatly": {"_count": 1, "away": {"_count": 1}}, "understand": {"_count": 1, "": {"_count": 1}}, "stepped": {"_count": 3, "onto": {"_count": 1}, "out": {"_count": 1}, "back": {"_count": 1}}, "slightly": {"_count": 1, "ridiculous": {"_count": 1}}, "onward": {"_count": 1, "and": {"_count": 1}}, "malevolently": {"_count": 1, "as": {"_count": 1}}, "reflecting": {"_count": 1, "the": {"_count": 1}}, "forward": {"_count": 3, "to": {"_count": 1}, "between": {"_count": 1}, "imperiously": {"_count": 1}}, "seem": {"_count": 2, "to": {"_count": 1}, "likely": {"_count": 1}}, "afraid": {"_count": 1, "perhaps": {"_count": 1}}, "safe": {"_count": 3, "over": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "Merry": {"_count": 1, "Christmas": {"_count": 1}}, "peered": {"_count": 1, "haughtily": {"_count": 1}}, "diagnosing": {"_count": 1, "odd": {"_count": 1}}, "became": {"_count": 2, "infected": {"_count": 1}, "the": {"_count": 1}}, "sneering": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "dont": {"_count": 1}}, "did": {"_count": 3, "not": {"_count": 3}}, "noses": {"_count": 1, "flat": {"_count": 1}}, "exchanged": {"_count": 1, "lastminute": {"_count": 1}}, "struggled": {"_count": 1, "up": {"_count": 1}}, "fifth": {"_count": 1, "years": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "salamanders": {"_count": 1, "or": {"_count": 1}}, "nothing": {"_count": 1, "more": {"_count": 1}}, "flatly": {"_count": 1, "and": {"_count": 1}}, "including": {"_count": 1, "Pansy": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "breathed": {"_count": 1, "Rita": {"_count": 1}}, "Lee": {"_count": 1, "put": {"_count": 1}}, "happily": {"_count": 1, "for": {"_count": 1}}, "avidly": {"_count": 1, "": {"_count": 1}}, "concerning": {"_count": 1, "humiliations": {"_count": 1}}, "scuttled": {"_count": 1, "out": {"_count": 1}}, "tripping": {"_count": 1, "over": {"_count": 1}}, "wrongly": {"_count": 1, "": {"_count": 1}}, "producing": {"_count": 1, "a": {"_count": 1}}, "sprinting": {"_count": 1, "along": {"_count": 1}}, "Draco": {"_count": 1, "she": {"_count": 1}}, "singing": {"_count": 1, "softly": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}, "Filch": {"_count": 1, "": {"_count": 1}}, "repeatedly": {"_count": 2, "over": {"_count": 1}, "to": {"_count": 1}}, "leaving": {"_count": 3, "I": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 1}}, "truthfully": {"_count": 1, "that": {"_count": 1}}, "wanted": {"_count": 2, "to": {"_count": 2}}, "grunted": {"_count": 1, "loudly": {"_count": 1}}, "ter": {"_count": 1, "look": {"_count": 1}}, "tried": {"_count": 1, "very": {"_count": 1}}, "who": {"_count": 5, "seemed": {"_count": 1}, "had": {"_count": 2}, "stumbled": {"_count": 1}, "were": {"_count": 1}}, "hurrying": {"_count": 1, "toward": {"_count": 1}}, "Umbridge": {"_count": 1, "tripped": {"_count": 1}}, "paused": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "bellowing": {"_count": 1, "and": {"_count": 1}}, "smashing": {"_count": 1, "more": {"_count": 1}}, "ugly": {"_count": 1, "": {"_count": 1}}, "mutely": {"_count": 1, "to": {"_count": 1}}, "firmly": {"_count": 1, "back": {"_count": 1}}, "blocking": {"_count": 2, "their": {"_count": 2}}, "exploded": {"_count": 2, "as": {"_count": 2}}, "Colloportus": {"_count": 1, "gasped": {"_count": 1}}, "raised": {"_count": 4, "their": {"_count": 3}, "almost": {"_count": 1}}, "struck": {"_count": 1, "": {"_count": 1}}, "rigid": {"_count": 1, "as": {"_count": 1}}, "chased": {"_count": 2, "us": {"_count": 2}}, "grabbed": {"_count": 1, "Ginnys": {"_count": 1}}, "tore": {"_count": 1, "around": {"_count": 1}}, "Hermiones": {"_count": 1, "wand": {"_count": 1}}, "two": {"_count": 2, "more": {"_count": 1}, "of": {"_count": 1}}, "framed": {"_count": 1, "in": {"_count": 1}}, "pointless": {"_count": 1, "bustling": {"_count": 1}}, "behind": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "gave": {"_count": 1, "cries": {"_count": 1}}, "snatching": {"_count": 1, "up": {"_count": 1}}, "There": {"_count": 2, "is": {"_count": 1}, "was": {"_count": 1}}, "lots": {"_count": 1, "to": {"_count": 1}}, "gazing": {"_count": 1, "up": {"_count": 1}}, "take": {"_count": 2, "you": {"_count": 1}, "them": {"_count": 1}}, "rounded": {"_count": 1, "up": {"_count": 1}}, "Thats": {"_count": 1, "because": {"_count": 1}}, "bound": {"_count": 2, "in": {"_count": 2}}, "gently": {"_count": 1, "on": {"_count": 1}}, "tight": {"_count": 1, "": {"_count": 1}}, "111": {"_count": 1, "want": {"_count": 1}}, "gazed": {"_count": 1, "at": {"_count": 1}}, "somehow": {"_count": 2, "": {"_count": 1}, "less": {"_count": 1}}, "flowers": {"_count": 1, "": {"_count": 1}}, "strode": {"_count": 1, "out": {"_count": 1}}, "fast": {"_count": 1, "enough": {"_count": 1}}, "vanish": {"_count": 1, "they": {"_count": 1}}, "waiting": {"_count": 1, "trunks": {"_count": 1}}, "suspicious": {"_count": 1, "looks": {"_count": 1}}, "indeed": {"_count": 1, "for": {"_count": 1}}, "aside": {"_count": 1, "Crabbe": {"_count": 1}}, "chained": {"_count": 1, "shut": {"_count": 1}}, "burning": {"_count": 1, "him": {"_count": 1}}, "correctly": {"_count": 1, "merely": {"_count": 1}}, "glancing": {"_count": 1, "back": {"_count": 1}}, "showing": {"_count": 1, "people": {"_count": 1}}, "sniggered": {"_count": 1, "but": {"_count": 1}}, "concerned": {"_count": 1, "with": {"_count": 1}}, "watched": {"_count": 1, "Harry": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "purple": {"_count": 1, "in": {"_count": 1}}, "unexpectedly": {"_count": 1, "from": {"_count": 1}}, "Parvati": {"_count": 1, "suddenly": {"_count": 1}}, "Jimmy": {"_count": 1, "Peakes": {"_count": 1}}, "stated": {"_count": 1, "categorically": {"_count": 1}}, "float": {"_count": 1, "along": {"_count": 1}}, "rearranged": {"_count": 1, "their": {"_count": 1}}, "Leanne": {"_count": 1, "made": {"_count": 1}}, "hurt": {"_count": 2, "if": {"_count": 2}}, "consciously": {"_count": 1, "": {"_count": 1}}, "Slughorns": {"_count": 1, "going": {"_count": 1}}, "scored": {"_count": 1, "by": {"_count": 1}}, "mentioned": {"_count": 1, "Ginny": {"_count": 1}}, "collide": {"_count": 1, "": {"_count": 1}}, "glinting": {"_count": 1, "brightly": {"_count": 1}}, "burst": {"_count": 1, "open": {"_count": 1}}, "disguised": {"_count": 1, "as": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "ten": {"_count": 1, "seconds": {"_count": 1}}, "young": {"_count": 1, "he": {"_count": 1}}, "trooped": {"_count": 1, "out": {"_count": 1}}, "actually": {"_count": 3, "mention": {"_count": 1}, "": {"_count": 1}, "asked": {"_count": 1}}, "abusing": {"_count": 1, "the": {"_count": 1}}, "only": {"_count": 3, "a": {"_count": 1}, "by": {"_count": 1}, "slightly": {"_count": 1}}, "during": {"_count": 2, "Professor": {"_count": 1}, "their": {"_count": 1}}, "enter": {"_count": 1, "at": {"_count": 1}}, "clenchjawed": {"_count": 1, "and": {"_count": 1}}, "instructions": {"_count": 1, "said": {"_count": 1}}, "grudgingly": {"_count": 1, "": {"_count": 1}}, "oh": {"_count": 1, "look": {"_count": 1}}, "exchange": {"_count": 1, "a": {"_count": 1}}, "suggested": {"_count": 2, "that": {"_count": 1}, "some": {"_count": 1}}, "thoroughly": {"_count": 1, "I": {"_count": 1}}, "friends": {"_count": 1, "said": {"_count": 1}}, "Nott": {"_count": 1, "Rosier": {"_count": 1}}, "Marvolos": {"_count": 1, "goldandblack": {"_count": 1}}, "shaking": {"_count": 1, "their": {"_count": 1}}, "unceremoniously": {"_count": 1, "in": {"_count": 1}}, "water": {"_count": 1, "streaming": {"_count": 1}}, "horrible": {"_count": 1, "and": {"_count": 1}}, "less": {"_count": 1, "peaceable": {"_count": 1}}, "crumpled": {"_count": 2, "but": {"_count": 1}, "against": {"_count": 1}}, "stumbled": {"_count": 1, "one": {"_count": 1}}, "merely": {"_count": 1, "stepped": {"_count": 1}}, "Now": {"_count": 1, "Draco": {"_count": 1}}, "Amycus": {"_count": 1, "was": {"_count": 1}}, "cracking": {"_count": 1, "stone": {"_count": 1}}, "Hagrids": {"_count": 1, "house": {"_count": 1}}, "CALL": {"_count": 1, "ME": {"_count": 1}}, "Death": {"_count": 3, "Eaters": {"_count": 3}}, "light": {"_count": 1, "flooding": {"_count": 1}}, "Gibbon": {"_count": 1, "broke": {"_count": 1}}, "blocked": {"_count": 1, "the": {"_count": 1}}, "within": {"_count": 4, "reach": {"_count": 2}, "minutes": {"_count": 1}, "occasional": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "bossing": {"_count": 1, "them": {"_count": 1}}, "broke": {"_count": 1, "step": {"_count": 1}}, "burn": {"_count": 1, "them": {"_count": 1}}, "answered": {"_count": 1, "him": {"_count": 1}}, "brooms": {"_count": 1, "thestrals": {"_count": 1}}, "youd": {"_count": 1, "take": {"_count": 1}}, "aiming": {"_count": 1, "for": {"_count": 1}}, "The": {"_count": 2, "closest": {"_count": 1}, "door": {"_count": 1}}, "quite": {"_count": 3, "a": {"_count": 1}, "clearly": {"_count": 2}}, "zoom": {"_count": 1, "toward": {"_count": 1}}, "draw": {"_count": 1, "closer": {"_count": 1}}, "Voldemort": {"_count": 1, "chased": {"_count": 1}}, "those": {"_count": 1, "": {"_count": 1}}, "spiraling": {"_count": 1, "around": {"_count": 1}}, "adding": {"_count": 1, "their": {"_count": 1}}, "better": {"_count": 1, "": {"_count": 1}}, "shout": {"_count": 1, "Protego": {"_count": 1}}, "drew": {"_count": 1, "their": {"_count": 1}}, "itd": {"_count": 1, "be": {"_count": 1}}, "faster": {"_count": 1, "and": {"_count": 1}}, "Kreacher": {"_count": 1, "I": {"_count": 1}}, "willingly": {"_count": 1, "and": {"_count": 1}}, "abroad": {"_count": 1, "if": {"_count": 1}}, "My": {"_count": 1, "sister": {"_count": 1}}, "goblets": {"_count": 1, "again": {"_count": 1}}, "might": {"_count": 2, "glance": {"_count": 1}, "have": {"_count": 1}}, "blinking": {"_count": 1, "a": {"_count": 1}}, "today": {"_count": 1, "wasnt": {"_count": 1}}, "clattered": {"_count": 1, "open": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}, "trundled": {"_count": 1, "downward": {"_count": 1}}, "He": {"_count": 1, "still": {"_count": 1}}, "swallowed": {"_count": 1, "him": {"_count": 1}}, "melding": {"_count": 1, "into": {"_count": 1}}, "accused": {"_count": 1, "Muggleborns": {"_count": 1}}, "wrong": {"_count": 1, "and": {"_count": 1}}, "push": {"_count": 1, "them": {"_count": 1}}, "huddled": {"_count": 1, "a": {"_count": 1}}, "dared": {"_count": 1, "say": {"_count": 1}}, "tantalizingly": {"_count": 1, "close": {"_count": 1}}, "nowhere": {"_count": 1, "effing": {"_count": 1}}, "pretend": {"_count": 1, "youve": {"_count": 1}}, "knowing": {"_count": 2, "deep": {"_count": 1}, "that": {"_count": 1}}, "stooping": {"_count": 1, "to": {"_count": 1}}, "aloud": {"_count": 1, "": {"_count": 1}}, "boiling": {"_count": 1, "hot": {"_count": 1}}, "fall": {"_count": 1, "his": {"_count": 1}}, "silhouetted": {"_count": 1, "by": {"_count": 1}}, "bouncing": {"_count": 1, "from": {"_count": 1}}, "tucked": {"_count": 1, "them": {"_count": 1}}, "Harrys": {"_count": 1, "feet": {"_count": 1}}, "scarlet": {"_count": 1, "and": {"_count": 1}}, "Rons": {"_count": 1, "face": {"_count": 1}}, "got": {"_count": 1, "into": {"_count": 1}}, "concentrating": {"_count": 1, "so": {"_count": 1}}, "noiselessly": {"_count": 1, "from": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "if": {"_count": 2, "the": {"_count": 2}}, "Sorry": {"_count": 1, "interjected": {"_count": 1}}, "flapping": {"_count": 1, "his": {"_count": 1}}, "lessons": {"_count": 1, "isnt": {"_count": 1}}, "can": {"_count": 1, "said": {"_count": 1}}, "done": {"_count": 1, "anything": {"_count": 1}}, "three": {"_count": 1, "objects": {"_count": 1}}, "perhaps": {"_count": 1, "because": {"_count": 1}}, "moving": {"_count": 1, "": {"_count": 1}}, "sighed": {"_count": 1, "Hermione": {"_count": 1}}, "someone": {"_count": 1, "had": {"_count": 1}}, "Potters": {"_count": 1, "friends": {"_count": 1}}, "against": {"_count": 2, "one": {"_count": 1}, "each": {"_count": 1}}, "straightaway": {"_count": 1, "": {"_count": 1}}, "recreate": {"_count": 1, "the": {"_count": 1}}, "obscure": {"_count": 1, "that": {"_count": 1}}, "buried": {"_count": 1, "with": {"_count": 1}}, "high": {"_count": 2, "in": {"_count": 2}}, "Fleur": {"_count": 1, "was": {"_count": 1}}, "glanced": {"_count": 1, "back": {"_count": 1}}, "moaning": {"_count": 1, "to": {"_count": 1}}, "curiously": {"_count": 1, "until": {"_count": 1}}, "Marius": {"_count": 1, "": {"_count": 1}}, "barring": {"_count": 1, "access": {"_count": 1}}, "buckled": {"_count": 1, "and": {"_count": 1}}, "wed": {"_count": 1, "come": {"_count": 1}}, "visible": {"_count": 1, "because": {"_count": 1}}, "growing": {"_count": 1, "bigger": {"_count": 1}}, "mad": {"_count": 1, "": {"_count": 1}}, "kids": {"_count": 1, "up": {"_count": 1}}, "tightly": {"_count": 1, "together": {"_count": 1}}, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}, "smaller": {"_count": 1, "others": {"_count": 1}}, "wizards": {"_count": 1, "and": {"_count": 1}}, "fighting": {"_count": 1, "": {"_count": 1}}, "All": {"_count": 1, "was": {"_count": 1}}, "hitting": {"_count": 1, "Goyle": {"_count": 1}}, "licking": {"_count": 1, "up": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "dueling": {"_count": 1, "masked": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "knocking": {"_count": 1, "the": {"_count": 1}}, "blow": {"_count": 1, "his": {"_count": 1}}, "Her": {"_count": 1, "hair": {"_count": 1}}, "large": {"_count": 1, "though": {"_count": 1}}, "dropping": {"_count": 1, "Snargaluff": {"_count": 1}}, "grew": {"_count": 1, "suddenly": {"_count": 1}}, "sucking": {"_count": 1, "their": {"_count": 1}}, "fixed": {"_count": 1, "blank": {"_count": 1}}, "hurried": {"_count": 1, "toward": {"_count": 1}}, "silence": {"_count": 1, "fell": {"_count": 1}}, "grows": {"_count": 1, "ever": {"_count": 1}}, "although": {"_count": 1, "no": {"_count": 1}}, "long": {"_count": 1, "ago": {"_count": 1}}, "They": {"_count": 1, "were": {"_count": 1}}, "beseeching": {"_count": 1, "him": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "whimpered": {"_count": 1, "but": {"_count": 1}}, "survive": {"_count": 1, "though": {"_count": 1}}, "curseproof": {"_count": 1, "": {"_count": 1}}, "barely": {"_count": 1, "disturbed": {"_count": 1}}, "jerked": {"_count": 1, "and": {"_count": 1}}, "spreading": {"_count": 1, "out": {"_count": 1}}, "pressing": {"_count": 1, "in": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "wee": {"_count": 1, "Potters": {"_count": 1}}, "hooted": {"_count": 1, "indignantly": {"_count": 1}}, "Al": {"_count": 1, "said": {"_count": 1}}}, "noticed": {"_count": 223, "a": {"_count": 14, "large": {"_count": 2}, "grubby": {"_count": 1}, "shiny": {"_count": 1}, "definite": {"_count": 1}, "number": {"_count": 1}, "dull": {"_count": 1}, "patch": {"_count": 1}, "witch": {"_count": 1}, "thing": {"_count": 1}, "raised": {"_count": 1}, "badly": {"_count": 1}, "ring": {"_count": 1}, "small": {"_count": 1}}, "the": {"_count": 16, "first": {"_count": 2}, "night": {"_count": 1}, "hat": {"_count": 1}, "year": {"_count": 1}, "entrance": {"_count": 1}, "black": {"_count": 1}, "emblem": {"_count": 1}, "sound": {"_count": 1}, "large": {"_count": 1}, "corner": {"_count": 1}, "woman": {"_count": 1}, "latecomer": {"_count": 1}, "curly": {"_count": 1}, "two": {"_count": 1}, "past": {"_count": 1}}, "somethings": {"_count": 1, "going": {"_count": 1}}, "it": {"_count": 7, "was": {"_count": 2}, "sneaking": {"_count": 1}, "too": {"_count": 1}, "had": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}}, "very": {"_count": 2, "long": {"_count": 1}, "crudely": {"_count": 1}}, "he": {"_count": 5, "gripped": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}, "hasnt": {"_count": 1}, "had": {"_count": 1}}, "that": {"_count": 55, "he": {"_count": 5}, "the": {"_count": 8}, "a": {"_count": 3}, "they": {"_count": 4}, "she": {"_count": 4}, "Harrys": {"_count": 1}, "it": {"_count": 2}, "after": {"_count": 1}, "Fred": {"_count": 1}, "her": {"_count": 4}, "Malfoy": {"_count": 1}, "about": {"_count": 1}, "his": {"_count": 1}, "before": {"_count": 1}, "Rons": {"_count": 1}, "Percy": {"_count": 1}, "Ron": {"_count": 1}, "several": {"_count": 2}, "Hermione": {"_count": 1}, "two": {"_count": 1}, "many": {"_count": 2}, "six": {"_count": 1}, "Potter": {"_count": 1}, "there": {"_count": 1}, "we": {"_count": 1}, "Mrs": {"_count": 1}, "Tom": {"_count": 1}, "last": {"_count": 1}, "every": {"_count": 1}, "you": {"_count": 1}}, "shes": {"_count": 1, "got": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 2}}, "anything": {"_count": 4, "about": {"_count": 1}, "": {"_count": 2}, "It": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 2}, "glance": {"_count": 1}, "sneaking": {"_count": 1}}, "too": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 4, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "Mrs": {"_count": 1}, "Dumbledore": {"_count": 1}}, "anythin": {"_count": 1, "strange": {"_count": 1}}, "in": {"_count": 3, "time": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 2, "Harry": {"_count": 1}, "until": {"_count": 1}}, "you": {"_count": 3, "vanishing": {"_count": 1}, "and": {"_count": 1}, "hadnt": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 14}, "?": {"_count": 2}, "!": {"_count": 2}}, "Hagrids": {"_count": 1, "flowery": {"_count": 1}}, "was": {"_count": 4, "still": {"_count": 1}, "keeping": {"_count": 1}, "eyeing": {"_count": 1}, "merely": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "something": {"_count": 4, "rather": {"_count": 1}, "else": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "suddenly": {"_count": 1, "Riddles": {"_count": 1}}, "Harry": {"_count": 5, "enter": {"_count": 1}, "which": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "wince": {"_count": 1}}, "what": {"_count": 2, "he": {"_count": 2}}, "Winky": {"_count": 1, "lying": {"_count": 1}}, "them": {"_count": 3, "all": {"_count": 1}, "vanish": {"_count": 1}, "collide": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "their": {"_count": 2, "sudden": {"_count": 1}, "absence": {"_count": 1}}, "where": {"_count": 2, "his": {"_count": 1}, "they": {"_count": 1}}, "her": {"_count": 4, "eyes": {"_count": 1}, "return": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "Fleur": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 3, "tone": {"_count": 1}, "third": {"_count": 1}, "father": {"_count": 1}}, "how": {"_count": 3, "much": {"_count": 1}, "you": {"_count": 1}, "none": {"_count": 1}}, "Karkaroff": {"_count": 2, "watching": {"_count": 1}, "began": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 2, "skirting": {"_count": 1}, "on": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "nothing": {"_count": 3, "": {"_count": 2}, "he": {"_count": 1}}, "people": {"_count": 1, "putting": {"_count": 1}}, "nor": {"_count": 1, "cared": {"_count": 1}}, "earlier": {"_count": 1, "stumbled": {"_count": 1}}, "Hermione": {"_count": 1, "she": {"_count": 1}}, "had": {"_count": 1, "balled": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "nobody": {"_count": 1, "believes": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "ropes": {"_count": 1, "thick": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "Mother": {"_count": 1, "": {"_count": 1}}, "Riddles": {"_count": 1, "reaction": {"_count": 1}}, "Ron": {"_count": 2, "that": {"_count": 1}, "looking": {"_count": 1}}, "hes": {"_count": 1, "not": {"_count": 1}}, "she": {"_count": 1, "appeared": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "Professor": {"_count": 1, "how": {"_count": 1}}, "another": {"_count": 1, "photograph": {"_count": 1}}, "mate": {"_count": 1, "calling": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "weve": {"_count": 1, "found": {"_count": 1}}, "we": {"_count": 1, "broke": {"_count": 1}}, "until": {"_count": 1, "that": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "set": {"_count": 1, "some": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "tawny": {"_count": 7, "owl": {"_count": 3, "flutter": {"_count": 1}, "soared": {"_count": 1}, "landed": {"_count": 1}}, "one": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 1, "hurried": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hair": {"_count": 1, "and": {"_count": 1}}}, "owl": {"_count": 235, "flutter": {"_count": 2, "past": {"_count": 1}, "toward": {"_count": 1}}, "after": {"_count": 1, "owl": {"_count": 1}}, "sped": {"_count": 1, "overhead": {"_count": 1}}, "even": {"_count": 1, "at": {"_count": 1}}, "by": {"_count": 1, "no": {"_count": 1}}, "": {"_count": 31, "?": {"_count": 6}, ".": {"_count": 23}, "!": {"_count": 2}}, "a": {"_count": 4, "real": {"_count": 1}, "long": {"_count": 1}, "handsome": {"_count": 1}, "Knut": {"_count": 1}}, "which": {"_count": 3, "clamped": {"_count": 1}, "was": {"_count": 1}, "landed": {"_count": 1}}, "out": {"_count": 3, "into": {"_count": 1}, "of": {"_count": 1}, "by": {"_count": 1}}, "rapping": {"_count": 1, "its": {"_count": 1}}, "swooped": {"_count": 4, "in": {"_count": 2}, "through": {"_count": 1}, "back": {"_count": 1}}, "then": {"_count": 3, "fluttered": {"_count": 1}, "George": {"_count": 1}, "he": {"_count": 1}}, "Pay": {"_count": 1, "him": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "OR": {"_count": 1, "a": {"_count": 1}}, "fast": {"_count": 1, "asleep": {"_count": 1}}, "asleep": {"_count": 1, "in": {"_count": 1}}, "shell": {"_count": 1, "know": {"_count": 1}}, "for": {"_count": 2, "company": {"_count": 1}, "a": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "telling": {"_count": 1, "me": {"_count": 1}}, "from": {"_count": 6, "my": {"_count": 1}, "the": {"_count": 2}, "Percy": {"_count": 1}, "Father": {"_count": 1}, "Dumbledore": {"_count": 1}}, "was": {"_count": 12, "always": {"_count": 1}, "so": {"_count": 1}, "still": {"_count": 1}, "off": {"_count": 1}, "waiting": {"_count": 1}, "twittering": {"_count": 2}, "soaring": {"_count": 1}, "sitting": {"_count": 1}, "sent": {"_count": 1}, "standing": {"_count": 1}, "asleep": {"_count": 1}}, "brought": {"_count": 1, "Neville": {"_count": 1}}, "dropped": {"_count": 3, "a": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 2}}, "hooted": {"_count": 3, "loudly": {"_count": 1}, "somewhere": {"_count": 2}}, "to": {"_count": 11, "Charlie": {"_count": 1}, "Mr": {"_count": 1}, "Bill": {"_count": 1}, "Dumbledore": {"_count": 1}, "Madame": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 2}, "say": {"_count": 1}, "stop": {"_count": 1}, "Albus": {"_count": 1}}, "and": {"_count": 4, "this": {"_count": 1}, "a": {"_count": 2}, "trolley": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "itll": {"_count": 1, "have": {"_count": 1}}, "eating": {"_count": 1, "banquets": {"_count": 1}}, "Hedwig": {"_count": 6, "inside": {"_count": 1}, "out": {"_count": 1}, "usually": {"_count": 1}, "was": {"_count": 1}, "safely": {"_count": 1}, "one": {"_count": 1}}, "had": {"_count": 12, "delivered": {"_count": 1}, "never": {"_count": 1}, "dropped": {"_count": 1}, "landed": {"_count": 2}, "flown": {"_count": 1}, "died": {"_count": 1}, "departed": {"_count": 1}, "brought": {"_count": 1}, "barely": {"_count": 1}, "been": {"_count": 2}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "of": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "clicked": {"_count": 2, "her": {"_count": 2}}, "youve": {"_count": 1, "got": {"_count": 1}}, "They": {"_count": 1, "made": {"_count": 1}}, "perched": {"_count": 2, "on": {"_count": 2}}, "ahead": {"_count": 1, "to": {"_count": 1}}, "landed": {"_count": 4, "in": {"_count": 3}, "with": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 1}, "hooting": {"_count": 1}, "zooming": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "safely": {"_count": 1, "out": {"_count": 1}}, "post": {"_count": 3, "Buckbeak": {"_count": 1}, "": {"_count": 1}, "entering": {"_count": 1}}, "falls": {"_count": 1, "into": {"_count": 1}}, "will": {"_count": 2, "find": {"_count": 1}, "be": {"_count": 1}}, "as": {"_count": 3, "its": {"_count": 1}, "they": {"_count": 1}, "requested": {"_count": 1}}, "Errol": {"_count": 1, "with": {"_count": 1}}, "small": {"_count": 1, "enough": {"_count": 1}}, "flew": {"_count": 2, "low": {"_count": 1}, "through": {"_count": 1}}, "fluttered": {"_count": 2, "down": {"_count": 1}, "obligingly": {"_count": 1}}, "should": {"_count": 1, "behave": {"_count": 1}}, "that": {"_count": 6, "had": {"_count": 1}, "keeps": {"_count": 1}, "night": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "delivered": {"_count": 1}}, "Pig": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 2, "that": {"_count": 1}, "security": {"_count": 1}}, "soared": {"_count": 1, "down": {"_count": 1}}, "droppings": {"_count": 3, "and": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "took": {"_count": 3, "the": {"_count": 1}, "off": {"_count": 2}}, "is": {"_count": 1, "intercepted": {"_count": 1}}, "I": {"_count": 1, "swore": {"_count": 1}}, "complaining": {"_count": 1, "about": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "felt": {"_count": 1}}, "back": {"_count": 2, "straight": {"_count": 1}, "the": {"_count": 1}}, "opening": {"_count": 1, "it": {"_count": 1}}, "would": {"_count": 1, "swoop": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "soaring": {"_count": 1, "through": {"_count": 1}}, "the": {"_count": 1, "moment": {"_count": 1}}, "arrived": {"_count": 2, "for": {"_count": 1}, "bearing": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "stuck": {"_count": 1, "out": {"_count": 1}}, "came": {"_count": 1, "shooting": {"_count": 1}}, "zoomed": {"_count": 1, "down": {"_count": 1}}, "Pigwidgeon": {"_count": 3, "zoomed": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 3, "youve": {"_count": 1}, "before": {"_count": 1}, "no": {"_count": 1}}, "Alastors": {"_count": 1, "going": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "bearing": {"_count": 2, "a": {"_count": 2}}, "snapped": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "departed": {"_count": 1, "at": {"_count": 1}}, "shes": {"_count": 2, "so": {"_count": 1}, "injured": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "should": {"_count": 1}}, "turning": {"_count": 1, "into": {"_count": 1}}, "tremble": {"_count": 1, "": {"_count": 1}}, "nuts": {"_count": 2, "for": {"_count": 1}, "through": {"_count": 1}}, "Ive": {"_count": 1, "no": {"_count": 1}}, "landing": {"_count": 1, "in": {"_count": 1}}, "early": {"_count": 1, "that": {"_count": 1}}, "cages": {"_count": 1, "each": {"_count": 1}}, "screeched": {"_count": 1, "and": {"_count": 1}}, "lay": {"_count": 1, "motionless": {"_count": 1}}, "all": {"_count": 1, "were": {"_count": 1}}, "tapping": {"_count": 1, "at": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}}, "flutter": {"_count": 12, "past": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "toward": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 3, "tiny": {"_count": 1}, "nervous": {"_count": 1}, "panic": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "sway": {"_count": 1}}, "around": {"_count": 1, "their": {"_count": 1}}, "excitedly": {"_count": 1, "around": {"_count": 1}}, "feebly": {"_count": 1, "": {"_count": 1}}}, "past": {"_count": 441, "the": {"_count": 76, "window": {"_count": 8}, "tree": {"_count": 1}, "glass": {"_count": 3}, "doorway": {"_count": 1}, "end": {"_count": 1}, "tower": {"_count": 2}, "hospital": {"_count": 1}, "giant": {"_count": 1}, "door": {"_count": 2}, "mundane": {"_count": 1}, "dementors": {"_count": 1}, "class": {"_count": 1}, "Three": {"_count": 1}, "Slytherin": {"_count": 2}, "security": {"_count": 1}, "knees": {"_count": 1}, "Slytherins": {"_count": 1}, "sniggering": {"_count": 1}, "Swedish": {"_count": 1}, "trees": {"_count": 1}, "dragon": {"_count": 1}, "Horntail": {"_count": 1}, "paddock": {"_count": 1}, "rock": {"_count": 1}, "obstacles": {"_count": 1}, "Beauxbatons": {"_count": 3}, "lake": {"_count": 2}, "stone": {"_count": 1}, "thing": {"_count": 1}, "heads": {"_count": 1}, "Auror": {"_count": 1}, "golden": {"_count": 1}, "stuffed": {"_count": 1}, "many": {"_count": 1}, "stage": {"_count": 1}, "post": {"_count": 1}, "silent": {"_count": 1}, "trolls": {"_count": 1}, "two": {"_count": 1}, "conductor": {"_count": 1}, "blank": {"_count": 1}, "torches": {"_count": 1}, "gargoyle": {"_count": 2}, "windows": {"_count": 2}, "clearing": {"_count": 1}, "herd": {"_count": 1}, "examiners": {"_count": 1}, "fountain": {"_count": 1}, "bell": {"_count": 1}, "shimmering": {"_count": 1}, "Gaunt": {"_count": 1}, "open": {"_count": 1}, "place": {"_count": 1}, "gaggle": {"_count": 1}, "second": {"_count": 1}, "gate": {"_count": 1}, "long": {"_count": 1}, "hole": {"_count": 1}, "gap": {"_count": 1}}, "eight": {"_count": 3, "Mr": {"_count": 1}, "that": {"_count": 1}, "tonight": {"_count": 1}}, "in": {"_count": 5, "broad": {"_count": 1}, "my": {"_count": 1}, "pursuit": {"_count": 1}, "great": {"_count": 1}, "the": {"_count": 1}}, "them": {"_count": 27, "clutching": {"_count": 1}, "but": {"_count": 2}, "whistling": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 5}, "as": {"_count": 2}, "grinning": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}, "one": {"_count": 1}, "sniggering": {"_count": 1}, "his": {"_count": 1}, "landing": {"_count": 1}, "striking": {"_count": 1}, "that": {"_count": 1}, "did": {"_count": 1}, "until": {"_count": 1}, "again": {"_count": 1}, "pushing": {"_count": 1}}, "him": {"_count": 40, "Harry": {"_count": 2}, "": {"_count": 6}, "so": {"_count": 1}, "missing": {"_count": 1}, "without": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 3}, "with": {"_count": 1}, "still": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 1}, "until": {"_count": 1}, "up": {"_count": 1}, "like": {"_count": 1}, "into": {"_count": 4}, "Ron": {"_count": 1}, "and": {"_count": 5}, "was": {"_count": 1}, "heading": {"_count": 1}, "sprang": {"_count": 1}, "their": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 1}, "The": {"_count": 1}, "the": {"_count": 1}}, "ten": {"_count": 1, "": {"_count": 1}}, "fields": {"_count": 1, "full": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 18}, "?": {"_count": 1}, "!": {"_count": 1}}, "twelve": {"_count": 2, "there": {"_count": 1}, "": {"_count": 1}}, "Quirrells": {"_count": 1, "turban": {"_count": 1}}, "twice": {"_count": 1, "already": {"_count": 1}}, "that": {"_count": 7, "threeheaded": {"_count": 2}, "beast": {"_count": 1}, "the": {"_count": 1}, "dragon": {"_count": 1}, "was": {"_count": 1}, "sign": {"_count": 1}}, "Snape": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "his": {"_count": 9, "head": {"_count": 1}, "dragon": {"_count": 2}, "elbow": {"_count": 1}, "scar": {"_count": 1}, "chair": {"_count": 1}, "staring": {"_count": 1}, "right": {"_count": 1}, "left": {"_count": 1}}, "and": {"_count": 4, "Harry": {"_count": 3}, "they": {"_count": 1}}, "Fluffy": {"_count": 9, "and": {"_count": 2}, "": {"_count": 5}, "arent": {"_count": 1}, "go": {"_count": 1}}, "a": {"_count": 11, "giant": {"_count": 1}, "mossy": {"_count": 1}, "snowcapped": {"_count": 1}, "large": {"_count": 1}, "dragon": {"_count": 3}, "stooped": {"_count": 1}, "pair": {"_count": 1}, "boy": {"_count": 1}, "group": {"_count": 1}}, "so": {"_count": 1, "it": {"_count": 1}}, "than": {"_count": 1, "a": {"_count": 1}}, "weeks": {"_count": 1, "": {"_count": 1}}, "McGonagalls": {"_count": 1, "giant": {"_count": 1}}, "Muggle": {"_count": 1, "towns": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "seven": {"_count": 1, "in": {"_count": 1}}, "nine": {"_count": 6, "": {"_count": 2}, "on": {"_count": 1}, "this": {"_count": 1}, "which": {"_count": 2}}, "swirls": {"_count": 1, "and": {"_count": 1}}, "muttering": {"_count": 1, "portraits": {"_count": 1}}, "Harry": {"_count": 20, "Ron": {"_count": 3}, "without": {"_count": 1}, "making": {"_count": 1}, "and": {"_count": 5}, "as": {"_count": 1}, "Crookshanks": {"_count": 1}, "toward": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 1}, "into": {"_count": 1}, "who": {"_count": 1}, "some": {"_count": 1}, "by": {"_count": 1}}, "Filchs": {"_count": 1, "chair": {"_count": 1}}, "Wood": {"_count": 1, "A": {"_count": 1}}, "classrooms": {"_count": 1, "where": {"_count": 1}}, "midnight": {"_count": 11, "": {"_count": 4}, "when": {"_count": 2}, "he": {"_count": 1}, "and": {"_count": 1}, "there": {"_count": 1}, "secret": {"_count": 1}, "much": {"_count": 1}}, "present": {"_count": 1, "and": {"_count": 1}}, "Harrys": {"_count": 5, "ear": {"_count": 2}, "right": {"_count": 1}, "future": {"_count": 1}, "head": {"_count": 1}}, "three": {"_count": 2, "cuffing": {"_count": 1}, "said": {"_count": 1}}, "Hedwigs": {"_count": 1, "large": {"_count": 1}}, "dealings": {"_count": 1, "with": {"_count": 1}}, "packed": {"_count": 1, "compartments": {"_count": 1}}, "Professor": {"_count": 4, "Lupin": {"_count": 2}, "Sprout": {"_count": 1}, "McGonagall": {"_count": 1}}, "Hermione": {"_count": 2, "to": {"_count": 1}, "without": {"_count": 1}}, "Parvati": {"_count": 1, "": {"_count": 1}}, "four": {"_count": 3, "": {"_count": 1}, "weeks": {"_count": 2}}, "blurred": {"_count": 1, "red": {"_count": 1}}, "em": {"_count": 1, "evry": {"_count": 1}}, "with": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "Katie": {"_count": 1, "in": {"_count": 1}}, "or": {"_count": 1, "future": {"_count": 1}}, "Whoa": {"_count": 1, "": {"_count": 1}}, "week": {"_count": 3, "had": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "five": {"_count": 6, "": {"_count": 2}, "from": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}, "years": {"_count": 1}}, "he": {"_count": 2, "heard": {"_count": 1}, "opened": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "your": {"_count": 2, "brave": {"_count": 1}, "dragon": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "her": {"_count": 11, "bottom": {"_count": 1}, "collar": {"_count": 1}, "with": {"_count": 2}, "in": {"_count": 1}, "several": {"_count": 1}, "without": {"_count": 1}, "out": {"_count": 2}, "around": {"_count": 1}, "and": {"_count": 1}}, "disfigures": {"_count": 1, "the": {"_count": 1}}, "havent": {"_count": 1, "they": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "Krum": {"_count": 1, "to": {"_count": 1}}, "eleven": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 2}, "into": {"_count": 1}}, "but": {"_count": 2, "all": {"_count": 1}, "Coote": {"_count": 1}}, "one": {"_count": 4, "of": {"_count": 1}, "or": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "throwing": {"_count": 1, "Hermione": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 4, "hour": {"_count": 2}, "empty": {"_count": 1}, "enormous": {"_count": 1}}, "Myrtle": {"_count": 1, "who": {"_count": 1}}, "sending": {"_count": 1, "Colin": {"_count": 1}}, "Dervish": {"_count": 2, "and": {"_count": 2}}, "my": {"_count": 1, "cell": {"_count": 1}}, "Mad": {"_count": 1, "Eye": {"_count": 1}}, "Dumbledore": {"_count": 4, "": {"_count": 1}, "pulling": {"_count": 1}, "and": {"_count": 2}}, "monstrous": {"_count": 1, "creatures": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "endurance": {"_count": 4, "please": {"_count": 1}, "He": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "learn": {"_count": 1, "his": {"_count": 1}}, "Malfoy": {"_count": 1, "Crabbe": {"_count": 1}}, "month": {"_count": 2, "was": {"_count": 1}, "that": {"_count": 1}}, "midday": {"_count": 1, "when": {"_count": 1}}, "events": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 1, "a": {"_count": 1}}, "Neville": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "window": {"_count": 1, "after": {"_count": 1}}, "Ron": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "fortnight": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "Zonkos": {"_count": 1, "Joke": {"_count": 1}}, "dragons": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 1, "bit": {"_count": 1}}, "their": {"_count": 3, "table": {"_count": 1}, "door": {"_count": 1}, "house": {"_count": 1}}, "Spinnet": {"_count": 1, "come": {"_count": 1}}, "Warrington": {"_count": 1, "shes": {"_count": 1}}, "Hagrid": {"_count": 2, "into": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 2, "their": {"_count": 1}, "horses": {"_count": 1}}, "its": {"_count": 1, "usual": {"_count": 1}}, "under": {"_count": 1, "my": {"_count": 1}}, "rough": {"_count": 1, "stone": {"_count": 1}}, "quarter": {"_count": 1, "of": {"_count": 1}}, "squeaking": {"_count": 1, "slightly": {"_count": 1}}, "Umbridge": {"_count": 1, "and": {"_count": 1}}, "decade": {"_count": 1, "the": {"_count": 1}}, "six": {"_count": 2, "months": {"_count": 2}}, "Peeves": {"_count": 1, "who": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "amid": {"_count": 1, "the": {"_count": 1}}, "dueling": {"_count": 1, "so": {"_count": 1}}, "Ginny": {"_count": 1, "who": {"_count": 1}}, "caring": {"_count": 1, "what": {"_count": 1}}, "fifteen": {"_count": 1, "years": {"_count": 1}}, "entrusted": {"_count": 1, "me": {"_count": 1}}, "year": {"_count": 1, "": {"_count": 1}}, "few": {"_count": 1, "days": {"_count": 1}}, "descending": {"_count": 1, "onto": {"_count": 1}}, "give": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 2, "Snape": {"_count": 1}, "Hermione": {"_count": 1}}, "which": {"_count": 1, "caused": {"_count": 1}}, "smirking": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "into": {"_count": 1}}, "then": {"_count": 1, "resumed": {"_count": 1}}, "though": {"_count": 1, "not": {"_count": 1}}, "bluish": {"_count": 1, "flecks": {"_count": 1}}, "Filch": {"_count": 1, "who": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "McGonagall": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "transformed": {"_count": 1}}, "Snapes": {"_count": 1, "head": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 2}}, "up": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "Lilys": {"_count": 1, "and": {"_count": 1}}, "Dumbledores": {"_count": 1, "mother": {"_count": 1}}, "more": {"_count": 1, "windows": {"_count": 1}}, "several": {"_count": 1, "houses": {"_count": 1}}, "wearing": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "carrying": {"_count": 1}}, "Travers": {"_count": 1, "who": {"_count": 1}}, "misdeeds": {"_count": 1, "through": {"_count": 1}}, "tense": {"_count": 1, "": {"_count": 1}}, "suits": {"_count": 1, "of": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "swinging": {"_count": 1, "what": {"_count": 1}}, "shepherded": {"_count": 1, "by": {"_count": 1}}, "struggling": {"_count": 1, "prisoners": {"_count": 1}}}, "window": {"_count": 419, "": {"_count": 128, ".": {"_count": 124}, "!": {"_count": 1}, "?": {"_count": 3}}, "in": {"_count": 12, "his": {"_count": 2}, "the": {"_count": 8}, "a": {"_count": 1}, "front": {"_count": 1}}, "and": {"_count": 52, "peered": {"_count": 1}, "jerked": {"_count": 1}, "wondered": {"_count": 2}, "pushing": {"_count": 1}, "passed": {"_count": 1}, "before": {"_count": 1}, "out": {"_count": 2}, "saw": {"_count": 2}, "waved": {"_count": 1}, "peering": {"_count": 1}, "a": {"_count": 2}, "Hedwig": {"_count": 1}, "rescue": {"_count": 1}, "tried": {"_count": 1}, "drew": {"_count": 1}, "stared": {"_count": 2}, "it": {"_count": 1}, "moving": {"_count": 1}, "looked": {"_count": 4}, "the": {"_count": 2}, "closed": {"_count": 1}, "slamming": {"_count": 1}, "Dudley": {"_count": 1}, "might": {"_count": 1}, "just": {"_count": 1}, "opened": {"_count": 1}, "stood": {"_count": 1}, "followed": {"_count": 1}, "hes": {"_count": 1}, "looking": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "hit": {"_count": 2}, "moved": {"_count": 1}, "land": {"_count": 1}, "his": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "started": {"_count": 1}, "glass": {"_count": 1}, "people": {"_count": 1}}, "now": {"_count": 2, "even": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 4, "newspaper": {"_count": 1}, "great": {"_count": 1}, "window": {"_count": 1}, "broad": {"_count": 1}}, "with": {"_count": 4, "broomsticks": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 2}}, "but": {"_count": 3, "he": {"_count": 1}, "not": {"_count": 1}, "it": {"_count": 1}}, "as": {"_count": 11, "she": {"_count": 1}, "Fred": {"_count": 1}, "though": {"_count": 2}, "he": {"_count": 2}, "Mrs": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "if": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 10, "talk": {"_count": 3}, "see": {"_count": 1}, "Ron": {"_count": 1}, "glide": {"_count": 1}, "look": {"_count": 2}, "illuminate": {"_count": 1}, "his": {"_count": 1}}, "where": {"_count": 3, "half": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "pretending": {"_count": 1, "he": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 4}}, "was": {"_count": 15, "becoming": {"_count": 1}, "definitely": {"_count": 1}, "widening": {"_count": 1}, "rubyred": {"_count": 1}, "changing": {"_count": 1}, "open": {"_count": 2}, "grimy": {"_count": 1}, "narrow": {"_count": 1}, "dazzlingly": {"_count": 1}, "covered": {"_count": 1}, "an": {"_count": 1}, "almost": {"_count": 1}, "the": {"_count": 1}, "Lily": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "open": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "shouting": {"_count": 1, "Bad": {"_count": 1}}, "dropped": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 8, "an": {"_count": 1}, "the": {"_count": 4}, "Flitwicks": {"_count": 1}, "Hagrid": {"_count": 1}, "Bathildas": {"_count": 1}}, "into": {"_count": 6, "Harrys": {"_count": 1}, "the": {"_count": 4}, "nothingness": {"_count": 1}}, "the": {"_count": 3, "night": {"_count": 1}, "sun": {"_count": 1}, "highest": {"_count": 1}}, "display": {"_count": 1, "of": {"_count": 1}}, "Traffic": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 7, "saw": {"_count": 2}, "had": {"_count": 1}, "said": {"_count": 1}, "could": {"_count": 1}, "knew": {"_count": 1}, "where": {"_count": 1}}, "showering": {"_count": 1, "the": {"_count": 1}}, "within": {"_count": 1, "minutes": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "muttering": {"_count": 1, "under": {"_count": 1}}, "jerked": {"_count": 1, "out": {"_count": 1}}, "next": {"_count": 2, "to": {"_count": 2}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "latch": {"_count": 1, "wondering": {"_count": 1}}, "soared": {"_count": 1, "three": {"_count": 1}}, "feeling": {"_count": 1, "increasingly": {"_count": 1}}, "became": {"_count": 2, "wilder": {"_count": 1}, "blurred": {"_count": 1}}, "they": {"_count": 3, "heard": {"_count": 1}, "proceeded": {"_count": 1}, "were": {"_count": 1}}, "watching": {"_count": 2, "the": {"_count": 1}, "Hagrid": {"_count": 1}}, "at": {"_count": 13, "the": {"_count": 11}, "a": {"_count": 1}, "Dobbys": {"_count": 1}}, "ledge": {"_count": 5, "in": {"_count": 1}, "": {"_count": 1}, "gazing": {"_count": 1}, "and": {"_count": 1}, "sat": {"_count": 1}}, "his": {"_count": 3, "mind": {"_count": 1}, "heart": {"_count": 1}, "wrath": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "squeaked": {"_count": 1}}, "staring": {"_count": 2, "out": {"_count": 2}}, "sprang": {"_count": 1, "open": {"_count": 1}}, "frame": {"_count": 1, "and": {"_count": 1}}, "stretched": {"_count": 1, "out": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "shut": {"_count": 2, "": {"_count": 2}}, "said": {"_count": 3, "Mr": {"_count": 2}, "Colin": {"_count": 1}}, "drown": {"_count": 1, "itself": {"_count": 1}}, "cuffing": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "through": {"_count": 4, "which": {"_count": 4}}, "played": {"_count": 1, "across": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 2}}, "Hedwig": {"_count": 1, "soared": {"_count": 1}}, "he": {"_count": 5, "kept": {"_count": 1}, "and": {"_count": 1}, "saw": {"_count": 2}, "got": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 4, "which": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}, "Hermione": {"_count": 1}}, "wagging": {"_count": 1, "its": {"_count": 1}}, "flashed": {"_count": 1, "past": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 1}, "hard": {"_count": 1}}, "blazing": {"_count": 1, "fiery": {"_count": 1}}, "after": {"_count": 1, "window": {"_count": 1}}, "showing": {"_count": 1, "brilliantly": {"_count": 1}}, "which": {"_count": 5, "was": {"_count": 2}, "had": {"_count": 1}, "looked": {"_count": 1}, "shattered": {"_count": 1}}, "just": {"_count": 2, "beyond": {"_count": 1}, "in": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "beside": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "Nevilles": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "OUCH": {"_count": 1, "": {"_count": 1}}, "jump": {"_count": 1, "": {"_count": 1}}, "displays": {"_count": 3, "consisted": {"_count": 1}, "as": {"_count": 1}, "of": {"_count": 1}}, "displaying": {"_count": 1, "nothing": {"_count": 1}}, "set": {"_count": 1, "into": {"_count": 1}}, "opposite": {"_count": 1, "": {"_count": 1}}, "headed": {"_count": 1, "back": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "then": {"_count": 1, "looked": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 2, "out": {"_count": 2}}, "thought": {"_count": 1, "I": {"_count": 1}}, "peered": {"_count": 1, "through": {"_count": 1}}, "sparkled": {"_count": 1, "in": {"_count": 1}}, "an": {"_count": 1, "inch": {"_count": 1}}, "went": {"_count": 1, "out": {"_count": 1}}, "instead": {"_count": 1, "and": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "their": {"_count": 1, "perfume": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "Ginny": {"_count": 1, "stood": {"_count": 1}}, "table": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "obscured": {"_count": 1, "by": {"_count": 1}}, "delivering": {"_count": 1, "a": {"_count": 1}}, "across": {"_count": 1, "a": {"_count": 1}}, "overlooking": {"_count": 1, "the": {"_count": 1}}, "turned": {"_count": 1, "his": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}, "ignoring": {"_count": 1, "Flitwicks": {"_count": 1}}, "bless": {"_count": 1, "him": {"_count": 1}}, "revealed": {"_count": 1, "distant": {"_count": 1}}, "above": {"_count": 1, "": {"_count": 1}}, "saw": {"_count": 1, "his": {"_count": 1}}, "these": {"_count": 1, "thoughts": {"_count": 1}}}, "At": {"_count": 300, "half": {"_count": 3, "past": {"_count": 3}}, "last": {"_count": 62, "": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 6}, "only": {"_count": 1}, "she": {"_count": 4}, "Norbert": {"_count": 1}, "he": {"_count": 16}, "a": {"_count": 1}, "there": {"_count": 1}, "panting": {"_count": 1}, "Dumbledore": {"_count": 1}, "they": {"_count": 9}, "at": {"_count": 1}, "after": {"_count": 1}, "exhausted": {"_count": 1}, "finding": {"_count": 1}, "all": {"_count": 1}, "when": {"_count": 2}, "in": {"_count": 1}, "one": {"_count": 1}, "Harry": {"_count": 4}, "Narcissa": {"_count": 1}, "with": {"_count": 1}, "it": {"_count": 1}, "Hermione": {"_count": 1}, "lying": {"_count": 1}, "Snape": {"_count": 1}}, "that": {"_count": 25, "moment": {"_count": 19}, "very": {"_count": 3}, "precise": {"_count": 2}, "she": {"_count": 1}}, "school": {"_count": 1, "Harry": {"_count": 1}}, "this": {"_count": 22, "moment": {"_count": 3}, "Hermione": {"_count": 1}, "Neville": {"_count": 1}, "point": {"_count": 5}, "rate": {"_count": 2}, "the": {"_count": 2}, "last": {"_count": 1}, "Hedwig": {"_count": 1}, "Winky": {"_count": 2}, "Myrtles": {"_count": 1}, "Professor": {"_count": 1}, "precise": {"_count": 1}, "Fudge": {"_count": 1}}, "first": {"_count": 7, "they": {"_count": 1}, "Gryffindors": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 2}, "glance": {"_count": 1}, "Lavender": {"_count": 1}}, "the": {"_count": 73, "end": {"_count": 8}, "top": {"_count": 4}, "very": {"_count": 5}, "start": {"_count": 3}, "startofterm": {"_count": 1}, "foot": {"_count": 5}, "same": {"_count": 14}, "age": {"_count": 1}, "front": {"_count": 3}, "doorway": {"_count": 1}, "far": {"_count": 2}, "campsite": {"_count": 1}, "World": {"_count": 1}, "mention": {"_count": 3}, "moment": {"_count": 3}, "Polkisses": {"_count": 1}, "sight": {"_count": 3}, "there": {"_count": 1}, "table": {"_count": 1}, "entrance": {"_count": 1}, "time": {"_count": 2}, "door": {"_count": 1}, "full": {"_count": 1}, "sound": {"_count": 2}, "home": {"_count": 1}, "first": {"_count": 1}, "wedding": {"_count": 1}, "bottom": {"_count": 1}, "last": {"_count": 1}}, "five": {"_count": 3, "to": {"_count": 2}, "oclock": {"_count": 1}}, "breakfast": {"_count": 1, "on": {"_count": 1}}, "threethirty": {"_count": 1, "that": {"_count": 1}}, "every": {"_count": 2, "turn": {"_count": 1}, "House": {"_count": 1}}, "either": {"_count": 2, "end": {"_count": 2}}, "once": {"_count": 25, "the": {"_count": 9}, "a": {"_count": 1}, "Hermione": {"_count": 2}, "several": {"_count": 1}, "Voldemorts": {"_count": 1}, "everyone": {"_count": 1}, "Harrys": {"_count": 2}, "Katie": {"_count": 1}, "Lavender": {"_count": 1}, "there": {"_count": 1}, "their": {"_count": 1}, "Dolohovs": {"_count": 1}, "he": {"_count": 1}, "Kreacher": {"_count": 1}, "object": {"_count": 1}}, "these": {"_count": 7, "words": {"_count": 6}, "times": {"_count": 1}}, "times": {"_count": 1, "he": {"_count": 1}}, "eleven": {"_count": 1, "oclock": {"_count": 1}}, "least": {"_count": 28, "Hermiones": {"_count": 1}, "the": {"_count": 2}, "no": {"_count": 1}, "I": {"_count": 1}, "twenty": {"_count": 1}, "a": {"_count": 2}, "thirty": {"_count": 2}, "we": {"_count": 2}, "Bagmans": {"_count": 1}, "your": {"_count": 1}, "youve": {"_count": 1}, "youre": {"_count": 1}, "its": {"_count": 1}, "Diggory": {"_count": 1}, "he": {"_count": 2}, "you": {"_count": 2}, "they": {"_count": 1}, "shes": {"_count": 1}, "it": {"_count": 1}, "Stun": {"_count": 1}, "there": {"_count": 1}, "hes": {"_count": 1}}, "eightfifteen": {"_count": 1, "Ill": {"_count": 1}}, "Dudleys": {"_count": 1, "fifth": {"_count": 1}}, "one": {"_count": 2, "oclock": {"_count": 1}, "point": {"_count": 1}}, "long": {"_count": 5, "last": {"_count": 5}}, "Christmas": {"_count": 1, "": {"_count": 1}}, "lunchtime": {"_count": 1, "they": {"_count": 1}}, "eight": {"_count": 1, "oclock": {"_count": 1}}, "a": {"_count": 2, "quarter": {"_count": 1}, "gesture": {"_count": 1}}, "nine": {"_count": 1, "oclock": {"_count": 1}}, "two": {"_count": 1, "oclock": {"_count": 1}}, "ze": {"_count": 1, "Palace": {"_count": 1}}, "Hogwarts": {"_count": 4, "or": {"_count": 1}, "for": {"_count": 1}, "Dumbledore": {"_count": 1}, "said": {"_count": 1}}, "Siriuss": {"_count": 1, "words": {"_count": 1}}, "which": {"_count": 2, "Sirius": {"_count": 1}, "all": {"_count": 1}}, "Harrys": {"_count": 1, "cauldron": {"_count": 1}}, "halfpast": {"_count": 2, "eleven": {"_count": 1}, "seven": {"_count": 1}}, "night": {"_count": 1, "when": {"_count": 1}}, "war": {"_count": 1, "": {"_count": 1}}, "Beauxbatons": {"_count": 1, "said": {"_count": 1}}, "Borgin": {"_count": 2, "and": {"_count": 2}}, "your": {"_count": 1, "aunt": {"_count": 1}}, "any": {"_count": 1, "rate": {"_count": 1}}, "her": {"_count": 1, "touch": {"_count": 1}}, "sixteen": {"_count": 1, "years": {"_count": 1}}}, "half": {"_count": 337, "past": {"_count": 15, "eight": {"_count": 3}, "ten": {"_count": 1}, "twelve": {"_count": 2}, "seven": {"_count": 1}, "three": {"_count": 2}, "four": {"_count": 1}, "he": {"_count": 1}, "five": {"_count": 1}, "eleven": {"_count": 1}, "nine": {"_count": 1}, "one": {"_count": 1}}, "exasperated": {"_count": 1, "half": {"_count": 1}}, "admiring": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 43, "hour": {"_count": 36}, "everything": {"_count": 1}, "inch": {"_count": 3}, "hours": {"_count": 1}, "eyebrow": {"_count": 2}}, "his": {"_count": 5, "mustache": {"_count": 1}, "time": {"_count": 1}, "living": {"_count": 1}, "mind": {"_count": 1}, "mead": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "inches": {"_count": 2, "springy": {"_count": 1}, "": {"_count": 1}}, "furious": {"_count": 1, "they": {"_count": 1}}, "hidden": {"_count": 4, "he": {"_count": 1}, "in": {"_count": 2}, "at": {"_count": 1}}, "laughing": {"_count": 4, "half": {"_count": 1}, "": {"_count": 3}}, "crying": {"_count": 1, "running": {"_count": 1}}, "me": {"_count": 1, "life": {"_count": 1}}, "hoping": {"_count": 2, "for": {"_count": 1}, "that": {"_count": 1}}, "the": {"_count": 36, "handle": {"_count": 1}, "candy": {"_count": 1}, "class": {"_count": 5}, "Muggleborns": {"_count": 1}, "corridor": {"_count": 1}, "bar": {"_count": 1}, "students": {"_count": 1}, "books": {"_count": 1}, "lesson": {"_count": 1}, "real": {"_count": 1}, "words": {"_count": 1}, "things": {"_count": 1}, "kids": {"_count": 1}, "lounge": {"_count": 1}, "people": {"_count": 2}, "worlds": {"_count": 1}, "time": {"_count": 1}, "night": {"_count": 2}, "group": {"_count": 1}, "herd": {"_count": 1}, "moment": {"_count": 1}, "staff": {"_count": 2}, "contents": {"_count": 1}, "ceiling": {"_count": 2}, "Ministry": {"_count": 1}, "Wizarding": {"_count": 1}, "castle": {"_count": 2}}, "a": {"_count": 41, "mind": {"_count": 3}, "dozen": {"_count": 19}, "glance": {"_count": 5}, "foot": {"_count": 1}, "slug": {"_count": 1}, "pound": {"_count": 1}, "step": {"_count": 1}, "dead": {"_count": 1}, "cow": {"_count": 1}, "roll": {"_count": 1}, "pace": {"_count": 1}, "panda": {"_count": 1}, "cold": {"_count": 1}, "box": {"_count": 1}, "Prince": {"_count": 1}, "groan": {"_count": 1}, "pack": {"_count": 1}}, "joy": {"_count": 1, "half": {"_count": 1}}, "terrible": {"_count": 1, "sadness": {"_count": 1}}, "hour": {"_count": 7, "": {"_count": 3}, "or": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 1}, "had": {"_count": 1}}, "expected": {"_count": 5, "Hermione": {"_count": 1}, "Voldemort": {"_count": 1}, "Ron": {"_count": 1}, "another": {"_count": 1}, "her": {"_count": 1}}, "of": {"_count": 30, "it": {"_count": 3}, "whats": {"_count": 1}, "what": {"_count": 3}, "them": {"_count": 5}, "themselves": {"_count": 1}, "the": {"_count": 10}, "his": {"_count": 1}, "Professor": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 1}, "Gryffindor": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}}, "in": {"_count": 2, "shadow": {"_count": 1}, "an": {"_count": 1}}, "ran": {"_count": 2, "toward": {"_count": 1}, "up": {"_count": 1}}, "finished": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 2, "go": {"_count": 1}, "getting": {"_count": 1}}, "wished": {"_count": 3, "he": {"_count": 2}, "that": {"_count": 1}}, "marching": {"_count": 1, "half": {"_count": 1}}, "running": {"_count": 1, "across": {"_count": 1}}, "as": {"_count": 2, "well": {"_count": 1}, "fast": {"_count": 1}}, "horse": {"_count": 1, "half": {"_count": 1}}, "bird": {"_count": 1, "you": {"_count": 1}}, "my": {"_count": 2, "bones": {"_count": 1}, "life": {"_count": 1}}, "wanted": {"_count": 2, "to": {"_count": 2}}, "dead": {"_count": 1, "": {"_count": 1}}, "shares": {"_count": 1, "in": {"_count": 1}}, "formed": {"_count": 2, "thoughts": {"_count": 1}, "when": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "asleep": {"_count": 1, "when": {"_count": 1}}, "darkness": {"_count": 2, "making": {"_count": 1}, "the": {"_count": 1}}, "annoyed": {"_count": 1, "half": {"_count": 1}}, "deeply": {"_count": 1, "impressed": {"_count": 1}}, "with": {"_count": 2, "Snape": {"_count": 1}, "Gryffindors": {"_count": 1}}, "hoped": {"_count": 2, "they": {"_count": 2}}, "months": {"_count": 1, "to": {"_count": 1}}, "giant": {"_count": 4, "nearly": {"_count": 1}, "": {"_count": 1}, "eagle": {"_count": 1}, "Rubeus": {"_count": 1}}, "immersed": {"_count": 1, "in": {"_count": 1}}, "gone": {"_count": 1, "so": {"_count": 1}}, "expecting": {"_count": 4, "the": {"_count": 1}, "to": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 6}, "?": {"_count": 1}, "!": {"_count": 1}}, "its": {"_count": 2, "feathers": {"_count": 1}, "face": {"_count": 1}}, "carrying": {"_count": 2, "his": {"_count": 1}, "him": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "pulling": {"_count": 1, "half": {"_count": 1}}, "listening": {"_count": 2, "": {"_count": 2}}, "to": {"_count": 2, "death": {"_count": 2}}, "concealed": {"_count": 2, "by": {"_count": 1}, "in": {"_count": 1}}, "\u2018": {"_count": 1, "which": {"_count": 1}}, "later": {"_count": 2, "none": {"_count": 1}, "clapping": {"_count": 1}}, "each": {"_count": 1, "": {"_count": 1}}, "breeds": {"_count": 1, "": {"_count": 1}}, "kill": {"_count": 1, "each": {"_count": 1}}, "her": {"_count": 4, "time": {"_count": 1}, "glass": {"_count": 1}, "life": {"_count": 1}, "things": {"_count": 1}}, "years": {"_count": 1, "ago": {"_count": 1}}, "away": {"_count": 1, "with": {"_count": 1}}, "moon": {"_count": 4, "spectacles": {"_count": 4}}, "strangling": {"_count": 1, "him": {"_count": 1}}, "convinced": {"_count": 1, "that": {"_count": 1}}, "gummed": {"_count": 1, "together": {"_count": 1}}, "light": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "on": {"_count": 2, "Monday": {"_count": 1}, "his": {"_count": 1}}, "breed": {"_count": 1, "Hagrid": {"_count": 1}}, "nelson": {"_count": 2, "": {"_count": 2}}, "emptying": {"_count": 1, "his": {"_count": 1}}, "irritably": {"_count": 1, "half": {"_count": 1}}, "proudly": {"_count": 1, "Two": {"_count": 1}}, "thousand": {"_count": 1, "Galleons": {"_count": 1}}, "dozen": {"_count": 1, "seventh": {"_count": 1}}, "risen": {"_count": 1, "from": {"_count": 1}}, "open": {"_count": 1, "doodling": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "chairs": {"_count": 1, "on": {"_count": 1}}, "sucking": {"_count": 1, "halfmoaning": {"_count": 1}}, "resentful": {"_count": 1, "half": {"_count": 1}}, "sheepish": {"_count": 1, "he": {"_count": 1}}, "sobbing": {"_count": 2, "as": {"_count": 2}}, "walked": {"_count": 1, "half": {"_count": 1}}, "laughed": {"_count": 1, "and": {"_count": 1}}, "humansized": {"_count": 1, "his": {"_count": 1}}, "carried": {"_count": 1, "half": {"_count": 1}}, "dragged": {"_count": 1, "Ron": {"_count": 1}}, "buried": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "angry": {"_count": 1, "half": {"_count": 1}}, "relieved": {"_count": 1, "": {"_count": 1}}, "tempted": {"_count": 1, "to": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "amused": {"_count": 3, "half": {"_count": 1}, "": {"_count": 2}}, "irritated": {"_count": 1, "": {"_count": 1}}, "surprised": {"_count": 1, "half": {"_count": 1}}, "brother": {"_count": 1, "": {"_count": 1}}, "blind": {"_count": 1, "barely": {"_count": 1}}, "conscious": {"_count": 1, "goblin": {"_count": 1}}, "truculent": {"_count": 1, "half": {"_count": 1}}, "intrigued": {"_count": 1, "": {"_count": 1}}, "mad": {"_count": 1, "sister": {"_count": 1}}, "smile": {"_count": 1, "on": {"_count": 1}}, "left": {"_count": 1, "his": {"_count": 1}}, "believing": {"_count": 1, "he": {"_count": 1}}, "smiled": {"_count": 1, "": {"_count": 1}}, "stern": {"_count": 1, "half": {"_count": 1}}}, "eight": {"_count": 50, "Mr": {"_count": 1, "Dursley": {"_count": 1}}, "more": {"_count": 1, "eyes": {"_count": 1}}, "and": {"_count": 3, "a": {"_count": 1}, "Harry": {"_count": 1}, "were": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "oclock": {"_count": 16, "": {"_count": 4}, "that": {"_count": 2}, "on": {"_count": 3}, "when": {"_count": 1}, "Madam": {"_count": 1}, "now": {"_count": 1}, "seventh": {"_count": 1}, "arrived": {"_count": 1}, "knocked": {"_count": 1}, "then": {"_count": 1}}, "or": {"_count": 2, "nine": {"_count": 2}}, "people": {"_count": 1, "six": {"_count": 1}}, "inches": {"_count": 2, "high": {"_count": 1}, "short": {"_count": 1}}, "eyed": {"_count": 1, "eightlegged": {"_count": 1}}, "milky": {"_count": 2, "eyes": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "each": {"_count": 1}}, "hundred": {"_count": 1, "barrels": {"_count": 1}}, "feet": {"_count": 1, "tall": {"_count": 1}}, "whose": {"_count": 1, "clouds": {"_count": 1}}, "that": {"_count": 2, "night": {"_count": 1}, "evening": {"_count": 1}}, "shining": {"_count": 1, "black": {"_count": 1}}, "floors": {"_count": 1, "below": {"_count": 1}}, "hats": {"_count": 2, "": {"_count": 2}}, "said": {"_count": 2, "Ernie": {"_count": 1}, "the": {"_count": 1}}, "Exclusive": {"_count": 1, "Interview": {"_count": 1}}, "Id": {"_count": 1, "better": {"_count": 1}}, "tonight": {"_count": 1, "to": {"_count": 1}}, "uses": {"_count": 1, "of": {"_count": 1}}}, "briefcase": {"_count": 10, "pecked": {"_count": 1, "Mrs": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Im": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "slipped": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "so": {"_count": 1, "he": {"_count": 1}}, "stuffed": {"_count": 1, "his": {"_count": 1}}}, "pecked": {"_count": 1, "Mrs": {"_count": 1, "Dursley": {"_count": 1}}}, "cheek": {"_count": 39, "and": {"_count": 5, "tried": {"_count": 1}, "he": {"_count": 1}, "looking": {"_count": 1}, "hurried": {"_count": 1}, "the": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "!": {"_count": 1}}, "gazing": {"_count": 1, "steadily": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "pulling": {"_count": 1}}, "though": {"_count": 1, "not": {"_count": 1}}, "Lavender": {"_count": 1, "whose": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "pulled": {"_count": 1, "on": {"_count": 1}}, "Dud": {"_count": 1, "thats": {"_count": 1}}, "sniffed": {"_count": 1, "loudly": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 1}, "anyone": {"_count": 1}, "a": {"_count": 1}}, "He": {"_count": 1, "felt": {"_count": 1}}, "earned": {"_count": 1, "him": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "or": {"_count": 1, "about": {"_count": 1}}, "leaving": {"_count": 1, "her": {"_count": 1}}, "clumsily": {"_count": 1, "when": {"_count": 1}}, "scrutinizing": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 1, "refused": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}}, "tried": {"_count": 429, "to": {"_count": 325, "kiss": {"_count": 1}, "act": {"_count": 3}, "kill": {"_count": 20}, "remember": {"_count": 8}, "explain": {"_count": 3}, "pull": {"_count": 8}, "do": {"_count": 7}, "squeeze": {"_count": 1}, "get": {"_count": 19}, "grab": {"_count": 3}, "pack": {"_count": 1}, "start": {"_count": 1}, "lock": {"_count": 1}, "wave": {"_count": 1}, "lift": {"_count": 1}, "jerk": {"_count": 1}, "turn": {"_count": 4}, "rob": {"_count": 2}, "flatten": {"_count": 1}, "behead": {"_count": 1}, "look": {"_count": 5}, "shut": {"_count": 2}, "empty": {"_count": 2}, "help": {"_count": 2}, "take": {"_count": 7}, "calm": {"_count": 2}, "tell": {"_count": 4}, "edge": {"_count": 1}, "throw": {"_count": 2}, "catch": {"_count": 3}, "stop": {"_count": 7}, "understand": {"_count": 1}, "ignore": {"_count": 2}, "argue": {"_count": 1}, "borrow": {"_count": 2}, "serve": {"_count": 1}, "put": {"_count": 6}, "force": {"_count": 3}, "stand": {"_count": 4}, "keep": {"_count": 8}, "block": {"_count": 1}, "sidle": {"_count": 2}, "seize": {"_count": 1}, "transfigure": {"_count": 1}, "find": {"_count": 6}, "sit": {"_count": 3}, "move": {"_count": 3}, "say": {"_count": 5}, "escape": {"_count": 2}, "make": {"_count": 11}, "point": {"_count": 2}, "flush": {"_count": 1}, "raise": {"_count": 2}, "discuss": {"_count": 1}, "visit": {"_count": 1}, "run": {"_count": 1}, "break": {"_count": 2}, "dispose": {"_count": 1}, "concentrate": {"_count": 2}, "drink": {"_count": 1}, "bite": {"_count": 1}, "frighten": {"_count": 1}, "speak": {"_count": 3}, "call": {"_count": 1}, "follow": {"_count": 2}, "tug": {"_count": 2}, "reach": {"_count": 1}, "heave": {"_count": 1}, "disarm": {"_count": 1}, "bring": {"_count": 1}, "hurt": {"_count": 1}, "yell": {"_count": 1}, "open": {"_count": 1}, "recall": {"_count": 2}, "hold": {"_count": 3}, "imagine": {"_count": 2}, "change": {"_count": 1}, "guess": {"_count": 1}, "curse": {"_count": 1}, "overturn": {"_count": 1}, "prevent": {"_count": 1}, "tame": {"_count": 1}, "reassure": {"_count": 2}, "rub": {"_count": 2}, "lead": {"_count": 1}, "wish": {"_count": 1}, "comfort": {"_count": 2}, "interest": {"_count": 1}, "draw": {"_count": 2}, "shout": {"_count": 1}, "mime": {"_count": 1}, "attack": {"_count": 2}, "loosen": {"_count": 1}, "kick": {"_count": 2}, "rebuild": {"_count": 1}, "pay": {"_count": 1}, "question": {"_count": 1}, "smile": {"_count": 2}, "distract": {"_count": 1}, "back": {"_count": 1}, "strangle": {"_count": 3}, "eat": {"_count": 1}, "rip": {"_count": 1}, "count": {"_count": 1}, "hide": {"_count": 2}, "intercept": {"_count": 1}, "see": {"_count": 2}, "fight": {"_count": 1}, "steal": {"_count": 3}, "push": {"_count": 2}, "mount": {"_count": 1}, "bang": {"_count": 1}, "gnaw": {"_count": 1}, "attend": {"_count": 1}, "check": {"_count": 1}, "persuade": {"_count": 1}, "convince": {"_count": 1}, "talk": {"_count": 1}, "lessen": {"_count": 1}, "sell": {"_count": 2}, "touch": {"_count": 1}, "summon": {"_count": 1}, "jinx": {"_count": 1}, "feel": {"_count": 1}, "live": {"_count": 1}, "sound": {"_count": 1}, "rework": {"_count": 1}, "fix": {"_count": 1}, "plead": {"_count": 1}, "Summon": {"_count": 1}, "absorb": {"_count": 1}, "outrun": {"_count": 1}, "Disarm": {"_count": 2}, "leave": {"_count": 1}, "hug": {"_count": 1}, "destroy": {"_count": 1}, "torture": {"_count": 1}, "pass": {"_count": 1}, "shield": {"_count": 1}, "expound": {"_count": 1}, "decide": {"_count": 2}, "prise": {"_count": 1}, "resist": {"_count": 1}, "direct": {"_count": 1}, "think": {"_count": 2}, "return": {"_count": 1}, "enlarge": {"_count": 1}, "drag": {"_count": 1}, "reconstruct": {"_count": 1}, "protest": {"_count": 1}, "use": {"_count": 2}, "arrest": {"_count": 1}, "delay": {"_count": 1}, "shake": {"_count": 1}, "conceal": {"_count": 1}, "trip": {"_count": 1}, "die": {"_count": 1}}, "not": {"_count": 9, "to": {"_count": 8}, "ter": {"_count": 1}}, "ter": {"_count": 3, "kill": {"_count": 1}, "pay": {"_count": 1}, "repair": {"_count": 1}}, "that": {"_count": 2, "theyd": {"_count": 1}, "before": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "!": {"_count": 2}}, "wands": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 6, "few": {"_count": 2}, "different": {"_count": 1}, "ponytail": {"_count": 1}, "kind": {"_count": 1}, "variety": {"_count": 1}}, "hard": {"_count": 5, "not": {"_count": 3}, "to": {"_count": 1}, "enough": {"_count": 1}}, "it": {"_count": 5, "on": {"_count": 2}, "before": {"_count": 1}, "if": {"_count": 1}, "do": {"_count": 1}}, "retracing": {"_count": 1, "Harrys": {"_count": 1}}, "her": {"_count": 1, "Alohomora": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "very": {"_count": 4, "hard": {"_count": 4}}, "vainly": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 3, "failed": {"_count": 2}, "tested": {"_count": 1}}, "obviously": {"_count": 1, "but": {"_count": 1}}, "with": {"_count": 2, "all": {"_count": 2}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Tonks": {"_count": 1}}, "everything": {"_count": 5, "but": {"_count": 1}, "I": {"_count": 1}, "Lumos": {"_count": 1}, "everything": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 2, "sort": {"_count": 1}, "on": {"_count": 1}}, "asking": {"_count": 1, "the": {"_count": 1}}, "desperately": {"_count": 1, "to": {"_count": 1}}, "being": {"_count": 1, "polite": {"_count": 1}}, "tentatively": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 4, "Reductor": {"_count": 1}, "Nosebleed": {"_count": 1}, "Leaky": {"_count": 1}, "charm": {"_count": 1}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "hitting": {"_count": 1, "Harry": {"_count": 1}}, "his": {"_count": 1, "best": {"_count": 1}}, "twice": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 2}, "squeezing": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 6, "": {"_count": 4}, "and": {"_count": 1}, "he": {"_count": 1}}, "staring": {"_count": 1, "out": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "feebly": {"_count": 1, "to": {"_count": 1}}, "only": {"_count": 1, "halfheartedly": {"_count": 1}}, "unsuccessfully": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "Ron": {"_count": 1}}, "boosting": {"_count": 1, "Rons": {"_count": 1}}, "getting": {"_count": 1, "angry": {"_count": 1}}, "appealing": {"_count": 1, "directly": {"_count": 1}}, "interfering": {"_count": 1, "at": {"_count": 1}}, "every": {"_count": 1, "variation": {"_count": 1}}, "many": {"_count": 1, "more": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "tying": {"_count": 1, "the": {"_count": 1}}, "sticking": {"_count": 1, "a": {"_count": 1}}, "casting": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "first": {"_count": 1}}}, "kiss": {"_count": 30, "Dudley": {"_count": 1, "goodbye": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 2}, "?": {"_count": 3}}, "them": {"_count": 1, "goodbye": {"_count": 1}}, "on": {"_count": 4, "his": {"_count": 2}, "the": {"_count": 2}}, "I": {"_count": 1, "daresay": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "any": {"_count": 1, "moment": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}, "his": {"_count": 2, "immediate": {"_count": 1}, "cheek": {"_count": 1}}, "to": {"_count": 1, "Barty": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 2}, "on": {"_count": 1}, "gave": {"_count": 1}}, "you": {"_count": 3, "Kiss": {"_count": 1}, "do": {"_count": 1}, "on": {"_count": 1}}, "hes": {"_count": 1, "ever": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "whomever": {"_count": 1, "he": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "goodbye": {"_count": 49, "but": {"_count": 1, "missed": {"_count": 1}}, "to": {"_count": 22, "him": {"_count": 3}, "Norbert": {"_count": 1}, "Ron": {"_count": 3}, "the": {"_count": 3}, "Hagrid": {"_count": 1}, "Nearly": {"_count": 1}, "your": {"_count": 1}, "Mr": {"_count": 1}, "Fred": {"_count": 1}, "you": {"_count": 1}, "Mrs": {"_count": 1}, "Hermione": {"_count": 1}, "Sirius": {"_count": 1}, "each": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}}, "and": {"_count": 5, "their": {"_count": 1}, "set": {"_count": 1}, "walked": {"_count": 1}, "marched": {"_count": 1}, "left": {"_count": 1}}, "": {"_count": 9, "!": {"_count": 1}, ".": {"_count": 7}, "?": {"_count": 1}}, "Harry": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "then": {"_count": 2, "wheeled": {"_count": 1}, "boy": {"_count": 1}}, "Siriuss": {"_count": 1, "face": {"_count": 1}}, "again": {"_count": 1, "so": {"_count": 1}}, "afterward": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "behind": {"_count": 1}}, "as": {"_count": 1, "Mr": {"_count": 1}}, "Ill": {"_count": 1, "try": {"_count": 1}}, "now": {"_count": 1, "then": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "missed": {"_count": 103, "because": {"_count": 2, "Dudley": {"_count": 1}, "Malfoy": {"_count": 1}}, "five": {"_count": 1, "television": {"_count": 1}}, "it": {"_count": 5, "but": {"_count": 1}, "right": {"_count": 1}, "an": {"_count": 1}, "it": {"_count": 1}, "said": {"_count": 1}}, "the": {"_count": 19, "last": {"_count": 2}, "castle": {"_count": 1}, "dark": {"_count": 1}, "train": {"_count": 2}, "Sorting": {"_count": 2}, "Snitch": {"_count": 1}, "finer": {"_count": 1}, "sarcasm": {"_count": 1}, "flames": {"_count": 1}, "point": {"_count": 1}, "fourteenth": {"_count": 1}, "pod": {"_count": 1}, "jet": {"_count": 1}, "D": {"_count": 1}, "exchange": {"_count": 1}, "rest": {"_count": 1}}, "Hogwarts": {"_count": 1, "so": {"_count": 1}}, "his": {"_count": 2, "best": {"_count": 1}, "left": {"_count": 1}}, "out": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "Harrys": {"_count": 2, "glasses": {"_count": 1}, "face": {"_count": 1}}, "him": {"_count": 5, "again": {"_count": 1}, "": {"_count": 2}, "by": {"_count": 1}, "but": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 2}, ".": {"_count": 4}}, "most": {"_count": 1, "about": {"_count": 1}}, "Scabbers": {"_count": 1, "streaked": {"_count": 1}}, "an": {"_count": 2, "opportunity": {"_count": 2}}, "doing": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 8, "Muggle": {"_count": 1}, "step": {"_count": 3}, "really": {"_count": 1}, "few": {"_count": 1}, "Quidditch": {"_count": 1}, "beat": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Cheering": {"_count": 1, "Charms": {"_count": 1}}, "by": {"_count": 3, "several": {"_count": 1}, "inches": {"_count": 1}, "Voldemort": {"_count": 1}}, "and": {"_count": 3, "they": {"_count": 1}, "Hagrid": {"_count": 1}, "hit": {"_count": 1}}, "me": {"_count": 3, "even": {"_count": 1}, "": {"_count": 1}, "right": {"_count": 1}}, "good": {"_count": 1, "luck": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "spells": {"_count": 1, "hit": {"_count": 1}}, "em": {"_count": 1, "": {"_count": 1}}, "concussing": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 1, "her": {"_count": 1}}, "several": {"_count": 1, "important": {"_count": 1}}, "Sirius": {"_count": 1, "across": {"_count": 1}}, "instead": {"_count": 1, "hitting": {"_count": 1}}, "neither": {"_count": 1, "the": {"_count": 1}}, "breakfast": {"_count": 1, "": {"_count": 1}}, "something": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Ginny": {"_count": 1, "by": {"_count": 1}}, "took": {"_count": 1, "place": {"_count": 1}}, "from": {"_count": 1, "lessons": {"_count": 1}}, "Quidditch": {"_count": 1, "ha": {"_count": 1}}, "making": {"_count": 1, "trips": {"_count": 1}}, "Harry": {"_count": 2, "by": {"_count": 2}}, "irreplaceable": {"_count": 1, "opportunities": {"_count": 1}}, "their": {"_count": 1, "Portkey": {"_count": 1}}, "our": {"_count": 1, "Portkey": {"_count": 1}}, "MadEye": {"_count": 1, "still": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "rebounded": {"_count": 1, "on": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "us": {"_count": 1, "by": {"_count": 1}}, "them": {"_count": 1, "by": {"_count": 1}}, "but": {"_count": 1, "nearly": {"_count": 1}}, "death": {"_count": 1, "by": {"_count": 1}}, "your": {"_count": 1, "chance": {"_count": 1}}}, "now": {"_count": 2270, "having": {"_count": 4, "a": {"_count": 1}, "to": {"_count": 1}, "an": {"_count": 1}, "been": {"_count": 1}}, "reading": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "sitting": {"_count": 14, "on": {"_count": 3}, "smugly": {"_count": 1}, "in": {"_count": 3}, "Professor": {"_count": 1}, "at": {"_count": 3}, "next": {"_count": 1}, "with": {"_count": 1}, "up": {"_count": 1}}, "over": {"_count": 6, "to": {"_count": 2}, "the": {"_count": 2}, "three": {"_count": 1}, "which": {"_count": 1}}, "wouldnt": {"_count": 1, "he": {"_count": 1}}, "even": {"_count": 3, "beadyeyed": {"_count": 1}, "by": {"_count": 1}, "if": {"_count": 1}}, "": {"_count": 451, ".": {"_count": 324}, "!": {"_count": 46}, "?": {"_count": 81}}, "the": {"_count": 38, "photographs": {"_count": 1}, "Fat": {"_count": 1}, "school": {"_count": 1}, "whole": {"_count": 1}, "Cup": {"_count": 1}, "only": {"_count": 4}, "sky": {"_count": 1}, "candles": {"_count": 1}, "marks": {"_count": 1}, "bell": {"_count": 1}, "water": {"_count": 1}, "fact": {"_count": 1}, "beam": {"_count": 1}, "aura": {"_count": 1}, "Dark": {"_count": 1}, "pink": {"_count": 1}, "Sorting": {"_count": 1}, "Defense": {"_count": 1}, "subjects": {"_count": 1}, "ten": {"_count": 1}, "post": {"_count": 1}, "last": {"_count": 1}, "match": {"_count": 1}, "tiniest": {"_count": 1}, "request": {"_count": 1}, "stragglers": {"_count": 1}, "hall": {"_count": 1}, "marquee": {"_count": 1}, "double": {"_count": 1}, "room": {"_count": 1}, "broadcast": {"_count": 1}, "kind": {"_count": 1}, "dementors": {"_count": 1}, "wizards": {"_count": 1}, "doors": {"_count": 1}}, "boy": {"_count": 1, "any": {"_count": 1}}, "until": {"_count": 2, "Christmas": {"_count": 1}, "June": {"_count": 1}}, "and": {"_count": 91, "then": {"_count": 33}, "the": {"_count": 7}, "gathering": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 4}, "hand": {"_count": 1}, "put": {"_count": 1}, "well": {"_count": 1}, "grabbed": {"_count": 1}, "point": {"_count": 1}, "Karkaroff": {"_count": 1}, "all": {"_count": 1}, "they": {"_count": 1}, "very": {"_count": 1}, "her": {"_count": 1}, "rubbing": {"_count": 1}, "er": {"_count": 1}, "this": {"_count": 1}, "looked": {"_count": 1}, "whether": {"_count": 1}, "much": {"_count": 1}, "its": {"_count": 2}, "when": {"_count": 2}, "Im": {"_count": 1}, "waited": {"_count": 1}, "you": {"_count": 1}, "once": {"_count": 1}, "she": {"_count": 1}, "again": {"_count": 1}, "I": {"_count": 1}, "everything": {"_count": 1}, "it": {"_count": 2}, "faced": {"_count": 1}, "celebrate": {"_count": 1}, "let": {"_count": 1}, "what": {"_count": 1}, "by": {"_count": 1}, "shes": {"_count": 1}, "for": {"_count": 1}, "a": {"_count": 1}, "youre": {"_count": 1}, "according": {"_count": 1}, "Harry": {"_count": 2}, "try": {"_count": 1}, "Aberforth": {"_count": 1}, "youll": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 11, "knew": {"_count": 2}, "had": {"_count": 2}, "were": {"_count": 1}, "came": {"_count": 1}, "must": {"_count": 1}, "watched": {"_count": 1}, "mend": {"_count": 1}, "shouted": {"_count": 1}, "yelled": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "started": {"_count": 3, "lookin": {"_count": 1}, "making": {"_count": 1}, "edging": {"_count": 1}}, "Ive": {"_count": 4, "got": {"_count": 4}}, "wheres": {"_count": 1, "me": {"_count": 1}}, "I": {"_count": 17, "think": {"_count": 3}, "have": {"_count": 1}, "mean": {"_count": 1}, "dont": {"_count": 1}, "was": {"_count": 2}, "want": {"_count": 1}, "conquer": {"_count": 1}, "cant": {"_count": 1}, "couldnt": {"_count": 1}, "oh": {"_count": 1}, "know": {"_count": 1}, "am": {"_count": 1}, "stop": {"_count": 1}, "believe": {"_count": 1}}, "please": {"_count": 3, "and": {"_count": 1}, "greet": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 89, "he": {"_count": 24}, "theyve": {"_count": 1}, "we": {"_count": 4}, "youre": {"_count": 1}, "they": {"_count": 4}, "there": {"_count": 1}, "his": {"_count": 1}, "Norbert": {"_count": 1}, "it": {"_count": 5}, "this": {"_count": 1}, "history": {"_count": 1}, "the": {"_count": 4}, "Riddle": {"_count": 1}, "Uncle": {"_count": 1}, "its": {"_count": 2}, "hed": {"_count": 1}, "cloud": {"_count": 1}, "you": {"_count": 5}, "Christmas": {"_count": 2}, "Harry": {"_count": 6}, "Dumbledore": {"_count": 2}, "any": {"_count": 1}, "Voldemort": {"_count": 1}, "everyone": {"_count": 1}, "weve": {"_count": 2}, "I": {"_count": 1}, "wont": {"_count": 1}, "sometimes": {"_count": 1}, "exam": {"_count": 1}, "what": {"_count": 1}, "ownership": {"_count": 1}, "conversation": {"_count": 1}, "big": {"_count": 1}, "if": {"_count": 1}, "was": {"_count": 1}, "Harrys": {"_count": 1}, "Kreacher": {"_count": 1}, "nobody": {"_count": 1}, "Ron": {"_count": 1}, "she": {"_count": 1}}, "in": {"_count": 13, "fact": {"_count": 1}, "slings": {"_count": 1}, "his": {"_count": 1}, "front": {"_count": 2}, "St": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 3}, "e": {"_count": 1}, "triumphant": {"_count": 1}, "pursuit": {"_count": 1}}, "carried": {"_count": 2, "a": {"_count": 1}, "with": {"_count": 1}}, "only": {"_count": 5, "place": {"_count": 1}, "gripping": {"_count": 1}, "ten": {"_count": 1}, "two": {"_count": 1}, "of": {"_count": 1}}, "Mr": {"_count": 3, "Potter": {"_count": 2}, "Crouchs": {"_count": 1}}, "yes": {"_count": 2, "why": {"_count": 1}, "he": {"_count": 1}}, "empty": {"_count": 4, "": {"_count": 1}, "common": {"_count": 1}, "of": {"_count": 1}, "Professor": {"_count": 1}}, "so": {"_count": 20, "scared": {"_count": 1}, "busy": {"_count": 1}, "Neville": {"_count": 1}, "wet": {"_count": 1}, "thickly": {"_count": 1}, "tight": {"_count": 1}, "that": {"_count": 3}, "chilled": {"_count": 1}, "annoyed": {"_count": 1}, "low": {"_count": 1}, "deafening": {"_count": 1}, "many": {"_count": 1}, "if": {"_count": 1}, "close": {"_count": 2}, "good": {"_count": 1}, "immersed": {"_count": 1}, "shrill": {"_count": 1}}, "trying": {"_count": 6, "hard": {"_count": 1}, "to": {"_count": 5}}, "be": {"_count": 9, "quiet": {"_count": 1}, "prepared": {"_count": 1}, "playing": {"_count": 1}, "rising": {"_count": 1}, "pointing": {"_count": 1}, "planning": {"_count": 1}, "escorted": {"_count": 1}, "using": {"_count": 1}, "revealed": {"_count": 1}}, "before": {"_count": 7, "Ron": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "lunch": {"_count": 1}, "shes": {"_count": 1}, "they": {"_count": 1}}, "flying": {"_count": 3, "past": {"_count": 1}, "so": {"_count": 1}, "behind": {"_count": 1}}, "said": {"_count": 39, "Harry": {"_count": 8}, "a": {"_count": 2}, "Ron": {"_count": 2}, "Wood": {"_count": 1}, "Riddle": {"_count": 1}, "Ern": {"_count": 1}, "Mrs": {"_count": 2}, "Lupin": {"_count": 3}, "Hermione": {"_count": 4}, "Mr": {"_count": 1}, "Professor": {"_count": 2}, "George": {"_count": 2}, "Fudge": {"_count": 1}, "Dumbledore": {"_count": 5}, "Slughorn": {"_count": 2}, "Ted": {"_count": 1}, "Aberforth": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Flitwicks": {"_count": 1}, "said": {"_count": 1}}, "staring": {"_count": 5, "at": {"_count": 3}, "and": {"_count": 1}, "into": {"_count": 1}}, "stepped": {"_count": 1, "forward": {"_count": 1}}, "thats": {"_count": 2, "interesting": {"_count": 1}, "it": {"_count": 1}}, "there": {"_count": 7, "were": {"_count": 3}, "was": {"_count": 4}}, "piled": {"_count": 1, "with": {"_count": 1}}, "theyre": {"_count": 4, "bare": {"_count": 1}, "dyin": {"_count": 1}, "calling": {"_count": 1}, "bound": {"_count": 1}}, "bedtime": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 21, "it": {"_count": 2}, "Harry": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}, "they": {"_count": 3}, "what": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 2}, "nothing": {"_count": 1}, "all": {"_count": 1}, "tiny": {"_count": 1}, "of": {"_count": 1}, "theyll": {"_count": 1}, "waited": {"_count": 1}, "did": {"_count": 1}, "who": {"_count": 1}, "there": {"_count": 1}}, "looking": {"_count": 13, "as": {"_count": 1}, "happier": {"_count": 1}, "down": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 3}, "a": {"_count": 1}, "terrified": {"_count": 2}, "straight": {"_count": 1}, "slightly": {"_count": 1}, "Harry": {"_count": 1}}, "walking": {"_count": 2, "around": {"_count": 2}}, "came": {"_count": 7, "into": {"_count": 1}, "galloping": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}, "walking": {"_count": 1}, "padding": {"_count": 1}, "hurrying": {"_count": 1}}, "where": {"_count": 4, "did": {"_count": 1}, "he": {"_count": 1}, "Hermione": {"_count": 1}, "to": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 11, "a": {"_count": 4}, "one": {"_count": 1}, "silverhaired": {"_count": 1}, "doing": {"_count": 1}, "wait": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 2}}, "had": {"_count": 15, "Hermione": {"_count": 1}, "four": {"_count": 1}, "a": {"_count": 6}, "to": {"_count": 2}, "all": {"_count": 1}, "stripped": {"_count": 1}, "not": {"_count": 1}, "it": {"_count": 1}, "been": {"_count": 1}}, "Angelina": {"_count": 4, "Keeper": {"_count": 1}, "looks": {"_count": 1}, "you": {"_count": 1}, "GRYFFINDOR": {"_count": 1}}, "dangling": {"_count": 1, "from": {"_count": 1}}, "racing": {"_count": 1, "along": {"_count": 1}}, "what": {"_count": 3, "it": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "no": {"_count": 6, "one": {"_count": 1}, "more": {"_count": 2}, "ones": {"_count": 1}, "longer": {"_count": 1}, "bangs": {"_count": 1}}, "watch": {"_count": 1, "": {"_count": 1}}, "eating": {"_count": 2, "dead": {"_count": 1}, "roast": {"_count": 1}}, "Harry": {"_count": 42, "told": {"_count": 1}, "": {"_count": 5}, "looked": {"_count": 2}, "wrote": {"_count": 1}, "came": {"_count": 1}, "said": {"_count": 8}, "easy": {"_count": 1}, "Ron": {"_count": 1}, "theres": {"_count": 1}, "lied": {"_count": 1}, "had": {"_count": 3}, "I": {"_count": 2}, "no": {"_count": 1}, "let": {"_count": 1}, "on": {"_count": 1}, "is": {"_count": 1}, "thought": {"_count": 1}, "if": {"_count": 1}, "youll": {"_count": 1}, "saw": {"_count": 1}, "armed": {"_count": 1}, "was": {"_count": 2}, "Potter": {"_count": 2}, "could": {"_count": 1}, "stood": {"_count": 1}}, "on": {"_count": 19, "": {"_count": 8}, "though": {"_count": 1}, "Harry": {"_count": 1}, "Lupin": {"_count": 1}, "Dumbledore": {"_count": 1}, "maybe": {"_count": 1}, "probation": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 1}, "he": {"_count": 2}}, "itll": {"_count": 2, "be": {"_count": 1}, "look": {"_count": 1}}, "turned": {"_count": 3, "to": {"_count": 2}, "an": {"_count": 1}}, "yehve": {"_count": 2, "got": {"_count": 1}, "given": {"_count": 1}}, "listen": {"_count": 1, "carefully": {"_count": 1}}, "were": {"_count": 5, "gonna": {"_count": 1}, "Rons": {"_count": 1}, "all": {"_count": 1}, "half": {"_count": 1}, "washing": {"_count": 1}}, "with": {"_count": 10, "the": {"_count": 3}, "a": {"_count": 3}, "Dumbledore": {"_count": 1}, "Hepzibahs": {"_count": 1}, "elbowlength": {"_count": 1}, "their": {"_count": 1}}, "is": {"_count": 12, "Snape": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}, "not": {"_count": 1}, "she": {"_count": 1}, "sleep": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 2}, "there": {"_count": 1}, "it": {"_count": 1}, "its": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "hes": {"_count": 17, "got": {"_count": 1}, "told": {"_count": 1}, "going": {"_count": 3}, "Pig": {"_count": 1}, "sending": {"_count": 1}, "back": {"_count": 1}, "given": {"_count": 1}, "just": {"_count": 1}, "telling": {"_count": 1}, "done": {"_count": 1}, "ill": {"_count": 1}, "joined": {"_count": 1}, "all": {"_count": 1}, "playing": {"_count": 1}, "probably": {"_count": 1}}, "dont": {"_count": 6, "hang": {"_count": 1}, "fly": {"_count": 1}, "you": {"_count": 2}, "get": {"_count": 1}, "they": {"_count": 1}}, "smiling": {"_count": 3, "": {"_count": 3}}, "became": {"_count": 1, "very": {"_count": 1}}, "Im": {"_count": 6, "glad": {"_count": 2}, "sure": {"_count": 1}, "back": {"_count": 2}, "feeling": {"_count": 1}}, "OUT": {"_count": 1, "she": {"_count": 1}}, "Ron": {"_count": 8, "and": {"_count": 2}, "hissed": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 1}, "was": {"_count": 1}}, "for": {"_count": 5, "a": {"_count": 1}, "keeping": {"_count": 1}, "the": {"_count": 1}, "vearing": {"_count": 1}, "Voldemort": {"_count": 1}}, "weeks": {"_count": 1, "later": {"_count": 1}}, "remembering": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 54, "thought": {"_count": 1}, "said": {"_count": 10}, "halfshouted": {"_count": 1}, "cried": {"_count": 1}, "could": {"_count": 3}, "might": {"_count": 1}, "wants": {"_count": 1}, "hasnt": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 9}, "added": {"_count": 1}, "had": {"_count": 6}, "saw": {"_count": 3}, "seemed": {"_count": 1}, "came": {"_count": 3}, "felt": {"_count": 2}, "knew": {"_count": 1}, "went": {"_count": 1}, "sounded": {"_count": 1}, "fell": {"_count": 1}, "stood": {"_count": 1}, "wondered": {"_count": 1}, "knows": {"_count": 1}, "understood": {"_count": 1}, "reached": {"_count": 1}}, "look": {"_count": 3, "can": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "gleaming": {"_count": 3, "through": {"_count": 1}, "fanatically": {"_count": 1}, "with": {"_count": 1}}, "adding": {"_count": 1, "three": {"_count": 1}}, "just": {"_count": 2, "to": {"_count": 1}, "like": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}, "it": {"_count": 13, "felt": {"_count": 1}, "was": {"_count": 3}, "is": {"_count": 2}, "has": {"_count": 1}, "would": {"_count": 1}, "seems": {"_count": 2}, "really": {"_count": 1}, "enveloped": {"_count": 1}, "turns": {"_count": 1}}, "Where": {"_count": 1, "did": {"_count": 1}}, "free": {"_count": 2, "of": {"_count": 2}}, "lets": {"_count": 3, "get": {"_count": 1}, "move": {"_count": 1}, "have": {"_count": 1}}, "are": {"_count": 6, "airplanes": {"_count": 1}, "you": {"_count": 3}, "a": {"_count": 1}, "yeh": {"_count": 1}}, "waving": {"_count": 2, "feebly": {"_count": 1}, "her": {"_count": 1}}, "trembling": {"_count": 2, "under": {"_count": 1}, "slightly": {"_count": 1}}, "felt": {"_count": 7, "extremely": {"_count": 1}, "full": {"_count": 1}, "himself": {"_count": 1}, "like": {"_count": 2}, "guilty": {"_count": 2}}, "been": {"_count": 5, "punished": {"_count": 1}, "set": {"_count": 1}, "joined": {"_count": 1}, "lit": {"_count": 1}, "imprisoned": {"_count": 1}}, "hissing": {"_count": 1, "wand": {"_count": 1}}, "round": {"_count": 1, "them": {"_count": 1}}, "although": {"_count": 1, "remnants": {"_count": 1}}, "dancing": {"_count": 2, "alongside": {"_count": 1}, "with": {"_count": 1}}, "except": {"_count": 2, "for": {"_count": 2}}, "inky": {"_count": 1, "black": {"_count": 1}}, "smoldering": {"_count": 1, "gently": {"_count": 1}}, "flooding": {"_count": 2, "down": {"_count": 1}, "out": {"_count": 1}}, "drifted": {"_count": 1, "toward": {"_count": 1}}, "not": {"_count": 9, "to": {"_count": 1}, "right": {"_count": 1}, "when": {"_count": 2}, "someone": {"_count": 1}, "only": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "now": {"_count": 1}}, "muttering": {"_count": 1, "strange": {"_count": 1}}, "doing": {"_count": 1, "almost": {"_count": 1}}, "hanging": {"_count": 1, "on": {"_count": 1}}, "people": {"_count": 2, "come": {"_count": 1}, "are": {"_count": 1}}, "reddening": {"_count": 2, "": {"_count": 1}, "behind": {"_count": 1}}, "if": {"_count": 5, "only": {"_count": 1}, "youre": {"_count": 1}, "you": {"_count": 2}, "we": {"_count": 1}}, "well": {"_count": 2, "have": {"_count": 1}, "past": {"_count": 1}}, "Hermione": {"_count": 3, "eh": {"_count": 1}, "said": {"_count": 1}, "looked": {"_count": 1}}, "at": {"_count": 5, "Hogwarts": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 2}, "last": {"_count": 1}}, "lying": {"_count": 3, "as": {"_count": 1}, "in": {"_count": 1}, "flat": {"_count": 1}}, "moving": {"_count": 6, "around": {"_count": 1}, "among": {"_count": 1}, "along": {"_count": 1}, "across": {"_count": 1}, "over": {"_count": 1}, "deeper": {"_count": 1}}, "though": {"_count": 7, "how": {"_count": 1}, "I": {"_count": 1}, "looking": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "isnt": {"_count": 1}}, "grinning": {"_count": 2, "wickedly": {"_count": 1}, "more": {"_count": 1}}, "read": {"_count": 3, "Pinhead": {"_count": 1}, "BigheacL": {"_count": 1}, "POTTER": {"_count": 1}}, "we": {"_count": 10, "are": {"_count": 2}, "got": {"_count": 1}, "put": {"_count": 1}, "know": {"_count": 2}, "shall": {"_count": 2}, "duel": {"_count": 1}, "turn": {"_count": 1}}, "begun": {"_count": 1, "to": {"_count": 1}}, "settling": {"_count": 1, "itself": {"_count": 1}}, "talking": {"_count": 3, "about": {"_count": 1}, "fluently": {"_count": 1}, "softly": {"_count": 1}}, "nearly": {"_count": 2, "four": {"_count": 1}, "six": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "outside": {"_count": 1, "to": {"_count": 1}}, "knew": {"_count": 4, "exactly": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "what": {"_count": 1}}, "see": {"_count": 4, "here": {"_count": 1}, "it": {"_count": 1}, "Moodys": {"_count": 1}, "the": {"_count": 1}}, "The": {"_count": 5, "appointment": {"_count": 1}, "door": {"_count": 1}, "Department": {"_count": 1}, "aged": {"_count": 1}, "commuters": {"_count": 1}}, "barred": {"_count": 1, "from": {"_count": 1}}, "Malfoy": {"_count": 2, "said": {"_count": 1}, "went": {"_count": 1}}, "two": {"_count": 3, "missing": {"_count": 1}, "oclock": {"_count": 2}}, "Ernie": {"_count": 1, "and": {"_count": 1}}, "probably": {"_count": 1, "sitting": {"_count": 1}}, "swarming": {"_count": 1, "with": {"_count": 1}}, "wholeheartedly": {"_count": 1, "convinced": {"_count": 1}}, "crammed": {"_count": 1, "into": {"_count": 1}}, "piling": {"_count": 1, "socks": {"_count": 1}}, "didnt": {"_count": 2, "seem": {"_count": 1}, "eat": {"_count": 1}}, "shaking": {"_count": 4, "": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}}, "my": {"_count": 1, "new": {"_count": 1}}, "wherever": {"_count": 1, "youre": {"_count": 1}}, "eyeing": {"_count": 2, "the": {"_count": 1}, "Ron": {"_count": 1}}, "fluttering": {"_count": 1, "in": {"_count": 1}}, "growing": {"_count": 3, "hoarse": {"_count": 1}, "at": {"_count": 1}, "fainter": {"_count": 1}}, "twisting": {"_count": 1, "his": {"_count": 1}}, "holding": {"_count": 8, "the": {"_count": 1}, "onto": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 1}, "him": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 1}}, "slits": {"_count": 1, "in": {"_count": 1}}, "feeling": {"_count": 2, "thoroughly": {"_count": 1}, "around": {"_count": 1}}, "good": {"_count": 1, "for": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 1}, "lava": {"_count": 1}}, "thumping": {"_count": 1, "painfully": {"_count": 1}}, "thanks": {"_count": 1, "Im": {"_count": 1}}, "bowling": {"_count": 1, "along": {"_count": 1}}, "es": {"_count": 1, "out": {"_count": 1}}, "buttering": {"_count": 1, "himself": {"_count": 1}}, "moved": {"_count": 1, "forward": {"_count": 1}}, "facing": {"_count": 3, "three": {"_count": 1}, "tasks": {"_count": 1}, "him": {"_count": 1}}, "several": {"_count": 2, "inches": {"_count": 1}, "other": {"_count": 1}}, "familiar": {"_count": 1, "picture": {"_count": 1}}, "very": {"_count": 5, "dark": {"_count": 1}, "skinny": {"_count": 1}, "close": {"_count": 1}, "deaf": {"_count": 1}, "deeply": {"_count": 1}}, "looked": {"_count": 8, "like": {"_count": 2}, "as": {"_count": 1}, "back": {"_count": 1}, "around": {"_count": 1}, "terrified": {"_count": 1}, "tremendously": {"_count": 1}, "several": {"_count": 1}}, "shepherding": {"_count": 1, "the": {"_count": 1}}, "settled": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 13, "solid": {"_count": 1}, "rich": {"_count": 1}, "chest": {"_count": 1}, "short": {"_count": 1}, "shade": {"_count": 1}, "prefect": {"_count": 1}, "forest": {"_count": 1}, "ruby": {"_count": 1}, "pleasant": {"_count": 1}, "vaguely": {"_count": 1}, "positively": {"_count": 1}, "Horcrux": {"_count": 1}, "chill": {"_count": 1}}, "completely": {"_count": 2, "black": {"_count": 1}, "unrecognizable": {"_count": 1}}, "giving": {"_count": 2, "chocolate": {"_count": 1}, "off": {"_count": 1}}, "taking": {"_count": 4, "his": {"_count": 1}, "in": {"_count": 1}, "deep": {"_count": 1}, "those": {"_count": 1}}, "along": {"_count": 1, "more": {"_count": 1}}, "get": {"_count": 4, "a": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 1}, "inside": {"_count": 1}}, "firs": {"_count": 1, "thing": {"_count": 1}}, "yeh": {"_count": 2, "need": {"_count": 1}, "can": {"_count": 1}}, "try": {"_count": 1, "not": {"_count": 1}}, "bow": {"_count": 1, "Harry": {"_count": 1}}, "patting": {"_count": 1, "his": {"_count": 1}}, "this": {"_count": 6, "potion": {"_count": 1}, "muttered": {"_count": 1}, "is": {"_count": 2}, "looks": {"_count": 1}, "": {"_count": 1}}, "green": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 5, "the": {"_count": 1}, "Cho": {"_count": 1}, "him": {"_count": 1}, "Roger": {"_count": 1}, "hungrily": {"_count": 1}}, "rattling": {"_count": 1, "doorknob": {"_count": 1}}, "to": {"_count": 19, "think": {"_count": 3}, "feel": {"_count": 1}, "ease": {"_count": 1}, "talk": {"_count": 1}, "wonder": {"_count": 1}, "the": {"_count": 1}, "keep": {"_count": 1}, "stop": {"_count": 1}, "jinx": {"_count": 1}, "be": {"_count": 2}, "give": {"_count": 1}, "check": {"_count": 1}, "look": {"_count": 1}, "join": {"_count": 1}, "close": {"_count": 1}, "try": {"_count": 1}}, "A": {"_count": 2, "jet": {"_count": 1}, "telephone": {"_count": 1}}, "spending": {"_count": 1, "lesson": {"_count": 1}}, "being": {"_count": 5, "closely": {"_count": 1}, "checked": {"_count": 1}, "rapped": {"_count": 1}, "dogged": {"_count": 1}, "put": {"_count": 1}}, "appeared": {"_count": 2, "twice": {"_count": 1}, "beside": {"_count": 1}}, "Minerva": {"_count": 1, "said": {"_count": 1}}, "shining": {"_count": 4, "with": {"_count": 3}, "scarlet": {"_count": 1}}, "starting": {"_count": 3, "to": {"_count": 2}, "on": {"_count": 1}}, "because": {"_count": 8, "of": {"_count": 2}, "I": {"_count": 1}, "Ron": {"_count": 2}, "Captains": {"_count": 1}, "the": {"_count": 2}}, "teaching": {"_count": 3, "them": {"_count": 1}, "his": {"_count": 1}, "Krum": {"_count": 1}}, "asking": {"_count": 1, "Professor": {"_count": 1}}, "working": {"_count": 2, "for": {"_count": 1}, "on": {"_count": 1}}, "poring": {"_count": 1, "over": {"_count": 1}}, "Scabbers": {"_count": 1, "everythings": {"_count": 1}}, "Penny": {"_count": 1, "no": {"_count": 1}}, "scored": {"_count": 1, "three": {"_count": 1}}, "sounding": {"_count": 3, "slightly": {"_count": 1}, "a": {"_count": 1}, "cheerful": {"_count": 1}}, "yer": {"_count": 1, "not": {"_count": 1}}, "youre": {"_count": 2, "trying": {"_count": 1}, "back": {"_count": 1}}, "back": {"_count": 3, "in": {"_count": 1}, "to": {"_count": 1}, "off": {"_count": 1}}, "Wood": {"_count": 1, "save": {"_count": 1}}, "marking": {"_count": 1, "Malfoy": {"_count": 1}}, "reached": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "streaming": {"_count": 2, "down": {"_count": 2}}, "grasped": {"_count": 1, "Harrys": {"_count": 1}}, "darted": {"_count": 2, "toward": {"_count": 1}, "together": {"_count": 1}}, "tinged": {"_count": 3, "with": {"_count": 3}}, "Let": {"_count": 1, "me": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "when": {"_count": 3, "the": {"_count": 1}, "without": {"_count": 1}, "I": {"_count": 1}}, "youve": {"_count": 6, "come": {"_count": 2}, "decided": {"_count": 1}, "got": {"_count": 1}, "torn": {"_count": 1}, "saved": {"_count": 1}}, "rolling": {"_count": 2, "up": {"_count": 1}, "in": {"_count": 1}}, "WHAT": {"_count": 1, "": {"_count": 1}}, "weve": {"_count": 9, "got": {"_count": 4}, "just": {"_count": 1}, "only": {"_count": 1}, "lost": {"_count": 1}, "had": {"_count": 1}, "sorted": {"_count": 1}}, "those": {"_count": 1, "Committee": {"_count": 1}}, "hear": {"_count": 3, "what": {"_count": 1}, "Fred": {"_count": 1}, "distant": {"_count": 1}}, "or": {"_count": 6, "never": {"_count": 3}, "perhaps": {"_count": 1}, "your": {"_count": 1}, "else": {"_count": 1}}, "blocked": {"_count": 1, "from": {"_count": 1}}, "come": {"_count": 3, "on": {"_count": 1}, "very": {"_count": 1}, "now": {"_count": 1}}, "Come": {"_count": 1, "on": {"_count": 1}}, "o": {"_count": 1, "course": {"_count": 1}}, "reaching": {"_count": 1, "down": {"_count": 1}}, "whether": {"_count": 2, "he": {"_count": 1}, "were": {"_count": 1}}, "impossible": {"_count": 1, "": {"_count": 1}}, "hooting": {"_count": 1, "happily": {"_count": 1}}, "damp": {"_count": 1, "derelict": {"_count": 1}}, "saw": {"_count": 6, "had": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 1}, "red": {"_count": 1}}, "trickling": {"_count": 2, "away": {"_count": 1}, "down": {"_count": 1}}, "At": {"_count": 1, "the": {"_count": 1}}, "can": {"_count": 4, "he": {"_count": 3}, "they": {"_count": 1}}, "believed": {"_count": 1, "dead": {"_count": 1}}, "hidden": {"_count": 2, "beneath": {"_count": 1}, "perched": {"_count": 1}}, "all": {"_count": 5, "right": {"_count": 1}, "of": {"_count": 1}, "Karkaroff": {"_count": 1}, "Ive": {"_count": 1}, "Phineas": {"_count": 1}}, "passed": {"_count": 1, "a": {"_count": 1}}, "then": {"_count": 7, "": {"_count": 3}, "the": {"_count": 1}, "now": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}}, "zooming": {"_count": 2, "around": {"_count": 2}}, "joined": {"_count": 2, "the": {"_count": 1}, "Katie": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "contained": {"_count": 3, "one": {"_count": 1}, "nothing": {"_count": 1}, "the": {"_count": 1}}, "directing": {"_count": 1, "her": {"_count": 1}}, "pulling": {"_count": 2, "pots": {"_count": 1}, "back": {"_count": 1}}, "spooning": {"_count": 1, "large": {"_count": 1}}, "breaking": {"_count": 1, "out": {"_count": 1}}, "you": {"_count": 10, "know": {"_count": 3}, "may": {"_count": 1}, "face": {"_count": 1}, "shouldnt": {"_count": 1}, "will": {"_count": 1}, "fought": {"_count": 1}, "were": {"_count": 1}, "mention": {"_count": 1}}, "filling": {"_count": 3, "the": {"_count": 2}, "Harry": {"_count": 1}}, "showed": {"_count": 1, "BULGARIA": {"_count": 1}}, "without": {"_count": 1, "further": {"_count": 1}}, "gliding": {"_count": 2, "out": {"_count": 1}, "over": {"_count": 1}}, "lined": {"_count": 2, "up": {"_count": 1}, "the": {"_count": 1}}, "roared": {"_count": 1, "Ludo": {"_count": 1}}, "ladies": {"_count": 1, "and": {"_count": 1}}, "circling": {"_count": 1, "high": {"_count": 1}}, "leading": {"_count": 1, "by": {"_count": 1}}, "gleefully": {"_count": 1, "formed": {"_count": 1}}, "issuing": {"_count": 2, "from": {"_count": 2}}, "Levski": {"_count": 1, "had": {"_count": 1}}, "Dimitrov": {"_count": 1, "The": {"_count": 1}}, "as": {"_count": 8, "the": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "Hermione": {"_count": 1}, "they": {"_count": 1}, "though": {"_count": 1}, "pale": {"_count": 1}}, "cut": {"_count": 2, "in": {"_count": 1}, "into": {"_count": 1}}, "everything": {"_count": 3, "was": {"_count": 2}, "darkened": {"_count": 1}}, "risen": {"_count": 1, "high": {"_count": 1}}, "disbelief": {"_count": 1, "etched": {"_count": 1}}, "Molly": {"_count": 1, "were": {"_count": 1}}, "shes": {"_count": 3, "printed": {"_count": 1}, "found": {"_count": 1}, "not": {"_count": 1}}, "dragging": {"_count": 1, "a": {"_count": 1}}, "coming": {"_count": 1, "down": {"_count": 1}}, "placed": {"_count": 1, "a": {"_count": 1}}, "unrolling": {"_count": 1, "a": {"_count": 1}}, "Sorting": {"_count": 1, "Emma": {"_count": 1}}, "brilliantly": {"_count": 1, "pink": {"_count": 1}}, "failed": {"_count": 2, "to": {"_count": 2}}, "larger": {"_count": 1, "than": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "raised": {"_count": 2, "the": {"_count": 1}, "puffy": {"_count": 1}}, "slamming": {"_count": 1, "his": {"_count": 1}}, "entering": {"_count": 1, "a": {"_count": 1}}, "rolled": {"_count": 1, "his": {"_count": 1}}, "noticed": {"_count": 2, "that": {"_count": 1}, "for": {"_count": 1}}, "standing": {"_count": 16, "behind": {"_count": 1}, "in": {"_count": 5}, "nervously": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}, "beside": {"_count": 1}, "there": {"_count": 2}, "frozen": {"_count": 1}, "with": {"_count": 1}, "quite": {"_count": 1}}, "waiting": {"_count": 2, "for": {"_count": 1}, "behind": {"_count": 1}}, "washing": {"_count": 1, "over": {"_count": 1}}, "squabbling": {"_count": 1, "over": {"_count": 1}}, "invite": {"_count": 1, "you": {"_count": 1}}, "approached": {"_count": 2, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "took": {"_count": 2, "out": {"_count": 1}, "Padmas": {"_count": 1}}, "halfway": {"_count": 1, "across": {"_count": 1}}, "grazing": {"_count": 1, "in": {"_count": 1}}, "slicked": {"_count": 1, "down": {"_count": 1}}, "shone": {"_count": 2, "more": {"_count": 1}, "Copper": {"_count": 1}}, "have": {"_count": 3, "our": {"_count": 1}, "fallen": {"_count": 1}, "several": {"_count": 1}}, "closed": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "she": {"_count": 1}}, "lit": {"_count": 2, "only": {"_count": 1}, "with": {"_count": 1}}, "swooped": {"_count": 2, "down": {"_count": 2}}, "hiding": {"_count": 1, "one": {"_count": 1}}, "do": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "resembled": {"_count": 2, "something": {"_count": 1}, "a": {"_count": 1}}, "grown": {"_count": 1, "down": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "Siriuss": {"_count": 1, "face": {"_count": 1}}, "Hagrids": {"_count": 1, "just": {"_count": 1}}, "splattered": {"_count": 1, "with": {"_count": 1}}, "Maxime": {"_count": 1, "and": {"_count": 1}}, "mercifully": {"_count": 1, "empty": {"_count": 1}}, "face": {"_count": 1, "toface": {"_count": 1}}, "taken": {"_count": 1, "to": {"_count": 1}}, "stretched": {"_count": 1, "to": {"_count": 1}}, "unprotected": {"_count": 1, "by": {"_count": 1}}, "Diggory": {"_count": 1, "": {"_count": 1}}, "positively": {"_count": 4, "howling": {"_count": 1}, "quivering": {"_count": 1}, "stamping": {"_count": 1}, "wrestling": {"_count": 1}}, "Karkaroff": {"_count": 1, "raised": {"_count": 1}}, "friendly": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "Voldemort": {"_count": 1}}, "isnt": {"_count": 2, "he": {"_count": 2}}, "approaching": {"_count": 1, "six": {"_count": 1}}, "don": {"_count": 1, "panic": {"_count": 1}}, "strewn": {"_count": 2, "with": {"_count": 2}}, "blushing": {"_count": 1, "because": {"_count": 1}}, "than": {"_count": 5, "during": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 3}}, "sir": {"_count": 3, "": {"_count": 2}, "we": {"_count": 1}}, "handed": {"_count": 1, "Harry": {"_count": 1}}, "lacefree": {"_count": 1, "although": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "Viktor": {"_count": 1, "": {"_count": 1}}, "trooped": {"_count": 1, "up": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "unearthed": {"_count": 1, "evidence": {"_count": 1}}, "stroking": {"_count": 2, "it": {"_count": 1}, "Fawkess": {"_count": 1}}, "enumerating": {"_count": 1, "in": {"_count": 1}}, "striding": {"_count": 2, "along": {"_count": 1}, "next": {"_count": 1}}, "peering": {"_count": 2, "sternly": {"_count": 1}, "at": {"_count": 1}}, "Filch": {"_count": 2, "was": {"_count": 2}}, "Theres": {"_count": 1, "nothing": {"_count": 1}}, "safely": {"_count": 2, "back": {"_count": 1}, "hidden": {"_count": 1}}, "squinting": {"_count": 1, "down": {"_count": 1}}, "wearing": {"_count": 3, "over": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "ranged": {"_count": 1, "along": {"_count": 1}}, "Percy": {"_count": 2, "": {"_count": 1}, "thought": {"_count": 1}}, "which": {"_count": 1, "swirled": {"_count": 1}}, "heartily": {"_count": 1, "wishing": {"_count": 1}}, "tying": {"_count": 1, "for": {"_count": 1}}, "while": {"_count": 4, "you": {"_count": 1}, "kissing": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}}, "bet": {"_count": 1, "he": {"_count": 1}}, "Dobby": {"_count": 1, "whispered": {"_count": 1}}, "frowning": {"_count": 1, "up": {"_count": 1}}, "Karkaroffs": {"_count": 1, "made": {"_count": 1}}, "Dumbledores": {"_count": 3, "notified": {"_count": 1}, "added": {"_count": 1}, "back": {"_count": 1}}, "anyway": {"_count": 5, "said": {"_count": 1}, "": {"_count": 3}, "Mum": {"_count": 1}}, "Potter": {"_count": 4, "I": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}}, "stood": {"_count": 3, "on": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "ask": {"_count": 2, "the": {"_count": 2}}, "silently": {"_count": 1, "revolving": {"_count": 1}}, "shared": {"_count": 1, "with": {"_count": 1}}, "Cedrics": {"_count": 1, "caught": {"_count": 1}}, "pointed": {"_count": 3, "his": {"_count": 3}}, "inside": {"_count": 1, "": {"_count": 1}}, "become": {"_count": 1, "the": {"_count": 1}}, "burning": {"_count": 1, "stronger": {"_count": 1}}, "conjuring": {"_count": 1, "tight": {"_count": 1}}, "Wormtail": {"_count": 3, "was": {"_count": 1}, "tells": {"_count": 1}, "will": {"_count": 1}}, "pay": {"_count": 1, "allegiance": {"_count": 1}}, "attached": {"_count": 1, "seamlessly": {"_count": 1}}, "served": {"_count": 1, "her": {"_count": 1}}, "going": {"_count": 3, "to": {"_count": 3}}, "toward": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "concentrated": {"_count": 1, "as": {"_count": 1}}, "pushing": {"_count": 1, "himself": {"_count": 1}}, "another": {"_count": 1, "head": {"_count": 1}}, "livid": {"_count": 1, "with": {"_count": 1}}, "whispered": {"_count": 3, "his": {"_count": 1}, "Hermione": {"_count": 1}, "Griphook": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "towering": {"_count": 1, "over": {"_count": 1}}, "returned": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "given": {"_count": 1, "us": {"_count": 1}}, "give": {"_count": 2, "testimony": {"_count": 1}, "or": {"_count": 1}}, "Dumbledore": {"_count": 4, "": {"_count": 2}, "fixed": {"_count": 1}, "s": {"_count": 1}}, "matching": {"_count": 1, "her": {"_count": 1}}, "take": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "his": {"_count": 7, "wooden": {"_count": 1}, "temper": {"_count": 1}, "destination": {"_count": 1}, "teeth": {"_count": 1}, "house": {"_count": 1}, "odd": {"_count": 1}, "limbs": {"_count": 1}}, "trundling": {"_count": 1, "toward": {"_count": 1}}, "blazing": {"_count": 1, "evening": {"_count": 1}}, "oh": {"_count": 2, "whats": {"_count": 1}, "get": {"_count": 1}}, "theres": {"_count": 3, "going": {"_count": 1}, "a": {"_count": 1}, "nettles": {"_count": 1}}, "sponging": {"_count": 1, "sick": {"_count": 1}}, "full": {"_count": 4, "of": {"_count": 4}}, "sparkling": {"_count": 1, "with": {"_count": 1}}, "overcoming": {"_count": 1, "his": {"_count": 1}}, "everyones": {"_count": 1, "dying": {"_count": 1}}, "alert": {"_count": 1, "even": {"_count": 1}}, "scarlet": {"_count": 1, "in": {"_count": 1}}, "breathing": {"_count": 1, "very": {"_count": 1}}, "creaking": {"_count": 1, "back": {"_count": 1}}, "thought": {"_count": 1, "Id": {"_count": 1}}, "sweeping": {"_count": 2, "a": {"_count": 1}, "around": {"_count": 1}}, "sniffing": {"_count": 1, "and": {"_count": 1}}, "scum": {"_count": 1, "living": {"_count": 1}}, "murmured": {"_count": 1, "in": {"_count": 1}}, "constricting": {"_count": 1, "his": {"_count": 1}}, "gazing": {"_count": 1, "down": {"_count": 1}}, "biting": {"_count": 1, "into": {"_count": 1}}, "almostdeserted": {"_count": 1, "Atrium": {"_count": 1}}, "dishing": {"_count": 1, "great": {"_count": 1}}, "helping": {"_count": 2, "themselves": {"_count": 1}, "himself": {"_count": 1}}, "mopping": {"_count": 1, "her": {"_count": 1}}, "MadEyes": {"_count": 1, "complaining": {"_count": 1}}, "hurry": {"_count": 1, "": {"_count": 1}}, "wished": {"_count": 1, "he": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "realized": {"_count": 2, "it": {"_count": 1}, "from": {"_count": 1}}, "begin": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 3, "": {"_count": 1}, "embarrassed": {"_count": 1}, "full": {"_count": 1}}, "fastened": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 2, "words": {"_count": 1}, "eyes": {"_count": 1}}, "climbed": {"_count": 1, "": {"_count": 1}}, "Olivers": {"_count": 1, "left": {"_count": 1}}, "will": {"_count": 1, "it": {"_count": 1}}, "your": {"_count": 2, "teaching": {"_count": 1}, "beds": {"_count": 1}}, "stuffing": {"_count": 1, "her": {"_count": 1}}, "she": {"_count": 9, "said": {"_count": 4}, "likes": {"_count": 1}, "drew": {"_count": 1}, "grabbed": {"_count": 1}, "warned": {"_count": 1}, "would": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "desperate": {"_count": 1, "and": {"_count": 1}}, "burst": {"_count": 1, "out": {"_count": 1}}, "extinct": {"_count": 2, "fire": {"_count": 1}, "in": {"_count": 1}}, "appreciate": {"_count": 1, "how": {"_count": 1}}, "set": {"_count": 1, "up": {"_count": 1}}, "chalk": {"_count": 1, "white": {"_count": 1}}, "knitting": {"_count": 1, "a": {"_count": 1}}, "may": {"_count": 1, "be": {"_count": 1}}, "past": {"_count": 1, "midnight": {"_count": 1}}, "curling": {"_count": 1, "blackly": {"_count": 1}}, "crouching": {"_count": 2, "on": {"_count": 1}, "almost": {"_count": 1}}, "responding": {"_count": 1, "to": {"_count": 1}}, "formalized": {"_count": 1, "with": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "attracted": {"_count": 1, "the": {"_count": 1}}, "successfully": {"_count": 1, "vanished": {"_count": 1}}, "scribbling": {"_count": 1, "frantically": {"_count": 1}}, "bleeding": {"_count": 1, "so": {"_count": 1}}, "sure": {"_count": 1, "the": {"_count": 1}}, "etched": {"_count": 1, "on": {"_count": 1}}, "almost": {"_count": 2, "always": {"_count": 1}, "empty": {"_count": 1}}, "resembling": {"_count": 1, "curls": {"_count": 1}}, "getting": {"_count": 1, "to": {"_count": 1}}, "flexing": {"_count": 1, "their": {"_count": 1}}, "congealing": {"_count": 1, "foully": {"_count": 1}}, "youll": {"_count": 1, "have": {"_count": 1}}, "opaque": {"_count": 1, "with": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "thundering": {"_count": 1, "through": {"_count": 1}}, "Gryffindor": {"_count": 1, "block": {"_count": 1}}, "neck": {"_count": 1, "and": {"_count": 1}}, "landing": {"_count": 1, "one": {"_count": 1}}, "unfurled": {"_count": 1, "clearing": {"_count": 1}}, "needed": {"_count": 1, "to": {"_count": 1}}, "limping": {"_count": 1, "over": {"_count": 1}}, "whistling": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 6, "to": {"_count": 4}, "completely": {"_count": 1}, "impossible": {"_count": 1}}, "leaping": {"_count": 1, "up": {"_count": 1}}, "pacing": {"_count": 1, "around": {"_count": 1}}, "clearly": {"_count": 1, "visible": {"_count": 1}}, "who": {"_count": 1, "can": {"_count": 1}}, "trailing": {"_count": 1, "on": {"_count": 1}}, "really": {"_count": 1, "angry": {"_count": 1}}, "rummaging": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "falling": {"_count": 1, "thickly": {"_count": 1}}, "Watch": {"_count": 1, "who": {"_count": 1}}, "shunting": {"_count": 1, "Ginny": {"_count": 1}}, "speeding": {"_count": 1, "down": {"_count": 1}}, "aware": {"_count": 1, "that": {"_count": 1}}, "pumping": {"_count": 3, "through": {"_count": 1}, "harder": {"_count": 1}, "so": {"_count": 1}}, "Voldemorts": {"_count": 2, "worst": {"_count": 1}, "getting": {"_count": 1}}, "found": {"_count": 3, "themselves": {"_count": 1}, "himself": {"_count": 1}, "ourselves": {"_count": 1}}, "quite": {"_count": 1, "common": {"_count": 1}}, "conducted": {"_count": 1, "in": {"_count": 1}}, "dreaming": {"_count": 1, "about": {"_count": 1}}, "ten": {"_count": 2, "Death": {"_count": 1}, "feet": {"_count": 1}}, "crying": {"_count": 1, "into": {"_count": 1}}, "hung": {"_count": 1, "lank": {"_count": 1}}, "fumbling": {"_count": 1, "in": {"_count": 1}}, "favorites": {"_count": 1, "to": {"_count": 1}}, "squeezed": {"_count": 1, "herself": {"_count": 1}}, "thinks": {"_count": 1, "youre": {"_count": 1}}, "Rookwoods": {"_count": 1, "told": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "drifting": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 2, "has": {"_count": 1}, "expects": {"_count": 1}}, "Everybody": {"_count": 1, "in": {"_count": 1}}, "fighting": {"_count": 2, "to": {"_count": 1}, "rallying": {"_count": 1}}, "thick": {"_count": 1, "with": {"_count": 1}}, "dear": {"_count": 3, "look": {"_count": 1}, "said": {"_count": 1}, "were": {"_count": 1}}, "radiant": {"_count": 1, "with": {"_count": 1}}, "Potty": {"_count": 1, "": {"_count": 1}}, "chained": {"_count": 1, "and": {"_count": 1}}, "soaring": {"_count": 1, "past": {"_count": 1}}, "putting": {"_count": 2, "down": {"_count": 1}, "on": {"_count": 1}}, "doodling": {"_count": 1, "on": {"_count": 1}}, "tracing": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 3, "There": {"_count": 1}, "under": {"_count": 1}, "beside": {"_count": 1}}, "immersed": {"_count": 1, "in": {"_count": 1}}, "hurrying": {"_count": 1, "in": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "vying": {"_count": 1, "for": {"_count": 1}}, "quick": {"_count": 1, "before": {"_count": 1}}, "Violent": {"_count": 1, "thas": {"_count": 1}}, "why": {"_count": 1, "there": {"_count": 1}}, "recognized": {"_count": 2, "as": {"_count": 2}}, "understood": {"_count": 2, "what": {"_count": 1}, "exactly": {"_count": 1}}, "seized": {"_count": 1, "the": {"_count": 1}}, "hell": {"_count": 1, "know": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "ignoring": {"_count": 1, "Harry": {"_count": 1}}, "dawdling": {"_count": 1, "around": {"_count": 1}}, "arranged": {"_count": 1, "exactly": {"_count": 1}}, "examining": {"_count": 3, "Venus": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "silhouetted": {"_count": 1, "against": {"_count": 1}}, "boys": {"_count": 2, "and": {"_count": 1}, "squeaked": {"_count": 1}}, "rippling": {"_count": 1, "across": {"_count": 1}}, "sprinting": {"_count": 1, "toward": {"_count": 1}}, "telling": {"_count": 1, "everyone": {"_count": 1}}, "bending": {"_count": 1, "his": {"_count": 1}}, "panting": {"_count": 1, "slightly": {"_count": 1}}, "sobbing": {"_count": 1, "into": {"_count": 1}}, "human": {"_count": 1, "": {"_count": 1}}, "looming": {"_count": 1, "over": {"_count": 1}}, "handing": {"_count": 1, "back": {"_count": 1}}, "their": {"_count": 1, "great": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "bright": {"_count": 1, "orange": {"_count": 1}}, "foraging": {"_count": 1, "for": {"_count": 1}}, "deserted": {"_count": 1, "": {"_count": 1}}, "swimming": {"_count": 1, "before": {"_count": 1}}, "hammering": {"_count": 3, "against": {"_count": 2}, "the": {"_count": 1}}, "raining": {"_count": 2, "down": {"_count": 1}, "spells": {"_count": 1}}, "sat": {"_count": 3, "grotesquely": {"_count": 1}, "and": {"_count": 2}}, "suspected": {"_count": 1, "had": {"_count": 1}}, "tottering": {"_count": 1, "drunkenly": {"_count": 1}}, "swollen": {"_count": 1, "and": {"_count": 1}}, "bearing": {"_count": 1, "down": {"_count": 1}}, "maskless": {"_count": 1, "another": {"_count": 1}}, "dueling": {"_count": 2, "": {"_count": 1}, "McGonagall": {"_count": 1}}, "headless": {"_count": 1, "wizard": {"_count": 1}}, "more": {"_count": 2, "terrible": {"_count": 1}, "indescribably": {"_count": 1}}, "lay": {"_count": 3, "flat": {"_count": 1}, "scattered": {"_count": 1}, "quite": {"_count": 1}}, "writhed": {"_count": 1, "and": {"_count": 1}}, "lost": {"_count": 1, "your": {"_count": 1}}, "littered": {"_count": 1, "with": {"_count": 1}}, "reaping": {"_count": 1, "our": {"_count": 1}}, "Voldemort": {"_count": 2, "had": {"_count": 1}, "tilted": {"_count": 1}}, "tonight": {"_count": 1, "I": {"_count": 1}}, "scanning": {"_count": 1, "down": {"_count": 1}}, "munching": {"_count": 1, "on": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "Malfoys": {"_count": 1, "hand": {"_count": 1}}, "loads": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "odd": {"_count": 1}}, "seeing": {"_count": 1, "rather": {"_count": 1}}, "serving": {"_count": 1, "sentences": {"_count": 1}}, "knocking": {"_count": 1, "quite": {"_count": 1}}, "employing": {"_count": 1, "Occlumency": {"_count": 1}}, "turning": {"_count": 3, "up": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "crouched": {"_count": 1, "an": {"_count": 1}}, "Head": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 2}}, "call": {"_count": 1, "him": {"_count": 1}}, "climbing": {"_count": 2, "Dumbledores": {"_count": 1}, "through": {"_count": 1}}, "everyone": {"_count": 2, "knows": {"_count": 2}}, "pointing": {"_count": 2, "at": {"_count": 2}}, "Umbridge": {"_count": 1, "has": {"_count": 1}}, "its": {"_count": 4, "been": {"_count": 1}, "light": {"_count": 1}, "just": {"_count": 2}}, "appearing": {"_count": 1, "almost": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "passing": {"_count": 2, "around": {"_count": 1}, "the": {"_count": 1}}, "offering": {"_count": 1, "around": {"_count": 1}}, "clean": {"_count": 1, "face": {"_count": 1}}, "carrying": {"_count": 1, "details": {"_count": 1}}, "divide": {"_count": 1, "Snape": {"_count": 1}}, "watched": {"_count": 1, "as": {"_count": 1}}, "squinted": {"_count": 1, "at": {"_count": 1}}, "advancing": {"_count": 1, "on": {"_count": 1}}, "cackling": {"_count": 1, "with": {"_count": 1}}, "twilit": {"_count": 1, "office": {"_count": 1}}, "lifted": {"_count": 1, "though": {"_count": 1}}, "expected": {"_count": 1, "not": {"_count": 1}}, "dead": {"_count": 1, "and": {"_count": 1}}, "enduring": {"_count": 1, "a": {"_count": 1}}, "Ill": {"_count": 1, "just": {"_count": 1}}, "brandishing": {"_count": 1, "at": {"_count": 1}}, "sodden": {"_count": 1, "brownpaper": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "chosen": {"_count": 1, "two": {"_count": 1}}, "happy": {"_count": 1, "to": {"_count": 1}}, "Harper": {"_count": 1, "was": {"_count": 1}}, "scooped": {"_count": 1, "up": {"_count": 1}}, "Severus": {"_count": 1, "said": {"_count": 1}}, "Obviously": {"_count": 1, "Harry": {"_count": 1}}, "feeding": {"_count": 1, "Bill": {"_count": 1}}, "digging": {"_count": 1, "for": {"_count": 1}}, "tugging": {"_count": 1, "very": {"_count": 1}}, "sucking": {"_count": 1, "on": {"_count": 1}}, "lots": {"_count": 1, "of": {"_count": 1}}, "decanting": {"_count": 1, "the": {"_count": 1}}, "What": {"_count": 1, "dyou": {"_count": 1}}, "smoothed": {"_count": 1, "out": {"_count": 1}}, "operating": {"_count": 1, "within": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "elbowing": {"_count": 1, "him": {"_count": 1}}, "bustling": {"_count": 1, "over": {"_count": 1}}, "an": {"_count": 3, "then": {"_count": 1}, "outcast": {"_count": 1}, "orphan": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "pelting": {"_count": 1, "bits": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "things": {"_count": 1, "become": {"_count": 1}}, "Hokey": {"_count": 1, "": {"_count": 1}}, "kept": {"_count": 1, "the": {"_count": 1}}, "achieved": {"_count": 1, "Apparition": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "floating": {"_count": 1, "in": {"_count": 1}}, "dyou": {"_count": 1, "mean": {"_count": 1}}, "definitely": {"_count": 1, "grinning": {"_count": 1}}, "shoveling": {"_count": 1, "mashed": {"_count": 1}}, "discussing": {"_count": 1, "the": {"_count": 1}}, "Aragogs": {"_count": 1, "gone": {"_count": 1}}, "swapping": {"_count": 1, "tales": {"_count": 1}}, "apparent": {"_count": 1, "his": {"_count": 1}}, "He": {"_count": 2, "was": {"_count": 1}, "could": {"_count": 1}}, "know": {"_count": 2, "for": {"_count": 1}, "Lord": {"_count": 1}}, "place": {"_count": 1, "your": {"_count": 1}}, "half": {"_count": 1, "empty": {"_count": 1}}, "hated": {"_count": 1, "as": {"_count": 1}}, "dabbing": {"_count": 2, "at": {"_count": 1}, "his": {"_count": 1}}, "Snape": {"_count": 4, "must": {"_count": 1}, "looked": {"_count": 1}, "and": {"_count": 1}, "stood": {"_count": 1}}, "headmistress": {"_count": 1, "": {"_count": 1}}, "hers": {"_count": 1, "": {"_count": 1}}, "bore": {"_count": 1, "a": {"_count": 1}}, "proceeded": {"_count": 1, "a": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "therefore": {"_count": 1, "that": {"_count": 1}}, "question": {"_count": 1, "whether": {"_count": 1}}, "resuming": {"_count": 1, "his": {"_count": 1}}, "dawned": {"_count": 1, "on": {"_count": 1}}, "setting": {"_count": 1, "sun": {"_count": 1}}, "withdrew": {"_count": 1, "a": {"_count": 1}}, "quivering": {"_count": 1, "a": {"_count": 1}}, "loosening": {"_count": 1, "the": {"_count": 1}}, "three": {"_count": 1, "of": {"_count": 1}}, "thrown": {"_count": 1, "flat": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "dropped": {"_count": 1, "into": {"_count": 1}}, "weighing": {"_count": 1, "Quidditch": {"_count": 1}}, "done": {"_count": 1, "": {"_count": 1}}, "sleeping": {"_count": 2, "in": {"_count": 2}}, "wide": {"_count": 1, "awake": {"_count": 1}}, "housed": {"_count": 1, "a": {"_count": 1}}, "messing": {"_count": 1, "her": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "partially": {"_count": 1, "concealed": {"_count": 1}}, "flicking": {"_count": 1, "through": {"_count": 1}}, "Mums": {"_count": 1, "asleep": {"_count": 1}}, "packed": {"_count": 2, "marquee": {"_count": 1}, "inside": {"_count": 1}}, "entwined": {"_count": 1, "figures": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "forbidden": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "sick": {"_count": 1}}, "deemed": {"_count": 1, "to": {"_count": 1}}, "compulsory": {"_count": 1, "for": {"_count": 1}}, "alive": {"_count": 1, "remembers": {"_count": 1}}, "attracting": {"_count": 1, "a": {"_count": 1}}, "lowered": {"_count": 1, "to": {"_count": 1}}, "possessed": {"_count": 1, "": {"_count": 1}}, "stacked": {"_count": 1, "in": {"_count": 1}}, "towered": {"_count": 1, "over": {"_count": 1}}, "whispering": {"_count": 1, "frantic": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "halfclosed": {"_count": 1, "strips": {"_count": 1}}, "performing": {"_count": 1, "complicated": {"_count": 1}}, "pitching": {"_count": 1, "the": {"_count": 1}}, "Ted": {"_count": 1, "and": {"_count": 1}}, "beating": {"_count": 1, "on": {"_count": 1}}, "surely": {"_count": 1, "or": {"_count": 1}}, "singing": {"_count": 1, "the": {"_count": 1}}, "shuffled": {"_count": 1, "a": {"_count": 1}}, "dimmed": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 1, "lights": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "speaking": {"_count": 1, "with": {"_count": 1}}, "invisible": {"_count": 1, "beyond": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "encased": {"_count": 1, "in": {"_count": 1}}, "encouraging": {"_count": 1, "and": {"_count": 1}}, "mere": {"_count": 1, "outlines": {"_count": 1}}, "Bill": {"_count": 2, "was": {"_count": 2}}, "rested": {"_count": 1, "": {"_count": 1}}, "remember": {"_count": 1, "whose": {"_count": 1}}, "flecked": {"_count": 1, "with": {"_count": 1}}, "But": {"_count": 1, "Mr": {"_count": 1}}, "suspended": {"_count": 2, "in": {"_count": 2}}, "occupied": {"_count": 1, "alone": {"_count": 1}}, "long": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Travers": {"_count": 1, "was": {"_count": 1}}, "act": {"_count": 1, "now": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "yet": {"_count": 1, "who": {"_count": 1}}, "How": {"_count": 1, "could": {"_count": 1}}, "scrambling": {"_count": 1, "to": {"_count": 1}}, "black": {"_count": 1, "against": {"_count": 1}}, "Ariana": {"_count": 1, "was": {"_count": 1}}, "someone": {"_count": 1, "taller": {"_count": 1}}, "Piertotum": {"_count": 1, "Locomotori": {"_count": 1}}, "making": {"_count": 1, "its": {"_count": 1}}, "Aberforth": {"_count": 1, "has": {"_count": 1}}, "of": {"_count": 1, "what": {"_count": 1}}, "did": {"_count": 1, "Harry": {"_count": 1}}, "Thoughts": {"_count": 1, "of": {"_count": 1}}, "hovering": {"_count": 1, "beside": {"_count": 1}}, "Neville": {"_count": 1, "would": {"_count": 1}}, "throwing": {"_count": 1, "itself": {"_count": 1}}, "quickly": {"_count": 1, "while": {"_count": 1}}, "something": {"_count": 1, "very": {"_count": 1}}, "traveled": {"_count": 1, "down": {"_count": 1}}, "sprang": {"_count": 1, "into": {"_count": 1}}, "kneel": {"_count": 1, "before": {"_count": 1}}, "deluded": {"_count": 1, "ones": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "creeping": {"_count": 1, "in": {"_count": 1}}}, "having": {"_count": 272, "a": {"_count": 52, "tantrum": {"_count": 1}, "cupboard": {"_count": 1}, "witch": {"_count": 1}, "furious": {"_count": 1}, "party": {"_count": 1}, "constant": {"_count": 1}, "wizard": {"_count": 1}, "stupid": {"_count": 1}, "look": {"_count": 1}, "lastminute": {"_count": 1}, "friend": {"_count": 1}, "fit": {"_count": 1}, "particularly": {"_count": 1}, "little": {"_count": 3}, "very": {"_count": 1}, "lot": {"_count": 2}, "liein": {"_count": 1}, "heated": {"_count": 1}, "good": {"_count": 2}, "sword": {"_count": 1}, "well": {"_count": 1}, "blazing": {"_count": 1}, "proper": {"_count": 1}, "heart": {"_count": 1}, "nice": {"_count": 2}, "bit": {"_count": 2}, "go": {"_count": 4}, "practice": {"_count": 1}, "sale": {"_count": 1}, "dream": {"_count": 1}, "laugh": {"_count": 4}, "hand": {"_count": 1}, "whispered": {"_count": 1}, "shufti": {"_count": 1}, "bad": {"_count": 1}, "fight": {"_count": 1}, "word": {"_count": 1}, "soft": {"_count": 1}, "plan": {"_count": 1}, "muttered": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "one": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 24, "wear": {"_count": 1}, "do": {"_count": 1}, "punish": {"_count": 1}, "listen": {"_count": 1}, "go": {"_count": 2}, "perform": {"_count": 1}, "live": {"_count": 1}, "cook": {"_count": 1}, "struggle": {"_count": 1}, "take": {"_count": 3}, "repair": {"_count": 1}, "gouge": {"_count": 1}, "wend": {"_count": 1}, "endure": {"_count": 1}, "stay": {"_count": 1}, "answer": {"_count": 1}, "unpack": {"_count": 1}, "try": {"_count": 1}, "miss": {"_count": 1}, "sleep": {"_count": 1}, "think": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "no": {"_count": 5, "proper": {"_count": 1}, "idea": {"_count": 1}, "success": {"_count": 1}, "wish": {"_count": 2}}, "too": {"_count": 1, "good": {"_count": 1}}, "nightmares": {"_count": 3, "": {"_count": 2}, "Im": {"_count": 1}}, "his": {"_count": 3, "head": {"_count": 1}, "hand": {"_count": 1}, "own": {"_count": 1}}, "met": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 4, "backs": {"_count": 1}, "soul": {"_count": 1}, "memories": {"_count": 1}, "usual": {"_count": 1}}, "far": {"_count": 2, "worse": {"_count": 1}, "too": {"_count": 1}}, "an": {"_count": 5, "extremely": {"_count": 1}, "intense": {"_count": 1}, "argument": {"_count": 2}, "animated": {"_count": 1}}, "slugs": {"_count": 1, "pouring": {"_count": 1}}, "tantrums": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 8, "Snitch": {"_count": 1}, "full": {"_count": 1}, "time": {"_count": 3}, "same": {"_count": 2}, "house": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "trouble": {"_count": 5, "with": {"_count": 3}, "adjusting": {"_count": 1}, "too": {"_count": 1}}, "these": {"_count": 4, "lessons": {"_count": 1}, "pains": {"_count": 1}, "visions": {"_count": 1}, "thoughts": {"_count": 1}}, "difficulty": {"_count": 5, "getting": {"_count": 1}, "in": {"_count": 1}, "talking": {"_count": 1}, "pulling": {"_count": 1}, "with": {"_count": 1}}, "on": {"_count": 1, "him": {"_count": 1}}, "acquired": {"_count": 1, "such": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}, "tea": {"_count": 2, "with": {"_count": 2}}, "your": {"_count": 1, "own": {"_count": 1}}, "hallucin": {"_count": 1, "Malfoy": {"_count": 1}}, "hallucinations": {"_count": 1, "snarled": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "defense": {"_count": 1, "lessons": {"_count": 1}}, "my": {"_count": 2, "Divination": {"_count": 1}, "hand": {"_count": 1}}, "some": {"_count": 2, "sort": {"_count": 1}, "fun": {"_count": 1}}, "Harry": {"_count": 2, "in": {"_count": 1}, "back": {"_count": 1}}, "delivered": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 1, "rescued": {"_count": 1}}, "been": {"_count": 9, "thinking": {"_count": 1}, "made": {"_count": 1}, "knocked": {"_count": 1}, "carted": {"_count": 1}, "clubbed": {"_count": 1}, "favorably": {"_count": 1}, "clever": {"_count": 1}, "tortured": {"_count": 1}, "wellcaredfor": {"_count": 1}}, "fun": {"_count": 2, "with": {"_count": 1}, "at": {"_count": 1}}, "great": {"_count": 1, "difficulty": {"_count": 1}}, "us": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 5, "finished": {"_count": 1}, "been": {"_count": 1}, "collided": {"_count": 1}, "informed": {"_count": 1}, "gone": {"_count": 1}}, "lunch": {"_count": 1, "with": {"_count": 1}}, "children": {"_count": 1, "theyll": {"_count": 1}}, "beaten": {"_count": 1, "Gryffindor": {"_count": 1}}, "her": {"_count": 2, "teeth": {"_count": 1}, "fed": {"_count": 1}}, "had": {"_count": 3, "just": {"_count": 1}, "access": {"_count": 1}, "no": {"_count": 1}}, "kittens": {"_count": 1, "about": {"_count": 1}}, "stormed": {"_count": 1, "upstairs": {"_count": 1}}, "problems": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "finished": {"_count": 1, "but": {"_count": 1}}, "pulled": {"_count": 1, "both": {"_count": 1}}, "Ron": {"_count": 1, "as": {"_count": 1}}, "Fleur": {"_count": 1, "for": {"_count": 1}}, "any": {"_count": 4, "inclination": {"_count": 1}, "contact": {"_count": 1}, "of": {"_count": 1}, "more": {"_count": 1}}, "him": {"_count": 1, "on": {"_count": 1}}, "this": {"_count": 3, "conversation": {"_count": 1}, "year": {"_count": 1}, "special": {"_count": 1}}, "real": {"_count": 2, "trouble": {"_count": 2}}, "finally": {"_count": 1, "discarded": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "funny": {"_count": 3, "turns": {"_count": 1}, "dreams": {"_count": 2}}, "used": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "Aurors": {"_count": 1, "on": {"_count": 1}}, "sat": {"_count": 1, "on": {"_count": 1}}, "purebloods": {"_count": 1, "in": {"_count": 1}}, "relatives": {"_count": 1, "like": {"_count": 1}}, "dreams": {"_count": 1, "about": {"_count": 1}}, "received": {"_count": 1, "a": {"_count": 1}}, "managed": {"_count": 2, "finally": {"_count": 1}, "to": {"_count": 1}}, "listened": {"_count": 1, "to": {"_count": 1}}, "practiced": {"_count": 1, "Vanishing": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "enough": {"_count": 1, "difficulty": {"_count": 1}}, "bad": {"_count": 1, "dreams": {"_count": 1}}, "spotted": {"_count": 1, "it": {"_count": 1}}, "dived": {"_count": 1, "so": {"_count": 1}}, "checked": {"_count": 1, "that": {"_count": 1}}, "located": {"_count": 1, "the": {"_count": 1}}, "silent": {"_count": 1, "fits": {"_count": 1}}, "visions": {"_count": 1, "of": {"_count": 1}}, "those": {"_count": 2, "dreams": {"_count": 2}}, "cornered": {"_count": 1, "Harry": {"_count": 1}}, "successfully": {"_count": 1, "asked": {"_count": 1}}, "fallen": {"_count": 2, "to": {"_count": 1}, "out": {"_count": 1}}, "gotten": {"_count": 1, "there": {"_count": 1}}, "jars": {"_count": 1, "thrown": {"_count": 1}}, "deserved": {"_count": 1, "what": {"_count": 1}}, "studied": {"_count": 2, "hard": {"_count": 1}, "the": {"_count": 1}}, "taken": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 2, "as": {"_count": 1}, "in": {"_count": 1}}, "watched": {"_count": 1, "Cedric": {"_count": 1}}, "escaped": {"_count": 1, "death": {"_count": 1}}, "narrowly": {"_count": 1, "escaped": {"_count": 1}}, "responsibility": {"_count": 1, "for": {"_count": 1}}, "fought": {"_count": 1, "Dark": {"_count": 1}}, "lessons": {"_count": 1, "with": {"_count": 1}}, "given": {"_count": 1, "it": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "destiny": {"_count": 1}}, "made": {"_count": 1, "some": {"_count": 1}}, "scored": {"_count": 1, "four": {"_count": 1}}, "laughed": {"_count": 1, "at": {"_count": 1}}, "tried": {"_count": 2, "to": {"_count": 1}, "many": {"_count": 1}}, "copied": {"_count": 1, "everything": {"_count": 1}}, "breakfast": {"_count": 1, "": {"_count": 1}}, "rows": {"_count": 1, "with": {"_count": 1}}, "second": {"_count": 1, "thoughts": {"_count": 1}}, "caused": {"_count": 1, "the": {"_count": 1}}, "tampered": {"_count": 1, "with": {"_count": 1}}, "always": {"_count": 1, "guarded": {"_count": 1}}, "secured": {"_count": 1, "objects": {"_count": 1}}, "first": {"_count": 1, "cast": {"_count": 1}}, "rushed": {"_count": 1, "off": {"_count": 1}}, "dashed": {"_count": 1, "off": {"_count": 1}}, "come": {"_count": 1, "the": {"_count": 1}}, "only": {"_count": 1, "just": {"_count": 1}}, "shouted": {"_count": 1, "down": {"_count": 1}}, "all": {"_count": 1, "these": {"_count": 1}}, "six": {"_count": 1, "brothers": {"_count": 1}}, "read": {"_count": 1, "a": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "conversations": {"_count": 1, "without": {"_count": 1}}, "entirely": {"_count": 1, "repacked": {"_count": 1}}, "somebody": {"_count": 1, "elses": {"_count": 1}}, "pure": {"_count": 1, "blood": {"_count": 1}}, "walked": {"_count": 1, "out": {"_count": 1}}, "em": {"_count": 1, "near": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "wrapped": {"_count": 1, "your": {"_count": 1}}}, "tantrum": {"_count": 5, "and": {"_count": 1, "throwing": {"_count": 1}}, "coming": {"_count": 1, "on": {"_count": 1}}, "because": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "throwing": {"_count": 103, "his": {"_count": 8, "cereal": {"_count": 1}, "full": {"_count": 1}, "pillow": {"_count": 1}, "last": {"_count": 1}, "chicken": {"_count": 1}, "fifth": {"_count": 1}, "weight": {"_count": 1}, "things": {"_count": 1}}, "out": {"_count": 5, "his": {"_count": 2}, "dark": {"_count": 1}, "an": {"_count": 2}}, "dancing": {"_count": 1, "spots": {"_count": 1}}, "themselves": {"_count": 1, "at": {"_count": 1}}, "it": {"_count": 12, "back": {"_count": 1}, "over": {"_count": 3}, "": {"_count": 1}, "down": {"_count": 1}, "aside": {"_count": 2}, "into": {"_count": 3}, "to": {"_count": 1}}, "the": {"_count": 13, "golf": {"_count": 1}, "end": {"_count": 1}, "cloak": {"_count": 3}, "Quaffle": {"_count": 1}, "medal": {"_count": 1}, "ring": {"_count": 1}, "Prophet": {"_count": 1}, "signed": {"_count": 1}, "paper": {"_count": 1}, "portion": {"_count": 1}, "challengers": {"_count": 1}}, "down": {"_count": 4, "his": {"_count": 4}}, "them": {"_count": 8, "into": {"_count": 3}, "down": {"_count": 1}, "hastily": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "onto": {"_count": 1}}, "caution": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 1, "out": {"_count": 1}}, "dirty": {"_count": 1, "looks": {"_count": 1}}, "Harry": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 3, "his": {"_count": 1}, "anxious": {"_count": 1}, "a": {"_count": 1}}, "things": {"_count": 3, "out": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 1}}, "Peppermint": {"_count": 1, "Toads": {"_count": 1}}, "Pettigrews": {"_count": 1, "hands": {"_count": 1}}, "stones": {"_count": 2, "through": {"_count": 1}, "at": {"_count": 1}}, "a": {"_count": 7, "red": {"_count": 1}, "packet": {"_count": 1}, "rune": {"_count": 1}, "furious": {"_count": 1}, "napkin": {"_count": 1}, "crumpled": {"_count": 1}, "circle": {"_count": 1}}, "jealous": {"_count": 1, "looks": {"_count": 1}}, "what": {"_count": 1, "seemed": {"_count": 1}}, "himself": {"_count": 3, "into": {"_count": 3}}, "up": {"_count": 1, "her": {"_count": 1}}, "back": {"_count": 5, "her": {"_count": 2}, "its": {"_count": 1}, "long": {"_count": 1}, "his": {"_count": 1}}, "aside": {"_count": 1, "Men": {"_count": 1}}, "lumps": {"_count": 1, "of": {"_count": 1}}, "Hermione": {"_count": 1, "looks": {"_count": 1}}, "anxious": {"_count": 1, "looks": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 2}}, "an": {"_count": 1, "uneasy": {"_count": 1}}, "pink": {"_count": 1, "confetti": {"_count": 1}}, "Fanged": {"_count": 1, "Frisbees": {"_count": 1}}, "knives": {"_count": 1, "again": {"_count": 1}}, "you": {"_count": 1, "unceremoniously": {"_count": 1}}, "away": {"_count": 1, "his": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "hex": {"_count": 1, "after": {"_count": 1}}, "odd": {"_count": 1, "shadows": {"_count": 1}}, "off": {"_count": 2, "the": {"_count": 1}, "Malfoys": {"_count": 1}}, "itself": {"_count": 1, "against": {"_count": 1}}, "food": {"_count": 1, "into": {"_count": 1}}}, "cereal": {"_count": 4, "at": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "bowl": {"_count": 1, "as": {"_count": 1}}, "behind": {"_count": 1, "Fleur": {"_count": 1}}}, "at": {"_count": 8387, "the": {"_count": 2373, "walls": {"_count": 2}, "cat": {"_count": 3}, "sign": {"_count": 4}, "whisperers": {"_count": 1}, "tabby": {"_count": 1}, "Dursleys": {"_count": 16}, "sky": {"_count": 10}, "little": {"_count": 3}, "other": {"_count": 25}, "fair": {"_count": 1}, "moment": {"_count": 75}, "entrance": {"_count": 16}, "glistening": {"_count": 1}, "snake": {"_count": 5}, "table": {"_count": 22}, "keyhole": {"_count": 1}, "crack": {"_count": 3}, "address": {"_count": 1}, "foot": {"_count": 43}, "breakfast": {"_count": 3}, "same": {"_count": 53}, "lights": {"_count": 1}, "front": {"_count": 35}, "top": {"_count": 70}, "coast": {"_count": 1}, "door": {"_count": 47}, "giant": {"_count": 5}, "very": {"_count": 40}, "end": {"_count": 113}, "dark": {"_count": 20}, "thousands": {"_count": 2}, "beginning": {"_count": 4}, "last": {"_count": 9}, "barrier": {"_count": 2}, "seat": {"_count": 1}, "Famous": {"_count": 2}, "wand": {"_count": 4}, "sweets": {"_count": 1}, "great": {"_count": 2}, "first": {"_count": 6}, "hat": {"_count": 1}, "Hufflepuff": {"_count": 4}, "black": {"_count": 4}, "Gryffindor": {"_count": 23}, "students": {"_count": 4}, "stunned": {"_count": 3}, "Slytherin": {"_count": 14}, "High": {"_count": 2}, "class": {"_count": 7}, "perfect": {"_count": 1}, "ground": {"_count": 8}, "stitch": {"_count": 1}, "look": {"_count": 13}, "package": {"_count": 1}, "three": {"_count": 7}, "next": {"_count": 5}, "startofterm": {"_count": 3}, "troll": {"_count": 1}, "floor": {"_count": 14}, "speck": {"_count": 1}, "flash": {"_count": 2}, "goal": {"_count": 1}, "crowd": {"_count": 4}, "way": {"_count": 4}, "bottom": {"_count": 36}, "note": {"_count": 1}, "back": {"_count": 46}, "sight": {"_count": 53}, "idea": {"_count": 9}, "fire": {"_count": 7}, "egg": {"_count": 4}, "dragon": {"_count": 2}, "Quidditch": {"_count": 20}, "school": {"_count": 15}, "figure": {"_count": 1}, "grandfather": {"_count": 2}, "plant": {"_count": 1}, "flock": {"_count": 1}, "tiny": {"_count": 8}, "right": {"_count": 5}, "ceiling": {"_count": 40}, "nerve": {"_count": 1}, "grin": {"_count": 1}, "hedge": {"_count": 1}, "bed": {"_count": 1}, "height": {"_count": 5}, "floating": {"_count": 2}, "shrinking": {"_count": 1}, "Ministry": {"_count": 74}, "at": {"_count": 1}, "dishes": {"_count": 1}, "cover": {"_count": 3}, "orange": {"_count": 1}, "Burrow": {"_count": 16}, "dinner": {"_count": 1}, "kitchen": {"_count": 6}, "items": {"_count": 1}, "withered": {"_count": 1}, "counter": {"_count": 2}, "manor": {"_count": 2}, "tenpound": {"_count": 1}, "twins": {"_count": 5}, "house": {"_count": 1}, "clock": {"_count": 3}, "Invisibility": {"_count": 1}, "solid": {"_count": 2}, "ancient": {"_count": 2}, "Great": {"_count": 3}, "staff": {"_count": 22}, "empty": {"_count": 4}, "station": {"_count": 4}, "ends": {"_count": 1}, "red": {"_count": 1}, "corners": {"_count": 3}, "assembled": {"_count": 3}, "lightning": {"_count": 1}, "real": {"_count": 1}, "cage": {"_count": 1}, "people": {"_count": 3}, "window": {"_count": 17}, "photograph": {"_count": 3}, "castle": {"_count": 13}, "toast": {"_count": 1}, "seven": {"_count": 1}, "best": {"_count": 2}, "time": {"_count": 42}, "canopy": {"_count": 5}, "ears": {"_count": 1}, "muddy": {"_count": 1}, "point": {"_count": 6}, "putrid": {"_count": 1}, "fellow": {"_count": 1}, "stone": {"_count": 5}, "wrong": {"_count": 5}, "Halloween": {"_count": 1}, "topmost": {"_count": 2}, "dirty": {"_count": 1}, "head": {"_count": 3}, "book": {"_count": 4}, "full": {"_count": 5}, "thought": {"_count": 19}, "long": {"_count": 5}, "Bludger": {"_count": 2}, "determined": {"_count": 1}, "pillowcase": {"_count": 1}, "statue": {"_count": 3}, "ready": {"_count": 13}, "aftermath": {"_count": 1}, "zoo": {"_count": 1}, "Dueling": {"_count": 3}, "diary": {"_count": 2}, "orphanage": {"_count": 2}, "wizard": {"_count": 1}, "list": {"_count": 1}, "news": {"_count": 4}, "usual": {"_count": 1}, "crossbow": {"_count": 1}, "windows": {"_count": 6}, "Azkaban": {"_count": 1}, "closed": {"_count": 2}, "mullioned": {"_count": 1}, "grass": {"_count": 1}, "pair": {"_count": 9}, "Ravenclaw": {"_count": 9}, "beds": {"_count": 1}, "word": {"_count": 3}, "monster": {"_count": 1}, "curves": {"_count": 1}, "thing": {"_count": 4}, "tunnel": {"_count": 2}, "smallest": {"_count": 1}, "orphaned": {"_count": 1}, "glittering": {"_count": 1}, "hem": {"_count": 1}, "elf": {"_count": 4}, "start": {"_count": 4}, "alarm": {"_count": 1}, "reporter": {"_count": 2}, "prisoner": {"_count": 1}, "state": {"_count": 3}, "alleyway": {"_count": 1}, "rear": {"_count": 2}, "blank": {"_count": 4}, "shadowy": {"_count": 3}, "owner": {"_count": 1}, "Leaky": {"_count": 9}, "Firebolt": {"_count": 5}, "bookshop": {"_count": 1}, "lump": {"_count": 1}, "traffic": {"_count": 1}, "sound": {"_count": 18}, "luggage": {"_count": 2}, "mouth": {"_count": 2}, "compartment": {"_count": 1}, "now": {"_count": 5}, "expression": {"_count": 3}, "outset": {"_count": 1}, "roots": {"_count": 2}, "covers": {"_count": 1}, "handle": {"_count": 2}, "mummys": {"_count": 1}, "feast": {"_count": 6}, "scar": {"_count": 1}, "tank": {"_count": 3}, "goblet": {"_count": 3}, "Three": {"_count": 2}, "ruined": {"_count": 1}, "edge": {"_count": 3}, "dementors": {"_count": 3}, "strips": {"_count": 1}, "entrances": {"_count": 2}, "ragged": {"_count": 1}, "miraculous": {"_count": 1}, "map": {"_count": 9}, "thick": {"_count": 4}, "bar": {"_count": 6}, "Committees": {"_count": 1}, "Committee": {"_count": 1}, "air": {"_count": 3}, "Magical": {"_count": 1}, "broom": {"_count": 1}, "feet": {"_count": 2}, "cluttered": {"_count": 2}, "even": {"_count": 1}, "rune": {"_count": 1}, "sheet": {"_count": 1}, "balance": {"_count": 1}, "offending": {"_count": 1}, "curtains": {"_count": 1}, "Fat": {"_count": 4}, "crumbling": {"_count": 1}, "deserted": {"_count": 3}, "message": {"_count": 1}, "parchment": {"_count": 4}, "verdict": {"_count": 1}, "enormous": {"_count": 4}, "crystal": {"_count": 2}, "common": {"_count": 3}, "library": {"_count": 2}, "breaking": {"_count": 1}, "grounds": {"_count": 6}, "pages": {"_count": 1}, "place": {"_count": 18}, "base": {"_count": 6}, "rat": {"_count": 2}, "effort": {"_count": 1}, "lifeless": {"_count": 1}, "pitiful": {"_count": 1}, "age": {"_count": 7}, "circle": {"_count": 2}, "swarming": {"_count": 1}, "hippogriff": {"_count": 1}, "gates": {"_count": 4}, "corner": {"_count": 2}, "owl": {"_count": 1}, "envelope": {"_count": 1}, "old": {"_count": 3}, "sink": {"_count": 2}, "Riddle": {"_count": 1}, "inky": {"_count": 1}, "fact": {"_count": 3}, "letter": {"_count": 2}, "Department": {"_count": 2}, "signature": {"_count": 2}, "astonished": {"_count": 1}, "food": {"_count": 1}, "Weasleys": {"_count": 1}, "blasted": {"_count": 1}, "Floo": {"_count": 1}, "hole": {"_count": 2}, "scrubbed": {"_count": 1}, "cutlery": {"_count": 1}, "bank": {"_count": 2}, "World": {"_count": 10}, "tents": {"_count": 1}, "four": {"_count": 1}, "office": {"_count": 3}, "many": {"_count": 3}, "distant": {"_count": 4}, "green": {"_count": 2}, "Omnioculars": {"_count": 1}, "highest": {"_count": 1}, "veela": {"_count": 3}, "shamrock": {"_count": 1}, "Irish": {"_count": 1}, "field": {"_count": 2}, "referee": {"_count": 1}, "leprechauns": {"_count": 1}, "canvas": {"_count": 2}, "campsite": {"_count": 4}, "match": {"_count": 4}, "skull": {"_count": 3}, "scene": {"_count": 2}, "emeraldgreen": {"_count": 1}, "tent": {"_count": 3}, "small": {"_count": 3}, "brightening": {"_count": 1}, "Hedwigfree": {"_count": 1}, "Daily": {"_count": 3}, "collar": {"_count": 2}, "train": {"_count": 1}, "far": {"_count": 19}, "teachers": {"_count": 3}, "appropriate": {"_count": 1}, "brim": {"_count": 1}, "Sorting": {"_count": 1}, "sea": {"_count": 2}, "prospect": {"_count": 6}, "completely": {"_count": 1}, "question": {"_count": 2}, "chart": {"_count": 1}, "ferret": {"_count": 1}, "spider": {"_count": 3}, "grubby": {"_count": 1}, "Owlery": {"_count": 1}, "amount": {"_count": 1}, "interruption": {"_count": 1}, "starry": {"_count": 5}, "waiting": {"_count": 1}, "lake": {"_count": 1}, "foreign": {"_count": 1}, "girl": {"_count": 1}, "Durmstrang": {"_count": 1}, "baby": {"_count": 2}, "name": {"_count": 7}, "slip": {"_count": 1}, "quill": {"_count": 2}, "velvet": {"_count": 1}, "judges": {"_count": 5}, "wizards": {"_count": 2}, "closest": {"_count": 2}, "dragons": {"_count": 1}, "Horntails": {"_count": 1}, "eggs": {"_count": 1}, "Potters": {"_count": 2}, "squiggly": {"_count": 1}, "clutch": {"_count": 1}, "plate": {"_count": 1}, "cost": {"_count": 1}, "skrewt": {"_count": 1}, "mayhem": {"_count": 1}, "weeny": {"_count": 1}, "quarter": {"_count": 1}, "sparkling": {"_count": 1}, "speed": {"_count": 1}, "silvery": {"_count": 2}, "unicorn": {"_count": 1}, "ball": {"_count": 1}, "goblins": {"_count": 1}, "side": {"_count": 1}, "dot": {"_count": 1}, "squeak": {"_count": 1}, "Marauders": {"_count": 2}, "merpeople": {"_count": 1}, "shrunken": {"_count": 1}, "gillyweed": {"_count": 1}, "waters": {"_count": 5}, "stands": {"_count": 1}, "grindylows": {"_count": 1}, "ropes": {"_count": 4}, "article": {"_count": 1}, "Slytherins": {"_count": 2}, "yellowing": {"_count": 1}, "cave": {"_count": 2}, "paper": {"_count": 2}, "beaming": {"_count": 1}, "fireplace": {"_count": 1}, "owls": {"_count": 4}, "large": {"_count": 2}, "chocolate": {"_count": 1}, "second": {"_count": 1}, "tree": {"_count": 1}, "surrounding": {"_count": 3}, "misty": {"_count": 1}, "present": {"_count": 1}, "contents": {"_count": 2}, "high": {"_count": 2}, "silently": {"_count": 1}, "man": {"_count": 5}, "chains": {"_count": 2}, "watching": {"_count": 2}, "swirling": {"_count": 1}, "headline": {"_count": 3}, "cold": {"_count": 1}, "spiders": {"_count": 1}, "cup": {"_count": 1}, "Triwizard": {"_count": 2}, "hooded": {"_count": 1}, "silver": {"_count": 3}, "space": {"_count": 1}, "Death": {"_count": 5}, "edges": {"_count": 2}, "Yule": {"_count": 4}, "unconscious": {"_count": 1}, "desk": {"_count": 1}, "mans": {"_count": 1}, "scarletandgold": {"_count": 1}, "group": {"_count": 2}, "disbelieving": {"_count": 1}, "Leaving": {"_count": 2}, "hands": {"_count": 3}, "horseless": {"_count": 1}, "beetle": {"_count": 1}, "brilliant": {"_count": 1}, "Five": {"_count": 1}, "railings": {"_count": 1}, "stag": {"_count": 1}, "bedside": {"_count": 1}, "whole": {"_count": 2}, "jumble": {"_count": 1}, "piece": {"_count": 1}, "houses": {"_count": 1}, "newly": {"_count": 1}, "meeting": {"_count": 1}, "lack": {"_count": 1}, "noise": {"_count": 2}, "ear": {"_count": 1}, "others": {"_count": 7}, "mention": {"_count": 5}, "dusty": {"_count": 2}, "opposite": {"_count": 4}, "names": {"_count": 1}, "tapestry": {"_count": 2}, "miserable": {"_count": 1}, "dial": {"_count": 1}, "security": {"_count": 2}, "witch": {"_count": 1}, "box": {"_count": 2}, "down": {"_count": 1}, "bench": {"_count": 1}, "obviously": {"_count": 1}, "Wizengamot": {"_count": 1}, "benches": {"_count": 1}, "statues": {"_count": 2}, "headquarters": {"_count": 2}, "wardrobes": {"_count": 1}, "scarlet": {"_count": 1}, "forefront": {"_count": 1}, "patch": {"_count": 5}, "wroughtiron": {"_count": 1}, "ludicrously": {"_count": 1}, "magazine": {"_count": 1}, "killings": {"_count": 1}, "page": {"_count": 2}, "horrible": {"_count": 1}, "center": {"_count": 3}, "endofterm": {"_count": 1}, "blackboard": {"_count": 1}, "fireside": {"_count": 1}, "tryouts": {"_count": 2}, "shining": {"_count": 1}, "words": {"_count": 4}, "caretaker": {"_count": 1}, "bit": {"_count": 1}, "threatening": {"_count": 1}, "crate": {"_count": 2}, "Wizarding": {"_count": 2}, "introduction": {"_count": 1}, "shawl": {"_count": 1}, "trestle": {"_count": 1}, "broken": {"_count": 5}, "heavily": {"_count": 1}, "veiled": {"_count": 1}, "blustery": {"_count": 1}, "hems": {"_count": 1}, "flames": {"_count": 1}, "bullfrog": {"_count": 2}, "pitch": {"_count": 1}, "rain": {"_count": 1}, "building": {"_count": 1}, "mansize": {"_count": 1}, "crownshaped": {"_count": 1}, "damp": {"_count": 1}, "haversack": {"_count": 1}, "size": {"_count": 2}, "appalled": {"_count": 1}, "horse": {"_count": 1}, "cow": {"_count": 1}, "horses": {"_count": 2}, "clipboard": {"_count": 1}, "jinx": {"_count": 1}, "bowler": {"_count": 1}, "jostling": {"_count": 1}, "strawstrewn": {"_count": 1}, "neatly": {"_count": 1}, "stove": {"_count": 1}, "bandaging": {"_count": 1}, "new": {"_count": 1}, "inhabitants": {"_count": 1}, "chair": {"_count": 1}, "newspaper": {"_count": 1}, "story": {"_count": 1}, "pictures": {"_count": 2}, "catastrophe": {"_count": 1}, "ten": {"_count": 1}, "cloudy": {"_count": 1}, "seams": {"_count": 1}, "wall": {"_count": 6}, "motionless": {"_count": 1}, "thrashing": {"_count": 1}, "towering": {"_count": 1}, "heading": {"_count": 1}, "wrecked": {"_count": 1}, "fireworks": {"_count": 1}, "expense": {"_count": 1}, "Pensieve": {"_count": 2}, "girls": {"_count": 3}, "Auror": {"_count": 1}, "silent": {"_count": 3}, "poltergeist": {"_count": 1}, "knees": {"_count": 2}, "mound": {"_count": 2}, "gigantic": {"_count": 1}, "rough": {"_count": 1}, "Forbidden": {"_count": 1}, "moon": {"_count": 1}, "readiness": {"_count": 1}, "advancing": {"_count": 2}, "creatures": {"_count": 1}, "centaurs": {"_count": 2}, "street": {"_count": 1}, "thestrals": {"_count": 1}, "doors": {"_count": 1}, "veil": {"_count": 2}, "swaying": {"_count": 1}, "continuously": {"_count": 1}, "knife": {"_count": 1}, "orb": {"_count": 1}, "woman": {"_count": 1}, "Solstice": {"_count": 1}, "struggling": {"_count": 1}, "oncoming": {"_count": 1}, "archway": {"_count": 1}, "telephone": {"_count": 1}, "heel": {"_count": 1}, "Aurors": {"_count": 1}, "carpet": {"_count": 1}, "sunlit": {"_count": 1}, "Hogs": {"_count": 2}, "hand": {"_count": 1}, "hourglasses": {"_count": 1}, "water": {"_count": 2}, "mirror": {"_count": 2}, "darkening": {"_count": 2}, "chessboard": {"_count": 1}, "jackets": {"_count": 1}, "thin": {"_count": 2}, "Prime": {"_count": 3}, "picture": {"_count": 3}, "Kwidditch": {"_count": 1}, "position": {"_count": 1}, "portrait": {"_count": 1}, "rows": {"_count": 1}, "concealed": {"_count": 3}, "pavement": {"_count": 1}, "visitor": {"_count": 1}, "writhing": {"_count": 1}, "misted": {"_count": 1}, "weekend": {"_count": 1}, "clocks": {"_count": 1}, "amulet": {"_count": 1}, "Apothecary": {"_count": 2}, "poster": {"_count": 1}, "boxes": {"_count": 1}, "Pygmy": {"_count": 1}, "padlock": {"_count": 1}, "shop": {"_count": 1}, "Captains": {"_count": 1}, "cauldron": {"_count": 1}, "Draught": {"_count": 1}, "tarlike": {"_count": 1}, "furious": {"_count": 1}, "disappointed": {"_count": 1}, "bottle": {"_count": 1}, "blackened": {"_count": 1}, "copse": {"_count": 1}, "pot": {"_count": 1}, "team": {"_count": 1}, "mo": {"_count": 1}, "letters": {"_count": 1}, "oak": {"_count": 1}, "shabby": {"_count": 1}, "gnarled": {"_count": 1}, "vines": {"_count": 1}, "Burrows": {"_count": 1}, "volume": {"_count": 1}, "garden": {"_count": 1}, "reception": {"_count": 1}, "circular": {"_count": 1}, "glazed": {"_count": 1}, "dangling": {"_count": 1}, "commentators": {"_count": 1}, "fight": {"_count": 2}, "ickle": {"_count": 1}, "elves": {"_count": 1}, "title": {"_count": 1}, "spot": {"_count": 1}, "sleeve": {"_count": 1}, "Room": {"_count": 2}, "mass": {"_count": 1}, "emptying": {"_count": 1}, "hard": {"_count": 1}, "wet": {"_count": 1}, "moving": {"_count": 1}, "sherry": {"_count": 1}, "urgency": {"_count": 1}, "gargoyle": {"_count": 1}, "cliff": {"_count": 1}, "rock": {"_count": 2}, "sinisterly": {"_count": 1}, "greenish": {"_count": 1}, "emerald": {"_count": 1}, "crooked": {"_count": 1}, "Inferius": {"_count": 1}, "two": {"_count": 1}, "latters": {"_count": 1}, "gamekeeper": {"_count": 1}, "huge": {"_count": 1}, "smoking": {"_count": 1}, "wise": {"_count": 1}, "forced": {"_count": 1}, "sobbing": {"_count": 1}, "slowly": {"_count": 2}, "tense": {"_count": 1}, "inert": {"_count": 1}, "captive": {"_count": 1}, "TV": {"_count": 1}, "carriage": {"_count": 1}, "bulge": {"_count": 1}, "living": {"_count": 1}, "stacked": {"_count": 1}, "underside": {"_count": 2}, "sidecar": {"_count": 1}, "middle": {"_count": 1}, "falling": {"_count": 1}, "apparently": {"_count": 2}, "handlebars": {"_count": 1}, "gate": {"_count": 6}, "rag": {"_count": 1}, "low": {"_count": 2}, "approaching": {"_count": 1}, "oil": {"_count": 1}, "close": {"_count": 7}, "effect": {"_count": 1}, "wedding": {"_count": 7}, "paralyzed": {"_count": 1}, "partly": {"_count": 1}, "camera": {"_count": 2}, "handwriting": {"_count": 1}, "locket": {"_count": 2}, "unknown": {"_count": 1}, "grate": {"_count": 1}, "padlocked": {"_count": 1}, "dozen": {"_count": 1}, "pendant": {"_count": 1}, "misshapen": {"_count": 1}, "darkness": {"_count": 2}, "heavy": {"_count": 1}, "chain": {"_count": 1}, "lumps": {"_count": 1}, "Sneakoscope": {"_count": 1}, "war": {"_count": 1}, "dense": {"_count": 1}, "wreck": {"_count": 1}, "loud": {"_count": 1}, "shapeless": {"_count": 1}, "windowsill": {"_count": 1}, "puncture": {"_count": 1}, "funeral": {"_count": 1}, "creature": {"_count": 1}, "pools": {"_count": 1}, "ice": {"_count": 1}, "strangling": {"_count": 1}, "ornate": {"_count": 1}, "serpentine": {"_count": 1}, "shattered": {"_count": 1}, "Deluminator": {"_count": 1}, "blackthorn": {"_count": 2}, "tower": {"_count": 1}, "slightest": {"_count": 1}, "stream": {"_count": 1}, "piles": {"_count": 1}, "change": {"_count": 1}, "morale": {"_count": 1}, "sword": {"_count": 1}, "summons": {"_count": 1}, "doorway": {"_count": 1}, "Malfoys": {"_count": 3}, "cottage": {"_count": 1}, "facts": {"_count": 1}, "horizon": {"_count": 1}, "deepest": {"_count": 1}, "overcrowded": {"_count": 1}, "casserole": {"_count": 1}, "hawthorn": {"_count": 1}, "stars": {"_count": 1}, "inner": {"_count": 1}, "sudden": {"_count": 1}, "deluge": {"_count": 1}, "waterfall": {"_count": 1}, "goblin": {"_count": 1}, "root": {"_count": 1}, "room": {"_count": 1}, "exits": {"_count": 1}, "wireless": {"_count": 1}, "neck": {"_count": 1}, "groggy": {"_count": 1}, "Carrows": {"_count": 1}, "Snapeshaped": {"_count": 1}, "fiftyfoot": {"_count": 1}, "rampart": {"_count": 1}, "slowwittedness": {"_count": 1}, "pile": {"_count": 1}, "trunk": {"_count": 1}, "wrist": {"_count": 1}, "bonds": {"_count": 1}, "battered": {"_count": 1}, "heart": {"_count": 1}, "rawlooking": {"_count": 1}, "ankles": {"_count": 1}, "fall": {"_count": 1}, "dead": {"_count": 1}, "Elder": {"_count": 1}, "hazy": {"_count": 1}, "adults": {"_count": 1}}, "all": {"_count": 376, "why": {"_count": 1}, "upset": {"_count": 2}, "": {"_count": 186}, "that": {"_count": 3}, "and": {"_count": 13}, "had": {"_count": 1}, "wondering": {"_count": 1}, "as": {"_count": 1}, "it": {"_count": 4}, "the": {"_count": 13}, "but": {"_count": 11}, "little": {"_count": 1}, "youd": {"_count": 1}, "until": {"_count": 2}, "I": {"_count": 2}, "this": {"_count": 2}, "her": {"_count": 1}, "those": {"_count": 1}, "except": {"_count": 1}, "pleased": {"_count": 2}, "in": {"_count": 6}, "keen": {"_count": 1}, "surprised": {"_count": 3}, "shes": {"_count": 1}, "times": {"_count": 6}, "with": {"_count": 1}, "more": {"_count": 1}, "are": {"_count": 1}, "Defense": {"_count": 1}, "said": {"_count": 9}, "Potter": {"_count": 1}, "of": {"_count": 3}, "do": {"_count": 1}, "Wood": {"_count": 1}, "up": {"_count": 1}, "Padfoot": {"_count": 1}, "Do": {"_count": 1}, "on": {"_count": 2}, "Harry": {"_count": 3}, "he": {"_count": 7}, "tonight": {"_count": 1}, "since": {"_count": 4}, "What": {"_count": 1}, "hundreds": {"_count": 1}, "not": {"_count": 4}, "like": {"_count": 2}, "to": {"_count": 6}, "nor": {"_count": 1}, "quite": {"_count": 1}, "Except": {"_count": 1}, "just": {"_count": 1}, "his": {"_count": 1}, "costs": {"_count": 2}, "if": {"_count": 5}, "for": {"_count": 4}, "three": {"_count": 1}, "sorry": {"_count": 1}, "you": {"_count": 2}, "sure": {"_count": 3}, "what": {"_count": 1}, "desirable": {"_count": 1}, "impressed": {"_count": 1}, "maybe": {"_count": 1}, "over": {"_count": 3}, "well": {"_count": 1}, "its": {"_count": 1}, "happy": {"_count": 2}, "or": {"_count": 2}, "Angelina": {"_count": 1}, "before": {"_count": 1}, "Cornelius": {"_count": 2}, "maam": {"_count": 1}, "we": {"_count": 1}, "squeaked": {"_count": 1}, "how": {"_count": 1}, "inclined": {"_count": 1}, "my": {"_count": 1}, "reluctant": {"_count": 1}, "so": {"_count": 1}, "onerous": {"_count": 1}, "only": {"_count": 1}, "sympathetic": {"_count": 1}, "prepared": {"_count": 1}, "about": {"_count": 1}, "likely": {"_count": 1}, "when": {"_count": 1}, "even": {"_count": 1}, "Travers": {"_count": 1}}, "nighttime": {"_count": 1, "": {"_count": 1}}, "five": {"_count": 15, "different": {"_count": 1}, "oclock": {"_count": 13}, "fifteen": {"_count": 1}}, "his": {"_count": 312, "secretary": {"_count": 1}, "mother": {"_count": 6}, "father": {"_count": 6}, "own": {"_count": 18}, "letter": {"_count": 2}, "umbrella": {"_count": 1}, "old": {"_count": 3}, "empty": {"_count": 1}, "broom": {"_count": 1}, "watch": {"_count": 15}, "lightest": {"_count": 1}, "feet": {"_count": 32}, "legs": {"_count": 1}, "family": {"_count": 2}, "image": {"_count": 1}, "fingers": {"_count": 2}, "heel": {"_count": 1}, "scar": {"_count": 2}, "head": {"_count": 2}, "wife": {"_count": 5}, "parents": {"_count": 2}, "son": {"_count": 2}, "paper": {"_count": 2}, "words": {"_count": 2}, "streaming": {"_count": 1}, "luck": {"_count": 1}, "friends": {"_count": 2}, "foul": {"_count": 1}, "side": {"_count": 16}, "face": {"_count": 3}, "right": {"_count": 2}, "watery": {"_count": 1}, "window": {"_count": 1}, "heels": {"_count": 13}, "stonyfaced": {"_count": 1}, "hair": {"_count": 1}, "plate": {"_count": 3}, "wand": {"_count": 1}, "chest": {"_count": 3}, "enormous": {"_count": 1}, "scrubbed": {"_count": 1}, "first": {"_count": 1}, "team": {"_count": 1}, "shoulder": {"_count": 5}, "Nimbus": {"_count": 1}, "insides": {"_count": 4}, "refusal": {"_count": 1}, "hiding": {"_count": 1}, "sleeve": {"_count": 2}, "behavior": {"_count": 1}, "house": {"_count": 2}, "desk": {"_count": 3}, "reflection": {"_count": 2}, "dancing": {"_count": 1}, "throat": {"_count": 6}, "golden": {"_count": 1}, "collar": {"_count": 1}, "piece": {"_count": 1}, "dustbins": {"_count": 1}, "predictions": {"_count": 1}, "cabin": {"_count": 1}, "table": {"_count": 2}, "elbow": {"_count": 2}, "bare": {"_count": 3}, "foot": {"_count": 1}, "webbed": {"_count": 1}, "disobedient": {"_count": 1}, "potato": {"_count": 1}, "leg": {"_count": 1}, "open": {"_count": 2}, "halfopen": {"_count": 1}, "powerful": {"_count": 1}, "uncles": {"_count": 1}, "ease": {"_count": 3}, "cousin": {"_count": 2}, "abrupt": {"_count": 1}, "massive": {"_count": 1}, "body": {"_count": 1}, "godfather": {"_count": 1}, "command": {"_count": 3}, "shoes": {"_count": 1}, "moonlit": {"_count": 1}, "halffinished": {"_count": 1}, "hand": {"_count": 2}, "steakandkidney": {"_count": 1}, "back": {"_count": 1}, "beard": {"_count": 1}, "bedside": {"_count": 1}, "sides": {"_count": 1}, "knees": {"_count": 2}, "fellow": {"_count": 1}, "robes": {"_count": 1}, "touch": {"_count": 2}, "fifteenyear": {"_count": 1}, "neighbors": {"_count": 1}, "book": {"_count": 1}, "Transfiguration": {"_count": 1}, "chart": {"_count": 1}, "closest": {"_count": 1}, "word": {"_count": 1}, "wooden": {"_count": 1}, "neck": {"_count": 4}, "results": {"_count": 1}, "distorted": {"_count": 1}, "schedule": {"_count": 1}, "age": {"_count": 1}, "daughter": {"_count": 1}, "scroll": {"_count": 2}, "sister": {"_count": 2}, "classmates": {"_count": 1}, "hands": {"_count": 3}, "least": {"_count": 1}, "loud": {"_count": 1}, "white": {"_count": 1}, "disappearance": {"_count": 1}, "orphanage": {"_count": 1}, "parchment": {"_count": 1}, "shoulders": {"_count": 1}, "blood": {"_count": 1}, "disarmer": {"_count": 1}, "front": {"_count": 1}, "wrecked": {"_count": 1}, "wounds": {"_count": 1}, "destination": {"_count": 1}, "uncle": {"_count": 1}, "twins": {"_count": 1}, "brother": {"_count": 1}, "tearsoaked": {"_count": 1}, "eyes": {"_count": 1}, "inclusion": {"_count": 1}, "lungs": {"_count": 1}, "arm": {"_count": 1}, "voice": {"_count": 1}, "enemy": {"_count": 1}, "nose": {"_count": 1}, "discoveries": {"_count": 1}, "excruciatingly": {"_count": 1}, "misshapen": {"_count": 1}, "mistake": {"_count": 1}, "handiwork": {"_count": 1}, "clean": {"_count": 2}, "companion": {"_count": 1}, "sudden": {"_count": 1}, "forehead": {"_count": 1}, "ankle": {"_count": 1}, "bleeding": {"_count": 1}, "lap": {"_count": 1}, "death": {"_count": 1}, "enemys": {"_count": 1}, "younger": {"_count": 2}, "mothers": {"_count": 1}}, "any": {"_count": 43, "mention": {"_count": 1}, "moment": {"_count": 23}, "rate": {"_count": 4}, "point": {"_count": 3}, "time": {"_count": 2}, "second": {"_count": 3}, "other": {"_count": 1}, "of": {"_count": 4}, "cost": {"_count": 1}, "Death": {"_count": 1}}, "being": {"_count": 11, "almost": {"_count": 1}, "addressed": {"_count": 2}, "stuck": {"_count": 1}, "followed": {"_count": 1}, "asked": {"_count": 3}, "cut": {"_count": 1}, "back": {"_count": 1}, "caught": {"_count": 1}}, "last": {"_count": 164, "": {"_count": 48}, "the": {"_count": 7}, "outside": {"_count": 1}, "to": {"_count": 3}, "holding": {"_count": 1}, "beside": {"_count": 1}, "tucked": {"_count": 1}, "onto": {"_count": 1}, "Potter": {"_count": 1}, "five": {"_count": 1}, "on": {"_count": 2}, "wed": {"_count": 1}, "Hagrid": {"_count": 2}, "exhausted": {"_count": 1}, "they": {"_count": 11}, "reached": {"_count": 1}, "and": {"_count": 9}, "seemed": {"_count": 1}, "smashed": {"_count": 1}, "in": {"_count": 1}, "slightly": {"_count": 1}, "something": {"_count": 2}, "after": {"_count": 2}, "as": {"_count": 4}, "by": {"_count": 3}, "Snape": {"_count": 1}, "she": {"_count": 4}, "because": {"_count": 1}, "taking": {"_count": 1}, "he": {"_count": 8}, "his": {"_count": 2}, "found": {"_count": 2}, "Sirius": {"_count": 1}, "do": {"_count": 1}, "be": {"_count": 1}, "there": {"_count": 1}, "Something": {"_count": 1}, "been": {"_count": 1}, "The": {"_count": 2}, "was": {"_count": 2}, "going": {"_count": 1}, "inside": {"_count": 1}, "have": {"_count": 2}, "with": {"_count": 1}, "or": {"_count": 1}, "Fudge": {"_count": 1}, "standing": {"_count": 1}, "giving": {"_count": 1}, "There": {"_count": 1}, "we": {"_count": 2}, "what": {"_count": 1}, "that": {"_count": 3}, "He": {"_count": 1}, "seven": {"_count": 1}, "abandoned": {"_count": 1}, "only": {"_count": 1}, "managed": {"_count": 1}, "safe": {"_count": 1}, "learned": {"_count": 1}, "declining": {"_count": 1}, "my": {"_count": 1}, "where": {"_count": 1}, "walking": {"_count": 1}, "all": {"_count": 1}}, "night": {"_count": 31, "and": {"_count": 5}, "think": {"_count": 1}, "especially": {"_count": 1}, "theres": {"_count": 1}, "Do": {"_count": 1}, "several": {"_count": 1}, "": {"_count": 9}, "first": {"_count": 1}, "consorting": {"_count": 1}, "to": {"_count": 1}, "before": {"_count": 1}, "I": {"_count": 1}, "when": {"_count": 2}, "because": {"_count": 1}, "are": {"_count": 1}, "rather": {"_count": 1}, "getting": {"_count": 1}, "many": {"_count": 1}}, "least": {"_count": 151, "twice": {"_count": 5}, "five": {"_count": 2}, "he": {"_count": 8}, "was": {"_count": 2}, "": {"_count": 11}, "they": {"_count": 5}, "ten": {"_count": 2}, "found": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 11}, "half": {"_count": 4}, "Lockhart": {"_count": 1}, "thought": {"_count": 1}, "an": {"_count": 2}, "took": {"_count": 1}, "hed": {"_count": 1}, "drier": {"_count": 1}, "meet": {"_count": 1}, "once": {"_count": 1}, "two": {"_count": 2}, "you": {"_count": 2}, "three": {"_count": 4}, "felt": {"_count": 1}, "as": {"_count": 4}, "twelve": {"_count": 1}, "get": {"_count": 1}, "I": {"_count": 4}, "another": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 2}, "Im": {"_count": 1}, "its": {"_count": 2}, "had": {"_count": 2}, "all": {"_count": 1}, "one": {"_count": 10}, "twenty": {"_count": 2}, "it": {"_count": 1}, "well": {"_count": 1}, "thirty": {"_count": 1}, "at": {"_count": 1}, "seemed": {"_count": 1}, "resisted": {"_count": 1}, "warm": {"_count": 1}, "youve": {"_count": 1}, "knew": {"_count": 1}, "six": {"_count": 1}, "explained": {"_count": 1}, "see": {"_count": 1}, "blue": {"_count": 1}, "appear": {"_count": 1}, "now": {"_count": 1}, "until": {"_count": 5}, "most": {"_count": 1}, "discussing": {"_count": 1}, "my": {"_count": 1}, "four": {"_count": 1}, "sixteen": {"_count": 1}, "confident": {"_count": 1}, "we": {"_count": 3}, "YouKnowWho": {"_count": 1}, "everyone": {"_count": 1}, "escaped": {"_count": 1}, "grudgingly": {"_count": 1}, "to": {"_count": 2}, "stop": {"_count": 1}, "agreed": {"_count": 1}, "were": {"_count": 1}, "still": {"_count": 1}, "empty": {"_count": 1}, "eight": {"_count": 1}, "Harry": {"_count": 1}, "protected": {"_count": 1}, "taught": {"_count": 1}, "not": {"_count": 1}, "goblins": {"_count": 1}, "find": {"_count": 1}, "shell": {"_count": 1}}, "him": {"_count": 566, "from": {"_count": 22}, "once": {"_count": 2}, "": {"_count": 217}, "and": {"_count": 35}, "in": {"_count": 15}, "again": {"_count": 3}, "as": {"_count": 24}, "or": {"_count": 1}, "he": {"_count": 9}, "which": {"_count": 1}, "just": {"_count": 1}, "smiling": {"_count": 2}, "any": {"_count": 1}, "so": {"_count": 3}, "a": {"_count": 6}, "with": {"_count": 21}, "before": {"_count": 2}, "showing": {"_count": 1}, "alarmed": {"_count": 1}, "including": {"_count": 2}, "like": {"_count": 3}, "out": {"_count": 9}, "Ron": {"_count": 2}, "through": {"_count": 12}, "feeble": {"_count": 1}, "standing": {"_count": 1}, "both": {"_count": 1}, "but": {"_count": 13}, "sideways": {"_count": 1}, "because": {"_count": 1}, "were": {"_count": 1}, "quickly": {"_count": 1}, "lost": {"_count": 1}, "beaming": {"_count": 2}, "at": {"_count": 1}, "blubber": {"_count": 1}, "for": {"_count": 10}, "Crookshanks": {"_count": 1}, "by": {"_count": 1}, "Snapes": {"_count": 2}, "aghast": {"_count": 1}, "his": {"_count": 5}, "when": {"_count": 3}, "Look": {"_count": 1}, "go": {"_count": 1}, "too": {"_count": 3}, "then": {"_count": 6}, "trying": {"_count": 2}, "if": {"_count": 1}, "eyes": {"_count": 1}, "every": {"_count": 2}, "very": {"_count": 1}, "blankly": {"_count": 1}, "started": {"_count": 1}, "now": {"_count": 1}, "anticipation": {"_count": 1}, "over": {"_count": 5}, "hasnt": {"_count": 1}, "taken": {"_count": 1}, "tapping": {"_count": 1}, "smiled": {"_count": 1}, "have": {"_count": 1}, "hes": {"_count": 1}, "almost": {"_count": 1}, "shocked": {"_count": 1}, "Hermione": {"_count": 2}, "grinding": {"_count": 1}, "some": {"_count": 2}, "stowing": {"_count": 1}, "curiously": {"_count": 2}, "frowning": {"_count": 2}, "evidently": {"_count": 1}, "instead": {"_count": 1}, "others": {"_count": 1}, "sitting": {"_count": 1}, "Cho": {"_count": 1}, "He": {"_count": 1}, "Seamus": {"_count": 1}, "without": {"_count": 1}, "sharply": {"_count": 1}, "oh": {"_count": 1}, "rather": {"_count": 1}, "reproachfully": {"_count": 1}, "coldly": {"_count": 1}, "under": {"_count": 2}, "they": {"_count": 1}, "threw": {"_count": 1}, "the": {"_count": 5}, "it": {"_count": 2}, "always": {"_count": 1}, "she": {"_count": 1}, "carrying": {"_count": 1}, "her": {"_count": 6}, "incandescent": {"_count": 1}, "slightly": {"_count": 1}, "McGonagall": {"_count": 1}, "one": {"_count": 1}, "apologetically": {"_count": 1}, "encouragingly": {"_count": 1}, "frantic": {"_count": 1}, "directly": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "greeting": {"_count": 1}, "nor": {"_count": 1}, "solicitously": {"_count": 1}, "dont": {"_count": 1}, "along": {"_count": 1}, "while": {"_count": 1}, "isnt": {"_count": 2}, "peering": {"_count": 1}, "resentfully": {"_count": 1}, "I": {"_count": 1}, "oblivious": {"_count": 1}, "lyin": {"_count": 1}, "bleakly": {"_count": 1}, "drenched": {"_count": 1}, "suspiciously": {"_count": 1}, "whats": {"_count": 1}, "It": {"_count": 1}, "whispering": {"_count": 1}, "startled": {"_count": 1}, "breathless": {"_count": 1}, "surprised": {"_count": 1}, "Harry": {"_count": 2}, "steadily": {"_count": 1}, "waved": {"_count": 1}, "relentlessly": {"_count": 1}, "openmouthed": {"_count": 1}, "no": {"_count": 1}, "carefully": {"_count": 1}, "beseechingly": {"_count": 1}, "until": {"_count": 1}, "seemed": {"_count": 1}, "enough": {"_count": 1}, "nodded": {"_count": 1}}, "it": {"_count": 146, "but": {"_count": 2}, "": {"_count": 53}, "his": {"_count": 1}, "closely": {"_count": 4}, "carefully": {"_count": 1}, "too": {"_count": 3}, "with": {"_count": 6}, "from": {"_count": 3}, "thats": {"_count": 1}, "as": {"_count": 5}, "and": {"_count": 12}, "he": {"_count": 4}, "Professor": {"_count": 1}, "the": {"_count": 2}, "happily": {"_count": 1}, "no": {"_count": 1}, "logically": {"_count": 1}, "told": {"_count": 1}, "for": {"_count": 7}, "all": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 3}, "Pear": {"_count": 1}, "remembering": {"_count": 1}, "unsure": {"_count": 1}, "during": {"_count": 1}, "before": {"_count": 2}, "without": {"_count": 1}, "looking": {"_count": 1}, "or": {"_count": 1}, "desperate": {"_count": 1}, "than": {"_count": 1}, "Thats": {"_count": 1}, "fondly": {"_count": 1}, "reminded": {"_count": 1}, "half": {"_count": 1}, "in": {"_count": 2}, "Cecilia": {"_count": 1}, "while": {"_count": 1}, "it": {"_count": 1}, "last": {"_count": 1}, "havent": {"_count": 1}, "intently": {"_count": 1}, "at": {"_count": 1}, "except": {"_count": 1}, "ready": {"_count": 1}, "might": {"_count": 1}, "a": {"_count": 1}, "Hermione": {"_count": 1}, "solemnly": {"_count": 1}, "aghast": {"_count": 1}, "yet": {"_count": 1}}, "a": {"_count": 205, "rather": {"_count": 1}, "little": {"_count": 1}, "bit": {"_count": 1}, "joke": {"_count": 3}, "run": {"_count": 13}, "distance": {"_count": 6}, "tricky": {"_count": 1}, "terrible": {"_count": 1}, "rounded": {"_count": 1}, "compass": {"_count": 1}, "full": {"_count": 1}, "table": {"_count": 7}, "jaunty": {"_count": 1}, "quarter": {"_count": 2}, "large": {"_count": 8}, "doorway": {"_count": 1}, "meaningful": {"_count": 1}, "time": {"_count": 29}, "very": {"_count": 1}, "glance": {"_count": 2}, "lifetime": {"_count": 1}, "solid": {"_count": 1}, "walk": {"_count": 1}, "notice": {"_count": 1}, "spot": {"_count": 3}, "swift": {"_count": 1}, "sprint": {"_count": 2}, "crouch": {"_count": 1}, "strange": {"_count": 1}, "Patronus": {"_count": 1}, "stop": {"_count": 1}, "private": {"_count": 1}, "rock": {"_count": 1}, "rate": {"_count": 1}, "look": {"_count": 1}, "pile": {"_count": 2}, "dustpan": {"_count": 1}, "prearranged": {"_count": 1}, "slug": {"_count": 1}, "school": {"_count": 2}, "man": {"_count": 1}, "fireworks": {"_count": 1}, "passing": {"_count": 3}, "group": {"_count": 1}, "pure": {"_count": 1}, "long": {"_count": 2}, "remarkable": {"_count": 1}, "tremendous": {"_count": 1}, "nearby": {"_count": 2}, "few": {"_count": 1}, "range": {"_count": 1}, "trestle": {"_count": 1}, "distant": {"_count": 1}, "number": {"_count": 3}, "couple": {"_count": 1}, "dueling": {"_count": 1}, "junction": {"_count": 1}, "trot": {"_count": 2}, "disciplinary": {"_count": 1}, "lock": {"_count": 1}, "potato": {"_count": 2}, "loss": {"_count": 7}, "small": {"_count": 3}, "station": {"_count": 1}, "stitch": {"_count": 1}, "chicken": {"_count": 1}, "concert": {"_count": 1}, "warning": {"_count": 1}, "complete": {"_count": 3}, "line": {"_count": 1}, "brisk": {"_count": 3}, "reciprocal": {"_count": 1}, "quick": {"_count": 1}, "desk": {"_count": 1}, "considerable": {"_count": 1}, "dead": {"_count": 1}, "cowering": {"_count": 1}, "boy": {"_count": 1}, "series": {"_count": 1}, "point": {"_count": 1}, "smile": {"_count": 1}, "rich": {"_count": 1}, "lamp": {"_count": 2}, "particularly": {"_count": 2}, "Muggle": {"_count": 1}, "heavy": {"_count": 2}, "stretch": {"_count": 1}, "window": {"_count": 1}, "gallop": {"_count": 1}, "purple": {"_count": 1}, "second": {"_count": 1}, "rusty": {"_count": 1}, "moving": {"_count": 1}, "moments": {"_count": 1}, "gnome": {"_count": 1}, "meeting": {"_count": 1}, "life": {"_count": 1}, "respectful": {"_count": 1}, "copy": {"_count": 1}, "crumbling": {"_count": 1}, "house": {"_count": 1}, "gate": {"_count": 1}, "fresh": {"_count": 1}, "poorly": {"_count": 1}, "neat": {"_count": 1}, "stroke": {"_count": 1}, "clump": {"_count": 1}, "tiny": {"_count": 1}, "pot": {"_count": 1}, "smart": {"_count": 1}, "torch": {"_count": 1}, "smashed": {"_count": 1}, "twig": {"_count": 1}, "place": {"_count": 1}, "family": {"_count": 1}}, "Dumbledore": {"_count": 82, "here": {"_count": 1}, "and": {"_count": 8}, "": {"_count": 27}, "who": {"_count": 10}, "from": {"_count": 2}, "apparently": {"_count": 1}, "or": {"_count": 1}, "with": {"_count": 3}, "then": {"_count": 2}, "sitting": {"_count": 1}, "again": {"_count": 3}, "as": {"_count": 2}, "but": {"_count": 4}, "in": {"_count": 1}, "for": {"_count": 3}, "her": {"_count": 1}, "seeking": {"_count": 1}, "it": {"_count": 1}, "Sirius": {"_count": 1}, "hardly": {"_count": 1}, "so": {"_count": 1}, "ready": {"_count": 1}, "his": {"_count": 1}, "broke": {"_count": 1}, "crashed": {"_count": 1}, "s": {"_count": 1}, "how": {"_count": 1}, "however": {"_count": 1}}, "her": {"_count": 277, "eyes": {"_count": 1}, "": {"_count": 99}, "as": {"_count": 5}, "to": {"_count": 1}, "slippers": {"_count": 1}, "sons": {"_count": 1}, "his": {"_count": 3}, "closely": {"_count": 1}, "in": {"_count": 5}, "from": {"_count": 1}, "nervously": {"_count": 1}, "with": {"_count": 4}, "heart": {"_count": 2}, "feet": {"_count": 4}, "both": {"_count": 1}, "and": {"_count": 12}, "face": {"_count": 1}, "she": {"_count": 3}, "shadowy": {"_count": 1}, "watch": {"_count": 5}, "tea": {"_count": 1}, "a": {"_count": 1}, "reaction": {"_count": 1}, "hardly": {"_count": 1}, "fallen": {"_count": 1}, "including": {"_count": 1}, "rather": {"_count": 1}, "throat": {"_count": 1}, "opened": {"_count": 1}, "like": {"_count": 1}, "instead": {"_count": 1}, "eyebrows": {"_count": 2}, "suddenly": {"_count": 1}, "incredulously": {"_count": 2}, "wrists": {"_count": 1}, "but": {"_count": 7}, "brothers": {"_count": 2}, "bindings": {"_count": 1}, "ropes": {"_count": 1}, "for": {"_count": 1}, "tiny": {"_count": 1}, "knees": {"_count": 1}, "who": {"_count": 1}, "reflection": {"_count": 2}, "over": {"_count": 2}, "still": {"_count": 1}, "husband": {"_count": 1}, "mollycoddling": {"_count": 1}, "mother": {"_count": 1}, "trial": {"_count": 1}, "at": {"_count": 1}, "blankly": {"_count": 1}, "he": {"_count": 3}, "questioningly": {"_count": 1}, "blank": {"_count": 1}, "earlobes": {"_count": 1}, "indignation": {"_count": 1}, "usual": {"_count": 2}, "arms": {"_count": 1}, "desk": {"_count": 1}, "so": {"_count": 2}, "wet": {"_count": 1}, "Siriuss": {"_count": 1}, "reproachfully": {"_count": 1}, "own": {"_count": 1}, "hat": {"_count": 1}, "sadly": {"_count": 1}, "robes": {"_count": 1}, "mouth": {"_count": 1}, "clearly": {"_count": 1}, "letter": {"_count": 1}, "Fred": {"_count": 1}, "utterly": {"_count": 1}, "shining": {"_count": 1}, "without": {"_count": 1}, "age": {"_count": 1}, "captives": {"_count": 1}, "too": {"_count": 1}, "Inquisitorial": {"_count": 1}, "mousy": {"_count": 1}, "properly": {"_count": 1}, "other": {"_count": 1}, "back": {"_count": 2}, "pinning": {"_count": 1}, "white": {"_count": 1}, "sister": {"_count": 3}, "long": {"_count": 1}, "snoring": {"_count": 1}, "halfamused": {"_count": 1}, "heels": {"_count": 2}, "lack": {"_count": 1}, "father": {"_count": 1}, "then": {"_count": 2}, "sternly": {"_count": 1}, "deflating": {"_count": 1}, "furtively": {"_count": 1}, "shrewdly": {"_count": 1}, "mistresss": {"_count": 1}, "locket": {"_count": 1}, "jokes": {"_count": 1}, "while": {"_count": 1}, "anymore": {"_count": 1}, "quite": {"_count": 1}, "son": {"_count": 1}, "it": {"_count": 1}, "before": {"_count": 1}, "parents": {"_count": 3}, "touch": {"_count": 1}, "strangeness": {"_count": 1}, "inexplicable": {"_count": 1}, "had": {"_count": 1}, "side": {"_count": 1}, "capitulation": {"_count": 1}, "afraid": {"_count": 1}, "reaching": {"_count": 1}, "His": {"_count": 1}, "wedding": {"_count": 1}, "daughter": {"_count": 1}, "startled": {"_count": 1}, "mothers": {"_count": 1}, "raised": {"_count": 1}, "pointing": {"_count": 1}, "forever": {"_count": 1}}, "number": {"_count": 10, "four": {"_count": 8}, "twelve": {"_count": 2}}, "this": {"_count": 98, "very": {"_count": 5}, "but": {"_count": 2}, "": {"_count": 18}, "time": {"_count": 5}, "moment": {"_count": 6}, "stage": {"_count": 3}, "school": {"_count": 4}, "place": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 4}, "lighthearted": {"_count": 1}, "years": {"_count": 1}, "he": {"_count": 1}, "point": {"_count": 6}, "Neville": {"_count": 1}, "woman": {"_count": 1}, "one": {"_count": 1}, "sort": {"_count": 1}, "He": {"_count": 1}, "table": {"_count": 1}, "for": {"_count": 1}, "view": {"_count": 1}, "some": {"_count": 1}, "thought": {"_count": 1}, "distance": {"_count": 2}, "then": {"_count": 1}, "injustice": {"_count": 1}, "critical": {"_count": 1}, "news": {"_count": 1}, "angle": {"_count": 1}, "that": {"_count": 1}, "meeting": {"_count": 1}, "height": {"_count": 1}, "archway": {"_count": 1}, "missive": {"_count": 1}, "enthusiastic": {"_count": 1}, "renewed": {"_count": 1}, "If": {"_count": 1}, "crucial": {"_count": 1}, "piece": {"_count": 1}, "unlikely": {"_count": 1}, "suggestion": {"_count": 1}, "great": {"_count": 1}, "portrait": {"_count": 1}, "sight": {"_count": 1}, "doormat": {"_count": 1}, "its": {"_count": 1}, "small": {"_count": 1}, "Greyback": {"_count": 1}, "in": {"_count": 1}, "Nevilles": {"_count": 1}, "statue": {"_count": 1}, "late": {"_count": 1}}, "photographs": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 451, "as": {"_count": 36}, "who": {"_count": 43}, "his": {"_count": 9}, "": {"_count": 153}, "for": {"_count": 12}, "with": {"_count": 17}, "under": {"_count": 1}, "is": {"_count": 1}, "and": {"_count": 61}, "the": {"_count": 2}, "all": {"_count": 1}, "she": {"_count": 1}, "unicorn": {"_count": 1}, "from": {"_count": 5}, "grabbing": {"_count": 1}, "Lucius": {"_count": 1}, "maybe": {"_count": 1}, "in": {"_count": 4}, "Filch": {"_count": 1}, "hadnt": {"_count": 1}, "through": {"_count": 5}, "said": {"_count": 1}, "twirling": {"_count": 1}, "came": {"_count": 1}, "moonlight": {"_count": 1}, "whose": {"_count": 1}, "we": {"_count": 1}, "suspiciously": {"_count": 1}, "while": {"_count": 1}, "over": {"_count": 5}, "edged": {"_count": 1}, "he": {"_count": 5}, "again": {"_count": 4}, "everyone": {"_count": 1}, "more": {"_count": 1}, "Ron": {"_count": 6}, "then": {"_count": 11}, "whom": {"_count": 1}, "at": {"_count": 2}, "rather": {"_count": 1}, "too": {"_count": 2}, "or": {"_count": 2}, "when": {"_count": 1}, "might": {"_count": 1}, "intrigued": {"_count": 1}, "a": {"_count": 3}, "was": {"_count": 1}, "no": {"_count": 1}, "thoughtfully": {"_count": 1}, "but": {"_count": 3}, "malevolently": {"_count": 1}, "behind": {"_count": 2}, "instead": {"_count": 1}, "Potter": {"_count": 2}, "before": {"_count": 1}, "to": {"_count": 1}, "clearly": {"_count": 1}, "closely": {"_count": 1}, "were": {"_count": 1}, "across": {"_count": 1}, "putting": {"_count": 1}, "perhaps": {"_count": 1}, "that": {"_count": 2}, "her": {"_count": 3}, "without": {"_count": 1}, "frowning": {"_count": 1}, "apparently": {"_count": 1}, "convicted": {"_count": 1}, "impassively": {"_count": 1}, "though": {"_count": 1}, "beating": {"_count": 1}, "Hermione": {"_count": 1}, "very": {"_count": 1}, "altogether": {"_count": 1}, "out": {"_count": 1}, "upon": {"_count": 1}, "Their": {"_count": 1}}, "Tibbies": {"_count": 1, "Snowy": {"_count": 1}}, "once": {"_count": 368, "": {"_count": 166}, "sir": {"_count": 1}, "the": {"_count": 8}, "It": {"_count": 2}, "gliding": {"_count": 1}, "but": {"_count": 8}, "from": {"_count": 2}, "because": {"_count": 1}, "by": {"_count": 4}, "that": {"_count": 19}, "as": {"_count": 11}, "and": {"_count": 19}, "there": {"_count": 1}, "he": {"_count": 7}, "a": {"_count": 2}, "Harry": {"_count": 1}, "why": {"_count": 3}, "with": {"_count": 3}, "looking": {"_count": 6}, "I": {"_count": 3}, "This": {"_count": 1}, "his": {"_count": 6}, "where": {"_count": 2}, "this": {"_count": 1}, "into": {"_count": 4}, "thin": {"_count": 1}, "hastened": {"_count": 1}, "Ron": {"_count": 1}, "see": {"_count": 1}, "Im": {"_count": 1}, "what": {"_count": 1}, "hurried": {"_count": 2}, "in": {"_count": 3}, "to": {"_count": 7}, "green": {"_count": 1}, "mentioning": {"_count": 1}, "so": {"_count": 1}, "all": {"_count": 1}, "striding": {"_count": 1}, "she": {"_count": 2}, "Dumbledore": {"_count": 1}, "A": {"_count": 1}, "said": {"_count": 2}, "wiping": {"_count": 1}, "suggested": {"_count": 1}, "Defense": {"_count": 1}, "though": {"_count": 1}, "leaving": {"_count": 2}, "have": {"_count": 1}, "You": {"_count": 1}, "yes": {"_count": 1}, "punching": {"_count": 1}, "her": {"_count": 1}, "taking": {"_count": 1}, "half": {"_count": 1}, "theyd": {"_count": 1}, "pulled": {"_count": 1}, "snatching": {"_count": 1}, "Dumbledores": {"_count": 1}, "twisting": {"_count": 1}, "forming": {"_count": 1}, "tell": {"_count": 1}, "rigid": {"_count": 1}, "course": {"_count": 1}, "shaking": {"_count": 1}, "Tonks": {"_count": 1}, "more": {"_count": 1}, "when": {"_count": 2}, "upon": {"_count": 1}, "bathing": {"_count": 1}, "came": {"_count": 1}, "please": {"_count": 1}, "long": {"_count": 1}, "Id": {"_count": 1}, "pretty": {"_count": 1}, "tall": {"_count": 1}, "remembering": {"_count": 1}, "back": {"_count": 1}, "down": {"_count": 1}, "Harrys": {"_count": 2}, "anxious": {"_count": 1}, "watching": {"_count": 1}, "it": {"_count": 1}, "Ill": {"_count": 1}, "Viktor": {"_count": 1}, "regained": {"_count": 1}, "through": {"_count": 1}, "supposedly": {"_count": 1}, "thought": {"_count": 1}, "people": {"_count": 1}, "before": {"_count": 1}, "Mr": {"_count": 1}, "He": {"_count": 1}, "on": {"_count": 1}, "ready": {"_count": 1}, "glaring": {"_count": 1}, "Hermione": {"_count": 1}}, "for": {"_count": 2, "his": {"_count": 1}, "acting": {"_count": 1}}, "Uncle": {"_count": 9, "Vernon": {"_count": 8}, "Vernons": {"_count": 1}}, "work": {"_count": 11, "Harry": {"_count": 1}, "": {"_count": 6}, "on": {"_count": 1}, "ignores": {"_count": 1}, "then": {"_count": 1}, "but": {"_count": 1}}, "their": {"_count": 39, "heels": {"_count": 2}, "bathrobes": {"_count": 1}, "guilty": {"_count": 1}, "tray": {"_count": 1}, "parties": {"_count": 1}, "opponent": {"_count": 1}, "final": {"_count": 1}, "stations": {"_count": 1}, "house": {"_count": 2}, "fireside": {"_count": 1}, "moment": {"_count": 1}, "cottage": {"_count": 1}, "House": {"_count": 1}, "table": {"_count": 1}, "faces": {"_count": 1}, "books": {"_count": 1}, "entrance": {"_count": 1}, "schoolbags": {"_count": 1}, "hearts": {"_count": 1}, "first": {"_count": 1}, "feet": {"_count": 2}, "side": {"_count": 1}, "fellow": {"_count": 1}, "approach": {"_count": 2}, "indistinct": {"_count": 1}, "joke": {"_count": 1}, "most": {"_count": 1}, "flasks": {"_count": 1}, "sides": {"_count": 1}, "pursuers": {"_count": 1}, "bindings": {"_count": 1}, "touch": {"_count": 1}, "eyes": {"_count": 1}, "head": {"_count": 1}, "reunion": {"_count": 1}}, "Stonewall": {"_count": 2, "he": {"_count": 1}, "High": {"_count": 1}}, "Mrs": {"_count": 18, "Figgs": {"_count": 1}, "Norris": {"_count": 2}, "Weasleys": {"_count": 1}, "Weasley": {"_count": 10}, "Number": {"_count": 1}, "Figg": {"_count": 1}, "Tonks": {"_count": 1}, "Black": {"_count": 1}}, "Dudley": {"_count": 9, "in": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}, "still": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 2}, "for": {"_count": 1}}, "each": {"_count": 113, "other": {"_count": 106}, "end": {"_count": 1}, "others": {"_count": 2}, "of": {"_count": 3}, "Death": {"_count": 1}}, "school": {"_count": 49, "for": {"_count": 2}, "and": {"_count": 8}, "": {"_count": 17}, "Mr": {"_count": 1}, "with": {"_count": 2}, "here": {"_count": 2}, "rather": {"_count": 1}, "over": {"_count": 1}, "admitting": {"_count": 1}, "together": {"_count": 1}, "than": {"_count": 1}, "But": {"_count": 1}, "but": {"_count": 2}, "Harrys": {"_count": 1}, "eh": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "arrived": {"_count": 1}, "Harry": {"_count": 1}, "was": {"_count": 1}, "have": {"_count": 1}, "hes": {"_count": 1}}, "breakfast": {"_count": 20, "everyone": {"_count": 1}, "time": {"_count": 2}, "next": {"_count": 3}, "": {"_count": 9}, "she": {"_count": 1}, "on": {"_count": 1}, "just": {"_count": 1}, "but": {"_count": 1}, "half": {"_count": 1}}, "six": {"_count": 3, "oclock": {"_count": 3}}, "home": {"_count": 38, "and": {"_count": 4}, "again": {"_count": 1}, "in": {"_count": 3}, "said": {"_count": 1}, "Malfoy": {"_count": 1}, "": {"_count": 12}, "that": {"_count": 1}, "but": {"_count": 1}, "Harry": {"_count": 1}, "much": {"_count": 1}, "about": {"_count": 1}, "with": {"_count": 3}, "before": {"_count": 1}, "or": {"_count": 3}, "an": {"_count": 1}, "are": {"_count": 1}, "on": {"_count": 1}, "seriously": {"_count": 1}}, "small": {"_count": 2, "noises": {"_count": 1}, "desks": {"_count": 1}}, "what": {"_count": 27, "looked": {"_count": 1}, "he": {"_count": 5}, "came": {"_count": 1}, "was": {"_count": 7}, "hed": {"_count": 1}, "they": {"_count": 2}, "she": {"_count": 2}, "shes": {"_count": 1}, "remained": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "Lord": {"_count": 1}, "Malfoys": {"_count": 1}, "is": {"_count": 1}, "his": {"_count": 1}}, "sea": {"_count": 2, "": {"_count": 1}, "except": {"_count": 1}}, "an": {"_count": 16, "old": {"_count": 3}, "I": {"_count": 1}, "end": {"_count": 2}, "alarming": {"_count": 1}, "inn": {"_count": 1}, "odd": {"_count": 1}, "angle": {"_count": 1}, "advertisement": {"_count": 1}, "advantage": {"_count": 1}, "ancient": {"_count": 1}, "awkward": {"_count": 2}, "enormous": {"_count": 1}}, "them": {"_count": 150, "all": {"_count": 32}, "": {"_count": 57}, "on": {"_count": 1}, "looked": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 8}, "his": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 8}, "through": {"_count": 2}, "at": {"_count": 1}, "tears": {"_count": 1}, "twigs": {"_count": 1}, "anyway": {"_count": 1}, "trying": {"_count": 1}, "from": {"_count": 5}, "waving": {"_count": 1}, "Malfoy": {"_count": 1}, "a": {"_count": 2}, "turned": {"_count": 2}, "that": {"_count": 1}, "she": {"_count": 1}, "transfixed": {"_count": 1}, "rather": {"_count": 1}, "then": {"_count": 1}, "said": {"_count": 1}, "malevolently": {"_count": 1}, "there": {"_count": 1}, "noses": {"_count": 1}, "both": {"_count": 3}, "snatching": {"_count": 1}, "but": {"_count": 3}, "The": {"_count": 1}, "Im": {"_count": 1}, "so": {"_count": 1}, "bouncing": {"_count": 1}, "tucked": {"_count": 1}, "flapping": {"_count": 1}}, "some": {"_count": 6, "point": {"_count": 3}, "sort": {"_count": 1}, "old": {"_count": 1}, "longforgotten": {"_count": 1}}, "Hogwarts": {"_count": 285, "": {"_count": 92}, "yehll": {"_count": 1}, "School": {"_count": 12}, "in": {"_count": 2}, "he": {"_count": 5}, "meself": {"_count": 1}, "I": {"_count": 3}, "youll": {"_count": 1}, "your": {"_count": 1}, "wide": {"_count": 1}, "she": {"_count": 1}, "Professor": {"_count": 2}, "the": {"_count": 4}, "two": {"_count": 1}, "for": {"_count": 9}, "and": {"_count": 14}, "with": {"_count": 5}, "said": {"_count": 10}, "Hagrid": {"_count": 1}, "more": {"_count": 2}, "had": {"_count": 3}, "thats": {"_count": 1}, "but": {"_count": 6}, "that": {"_count": 3}, "this": {"_count": 5}, "by": {"_count": 1}, "once": {"_count": 1}, "Ron": {"_count": 1}, "terrible": {"_count": 1}, "forbade": {"_count": 1}, "than": {"_count": 2}, "to": {"_count": 7}, "fifty": {"_count": 2}, "came": {"_count": 1}, "which": {"_count": 1}, "was": {"_count": 1}, "Harry": {"_count": 7}, "are": {"_count": 1}, "while": {"_count": 1}, "were": {"_count": 2}, "hadnt": {"_count": 1}, "Rosmerta": {"_count": 1}, "too": {"_count": 2}, "now": {"_count": 2}, "over": {"_count": 1}, "when": {"_count": 2}, "Ludo": {"_count": 1}, "Dad": {"_count": 1}, "wasnt": {"_count": 1}, "what": {"_count": 1}, "who": {"_count": 2}, "But": {"_count": 1}, "it": {"_count": 2}, "could": {"_count": 1}, "tonight": {"_count": 1}, "so": {"_count": 2}, "sir": {"_count": 1}, "slong": {"_count": 1}, "remember": {"_count": 2}, "Muggle": {"_count": 1}, "of": {"_count": 1}, "if": {"_count": 1}, "they": {"_count": 2}, "often": {"_count": 1}, "even": {"_count": 1}, "because": {"_count": 1}, "much": {"_count": 1}, "neither": {"_count": 2}, "without": {"_count": 1}, "well": {"_count": 1}, "isnt": {"_count": 1}, "under": {"_count": 2}, "worth": {"_count": 1}, "Snape": {"_count": 1}, "quite": {"_count": 1}, "comfortably": {"_count": 1}, "as": {"_count": 3}, "there": {"_count": 1}, "a": {"_count": 1}, "just": {"_count": 1}, "sometimes": {"_count": 1}, "next": {"_count": 2}, "must": {"_count": 1}, "Of": {"_count": 1}, "then": {"_count": 1}, "Severus": {"_count": 1}, "thatll": {"_count": 1}, "you": {"_count": 1}, "Then": {"_count": 1}, "Albuss": {"_count": 1}, "resigned": {"_count": 1}, "again": {"_count": 1}, "Lace": {"_count": 1}, "though": {"_count": 1}, "moved": {"_count": 1}, "Ive": {"_count": 1}}, "that": {"_count": 78, "moment": {"_count": 31}, "man": {"_count": 1}, "Quidditch": {"_count": 1}, "freak": {"_count": 1}, "very": {"_count": 4}, "precise": {"_count": 7}, "anyway": {"_count": 1}, "Firebolt": {"_count": 1}, "": {"_count": 8}, "you": {"_count": 1}, "egg": {"_count": 1}, "point": {"_count": 4}, "basin": {"_count": 1}, "time": {"_count": 4}, "age": {"_count": 2}, "save": {"_count": 1}, "particular": {"_count": 1}, "rubbish": {"_count": 1}, "pestilential": {"_count": 1}, "small": {"_count": 1}, "Muggle": {"_count": 1}, "shop": {"_count": 1}, "his": {"_count": 1}, "symbol": {"_count": 1}, "and": {"_count": 1}}, "Hagrid": {"_count": 19, "and": {"_count": 3}, "smiling": {"_count": 1}, "trying": {"_count": 1}, "as": {"_count": 1}, "s": {"_count": 4}, "furiously": {"_count": 1}, "who": {"_count": 3}, "apparently": {"_count": 1}, "": {"_count": 3}, "perhaps": {"_count": 1}}, "perfectly": {"_count": 1, "ordinary": {"_count": 1}}, "Gringotts": {"_count": 14, "": {"_count": 3}, "the": {"_count": 2}, "on": {"_count": 1}, "in": {"_count": 1}, "Wizarding": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}, "bank": {"_count": 1}, "are": {"_count": 1}}, "everyone": {"_count": 4, "": {"_count": 1}, "in": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 1}}, "Harrys": {"_count": 58, "amazement": {"_count": 1}, "lightning": {"_count": 1}, "forehead": {"_count": 3}, "name": {"_count": 1}, "face": {"_count": 3}, "feet": {"_count": 10}, "": {"_count": 1}, "head": {"_count": 2}, "arm": {"_count": 2}, "shoulder": {"_count": 4}, "knees": {"_count": 1}, "cup": {"_count": 1}, "parents": {"_count": 1}, "words": {"_count": 1}, "eye": {"_count": 1}, "robes": {"_count": 1}, "pillow": {"_count": 1}, "sleeve": {"_count": 1}, "elbow": {"_count": 1}, "heart": {"_count": 2}, "bed": {"_count": 1}, "midriff": {"_count": 1}, "side": {"_count": 2}, "reaction": {"_count": 1}, "frog": {"_count": 1}, "enthusiasm": {"_count": 1}, "hearing": {"_count": 1}, "portrait": {"_count": 1}, "left": {"_count": 1}, "wrist": {"_count": 1}, "heel": {"_count": 1}, "look": {"_count": 1}, "lungs": {"_count": 1}, "red": {"_count": 1}, "question": {"_count": 1}, "heels": {"_count": 1}, "brow": {"_count": 1}, "hair": {"_count": 1}}, "everything": {"_count": 3, "at": {"_count": 1}, "around": {"_count": 2}}, "first": {"_count": 29, "he": {"_count": 3}, "sight": {"_count": 1}, "": {"_count": 7}, "Whos": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}, "because": {"_count": 1}, "glance": {"_count": 3}, "convinced": {"_count": 1}, "about": {"_count": 1}, "but": {"_count": 4}, "when": {"_count": 2}, "it": {"_count": 1}, "I": {"_count": 1}, "for": {"_count": 1}}, "wands": {"_count": 1, "said": {"_count": 1}}, "racing": {"_count": 1, "brooms": {"_count": 1}}, "two": {"_count": 6, "large": {"_count": 1}, "didnt": {"_count": 1}, "oclock": {"_count": 3}, "trees": {"_count": 1}}, "yer": {"_count": 1, "mum": {"_count": 1}}, "twentyone": {"_count": 1, "Galleons": {"_count": 1}}, "Kings": {"_count": 9, "Cross": {"_count": 9}}, "eleven": {"_count": 9, "oclock": {"_count": 6}, "p": {"_count": 1}, "tomorrow": {"_count": 1}, "and": {"_count": 1}}, "half": {"_count": 6, "past": {"_count": 6}}, "in": {"_count": 1, "a": {"_count": 1}}, "Ron": {"_count": 149, "and": {"_count": 43}, "who": {"_count": 28}, "to": {"_count": 3}, "": {"_count": 32}, "Harry": {"_count": 2}, "moving": {"_count": 1}, "in": {"_count": 2}, "bewildered": {"_count": 1}, "knocking": {"_count": 1}, "flicking": {"_count": 1}, "too": {"_count": 1}, "Professor": {"_count": 1}, "Ill": {"_count": 1}, "with": {"_count": 4}, "Ron": {"_count": 1}, "though": {"_count": 1}, "but": {"_count": 3}, "he": {"_count": 1}, "whose": {"_count": 2}, "Hermione": {"_count": 2}, "as": {"_count": 1}, "over": {"_count": 2}, "breathless": {"_count": 1}, "managing": {"_count": 1}, "laughing": {"_count": 1}, "it": {"_count": 1}, "Ginny": {"_count": 1}, "lets": {"_count": 1}, "her": {"_count": 1}, "nor": {"_count": 1}, "for": {"_count": 2}, "Shining": {"_count": 1}, "half": {"_count": 1}, "because": {"_count": 1}, "instead": {"_count": 1}, "she": {"_count": 1}}, "Scabbers": {"_count": 6, "": {"_count": 5}, "Ron": {"_count": 1}}, "heart": {"_count": 8, "Their": {"_count": 1}, "have": {"_count": 2}, "": {"_count": 3}, "Hes": {"_count": 1}, "he": {"_count": 1}}, "others": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "your": {"_count": 22, "service": {"_count": 2}, "place": {"_count": 4}, "orphanage": {"_count": 1}, "next": {"_count": 1}, "Quidditch": {"_count": 1}, "side": {"_count": 1}, "dads": {"_count": 1}, "mercy": {"_count": 1}, "hands": {"_count": 2}, "leisure": {"_count": 1}, "school": {"_count": 1}, "disposal": {"_count": 1}, "stupidity": {"_count": 1}, "brothers": {"_count": 1}, "urgent": {"_count": 1}, "mothers": {"_count": 1}, "house": {"_count": 1}}, "different": {"_count": 2, "times": {"_count": 1}, "parts": {"_count": 1}}, "midnight": {"_count": 13, "and": {"_count": 1}, "Ickle": {"_count": 1}, "on": {"_count": 2}, "up": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 3}, "would": {"_count": 1}, "in": {"_count": 1}, "everyone": {"_count": 1}, "so": {"_count": 1}}, "Malfoy": {"_count": 40, "Crabbe": {"_count": 1}, "and": {"_count": 4}, "just": {"_count": 1}, "who": {"_count": 4}, "": {"_count": 11}, "as": {"_count": 3}, "with": {"_count": 2}, "taking": {"_count": 1}, "in": {"_count": 1}, "then": {"_count": 1}, "without": {"_count": 1}, "which": {"_count": 1}, "lets": {"_count": 1}, "that": {"_count": 1}, "or": {"_count": 1}, "on": {"_count": 1}, "apparently": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "Manor": {"_count": 2}}, "Hermione": {"_count": 107, "": {"_count": 38}, "and": {"_count": 10}, "trying": {"_count": 1}, "as": {"_count": 8}, "disgusted": {"_count": 1}, "s": {"_count": 4}, "who": {"_count": 13}, "with": {"_count": 4}, "too": {"_count": 1}, "but": {"_count": 2}, "the": {"_count": 1}, "from": {"_count": 2}, "then": {"_count": 3}, "through": {"_count": 2}, "in": {"_count": 2}, "to": {"_count": 1}, "thinking": {"_count": 1}, "she": {"_count": 1}, "rather": {"_count": 1}, "whose": {"_count": 3}, "suspiciously": {"_count": 1}, "Little": {"_count": 1}, "keen": {"_count": 1}, "now": {"_count": 1}, "earlier": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}, "clearly": {"_count": 1}}, "Seamus": {"_count": 7, "": {"_count": 4}, "to": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 1}}, "Rons": {"_count": 16, "freckles": {"_count": 1}, "house": {"_count": 1}, "however": {"_count": 1}, "chest": {"_count": 1}, "when": {"_count": 1}, "parents": {"_count": 1}, "body": {"_count": 1}, "bed": {"_count": 1}, "end": {"_count": 1}, "crumpled": {"_count": 1}, "disastrous": {"_count": 1}, "pale": {"_count": 1}, "ankle": {"_count": 1}, "head": {"_count": 1}, "sleeve": {"_count": 1}, "neck": {"_count": 1}}, "Quidditch": {"_count": 14, "but": {"_count": 1}, "": {"_count": 3}, "or": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 3}, "practice": {"_count": 1}, "its": {"_count": 1}, "good": {"_count": 1}, "even": {"_count": 1}}, "odd": {"_count": 3, "angles": {"_count": 2}, "moments": {"_count": 1}}, "Crabbe": {"_count": 13, "and": {"_count": 5}, "s": {"_count": 2}, "who": {"_count": 2}, "getting": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "which": {"_count": 1}}, "either": {"_count": 8, "end": {"_count": 5}, "of": {"_count": 1}, "Umbridge": {"_count": 1}, "side": {"_count": 1}}, "Peeves": {"_count": 5, "this": {"_count": 1}, "": {"_count": 2}, "it": {"_count": 1}, "and": {"_count": 1}}, "its": {"_count": 19, "feet": {"_count": 2}, "scaly": {"_count": 1}, "burnt": {"_count": 1}, "highest": {"_count": 1}, "side": {"_count": 2}, "deepest": {"_count": 1}, "portholes": {"_count": 1}, "best": {"_count": 1}, "roots": {"_count": 3}, "two": {"_count": 1}, "blistered": {"_count": 1}, "slippery": {"_count": 1}, "overgrown": {"_count": 1}, "center": {"_count": 2}}, "seven": {"_count": 5, "oclock": {"_count": 5}}, "Malfoys": {"_count": 7, "elbow": {"_count": 1}, "obvious": {"_count": 1}, "back": {"_count": 1}, "face": {"_count": 1}, "last": {"_count": 1}, "ankles": {"_count": 1}, "feet": {"_count": 1}}, "Wood": {"_count": 3, "who": {"_count": 1}, "but": {"_count": 1}, "they": {"_count": 1}}, "Halloween": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "drawing": {"_count": 2, "had": {"_count": 2}}, "one": {"_count": 38, "another": {"_count": 21}, "in": {"_count": 1}, "time": {"_count": 2}, "since": {"_count": 1}, "oclock": {"_count": 5}, "of": {"_count": 6}, "end": {"_count": 1}, "poin": {"_count": 1}}, "how": {"_count": 11, "a": {"_count": 1}, "pleased": {"_count": 1}, "crazy": {"_count": 1}, "normal": {"_count": 1}, "little": {"_count": 2}, "far": {"_count": 1}, "he": {"_count": 1}, "well": {"_count": 1}, "easily": {"_count": 1}, "his": {"_count": 1}}, "random": {"_count": 13, "": {"_count": 1}, "wanting": {"_count": 1}, "every": {"_count": 1}, "and": {"_count": 8}, "he": {"_count": 1}, "into": {"_count": 1}}, "thinking": {"_count": 1, "up": {"_count": 1}}, "himself": {"_count": 5, "but": {"_count": 2}, "": {"_count": 2}, "Ron": {"_count": 1}}, "me": {"_count": 41, "": {"_count": 14}, "like": {"_count": 6}, "and": {"_count": 5}, "feel": {"_count": 1}, "now": {"_count": 1}, "cabin": {"_count": 1}, "Dudley": {"_count": 2}, "but": {"_count": 1}, "thas": {"_count": 1}, "when": {"_count": 1}, "about": {"_count": 1}, "I": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}, "Im": {"_count": 1}, "anyone": {"_count": 1}, "arent": {"_count": 1}}, "these": {"_count": 16, "words": {"_count": 10}, "Dragon": {"_count": 1}, "last": {"_count": 1}, "tents": {"_count": 1}, "": {"_count": 1}, "books": {"_count": 1}, "times": {"_count": 1}}, "something": {"_count": 8, "Harry": {"_count": 3}, "for": {"_count": 1}, "on": {"_count": 1}, "other": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "Snape": {"_count": 38, "she": {"_count": 1}, "whose": {"_count": 1}, "": {"_count": 8}, "it": {"_count": 2}, "as": {"_count": 4}, "s": {"_count": 3}, "at": {"_count": 1}, "Harry": {"_count": 1}, "determined": {"_count": 1}, "who": {"_count": 5}, "continued": {"_count": 1}, "hating": {"_count": 1}, "and": {"_count": 4}, "his": {"_count": 2}, "until": {"_count": 1}, "again": {"_count": 1}, "Then": {"_count": 1}}, "dinner": {"_count": 15, "what": {"_count": 1}, "": {"_count": 8}, "Why": {"_count": 1}, "last": {"_count": 1}, "nor": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 1}, "on": {"_count": 1}}, "Quirrells": {"_count": 1, "stutter": {"_count": 1}}, "Hagrids": {"_count": 9, "hut": {"_count": 1}, "by": {"_count": 1}, "window": {"_count": 1}, "odd": {"_count": 1}, "words": {"_count": 1}, "cabin": {"_count": 2}, "": {"_count": 2}}, "Filch": {"_count": 1, "": {"_count": 1}}, "dawn": {"_count": 3, "said": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}}, "Fangs": {"_count": 1, "long": {"_count": 1}}, "Ronan": {"_count": 1, "and": {"_count": 1}}, "Bane": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 16, "": {"_count": 3}, "Longbottom": {"_count": 1}, "youll": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 2}, "tried": {"_count": 1}, "Ginny": {"_count": 1}, "it": {"_count": 1}, "whose": {"_count": 1}, "the": {"_count": 1}, "who": {"_count": 2}}, "you": {"_count": 24, "both": {"_count": 1}, "Look": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 4}, "said": {"_count": 3}, "anyway": {"_count": 1}, "before": {"_count": 1}, "or": {"_count": 2}, "I": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}, "unexpectedly": {"_count": 1}, "because": {"_count": 1}, "Harry": {"_count": 1}, "who": {"_count": 1}, "beside": {"_count": 1}, "has": {"_count": 1}, "and": {"_count": 1}}, "chess": {"_count": 1, "Were": {"_count": 1}}, "Smeltings": {"_count": 1, "said": {"_count": 1}}, "wizard": {"_count": 1, "school": {"_count": 1}}, "eight": {"_count": 9, "oclock": {"_count": 8}, "and": {"_count": 1}}, "ten": {"_count": 9, "": {"_count": 2}, "past": {"_count": 3}, "blackandwhite": {"_count": 1}, "to": {"_count": 1}, "oclock": {"_count": 2}}, "twelve": {"_count": 2, "minutes": {"_count": 1}, "and": {"_count": 1}}, "Privet": {"_count": 5, "Drive": {"_count": 5}}, "arms": {"_count": 5, "length": {"_count": 5}}, "every": {"_count": 9, "meal": {"_count": 1}, "window": {"_count": 1}, "entrance": {"_count": 1}, "possible": {"_count": 2}, "available": {"_count": 1}, "bit": {"_count": 2}, "nerve": {"_count": 1}}, "mealtimes": {"_count": 5, "so": {"_count": 1}, "or": {"_count": 1}, "they": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "Flourish": {"_count": 2, "and": {"_count": 2}}, "Mr": {"_count": 25, "Malfoy": {"_count": 4}, "and": {"_count": 2}, "Weasley": {"_count": 6}, "Roberts": {"_count": 1}, "Crouch": {"_count": 9}, "Crouchs": {"_count": 1}, "Moody": {"_count": 1}, "Lovegood": {"_count": 1}}, "my": {"_count": 27, "wand": {"_count": 1}, "house": {"_count": 1}, "feeble": {"_count": 1}, "deathday": {"_count": 1}, "father": {"_count": 1}, "glasses": {"_count": 1}, "school": {"_count": 3}, "fall": {"_count": 1}, "hands": {"_count": 1}, "friend": {"_count": 1}, "forehead": {"_count": 1}, "invitation": {"_count": 1}, "place": {"_count": 2}, "hearing": {"_count": 1}, "death": {"_count": 1}, "mother": {"_count": 2}, "lateness": {"_count": 1}, "aunt": {"_count": 1}, "mustache": {"_count": 1}, "mercy": {"_count": 1}, "head": {"_count": 1}, "refusal": {"_count": 1}, "feet": {"_count": 1}}, "noon": {"_count": 3, "in": {"_count": 1}, "the": {"_count": 2}}, "Snapes": {"_count": 7, "desk": {"_count": 1}, "prone": {"_count": 1}, "face": {"_count": 1}, "back": {"_count": 1}, "side": {"_count": 1}, "body": {"_count": 1}, "chest": {"_count": 1}}, "Herbology": {"_count": 2, "than": {"_count": 1}, "Neville": {"_count": 1}}, "Colin": {"_count": 3, "": {"_count": 2}, "whose": {"_count": 1}}, "Lockhart": {"_count": 3, "with": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "long": {"_count": 8, "last": {"_count": 8}}, "full": {"_count": 3, "speed": {"_count": 2}, "tilt": {"_count": 1}}, "Fred": {"_count": 15, "and": {"_count": 6}, "scratched": {"_count": 1}, "before": {"_count": 1}, "George": {"_count": 1}, "who": {"_count": 2}, "more": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "Muggle": {"_count": 1, "cleaning": {"_count": 1}}, "parties": {"_count": 1, "and": {"_count": 1}}, "anyone": {"_count": 3, "who": {"_count": 2}, "elses": {"_count": 1}}, "unsuspecting": {"_count": 1, "students": {"_count": 1}}, "lunchtime": {"_count": 4, "": {"_count": 2}, "on": {"_count": 1}, "Hermione": {"_count": 1}}, "Percy": {"_count": 10, "": {"_count": 4}, "in": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 2}, "expecting": {"_count": 1}, "with": {"_count": 1}}, "Madam": {"_count": 5, "Pince": {"_count": 1}, "Bones": {"_count": 2}, "Pomfrey": {"_count": 1}, "Malkins": {"_count": 1}}, "Colins": {"_count": 1, "bed": {"_count": 1}}, "Justin": {"_count": 1, "grinning": {"_count": 1}}, "": {"_count": 23, "?": {"_count": 12}, ".": {"_count": 11}}, "someone": {"_count": 3, "who": {"_count": 1}, "else": {"_count": 1}, "he": {"_count": 1}}, "Ernie": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "else": {"_count": 1}}, "Myrtle": {"_count": 1, "because": {"_count": 1}}, "break": {"_count": 3, "he": {"_count": 1}, "times": {"_count": 1}, "": {"_count": 1}}, "was": {"_count": 1, "Quidditch": {"_count": 1}}, "almost": {"_count": 1, "exactly": {"_count": 1}}, "Fudge": {"_count": 11, "": {"_count": 3}, "jumping": {"_count": 1}, "trembling": {"_count": 1}, "as": {"_count": 1}, "through": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 2}, "is": {"_count": 1}}, "Lucius": {"_count": 3, "Malfoy": {"_count": 3}}, "Hog": {"_count": 8, "warts": {"_count": 7}, "at": {"_count": 1}}, "Hermiones": {"_count": 2, "face": {"_count": 1}, "words": {"_count": 1}}, "wandpoint": {"_count": 1, "": {"_count": 1}}, "Riddle": {"_count": 8, "at": {"_count": 1}, "": {"_count": 2}, "wand": {"_count": 1}, "though": {"_count": 2}, "but": {"_count": 1}, "as": {"_count": 1}}, "Fawkes": {"_count": 2, "there": {"_count": 1}, "then": {"_count": 1}}, "b": {"_count": 1, "breakfast": {"_count": 1}}, "Ginny": {"_count": 19, "who": {"_count": 5}, "": {"_count": 4}, "for": {"_count": 2}, "Im": {"_count": 1}, "around": {"_count": 1}, "he": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 2}, "Ron": {"_count": 1}, "wanting": {"_count": 1}}, "Dobby": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}}, "recognizing": {"_count": 1, "it": {"_count": 1}}, "customs": {"_count": 1, "": {"_count": 1}}, "musical": {"_count": 1, "statues": {"_count": 1}}, "Christmas": {"_count": 5, "with": {"_count": 1}, "What": {"_count": 1}, "shrugged": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "St": {"_count": 7, "": {"_count": 7}}, "Colonel": {"_count": 1, "Fubsters": {"_count": 1}}, "stake": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "most": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "Stan": {"_count": 1, "whose": {"_count": 1}}, "not": {"_count": 1, "one": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "platform": {"_count": 2, "nine": {"_count": 2}}, "Professor": {"_count": 26, "Lupins": {"_count": 1}, "Lupin": {"_count": 3}, "Trelawney": {"_count": 3}, "Snape": {"_count": 1}, "Binns": {"_count": 3}, "Umbridge": {"_count": 10}, "Trelawneys": {"_count": 2}, "McGonagalls": {"_count": 1}, "McGonagall": {"_count": 2}}, "Hogsmeade": {"_count": 1, "station": {"_count": 1}}, "our": {"_count": 6, "end": {"_count": 1}, "match": {"_count": 1}, "house": {"_count": 2}, "school": {"_count": 1}, "mothers": {"_count": 1}}, "Parvati": {"_count": 3, "Patil": {"_count": 1}, "whose": {"_count": 1}, "": {"_count": 1}}, "pages": {"_count": 1, "five": {"_count": 1}}, "will": {"_count": 6, "into": {"_count": 1}, "": {"_count": 3}, "she": {"_count": 1}, "and": {"_count": 1}}, "Divination": {"_count": 1, "means": {"_count": 1}}, "dinnertime": {"_count": 1, "hoping": {"_count": 1}}, "shabby": {"_count": 1, "Professor": {"_count": 1}}, "lunchtimes": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Alicia": {"_count": 1, "Spinnet": {"_count": 1}}, "Gryffindors": {"_count": 2, "defeat": {"_count": 1}, "abysmal": {"_count": 1}}, "Lupins": {"_count": 5, "desk": {"_count": 1}, "chest": {"_count": 2}, "for": {"_count": 1}, "back": {"_count": 1}}, "fighting": {"_count": 1, "dementors": {"_count": 1}}, "team": {"_count": 1, "practice": {"_count": 1}}, "hand": {"_count": 6, "somebody": {"_count": 1}, "": {"_count": 3}, "was": {"_count": 1}, "a": {"_count": 1}}, "dueling": {"_count": 1, "": {"_count": 1}}, "liberty": {"_count": 1, "was": {"_count": 1}}, "exactly": {"_count": 7, "the": {"_count": 7}}, "Crookshanks": {"_count": 3, "that": {"_count": 2}, "": {"_count": 1}}, "us": {"_count": 7, "for": {"_count": 1}, "": {"_count": 2}, "when": {"_count": 1}, "I": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}}, "bay": {"_count": 7, "long": {"_count": 1}, "": {"_count": 2}, "though": {"_count": 1}, "ever": {"_count": 1}, "the": {"_count": 1}, "held": {"_count": 1}}, "such": {"_count": 4, "speed": {"_count": 1}, "a": {"_count": 2}, "short": {"_count": 1}}, "breakneck": {"_count": 2, "speed": {"_count": 2}}, "lunch": {"_count": 2, "either": {"_count": 1}, "to": {"_count": 1}}, "Freds": {"_count": 1, "and": {"_count": 1}}, "Bole": {"_count": 1, "and": {"_count": 1}}, "Warrington": {"_count": 1, "knocking": {"_count": 1}}, "finally": {"_count": 2, "winning": {"_count": 1}, "understanding": {"_count": 1}}, "sunset": {"_count": 1, "Nothing": {"_count": 1}}, "Pettigrew": {"_count": 5, "": {"_count": 1}, "with": {"_count": 2}, "too": {"_count": 1}, "Lupins": {"_count": 1}}, "Blacks": {"_count": 3, "heart": {"_count": 1}, "chest": {"_count": 1}, "face": {"_count": 1}}, "Black": {"_count": 12, "and": {"_count": 2}, "who": {"_count": 3}, "again": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}, "how": {"_count": 1}, "whose": {"_count": 1}, "as": {"_count": 1}}, "Lupin": {"_count": 11, "": {"_count": 7}, "wildeyed": {"_count": 1}, "his": {"_count": 1}, "but": {"_count": 1}, "before": {"_count": 1}}, "great": {"_count": 3, "risk": {"_count": 1}, "personal": {"_count": 2}}, "Pettigrews": {"_count": 1, "chest": {"_count": 1}}, "Buckbeak": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "sundown": {"_count": 1, "Careful": {"_count": 1}}, "Siriuss": {"_count": 1, "letter": {"_count": 1}}, "daybreak": {"_count": 1, "on": {"_count": 1}}, "wayside": {"_count": 1, "inns": {"_count": 1}}, "having": {"_count": 3, "delivered": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "making": {"_count": 1, "conversation": {"_count": 1}}, "Dudleys": {"_count": 2, "peculiar": {"_count": 1}, "heart": {"_count": 1}}, "Georges": {"_count": 3, "shoulder": {"_count": 1}, "pocket": {"_count": 1}, "elbow": {"_count": 1}}, "peace": {"_count": 3, "with": {"_count": 2}, "rather": {"_count": 1}}, "strategic": {"_count": 2, "points": {"_count": 1}, "intervals": {"_count": 1}}, "hearing": {"_count": 1, "about": {"_count": 1}}, "Bagman": {"_count": 1, "": {"_count": 1}}, "languages": {"_count": 1, "I": {"_count": 1}}, "normal": {"_count": 1, "speed": {"_count": 1}}, "Moran": {"_count": 1, "who": {"_count": 1}}, "Lynch": {"_count": 1, "1": {"_count": 1}}, "Winky": {"_count": 5, "": {"_count": 1}, "and": {"_count": 2}, "again": {"_count": 1}, "said": {"_count": 1}}, "Winkys": {"_count": 1, "unconscious": {"_count": 1}}, "large": {"_count": 14, "": {"_count": 5}, "he": {"_count": 2}, "once": {"_count": 1}, "today": {"_count": 1}, "angry": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 2}, "after": {"_count": 1}}, "both": {"_count": 6, "of": {"_count": 3}, "his": {"_count": 1}, "": {"_count": 1}, "ends": {"_count": 1}}, "Hedwigs": {"_count": 2, "deserted": {"_count": 1}, "cage": {"_count": 1}}, "Pigwidgeons": {"_count": 1, "cage": {"_count": 1}}, "ONCE": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 2, "fifthyear": {"_count": 1}, "frightened": {"_count": 1}}, "Nearly": {"_count": 2, "Headless": {"_count": 2}}, "MadEye": {"_count": 2, "Moody": {"_count": 2}}, "high": {"_count": 2, "speed": {"_count": 1}, "tide": {"_count": 1}}, "Uranus": {"_count": 1, "too": {"_count": 1}}, "Moody": {"_count": 10, "and": {"_count": 2}, "as": {"_count": 3}, "": {"_count": 2}, "to": {"_count": 1}, "his": {"_count": 1}, "who": {"_count": 1}}, "top": {"_count": 6, "speed": {"_count": 6}}, "Hedwig": {"_count": 1, "who": {"_count": 1}}, "6": {"_count": 1, "oclock": {"_count": 1}}, "Krum": {"_count": 9, "": {"_count": 4}, "who": {"_count": 2}, "in": {"_count": 1}, "for": {"_count": 1}, "just": {"_count": 1}}, "various": {"_count": 1, "students": {"_count": 1}}, "ze": {"_count": 2, "apple": {"_count": 1}, "moment": {"_count": 1}}, "Cedric": {"_count": 3, "who": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "lessons": {"_count": 1, "and": {"_count": 1}}, "Summoning": {"_count": 2, "Charms": {"_count": 2}}, "angles": {"_count": 1, "Harrys": {"_count": 1}}, "words": {"_count": 1, "the": {"_count": 1}}, "innocent": {"_count": 1, "bystanders": {"_count": 1}}, "Krums": {"_count": 3, "sharp": {"_count": 1}, "dark": {"_count": 1}, "invitation": {"_count": 1}}, "double": {"_count": 1, "speed": {"_count": 1}}, "disguising": {"_count": 1, "themselves": {"_count": 1}}, "times": {"_count": 6, "I": {"_count": 1}, "when": {"_count": 2}, "she": {"_count": 2}, "such": {"_count": 1}}, "whatever": {"_count": 3, "Hagrid": {"_count": 1}, "they": {"_count": 1}, "hes": {"_count": 1}}, "waist": {"_count": 2, "height": {"_count": 2}}, "and": {"_count": 2, "about": {"_count": 1}, "talked": {"_count": 1}}, "Sirius": {"_count": 15, "": {"_count": 6}, "told": {"_count": 1}, "and": {"_count": 2}, "whose": {"_count": 1}, "before": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 2}, "now": {"_count": 1}}, "flying": {"_count": 1, "": {"_count": 1}}, "midday": {"_count": 1, "giving": {"_count": 1}}, "opposite": {"_count": 1, "sides": {"_count": 1}}, "those": {"_count": 1, "golden": {"_count": 1}}, "everybody": {"_count": 4, "steering": {"_count": 1}, "": {"_count": 1}, "else": {"_count": 1}, "so": {"_count": 1}}, "fivethirty": {"_count": 1, "in": {"_count": 1}}, "Chreestmas": {"_count": 1, "": {"_count": 1}}, "Fleur": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}}, "which": {"_count": 9, "point": {"_count": 1}, "Uncle": {"_count": 1}, "time": {"_count": 1}, "Crookshanks": {"_count": 1}, "Fred": {"_count": 1}, "he": {"_count": 3}, "the": {"_count": 1}}, "Zonkos": {"_count": 1, "Joke": {"_count": 1}}, "eightthirty": {"_count": 1, "in": {"_count": 1}}, "magic": {"_count": 4, "really": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "you": {"_count": 1}}, "yeh": {"_count": 1, "Harry": {"_count": 1}}, "aroun": {"_count": 1, "four": {"_count": 1}}, "another": {"_count": 4, "gold": {"_count": 1}, "which": {"_count": 1}, "girl": {"_count": 1}, "hand": {"_count": 1}}, "intervals": {"_count": 5, "of": {"_count": 1}, "to": {"_count": 1}, "all": {"_count": 1}, "along": {"_count": 2}}, "dusk": {"_count": 3, "on": {"_count": 1}, "he": {"_count": 1}, "Hermione": {"_count": 1}}, "stile": {"_count": 1, "at": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "Karkaroff": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "nine": {"_count": 1, "oclock": {"_count": 1}}, "Crouch": {"_count": 6, "in": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 2}, "a": {"_count": 1}, "": {"_count": 1}}, "Dumbledores": {"_count": 5, "feet": {"_count": 1}, "school": {"_count": 1}, "chest": {"_count": 1}, "funeral": {"_count": 1}, "deserted": {"_count": 1}}, "walking": {"_count": 1, "off": {"_count": 1}}, "Wormtail": {"_count": 4, "": {"_count": 1}, "who": {"_count": 2}, "for": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "ones": {"_count": 1, "leisure": {"_count": 1}}, "Nevilles": {"_count": 4, "bed": {"_count": 1}, "head": {"_count": 1}, "robes": {"_count": 1}, "legs": {"_count": 1}}, "four": {"_count": 3, "in": {"_count": 2}, "its": {"_count": 1}}, "length": {"_count": 1, "about": {"_count": 1}}, "Cedrics": {"_count": 2, "shadowy": {"_count": 1}, "feet": {"_count": 1}}, "Wormtails": {"_count": 1, "command": {"_count": 1}}, "Voldemorts": {"_count": 3, "feet": {"_count": 3}}, "Voldemort": {"_count": 8, "": {"_count": 1}, "who": {"_count": 2}, "and": {"_count": 3}, "now": {"_count": 1}, "Harry": {"_count": 1}}, "Barty": {"_count": 2, "Crouch": {"_count": 2}}, "Azkaban": {"_count": 1, "": {"_count": 1}}, "passing": {"_count": 1, "cars": {"_count": 1}}, "three": {"_count": 2, "in": {"_count": 2}}, "admitting": {"_count": 1, "it": {"_count": 1}}, "twentythree": {"_count": 2, "minutes": {"_count": 2}}, "9": {"_count": 1, "a": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "headquarters": {"_count": 4, "Yes": {"_count": 1}, "when": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "operating": {"_count": 1, "in": {"_count": 1}}, "Mundungus": {"_count": 3, "ever": {"_count": 1}, "s": {"_count": 1}, "and": {"_count": 1}}, "passersby": {"_count": 2, "": {"_count": 2}}, "halfpast": {"_count": 3, "five": {"_count": 1}, "two": {"_count": 1}, "nine": {"_count": 1}}, "Perkinss": {"_count": 1, "desk": {"_count": 1}}, "escaping": {"_count": 1, "": {"_count": 1}}, "humans": {"_count": 1, "of": {"_count": 1}}, "whats": {"_count": 1, "happened": {"_count": 1}}, "Alice": {"_count": 1, "Longbottom": {"_count": 1}}, "pigeons": {"_count": 1, "and": {"_count": 1}}, "Luna": {"_count": 4, "Lovegood": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "who": {"_count": 1}}, "friends": {"_count": 1, "from": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "hiding": {"_count": 1, "their": {"_count": 1}}, "Dean": {"_count": 4, "and": {"_count": 2}, "do": {"_count": 1}, "on": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "Ordinary": {"_count": 2, "Wizarding": {"_count": 2}}, "Umbridges": {"_count": 2, "note": {"_count": 1}, "clipboard": {"_count": 1}}, "controlling": {"_count": 1, "our": {"_count": 1}}, "Umbridge": {"_count": 6, "": {"_count": 2}, "all": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 2}}, "Cho": {"_count": 7, "and": {"_count": 3}, "": {"_count": 2}, "he": {"_count": 1}, "crying": {"_count": 1}}, "Katie": {"_count": 2, "evidently": {"_count": 1}, "for": {"_count": 1}}, "nothing": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "Trelawney": {"_count": 1, "youve": {"_count": 1}}, "Defense": {"_count": 6, "Against": {"_count": 6}}, "Diggory": {"_count": 1, "we": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "Durmstrang": {"_count": 5, "": {"_count": 2}, "ven": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "regular": {"_count": 2, "intervals": {"_count": 2}}, "Zacharias": {"_count": 1, "as": {"_count": 1}}, "other": {"_count": 1, "times": {"_count": 1}}, "short": {"_count": 1, "notice": {"_count": 1}}, "exposed": {"_count": 1, "hands": {"_count": 1}}, "twentytwo": {"_count": 1, "twenty": {"_count": 1}}, "Fang": {"_count": 1, "who": {"_count": 1}}, "individual": {"_count": 1, "members": {"_count": 1}}, "loggerheads": {"_count": 1, "": {"_count": 1}}, "whom": {"_count": 3, "he": {"_count": 2}, "Moody": {"_count": 1}}, "kissing": {"_count": 1, "": {"_count": 1}}, "mortal": {"_count": 4, "peril": {"_count": 4}}, "poor": {"_count": 1, "Sturgis": {"_count": 1}}, "Phineas": {"_count": 1, "Nigelluss": {"_count": 1}}, "Dobbys": {"_count": 2, "painting": {"_count": 1}, "grave": {"_count": 1}}, "Legilimency": {"_count": 1, "Whats": {"_count": 1}}, "leisure": {"_count": 1, "": {"_count": 1}}, "Occlumency": {"_count": 4, "are": {"_count": 1}, "as": {"_count": 1}, "than": {"_count": 1}, "I": {"_count": 1}}, "resisting": {"_count": 1, "the": {"_count": 1}}, "lamplit": {"_count": 1, "tables": {"_count": 1}}, "Rita": {"_count": 1, "with": {"_count": 1}}, "more": {"_count": 1, "and": {"_count": 1}}, "Firenze": {"_count": 1, "for": {"_count": 1}}, "Mariettas": {"_count": 2, "concealed": {"_count": 1}, "face": {"_count": 1}}, "Marietta": {"_count": 1, "": {"_count": 1}}, "Kingsley": {"_count": 1, "and": {"_count": 1}}, "James": {"_count": 5, "who": {"_count": 1}, "with": {"_count": 2}, "there": {"_count": 1}, "disturbed": {"_count": 1}}, "or": {"_count": 1, "having": {"_count": 1}}, "Jamess": {"_count": 1, "hands": {"_count": 1}}, "practice": {"_count": 1, "": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "McGonagall": {"_count": 1, "": {"_count": 1}}, "Defensive": {"_count": 1, "Magical": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "pretty": {"_count": 1, "much": {"_count": 1}}, "Grawp": {"_count": 2, "who": {"_count": 1}, "like": {"_count": 1}}, "helping": {"_count": 1, "Gryffindor": {"_count": 1}}, "itself": {"_count": 1, "in": {"_count": 1}}, "question": {"_count": 1, "five": {"_count": 1}}, "Crabbes": {"_count": 1, "arms": {"_count": 1}}, "Magorian": {"_count": 2, "she": {"_count": 1}, "and": {"_count": 1}}, "finding": {"_count": 2, "places": {"_count": 1}, "himself": {"_count": 1}}, "close": {"_count": 1, "quarters": {"_count": 1}}, "fighding": {"_count": 1, "dem": {"_count": 1}}, "Bellatrix": {"_count": 6, "nobody": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "rather": {"_count": 1}}, "war": {"_count": 1, "Prime": {"_count": 1}}, "doors": {"_count": 1, "I": {"_count": 1}}, "seventeen": {"_count": 2, "": {"_count": 1}, "thats": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "auction": {"_count": 1, "": {"_count": 1}}, "Emmeline": {"_count": 1, "Vance": {"_count": 1}}, "precisely": {"_count": 1, "the": {"_count": 1}}, "giving": {"_count": 1, "leg": {"_count": 1}}, "healing": {"_count": 1, "minor": {"_count": 1}}, "Bruises": {"_count": 1, "Cuts": {"_count": 1}}, "Potions": {"_count": 6, "": {"_count": 4}, "Lily": {"_count": 1}, "Its": {"_count": 1}}, "Bill": {"_count": 8, "": {"_count": 2}, "or": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 3}, "waiting": {"_count": 1}}, "Twilfitt": {"_count": 1, "and": {"_count": 1}}, "Eeylops": {"_count": 1, "Owl": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "Fleurs": {"_count": 1, "feet": {"_count": 1}}, "thin": {"_count": 1, "air": {"_count": 1}}, "Belby": {"_count": 2, "whose": {"_count": 1}, "": {"_count": 1}}, "posing": {"_count": 1, "": {"_count": 1}}, "Zabini": {"_count": 1, "around": {"_count": 1}}, "Goyle": {"_count": 1, "": {"_count": 1}}, "\u2018the": {"_count": 1, "Chosen": {"_count": 1}}, "Tonks": {"_count": 4, "who": {"_count": 1}, "under": {"_count": 1}, "": {"_count": 2}}, "O": {"_count": 1, "": {"_count": 1}}, "anyway": {"_count": 1, "letting": {"_count": 1}}, "8": {"_count": 1, "p": {"_count": 1}}, "just": {"_count": 1, "out": {"_count": 1}}, "Ogden": {"_count": 4, "": {"_count": 1}, "but": {"_count": 1}, "shaking": {"_count": 1}, "brandishing": {"_count": 1}}, "anybody": {"_count": 1, "or": {"_count": 1}}, "Ogdens": {"_count": 1, "feet": {"_count": 1}}, "confronting": {"_count": 1, "the": {"_count": 1}}, "taking": {"_count": 1, "Stan": {"_count": 1}}, "dodging": {"_count": 1, "Bludgers": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "meals": {"_count": 1, "anymore": {"_count": 1}}, "airiness": {"_count": 1, "": {"_count": 1}}, "Leanne": {"_count": 1, "who": {"_count": 1}}, "Borgin": {"_count": 6, "and": {"_count": 6}}, "doesnt": {"_count": 1, "she": {"_count": 1}}, "Demelzas": {"_count": 1, "mouth": {"_count": 1}}, "Harper": {"_count": 1, "instead": {"_count": 1}}, "perfect": {"_count": 1, "liberty": {"_count": 1}}, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}, "Keeper": {"_count": 2, "tryouts": {"_count": 2}}, "complete": {"_count": 1, "odds": {"_count": 1}}, "pres": {"_count": 1, "What": {"_count": 1}}, "Slughorns": {"_count": 1, "party": {"_count": 1}}, "keeping": {"_count": 1, "anger": {"_count": 1}}, "warmth": {"_count": 1, "I": {"_count": 1}}, "WonWons": {"_count": 1, "": {"_count": 1}}, "Morfin": {"_count": 1, "as": {"_count": 1}}, "nonverbal": {"_count": 1, "incantations": {"_count": 1}}, "weekends": {"_count": 1, "to": {"_count": 1}}, "eighteen": {"_count": 1, "but": {"_count": 1}}, "doing": {"_count": 1, "this": {"_count": 1}}, "twilight": {"_count": 2, "": {"_count": 1}, "Midnight": {"_count": 1}}, "McLaggen": {"_count": 1, "before": {"_count": 1}}, "very": {"_count": 1, "carefully": {"_count": 1}}, "male": {"_count": 1, "said": {"_count": 1}}, "keyholes": {"_count": 1, "Harry": {"_count": 1}}, "moonlit": {"_count": 1, "sea": {"_count": 1}}, "speed": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Albus": {"_count": 2, "Dumbledore": {"_count": 1}, "": {"_count": 1}}, "Fenrir": {"_count": 1, "he": {"_count": 1}}, "Bills": {"_count": 1, "wounds": {"_count": 1}}, "nightfall": {"_count": 2, "": {"_count": 1}, "repeated": {"_count": 1}}, "Kendras": {"_count": 1, "funeral": {"_count": 1}}, "ease": {"_count": 1, "with": {"_count": 1}}, "Spellmans": {"_count": 1, "Syllabary": {"_count": 1}}, "household": {"_count": 1, "spells": {"_count": 1}}, "little": {"_count": 1, "Pigwidgeons": {"_count": 1}}, "oh": {"_count": 1, "": {"_count": 1}}, "weddings": {"_count": 1, "": {"_count": 1}}, "relatives": {"_count": 1, "Mrs": {"_count": 1}}, "Xenophilius": {"_count": 5, "despite": {"_count": 1}, "too": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "vunce": {"_count": 1, "Grindelvald": {"_count": 1}}, "scorn": {"_count": 1, "": {"_count": 1}}, "Arianas": {"_count": 3, "funeral": {"_count": 1}, "death": {"_count": 1}, "picture": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "Dolohovs": {"_count": 1, "forehead": {"_count": 1}}, "Godrics": {"_count": 2, "Hollow": {"_count": 2}}, "Reguluss": {"_count": 1, "sign": {"_count": 1}}, "page": {"_count": 1, "two": {"_count": 1}}, "whave": {"_count": 1, "I": {"_count": 1}}, "houses": {"_count": 1, "eleven": {"_count": 1}}, "odds": {"_count": 2, "with": {"_count": 2}}, "level": {"_count": 1, "two": {"_count": 1}}, "Grimmauld": {"_count": 2, "Place": {"_count": 2}}, "opening": {"_count": 1, "it": {"_count": 1}}, "Gregorovitch": {"_count": 1, "and": {"_count": 1}}, "Dark": {"_count": 1, "objects": {"_count": 1}}, "identifying": {"_count": 1, "edible": {"_count": 1}}, "Ginnys": {"_count": 1, "name": {"_count": 1}}, "herself": {"_count": 1, "then": {"_count": 1}}, "Gellerts": {"_count": 1, "bedroom": {"_count": 1}}, "glory": {"_count": 1, "and": {"_count": 1}}, "producing": {"_count": 1, "and": {"_count": 1}}, "eye": {"_count": 1, "level": {"_count": 1}}, "straws": {"_count": 1, "": {"_count": 1}}, "Bottom": {"_count": 1, "Bridge": {"_count": 1}}, "Potterwatch": {"_count": 1, "applaud": {"_count": 1}}, "remembering": {"_count": 1, "her": {"_count": 1}}, "Draco": {"_count": 1, "but": {"_count": 1}}, "woman": {"_count": 1, "": {"_count": 1}}, "Griphook": {"_count": 1, "who": {"_count": 1}}, "Bellatrixs": {"_count": 2, "feet": {"_count": 1}, "wand": {"_count": 1}}, "Greyback": {"_count": 1, "and": {"_count": 1}}, "Shell": {"_count": 2, "Cottage": {"_count": 2}}, "Travers": {"_count": 3, "he": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}}, "Bogrod": {"_count": 1, "who": {"_count": 1}}, "em": {"_count": 1, "": {"_count": 1}}, "moments": {"_count": 1, "when": {"_count": 1}}, "Lunas": {"_count": 1, "house": {"_count": 1}}, "Xenophiliuss": {"_count": 1, "house": {"_count": 1}}, "Thicknesse": {"_count": 1, "who": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}, "Nagini": {"_count": 1, "fifty": {"_count": 1}}, "Nurmengard": {"_count": 1, "": {"_count": 1}}, "Flitwicks": {"_count": 1, "hands": {"_count": 1}}, "Molly": {"_count": 1, "Weasley": {"_count": 1}}}, "walls": {"_count": 197, "": {"_count": 36, ".": {"_count": 35}, "?": {"_count": 1}}, "and": {"_count": 35, "floor": {"_count": 4}, "the": {"_count": 5}, "ceiling": {"_count": 6}, "no": {"_count": 1}, "there": {"_count": 1}, "tables": {"_count": 1}, "water": {"_count": 1}, "in": {"_count": 2}, "sloping": {"_count": 1}, "a": {"_count": 1}, "stepped": {"_count": 1}, "grimy": {"_count": 1}, "as": {"_count": 1}, "torches": {"_count": 1}, "grounds": {"_count": 1}, "heard": {"_count": 1}, "their": {"_count": 1}, "gave": {"_count": 1}, "barely": {"_count": 1}, "glistened": {"_count": 1}, "all": {"_count": 1}, "pelted": {"_count": 1}}, "of": {"_count": 13, "the": {"_count": 8}, "number": {"_count": 1}, "Hogwarts": {"_count": 3}, "this": {"_count": 1}}, "bundles": {"_count": 1, "of": {"_count": 1}}, "were": {"_count": 18, "lit": {"_count": 1}, "lined": {"_count": 2}, "all": {"_count": 4}, "covered": {"_count": 1}, "now": {"_count": 1}, "crammed": {"_count": 1}, "talking": {"_count": 1}, "bare": {"_count": 1}, "made": {"_count": 1}, "of": {"_count": 1}, "completely": {"_count": 1}, "mossy": {"_count": 1}, "barely": {"_count": 1}, "empty": {"_count": 1}}, "just": {"_count": 1, "pretending": {"_count": 1}}, "keeping": {"_count": 1, "their": {"_count": 1}}, "as": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "plants": {"_count": 1, "Harry": {"_count": 1}}, "even": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "assortment": {"_count": 1}}, "upended": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "Harry": {"_count": 2, "saw": {"_count": 1}, "could": {"_count": 1}}, "outside": {"_count": 1, "seemed": {"_count": 1}}, "looked": {"_count": 1, "monstrous": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "leaving": {"_count": 2, "Neville": {"_count": 1}, "the": {"_count": 1}}, "another": {"_count": 1, "wave": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "mouse": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "had": {"_count": 4, "turned": {"_count": 1}, "been": {"_count": 2}, "begun": {"_count": 1}}, "surrounding": {"_count": 1, "the": {"_count": 1}}, "each": {"_count": 2, "with": {"_count": 1}, "of": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "but": {"_count": 3, "it": {"_count": 1}, "he": {"_count": 2}}, "all": {"_count": 1, "over": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 1, "decorations": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "began": {"_count": 3, "to": {"_count": 3}}, "on": {"_count": 3, "one": {"_count": 1}, "each": {"_count": 1}, "top": {"_count": 1}}, "doors": {"_count": 1, "and": {"_count": 1}}, "casting": {"_count": 1, "a": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "or": {"_count": 1}}, "with": {"_count": 4, "everything": {"_count": 1}, "ink": {"_count": 1}, "so": {"_count": 1}, "his": {"_count": 1}}, "beside": {"_count": 1, "their": {"_count": 1}}, "was": {"_count": 2, "a": {"_count": 1}, "awake": {"_count": 1}}, "though": {"_count": 1, "snoring": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "torches": {"_count": 1, "and": {"_count": 1}}, "ten": {"_count": 1, "more": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "interspersed": {"_count": 1, "with": {"_count": 1}}, "stopped": {"_count": 1, "moving": {"_count": 1}}, "jerked": {"_count": 1, "awake": {"_count": 1}}, "where": {"_count": 1, "something": {"_count": 1}}, "wiped": {"_count": 1, "themselves": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "made": {"_count": 1, "similar": {"_count": 1}}, "seemed": {"_count": 1, "less": {"_count": 1}}, "built": {"_count": 2, "of": {"_count": 2}}, "pulling": {"_count": 1, "something": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "followed": {"_count": 1, "Snape": {"_count": 1}}, "silverygray": {"_count": 1, "silk": {"_count": 1}}, "which": {"_count": 3, "was": {"_count": 1}, "were": {"_count": 2}}, "bore": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "stove": {"_count": 1}, "headmasters": {"_count": 1}}, "for": {"_count": 1, "he": {"_count": 1}}, "upstairs": {"_count": 1, "Ron": {"_count": 1}}, "embedded": {"_count": 1, "with": {"_count": 1}}, "grossly": {"_count": 1, "magnified": {"_count": 1}}, "regular": {"_count": 1, "patrols": {"_count": 1}}, "Dumbledores": {"_count": 1, "Army": {"_count": 1}}, "scanning": {"_count": 1, "the": {"_count": 1}}, "themselves": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "wont": {"_count": 1}}, "trembled": {"_count": 1, "again": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "drew": {"_count": 1, "breath": {"_count": 1}}}, "Little": {"_count": 52, "tyke": {"_count": 2, "chortled": {"_count": 1}, "wants": {"_count": 1}}, "Whinging": {"_count": 17, "Surrey": {"_count": 3}, "he": {"_count": 1}, "for": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 6}, "seemed": {"_count": 1}, "and": {"_count": 2}, "close": {"_count": 1}, "other": {"_count": 1}}, "did": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "Ginnys": {"_count": 1, "been": {"_count": 1}}, "patches": {"_count": 1, "of": {"_count": 1}}, "Hangleton": {"_count": 11, "still": {"_count": 1}, "had": {"_count": 1}, "doubted": {"_count": 1}, "churchyard": {"_count": 1}, "nestled": {"_count": 1}, "must": {"_count": 1}, "enjoyed": {"_count": 1}, "without": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}}, "Hangletons": {"_count": 1, "all": {"_count": 1}}, "squirts": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "Ronnie": {"_count": 1, "a": {"_count": 1}}, "Norton": {"_count": 2, "Black": {"_count": 1}, "Church": {"_count": 1}}, "stars": {"_count": 1, "erupted": {"_count": 1}}, "fires": {"_count": 1, "burnin": {"_count": 1}}, "Miss": {"_count": 4, "Perfect": {"_count": 3}, "QuestionAll": {"_count": 1}}, "though": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "woman": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "git": {"_count": 1, "whispered": {"_count": 1}}, "old": {"_count": 1, "witch": {"_count": 1}}}, "tyke": {"_count": 3, "chortled": {"_count": 1, "Mr": {"_count": 1}}, "wants": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "chortled": {"_count": 9, "Mr": {"_count": 1, "Dursley": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Ron": {"_count": 1, "once": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "Dirk": {"_count": 1, "": {"_count": 1}}}, "left": {"_count": 917, "the": {"_count": 192, "house": {"_count": 3}, "building": {"_count": 1}, "shop": {"_count": 2}, "chamber": {"_count": 2}, "castle": {"_count": 8}, "grounds": {"_count": 2}, "hall": {"_count": 3}, "book": {"_count": 1}, "dungeons": {"_count": 1}, "library": {"_count": 3}, "table": {"_count": 4}, "locker": {"_count": 1}, "Invisibility": {"_count": 2}, "room": {"_count": 32}, "office": {"_count": 6}, "field": {"_count": 2}, "drinker": {"_count": 1}, "school": {"_count": 7}, "infirmary": {"_count": 1}, "hospital": {"_count": 5}, "Great": {"_count": 10}, "bathroom": {"_count": 3}, "kitchen": {"_count": 5}, "parlor": {"_count": 1}, "Dursleys": {"_count": 1}, "staffroom": {"_count": 1}, "stadium": {"_count": 2}, "classroom": {"_count": 4}, "History": {"_count": 1}, "ward": {"_count": 1}, "dormitory": {"_count": 4}, "ground": {"_count": 5}, "box": {"_count": 2}, "clearing": {"_count": 1}, "campsite": {"_count": 1}, "train": {"_count": 3}, "Gryffindor": {"_count": 3}, "tent": {"_count": 5}, "kitchens": {"_count": 1}, "cousins": {"_count": 1}, "cabin": {"_count": 1}, "map": {"_count": 1}, "Top": {"_count": 1}, "cave": {"_count": 1}, "greenhouse": {"_count": 1}, "Owlery": {"_count": 2}, "owls": {"_count": 1}, "Hogwarts": {"_count": 1}, "door": {"_count": 1}, "forest": {"_count": 2}, "compartment": {"_count": 2}, "lift": {"_count": 3}, "blackboard": {"_count": 1}, "changing": {"_count": 2}, "pantry": {"_count": 1}, "Malfoys": {"_count": 1}, "pitch": {"_count": 2}, "floor": {"_count": 2}, "Ministry": {"_count": 1}, "staff": {"_count": 1}, "sunlit": {"_count": 1}, "dungeon": {"_count": 3}, "trial": {"_count": 1}, "sweetshop": {"_count": 1}, "tale": {"_count": 1}, "orphanage": {"_count": 1}, "Room": {"_count": 1}, "world": {"_count": 1}, "thronelike": {"_count": 1}, "scullery": {"_count": 1}, "ghouls": {"_count": 1}, "wedding": {"_count": 1}, "Burrow": {"_count": 1}, "real": {"_count": 1}, "conversation": {"_count": 1}, "sword": {"_count": 1}, "sign": {"_count": 1}, "Resurrection": {"_count": 1}, "three": {"_count": 1}, "responsibility": {"_count": 1}}, "on": {"_count": 8, "the": {"_count": 7}, "a": {"_count": 1}}, "now": {"_count": 6, "": {"_count": 3}, "only": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}}, "knee": {"_count": 2, "that": {"_count": 1}, "I": {"_count": 1}}, "behind": {"_count": 14, "with": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 7}, "\u2018I": {"_count": 1}, "muttered": {"_count": 1}, "whenever": {"_count": 1}, "And": {"_count": 1}, "at": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "to": {"_count": 34, "hide": {"_count": 1}, "find": {"_count": 1}, "get": {"_count": 4}, "be": {"_count": 2}, "look": {"_count": 1}, "their": {"_count": 1}, "organize": {"_count": 1}, "sit": {"_count": 1}, "go": {"_count": 1}, "do": {"_count": 1}, "right": {"_count": 2}, "tell": {"_count": 1}, "see": {"_count": 1}, "us": {"_count": 2}, "ponder": {"_count": 1}, "enjoy": {"_count": 1}, "them": {"_count": 3}, "follow": {"_count": 1}, "Hogwarts": {"_count": 1}, "set": {"_count": 1}, "deal": {"_count": 1}, "feed": {"_count": 1}, "observe": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}, "bury": {"_count": 1}}, "fer": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 41, "got": {"_count": 1}, "the": {"_count": 4}, "handed": {"_count": 1}, "Harry": {"_count": 3}, "we": {"_count": 1}, "Ron": {"_count": 2}, "pause": {"_count": 1}, "so": {"_count": 1}, "right": {"_count": 14}, "he": {"_count": 2}, "Cedric": {"_count": 1}, "saw": {"_count": 2}, "Professor": {"_count": 1}, "looked": {"_count": 1}, "ran": {"_count": 1}, "hurried": {"_count": 1}, "knew": {"_count": 1}, "fell": {"_count": 1}, "swearing": {"_count": 1}, "I": {"_count": 1}}, "was": {"_count": 7, "Hogwarts": {"_count": 1}, "commentating": {"_count": 1}, "somewhat": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "Lupin": {"_count": 1}}, "in": {"_count": 23, "him": {"_count": 3}, "their": {"_count": 1}, "the": {"_count": 4}, "her": {"_count": 1}, "doubt": {"_count": 1}, "a": {"_count": 2}, "Britain": {"_count": 1}, "no": {"_count": 1}, "me": {"_count": 1}, "it": {"_count": 1}, "squalor": {"_count": 1}, "Snapes": {"_count": 1}, "its": {"_count": 1}, "which": {"_count": 1}, "view": {"_count": 1}, "that": {"_count": 2}}, "ter": {"_count": 1, "do": {"_count": 1}}, "alone": {"_count": 8, "while": {"_count": 2}, "": {"_count": 3}, "with": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}}, "right": {"_count": 3, "right": {"_count": 1}, "and": {"_count": 2}}, "middle": {"_count": 1, "fork": {"_count": 1}}, "but": {"_count": 4, "it": {"_count": 1}, "this": {"_count": 1}, "I": {"_count": 1}, "not": {"_count": 1}}, "oh": {"_count": 1, "yeah": {"_count": 1}}, "Eeylops": {"_count": 1, "Owl": {"_count": 1}}, "without": {"_count": 4, "another": {"_count": 2}, "a": {"_count": 1}, "explanation": {"_count": 1}}, "at": {"_count": 8, "eleven": {"_count": 1}, "Hogwarts": {"_count": 2}, "the": {"_count": 3}, "top": {"_count": 1}, "once": {"_count": 1}}, "": {"_count": 72, ".": {"_count": 67}, "!": {"_count": 4}, "?": {"_count": 1}}, "Bill": {"_count": 1, "was": {"_count": 1}}, "taking": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "ear": {"_count": 9, "and": {"_count": 5}, "": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "Four": {"_count": 1}}, "clapped": {"_count": 1, "this": {"_count": 1}}, "exploded": {"_count": 1, "with": {"_count": 1}}, "singing": {"_count": 1, "along": {"_count": 1}}, "his": {"_count": 25, "dormitory": {"_count": 1}, "television": {"_count": 1}, "body": {"_count": 3}, "mouth": {"_count": 1}, "voice": {"_count": 1}, "chest": {"_count": 1}, "only": {"_count": 1}, "seat": {"_count": 1}, "vampire": {"_count": 1}, "office": {"_count": 1}, "dress": {"_count": 1}, "perch": {"_count": 1}, "shop": {"_count": 1}, "knee": {"_count": 1}, "sentence": {"_count": 1}, "right": {"_count": 1}, "lips": {"_count": 1}, "Invisibility": {"_count": 1}, "old": {"_count": 1}, "wife": {"_count": 1}, "glasses": {"_count": 1}, "spectacles": {"_count": 1}, "pub": {"_count": 1}}, "walking": {"_count": 1, "numbly": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 1, "huge": {"_count": 1}}, "before": {"_count": 3, "Snape": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "until": {"_count": 4, "yer": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "curfew": {"_count": 1}}, "Hagrid": {"_count": 2, "looking": {"_count": 1}, "and": {"_count": 1}}, "one": {"_count": 4, "parcel": {"_count": 1}, "by": {"_count": 1}, "of": {"_count": 1}, "while": {"_count": 1}}, "this": {"_count": 6, "in": {"_count": 1}, "on": {"_count": 1}, "school": {"_count": 2}, "place": {"_count": 2}}, "he": {"_count": 7, "was": {"_count": 2}, "shot": {"_count": 1}, "ducked": {"_count": 1}, "burst": {"_count": 1}, "said": {"_count": 1}, "kept": {"_count": 1}}, "of": {"_count": 17, "them": {"_count": 3}, "FinchFletchley": {"_count": 1}, "the": {"_count": 4}, "Pettigrew": {"_count": 1}, "Harry": {"_count": 2}, "his": {"_count": 1}, "that": {"_count": 1}, "Andromedas": {"_count": 1}, "her": {"_count": 1}, "being": {"_count": 1}, "Siriuss": {"_count": 1}}, "path": {"_count": 2, "while": {"_count": 1}, "and": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "stretching": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 17, "there": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}, "had": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}, "open": {"_count": 1}, "as": {"_count": 1}, "here": {"_count": 1}, "mere": {"_count": 1}, "whitened": {"_count": 1}, "and": {"_count": 1}}, "side": {"_count": 5, "Second": {"_count": 1}, "of": {"_count": 3}, "and": {"_count": 1}}, "Quirrell": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 3}}, "Hogwarts": {"_count": 14, "": {"_count": 5}, "dragged": {"_count": 1}, "last": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "after": {"_count": 1}, "for": {"_count": 1}, "we": {"_count": 1}, "in": {"_count": 1}, "before": {"_count": 1}}, "him": {"_count": 23, "": {"_count": 4}, "there": {"_count": 1}, "was": {"_count": 1}, "when": {"_count": 1}, "alone": {"_count": 2}, "in": {"_count": 2}, "to": {"_count": 1}, "at": {"_count": 1}, "with": {"_count": 3}, "forever": {"_count": 1}, "upon": {"_count": 1}, "silent": {"_count": 1}, "everything": {"_count": 1}, "anything": {"_count": 1}, "as": {"_count": 1}, "could": {"_count": 1}}, "Borgin": {"_count": 1, "and": {"_count": 1}}, "Percy": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 15, "diary": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 3}, "big": {"_count": 1}, "office": {"_count": 1}, "half": {"_count": 1}, "tower": {"_count": 1}, "while": {"_count": 1}, "never": {"_count": 1}, "stool": {"_count": 1}, "sitting": {"_count": 1}, "floating": {"_count": 1}}, "said": {"_count": 9, "Harry": {"_count": 1}, "Mundungus": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 3}, "Parvati": {"_count": 1}, "triumphantly": {"_count": 1}, "Griphook": {"_count": 1}}, "my": {"_count": 2, "copy": {"_count": 1}, "mum": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "Harry": {"_count": 13, "and": {"_count": 1}, "feeling": {"_count": 1}, "put": {"_count": 1}, "started": {"_count": 1}, "said": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 1}, "free": {"_count": 1}, "Ron": {"_count": 2}, "": {"_count": 1}, "in": {"_count": 1}, "an": {"_count": 1}}, "Ron": {"_count": 4, "told": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "murmured": {"_count": 1}}, "both": {"_count": 2, "walls": {"_count": 1}, "looked": {"_count": 1}}, "when": {"_count": 1, "sitting": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "another": {"_count": 2, "message": {"_count": 1}, "door": {"_count": 1}}, "outside": {"_count": 1, "their": {"_count": 1}}, "Harrys": {"_count": 2, "face": {"_count": 1}, "bedside": {"_count": 1}}, "you": {"_count": 16, "to": {"_count": 1}, "completely": {"_count": 1}, "wait": {"_count": 1}, "know": {"_count": 1}, "behind": {"_count": 1}, "on": {"_count": 1}, "everything": {"_count": 1}, "number": {"_count": 1}, "anything": {"_count": 1}, "an": {"_count": 2}, "that": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "very": {"_count": 1}}, "Privet": {"_count": 2, "Drive": {"_count": 2}}, "above": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 13, "the": {"_count": 6}, "lunch": {"_count": 1}, "dream": {"_count": 1}, "anything": {"_count": 1}, "what": {"_count": 1}, "work": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}}, "hand": {"_count": 18, "then": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 7}, "sleeve": {"_count": 1}, "his": {"_count": 2}, "rather": {"_count": 1}, "against": {"_count": 1}, "was": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}}, "Divination": {"_count": 1, "they": {"_count": 1}}, "hippogriffs": {"_count": 1, "fer": {"_count": 1}}, "nostril": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "shutting": {"_count": 1, "the": {"_count": 1}}, "any": {"_count": 1, "record": {"_count": 1}}, "with": {"_count": 6, "nothing": {"_count": 2}, "them": {"_count": 1}, "a": {"_count": 1}, "no": {"_count": 1}, "you": {"_count": 1}}, "corner": {"_count": 1, "showed": {"_count": 1}}, "Honeydukes": {"_count": 1, "for": {"_count": 1}}, "school": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "so": {"_count": 1}}, "Black": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 10, "set": {"_count": 1}, "letter": {"_count": 1}, "greenandsilver": {"_count": 1}, "tiny": {"_count": 1}, "house": {"_count": 1}, "gap": {"_count": 1}, "fake": {"_count": 1}, "sizable": {"_count": 1}, "speck": {"_count": 1}, "great": {"_count": 1}}, "Gryffindor": {"_count": 2, "Tower": {"_count": 2}}, "saw": {"_count": 1, "something": {"_count": 1}}, "or": {"_count": 3, "right": {"_count": 1}, "because": {"_count": 1}, "you": {"_count": 1}}, "them": {"_count": 13, "lying": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 2}, "sitting": {"_count": 1}, "last": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "Hermione": {"_count": 1}, "in": {"_count": 1}, "Professor": {"_count": 1}, "behind": {"_count": 1}}, "Zonkos": {"_count": 1, "with": {"_count": 1}}, "information": {"_count": 1, "about": {"_count": 1}}, "eye": {"_count": 2, "and": {"_count": 1}, "had": {"_count": 1}}, "blood": {"_count": 1, "on": {"_count": 1}}, "arm": {"_count": 8, "chained": {"_count": 1}, "he": {"_count": 1}, "held": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "where": {"_count": 1}, "bent": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "somebody": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 3, "beds": {"_count": 1}, "seats": {"_count": 1}, "mark": {"_count": 1}}, "your": {"_count": 3, "uncles": {"_count": 1}, "stuff": {"_count": 1}, "wand": {"_count": 1}}, "Rons": {"_count": 1, "room": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "half": {"_count": 2, "of": {"_count": 1}, "an": {"_count": 1}}, "ajar": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 2, "if": {"_count": 1}, "early": {"_count": 1}}, "young": {"_count": 1, "Weatherby": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "Flitwicks": {"_count": 1, "class": {"_count": 1}}, "not": {"_count": 1, "only": {"_count": 1}}, "apparently": {"_count": 1, "their": {"_count": 1}}, "who": {"_count": 1, "havent": {"_count": 1}}, "sock": {"_count": 1, "was": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 1, "people": {"_count": 1}}, "forearm": {"_count": 2, "convulsively": {"_count": 1}, "apparently": {"_count": 1}}, "staring": {"_count": 1, "down": {"_count": 1}}, "all": {"_count": 4, "three": {"_count": 1}, "over": {"_count": 1}, "those": {"_count": 1}, "his": {"_count": 1}}, "Azkaban": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "looking": {"_count": 2, "right": {"_count": 1}, "as": {"_count": 1}}, "Dumbledores": {"_count": 1, "office": {"_count": 1}}, "fork": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "moving": {"_count": 1, "quickly": {"_count": 1}}, "gaps": {"_count": 1, "in": {"_count": 1}}, "me": {"_count": 14, "forever": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 3}, "dad": {"_count": 1}, "for": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 2}, "in": {"_count": 1}, "The": {"_count": 1}}, "upon": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "weak": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 1}, "wild": {"_count": 1}, "Rons": {"_count": 1}}, "sleeve": {"_count": 3, "of": {"_count": 1}, "could": {"_count": 1}, "Harry": {"_count": 1}}, "outdoors": {"_count": 1, "was": {"_count": 1}}, "hard": {"_count": 1, "left": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 2, "its": {"_count": 1}, "they": {"_count": 1}}, "over": {"_count": 1, "which": {"_count": 1}}, "marched": {"_count": 1, "along": {"_count": 1}}, "stood": {"_count": 1, "ajar": {"_count": 1}}, "where": {"_count": 1, "there": {"_count": 1}}, "she": {"_count": 1, "wore": {"_count": 1}}, "cut": {"_count": 1, "across": {"_count": 1}}, "can": {"_count": 1, "he": {"_count": 1}}, "us": {"_count": 7, "quite": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "secret": {"_count": 1}, "a": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "Hermione": {"_count": 3, "sat": {"_count": 1}, "dabbing": {"_count": 1}, "had": {"_count": 1}}, "standing": {"_count": 1, "foolishly": {"_count": 1}}, "flew": {"_count": 1, "open": {"_count": 1}}, "toward": {"_count": 2, "Parvati": {"_count": 1}, "the": {"_count": 1}}, "Umbridges": {"_count": 1, "office": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "partnerless": {"_count": 1, "": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "there": {"_count": 1}}, "that": {"_count": 4, "day": {"_count": 1}, "my": {"_count": 1}, "mark": {"_count": 1}, "smoothly": {"_count": 1}}, "no": {"_count": 2, "address": {"_count": 1}, "depth": {"_count": 1}}, "closing": {"_count": 2, "the": {"_count": 2}}, "Good": {"_count": 1, "said": {"_count": 1}}, "Molly": {"_count": 1, "had": {"_count": 1}}, "could": {"_count": 1, "he": {"_count": 1}}, "out": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}}, "down": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "anything": {"_count": 1, "behind": {"_count": 1}}, "there": {"_count": 1, "for": {"_count": 1}}, "well": {"_count": 2, "alone": {"_count": 2}}, "streaked": {"_count": 1, "down": {"_count": 1}}, "instructions": {"_count": 1, "on": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "headquarters": {"_count": 1, "Ive": {"_count": 1}}, "Crabbe": {"_count": 1, "Rabastan": {"_count": 1}}, "fighting": {"_count": 1, "the": {"_count": 1}}, "craters": {"_count": 1, "in": {"_count": 1}}, "The": {"_count": 1, "stone": {"_count": 1}}, "seam": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "obviously": {"_count": 1, "we": {"_count": 1}}, "voluntarily": {"_count": 1, "or": {"_count": 1}}, "Hogsmeade": {"_count": 1, "Station": {"_count": 1}}, "abandoned": {"_count": 1, "on": {"_count": 1}}, "although": {"_count": 1, "several": {"_count": 1}}, "off": {"_count": 2, "her": {"_count": 1}, "": {"_count": 1}}, "Cormac": {"_count": 1, "she": {"_count": 1}}, "Snape": {"_count": 1, "leading": {"_count": 1}}, "buttock": {"_count": 2, "has": {"_count": 1}, "I": {"_count": 1}}, "office": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "lesson": {"_count": 1}}, "everyone": {"_count": 1, "": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "leg": {"_count": 1, "still": {"_count": 1}}, "hed": {"_count": 1, "come": {"_count": 1}}, "arms": {"_count": 1, "in": {"_count": 1}}, "Dont": {"_count": 1, "talk": {"_count": 1}}, "we": {"_count": 1, "havent": {"_count": 1}}, "nearly": {"_count": 1, "six": {"_count": 1}}, "some": {"_count": 1, "money": {"_count": 1}}, "This": {"_count": 1, "is": {"_count": 1}}, "messages": {"_count": 1, "": {"_count": 1}}, "nothing": {"_count": 1, "he": {"_count": 1}}, "really": {"_count": 1, "early": {"_count": 1}}, "between": {"_count": 2, "his": {"_count": 1}, "crate": {"_count": 1}}, "Gringotts": {"_count": 1, "he": {"_count": 1}}, "enormous": {"_count": 1, "footprints": {"_count": 1}}, "were": {"_count": 1, "slain": {"_count": 1}}, "em": {"_count": 1, "well": {"_count": 1}}, "broke": {"_count": 1, "open": {"_count": 1}}, "number": {"_count": 1, "four": {"_count": 1}}, "perhaps": {"_count": 1, "it": {"_count": 1}}, "unwanted": {"_count": 1, "stuffed": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}}, "house": {"_count": 379, "": {"_count": 93, ".": {"_count": 66}, "?": {"_count": 16}, "!": {"_count": 11}}, "was": {"_count": 11, "almost": {"_count": 1}, "in": {"_count": 1}, "destroyed": {"_count": 1}, "broken": {"_count": 1}, "creepy": {"_count": 1}, "barely": {"_count": 1}, "handed": {"_count": 1}, "carrying": {"_count": 1}, "now": {"_count": 1}, "on": {"_count": 1}, "it": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "smelled": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 8, "ruins": {"_count": 1}, "Privet": {"_count": 1}, "it": {"_count": 1}, "living": {"_count": 1}, "Little": {"_count": 1}, "the": {"_count": 2}, "silence": {"_count": 1}}, "said": {"_count": 7, "Harry": {"_count": 3}, "Sirius": {"_count": 2}, "the": {"_count": 1}, "Ron": {"_count": 1}}, "screamed": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 4, "starting": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "we": {"_count": 1}}, "every": {"_count": 2, "single": {"_count": 1}, "other": {"_count": 1}}, "wandering": {"_count": 1, "around": {"_count": 1}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 2, "four": {"_count": 1}, "inflated": {"_count": 1}}, "rolled": {"_count": 1, "up": {"_count": 1}}, "an": {"_count": 1, "an": {"_count": 1}}, "even": {"_count": 1, "but": {"_count": 1}}, "myself": {"_count": 1, "on": {"_count": 1}}, "boy": {"_count": 2, "": {"_count": 1}, "What": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 4}, "Christmas": {"_count": 1}, "him": {"_count": 1}}, "this": {"_count": 1, "summer": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "his": {"_count": 1, "trousers": {"_count": 1}}, "and": {"_count": 26, "you": {"_count": 1}, "one": {"_count": 1}, "Harry": {"_count": 1}, "back": {"_count": 1}, "it": {"_count": 2}, "pulled": {"_count": 2}, "grounds": {"_count": 1}, "head": {"_count": 1}, "killed": {"_count": 1}, "I": {"_count": 2}, "knowing": {"_count": 1}, "entered": {"_count": 1}, "to": {"_count": 1}, "knew": {"_count": 1}, "stow": {"_count": 1}, "he": {"_count": 2}, "through": {"_count": 1}, "held": {"_count": 1}, "pretending": {"_count": 1}, "yet": {"_count": 1}, "come": {"_count": 1}, "trust": {"_count": 1}}, "shouting": {"_count": 1, "about": {"_count": 1}}, "hed": {"_count": 2, "have": {"_count": 2}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "burst": {"_count": 1, "with": {"_count": 1}}, "Ron": {"_count": 2, "whipped": {"_count": 1}, "and": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "were": {"_count": 1, "a": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "sad": {"_count": 1, "and": {"_count": 1}}, "behind": {"_count": 3, "them": {"_count": 2}, "Ron": {"_count": 1}}, "tail": {"_count": 1, "between": {"_count": 1}}, "who": {"_count": 2, "didnt": {"_count": 1}, "else": {"_count": 1}}, "with": {"_count": 10, "a": {"_count": 2}, "him": {"_count": 1}, "papers": {"_count": 1}, "Sirius": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}, "your": {"_count": 1}, "many": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "after": {"_count": 4, "they": {"_count": 1}, "one": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "across": {"_count": 1}}, "Lupin": {"_count": 1, "looked": {"_count": 1}}, "has": {"_count": 2, "been": {"_count": 2}}, "straight": {"_count": 1, "away": {"_count": 1}}, "destroyed": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "heard": {"_count": 1}}, "while": {"_count": 2, "we": {"_count": 1}, "your": {"_count": 1}}, "for": {"_count": 8, "a": {"_count": 2}, "each": {"_count": 1}, "years": {"_count": 1}, "six": {"_count": 1}, "ages": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "he": {"_count": 4, "merely": {"_count": 1}, "made": {"_count": 1}, "must": {"_count": 1}, "told": {"_count": 1}}, "again": {"_count": 5, "and": {"_count": 1}, "whatever": {"_count": 2}, "": {"_count": 1}, "thats": {"_count": 1}}, "until": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 3, "think": {"_count": 1}, "expect": {"_count": 1}, "might": {"_count": 1}}, "as": {"_count": 5, "dry": {"_count": 1}, "possible": {"_count": 1}, "Sirius": {"_count": 1}, "though": {"_count": 1}, "an": {"_count": 1}}, "of": {"_count": 8, "an": {"_count": 1}, "a": {"_count": 1}, "my": {"_count": 3}, "Black": {"_count": 1}, "anything": {"_count": 1}, "all": {"_count": 1}}, "to": {"_count": 8, "the": {"_count": 2}, "use": {"_count": 1}, "go": {"_count": 1}, "tell": {"_count": 1}, "Muggle": {"_count": 1}, "garden": {"_count": 1}, "check": {"_count": 1}}, "where": {"_count": 7, "Ron": {"_count": 1}, "you": {"_count": 1}, "half": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}}, "There": {"_count": 1, "were": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "each": {"_count": 1, "morning": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "but": {"_count": 3, "was": {"_count": 1}, "whats": {"_count": 1}, "as": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "that": {"_count": 6, "Mr": {"_count": 1}, "was": {"_count": 1}, "looked": {"_count": 1}, "very": {"_count": 1}, "they": {"_count": 1}, "ought": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "soaring": {"_count": 1, "toward": {"_count": 1}}, "elf": {"_count": 5, "they": {"_count": 1}, "sir": {"_count": 1}, "scuttled": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 1}}, "elves": {"_count": 3, "": {"_count": 1}, "came": {"_count": 1}, "and": {"_count": 1}}, "appears": {"_count": 1, "deserted": {"_count": 1}}, "But": {"_count": 1, "Sirius": {"_count": 1}}, "set": {"_count": 2, "high": {"_count": 1}, "in": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "late": {"_count": 1, "one": {"_count": 1}}, "near": {"_count": 1, "midnight": {"_count": 1}}, "Dumbledore": {"_count": 1, "continued": {"_count": 1}}, "youd": {"_count": 1, "gone": {"_count": 1}}, "why": {"_count": 1, "didnt": {"_count": 1}}, "or": {"_count": 3, "not": {"_count": 1}, "else": {"_count": 1}, "perhaps": {"_count": 1}}, "creaked": {"_count": 1, "around": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "its": {"_count": 1, "been": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "oh": {"_count": 1, "my": {"_count": 1}}, "what": {"_count": 1, "would": {"_count": 1}}, "now": {"_count": 1, "scum": {"_count": 1}}, "see": {"_count": 1, "how": {"_count": 1}}, "anywhere": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "is": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "seemed": {"_count": 2, "warmer": {"_count": 1}, "to": {"_count": 1}}, "without": {"_count": 1, "company": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "stank": {"_count": 1, "like": {"_count": 1}}, "perhaps": {"_count": 1, "pulling": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "full": {"_count": 1, "again": {"_count": 1}}, "calling": {"_count": 1, "Merry": {"_count": 1}}, "oozing": {"_count": 1, "under": {"_count": 1}}, "you": {"_count": 2, "see": {"_count": 1}, "have": {"_count": 1}}, "notice": {"_count": 1, "boards": {"_count": 1}}, "letters": {"_count": 1, "from": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "making": {"_count": 1, "sure": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "is": {"_count": 1, "most": {"_count": 1}}, "\u2018home": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "owners": {"_count": 1}, "Ministry": {"_count": 1}}, "pulling": {"_count": 1, "on": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "then": {"_count": 1, "and": {"_count": 1}}, "stood": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "a": {"_count": 1, "Mugglehater": {"_count": 1}}, "pulled": {"_count": 1, "by": {"_count": 1}}, "grew": {"_count": 1, "out": {"_count": 1}}, "my": {"_count": 1, "godfather": {"_count": 1}}, "Harry": {"_count": 3, "being": {"_count": 1}, "knew": {"_count": 1}, "wrinkled": {"_count": 1}}, "Kingsleys": {"_count": 1, "place": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "youre": {"_count": 1, "in": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "by": {"_count": 1, "Fred": {"_count": 1}}, "though": {"_count": 2, "I": {"_count": 1}, "said": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 1, "before": {"_count": 1}}, "all": {"_count": 2, "morning": {"_count": 1}, "of": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "invisible": {"_count": 1, "to": {"_count": 1}}, "immersed": {"_count": 1, "in": {"_count": 1}}, "Alone": {"_count": 1, "": {"_count": 1}}, "protection": {"_count": 1, "from": {"_count": 1}}, "rose": {"_count": 1, "vertically": {"_count": 1}}, "rang": {"_count": 1, "in": {"_count": 1}}, "calls": {"_count": 1, "in": {"_count": 1}}, "Bella": {"_count": 1, "you": {"_count": 1}}, "Fleur": {"_count": 1, "hurrying": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "wearing": {"_count": 1, "that": {"_count": 1}}, "demolished": {"_count": 1, "": {"_count": 1}}}, "got": {"_count": 2008, "into": {"_count": 41, "his": {"_count": 3}, "bed": {"_count": 13}, "line": {"_count": 1}, "a": {"_count": 5}, "the": {"_count": 9}, "you": {"_count": 1}, "class": {"_count": 1}, "Hogsmeade": {"_count": 1}, "their": {"_count": 1}, "them": {"_count": 1}, "that": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 1}, "our": {"_count": 1}, "Snape": {"_count": 1}}, "so": {"_count": 10, "upset": {"_count": 1}, "impatient": {"_count": 1}, "full": {"_count": 1}, "tired": {"_count": 1}, "many": {"_count": 1}, "much": {"_count": 2}, "good": {"_count": 1}, "close": {"_count": 1}, "used": {"_count": 1}}, "out": {"_count": 28, "that": {"_count": 1}, "a": {"_count": 1}, "looked": {"_count": 1}, "and": {"_count": 2}, "of": {"_count": 15}, "too": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}, "at": {"_count": 2}, "The": {"_count": 1}, "his": {"_count": 1}}, "this": {"_count": 14, "son": {"_count": 1}, "out": {"_count": 1}, "afternoon": {"_count": 2}, "diary": {"_count": 1}, "map": {"_count": 1}, "far": {"_count": 3}, "knack": {"_count": 1}, "one": {"_count": 3}, "wrong": {"_count": 1}}, "him": {"_count": 25, "sir": {"_count": 1}, "out": {"_count": 2}, "": {"_count": 5}, "Minister": {"_count": 1}, "outta": {"_count": 1}, "at": {"_count": 1}, "till": {"_count": 1}, "Im": {"_count": 1}, "and": {"_count": 3}, "said": {"_count": 2}, "too": {"_count": 1}, "back": {"_count": 1}, "its": {"_count": 1}, "FatheA": {"_count": 1}, "as": {"_count": 1}, "all": {"_count": 1}, "cornered": {"_count": 1}}, "slowly": {"_count": 4, "out": {"_count": 1}, "to": {"_count": 3}}, "to": {"_count": 402, "visit": {"_count": 1}, "try": {"_count": 3}, "his": {"_count": 62}, "go": {"_count": 37}, "be": {"_count": 33}, "get": {"_count": 21}, "weave": {"_count": 1}, "eat": {"_count": 1}, "keep": {"_count": 8}, "make": {"_count": 7}, "stand": {"_count": 1}, "say": {"_count": 12}, "its": {"_count": 2}, "wait": {"_count": 3}, "ask": {"_count": 3}, "talk": {"_count": 1}, "do": {"_count": 28}, "catch": {"_count": 1}, "close": {"_count": 2}, "play": {"_count": 2}, "take": {"_count": 6}, "worry": {"_count": 2}, "give": {"_count": 4}, "know": {"_count": 6}, "look": {"_count": 2}, "win": {"_count": 1}, "": {"_count": 14}, "and": {"_count": 1}, "pick": {"_count": 1}, "find": {"_count": 9}, "stay": {"_count": 6}, "act": {"_count": 2}, "tell": {"_count": 10}, "help": {"_count": 4}, "hold": {"_count": 1}, "their": {"_count": 5}, "train": {"_count": 1}, "scrub": {"_count": 1}, "listen": {"_count": 2}, "explain": {"_count": 1}, "hear": {"_count": 1}, "fly": {"_count": 1}, "move": {"_count": 2}, "rescue": {"_count": 1}, "come": {"_count": 8}, "work": {"_count": 2}, "buy": {"_count": 1}, "stop": {"_count": 3}, "have": {"_count": 3}, "appreciate": {"_count": 1}, "teach": {"_count": 1}, "her": {"_count": 10}, "compete": {"_count": 2}, "use": {"_count": 1}, "run": {"_count": 2}, "hang": {"_count": 1}, "attack": {"_count": 1}, "watch": {"_count": 3}, "grit": {"_count": 1}, "register": {"_count": 1}, "Hogwarts": {"_count": 1}, "trust": {"_count": 2}, "your": {"_count": 1}, "hurry": {"_count": 2}, "dash": {"_count": 1}, "understand": {"_count": 2}, "head": {"_count": 1}, "ignore": {"_count": 1}, "write": {"_count": 1}, "me": {"_count": 1}, "practice": {"_count": 1}, "add": {"_count": 1}, "join": {"_count": 1}, "pass": {"_count": 1}, "the": {"_count": 1}, "London": {"_count": 1}, "answer": {"_count": 2}, "think": {"_count": 3}, "galloping": {"_count": 1}, "Divination": {"_count": 1}, "check": {"_count": 1}, "How": {"_count": 1}, "kill": {"_count": 2}, "said": {"_count": 2}, "finish": {"_count": 1}, "interest": {"_count": 1}, "read": {"_count": 1}, "refine": {"_count": 1}, "show": {"_count": 1}, "let": {"_count": 1}, "track": {"_count": 1}, "Rons": {"_count": 1}, "really": {"_count": 1}, "put": {"_count": 2}, "obey": {"_count": 1}, "realize": {"_count": 1}, "see": {"_count": 1}, "\u2018Got": {"_count": 1}, "barricade": {"_count": 1}}, "rude": {"_count": 1, "notes": {"_count": 1}}, "something": {"_count": 13, "": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 4}, "to": {"_count": 4}, "that": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}}, "back": {"_count": 37, "from": {"_count": 5}, "the": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "all": {"_count": 1}, "into": {"_count": 3}, "to": {"_count": 6}, "after": {"_count": 1}, "upstairs": {"_count": 1}, "okay": {"_count": 1}, "inside": {"_count": 1}, "safely": {"_count": 1}, "was": {"_count": 1}, "ages": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "ter": {"_count": 1}, "Hermione": {"_count": 1}, "a": {"_count": 1}, "only": {"_count": 1}, "off": {"_count": 1}}, "hit": {"_count": 3, "a": {"_count": 1}, "by": {"_count": 1}, "said": {"_count": 1}}, "about": {"_count": 11, "an": {"_count": 1}, "five": {"_count": 2}, "six": {"_count": 1}, "fortyfive": {"_count": 1}, "fifteen": {"_count": 1}, "a": {"_count": 2}, "twentysix": {"_count": 1}, "as": {"_count": 2}}, "us": {"_count": 4, "some": {"_count": 1}, "tickets": {"_count": 1}, "such": {"_count": 1}, "cars": {"_count": 1}}, "yer": {"_count": 4, "moms": {"_count": 1}, "letter": {"_count": 1}, "toad": {"_count": 1}, "books": {"_count": 1}}, "lost": {"_count": 6, "on": {"_count": 1}, "how": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 2}, "the": {"_count": 1}}, "it": {"_count": 57, "mind": {"_count": 1}, "wrong": {"_count": 1}, "he": {"_count": 1}, "back": {"_count": 2}, "all": {"_count": 2}, "in": {"_count": 9}, "an": {"_count": 1}, "Fred": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 12}, "anymore": {"_count": 1}, "from": {"_count": 3}, "directly": {"_count": 1}, "Krums": {"_count": 1}, "its": {"_count": 1}, "into": {"_count": 1}, "on": {"_count": 1}, "righ": {"_count": 1}, "now": {"_count": 2}, "for": {"_count": 1}, "under": {"_count": 1}, "yes": {"_count": 1}, "through": {"_count": 1}, "right": {"_count": 2}, "out": {"_count": 2}, "if": {"_count": 1}, "died": {"_count": 1}, "here": {"_count": 1}, "I": {"_count": 1}, "Ive": {"_count": 1}}, "a": {"_count": 236, "letter": {"_count": 7}, "couple": {"_count": 4}, "puncture": {"_count": 1}, "nice": {"_count": 2}, "giant": {"_count": 1}, "second": {"_count": 2}, "lot": {"_count": 7}, "few": {"_count": 5}, "broomstick": {"_count": 1}, "Weasley": {"_count": 1}, "bad": {"_count": 3}, "dragon": {"_count": 1}, "good": {"_count": 4}, "week": {"_count": 1}, "hundred": {"_count": 2}, "firm": {"_count": 1}, "brother": {"_count": 1}, "shock": {"_count": 2}, "Nimbus": {"_count": 1}, "minute": {"_count": 1}, "lightning": {"_count": 1}, "question": {"_count": 2}, "specially": {"_count": 1}, "new": {"_count": 7}, "clean": {"_count": 1}, "faceful": {"_count": 1}, "tail": {"_count": 1}, "diary": {"_count": 1}, "musical": {"_count": 1}, "sword": {"_count": 2}, "clue": {"_count": 11}, "compartment": {"_count": 1}, "girlfriend": {"_count": 1}, "present": {"_count": 1}, "mean": {"_count": 1}, "room": {"_count": 1}, "surprise": {"_count": 1}, "right": {"_count": 2}, "Defense": {"_count": 1}, "crooked": {"_count": 1}, "Seeker": {"_count": 1}, "very": {"_count": 3}, "signed": {"_count": 1}, "Firebolt": {"_count": 1}, "bit": {"_count": 10}, "bet": {"_count": 1}, "Firebolti": {"_count": 1}, "toe": {"_count": 1}, "house": {"_count": 2}, "godfather": {"_count": 1}, "useful": {"_count": 1}, "report": {"_count": 2}, "heavy": {"_count": 1}, "magical": {"_count": 1}, "big": {"_count": 1}, "space": {"_count": 1}, "squeaky": {"_count": 1}, "quill": {"_count": 2}, "horrible": {"_count": 1}, "father": {"_count": 1}, "promotion": {"_count": 1}, "higher": {"_count": 1}, "single": {"_count": 1}, "sick": {"_count": 1}, "hope": {"_count": 2}, "plan": {"_count": 3}, "scratch": {"_count": 1}, "long": {"_count": 2}, "point": {"_count": 5}, "sense": {"_count": 1}, "blast": {"_count": 1}, "model": {"_count": 1}, "funny": {"_count": 2}, "problem": {"_count": 6}, "meeting": {"_count": 2}, "pretty": {"_count": 1}, "chance": {"_count": 4}, "newspaper": {"_count": 1}, "prize": {"_count": 1}, "year": {"_count": 1}, "body": {"_count": 2}, "feeling": {"_count": 4}, "general": {"_count": 1}, "job": {"_count": 5}, "scar": {"_count": 1}, "shrewd": {"_count": 1}, "busy": {"_count": 1}, "bottle": {"_count": 1}, "place": {"_count": 2}, "window": {"_count": 1}, "broom": {"_count": 2}, "head": {"_count": 1}, "cold": {"_count": 2}, "rubbish": {"_count": 1}, "months": {"_count": 1}, "copy": {"_count": 3}, "query": {"_count": 1}, "decent": {"_count": 1}, "glimpse": {"_count": 1}, "P": {"_count": 1}, "time": {"_count": 1}, "special": {"_count": 1}, "great": {"_count": 1}, "chimaera": {"_count": 1}, "whole": {"_count": 1}, "herd": {"_count": 1}, "snake": {"_count": 1}, "photo": {"_count": 1}, "rough": {"_count": 1}, "lifelong": {"_count": 1}, "counterjinx": {"_count": 1}, "mo": {"_count": 1}, "Ministry": {"_count": 1}, "clock": {"_count": 1}, "real": {"_count": 1}, "free": {"_count": 1}, "book": {"_count": 1}, "small": {"_count": 1}, "nasty": {"_count": 1}, "detention": {"_count": 1}, "message": {"_count": 1}, "little": {"_count": 1}, "visitor": {"_count": 1}, "picture": {"_count": 2}, "a": {"_count": 1}, "maggot": {"_count": 1}, "bezoar": {"_count": 1}, "reputation": {"_count": 1}, "hippogriff": {"_count": 1}, "license": {"_count": 2}, "daughter": {"_count": 1}, "tenthousandGalleon": {"_count": 1}, "wandmaker": {"_count": 1}, "mark": {"_count": 1}, "sixteenfoothigh": {"_count": 1}, "wand": {"_count": 2}, "spade": {"_count": 1}, "badger": {"_count": 1}, "false": {"_count": 1}, "huge": {"_count": 1}, "choice": {"_count": 1}}, "married": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "herself": {"_count": 2, "blown": {"_count": 1}, "out": {"_count": 1}}, "landed": {"_count": 1, "with": {"_count": 1}}, "that": {"_count": 8, "mark": {"_count": 1}, "": {"_count": 1}, "Sirius": {"_count": 1}, "havent": {"_count": 1}, "fire": {"_count": 1}, "stuff": {"_count": 1}, "detention": {"_count": 1}, "wrong": {"_count": 1}}, "getting": {"_count": 1, "mixed": {"_count": 1}}, "his": {"_count": 28, "revenge": {"_count": 1}, "wish": {"_count": 2}, "scar": {"_count": 1}, "special": {"_count": 1}, "award": {"_count": 1}, "hands": {"_count": 1}, "attention": {"_count": 1}, "topgrade": {"_count": 1}, "Apparition": {"_count": 1}, "number": {"_count": 1}, "letter": {"_count": 1}, "tongue": {"_count": 1}, "body": {"_count": 2}, "reasons": {"_count": 1}, "She": {"_count": 1}, "hopes": {"_count": 1}, "own": {"_count": 2}, "fathers": {"_count": 1}, "voice": {"_count": 1}, "brother": {"_count": 1}, "first": {"_count": 1}, "old": {"_count": 1}, "forefinger": {"_count": 1}, "Invisibility": {"_count": 2}}, "expelled": {"_count": 3, "ter": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "lots": {"_count": 2, "ter": {"_count": 1}, "o": {"_count": 1}}, "any": {"_count": 28, "money": {"_count": 2}, "cards": {"_count": 1}, "friends": {"_count": 1}, "Muggle": {"_count": 1}, "magic": {"_count": 1}, "new": {"_count": 1}, "of": {"_count": 1}, "objections": {"_count": 1}, "ideas": {"_count": 3}, "glory": {"_count": 1}, "said": {"_count": 1}, "everyone": {"_count": 1}, "leads": {"_count": 1}, "questions": {"_count": 1}, "choice": {"_count": 3}, "real": {"_count": 1}, "time": {"_count": 1}, "tips": {"_count": 1}, "options": {"_count": 1}, "connection": {"_count": 1}, "": {"_count": 1}, "food": {"_count": 1}, "idea": {"_count": 1}}, "yeh": {"_count": 3, "": {"_count": 1}, "a": {"_count": 2}}, "the": {"_count": 117, "job": {"_count": 2}, "pieces": {"_count": 1}, "cup": {"_count": 1}, "right": {"_count": 5}, "Snitch": {"_count": 5}, "Invisibility": {"_count": 2}, "chains": {"_count": 1}, "Stone": {"_count": 1}, "chance": {"_count": 3}, "car": {"_count": 1}, "point": {"_count": 3}, "letter": {"_count": 2}, "worse": {"_count": 1}, "flu": {"_count": 1}, "train": {"_count": 1}, "message": {"_count": 3}, "wrong": {"_count": 4}, "full": {"_count": 2}, "better": {"_count": 3}, "best": {"_count": 3}, "news": {"_count": 1}, "Whomping": {"_count": 1}, "axe": {"_count": 1}, "fire": {"_count": 1}, "Quaffle": {"_count": 2}, "guts": {"_count": 3}, "gist": {"_count": 1}, "hang": {"_count": 3}, "egg": {"_count": 1}, "skrewts": {"_count": 1}, "talent": {"_count": 1}, "measure": {"_count": 1}, "top": {"_count": 2}, "lot": {"_count": 1}, "marks": {"_count": 1}, "Cruciatus": {"_count": 1}, "badge": {"_count": 1}, "Galleons": {"_count": 1}, "volcanos": {"_count": 1}, "Mark": {"_count": 1}, "Hogwarts": {"_count": 1}, "results": {"_count": 1}, "idea": {"_count": 3}, "ony": {"_count": 1}, "other": {"_count": 2}, "emotional": {"_count": 1}, "heart": {"_count": 1}, "snout": {"_count": 1}, "basics": {"_count": 1}, "form": {"_count": 2}, "whips": {"_count": 1}, "gold": {"_count": 2}, "names": {"_count": 1}, "prophecy": {"_count": 1}, "bottle": {"_count": 1}, "impression": {"_count": 1}, "necessary": {"_count": 1}, "bezoar": {"_count": 1}, "memory": {"_count": 2}, "Horcrux": {"_count": 2}, "nerve": {"_count": 1}, "kids": {"_count": 1}, "Trace": {"_count": 3}, "most": {"_count": 1}, "information": {"_count": 1}, "Cloak": {"_count": 2}, "power": {"_count": 1}, "sayso": {"_count": 1}, "sword": {"_count": 3}, "book": {"_count": 1}, "nail": {"_count": 1}, "diadem": {"_count": 1}, "choice": {"_count": 1}, "Elder": {"_count": 1}}, "stuck": {"_count": 1, "in": {"_count": 1}}, "an": {"_count": 26, "\u2018m": {"_count": 1}, "owl": {"_count": 2}, "excuse": {"_count": 1}, "ounce": {"_count": 1}, "official": {"_count": 2}, "award": {"_count": 3}, "electric": {"_count": 1}, "oven": {"_count": 1}, "unaspected": {"_count": 1}, "answer": {"_count": 1}, "Invisibility": {"_count": 6}, "amazing": {"_count": 1}, "antidote": {"_count": 1}, "army": {"_count": 1}, "eye": {"_count": 1}, "unbeatable": {"_count": 1}, "accomplice": {"_count": 1}}, "your": {"_count": 10, "own": {"_count": 1}, "little": {"_count": 1}, "best": {"_count": 1}, "exams": {"_count": 1}, "brains": {"_count": 1}, "broom": {"_count": 1}, "name": {"_count": 1}, "eleven": {"_count": 1}, "Trace": {"_count": 1}, "message": {"_count": 1}}, "quickly": {"_count": 3, "off": {"_count": 1}, "to": {"_count": 2}}, "punctures": {"_count": 1, "have": {"_count": 1}}, "up": {"_count": 83, "and": {"_count": 28}, "next": {"_count": 1}, "": {"_count": 5}, "specially": {"_count": 1}, "to": {"_count": 5}, "dressed": {"_count": 5}, "his": {"_count": 2}, "crossed": {"_count": 1}, "first": {"_count": 1}, "again": {"_count": 5}, "picked": {"_count": 1}, "from": {"_count": 2}, "tiptoed": {"_count": 1}, "early": {"_count": 1}, "went": {"_count": 2}, "quickly": {"_count": 1}, "on": {"_count": 1}, "he": {"_count": 1}, "late": {"_count": 1}, "walked": {"_count": 3}, "stretched": {"_count": 1}, "pulled": {"_count": 1}, "bent": {"_count": 1}, "at": {"_count": 1}, "too": {"_count": 1}, "still": {"_count": 1}, "took": {"_count": 1}, "very": {"_count": 1}, "there": {"_count": 1}, "hastily": {"_count": 1}, "turned": {"_count": 1}, "off": {"_count": 1}, "panting": {"_count": 1}, "clumsily": {"_count": 1}, "in": {"_count": 1}}, "somefink": {"_count": 1, "on": {"_count": 1}}, "two": {"_count": 7, "compartments": {"_count": 1}, "unbeatable": {"_count": 1}, "Neptunes": {"_count": 1}, "tasks": {"_count": 1}, "Galleons": {"_count": 1}, "steps": {"_count": 1}, "Mudbloods": {"_count": 1}}, "you": {"_count": 20, "know": {"_count": 1}, "off": {"_count": 1}, "": {"_count": 3}, "in": {"_count": 1}, "down": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 2}, "home": {"_count": 1}, "loads": {"_count": 1}, "at": {"_count": 1}, "doing": {"_count": 1}, "here": {"_count": 2}, "or": {"_count": 1}, "chucking": {"_count": 1}, "cornered": {"_count": 1}, "back": {"_count": 1}}, "Bills": {"_count": 1, "old": {"_count": 1}}, "Scabbers": {"_count": 2, "instead": {"_count": 1}, "asleep": {"_count": 1}}, "loads": {"_count": 9, "to": {"_count": 3}, "": {"_count": 2}, "off": {"_count": 1}, "of": {"_count": 3}}, "some": {"_count": 19, "of": {"_count": 2}, "nerve": {"_count": 1}, "presents": {"_count": 1}, "very": {"_count": 1}, "information": {"_count": 1}, "gold": {"_count": 2}, "for": {"_count": 2}, "books": {"_count": 1}, "o": {"_count": 1}, "interesting": {"_count": 1}, "": {"_count": 1}, "ideas": {"_count": 1}, "connection": {"_count": 1}, "newborn": {"_count": 1}, "Well": {"_count": 1}, "sort": {"_count": 1}}, "much": {"_count": 4, "time": {"_count": 3}, "chance": {"_count": 1}}, "Agrippa": {"_count": 1, "or": {"_count": 1}}, "Morgana": {"_count": 1, "again": {"_count": 1}}, "toast": {"_count": 1, "coconut": {"_count": 1}}, "my": {"_count": 9, "letter": {"_count": 1}, "Remembrall": {"_count": 1}, "boot": {"_count": 1}, "priorities": {"_count": 1}, "neck": {"_count": 1}, "wand": {"_count": 1}, "name": {"_count": 1}, "own": {"_count": 1}, "vote": {"_count": 1}}, "dirt": {"_count": 1, "on": {"_count": 1}}, "Potter": {"_count": 6, "": {"_count": 4}, "said": {"_count": 1}, "dyou": {"_count": 1}}, "in": {"_count": 24, "here": {"_count": 1}, "at": {"_count": 1}, "trouble": {"_count": 1}, "on": {"_count": 2}, "the": {"_count": 4}, "Professor": {"_count": 1}, "she": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}, "this": {"_count": 1}, "its": {"_count": 1}, "without": {"_count": 1}, "you": {"_count": 1}, "common": {"_count": 1}, "all": {"_count": 2}, "that": {"_count": 1}, "through": {"_count": 1}, "my": {"_count": 1}}, "heavier": {"_count": 1, "and": {"_count": 1}}, "Emeric": {"_count": 1, "the": {"_count": 1}}, "today": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "from": {"_count": 1, "Professor": {"_count": 1}}, "both": {"_count": 2, "her": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "home": {"_count": 1}}, "all": {"_count": 18, "that": {"_count": 1}, "day": {"_count": 1}, "the": {"_count": 7}, "my": {"_count": 2}, "your": {"_count": 1}, "our": {"_count": 1}, "offended": {"_count": 1}, "those": {"_count": 2}, "his": {"_count": 1}, "these": {"_count": 1}}, "no": {"_count": 18, "friends": {"_count": 1}, "parents": {"_count": 1}, "money": {"_count": 1}, "brains": {"_count": 1}, "proof": {"_count": 3}, "chance": {"_count": 3}, "power": {"_count": 1}, "ambition": {"_count": 1}, "problem": {"_count": 1}, "plans": {"_count": 1}, "choice": {"_count": 1}, "room": {"_count": 1}, "way": {"_count": 1}, "higher": {"_count": 1}}, "there": {"_count": 26, "Potter": {"_count": 1}, "": {"_count": 8}, "but": {"_count": 1}, "e": {"_count": 1}, "chuckled": {"_count": 1}, "he": {"_count": 1}, "or": {"_count": 1}, "first": {"_count": 5}, "in": {"_count": 2}, "yet": {"_count": 1}, "Bob": {"_count": 1}, "MadEye": {"_count": 1}, "Ginny": {"_count": 1}, "ahead": {"_count": 1}}, "near": {"_count": 5, "him": {"_count": 1}, "enough": {"_count": 2}, "em": {"_count": 1}, "her": {"_count": 1}}, "left": {"_count": 3, "until": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "half": {"_count": 3, "an": {"_count": 2}, "a": {"_count": 1}}, "one": {"_count": 16, "": {"_count": 4}, "Ill": {"_count": 1}, "more": {"_count": 1}, "question": {"_count": 1}, "of": {"_count": 2}, "anymore": {"_count": 1}, "from": {"_count": 1}, "year": {"_count": 1}, "and": {"_count": 1}, "last": {"_count": 1}, "thing": {"_count": 1}, "maybe": {"_count": 1}}, "their": {"_count": 6, "interest": {"_count": 1}, "chance": {"_count": 1}, "cloaks": {"_count": 1}, "gold": {"_count": 1}, "priorities": {"_count": 1}, "conversations": {"_count": 1}}, "off": {"_count": 24, "wild": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 3}, "": {"_count": 1}, "his": {"_count": 1}, "easy": {"_count": 1}, "he": {"_count": 7}, "at": {"_count": 1}, "Thats": {"_count": 2}, "Be": {"_count": 1}, "on": {"_count": 2}, "to": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "lessons": {"_count": 1, "well": {"_count": 1}}, "time": {"_count": 12, "to": {"_count": 10}, "Harry": {"_count": 1}, "": {"_count": 1}}, "detention": {"_count": 4, "": {"_count": 2}, "from": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 9}, "!": {"_count": 3}, "?": {"_count": 6}}, "ter": {"_count": 3, "pay": {"_count": 1}, "stroke": {"_count": 1}, "Black": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "drunk": {"_count": 1}}, "Dumbledore": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "question": {"_count": 1, "fourteen": {"_count": 1}}, "away": {"_count": 12, "I": {"_count": 1}, "": {"_count": 5}, "with": {"_count": 3}, "didnt": {"_count": 1}, "said": {"_count": 1}, "from": {"_count": 1}}, "past": {"_count": 5, "Fluffy": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "us": {"_count": 1}}, "Hermiones": {"_count": 2, "owl": {"_count": 1}, "answer": {"_count": 1}}, "y": {"_count": 1, "eh": {"_count": 1}}, "friends": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "anywhere": {"_count": 2, "else": {"_count": 1}, "near": {"_count": 1}}, "anything": {"_count": 13, "to": {"_count": 8}, "for": {"_count": 5}}, "well": {"_count": 1, "I": {"_count": 1}}, "news": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 1}, "Ron": {"_count": 2}, "Greybacks": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "powerful": {"_count": 1, "magic": {"_count": 1}}, "is": {"_count": 3, "a": {"_count": 1}, "Scabbers": {"_count": 1}, "wand": {"_count": 1}}, "were": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 8, "too": {"_count": 1}, "": {"_count": 3}, "here": {"_count": 1}, "counted": {"_count": 1}, "convinced": {"_count": 1}, "taking": {"_count": 1}}, "twelve": {"_count": 1, "too": {"_count": 1}}, "gingerly": {"_count": 2, "to": {"_count": 2}}, "halfway": {"_count": 1, "toward": {"_count": 1}}, "separated": {"_count": 2, "Harry": {"_count": 1}, "on": {"_count": 1}}, "yourself": {"_count": 1, "a": {"_count": 1}}, "started": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "snapped": {"_count": 1, "They": {"_count": 1}}, "here": {"_count": 10, "": {"_count": 7}, "Charlie": {"_count": 1}, "would": {"_count": 1}, "so": {"_count": 1}}, "nothing": {"_count": 6, "better": {"_count": 1}, "to": {"_count": 5}}, "what": {"_count": 4, "we": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "better": {"_count": 1, "people": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "thirty": {"_count": 2, "three": {"_count": 1}, "O": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 6, "own": {"_count": 1}, "first": {"_count": 1}, "History": {"_count": 1}, "fingers": {"_count": 1}, "er": {"_count": 1}, "O": {"_count": 1}}, "Millicents": {"_count": 1, "nose": {"_count": 1}}, "enough": {"_count": 12, "to": {"_count": 5}, "new": {"_count": 1}, "on": {"_count": 2}, "gold": {"_count": 1}, "attention": {"_count": 1}, "photographs": {"_count": 1}, "nerve": {"_count": 1}}, "washed": {"_count": 1, "out": {"_count": 1}}, "Riddles": {"_count": 1, "diary": {"_count": 1}}, "bored": {"_count": 2, "of": {"_count": 1}, "with": {"_count": 1}}, "rid": {"_count": 9, "of": {"_count": 9}}, "lodged": {"_count": 1, "in": {"_count": 1}}, "outside": {"_count": 1, "again": {"_count": 1}}, "exams": {"_count": 4, "in": {"_count": 1}, "coming": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "Petrified": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 12, "was": {"_count": 1}, "": {"_count": 6}, "out": {"_count": 1}, "over": {"_count": 1}, "I": {"_count": 1}, "a": {"_count": 1}, "were": {"_count": 1}}, "blasted": {"_count": 1, "by": {"_count": 1}}, "paint": {"_count": 1, "all": {"_count": 1}}, "her": {"_count": 14, "": {"_count": 2}, "heart": {"_count": 1}, "bewitched": {"_count": 1}, "number": {"_count": 1}, "too": {"_count": 1}, "persuaded": {"_count": 1}, "whole": {"_count": 2}, "converted": {"_count": 1}, "dying": {"_count": 1}, "own": {"_count": 1}, "eyes": {"_count": 1}, "I": {"_count": 1}}, "competition": {"_count": 1, "Ginny": {"_count": 1}}, "hold": {"_count": 6, "of": {"_count": 6}}, "down": {"_count": 1, "on": {"_count": 1}}, "Colonel": {"_count": 1, "Fubster": {"_count": 1}}, "wind": {"_count": 7, "of": {"_count": 5}, "that": {"_count": 2}}, "through": {"_count": 12, "the": {"_count": 3}, "Potions": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 2}, "it": {"_count": 1}, "Umbridges": {"_count": 1}, "enough": {"_count": 1}, "all": {"_count": 1}}, "ten": {"_count": 5, "Galleons": {"_count": 2}, "minutes": {"_count": 1}, "people": {"_count": 1}, "times": {"_count": 1}}, "Hedwig": {"_count": 1, "and": {"_count": 1}}, "Errol": {"_count": 1, "I": {"_count": 1}}, "other": {"_count": 4, "brothers": {"_count": 1}, "plans": {"_count": 2}, "people": {"_count": 1}}, "between": {"_count": 1, "you": {"_count": 1}}, "dressed": {"_count": 4, "and": {"_count": 1}, "in": {"_count": 1}, "padding": {"_count": 1}, "thinking": {"_count": 1}}, "everything": {"_count": 3, "": {"_count": 2}, "under": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "quiet": {"_count": 1, "": {"_count": 1}}, "applause": {"_count": 1, "from": {"_count": 1}}, "over": {"_count": 7, "the": {"_count": 3}, "her": {"_count": 1}, "what": {"_count": 1}, "you": {"_count": 1}, "your": {"_count": 1}}, "eye": {"_count": 1, "contact": {"_count": 1}}, "nine": {"_count": 1, "out": {"_count": 1}}, "three": {"_count": 4, "superb": {"_count": 1}, "seconds": {"_count": 1}, "O": {"_count": 1}, "Galleons": {"_count": 1}}, "teabags": {"_count": 1, "Im": {"_count": 1}}, "as": {"_count": 5, "much": {"_count": 1}, "far": {"_count": 4}}, "very": {"_count": 1, "angry": {"_count": 1}}, "blown": {"_count": 1, "away": {"_count": 1}}, "smashed": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "four": {"_count": 3, "hundred": {"_count": 1}, "one": {"_count": 1}, "legs": {"_count": 1}}, "somethin": {"_count": 2, "ter": {"_count": 2}}, "cold": {"_count": 3, "feet": {"_count": 3}}, "such": {"_count": 3, "a": {"_count": 2}, "good": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "hurt": {"_count": 3, "in": {"_count": 1}, "": {"_count": 2}}, "dark": {"_count": 1, "powers": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 5, "locked": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "You": {"_count": 1}, "or": {"_count": 1}}, "walloped": {"_count": 1, "by": {"_count": 1}}, "photos": {"_count": 1, "of": {"_count": 1}}, "exactly": {"_count": 1, "ten": {"_count": 1}}, "around": {"_count": 3, "to": {"_count": 2}, "how": {"_count": 1}}, "another": {"_count": 6, "Its": {"_count": 1}, "big": {"_count": 1}, "Seeker": {"_count": 1}, "message": {"_count": 1}, "one": {"_count": 1}, "little": {"_count": 1}}, "really": {"_count": 4, "angry": {"_count": 1}, "good": {"_count": 1}, "sulky": {"_count": 1}, "excited": {"_count": 1}}, "MegaMutilation": {"_count": 1, "Part": {"_count": 1}}, "brains": {"_count": 1, "she": {"_count": 1}}, "quite": {"_count": 2, "enough": {"_count": 1}, "that": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "seven": {"_count": 1, "said": {"_count": 1}}, "thoroughly": {"_count": 1, "overexcited": {"_count": 1}}, "lumbago": {"_count": 1, "": {"_count": 1}}, "dangling": {"_count": 2, "all": {"_count": 2}}, "Roddy": {"_count": 1, "Pontner": {"_count": 1}}, "ploughed": {"_count": 1, "": {"_count": 1}}, "big": {"_count": 1, "plans": {"_count": 1}}, "drawn": {"_count": 1, "into": {"_count": 1}}, "someone": {"_count": 1, "": {"_count": 1}}, "feelings": {"_count": 2, "Ron": {"_count": 1}, "said": {"_count": 1}}, "on": {"_count": 8, "fairly": {"_count": 1}, "very": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}, "all": {"_count": 1}, "together": {"_count": 1}, "our": {"_count": 1}, "like": {"_count": 1}}, "for": {"_count": 4, "you": {"_count": 1}, "relatives": {"_count": 1}, "my": {"_count": 1}, "me": {"_count": 1}}, "soaked": {"_count": 1, "carrying": {"_count": 1}}, "fur": {"_count": 1, "capes": {"_count": 1}}, "ant": {"_count": 1, "eggs": {"_count": 1}}, "stings": {"_count": 1, "said": {"_count": 1}}, "sorta": {"_count": 1, "sucker": {"_count": 1}}, "homework": {"_count": 1, "yet": {"_count": 1}}, "like": {"_count": 1, "shes": {"_count": 1}}, "dung": {"_count": 2, "under": {"_count": 1}, "for": {"_count": 1}}, "heavily": {"_count": 1, "to": {"_count": 1}}, "MadEye": {"_count": 1, "out": {"_count": 1}}, "caught": {"_count": 4, "it": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "releasing": {"_count": 1}}, "em": {"_count": 2, "in": {"_count": 1}, "ter": {"_count": 1}}, "abou": {"_count": 1, "twenty": {"_count": 1}}, "gracefully": {"_count": 1, "to": {"_count": 1}}, "reason": {"_count": 1, "to": {"_count": 1}}, "food": {"_count": 3, "Harry": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "picked": {"_count": 1, "as": {"_count": 1}}, "used": {"_count": 3, "to": {"_count": 3}}, "within": {"_count": 1, "earshot": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "tears": {"_count": 1, "in": {"_count": 1}}, "privacy": {"_count": 1, "": {"_count": 1}}, "long": {"_count": 1, "here": {"_count": 1}}, "released": {"_count": 2, "": {"_count": 2}}, "strengths": {"_count": 1, "if": {"_count": 1}}, "wizards": {"_count": 1, "standing": {"_count": 1}}, "burned": {"_count": 1, "as": {"_count": 1}}, "till": {"_count": 2, "February": {"_count": 1}, "midnight": {"_count": 1}}, "dates": {"_count": 1, "for": {"_count": 1}}, "anyone": {"_count": 1, "well": {"_count": 1}}, "plenty": {"_count": 5, "more": {"_count": 1}, "of": {"_count": 3}, "": {"_count": 1}}, "ages": {"_count": 1, "": {"_count": 1}}, "home": {"_count": 3, "": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}}, "Karkaroff": {"_count": 1, "all": {"_count": 1}}, "themselves": {"_count": 2, "killed": {"_count": 1}, "into": {"_count": 1}}, "bigger": {"_count": 1, "bones": {"_count": 1}}, "teeth": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 2, "looking": {"_count": 1}, "quite": {"_count": 1}}, "inter": {"_count": 2, "Hogwarts": {"_count": 1}, "France": {"_count": 1}}, "told": {"_count": 1, "off": {"_count": 1}}, "blocked": {"_count": 1, "": {"_count": 1}}, "quietly": {"_count": 1, "into": {"_count": 1}}, "nearer": {"_count": 3, "he": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "until": {"_count": 1, "three": {"_count": 1}}, "excited": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 2, "as": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 2, "no": {"_count": 1}, "couldnt": {"_count": 1}}, "giant": {"_count": 1, "blood": {"_count": 1}}, "sympathy": {"_count": 1, "from": {"_count": 1}}, "more": {"_count": 3, "points": {"_count": 1}, "backbone": {"_count": 1}, "difficult": {"_count": 1}}, "together": {"_count": 4, "without": {"_count": 1}, "anyway": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "work": {"_count": 1, "for": {"_count": 1}}, "round": {"_count": 1, "to": {"_count": 1}}, "top": {"_count": 1, "marks": {"_count": 1}}, "worse": {"_count": 1, "": {"_count": 1}}, "dragged": {"_count": 1, "into": {"_count": 1}}, "famous": {"_count": 1, "because": {"_count": 1}}, "Harrys": {"_count": 1, "best": {"_count": 1}}, "Moodys": {"_count": 1, "cloak": {"_count": 1}}, "too": {"_count": 2, "old": {"_count": 1}, "long": {"_count": 1}}, "business": {"_count": 2, "to": {"_count": 2}}, "himself": {"_count": 4, "a": {"_count": 1}, "badly": {"_count": 1}, "captured": {"_count": 1}, "banned": {"_count": 1}}, "Pig": {"_count": 1, "yet": {"_count": 1}}, "He": {"_count": 1, "broke": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "worms": {"_count": 1, "coming": {"_count": 1}}, "Bludgers": {"_count": 1, "for": {"_count": 1}}, "secret": {"_count": 1, "information": {"_count": 1}}, "against": {"_count": 1, "werewolves": {"_count": 1}}, "Ds": {"_count": 1, "": {"_count": 1}}, "ask": {"_count": 1, "": {"_count": 1}}, "E": {"_count": 1, "in": {"_count": 1}}, "killed": {"_count": 1, "by": {"_count": 1}}, "murdered": {"_count": 1, "I": {"_count": 1}}, "items": {"_count": 1, "of": {"_count": 1}}, "permission": {"_count": 2, "": {"_count": 1}, "didnt": {"_count": 1}}, "Silencing": {"_count": 1, "Charms": {"_count": 1}}, "lines": {"_count": 1, "I": {"_count": 1}}, "right": {"_count": 1, "up": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "fangs": {"_count": 1, "he": {"_count": 1}}, "sneaked": {"_count": 1, "up": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "er": {"_count": 2, "me": {"_count": 1}, "an": {"_count": 1}}, "guards": {"_count": 1, "around": {"_count": 1}}, "attacked": {"_count": 1, "by": {"_count": 1}}, "spattergroit": {"_count": 1, "": {"_count": 1}}, "visitors": {"_count": 1, "": {"_count": 1}}, "sent": {"_count": 1, "to": {"_count": 1}}, "scale": {"_count": 1, "rot": {"_count": 1}}, "taken": {"_count": 1, "on": {"_count": 1}}, "nice": {"_count": 1, "ones": {"_count": 1}}, "style": {"_count": 1, "": {"_count": 1}}, "undressed": {"_count": 1, "a": {"_count": 1}}, "\u2018sneak": {"_count": 1, "written": {"_count": 1}}, "Transfiguration": {"_count": 1, "if": {"_count": 1}}, "Occlumency": {"_count": 1, "lessons": {"_count": 1}}, "of": {"_count": 1, "becoming": {"_count": 1}}, "premises": {"_count": 1, "in": {"_count": 1}}, "company": {"_count": 1, "fer": {"_count": 1}}, "rather": {"_count": 2, "badly": {"_count": 1}, "than": {"_count": 1}}, "powdered": {"_count": 1, "dragon": {"_count": 1}}, "full": {"_count": 1, "marks": {"_count": 1}}, "Arithmancy": {"_count": 1, "and": {"_count": 1}}, "Padfoot": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "Malfoy": {"_count": 1, "BatBogey": {"_count": 1}}, "carried": {"_count": 1, "away": {"_count": 1}}, "chased": {"_count": 1, "off": {"_count": 1}}, "authorization": {"_count": 1, "for": {"_count": 1}}, "Dad": {"_count": 1, "": {"_count": 1}}, "support": {"_count": 1, "so": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "dementors": {"_count": 1, "swarming": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "My": {"_count": 1, "mothers": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "these": {"_count": 1, "sighed": {"_count": 1}}, "Ministry": {"_count": 1, "cars": {"_count": 1}}, "Quidditch": {"_count": 1, "tryouts": {"_count": 1}}, "Aurors": {"_count": 1, "and": {"_count": 1}}, "ill": {"_count": 1, "over": {"_count": 1}}, "McLaggen": {"_count": 1, "coming": {"_count": 1}}, "deluxe": {"_count": 1, "sugar": {"_count": 1}}, "firewhisky": {"_count": 1, "in": {"_count": 1}}, "Firenze": {"_count": 1, "this": {"_count": 1}}, "Fudge": {"_count": 1, "pretending": {"_count": 1}}, "\u2018the": {"_count": 1, "Chosen": {"_count": 1}}, "nerve": {"_count": 1, "boy": {"_count": 1}}, "older": {"_count": 1, "Ron": {"_count": 1}}, "butterbeer": {"_count": 1, "Ive": {"_count": 1}}, "wine": {"_count": 1, "Ive": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "Professor": {"_count": 1, "Slughorn": {"_count": 1}}, "poisoned": {"_count": 1, "which": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "anybody": {"_count": 1, "to": {"_count": 1}}, "uncommon": {"_count": 1, "skill": {"_count": 1}}, "horrible": {"_count": 1, "dandruff": {"_count": 1}}, "stolen": {"_count": 1, "": {"_count": 1}}, "cut": {"_count": 1, "on": {"_count": 1}}, "upstairs": {"_count": 1, "We": {"_count": 1}}, "backup": {"_count": 1, "": {"_count": 1}}, "orders": {"_count": 1, "": {"_count": 1}}, "thrown": {"_count": 2, "": {"_count": 1}, "up": {"_count": 1}}, "things": {"_count": 1, "to": {"_count": 1}}, "broken": {"_count": 1, "": {"_count": 1}}, "smaller": {"_count": 1, "here": {"_count": 1}}, "red": {"_count": 1, "hair": {"_count": 1}}, "information": {"_count": 1, "on": {"_count": 1}}, "clothes": {"_count": 1, "for": {"_count": 1}}, "Muggle": {"_count": 1, "money": {"_count": 1}}, "outta": {"_count": 1, "there": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Ollivander": {"_count": 1, "locked": {"_count": 1}}, "magic": {"_count": 1, "ears": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "wands": {"_count": 3, "": {"_count": 1}, "need": {"_count": 1}, "yet": {"_count": 1}}, "Kingsley": {"_count": 1, "Youre": {"_count": 1}}, "holes": {"_count": 1, "in": {"_count": 1}}, "code": {"_count": 1, "names": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "say": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "reason": {"_count": 1}}, "neglected": {"_count": 1, "what": {"_count": 1}}, "angry": {"_count": 1, "": {"_count": 1}}, "beaten": {"_count": 1, "up": {"_count": 1}}}, "car": {"_count": 155, "and": {"_count": 10, "backed": {"_count": 1}, "set": {"_count": 1}, "crushed": {"_count": 1}, "off": {"_count": 1}, "disappeared": {"_count": 1}, "telling": {"_count": 1}, "patting": {"_count": 1}, "was": {"_count": 1}, "flew": {"_count": 1}, "Mundungus": {"_count": 1}}, "door": {"_count": 2, "slammed": {"_count": 2}}, "crash": {"_count": 10, "when": {"_count": 1}, "": {"_count": 4}, "kill": {"_count": 1}, "that": {"_count": 2}, "drunk": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 32, ".": {"_count": 25}, "?": {"_count": 4}, "!": {"_count": 3}}, "with": {"_count": 3, "Piers": {"_count": 1}, "the": {"_count": 1}, "every": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 1}, "the": {"_count": 1}, "very": {"_count": 1}}, "Dudley": {"_count": 1, "was": {"_count": 1}}, "when": {"_count": 2, "his": {"_count": 1}, "Harry": {"_count": 1}}, "speeding": {"_count": 1, "toward": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "mowed": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 3, "was": {"_count": 1}, "hadnt": {"_count": 1}, "Harry": {"_count": 1}}, "revved": {"_count": 1, "louder": {"_count": 1}}, "to": {"_count": 4, "pull": {"_count": 1}, "Harrys": {"_count": 1}, "Hogwarts": {"_count": 2}}, "hed": {"_count": 1, "slammed": {"_count": 1}}, "shot": {"_count": 2, "suddenly": {"_count": 1}, "backward": {"_count": 1}}, "Fred": {"_count": 1, "laughed": {"_count": 1}}, "lower": {"_count": 1, "and": {"_count": 1}}, "halfway": {"_count": 1, "across": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 3, "fact": {"_count": 1}, "doors": {"_count": 1}, "two": {"_count": 1}}, "could": {"_count": 1, "fly": {"_count": 1}}, "you": {"_count": 2, "werent": {"_count": 1}, "heard": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "because": {"_count": 1, "were": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "rose": {"_count": 1, "in": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "skimmed": {"_count": 1, "the": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "than": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "begun": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "wobbled": {"_count": 1, "again": {"_count": 1}}, "dropped": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 2, "in": {"_count": 1}, "right": {"_count": 1}}, "it": {"_count": 1, "could": {"_count": 1}}, "was": {"_count": 6, "vibrating": {"_count": 1}, "ejecting": {"_count": 1}, "standing": {"_count": 1}, "thundering": {"_count": 1}, "beetling": {"_count": 1}, "trying": {"_count": 1}}, "The": {"_count": 1, "car": {"_count": 1}}, "however": {"_count": 1, "had": {"_count": 1}}, "rumbled": {"_count": 1, "off": {"_count": 1}}, "disappeared": {"_count": 1, "from": {"_count": 1}}, "flying": {"_count": 1, "over": {"_count": 1}}, "making": {"_count": 1, "it": {"_count": 1}}, "parked": {"_count": 1, "outside": {"_count": 1}}, "term": {"_count": 1, "hadnt": {"_count": 1}}, "five": {"_count": 1, "or": {"_count": 1}}, "Well": {"_count": 1, "we": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "journey": {"_count": 1, "and": {"_count": 1}}, "crashed": {"_count": 1, "earlier": {"_count": 1}}, "were": {"_count": 1, "scratched": {"_count": 1}}, "screeched": {"_count": 1, "to": {"_count": 1}}, "didnt": {"_count": 1, "need": {"_count": 1}}, "wound": {"_count": 1, "its": {"_count": 1}}, "stopped": {"_count": 1, "so": {"_count": 1}}, "a": {"_count": 1, "grateful": {"_count": 1}}, "coat": {"_count": 1, "": {"_count": 1}}, "keys": {"_count": 1, "from": {"_count": 1}}, "pulled": {"_count": 1, "back": {"_count": 1}}, "doors": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "certainly": {"_count": 1, "couldnt": {"_count": 1}}, "anymore": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "thats": {"_count": 1, "broken": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "backfire": {"_count": 1, "just": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "sweeping": {"_count": 1, "out": {"_count": 1}}, "headlights": {"_count": 1, "and": {"_count": 1}}, "aerial": {"_count": 1, "and": {"_count": 1}}, "tire": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "moved": {"_count": 1, "smoothly": {"_count": 1}}, "without": {"_count": 1, "saying": {"_count": 1}}, "available": {"_count": 1, "you": {"_count": 1}}, "swinging": {"_count": 1, "out": {"_count": 1}}, "knocking": {"_count": 1, "out": {"_count": 1}}, "exhausts": {"_count": 1, "and": {"_count": 1}}}, "backed": {"_count": 56, "out": {"_count": 7, "of": {"_count": 5}, "again": {"_count": 1}, "and": {"_count": 1}}, "away": {"_count": 25, "as": {"_count": 3}, "": {"_count": 3}, "to": {"_count": 1}, "watching": {"_count": 1}, "into": {"_count": 2}, "until": {"_count": 1}, "his": {"_count": 1}, "against": {"_count": 1}, "several": {"_count": 1}, "from": {"_count": 2}, "you": {"_count": 1}, "looking": {"_count": 1}, "swiftly": {"_count": 1}, "still": {"_count": 1}, "drawing": {"_count": 1}, "the": {"_count": 2}, "shielding": {"_count": 1}, "Harry": {"_count": 1}}, "into": {"_count": 12, "chairs": {"_count": 1}, "the": {"_count": 7}, "a": {"_count": 2}, "those": {"_count": 1}, "view": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "swiftly": {"_count": 1, "away": {"_count": 1}}, "off": {"_count": 2, "": {"_count": 1}, "fast": {"_count": 1}}, "farther": {"_count": 1, "away": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "proud": {"_count": 1}}, "slowly": {"_count": 1, "into": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "quickly": {"_count": 1}}}, "fours": {"_count": 10, "drive": {"_count": 1, "": {"_count": 1}}, "coughed": {"_count": 1, "and": {"_count": 1}}, "banging": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "garden": {"_count": 1, "path": {"_count": 1}}, "watching": {"_count": 1, "their": {"_count": 1}}, "again": {"_count": 1, "on": {"_count": 1}}, "still": {"_count": 1, "trying": {"_count": 1}}}, "drive": {"_count": 32, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "away": {"_count": 2, "": {"_count": 1}, "your": {"_count": 1}}, "you": {"_count": 1, "mad": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 2, "dementor": {"_count": 1}, "carriages": {"_count": 1}}, "all": {"_count": 1, "those": {"_count": 1}}, "some": {"_count": 1, "tinpot": {"_count": 1}}, "that": {"_count": 1, "led": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 1, "Krum": {"_count": 1}}, "anyone": {"_count": 1, "up": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "out": {"_count": 1}, "the": {"_count": 1}, "then": {"_count": 1}, "off": {"_count": 1}}, "looking": {"_count": 1, "extremely": {"_count": 1}}, "her": {"_count": 1, "off": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "lights": {"_count": 1, "glinting": {"_count": 1}}, "I": {"_count": 1, "take": {"_count": 1}}, "he": {"_count": 1, "muttered": {"_count": 1}}, "between": {"_count": 1, "high": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}}, "It": {"_count": 1968, "was": {"_count": 913, "on": {"_count": 6}, "now": {"_count": 15}, "a": {"_count": 133}, "no": {"_count": 3}, "staring": {"_count": 1}, "sitting": {"_count": 1}, "plain": {"_count": 4}, "even": {"_count": 2}, "flying": {"_count": 1}, "only": {"_count": 20}, "cool": {"_count": 1}, "worse": {"_count": 2}, "addressed": {"_count": 2}, "not": {"_count": 31}, "very": {"_count": 16}, "freezing": {"_count": 2}, "sir": {"_count": 1}, "lucky": {"_count": 3}, "one": {"_count": 6}, "chipped": {"_count": 1}, "the": {"_count": 53}, "getting": {"_count": 2}, "so": {"_count": 9}, "lit": {"_count": 1}, "hard": {"_count": 11}, "all": {"_count": 15}, "also": {"_count": 2}, "always": {"_count": 3}, "colder": {"_count": 1}, "old": {"_count": 1}, "dinnertime": {"_count": 1}, "Hermione": {"_count": 7}, "Neville": {"_count": 1}, "Filch": {"_count": 1}, "Peeves": {"_count": 2}, "standing": {"_count": 2}, "bright": {"_count": 1}, "holding": {"_count": 1}, "covered": {"_count": 1}, "about": {"_count": 2}, "as": {"_count": 39}, "really": {"_count": 5}, "Quidditch": {"_count": 2}, "worth": {"_count": 2}, "zigzagging": {"_count": 1}, "carrying": {"_count": 1}, "enough": {"_count": 2}, "Snape": {"_count": 6}, "true": {"_count": 4}, "wrapped": {"_count": 1}, "strange": {"_count": 1}, "his": {"_count": 10}, "Malfoy": {"_count": 1}, "almost": {"_count": 4}, "stifling": {"_count": 1}, "driving": {"_count": 1}, "empty": {"_count": 6}, "sweltering": {"_count": 1}, "Professor": {"_count": 4}, "full": {"_count": 7}, "indeed": {"_count": 3}, "Quirrell": {"_count": 2}, "chalk": {"_count": 1}, "you": {"_count": 4}, "agony": {"_count": 2}, "decked": {"_count": 1}, "Ginny": {"_count": 2}, "Uncle": {"_count": 1}, "this": {"_count": 2}, "half": {"_count": 2}, "cloudy": {"_count": 1}, "certainly": {"_count": 1}, "small": {"_count": 3}, "like": {"_count": 16}, "surrounded": {"_count": 1}, "Mr": {"_count": 3}, "difficult": {"_count": 3}, "still": {"_count": 6}, "much": {"_count": 8}, "better": {"_count": 3}, "remarkable": {"_count": 1}, "pandemonium": {"_count": 1}, "Draco": {"_count": 2}, "most": {"_count": 2}, "bad": {"_count": 3}, "nearly": {"_count": 11}, "Mrs": {"_count": 2}, "common": {"_count": 3}, "an": {"_count": 13}, "definitely": {"_count": 1}, "quite": {"_count": 5}, "clear": {"_count": 7}, "decorated": {"_count": 1}, "hovering": {"_count": 1}, "Colin": {"_count": 4}, "Nearly": {"_count": 1}, "dark": {"_count": 3}, "Hagrid": {"_count": 3}, "their": {"_count": 1}, "with": {"_count": 3}, "Dumbledore": {"_count": 2}, "Harrys": {"_count": 2}, "another": {"_count": 4}, "probably": {"_count": 4}, "ancient": {"_count": 1}, "my": {"_count": 5}, "eerie": {"_count": 1}, "something": {"_count": 2}, "Tom": {"_count": 1}, "smelly": {"_count": 1}, "either": {"_count": 1}, "rather": {"_count": 2}, "here": {"_count": 2}, "spinning": {"_count": 1}, "inside": {"_count": 1}, "horrible": {"_count": 2}, "beyond": {"_count": 1}, "stiflingly": {"_count": 1}, "harder": {"_count": 1}, "nothing": {"_count": 3}, "Malfoys": {"_count": 1}, "dusk": {"_count": 1}, "pitch": {"_count": 1}, "extremely": {"_count": 4}, "me": {"_count": 3}, "YouKnowWho": {"_count": 1}, "little": {"_count": 1}, "unnerving": {"_count": 1}, "confiscated": {"_count": 1}, "Defense": {"_count": 1}, "in": {"_count": 8}, "winding": {"_count": 1}, "deserted": {"_count": 1}, "exactly": {"_count": 2}, "your": {"_count": 4}, "skirting": {"_count": 1}, "essential": {"_count": 1}, "turning": {"_count": 1}, "Sirius": {"_count": 1}, "absurd": {"_count": 1}, "Hermiones": {"_count": 1}, "going": {"_count": 1}, "circling": {"_count": 1}, "ajar": {"_count": 1}, "Rons": {"_count": 1}, "just": {"_count": 7}, "without": {"_count": 1}, "tied": {"_count": 1}, "time": {"_count": 4}, "galloping": {"_count": 1}, "cantering": {"_count": 1}, "shining": {"_count": 1}, "stupid": {"_count": 2}, "I": {"_count": 4}, "Franks": {"_count": 1}, "due": {"_count": 1}, "four": {"_count": 1}, "brilliant": {"_count": 2}, "hopping": {"_count": 1}, "Fred": {"_count": 2}, "chilly": {"_count": 1}, "Seamus": {"_count": 1}, "too": {"_count": 3}, "Amos": {"_count": 1}, "Winky": {"_count": 1}, "pitiful": {"_count": 1}, "completely": {"_count": 2}, "talking": {"_count": 1}, "said": {"_count": 2}, "enchanted": {"_count": 1}, "usual": {"_count": 1}, "dull": {"_count": 1}, "good": {"_count": 1}, "surprisingly": {"_count": 1}, "more": {"_count": 1}, "Cho": {"_count": 2}, "making": {"_count": 1}, "Ron": {"_count": 2}, "humming": {"_count": 1}, "Rita": {"_count": 1}, "hollow": {"_count": 1}, "someone": {"_count": 1}, "amazing": {"_count": 1}, "odd": {"_count": 3}, "Cedric": {"_count": 2}, "pawing": {"_count": 1}, "awkward": {"_count": 1}, "softly": {"_count": 1}, "Moaning": {"_count": 1}, "twenty": {"_count": 1}, "obvious": {"_count": 2}, "Krum": {"_count": 1}, "ze": {"_count": 1}, "over": {"_count": 6}, "easy": {"_count": 5}, "easily": {"_count": 1}, "daybreak": {"_count": 1}, "unmistakably": {"_count": 1}, "merely": {"_count": 1}, "Voldemort": {"_count": 1}, "sort": {"_count": 1}, "between": {"_count": 1}, "bleeding": {"_count": 1}, "Wormtail": {"_count": 1}, "hairless": {"_count": 1}, "pain": {"_count": 2}, "coming": {"_count": 2}, "MadEye": {"_count": 1}, "fixed": {"_count": 1}, "carefully": {"_count": 1}, "costing": {"_count": 1}, "resting": {"_count": 1}, "several": {"_count": 5}, "less": {"_count": 2}, "impossible": {"_count": 4}, "dank": {"_count": 1}, "scarcely": {"_count": 1}, "around": {"_count": 2}, "past": {"_count": 1}, "starting": {"_count": 1}, "pulsating": {"_count": 1}, "desperately": {"_count": 1}, "murder": {"_count": 1}, "halfpast": {"_count": 1}, "headlined": {"_count": 1}, "Harry": {"_count": 3}, "immediately": {"_count": 1}, "Angelina": {"_count": 1}, "warm": {"_count": 2}, "after": {"_count": 2}, "that": {"_count": 1}, "kind": {"_count": 1}, "defnitely": {"_count": 1}, "aching": {"_count": 1}, "real": {"_count": 1}, "Siriuss": {"_count": 1}, "raining": {"_count": 1}, "her": {"_count": 1}, "appalling": {"_count": 1}, "breakfast": {"_count": 1}, "foretold": {"_count": 1}, "clearly": {"_count": 1}, "scary": {"_count": 1}, "late": {"_count": 1}, "what": {"_count": 1}, "hardly": {"_count": 1}, "shrinking": {"_count": 1}, "Macnair": {"_count": 1}, "foolish": {"_count": 1}, "unbearable": {"_count": 1}, "he": {"_count": 3}, "sunny": {"_count": 1}, "nearing": {"_count": 1}, "outrageous": {"_count": 1}, "then": {"_count": 2}, "precisely": {"_count": 1}, "however": {"_count": 2}, "infuriating": {"_count": 1}, "stuffy": {"_count": 1}, "large": {"_count": 1}, "cruel": {"_count": 1}, "packed": {"_count": 2}, "during": {"_count": 1}, "Nevilles": {"_count": 1}, "fortunate": {"_count": 1}, "but": {"_count": 1}, "surely": {"_count": 2}, "when": {"_count": 2}, "brought": {"_count": 1}, "natural": {"_count": 3}, "Greyback": {"_count": 1}, "tactless": {"_count": 1}, "Fudges": {"_count": 1}, "evening": {"_count": 1}, "easiest": {"_count": 1}, "being": {"_count": 1}, "concluded": {"_count": 1}, "pretty": {"_count": 1}, "": {"_count": 2}, "important": {"_count": 1}, "close": {"_count": 1}, "human": {"_count": 1}, "there": {"_count": 1}, "locked": {"_count": 1}, "becoming": {"_count": 1}, "Umbridges": {"_count": 1}, "many": {"_count": 1}, "easier": {"_count": 1}, "therefore": {"_count": 1}, "made": {"_count": 2}, "pitchblack": {"_count": 1}, "stuck": {"_count": 1}, "never": {"_count": 1}, "necessary": {"_count": 1}, "poor": {"_count": 1}, "snowing": {"_count": 1}, "gone": {"_count": 1}, "yyou": {"_count": 1}, "gloriously": {"_count": 1}, "The": {"_count": 1}, "stolen": {"_count": 1}, "quiet": {"_count": 1}, "Griphook": {"_count": 1}, "already": {"_count": 1}, "of": {"_count": 1}, "torture": {"_count": 1}, "enormous": {"_count": 1}, "Luna": {"_count": 1}, "him": {"_count": 1}, "high": {"_count": 1}, "five": {"_count": 1}, "midnight": {"_count": 1}, "marble": {"_count": 1}, "Dark": {"_count": 1}, "nighttime": {"_count": 2}, "cracked": {"_count": 1}, "extraordinary": {"_count": 1}, "Bellatrixs": {"_count": 1}}, "must": {"_count": 18, "have": {"_count": 7}, "be": {"_count": 9}, "wake": {"_count": 1}, "end": {"_count": 1}}, "stared": {"_count": 1, "back": {"_count": 1}}, "might": {"_count": 18, "have": {"_count": 6}, "provoke": {"_count": 1}, "be": {"_count": 6}, "shut": {"_count": 1}, "make": {"_count": 1}, "even": {"_count": 2}, "paralyze": {"_count": 1}}, "just": {"_count": 8, "gave": {"_count": 1}, "didnt": {"_count": 2}, "makes": {"_count": 2}, "seemed": {"_count": 1}, "wont": {"_count": 1}, "says": {"_count": 1}}, "didnt": {"_count": 15, "so": {"_count": 1}, "come": {"_count": 1}, "seem": {"_count": 1}, "hurt": {"_count": 1}, "even": {"_count": 1}, "move": {"_count": 2}, "carry": {"_count": 1}, "occur": {"_count": 1}, "help": {"_count": 1}, "feel": {"_count": 1}, "make": {"_count": 1}, "sound": {"_count": 1}, "look": {"_count": 2}}, "seemed": {"_count": 45, "to": {"_count": 16}, "that": {"_count": 8}, "she": {"_count": 1}, "as": {"_count": 2}, "he": {"_count": 1}, "impossible": {"_count": 3}, "a": {"_count": 2}, "Fudge": {"_count": 1}, "however": {"_count": 2}, "incredible": {"_count": 1}, "plain": {"_count": 1}, "quite": {"_count": 1}, "extraordinary": {"_count": 1}, "hours": {"_count": 1}, "the": {"_count": 1}, "incredibly": {"_count": 1}, "most": {"_count": 1}, "like": {"_count": 1}}, "certainly": {"_count": 3, "seems": {"_count": 2}, "looked": {"_count": 1}}, "all": {"_count": 9, "gets": {"_count": 1}, "fits": {"_count": 2}, "comes": {"_count": 1}, "depends": {"_count": 1}, "stems": {"_count": 1}, "happened": {"_count": 1}, "makes": {"_count": 1}, "made": {"_count": 1}}, "had": {"_count": 76, "twelve": {"_count": 1}, "been": {"_count": 26}, "three": {"_count": 1}, "short": {"_count": 1}, "grown": {"_count": 1}, "snapped": {"_count": 1}, "absolutely": {"_count": 1}, "started": {"_count": 2}, "a": {"_count": 5}, "never": {"_count": 3}, "taken": {"_count": 2}, "happened": {"_count": 1}, "seemed": {"_count": 1}, "nine": {"_count": 2}, "seven": {"_count": 1}, "the": {"_count": 4}, "paintings": {"_count": 1}, "brought": {"_count": 1}, "stopped": {"_count": 1}, "administered": {"_count": 1}, "sucked": {"_count": 1}, "ter": {"_count": 1}, "just": {"_count": 2}, "flashed": {"_count": 1}, "vanished": {"_count": 1}, "better": {"_count": 1}, "probably": {"_count": 1}, "hurt": {"_count": 1}, "to": {"_count": 1}, "not": {"_count": 1}, "already": {"_count": 2}, "belonged": {"_count": 1}, "opened": {"_count": 1}, "little": {"_count": 1}, "seen": {"_count": 1}, "sensed": {"_count": 1}, "worked": {"_count": 1}}, "would": {"_count": 50, "be": {"_count": 14}, "have": {"_count": 20}, "take": {"_count": 2}, "explain": {"_count": 1}, "promote": {"_count": 1}, "not": {"_count": 5}, "completely": {"_count": 1}, "give": {"_count": 1}, "mean": {"_count": 1}, "never": {"_count": 1}, "tend": {"_count": 1}, "all": {"_count": 2}}, "grew": {"_count": 2, "steadily": {"_count": 1}, "larger": {"_count": 1}}, "looked": {"_count": 40, "as": {"_count": 17}, "like": {"_count": 8}, "very": {"_count": 2}, "quite": {"_count": 1}, "bad": {"_count": 1}, "oddly": {"_count": 1}, "normal": {"_count": 1}, "extremely": {"_count": 1}, "around": {"_count": 1}, "old": {"_count": 1}, "for": {"_count": 1}, "big": {"_count": 1}, "terrible": {"_count": 1}, "something": {"_count": 1}, "just": {"_count": 1}, "black": {"_count": 1}}, "wasnt": {"_count": 54, "bad": {"_count": 1}, "a": {"_count": 10}, "his": {"_count": 1}, "Mrs": {"_count": 1}, "going": {"_count": 1}, "until": {"_count": 2}, "exactly": {"_count": 1}, "really": {"_count": 1}, "ordinary": {"_count": 1}, "even": {"_count": 1}, "the": {"_count": 3}, "me": {"_count": 3}, "at": {"_count": 1}, "him": {"_count": 1}, "some": {"_count": 1}, "moving": {"_count": 1}, "serious": {"_count": 1}, "only": {"_count": 1}, "altogether": {"_count": 1}, "just": {"_count": 1}, "Dobby": {"_count": 1}, "her": {"_count": 1}, "hurting": {"_count": 1}, "as": {"_count": 3}, "your": {"_count": 2}, "very": {"_count": 2}, "anything": {"_count": 1}, "easy": {"_count": 1}, "that": {"_count": 2}, "right": {"_count": 1}, "kind": {"_count": 1}, "there": {"_count": 1}, "like": {"_count": 1}, "us": {"_count": 1}, "supposed": {"_count": 1}}, "could": {"_count": 16, "have": {"_count": 1}, "be": {"_count": 6}, "affect": {"_count": 1}, "not": {"_count": 6}, "talk": {"_count": 1}, "only": {"_count": 1}}, "winked": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "gave": {"_count": 5, "Harry": {"_count": 3}, "him": {"_count": 1}, "the": {"_count": 1}}, "turned": {"_count": 3, "out": {"_count": 3}}, "only": {"_count": 3, "took": {"_count": 1}, "put": {"_count": 1}, "missed": {"_count": 1}}, "started": {"_count": 3, "to": {"_count": 3}}, "filled": {"_count": 1, "the": {"_count": 1}}, "begins": {"_count": 1, "I": {"_count": 1}}, "took": {"_count": 32, "almost": {"_count": 1}, "several": {"_count": 1}, "perhaps": {"_count": 1}, "a": {"_count": 9}, "quite": {"_count": 1}, "Harry": {"_count": 4}, "them": {"_count": 8}, "ages": {"_count": 1}, "him": {"_count": 4}, "three": {"_count": 1}, "another": {"_count": 1}}, "sloped": {"_count": 1, "steeply": {"_count": 1}}, "says": {"_count": 7, "pewter": {"_count": 1}, "on": {"_count": 1}, "here": {"_count": 3}, "were": {"_count": 1}, "Ig": {"_count": 1}}, "seems": {"_count": 21, "only": {"_count": 1}, "almost": {"_count": 2}, "as": {"_count": 1}, "harsh": {"_count": 1}, "to": {"_count": 4}, "he": {"_count": 1}, "there": {"_count": 1}, "so": {"_count": 1}, "that": {"_count": 4}, "very": {"_count": 1}, "all": {"_count": 1}, "incredible": {"_count": 2}, "clear": {"_count": 1}}, "so": {"_count": 4, "happens": {"_count": 3}, "happened": {"_count": 1}}, "is": {"_count": 151, "very": {"_count": 3}, "": {"_count": 5}, "time": {"_count": 5}, "not": {"_count": 11}, "Firenze": {"_count": 1}, "a": {"_count": 19}, "in": {"_count": 1}, "used": {"_count": 1}, "also": {"_count": 3}, "my": {"_count": 9}, "with": {"_count": 4}, "likely": {"_count": 1}, "our": {"_count": 1}, "therefore": {"_count": 1}, "called": {"_count": 3}, "here": {"_count": 1}, "your": {"_count": 1}, "too": {"_count": 3}, "he": {"_count": 1}, "the": {"_count": 7}, "five": {"_count": 1}, "merely": {"_count": 1}, "decided": {"_count": 1}, "Uranus": {"_count": 1}, "most": {"_count": 2}, "possible": {"_count": 5}, "Dobby": {"_count": 1}, "traditional": {"_count": 1}, "chilly": {"_count": 1}, "unimportant": {"_count": 1}, "Veritaserum": {"_count": 1}, "clear": {"_count": 2}, "ready": {"_count": 1}, "back": {"_count": 1}, "NOT": {"_count": 2}, "this": {"_count": 1}, "alas": {"_count": 1}, "known": {"_count": 1}, "Fawkess": {"_count": 1}, "nice": {"_count": 1}, "one": {"_count": 3}, "true": {"_count": 3}, "enough": {"_count": 1}, "unwise": {"_count": 1}, "I": {"_count": 3}, "safe": {"_count": 1}, "indeed": {"_count": 1}, "impossible": {"_count": 2}, "probably": {"_count": 1}, "unusual": {"_count": 1}, "none": {"_count": 1}, "an": {"_count": 2}, "pretty": {"_count": 1}, "as": {"_count": 2}, "said": {"_count": 2}, "isnt": {"_count": 1}, "essential": {"_count": 2}, "Voldemort": {"_count": 1}, "natural": {"_count": 1}, "horrible": {"_count": 1}, "really": {"_count": 1}, "nearly": {"_count": 1}, "ze": {"_count": 1}, "happening": {"_count": 1}, "believed": {"_count": 1}, "you": {"_count": 1}, "against": {"_count": 1}, "partially": {"_count": 1}, "real": {"_count": 2}, "over": {"_count": 1}, "Neville": {"_count": 1}}, "showed": {"_count": 2, "a": {"_count": 2}}, "towered": {"_count": 1, "over": {"_count": 1}}, "bowed": {"_count": 1, "to": {"_count": 1}}, "happened": {"_count": 10, "very": {"_count": 1}, "again": {"_count": 1}, "right": {"_count": 1}, "in": {"_count": 2}, "immediately": {"_count": 1}, "there": {"_count": 1}, "just": {"_count": 2}, "most": {"_count": 1}}, "said": {"_count": 4, "in": {"_count": 1}, "Potter": {"_count": 1}, "The": {"_count": 1}, "Harry": {"_count": 1}}, "mightve": {"_count": 1, "been": {"_count": 1}}, "contains": {"_count": 2, "your": {"_count": 1}, "a": {"_count": 1}}, "kept": {"_count": 3, "wandering": {"_count": 1}, "crackling": {"_count": 1}, "aching": {"_count": 1}}, "waggled": {"_count": 1, "its": {"_count": 1}}, "lumbered": {"_count": 1, "around": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "roared": {"_count": 2, "again": {"_count": 1}, "like": {"_count": 1}}, "bit": {"_count": 2, "him": {"_count": 1}, "me": {"_count": 1}}, "stuck": {"_count": 1, "up": {"_count": 1}}, "well": {"_count": 1, "it": {"_count": 1}}, "shows": {"_count": 2, "us": {"_count": 2}}, "does": {"_count": 7, "not": {"_count": 6}, "said": {"_count": 1}}, "also": {"_count": 2, "produces": {"_count": 1}, "meant": {"_count": 1}}, "mustve": {"_count": 4, "cost": {"_count": 1}, "been": {"_count": 2}, "looked": {"_count": 1}}, "sneezed": {"_count": 1, "": {"_count": 1}}, "snapped": {"_count": 2, "at": {"_count": 1}, "loudly": {"_count": 1}}, "shouldnt": {"_count": 2, "be": {"_count": 1}, "take": {"_count": 1}}, "doesnt": {"_count": 21, "take": {"_count": 1}, "hurt": {"_count": 1}, "sound": {"_count": 1}, "matter": {"_count": 11}, "look": {"_count": 2}, "have": {"_count": 1}, "mean": {"_count": 1}, "just": {"_count": 1}, "Harry": {"_count": 1}, "make": {"_count": 1}}, "sounded": {"_count": 11, "as": {"_count": 8}, "like": {"_count": 1}, "amazing": {"_count": 1}, "to": {"_count": 1}}, "got": {"_count": 3, "to": {"_count": 1}, "me": {"_count": 1}, "smashed": {"_count": 1}}, "will": {"_count": 19, "be": {"_count": 8}, "need": {"_count": 1}, "happen": {"_count": 1}, "make": {"_count": 1}, "mean": {"_count": 1}, "take": {"_count": 1}, "not": {"_count": 1}, "I": {"_count": 1}, "probably": {"_count": 1}, "expect": {"_count": 1}, "retreat": {"_count": 1}, "spread": {"_count": 1}}, "sounds": {"_count": 8, "like": {"_count": 4}, "great": {"_count": 1}, "brilliant": {"_count": 1}, "perfect": {"_count": 1}, "as": {"_count": 1}}, "felt": {"_count": 15, "as": {"_count": 7}, "wonderful": {"_count": 2}, "to": {"_count": 1}, "like": {"_count": 2}, "very": {"_count": 2}, "most": {"_count": 1}}, "put": {"_count": 2, "its": {"_count": 2}}, "takes": {"_count": 3, "a": {"_count": 2}, "years": {"_count": 1}}, "did": {"_count": 26, "not": {"_count": 17}, "one": {"_count": 1}, "The": {"_count": 1}, "nothing": {"_count": 2}, "": {"_count": 1}, "said": {"_count": 1}, "what": {"_count": 1}, "for": {"_count": 2}}, "wouldnt": {"_count": 6, "be": {"_count": 4}, "do": {"_count": 1}, "stop": {"_count": 1}}, "drives": {"_count": 1, "Mum": {"_count": 1}}, "flew": {"_count": 4, "twenty": {"_count": 1}, "into": {"_count": 1}, "some": {"_count": 1}, "through": {"_count": 1}}, "cant": {"_count": 6, "be": {"_count": 4}, "have": {"_count": 1}, "exist": {"_count": 1}}, "definitely": {"_count": 2, "wasnt": {"_count": 1}, "didnt": {"_count": 1}}, "transforms": {"_count": 1, "you": {"_count": 1}}, "wears": {"_count": 1, "off": {"_count": 1}}, "hasnt": {"_count": 6, "gone": {"_count": 1}, "got": {"_count": 1}, "been": {"_count": 2}, "really": {"_count": 1}, "exactly": {"_count": 1}}, "burned": {"_count": 2, "Harrys": {"_count": 1}, "me": {"_count": 1}}, "means": {"_count": 13, "said": {"_count": 1}, "that": {"_count": 2}, "\u2018pickax": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 2}, "theyre": {"_count": 1}, "\u2018partnership": {"_count": 1}, "me": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "matters": {"_count": 4, "said": {"_count": 1}, "because": {"_count": 1}, "not": {"_count": 2}}, "opened": {"_count": 2, "silently": {"_count": 1}, "its": {"_count": 1}}, "hung": {"_count": 1, "limply": {"_count": 1}}, "wasn": {"_count": 2, "Harry": {"_count": 1}, "easy": {"_count": 1}}, "looks": {"_count": 15, "like": {"_count": 7}, "to": {"_count": 2}, "fine": {"_count": 1}, "wonderful": {"_count": 1}, "poisonous": {"_count": 1}, "as": {"_count": 1}, "unsafe": {"_count": 1}, "he": {"_count": 1}}, "tasted": {"_count": 1, "like": {"_count": 1}}, "never": {"_count": 1, "killed": {"_count": 1}}, "wont": {"_count": 10, "matter": {"_count": 2}, "come": {"_count": 1}, "be": {"_count": 3}, "do": {"_count": 1}, "work": {"_count": 1}, "happen": {"_count": 1}, "take": {"_count": 1}}, "lay": {"_count": 1, "clenched": {"_count": 1}}, "has": {"_count": 16, "happened": {"_count": 3}, "nothing": {"_count": 1}, "been": {"_count": 3}, "passed": {"_count": 1}, "to": {"_count": 2}, "a": {"_count": 1}, "everything": {"_count": 1}, "known": {"_count": 1}, "certain": {"_count": 1}, "learned": {"_count": 1}, "not": {"_count": 1}}, "made": {"_count": 8, "the": {"_count": 2}, "a": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}, "no": {"_count": 2}, "Harrys": {"_count": 1}}, "dropped": {"_count": 1, "the": {"_count": 1}}, "sat": {"_count": 1, "still": {"_count": 1}}, "lunged": {"_count": 2, "blindly": {"_count": 1}, "again": {"_count": 1}}, "struck": {"_count": 3, "Harry": {"_count": 1}, "him": {"_count": 1}, "and": {"_count": 1}}, "went": {"_count": 1, "haywire": {"_count": 1}}, "can": {"_count": 4, "take": {"_count": 1}, "said": {"_count": 1}, "now": {"_count": 1}, "stay": {"_count": 1}}, "heard": {"_count": 1, "me": {"_count": 1}}, "it": {"_count": 6, "doesnt": {"_count": 2}, "wasnt": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}, "is": {"_count": 1}}, "stood": {"_count": 2, "a": {"_count": 1}, "on": {"_count": 1}}, "came": {"_count": 7, "from": {"_count": 2}, "as": {"_count": 4}, "out": {"_count": 1}}, "stayed": {"_count": 1, "blank": {"_count": 1}}, "couldnt": {"_count": 2, "be": {"_count": 1}, "walk": {"_count": 1}}, "still": {"_count": 1, "had": {"_count": 1}}, "goes": {"_count": 1, "off": {"_count": 1}}, "makes": {"_count": 5, "me": {"_count": 1}, "such": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "absolute": {"_count": 1}}, "served": {"_count": 1, "him": {"_count": 1}}, "used": {"_count": 2, "to": {"_count": 2}}, "closed": {"_count": 1, "behind": {"_count": 1}}, "hurt": {"_count": 3, "a": {"_count": 1}, "because": {"_count": 1}, "": {"_count": 1}}, "stopped": {"_count": 2, "on": {"_count": 1}, "beside": {"_count": 1}}, "isnt": {"_count": 14, "funny": {"_count": 1}, "clothes": {"_count": 1}, "true": {"_count": 1}, "being": {"_count": 1}, "the": {"_count": 2}, "our": {"_count": 1}, "Lavender": {"_count": 2}, "a": {"_count": 1}, "your": {"_count": 1}, "": {"_count": 1}, "me": {"_count": 1}, "on": {"_count": 1}}, "suddenly": {"_count": 1, "occurred": {"_count": 1}}, "hit": {"_count": 4, "him": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "Mundungus": {"_count": 1}}, "requires": {"_count": 1, "a": {"_count": 1}}, "scared": {"_count": 1, "the": {"_count": 1}}, "wouldve": {"_count": 3, "been": {"_count": 2}, "just": {"_count": 1}}, "stretched": {"_count": 3, "out": {"_count": 1}, "its": {"_count": 1}, "across": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "most": {"_count": 1, "certainly": {"_count": 1}}, "leaves": {"_count": 1, "me": {"_count": 1}}, "returned": {"_count": 1, "in": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "worked": {"_count": 3, "fairly": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}}, "now": {"_count": 3, "occurred": {"_count": 1}, "seemed": {"_count": 1}, "dawned": {"_count": 1}}, "featured": {"_count": 1, "a": {"_count": 1}}, "fluttered": {"_count": 2, "every": {"_count": 1}, "down": {"_count": 1}}, "comes": {"_count": 3, "down": {"_count": 2}, "out": {"_count": 1}}, "surely": {"_count": 1, "wasnt": {"_count": 1}}, "becomes": {"_count": 1, "easier": {"_count": 1}}, "woke": {"_count": 1, "me": {"_count": 1}}, "contained": {"_count": 2, "a": {"_count": 1}, "two": {"_count": 1}}, "shivered": {"_count": 1, "in": {"_count": 1}}, "shouldve": {"_count": 2, "been": {"_count": 2}}, "az": {"_count": 1, "been": {"_count": 1}}, "cost": {"_count": 1, "him": {"_count": 1}}, "pays": {"_count": 1, "to": {"_count": 1}}, "happens": {"_count": 3, "all": {"_count": 1}, "young": {"_count": 1}, "sometimes": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "smelled": {"_count": 1, "like": {"_count": 1}}, "explained": {"_count": 2, "a": {"_count": 1}, "much": {"_count": 1}}, "ought": {"_count": 2, "to": {"_count": 2}}, "soared": {"_count": 1, "in": {"_count": 1}}, "may": {"_count": 3, "be": {"_count": 1}, "take": {"_count": 1}, "even": {"_count": 1}}, "pains": {"_count": 1, "me": {"_count": 1}}, "appeared": {"_count": 2, "that": {"_count": 1}, "at": {"_count": 1}}, "saved": {"_count": 1, "my": {"_count": 1}}, "became": {"_count": 2, "clear": {"_count": 1}, "a": {"_count": 1}}, "helps": {"_count": 1, "with": {"_count": 1}}, "rumbled": {"_count": 1, "around": {"_count": 1}}, "appears": {"_count": 3, "that": {"_count": 3}}, "rings": {"_count": 1, "a": {"_count": 1}}, "cannot": {"_count": 2, "": {"_count": 1}, "be": {"_count": 1}}, "too": {"_count": 2, "opened": {"_count": 1}, "had": {"_count": 1}}, "unscrews": {"_count": 1, "the": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "swung": {"_count": 3, "open": {"_count": 2}, "forward": {"_count": 1}}, "remained": {"_count": 2, "as": {"_count": 1}, "where": {"_count": 1}}, "passed": {"_count": 1, "right": {"_count": 1}}, "crumbled": {"_count": 1, "away": {"_count": 1}}, "jangled": {"_count": 1, "and": {"_count": 1}}, "smashed": {"_count": 2, "and": {"_count": 1}, "shelves": {"_count": 1}}, "shattered": {"_count": 1, "into": {"_count": 1}}, "broke": {"_count": 1, "apart": {"_count": 1}}, "meant": {"_count": 1, "said": {"_count": 1}}, "always": {"_count": 1, "does": {"_count": 1}}, "leapt": {"_count": 1, "from": {"_count": 1}}, "led": {"_count": 1, "as": {"_count": 1}}, "bounced": {"_count": 1, "onto": {"_count": 1}}, "zoomed": {"_count": 1, "around": {"_count": 1}}, "couldve": {"_count": 1, "been": {"_count": 1}}, "soon": {"_count": 1, "became": {"_count": 1}}, "sprang": {"_count": 2, "to": {"_count": 1}, "out": {"_count": 1}}, "lived": {"_count": 1, "in": {"_count": 1}}, "confirms": {"_count": 1, "the": {"_count": 1}}, "suggested": {"_count": 1, "that": {"_count": 1}}, "really": {"_count": 2, "was": {"_count": 1}, "is": {"_count": 1}}, "released": {"_count": 1, "him": {"_count": 1}}, "spoke": {"_count": 2, "very": {"_count": 1}, "of": {"_count": 1}}, "rose": {"_count": 1, "seemingly": {"_count": 1}}, "placed": {"_count": 1, "him": {"_count": 1}}, "fell": {"_count": 1, "right": {"_count": 1}}, "warns": {"_count": 1, "in": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "provided": {"_count": 1, "a": {"_count": 1}}, "carries": {"_count": 2, "an": {"_count": 1}, "a": {"_count": 1}}, "occurs": {"_count": 1, "to": {"_count": 1}}, "belongs": {"_count": 4, "to": {"_count": 3}, "with": {"_count": 1}}, "chose": {"_count": 1, "him": {"_count": 1}}, "singed": {"_count": 1, "a": {"_count": 1}}, "left": {"_count": 1, "nearly": {"_count": 1}}, "gazed": {"_count": 1, "blindly": {"_count": 1}}, "scuttled": {"_count": 1, "away": {"_count": 1}}, "cracked": {"_count": 1, "with": {"_count": 1}}, "attacked": {"_count": 1, "him": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "keeps": {"_count": 1, "cropping": {"_count": 1}}, "lists": {"_count": 1, "the": {"_count": 1}}, "cheered": {"_count": 1, "her": {"_count": 1}}, "feels": {"_count": 1, "all": {"_count": 1}}, "washes": {"_count": 1, "away": {"_count": 1}}, "climbed": {"_count": 1, "steadily": {"_count": 1}}, "tore": {"_count": 1, "at": {"_count": 1}}, "destroyed": {"_count": 1, "her": {"_count": 1}}, "melted": {"_count": 1, "away": {"_count": 1}}, "brought": {"_count": 1, "friends": {"_count": 1}}, "troubled": {"_count": 1, "him": {"_count": 1}}, "cantered": {"_count": 1, "forward": {"_count": 1}}, "jabbed": {"_count": 1, "at": {"_count": 1}}, "lifted": {"_count": 1, "an": {"_count": 1}}}, "corner": {"_count": 280, "of": {"_count": 70, "the": {"_count": 28}, "Privet": {"_count": 3}, "his": {"_count": 23}, "her": {"_count": 5}, "Hagrid": {"_count": 1}, "Snapes": {"_count": 1}, "which": {"_count": 1}, "their": {"_count": 1}, "The": {"_count": 1}, "Rons": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 2}, "whose": {"_count": 1}, "London": {"_count": 1}}, "and": {"_count": 33, "up": {"_count": 1}, "saw": {"_count": 4}, "found": {"_count": 3}, "she": {"_count": 1}, "blocked": {"_count": 1}, "the": {"_count": 2}, "working": {"_count": 1}, "there": {"_count": 2}, "continued": {"_count": 1}, "a": {"_count": 2}, "vanished": {"_count": 1}, "Sirius": {"_count": 1}, "returned": {"_count": 1}, "was": {"_count": 1}, "when": {"_count": 1}, "they": {"_count": 1}, "slammed": {"_count": 1}, "almost": {"_count": 1}, "Mr": {"_count": 1}, "disappear": {"_count": 1}, "gave": {"_count": 1}, "out": {"_count": 1}, "vanishing": {"_count": 1}, "with": {"_count": 1}, "Grawp": {"_count": 1}}, "the": {"_count": 3, "cat": {"_count": 1}, "first": {"_count": 1}, "flames": {"_count": 1}}, "he": {"_count": 3, "stopped": {"_count": 1}, "saw": {"_count": 2}}, "at": {"_count": 2, "the": {"_count": 2}}, "was": {"_count": 1, "Dudleys": {"_count": 1}}, "": {"_count": 45, ".": {"_count": 44}, "?": {"_count": 1}}, "drinking": {"_count": 1, "tiny": {"_count": 1}}, "stood": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 2}}, "they": {"_count": 3, "heard": {"_count": 2}, "distinctly": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "crouched": {"_count": 1, "Dobby": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 5, "fire": {"_count": 1}, "few": {"_count": 1}, "short": {"_count": 1}, "haze": {"_count": 1}, "large": {"_count": 1}}, "into": {"_count": 8, "the": {"_count": 3}, "a": {"_count": 1}, "Magnolia": {"_count": 2}, "her": {"_count": 1}, "Dumbledores": {"_count": 1}}, "cabinet": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 9, "he": {"_count": 2}, "the": {"_count": 1}, "Harry": {"_count": 4}, "Ron": {"_count": 1}, "a": {"_count": 1}}, "behind": {"_count": 3, "a": {"_count": 1}, "which": {"_count": 1}, "him": {"_count": 1}}, "now": {"_count": 1, "twisting": {"_count": 1}}, "devoted": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "peeling": {"_count": 1}, "the": {"_count": 1}}, "looking": {"_count": 2, "nearly": {"_count": 1}, "morose": {"_count": 1}}, "showed": {"_count": 1, "that": {"_count": 1}}, "chomping": {"_count": 1, "on": {"_count": 1}}, "then": {"_count": 2, "took": {"_count": 1}, "started": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 2, "looked": {"_count": 1}, "saw": {"_count": 1}}, "prodding": {"_count": 1, "little": {"_count": 1}}, "however": {"_count": 1, "sat": {"_count": 1}}, "quills": {"_count": 1, "out": {"_count": 1}}, "she": {"_count": 2, "Bill": {"_count": 1}, "was": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "while": {"_count": 1, "Hermione": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 2}, "an": {"_count": 1}, "Mundungus": {"_count": 1}}, "on": {"_count": 2, "a": {"_count": 2}}, "neither": {"_count": 1, "of": {"_count": 1}}, "Snapes": {"_count": 1, "office": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "opened": {"_count": 2, "and": {"_count": 1}, "yet": {"_count": 1}}, "conversing": {"_count": 1, "with": {"_count": 1}}, "walked": {"_count": 2, "through": {"_count": 1}, "slap": {"_count": 1}}, "shop": {"_count": 1, "at": {"_count": 1}}, "which": {"_count": 2, "swallowed": {"_count": 1}, "broke": {"_count": 1}}, "coughing": {"_count": 1, "up": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "toward": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "making": {"_count": 1, "notes": {"_count": 1}}, "beside": {"_count": 3, "the": {"_count": 2}, "Slughorn": {"_count": 1}}, "their": {"_count": 1, "cloak": {"_count": 1}}, "weve": {"_count": 1, "replaced": {"_count": 1}}, "you": {"_count": 2, "after": {"_count": 1}, "at": {"_count": 1}}, "clanged": {"_count": 1, "like": {"_count": 1}}, "opposite": {"_count": 1, "the": {"_count": 1}}, "glinted": {"_count": 1, "small": {"_count": 1}}, "to": {"_count": 2, "wait": {"_count": 1}, "be": {"_count": 1}}, "each": {"_count": 1, "topped": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "breathless": {"_count": 1, "but": {"_count": 1}}, "from": {"_count": 1, "here": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "passing": {"_count": 1, "a": {"_count": 1}}, "Malfoy": {"_count": 1, "sniggered": {"_count": 1}}, "cupboard": {"_count": 1, "and": {"_count": 1}}, "muttering": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "massaging": {"_count": 1, "her": {"_count": 1}}, "that": {"_count": 2, "they": {"_count": 1}, "a": {"_count": 1}}, "clearly": {"_count": 1, "muttering": {"_count": 1}}, "her": {"_count": 2, "sunken": {"_count": 1}, "fluffy": {"_count": 1}}, "hunchbacked": {"_count": 1, "his": {"_count": 1}}, "apparently": {"_count": 1, "under": {"_count": 1}}, "Slughorn": {"_count": 1, "but": {"_count": 1}}, "his": {"_count": 1, "trainers": {"_count": 1}}, "wringing": {"_count": 1, "out": {"_count": 1}}, "slipped": {"_count": 1, "off": {"_count": 1}}, "glanced": {"_count": 1, "at": {"_count": 1}}, "again": {"_count": 1, "shaking": {"_count": 1}}, "gliding": {"_count": 1, "noiselessly": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Percy": {"_count": 1, "let": {"_count": 1}}, "ragged": {"_count": 1, "and": {"_count": 1}}, "seat": {"_count": 1, "beside": {"_count": 1}}}, "first": {"_count": 924, "sign": {"_count": 1, "of": {"_count": 1}}, "thing": {"_count": 17, "he": {"_count": 3}, "you": {"_count": 1}, "tomorrow": {"_count": 2}, "they": {"_count": 3}, "youd": {"_count": 1}, "this": {"_count": 2}, "youre": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}}, "bicycle": {"_count": 1, "on": {"_count": 1}}, "noise": {"_count": 1, "of": {"_count": 1}}, "question": {"_count": 5, "he": {"_count": 1}, "we": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}}, "rule": {"_count": 1, "for": {"_count": 1}}, "time": {"_count": 139, "in": {"_count": 35}, "out": {"_count": 1}, "": {"_count": 14}, "something": {"_count": 2}, "on": {"_count": 2}, "he": {"_count": 16}, "I": {"_count": 2}, "Hermione": {"_count": 1}, "a": {"_count": 4}, "an": {"_count": 1}, "hed": {"_count": 2}, "at": {"_count": 1}, "she": {"_count": 3}, "Snape": {"_count": 1}, "since": {"_count": 10}, "my": {"_count": 1}, "ever": {"_count": 6}, "Ive": {"_count": 1}, "Apparated": {"_count": 1}, "Harry": {"_count": 4}, "right": {"_count": 1}, "why": {"_count": 1}, "was": {"_count": 1}, "all": {"_count": 1}, "either": {"_count": 1}, "well": {"_count": 1}, "youd": {"_count": 1}, "we": {"_count": 1}, "that": {"_count": 4}, "He": {"_count": 1}, "there": {"_count": 2}, "Dumbledore": {"_count": 2}, "as": {"_count": 1}, "and": {"_count": 3}, "Riddle": {"_count": 1}, "said": {"_count": 1}, "Voldemort": {"_count": 1}, "for": {"_count": 2}, "pulling": {"_count": 1}, "it": {"_count": 1}, "Rons": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 89, ".": {"_count": 69}, "?": {"_count": 11}, "!": {"_count": 9}}, "day": {"_count": 19, "at": {"_count": 6}, "back": {"_count": 6}, "of": {"_count": 4}, "here": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}}, "line": {"_count": 1, "": {"_count": 1}}, "bedroom": {"_count": 1, "": {"_count": 1}}, "letter": {"_count": 1, "": {"_count": 1}}, "six": {"_count": 1, "fat": {"_count": 1}}, "stop": {"_count": 1, "fer": {"_count": 1}}, "they": {"_count": 3, "just": {"_count": 1}, "leaned": {"_count": 1}, "came": {"_count": 1}}, "he": {"_count": 8, "thought": {"_count": 2}, "had": {"_count": 1}, "said": {"_count": 1}, "gave": {"_count": 1}, "was": {"_count": 2}, "owed": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "years": {"_count": 57, "cant": {"_count": 1}, "into": {"_count": 2}, "": {"_count": 12}, "and": {"_count": 5}, "up": {"_count": 2}, "followed": {"_count": 1}, "never": {"_count": 2}, "arent": {"_count": 1}, "coming": {"_count": 1}, "could": {"_count": 1}, "filing": {"_count": 1}, "are": {"_count": 1}, "were": {"_count": 3}, "which": {"_count": 1}, "to": {"_count": 3}, "Professor": {"_count": 1}, "looked": {"_count": 1}, "stared": {"_count": 1}, "losing": {"_count": 1}, "who": {"_count": 2}, "must": {"_count": 1}, "entered": {"_count": 1}, "lined": {"_count": 1}, "faces": {"_count": 1}, "names": {"_count": 1}, "thinned": {"_count": 1}, "where": {"_count": 1}, "all": {"_count": 1}, "I": {"_count": 1}, "gathered": {"_count": 1}, "for": {"_count": 2}, "but": {"_count": 1}, "running": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "few": {"_count": 3, "carriages": {"_count": 1}, "pages": {"_count": 1}, "words": {"_count": 1}}, "and": {"_count": 25, "then": {"_count": 3}, "he": {"_count": 1}, "hes": {"_count": 1}, "second": {"_count": 5}, "they": {"_count": 1}, "last": {"_count": 1}, "asks": {"_count": 1}, "most": {"_count": 1}, "were": {"_count": 1}, "if": {"_count": 1}, "counting": {"_count": 1}, "er": {"_count": 1}, "seized": {"_count": 1}, "oddly": {"_count": 1}, "only": {"_count": 1}, "when": {"_count": 1}, "Ron": {"_count": 1}, "Harrys": {"_count": 1}, "best": {"_count": 1}}, "twin": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 20, "come": {"_count": 1}, "the": {"_count": 1}, "reach": {"_count": 3}, "rise": {"_count": 1}, "die": {"_count": 1}, "arrive": {"_count": 1}, "wear": {"_count": 1}, "hear": {"_count": 1}, "return": {"_count": 1}, "go": {"_count": 1}, "Sirius": {"_count": 1}, "ascend": {"_count": 1}, "awake": {"_count": 1}, "receive": {"_count": 1}, "confirm": {"_count": 1}, "meet": {"_count": 1}, "great": {"_count": 1}, "\u2018Purebloods": {"_count": 1}}, "boats": {"_count": 1, "reached": {"_count": 1}}, "thought": {"_count": 3, "was": {"_count": 3}}, "new": {"_count": 1, "Gryffindor": {"_count": 1}}, "morning": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "class": {"_count": 5, "he": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "though": {"_count": 1}, "had": {"_count": 1}}, "week": {"_count": 11, "": {"_count": 2}, "why": {"_count": 1}, "of": {"_count": 5}, "back": {"_count": 3}}, "Potions": {"_count": 2, "lesson": {"_count": 2}}, "lessons": {"_count": 1, "": {"_count": 1}}, "flying": {"_count": 1, "lesson": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 2}}, "training": {"_count": 2, "session": {"_count": 2}}, "spell": {"_count": 1, "that": {"_count": 1}}, "match": {"_count": 4, "after": {"_count": 2}, "on": {"_count": 1}, "": {"_count": 1}}, "Quidditch": {"_count": 8, "match": {"_count": 8}}, "one": {"_count": 10, "I": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}, "whos": {"_count": 1}, "was": {"_count": 1}, "she": {"_count": 1}, "open": {"_count": 1}, "came": {"_count": 1}, "Hagrid": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "really": {"_count": 1, "fine": {"_count": 1}}, "floor": {"_count": 10, "where": {"_count": 1}, "said": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 1}, "landing": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "second": {"_count": 1}, "": {"_count": 2}}, "Gryffindors": {"_count": 1, "passing": {"_count": 1}}, "victims": {"_count": 1, "he": {"_count": 1}}, "place": {"_count": 35, "": {"_count": 15}, "Harry": {"_count": 2}, "with": {"_count": 2}, "said": {"_count": 2}, "then": {"_count": 1}, "I": {"_count": 1}, "\u25a0": {"_count": 1}, "so": {"_count": 1}, "now": {"_count": 1}, "though": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}, "Ill": {"_count": 1}, "but": {"_count": 1}, "you": {"_count": 1}, "Hermione": {"_count": 1}, "Fred": {"_count": 1}}, "night": {"_count": 4, "he": {"_count": 1}, "of": {"_count": 1}, "I": {"_count": 1}, "when": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "note": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 1}, "wants": {"_count": 1}}, "words": {"_count": 3, "": {"_count": 1}, "out": {"_count": 1}, "of": {"_count": 1}}, "in": {"_count": 3, "chess": {"_count": 1}, "line": {"_count": 1}, "your": {"_count": 1}}, "real": {"_count": 2, "shock": {"_count": 1}, "home": {"_count": 1}}, "sight": {"_count": 2, "Hermione": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 2}, "Mrs": {"_count": 1}, "Rita": {"_count": 1}, "Dumbledore": {"_count": 1}}, "year": {"_count": 27, "at": {"_count": 4}, "taking": {"_count": 1}, "Creevey": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "then": {"_count": 1}, "didnt": {"_count": 1}, "up": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}, "inserting": {"_count": 1}, "by": {"_count": 1}, "you": {"_count": 1}, "Yeh": {"_count": 1}, "said": {"_count": 3}, "instead": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 1}, "again": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "darted": {"_count": 1}}, "couple": {"_count": 3, "of": {"_count": 3}}, "it": {"_count": 2, "looked": {"_count": 1}, "was": {"_count": 1}}, "Whos": {"_count": 1, "Errol": {"_count": 1}}, "taste": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "board": {"_count": 1, "took": {"_count": 1}}, "ones": {"_count": 2, "to": {"_count": 1}, "screeching": {"_count": 1}}, "Neville": {"_count": 1, "said": {"_count": 1}}, "spells": {"_count": 1, "": {"_count": 1}}, "glass": {"_count": 1, "": {"_count": 1}}, "page": {"_count": 3, "he": {"_count": 1}, "of": {"_count": 2}}, "evening": {"_count": 2, "back": {"_count": 1}, "as": {"_count": 1}}, "person": {"_count": 6, "to": {"_count": 3}, "she": {"_count": 1}, "ever": {"_count": 1}, "Riddle": {"_count": 1}}, "lesson": {"_count": 12, "": {"_count": 3}, "Transfiguration": {"_count": 1}, "to": {"_count": 1}, "so": {"_count": 1}, "History": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "Draught": {"_count": 1}}, "attack": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 17, "June": {"_count": 1}, "two": {"_count": 1}, "September": {"_count": 5}, "all": {"_count": 3}, "our": {"_count": 1}, "March": {"_count": 1}, "the": {"_count": 4}, "very": {"_count": 1}}, "exam": {"_count": 2, "Professor": {"_count": 1}, "Theory": {"_count": 1}}, "Ron": {"_count": 1, "snarled": {"_count": 1}}, "unexpected": {"_count": 1, "sound": {"_count": 1}}, "ever": {"_count": 4, "birthday": {"_count": 1}, "Care": {"_count": 1}, "D": {"_count": 1}, "Quidditch": {"_count": 1}}, "name": {"_count": 6, "that": {"_count": 1}, "": {"_count": 3}, "terms": {"_count": 1}, "Tom": {"_count": 1}}, "because": {"_count": 2, "Mum": {"_count": 1}, "she": {"_count": 1}}, "with": {"_count": 3, "Harry": {"_count": 1}, "She": {"_count": 1}, "Mr": {"_count": 1}}, "train": {"_count": 1, "journey": {"_count": 1}}, "game": {"_count": 1, "of": {"_count": 1}}, "term": {"_count": 2, "will": {"_count": 1}, "at": {"_count": 1}}, "cup": {"_count": 1, "would": {"_count": 1}}, "Divination": {"_count": 2, "class": {"_count": 1}, "lesson": {"_count": 1}}, "shock": {"_count": 2, "of": {"_count": 1}, "was": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 1}, "meeting": {"_count": 1}}, "stage": {"_count": 1, "of": {"_count": 1}}, "what": {"_count": 1, "would": {"_count": 1}}, "once": {"_count": 1, "they": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "flash": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "which": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "ridden": {"_count": 1, "a": {"_count": 1}}, "broom": {"_count": 1, "ride": {"_count": 1}}, "found": {"_count": 2, "out": {"_count": 2}}, "goal": {"_count": 3, "of": {"_count": 1}, "": {"_count": 2}}, "SMACK": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "peer": {"_count": 1}, "take": {"_count": 1}}, "Saturday": {"_count": 1, "after": {"_count": 1}}, "column": {"_count": 1, "read": {"_count": 1}}, "true": {"_count": 1, "smile": {"_count": 1}}, "voice": {"_count": 1, "nervously": {"_count": 1}}, "visit": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 5, "listened": {"_count": 1}, "watched": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "field": {"_count": 1, "you": {"_count": 1}}, "tent": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 3, "offered": {"_count": 1}, "wish": {"_count": 1}, "thought": {"_count": 1}}, "journey": {"_count": 1, "to": {"_count": 1}}, "Dont": {"_count": 1, "you": {"_count": 1}}, "course": {"_count": 2, "vanished": {"_count": 1}, "his": {"_count": 1}}, "established": {"_count": 1, "some": {"_count": 1}}, "attempt": {"_count": 8, "and": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "during": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}, "was": {"_count": 1}}, "meeting": {"_count": 7, "": {"_count": 3}, "was": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "they": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "instructions": {"_count": 1, "": {"_count": 1}}, "task": {"_count": 26, "": {"_count": 10}, "is": {"_count": 2}, "will": {"_count": 1}, "was": {"_count": 2}, "seemed": {"_count": 1}, "all": {"_count": 1}, "much": {"_count": 1}, "shes": {"_count": 1}, "and": {"_count": 3}, "he": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}, "if": {"_count": 1}}, "challenge": {"_count": 1, "armed": {"_count": 1}}, "is": {"_count": 1, "over": {"_count": 1}}, "tasks": {"_count": 1, "my": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 1, "he": {"_count": 1}}, "bit": {"_count": 1, "is": {"_count": 1}}, "just": {"_count": 1, "go": {"_count": 1}}, "this": {"_count": 2, "way": {"_count": 1}, "time": {"_count": 1}}, "aid": {"_count": 1, "tent": {"_count": 1}}, "judge": {"_count": 1, "Madame": {"_count": 1}}, "heard": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "arrived": {"_count": 4, "at": {"_count": 3}, "": {"_count": 1}}, "step": {"_count": 4, "back": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "toward": {"_count": 1}}, "chance": {"_count": 3, "if": {"_count": 1}, "weve": {"_count": 1}, "": {"_count": 1}}, "gulp": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "assuring": {"_count": 1, "them": {"_count": 1}}, "bore": {"_count": 1, "the": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "met": {"_count": 5, "him": {"_count": 2}, "three": {"_count": 1}, "you": {"_count": 1}, "of": {"_count": 1}}, "champion": {"_count": 1, "to": {"_count": 1}}, "stars": {"_count": 2, "were": {"_count": 2}}, "was": {"_count": 1, "now": {"_count": 1}}, "guess": {"_count": 1, "I": {"_count": 1}}, "gets": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 4, "cup": {"_count": 1}, "Wizengamot": {"_count": 1}, "phoenix": {"_count": 1}, "Willow": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 1}, "wand": {"_count": 1}}, "key": {"_count": 1, "in": {"_count": 1}}, "You": {"_count": 1, "needed": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "acknowledge": {"_count": 1, "the": {"_count": 1}}, "item": {"_count": 1, "on": {"_count": 1}}, "clapped": {"_count": 1, "eyes": {"_count": 1}}, "punching": {"_count": 1, "bag": {"_count": 1}}, "seen": {"_count": 1, "Sirius": {"_count": 1}}, "owl": {"_count": 2, "he": {"_count": 1}, "landed": {"_count": 1}}, "signal": {"_count": 1, "": {"_count": 1}}, "job": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "landing": {"_count": 4, "": {"_count": 1}, "he": {"_count": 2}, "where": {"_count": 1}}, "impression": {"_count": 1, "can": {"_count": 1}}, "dementor": {"_count": 1, "and": {"_count": 1}}, "hearing": {"_count": 1, "the": {"_count": 1}}, "placing": {"_count": 1, "it": {"_count": 1}}, "distant": {"_count": 1, "glimpse": {"_count": 1}}, "sting": {"_count": 1, "of": {"_count": 1}}, "upon": {"_count": 1, "Professor": {"_count": 1}}, "Hogsmeade": {"_count": 1, "weekend": {"_count": 1}}, "ten": {"_count": 2, "minutes": {"_count": 1}, "was": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "message": {"_count": 1, "vanished": {"_count": 1}}, "fifteen": {"_count": 1, "minutes": {"_count": 1}}, "detention": {"_count": 1, "with": {"_count": 1}}, "weekend": {"_count": 1, "in": {"_count": 1}}, "glance": {"_count": 4, "to": {"_count": 3}, "the": {"_count": 1}}, "choice": {"_count": 2, "of": {"_count": 2}}, "half": {"_count": 2, "hour": {"_count": 1}, "of": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "joined": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 1, "by": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "convinced": {"_count": 1, "that": {"_count": 1}}, "test": {"_count": 3, "for": {"_count": 1}, "as": {"_count": 1}, "date": {"_count": 1}}, "glimpse": {"_count": 1, "of": {"_count": 1}}, "horse": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 1, "something": {"_count": 1}}, "volume": {"_count": 2, "eagerly": {"_count": 1}, "of": {"_count": 1}}, "though": {"_count": 1, "There": {"_count": 1}}, "opportunity": {"_count": 3, "he": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "foray": {"_count": 1, "into": {"_count": 1}}, "Occlumency": {"_count": 1, "lesson": {"_count": 1}}, "how": {"_count": 1, "sorry": {"_count": 1}}, "afternoon": {"_count": 1, "as": {"_count": 1}}, "dinner": {"_count": 1, "in": {"_count": 1}}, "save": {"_count": 1, "of": {"_count": 1}}, "Supreme": {"_count": 1, "Mugwump": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}, "faint": {"_count": 1, "sign": {"_count": 1}}, "trees": {"_count": 1, "Harry": {"_count": 1}}, "room": {"_count": 1, "the": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "tier": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 5, "walked": {"_count": 1}, "they": {"_count": 2}, "when": {"_count": 1}, "wont": {"_count": 1}}, "part": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 2}}, "cough": {"_count": 1, "from": {"_count": 1}}, "foolish": {"_count": 1, "thought": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "taken": {"_count": 1, "up": {"_count": 1}}, "told": {"_count": 1, "Harry": {"_count": 1}}, "encounter": {"_count": 2, "but": {"_count": 1}, "with": {"_count": 1}}, "hurdle": {"_count": 1, "of": {"_count": 1}}, "five": {"_count": 1, "applicants": {"_count": 1}}, "full": {"_count": 1, "practice": {"_count": 1}}, "trip": {"_count": 1, "of": {"_count": 1}}, "door": {"_count": 1, "in": {"_count": 1}}, "nor": {"_count": 1, "will": {"_count": 1}}, "pod": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "Captain": {"_count": 1}}, "Gryffindor": {"_count": 1, "had": {"_count": 1}}, "unlocked": {"_count": 1, "classroom": {"_count": 1}}, "took": {"_count": 1, "over": {"_count": 1}}, "Death": {"_count": 2, "Eaters": {"_count": 1}, "Eater": {"_count": 1}}, "circuit": {"_count": 1, "of": {"_count": 1}}, "Apparition": {"_count": 1, "lesson": {"_count": 1}}, "knock": {"_count": 1, "wearing": {"_count": 1}}, "Lavender": {"_count": 1, "had": {"_count": 1}}, "approached": {"_count": 1, "Professor": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "two": {"_count": 1, "paragraphs": {"_count": 1}}, "clear": {"_count": 1, "skies": {"_count": 1}}, "bottle": {"_count": 1, "into": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}, "cast": {"_count": 1, "the": {"_count": 1}}, "Hed": {"_count": 1, "hit": {"_count": 1}}, "bottomofthetable": {"_count": 1, "defeat": {"_count": 1}}, "interview": {"_count": 1, "with": {"_count": 1}}, "disarmed": {"_count": 1, "me": {"_count": 1}}, "nightmarish": {"_count": 1, "trip": {"_count": 1}}, "sack": {"_count": 1, "and": {"_count": 1}}, "occasion": {"_count": 1, "was": {"_count": 1}}, "sound": {"_count": 1, "of": {"_count": 1}}, "human": {"_count": 1, "to": {"_count": 1}}, "Muriel": {"_count": 1, "resumed": {"_count": 1}}, "broomstick": {"_count": 1, "": {"_count": 1}}, "sheet": {"_count": 1, "again": {"_count": 1}}, "locket": {"_count": 1, "": {"_count": 1}}, "priority": {"_count": 2, "while": {"_count": 1}, "will": {"_count": 1}}, "then": {"_count": 2, "came": {"_count": 1}, "and": {"_count": 1}}, "phase": {"_count": 1, "of": {"_count": 1}}, "Ministry": {"_count": 1, "workers": {"_count": 1}}, "man": {"_count": 2, "spoke": {"_count": 1}, "": {"_count": 1}}, "Slytherin": {"_count": 1, "headmaster": {"_count": 1}}, "Golden": {"_count": 1, "Snitch": {"_count": 1}}, "at": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "jailer": {"_count": 1, "had": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "chests": {"_count": 1, "then": {"_count": 1}}, "obviously": {"_count": 1, "": {"_count": 1}}, "watch": {"_count": 2, "": {"_count": 2}}, "holiday": {"_count": 1, "after": {"_count": 1}}, "read": {"_count": 1, "THE": {"_count": 1}}, "duty": {"_count": 1, "to": {"_count": 1}}, "brother": {"_count": 2, "traveled": {"_count": 1}, "for": {"_count": 1}}, "Hallow": {"_count": 1, "the": {"_count": 1}}, "shall": {"_count": 1, "I": {"_count": 1}}, "kingdom": {"_count": 1, "his": {"_count": 1}}, "customers": {"_count": 1, "of": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "telltale": {"_count": 1, "signs": {"_count": 1}}, "cave": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "felt": {"_count": 1}}, "student": {"_count": 1, "to": {"_count": 1}}, "casualties": {"_count": 1, "of": {"_count": 1}}}, "sign": {"_count": 210, "of": {"_count": 86, "something": {"_count": 1}, "sleepiness": {"_count": 1}, "a": {"_count": 8}, "the": {"_count": 17}, "wanting": {"_count": 2}, "relenting": {"_count": 1}, "movement": {"_count": 4}, "Hedwig": {"_count": 1}, "Ron": {"_count": 1}, "him": {"_count": 5}, "anybody": {"_count": 1}, "being": {"_count": 1}, "white": {"_count": 1}, "surprise": {"_count": 3}, "Hagrid": {"_count": 1}, "magical": {"_count": 2}, "any": {"_count": 2}, "Fleur": {"_count": 1}, "red": {"_count": 1}, "what": {"_count": 1}, "contact": {"_count": 1}, "recognition": {"_count": 2}, "madness": {"_count": 1}, "life": {"_count": 3}, "her": {"_count": 2}, "": {"_count": 1}, "great": {"_count": 1}, "fear": {"_count": 1}, "solidarity": {"_count": 1}, "interest": {"_count": 1}, "Sirius": {"_count": 1}, "exhaustion": {"_count": 1}, "interrupting": {"_count": 2}, "anger": {"_count": 1}, "outward": {"_count": 1}, "damage": {"_count": 2}, "it": {"_count": 1}, "panic": {"_count": 1}, "Severus": {"_count": 1}, "pain": {"_count": 1}, "footprints": {"_count": 1}, "continuing": {"_count": 1}, "encouragement": {"_count": 1}, "Grawp": {"_count": 1}, "anyone": {"_count": 1}}, "that": {"_count": 19, "said": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 6}, "a": {"_count": 1}, "had": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 4}, "his": {"_count": 1}, "Sirius": {"_count": 1}, "Ron": {"_count": 1}}, "cats": {"_count": 1, "couldnt": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "next": {"_count": 2, "to": {"_count": 2}}, "again": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "hanging": {"_count": 3, "over": {"_count": 2}, "in": {"_count": 1}}, "saying": {"_count": 2, "Eeylops": {"_count": 1}, "SECURITY": {"_count": 1}}, "overhead": {"_count": 1, "said": {"_count": 1}}, "pointing": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 13}, "!": {"_count": 2}, "?": {"_count": 1}}, "stuck": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 4, "it": {"_count": 1}, "the": {"_count": 2}, "Reguluss": {"_count": 1}}, "it": {"_count": 6, "": {"_count": 3}, "for": {"_count": 1}, "with": {"_count": 1}, "mentions": {"_count": 1}}, "one": {"_count": 1, "tonight": {"_count": 1}}, "even": {"_count": 2, "in": {"_count": 2}}, "she": {"_count": 1, "opened": {"_count": 1}}, "for": {"_count": 2, "it": {"_count": 1}, "several": {"_count": 1}}, "anything": {"_count": 1, "if": {"_count": 1}}, "with": {"_count": 1, "interest": {"_count": 1}}, "ignored": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 4, "form": {"_count": 1}, "permission": {"_count": 2}, "International": {"_count": 1}}, "my": {"_count": 4, "permission": {"_count": 2}, "form": {"_count": 1}, "hat": {"_count": 1}}, "your": {"_count": 1, "ruddy": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "hammered": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 3, "looked": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}}, "indeed": {"_count": 1, "at": {"_count": 1}}, "language": {"_count": 3, "all": {"_count": 1}, "another": {"_count": 1}, "as": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "aloud": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "school": {"_count": 1}}, "from": {"_count": 1, "you": {"_count": 1}}, "burned": {"_count": 1, "into": {"_count": 1}}, "some": {"_count": 1, "word": {"_count": 1}}, "beside": {"_count": 1, "it": {"_count": 1}}, "had": {"_count": 5, "been": {"_count": 3}, "not": {"_count": 1}, "risen": {"_count": 1}}, "which": {"_count": 1, "Fred": {"_count": 1}}, "hung": {"_count": 1, "from": {"_count": 1}}, "creaked": {"_count": 2, "in": {"_count": 1}, "a": {"_count": 1}}, "youre": {"_count": 1, "agreeing": {"_count": 1}}, "was": {"_count": 1, "printed": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "I": {"_count": 1, "never": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "creaking": {"_count": 1, "in": {"_count": 1}}, "an": {"_count": 1, "order": {"_count": 1}}, "pinned": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "below": {"_count": 1, "if": {"_count": 1}}, "after": {"_count": 1, "Hermione": {"_count": 1}}, "went": {"_count": 1, "up": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "neatly": {"_count": 1, "lettered": {"_count": 1}}, "his": {"_count": 1, "permission": {"_count": 1}}, "really": {"_count": 1, "means": {"_count": 1}}}, "something": {"_count": 1122, "peculiar": {"_count": 1, "a": {"_count": 1}}, "else": {"_count": 43, "": {"_count": 16}, "for": {"_count": 4}, "of": {"_count": 1}, "to": {"_count": 5}, "something": {"_count": 2}, "said": {"_count": 2}, "at": {"_count": 1}, "skinned": {"_count": 1}, "kept": {"_count": 1}, "moving": {"_count": 1}, "too": {"_count": 1}, "on": {"_count": 1}, "but": {"_count": 1}, "emerged": {"_count": 1}, "instead": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "Muriel": {"_count": 1}, "glinted": {"_count": 1}}, "": {"_count": 138, ".": {"_count": 96}, "!": {"_count": 9}, "?": {"_count": 33}}, "to": {"_count": 74, "them": {"_count": 1}, "her": {"_count": 2}, "do": {"_count": 27}, "defend": {"_count": 1}, "be": {"_count": 1}, "look": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 4}, "tell": {"_count": 3}, "worry": {"_count": 1}, "Seamus": {"_count": 1}, "Lavender": {"_count": 1}, "make": {"_count": 1}, "joke": {"_count": 1}, "think": {"_count": 1}, "say": {"_count": 2}, "hear": {"_count": 1}, "Moody": {"_count": 1}, "happen": {"_count": 2}, "interest": {"_count": 1}, "Crabbe": {"_count": 1}, "give": {"_count": 2}, "resist": {"_count": 1}, "your": {"_count": 1}, "wear": {"_count": 1}, "Sirius": {"_count": 1}, "my": {"_count": 1}, "eat": {"_count": 3}, "Borgin": {"_count": 1}, "cheer": {"_count": 1}, "show": {"_count": 1}, "value": {"_count": 1}, "remember": {"_count": 1}, "scare": {"_count": 1}, "distract": {"_count": 1}, "laugh": {"_count": 1}, "keep": {"_count": 1}}, "but": {"_count": 9, "he": {"_count": 3}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}, "Percy": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}}, "he": {"_count": 17, "wont": {"_count": 1}, "could": {"_count": 3}, "said": {"_count": 1}, "agreed": {"_count": 1}, "intended": {"_count": 1}, "had": {"_count": 4}, "hadnt": {"_count": 1}, "assured": {"_count": 1}, "was": {"_count": 1}, "didnt": {"_count": 1}, "knew": {"_count": 1}, "wanted": {"_count": 1}}, "as": {"_count": 5, "important": {"_count": 1}, "expensive": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "valuable": {"_count": 1}}, "about": {"_count": 44, "it": {"_count": 5}, "Snape": {"_count": 2}, "their": {"_count": 1}, "him": {"_count": 1}, "Quirrells": {"_count": 1}, "Quidditch": {"_count": 1}, "these": {"_count": 1}, "the": {"_count": 8}, "your": {"_count": 1}, "not": {"_count": 2}, "Voldemort": {"_count": 1}, "Crouch": {"_count": 1}, "all": {"_count": 1}, "doing": {"_count": 1}, "that": {"_count": 2}, "seeing": {"_count": 1}, "her": {"_count": 1}, "what": {"_count": 1}, "getting": {"_count": 1}, "unfinished": {"_count": 1}, "": {"_count": 1}, "Dumbledore": {"_count": 1}, "Inferi": {"_count": 1}, "Harry": {"_count": 1}, "my": {"_count": 1}, "nasty": {"_count": 1}, "a": {"_count": 3}, "certain": {"_count": 1}}, "very": {"_count": 21, "nasty": {"_count": 1}, "big": {"_count": 2}, "similar": {"_count": 1}, "large": {"_count": 3}, "funny": {"_count": 1}, "odd": {"_count": 3}, "unpleasant": {"_count": 1}, "impressive": {"_count": 1}, "solid": {"_count": 1}, "strange": {"_count": 2}, "important": {"_count": 1}, "offensive": {"_count": 1}, "heavy": {"_count": 1}, "simple": {"_count": 1}, "bitter": {"_count": 1}}, "hed": {"_count": 3, "never": {"_count": 1}, "forgotten": {"_count": 1}, "been": {"_count": 1}}, "big": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}}, "alive": {"_count": 1, "Lights": {"_count": 1}}, "had": {"_count": 8, "been": {"_count": 2}, "come": {"_count": 1}, "happened": {"_count": 2}, "gone": {"_count": 2}, "at": {"_count": 1}}, "creak": {"_count": 1, "outside": {"_count": 1}}, "that": {"_count": 66, "sounded": {"_count": 4}, "made": {"_count": 6}, "had": {"_count": 3}, "Malfoy": {"_count": 1}, "was": {"_count": 11}, "didnt": {"_count": 1}, "looked": {"_count": 7}, "Ron": {"_count": 2}, "will": {"_count": 2}, "would": {"_count": 5}, "distracted": {"_count": 1}, "good": {"_count": 1}, "happened": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 2}, "big": {"_count": 1}, "serious": {"_count": 1}, "might": {"_count": 3}, "can": {"_count": 2}, "involves": {"_count": 1}, "seemed": {"_count": 1}, "concerns": {"_count": 1}, "greatly": {"_count": 1}, "schoolchildren": {"_count": 1}, "neither": {"_count": 1}, "you": {"_count": 1}, "tasty": {"_count": 1}, "Ollivander": {"_count": 1}, "flapped": {"_count": 1}, "echoed": {"_count": 1}}, "strange": {"_count": 5, "about": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}}, "a": {"_count": 3, "bit": {"_count": 2}, "stubby": {"_count": 1}}, "the": {"_count": 6, "boy": {"_count": 1}, "school": {"_count": 1}, "Malfoys": {"_count": 1}, "Minister": {"_count": 1}, "night": {"_count": 1}, "last": {"_count": 1}}, "you": {"_count": 12, "had": {"_count": 1}, "goggle": {"_count": 1}, "couldnt": {"_count": 1}, "wanted": {"_count": 2}, "could": {"_count": 1}, "dont": {"_count": 1}, "really": {"_count": 1}, "can": {"_count": 1}, "only": {"_count": 1}, "cant": {"_count": 1}, "need": {"_count": 1}}, "inside": {"_count": 3, "poked": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "on": {"_count": 14, "your": {"_count": 1}, "students": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 4}, "him": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "which": {"_count": 1}}, "we": {"_count": 6, "had": {"_count": 1}, "havent": {"_count": 1}, "couldnt": {"_count": 1}, "have": {"_count": 1}, "Ron": {"_count": 1}, "need": {"_count": 1}}, "white": {"_count": 3, "was": {"_count": 1}, "soared": {"_count": 1}, "flash": {"_count": 1}}, "for": {"_count": 12, "Gringotts": {"_count": 1}, "you": {"_count": 3}, "your": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 2}, "the": {"_count": 1}, "him": {"_count": 1}, "shock": {"_count": 1}, "breakfast": {"_count": 1}}, "like": {"_count": 42, "this": {"_count": 15}, "your": {"_count": 1}, "being": {"_count": 1}, "warning": {"_count": 1}, "itself": {"_count": 1}, "that": {"_count": 6}, "an": {"_count": 1}, "Wormtails": {"_count": 1}, "a": {"_count": 9}, "triumph": {"_count": 1}, "\u2018a": {"_count": 1}, "my": {"_count": 1}, "slimy": {"_count": 1}, "Bibble": {"_count": 1}, "burning": {"_count": 1}}, "happened": {"_count": 7, "that": {"_count": 3}, "": {"_count": 1}, "in": {"_count": 2}, "between": {"_count": 1}}, "into": {"_count": 4, "something": {"_count": 1}, "Rons": {"_count": 2}, "the": {"_count": 1}}, "please": {"_count": 1, "Whether": {"_count": 1}}, "youve": {"_count": 2, "forgotten": {"_count": 1}, "never": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 2}, "this": {"_count": 1}, "once": {"_count": 1}}, "wrong": {"_count": 11, "with": {"_count": 7}, "": {"_count": 2}, "something": {"_count": 1}, "Lupin": {"_count": 1}}, "came": {"_count": 1, "shooting": {"_count": 1}}, "they": {"_count": 3, "had": {"_count": 1}, "could": {"_count": 1}, "can": {"_count": 1}}, "huge": {"_count": 3, "was": {"_count": 1}, "and": {"_count": 2}}, "Dumbledore": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "snapped": {"_count": 1, "Ron": {"_count": 1}}, "happen": {"_count": 1, "to": {"_count": 1}}, "jinxing": {"_count": 1, "the": {"_count": 1}}, "gold": {"_count": 3, "fell": {"_count": 1}, "sticking": {"_count": 1}, "swung": {"_count": 1}}, "why": {"_count": 1, "arent": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 9, "and": {"_count": 1}, "muttered": {"_count": 1}, "said": {"_count": 2}, "had": {"_count": 1}, "couldnt": {"_count": 1}, "could": {"_count": 3}}, "up": {"_count": 8, "and": {"_count": 1}, "there": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "here": {"_count": 1}}, "scarlet": {"_count": 2, "shoot": {"_count": 1}, "and": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "really": {"_count": 7, "horrible": {"_count": 1}, "bad": {"_count": 1}, "funny": {"_count": 1}, "nasty": {"_count": 2}, "serious": {"_count": 1}, "silly": {"_count": 1}}, "if": {"_count": 2, "my": {"_count": 1}, "you": {"_count": 1}}, "definitely": {"_count": 1, "moved": {"_count": 1}}, "jumped": {"_count": 1, "clean": {"_count": 1}}, "pure": {"_count": 1, "and": {"_count": 1}}, "important": {"_count": 7, "": {"_count": 5}, "Well": {"_count": 1}, "we": {"_count": 1}}, "said": {"_count": 16, "Harry": {"_count": 7}, "Ron": {"_count": 5}, "Hermione": {"_count": 3}, "Yaxley": {"_count": 1}}, "useful": {"_count": 5, "": {"_count": 3}, "in": {"_count": 1}, "to": {"_count": 1}}, "desperate": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "soft": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 12, "sent": {"_count": 1}, "I": {"_count": 2}, "a": {"_count": 1}, "keep": {"_count": 1}, "would": {"_count": 1}, "when": {"_count": 1}, "was": {"_count": 1}, "Snape": {"_count": 1}, "sure": {"_count": 1}, "next": {"_count": 1}, "felt": {"_count": 1}}, "moving": {"_count": 6, "": {"_count": 1}, "over": {"_count": 1}, "out": {"_count": 1}, "on": {"_count": 1}, "close": {"_count": 1}, "downstairs": {"_count": 1}}, "heavy": {"_count": 7, "drop": {"_count": 1}, "hit": {"_count": 1}, "fall": {"_count": 1}, "across": {"_count": 1}, "": {"_count": 1}, "could": {"_count": 1}, "were": {"_count": 1}}, "so": {"_count": 5, "good": {"_count": 1}, "enjoyable": {"_count": 1}, "stupid": {"_count": 1}, "quietly": {"_count": 1}, "destructive": {"_count": 1}}, "Snape": {"_count": 2, "could": {"_count": 1}, "had": {"_count": 1}}, "smelly": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 2, "": {"_count": 2}}, "slip": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}}, "hard": {"_count": 4, "knocked": {"_count": 1}, "": {"_count": 1}, "inside": {"_count": 1}, "and": {"_count": 1}}, "of": {"_count": 23, "a": {"_count": 10}, "the": {"_count": 3}, "what": {"_count": 1}, "Crabbes": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 1}, "Rons": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}, "Ravenclaws": {"_count": 1}, "Gryffindors": {"_count": 2}}, "unpleasant": {"_count": 3, "on": {"_count": 1}, "lies": {"_count": 1}, "Tonks": {"_count": 1}}, "hit": {"_count": 3, "his": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}}, "suspended": {"_count": 1, "in": {"_count": 1}}, "large": {"_count": 5, "and": {"_count": 4}, "stuck": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "clutched": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 3, "mustve": {"_count": 1}, "was": {"_count": 1}, "couldnt": {"_count": 1}}, "something": {"_count": 1, "quite": {"_count": 1}}, "quite": {"_count": 1, "apart": {"_count": 1}}, "I": {"_count": 9, "could": {"_count": 1}, "dont": {"_count": 1}, "never": {"_count": 1}, "havent": {"_count": 1}, "dunno": {"_count": 1}, "think": {"_count": 1}, "should": {"_count": 1}, "want": {"_count": 1}, "need": {"_count": 1}}, "told": {"_count": 2, "him": {"_count": 2}}, "more": {"_count": 7, "than": {"_count": 3}, "like": {"_count": 1}, "": {"_count": 1}, "suitable": {"_count": 1}, "sinister": {"_count": 1}}, "labeled": {"_count": 1, "SkeleGro": {"_count": 1}}, "Ive": {"_count": 3, "read": {"_count": 1}, "got": {"_count": 2}}, "foul": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 33, "his": {"_count": 7}, "Parseltongue": {"_count": 1}, "there": {"_count": 2}, "your": {"_count": 1}, "the": {"_count": 7}, "which": {"_count": 1}, "future": {"_count": 1}, "her": {"_count": 4}, "Harrys": {"_count": 1}, "common": {"_count": 1}, "that": {"_count": 3}, "this": {"_count": 1}, "response": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}}, "But": {"_count": 1, "Im": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "apologetic": {"_count": 1, "to": {"_count": 1}}, "dreadful": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "at": {"_count": 7, "you": {"_count": 2}, "the": {"_count": 2}, "him": {"_count": 2}, "Hogwarts": {"_count": 1}}, "rather": {"_count": 2, "odd": {"_count": 1}, "unfortunate": {"_count": 1}}, "move": {"_count": 3, "beyond": {"_count": 1}, "I": {"_count": 1}, "over": {"_count": 1}}, "familiar": {"_count": 1, "about": {"_count": 1}}, "new": {"_count": 2, "to": {"_count": 2}}, "long": {"_count": 2, "and": {"_count": 2}}, "Ginny": {"_count": 1, "mumbled": {"_count": 1}}, "remarkably": {"_count": 1, "like": {"_count": 1}}, "funny": {"_count": 9, "": {"_count": 2}, "about": {"_count": 2}, "though": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "happened": {"_count": 1}, "there": {"_count": 1}}, "alike": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 18, "stirring": {"_count": 1}, "standing": {"_count": 1}, "happening": {"_count": 1}, "wrong": {"_count": 3}, "soaring": {"_count": 1}, "dropped": {"_count": 1}, "closing": {"_count": 2}, "still": {"_count": 1}, "tugging": {"_count": 1}, "going": {"_count": 3}, "different": {"_count": 1}, "swooping": {"_count": 1}, "making": {"_count": 1}}, "thrashing": {"_count": 1, "wildly": {"_count": 1}}, "fell": {"_count": 1, "into": {"_count": 1}}, "green": {"_count": 1, "and": {"_count": 1}}, "rotten": {"_count": 1, "on": {"_count": 1}}, "explode": {"_count": 1, "": {"_count": 1}}, "extremely": {"_count": 4, "odd": {"_count": 1}, "wriggly": {"_count": 1}, "difficult": {"_count": 1}, "interesting": {"_count": 1}}, "dead": {"_count": 1, "that": {"_count": 1}}, "dangerous": {"_count": 2, "again": {"_count": 1}, "in": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "before": {"_count": 1, "now": {"_count": 1}}, "stupid": {"_count": 3, "": {"_count": 2}, "if": {"_count": 1}}, "down": {"_count": 3, "the": {"_count": 1}, "onto": {"_count": 1}, "before": {"_count": 1}}, "good": {"_count": 3, "for": {"_count": 1}, "was": {"_count": 1}, "up": {"_count": 1}}, "brushed": {"_count": 1, "against": {"_count": 1}}, "odd": {"_count": 3, "was": {"_count": 1}, "about": {"_count": 1}, "in": {"_count": 1}}, "matteroffact": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 8, "inside": {"_count": 1}, "the": {"_count": 3}, "Harry": {"_count": 1}, "I": {"_count": 1}, "one": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "much": {"_count": 9, "worse": {"_count": 3}, "more": {"_count": 4}, "larger": {"_count": 1}, "deeper": {"_count": 1}}, "relevant": {"_count": 1, "": {"_count": 1}}, "terrible": {"_count": 2, "": {"_count": 2}}, "red": {"_count": 1, "on": {"_count": 1}}, "enormous": {"_count": 2, "erupted": {"_count": 1}, "obscured": {"_count": 1}}, "silvery": {"_count": 2, "white": {"_count": 1}, "dart": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "caught": {"_count": 1, "his": {"_count": 1}}, "other": {"_count": 2, "than": {"_count": 2}}, "being": {"_count": 1, "dragged": {"_count": 1}}, "ginger": {"_count": 1, "streaked": {"_count": 1}}, "beyond": {"_count": 1, "Black": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "happy": {"_count": 4, "": {"_count": 3}, "Harry": {"_count": 1}}, "secret": {"_count": 1, "and": {"_count": 1}}, "unusual": {"_count": 1, "there": {"_count": 1}}, "barely": {"_count": 1, "alive": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "gone": {"_count": 1, "wrong": {"_count": 1}}, "vast": {"_count": 1, "green": {"_count": 1}}, "filthy": {"_count": 1, "and": {"_count": 1}}, "sensible": {"_count": 1, "like": {"_count": 1}}, "will": {"_count": 2, "it": {"_count": 1}, "have": {"_count": 1}}, "whitehot": {"_count": 1, "graze": {"_count": 1}}, "secretive": {"_count": 1, "about": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 7, "his": {"_count": 1}, "very": {"_count": 1}, "her": {"_count": 2}, "the": {"_count": 1}, "Draco": {"_count": 1}, "Griphook": {"_count": 1}}, "close": {"_count": 2, "to": {"_count": 2}}, "miraculous": {"_count": 1, "happened": {"_count": 1}}, "small": {"_count": 3, "hurtled": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "rude": {"_count": 1, "and": {"_count": 1}}, "contagious": {"_count": 1, "": {"_count": 1}}, "constructive": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "sinister": {"_count": 1, "": {"_count": 1}}, "distinctly": {"_count": 1, "odd": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "now": {"_count": 1}}, "going": {"_count": 2, "on": {"_count": 2}}, "Hermione": {"_count": 2, "said": {"_count": 1}, "muttered": {"_count": 1}}, "soon": {"_count": 1, "": {"_count": 1}}, "larger": {"_count": 1, "moving": {"_count": 1}}, "grabbed": {"_count": 1, "hold": {"_count": 1}}, "monstrous": {"_count": 1, "cutting": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "moved": {"_count": 1, "behind": {"_count": 1}}, "hes": {"_count": 1, "in": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "icycold": {"_count": 1, "and": {"_count": 1}}, "angry": {"_count": 1, "but": {"_count": 1}}, "immense": {"_count": 1, "over": {"_count": 1}}, "ugly": {"_count": 1, "slimy": {"_count": 1}}, "fall": {"_count": 1, "to": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "comforting": {"_count": 1, "about": {"_count": 1}}, "his": {"_count": 2, "hand": {"_count": 1}, "wand": {"_count": 1}}, "poisonous": {"_count": 1, "were": {"_count": 1}}, "tight": {"_count": 1, "in": {"_count": 1}}, "harsh": {"_count": 1, "": {"_count": 1}}, "illegal": {"_count": 1, "as": {"_count": 1}}, "she": {"_count": 6, "had": {"_count": 3}, "was": {"_count": 1}, "wanted": {"_count": 1}, "ought": {"_count": 1}}, "breaking": {"_count": 1, "inside": {"_count": 1}}, "foreign": {"_count": 1, "for": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "only": {"_count": 1, "the": {"_count": 1}}, "hot": {"_count": 1, "was": {"_count": 1}}, "scuttling": {"_count": 1, "behind": {"_count": 1}}, "icy": {"_count": 1, "flooded": {"_count": 1}}, "The": {"_count": 1, "three": {"_count": 1}}, "brush": {"_count": 2, "against": {"_count": 2}}, "trapped": {"_count": 1, "in": {"_count": 1}}, "resembling": {"_count": 1, "a": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "slide": {"_count": 1, "out": {"_count": 1}}, "while": {"_count": 1, "Hermione": {"_count": 1}}, "dd": {"_count": 1, "dreadful": {"_count": 1}}, "reptilian": {"_count": 1, "about": {"_count": 1}}, "worthwhile": {"_count": 1, "": {"_count": 1}}, "highly": {"_count": 1, "amusing": {"_count": 1}}, "or": {"_count": 3, "other": {"_count": 1}, "showing": {"_count": 1}, "for": {"_count": 1}}, "purple": {"_count": 1, "examine": {"_count": 1}}, "dark": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "home": {"_count": 1, "to": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "done": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "shiny": {"_count": 1, "that": {"_count": 1}}, "dull": {"_count": 1, "thats": {"_count": 1}}, "completely": {"_count": 1, "different": {"_count": 1}}, "accusatory": {"_count": 1, "in": {"_count": 1}}, "rose": {"_count": 1, "up": {"_count": 1}}, "Pye": {"_count": 1, "and": {"_count": 1}}, "similar": {"_count": 1, "happening": {"_count": 1}}, "clunked": {"_count": 1, "into": {"_count": 1}}, "top": {"_count": 1, "secret": {"_count": 1}}, "perhaps": {"_count": 1, "Azkaban": {"_count": 1}}, "whether": {"_count": 1, "it": {"_count": 1}}, "just": {"_count": 2, "as": {"_count": 2}}, "undoubtedly": {"_count": 1, "malevolent": {"_count": 1}}, "crack": {"_count": 2, "": {"_count": 1}, "whispered": {"_count": 1}}, "impressive": {"_count": 1, "about": {"_count": 1}}, "thats": {"_count": 3, "how": {"_count": 1}, "likely": {"_count": 1}, "just": {"_count": 1}}, "hairy": {"_count": 1, "Harry": {"_count": 1}}, "once": {"_count": 1, "and": {"_count": 1}}, "Stupefy": {"_count": 1, "A": {"_count": 1}}, "awful": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "less": {"_count": 2, "than": {"_count": 1}, "easily": {"_count": 1}}, "distracted": {"_count": 1, "him": {"_count": 1}}, "unreasonable": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "miles": {"_count": 1}}, "though": {"_count": 2, "he": {"_count": 2}}, "real": {"_count": 1, "or": {"_count": 1}}, "slid": {"_count": 1, "back": {"_count": 1}}, "dramatic": {"_count": 1, "was": {"_count": 1}}, "exciting": {"_count": 1, "that": {"_count": 1}}, "solid": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "round": {"_count": 1, "and": {"_count": 1}}, "streak": {"_count": 1, "across": {"_count": 1}}, "stuck": {"_count": 1, "in": {"_count": 1}}, "darkly": {"_count": 1, "red": {"_count": 1}}, "horrible": {"_count": 1, "has": {"_count": 1}}, "this": {"_count": 1, "important": {"_count": 1}}, "forced": {"_count": 1, "in": {"_count": 1}}, "diff": {"_count": 1, "Did": {"_count": 1}}, "mended": {"_count": 1, "": {"_count": 1}}, "fixing": {"_count": 1, "and": {"_count": 1}}, "Dark": {"_count": 1, "or": {"_count": 1}}, "consoling": {"_count": 1, "about": {"_count": 1}}, "heroic": {"_count": 1, "preferably": {"_count": 1}}, "flowery": {"_count": 1, "he": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "someone": {"_count": 1, "wrote": {"_count": 1}}, "scribbled": {"_count": 1, "along": {"_count": 1}}, "silver": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "Katie": {"_count": 1, "was": {"_count": 1}}, "eerie": {"_count": 1, "": {"_count": 1}}, "Wha": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "sharp": {"_count": 1, "": {"_count": 1}}, "disgusting": {"_count": 2, "Ron": {"_count": 1}, "she": {"_count": 1}}, "special": {"_count": 2, "today": {"_count": 1}, "about": {"_count": 1}}, "Potter": {"_count": 1, "hasnt": {"_count": 1}}, "straight": {"_count": 1, "": {"_count": 1}}, "calculated": {"_count": 1, "to": {"_count": 1}}, "An": {"_count": 1, "Unbreakable": {"_count": 1}}, "marvelous": {"_count": 1, "": {"_count": 1}}, "different": {"_count": 3, "": {"_count": 3}}, "serious": {"_count": 1, "Helpfully": {"_count": 1}}, "terribly": {"_count": 1, "wrong": {"_count": 1}}, "called": {"_count": 1, "Losers": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "amusing": {"_count": 1, "": {"_count": 1}}, "indistinct": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "happen": {"_count": 1}}, "invisible": {"_count": 1, "": {"_count": 1}}, "squashy": {"_count": 1, "and": {"_count": 1}}, "thatd": {"_count": 1, "work": {"_count": 1}}, "private": {"_count": 1, "indecent": {"_count": 1}}, "tasty": {"_count": 1, "from": {"_count": 1}}, "went": {"_count": 1, "wrong": {"_count": 1}}, "recently": {"_count": 1, "dead": {"_count": 1}}, "immensely": {"_count": 1, "satisfying": {"_count": 1}}, "cursed": {"_count": 1, "": {"_count": 1}}, "whooshed": {"_count": 1, "over": {"_count": 1}}, "flashed": {"_count": 1, "across": {"_count": 1}}, "interesting": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "comical": {"_count": 1, "but": {"_count": 1}}, "beating": {"_count": 1, "inside": {"_count": 1}}, "probably": {"_count": 1, "another": {"_count": 1}}, "worth": {"_count": 1, "eating": {"_count": 1}}, "kept": {"_count": 1, "him": {"_count": 1}}, "worse": {"_count": 1, "like": {"_count": 1}}, "incredible": {"_count": 1, "": {"_count": 1}}, "bulky": {"_count": 1, "under": {"_count": 1}}, "indecent": {"_count": 1, "": {"_count": 1}}, "closed": {"_count": 1, "tight": {"_count": 1}}, "neither": {"_count": 1, "Harry": {"_count": 1}}, "wed": {"_count": 1, "like": {"_count": 1}}, "shifted": {"_count": 1, "in": {"_count": 1}}, "there": {"_count": 1, "he": {"_count": 1}}, "piped": {"_count": 1, "up": {"_count": 1}}, "unique": {"_count": 1, "that": {"_count": 1}}, "clanking": {"_count": 1, "and": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "thatll": {"_count": 1, "help": {"_count": 1}}, "hidden": {"_count": 1, "here": {"_count": 1}}, "hurtful": {"_count": 1, "to": {"_count": 1}}, "weird": {"_count": 1, "about": {"_count": 1}}, "furtive": {"_count": 1, "shameful": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}}, "peculiar": {"_count": 21, "a": {"_count": 1, "cat": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "symbols": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "expression": {"_count": 2, "It": {"_count": 1}, "stole": {"_count": 1}}, "behavior": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "fashion": {"_count": 2, "apparently": {"_count": 1}, "than": {"_count": 1}}, "they": {"_count": 1, "hid": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "sensation": {"_count": 1, "somewhere": {"_count": 1}}, "intensity": {"_count": 1, "about": {"_count": 1}}, "noises": {"_count": 1, "": {"_count": 1}}, "appearance": {"_count": 1, "of": {"_count": 1}}, "views": {"_count": 1, "": {"_count": 1}}, "kitchen": {"_count": 1, "Harry": {"_count": 1}}, "object": {"_count": 1, "standing": {"_count": 1}}, "grinding": {"_count": 1, "noise": {"_count": 1}}}, "cat": {"_count": 102, "reading": {"_count": 1, "a": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 16}, "!": {"_count": 6}}, "in": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 2}, "but": {"_count": 1}, "I": {"_count": 1}}, "hed": {"_count": 1, "spotted": {"_count": 1}}, "didnt": {"_count": 1, "move": {"_count": 1}}, "behavior": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 6, "still": {"_count": 1}, "hanging": {"_count": 1}, "attacked": {"_count": 2}, "purring": {"_count": 1}, "getting": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "moved": {"_count": 1, "at": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "had": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "sit": {"_count": 1, "so": {"_count": 1}}, "nor": {"_count": 1, "as": {"_count": 1}}, "slinking": {"_count": 1, "around": {"_count": 1}}, "OR": {"_count": 1, "a": {"_count": 1}}, "called": {"_count": 1, "Mrs": {"_count": 1}}, "Mrs": {"_count": 4, "Norris": {"_count": 4}}, "who": {"_count": 2, "was": {"_count": 1}, "wound": {"_count": 1}}, "Argus": {"_count": 1, "Filch": {"_count": 1}}, "wasnt": {"_count": 1, "hit": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "lover": {"_count": 1, "": {"_count": 1}}, "hanging": {"_count": 1, "from": {"_count": 1}}, "or": {"_count": 2, "something": {"_count": 1}, "quite": {"_count": 1}}, "with": {"_count": 2, "spectacle": {"_count": 1}, "a": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "hairs": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "ate": {"_count": 1, "Scabbers": {"_count": 1}}, "acted": {"_count": 1, "like": {"_count": 1}}, "Id": {"_count": 1, "speak": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "leap": {"_count": 1, "aside": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "mad": {"_count": 1}}, "Crookshanks": {"_count": 5, "did": {"_count": 1}, "appeared": {"_count": 1}, "came": {"_count": 1}, "safely": {"_count": 1}, "at": {"_count": 1}}, "Theres": {"_count": 1, "Sirius": {"_count": 1}}, "wandering": {"_count": 1, "around": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "streaked": {"_count": 1, "out": {"_count": 1}}, "food": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "from": {"_count": 1}}, "flap": {"_count": 1, "Uncle": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "appeared": {"_count": 1, "around": {"_count": 1}}, "litter": {"_count": 3, "into": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "prowled": {"_count": 1, "up": {"_count": 1}}, "patrolled": {"_count": 2, "he": {"_count": 1}, "up": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}}, "reading": {"_count": 115, "a": {"_count": 9, "map": {"_count": 1}, "piece": {"_count": 1}, "letter": {"_count": 1}, "book": {"_count": 1}, "magazine": {"_count": 1}, "long": {"_count": 1}, "prepared": {"_count": 1}, "wooden": {"_count": 1}, "small": {"_count": 1}}, "the": {"_count": 28, "sign": {"_count": 1}, "letter": {"_count": 1}, "subject": {"_count": 1}, "Daily": {"_count": 6}, "front": {"_count": 3}, "tea": {"_count": 2}, "signs": {"_count": 1}, "S": {"_count": 2}, "story": {"_count": 1}, "look": {"_count": 1}, "list": {"_count": 1}, "introduction": {"_count": 1}, "notice": {"_count": 1}, "note": {"_count": 1}, "magazine": {"_count": 1}, "Sunday": {"_count": 1}, "Muggle": {"_count": 1}, "information": {"_count": 1}, "whole": {"_count": 1}}, "late": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 7, "youre": {"_count": 1}, "said": {"_count": 1}, "looked": {"_count": 2}, "stared": {"_count": 1}, "rereading": {"_count": 1}, "I": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "UNDERAGE": {"_count": 1, "WIZARD": {"_count": 1}}, "Lesson": {"_count": 1, "One": {"_count": 1}}, "talking": {"_count": 1, "doing": {"_count": 1}}, "but": {"_count": 2, "she": {"_count": 1}, "continued": {"_count": 1}}, "Broomstick": {"_count": 1, "Servicing": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 2, "on": {"_count": 2}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 2, "before": {"_count": 1}, "thoroughly": {"_count": 1}}, "put": {"_count": 1, "his": {"_count": 1}}, "one": {"_count": 1, "anothers": {"_count": 1}}, "this": {"_count": 4, "book": {"_count": 1}, "letter": {"_count": 1}, "notice": {"_count": 1}, "obituary": {"_count": 1}}, "what": {"_count": 2, "signs": {"_count": 1}, "Sirius": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "magazines": {"_count": 1, "under": {"_count": 1}}, "Rita": {"_count": 2, "Skeeter": {"_count": 2}}, "an": {"_count": 1, "extremely": {"_count": 1}}, "MISUSE": {"_count": 1, "OF": {"_count": 1}}, "The": {"_count": 1, "Quibbler": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "about": {"_count": 2, "how": {"_count": 1}, "Willy": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "through": {"_count": 1, "all": {"_count": 1}}, "your": {"_count": 1, "mail": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "mind": {"_count": 1}}, "Wilbert": {"_count": 1, "Slinkhards": {"_count": 1}}, "out": {"_count": 1, "our": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "Harrys": {"_count": 1, "mind": {"_count": 1}}, "all": {"_count": 3, "owl": {"_count": 1}, "our": {"_count": 1}, "the": {"_count": 1}}, "INSPECTED": {"_count": 1, "AND": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "saying": {"_count": 1, "it": {"_count": 1}}, "them": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 3, "copy": {"_count": 1}, "textbooks": {"_count": 1}, "books": {"_count": 1}}, "its": {"_count": 1, "contents": {"_count": 1}}, "TO": {"_count": 1, "MASTER": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "SIRIUS": {"_count": 1, "": {"_count": 1}}, "kids": {"_count": 1, "stories": {"_count": 1}}, "that": {"_count": 1, "muck": {"_count": 1}}, "Yeah": {"_count": 1, "you": {"_count": 1}}, "A": {"_count": 1, "History": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}}, "map": {"_count": 106, "": {"_count": 22, ".": {"_count": 19}, "!": {"_count": 1}, "?": {"_count": 2}}, "in": {"_count": 3, "sight": {"_count": 1}, "Moodys": {"_count": 1}, "front": {"_count": 1}}, "of": {"_count": 9, "the": {"_count": 4}, "Jupiter": {"_count": 1}, "Argyllshire": {"_count": 1}, "Hogwarts": {"_count": 3}}, "showing": {"_count": 1, "every": {"_count": 1}}, "showed": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}}, "was": {"_count": 3, "one": {"_count": 1}, "confiscated": {"_count": 1}, "aware": {"_count": 1}}, "stuffed": {"_count": 1, "it": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 2}}, "away": {"_count": 2, "again": {"_count": 1}, "pressed": {"_count": 1}}, "tapped": {"_count": 1, "it": {"_count": 1}}, "went": {"_count": 1, "blank": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "carefully": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "on": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 2}, "me": {"_count": 1}}, "didnt": {"_count": 1, "stop": {"_count": 1}}, "had": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 7, "tucked": {"_count": 1}, "grinned": {"_count": 1}, "ended": {"_count": 1}, "the": {"_count": 1}, "pocketing": {"_count": 1}, "fixed": {"_count": 1}, "after": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "but": {"_count": 3, "it": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "never": {"_count": 1, "lies": {"_count": 1}}, "the": {"_count": 1, "Muggle": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "held": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 2, "strategic": {"_count": 1}, "all": {"_count": 1}}, "caught": {"_count": 1, "his": {"_count": 1}}, "wondering": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "show": {"_count": 1}}, "or": {"_count": 1, "walk": {"_count": 1}}, "flew": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 1, "magical": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 2, "mean": {"_count": 1}, "had": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "often": {"_count": 1}}, "shows": {"_count": 1, "invisible": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "is": {"_count": 1, "this": {"_count": 1}}, "from": {"_count": 1, "Potter": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "signs": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "disappointed": {"_count": 1, "but": {"_count": 1}}, "theyre": {"_count": 1, "the": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "murmured": {"_count": 1, "I": {"_count": 1}}, "no": {"_count": 1, "plan": {"_count": 1}}, "Harrys": {"_count": 1, "overwhelming": {"_count": 1}}}, "For": {"_count": 275, "a": {"_count": 113, "second": {"_count": 11}, "full": {"_count": 2}, "moment": {"_count": 38}, "famous": {"_count": 1}, "few": {"_count": 24}, "split": {"_count": 19}, "short": {"_count": 1}, "minute": {"_count": 1}, "thirteenyearold": {"_count": 1}, "fraction": {"_count": 2}, "fleeting": {"_count": 3}, "long": {"_count": 4}, "week": {"_count": 1}, "couple": {"_count": 1}, "bonus": {"_count": 1}, "brief": {"_count": 1}, "time": {"_count": 1}, "trip": {"_count": 1}}, "some": {"_count": 13, "reason": {"_count": 13}}, "those": {"_count": 3, "who": {"_count": 2}, "of": {"_count": 1}}, "Im": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "now": {"_count": 1, "theyre": {"_count": 1}}, "one": {"_count": 17, "thing": {"_count": 4}, "terrible": {"_count": 1}, "wild": {"_count": 3}, "nasty": {"_count": 1}, "glorious": {"_count": 1}, "shining": {"_count": 1}, "moment": {"_count": 1}, "brief": {"_count": 1}, "horrible": {"_count": 1}, "bewildered": {"_count": 1}, "trembling": {"_count": 1}, "teetering": {"_count": 1}}, "your": {"_count": 5, "information": {"_count": 4}, "health": {"_count": 1}}, "Neville": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 41, "best": {"_count": 1}, "first": {"_count": 22}, "chance": {"_count": 1}, "Irish": {"_count": 1}, "next": {"_count": 1}, "last": {"_count": 4}, "elfs": {"_count": 1}, "same": {"_count": 1}, "rest": {"_count": 2}, "reasons": {"_count": 2}, "third": {"_count": 1}, "second": {"_count": 3}, "tiniest": {"_count": 1}}, "an": {"_count": 2, "agonizing": {"_count": 1}, "answer": {"_count": 1}}, "heavens": {"_count": 8, "sake": {"_count": 8}}, "several": {"_count": 4, "long": {"_count": 1}, "minutes": {"_count": 1}, "happy": {"_count": 1}, "moments": {"_count": 1}}, "perhaps": {"_count": 1, "five": {"_count": 1}}, "many": {"_count": 1, "months": {"_count": 1}}, "nearly": {"_count": 3, "a": {"_count": 1}, "half": {"_count": 1}, "five": {"_count": 1}}, "another": {"_count": 2, "he": {"_count": 1}, "this": {"_count": 1}}, "years": {"_count": 2, "Aunt": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "once": {"_count": 2, "in": {"_count": 1}, "her": {"_count": 1}}, "maybe": {"_count": 1, "half": {"_count": 1}}, "there": {"_count": 1, "had": {"_count": 1}}, "about": {"_count": 1, "ten": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Ravenclaw": {"_count": 1, "the": {"_count": 1}}, "Hufflepuff": {"_count": 1, "hard": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 2}}, "that": {"_count": 2, "he": {"_count": 1}, "Hermione": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "this": {"_count": 1, "I": {"_count": 1}}, "hungry": {"_count": 1, "one": {"_count": 1}}, "he": {"_count": 2, "has": {"_count": 1}, "had": {"_count": 1}}, "Moody": {"_count": 1, "never": {"_count": 1}}, "fourteen": {"_count": 1, "years": {"_count": 1}}, "were": {"_count": 1, "there": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "instance": {"_count": 3, "Slytherin": {"_count": 1}, "given": {"_count": 1}, "this": {"_count": 1}}, "our": {"_count": 1, "Hogwarts": {"_count": 1}}, "disrupting": {"_count": 1, "my": {"_count": 1}}, "all": {"_count": 3, "that": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}}, "thinking": {"_count": 1, "I": {"_count": 1}}, "answer": {"_count": 1, "Hagrid": {"_count": 1}}, "permanent": {"_count": 1, "spell": {"_count": 1}}, "new": {"_count": 1, "signs": {"_count": 1}}, "I": {"_count": 1, "see": {"_count": 1}}, "it": {"_count": 1, "became": {"_count": 1}}, "obvious": {"_count": 1, "reasons": {"_count": 1}}, "future": {"_count": 1, "reference": {"_count": 1}}, "old": {"_count": 1, "times": {"_count": 1}}, "freaks": {"_count": 1, "like": {"_count": 1}}, "Malfoy": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 2, "panted": {"_count": 1}, "of": {"_count": 1}}, "Enemies": {"_count": 2, "and": {"_count": 1}, "that": {"_count": 1}}, "me": {"_count": 1, "it": {"_count": 1}}, "his": {"_count": 1, "part": {"_count": 1}}, "ze": {"_count": 1, "wedding": {"_count": 1}}, "him": {"_count": 3, "the": {"_count": 2}, "": {"_count": 1}}, "though": {"_count": 1, "her": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "Nagini": {"_count": 1, "": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "telling": {"_count": 1}}}, "second": {"_count": 470, "Mr": {"_count": 1, "Dursley": {"_count": 1}}, "television": {"_count": 1, "and": {"_count": 1}}, "Piers": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 23, "tried": {"_count": 2}, "had": {"_count": 2}, "felt": {"_count": 1}, "was": {"_count": 3}, "wondered": {"_count": 2}, "thought": {"_count": 8}, "and": {"_count": 1}, "considered": {"_count": 1}, "hesitated": {"_count": 1}, "hoped": {"_count": 1}, "forgot": {"_count": 1}}, "bedroom": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "later": {"_count": 37, "there": {"_count": 1}, "they": {"_count": 2}, "he": {"_count": 6}, "Hermione": {"_count": 1}, "the": {"_count": 4}, "something": {"_count": 2}, "Harry": {"_count": 3}, "as": {"_count": 1}, "had": {"_count": 1}, "carrying": {"_count": 1}, "it": {"_count": 3}, "Ripper": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "her": {"_count": 1}, "dived": {"_count": 1}, "both": {"_count": 1}, "Dumbledore": {"_count": 1}, "standing": {"_count": 1}, "Malfoy": {"_count": 1}, "Ron": {"_count": 1}, "Mr": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 22, "!": {"_count": 1}, ".": {"_count": 18}, "?": {"_count": 3}}, "Dudley": {"_count": 1, "was": {"_count": 1}}, "piece": {"_count": 4, "of": {"_count": 4}}, "pair": {"_count": 2, "of": {"_count": 1}, "Of": {"_count": 1}}, "witch": {"_count": 1, "pinned": {"_count": 1}}, "cousin": {"_count": 3, "whos": {"_count": 1}, "there": {"_count": 1}, "once": {"_count": 1}}, "now": {"_count": 3, "Professor": {"_count": 1}, "he": {"_count": 1}, "Filch": {"_count": 1}}, "chance": {"_count": 3, "My": {"_count": 1}, "or": {"_count": 1}, "to": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 1}, "last": {"_count": 1}, "his": {"_count": 1}, "being": {"_count": 1}}, "he": {"_count": 20, "was": {"_count": 2}, "thought": {"_count": 4}, "had": {"_count": 5}, "hesitated": {"_count": 2}, "stood": {"_count": 1}, "merely": {"_count": 1}, "wanted": {"_count": 1}, "seemed": {"_count": 1}, "did": {"_count": 1}, "looked": {"_count": 1}, "breathed": {"_count": 1}}, "week": {"_count": 4, "of": {"_count": 2}, "Give": {"_count": 1}, "": {"_count": 1}}, "whos": {"_count": 1, "yours": {"_count": 1}}, "the": {"_count": 3, "troll": {"_count": 1}, "sink": {"_count": 1}, "fire": {"_count": 1}}, "place": {"_count": 3, "in": {"_count": 1}, "if": {"_count": 1}, "with": {"_count": 1}}, "Bludger": {"_count": 3, "sent": {"_count": 1}, "directly": {"_count": 1}, "grazed": {"_count": 1}}, "very": {"_count": 2, "small": {"_count": 1}, "odd": {"_count": 1}}, "to": {"_count": 11, "Nicolas": {"_count": 1}, "last": {"_count": 1}, "return": {"_count": 1}, "exist": {"_count": 1}, "Ron": {"_count": 1}, "decide": {"_count": 1}, "whom": {"_count": 1}, "Ravenclaw": {"_count": 1}, "disobey": {"_count": 1}, "second": {"_count": 1}, "be": {"_count": 1}}, "year": {"_count": 17, "": {"_count": 5}, "Gryffindor": {"_count": 1}, "could": {"_count": 1}, "running": {"_count": 1}, "who": {"_count": 1}, "when": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 2}, "they": {"_count": 1}, "jump": {"_count": 1}, "although": {"_count": 1}, "at": {"_count": 1}}, "Quirrell": {"_count": 1, "came": {"_count": 1}}, "time": {"_count": 22, "in": {"_count": 4}, "but": {"_count": 1}, "just": {"_count": 1}, "Ive": {"_count": 2}, "and": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}, "Lynch": {"_count": 1}, "": {"_count": 2}, "hes": {"_count": 2}, "once": {"_count": 1}, "aiming": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "weve": {"_count": 1}}, "centaur": {"_count": 1, "blackhaired": {"_count": 1}}, "but": {"_count": 2, "nothing": {"_count": 1}, "growing": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "spell": {"_count": 1, "Ive": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "floor": {"_count": 13, "Ron": {"_count": 2}, "": {"_count": 8}, "and": {"_count": 1}, "said": {"_count": 1}, "when": {"_count": 1}}, "too": {"_count": 3, "long": {"_count": 1}, "late": {"_count": 1}, "soon": {"_count": 1}}, "attack": {"_count": 1, "this": {"_count": 1}}, "Harrys": {"_count": 1, "legs": {"_count": 1}}, "Boot": {"_count": 1, "I": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 8, "then": {"_count": 4}, "Bole": {"_count": 1}, "he": {"_count": 1}, "louder": {"_count": 1}, "saw": {"_count": 1}}, "years": {"_count": 10, "were": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 1}, "hurried": {"_count": 1}, "spending": {"_count": 1}, "over": {"_count": 1}, "he": {"_count": 1}, "punching": {"_count": 1}}, "both": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "several": {"_count": 1, "buttons": {"_count": 1}}, "crumpet": {"_count": 1, "is": {"_count": 1}}, "new": {"_count": 1, "appointment": {"_count": 1}}, "term": {"_count": 1, "Professor": {"_count": 1}}, "cup": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Mr": {"_count": 1}}, "corridor": {"_count": 1, "and": {"_count": 1}}, "everyone": {"_count": 1, "looked": {"_count": 1}}, "helpings": {"_count": 1, "of": {"_count": 1}}, "fallen": {"_count": 1, "fifty": {"_count": 1}}, "then": {"_count": 5, "Oh": {"_count": 1}, "looked": {"_count": 1}, "said": {"_count": 1}, "turned": {"_count": 1}, "without": {"_count": 1}}, "Malfoy": {"_count": 1, "stared": {"_count": 1}}, "breakin": {"_count": 1, "made": {"_count": 1}}, "oldest": {"_count": 1, "brother": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "voice": {"_count": 11, "": {"_count": 7}, "softly": {"_count": 1}, "again": {"_count": 1}, "which": {"_count": 1}, "echoing": {"_count": 1}}, "man": {"_count": 5, "spoke": {"_count": 1}, "sounding": {"_count": 1}, "laugh": {"_count": 1}, "turned": {"_count": 1}, "sharply": {"_count": 1}}, "mans": {"_count": 1, "voice": {"_count": 1}}, "stab": {"_count": 1, "of": {"_count": 1}}, "longer": {"_count": 4, "": {"_count": 1}, "then": {"_count": 1}, "on": {"_count": 1}, "than": {"_count": 1}}, "whoosh": {"_count": 1, "George": {"_count": 1}}, "ornament": {"_count": 1, "narrowly": {"_count": 1}}, "landing": {"_count": 5, "opened": {"_count": 1}, "youre": {"_count": 1}, "pointing": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}}, "field": {"_count": 1, "": {"_count": 1}}, "row": {"_count": 4, "to": {"_count": 1}, "leaned": {"_count": 1}, "": {"_count": 1}, "behind": {"_count": 1}}, "scarletrobed": {"_count": 1, "player": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "crash": {"_count": 1, "seemed": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "water": {"_count": 1, "bomb": {"_count": 1}}, "nature": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "loud": {"_count": 1, "BANG": {"_count": 1}}, "course": {"_count": 1, "arrived": {"_count": 1}}, "feast": {"_count": 1, "in": {"_count": 1}}, "Lee": {"_count": 1, "Jordan": {"_count": 1}}, "task": {"_count": 14, "when": {"_count": 1}, "which": {"_count": 2}, "is": {"_count": 2}, "Harry": {"_count": 1}, "starts": {"_count": 1}, "": {"_count": 3}, "was": {"_count": 1}, "or": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}}, "they": {"_count": 3, "looked": {"_count": 2}, "stood": {"_count": 1}}, "her": {"_count": 1, "scarlettaloned": {"_count": 1}}, "tent": {"_count": 1, "looking": {"_count": 1}}, "one": {"_count": 6, "for": {"_count": 2}, "said": {"_count": 1}, "They": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 10, "their": {"_count": 1}, "August": {"_count": 5}, "all": {"_count": 1}, "them": {"_count": 1}, "madness": {"_count": 1}, "silence": {"_count": 1}}, "chances": {"_count": 2, "": {"_count": 2}}, "tasks": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "Ministry": {"_count": 1, "Witch": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "fork": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 4, "contained": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}}, "before": {"_count": 4, "it": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "there": {"_count": 1}}, "shiver": {"_count": 1, "ran": {"_count": 1}}, "by": {"_count": 1, "second": {"_count": 1}}, "perhaps": {"_count": 1, "when": {"_count": 1}}, "head": {"_count": 1, "quickly": {"_count": 1}}, "key": {"_count": 1, "in": {"_count": 1}}, "lock": {"_count": 1, "and": {"_count": 1}}, "wand": {"_count": 1, "the": {"_count": 1}}, "step": {"_count": 1, "you": {"_count": 1}}, "Diggory": {"_count": 1, "was": {"_count": 1}}, "dementor": {"_count": 1, "was": {"_count": 1}}, "message": {"_count": 1, "which": {"_count": 1}}, "officiallooking": {"_count": 1, "envelope": {"_count": 1}}, "cloud": {"_count": 1, "of": {"_count": 1}}, "slightly": {"_count": 1, "hoarse": {"_count": 1}}, "bow": {"_count": 1, "to": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "twentythree": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "detention": {"_count": 2, "with": {"_count": 1}, "was": {"_count": 1}}, "sight": {"_count": 1, "": {"_count": 1}}, "weeks": {"_count": 1, "worth": {"_count": 1}}, "gargoyle": {"_count": 1, "snidely": {"_count": 1}}, "black": {"_count": 1, "horse": {"_count": 1}}, "In": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "mouth": {"_count": 1}}, "door": {"_count": 4, "on": {"_count": 2}, "": {"_count": 1}, "that": {"_count": 1}}, "deck": {"_count": 1, "": {"_count": 1}}, "Hogsmeade": {"_count": 1, "visit": {"_count": 1}}, "or": {"_count": 2, "so": {"_count": 1}, "two": {"_count": 1}}, "silver": {"_count": 1, "flash": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "flash": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "niffler": {"_count": 1, "": {"_count": 1}}, "Death": {"_count": 3, "Eater": {"_count": 3}}, "jet": {"_count": 1, "of": {"_count": 1}}, "lift": {"_count": 1, "": {"_count": 1}}, "giant": {"_count": 1, "taking": {"_count": 1}}, "glance": {"_count": 2, "showed": {"_count": 1}, "and": {"_count": 1}}, "page": {"_count": 3, "of": {"_count": 2}, "carried": {"_count": 1}}, "spinning": {"_count": 1, "wizard": {"_count": 1}}, "figure": {"_count": 1, "turned": {"_count": 1}}, "woman": {"_count": 1, "caught": {"_count": 1}}, "almost": {"_count": 1, "identical": {"_count": 1}}, "hidden": {"_count": 1, "door": {"_count": 1}}, "drink": {"_count": 1, "she": {"_count": 1}}, "tongue": {"_count": 1, "of": {"_count": 1}}, "favorite": {"_count": 1, "building": {"_count": 1}}, "cauldron": {"_count": 1, "but": {"_count": 1}}, "group": {"_count": 1, "was": {"_count": 1}}, "search": {"_count": 1, "of": {"_count": 1}}, "pod": {"_count": 1, "from": {"_count": 1}}, "attempt": {"_count": 2, "was": {"_count": 1}, "at": {"_count": 1}}, "Cauldron": {"_count": 1, "into": {"_count": 1}}, "hardly": {"_count": 1, "more": {"_count": 1}}, "thoughts": {"_count": 1, "about": {"_count": 1}}, "occasion": {"_count": 1, "he": {"_count": 1}}, "bottle": {"_count": 1, "between": {"_count": 1}}, "shown": {"_count": 1, "the": {"_count": 1}}, "clear": {"_count": 1, "water": {"_count": 1}}, "broom": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "sack": {"_count": 1, "": {"_count": 1}}, "button": {"_count": 1, "": {"_count": 1}}, "bequest": {"_count": 1, "Potter": {"_count": 1}}, "class": {"_count": 1, "but": {"_count": 1}}, "sheet": {"_count": 2, "": {"_count": 1}, "valuable": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "earlier": {"_count": 1, "Fragments": {"_count": 1}}, "gasping": {"_count": 1, "and": {"_count": 1}}, "night": {"_count": 1, "I": {"_count": 1}}, "PICK": {"_count": 1, "YOUR": {"_count": 1}}, "strap": {"_count": 1, "around": {"_count": 1}}, "brother": {"_count": 6, "who": {"_count": 1}, "and": {"_count": 1}, "journeyed": {"_count": 1}, "driven": {"_count": 1}, "for": {"_count": 1}, "still": {"_count": 1}}, "statue": {"_count": 1, "pressed": {"_count": 1}}, "Xenophiliuss": {"_count": 1, "paper": {"_count": 1}}, "goblin": {"_count": 1, "both": {"_count": 1}}, "Wormtail": {"_count": 1, "gazed": {"_count": 1}}, "upon": {"_count": 1, "landing": {"_count": 1}}, "doorway": {"_count": 1, "which": {"_count": 1}}, "most": {"_count": 1, "familiar": {"_count": 1}}, "outlaw": {"_count": 1, "seemed": {"_count": 1}}, "Stunning": {"_count": 1, "Spell": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "something": {"_count": 1, "in": {"_count": 1}}, "after": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "imagined": {"_count": 1}}, "more": {"_count": 1, "powerful": {"_count": 1}}, "trolley": {"_count": 1, "forward": {"_count": 1}}}, "realize": {"_count": 98, "what": {"_count": 10, "he": {"_count": 2}, "had": {"_count": 2}, "my": {"_count": 1}, "Dumbledore": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "McLaggen": {"_count": 1}, "youve": {"_count": 1}}, "that": {"_count": 28, "he": {"_count": 2}, "dont": {"_count": 1}, "love": {"_count": 1}, "Hagrid": {"_count": 1}, "I": {"_count": 2}, "the": {"_count": 3}, "Hogwarts": {"_count": 1}, "Krum": {"_count": 1}, "your": {"_count": 1}, "Wormtail": {"_count": 1}, "would": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}, "had": {"_count": 1}, "Voldemort": {"_count": 1}, "his": {"_count": 1}, "one": {"_count": 1}, "nothing": {"_count": 1}, "there": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "she": {"_count": 1}, "Ive": {"_count": 1}, "Grawp": {"_count": 1}}, "he": {"_count": 5, "was": {"_count": 3}, "had": {"_count": 1}, "wont": {"_count": 1}}, "it": {"_count": 7, "had": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}, "tries": {"_count": 1}, "wasnt": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "we": {"_count": 3, "need": {"_count": 1}, "are": {"_count": 1}, "just": {"_count": 1}}, "who": {"_count": 2, "this": {"_count": 1}, "was": {"_count": 1}}, "how": {"_count": 11, "risky": {"_count": 1}, "much": {"_count": 5}, "can": {"_count": 1}, "mistaken": {"_count": 1}, "childish": {"_count": 1}, "important": {"_count": 1}, "far": {"_count": 1}}, "said": {"_count": 1, "Lockhart": {"_count": 1}}, "this": {"_count": 3, "has": {"_count": 1}, "was": {"_count": 1}, "you": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "their": {"_count": 1, "ambition": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "Harry": {"_count": 3, "and": {"_count": 1}, "we": {"_count": 1}, "is": {"_count": 1}}, "Sirius": {"_count": 1, "is": {"_count": 1}}, "shes": {"_count": 1, "including": {"_count": 1}}, "were": {"_count": 1, "only": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "wed": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 1}, "?": {"_count": 2}}, "havent": {"_count": 1, "you": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "just": {"_count": 1, "how": {"_count": 1}}, "you": {"_count": 1, "knew": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "of": {"_count": 1}}, "hes": {"_count": 1, "right": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}}, "then": {"_count": 2075, "he": {"_count": 133, "jerked": {"_count": 1}, "took": {"_count": 1}, "gets": {"_count": 1}, "realized": {"_count": 3}, "noticed": {"_count": 1}, "thought": {"_count": 3}, "told": {"_count": 2}, "said": {"_count": 13}, "was": {"_count": 7}, "let": {"_count": 1}, "saw": {"_count": 17}, "caught": {"_count": 1}, "heard": {"_count": 14}, "would": {"_count": 3}, "understood": {"_count": 1}, "dived": {"_count": 1}, "faltered": {"_count": 1}, "smirked": {"_count": 1}, "wiggled": {"_count": 1}, "too": {"_count": 2}, "says": {"_count": 1}, "went": {"_count": 3}, "wouldve": {"_count": 1}, "felt": {"_count": 5}, "jumped": {"_count": 1}, "remembered": {"_count": 4}, "muttered": {"_count": 1}, "named": {"_count": 1}, "rushed": {"_count": 1}, "conjured": {"_count": 1}, "trod": {"_count": 1}, "sort": {"_count": 1}, "sacked": {"_count": 1}, "sent": {"_count": 1}, "changes": {"_count": 1}, "placed": {"_count": 1}, "raised": {"_count": 1}, "didnt": {"_count": 1}, "opened": {"_count": 1}, "can": {"_count": 2}, "sat": {"_count": 1}, "hurried": {"_count": 1}, "released": {"_count": 1}, "toppled": {"_count": 1}, "came": {"_count": 2}, "fell": {"_count": 2}, "finished": {"_count": 1}, "the": {"_count": 1}, "glanced": {"_count": 1}, "found": {"_count": 2}, "breathed": {"_count": 1}, "will": {"_count": 1}, "wished": {"_count": 1}, "wasnt": {"_count": 1}, "recognized": {"_count": 1}, "broke": {"_count": 1}, "pointed": {"_count": 1}, "greeted": {"_count": 1}, "withdrew": {"_count": 1}, "smiled": {"_count": 1}, "bent": {"_count": 1}, "mightve": {"_count": 1}, "skidded": {"_count": 1}, "had": {"_count": 1}, "croaked": {"_count": 1}}, "it": {"_count": 34, "struck": {"_count": 1}, "was": {"_count": 5}, "came": {"_count": 2}, "slumped": {"_count": 1}, "emerged": {"_count": 1}, "hit": {"_count": 2}, "rolled": {"_count": 1}, "seemed": {"_count": 1}, "snored": {"_count": 1}, "made": {"_count": 1}, "fell": {"_count": 1}, "dawned": {"_count": 1}, "diminished": {"_count": 1}, "stopped": {"_count": 1}, "connected": {"_count": 1}, "follows": {"_count": 1}, "would": {"_count": 2}, "quivered": {"_count": 1}, "had": {"_count": 2}, "soared": {"_count": 1}, "must": {"_count": 1}, "will": {"_count": 2}, "": {"_count": 1}, "just": {"_count": 1}, "may": {"_count": 1}}, "said": {"_count": 134, "Yes": {"_count": 2}, "Dudley": {"_count": 2}, "It": {"_count": 2}, "Ron": {"_count": 4}, "Harry": {"_count": 23}, "Hagrid": {"_count": 5}, "in": {"_count": 6}, "Hermione": {"_count": 6}, "Professor": {"_count": 5}, "I": {"_count": 5}, "Well": {"_count": 3}, "Its": {"_count": 1}, "On": {"_count": 1}, "Okay": {"_count": 2}, "Thats": {"_count": 1}, "Mr": {"_count": 3}, "Moody": {"_count": 2}, "Potter": {"_count": 1}, "very": {"_count": 2}, "to": {"_count": 2}, "Imagine": {"_count": 1}, "M": {"_count": 1}, "You": {"_count": 2}, "Come": {"_count": 1}, "Fudge": {"_count": 2}, "That": {"_count": 2}, "Good": {"_count": 1}, "Mrs": {"_count": 1}, "Uncle": {"_count": 2}, "edgily": {"_count": 1}, "without": {"_count": 1}, "Lines": {"_count": 1}, "Yeah": {"_count": 1}, "Fred": {"_count": 1}, "Ill": {"_count": 2}, "Sirius": {"_count": 2}, "contemptuously": {"_count": 1}, "Snape": {"_count": 2}, "Look": {"_count": 1}, "Alastor": {"_count": 1}, "But": {"_count": 2}, "Not": {"_count": 1}, "Dumbledore": {"_count": 2}, "the": {"_count": 1}, "The": {"_count": 1}, "Slughorn": {"_count": 3}, "Are": {"_count": 1}, "quietly": {"_count": 1}, "Is": {"_count": 1}, "Dont": {"_count": 1}, "Thank": {"_count": 1}, "Hepzibah": {"_count": 1}, "Master": {"_count": 1}, "Four": {"_count": 1}, "imploringly": {"_count": 1}, "Right": {"_count": 1}, "Theres": {"_count": 1}, "What": {"_count": 1}, "So": {"_count": 1}, "Er": {"_count": 1}, "Bill": {"_count": 1}, "We": {"_count": 1}, "Ah": {"_count": 1}, "Aberforth": {"_count": 2}}, "came": {"_count": 12, "back": {"_count": 4}, "another": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 2}, "to": {"_count": 1}}, "the": {"_count": 69, "sound": {"_count": 2}, "doorbell": {"_count": 1}, "mail": {"_count": 1}, "story": {"_count": 1}, "front": {"_count": 1}, "vegetable": {"_count": 1}, "Gryffindors": {"_count": 1}, "bizarre": {"_count": 1}, "clunk": {"_count": 1}, "thing": {"_count": 1}, "tournament": {"_count": 1}, "question": {"_count": 1}, "door": {"_count": 6}, "cloak": {"_count": 1}, "tunnel": {"_count": 1}, "tree": {"_count": 1}, "next": {"_count": 2}, "dull": {"_count": 1}, "man": {"_count": 2}, "chair": {"_count": 1}, "solution": {"_count": 1}, "music": {"_count": 2}, "wonderful": {"_count": 1}, "pair": {"_count": 1}, "other": {"_count": 2}, "HouseElf": {"_count": 1}, "merpeople": {"_count": 1}, "dungeon": {"_count": 1}, "picture": {"_count": 1}, "boy": {"_count": 1}, "grin": {"_count": 1}, "clattering": {"_count": 1}, "doors": {"_count": 1}, "sun": {"_count": 1}, "rip": {"_count": 1}, "International": {"_count": 1}, "caretaker": {"_count": 1}, "Ministry": {"_count": 1}, "smile": {"_count": 1}, "room": {"_count": 1}, "elf": {"_count": 1}, "fiery": {"_count": 1}, "person": {"_count": 1}, "words": {"_count": 1}, "ownership": {"_count": 1}, "moment": {"_count": 1}, "school": {"_count": 1}, "sidecar": {"_count": 1}, "Dark": {"_count": 2}, "intruder": {"_count": 1}, "slapping": {"_count": 1}, "source": {"_count": 1}, "newly": {"_count": 1}, "cart": {"_count": 1}, "top": {"_count": 1}, "world": {"_count": 1}, "reality": {"_count": 1}, "tumult": {"_count": 1}}, "": {"_count": 243, ".": {"_count": 85}, "!": {"_count": 30}, "?": {"_count": 128}}, "because": {"_count": 2, "the": {"_count": 1}, "I": {"_count": 1}}, "raised": {"_count": 1, "its": {"_count": 1}}, "walked": {"_count": 9, "away": {"_count": 3}, "over": {"_count": 1}, "down": {"_count": 1}, "straight": {"_count": 1}, "slowly": {"_count": 2}, "back": {"_count": 1}}, "forced": {"_count": 4, "his": {"_count": 1}, "himself": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "tomorrow": {"_count": 1, "Tuesday": {"_count": 1}}, "eh": {"_count": 3, "": {"_count": 3}}, "went": {"_count": 7, "ranting": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "limp": {"_count": 1}, "on": {"_count": 1}, "out": {"_count": 1}}, "if": {"_count": 11, "you": {"_count": 4}, "youre": {"_count": 1}, "Snape": {"_count": 1}, "youll": {"_count": 2}, "were": {"_count": 1}, "hed": {"_count": 1}, "he": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 6, "this": {"_count": 1}, "unearthly": {"_count": 1}, "hour": {"_count": 1}, "drop": {"_count": 1}, "idea": {"_count": 1}, "earsplitting": {"_count": 1}}, "fluttered": {"_count": 1, "onto": {"_count": 1}}, "yeh": {"_count": 2, "gotta": {"_count": 1}, "ungrateful": {"_count": 1}}, "to": {"_count": 24, "Harrys": {"_count": 4}, "the": {"_count": 5}, "Lucius": {"_count": 1}, "listen": {"_count": 1}, "stop": {"_count": 1}, "Black": {"_count": 1}, "look": {"_count": 1}, "persuade": {"_count": 1}, "see": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 3}, "ccome": {"_count": 1}, "herself": {"_count": 1}, "\u2018Death": {"_count": 1}}, "wrist": {"_count": 1, "to": {"_count": 1}}, "Mr": {"_count": 5, "Potter": {"_count": 1}, "Creevey": {"_count": 1}, "Weasley": {"_count": 1}, "Crouch": {"_count": 1}, "Ollivander": {"_count": 1}}, "handed": {"_count": 1, "him": {"_count": 1}}, "paced": {"_count": 1, "the": {"_count": 1}}, "quite": {"_count": 4, "suddenly": {"_count": 2}, "distinctly": {"_count": 1}, "as": {"_count": 1}}, "hed": {"_count": 2, "be": {"_count": 1}, "know": {"_count": 1}}, "started": {"_count": 6, "to": {"_count": 3}, "handing": {"_count": 1}, "pacing": {"_count": 1}, "binding": {"_count": 1}}, "she": {"_count": 31, "fell": {"_count": 1}, "muttered": {"_count": 1}, "must": {"_count": 1}, "chuckled": {"_count": 1}, "said": {"_count": 4}, "sort": {"_count": 1}, "stopped": {"_count": 1}, "was": {"_count": 2}, "reared": {"_count": 1}, "threw": {"_count": 1}, "left": {"_count": 1}, "saw": {"_count": 1}, "turned": {"_count": 2}, "too": {"_count": 1}, "needs": {"_count": 1}, "bent": {"_count": 1}, "shot": {"_count": 1}, "screamed": {"_count": 1}, "cast": {"_count": 1}, "caught": {"_count": 1}, "told": {"_count": 1}, "walked": {"_count": 1}, "would": {"_count": 1}, "did": {"_count": 1}, "spoke": {"_count": 1}, "toppled": {"_count": 1}}, "looked": {"_count": 20, "quickly": {"_count": 1}, "furiously": {"_count": 1}, "up": {"_count": 7}, "around": {"_count": 4}, "down": {"_count": 2}, "back": {"_count": 4}, "at": {"_count": 1}}, "as": {"_count": 11, "though": {"_count": 2}, "they": {"_count": 2}, "his": {"_count": 1}, "she": {"_count": 1}, "usual": {"_count": 1}, "Hagrid": {"_count": 1}, "realization": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "you": {"_count": 19, "can": {"_count": 5}, "walk": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 2}, "have": {"_count": 1}, "seemed": {"_count": 1}, "dont": {"_count": 1}, "should": {"_count": 1}, "may": {"_count": 1}, "saw": {"_count": 1}, "must": {"_count": 2}, "did": {"_count": 1}, "wouldnt": {"_count": 1}}, "FORWARD": {"_count": 1, "": {"_count": 1}}, "became": {"_count": 3, "quite": {"_count": 1}, "a": {"_count": 1}, "still": {"_count": 1}}, "a": {"_count": 39, "pair": {"_count": 1}, "ray": {"_count": 1}, "burning": {"_count": 1}, "dark": {"_count": 1}, "thud": {"_count": 1}, "cold": {"_count": 1}, "silence": {"_count": 1}, "horribly": {"_count": 1}, "huge": {"_count": 1}, "loud": {"_count": 1}, "deep": {"_count": 3}, "cloud": {"_count": 1}, "quarter": {"_count": 1}, "door": {"_count": 1}, "highly": {"_count": 1}, "knock": {"_count": 1}, "number": {"_count": 1}, "lot": {"_count": 1}, "sickening": {"_count": 1}, "helicopter": {"_count": 1}, "famous": {"_count": 1}, "large": {"_count": 1}, "truly": {"_count": 1}, "head": {"_count": 1}, "winding": {"_count": 1}, "crash": {"_count": 1}, "jet": {"_count": 1}, "thick": {"_count": 1}, "couple": {"_count": 1}, "car": {"_count": 1}, "broom": {"_count": 1}, "little": {"_count": 1}, "burst": {"_count": 1}, "mutual": {"_count": 1}, "body": {"_count": 1}, "silver": {"_count": 1}, "wavering": {"_count": 1}}, "Perks": {"_count": 1, "Sally": {"_count": 1}}, "at": {"_count": 20, "last": {"_count": 4}, "his": {"_count": 2}, "Mr": {"_count": 2}, "exactly": {"_count": 1}, "Harry": {"_count": 1}, "each": {"_count": 1}, "the": {"_count": 4}, "ten": {"_count": 1}, "Hermione": {"_count": 1}, "herself": {"_count": 1}, "Ron": {"_count": 1}, "least": {"_count": 1}}, "Malfoy": {"_count": 2, "turned": {"_count": 1}, "came": {"_count": 1}}, "once": {"_count": 1, "you": {"_count": 1}}, "showed": {"_count": 1, "them": {"_count": 1}}, "come": {"_count": 4, "straight": {"_count": 1}, "back": {"_count": 2}, "in": {"_count": 1}}, "start": {"_count": 1, "to": {"_count": 1}}, "glared": {"_count": 1, "furiously": {"_count": 1}}, "another": {"_count": 8, "Harry": {"_count": 1}, "even": {"_count": 1}, "along": {"_count": 1}, "owl": {"_count": 1}, "heavy": {"_count": 1}, "question": {"_count": 1}, "burst": {"_count": 1}, "bang": {"_count": 1}}, "rushed": {"_count": 1, "upstairs": {"_count": 1}}, "sped": {"_count": 1, "up": {"_count": 1}}, "youll": {"_count": 4, "be": {"_count": 2}, "know": {"_count": 1}, "have": {"_count": 1}}, "pelted": {"_count": 1, "straight": {"_count": 1}}, "shot": {"_count": 1, "at": {"_count": 1}}, "sank": {"_count": 2, "to": {"_count": 1}, "into": {"_count": 1}}, "they": {"_count": 19, "heard": {"_count": 5}, "spotted": {"_count": 2}, "saw": {"_count": 1}, "went": {"_count": 1}, "turned": {"_count": 2}, "would": {"_count": 2}, "can": {"_count": 1}, "interrogated": {"_count": 1}, "could": {"_count": 1}, "hit": {"_count": 1}, "all": {"_count": 1}, "launched": {"_count": 1}}, "slouched": {"_count": 1, "slowly": {"_count": 1}}, "made": {"_count": 4, "for": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "two": {"_count": 1}}, "did": {"_count": 4, "something": {"_count": 1}, "a": {"_count": 2}, "you": {"_count": 1}}, "fell": {"_count": 7, "flat": {"_count": 2}, "open": {"_count": 1}, "down": {"_count": 1}, "back": {"_count": 2}, "with": {"_count": 1}}, "ordered": {"_count": 1, "a": {"_count": 1}}, "making": {"_count": 2, "violent": {"_count": 1}, "him": {"_count": 1}}, "of": {"_count": 4, "course": {"_count": 3}, "the": {"_count": 1}}, "theres": {"_count": 5, "the": {"_count": 1}, "going": {"_count": 1}, "A": {"_count": 1}, "his": {"_count": 1}, "this": {"_count": 1}}, "clambered": {"_count": 2, "over": {"_count": 1}, "back": {"_count": 1}}, "Harry": {"_count": 36, "felt": {"_count": 1}, "and": {"_count": 1}, "knew": {"_count": 1}, "heard": {"_count": 6}, "called": {"_count": 1}, "saw": {"_count": 7}, "said": {"_count": 4}, "reasoned": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 5}, "turned": {"_count": 1}, "panted": {"_count": 1}, "realized": {"_count": 1}, "you": {"_count": 1}, "remembered": {"_count": 2}, "was": {"_count": 1}, "did": {"_count": 1}}, "shut": {"_count": 4, "the": {"_count": 2}, "himself": {"_count": 2}}, "some": {"_count": 1, "o": {"_count": 1}}, "put": {"_count": 3, "him": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "peered": {"_count": 1, "into": {"_count": 1}}, "get": {"_count": 2, "back": {"_count": 1}, "away": {"_count": 1}}, "dropped": {"_count": 3, "his": {"_count": 1}, "like": {"_count": 1}, "out": {"_count": 1}}, "well": {"_count": 14, "be": {"_count": 3}, "test": {"_count": 1}, "find": {"_count": 1}, "have": {"_count": 3}, "go": {"_count": 1}, "thats": {"_count": 1}, "I": {"_count": 2}, "let": {"_count": 1}, "get": {"_count": 1}}, "sighed": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "Voldemort": {"_count": 6, "will": {"_count": 1}, "s": {"_count": 1}, "and": {"_count": 1}, "vanished": {"_count": 1}, "caught": {"_count": 1}, "I": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "his": {"_count": 16, "eyes": {"_count": 2}, "mouth": {"_count": 1}, "curiosity": {"_count": 1}, "face": {"_count": 2}, "body": {"_count": 1}, "reason": {"_count": 1}, "brain": {"_count": 1}, "head": {"_count": 1}, "sentence": {"_count": 1}, "expression": {"_count": 1}, "heart": {"_count": 1}, "scar": {"_count": 2}, "very": {"_count": 1}}, "try": {"_count": 2, "and": {"_count": 2}}, "that": {"_count": 11, "Harry": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 3}, "his": {"_count": 2}, "you": {"_count": 1}, "would": {"_count": 1}, "nobody": {"_count": 1}, "Dumbledore": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 49, "have": {"_count": 1}, "cant": {"_count": 1}, "tried": {"_count": 2}, "told": {"_count": 1}, "had": {"_count": 1}, "wish": {"_count": 1}, "heard": {"_count": 1}, "was": {"_count": 3}, "came": {"_count": 1}, "will": {"_count": 1}, "yelled": {"_count": 1}, "saw": {"_count": 2}, "think": {"_count": 3}, "remembered": {"_count": 2}, "can": {"_count": 2}, "dunno": {"_count": 2}, "put": {"_count": 2}, "ask": {"_count": 1}, "knew": {"_count": 1}, "killed": {"_count": 1}, "hheard": {"_count": 1}, "wont": {"_count": 2}, "thought": {"_count": 2}, "said": {"_count": 1}, "am": {"_count": 2}, "swear": {"_count": 1}, "went": {"_count": 1}, "TOLD": {"_count": 1}, "did": {"_count": 1}, "shall": {"_count": 1}, "got": {"_count": 1}, "called": {"_count": 1}, "must": {"_count": 1}, "declare": {"_count": 1}, "dont": {"_count": 1}, "met": {"_count": 1}}, "yes": {"_count": 2, "they": {"_count": 1}, "very": {"_count": 1}}, "your": {"_count": 3, "father": {"_count": 2}, "way": {"_count": 1}}, "Im": {"_count": 3, "afraid": {"_count": 2}, "a": {"_count": 1}}, "everybody": {"_count": 1, "started": {"_count": 1}}, "exactly": {"_count": 1, "a": {"_count": 1}}, "banged": {"_count": 1, "his": {"_count": 1}}, "Dad": {"_count": 1, "came": {"_count": 1}}, "carried": {"_count": 2, "the": {"_count": 1}, "Errol": {"_count": 1}}, "Rons": {"_count": 3, "elder": {"_count": 1}, "": {"_count": 1}, "voice": {"_count": 1}}, "too": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "He": {"_count": 5, "fell": {"_count": 1}, "had": {"_count": 1}, "gestured": {"_count": 1}, "was": {"_count": 1}, "gulped": {"_count": 1}}, "quietly": {"_count": 1, "as": {"_count": 1}}, "louder": {"_count": 1, "than": {"_count": 1}}, "we": {"_count": 25, "fly": {"_count": 1}, "can": {"_count": 6}, "wouldnt": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 1}, "saw": {"_count": 1}, "dueled": {"_count": 1}, "remain": {"_count": 1}, "need": {"_count": 1}, "reached": {"_count": 1}, "do": {"_count": 1}, "sat": {"_count": 1}, "both": {"_count": 1}, "shall": {"_count": 1}, "thought": {"_count": 1}, "might": {"_count": 1}, "couldve": {"_count": 1}, "were": {"_count": 1}, "heard": {"_count": 1}, "say": {"_count": 1}}, "out": {"_count": 8, "over": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 3}, "of": {"_count": 3}}, "go": {"_count": 3, "straight": {"_count": 1}, "down": {"_count": 1}, "upstairs": {"_count": 1}}, "remembering": {"_count": 1, "he": {"_count": 1}}, "could": {"_count": 3, "you": {"_count": 1}, "Harry": {"_count": 1}, "evil": {"_count": 1}}, "Lockhart": {"_count": 1, "said": {"_count": 1}}, "pulled": {"_count": 10, "Ron": {"_count": 1}, "a": {"_count": 2}, "out": {"_count": 5}, "his": {"_count": 1}, "the": {"_count": 1}}, "darted": {"_count": 2, "to": {"_count": 1}, "down": {"_count": 1}}, "falling": {"_count": 2, "asleep": {"_count": 1}, "": {"_count": 1}}, "disagreements": {"_count": 1, "sprang": {"_count": 1}}, "screwed": {"_count": 1, "up": {"_count": 1}}, "hurried": {"_count": 7, "off": {"_count": 2}, "back": {"_count": 2}, "to": {"_count": 1}, "after": {"_count": 1}, "toward": {"_count": 1}}, "sat": {"_count": 6, "down": {"_count": 4}, "holding": {"_count": 1}, "up": {"_count": 1}}, "glaring": {"_count": 1, "back": {"_count": 1}}, "Dobby": {"_count": 2, "The": {"_count": 1}, "had": {"_count": 1}}, "grabbed": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "Professor": {"_count": 8, "McGonagall": {"_count": 3}, "Trelawney": {"_count": 2}, "Snape": {"_count": 1}, "Umbridge": {"_count": 1}, "Sprout": {"_count": 1}}, "began": {"_count": 4, "bending": {"_count": 1}, "to": {"_count": 3}}, "headed": {"_count": 6, "straight": {"_count": 1}, "back": {"_count": 3}, "nervously": {"_count": 1}, "through": {"_count": 1}}, "Ernie": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 3, "a": {"_count": 2}, "it": {"_count": 1}}, "Headmaster": {"_count": 1, "": {"_count": 1}}, "wrote": {"_count": 1, "two": {"_count": 1}}, "moving": {"_count": 2, "quickly": {"_count": 1}, "slowly": {"_count": 1}}, "someone": {"_count": 1, "speaking": {"_count": 1}}, "picking": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 7, "up": {"_count": 4}, "off": {"_count": 1}, "to": {"_count": 1}, "cold": {"_count": 1}}, "smashed": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "threw": {"_count": 3, "the": {"_count": 1}, "himself": {"_count": 1}, "Harry": {"_count": 1}}, "silence": {"_count": 2, "": {"_count": 1}, "once": {"_count": 1}}, "pushed": {"_count": 2, "the": {"_count": 2}}, "Ginny": {"_count": 2, "Weasley": {"_count": 1}, "said": {"_count": 1}}, "Gilderoy": {"_count": 1, "said": {"_count": 1}}, "Myrtle": {"_count": 1, "swelled": {"_count": 1}}, "let": {"_count": 3, "go": {"_count": 1}, "out": {"_count": 1}, "Ron": {"_count": 1}}, "just": {"_count": 5, "as": {"_count": 3}, "when": {"_count": 1}, "one": {"_count": 1}}, "landed": {"_count": 3, "heavily": {"_count": 1}, "on": {"_count": 1}, "upon": {"_count": 1}}, "something": {"_count": 7, "heavy": {"_count": 1}, "rather": {"_count": 1}, "much": {"_count": 2}, "else": {"_count": 1}, "slid": {"_count": 1}, "really": {"_count": 1}}, "hitting": {"_count": 1, "himself": {"_count": 1}}, "punching": {"_count": 1, "himself": {"_count": 1}}, "pretend": {"_count": 1, "to": {"_count": 1}}, "flew": {"_count": 1, "across": {"_count": 1}}, "picked": {"_count": 2, "up": {"_count": 2}}, "Hedwig": {"_count": 1, "turned": {"_count": 1}}, "Hagrid": {"_count": 6, "didnt": {"_count": 1}, "entered": {"_count": 1}, "": {"_count": 3}, "You": {"_count": 1}}, "flapped": {"_count": 1, "past": {"_count": 1}}, "poked": {"_count": 4, "them": {"_count": 1}, "his": {"_count": 1}, "Grawp": {"_count": 1}, "a": {"_count": 1}}, "Aunt": {"_count": 3, "Petunia": {"_count": 3}}, "lifted": {"_count": 1, "his": {"_count": 1}}, "Neville": {"_count": 3, "said": {"_count": 1}, "caused": {"_count": 1}, "": {"_count": 1}}, "set": {"_count": 10, "off": {"_count": 8}, "to": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 4, "a": {"_count": 2}, "Snapes": {"_count": 1}, "the": {"_count": 1}}, "hitched": {"_count": 1, "up": {"_count": 1}}, "whats": {"_count": 2, "all": {"_count": 1}, "that": {"_count": 1}}, "slowly": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "propelled": {"_count": 1, "itself": {"_count": 1}}, "scampered": {"_count": 1, "for": {"_count": 1}}, "move": {"_count": 1, "closer": {"_count": 1}}, "there": {"_count": 18, "were": {"_count": 4}, "was": {"_count": 12}, "will": {"_count": 1}, "came": {"_count": 1}}, "Hermione": {"_count": 7, "and": {"_count": 1}, "emerged": {"_count": 1}, "climbed": {"_count": 1}, "pulled": {"_count": 1}, "cried": {"_count": 1}, "ran": {"_count": 1}, "whispered": {"_count": 1}}, "closed": {"_count": 5, "the": {"_count": 1}, "again": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 2}}, "from": {"_count": 3, "far": {"_count": 1}, "beyond": {"_count": 1}, "right": {"_count": 1}}, "Pass": {"_count": 1, "the": {"_count": 1}}, "good": {"_count": 1, "sirs": {"_count": 1}}, "turn": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "give": {"_count": 1, "your": {"_count": 1}}, "dear": {"_count": 1, "if": {"_count": 1}}, "drained": {"_count": 1, "the": {"_count": 1}}, "screamed": {"_count": 1, "": {"_count": 1}}, "lets": {"_count": 5, "see": {"_count": 1}, "get": {"_count": 1}, "hear": {"_count": 1}, "keep": {"_count": 1}, "go": {"_count": 1}}, "felt": {"_count": 2, "a": {"_count": 1}, "in": {"_count": 1}}, "gave": {"_count": 6, "Ron": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 1}}, "took": {"_count": 10, "up": {"_count": 1}, "a": {"_count": 3}, "off": {"_count": 2}, "the": {"_count": 1}, "seats": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}}, "crack": {"_count": 1, "": {"_count": 1}}, "why": {"_count": 8, "would": {"_count": 1}, "are": {"_count": 1}, "do": {"_count": 1}, "was": {"_count": 1}, "cant": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}, "dont": {"_count": 1}}, "buried": {"_count": 1, "itself": {"_count": 1}}, "plunged": {"_count": 3, "recklessly": {"_count": 1}, "once": {"_count": 1}, "on": {"_count": 1}}, "Snape": {"_count": 9, "came": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 2}, "but": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "turned": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "The": {"_count": 1, "hinkypunk": {"_count": 1}}, "Why": {"_count": 1, "did": {"_count": 1}}, "turned": {"_count": 24, "up": {"_count": 1}, "beaming": {"_count": 1}, "again": {"_count": 1}, "his": {"_count": 3}, "to": {"_count": 8}, "and": {"_count": 7}, "away": {"_count": 1}, "into": {"_count": 1}, "quickly": {"_count": 1}}, "words": {"_count": 1, "began": {"_count": 1}}, "tucked": {"_count": 1, "the": {"_count": 1}}, "heart": {"_count": 1, "beating": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 1}, "Harrys": {"_count": 1}, "her": {"_count": 1}, "Thursday": {"_count": 1}, "Madam": {"_count": 1}, "and": {"_count": 1}}, "straightened": {"_count": 2, "up": {"_count": 2}}, "heard": {"_count": 2, "the": {"_count": 1}, "loud": {"_count": 1}}, "what": {"_count": 11, "he": {"_count": 2}, "": {"_count": 2}, "just": {"_count": 1}, "was": {"_count": 1}, "if": {"_count": 1}, "better": {"_count": 1}, "will": {"_count": 1}, "happened": {"_count": 1}, "does": {"_count": 1}}, "barely": {"_count": 1, "a": {"_count": 1}}, "lowered": {"_count": 4, "herself": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "without": {"_count": 10, "waiting": {"_count": 1}, "warning": {"_count": 6}, "a": {"_count": 2}, "offering": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "Ron": {"_count": 12, "came": {"_count": 1}, "turned": {"_count": 1}, "said": {"_count": 4}, "realized": {"_count": 1}, "snapped": {"_count": 1}, "erupted": {"_count": 1}, "shook": {"_count": 1}, "gave": {"_count": 1}, "was": {"_count": 1}}, "Potter": {"_count": 12, "said": {"_count": 3}, "Malfoy": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 3}, "even": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}, "tore": {"_count": 4, "after": {"_count": 1}, "open": {"_count": 1}, "out": {"_count": 1}, "a": {"_count": 1}}, "Cho": {"_count": 2, "appeared": {"_count": 1}, "said": {"_count": 1}}, "saw": {"_count": 4, "it": {"_count": 1}, "an": {"_count": 1}, "Moodys": {"_count": 1}, "the": {"_count": 1}}, "Oh": {"_count": 1, "": {"_count": 1}}, "pretending": {"_count": 1, "hed": {"_count": 1}}, "stopped": {"_count": 2, "in": {"_count": 1}, "very": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "Angelinas": {"_count": 2, "Alicias": {"_count": 1}, "frantic": {"_count": 1}}, "back": {"_count": 11, "to": {"_count": 3}, "at": {"_count": 7}, "again": {"_count": 1}}, "climb": {"_count": 1, "into": {"_count": 1}}, "tell": {"_count": 2, "me": {"_count": 1}, "Dumbledore": {"_count": 1}}, "followed": {"_count": 4, "at": {"_count": 1}, "Lockhart": {"_count": 1}, "": {"_count": 1}, "Katie": {"_count": 1}}, "moved": {"_count": 4, "into": {"_count": 1}, "it": {"_count": 1}, "aside": {"_count": 1}, "swiftly": {"_count": 1}}, "Black": {"_count": 1, "said": {"_count": 1}}, "Dumbledore": {"_count": 9, "became": {"_count": 1}, "spoke": {"_count": 1}, "called": {"_count": 1}, "cleared": {"_count": 1}, "said": {"_count": 2}, "Ive": {"_count": 1}, "now": {"_count": 1}, "go": {"_count": 1}}, "slip": {"_count": 1, "down": {"_count": 1}}, "slid": {"_count": 3, "down": {"_count": 1}, "back": {"_count": 1}, "into": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "stood": {"_count": 4, "back": {"_count": 2}, "up": {"_count": 1}, "quite": {"_count": 1}}, "A": {"_count": 1, "cloud": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "pointed": {"_count": 5, "to": {"_count": 1}, "his": {"_count": 2}, "this": {"_count": 1}, "her": {"_count": 1}}, "her": {"_count": 3, "eyes": {"_count": 2}, "smile": {"_count": 1}}, "slammed": {"_count": 2, "the": {"_count": 1}, "hard": {"_count": 1}}, "Where": {"_count": 1, "is": {"_count": 1}}, "seize": {"_count": 1, "Ron": {"_count": 1}}, "Maybe": {"_count": 1, "I": {"_count": 1}}, "held": {"_count": 7, "out": {"_count": 3}, "her": {"_count": 1}, "it": {"_count": 2}, "his": {"_count": 1}}, "Remus": {"_count": 1, "said": {"_count": 1}}, "Ill": {"_count": 5, "call": {"_count": 1}, "go": {"_count": 1}, "be": {"_count": 3}}, "wheeled": {"_count": 1, "the": {"_count": 1}}, "Wormtail": {"_count": 2, "spoke": {"_count": 1}, "lowered": {"_count": 1}}, "Without": {"_count": 1, "Harry": {"_count": 1}}, "Frank": {"_count": 1, "heard": {"_count": 1}}, "incredibly": {"_count": 1, "miraculously": {"_count": 1}}, "paused": {"_count": 1, "wondering": {"_count": 1}}, "perhaps": {"_count": 3, "it": {"_count": 1}, "some": {"_count": 1}, "their": {"_count": 1}}, "Sirius": {"_count": 2, "had": {"_count": 2}}, "nodded": {"_count": 1, "pointedly": {"_count": 1}}, "Well": {"_count": 1, "all": {"_count": 1}}, "realized": {"_count": 6, "that": {"_count": 4}, "MadEye": {"_count": 1}, "what": {"_count": 1}}, "with": {"_count": 22, "a": {"_count": 13}, "Fudge": {"_count": 1}, "an": {"_count": 2}, "one": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}, "another": {"_count": 1}, "Slughorn": {"_count": 1}}, "crawled": {"_count": 1, "under": {"_count": 1}}, "withdrew": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "quickly": {"_count": 2, "looked": {"_count": 1}, "faced": {"_count": 1}}, "Fred": {"_count": 3, "said": {"_count": 1}, "and": {"_count": 1}, "Lee": {"_count": 1}}, "George": {"_count": 3, "said": {"_count": 1}, "come": {"_count": 1}, "": {"_count": 1}}, "stepped": {"_count": 2, "into": {"_count": 1}, "over": {"_count": 1}}, "yawning": {"_count": 1, "and": {"_count": 1}}, "His": {"_count": 2, "feet": {"_count": 2}}, "shall": {"_count": 2, "we": {"_count": 1}, "I": {"_count": 1}}, "wiping": {"_count": 1, "it": {"_count": 1}}, "up": {"_count": 4, "and": {"_count": 1}, "at": {"_count": 3}}, "settled": {"_count": 1, "himself": {"_count": 1}}, "spoke": {"_count": 3, "over": {"_count": 1}, "in": {"_count": 2}}, "split": {"_count": 2, "into": {"_count": 1}, "up": {"_count": 1}}, "finally": {"_count": 2, "Ivanova": {"_count": 1}, "coming": {"_count": 1}}, "crunching": {"_count": 1, "footsteps": {"_count": 1}}, "more": {"_count": 3, "slowly": {"_count": 1}, "staircases": {"_count": 1}, "of": {"_count": 1}}, "shed": {"_count": 1, "have": {"_count": 1}}, "hopped": {"_count": 1, "back": {"_count": 1}}, "Fathers": {"_count": 1, "always": {"_count": 1}}, "sparks": {"_count": 1, "would": {"_count": 1}}, "bounced": {"_count": 1, "upward": {"_count": 1}}, "waved": {"_count": 4, "her": {"_count": 2}, "it": {"_count": 1}, "his": {"_count": 1}}, "clapped": {"_count": 1, "his": {"_count": 1}}, "left": {"_count": 2, "for": {"_count": 2}}, "climbed": {"_count": 3, "out": {"_count": 2}, "back": {"_count": 1}}, "staring": {"_count": 1, "down": {"_count": 1}}, "Can": {"_count": 1, "you": {"_count": 1}}, "Karkaroff": {"_count": 1, "froze": {"_count": 1}}, "obviously": {"_count": 1, "deciding": {"_count": 1}}, "anyone": {"_count": 1, "can": {"_count": 1}}, "strolled": {"_count": 1, "around": {"_count": 1}}, "placed": {"_count": 2, "it": {"_count": 2}}, "returned": {"_count": 7, "to": {"_count": 5}, "the": {"_count": 1}, "for": {"_count": 1}}, "remembered": {"_count": 4, "that": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}}, "when": {"_count": 6, "they": {"_count": 2}, "I": {"_count": 1}, "he": {"_count": 2}, "Chambers": {"_count": 1}}, "very": {"_count": 2, "slowly": {"_count": 1}, "cold": {"_count": 1}}, "dragged": {"_count": 3, "her": {"_count": 2}, "off": {"_count": 1}}, "where": {"_count": 2, "had": {"_count": 1}, "is": {"_count": 1}}, "after": {"_count": 3, "about": {"_count": 1}, "yeh": {"_count": 1}, "a": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 2}, "its": {"_count": 1}}, "sent": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "lunchtime": {"_count": 1, "and": {"_count": 1}}, "weve": {"_count": 1, "been": {"_count": 1}}, "loads": {"_count": 1, "got": {"_count": 1}}, "Bagman": {"_count": 1, "glanced": {"_count": 1}}, "knelt": {"_count": 1, "down": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "down": {"_count": 1, "into": {"_count": 1}}, "unmistakably": {"_count": 1, "onto": {"_count": 1}}, "Ludo": {"_count": 1, "Bagmans": {"_count": 1}}, "laughed": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "stops": {"_count": 1, "coming": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "shrugged": {"_count": 2, "again": {"_count": 1}, "and": {"_count": 1}}, "Miss": {"_count": 1, "Delacour": {"_count": 1}}, "Krum": {"_count": 1, "tapped": {"_count": 1}}, "treated": {"_count": 1, "the": {"_count": 1}}, "send": {"_count": 1, "another": {"_count": 1}}, "Stunned": {"_count": 1, "himself": {"_count": 1}}, "froze": {"_count": 1, "at": {"_count": 1}}, "joined": {"_count": 1, "Ron": {"_count": 1}}, "like": {"_count": 1, "clouds": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "how": {"_count": 2, "could": {"_count": 1}, "it": {"_count": 1}}, "placing": {"_count": 1, "his": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "before": {"_count": 1, "Harrys": {"_count": 1}}, "slumped": {"_count": 1, "sideways": {"_count": 1}}, "suddenly": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "formed": {"_count": 1, "itself": {"_count": 1}}, "trembling": {"_count": 1, "picked": {"_count": 1}}, "fear": {"_count": 1, "that": {"_count": 1}}, "not": {"_count": 2, "even": {"_count": 1}, "to": {"_count": 1}}, "reside": {"_count": 1, "in": {"_count": 1}}, "nothing": {"_count": 1, "could": {"_count": 1}}, "Voldemorts": {"_count": 2, "red": {"_count": 1}, "intention": {"_count": 1}}, "but": {"_count": 2, "instinct": {"_count": 1}, "be": {"_count": 1}}, "others": {"_count": 1, "shouted": {"_count": 1}}, "those": {"_count": 1, "which": {"_count": 1}}, "in": {"_count": 4, "an": {"_count": 2}, "counterclockwise": {"_count": 1}, "abou": {"_count": 1}}, "mounting": {"_count": 1, "tension": {"_count": 1}}, "gone": {"_count": 1, "on": {"_count": 1}}, "adopted": {"_count": 1, "a": {"_count": 1}}, "zoomed": {"_count": 2, "outside": {"_count": 1}, "directly": {"_count": 1}}, "spat": {"_count": 1, "And": {"_count": 1}}, "Dudders": {"_count": 1, "": {"_count": 1}}, "apparently": {"_count": 1, "struggling": {"_count": 1}}, "suspension": {"_count": 1, "from": {"_count": 1}}, "stomped": {"_count": 1, "out": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "even": {"_count": 3, "more": {"_count": 2}, "as": {"_count": 1}}, "oldfashioned": {"_count": 1, "gas": {"_count": 1}}, "theyre": {"_count": 1, "really": {"_count": 1}}, "close": {"_count": 1, "": {"_count": 1}}, "Page": {"_count": 1, "lOOHarry": {"_count": 1}}, "jerked": {"_count": 1, "awake": {"_count": 1}}, "jumped": {"_count": 1, "onto": {"_count": 1}}, "sprouted": {"_count": 1, "a": {"_count": 1}}, "choked": {"_count": 1, "Mundungus": {"_count": 1}}, "bent": {"_count": 2, "over": {"_count": 1}, "down": {"_count": 1}}, "muttered": {"_count": 5, "furiously": {"_count": 1}, "very": {"_count": 1}, "to": {"_count": 1}, "Sirius": {"_count": 1}, "I": {"_count": 1}}, "panicked": {"_count": 1, "about": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "opened": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}}, "smiled": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "putting": {"_count": 1, "it": {"_count": 1}}, "applauded": {"_count": 1, "": {"_count": 1}}, "Dung": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "patrol": {"_count": 2, "the": {"_count": 2}}, "checked": {"_count": 1, "his": {"_count": 1}}, "stared": {"_count": 1, "out": {"_count": 1}}, "discord": {"_count": 1, "crept": {"_count": 1}}, "died": {"_count": 1, "out": {"_count": 1}}, "between": {"_count": 1, "old": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "produce": {"_count": 1, "the": {"_count": 1}}, "add": {"_count": 1, "two": {"_count": 1}}, "sniffed": {"_count": 1, "walked": {"_count": 1}}, "cleared": {"_count": 1, "the": {"_count": 1}}, "spent": {"_count": 1, "more": {"_count": 1}}, "who": {"_count": 1, "can": {"_count": 1}}, "reappeared": {"_count": 1, "the": {"_count": 1}}, "dashed": {"_count": 1, "off": {"_count": 1}}, "fumbled": {"_count": 1, "an": {"_count": 1}}, "switched": {"_count": 1, "his": {"_count": 1}}, "raked": {"_count": 1, "Harrys": {"_count": 1}}, "and": {"_count": 8, "lets": {"_count": 1}, "nobody": {"_count": 1}, "mind": {"_count": 1}, "much": {"_count": 1}, "had": {"_count": 1}, "not": {"_count": 1}, "take": {"_count": 1}, "There": {"_count": 1}}, "look": {"_count": 1, "around": {"_count": 1}}, "emptied": {"_count": 1, "It": {"_count": 1}}, "copy": {"_count": 1, "out": {"_count": 1}}, "T": {"_count": 1, "George": {"_count": 1}}, "proceed": {"_count": 1, "to": {"_count": 1}}, "everyone": {"_count": 1, "listen": {"_count": 1}}, "leapt": {"_count": 4, "into": {"_count": 1}, "to": {"_count": 1}, "up": {"_count": 1}, "onto": {"_count": 1}}, "about": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "looking": {"_count": 2, "anxiously": {"_count": 1}, "concerned": {"_count": 1}}, "vanished": {"_count": 1, "blocked": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "throwing": {"_count": 1, "down": {"_count": 1}}, "hesitated": {"_count": 4, "rather": {"_count": 1}, "and": {"_count": 1}, "slightly": {"_count": 1}, "looking": {"_count": 1}}, "fly": {"_count": 1, "off": {"_count": 1}}, "Perkins": {"_count": 1, "": {"_count": 1}}, "disappeared": {"_count": 2, "into": {"_count": 2}}, "either": {"_count": 2, "find": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 3, "two": {"_count": 1}, "by": {"_count": 1}, "drink": {"_count": 1}}, "snorted": {"_count": 1, "threw": {"_count": 1}}, "cause": {"_count": 1, "wed": {"_count": 1}}, "skeletal": {"_count": 1, "body": {"_count": 1}}, "bowed": {"_count": 1, "its": {"_count": 1}}, "several": {"_count": 1, "people": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "would": {"_count": 2, "unfreeze": {"_count": 1}, "he": {"_count": 1}}, "swapped": {"_count": 2, "over": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 1, "interrupted": {"_count": 1}}, "realizing": {"_count": 1, "that": {"_count": 1}}, "And": {"_count": 2, "moments": {"_count": 1}, "Harry": {"_count": 1}}, "raising": {"_count": 1, "bottles": {"_count": 1}}, "snaked": {"_count": 1, "under": {"_count": 1}}, "glanced": {"_count": 1, "around": {"_count": 1}}, "terror": {"_count": 1, "again": {"_count": 1}}, "beamed": {"_count": 1, "again": {"_count": 1}}, "Arry": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "hat": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}, "Rita": {"_count": 1, "said": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "Parvati": {"_count": 1, "raised": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "people": {"_count": 1, "burst": {"_count": 1}}, "bustled": {"_count": 1, "around": {"_count": 1}}, "brightened": {"_count": 1, "": {"_count": 1}}, "Umbridge": {"_count": 1, "shot": {"_count": 1}}, "crept": {"_count": 1, "slowly": {"_count": 1}}, "abruptly": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "shuffled": {"_count": 2, "rapidly": {"_count": 1}, "obediently": {"_count": 1}}, "folded": {"_count": 1, "causing": {"_count": 1}}, "Hermiones": {"_count": 1, "teacup": {"_count": 1}}, "ducked": {"_count": 2, "into": {"_count": 1}, "under": {"_count": 1}}, "introduce": {"_count": 1, "you": {"_count": 1}}, "lay": {"_count": 1, "awake": {"_count": 1}}, "trooped": {"_count": 1, "off": {"_count": 1}}, "demonstrate": {"_count": 1, "correct": {"_count": 1}}, "was": {"_count": 4, "lifted": {"_count": 1}, "full": {"_count": 1}, "how": {"_count": 1}, "the": {"_count": 1}}, "read": {"_count": 1, "through": {"_count": 1}}, "ran": {"_count": 4, "up": {"_count": 2}, "at": {"_count": 1}, "back": {"_count": 1}}, "caught": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "girl": {"_count": 1, "come": {"_count": 1}}, "bellowed": {"_count": 1, "HAGGER": {"_count": 1}}, "rocketed": {"_count": 1, "upward": {"_count": 1}}, "led": {"_count": 1, "the": {"_count": 1}}, "flung": {"_count": 2, "his": {"_count": 1}, "himself": {"_count": 1}}, "sprang": {"_count": 1, "back": {"_count": 1}}, "crumpled": {"_count": 2, "onto": {"_count": 1}, "his": {"_count": 1}}, "Harrys": {"_count": 1, "scar": {"_count": 1}}, "continued": {"_count": 2, "Dumbledore": {"_count": 1}, "his": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "That": {"_count": 1, "might": {"_count": 1}}, "Fang": {"_count": 1, "came": {"_count": 1}}, "hurled": {"_count": 1, "the": {"_count": 1}}, "patted": {"_count": 1, "the": {"_count": 1}}, "bleated": {"_count": 1, "the": {"_count": 1}}, "losing": {"_count": 1, "Amelia": {"_count": 1}}, "poured": {"_count": 1, "her": {"_count": 1}}, "being": {"_count": 1, "let": {"_count": 1}}, "floated": {"_count": 1, "to": {"_count": 1}}, "crossed": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "steered": {"_count": 1, "Harry": {"_count": 1}}, "swooping": {"_count": 1, "to": {"_count": 1}}, "whispered": {"_count": 2, "Are": {"_count": 1}, "into": {"_count": 1}}, "Fleurs": {"_count": 1, "words": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "marched": {"_count": 1, "into": {"_count": 1}}, "have": {"_count": 2, "been": {"_count": 1}, "occurred": {"_count": 1}}, "students": {"_count": 1, "would": {"_count": 1}}, "Goyle": {"_count": 1, "slammed": {"_count": 1}}, "tugged": {"_count": 1, "the": {"_count": 1}}, "consulted": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 2, "then": {"_count": 2}}, "here": {"_count": 1, "you": {"_count": 1}}, "sir": {"_count": 2, "": {"_count": 2}}, "CRACK": {"_count": 1, "he": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "Mrs": {"_count": 1, "Cole": {"_count": 1}}, "dived": {"_count": 1, "at": {"_count": 1}}, "Slughorn": {"_count": 1, "can": {"_count": 1}}, "youre": {"_count": 2, "in": {"_count": 1}, "going": {"_count": 1}}, "rounded": {"_count": 2, "on": {"_count": 1}, "the": {"_count": 1}}, "McLaggen": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "natural": {"_count": 1}}, "all": {"_count": 5, "of": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "three": {"_count": 1}, "the": {"_count": 1}}, "are": {"_count": 1, "prepared": {"_count": 1}}, "found": {"_count": 1, "the": {"_count": 1}}, "mboy": {"_count": 2, "ask": {"_count": 2}}, "my": {"_count": 1, "dear": {"_count": 1}}, "hastily": {"_count": 1, "did": {"_count": 1}}, "letting": {"_count": 1, "out": {"_count": 1}}, "resumed": {"_count": 3, "in": {"_count": 1}, "her": {"_count": 1}, "its": {"_count": 1}}, "swooped": {"_count": 1, "from": {"_count": 1}}, "be": {"_count": 2, "glad": {"_count": 1}, "truly": {"_count": 1}}, "headmaster": {"_count": 1, "confided": {"_count": 1}}, "shell": {"_count": 1, "ditch": {"_count": 1}}, "spread": {"_count": 1, "swirling": {"_count": 1}}, "passed": {"_count": 1, "it": {"_count": 1}}, "asked": {"_count": 1, "So": {"_count": 1}}, "sprinted": {"_count": 1, "back": {"_count": 1}}, "snatched": {"_count": 1, "up": {"_count": 1}}, "onward": {"_count": 1, "or": {"_count": 1}}, "Listen": {"_count": 1, "": {"_count": 1}}, "Dumby": {"_count": 1, "": {"_count": 1}}, "pounded": {"_count": 1, "away": {"_count": 1}}, "spotted": {"_count": 1, "a": {"_count": 1}}, "panted": {"_count": 1, "Harry": {"_count": 1}}, "swayed": {"_count": 1, "alarmingly": {"_count": 1}}, "later": {"_count": 1, "an": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "recognizing": {"_count": 1, "each": {"_count": 1}}, "traditional": {"_count": 1, "tour": {"_count": 1}}, "certainly": {"_count": 1, "a": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "lumbered": {"_count": 1, "from": {"_count": 1}}, "Blimey": {"_count": 1, "its": {"_count": 1}}, "fake": {"_count": 1, "Potters": {"_count": 1}}, "dont": {"_count": 1, "we": {"_count": 1}}, "under": {"_count": 1, "imminent": {"_count": 1}}, "leaned": {"_count": 1, "in": {"_count": 1}}, "extracted": {"_count": 1, "from": {"_count": 1}}, "open": {"_count": 1, "Hermiones": {"_count": 1}}, "together": {"_count": 1, "he": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "didnt": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "thank": {"_count": 1, "God": {"_count": 1}}, "\u2018Bad": {"_count": 1, "posture": {"_count": 1}}, "run": {"_count": 1, "onto": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "never": {"_count": 1, "knew": {"_count": 1}}, "punched": {"_count": 1, "him": {"_count": 1}}, "shivering": {"_count": 1, "slightly": {"_count": 1}}, "youve": {"_count": 2, "got": {"_count": 2}}, "clutched": {"_count": 1, "Harrys": {"_count": 1}}, "metallic": {"_count": 1, "clicks": {"_count": 1}}, "Lupin": {"_count": 1, "said": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "added": {"_count": 1, "Looked": {"_count": 1}}, "wheres": {"_count": 1, "he": {"_count": 1}}, "attempted": {"_count": 1, "the": {"_count": 1}}, "Albania": {"_count": 1, "where": {"_count": 1}}, "Ted": {"_count": 1, "spoke": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "squinting": {"_count": 1, "into": {"_count": 1}}, "instantly": {"_count": 1, "freezing": {"_count": 1}}, "straight": {"_count": 1, "out": {"_count": 1}}, "had": {"_count": 1, "she": {"_count": 1}}, "Id": {"_count": 2, "take": {"_count": 1}, "have": {"_count": 1}}, "still": {"_count": 2, "breathing": {"_count": 1}, "beaming": {"_count": 1}}, "waists": {"_count": 1, "then": {"_count": 1}}, "legs": {"_count": 1, "until": {"_count": 1}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "rapped": {"_count": 1, "three": {"_count": 1}}, "faced": {"_count": 1, "Harry": {"_count": 1}}, "Death": {"_count": 1, "asked": {"_count": 1}}, "crashed": {"_count": 1, "to": {"_count": 1}}, "But": {"_count": 1, "it": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "thats": {"_count": 1, "the": {"_count": 1}}, "leave": {"_count": 1, "them": {"_count": 1}}, "addressed": {"_count": 1, "the": {"_count": 1}}, "leaving": {"_count": 1, "Wormtails": {"_count": 1}}, "help": {"_count": 1, "had": {"_count": 1}}, "flexed": {"_count": 1, "his": {"_count": 1}}, "doublecross": {"_count": 1, "him": {"_count": 1}}, "cried": {"_count": 1, "aloud": {"_count": 1}}, "creep": {"_count": 1, "out": {"_count": 1}}, "greeted": {"_count": 1, "Travers": {"_count": 1}}, "retreated": {"_count": 1, "": {"_count": 1}}, "removed": {"_count": 1, "the": {"_count": 1}}, "gulped": {"_count": 1, "down": {"_count": 1}}, "climbing": {"_count": 1, "the": {"_count": 1}}, "Doge": {"_count": 1, "went": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "Michael": {"_count": 1, "Corner": {"_count": 1}}, "Youre": {"_count": 1, "going": {"_count": 1}}, "gather": {"_count": 1, "our": {"_count": 1}}, "Horace": {"_count": 1, "we": {"_count": 1}}, "break": {"_count": 1, "apart": {"_count": 1}}, "directed": {"_count": 1, "his": {"_count": 1}}, "battle": {"_count": 1, "recommences": {"_count": 1}}, "mentioned": {"_count": 1, "the": {"_count": 1}}, "many": {"_count": 1, "things": {"_count": 1}}, "sprint": {"_count": 1, "away": {"_count": 1}}, "Slytherin": {"_count": 1, "House": {"_count": 1}}}, "jerked": {"_count": 45, "his": {"_count": 11, "head": {"_count": 7}, "wand": {"_count": 2}, "arm": {"_count": 2}}, "her": {"_count": 6, "head": {"_count": 6}}, "its": {"_count": 1, "head": {"_count": 1}}, "sharply": {"_count": 1, "out": {"_count": 1}}, "awake": {"_count": 4, "": {"_count": 3}, "raising": {"_count": 1}}, "the": {"_count": 3, "gun": {"_count": 1}, "steering": {"_count": 1}, "Prophet": {"_count": 1}}, "it": {"_count": 2, "open": {"_count": 1}, "off": {"_count": 1}}, "suddenly": {"_count": 1, "awake": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "forward": {"_count": 1, "as": {"_count": 1}}, "irresistibly": {"_count": 1, "forward": {"_count": 1}}, "scuttled": {"_count": 1, "around": {"_count": 1}}, "upward": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 3, "twitched": {"_count": 1}, "would": {"_count": 1}, "moaned": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "upright": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "thumb": {"_count": 1}}}, "head": {"_count": 1214, "around": {"_count": 5, "to": {"_count": 1}, "the": {"_count": 2}, "fangs": {"_count": 1}, "her": {"_count": 1}}, "back": {"_count": 11, "at": {"_count": 2}, "onto": {"_count": 3}, "out": {"_count": 2}, "toward": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}}, "": {"_count": 247, ".": {"_count": 235}, "?": {"_count": 10}, "!": {"_count": 2}}, "over": {"_count": 4, "Harry": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}, "heels": {"_count": 1}}, "in": {"_count": 32, "Harrys": {"_count": 2}, "every": {"_count": 1}, "a": {"_count": 3}, "Hagrids": {"_count": 1}, "the": {"_count": 9}, "disbelief": {"_count": 2}, "disgust": {"_count": 1}, "yell": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 5}, "my": {"_count": 1}, "time": {"_count": 1}, "": {"_count": 1}, "Pansy": {"_count": 1}, "acknowledgement": {"_count": 1}, "bewilderment": {"_count": 1}}, "the": {"_count": 7, "smaller": {"_count": 1}, "candlelight": {"_count": 1}, "other": {"_count": 1}, "words": {"_count": 1}, "Other": {"_count": 1}, "slimy": {"_count": 1}, "locket": {"_count": 1}}, "who": {"_count": 1, "looked": {"_count": 1}}, "until": {"_count": 2, "its": {"_count": 1}, "he": {"_count": 1}}, "toward": {"_count": 15, "Uncle": {"_count": 1}, "the": {"_count": 7}, "a": {"_count": 1}, "them": {"_count": 3}, "Dudleys": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}}, "a": {"_count": 17, "deafening": {"_count": 1}, "year": {"_count": 1}, "little": {"_count": 7}, "bow": {"_count": 1}, "few": {"_count": 3}, "fraction": {"_count": 2}, "bit": {"_count": 1}, "need": {"_count": 1}}, "down": {"_count": 13, "it": {"_count": 1}, "and": {"_count": 6}, "Granger": {"_count": 1}, "staring": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "mind": {"_count": 1}}, "with": {"_count": 20, "his": {"_count": 3}, "her": {"_count": 2}, "the": {"_count": 1}, "earsplitting": {"_count": 1}, "a": {"_count": 8}, "happy": {"_count": 1}, "one": {"_count": 1}, "surprising": {"_count": 1}, "its": {"_count": 1}, "Mundungus": {"_count": 1}}, "for": {"_count": 6, "holding": {"_count": 1}, "some": {"_count": 1}, "Montague": {"_count": 1}, "anything": {"_count": 1}, "safety": {"_count": 1}, "the": {"_count": 1}}, "got": {"_count": 2, "back": {"_count": 1}, "rather": {"_count": 1}}, "just": {"_count": 1, "brushed": {"_count": 1}}, "like": {"_count": 8, "fireworks": {"_count": 1}, "a": {"_count": 5}, "an": {"_count": 1}, "someone": {"_count": 1}}, "NEVER": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 44, "swimming": {"_count": 3}, "so": {"_count": 2}, "building": {"_count": 1}, "still": {"_count": 4}, "on": {"_count": 2}, "half": {"_count": 1}, "milky": {"_count": 1}, "weaving": {"_count": 1}, "falling": {"_count": 1}, "spinning": {"_count": 1}, "in": {"_count": 1}, "shooting": {"_count": 1}, "scraping": {"_count": 1}, "lengthening": {"_count": 1}, "poking": {"_count": 1}, "sitting": {"_count": 3}, "wiped": {"_count": 1}, "about": {"_count": 1}, "surely": {"_count": 2}, "emerging": {"_count": 2}, "pounding": {"_count": 2}, "beginning": {"_count": 1}, "inclined": {"_count": 1}, "trembling": {"_count": 1}, "aching": {"_count": 1}, "wrapped": {"_count": 1}, "lyin": {"_count": 1}, "covered": {"_count": 1}, "suddenly": {"_count": 1}, "preventing": {"_count": 1}, "going": {"_count": 1}, "much": {"_count": 1}}, "as": {"_count": 20, "they": {"_count": 3}, "he": {"_count": 7}, "it": {"_count": 1}, "hed": {"_count": 1}, "though": {"_count": 2}, "the": {"_count": 1}, "chunks": {"_count": 1}, "one": {"_count": 1}, "she": {"_count": 1}, "Hermione": {"_count": 1}, "slowly": {"_count": 1}}, "shorter": {"_count": 3, "than": {"_count": 1}, "and": {"_count": 1}, "plump": {"_count": 1}}, "and": {"_count": 116, "began": {"_count": 2}, "then": {"_count": 2}, "the": {"_count": 7}, "said": {"_count": 3}, "Slytherin": {"_count": 2}, "his": {"_count": 6}, "strode": {"_count": 1}, "stared": {"_count": 5}, "looked": {"_count": 3}, "swooped": {"_count": 1}, "shoulders": {"_count": 4}, "a": {"_count": 2}, "not": {"_count": 1}, "yelled": {"_count": 1}, "ran": {"_count": 1}, "threw": {"_count": 2}, "looking": {"_count": 2}, "Ron": {"_count": 3}, "was": {"_count": 2}, "forced": {"_count": 1}, "Harry": {"_count": 2}, "torso": {"_count": 2}, "they": {"_count": 1}, "charge": {"_count": 1}, "didnt": {"_count": 1}, "hissed": {"_count": 1}, "sending": {"_count": 1}, "exploded": {"_count": 1}, "applied": {"_count": 1}, "called": {"_count": 1}, "laughing": {"_count": 1}, "watched": {"_count": 1}, "dived": {"_count": 1}, "retreating": {"_count": 1}, "walked": {"_count": 2}, "despite": {"_count": 1}, "opened": {"_count": 1}, "Hermione": {"_count": 1}, "prominent": {"_count": 1}, "peering": {"_count": 1}, "leaned": {"_count": 1}, "heard": {"_count": 1}, "thrust": {"_count": 1}, "covered": {"_count": 1}, "blinking": {"_count": 1}, "wiped": {"_count": 1}, "he": {"_count": 4}, "sighed": {"_count": 1}, "sprang": {"_count": 1}, "see": {"_count": 2}, "swallowed": {"_count": 1}, "sprinted": {"_count": 1}, "slid": {"_count": 1}, "body": {"_count": 1}, "toasted": {"_count": 1}, "slumping": {"_count": 1}, "neck": {"_count": 2}, "great": {"_count": 1}, "knocking": {"_count": 1}, "roared": {"_count": 1}, "set": {"_count": 1}, "brought": {"_count": 1}, "sole": {"_count": 1}, "laughs": {"_count": 1}, "staring": {"_count": 1}, "when": {"_count": 1}, "fell": {"_count": 1}, "wept": {"_count": 1}, "sticking": {"_count": 1}, "added": {"_count": 1}, "cast": {"_count": 1}, "that": {"_count": 1}, "singing": {"_count": 1}, "continued": {"_count": 1}, "she": {"_count": 1}, "made": {"_count": 1}, "barely": {"_count": 1}}, "under": {"_count": 8, "her": {"_count": 4}, "his": {"_count": 2}, "too": {"_count": 1}, "its": {"_count": 1}}, "brought": {"_count": 1, "it": {"_count": 1}}, "boy": {"_count": 1, "and": {"_count": 1}}, "The": {"_count": 2, "Sorting": {"_count": 1}, "founders": {"_count": 1}}, "when": {"_count": 3, "it": {"_count": 1}, "youre": {"_count": 1}, "they": {"_count": 1}}, "swung": {"_count": 1, "off": {"_count": 1}}, "pull": {"_count": 1, "rugs": {"_count": 1}}, "start": {"_count": 6, "": {"_count": 2}, "then": {"_count": 2}, "into": {"_count": 1}, "we": {"_count": 1}}, "of": {"_count": 32, "Gryffindor": {"_count": 6}, "the": {"_count": 14}, "an": {"_count": 1}, "Slytherin": {"_count": 1}, "their": {"_count": 1}, "Harrys": {"_count": 1}, "a": {"_count": 3}, "steam": {"_count": 1}, "Sir": {"_count": 1}, "scant": {"_count": 1}, "what": {"_count": 1}, "Nagini": {"_count": 1}}, "on": {"_count": 19, "Harrys": {"_count": 2}, "the": {"_count": 6}, "Hagrid": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 3}, "fire": {"_count": 1}, "it": {"_count": 2}, "her": {"_count": 2}, "straight": {"_count": 1}}, "inside": {"_count": 2, "": {"_count": 2}}, "open": {"_count": 1, "": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "Wingardium": {"_count": 1, "Leviosal": {"_count": 1}}, "buzzing": {"_count": 3, "with": {"_count": 2}, "": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 5, "it": {"_count": 2}, "one": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 3}, "and": {"_count": 1}}, "suspended": {"_count": 1, "in": {"_count": 1}}, "knocking": {"_count": 1, "his": {"_count": 1}}, "which": {"_count": 9, "was": {"_count": 4}, "wobbled": {"_count": 1}, "made": {"_count": 1}, "seemed": {"_count": 1}, "she": {"_count": 1}, "spun": {"_count": 1}}, "torn": {"_count": 1, "off": {"_count": 1}}, "violently": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 4, "was": {"_count": 3}, "soared": {"_count": 1}}, "bowed": {"_count": 7, "in": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 2}, "as": {"_count": 1}, "docile": {"_count": 1}}, "to": {"_count": 41, "look": {"_count": 5}, "foot": {"_count": 18}, "a": {"_count": 1}, "worry": {"_count": 1}, "fluffyslippered": {"_count": 1}, "rid": {"_count": 1}, "obscure": {"_count": 1}, "see": {"_count": 3}, "get": {"_count": 2}, "gorge": {"_count": 1}, "reveal": {"_count": 1}, "protect": {"_count": 1}, "check": {"_count": 1}, "admire": {"_count": 1}, "make": {"_count": 1}, "listen": {"_count": 1}, "head": {"_count": 1}}, "me": {"_count": 1, "off": {"_count": 1}}, "looked": {"_count": 2, "strangely": {"_count": 1}, "around": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "felt": {"_count": 3, "as": {"_count": 1}, "clearer": {"_count": 1}, "strangely": {"_count": 1}}, "lessened": {"_count": 1, "he": {"_count": 1}}, "crying": {"_count": 1, "Harry": {"_count": 1}}, "hurt": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "pound": {"_count": 1, "so": {"_count": 1}}, "furiously": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 12, "hard": {"_count": 1}, "that": {"_count": 8}, "fast": {"_count": 1}, "badly": {"_count": 1}, "close": {"_count": 1}}, "frantically": {"_count": 4, "against": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "pressing": {"_count": 1}}, "tilted": {"_count": 2, "worryingly": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 7, "eyes": {"_count": 2}, "long": {"_count": 1}, "lip": {"_count": 1}, "back": {"_count": 1}, "eardrums": {"_count": 1}, "expression": {"_count": 1}}, "against": {"_count": 6, "the": {"_count": 3}, "Mrs": {"_count": 1}, "Harrys": {"_count": 1}, "her": {"_count": 1}}, "exactly": {"_count": 1, "like": {"_count": 1}}, "Gerroff": {"_count": 1, "me": {"_count": 1}}, "almost": {"_count": 4, "touching": {"_count": 1}, "knocking": {"_count": 1}, "perfectly": {"_count": 1}, "imperceptibly": {"_count": 1}}, "out": {"_count": 9, "of": {"_count": 6}, "": {"_count": 1}, "from": {"_count": 2}}, "where": {"_count": 7, "he": {"_count": 2}, "there": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 2}, "eight": {"_count": 1}}, "but": {"_count": 8, "see": {"_count": 1}, "Fawkes": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "nothing": {"_count": 1}, "Im": {"_count": 1}, "sown": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "thanks": {"_count": 1, "": {"_count": 1}}, "cut": {"_count": 2, "open": {"_count": 1}, "off": {"_count": 1}}, "drooped": {"_count": 3, "right": {"_count": 1}, "sadly": {"_count": 1}, "onto": {"_count": 1}}, "at": {"_count": 7, "Ron": {"_count": 3}, "Harry": {"_count": 1}, "the": {"_count": 1}, "Fred": {"_count": 1}, "his": {"_count": 1}}, "had": {"_count": 11, "come": {"_count": 1}, "started": {"_count": 1}, "stopped": {"_count": 1}, "been": {"_count": 5}, "just": {"_count": 1}, "hit": {"_count": 1}, "fallen": {"_count": 1}}, "high": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 2}}, "fell": {"_count": 4, "off": {"_count": 1}, "forward": {"_count": 1}, "sideways": {"_count": 1}, "with": {"_count": 1}}, "from": {"_count": 7, "the": {"_count": 2}, "side": {"_count": 3}, "where": {"_count": 1}, "his": {"_count": 1}}, "went": {"_count": 1, "sailing": {"_count": 1}}, "came": {"_count": 2, "up": {"_count": 2}}, "cold": {"_count": 5, "and": {"_count": 1}, "": {"_count": 3}, "when": {"_count": 1}}, "off": {"_count": 8, "": {"_count": 4}, "at": {"_count": 1}, "Harrys": {"_count": 1}, "by": {"_count": 1}, "for": {"_count": 1}}, "vigorously": {"_count": 2, "ears": {"_count": 1}, "and": {"_count": 1}}, "toppling": {"_count": 1, "out": {"_count": 1}}, "drooping": {"_count": 1, "with": {"_count": 1}}, "irritably": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 7, "Myrtle": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "a": {"_count": 1}, "McGonagall": {"_count": 1}, "Ron": {"_count": 1}, "not": {"_count": 1}}, "Harry": {"_count": 7, "tried": {"_count": 1}, "regretfully": {"_count": 1}, "opened": {"_count": 1}, "stared": {"_count": 1}, "himself": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "inclined": {"_count": 1, "in": {"_count": 1}}, "wideeyed": {"_count": 1, "": {"_count": 1}}, "grazing": {"_count": 1, "the": {"_count": 1}}, "impatiently": {"_count": 2, "its": {"_count": 1}, "": {"_count": 1}}, "lolled": {"_count": 1, "hopelessly": {"_count": 1}}, "again": {"_count": 6, "": {"_count": 4}, "her": {"_count": 1}, "trying": {"_count": 1}}, "piping": {"_count": 1, "his": {"_count": 1}}, "slid": {"_count": 1, "in": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "properly": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "except": {"_count": 2, "how": {"_count": 1}, "his": {"_count": 1}}, "into": {"_count": 9, "a": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 5}, "Harrys": {"_count": 1}}, "rolled": {"_count": 4, "off": {"_count": 1}, "its": {"_count": 1}, "on": {"_count": 1}, "sideways": {"_count": 1}}, "stand": {"_count": 1, "on": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 5, "slightly": {"_count": 3}, "hard": {"_count": 1}, "slowly": {"_count": 1}}, "hopelessly": {"_count": 1, "and": {"_count": 1}}, "hit": {"_count": 3, "something": {"_count": 1}, "the": {"_count": 1}, "canvas": {"_count": 1}}, "listening": {"_count": 1, "": {"_count": 1}}, "buried": {"_count": 1, "in": {"_count": 1}}, "whenever": {"_count": 1, "the": {"_count": 1}}, "Not": {"_count": 1, "Harry": {"_count": 1}}, "these": {"_count": 1, "were": {"_count": 1}}, "turned": {"_count": 6, "and": {"_count": 2}, "": {"_count": 1}, "but": {"_count": 1}, "toward": {"_count": 1}, "every": {"_count": 1}}, "would": {"_count": 5, "come": {"_count": 1}, "burst": {"_count": 1}, "stop": {"_count": 1}, "appear": {"_count": 1}, "be": {"_count": 1}}, "still": {"_count": 5, "stuck": {"_count": 1}, "lolling": {"_count": 1}, "throbbing": {"_count": 1}, "swimming": {"_count": 1}, "swirling": {"_count": 1}}, "examining": {"_count": 1, "it": {"_count": 1}}, "jerked": {"_count": 3, "forward": {"_count": 1}, "upward": {"_count": 2}}, "Potter": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "resting": {"_count": 1, "on": {"_count": 1}}, "this": {"_count": 3, "time": {"_count": 1}, "way": {"_count": 2}}, "snapped": {"_count": 1, "up": {"_count": 1}}, "slowly": {"_count": 4, "the": {"_count": 1}, "toward": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "mouthing": {"_count": 1, "noiselessly": {"_count": 1}}, "looking": {"_count": 3, "around": {"_count": 1}, "glum": {"_count": 1}, "bewildered": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "straight": {"_count": 1, "for": {"_count": 1}}, "shrill": {"_count": 2, "and": {"_count": 1}, "high": {"_count": 1}}, "twittering": {"_count": 1, "madly": {"_count": 1}}, "quickly": {"_count": 2, "": {"_count": 1}, "followed": {"_count": 1}}, "poking": {"_count": 1, "out": {"_count": 1}}, "ah": {"_count": 1, "sir": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "flopping": {"_count": 1, "limply": {"_count": 1}}, "ripple": {"_count": 1, "as": {"_count": 1}}, "rolling": {"_count": 1, "its": {"_count": 1}}, "didnt": {"_count": 1, "wobble": {"_count": 1}}, "flopped": {"_count": 1, "off": {"_count": 1}}, "unsmilingly": {"_count": 1, "and": {"_count": 1}}, "feels": {"_count": 1, "completely": {"_count": 1}}, "disappear": {"_count": 1, "": {"_count": 1}}, "completely": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "during": {"_count": 1}}, "gave": {"_count": 2, "what": {"_count": 1}, "a": {"_count": 1}}, "hardly": {"_count": 2, "rose": {"_count": 1}, "knowing": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "brushed": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 4, "to": {"_count": 3}, "elongated": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "he": {"_count": 11, "finally": {"_count": 1}, "had": {"_count": 1}, "heard": {"_count": 1}, "wanted": {"_count": 1}, "said": {"_count": 2}, "glanced": {"_count": 1}, "might": {"_count": 1}, "sprinted": {"_count": 1}, "looked": {"_count": 1}, "attempted": {"_count": 1}}, "held": {"_count": 2, "high": {"_count": 2}}, "followed": {"_count": 1, "him": {"_count": 1}}, "revolving": {"_count": 1, "on": {"_count": 1}}, "swayed": {"_count": 1, "this": {"_count": 1}}, "rose": {"_count": 1, "with": {"_count": 1}}, "hooting": {"_count": 1, "incessantly": {"_count": 1}}, "protruding": {"_count": 1, "over": {"_count": 1}}, "disbelievingly": {"_count": 1, "while": {"_count": 1}}, "Im": {"_count": 2, "not": {"_count": 1}, "sure": {"_count": 1}}, "sceptically": {"_count": 1, "we": {"_count": 1}}, "spin": {"_count": 1, "his": {"_count": 1}}, "break": {"_count": 1, "the": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "turning": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "swam": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "right": {"_count": 1, "inside": {"_count": 1}}, "trying": {"_count": 5, "to": {"_count": 5}}, "did": {"_count": 1, "not": {"_count": 1}}, "wondering": {"_count": 2, "as": {"_count": 1}, "what": {"_count": 1}}, "becoming": {"_count": 1, "so": {"_count": 1}}, "warningly": {"_count": 2, "and": {"_count": 1}, "Ron": {"_count": 1}}, "think": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 5, "wont": {"_count": 1}, "can": {"_count": 1}, "thought": {"_count": 1}, "suppose": {"_count": 1}, "felt": {"_count": 1}}, "gray": {"_count": 1, "as": {"_count": 1}}, "then": {"_count": 1, "his": {"_count": 1}}, "reverberating": {"_count": 1, "with": {"_count": 1}}, "trembling": {"_count": 1, "": {"_count": 1}}, "darkly": {"_count": 1, "": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "lifting": {"_count": 1, "Harry": {"_count": 1}}, "Bow": {"_count": 1, "to": {"_count": 1}}, "cowering": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 3, "was": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "throbbed": {"_count": 1, "more": {"_count": 1}}, "flying": {"_count": 1, "directly": {"_count": 1}}, "throbbing": {"_count": 1, "fit": {"_count": 1}}, "pounding": {"_count": 1, "his": {"_count": 1}}, "Sturgis": {"_count": 1, "Podmore": {"_count": 1}}, "awkwardly": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "turning": {"_count": 3, "left": {"_count": 1}, "in": {"_count": 1}, "ludicrously": {"_count": 1}}, "her": {"_count": 3, "off": {"_count": 2}, "brother": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "be": {"_count": 1, "it": {"_count": 1}}, "bemused": {"_count": 1, "then": {"_count": 1}}, "slightly": {"_count": 4, "to": {"_count": 3}, "that": {"_count": 1}}, "noticing": {"_count": 1, "as": {"_count": 1}}, "long": {"_count": 1, "dark": {"_count": 1}}, "hurriedly": {"_count": 1, "over": {"_count": 1}}, "exasperatedly": {"_count": 1, "and": {"_count": 1}}, "leaking": {"_count": 1, "blood": {"_count": 1}}, "low": {"_count": 1, "over": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "appeared": {"_count": 1, "in": {"_count": 1}}, "sharply": {"_count": 1, "his": {"_count": 1}}, "ripped": {"_count": 1, "off": {"_count": 1}}, "grew": {"_count": 1, "out": {"_count": 1}}, "nor": {"_count": 1, "tail": {"_count": 1}}, "sagging": {"_count": 1, "sideways": {"_count": 1}}, "vibrated": {"_count": 1, "horribly": {"_count": 1}}, "using": {"_count": 1, "the": {"_count": 1}}, "poked": {"_count": 1, "out": {"_count": 1}}, "spun": {"_count": 1, "round": {"_count": 1}}, "sign": {"_count": 1, "creaking": {"_count": 1}}, "not": {"_count": 2, "his": {"_count": 1}, "after": {"_count": 1}}, "beaming": {"_count": 1, "": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "reappeared": {"_count": 1, "as": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "youre": {"_count": 1, "good": {"_count": 1}}, "gazed": {"_count": 1, "down": {"_count": 1}}, "ache": {"_count": 1, "and": {"_count": 1}}, "glimmered": {"_count": 1, "in": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "Fudge": {"_count": 1, "leapt": {"_count": 1}}, "dear": {"_count": 2, "Umbridge": {"_count": 1}, "": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "bent": {"_count": 3, "low": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}}, "moving": {"_count": 1, "between": {"_count": 1}}, "drew": {"_count": 1, "nearer": {"_count": 1}}, "hurtled": {"_count": 1, "through": {"_count": 1}}, "backward": {"_count": 1, "out": {"_count": 1}}, "firmly": {"_count": 1, "back": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "dismissively": {"_count": 1, "no": {"_count": 1}}, "lines": {"_count": 1, "on": {"_count": 1}}, "pompously": {"_count": 1, "": {"_count": 1}}, "Umbridge": {"_count": 1, "off": {"_count": 1}}, "bobbed": {"_count": 1, "between": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "while": {"_count": 2, "some": {"_count": 1}, "one": {"_count": 1}}, "moved": {"_count": 1, "from": {"_count": 1}}, "another": {"_count": 1, "foot": {"_count": 1}}, "sank": {"_count": 1, "through": {"_count": 1}}, "lying": {"_count": 1, "inside": {"_count": 1}}, "now": {"_count": 2, "sat": {"_count": 1}, "rested": {"_count": 1}}, "bawling": {"_count": 2, "loudly": {"_count": 1}, "his": {"_count": 1}}, "slammed": {"_count": 1, "into": {"_count": 1}}, "level": {"_count": 1, "with": {"_count": 1}}, "an": {"_count": 1, "inch": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}, "glowed": {"_count": 1, "blue": {"_count": 1}}, "about": {"_count": 1, "them": {"_count": 1}}, "swiveling": {"_count": 1, "occasionally": {"_count": 1}}, "rising": {"_count": 1, "out": {"_count": 1}}, "barely": {"_count": 2, "reached": {"_count": 2}}, "experimentally": {"_count": 1, "like": {"_count": 1}}, "or": {"_count": 1, "because": {"_count": 1}}, "gleaming": {"_count": 1, "in": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "even": {"_count": 1, "fiercer": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "jerkily": {"_count": 2, "imploringly": {"_count": 1}, "": {"_count": 1}}, "immediately": {"_count": 1, "upon": {"_count": 1}}, "shakings": {"_count": 1, "": {"_count": 1}}, "confiscated": {"_count": 1, "": {"_count": 1}}, "wearily": {"_count": 1, "": {"_count": 1}}, "yesterday": {"_count": 1, "during": {"_count": 1}}, "turn": {"_count": 2, "a": {"_count": 1}, "saw": {"_count": 1}}, "continued": {"_count": 1, "Dumbledore": {"_count": 1}}, "thatched": {"_count": 1, "though": {"_count": 1}}, "hastily": {"_count": 1, "coughing": {"_count": 1}}, "sniffing": {"_count": 1, "the": {"_count": 1}}, "unsmiling": {"_count": 1, "and": {"_count": 1}}, "wobbling": {"_count": 1, "as": {"_count": 1}}, "ruefully": {"_count": 1, "": {"_count": 1}}, "Ginny": {"_count": 2, "or": {"_count": 1}, "gasped": {"_count": 1}}, "twice": {"_count": 1, "normal": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "showering": {"_count": 1, "them": {"_count": 1}}, "Snape": {"_count": 2, "shouted": {"_count": 1}, "seemed": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "An": {"_count": 1, "entire": {"_count": 1}}, "she": {"_count": 2, "bustled": {"_count": 1}, "looked": {"_count": 1}}, "grabbed": {"_count": 1, "a": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "vanishing": {"_count": 1, "from": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "rocking": {"_count": 1, "as": {"_count": 1}}, "Fine": {"_count": 1, "Ill": {"_count": 1}}, "She": {"_count": 1, "was": {"_count": 1}}, "feverishly": {"_count": 1, "": {"_count": 1}}, "apparently": {"_count": 1, "as": {"_count": 1}}, "case": {"_count": 2, "that": {"_count": 1}, "Hagrid": {"_count": 1}}, "lightly": {"_count": 1, "with": {"_count": 1}}, "answered": {"_count": 1, "him": {"_count": 1}}, "peered": {"_count": 1, "down": {"_count": 1}}, "could": {"_count": 1, "think": {"_count": 1}}, "muffling": {"_count": 1, "his": {"_count": 1}}, "smiled": {"_count": 1, "surveying": {"_count": 1}}, "built": {"_count": 1, "more": {"_count": 1}}, "subserviently": {"_count": 1, "": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "hes": {"_count": 1, "Harry": {"_count": 1}}, "threatening": {"_count": 1, "to": {"_count": 1}}, "wobbled": {"_count": 1, "a": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "He": {"_count": 1, "forced": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "than": {"_count": 1, "robes": {"_count": 1}}, "might": {"_count": 1, "dominate": {"_count": 1}}}, "around": {"_count": 2247, "to": {"_count": 66, "look": {"_count": 7}, "see": {"_count": 19}, "drills": {"_count": 1}, "face": {"_count": 7}, "check": {"_count": 5}, "stare": {"_count": 4}, "the": {"_count": 3}, "Harry": {"_count": 1}, "watch": {"_count": 4}, "Ron": {"_count": 1}, "telling": {"_count": 2}, "find": {"_count": 2}, "get": {"_count": 1}, "gaze": {"_count": 1}, "make": {"_count": 5}, "where": {"_count": 1}, "this": {"_count": 1}, "welcome": {"_count": 1}}, "the": {"_count": 544, "corner": {"_count": 30}, "middle": {"_count": 5}, "edge": {"_count": 25}, "living": {"_count": 1}, "neck": {"_count": 7}, "front": {"_count": 3}, "waist": {"_count": 5}, "shelves": {"_count": 1}, "huge": {"_count": 1}, "turban": {"_count": 1}, "walls": {"_count": 18}, "countryside": {"_count": 1}, "grounds": {"_count": 1}, "school": {"_count": 11}, "doorpost": {"_count": 1}, "field": {"_count": 3}, "classroom": {"_count": 3}, "trolls": {"_count": 1}, "Quidditch": {"_count": 2}, "week": {"_count": 1}, "room": {"_count": 47}, "top": {"_count": 1}, "dark": {"_count": 3}, "bush": {"_count": 2}, "chamber": {"_count": 2}, "high": {"_count": 2}, "board": {"_count": 1}, "frame": {"_count": 1}, "mirror": {"_count": 1}, "world": {"_count": 1}, "head": {"_count": 3}, "clock": {"_count": 3}, "bars": {"_count": 1}, "yard": {"_count": 4}, "ankles": {"_count": 2}, "courtyard": {"_count": 1}, "stadium": {"_count": 5}, "whole": {"_count": 2}, "edges": {"_count": 5}, "curtain": {"_count": 2}, "castle": {"_count": 7}, "notice": {"_count": 2}, "hen": {"_count": 1}, "sleeping": {"_count": 1}, "desk": {"_count": 4}, "knees": {"_count": 3}, "office": {"_count": 3}, "goal": {"_count": 1}, "small": {"_count": 1}, "dungeon": {"_count": 3}, "car": {"_count": 1}, "forest": {"_count": 2}, "hollow": {"_count": 2}, "paper": {"_count": 1}, "place": {"_count": 7}, "wound": {"_count": 1}, "kitchen": {"_count": 7}, "shins": {"_count": 1}, "enormous": {"_count": 1}, "entrances": {"_count": 2}, "compartment": {"_count": 1}, "bright": {"_count": 1}, "hall": {"_count": 4}, "circular": {"_count": 1}, "same": {"_count": 2}, "cup": {"_count": 1}, "paddock": {"_count": 2}, "trophy": {"_count": 2}, "Firebolt": {"_count": 1}, "table": {"_count": 25}, "bulletin": {"_count": 1}, "empty": {"_count": 1}, "end": {"_count": 4}, "door": {"_count": 4}, "boarded": {"_count": 1}, "wrist": {"_count": 1}, "chest": {"_count": 2}, "lake": {"_count": 7}, "familiar": {"_count": 1}, "Whomping": {"_count": 1}, "cabin": {"_count": 5}, "nearest": {"_count": 2}, "black": {"_count": 2}, "Riddle": {"_count": 1}, "flower": {"_count": 1}, "light": {"_count": 1}, "old": {"_count": 2}, "ears": {"_count": 3}, "long": {"_count": 2}, "tree": {"_count": 1}, "crowded": {"_count": 1}, "clearing": {"_count": 2}, "face": {"_count": 5}, "Hall": {"_count": 3}, "bottom": {"_count": 2}, "Gryffindor": {"_count": 1}, "Great": {"_count": 3}, "Goblet": {"_count": 2}, "enchanted": {"_count": 1}, "fire": {"_count": 2}, "pub": {"_count": 1}, "perimeter": {"_count": 2}, "tent": {"_count": 4}, "back": {"_count": 3}, "Horntails": {"_count": 1}, "pumpkin": {"_count": 1}, "skrewts": {"_count": 1}, "stone": {"_count": 1}, "tea": {"_count": 2}, "class": {"_count": 2}, "fact": {"_count": 1}, "brim": {"_count": 1}, "dance": {"_count": 2}, "unicorn": {"_count": 1}, "corridors": {"_count": 2}, "pools": {"_count": 1}, "bathroom": {"_count": 2}, "baby": {"_count": 1}, "other": {"_count": 3}, "cave": {"_count": 3}, "outskirts": {"_count": 1}, "Owlery": {"_count": 2}, "patch": {"_count": 1}, "nine": {"_count": 1}, "silent": {"_count": 3}, "benches": {"_count": 1}, "crowd": {"_count": 1}, "surface": {"_count": 1}, "bowl": {"_count": 1}, "greenhouses": {"_count": 1}, "maze": {"_count": 1}, "graveyard": {"_count": 1}, "circle": {"_count": 4}, "headstone": {"_count": 2}, "inner": {"_count": 1}, "outside": {"_count": 1}, "eyes": {"_count": 1}, "screen": {"_count": 1}, "hospital": {"_count": 1}, "chain": {"_count": 1}, "foot": {"_count": 2}, "dismal": {"_count": 1}, "square": {"_count": 3}, "swaying": {"_count": 1}, "lamp": {"_count": 3}, "next": {"_count": 1}, "trestle": {"_count": 2}, "common": {"_count": 3}, "group": {"_count": 1}, "collar": {"_count": 1}, "Weasleys": {"_count": 1}, "building": {"_count": 2}, "pitch": {"_count": 6}, "tiny": {"_count": 2}, "hem": {"_count": 2}, "unkempt": {"_count": 1}, "bed": {"_count": 1}, "Room": {"_count": 2}, "handle": {"_count": 1}, "entrance": {"_count": 1}, "far": {"_count": 1}, "plates": {"_count": 1}, "mound": {"_count": 1}, "trunks": {"_count": 1}, "trees": {"_count": 1}, "trunk": {"_count": 2}, "Wizarding": {"_count": 1}, "dimly": {"_count": 1}, "centaurs": {"_count": 1}, "horse": {"_count": 1}, "dais": {"_count": 2}, "surrounding": {"_count": 1}, "side": {"_count": 3}, "dusty": {"_count": 1}, "cavernous": {"_count": 1}, "fountain": {"_count": 2}, "statue": {"_count": 1}, "quiet": {"_count": 1}, "house": {"_count": 2}, "elbows": {"_count": 1}, "shop": {"_count": 1}, "neighborhood": {"_count": 1}, "time": {"_count": 1}, "landscape": {"_count": 1}, "banisters": {"_count": 1}, "distant": {"_count": 2}, "garden": {"_count": 3}, "flowerbeds": {"_count": 1}, "hovel": {"_count": 1}, "three": {"_count": 1}, "library": {"_count": 1}, "corridor": {"_count": 1}, "tiled": {"_count": 1}, "cavern": {"_count": 1}, "vast": {"_count": 1}, "sides": {"_count": 1}, "bank": {"_count": 1}, "fake": {"_count": 1}, "landing": {"_count": 1}, "pristine": {"_count": 1}, "Snitch": {"_count": 1}, "Burrow": {"_count": 1}, "ransacked": {"_count": 1}, "Ministry": {"_count": 1}, "lifts": {"_count": 1}, "Decoy": {"_count": 1}, "remains": {"_count": 1}, "dementors": {"_count": 1}, "problem": {"_count": 2}, "useful": {"_count": 1}, "hilt": {"_count": 1}, "roots": {"_count": 1}, "base": {"_count": 1}, "pictures": {"_count": 1}, "name": {"_count": 1}, "bound": {"_count": 1}, "prisoners": {"_count": 1}, "cellar": {"_count": 2}, "counter": {"_count": 1}, "vault": {"_count": 1}, "schools": {"_count": 1}, "little": {"_count": 1}, "boundary": {"_count": 1}, "Carrows": {"_count": 1}, "unconscious": {"_count": 1}, "platform": {"_count": 1}, "heads": {"_count": 1}, "witches": {"_count": 1}}, "its": {"_count": 12, "eyes": {"_count": 2}, "head": {"_count": 1}, "supposed": {"_count": 1}, "neck": {"_count": 5}, "face": {"_count": 1}, "middle": {"_count": 1}, "rim": {"_count": 1}}, "": {"_count": 197, ".": {"_count": 182}, "!": {"_count": 5}, "?": {"_count": 10}}, "them": {"_count": 85, "": {"_count": 20}, "stared": {"_count": 2}, "vanished": {"_count": 1}, "Peeves": {"_count": 1}, "were": {"_count": 7}, "sniffing": {"_count": 1}, "was": {"_count": 2}, "all": {"_count": 2}, "people": {"_count": 2}, "sat": {"_count": 1}, "until": {"_count": 2}, "conjured": {"_count": 1}, "shouts": {"_count": 1}, "over": {"_count": 1}, "Mr": {"_count": 1}, "in": {"_count": 1}, "erupted": {"_count": 1}, "shrieked": {"_count": 1}, "slowly": {"_count": 1}, "scrambled": {"_count": 1}, "and": {"_count": 6}, "pushing": {"_count": 1}, "jostled": {"_count": 1}, "he": {"_count": 1}, "because": {"_count": 1}, "snapping": {"_count": 1}, "Dumbledore": {"_count": 1}, "bore": {"_count": 1}, "with": {"_count": 1}, "filled": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}, "bellowing": {"_count": 1}, "blocking": {"_count": 1}, "pointless": {"_count": 1}, "both": {"_count": 1}, "Fred": {"_count": 1}, "indeed": {"_count": 1}, "rearranged": {"_count": 1}, "are": {"_count": 1}, "the": {"_count": 2}, "cracking": {"_count": 1}, "or": {"_count": 1}, "for": {"_count": 2}, "from": {"_count": 1}, "waving": {"_count": 1}, "had": {"_count": 1}, "silence": {"_count": 1}}, "him": {"_count": 116, "": {"_count": 35}, "shrieked": {"_count": 1}, "as": {"_count": 5}, "again": {"_count": 2}, "he": {"_count": 5}, "Harry": {"_count": 1}, "in": {"_count": 2}, "came": {"_count": 1}, "but": {"_count": 7}, "seemed": {"_count": 1}, "and": {"_count": 12}, "once": {"_count": 1}, "inside": {"_count": 1}, "who": {"_count": 1}, "picked": {"_count": 1}, "shaking": {"_count": 1}, "closed": {"_count": 1}, "whether": {"_count": 1}, "through": {"_count": 1}, "swim": {"_count": 1}, "no": {"_count": 1}, "so": {"_count": 1}, "to": {"_count": 1}, "pointed": {"_count": 1}, "with": {"_count": 1}, "wild": {"_count": 1}, "looking": {"_count": 1}, "for": {"_count": 1}, "could": {"_count": 1}, "became": {"_count": 1}, "palpable": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 1}, "bald": {"_count": 1}, "at": {"_count": 1}, "were": {"_count": 2}, "filled": {"_count": 1}, "shimmering": {"_count": 1}, "like": {"_count": 2}, "asking": {"_count": 1}, "quills": {"_count": 1}, "they": {"_count": 1}, "his": {"_count": 1}, "smirked": {"_count": 1}, "displayed": {"_count": 1}, "other": {"_count": 1}, "Ron": {"_count": 1}, "toward": {"_count": 1}, "knowing": {"_count": 1}, "talking": {"_count": 1}, "that": {"_count": 1}, "unable": {"_count": 1}, "their": {"_count": 1}}, "Harry": {"_count": 32, "and": {"_count": 8}, "": {"_count": 6}, "like": {"_count": 2}, "Ron": {"_count": 3}, "began": {"_count": 1}, "tying": {"_count": 1}, "saw": {"_count": 2}, "she": {"_count": 1}, "were": {"_count": 1}, "ducked": {"_count": 1}, "quills": {"_count": 1}, "gazing": {"_count": 1}, "who": {"_count": 1}, "stated": {"_count": 1}, "shouted": {"_count": 1}, "as": {"_count": 1}}, "in": {"_count": 54, "his": {"_count": 6}, "my": {"_count": 2}, "a": {"_count": 4}, "the": {"_count": 15}, "pain": {"_count": 1}, "their": {"_count": 5}, "excitement": {"_count": 1}, "case": {"_count": 1}, "Goyles": {"_count": 1}, "another": {"_count": 1}, "midair": {"_count": 2}, "interest": {"_count": 1}, "its": {"_count": 1}, "agony": {"_count": 1}, "masks": {"_count": 1}, "Harrys": {"_count": 1}, "fireplaces": {"_count": 1}, "alarm": {"_count": 3}, "your": {"_count": 1}, "her": {"_count": 3}, "here": {"_count": 1}, "terror": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "and": {"_count": 93, "thinking": {"_count": 1}, "stared": {"_count": 3}, "I": {"_count": 1}, "saw": {"_count": 21}, "spying": {"_count": 1}, "spotted": {"_count": 1}, "peered": {"_count": 1}, "sort": {"_count": 1}, "said": {"_count": 2}, "leaving": {"_count": 1}, "head": {"_count": 1}, "came": {"_count": 1}, "suppressed": {"_count": 1}, "around": {"_count": 8}, "admired": {"_count": 1}, "hurried": {"_count": 1}, "sped": {"_count": 1}, "it": {"_count": 3}, "headed": {"_count": 1}, "he": {"_count": 2}, "Mr": {"_count": 1}, "marched": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}, "hissed": {"_count": 1}, "to": {"_count": 1}, "concentrate": {"_count": 1}, "reminded": {"_count": 1}, "looked": {"_count": 1}, "soon": {"_count": 1}, "grinned": {"_count": 1}, "pointed": {"_count": 1}, "ran": {"_count": 1}, "slammed": {"_count": 1}, "fixed": {"_count": 1}, "jumped": {"_count": 1}, "a": {"_count": 1}, "rustling": {"_count": 1}, "bowing": {"_count": 1}, "see": {"_count": 1}, "strode": {"_count": 1}, "found": {"_count": 1}, "glimpsed": {"_count": 1}, "seize": {"_count": 1}, "one": {"_count": 1}, "then": {"_count": 2}, "waving": {"_count": 1}, "led": {"_count": 1}, "now": {"_count": 1}, "gave": {"_count": 1}, "finding": {"_count": 1}, "caught": {"_count": 1}, "Griphook": {"_count": 1}, "screamed": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 1}, "let": {"_count": 1}, "Harry": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "like": {"_count": 9, "a": {"_count": 3}, "donkeys": {"_count": 1}, "this": {"_count": 2}, "an": {"_count": 1}, "that": {"_count": 1}, "some": {"_count": 1}}, "for": {"_count": 50, "another": {"_count": 2}, "the": {"_count": 14}, "Dobby": {"_count": 1}, "any": {"_count": 2}, "his": {"_count": 3}, "Percy": {"_count": 1}, "something": {"_count": 2}, "a": {"_count": 8}, "her": {"_count": 1}, "Professor": {"_count": 1}, "it": {"_count": 1}, "Moody": {"_count": 1}, "words": {"_count": 1}, "some": {"_count": 2}, "stories": {"_count": 1}, "tea": {"_count": 1}, "Ron": {"_count": 1}, "wood": {"_count": 1}, "Madam": {"_count": 1}, "empty": {"_count": 1}, "someone": {"_count": 1}, "Trevor": {"_count": 1}, "ages": {"_count": 1}, "he": {"_count": 1}}, "at": {"_count": 178, "everyone": {"_count": 1}, "them": {"_count": 22}, "midnight": {"_count": 1}, "night": {"_count": 2}, "the": {"_count": 57}, "his": {"_count": 4}, "Stan": {"_count": 1}, "Harry": {"_count": 19}, "Hermione": {"_count": 3}, "Ron": {"_count": 13}, "Mrs": {"_count": 1}, "Fred": {"_count": 3}, "her": {"_count": 7}, "him": {"_count": 9}, "waist": {"_count": 1}, "everybody": {"_count": 2}, "all": {"_count": 7}, "Krum": {"_count": 3}, "Sirius": {"_count": 2}, "Mr": {"_count": 1}, "Ginny": {"_count": 2}, "Umbridge": {"_count": 1}, "Katie": {"_count": 1}, "Professor": {"_count": 2}, "it": {"_count": 1}, "Rons": {"_count": 1}, "Malfoy": {"_count": 1}, "individual": {"_count": 1}, "what": {"_count": 2}, "Cho": {"_count": 1}, "Kingsley": {"_count": 1}, "home": {"_count": 1}, "their": {"_count": 1}, "Dumbledore": {"_count": 2}, "a": {"_count": 1}}, "a": {"_count": 36, "bit": {"_count": 1}, "lot": {"_count": 3}, "box": {"_count": 1}, "bar": {"_count": 1}, "large": {"_count": 4}, "crowded": {"_count": 1}, "corner": {"_count": 7}, "dark": {"_count": 1}, "school": {"_count": 1}, "root": {"_count": 1}, "clump": {"_count": 1}, "room": {"_count": 1}, "harassedlooking": {"_count": 1}, "plate": {"_count": 1}, "bag": {"_count": 1}, "month": {"_count": 1}, "dozen": {"_count": 1}, "sallow": {"_count": 1}, "very": {"_count": 1}, "basket": {"_count": 1}, "small": {"_count": 1}, "bend": {"_count": 1}, "foot": {"_count": 1}, "Portkey": {"_count": 1}, "final": {"_count": 1}}, "all": {"_count": 5, "day": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}, "week": {"_count": 1}, "three": {"_count": 1}}, "with": {"_count": 30, "riffraff": {"_count": 2}, "Harry": {"_count": 1}, "dragon": {"_count": 1}, "that": {"_count": 1}, "your": {"_count": 2}, "moon": {"_count": 1}, "you": {"_count": 2}, "wands": {"_count": 1}, "the": {"_count": 2}, "Apparition": {"_count": 1}, "a": {"_count": 2}, "my": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 2}, "them": {"_count": 1}, "much": {"_count": 1}, "Hedwig": {"_count": 1}, "Dumbledore": {"_count": 1}, "every": {"_count": 1}, "her": {"_count": 1}, "surprising": {"_count": 1}, "colored": {"_count": 1}, "stuff": {"_count": 1}, "im": {"_count": 1}}, "anxiously": {"_count": 1, "and": {"_count": 1}}, "three": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 3, "sweet": {"_count": 1}, "doorway": {"_count": 1}, "office": {"_count": 1}}, "our": {"_count": 1, "hoops": {"_count": 1}}, "their": {"_count": 16, "heads": {"_count": 4}, "compartment": {"_count": 1}, "necks": {"_count": 2}, "beds": {"_count": 1}, "knees": {"_count": 2}, "hands": {"_count": 1}, "clasped": {"_count": 1}, "ankles": {"_count": 2}, "now": {"_count": 1}, "eyes": {"_count": 1}}, "trying": {"_count": 11, "to": {"_count": 11}}, "it": {"_count": 29, "however": {"_count": 1}, "": {"_count": 9}, "in": {"_count": 2}, "clicking": {"_count": 1}, "too": {"_count": 1}, "each": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 4}, "apparently": {"_count": 1}, "some": {"_count": 1}, "he": {"_count": 1}, "able": {"_count": 1}, "closer": {"_count": 1}, "to": {"_count": 1}, "twitching": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "they": {"_count": 5, "sprinted": {"_count": 1}, "missed": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}, "will": {"_count": 1}}, "blinking": {"_count": 3, "stupidly": {"_count": 1}, "in": {"_count": 2}}, "underneath": {"_count": 1, "him": {"_count": 1}}, "her": {"_count": 50, "": {"_count": 8}, "Mrs": {"_count": 1}, "ankles": {"_count": 1}, "spindly": {"_count": 1}, "eyes": {"_count": 1}, "and": {"_count": 1}, "clubs": {"_count": 1}, "knees": {"_count": 1}, "head": {"_count": 3}, "massive": {"_count": 1}, "waist": {"_count": 2}, "antennae": {"_count": 1}, "were": {"_count": 1}, "youngest": {"_count": 1}, "desk": {"_count": 3}, "scrawny": {"_count": 1}, "ear": {"_count": 1}, "Moody": {"_count": 1}, "thin": {"_count": 1}, "face": {"_count": 1}, "wand": {"_count": 1}, "classroom": {"_count": 1}, "neck": {"_count": 2}, "wide": {"_count": 1}, "office": {"_count": 1}, "shoulders": {"_count": 2}, "by": {"_count": 1}, "elbow": {"_count": 1}, "giving": {"_count": 1}, "defensively": {"_count": 1}, "once": {"_count": 1}, "own": {"_count": 1}, "forehead": {"_count": 1}, "when": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}}, "Flint": {"_count": 1, "off": {"_count": 1}}, "his": {"_count": 112, "neck": {"_count": 28}, "shoulders": {"_count": 10}, "eyes": {"_count": 2}, "chest": {"_count": 3}, "ankles": {"_count": 2}, "room": {"_count": 2}, "pile": {"_count": 1}, "head": {"_count": 4}, "hands": {"_count": 1}, "fourposter": {"_count": 2}, "little": {"_count": 1}, "mouth": {"_count": 1}, "office": {"_count": 2}, "bed": {"_count": 4}, "pointed": {"_count": 1}, "bedroom": {"_count": 1}, "bottom": {"_count": 1}, "cage": {"_count": 3}, "waist": {"_count": 3}, "dungeon": {"_count": 1}, "four": {"_count": 2}, "finger": {"_count": 3}, "navel": {"_count": 2}, "footsteps": {"_count": 1}, "throat": {"_count": 2}, "goatee": {"_count": 1}, "own": {"_count": 4}, "wand": {"_count": 2}, "midriff": {"_count": 1}, "grinning": {"_count": 1}, "legs": {"_count": 1}, "knees": {"_count": 1}, "eye": {"_count": 1}, "horses": {"_count": 1}, "desk": {"_count": 2}, "daughters": {"_count": 1}, "enormous": {"_count": 1}, "shaking": {"_count": 1}, "face": {"_count": 1}, "ears": {"_count": 1}, "bright": {"_count": 1}, "upper": {"_count": 1}, "overflowing": {"_count": 1}, "snout": {"_count": 1}, "torso": {"_count": 1}, "ribs": {"_count": 1}, "jaw": {"_count": 1}, "thin": {"_count": 1}, "wrist": {"_count": 1}}, "bouncing": {"_count": 1, "off": {"_count": 1}}, "himself": {"_count": 4, "": {"_count": 3}, "that": {"_count": 1}}, "you": {"_count": 6, "": {"_count": 3}, "nonmagical": {"_count": 1}, "because": {"_count": 1}, "casts": {"_count": 1}}, "under": {"_count": 2, "her": {"_count": 1}, "their": {"_count": 1}}, "quickly": {"_count": 3, "to": {"_count": 3}}, "Harrys": {"_count": 21, "brain": {"_count": 1}, "heart": {"_count": 1}, "neck": {"_count": 4}, "bed": {"_count": 3}, "middle": {"_count": 1}, "knees": {"_count": 1}, "throat": {"_count": 2}, "head": {"_count": 1}, "leg": {"_count": 1}, "legs": {"_count": 1}, "own": {"_count": 1}, "whose": {"_count": 1}, "arm": {"_count": 1}, "wrist": {"_count": 1}, "stomach": {"_count": 1}}, "school": {"_count": 2, "at": {"_count": 1}, "all": {"_count": 1}}, "No": {"_count": 1, "said": {"_count": 1}}, "since": {"_count": 1, "last": {"_count": 1}}, "YouKnowWho": {"_count": 1, "wont": {"_count": 1}}, "Hogwarts": {"_count": 6, "": {"_count": 3}, "theres": {"_count": 1}, "became": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 23, "if": {"_count": 1}, "usual": {"_count": 2}, "Professor": {"_count": 2}, "Harry": {"_count": 2}, "the": {"_count": 2}, "they": {"_count": 4}, "he": {"_count": 3}, "though": {"_count": 4}, "Dumbledore": {"_count": 1}, "a": {"_count": 1}, "surreptitiously": {"_count": 1}}, "unseen": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 3, "youve": {"_count": 1}, "more": {"_count": 1}, "and": {"_count": 1}}, "looking": {"_count": 4, "for": {"_count": 2}, "like": {"_count": 1}, "up": {"_count": 1}}, "wildly": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "outside": {"_count": 4, "": {"_count": 1}, "the": {"_count": 3}}, "watching": {"_count": 1, "and": {"_count": 1}}, "cooking": {"_count": 1, "breakfast": {"_count": 1}}, "saw": {"_count": 3, "Harry": {"_count": 1}, "Malfoy": {"_count": 1}, "Madame": {"_count": 1}}, "Knockturn": {"_count": 1, "Alley": {"_count": 1}}, "Sprinting": {"_count": 1, "up": {"_count": 1}}, "Mrs": {"_count": 2, "Weasleys": {"_count": 1}, "Weasley": {"_count": 1}}, "taking": {"_count": 1, "photographs": {"_count": 1}}, "just": {"_count": 2, "in": {"_count": 2}}, "rattling": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 9, "who": {"_count": 1}, "shrugged": {"_count": 1}, "and": {"_count": 4}, "to": {"_count": 1}, "before": {"_count": 1}, "looked": {"_count": 1}}, "making": {"_count": 3, "them": {"_count": 1}, "tea": {"_count": 2}}, "But": {"_count": 1, "then": {"_count": 1}}, "however": {"_count": 2, "when": {"_count": 1}, "before": {"_count": 1}}, "squinting": {"_count": 1, "up": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 2}, "Hermione": {"_count": 1}, "Fred": {"_count": 1}, "Sirius": {"_count": 1}}, "twenty": {"_count": 2, "spiders": {"_count": 1}, "of": {"_count": 1}}, "me": {"_count": 3, "all": {"_count": 1}, "everywhere": {"_count": 1}, "": {"_count": 1}}, "rain": {"_count": 1, "falling": {"_count": 1}}, "he": {"_count": 13, "opened": {"_count": 1}, "sprinted": {"_count": 1}, "hears": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}, "thought": {"_count": 1}, "and": {"_count": 1}, "reached": {"_count": 1}, "hurtled": {"_count": 1}, "saw": {"_count": 2}, "cried": {"_count": 1}, "caught": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "dark": {"_count": 2, "corridors": {"_count": 1}, "caves": {"_count": 1}}, "Hermiones": {"_count": 2, "bed": {"_count": 1}, "shoulders": {"_count": 1}}, "would": {"_count": 1, "they": {"_count": 1}}, "this": {"_count": 4, "late": {"_count": 1}, "place": {"_count": 1}, "ward": {"_count": 1}, "objection": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "on": {"_count": 19, "the": {"_count": 10}, "his": {"_count": 3}, "your": {"_count": 2}, "her": {"_count": 2}, "their": {"_count": 1}, "our": {"_count": 1}}, "corners": {"_count": 2, "with": {"_count": 1}, "beyond": {"_count": 1}}, "yet": {"_count": 1, "another": {"_count": 1}}, "hitting": {"_count": 1, "pillars": {"_count": 1}}, "Errols": {"_count": 1, "legs": {"_count": 1}}, "threw": {"_count": 1, "himself": {"_count": 1}}, "pulled": {"_count": 1, "open": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 3, "mean": {"_count": 1}, "suppose": {"_count": 1}, "for": {"_count": 1}}, "surprised": {"_count": 1, "": {"_count": 1}}, "impressively": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "felt": {"_count": 1, "he": {"_count": 1}}, "Easter": {"_count": 1, "one": {"_count": 1}}, "if": {"_count": 2, "yeh": {"_count": 1}, "he": {"_count": 1}}, "rather": {"_count": 1, "wildly": {"_count": 1}}, "hoping": {"_count": 1, "no": {"_count": 1}}, "Crookshanks": {"_count": 1, "still": {"_count": 1}}, "Lavender": {"_count": 4, "now": {"_count": 1}, "and": {"_count": 1}, "Brown": {"_count": 1}, "that": {"_count": 1}}, "Lavenders": {"_count": 1, "shoulders": {"_count": 1}}, "after": {"_count": 4, "them": {"_count": 1}, "him": {"_count": 1}, "hours": {"_count": 1}, "their": {"_count": 1}}, "Wood": {"_count": 1, "for": {"_count": 1}}, "behind": {"_count": 4, "Malfoy": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "Snape": {"_count": 1}}, "Malfoy": {"_count": 1, "trying": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "cheerfully": {"_count": 1, "": {"_count": 1}}, "Rons": {"_count": 8, "neck": {"_count": 3}, "outstretched": {"_count": 1}, "arms": {"_count": 1}, "chest": {"_count": 1}, "bed": {"_count": 1}, "shoulders": {"_count": 1}}, "too": {"_count": 4, "": {"_count": 4}}, "Quidditch": {"_count": 1, "practice": {"_count": 1}}, "Montague": {"_count": 1, "duck": {"_count": 1}}, "bent": {"_count": 1, "so": {"_count": 1}}, "Hagrids": {"_count": 2, "house": {"_count": 1}, "pumpkin": {"_count": 1}}, "Blacks": {"_count": 1, "left": {"_count": 1}}, "Lupins": {"_count": 1, "mouth": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "down": {"_count": 1, "there": {"_count": 1}}, "people": {"_count": 1, "who": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 1}, "all": {"_count": 1}, "that": {"_count": 1}}, "seconds": {"_count": 1, "later": {"_count": 1}}, "Buckbeaks": {"_count": 1, "neck": {"_count": 1}}, "facing": {"_count": 1, "the": {"_count": 1}}, "cramming": {"_count": 1, "them": {"_count": 1}}, "inside": {"_count": 6, "it": {"_count": 5}, "him": {"_count": 1}}, "listening": {"_count": 4, "closely": {"_count": 1}, "again": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}}, "midday": {"_count": 2, "Mrs": {"_count": 1}, "": {"_count": 1}}, "Britain": {"_count": 1, "and": {"_count": 1}}, "seventeen": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "through": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "lopsided": {"_count": 1}}, "Mr": {"_count": 5, "Diggory": {"_count": 1}, "Weasleys": {"_count": 3}, "Weasley": {"_count": 1}}, "Basil": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 4, "the": {"_count": 1}, "Harry": {"_count": 2}, "hes": {"_count": 1}}, "somewhere": {"_count": 1, "covered": {"_count": 1}}, "fixing": {"_count": 1, "upon": {"_count": 1}}, "wearing": {"_count": 1, "badges": {"_count": 1}}, "every": {"_count": 4, "morning": {"_count": 1}, "wall": {"_count": 1}, "other": {"_count": 1}, "doorway": {"_count": 1}}, "that": {"_count": 5, "Warrington": {"_count": 1}, "day": {"_count": 1}, "said": {"_count": 2}, "black": {"_count": 1}}, "themselves": {"_count": 3, "they": {"_count": 1}, "ought": {"_count": 1}, "and": {"_count": 1}}, "Fleurs": {"_count": 1, "shoulders": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "Dumbledore": {"_count": 3, "and": {"_count": 1}, "was": {"_count": 1}, "if": {"_count": 1}}, "laughing": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "go": {"_count": 1, "straight": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "so": {"_count": 4, "fast": {"_count": 1}, "that": {"_count": 2}, "much": {"_count": 1}}, "Cho": {"_count": 1, "started": {"_count": 1}}, "Ive": {"_count": 1, "gone": {"_count": 1}}, "but": {"_count": 4, "Hermione": {"_count": 1}, "you": {"_count": 1}, "unfortunately": {"_count": 1}, "dont": {"_count": 1}}, "showing": {"_count": 1, "off": {"_count": 1}}, "waiting": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "no": {"_count": 1, "poor": {"_count": 1}}, "there": {"_count": 3, "were": {"_count": 2}, "was": {"_count": 1}}, "ze": {"_count": 2, "dining": {"_count": 1}, "place": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}, "look": {"_count": 1, "gray": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "everywhere": {"_count": 1, "she": {"_count": 1}}, "somebody": {"_count": 1, "elses": {"_count": 1}}, "Filch": {"_count": 1, "s": {"_count": 1}}, "Filchs": {"_count": 2, "legs": {"_count": 1}, "skinny": {"_count": 1}}, "S": {"_count": 1, "napes": {"_count": 1}}, "lately": {"_count": 1, "helped": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "staring": {"_count": 2, "about": {"_count": 1}, "at": {"_count": 1}}, "Goyle": {"_count": 1, "s": {"_count": 1}}, "Hogsmeade": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 9, "who": {"_count": 1}, "": {"_count": 4}, "Potter": {"_count": 1}, "with": {"_count": 1}, "somewhere": {"_count": 2}}, "Hermione": {"_count": 8, "took": {"_count": 1}, "walked": {"_count": 1}, "let": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "s": {"_count": 1}}, "realized": {"_count": 1, "what": {"_count": 1}}, "more": {"_count": 1, "carefully": {"_count": 1}}, "Wormtails": {"_count": 2, "neck": {"_count": 1}, "throat": {"_count": 1}}, "Snapes": {"_count": 1, "legs": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "strode": {"_count": 1, "back": {"_count": 1}}, "Little": {"_count": 2, "Whinging": {"_count": 2}}, "were": {"_count": 2, "terrified": {"_count": 1}, "watching": {"_count": 1}}, "unseeing": {"_count": 1, "": {"_count": 1}}, "frantically": {"_count": 1, "in": {"_count": 1}}, "Wisteria": {"_count": 1, "Walk": {"_count": 1}}, "Dudley": {"_count": 1, "who": {"_count": 1}}, "these": {"_count": 2, "that": {"_count": 1}, "neatly": {"_count": 1}}, "oh": {"_count": 1, "my": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 2}}, "above": {"_count": 1, "his": {"_count": 1}}, "first": {"_count": 1, "placing": {"_count": 1}}, "six": {"_count": 2, "oclock": {"_count": 2}}, "chatting": {"_count": 1, "all": {"_count": 1}}, "carefully": {"_count": 3, "spotted": {"_count": 1}, "": {"_count": 2}}, "came": {"_count": 1, "the": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "while": {"_count": 2, "youre": {"_count": 1}, "the": {"_count": 1}}, "an": {"_count": 1, "officiallooking": {"_count": 1}}, "Nevilles": {"_count": 1, "neck": {"_count": 1}}, "Siriuss": {"_count": 1, "untidy": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "beaming": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "nervously": {"_count": 5, "as": {"_count": 3}, "for": {"_count": 1}, "one": {"_count": 1}}, "Ginny": {"_count": 2, "Neville": {"_count": 1}, "": {"_count": 1}}, "impressed": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "holding": {"_count": 1}}, "spect": {"_count": 1, "Golgomath": {"_count": 1}}, "Golgomathll": {"_count": 1, "move": {"_count": 1}}, "again": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "lots": {"_count": 1}, "so": {"_count": 1}}, "trees": {"_count": 1, "for": {"_count": 1}}, "Dumbledores": {"_count": 2, "desk": {"_count": 1}, "body": {"_count": 1}}, "automatically": {"_count": 1, "for": {"_count": 1}}, "lunchtime": {"_count": 1, "he": {"_count": 1}}, "upstairs": {"_count": 1, "he": {"_count": 1}}, "Gilderoys": {"_count": 1, "headboard": {"_count": 1}}, "two": {"_count": 1, "beds": {"_count": 1}}, "hastily": {"_count": 1, "and": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "Grimmauld": {"_count": 1, "Square": {"_count": 1}}, "Black": {"_count": 1, "as": {"_count": 1}}, "curiously": {"_count": 1, "": {"_count": 1}}, "madly": {"_count": 1, "became": {"_count": 1}}, "noisily": {"_count": 1, "pulling": {"_count": 1}}, "each": {"_count": 7, "other": {"_count": 3}, "trying": {"_count": 1}, "others": {"_count": 2}, "of": {"_count": 1}}, "had": {"_count": 1, "turned": {"_count": 1}}, "Lupin": {"_count": 1, "to": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "Grawps": {"_count": 1, "wrists": {"_count": 1}}, "fangs": {"_count": 1, "bared": {"_count": 1}}, "dangerously": {"_count": 1, "but": {"_count": 1}}, "lazily": {"_count": 1, "in": {"_count": 1}}, "nice": {"_count": 1, "and": {"_count": 1}}, "cautiously": {"_count": 1, "": {"_count": 1}}, "Ginnys": {"_count": 1, "waist": {"_count": 1}}, "They": {"_count": 1, "had": {"_count": 1}}, "Voldemort": {"_count": 2, "shield": {"_count": 1}, "who": {"_count": 1}}, "shaking": {"_count": 1, "with": {"_count": 1}}, "Somerset": {"_count": 1, "but": {"_count": 1}}, "which": {"_count": 2, "we": {"_count": 1}, "a": {"_count": 1}}, "your": {"_count": 3, "house": {"_count": 1}, "neck": {"_count": 2}}, "instinctively": {"_count": 1, "as": {"_count": 1}}, "halfscared": {"_count": 1, "of": {"_count": 1}}, "midnight": {"_count": 1, "": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 2, "slid": {"_count": 1}, "directed": {"_count": 1}}, "He": {"_count": 2, "was": {"_count": 2}}, "Slughorn": {"_count": 3, "s": {"_count": 1}, "all": {"_count": 1}, "with": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "Jack": {"_count": 1, "Sloper": {"_count": 1}}, "surreptitiously": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "how": {"_count": 1, "much": {"_count": 1}}, "gossiping": {"_count": 1, "about": {"_count": 1}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "brewing": {"_count": 1, "up": {"_count": 1}}, "Katie": {"_count": 1, "who": {"_count": 1}}, "Leanne": {"_count": 1, "": {"_count": 1}}, "sure": {"_count": 1, "enough": {"_count": 1}}, "Harper": {"_count": 1, "had": {"_count": 1}}, "putting": {"_count": 1, "potions": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "furtively": {"_count": 1, "to": {"_count": 1}}, "terrified": {"_count": 1, "to": {"_count": 1}}, "onelegged": {"_count": 1, "and": {"_count": 1}}, "Riddle": {"_count": 1, "was": {"_count": 1}}, "enjoying": {"_count": 1, "all": {"_count": 1}}, "drawing": {"_count": 1, "his": {"_count": 1}}, "fifteen": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 3, "corner": {"_count": 2}, "bed": {"_count": 1}}, "desperately": {"_count": 1, "for": {"_count": 1}}, "staggered": {"_count": 1, "and": {"_count": 1}}, "groggily": {"_count": 1, "for": {"_count": 1}}, "distractedly": {"_count": 1, "": {"_count": 1}}, "Bills": {"_count": 1, "bed": {"_count": 1}}, "Yaxley": {"_count": 2, "looked": {"_count": 1}, "had": {"_count": 1}}, "underseventeens": {"_count": 1, "the": {"_count": 1}}, "grinning": {"_count": 1, "winked": {"_count": 1}}, "small": {"_count": 1, "whiteclothed": {"_count": 1}}, "suspiciously": {"_count": 1, "": {"_count": 1}}, "throwing": {"_count": 1, "off": {"_count": 1}}, "worried": {"_count": 1, "thinking": {"_count": 1}}, "holding": {"_count": 1, "Hermiones": {"_count": 1}}, "RiddleHarry": {"_count": 1, "wrapping": {"_count": 1}}, "slipping": {"_count": 1, "in": {"_count": 1}}, "though": {"_count": 1, "so": {"_count": 1}}, "waving": {"_count": 1, "it": {"_count": 1}}, "us": {"_count": 1, "quickly": {"_count": 1}}, "shocked": {"_count": 1, "she": {"_count": 1}}, "There": {"_count": 1, "were": {"_count": 1}}, "eyebrows": {"_count": 1, "raised": {"_count": 1}}, "nearby": {"_count": 1, "": {"_count": 1}}, "constantly": {"_count": 1, "imagining": {"_count": 1}}, "properly": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "slipped": {"_count": 1, "off": {"_count": 1}}, "Alecto": {"_count": 1, "": {"_count": 1}}, "running": {"_count": 1, "footsteps": {"_count": 1}}, "The": {"_count": 1, "battle": {"_count": 1}}, "such": {"_count": 1, "creations": {"_count": 1}}}, "look": {"_count": 1246, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 116, ".": {"_count": 88}, "!": {"_count": 22}, "?": {"_count": 6}}, "at": {"_count": 275, "it": {"_count": 9}, "Dumbledore": {"_count": 4}, "photographs": {"_count": 1}, "Tibbies": {"_count": 1}, "the": {"_count": 49}, "them": {"_count": 7}, "Hagrid": {"_count": 1}, "Harry": {"_count": 26}, "everything": {"_count": 1}, "racing": {"_count": 1}, "that": {"_count": 6}, "yer": {"_count": 1}, "him": {"_count": 35}, "Malfoy": {"_count": 3}, "this": {"_count": 13}, "himself": {"_count": 1}, "what": {"_count": 7}, "each": {"_count": 6}, "Ron": {"_count": 10}, "his": {"_count": 4}, "a": {"_count": 3}, "all": {"_count": 3}, "Mrs": {"_count": 4}, "home": {"_count": 2}, "my": {"_count": 1}, "Ginny": {"_count": 2}, "me": {"_count": 10}, "Harrys": {"_count": 2}, "Snape": {"_count": 4}, "her": {"_count": 16}, "Black": {"_count": 1}, "Scabbers": {"_count": 1}, "Buckbeak": {"_count": 1}, "these": {"_count": 2}, "Winky": {"_count": 1}, "both": {"_count": 1}, "Uranus": {"_count": 1}, "Professor": {"_count": 1}, "yeh": {"_count": 1}, "Moody": {"_count": 1}, "how": {"_count": 1}, "Dobby": {"_count": 1}, "MadEye": {"_count": 1}, "something": {"_count": 1}, "Sirius": {"_count": 1}, "whats": {"_count": 1}, "Hermione": {"_count": 2}, "Luna": {"_count": 1}, "being": {"_count": 1}, "Cho": {"_count": 2}, "poor": {"_count": 1}, "any": {"_count": 3}, "Parvati": {"_count": 1}, "another": {"_count": 1}, "Umbridge": {"_count": 1}, "but": {"_count": 1}, "Bellatrix": {"_count": 1}, "Emmeline": {"_count": 1}, "\u2018the": {"_count": 1}, "just": {"_count": 1}, "Bill": {"_count": 2}, "Lupin": {"_count": 1}, "an": {"_count": 1}, "you": {"_count": 2}, "Fred": {"_count": 1}}, "after": {"_count": 42, "the": {"_count": 2}, "Ron": {"_count": 3}, "": {"_count": 2}, "you": {"_count": 4}, "Harry": {"_count": 1}, "himself": {"_count": 1}, "flobberworms": {"_count": 1}, "him": {"_count": 5}, "my": {"_count": 1}, "Mad": {"_count": 1}, "humans": {"_count": 1}, "yourself": {"_count": 5}, "her": {"_count": 2}, "myself": {"_count": 1}, "yourselves": {"_count": 1}, "Crookshanks": {"_count": 1}, "themselves": {"_count": 2}, "porlocks": {"_count": 1}, "yeh": {"_count": 1}, "I": {"_count": 1}, "them": {"_count": 2}, "everyone": {"_count": 1}, "itself": {"_count": 1}, "Hermione": {"_count": 1}}, "it": {"_count": 3, "but": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 28, "the": {"_count": 11}, "any": {"_count": 1}, "here": {"_count": 1}, "his": {"_count": 5}, "them": {"_count": 1}, "excellent": {"_count": 1}, "on": {"_count": 1}, "Siriuss": {"_count": 1}, "Hermiones": {"_count": 1}, "politicians": {"_count": 1}, "before": {"_count": 1}, "her": {"_count": 2}, "": {"_count": 1}}, "that": {"_count": 17, "said": {"_count": 1}, "would": {"_count": 1}, "suggested": {"_count": 1}, "Azkaban": {"_count": 1}, "told": {"_count": 2}, "scorches": {"_count": 1}, "swept": {"_count": 1}, "happy": {"_count": 1}, "Harry": {"_count": 2}, "plainly": {"_count": 1}, "what": {"_count": 1}, "confirmed": {"_count": 1}, "he": {"_count": 1}, "changed": {"_count": 1}, "was": {"_count": 1}}, "just": {"_count": 2, "like": {"_count": 2}}, "on": {"_count": 53, "his": {"_count": 12}, "Harrys": {"_count": 12}, "Malfoys": {"_count": 3}, "Mrs": {"_count": 1}, "Rons": {"_count": 5}, "Hermione": {"_count": 2}, "her": {"_count": 9}, "Dudleys": {"_count": 1}, "your": {"_count": 2}, "Hermiones": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "Siriuss": {"_count": 1}, "Changs": {"_count": 1}}, "a": {"_count": 14, "lot": {"_count": 2}, "bit": {"_count": 5}, "feeling": {"_count": 1}, "manticore": {"_count": 1}, "last": {"_count": 1}, "real": {"_count": 1}, "gentleman": {"_count": 1}, "little": {"_count": 1}, "Blibbering": {"_count": 1}}, "Hagrid": {"_count": 1, "now": {"_count": 1}}, "very": {"_count": 11, "green": {"_count": 1}, "vicious": {"_count": 1}, "stupid": {"_count": 1}, "friendly": {"_count": 1}, "odd": {"_count": 1}, "well": {"_count": 2}, "suspicious": {"_count": 1}, "like": {"_count": 1}, "sweet": {"_count": 1}, "strained": {"_count": 1}}, "Lee": {"_count": 1, "go": {"_count": 1}}, "for": {"_count": 27, "Nevilles": {"_count": 1}, "them": {"_count": 3}, "the": {"_count": 4}, "spiders": {"_count": 1}, "Scabbers": {"_count": 1}, "her": {"_count": 4}, "people": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 2}, "my": {"_count": 1}, "yourself": {"_count": 1}, "lit": {"_count": 1}, "giants": {"_count": 1}, "certain": {"_count": 1}, "Kreacher": {"_count": 1}, "your": {"_count": 1}, "some": {"_count": 1}, "more": {"_count": 1}}, "like": {"_count": 58, "the": {"_count": 3}, "": {"_count": 5}, "a": {"_count": 13}, "if": {"_count": 1}, "youre": {"_count": 1}, "badly": {"_count": 1}, "an": {"_count": 3}, "he": {"_count": 2}, "and": {"_count": 1}, "until": {"_count": 1}, "that": {"_count": 3}, "such": {"_count": 1}, "fun": {"_count": 1}, "trying": {"_count": 1}, "Hermione": {"_count": 1}, "Im": {"_count": 1}, "Krum": {"_count": 1}, "him": {"_count": 1}, "theyve": {"_count": 1}, "youve": {"_count": 1}, "Muggles": {"_count": 2}, "it": {"_count": 2}, "hell": {"_count": 1}, "they": {"_count": 4}, "other": {"_count": 1}, "Ive": {"_count": 1}, "anywhere": {"_count": 1}, "us": {"_count": 1}, "I": {"_count": 2}}, "good": {"_count": 4, "said": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}, "hes": {"_count": 1}}, "too": {"_count": 11, "pleased": {"_count": 3}, "guilty": {"_count": 1}, "closely": {"_count": 1}, "enthusiastic": {"_count": 1}, "I": {"_count": 1}, "stern": {"_count": 1}, "happy": {"_count": 1}, "": {"_count": 1}, "fishy": {"_count": 1}}, "forward": {"_count": 9, "to": {"_count": 9}}, "if": {"_count": 3, "I": {"_count": 1}, "a": {"_count": 1}, "she": {"_count": 1}}, "down": {"_count": 9, "at": {"_count": 4}, "onto": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}, "Ron": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "Neville": {"_count": 1, "weve": {"_count": 1}}, "flashy": {"_count": 1, "but": {"_count": 1}}, "of": {"_count": 98, "horror": {"_count": 3}, "awe": {"_count": 1}, "amazement": {"_count": 1}, "panic": {"_count": 2}, "deep": {"_count": 4}, "pure": {"_count": 2}, "trollish": {"_count": 1}, "great": {"_count": 4}, "shock": {"_count": 3}, "concern": {"_count": 2}, "utter": {"_count": 1}, "abject": {"_count": 1}, "terror": {"_count": 2}, "enormous": {"_count": 1}, "the": {"_count": 2}, "loathing": {"_count": 1}, "surprise": {"_count": 1}, "indignation": {"_count": 1}, "maddening": {"_count": 1}, "fervent": {"_count": 1}, "utmost": {"_count": 1}, "suppressed": {"_count": 1}, "sudden": {"_count": 1}, "triumph": {"_count": 2}, "dreamy": {"_count": 1}, "a": {"_count": 7}, "pokerstiff": {"_count": 1}, "them": {"_count": 1}, "mingled": {"_count": 4}, "intense": {"_count": 1}, "roundeyed": {"_count": 1}, "this": {"_count": 1}, "revulsion": {"_count": 1}, "cruel": {"_count": 1}, "someone": {"_count": 1}, "dawning": {"_count": 3}, "some": {"_count": 1}, "pained": {"_count": 1}, "that": {"_count": 1}, "her": {"_count": 1}, "deepest": {"_count": 2}, "positive": {"_count": 1}, "longing": {"_count": 1}, "grim": {"_count": 2}, "innocent": {"_count": 1}, "warning": {"_count": 1}, "avid": {"_count": 1}, "gloating": {"_count": 1}, "two": {"_count": 1}, "total": {"_count": 1}, "eagerness": {"_count": 1}, "outrage": {"_count": 1}, "stunned": {"_count": 1}, "his": {"_count": 2}, "curiosity": {"_count": 1}, "delighted": {"_count": 1}, "incredulous": {"_count": 1}, "page": {"_count": 1}, "disdain": {"_count": 1}, "disgust": {"_count": 1}, "vindictive": {"_count": 1}, "incomprehension": {"_count": 1}, "pleasant": {"_count": 1}, "rage": {"_count": 1}, "one": {"_count": 1}, "innocence": {"_count": 1}, "annoyance": {"_count": 1}, "supplication": {"_count": 1}}, "up": {"_count": 24, "": {"_count": 5}, "until": {"_count": 2}, "into": {"_count": 2}, "at": {"_count": 7}, "eagerly": {"_count": 2}, "angrily": {"_count": 1}, "dont": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}, "again": {"_count": 1}, "nervously": {"_count": 1}}, "so": {"_count": 10, "angry": {"_count": 1}, "mean": {"_count": 1}, "uncomfortable": {"_count": 1}, "worried": {"_count": 1}, "reminiscent": {"_count": 1}, "suspicious": {"_count": 1}, "gleeful": {"_count": 1}, "pretty": {"_count": 1}, "concerned": {"_count": 1}, "unhappy": {"_count": 1}}, "as": {"_count": 37, "though": {"_count": 27}, "if": {"_count": 3}, "Mr": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}, "Mrs": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}}, "Harrys": {"_count": 1, "got": {"_count": 1}}, "odd": {"_count": 1, "": {"_count": 1}}, "older": {"_count": 1, "and": {"_count": 1}}, "excitedly": {"_count": 1, "at": {"_count": 1}}, "You": {"_count": 1, "had": {"_count": 1}}, "into": {"_count": 8, "it": {"_count": 2}, "the": {"_count": 1}, "them": {"_count": 1}, "Snape": {"_count": 1}, "Harrys": {"_count": 1}, "its": {"_count": 1}, "their": {"_count": 1}}, "terrible": {"_count": 4, "": {"_count": 3}, "was": {"_count": 1}}, "he": {"_count": 8, "knows": {"_count": 1}, "had": {"_count": 1}, "jumped": {"_count": 1}, "gave": {"_count": 2}, "could": {"_count": 1}, "changed": {"_count": 1}, "bent": {"_count": 1}}, "more": {"_count": 5, "cheerful": {"_count": 1}, "closely": {"_count": 1}, "than": {"_count": 1}, "twisted": {"_count": 1}, "manly": {"_count": 1}}, "stunned": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 6, "my": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "them": {"_count": 1}, "it": {"_count": 1}}, "carefully": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 13, "at": {"_count": 6}, "or": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}}, "without": {"_count": 1, "Quirrell": {"_count": 1}}, "and": {"_count": 30, "lie": {"_count": 1}, "Harry": {"_count": 3}, "said": {"_count": 3}, "scampered": {"_count": 1}, "his": {"_count": 2}, "Madam": {"_count": 1}, "saw": {"_count": 1}, "found": {"_count": 1}, "then": {"_count": 2}, "stoked": {"_count": 1}, "hid": {"_count": 1}, "took": {"_count": 1}, "he": {"_count": 1}, "swept": {"_count": 2}, "stalked": {"_count": 1}, "departed": {"_count": 1}, "flounced": {"_count": 1}, "the": {"_count": 2}, "keep": {"_count": 1}, "I": {"_count": 1}, "seemed": {"_count": 1}, "turned": {"_count": 1}}, "lying": {"_count": 1, "down": {"_count": 1}}, "stupid": {"_count": 2, "": {"_count": 1}, "walking": {"_count": 1}}, "comforting": {"_count": 1, "at": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "who": {"_count": 2, "turned": {"_count": 1}, "it": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 2, "in": {"_count": 1}, "had": {"_count": 1}}, "but": {"_count": 4, "he": {"_count": 1}, "as": {"_count": 1}, "did": {"_count": 1}, "the": {"_count": 1}}, "happy": {"_count": 7, "at": {"_count": 2}, "do": {"_count": 2}, "about": {"_count": 1}, "and": {"_count": 1}, "didnt": {"_count": 1}}, "extremely": {"_count": 1, "easy": {"_count": 1}}, "said": {"_count": 6, "Flint": {"_count": 1}, "Malfoy": {"_count": 1}, "Ron": {"_count": 2}, "Harry": {"_count": 1}, "Fred": {"_count": 1}}, "troubled": {"_count": 1, "young": {"_count": 1}}, "sorry": {"_count": 1, "or": {"_count": 1}}, "around": {"_count": 24, "": {"_count": 7}, "Ron": {"_count": 1}, "it": {"_count": 1}, "corners": {"_count": 1}, "as": {"_count": 2}, "at": {"_count": 4}, "S": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 1}, "them": {"_count": 1}, "and": {"_count": 1}, "Riddle": {"_count": 1}, "when": {"_count": 1}}, "tonight": {"_count": 1, "said": {"_count": 1}}, "from": {"_count": 4, "Nick": {"_count": 1}, "Hermione": {"_count": 1}, "Fudge": {"_count": 1}, "Harry": {"_count": 1}}, "powdered": {"_count": 1, "horn": {"_count": 1}}, "Harry": {"_count": 4, "walked": {"_count": 1}, "": {"_count": 2}, "full": {"_count": 1}}, "all": {"_count": 1, "hot": {"_count": 1}}, "suspicious": {"_count": 4, "if": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "right": {"_count": 3, "to": {"_count": 1}, "down": {"_count": 1}, "like": {"_count": 1}}, "worried": {"_count": 4, "and": {"_count": 1}, "it": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}}, "pleased": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 3, "its": {"_count": 2}, "Neville": {"_count": 1}}, "remotely": {"_count": 5, "handsome": {"_count": 1}, "beautiful": {"_count": 1}, "abashed": {"_count": 2}, "amused": {"_count": 1}}, "dreadful": {"_count": 1, "on": {"_count": 1}}, "something": {"_count": 1, "alike": {"_count": 1}}, "inside": {"_count": 4, "": {"_count": 1}, "your": {"_count": 1}, "this": {"_count": 1}, "him": {"_count": 1}}, "sideways": {"_count": 2, "at": {"_count": 2}}, "because": {"_count": 2, "Aunt": {"_count": 1}, "he": {"_count": 1}}, "about": {"_count": 8, "him": {"_count": 5}, "it": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 1}}, "properly": {"_count": 2, "either": {"_count": 1}, "": {"_count": 1}}, "dead": {"_count": 1, "on": {"_count": 1}}, "coming": {"_count": 1, "over": {"_count": 1}}, "past": {"_count": 1, "Professor": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 1}, "see": {"_count": 1}, "him": {"_count": 1}, "our": {"_count": 1}}, "Snape": {"_count": 3, "wore": {"_count": 1}, "examined": {"_count": 1}, "gave": {"_count": 1}}, "underneath": {"_count": 1, "that": {"_count": 1}}, "Divinations": {"_count": 1, "at": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "comical": {"_count": 1, "": {"_count": 1}}, "We": {"_count": 1, "think": {"_count": 1}}, "well": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 4, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "Fudge": {"_count": 1}, "Mrs": {"_count": 1}}, "what": {"_count": 4, "they": {"_count": 1}, "Ive": {"_count": 1}, "Sirius": {"_count": 1}, "happened": {"_count": 1}}, "left": {"_count": 1, "or": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "innocent": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "mildly": {"_count": 1, "surprised": {"_count": 1}}, "then": {"_count": 4, "turned": {"_count": 1}, "settled": {"_count": 1}, "he": {"_count": 1}, "smiled": {"_count": 1}}, "away": {"_count": 5, "": {"_count": 3}, "from": {"_count": 1}, "until": {"_count": 1}}, "I": {"_count": 3, "just": {"_count": 1}, "cant": {"_count": 1}, "had": {"_count": 1}}, "curious": {"_count": 1, "": {"_count": 1}}, "surprised": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "extraordinarily": {"_count": 1, "like": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "impressive": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 4, "is": {"_count": 1}, "stormy": {"_count": 1}, "way": {"_count": 1}, "might": {"_count": 1}}, "Their": {"_count": 1, "money": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 2}, "for": {"_count": 1}, "through": {"_count": 1}}, "vanished": {"_count": 1, "as": {"_count": 1}}, "here": {"_count": 1, "Hermione": {"_count": 1}}, "didnt": {"_count": 1, "really": {"_count": 1}}, "theyre": {"_count": 2, "all": {"_count": 1}, "coming": {"_count": 1}}, "much": {"_count": 4, "older": {"_count": 1}, "less": {"_count": 1}, "better": {"_count": 1}, "tastier": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "boys": {"_count": 1, "its": {"_count": 1}}, "twice": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 10, "at": {"_count": 4}, "his": {"_count": 3}, "our": {"_count": 1}, "her": {"_count": 1}, "in": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "came": {"_count": 2, "into": {"_count": 1}, "over": {"_count": 1}}, "Ron": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "full": {"_count": 1}}, "quite": {"_count": 2, "pretty": {"_count": 1}, "as": {"_count": 1}}, "really": {"_count": 3, "stupid": {"_count": 1}, "angry": {"_count": 1}, "suspicious": {"_count": 1}}, "nice": {"_count": 2, "he": {"_count": 1}, "on": {"_count": 1}}, "gray": {"_count": 1, "": {"_count": 1}}, "And": {"_count": 3, "to": {"_count": 2}, "she": {"_count": 1}}, "oddly": {"_count": 2, "wide": {"_count": 1}, "sinister": {"_count": 1}}, "feel": {"_count": 1, "that": {"_count": 1}}, "guilty": {"_count": 1, "": {"_count": 1}}, "ill": {"_count": 1, "last": {"_count": 1}}, "gloomy": {"_count": 1, "she": {"_count": 1}}, "angry": {"_count": 2, "yet": {"_count": 1}, "nod": {"_count": 1}}, "upon": {"_count": 4, "Dumbledore": {"_count": 1}, "death": {"_count": 1}, "which": {"_count": 1}, "his": {"_count": 1}}, "round": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "critically": {"_count": 1, "at": {"_count": 1}}, "anything": {"_count": 2, "like": {"_count": 2}}, "showed": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "puzzled": {"_count": 1, "Sirius": {"_count": 1}}, "He": {"_count": 1, "pointed": {"_count": 1}}, "him": {"_count": 3, "in": {"_count": 1}, "up": {"_count": 2}}, "bemused": {"_count": 1, "a": {"_count": 1}}, "absolutely": {"_count": 1, "oh": {"_count": 1}}, "dangerous": {"_count": 1, "but": {"_count": 1}}, "jinxes": {"_count": 1, "up": {"_count": 1}}, "exasperated": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 5, "frowned": {"_count": 1}, "had": {"_count": 1}, "shot": {"_count": 1}, "ran": {"_count": 1}, "turned": {"_count": 1}}, "before": {"_count": 2, "adding": {"_count": 1}, "doing": {"_count": 1}}, "Professor": {"_count": 1, "GrubblyPlank": {"_count": 1}}, "far": {"_count": 1, "for": {"_count": 1}}, "modest": {"_count": 1, "": {"_count": 1}}, "bright": {"_count": 1, "enough": {"_count": 1}}, "frozen": {"_count": 1, "said": {"_count": 1}}, "nasty": {"_count": 1, "": {"_count": 1}}, "Two": {"_count": 1, "more": {"_count": 1}}, "ever": {"_count": 1, "so": {"_count": 1}}, "Broderick": {"_count": 1, "youve": {"_count": 1}}, "Umbridge": {"_count": 1, "directly": {"_count": 1}}, "ashamed": {"_count": 1, "of": {"_count": 1}}, "little": {"_count": 1, "better": {"_count": 1}}, "funny": {"_count": 3, "Harry": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 1}}, "Accio": {"_count": 1, "Brain": {"_count": 1}}, "whats": {"_count": 1, "happen": {"_count": 1}}, "better": {"_count": 2, "said": {"_count": 1}, "than": {"_count": 1}}, "small": {"_count": 1, "and": {"_count": 1}}, "underfed": {"_count": 1, "said": {"_count": 1}}, "entirely": {"_count": 1, "convinced": {"_count": 1}}, "carrying": {"_count": 2, "that": {"_count": 2}}, "Ogden": {"_count": 1, "began": {"_count": 1}}, "your": {"_count": 1, "dads": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "moody": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "all": {"_count": 1}}, "ideal": {"_count": 1, "said": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "dream": {"_count": 1}}, "questioningly": {"_count": 1, "at": {"_count": 1}}, "almost": {"_count": 1, "equally": {"_count": 1}}, "displeased": {"_count": 1, "as": {"_count": 1}}, "mighty": {"_count": 1, "like": {"_count": 1}}, "inter": {"_count": 1, "that": {"_count": 1}}, "hes": {"_count": 1, "lost": {"_count": 1}}, "pale": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "thinner": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "same": {"_count": 1}}, "lovely": {"_count": 1, "with": {"_count": 1}}, "particularly": {"_count": 1, "reassured": {"_count": 1}}, "awful": {"_count": 1, "": {"_count": 1}}, "directly": {"_count": 2, "into": {"_count": 1}, "at": {"_count": 1}}, "batting": {"_count": 1, "her": {"_count": 1}}, "or": {"_count": 1, "gesture": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "smart": {"_count": 1, "": {"_count": 1}}, "great": {"_count": 1, "": {"_count": 1}}, "vunderful": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "like": {"_count": 1}}, "apparently": {"_count": 1, "he": {"_count": 1}}, "familiar": {"_count": 1, "": {"_count": 1}}, "somebodys": {"_count": 1, "drawn": {"_count": 1}}, "cold": {"_count": 1, "and": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "half": {"_count": 1, "truculent": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "crept": {"_count": 1, "over": {"_count": 1}}, "tame": {"_count": 1, "": {"_count": 1}}, "whispered": {"_count": 1, "Luna": {"_count": 1}}, "when": {"_count": 1, "nobody": {"_count": 1}}, "now": {"_count": 1, "Thoughts": {"_count": 1}}}, "again": {"_count": 1904, "": {"_count": 820, ".": {"_count": 746}, "?": {"_count": 41}, "!": {"_count": 33}}, "the": {"_count": 37, "next": {"_count": 3}, "summer": {"_count": 1}, "blinding": {"_count": 1}, "little": {"_count": 1}, "crowd": {"_count": 1}, "Bludger": {"_count": 1}, "class": {"_count": 1}, "only": {"_count": 2}, "cruel": {"_count": 1}, "Chasers": {"_count": 1}, "letter": {"_count": 1}, "strange": {"_count": 1}, "pain": {"_count": 2}, "idea": {"_count": 1}, "lift": {"_count": 1}, "memos": {"_count": 1}, "witch": {"_count": 1}, "first": {"_count": 1}, "words": {"_count": 2}, "last": {"_count": 1}, "blood": {"_count": 1}, "wall": {"_count": 1}, "fiery": {"_count": 1}, "fact": {"_count": 1}, "Potions": {"_count": 1}, "most": {"_count": 1}, "boat": {"_count": 1}, "scars": {"_count": 1}, "blue": {"_count": 1}, "stone": {"_count": 1}, "outline": {"_count": 1}, "sense": {"_count": 1}}, "Dudley": {"_count": 1, "ordered": {"_count": 1}}, "and": {"_count": 227, "Harry": {"_count": 8}, "again": {"_count": 12}, "he": {"_count": 12}, "Ive": {"_count": 1}, "Susan": {"_count": 1}, "when": {"_count": 2}, "started": {"_count": 1}, "one": {"_count": 1}, "for": {"_count": 2}, "this": {"_count": 4}, "Quirrell": {"_count": 1}, "pointed": {"_count": 1}, "placed": {"_count": 3}, "strode": {"_count": 2}, "knew": {"_count": 1}, "threw": {"_count": 1}, "said": {"_count": 8}, "its": {"_count": 3}, "pushed": {"_count": 2}, "scrambled": {"_count": 1}, "sat": {"_count": 1}, "their": {"_count": 1}, "then": {"_count": 7}, "the": {"_count": 13}, "stared": {"_count": 2}, "used": {"_count": 1}, "continued": {"_count": 2}, "more": {"_count": 1}, "say": {"_count": 1}, "saw": {"_count": 3}, "rolled": {"_count": 1}, "that": {"_count": 1}, "took": {"_count": 1}, "Cho": {"_count": 1}, "held": {"_count": 1}, "after": {"_count": 1}, "let": {"_count": 1}, "in": {"_count": 1}, "Snape": {"_count": 1}, "edged": {"_count": 1}, "she": {"_count": 2}, "judging": {"_count": 1}, "Frank": {"_count": 1}, "his": {"_count": 4}, "hid": {"_count": 1}, "about": {"_count": 1}, "formed": {"_count": 1}, "were": {"_count": 1}, "turned": {"_count": 1}, "so": {"_count": 1}, "most": {"_count": 1}, "a": {"_count": 3}, "opening": {"_count": 1}, "shaking": {"_count": 1}, "bawled": {"_count": 1}, "hurried": {"_count": 2}, "closed": {"_count": 1}, "had": {"_count": 1}, "seemed": {"_count": 1}, "will": {"_count": 1}, "found": {"_count": 2}, "ricocheted": {"_count": 1}, "Wormtail": {"_count": 1}, "whirled": {"_count": 1}, "my": {"_count": 1}, "off": {"_count": 1}, "shook": {"_count": 2}, "Moody": {"_count": 1}, "they": {"_count": 1}, "once": {"_count": 1}, "continuing": {"_count": 1}, "disappeared": {"_count": 1}, "shouted": {"_count": 2}, "all": {"_count": 1}, "on": {"_count": 1}, "nodded": {"_count": 2}, "although": {"_count": 1}, "sped": {"_count": 1}, "it": {"_count": 3}, "looking": {"_count": 1}, "checked": {"_count": 1}, "hes": {"_count": 2}, "slapped": {"_count": 1}, "applied": {"_count": 1}, "Ron": {"_count": 1}, "tapped": {"_count": 1}, "unbidden": {"_count": 1}, "clenched": {"_count": 1}, "especially": {"_count": 1}, "returned": {"_count": 1}, "moved": {"_count": 1}, "even": {"_count": 2}, "pretended": {"_count": 1}, "was": {"_count": 5}, "gave": {"_count": 1}, "still": {"_count": 1}, "hear": {"_count": 1}, "there": {"_count": 2}, "by": {"_count": 1}, "under": {"_count": 2}, "shattered": {"_count": 1}, "leaving": {"_count": 1}, "wrenched": {"_count": 1}, "with": {"_count": 1}, "Mrs": {"_count": 1}, "hoped": {"_count": 1}, "never": {"_count": 1}, "though": {"_count": 1}, "Hermione": {"_count": 4}, "well": {"_count": 1}, "Mr": {"_count": 1}, "moments": {"_count": 1}, "resumed": {"_count": 1}, "pressed": {"_count": 1}, "felt": {"_count": 1}, "Professor": {"_count": 1}, "meanwhile": {"_count": 1}, "Hagrid": {"_count": 1}, "keep": {"_count": 1}, "asked": {"_count": 1}, "drank": {"_count": 1}, "answered": {"_count": 1}, "spun": {"_count": 1}, "silence": {"_count": 1}, "we": {"_count": 2}, "did": {"_count": 1}, "of": {"_count": 1}, "only": {"_count": 1}, "walked": {"_count": 1}, "shredded": {"_count": 1}, "nobody": {"_count": 1}, "here": {"_count": 1}, "considered": {"_count": 1}}, "he": {"_count": 49, "flattened": {"_count": 1}, "dreamed": {"_count": 1}, "said": {"_count": 5}, "turned": {"_count": 1}, "found": {"_count": 1}, "leaned": {"_count": 1}, "looked": {"_count": 3}, "was": {"_count": 6}, "wrote": {"_count": 2}, "glanced": {"_count": 1}, "seemed": {"_count": 1}, "spun": {"_count": 1}, "would": {"_count": 2}, "knew": {"_count": 1}, "sounded": {"_count": 1}, "tried": {"_count": 2}, "pulled": {"_count": 1}, "suddenly": {"_count": 1}, "brandished": {"_count": 1}, "had": {"_count": 2}, "grasped": {"_count": 1}, "fell": {"_count": 1}, "groaned": {"_count": 1}, "reveals": {"_count": 1}, "staggered": {"_count": 1}, "groped": {"_count": 1}, "kills": {"_count": 1}, "asked": {"_count": 1}, "punished": {"_count": 1}, "ignored": {"_count": 1}, "did": {"_count": 2}, "shut": {"_count": 1}, "led": {"_count": 1}}, "tapped": {"_count": 1, "it": {"_count": 1}}, "Doris": {"_count": 1, "Crockford": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "to": {"_count": 25, "make": {"_count": 2}, "wait": {"_count": 1}, "explain": {"_count": 1}, "Pettigrew": {"_count": 1}, "feel": {"_count": 1}, "see": {"_count": 1}, "look": {"_count": 3}, "his": {"_count": 2}, "play": {"_count": 1}, "playing": {"_count": 1}, "find": {"_count": 1}, "stop": {"_count": 1}, "teach": {"_count": 1}, "relive": {"_count": 1}, "check": {"_count": 1}, "kneel": {"_count": 1}, "account": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 1}, "stare": {"_count": 1}, "Voldemorts": {"_count": 1}}, "but": {"_count": 50, "it": {"_count": 2}, "only": {"_count": 1}, "Harry": {"_count": 3}, "as": {"_count": 2}, "there": {"_count": 2}, "after": {"_count": 1}, "he": {"_count": 6}, "people": {"_count": 1}, "was": {"_count": 3}, "almost": {"_count": 1}, "nobody": {"_count": 1}, "the": {"_count": 3}, "fell": {"_count": 1}, "this": {"_count": 3}, "she": {"_count": 1}, "houseelves": {"_count": 1}, "just": {"_count": 1}, "Mrs": {"_count": 1}, "now": {"_count": 2}, "thestrals": {"_count": 1}, "I": {"_count": 2}, "at": {"_count": 1}, "smoke": {"_count": 1}, "well": {"_count": 1}, "much": {"_count": 1}, "none": {"_count": 1}, "before": {"_count": 1}, "why": {"_count": 1}, "then": {"_count": 1}, "even": {"_count": 1}, "could": {"_count": 1}, "you": {"_count": 1}}, "Ron": {"_count": 6, "said": {"_count": 1}, "turned": {"_count": 1}, "and": {"_count": 1}, "massaging": {"_count": 1}, "held": {"_count": 1}, "struggled": {"_count": 1}}, "as": {"_count": 30, "Professor": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 4}, "she": {"_count": 4}, "Johnson": {"_count": 1}, "though": {"_count": 2}, "fast": {"_count": 1}, "well": {"_count": 1}, "soon": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 5}, "he": {"_count": 4}, "his": {"_count": 1}, "Ive": {"_count": 1}, "something": {"_count": 1}, "Snape": {"_count": 1}}, "staring": {"_count": 5, "": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 2}}, "different": {"_count": 1, "": {"_count": 1}}, "turning": {"_count": 1, "its": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 32, "": {"_count": 3}, "said": {"_count": 3}, "and": {"_count": 1}, "heard": {"_count": 1}, "told": {"_count": 1}, "stuffed": {"_count": 1}, "borrowed": {"_count": 1}, "Im": {"_count": 1}, "darted": {"_count": 1}, "seized": {"_count": 1}, "still": {"_count": 1}, "plummeted": {"_count": 1}, "had": {"_count": 1}, "I": {"_count": 1}, "snarled": {"_count": 1}, "supplied": {"_count": 1}, "found": {"_count": 1}, "felt": {"_count": 1}, "wrote": {"_count": 1}, "please": {"_count": 1}, "looked": {"_count": 1}, "asked": {"_count": 1}, "hold": {"_count": 1}, "saw": {"_count": 1}, "shivered": {"_count": 1}, "refused": {"_count": 1}, "joining": {"_count": 1}, "understood": {"_count": 1}}, "please": {"_count": 2, "It": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 29, "Rons": {"_count": 1}, "a": {"_count": 8}, "the": {"_count": 11}, "possession": {"_count": 1}, "slow": {"_count": 1}, "tears": {"_count": 1}, "Defense": {"_count": 1}, "his": {"_count": 4}, "losing": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "boy": {"_count": 1, "its": {"_count": 1}}, "Ronan": {"_count": 1, "took": {"_count": 1}}, "Ill": {"_count": 3, "take": {"_count": 1}, "know": {"_count": 1}, "jinx": {"_count": 1}}, "looking": {"_count": 9, "very": {"_count": 1}, "anywhere": {"_count": 1}, "down": {"_count": 1}, "preoccupied": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "furious": {"_count": 1}, "more": {"_count": 1}, "disappointed": {"_count": 1}}, "why": {"_count": 3, "he": {"_count": 1}, "cant": {"_count": 1}, "did": {"_count": 1}}, "until": {"_count": 9, "hed": {"_count": 1}, "they": {"_count": 4}, "he": {"_count": 2}, "you": {"_count": 1}, "a": {"_count": 1}}, "into": {"_count": 8, "wails": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 3}, "lines": {"_count": 1}, "Voldemorts": {"_count": 1}}, "Oh": {"_count": 1, "Mum": {"_count": 1}}, "almost": {"_count": 1, "immediately": {"_count": 1}}, "so": {"_count": 12, "Ron": {"_count": 1}, "that": {"_count": 6}, "quickly": {"_count": 1}, "stifling": {"_count": 1}, "they": {"_count": 1}, "deep": {"_count": 1}, "as": {"_count": 1}}, "wishing": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 20, "Mr": {"_count": 1}, "Professor": {"_count": 2}, "Dumbledore": {"_count": 3}, "Moody": {"_count": 1}, "Voldemort": {"_count": 1}, "Sirius": {"_count": 1}, "Harry": {"_count": 4}, "Angelina": {"_count": 1}, "Ron": {"_count": 2}, "Fred": {"_count": 1}, "Hermione": {"_count": 2}, "Fudge": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 6, "they": {"_count": 1}, "this": {"_count": 1}, "two": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "Mollys": {"_count": 1}}, "quickly": {"_count": 1, "They": {"_count": 1}}, "I": {"_count": 13, "will": {"_count": 1}, "must": {"_count": 1}, "notice": {"_count": 1}, "dont": {"_count": 1}, "ope": {"_count": 1}, "mean": {"_count": 1}, "shall": {"_count": 2}, "think": {"_count": 1}, "thought": {"_count": 1}, "want": {"_count": 1}, "knew": {"_count": 1}, "am": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "pursing": {"_count": 1, "his": {"_count": 1}}, "fangs": {"_count": 1, "exposed": {"_count": 1}}, "on": {"_count": 15, "the": {"_count": 6}, "Sunday": {"_count": 1}, "his": {"_count": 2}, "Monday": {"_count": 1}, "your": {"_count": 1}, "whose": {"_count": 1}, "becoming": {"_count": 1}, "a": {"_count": 1}, "Snapes": {"_count": 1}}, "large": {"_count": 1, "purple": {"_count": 1}}, "now": {"_count": 6, "": {"_count": 1}, "reddening": {"_count": 1}, "that": {"_count": 1}, "isnt": {"_count": 1}, "though": {"_count": 1}, "so": {"_count": 1}}, "Kill": {"_count": 1, "this": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "Cornelius": {"_count": 1, "I": {"_count": 1}}, "His": {"_count": 1, "words": {"_count": 1}}, "see": {"_count": 2, "patches": {"_count": 1}, "the": {"_count": 1}}, "while": {"_count": 2, "I": {"_count": 1}, "Greyback": {"_count": 1}}, "Havent": {"_count": 1, "I": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "Vernon": {"_count": 2, "": {"_count": 1}, "waved": {"_count": 1}}, "you": {"_count": 7, "did": {"_count": 1}, "will": {"_count": 1}, "know": {"_count": 1}, "met": {"_count": 1}, "acquitted": {"_count": 1}, "show": {"_count": 1}, "took": {"_count": 1}}, "do": {"_count": 2, "we": {"_count": 1}, "you": {"_count": 1}}, "never": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 14, "a": {"_count": 6}, "his": {"_count": 1}, "only": {"_count": 1}, "no": {"_count": 1}, "what": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "superb": {"_count": 1}}, "they": {"_count": 9, "saw": {"_count": 1}, "were": {"_count": 2}, "healed": {"_count": 1}, "stepped": {"_count": 1}, "watched": {"_count": 1}, "drew": {"_count": 1}, "scored": {"_count": 1}, "made": {"_count": 1}}, "that": {"_count": 12, "looks": {"_count": 1}, "youre": {"_count": 1}, "he": {"_count": 2}, "night": {"_count": 1}, "image": {"_count": 1}, "Sirius": {"_count": 1}, "terrible": {"_count": 1}, "this": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}, "rush": {"_count": 1}}, "though": {"_count": 3, "not": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}}, "tomorrow": {"_count": 3, "": {"_count": 1}, "evening": {"_count": 1}, "said": {"_count": 1}}, "it": {"_count": 10, "will": {"_count": 2}, "zoomed": {"_count": 1}, "flew": {"_count": 1}, "was": {"_count": 3}, "began": {"_count": 1}, "rose": {"_count": 1}, "had": {"_count": 1}}, "during": {"_count": 2, "the": {"_count": 1}, "breakfast": {"_count": 1}}, "by": {"_count": 6, "doing": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "Tonks": {"_count": 1}, "thestral": {"_count": 1}}, "Im": {"_count": 2, "skiving": {"_count": 1}, "in": {"_count": 1}}, "hoisted": {"_count": 1, "himself": {"_count": 1}}, "there": {"_count": 3, "was": {"_count": 2}, "were": {"_count": 1}}, "evrythin": {"_count": 1, "came": {"_count": 1}}, "she": {"_count": 5, "looked": {"_count": 2}, "confessed": {"_count": 1}, "said": {"_count": 2}}, "through": {"_count": 2, "thick": {"_count": 1}, "the": {"_count": 1}}, "except": {"_count": 1, "this": {"_count": 1}}, "this": {"_count": 5, "time": {"_count": 4}, "is": {"_count": 1}}, "gave": {"_count": 1, "it": {"_count": 1}}, "Wood": {"_count": 1, "didnt": {"_count": 1}}, "Oliver": {"_count": 1, "": {"_count": 1}}, "thanked": {"_count": 1, "Harry": {"_count": 1}}, "escaped": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 7, "set": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 2}, "Potter": {"_count": 1}, "Rons": {"_count": 1}, "back": {"_count": 1}}, "sounding": {"_count": 1, "both": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "WHOOSH": {"_count": 1, "": {"_count": 1}}, "screaming": {"_count": 1, "": {"_count": 1}}, "wanting": {"_count": 1, "more": {"_count": 1}}, "indeed": {"_count": 2, "But": {"_count": 1}, "they": {"_count": 1}}, "before": {"_count": 5, "they": {"_count": 1}, "chasing": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "mentally": {"_count": 1}}, "holding": {"_count": 2, "Scabbers": {"_count": 1}, "a": {"_count": 1}}, "WAIT": {"_count": 1, "": {"_count": 1}}, "pointing": {"_count": 4, "it": {"_count": 2}, "his": {"_count": 2}}, "Hermione": {"_count": 4, "": {"_count": 1}, "merely": {"_count": 1}, "who": {"_count": 1}, "looked": {"_count": 1}}, "Severus": {"_count": 1, "Black": {"_count": 1}}, "more": {"_count": 7, "shrilly": {"_count": 1}, "powerful": {"_count": 1}, "painfully": {"_count": 1}, "light": {"_count": 1}, "insistently": {"_count": 1}, "worried": {"_count": 1}, "vigorously": {"_count": 1}}, "left": {"_count": 1, "arm": {"_count": 1}}, "He": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "thats": {"_count": 3, "how": {"_count": 1}, "all": {"_count": 2}}, "fast": {"_count": 1, "as": {"_count": 1}}, "high": {"_count": 1, "as": {"_count": 1}}, "an": {"_count": 1, "everythin": {"_count": 1}}, "sometime": {"_count": 2, "": {"_count": 2}}, "last": {"_count": 2, "night": {"_count": 2}}, "soon": {"_count": 3, "": {"_count": 2}, "enough": {"_count": 1}}, "wouldnt": {"_count": 1, "he": {"_count": 1}}, "eh": {"_count": 1, "Perce": {"_count": 1}}, "watching": {"_count": 2, "it": {"_count": 1}, "what": {"_count": 1}}, "pressed": {"_count": 1, "the": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "saw": {"_count": 1, "that": {"_count": 1}}, "Moran": {"_count": 1, "MORAN": {"_count": 1}}, "Theyre": {"_count": 1, "going": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "cowering": {"_count": 1, "at": {"_count": 1}}, "raised": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "youre": {"_count": 2, "ruining": {"_count": 1}, "lucky": {"_count": 1}}, "pointed": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "for": {"_count": 6, "three": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 1}}, "from": {"_count": 7, "a": {"_count": 1}, "down": {"_count": 1}, "now": {"_count": 1}, "scratch": {"_count": 1}, "the": {"_count": 2}, "overhead": {"_count": 1}}, "go": {"_count": 1, "straight": {"_count": 1}}, "Potter": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "clearly": {"_count": 1, "desperate": {"_count": 1}}, "disgusting": {"_count": 1, "boy": {"_count": 1}}, "perching": {"_count": 1, "herself": {"_count": 1}}, "spread": {"_count": 1, "it": {"_count": 1}}, "only": {"_count": 1, "if": {"_count": 1}}, "very": {"_count": 2, "suspiciously": {"_count": 1}, "loudly": {"_count": 1}}, "threaten": {"_count": 1, "me": {"_count": 1}}, "pulled": {"_count": 1, "him": {"_count": 1}}, "inside": {"_count": 2, "his": {"_count": 1}, "that": {"_count": 1}}, "bowing": {"_count": 1, "deeply": {"_count": 1}}, "revealing": {"_count": 1, "his": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "worried": {"_count": 1, "that": {"_count": 1}}, "sulking": {"_count": 1, "Myrtle": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "was": {"_count": 3, "if": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "next": {"_count": 1, "book": {"_count": 1}}, "nothing": {"_count": 1, "came": {"_count": 1}}, "doesnt": {"_count": 1, "that": {"_count": 1}}, "unless": {"_count": 1, "its": {"_count": 1}}, "wearing": {"_count": 1, "different": {"_count": 1}}, "Crouch": {"_count": 1, "": {"_count": 1}}, "Bertha": {"_count": 1, "sank": {"_count": 1}}, "Dumbledore": {"_count": 6, "extracting": {"_count": 1}, "got": {"_count": 1}, "obeyed": {"_count": 1}, "drained": {"_count": 1}, "wanted": {"_count": 1}, "who": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "found": {"_count": 1, "his": {"_count": 1}}, "backtracked": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 1}, "told": {"_count": 1}, "seemed": {"_count": 1}}, "hissing": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 5, "cruel": {"_count": 1}, "few": {"_count": 2}, "little": {"_count": 1}, "complete": {"_count": 1}}, "Wormtail": {"_count": 1, "said": {"_count": 1}}, "alive": {"_count": 1, "as": {"_count": 1}}, "resumed": {"_count": 1, "their": {"_count": 1}}, "hidden": {"_count": 1, "under": {"_count": 1}}, "And": {"_count": 1, "their": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "whatever": {"_count": 2, "you": {"_count": 2}}, "apparently": {"_count": 1, "dazed": {"_count": 1}}, "furious": {"_count": 2, "at": {"_count": 1}, "ready": {"_count": 1}}, "flying": {"_count": 1, "away": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "twittered": {"_count": 1}}, "pacing": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 12, "the": {"_count": 9}, "once": {"_count": 1}, "mortal": {"_count": 1}, "that": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "did": {"_count": 2, "they": {"_count": 1}, "Percy": {"_count": 1}}, "shuffling": {"_count": 1, "his": {"_count": 1}}, "smirking": {"_count": 1, "unpleasantly": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "mopping": {"_count": 1, "her": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "pink": {"_count": 1}}, "leaving": {"_count": 4, "Harry": {"_count": 1}, "the": {"_count": 1}, "nothing": {"_count": 1}, "her": {"_count": 1}}, "had": {"_count": 4, "been": {"_count": 1}, "good": {"_count": 1}, "to": {"_count": 1}, "lifted": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "progress": {"_count": 1, "for": {"_count": 1}}, "still": {"_count": 2, "avoiding": {"_count": 1}, "the": {"_count": 1}}, "conspicuous": {"_count": 1, "only": {"_count": 1}}, "reminded": {"_count": 1, "forcibly": {"_count": 1}}, "hell": {"_count": 1, "probably": {"_count": 1}}, "past": {"_count": 1, "midnight": {"_count": 1}}, "chasing": {"_count": 1, "the": {"_count": 1}}, "All": {"_count": 1, "right": {"_count": 1}}, "Whats": {"_count": 1, "this": {"_count": 1}}, "Listen": {"_count": 1, "to": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "or": {"_count": 1, "she": {"_count": 1}}, "shall": {"_count": 2, "we": {"_count": 2}}, "stopping": {"_count": 1, "here": {"_count": 1}}, "his": {"_count": 12, "jaw": {"_count": 1}, "face": {"_count": 1}, "heart": {"_count": 1}, "reflexes": {"_count": 1}, "knees": {"_count": 1}, "hands": {"_count": 1}, "eyes": {"_count": 1}, "frock": {"_count": 1}, "back": {"_count": 1}, "voice": {"_count": 1}, "wand": {"_count": 1}, "gray": {"_count": 1}}, "bellowed": {"_count": 1, "Lee": {"_count": 1}}, "glancing": {"_count": 1, "toward": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 4, "clipboard": {"_count": 1}, "eyebrows": {"_count": 1}, "eyes": {"_count": 1}, "counterspell": {"_count": 1}}, "speaking": {"_count": 2, "once": {"_count": 1}, "as": {"_count": 1}}, "shes": {"_count": 1, "trying": {"_count": 1}}, "Phineas": {"_count": 2, "said": {"_count": 1}, "Nigellus": {"_count": 1}}, "would": {"_count": 2, "attract": {"_count": 1}, "Dumbledore": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "swaying": {"_count": 1, "ominously": {"_count": 1}}, "gathering": {"_count": 1, "speed": {"_count": 1}}, "forcing": {"_count": 1, "his": {"_count": 1}}, "just": {"_count": 3, "as": {"_count": 3}}, "about": {"_count": 1, "Cedric": {"_count": 1}}, "bent": {"_count": 1, "over": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 2}}, "kneeling": {"_count": 1, "on": {"_count": 1}}, "stored": {"_count": 1, "some": {"_count": 1}}, "The": {"_count": 4, "door": {"_count": 1}, "dense": {"_count": 1}, "doors": {"_count": 1}, "sound": {"_count": 1}}, "hanging": {"_count": 1, "upside": {"_count": 1}}, "beside": {"_count": 2, "the": {"_count": 1}, "Dumbledores": {"_count": 1}}, "trembling": {"_count": 1, "violently": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "gazing": {"_count": 1, "up": {"_count": 1}}, "engaged": {"_count": 1, "in": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "walking": {"_count": 1, "with": {"_count": 1}}, "somebody": {"_count": 2, "yelled": {"_count": 1}, "had": {"_count": 1}}, "pushing": {"_count": 1, "students": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "rubbing": {"_count": 2, "his": {"_count": 2}}, "within": {"_count": 1, "six": {"_count": 1}}, "inscribing": {"_count": 1, "a": {"_count": 1}}, "thick": {"_count": 1, "black": {"_count": 1}}, "flown": {"_count": 1, "to": {"_count": 1}}, "Dolohovs": {"_count": 1, "arms": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "breathless": {"_count": 1, "no": {"_count": 1}}, "upon": {"_count": 2, "the": {"_count": 1}, "Bogrod": {"_count": 1}}, "however": {"_count": 2, "why": {"_count": 1}, "he": {"_count": 1}}, "marking": {"_count": 1, "you": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "people": {"_count": 1, "called": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "is": {"_count": 3, "it": {"_count": 2}, "the": {"_count": 1}}, "Ginny": {"_count": 1, "was": {"_count": 1}}, "announced": {"_count": 1, "the": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "meant": {"_count": 1, "nothing": {"_count": 1}}, "rose": {"_count": 1, "up": {"_count": 1}}, "keeping": {"_count": 1, "her": {"_count": 1}}, "sipped": {"_count": 1, "it": {"_count": 1}}, "absent": {"_count": 1, "while": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "one": {"_count": 1, "member": {"_count": 1}}, "Borgin": {"_count": 1, "slammed": {"_count": 1}}, "displaying": {"_count": 1, "her": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "drew": {"_count": 1, "her": {"_count": 1}}, "casting": {"_count": 1, "silvery": {"_count": 1}}, "shouldve": {"_count": 1, "used": {"_count": 1}}, "alarmed": {"_count": 1, "but": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "Christmas": {"_count": 1}}, "Well": {"_count": 1, "thats": {"_count": 1}}, "lots": {"_count": 1, "of": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "isn": {"_count": 1, "it": {"_count": 1}}, "scanning": {"_count": 1, "the": {"_count": 1}}, "making": {"_count": 1, "things": {"_count": 1}}, "all": {"_count": 2, "kinds": {"_count": 1}, "heads": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "what": {"_count": 2, "he": {"_count": 1}, "seemed": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "closed": {"_count": 1}}, "leave": {"_count": 1, "it": {"_count": 1}}, "determined": {"_count": 2, "whatever": {"_count": 1}, "to": {"_count": 1}}, "ignoring": {"_count": 1, "the": {"_count": 1}}, "amidst": {"_count": 1, "all": {"_count": 1}}, "no": {"_count": 1, "matter": {"_count": 1}}, "be": {"_count": 2, "additional": {"_count": 1}, "known": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "twirled": {"_count": 1, "it": {"_count": 1}}, "hammering": {"_count": 1, "his": {"_count": 1}}, "instead": {"_count": 1, "he": {"_count": 1}}, "backing": {"_count": 1, "away": {"_count": 1}}, "pale": {"_count": 1, "as": {"_count": 1}}, "crouching": {"_count": 1, "close": {"_count": 1}}, "could": {"_count": 1, "he": {"_count": 1}}, "terrified": {"_count": 1, "to": {"_count": 1}}, "correct": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "jets": {"_count": 1}}, "Crouching": {"_count": 1, "as": {"_count": 1}}, "Hagrid": {"_count": 2, "swerved": {"_count": 1}, "let": {"_count": 1}}, "lets": {"_count": 1, "get": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "everyones": {"_count": 1, "going": {"_count": 1}}, "Shes": {"_count": 1, "not": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "Barry": {"_count": 1, "or": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}, "silencing": {"_count": 1, "her": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "Choose": {"_count": 1, "what": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 1, "said": {"_count": 1}}, "admitting": {"_count": 1, "a": {"_count": 1}}, "passing": {"_count": 1, "nobody": {"_count": 1}}, "another": {"_count": 1, "day": {"_count": 1}}, "simply": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "not": {"_count": 1, "until": {"_count": 1}}, "came": {"_count": 1, "out": {"_count": 1}}, "although": {"_count": 1, "he": {"_count": 1}}, "HERMIONE": {"_count": 1, "": {"_count": 1}}, "dragging": {"_count": 1, "Griphook": {"_count": 1}}, "following": {"_count": 1, "the": {"_count": 1}}, "powerful": {"_count": 1, "as": {"_count": 1}}, "how": {"_count": 1, "the": {"_count": 1}}, "shaking": {"_count": 1, "the": {"_count": 1}}, "blasting": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "For": {"_count": 1, "a": {"_count": 1}}, "whether": {"_count": 1, "to": {"_count": 1}}, "Where": {"_count": 1, "do": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "Crookshanks": {"_count": 1, "": {"_count": 1}}, "In": {"_count": 1, "looks": {"_count": 1}}, "This": {"_count": 1, "was": {"_count": 1}}, "obscuring": {"_count": 1, "his": {"_count": 1}}}, "There": {"_count": 1065, "was": {"_count": 602, "a": {"_count": 347}, "no": {"_count": 72}, "silence": {"_count": 20}, "somethin": {"_count": 1}, "suddenly": {"_count": 2}, "nothing": {"_count": 12}, "so": {"_count": 2}, "only": {"_count": 8}, "of": {"_count": 1}, "an": {"_count": 20}, "simply": {"_count": 1}, "already": {"_count": 2}, "some": {"_count": 4}, "also": {"_count": 9}, "unease": {"_count": 1}, "almost": {"_count": 1}, "something": {"_count": 14}, "barely": {"_count": 1}, "gray": {"_count": 1}, "nobody": {"_count": 5}, "work": {"_count": 1}, "another": {"_count": 20}, "just": {"_count": 2}, "the": {"_count": 6}, "his": {"_count": 2}, "utter": {"_count": 1}, "Percy": {"_count": 1}, "sweat": {"_count": 1}, "plenty": {"_count": 1}, "someone": {"_count": 1}, "definitely": {"_count": 2}, "trouble": {"_count": 1}, "much": {"_count": 2}, "Antonin": {"_count": 1}, "Travers": {"_count": 1}, "total": {"_count": 2}, "cold": {"_count": 1}, "complete": {"_count": 2}, "more": {"_count": 3}, "laughter": {"_count": 1}, "instant": {"_count": 1}, "still": {"_count": 3}, "too": {"_count": 1}, "generally": {"_count": 1}, "snow": {"_count": 2}, "fear": {"_count": 1}, "movement": {"_count": 2}, "MadEye": {"_count": 1}, "such": {"_count": 1}, "Golpalotts": {"_count": 1}, "one": {"_count": 1}, "little": {"_count": 2}, "Fawkes": {"_count": 1}, "Dumbledores": {"_count": 1}, "next": {"_count": 1}, "glasses": {"_count": 1}, "resentment": {"_count": 1}, "hardly": {"_count": 1}, "problem": {"_count": 1}, "Lucius": {"_count": 1}, "undisguised": {"_count": 1}}, "had": {"_count": 15, "been": {"_count": 12}, "to": {"_count": 2}, "not": {"_count": 1}}, "were": {"_count": 139, "no": {"_count": 14}, "only": {"_count": 5}, "shops": {"_count": 1}, "too": {"_count": 1}, "four": {"_count": 1}, "a": {"_count": 7}, "deep": {"_count": 2}, "empty": {"_count": 1}, "still": {"_count": 3}, "splashes": {"_count": 1}, "screams": {"_count": 4}, "bright": {"_count": 1}, "footsteps": {"_count": 4}, "boos": {"_count": 1}, "all": {"_count": 1}, "however": {"_count": 1}, "rumors": {"_count": 2}, "seven": {"_count": 1}, "shelves": {"_count": 1}, "jokes": {"_count": 1}, "witnesses": {"_count": 1}, "suddenly": {"_count": 1}, "crocheted": {"_count": 1}, "luminous": {"_count": 1}, "many": {"_count": 4}, "several": {"_count": 6}, "about": {"_count": 3}, "dark": {"_count": 1}, "hundreds": {"_count": 1}, "fingernail": {"_count": 1}, "mountains": {"_count": 1}, "now": {"_count": 1}, "soup": {"_count": 1}, "people": {"_count": 3}, "rocks": {"_count": 1}, "delays": {"_count": 1}, "two": {"_count": 6}, "titters": {"_count": 1}, "more": {"_count": 4}, "plenty": {"_count": 1}, "hurried": {"_count": 2}, "times": {"_count": 1}, "brief": {"_count": 1}, "periods": {"_count": 1}, "angry": {"_count": 1}, "tears": {"_count": 1}, "hands": {"_count": 1}, "creatures": {"_count": 1}, "purple": {"_count": 2}, "relatives": {"_count": 1}, "oohs": {"_count": 1}, "dancing": {"_count": 1}, "lights": {"_count": 1}, "faint": {"_count": 1}, "yells": {"_count": 1}, "streaks": {"_count": 1}, "bins": {"_count": 1}, "cabinets": {"_count": 1}, "other": {"_count": 3}, "bloodstains": {"_count": 1}, "alleyways": {"_count": 1}, "thousands": {"_count": 1}, "winged": {"_count": 1}, "Slytherin": {"_count": 1}, "grazes": {"_count": 1}, "powerful": {"_count": 1}, "also": {"_count": 1}, "small": {"_count": 1}, "moments": {"_count": 2}, "loads": {"_count": 1}, "piles": {"_count": 1}, "scurryings": {"_count": 1}, "noises": {"_count": 1}, "smooth": {"_count": 1}, "bulging": {"_count": 1}, "tables": {"_count": 1}, "tiny": {"_count": 1}, "gasps": {"_count": 1}, "heavy": {"_count": 1}, "animals": {"_count": 1}, "movements": {"_count": 1}}, "is": {"_count": 48, "no": {"_count": 14}, "a": {"_count": 13}, "an": {"_count": 1}, "not": {"_count": 2}, "something": {"_count": 2}, "bad": {"_count": 1}, "somebody": {"_count": 2}, "work": {"_count": 1}, "much": {"_count": 1}, "nothing": {"_count": 5}, "also": {"_count": 1}, "actually": {"_count": 1}, "little": {"_count": 1}, "said": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 1}}, "werent": {"_count": 3, "many": {"_count": 1}, "any": {"_count": 1}, "said": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 56, "seven": {"_count": 3}, "some": {"_count": 2}, "a": {"_count": 5}, "more": {"_count": 2}, "all": {"_count": 2}, "rumors": {"_count": 1}, "two": {"_count": 1}, "good": {"_count": 1}, "rooster": {"_count": 1}, "strange": {"_count": 1}, "plenty": {"_count": 3}, "certain": {"_count": 1}, "parts": {"_count": 1}, "still": {"_count": 2}, "places": {"_count": 1}, "houseelves": {"_count": 1}, "those": {"_count": 1}, "things": {"_count": 1}, "different": {"_count": 1}, "other": {"_count": 3}, "dangers": {"_count": 1}, "no": {"_count": 4}, "three": {"_count": 1}, "many": {"_count": 1}, "doors": {"_count": 1}, "people": {"_count": 1}, "only": {"_count": 1}, "hopeful": {"_count": 1}, "bodies": {"_count": 1}, "Death": {"_count": 1}, "": {"_count": 1}, "nasty": {"_count": 1}, "pictures": {"_count": 1}, "an": {"_count": 1}, "spells": {"_count": 1}, "legends": {"_count": 1}, "gaps": {"_count": 1}, "written": {"_count": 1}, "kids": {"_count": 1}}, "he": {"_count": 8, "was": {"_count": 2}, "is": {"_count": 1}, "told": {"_count": 1}, "leaned": {"_count": 1}, "showed": {"_count": 1}, "turned": {"_count": 1}, "murdered": {"_count": 1}}, "they": {"_count": 5, "were": {"_count": 1}, "are": {"_count": 2}, "had": {"_count": 1}, "all": {"_count": 1}}, "isnt": {"_count": 10, "a": {"_count": 1}, "anything": {"_count": 1}, "enough": {"_count": 1}, "any": {"_count": 3}, "anyone": {"_count": 1}, "much": {"_count": 2}, "one": {"_count": 1}}, "have": {"_count": 9, "been": {"_count": 8}, "": {"_count": 1}}, "wont": {"_count": 2, "be": {"_count": 2}}, "": {"_count": 12, "!": {"_count": 8}, ".": {"_count": 4}}, "his": {"_count": 1, "black": {"_count": 1}}, "stood": {"_count": 3, "the": {"_count": 1}, "Mrs": {"_count": 1}, "Professor": {"_count": 1}}, "you": {"_count": 30, "are": {"_count": 17}, "go": {"_count": 13}}, "may": {"_count": 3, "well": {"_count": 2}, "be": {"_count": 1}}, "must": {"_count": 5, "be": {"_count": 5}}, "might": {"_count": 5, "be": {"_count": 3}, "not": {"_count": 1}, "still": {"_count": 1}}, "wasnt": {"_count": 5, "the": {"_count": 1}, "much": {"_count": 1}, "a": {"_count": 2}, "anything": {"_count": 1}}, "has": {"_count": 6, "been": {"_count": 6}}, "will": {"_count": 18, "be": {"_count": 15}, "probably": {"_count": 1}, "come": {"_count": 2}}, "would": {"_count": 5, "be": {"_count": 4}, "still": {"_count": 1}}, "cant": {"_count": 2, "be": {"_count": 2}}, "seemed": {"_count": 6, "to": {"_count": 5}, "no": {"_count": 1}}, "she": {"_count": 5, "is": {"_count": 2}, "said": {"_count": 3}}, "now": {"_count": 2, "Minerva": {"_count": 1}, "said": {"_count": 1}}, "followed": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 5, "Lupin": {"_count": 1}, "Snape": {"_count": 1}, "Umbridge": {"_count": 1}, "Hermione": {"_count": 2}}, "goes": {"_count": 1, "Lupin": {"_count": 1}}, "came": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "arent": {"_count": 4, "any": {"_count": 2}, "many": {"_count": 1}, "a": {"_count": 1}}, "lived": {"_count": 1, "four": {"_count": 1}}, "can": {"_count": 4, "be": {"_count": 4}}, "re": {"_count": 1, "supposed": {"_count": 1}}, "just": {"_count": 1, "has": {"_count": 1}}, "yeh": {"_count": 1, "go": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "again": {"_count": 1, "progress": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "full": {"_count": 1}, "its": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 3, "wasnt": {"_count": 1}, "Sibyll": {"_count": 1}, "said": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "sat": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "really": {"_count": 1, "wasnt": {"_count": 1}}, "sure": {"_count": 1, "enough": {"_count": 1}}, "shining": {"_count": 1, "white": {"_count": 1}}, "we": {"_count": 2, "were": {"_count": 2}}, "upon": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 3, "be": {"_count": 3}}, "to": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 4, "was": {"_count": 4}}, "d": {"_count": 1, "be": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 1, "by": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}}, "tabby": {"_count": 5, "cat": {"_count": 4, "standing": {"_count": 1}, "hed": {"_count": 1}, "slinking": {"_count": 1}, "with": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}}, "standing": {"_count": 444, "on": {"_count": 40, "the": {"_count": 10}, "a": {"_count": 7}, "their": {"_count": 1}, "": {"_count": 1}, "two": {"_count": 1}, "it": {"_count": 1}, "end": {"_count": 1}, "tiptoe": {"_count": 5}, "Goyle": {"_count": 1}, "shelves": {"_count": 1}, "one": {"_count": 2}, "his": {"_count": 1}, "either": {"_count": 1}, "tables": {"_count": 1}, "desks": {"_count": 1}, "top": {"_count": 2}, "platform": {"_count": 1}, "Slughorn": {"_count": 1}, "this": {"_count": 1}}, "quite": {"_count": 5, "close": {"_count": 1}, "still": {"_count": 4}}, "up": {"_count": 49, "quickly": {"_count": 1}, "and": {"_count": 16}, "to": {"_count": 8}, "for": {"_count": 1}, "in": {"_count": 3}, "": {"_count": 9}, "at": {"_count": 2}, "carefully": {"_count": 1}, "his": {"_count": 1}, "forming": {"_count": 1}, "he": {"_count": 1}, "her": {"_count": 1}, "ready": {"_count": 1}, "again": {"_count": 2}, "Harry": {"_count": 1}}, "in": {"_count": 65, "the": {"_count": 29}, "Nearly": {"_count": 1}, "a": {"_count": 16}, "front": {"_count": 10}, "line": {"_count": 1}, "Madame": {"_count": 1}, "huddles": {"_count": 1}, "for": {"_count": 1}, "what": {"_count": 1}, "this": {"_count": 1}, "Slughorn": {"_count": 1}, "cool": {"_count": 1}, "water": {"_count": 1}}, "there": {"_count": 35, "grinning": {"_count": 1}, "with": {"_count": 8}, "": {"_count": 7}, "laughing": {"_count": 1}, "staring": {"_count": 1}, "each": {"_count": 1}, "leaning": {"_count": 1}, "by": {"_count": 1}, "talking": {"_count": 2}, "wearing": {"_count": 1}, "bold": {"_count": 1}, "crying": {"_count": 1}, "to": {"_count": 1}, "alone": {"_count": 1}, "looking": {"_count": 2}, "imprisoned": {"_count": 1}, "the": {"_count": 1}, "beside": {"_count": 1}, "gazing": {"_count": 1}, "and": {"_count": 1}}, "before": {"_count": 6, "them": {"_count": 3}, "his": {"_count": 1}, "him": {"_count": 2}}, "rather": {"_count": 1, "closer": {"_count": 1}}, "with": {"_count": 14, "his": {"_count": 7}, "their": {"_count": 1}, "Mr": {"_count": 1}, "her": {"_count": 2}, "a": {"_count": 1}, "Snape": {"_count": 1}, "one": {"_count": 1}}, "right": {"_count": 11, "behind": {"_count": 5}, "outside": {"_count": 2}, "beside": {"_count": 3}, "in": {"_count": 1}}, "next": {"_count": 5, "to": {"_count": 5}}, "around": {"_count": 6, "you": {"_count": 2}, "the": {"_count": 1}, "him": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "alone": {"_count": 7, "the": {"_count": 1}, "gazing": {"_count": 1}, "nearby": {"_count": 1}, "halfway": {"_count": 1}, "in": {"_count": 2}, "at": {"_count": 1}}, "over": {"_count": 11, "him": {"_count": 6}, "me": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "his": {"_count": 1}}, "behind": {"_count": 8, "Quirrell": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "Madame": {"_count": 1}, "him": {"_count": 2}, "Fred": {"_count": 1}}, "outside": {"_count": 6, "the": {"_count": 3}, "waiting": {"_count": 1}, "his": {"_count": 1}, "number": {"_count": 1}}, "at": {"_count": 16, "the": {"_count": 11}, "a": {"_count": 2}, "one": {"_count": 1}, "Professor": {"_count": 1}, "random": {"_count": 1}}, "nervously": {"_count": 2, "at": {"_count": 1}, "next": {"_count": 1}}, "well": {"_count": 2, "back": {"_count": 2}}, "flustered": {"_count": 1, "in": {"_count": 1}}, "motionless": {"_count": 2, "eye": {"_count": 1}, "on": {"_count": 1}}, "stockstill": {"_count": 2, "by": {"_count": 1}, "staring": {"_count": 1}}, "guard": {"_count": 8, "": {"_count": 1}, "all": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}, "over": {"_count": 1}, "by": {"_count": 1}, "for": {"_count": 1}, "outside": {"_count": 1}}, "empty": {"_count": 1, "in": {"_count": 1}}, "against": {"_count": 3, "the": {"_count": 3}}, "by": {"_count": 6, "the": {"_count": 4}, "to": {"_count": 2}}, "back": {"_count": 4, "": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 2}}, "inside": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "beneath": {"_count": 1, "him": {"_count": 1}}, "exactly": {"_count": 4, "where": {"_count": 4}}, "about": {"_count": 1, "halfway": {"_count": 1}}, "underneath": {"_count": 1, "it": {"_count": 1}}, "hopefully": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "talking": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 8, "inside": {"_count": 2}, "beyond": {"_count": 1}, "outside": {"_count": 2}, "behind": {"_count": 2}, "a": {"_count": 1}}, "watch": {"_count": 1, "with": {"_count": 1}}, "upright": {"_count": 1, "was": {"_count": 1}}, "where": {"_count": 1, "Scabbers": {"_count": 1}}, "position": {"_count": 3, "head": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "here": {"_count": 4, "and": {"_count": 1}, "in": {"_count": 1}, "alive": {"_count": 1}, "with": {"_count": 1}}, "a": {"_count": 5, "good": {"_count": 1}, "few": {"_count": 2}, "little": {"_count": 2}}, "though": {"_count": 2, "looking": {"_count": 1}, "entirely": {"_count": 1}}, "between": {"_count": 2, "Ron": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "moodily": {"_count": 1, "in": {"_count": 1}}, "quietly": {"_count": 2, "by": {"_count": 1}, "in": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "amid": {"_count": 1, "all": {"_count": 1}}, "halfconcealed": {"_count": 1, "in": {"_count": 1}}, "huddled": {"_count": 1, "against": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "halfway": {"_count": 1, "along": {"_count": 1}}, "looking": {"_count": 1, "out": {"_count": 1}}, "beside": {"_count": 14, "Dumbledores": {"_count": 1}, "him": {"_count": 3}, "the": {"_count": 4}, "Marietta": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "Filch": {"_count": 1}, "them": {"_count": 1}, "another": {"_count": 1}}, "feet": {"_count": 3, "from": {"_count": 3}}, "instead": {"_count": 1, "in": {"_count": 1}}, "frozen": {"_count": 2, "at": {"_count": 1}, "aware": {"_count": 1}}, "figures": {"_count": 1, "Harry": {"_count": 1}}, "farthest": {"_count": 1, "back": {"_count": 1}}, "matteroffactly": {"_count": 1, "in": {"_count": 1}}, "joke": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "still": {"_count": 1}}, "than": {"_count": 1, "sitting": {"_count": 1}}, "foolishly": {"_count": 1, "beside": {"_count": 1}}, "rooted": {"_count": 1, "to": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "as": {"_count": 2, "still": {"_count": 1}, "though": {"_count": 1}}, "again": {"_count": 3, "in": {"_count": 1}, "beside": {"_count": 1}, "with": {"_count": 1}}, "or": {"_count": 1, "lying": {"_count": 1}}, "longingly": {"_count": 1, "in": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "apparently": {"_count": 1, "transfixed": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "breathless": {"_count": 1, "in": {"_count": 1}}, "slightly": {"_count": 1, "behind": {"_count": 1}}, "open": {"_count": 1, "into": {"_count": 1}}, "his": {"_count": 1, "ground": {"_count": 1}}, "ready": {"_count": 4, "to": {"_count": 1}, "on": {"_count": 1}, "beside": {"_count": 1}, "in": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "upon": {"_count": 5, "Slughorns": {"_count": 1}, "Slughorn": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}}, "five": {"_count": 2, "feet": {"_count": 2}}, "together": {"_count": 1, "on": {"_count": 1}}, "There": {"_count": 1, "on": {"_count": 1}}, "stock": {"_count": 1, "still": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "nearest": {"_count": 1, "to": {"_count": 1}}, "anyway": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "hunchbacked": {"_count": 1, "to": {"_count": 1}}, "either": {"_count": 1, "side": {"_count": 1}}, "blew": {"_count": 1, "up": {"_count": 1}}, "arm": {"_count": 1, "in": {"_count": 1}}, "hand": {"_count": 1, "in": {"_count": 1}}, "still": {"_count": 1, "on": {"_count": 1}}, "ovation": {"_count": 1, "they": {"_count": 1}}, "alongside": {"_count": 1, "the": {"_count": 1}}}, "wasnt": {"_count": 521, "a": {"_count": 30, "map": {"_count": 1}, "question": {"_count": 1}, "teacher": {"_count": 2}, "dunderhead": {"_count": 1}, "very": {"_count": 4}, "normal": {"_count": 1}, "proper": {"_count": 1}, "Slytherin": {"_count": 1}, "complete": {"_count": 1}, "fully": {"_count": 1}, "card": {"_count": 1}, "happy": {"_count": 3}, "horse": {"_count": 1}, "unicorn": {"_count": 1}, "living": {"_count": 1}, "lot": {"_count": 1}, "pretty": {"_count": 1}, "single": {"_count": 1}, "good": {"_count": 1}, "bad": {"_count": 1}, "dream": {"_count": 1}, "nightmare": {"_count": 1}, "blow": {"_count": 1}, "cough": {"_count": 1}}, "such": {"_count": 1, "an": {"_count": 1}}, "even": {"_count": 8, "sure": {"_count": 2}, "Voldemort": {"_count": 1}, "aware": {"_count": 1}, "watching": {"_count": 1}, "human": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}}, "much": {"_count": 6, "room": {"_count": 2}, "left": {"_count": 1}, "interested": {"_count": 1}, "more": {"_count": 1}, "of": {"_count": 1}}, "easy": {"_count": 3, "when": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 1}}, "there": {"_count": 20, "or": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 10}, "when": {"_count": 2}, "was": {"_count": 1}, "he": {"_count": 2}, "said": {"_count": 2}, "and": {"_count": 1}}, "really": {"_count": 9, "crying": {"_count": 1}, "a": {"_count": 2}, "watching": {"_count": 1}, "an": {"_count": 1}, "doing": {"_count": 1}, "laughing": {"_count": 1}, "important": {"_count": 1}, "him": {"_count": 1}}, "punished": {"_count": 1, "": {"_count": 1}}, "school": {"_count": 1, "his": {"_count": 1}}, "bad": {"_count": 2, "either": {"_count": 1}, "said": {"_count": 1}}, "blond": {"_count": 1, "": {"_count": 1}}, "sure": {"_count": 13, "the": {"_count": 1}, "he": {"_count": 2}, "what": {"_count": 1}, "a": {"_count": 1}, "where": {"_count": 1}, "RiddikulusV": {"_count": 1}, "even": {"_count": 1}, "whether": {"_count": 5}}, "as": {"_count": 9, "bad": {"_count": 4}, "sleek": {"_count": 1}, "though": {"_count": 3}, "young": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "going": {"_count": 30, "to": {"_count": 27}, "at": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 1}}, "steering": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 9, "Slytherin": {"_count": 1}, "Great": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}, "league": {"_count": 1}, "Hogsmeade": {"_count": 1}, "any": {"_count": 2}}, "it": {"_count": 21, "": {"_count": 19}, "as": {"_count": 1}, "seeing": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "anywhere": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "listening": {"_count": 12, "she": {"_count": 1}, "": {"_count": 7}, "said": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 2}}, "Neville": {"_count": 1, "the": {"_count": 1}}, "chosen": {"_count": 1, "at": {"_count": 1}}, "miles": {"_count": 1, "behind": {"_count": 1}}, "the": {"_count": 29, "only": {"_count": 14}, "Snitch": {"_count": 1}, "talking": {"_count": 1}, "first": {"_count": 2}, "usual": {"_count": 1}, "faintest": {"_count": 1}, "Dursleys": {"_count": 1}, "Grim": {"_count": 1}, "pain": {"_count": 1}, "worst": {"_count": 1}, "same": {"_count": 1}, "reaction": {"_count": 1}, "answer": {"_count": 1}, "sole": {"_count": 1}, "type": {"_count": 1}}, "his": {"_count": 5, "fault": {"_count": 1}, "usual": {"_count": 1}, "favorite": {"_count": 1}, "idea": {"_count": 1}, "girlfriend": {"_count": 1}}, "what": {"_count": 4, "youd": {"_count": 2}, "Ron": {"_count": 1}, "was": {"_count": 1}}, "back": {"_count": 2, "from": {"_count": 1}, "yet": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 6, "at": {"_count": 3}, "forward": {"_count": 1}, "": {"_count": 2}}, "having": {"_count": 1, "much": {"_count": 1}}, "seen": {"_count": 1, "all": {"_count": 1}}, "about": {"_count": 3, "to": {"_count": 3}}, "new": {"_count": 1, "to": {"_count": 1}}, "blinking": {"_count": 1, "at": {"_count": 1}}, "somewhere": {"_count": 1, "in": {"_count": 1}}, "very": {"_count": 4, "hopeful": {"_count": 1}, "effective": {"_count": 1}, "clear": {"_count": 1}, "well": {"_count": 1}}, "surprising": {"_count": 1, "theyd": {"_count": 1}}, "until": {"_count": 2, "Ron": {"_count": 1}, "they": {"_count": 1}}, "too": {"_count": 5, "calm": {"_count": 1}, "happy": {"_count": 1}, "difficult": {"_count": 1}, "bad": {"_count": 2}}, "alone": {"_count": 3, "": {"_count": 2}, "after": {"_count": 1}}, "inside": {"_count": 1, "before": {"_count": 1}}, "exactly": {"_count": 7, "pretty": {"_count": 1}, "clean": {"_count": 1}, "hard": {"_count": 1}, "your": {"_count": 1}, "hiding": {"_count": 1}, "broadminded": {"_count": 1}, "like": {"_count": 1}}, "true": {"_count": 1, "because": {"_count": 1}}, "that": {"_count": 8, "": {"_count": 1}, "said": {"_count": 1}, "Yes": {"_count": 1}, "exciting": {"_count": 1}, "what": {"_count": 1}, "dishonest": {"_count": 1}, "special": {"_count": 1}, "far": {"_count": 1}}, "ordinary": {"_count": 1, "fire": {"_count": 1}}, "I": {"_count": 7, "": {"_count": 6}, "saw": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "twitching": {"_count": 1, "at": {"_count": 1}}, "moving": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "worth": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 8, "and": {"_count": 1}, "": {"_count": 2}, "it": {"_count": 2}, "Was": {"_count": 1}, "It": {"_count": 1}, "said": {"_count": 1}}, "my": {"_count": 1, "department": {"_count": 1}}, "intending": {"_count": 1, "to": {"_count": 1}}, "visible": {"_count": 1, "to": {"_count": 1}}, "nearly": {"_count": 2, "as": {"_count": 2}}, "at": {"_count": 7, "all": {"_count": 4}, "lunch": {"_count": 1}, "dinner": {"_count": 1}, "the": {"_count": 1}}, "talking": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "about": {"_count": 1}}, "pink": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 3}, "!": {"_count": 3}}, "pleased": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "Hagrid": {"_count": 2, "who": {"_count": 1}, "hell": {"_count": 1}}, "supposed": {"_count": 6, "to": {"_count": 6}}, "on": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "Privet": {"_count": 1}}, "surprised": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "he": {"_count": 15, "at": {"_count": 1}, "": {"_count": 11}, "Harry": {"_count": 1}, "waiting": {"_count": 1}, "not": {"_count": 1}}, "hit": {"_count": 1, "over": {"_count": 1}}, "guarding": {"_count": 1, "the": {"_count": 1}}, "paying": {"_count": 2, "attention": {"_count": 2}}, "all": {"_count": 2, "": {"_count": 1}, "there": {"_count": 1}}, "helping": {"_count": 1, "matters": {"_count": 1}}, "Dumbledore": {"_count": 2, "who": {"_count": 1}, "explain": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "caught": {"_count": 1, "soon": {"_count": 1}}, "enjoyable": {"_count": 1, "": {"_count": 1}}, "Granger": {"_count": 1, "The": {"_count": 1}}, "howling": {"_count": 1, "anymore": {"_count": 1}}, "some": {"_count": 1, "stupid": {"_count": 1}}, "Petrified": {"_count": 1, "": {"_count": 1}}, "worried": {"_count": 2, "about": {"_count": 1}, "what": {"_count": 1}}, "complaining": {"_count": 1, "any": {"_count": 1}}, "they": {"_count": 1, "Ern": {"_count": 1}}, "to": {"_count": 1, "know": {"_count": 1}}, "usual": {"_count": 1, "for": {"_count": 1}}, "expelled": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "carrying": {"_count": 1, "an": {"_count": 1}}, "happy": {"_count": 1, "about": {"_count": 1}}, "completely": {"_count": 1, "useless": {"_count": 1}}, "fool": {"_count": 1, "enough": {"_count": 1}}, "why": {"_count": 1, "Harry": {"_count": 1}}, "so": {"_count": 4, "cocky": {"_count": 1}, "surprising": {"_count": 1}, "lousy": {"_count": 1}, "keen": {"_count": 1}}, "eating": {"_count": 3, "either": {"_count": 1}, "anything": {"_count": 2}}, "an": {"_count": 3, "interesting": {"_count": 1}, "easy": {"_count": 1}, "ordinary": {"_count": 1}}, "serious": {"_count": 1, "was": {"_count": 1}}, "ready": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 2, "cheerful": {"_count": 1}, "that": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "fooled": {"_count": 1, "they": {"_count": 1}}, "sunken": {"_count": 1, "and": {"_count": 1}}, "apprehensive": {"_count": 1, "at": {"_count": 1}}, "showing": {"_count": 1, "the": {"_count": 1}}, "anything": {"_count": 3, "wrong": {"_count": 1}, "important": {"_count": 1}, "in": {"_count": 1}}, "joining": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 2, "my": {"_count": 1}, "lack": {"_count": 1}}, "good": {"_count": 1, "news": {"_count": 1}}, "doing": {"_count": 3, "his": {"_count": 1}, "anything": {"_count": 1}, "him": {"_count": 1}}, "flying": {"_count": 1, "it": {"_count": 1}}, "Harrys": {"_count": 1, "business": {"_count": 1}}, "right": {"_count": 2, "Harry": {"_count": 1}, "it": {"_count": 1}}, "Sirius": {"_count": 2, "But": {"_count": 1}, "": {"_count": 1}}, "thinking": {"_count": 1, "straight": {"_count": 1}}, "only": {"_count": 1, "Professor": {"_count": 1}}, "allowed": {"_count": 1, "to": {"_count": 1}}, "following": {"_count": 1, "Dudleys": {"_count": 1}}, "bothered": {"_count": 2, "about": {"_count": 1}, "or": {"_count": 1}}, "altogether": {"_count": 1, "surprising": {"_count": 1}}, "funny": {"_count": 1, "Fred": {"_count": 1}}, "just": {"_count": 4, "Rons": {"_count": 1}, "Ron": {"_count": 1}, "for": {"_count": 1}, "memorizing": {"_count": 1}}, "Dobby": {"_count": 1, "it": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "hurting": {"_count": 2, "anyone": {"_count": 1}, "so": {"_count": 1}}, "specifically": {"_count": 1, "stated": {"_count": 1}}, "dreading": {"_count": 1, "anything": {"_count": 1}}, "riveted": {"_count": 1, "by": {"_count": 1}}, "telling": {"_count": 1, "said": {"_count": 1}}, "entirely": {"_count": 3, "right": {"_count": 1}, "sure": {"_count": 2}}, "offering": {"_count": 1, "it": {"_count": 1}}, "smiling": {"_count": 1, "": {"_count": 1}}, "hungry": {"_count": 1, "nobody": {"_count": 1}}, "laughing": {"_count": 1, "but": {"_count": 1}}, "sticking": {"_count": 1, "up": {"_count": 1}}, "speaking": {"_count": 2, "it": {"_count": 1}, "to": {"_count": 1}}, "wearing": {"_count": 2, "a": {"_count": 1}, "them": {"_count": 1}}, "working": {"_count": 2, "too": {"_count": 1}, "very": {"_count": 1}}, "accusing": {"_count": 1, "you": {"_count": 1}}, "coming": {"_count": 1, "": {"_count": 1}}, "important": {"_count": 1, "": {"_count": 1}}, "attracting": {"_count": 1, "nearly": {"_count": 1}}, "your": {"_count": 4, "fault": {"_count": 3}, "Patronus": {"_count": 1}}, "giggling": {"_count": 1, "": {"_count": 1}}, "interesting": {"_count": 1, "enough": {"_count": 1}}, "being": {"_count": 1, "honest": {"_count": 1}}, "quite": {"_count": 2, "like": {"_count": 1}, "as": {"_count": 1}}, "bubble": {"_count": 1, "bath": {"_count": 1}}, "labeled": {"_count": 1, "Severus": {"_count": 1}}, "asking": {"_count": 1, "where": {"_count": 1}}, "careful": {"_count": 1, "he": {"_count": 1}}, "anyone": {"_count": 1, "else": {"_count": 1}}, "forgetful": {"_count": 1, "at": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 4}}, "making": {"_count": 1, "much": {"_count": 1}}, "taking": {"_count": 1, "her": {"_count": 1}}, "invisible": {"_count": 1, "said": {"_count": 1}}, "Hogwarts": {"_count": 1, "he": {"_count": 1}}, "broken": {"_count": 1, "now": {"_count": 1}}, "involved": {"_count": 1, "": {"_count": 1}}, "hard": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 1, "them": {"_count": 1}}, "giving": {"_count": 1, "us": {"_count": 1}}, "enough": {"_count": 2, "to": {"_count": 1}, "said": {"_count": 1}}, "lying": {"_count": 1, "how": {"_count": 1}}, "Moody": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 3, "Fred": {"_count": 1}, "Harry": {"_count": 1}, "Snape": {"_count": 1}}, "But": {"_count": 1, "Mr": {"_count": 1}}, "stopping": {"_count": 1, "What": {"_count": 1}}, "attacking": {"_count": 1, "her": {"_count": 1}}, "dead": {"_count": 1, "said": {"_count": 1}}, "Ron": {"_count": 1, "he": {"_count": 1}}, "skill": {"_count": 1, "Second": {"_count": 1}}, "time": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "expecting": {"_count": 2, "you": {"_count": 1}, "this": {"_count": 1}}, "she": {"_count": 4, "": {"_count": 4}}, "prosecuted": {"_count": 1, "for": {"_count": 1}}, "normal": {"_count": 1, "": {"_count": 1}}, "already": {"_count": 1, "making": {"_count": 1}}, "unexpected": {"_count": 1, "dragon": {"_count": 1}}, "invited": {"_count": 1, "": {"_count": 1}}, "kind": {"_count": 1, "": {"_count": 1}}, "Crabbes": {"_count": 1, "business": {"_count": 1}}, "cursed": {"_count": 1, "": {"_count": 1}}, "poison": {"_count": 1, "wake": {"_count": 1}}, "bitten": {"_count": 1, "at": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "stealing": {"_count": 1, "": {"_count": 1}}, "terribly": {"_count": 1, "careful": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 2}}, "safe": {"_count": 1, "where": {"_count": 1}}, "impressed": {"_count": 1, "when": {"_count": 1}}, "more": {"_count": 1, "interested": {"_count": 1}}, "concentrating": {"_count": 1, "when": {"_count": 1}}, "yours": {"_count": 1, "said": {"_count": 1}}}, "sight": {"_count": 340, "": {"_count": 76, ".": {"_count": 73}, "!": {"_count": 2}, "?": {"_count": 1}}, "of": {"_count": 130, "the": {"_count": 24}, "Malfoy": {"_count": 1}, "them": {"_count": 9}, "a": {"_count": 5}, "him": {"_count": 17}, "Harrys": {"_count": 3}, "Harry": {"_count": 18}, "his": {"_count": 4}, "Hermiones": {"_count": 1}, "Percy": {"_count": 1}, "Nicks": {"_count": 1}, "its": {"_count": 1}, "her": {"_count": 7}, "himself": {"_count": 2}, "wreckage": {"_count": 1}, "Cho": {"_count": 1}, "Ron": {"_count": 2}, "their": {"_count": 4}, "Hagrids": {"_count": 1}, "me": {"_count": 1}, "Mr": {"_count": 1}, "Fleur": {"_count": 1}, "Cedric": {"_count": 1}, "Sirius": {"_count": 1}, "Dumbledore": {"_count": 1}, "Percys": {"_count": 1}, "Draco": {"_count": 1}, "Hedwig": {"_count": 1}, "Binnss": {"_count": 1}, "each": {"_count": 1}, "one": {"_count": 1}, "Dumbledores": {"_count": 1}, "these": {"_count": 1}, "it": {"_count": 1}, "Ogden": {"_count": 2}, "Rons": {"_count": 2}, "Slughorn": {"_count": 1}, "Dean": {"_count": 1}, "Voldemort": {"_count": 1}, "Bills": {"_count": 1}, "any": {"_count": 1}, "Krums": {"_count": 1}, "that": {"_count": 1}, "Snatchers": {"_count": 1}}, "he": {"_count": 1, "rose": {"_count": 1}}, "o": {"_count": 1, "Hogwarts": {"_count": 1}}, "again": {"_count": 6, "": {"_count": 5}, "as": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 3, "look": {"_count": 1}, "avoid": {"_count": 2}}, "Harry": {"_count": 9, "didnt": {"_count": 1}, "had": {"_count": 1}, "clutched": {"_count": 1}, "saw": {"_count": 1}, "": {"_count": 1}, "remember": {"_count": 1}, "skidded": {"_count": 1}, "heard": {"_count": 1}, "tugged": {"_count": 1}}, "Hermione": {"_count": 2, "let": {"_count": 1}, "screamed": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 1}, "intent": {"_count": 1}}, "as": {"_count": 5, "the": {"_count": 2}, "Macnairs": {"_count": 1}, "she": {"_count": 1}, "their": {"_count": 1}}, "but": {"_count": 6, "had": {"_count": 1}, "Ron": {"_count": 2}, "Malfoy": {"_count": 1}, "Dont": {"_count": 1}, "all": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "then": {"_count": 2, "pulled": {"_count": 1}, "crawled": {"_count": 1}}, "their": {"_count": 2, "hair": {"_count": 1}, "combined": {"_count": 1}}, "although": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 16, "then": {"_count": 2}, "Harry": {"_count": 1}, "a": {"_count": 1}, "Madam": {"_count": 1}, "when": {"_count": 1}, "was": {"_count": 1}, "vanished": {"_count": 1}, "he": {"_count": 2}, "brandishing": {"_count": 1}, "landed": {"_count": 1}, "sound": {"_count": 1}, "the": {"_count": 1}, "seven": {"_count": 1}, "nothing": {"_count": 1}}, "that": {"_count": 2, "greeted": {"_count": 1}, "met": {"_count": 1}}, "listening": {"_count": 1, "hard": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "leaving": {"_count": 1, "a": {"_count": 1}}, "however": {"_count": 1, "the": {"_count": 1}}, "youd": {"_count": 1, "be": {"_count": 1}}, "Snape": {"_count": 1, "strode": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "Ron": {"_count": 3, "": {"_count": 1}, "ripped": {"_count": 1}, "glanced": {"_count": 1}}, "they": {"_count": 2, "couldnt": {"_count": 1}, "could": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 1}, "Ron": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "broomsticks": {"_count": 1}, "the": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "the": {"_count": 2, "minuscule": {"_count": 1}, "bruises": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "Fang": {"_count": 1}, "Ginny": {"_count": 1}}, "his": {"_count": 2, "magical": {"_count": 1}, "companion": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "met": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "along": {"_count": 1, "another": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "a": {"_count": 2, "shriek": {"_count": 1}, "tall": {"_count": 1}}, "heading": {"_count": 1, "along": {"_count": 1}}, "snigger": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "blink": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "or": {"_count": 1, "fizzling": {"_count": 1}}, "while": {"_count": 1, "straining": {"_count": 1}}, "peering": {"_count": 1, "down": {"_count": 1}}, "blackness": {"_count": 1, "closed": {"_count": 1}}, "almost": {"_count": 1, "immediately": {"_count": 1}}, "SIRIUS": {"_count": 1, "": {"_count": 1}}, "ahead": {"_count": 1, "and": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "therefore": {"_count": 1, "of": {"_count": 1}}, "nicer": {"_count": 1, "than": {"_count": 1}}, "giving": {"_count": 1, "you": {"_count": 1}}, "willingly": {"_count": 1, "Malfoy": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "than": {"_count": 1, "anything": {"_count": 1}}, "long": {"_count": 1, "before": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "For": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "looking": {"_count": 1}}, "He": {"_count": 1, "felt": {"_count": 1}}, "all": {"_count": 1, "for": {"_count": 1}}, "beneath": {"_count": 3, "his": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "she": {"_count": 1, "hoped": {"_count": 1}}, "more": {"_count": 1, "of": {"_count": 1}}, "harder": {"_count": 1, "making": {"_count": 1}}, "I": {"_count": 1, "shall": {"_count": 1}}, "now": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "struggling": {"_count": 1, "for": {"_count": 1}}}, "What": {"_count": 1284, "could": {"_count": 3, "he": {"_count": 1}, "possibly": {"_count": 2}}, "theyre": {"_count": 1, "saying": {"_count": 1}}, "did": {"_count": 94, "you": {"_count": 45}, "it": {"_count": 2}, "the": {"_count": 5}, "Lockhart": {"_count": 1}, "Riddle": {"_count": 1}, "Malfoy": {"_count": 1}, "he": {"_count": 12}, "this": {"_count": 1}, "she": {"_count": 4}, "these": {"_count": 1}, "Mr": {"_count": 2}, "they": {"_count": 7}, "that": {"_count": 3}, "Vicky": {"_count": 1}, "I": {"_count": 1}, "surprise": {"_count": 1}, "Ginny": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Regulus": {"_count": 2}, "we": {"_count": 1}, "Dumbledore": {"_count": 1}}, "about": {"_count": 49, "whatshername": {"_count": 1}, "that": {"_count": 2}, "you": {"_count": 8}, "her": {"_count": 4}, "it": {"_count": 3}, "my": {"_count": 3}, "those": {"_count": 2}, "poor": {"_count": 1}, "the": {"_count": 4}, "Dumbledore": {"_count": 1}, "Professor": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "them": {"_count": 1}, "Hagrid": {"_count": 1}, "him": {"_count": 3}, "\u2018popkin": {"_count": 1}, "": {"_count": 3}, "your": {"_count": 1}, "Lupin": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledores": {"_count": 1}, "Dudleys": {"_count": 1}, "Luna": {"_count": 1}, "dementors": {"_count": 1}, "our": {"_count": 1}}, "came": {"_count": 1, "next": {"_count": 1}}, "are": {"_count": 121, "you": {"_count": 85}, "they": {"_count": 7}, "these": {"_count": 2}, "we": {"_count": 15}, "Weasleys": {"_count": 1}, "veel": {"_count": 1}, "Death": {"_count": 1}, "all": {"_count": 1}, "Skiving": {"_count": 1}, "Fred": {"_count": 1}, "those": {"_count": 3}, "heliopaths": {"_count": 1}, "nargles": {"_count": 1}, "your": {"_count": 1}}, "world": {"_count": 1, "": {"_count": 1}}, "": {"_count": 191, "?": {"_count": 185}, "!": {"_count": 4}, ".": {"_count": 2}}, "does": {"_count": 23, "it": {"_count": 8}, "this": {"_count": 2}, "your": {"_count": 1}, "she": {"_count": 3}, "he": {"_count": 4}, "a": {"_count": 1}, "MadEye": {"_count": 1}, "that": {"_count": 3}}, "happened": {"_count": 52, "": {"_count": 24}, "to": {"_count": 15}, "down": {"_count": 1}, "Harry": {"_count": 4}, "trying": {"_count": 1}, "then": {"_count": 3}, "when": {"_count": 2}, "Professor": {"_count": 1}, "anyway": {"_count": 1}}, "sort": {"_count": 11, "of": {"_count": 11}}, "on": {"_count": 14, "earth": {"_count": 13}, "earths": {"_count": 1}}, "looked": {"_count": 3, "like": {"_count": 3}}, "she": {"_count": 1, "did": {"_count": 1}}, "they": {"_count": 5, "dont": {"_count": 1}, "really": {"_count": 1}, "kill": {"_count": 1}, "were": {"_count": 1}, "saw": {"_count": 1}}, "House": {"_count": 2, "are": {"_count": 1}, "were": {"_count": 1}}, "has": {"_count": 9, "been": {"_count": 1}, "happened": {"_count": 4}, "he": {"_count": 2}, "upset": {"_count": 1}, "she": {"_count": 1}}, "the": {"_count": 18, "": {"_count": 11}, "devil": {"_count": 2}, "he": {"_count": 1}, "hell": {"_count": 2}, "Ministry": {"_count": 1}, "things": {"_count": 1}}, "if": {"_count": 52, "he": {"_count": 6}, "they": {"_count": 7}, "you": {"_count": 3}, "hes": {"_count": 2}, "Mum": {"_count": 1}, "we": {"_count": 1}, "she": {"_count": 1}, "shes": {"_count": 1}, "its": {"_count": 2}, "even": {"_count": 1}, "I": {"_count": 4}, "Black": {"_count": 1}, "the": {"_count": 4}, "youd": {"_count": 1}, "YouKnowWho": {"_count": 1}, "Moody": {"_count": 1}, "youre": {"_count": 1}, "there": {"_count": 1}, "it": {"_count": 3}, "something": {"_count": 1}, "Mr": {"_count": 1}, "Voldemort": {"_count": 1}, "your": {"_count": 1}, "purebloods": {"_count": 1}, "Dumbledore": {"_count": 2}, "working": {"_count": 1}, "what": {"_count": 1}, "Im": {"_count": 1}}, "is": {"_count": 79, "it": {"_count": 40}, "the": {"_count": 3}, "a": {"_count": 1}, "that": {"_count": 6}, "Gilderoy": {"_count": 2}, "this": {"_count": 15}, "ze": {"_count": 1}, "he": {"_count": 2}, "your": {"_count": 3}, "going": {"_count": 2}, "Padfoot": {"_count": 1}, "done": {"_count": 1}, "Dumbledore": {"_count": 1}, "more": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 14, "we": {"_count": 2}, "you": {"_count": 10}, "I": {"_count": 1}, "they": {"_count": 1}}, "would": {"_count": 17, "I": {"_count": 1}, "the": {"_count": 2}, "you": {"_count": 2}, "happen": {"_count": 5}, "it": {"_count": 1}, "your": {"_count": 1}, "they": {"_count": 2}, "spoiled": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 1}}, "do": {"_count": 80, "they": {"_count": 6}, "you": {"_count": 65}, "we": {"_count": 4}, "I": {"_count": 4}, "wizard": {"_count": 1}}, "had": {"_count": 9, "Hagrid": {"_count": 1}, "he": {"_count": 3}, "happened": {"_count": 2}, "she": {"_count": 1}, "Malfoy": {"_count": 1}, "you": {"_count": 1}}, "a": {"_count": 18, "feeling": {"_count": 1}, "shape": {"_count": 1}, "year": {"_count": 1}, "night": {"_count": 1}, "jolly": {"_count": 1}, "lovely": {"_count": 1}, "day": {"_count": 1}, "pile": {"_count": 1}, "week": {"_count": 1}, "pleasant": {"_count": 1}, "stupid": {"_count": 1}, "snappy": {"_count": 1}, "surprise": {"_count": 1}, "blow": {"_count": 1}, "waste": {"_count": 1}, "treat": {"_count": 1}, "todo": {"_count": 1}, "terrible": {"_count": 1}}, "should": {"_count": 1, "we": {"_count": 1}}, "Harry": {"_count": 3, "feared": {"_count": 1}, "found": {"_count": 1}, "had": {"_count": 1}}, "am": {"_count": 4, "I": {"_count": 4}}, "was": {"_count": 69, "he": {"_count": 7}, "going": {"_count": 8}, "that": {"_count": 16}, "it": {"_count": 13}, "the": {"_count": 6}, "all": {"_count": 2}, "there": {"_count": 1}, "I": {"_count": 3}, "she": {"_count": 1}, "this": {"_count": 1}, "more": {"_count": 5}, "its": {"_count": 1}, "": {"_count": 1}, "making": {"_count": 1}, "now": {"_count": 1}, "real": {"_count": 1}, "Voldemort": {"_count": 1}}, "utter": {"_count": 1, "rubbish": {"_count": 1}}, "goodll": {"_count": 1, "that": {"_count": 1}}, "goods": {"_count": 1, "that": {"_count": 1}}, "can": {"_count": 8, "you": {"_count": 2}, "he": {"_count": 2}, "I": {"_count": 2}, "we": {"_count": 2}}, "I": {"_count": 7, "want": {"_count": 1}, "was": {"_count": 1}, "dont": {"_count": 4}, "know": {"_count": 1}}, "really": {"_count": 2, "happened": {"_count": 2}}, "wouldnt": {"_count": 2, "he": {"_count": 2}}, "terrible": {"_count": 1, "things": {"_count": 1}}, "you": {"_count": 10, "think": {"_count": 1}, "had": {"_count": 1}, "reckon": {"_count": 1}, "need": {"_count": 3}, "must": {"_count": 2}, "can": {"_count": 1}, "two": {"_count": 1}}, "re": {"_count": 8, "you": {"_count": 7}, "we": {"_count": 1}}, "dyeh": {"_count": 2, "think": {"_count": 1}, "I": {"_count": 1}}, "an": {"_count": 4, "extraordinary": {"_count": 1}, "entrance": {"_count": 1}, "amazing": {"_count": 1}, "interesting": {"_count": 1}}, "in": {"_count": 4, "blazes": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 2}}, "makes": {"_count": 5, "you": {"_count": 4}, "me": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 27, "you": {"_count": 15}, "they": {"_count": 6}, "You": {"_count": 1}, "yeh": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "off": {"_count": 1}, "doing": {"_count": 1}}, "wed": {"_count": 1, "need": {"_count": 1}}, "dyou": {"_count": 79, "mean": {"_count": 43}, "reckon": {"_count": 15}, "think": {"_count": 10}, "want": {"_count": 3}, "three": {"_count": 1}, "reckonll": {"_count": 1}, "reckons": {"_count": 1}, "do": {"_count": 1}, "": {"_count": 4}}, "he": {"_count": 10, "saw": {"_count": 1}, "really": {"_count": 1}, "needs": {"_count": 1}, "had": {"_count": 3}, "would": {"_count": 1}, "meant": {"_count": 1}, "actually": {"_count": 1}, "particularly": {"_count": 1}}, "we": {"_count": 5, "need": {"_count": 2}, "really": {"_count": 3}}, "drop": {"_count": 1, "my": {"_count": 1}}, "yer": {"_count": 1, "doin": {"_count": 1}}, "now": {"_count": 7, "": {"_count": 7}}, "interests": {"_count": 1, "me": {"_count": 1}}, "exactly": {"_count": 5, "had": {"_count": 1}, "are": {"_count": 3}, "": {"_count": 1}}, "use": {"_count": 2, "is": {"_count": 2}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "didja": {"_count": 1, "call": {"_count": 1}}, "to": {"_count": 3, "Do": {"_count": 2}, "do": {"_count": 1}}, "powers": {"_count": 1, "does": {"_count": 1}}, "villains": {"_count": 1, "are": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "scared": {"_count": 2, "him": {"_count": 1}, "to": {"_count": 1}}, "with": {"_count": 9, "that": {"_count": 1}, "the": {"_count": 2}, "dueling": {"_count": 1}, "all": {"_count": 1}, "trying": {"_count": 1}, "your": {"_count": 2}, "Apparition": {"_count": 1}}, "defenses": {"_count": 1, "": {"_count": 1}}, "else": {"_count": 9, "mdear": {"_count": 1}, "could": {"_count": 3}, "did": {"_count": 3}, "": {"_count": 1}, "have": {"_count": 1}}, "gives": {"_count": 1, "you": {"_count": 1}}, "kept": {"_count": 2, "you": {"_count": 2}}, "Hes": {"_count": 1, "the": {"_count": 1}}, "little": {"_count": 1, "color": {"_count": 1}}, "live": {"_count": 1, "with": {"_count": 1}}, "amazes": {"_count": 1, "me": {"_count": 1}}, "how": {"_count": 2, "Hermione": {"_count": 1}, "dare": {"_count": 1}}, "what": {"_count": 4, "happened": {"_count": 1}, "are": {"_count": 1}, "does": {"_count": 1}, "do": {"_count": 1}}, "doyou": {"_count": 1, "reckon": {"_count": 1}}, "rules": {"_count": 2, "": {"_count": 1}, "are": {"_count": 1}}, "country": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "breeds": {"_count": 1, "you": {"_count": 1}}, "appeared": {"_count": 2, "to": {"_count": 2}}, "partners": {"_count": 1, "": {"_count": 1}}, "yeh": {"_count": 1, "done": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "made": {"_count": 4, "you": {"_count": 4}}, "map": {"_count": 1, "is": {"_count": 1}}, "madness": {"_count": 1, "is": {"_count": 1}}, "thing": {"_count": 1, "": {"_count": 1}}, "appened": {"_count": 1, "to": {"_count": 1}}, "cleaning": {"_count": 1, "": {"_count": 1}}, "private": {"_count": 1, "business": {"_count": 1}}, "people": {"_count": 1, "dont": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}, "horse": {"_count": 1, "things": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "night": {"_count": 1, "did": {"_count": 1}}, "for": {"_count": 3, "": {"_count": 3}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "prefers": {"_count": 1, "the": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "bedroom": {"_count": 1, "": {"_count": 1}}, "floors": {"_count": 1, "this": {"_count": 1}}, "other": {"_count": 1, "options": {"_count": 1}}, "number": {"_count": 1, "are": {"_count": 1}}, "deal": {"_count": 1, "": {"_count": 1}}, "kind": {"_count": 6, "of": {"_count": 6}}, "oh": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "thing": {"_count": 1}}, "Cornelius": {"_count": 1, "doesnt": {"_count": 1}}, "dont": {"_count": 2, "I": {"_count": 1}, "you": {"_count": 1}}, "say": {"_count": 2, "you": {"_count": 2}}, "involvement": {"_count": 1, "": {"_count": 1}}, "useful": {"_count": 1, "information": {"_count": 1}}, "gave": {"_count": 1, "it": {"_count": 1}}, "will": {"_count": 4, "you": {"_count": 1}, "happen": {"_count": 3}}, "happens": {"_count": 2, "if": {"_count": 2}}, "disturbed": {"_count": 1, "him": {"_count": 1}}, "went": {"_count": 1, "wrong": {"_count": 1}}, "schools": {"_count": 1, "this": {"_count": 1}}, "and": {"_count": 2, "get": {"_count": 1}, "theyre": {"_count": 1}}, "thoughts": {"_count": 1, "are": {"_count": 1}}, "Muggle": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "spluttered": {"_count": 1}}, "subject": {"_count": 1, "did": {"_count": 1}}, "ideas": {"_count": 1, "sir": {"_count": 1}}, "intrigued": {"_count": 1, "and": {"_count": 1}}, "musta": {"_count": 1, "happened": {"_count": 1}}, "request": {"_count": 2, "": {"_count": 1}, "could": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "danger": {"_count": 1, "you": {"_count": 1}}, "memories": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "really": {"_count": 1}}, "creature": {"_count": 1, "sat": {"_count": 1}}, "stabbing": {"_count": 1, "it": {"_count": 1}}, "like": {"_count": 1, "reading": {"_count": 1}}, "youve": {"_count": 2, "got": {"_count": 2}}, "good": {"_count": 1, "is": {"_count": 1}}, "brings": {"_count": 1, "you": {"_count": 1}}, "caused": {"_count": 1, "this": {"_count": 1}}, "its": {"_count": 1, "been": {"_count": 1}}, "choice": {"_count": 1, "did": {"_count": 1}}, "impostors": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "was": {"_count": 1}}, "first": {"_count": 1, "Harry": {"_count": 1}}, "tree": {"_count": 1, "": {"_count": 1}}, "hiding": {"_count": 1, "place": {"_count": 1}}, "message": {"_count": 1, "does": {"_count": 1}}, "chance": {"_count": 1, "did": {"_count": 1}}, "childish": {"_count": 1, "dream": {"_count": 1}}}, "been": {"_count": 3237, "thinking": {"_count": 22, "of": {"_count": 3}, "": {"_count": 4}, "himself": {"_count": 1}, "that": {"_count": 1}, "about": {"_count": 9}, "you": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "a": {"_count": 142, "trick": {"_count": 1}, "very": {"_count": 6}, "good": {"_count": 4}, "flying": {"_count": 1}, "baby": {"_count": 1}, "horrible": {"_count": 2}, "small": {"_count": 2}, "powerful": {"_count": 2}, "lot": {"_count": 7}, "mistake": {"_count": 4}, "bit": {"_count": 10}, "back": {"_count": 1}, "dream": {"_count": 2}, "narrow": {"_count": 1}, "large": {"_count": 1}, "player": {"_count": 1}, "happy": {"_count": 2}, "working": {"_count": 1}, "terrible": {"_count": 1}, "witch": {"_count": 1}, "real": {"_count": 3}, "source": {"_count": 2}, "long": {"_count": 2}, "breakout": {"_count": 1}, "death": {"_count": 1}, "month": {"_count": 2}, "while": {"_count": 2}, "dementor": {"_count": 1}, "corpse": {"_count": 1}, "loud": {"_count": 1}, "really": {"_count": 2}, "spare": {"_count": 1}, "teenage": {"_count": 1}, "snake": {"_count": 1}, "year": {"_count": 2}, "warning": {"_count": 1}, "massive": {"_count": 1}, "teeny": {"_count": 1}, "foul": {"_count": 1}, "Death": {"_count": 3}, "joke": {"_count": 1}, "school": {"_count": 1}, "relief": {"_count": 1}, "presentation": {"_count": 1}, "pleasure": {"_count": 1}, "magical": {"_count": 1}, "freak": {"_count": 1}, "prefect": {"_count": 1}, "singing": {"_count": 1}, "coincidence": {"_count": 1}, "reflection": {"_count": 1}, "previous": {"_count": 1}, "WHAT": {"_count": 1}, "laugh": {"_count": 1}, "waste": {"_count": 1}, "bad": {"_count": 1}, "cheerful": {"_count": 1}, "mass": {"_count": 3}, "moment": {"_count": 1}, "gloating": {"_count": 1}, "marked": {"_count": 1}, "hallucination": {"_count": 1}, "spot": {"_count": 1}, "murder": {"_count": 1}, "disaster": {"_count": 1}, "dry": {"_count": 1}, "fool": {"_count": 1}, "great": {"_count": 1}, "tough": {"_count": 1}, "member": {"_count": 1}, "catastrophe": {"_count": 1}, "girl": {"_count": 2}, "hex": {"_count": 1}, "budding": {"_count": 1}, "display": {"_count": 1}, "fun": {"_count": 1}, "bigger": {"_count": 2}, "certain": {"_count": 1}, "boy": {"_count": 1}, "Horcrux": {"_count": 1}, "journalist": {"_count": 1}, "little": {"_count": 1}, "booby": {"_count": 1}, "rare": {"_count": 1}, "fan": {"_count": 1}, "boat": {"_count": 1}, "chance": {"_count": 1}, "peephole": {"_count": 1}, "nightmarish": {"_count": 1}, "shortlived": {"_count": 1}, "cottage": {"_count": 1}, "second": {"_count": 1}, "comfort": {"_count": 1}, "Patronus": {"_count": 1}, "swap": {"_count": 1}, "grave": {"_count": 1}, "picnic": {"_count": 1}}, "Harvey": {"_count": 1, "": {"_count": 1}}, "hugged": {"_count": 1, "by": {"_count": 1}}, "called": {"_count": 6, "a": {"_count": 1}, "forward": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 1}, "unhealthy": {"_count": 2}}, "put": {"_count": 10, "to": {"_count": 1}, "in": {"_count": 2}, "up": {"_count": 4}, "into": {"_count": 2}, "under": {"_count": 1}}, "behaving": {"_count": 1, "very": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "acting": {"_count": 4, "oddly": {"_count": 1}, "very": {"_count": 1}, "under": {"_count": 1}, "upon": {"_count": 1}}, "phoning": {"_count": 1, "in": {"_count": 1}}, "celebrating": {"_count": 2, "Bonfire": {"_count": 1}, "": {"_count": 1}}, "drifting": {"_count": 1, "into": {"_count": 1}}, "watching": {"_count": 12, "appeared": {"_count": 1}, "them": {"_count": 2}, "him": {"_count": 3}, "Harry": {"_count": 2}, "the": {"_count": 1}, "these": {"_count": 1}, "Hermione": {"_count": 1}, "you": {"_count": 1}}, "seen": {"_count": 14, "on": {"_count": 1}, "you": {"_count": 1}, "since": {"_count": 3}, "for": {"_count": 3}, "in": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "then": {"_count": 1}, "there": {"_count": 1}, "running": {"_count": 1}}, "broken": {"_count": 5, "at": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "sitting": {"_count": 14, "on": {"_count": 3}, "with": {"_count": 1}, "crying": {"_count": 1}, "in": {"_count": 3}, "at": {"_count": 1}, "a": {"_count": 1}, "alone": {"_count": 1}, "here": {"_count": 1}, "so": {"_count": 1}, "rose": {"_count": 1}}, "trying": {"_count": 35, "to": {"_count": 31}, "": {"_count": 2}, "with": {"_count": 1}, "Harry": {"_count": 1}}, "waiting": {"_count": 20, "on": {"_count": 1}, "for": {"_count": 15}, "to": {"_count": 2}, "all": {"_count": 1}, "": {"_count": 1}}, "on": {"_count": 26, "the": {"_count": 15}, "a": {"_count": 1}, "entering": {"_count": 1}, "his": {"_count": 4}, "first": {"_count": 1}, "their": {"_count": 1}, "an": {"_count": 1}, "Dumbledores": {"_count": 1}, "top": {"_count": 1}}, "lots": {"_count": 1, "of": {"_count": 1}}, "having": {"_count": 11, "": {"_count": 3}, "a": {"_count": 4}, "him": {"_count": 1}, "these": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "small": {"_count": 1, "and": {"_count": 1}}, "years": {"_count": 2, "since": {"_count": 1}, "": {"_count": 1}}, "able": {"_count": 57, "to": {"_count": 57}}, "at": {"_count": 15, "all": {"_count": 2}, "Hogwarts": {"_count": 5}, "it": {"_count": 1}, "home": {"_count": 1}, "school": {"_count": 2}, "your": {"_count": 1}, "the": {"_count": 2}, "sea": {"_count": 1}}, "before": {"_count": 8, "Aunt": {"_count": 1}, "the": {"_count": 2}, "expressly": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 2}}, "given": {"_count": 24, "a": {"_count": 4}, "to": {"_count": 2}, "special": {"_count": 1}, "by": {"_count": 2}, "over": {"_count": 1}, "for": {"_count": 1}, "another": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "top": {"_count": 1}, "prevented": {"_count": 1}, "lucky": {"_count": 1}, "it": {"_count": 1}, "an": {"_count": 1}, "and": {"_count": 1}, "every": {"_count": 1}, "permission": {"_count": 1}, "Reguluss": {"_count": 1}, "power": {"_count": 1}}, "chasing": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "climbing": {"_count": 1, "school": {"_count": 1}}, "surprised": {"_count": 5, "if": {"_count": 2}, "to": {"_count": 2}, "but": {"_count": 1}}, "to": {"_count": 31, "Brazil": {"_count": 1}, "school": {"_count": 1}, "London": {"_count": 1}, "with": {"_count": 1}, "one": {"_count": 1}, "several": {"_count": 1}, "an": {"_count": 1}, "back": {"_count": 1}, "see": {"_count": 5}, "make": {"_count": 2}, "tell": {"_count": 2}, "your": {"_count": 1}, "Azkaban": {"_count": 1}, "tea": {"_count": 1}, "look": {"_count": 1}, "Madam": {"_count": 1}, "Diagon": {"_count": 1}, "visit": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 3}, "much": {"_count": 1}, "try": {"_count": 1}, "him": {"_count": 1}}, "younger": {"_count": 1, "Harry": {"_count": 1}}, "accepted": {"_count": 2, "at": {"_count": 2}}, "canceled": {"_count": 5, "there": {"_count": 1}, "": {"_count": 2}, "Professor": {"_count": 1}, "as": {"_count": 1}}, "touched": {"_count": 4, "": {"_count": 2}, "by": {"_count": 1}, "for": {"_count": 1}}, "sick": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 18, "uncles": {"_count": 1}, "fathers": {"_count": 1}, "friend": {"_count": 1}, "own": {"_count": 1}, "body": {"_count": 1}, "suggestion": {"_count": 1}, "entire": {"_count": 1}, "very": {"_count": 1}, "last": {"_count": 1}, "mothers": {"_count": 1}, "most": {"_count": 1}, "Slughorn": {"_count": 1}, "favorite": {"_count": 1}, "cousin": {"_count": 1}, "companion": {"_count": 1}, "mother": {"_count": 1}, "ghost": {"_count": 1}, "what": {"_count": 1}}, "lying": {"_count": 8, "at": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 3}, "on": {"_count": 2}, "in": {"_count": 1}}, "pushed": {"_count": 5, "under": {"_count": 1}, "away": {"_count": 1}, "hard": {"_count": 1}, "Of": {"_count": 1}, "carelessly": {"_count": 1}}, "in": {"_count": 93, "the": {"_count": 22}, "his": {"_count": 4}, "on": {"_count": 3}, "here": {"_count": 6}, "a": {"_count": 7}, "": {"_count": 1}, "Slytherin": {"_count": 2}, "Herbology": {"_count": 1}, "touch": {"_count": 3}, "to": {"_count": 1}, "there": {"_count": 5}, "Azkaban": {"_count": 2}, "very": {"_count": 1}, "my": {"_count": 6}, "hiding": {"_count": 2}, "Flourish": {"_count": 1}, "weeks": {"_count": 1}, "loads": {"_count": 1}, "this": {"_count": 3}, "contact": {"_count": 2}, "years": {"_count": 2}, "use": {"_count": 1}, "Arithmancy": {"_count": 1}, "real": {"_count": 2}, "trouble": {"_count": 1}, "otherwise": {"_count": 1}, "fourteen": {"_count": 1}, "Grimmauld": {"_count": 1}, "her": {"_count": 1}, "negative": {"_count": 1}, "our": {"_count": 1}, "time": {"_count": 1}, "it": {"_count": 1}, "poor": {"_count": 1}, "plenty": {"_count": 1}, "terrible": {"_count": 1}, "life": {"_count": 1}}, "an": {"_count": 16, "easy": {"_count": 1}, "excellent": {"_count": 1}, "Animagus": {"_count": 1}, "old": {"_count": 1}, "absolute": {"_count": 1}, "Auror": {"_count": 1}, "accident": {"_count": 2}, "immediate": {"_count": 1}, "instant": {"_count": 1}, "armchair": {"_count": 1}, "almost": {"_count": 1}, "altogether": {"_count": 1}, "impostor": {"_count": 1}, "attempt": {"_count": 1}, "unimportant": {"_count": 1}}, "made": {"_count": 16, "of": {"_count": 1}, "for": {"_count": 1}, "by": {"_count": 6}, "to": {"_count": 1}, "champion": {"_count": 1}, "from": {"_count": 1}, "a": {"_count": 1}, "Gryffindor": {"_count": 1}, "against": {"_count": 1}, "though": {"_count": 1}, "Quidditch": {"_count": 1}}, "trained": {"_count": 1, "up": {"_count": 1}}, "wanting": {"_count": 8, "to": {"_count": 4}, "a": {"_count": 3}, "that": {"_count": 1}}, "turned": {"_count": 8, "into": {"_count": 1}, "inside": {"_count": 1}, "to": {"_count": 2}, "down": {"_count": 1}, "upside": {"_count": 1}, "on": {"_count": 1}, "over": {"_count": 1}}, "upset": {"_count": 3, "or": {"_count": 1}, "by": {"_count": 2}}, "down": {"_count": 8, "ever": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 3}}, "such": {"_count": 5, "a": {"_count": 5}}, "the": {"_count": 39, "same": {"_count": 4}, "one": {"_count": 3}, "happiest": {"_count": 1}, "victim": {"_count": 1}, "youngest": {"_count": 1}, "Potters": {"_count": 2}, "owner": {"_count": 1}, "finest": {"_count": 1}, "next": {"_count": 1}, "pain": {"_count": 1}, "day": {"_count": 1}, "end": {"_count": 1}, "most": {"_count": 1}, "first": {"_count": 2}, "sound": {"_count": 1}, "orphanage": {"_count": 1}, "snake": {"_count": 2}, "aftermath": {"_count": 1}, "subject": {"_count": 1}, "more": {"_count": 1}, "blatant": {"_count": 1}, "intended": {"_count": 1}, "two": {"_count": 1}, "worst": {"_count": 1}, "days": {"_count": 1}, "TTongueTying": {"_count": 1}, "place": {"_count": 2}, "greatest": {"_count": 1}, "champion": {"_count": 1}, "last": {"_count": 1}}, "warned": {"_count": 6, "beware": {"_count": 2}, "": {"_count": 1}, "was": {"_count": 1}, "not": {"_count": 1}, "there": {"_count": 1}}, "imagine": {"_count": 1, "being": {"_count": 1}}, "brought": {"_count": 13, "up": {"_count": 7}, "from": {"_count": 1}, "here": {"_count": 2}, "along": {"_count": 1}, "to": {"_count": 2}}, "wild": {"_count": 1, "to": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "really": {"_count": 13, "looking": {"_count": 2}, "worried": {"_count": 1}, "bad": {"_count": 1}, "expensive": {"_count": 1}, "busy": {"_count": 2}, "impressed": {"_count": 1}, "nice": {"_count": 1}, "brave": {"_count": 1}, "annoying": {"_count": 1}, "in": {"_count": 1}, "understanding": {"_count": 1}}, "singled": {"_count": 1, "out": {"_count": 1}}, "loaded": {"_count": 1, "into": {"_count": 1}}, "with": {"_count": 4, "the": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}, "their": {"_count": 1}}, "worrying": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "talking": {"_count": 23, "the": {"_count": 2}, "": {"_count": 1}, "of": {"_count": 1}, "about": {"_count": 5}, "in": {"_count": 4}, "to": {"_count": 6}, "late": {"_count": 1}, "as": {"_count": 1}, "cheerily": {"_count": 1}, "when": {"_count": 1}}, "asking": {"_count": 6, "around": {"_count": 1}, "Kingsley": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 1}, "Harrys": {"_count": 1}, "for": {"_count": 1}}, "all": {"_count": 7, "over": {"_count": 1}, "about": {"_count": 1}, "year": {"_count": 1}, "summer": {"_count": 1}, "right": {"_count": 1}, "these": {"_count": 1}, "week": {"_count": 1}}, "caught": {"_count": 17, "": {"_count": 7}, "and": {"_count": 1}, "twice": {"_count": 1}, "redhanded": {"_count": 1}, "do": {"_count": 1}, "out": {"_count": 1}, "by": {"_count": 1}, "selling": {"_count": 1}, "at": {"_count": 1}, "having": {"_count": 1}, "it": {"_count": 1}}, "hiding": {"_count": 11, "a": {"_count": 1}, "": {"_count": 1}, "her": {"_count": 1}, "from": {"_count": 3}, "ever": {"_count": 1}, "inside": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}, "stuff": {"_count": 1}}, "going": {"_count": 15, "on": {"_count": 8}, "there": {"_count": 1}, "at": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "anywhere": {"_count": 1}, "when": {"_count": 1}}, "knocked": {"_count": 14, "out": {"_count": 8}, "backward": {"_count": 1}, "silly": {"_count": 1}, "to": {"_count": 1}, "cold": {"_count": 1}, "sideways": {"_count": 1}, "aside": {"_count": 1}}, "bewitched": {"_count": 5, "": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 3}}, "up": {"_count": 16, "to": {"_count": 10}, "all": {"_count": 1}, "for": {"_count": 1}, "most": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "here": {"_count": 1}}, "fighting": {"_count": 5, "have": {"_count": 1}, "not": {"_count": 1}, "on": {"_count": 1}, "since": {"_count": 1}, "and": {"_count": 1}}, "more": {"_count": 18, "nervous": {"_count": 1}, "ashamed": {"_count": 1}, "shocked": {"_count": 1}, "welcome": {"_count": 1}, "delighted": {"_count": 1}, "different": {"_count": 3}, "insulted": {"_count": 1}, "than": {"_count": 2}, "dangerous": {"_count": 1}, "help": {"_count": 1}, "interesting": {"_count": 1}, "fanciable": {"_count": 1}, "dementor": {"_count": 1}, "mistaken": {"_count": 1}, "conspicuous": {"_count": 1}}, "last": {"_count": 2, "to": {"_count": 1}, "time": {"_count": 1}}, "chosen": {"_count": 3, "and": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}}, "allowed": {"_count": 6, "to": {"_count": 2}, "in": {"_count": 2}, "an": {"_count": 1}, "a": {"_count": 1}}, "asked": {"_count": 7, "by": {"_count": 2}, "to": {"_count": 2}, "such": {"_count": 1}, "if": {"_count": 1}, "for": {"_count": 1}}, "very": {"_count": 27, "old": {"_count": 1}, "pleased": {"_count": 1}, "taken": {"_count": 2}, "funny": {"_count": 1}, "successful": {"_count": 1}, "surprised": {"_count": 2}, "risky": {"_count": 1}, "much": {"_count": 1}, "cool": {"_count": 1}, "suspicious": {"_count": 1}, "good": {"_count": 1}, "lonely": {"_count": 1}, "vivid": {"_count": 1}, "drunk": {"_count": 1}, "brave": {"_count": 1}, "difficult": {"_count": 2}, "keen": {"_count": 1}, "dispirited": {"_count": 1}, "dull": {"_count": 1}, "pleasant": {"_count": 1}, "protective": {"_count": 1}, "annoyed": {"_count": 1}, "badly": {"_count": 1}, "valuable": {"_count": 1}}, "quite": {"_count": 9, "right": {"_count": 1}, "creepy": {"_count": 1}, "truthful": {"_count": 1}, "a": {"_count": 1}, "alarming": {"_count": 1}, "clear": {"_count": 2}, "convinced": {"_count": 1}, "": {"_count": 1}}, "looking": {"_count": 33, "forward": {"_count": 7}, "for": {"_count": 16}, "pale": {"_count": 1}, "at": {"_count": 2}, "dreadful": {"_count": 1}, "ill": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}, "after": {"_count": 1}, "in": {"_count": 1}, "over": {"_count": 1}}, "wrong": {"_count": 6, "": {"_count": 3}, "111": {"_count": 1}, "about": {"_count": 1}, "What": {"_count": 1}}, "drenched": {"_count": 1, "in": {"_count": 1}}, "working": {"_count": 18, "next": {"_count": 1}, "for": {"_count": 2}, "on": {"_count": 5}, "like": {"_count": 1}, "out": {"_count": 1}, "since": {"_count": 1}, "to": {"_count": 1}, "around": {"_count": 1}, "toward": {"_count": 1}, "it": {"_count": 1}, "very": {"_count": 1}, "with": {"_count": 1}, "against": {"_count": 1}}, "taken": {"_count": 21, "": {"_count": 3}, "out": {"_count": 2}, "away": {"_count": 3}, "by": {"_count": 2}, "off": {"_count": 1}, "back": {"_count": 1}, "at": {"_count": 1}, "from": {"_count": 2}, "and": {"_count": 1}, "unawares": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "emptied": {"_count": 3, "the": {"_count": 1}, "earlier": {"_count": 1}, "of": {"_count": 1}}, "happening": {"_count": 6, "while": {"_count": 1}, "": {"_count": 2}, "lately": {"_count": 1}, "regularly": {"_count": 1}, "inside": {"_count": 1}}, "what": {"_count": 4, "the": {"_count": 1}, "fifty": {"_count": 1}, "made": {"_count": 2}}, "too": {"_count": 12, "polite": {"_count": 1}, "far": {"_count": 1}, "busy": {"_count": 2}, "anxious": {"_count": 1}, "absorbed": {"_count": 1}, "late": {"_count": 1}, "much": {"_count": 1}, "long": {"_count": 1}, "many": {"_count": 1}, "foolish": {"_count": 1}, "shameful": {"_count": 1}}, "quick": {"_count": 3, "to": {"_count": 2}, "and": {"_count": 1}}, "doing": {"_count": 29, "it": {"_count": 2}, "his": {"_count": 1}, "something": {"_count": 1}, "with": {"_count": 1}, "before": {"_count": 1}, "some": {"_count": 1}, "in": {"_count": 2}, "several": {"_count": 1}, "O": {"_count": 1}, "while": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 5}, "for": {"_count": 2}, "wouldnt": {"_count": 1}, "out": {"_count": 1}, "all": {"_count": 1}, "to": {"_count": 1}, "do": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}, "Minister": {"_count": 1}, "their": {"_count": 1}}, "proud": {"_count": 5, "she": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 2}, "to": {"_count": 1}}, "out": {"_count": 5, "here": {"_count": 1}, "on": {"_count": 1}, "all": {"_count": 1}, "of": {"_count": 2}}, "past": {"_count": 1, "twice": {"_count": 1}}, "tugging": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 54, "?": {"_count": 18}, "!": {"_count": 3}, ".": {"_count": 33}}, "killed": {"_count": 13, "or": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 2}, "by": {"_count": 1}, "though": {"_count": 1}, "during": {"_count": 1}, "well": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}}, "moved": {"_count": 4, "from": {"_count": 1}, "against": {"_count": 1}, "it": {"_count": 1}, "elsewhere": {"_count": 1}}, "sent": {"_count": 14, "a": {"_count": 3}, "up": {"_count": 1}, "to": {"_count": 6}, "letters": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 1}}, "inside": {"_count": 11, "the": {"_count": 3}, "Filchs": {"_count": 1}, "North": {"_count": 1}, "Zonkos": {"_count": 1}, "Dumbledores": {"_count": 1}, "it": {"_count": 1}, "Bathildas": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}}, "dying": {"_count": 4, "to": {"_count": 4}}, "practicing": {"_count": 6, "": {"_count": 2}, "all": {"_count": 1}, "in": {"_count": 1}, "tonight": {"_count": 1}, "and": {"_count": 1}}, "making": {"_count": 6, "but": {"_count": 1}, "another": {"_count": 1}, "for": {"_count": 1}, "objects": {"_count": 1}, "snide": {"_count": 1}, "regular": {"_count": 1}}, "known": {"_count": 5, "to": {"_count": 4}, "of": {"_count": 1}}, "sobbing": {"_count": 1, "into": {"_count": 1}}, "even": {"_count": 2, "more": {"_count": 2}}, "through": {"_count": 13, "hundreds": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "here": {"_count": 1}, "enough": {"_count": 1}, "too": {"_count": 1}, "this": {"_count": 3}, "all": {"_count": 1}, "": {"_count": 2}}, "searching": {"_count": 3, "books": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "wondering": {"_count": 13, "for": {"_count": 3}, "when": {"_count": 1}, "whether": {"_count": 3}, "the": {"_count": 1}, "about": {"_count": 2}, "I": {"_count": 1}, "how": {"_count": 1}, "that": {"_count": 1}}, "Harrys": {"_count": 2, "best": {"_count": 1}, "and": {"_count": 1}}, "nagging": {"_count": 1, "at": {"_count": 1}}, "so": {"_count": 42, "busy": {"_count": 1}, "worried": {"_count": 3}, "stupid": {"_count": 3}, "distressed": {"_count": 1}, "crowded": {"_count": 1}, "horrible": {"_count": 1}, "serious": {"_count": 1}, "foolhardy": {"_count": 1}, "in": {"_count": 1}, "deeply": {"_count": 1}, "easy": {"_count": 1}, "sure": {"_count": 2}, "keen": {"_count": 3}, "compatible": {"_count": 1}, "pleased": {"_count": 3}, "interested": {"_count": 2}, "intent": {"_count": 1}, "long": {"_count": 1}, "calm": {"_count": 1}, "packed": {"_count": 1}, "thoroughly": {"_count": 1}, "convinced": {"_count": 1}, "clever": {"_count": 1}, "much": {"_count": 2}, "narrow": {"_count": 1}, "strong": {"_count": 1}, "important": {"_count": 1}, "heavily": {"_count": 1}, "many": {"_count": 1}, "brave": {"_count": 1}, "understanding": {"_count": 1}}, "close": {"_count": 3, "very": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 1}}, "overshadowed": {"_count": 1, "by": {"_count": 1}}, "driven": {"_count": 6, "mad": {"_count": 1}, "out": {"_count": 2}, "to": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}}, "stuck": {"_count": 6, "together": {"_count": 1}, "inside": {"_count": 1}, "up": {"_count": 1}, "beneath": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}}, "many": {"_count": 2, "reports": {"_count": 1}, "years": {"_count": 1}}, "secretly": {"_count": 1, "practicing": {"_count": 1}}, "brooding": {"_count": 1, "about": {"_count": 1}}, "keeping": {"_count": 12, "busy": {"_count": 2}, "guard": {"_count": 1}, "YouKnowWho": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "certain": {"_count": 1}, "him": {"_count": 1}, "Horace": {"_count": 1}, "his": {"_count": 1}, "watch": {"_count": 1}, "it": {"_count": 1}}, "braver": {"_count": 1, "than": {"_count": 1}}, "easy": {"_count": 8, "to": {"_count": 3}, "once": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "that": {"_count": 12, "the": {"_count": 1}, "night": {"_count": 1}, "obvious": {"_count": 1}, "one": {"_count": 1}, "Wizardkind": {"_count": 1}, "even": {"_count": 1}, "": {"_count": 1}, "Mrs": {"_count": 1}, "he": {"_count": 1}, "easy": {"_count": 1}, "difficult": {"_count": 1}, "day": {"_count": 1}}, "because": {"_count": 3, "Norbert": {"_count": 1}, "Voldemort": {"_count": 1}, "he": {"_count": 1}}, "playing": {"_count": 3, "tennis": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "worse": {"_count": 4, "": {"_count": 3}, "she": {"_count": 1}}, "longing": {"_count": 2, "to": {"_count": 2}}, "here": {"_count": 17, "and": {"_count": 1}, "nearly": {"_count": 1}, "all": {"_count": 2}, "to": {"_count": 1}, "Dobby": {"_count": 1}, "quicker": {"_count": 1}, "before": {"_count": 1}, "however": {"_count": 1}, "ever": {"_count": 1}, "for": {"_count": 3}, "in": {"_count": 1}, "he": {"_count": 1}, "three": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 18, "ages": {"_count": 1}, "the": {"_count": 6}, "you": {"_count": 3}, "Voldemort": {"_count": 2}, "a": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}, "Sirius": {"_count": 1}, "her": {"_count": 1}, "nothing": {"_count": 1}}, "hurt": {"_count": 5, "do": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}, "while": {"_count": 1}, "Bill": {"_count": 1}}, "thrashing": {"_count": 1, "around": {"_count": 1}}, "telling": {"_count": 16, "him": {"_count": 2}, "Dumbledore": {"_count": 3}, "us": {"_count": 2}, "you": {"_count": 3}, "its": {"_count": 1}, "the": {"_count": 3}, "people": {"_count": 1}, "everybody": {"_count": 1}}, "foretold": {"_count": 1, "": {"_count": 1}}, "read": {"_count": 2, "wrongly": {"_count": 1}, "it": {"_count": 1}}, "bothering": {"_count": 2, "him": {"_count": 2}}, "told": {"_count": 15, "where": {"_count": 2}, "to": {"_count": 4}, "he": {"_count": 1}, "that": {"_count": 3}, "not": {"_count": 1}, "what": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}, "everything": {"_count": 1}}, "bound": {"_count": 1, "tightly": {"_count": 1}}, "bad": {"_count": 1, "enough": {"_count": 1}}, "listening": {"_count": 10, "because": {"_count": 1}, "to": {"_count": 6}, "": {"_count": 1}, "and": {"_count": 1}, "Dumbledore": {"_count": 1}}, "muttering": {"_count": 2, "a": {"_count": 1}, "something": {"_count": 1}}, "those": {"_count": 1, "willing": {"_count": 1}}, "extremely": {"_count": 3, "worried": {"_count": 1}, "strange": {"_count": 1}, "unhappy": {"_count": 1}}, "destroyed": {"_count": 4, "": {"_count": 1}, "the": {"_count": 1}, "until": {"_count": 1}, "but": {"_count": 1}}, "loved": {"_count": 1, "so": {"_count": 1}}, "held": {"_count": 6, "up": {"_count": 2}, "back": {"_count": 1}, "for": {"_count": 2}, "in": {"_count": 1}}, "woken": {"_count": 1, "in": {"_count": 1}}, "treating": {"_count": 2, "him": {"_count": 1}, "your": {"_count": 1}}, "locked": {"_count": 8, "in": {"_count": 2}, "for": {"_count": 1}, "up": {"_count": 3}, "we": {"_count": 1}, "since": {"_count": 1}}, "left": {"_count": 9, "on": {"_count": 1}, "outside": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}, "behind": {"_count": 1}, "alone": {"_count": 1}, "in": {"_count": 2}, "unwanted": {"_count": 1}}, "high": {"_count": 1, "theyd": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 4, "absentmindedly": {"_count": 1}, "down": {"_count": 1}, "but": {"_count": 1}, "out": {"_count": 1}}, "born": {"_count": 2, "boy": {"_count": 1}, "and": {"_count": 1}}, "wait": {"_count": 1, "a": {"_count": 1}}, "writing": {"_count": 4, "to": {"_count": 2}, "in": {"_count": 1}, "": {"_count": 1}}, "stopping": {"_count": 1, "my": {"_count": 1}}, "answering": {"_count": 1, "my": {"_count": 1}}, "stupid": {"_count": 6, "to": {"_count": 1}, "never": {"_count": 1}, "not": {"_count": 1}, "or": {"_count": 1}, "enough": {"_count": 1}, "he": {"_count": 1}}, "sending": {"_count": 3, "a": {"_count": 1}, "instructions": {"_count": 1}, "in": {"_count": 1}}, "added": {"_count": 3, "here": {"_count": 1}, "for": {"_count": 1}, "by": {"_count": 1}}, "worried": {"_count": 2, "about": {"_count": 2}}, "fifty": {"_count": 1, "feet": {"_count": 1}}, "hard": {"_count": 6, "to": {"_count": 5}, "enough": {"_count": 1}}, "visited": {"_count": 2, "yet": {"_count": 1}, "in": {"_count": 1}}, "anywhere": {"_count": 2, "Gasping": {"_count": 1}, "near": {"_count": 1}}, "hit": {"_count": 8, "in": {"_count": 2}, "over": {"_count": 1}, "again": {"_count": 1}, "out": {"_count": 1}, "from": {"_count": 1}, "by": {"_count": 1}, "on": {"_count": 1}}, "magically": {"_count": 2, "expanded": {"_count": 1}, "destroyed": {"_count": 1}}, "stretched": {"_count": 1, "so": {"_count": 1}}, "plunged": {"_count": 1, "into": {"_count": 1}}, "this": {"_count": 6, "far": {"_count": 1}, "deep": {"_count": 1}, "crowded": {"_count": 1}, "clear": {"_count": 1}, "close": {"_count": 1}, "edition": {"_count": 1}}, "sacked": {"_count": 6, "": {"_count": 3}, "as": {"_count": 1}, "from": {"_count": 1}, "yet": {"_count": 1}}, "walloped": {"_count": 1, "in": {"_count": 1}}, "done": {"_count": 10, "to": {"_count": 1}, "": {"_count": 5}, "by": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "better": {"_count": 9, "if": {"_count": 1}, "": {"_count": 1}, "directed": {"_count": 1}, "protected": {"_count": 1}, "off": {"_count": 1}, "manners": {"_count": 1}, "said": {"_count": 2}, "much": {"_count": 1}}, "expelled": {"_count": 14, "for": {"_count": 1}, "Harry": {"_count": 1}, "from": {"_count": 3}, "said": {"_count": 1}, "": {"_count": 3}, "fifty": {"_count": 1}, "or": {"_count": 1}, "have": {"_count": 1}, "and": {"_count": 1}, "we": {"_count": 1}}, "punished": {"_count": 1, "enough": {"_count": 1}}, "showing": {"_count": 2, "Professor": {"_count": 1}, "Parvati": {"_count": 1}}, "transfigured": {"_count": 1, "or": {"_count": 1}}, "inching": {"_count": 1, "sneakily": {"_count": 1}}, "cornered": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "removed": {"_count": 4, "they": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}, "by": {"_count": 1}}, "unconscious": {"_count": 1, "in": {"_count": 1}}, "teaching": {"_count": 7, "us": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 2}, "much": {"_count": 1}, "Grawp": {"_count": 1}, "you": {"_count": 1}}, "admiring": {"_count": 1, "the": {"_count": 1}}, "giving": {"_count": 4, "out": {"_count": 1}, "her": {"_count": 1}, "generously": {"_count": 1}, "the": {"_count": 1}}, "feeding": {"_count": 3, "them": {"_count": 1}, "the": {"_count": 1}, "Buckbeak": {"_count": 1}}, "spying": {"_count": 5, "on": {"_count": 4}, "said": {"_count": 1}}, "cleaning": {"_count": 1, "all": {"_count": 1}}, "taunted": {"_count": 1, "for": {"_count": 1}}, "dropped": {"_count": 2, "from": {"_count": 1}, "too": {"_count": 1}}, "decorated": {"_count": 4, "with": {"_count": 3}, "overnight": {"_count": 1}}, "carved": {"_count": 2, "into": {"_count": 1}, "out": {"_count": 1}}, "lined": {"_count": 1, "with": {"_count": 1}}, "outoforder": {"_count": 1, "all": {"_count": 1}}, "daubed": {"_count": 1, "on": {"_count": 1}}, "recently": {"_count": 1, "stuffed": {"_count": 1}}, "Petrified": {"_count": 5, "said": {"_count": 1}, "": {"_count": 2}, "by": {"_count": 1}, "and": {"_count": 1}}, "led": {"_count": 1, "there": {"_count": 1}}, "Bill": {"_count": 1, "": {"_count": 1}}, "attacked": {"_count": 21, "as": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 7}, "by": {"_count": 9}, "Potter": {"_count": 1}, "again": {"_count": 1}, "mutilated": {"_count": 1}}, "speaking": {"_count": 1, "for": {"_count": 1}}, "obscured": {"_count": 1, "by": {"_count": 1}}, "searched": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}}, "saying": {"_count": 9, "youre": {"_count": 1}, "anything": {"_count": 1}, "about": {"_count": 1}, "it": {"_count": 2}, "he": {"_count": 1}, "a": {"_count": 1}, "so": {"_count": 1}, "youve": {"_count": 1}}, "holding": {"_count": 2, "your": {"_count": 1}, "me": {"_count": 1}}, "burned": {"_count": 4, "": {"_count": 2}, "away": {"_count": 1}, "and": {"_count": 1}}, "forced": {"_count": 14, "to": {"_count": 11}, "yet": {"_count": 1}, "through": {"_count": 1}, "into": {"_count": 1}}, "unable": {"_count": 6, "to": {"_count": 6}}, "flying": {"_count": 6, "in": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 1}, "have": {"_count": 1}, "for": {"_count": 1}, "so": {"_count": 1}}, "properly": {"_count": 1, "dry": {"_count": 1}}, "opened": {"_count": 4, "before": {"_count": 3}, "Harry": {"_count": 1}}, "blocked": {"_count": 3, "from": {"_count": 1}, "up": {"_count": 2}}, "splashed": {"_count": 1, "come": {"_count": 1}}, "pinned": {"_count": 3, "up": {"_count": 1}, "upon": {"_count": 1}, "to": {"_count": 1}}, "running": {"_count": 4, "as": {"_count": 1}, "": {"_count": 1}, "low": {"_count": 1}, "round": {"_count": 1}}, "only": {"_count": 3, "too": {"_count": 1}, "seven": {"_count": 1}, "a": {"_count": 1}}, "calling": {"_count": 1, "the": {"_count": 1}}, "blasted": {"_count": 3, "into": {"_count": 1}, "open": {"_count": 1}, "off": {"_count": 1}}, "feeling": {"_count": 6, "so": {"_count": 2}, "a": {"_count": 1}, "for": {"_count": 1}, "since": {"_count": 1}, "that": {"_count": 1}}, "confirmed": {"_count": 1, "": {"_count": 1}}, "extinguished": {"_count": 4, "by": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}}, "there": {"_count": 23, "": {"_count": 6}, "because": {"_count": 1}, "since": {"_count": 1}, "for": {"_count": 2}, "at": {"_count": 1}, "five": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 2}, "although": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "forever": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}}, "scared": {"_count": 2, "out": {"_count": 1}, "of": {"_count": 1}}, "nervousness": {"_count": 1, "into": {"_count": 1}}, "gazing": {"_count": 2, "at": {"_count": 1}, "up": {"_count": 1}}, "pigging": {"_count": 1, "out": {"_count": 1}}, "clipped": {"_count": 1, "out": {"_count": 1}}, "manning": {"_count": 1, "his": {"_count": 1}}, "shouting": {"_count": 3, "about": {"_count": 1}, "criticism": {"_count": 1}, "and": {"_count": 1}}, "Muggleborn": {"_count": 1, "said": {"_count": 1}}, "anything": {"_count": 4, "said": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 1}, "since": {"_count": 1}}, "no": {"_count": 11, "more": {"_count": 1}, "lasting": {"_count": 1}, "interruption": {"_count": 4}, "worse": {"_count": 1}, "secret": {"_count": 1}, "Chosen": {"_count": 1}, "body": {"_count": 1}, "word": {"_count": 1}}, "overcome": {"_count": 2, "with": {"_count": 1}, "by": {"_count": 1}}, "three": {"_count": 2, "attacks": {"_count": 1}, "days": {"_count": 1}}, "reading": {"_count": 9, "the": {"_count": 2}, "and": {"_count": 1}, "it": {"_count": 2}, "Rita": {"_count": 1}, "The": {"_count": 1}, "your": {"_count": 1}, "she": {"_count": 1}}, "lit": {"_count": 4, "and": {"_count": 1}, "in": {"_count": 1}, "behind": {"_count": 1}, "inside": {"_count": 1}}, "cooped": {"_count": 2, "up": {"_count": 2}}, "setting": {"_count": 2, "anything": {"_count": 1}, "a": {"_count": 1}}, "thrown": {"_count": 4, "everywhere": {"_count": 1}, "by": {"_count": 1}, "over": {"_count": 1}, "down": {"_count": 1}}, "pulled": {"_count": 6, "off": {"_count": 1}, "out": {"_count": 2}, "down": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 1}}, "urging": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "another": {"_count": 3, "attack": {"_count": 1}, "long": {"_count": 1}, "couple": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "appointed": {"_count": 2, "Head": {"_count": 1}, "by": {"_count": 1}}, "suspended": {"_count": 3, "by": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "work": {"_count": 1}}, "one": {"_count": 6, "hundred": {"_count": 1}, "of": {"_count": 5}}, "cleared": {"_count": 4, "of": {"_count": 2}, "": {"_count": 1}, "by": {"_count": 1}}, "my": {"_count": 4, "instinct": {"_count": 1}, "downfall": {"_count": 1}, "destruction": {"_count": 1}, "own": {"_count": 1}}, "electrified": {"_count": 1, "gave": {"_count": 1}}, "hardest": {"_count": 1, "on": {"_count": 1}}, "written": {"_count": 3, "in": {"_count": 1}, "on": {"_count": 1}, "or": {"_count": 1}}, "hearing": {"_count": 5, "that": {"_count": 2}, "explosions": {"_count": 1}, "some": {"_count": 1}, "about": {"_count": 1}}, "getting": {"_count": 12, "around": {"_count": 1}, "it": {"_count": 1}, "ready": {"_count": 2}, "really": {"_count": 1}, "in": {"_count": 1}, "clearer": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "along": {"_count": 1}, "so": {"_count": 1}, "them": {"_count": 1}}, "using": {"_count": 9, "the": {"_count": 2}, "it": {"_count": 2}, "as": {"_count": 1}, "sign": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}, "your": {"_count": 1}}, "controlling": {"_count": 1, "the": {"_count": 1}}, "snatched": {"_count": 3, "by": {"_count": 1}, "away": {"_count": 1}, "from": {"_count": 1}}, "bungled": {"_count": 1, "and": {"_count": 1}}, "almost": {"_count": 3, "completely": {"_count": 1}, "dozing": {"_count": 1}, "impossible": {"_count": 1}}, "hastily": {"_count": 1, "folded": {"_count": 1}}, "taking": {"_count": 9, "credit": {"_count": 1}, "good": {"_count": 1}, "a": {"_count": 2}, "all": {"_count": 1}, "some": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "orders": {"_count": 1}}, "faced": {"_count": 1, "with": {"_count": 1}}, "twenty": {"_count": 1, "feet": {"_count": 1}}, "you": {"_count": 4, "": {"_count": 1}, "know": {"_count": 1}, "would": {"_count": 1}, "will": {"_count": 1}}, "strangling": {"_count": 1, "roosters": {"_count": 1}}, "punctured": {"_count": 2, "by": {"_count": 1}, "and": {"_count": 1}}, "opening": {"_count": 1, "the": {"_count": 1}}, "welcome": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 5, "whod": {"_count": 1}, "came": {"_count": 1}, "said": {"_count": 1}, "who": {"_count": 2}}, "w": {"_count": 1, "writing": {"_count": 1}}, "hoodwinked": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "otherwise": {"_count": 1, "": {"_count": 1}}, "meeting": {"_count": 1, "her": {"_count": 1}}, "unsuccessful": {"_count": 1, "": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "thirteen": {"_count": 2, "years": {"_count": 2}}, "absent": {"_count": 1, "for": {"_count": 1}}, "gone": {"_count": 3, "this": {"_count": 1}, "ten": {"_count": 1}, "for": {"_count": 1}}, "stubbornly": {"_count": 1, "untidy": {"_count": 1}}, "murdered": {"_count": 5, "murdered": {"_count": 1}, "at": {"_count": 1}, "ever": {"_count": 1}, "": {"_count": 1}, "if": {"_count": 1}}, "complaining": {"_count": 2, "loudly": {"_count": 1}, "about": {"_count": 1}}, "set": {"_count": 10, "up": {"_count": 1}, "which": {"_count": 1}, "behind": {"_count": 1}, "free": {"_count": 1}, "in": {"_count": 1}, "upon": {"_count": 1}, "over": {"_count": 2}, "out": {"_count": 1}, "into": {"_count": 1}}, "upstairs": {"_count": 1, "with": {"_count": 1}}, "Aunt": {"_count": 1, "Petunias": {"_count": 1}}, "supplied": {"_count": 1, "with": {"_count": 1}}, "dumped": {"_count": 1, "on": {"_count": 1}}, "beaten": {"_count": 2, "often": {"_count": 1}, "": {"_count": 1}}, "traveling": {"_count": 4, "on": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "around": {"_count": 1}}, "criticized": {"_count": 1, "by": {"_count": 1}}, "wearing": {"_count": 7, "his": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 1}, "it": {"_count": 2}, "at": {"_count": 1}}, "modified": {"_count": 1, "": {"_count": 1}}, "honed": {"_count": 1, "to": {"_count": 1}}, "bitten": {"_count": 4, "five": {"_count": 1}, "": {"_count": 2}, "its": {"_count": 1}}, "bedlam": {"_count": 1, "": {"_count": 1}}, "dead": {"_count": 3, "before": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}}, "improving": {"_count": 1, "it": {"_count": 1}}, "lenient": {"_count": 1, "with": {"_count": 1}}, "afraid": {"_count": 6, "of": {"_count": 4}, "to": {"_count": 1}, "that": {"_count": 1}}, "outside": {"_count": 3, "waiting": {"_count": 1}, "the": {"_count": 1}, "Ministry": {"_count": 1}}, "darned": {"_count": 1, "in": {"_count": 1}}, "enemies": {"_count": 3, "ever": {"_count": 2}, "since": {"_count": 1}}, "Harry": {"_count": 5, "Ron": {"_count": 1}, "thought": {"_count": 1}, "opened": {"_count": 1}, "suggesting": {"_count": 1}, "heaved": {"_count": 1}}, "dreading": {"_count": 3, "he": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "if": {"_count": 4, "Potter": {"_count": 1}, "anything": {"_count": 1}, "Voldemort": {"_count": 1}, "Dumbledore": {"_count": 1}}, "injured": {"_count": 3, "": {"_count": 1}, "in": {"_count": 2}}, "drinking": {"_count": 3, "a": {"_count": 1}, "or": {"_count": 1}, "one": {"_count": 1}}, "fired": {"_count": 2, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "sighted": {"_count": 2, "": {"_count": 1}, "once": {"_count": 1}}, "was": {"_count": 2, "a": {"_count": 1}, "flickering": {"_count": 1}}, "bloodshed": {"_count": 1, "in": {"_count": 1}}, "much": {"_count": 6, "of": {"_count": 2}, "fun": {"_count": 1}, "past": {"_count": 1}, "talk": {"_count": 1}, "need": {"_count": 1}}, "slashed": {"_count": 2, "so": {"_count": 1}, "with": {"_count": 1}}, "torn": {"_count": 4, "away": {"_count": 1}, "out": {"_count": 1}, "asunder": {"_count": 1}, "from": {"_count": 1}}, "pbetween": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 3, "after": {"_count": 1}, "who": {"_count": 2}}, "strong": {"_count": 2, "winds": {"_count": 1}, "enough": {"_count": 1}}, "like": {"_count": 12, "this": {"_count": 2}, "a": {"_count": 1}, "Voldemort": {"_count": 1}, "that": {"_count": 2}, "when": {"_count": 1}, "": {"_count": 1}, "nor": {"_count": 1}, "Dudley": {"_count": 1}, "What": {"_count": 1}, "for": {"_count": 1}}, "floating": {"_count": 1, "next": {"_count": 1}}, "followed": {"_count": 2, "by": {"_count": 2}}, "run": {"_count": 2, "over": {"_count": 1}, "in": {"_count": 1}}, "ill": {"_count": 4, "": {"_count": 3}, "she": {"_count": 1}}, "growing": {"_count": 4, "restless": {"_count": 1}, "clearer": {"_count": 1}, "uneasy": {"_count": 1}, "stronger": {"_count": 1}}, "riding": {"_count": 1, "one": {"_count": 1}}, "innocent": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "warning": {"_count": 1, "against": {"_count": 1}}, "performed": {"_count": 1, "Black": {"_count": 1}}, "asleep": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "very": {"_count": 1}}, "enchanted": {"_count": 2, "each": {"_count": 1}, "the": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "criticizing": {"_count": 1, "her": {"_count": 1}}, "crystal": {"_count": 1, "gazing": {"_count": 1}}, "roving": {"_count": 1, "around": {"_count": 1}}, "tampered": {"_count": 2, "with": {"_count": 2}}, "subjected": {"_count": 2, "to": {"_count": 2}}, "combing": {"_count": 1, "the": {"_count": 1}}, "astounded": {"_count": 1, "if": {"_count": 1}}, "prejudiced": {"_count": 1, "against": {"_count": 1}}, "offcolor": {"_count": 1, "for": {"_count": 1}}, "sure": {"_count": 9, "for": {"_count": 1}, "would": {"_count": 1}, "he": {"_count": 2}, "to": {"_count": 1}, "Slughorn": {"_count": 1}, "that": {"_count": 3}}, "engulfed": {"_count": 1, "by": {"_count": 1}}, "standing": {"_count": 6, "on": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 2}, "alone": {"_count": 1}, "in": {"_count": 1}}, "eaten": {"_count": 1, "he": {"_count": 1}}, "expertly": {"_count": 1, "restored": {"_count": 1}}, "hired": {"_count": 1, "to": {"_count": 1}}, "right": {"_count": 13, "in": {"_count": 2}, "next": {"_count": 1}, "Professor": {"_count": 1}, "about": {"_count": 2}, "Madame": {"_count": 1}, "since": {"_count": 1}, "": {"_count": 3}, "to": {"_count": 1}, "through": {"_count": 1}}, "twelve": {"_count": 1, "inches": {"_count": 1}}, "facing": {"_count": 1, "five": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "imagining": {"_count": 2, "some": {"_count": 1}, "horrors": {"_count": 1}}, "carrying": {"_count": 3, "them": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}}, "apparent": {"_count": 1, "that": {"_count": 1}}, "Seeker": {"_count": 1, "": {"_count": 1}}, "spotted": {"_count": 3, "working": {"_count": 1}, "in": {"_count": 1}, "under": {"_count": 1}}, "noticeably": {"_count": 1, "subdued": {"_count": 1}}, "lifted": {"_count": 1, "and": {"_count": 1}}, "chained": {"_count": 1, "these": {"_count": 1}}, "her": {"_count": 3, "idea": {"_count": 1}, "attitude": {"_count": 1}, "fault": {"_count": 1}}, "rummaging": {"_count": 1, "in": {"_count": 1}}, "ripped": {"_count": 3, "off": {"_count": 1}, "up": {"_count": 1}, "back": {"_count": 1}}, "shining": {"_count": 1, "out": {"_count": 1}}, "covering": {"_count": 1, "up": {"_count": 1}}, "Siriuss": {"_count": 1, "friend": {"_count": 1}}, "helping": {"_count": 8, "Black": {"_count": 1}, "Sirius": {"_count": 2}, "him": {"_count": 1}, "me": {"_count": 1}, "us": {"_count": 1}, "too": {"_count": 1}, "Muggleborns": {"_count": 1}}, "silent": {"_count": 1, "for": {"_count": 1}}, "battling": {"_count": 1, "with": {"_count": 1}}, "shunned": {"_count": 1, "all": {"_count": 1}}, "impossible": {"_count": 2, "to": {"_count": 2}}, "alone": {"_count": 7, "with": {"_count": 2}, "": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 1}, "together": {"_count": 1}, "for": {"_count": 1}}, "well": {"_count": 2, "served": {"_count": 1}, "kept": {"_count": 1}}, "losing": {"_count": 1, "weight": {"_count": 1}}, "cringing": {"_count": 1, "and": {"_count": 1}}, "sleeping": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "living": {"_count": 5, "in": {"_count": 1}, "on": {"_count": 1}, "off": {"_count": 1}, "among": {"_count": 1}, "rough": {"_count": 1}}, "part": {"_count": 2, "of": {"_count": 2}}, "eyes": {"_count": 1, "there": {"_count": 1}}, "visiting": {"_count": 2, "Hogsmeade": {"_count": 1}, "": {"_count": 1}}, "foolish": {"_count": 1, "": {"_count": 1}}, "heard": {"_count": 1, "in": {"_count": 1}}, "turning": {"_count": 1, "it": {"_count": 1}}, "stolen": {"_count": 6, "do": {"_count": 1}, "from": {"_count": 1}, "by": {"_count": 2}, "": {"_count": 1}, "It": {"_count": 1}}, "seeing": {"_count": 2, "things": {"_count": 1}, "in": {"_count": 1}}, "highly": {"_count": 2, "embarrassing": {"_count": 1}, "disappointed": {"_count": 1}}, "poring": {"_count": 2, "over": {"_count": 2}}, "outwitted": {"_count": 1, "by": {"_count": 1}}, "picked": {"_count": 1, "over": {"_count": 1}}, "embroidered": {"_count": 1, "in": {"_count": 1}}, "most": {"_count": 4, "unpopular": {"_count": 1}, "reluctant": {"_count": 1}, "upset": {"_count": 1}, "successful": {"_count": 1}}, "rich": {"_count": 1, "snobbish": {"_count": 1}}, "arrested": {"_count": 5, "": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}, "already": {"_count": 1}}, "poisoned": {"_count": 3, "stabbed": {"_count": 1}, "but": {"_count": 1}, "spread": {"_count": 1}}, "sputtering": {"_count": 1, "incoherently": {"_count": 1}}, "dreaming": {"_count": 7, "about": {"_count": 5}, "of": {"_count": 1}, "": {"_count": 1}}, "two": {"_count": 3, "people": {"_count": 1}, "hundred": {"_count": 1}, "years": {"_count": 1}}, "plotting": {"_count": 2, "to": {"_count": 1}, "against": {"_count": 1}}, "pierced": {"_count": 1, "by": {"_count": 1}}, "gaining": {"_count": 1, "power": {"_count": 1}}, "reduced": {"_count": 3, "to": {"_count": 3}}, "enough": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "convicted": {"_count": 3, "had": {"_count": 1}, "for": {"_count": 1}, "of": {"_count": 1}}, "committed": {"_count": 1, "by": {"_count": 1}}, "haunting": {"_count": 1, "him": {"_count": 1}}, "doubly": {"_count": 1, "hard": {"_count": 1}}, "of": {"_count": 4, "some": {"_count": 1}, "assistance": {"_count": 1}, "how": {"_count": 1}, "holly": {"_count": 1}}, "back": {"_count": 3, "at": {"_count": 1}, "two": {"_count": 1}, "first": {"_count": 1}}, "delivered": {"_count": 3, "not": {"_count": 1}, "in": {"_count": 1}, "by": {"_count": 1}}, "taped": {"_count": 1, "to": {"_count": 1}}, "introduced": {"_count": 2, "but": {"_count": 1}, "to": {"_count": 1}}, "threatening": {"_count": 1, "to": {"_count": 1}}, "lurking": {"_count": 3, "behind": {"_count": 1}, "unnoticed": {"_count": 1}, "in": {"_count": 1}}, "some": {"_count": 4, "kind": {"_count": 1}, "sort": {"_count": 1}, "funny": {"_count": 1}, "more": {"_count": 1}}, "burning": {"_count": 3, "for": {"_count": 2}, "inside": {"_count": 1}}, "Head": {"_count": 2, "Boy": {"_count": 1}, "of": {"_count": 1}}, "inventing": {"_count": 1, "all": {"_count": 1}}, "increasing": {"_count": 1, "at": {"_count": 1}}, "squeezed": {"_count": 1, "into": {"_count": 1}}, "about": {"_count": 8, "to": {"_count": 6}, "being": {"_count": 1}, "": {"_count": 1}}, "tipped": {"_count": 1, "back": {"_count": 1}}, "missing": {"_count": 1, "for": {"_count": 1}}, "shunted": {"_count": 1, "from": {"_count": 1}}, "Apparating": {"_count": 1, "downstairs": {"_count": 1}}, "suddenly": {"_count": 1, "jerked": {"_count": 1}}, "camping": {"_count": 1, "in": {"_count": 1}}, "bedecked": {"_count": 1, "with": {"_count": 1}}, "signed": {"_count": 1, "to": {"_count": 1}}, "ages": {"_count": 1, "said": {"_count": 1}}, "nothing": {"_count": 5, "": {"_count": 1}, "to": {"_count": 1}, "nothing": {"_count": 1}, "were": {"_count": 1}, "more": {"_count": 1}}, "nicelooking": {"_count": 1, "if": {"_count": 1}}, "fouled": {"_count": 1, "now": {"_count": 1}}, "letting": {"_count": 1, "me": {"_count": 1}}, "gambling": {"_count": 1, "Mr": {"_count": 1}}, "struggling": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "discovered": {"_count": 6, "at": {"_count": 1}, "holding": {"_count": 1}, "within": {"_count": 1}, "pretending": {"_count": 1}, "in": {"_count": 2}}, "Barty": {"_count": 1, "": {"_count": 1}}, "busy": {"_count": 6, "Ludo": {"_count": 1}, "": {"_count": 1}, "preventing": {"_count": 1}, "with": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 1}}, "stunned": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "or": {"_count": 1, "how": {"_count": 1}}, "pleased": {"_count": 1, "to": {"_count": 1}}, "involved": {"_count": 5, "with": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 2}}, "any": {"_count": 8, "post": {"_count": 1}, "sign": {"_count": 1}, "suspicious": {"_count": 1}, "excuse": {"_count": 1}, "color": {"_count": 1}, "smugger": {"_count": 1}, "more": {"_count": 1}, "of": {"_count": 1}}, "putting": {"_count": 5, "out": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}}, "ferreting": {"_count": 1, "around": {"_count": 1}}, "over": {"_count": 2, "a": {"_count": 1}, "and": {"_count": 1}}, "present": {"_count": 4, "at": {"_count": 2}, "a": {"_count": 1}, "": {"_count": 1}}, "Professor": {"_count": 2, "Lupin": {"_count": 1}, "": {"_count": 1}}, "demolished": {"_count": 2, "and": {"_count": 1}, "many": {"_count": 1}}, "extended": {"_count": 1, "to": {"_count": 1}}, "several": {"_count": 1, "attempts": {"_count": 1}}, "genuine": {"_count": 1, "when": {"_count": 1}}, "hanging": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "allpowerful": {"_count": 1, "": {"_count": 1}}, "screaming": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}}, "unblemished": {"_count": 1, "and": {"_count": 1}}, "picturing": {"_count": 1, "his": {"_count": 1}}, "filled": {"_count": 3, "with": {"_count": 2}, "": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "researching": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "scrawled": {"_count": 1, "in": {"_count": 1}}, "less": {"_count": 5, "preoccupied": {"_count": 1}, "fine": {"_count": 1}, "noisy": {"_count": 1}, "interested": {"_count": 1}, "pleased": {"_count": 1}}, "capable": {"_count": 1, "of": {"_count": 1}}, "erected": {"_count": 3, "at": {"_count": 1}, "its": {"_count": 1}, "outside": {"_count": 1}}, "scrubbed": {"_count": 1, "much": {"_count": 1}}, "wasted": {"_count": 2, "however": {"_count": 1}, "on": {"_count": 1}}, "badgering": {"_count": 1, "Harry": {"_count": 1}}, "instructed": {"_count": 2, "pulled": {"_count": 1}, "to": {"_count": 1}}, "focused": {"_count": 2, "completely": {"_count": 1}, "entirely": {"_count": 1}}, "wiped": {"_count": 3, "clean": {"_count": 1}, "of": {"_count": 1}, "off": {"_count": 1}}, "examined": {"_count": 1, "by": {"_count": 1}}, "entirely": {"_count": 1, "unremarkable": {"_count": 1}}, "full": {"_count": 3, "to": {"_count": 1}, "of": {"_count": 2}}, "placed": {"_count": 8, "in": {"_count": 2}, "endtoend": {"_count": 1}, "he": {"_count": 1}, "on": {"_count": 1}, "upon": {"_count": 3}}, "selected": {"_count": 3, "by": {"_count": 1}, "as": {"_count": 1}, "had": {"_count": 1}}, "traced": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "me": {"_count": 4, "": {"_count": 1}, "could": {"_count": 1}, "it": {"_count": 1}, "said": {"_count": 1}}, "parked": {"_count": 1, "two": {"_count": 1}}, "blushing": {"_count": 1, "before": {"_count": 1}}, "crossing": {"_count": 2, "lines": {"_count": 2}}, "oping": {"_count": 1, "to": {"_count": 1}}, "ransacked": {"_count": 1, "": {"_count": 1}}, "killing": {"_count": 1, "one": {"_count": 1}}, "during": {"_count": 1, "those": {"_count": 1}}, "desperate": {"_count": 2, "to": {"_count": 2}}, "seventeen": {"_count": 1, "hands": {"_count": 1}}, "used": {"_count": 6, "to": {"_count": 3}, "in": {"_count": 1}, "as": {"_count": 1}, "against": {"_count": 1}}, "leading": {"_count": 1, "up": {"_count": 1}}, "squashed": {"_count": 1, "into": {"_count": 1}}, "mentioned": {"_count": 1, "at": {"_count": 1}}, "crying": {"_count": 3, "my": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "leaning": {"_count": 1, "low": {"_count": 1}}, "gaunt": {"_count": 1, "and": {"_count": 1}}, "happy": {"_count": 5, "": {"_count": 2}, "with": {"_count": 2}, "to": {"_count": 1}}, "quoting": {"_count": 1, "Rita": {"_count": 1}}, "hoping": {"_count": 8, "for": {"_count": 4}, "and": {"_count": 1}, "to": {"_count": 3}}, "plastered": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "focusing": {"_count": 1, "so": {"_count": 1}}, "successful": {"_count": 1, "too": {"_count": 1}}, "magicked": {"_count": 1, "there": {"_count": 1}}, "released": {"_count": 1, "exactly": {"_count": 1}}, "had": {"_count": 2, "he": {"_count": 2}}, "clutching": {"_count": 1, "it": {"_count": 1}}, "immeasurably": {"_count": 1, "worse": {"_count": 1}}, "exercised": {"_count": 1, "out": {"_count": 1}}, "predicting": {"_count": 1, "their": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "dismissed": {"_count": 1, "to": {"_count": 1}}, "freed": {"_count": 1, "too": {"_count": 1}}, "changing": {"_count": 2, "into": {"_count": 1}, "his": {"_count": 1}}, "shut": {"_count": 2, "away": {"_count": 2}}, "kind": {"_count": 1, "enough": {"_count": 1}}, "friends": {"_count": 2, "since": {"_count": 1}, "with": {"_count": 1}}, "chatting": {"_count": 2, "with": {"_count": 1}, "about": {"_count": 1}}, "attached": {"_count": 1, "to": {"_count": 1}}, "writhing": {"_count": 1, "like": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "changed": {"_count": 2, "the": {"_count": 1}, "then": {"_count": 1}}, "transformed": {"_count": 1, "into": {"_count": 1}}, "conjured": {"_count": 2, "there": {"_count": 1}, "and": {"_count": 1}}, "covered": {"_count": 2, "in": {"_count": 2}}, "promoted": {"_count": 3, "Percy": {"_count": 1}, "": {"_count": 2}}, "announcing": {"_count": 1, "his": {"_count": 1}}, "entrusted": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "consumed": {"_count": 1, "Dumbledore": {"_count": 1}}, "artfully": {"_count": 1, "ripped": {"_count": 1}}, "coming": {"_count": 3, "up": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "enormous": {"_count": 1, "fun": {"_count": 1}}, "possible": {"_count": 1, "he": {"_count": 1}}, "lately": {"_count": 1, "many": {"_count": 1}}, "snapped": {"_count": 1, "off": {"_count": 1}}, "bravery": {"_count": 1, "": {"_count": 1}}, "Cedrics": {"_count": 4, "plan": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "girlfriend": {"_count": 1}}, "stealing": {"_count": 6, "": {"_count": 1}, "from": {"_count": 1}, "the": {"_count": 1}, "glances": {"_count": 1}, "Black": {"_count": 1}, "shining": {"_count": 1}}, "recounting": {"_count": 1, "his": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "continuing": {"_count": 1, "her": {"_count": 1}}, "pressed": {"_count": 1, "over": {"_count": 1}}, "first": {"_count": 1, "back": {"_count": 1}}, "teasing": {"_count": 1, "her": {"_count": 1}}, "toying": {"_count": 1, "with": {"_count": 1}}, "mixing": {"_count": 1, "up": {"_count": 1}}, "avoiding": {"_count": 3, "me": {"_count": 2}, "him": {"_count": 1}}, "when": {"_count": 5, "he": {"_count": 4}, "I": {"_count": 1}}, "good": {"_count": 2, "in": {"_count": 1}, "said": {"_count": 1}}, "why": {"_count": 2, "Crouch": {"_count": 1}, "Dumbledore": {"_count": 1}}, "fascinated": {"_count": 1, "by": {"_count": 1}}, "judging": {"_count": 1, "the": {"_count": 1}}, "cut": {"_count": 3, "out": {"_count": 1}, "off": {"_count": 1}, "into": {"_count": 1}}, "building": {"_count": 1, "long": {"_count": 1}}, "conversing": {"_count": 1, "wildly": {"_count": 1}}, "Crouch": {"_count": 1, "said": {"_count": 1}}, "biding": {"_count": 1, "their": {"_count": 1}}, "Stunned": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "enameled": {"_count": 1, "": {"_count": 1}}, "real": {"_count": 1, "": {"_count": 1}}, "denied": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 3, "vivid": {"_count": 1}, "miserable": {"_count": 1}, "Harry": {"_count": 1}}, "repaired": {"_count": 2, "somebody": {"_count": 1}, "": {"_count": 1}}, "closed": {"_count": 1, "properly": {"_count": 1}}, "vouched": {"_count": 1, "for": {"_count": 1}}, "dim": {"_count": 1, "Id": {"_count": 1}}, "accused": {"_count": 1, "of": {"_count": 1}}, "furious": {"_count": 2, "he": {"_count": 1}, "with": {"_count": 1}}, "dragged": {"_count": 2, "from": {"_count": 1}, "up": {"_count": 1}}, "considered": {"_count": 1, "a": {"_count": 1}}, "angry": {"_count": 3, "ever": {"_count": 1}, "its": {"_count": 1}, "at": {"_count": 1}}, "planted": {"_count": 1, "after": {"_count": 1}}, "hauled": {"_count": 1, "in": {"_count": 1}}, "under": {"_count": 3, "a": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}}, "designed": {"_count": 1, "to": {"_count": 1}}, "hurrying": {"_count": 1, "along": {"_count": 1}}, "briefly": {"_count": 1, "united": {"_count": 1}}, "encrusted": {"_count": 1, "with": {"_count": 1}}, "stabbed": {"_count": 1, "with": {"_count": 1}}, "Voldemort": {"_count": 1, "continued": {"_count": 1}}, "rumored": {"_count": 1, "I": {"_count": 1}}, "stronger": {"_count": 1, "than": {"_count": 1}}, "taught": {"_count": 3, "how": {"_count": 1}, "to": {"_count": 2}}, "then": {"_count": 3, "but": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "saw": {"_count": 1, "Albus": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "cutting": {"_count": 1, "it": {"_count": 1}}, "found": {"_count": 5, "and": {"_count": 1}, "in": {"_count": 1}, "dead": {"_count": 2}, "I": {"_count": 1}}, "responsible": {"_count": 1, "for": {"_count": 1}}, "restored": {"_count": 1, "to": {"_count": 1}}, "experiencing": {"_count": 2, "in": {"_count": 1}, "his": {"_count": 1}}, "increased": {"_count": 1, "by": {"_count": 1}}, "their": {"_count": 3, "spy": {"_count": 1}, "teacher": {"_count": 1}, "one": {"_count": 1}}, "checking": {"_count": 4, "every": {"_count": 2}, "whether": {"_count": 1}, "the": {"_count": 1}}, "buzzing": {"_count": 1, "around": {"_count": 1}}, "banned": {"_count": 3, "due": {"_count": 1}, "there": {"_count": 1}, "from": {"_count": 1}}, "split": {"_count": 1, "in": {"_count": 1}}, "near": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "dashed": {"_count": 1, "": {"_count": 1}}, "tied": {"_count": 1, "to": {"_count": 1}}, "beating": {"_count": 3, "up": {"_count": 2}, "his": {"_count": 1}}, "\u2018Big": {"_count": 1, "D": {"_count": 1}}, "doused": {"_count": 1, "in": {"_count": 1}}, "resisting": {"_count": 1, "as": {"_count": 1}}, "cleaved": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "following": {"_count": 3, "me": {"_count": 1}, "your": {"_count": 1}, "Malfoy": {"_count": 1}}, "mugged": {"_count": 1, "have": {"_count": 1}}, "rotten": {"_count": 1, "from": {"_count": 1}}, "irritable": {"_count": 1, "with": {"_count": 1}}, "severe": {"_count": 1, "enough": {"_count": 1}}, "shortlisted": {"_count": 1, "for": {"_count": 1}}, "ushered": {"_count": 1, "onstage": {"_count": 1}}, "fantasizing": {"_count": 1, "about": {"_count": 1}}, "together": {"_count": 1, "without": {"_count": 1}}, "decontaminating": {"_count": 1, "this": {"_count": 1}}, "empty": {"_count": 2, "for": {"_count": 1}, "as": {"_count": 1}}, "breeding": {"_count": 1, "in": {"_count": 1}}, "Imperturbed": {"_count": 1, "": {"_count": 1}}, "flicking": {"_count": 1, "Dungbombs": {"_count": 1}}, "awful": {"_count": 1, "said": {"_count": 1}}, "offered": {"_count": 4, "a": {"_count": 1}, "this": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}}, "storming": {"_count": 1, "round": {"_count": 1}}, "Kreacher": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "crammed": {"_count": 2, "into": {"_count": 1}, "inside": {"_count": 1}}, "lousy": {"_count": 1, "said": {"_count": 1}}, "minutely": {"_count": 1, "examining": {"_count": 1}}, "seconds": {"_count": 2, "before": {"_count": 2}}, "meaning": {"_count": 2, "to": {"_count": 2}}, "denying": {"_count": 1, "them": {"_count": 1}}, "Dudleys": {"_count": 1, "": {"_count": 1}}, "sleepily": {"_count": 1, "relaxed": {"_count": 1}}, "trapped": {"_count": 2, "in": {"_count": 1}, "inside": {"_count": 1}}, "happen": {"_count": 1, "Hang": {"_count": 1}}, "rather": {"_count": 3, "difficult": {"_count": 1}, "disrupted": {"_count": 1}, "quiet": {"_count": 1}}, "obsessing": {"_count": 1, "him": {"_count": 1}}, "voted": {"_count": 1, "out": {"_count": 1}}, "said": {"_count": 4, "downstairs": {"_count": 1}, "Snape": {"_count": 1}, "Harry": {"_count": 1}, "aloud": {"_count": 1}}, "triggered": {"_count": 1, "the": {"_count": 1}}, "spraying": {"_count": 1, "only": {"_count": 1}}, "developing": {"_count": 3, "them": {"_count": 1}, "I": {"_count": 1}, "some": {"_count": 1}}, "rushed": {"_count": 1, "out": {"_count": 1}}, "devoted": {"_count": 1, "to": {"_count": 1}}, "dueling": {"_count": 1, "said": {"_count": 1}}, "awarded": {"_count": 2, "to": {"_count": 1}, "full": {"_count": 1}}, "catastrophic": {"_count": 1, "": {"_count": 1}}, "frowning": {"_count": 1, "now": {"_count": 1}}, "closely": {"_count": 1, "monitored": {"_count": 1}}, "expecting": {"_count": 9, "a": {"_count": 1}, "it": {"_count": 4}, "to": {"_count": 1}, "him": {"_count": 1}, "an": {"_count": 1}, "touched": {"_count": 1}}, "plainer": {"_count": 4, "that": {"_count": 4}}, "successfully": {"_count": 1, "proven": {"_count": 1}}, "charged": {"_count": 1, "with": {"_count": 1}}, "kissed": {"_count": 2, "": {"_count": 1}, "good": {"_count": 1}}, "somewhat": {"_count": 1, "dented": {"_count": 1}}, "six": {"_count": 1, "Sickles": {"_count": 1}}, "tortured": {"_count": 4, "into": {"_count": 2}, "and": {"_count": 2}}, "great": {"_count": 3, "meeting": {"_count": 1}, "about": {"_count": 1}, "said": {"_count": 1}}, "captioned": {"_count": 1, "": {"_count": 1}}, "believed": {"_count": 1, "guilty": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "relying": {"_count": 1, "on": {"_count": 1}}, "Hagrids": {"_count": 1, "": {"_count": 1}}, "united": {"_count": 1, "As": {"_count": 1}}, "guilty": {"_count": 2, "of": {"_count": 2}}, "time": {"_count": 1, "last": {"_count": 1}}, "bending": {"_count": 1, "over": {"_count": 1}}, "which": {"_count": 1, "could": {"_count": 1}}, "mildly": {"_count": 1, "interesting": {"_count": 1}}, "Chos": {"_count": 1, "boyfriend": {"_count": 1}}, "fair": {"_count": 1, "to": {"_count": 1}}, "absolute": {"_count": 1, "from": {"_count": 1}}, "exposed": {"_count": 1, "to": {"_count": 1}}, "complex": {"_count": 1, "inappropriate": {"_count": 1}}, "frightened": {"_count": 1, "into": {"_count": 1}}, "bubbling": {"_count": 1, "just": {"_count": 1}}, "informed": {"_count": 2, "that": {"_count": 1}, "by": {"_count": 1}}, "interesting": {"_count": 1, "enough": {"_count": 1}}, "messing": {"_count": 2, "with": {"_count": 1}, "about": {"_count": 1}}, "guffawing": {"_count": 1, "at": {"_count": 1}}, "packed": {"_count": 1, "with": {"_count": 1}}, "draped": {"_count": 3, "in": {"_count": 2}, "with": {"_count": 1}}, "slightly": {"_count": 2, "redder": {"_count": 1}, "worried": {"_count": 1}}, "fast": {"_count": 1, "asleep": {"_count": 1}}, "honest": {"_count": 1, "with": {"_count": 1}}, "spending": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "advised": {"_count": 1, "to": {"_count": 1}}, "hurting": {"_count": 3, "on": {"_count": 1}, "you": {"_count": 1}, "at": {"_count": 1}}, "terrible": {"_count": 1, "Im": {"_count": 1}}, "Peeves": {"_count": 1, "s": {"_count": 1}}, "thatched": {"_count": 1, "isnt": {"_count": 1}}, "Oliver": {"_count": 1, "Woods": {"_count": 1}}, "Dumbledores": {"_count": 1, "favorite": {"_count": 1}}, "popping": {"_count": 1, "into": {"_count": 1}}, "concerned": {"_count": 1, "about": {"_count": 1}}, "your": {"_count": 2, "examination": {"_count": 1}, "greatest": {"_count": 1}}, "thrilled": {"_count": 1, "if": {"_count": 1}}, "wafting": {"_count": 1, "about": {"_count": 1}}, "hopeful": {"_count": 1, "enough": {"_count": 1}}, "slapped": {"_count": 2, "in": {"_count": 1}, "awake": {"_count": 1}}, "injuries": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "shouted": {"_count": 1, "at": {"_count": 1}}, "sounding": {"_count": 1, "out": {"_count": 1}}, "goats": {"_count": 1, "": {"_count": 1}}, "washed": {"_count": 1, "": {"_count": 1}}, "interrupted": {"_count": 1, "in": {"_count": 1}}, "settled": {"_count": 1, "": {"_count": 1}}, "draining": {"_count": 1, "the": {"_count": 1}}, "affixed": {"_count": 1, "to": {"_count": 1}}, "approved": {"_count": 1, "by": {"_count": 1}}, "Hagrid": {"_count": 1, "of": {"_count": 1}}, "addled": {"_count": 1, "by": {"_count": 1}}, "insulted": {"_count": 1, "certainly": {"_count": 1}}, "feared": {"_count": 1, "always": {"_count": 1}}, "harder": {"_count": 1, "to": {"_count": 1}}, "dressing": {"_count": 1, "as": {"_count": 1}}, "intercepted": {"_count": 1, "youd": {"_count": 1}}, "moments": {"_count": 1, "before": {"_count": 1}}, "hopping": {"_count": 1, "hopefully": {"_count": 1}}, "suspecting": {"_count": 1, "this": {"_count": 1}}, "leaving": {"_count": 2, "out": {"_count": 1}, "the": {"_count": 1}}, "passed": {"_count": 2, "to": {"_count": 1}, "down": {"_count": 1}}, "eavesdropping": {"_count": 1, "on": {"_count": 1}}, "mental": {"_count": 1, "to": {"_count": 1}}, "returned": {"_count": 4, "to": {"_count": 3}, "secretly": {"_count": 1}}, "stationary": {"_count": 1, "in": {"_count": 1}}, "ordered": {"_count": 1, "by": {"_count": 1}}, "blown": {"_count": 5, "": {"_count": 1}, "apart": {"_count": 2}, "away": {"_count": 2}}, "happenin": {"_count": 1, "since": {"_count": 1}}, "cramped": {"_count": 1, "said": {"_count": 1}}, "Hermiones": {"_count": 1, "mug": {"_count": 1}}, "away": {"_count": 4, "for": {"_count": 1}, "Dumbledore": {"_count": 1}, "howre": {"_count": 1}, "": {"_count": 1}}, "purple": {"_count": 1, "on": {"_count": 1}}, "BlastEnded": {"_count": 1, "Skrewts": {"_count": 1}}, "aiming": {"_count": 1, "but": {"_count": 1}}, "poisonous": {"_count": 1, "": {"_count": 1}}, "painted": {"_count": 4, "wearing": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "Dilys": {"_count": 1}}, "gravely": {"_count": 1, "injured": {"_count": 1}}, "badly": {"_count": 2, "injured": {"_count": 1}, "advised": {"_count": 1}}, "handwritten": {"_count": 1, "HealerinCharge": {"_count": 1}}, "something": {"_count": 3, "she": {"_count": 1}, "of": {"_count": 1}, "small": {"_count": 1}}, "approaching": {"_count": 1, "him": {"_count": 1}}, "possessed": {"_count": 3, "by": {"_count": 1}, "do": {"_count": 1}, "would": {"_count": 1}}, "Rons": {"_count": 1, "malfunctioning": {"_count": 1}}, "attempting": {"_count": 2, "to": {"_count": 1}, "under": {"_count": 1}}, "deposited": {"_count": 1, "in": {"_count": 1}}, "permanent": {"_count": 1, "": {"_count": 1}}, "drawn": {"_count": 4, "around": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 1}}, "restraining": {"_count": 1, "with": {"_count": 1}}, "midway": {"_count": 1, "through": {"_count": 1}}, "evening": {"_count": 1, "the": {"_count": 1}}, "useful": {"_count": 1, "hasnt": {"_count": 1}}, "unaware": {"_count": 1, "of": {"_count": 1}}, "fiddling": {"_count": 1, "around": {"_count": 1}}, "expounding": {"_count": 1, "since": {"_count": 1}}, "abashed": {"_count": 1, "at": {"_count": 1}}, "spurred": {"_count": 1, "to": {"_count": 1}}, "after": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "easier": {"_count": 1, "if": {"_count": 1}}, "breaking": {"_count": 1, "into": {"_count": 1}}, "immensely": {"_count": 1, "frustrating": {"_count": 1}}, "fluttering": {"_count": 1, "near": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "Bane": {"_count": 1, "who": {"_count": 1}}, "Seamuss": {"_count": 1, "very": {"_count": 1}}, "struck": {"_count": 1, "in": {"_count": 1}}, "overturned": {"_count": 1, "all": {"_count": 1}}, "neck": {"_count": 1, "and": {"_count": 1}}, "solid": {"_count": 1, "he": {"_count": 1}}, "embellishing": {"_count": 1, "jumped": {"_count": 1}}, "enjoying": {"_count": 2, "yourself": {"_count": 1}, "": {"_count": 1}}, "every": {"_count": 1, "bit": {"_count": 1}}, "startled": {"_count": 1, "to": {"_count": 1}}, "wonderful": {"_count": 1, "people": {"_count": 1}}, "troublemakers": {"_count": 1, "at": {"_count": 1}}, "decent": {"_count": 2, "yet": {"_count": 1}, "to": {"_count": 1}}, "unwrapped": {"_count": 1, "and": {"_count": 1}}, "generally": {"_count": 1, "high": {"_count": 1}}, "achieving": {"_count": 2, "very": {"_count": 1}, "such": {"_count": 1}}, "eyewitnesses": {"_count": 1, "were": {"_count": 1}}, "observed": {"_count": 1, "trying": {"_count": 1}}, "coated": {"_count": 1, "in": {"_count": 1}}, "planning": {"_count": 6, "this": {"_count": 2}, "on": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}}, "regretting": {"_count": 1, "this": {"_count": 1}}, "narrowly": {"_count": 1, "defeated": {"_count": 1}}, "happier": {"_count": 2, "with": {"_count": 1}, "than": {"_count": 1}}, "hewn": {"_count": 1, "onto": {"_count": 1}}, "nesting": {"_count": 1, "had": {"_count": 1}}, "replaced": {"_count": 4, "by": {"_count": 3}, "as": {"_count": 1}}, "friendly": {"_count": 1, "with": {"_count": 1}}, "applied": {"_count": 1, "to": {"_count": 1}}, "tested": {"_count": 1, "did": {"_count": 1}}, "levitating": {"_count": 2, "fell": {"_count": 1}, "them": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "describing": {"_count": 1, "his": {"_count": 1}}, "moving": {"_count": 1, "and": {"_count": 1}}, "gilding": {"_count": 1, "the": {"_count": 1}}, "indistinguishable": {"_count": 1, "from": {"_count": 1}}, "counting": {"_count": 3, "on": {"_count": 1}, "Hagrid": {"_count": 1}, "upon": {"_count": 1}}, "ousted": {"_count": 1, "": {"_count": 1}}, "spooning": {"_count": 1, "some": {"_count": 1}}, "completely": {"_count": 2, "empty": {"_count": 1}, "invisible": {"_count": 1}}, "Youve": {"_count": 1, "never": {"_count": 1}}, "punishing": {"_count": 1, "Avery": {"_count": 1}}, "communicating": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "gagged": {"_count": 1, "": {"_count": 1}}, "seized": {"_count": 1, "from": {"_count": 1}}, "by": {"_count": 2, "day": {"_count": 1}, "his": {"_count": 1}}, "tried": {"_count": 1, "by": {"_count": 1}}, "borne": {"_count": 1, "back": {"_count": 1}}, "enclosed": {"_count": 1, "once": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "clearer": {"_count": 4, "Give": {"_count": 1}, "that": {"_count": 3}}, "edging": {"_count": 2, "around": {"_count": 1}, "toward": {"_count": 1}}, "guarding": {"_count": 2, "him": {"_count": 2}}, "where": {"_count": 2, "Sirius": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 3, "why": {"_count": 1}, "got": {"_count": 1}, "Regulus": {"_count": 1}}, "open": {"_count": 2, "with": {"_count": 1}, "flesh": {"_count": 1}}, "tricked": {"_count": 2, "into": {"_count": 2}}, "closer": {"_count": 1, "than": {"_count": 1}}, "yours": {"_count": 1, "": {"_count": 1}}, "obsessed": {"_count": 1, "with": {"_count": 1}}, "serving": {"_count": 1, "more": {"_count": 1}}, "forbidden": {"_count": 1, "to": {"_count": 1}}, "honored": {"_count": 1, "and": {"_count": 1}}, "vanquished": {"_count": 1, "hours": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}, "determined": {"_count": 3, "to": {"_count": 2}, "by": {"_count": 1}}, "seeking": {"_count": 1, "so": {"_count": 1}}, "mended": {"_count": 1, "in": {"_count": 1}}, "convinced": {"_count": 2, "for": {"_count": 1}, "by": {"_count": 1}}, "greeting": {"_count": 1, "enthusiastically": {"_count": 1}}, "horrible": {"_count": 1, "to": {"_count": 1}}, "mistreated": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "utterly": {"_count": 1, "terrified": {"_count": 1}}, "joined": {"_count": 1, "by": {"_count": 1}}, "wreaking": {"_count": 1, "havoc": {"_count": 1}}, "unintelligible": {"_count": 1, "to": {"_count": 1}}, "prepared": {"_count": 3, "to": {"_count": 2}, "but": {"_count": 1}}, "assigned": {"_count": 1, "to": {"_count": 1}}, "entertaining": {"_count": 1, "the": {"_count": 1}}, "conveyed": {"_count": 1, "directly": {"_count": 1}}, "Dracos": {"_count": 1, "favorite": {"_count": 1}}, "greeted": {"_count": 1, "with": {"_count": 1}}, "invited": {"_count": 4, "to": {"_count": 2}, "because": {"_count": 1}, "along": {"_count": 1}}, "established": {"_count": 1, "he": {"_count": 1}}, "outbid": {"_count": 1, "at": {"_count": 1}}, "pureblood": {"_count": 2, "she": {"_count": 1}, "but": {"_count": 1}}, "glad": {"_count": 1, "to": {"_count": 1}}, "pleasant": {"_count": 1, "in": {"_count": 1}}, "painful": {"_count": 1, "enough": {"_count": 1}}, "not": {"_count": 1, "so": {"_count": 1}}, "bursting": {"_count": 1, "to": {"_count": 1}}, "cropping": {"_count": 1, "up": {"_count": 1}}, "off": {"_count": 2, "with": {"_count": 1}, "on": {"_count": 1}}, "affected": {"_count": 1, "by": {"_count": 1}}, "pasted": {"_count": 1, "over": {"_count": 1}}, "rumbled": {"_count": 1, "too": {"_count": 1}}, "branded": {"_count": 2, "with": {"_count": 2}}, "stationed": {"_count": 1, "somewhere": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "blighted": {"_count": 1, "by": {"_count": 1}}, "nice": {"_count": 2, "to": {"_count": 1}, "though": {"_count": 1}}, "married": {"_count": 1, "seven": {"_count": 1}}, "rumors": {"_count": 1, "for": {"_count": 1}}, "delighted": {"_count": 1, "to": {"_count": 1}}, "revealed": {"_count": 1, "as": {"_count": 1}}, "intending": {"_count": 1, "to": {"_count": 1}}, "inquisitive": {"_count": 1, "to": {"_count": 1}}, "tightened": {"_count": 1, "a": {"_count": 1}}, "immobilized": {"_count": 1, "all": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}, "shocked": {"_count": 1, "to": {"_count": 1}}, "widely": {"_count": 1, "known": {"_count": 1}}, "strengthened": {"_count": 1, "over": {"_count": 1}}, "ruined": {"_count": 1, "before": {"_count": 1}}, "Snapes": {"_count": 1, "": {"_count": 1}}, "Princes": {"_count": 1, "": {"_count": 1}}, "eyeing": {"_count": 1, "the": {"_count": 1}}, "uncomfortable": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 1, "loose": {"_count": 1}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "withdrawn": {"_count": 1, "": {"_count": 1}}, "Confunded": {"_count": 2, "": {"_count": 1}, "naturally": {"_count": 1}}, "postponed": {"_count": 1, "once": {"_count": 1}}, "boasting": {"_count": 2, "about": {"_count": 1}, "": {"_count": 1}}, "boarded": {"_count": 1, "up": {"_count": 1}}, "scheduling": {"_count": 1, "practices": {"_count": 1}}, "cursed": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "off": {"_count": 1}}, "Imperiused": {"_count": 1, "and": {"_count": 1}}, "purchased": {"_count": 1, "": {"_count": 1}}, "meant": {"_count": 1, "for": {"_count": 1}}, "discussing": {"_count": 1, "": {"_count": 1}}, "Slytherins": {"_count": 1, "": {"_count": 1}}, "picking": {"_count": 2, "his": {"_count": 1}, "Plangentines": {"_count": 1}}, "entered": {"_count": 1, "for": {"_count": 1}}, "incidents": {"_count": 1, "": {"_count": 1}}, "magic": {"_count": 1, "or": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "hidden": {"_count": 2, "for": {"_count": 1}, "he": {"_count": 1}}, "training": {"_count": 1, "so": {"_count": 1}}, "Lee": {"_count": 1, "Jordans": {"_count": 1}}, "twisted": {"_count": 1, "around": {"_count": 1}}, "hung": {"_count": 1, "at": {"_count": 1}}, "enduring": {"_count": 1, "for": {"_count": 1}}, "rude": {"_count": 1, "to": {"_count": 1}}, "built": {"_count": 1, "that": {"_count": 1}}, "treated": {"_count": 2, "to": {"_count": 1}, "brutally": {"_count": 1}}, "worth": {"_count": 2, "bringing": {"_count": 1}, "it": {"_count": 1}}, "delayed": {"_count": 1, "in": {"_count": 1}}, "nodding": {"_count": 1, "over": {"_count": 1}}, "underground": {"_count": 1, "said": {"_count": 1}}, "difficult": {"_count": 2, "gaining": {"_count": 1}, "to": {"_count": 1}}, "published": {"_count": 1, "": {"_count": 1}}, "tolerant": {"_count": 1, "enough": {"_count": 1}}, "imprisoned": {"_count": 2, "once": {"_count": 1}, "including": {"_count": 1}}, "awaiting": {"_count": 1, "his": {"_count": 1}}, "faulty": {"_count": 1, "": {"_count": 1}}, "scribbled": {"_count": 1, "the": {"_count": 1}}, "reported": {"_count": 1, "in": {"_count": 1}}, "himself": {"_count": 1, "when": {"_count": 1}}, "exceptionally": {"_count": 1, "quiet": {"_count": 1}}, "fatal": {"_count": 1, "and": {"_count": 1}}, "interrogated": {"_count": 2, "enough": {"_count": 1}, "for": {"_count": 1}}, "examining": {"_count": 2, "a": {"_count": 1}, "when": {"_count": 1}}, "resolutely": {"_count": 1, "refusing": {"_count": 1}}, "happiest": {"_count": 1, "the": {"_count": 1}}, "late": {"_count": 1, "yet": {"_count": 1}}, "handed": {"_count": 1, "down": {"_count": 1}}, "sneaking": {"_count": 2, "off": {"_count": 1}, "in": {"_count": 1}}, "disappearing": {"_count": 1, "off": {"_count": 1}}, "walking": {"_count": 2, "past": {"_count": 1}, "though": {"_count": 1}}, "arrest": {"_count": 1, "But": {"_count": 1}}, "reanimated": {"_count": 1, "by": {"_count": 1}}, "careful": {"_count": 1, "to": {"_count": 1}}, "thwarted": {"_count": 3, "both": {"_count": 1}, "by": {"_count": 2}}, "fermenting": {"_count": 1, "in": {"_count": 1}}, "skulking": {"_count": 2, "in": {"_count": 1}, "half": {"_count": 1}}, "intended": {"_count": 1, "as": {"_count": 1}}, "forgive": {"_count": 1, "me": {"_count": 1}}, "carted": {"_count": 1, "off": {"_count": 1}}, "curious": {"_count": 1, "for": {"_count": 1}}, "detached": {"_count": 1, "for": {"_count": 1}}, "mutilated": {"_count": 1, "and": {"_count": 1}}, "fulfilled": {"_count": 2, "": {"_count": 2}}, "seduced": {"_count": 1, "by": {"_count": 1}}, "ideal": {"_count": 1, "if": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "clubbed": {"_count": 1, "over": {"_count": 1}}, "clever": {"_count": 2, "enough": {"_count": 2}}, "vouchsafed": {"_count": 1, "what": {"_count": 1}}, "bandied": {"_count": 1, "about": {"_count": 1}}, "apprehended": {"_count": 1, "eavesdropping": {"_count": 1}}, "kept": {"_count": 1, "from": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "reasonably": {"_count": 1, "confident": {"_count": 1}}, "minutes": {"_count": 1, "ago": {"_count": 1}}, "feeble": {"_count": 1, "attempts": {"_count": 1}}, "offering": {"_count": 1, "me": {"_count": 1}}, "savaged": {"_count": 1, "by": {"_count": 1}}, "Sirius": {"_count": 1, "that": {"_count": 1}}, "deputy": {"_count": 1, "headmistress": {"_count": 1}}, "weeping": {"_count": 1, "silently": {"_count": 1}}, "No": {"_count": 1, "other": {"_count": 1}}, "discharged": {"_count": 1, "but": {"_count": 1}}, "rushing": {"_count": 1, "off": {"_count": 1}}, "unceremoniously": {"_count": 1, "filled": {"_count": 1}}, "careless": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "repacked": {"_count": 1, "into": {"_count": 1}}, "common": {"_count": 1, "knowledge": {"_count": 1}}, "echoed": {"_count": 1, "in": {"_count": 1}}, "unpacked": {"_count": 1, "had": {"_count": 1}}, "expected": {"_count": 1, "to": {"_count": 1}}, "infiltrated": {"_count": 1, "": {"_count": 1}}, "addressed": {"_count": 1, "half": {"_count": 1}}, "buried": {"_count": 1, "in": {"_count": 1}}, "helped": {"_count": 1, "up": {"_count": 1}}, "regrown": {"_count": 1, "": {"_count": 1}}, "Dad": {"_count": 1, "and": {"_count": 1}}, "betrayed": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "scathing": {"_count": 1, "about": {"_count": 1}}, "insane": {"_count": 1, "to": {"_count": 1}}, "separated": {"_count": 1, "by": {"_count": 1}}, "yet": {"_count": 1, "with": {"_count": 1}}, "packing": {"_count": 1, "for": {"_count": 1}}, "alive": {"_count": 1, "to": {"_count": 1}}, "deemed": {"_count": 1, "smart": {"_count": 1}}, "swept": {"_count": 1, "and": {"_count": 1}}, "pruned": {"_count": 1, "plucked": {"_count": 1}}, "negligible": {"_count": 1, "": {"_count": 1}}, "gifted": {"_count": 1, "by": {"_count": 1}}, "instructing": {"_count": 1, "the": {"_count": 1}}, "mortified": {"_count": 1, "to": {"_count": 1}}, "tantamount": {"_count": 1, "to": {"_count": 1}}, "arguing": {"_count": 1, "She": {"_count": 1}}, "bombed": {"_count": 1, "": {"_count": 1}}, "handsome": {"_count": 1, "": {"_count": 1}}, "judged": {"_count": 1, "mostly": {"_count": 1}}, "shaken": {"_count": 1, "roughly": {"_count": 1}}, "sweet": {"_count": 1, "to": {"_count": 1}}, "lost": {"_count": 3, "in": {"_count": 1}, "this": {"_count": 1}, "for": {"_count": 1}}, "disturbed": {"_count": 1, "": {"_count": 1}}, "Obliviated": {"_count": 1, "her": {"_count": 1}}, "tossed": {"_count": 1, "into": {"_count": 1}}, "smooth": {"_count": 1, "and": {"_count": 1}}, "educated": {"_count": 2, "at": {"_count": 1}, "Borgin": {"_count": 1}}, "bidden": {"_count": 1, "to": {"_count": 1}}, "effing": {"_count": 1, "difficult": {"_count": 1}}, "burnished": {"_count": 1, "to": {"_count": 1}}, "freshly": {"_count": 1, "laundered": {"_count": 1}}, "folded": {"_count": 1, "in": {"_count": 1}}, "carefully": {"_count": 1, "concocting": {"_count": 1}}, "cast": {"_count": 2, "over": {"_count": 1}, "down": {"_count": 1}}, "likely": {"_count": 1, "that": {"_count": 1}}, "raining": {"_count": 1, "lately": {"_count": 1}}, "decided": {"_count": 1, "that": {"_count": 1}}, "Legilimency": {"_count": 1, "": {"_count": 1}}, "cracked": {"_count": 2, "open": {"_count": 2}}, "hurtling": {"_count": 1, "toward": {"_count": 1}}, "raised": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "straight": {"_count": 1, "with": {"_count": 1}}, "inked": {"_count": 1, "in": {"_count": 1}}, "expert": {"_count": 1, "on": {"_count": 1}}, "little": {"_count": 1, "more": {"_count": 1}}, "laying": {"_count": 1, "flowers": {"_count": 1}}, "wiping": {"_count": 1, "his": {"_count": 1}}, "spiked": {"_count": 1, "by": {"_count": 1}}, "favorably": {"_count": 1, "impressed": {"_count": 1}}, "mourning": {"_count": 1, "his": {"_count": 1}}, "months": {"_count": 1, "I": {"_count": 1}}, "its": {"_count": 1, "final": {"_count": 1}}, "simply": {"_count": 1, "terrified": {"_count": 1}}, "Disapparating": {"_count": 1, "under": {"_count": 1}}, "jinxed": {"_count": 1, "Harry": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "inexpressibly": {"_count": 1, "comforting": {"_count": 1}}, "Ritas": {"_count": 1, "invention": {"_count": 1}}, "tacked": {"_count": 1, "to": {"_count": 1}}, "positively": {"_count": 1, "dapper": {"_count": 1}}, "mounted": {"_count": 1, "on": {"_count": 1}}, "since": {"_count": 2, "Bill": {"_count": 1}, "he": {"_count": 1}}, "cheated": {"_count": 1, "out": {"_count": 1}}, "misleading": {"_count": 1, "me": {"_count": 1}}, "stories": {"_count": 1, "about": {"_count": 1}}, "unbeatable": {"_count": 1, "how": {"_count": 1}}, "loads": {"_count": 2, "of": {"_count": 2}}, "slept": {"_count": 2, "in": {"_count": 2}}, "anyone": {"_count": 1, "famous": {"_count": 1}}, "damaged": {"_count": 1, "a": {"_count": 1}}, "polishing": {"_count": 1, "the": {"_count": 1}}, "Tabooed": {"_count": 1, "": {"_count": 1}}, "tracked": {"_count": 1, "that": {"_count": 1}}, "rammed": {"_count": 1, "back": {"_count": 1}}, "granted": {"_count": 1, "this": {"_count": 1}}, "tonight": {"_count": 1, "and": {"_count": 1}}, "resting": {"_count": 1, "then": {"_count": 1}}, "sprinting": {"_count": 1, "and": {"_count": 1}}, "contested": {"_count": 1, "between": {"_count": 1}}, "places": {"_count": 1, "hes": {"_count": 1}}, "braced": {"_count": 1, "to": {"_count": 1}}, "won": {"_count": 2, "its": {"_count": 1}, "from": {"_count": 1}}, "clear": {"_count": 1, "to": {"_count": 1}}, "unsure": {"_count": 1, "when": {"_count": 1}}, "wasting": {"_count": 1, "time": {"_count": 1}}, "outright": {"_count": 1, "madness": {"_count": 1}}, "engraved": {"_count": 1, "over": {"_count": 1}}, "fraught": {"_count": 1, "for": {"_count": 1}}, "fault": {"_count": 1, "on": {"_count": 1}}, "firm": {"_count": 1, "on": {"_count": 1}}, "created": {"_count": 1, "since": {"_count": 1}}, "summoned": {"_count": 1, "to": {"_count": 1}}, "special": {"_count": 1, "orders": {"_count": 1}}, "Kissed": {"_count": 1, "first": {"_count": 1}}, "top": {"_count": 1, "in": {"_count": 1}}, "providing": {"_count": 1, "us": {"_count": 1}}, "cracking": {"_count": 1, "jokes": {"_count": 1}}, "reproduced": {"_count": 1, "in": {"_count": 1}}, "agreed": {"_count": 1, "between": {"_count": 1}}, "thrust": {"_count": 1, "into": {"_count": 1}}, "smashed": {"_count": 1, "apart": {"_count": 1}}, "arrogant": {"_count": 1, "enough": {"_count": 1}}, "Fiendfyre": {"_count": 1, "": {"_count": 1}}, "grouped": {"_count": 1, "together": {"_count": 1}}, "perfectly": {"_count": 1, "clear": {"_count": 1}}, "reprieved": {"_count": 1, "But": {"_count": 1}}, "flushed": {"_count": 1, "": {"_count": 1}}, "wellcaredfor": {"_count": 1, "even": {"_count": 1}}, "drowned": {"_count": 1, "by": {"_count": 1}}, "essential": {"_count": 1, "to": {"_count": 1}}, "raising": {"_count": 1, "him": {"_count": 1}}, "marked": {"_count": 1, "for": {"_count": 1}}, "memory": {"_count": 1, "made": {"_count": 1}}, "praying": {"_count": 1, "or": {"_count": 1}}, "discourteous": {"_count": 1, "I": {"_count": 1}}, "I": {"_count": 1, "who": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "huddled": {"_count": 1, "around": {"_count": 1}}, "treading": {"_count": 1, "marked": {"_count": 1}}, "named": {"_count": 1, "temporary": {"_count": 1}}, "defeated": {"_count": 1, "": {"_count": 1}}, "Fabian": {"_count": 1, "Prewetts": {"_count": 1}}}, "thinking": {"_count": 278, "of": {"_count": 48, "": {"_count": 2}, "Privet": {"_count": 1}, "and": {"_count": 1}, "working": {"_count": 1}, "making": {"_count": 1}, "happy": {"_count": 1}, "his": {"_count": 3}, "revenge": {"_count": 1}, "running": {"_count": 1}, "Dobby": {"_count": 1}, "restarting": {"_count": 1}, "wearing": {"_count": 1}, "nothing": {"_count": 2}, "all": {"_count": 4}, "the": {"_count": 2}, "Seamus": {"_count": 1}, "how": {"_count": 1}, "Professor": {"_count": 1}, "cows": {"_count": 1}, "whatever": {"_count": 1}, "a": {"_count": 1}, "doing": {"_count": 1}, "what": {"_count": 1}, "their": {"_count": 1}, "Bellatrix": {"_count": 1}, "Romilda": {"_count": 1}, "adopting": {"_count": 1}, "werewolves": {"_count": 1}, "buying": {"_count": 1}, "going": {"_count": 1}, "Portkeys": {"_count": 1}, "Dumbledore": {"_count": 2}, "leaving": {"_count": 1}, "Gorgovitch": {"_count": 2}, "dementors": {"_count": 1}, "her": {"_count": 1}, "handing": {"_count": 1}, "curses": {"_count": 1}}, "": {"_count": 39, ".": {"_count": 34}, "!": {"_count": 4}, "?": {"_count": 1}}, "about": {"_count": 46, "the": {"_count": 12}, "this": {"_count": 1}, "Harry": {"_count": 1}, "what": {"_count": 10}, "": {"_count": 2}, "Hermione": {"_count": 1}, "Mr": {"_count": 1}, "death": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 1}, "thousands": {"_count": 1}, "S": {"_count": 1}, "sending": {"_count": 1}, "Quidditch": {"_count": 1}, "Sirius": {"_count": 2}, "Devils": {"_count": 1}, "it": {"_count": 2}, "McLaggen": {"_count": 1}, "her": {"_count": 2}, "missing": {"_count": 1}, "that": {"_count": 1}}, "that": {"_count": 22, "Hagrid": {"_count": 1}, "Justin": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 9}, "I": {"_count": 2}, "they": {"_count": 2}, "Maxime": {"_count": 1}, "maybe": {"_count": 1}, "she": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}, "Voldemort": {"_count": 1}}, "up": {"_count": 2, "some": {"_count": 1}, "ridiculously": {"_count": 1}}, "the": {"_count": 10, "same": {"_count": 7}, "tournament": {"_count": 1}, "only": {"_count": 1}, "first": {"_count": 1}}, "along": {"_count": 4, "the": {"_count": 2}, "these": {"_count": 1}, "those": {"_count": 1}}, "himself": {"_count": 3, "": {"_count": 1}, "back": {"_count": 1}, "unheard": {"_count": 1}}, "longingly": {"_count": 3, "of": {"_count": 3}}, "said": {"_count": 8, "Ron": {"_count": 2}, "Malfoy": {"_count": 1}, "Hermione": {"_count": 1}, "Luna": {"_count": 1}, "Harry": {"_count": 2}, "Bill": {"_count": 1}}, "fast": {"_count": 5, "said": {"_count": 1}, "weighing": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}}, "what": {"_count": 3, "he": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}}, "hard": {"_count": 15, "about": {"_count": 3}, "": {"_count": 10}, "there": {"_count": 1}, "while": {"_count": 1}}, "without": {"_count": 2, "considering": {"_count": 1}, "planning": {"_count": 1}}, "it": {"_count": 5, "over": {"_count": 1}, "was": {"_count": 1}, "through": {"_count": 1}, "all": {"_count": 1}, "as": {"_count": 1}}, "almost": {"_count": 1, "longingly": {"_count": 1}}, "vaguely": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 2, "Christmas": {"_count": 1}, "Harrys": {"_count": 1}}, "hed": {"_count": 2, "seen": {"_count": 1}, "just": {"_count": 1}}, "Harry": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "straight": {"_count": 1, "": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "time": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "somethings": {"_count": 1, "wrong": {"_count": 1}}, "its": {"_count": 2, "still": {"_count": 1}, "an": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "took": {"_count": 1}}, "One": {"_count": 1, "champion": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "desperately": {"_count": 1, "": {"_count": 1}}, "theyre": {"_count": 1, "superior": {"_count": 1}}, "and": {"_count": 4, "was": {"_count": 1}, "saw": {"_count": 1}, "Harry": {"_count": 1}, "despised": {"_count": 1}}, "we": {"_count": 1, "got": {"_count": 1}}, "exactly": {"_count": 2, "the": {"_count": 1}, "what": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 3, "can": {"_count": 1}, "could": {"_count": 2}}, "right": {"_count": 1, "now": {"_count": 1}}, "anythings": {"_count": 1, "possible": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "disconsolately": {"_count": 1, "that": {"_count": 1}}, "too": {"_count": 2, "hard": {"_count": 1}, "he": {"_count": 1}}, "privately": {"_count": 1, "that": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "theyve": {"_count": 1, "still": {"_count": 1}}, "to": {"_count": 3, "copy": {"_count": 1}, "shock": {"_count": 1}, "strengthen": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "still": {"_count": 1, "cold": {"_count": 1}}, "not": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "stuff": {"_count": 1}}, "with": {"_count": 1, "Gellert": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "anyway": {"_count": 1, "but": {"_count": 1}}, "hes": {"_count": 1, "out": {"_count": 1}}, "Pointing": {"_count": 1, "his": {"_count": 1}}, "coming": {"_count": 1, "here": {"_count": 1}}, "bringing": {"_count": 1, "her": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "now": {"_count": 1, "only": {"_count": 1}}}, "?": {"_count": 10864, "It": {"_count": 123, "must": {"_count": 2}, "certainly": {"_count": 1}, "seemed": {"_count": 2}, "was": {"_count": 45}, "well": {"_count": 1}, "will": {"_count": 3}, "is": {"_count": 14}, "sounds": {"_count": 4}, "wears": {"_count": 1}, "matters": {"_count": 1}, "happened": {"_count": 1}, "has": {"_count": 3}, "looks": {"_count": 5}, "still": {"_count": 1}, "used": {"_count": 1}, "doesnt": {"_count": 4}, "leaves": {"_count": 1}, "would": {"_count": 3}, "surely": {"_count": 1}, "felt": {"_count": 1}, "all": {"_count": 3}, "means": {"_count": 1}, "did": {"_count": 3}, "seems": {"_count": 5}, "meant": {"_count": 1}, "had": {"_count": 3}, "isnt": {"_count": 3}, "cant": {"_count": 1}, "wouldnt": {"_count": 2}, "does": {"_count": 2}, "it": {"_count": 1}, "worked": {"_count": 1}, "remained": {"_count": 1}, "carries": {"_count": 1}}, "Mr": {"_count": 23, "Dursley": {"_count": 1}, "Ollivander": {"_count": 1}, "Malfoys": {"_count": 1}, "Weasley": {"_count": 11}, "Malfoy": {"_count": 1}, "Crouch": {"_count": 5}, "Borgin": {"_count": 1}, "Gaunt": {"_count": 2}}, "Well": {"_count": 155, "Ted": {"_count": 1}, "I": {"_count": 15}, "their": {"_count": 1}, "so": {"_count": 1}, "if": {"_count": 3}, "meet": {"_count": 2}, "a": {"_count": 1}, "they": {"_count": 4}, "think": {"_count": 1}, "enough": {"_count": 1}, "be": {"_count": 2}, "Nicolas": {"_count": 1}, "Hermione": {"_count": 1}, "It": {"_count": 1}, "not": {"_count": 2}, "said": {"_count": 11}, "have": {"_count": 2}, "": {"_count": 14}, "the": {"_count": 5}, "it": {"_count": 5}, "nobody": {"_count": 1}, "you": {"_count": 7}, "that": {"_count": 2}, "off": {"_count": 1}, "Im": {"_count": 5}, "theyre": {"_count": 1}, "take": {"_count": 1}, "thats": {"_count": 6}, "no": {"_count": 2}, "well": {"_count": 2}, "firstly": {"_count": 1}, "Ron": {"_count": 1}, "what": {"_count": 2}, "unfortunately": {"_count": 1}, "its": {"_count": 4}, "maybe": {"_count": 1}, "then": {"_count": 5}, "now": {"_count": 2}, "get": {"_count": 1}, "Dumbledore": {"_count": 2}, "we": {"_count": 5}, "Dumbledored": {"_count": 1}, "can": {"_count": 1}, "how": {"_count": 3}, "yes": {"_count": 2}, "come": {"_count": 1}, "usually": {"_count": 1}, "were": {"_count": 1}, "youll": {"_count": 1}, "halfbrother": {"_count": 1}, "gulped": {"_count": 1}, "Flitwicks": {"_count": 1}, "done": {"_count": 1}, "by": {"_count": 1}, "anyway": {"_count": 1}, "all": {"_count": 1}, "Harry": {"_count": 1}, "sir": {"_count": 1}, "as": {"_count": 1}, "of": {"_count": 1}, "whatever": {"_count": 1}, "he": {"_count": 1}, "go": {"_count": 1}, "yeah": {"_count": 1}, "help": {"_count": 1}, "where": {"_count": 1}}, "Owls": {"_count": 1, "flying": {"_count": 1}}, "Mysterious": {"_count": 1, "people": {"_count": 1}}, "And": {"_count": 139, "a": {"_count": 1}, "this": {"_count": 2}, "two": {"_count": 2}, "all": {"_count": 2}, "did": {"_count": 2}, "wheres": {"_count": 1}, "in": {"_count": 3}, "then": {"_count": 14}, "do": {"_count": 2}, "weve": {"_count": 1}, "even": {"_count": 1}, "from": {"_count": 1}, "whats": {"_count": 5}, "where": {"_count": 1}, "now": {"_count": 6}, "he": {"_count": 7}, "it": {"_count": 4}, "the": {"_count": 7}, "how": {"_count": 3}, "Potter": {"_count": 1}, "youve": {"_count": 1}, "who": {"_count": 2}, "you": {"_count": 9}, "and": {"_count": 1}, "when": {"_count": 2}, "once": {"_count": 1}, "Moody": {"_count": 2}, "if": {"_count": 4}, "finally": {"_count": 2}, "I": {"_count": 5}, "having": {"_count": 1}, "why": {"_count": 7}, "without": {"_count": 1}, "shes": {"_count": 1}, "as": {"_count": 3}, "what": {"_count": 5}, "Harry": {"_count": 1}, "your": {"_count": 1}, "hadnt": {"_count": 1}, "my": {"_count": 1}, "we": {"_count": 1}, "Hermione": {"_count": 1}, "youll": {"_count": 1}, "was": {"_count": 1}, "forgive": {"_count": 1}, "there": {"_count": 2}, "anyway": {"_count": 1}, "last": {"_count": 1}, "Eloise": {"_count": 1}, "her": {"_count": 1}, "again": {"_count": 1}, "thats": {"_count": 1}, "get": {"_count": 1}, "she": {"_count": 1}, "had": {"_count": 1}, "Grimmauld": {"_count": 1}, "yet": {"_count": 1}, "shortly": {"_count": 1}, "paid": {"_count": 1}, "hurry": {"_count": 1}, "for": {"_count": 1}}, "As": {"_count": 33, "he": {"_count": 3}, "the": {"_count": 2}, "Harry": {"_count": 2}, "Neville": {"_count": 1}, "soon": {"_count": 2}, "Aunt": {"_count": 1}, "though": {"_count": 3}, "a": {"_count": 2}, "there": {"_count": 1}, "if": {"_count": 1}, "this": {"_count": 1}, "far": {"_count": 1}, "long": {"_count": 1}, "Smith": {"_count": 1}, "Dumbledore": {"_count": 1}, "she": {"_count": 1}, "ghosts": {"_count": 1}, "they": {"_count": 2}, "you": {"_count": 1}, "Professor": {"_count": 1}, "Kreacher": {"_count": 1}, "Ron": {"_count": 1}, "we": {"_count": 1}, "to": {"_count": 1}}, "Funny": {"_count": 1, "stuff": {"_count": 1}}, "snapped": {"_count": 16, "Mrs": {"_count": 1}, "Malfoy": {"_count": 2}, "Riddle": {"_count": 1}, "Uncle": {"_count": 1}, "Hermione": {"_count": 4}, "Ron": {"_count": 2}, "Sirius": {"_count": 1}, "Harry": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 1}, "Umbridge": {"_count": 1}}, "I": {"_count": 476, "suppose": {"_count": 11}, "must": {"_count": 4}, "would": {"_count": 3}, "was": {"_count": 22}, "hate": {"_count": 1}, "dont": {"_count": 55}, "might": {"_count": 1}, "havent": {"_count": 5}, "want": {"_count": 6}, "think": {"_count": 31}, "am": {"_count": 7}, "dunno": {"_count": 21}, "": {"_count": 10}, "see": {"_count": 2}, "shouldnt": {"_count": 2}, "set": {"_count": 1}, "never": {"_count": 7}, "mean": {"_count": 27}, "I": {"_count": 9}, "went": {"_count": 1}, "believe": {"_count": 3}, "feel": {"_count": 2}, "hear": {"_count": 1}, "can": {"_count": 8}, "well": {"_count": 3}, "thought": {"_count": 19}, "in": {"_count": 1}, "keep": {"_count": 2}, "seem": {"_count": 1}, "cant": {"_count": 10}, "WANT": {"_count": 1}, "bet": {"_count": 4}, "really": {"_count": 2}, "will": {"_count": 4}, "broke": {"_count": 1}, "er": {"_count": 2}, "felt": {"_count": 1}, "once": {"_count": 1}, "wouldnt": {"_count": 3}, "daresay": {"_count": 3}, "did": {"_count": 7}, "certainly": {"_count": 1}, "COMFORTED": {"_count": 1}, "wish": {"_count": 3}, "know": {"_count": 10}, "at": {"_count": 1}, "heard": {"_count": 4}, "told": {"_count": 14}, "imagine": {"_count": 1}, "need": {"_count": 5}, "have": {"_count": 16}, "remember": {"_count": 1}, "saw": {"_count": 5}, "wonder": {"_count": 3}, "killed": {"_count": 1}, "didnt": {"_count": 7}, "tell": {"_count": 1}, "doubt": {"_count": 4}, "is": {"_count": 1}, "asked": {"_count": 2}, "just": {"_count": 2}, "reckon": {"_count": 3}, "meant": {"_count": 1}, "wont": {"_count": 1}, "ave": {"_count": 1}, "vos": {"_count": 1}, "consider": {"_count": 1}, "do": {"_count": 6}, "planted": {"_count": 1}, "knew": {"_count": 1}, "youre": {"_count": 1}, "brought": {"_count": 1}, "had": {"_count": 4}, "work": {"_count": 1}, "hope": {"_count": 2}, "spose": {"_count": 1}, "only": {"_count": 2}, "wasnt": {"_count": 3}, "should": {"_count": 3}, "repeat": {"_count": 1}, "said": {"_count": 3}, "also": {"_count": 1}, "expect": {"_count": 2}, "seen": {"_count": 1}, "dink": {"_count": 1}, "shall": {"_count": 4}, "defy": {"_count": 1}, "cannot": {"_count": 3}, "not": {"_count": 2}, "dumped": {"_count": 1}, "noticed": {"_count": 1}, "checked": {"_count": 1}, "neither": {"_count": 1}, "place": {"_count": 1}, "came": {"_count": 1}, "use": {"_count": 1}, "read": {"_count": 1}, "yes": {"_count": 1}, "rather": {"_count": 1}, "jus": {"_count": 1}, "forge": {"_count": 1}, "swear": {"_count": 2}, "aint": {"_count": 1}, "remembered": {"_count": 1}, "no": {"_count": 1}, "so": {"_count": 1}, "deemed": {"_count": 1}, "beg": {"_count": 1}, "couldnt": {"_count": 2}, "still": {"_count": 2}, "Vernon": {"_count": 1}, "seek": {"_count": 1}, "could": {"_count": 1}, "always": {"_count": 1}, "Harry": {"_count": 1}, "sent": {"_count": 1}, "stole": {"_count": 1}, "prefer": {"_count": 1}, "understand": {"_count": 1}, "guessed": {"_count": 1}, "admit": {"_count": 1}}, "Howard": {"_count": 1, "isnt": {"_count": 1}}, "Harry": {"_count": 725, "": {"_count": 15}, "got": {"_count": 2}, "asked": {"_count": 160}, "thought": {"_count": 9}, "suggested": {"_count": 8}, "looked": {"_count": 28}, "wondered": {"_count": 2}, "didnt": {"_count": 22}, "leaned": {"_count": 1}, "Potted": {"_count": 1}, "who": {"_count": 5}, "was": {"_count": 16}, "explained": {"_count": 3}, "gripped": {"_count": 1}, "glanced": {"_count": 2}, "forced": {"_count": 1}, "nodded": {"_count": 12}, "turned": {"_count": 6}, "shook": {"_count": 10}, "whispered": {"_count": 10}, "sniffed": {"_count": 1}, "tried": {"_count": 4}, "went": {"_count": 3}, "Ron": {"_count": 8}, "added": {"_count": 1}, "picked": {"_count": 1}, "couldnt": {"_count": 5}, "felt": {"_count": 7}, "stood": {"_count": 2}, "had": {"_count": 14}, "jumped": {"_count": 2}, "caught": {"_count": 2}, "gasped": {"_count": 5}, "swallowed": {"_count": 1}, "flushed": {"_count": 1}, "said": {"_count": 63}, "shouted": {"_count": 6}, "move": {"_count": 1}, "struggled": {"_count": 2}, "screwed": {"_count": 2}, "fought": {"_count": 1}, "hissed": {"_count": 4}, "stammered": {"_count": 1}, "told": {"_count": 4}, "gave": {"_count": 3}, "shrugged": {"_count": 6}, "repeated": {"_count": 17}, "started": {"_count": 3}, "and": {"_count": 16}, "muttered": {"_count": 8}, "heaved": {"_count": 1}, "waded": {"_count": 1}, "scrawled": {"_count": 1}, "gaped": {"_count": 2}, "jerked": {"_count": 1}, "jabbed": {"_count": 1}, "spat": {"_count": 4}, "breathed": {"_count": 1}, "yelled": {"_count": 6}, "prompted": {"_count": 2}, "opened": {"_count": 4}, "could": {"_count": 13}, "took": {"_count": 3}, "ignored": {"_count": 2}, "doubled": {"_count": 1}, "began": {"_count": 5}, "frowned": {"_count": 4}, "seized": {"_count": 1}, "bit": {"_count": 1}, "blinked": {"_count": 1}, "squinted": {"_count": 1}, "stared": {"_count": 6}, "panted": {"_count": 2}, "thats": {"_count": 1}, "can": {"_count": 1}, "Potter": {"_count": 3}, "what": {"_count": 3}, "come": {"_count": 1}, "lay": {"_count": 1}, "rolled": {"_count": 1}, "called": {"_count": 3}, "saw": {"_count": 7}, "interrupted": {"_count": 3}, "this": {"_count": 1}, "sped": {"_count": 1}, "hastily": {"_count": 1}, "snarled": {"_count": 1}, "hesitated": {"_count": 7}, "soared": {"_count": 1}, "dont": {"_count": 2}, "noticed": {"_count": 1}, "watched": {"_count": 1}, "croaked": {"_count": 3}, "checked": {"_count": 1}, "lowered": {"_count": 1}, "obedience": {"_count": 1}, "stay": {"_count": 1}, "described": {"_count": 1}, "merely": {"_count": 2}, "decided": {"_count": 1}, "we": {"_count": 2}, "burst": {"_count": 1}, "wiped": {"_count": 1}, "retorted": {"_count": 2}, "urged": {"_count": 4}, "made": {"_count": 1}, "heard": {"_count": 2}, "knocked": {"_count": 1}, "did": {"_count": 10}, "slumped": {"_count": 1}, "demanded": {"_count": 8}, "youre": {"_count": 1}, "sat": {"_count": 1}, "moved": {"_count": 1}, "remembered": {"_count": 4}, "considered": {"_count": 2}, "racked": {"_count": 1}, "shot": {"_count": 1}, "bellowed": {"_count": 2}, "fully": {"_count": 1}, "found": {"_count": 1}, "raised": {"_count": 3}, "let": {"_count": 1}, "joined": {"_count": 1}, "spoke": {"_count": 2}, "suffering": {"_count": 1}, "knew": {"_count": 1}, "sank": {"_count": 1}, "froze": {"_count": 1}, "ran": {"_count": 1}, "please": {"_count": 1}, "stirred": {"_count": 1}, "Malfoy": {"_count": 1}, "youve": {"_count": 1}, "deliberated": {"_count": 1}, "stepped": {"_count": 1}, "held": {"_count": 1}, "I": {"_count": 2}, "do": {"_count": 1}, "retold": {"_count": 1}, "sighed": {"_count": 1}, "pointed": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 1}, "mumbled": {"_count": 1}, "finished": {"_count": 1}, "yelped": {"_count": 1}, "behaved": {"_count": 1}, "give": {"_count": 1}, "persisted": {"_count": 1}, "dragged": {"_count": 1}, "distinctly": {"_count": 1}, "passed": {"_count": 1}, "read": {"_count": 1}, "blustered": {"_count": 1}, "wanted": {"_count": 2}, "closed": {"_count": 1}, "replied": {"_count": 1}, "Im": {"_count": 1}, "gazed": {"_count": 1}, "wished": {"_count": 1}, "choked": {"_count": 1}, "waited": {"_count": 1}, "lost": {"_count": 1}, "if": {"_count": 1}, "bent": {"_count": 1}, "acted": {"_count": 1}, "sprinted": {"_count": 1}, "strode": {"_count": 1}, "yer": {"_count": 1}}, "Could": {"_count": 10, "all": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 3}, "I": {"_count": 1}, "be": {"_count": 1}, "Dobby": {"_count": 1}, "their": {"_count": 1}, "you": {"_count": 1}}, "If": {"_count": 41, "it": {"_count": 1}, "hed": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 6}, "they": {"_count": 1}, "Snape": {"_count": 1}, "I": {"_count": 6}, "Crookshanks": {"_count": 1}, "you": {"_count": 10}, "one": {"_count": 1}, "Dumbledore": {"_count": 1}, "there": {"_count": 2}, "Draco": {"_count": 1}, "Malfoy": {"_count": 1}, "we": {"_count": 2}, "Doge": {"_count": 1}, "its": {"_count": 1}, "so": {"_count": 2}, "only": {"_count": 1}}, "she": {"_count": 142, "asked": {"_count": 34}, "demanded": {"_count": 1}, "snarled": {"_count": 1}, "said": {"_count": 61}, "barked": {"_count": 3}, "snapped": {"_count": 2}, "spluttered": {"_count": 1}, "repeated": {"_count": 6}, "squealed": {"_count": 1}, "added": {"_count": 10}, "murmured": {"_count": 1}, "choked": {"_count": 1}, "whispered": {"_count": 9}, "kept": {"_count": 1}, "called": {"_count": 1}, "inquired": {"_count": 1}, "shot": {"_count": 1}, "went": {"_count": 1}, "yelled": {"_count": 1}, "cried": {"_count": 1}, "jeered": {"_count": 2}, "began": {"_count": 1}, "persisted": {"_count": 1}}, "When": {"_count": 22, "you": {"_count": 4}, "they": {"_count": 1}, "Neville": {"_count": 1}, "are": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "did": {"_count": 1}, "can": {"_count": 1}, "would": {"_count": 1}, "he": {"_count": 2}, "all": {"_count": 1}, "houseelves": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 3}, "neither": {"_count": 1}, "Mums": {"_count": 1}}, "A": {"_count": 64, "what": {"_count": 2}, "lemon": {"_count": 1}, "low": {"_count": 1}, "ghost": {"_count": 1}, "few": {"_count": 3}, "Nimbus": {"_count": 1}, "murmur": {"_count": 1}, "houseelf": {"_count": 1}, "sudden": {"_count": 1}, "suspicious": {"_count": 1}, "look": {"_count": 1}, "nice": {"_count": 1}, "quest": {"_count": 1}, "load": {"_count": 1}, "a": {"_count": 2}, "letter": {"_count": 1}, "Study": {"_count": 1}, "loud": {"_count": 1}, "thought": {"_count": 1}, "week": {"_count": 1}, "twenty": {"_count": 1}, "cloudless": {"_count": 1}, "Galleon": {"_count": 1}, "wizard": {"_count": 1}, "fine": {"_count": 1}, "student": {"_count": 1}, "grin": {"_count": 1}, "premonition": {"_count": 1}, "Parselmouth": {"_count": 1}, "small": {"_count": 2}, "memo": {"_count": 1}, "Squib": {"_count": 1}, "motherly": {"_count": 1}, "mans": {"_count": 1}, "great": {"_count": 1}, "weapon": {"_count": 1}, "most": {"_count": 1}, "grim": {"_count": 1}, "hundred": {"_count": 1}, "couple": {"_count": 1}, "Wrackspurt": {"_count": 1}, "lot": {"_count": 1}, "stone": {"_count": 1}, "meeting": {"_count": 1}, "hideout": {"_count": 1}, "storeroom": {"_count": 1}, "workshop": {"_count": 1}, "bit": {"_count": 2}, "mere": {"_count": 1}, "Pygmy": {"_count": 1}, "question": {"_count": 1}, "pair": {"_count": 1}, "": {"_count": 1}, "shard": {"_count": 1}, "forest": {"_count": 1}, "jet": {"_count": 1}, "little": {"_count": 1}, "whirl": {"_count": 1}}, "All": {"_count": 24, "this": {"_count": 2}, "what": {"_count": 1}, "right": {"_count": 4}, "my": {"_count": 1}, "that": {"_count": 1}, "those": {"_count": 3}, "searched": {"_count": 1}, "the": {"_count": 3}, "Harry": {"_count": 1}, "righ": {"_count": 1}, "sorts": {"_count": 1}, "in": {"_count": 1}, "academic": {"_count": 1}, "of": {"_count": 1}, "Lupins": {"_count": 1}, "three": {"_count": 1}}, "About": {"_count": 6, "why": {"_count": 1}, "what": {"_count": 1}, "how": {"_count": 1}, "both": {"_count": 1}, "Draco": {"_count": 1}, "half": {"_count": 1}}, "faltered": {"_count": 1, "Professor": {"_count": 1}}, "Its": {"_count": 69, "just": {"_count": 2}, "not": {"_count": 9}, "an": {"_count": 1}, "gettin": {"_count": 1}, "our": {"_count": 1}, "been": {"_count": 3}, "sort": {"_count": 1}, "obvious": {"_count": 1}, "the": {"_count": 4}, "all": {"_count": 2}, "too": {"_count": 1}, "that": {"_count": 2}, "about": {"_count": 2}, "on": {"_count": 1}, "called": {"_count": 1}, "upstairs": {"_count": 1}, "what": {"_count": 3}, "bewitched": {"_count": 1}, "a": {"_count": 5}, "never": {"_count": 1}, "possible": {"_count": 2}, "more": {"_count": 1}, "quite": {"_count": 1}, "urgent": {"_count": 2}, "her": {"_count": 1}, "two": {"_count": 1}, "over": {"_count": 2}, "had": {"_count": 1}, "very": {"_count": 1}, "liquid": {"_count": 1}, "": {"_count": 1}, "none": {"_count": 1}, "left": {"_count": 1}, "one": {"_count": 1}, "impossible": {"_count": 1}, "okay": {"_count": 1}, "Fred": {"_count": 1}, "my": {"_count": 1}, "everywhere": {"_count": 1}, "something": {"_count": 1}, "got": {"_count": 2}, "real": {"_count": 1}}, "We": {"_count": 61, "can": {"_count": 2}, "must": {"_count": 2}, "were": {"_count": 7}, "have": {"_count": 2}, "thought": {"_count": 2}, "dont": {"_count": 2}, "need": {"_count": 4}, "had": {"_count": 1}, "weve": {"_count": 1}, "didnt": {"_count": 3}, "lost": {"_count": 1}, "could": {"_count": 2}, "ave": {"_count": 1}, "helped": {"_count": 1}, "both": {"_count": 3}, "went": {"_count": 1}, "that": {"_count": 1}, "gave": {"_count": 1}, "havent": {"_count": 2}, "do": {"_count": 2}, "guessed": {"_count": 1}, "are": {"_count": 3}, "": {"_count": 1}, "saw": {"_count": 1}, "on": {"_count": 1}, "believe": {"_count": 1}, "wondered": {"_count": 1}, "couldnt": {"_count": 1}, "decided": {"_count": 1}, "call": {"_count": 1}, "found": {"_count": 1}, "only": {"_count": 1}, "tell": {"_count": 1}, "switch": {"_count": 1}, "shall": {"_count": 1}, "sent": {"_count": 1}, "still": {"_count": 1}, "cant": {"_count": 1}}, "Yes": {"_count": 186, "said": {"_count": 85}, "please": {"_count": 2}, "": {"_count": 11}, "Arthur": {"_count": 1}, "Headmaster": {"_count": 1}, "Harry": {"_count": 9}, "I": {"_count": 15}, "havent": {"_count": 1}, "well": {"_count": 2}, "she": {"_count": 1}, "hed": {"_count": 1}, "he": {"_count": 7}, "sir": {"_count": 7}, "but": {"_count": 7}, "Master": {"_count": 2}, "yes": {"_count": 4}, "here": {"_count": 1}, "we": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}, "Professor": {"_count": 2}, "Mr": {"_count": 2}, "it": {"_count": 2}, "Phineas": {"_count": 1}, "indeed": {"_count": 2}, "came": {"_count": 1}, "dear": {"_count": 1}, "when": {"_count": 1}, "thanks": {"_count": 1}, "Im": {"_count": 2}, "hes": {"_count": 1}, "they": {"_count": 1}, "there": {"_count": 1}, "mmy": {"_count": 1}, "all": {"_count": 1}, "Ariana": {"_count": 1}, "Barry": {"_count": 1}, "whispered": {"_count": 1}, "of": {"_count": 1}, "River": {"_count": 1}, "its": {"_count": 1}}, "Ive": {"_count": 39, "come": {"_count": 1}, "ggot": {"_count": 1}, "got": {"_count": 10}, "tried": {"_count": 1}, "been": {"_count": 7}, "asked": {"_count": 1}, "heard": {"_count": 2}, "already": {"_count": 5}, "waited": {"_count": 1}, "just": {"_count": 2}, "told": {"_count": 2}, "used": {"_count": 1}, "never": {"_count": 1}, "really": {"_count": 1}, "always": {"_count": 1}, "fixed": {"_count": 1}, "no": {"_count": 1}}, "cried": {"_count": 5, "Professor": {"_count": 2}, "Hermione": {"_count": 2}, "Mrs": {"_count": 1}}, "repeated": {"_count": 36, "Professor": {"_count": 2}, "Ron": {"_count": 4}, "Mr": {"_count": 2}, "Mundungus": {"_count": 1}, "Harry": {"_count": 10}, "Lockhart": {"_count": 1}, "Umbridge": {"_count": 2}, "Magorian": {"_count": 1}, "Bellatrix": {"_count": 2}, "the": {"_count": 3}, "Snape": {"_count": 1}, "Riddle": {"_count": 1}, "Hestia": {"_count": 1}, "Hermione": {"_count": 3}, "Phineas": {"_count": 1}, "Aberforth": {"_count": 1}}, "These": {"_count": 7, "people": {"_count": 1}, "words": {"_count": 1}, "furious": {"_count": 1}, "demembers": {"_count": 1}, "things": {"_count": 1}, "girls": {"_count": 1}, "dreadful": {"_count": 1}}, "Professor": {"_count": 44, "McGonagall": {"_count": 13}, "Dumbledore": {"_count": 2}, "Snape": {"_count": 5}, "Severus": {"_count": 1}, "Binns": {"_count": 1}, "Lupin": {"_count": 2}, "Trelawneys": {"_count": 1}, "Trelawney": {"_count": 7}, "McGonagalls": {"_count": 1}, "GrubblyPlank": {"_count": 2}, "GrubblyPlanks": {"_count": 1}, "Umbridge": {"_count": 5}, "no": {"_count": 1}, "": {"_count": 2}}, "She": {"_count": 99, "eyed": {"_count": 1}, "said": {"_count": 3}, "doesnt": {"_count": 1}, "and": {"_count": 1}, "has": {"_count": 1}, "nibbled": {"_count": 1}, "left": {"_count": 1}, "pointed": {"_count": 2}, "was": {"_count": 11}, "does": {"_count": 1}, "grabbed": {"_count": 1}, "bustled": {"_count": 1}, "wouldnt": {"_count": 1}, "she": {"_count": 1}, "thought": {"_count": 2}, "turned": {"_count": 2}, "Banished": {"_count": 1}, "wasnt": {"_count": 1}, "had": {"_count": 3}, "reported": {"_count": 1}, "repeated": {"_count": 1}, "gave": {"_count": 1}, "flung": {"_count": 1}, "raised": {"_count": 1}, "spotted": {"_count": 1}, "couldve": {"_count": 1}, "indicated": {"_count": 1}, "blinked": {"_count": 1}, "looked": {"_count": 10}, "got": {"_count": 2}, "glanced": {"_count": 1}, "squeezed": {"_count": 1}, "too": {"_count": 1}, "fell": {"_count": 1}, "snatched": {"_count": 1}, "sold": {"_count": 1}, "didnt": {"_count": 1}, "must": {"_count": 1}, "did": {"_count": 2}, "took": {"_count": 2}, "paused": {"_count": 1}, "hesitated": {"_count": 1}, "nodded": {"_count": 3}, "never": {"_count": 1}, "cant": {"_count": 1}, "likes": {"_count": 1}, "": {"_count": 2}, "rose": {"_count": 1}, "told": {"_count": 1}, "stormed": {"_count": 1}, "laughed": {"_count": 1}, "stared": {"_count": 2}, "remembered": {"_count": 1}, "came": {"_count": 1}, "could": {"_count": 2}, "lingered": {"_count": 1}, "gazed": {"_count": 1}, "deserved": {"_count": 1}, "tugged": {"_count": 1}, "reached": {"_count": 1}, "saw": {"_count": 1}, "struggled": {"_count": 1}, "sat": {"_count": 1}, "closed": {"_count": 1}, "threw": {"_count": 1}}, "Borrowed": {"_count": 1, "it": {"_count": 1}}, "No": {"_count": 228, "sir": {"_count": 4}, "thanks": {"_count": 2}, "one": {"_count": 11}, "Harry": {"_count": 10}, "said": {"_count": 81}, "need": {"_count": 1}, "wonder": {"_count": 1}, "Im": {"_count": 5}, "": {"_count": 18}, "Charlie": {"_count": 1}, "I": {"_count": 20}, "problem": {"_count": 1}, "idea": {"_count": 11}, "no": {"_count": 11}, "card": {"_count": 1}, "message": {"_count": 1}, "weeping": {"_count": 1}, "Minister": {"_count": 1}, "the": {"_count": 1}, "of": {"_count": 5}, "Dumbledore": {"_count": 1}, "he": {"_count": 7}, "its": {"_count": 3}, "Weasley": {"_count": 1}, "but": {"_count": 2}, "it": {"_count": 2}, "whats": {"_count": 1}, "everyones": {"_count": 1}, "they": {"_count": 1}, "Nick": {"_count": 1}, "really": {"_count": 1}, "we": {"_count": 1}, "charge": {"_count": 1}, "Proudfoot": {"_count": 1}, "matter": {"_count": 2}, "Professor": {"_count": 2}, "invite": {"_count": 1}, "joy": {"_count": 1}, "something": {"_count": 1}, "Ron": {"_count": 1}, "listen": {"_count": 1}, "thats": {"_count": 1}, "itll": {"_count": 1}, "choice": {"_count": 1}, "she": {"_count": 2}, "whispered": {"_count": 1}, "never": {"_count": 1}, "Wait": {"_count": 1}}, "whispered": {"_count": 32, "Professor": {"_count": 3}, "Hermione": {"_count": 7}, "Madam": {"_count": 4}, "Harry": {"_count": 2}, "Crouch": {"_count": 1}, "Aunt": {"_count": 1}, "Mrs": {"_count": 3}, "Snape": {"_count": 1}, "Ron": {"_count": 5}, "Bellatrix": {"_count": 1}, "Tonks": {"_count": 1}, "the": {"_count": 1}, "Greyback": {"_count": 1}, "Lily": {"_count": 1}}, "Even": {"_count": 8, "if": {"_count": 2}, "Ludo": {"_count": 1}, "by": {"_count": 2}, "as": {"_count": 1}, "her": {"_count": 2}}, "asked": {"_count": 403, "Hagrid": {"_count": 4}, "Harry": {"_count": 126}, "Seamus": {"_count": 3}, "Percy": {"_count": 2}, "Hermione": {"_count": 56}, "George": {"_count": 4}, "Ron": {"_count": 62}, "Fred": {"_count": 14}, "Snape": {"_count": 7}, "Ginny": {"_count": 11}, "Mr": {"_count": 5}, "Malfoy": {"_count": 2}, "Uncle": {"_count": 2}, "Moody": {"_count": 1}, "Sirius": {"_count": 3}, "Fudge": {"_count": 1}, "Professor": {"_count": 4}, "Neville": {"_count": 5}, "Umbridge": {"_count": 5}, "Parvati": {"_count": 3}, "Dean": {"_count": 3}, "Dumbledore": {"_count": 20}, "Mrs": {"_count": 4}, "Zacharias": {"_count": 1}, "Cho": {"_count": 1}, "Angelina": {"_count": 1}, "the": {"_count": 7}, "Bella": {"_count": 1}, "Bellatrix": {"_count": 1}, "Slughorn": {"_count": 4}, "Bill": {"_count": 2}, "Luna": {"_count": 5}, "Zabini": {"_count": 1}, "Michael": {"_count": 1}, "Riddle": {"_count": 1}, "McLaggen": {"_count": 1}, "Filch": {"_count": 1}, "Voldemort": {"_count": 3}, "Vernon": {"_count": 1}, "Aunt": {"_count": 2}, "Dudley": {"_count": 1}, "Lupin": {"_count": 1}, "Scrimgeour": {"_count": 4}, "Krum": {"_count": 3}, "Mundungus": {"_count": 1}, "a": {"_count": 1}, "Ted": {"_count": 2}, "Dirk": {"_count": 2}, "Phineas": {"_count": 1}, "Lee": {"_count": 3}, "Travers": {"_count": 1}, "Lily": {"_count": 1}, "Albus": {"_count": 1}}, "his": {"_count": 1, "aunt": {"_count": 1}}, "Two": {"_count": 5, "more": {"_count": 2}, "fat": {"_count": 1}, "friends": {"_count": 1}, "figures": {"_count": 1}}, "Dudley": {"_count": 10, "thought": {"_count": 1}, "asked": {"_count": 2}, "who": {"_count": 1}, "came": {"_count": 1}, "said": {"_count": 2}, "snarled": {"_count": 1}, "had": {"_count": 1}, "scrambled": {"_count": 1}}, "said": {"_count": 1760, "Aunt": {"_count": 1}, "Harry": {"_count": 488}, "Hagrid": {"_count": 50}, "the": {"_count": 32}, "Mr": {"_count": 35}, "one": {"_count": 4}, "their": {"_count": 1}, "Ron": {"_count": 353}, "Hermione": {"_count": 188}, "Percy": {"_count": 10}, "Pansy": {"_count": 2}, "Malfoy": {"_count": 24}, "Wood": {"_count": 7}, "Professor": {"_count": 28}, "Filch": {"_count": 2}, "Firenze": {"_count": 1}, "a": {"_count": 23}, "Quirrell": {"_count": 1}, "Dumbledore": {"_count": 43}, "Dudley": {"_count": 2}, "Uncle": {"_count": 13}, "Dobby": {"_count": 2}, "George": {"_count": 25}, "Mrs": {"_count": 18}, "Fred": {"_count": 39}, "Lockhart": {"_count": 5}, "Justin": {"_count": 1}, "Colin": {"_count": 4}, "Snape": {"_count": 31}, "Myrtle": {"_count": 2}, "Ernie": {"_count": 1}, "another": {"_count": 1}, "Riddle": {"_count": 4}, "Dippet": {"_count": 2}, "Lucius": {"_count": 2}, "Dean": {"_count": 7}, "Aragog": {"_count": 2}, "Madam": {"_count": 14}, "Stan": {"_count": 5}, "Fudge": {"_count": 17}, "Rons": {"_count": 4}, "Lavender": {"_count": 2}, "Lupin": {"_count": 23}, "Ginny": {"_count": 12}, "Angelina": {"_count": 2}, "Black": {"_count": 4}, "Seamus": {"_count": 5}, "an": {"_count": 1}, "Wormtail": {"_count": 2}, "Frank": {"_count": 2}, "Bagman": {"_count": 7}, "Hermiones": {"_count": 1}, "Bill": {"_count": 8}, "Charlie": {"_count": 1}, "Nearly": {"_count": 2}, "Moody": {"_count": 15}, "many": {"_count": 1}, "Karkaroff": {"_count": 4}, "Madame": {"_count": 3}, "Rita": {"_count": 9}, "Sirius": {"_count": 20}, "Cedric": {"_count": 1}, "Winky": {"_count": 1}, "Cho": {"_count": 7}, "Parvati": {"_count": 6}, "Fleur": {"_count": 4}, "Krum": {"_count": 1}, "Moodys": {"_count": 1}, "Crouch": {"_count": 2}, "Amos": {"_count": 1}, "Voldemort": {"_count": 11}, "Tonks": {"_count": 5}, "Mundungus": {"_count": 4}, "Kingsley": {"_count": 1}, "Neville": {"_count": 5}, "both": {"_count": 1}, "Umbridges": {"_count": 1}, "Michael": {"_count": 1}, "Zacharias": {"_count": 2}, "several": {"_count": 1}, "Terry": {"_count": 2}, "Luna": {"_count": 9}, "Umbridge": {"_count": 15}, "Phineas": {"_count": 5}, "Nevilles": {"_count": 1}, "Freds": {"_count": 2}, "James": {"_count": 6}, "Magorian": {"_count": 1}, "Nick": {"_count": 1}, "Scrimgeour": {"_count": 5}, "Bellatrix": {"_count": 1}, "Slughorn": {"_count": 10}, "Zabini": {"_count": 1}, "Gaunt": {"_count": 5}, "Ogden": {"_count": 2}, "McLaggen": {"_count": 1}, "Hepzibah": {"_count": 1}, "Ted": {"_count": 1}, "Xenophilius": {"_count": 2}, "yet": {"_count": 1}, "Scabior": {"_count": 2}, "Greyback": {"_count": 1}, "Griphook": {"_count": 1}, "Travers": {"_count": 2}, "Aberforth": {"_count": 6}, "Crabbe": {"_count": 1}, "Lily": {"_count": 1}}, "On": {"_count": 7, "vacation": {"_count": 1}, "and": {"_count": 1}, "this": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 2}, "said": {"_count": 1}}, "The": {"_count": 211, "boa": {"_count": 1}, "zoo": {"_count": 1}, "giant": {"_count": 2}, "little": {"_count": 1}, "Leaky": {"_count": 1}, "Harry": {"_count": 1}, "last": {"_count": 3}, "other": {"_count": 3}, "floor": {"_count": 2}, "Chasers": {"_count": 1}, "hall": {"_count": 1}, "trouble": {"_count": 1}, "next": {"_count": 1}, "games": {"_count": 1}, "answer": {"_count": 2}, "light": {"_count": 1}, "centaur": {"_count": 1}, "Sorcerers": {"_count": 1}, "black": {"_count": 1}, "high": {"_count": 1}, "turban": {"_count": 1}, "Dursleys": {"_count": 2}, "creature": {"_count": 1}, "wizard": {"_count": 2}, "room": {"_count": 2}, "owl": {"_count": 1}, "teapot": {"_count": 1}, "smile": {"_count": 2}, "crowd": {"_count": 1}, "most": {"_count": 1}, "Chamber": {"_count": 1}, "question": {"_count": 1}, "Heir": {"_count": 2}, "same": {"_count": 1}, "assistant": {"_count": 1}, "train": {"_count": 2}, "only": {"_count": 3}, "feast": {"_count": 1}, "Owlery": {"_count": 2}, "class": {"_count": 2}, "Hufflepuffs": {"_count": 1}, "number": {"_count": 2}, "Ministry": {"_count": 2}, "History": {"_count": 1}, "common": {"_count": 1}, "blackmustached": {"_count": 1}, "heat": {"_count": 1}, "map": {"_count": 1}, "important": {"_count": 1}, "Dark": {"_count": 10}, "figure": {"_count": 1}, "dementors": {"_count": 1}, "consequences": {"_count": 1}, "cold": {"_count": 1}, "hammering": {"_count": 1}, "point": {"_count": 1}, "pistons": {"_count": 1}, "one": {"_count": 3}, "laughter": {"_count": 1}, "Invisibility": {"_count": 1}, "Daily": {"_count": 1}, "Prophet": {"_count": 1}, "Fat": {"_count": 1}, "man": {"_count": 3}, "thing": {"_count": 6}, "Triwizard": {"_count": 1}, "very": {"_count": 2}, "champions": {"_count": 1}, "sphinx": {"_count": 1}, "face": {"_count": 1}, "ones": {"_count": 2}, "Burrow": {"_count": 1}, "girl": {"_count": 2}, "weather": {"_count": 1}, "horse": {"_count": 1}, "two": {"_count": 1}, "moment": {"_count": 1}, "Slytherins": {"_count": 2}, "Tornadohater": {"_count": 1}, "whole": {"_count": 2}, "barman": {"_count": 3}, "phrase": {"_count": 1}, "Death": {"_count": 1}, "way": {"_count": 1}, "subject": {"_count": 1}, "classroom": {"_count": 1}, "bell": {"_count": 1}, "elf": {"_count": 2}, "upshot": {"_count": 1}, "silvery": {"_count": 1}, "examination": {"_count": 1}, "": {"_count": 1}, "words": {"_count": 2}, "official": {"_count": 1}, "Minister": {"_count": 1}, "shock": {"_count": 1}, "Unbreakable": {"_count": 1}, "leaflet": {"_count": 1}, "usual": {"_count": 1}, "word": {"_count": 1}, "Muggle": {"_count": 1}, "Imperius": {"_count": 1}, "headmaster": {"_count": 1}, "door": {"_count": 1}, "HalfBlood": {"_count": 1}, "atmosphere": {"_count": 1}, "Chosen": {"_count": 1}, "short": {"_count": 1}, "honest": {"_count": 1}, "three": {"_count": 1}, "snake": {"_count": 1}, "balmy": {"_count": 1}, "library": {"_count": 1}, "blazing": {"_count": 1}, "the": {"_count": 3}, "hilarity": {"_count": 1}, "answers": {"_count": 1}, "unique": {"_count": 1}, "latter": {"_count": 1}, "Fountain": {"_count": 1}, "name": {"_count": 1}, "second": {"_count": 1}, "coup": {"_count": 1}, "silent": {"_count": 1}, "witch": {"_count": 1}, "locket": {"_count": 1}, "noises": {"_count": 1}, "wooden": {"_count": 1}, "muffled": {"_count": 1}, "chapter": {"_count": 1}, "prison": {"_count": 1}, "sword": {"_count": 1}, "CrumpleHorned": {"_count": 1}, "bloody": {"_count": 1}, "trail": {"_count": 1}, "story": {"_count": 1}, "sign": {"_count": 1}, "program": {"_count": 1}, "Mudblood": {"_count": 1}, "dreadfully": {"_count": 1}, "tiny": {"_count": 1}, "goblin": {"_count": 2}, "owner": {"_count": 1}, "spiderlike": {"_count": 1}, "shelf": {"_count": 1}, "sun": {"_count": 1}, "Elder": {"_count": 1}, "idea": {"_count": 1}, "Order": {"_count": 1}, "Carrows": {"_count": 1}, "lost": {"_count": 1}, "ddiadem": {"_count": 1}, "Bloody": {"_count": 1}, "stab": {"_count": 1}, "boy": {"_count": 1}, "childish": {"_count": 1}, "longer": {"_count": 1}, "Peverell": {"_count": 1}, "whisper": {"_count": 2}, "wand": {"_count": 1}, "previous": {"_count": 1}}, "Uncle": {"_count": 9, "Vernon": {"_count": 8}, "Vernons": {"_count": 1}}, "he": {"_count": 425, "asked": {"_count": 106}, "said": {"_count": 176}, "shouted": {"_count": 5}, "hissed": {"_count": 2}, "added": {"_count": 22}, "muttered": {"_count": 5}, "squeaked": {"_count": 3}, "finished": {"_count": 3}, "had": {"_count": 1}, "whispered": {"_count": 16}, "spluttered": {"_count": 1}, "repeated": {"_count": 12}, "wondered": {"_count": 1}, "stammered": {"_count": 1}, "sputtered": {"_count": 1}, "shrieked": {"_count": 2}, "called": {"_count": 8}, "sneered": {"_count": 2}, "roared": {"_count": 5}, "blurted": {"_count": 2}, "gasped": {"_count": 1}, "bellowed": {"_count": 4}, "groaned": {"_count": 1}, "snarled": {"_count": 4}, "growled": {"_count": 5}, "spat": {"_count": 1}, "snapped": {"_count": 1}, "crowed": {"_count": 1}, "shot": {"_count": 3}, "panted": {"_count": 1}, "demanded": {"_count": 8}, "yelled": {"_count": 2}, "kept": {"_count": 1}, "heard": {"_count": 2}, "cried": {"_count": 2}, "tried": {"_count": 1}, "continued": {"_count": 1}, "grunted": {"_count": 2}, "did": {"_count": 1}, "wheezed": {"_count": 1}, "told": {"_count": 1}, "croaked": {"_count": 2}, "was": {"_count": 2}, "hastened": {"_count": 1}, "dropped": {"_count": 1}, "screamed": {"_count": 1}}, "He": {"_count": 274, "had": {"_count": 17}, "chuckled": {"_count": 1}, "wants": {"_count": 2}, "remembers": {"_count": 1}, "laughed": {"_count": 1}, "was": {"_count": 28}, "is": {"_count": 3}, "hadnt": {"_count": 1}, "gasped": {"_count": 1}, "gives": {"_count": 1}, "pointed": {"_count": 6}, "stopped": {"_count": 2}, "looked": {"_count": 22}, "walked": {"_count": 3}, "glared": {"_count": 1}, "rose": {"_count": 1}, "tried": {"_count": 6}, "saved": {"_count": 2}, "smiled": {"_count": 2}, "works": {"_count": 3}, "reached": {"_count": 1}, "watched": {"_count": 1}, "gave": {"_count": 3}, "didnt": {"_count": 9}, "dropped": {"_count": 1}, "glanced": {"_count": 4}, "couldnt": {"_count": 2}, "pulled": {"_count": 2}, "saw": {"_count": 2}, "thought": {"_count": 3}, "and": {"_count": 2}, "scanned": {"_count": 1}, "hasnt": {"_count": 1}, "could": {"_count": 12}, "needed": {"_count": 2}, "did": {"_count": 8}, "folded": {"_count": 1}, "grabbed": {"_count": 1}, "turned": {"_count": 5}, "hesitated": {"_count": 1}, "should": {"_count": 2}, "nodded": {"_count": 3}, "says": {"_count": 1}, "mightve": {"_count": 1}, "really": {"_count": 1}, "imagined": {"_count": 1}, "strode": {"_count": 1}, "felt": {"_count": 2}, "knows": {"_count": 2}, "knew": {"_count": 2}, "Ron": {"_count": 1}, "sat": {"_count": 2}, "would": {"_count": 2}, "wasnt": {"_count": 2}, "handed": {"_count": 2}, "started": {"_count": 1}, "began": {"_count": 1}, "put": {"_count": 1}, "took": {"_count": 1}, "ran": {"_count": 1}, "spoke": {"_count": 1}, "needs": {"_count": 1}, "wouldnt": {"_count": 2}, "cheeked": {"_count": 1}, "left": {"_count": 1}, "must": {"_count": 3}, "stays": {"_count": 1}, "just": {"_count": 1}, "held": {"_count": 2}, "hurried": {"_count": 1}, "crossed": {"_count": 1}, "checked": {"_count": 1}, "adjusted": {"_count": 1}, "Crabbe": {"_count": 1}, "pushed": {"_count": 1}, "said": {"_count": 1}, "feels": {"_count": 1}, "can": {"_count": 1}, "told": {"_count": 4}, "has": {"_count": 1}, "heard": {"_count": 2}, "helped": {"_count": 1}, "looks": {"_count": 2}, "fixed": {"_count": 1}, "mustve": {"_count": 1}, "went": {"_count": 1}, "reflected": {"_count": 1}, "loves": {"_count": 1}, "indicated": {"_count": 1}, "doesnt": {"_count": 3}, "found": {"_count": 2}, "sent": {"_count": 1}, "spun": {"_count": 1}, "he": {"_count": 1}, "stumbled": {"_count": 1}, "": {"_count": 1}, "clenched": {"_count": 1}, "broke": {"_count": 1}, "gazed": {"_count": 1}, "clambered": {"_count": 1}, "opened": {"_count": 3}, "lost": {"_count": 1}, "made": {"_count": 1}, "cant": {"_count": 2}, "lay": {"_count": 1}, "agreed": {"_count": 1}, "wanted": {"_count": 2}, "let": {"_count": 1}, "slipped": {"_count": 1}, "shook": {"_count": 1}, "closed": {"_count": 2}, "were": {"_count": 1}, "well": {"_count": 1}, "probably": {"_count": 1}, "even": {"_count": 1}, "the": {"_count": 1}, "hid": {"_count": 1}, "struggled": {"_count": 1}, "believes": {"_count": 1}, "fears": {"_count": 1}, "desired": {"_count": 1}}, "sneered": {"_count": 7, "Uncle": {"_count": 2}, "Malfoy": {"_count": 2}, "Dudley": {"_count": 1}, "Lucius": {"_count": 1}, "Bellatrix": {"_count": 1}}, "You": {"_count": 167, "dont": {"_count": 12}, "told": {"_count": 2}, "can": {"_count": 3}, "there": {"_count": 1}, "could": {"_count": 4}, "sound": {"_count": 2}, "look": {"_count": 3}, "realize": {"_count": 2}, "have": {"_count": 5}, "got": {"_count": 2}, "know": {"_count": 14}, "made": {"_count": 1}, "were": {"_count": 4}, "definitely": {"_count": 1}, "actually": {"_count": 1}, "shouldve": {"_count": 1}, "cant": {"_count": 6}, "say": {"_count": 2}, "must": {"_count": 3}, "you": {"_count": 2}, "wont": {"_count": 1}, "havent": {"_count": 2}, "think": {"_count": 7}, "wouldnt": {"_count": 3}, "seem": {"_count": 2}, "threw": {"_count": 1}, "werent": {"_count": 1}, "never": {"_count": 2}, "believe": {"_count": 1}, "being": {"_count": 1}, "lousy": {"_count": 1}, "need": {"_count": 3}, "only": {"_count": 1}, "just": {"_count": 2}, "has": {"_count": 1}, "three": {"_count": 1}, "feeling": {"_count": 1}, "shall": {"_count": 1}, "killed": {"_count": 1}, "fool": {"_count": 1}, "": {"_count": 3}, "did": {"_count": 2}, "wanted": {"_count": 1}, "may": {"_count": 4}, "see": {"_count": 1}, "make": {"_count": 1}, "heard": {"_count": 1}, "saw": {"_count": 1}, "go": {"_count": 2}, "support": {"_count": 1}, "should": {"_count": 1}, "ccant": {"_count": 1}, "are": {"_count": 6}, "take": {"_count": 1}, "want": {"_count": 1}, "ought": {"_count": 1}, "reckon": {"_count": 1}, "hear": {"_count": 1}, "mean": {"_count": 3}, "do": {"_count": 1}, "all": {"_count": 1}, "disgusting": {"_count": 1}, "A": {"_count": 1}, "die": {"_count": 1}, "saved": {"_count": 1}, "left": {"_count": 1}, "handed": {"_count": 1}, "screamed": {"_count": 1}, "couldnt": {"_count": 1}, "stay": {"_count": 1}, "remember": {"_count": 1}, "swore": {"_count": 1}, "didnt": {"_count": 1}, "breed": {"_count": 1}, "knew": {"_count": 2}, "managed": {"_count": 1}, "and": {"_count": 1}, "owe": {"_count": 1}, "brought": {"_count": 1}, "said": {"_count": 2}, "Know": {"_count": 1}, "send": {"_count": 1}, "alone": {"_count": 1}, "arent": {"_count": 1}, "will": {"_count": 1}, "dare": {"_count": 1}}, "Watching": {"_count": 1, "spying": {"_count": 1}}, "Should": {"_count": 5, "we": {"_count": 1}, "I": {"_count": 3}, "he": {"_count": 1}}, "Tell": {"_count": 11, "them": {"_count": 1}, "me": {"_count": 6}, "Mummy": {"_count": 1}, "us": {"_count": 2}, "the": {"_count": 1}}, "That": {"_count": 38, "evening": {"_count": 1}, "was": {"_count": 5}, "that": {"_count": 2}, "is": {"_count": 5}, "remains": {"_count": 1}, "Hagrid": {"_count": 1}, "reminds": {"_count": 1}, "brings": {"_count": 1}, "friend": {"_count": 1}, "Umbridge": {"_count": 1}, "Im": {"_count": 1}, "would": {"_count": 2}, "sneak": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "old": {"_count": 1}, "Slytherin": {"_count": 1}, "Bell": {"_count": 1}, "seemed": {"_count": 1}, "you": {"_count": 2}, "clock": {"_count": 1}, "lunatic": {"_count": 1}, "Dumbledore": {"_count": 1}, "wasnt": {"_count": 1}, "said": {"_count": 1}, "boys": {"_count": 1}, "head": {"_count": 1}}, "Only": {"_count": 11, "I": {"_count": 1}, "Ive": {"_count": 1}, "said": {"_count": 1}, "Rons": {"_count": 1}, "once": {"_count": 1}, "if": {"_count": 3}, "Harry": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "Aunt": {"_count": 8, "Petunia": {"_count": 6}, "Marge": {"_count": 2}}, "Was": {"_count": 32, "the": {"_count": 3}, "he": {"_count": 10}, "it": {"_count": 11}, "Moody": {"_count": 1}, "Cedric": {"_count": 1}, "she": {"_count": 2}, "there": {"_count": 2}, "this": {"_count": 1}, "Dumbledore": {"_count": 1}}, "One": {"_count": 10, "minute": {"_count": 1}, "speed": {"_count": 1}, "falls": {"_count": 1}, "of": {"_count": 5}, "day": {"_count": 1}, "more": {"_count": 1}}, "barked": {"_count": 7, "Hagrid": {"_count": 1}, "Professor": {"_count": 2}, "the": {"_count": 1}, "Crouch": {"_count": 1}, "Uncle": {"_count": 2}}, "Hagrid": {"_count": 45, "thundered": {"_count": 1}, "looked": {"_count": 5}, "he": {"_count": 1}, "said": {"_count": 4}, "raised": {"_count": 1}, "asked": {"_count": 5}, "shuffled": {"_count": 1}, "murmured": {"_count": 1}, "was": {"_count": 1}, "came": {"_count": 1}, "whispered": {"_count": 2}, "called": {"_count": 1}, "sidled": {"_count": 1}, "held": {"_count": 1}, "yelled": {"_count": 1}, "bellowed": {"_count": 1}, "opened": {"_count": 1}, "s": {"_count": 1}, "muttered": {"_count": 1}, "I": {"_count": 1}, "flinched": {"_count": 1}, "cant": {"_count": 1}, "youve": {"_count": 1}, "hastily": {"_count": 1}, "repeated": {"_count": 1}, "echoed": {"_count": 1}, "gave": {"_count": 1}, "nodded": {"_count": 1}, "added": {"_count": 1}, "fell": {"_count": 1}, "who": {"_count": 1}, "talk": {"_count": 1}, "where": {"_count": 1}}, "My": {"_count": 26, "my": {"_count": 2}, "mother": {"_count": 2}, "dear": {"_count": 4}, "mum": {"_count": 1}, "memory": {"_count": 1}, "Lord": {"_count": 3}, "God": {"_count": 1}, "brothers": {"_count": 1}, "name": {"_count": 2}, "father": {"_count": 2}, "Aunt": {"_count": 1}, "information": {"_count": 1}, "orders": {"_count": 1}, "grandmother": {"_count": 1}, "thoughts": {"_count": 1}, "wand": {"_count": 1}, "favorite": {"_count": 1}}, "Yeh": {"_count": 7, "don": {"_count": 2}, "look": {"_count": 1}, "walk": {"_count": 1}, "yehre": {"_count": 1}, "all": {"_count": 1}, "got": {"_count": 1}}, "Never": {"_count": 13, "told": {"_count": 1}, "made": {"_count": 1}, "heard": {"_count": 1}, "croaked": {"_count": 1}, "trust": {"_count": 1}, "you": {"_count": 2}, "been": {"_count": 1}, "said": {"_count": 1}, "mind": {"_count": 4}}, "Kept": {"_count": 1, "what": {"_count": 1}}, "gasped": {"_count": 9, "Harry": {"_count": 3}, "Madam": {"_count": 1}, "Aunt": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 3}}, "An": {"_count": 13, "I": {"_count": 1}, "you": {"_count": 1}, "an": {"_count": 1}, "ugly": {"_count": 1}, "apparition": {"_count": 1}, "gives": {"_count": 1}, "Excuse": {"_count": 1}, "owl": {"_count": 1}, "empty": {"_count": 1}, "admirably": {"_count": 1}, "electric": {"_count": 1}, "awful": {"_count": 1}, "old": {"_count": 1}}, "Gallopin": {"_count": 1, "Gorgons": {"_count": 1}}, "Knew": {"_count": 1, "": {"_count": 1}}, "Oh": {"_count": 162, "she": {"_count": 3}, "yeah": {"_count": 18}, "of": {"_count": 1}, "were": {"_count": 1}, "we": {"_count": 1}, "come": {"_count": 5}, "right": {"_count": 3}, "yes": {"_count": 23}, "youre": {"_count": 1}, "all": {"_count": 2}, "Ron": {"_count": 1}, "I": {"_count": 8}, "that": {"_count": 2}, "youve": {"_count": 1}, "Harry": {"_count": 5}, "said": {"_count": 6}, "no": {"_count": 17}, "it": {"_count": 2}, "this": {"_count": 2}, "Fred": {"_count": 1}, "go": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 10}, "thats": {"_count": 2}, "Cedric": {"_count": 1}, "but": {"_count": 1}, "not": {"_count": 2}, "he": {"_count": 3}, "Ill": {"_count": 2}, "Im": {"_count": 2}, "its": {"_count": 4}, "my": {"_count": 2}, "forget": {"_count": 1}, "dont": {"_count": 2}, "brilliant": {"_count": 1}, "oh": {"_count": 1}, "theres": {"_count": 1}, "can": {"_count": 1}, "damn": {"_count": 1}, "hell": {"_count": 1}, "a": {"_count": 1}, "theyre": {"_count": 1}, "very": {"_count": 1}, "be": {"_count": 1}, "drop": {"_count": 1}, "well": {"_count": 2}, "fine": {"_count": 1}, "will": {"_count": 1}, "Dean": {"_count": 1}, "something": {"_count": 1}, "weaker": {"_count": 1}, "now": {"_count": 1}, "Rons": {"_count": 1}, "blimey": {"_count": 1}, "just": {"_count": 1}, "please": {"_count": 1}, "they": {"_count": 1}}, "What": {"_count": 148, "happened": {"_count": 9}, "they": {"_count": 1}, "if": {"_count": 16}, "did": {"_count": 12}, "about": {"_count": 5}, "are": {"_count": 11}, "was": {"_count": 8}, "dyou": {"_count": 9}, "have": {"_count": 5}, "do": {"_count": 9}, "re": {"_count": 1}, "": {"_count": 29}, "a": {"_count": 1}, "country": {"_count": 1}, "is": {"_count": 6}, "gold": {"_count": 1}, "were": {"_count": 1}, "would": {"_count": 2}, "you": {"_count": 1}, "on": {"_count": 1}, "does": {"_count": 2}, "else": {"_count": 2}, "other": {"_count": 1}, "can": {"_count": 1}, "subject": {"_count": 1}, "will": {"_count": 2}, "danger": {"_count": 1}, "had": {"_count": 1}, "like": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "House": {"_count": 1}, "has": {"_count": 1}, "impostors": {"_count": 1}, "hiding": {"_count": 1}, "message": {"_count": 1}}, "Gulpin": {"_count": 1, "gargoyles": {"_count": 1}}, "Good": {"_count": 6, "question": {"_count": 1}, "evening": {"_count": 1}, "idea": {"_count": 1}, "point": {"_count": 1}, "Lord": {"_count": 1}, "lord": {"_count": 1}}, "Some": {"_count": 4, "say": {"_count": 1}, "of": {"_count": 2}, "people": {"_count": 1}}, "Him": {"_count": 1, "": {"_count": 1}}, "How": {"_count": 68, "could": {"_count": 9}, "do": {"_count": 7}, "can": {"_count": 5}, "are": {"_count": 2}, "many": {"_count": 3}, "does": {"_count": 2}, "did": {"_count": 10}, "about": {"_count": 2}, "exactly": {"_count": 1}, "long": {"_count": 1}, "what": {"_count": 1}, "how": {"_count": 2}, "very": {"_count": 1}, "you": {"_count": 3}, "": {"_count": 3}, "much": {"_count": 3}, "old": {"_count": 1}, "am": {"_count": 1}, "come": {"_count": 3}, "dyou": {"_count": 4}, "would": {"_count": 1}, "soon": {"_count": 1}, "quickly": {"_count": 1}, "was": {"_count": 1}}, "Hed": {"_count": 10, "spent": {"_count": 1}, "seen": {"_count": 1}, "almost": {"_count": 1}, "escaped": {"_count": 1}, "have": {"_count": 2}, "be": {"_count": 2}, "probably": {"_count": 1}, "never": {"_count": 1}}, "Hadnt": {"_count": 6, "he": {"_count": 2}, "it": {"_count": 2}, "James": {"_count": 1}, "Snape": {"_count": 1}}, "Mm": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 161, "if": {"_count": 4}, "before": {"_count": 5}, "he": {"_count": 11}, "Wood": {"_count": 1}, "Hermione": {"_count": 7}, "even": {"_count": 3}, "I": {"_count": 14}, "you": {"_count": 6}, "Lockhart": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 8}, "Ginny": {"_count": 2}, "no": {"_count": 4}, "Malfoys": {"_count": 1}, "Ron": {"_count": 2}, "Harry": {"_count": 10}, "then": {"_count": 7}, "nobody": {"_count": 1}, "they": {"_count": 3}, "": {"_count": 4}, "Memory": {"_count": 1}, "Dudley": {"_count": 1}, "weve": {"_count": 1}, "a": {"_count": 1}, "why": {"_count": 4}, "Mrs": {"_count": 1}, "my": {"_count": 1}, "Hogwarts": {"_count": 1}, "an": {"_count": 1}, "this": {"_count": 2}, "theyre": {"_count": 3}, "Madame": {"_count": 1}, "it": {"_count": 2}, "Dumbledore": {"_count": 5}, "what": {"_count": 6}, "come": {"_count": 1}, "we": {"_count": 1}, "who": {"_count": 1}, "last": {"_count": 1}, "at": {"_count": 1}, "Marietta": {"_count": 1}, "when": {"_count": 1}, "whether": {"_count": 1}, "Grawp": {"_count": 1}, "Master": {"_count": 1}, "now": {"_count": 1}, "there": {"_count": 2}, "his": {"_count": 1}, "as": {"_count": 1}, "youre": {"_count": 1}, "next": {"_count": 1}, "almost": {"_count": 1}, "Miss": {"_count": 1}, "surely": {"_count": 1}, "has": {"_count": 1}, "how": {"_count": 3}, "said": {"_count": 1}, "Your": {"_count": 1}, "Malfoy": {"_count": 1}, "of": {"_count": 1}, "Mundungus": {"_count": 1}, "whats": {"_count": 1}, "she": {"_count": 1}, "Harrys": {"_count": 1}, "after": {"_count": 1}, "Neville": {"_count": 1}, "all": {"_count": 1}}, "Just": {"_count": 25, "the": {"_count": 1}, "having": {"_count": 1}, "to": {"_count": 2}, "one": {"_count": 2}, "before": {"_count": 1}, "in": {"_count": 2}, "because": {"_count": 1}, "get": {"_count": 1}, "send": {"_count": 1}, "just": {"_count": 1}, "now": {"_count": 1}, "you": {"_count": 1}, "like": {"_count": 2}, "that": {"_count": 1}, "two": {"_count": 1}, "dont": {"_count": 1}, "trying": {"_count": 1}, "some": {"_count": 1}, "for": {"_count": 1}, "as": {"_count": 1}, "something": {"_count": 1}}, "Yeah": {"_count": 116, "so": {"_count": 1}, "but": {"_count": 5}, "said": {"_count": 36}, "hes": {"_count": 1}, "yer": {"_count": 1}, "thats": {"_count": 4}, "I": {"_count": 20}, "": {"_count": 9}, "he": {"_count": 2}, "thanks": {"_count": 2}, "all": {"_count": 3}, "Ron": {"_count": 1}, "give": {"_count": 1}, "really": {"_count": 1}, "it": {"_count": 3}, "you": {"_count": 1}, "okay": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 1}, "someone": {"_count": 1}, "youre": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "Im": {"_count": 1}, "mumbled": {"_count": 1}, "well": {"_count": 3}, "we": {"_count": 1}, "his": {"_count": 2}, "of": {"_count": 3}, "maybe": {"_count": 1}, "what": {"_count": 1}, "youve": {"_count": 1}, "a": {"_count": 1}, "theyre": {"_count": 1}, "Fred": {"_count": 1}, "right": {"_count": 1}}, "Come": {"_count": 17, "on": {"_count": 5}, "and": {"_count": 2}, "to": {"_count": 2}, "off": {"_count": 5}, "out": {"_count": 1}, "now": {"_count": 1}, "through": {"_count": 1}}, "Of": {"_count": 41, "course": {"_count": 37}, "of": {"_count": 1}, "how": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}}, "Why": {"_count": 68, "": {"_count": 11}, "arent": {"_count": 1}, "didnt": {"_count": 4}, "wasnt": {"_count": 2}, "shouldnt": {"_count": 1}, "not": {"_count": 4}, "was": {"_count": 4}, "do": {"_count": 5}, "wouldn": {"_count": 1}, "else": {"_count": 2}, "are": {"_count": 5}, "has": {"_count": 1}, "hadnt": {"_count": 2}, "had": {"_count": 2}, "couldnt": {"_count": 3}, "I": {"_count": 3}, "does": {"_count": 3}, "doesnt": {"_count": 1}, "isnt": {"_count": 1}, "did": {"_count": 5}, "my": {"_count": 1}, "would": {"_count": 1}, "with": {"_count": 1}, "have": {"_count": 1}, "is": {"_count": 1}, "wouldnt": {"_count": 1}, "\u2018got": {"_count": 1}}, "Blimey": {"_count": 4, "Harry": {"_count": 2}, "I": {"_count": 1}, "no": {"_count": 1}}, "Things": {"_count": 1, "these": {"_count": 1}}, "Wanted": {"_count": 1, "one": {"_count": 1}}, "Were": {"_count": 19, "there": {"_count": 1}, "fifty": {"_count": 1}, "breaking": {"_count": 1}, "not": {"_count": 4}, "doing": {"_count": 2}, "doin": {"_count": 1}, "you": {"_count": 2}, "in": {"_count": 1}, "having": {"_count": 1}, "with": {"_count": 1}, "going": {"_count": 2}, "fine": {"_count": 1}, "Lily": {"_count": 1}}, "Might": {"_count": 6, "this": {"_count": 1}, "be": {"_count": 2}, "I": {"_count": 1}, "bring": {"_count": 1}, "as": {"_count": 1}}, "Cant": {"_count": 11, "Tom": {"_count": 1}, "you": {"_count": 2}, "get": {"_count": 1}, "be": {"_count": 3}, "I": {"_count": 1}, "see": {"_count": 1}, "do": {"_count": 1}, "think": {"_count": 1}}, "DDefense": {"_count": 1, "Against": {"_count": 1}}, "Told": {"_count": 2, "yeh": {"_count": 1}, "them": {"_count": 1}}, "Vampires": {"_count": 1, "": {"_count": 1}}, "Hags": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 15, "head": {"_count": 2}, "mouth": {"_count": 2}, "mind": {"_count": 3}, "heart": {"_count": 4}, "legs": {"_count": 1}, "musings": {"_count": 1}, "thoughts": {"_count": 1}, "gaze": {"_count": 1}}, "Got": {"_count": 6, "it": {"_count": 1}, "time": {"_count": 1}, "a": {"_count": 1}, "summat": {"_count": 1}, "away": {"_count": 1}, "there": {"_count": 1}}, "Stalagmites": {"_count": 1, "got": {"_count": 1}}, "the": {"_count": 8, "boy": {"_count": 1}, "face": {"_count": 1}, "Fat": {"_count": 1}, "last": {"_count": 1}, "old": {"_count": 1}, "man": {"_count": 1}, "violet": {"_count": 1}, "drunkest": {"_count": 1}}, "Mmm": {"_count": 1, "said": {"_count": 1}}, "Hes": {"_count": 38, "the": {"_count": 1}, "not": {"_count": 1}, "lost": {"_count": 1}, "crying": {"_count": 1}, "friends": {"_count": 1}, "here": {"_count": 1}, "got": {"_count": 7}, "unbelievable": {"_count": 1}, "from": {"_count": 2}, "Karkaroffs": {"_count": 1}, "okay": {"_count": 1}, "returned": {"_count": 1}, "feeling": {"_count": 1}, "one": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 4}, "hung": {"_count": 1}, "dot": {"_count": 1}, "sixteen": {"_count": 1}, "never": {"_count": 1}, "oldern": {"_count": 1}, "your": {"_count": 1}, "dead": {"_count": 3}, "loyal": {"_count": 1}, "fighting": {"_count": 1}, "ill": {"_count": 1}}, "Where": {"_count": 27, "are": {"_count": 4}, "was": {"_count": 5}, "": {"_count": 2}, "were": {"_count": 4}, "did": {"_count": 3}, "is": {"_count": 2}, "does": {"_count": 1}, "have": {"_count": 1}, "what": {"_count": 1}, "do": {"_count": 2}, "would": {"_count": 1}, "else": {"_count": 1}}, "Theyre": {"_count": 14, "dead": {"_count": 1}, "just": {"_count": 1}, "very": {"_count": 1}, "not": {"_count": 3}, "excellent": {"_count": 1}, "a": {"_count": 1}, "supposed": {"_count": 1}, "used": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "locked": {"_count": 1}, "evacuating": {"_count": 1}}, "They": {"_count": 79, "were": {"_count": 7}, "just": {"_count": 1}, "can": {"_count": 3}, "looked": {"_count": 3}, "stepped": {"_count": 1}, "loathed": {"_count": 1}, "have": {"_count": 1}, "wouldnt": {"_count": 1}, "dont": {"_count": 2}, "called": {"_count": 1}, "heard": {"_count": 2}, "go": {"_count": 1}, "didnt": {"_count": 3}, "set": {"_count": 1}, "live": {"_count": 1}, "don": {"_count": 1}, "call": {"_count": 1}, "theyve": {"_count": 1}, "will": {"_count": 2}, "cant": {"_count": 1}, "havent": {"_count": 2}, "climbed": {"_count": 1}, "couldnt": {"_count": 1}, "couldve": {"_count": 1}, "who": {"_count": 2}, "bowed": {"_count": 1}, "returned": {"_count": 1}, "are": {"_count": 1}, "guard": {"_count": 1}, "want": {"_count": 1}, "all": {"_count": 5}, "reported": {"_count": 1}, "hurried": {"_count": 1}, "met": {"_count": 1}, "do": {"_count": 2}, "passed": {"_count": 1}, "nodded": {"_count": 1}, "told": {"_count": 1}, "wandered": {"_count": 1}, "would": {"_count": 1}, "already": {"_count": 1}, "might": {"_count": 1}, "shook": {"_count": 2}, "think": {"_count": 1}, "sometimes": {"_count": 1}, "shouldnt": {"_count": 1}, "explained": {"_count": 1}, "could": {"_count": 1}, "suffered": {"_count": 1}, "gazed": {"_count": 1}, "had": {"_count": 1}, "werent": {"_count": 1}, "sealed": {"_count": 1}, "did": {"_count": 1}, "must": {"_count": 1}, "stood": {"_count": 1}}, "School": {"_count": 2, "Houses": {"_count": 1}, "rules": {"_count": 1}}, "Years": {"_count": 1, "an": {"_count": 1}}, "Er": {"_count": 45, "well": {"_count": 1}, "yes": {"_count": 5}, "The": {"_count": 1}, "not": {"_count": 1}, "yeah": {"_count": 4}, "of": {"_count": 1}, "": {"_count": 13}, "said": {"_count": 9}, "Professor": {"_count": 1}, "okay": {"_count": 1}, "no": {"_count": 2}, "before": {"_count": 1}, "nothing": {"_count": 1}, "now": {"_count": 1}, "isnt": {"_count": 1}, "where": {"_count": 1}, "whats": {"_count": 1}}, "Not": {"_count": 44, "to": {"_count": 3}, "even": {"_count": 1}, "a": {"_count": 3}, "as": {"_count": 3}, "kill": {"_count": 1}, "now": {"_count": 2}, "if": {"_count": 1}, "that": {"_count": 1}, "spew": {"_count": 1}, "the": {"_count": 1}, "sure": {"_count": 1}, "unless": {"_count": 1}, "this": {"_count": 2}, "bad": {"_count": 3}, "really": {"_count": 4}, "much": {"_count": 1}, "messing": {"_count": 1}, "today": {"_count": 1}, "scared": {"_count": 1}, "yet": {"_count": 1}, "great": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}, "not": {"_count": 1}, "so": {"_count": 1}, "particularly": {"_count": 1}, "you": {"_count": 1}, "at": {"_count": 2}, "exactly": {"_count": 1}, "far": {"_count": 1}}, "Yer": {"_count": 2, "very": {"_count": 1}, "expect": {"_count": 1}}, "Im": {"_count": 51, "famous": {"_count": 1}, "going": {"_count": 2}, "boiling": {"_count": 1}, "glad": {"_count": 1}, "staying": {"_count": 1}, "Im": {"_count": 2}, "drinking": {"_count": 1}, "a": {"_count": 4}, "rather": {"_count": 1}, "sorry": {"_count": 2}, "afraid": {"_count": 2}, "telling": {"_count": 1}, "keeping": {"_count": 2}, "sure": {"_count": 1}, "trying": {"_count": 1}, "not": {"_count": 13}, "getting": {"_count": 1}, "okay": {"_count": 1}, "talking": {"_count": 1}, "actually": {"_count": 1}, "meeting": {"_count": 1}, "asking": {"_count": 2}, "here": {"_count": 1}, "Head": {"_count": 1}, "Morfin": {"_count": 1}, "really": {"_count": 1}, "fine": {"_count": 2}, "very": {"_count": 1}, "just": {"_count": 1}}, "Grunt": {"_count": 1, "": {"_count": 1}}, "Nine": {"_count": 2, "and": {"_count": 1}, "oclock": {"_count": 1}}, "Sorry": {"_count": 7, "George": {"_count": 2}, "said": {"_count": 2}, "": {"_count": 2}, "but": {"_count": 1}}, "Now": {"_count": 18, "the": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 3}, "Mum": {"_count": 1}, "Ive": {"_count": 1}, "Im": {"_count": 1}, "we": {"_count": 1}, "why": {"_count": 1}, "Harry": {"_count": 1}, "come": {"_count": 2}, "you": {"_count": 1}, "they": {"_count": 1}, "as": {"_count": 1}, "listen": {"_count": 1}, "if": {"_count": 1}}, "Rons": {"_count": 9, "new": {"_count": 1}, "voice": {"_count": 2}, "and": {"_count": 1}, "prefect": {"_count": 1}, "ears": {"_count": 2}, "mouth": {"_count": 1}, "taken": {"_count": 1}}, "George": {"_count": 7, "": {"_count": 1}, "demanded": {"_count": 1}, "asked": {"_count": 3}, "leapt": {"_count": 1}, "be": {"_count": 1}}, "Are": {"_count": 23, "you": {"_count": 20}, "we": {"_count": 2}, "yeh": {"_count": 1}}, "Coming": {"_count": 4, "Mom": {"_count": 1}, "back": {"_count": 1}, "through": {"_count": 1}, "next": {"_count": 1}}, "Weve": {"_count": 16, "never": {"_count": 1}, "eaten": {"_count": 1}, "got": {"_count": 4}, "had": {"_count": 1}, "come": {"_count": 1}, "gone": {"_count": 1}, "told": {"_count": 1}, "already": {"_count": 1}, "seen": {"_count": 1}, "been": {"_count": 3}, "always": {"_count": 1}}, "Guess": {"_count": 2, "who": {"_count": 1}, "what": {"_count": 1}}, "Know": {"_count": 4, "who": {"_count": 2}, "what": {"_count": 1}, "where": {"_count": 1}}, "Who": {"_count": 28, "": {"_count": 5}, "opened": {"_count": 1}, "exactly": {"_count": 1}, "screamed": {"_count": 1}, "did": {"_count": 2}, "is": {"_count": 3}, "conjured": {"_count": 1}, "re": {"_count": 1}, "was": {"_count": 2}, "must": {"_count": 1}, "had": {"_count": 1}, "yeh": {"_count": 1}, "cares": {"_count": 1}, "do": {"_count": 1}, "are": {"_count": 3}, "taught": {"_count": 1}, "were": {"_count": 1}, "could": {"_count": 1}}, "Asked": {"_count": 1, "him": {"_count": 1}}, "Their": {"_count": 3, "mother": {"_count": 1}, "robes": {"_count": 1}, "eyes": {"_count": 1}}, "Fred": {"_count": 13, "and": {"_count": 6}, "gave": {"_count": 1}, "George": {"_count": 1}, "said": {"_count": 1}, "passed": {"_count": 1}, "asked": {"_count": 3}}, "Ron": {"_count": 207, "blurted": {"_count": 2}, "sounded": {"_count": 2}, "asked": {"_count": 47}, "glared": {"_count": 1}, "muttered": {"_count": 11}, "grinned": {"_count": 1}, "didnt": {"_count": 2}, "bellowed": {"_count": 3}, "whispered": {"_count": 7}, "Look": {"_count": 1}, "called": {"_count": 3}, "gasped": {"_count": 3}, "gulped": {"_count": 1}, "was": {"_count": 5}, "and": {"_count": 6}, "": {"_count": 7}, "repeated": {"_count": 2}, "shook": {"_count": 4}, "said": {"_count": 29}, "stared": {"_count": 1}, "rubbed": {"_count": 1}, "hasnt": {"_count": 1}, "roared": {"_count": 1}, "hissed": {"_count": 2}, "stood": {"_count": 1}, "mouthed": {"_count": 1}, "however": {"_count": 2}, "sighed": {"_count": 1}, "added": {"_count": 1}, "kept": {"_count": 1}, "had": {"_count": 2}, "interrupted": {"_count": 1}, "hesitated": {"_count": 1}, "began": {"_count": 2}, "raised": {"_count": 1}, "gave": {"_count": 3}, "suggested": {"_count": 3}, "went": {"_count": 1}, "chose": {"_count": 1}, "yelled": {"_count": 2}, "looked": {"_count": 6}, "held": {"_count": 1}, "demanded": {"_count": 8}, "ejaculated": {"_count": 1}, "moaned": {"_count": 1}, "opened": {"_count": 1}, "murmured": {"_count": 1}, "yelped": {"_count": 1}, "dragged": {"_count": 1}, "told": {"_count": 1}, "get": {"_count": 1}, "turned": {"_count": 1}, "blinked": {"_count": 1}, "continued": {"_count": 1}, "started": {"_count": 1}, "laughed": {"_count": 1}, "it": {"_count": 2}, "passed": {"_count": 1}, "rolled": {"_count": 1}, "snorted": {"_count": 1}, "swung": {"_count": 1}, "Dumbledore": {"_count": 1}, "stab": {"_count": 1}, "shouted": {"_count": 1}, "explained": {"_count": 1}, "stopped": {"_count": 1}, "fidgeted": {"_count": 1}}, "Horrible": {"_count": 1, "well": {"_count": 1}}, "Starving": {"_count": 1, "said": {"_count": 1}}, "Sprouts": {"_count": 1, "": {"_count": 1}}, "Nevilles": {"_count": 3, "lost": {"_count": 1}, "lips": {"_count": 1}, "mother": {"_count": 1}}, "Lets": {"_count": 6, "see": {"_count": 2}, "think": {"_count": 1}, "go": {"_count": 2}, "find": {"_count": 1}}, "Nothing": {"_count": 25, "thats": {"_count": 1}, "said": {"_count": 8}, "shrugged": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}, "else": {"_count": 1}, "whatsoever": {"_count": 1}, "nothing": {"_count": 2}, "at": {"_count": 1}, "much": {"_count": 1}, "like": {"_count": 1}, "in": {"_count": 1}, "lied": {"_count": 1}, "Kreacher": {"_count": 1}, "happened": {"_count": 1}, "but": {"_count": 1}}, "Malfoy": {"_count": 20, "sneered": {"_count": 1}, "looked": {"_count": 2}, "called": {"_count": 2}, "elbowed": {"_count": 1}, "said": {"_count": 1}, "repeated": {"_count": 3}, "let": {"_count": 1}, "turned": {"_count": 1}, "was": {"_count": 1}, "laughed": {"_count": 1}, "sounded": {"_count": 1}, "shrugged": {"_count": 1}, "pulled": {"_count": 1}, "shot": {"_count": 1}, "demanded": {"_count": 1}, "taunted": {"_count": 1}}, "Youd": {"_count": 4, "better": {"_count": 2}, "be": {"_count": 1}, "want": {"_count": 1}}, "Youll": {"_count": 5, "be": {"_count": 2}, "get": {"_count": 1}, "find": {"_count": 2}}, "Hagrids": {"_count": 5, "big": {"_count": 1}, "hint": {"_count": 1}, "sobs": {"_count": 1}, "unobscured": {"_count": 1}, "nose": {"_count": 1}}, "Mind": {"_count": 3, "yer": {"_count": 1}, "I": {"_count": 2}}, "shouted": {"_count": 19, "Hagrid": {"_count": 1}, "Seamus": {"_count": 2}, "Malfoy": {"_count": 1}, "Mr": {"_count": 1}, "Ron": {"_count": 4}, "Professor": {"_count": 1}, "Sirius": {"_count": 1}, "a": {"_count": 2}, "Ginny": {"_count": 1}, "Snape": {"_count": 2}, "Harry": {"_count": 2}, "Lucius": {"_count": 1}}, "In": {"_count": 28, "front": {"_count": 1}, "a": {"_count": 2}, "stinking": {"_count": 1}, "the": {"_count": 8}, "here": {"_count": 1}, "excellent": {"_count": 1}, "all": {"_count": 1}, "case": {"_count": 1}, "my": {"_count": 2}, "this": {"_count": 1}, "Madam": {"_count": 1}, "his": {"_count": 2}, "Borgin": {"_count": 1}, "fact": {"_count": 1}, "that": {"_count": 1}, "which": {"_count": 1}, "living": {"_count": 1}, "in": {"_count": 1}}, "Sir": {"_count": 10, "Nicholas": {"_count": 2}, "I": {"_count": 1}, "Cadogan": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 2}, "Ive": {"_count": 1}}, "Gryffindors": {"_count": 1, "have": {"_count": 1}}, "There": {"_count": 67, "was": {"_count": 48}, "are": {"_count": 4}, "wont": {"_count": 1}, "is": {"_count": 7}, "wasnt": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 2}, "will": {"_count": 1}, "werent": {"_count": 1}, "we": {"_count": 1}}, "Next": {"_count": 2, "to": {"_count": 1}, "time": {"_count": 1}}, "Did": {"_count": 38, "you": {"_count": 17}, "this": {"_count": 2}, "he": {"_count": 8}, "anyone": {"_count": 1}, "they": {"_count": 2}, "it": {"_count": 2}, "Mrs": {"_count": 1}, "I": {"_count": 1}, "she": {"_count": 3}, "Voldemort": {"_count": 1}}, "Whispers": {"_count": 1, "followed": {"_count": 1}}, "Powdered": {"_count": 1, "root": {"_count": 1}}, "Hermione": {"_count": 148, "stretched": {"_count": 1}, "hung": {"_count": 1}, "asked": {"_count": 29}, "squeaked": {"_count": 1}, "was": {"_count": 2}, "whispered": {"_count": 15}, "said": {"_count": 14}, "pointed": {"_count": 1}, "snatched": {"_count": 1}, "raised": {"_count": 3}, "wondered": {"_count": 1}, "stammered": {"_count": 1}, "let": {"_count": 1}, "pressed": {"_count": 1}, "": {"_count": 2}, "snapped": {"_count": 1}, "looked": {"_count": 10}, "put": {"_count": 1}, "checked": {"_count": 1}, "hissed": {"_count": 1}, "had": {"_count": 1}, "threw": {"_count": 1}, "opened": {"_count": 2}, "carried": {"_count": 1}, "suggested": {"_count": 3}, "stared": {"_count": 2}, "often": {"_count": 1}, "who": {"_count": 2}, "stood": {"_count": 1}, "went": {"_count": 1}, "blushed": {"_count": 1}, "shot": {"_count": 1}, "shrugged": {"_count": 1}, "shook": {"_count": 2}, "turned": {"_count": 1}, "repeated": {"_count": 2}, "continued": {"_count": 1}, "Granger": {"_count": 1}, "cried": {"_count": 1}, "read": {"_count": 1}, "cast": {"_count": 1}, "gave": {"_count": 2}, "did": {"_count": 2}, "and": {"_count": 2}, "interjected": {"_count": 1}, "ripped": {"_count": 1}, "glanced": {"_count": 1}, "breathed": {"_count": 1}, "nodded": {"_count": 2}, "demanded": {"_count": 3}, "I": {"_count": 2}, "inquired": {"_count": 1}, "it": {"_count": 1}, "Sirius": {"_count": 1}, "seemed": {"_count": 1}, "cant": {"_count": 1}, "rummaged": {"_count": 1}, "laughed": {"_count": 1}, "squealed": {"_count": 1}, "took": {"_count": 1}, "began": {"_count": 1}, "OW": {"_count": 1}, "finished": {"_count": 1}, "retorted": {"_count": 1}, "give": {"_count": 1}, "screamed": {"_count": 1}}, "Snape": {"_count": 40, "was": {"_count": 3}, "gave": {"_count": 2}, "set": {"_count": 1}, "s": {"_count": 2}, "said": {"_count": 5}, "had": {"_count": 1}, "whispered": {"_count": 1}, "suddenly": {"_count": 1}, "turned": {"_count": 1}, "added": {"_count": 1}, "handed": {"_count": 1}, "asked": {"_count": 4}, "raised": {"_count": 1}, "eyed": {"_count": 1}, "stared": {"_count": 1}, "let": {"_count": 1}, "looked": {"_count": 3}, "continued": {"_count": 1}, "killed": {"_count": 1}, "hated": {"_count": 1}, "nodded": {"_count": 1}, "made": {"_count": 1}, "": {"_count": 1}, "could": {"_count": 1}, "hesitated": {"_count": 1}, "gaped": {"_count": 1}, "never": {"_count": 1}}, "At": {"_count": 17, "this": {"_count": 5}, "five": {"_count": 1}, "first": {"_count": 1}, "last": {"_count": 1}, "once": {"_count": 1}, "the": {"_count": 5}, "least": {"_count": 1}, "your": {"_count": 1}, "Hogwarts": {"_count": 1}}, "Neville": {"_count": 10, "whimpered": {"_count": 1}, "was": {"_count": 2}, "looked": {"_count": 1}, "are": {"_count": 1}, "asked": {"_count": 2}, "took": {"_count": 1}, "had": {"_count": 1}, "dismissed": {"_count": 1}}, "Thought": {"_count": 4, "hed": {"_count": 1}, "wrong": {"_count": 2}, "youd": {"_count": 1}}, "Thats": {"_count": 37, "another": {"_count": 1}, "unicorn": {"_count": 1}, "what": {"_count": 1}, "a": {"_count": 2}, "not": {"_count": 1}, "right": {"_count": 12}, "it": {"_count": 2}, "the": {"_count": 3}, "exactly": {"_count": 2}, "enough": {"_count": 2}, "all": {"_count": 2}, "great": {"_count": 1}, "why": {"_count": 1}, "my": {"_count": 1}, "just": {"_count": 1}, "Xenophilius": {"_count": 1}, "certainly": {"_count": 1}, "thats": {"_count": 1}, "important": {"_count": 1}}, "Cheer": {"_count": 1, "up": {"_count": 1}}, "Yet": {"_count": 5, "Harry": {"_count": 1}, "again": {"_count": 1}, "life": {"_count": 1}, "how": {"_count": 1}, "you": {"_count": 1}}, "9": {"_count": 1, "THE": {"_count": 1}}, "Malfoys": {"_count": 3, "got": {"_count": 1}, "pale": {"_count": 2}}, "Give": {"_count": 4, "it": {"_count": 1}, "me": {"_count": 1}, "them": {"_count": 1}, "us": {"_count": 1}}, "Up": {"_count": 1, "the": {"_count": 1}}, "Wood": {"_count": 6, "": {"_count": 1}, "panted": {"_count": 1}, "thundered": {"_count": 1}, "wasnt": {"_count": 1}, "paced": {"_count": 1}, "lice": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "Absolutely": {"_count": 1, "said": {"_count": 1}}, "Youre": {"_count": 12, "a": {"_count": 1}, "giving": {"_count": 1}, "free": {"_count": 1}, "very": {"_count": 1}, "sure": {"_count": 1}, "on": {"_count": 1}, "still": {"_count": 1}, "staying": {"_count": 1}, "joking": {"_count": 3}, "": {"_count": 1}}, "Throw": {"_count": 1, "it": {"_count": 1}}, "breathed": {"_count": 9, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}, "Madam": {"_count": 1}, "Hermione": {"_count": 2}, "the": {"_count": 1}, "Aunt": {"_count": 1}, "Ginny": {"_count": 1}, "Greyback": {"_count": 1}}, "Tut": {"_count": 1, "tut": {"_count": 1}}, "Filch": {"_count": 5, "was": {"_count": 1}, "snarled": {"_count": 1}, "s": {"_count": 1}, "said": {"_count": 1}, "stopped": {"_count": 1}}, "Shant": {"_count": 1, "say": {"_count": 1}}, "Gringotts": {"_count": 1, "was": {"_count": 1}}, "came": {"_count": 6, "an": {"_count": 1}, "Malfoys": {"_count": 1}, "the": {"_count": 2}, "Madam": {"_count": 1}, "a": {"_count": 1}}, "Whats": {"_count": 25, "basketball": {"_count": 1}, "that": {"_count": 2}, "going": {"_count": 4}, "happening": {"_count": 1}, "he": {"_count": 6}, "wrong": {"_count": 4}, "the": {"_count": 2}, "happened": {"_count": 3}, "this": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Three": {"_count": 2, "Chasers": {"_count": 1}, "days": {"_count": 1}}, "Search": {"_count": 2, "me": {"_count": 2}}, "Wheeling": {"_count": 1, "around": {"_count": 1}}, "Dunno": {"_count": 15, "but": {"_count": 1}, "said": {"_count": 9}, "": {"_count": 2}, "Ron": {"_count": 1}, "what": {"_count": 1}, "muttered": {"_count": 1}}, "but": {"_count": 9, "by": {"_count": 1}, "thought": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}, "when": {"_count": 1}, "her": {"_count": 1}, "had": {"_count": 1}, "there": {"_count": 1}}, "Getting": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "Nope": {"_count": 4, "said": {"_count": 3}, "theyre": {"_count": 1}}, "Seamus": {"_count": 6, "whispered": {"_count": 1}, "choked": {"_count": 1}, "Finnigan": {"_count": 1}, "asked": {"_count": 1}, "looked": {"_count": 1}, "sounded": {"_count": 1}}, "moaned": {"_count": 1, "Ron": {"_count": 1}}, "Leave": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "Hoping": {"_count": 1, "to": {"_count": 1}}, "Bit": {"_count": 5, "keen": {"_count": 1}, "unnatural": {"_count": 1}, "grouchy": {"_count": 1}, "further": {"_count": 1}, "like": {"_count": 1}}, "Send": {"_count": 1, "him": {"_count": 1}}, "Had": {"_count": 21, "it": {"_count": 1}, "he": {"_count": 7}, "to": {"_count": 1}, "they": {"_count": 3}, "the": {"_count": 1}, "Dumbledore": {"_count": 5}, "Ron": {"_count": 1}, "she": {"_count": 1}, "some": {"_count": 1}}, "Before": {"_count": 5, "he": {"_count": 1}, "Hermione": {"_count": 1}, "they": {"_count": 1}, "Ginny": {"_count": 1}, "Harry": {"_count": 1}}, "Percy": {"_count": 5, "Weasley": {"_count": 2}, "asked": {"_count": 1}, "had": {"_count": 1}, "hissed": {"_count": 1}}, "Something": {"_count": 13, "held": {"_count": 1}, "huge": {"_count": 1}, "in": {"_count": 1}, "we": {"_count": 1}, "goods": {"_count": 1}, "I": {"_count": 1}, "go": {"_count": 1}, "creaked": {"_count": 1}, "gleamed": {"_count": 1}, "she": {"_count": 1}, "to": {"_count": 1}, "like": {"_count": 1}, "that": {"_count": 1}}, "squawked": {"_count": 3, "the": {"_count": 1}, "Umbridge": {"_count": 1}, "Muriel": {"_count": 1}}, "After": {"_count": 4, "what": {"_count": 2}, "ten": {"_count": 1}, "all": {"_count": 1}}, "Can": {"_count": 16, "I": {"_count": 6}, "you": {"_count": 8}, "we": {"_count": 1}, "he": {"_count": 1}}, "Obviously": {"_count": 2, "youve": {"_count": 1}, "said": {"_count": 1}}, "Look": {"_count": 9, "read": {"_count": 1}, "Snape": {"_count": 1}, "said": {"_count": 2}, "at": {"_count": 2}, "what": {"_count": 2}, "after": {"_count": 1}}, "Anyone": {"_count": 1, "want": {"_count": 1}}, "Bbbut": {"_count": 1, "Severus": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "Beats": {"_count": 2, "me": {"_count": 2}}, "Someone": {"_count": 7, "was": {"_count": 2}, "acting": {"_count": 1}, "laughed": {"_count": 1}, "set": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 1}}, "Thanks": {"_count": 4, "for": {"_count": 1}, "Mrs": {"_count": 1}, "Kreacher": {"_count": 1}, "a": {"_count": 1}}, "By": {"_count": 6, "the": {"_count": 3}, "you": {"_count": 1}, "next": {"_count": 1}, "an": {"_count": 1}}, "Hurry": {"_count": 1, "up": {"_count": 1}}, "Snot": {"_count": 1, "your": {"_count": 1}}, "Yehll": {"_count": 2, "do": {"_count": 1}, "enjoy": {"_count": 1}}, "Silvery": {"_count": 1, "stuff": {"_count": 1}}, "Get": {"_count": 9, "yer": {"_count": 1}, "out": {"_count": 2}, "down": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "up": {"_count": 1}, "it": {"_count": 1}}, "To": {"_count": 10, "the": {"_count": 1}, "nobodys": {"_count": 1}, "ask": {"_count": 1}, "give": {"_count": 1}, "live": {"_count": 1}, "see": {"_count": 1}, "find": {"_count": 1}, "what": {"_count": 1}, "hell": {"_count": 1}, "murder": {"_count": 1}}, "Erm": {"_count": 4, "A": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}}, "Ronan": {"_count": 2, "didnt": {"_count": 1}, "pawed": {"_count": 1}}, "Anythin": {"_count": 1, "unusual": {"_count": 1}}, "Mars": {"_count": 1, "is": {"_count": 1}}, "Theres": {"_count": 7, "a": {"_count": 3}, "only": {"_count": 1}, "money": {"_count": 1}, "still": {"_count": 1}, "no": {"_count": 1}}, "Bane": {"_count": 1, "walked": {"_count": 1}}, "Nah": {"_count": 6, "if": {"_count": 1}, "it": {"_count": 2}, "he": {"_count": 1}, "theyre": {"_count": 1}, "they": {"_count": 1}}, "Do": {"_count": 27, "you": {"_count": 14}, "not": {"_count": 5}, "we": {"_count": 1}, "what": {"_count": 1}, "your": {"_count": 1}, "everything": {"_count": 1}, "I": {"_count": 1}, "either": {"_count": 1}, "it": {"_count": 2}}, "growled": {"_count": 11, "Bane": {"_count": 1}, "Ron": {"_count": 1}, "Uncle": {"_count": 1}, "Moody": {"_count": 4}, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}, "Greyback": {"_count": 2}}, "Centaurs": {"_count": 1, "are": {"_count": 1}}, "Firenze": {"_count": 2, "bellowed": {"_count": 1}, "slowed": {"_count": 1}}, "Or": {"_count": 31, "have": {"_count": 2}, "well": {"_count": 1}, "is": {"_count": 5}, "instructions": {"_count": 1}, "had": {"_count": 5}, "did": {"_count": 1}, "our": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 2}, "the": {"_count": 1}, "that": {"_count": 2}, "you": {"_count": 1}, "peraps": {"_count": 1}, "he": {"_count": 1}, "perhaps": {"_count": 1}, "on": {"_count": 1}, "could": {"_count": 1}, "are": {"_count": 1}, "dear": {"_count": 1}, "has": {"_count": 1}}, "panted": {"_count": 4, "Hermione": {"_count": 1}, "Hagrid": {"_count": 1}, "Bellatrix": {"_count": 1}, "Ron": {"_count": 1}}, "Lucky": {"_count": 2, "they": {"_count": 1}, "I": {"_count": 1}}, "Mighta": {"_count": 1, "come": {"_count": 1}}, "So": {"_count": 36, "I": {"_count": 3}, "useful": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}, "Harry": {"_count": 2}, "they": {"_count": 1}, "thats": {"_count": 1}, "she": {"_count": 1}, "if": {"_count": 2}, "": {"_count": 2}, "it": {"_count": 1}, "said": {"_count": 1}, "youll": {"_count": 1}, "how": {"_count": 2}, "youve": {"_count": 1}, "what": {"_count": 3}, "when": {"_count": 1}, "hes": {"_count": 1}, "er": {"_count": 1}, "you": {"_count": 2}, "that": {"_count": 1}, "basically": {"_count": 1}, "sir": {"_count": 1}, "theyd": {"_count": 1}, "why": {"_count": 1}, "Id": {"_count": 1}}, "Dyou": {"_count": 10, "think": {"_count": 4}, "know": {"_count": 1}, "reckon": {"_count": 4}, "realize": {"_count": 1}}, "Id": {"_count": 10, "better": {"_count": 1}, "have": {"_count": 1}, "still": {"_count": 1}, "love": {"_count": 3}, "probably": {"_count": 1}, "be": {"_count": 1}, "take": {"_count": 1}, "tell": {"_count": 1}}, "Right": {"_count": 9, "said": {"_count": 5}, "follow": {"_count": 1}, "then": {"_count": 2}, "Dudley": {"_count": 1}}, "were": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 2, "likes": {"_count": 1}, "looked": {"_count": 1}}, "Hell": {"_count": 1, "be": {"_count": 1}}, "Positive": {"_count": 3, "said": {"_count": 3}}, "Quirrell": {"_count": 1, "laughed": {"_count": 1}}, "Certainly": {"_count": 13, "": {"_count": 2}, "said": {"_count": 5}, "Harry": {"_count": 1}, "good": {"_count": 1}, "Hermione": {"_count": 1}, "not": {"_count": 2}, "he": {"_count": 1}}, "Unfortunately": {"_count": 2, "while": {"_count": 1}, "Belby": {"_count": 1}}, "Help": {"_count": 3, "me": {"_count": 1}, "yerself": {"_count": 1}, "yourself": {"_count": 1}}, "Dumbledore": {"_count": 50, "sighed": {"_count": 2}, "said": {"_count": 5}, "isnt": {"_count": 1}, "Hagrid": {"_count": 1}, "looked": {"_count": 3}, "wouldnt": {"_count": 1}, "you": {"_count": 1}, "smiled": {"_count": 1}, "gave": {"_count": 1}, "held": {"_count": 1}, "asked": {"_count": 3}, "s": {"_count": 2}, "trusts": {"_count": 1}, "surveyed": {"_count": 1}, "suggested": {"_count": 1}, "pointed": {"_count": 1}, "considered": {"_count": 1}, "bowed": {"_count": 1}, "had": {"_count": 2}, "raised": {"_count": 1}, "reckons": {"_count": 1}, "did": {"_count": 3}, "says": {"_count": 1}, "set": {"_count": 1}, "chuckled": {"_count": 1}, "shook": {"_count": 1}, "dead": {"_count": 1}, "wanted": {"_count": 1}, "left": {"_count": 1}, "trusted": {"_count": 1}, "what": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "took": {"_count": 1}, "knew": {"_count": 1}, "turned": {"_count": 1}, "beamed": {"_count": 1}}, "Your": {"_count": 15, "mother": {"_count": 2}, "father": {"_count": 1}, "part": {"_count": 1}, "elf": {"_count": 1}, "guess": {"_count": 1}, "unlikely": {"_count": 1}, "Wheezy": {"_count": 1}, "forest": {"_count": 1}, "punching": {"_count": 1}, "scars": {"_count": 1}, "defenses": {"_count": 1}, "adversary": {"_count": 1}, "wand": {"_count": 1}, "mum": {"_count": 1}}, "Ah": {"_count": 22, "your": {"_count": 1}, "now": {"_count": 1}, "if": {"_count": 1}, "sir": {"_count": 2}, "yes": {"_count": 5}, "": {"_count": 3}, "some": {"_count": 1}, "Hermione": {"_count": 1}, "no": {"_count": 1}, "said": {"_count": 4}, "well": {"_count": 1}, "dont": {"_count": 1}}, "\u2018to": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 10, "hurtled": {"_count": 1}, "Madam": {"_count": 1}, "when": {"_count": 1}, "then": {"_count": 2}, "take": {"_count": 1}, "Moody": {"_count": 1}, "I": {"_count": 1}, "was": {"_count": 1}, "even": {"_count": 1}}, "snarled": {"_count": 5, "Uncle": {"_count": 1}, "Snape": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Greyback": {"_count": 1}}, "Ill": {"_count": 21, "be": {"_count": 4}, "call": {"_count": 1}, "come": {"_count": 2}, "tell": {"_count": 3}, "understand": {"_count": 1}, "send": {"_count": 1}, "explain": {"_count": 2}, "bet": {"_count": 1}, "have": {"_count": 2}, "leave": {"_count": 1}, "give": {"_count": 2}, "offer": {"_count": 1}}, "Theyll": {"_count": 8, "love": {"_count": 1}, "be": {"_count": 3}, "need": {"_count": 1}, "make": {"_count": 1}, "say": {"_count": 1}, "know": {"_count": 1}}, "Vernon": {"_count": 3, "tells": {"_count": 1}, "": {"_count": 1}, "Dursley": {"_count": 1}}, "From": {"_count": 5, "any": {"_count": 1}, "the": {"_count": 1}, "whom": {"_count": 1}, "Professor": {"_count": 1}, "Goblin": {"_count": 1}}, "Havent": {"_count": 3, "you": {"_count": 2}, "been": {"_count": 1}}, "Better": {"_count": 6, "not": {"_count": 1}, "get": {"_count": 1}, "wizards": {"_count": 1}, "reason": {"_count": 1}, "go": {"_count": 1}, "said": {"_count": 1}}, "Dobby": {"_count": 17, "sir": {"_count": 1}, "doubts": {"_count": 1}, "made": {"_count": 1}, "shook": {"_count": 1}, "bowed": {"_count": 1}, "shuffled": {"_count": 1}, "has": {"_count": 2}, "cant": {"_count": 1}, "was": {"_count": 2}, "says": {"_count": 1}, "asked": {"_count": 1}, "expects": {"_count": 1}, "she": {"_count": 1}, "nodded": {"_count": 1}, "": {"_count": 1}}, "Escape": {"_count": 1, "": {"_count": 1}}, "Almost": {"_count": 2, "at": {"_count": 2}}, "Would": {"_count": 19, "someone": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 8}, "anyone": {"_count": 1}, "Moody": {"_count": 1}, "Mrs": {"_count": 1}, "you": {"_count": 2}, "Nevilles": {"_count": 1}, "there": {"_count": 1}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Locked": {"_count": 1, "in": {"_count": 1}}, "Must": {"_count": 2, "be": {"_count": 2}}, "Our": {"_count": 3, "owl": {"_count": 1}, "departments": {"_count": 1}, "headmaster": {"_count": 1}}, "never": {"_count": 2, "as": {"_count": 1}, "saw": {"_count": 1}}, "Mrs": {"_count": 13, "Weasley": {"_count": 9}, "Weasleys": {"_count": 1}, "Cattermole": {"_count": 3}}, "Very": {"_count": 15, "pleased": {"_count": 1}, "true": {"_count": 1}, "haunted": {"_count": 1}, "slowly": {"_count": 1}, "badly": {"_count": 1}, "good": {"_count": 4}, "well": {"_count": 1}, "important": {"_count": 1}, "much": {"_count": 1}, "said": {"_count": 1}, "handsome": {"_count": 1}, "happy": {"_count": 1}}, "\u2018Let": {"_count": 1, "me": {"_count": 1}}, "interrupted": {"_count": 3, "Draco": {"_count": 1}, "Professor": {"_count": 1}, "Riddle": {"_count": 1}}, "Hello": {"_count": 1, "Hagrid": {"_count": 1}}, "Lost": {"_count": 2, "control": {"_count": 1}, "in": {"_count": 1}}, "Have": {"_count": 17, "you": {"_count": 13}, "they": {"_count": 1}, "a": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}}, "croaked": {"_count": 8, "Ron": {"_count": 1}, "Hagrid": {"_count": 1}, "Sirius": {"_count": 1}, "Kreacher": {"_count": 2}, "Fred": {"_count": 1}, "Doge": {"_count": 1}, "Ollivander": {"_count": 1}}, "Greenhouse": {"_count": 1, "three": {"_count": 1}}, "Judging": {"_count": 1, "by": {"_count": 1}}, "Plenty": {"_count": 3, "of": {"_count": 1}, "left": {"_count": 1}, "plenty": {"_count": 1}}, "Hermiones": {"_count": 4, "hand": {"_count": 4}}, "Signed": {"_count": 1, "photos": {"_count": 1}}, "Loud": {"_count": 1, "and": {"_count": 1}}, "Gilderoy": {"_count": 1, "Lockhart": {"_count": 1}}, "2": {"_count": 1, "": {"_count": 1}}, "3": {"_count": 1, "": {"_count": 1}}, "Half": {"_count": 2, "an": {"_count": 2}}, "roared": {"_count": 12, "Ron": {"_count": 1}, "Uncle": {"_count": 2}, "Aunt": {"_count": 1}, "Black": {"_count": 1}, "Amos": {"_count": 1}, "Fudge": {"_count": 1}, "Sirius": {"_count": 1}, "Hagrid": {"_count": 1}, "Greyback": {"_count": 1}, "the": {"_count": 1}, "Crabbe": {"_count": 1}}, "six": {"_count": 1, "or": {"_count": 1}}, "Werent": {"_count": 1, "you": {"_count": 1}}, "Is": {"_count": 30, "that": {"_count": 10}, "he": {"_count": 3}, "Longbottom": {"_count": 1}, "there": {"_count": 1}, "it": {"_count": 8}, "she": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 1}, "Firenze": {"_count": 1}, "my": {"_count": 1}, "this": {"_count": 1}, "everyone": {"_count": 1}}, "Colin": {"_count": 2, "asked": {"_count": 1}, "had": {"_count": 1}}, "Any": {"_count": 4, "questions": {"_count": 1}, "chance": {"_count": 1}, "wizard": {"_count": 1}, "of": {"_count": 1}}, "called": {"_count": 13, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "Harry": {"_count": 2}, "Hagrid": {"_count": 1}, "Malfoy": {"_count": 1}, "a": {"_count": 2}, "Voldemort": {"_count": 1}, "Madam": {"_count": 1}, "Lucius": {"_count": 1}, "another": {"_count": 1}, "George": {"_count": 1}}, "squealed": {"_count": 3, "Hermione": {"_count": 1}, "Angelina": {"_count": 1}, "Pettigrew": {"_count": 1}}, "Furious": {"_count": 1, "Harry": {"_count": 1}}, "Lockhart": {"_count": 2, "was": {"_count": 1}, "stared": {"_count": 1}}, "Perhaps": {"_count": 10, "youre": {"_count": 1}, "a": {"_count": 1}, "Amos": {"_count": 1}, "shed": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "hell": {"_count": 1}, "Doge": {"_count": 1}, "not": {"_count": 1}, "she": {"_count": 1}}, "Great": {"_count": 2, "Scott": {"_count": 1}, "said": {"_count": 1}}, "Keeping": {"_count": 2, "his": {"_count": 1}, "an": {"_count": 1}}, "Anything": {"_count": 4, "I": {"_count": 2}, "said": {"_count": 1}, "else": {"_count": 1}}, "Find": {"_count": 1, "yourself": {"_count": 1}}, "Ever": {"_count": 1, "been": {"_count": 1}}, "Nearly": {"_count": 6, "Headless": {"_count": 3}, "wet": {"_count": 1}, "finished": {"_count": 1}, "Ginny": {"_count": 1}}, "Fat": {"_count": 1, "Myrtle": {"_count": 1}}, "Head": {"_count": 1, "still": {"_count": 1}}, "This": {"_count": 27, "way": {"_count": 1}, "Harry": {"_count": 2}, "feels": {"_count": 1}, "is": {"_count": 6}, "dog": {"_count": 1}, "was": {"_count": 3}, "": {"_count": 2}, "room": {"_count": 1}, "this": {"_count": 1}, "human": {"_count": 1}, "will": {"_count": 1}, "has": {"_count": 1}, "potion": {"_count": 1}, "house": {"_count": 1}, "had": {"_count": 1}, "isnt": {"_count": 1}, "girl": {"_count": 1}, "picture": {"_count": 1}}, "Attracted": {"_count": 1, "no": {"_count": 1}}, "choked": {"_count": 1, "Filch": {"_count": 1}}, "Course": {"_count": 11, "I": {"_count": 6}, "we": {"_count": 1}, "not": {"_count": 2}, "they": {"_count": 1}, "said": {"_count": 1}}, "Granger": {"_count": 2, "Professor": {"_count": 1}, "": {"_count": 1}}, "Please": {"_count": 3, "sir": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 1}}, "Nonsense": {"_count": 1, "OFlaherty": {"_count": 1}}, "Someones": {"_count": 3, "mopped": {"_count": 1}, "coming": {"_count": 1}, "dead": {"_count": 1}}, "muttered": {"_count": 8, "Ron": {"_count": 2}, "Malfoy": {"_count": 1}, "Harry": {"_count": 3}, "Dumbledore": {"_count": 1}, "George": {"_count": 1}}, "Gryffindor": {"_count": 3, "against": {"_count": 1}, "had": {"_count": 1}, "came": {"_count": 1}}, "Shredded": {"_count": 1, "skin": {"_count": 1}}, "yelled": {"_count": 13, "Malfoy": {"_count": 2}, "Hermione": {"_count": 1}, "Cedrics": {"_count": 1}, "Uncle": {"_count": 1}, "a": {"_count": 1}, "Fudge": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 2}, "Crabbe": {"_count": 1}, "Ron": {"_count": 1}}, "Bludgers": {"_count": 1, "never": {"_count": 1}}, "Youve": {"_count": 7, "got": {"_count": 4}, "been": {"_count": 1}, "found": {"_count": 1}, "still": {"_count": 1}}, "Dobbys": {"_count": 1, "lip": {"_count": 1}}, "Madam": {"_count": 4, "Pomfrey": {"_count": 2}, "Bones": {"_count": 1}, "Malkin": {"_count": 1}}, "Fine": {"_count": 8, "said": {"_count": 2}, "thanks": {"_count": 2}, "Harry": {"_count": 1}, "lied": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "Knowing": {"_count": 1, "Snape": {"_count": 1}}, "Excellent": {"_count": 3, "": {"_count": 3}}, "Scared": {"_count": 1, "": {"_count": 1}}, "Listen": {"_count": 6, "if": {"_count": 2}, "said": {"_count": 2}, "to": {"_count": 1}, "what": {"_count": 1}}, "Enemies": {"_count": 1, "of": {"_count": 1}}, "Ernie": {"_count": 3, "lowered": {"_count": 1}, "asked": {"_count": 1}, "suddenly": {"_count": 1}}, "Canceled": {"_count": 1, "said": {"_count": 1}}, "Whys": {"_count": 1, "Potter": {"_count": 1}}, "people": {"_count": 1, "asked": {"_count": 1}}, "Whose": {"_count": 2, "hair": {"_count": 1}, "voice": {"_count": 1}}, "Goyles": {"_count": 1, "low": {"_count": 1}}, "Crabbe": {"_count": 4, "holds": {"_count": 1}, "Goyle": {"_count": 1}, "and": {"_count": 1}, "turned": {"_count": 1}}, "Wh": {"_count": 1, "oh": {"_count": 1}}, "Ha": {"_count": 3, "ha": {"_count": 2}, "": {"_count": 1}}, "Far": {"_count": 1, "too": {"_count": 1}}, "glugged": {"_count": 1, "Myrtle": {"_count": 1}}, "Dont": {"_count": 26, "ask": {"_count": 3}, "let": {"_count": 1}, "want": {"_count": 1}, "be": {"_count": 4}, "get": {"_count": 1}, "know": {"_count": 1}, "": {"_count": 1}, "think": {"_count": 2}, "do": {"_count": 1}, "they": {"_count": 1}, "say": {"_count": 1}, "rise": {"_count": 1}, "Harry": {"_count": 1}, "worry": {"_count": 2}, "call": {"_count": 1}, "you": {"_count": 4}}, "His": {"_count": 22, "diary": {"_count": 1}, "heart": {"_count": 2}, "ddiary": {"_count": 1}, "first": {"_count": 1}, "hand": {"_count": 1}, "preoccupation": {"_count": 1}, "filthy": {"_count": 1}, "hands": {"_count": 1}, "father": {"_count": 1}, "voice": {"_count": 4}, "scar": {"_count": 1}, "godfather": {"_count": 1}, "mouth": {"_count": 1}, "seats": {"_count": 1}, "cheek": {"_count": 1}, "parents": {"_count": 1}, "puppet": {"_count": 1}, "Patronus": {"_count": 1}}, "Still": {"_count": 6, "the": {"_count": 1}, "chortling": {"_count": 1}, "spying": {"_count": 1}, "here": {"_count": 1}, "very": {"_count": 1}, "blindfolded": {"_count": 1}}, "Halfblood": {"_count": 2, "sir": {"_count": 1}, "said": {"_count": 1}}, "Riddle": {"_count": 3, "stepped": {"_count": 1}, "nodded": {"_count": 1}, "frowned": {"_count": 1}}, "Thatd": {"_count": 2, "be": {"_count": 2}}, "Because": {"_count": 48, "thats": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 9}, "fool": {"_count": 1}, "youre": {"_count": 1}, "if": {"_count": 4}, "youve": {"_count": 1}, "Moodys": {"_count": 1}, "George": {"_count": 1}, "Rita": {"_count": 1}, "hes": {"_count": 1}, "you": {"_count": 2}, "Hermione": {"_count": 1}, "every": {"_count": 1}, "of": {"_count": 3}, "accepting": {"_count": 1}, "were": {"_count": 1}, "Ive": {"_count": 1}, "detentions": {"_count": 1}, "said": {"_count": 2}, "theyre": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 2}, "he": {"_count": 1}, "Morfin": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}, "whatevers": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}}, "Isnt": {"_count": 5, "it": {"_count": 2}, "that": {"_count": 1}, "anyone": {"_count": 1}, "there": {"_count": 1}}, "For": {"_count": 20, "a": {"_count": 3}, "many": {"_count": 1}, "heavens": {"_count": 1}, "there": {"_count": 1}, "Fred": {"_count": 1}, "Harry": {"_count": 2}, "hungry": {"_count": 1}, "he": {"_count": 1}, "fourteen": {"_count": 1}, "answer": {"_count": 1}, "new": {"_count": 1}, "the": {"_count": 3}, "you": {"_count": 1}, "him": {"_count": 1}, "not": {"_count": 1}}, "People": {"_count": 3, "swapped": {"_count": 1}, "are": {"_count": 1}, "have": {"_count": 1}}, "THE": {"_count": 5, "CHAMBER": {"_count": 1}, "DREAM": {"_count": 1}, "PHOENIX": {"_count": 1}, "TALE": {"_count": 1}, "FLAW": {"_count": 1}}, "howled": {"_count": 1, "Seamus": {"_count": 1}}, "Ginny": {"_count": 15, "drew": {"_count": 1}, "Weasley": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "asked": {"_count": 6}, "told": {"_count": 2}, "turned": {"_count": 1}, "cried": {"_count": 1}, "did": {"_count": 1}}, "Whatll": {"_count": 2, "we": {"_count": 1}, "happen": {"_count": 1}}, "piped": {"_count": 2, "up": {"_count": 2}}, "Shes": {"_count": 8, "still": {"_count": 1}, "going": {"_count": 1}, "fine": {"_count": 1}, "there": {"_count": 1}, "evil": {"_count": 1}, "Loony": {"_count": 1}, "not": {"_count": 1}, "driving": {"_count": 1}}, "Instead": {"_count": 1, "of": {"_count": 1}}, "Wwheres": {"_count": 1, "Riddle": {"_count": 1}}, "Fawkes": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "Back": {"_count": 3, "there": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "Instinctively": {"_count": 1, "Harry": {"_count": 1}}, "Enenchant": {"_count": 1, "Ginny": {"_count": 1}}, "Surely": {"_count": 6, "surely": {"_count": 1}, "Black": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 1}}, "spat": {"_count": 2, "Mr": {"_count": 1}, "Snape": {"_count": 1}}, "Proud": {"_count": 2, "": {"_count": 2}}, "HELLO": {"_count": 1, "": {"_count": 1}}, "CAN": {"_count": 1, "YOU": {"_count": 1}}, "RON": {"_count": 1, "WEASLEY": {"_count": 1}}, "Will": {"_count": 14, "your": {"_count": 1}, "you": {"_count": 9}, "": {"_count": 1}, "it": {"_count": 1}, "we": {"_count": 1}, "three": {"_count": 1}}, "Lunatic": {"_count": 1, "could": {"_count": 1}}, "Ripper": {"_count": 1, "can": {"_count": 1}}, "St": {"_count": 1, "": {"_count": 1}}, "Then": {"_count": 9, "he": {"_count": 2}, "let": {"_count": 1}, "after": {"_count": 1}, "Hermione": {"_count": 1}, "we": {"_count": 1}, "consider": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "sniggered": {"_count": 2, "Stan": {"_count": 1}, "Ron": {"_count": 1}}, "Stan": {"_count": 4, "persisted": {"_count": 1}, "continued": {"_count": 1}, "said": {"_count": 1}, "Shunpike": {"_count": 1}}, "Yep": {"_count": 7, "said": {"_count": 7}}, "Stuck": {"_count": 1, "out": {"_count": 1}}, "Eleven": {"_count": 1, "Sickles": {"_count": 1}}, "Somewhere": {"_count": 1, "in": {"_count": 1}}, "Ar": {"_count": 5, "said": {"_count": 2}, "that": {"_count": 1}, "he": {"_count": 1}, "not": {"_count": 1}}, "Don": {"_count": 2, "look": {"_count": 1}, "fret": {"_count": 1}}, "While": {"_count": 3, "Muggles": {"_count": 1}, "evryones": {"_count": 1}, "the": {"_count": 1}}, "yelped": {"_count": 2, "Stan": {"_count": 1}, "James": {"_count": 1}}, "Most": {"_count": 4, "of": {"_count": 3}, "definitely": {"_count": 1}}, "Inee": {"_count": 1, "mad": {"_count": 1}}, "Gas": {"_count": 1, "explosion": {"_count": 1}}, "Blew": {"_count": 1, "up": {"_count": 1}}, "E": {"_count": 1, "was": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "Beer": {"_count": 1, "": {"_count": 1}}, "Brandy": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 12, "blinked": {"_count": 1}, "came": {"_count": 1}, "was": {"_count": 1}, "who": {"_count": 1}, "demanded": {"_count": 1}, "shrieked": {"_count": 1}, "said": {"_count": 1}, "raised": {"_count": 1}, "asked": {"_count": 1}, "spun": {"_count": 1}, "fixed": {"_count": 1}, "grimaced": {"_count": 1}}, "laughed": {"_count": 2, "Fudge": {"_count": 1}, "Harry": {"_count": 1}}, "Keep": {"_count": 2, "to": {"_count": 1}, "walking": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "squeaked": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 1}, "Winky": {"_count": 1}, "Flitwick": {"_count": 2}}, "Dad": {"_count": 4, "said": {"_count": 1}, "told": {"_count": 1}, "come": {"_count": 1}, "and": {"_count": 1}}, "Probably": {"_count": 7, "cause": {"_count": 1}, "getting": {"_count": 1}, "says": {"_count": 1}, "looking": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}, "wise": {"_count": 1}}, "shrugged": {"_count": 2, "Ron": {"_count": 1}, "Auntie": {"_count": 1}}, "Poor": {"_count": 1, "Crookshanks": {"_count": 1}}, "Wheres": {"_count": 11, "Fred": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "Sirius": {"_count": 2}, "Lupin": {"_count": 1}, "Hermione": {"_count": 1}, "he": {"_count": 2}, "George": {"_count": 1}, "Luna": {"_count": 1}}, "Here": {"_count": 5, "you": {"_count": 1}, "": {"_count": 3}, "we": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "Anyway": {"_count": 6, "": {"_count": 1}, "wheres": {"_count": 1}, "its": {"_count": 1}, "you": {"_count": 1}, "Ginny": {"_count": 1}, "Im": {"_count": 1}}, "Stick": {"_count": 1, "it": {"_count": 1}}, "Spect": {"_count": 2, "it": {"_count": 1}, "they": {"_count": 1}}, "Ouch": {"_count": 1, "sorry": {"_count": 1}}, "Whos": {"_count": 6, "that": {"_count": 1}, "got": {"_count": 1}, "the": {"_count": 1}, "told": {"_count": 1}, "bin": {"_count": 1}, "": {"_count": 1}}, "\u2018Tm": {"_count": 2, "ine": {"_count": 1}, "going": {"_count": 1}}, "Draw": {"_count": 1, "you": {"_count": 1}}, "Lavender": {"_count": 3, "looking": {"_count": 1}, "just": {"_count": 1}, "demanded": {"_count": 1}}, "Everyone": {"_count": 3, "stared": {"_count": 1}, "laughed": {"_count": 1}, "would": {"_count": 1}}, "Emboldened": {"_count": 1, "by": {"_count": 1}}, "simpered": {"_count": 1, "Pansy": {"_count": 1}}, "Didnt": {"_count": 12, "you": {"_count": 5}, "I": {"_count": 2}, "mind": {"_count": 1}, "work": {"_count": 1}, "i": {"_count": 1}, "Doge": {"_count": 1}, "Hermione": {"_count": 1}}, "Daily": {"_count": 1, "Prophet": {"_count": 1}}, "Need": {"_count": 1, "something": {"_count": 1}}, "Trying": {"_count": 3, "to": {"_count": 3}}, "Precisely": {"_count": 1, "said": {"_count": 1}}, "prompted": {"_count": 1, "Professor": {"_count": 1}}, "d": {"_count": 1, "FLIGHT": {"_count": 1}}, "N": {"_count": 2, "no": {"_count": 2}}, "Hey": {"_count": 5, "Colin": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "Hogsmeade": {"_count": 1, "said": {"_count": 1}}, "Strong": {"_count": 1, "but": {"_count": 1}}, "Lupin": {"_count": 16, "said": {"_count": 2}, "asked": {"_count": 3}, "grasped": {"_count": 1}, "looked": {"_count": 1}, "crossed": {"_count": 1}, "smiled": {"_count": 1}, "had": {"_count": 1}, "turned": {"_count": 1}, "took": {"_count": 1}, "released": {"_count": 1}, "sounded": {"_count": 1}, "sprang": {"_count": 1}, "blinked": {"_count": 1}}, "Maybe": {"_count": 20, "he": {"_count": 6}, "said": {"_count": 2}, "theyve": {"_count": 1}, "to": {"_count": 1}, "she": {"_count": 1}, "its": {"_count": 2}, "not": {"_count": 1}, "hes": {"_count": 1}, "your": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "Everything": {"_count": 4, "under": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "everything": {"_count": 1}}, "Hiding": {"_count": 1, "in": {"_count": 1}}, "None": {"_count": 3, "of": {"_count": 2}, "at": {"_count": 1}}, "chorused": {"_count": 1, "the": {"_count": 1}}, "Diggory": {"_count": 1, "got": {"_count": 1}}, "Hops": {"_count": 1, "ahead": {"_count": 1}}, "Am": {"_count": 3, "I": {"_count": 3}}, "Wow": {"_count": 2, "": {"_count": 2}}, "Hear": {"_count": 1, "hear": {"_count": 1}}, "Naturally": {"_count": 3, "said": {"_count": 2}, "naturally": {"_count": 1}}, "Fact": {"_count": 1, "was": {"_count": 1}}, "Again": {"_count": 5, "Harry": {"_count": 2}, "Marietta": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 1}}, "\u2018If": {"_count": 1, "it": {"_count": 1}}, "interjected": {"_count": 4, "Ron": {"_count": 2}, "Hermione": {"_count": 1}, "Sirius": {"_count": 1}}, "Theyd": {"_count": 3, "never": {"_count": 1}, "fallen": {"_count": 1}, "kill": {"_count": 1}}, "Dead": {"_count": 1, "said": {"_count": 1}}, "Yehve": {"_count": 1, "no": {"_count": 1}}, "Which": {"_count": 6, "": {"_count": 1}, "side": {"_count": 1}, "bit": {"_count": 1}, "means": {"_count": 1}, "is": {"_count": 1}, "meant": {"_count": 1}}, "Scurvy": {"_count": 1, "cur": {"_count": 1}}, "Sirius": {"_count": 16, "Black": {"_count": 2}, "looked": {"_count": 1}, "hesitated": {"_count": 1}, "lapsed": {"_count": 1}, "nodded": {"_count": 1}, "asked": {"_count": 1}, "started": {"_count": 1}, "and": {"_count": 1}, "smiled": {"_count": 2}, "interrupted": {"_count": 1}, "raised": {"_count": 1}, "frowned": {"_count": 1}, "mightve": {"_count": 1}, "did": {"_count": 1}}, "With": {"_count": 5, "an": {"_count": 1}, "a": {"_count": 2}, "you": {"_count": 1}, "any": {"_count": 1}}, "Okay": {"_count": 6, "said": {"_count": 4}, "lets": {"_count": 1}, "okay": {"_count": 1}}, "Seriously": {"_count": 1, "said": {"_count": 1}}, "Tomorrow": {"_count": 1, "": {"_count": 1}}, "Ravenclawll": {"_count": 1, "have": {"_count": 1}}, "SCABBERS": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "GET": {"_count": 2, "ON": {"_count": 1}, "THAT": {"_count": 1}}, "Ask": {"_count": 1, "him": {"_count": 1}}, "Black": {"_count": 6, "had": {"_count": 1}, "put": {"_count": 1}, "said": {"_count": 1}, "turned": {"_count": 1}, "": {"_count": 2}}, "Dreaming": {"_count": 1, "about": {"_count": 1}}, "Nobody": {"_count": 9, "knew": {"_count": 1}, "seemed": {"_count": 1}, "would": {"_count": 1}, "answered": {"_count": 2}, "here": {"_count": 1}, "spoke": {"_count": 1}, "has": {"_count": 1}, "said": {"_count": 1}}, "Panting": {"_count": 1, "a": {"_count": 1}}, "W": {"_count": 1, "which": {"_count": 1}}, "Divination": {"_count": 1, "but": {"_count": 1}}, "\u2018Around": {"_count": 1, "Easter": {"_count": 1}}, "Down": {"_count": 1, "here": {"_count": 1}}, "P": {"_count": 1, "P": {"_count": 1}}, "Theyve": {"_count": 4, "even": {"_count": 1}, "got": {"_count": 1}, "agreed": {"_count": 1}, "run": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 2, "": {"_count": 1}, "has": {"_count": 1}}, "Five": {"_count": 1, "minutes": {"_count": 1}}, "Stay": {"_count": 2, "still": {"_count": 1}, "where": {"_count": 1}}, "Unless": {"_count": 3, "Lupins": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "Ages": {"_count": 1, "Hermione": {"_count": 1}}, "Both": {"_count": 4, "Hermione": {"_count": 1}, "Mr": {"_count": 1}, "buttocks": {"_count": 1}, "Sirius": {"_count": 1}}, "Azkaban": {"_count": 1, "must": {"_count": 1}}, "BANG": {"_count": 1, "": {"_count": 1}}, "Miss": {"_count": 2, "Granger": {"_count": 2}}, "told": {"_count": 1, "me": {"_count": 1}}, "Peter": {"_count": 1, "betrayed": {"_count": 1}}, "Thank": {"_count": 3, "you": {"_count": 3}}, "HOW": {"_count": 2, "DARE": {"_count": 1}, "did": {"_count": 1}}, "Pettigrew": {"_count": 1, "burst": {"_count": 1}}, "Personally": {"_count": 1, "I": {"_count": 1}}, "Headmaster": {"_count": 1, "I": {"_count": 1}}, "Hows": {"_count": 1, "that": {"_count": 1}}, "Couldnt": {"_count": 3, "you": {"_count": 1}, "someone": {"_count": 1}, "": {"_count": 1}}, "Wormtail": {"_count": 4, "had": {"_count": 1}, "said": {"_count": 1}, "sounded": {"_count": 1}, "Wormtail": {"_count": 1}}, "they": {"_count": 3, "said": {"_count": 1}, "giggled": {"_count": 1}, "heard": {"_count": 1}}, "Leavin": {"_count": 1, "isn": {"_count": 1}}, "Prongs": {"_count": 1, "rode": {"_count": 1}}, "Crookshanks": {"_count": 2, "purred": {"_count": 1}, "said": {"_count": 1}}, "sputtered": {"_count": 1, "Uncle": {"_count": 1}}, "Dear": {"_count": 1, "Professor": {"_count": 1}}, "Laughing": {"_count": 1, "at": {"_count": 1}}, "Gracious": {"_count": 1, "I": {"_count": 1}}, "Has": {"_count": 7, "something": {"_count": 1}, "she": {"_count": 2}, "YouKnowWho": {"_count": 1}, "someone": {"_count": 1}, "anyone": {"_count": 1}, "it": {"_count": 1}}, "TonTongue": {"_count": 1, "Toffee": {"_count": 1}}, "Bill": {"_count": 6, "and": {"_count": 2}, "asked": {"_count": 1}, "called": {"_count": 2}, "fought": {"_count": 1}}, "": {"_count": 11, "!": {"_count": 1}, ".": {"_count": 9}, "?": {"_count": 1}}, "Went": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "Mum": {"_count": 2, "no": {"_count": 1}, "wrote": {"_count": 1}}, "Charlie": {"_count": 2, "had": {"_count": 1}, "laughed": {"_count": 1}}, "Cedric": {"_count": 5, "Diggory": {"_count": 1}, "said": {"_count": 2}, "was": {"_count": 1}, "muttered": {"_count": 1}}, "Cedrics": {"_count": 1, "father": {"_count": 1}}, "Aye": {"_count": 2, "I": {"_count": 1}, "said": {"_count": 1}}, "Weasley": {"_count": 3, "two": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "Dads": {"_count": 1, "having": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "Eh": {"_count": 5, "": {"_count": 5}}, "Freedom": {"_count": 1, "is": {"_count": 1}}, "Winky": {"_count": 4, "looked": {"_count": 1}, "trembled": {"_count": 1}, "was": {"_count": 1}, "began": {"_count": 1}}, "Ready": {"_count": 2, "when": {"_count": 1}, "fer": {"_count": 1}}, "bellowed": {"_count": 7, "Charlie": {"_count": 1}, "Uncle": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "Bane": {"_count": 1}, "Hagrid": {"_count": 1}}, "Wherere": {"_count": 1, "your": {"_count": 1}}, "Nous": {"_count": 1, "Vavons": {"_count": 1}}, "Bet": {"_count": 2, "she": {"_count": 1}, "it": {"_count": 1}}, "Honestly": {"_count": 1, "said": {"_count": 1}}, "Out": {"_count": 4, "of": {"_count": 2}, "by": {"_count": 1}, "here": {"_count": 1}}, "Barty": {"_count": 2, "": {"_count": 1}, "want": {"_count": 1}}, "Comprehension": {"_count": 1, "dawned": {"_count": 1}}, "Conjure": {"_count": 1, "the": {"_count": 1}}, "Amos": {"_count": 1, "think": {"_count": 1}}, "Arthur": {"_count": 6, "its": {"_count": 1}, "you": {"_count": 1}, "Weasley": {"_count": 3}, "": {"_count": 1}}, "Use": {"_count": 2, "your": {"_count": 2}}, "spluttered": {"_count": 3, "Mrs": {"_count": 1}, "the": {"_count": 1}, "Mundungus": {"_count": 1}}, "Rumors": {"_count": 2, "that": {"_count": 1}, "continue": {"_count": 1}}, "Hedwig": {"_count": 2, "dear": {"_count": 1}, "gave": {"_count": 1}}, "YouKnowWho": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "More": {"_count": 2, "likely": {"_count": 1}, "": {"_count": 1}}, "Wont": {"_count": 2, "you": {"_count": 1}, "wont": {"_count": 1}}, "Going": {"_count": 2, "to": {"_count": 2}}, "Either": {"_count": 2, "explain": {"_count": 1}, "weve": {"_count": 1}}, "Little": {"_count": 1, "squirts": {"_count": 1}}, "Twas": {"_count": 1, "Gryffindor": {"_count": 1}}, "See": {"_count": 4, "him": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}}, "Wha": {"_count": 4, "appened": {"_count": 1}, "oh": {"_count": 1}, "": {"_count": 1}, "worries": {"_count": 1}}, "Fancy": {"_count": 1, "entering": {"_count": 1}}, "Spose": {"_count": 1, "not": {"_count": 1}}, "aah": {"_count": 1, "said": {"_count": 1}}, "Moody": {"_count": 4, "growled": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "asked": {"_count": 1}}, "shrieked": {"_count": 6, "Professor": {"_count": 1}, "Pansy": {"_count": 1}, "Bellatrix": {"_count": 2}, "Hermione": {"_count": 1}, "Lavender": {"_count": 1}}, "Beyond": {"_count": 1, "cool": {"_count": 1}}, "Several": {"_count": 4, "hands": {"_count": 1}, "people": {"_count": 1}, "of": {"_count": 2}}, "Another": {"_count": 3, "illegal": {"_count": 1}, "voice": {"_count": 1}, "student": {"_count": 1}}, "Dumbledores": {"_count": 3, "reading": {"_count": 1}, "Army": {"_count": 1}, "smile": {"_count": 1}}, "Think": {"_count": 8, "111": {"_count": 1}, "we": {"_count": 1}, "about": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 2}, "what": {"_count": 1}, "you": {"_count": 1}}, "Broomsticks": {"_count": 1, "": {"_count": 1}}, "Madame": {"_count": 2, "Maxime": {"_count": 2}}, "Warm": {"_count": 1, "up": {"_count": 1}}, "Blooming": {"_count": 1, "thank": {"_count": 1}}, "Viktor": {"_count": 2, "has": {"_count": 1}, "Krum": {"_count": 1}}, "Really": {"_count": 2, "Hermione": {"_count": 1}, "advanced": {"_count": 1}}, "Over": {"_count": 1, "here": {"_count": 1}}, "Too": {"_count": 2, "late": {"_count": 2}}, "Yehd": {"_count": 1, "be": {"_count": 1}}, "Bagman": {"_count": 4, "repeated": {"_count": 1}, "wiped": {"_count": 1}, "whispered": {"_count": 1}, "asked": {"_count": 1}}, "burst": {"_count": 1, "out": {"_count": 1}}, "Voldemort": {"_count": 16, "was": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "raised": {"_count": 1}, "did": {"_count": 4}, "looked": {"_count": 1}, "sneered": {"_count": 1}, "himself": {"_count": 1}, "should": {"_count": 1}, "called": {"_count": 1}, "would": {"_count": 1}, "asked": {"_count": 1}}, "Balderdash": {"_count": 1, "said": {"_count": 1}}, "Brilliant": {"_count": 1, "": {"_count": 1}}, "Straight": {"_count": 1, "away": {"_count": 1}}, "Ten": {"_count": 1, "minutes": {"_count": 1}}, "Around": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "Roun": {"_count": 1, "the": {"_count": 1}}, "Double": {"_count": 1, "Potions": {"_count": 1}}, "Nervous": {"_count": 1, "": {"_count": 1}}, "Worried": {"_count": 1, "": {"_count": 1}}, "Angry": {"_count": 1, "": {"_count": 1}}, "Enchantingly": {"_count": 1, "nasty": {"_count": 1}}, "Polished": {"_count": 1, "it": {"_count": 1}}, "Since": {"_count": 2, "when": {"_count": 2}}, "Her": {"_count": 12, "": {"_count": 1}, "bottom": {"_count": 1}, "scream": {"_count": 1}, "eyes": {"_count": 3}, "Hagrid": {"_count": 1}, "great": {"_count": 1}, "family": {"_count": 1}, "big": {"_count": 1}, "voice": {"_count": 1}, "fingers": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "Ignore": {"_count": 1, "it": {"_count": 1}}, "Shhh": {"_count": 3, "": {"_count": 2}, "whispered": {"_count": 1}}, "Bongsewer": {"_count": 1, "said": {"_count": 1}}, "Yehre": {"_count": 1, "not": {"_count": 1}}, "Jus": {"_count": 3, "thought": {"_count": 1}, "didn": {"_count": 1}, "beyond": {"_count": 1}}, "Whatve": {"_count": 1, "they": {"_count": 1}}, "Karkaroff": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "did": {"_count": 1}}, "Bertha": {"_count": 2, "Jorkins": {"_count": 1}, "": {"_count": 1}}, "Outside": {"_count": 2, "": {"_count": 1}, "Snapes": {"_count": 1}}, "Sure": {"_count": 2, "": {"_count": 1}, "youre": {"_count": 1}}, "Arent": {"_count": 1, "they": {"_count": 1}}, "Share": {"_count": 1, "some": {"_count": 1}}, "says": {"_count": 1, "Winky": {"_count": 1}}, "Lasso": {"_count": 1, "one": {"_count": 1}}, "Cheers": {"_count": 1, "Hagrid": {"_count": 1}}, "Angelina": {"_count": 3, "gave": {"_count": 1}, "swept": {"_count": 1}, "said": {"_count": 1}}, "Giggling": {"_count": 1, "should": {"_count": 1}}, "Hermionel": {"_count": 1, "What": {"_count": 1}}, "Parvati": {"_count": 5, "went": {"_count": 1}, "shrugged": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "demanded": {"_count": 1}}, "Stupid": {"_count": 1, "little": {"_count": 1}}, "Obvious": {"_count": 1, "isnt": {"_count": 1}}, "Padma": {"_count": 1, "asked": {"_count": 1}}, "Krum": {"_count": 6, "was": {"_count": 1}, "called": {"_count": 1}, "asked": {"_count": 1}, "glowered": {"_count": 1}, "looked": {"_count": 1}, "told": {"_count": 1}}, "Shame": {"_count": 1, "he": {"_count": 1}}, "Moi": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "finding": {"_count": 1}}, "Does": {"_count": 4, "yours": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "Take": {"_count": 2, "a": {"_count": 1}, "my": {"_count": 1}}, "Been": {"_count": 2, "hoping": {"_count": 1}, "yes": {"_count": 1}}, "Looking": {"_count": 2, "for": {"_count": 1}, "extremely": {"_count": 1}}, "Society": {"_count": 1, "for": {"_count": 1}}, "Showing": {"_count": 1, "them": {"_count": 1}}, "\u2018Disgraced": {"_count": 1, "ExHead": {"_count": 1}}, "Rita": {"_count": 3, "Skeeter": {"_count": 2}, "asked": {"_count": 1}}, "Barricade": {"_count": 1, "myself": {"_count": 1}}, "Nevertheless": {"_count": 1, "he": {"_count": 1}}, "Sometimes": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "Slow": {"_count": 1, "arent": {"_count": 1}}, "Hang": {"_count": 5, "on": {"_count": 5}}, "Oooh": {"_count": 3, "very": {"_count": 1}, "yes": {"_count": 2}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "Wake": {"_count": 1, "up": {"_count": 1}}, "Believes": {"_count": 1, "in": {"_count": 1}}, "Moodys": {"_count": 2, "magical": {"_count": 2}}, "Advice": {"_count": 1, "on": {"_count": 1}}, "Time": {"_count": 2, "was": {"_count": 1}, "ter": {"_count": 1}}, "Fleur": {"_count": 4, "didnt": {"_count": 1}, "invited": {"_count": 1}, "had": {"_count": 1}, "inquired": {"_count": 1}}, "Known": {"_count": 1, "what": {"_count": 1}}, "\u2018A": {"_count": 1, "boy": {"_count": 1}}, "Clearing": {"_count": 1, "up": {"_count": 1}}, "Loads": {"_count": 1, "of": {"_count": 1}}, "Says": {"_count": 1, "hes": {"_count": 1}}, "Ought": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "Crouchs": {"_count": 2, "fatherly": {"_count": 1}, "eyes": {"_count": 1}}, "Begging": {"_count": 1, "your": {"_count": 1}}, "Crouch": {"_count": 2, "attacked": {"_count": 1}, "took": {"_count": 1}}, "Igor": {"_count": 1, "Dumbledore": {"_count": 1}}, "Hasn": {"_count": 1, "Moody": {"_count": 1}}, "Magine": {"_count": 1, "lettin": {"_count": 1}}, "\u2018I": {"_count": 1, "know": {"_count": 1}}, "Exempt": {"_count": 1, "from": {"_count": 1}}, "Fleetingly": {"_count": 1, "and": {"_count": 1}}, "Flesh": {"_count": 1, "given": {"_count": 1}}, "Dig": {"_count": 1, "gorys": {"_count": 1}}, "Killed": {"_count": 1, "Cedric": {"_count": 1}}, "Clunk": {"_count": 1, "": {"_count": 1}}, "Magical": {"_count": 1, "Water": {"_count": 1}}, "Feed": {"_count": 1, "you": {"_count": 1}}, "sobbed": {"_count": 2, "Winky": {"_count": 1}, "Mrs": {"_count": 1}}, "Potters": {"_count": 1, "map": {"_count": 1}}, "Carried": {"_count": 1, "it": {"_count": 1}}, "Minerva": {"_count": 1, "Im": {"_count": 1}}, "blustered": {"_count": 3, "Fudge": {"_count": 1}, "Uncle": {"_count": 1}, "the": {"_count": 1}}, "Preposterous": {"_count": 1, "": {"_count": 1}}, "Nightmares": {"_count": 1, "": {"_count": 1}}, "Possibly": {"_count": 2, "hallucinations": {"_count": 1}, "said": {"_count": 1}}, "Extend": {"_count": 1, "them": {"_count": 1}}, "Pretended": {"_count": 1, "that": {"_count": 1}}, "Bugging": {"_count": 1, "said": {"_count": 1}}, "Me": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "Buy": {"_count": 1, "Ron": {"_count": 1}}, "Gave": {"_count": 1, "Petunia": {"_count": 1}}, "Listening": {"_count": 1, "to": {"_count": 1}}, "Aha": {"_count": 1, "": {"_count": 1}}, "Malcolm": {"_count": 1, "was": {"_count": 1}}, "Shut": {"_count": 2, "your": {"_count": 1}, "it": {"_count": 1}}, "Cause": {"_count": 2, "thats": {"_count": 1}, "if": {"_count": 1}}, "Seven": {"_count": 1, "": {"_count": 1}}, "Eight": {"_count": 1, "": {"_count": 1}}, "Tad": {"_count": 1, "": {"_count": 1}}, "Point": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "Ststop": {"_count": 1, "it": {"_count": 1}}, "DUDLEY": {"_count": 1, "": {"_count": 1}}, "VERNON": {"_count": 1, "": {"_count": 1}}, "Slowly": {"_count": 2, "tremulously": {"_count": 1}, "Slughorn": {"_count": 1}}, "Felt": {"_count": 1, "": {"_count": 1}}, "De": {"_count": 1, "men": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 2}}, "Looks": {"_count": 1, "like": {"_count": 1}}, "Remember": {"_count": 6, "the": {"_count": 1}, "old": {"_count": 1}, "when": {"_count": 1}, "that": {"_count": 1}, "Aragog": {"_count": 1}, "all": {"_count": 1}}, "Go": {"_count": 3, "to": {"_count": 1}, "and": {"_count": 2}}, "YOU": {"_count": 2, "HEARD": {"_count": 1}, "SHOULD": {"_count": 1}}, "Whenever": {"_count": 1, "this": {"_count": 1}}, "Cauldron": {"_count": 1, "": {"_count": 1}}, "Broom": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 6, "screamed": {"_count": 1}, "": {"_count": 1}, "asked": {"_count": 1}, "will": {"_count": 1}, "Tonks": {"_count": 1}, "called": {"_count": 1}}, "YOUVE": {"_count": 1, "STILL": {"_count": 1}}, "WHO": {"_count": 4, "GOT": {"_count": 1}, "SAVED": {"_count": 1}, "SAW": {"_count": 1}, "HAD": {"_count": 1}}, "Every": {"_count": 3, "bitter": {"_count": 1}, "evening": {"_count": 1}, "human": {"_count": 1}}, "ME": {"_count": 1, "": {"_count": 1}}, "WHY": {"_count": 1, "SHOULD": {"_count": 1}}, "Voldemorti": {"_count": 1, "said": {"_count": 1}}, "Ears": {"_count": 1, "yeah": {"_count": 1}}, "Mundungus": {"_count": 1, "mumbled": {"_count": 1}}, "Cos": {"_count": 1, "some": {"_count": 1}}, "demanded": {"_count": 31, "Sirius": {"_count": 1}, "Terry": {"_count": 1}, "Malfoy": {"_count": 1}, "Snape": {"_count": 2}, "Ron": {"_count": 7}, "Umbridge": {"_count": 2}, "Hermione": {"_count": 3}, "Fudge": {"_count": 1}, "Slughorn": {"_count": 2}, "Harry": {"_count": 5}, "Ginny": {"_count": 2}, "Fleur": {"_count": 1}, "the": {"_count": 1}, "Michael": {"_count": 1}, "Albus": {"_count": 1}}, "Kreacher": {"_count": 11, "said": {"_count": 1}, "can": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}, "merely": {"_count": 1}, "stopped": {"_count": 1}, "finished": {"_count": 1}, "saw": {"_count": 1}, "sit": {"_count": 1}, "did": {"_count": 1}, "stop": {"_count": 1}}, "Range": {"_count": 1, "of": {"_count": 1}}, "Us": {"_count": 1, "said": {"_count": 1}}, "Picking": {"_count": 1, "up": {"_count": 1}}, "Least": {"_count": 1, "popular": {"_count": 1}}, "Muffins": {"_count": 1, "": {"_count": 1}}, "Kippers": {"_count": 1, "": {"_count": 1}}, "Bacon": {"_count": 1, "and": {"_count": 1}}, "Toast": {"_count": 1, "": {"_count": 1}}, "AntiMuggle": {"_count": 1, "pranksters": {"_count": 1}}, "exactly": {"_count": 1, "yes": {"_count": 1}}, "boomed": {"_count": 1, "Madam": {"_count": 1}}, "Highly": {"_count": 1, "convenient": {"_count": 1}}, "snorted": {"_count": 3, "Fudge": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}}, "Gold": {"_count": 1, "I": {"_count": 1}}, "Standing": {"_count": 1, "where": {"_count": 1}}, "Night": {"_count": 1, "Harry": {"_count": 1}}, "grunted": {"_count": 2, "Moody": {"_count": 1}, "the": {"_count": 1}}, "Molly": {"_count": 1, "thats": {"_count": 1}}, "Beneath": {"_count": 1, "this": {"_count": 1}}, "Notorious": {"_count": 1, "Mass": {"_count": 1}}, "Startling": {"_count": 1, "new": {"_count": 1}}, "Sources": {"_count": 1, "close": {"_count": 1}}, "Ginnys": {"_count": 1, "got": {"_count": 1}}, "Those": {"_count": 2, "horse": {"_count": 1}, "two": {"_count": 1}}, "Thatll": {"_count": 1, "tell": {"_count": 1}}, "Like": {"_count": 2, "to": {"_count": 1}, "any": {"_count": 1}}, "Contact": {"_count": 1, "Fred": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "Wed": {"_count": 1, "fail": {"_count": 1}}, "Attacking": {"_count": 1, "": {"_count": 1}}, "Draco": {"_count": 4, "Malfoy": {"_count": 3}, "give": {"_count": 1}}, "Neither": {"_count": 1, "of": {"_count": 1}}, "Binns": {"_count": 1, "set": {"_count": 1}}, "Wands": {"_count": 1, "away": {"_count": 1}}, "stated": {"_count": 1, "Professor": {"_count": 1}}, "inquired": {"_count": 7, "Professor": {"_count": 1}, "George": {"_count": 3}, "Ron": {"_count": 2}, "Xenophilius": {"_count": 1}}, "Hearing": {"_count": 1, "voices": {"_count": 1}}, "Seeing": {"_count": 1, "visions": {"_count": 1}}, "Speaking": {"_count": 3, "in": {"_count": 1}, "of": {"_count": 1}, "as": {"_count": 1}}, "Potter": {"_count": 5, "use": {"_count": 1}, "belongs": {"_count": 2}, "if": {"_count": 1}, "came": {"_count": 1}}, "Pur": {"_count": 1, "lease": {"_count": 1}}, "Bowtruckles": {"_count": 1, "said": {"_count": 1}}, "Friday": {"_count": 1, "dawned": {"_count": 1}}, "Cho": {"_count": 1, "was": {"_count": 1}}, "Open": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "\u2018Dreadful": {"_count": 1, "": {"_count": 1}}, "Troll": {"_count": 1, "said": {"_count": 1}}, "Giving": {"_count": 3, "the": {"_count": 1}, "instructions": {"_count": 1}, "no": {"_count": 1}}, "Goyle": {"_count": 2, "gave": {"_count": 2}}, "Last": {"_count": 1, "year": {"_count": 1}}, "Ho": {"_count": 1, "ho": {"_count": 1}}, "suggested": {"_count": 9, "Katie": {"_count": 1}, "Sirius": {"_count": 1}, "Fred": {"_count": 1}, "Ron": {"_count": 3}, "Hermione": {"_count": 2}, "Harry": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Many": {"_count": 2, "of": {"_count": 1}, "would": {"_count": 1}}, "Wrong": {"_count": 1, "": {"_count": 1}}, "Mimbulus": {"_count": 1, "mimbletonia": {"_count": 1}}, "Anytime": {"_count": 1, "Harry": {"_count": 1}}, "Everybody": {"_count": 1, "put": {"_count": 1}}, "Sooner": {"_count": 1, "": {"_count": 1}}, "screamed": {"_count": 3, "Angelina": {"_count": 1}, "Madam": {"_count": 1}, "Gaunt": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "Cornelius": {"_count": 1, "just": {"_count": 1}}, "Dreadful": {"_count": 2, "tempers": {"_count": 1}, "dreadful": {"_count": 1}}, "Everlasting": {"_count": 1, "fire": {"_count": 1}}, "Bloke": {"_count": 1, "they": {"_count": 1}}, "Maniac": {"_count": 1, "he": {"_count": 1}}, "Without": {"_count": 1, "waiting": {"_count": 1}}, "II": {"_count": 1, "tripped": {"_count": 1}}, "Immensely": {"_count": 1, "pleased": {"_count": 1}}, "Thestrals": {"_count": 1, "said": {"_count": 1}}, "\u2018Appears": {"_count": 1, "": {"_count": 1}}, "Umbridge": {"_count": 3, "did": {"_count": 1}, "hasnt": {"_count": 1}, "asked": {"_count": 1}}, "Numbly": {"_count": 1, "surprised": {"_count": 1}}, "Inside": {"_count": 2, "my": {"_count": 1}, "": {"_count": 1}}, "OUT": {"_count": 1, "": {"_count": 1}}, "Useful": {"_count": 1, "though": {"_count": 1}}, "Shouldnt": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "Stuff": {"_count": 1, "he": {"_count": 1}}, "Siriuss": {"_count": 1, "delight": {"_count": 1}}, "smirked": {"_count": 1, "the": {"_count": 1}}, "Typical": {"_count": 1, "Dad": {"_count": 1}}, "Fifth": {"_count": 1, "floor": {"_count": 1}}, "Hasnt": {"_count": 2, "changed": {"_count": 1}, "he": {"_count": 1}}, "Teach": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "Shall": {"_count": 2, "we": {"_count": 2}}, "Agnes": {"_count": 1, "gave": {"_count": 1}}, "Lockharts": {"_count": 1, "here": {"_count": 1}}, "Friends": {"_count": 1, "of": {"_count": 1}}, "Clever": {"_count": 1, "idea": {"_count": 1}}, "Extra": {"_count": 1, "lessons": {"_count": 1}}, "HARRY": {"_count": 1, "": {"_count": 1}}, "Itd": {"_count": 1, "take": {"_count": 1}}, "Today": {"_count": 1, "": {"_count": 1}}, "Betrayed": {"_count": 1, "": {"_count": 1}}, "Distraught": {"_count": 1, "": {"_count": 1}}, "Misunderstood": {"_count": 1, "": {"_count": 1}}, "Girls": {"_count": 1, "dont": {"_count": 1}}, "Be": {"_count": 1, "careful": {"_count": 1}}, "Rookwoods": {"_count": 1, "just": {"_count": 1}}, "Remove": {"_count": 1, "something": {"_count": 1}}, "POTTER": {"_count": 1, "": {"_count": 1}}, "amended": {"_count": 1, "Fudge": {"_count": 1}}, "cut": {"_count": 1, "in": {"_count": 1}}, "Marietta": {"_count": 1, "nodded": {"_count": 1}}, "Tonight": {"_count": 1, "was": {"_count": 1}}, "\u2018Come": {"_count": 1, "quietly": {"_count": 1}}, "Merlins": {"_count": 3, "beard": {"_count": 3}}, "Coffee": {"_count": 1, "": {"_count": 1}}, "Pumpkin": {"_count": 2, "juice": {"_count": 2}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "Quills": {"_count": 1, "down": {"_count": 1}}, "Nicked": {"_count": 1, "it": {"_count": 1}}, "Nno": {"_count": 1, "": {"_count": 1}}, "Huh": {"_count": 1, "": {"_count": 1}}, "continued": {"_count": 2, "Fred": {"_count": 1}, "the": {"_count": 1}}, "Umbridges": {"_count": 1, "office": {"_count": 1}}, "Christmas": {"_count": 1, "before": {"_count": 1}}, "Spoken": {"_count": 1, "like": {"_count": 1}}, "Pretty": {"_count": 1, "amusing": {"_count": 1}}, "Itll": {"_count": 2, "be": {"_count": 2}}, "was": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "Ony": {"_count": 1, "its": {"_count": 1}}, "Hold": {"_count": 1, "it": {"_count": 1}}, "Less": {"_count": 1, "I": {"_count": 1}}, "thinking": {"_count": 1, "that": {"_count": 1}}, "Saw": {"_count": 1, "it": {"_count": 1}}, "Harold": {"_count": 1, "Dingle": {"_count": 1}}, "MadEye": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "Moodys": {"_count": 1}}, "Somebody": {"_count": 2, "had": {"_count": 1}, "must": {"_count": 1}}, "Weapon": {"_count": 1, "": {"_count": 1}}, "Yyyes": {"_count": 1, "gasped": {"_count": 1}}, "Luna": {"_count": 3, "asked": {"_count": 1}, "has": {"_count": 1}, "": {"_count": 1}}, "STUPEF": {"_count": 1, "iVO": {"_count": 1}}, "LUNA": {"_count": 1, "": {"_count": 1}}, "DUBBLEDORE": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 1, "Ron": {"_count": 1}}, "Hatred": {"_count": 1, "rose": {"_count": 1}}, "Bin": {"_count": 2, "hidin": {"_count": 1}, "meanin": {"_count": 1}}, "Though": {"_count": 1, "he": {"_count": 1}}, "Nick": {"_count": 2, "sighed": {"_count": 1}, "turned": {"_count": 1}}, "Amelia": {"_count": 1, "Bones": {"_count": 1}}, "Narcissa": {"_count": 2, "asked": {"_count": 1}, "looked": {"_count": 1}}, "Fooled": {"_count": 1, "the": {"_count": 1}}, "Bellatrix": {"_count": 5, "said": {"_count": 2}, "gasped": {"_count": 1}, "Lestrange": {"_count": 1}, "gave": {"_count": 1}}, "Hardly": {"_count": 2, "said": {"_count": 1}, "chortled": {"_count": 1}}, "Snapes": {"_count": 2, "expression": {"_count": 1}, "breathing": {"_count": 1}}, "Later": {"_count": 1, "Harry": {"_count": 1}}, "Fortunately": {"_count": 1, "said": {"_count": 1}}, "Bearing": {"_count": 1, "in": {"_count": 1}}, "began": {"_count": 6, "Uncle": {"_count": 1}, "Mrs": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "Seamus": {"_count": 1}, "Mr": {"_count": 1}}, "Dragon": {"_count": 2, "shouted": {"_count": 1}, "dragon": {"_count": 1}}, "Slughorn": {"_count": 8, "hesitated": {"_count": 1}, "said": {"_count": 2}, "eyed": {"_count": 1}, "seemed": {"_count": 1}, "asked": {"_count": 1}, "froze": {"_count": 1}, "stared": {"_count": 1}}, "Mostly": {"_count": 1, "you": {"_count": 1}}, "Mums": {"_count": 1, "only": {"_count": 1}}, "Same": {"_count": 2, "as": {"_count": 1}, "reason": {"_count": 1}}, "6": {"_count": 1, "DRACOS": {"_count": 1}}, "Dragged": {"_count": 1, "off": {"_count": 1}}, "Guaranteed": {"_count": 1, "tensecond": {"_count": 1}}, "Big": {"_count": 1, "surprise": {"_count": 1}}, "Sixteen": {"_count": 1, "Galleons": {"_count": 1}}, "McLaggen": {"_count": 1, "a": {"_count": 1}}, "Belby": {"_count": 2, "who": {"_count": 1}, "started": {"_count": 1}}, "beamed": {"_count": 1, "Slughorn": {"_count": 1}}, "True": {"_count": 2, "there": {"_count": 1}, "he": {"_count": 1}}, "Zabini": {"_count": 1, "shrugged": {"_count": 1}}, "Petrificus": {"_count": 1, "Totalusl": {"_count": 1}}, "Normal": {"_count": 1, "said": {"_count": 1}}, "Potions": {"_count": 1, "": {"_count": 1}}, "Sright": {"_count": 1, "said": {"_count": 1}}, "Morfin": {"_count": 2, "gave": {"_count": 1}, "has": {"_count": 1}}, "Centuries": {"_count": 1, "its": {"_count": 1}}, "Gaunt": {"_count": 1, "said": {"_count": 1}}, "Hanging": {"_count": 1, "out": {"_count": 1}}, "Merope": {"_count": 1, "shook": {"_count": 1}}, "Voldemorts": {"_count": 1, "grandfather": {"_count": 1}}, "Wasnt": {"_count": 1, "Voldemort": {"_count": 1}}, "Looked": {"_count": 1, "like": {"_count": 1}}, "Oi": {"_count": 2, "": {"_count": 1}, "wake": {"_count": 1}}, "Feelin": {"_count": 1, "sorry": {"_count": 1}}, "Reckon": {"_count": 1, "Im": {"_count": 1}}, "Shh": {"_count": 1, "": {"_count": 1}}, "Haltingly": {"_count": 1, "and": {"_count": 1}}, "Impertinent": {"_count": 1, "said": {"_count": 1}}, "However": {"_count": 3, "he": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}}, "Definitely": {"_count": 3, "said": {"_count": 2}, "not": {"_count": 1}}, "Whatever": {"_count": 1, "repeated": {"_count": 1}}, "\u2018Professor": {"_count": 1, "yes": {"_count": 1}}, "Captain": {"_count": 1, "of": {"_count": 1}}, "Gotcha": {"_count": 1, "": {"_count": 1}}, "Fishy": {"_count": 1, "isnt": {"_count": 1}}, "look": {"_count": 1, "over": {"_count": 1}}, "Hi": {"_count": 1, "Luna": {"_count": 1}}, "First": {"_count": 1, "Krum": {"_count": 1}}, "Slughorns": {"_count": 1, "office": {"_count": 1}}, "Rufus": {"_count": 1, "Scrimgeour": {"_count": 1}}, "Cormac": {"_count": 1, "hasnt": {"_count": 1}}, "Careful": {"_count": 2, "now": {"_count": 1}, "said": {"_count": 1}}, "Mphf": {"_count": 1, "": {"_count": 1}}, "Pretending": {"_count": 1, "to": {"_count": 1}}, "Lupins": {"_count": 1, "hands": {"_count": 1}}, "Prince": {"_count": 1, "said": {"_count": 1}}, "Hmmm": {"_count": 1, "said": {"_count": 1}}, "Tonkss": {"_count": 1, "Patronus": {"_count": 1}}, "Soon": {"_count": 1, "as": {"_count": 1}}, "Marvolo": {"_count": 2, "s": {"_count": 1}, "Gaunts": {"_count": 1}}, "iVo": {"_count": 1, "": {"_count": 1}}, "WRONG": {"_count": 1, "": {"_count": 1}}, "Breakfast": {"_count": 1, "": {"_count": 1}}, "Drop": {"_count": 1, "it": {"_count": 1}}, "Let": {"_count": 2, "me": {"_count": 2}}, "Meaning": {"_count": 1, "to": {"_count": 1}}, "Therell": {"_count": 1, "be": {"_count": 1}}, "Cracked": {"_count": 1, "skull": {"_count": 1}}, "Quietly": {"_count": 1, "tentatively": {"_count": 1}}, "Exactly": {"_count": 3, "what": {"_count": 1}, "": {"_count": 2}}, "Somehow": {"_count": 2, "Harry": {"_count": 1}, "her": {"_count": 1}}, "Pick": {"_count": 2, "it": {"_count": 1}, "up": {"_count": 1}}, "Helga": {"_count": 1, "Hufflepuffs": {"_count": 1}}, "Devoted": {"_count": 1, "friends": {"_count": 1}}, "guffawed": {"_count": 1, "Ron": {"_count": 1}}, "Wish": {"_count": 1, "I": {"_count": 1}}, "Vividly": {"_count": 1, "said": {"_count": 1}}, "Mmmm": {"_count": 1, "": {"_count": 1}}, "Unorthodox": {"_count": 1, "but": {"_count": 1}}, "Liked": {"_count": 1, "her": {"_count": 1}}, "Tom": {"_count": 1, "Tom": {"_count": 1}}, "Wouldnt": {"_count": 1, "it": {"_count": 1}}, "Correct": {"_count": 1, "said": {"_count": 1}}, "Seizing": {"_count": 1, "the": {"_count": 1}}, "Saying": {"_count": 1, "what": {"_count": 1}}, "Gleefully": {"_count": 1, "she": {"_count": 1}}, "Into": {"_count": 2, "it": {"_count": 1}, "nonbeing": {"_count": 1}}, "Water": {"_count": 2, "croaked": {"_count": 1}, "muttered": {"_count": 1}}, "\u2018Did": {"_count": 1, "you": {"_count": 1}}, "Frightens": {"_count": 1, "you": {"_count": 1}}, "Mall": {"_count": 1, "right": {"_count": 1}}, "Stupe": {"_count": 1, "Blocked": {"_count": 1}}, "Speak": {"_count": 1, "ter": {"_count": 1}}, "Whatre": {"_count": 1, "yeh": {"_count": 1}}, "Righ": {"_count": 1, "at": {"_count": 1}}, "Under": {"_count": 1, "where": {"_count": 1}}, "According": {"_count": 1, "to": {"_count": 1}}, "Wordlessly": {"_count": 1, "Harry": {"_count": 1}}, "Tobias": {"_count": 1, "Snape": {"_count": 1}}, "Scrimgeour": {"_count": 1, "turned": {"_count": 1}}, "Everywheres": {"_count": 1, "the": {"_count": 1}}, "Once": {"_count": 1, "again": {"_count": 1}}, "Elm": {"_count": 1, "my": {"_count": 1}}, "Cut": {"_count": 1, "away": {"_count": 1}}, "WHAT": {"_count": 1, "was": {"_count": 1}}, "Hestia": {"_count": 1, "looked": {"_count": 1}}, "\u2018Harry": {"_count": 1, "is": {"_count": 1}}, "Kingsley": {"_count": 1, "let": {"_count": 1}}, "Saintlike": {"_count": 1, "repeated": {"_count": 1}}, "exclaimed": {"_count": 1, "Ron": {"_count": 1}}, "R": {"_count": 2, "right": {"_count": 1}, "": {"_count": 1}}, "\u2018Cconstant": {"_count": 1, "vigilance": {"_count": 1}}, "Dragomir": {"_count": 1, "Gorgovitch": {"_count": 1}}, "Vaguely": {"_count": 1, "said": {"_count": 1}}, "Norbert": {"_count": 1, "": {"_count": 1}}, "Aall": {"_count": 1, "of": {"_count": 1}}, "Put": {"_count": 1, "out": {"_count": 1}}, "Evidently": {"_count": 1, "Scrimgeour": {"_count": 1}}, "Interesting": {"_count": 1, "theory": {"_count": 1}}, "Remembered": {"_count": 1, "youre": {"_count": 1}}, "Grindelvald": {"_count": 1, "": {"_count": 1}}, "Doges": {"_count": 1, "face": {"_count": 1}}, "screeched": {"_count": 3, "Muriel": {"_count": 1}, "Bellatrix": {"_count": 1}, "Voldemort": {"_count": 1}}, "Off": {"_count": 1, "being": {"_count": 1}}, "Doge": {"_count": 1, "looked": {"_count": 1}}, "cackled": {"_count": 1, "Muriel": {"_count": 1}}, "groaned": {"_count": 2, "Doge": {"_count": 1}, "Hermione": {"_count": 1}}, "Undetectable": {"_count": 1, "Extension": {"_count": 1}}, "Ditch": {"_count": 1, "ginger": {"_count": 1}}, "Nerves": {"_count": 1, "still": {"_count": 1}}, "DumblecLores": {"_count": 1, "still": {"_count": 1}}, "Information": {"_count": 1, "on": {"_count": 1}}, "Bathilda": {"_count": 4, "Bagshot": {"_count": 1}, "shuffled": {"_count": 1}, "was": {"_count": 1}, "merely": {"_count": 1}}, "Regulus": {"_count": 1, "Arcturus": {"_count": 1}}, "echoed": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "Master": {"_count": 1, "Regulus": {"_count": 1}}, "Impossible": {"_count": 1, "said": {"_count": 1}}, "Shell": {"_count": 1, "be": {"_count": 1}}, "Setting": {"_count": 1, "a": {"_count": 1}}, "greeted": {"_count": 1, "him": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "Das": {"_count": 1, "weifi": {"_count": 1}}, "Reluctantly": {"_count": 1, "as": {"_count": 1}}, "Chuck": {"_count": 1, "us": {"_count": 1}}, "Forcing": {"_count": 1, "us": {"_count": 1}}, "Try": {"_count": 1, "Finite": {"_count": 1}}, "Nice": {"_count": 1, "one": {"_count": 1}}, "Yyes": {"_count": 1, "squeaked": {"_count": 1}}, "Speeding": {"_count": 1, "back": {"_count": 1}}, "Yaxleys": {"_count": 1, "office": {"_count": 1}}, "Ttook": {"_count": 1, "": {"_count": 1}}, "Wait": {"_count": 1, "Im": {"_count": 1}}, "Patronuses": {"_count": 1, "said": {"_count": 1}}, "STOP": {"_count": 1, "": {"_count": 1}}, "Seal": {"_count": 1, "the": {"_count": 1}}, "Splinched": {"_count": 1, "said": {"_count": 1}}, "Respect": {"_count": 1, "": {"_count": 1}}, "Sick": {"_count": 1, "images": {"_count": 1}}, "Accio": {"_count": 1, "Salmon": {"_count": 1}}, "Similar": {"_count": 1, "reasons": {"_count": 1}}, "Hard": {"_count": 1, "to": {"_count": 1}}, "Run": {"_count": 1, "for": {"_count": 1}}, "scoffed": {"_count": 1, "Ted": {"_count": 1}}, "Phineas": {"_count": 5, "Nigellus": {"_count": 4}, "snorted": {"_count": 1}}, "\u2018Please": {"_count": 1, "always": {"_count": 1}}, "Plunk": {"_count": 1, "plunk": {"_count": 1}}, "Finding": {"_count": 1, "a": {"_count": 1}}, "Hmm": {"_count": 3, "": {"_count": 3}}, "Apparently": {"_count": 2, "she": {"_count": 1}, "Ron": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "Hours": {"_count": 1, "ago": {"_count": 1}}, "Screamed": {"_count": 1, "curses": {"_count": 1}}, "Ignoring": {"_count": 1, "the": {"_count": 1}}, "Alas": {"_count": 1, "no": {"_count": 1}}, "Grindelwald": {"_count": 1, "expelled": {"_count": 1}}, "Long": {"_count": 1, "story": {"_count": 1}}, "Whoever": {"_count": 1, "cast": {"_count": 1}}, "Xenophilius": {"_count": 8, "Lovegood": {"_count": 1}, "glanced": {"_count": 1}, "raised": {"_count": 1}, "looked": {"_count": 1}, "halted": {"_count": 1}, "tried": {"_count": 1}, "dropped": {"_count": 1}, "licked": {"_count": 1}}, "Much": {"_count": 1, "the": {"_count": 1}}, "Prove": {"_count": 1, "that": {"_count": 1}}, "History": {"_count": 1, "alas": {"_count": 1}}, "\u2018Dont": {"_count": 1, "go": {"_count": 1}}, "\u2018Mayborn": {"_count": 1, "witches": {"_count": 1}}, "Excuse": {"_count": 1, "me": {"_count": 1}}, "Sending": {"_count": 1, "an": {"_count": 1}}, "Work": {"_count": 2, "": {"_count": 2}}, "Hallows": {"_count": 1, "versus": {"_count": 1}}, "\u2018The": {"_count": 1, "last": {"_count": 1}}, "Lee": {"_count": 1, "was": {"_count": 1}}, "Vol": {"_count": 1, "HARRY": {"_count": 1}}, "Stung": {"_count": 1, "Harry": {"_count": 1}}, "rasped": {"_count": 2, "Greyback": {"_count": 1}, "the": {"_count": 1}}, "Penelope": {"_count": 1, "Clearwater": {"_count": 1}}, "Nod": {"_count": 1, "a": {"_count": 1}}, "Doh": {"_count": 1, "": {"_count": 1}}, "Slytherin": {"_count": 1, "said": {"_count": 1}}, "ere": {"_count": 1, "": {"_count": 1}}, "Lucius": {"_count": 1, "asked": {"_count": 1}}, "Stupefyl": {"_count": 1, "she": {"_count": 1}}, "Greyback": {"_count": 1, "crooned": {"_count": 1}}, "ANSWER": {"_count": 2, "ME": {"_count": 2}}, "Griphook": {"_count": 2, "Harry": {"_count": 1}, "did": {"_count": 1}}, "Painful": {"_count": 1, "replied": {"_count": 1}}, "Ollivander": {"_count": 5, "held": {"_count": 1}, "performed": {"_count": 1}, "looked": {"_count": 1}, "shook": {"_count": 1}, "turned": {"_count": 1}}, "Priori": {"_count": 1, "Incantatem": {"_count": 1}}, "stammered": {"_count": 2, "Harry": {"_count": 1}, "Filch": {"_count": 1}}, "Travers": {"_count": 1, "stopped": {"_count": 1}}, "Ow": {"_count": 1, "you": {"_count": 1}}, "Hide": {"_count": 1, "said": {"_count": 1}}, "Aargh": {"_count": 1, "": {"_count": 1}}, "Kill": {"_count": 2, "me": {"_count": 1}, "the": {"_count": 1}}, "Pleasant": {"_count": 1, "": {"_count": 1}}, "Easy": {"_count": 1, "": {"_count": 1}}, "Sort": {"_count": 1, "of": {"_count": 1}}, "Ariana": {"_count": 1, "": {"_count": 1}}, "Aberforth": {"_count": 1, "glared": {"_count": 1}}, "Free": {"_count": 1, "of": {"_count": 1}}, "shot": {"_count": 1, "back": {"_count": 1}}, "Released": {"_count": 1, "it": {"_count": 1}}, "Room": {"_count": 1, "of": {"_count": 1}}, "Plan": {"_count": 1, "": {"_count": 1}}, "Daddys": {"_count": 1, "trying": {"_count": 1}}, "Ravenclaws": {"_count": 1, "wearing": {"_count": 1}}, "Alecto": {"_count": 1, "": {"_count": 1}}, "Amycus": {"_count": 1, "moved": {"_count": 1}}, "Protego": {"_count": 1, "Horribilis": {"_count": 1}}, "Seen": {"_count": 1, "it": {"_count": 1}}, "Heard": {"_count": 1, "YouKnowWho": {"_count": 1}}, "puffed": {"_count": 1, "Hagrid": {"_count": 1}}, "mimicked": {"_count": 1, "Crabbe": {"_count": 1}}, "Fiendfyre": {"_count": 1, "cursed": {"_count": 1}}, "Mustve": {"_count": 1, "learned": {"_count": 1}}, "Grawp": {"_count": 1, "came": {"_count": 1}}, "wheezed": {"_count": 1, "Hermione": {"_count": 1}}, "Petunia": {"_count": 2, "says": {"_count": 1}, "was": {"_count": 1}}, "Lily": {"_count": 4, "whispered": {"_count": 1}, "asked": {"_count": 1}, "gave": {"_count": 1}, "had": {"_count": 1}}, "Lilys": {"_count": 2, "eyes": {"_count": 1}, "bright": {"_count": 1}}, "Tuney": {"_count": 1, "hhates": {"_count": 1}}, "James": {"_count": 2, "asked": {"_count": 1}, "lifted": {"_count": 1}}, "Saved": {"_count": 1, "": {"_count": 1}}, "DONT": {"_count": 1, "": {"_count": 1}}, "murmured": {"_count": 1, "Dumbledore": {"_count": 1}}, "Mine": {"_count": 1, "": {"_count": 1}}, "Lately": {"_count": 1, "only": {"_count": 1}}, "Always": {"_count": 1, "said": {"_count": 1}}, "Terror": {"_count": 1, "washed": {"_count": 1}}, "Until": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "QUIET": {"_count": 1, "": {"_count": 1}}, "Chaos": {"_count": 1, "reigned": {"_count": 1}}, "taunted": {"_count": 1, "Bellatrix": {"_count": 1}}, "jeered": {"_count": 1, "Voldemort": {"_count": 1}}, "Accident": {"_count": 2, "was": {"_count": 1}, "that": {"_count": 1}}, "Accidents": {"_count": 1, "": {"_count": 1}}, "Love": {"_count": 1, "which": {"_count": 1}}, "Possessing": {"_count": 1, "the": {"_count": 1}}, "Albus": {"_count": 1, "asked": {"_count": 1}}, "Snogging": {"_count": 1, "Victoire": {"_count": 1}}}, "must": {"_count": 642, "have": {"_count": 136, "been": {"_count": 36}, "passed": {"_count": 1}, "made": {"_count": 4}, "had": {"_count": 5}, "shrunk": {"_count": 1}, "caught": {"_count": 1}, "jumped": {"_count": 1}, "forgotten": {"_count": 1}, "done": {"_count": 8}, "tipped": {"_count": 1}, "hurried": {"_count": 1}, "heard": {"_count": 1}, "hurt": {"_count": 1}, "walked": {"_count": 1}, "cost": {"_count": 1}, "showed": {"_count": 1}, "left": {"_count": 2}, "seen": {"_count": 3}, "crossed": {"_count": 2}, "a": {"_count": 2}, "some": {"_count": 1}, "known": {"_count": 3}, "noticed": {"_count": 2}, "shown": {"_count": 2}, "died": {"_count": 2}, "found": {"_count": 1}, "told": {"_count": 1}, "dozed": {"_count": 1}, "unhinged": {"_count": 1}, "released": {"_count": 1}, "Disapparated": {"_count": 1}, "misheard": {"_count": 2}, "dashed": {"_count": 1}, "believed": {"_count": 1}, "reappeared": {"_count": 1}, "sent": {"_count": 2}, "lifted": {"_count": 1}, "missed": {"_count": 2}, "misunderstood": {"_count": 2}, "something": {"_count": 1}, "affected": {"_count": 1}, "blabbed": {"_count": 1}, "attempted": {"_count": 1}, "slipped": {"_count": 2}, "given": {"_count": 1}, "sliced": {"_count": 1}, "gone": {"_count": 2}, "seemed": {"_count": 1}, "moved": {"_count": 1}, "powers": {"_count": 1}, "brought": {"_count": 1}, "touched": {"_count": 1}, "used": {"_count": 1}, "finished": {"_count": 1}, "got": {"_count": 1}, "arranged": {"_count": 1}, "Stupefied": {"_count": 1}, "summoned": {"_count": 1}, "toughened": {"_count": 1}, "taught": {"_count": 1}, "thought": {"_count": 1}, "belonged": {"_count": 1}, "realized": {"_count": 1}, "must": {"_count": 1}, "hit": {"_count": 1}, "arrived": {"_count": 1}, "suffered": {"_count": 1}, "put": {"_count": 2}, "penetrated": {"_count": 1}, "sneaked": {"_count": 1}}, "be": {"_count": 161, "really": {"_count": 3}, "thick": {"_count": 1}, "the": {"_count": 6}, "good": {"_count": 1}, "five": {"_count": 1}, "guarding": {"_count": 1}, "something": {"_count": 4}, "a": {"_count": 7}, "miles": {"_count": 2}, "in": {"_count": 4}, "taken": {"_count": 3}, "Harrys": {"_count": 2}, "set": {"_count": 1}, "brilliant": {"_count": 1}, "about": {"_count": 2}, "nearly": {"_count": 3}, "where": {"_count": 2}, "too": {"_count": 1}, "back": {"_count": 1}, "getting": {"_count": 2}, "why": {"_count": 1}, "Ginny": {"_count": 1}, "very": {"_count": 4}, "having": {"_count": 2}, "time": {"_count": 1}, "terrible": {"_count": 2}, "him": {"_count": 1}, "some": {"_count": 2}, "malfunctioning": {"_count": 1}, "out": {"_count": 1}, "Bill": {"_count": 1}, "Dracos": {"_count": 1}, "somewhere": {"_count": 1}, "entering": {"_count": 1}, "adapted": {"_count": 1}, "she": {"_count": 1}, "freezing": {"_count": 1}, "even": {"_count": 1}, "": {"_count": 2}, "broken": {"_count": 1}, "observed": {"_count": 1}, "nearby": {"_count": 1}, "notified": {"_count": 1}, "mentioned": {"_count": 1}, "frustrating": {"_count": 1}, "another": {"_count": 1}, "true": {"_count": 1}, "bad": {"_count": 1}, "Wartcap": {"_count": 1}, "winging": {"_count": 1}, "passed": {"_count": 1}, "guarded": {"_count": 1}, "discouraged": {"_count": 2}, "abandoned": {"_count": 1}, "what": {"_count": 1}, "aware": {"_count": 1}, "so": {"_count": 2}, "horrible": {"_count": 1}, "sneaking": {"_count": 1}, "hiding": {"_count": 1}, "Hermione": {"_count": 1}, "defensive": {"_count": 1}, "brought": {"_count": 1}, "somebody": {"_count": 1}, "expecting": {"_count": 1}, "unicorns": {"_count": 1}, "full": {"_count": 2}, "just": {"_count": 1}, "treated": {"_count": 1}, "admitted": {"_count": 2}, "strong": {"_count": 1}, "either": {"_count": 1}, "Mr": {"_count": 2}, "Petunia": {"_count": 1}, "your": {"_count": 1}, "mad": {"_count": 1}, "because": {"_count": 1}, "close": {"_count": 1}, "Ogden": {"_count": 1}, "their": {"_count": 1}, "one": {"_count": 1}, "said": {"_count": 1}, "grateful": {"_count": 1}, "determined": {"_count": 1}, "loads": {"_count": 1}, "wearing": {"_count": 1}, "drunk": {"_count": 1}, "ordinary": {"_count": 1}, "objects": {"_count": 1}, "such": {"_count": 1}, "empty": {"_count": 1}, "it": {"_count": 1}, "surrounded": {"_count": 1}, "done": {"_count": 3}, "off": {"_count": 1}, "Imperiused": {"_count": 1}, "with": {"_count": 1}, "sure": {"_count": 2}, "behind": {"_count": 1}, "given": {"_count": 1}, "upset": {"_count": 1}, "up": {"_count": 1}, "alive": {"_count": 1}, "informed": {"_count": 1}, "placed": {"_count": 1}, "exceptionally": {"_count": 1}, "intact": {"_count": 1}, "here": {"_count": 1}, "evacuated": {"_count": 1}, "around": {"_count": 1}, "lying": {"_count": 1}, "wizards": {"_count": 1}, "between": {"_count": 1}, "like": {"_count": 1}, "more": {"_count": 1}, "subjected": {"_count": 1}, "recognizable": {"_count": 1}, "no": {"_count": 1}}, "know": {"_count": 20, "about": {"_count": 2}, "loads": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 1}, "Ginny": {"_count": 1}, "they": {"_count": 1}, "Minerva": {"_count": 1}, "Voldemorts": {"_count": 1}, "your": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "youre": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 1}, "something": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "theyve": {"_count": 1}, "what": {"_count": 1}}, "say": {"_count": 25, "I": {"_count": 5}, "": {"_count": 3}, "hes": {"_count": 1}, "when": {"_count": 1}, "YouKnowWho": {"_count": 1}, "if": {"_count": 1}, "neither": {"_count": 1}, "it": {"_count": 3}, "Im": {"_count": 1}, "youre": {"_count": 1}, "your": {"_count": 1}, "Id": {"_count": 2}, "that": {"_count": 1}, "doing": {"_count": 1}, "ever": {"_count": 1}, "Ginevras": {"_count": 1}}, "expect": {"_count": 1, "great": {"_count": 1}}, "already": {"_count": 1, "be": {"_count": 1}}, "tell": {"_count": 8, "you": {"_count": 5}, "": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 1}}, "transfer": {"_count": 1, "to": {"_count": 1}}, "seem": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "show": {"_count": 2, "that": {"_count": 1}, "you": {"_count": 1}}, "wake": {"_count": 3, "up": {"_count": 3}}, "mean": {"_count": 5, "": {"_count": 1}, "The": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}, "\u2018Must": {"_count": 1}}, "lie": {"_count": 3, "he": {"_count": 1}, "through": {"_count": 1}, "however": {"_count": 1}}, "look": {"_count": 3, "and": {"_count": 1}, "very": {"_count": 1}, "stupid": {"_count": 1}}, "trouble": {"_count": 1, "you": {"_count": 1}}, "come": {"_count": 3, "and": {"_count": 1}, "soon": {"_count": 1}, "whether": {"_count": 1}}, "build": {"_count": 1, "you": {"_count": 1}}, "not": {"_count": 36, "go": {"_count": 1}, "put": {"_count": 1}, "face": {"_count": 1}, "be": {"_count": 5}, "meddle": {"_count": 1}, "Dobby": {"_count": 1}, "talk": {"_count": 1}, "use": {"_count": 1}, "expect": {"_count": 1}, "tell": {"_count": 15}, "do": {"_count": 1}, "drink": {"_count": 1}, "escape": {"_count": 1}, "leave": {"_count": 2}, "hurt": {"_count": 1}, "know": {"_count": 2}}, "stay": {"_count": 1, "where": {"_count": 1}}, "do": {"_count": 10, "it": {"_count": 3}, "": {"_count": 2}, "what": {"_count": 2}, "as": {"_count": 2}, "a": {"_count": 1}}, "speak": {"_count": 3, "clearly": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "impress": {"_count": 1, "upon": {"_count": 1}}, "also": {"_count": 2, "warn": {"_count": 1}, "return": {"_count": 1}}, "go": {"_count": 10, "back": {"_count": 1}, "home": {"_count": 1}, "": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 2}, "now": {"_count": 1}, "downstairs": {"_count": 1}, "But": {"_count": 1}, "and": {"_count": 1}}, "ask": {"_count": 7, "you": {"_count": 5}, "ourselves": {"_count": 2}}, "inform": {"_count": 1, "you": {"_count": 1}}, "admit": {"_count": 6, "its": {"_count": 1}, "Peter": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 2}}, "save": {"_count": 3, "himself": {"_count": 1}, "it": {"_count": 1}, "Luna": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "assumed": {"_count": 1}}, "see": {"_count": 5, "how": {"_count": 1}, "that": {"_count": 3}, "the": {"_count": 1}}, "find": {"_count": 3, "out": {"_count": 1}, "a": {"_count": 1}, "what": {"_count": 1}}, "realize": {"_count": 1, "that": {"_count": 1}}, "sometimes": {"_count": 1, "eat": {"_count": 1}}, "draft": {"_count": 1, "an": {"_count": 1}}, "make": {"_count": 4, "it": {"_count": 1}, "allowances": {"_count": 1}, "only": {"_count": 1}, "one": {"_count": 1}}, "warn": {"_count": 4, "you": {"_count": 3}, "": {"_count": 1}}, "give": {"_count": 4, "permission": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}}, "keep": {"_count": 2, "our": {"_count": 1}, "an": {"_count": 1}}, "win": {"_count": 1, "": {"_count": 1}}, "register": {"_count": 1, "our": {"_count": 1}}, "catch": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}}, "insist": {"_count": 5, "that": {"_count": 2}, "My": {"_count": 1}, "": {"_count": 1}, "Professor": {"_count": 1}}, "never": {"_count": 1, "happen": {"_count": 1}}, "once": {"_count": 3, "more": {"_count": 1}, "have": {"_count": 2}}, "write": {"_count": 1, "their": {"_count": 1}}, "ave": {"_count": 2, "made": {"_count": 1}, "been": {"_count": 1}}, "follow": {"_count": 3, "the": {"_count": 2}, "even": {"_count": 1}}, "get": {"_count": 6, "back": {"_count": 3}, "to": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}}, "dash": {"_count": 1, "he": {"_count": 1}}, "poke": {"_count": 1, "Harry": {"_count": 1}}, "still": {"_count": 2, "be": {"_count": 1}, "guard": {"_count": 1}}, "hope": {"_count": 3, "that": {"_count": 2}, "not": {"_count": 1}}, "really": {"_count": 3, "like": {"_count": 1}, "hate": {"_count": 1}, "smell": {"_count": 1}}, "understand": {"_count": 4, "said": {"_count": 1}, "that": {"_count": 2}, "Harry": {"_count": 1}}, "feel": {"_count": 3, "to": {"_count": 2}, "ah": {"_count": 1}}, "carry": {"_count": 1, "to": {"_count": 1}}, "use": {"_count": 2, "if": {"_count": 1}, "only": {"_count": 1}}, "take": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "act": {"_count": 4, "as": {"_count": 2}, "in": {"_count": 1}, "And": {"_count": 1}}, "return": {"_count": 2, "to": {"_count": 2}}, "first": {"_count": 1, "acknowledge": {"_count": 1}}, "you": {"_count": 2, "think": {"_count": 1}, "not": {"_count": 1}}, "fulfill": {"_count": 1, "my": {"_count": 1}}, "quarter": {"_count": 1, "every": {"_count": 1}}, "unite": {"_count": 1, "inside": {"_count": 1}}, "remember": {"_count": 5, "one": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 2}}, "firstly": {"_count": 1, "offer": {"_count": 1}}, "master": {"_count": 2, "the": {"_count": 2}}, "even": {"_count": 1, "now": {"_count": 1}}, "long": {"_count": 1, "since": {"_count": 1}}, "finish": {"_count": 1, "giving": {"_count": 1}}, "remain": {"_count": 2, "focused": {"_count": 1}, "close": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 2}}, "surely": {"_count": 3, "have": {"_count": 2}, "relieve": {"_count": 1}}, "break": {"_count": 1, "out": {"_count": 1}}, "study": {"_count": 1, "Occlumency": {"_count": 1}}, "promise": {"_count": 1, "me": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "continue": {"_count": 1, "giving": {"_count": 1}}, "hurry": {"_count": 1, "": {"_count": 1}}, "pay": {"_count": 1, "the": {"_count": 1}}, "interfere": {"_count": 1, "with": {"_count": 1}}, "avoid": {"_count": 1, "": {"_count": 1}}, "die": {"_count": 5, "at": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}}, "confess": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "confirm": {"_count": 1, "that": {"_count": 1}}, "include": {"_count": 1, "or": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 1, "call": {"_count": 1}}, "think": {"_count": 1, "youve": {"_count": 1}}, "need": {"_count": 1, "new": {"_count": 1}}, "drop": {"_count": 1, "by": {"_count": 1}}, "therefore": {"_count": 2, "be": {"_count": 2}}, "accept": {"_count": 2, "that": {"_count": 1}, "these": {"_count": 1}}, "forgive": {"_count": 1, "this": {"_count": 1}}, "try": {"_count": 2, "not": {"_count": 1}, "that": {"_count": 1}}, "concentrate": {"_count": 1, "continuously": {"_count": 1}}, "obey": {"_count": 1, "him": {"_count": 1}}, "quickly": {"_count": 1, "recount": {"_count": 1}}, "attack": {"_count": 1, "the": {"_count": 1}}, "indeed": {"_count": 1, "be": {"_count": 1}}, "suffocate": {"_count": 1, "the": {"_count": 1}}, "weaken": {"_count": 1, "him": {"_count": 1}}, "resign": {"_count": 1, "ourselves": {"_count": 1}}, "somehow": {"_count": 2, "get": {"_count": 1}, "have": {"_count": 1}}, "agree": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "consult": {"_count": 1, "the": {"_count": 1}}, "abandon": {"_count": 1, "forever": {"_count": 1}}, "prune": {"_count": 1, "yours": {"_count": 1}}, "brace": {"_count": 1, "themselves": {"_count": 1}}, "decide": {"_count": 1, "ow": {"_count": 1}}, "always": {"_count": 5, "be": {"_count": 2}, "win": {"_count": 1}, "come": {"_count": 1}, "fear": {"_count": 1}}, "suffer": {"_count": 1, "the": {"_count": 1}}, "today": {"_count": 1, "must": {"_count": 1}}, "hide": {"_count": 1, "himself": {"_count": 1}}, "stress": {"_count": 1, "this": {"_count": 1}}, "capture": {"_count": 1, "it": {"_count": 1}}, "just": {"_count": 1, "be": {"_count": 1}}, "place": {"_count": 1, "his": {"_count": 1}}, "redouble": {"_count": 1, "protection": {"_count": 1}}, "undertake": {"_count": 1, "alone": {"_count": 1}}, "flee": {"_count": 1, "whispered": {"_count": 1}}, "alert": {"_count": 1, "the": {"_count": 1}}, "crumple": {"_count": 1, "unconscious": {"_count": 1}}, "all": {"_count": 1, "wait": {"_count": 1}}, "perform": {"_count": 1, "for": {"_count": 1}}, "happen": {"_count": 1, "": {"_count": 1}}, "kill": {"_count": 1, "me": {"_count": 1}}, "he": {"_count": 1, "do": {"_count": 1}}, "plant": {"_count": 1, "the": {"_count": 1}}, "end": {"_count": 1, "": {"_count": 1}}, "exist": {"_count": 1, "must": {"_count": 1}}, "and": {"_count": 1, "find": {"_count": 1}}, "believe": {"_count": 1, "that": {"_count": 1}}}, "trick": {"_count": 38, "of": {"_count": 5, "the": {"_count": 3}, "Hermione": {"_count": 1}, "VVoldemorts": {"_count": 1}}, "staircase": {"_count": 1, "if": {"_count": 1}}, "was": {"_count": 3, "that": {"_count": 1}, "to": {"_count": 2}}, "said": {"_count": 2, "Fred": {"_count": 1}, "Umbridge": {"_count": 1}}, "that": {"_count": 1, "man": {"_count": 1}}, "is": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "!": {"_count": 1}, "?": {"_count": 1}}, "on": {"_count": 1, "him": {"_count": 1}}, "which": {"_count": 1, "involved": {"_count": 1}}, "Sirius": {"_count": 1, "played": {"_count": 1}}, "sweets": {"_count": 1, "loads": {"_count": 1}}, "stairs": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 2, "practical": {"_count": 1}, "lure": {"_count": 1}}, "Potter": {"_count": 1, "he": {"_count": 1}}, "step": {"_count": 2, "Neville": {"_count": 1}, "and": {"_count": 1}}, "them": {"_count": 1, "into": {"_count": 1}}, "if": {"_count": 2, "he": {"_count": 1}, "youve": {"_count": 1}}, "or": {"_count": 1, "joke": {"_count": 1}}, "wands": {"_count": 1, "the": {"_count": 1}}, "Malfoy": {"_count": 2, "into": {"_count": 2}}, "with": {"_count": 1, "the": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "they": {"_count": 1, "got": {"_count": 1}}}, "light": {"_count": 486, "": {"_count": 44, ".": {"_count": 43}, "!": {"_count": 1}}, "bright": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 7, "usually": {"_count": 1}, "was": {"_count": 2}, "precedes": {"_count": 1}, "were": {"_count": 1}, "Sirius": {"_count": 1}, "came": {"_count": 1}}, "sped": {"_count": 1, "back": {"_count": 1}}, "and": {"_count": 51, "a": {"_count": 4}, "Harry": {"_count": 3}, "warmth": {"_count": 2}, "Lockhart": {"_count": 1}, "began": {"_count": 1}, "it": {"_count": 1}, "befuddling": {"_count": 1}, "speedy": {"_count": 1}, "then": {"_count": 2}, "casual": {"_count": 1}, "Ron": {"_count": 2}, "noises": {"_count": 1}, "when": {"_count": 1}, "heard": {"_count": 1}, "air": {"_count": 1}, "saw": {"_count": 2}, "spoke": {"_count": 1}, "with": {"_count": 1}, "was": {"_count": 1}, "Snape": {"_count": 1}, "knew": {"_count": 1}, "flung": {"_count": 1}, "deep": {"_count": 1}, "calm": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 4}, "I": {"_count": 1}, "happy": {"_count": 1}, "friendly": {"_count": 1}, "examined": {"_count": 1}, "conversational": {"_count": 1}, "once": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "everything": {"_count": 1}, "peaceful": {"_count": 1}, "silence": {"_count": 1}, "landed": {"_count": 1}}, "came": {"_count": 6, "from": {"_count": 4}, "flying": {"_count": 1}, "out": {"_count": 1}}, "more": {"_count": 2, "clearly": {"_count": 1}, "powerful": {"_count": 1}}, "a": {"_count": 6, "sound": {"_count": 1}, "fire": {"_count": 2}, "rushing": {"_count": 1}, "match": {"_count": 1}, "yelp": {"_count": 1}}, "on": {"_count": 9, "to": {"_count": 1}, "in": {"_count": 2}, "the": {"_count": 3}, "his": {"_count": 1}, "every": {"_count": 1}, "water": {"_count": 1}}, "but": {"_count": 3, "nothing": {"_count": 2}, "his": {"_count": 1}}, "as": {"_count": 9, "air": {"_count": 2}, "their": {"_count": 1}, "though": {"_count": 2}, "the": {"_count": 1}, "widely": {"_count": 1}, "possible": {"_count": 1}, "Professor": {"_count": 1}}, "while": {"_count": 1, "a": {"_count": 1}}, "reading": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 37, "adventure": {"_count": 1}, "many": {"_count": 1}, "the": {"_count": 16}, "thousands": {"_count": 1}, "his": {"_count": 3}, "hundreds": {"_count": 1}, "Dumbledore": {"_count": 2}, "it": {"_count": 1}, "what": {"_count": 1}, "Lord": {"_count": 1}, "everything": {"_count": 1}, "mischiefdetection": {"_count": 1}, "a": {"_count": 2}, "Professor": {"_count": 1}, "dawn": {"_count": 1}, "this": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}}, "breeze": {"_count": 3, "lifted": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 1}}, "before": {"_count": 2, "they": {"_count": 1}, "Moody": {"_count": 1}}, "the": {"_count": 7, "size": {"_count": 1}, "curtains": {"_count": 1}, "darkening": {"_count": 1}, "PutOuter": {"_count": 1}, "crystal": {"_count": 1}, "fire": {"_count": 2}}, "ahead": {"_count": 5, "I": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 2}}, "suddenly": {"_count": 1, "flooded": {"_count": 1}}, "clicked": {"_count": 1, "on": {"_count": 1}}, "only": {"_count": 2, "to": {"_count": 2}}, "down": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "upon": {"_count": 1}}, "shot": {"_count": 7, "out": {"_count": 2}, "from": {"_count": 3}, "past": {"_count": 2}}, "dance": {"_count": 1, "over": {"_count": 1}}, "even": {"_count": 1, "over": {"_count": 1}}, "cast": {"_count": 7, "by": {"_count": 6}, "upon": {"_count": 1}}, "given": {"_count": 1, "off": {"_count": 1}}, "hit": {"_count": 6, "Malfoy": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}, "both": {"_count": 1}}, "refreshing": {"_count": 1, "breeze": {"_count": 1}}, "appeared": {"_count": 4, "at": {"_count": 2}, "right": {"_count": 2}}, "mine": {"_count": 1, "too": {"_count": 1}}, "was": {"_count": 19, "pitchblack": {"_count": 1}, "fading": {"_count": 3}, "illuminating": {"_count": 1}, "coming": {"_count": 4}, "quivering": {"_count": 1}, "on": {"_count": 1}, "dimmer": {"_count": 1}, "a": {"_count": 1}, "already": {"_count": 1}, "thrown": {"_count": 1}, "so": {"_count": 1}, "ten": {"_count": 1}, "sucked": {"_count": 1}, "hovering": {"_count": 1}}, "from": {"_count": 20, "his": {"_count": 1}, "Harrys": {"_count": 2}, "the": {"_count": 13}, "their": {"_count": 1}, "a": {"_count": 2}, "Hermiones": {"_count": 1}}, "so": {"_count": 2, "bright": {"_count": 1}, "close": {"_count": 1}}, "stumbling": {"_count": 1, "and": {"_count": 1}}, "flamed": {"_count": 1, "through": {"_count": 1}}, "slid": {"_count": 1, "over": {"_count": 1}}, "shining": {"_count": 2, "about": {"_count": 1}, "through": {"_count": 1}}, "up": {"_count": 2, "and": {"_count": 1}, "a": {"_count": 1}}, "With": {"_count": 1, "a": {"_count": 1}}, "brown": {"_count": 1, "hair": {"_count": 1}}, "filled": {"_count": 3, "the": {"_count": 3}}, "now": {"_count": 4, "came": {"_count": 1}, "": {"_count": 1}, "moving": {"_count": 1}, "no": {"_count": 1}}, "wind": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 2, "The": {"_count": 1}, "it": {"_count": 1}}, "fell": {"_count": 5, "across": {"_count": 1}, "upon": {"_count": 2}, "on": {"_count": 1}, "over": {"_count": 1}}, "he": {"_count": 4, "saw": {"_count": 3}, "was": {"_count": 1}}, "over": {"_count": 5, "the": {"_count": 5}}, "through": {"_count": 1, "a": {"_count": 1}}, "erupted": {"_count": 2, "from": {"_count": 1}, "through": {"_count": 1}}, "growing": {"_count": 1, "brighter": {"_count": 1}}, "galloping": {"_count": 1, "away": {"_count": 1}}, "blue": {"_count": 3, "eyes": {"_count": 3}}, "him": {"_count": 1, "up": {"_count": 1}}, "they": {"_count": 3, "had": {"_count": 1}, "were": {"_count": 2}}, "shone": {"_count": 2, "through": {"_count": 1}, "far": {"_count": 1}}, "in": {"_count": 12, "the": {"_count": 9}, "here": {"_count": 1}, "Hagrids": {"_count": 1}, "Dumbledores": {"_count": 1}}, "fixture": {"_count": 1, "on": {"_count": 1}}, "which": {"_count": 3, "seemed": {"_count": 1}, "illuminated": {"_count": 1}, "looked": {"_count": 1}}, "though": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "reunited": {"_count": 1, "and": {"_count": 1}}, "momentarily": {"_count": 1, "lit": {"_count": 1}}, "farther": {"_count": 1, "on": {"_count": 1}}, "flying": {"_count": 4, "over": {"_count": 1}, "at": {"_count": 1}, "along": {"_count": 1}, "in": {"_count": 1}}, "talking": {"_count": 1, "very": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "flooding": {"_count": 4, "from": {"_count": 2}, "out": {"_count": 2}}, "streaming": {"_count": 1, "from": {"_count": 1}}, "pouring": {"_count": 1, "from": {"_count": 1}}, "rain": {"_count": 1, "had": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}, "dancing": {"_count": 2, "and": {"_count": 1}, "on": {"_count": 1}}, "made": {"_count": 1, "liquid": {"_count": 1}}, "looking": {"_count": 2, "older": {"_count": 1}, "oddly": {"_count": 1}}, "about": {"_count": 1, "Harry": {"_count": 1}}, "blazed": {"_count": 1, "through": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "blasted": {"_count": 1, "from": {"_count": 1}}, "connected": {"_count": 1, "the": {"_count": 1}}, "beyond": {"_count": 2, "which": {"_count": 1}, "the": {"_count": 1}}, "still": {"_count": 1, "connecting": {"_count": 1}}, "spun": {"_count": 1, "web": {"_count": 1}}, "were": {"_count": 3, "sliding": {"_count": 1}, "the": {"_count": 1}, "still": {"_count": 1}}, "beads": {"_count": 1, "began": {"_count": 1}}, "moved": {"_count": 1, "nearer": {"_count": 1}}, "right": {"_count": 1, "back": {"_count": 1}}, "remained": {"_count": 1, "unbroken": {"_count": 1}}, "vanished": {"_count": 1, "the": {"_count": 1}}, "flew": {"_count": 14, "over": {"_count": 2}, "right": {"_count": 1}, "from": {"_count": 4}, "under": {"_count": 1}, "past": {"_count": 1}, "back": {"_count": 1}, "into": {"_count": 2}, "in": {"_count": 1}, "through": {"_count": 1}}, "had": {"_count": 6, "connected": {"_count": 1}, "spilled": {"_count": 1}, "shot": {"_count": 1}, "narrowly": {"_count": 1}, "flown": {"_count": 1}, "appeared": {"_count": 1}}, "to": {"_count": 1, "help": {"_count": 1}}, "flared": {"_count": 1, "inches": {"_count": 1}}, "caused": {"_count": 1, "by": {"_count": 1}}, "polite": {"_count": 1, "voices": {"_count": 1}}, "illuminated": {"_count": 3, "his": {"_count": 1}, "every": {"_count": 1}, "him": {"_count": 1}}, "issuing": {"_count": 2, "from": {"_count": 2}}, "For": {"_count": 1, "each": {"_count": 1}}, "silver": {"_count": 1, "vapor": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 2}}, "some": {"_count": 1, "clearly": {"_count": 1}}, "night": {"_count": 1, "breeze": {"_count": 1}}, "we": {"_count": 1, "wen": {"_count": 1}}, "again": {"_count": 1, "The": {"_count": 1}}, "flashed": {"_count": 2, "around": {"_count": 2}}, "later": {"_count": 1, "Snape": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "flickering": {"_count": 1, "on": {"_count": 1}}, "spilled": {"_count": 2, "down": {"_count": 1}, "over": {"_count": 1}}, "dusky": {"_count": 1, "purple": {"_count": 1}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "within": {"_count": 1, "was": {"_count": 1}}, "like": {"_count": 2, "arrows": {"_count": 1}, "fire": {"_count": 1}}, "Harry": {"_count": 4, "could": {"_count": 1}, "saw": {"_count": 1}, "": {"_count": 1}, "knew": {"_count": 1}}, "He": {"_count": 2, "was": {"_count": 1}, "slumped": {"_count": 1}}, "grunts": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "at": {"_count": 1, "Dumbledore": {"_count": 1}}, "whole": {"_count": 1, "": {"_count": 1}}, "quick": {"_count": 1, "strides": {"_count": 1}}, "glimmered": {"_count": 1, "through": {"_count": 1}}, "drained": {"_count": 1, "his": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "gray": {"_count": 2, "eyes": {"_count": 1}, "and": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}, "obliterating": {"_count": 1, "those": {"_count": 1}}, "onto": {"_count": 1, "a": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "played": {"_count": 1, "upon": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "spilling": {"_count": 2, "from": {"_count": 2}}, "chilly": {"_count": 1, "breeze": {"_count": 1}}, "sparkled": {"_count": 1, "upon": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "simply": {"_count": 1}}, "soared": {"_count": 1, "past": {"_count": 1}}, "burst": {"_count": 2, "in": {"_count": 1}, "from": {"_count": 1}}, "theyd": {"_count": 1, "gone": {"_count": 1}}, "hearted": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "pairs": {"_count": 1}}, "soft": {"_count": 1, "brown": {"_count": 1}}, "casual": {"_count": 1, "tone": {"_count": 1}}, "whizzed": {"_count": 1, "over": {"_count": 1}}, "layer": {"_count": 1, "of": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "darting": {"_count": 1, "across": {"_count": 1}}, "revealed": {"_count": 1, "bits": {"_count": 1}}, "dazzled": {"_count": 1, "them": {"_count": 1}}, "Umbridge": {"_count": 1, "crumpled": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "Harryl": {"_count": 1, "He": {"_count": 1}}, "swung": {"_count": 1, "dizzyingly": {"_count": 1}}, "all": {"_count": 1, "thought": {"_count": 1}}, "It": {"_count": 1, "struck": {"_count": 1}}, "became": {"_count": 1, "blinding": {"_count": 1}}, "stepped": {"_count": 1, "out": {"_count": 1}}, "went": {"_count": 1, "out": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "get": {"_count": 1}}, "forcing": {"_count": 1, "the": {"_count": 1}}, "cottage": {"_count": 1, "": {"_count": 1}}, "permitted": {"_count": 1, "twice": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "shoot": {"_count": 1, "into": {"_count": 1}}, "streamed": {"_count": 1, "upon": {"_count": 1}}}, "blinked": {"_count": 49, "and": {"_count": 13, "stared": {"_count": 2}, "Hagrid": {"_count": 1}, "vanished": {"_count": 1}, "looked": {"_count": 5}, "Ron": {"_count": 1}, "saw": {"_count": 1}, "realized": {"_count": 1}, "was": {"_count": 1}}, "furiously": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "again": {"_count": 1, "": {"_count": 1}}, "anxiously": {"_count": 1, "up": {"_count": 1}}, "her": {"_count": 2, "great": {"_count": 1}, "amber": {"_count": 1}}, "slowly": {"_count": 1, "at": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "benignly": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 4, "him": {"_count": 2}, "her": {"_count": 2}}, "peacefully": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 1, "recovered": {"_count": 1}}, "looking": {"_count": 1, "rather": {"_count": 1}}, "confusedly": {"_count": 1, "Professor": {"_count": 1}}, "a": {"_count": 1, "living": {"_count": 1}}, "rather": {"_count": 1, "rapidly": {"_count": 1}}}, "stared": {"_count": 372, "at": {"_count": 181, "the": {"_count": 37}, "it": {"_count": 14}, "each": {"_count": 17}, "Harry": {"_count": 16}, "him": {"_count": 45}, "their": {"_count": 1}, "them": {"_count": 6}, "Dumbledore": {"_count": 6}, "one": {"_count": 2}, "her": {"_count": 18}, "Lupins": {"_count": 1}, "Pettigrew": {"_count": 1}, "Hermione": {"_count": 3}, "Sirius": {"_count": 1}, "Moody": {"_count": 1}, "his": {"_count": 3}, "and": {"_count": 1}, "Wormtail": {"_count": 1}, "Snape": {"_count": 1}, "Katie": {"_count": 1}, "Malfoy": {"_count": 1}, "Riddle": {"_count": 1}, "these": {"_count": 1}, "Dudley": {"_count": 1}, "Ron": {"_count": 1}}, "back": {"_count": 11, "": {"_count": 1}, "at": {"_count": 6}, "his": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}, "unblinking": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "around": {"_count": 14, "him": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 3}, "impressively": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}, "looking": {"_count": 1}, "for": {"_count": 2}}, "wildly": {"_count": 3, "at": {"_count": 1}, "around": {"_count": 2}}, "into": {"_count": 13, "the": {"_count": 8}, "Cedrics": {"_count": 1}, "a": {"_count": 1}, "Snapes": {"_count": 1}, "Dumbledore": {"_count": 1}, "each": {"_count": 1}}, "a": {"_count": 2, "lot": {"_count": 1}, "snake": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "as": {"_count": 9, "Harry": {"_count": 3}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "Professor": {"_count": 1}, "hard": {"_count": 1}, "its": {"_count": 1}, "they": {"_count": 1}}, "after": {"_count": 2, "her": {"_count": 1}, "him": {"_count": 1}}, "through": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "hungrily": {"_count": 2, "back": {"_count": 1}, "into": {"_count": 1}}, "unblinkingly": {"_count": 1, "upward": {"_count": 1}}, "bewildered": {"_count": 1, "at": {"_count": 1}}, "from": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "guiltily": {"_count": 1, "at": {"_count": 1}}, "down": {"_count": 23, "from": {"_count": 1}, "his": {"_count": 3}, "at": {"_count": 16}, "into": {"_count": 2}, "wide": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "stared": {"_count": 1}}, "straight": {"_count": 3, "ahead": {"_count": 1}, "into": {"_count": 1}, "at": {"_count": 1}}, "hard": {"_count": 1, "at": {"_count": 1}}, "numbly": {"_count": 1, "at": {"_count": 1}}, "out": {"_count": 9, "of": {"_count": 4}, "toward": {"_count": 1}, "into": {"_count": 1}, "at": {"_count": 1}, "over": {"_count": 2}}, "broodingly": {"_count": 1, "into": {"_count": 1}}, "openmouthed": {"_count": 1, "at": {"_count": 1}}, "furiously": {"_count": 1, "around": {"_count": 1}}, "dumbstruck": {"_count": 1, "at": {"_count": 1}}, "stared": {"_count": 1, "as": {"_count": 1}}, "up": {"_count": 18, "at": {"_count": 14}, "into": {"_count": 4}}, "determinedly": {"_count": 2, "back": {"_count": 1}, "out": {"_count": 1}}, "anxiously": {"_count": 1, "after": {"_count": 1}}, "inscrutably": {"_count": 1, "at": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "hopelessly": {"_count": 1, "down": {"_count": 1}}, "apprehensively": {"_count": 1, "at": {"_count": 1}}, "very": {"_count": 1, "meaningfully": {"_count": 1}}, "pointedly": {"_count": 1, "at": {"_count": 1}}, "deliberately": {"_count": 1, "around": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 1}, "everybody": {"_count": 1}, "it": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "blankly": {"_count": 3, "at": {"_count": 2}, "up": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 4, "disbelief": {"_count": 1}, "opposite": {"_count": 2}, "the": {"_count": 1}}, "thunderstruck": {"_count": 1, "between": {"_count": 1}}, "apparently": {"_count": 1, "repelled": {"_count": 1}}, "moodily": {"_count": 1, "at": {"_count": 1}}, "fixedly": {"_count": 3, "through": {"_count": 1}, "at": {"_count": 2}}, "avidly": {"_count": 2, "from": {"_count": 1}, "at": {"_count": 1}}, "perplexedly": {"_count": 1, "at": {"_count": 1}}, "incredulously": {"_count": 1, "at": {"_count": 1}}, "ahead": {"_count": 2, "of": {"_count": 2}}, "miserably": {"_count": 1, "at": {"_count": 1}}, "directly": {"_count": 1, "into": {"_count": 1}}, "meditatively": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "shamelessly": {"_count": 1, "as": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "hastily": {"_count": 1, "at": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "wordlessly": {"_count": 1, "at": {"_count": 1}}, "affronted": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 1, "seeing": {"_count": 1}}, "curiously": {"_count": 1, "at": {"_count": 1}}}, "back": {"_count": 3200, "": {"_count": 318, ".": {"_count": 241}, "?": {"_count": 38}, "!": {"_count": 39}}, "on": {"_count": 104, "drills": {"_count": 1}, "their": {"_count": 3}, "the": {"_count": 34}, "them": {"_count": 2}, "Harry": {"_count": 2}, "to": {"_count": 1}, "and": {"_count": 6}, "his": {"_count": 12}, "trying": {"_count": 1}, "": {"_count": 7}, "he": {"_count": 1}, "those": {"_count": 1}, "him": {"_count": 6}, "in": {"_count": 1}, "Snape": {"_count": 1}, "Privet": {"_count": 1}, "speaking": {"_count": 1}, "top": {"_count": 1}, "without": {"_count": 1}, "Professor": {"_count": 1}, "it": {"_count": 3}, "Umbridge": {"_count": 1}, "two": {"_count": 1}, "watching": {"_count": 1}, "her": {"_count": 3}, "inside": {"_count": 1}, "firm": {"_count": 1}, "Dumbledore": {"_count": 2}, "thereby": {"_count": 1}, "Ginny": {"_count": 1}, "what": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 1}, "both": {"_count": 1}, "I": {"_count": 1}}, "to": {"_count": 570, "the": {"_count": 181}, "their": {"_count": 13}, "Hagrid": {"_count": 3}, "sleep": {"_count": 4}, "staring": {"_count": 2}, "Harry": {"_count": 25}, "our": {"_count": 1}, "pass": {"_count": 1}, "get": {"_count": 3}, "his": {"_count": 30}, "bed": {"_count": 9}, "see": {"_count": 3}, "Gryffindor": {"_count": 17}, "take": {"_count": 1}, "Johnson": {"_count": 1}, "health": {"_count": 2}, "taunting": {"_count": 1}, "Privet": {"_count": 4}, "skimming": {"_count": 1}, "talk": {"_count": 1}, "full": {"_count": 1}, "Quirrells": {"_count": 1}, "hating": {"_count": 1}, "normal": {"_count": 12}, "school": {"_count": 18}, "being": {"_count": 1}, "Hogwarts": {"_count": 22}, "that": {"_count": 5}, "Ron": {"_count": 6}, "us": {"_count": 1}, "Hermione": {"_count": 6}, "Moaning": {"_count": 1}, "him": {"_count": 26}, "brown": {"_count": 1}, "some": {"_count": 1}, "finish": {"_count": 1}, "look": {"_count": 2}, "you": {"_count": 2}, "Mr": {"_count": 2}, "earth": {"_count": 5}, "wondering": {"_count": 1}, "Stan": {"_count": 1}, "power": {"_count": 3}, "let": {"_count": 6}, "make": {"_count": 2}, "Professor": {"_count": 3}, "your": {"_count": 4}, "work": {"_count": 2}, "Azkaban": {"_count": 3}, "life": {"_count": 4}, "her": {"_count": 12}, "its": {"_count": 5}, "Snape": {"_count": 6}, "help": {"_count": 2}, "admire": {"_count": 2}, "Stoatshead": {"_count": 1}, "me": {"_count": 5}, "my": {"_count": 5}, "bluewhite": {"_count": 1}, "front": {"_count": 1}, "Karkaroff": {"_count": 1}, "Sirius": {"_count": 2}, "Voldemort": {"_count": 2}, "how": {"_count": 2}, "Alicia": {"_count": 2}, "Dobby": {"_count": 1}, "investigate": {"_count": 1}, "Hogsmeade": {"_count": 2}, "watch": {"_count": 1}, "this": {"_count": 1}, "Fudge": {"_count": 1}, "face": {"_count": 6}, "Kings": {"_count": 1}, "London": {"_count": 3}, "Lupin": {"_count": 1}, "Divination": {"_count": 1}, "eavesdrop": {"_count": 1}, "stop": {"_count": 1}, "He": {"_count": 1}, "Angelina": {"_count": 1}, "Pucey": {"_count": 1}, "Hagrids": {"_count": 1}, "Siriuss": {"_count": 1}, "politeness": {"_count": 1}, "Occlumency": {"_count": 1}, "Dumbledore": {"_count": 5}, "Umbridge": {"_count": 1}, "them": {"_count": 9}, "Magorian": {"_count": 1}, "reality": {"_count": 1}, "it": {"_count": 2}, "a": {"_count": 1}, "where": {"_count": 5}, "babyhood": {"_count": 1}, "allow": {"_count": 2}, "back": {"_count": 1}, "Weasleys": {"_count": 1}, "teaching": {"_count": 1}, "Rons": {"_count": 1}, "what": {"_count": 1}, "Godrics": {"_count": 1}, "Downing": {"_count": 1}, "Dumbledores": {"_count": 1}, "afternoons": {"_count": 1}, "Tonks": {"_count": 1}, "Grimmauld": {"_count": 1}, "try": {"_count": 1}, "Mummy": {"_count": 1}, "seriousness": {"_count": 1}, "stay": {"_count": 1}, "be": {"_count": 1}, "pain": {"_count": 1}, "themselves": {"_count": 1}}, "past": {"_count": 5, "them": {"_count": 1}, "him": {"_count": 2}, "its": {"_count": 1}, "his": {"_count": 1}}, "at": {"_count": 153, "the": {"_count": 39}, "Hagrid": {"_count": 1}, "Malfoy": {"_count": 3}, "him": {"_count": 30}, "them": {"_count": 5}, "dawn": {"_count": 2}, "Ron": {"_count": 6}, "Hogwarts": {"_count": 3}, "it": {"_count": 2}, "Dumbledore": {"_count": 6}, "work": {"_count": 2}, "great": {"_count": 1}, "Siriuss": {"_count": 1}, "Privet": {"_count": 1}, "Percy": {"_count": 1}, "lessons": {"_count": 1}, "any": {"_count": 3}, "me": {"_count": 3}, "Harry": {"_count": 8}, "Snape": {"_count": 4}, "her": {"_count": 7}, "Perkinss": {"_count": 1}, "his": {"_count": 2}, "school": {"_count": 5}, "Harrys": {"_count": 2}, "Dobby": {"_count": 1}, "Marietta": {"_count": 1}, "Professor": {"_count": 1}, "James": {"_count": 1}, "Umbridge": {"_count": 1}, "Neville": {"_count": 1}, "number": {"_count": 1}, "this": {"_count": 1}, "last": {"_count": 1}, "their": {"_count": 1}, "Hermione": {"_count": 1}, "Shell": {"_count": 1}, "Travers": {"_count": 1}, "em": {"_count": 1}}, "across": {"_count": 14, "the": {"_count": 13}, "her": {"_count": 1}}, "down": {"_count": 79, "and": {"_count": 2}, "on": {"_count": 7}, "the": {"_count": 27}, "Diagon": {"_count": 1}, "": {"_count": 7}, "by": {"_count": 1}, "to": {"_count": 7}, "breathing": {"_count": 1}, "again": {"_count": 3}, "yelling": {"_count": 1}, "onto": {"_count": 2}, "now": {"_count": 1}, "at": {"_count": 7}, "here": {"_count": 1}, "for": {"_count": 1}, "Privet": {"_count": 1}, "smartly": {"_count": 1}, "from": {"_count": 1}, "inter": {"_count": 1}, "too": {"_count": 2}, "two": {"_count": 1}, "behind": {"_count": 1}, "across": {"_count": 1}, "in": {"_count": 1}}, "inside": {"_count": 28, "his": {"_count": 6}, "its": {"_count": 1}, "and": {"_count": 2}, "the": {"_count": 7}, "Scabbers": {"_count": 1}, "Azkaban": {"_count": 1}, "Hagrids": {"_count": 1}, "before": {"_count": 1}, "it": {"_count": 2}, "to": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}, "": {"_count": 3}}, "in": {"_count": 139, "his": {"_count": 24}, "Uncle": {"_count": 1}, "the": {"_count": 32}, "this": {"_count": 3}, "to": {"_count": 1}, "Diagon": {"_count": 1}, "possession": {"_count": 4}, "Hagrids": {"_count": 1}, "front": {"_count": 2}, "bed": {"_count": 2}, "its": {"_count": 3}, "a": {"_count": 12}, "put": {"_count": 1}, "Potions": {"_count": 1}, "I": {"_count": 1}, "Gryffindor": {"_count": 1}, "no": {"_count": 1}, "an": {"_count": 1}, "Azkaban": {"_count": 4}, "her": {"_count": 4}, "with": {"_count": 1}, "your": {"_count": 3}, "tomorrow": {"_count": 1}, "time": {"_count": 3}, "masters": {"_count": 1}, "said": {"_count": 1}, "ze": {"_count": 1}, "place": {"_count": 2}, "their": {"_count": 5}, "Transfiguration": {"_count": 1}, "me": {"_count": 1}, "Harrys": {"_count": 1}, "midair": {"_count": 1}, "position": {"_count": 1}, "October": {"_count": 1}, "Grimmauld": {"_count": 1}, "Umbridges": {"_count": 1}, "armchairs": {"_count": 1}, "if": {"_count": 1}, "London": {"_count": 1}, "Dumbledore": {"_count": 2}, "about": {"_count": 1}, "kind": {"_count": 1}, "my": {"_count": 2}, "fright": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 2}}, "and": {"_count": 82, "tried": {"_count": 1}, "find": {"_count": 1}, "he": {"_count": 3}, "sat": {"_count": 1}, "waved": {"_count": 2}, "lead": {"_count": 1}, "hurried": {"_count": 1}, "get": {"_count": 1}, "obviously": {"_count": 1}, "sending": {"_count": 1}, "seemed": {"_count": 1}, "Hermione": {"_count": 1}, "no": {"_count": 1}, "attacking": {"_count": 1}, "saw": {"_count": 3}, "watched": {"_count": 1}, "felt": {"_count": 1}, "at": {"_count": 2}, "opened": {"_count": 2}, "they": {"_count": 1}, "Harry": {"_count": 3}, "pull": {"_count": 1}, "changed": {"_count": 1}, "then": {"_count": 2}, "imagined": {"_count": 1}, "got": {"_count": 1}, "forward": {"_count": 1}, "let": {"_count": 1}, "teach": {"_count": 1}, "tripped": {"_count": 1}, "killed": {"_count": 1}, "I": {"_count": 3}, "bouncing": {"_count": 1}, "slipped": {"_count": 1}, "turned": {"_count": 1}, "stared": {"_count": 2}, "together": {"_count": 1}, "gazed": {"_count": 1}, "stood": {"_count": 1}, "forth": {"_count": 2}, "hid": {"_count": 1}, "moved": {"_count": 1}, "try": {"_count": 1}, "scooped": {"_count": 1}, "know": {"_count": 1}, "carry": {"_count": 1}, "the": {"_count": 4}, "that": {"_count": 1}, "took": {"_count": 1}, "see": {"_count": 1}, "Rons": {"_count": 1}, "yelled": {"_count": 1}, "we": {"_count": 2}, "hit": {"_count": 1}, "Hagrid": {"_count": 1}, "vanished": {"_count": 1}, "disappeared": {"_count": 1}, "visit": {"_count": 1}, "it": {"_count": 1}, "one": {"_count": 1}, "melted": {"_count": 1}, "walked": {"_count": 1}, "replaced": {"_count": 1}, "asked": {"_count": 1}}, "outside": {"_count": 6, "the": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "muffled": {"_count": 1}, "its": {"_count": 1}, "": {"_count": 1}}, "from": {"_count": 54, "the": {"_count": 26}, "work": {"_count": 1}, "his": {"_count": 3}, "their": {"_count": 1}, "Egypt": {"_count": 1}, "Honeydukes": {"_count": 1}, "Hogsmeade": {"_count": 2}, "him": {"_count": 4}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}, "Ron": {"_count": 1}, "Azkaban": {"_count": 1}, "dinner": {"_count": 2}, "her": {"_count": 1}, "St": {"_count": 1}, "Marietta": {"_count": 1}, "Herbology": {"_count": 1}, "them": {"_count": 1}, "practice": {"_count": 1}, "around": {"_count": 1}, "Harry": {"_count": 1}, "us": {"_count": 1}}, "of": {"_count": 199, "the": {"_count": 62}, "his": {"_count": 63}, "Harrys": {"_count": 20}, "Firenzes": {"_count": 1}, "Lockharts": {"_count": 1}, "a": {"_count": 8}, "Professor": {"_count": 3}, "Which": {"_count": 1}, "Sir": {"_count": 1}, "Rons": {"_count": 5}, "Flints": {"_count": 1}, "Franks": {"_count": 1}, "Connollys": {"_count": 1}, "Krums": {"_count": 1}, "Hagrid": {"_count": 2}, "her": {"_count": 8}, "course": {"_count": 1}, "Siriuss": {"_count": 1}, "Moodys": {"_count": 2}, "an": {"_count": 1}, "every": {"_count": 1}, "it": {"_count": 2}, "your": {"_count": 2}, "Nevilles": {"_count": 1}, "Chos": {"_count": 1}, "lessons": {"_count": 1}, "what": {"_count": 1}, "Parvati": {"_count": 1}, "Millicent": {"_count": 1}, "them": {"_count": 1}, "Zabini": {"_count": 1}, "him": {"_count": 1}, "their": {"_count": 1}}, "so": {"_count": 11, "quickly": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 2}, "you": {"_count": 1}, "late": {"_count": 1}, "as": {"_count": 1}, "early": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "Ive": {"_count": 1}}, "with": {"_count": 30, "howls": {"_count": 1}, "Hedwig": {"_count": 1}, "the": {"_count": 5}, "a": {"_count": 4}, "us": {"_count": 2}, "his": {"_count": 4}, "your": {"_count": 2}, "honors": {"_count": 1}, "all": {"_count": 1}, "Dumbledore": {"_count": 1}, "Siriuss": {"_count": 1}, "another": {"_count": 1}, "it": {"_count": 1}, "an": {"_count": 1}, "something": {"_count": 1}, "him": {"_count": 1}, "Hagrid": {"_count": 1}, "some": {"_count": 1}}, "the": {"_count": 46, "mail": {"_count": 1}, "day": {"_count": 1}, "marks": {"_count": 1}, "curtains": {"_count": 4}, "lock": {"_count": 1}, "paper": {"_count": 1}, "better": {"_count": 1}, "Invisibility": {"_count": 2}, "sleeves": {"_count": 1}, "furious": {"_count": 1}, "tapestry": {"_count": 1}, "old": {"_count": 1}, "very": {"_count": 1}, "screens": {"_count": 1}, "owl": {"_count": 1}, "homework": {"_count": 1}, "fist": {"_count": 1}, "door": {"_count": 1}, "curtain": {"_count": 1}, "retort": {"_count": 2}, "pine": {"_count": 2}, "tall": {"_count": 1}, "way": {"_count": 4}, "new": {"_count": 1}, "night": {"_count": 1}, "green": {"_count": 1}, "fine": {"_count": 1}, "sleeve": {"_count": 2}, "single": {"_count": 1}, "letter": {"_count": 1}, "Horcrux": {"_count": 1}, "covers": {"_count": 1}, "minute": {"_count": 1}, "dead": {"_count": 1}, "werewolf": {"_count": 1}, "hand": {"_count": 1}}, "doors": {"_count": 1, "so": {"_count": 1}}, "here": {"_count": 25, "in": {"_count": 2}, "": {"_count": 4}, "Ron": {"_count": 1}, "while": {"_count": 1}, "all": {"_count": 1}, "at": {"_count": 2}, "before": {"_count": 1}, "and": {"_count": 2}, "said": {"_count": 2}, "without": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}, "same": {"_count": 1}, "we": {"_count": 1}, "Trevor": {"_count": 1}, "this": {"_count": 1}, "because": {"_count": 1}, "after": {"_count": 1}}, "seat": {"_count": 6, "his": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "where": {"_count": 1}, "and": {"_count": 2}}, "that": {"_count": 3, "hed": {"_count": 1}, "veil": {"_count": 1}, "it": {"_count": 1}}, "into": {"_count": 251, "its": {"_count": 5}, "the": {"_count": 115}, "solid": {"_count": 1}, "his": {"_count": 49}, "bed": {"_count": 5}, "Harrys": {"_count": 1}, "it": {"_count": 3}, "their": {"_count": 7}, "action": {"_count": 2}, "a": {"_count": 11}, "view": {"_count": 2}, "ourselves": {"_count": 1}, "himself": {"_count": 1}, "her": {"_count": 21}, "Hagrids": {"_count": 1}, "focus": {"_count": 1}, "place": {"_count": 6}, "position": {"_count": 3}, "herself": {"_count": 1}, "Honeydukes": {"_count": 1}, "Kings": {"_count": 1}, "Hogsmeade": {"_count": 1}, "Flitwicks": {"_count": 1}, "them": {"_count": 1}, "sight": {"_count": 1}, "Voldemorts": {"_count": 2}, "life": {"_count": 1}, "Rons": {"_count": 1}, "stone": {"_count": 2}, "our": {"_count": 1}, "him": {"_count": 1}, "Hogwarts": {"_count": 1}}, "a": {"_count": 24, "second": {"_count": 1}, "minute": {"_count": 2}, "look": {"_count": 2}, "few": {"_count": 3}, "smile": {"_count": 1}, "month": {"_count": 1}, "bag": {"_count": 1}, "little": {"_count": 4}, "bit": {"_count": 1}, "catch": {"_count": 1}, "curtain": {"_count": 1}, "couple": {"_count": 1}, "small": {"_count": 1}, "laugh": {"_count": 1}, "long": {"_count": 1}, "fussy": {"_count": 1}, "moment": {"_count": 1}}, "his": {"_count": 38, "courage": {"_count": 1}, "bangs": {"_count": 1}, "fathers": {"_count": 1}, "head": {"_count": 5}, "sheets": {"_count": 1}, "long": {"_count": 1}, "most": {"_count": 1}, "eyes": {"_count": 4}, "face": {"_count": 2}, "wand": {"_count": 4}, "terrible": {"_count": 1}, "Christmas": {"_count": 1}, "scar": {"_count": 1}, "hand": {"_count": 1}, "dark": {"_count": 1}, "bowler": {"_count": 1}, "yes": {"_count": 1}, "sleeve": {"_count": 1}, "chair": {"_count": 1}, "sleeves": {"_count": 2}, "bat": {"_count": 1}, "covers": {"_count": 1}, "retort": {"_count": 1}, "voice": {"_count": 1}, "lumbagos": {"_count": 1}, "hands": {"_count": 1}}, "ter": {"_count": 5, "ours": {"_count": 1}, "me": {"_count": 1}, "Azkaban": {"_count": 1}, "the": {"_count": 1}, "tell": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "for": {"_count": 25, "more": {"_count": 1}, "yeh": {"_count": 1}, "a": {"_count": 5}, "the": {"_count": 1}, "something": {"_count": 1}, "me": {"_count": 1}, "Harry": {"_count": 2}, "this": {"_count": 3}, "our": {"_count": 1}, "several": {"_count": 1}, "it": {"_count": 1}, "lunch": {"_count": 1}, "dinner": {"_count": 1}, "anything": {"_count": 1}, "Christmas": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}}, "Harry": {"_count": 17, "": {"_count": 5}, "had": {"_count": 1}, "sank": {"_count": 1}, "picked": {"_count": 1}, "said": {"_count": 2}, "whispered": {"_count": 1}, "muttered": {"_count": 1}, "Potter": {"_count": 1}, "began": {"_count": 1}, "did": {"_count": 1}, "thats": {"_count": 1}, "avoided": {"_count": 1}}, "by": {"_count": 9, "the": {"_count": 3}, "Mr": {"_count": 1}, "someone": {"_count": 1}, "now": {"_count": 3}, "Gryffindors": {"_count": 1}}, "said": {"_count": 22, "Griphook": {"_count": 1}, "Ron": {"_count": 5}, "Lockhart": {"_count": 1}, "Harry": {"_count": 7}, "Hagrid": {"_count": 3}, "George": {"_count": 1}, "McLaggen": {"_count": 1}, "Lupin": {"_count": 2}, "Yaxley": {"_count": 1}}, "its": {"_count": 4, "best": {"_count": 1}, "horned": {"_count": 1}, "bound": {"_count": 1}, "quite": {"_count": 1}}, "through": {"_count": 30, "the": {"_count": 23}, "to": {"_count": 1}, "nine": {"_count": 1}, "": {"_count": 1}, "Ottery": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "Voldemorts": {"_count": 1}}, "dead": {"_count": 1, "mice": {"_count": 1}}, "upstairs": {"_count": 21, "when": {"_count": 1}, "": {"_count": 6}, "to": {"_count": 6}, "with": {"_count": 2}, "toward": {"_count": 1}, "for": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}, "Professor": {"_count": 1}, "and": {"_count": 1}}, "quickly": {"_count": 4, "so": {"_count": 1}, "and": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}}, "their": {"_count": 3, "door": {"_count": 1}, "homework": {"_count": 1}, "hair": {"_count": 1}}, "over": {"_count": 35, "and": {"_count": 1}, "them": {"_count": 2}, "to": {"_count": 2}, "themselves": {"_count": 2}, "her": {"_count": 4}, "his": {"_count": 12}, "all": {"_count": 1}, "himself": {"_count": 5}, "the": {"_count": 1}, "their": {"_count": 4}, "Hermione": {"_count": 1}}, "but": {"_count": 10, "this": {"_count": 1}, "his": {"_count": 1}, "both": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "Mrs": {"_count": 1}, "did": {"_count": 1}, "it": {"_count": 1}, "beneath": {"_count": 1}, "The": {"_count": 1}}, "wall": {"_count": 5, "": {"_count": 3}, "of": {"_count": 2}}, "amid": {"_count": 1, "gales": {"_count": 1}}, "onto": {"_count": 40, "his": {"_count": 15}, "the": {"_count": 19}, "its": {"_count": 1}, "himself": {"_count": 1}, "a": {"_count": 1}, "all": {"_count": 1}, "her": {"_count": 2}}, "what": {"_count": 2, "weve": {"_count": 1}, "he": {"_count": 1}}, "again": {"_count": 32, "": {"_count": 17}, "Harry": {"_count": 2}, "with": {"_count": 2}, "as": {"_count": 2}, "why": {"_count": 1}, "and": {"_count": 2}, "apparently": {"_count": 1}, "there": {"_count": 1}, "tomorrow": {"_count": 1}, "his": {"_count": 1}, "two": {"_count": 1}, "until": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 54, "the": {"_count": 34}, "a": {"_count": 1}, "Gryffindor": {"_count": 3}, "his": {"_count": 2}, "them": {"_count": 2}, "Harry": {"_count": 1}, "Hogwarts": {"_count": 1}, "him": {"_count": 4}, "Voldemort": {"_count": 2}, "her": {"_count": 3}, "Dumbledore": {"_count": 1}}, "me": {"_count": 3, "up": {"_count": 3}}, "Wood": {"_count": 1, "warned": {"_count": 1}}, "up": {"_count": 79, "to": {"_count": 26}, "the": {"_count": 32}, "ter": {"_count": 4}, "": {"_count": 1}, "this": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 4}, "at": {"_count": 3}, "for": {"_count": 1}, "here": {"_count": 2}, "by": {"_count": 1}, "onto": {"_count": 1}, "through": {"_count": 1}, "raising": {"_count": 1}}, "along": {"_count": 10, "the": {"_count": 9}, "their": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "day": {"_count": 1}}, "just": {"_count": 4, "as": {"_count": 2}, "before": {"_count": 1}, "like": {"_count": 1}}, "I": {"_count": 7, "want": {"_count": 1}, "wont": {"_count": 1}, "dont": {"_count": 1}, "didnt": {"_count": 1}, "think": {"_count": 1}, "know": {"_count": 1}, "heard": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 36, "Gryffindor": {"_count": 1}, "from": {"_count": 2}, "of": {"_count": 25}, "in": {"_count": 1}, "again": {"_count": 2}, "into": {"_count": 1}, "": {"_count": 2}, "there": {"_count": 1}, "onto": {"_count": 1}}, "an": {"_count": 4, "enormous": {"_count": 1}, "expression": {"_count": 1}, "this": {"_count": 1}, "eyelid": {"_count": 1}}, "garden": {"_count": 8, "anyway": {"_count": 1}, "": {"_count": 6}, "hedge": {"_count": 1}}, "if": {"_count": 6, "we": {"_count": 3}, "he": {"_count": 1}, "possible": {"_count": 1}, "you": {"_count": 1}}, "us": {"_count": 2, "up": {"_count": 2}}, "off": {"_count": 11, "ter": {"_count": 1}, "the": {"_count": 3}, "said": {"_count": 1}, "his": {"_count": 2}, "into": {"_count": 1}, "to": {"_count": 1}, "Voldemorts": {"_count": 1}, "if": {"_count": 1}}, "legs": {"_count": 3, "in": {"_count": 1}, "its": {"_count": 1}, "stamping": {"_count": 1}}, "there": {"_count": 15, "": {"_count": 5}, "with": {"_count": 2}, "were": {"_count": 1}, "Hagrid": {"_count": 1}, "I": {"_count": 2}, "or": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 1}}, "tomorrow": {"_count": 3, "she": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "instead": {"_count": 2, "Two": {"_count": 1}, "as": {"_count": 1}}, "isnt": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "all": {"_count": 4, "right": {"_count": 2}, "year": {"_count": 1}, "weak": {"_count": 1}}, "door": {"_count": 24, "": {"_count": 7}, "and": {"_count": 2}, "opened": {"_count": 3}, "ajar": {"_count": 1}, "had": {"_count": 1}, "then": {"_count": 1}, "into": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "Harry": {"_count": 2}, "it": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}, "were": {"_count": 1}}, "aching": {"_count": 1, "sweat": {"_count": 1}}, "term": {"_count": 1, "starts": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "window": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 31, "the": {"_count": 5}, "though": {"_count": 2}, "he": {"_count": 7}, "I": {"_count": 1}, "they": {"_count": 3}, "a": {"_count": 3}, "Harry": {"_count": 2}, "far": {"_count": 2}, "easily": {"_count": 1}, "she": {"_count": 2}, "Mrs": {"_count": 1}, "two": {"_count": 1}, "soon": {"_count": 1}}, "saying": {"_count": 1, "hed": {"_count": 1}}, "together": {"_count": 8, "again": {"_count": 4}, "said": {"_count": 2}, "good": {"_count": 1}, "": {"_count": 1}}, "turned": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "nighti": {"_count": 1}}, "room": {"_count": 6, "": {"_count": 4}, "all": {"_count": 1}, "of": {"_count": 1}}, "then": {"_count": 5, "quietly": {"_count": 1}, "shut": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "cover": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "in": {"_count": 1}}, "George": {"_count": 1, "had": {"_count": 1}}, "beneath": {"_count": 5, "the": {"_count": 3}, "a": {"_count": 1}, "his": {"_count": 1}}, "pocket": {"_count": 4, "STOP": {"_count": 1}, "of": {"_count": 2}, "": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "blushing": {"_count": 1, "furiously": {"_count": 1}}, "row": {"_count": 5, "with": {"_count": 1}, "where": {"_count": 1}, "however": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}}, "however": {"_count": 1, "exasperated": {"_count": 1}}, "yet": {"_count": 5, "": {"_count": 2}, "Professor": {"_count": 1}, "George": {"_count": 1}, "he": {"_count": 1}}, "downstairs": {"_count": 14, "doubling": {"_count": 1}, "to": {"_count": 4}, "followed": {"_count": 1}, "and": {"_count": 3}, "into": {"_count": 1}, "through": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}, "As": {"_count": 1}}, "turn": {"_count": 1, "back": {"_count": 1}}, "clutching": {"_count": 1, "his": {"_count": 1}}, "home": {"_count": 4, "": {"_count": 2}, "when": {"_count": 1}, "To": {"_count": 1}}, "unconvinced": {"_count": 1, "": {"_count": 1}}, "You": {"_count": 2, "will": {"_count": 1}, "have": {"_count": 1}}, "Dobby": {"_count": 2, "or": {"_count": 1}, "was": {"_count": 1}}, "or": {"_count": 4, "not": {"_count": 2}, "answer": {"_count": 1}, "eye": {"_count": 1}}, "making": {"_count": 1, "its": {"_count": 1}}, "looking": {"_count": 6, "faintly": {"_count": 1}, "extremely": {"_count": 1}, "at": {"_count": 1}, "around": {"_count": 1}, "wary": {"_count": 1}, "disappointed": {"_count": 1}}, "against": {"_count": 13, "his": {"_count": 3}, "the": {"_count": 8}, "her": {"_count": 1}, "a": {"_count": 1}}, "overhead": {"_count": 1, "and": {"_count": 1}}, "soon": {"_count": 3, "she": {"_count": 1}, "": {"_count": 2}}, "about": {"_count": 2, "a": {"_count": 1}, "merpeople": {"_count": 1}}, "next": {"_count": 2, "summer": {"_count": 1}, "day": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "you": {"_count": 9, "mark": {"_count": 1}, "scurvy": {"_count": 2}, "up": {"_count": 1}, "say": {"_count": 1}, "know": {"_count": 1}, "didnt": {"_count": 1}, "cowardly": {"_count": 1}, "would": {"_count": 1}}, "when": {"_count": 5, "Professor": {"_count": 1}, "YouKnowWho": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "Im": {"_count": 1}}, "Harrys": {"_count": 2, "hair": {"_count": 1}, "essay": {"_count": 1}}, "slightly": {"_count": 1, "as": {"_count": 1}}, "yehre": {"_count": 1, "allowed": {"_count": 1}}, "away": {"_count": 6, "now": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}, "down": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "now": {"_count": 4, "so": {"_count": 1}, "shall": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "were": {"_count": 1, "standing": {"_count": 1}}, "was": {"_count": 8, "to": {"_count": 1}, "standing": {"_count": 1}, "Dumbledore": {"_count": 1}, "turned": {"_count": 2}, "infectious": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}}, "chapter": {"_count": 1, "which": {"_count": 1}}, "he": {"_count": 10, "saw": {"_count": 1}, "stopped": {"_count": 1}, "said": {"_count": 2}, "had": {"_count": 2}, "was": {"_count": 1}, "added": {"_count": 1}, "wanted": {"_count": 1}, "repeated": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "after": {"_count": 8, "Black": {"_count": 1}, "that": {"_count": 1}, "term": {"_count": 1}, "class": {"_count": 2}, "Potions": {"_count": 1}, "weeks": {"_count": 1}, "Easter": {"_count": 1}}, "it": {"_count": 6, "was": {"_count": 2}, "would": {"_count": 2}, "glowered": {"_count": 1}, "forced": {"_count": 1}}, "they": {"_count": 4, "had": {"_count": 1}, "would": {"_count": 1}, "say": {"_count": 1}, "always": {"_count": 1}}, "open": {"_count": 1, "and": {"_count": 1}}, "first": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "shall": {"_count": 2, "I": {"_count": 2}}, "laughing": {"_count": 1, "derisively": {"_count": 1}}, "laughs": {"_count": 1, "": {"_count": 1}}, "hopelessly": {"_count": 1, "": {"_count": 1}}, "tears": {"_count": 3, "": {"_count": 2}, "leaking": {"_count": 1}}, "way": {"_count": 1, "said": {"_count": 1}}, "under": {"_count": 9, "the": {"_count": 6}, "her": {"_count": 1}, "what": {"_count": 1}, "his": {"_count": 1}}, "killed": {"_count": 1, "everyone": {"_count": 1}}, "three": {"_count": 1, "hours": {"_count": 1}}, "scattering": {"_count": 1, "retreating": {"_count": 1}}, "appeared": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "this": {"_count": 3, "as": {"_count": 1}, "time": {"_count": 1}, "book": {"_count": 1}}, "breathing": {"_count": 2, "hard": {"_count": 1}, "so": {"_count": 1}}, "shes": {"_count": 1, "offhunting": {"_count": 1}}, "Only": {"_count": 1, "after": {"_count": 1}}, "pronto": {"_count": 1, "and": {"_count": 1}}, "go": {"_count": 1, "back": {"_count": 1}}, "theres": {"_count": 1, "been": {"_count": 1}}, "which": {"_count": 1, "made": {"_count": 1}}, "while": {"_count": 3, "Im": {"_count": 1}, "giving": {"_count": 1}, "withdrawing": {"_count": 1}}, "except": {"_count": 1, "Fred": {"_count": 1}}, "please": {"_count": 1, "Mr": {"_count": 1}}, "okay": {"_count": 2, "but": {"_count": 1}, "said": {"_count": 1}}, "tofront": {"_count": 1, "and": {"_count": 1}}, "waving": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 2, "Moody": {"_count": 1}, "but": {"_count": 1}}, "flip": {"_count": 4, "breaking": {"_count": 1}, "Cho": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}}, "unmarked": {"_count": 1, "but": {"_count": 1}}, "purring": {"_count": 1, "": {"_count": 1}}, "centuries": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 1}, "hes": {"_count": 1}}, "everythings": {"_count": 1, "fine": {"_count": 1}}, "without": {"_count": 5, "being": {"_count": 1}, "anyone": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 1}}, "respectfully": {"_count": 1, "": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 11, "sheet": {"_count": 2}, "head": {"_count": 3}, "eyes": {"_count": 1}, "hood": {"_count": 1}, "long": {"_count": 1}, "left": {"_count": 1}, "sleeve": {"_count": 1}, "heavily": {"_count": 1}}, "staring": {"_count": 1, "into": {"_count": 1}}, "Diggory": {"_count": 1, "for": {"_count": 1}}, "like": {"_count": 3, "that": {"_count": 1}, "Harrys": {"_count": 1}, "this": {"_count": 1}}, "being": {"_count": 1, "unable": {"_count": 1}}, "ends": {"_count": 1, "as": {"_count": 1}}, "where": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "around": {"_count": 10, "the": {"_count": 6}, "midnight": {"_count": 1}, "his": {"_count": 1}, "us": {"_count": 1}, "himself": {"_count": 1}}, "forcing": {"_count": 1, "him": {"_count": 1}}, "almost": {"_count": 1, "at": {"_count": 1}}, "we": {"_count": 3, "really": {"_count": 1}, "go": {"_count": 1}, "could": {"_count": 1}}, "upward": {"_count": 1, "and": {"_count": 1}}, "hoping": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "straight": {"_count": 1, "away": {"_count": 1}}, "whatever": {"_count": 1, "theyve": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 2, "shaking": {"_count": 1}, "turned": {"_count": 1}}, "safely": {"_count": 1, "": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "memories": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "wherE": {"_count": 1, "you": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "panting": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 2, "Harrys": {"_count": 1}, "seconds": {"_count": 1}}, "among": {"_count": 1, "my": {"_count": 1}}, "rushed": {"_count": 2, "the": {"_count": 2}}, "will": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "Dumbledore": {"_count": 2, "he": {"_count": 1}, "says": {"_count": 1}}, "even": {"_count": 3, "a": {"_count": 1}, "farther": {"_count": 1}, "if": {"_count": 1}}, "two": {"_count": 2, "of": {"_count": 1}, "months": {"_count": 1}}, "Ive": {"_count": 1, "never": {"_count": 1}}, "might": {"_count": 1, "mean": {"_count": 1}}, "ached": {"_count": 1, "from": {"_count": 1}}, "some": {"_count": 3, "Death": {"_count": 1}, "sense": {"_count": 1}, "looking": {"_count": 1}}, "orf": {"_count": 1, "me": {"_count": 1}}, "would": {"_count": 2, "mean": {"_count": 1}, "they": {"_count": 1}}, "especially": {"_count": 1, "as": {"_count": 1}}, "question": {"_count": 1, "her": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "rigid": {"_count": 1, "and": {"_count": 1}}, "Fred": {"_count": 1, "told": {"_count": 1}}, "ruin": {"_count": 1, "this": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "Professor": {"_count": 1, "Grubbly": {"_count": 1}}, "hes": {"_count": 1, "back": {"_count": 1}}, "ignoring": {"_count": 1, "the": {"_count": 1}}, "feeling": {"_count": 1, "a": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "Malfoy": {"_count": 1, "did": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "heres": {"_count": 1, "been": {"_count": 1}}, "firmly": {"_count": 1, "on": {"_count": 1}}, "whose": {"_count": 1, "name": {"_count": 1}}, "regularly": {"_count": 1, "to": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "Dumbledored": {"_count": 1, "bewitched": {"_count": 1}}, "visitin": {"_count": 1, "the": {"_count": 1}}, "ages": {"_count": 1, "ago": {"_count": 1}}, "too": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "sighed": {"_count": 1, "Mrs": {"_count": 1}}, "amongst": {"_count": 1, "them": {"_count": 1}}, "page": {"_count": 1, "ten": {"_count": 1}}, "upon": {"_count": 2, "the": {"_count": 2}}, "hed": {"_count": 1, "explain": {"_count": 1}}, "calling": {"_count": 1, "him": {"_count": 1}}, "before": {"_count": 5, "long": {"_count": 2}, "following": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "exactly": {"_count": 1, "as": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "quite": {"_count": 1, "unnecessarily": {"_count": 1}}, "writhing": {"_count": 1, "": {"_count": 1}}, "We": {"_count": 1, "are": {"_count": 1}}, "Grawp": {"_count": 1, "was": {"_count": 1}}, "Hermiones": {"_count": 1, "wand": {"_count": 1}}, "long": {"_count": 1, "black": {"_count": 1}}, "dere": {"_count": 1, "said": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "cracked": {"_count": 1, "and": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "right": {"_count": 2, "": {"_count": 2}}, "youre": {"_count": 1, "dead": {"_count": 1}}, "repeated": {"_count": 1, "Nick": {"_count": 1}}, "Bella": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 1, "her": {"_count": 1}}, "bearing": {"_count": 1, "a": {"_count": 1}}, "youll": {"_count": 1, "see": {"_count": 1}}, "The": {"_count": 1, "dazzling": {"_count": 1}}, "people": {"_count": 1, "think": {"_count": 1}}, "Hermione": {"_count": 2, "will": {"_count": 1}, "was": {"_count": 1}}, "blood": {"_count": 1, "dripping": {"_count": 1}}, "lazily": {"_count": 1, "": {"_count": 1}}, "hastily": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "But": {"_count": 1, "before": {"_count": 1}}, "teeth": {"_count": 1, "": {"_count": 1}}, "IN": {"_count": 1, "": {"_count": 1}}, "getting": {"_count": 1, "more": {"_count": 1}}, "vaguely": {"_count": 1, "but": {"_count": 1}}, "my": {"_count": 2, "heart": {"_count": 1}, "wand": {"_count": 1}}, "see": {"_count": 1, "he": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "redfaced": {"_count": 1, "and": {"_count": 1}}, "Rons": {"_count": 1, "essay": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "Dumbledores": {"_count": 1, "glasses": {"_count": 1}}, "only": {"_count": 1, "your": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "unblinking": {"_count": 1, "indifferent": {"_count": 1}}, "not": {"_count": 1, "when": {"_count": 1}}, "steps": {"_count": 2, "into": {"_count": 1}, "Ginny": {"_count": 1}}, "windswept": {"_count": 1, "but": {"_count": 1}}, "good": {"_count": 1, "as": {"_count": 1}}, "communicating": {"_count": 1, "silently": {"_count": 1}}, "wondering": {"_count": 2, "why": {"_count": 1}, "whether": {"_count": 1}}, "She": {"_count": 1, "pointed": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Muffliato": {"_count": 1, "MuggleRepelling": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "repeatedly": {"_count": 1, "as": {"_count": 1}}, "Then": {"_count": 1, "a": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "did": {"_count": 1, "she": {"_count": 1}}, "Lilys": {"_count": 1, "letter": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "Wormtails": {"_count": 1}}, "lifeless": {"_count": 1, "and": {"_count": 1}}, "Dobbys": {"_count": 1, "hand": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "lawn": {"_count": 1, "at": {"_count": 1}}, "scraped": {"_count": 1, "against": {"_count": 1}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "Aberforth": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "ini": {"_count": 1, "Hang": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "Sectumsemprcd": {"_count": 1, "shouted": {"_count": 1}}, "those": {"_count": 1, "who": {"_count": 1}}, "havent": {"_count": 1, "I": {"_count": 1}}}, "As": {"_count": 532, "Mr": {"_count": 4, "Dursley": {"_count": 1}, "Weasley": {"_count": 3}}, "he": {"_count": 71, "drove": {"_count": 1}, "sat": {"_count": 1}, "pulled": {"_count": 1}, "had": {"_count": 3}, "looked": {"_count": 3}, "measured": {"_count": 1}, "drew": {"_count": 1}, "passed": {"_count": 4}, "swung": {"_count": 1}, "stood": {"_count": 2}, "and": {"_count": 4}, "left": {"_count": 1}, "moved": {"_count": 2}, "turned": {"_count": 4}, "lifted": {"_count": 1}, "watched": {"_count": 3}, "walked": {"_count": 2}, "said": {"_count": 3}, "soared": {"_count": 1}, "pounded": {"_count": 1}, "crossed": {"_count": 2}, "did": {"_count": 5}, "spoke": {"_count": 1}, "put": {"_count": 1}, "reached": {"_count": 2}, "opened": {"_count": 1}, "reread": {"_count": 1}, "emerged": {"_count": 1}, "replaced": {"_count": 1}, "pushed": {"_count": 1}, "dashed": {"_count": 1}, "was": {"_count": 1}, "closed": {"_count": 1}, "leapt": {"_count": 2}, "lay": {"_count": 1}, "neared": {"_count": 1}, "drank": {"_count": 1}, "clutched": {"_count": 1}, "extinguished": {"_count": 1}, "yelled": {"_count": 1}, "dragged": {"_count": 1}, "started": {"_count": 1}, "followed": {"_count": 1}, "rounded": {"_count": 1}}, "I": {"_count": 19, "say": {"_count": 2}, "expected": {"_count": 1}, "was": {"_count": 8}, "needed": {"_count": 1}, "understand": {"_count": 1}, "sat": {"_count": 1}, "am": {"_count": 1}, "have": {"_count": 1}, "told": {"_count": 1}, "doubt": {"_count": 1}, "reveal": {"_count": 1}}, "the": {"_count": 51, "snake": {"_count": 2}, "owls": {"_count": 1}, "match": {"_count": 1}, "door": {"_count": 4}, "whole": {"_count": 1}, "teachers": {"_count": 1}, "castle": {"_count": 1}, "days": {"_count": 2}, "noise": {"_count": 1}, "carriage": {"_count": 1}, "dog": {"_count": 1}, "werewolf": {"_count": 2}, "lock": {"_count": 1}, "end": {"_count": 1}, "Hogwarts": {"_count": 1}, "usually": {"_count": 1}, "train": {"_count": 2}, "gigantic": {"_count": 1}, "boy": {"_count": 1}, "girl": {"_count": 1}, "next": {"_count": 1}, "enchanted": {"_count": 1}, "closest": {"_count": 1}, "message": {"_count": 1}, "dial": {"_count": 1}, "first": {"_count": 1}, "date": {"_count": 1}, "Inquisitorial": {"_count": 1}, "teams": {"_count": 1}, "bell": {"_count": 1}, "dark": {"_count": 1}, "crowd": {"_count": 2}, "music": {"_count": 1}, "curses": {"_count": 1}, "pain": {"_count": 1}, "lamplight": {"_count": 1}, "lift": {"_count": 1}, "balding": {"_count": 1}, "three": {"_count": 1}, "weeks": {"_count": 1}, "Dark": {"_count": 1}, "room": {"_count": 1}, "walls": {"_count": 1}}, "far": {"_count": 13, "as": {"_count": 13}}, "they": {"_count": 75, "couldnt": {"_count": 1}, "climbed": {"_count": 3}, "jostled": {"_count": 1}, "entered": {"_count": 3}, "stepped": {"_count": 1}, "stared": {"_count": 1}, "approached": {"_count": 1}, "neared": {"_count": 2}, "edged": {"_count": 1}, "were": {"_count": 1}, "walked": {"_count": 3}, "went": {"_count": 1}, "hurried": {"_count": 1}, "turned": {"_count": 3}, "reached": {"_count": 8}, "passed": {"_count": 10}, "left": {"_count": 1}, "crept": {"_count": 1}, "drew": {"_count": 3}, "watched": {"_count": 2}, "rounded": {"_count": 1}, "recrossed": {"_count": 1}, "prepared": {"_count": 1}, "clattered": {"_count": 1}, "once": {"_count": 1}, "filed": {"_count": 2}, "rose": {"_count": 1}, "are": {"_count": 1}, "set": {"_count": 2}, "came": {"_count": 1}, "followed": {"_count": 1}, "had": {"_count": 3}, "sped": {"_count": 1}, "flew": {"_count": 1}, "vanished": {"_count": 1}, "directed": {"_count": 1}, "soared": {"_count": 1}, "led": {"_count": 1}, "pushed": {"_count": 1}, "lifted": {"_count": 1}, "crossed": {"_count": 1}, "argued": {"_count": 1}, "ran": {"_count": 1}}, "night": {"_count": 1, "fell": {"_count": 1}}, "soon": {"_count": 5, "as": {"_count": 5}}, "bad": {"_count": 1, "as": {"_count": 1}}, "Hagrids": {"_count": 1, "story": {"_count": 1}}, "a": {"_count": 18, "matter": {"_count": 14}, "surprise": {"_count": 1}, "school": {"_count": 1}, "sobbing": {"_count": 1}, "dull": {"_count": 1}}, "though": {"_count": 11, "he": {"_count": 3}, "the": {"_count": 1}, "in": {"_count": 2}, "an": {"_count": 1}, "invisible": {"_count": 1}, "to": {"_count": 2}, "it": {"_count": 1}}, "Harry": {"_count": 59, "stepped": {"_count": 2}, "helped": {"_count": 1}, "and": {"_count": 6}, "moved": {"_count": 1}, "watched": {"_count": 5}, "walked": {"_count": 2}, "squelched": {"_count": 1}, "shivered": {"_count": 1}, "got": {"_count": 1}, "passed": {"_count": 4}, "trembled": {"_count": 1}, "hurried": {"_count": 1}, "entered": {"_count": 3}, "opened": {"_count": 1}, "was": {"_count": 3}, "might": {"_count": 1}, "Hermione": {"_count": 1}, "had": {"_count": 5}, "pulled": {"_count": 1}, "took": {"_count": 1}, "shouted": {"_count": 1}, "approached": {"_count": 1}, "completed": {"_count": 1}, "listened": {"_count": 1}, "scrambled": {"_count": 1}, "sat": {"_count": 1}, "swung": {"_count": 1}, "Ron": {"_count": 1}, "spoke": {"_count": 2}, "plunged": {"_count": 1}, "raised": {"_count": 1}, "closed": {"_count": 1}, "set": {"_count": 1}, "followed": {"_count": 1}, "emerged": {"_count": 1}, "looked": {"_count": 1}}, "there": {"_count": 4, "is": {"_count": 1}, "are": {"_count": 1}, "was": {"_count": 2}}, "for": {"_count": 13, "monkshood": {"_count": 1}, "you": {"_count": 2}, "Harry": {"_count": 1}, "the": {"_count": 6}, "Dumbledores": {"_count": 1}, "informing": {"_count": 1}, "her": {"_count": 1}}, "seven": {"_count": 1, "oclock": {"_count": 1}}, "Neville": {"_count": 1, "walked": {"_count": 1}}, "Gryffindors": {"_count": 1, "came": {"_count": 1}}, "much": {"_count": 1, "money": {"_count": 1}}, "usual": {"_count": 1, "when": {"_count": 1}}, "neither": {"_count": 1, "Dudley": {"_count": 1}}, "you": {"_count": 19, "know": {"_count": 4}, "see": {"_count": 2}, "will": {"_count": 3}, "have": {"_count": 3}, "must": {"_count": 1}, "can": {"_count": 2}, "and": {"_count": 1}, "so": {"_count": 1}, "might": {"_count": 1}, "may": {"_count": 1}}, "always": {"_count": 1, "in": {"_count": 1}}, "long": {"_count": 16, "as": {"_count": 16}}, "our": {"_count": 2, "Mandrakes": {"_count": 1}, "listeners": {"_count": 1}}, "Wood": {"_count": 1, "launched": {"_count": 1}}, "she": {"_count": 16, "spoke": {"_count": 2}, "stepped": {"_count": 1}, "walked": {"_count": 2}, "was": {"_count": 1}, "named": {"_count": 1}, "swept": {"_count": 1}, "revolved": {"_count": 1}, "moved": {"_count": 1}, "drifted": {"_count": 1}, "scrambled": {"_count": 1}, "removed": {"_count": 1}, "passed": {"_count": 1}, "said": {"_count": 1}, "turned": {"_count": 1}}, "eleven": {"_count": 1, "oclock": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "suddenly": {"_count": 1, "as": {"_count": 1}}, "quickly": {"_count": 1, "as": {"_count": 1}}, "Ron": {"_count": 6, "walked": {"_count": 1}, "was": {"_count": 1}, "moved": {"_count": 1}, "and": {"_count": 2}, "ran": {"_count": 1}}, "it": {"_count": 12, "folded": {"_count": 1}, "happened": {"_count": 1}, "was": {"_count": 6}, "swung": {"_count": 2}, "whirred": {"_count": 1}, "rose": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "quietly": {"_count": 3, "as": {"_count": 2}, "and": {"_count": 1}}, "to": {"_count": 3, "our": {"_count": 1}, "that": {"_count": 2}}, "Professor": {"_count": 4, "Lupin": {"_count": 2}, "Trelawney": {"_count": 1}, "McGonagall": {"_count": 1}}, "youre": {"_count": 1, "all": {"_count": 1}}, "an": {"_count": 2, "empty": {"_count": 1}, "unusually": {"_count": 1}}, "Percy": {"_count": 1, "hoped": {"_count": 1}}, "flobberworms": {"_count": 1, "flourished": {"_count": 1}}, "each": {"_count": 4, "person": {"_count": 1}, "swelling": {"_count": 1}, "name": {"_count": 1}, "Keeper": {"_count": 1}}, "Hermione": {"_count": 3, "threw": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}}, "Fudges": {"_count": 1, "voice": {"_count": 1}}, "Mullet": {"_count": 1, "shot": {"_count": 1}}, "one": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 10, "it": {"_count": 1}, "": {"_count": 2}, "this": {"_count": 1}, "a": {"_count": 1}, "we": {"_count": 1}, "youd": {"_count": 1}, "one": {"_count": 1}, "St": {"_count": 1}, "I": {"_count": 1}}, "ever": {"_count": 3, "I": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}}, "Karkaroff": {"_count": 1, "arrived": {"_count": 1}}, "Snape": {"_count": 2, "and": {"_count": 1}, "swung": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "Minerva": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 2, "had": {"_count": 1}, "nodded": {"_count": 1}}, "this": {"_count": 1, "thought": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Hes": {"_count": 1, "Painted": {"_count": 1}}, "Slytherin": {"_count": 1, "and": {"_count": 1}}, "recently": {"_count": 1, "as": {"_count": 1}}, "we": {"_count": 5, "finished": {"_count": 1}, "know": {"_count": 1}, "knew": {"_count": 1}, "Disapparated": {"_count": 1}, "were": {"_count": 1}}, "her": {"_count": 2, "friend": {"_count": 1}, "husband": {"_count": 1}}, "Smith": {"_count": 1, "strode": {"_count": 1}}, "his": {"_count": 2, "speech": {"_count": 1}, "wand": {"_count": 1}}, "High": {"_count": 1, "Inquisitor": {"_count": 1}}, "Marietta": {"_count": 1, "raised": {"_count": 1}}, "Dumbledore": {"_count": 3, "spoke": {"_count": 1}, "pulled": {"_count": 1}, "had": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "small": {"_count": 1, "groups": {"_count": 1}}, "Harrys": {"_count": 4, "eyes": {"_count": 1}, "birthday": {"_count": 1}, "fingers": {"_count": 1}, "scar": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "Dumbledores": {"_count": 1, "tall": {"_count": 1}}, "ghosts": {"_count": 1, "": {"_count": 1}}, "Narcissa": {"_count": 2, "took": {"_count": 1}, "dragged": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "anybody": {"_count": 1, "who": {"_count": 1}}, "Ive": {"_count": 2, "told": {"_count": 1}, "already": {"_count": 1}}, "Dedalus": {"_count": 1, "probably": {"_count": 1}}, "Scrimgeour": {"_count": 2, "came": {"_count": 1}, "pulled": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "evening": {"_count": 2, "drew": {"_count": 2}}, "well": {"_count": 1, "as": {"_count": 1}}, "Kreacher": {"_count": 2, "lunged": {"_count": 1}, "nodded": {"_count": 1}}, "August": {"_count": 1, "wore": {"_count": 1}}, "many": {"_count": 1, "as": {"_count": 1}}, "Bathilda": {"_count": 1, "fumbled": {"_count": 1}}, "Grindelwald": {"_count": 1, "never": {"_count": 1}}, "darkness": {"_count": 1, "drew": {"_count": 1}}, "certainly": {"_count": 1, "as": {"_count": 1}}, "Scabior": {"_count": 1, "said": {"_count": 1}}, "Voldemorts": {"_count": 1, "anger": {"_count": 1}}, "Griphook": {"_count": 1, "had": {"_count": 1}}, "Amycus": {"_count": 1, "spun": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}}, "drove": {"_count": 25, "around": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "town": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "them": {"_count": 3, "into": {"_count": 1}, "upward": {"_count": 1}, "mad": {"_count": 1}}, "straight": {"_count": 1, "up": {"_count": 1}}, "both": {"_count": 1, "Filch": {"_count": 1}}, "the": {"_count": 2, "Chamber": {"_count": 1}, "memory": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "away": {"_count": 2, "somehow": {"_count": 1}, "all": {"_count": 1}}, "he": {"_count": 1, "tended": {"_count": 1}}, "a": {"_count": 1, "Ferrari": {"_count": 1}}, "very": {"_count": 1, "clean": {"_count": 1}}, "off": {"_count": 1, "around": {"_count": 1}}, "nearly": {"_count": 1, "everything": {"_count": 1}}, "Ginny": {"_count": 1, "temporarily": {"_count": 1}}, "Voldemort": {"_count": 1, "out": {"_count": 1}}, "her": {"_count": 1, "mad": {"_count": 1}}, "him": {"_count": 1, "out": {"_count": 1}}, "wizards": {"_count": 1, "into": {"_count": 1}}}, "road": {"_count": 52, "he": {"_count": 3, "watched": {"_count": 1}, "didnt": {"_count": 1}, "glanced": {"_count": 1}}, "to": {"_count": 5, "buy": {"_count": 1}, "get": {"_count": 1}, "avoid": {"_count": 1}, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "hurried": {"_count": 1, "up": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 2}, "the": {"_count": 1}}, "lined": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "said": {"_count": 1, "George": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "ahead": {"_count": 2, "but": {"_count": 1}, "that": {"_count": 1}}, "and": {"_count": 4, "in": {"_count": 1}, "into": {"_count": 2}, "onto": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "sagging": {"_count": 1, "slightly": {"_count": 1}}, "outside": {"_count": 2, "with": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "leaping": {"_count": 1}}, "between": {"_count": 1, "highrise": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "twilight": {"_count": 1}}, "Harry": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "again": {"_count": 1, "where": {"_count": 1}}, "started": {"_count": 1, "wolf": {"_count": 1}}, "Christmas": {"_count": 1, "decorations": {"_count": 1}}, "facing": {"_count": 1, "them": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "watched": {"_count": 288, "the": {"_count": 30, "cat": {"_count": 1}, "goblin": {"_count": 1}, "girl": {"_count": 1}, "birds": {"_count": 1}, "gnomes": {"_count": 1}, "teachers": {"_count": 2}, "grindylow": {"_count": 1}, "tiny": {"_count": 1}, "glittering": {"_count": 1}, "Hermione": {"_count": 1}, "grass": {"_count": 1}, "four": {"_count": 1}, "purple": {"_count": 1}, "three": {"_count": 1}, "dragon": {"_count": 1}, "bottom": {"_count": 1}, "old": {"_count": 1}, "chains": {"_count": 1}, "figure": {"_count": 1}, "dark": {"_count": 1}, "Lestranges": {"_count": 1}, "smoke": {"_count": 1}, "snow": {"_count": 1}, "game": {"_count": 1}, "cabin": {"_count": 1}, "sunlight": {"_count": 1}, "news": {"_count": 1}, "cloudy": {"_count": 1}, "younger": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "Dudley": {"_count": 1, "unwrap": {"_count": 1}}, "a": {"_count": 4, "gorilla": {"_count": 1}, "Quidditch": {"_count": 1}, "couple": {"_count": 1}, "parade": {"_count": 1}}, "his": {"_count": 6, "birthday": {"_count": 1}, "own": {"_count": 1}, "parents": {"_count": 1}, "thoughts": {"_count": 1}, "two": {"_count": 1}, "mother": {"_count": 1}}, "careful": {"_count": 1, "not": {"_count": 1}}, "Snape": {"_count": 2, "for": {"_count": 1}, "skid": {"_count": 1}}, "as": {"_count": 15, "it": {"_count": 1}, "Quirrell": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 2}, "Krum": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 2}, "his": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}, "Lily": {"_count": 1}}, "by": {"_count": 4, "Professor": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "unseen": {"_count": 1}}, "Hagrid": {"_count": 4, "getting": {"_count": 1}, "meander": {"_count": 1}, "digging": {"_count": 1}, "staggered": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "with": {"_count": 4, "bated": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "terror": {"_count": 1}}, "him": {"_count": 29, "impatiently": {"_count": 1}, "walk": {"_count": 1}, "": {"_count": 3}, "apprehensively": {"_count": 1}, "beaming": {"_count": 1}, "looking": {"_count": 1}, "flick": {"_count": 1}, "breathlessly": {"_count": 1}, "rejoin": {"_count": 1}, "fall": {"_count": 1}, "vanish": {"_count": 1}, "until": {"_count": 1}, "as": {"_count": 2}, "digging": {"_count": 1}, "being": {"_count": 1}, "muttering": {"_count": 1}, "for": {"_count": 1}, "struggle": {"_count": 1}, "rip": {"_count": 1}, "go": {"_count": 2}, "in": {"_count": 1}, "but": {"_count": 1}, "without": {"_count": 1}, "tuck": {"_count": 1}, "place": {"_count": 1}}, "them": {"_count": 16, "turn": {"_count": 1}, "through": {"_count": 1}, "do": {"_count": 1}, "around": {"_count": 1}, "mutter": {"_count": 1}, "": {"_count": 1}, "go": {"_count": 3}, "over": {"_count": 1}, "savoring": {"_count": 1}, "all": {"_count": 2}, "happily": {"_count": 1}, "disappear": {"_count": 1}, "out": {"_count": 1}}, "an": {"_count": 1, "owl": {"_count": 1}}, "in": {"_count": 5, "horror": {"_count": 1}, "astonishment": {"_count": 1}, "amazement": {"_count": 1}, "great": {"_count": 1}, "silence": {"_count": 1}}, "nervously": {"_count": 2, "as": {"_count": 2}}, "Lockhart": {"_count": 1, "gave": {"_count": 1}}, "Harry": {"_count": 9, "on": {"_count": 1}, "nervously": {"_count": 1}, "walking": {"_count": 1}, "unload": {"_count": 1}, "steadying": {"_count": 1}, "with": {"_count": 1}, "leave": {"_count": 1}, "as": {"_count": 1}, "jump": {"_count": 1}}, "amazed": {"_count": 1, "as": {"_count": 1}}, "for": {"_count": 1, "Harry": {"_count": 1}}, "Percy": {"_count": 1, "walk": {"_count": 1}}, "Malfoy": {"_count": 5, "hurry": {"_count": 1}, "fighting": {"_count": 1}, "bent": {"_count": 1}, "squirm": {"_count": 1}, "do": {"_count": 1}}, "aghast": {"_count": 1, "as": {"_count": 1}}, "snow": {"_count": 1, "starting": {"_count": 1}}, "Riddle": {"_count": 1, "stop": {"_count": 1}}, "interestedly": {"_count": 1, "as": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "buildings": {"_count": 1, "and": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 20, "run": {"_count": 1}, "out": {"_count": 1}, "fly": {"_count": 3}, "go": {"_count": 5}, "she": {"_count": 1}, "until": {"_count": 1}, "": {"_count": 2}, "wand": {"_count": 1}, "with": {"_count": 1}, "supposing": {"_count": 1}, "slight": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}}, "fearfully": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 3, "Lupin": {"_count": 1}, "Trelawney": {"_count": 2}}, "carefully": {"_count": 1, "": {"_count": 1}}, "Lupin": {"_count": 3, "extinguishing": {"_count": 1}, "seize": {"_count": 1}, "Pettigrew": {"_count": 1}}, "you": {"_count": 6, "cross": {"_count": 1}, "as": {"_count": 1}, "more": {"_count": 1}, "struggling": {"_count": 1}, "play": {"_count": 1}, "from": {"_count": 1}}, "it": {"_count": 7, "canter": {"_count": 1}, "walk": {"_count": 1}, "rose": {"_count": 1}, "floating": {"_count": 1}, "take": {"_count": 1}, "and": {"_count": 1}, "melt": {"_count": 1}}, "himself": {"_count": 1, "and": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 2}}, "several": {"_count": 2, "gnomes": {"_count": 1}, "more": {"_count": 1}}, "Dennis": {"_count": 1, "Creevey": {"_count": 1}}, "mournfully": {"_count": 1, "as": {"_count": 1}}, "Hermione": {"_count": 1, "teaching": {"_count": 1}}, "George": {"_count": 2, "shook": {"_count": 1}, "projectilevomit": {"_count": 1}}, "Hedwig": {"_count": 1, "anxiously": {"_count": 1}}, "fascinated": {"_count": 1, "as": {"_count": 1}}, "Krum": {"_count": 2, "excitedly": {"_count": 1}, "and": {"_count": 1}}, "waiting": {"_count": 1, "": {"_count": 1}}, "other": {"_count": 1, "students": {"_count": 1}}, "he": {"_count": 2, "saw": {"_count": 1}, "added": {"_count": 1}}, "Cedric": {"_count": 4, "leaving": {"_count": 1}, "pull": {"_count": 1}, "being": {"_count": 1}, "Diggory": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "disappear": {"_count": 1}}, "Joey": {"_count": 1, "Jenkins": {"_count": 1}}, "Bagman": {"_count": 1, "in": {"_count": 1}}, "closely": {"_count": 1, "as": {"_count": 1}}, "Filch": {"_count": 1, "drawing": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "lazily": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 2, "upon": {"_count": 1}, "her": {"_count": 1}}, "astounded": {"_count": 1, "as": {"_count": 1}}, "Potter": {"_count": 2, "run": {"_count": 1}, "bringing": {"_count": 1}}, "someone": {"_count": 2, "being": {"_count": 1}, "snuff": {"_count": 1}}, "Fleur": {"_count": 2, "hurry": {"_count": 1}, "mopping": {"_count": 1}}, "Mrs": {"_count": 1, "Figg": {"_count": 1}}, "Aunt": {"_count": 1, "Petunias": {"_count": 1}}, "eagerly": {"_count": 2, "by": {"_count": 1}, "as": {"_count": 1}}, "apprehensively": {"_count": 1, "as": {"_count": 1}}, "wistfully": {"_count": 1, "by": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "numbly": {"_count": 1, "as": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "Katie": {"_count": 1, "leap": {"_count": 1}}, "Ron": {"_count": 3, "he": {"_count": 1}, "rolling": {"_count": 1}, "mumble": {"_count": 1}}, "us": {"_count": 1, "pass": {"_count": 1}}, "this": {"_count": 1, "attack": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 2}, "afar": {"_count": 1}, "a": {"_count": 1}}, "fly": {"_count": 1, "around": {"_count": 1}}, "stones": {"_count": 1, "flew": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "Grawp": {"_count": 1, "gave": {"_count": 1}}, "their": {"_count": 1, "mouths": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "Dumbledore": {"_count": 2, "fasten": {"_count": 1}, "striding": {"_count": 1}}, "Pansy": {"_count": 1, "stroke": {"_count": 1}}, "Ginny": {"_count": 3, "Weasley": {"_count": 1}, "who": {"_count": 1}, "sent": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "anyway": {"_count": 1}}, "terrified": {"_count": 1, "his": {"_count": 1}}, "Voldemort": {"_count": 1, "apprehensively": {"_count": 1}}, "these": {"_count": 1, "two": {"_count": 1}}, "Voldemorts": {"_count": 1, "white": {"_count": 1}}, "Kreacher": {"_count": 2, "but": {"_count": 1}, "sobbing": {"_count": 1}}, "Thicknesse": {"_count": 1, "march": {"_count": 1}}, "horrified": {"_count": 1, "as": {"_count": 1}}, "Phineas": {"_count": 1, "redouble": {"_count": 1}}, "again": {"_count": 1, "as": {"_count": 1}}, "die": {"_count": 1, "": {"_count": 1}}}, "mirror": {"_count": 123, "": {"_count": 32, ".": {"_count": 27}, "?": {"_count": 5}}, "as": {"_count": 2, "high": {"_count": 1}, "easily": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "a": {"_count": 2}}, "again": {"_count": 2, "": {"_count": 2}}, "now": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 19, "saw": {"_count": 3}, "Ron": {"_count": 1}, "stared": {"_count": 1}, "tell": {"_count": 1}, "opened": {"_count": 1}, "the": {"_count": 2}, "prodding": {"_count": 1}, "Rons": {"_count": 1}, "told": {"_count": 1}, "Ill": {"_count": 1}, "examined": {"_count": 1}, "dabbing": {"_count": 1}, "in": {"_count": 1}, "R": {"_count": 1}, "ricocheting": {"_count": 1}, "lets": {"_count": 1}}, "room": {"_count": 1, "again": {"_count": 1}}, "he": {"_count": 2, "couldnt": {"_count": 1}, "hadnt": {"_count": 1}}, "shows": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 3, "is": {"_count": 1}, "reflected": {"_count": 1}, "his": {"_count": 1}}, "will": {"_count": 1, "give": {"_count": 1}}, "could": {"_count": 1, "drive": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "look": {"_count": 1}, "reflect": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 1, "should": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "Stone": {"_count": 1}, "girl": {"_count": 1}, "twin": {"_count": 1}}, "worked": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 5, "the": {"_count": 4}, "": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "a": {"_count": 1}}, "snap": {"_count": 1, "off": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "sleepily": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 4}, "him": {"_count": 1}}, "hung": {"_count": 2, "opposite": {"_count": 1}, "on": {"_count": 1}}, "for": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "something": {"_count": 1, "much": {"_count": 1}}, "raised": {"_count": 1, "it": {"_count": 1}}, "even": {"_count": 1, "closer": {"_count": 1}}, "clear": {"_count": 1, "again": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "But": {"_count": 1, "then": {"_count": 1}}, "feeling": {"_count": 1, "sicker": {"_count": 1}}, "had": {"_count": 1, "occasioned": {"_count": 1}}, "fragment": {"_count": 6, "off": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 2}, "fell": {"_count": 1}, "and": {"_count": 1}}, "danced": {"_count": 1, "away": {"_count": 1}}, "propped": {"_count": 2, "up": {"_count": 1}, "on": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "this": {"_count": 1, "way": {"_count": 1}}, "Harry": {"_count": 1, "admits": {"_count": 1}}}, "said": {"_count": 14472, "Privet": {"_count": 1, "Drive": {"_count": 1}}, "in": {"_count": 139, "a": {"_count": 96}, "his": {"_count": 9}, "an": {"_count": 11}, "the": {"_count": 7}, "barely": {"_count": 1}, "case": {"_count": 1}, "amazement": {"_count": 1}, "outrage": {"_count": 1}, "normal": {"_count": 1}, "tones": {"_count": 1}, "her": {"_count": 2}, "scandalized": {"_count": 1}, "Umbridges": {"_count": 1}, "response": {"_count": 1}, "ringing": {"_count": 1}, "anguished": {"_count": 1}, "disbelief": {"_count": 1}, "what": {"_count": 1}, "front": {"_count": 1}}, "Mr": {"_count": 277, "Dursley": {"_count": 2}, "Ollivander": {"_count": 10}, "Weasley": {"_count": 197}, "Malfoy": {"_count": 17}, "Borgin": {"_count": 6}, "Weasleys": {"_count": 2}, "Diggory": {"_count": 12}, "Roberts": {"_count": 6}, "Crouch": {"_count": 19}, "Diggorys": {"_count": 2}, "Krum": {"_count": 1}, "Bagman": {"_count": 1}, "Lucius": {"_count": 1}, "Lovegood": {"_count": 1}}, "the": {"_count": 270, "weatherman": {"_count": 1}, "giant": {"_count": 5}, "stranger": {"_count": 2}, "bartender": {"_count": 1}, "boy": {"_count": 11}, "other": {"_count": 9}, "drawling": {"_count": 1}, "man": {"_count": 4}, "boys": {"_count": 2}, "first": {"_count": 2}, "girl": {"_count": 4}, "pale": {"_count": 2}, "Fat": {"_count": 8}, "Friar": {"_count": 1}, "small": {"_count": 3}, "ghost": {"_count": 3}, "centaur": {"_count": 3}, "very": {"_count": 1}, "creature": {"_count": 2}, "elf": {"_count": 12}, "stout": {"_count": 1}, "hat": {"_count": 1}, "wrong": {"_count": 2}, "old": {"_count": 7}, "headmaster": {"_count": 2}, "large": {"_count": 1}, "Weasley": {"_count": 1}, "aged": {"_count": 1}, "Minister": {"_count": 2}, "manager": {"_count": 4}, "witch": {"_count": 12}, "cold": {"_count": 13}, "class": {"_count": 1}, "dementors": {"_count": 1}, "familiar": {"_count": 2}, "Dark": {"_count": 2}, "reedy": {"_count": 2}, "executioner": {"_count": 1}, "servant": {"_count": 1}, "landlord": {"_count": 1}, "second": {"_count": 6}, "voice": {"_count": 8}, "magic": {"_count": 1}, "Burrow": {"_count": 1}, "nearer": {"_count": 1}, "Muggle": {"_count": 1}, "Ministry": {"_count": 4}, "saleswizard": {"_count": 1}, "Bulgarian": {"_count": 1}, "heads": {"_count": 1}, "misty": {"_count": 1}, "twins": {"_count": 1}, "skrewts": {"_count": 1}, "moment": {"_count": 1}, "houseelf": {"_count": 1}, "memory": {"_count": 1}, "Dumbledore": {"_count": 1}, "high": {"_count": 3}, "protection": {"_count": 1}, "spell": {"_count": 1}, "violethaired": {"_count": 1}, "young": {"_count": 1}, "owls": {"_count": 1}, "only": {"_count": 2}, "cool": {"_count": 4}, "womans": {"_count": 2}, "wizard": {"_count": 10}, "booklists": {"_count": 1}, "blond": {"_count": 2}, "same": {"_count": 2}, "blonde": {"_count": 1}, "Healer": {"_count": 3}, "caption": {"_count": 1}, "hardfaced": {"_count": 1}, "woman": {"_count": 1}, "figure": {"_count": 2}, "rough": {"_count": 1}, "corpulent": {"_count": 1}, "Prime": {"_count": 17}, "portrait": {"_count": 1}, "little": {"_count": 1}, "shops": {"_count": 1}, "driver": {"_count": 1}, "older": {"_count": 1}, "reason": {"_count": 1}, "girls": {"_count": 1}, "mans": {"_count": 1}, "new": {"_count": 1}, "locket": {"_count": 1}, "bewilderedlooking": {"_count": 1}, "whitehaired": {"_count": 1}, "prophecy": {"_count": 1}, "fourth": {"_count": 1}, "lopsided": {"_count": 1}, "brutalfaced": {"_count": 1}, "lumpy": {"_count": 1}, "twin": {"_count": 1}, "disembodied": {"_count": 1}, "witchs": {"_count": 1}, "goblins": {"_count": 1}, "tired": {"_count": 1}, "highervoiced": {"_count": 2}, "deepervoiced": {"_count": 1}, "Deathly": {"_count": 1}, "Cloak": {"_count": 1}, "wand": {"_count": 1}, "stone": {"_count": 1}, "horribly": {"_count": 1}, "name": {"_count": 1}, "goblin": {"_count": 9}, "wandmaker": {"_count": 1}, "guard": {"_count": 1}, "Death": {"_count": 1}, "Gray": {"_count": 1}}, "sharply": {"_count": 14, "": {"_count": 9}, "Dont": {"_count": 1}, "but": {"_count": 1}, "pointing": {"_count": 2}, "as": {"_count": 1}}, "as": {"_count": 47, "casually": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 13}, "Ron": {"_count": 1}, "the": {"_count": 5}, "he": {"_count": 12}, "she": {"_count": 5}, "Harry": {"_count": 2}, "though": {"_count": 3}, "Dean": {"_count": 1}, "Snape": {"_count": 1}, "loudly": {"_count": 1}, "Bellatrix": {"_count": 1}}, "Mrs": {"_count": 178, "Dursley": {"_count": 1}, "Weasley": {"_count": 151}, "Finnigan": {"_count": 1}, "Figg": {"_count": 14}, "Weasleys": {"_count": 1}, "Longbottom": {"_count": 5}, "Cole": {"_count": 5}}, "Professor": {"_count": 326, "McGonagall": {"_count": 172}, "Flitwick": {"_count": 8}, "Dumbledore": {"_count": 5}, "Sprout": {"_count": 15}, "Binns": {"_count": 5}, "could": {"_count": 1}, "Lupin": {"_count": 23}, "Trelawney": {"_count": 37}, "Snape": {"_count": 2}, "McGonagalls": {"_count": 2}, "Karkaroff": {"_count": 1}, "GrubblyPlank": {"_count": 10}, "Umbridge": {"_count": 35}, "Grubbly": {"_count": 2}, "Flitwicks": {"_count": 1}, "Tofty": {"_count": 4}, "Marchbanks": {"_count": 1}, "Im": {"_count": 1}, "Slughorn": {"_count": 1}}, "impatiently": {"_count": 12, "": {"_count": 8}, "we": {"_count": 1}, "to": {"_count": 1}, "slamming": {"_count": 1}, "clicking": {"_count": 1}}, "Dumbledore": {"_count": 667, "gently": {"_count": 6}, "": {"_count": 231}, "calmly": {"_count": 22}, "firmly": {"_count": 4}, "looking": {"_count": 8}, "sounding": {"_count": 4}, "finally": {"_count": 2}, "nodding": {"_count": 8}, "and": {"_count": 20}, "slipping": {"_count": 1}, "quietly": {"_count": 31}, "beaming": {"_count": 6}, "dreamily": {"_count": 1}, "smiling": {"_count": 23}, "Ah": {"_count": 1}, "patiently": {"_count": 2}, "that": {"_count": 4}, "his": {"_count": 9}, "seating": {"_count": 1}, "loudly": {"_count": 3}, "though": {"_count": 1}, "giving": {"_count": 1}, "frowning": {"_count": 2}, "sharply": {"_count": 8}, "speaking": {"_count": 3}, "shaking": {"_count": 3}, "eyes": {"_count": 1}, "thoughtfully": {"_count": 1}, "simply": {"_count": 9}, "pleasantly": {"_count": 8}, "with": {"_count": 6}, "in": {"_count": 10}, "the": {"_count": 3}, "coldly": {"_count": 2}, "as": {"_count": 13}, "enthusiastically": {"_count": 1}, "standing": {"_count": 3}, "indicating": {"_count": 3}, "surveying": {"_count": 3}, "abruptly": {"_count": 1}, "slowly": {"_count": 3}, "still": {"_count": 8}, "soberly": {"_count": 1}, "softly": {"_count": 8}, "brightly": {"_count": 2}, "where": {"_count": 1}, "also": {"_count": 2}, "I": {"_count": 5}, "is": {"_count": 2}, "politely": {"_count": 5}, "warningly": {"_count": 1}, "who": {"_count": 5}, "taking": {"_count": 2}, "amicably": {"_count": 1}, "banned": {"_count": 1}, "closing": {"_count": 1}, "twiddling": {"_count": 1}, "now": {"_count": 5}, "only": {"_count": 1}, "swiftly": {"_count": 1}, "just": {"_count": 1}, "sadly": {"_count": 2}, "prodding": {"_count": 1}, "promptly": {"_count": 1}, "heavily": {"_count": 3}, "was": {"_count": 2}, "curtly": {"_count": 1}, "quickly": {"_count": 1}, "which": {"_count": 1}, "we": {"_count": 3}, "steadily": {"_count": 2}, "coolly": {"_count": 1}, "or": {"_count": 1}, "turning": {"_count": 3}, "stepping": {"_count": 1}, "but": {"_count": 6}, "cheerfully": {"_count": 4}, "lightly": {"_count": 3}, "mildly": {"_count": 3}, "courteously": {"_count": 2}, "inclining": {"_count": 2}, "briskly": {"_count": 2}, "very": {"_count": 2}, "at": {"_count": 3}, "before": {"_count": 1}, "Floo": {"_count": 1}, "catching": {"_count": 1}, "happily": {"_count": 3}, "gravely": {"_count": 2}, "raising": {"_count": 4}, "apologetically": {"_count": 2}, "kindly": {"_count": 2}, "apparently": {"_count": 1}, "s": {"_count": 1}, "serenely": {"_count": 2}, "clearly": {"_count": 2}, "when": {"_count": 5}, "except": {"_count": 1}, "hesitantly": {"_count": 1}, "peering": {"_count": 1}, "ignoring": {"_count": 1}, "there": {"_count": 1}, "vaguely": {"_count": 1}, "straightening": {"_count": 1}, "moving": {"_count": 1}, "relieving": {"_count": 1}, "airily": {"_count": 1}, "pushing": {"_count": 1}, "ushering": {"_count": 1}, "placidly": {"_count": 3}, "pulling": {"_count": 1}, "gesturing": {"_count": 2}, "reseating": {"_count": 2}, "after": {"_count": 3}, "quellingly": {"_count": 1}, "withdrawing": {"_count": 1}, "perhaps": {"_count": 1}, "holding": {"_count": 1}, "waving": {"_count": 1}, "rising": {"_count": 1}, "walking": {"_count": 1}, "drawing": {"_count": 1}, "landing": {"_count": 1}, "for": {"_count": 1}, "if": {"_count": 2}, "a": {"_count": 1}, "placing": {"_count": 2}, "Divination": {"_count": 1}, "eventually": {"_count": 1}, "more": {"_count": 1}, "resuming": {"_count": 1}, "easily": {"_count": 2}, "said": {"_count": 1}, "because": {"_count": 1}, "bowing": {"_count": 1}, "putting": {"_count": 1}, "stopping": {"_count": 1}, "again": {"_count": 1}, "faintly": {"_count": 3}, "weakly": {"_count": 1}, "conversationally": {"_count": 1}, "told": {"_count": 1}, "invented": {"_count": 1}, "surely": {"_count": 1}, "without": {"_count": 1}, "almost": {"_count": 1}, "seriously": {"_count": 1}, "matteroffactly": {"_count": 1}, "will": {"_count": 1}, "while": {"_count": 1}}, "The": {"_count": 7, "owls": {"_count": 1}, "forest": {"_count": 1}, "casket": {"_count": 1}, "headquarters": {"_count": 1}, "hats": {"_count": 1}, "Chosen": {"_count": 1}, "Dark": {"_count": 1}}, "heavily": {"_count": 4, "": {"_count": 3}, "you": {"_count": 1}}, "Hagrids": {"_count": 1, "late": {"_count": 1}}, "Yes": {"_count": 6, "yes": {"_count": 1}, "theyve": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}}, "Hagrid": {"_count": 390, "in": {"_count": 6}, "": {"_count": 84}, "sitting": {"_count": 2}, "clapping": {"_count": 3}, "but": {"_count": 4}, "its": {"_count": 1}, "breathing": {"_count": 1}, "loudly": {"_count": 5}, "sleepily": {"_count": 1}, "who": {"_count": 10}, "standing": {"_count": 1}, "giving": {"_count": 1}, "unfolding": {"_count": 1}, "coming": {"_count": 1}, "to": {"_count": 3}, "quietly": {"_count": 6}, "and": {"_count": 6}, "at": {"_count": 1}, "importantly": {"_count": 1}, "mysteriously": {"_count": 2}, "nodding": {"_count": 5}, "whats": {"_count": 2}, "darkly": {"_count": 3}, "gruffly": {"_count": 7}, "shuffling": {"_count": 1}, "quickly": {"_count": 2}, "letting": {"_count": 2}, "glancing": {"_count": 2}, "patting": {"_count": 2}, "raising": {"_count": 2}, "again": {"_count": 3}, "hotly": {"_count": 1}, "sticking": {"_count": 1}, "following": {"_count": 1}, "flatly": {"_count": 1}, "proudly": {"_count": 7}, "fiddling": {"_count": 1}, "pulling": {"_count": 2}, "looking": {"_count": 20}, "frowning": {"_count": 4}, "fiercely": {"_count": 2}, "now": {"_count": 1}, "see": {"_count": 1}, "grimly": {"_count": 4}, "grumpily": {"_count": 2}, "irritably": {"_count": 1}, "casually": {"_count": 2}, "as": {"_count": 6}, "almost": {"_count": 1}, "offering": {"_count": 1}, "jerking": {"_count": 1}, "abruptly": {"_count": 2}, "his": {"_count": 2}, "happily": {"_count": 6}, "urgently": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "furiously": {"_count": 1}, "wiping": {"_count": 3}, "rubbing": {"_count": 1}, "with": {"_count": 5}, "sounding": {"_count": 3}, "ecstatic": {"_count": 1}, "an": {"_count": 1}, "miserably": {"_count": 2}, "dully": {"_count": 1}, "stroking": {"_count": 1}, "gloomily": {"_count": 2}, "opening": {"_count": 1}, "waving": {"_count": 2}, "wisely": {"_count": 1}, "sadly": {"_count": 5}, "spilling": {"_count": 1}, "softly": {"_count": 3}, "huskily": {"_count": 1}, "gazing": {"_count": 2}, "enthusiastically": {"_count": 2}, "when": {"_count": 2}, "putting": {"_count": 1}, "turning": {"_count": 3}, "demonstrating": {"_count": 1}, "beaming": {"_count": 3}, "so": {"_count": 1}, "hoarsely": {"_count": 3}, "while": {"_count": 1}, "blankly": {"_count": 2}, "croakily": {"_count": 2}, "grinning": {"_count": 1}, "gently": {"_count": 1}, "heaving": {"_count": 2}, "airily": {"_count": 1}, "hastily": {"_count": 2}, "firmly": {"_count": 2}, "straightening": {"_count": 1}, "repressively": {"_count": 1}, "catching": {"_count": 1}, "fixing": {"_count": 1}, "unhelpfully": {"_count": 1}, "shaking": {"_count": 3}, "cagily": {"_count": 1}, "baldly": {"_count": 1}, "shrugging": {"_count": 4}, "imperturbably": {"_count": 1}, "heavily": {"_count": 3}, "we": {"_count": 1}, "indignantly": {"_count": 3}, "patiently": {"_count": 2}, "emphatically": {"_count": 1}, "staring": {"_count": 1}, "theres": {"_count": 1}, "stoutly": {"_count": 1}, "tugging": {"_count": 1}, "bit": {"_count": 1}, "attempting": {"_count": 1}, "scowling": {"_count": 1}, "angrily": {"_count": 2}, "encouragingly": {"_count": 1}, "chuckling": {"_count": 1}, "solemnly": {"_count": 1}, "brightly": {"_count": 1}, "throwing": {"_count": 1}, "clearly": {"_count": 1}, "dismissively": {"_count": 2}, "though": {"_count": 2}, "pausing": {"_count": 1}, "distractedly": {"_count": 1}, "over": {"_count": 1}, "into": {"_count": 1}, "earnestly": {"_count": 1}, "tears": {"_count": 1}, "anxiously": {"_count": 2}, "twisting": {"_count": 1}, "still": {"_count": 2}, "eagerly": {"_count": 1}, "hopefully": {"_count": 2}, "hastening": {"_count": 1}, "thickly": {"_count": 1}, "warily": {"_count": 1}, "testily": {"_count": 1}, "impatiently": {"_count": 1}, "scathingly": {"_count": 1}, "soothingly": {"_count": 1}, "stopping": {"_count": 1}, "unconcerned": {"_count": 1}, "was": {"_count": 1}, "bending": {"_count": 1}, "lowering": {"_count": 1}, "shortly": {"_count": 1}, "firing": {"_count": 1}, "out": {"_count": 1}, "morosely": {"_count": 1}, "indifferently": {"_count": 1}, "roughly": {"_count": 1}, "fat": {"_count": 1}, "quite": {"_count": 1}}, "Harry": {"_count": 2642, "": {"_count": 862}, "but": {"_count": 34}, "honestly": {"_count": 3}, "remembering": {"_count": 7}, "trying": {"_count": 22}, "furiously": {"_count": 10}, "the": {"_count": 9}, "angrily": {"_count": 34}, "eagerly": {"_count": 8}, "interested": {"_count": 1}, "loudly": {"_count": 23}, "eager": {"_count": 1}, "panting": {"_count": 1}, "as": {"_count": 42}, "feeling": {"_count": 11}, "wishing": {"_count": 3}, "pleased": {"_count": 1}, "coldly": {"_count": 12}, "shortly": {"_count": 9}, "gloomily": {"_count": 6}, "awkwardly": {"_count": 5}, "realizing": {"_count": 2}, "pushing": {"_count": 5}, "and": {"_count": 91}, "I": {"_count": 11}, "taking": {"_count": 9}, "holding": {"_count": 6}, "who": {"_count": 47}, "more": {"_count": 4}, "quietly": {"_count": 32}, "that": {"_count": 4}, "darkly": {"_count": 8}, "shoveling": {"_count": 1}, "coolly": {"_count": 5}, "sharply": {"_count": 5}, "fighting": {"_count": 4}, "quickly": {"_count": 62}, "watching": {"_count": 11}, "so": {"_count": 6}, "Malfoy": {"_count": 1}, "laughing": {"_count": 2}, "breathlessly": {"_count": 2}, "about": {"_count": 1}, "anxiously": {"_count": 4}, "hurrying": {"_count": 3}, "miserably": {"_count": 2}, "flatly": {"_count": 13}, "startled": {"_count": 4}, "hardly": {"_count": 1}, "scrambling": {"_count": 2}, "frantically": {"_count": 4}, "throwing": {"_count": 6}, "once": {"_count": 2}, "hurriedly": {"_count": 4}, "this": {"_count": 2}, "pointing": {"_count": 9}, "very": {"_count": 4}, "blankly": {"_count": 15}, "thoughtfully": {"_count": 3}, "shocked": {"_count": 1}, "Ill": {"_count": 1}, "irritably": {"_count": 11}, "all": {"_count": 1}, "tonelessly": {"_count": 2}, "dully": {"_count": 6}, "not": {"_count": 8}, "in": {"_count": 46}, "nervously": {"_count": 9}, "edging": {"_count": 1}, "politely": {"_count": 1}, "at": {"_count": 28}, "frowning": {"_count": 7}, "grimly": {"_count": 10}, "staring": {"_count": 12}, "guessing": {"_count": 1}, "happily": {"_count": 5}, "under": {"_count": 2}, "ducking": {"_count": 1}, "blinking": {"_count": 1}, "wearily": {"_count": 8}, "because": {"_count": 8}, "hastily": {"_count": 9}, "groggily": {"_count": 1}, "heavily": {"_count": 8}, "looking": {"_count": 28}, "to": {"_count": 6}, "sitting": {"_count": 9}, "desperately": {"_count": 11}, "hollowly": {"_count": 1}, "lying": {"_count": 2}, "backing": {"_count": 1}, "gratefully": {"_count": 3}, "cautiously": {"_count": 3}, "urgently": {"_count": 7}, "automatically": {"_count": 6}, "his": {"_count": 35}, "dropping": {"_count": 3}, "have": {"_count": 1}, "closing": {"_count": 2}, "through": {"_count": 11}, "weakly": {"_count": 4}, "getting": {"_count": 5}, "sinking": {"_count": 2}, "anger": {"_count": 1}, "fiercely": {"_count": 9}, "squeezing": {"_count": 2}, "out": {"_count": 2}, "starting": {"_count": 7}, "with": {"_count": 14}, "loosening": {"_count": 1}, "bleakly": {"_count": 1}, "puzzled": {"_count": 1}, "reasonably": {"_count": 2}, "disappointed": {"_count": 1}, "distractedly": {"_count": 4}, "making": {"_count": 6}, "patting": {"_count": 1}, "breathing": {"_count": 2}, "ignoring": {"_count": 6}, "jumping": {"_count": 6}, "glancing": {"_count": 5}, "disbelievingly": {"_count": 1}, "incredulously": {"_count": 4}, "forcing": {"_count": 1}, "stretching": {"_count": 1}, "losing": {"_count": 2}, "whose": {"_count": 5}, "triumphantly": {"_count": 1}, "slowly": {"_count": 27}, "abruptly": {"_count": 2}, "thickly": {"_count": 3}, "isnt": {"_count": 1}, "grinning": {"_count": 23}, "bitterly": {"_count": 19}, "choosing": {"_count": 1}, "loads": {"_count": 1}, "suddenly": {"_count": 12}, "annoyed": {"_count": 1}, "saying": {"_count": 1}, "handing": {"_count": 4}, "without": {"_count": 8}, "tearing": {"_count": 2}, "while": {"_count": 2}, "sincerely": {"_count": 1}, "nettled": {"_count": 2}, "wiping": {"_count": 1}, "crossly": {"_count": 4}, "moving": {"_count": 5}, "finally": {"_count": 1}, "accidentally": {"_count": 2}, "offhandedly": {"_count": 1}, "listlessly": {"_count": 2}, "truthfully": {"_count": 4}, "putting": {"_count": 3}, "picking": {"_count": 6}, "outraged": {"_count": 4}, "curiously": {"_count": 7}, "was": {"_count": 3}, "firmly": {"_count": 19}, "now": {"_count": 5}, "excitedly": {"_count": 4}, "dispiritedly": {"_count": 1}, "defiantly": {"_count": 2}, "thinking": {"_count": 9}, "casually": {"_count": 2}, "striving": {"_count": 1}, "before": {"_count": 10}, "praying": {"_count": 1}, "impressed": {"_count": 3}, "ripping": {"_count": 1}, "still": {"_count": 11}, "a": {"_count": 6}, "again": {"_count": 10}, "setting": {"_count": 1}, "astounded": {"_count": 1}, "determinedly": {"_count": 1}, "or": {"_count": 2}, "checking": {"_count": 1}, "gripping": {"_count": 1}, "shaking": {"_count": 14}, "wrenching": {"_count": 1}, "helping": {"_count": 1}, "alarmed": {"_count": 1}, "distracted": {"_count": 1}, "cheerfully": {"_count": 2}, "brightly": {"_count": 2}, "thats": {"_count": 1}, "straightening": {"_count": 1}, "earnestly": {"_count": 1}, "softly": {"_count": 1}, "enthusiastically": {"_count": 2}, "smiling": {"_count": 3}, "taken": {"_count": 4}, "fervently": {"_count": 4}, "maybe": {"_count": 1}, "gesturing": {"_count": 2}, "jerking": {"_count": 1}, "turning": {"_count": 8}, "shrugging": {"_count": 8}, "Ron": {"_count": 4}, "warily": {"_count": 1}, "clapping": {"_count": 2}, "after": {"_count": 5}, "both": {"_count": 1}, "missed": {"_count": 1}, "almost": {"_count": 3}, "thought": {"_count": 1}, "crumpling": {"_count": 1}, "scribbling": {"_count": 1}, "vehemently": {"_count": 1}, "concealing": {"_count": 1}, "yet": {"_count": 1}, "slipping": {"_count": 1}, "speaking": {"_count": 5}, "standing": {"_count": 1}, "wondering": {"_count": 2}, "savagely": {"_count": 3}, "stoutly": {"_count": 1}, "lazily": {"_count": 1}, "joining": {"_count": 1}, "completely": {"_count": 3}, "hotly": {"_count": 1}, "leading": {"_count": 2}, "ladling": {"_count": 1}, "said": {"_count": 2}, "sheepishly": {"_count": 1}, "bending": {"_count": 2}, "which": {"_count": 4}, "indignantly": {"_count": 7}, "bewildered": {"_count": 3}, "vaguely": {"_count": 3}, "hoping": {"_count": 1}, "waving": {"_count": 1}, "resting": {"_count": 1}, "uneasily": {"_count": 1}, "raising": {"_count": 6}, "tensely": {"_count": 2}, "innocently": {"_count": 1}, "when": {"_count": 4}, "did": {"_count": 1}, "struck": {"_count": 2}, "we": {"_count": 1}, "also": {"_count": 1}, "seizing": {"_count": 3}, "impatiently": {"_count": 15}, "slightly": {"_count": 8}, "suppressing": {"_count": 1}, "if": {"_count": 1}, "pulling": {"_count": 8}, "running": {"_count": 1}, "astonished": {"_count": 3}, "lightly": {"_count": 1}, "knowing": {"_count": 3}, "pacing": {"_count": 1}, "testing": {"_count": 1}, "glad": {"_count": 3}, "wildly": {"_count": 2}, "perplexed": {"_count": 1}, "calmly": {"_count": 4}, "temper": {"_count": 1}, "exasperated": {"_count": 1}, "uncomfortably": {"_count": 2}, "gaping": {"_count": 1}, "grabbing": {"_count": 2}, "doing": {"_count": 1}, "coming": {"_count": 2}, "sarcastically": {"_count": 5}, "defensively": {"_count": 1}, "grudgingly": {"_count": 1}, "Ive": {"_count": 2}, "yeah": {"_count": 1}, "wringing": {"_count": 1}, "heatedly": {"_count": 3}, "counting": {"_count": 2}, "attempting": {"_count": 1}, "pausing": {"_count": 1}, "glowering": {"_count": 1}, "stiffly": {"_count": 6}, "stung": {"_count": 3}, "glumly": {"_count": 1}, "look": {"_count": 1}, "loyally": {"_count": 1}, "chancing": {"_count": 1}, "suspiciously": {"_count": 2}, "grumpily": {"_count": 1}, "playing": {"_count": 1}, "knew": {"_count": 1}, "dryly": {"_count": 1}, "hoarsely": {"_count": 1}, "no": {"_count": 1}, "for": {"_count": 2}, "curtly": {"_count": 5}, "lifting": {"_count": 1}, "just": {"_count": 3}, "horrified": {"_count": 1}, "stroking": {"_count": 1}, "yawning": {"_count": 2}, "reluctantly": {"_count": 1}, "warningly": {"_count": 2}, "stepping": {"_count": 1}, "encouragingly": {"_count": 1}, "sternly": {"_count": 1}, "recovering": {"_count": 1}, "testily": {"_count": 1}, "skeptically": {"_count": 1}, "you": {"_count": 5}, "it": {"_count": 1}, "an": {"_count": 1}, "considering": {"_count": 1}, "rather": {"_count": 1}, "emphatically": {"_count": 1}, "tersely": {"_count": 2}, "swiftly": {"_count": 1}, "glaring": {"_count": 2}, "one": {"_count": 1}, "stowing": {"_count": 2}, "dismally": {"_count": 1}, "stuffing": {"_count": 1}, "dubiously": {"_count": 1}, "untruthfully": {"_count": 1}, "unable": {"_count": 3}, "bemused": {"_count": 1}, "forcefully": {"_count": 5}, "firing": {"_count": 2}, "patiently": {"_count": 2}, "blandly": {"_count": 1}, "hoisting": {"_count": 1}, "stupidly": {"_count": 1}, "quite": {"_count": 1}, "promptly": {"_count": 1}, "moodily": {"_count": 1}, "gruffly": {"_count": 1}, "brusquely": {"_count": 1}, "hopelessly": {"_count": 1}, "its": {"_count": 4}, "doggedly": {"_count": 1}, "indifferently": {"_count": 3}, "surprised": {"_count": 4}, "thoroughly": {"_count": 2}, "mutinously": {"_count": 1}, "amazed": {"_count": 1}, "already": {"_count": 1}, "nodding": {"_count": 3}, "stunned": {"_count": 1}, "roughly": {"_count": 1}, "fully": {"_count": 1}, "kicking": {"_count": 1}, "frustratedly": {"_count": 1}, "stopping": {"_count": 1}, "though": {"_count": 2}, "what": {"_count": 2}, "maintaining": {"_count": 1}, "recklessly": {"_count": 1}, "half": {"_count": 2}, "snatching": {"_count": 2}, "fearfully": {"_count": 1}, "bluntly": {"_count": 1}, "dredging": {"_count": 1}, "refusing": {"_count": 1}, "exasperatedly": {"_count": 1}, "uncertainly": {"_count": 1}, "rubbing": {"_count": 3}, "amused": {"_count": 1}, "conversationally": {"_count": 1}, "took": {"_count": 1}, "hastening": {"_count": 1}, "pocketing": {"_count": 1}, "speeding": {"_count": 1}, "frustrated": {"_count": 1}, "disregarding": {"_count": 1}, "stubbornly": {"_count": 3}, "scowling": {"_count": 1}, "had": {"_count": 1}, "evasively": {"_count": 2}, "racking": {"_count": 1}, "walking": {"_count": 2}, "tentatively": {"_count": 3}, "leaning": {"_count": 1}, "unwrapping": {"_count": 1}, "emphasizing": {"_count": 1}, "preferring": {"_count": 1}, "inserting": {"_count": 1}, "landing": {"_count": 1}, "blithely": {"_count": 1}, "wheeling": {"_count": 1}, "into": {"_count": 2}, "tugging": {"_count": 1}, "disconcerted": {"_count": 2}, "were": {"_count": 1}, "revolted": {"_count": 1}, "unenthusiastically": {"_count": 2}, "Im": {"_count": 2}, "pleasantly": {"_count": 1}, "unrolling": {"_count": 1}, "reminding": {"_count": 1}, "deciding": {"_count": 1}, "absentmindedly": {"_count": 1}, "albeit": {"_count": 1}, "confidently": {"_count": 3}, "inventing": {"_count": 1}, "somewhat": {"_count": 1}, "shouldering": {"_count": 1}, "twisting": {"_count": 1}, "foreseeing": {"_count": 1}, "giving": {"_count": 1}, "brought": {"_count": 1}, "Wish": {"_count": 1}, "cutting": {"_count": 1}, "smacking": {"_count": 1}, "dismissively": {"_count": 1}, "aloud": {"_count": 1}, "relieved": {"_count": 1}, "remorselessly": {"_count": 1}, "clearly": {"_count": 2}, "excitement": {"_count": 1}, "horror": {"_count": 1}, "well": {"_count": 1}, "scanning": {"_count": 1}, "fearing": {"_count": 1}, "aiming": {"_count": 1}, "come": {"_count": 1}, "replied": {"_count": 1}, "bestowing": {"_count": 1}, "torn": {"_count": 1}, "right": {"_count": 1}, "over": {"_count": 1}, "beaming": {"_count": 1}, "really": {"_count": 1}, "reaching": {"_count": 1}, "shakily": {"_count": 1}, "clenching": {"_count": 1}, "struggling": {"_count": 2}, "then": {"_count": 1}, "humbly": {"_count": 1}, "harshly": {"_count": 1}, "flummoxed": {"_count": 1}, "inwardly": {"_count": 1}, "sickened": {"_count": 1}, "keen": {"_count": 1}, "Sirius": {"_count": 1}, "otherwise": {"_count": 1}, "disgusted": {"_count": 1}, "lowering": {"_count": 1}, "only": {"_count": 1}, "involves": {"_count": 1}, "shouldnt": {"_count": 1}, "flipping": {"_count": 1}, "defeated": {"_count": 1}, "leaping": {"_count": 1}, "resuming": {"_count": 1}, "reassuringly": {"_count": 1}, "mechanically": {"_count": 1}, "sure": {"_count": 1}, "abandoning": {"_count": 1}, "noting": {"_count": 1}, "like": {"_count": 1}, "relief": {"_count": 1}, "oh": {"_count": 1}, "finishing": {"_count": 1}, "is": {"_count": 1}, "talking": {"_count": 1}, "go": {"_count": 1}, "simply": {"_count": 1}}, "": {"_count": 563, ".": {"_count": 552}, "?": {"_count": 7}, "!": {"_count": 4}}, "that": {"_count": 35, "Dudley": {"_count": 2}, "": {"_count": 1}, "he": {"_count": 7}, "as": {"_count": 1}, "to": {"_count": 3}, "was": {"_count": 1}, "when": {"_count": 1}, "Ron": {"_count": 1}, "justified": {"_count": 1}, "Snape": {"_count": 1}, "if": {"_count": 1}, "theyre": {"_count": 1}, "it": {"_count": 3}, "Slughorn": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 3}, "said": {"_count": 1}, "this": {"_count": 1}, "stuff": {"_count": 1}, "each": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 1}}, "looking": {"_count": 40, "up": {"_count": 6}, "at": {"_count": 6}, "desperately": {"_count": 1}, "suspicious": {"_count": 1}, "around": {"_count": 3}, "as": {"_count": 1}, "over": {"_count": 1}, "quite": {"_count": 1}, "exhausted": {"_count": 1}, "disappointed": {"_count": 1}, "between": {"_count": 1}, "shocked": {"_count": 1}, "Harry": {"_count": 2}, "from": {"_count": 3}, "back": {"_count": 1}, "mildly": {"_count": 1}, "down": {"_count": 2}, "mortified": {"_count": 1}, "thoroughly": {"_count": 1}, "frightened": {"_count": 1}, "resigned": {"_count": 1}, "away": {"_count": 1}, "distressed": {"_count": 1}, "very": {"_count": 1}}, "Dudley": {"_count": 11, "going": {"_count": 1}, "suddenly": {"_count": 1}, "offering": {"_count": 1}, "whose": {"_count": 2}, "": {"_count": 2}, "though": {"_count": 1}, "breathlessly": {"_count": 1}, "shakily": {"_count": 1}, "in": {"_count": 1}}, "quickly": {"_count": 25, "And": {"_count": 1}, "": {"_count": 8}, "Ill": {"_count": 1}, "No": {"_count": 1}, "but": {"_count": 1}, "there": {"_count": 1}, "Ou": {"_count": 1}, "and": {"_count": 2}, "Theyre": {"_count": 1}, "slapping": {"_count": 1}, "looking": {"_count": 1}, "Well": {"_count": 1}, "The": {"_count": 1}, "seizing": {"_count": 1}, "dont": {"_count": 1}, "because": {"_count": 1}, "standing": {"_count": 1}}, "slowly": {"_count": 34, "So": {"_count": 1}, "": {"_count": 21}, "It": {"_count": 1}, "and": {"_count": 3}, "his": {"_count": 1}, "how": {"_count": 1}, "you": {"_count": 1}, "Youre": {"_count": 1}, "when": {"_count": 1}, "He": {"_count": 1}, "hes": {"_count": 1}, "like": {"_count": 1}}, "Aunt": {"_count": 23, "Petunia": {"_count": 17}, "Marge": {"_count": 6}}, "putting": {"_count": 2, "his": {"_count": 2}}, "anything": {"_count": 15, "": {"_count": 7}, "to": {"_count": 1}, "Back": {"_count": 1}, "old": {"_count": 1}, "odd": {"_count": 1}, "for": {"_count": 1}, "on": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "quite": {"_count": 1, "plainly": {"_count": 1}}, "punching": {"_count": 2, "Harry": {"_count": 1}, "a": {"_count": 1}}, "Brazil": {"_count": 1, "here": {"_count": 1}}, "gruffly": {"_count": 11, "that": {"_count": 1}, "": {"_count": 5}, "Look": {"_count": 1}, "but": {"_count": 1}, "clambering": {"_count": 1}, "pouring": {"_count": 1}, "looking": {"_count": 1}}, "she": {"_count": 16, "couldnt": {"_count": 1}, "was": {"_count": 8}, "had": {"_count": 1}, "wanted": {"_count": 1}, "could": {"_count": 1}, "needed": {"_count": 2}, "came": {"_count": 1}, "thought": {"_count": 1}}, "I": {"_count": 45, "didnt": {"_count": 2}, "suppose": {"_count": 2}, "was": {"_count": 4}, "find": {"_count": 1}, "thought": {"_count": 3}, "would": {"_count": 3}, "dont": {"_count": 2}, "could": {"_count": 2}, "see": {"_count": 2}, "solemnly": {"_count": 1}, "wonder": {"_count": 1}, "is": {"_count": 1}, "hate": {"_count": 1}, "have": {"_count": 1}, "am": {"_count": 2}, "lacked": {"_count": 1}, "dreamed": {"_count": 1}, "cant": {"_count": 3}, "shall": {"_count": 1}, "knew": {"_count": 1}, "might": {"_count": 1}, "had": {"_count": 3}, "can": {"_count": 1}, "resign": {"_count": 1}, "bet": {"_count": 1}, "hear": {"_count": 1}, "know": {"_count": 1}, "cannot": {"_count": 1}}, "Uncle": {"_count": 63, "Vernon": {"_count": 63}}, "loudly": {"_count": 31, "": {"_count": 10}, "waving": {"_count": 2}, "uncomfortably": {"_count": 1}, "and": {"_count": 7}, "pulling": {"_count": 1}, "An": {"_count": 1}, "You": {"_count": 1}, "Nice": {"_count": 1}, "before": {"_count": 1}, "interrupting": {"_count": 1}, "as": {"_count": 1}, "striding": {"_count": 1}, "wand": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 1}}, "finally": {"_count": 17, "": {"_count": 9}, "blushing": {"_count": 1}, "a": {"_count": 1}, "looking": {"_count": 1}, "setting": {"_count": 1}, "in": {"_count": 2}, "this": {"_count": 1}, "to": {"_count": 1}}, "cheerfully": {"_count": 5, "": {"_count": 2}, "plunking": {"_count": 1}, "its": {"_count": 1}, "and": {"_count": 1}}, "stupidly": {"_count": 1, "": {"_count": 1}}, "instead": {"_count": 1, "was": {"_count": 1}}, "rubbing": {"_count": 3, "his": {"_count": 2}, "her": {"_count": 1}}, "a": {"_count": 140, "thing": {"_count": 1}, "sign": {"_count": 1}, "soft": {"_count": 4}, "sharp": {"_count": 1}, "small": {"_count": 3}, "Gringotts": {"_count": 1}, "voice": {"_count": 25}, "very": {"_count": 1}, "fifth": {"_count": 1}, "slight": {"_count": 1}, "muddy": {"_count": 1}, "nasty": {"_count": 1}, "girl": {"_count": 2}, "hoarse": {"_count": 2}, "mild": {"_count": 1}, "cackling": {"_count": 2}, "Ravenclaw": {"_count": 1}, "Hufflepuff": {"_count": 1}, "womans": {"_count": 3}, "cold": {"_count": 5}, "terrible": {"_count": 1}, "woman": {"_count": 1}, "second": {"_count": 2}, "gloomy": {"_count": 1}, "drawling": {"_count": 1}, "wizard": {"_count": 1}, "few": {"_count": 1}, "shocked": {"_count": 1}, "gvoice": {"_count": 1}, "deep": {"_count": 3}, "simple": {"_count": 1}, "bossy": {"_count": 1}, "wheezy": {"_count": 1}, "curt": {"_count": 1}, "quiet": {"_count": 3}, "stronger": {"_count": 1}, "gruff": {"_count": 2}, "low": {"_count": 2}, "third": {"_count": 1}, "bald": {"_count": 1}, "wheezyvoiced": {"_count": 1}, "word": {"_count": 2}, "sly": {"_count": 1}, "nervous": {"_count": 2}, "vague": {"_count": 2}, "Ministry": {"_count": 2}, "dreamy": {"_count": 2}, "squeaky": {"_count": 2}, "malicious": {"_count": 1}, "scared": {"_count": 1}, "bored": {"_count": 1}, "falsely": {"_count": 1}, "high": {"_count": 4}, "little": {"_count": 4}, "nagging": {"_count": 1}, "gray": {"_count": 1}, "slow": {"_count": 1}, "familiar": {"_count": 3}, "bright": {"_count": 1}, "rough": {"_count": 2}, "mans": {"_count": 1}, "Reallyl": {"_count": 1}, "loud": {"_count": 4}, "girls": {"_count": 1}, "reproachful": {"_count": 1}, "young": {"_count": 1}, "booming": {"_count": 1}, "snide": {"_count": 2}, "better": {"_count": 1}, "strained": {"_count": 1}, "squat": {"_count": 1}, "dark": {"_count": 1}, "slightly": {"_count": 1}, "bushily": {"_count": 1}, "cool": {"_count": 1}, "Death": {"_count": 1}}, "Im": {"_count": 8, "sorry": {"_count": 2}, "warning": {"_count": 1}, "really": {"_count": 1}, "like": {"_count": 1}, "not": {"_count": 2}, "going": {"_count": 1}}, "everyone": {"_count": 2, "does": {"_count": 1}, "from": {"_count": 1}}, "About": {"_count": 2, "our": {"_count": 1}, "t": {"_count": 1}}, "Blown": {"_count": 1, "up": {"_count": 1}}, "It": {"_count": 4, "begins": {"_count": 1}, "was": {"_count": 2}, "is": {"_count": 1}}, "quietly": {"_count": 79, "I": {"_count": 4}, "Snapes": {"_count": 1}, "as": {"_count": 4}, "Id": {"_count": 1}, "Thought": {"_count": 1}, "": {"_count": 40}, "to": {"_count": 4}, "Well": {"_count": 1}, "drawing": {"_count": 1}, "nine": {"_count": 1}, "at": {"_count": 1}, "after": {"_count": 1}, "why": {"_count": 1}, "In": {"_count": 1}, "We": {"_count": 1}, "Ive": {"_count": 1}, "turning": {"_count": 1}, "Thanks": {"_count": 1}, "thrusting": {"_count": 1}, "withdrawing": {"_count": 1}, "grinning": {"_count": 1}, "gazing": {"_count": 1}, "Ah": {"_count": 1}, "James": {"_count": 1}, "producing": {"_count": 1}, "leaning": {"_count": 1}, "Oh": {"_count": 1}, "this": {"_count": 1}, "is": {"_count": 1}, "be": {"_count": 1}, "so": {"_count": 1}}, "ruefully": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "yehd": {"_count": 2, "be": {"_count": 2}}, "handing": {"_count": 5, "it": {"_count": 2}, "them": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}}, "Griphook": {"_count": 22, "": {"_count": 8}, "importantly": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}, "smugly": {"_count": 1}, "indifferently": {"_count": 1}, "flatly": {"_count": 1}, "finally": {"_count": 1}, "maddeningly": {"_count": 1}, "who": {"_count": 1}, "clambering": {"_count": 1}, "we": {"_count": 1}, "as": {"_count": 1}}, "when": {"_count": 15, "Harry": {"_count": 4}, "youre": {"_count": 1}, "she": {"_count": 1}, "they": {"_count": 3}, "the": {"_count": 2}, "hed": {"_count": 1}, "finally": {"_count": 1}, "he": {"_count": 1}, "Mrs": {"_count": 1}}, "again": {"_count": 20, "wondering": {"_count": 1}, "": {"_count": 7}, "sounding": {"_count": 1}, "holding": {"_count": 1}, "but": {"_count": 1}, "very": {"_count": 1}, "in": {"_count": 1}, "more": {"_count": 1}, "and": {"_count": 3}, "alarmed": {"_count": 1}, "his": {"_count": 1}, "I": {"_count": 1}}, "Thats": {"_count": 7, "you": {"_count": 1}, "just": {"_count": 1}, "the": {"_count": 2}, "probably": {"_count": 1}, "where": {"_count": 1}, "an": {"_count": 1}}, "people": {"_count": 1, "from": {"_count": 1}}, "softly": {"_count": 30, "": {"_count": 22}, "Harry": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "his": {"_count": 1}, "moving": {"_count": 1}, "scribbling": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 1}}, "Every": {"_count": 1, "Ollivander": {"_count": 1}}, "and": {"_count": 72, "the": {"_count": 5}, "he": {"_count": 19}, "entered": {"_count": 1}, "she": {"_count": 5}, "Harry": {"_count": 7}, "they": {"_count": 3}, "Harrys": {"_count": 1}, "I": {"_count": 2}, "then": {"_count": 1}, "decided": {"_count": 1}, "there": {"_count": 1}, "although": {"_count": 1}, "his": {"_count": 6}, "been": {"_count": 1}, "silence": {"_count": 1}, "everyone": {"_count": 1}, "without": {"_count": 1}, "hastened": {"_count": 1}, "IVe": {"_count": 1}, "which": {"_count": 1}, "try": {"_count": 1}, "when": {"_count": 1}, "with": {"_count": 2}, "drank": {"_count": 1}, "followed": {"_count": 1}, "her": {"_count": 1}, "Bill": {"_count": 1}, "as": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}, "pain": {"_count": 1}}, "at": {"_count": 15, "last": {"_count": 4}, "the": {"_count": 5}, "once": {"_count": 5}, "least": {"_count": 1}}, "there": {"_count": 6, "wasnt": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 2}, "would": {"_count": 1}, "have": {"_count": 1}}, "to": {"_count": 116, "the": {"_count": 11}, "Harry": {"_count": 24}, "Ron": {"_count": 23}, "be": {"_count": 1}, "Hermione": {"_count": 5}, "Filch": {"_count": 1}, "it": {"_count": 1}, "follow": {"_count": 1}, "Ern": {"_count": 2}, "Lavender": {"_count": 1}, "me": {"_count": 5}, "Buckbeak": {"_count": 1}, "Uncle": {"_count": 2}, "Mr": {"_count": 1}, "him": {"_count": 6}, "you": {"_count": 1}, "Neville": {"_count": 2}, "use": {"_count": 1}, "Crabbe": {"_count": 1}, "Bagman": {"_count": 1}, "Cedric": {"_count": 1}, "Krum": {"_count": 1}, "Dumbledore": {"_count": 1}, "her": {"_count": 1}, "Madam": {"_count": 1}, "George": {"_count": 1}, "Tonks": {"_count": 1}, "Dean": {"_count": 1}, "walk": {"_count": 1}, "Ginny": {"_count": 1}, "Cho": {"_count": 1}, "do": {"_count": 1}, "them": {"_count": 1}, "nobody": {"_count": 2}, "have": {"_count": 1}, "devote": {"_count": 1}, "Myrtle": {"_count": 1}, "fight": {"_count": 1}, "us": {"_count": 2}, "Lupin": {"_count": 1}, "Bathilda": {"_count": 1}, "keep": {"_count": 1}, "Griphook": {"_count": 1}}, "kindly": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "turning": {"_count": 1}, "The": {"_count": 1}}, "Hogwarts": {"_count": 2, "Express": {"_count": 2}}, "one": {"_count": 10, "of": {"_count": 8}, "specialist": {"_count": 1}, "agitated": {"_count": 1}}, "Ron": {"_count": 1540, "": {"_count": 451}, "again": {"_count": 1}, "eagerly": {"_count": 9}, "sounding": {"_count": 17}, "in": {"_count": 55}, "but": {"_count": 16}, "darkly": {"_count": 10}, "scowling": {"_count": 3}, "suddenly": {"_count": 10}, "Snapes": {"_count": 1}, "reasonably": {"_count": 5}, "wheeling": {"_count": 2}, "casually": {"_count": 2}, "furiously": {"_count": 9}, "loudly": {"_count": 9}, "quickly": {"_count": 11}, "finally": {"_count": 4}, "its": {"_count": 1}, "nervously": {"_count": 7}, "pale": {"_count": 1}, "bitterly": {"_count": 8}, "grinding": {"_count": 1}, "tearing": {"_count": 1}, "and": {"_count": 33}, "sleepily": {"_count": 2}, "turning": {"_count": 2}, "unwrapping": {"_count": 1}, "a": {"_count": 8}, "crossly": {"_count": 1}, "when": {"_count": 5}, "grumpily": {"_count": 8}, "impressively": {"_count": 1}, "whod": {"_count": 1}, "crouching": {"_count": 1}, "looking": {"_count": 68}, "as": {"_count": 26}, "peering": {"_count": 4}, "were": {"_count": 1}, "softly": {"_count": 2}, "proudly": {"_count": 1}, "both": {"_count": 1}, "grinning": {"_count": 11}, "jerking": {"_count": 1}, "impatiently": {"_count": 8}, "he": {"_count": 2}, "bent": {"_count": 1}, "pointing": {"_count": 9}, "taking": {"_count": 1}, "enviously": {"_count": 1}, "rubbing": {"_count": 2}, "his": {"_count": 18}, "starting": {"_count": 3}, "jabbing": {"_count": 2}, "checking": {"_count": 2}, "more": {"_count": 2}, "into": {"_count": 2}, "miserably": {"_count": 2}, "dropping": {"_count": 2}, "hopefully": {"_count": 5}, "enthusiastically": {"_count": 5}, "hastily": {"_count": 6}, "thickly": {"_count": 4}, "sagely": {"_count": 2}, "pulling": {"_count": 6}, "faintly": {"_count": 3}, "stuffing": {"_count": 2}, "angrily": {"_count": 15}, "hoarsely": {"_count": 4}, "wiping": {"_count": 3}, "weakly": {"_count": 7}, "heavily": {"_count": 1}, "who": {"_count": 51}, "without": {"_count": 1}, "slowly": {"_count": 14}, "scribbling": {"_count": 1}, "desperately": {"_count": 1}, "tensely": {"_count": 3}, "fiercely": {"_count": 4}, "recovering": {"_count": 1}, "gruffly": {"_count": 2}, "helpfully": {"_count": 1}, "hotly": {"_count": 5}, "whose": {"_count": 10}, "irritably": {"_count": 8}, "frowning": {"_count": 11}, "if": {"_count": 1}, "wrenching": {"_count": 2}, "sharply": {"_count": 11}, "pouring": {"_count": 1}, "reassuringly": {"_count": 2}, "knowingly": {"_count": 1}, "shielding": {"_count": 1}, "eyeing": {"_count": 2}, "unlocking": {"_count": 1}, "approaching": {"_count": 1}, "nodding": {"_count": 6}, "hurrying": {"_count": 1}, "excitedly": {"_count": 9}, "uncertainly": {"_count": 6}, "tipping": {"_count": 1}, "for": {"_count": 1}, "resentfully": {"_count": 1}, "curiously": {"_count": 3}, "with": {"_count": 12}, "wrinkling": {"_count": 1}, "gloomily": {"_count": 6}, "shaking": {"_count": 6}, "shrugging": {"_count": 3}, "quietly": {"_count": 12}, "trying": {"_count": 1}, "even": {"_count": 1}, "abruptly": {"_count": 2}, "delightedly": {"_count": 2}, "leaning": {"_count": 7}, "thumping": {"_count": 2}, "helping": {"_count": 3}, "watching": {"_count": 6}, "catching": {"_count": 1}, "fervently": {"_count": 3}, "aghast": {"_count": 1}, "speaking": {"_count": 2}, "jerkily": {"_count": 2}, "squinting": {"_count": 1}, "gaping": {"_count": 1}, "still": {"_count": 7}, "raising": {"_count": 2}, "brightly": {"_count": 4}, "simply": {"_count": 3}, "rolling": {"_count": 3}, "innocently": {"_count": 1}, "defensively": {"_count": 1}, "sarcastically": {"_count": 5}, "throwing": {"_count": 4}, "doubtfully": {"_count": 3}, "shakily": {"_count": 3}, "uncomfortably": {"_count": 1}, "standing": {"_count": 2}, "sitting": {"_count": 3}, "spiritedly": {"_count": 1}, "getting": {"_count": 2}, "shifting": {"_count": 1}, "laughing": {"_count": 1}, "sheepishly": {"_count": 1}, "roughly": {"_count": 2}, "savagely": {"_count": 3}, "sniggering": {"_count": 1}, "after": {"_count": 3}, "labeling": {"_count": 1}, "ignoring": {"_count": 1}, "stubbornly": {"_count": 4}, "shoving": {"_count": 2}, "outraged": {"_count": 2}, "goggling": {"_count": 3}, "grabbing": {"_count": 1}, "obviously": {"_count": 1}, "clapping": {"_count": 4}, "crossing": {"_count": 1}, "now": {"_count": 4}, "controlling": {"_count": 1}, "hurriedly": {"_count": 1}, "happily": {"_count": 7}, "staring": {"_count": 10}, "gleefully": {"_count": 2}, "flatly": {"_count": 3}, "dismissively": {"_count": 1}, "craning": {"_count": 2}, "stoutly": {"_count": 1}, "astounded": {"_count": 1}, "blankly": {"_count": 4}, "defiantly": {"_count": 1}, "cottoning": {"_count": 2}, "edging": {"_count": 1}, "setting": {"_count": 1}, "gesturing": {"_count": 2}, "going": {"_count": 1}, "leading": {"_count": 1}, "at": {"_count": 11}, "the": {"_count": 4}, "bracingly": {"_count": 3}, "handing": {"_count": 2}, "vaguely": {"_count": 3}, "dreamily": {"_count": 1}, "picking": {"_count": 2}, "seizing": {"_count": 1}, "accidentally": {"_count": 1}, "deliberately": {"_count": 1}, "banging": {"_count": 1}, "imitating": {"_count": 1}, "moodily": {"_count": 2}, "shortly": {"_count": 3}, "to": {"_count": 5}, "tentatively": {"_count": 4}, "sweeping": {"_count": 1}, "copying": {"_count": 1}, "triumphantly": {"_count": 2}, "scathingly": {"_count": 3}, "thoughtfully": {"_count": 1}, "though": {"_count": 2}, "just": {"_count": 2}, "exasperated": {"_count": 1}, "moving": {"_count": 1}, "incredulously": {"_count": 5}, "brusquely": {"_count": 1}, "I": {"_count": 1}, "consolingly": {"_count": 1}, "chortling": {"_count": 1}, "once": {"_count": 2}, "fairly": {"_count": 1}, "wisely": {"_count": 2}, "taken": {"_count": 1}, "on": {"_count": 2}, "some": {"_count": 1}, "sourly": {"_count": 1}, "not": {"_count": 1}, "nastily": {"_count": 1}, "mulishly": {"_count": 1}, "indignantly": {"_count": 6}, "promptly": {"_count": 2}, "sending": {"_count": 1}, "you": {"_count": 3}, "breathing": {"_count": 1}, "because": {"_count": 1}, "dyou": {"_count": 1}, "shooting": {"_count": 1}, "fearfully": {"_count": 1}, "regretfully": {"_count": 1}, "yeah": {"_count": 1}, "casting": {"_count": 1}, "stowing": {"_count": 1}, "beside": {"_count": 1}, "smirking": {"_count": 1}, "comprehension": {"_count": 1}, "succinctly": {"_count": 1}, "half": {"_count": 1}, "suspiciously": {"_count": 1}, "talking": {"_count": 1}, "screwing": {"_count": 1}, "thrusting": {"_count": 1}, "dipping": {"_count": 1}, "plainly": {"_count": 1}, "skeptically": {"_count": 1}, "shiftily": {"_count": 1}, "Harry": {"_count": 1}, "stonyfaced": {"_count": 1}, "sinking": {"_count": 2}, "holding": {"_count": 3}, "what": {"_count": 1}, "ladling": {"_count": 1}, "sympathetically": {"_count": 1}, "grimly": {"_count": 2}, "yawning": {"_count": 2}, "louder": {"_count": 1}, "looked": {"_count": 1}, "accusingly": {"_count": 1}, "rather": {"_count": 3}, "McGonagall": {"_count": 1}, "following": {"_count": 1}, "dragging": {"_count": 1}, "appalled": {"_count": 1}, "testily": {"_count": 1}, "very": {"_count": 3}, "youre": {"_count": 1}, "hoisting": {"_count": 2}, "uncomprehendingly": {"_count": 1}, "warningly": {"_count": 2}, "strolling": {"_count": 1}, "also": {"_count": 1}, "startled": {"_count": 1}, "gazing": {"_count": 1}, "glancing": {"_count": 2}, "theres": {"_count": 2}, "indifferently": {"_count": 2}, "hitting": {"_count": 1}, "firmly": {"_count": 3}, "sternly": {"_count": 2}, "lazily": {"_count": 1}, "rounding": {"_count": 1}, "heatedly": {"_count": 1}, "pushing": {"_count": 4}, "airily": {"_count": 1}, "barely": {"_count": 1}, "appearing": {"_count": 1}, "giggling": {"_count": 1}, "through": {"_count": 1}, "forcefully": {"_count": 1}, "anxiously": {"_count": 1}, "punching": {"_count": 1}, "striding": {"_count": 1}, "examining": {"_count": 2}, "appreciatively": {"_count": 2}, "stopping": {"_count": 1}, "longingly": {"_count": 1}, "between": {"_count": 1}, "shes": {"_count": 2}, "swallowing": {"_count": 1}, "inconsequentially": {"_count": 1}, "upending": {"_count": 1}, "hesitantly": {"_count": 1}, "adding": {"_count": 1}, "glumly": {"_count": 2}, "let": {"_count": 1}, "roaring": {"_count": 1}, "permitting": {"_count": 1}, "confidently": {"_count": 1}, "drowsily": {"_count": 1}, "apologetically": {"_count": 1}, "earnestly": {"_count": 1}, "before": {"_count": 2}, "relaxing": {"_count": 1}, "reminiscently": {"_count": 1}, "grudgingly": {"_count": 1}, "returning": {"_count": 1}, "robustly": {"_count": 1}, "bleakly": {"_count": 1}, "patting": {"_count": 1}, "giving": {"_count": 1}, "climbing": {"_count": 1}, "clearly": {"_count": 1}, "itd": {"_count": 1}, "why": {"_count": 1}, "pointedly": {"_count": 1}, "jumping": {"_count": 1}, "mopping": {"_count": 1}, "approvingly": {"_count": 1}, "admiringly": {"_count": 1}, "kindly": {"_count": 1}, "clicking": {"_count": 1}, "shrewdly": {"_count": 1}, "Voldemorts": {"_count": 1}, "fondly": {"_count": 1}, "emerging": {"_count": 2}, "no": {"_count": 1}, "searching": {"_count": 1}, "one": {"_count": 1}, "backing": {"_count": 1}, "illustrating": {"_count": 1}, "sycophantically": {"_count": 1}, "under": {"_count": 2}, "awkwardly": {"_count": 1}, "urgently": {"_count": 1}, "three": {"_count": 1}, "about": {"_count": 1}, "wincing": {"_count": 1}, "seriously": {"_count": 1}, "harshly": {"_count": 1}, "squaring": {"_count": 1}}, "their": {"_count": 2, "mother": {"_count": 2}}, "something": {"_count": 16, "we": {"_count": 1}, "about": {"_count": 6}, "really": {"_count": 1}, "apologetic": {"_count": 1}, "funny": {"_count": 1}, "terrible": {"_count": 1}, "rude": {"_count": 1}, "like": {"_count": 2}, "highly": {"_count": 1}, "very": {"_count": 1}}, "Percy": {"_count": 56, "the": {"_count": 1}, "Weasley": {"_count": 1}, "airily": {"_count": 1}, "frowning": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "thickly": {"_count": 1}, "briskly": {"_count": 1}, "fiercely": {"_count": 1}, "his": {"_count": 1}, "sternly": {"_count": 2}, "drawing": {"_count": 1}, "loudly": {"_count": 2}, "at": {"_count": 2}, "pompously": {"_count": 2}, "loftily": {"_count": 1}, "curiously": {"_count": 1}, "in": {"_count": 2}, "rounding": {"_count": 1}, "smoothing": {"_count": 1}, "": {"_count": 7}, "heartily": {"_count": 1}, "looking": {"_count": 2}, "hurrying": {"_count": 1}, "puffing": {"_count": 1}, "smugly": {"_count": 1}, "peevishly": {"_count": 1}, "dismissively": {"_count": 1}, "sanctimoniously": {"_count": 1}, "going": {"_count": 1}, "suddenly": {"_count": 1}, "breathlessly": {"_count": 1}, "stiffly": {"_count": 1}, "sounding": {"_count": 1}, "furiously": {"_count": 1}, "importantly": {"_count": 2}, "swiftly": {"_count": 1}, "hotly": {"_count": 1}, "ought": {"_count": 1}, "eagerly": {"_count": 1}, "scanning": {"_count": 1}, "mopping": {"_count": 1}, "shaking": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "name": {"_count": 1}}, "Anything": {"_count": 3, "off": {"_count": 1}, "worrying": {"_count": 1}, "": {"_count": 1}}, "She": {"_count": 2, "always": {"_count": 1}, "leapt": {"_count": 1}}, "but": {"_count": 16, "have": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 4}, "Dumbledore": {"_count": 1}, "too": {"_count": 1}, "whatever": {"_count": 1}, "Sirius": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "its": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}}, "all": {"_count": 4, "this": {"_count": 1}, "along": {"_count": 3}}, "Hermione": {"_count": 1275, "": {"_count": 274}, "in": {"_count": 72}, "at": {"_count": 15}, "when": {"_count": 4}, "suddenly": {"_count": 11}, "thoughtfully": {"_count": 5}, "how": {"_count": 4}, "but": {"_count": 10}, "faintly": {"_count": 4}, "timidly": {"_count": 4}, "as": {"_count": 22}, "rather": {"_count": 5}, "briskly": {"_count": 8}, "grimly": {"_count": 10}, "miserably": {"_count": 4}, "and": {"_count": 19}, "nervously": {"_count": 10}, "looking": {"_count": 62}, "sounding": {"_count": 12}, "impatiently": {"_count": 9}, "prodding": {"_count": 3}, "immobilizing": {"_count": 1}, "sharply": {"_count": 18}, "anxiously": {"_count": 16}, "halfway": {"_count": 1}, "keenly": {"_count": 1}, "stopping": {"_count": 1}, "knowledgeably": {"_count": 1}, "glaring": {"_count": 1}, "nudging": {"_count": 1}, "sadly": {"_count": 2}, "to": {"_count": 4}, "biting": {"_count": 2}, "wonderingly": {"_count": 2}, "standing": {"_count": 4}, "quickly": {"_count": 16}, "skeptically": {"_count": 3}, "cautiously": {"_count": 2}, "slowly": {"_count": 7}, "coldly": {"_count": 6}, "waving": {"_count": 1}, "that": {"_count": 2}, "eagerly": {"_count": 6}, "shrilly": {"_count": 7}, "excitedly": {"_count": 6}, "darkly": {"_count": 3}, "speaking": {"_count": 3}, "exasperated": {"_count": 2}, "throwing": {"_count": 3}, "shirting": {"_count": 1}, "matteroffactly": {"_count": 2}, "brightly": {"_count": 7}, "hastily": {"_count": 5}, "enthusiastically": {"_count": 2}, "tapping": {"_count": 1}, "shocked": {"_count": 2}, "or": {"_count": 1}, "earnestly": {"_count": 9}, "composedly": {"_count": 2}, "glowing": {"_count": 1}, "slapping": {"_count": 1}, "interestedly": {"_count": 1}, "shrewdly": {"_count": 1}, "angrily": {"_count": 12}, "checking": {"_count": 2}, "watching": {"_count": 3}, "softly": {"_count": 1}, "who": {"_count": 20}, "shortly": {"_count": 2}, "peering": {"_count": 2}, "pushing": {"_count": 1}, "calmly": {"_count": 4}, "airily": {"_count": 2}, "coolly": {"_count": 6}, "firmly": {"_count": 11}, "putting": {"_count": 2}, "please": {"_count": 1}, "joining": {"_count": 1}, "breathlessly": {"_count": 11}, "vaguely": {"_count": 7}, "approvingly": {"_count": 1}, "her": {"_count": 18}, "Im": {"_count": 2}, "turning": {"_count": 3}, "crossly": {"_count": 2}, "seemingly": {"_count": 1}, "whose": {"_count": 2}, "pensively": {"_count": 1}, "hesitantly": {"_count": 2}, "exchanging": {"_count": 1}, "aghast": {"_count": 1}, "sitting": {"_count": 2}, "with": {"_count": 21}, "haughtily": {"_count": 2}, "moving": {"_count": 3}, "now": {"_count": 13}, "wiping": {"_count": 2}, "waking": {"_count": 1}, "brushing": {"_count": 1}, "loudly": {"_count": 1}, "still": {"_count": 7}, "getting": {"_count": 3}, "quietly": {"_count": 17}, "hurrying": {"_count": 2}, "tensely": {"_count": 2}, "giving": {"_count": 2}, "severely": {"_count": 3}, "triumphantly": {"_count": 1}, "from": {"_count": 3}, "pointedly": {"_count": 1}, "kindly": {"_count": 4}, "defiantly": {"_count": 3}, "fervently": {"_count": 2}, "indignantly": {"_count": 5}, "frowning": {"_count": 9}, "after": {"_count": 2}, "shakily": {"_count": 4}, "the": {"_count": 4}, "furiously": {"_count": 5}, "before": {"_count": 4}, "reasonably": {"_count": 1}, "sniffily": {"_count": 1}, "raising": {"_count": 1}, "shrugging": {"_count": 1}, "testily": {"_count": 3}, "reproachfully": {"_count": 1}, "breathing": {"_count": 1}, "I": {"_count": 4}, "well": {"_count": 2}, "thickly": {"_count": 1}, "curtly": {"_count": 2}, "hotly": {"_count": 5}, "happily": {"_count": 6}, "uncertainly": {"_count": 1}, "defensively": {"_count": 3}, "tartly": {"_count": 3}, "we": {"_count": 2}, "warningly": {"_count": 1}, "shooting": {"_count": 1}, "awkwardly": {"_count": 1}, "patiently": {"_count": 3}, "sternly": {"_count": 2}, "very": {"_count": 4}, "grumpily": {"_count": 1}, "smiling": {"_count": 2}, "irritably": {"_count": 8}, "delightedly": {"_count": 1}, "desperately": {"_count": 8}, "blankly": {"_count": 1}, "he": {"_count": 2}, "leading": {"_count": 1}, "though": {"_count": 6}, "loftily": {"_count": 2}, "scathingly": {"_count": 4}, "you": {"_count": 1}, "fanning": {"_count": 1}, "sipping": {"_count": 1}, "sarcastically": {"_count": 1}, "taking": {"_count": 4}, "cmon": {"_count": 1}, "shaking": {"_count": 3}, "ignoring": {"_count": 2}, "sending": {"_count": 1}, "seriously": {"_count": 3}, "waspishly": {"_count": 2}, "ten": {"_count": 1}, "an": {"_count": 2}, "stubbornly": {"_count": 3}, "tears": {"_count": 1}, "rubbing": {"_count": 1}, "Ive": {"_count": 2}, "beaming": {"_count": 1}, "reprovingly": {"_count": 1}, "heatedly": {"_count": 1}, "tentatively": {"_count": 8}, "pleadingly": {"_count": 1}, "hopefully": {"_count": 2}, "wisely": {"_count": 1}, "simply": {"_count": 1}, "blushing": {"_count": 1}, "distractedly": {"_count": 2}, "viciously": {"_count": 2}, "relieving": {"_count": 1}, "uneasily": {"_count": 1}, "ominously": {"_count": 1}, "eyeing": {"_count": 1}, "consolingly": {"_count": 2}, "bluntly": {"_count": 1}, "wearily": {"_count": 3}, "promptly": {"_count": 2}, "casting": {"_count": 1}, "accusingly": {"_count": 1}, "jumping": {"_count": 2}, "doesnt": {"_count": 1}, "gently": {"_count": 1}, "returning": {"_count": 1}, "coming": {"_count": 2}, "slightly": {"_count": 2}, "soothingly": {"_count": 2}, "intervening": {"_count": 1}, "is": {"_count": 1}, "under": {"_count": 2}, "itll": {"_count": 1}, "also": {"_count": 1}, "look": {"_count": 1}, "through": {"_count": 1}, "disparagingly": {"_count": 1}, "seizing": {"_count": 1}, "twisting": {"_count": 2}, "staring": {"_count": 1}, "unperturbed": {"_count": 1}, "bossily": {"_count": 1}, "stung": {"_count": 1}, "trying": {"_count": 1}, "heartily": {"_count": 1}, "apologetically": {"_count": 1}, "urgently": {"_count": 2}, "a": {"_count": 3}, "determinedly": {"_count": 1}, "absently": {"_count": 2}, "nastily": {"_count": 2}, "distantly": {"_count": 1}, "yawning": {"_count": 1}, "although": {"_count": 1}, "laying": {"_count": 1}, "fairly": {"_count": 1}, "sympathetically": {"_count": 1}, "distracted": {"_count": 1}, "encouragingly": {"_count": 1}, "bitterly": {"_count": 3}, "swinging": {"_count": 1}, "indifferently": {"_count": 2}, "sweetly": {"_count": 2}, "pleasantly": {"_count": 1}, "serenely": {"_count": 1}, "absentmindedly": {"_count": 1}, "closing": {"_count": 1}, "straightening": {"_count": 1}, "weakly": {"_count": 2}, "allowing": {"_count": 1}, "perplexed": {"_count": 1}, "flopping": {"_count": 1}, "stretching": {"_count": 2}, "snappishly": {"_count": 1}, "fiercely": {"_count": 1}, "sniffing": {"_count": 1}, "pointing": {"_count": 2}, "gripping": {"_count": 1}, "quaking": {"_count": 1}, "hopelessly": {"_count": 1}, "more": {"_count": 2}, "decisively": {"_count": 1}, "marking": {"_count": 1}, "again": {"_count": 3}, "folding": {"_count": 1}, "dropping": {"_count": 1}, "flapping": {"_count": 1}, "walking": {"_count": 1}, "which": {"_count": 1}, "perking": {"_count": 1}, "delighted": {"_count": 1}, "tremulously": {"_count": 1}, "helplessly": {"_count": 1}, "despairingly": {"_count": 1}, "actually": {"_count": 1}, "holding": {"_count": 2}, "continuing": {"_count": 1}, "hurriedly": {"_count": 1}, "blinking": {"_count": 1}, "while": {"_count": 2}, "scornfully": {"_count": 1}, "succinctly": {"_count": 1}, "dispassionately": {"_count": 1}, "neither": {"_count": 1}, "rolling": {"_count": 1}, "tersely": {"_count": 1}, "dismissively": {"_count": 1}, "pulling": {"_count": 2}, "some": {"_count": 1}, "causing": {"_count": 1}, "laughing": {"_count": 1}, "flatly": {"_count": 1}, "clearly": {"_count": 1}, "red": {"_count": 1}, "predictably": {"_count": 1}, "gazing": {"_count": 1}, "mopping": {"_count": 1}, "slamming": {"_count": 1}, "tossing": {"_count": 1}, "The": {"_count": 1}, "giggling": {"_count": 1}, "swiveling": {"_count": 1}, "managing": {"_count": 1}, "otherwise": {"_count": 1}, "launching": {"_count": 1}, "talking": {"_count": 1}, "aggressively": {"_count": 1}, "alarmed": {"_count": 1}, "clutching": {"_count": 2}, "couldnt": {"_count": 1}, "this": {"_count": 1}, "forcing": {"_count": 1}, "indignant": {"_count": 1}, "lets": {"_count": 1}, "uncomfortably": {"_count": 1}, "disconcerted": {"_count": 1}, "centuries": {"_count": 1}, "hushing": {"_count": 1}, "tilting": {"_count": 1}, "they": {"_count": 1}, "finally": {"_count": 1}, "outraged": {"_count": 1}, "it": {"_count": 1}, "wildly": {"_count": 1}, "half": {"_count": 1}}, "coolly": {"_count": 7, "": {"_count": 5}, "rummaging": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 35, "face": {"_count": 1}, "voice": {"_count": 7}, "father": {"_count": 2}, "heart": {"_count": 1}, "round": {"_count": 2}, "quiet": {"_count": 1}, "mirror": {"_count": 2}, "bit": {"_count": 1}, "eyes": {"_count": 7}, "magical": {"_count": 1}, "throat": {"_count": 1}, "shirt": {"_count": 1}, "hands": {"_count": 1}, "grandmother": {"_count": 1}, "confession": {"_count": 1}, "large": {"_count": 1}, "wand": {"_count": 1}, "sister": {"_count": 1}, "name": {"_count": 1}, "red": {"_count": 1}}, "it": {"_count": 79, "hurts": {"_count": 1}, "": {"_count": 11}, "was": {"_count": 20}, "that": {"_count": 2}, "would": {"_count": 1}, "yourself": {"_count": 1}, "ages": {"_count": 1}, "his": {"_count": 1}, "straightaway": {"_count": 1}, "damaged": {"_count": 1}, "is": {"_count": 1}, "last": {"_count": 1}, "Good": {"_count": 1}, "happened": {"_count": 1}, "wouldnt": {"_count": 1}, "before": {"_count": 1}, "interfered": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 2}, "aloud": {"_count": 1}, "wasnt": {"_count": 2}, "Harry": {"_count": 1}, "seemed": {"_count": 1}, "many": {"_count": 1}, "didnt": {"_count": 1}, "as": {"_count": 2}, "a": {"_count": 4}, "quite": {"_count": 1}, "right": {"_count": 1}, "had": {"_count": 3}, "again": {"_count": 1}, "too": {"_count": 1}, "Hermione": {"_count": 1}, "Harrys": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 1}, "unable": {"_count": 1}}, "irritably": {"_count": 4, "": {"_count": 2}, "thrusting": {"_count": 1}, "after": {"_count": 1}}, "So": {"_count": 7, "new": {"_count": 1}, "what": {"_count": 3}, "Harry": {"_count": 1}, "": {"_count": 2}}, "Nearly": {"_count": 22, "Headless": {"_count": 22}}, "Seamus": {"_count": 21, "": {"_count": 2}, "Finnigan": {"_count": 8}, "who": {"_count": 2}, "grinning": {"_count": 1}, "contemptuously": {"_count": 1}, "causing": {"_count": 1}, "spotting": {"_count": 1}, "again": {"_count": 1}, "heatedly": {"_count": 1}, "in": {"_count": 1}, "Ive": {"_count": 1}, "and": {"_count": 1}}, "Neville": {"_count": 85, "but": {"_count": 2}, "showing": {"_count": 1}, "scrambling": {"_count": 1}, "shakily": {"_count": 1}, "youll": {"_count": 1}, "": {"_count": 20}, "raising": {"_count": 1}, "awestruck": {"_count": 1}, "in": {"_count": 4}, "Longbottom": {"_count": 1}, "tremulously": {"_count": 1}, "did": {"_count": 1}, "nervously": {"_count": 2}, "uncertainly": {"_count": 1}, "brightly": {"_count": 1}, "his": {"_count": 2}, "enviously": {"_count": 1}, "Im": {"_count": 1}, "who": {"_count": 2}, "hurriedly": {"_count": 1}, "I": {"_count": 1}, "beaming": {"_count": 3}, "proudly": {"_count": 1}, "again": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "gleefully": {"_count": 1}, "looking": {"_count": 1}, "very": {"_count": 1}, "nodding": {"_count": 1}, "miserably": {"_count": 1}, "quietly": {"_count": 2}, "still": {"_count": 1}, "simply": {"_count": 1}, "uncomfortably": {"_count": 1}, "suddenly": {"_count": 1}, "horrified": {"_count": 1}, "fiercely": {"_count": 1}, "crawling": {"_count": 1}, "mopping": {"_count": 1}, "firmly": {"_count": 2}, "thickly": {"_count": 1}, "trying": {"_count": 1}, "was": {"_count": 1}, "everythings": {"_count": 1}, "indicating": {"_count": 1}, "emerging": {"_count": 1}, "turning": {"_count": 1}, "the": {"_count": 1}, "panting": {"_count": 1}, "happily": {"_count": 1}, "modestly": {"_count": 1}, "holding": {"_count": 1}, "angrily": {"_count": 1}, "loudly": {"_count": 1}}, "wiping": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "with": {"_count": 32, "an": {"_count": 7}, "a": {"_count": 13}, "relish": {"_count": 2}, "his": {"_count": 4}, "some": {"_count": 1}, "her": {"_count": 1}, "another": {"_count": 1}, "no": {"_count": 1}, "bitter": {"_count": 1}, "as": {"_count": 1}}, "was": {"_count": 6, "to": {"_count": 1}, "a": {"_count": 1}, "indecent": {"_count": 1}, "\u2018How": {"_count": 1}, "true": {"_count": 2}}, "Snape": {"_count": 213, "suddenly": {"_count": 2}, "": {"_count": 58}, "silkily": {"_count": 4}, "his": {"_count": 16}, "taking": {"_count": 1}, "Professor": {"_count": 1}, "coldly": {"_count": 12}, "from": {"_count": 1}, "a": {"_count": 3}, "icily": {"_count": 1}, "smiling": {"_count": 1}, "gliding": {"_count": 1}, "with": {"_count": 4}, "lazily": {"_count": 3}, "though": {"_count": 2}, "without": {"_count": 3}, "in": {"_count": 10}, "giving": {"_count": 1}, "ladling": {"_count": 1}, "which": {"_count": 2}, "but": {"_count": 1}, "who": {"_count": 2}, "coolly": {"_count": 2}, "coming": {"_count": 1}, "softly": {"_count": 11}, "again": {"_count": 1}, "throwing": {"_count": 1}, "looking": {"_count": 2}, "curtly": {"_count": 3}, "through": {"_count": 1}, "quietly": {"_count": 4}, "viciously": {"_count": 1}, "harshly": {"_count": 1}, "sweeping": {"_count": 1}, "jerkily": {"_count": 1}, "maliciously": {"_count": 1}, "the": {"_count": 2}, "whose": {"_count": 1}, "smoothly": {"_count": 4}, "rigid": {"_count": 1}, "repressively": {"_count": 1}, "sounding": {"_count": 1}, "contemptuously": {"_count": 1}, "raising": {"_count": 2}, "dangerously": {"_count": 1}, "s": {"_count": 1}, "sharply": {"_count": 1}, "savagely": {"_count": 1}, "slowly": {"_count": 1}, "lowering": {"_count": 1}, "we": {"_count": 1}, "gripping": {"_count": 1}, "shaking": {"_count": 1}, "showing": {"_count": 1}, "striding": {"_count": 1}, "sneering": {"_count": 1}, "calmly": {"_count": 1}, "although": {"_count": 1}, "betraying": {"_count": 1}, "impatient": {"_count": 1}, "at": {"_count": 1}, "still": {"_count": 1}, "flatly": {"_count": 1}, "standing": {"_count": 1}, "closing": {"_count": 1}, "are": {"_count": 1}, "dismissively": {"_count": 1}, "after": {"_count": 1}, "waving": {"_count": 1}, "pointing": {"_count": 1}, "smirking": {"_count": 1}, "very": {"_count": 1}, "when": {"_count": 1}, "as": {"_count": 2}, "that": {"_count": 1}, "blankly": {"_count": 1}, "to": {"_count": 1}, "hot": {"_count": 1}, "and": {"_count": 1}, "encouraged": {"_count": 1}, "furiously": {"_count": 1}, "roughly": {"_count": 1}}, "And": {"_count": 7, "a": {"_count": 1}, "the": {"_count": 1}, "tonight": {"_count": 1}, "finally": {"_count": 1}, "those": {"_count": 1}, "it": {"_count": 1}, "where": {"_count": 1}}, "only": {"_count": 2, "too": {"_count": 1}, "prats": {"_count": 1}}, "Madam": {"_count": 51, "Hooch": {"_count": 6}, "Pomfrey": {"_count": 24}, "Rosmerta": {"_count": 7}, "Bones": {"_count": 9}, "Marchbanks": {"_count": 1}, "Puddifoot": {"_count": 1}, "Malkin": {"_count": 3}}, "Pansy": {"_count": 6, "Parkinson": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}, "watching": {"_count": 1}, "indignantly": {"_count": 1}}, "Malfoy": {"_count": 113, "darting": {"_count": 1}, "trying": {"_count": 1}, "": {"_count": 20}, "quickly": {"_count": 3}, "loudly": {"_count": 7}, "unable": {"_count": 1}, "looking": {"_count": 3}, "who": {"_count": 4}, "smugly": {"_count": 1}, "smoothly": {"_count": 1}, "not": {"_count": 1}, "to": {"_count": 1}, "impatiently": {"_count": 1}, "scornfully": {"_count": 1}, "snickering": {"_count": 1}, "slowly": {"_count": 3}, "petulantly": {"_count": 1}, "waving": {"_count": 1}, "lazily": {"_count": 1}, "bowing": {"_count": 1}, "smirking": {"_count": 2}, "in": {"_count": 6}, "taking": {"_count": 1}, "putting": {"_count": 1}, "his": {"_count": 5}, "lowering": {"_count": 1}, "eyes": {"_count": 1}, "wiping": {"_count": 1}, "grinning": {"_count": 1}, "pointing": {"_count": 3}, "sarcastically": {"_count": 1}, "brandishing": {"_count": 1}, "flipping": {"_count": 1}, "resentfully": {"_count": 1}, "holding": {"_count": 1}, "behind": {"_count": 1}, "softly": {"_count": 3}, "smoothing": {"_count": 1}, "raising": {"_count": 1}, "sneering": {"_count": 1}, "leering": {"_count": 1}, "the": {"_count": 1}, "eagerly": {"_count": 1}, "yet": {"_count": 1}, "coolly": {"_count": 1}, "sneeringly": {"_count": 1}, "sounding": {"_count": 1}, "advancing": {"_count": 1}, "quietly": {"_count": 2}, "and": {"_count": 5}, "what": {"_count": 1}, "with": {"_count": 3}, "clearly": {"_count": 1}, "angrily": {"_count": 1}, "at": {"_count": 1}, "more": {"_count": 1}, "vehemently": {"_count": 1}, "as": {"_count": 1}}, "Wood": {"_count": 35, "now": {"_count": 1}, "his": {"_count": 2}, "": {"_count": 11}, "curiously": {"_count": 1}, "is": {"_count": 1}, "carefully": {"_count": 1}, "happily": {"_count": 1}, "heartily": {"_count": 1}, "briskly": {"_count": 1}, "at": {"_count": 1}, "frowning": {"_count": 2}, "testily": {"_count": 1}, "positively": {"_count": 1}, "distracted": {"_count": 1}, "as": {"_count": 2}, "anxiously": {"_count": 1}, "enthusiastically": {"_count": 1}, "grinding": {"_count": 1}, "bitterly": {"_count": 1}, "who": {"_count": 1}, "but": {"_count": 1}, "tersely": {"_count": 1}}, "George": {"_count": 182, "in": {"_count": 6}, "": {"_count": 74}, "from": {"_count": 1}, "turning": {"_count": 1}, "frowning": {"_count": 1}, "peering": {"_count": 1}, "seizing": {"_count": 1}, "with": {"_count": 3}, "after": {"_count": 1}, "who": {"_count": 1}, "pointing": {"_count": 2}, "streaking": {"_count": 1}, "trying": {"_count": 2}, "angrily": {"_count": 1}, "chortling": {"_count": 1}, "sniggering": {"_count": 1}, "pushing": {"_count": 1}, "looking": {"_count": 6}, "seriously": {"_count": 2}, "passing": {"_count": 1}, "bracingly": {"_count": 1}, "patting": {"_count": 1}, "briskly": {"_count": 1}, "winking": {"_count": 2}, "fighting": {"_count": 1}, "whose": {"_count": 1}, "failing": {"_count": 1}, "when": {"_count": 1}, "taking": {"_count": 1}, "thoughtfully": {"_count": 1}, "impatiently": {"_count": 1}, "Weasley": {"_count": 1}, "a": {"_count": 1}, "sitting": {"_count": 2}, "impressively": {"_count": 1}, "bitterly": {"_count": 1}, "indicating": {"_count": 1}, "shortly": {"_count": 1}, "rubbing": {"_count": 1}, "lightly": {"_count": 2}, "darkly": {"_count": 1}, "shrugging": {"_count": 1}, "gloomily": {"_count": 1}, "glowering": {"_count": 1}, "shaking": {"_count": 3}, "weakly": {"_count": 1}, "beaming": {"_count": 2}, "carefully": {"_count": 1}, "but": {"_count": 1}, "because": {"_count": 1}, "eagerly": {"_count": 1}, "and": {"_count": 2}, "indignantly": {"_count": 2}, "to": {"_count": 1}, "nodding": {"_count": 2}, "smirking": {"_count": 2}, "holding": {"_count": 2}, "helping": {"_count": 2}, "happily": {"_count": 1}, "brightly": {"_count": 1}, "kindly": {"_count": 1}, "horrified": {"_count": 1}, "hastily": {"_count": 2}, "promptly": {"_count": 2}, "he": {"_count": 1}, "wincing": {"_count": 1}, "hotly": {"_count": 1}, "quietly": {"_count": 1}, "fairly": {"_count": 1}, "stretching": {"_count": 1}, "mounting": {"_count": 1}, "catching": {"_count": 1}, "sternly": {"_count": 1}, "reappearing": {"_count": 1}, "what": {"_count": 1}, "waving": {"_count": 1}, "grimly": {"_count": 1}, "grinning": {"_count": 1}, "hoisting": {"_count": 1}, "craning": {"_count": 1}}, "Fred": {"_count": 252, "": {"_count": 75}, "Weasley": {"_count": 5}, "holding": {"_count": 2}, "throwing": {"_count": 1}, "and": {"_count": 6}, "but": {"_count": 4}, "finally": {"_count": 1}, "put": {"_count": 1}, "craning": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 7}, "in": {"_count": 8}, "eagerly": {"_count": 1}, "frowning": {"_count": 3}, "looking": {"_count": 9}, "winking": {"_count": 2}, "who": {"_count": 8}, "elbowing": {"_count": 1}, "with": {"_count": 9}, "impatiently": {"_count": 3}, "closing": {"_count": 1}, "smirking": {"_count": 1}, "tracing": {"_count": 1}, "solemnly": {"_count": 1}, "bracingly": {"_count": 2}, "unable": {"_count": 1}, "confidently": {"_count": 1}, "at": {"_count": 2}, "excitedly": {"_count": 1}, "brightly": {"_count": 2}, "indignantly": {"_count": 2}, "groggily": {"_count": 1}, "grumpily": {"_count": 1}, "grinning": {"_count": 6}, "dismissively": {"_count": 1}, "gleefully": {"_count": 1}, "grabbing": {"_count": 1}, "vaguely": {"_count": 1}, "quietly": {"_count": 2}, "keenly": {"_count": 1}, "stubbornly": {"_count": 1}, "shrewdly": {"_count": 1}, "airily": {"_count": 1}, "concealed": {"_count": 1}, "warningly": {"_count": 1}, "sarcastically": {"_count": 1}, "waving": {"_count": 1}, "promptly": {"_count": 1}, "to": {"_count": 1}, "Weasleys": {"_count": 1}, "matteroffactly": {"_count": 1}, "pulling": {"_count": 1}, "shaking": {"_count": 1}, "also": {"_count": 1}, "idly": {"_count": 1}, "grimly": {"_count": 1}, "hurrying": {"_count": 1}, "angrily": {"_count": 2}, "halfrising": {"_count": 1}, "dropping": {"_count": 1}, "very": {"_count": 1}, "eyeing": {"_count": 1}, "conversationally": {"_count": 1}, "snatching": {"_count": 1}, "slowly": {"_count": 1}, "sourly": {"_count": 1}, "an": {"_count": 1}, "pretending": {"_count": 1}, "delightedly": {"_count": 1}, "clapping": {"_count": 2}, "arriving": {"_count": 1}, "scanning": {"_count": 2}, "thickly": {"_count": 1}, "reminiscently": {"_count": 1}, "unconcernedly": {"_count": 1}, "happily": {"_count": 2}, "emerging": {"_count": 1}, "gloomily": {"_count": 2}, "dunking": {"_count": 1}, "reaching": {"_count": 1}, "handing": {"_count": 1}, "briskly": {"_count": 1}, "your": {"_count": 1}, "darkly": {"_count": 2}, "loudly": {"_count": 2}, "turning": {"_count": 1}, "heavily": {"_count": 1}, "moving": {"_count": 1}, "rolling": {"_count": 1}, "firmly": {"_count": 2}, "due": {"_count": 1}, "coolly": {"_count": 1}, "smiling": {"_count": 1}, "stretching": {"_count": 1}, "I": {"_count": 1}, "giving": {"_count": 1}, "pointing": {"_count": 1}, "proudly": {"_count": 1}, "examining": {"_count": 2}, "seriously": {"_count": 1}, "fairly": {"_count": 1}, "earnestly": {"_count": 1}, "unexpectedly": {"_count": 1}, "tugging": {"_count": 1}, "raising": {"_count": 1}}, "Peeves": {"_count": 7, "in": {"_count": 2}, "rising": {"_count": 1}, "his": {"_count": 1}, "slyly": {"_count": 1}, "with": {"_count": 1}, "pursuing": {"_count": 1}}, "DO": {"_count": 1, "NOT": {"_count": 1}}, "throwing": {"_count": 4, "it": {"_count": 1}, "a": {"_count": 1}, "one": {"_count": 1}, "him": {"_count": 1}}, "its": {"_count": 7, "a": {"_count": 2}, "harder": {"_count": 1}, "illegal": {"_count": 1}, "in": {"_count": 1}, "not": {"_count": 1}, "oddson": {"_count": 1}}, "\u2018s": {"_count": 1, "instead": {"_count": 1}}, "Wingardium": {"_count": 2, "LeviosaV": {"_count": 1}, "Leviosal": {"_count": 1}}, "together": {"_count": 6, "": {"_count": 1}, "but": {"_count": 1}, "Why": {"_count": 1}, "under": {"_count": 1}, "Accio": {"_count": 1}, "Wow": {"_count": 1}}, "desperately": {"_count": 9, "to": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 1}, "without": {"_count": 1}, "leaning": {"_count": 1}}, "Thanks": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "Potter": {"_count": 4, "for": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "Chaser": {"_count": 1, "Angelina": {"_count": 1}}, "once": {"_count": 3, "they": {"_count": 1}, "Ireland": {"_count": 1}, "it": {"_count": 1}}, "Dean": {"_count": 28, "furiously": {"_count": 1}, "": {"_count": 10}, "Thomas": {"_count": 8}, "waving": {"_count": 1}, "angrily": {"_count": 1}, "who": {"_count": 1}, "shrugging": {"_count": 1}, "staring": {"_count": 1}, "sounding": {"_count": 1}, "excitedly": {"_count": 1}, "lets": {"_count": 1}, "taking": {"_count": 1}}, "Draco": {"_count": 7, "Malfoy": {"_count": 4}, "": {"_count": 2}, "again": {"_count": 1}}, "What": {"_count": 4, "a": {"_count": 1}, "do": {"_count": 1}, "has": {"_count": 1}, "if": {"_count": 1}}, "nothing": {"_count": 65, "": {"_count": 30}, "for": {"_count": 1}, "said": {"_count": 1}, "about": {"_count": 3}, "Harry": {"_count": 1}, "but": {"_count": 12}, "though": {"_count": 1}, "he": {"_count": 5}, "at": {"_count": 4}, "to": {"_count": 1}, "Narcissa": {"_count": 1}, "keeping": {"_count": 1}, "more": {"_count": 1}, "except": {"_count": 1}, "waiting": {"_count": 1}, "He": {"_count": 1}}, "eagerly": {"_count": 6, "": {"_count": 3}, "pausing": {"_count": 1}, "jingling": {"_count": 1}, "tearing": {"_count": 1}}, "hed": {"_count": 20, "been": {"_count": 4}, "buy": {"_count": 1}, "had": {"_count": 1}, "train": {"_count": 1}, "have": {"_count": 1}, "like": {"_count": 2}, "seen": {"_count": 1}, "be": {"_count": 2}, "gone": {"_count": 1}, "promised": {"_count": 1}, "come": {"_count": 3}, "bring": {"_count": 1}, "expect": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "dashing": {"_count": 1, "to": {"_count": 1}}, "You": {"_count": 19, "tell": {"_count": 1}, "have": {"_count": 1}, "dont": {"_count": 1}, "must": {"_count": 1}, "you": {"_count": 1}, "fly": {"_count": 1}, "are": {"_count": 3}, "look": {"_count": 1}, "remember": {"_count": 1}, "KnowWho": {"_count": 1}, "did": {"_count": 1}, "may": {"_count": 1}, "will": {"_count": 1}, "know": {"_count": 2}, "shouldnt": {"_count": 1}, "tried": {"_count": 1}}, "showing": {"_count": 1, "them": {"_count": 1}}, "you": {"_count": 23, "had": {"_count": 2}, "couldnt": {"_count": 2}, "were": {"_count": 9}, "didnt": {"_count": 2}, "cant": {"_count": 1}, "weren": {"_count": 1}, "will": {"_count": 1}, "got": {"_count": 1}, "do": {"_count": 1}, "wanted": {"_count": 1}, "was": {"_count": 1}, "werent": {"_count": 1}}, "goodbye": {"_count": 10, "to": {"_count": 8}, "Siriuss": {"_count": 1}, "and": {"_count": 1}}, "Filch": {"_count": 13, "lighting": {"_count": 1}, "his": {"_count": 2}, "coldly": {"_count": 1}, "for": {"_count": 1}, "plaintively": {"_count": 1}, "at": {"_count": 1}, "clutching": {"_count": 1}, "taking": {"_count": 1}, "in": {"_count": 1}, "chuckling": {"_count": 1}, "bowing": {"_count": 1}, "a": {"_count": 1}}, "leering": {"_count": 3, "at": {"_count": 2}, "down": {"_count": 1}}, "Ronan": {"_count": 2, "": {"_count": 2}}, "simply": {"_count": 4, "": {"_count": 3}, "rolling": {"_count": 1}}, "Firenze": {"_count": 14, "": {"_count": 5}, "when": {"_count": 1}, "but": {"_count": 1}, "quietly": {"_count": 1}, "in": {"_count": 1}, "calmly": {"_count": 1}, "as": {"_count": 1}, "simply": {"_count": 1}, "nodding": {"_count": 1}, "and": {"_count": 1}}, "this": {"_count": 11, "made": {"_count": 1}, "morning": {"_count": 1}, "very": {"_count": 1}, "and": {"_count": 2}, "Impediment": {"_count": 1}, "he": {"_count": 1}, "group": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}}, "smiling": {"_count": 12, "": {"_count": 3}, "as": {"_count": 1}, "at": {"_count": 2}, "slightly": {"_count": 1}, "having": {"_count": 1}, "sweetly": {"_count": 1}, "still": {"_count": 1}, "broadly": {"_count": 1}, "for": {"_count": 1}}, "what": {"_count": 5, "Id": {"_count": 1}, "would": {"_count": 1}, "we": {"_count": 1}, "a": {"_count": 1}, "will": {"_count": 1}}, "he": {"_count": 41, "had": {"_count": 3}, "hates": {"_count": 1}, "was": {"_count": 13}, "couldnt": {"_count": 2}, "hadnt": {"_count": 1}, "missed": {"_count": 1}, "just": {"_count": 2}, "wasnt": {"_count": 1}, "supposed": {"_count": 1}, "would": {"_count": 3}, "wanted": {"_count": 3}, "said": {"_count": 1}, "didnt": {"_count": 3}, "made": {"_count": 1}, "distinguished": {"_count": 1}, "now": {"_count": 1}, "stepped": {"_count": 1}, "feared": {"_count": 1}, "might": {"_count": 1}}, "coldly": {"_count": 15, "": {"_count": 10}, "to": {"_count": 2}, "looking": {"_count": 1}, "you": {"_count": 1}, "You": {"_count": 1}}, "shortly": {"_count": 13, "": {"_count": 9}, "help": {"_count": 1}, "when": {"_count": 1}, "taking": {"_count": 1}, "tugging": {"_count": 1}}, "smoothly": {"_count": 1, "": {"_count": 1}}, "At": {"_count": 1, "least": {"_count": 1}}, "hurrying": {"_count": 4, "to": {"_count": 2}, "along": {"_count": 1}, "forward": {"_count": 1}}, "suddenly": {"_count": 15, "as": {"_count": 1}, "": {"_count": 5}, "Harry": {"_count": 1}, "to": {"_count": 1}, "putting": {"_count": 1}, "his": {"_count": 1}, "checking": {"_count": 1}, "looking": {"_count": 2}, "whether": {"_count": 1}, "freezing": {"_count": 1}}, "greasily": {"_count": 1, "": {"_count": 1}}, "anxiously": {"_count": 6, "": {"_count": 1}, "as": {"_count": 2}, "pushing": {"_count": 1}, "but": {"_count": 1}, "when": {"_count": 1}}, "If": {"_count": 2, "anything": {"_count": 1}, "you": {"_count": 1}}, "Now": {"_count": 4, "dont": {"_count": 1}, "as": {"_count": 1}, "Dumbledores": {"_count": 1}, "dear": {"_count": 1}}, "calmly": {"_count": 11, "": {"_count": 6}, "as": {"_count": 2}, "Theres": {"_count": 1}, "Spread": {"_count": 1}, "continuing": {"_count": 1}}, "Quirrell": {"_count": 5, "coolly": {"_count": 1}, "idly": {"_count": 1}, "casually": {"_count": 1}, "quietly": {"_count": 1}, "impatiently": {"_count": 1}}, "Sir": {"_count": 3, "there": {"_count": 1}, "Patrick": {"_count": 1}, "Cadogan": {"_count": 1}}, "Alas": {"_count": 1, "": {"_count": 1}}, "\u2018Harrys": {"_count": 1, "gone": {"_count": 1}}, "firmly": {"_count": 13, "": {"_count": 7}, "snatching": {"_count": 1}, "rubbing": {"_count": 1}, "handing": {"_count": 1}, "again": {"_count": 1}, "Reparo": {"_count": 1}, "grabbing": {"_count": 1}}, "sniffily": {"_count": 1, "as": {"_count": 1}}, "That": {"_count": 4, "reminds": {"_count": 1}, "Harry": {"_count": 1}, "sounds": {"_count": 1}, "looks": {"_count": 1}}, "suspiciously": {"_count": 2, "": {"_count": 2}}, "hell": {"_count": 1, "chuck": {"_count": 1}}, "Who": {"_count": 3, "are": {"_count": 2}, "is": {"_count": 1}}, "Dobby": {"_count": 27, "earnestly": {"_count": 1}, "reverently": {"_count": 1}, "slyly": {"_count": 1}, "nodding": {"_count": 2}, "plucking": {"_count": 1}, "shocked": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 2}, "happily": {"_count": 2}, "grinning": {"_count": 1}, "delightedly": {"_count": 1}, "suddenly": {"_count": 1}, "looking": {"_count": 2}, "breathlessly": {"_count": 1}, "defiantly": {"_count": 1}, "quietly": {"_count": 1}, "angrily": {"_count": 1}, "seriously": {"_count": 1}, "tears": {"_count": 1}, "at": {"_count": 1}, "proudly": {"_count": 1}, "": {"_count": 1}}, "Whatever": {"_count": 2, "youve": {"_count": 1}, "Master": {"_count": 1}}, "hoarsely": {"_count": 14, "that": {"_count": 1}, "": {"_count": 7}, "a": {"_count": 1}, "to": {"_count": 1}, "after": {"_count": 1}, "shuddering": {"_count": 1}, "waving": {"_count": 1}, "What": {"_count": 1}}, "school": {"_count": 1, "Decree": {"_count": 1}}, "youd": {"_count": 12, "got": {"_count": 1}, "been": {"_count": 2}, "go": {"_count": 1}, "left": {"_count": 2}, "had": {"_count": 1}, "resigned": {"_count": 1}, "already": {"_count": 1}, "think": {"_count": 1}, "pop": {"_count": 1}, "thought": {"_count": 1}}, "until": {"_count": 1, "all": {"_count": 1}}, "glaring": {"_count": 2, "at": {"_count": 2}}, "grimly": {"_count": 6, "": {"_count": 2}, "wiping": {"_count": 1}, "looking": {"_count": 1}, "I": {"_count": 1}, "Ive": {"_count": 1}}, "This": {"_count": 3, "is": {"_count": 2}, "way": {"_count": 1}}, "Lockhart": {"_count": 39, "through": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 6}, "reaching": {"_count": 1}, "beaming": {"_count": 1}, "paternally": {"_count": 1}, "in": {"_count": 4}, "waggling": {"_count": 1}, "looking": {"_count": 1}, "a": {"_count": 1}, "taking": {"_count": 1}, "warmly": {"_count": 1}, "while": {"_count": 1}, "loudly": {"_count": 1}, "soothingly": {"_count": 1}, "who": {"_count": 1}, "flashing": {"_count": 1}, "skittering": {"_count": 1}, "standing": {"_count": 1}, "gesturing": {"_count": 1}, "speaking": {"_count": 1}, "graciously": {"_count": 1}, "ripping": {"_count": 1}, "avoiding": {"_count": 1}, "delicately": {"_count": 1}, "straightening": {"_count": 1}, "shaking": {"_count": 1}, "weakly": {"_count": 1}, "with": {"_count": 1}, "dimly": {"_count": 1}, "exuberantly": {"_count": 1}}, "Ginny": {"_count": 112, "": {"_count": 35}, "giggling": {"_count": 1}, "huffily": {"_count": 1}, "who": {"_count": 4}, "indignantly": {"_count": 1}, "looking": {"_count": 2}, "annoyed": {"_count": 1}, "quietly": {"_count": 2}, "and": {"_count": 4}, "as": {"_count": 3}, "sadly": {"_count": 1}, "earnestly": {"_count": 1}, "unblushingly": {"_count": 1}, "laughing": {"_count": 1}, "smiling": {"_count": 1}, "sharply": {"_count": 1}, "bracingly": {"_count": 1}, "but": {"_count": 2}, "in": {"_count": 3}, "impatiently": {"_count": 2}, "miserably": {"_count": 1}, "urgently": {"_count": 1}, "angrily": {"_count": 1}, "coolly": {"_count": 1}, "simply": {"_count": 1}, "shaking": {"_count": 1}, "slowly": {"_count": 1}, "thoughtfully": {"_count": 1}, "uncertainly": {"_count": 1}, "promptly": {"_count": 1}, "her": {"_count": 1}, "scowling": {"_count": 1}, "confidently": {"_count": 1}, "shrugging": {"_count": 1}, "Yeah": {"_count": 1}, "resolutely": {"_count": 1}, "plonking": {"_count": 1}, "slyly": {"_count": 1}, "nodding": {"_count": 1}, "And": {"_count": 1}, "outraged": {"_count": 1}, "crossly": {"_count": 1}, "But": {"_count": 1}, "tentatively": {"_count": 1}, "calmly": {"_count": 1}, "putting": {"_count": 1}, "at": {"_count": 1}, "brightly": {"_count": 2}, "staunchly": {"_count": 1}, "tossing": {"_count": 1}, "ignoring": {"_count": 1}, "dispassionately": {"_count": 1}, "cheerfully": {"_count": 1}, "patting": {"_count": 1}, "though": {"_count": 1}, "turning": {"_count": 1}, "fiercely": {"_count": 1}, "half": {"_count": 1}, "were": {"_count": 1}, "not": {"_count": 1}, "Tonks": {"_count": 1}, "reassuringly": {"_count": 1}, "suddenly": {"_count": 1}}, "Muggles": {"_count": 1, "do": {"_count": 1}}, "no": {"_count": 10, "Arthur": {"_count": 1}, "ones": {"_count": 1}, "before": {"_count": 1}, "problem": {"_count": 1}, "and": {"_count": 1}, "more": {"_count": 2}, "": {"_count": 2}, "Because": {"_count": 1}}, "tensely": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Rons": {"_count": 10, "voice": {"_count": 9}, "younger": {"_count": 1}}, "cajolingly": {"_count": 1, "giving": {"_count": 1}}, "urgently": {"_count": 5, "": {"_count": 2}, "you": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 1}}, "opening": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "her": {"_count": 16, "glasses": {"_count": 1}, "voice": {"_count": 9}, "thick": {"_count": 1}, "breath": {"_count": 1}, "brow": {"_count": 1}, "mad": {"_count": 1}, "chest": {"_count": 1}, "name": {"_count": 1}}, "Please": {"_count": 1, "explain": {"_count": 1}}, "grabbing": {"_count": 1, "a": {"_count": 1}}, "taking": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 1}}, "Morning": {"_count": 2, "which": {"_count": 1}, "Arthur": {"_count": 1}}, "Well": {"_count": 19, "be": {"_count": 1}, "Ill": {"_count": 1}, "": {"_count": 3}, "it": {"_count": 1}, "Ive": {"_count": 1}, "wed": {"_count": 1}, "Yeah": {"_count": 1}, "does": {"_count": 1}, "no": {"_count": 1}, "we": {"_count": 1}, "er": {"_count": 1}, "Minister": {"_count": 1}, "sit": {"_count": 1}, "Mums": {"_count": 1}, "goodbye": {"_count": 1}, "then": {"_count": 1}, "there": {"_count": 1}}, "promptly": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "brightly": {"_count": 11, "shaking": {"_count": 1}, "": {"_count": 2}, "spraying": {"_count": 1}, "as": {"_count": 2}, "to": {"_count": 2}, "her": {"_count": 1}, "and": {"_count": 1}, "taking": {"_count": 1}}, "Justin": {"_count": 1, "happily": {"_count": 1}}, "breathlessly": {"_count": 13, "taking": {"_count": 1}, "": {"_count": 9}, "as": {"_count": 1}, "Well": {"_count": 1}, "pointing": {"_count": 1}}, "raising": {"_count": 5, "the": {"_count": 1}, "Ginnys": {"_count": 1}, "his": {"_count": 3}}, "Colin": {"_count": 11, "Creevey": {"_count": 2}, "eagerly": {"_count": 1}, "trotting": {"_count": 1}, "breathlessly": {"_count": 1}, "in": {"_count": 1}, "fascinated": {"_count": 1}, "practically": {"_count": 1}, "just": {"_count": 1}, "starting": {"_count": 1}, "when": {"_count": 1}}, "if": {"_count": 2, "I": {"_count": 2}}, "Its": {"_count": 6, "amazing": {"_count": 1}, "the": {"_count": 1}, "no": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 1}}, "pointing": {"_count": 15, "at": {"_count": 6}, "his": {"_count": 2}, "": {"_count": 1}, "him": {"_count": 1}, "toward": {"_count": 1}, "over": {"_count": 1}, "warningly": {"_count": 1}, "her": {"_count": 1}, "to": {"_count": 1}}, "dramatically": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "glowering": {"_count": 2, "at": {"_count": 1}, "vot": {"_count": 1}}, "Flint": {"_count": 5, "": {"_count": 2}, "as": {"_count": 2}, "carelessly": {"_count": 1}}, "hotly": {"_count": 2, "": {"_count": 2}}, "patting": {"_count": 3, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 3, "Hagrid": {"_count": 2}, "Auntie": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "Nick": {"_count": 16, "folding": {"_count": 1}, "quickly": {"_count": 1}, "eagerly": {"_count": 1}, "excitedly": {"_count": 1}, "stiffly": {"_count": 1}, "who": {"_count": 1}, "reprovingly": {"_count": 1}, "looking": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 5}, "miserably": {"_count": 1}, "gently": {"_count": 1}}, "Feel": {"_count": 1, "out": {"_count": 1}}, "mournfully": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "sweetly": {"_count": 3, "offering": {"_count": 1}, "making": {"_count": 1}, "": {"_count": 1}}, "shell": {"_count": 1, "be": {"_count": 1}}, "sulkily": {"_count": 1, "": {"_count": 1}}, "silver": {"_count": 1, "tears": {"_count": 1}}, "Lets": {"_count": 3, "get": {"_count": 2}, "not": {"_count": 1}}, "sitting": {"_count": 8, "down": {"_count": 4}, "on": {"_count": 1}, "up": {"_count": 3}}, "Oh": {"_count": 7, "well": {"_count": 1}, "no": {"_count": 1}, "yes": {"_count": 1}, "vairy": {"_count": 1}, "look": {"_count": 1}, "it": {"_count": 1}, "of": {"_count": 1}}, "frowning": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "Remember": {"_count": 1, "all": {"_count": 1}}, "Hello": {"_count": 1, "Myrtle": {"_count": 1}}, "eyeing": {"_count": 1, "Ron": {"_count": 1}}, "Myrtle": {"_count": 18, "staring": {"_count": 1}, "in": {"_count": 2}, "dramatically": {"_count": 1}, "happily": {"_count": 1}, "glaring": {"_count": 1}, "pointing": {"_count": 1}, "brightly": {"_count": 1}, "blushing": {"_count": 1}, "miserably": {"_count": 1}, "picking": {"_count": 2}, "rather": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "gulping": {"_count": 1}, "defiantly": {"_count": 1}, "her": {"_count": 1}}, "Honestly": {"_count": 1, "that": {"_count": 1}}, "striding": {"_count": 2, "toward": {"_count": 1}, "over": {"_count": 1}}, "tersely": {"_count": 1, "fingering": {"_count": 1}}, "misreading": {"_count": 1, "the": {"_count": 1}}, "Alicia": {"_count": 7, "Spinnet": {"_count": 2}, "soothingly": {"_count": 1}, "who": {"_count": 1}, "numbly": {"_count": 1}, "furiously": {"_count": 1}, "without": {"_count": 1}}, "angrily": {"_count": 18, "to": {"_count": 2}, "": {"_count": 10}, "getting": {"_count": 1}, "as": {"_count": 1}, "pick": {"_count": 1}, "And": {"_count": 1}, "landing": {"_count": 1}, "and": {"_count": 1}}, "vaguely": {"_count": 3, "": {"_count": 1}, "looking": {"_count": 1}, "that": {"_count": 1}}, "pouring": {"_count": 1, "out": {"_count": 1}}, "fiercely": {"_count": 10, "": {"_count": 5}, "pointing": {"_count": 1}, "though": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "now": {"_count": 1}}, "keeping": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "closing": {"_count": 2, "the": {"_count": 2}}, "happily": {"_count": 16, "": {"_count": 11}, "raising": {"_count": 1}, "pointing": {"_count": 1}, "I": {"_count": 1}, "If": {"_count": 1}, "to": {"_count": 1}}, "tottering": {"_count": 1, "back": {"_count": 1}}, "Enough": {"_count": 1, "demonstrating": {"_count": 1}}, "disarm": {"_count": 1, "only": {"_count": 1}}, "Youre": {"_count": 3, "a": {"_count": 2}, "well": {"_count": 1}}, "Hannah": {"_count": 2, "uncertainly": {"_count": 1}, "Abbott": {"_count": 1}}, "Ernie": {"_count": 19, "in": {"_count": 1}, "stubbornly": {"_count": 1}, "": {"_count": 3}, "swiftly": {"_count": 1}, "breaking": {"_count": 1}, "Macmillan": {"_count": 4}, "yes": {"_count": 1}, "looking": {"_count": 2}, "at": {"_count": 1}, "puffing": {"_count": 1}, "shaking": {"_count": 1}, "with": {"_count": 1}, "sycophantically": {"_count": 1}}, "We": {"_count": 4, "were": {"_count": 1}, "havent": {"_count": 1}, "hadnt": {"_count": 1}, "need": {"_count": 1}}, "pulling": {"_count": 8, "up": {"_count": 1}, "backward": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 2}, "himself": {"_count": 1}, "him": {"_count": 1}}, "about": {"_count": 16, "him": {"_count": 1}, "Dumbledore": {"_count": 1}, "rats": {"_count": 1}, "your": {"_count": 1}, "YouKnow": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "study": {"_count": 1}, "how": {"_count": 1}, "eye": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}, "Voldemort": {"_count": 1}, "my": {"_count": 1}, "other": {"_count": 1}}, "before": {"_count": 3, "Harrys": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "aloud": {"_count": 4, "to": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}}, "gently": {"_count": 6, "": {"_count": 4}, "by": {"_count": 1}, "But": {"_count": 1}}, "Hearing": {"_count": 1, "voices": {"_count": 1}}, "sternly": {"_count": 2, "": {"_count": 2}}, "holding": {"_count": 8, "up": {"_count": 4}, "out": {"_count": 3}, "one": {"_count": 1}}, "stiffly": {"_count": 5, "is": {"_count": 1}, "": {"_count": 3}, "I": {"_count": 1}}, "INQUIRY": {"_count": 1, "AT": {"_count": 1}}, "old": {"_count": 2, "Dumbledores": {"_count": 1}, "Archie": {"_count": 1}}, "Dyou": {"_count": 1, "know": {"_count": 1}}, "Father": {"_count": 1, "says": {"_count": 1}}, "Why": {"_count": 1, "would": {"_count": 1}}, "Aparecium": {"_count": 1, "Nothing": {"_count": 1}}, "tapping": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "twanging": {"_count": 1, "his": {"_count": 1}}, "another": {"_count": 5, "familiar": {"_count": 1}, "": {"_count": 1}, "voice": {"_count": 2}, "very": {"_count": 1}}, "shooing": {"_count": 1, "some": {"_count": 1}}, "As": {"_count": 1, "a": {"_count": 1}}, "shakily": {"_count": 4, "": {"_count": 4}}, "Riddle": {"_count": 44, "": {"_count": 15}, "at": {"_count": 2}, "reddening": {"_count": 1}, "and": {"_count": 2}, "quickly": {"_count": 3}, "sharply": {"_count": 2}, "moving": {"_count": 1}, "drawing": {"_count": 1}, "quietly": {"_count": 3}, "calmly": {"_count": 2}, "still": {"_count": 2}, "pleasantly": {"_count": 1}, "softly": {"_count": 2}, "carelessly": {"_count": 1}, "smiling": {"_count": 1}, "staring": {"_count": 1}, "now": {"_count": 1}, "again": {"_count": 1}, "more": {"_count": 1}, "came": {"_count": 1}}, "Dippet": {"_count": 4, "": {"_count": 1}, "kindly": {"_count": 1}, "curiously": {"_count": 1}, "with": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "lowering": {"_count": 6, "the": {"_count": 2}, "her": {"_count": 2}, "his": {"_count": 2}}, "Fudge": {"_count": 110, "in": {"_count": 6}, "uncomfortably": {"_count": 2}, "fidgeting": {"_count": 1}, "not": {"_count": 1}, "looking": {"_count": 6}, "whose": {"_count": 1}, "testily": {"_count": 1}, "who": {"_count": 2}, "pointedly": {"_count": 1}, "indicating": {"_count": 1}, "pouring": {"_count": 1}, "": {"_count": 19}, "now": {"_count": 2}, "with": {"_count": 5}, "flatly": {"_count": 1}, "shortly": {"_count": 1}, "gruffly": {"_count": 1}, "heavily": {"_count": 1}, "bitterly": {"_count": 1}, "kindly": {"_count": 1}, "sharply": {"_count": 1}, "thickly": {"_count": 1}, "slowly": {"_count": 2}, "evasively": {"_count": 1}, "casting": {"_count": 1}, "startled": {"_count": 1}, "staring": {"_count": 1}, "running": {"_count": 1}, "wearily": {"_count": 2}, "smiling": {"_count": 1}, "comfortably": {"_count": 1}, "sounding": {"_count": 2}, "angrily": {"_count": 2}, "impatiently": {"_count": 1}, "jovially": {"_count": 1}, "and": {"_count": 1}, "quickly": {"_count": 1}, "visibly": {"_count": 1}, "again": {"_count": 2}, "still": {"_count": 1}, "loudly": {"_count": 1}, "eyeing": {"_count": 1}, "loftily": {"_count": 1}, "forcefully": {"_count": 1}, "at": {"_count": 1}, "savagely": {"_count": 1}, "turning": {"_count": 1}, "last": {"_count": 1}, "appreciatively": {"_count": 1}, "his": {"_count": 2}, "nodding": {"_count": 1}, "heartily": {"_count": 1}, "fixing": {"_count": 1}, "bouncing": {"_count": 1}, "a": {"_count": 2}, "quietly": {"_count": 1}, "pulling": {"_count": 1}, "nastily": {"_count": 1}, "as": {"_count": 2}, "rubbing": {"_count": 1}, "gently": {"_count": 1}, "poking": {"_count": 1}, "distractedly": {"_count": 1}, "speaking": {"_count": 1}, "coloring": {"_count": 1}, "miserably": {"_count": 1}, "barely": {"_count": 1}}, "approvingly": {"_count": 1, "": {"_count": 1}}, "Lucius": {"_count": 9, "Malfoy": {"_count": 5}, "has": {"_count": 1}, "impatiently": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "carefully": {"_count": 2, "If": {"_count": 1}, "and": {"_count": 1}}, "not": {"_count": 5, "troubling": {"_count": 2}, "much": {"_count": 1}, "to": {"_count": 1}, "Hagrid": {"_count": 1}}, "very": {"_count": 23, "formally": {"_count": 1}, "quietly": {"_count": 7}, "resentfully": {"_count": 1}, "seriously": {"_count": 4}, "surprised": {"_count": 1}, "angrily": {"_count": 1}, "clearly": {"_count": 1}, "much": {"_count": 1}, "firmly": {"_count": 1}, "quickly": {"_count": 1}, "loudly": {"_count": 2}, "fast": {"_count": 1}, "softly": {"_count": 1}}, "There": {"_count": 1, "are": {"_count": 1}}, "clicking": {"_count": 1, "his": {"_count": 1}}, "Aragog": {"_count": 6, "moving": {"_count": 1}, "fretfully": {"_count": 1}, "clicking": {"_count": 1}, "is": {"_count": 1}, "fiercely": {"_count": 1}, "slowly": {"_count": 1}}, "coughing": {"_count": 1, "": {"_count": 1}}, "ushering": {"_count": 1, "them": {"_count": 1}}, "How": {"_count": 5, "can": {"_count": 3}, "long": {"_count": 1}, "about": {"_count": 1}}, "sounding": {"_count": 8, "desperate": {"_count": 1}, "surprised": {"_count": 1}, "both": {"_count": 1}, "thoroughly": {"_count": 1}, "perplexed": {"_count": 1}, "a": {"_count": 1}, "annoyed": {"_count": 1}, "unexpectedly": {"_count": 1}}, "uncertainly": {"_count": 7, "": {"_count": 4}, "to": {"_count": 1}, "I": {"_count": 2}}, "Riddles": {"_count": 3, "voice": {"_count": 2}, "distant": {"_count": 1}}, "get": {"_count": 1, "away": {"_count": 1}}, "blankly": {"_count": 3, "to": {"_count": 1}, "": {"_count": 2}}, "thoughtfully": {"_count": 5, "to": {"_count": 1}, "": {"_count": 3}, "looking": {"_count": 1}}, "thunderstruck": {"_count": 1, "": {"_count": 1}}, "Youve": {"_count": 2, "come": {"_count": 1}, "got": {"_count": 1}}, "hurriedly": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "come": {"_count": 1, "": {"_count": 1}}, "gloomily": {"_count": 4, "youre": {"_count": 1}, "referring": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "Where": {"_count": 1, "is": {"_count": 1}}, "over": {"_count": 8, "lunch": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 3}, "him": {"_count": 1}, "breakfast": {"_count": 1}, "Hermiones": {"_count": 1}}, "breathing": {"_count": 2, "very": {"_count": 1}, "a": {"_count": 1}}, "Stan": {"_count": 19, "dropping": {"_count": 1}, "": {"_count": 3}, "abruptly": {"_count": 1}, "proudly": {"_count": 1}, "but": {"_count": 1}, "sitting": {"_count": 1}, "contemptuously": {"_count": 1}, "happily": {"_count": 2}, "who": {"_count": 1}, "in": {"_count": 1}, "weakly": {"_count": 1}, "still": {"_count": 1}, "examining": {"_count": 1}, "clapping": {"_count": 1}, "beaming": {"_count": 1}, "brightly": {"_count": 1}}, "Ern": {"_count": 3, "": {"_count": 1}, "darkly": {"_count": 1}, "in": {"_count": 1}}, "forgetting": {"_count": 1, "his": {"_count": 1}}, "nodding": {"_count": 4, "": {"_count": 2}, "her": {"_count": 1}, "gravely": {"_count": 1}}, "an": {"_count": 9, "irritable": {"_count": 1}, "excited": {"_count": 1}, "put": {"_count": 1}, "icy": {"_count": 1}, "eager": {"_count": 1}, "unconvincing": {"_count": 1}, "unbidden": {"_count": 1}, "undeceived": {"_count": 1}, "unmistakable": {"_count": 1}}, "ad": {"_count": 1, "appened": {"_count": 1}}, "excitedly": {"_count": 6, "": {"_count": 3}, "no": {"_count": 1}, "as": {"_count": 1}, "brandishing": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "miserably": {"_count": 5, "to": {"_count": 1}, "": {"_count": 3}, "during": {"_count": 1}}, "Id": {"_count": 8, "be": {"_count": 1}, "failed": {"_count": 1}, "seen": {"_count": 1}, "heard": {"_count": 1}, "do": {"_count": 1}, "meet": {"_count": 2}, "go": {"_count": 1}}, "Ive": {"_count": 9, "already": {"_count": 1}, "made": {"_count": 1}, "been": {"_count": 3}, "just": {"_count": 1}, "changed": {"_count": 1}, "bin": {"_count": 1}, "got": {"_count": 1}}, "abruptly": {"_count": 11, "": {"_count": 6}, "Professor": {"_count": 1}, "to": {"_count": 1}, "when": {"_count": 1}, "Ive": {"_count": 1}, "In": {"_count": 1}}, "we": {"_count": 10, "wanted": {"_count": 1}, "were": {"_count": 2}, "could": {"_count": 1}, "is": {"_count": 2}, "just": {"_count": 2}, "werent": {"_count": 1}, "wouldnt": {"_count": 1}}, "checking": {"_count": 1, "her": {"_count": 1}}, "thats": {"_count": 1, "enough": {"_count": 1}}, "swelling": {"_count": 1, "with": {"_count": 1}}, "out": {"_count": 4, "loud": {"_count": 2}, "of": {"_count": 2}}, "glancing": {"_count": 2, "around": {"_count": 2}}, "Lupin": {"_count": 217, "who": {"_count": 6}, "": {"_count": 82}, "as": {"_count": 3}, "though": {"_count": 2}, "surveying": {"_count": 1}, "taking": {"_count": 1}, "passing": {"_count": 1}, "slowly": {"_count": 2}, "frowning": {"_count": 1}, "still": {"_count": 3}, "thoughtfully": {"_count": 1}, "shrewdly": {"_count": 1}, "smiling": {"_count": 5}, "pleasantly": {"_count": 2}, "looking": {"_count": 4}, "turning": {"_count": 3}, "coolly": {"_count": 2}, "when": {"_count": 1}, "stripping": {"_count": 1}, "which": {"_count": 1}, "gripping": {"_count": 1}, "pulling": {"_count": 1}, "in": {"_count": 1}, "firmly": {"_count": 5}, "with": {"_count": 5}, "lightly": {"_count": 1}, "mildly": {"_count": 1}, "clapping": {"_count": 1}, "shortly": {"_count": 1}, "startled": {"_count": 1}, "sticking": {"_count": 1}, "waving": {"_count": 2}, "quietly": {"_count": 7}, "nodding": {"_count": 1}, "I": {"_count": 1}, "heavily": {"_count": 2}, "urgently": {"_count": 1}, "softly": {"_count": 2}, "Harry": {"_count": 1}, "hurriedly": {"_count": 1}, "and": {"_count": 3}, "holding": {"_count": 1}, "more": {"_count": 1}, "his": {"_count": 3}, "evenly": {"_count": 1}, "courteously": {"_count": 1}, "grimly": {"_count": 1}, "suddenly": {"_count": 1}, "bending": {"_count": 1}, "threateningly": {"_count": 1}, "now": {"_count": 2}, "were": {"_count": 1}, "motioning": {"_count": 1}, "glancing": {"_count": 1}, "sharply": {"_count": 3}, "loudly": {"_count": 1}, "ladling": {"_count": 1}, "bleakly": {"_count": 1}, "shaking": {"_count": 2}, "briskly": {"_count": 1}, "seriously": {"_count": 1}, "darkly": {"_count": 1}, "getting": {"_count": 1}, "eagerly": {"_count": 1}, "a": {"_count": 2}, "quickly": {"_count": 1}, "sternly": {"_count": 1}, "unexpectedly": {"_count": 1}, "reminiscently": {"_count": 1}, "but": {"_count": 3}, "incredulously": {"_count": 1}, "hoarsely": {"_count": 1}, "barely": {"_count": 1}, "refusing": {"_count": 1}, "steadily": {"_count": 1}, "avoiding": {"_count": 1}, "tersely": {"_count": 1}, "calmly": {"_count": 1}, "at": {"_count": 3}, "pointedly": {"_count": 1}, "then": {"_count": 1}, "again": {"_count": 1}, "beaming": {"_count": 1}, "meeting": {"_count": 1}}, "\u2018None": {"_count": 1, "of": {"_count": 1}}, "One": {"_count": 2, "of": {"_count": 1}, "person": {"_count": 1}}, "reprovingly": {"_count": 2, "to": {"_count": 1}, "folding": {"_count": 1}}, "flatly": {"_count": 5, "": {"_count": 4}, "take": {"_count": 1}}, "leaning": {"_count": 3, "to": {"_count": 1}, "forward": {"_count": 1}, "around": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "pointedly": {"_count": 1, "": {"_count": 1}}, "thickly": {"_count": 4, "when": {"_count": 1}, "Stupid": {"_count": 1}, "": {"_count": 2}}, "hippogriffs": {"_count": 1, "attack": {"_count": 1}}, "shaking": {"_count": 4, "his": {"_count": 3}, "Fudges": {"_count": 1}}, "settle": {"_count": 1, "down": {"_count": 1}}, "while": {"_count": 3, "Ron": {"_count": 2}, "they": {"_count": 1}}, "pleasantly": {"_count": 2, "": {"_count": 1}, "smiling": {"_count": 1}}, "Waddiwasil": {"_count": 1, "and": {"_count": 1}}, "Leave": {"_count": 1, "it": {"_count": 1}}, "Possibly": {"_count": 1, "no": {"_count": 1}}, "RiddikulusV": {"_count": 1, "almost": {"_count": 1}}, "lightly": {"_count": 1, "": {"_count": 1}}, "Lavender": {"_count": 13, "thoughtfully": {"_count": 1}, "tragically": {"_count": 1}, "looking": {"_count": 1}, "suddenly": {"_count": 1}, "Brown": {"_count": 1}, "sounding": {"_count": 1}, "sympathetically": {"_count": 1}, "in": {"_count": 1}, "who": {"_count": 1}, "tearfully": {"_count": 1}, "and": {"_count": 1}, "fretfully": {"_count": 1}, "scornfully": {"_count": 1}}, "Angelina": {"_count": 29, "": {"_count": 7}, "smiling": {"_count": 1}, "fiercely": {"_count": 1}, "entering": {"_count": 1}, "approvingly": {"_count": 1}, "crossly": {"_count": 1}, "glumly": {"_count": 1}, "we": {"_count": 1}, "in": {"_count": 3}, "miserably": {"_count": 1}, "beaming": {"_count": 1}, "loudly": {"_count": 1}, "hopefully": {"_count": 1}, "consulting": {"_count": 1}, "pocketing": {"_count": 1}, "angrily": {"_count": 1}, "casting": {"_count": 1}, "at": {"_count": 1}, "getting": {"_count": 1}, "dully": {"_count": 1}, "pulling": {"_count": 1}}, "furiously": {"_count": 15, "to": {"_count": 1}, "chucking": {"_count": 1}, "": {"_count": 9}, "pointing": {"_count": 1}, "turning": {"_count": 1}, "but": {"_count": 1}, "rounding": {"_count": 1}}, "made": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "any": {"_count": 1}}, "seriously": {"_count": 3, "": {"_count": 3}}, "Voldemort": {"_count": 70, "s": {"_count": 1}, "lazily": {"_count": 2}, "quietly": {"_count": 7}, "softly": {"_count": 7}, "coolly": {"_count": 1}, "": {"_count": 20}, "a": {"_count": 1}, "bending": {"_count": 1}, "the": {"_count": 1}, "dangerously": {"_count": 1}, "staring": {"_count": 1}, "and": {"_count": 10}, "after": {"_count": 1}, "indicating": {"_count": 1}, "with": {"_count": 2}, "stroking": {"_count": 1}, "in": {"_count": 2}, "again": {"_count": 2}, "his": {"_count": 2}, "coldly": {"_count": 2}, "we": {"_count": 1}, "looking": {"_count": 1}, "you": {"_count": 1}, "but": {"_count": 1}}, "Katie": {"_count": 5, "and": {"_count": 1}, "thickly": {"_count": 1}, "": {"_count": 1}, "shaking": {"_count": 1}, "so": {"_count": 1}}, "ignoring": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "Parvati": {"_count": 20, "suddenly": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 2}, "slowly": {"_count": 1}, "Patil": {"_count": 4}, "in": {"_count": 1}, "incredulously": {"_count": 1}, "do": {"_count": 1}, "breathlessly": {"_count": 1}, "excitedly": {"_count": 1}, "who": {"_count": 1}, "gloomily": {"_count": 1}, "looking": {"_count": 1}}, "silkily": {"_count": 1, "his": {"_count": 1}}, "exasperatedly": {"_count": 1, "waving": {"_count": 1}}, "Imperviusl": {"_count": 2, "There": {"_count": 1}, "I": {"_count": 1}}, "dreading": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "did": {"_count": 1}}, "straightening": {"_count": 2, "up": {"_count": 2}}, "warningly": {"_count": 3, "": {"_count": 3}}, "Dissendium": {"_count": 1, "": {"_count": 1}}, "Fudges": {"_count": 1, "voice": {"_count": 1}}, "squeakily": {"_count": 2, "involving": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 9, "loudly": {"_count": 3}, "half": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 2}, "anyway": {"_count": 1}}, "peering": {"_count": 2, "anxiously": {"_count": 1}, "into": {"_count": 1}}, "hastily": {"_count": 15, "or": {"_count": 1}, "seeing": {"_count": 1}, "": {"_count": 4}, "as": {"_count": 3}, "though": {"_count": 1}, "and": {"_count": 1}, "poking": {"_count": 1}, "but": {"_count": 1}, "looking": {"_count": 1}, "trying": {"_count": 1}}, "Buckbeak": {"_count": 1, "isnt": {"_count": 1}}, "Yer": {"_count": 1, "right": {"_count": 1}}, "timidly": {"_count": 2, "Is": {"_count": 1}, "dont": {"_count": 1}}, "bending": {"_count": 2, "down": {"_count": 2}}, "But": {"_count": 7, "where": {"_count": 1}, "Black": {"_count": 1}, "last": {"_count": 1}, "you": {"_count": 1}, "whats": {"_count": 1}, "never": {"_count": 1}, "wheres": {"_count": 1}}, "wearily": {"_count": 2, "": {"_count": 1}, "its": {"_count": 1}}, "trying": {"_count": 6, "to": {"_count": 6}}, "gripping": {"_count": 1, "his": {"_count": 1}}, "weakly": {"_count": 7, "": {"_count": 4}, "though": {"_count": 1}, "to": {"_count": 1}, "wishing": {"_count": 1}}, "shrilly": {"_count": 8, "": {"_count": 5}, "throwing": {"_count": 1}, "and": {"_count": 1}, "her": {"_count": 1}}, "Er": {"_count": 2, "Madam": {"_count": 1}, "Phineas": {"_count": 1}}, "On": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "Okay": {"_count": 3, "everyone": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}}, "laying": {"_count": 1, "the": {"_count": 1}}, "briskly": {"_count": 9, "and": {"_count": 1}, "": {"_count": 2}, "good": {"_count": 1}, "now": {"_count": 1}, "to": {"_count": 2}, "lets": {"_count": 1}, "but": {"_count": 1}}, "Dear": {"_count": 1, "Harry": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "stumbling": {"_count": 1, "forward": {"_count": 1}}, "touching": {"_count": 1, "the": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "dreamily": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "nervously": {"_count": 2, "": {"_count": 2}}, "cautiously": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "staring": {"_count": 14, "after": {"_count": 1}, "at": {"_count": 7}, "horrorstruck": {"_count": 1}, "down": {"_count": 1}, "menacingly": {"_count": 1}, "from": {"_count": 1}, "across": {"_count": 1}, "incredulously": {"_count": 1}}, "Black": {"_count": 26, "and": {"_count": 2}, "by": {"_count": 1}, "savagely": {"_count": 1}, "harshly": {"_count": 2}, "looking": {"_count": 1}, "": {"_count": 11}, "hoarsely": {"_count": 1}, "with": {"_count": 2}, "who": {"_count": 1}, "nudging": {"_count": 1}, "stiffly": {"_count": 1}, "quickly": {"_count": 1}, "weakly": {"_count": 1}}, "evenly": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 4, "taking": {"_count": 1}, "so": {"_count": 1}, "heat": {"_count": 1}, "looking": {"_count": 1}}, "Shh": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "Pettigrew": {"_count": 2, "again": {"_count": 1}, "shrilly": {"_count": 1}}, "casually": {"_count": 1, "over": {"_count": 1}}, "accidentally": {"_count": 1, "cracking": {"_count": 1}}, "unable": {"_count": 2, "to": {"_count": 2}}, "completely": {"_count": 1, "lost": {"_count": 1}}, "just": {"_count": 3, "said": {"_count": 1}, "keep": {"_count": 1}, "loud": {"_count": 1}}, "fervently": {"_count": 1, "": {"_count": 1}}, "spotting": {"_count": 3, "Sirius": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "From": {"_count": 1, "what": {"_count": 1}}, "theyd": {"_count": 1, "have": {"_count": 1}}, "Voldemorts": {"_count": 6, "servant": {"_count": 1}, "soft": {"_count": 1}, "name": {"_count": 1}, "voice": {"_count": 2}, "attacking": {"_count": 1}}, "Dot": {"_count": 2, "nodding": {"_count": 1}, "in": {"_count": 1}}, "whoever": {"_count": 1, "heard": {"_count": 1}}, "Wormtail": {"_count": 8, "": {"_count": 2}, "his": {"_count": 1}, "sounding": {"_count": 1}, "panic": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "wouldnt": {"_count": 1}}, "Frank": {"_count": 3, "defiantly": {"_count": 1}, "his": {"_count": 1}, "roughly": {"_count": 1}}, "tearfully": {"_count": 1, "": {"_count": 1}}, "grumpily": {"_count": 2, "to": {"_count": 1}, "sitting": {"_count": 1}}, "marching": {"_count": 2, "over": {"_count": 1}, "straight": {"_count": 1}}, "through": {"_count": 5, "gritted": {"_count": 4}, "clenched": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "knowledgeably": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 3, "Mum": {"_count": 1}, "he": {"_count": 2}}, "heatedly": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "Bill": {"_count": 40, "grinning": {"_count": 3}, "patiently": {"_count": 1}, "sharply": {"_count": 1}, "Charlie": {"_count": 1}, "": {"_count": 16}, "yawning": {"_count": 1}, "who": {"_count": 1}, "hands": {"_count": 1}, "his": {"_count": 1}, "looking": {"_count": 1}, "surveying": {"_count": 1}, "standing": {"_count": 1}, "quickly": {"_count": 1}, "incredulously": {"_count": 1}, "Fleur": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "leading": {"_count": 1}, "opening": {"_count": 1}, "quietly": {"_count": 1}, "as": {"_count": 1}, "setting": {"_count": 1}, "gently": {"_count": 1}}, "Charlie": {"_count": 15, "thickly": {"_count": 1}, "shortly": {"_count": 1}, "gloomily": {"_count": 1}, "": {"_count": 7}, "grinning": {"_count": 1}, "shaking": {"_count": 1}, "sternly": {"_count": 1}, "grimly": {"_count": 1}, "Weasley": {"_count": 1}}, "Acciol": {"_count": 1, "Several": {"_count": 1}}, "Cedric": {"_count": 15, "looking": {"_count": 2}, "with": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 6}, "grinning": {"_count": 1}, "in": {"_count": 2}, "picking": {"_count": 1}, "mulishly": {"_count": 1}}, "hi": {"_count": 1, "back": {"_count": 1}}, "Amos": {"_count": 3, "Diggory": {"_count": 3}}, "Ced": {"_count": 1, "thatll": {"_count": 1}}, "Basil": {"_count": 1, "wearily": {"_count": 1}}, "placidly": {"_count": 2, "to": {"_count": 1}, "handing": {"_count": 1}}, "Like": {"_count": 2, "wed": {"_count": 1}, "a": {"_count": 1}}, "Bagman": {"_count": 33, "comfortably": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 11}, "breezily": {"_count": 1}, "waving": {"_count": 1}, "rubbing": {"_count": 1}, "beaming": {"_count": 1}, "brightly": {"_count": 3}, "happily": {"_count": 3}, "lowering": {"_count": 1}, "winking": {"_count": 1}, "in": {"_count": 1}, "eagerly": {"_count": 1}, "to": {"_count": 1}, "looking": {"_count": 2}, "impatiently": {"_count": 1}, "with": {"_count": 1}, "smiling": {"_count": 1}}, "Ludo": {"_count": 4, "brightly": {"_count": 1}, "Bagman": {"_count": 3}}, "Crouch": {"_count": 11, "and": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 4}, "coldly": {"_count": 1}, "disdainfully": {"_count": 1}, "speaking": {"_count": 1}, "his": {"_count": 1}, "still": {"_count": 1}}, "Winky": {"_count": 5, "shaking": {"_count": 1}, "sadly": {"_count": 1}, "firmly": {"_count": 1}, "tilting": {"_count": 1}, "breathlessly": {"_count": 1}}, "twiddling": {"_count": 1, "the": {"_count": 1}}, "Sonorusl": {"_count": 2, "and": {"_count": 2}}, "Hermiones": {"_count": 4, "voice": {"_count": 4}}, "reassuringly": {"_count": 2, "to": {"_count": 1}, "lowering": {"_count": 1}}, "giggling": {"_count": 1, "": {"_count": 1}}, "Bagmans": {"_count": 1, "voice": {"_count": 1}}, "No": {"_count": 5, "time": {"_count": 1}, "way": {"_count": 1}, "cloak": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "lazily": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "perhaps": {"_count": 1, "Hermione": {"_count": 1}}, "blinking": {"_count": 2, "down": {"_count": 1}, "at": {"_count": 1}}, "startled": {"_count": 1, "to": {"_count": 1}}, "jerkily": {"_count": 3, "": {"_count": 2}, "tearing": {"_count": 1}}, "Rennervatel": {"_count": 1, "Winky": {"_count": 1}}, "more": {"_count": 3, "urgently": {"_count": 1}, "calmly": {"_count": 1}, "seriously": {"_count": 1}}, "starting": {"_count": 2, "to": {"_count": 1}, "off": {"_count": 1}}, "All": {"_count": 4, "right": {"_count": 3}, "righ": {"_count": 1}}, "sorting": {"_count": 1, "them": {"_count": 1}}, "delightedly": {"_count": 1, "": {"_count": 1}}, "beaming": {"_count": 6, "at": {"_count": 2}, "": {"_count": 1}, "around": {"_count": 1}, "in": {"_count": 1}, "when": {"_count": 1}}, "Dennis": {"_count": 2, "as": {"_count": 1}, "Creevey": {"_count": 1}}, "pushing": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "though": {"_count": 3, "now": {"_count": 1}, "privately": {"_count": 1}, "said": {"_count": 1}}, "sleepily": {"_count": 1, "through": {"_count": 1}}, "grinning": {"_count": 4, "at": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}}, "roughly": {"_count": 2, "Thas": {"_count": 1}, "grabbing": {"_count": 1}}, "See": {"_count": 2, "you": {"_count": 2}}, "bewildered": {"_count": 1, "": {"_count": 1}}, "Moody": {"_count": 81, "speaking": {"_count": 1}, "calmly": {"_count": 2}, "": {"_count": 20}, "scratching": {"_count": 1}, "staring": {"_count": 2}, "quietly": {"_count": 4}, "appreciatively": {"_count": 1}, "and": {"_count": 4}, "his": {"_count": 4}, "softly": {"_count": 2}, "looking": {"_count": 2}, "another": {"_count": 1}, "grimly": {"_count": 1}, "with": {"_count": 3}, "old": {"_count": 1}, "who": {"_count": 2}, "sitting": {"_count": 1}, "gruffly": {"_count": 2}, "loudly": {"_count": 1}, "but": {"_count": 1}, "limping": {"_count": 2}, "drawing": {"_count": 1}, "sharply": {"_count": 1}, "in": {"_count": 1}, "nodding": {"_count": 1}, "taking": {"_count": 1}, "shaking": {"_count": 2}, "its": {"_count": 1}, "slowly": {"_count": 1}, "darkly": {"_count": 1}, "turning": {"_count": 1}, "when": {"_count": 1}, "raising": {"_count": 1}, "unlocking": {"_count": 1}, "still": {"_count": 1}, "unnecessarily": {"_count": 1}, "a": {"_count": 1}, "theres": {"_count": 1}, "pushing": {"_count": 1}, "grasping": {"_count": 1}, "I": {"_count": 1}, "indicating": {"_count": 1}, "as": {"_count": 1}}, "Lee": {"_count": 13, "": {"_count": 5}, "grinning": {"_count": 1}, "Jordan": {"_count": 4}, "reassuringly": {"_count": 1}, "looking": {"_count": 1}, "so": {"_count": 1}}, "good": {"_count": 1, "night": {"_count": 1}}, "sardonically": {"_count": 1, "as": {"_count": 1}}, "stroking": {"_count": 2, "her": {"_count": 2}}, "Imperio": {"_count": 2, "It": {"_count": 1}, "": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "many": {"_count": 1, "students": {"_count": 1}}, "Madame": {"_count": 13, "Maxime": {"_count": 13}}, "loftily": {"_count": 3, "as": {"_count": 1}, "": {"_count": 2}}, "Excuse": {"_count": 1, "me": {"_count": 1}}, "Karkaroff": {"_count": 21, "carelessly": {"_count": 1}, "his": {"_count": 3}, "": {"_count": 3}, "bowing": {"_count": 1}, "loudly": {"_count": 1}, "coldly": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}, "displaying": {"_count": 1}, "abruptly": {"_count": 1}, "and": {"_count": 1}, "still": {"_count": 1}, "hurriedly": {"_count": 2}, "breathlessly": {"_count": 1}, "a": {"_count": 1}, "eagerly": {"_count": 1}}, "Erm": {"_count": 2, "where": {"_count": 1}, "": {"_count": 1}}, "gravely": {"_count": 1, "threading": {"_count": 1}}, "contemptuously": {"_count": 2, "to": {"_count": 1}, "Surely": {"_count": 1}}, "Fleur": {"_count": 24, "at": {"_count": 1}, "": {"_count": 3}, "throatily": {"_count": 2}, "as": {"_count": 1}, "turning": {"_count": 1}, "Delacour": {"_count": 1}, "with": {"_count": 2}, "smiling": {"_count": 1}, "complacently": {"_count": 1}, "loudly": {"_count": 1}, "to": {"_count": 1}, "suddenly": {"_count": 1}, "drawing": {"_count": 1}, "her": {"_count": 1}, "stiffly": {"_count": 1}, "happily": {"_count": 1}, "checking": {"_count": 1}, "once": {"_count": 1}, "kissing": {"_count": 1}, "crossly": {"_count": 1}}, "imperiously": {"_count": 1, "": {"_count": 1}}, "instructions": {"_count": 1, "": {"_count": 1}}, "despairingly": {"_count": 1, "": {"_count": 1}}, "incredulously": {"_count": 1, "": {"_count": 1}}, "sarcastically": {"_count": 1, "to": {"_count": 1}}, "Explain": {"_count": 1, "": {"_count": 1}}, "Rita": {"_count": 21, "Skeeter": {"_count": 12}, "apparently": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "taking": {"_count": 1}, "wiping": {"_count": 1}, "shooting": {"_count": 1}, "lowering": {"_count": 1}, "coldly": {"_count": 1}, "her": {"_count": 1}}, "standing": {"_count": 2, "up": {"_count": 2}}, "curious": {"_count": 1, "and": {"_count": 1}}, "stubbornly": {"_count": 1, "": {"_count": 1}}, "Shes": {"_count": 2, "staying": {"_count": 1}, "got": {"_count": 1}}, "warily": {"_count": 1, "wondering": {"_count": 1}}, "playfully": {"_count": 1, "Wair": {"_count": 1}}, "Hows": {"_count": 1, "Harry": {"_count": 1}}, "Ouch": {"_count": 2, "": {"_count": 2}}, "Sirius": {"_count": 179, "how": {"_count": 2}, "seriously": {"_count": 1}, "": {"_count": 51}, "bitterly": {"_count": 3}, "because": {"_count": 1}, "grimly": {"_count": 2}, "slowly": {"_count": 2}, "speaking": {"_count": 1}, "opening": {"_count": 1}, "gnawing": {"_count": 1}, "shrugging": {"_count": 2}, "his": {"_count": 2}, "still": {"_count": 2}, "frowning": {"_count": 3}, "looking": {"_count": 5}, "taking": {"_count": 2}, "throwing": {"_count": 2}, "and": {"_count": 7}, "dully": {"_count": 1}, "nodding": {"_count": 2}, "gesturing": {"_count": 1}, "see": {"_count": 1}, "harshly": {"_count": 1}, "sharply": {"_count": 3}, "turning": {"_count": 1}, "as": {"_count": 1}, "sarcastically": {"_count": 1}, "waving": {"_count": 1}, "surveying": {"_count": 1}, "indifferently": {"_count": 1}, "in": {"_count": 2}, "pushing": {"_count": 1}, "calmly": {"_count": 1}, "impatiently": {"_count": 5}, "coldly": {"_count": 2}, "loudly": {"_count": 3}, "quietly": {"_count": 1}, "not": {"_count": 1}, "restlessly": {"_count": 1}, "who": {"_count": 2}, "peering": {"_count": 1}, "exasperatedly": {"_count": 1}, "casting": {"_count": 1}, "irritably": {"_count": 1}, "curtly": {"_count": 1}, "pointing": {"_count": 1}, "testily": {"_count": 1}, "examining": {"_count": 1}, "shortly": {"_count": 1}, "gloomily": {"_count": 1}, "contemptuously": {"_count": 1}, "through": {"_count": 1}, "abruptly": {"_count": 2}, "smiling": {"_count": 2}, "with": {"_count": 3}, "but": {"_count": 2}, "or": {"_count": 1}, "I": {"_count": 1}, "well": {"_count": 1}, "hastily": {"_count": 1}, "grinning": {"_count": 2}, "was": {"_count": 1}, "angrily": {"_count": 2}, "encouragingly": {"_count": 1}, "at": {"_count": 1}, "steadily": {"_count": 1}, "firmly": {"_count": 1}, "emerging": {"_count": 1}, "louder": {"_count": 1}, "letting": {"_count": 1}, "sitting": {"_count": 1}, "standing": {"_count": 1}, "proudly": {"_count": 1}, "clapping": {"_count": 1}, "finally": {"_count": 1}, "viciously": {"_count": 1}, "coolly": {"_count": 1}, "briskly": {"_count": 1}, "urgently": {"_count": 1}, "placatingly": {"_count": 1}, "quickly": {"_count": 1}, "affectionately": {"_count": 1}, "bracingly": {"_count": 1}, "you": {"_count": 1}, "forcefully": {"_count": 1}, "glancing": {"_count": 1}, "wasnt": {"_count": 1}, "would": {"_count": 1}}, "Dragons": {"_count": 1, "we": {"_count": 1}}, "coming": {"_count": 2, "to": {"_count": 1}, "over": {"_count": 1}}, "dully": {"_count": 4, "and": {"_count": 2}, "to": {"_count": 1}, "sinking": {"_count": 1}}, "offering": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "Potterwatch": {"_count": 1}}, "swiftly": {"_count": 1, "": {"_count": 1}}, "Did": {"_count": 3, "you": {"_count": 3}}, "under": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "Good": {"_count": 5, "for": {"_count": 1}, "luck": {"_count": 1}, "ter": {"_count": 1}, "": {"_count": 1}, "evening": {"_count": 1}}, "talking": {"_count": 2, "normally": {"_count": 1}, "directly": {"_count": 1}}, "doubtfully": {"_count": 1, "": {"_count": 1}}, "finding": {"_count": 1, "a": {"_count": 1}}, "bitterly": {"_count": 3, "that": {"_count": 1}, "we": {"_count": 1}, "slamming": {"_count": 1}}, "Wed": {"_count": 1, "better": {"_count": 1}}, "bristling": {"_count": 1, "": {"_count": 1}}, "Cho": {"_count": 37, "": {"_count": 9}, "and": {"_count": 3}, "still": {"_count": 1}, "coolly": {"_count": 1}, "looking": {"_count": 1}, "rather": {"_count": 2}, "angrily": {"_count": 1}, "finally": {"_count": 1}, "Harrys": {"_count": 1}, "nor": {"_count": 1}, "at": {"_count": 1}, "drawing": {"_count": 1}, "sounding": {"_count": 1}, "with": {"_count": 1}, "quietly": {"_count": 1}, "slightly": {"_count": 1}, "smiling": {"_count": 1}, "shrugging": {"_count": 1}, "in": {"_count": 1}, "tentatively": {"_count": 1}, "happily": {"_count": 1}, "indicating": {"_count": 1}, "brightly": {"_count": 1}, "hurriedly": {"_count": 1}, "pleadingly": {"_count": 1}, "fiercely": {"_count": 1}}, "Ill": {"_count": 3, "go": {"_count": 1}, "look": {"_count": 1}, "be": {"_count": 1}}, "wildly": {"_count": 1, "": {"_count": 1}}, "acidly": {"_count": 2, "": {"_count": 2}}, "keenly": {"_count": 1, "": {"_count": 1}}, "Come": {"_count": 4, "on": {"_count": 3}, "in": {"_count": 1}}, "ripping": {"_count": 1, "off": {"_count": 1}}, "awkwardly": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "Padma": {"_count": 1, "who": {"_count": 1}}, "dismissively": {"_count": 2, "looking": {"_count": 1}, "All": {"_count": 1}}, "catching": {"_count": 2, "Harrys": {"_count": 1}, "her": {"_count": 1}}, "after": {"_count": 8, "a": {"_count": 6}, "what": {"_count": 1}, "Dumbledores": {"_count": 1}}, "Snapes": {"_count": 1, "voice": {"_count": 1}}, "shrugging": {"_count": 4, "": {"_count": 4}}, "watching": {"_count": 1, "Madame": {"_count": 1}}, "use": {"_count": 1, "the": {"_count": 1}}, "matteroffactly": {"_count": 1, "scratching": {"_count": 1}}, "noticing": {"_count": 1, "how": {"_count": 1}}, "untruthfully": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 6, "in": {"_count": 1}, "frowning": {"_count": 1}, "rubbing": {"_count": 1}, "smiling": {"_count": 1}, "avoiding": {"_count": 1}, "waving": {"_count": 1}}, "careful": {"_count": 1, "to": {"_count": 1}}, "Funny": {"_count": 1, "goblins": {"_count": 1}}, "Great": {"_count": 1, "man": {"_count": 1}}, "Never": {"_count": 1, "shown": {"_count": 1}}, "Go": {"_count": 1, "on": {"_count": 1}}, "\u2018because": {"_count": 1, "Professor": {"_count": 1}}, "curtly": {"_count": 4, "": {"_count": 3}, "as": {"_count": 1}}, "Moodys": {"_count": 2, "searched": {"_count": 1}, "gvoice": {"_count": 1}}, "crossly": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "snapping": {"_count": 2, "shut": {"_count": 1}, "her": {"_count": 1}}, "hopelessly": {"_count": 2, "": {"_count": 2}}, "Wet": {"_count": 1, "this": {"_count": 1}}, "Krum": {"_count": 12, "": {"_count": 2}, "shortly": {"_count": 1}, "looking": {"_count": 1}, "staring": {"_count": 1}, "doubtfully": {"_count": 1}, "sitting": {"_count": 1}, "abruptly": {"_count": 1}, "eyebrows": {"_count": 1}, "as": {"_count": 1}, "if": {"_count": 1}, "coldly": {"_count": 1}}, "A": {"_count": 2, "conference": {"_count": 1}, "gift": {"_count": 1}}, "reading": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "Imagine": {"_count": 1, "that": {"_count": 1}}, "getting": {"_count": 2, "to": {"_count": 2}}, "M": {"_count": 1, "Master": {"_count": 1}}, "severely": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "mutinously": {"_count": 1, "swaying": {"_count": 1}}, "indignantly": {"_count": 1, "stopping": {"_count": 1}}, "sidestepping": {"_count": 1, "Snape": {"_count": 1}}, "hes": {"_count": 3, "done": {"_count": 1}, "getting": {"_count": 1}, "been": {"_count": 1}}, "lighting": {"_count": 1, "his": {"_count": 1}}, "annoyed": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 1, "managed": {"_count": 1}}, "Ha": {"_count": 1, "": {"_count": 1}}, "amazed": {"_count": 2, "": {"_count": 2}}, "some": {"_count": 1, "of": {"_count": 1}}, "clearly": {"_count": 1, "so": {"_count": 1}}, "Quite": {"_count": 1, "understandable": {"_count": 1}}, "someone": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 3, "marked": {"_count": 1}, "not": {"_count": 1}, "going": {"_count": 1}}, "turning": {"_count": 10, "back": {"_count": 4}, "around": {"_count": 1}, "her": {"_count": 1}, "haughtily": {"_count": 1}, "to": {"_count": 3}}, "encouragingly": {"_count": 1, "looking": {"_count": 1}}, "gazing": {"_count": 1, "into": {"_count": 1}}, "helping": {"_count": 1, "himself": {"_count": 1}}, "continuing": {"_count": 1, "to": {"_count": 1}}, "bow": {"_count": 1, "Voldemort": {"_count": 1}}, "stay": {"_count": 1, "said": {"_count": 1}}, "stopping": {"_count": 3, "dead": {"_count": 1}, "mid": {"_count": 1}, "in": {"_count": 1}}, "Rennervate": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 2, "mother": {"_count": 1}, "blood": {"_count": 1}}, "waving": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "Dumbledores": {"_count": 3, "got": {"_count": 1}, "voice": {"_count": 1}, "portrait": {"_count": 1}}, "evasively": {"_count": 2, "": {"_count": 2}}, "they": {"_count": 5, "didnt": {"_count": 1}, "can": {"_count": 1}, "did": {"_count": 1}, "would": {"_count": 1}, "were": {"_count": 1}}, "scathingly": {"_count": 1, "": {"_count": 1}}, "Piers": {"_count": 1, "": {"_count": 1}}, "Gordon": {"_count": 1, "": {"_count": 1}}, "SHUT": {"_count": 1, "IT": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "shut": {"_count": 2, "up": {"_count": 1}, "UP": {"_count": 1}}, "tragically": {"_count": 1, "wringing": {"_count": 1}}, "Mundungus": {"_count": 13, "weakly": {"_count": 1}, "his": {"_count": 2}, "peering": {"_count": 1}, "": {"_count": 4}, "leaning": {"_count": 1}, "who": {"_count": 1}, "at": {"_count": 1}, "Fletcher": {"_count": 1}, "snatching": {"_count": 1}}, "forcing": {"_count": 1, "himself": {"_count": 1}}, "why": {"_count": 2, "this": {"_count": 1}, "hed": {"_count": 1}}, "disbelievingly": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 53, "conversationally": {"_count": 1}, "brightly": {"_count": 4}, "decisively": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 12}, "walking": {"_count": 1}, "slamming": {"_count": 1}, "enviously": {"_count": 1}, "appreciatively": {"_count": 1}, "as": {"_count": 1}, "striding": {"_count": 1}, "enthusiastically": {"_count": 1}, "sadly": {"_count": 1}, "earnestly": {"_count": 1}, "patting": {"_count": 1}, "hugging": {"_count": 1}, "musingly": {"_count": 1}, "beckoning": {"_count": 1}, "and": {"_count": 4}, "swiftly": {"_count": 1}, "casting": {"_count": 1}, "not": {"_count": 1}, "without": {"_count": 1}, "still": {"_count": 1}, "flatly": {"_count": 1}, "frowning": {"_count": 1}, "who": {"_count": 2}, "picking": {"_count": 1}, "blankly": {"_count": 1}, "in": {"_count": 2}, "seizing": {"_count": 1}, "from": {"_count": 1}, "warmly": {"_count": 1}, "at": {"_count": 1}}, "Kingsley": {"_count": 12, "Shacklebolt": {"_count": 2}, "carelessly": {"_count": 1}, "brusquely": {"_count": 1}, "": {"_count": 5}, "in": {"_count": 1}, "stowing": {"_count": 1}, "finally": {"_count": 1}}, "pensively": {"_count": 1, "tugging": {"_count": 1}}, "well": {"_count": 1, "he": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "Dad": {"_count": 1, "was": {"_count": 1}}, "bracingly": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "to": {"_count": 1}}, "lifting": {"_count": 1, "the": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Stuff": {"_count": 1, "he": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "downstairs": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "is": {"_count": 3, "that": {"_count": 2}, "the": {"_count": 1}}, "Kreacher": {"_count": 7, "bowing": {"_count": 2}, "knows": {"_count": 1}, "sinking": {"_count": 1}, "": {"_count": 1}, "tears": {"_count": 1}, "with": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "Master": {"_count": 3, "must": {"_count": 1}, "Malfoy": {"_count": 1}, "Regulus": {"_count": 1}}, "Ah": {"_count": 3, "yes": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "Level": {"_count": 3, "six": {"_count": 1}, "two": {"_count": 1}, "four": {"_count": 1}}, "Bode": {"_count": 2, "surveying": {"_count": 1}, "would": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "rather": {"_count": 5, "aggressively": {"_count": 1}, "than": {"_count": 1}, "stiffly": {"_count": 1}, "unnecessarily": {"_count": 1}, "fiercely": {"_count": 1}}, "beckoning": {"_count": 1, "Harry": {"_count": 1}}, "poking": {"_count": 1, "her": {"_count": 1}}, "echoing": {"_count": 1, "Fred": {"_count": 1}}, "fondly": {"_count": 2, "ruffling": {"_count": 1}, "": {"_count": 1}}, "Whats": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "soothingly": {"_count": 1, "patting": {"_count": 1}}, "tears": {"_count": 2, "spilling": {"_count": 1}, "spattering": {"_count": 1}}, "winking": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 76, "dreamily": {"_count": 3}, "in": {"_count": 3}, "her": {"_count": 2}, "coldly": {"_count": 1}, "to": {"_count": 1}, "Ive": {"_count": 1}, "": {"_count": 11}, "unfazed": {"_count": 1}, "solemnly": {"_count": 1}, "angrily": {"_count": 1}, "Lovegood": {"_count": 1}, "pointing": {"_count": 1}, "happily": {"_count": 4}, "very": {"_count": 1}, "chipping": {"_count": 1}, "dipping": {"_count": 1}, "brightly": {"_count": 2}, "who": {"_count": 1}, "serenely": {"_count": 7}, "looking": {"_count": 2}, "smiling": {"_count": 2}, "maddeningly": {"_count": 1}, "calmly": {"_count": 1}, "sliding": {"_count": 1}, "excitedly": {"_count": 1}, "eagerly": {"_count": 1}, "sadly": {"_count": 1}, "sticking": {"_count": 1}, "vaguely": {"_count": 3}, "observing": {"_count": 1}, "simply": {"_count": 1}, "conversationally": {"_count": 1}, "once": {"_count": 1}, "as": {"_count": 1}, "beaming": {"_count": 1}, "matteroffactly": {"_count": 1}, "politely": {"_count": 1}, "unexpectedly": {"_count": 1}, "rummaging": {"_count": 1}, "sucking": {"_count": 1}, "swaying": {"_count": 1}, "and": {"_count": 1}, "watching": {"_count": 1}, "approaching": {"_count": 1}, "seriously": {"_count": 1}, "sounding": {"_count": 1}, "encouragingly": {"_count": 1}}, "proudly": {"_count": 2, "": {"_count": 2}}, "aggressively": {"_count": 3, "before": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "for": {"_count": 6, "how": {"_count": 1}, "this": {"_count": 1}, "me": {"_count": 1}, "Malfoy": {"_count": 1}, "hexing": {"_count": 1}, "you": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "bowing": {"_count": 1, "to": {"_count": 1}}, "illuminating": {"_count": 1, "not": {"_count": 1}}, "glumly": {"_count": 4, "staring": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}}, "moving": {"_count": 2, "across": {"_count": 1}, "out": {"_count": 1}}, "Look": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "\u2018His": {"_count": 1, "gift": {"_count": 1}}, "both": {"_count": 1, "Harry": {"_count": 1}}, "cupboard": {"_count": 1, "sprang": {"_count": 1}}, "Has": {"_count": 1, "everybody": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "leave": {"_count": 1, "me": {"_count": 1}}, "Have": {"_count": 1, "a": {"_count": 1}}, "grudgingly": {"_count": 2, "": {"_count": 2}}, "forcefully": {"_count": 1, "to": {"_count": 1}}, "edgily": {"_count": 1, "Oh": {"_count": 1}}, "little": {"_count": 1, "Professor": {"_count": 1}}, "hopefully": {"_count": 1, "that": {"_count": 1}}, "Oy": {"_count": 1, "Potter": {"_count": 1}}, "Umbridge": {"_count": 69, "smiling": {"_count": 4}, "sweetly": {"_count": 4}, "looking": {"_count": 4}, "sleekly": {"_count": 2}, "still": {"_count": 2}, "her": {"_count": 3}, "now": {"_count": 1}, "giving": {"_count": 1}, "pointing": {"_count": 2}, "": {"_count": 5}, "swiftly": {"_count": 1}, "softly": {"_count": 1}, "in": {"_count": 6}, "loudly": {"_count": 2}, "patting": {"_count": 1}, "with": {"_count": 3}, "shrilly": {"_count": 1}, "silkily": {"_count": 1}, "impatiently": {"_count": 1}, "smugly": {"_count": 1}, "at": {"_count": 1}, "furiously": {"_count": 1}, "breathlessly": {"_count": 1}, "pulling": {"_count": 1}, "curtly": {"_count": 1}, "who": {"_count": 2}, "let": {"_count": 1}, "triumphantly": {"_count": 1}, "shooting": {"_count": 1}, "shaking": {"_count": 2}, "watching": {"_count": 1}, "quietly": {"_count": 1}, "seizing": {"_count": 1}, "eagerly": {"_count": 2}, "and": {"_count": 1}, "harshly": {"_count": 1}, "whose": {"_count": 1}, "though": {"_count": 1}, "sinking": {"_count": 1}, "no": {"_count": 1}}, "slamming": {"_count": 1, "the": {"_count": 1}}, "Lines": {"_count": 1, "": {"_count": 1}}, "defensively": {"_count": 3, "turning": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "Umbridges": {"_count": 2, "soft": {"_count": 2}}, "bluntly": {"_count": 2, "": {"_count": 1}, "dumping": {"_count": 1}}, "blearily": {"_count": 1, "": {"_count": 1}}, "gesturing": {"_count": 2, "to": {"_count": 1}, "toward": {"_count": 1}}, "Listen": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "flattening": {"_count": 1, "it": {"_count": 1}}, "Do": {"_count": 3, "you": {"_count": 3}}, "accelerating": {"_count": 1, "to": {"_count": 1}}, "consolingly": {"_count": 1, "its": {"_count": 1}}, "most": {"_count": 1, "carefully": {"_count": 1}}, "half": {"_count": 3, "laughing": {"_count": 1}, "irritably": {"_count": 1}, "angry": {"_count": 1}}, "reproachfully": {"_count": 1, "": {"_count": 1}}, "Junior": {"_count": 1, "Assistant": {"_count": 1}}, "Weasley": {"_count": 2, "last": {"_count": 1}, "": {"_count": 1}}, "immersed": {"_count": 1, "in": {"_count": 1}}, "furious": {"_count": 1, "at": {"_count": 1}}, "gratefully": {"_count": 1, "scratching": {"_count": 1}}, "almost": {"_count": 1, "shouting": {"_count": 1}}, "Yeah": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "explaining": {"_count": 1, "how": {"_count": 1}}, "yes": {"_count": 1, "but": {"_count": 1}}, "Anthony": {"_count": 1, "Goldstein": {"_count": 1}}, "Michael": {"_count": 3, "Corner": {"_count": 3}}, "wow": {"_count": 2, "softly": {"_count": 2}}, "Susan": {"_count": 1, "Bones": {"_count": 1}}, "Zacharias": {"_count": 6, "Smith": {"_count": 4}, "slowly": {"_count": 1}, "loftily": {"_count": 1}}, "snarled": {"_count": 1, "Fred": {"_count": 1}}, "yourself": {"_count": 3, "if": {"_count": 1}, "was": {"_count": 1}, "youd": {"_count": 1}}, "darkly": {"_count": 4, "making": {"_count": 1}, "returning": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "stunned": {"_count": 2, "": {"_count": 2}}, "outraged": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 1, "voices": {"_count": 1}}, "sadly": {"_count": 4, "his": {"_count": 1}, "": {"_count": 1}, "Ive": {"_count": 1}, "I": {"_count": 1}}, "Terry": {"_count": 3, "Boot": {"_count": 3}}, "anythin": {"_count": 1, "abou": {"_count": 1}}, "Altars": {"_count": 1, "Dumbledore": {"_count": 1}}, "lamely": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "people": {"_count": 1}}, "theyre": {"_count": 1, "dangerous": {"_count": 1}}, "calling": {"_count": 1, "them": {"_count": 1}}, "feebly": {"_count": 5, "": {"_count": 2}, "Um": {"_count": 1}, "Oh": {"_count": 1}, "pointing": {"_count": 1}}, "mopping": {"_count": 1, "her": {"_count": 1}}, "truthfully": {"_count": 1, "": {"_count": 1}}, "Shoo": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 2, "slightly": {"_count": 1}, "": {"_count": 1}}, "Naturally": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 4, "sweeping": {"_count": 1}, "crying": {"_count": 1}, "because": {"_count": 1}, "resuming": {"_count": 1}}, "Phineas": {"_count": 15, "in": {"_count": 1}, "Nigellus": {"_count": 12}, "": {"_count": 1}, "brusquely": {"_count": 1}}, "three": {"_count": 1, "Harry": {"_count": 1}}, "Back": {"_count": 1, "again": {"_count": 1}}, "stretching": {"_count": 1, "out": {"_count": 1}}, "Arthurs": {"_count": 1, "been": {"_count": 1}}, "Somebody": {"_count": 1, "else": {"_count": 1}}, "dropping": {"_count": 1, "his": {"_count": 1}}, "Running": {"_count": 1, "away": {"_count": 1}}, "things": {"_count": 1, "like": {"_count": 1}}, "\u2018out": {"_count": 1, "maybe": {"_count": 1}}, "Havent": {"_count": 1, "we": {"_count": 1}}, "Gilderoy": {"_count": 1, "you": {"_count": 1}}, "Nevilles": {"_count": 2, "grandmother": {"_count": 2}}, "casting": {"_count": 1, "a": {"_count": 1}}, "sleekly": {"_count": 1, "": {"_count": 1}}, "Welcome": {"_count": 1, "to": {"_count": 1}}, "Tonics": {"_count": 1, "briskly": {"_count": 1}}, "\u2018e": {"_count": 1, "didnt": {"_count": 1}}, "blushing": {"_count": 1, "crimson": {"_count": 1}}, "Legilimency": {"_count": 1, "sounded": {"_count": 1}}, "whats": {"_count": 1, "in": {"_count": 1}}, "Harrys": {"_count": 1, "insides": {"_count": 1}}, "baldly": {"_count": 2, "The": {"_count": 1}, "I": {"_count": 1}}, "witheringly": {"_count": 1, "": {"_count": 1}}, "cackling": {"_count": 1, "": {"_count": 1}}, "Malfoys": {"_count": 2, "dad": {"_count": 1}, "fathers": {"_count": 1}}, "taken": {"_count": 1, "aback": {"_count": 1}}, "McGonagall": {"_count": 4, "": {"_count": 1}, "coldly": {"_count": 1}, "bitterly": {"_count": 1}, "you": {"_count": 1}}, "audibly": {"_count": 1, "Blimey": {"_count": 1}}, "Firenzes": {"_count": 1, "calm": {"_count": 1}}, "jubilantly": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "coaxingly": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "Freds": {"_count": 2, "voice": {"_count": 2}}, "Things": {"_count": 1, "are": {"_count": 1}}, "gaily": {"_count": 1, "Youre": {"_count": 1}}, "admiringly": {"_count": 1, "": {"_count": 1}}, "James": {"_count": 20, "in": {"_count": 1}, "impatiently": {"_count": 1}, "": {"_count": 4}, "casually": {"_count": 1}, "quietly": {"_count": 1}, "loudly": {"_count": 1}, "coldly": {"_count": 1}, "and": {"_count": 3}, "appearing": {"_count": 1}, "quickly": {"_count": 1}, "earnestly": {"_count": 1}, "trying": {"_count": 1}, "who": {"_count": 1}, "grinning": {"_count": 1}, "enthusiastically": {"_count": 1}}, "stuffing": {"_count": 2, "the": {"_count": 2}}, "Lily": {"_count": 9, "": {"_count": 4}, "still": {"_count": 1}, "but": {"_count": 1}, "relaxing": {"_count": 1}, "surprise": {"_count": 1}, "and": {"_count": 1}}, "Let": {"_count": 1, "him": {"_count": 1}}, "Petrificus": {"_count": 1, "Totalusl": {"_count": 1}}, "fairly": {"_count": 1, "looking": {"_count": 1}}, "your": {"_count": 3, "father": {"_count": 1}, "mother": {"_count": 1}, "master": {"_count": 1}}, "jerking": {"_count": 2, "his": {"_count": 2}}, "tentatively": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "Harry": {"_count": 1}}, "Would": {"_count": 1, "yeh": {"_count": 1}}, "Magorian": {"_count": 6, "": {"_count": 1}, "quietly": {"_count": 1}, "smoothly": {"_count": 1}, "calmly": {"_count": 1}, "roughly": {"_count": 1}, "as": {"_count": 1}}, "Bane": {"_count": 1, "coming": {"_count": 1}}, "feverishly": {"_count": 1, "": {"_count": 1}}, "faintly": {"_count": 3, "looking": {"_count": 1}, "staring": {"_count": 1}, "moving": {"_count": 1}}, "Step": {"_count": 1, "away": {"_count": 1}}, "Gget": {"_count": 1, "there": {"_count": 1}}, "immediately": {"_count": 1, "Yeah": {"_count": 1}}, "When": {"_count": 1, "you": {"_count": 1}}, "gleefully": {"_count": 1, "": {"_count": 1}}, "Warrington": {"_count": 1, "shoving": {"_count": 1}}, "observing": {"_count": 1, "her": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "Department": {"_count": 1, "of": {"_count": 1}}, "Alohomora": {"_count": 2, "Nothing": {"_count": 1}, "": {"_count": 1}}, "Very": {"_count": 4, "good": {"_count": 1}, "well": {"_count": 3}}, "triumphantly": {"_count": 2, "The": {"_count": 1}, "to": {"_count": 1}}, "playing": {"_count": 1, "for": {"_count": 1}}, "right": {"_count": 1, "lets": {"_count": 1}}, "fearfully": {"_count": 1, "": {"_count": 1}}, "Bellatrix": {"_count": 12, "": {"_count": 1}, "raising": {"_count": 1}, "passionately": {"_count": 1}, "firing": {"_count": 1}, "flushing": {"_count": 1}, "furiously": {"_count": 1}, "her": {"_count": 1}, "indifferently": {"_count": 1}, "ruthlessly": {"_count": 1}, "indicating": {"_count": 1}, "sharply": {"_count": 1}, "softly": {"_count": 1}}, "Finite": {"_count": 1, "": {"_count": 1}}, "tell": {"_count": 1, "your": {"_count": 1}}, "banking": {"_count": 1, "on": {"_count": 1}}, "comfortably": {"_count": 1, "": {"_count": 1}}, "yet": {"_count": 2, "again": {"_count": 1}, "another": {"_count": 1}}, "Alastor": {"_count": 1, "Moody": {"_count": 1}}, "Five": {"_count": 1, "years": {"_count": 1}}, "mechanically": {"_count": 1, "": {"_count": 1}}, "withdrawing": {"_count": 1, "the": {"_count": 1}}, "Not": {"_count": 1, "everyone": {"_count": 1}}, "prodding": {"_count": 1, "his": {"_count": 1}}, "MadEye": {"_count": 2, "who": {"_count": 1}, "impatiently": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "Hell": {"_count": 1, "be": {"_count": 1}}, "Scrimgeour": {"_count": 39, "shortly": {"_count": 1}, "without": {"_count": 1}, "coldly": {"_count": 1}, "": {"_count": 14}, "standing": {"_count": 1}, "stopping": {"_count": 1}, "after": {"_count": 1}, "with": {"_count": 1}, "sounding": {"_count": 1}, "frowning": {"_count": 1}, "quickly": {"_count": 1}, "brusquely": {"_count": 1}, "would": {"_count": 1}, "his": {"_count": 2}, "quietly": {"_count": 2}, "who": {"_count": 2}, "as": {"_count": 1}, "dismissively": {"_count": 1}, "watching": {"_count": 1}, "shifting": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}, "breathing": {"_count": 1}}, "Narcissa": {"_count": 7, "in": {"_count": 1}, "breathing": {"_count": 1}, "restraining": {"_count": 1}, "with": {"_count": 1}, "leading": {"_count": 1}, "sharply": {"_count": 1}, "furiously": {"_count": 1}}, "ungraciously": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 83, "at": {"_count": 1}, "bluntly": {"_count": 1}, "": {"_count": 13}, "clearly": {"_count": 1}, "impatiently": {"_count": 1}, "jumping": {"_count": 1}, "cozily": {"_count": 1}, "calmly": {"_count": 1}, "looking": {"_count": 1}, "I": {"_count": 1}, "shifting": {"_count": 1}, "watching": {"_count": 1}, "turning": {"_count": 2}, "with": {"_count": 2}, "whose": {"_count": 1}, "returning": {"_count": 1}, "happily": {"_count": 2}, "now": {"_count": 2}, "who": {"_count": 3}, "ignoring": {"_count": 1}, "genially": {"_count": 2}, "it": {"_count": 1}, "again": {"_count": 1}, "apparently": {"_count": 1}, "taking": {"_count": 1}, "suddenly": {"_count": 2}, "without": {"_count": 1}, "his": {"_count": 3}, "poking": {"_count": 1}, "regarding": {"_count": 1}, "waving": {"_count": 3}, "hiccuping": {"_count": 1}, "wagging": {"_count": 2}, "affably": {"_count": 1}, "quietly": {"_count": 1}, "relenting": {"_count": 1}, "smoothly": {"_count": 1}, "as": {"_count": 1}, "handing": {"_count": 1}, "had": {"_count": 1}, "cheerily": {"_count": 1}, "airily": {"_count": 1}, "an": {"_count": 1}, "stopping": {"_count": 1}, "softly": {"_count": 1}, "absentmindedly": {"_count": 1}, "approaching": {"_count": 1}, "stepping": {"_count": 1}, "dividing": {"_count": 1}, "repressing": {"_count": 1}, "in": {"_count": 2}, "briskly": {"_count": 1}, "not": {"_count": 1}, "and": {"_count": 1}, "uncomfortably": {"_count": 1}, "shaking": {"_count": 1}, "gruffly": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "our": {"_count": 1, "O": {"_count": 1}}, "importantly": {"_count": 1, "Jus": {"_count": 1}}, "Borgin": {"_count": 1, "in": {"_count": 1}}, "\u2018that": {"_count": 1, "one": {"_count": 1}}, "\u2018Dont": {"_count": 1, "forget": {"_count": 1}}, "Belby": {"_count": 1, "who": {"_count": 1}}, "McLaggen": {"_count": 6, "": {"_count": 2}, "with": {"_count": 1}, "menacingly": {"_count": 1}, "disregarding": {"_count": 1}, "in": {"_count": 1}}, "Zabini": {"_count": 6, "angrily": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 2}, "indifferently": {"_count": 1}, "coldly": {"_count": 1}}, "havent": {"_count": 1, "I": {"_count": 1}}, "Wotcher": {"_count": 1, "Harry": {"_count": 1}}, "confidently": {"_count": 3, "pointing": {"_count": 1}, "stepping": {"_count": 1}, "": {"_count": 1}}, "Tergeol": {"_count": 1, "and": {"_count": 1}}, "airily": {"_count": 1, "": {"_count": 1}}, "savagely": {"_count": 1, "": {"_count": 1}}, "resentfully": {"_count": 1, "": {"_count": 1}}, "such": {"_count": 1, "things": {"_count": 1}}, "portentously": {"_count": 1, "holding": {"_count": 1}}, "rapping": {"_count": 1, "it": {"_count": 1}}, "LITTLE": {"_count": 1, "HANGLETON": {"_count": 1}}, "Ogden": {"_count": 20, "nervously": {"_count": 1}, "angrily": {"_count": 1}, "clambering": {"_count": 1}, "as": {"_count": 1}, "coldly": {"_count": 1}, "": {"_count": 5}, "tartly": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 2}, "sternly": {"_count": 1}, "looking": {"_count": 1}, "blinking": {"_count": 1}, "hastily": {"_count": 1}, "doggedly": {"_count": 1}, "firmly": {"_count": 1}}, "Gaunt": {"_count": 9, "": {"_count": 2}, "aggressively": {"_count": 1}, "grudgingly": {"_count": 1}, "his": {"_count": 1}, "triumphantly": {"_count": 1}, "sharply": {"_count": 1}, "quietly": {"_count": 1}, "in": {"_count": 1}}, "Muggle": {"_count": 1, "causing": {"_count": 1}}, "defiantly": {"_count": 2, "to": {"_count": 2}}, "Morfin": {"_count": 3, "a": {"_count": 1}, "and": {"_count": 1}, "spitting": {"_count": 1}}, "Reparo": {"_count": 3, "There": {"_count": 1}, "": {"_count": 2}}, "Demelza": {"_count": 1, "": {"_count": 1}}, "Levicorpusl": {"_count": 1, "inside": {"_count": 1}}, "robustly": {"_count": 1, "": {"_count": 1}}, "Shall": {"_count": 1, "we": {"_count": 1}}, "muttered": {"_count": 1, "Ron": {"_count": 1}}, "Theres": {"_count": 3, "no": {"_count": 2}, "a": {"_count": 1}}, "Hes": {"_count": 2, "a": {"_count": 1}, "having": {"_count": 1}}, "Tell": {"_count": 1, "the": {"_count": 1}}, "flaring": {"_count": 2, "up": {"_count": 2}}, "confusedly": {"_count": 1, "": {"_count": 1}}, "Stop": {"_count": 1, "bossing": {"_count": 1}}, "astounded": {"_count": 1, "": {"_count": 1}}, "drawing": {"_count": 1, "up": {"_count": 1}}, "Romilda": {"_count": 2, "Vane": {"_count": 1}, "thrusting": {"_count": 1}}, "Worple": {"_count": 3, "peering": {"_count": 1}, "": {"_count": 1}, "seizing": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "Course": {"_count": 1, "you": {"_count": 1}}, "Is": {"_count": 1, "Hermione": {"_count": 1}}, "Dont": {"_count": 2, "you": {"_count": 1}, "let": {"_count": 1}}, "Thank": {"_count": 1, "you": {"_count": 1}}, "\u2018Dumbledore": {"_count": 1, "never": {"_count": 1}}, "next": {"_count": 1, "either": {"_count": 1}}, "Twycross": {"_count": 5, "": {"_count": 3}, "focus": {"_count": 1}, "dryly": {"_count": 1}}, "Wilkie": {"_count": 1, "Twycross": {"_count": 1}}, "Until": {"_count": 1, "next": {"_count": 1}}, "tha": {"_count": 1, "said": {"_count": 1}}, "summat": {"_count": 1, "abou": {"_count": 1}}, "Langlockl": {"_count": 1, "Peeves": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "Hepzibah": {"_count": 9, "imperiously": {"_count": 1}, "turning": {"_count": 1}, "I": {"_count": 1}, "waving": {"_count": 1}, "happily": {"_count": 2}, "leaning": {"_count": 1}, "delighted": {"_count": 1}, "looking": {"_count": 1}}, "Enter": {"_count": 1, "": {"_count": 1}}, "Greatness": {"_count": 1, "inspires": {"_count": 1}}, "plaintively": {"_count": 1, "": {"_count": 1}}, "swinging": {"_count": 1, "his": {"_count": 1}}, "scrambling": {"_count": 1, "to": {"_count": 1}}, "shed": {"_count": 1, "come": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "wisely": {"_count": 1, "to": {"_count": 1}}, "scanning": {"_count": 1, "it": {"_count": 1}}, "Four": {"_count": 1, "years": {"_count": 1}}, "running": {"_count": 1, "an": {"_count": 1}}, "evidently": {"_count": 1, "unable": {"_count": 1}}, "soulfully": {"_count": 1, "as": {"_count": 1}}, "sure": {"_count": 1, "that": {"_count": 1}}, "Fenrir": {"_count": 1, "Greyback": {"_count": 1}}, "Aguamenti": {"_count": 1, "A": {"_count": 1}}, "Greyback": {"_count": 8, "attacked": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "appreciatively": {"_count": 1}, "seizing": {"_count": 1}, "to": {"_count": 1}, "menacingly": {"_count": 1}}, "squeaked": {"_count": 1, "Professor": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "Yaxley": {"_count": 6, "his": {"_count": 1}, "": {"_count": 3}, "who": {"_count": 1}, "not": {"_count": 1}}, "Dedalus": {"_count": 5, "happily": {"_count": 1}, "pulling": {"_count": 1}, "": {"_count": 1}, "nodding": {"_count": 1}, "Diggle": {"_count": 1}}, "Hestia": {"_count": 3, "tersely": {"_count": 1}, "indignantly": {"_count": 1}, "also": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "Diggle": {"_count": 1, "brightly": {"_count": 1}}, "YouKnowWho": {"_count": 1, "would": {"_count": 1}}, "Ted": {"_count": 14, "Tonks": {"_count": 2}, "sharply": {"_count": 1}, "tapping": {"_count": 1}, "": {"_count": 10}}, "remembering": {"_count": 1, "all": {"_count": 1}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "MadEyes": {"_count": 1, "dead": {"_count": 1}}, "Tergeo": {"_count": 1, "": {"_count": 1}}, "imploringly": {"_count": 1, "I": {"_count": 1}}, "Monsieur": {"_count": 2, "Delacour": {"_count": 2}}, "Accio": {"_count": 2, "Glasses": {"_count": 1}, "Locked": {"_count": 1}}, "Happy": {"_count": 1, "seventeenth": {"_count": 1}}, "Right": {"_count": 1, "then": {"_count": 1}}, "hugging": {"_count": 1, "him": {"_count": 1}}, "Here": {"_count": 1, "permettezmoi": {"_count": 1}}, "extending": {"_count": 1, "a": {"_count": 1}}, "Daddy": {"_count": 1, "look": {"_count": 1}}, "\u2018Oh": {"_count": 1, "dear": {"_count": 1}}, "much": {"_count": 1, "too": {"_count": 1}}, "Auntie": {"_count": 8, "Muriel": {"_count": 8}}, "Grindelvald": {"_count": 1, "killed": {"_count": 1}}, "recalling": {"_count": 1, "Harry": {"_count": 1}}, "draining": {"_count": 1, "his": {"_count": 1}}, "Doge": {"_count": 12, "he": {"_count": 1}, "dabbing": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "turning": {"_count": 1}, "more": {"_count": 1}, "but": {"_count": 1}, "desperately": {"_count": 1}, "with": {"_count": 1}, "through": {"_count": 1}, "clutching": {"_count": 1}, "and": {"_count": 1}}, "hiccuping": {"_count": 1, "slightly": {"_count": 1}}, "Obliviate": {"_count": 1, "": {"_count": 1}}, "theyve": {"_count": 1, "put": {"_count": 1}}, "Homenum": {"_count": 1, "revelio": {"_count": 1}}, "fighting": {"_count": 1, "to": {"_count": 1}}, "stuff": {"_count": 1, "about": {"_count": 1}}, "Of": {"_count": 1, "course": {"_count": 1}}, "relentlessly": {"_count": 1, "for": {"_count": 1}}, "pressing": {"_count": 1, "the": {"_count": 1}}, "flipping": {"_count": 1, "feverishly": {"_count": 1}}, "passing": {"_count": 1, "Harry": {"_count": 1}}, "stupid": {"_count": 1, "isnt": {"_count": 1}}, "Cattermole": {"_count": 1, "": {"_count": 1}}, "Pius": {"_count": 1, "Thicknesse": {"_count": 1}}, "Thicknesse": {"_count": 1, "": {"_count": 1}}, "Stupefyl": {"_count": 1, "There": {"_count": 1}}, "moaning": {"_count": 1, "a": {"_count": 1}}, "fear": {"_count": 1, "of": {"_count": 1}}, "eyes": {"_count": 1, "still": {"_count": 1}}, "crouching": {"_count": 1, "down": {"_count": 1}}, "prising": {"_count": 1, "a": {"_count": 1}}, "Dirk": {"_count": 5, "": {"_count": 3}, "me": {"_count": 1}, "heavily": {"_count": 1}}, "replied": {"_count": 1, "Dirk": {"_count": 1}}, "between": {"_count": 1, "gritted": {"_count": 1}}, "wed": {"_count": 2, "go": {"_count": 1}, "help": {"_count": 1}}, "Bathilda": {"_count": 1, "Bagshot": {"_count": 1}}, "similar": {"_count": 1, "things": {"_count": 1}}, "everything": {"_count": 1, "even": {"_count": 1}}, "harshly": {"_count": 1, "": {"_count": 1}}, "gaping": {"_count": 1, "from": {"_count": 1}}, "fixing": {"_count": 1, "her": {"_count": 1}}, "Speaking": {"_count": 1, "of": {"_count": 1}}, "apprehensively": {"_count": 1, "": {"_count": 1}}, "leading": {"_count": 1, "the": {"_count": 1}}, "Xenophilius": {"_count": 21, "still": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 10}, "very": {"_count": 1}, "dogmatically": {"_count": 1}, "smacking": {"_count": 1}, "maddeningly": {"_count": 1}, "waving": {"_count": 1}, "as": {"_count": 2}, "now": {"_count": 1}, "his": {"_count": 1}}, "shoving": {"_count": 1, "the": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "Selwyn": {"_count": 1, "if": {"_count": 1}}, "Lees": {"_count": 1, "voice": {"_count": 1}}, "Greybacks": {"_count": 1, "gloating": {"_count": 1}}, "repeated": {"_count": 1, "Greyback": {"_count": 1}}, "Scabior": {"_count": 7, "over": {"_count": 1}, "": {"_count": 5}, "sounding": {"_count": 1}}, "Narcissas": {"_count": 1, "cold": {"_count": 1}}, "Bellatrixs": {"_count": 1, "voice": {"_count": 1}}, "drop": {"_count": 1, "them": {"_count": 1}}, "settling": {"_count": 1, "himself": {"_count": 1}}, "Ollivander": {"_count": 8, "in": {"_count": 2}, "": {"_count": 3}, "but": {"_count": 1}, "patting": {"_count": 1}, "with": {"_count": 1}}, "Arry": {"_count": 1, "": {"_count": 1}}, "Blimey": {"_count": 1, "a": {"_count": 1}}, "Weve": {"_count": 1, "just": {"_count": 1}}, "Travers": {"_count": 7, "coolly": {"_count": 1}, "": {"_count": 2}, "curiously": {"_count": 1}, "gesturing": {"_count": 1}, "approaching": {"_count": 1}, "looking": {"_count": 1}}, "Aberforth": {"_count": 21, "": {"_count": 10}, "and": {"_count": 4}, "when": {"_count": 1}, "leaning": {"_count": 1}, "quietly": {"_count": 1}, "roughly": {"_count": 1}, "tersely": {"_count": 1}, "gruffly": {"_count": 1}, "Im": {"_count": 1}}, "Which": {"_count": 1, "came": {"_count": 1}}, "Carrow": {"_count": 1, "": {"_count": 1}}, "Amycus": {"_count": 1, "his": {"_count": 1}}, "Whos": {"_count": 1, "there": {"_count": 1}}, "Flitwick": {"_count": 1, "and": {"_count": 1}}, "approaching": {"_count": 1, "the": {"_count": 1}}, "aghast": {"_count": 1, "": {"_count": 1}}, "Am": {"_count": 1, "I": {"_count": 1}}, "bath": {"_count": 1, "": {"_count": 1}}, "disdainfully": {"_count": 1, "": {"_count": 1}}, "crisply": {"_count": 1, "as": {"_count": 1}}, "Hold": {"_count": 1, "it": {"_count": 1}}, "Crabbe": {"_count": 2, "His": {"_count": 1}, "tugging": {"_count": 1}}, "Petunia": {"_count": 4, "but": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "now": {"_count": 1}}, "otherwise": {"_count": 1, "": {"_count": 1}}, "Evans": {"_count": 1, "Lily": {"_count": 1}}, "cutting": {"_count": 1, "across": {"_count": 1}}, "Oliver": {"_count": 1, "Wood": {"_count": 1}}, "Dolohov": {"_count": 2, "glancing": {"_count": 1}, "": {"_count": 1}}, "Grindelwald": {"_count": 1, "tried": {"_count": 1}}, "would": {"_count": 1, "beat": {"_count": 1}}, "Albus": {"_count": 2, "quickly": {"_count": 1}, "sounding": {"_count": 1}}}, "looking": {"_count": 1613, "at": {"_count": 226, "the": {"_count": 25}, "each": {"_count": 9}, "them": {"_count": 7}, "him": {"_count": 42}, "wands": {"_count": 1}, "Harry": {"_count": 31}, "their": {"_count": 1}, "its": {"_count": 1}, "Ron": {"_count": 6}, "his": {"_count": 7}, "Fangs": {"_count": 1}, "Malfoy": {"_count": 5}, "it": {"_count": 13}, "her": {"_count": 22}, "a": {"_count": 4}, "Hermiones": {"_count": 1}, "shabby": {"_count": 1}, "Hermione": {"_count": 10}, "these": {"_count": 1}, "Hedwigs": {"_count": 1}, "Harrys": {"_count": 1}, "Mr": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 2}, "everything": {"_count": 1}, "Dumbledore": {"_count": 5}, "something": {"_count": 1}, "that": {"_count": 2}, "either": {"_count": 1}, "": {"_count": 3}, "Zacharias": {"_count": 1}, "Ginny": {"_count": 1}, "Snape": {"_count": 1}, "himself": {"_count": 1}, "James": {"_count": 1}, "George": {"_count": 1}, "Professor": {"_count": 1}, "Lupin": {"_count": 1}, "Madam": {"_count": 1}, "anybody": {"_count": 1}, "Dean": {"_count": 1}, "Riddle": {"_count": 1}, "Fenrir": {"_count": 1}, "Lucius": {"_count": 1}, "Uncle": {"_count": 1}, "Auntie": {"_count": 1}, "any": {"_count": 1}, "Voldemort": {"_count": 1}}, "for": {"_count": 121, "something": {"_count": 6}, "in": {"_count": 1}, "socks": {"_count": 1}, "none": {"_count": 1}, "": {"_count": 8}, "me": {"_count": 1}, "the": {"_count": 18}, "a": {"_count": 11}, "boy": {"_count": 1}, "two": {"_count": 1}, "it": {"_count": 3}, "any": {"_count": 3}, "someone": {"_count": 4}, "another": {"_count": 1}, "spare": {"_count": 1}, "parchment": {"_count": 1}, "Justin": {"_count": 1}, "you": {"_count": 5}, "him": {"_count": 12}, "Black": {"_count": 2}, "an": {"_count": 4}, "trouble": {"_count": 3}, "Ron": {"_count": 2}, "some": {"_count": 1}, "more": {"_count": 2}, "things": {"_count": 1}, "her": {"_count": 1}, "Barry": {"_count": 1}, "Mr": {"_count": 1}, "bones": {"_count": 1}, "them": {"_count": 4}, "my": {"_count": 2}, "Professor": {"_count": 1}, "giants": {"_count": 1}, "misbehaving": {"_count": 1}, "copies": {"_count": 1}, "within": {"_count": 1}, "new": {"_count": 1}, "Snape": {"_count": 1}, "Gregorovitch": {"_count": 1}, "she": {"_count": 1}, "clues": {"_count": 1}, "photographs": {"_count": 1}, "truants": {"_count": 1}, "places": {"_count": 1}, "Hallows": {"_count": 1}, "we": {"_count": 1}, "objects": {"_count": 1}}, "very": {"_count": 39, "seriously": {"_count": 1}, "angry": {"_count": 2}, "peculiar": {"_count": 1}, "battered": {"_count": 1}, "grumpy": {"_count": 2}, "somber": {"_count": 2}, "happy": {"_count": 2}, "serious": {"_count": 2}, "smug": {"_count": 2}, "disappointed": {"_count": 1}, "impressed": {"_count": 1}, "tense": {"_count": 1}, "windswept": {"_count": 2}, "disgruntled": {"_count": 2}, "intently": {"_count": 1}, "anxious": {"_count": 1}, "selfconscious": {"_count": 1}, "shocked": {"_count": 1}, "satisfied": {"_count": 1}, "superior": {"_count": 1}, "familiar": {"_count": 1}, "ashamed": {"_count": 1}, "odd": {"_count": 1}, "worried": {"_count": 1}, "pretty": {"_count": 1}, "concerned": {"_count": 1}, "frightened": {"_count": 3}, "pleased": {"_count": 1}, "surprised": {"_count": 1}}, "up": {"_count": 102, "at": {"_count": 60}, "Dittany": {"_count": 1}, "stuff": {"_count": 1}, "": {"_count": 11}, "to": {"_count": 1}, "only": {"_count": 1}, "from": {"_count": 2}, "hexes": {"_count": 1}, "fresh": {"_count": 1}, "into": {"_count": 5}, "as": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 3}, "bits": {"_count": 1}, "the": {"_count": 1}, "potion": {"_count": 1}, "when": {"_count": 1}, "anxiously": {"_count": 1}, "out": {"_count": 1}, "apprehensively": {"_count": 1}, "now": {"_count": 1}, "alarmed": {"_count": 1}, "desperately": {"_count": 1}, "up": {"_count": 1}, "Harry": {"_count": 1}, "Keep": {"_count": 1}}, "both": {"_count": 8, "angry": {"_count": 1}, "abashed": {"_count": 1}, "surprised": {"_count": 2}, "bewildered": {"_count": 1}, "nervous": {"_count": 1}, "astonished": {"_count": 1}, "pleased": {"_count": 1}}, "furiously": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 26, "though": {"_count": 18}, "if": {"_count": 1}, "excited": {"_count": 1}, "strange": {"_count": 1}, "pleased": {"_count": 1}, "it": {"_count": 1}, "astonished": {"_count": 1}, "she": {"_count": 1}, "ever": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 13}, "?": {"_count": 3}}, "tired": {"_count": 4, "and": {"_count": 3}, "but": {"_count": 1}}, "hotel": {"_count": 1, "on": {"_count": 1}}, "around": {"_count": 119, "for": {"_count": 12}, "at": {"_count": 37}, "": {"_count": 21}, "in": {"_count": 3}, "squinting": {"_count": 1}, "trying": {"_count": 2}, "into": {"_count": 2}, "him": {"_count": 2}, "excitedly": {"_count": 1}, "felt": {"_count": 1}, "his": {"_count": 2}, "and": {"_count": 1}, "cheerfully": {"_count": 1}, "to": {"_count": 5}, "the": {"_count": 10}, "saw": {"_count": 1}, "them": {"_count": 1}, "with": {"_count": 3}, "as": {"_count": 4}, "while": {"_count": 1}, "nervously": {"_count": 3}, "carefully": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "groggily": {"_count": 1}, "but": {"_count": 1}}, "forward": {"_count": 27, "to": {"_count": 25}, "most": {"_count": 1}, "least": {"_count": 1}}, "gloomy": {"_count": 1, "": {"_count": 1}}, "depressed": {"_count": 1, "": {"_count": 1}}, "pleased": {"_count": 1, "with": {"_count": 1}}, "so": {"_count": 10, "nervous": {"_count": 2}, "angry": {"_count": 1}, "pathetic": {"_count": 1}, "happy": {"_count": 2}, "pleased": {"_count": 1}, "dreamy": {"_count": 1}, "clean": {"_count": 1}, "tidy": {"_count": 1}}, "straight": {"_count": 3, "into": {"_count": 3}}, "he": {"_count": 1, "said": {"_count": 1}}, "worried": {"_count": 8, "": {"_count": 7}, "that": {"_count": 1}}, "confused": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "others": {"_count": 1}}, "curiously": {"_count": 6, "at": {"_count": 3}, "from": {"_count": 1}, "after": {"_count": 1}, "blank": {"_count": 1}}, "back": {"_count": 29, "to": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 14}, "laughing": {"_count": 1}, "down": {"_count": 2}, "over": {"_count": 3}, "saw": {"_count": 1}, "up": {"_count": 1}, "out": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}, "wondering": {"_count": 1}, "toward": {"_count": 1}}, "disapprovingly": {"_count": 2, "at": {"_count": 2}}, "over": {"_count": 29, "his": {"_count": 9}, "at": {"_count": 13}, "Harrys": {"_count": 2}, "a": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}}, "frantically": {"_count": 1, "at": {"_count": 1}}, "disgruntled": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 1, "Im": {"_count": 1}}, "disapproving": {"_count": 2, "": {"_count": 2}}, "and": {"_count": 4, "there": {"_count": 1}, "I": {"_count": 1}, "touching": {"_count": 1}, "he": {"_count": 1}}, "longingly": {"_count": 1, "out": {"_count": 1}}, "flushed": {"_count": 1, "and": {"_count": 1}}, "stunned": {"_count": 6, "and": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 4}}, "nervously": {"_count": 3, "over": {"_count": 2}, "at": {"_count": 1}}, "shaken": {"_count": 3, "": {"_count": 3}}, "quite": {"_count": 6, "impressed": {"_count": 1}, "terrified": {"_count": 1}, "distracted": {"_count": 1}, "desperate": {"_count": 1}, "beside": {"_count": 1}, "as": {"_count": 1}}, "furious": {"_count": 10, "at": {"_count": 1}, "and": {"_count": 2}, "is": {"_count": 1}, "": {"_count": 6}}, "terrified": {"_count": 11, "at": {"_count": 1}, "": {"_count": 8}, "as": {"_count": 1}, "Harry": {"_count": 1}}, "uncertainly": {"_count": 2, "after": {"_count": 1}, "toward": {"_count": 1}}, "like": {"_count": 12, "a": {"_count": 3}, "three": {"_count": 1}, "his": {"_count": 1}, "entrants": {"_count": 1}, "their": {"_count": 1}, "giant": {"_count": 1}, "sparkling": {"_count": 1}, "this": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}}, "wizard": {"_count": 2, "with": {"_count": 1}, "wearing": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 1}, "legs": {"_count": 1}, "disgust": {"_count": 1}}, "lazily": {"_count": 1, "at": {"_count": 1}}, "sulky": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "happier": {"_count": 4, "than": {"_count": 3}, "opened": {"_count": 1}}, "unusually": {"_count": 2, "grave": {"_count": 1}, "tired": {"_count": 1}}, "custard": {"_count": 1, "tart": {"_count": 1}}, "distinctly": {"_count": 2, "disgruntled": {"_count": 1}, "careworn": {"_count": 1}}, "jealously": {"_count": 1, "at": {"_count": 1}}, "pale": {"_count": 5, "and": {"_count": 4}, "was": {"_count": 1}}, "stern": {"_count": 2, "": {"_count": 2}}, "puzzled": {"_count": 8, "": {"_count": 3}, "others": {"_count": 1}, "but": {"_count": 1}, "watching": {"_count": 1}, "as": {"_count": 2}}, "round": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}}, "wildly": {"_count": 5, "about": {"_count": 2}, "around": {"_count": 3}}, "triumphant": {"_count": 2, "": {"_count": 2}}, "dignified": {"_count": 1, "": {"_count": 1}}, "excited": {"_count": 6, "do": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 4}}, "through": {"_count": 8, "his": {"_count": 1}, "the": {"_count": 5}, "a": {"_count": 2}}, "happy": {"_count": 1, "": {"_count": 1}}, "anywhere": {"_count": 4, "but": {"_count": 4}}, "uptight": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 25, "Harry": {"_count": 7}, "one": {"_count": 9}, "Fudge": {"_count": 1}, "Mrs": {"_count": 1}, "his": {"_count": 3}, "Ron": {"_count": 1}, "Sirius": {"_count": 1}, "Ginny": {"_count": 1}, "her": {"_count": 1}}, "in": {"_count": 6, "far": {"_count": 1}, "different": {"_count": 1}, "at": {"_count": 2}, "the": {"_count": 1}, "disbelief": {"_count": 1}}, "right": {"_count": 3, "at": {"_count": 2}, "through": {"_count": 1}}, "murderous": {"_count": 1, "": {"_count": 1}}, "relieved": {"_count": 8, "or": {"_count": 1}, "stood": {"_count": 1}, "if": {"_count": 1}, "that": {"_count": 3}, "": {"_count": 1}, "at": {"_count": 1}}, "dreadful": {"_count": 1, "for": {"_count": 1}}, "embarrassed": {"_count": 4, "": {"_count": 3}, "were": {"_count": 1}}, "anxious": {"_count": 10, "": {"_count": 9}, "and": {"_count": 1}}, "suspiciously": {"_count": 2, "back": {"_count": 1}, "at": {"_count": 1}}, "apprehensively": {"_count": 1, "at": {"_count": 1}}, "sickened": {"_count": 1, "and": {"_count": 1}}, "stonyfaced": {"_count": 1, "": {"_count": 1}}, "dwarf": {"_count": 1, "elbowing": {"_count": 1}}, "faintly": {"_count": 3, "disappointed": {"_count": 1}, "unsettled": {"_count": 1}, "puzzled": {"_count": 1}}, "after": {"_count": 12, "it": {"_count": 1}, "the": {"_count": 3}, "them": {"_count": 1}, "and": {"_count": 1}, "her": {"_count": 3}, "him": {"_count": 1}, "your": {"_count": 1}, "Ariana": {"_count": 1}}, "frantic": {"_count": 1, "": {"_count": 1}}, "devastated": {"_count": 2, "landed": {"_count": 1}, "": {"_count": 1}}, "deadly": {"_count": 1, "serious": {"_count": 1}}, "man": {"_count": 3, "": {"_count": 1}, "whose": {"_count": 1}, "sitting": {"_count": 1}}, "imploringly": {"_count": 1, "at": {"_count": 1}}, "alarmed": {"_count": 12, "Dumbledore": {"_count": 1}, "": {"_count": 7}, "at": {"_count": 2}, "as": {"_count": 1}, "and": {"_count": 1}}, "grimmer": {"_count": 1, "than": {"_count": 1}}, "sadly": {"_count": 1, "at": {"_count": 1}}, "perplexed": {"_count": 4, "": {"_count": 4}}, "past": {"_count": 1, "them": {"_count": 1}}, "utterly": {"_count": 6, "bewildered": {"_count": 4}, "relaxed": {"_count": 1}, "mad": {"_count": 1}}, "deeply": {"_count": 4, "shaken": {"_count": 1}, "disappointed": {"_count": 1}, "disapproving": {"_count": 1}, "impressed": {"_count": 1}}, "thoughtfully": {"_count": 2, "at": {"_count": 2}}, "desperately": {"_count": 3, "into": {"_count": 1}, "sorry": {"_count": 1}, "anxious": {"_count": 1}}, "particularly": {"_count": 3, "smug": {"_count": 1}, "at": {"_count": 1}, "annoyed": {"_count": 1}}, "calmly": {"_count": 1, "up": {"_count": 1}}, "extremely": {"_count": 18, "tense": {"_count": 1}, "grave": {"_count": 2}, "worried": {"_count": 1}, "harassed": {"_count": 1}, "badtempered": {"_count": 1}, "excited": {"_count": 1}, "pompous": {"_count": 1}, "shifty": {"_count": 1}, "hopeful": {"_count": 1}, "odd": {"_count": 1}, "sulky": {"_count": 1}, "nervous": {"_count": 1}, "agitated": {"_count": 1}, "put": {"_count": 1}, "frightened": {"_count": 1}, "angry": {"_count": 1}, "uncomfortable": {"_count": 1}}, "suspicious": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "out": {"_count": 23, "of": {"_count": 7}, "for": {"_count": 1}, "at": {"_count": 8}, "over": {"_count": 4}, "upon": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}}, "pub": {"_count": 1, "the": {"_count": 1}}, "awkward": {"_count": 4, "": {"_count": 4}}, "uncomfortable": {"_count": 4, "": {"_count": 3}, "now": {"_count": 1}}, "down": {"_count": 53, "his": {"_count": 1}, "at": {"_count": 34}, "upon": {"_count": 4}, "": {"_count": 1}, "into": {"_count": 6}, "her": {"_count": 1}, "he": {"_count": 2}, "on": {"_count": 2}, "from": {"_count": 1}, "Rons": {"_count": 1}}, "to": {"_count": 4, "see": {"_count": 2}, "his": {"_count": 1}, "find": {"_count": 1}}, "wherever": {"_count": 1, "he": {"_count": 1}}, "incredibly": {"_count": 1, "freckly": {"_count": 1}}, "thinner": {"_count": 1, "than": {"_count": 1}}, "revolted": {"_count": 1, "at": {"_count": 1}}, "irritable": {"_count": 2, "": {"_count": 2}}, "disbelieving": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 2, "toward": {"_count": 1}, "away": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "anxiously": {"_count": 4, "at": {"_count": 1}, "around": {"_count": 1}, "toward": {"_count": 1}, "into": {"_count": 1}}, "impatient": {"_count": 1, "to": {"_count": 1}}, "crestfallen": {"_count": 3, "": {"_count": 3}}, "downcast": {"_count": 1, "and": {"_count": 1}}, "disdainful": {"_count": 1, "": {"_count": 1}}, "significantly": {"_count": 1, "at": {"_count": 1}}, "sour": {"_count": 3, "pulled": {"_count": 1}, "": {"_count": 2}}, "a": {"_count": 10, "little": {"_count": 6}, "bit": {"_count": 2}, "dark": {"_count": 1}, "mite": {"_count": 1}}, "determined": {"_count": 1, "": {"_count": 1}}, "daggers": {"_count": 2, "at": {"_count": 2}}, "only": {"_count": 1, "mildly": {"_count": 1}}, "delighted": {"_count": 5, "as": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 2}}, "immensely": {"_count": 1, "proud": {"_count": 1}}, "slightly": {"_count": 20, "alarmed": {"_count": 2}, "put": {"_count": 2}, "flustered": {"_count": 2}, "disappointed": {"_count": 1}, "preoccupied": {"_count": 1}, "less": {"_count": 1}, "crestfallen": {"_count": 2}, "wary": {"_count": 1}, "perplexed": {"_count": 1}, "bemused": {"_count": 1}, "more": {"_count": 2}, "uncomfortable": {"_count": 1}, "taken": {"_count": 1}, "confused": {"_count": 1}, "anxious": {"_count": 1}}, "apprehensive": {"_count": 3, "": {"_count": 3}}, "stricken": {"_count": 3, "": {"_count": 3}}, "too": {"_count": 3, "good": {"_count": 3}}, "darkly": {"_count": 1, "at": {"_count": 1}}, "uneasily": {"_count": 1, "at": {"_count": 1}}, "scandalized": {"_count": 3, "": {"_count": 3}}, "thunderstruck": {"_count": 4, "": {"_count": 3}, "well": {"_count": 1}}, "startled": {"_count": 9, "": {"_count": 8}, "and": {"_count": 1}}, "uncharacteristically": {"_count": 1, "serious": {"_count": 1}}, "scared": {"_count": 8, "": {"_count": 7}, "or": {"_count": 1}}, "thoroughly": {"_count": 11, "relieved": {"_count": 1}, "pleased": {"_count": 1}, "excited": {"_count": 1}, "bewildered": {"_count": 1}, "disgruntled": {"_count": 1}, "depressed": {"_count": 1}, "shocked": {"_count": 1}, "bad": {"_count": 1}, "secondhand": {"_count": 1}, "alarmed": {"_count": 1}, "confused": {"_count": 1}}, "awed": {"_count": 2, "": {"_count": 2}}, "disappointed": {"_count": 8, "when": {"_count": 1}, "": {"_count": 6}, "and": {"_count": 1}}, "good": {"_count": 1, "Alicia": {"_count": 1}}, "everywhere": {"_count": 2, "for": {"_count": 1}, "but": {"_count": 1}}, "concerned": {"_count": 4, "but": {"_count": 1}, "": {"_count": 1}, "Are": {"_count": 1}, "when": {"_count": 1}}, "suddenly": {"_count": 5, "quite": {"_count": 1}, "serious": {"_count": 1}, "nervous": {"_count": 1}, "fearful": {"_count": 1}, "tense": {"_count": 1}}, "madder": {"_count": 1, "than": {"_count": 1}}, "ill": {"_count": 1, "before": {"_count": 1}}, "horrified": {"_count": 5, "": {"_count": 5}}, "agitated": {"_count": 2, "": {"_count": 2}}, "surprised": {"_count": 8, "that": {"_count": 1}, "": {"_count": 5}, "at": {"_count": 1}, "but": {"_count": 1}}, "politely": {"_count": 3, "puzzled": {"_count": 2}, "bewildered": {"_count": 1}}, "angrier": {"_count": 2, "than": {"_count": 2}}, "awestruck": {"_count": 4, "": {"_count": 4}}, "horrorstruck": {"_count": 2, "": {"_count": 2}}, "mutinous": {"_count": 2, "": {"_count": 2}}, "dejected": {"_count": 1, "a": {"_count": 1}}, "dispirited": {"_count": 1, "and": {"_count": 1}}, "indignantly": {"_count": 1, "at": {"_count": 1}}, "unimpressed": {"_count": 1, "": {"_count": 1}}, "highly": {"_count": 2, "discomforted": {"_count": 1}, "disconcerted": {"_count": 1}}, "witches": {"_count": 2, "and": {"_count": 2}}, "lace": {"_count": 1, "frill": {"_count": 1}}, "harassed": {"_count": 1, "": {"_count": 1}}, "almost": {"_count": 2, "wistfully": {"_count": 1}, "painfully": {"_count": 1}}, "extrafestive": {"_count": 1, "and": {"_count": 1}}, "expectantly": {"_count": 1, "at": {"_count": 1}}, "not": {"_count": 1, "at": {"_count": 1}}, "pensive": {"_count": 1, "": {"_count": 1}}, "irritated": {"_count": 1, "at": {"_count": 1}}, "impressed": {"_count": 4, "": {"_count": 4}}, "more": {"_count": 5, "and": {"_count": 2}, "like": {"_count": 1}, "closely": {"_count": 1}, "confused": {"_count": 1}}, "nervous": {"_count": 3, "but": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "askance": {"_count": 1, "at": {"_count": 1}}, "exhausted": {"_count": 1, "but": {"_count": 1}}, "entirely": {"_count": 1, "normal": {"_count": 1}}, "rather": {"_count": 23, "hurt": {"_count": 1}, "menacing": {"_count": 1}, "peculiar": {"_count": 1}, "excited": {"_count": 1}, "hesitant": {"_count": 1}, "confused": {"_count": 1}, "frightened": {"_count": 2}, "wistfully": {"_count": 1}, "embarrassed": {"_count": 1}, "nervous": {"_count": 1}, "foolish": {"_count": 1}, "haughty": {"_count": 1}, "pleased": {"_count": 1}, "scared": {"_count": 1}, "upset": {"_count": 1}, "cross": {"_count": 1}, "shocked": {"_count": 1}, "paler": {"_count": 1}, "gormless": {"_count": 1}, "blearyeyed": {"_count": 1}, "glum": {"_count": 1}, "grumpy": {"_count": 1}}, "genuinely": {"_count": 1, "shocked": {"_count": 1}}, "sideways": {"_count": 2, "at": {"_count": 1}, "to": {"_count": 1}}, "girls": {"_count": 1, "in": {"_count": 1}}, "just": {"_count": 3, "as": {"_count": 3}}, "stunning": {"_count": 1, "in": {"_count": 1}}, "outraged": {"_count": 2, "": {"_count": 2}}, "surly": {"_count": 1, "again": {"_count": 1}}, "badtempered": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "strained": {"_count": 3, "again": {"_count": 2}, "": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "carefully": {"_count": 3, "up": {"_count": 1}, "inside": {"_count": 1}, "at": {"_count": 1}}, "intensely": {"_count": 1, "relieved": {"_count": 1}}, "panicstricken": {"_count": 1, "": {"_count": 1}}, "astonished": {"_count": 4, "and": {"_count": 1}, "": {"_count": 3}}, "thoughtful": {"_count": 2, "": {"_count": 2}}, "meaningfully": {"_count": 1, "at": {"_count": 1}}, "frankly": {"_count": 1, "bewildered": {"_count": 1}}, "disgusted": {"_count": 2, "": {"_count": 2}}, "shocked": {"_count": 8, "": {"_count": 6}, "others": {"_count": 1}, "by": {"_count": 1}}, "between": {"_count": 2, "Harry": {"_count": 1}, "them": {"_count": 1}}, "twice": {"_count": 1, "as": {"_count": 1}}, "livid": {"_count": 3, "": {"_count": 2}, "Snape": {"_count": 1}}, "skeptical": {"_count": 2, "": {"_count": 2}}, "hopefully": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 3, "other": {"_count": 2}, "same": {"_count": 1}}, "older": {"_count": 1, "than": {"_count": 1}}, "Harry": {"_count": 4, "up": {"_count": 2}, "knew": {"_count": 1}, "full": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 2}}, "all": {"_count": 1, "around": {"_count": 1}}, "into": {"_count": 8, "the": {"_count": 3}, "Umbridges": {"_count": 1}, "a": {"_count": 1}, "Harrys": {"_count": 1}, "Vol": {"_count": 1}, "Snapes": {"_count": 1}}, "slowly": {"_count": 1, "around": {"_count": 1}}, "flabbergasted": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 3, "and": {"_count": 3}}, "witch": {"_count": 1, "in": {"_count": 1}}, "proud": {"_count": 1, "": {"_count": 1}}, "peaky": {"_count": 1, "you": {"_count": 1}}, "than": {"_count": 2, "ever": {"_count": 2}}, "frightened": {"_count": 4, "": {"_count": 2}, "yet": {"_count": 1}, "Bill": {"_count": 1}}, "replete": {"_count": 1, "and": {"_count": 1}}, "wary": {"_count": 4, "": {"_count": 3}, "but": {"_count": 1}}, "away": {"_count": 4, "from": {"_count": 3}, "quickly": {"_count": 1}}, "grim": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "guard": {"_count": 1, "Harry": {"_count": 1}}, "buildings": {"_count": 1, "already": {"_count": 1}}, "adoringly": {"_count": 1, "up": {"_count": 1}}, "corridor": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "once": {"_count": 1, "at": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "flustered": {"_count": 2, "just": {"_count": 1}, "": {"_count": 1}}, "mildly": {"_count": 3, "surprised": {"_count": 2}, "impressed": {"_count": 1}}, "inquiringly": {"_count": 1, "at": {"_count": 1}}, "owlishly": {"_count": 1, "over": {"_count": 1}}, "instinctively": {"_count": 1, "at": {"_count": 1}}, "affectionately": {"_count": 1, "around": {"_count": 1}}, "angry": {"_count": 2, "and": {"_count": 2}}, "affronted": {"_count": 1, "": {"_count": 1}}, "positively": {"_count": 5, "furious": {"_count": 1}, "petrified": {"_count": 1}, "agog": {"_count": 1}, "alarmed": {"_count": 2}}, "sick": {"_count": 1, "": {"_count": 1}}, "fearfully": {"_count": 1, "at": {"_count": 1}}, "taken": {"_count": 1, "aback": {"_count": 1}}, "appalled": {"_count": 2, "": {"_count": 2}}, "aghast": {"_count": 3, "": {"_count": 3}}, "Zacharias": {"_count": 1, "straight": {"_count": 1}}, "blank": {"_count": 3, "": {"_count": 3}}, "quizzically": {"_count": 1, "at": {"_count": 1}}, "perfectly": {"_count": 2, "desperate": {"_count": 1}, "normal": {"_count": 1}}, "amazed": {"_count": 2, "as": {"_count": 1}, "Harry": {"_count": 1}}, "timidly": {"_count": 1, "at": {"_count": 1}}, "guilty": {"_count": 1, "when": {"_count": 1}}, "lost": {"_count": 1, "and": {"_count": 1}}, "genially": {"_count": 1, "bemused": {"_count": 1}}, "upset": {"_count": 3, "no": {"_count": 1}, "": {"_count": 1}, "cradling": {"_count": 1}}, "dreamy": {"_count": 1, "as": {"_count": 1}}, "disheveled": {"_count": 2, "and": {"_count": 2}}, "green": {"_count": 1, "and": {"_count": 1}}, "Healer": {"_count": 1, "wearing": {"_count": 1}}, "closely": {"_count": 2, "at": {"_count": 2}}, "face": {"_count": 1, "Harry": {"_count": 1}}, "unnerved": {"_count": 3, "as": {"_count": 2}, "and": {"_count": 1}}, "toward": {"_count": 6, "the": {"_count": 5}, "Pansy": {"_count": 1}}, "mortified": {"_count": 1, "": {"_count": 1}}, "directly": {"_count": 2, "into": {"_count": 1}, "at": {"_count": 1}}, "insolent": {"_count": 1, "": {"_count": 1}}, "bored": {"_count": 1, "convicted": {"_count": 1}}, "glum": {"_count": 1, "": {"_count": 1}}, "morose": {"_count": 1, "": {"_count": 1}}, "wretched": {"_count": 1, "and": {"_count": 1}}, "grumpy": {"_count": 1, "": {"_count": 1}}, "equally": {"_count": 1, "disgruntled": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "bewildered": {"_count": 4, "": {"_count": 3}, "at": {"_count": 1}}, "much": {"_count": 2, "darker": {"_count": 1}, "more": {"_count": 1}}, "displeased": {"_count": 1, "": {"_count": 1}}, "something": {"_count": 2, "up": {"_count": 1}, "like": {"_count": 1}}, "unconvinced": {"_count": 1, "": {"_count": 1}}, "exceptionally": {"_count": 1, "pleased": {"_count": 1}}, "thrilled": {"_count": 1, "": {"_count": 1}}, "beadily": {"_count": 1, "at": {"_count": 1}}, "preoccupied": {"_count": 1, "": {"_count": 1}}, "curious": {"_count": 2, "followed": {"_count": 1}, "and": {"_count": 1}}, "eagerly": {"_count": 2, "from": {"_count": 2}}, "exultant": {"_count": 1, "": {"_count": 1}}, "discomforted": {"_count": 1, "": {"_count": 1}}, "resigned": {"_count": 1, "": {"_count": 1}}, "morosely": {"_count": 1, "at": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "amused": {"_count": 3, "if": {"_count": 1}, "": {"_count": 2}}, "hopeful": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "ahead": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 1, "up": {"_count": 1}}, "gaunt": {"_count": 1, "and": {"_count": 1}}, "apologetic": {"_count": 1, "": {"_count": 1}}, "perplexedly": {"_count": 1, "at": {"_count": 1}}, "questioningly": {"_count": 1, "at": {"_count": 1}}, "ruffled": {"_count": 1, "Vincent": {"_count": 1}}, "dumbfounded": {"_count": 1, "": {"_count": 1}}, "distressed": {"_count": 2, "": {"_count": 2}}, "putupon": {"_count": 1, "": {"_count": 1}}, "copies": {"_count": 1, "of": {"_count": 1}}, "mightily": {"_count": 1, "impressed": {"_count": 1}}, "old": {"_count": 1, "and": {"_count": 1}}, "serious": {"_count": 1, "isnt": {"_count": 1}}, "coolly": {"_count": 1, "intimidating": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "troubled": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "reasonably": {"_count": 1, "happy": {"_count": 1}}, "marginally": {"_count": 1, "more": {"_count": 1}}, "resentful": {"_count": 1, "": {"_count": 1}}, "fixedly": {"_count": 1, "at": {"_count": 1}}, "sheepish": {"_count": 1, "": {"_count": 1}}, "thunderous": {"_count": 1, "": {"_count": 1}}, "grateful": {"_count": 1, "Kreacher": {"_count": 1}}, "increasingly": {"_count": 1, "incredulous": {"_count": 1}}, "most": {"_count": 1, "morose": {"_count": 1}}, "completely": {"_count": 1, "healthy": {"_count": 1}}, "haughty": {"_count": 1, "": {"_count": 1}}, "helplessly": {"_count": 1, "at": {"_count": 1}}, "peaceful": {"_count": 1, "and": {"_count": 1}}, "grave": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "at": {"_count": 1}}, "harried": {"_count": 1, "DUMBLEDORE": {"_count": 1}}, "interested": {"_count": 1, "": {"_count": 1}}, "frustrated": {"_count": 1, "and": {"_count": 1}}, "queasy": {"_count": 1, "Harry": {"_count": 1}}, "stubborn": {"_count": 1, "": {"_count": 1}}, "stony": {"_count": 1, "": {"_count": 1}}, "first": {"_count": 1, "at": {"_count": 1}}, "exasperated": {"_count": 1, "and": {"_count": 1}}, "groggy": {"_count": 1, "and": {"_count": 1}}, "oddly": {"_count": 1, "relieved": {"_count": 1}}, "baffled": {"_count": 1, "": {"_count": 1}}, "handsome": {"_count": 1, "Its": {"_count": 1}}, "abnormally": {"_count": 1, "vacant": {"_count": 1}}, "circlet": {"_count": 1, "had": {"_count": 1}}, "ludicrously": {"_count": 1, "batlike": {"_count": 1}}, "now": {"_count": 1, "over": {"_count": 1}}}, "cats": {"_count": 27, "couldnt": {"_count": 1, "read": {"_count": 1}}, "tail": {"_count": 1, "twitched": {"_count": 1}}, "shed": {"_count": 1, "ever": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "they": {"_count": 1, "make": {"_count": 1}}, "of": {"_count": 2, "every": {"_count": 2}}, "": {"_count": 4, "?": {"_count": 1}, "!": {"_count": 1}, ".": {"_count": 2}}, "attacked": {"_count": 1, "": {"_count": 1}}, "ginger": {"_count": 1, "fur": {"_count": 1}}, "meowed": {"_count": 1, "and": {"_count": 1}}, "chase": {"_count": 1, "rats": {"_count": 1}}, "got": {"_count": 1, "it": {"_count": 1}}, "do": {"_count": 1, "Hagrid": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}, "bulging": {"_count": 1, "with": {"_count": 1}}, "gleamed": {"_count": 1, "still": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "Harrys": {"_count": 1}}, "the": {"_count": 1, "one": {"_count": 1}}, "protection": {"_count": 1, "filled": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "spectacle": {"_count": 1}}, "mewling": {"_count": 1, "in": {"_count": 1}}}, "couldnt": {"_count": 506, "read": {"_count": 2, "maps": {"_count": 1}, "Rons": {"_count": 1}}, "help": {"_count": 29, "noticing": {"_count": 5}, "trusting": {"_count": 2}, "thinking": {"_count": 4}, "overhearing": {"_count": 1}, "cheering": {"_count": 1}, "it": {"_count": 3}, "feeling": {"_count": 4}, "grinning": {"_count": 2}, "imagining": {"_count": 1}, "hearing": {"_count": 1}, "paying": {"_count": 1}, "rather": {"_count": 1}, "being": {"_count": 1}, "but": {"_count": 1}, "laughing": {"_count": 1}}, "bear": {"_count": 3, "people": {"_count": 1}, "being": {"_count": 1}, "to": {"_count": 1}}, "see": {"_count": 48, "a": {"_count": 1}, "how": {"_count": 6}, "what": {"_count": 6}, "the": {"_count": 5}, "him": {"_count": 4}, "his": {"_count": 1}, "where": {"_count": 2}, "them": {"_count": 1}, "anything": {"_count": 2}, "he": {"_count": 1}, "any": {"_count": 1}, "why": {"_count": 3}, "whether": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 2}, "its": {"_count": 1}, "Hagrids": {"_count": 1}, "anyone": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 1}, "Wormtail": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 3}, "Malfoy": {"_count": 1}}, "affect": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "kill": {"_count": 5, "that": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 2}}, "find": {"_count": 7, "two": {"_count": 1}, "anyway": {"_count": 1}, "Flamel": {"_count": 1}, "the": {"_count": 2}, "anyone": {"_count": 1}, "rhymes": {"_count": 1}}, "know": {"_count": 1, "that": {"_count": 1}}, "often": {"_count": 1, "catch": {"_count": 1}}, "understand": {"_count": 8, "them": {"_count": 1}, "": {"_count": 1}, "why": {"_count": 2}, "how": {"_count": 2}, "a": {"_count": 1}, "where": {"_count": 1}}, "believe": {"_count": 19, "his": {"_count": 7}, "it": {"_count": 7}, "anyone": {"_count": 1}, "my": {"_count": 1}, "how": {"_count": 1}, "what": {"_count": 1}, "a": {"_count": 1}}, "explain": {"_count": 2, "how": {"_count": 1}, "even": {"_count": 1}}, "be": {"_count": 23, "sure": {"_count": 1}, "true": {"_count": 1}, "bothered": {"_count": 1}, "heard": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 2}, "here": {"_count": 2}, "with": {"_count": 1}, "human": {"_count": 1}, "me": {"_count": 1}, "overheard": {"_count": 1}, "pure": {"_count": 1}, "all": {"_count": 1}, "that": {"_count": 1}, "back": {"_count": 1}, "But": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}, "plainer": {"_count": 1}, "there": {"_count": 1}}, "risk": {"_count": 3, "sneaking": {"_count": 1}, "Snape": {"_count": 1}, "him": {"_count": 1}}, "remember": {"_count": 11, "being": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 2}, "anything": {"_count": 2}, "ever": {"_count": 2}, "that": {"_count": 1}, "standing": {"_count": 1}}, "imagine": {"_count": 2, "where": {"_count": 1}, "when": {"_count": 1}}, "go": {"_count": 5, "through": {"_count": 1}, "to": {"_count": 1}, "always": {"_count": 1}, "on": {"_count": 1}, "anywhere": {"_count": 1}}, "sleep": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "take": {"_count": 5, "his": {"_count": 1}, "it": {"_count": 1}, "anymore": {"_count": 1}, "the": {"_count": 1}, "credit": {"_count": 1}}, "decide": {"_count": 1, "which": {"_count": 1}}, "do": {"_count": 11, "it": {"_count": 5}, "anything": {"_count": 3}, "that": {"_count": 2}, "the": {"_count": 1}}, "blame": {"_count": 4, "them": {"_count": 1}, "him": {"_count": 3}}, "have": {"_count": 37, "known": {"_count": 1}, "done": {"_count": 7}, "been": {"_count": 5}, "kept": {"_count": 1}, "looked": {"_count": 1}, "everything": {"_count": 1}, "explained": {"_count": 1}, "yelled": {"_count": 1}, "managed": {"_count": 1}, "bought": {"_count": 1}, "lasted": {"_count": 1}, "made": {"_count": 2}, "carried": {"_count": 1}, "wanted": {"_count": 1}, "released": {"_count": 1}, "guessed": {"_count": 1}, "found": {"_count": 2}, "that": {"_count": 1}, "it": {"_count": 1}, "left": {"_count": 1}, "killed": {"_count": 1}, "missed": {"_count": 1}, "told": {"_count": 1}, "given": {"_count": 1}, "broken": {"_count": 1}}, "come": {"_count": 5, "in": {"_count": 1}, "quickly": {"_count": 1}, "": {"_count": 1}, "Hmm": {"_count": 1}, "but": {"_count": 1}}, "stop": {"_count": 8, "stammering": {"_count": 1}, "": {"_count": 1}, "grinning": {"_count": 1}, "himself": {"_count": 3}, "puzzling": {"_count": 1}, "it": {"_count": 1}}, "even": {"_count": 3, "tell": {"_count": 1}, "be": {"_count": 1}, "see": {"_count": 1}}, "aff": {"_count": 1, "I": {"_count": 1}}, "keep": {"_count": 7, "his": {"_count": 1}, "me": {"_count": 1}, "your": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}, "either": {"_count": 1}, "it": {"_count": 1}}, "wait": {"_count": 2, "to": {"_count": 2}}, "learn": {"_count": 1, "by": {"_count": 1}}, "look": {"_count": 2, "Severus": {"_count": 1}, "after": {"_count": 1}}, "miss": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "resist": {"_count": 3, "it": {"_count": 1}, "reminding": {"_count": 1}, "dropping": {"_count": 1}}, "afford": {"_count": 4, "half": {"_count": 1}, "to": {"_count": 2}, "it": {"_count": 1}}, "carry": {"_count": 1, "on": {"_count": 1}}, "move": {"_count": 8, "she": {"_count": 1}, "for": {"_count": 2}, "a": {"_count": 2}, "very": {"_count": 1}, "or": {"_count": 1}, "an": {"_count": 1}}, "feel": {"_count": 3, "Harry": {"_count": 1}, "them": {"_count": 1}, "too": {"_count": 1}}, "turn": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "direct": {"_count": 1, "it": {"_count": 1}}, "stay": {"_count": 1, "here": {"_count": 1}}, "eat": {"_count": 1, "": {"_count": 1}}, "dampen": {"_count": 1, "his": {"_count": 1}}, "ever": {"_count": 1, "remember": {"_count": 1}}, "make": {"_count": 9, "out": {"_count": 3}, "a": {"_count": 2}, "up": {"_count": 1}, "him": {"_count": 1}, "anyone": {"_count": 1}, "your": {"_count": 1}}, "think": {"_count": 14, "of": {"_count": 6}, "who": {"_count": 2}, "anymore": {"_count": 1}, "how": {"_count": 1}, "where": {"_count": 1}, "what": {"_count": 3}}, "hear": {"_count": 19, "anything": {"_count": 2}, "the": {"_count": 2}, "it": {"_count": 2}, "him": {"_count": 2}, "her": {"_count": 1}, "any": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 2}, "them": {"_count": 1}, "a": {"_count": 1}, "Crouchs": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 1}}, "sit": {"_count": 2, "down": {"_count": 1}, "on": {"_count": 1}}, "get": {"_count": 16, "worked": {"_count": 1}, "on": {"_count": 1}, "it": {"_count": 2}, "his": {"_count": 1}, "an": {"_count": 1}, "tickets": {"_count": 1}, "anyone": {"_count": 1}, "away": {"_count": 1}, "another": {"_count": 1}, "into": {"_count": 1}, "time": {"_count": 1}, "in": {"_count": 1}, "rid": {"_count": 2}, "the": {"_count": 1}}, "shake": {"_count": 1, "off": {"_count": 1}}, "speak": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "touch": {"_count": 1, "his": {"_count": 1}}, "Quirrell": {"_count": 1, "touch": {"_count": 1}}, "use": {"_count": 4, "real": {"_count": 1}, "Galleons": {"_count": 1}, "it": {"_count": 1}, "magic": {"_count": 1}}, "we": {"_count": 2, "get": {"_count": 1}, "just": {"_count": 1}}, "weve": {"_count": 1, "come": {"_count": 1}}, "control": {"_count": 4, "himself": {"_count": 1}, "it": {"_count": 3}}, "mistake": {"_count": 1, "for": {"_count": 1}}, "you": {"_count": 7, "have": {"_count": 1}, "": {"_count": 2}, "just": {"_count": 2}, "speak": {"_count": 1}, "bring": {"_count": 1}}, "Hagrids": {"_count": 1, "treacle": {"_count": 1}}, "fit": {"_count": 2, "it": {"_count": 1}, "in": {"_count": 1}}, "began": {"_count": 1, "Dean": {"_count": 1}}, "fight": {"_count": 2, "against": {"_count": 1}, "the": {"_count": 1}}, "cure": {"_count": 1, "Mrs": {"_count": 1}}, "change": {"_count": 2, "direction": {"_count": 1}, "I": {"_count": 1}}, "quite": {"_count": 5, "explain": {"_count": 1}, "suppress": {"_count": 1}, "forget": {"_count": 1}, "believe": {"_count": 2}}, "possibly": {"_count": 5, "be": {"_count": 3}, "ignore": {"_count": 1}, "have": {"_count": 1}}, "bring": {"_count": 6, "himself": {"_count": 6}}, "just": {"_count": 3, "leave": {"_count": 1}, "make": {"_count": 1}, "try": {"_count": 1}}, "fail": {"_count": 1, "to": {"_count": 1}}, "hurt": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "suppress": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "seem": {"_count": 1, "to": {"_count": 1}}, "die": {"_count": 1, "again": {"_count": 1}}, "not": {"_count": 1, "go": {"_count": 1}}, "say": {"_count": 2, "it": {"_count": 1}, "much": {"_count": 1}}, "leave": {"_count": 3, "poor": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}}, "like": {"_count": 1, "Professor": {"_count": 1}}, "cope": {"_count": 1, "with": {"_count": 1}}, "Black": {"_count": 1, "have": {"_count": 1}}, "stand": {"_count": 8, "two": {"_count": 1}, "the": {"_count": 1}, "watching": {"_count": 1}, "far": {"_count": 1}, "to": {"_count": 1}, "by": {"_count": 1}, "it": {"_count": 1}, "not": {"_count": 1}}, "brood": {"_count": 1, "constantly": {"_count": 1}}, "walk": {"_count": 3, "to": {"_count": 1}, "through": {"_count": 1}, "down": {"_count": 1}}, "reach": {"_count": 3, "Malfoy": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}}, "restrain": {"_count": 1, "themselves": {"_count": 1}}, "tell": {"_count": 8, "": {"_count": 1}, "which": {"_count": 1}, "you": {"_count": 4}, "us": {"_count": 1}, "Harry": {"_count": 1}}, "suck": {"_count": 1, "it": {"_count": 1}}, "destroy": {"_count": 1, "it": {"_count": 1}}, "run": {"_count": 1, "": {"_count": 1}}, "distract": {"_count": 1, "him": {"_count": 1}}, "wish": {"_count": 1, "for": {"_count": 1}}, "work": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 6, "": {"_count": 1}, "have": {"_count": 2}, "come": {"_count": 1}, "make": {"_count": 1}, "just": {"_count": 1}}, "I": {"_count": 2, "have": {"_count": 1}, "know": {"_count": 1}}, "she": {"_count": 2, "": {"_count": 2}}, "deny": {"_count": 1, "either": {"_count": 1}}, "ignore": {"_count": 1, "it": {"_count": 1}}, "ask": {"_count": 2, "her": {"_count": 1}, "people": {"_count": 1}}, "give": {"_count": 2, "us": {"_count": 2}}, "distinguish": {"_count": 1, "through": {"_count": 1}}, "Filch": {"_count": 1, "": {"_count": 1}}, "answer": {"_count": 1, "them": {"_count": 1}}, "breathe": {"_count": 1, "he": {"_count": 1}}, "fool": {"_count": 1, "him": {"_count": 1}}, "they": {"_count": 1, "": {"_count": 1}}, "truthfully": {"_count": 1, "say": {"_count": 1}}, "manage": {"_count": 1, "Youd": {"_count": 1}}, "said": {"_count": 3, "Professor": {"_count": 1}, "Tonks": {"_count": 1}, "Harry": {"_count": 1}}, "talk": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 2, "expect": {"_count": 1}, "think": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 3}}, "guarantee": {"_count": 1, "anything": {"_count": 1}}, "play": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "you": {"_count": 1}}, "care": {"_count": 1, "less": {"_count": 1}}, "Malfoy": {"_count": 1, "have": {"_count": 1}}, "let": {"_count": 2, "it": {"_count": 1}, "you": {"_count": 1}}, "save": {"_count": 1, "him": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "climb": {"_count": 1, "in": {"_count": 1}}, "Apparate": {"_count": 1, "in": {"_count": 1}}, "refuse": {"_count": 1, "and": {"_count": 1}}, "lift": {"_count": 1, "you": {"_count": 1}}, "show": {"_count": 1, "them": {"_count": 1}}, "expect": {"_count": 1, "everyone": {"_count": 1}}}, "read": {"_count": 332, "maps": {"_count": 1, "or": {"_count": 1}}, "on": {"_count": 4, "This": {"_count": 1}, "": {"_count": 1}, "Arnold": {"_count": 1}, "his": {"_count": 1}}, "it": {"_count": 35, "but": {"_count": 1}, "said": {"_count": 1}, "through": {"_count": 3}, "on": {"_count": 1}, "Danger": {"_count": 1}, "": {"_count": 8}, "out": {"_count": 1}, "too": {"_count": 1}, "Fred": {"_count": 1}, "aloud": {"_count": 2}, "by": {"_count": 1}, "with": {"_count": 1}, "cover": {"_count": 1}, "the": {"_count": 1}, "together": {"_count": 1}, "would": {"_count": 1}, "for": {"_count": 1}, "or": {"_count": 1}, "in": {"_count": 1}, "upside": {"_count": 1}, "somewhere": {"_count": 1}, "I": {"_count": 1}, "while": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 1}}, "the": {"_count": 63, "first": {"_count": 3}, "green": {"_count": 1}, "letter": {"_count": 3}, "story": {"_count": 1}, "titles": {"_count": 1}, "name": {"_count": 2}, "note": {"_count": 2}, "paper": {"_count": 2}, "whole": {"_count": 2}, "sign": {"_count": 5}, "clipping": {"_count": 1}, "message": {"_count": 2}, "papers": {"_count": 1}, "chapter": {"_count": 1}, "new": {"_count": 1}, "word": {"_count": 1}, "shining": {"_count": 1}, "rules": {"_count": 1}, "Daily": {"_count": 3}, "article": {"_count": 3}, "Muggle": {"_count": 1}, "writing": {"_count": 1}, "signs": {"_count": 1}, "instructions": {"_count": 1}, "same": {"_count": 1}, "stupid": {"_count": 1}, "notice": {"_count": 1}, "third": {"_count": 1}, "bit": {"_count": 1}, "floor": {"_count": 1}, "legend": {"_count": 1}, "report": {"_count": 1}, "newspapers": {"_count": 1}, "answer": {"_count": 1}, "heading": {"_count": 1}, "yellowish": {"_count": 1}, "front": {"_count": 1}, "parchment": {"_count": 1}, "clippings": {"_count": 1}, "headline": {"_count": 1}, "accompanying": {"_count": 1}, "words": {"_count": 2}, "last": {"_count": 1}, "few": {"_count": 1}, "old": {"_count": 1}}, "that": {"_count": 6, "letter": {"_count": 2}, "there": {"_count": 1}, "if": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 1}}, "yer": {"_count": 1, "letter": {"_count": 1}}, "HOGWARTS": {"_count": 2, "SCHOOL": {"_count": 2}}, "upside": {"_count": 1, "down": {"_count": 1}}, "those": {"_count": 1, "letters": {"_count": 1}}, "his": {"_count": 8, "newspaper": {"_count": 1}, "name": {"_count": 1}, "books": {"_count": 2}, "mind": {"_count": 2}, "notes": {"_count": 1}, "father": {"_count": 1}}, "anything": {"_count": 1, "would": {"_count": 1}}, "Ollivanders": {"_count": 1, "Makers": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 21}, "?": {"_count": 3}, "!": {"_count": 1}}, "ALBUS": {"_count": 1, "DUMBLEDORE": {"_count": 1}}, "about": {"_count": 9, "it": {"_count": 4}, "Chameleon": {"_count": 1}, "some": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}}, "all": {"_count": 3, "about": {"_count": 2}, "the": {"_count": 1}}, "by": {"_count": 3, "older": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 3, "long": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "The": {"_count": 3, "ancient": {"_count": 1}, "charges": {"_count": 1}, "Quibbler": {"_count": 1}}, "minds": {"_count": 3, "": {"_count": 3}}, "what": {"_count": 5, "is": {"_count": 1}, "Imago": {"_count": 1}, "Umbridge": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}}, "wrongly": {"_count": 1, "before": {"_count": 1}}, "THE": {"_count": 4, "BURROW": {"_count": 1}, "SALEM": {"_count": 1}, "NOBLE": {"_count": 1}, "QUIBBLER": {"_count": 1}}, "their": {"_count": 1, "letters": {"_count": 1}}, "smirking": {"_count": 1, "the": {"_count": 1}}, "aloud": {"_count": 13, "off": {"_count": 1}, "Two": {"_count": 1}, "To": {"_count": 1}, "": {"_count": 4}, "Dear": {"_count": 2}, "Third": {"_count": 1}, "In": {"_count": 1}, "Dad": {"_count": 1}, "or": {"_count": 1}}, "Lockharts": {"_count": 1, "books": {"_count": 1}}, "them": {"_count": 8, "how": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 4}, "wrongly": {"_count": 1}, "when": {"_count": 1}}, "1": {"_count": 1, "": {"_count": 1}}, "Wanderings": {"_count": 1, "with": {"_count": 1}}, "one": {"_count": 1, "o": {"_count": 1}}, "furiously": {"_count": 1, "\u2018We": {"_count": 1}}, "KWIKSPELL": {"_count": 1, "A": {"_count": 1}}, "my": {"_count": 5, "private": {"_count": 1}, "report": {"_count": 1}, "mind": {"_count": 1}, "book": {"_count": 2}}, "go": {"_count": 1, "now": {"_count": 1}}, "up": {"_count": 2, "on": {"_count": 2}}, "your": {"_count": 4, "composition": {"_count": 1}, "mail": {"_count": 1}, "side": {"_count": 1}, "interview": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 2}, "Witch": {"_count": 1}}, "passages": {"_count": 1, "from": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "her": {"_count": 2, "card": {"_count": 1}, "": {"_count": 1}}, "Pinhead": {"_count": 1, "kept": {"_count": 1}}, "Sonnets": {"_count": 1, "of": {"_count": 1}}, "frowning": {"_count": 1, "slightly": {"_count": 1}}, "Nonmagic": {"_count": 1, "people": {"_count": 1}}, "MINISTRY": {"_count": 1, "OF": {"_count": 1}}, "Dear": {"_count": 1, "Mr": {"_count": 1}}, "BLACK": {"_count": 1, "STILL": {"_count": 1}}, "BigheacL": {"_count": 1, "Boy": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "Hogwarts": {"_count": 4, "A": {"_count": 4}}, "Harrys": {"_count": 5, "mind": {"_count": 5}}, "an": {"_count": 3, "enormous": {"_count": 1}, "odder": {"_count": 1}, "accusation": {"_count": 1}}, "this": {"_count": 8, "by": {"_count": 1}, "letter": {"_count": 2}, "sentence": {"_count": 1}, "away": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "Harry": {"_count": 1}}, "Neville": {"_count": 1, "Longbottom": {"_count": 1}}, "Monday": {"_count": 1, "9": {"_count": 1}}, "you": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "reread": {"_count": 2}, "Harrys": {"_count": 1}}, "Rons": {"_count": 1, "writing": {"_count": 1}}, "WEEZLY": {"_count": 1, "": {"_count": 1}}, "whereupon": {"_count": 1, "Hedwig": {"_count": 1}}, "out": {"_count": 10, "large": {"_count": 1}, "Siriuss": {"_count": 1}, "Harry": {"_count": 1}, "your": {"_count": 1}, "Dear": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 1}, "snippets": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "three": {"_count": 1, "extra": {"_count": 1}}, "POTTER": {"_count": 1, "REALLY": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "Witch": {"_count": 2, "Weekly": {"_count": 2}}, "again": {"_count": 1, "": {"_count": 1}}, "Siriuss": {"_count": 1, "message": {"_count": 1}}, "All": {"_count": 1, "proceeds": {"_count": 1}}, "AUROR": {"_count": 1, "HEADQUARTERS": {"_count": 1}}, "CONGRATULATIONS": {"_count": 1, "RON": {"_count": 1}}, "SIRIUS": {"_count": 1, "Black": {"_count": 1}}, "any": {"_count": 2, "further": {"_count": 1}, "more": {"_count": 1}}, "chapter": {"_count": 2, "one": {"_count": 1}, "two": {"_count": 1}}, "when": {"_count": 1, "instructed": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}, "from": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "CLOSED": {"_count": 1, "FOR": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 1}, "some": {"_count": 1}, "what": {"_count": 1}}, "a": {"_count": 2, "word": {"_count": 1}, "book": {"_count": 1}}, "CAREER": {"_count": 1, "ADVICE": {"_count": 1}}, "these": {"_count": 2, "notes": {"_count": 1}, "by": {"_count": 1}}, "REUSABLE": {"_count": 1, "HANGMAN": {"_count": 1}}, "every": {"_count": 1, "word": {"_count": 1}}, "GREAT": {"_count": 1, "HANGLETON": {"_count": 1}}, "before": {"_count": 1, "Charms": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "wanted": {"_count": 1, "the": {"_count": 1}}, "\u2018James": {"_count": 1, "Potter": {"_count": 1}}, "Hermiones": {"_count": 1, "mind": {"_count": 1}}, "most": {"_count": 1, "attentively": {"_count": 1}}, "Proud": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "indeed": {"_count": 1}}, "SEVERUS": {"_count": 1, "SNAPE": {"_count": 1}}, "DOLORES": {"_count": 1, "UMBRIDGE": {"_count": 1}}, "HEAD": {"_count": 1, "OF": {"_count": 1}}, "Gregorovitch": {"_count": 2, "s": {"_count": 2}}, "runes": {"_count": 1, "he": {"_count": 1}}, "greedily": {"_count": 1, "but": {"_count": 1}}, "Now": {"_count": 1, "approaching": {"_count": 1}}, "fairy": {"_count": 1, "tales": {"_count": 1}}, "Voldemorts": {"_count": 1, "thoughts": {"_count": 1}}, "HERE": {"_count": 1, "LIES": {"_count": 1}}, "whispered": {"_count": 1, "Petunia": {"_count": 1}}}, "maps": {"_count": 4, "or": {"_count": 1, "signs": {"_count": 1}}, "that": {"_count": 2, "littered": {"_count": 1}, "she": {"_count": 1}}, "and": {"_count": 1, "notes": {"_count": 1}}}, "signs": {"_count": 48, "": {"_count": 8, ".": {"_count": 6}, "?": {"_count": 2}}, "of": {"_count": 27, "magic": {"_count": 1}, "spiders": {"_count": 1}, "more": {"_count": 1}, "tighter": {"_count": 1}, "unusual": {"_count": 1}, "blatant": {"_count": 1}, "greeting": {"_count": 1}, "pleasure": {"_count": 1}, "weakness": {"_count": 2}, "recent": {"_count": 1}, "teachers": {"_count": 2}, "having": {"_count": 2}, "violence": {"_count": 1}, "Filch": {"_count": 1}, "em": {"_count": 1}, "being": {"_count": 1}, "wanting": {"_count": 2}, "life": {"_count": 2}, "recognition": {"_count": 1}, "approaching": {"_count": 1}, "injuries": {"_count": 1}, "the": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "The": {"_count": 1, "warning": {"_count": 1}}, "on": {"_count": 1, "all": {"_count": 1}}, "had": {"_count": 3, "appeared": {"_count": 1}, "been": {"_count": 2}}, "she": {"_count": 1, "beamed": {"_count": 1}}, "he": {"_count": 1, "described": {"_count": 1}}, "that": {"_count": 1, "identify": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "clues": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}}, "gave": {"_count": 607, "himself": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "him": {"_count": 61, "a": {"_count": 28}, "what": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 10}, "an": {"_count": 9}, "work": {"_count": 1}, "to": {"_count": 1}, "or": {"_count": 1}, "away": {"_count": 1}, "which": {"_count": 1}, "would": {"_count": 1}, "no": {"_count": 2}, "": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 1}, "for": {"_count": 1}}, "a": {"_count": 196, "great": {"_count": 15}, "leap": {"_count": 1}, "gasp": {"_count": 4}, "slight": {"_count": 1}, "horrible": {"_count": 3}, "squeal": {"_count": 1}, "loud": {"_count": 8}, "sudden": {"_count": 4}, "yell": {"_count": 2}, "weak": {"_count": 3}, "small": {"_count": 8}, "gigantic": {"_count": 1}, "hollow": {"_count": 2}, "nasty": {"_count": 3}, "sharp": {"_count": 1}, "little": {"_count": 13}, "start": {"_count": 5}, "huge": {"_count": 7}, "hearty": {"_count": 1}, "satisfied": {"_count": 1}, "tragic": {"_count": 1}, "short": {"_count": 7}, "very": {"_count": 6}, "funny": {"_count": 2}, "feeble": {"_count": 2}, "strange": {"_count": 1}, "superior": {"_count": 1}, "snort": {"_count": 1}, "startled": {"_count": 1}, "nervous": {"_count": 4}, "dry": {"_count": 2}, "shudder": {"_count": 2}, "whimper": {"_count": 1}, "double": {"_count": 1}, "terrified": {"_count": 1}, "harsh": {"_count": 3}, "particularly": {"_count": 3}, "frightened": {"_count": 1}, "weird": {"_count": 1}, "guilty": {"_count": 2}, "muffled": {"_count": 2}, "prolonged": {"_count": 1}, "silvery": {"_count": 1}, "joyful": {"_count": 1}, "shriek": {"_count": 1}, "stupid": {"_count": 1}, "curt": {"_count": 1}, "kind": {"_count": 1}, "horrified": {"_count": 1}, "deafening": {"_count": 1}, "soft": {"_count": 3}, "jolt": {"_count": 2}, "halfhearted": {"_count": 1}, "theatrical": {"_count": 1}, "wan": {"_count": 1}, "tiny": {"_count": 7}, "yelp": {"_count": 1}, "wild": {"_count": 1}, "wail": {"_count": 2}, "sickening": {"_count": 1}, "gleeful": {"_count": 1}, "roar": {"_count": 2}, "howl": {"_count": 4}, "wheezy": {"_count": 3}, "cry": {"_count": 1}, "long": {"_count": 1}, "wave": {"_count": 1}, "sneering": {"_count": 1}, "drink": {"_count": 1}, "noncommittal": {"_count": 2}, "strained": {"_count": 1}, "Muggle": {"_count": 1}, "booming": {"_count": 1}, "grudging": {"_count": 1}, "watery": {"_count": 1}, "tinkling": {"_count": 1}, "highpitched": {"_count": 1}, "deep": {"_count": 1}, "piglike": {"_count": 1}, "shaky": {"_count": 2}, "maniacal": {"_count": 1}, "forced": {"_count": 1}, "single": {"_count": 1}, "grunt": {"_count": 1}, "dreadful": {"_count": 1}, "last": {"_count": 1}, "shout": {"_count": 1}, "rather": {"_count": 1}, "stiff": {"_count": 1}, "delighted": {"_count": 1}}, "Harry": {"_count": 39, "a": {"_count": 23}, "time": {"_count": 1}, "an": {"_count": 3}, "free": {"_count": 1}, "that": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 1}, "halfexasperated": {"_count": 1}, "enormous": {"_count": 1}, "airy": {"_count": 1}, "itshisproblemnot": {"_count": 1}, "plenty": {"_count": 1}, "another": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 10, "father": {"_count": 2}, "wand": {"_count": 1}, "head": {"_count": 1}, "team": {"_count": 1}, "own": {"_count": 1}, "cousin": {"_count": 1}, "thestral": {"_count": 1}, "arm": {"_count": 1}, "unnaturally": {"_count": 1}}, "it": {"_count": 29, "to": {"_count": 15}, "a": {"_count": 8}, "up": {"_count": 1}, "away": {"_count": 2}, "an": {"_count": 2}, "": {"_count": 1}}, "the": {"_count": 41, "bills": {"_count": 1}, "team": {"_count": 1}, "impression": {"_count": 3}, "car": {"_count": 1}, "word": {"_count": 2}, "sword": {"_count": 1}, "cup": {"_count": 1}, "Fat": {"_count": 1}, "rope": {"_count": 1}, "Dursleys": {"_count": 1}, "edge": {"_count": 1}, "password": {"_count": 2}, "order": {"_count": 1}, "semiconscious": {"_count": 1}, "Extendable": {"_count": 1}, "plant": {"_count": 1}, "Slytherin": {"_count": 1}, "shrieking": {"_count": 1}, "instrument": {"_count": 1}, "delivery": {"_count": 1}, "carpet": {"_count": 1}, "contents": {"_count": 1}, "potions": {"_count": 1}, "Pensieve": {"_count": 1}, "wand": {"_count": 1}, "other": {"_count": 1}, "book": {"_count": 1}, "class": {"_count": 1}, "fragilelooking": {"_count": 1}, "illusion": {"_count": 1}, "office": {"_count": 1}, "claustrophobic": {"_count": 1}, "wizened": {"_count": 1}, "room": {"_count": 1}, "same": {"_count": 1}, "wall": {"_count": 1}, "Ministry": {"_count": 1}}, "another": {"_count": 21, "feather": {"_count": 1}, "bow": {"_count": 1}, "harsh": {"_count": 1}, "little": {"_count": 2}, "muffled": {"_count": 1}, "pleasurable": {"_count": 1}, "cough": {"_count": 1}, "low": {"_count": 2}, "dry": {"_count": 1}, "roar": {"_count": 1}, "great": {"_count": 2}, "painful": {"_count": 1}, "more": {"_count": 1}, "throb": {"_count": 1}, "stupendous": {"_count": 1}, "shuddering": {"_count": 1}, "girlish": {"_count": 1}, "curt": {"_count": 1}}, "you": {"_count": 16, "that": {"_count": 4}, "orders": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "such": {"_count": 1}, "last": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "powers": {"_count": 1}, "": {"_count": 2}}, "me": {"_count": 29, "a": {"_count": 7}, "the": {"_count": 5}, "to": {"_count": 1}, "permission": {"_count": 1}, "some": {"_count": 2}, "one": {"_count": 1}, "his": {"_count": 2}, "strength": {"_count": 1}, "": {"_count": 1}, "such": {"_count": 1}, "loads": {"_count": 1}, "ow": {"_count": 1}, "first": {"_count": 1}, "before": {"_count": 1}, "her": {"_count": 1}, "your": {"_count": 1}, "heart": {"_count": 1}}, "an": {"_count": 26, "excited": {"_count": 1}, "almighty": {"_count": 2}, "impression": {"_count": 3}, "involuntary": {"_count": 1}, "ungainly": {"_count": 1}, "enormous": {"_count": 3}, "odd": {"_count": 3}, "admonitory": {"_count": 1}, "audible": {"_count": 1}, "indignant": {"_count": 1}, "extremely": {"_count": 1}, "unpleasant": {"_count": 1}, "interview": {"_count": 1}, "approving": {"_count": 1}, "irritable": {"_count": 1}, "almost": {"_count": 1}, "unwilling": {"_count": 1}, "angry": {"_count": 1}, "artificial": {"_count": 1}}, "them": {"_count": 21, "a": {"_count": 7}, "all": {"_count": 2}, "another": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 2}, "Harry": {"_count": 1}, "yet": {"_count": 2}, "and": {"_count": 1}, "my": {"_count": 1}, "any": {"_count": 1}, "his": {"_count": 1}, "away": {"_count": 1}}, "Hermione": {"_count": 4, "a": {"_count": 4}}, "Malfoy": {"_count": 1, "a": {"_count": 1}}, "way": {"_count": 6, "in": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 3}}, "up": {"_count": 11, "and": {"_count": 2}, "as": {"_count": 1}, "any": {"_count": 1}, "trying": {"_count": 2}, "": {"_count": 1}, "on": {"_count": 3}, "her": {"_count": 1}}, "us": {"_count": 6, "such": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "both": {"_count": 1}, "our": {"_count": 1}, "some": {"_count": 1}}, "her": {"_count": 20, "a": {"_count": 8}, "the": {"_count": 4}, "disapproving": {"_count": 1}, "short": {"_count": 1}, "most": {"_count": 1}, "wide": {"_count": 1}, "an": {"_count": 2}, "ten": {"_count": 1}, "as": {"_count": 1}}, "to": {"_count": 2, "Ernie": {"_count": 1}, "Harry": {"_count": 1}}, "one": {"_count": 2, "loud": {"_count": 1}, "sweep": {"_count": 1}}, "Percy": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "Professor": {"_count": 5, "Lupin": {"_count": 2}, "McGonagall": {"_count": 1}, "Snape": {"_count": 1}, "Umbridge": {"_count": 1}}, "Ron": {"_count": 9, "an": {"_count": 1}, "whispered": {"_count": 1}, "a": {"_count": 5}, "yet": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 1, "eight": {"_count": 1}}, "in": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 2, "broom": {"_count": 1}, "shoulder": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "their": {"_count": 2, "lives": {"_count": 1}, "usual": {"_count": 1}}, "very": {"_count": 1, "severe": {"_count": 1}}, "evidence": {"_count": 2, "to": {"_count": 1}, "against": {"_count": 1}}, "two": {"_count": 1, "short": {"_count": 1}}, "no": {"_count": 5, "sign": {"_count": 4}, "obvious": {"_count": 1}}, "Neville": {"_count": 1, "detention": {"_count": 1}}, "what": {"_count": 2, "was": {"_count": 1}, "seemed": {"_count": 1}}, "Krum": {"_count": 1, "ten": {"_count": 1}}, "Dobby": {"_count": 1, "and": {"_count": 1}}, "Fred": {"_count": 1, "an": {"_count": 1}}, "Karkaroff": {"_count": 2, "a": {"_count": 2}}, "Sirius": {"_count": 1, "as": {"_count": 1}}, "Mrs": {"_count": 2, "Figg": {"_count": 1}, "Weasley": {"_count": 1}}, "off": {"_count": 1, "an": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "em": {"_count": 1, "Dumbledores": {"_count": 1}}, "cries": {"_count": 2, "of": {"_count": 2}}, "several": {"_count": 1, "loud": {"_count": 1}}, "Fudge": {"_count": 1, "a": {"_count": 1}}, "Grawps": {"_count": 1, "knee": {"_count": 1}}, "every": {"_count": 1, "appearance": {"_count": 1}}, "Hagrid": {"_count": 1, "a": {"_count": 1}}, "Umbridge": {"_count": 1, "a": {"_count": 1}}, "Narcissa": {"_count": 1, "information": {"_count": 1}}, "Katie": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "Lupin": {"_count": 1, "an": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "chase": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 1, "Dumbledore": {"_count": 1}}, "roars": {"_count": 1, "of": {"_count": 1}}, "herself": {"_count": 1, "away": {"_count": 1}}}, "himself": {"_count": 1124, "a": {"_count": 20, "little": {"_count": 2}, "bun": {"_count": 1}, "grin": {"_count": 1}, "few": {"_count": 1}, "reproving": {"_count": 1}, "crumpet": {"_count": 1}, "second": {"_count": 2}, "very": {"_count": 1}, "bit": {"_count": 1}, "butterbeer": {"_count": 1}, "cup": {"_count": 1}, "seat": {"_count": 1}, "spectacular": {"_count": 1}, "black": {"_count": 1}, "startling": {"_count": 1}, "new": {"_count": 1}, "Disillusionment": {"_count": 1}, "wand": {"_count": 1}}, "together": {"_count": 9, "he": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 1}, "again": {"_count": 2}}, "into": {"_count": 26, "the": {"_count": 9}, "a": {"_count": 11}, "half": {"_count": 1}, "an": {"_count": 2}, "silence": {"_count": 2}, "seven": {"_count": 1}}, "onto": {"_count": 12, "the": {"_count": 6}, "its": {"_count": 1}, "his": {"_count": 4}, "Harrys": {"_count": 1}}, "it": {"_count": 3, "would": {"_count": 1}, "probably": {"_count": 1}, "was": {"_count": 1}}, "silly": {"_count": 1, "at": {"_count": 1}}, "made": {"_count": 1, "Aunt": {"_count": 1}}, "to": {"_count": 87, "speak": {"_count": 3}, "a": {"_count": 11}, "keep": {"_count": 2}, "do": {"_count": 4}, "Floo": {"_count": 2}, "be": {"_count": 11}, "walk": {"_count": 1}, "repeat": {"_count": 1}, "more": {"_count": 1}, "believe": {"_count": 1}, "think": {"_count": 3}, "get": {"_count": 1}, "everything": {"_count": 1}, "sausages": {"_count": 2}, "examining": {"_count": 1}, "roast": {"_count": 1}, "give": {"_count": 1}, "the": {"_count": 3}, "some": {"_count": 1}, "say": {"_count": 3}, "chicken": {"_count": 1}, "make": {"_count": 1}, "his": {"_count": 3}, "black": {"_count": 1}, "food": {"_count": 1}, "wipe": {"_count": 1}, "stop": {"_count": 1}, "look": {"_count": 3}, "remain": {"_count": 1}, "face": {"_count": 1}, "another": {"_count": 1}, "ageappropriate": {"_count": 1}, "decorate": {"_count": 1}, "laugh": {"_count": 1}, "seconds": {"_count": 1}, "orange": {"_count": 1}, "water": {"_count": 1}, "answer": {"_count": 1}, "punch": {"_count": 1}, "explain": {"_count": 1}, "Moody": {"_count": 1}, "Harrys": {"_count": 1}, "tell": {"_count": 1}, "admit": {"_count": 1}, "see": {"_count": 1}, "other": {"_count": 1}, "concentrate": {"_count": 1}, "life": {"_count": 1}, "meet": {"_count": 1}}, "power": {"_count": 1, "all": {"_count": 1}}, "against": {"_count": 4, "the": {"_count": 3}, "what": {"_count": 1}}, "out": {"_count": 22, "of": {"_count": 17}, "the": {"_count": 1}, "from": {"_count": 2}, "with": {"_count": 1}, "under": {"_count": 1}}, "": {"_count": 172, ".": {"_count": 160}, "?": {"_count": 9}, "!": {"_count": 3}}, "firmly": {"_count": 3, "": {"_count": 2}, "that": {"_count": 1}}, "was": {"_count": 11, "asleep": {"_count": 1}, "in": {"_count": 1}, "dreading": {"_count": 1}, "Professor": {"_count": 1}, "someone": {"_count": 1}, "feeling": {"_count": 1}, "far": {"_count": 1}, "having": {"_count": 1}, "a": {"_count": 1}, "seeking": {"_count": 1}, "being": {"_count": 1}}, "up": {"_count": 34, "proudly": {"_count": 1}, "and": {"_count": 2}, "on": {"_count": 7}, "am": {"_count": 1}, "in": {"_count": 4}, "": {"_count": 3}, "Harry": {"_count": 1}, "indignantly": {"_count": 1}, "to": {"_count": 5}, "clutching": {"_count": 1}, "from": {"_count": 3}, "again": {"_count": 1}, "into": {"_count": 2}, "with": {"_count": 1}, "onto": {"_count": 1}}, "shaking": {"_count": 4, "hands": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 2}}, "heard": {"_count": 4, "over": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "above": {"_count": 1}}, "examined": {"_count": 1, "silver": {"_count": 1}}, "go": {"_count": 1, "red": {"_count": 1}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "turning": {"_count": 1, "red": {"_count": 1}}, "but": {"_count": 15, "there": {"_count": 2}, "see": {"_count": 1}, "Hermione": {"_count": 1}, "to": {"_count": 1}, "badly": {"_count": 1}, "he": {"_count": 2}, "with": {"_count": 1}, "James": {"_count": 1}, "Dumbledore": {"_count": 1}, "also": {"_count": 1}, "expected": {"_count": 1}, "clutched": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 10, "the": {"_count": 6}, "to": {"_count": 1}, "his": {"_count": 1}, "Blacks": {"_count": 1}, "": {"_count": 1}}, "cry": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 12, "all": {"_count": 1}, "Mr": {"_count": 1}, "the": {"_count": 7}, "Malfoy": {"_count": 1}, "last": {"_count": 1}, "Arianas": {"_count": 1}}, "from": {"_count": 30, "screaming": {"_count": 1}, "the": {"_count": 9}, "a": {"_count": 1}, "buying": {"_count": 1}, "falling": {"_count": 1}, "Ron": {"_count": 1}, "contact": {"_count": 1}, "looking": {"_count": 2}, "seeing": {"_count": 1}, "jumping": {"_count": 1}, "hitting": {"_count": 1}, "an": {"_count": 1}, "dwelling": {"_count": 1}, "excitement": {"_count": 1}, "his": {"_count": 2}, "her": {"_count": 1}, "Romilda": {"_count": 1}, "glancing": {"_count": 1}, "Rons": {"_count": 1}, "crying": {"_count": 1}}, "in": {"_count": 49, "the": {"_count": 16}, "time": {"_count": 2}, "peril": {"_count": 1}, "me": {"_count": 1}, "his": {"_count": 4}, "front": {"_count": 3}, "after": {"_count": 1}, "robes": {"_count": 1}, "a": {"_count": 6}, "for": {"_count": 1}, "death": {"_count": 1}, "close": {"_count": 1}, "beside": {"_count": 1}, "detention": {"_count": 1}, "fact": {"_count": 1}, "them": {"_count": 1}, "disjointed": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "her": {"_count": 1}, "spite": {"_count": 1}, "appearance": {"_count": 1}, "bed": {"_count": 1}}, "as": {"_count": 16, "Head": {"_count": 1}, "the": {"_count": 2}, "fully": {"_count": 1}, "best": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 5}, "much": {"_count": 1}, "a": {"_count": 1}, "unnoticed": {"_count": 1}, "though": {"_count": 1}, "his": {"_count": 1}}, "exactly": {"_count": 1, "as": {"_count": 1}}, "standing": {"_count": 2, "alone": {"_count": 1}, "he": {"_count": 1}}, "did": {"_count": 1, "somethin": {"_count": 1}}, "not": {"_count": 9, "to": {"_count": 7}, "upon": {"_count": 1}, "here": {"_count": 1}}, "that": {"_count": 17, "he": {"_count": 2}, "his": {"_count": 2}, "deflected": {"_count": 1}, "Ron": {"_count": 1}, "hes": {"_count": 1}, "by": {"_count": 1}, "dummies": {"_count": 1}, "Lily": {"_count": 1}, "fanged": {"_count": 1}, "Grawp": {"_count": 1}, "Fudge": {"_count": 1}, "there": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}, "their": {"_count": 1}}, "about": {"_count": 1, "not": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 2}, "my": {"_count": 1}, "a": {"_count": 1}}, "darted": {"_count": 1, "around": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "unpopular": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 40, "sat": {"_count": 1}, "has": {"_count": 1}, "from": {"_count": 1}, "Ron": {"_count": 2}, "pelted": {"_count": 1}, "sped": {"_count": 1}, "Hermione": {"_count": 3}, "as": {"_count": 1}, "crept": {"_count": 1}, "Cedric": {"_count": 1}, "pulled": {"_count": 1}, "the": {"_count": 1}, "fell": {"_count": 2}, "Umbridge": {"_count": 1}, "Tonks": {"_count": 1}, "weve": {"_count": 1}, "seemed": {"_count": 1}, "Snape": {"_count": 1}, "Luna": {"_count": 1}, "even": {"_count": 1}, "Harry": {"_count": 1}, "Aurors": {"_count": 1}, "if": {"_count": 1}, "thats": {"_count": 1}, "bowing": {"_count": 1}, "yet": {"_count": 1}, "set": {"_count": 1}, "saw": {"_count": 1}, "looked": {"_count": 1}, "of": {"_count": 1}, "Voldemort": {"_count": 1}, "George": {"_count": 1}, "descended": {"_count": 1}, "walked": {"_count": 1}, "sprang": {"_count": 1}, "got": {"_count": 1}}, "sir": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "most": {"_count": 3, "grievously": {"_count": 1}, "plainly": {"_count": 1}, "important": {"_count": 1}}, "for": {"_count": 15, "something": {"_count": 1}, "a": {"_count": 5}, "bringing": {"_count": 1}, "the": {"_count": 3}, "ages": {"_count": 1}, "what": {"_count": 1}, "us": {"_count": 1}, "another": {"_count": 1}, "wishing": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 2}, "on": {"_count": 1}}, "fitted": {"_count": 1, "a": {"_count": 1}}, "under": {"_count": 2, "arrest": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 16, "the": {"_count": 4}, "piling": {"_count": 1}, "scrawling": {"_count": 1}, "glee": {"_count": 1}, "shaking": {"_count": 1}, "each": {"_count": 1}, "difficulty": {"_count": 1}, "his": {"_count": 1}, "amazement": {"_count": 1}, "nodding": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}, "excitement": {"_count": 1}}, "being": {"_count": 6, "presented": {"_count": 1}, "steered": {"_count": 1}, "pushed": {"_count": 1}, "pulled": {"_count": 1}, "shunted": {"_count": 1}, "dragged": {"_count": 1}}, "facetoface": {"_count": 4, "with": {"_count": 4}}, "gripping": {"_count": 1, "the": {"_count": 1}}, "wishing": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 7, "leaned": {"_count": 1}, "flung": {"_count": 1}, "spun": {"_count": 1}, "watching": {"_count": 1}, "straightened": {"_count": 1}, "took": {"_count": 1}, "pulled": {"_count": 1}}, "gazing": {"_count": 1, "into": {"_count": 1}}, "hoarse": {"_count": 2, "at": {"_count": 2}}, "he": {"_count": 20, "must": {"_count": 1}, "was": {"_count": 1}, "really": {"_count": 1}, "touched": {"_count": 1}, "would": {"_count": 1}, "closed": {"_count": 1}, "looked": {"_count": 1}, "prefers": {"_count": 1}, "rolled": {"_count": 1}, "asked": {"_count": 1}, "returned": {"_count": 1}, "tapped": {"_count": 1}, "said": {"_count": 1}, "tried": {"_count": 2}, "punched": {"_count": 1}, "had": {"_count": 1}, "thought": {"_count": 1}, "took": {"_count": 1}, "added": {"_count": 1}}, "porridge": {"_count": 1, "lefthanded": {"_count": 1}}, "Serpenttongue": {"_count": 1, "": {"_count": 1}}, "pinned": {"_count": 1, "against": {"_count": 1}}, "behind": {"_count": 7, "his": {"_count": 4}, "the": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "why": {"_count": 1, "he": {"_count": 1}}, "away": {"_count": 3, "at": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "had": {"_count": 11, "made": {"_count": 1}, "given": {"_count": 1}, "said": {"_count": 1}, "barely": {"_count": 1}, "pulled": {"_count": 2}, "been": {"_count": 2}, "set": {"_count": 1}, "controlled": {"_count": 1}, "placed": {"_count": 1}}, "falling": {"_count": 1, "and": {"_count": 1}}, "slowly": {"_count": 1, "into": {"_count": 1}}, "flat": {"_count": 4, "onto": {"_count": 1}, "on": {"_count": 2}, "to": {"_count": 1}}, "hard": {"_count": 3, "on": {"_count": 3}}, "locked": {"_count": 1, "in": {"_count": 1}}, "forward": {"_count": 8, "and": {"_count": 1}, "": {"_count": 1}, "grabbed": {"_count": 1}, "took": {"_count": 1}, "on": {"_count": 1}, "into": {"_count": 1}, "he": {"_count": 1}, "breaking": {"_count": 1}}, "counting": {"_count": 1, "down": {"_count": 1}}, "smart": {"_count": 1, "for": {"_count": 1}}, "thinking": {"_count": 6, "almost": {"_count": 1}, "time": {"_count": 2}, "as": {"_count": 1}, "desperately": {"_count": 1}, "about": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 3}}, "who": {"_count": 3, "apart": {"_count": 1}, "has": {"_count": 1}, "could": {"_count": 1}}, "going": {"_count": 3, "red": {"_count": 3}}, "said": {"_count": 4, "Fred": {"_count": 1}, "Lupin": {"_count": 1}, "Hagrid": {"_count": 1}, "a": {"_count": 1}}, "back": {"_count": 15, "up": {"_count": 2}, "inside": {"_count": 1}, "into": {"_count": 2}, "to": {"_count": 4}, "down": {"_count": 1}, "together": {"_count": 2}, "": {"_count": 1}, "out": {"_count": 1}, "onto": {"_count": 1}}, "by": {"_count": 3, "surprise": {"_count": 1}, "the": {"_count": 1}, "drinking": {"_count": 1}}, "rocking": {"_count": 1, "backward": {"_count": 1}}, "straight": {"_count": 1, "again": {"_count": 1}}, "Take": {"_count": 1, "its": {"_count": 1}}, "probably": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "some": {"_count": 2, "new": {"_count": 1}, "water": {"_count": 1}}, "crouching": {"_count": 1, "behind": {"_count": 1}}, "sternly": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "guilty": {"_count": 1, "about": {"_count": 1}}, "almost": {"_count": 3, "instantly": {"_count": 1}, "nose": {"_count": 1}, "alone": {"_count": 1}}, "between": {"_count": 2, "them": {"_count": 1}, "his": {"_count": 1}}, "Neville": {"_count": 1, "came": {"_count": 1}}, "inside": {"_count": 2, "and": {"_count": 2}}, "blushing": {"_count": 1, "": {"_count": 1}}, "imitating": {"_count": 1, "Hermione": {"_count": 1}}, "upon": {"_count": 5, "their": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 3}}, "free": {"_count": 8, "of": {"_count": 5}, "": {"_count": 2}, "astonished": {"_count": 1}}, "toward": {"_count": 2, "it": {"_count": 1}, "Neville": {"_count": 1}}, "there": {"_count": 1, "right": {"_count": 1}}, "crumpled": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 4, "now": {"_count": 1}, "he": {"_count": 1}, "everyone": {"_count": 1}, "mounting": {"_count": 1}}, "forwards": {"_count": 1, "and": {"_count": 1}}, "fall": {"_count": 2, "forward": {"_count": 1}, "back": {"_count": 1}}, "Ron": {"_count": 5, "and": {"_count": 3}, "handed": {"_count": 1}, "had": {"_count": 1}}, "paralyzed": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 4, "cold": {"_count": 1}, "impossible": {"_count": 1}, "best": {"_count": 1}, "end": {"_count": 1}}, "mentally": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "slowing": {"_count": 1, "down": {"_count": 1}}, "because": {"_count": 3, "hes": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "you": {"_count": 3, "know": {"_count": 1}, "can": {"_count": 1}, "intend": {"_count": 1}}, "down": {"_count": 5, "on": {"_count": 1}, "at": {"_count": 1}, "onto": {"_count": 1}, "comfortably": {"_count": 1}, "beside": {"_count": 1}}, "arrived": {"_count": 2, "Percy": {"_count": 1}, "and": {"_count": 1}}, "without": {"_count": 1, "it": {"_count": 1}}, "Hedwig": {"_count": 1, "hasnt": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "sidled": {"_count": 1, "into": {"_count": 1}}, "or": {"_count": 2, "herself": {"_count": 1}, "witches": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "winning": {"_count": 1, "the": {"_count": 1}}, "vigorously": {"_count": 1, "in": {"_count": 1}}, "facing": {"_count": 5, "the": {"_count": 1}, "dead": {"_count": 1}, "a": {"_count": 2}, "not": {"_count": 1}}, "satisfied": {"_count": 1, "and": {"_count": 1}}, "school": {"_count": 1, "champion": {"_count": 1}}, "shouting": {"_count": 1, "as": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "say": {"_count": 2, "": {"_count": 1}, "them": {"_count": 1}}, "seeing": {"_count": 2, "the": {"_count": 1}, "nothing": {"_count": 1}}, "diversionary": {"_count": 1, "tactics": {"_count": 1}}, "than": {"_count": 6, "the": {"_count": 1}, "to": {"_count": 3}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "took": {"_count": 1, "his": {"_count": 1}}, "float": {"_count": 1, "back": {"_count": 1}}, "Can": {"_count": 1, "I": {"_count": 1}}, "once": {"_count": 6, "more": {"_count": 2}, "around": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "Dumbledore": {"_count": 1}}, "sink": {"_count": 1, "a": {"_count": 1}}, "explaining": {"_count": 1, "that": {"_count": 1}}, "over": {"_count": 5, "and": {"_count": 1}, "the": {"_count": 2}, "to": {"_count": 2}}, "perhaps": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 4, "Harry": {"_count": 1}, "that": {"_count": 2}, "as": {"_count": 1}}, "looking": {"_count": 2, "at": {"_count": 1}, "out": {"_count": 1}}, "denying": {"_count": 1, "Harry": {"_count": 1}}, "sitting": {"_count": 2, "on": {"_count": 2}}, "somewhere": {"_count": 1, "that": {"_count": 1}}, "rising": {"_count": 2, "into": {"_count": 2}}, "staring": {"_count": 5, "at": {"_count": 3}, "into": {"_count": 1}, "once": {"_count": 1}}, "champion": {"_count": 1, "he": {"_count": 1}}, "raising": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "holding": {"_count": 2, "tight": {"_count": 1}, "the": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "sideways": {"_count": 4, "onto": {"_count": 1}, "as": {"_count": 1}, "thought": {"_count": 1}, "shoving": {"_count": 1}}, "even": {"_count": 3, "if": {"_count": 1}, "more": {"_count": 1}, "though": {"_count": 1}}, "slam": {"_count": 1, "flat": {"_count": 1}}, "steady": {"_count": 1, "he": {"_count": 1}}, "youre": {"_count": 1, "mad": {"_count": 1}}, "becoming": {"_count": 1, "drowsy": {"_count": 1}}, "biding": {"_count": 1, "his": {"_count": 1}}, "capable": {"_count": 1, "of": {"_count": 1}}, "Dumbledores": {"_count": 1, "lying": {"_count": 1}}, "slightly": {"_count": 4, "in": {"_count": 2}, "as": {"_count": 1}, "for": {"_count": 1}}, "jammed": {"_count": 1, "against": {"_count": 1}}, "daydreaming": {"_count": 1, "about": {"_count": 1}}, "if": {"_count": 2, "he": {"_count": 2}}, "superior": {"_count": 1, "to": {"_count": 1}}, "walking": {"_count": 3, "down": {"_count": 2}, "again": {"_count": 1}}, "all": {"_count": 2, "he": {"_count": 1}, "beaming": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 1}, "inside": {"_count": 1}, "him": {"_count": 1}, "he": {"_count": 1}}, "badly": {"_count": 1, "injured": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "thats": {"_count": 1, "the": {"_count": 1}}, "willing": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 1}, "all": {"_count": 2}, "his": {"_count": 1}}, "Abandoning": {"_count": 1, "his": {"_count": 1}}, "bobbing": {"_count": 1, "and": {"_count": 1}}, "twice": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "positively": {"_count": 1, "swelling": {"_count": 1}}, "still": {"_count": 1, "observing": {"_count": 1}}, "then": {"_count": 2, "looked": {"_count": 1}, "at": {"_count": 1}}, "deliberately": {"_count": 1, "uncomfortable": {"_count": 1}}, "off": {"_count": 4, "from": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 2}}, "facedown": {"_count": 1, "upon": {"_count": 1}}, "more": {"_count": 1, "comfortably": {"_count": 1}}, "something": {"_count": 2, "that": {"_count": 1}, "to": {"_count": 1}}, "afterward": {"_count": 1, "but": {"_count": 1}}, "shunted": {"_count": 1, "aside": {"_count": 1}}, "bless": {"_count": 1, "him": {"_count": 1}}, "until": {"_count": 1, "very": {"_count": 1}}, "unaware": {"_count": 1, "that": {"_count": 1}}, "would": {"_count": 3, "have": {"_count": 2}, "\u2018mark": {"_count": 1}}, "where": {"_count": 1, "are": {"_count": 1}}, "came": {"_count": 2, "stumping": {"_count": 1}, "so": {"_count": 1}}, "focusing": {"_count": 1, "instead": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "right": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "serious": {"_count": 1, "injury": {"_count": 1}}, "besieged": {"_count": 1, "with": {"_count": 1}}, "whenever": {"_count": 1, "Lily": {"_count": 1}}, "showing": {"_count": 1, "off": {"_count": 1}}, "kneeling": {"_count": 1, "in": {"_count": 1}}, "when": {"_count": 2, "Filch": {"_count": 1}, "he": {"_count": 1}}, "feverishly": {"_count": 1, "as": {"_count": 1}}, "lying": {"_count": 1, "in": {"_count": 1}}, "hoping": {"_count": 1, "against": {"_count": 1}}, "an": {"_count": 3, "an": {"_count": 1}, "army": {"_count": 1}, "impressive": {"_count": 1}}, "his": {"_count": 3, "face": {"_count": 1}, "heart": {"_count": 1}, "eyes": {"_count": 1}}, "while": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 1}, "Voldemorts": {"_count": 1}}, "kicking": {"_count": 1, "and": {"_count": 1}}, "Lord": {"_count": 2, "well": {"_count": 1}, "Havent": {"_count": 1}}, "alone": {"_count": 1, "in": {"_count": 1}}, "people": {"_count": 1, "really": {"_count": 1}}, "might": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "excited": {"_count": 1, "at": {"_count": 1}}, "captured": {"_count": 1, "along": {"_count": 1}}, "face": {"_count": 1, "forward": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "felt": {"_count": 1, "suddenly": {"_count": 1}}, "unheard": {"_count": 1, "by": {"_count": 1}}, "she": {"_count": 1, "waved": {"_count": 1}}, "forever": {"_count": 1, "and": {"_count": 1}}, "seem": {"_count": 1, "more": {"_count": 1}}, "scowling": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "clear": {"_count": 1}}, "three": {"_count": 1, "Chasers": {"_count": 1}}, "any": {"_count": 1, "longer": {"_count": 1}}, "outside": {"_count": 1, "Dumbledore": {"_count": 1}}, "kissing": {"_count": 1, "Ginny": {"_count": 1}}, "trapped": {"_count": 1, "in": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "irresistibly": {"_count": 1, "of": {"_count": 1}}, "turned": {"_count": 1, "the": {"_count": 1}}, "remembering": {"_count": 1, "words": {"_count": 1}}, "immortal": {"_count": 1, "": {"_count": 1}}, "impossible": {"_count": 1, "to": {"_count": 1}}, "invincible": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "adding": {"_count": 1, "Big": {"_count": 1}}, "created": {"_count": 1, "his": {"_count": 1}}, "singled": {"_count": 1, "out": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "wondering": {"_count": 1, "how": {"_count": 1}}, "longing": {"_count": 1, "for": {"_count": 1}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "banned": {"_count": 1, "from": {"_count": 1}}, "retaliating": {"_count": 1, "he": {"_count": 1}}, "newly": {"_count": 1, "and": {"_count": 1}}, "knocking": {"_count": 1, "things": {"_count": 1}}, "repulsed": {"_count": 1, "by": {"_count": 1}}, "wanting": {"_count": 1, "a": {"_count": 1}}, "Sectum": {"_count": 1, "": {"_count": 1}}, "feared": {"_count": 1, "using": {"_count": 1}}, "dwelling": {"_count": 1, "upon": {"_count": 1}}, "well": {"_count": 1, "Lucius": {"_count": 1}}, "astride": {"_count": 1, "the": {"_count": 1}}, "backto": {"_count": 1, "back": {"_count": 1}}, "slipping": {"_count": 1, "backward": {"_count": 1}}, "crammed": {"_count": 1, "beside": {"_count": 1}}, "brilliant": {"_count": 1, "and": {"_count": 1}}, "yet": {"_count": 1, "he": {"_count": 1}}, "liked": {"_count": 1, "and": {"_count": 1}}, "Im": {"_count": 1, "enclosing": {"_count": 1}}, "whispering": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 2, "fell": {"_count": 1}, "could": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "flying": {"_count": 2, "backward": {"_count": 1}, "through": {"_count": 1}}, "instantly": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "think": {"_count": 1}}, "drifted": {"_count": 1, "slowly": {"_count": 1}}, "reacting": {"_count": 1, "to": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "taking": {"_count": 1, "it": {"_count": 1}}, "represented": {"_count": 1, "in": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "completely": {"_count": 2, "": {"_count": 1}, "invisible": {"_count": 1}}, "already": {"_count": 1, "imagining": {"_count": 1}}, "possessor": {"_count": 1, "of": {"_count": 1}}, "present": {"_count": 1, "not": {"_count": 1}}, "ostentatiously": {"_count": 1, "upon": {"_count": 1}}, "started": {"_count": 1, "it": {"_count": 1}}, "glide": {"_count": 1, "back": {"_count": 1}}, "sliding": {"_count": 1, "uncontrollably": {"_count": 1}}, "succumbing": {"_count": 1, "again": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "murmured": {"_count": 1, "Nox": {"_count": 1}}, "quickly": {"_count": 1, "Lily": {"_count": 1}}, "mastered": {"_count": 1, "his": {"_count": 1}}, "famous": {"_count": 1, "attentionseeking": {"_count": 1}}, "must": {"_count": 1, "do": {"_count": 1}}, "latched": {"_count": 1, "to": {"_count": 1}}, "what": {"_count": 1, "quality": {"_count": 1}}, "floppy": {"_count": 1, "and": {"_count": 1}}, "lie": {"_count": 1, "silent": {"_count": 1}}, "lowered": {"_count": 1, "onto": {"_count": 1}}, "But": {"_count": 1, "Voldemort": {"_count": 1}}, "never": {"_count": 1, "dreamed": {"_count": 1}}, "clear": {"_count": 1, "": {"_count": 1}}}, "little": {"_count": 962, "shake": {"_count": 6, "and": {"_count": 3}, "that": {"_count": 1}, "nearly": {"_count": 1}, "to": {"_count": 1}}, "pop": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 14, "celebrate": {"_count": 1}, "take": {"_count": 1}, "the": {"_count": 2}, "one": {"_count": 2}, "do": {"_count": 4}, "set": {"_count": 1}, "get": {"_count": 1}, "choose": {"_count": 1}, "listen": {"_count": 1}}, "boy": {"_count": 12, "": {"_count": 3}, "who": {"_count": 3}, "but": {"_count": 1}, "is": {"_count": 1}, "to": {"_count": 1}, "can": {"_count": 1}, "I": {"_count": 2}}, "planets": {"_count": 1, "were": {"_count": 1}}, "Harry": {"_count": 2, "off": {"_count": 1}, "Potter": {"_count": 1}}, "bundle": {"_count": 1, "Hagrids": {"_count": 1}}, "way": {"_count": 14, "apart": {"_count": 1}, "into": {"_count": 1}, "outside": {"_count": 1}, "above": {"_count": 1}, "along": {"_count": 4}, "across": {"_count": 1}, "down": {"_count": 1}, "beyond": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}}, "sign": {"_count": 2, "next": {"_count": 1}, "neatly": {"_count": 1}}, "shack": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 20}}, "bronze": {"_count": 3, "ones": {"_count": 1}, "coins": {"_count": 1}, "Knuts": {"_count": 1}}, "town": {"_count": 1, "to": {"_count": 1}}, "man": {"_count": 13, "in": {"_count": 5}, "with": {"_count": 1}, "swooped": {"_count": 1}, "floating": {"_count": 1}, "wearing": {"_count": 2}, "": {"_count": 1}, "who": {"_count": 1}, "how": {"_count": 1}}, "shops": {"_count": 2, "": {"_count": 2}}, "railway": {"_count": 1, "tracks": {"_count": 1}}, "package": {"_count": 3, "wrapped": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "more": {"_count": 24, "power": {"_count": 1}, "than": {"_count": 4}, "butterbeer": {"_count": 1}, "in": {"_count": 1}, "vigorously": {"_count": 1}, "firmly": {"_count": 1}, "his": {"_count": 1}, "loudly": {"_count": 2}, "audible": {"_count": 1}, "heavily": {"_count": 1}, "gracefully": {"_count": 1}, "tightly": {"_count": 1}, "confidence": {"_count": 1}, "confident": {"_count": 1}, "action": {"_count": 1}, "love": {"_count": 1}, "often": {"_count": 1}, "cautiously": {"_count": 1}, "respect": {"_count": 1}, "fear": {"_count": 1}}, "girls": {"_count": 1, "voice": {"_count": 1}}, "teeth": {"_count": 1, "sunk": {"_count": 1}}, "boats": {"_count": 3, "sitting": {"_count": 1}, "moved": {"_count": 1}, "carried": {"_count": 1}}, "monk": {"_count": 1, "was": {"_count": 1}}, "while": {"_count": 8, "to": {"_count": 3}, "later": {"_count": 3}, "and": {"_count": 1}, "before": {"_count": 1}}, "hissing": {"_count": 1, "fires": {"_count": 1}}, "chat": {"_count": 10, "wasnt": {"_count": 1}, "soon": {"_count": 1}, "and": {"_count": 1}, "Peter": {"_count": 1}, "with": {"_count": 4}, "between": {"_count": 1}, "after": {"_count": 1}}, "flick": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "witch": {"_count": 7, "called": {"_count": 1}, "who": {"_count": 1}, "beside": {"_count": 2}, "this": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}}, "wizard": {"_count": 9, "who": {"_count": 2}, "gold": {"_count": 1}, "with": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "took": {"_count": 1}, "started": {"_count": 1}}, "foolish": {"_count": 1, "wand": {"_count": 1}}, "speech": {"_count": 1, "": {"_count": 1}}, "crybabies": {"_count": 1, "Parvati": {"_count": 1}}, "friends": {"_count": 5, "with": {"_count": 1}, "": {"_count": 1}, "told": {"_count": 1}, "hes": {"_count": 1}, "then": {"_count": 1}}, "about": {"_count": 2, "Crabbe": {"_count": 1}, "Dumbledore": {"_count": 1}}, "plastic": {"_count": 2, "sticks": {"_count": 1}, "toys": {"_count": 1}}, "fluttering": {"_count": 1, "silver": {"_count": 1}}, "eyes": {"_count": 6, "saw": {"_count": 1}, "fixed": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "charm": {"_count": 1, "so": {"_count": 1}}, "round": {"_count": 1, "ball": {"_count": 1}}, "jar": {"_count": 1, "in": {"_count": 1}}, "closer": {"_count": 10, "to": {"_count": 5}, "": {"_count": 3}, "he": {"_count": 1}, "and": {"_count": 1}}, "old": {"_count": 2, "man": {"_count": 2}}, "bit": {"_count": 12, "of": {"_count": 6}, "about": {"_count": 1}, "": {"_count": 2}, "further": {"_count": 1}, "An": {"_count": 1}, "more": {"_count": 1}}, "bunny": {"_count": 1, "rabbit": {"_count": 1}}, "moan": {"_count": 3, "and": {"_count": 1}, "in": {"_count": 1}, "behind": {"_count": 1}}, "joke": {"_count": 4, "sir": {"_count": 1}, "Neville": {"_count": 1}, "said": {"_count": 1}, "Fred": {"_count": 1}}, "bottle": {"_count": 6, "in": {"_count": 1}, "hastily": {"_count": 1}, "and": {"_count": 1}, "full": {"_count": 1}, "of": {"_count": 1}, "Hermione": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 6, "smiled": {"_count": 1}, "the": {"_count": 2}, "read": {"_count": 1}, "kept": {"_count": 1}, "his": {"_count": 1}}, "mercy": {"_count": 1, "to": {"_count": 1}}, "fuller": {"_count": 1, "than": {"_count": 1}}, "change": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "gentleman": {"_count": 1, "": {"_count": 1}}, "creature": {"_count": 2, "on": {"_count": 1}, "enter": {"_count": 1}}, "tyke": {"_count": 1, "": {"_count": 1}}, "haphazardly": {"_count": 1, "throwing": {"_count": 1}}, "Santa": {"_count": 1, "Clauses": {"_count": 1}}, "feet": {"_count": 3, "he": {"_count": 1}, "pattered": {"_count": 1}, "resting": {"_count": 1}}, "shoulders": {"_count": 1, "hunched": {"_count": 1}}, "hair": {"_count": 1, "he": {"_count": 1}}, "announcement": {"_count": 1, "Ive": {"_count": 1}}, "button": {"_count": 1, "here": {"_count": 1}}, "plants": {"_count": 1, "purplish": {"_count": 1}}, "fists": {"_count": 1, "and": {"_count": 1}}, "hearts": {"_count": 1, "": {"_count": 1}}, "chortle": {"_count": 1, "I": {"_count": 1}}, "quiz": {"_count": 1, "": {"_count": 1}}, "blighters": {"_count": 1, "they": {"_count": 1}}, "Mudblood": {"_count": 2, "he": {"_count": 1}, "do": {"_count": 1}}, "sister": {"_count": 4, "said": {"_count": 1}, "Ginny": {"_count": 1}, "Gabrielle": {"_count": 1}, "": {"_count": 1}}, "drowsy": {"_count": 1, "": {"_count": 1}}, "else": {"_count": 2, "but": {"_count": 1}, "the": {"_count": 1}}, "extra": {"_count": 4, "help": {"_count": 1}, "gold": {"_count": 1}, "authority": {"_count": 1}, "wisdom": {"_count": 1}}, "private": {"_count": 1, "training": {"_count": 1}}, "dueling": {"_count": 1, "club": {"_count": 1}}, "overexcited": {"_count": 1, "Snape": {"_count": 1}}, "voice": {"_count": 6, "in": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "he": {"_count": 1}, "Well": {"_count": 1}}, "noises": {"_count": 1, "": {"_count": 1}}, "puffs": {"_count": 1, "of": {"_count": 1}}, "book": {"_count": 1, "lay": {"_count": 1}}, "flaw": {"_count": 1, "": {"_count": 1}}, "surprise": {"_count": 1, "for": {"_count": 1}}, "square": {"_count": 2, "for": {"_count": 1}, "on": {"_count": 1}}, "window": {"_count": 1, "and": {"_count": 1}}, "girl": {"_count": 14, "": {"_count": 2}, "got": {"_count": 1}, "and": {"_count": 1}, "am": {"_count": 1}, "shaking": {"_count": 1}, "around": {"_count": 1}, "up": {"_count": 1}, "might": {"_count": 1}, "madam": {"_count": 1}, "whose": {"_count": 1}, "clutching": {"_count": 1}, "in": {"_count": 1}, "Lovegood": {"_count": 1}}, "wooden": {"_count": 2, "house": {"_count": 1}, "man": {"_count": 1}}, "sphere": {"_count": 1, "of": {"_count": 1}}, "ways": {"_count": 1, "away": {"_count": 1}}, "distance": {"_count": 2, "ahead": {"_count": 1}, "away": {"_count": 1}}, "black": {"_count": 2, "diary": {"_count": 1}, "velvet": {"_count": 1}}, "troubles": {"_count": 1, "of": {"_count": 1}}, "Miss": {"_count": 1, "Weasley": {"_count": 1}}, "of": {"_count": 15, "my": {"_count": 1}, "Hermione": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 5}, "his": {"_count": 4}, "her": {"_count": 1}, "Voldemort": {"_count": 1}}, "Ginny": {"_count": 1, "to": {"_count": 1}}, "brat": {"_count": 2, "waited": {"_count": 1}, "of": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 4, "looked": {"_count": 1}, "could": {"_count": 1}, "can": {"_count": 1}, "seemed": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "neck": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "panes": {"_count": 1, "of": {"_count": 1}}, "finger": {"_count": 1, "sticking": {"_count": 1}}, "thing": {"_count": 5, "it": {"_count": 1}, "like": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 1}, "You": {"_count": 1}}, "liar": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "But": {"_count": 1, "Aunt": {"_count": 1}}, "Arry": {"_count": 1, "Potter": {"_count": 1}}, "lighter": {"_count": 2, "": {"_count": 1}, "owing": {"_count": 1}}, "witches": {"_count": 2, "from": {"_count": 1}, "barely": {"_count": 1}}, "flags": {"_count": 1, "on": {"_count": 1}}, "git": {"_count": 1, "he": {"_count": 1}}, "knight": {"_count": 1, "tugged": {"_count": 1}}, "poufs": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}, "aura": {"_count": 1, "around": {"_count": 1}}, "receptivity": {"_count": 1, "to": {"_count": 1}}, "patience": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "spell": {"_count": 1, "he": {"_count": 1}}, "disappointed": {"_count": 2, "": {"_count": 2}}, "goblinlike": {"_count": 1, "creatures": {"_count": 1}}, "horns": {"_count": 1, "had": {"_count": 1}}, "Professor": {"_count": 4, "Flitwick": {"_count": 4}}, "onelegged": {"_count": 1, "creature": {"_count": 1}}, "beautys": {"_count": 1, "taught": {"_count": 1}}, "ink": {"_count": 1, "self": {"_count": 1}}, "thatched": {"_count": 1, "cottages": {"_count": 1}}, "gang": {"_count": 1, "": {"_count": 1}}, "Peter": {"_count": 2, "Pettigrew": {"_count": 1}, "got": {"_count": 1}}, "Pettigrew": {"_count": 1, "did": {"_count": 1}}, "effect": {"_count": 1, "the": {"_count": 1}}, "help": {"_count": 2, "from": {"_count": 2}}, "piece": {"_count": 2, "of": {"_count": 1}, "here": {"_count": 1}}, "Scops": {"_count": 1, "owls": {"_count": 1}}, "table": {"_count": 5, "was": {"_count": 1}, "Harry": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "earlier": {"_count": 2, "than": {"_count": 1}, "I": {"_count": 1}}, "figures": {"_count": 1, "across": {"_count": 1}}, "disappointing": {"_count": 1, "": {"_count": 1}}, "kiss": {"_count": 1, "I": {"_count": 1}}, "color": {"_count": 5, "there": {"_count": 1}, "remaining": {"_count": 1}, "it": {"_count": 2}, "she": {"_count": 1}}, "matters": {"_count": 1, "with": {"_count": 1}}, "overenthusiastic": {"_count": 2, "": {"_count": 1}, "if": {"_count": 1}}, "faster": {"_count": 4, "and": {"_count": 1}, "": {"_count": 3}}, "time": {"_count": 6, "he": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 1}, "left": {"_count": 1}}, "beak": {"_count": 1, "hes": {"_count": 1}}, "as": {"_count": 7, "two": {"_count": 1}, "he": {"_count": 5}, "possible": {"_count": 1}}, "health": {"_count": 1, "I": {"_count": 1}}, "courage": {"_count": 1, "from": {"_count": 1}}, "nancy": {"_count": 1, "boy": {"_count": 1}}, "shuddering": {"_count": 1, "gasp": {"_count": 1}}, "number": {"_count": 1, "on": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "farther": {"_count": 7, "on": {"_count": 3}, "along": {"_count": 2}, "away": {"_count": 1}, "so": {"_count": 1}}, "boys": {"_count": 1, "yells": {"_count": 1}}, "Agatha": {"_count": 1, "Timms": {"_count": 1}}, "bearded": {"_count": 1, "men": {"_count": 1}}, "success": {"_count": 1, "meanwhile": {"_count": 1}}, "higher": {"_count": 8, "": {"_count": 3}, "up": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}, "on": {"_count": 2}}, "reunion": {"_count": 1, "for": {"_count": 1}}, "because": {"_count": 2, "they": {"_count": 1}, "Cho": {"_count": 1}}, "progress": {"_count": 2, "though": {"_count": 1}, "with": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 3}, "landing": {"_count": 1}, "his": {"_count": 1}}, "too": {"_count": 10, "": {"_count": 1}, "heartily": {"_count": 1}, "loudly": {"_count": 1}, "quickly": {"_count": 1}, "rowdy": {"_count": 1}, "understanding": {"_count": 1}, "enthusiastically": {"_count": 1}, "much": {"_count": 2}, "kindly": {"_count": 1}}, "ahead": {"_count": 5, "of": {"_count": 4}, "taking": {"_count": 1}}, "expected": {"_count": 1, "something": {"_count": 1}}, "Creevey": {"_count": 1, "brothers": {"_count": 1}}, "photo": {"_count": 1, "shoot": {"_count": 1}}, "word": {"_count": 1, "with": {"_count": 1}}, "oldfashioned": {"_count": 1, "Dumbledore": {"_count": 1}}, "ray": {"_count": 1, "of": {"_count": 1}}, "less": {"_count": 3, "frivolous": {"_count": 1}, "lined": {"_count": 1}, "talk": {"_count": 1}}, "elves": {"_count": 1, "were": {"_count": 1}}, "skirt": {"_count": 1, "and": {"_count": 1}}, "shiver": {"_count": 2, "as": {"_count": 1}, "bouncing": {"_count": 1}}, "hero": {"_count": 2, "I": {"_count": 1}, "for": {"_count": 1}}, "ferret": {"_count": 1, "arent": {"_count": 1}}, "feathery": {"_count": 1, "git": {"_count": 1}}, "daylight": {"_count": 2, "so": {"_count": 1}, "could": {"_count": 1}}, "library": {"_count": 1, "sessions": {"_count": 1}}, "unfortunate": {"_count": 1, "of": {"_count": 1}}, "bloke": {"_count": 1, "my": {"_count": 1}}, "slipped": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 3}, "his": {"_count": 1}, "its": {"_count": 1}, "her": {"_count": 1}, "pools": {"_count": 1}, "front": {"_count": 1}}, "shock": {"_count": 1, "for": {"_count": 1}}, "hands": {"_count": 1, "pushing": {"_count": 1}}, "treasure": {"_count": 1, "detectors": {"_count": 1}}, "reminder": {"_count": 1, "why": {"_count": 1}}, "better": {"_count": 3, "off": {"_count": 1}, "": {"_count": 2}}, "persuasion": {"_count": 1, "she": {"_count": 1}}, "longer": {"_count": 9, "Nagini": {"_count": 1}, "fulfilling": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 2}, "than": {"_count": 3}}, "but": {"_count": 3, "keeping": {"_count": 1}, "you": {"_count": 1}, "miraculously": {"_count": 1}}, "break": {"_count": 1, "said": {"_count": 1}}, "pause": {"_count": 2, "": {"_count": 2}}, "dose": {"_count": 1, "of": {"_count": 1}}, "elf": {"_count": 4, "friend": {"_count": 1}, "bobbed": {"_count": 1}, "": {"_count": 1}, "stood": {"_count": 1}}, "blustering": {"_count": 1, "a": {"_count": 1}}, "pompous": {"_count": 1, "but": {"_count": 1}}, "then": {"_count": 1, "she": {"_count": 1}}, "job": {"_count": 1, "fer": {"_count": 1}}, "interviews": {"_count": 1, "with": {"_count": 1}}, "tentacles": {"_count": 1, "all": {"_count": 1}}, "knot": {"_count": 3, "of": {"_count": 3}}, "brother": {"_count": 3, "said": {"_count": 2}, "": {"_count": 1}}, "clouds": {"_count": 1, "of": {"_count": 1}}, "beasts": {"_count": 2, "they": {"_count": 1}, "would": {"_count": 1}}, "If": {"_count": 1, "you": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Underground": {"_count": 1, "station": {"_count": 1}}, "flock": {"_count": 3, "of": {"_count": 3}}, "red": {"_count": 1, "pins": {"_count": 1}}, "wall": {"_count": 1, "space": {"_count": 1}}, "nod": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "cover": {"_count": 1, "story": {"_count": 1}}, "bow": {"_count": 5, "": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}}, "wider": {"_count": 2, "and": {"_count": 1}, "so": {"_count": 1}}, "party": {"_count": 2, "not": {"_count": 1}, "just": {"_count": 1}}, "photographic": {"_count": 1, "people": {"_count": 1}}, "people": {"_count": 1, "in": {"_count": 1}}, "squeak": {"_count": 3, "of": {"_count": 2}, "but": {"_count": 1}}, "plant": {"_count": 1, "": {"_count": 1}}, "owl": {"_count": 2, "isnt": {"_count": 1}, "with": {"_count": 1}}, "strife": {"_count": 1, "When": {"_count": 1}}, "throatclearing": {"_count": 1, "cough": {"_count": 1}}, "faces": {"_count": 1, "looking": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "cactus": {"_count": 1, "he": {"_count": 1}}, "bro": {"_count": 3, "said": {"_count": 3}}, "straighter": {"_count": 6, "her": {"_count": 1}, "and": {"_count": 2}, "apparently": {"_count": 1}, "": {"_count": 2}}, "tables": {"_count": 1, "with": {"_count": 1}}, "laugh": {"_count": 5, "": {"_count": 3}, "extremely": {"_count": 1}, "in": {"_count": 1}}, "scream": {"_count": 3, "Neville": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}}, "disbelieving": {"_count": 1, "noise": {"_count": 1}}, "moving": {"_count": 1, "stickman": {"_count": 1}}, "deeper": {"_count": 1, "with": {"_count": 1}}, "restless": {"_count": 1, "in": {"_count": 1}}, "cooperation": {"_count": 1, "from": {"_count": 1}}, "toerags": {"_count": 1, "like": {"_count": 1}}, "cough": {"_count": 4, "she": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "pink": {"_count": 4, "": {"_count": 1}, "but": {"_count": 1}, "kites": {"_count": 1}, "note": {"_count": 1}}, "choice": {"_count": 1, "but": {"_count": 1}}, "jump": {"_count": 1, "all": {"_count": 1}}, "skip": {"_count": 1, "his": {"_count": 1}}, "false": {"_count": 1, "laugh": {"_count": 1}}, "scumbag": {"_count": 1, "to": {"_count": 1}}, "golden": {"_count": 4, "squares": {"_count": 1}, "bottle": {"_count": 1}, "doors": {"_count": 1}, "cup": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "cave": {"_count": 1, "ter": {"_count": 1}}, "wave": {"_count": 2, "so": {"_count": 1}, "glimpsed": {"_count": 1}}, "confused": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "anxious": {"_count": 2, "now": {"_count": 1}, "": {"_count": 1}}, "fingers": {"_count": 1, "then": {"_count": 1}}, "snotrags": {"_count": 1, "you": {"_count": 1}}, "harder": {"_count": 2, "than": {"_count": 2}}, "above": {"_count": 1, "a": {"_count": 1}}, "brain": {"_count": 1, "might": {"_count": 1}}, "nervous": {"_count": 1, "": {"_count": 1}}, "blackandwhite": {"_count": 1, "people": {"_count": 1}}, "jolt": {"_count": 1, "in": {"_count": 1}}, "traffic": {"_count": 1, "on": {"_count": 1}}, "jaunt": {"_count": 1, "outside": {"_count": 1}}, "tip": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "place": {"_count": 1, "where": {"_count": 1}}, "village": {"_count": 2, "newsletter": {"_count": 1}, "cradled": {"_count": 1}}, "detail": {"_count": 2, "and": {"_count": 1}, "matters": {"_count": 1}}, "stooped": {"_count": 1, "when": {"_count": 1}}, "toward": {"_count": 2, "him": {"_count": 2}}, "further": {"_count": 1, "and": {"_count": 1}}, "snag": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "tantrum": {"_count": 1, "": {"_count": 1}}, "lastminute": {"_count": 1, "practice": {"_count": 1}}, "Remedial": {"_count": 1, "Potions": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "thud": {"_count": 1, "in": {"_count": 1}}, "Mudbloods": {"_count": 1, "like": {"_count": 1}}, "piefrill": {"_count": 1, "around": {"_count": 1}}, "muffled": {"_count": 1, "": {"_count": 1}}, "oddball": {"_count": 1, "who": {"_count": 1}}, "berks": {"_count": 1, "you": {"_count": 1}}, "willowpatterned": {"_count": 1, "legs": {"_count": 1}}, "circles": {"_count": 1, "around": {"_count": 1}}, "legs": {"_count": 1, "were": {"_count": 1}}, "later": {"_count": 2, "in": {"_count": 1}, "Harry": {"_count": 1}}, "or": {"_count": 2, "no": {"_count": 2}}, "at": {"_count": 4, "the": {"_count": 4}}, "trip": {"_count": 1, "an": {"_count": 1}}, "deaf": {"_count": 1, "she": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "squares": {"_count": 1, "of": {"_count": 1}}, "glass": {"_count": 1, "balls": {"_count": 1}}, "Delacour": {"_count": 1, "girl": {"_count": 1}}, "if": {"_count": 1, "Longbottom": {"_count": 1}}, "apprehensive": {"_count": 1, "now": {"_count": 1}}, "whimpers": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 2, "centaurs": {"_count": 1}, "worse": {"_count": 1}}, "Impediment": {"_count": 1, "Jinx": {"_count": 1}}, "shaken": {"_count": 1, "but": {"_count": 1}}, "baby": {"_count": 2, "woke": {"_count": 1}, "Potter": {"_count": 1}}, "bitty": {"_count": 1, "baby": {"_count": 1}}, "friend": {"_count": 4, "die": {"_count": 1}, "": {"_count": 2}, "Hagrid": {"_count": 1}}, "HarryV": {"_count": 1, "she": {"_count": 1}}, "air": {"_count": 1, "in": {"_count": 1}}, "prince": {"_count": 1, "but": {"_count": 1}}, "whos": {"_count": 1, "Divination": {"_count": 1}}, "tweak": {"_count": 1, "": {"_count": 1}}, "portrait": {"_count": 1, "talking": {"_count": 1}}, "discomfited": {"_count": 1, "": {"_count": 1}}, "selfrestraint": {"_count": 1, "she": {"_count": 1}}, "slopping": {"_count": 1, "wine": {"_count": 1}}, "over": {"_count": 4, "ten": {"_count": 1}, "an": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}}, "fragile": {"_count": 1, "at": {"_count": 1}}, "smiling": {"_count": 1, "in": {"_count": 1}}, "puzzled": {"_count": 2, "Harry": {"_count": 1}, "about": {"_count": 1}}, "smaller": {"_count": 1, "than": {"_count": 1}}, "proud": {"_count": 1, "at": {"_count": 1}}, "flat": {"_count": 1, "over": {"_count": 1}}, "courtyard": {"_count": 1, "at": {"_count": 1}}, "shop": {"_count": 1, "together": {"_count": 1}}, "around": {"_count": 1, "their": {"_count": 1}}, "impatiently": {"_count": 3, "": {"_count": 3}}, "flustered": {"_count": 1, "by": {"_count": 1}}, "adventure": {"_count": 2, "there": {"_count": 1}, "": {"_count": 1}}, "doubt": {"_count": 1, "given": {"_count": 1}}, "blood": {"_count": 2, "traitor": {"_count": 1}, "traitoA": {"_count": 1}}, "annoying": {"_count": 1, "at": {"_count": 1}}, "uncomfortable": {"_count": 1, "and": {"_count": 1}}, "louder": {"_count": 2, "must": {"_count": 1}, "than": {"_count": 1}}, "potion": {"_count": 2, "called": {"_count": 1}, "Felix": {"_count": 1}}, "Felix": {"_count": 1, "here": {"_count": 1}}, "below": {"_count": 1, "them": {"_count": 1}}, "snakey": {"_count": 1, "Slither": {"_count": 1}}, "cleaner": {"_count": 1, "than": {"_count": 1}}, "Squib": {"_count": 1, "you": {"_count": 1}}, "spindle": {"_count": 1, "legged": {"_count": 1}}, "Ravenclaws": {"_count": 1, "went": {"_count": 1}}, "jinxes": {"_count": 1, "and": {"_count": 1}}, "suppers": {"_count": 1, "youve": {"_count": 1}}, "violet": {"_count": 1, "ribbonadorned": {"_count": 1}}, "recreation": {"_count": 1, "never": {"_count": 1}}, "notice": {"_count": 2, "of": {"_count": 1}, "though": {"_count": 1}}, "group": {"_count": 2, "of": {"_count": 2}}, "odd": {"_count": 2, "and": {"_count": 1}, "I": {"_count": 1}}, "older": {"_count": 1, "he": {"_count": 1}}, "Amy": {"_count": 1, "Benson": {"_count": 1}}, "cache": {"_count": 1, "of": {"_count": 1}}, "stories": {"_count": 1, "of": {"_count": 1}}, "politer": {"_count": 1, "to": {"_count": 1}}, "lower": {"_count": 1, "over": {"_count": 1}}, "roving": {"_count": 1, "tables": {"_count": 1}}, "effort": {"_count": 1, "on": {"_count": 1}}, "askew": {"_count": 1, "a": {"_count": 1}}, "afraid": {"_count": 1, "": {"_count": 1}}, "ill": {"_count": 1, "": {"_count": 1}}, "hint": {"_count": 1, "": {"_count": 1}}, "bitter": {"_count": 1, "and": {"_count": 1}}, "problem": {"_count": 1, "in": {"_count": 1}}, "shudder": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "purkey": {"_count": 1, "or": {"_count": 1}}, "gnome": {"_count": 1, "prints": {"_count": 1}}, "chaps": {"_count": 1, "arent": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "clutching": {"_count": 1}}, "slut": {"_count": 1, "": {"_count": 1}}, "taken": {"_count": 2, "aback": {"_count": 2}}, "Potions": {"_count": 1, "Prince": {"_count": 1}}, "evening": {"_count": 1, "parties": {"_count": 1}}, "stone": {"_count": 1, "": {"_count": 1}}, "wind": {"_count": 2, "the": {"_count": 1}, "now": {"_count": 1}}, "fist": {"_count": 1, "into": {"_count": 1}}, "face": {"_count": 1, "onto": {"_count": 1}}, "silence": {"_count": 2, "": {"_count": 2}}, "desperately": {"_count": 2, "it": {"_count": 1}, "how": {"_count": 1}}, "grunting": {"_count": 1, "snores": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "point": {"_count": 1, "in": {"_count": 1}}, "crystal": {"_count": 1, "bottles": {"_count": 1}}, "lacquered": {"_count": 1, "boxes": {"_count": 1}}, "hand": {"_count": 2, "brushing": {"_count": 1}, "": {"_count": 1}}, "cakes": {"_count": 1, "which": {"_count": 1}}, "dear": {"_count": 1, "boy": {"_count": 1}}, "scene": {"_count": 1, "said": {"_count": 1}}, "meeting": {"_count": 1, "proved": {"_count": 1}}, "shriek": {"_count": 1, "Ron": {"_count": 1}}, "shrug": {"_count": 1, "but": {"_count": 1}}, "kid": {"_count": 1, "trying": {"_count": 1}}, "exuberant": {"_count": 1, "for": {"_count": 1}}, "nudge": {"_count": 1, "at": {"_count": 1}}, "thickly": {"_count": 1, "Parry": {"_count": 1}}, "crosseyed": {"_count": 1, "while": {"_count": 1}}, "tired": {"_count": 1, "of": {"_count": 1}}, "let": {"_count": 1, "down": {"_count": 1}}, "Charms": {"_count": 2, "master": {"_count": 2}}, "parties": {"_count": 1, "for": {"_count": 1}}, "thought": {"_count": 1, "for": {"_count": 1}}, "though": {"_count": 5, "he": {"_count": 2}, "there": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "abashed": {"_count": 1, "but": {"_count": 1}}, "sea": {"_count": 1, "air": {"_count": 1}}, "wet": {"_count": 1, "": {"_count": 1}}, "brighter": {"_count": 1, "": {"_count": 1}}, "bump": {"_count": 1, "and": {"_count": 1}}, "boat": {"_count": 1, "sank": {"_count": 1}}, "stronger": {"_count": 1, "despite": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "woman": {"_count": 2, "who": {"_count": 1}, "twist": {"_count": 1}}, "titter": {"_count": 1, "": {"_count": 1}}, "jokesll": {"_count": 1, "help": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "shocked": {"_count": 1, "that": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}, "bboy": {"_count": 1, "": {"_count": 1}}, "worried": {"_count": 2, "about": {"_count": 1}, "": {"_count": 1}}, "alarmed": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "tuftyhaired": {"_count": 1, "man": {"_count": 1}}, "trickier": {"_count": 1, "than": {"_count": 1}}, "chance": {"_count": 1, "of": {"_count": 1}}, "diseased": {"_count": 1, "over": {"_count": 1}}, "gold": {"_count": 1, "left": {"_count": 1}}, "digging": {"_count": 1, "uncovered": {"_count": 1}}, "interest": {"_count": 1, "in": {"_count": 1}}, "jerk": {"_count": 3, "of": {"_count": 2}, "but": {"_count": 1}}, "awry": {"_count": 1, "MadEye": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "humiliated": {"_count": 1, "as": {"_count": 1}}, "haughty": {"_count": 1, "after": {"_count": 1}}, "shakily": {"_count": 1, "": {"_count": 1}}, "grumpily": {"_count": 1, "breaking": {"_count": 1}}, "late": {"_count": 1, "with": {"_count": 1}}, "hot": {"_count": 1, "again": {"_count": 1}}, "squit": {"_count": 1, "Mundungus": {"_count": 1}}, "nauseated": {"_count": 1, "and": {"_count": 1}}, "gathering": {"_count": 1, "she": {"_count": 1}}, "pointed": {"_count": 1, "black": {"_count": 1}}, "sadly": {"_count": 1, "straightened": {"_count": 1}}, "Pigwidgeons": {"_count": 1, "cage": {"_count": 1}}, "defensively": {"_count": 2, "": {"_count": 2}}, "we": {"_count": 1, "heard": {"_count": 1}}, "garden": {"_count": 1, "to": {"_count": 1}}, "gnomes": {"_count": 1, "or": {"_count": 1}}, "beard": {"_count": 1, "": {"_count": 1}}, "hysterically": {"_count": 1, "": {"_count": 1}}, "shabbylooking": {"_count": 1, "but": {"_count": 1}}, "excursions": {"_count": 1, "": {"_count": 1}}, "consideration": {"_count": 1, "as": {"_count": 1}}, "puff": {"_count": 1, "of": {"_count": 1}}, "spasm": {"_count": 1, "in": {"_count": 1}}, "satisfaction": {"_count": 1, "from": {"_count": 1}}, "Ministry": {"_count": 1, "witch": {"_count": 1}}, "witchs": {"_count": 1, "handbag": {"_count": 1}}, "push": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "waving": {"_count": 1, "legs": {"_count": 1}}, "lace": {"_count": 1, "box": {"_count": 1}}, "disturbances": {"_count": 1, "in": {"_count": 1}}, "start": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "lightheaded": {"_count": 1, "": {"_count": 1}}, "Gregorovitch": {"_count": 1, "s": {"_count": 1}}, "shorter": {"_count": 1, "than": {"_count": 1}}, "waspishly": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 1, "and": {"_count": 1}}, "parcel": {"_count": 1, "of": {"_count": 1}}, "pictures": {"_count": 1, "over": {"_count": 1}}, "church": {"_count": 3, "beside": {"_count": 1}, "whose": {"_count": 1}, "": {"_count": 1}}, "lane": {"_count": 1, "along": {"_count": 1}}, "frown": {"_count": 1, "on": {"_count": 1}}, "lurch": {"_count": 1, "of": {"_count": 1}}, "eddy": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 1, "climbed": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "Ariana": {"_count": 1, "dying": {"_count": 1}}, "high": {"_count": 1, "": {"_count": 1}}, "madly": {"_count": 1, "poor": {"_count": 1}}, "sleep": {"_count": 1, "Harrys": {"_count": 1}}, "lights": {"_count": 1, "were": {"_count": 1}}, "click": {"_count": 1, "": {"_count": 1}}, "ball": {"_count": 1, "of": {"_count": 1}}, "embarrassed": {"_count": 1, "but": {"_count": 1}}, "house": {"_count": 1, "protection": {"_count": 1}}, "kitchen": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "radio": {"_count": 1, "": {"_count": 1}}, "climate": {"_count": 1, "of": {"_count": 1}}, "holiday": {"_count": 1, "after": {"_count": 1}}, "haul": {"_count": 1, "for": {"_count": 1}}, "Slytherin": {"_count": 1, "said": {"_count": 1}}, "girly": {"_count": 1, "": {"_count": 1}}, "goblin": {"_count": 3, "in": {"_count": 1}, "by": {"_count": 1}, "whom": {"_count": 1}}, "heroes": {"_count": 1, "up": {"_count": 1}}, "monkey": {"_count": 1, "": {"_count": 1}}, "body": {"_count": 1, "": {"_count": 1}}, "hall": {"_count": 1, "their": {"_count": 1}}, "landing": {"_count": 1, "and": {"_count": 1}}, "bunnies": {"_count": 1, "though": {"_count": 1}}, "ears": {"_count": 1, "Luna": {"_count": 1}}, "cottage": {"_count": 1, "and": {"_count": 1}}, "pouch": {"_count": 1, "still": {"_count": 1}}, "inns": {"_count": 1, "existence": {"_count": 1}}, "English": {"_count": 1, "but": {"_count": 1}}, "breaking": {"_count": 1, "in": {"_count": 1}}, "cart": {"_count": 1, "that": {"_count": 1}}, "colored": {"_count": 1, "dots": {"_count": 1}}, "faintly": {"_count": 1, "and": {"_count": 1}}, "scab": {"_count": 1, "": {"_count": 1}}, "Dark": {"_count": 1, "Marks": {"_count": 1}}, "sidelines": {"_count": 1, "then": {"_count": 1}}, "freak": {"_count": 1, "doing": {"_count": 1}}, "Doge": {"_count": 1, "": {"_count": 1}}, "imagination": {"_count": 1, "to": {"_count": 1}}, "door": {"_count": 1, "and": {"_count": 1}}, "now": {"_count": 1, "because": {"_count": 1}}, "first": {"_count": 1, "year": {"_count": 1}}, "whelps": {"_count": 1, "": {"_count": 1}}, "strain": {"_count": 1, "of": {"_count": 1}}, "offended": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "painted": {"_count": 1, "knight": {"_count": 1}}, "pony": {"_count": 1, "cantering": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "keeping": {"_count": 1, "his": {"_count": 1}}, "crease": {"_count": 1, "appeared": {"_count": 1}}, "smile": {"_count": 2, "twisted": {"_count": 1}, "on": {"_count": 1}}, "thicket": {"_count": 1, "off": {"_count": 1}}, "apart": {"_count": 2, "from": {"_count": 1}, "in": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "mad": {"_count": 1, "with": {"_count": 1}}, "early": {"_count": 1, "they": {"_count": 1}}, "lopsided": {"_count": 1, "like": {"_count": 1}}, "bloody": {"_count": 1, "but": {"_count": 1}}, "rows": {"_count": 1, "and": {"_count": 1}}, "gasp": {"_count": 1, "and": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "punchdrunk": {"_count": 1, "and": {"_count": 1}}, "family": {"_count": 1, "bobbed": {"_count": 1}}, "Scorpius": {"_count": 1, "said": {"_count": 1}}, "bereavement": {"_count": 1, "watching": {"_count": 1}}}, "shake": {"_count": 48, "and": {"_count": 4, "put": {"_count": 1}, "there": {"_count": 1}, "Caractacus": {"_count": 1}, "it": {"_count": 1}}, "em": {"_count": 1, "off": {"_count": 1}}, "your": {"_count": 3, "hand": {"_count": 1}, "head": {"_count": 2}}, "Harrys": {"_count": 4, "but": {"_count": 1}, "hand": {"_count": 3}}, "hands": {"_count": 8, "with": {"_count": 1}, "which": {"_count": 1}, "Madam": {"_count": 1}, "": {"_count": 3}, "ordered": {"_count": 1}, "she": {"_count": 1}}, "off": {"_count": 6, "was": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 4}}, "or": {"_count": 1, "nod": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}, "nearly": {"_count": 1, "there": {"_count": 1}}, "of": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "Neville": {"_count": 1, "off": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "his": {"_count": 1, "head": {"_count": 1}}, "everyone": {"_count": 1, "off": {"_count": 1}}, "him": {"_count": 3, "out": {"_count": 1}, "hurt": {"_count": 1}, "off": {"_count": 1}}, "to": {"_count": 1, "clear": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "uncontrollably": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}, "the": {"_count": 1, "hand": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "loose": {"_count": 1}}}, "put": {"_count": 625, "the": {"_count": 44, "cat": {"_count": 2}, "receiver": {"_count": 1}, "plates": {"_count": 1}, "money": {"_count": 1}, "class": {"_count": 1}, "cloak": {"_count": 1}, "bottle": {"_count": 2}, "Stone": {"_count": 1}, "empty": {"_count": 2}, "pink": {"_count": 1}, "flashlight": {"_count": 1}, "Pocket": {"_count": 1}, "leather": {"_count": 1}, "paper": {"_count": 1}, "Firebolt": {"_count": 1}, "Imperius": {"_count": 3}, "boys": {"_count": 1}, "tip": {"_count": 1}, "spell": {"_count": 1}, "lids": {"_count": 1}, "golden": {"_count": 1}, "nifflers": {"_count": 1}, "tips": {"_count": 1}, "hat": {"_count": 1}, "drinker": {"_count": 1}, "curse": {"_count": 1}, "finishing": {"_count": 1}, "old": {"_count": 1}, "little": {"_count": 1}, "box": {"_count": 1}, "matter": {"_count": 1}, "question": {"_count": 1}, "Dark": {"_count": 1}, "Cloak": {"_count": 1}, "Horcrux": {"_count": 1}, "effing": {"_count": 1}, "vanquished": {"_count": 1}, "protection": {"_count": 1}, "map": {"_count": 1}}, "to": {"_count": 7, "bed": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "find": {"_count": 1}, "now": {"_count": 1}, "contain": {"_count": 1}, "stop": {"_count": 1}}, "it": {"_count": 71, "back": {"_count": 5}, "through": {"_count": 2}, "out": {"_count": 4}, "in": {"_count": 11}, "there": {"_count": 6}, "from": {"_count": 1}, "this": {"_count": 2}, "carefully": {"_count": 2}, "on": {"_count": 9}, "down": {"_count": 1}, "right": {"_count": 3}, "better": {"_count": 1}, "upstairs": {"_count": 1}, "to": {"_count": 2}, "into": {"_count": 6}, "past": {"_count": 4}, "inside": {"_count": 1}, "away": {"_count": 2}, "very": {"_count": 1}, "with": {"_count": 1}, "tweaking": {"_count": 1}, "all": {"_count": 1}, "beyond": {"_count": 1}, "around": {"_count": 1}, "off": {"_count": 1}, "about": {"_count": 1}}, "out": {"_count": 15, "the": {"_count": 2}, "": {"_count": 3}, "a": {"_count": 4}, "this": {"_count": 1}, "about": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "that": {"_count": 1}, "your": {"_count": 1}}, "on": {"_count": 46, "the": {"_count": 11}, "an": {"_count": 1}, "a": {"_count": 9}, "him": {"_count": 1}, "them": {"_count": 3}, "your": {"_count": 2}, "normal": {"_count": 1}, "his": {"_count": 6}, "yer": {"_count": 1}, "you": {"_count": 2}, "hold": {"_count": 1}, "probation": {"_count": 1}, "pajamas": {"_count": 2}, "their": {"_count": 1}, "glasses": {"_count": 1}, "matching": {"_count": 1}, "my": {"_count": 1}, "that": {"_count": 1}}, "them": {"_count": 26, "on": {"_count": 13}, "all": {"_count": 1}, "safely": {"_count": 1}, "in": {"_count": 5}, "back": {"_count": 1}, "out": {"_count": 1}, "off": {"_count": 1}, "around": {"_count": 1}, "up": {"_count": 1}, "there": {"_count": 1}}, "together": {"_count": 6, "but": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}, "this": {"_count": 1}}, "in": {"_count": 24, "hopefully": {"_count": 1}, "photos": {"_count": 1}, "Slytherin": {"_count": 1}, "an": {"_count": 2}, "place": {"_count": 3}, "a": {"_count": 4}, "loads": {"_count": 1}, "ten": {"_count": 1}, "writing": {"_count": 2}, "the": {"_count": 3}, "Umbridge": {"_count": 1}, "some": {"_count": 1}, "front": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 57, "foot": {"_count": 6}, "wand": {"_count": 1}, "arm": {"_count": 3}, "hand": {"_count": 15}, "glasses": {"_count": 3}, "quill": {"_count": 1}, "face": {"_count": 5}, "weight": {"_count": 1}, "Omnioculars": {"_count": 1}, "Firebolt": {"_count": 1}, "name": {"_count": 3}, "hands": {"_count": 3}, "fingers": {"_count": 1}, "fingertips": {"_count": 1}, "books": {"_count": 1}, "eye": {"_count": 1}, "ear": {"_count": 1}, "heavy": {"_count": 1}, "other": {"_count": 1}, "head": {"_count": 2}, "book": {"_count": 1}, "hopes": {"_count": 1}, "Deluminator": {"_count": 1}, "plans": {"_count": 1}, "idea": {"_count": 1}}, "a": {"_count": 41, "stop": {"_count": 5}, "pointed": {"_count": 1}, "hex": {"_count": 2}, "charm": {"_count": 1}, "Memory": {"_count": 2}, "bit": {"_count": 4}, "comforting": {"_count": 1}, "very": {"_count": 2}, "hand": {"_count": 5}, "quarter": {"_count": 1}, "load": {"_count": 1}, "shaking": {"_count": 1}, "bet": {"_count": 1}, "Permanent": {"_count": 1}, "tenthousandGalleon": {"_count": 1}, "Flying": {"_count": 1}, "jinx": {"_count": 1}, "Protean": {"_count": 1}, "slug": {"_count": 1}, "Headless": {"_count": 1}, "toe": {"_count": 1}, "great": {"_count": 1}, "lot": {"_count": 1}, "full": {"_count": 1}, "Trace": {"_count": 1}, "fake": {"_count": 1}, "Taboo": {"_count": 1}}, "Harrys": {"_count": 2, "wand": {"_count": 1}, "name": {"_count": 1}}, "Hedwig": {"_count": 2, "inside": {"_count": 1}, "on": {"_count": 1}}, "me": {"_count": 7, "in": {"_count": 5}, "on": {"_count": 1}, "back": {"_count": 1}}, "your": {"_count": 17, "robes": {"_count": 1}, "wands": {"_count": 1}, "eyes": {"_count": 1}, "name": {"_count": 8}, "head": {"_count": 1}, "wand": {"_count": 2}, "finger": {"_count": 1}, "people": {"_count": 1}, "Cloak": {"_count": 1}}, "you": {"_count": 11, "": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 6}, "the": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 1}}, "just": {"_count": 1, "one": {"_count": 1}}, "up": {"_count": 29, "with": {"_count": 4}, "a": {"_count": 7}, "her": {"_count": 3}, "his": {"_count": 2}, "despite": {"_count": 1}, "half": {"_count": 1}, "some": {"_count": 2}, "": {"_count": 1}, "in": {"_count": 1}, "their": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 3}, "jinxes": {"_count": 1}, "against": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "Hermione": {"_count": 2, "out": {"_count": 1}, "s": {"_count": 1}}, "anything": {"_count": 2, "past": {"_count": 1}, "on": {"_count": 1}}, "an": {"_count": 9, "end": {"_count": 3}, "illegal": {"_count": 1}, "Unbreakable": {"_count": 1}, "Imperturbable": {"_count": 1}, "Enlargement": {"_count": 1}, "arm": {"_count": 2}}, "that": {"_count": 10, "admirable": {"_count": 1}, "on": {"_count": 1}, "away": {"_count": 2}, "hex": {"_count": 1}, "in": {"_count": 1}, "down": {"_count": 1}, "wrapper": {"_count": 1}, "cloak": {"_count": 1}, "Cloak": {"_count": 1}}, "him": {"_count": 14, "back": {"_count": 1}, "in": {"_count": 5}, "on": {"_count": 2}, "out": {"_count": 1}, "off": {"_count": 1}, "through": {"_count": 1}, "at": {"_count": 1}, "down": {"_count": 1}, "completely": {"_count": 1}}, "their": {"_count": 19, "heads": {"_count": 7}, "things": {"_count": 1}, "ears": {"_count": 1}, "hands": {"_count": 2}, "names": {"_count": 2}, "name": {"_count": 1}, "foot": {"_count": 1}, "bags": {"_count": 1}, "backs": {"_count": 1}, "plan": {"_count": 1}, "faith": {"_count": 1}}, "Gryffindor": {"_count": 2, "in": {"_count": 1}, "only": {"_count": 1}}, "down": {"_count": 20, "their": {"_count": 2}, "his": {"_count": 6}, "her": {"_count": 3}, "the": {"_count": 2}, "upon": {"_count": 1}, "Malfoy": {"_count": 1}, "a": {"_count": 2}, "": {"_count": 2}, "ter": {"_count": 1}}, "Hagrids": {"_count": 3, "flute": {"_count": 1}, "card": {"_count": 1}, "pouch": {"_count": 1}}, "charms": {"_count": 1, "on": {"_count": 1}}, "its": {"_count": 2, "hand": {"_count": 1}, "long": {"_count": 1}}, "himself": {"_count": 3, "in": {"_count": 2}, "under": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "her": {"_count": 14, "elbow": {"_count": 1}, "fingers": {"_count": 1}, "hand": {"_count": 2}, "whistle": {"_count": 1}, "hands": {"_count": 1}, "knife": {"_count": 1}, "arm": {"_count": 1}, "arms": {"_count": 1}, "money": {"_count": 1}, "books": {"_count": 1}, "next": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 1}}, "another": {"_count": 4, "toe": {"_count": 1}, "penalty": {"_count": 1}, "Permanent": {"_count": 1}, "niffler": {"_count": 1}}, "our": {"_count": 3, "new": {"_count": 1}, "present": {"_count": 1}, "best": {"_count": 1}}, "my": {"_count": 13, "wand": {"_count": 1}, "name": {"_count": 8}, "hand": {"_count": 1}, "champion": {"_count": 1}, "trust": {"_count": 1}, "cat": {"_count": 1}}, "Crabbes": {"_count": 1, "into": {"_count": 1}}, "too": {"_count": 2, "much": {"_count": 2}}, "beetles": {"_count": 1, "in": {"_count": 1}}, "Fudge": {"_count": 1, "right": {"_count": 1}}, "three": {"_count": 2, "tables": {"_count": 1}, "floors": {"_count": 1}}, "all": {"_count": 6, "his": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "my": {"_count": 1}, "of": {"_count": 1}}, "away": {"_count": 1, "their": {"_count": 1}}, "yourself": {"_count": 1, "in": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "They": {"_count": 1, "walked": {"_count": 1}}, "Scabbers": {"_count": 1, "was": {"_count": 1}}, "into": {"_count": 10, "her": {"_count": 1}, "Gryffindor": {"_count": 1}, "words": {"_count": 2}, "operation": {"_count": 2}, "effect": {"_count": 1}, "the": {"_count": 2}, "procuring": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 3}}, "enough": {"_count": 2, "stamps": {"_count": 2}}, "some": {"_count": 5, "brains": {"_count": 1}, "crackpot": {"_count": 1}, "people": {"_count": 1}, "protective": {"_count": 1}, "dittany": {"_count": 1}}, "forward": {"_count": 1, "their": {"_count": 1}}, "those": {"_count": 1, "away": {"_count": 1}}, "Stop": {"_count": 1, "the": {"_count": 1}}, "Potters": {"_count": 1, "name": {"_count": 1}}, "yeh": {"_count": 1, "in": {"_count": 1}}, "fleas": {"_count": 1, "on": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "weight": {"_count": 1, "on": {"_count": 1}}, "back": {"_count": 1, "his": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "Mr": {"_count": 1, "Tibbies": {"_count": 1}}, "and": {"_count": 1, "wait": {"_count": 1}}, "advertisements": {"_count": 1, "in": {"_count": 1}}, "every": {"_count": 1, "security": {"_count": 1}}, "us": {"_count": 3, "in": {"_count": 2}, "onto": {"_count": 1}}, "Bulbadox": {"_count": 1, "Powder": {"_count": 1}}, "training": {"_count": 1, "before": {"_count": 1}}, "yours": {"_count": 1, "on": {"_count": 1}}, "Charms": {"_count": 1, "first": {"_count": 1}}, "something": {"_count": 2, "like": {"_count": 1}, "in": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}, "yer": {"_count": 1, "hands": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "Devils": {"_count": 1, "Snare": {"_count": 1}}, "Dr": {"_count": 1, "": {"_count": 1}}, "tha": {"_count": 1, "niffler": {"_count": 1}}, "yerself": {"_count": 1, "out": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 2}}, "off": {"_count": 4, "a": {"_count": 1}, "when": {"_count": 1}, "saying": {"_count": 1}, "the": {"_count": 1}}, "stringent": {"_count": 1, "security": {"_count": 1}}, "Harry": {"_count": 1, "through": {"_count": 1}}, "poison": {"_count": 1, "in": {"_count": 1}}, "fresh": {"_count": 1, "heart": {"_count": 1}}, "Slughorn": {"_count": 1, "into": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "extra": {"_count": 1, "protection": {"_count": 1}}, "righ": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "everyone": {"_count": 1, "in": {"_count": 1}}, "by": {"_count": 1, "Voldemort": {"_count": 1}}, "hers": {"_count": 1, "around": {"_count": 1}}, "Royal": {"_count": 1, "and": {"_count": 1}}, "paid": {"_count": 1, "to": {"_count": 1}}, "graffiti": {"_count": 1, "on": {"_count": 1}}, "myself": {"_count": 1, "in": {"_count": 1}}}, "mind": {"_count": 479, "": {"_count": 90, ".": {"_count": 80}, "?": {"_count": 2}, "!": {"_count": 8}}, "by": {"_count": 1, "something": {"_count": 1}}, "back": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "swallowed": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 7, "cant": {"_count": 1}, "daresay": {"_count": 1}, "expect": {"_count": 1}, "would": {"_count": 1}, "arranged": {"_count": 1}, "am": {"_count": 1}, "dont": {"_count": 1}}, "if": {"_count": 14, "it": {"_count": 1}, "I": {"_count": 6}, "hes": {"_count": 1}, "we": {"_count": 3}, "he": {"_count": 2}, "youd": {"_count": 1}}, "not": {"_count": 3, "mentionin": {"_count": 1}, "mentioning": {"_count": 1}, "offending": {"_count": 1}}, "you": {"_count": 10, "hes": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}, "work": {"_count": 1}, "behave": {"_count": 1}, "pack": {"_count": 1}, "Im": {"_count": 1}, "plenty": {"_count": 1}, "just": {"_count": 1}, "put": {"_count": 1}}, "that": {"_count": 17, "do": {"_count": 1}, "pig": {"_count": 1}, "now": {"_count": 4}, "Potter": {"_count": 1}, "night": {"_count": 1}, "he": {"_count": 2}, "said": {"_count": 2}, "": {"_count": 1}, "there": {"_count": 1}, "his": {"_count": 1}, "stuff": {"_count": 1}, "what": {"_count": 1}}, "off": {"_count": 6, "Houses": {"_count": 1}, "his": {"_count": 3}, "Scabbers": {"_count": 1}, "things": {"_count": 1}}, "leaving": {"_count": 1, "while": {"_count": 1}}, "Where": {"_count": 1, "those": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "ensnaring": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 18, "racing": {"_count": 5}, "still": {"_count": 2}, "so": {"_count": 1}, "buzzing": {"_count": 1}, "reeling": {"_count": 1}, "clearer": {"_count": 1}, "no": {"_count": 1}, "teeming": {"_count": 1}, "blank": {"_count": 2}, "far": {"_count": 1}, "oddly": {"_count": 1}, "in": {"_count": 1}}, "about": {"_count": 4, "punishing": {"_count": 1}, "Snape": {"_count": 1}, "for": {"_count": 1}, "something": {"_count": 1}}, "Im": {"_count": 2, "going": {"_count": 1}, "staying": {"_count": 1}}, "he": {"_count": 11, "said": {"_count": 3}, "needed": {"_count": 1}, "didnt": {"_count": 1}, "says": {"_count": 1}, "was": {"_count": 1}, "doesnt": {"_count": 1}, "would": {"_count": 2}, "could": {"_count": 1}}, "on": {"_count": 9, "his": {"_count": 1}, "more": {"_count": 1}, "flying": {"_count": 1}, "the": {"_count": 4}, "your": {"_count": 1}, "Malfoy": {"_count": 1}}, "said": {"_count": 17, "Harry": {"_count": 6}, "Fred": {"_count": 2}, "Ginny": {"_count": 1}, "Professor": {"_count": 1}, "Snape": {"_count": 1}, "Ron": {"_count": 2}, "Cho": {"_count": 1}, "Twycross": {"_count": 1}, "Dumbledore": {"_count": 1}, "Aberforth": {"_count": 1}}, "then": {"_count": 2, "slouched": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 12, "ask": {"_count": 1}, "leave": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}, "bad": {"_count": 1}, "understand": {"_count": 1}, "cry": {"_count": 1}, "manipulate": {"_count": 1}, "every": {"_count": 1}, "Voldemorts": {"_count": 1}, "Voldemort": {"_count": 1}}, "moving": {"_count": 1, "out": {"_count": 1}}, "all": {"_count": 2, "day": {"_count": 1}, "those": {"_count": 1}}, "as": {"_count": 11, "he": {"_count": 4}, "though": {"_count": 3}, "a": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 1}, "well": {"_count": 1}}, "than": {"_count": 5, "the": {"_count": 2}, "my": {"_count": 1}, "bullying": {"_count": 1}, "S": {"_count": 1}}, "but": {"_count": 3, "don": {"_count": 1}, "Lockhart": {"_count": 1}, "with": {"_count": 1}}, "centaurs": {"_count": 1, "": {"_count": 1}}, "death": {"_count": 2, "is": {"_count": 2}}, "for": {"_count": 3, "now": {"_count": 1}, "Snape": {"_count": 1}, "blood": {"_count": 1}}, "spinning": {"_count": 1, "over": {"_count": 1}}, "with": {"_count": 3, "worry": {"_count": 1}, "absurd": {"_count": 1}, "success": {"_count": 1}}, "Harry": {"_count": 8, "reassured": {"_count": 1}, "took": {"_count": 1}, "if": {"_count": 1}, "mumbled": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "could": {"_count": 1}, "opened": {"_count": 1}}, "the": {"_count": 8, "books": {"_count": 1}, "point": {"_count": 1}, "Statute": {"_count": 1}, "corners": {"_count": 1}, "spots": {"_count": 1}, "part": {"_count": 1}, "most": {"_count": 1}, "wand": {"_count": 1}}, "her": {"_count": 3, "er": {"_count": 1}, "Cho": {"_count": 1}, "said": {"_count": 1}}, "Nick": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 2, "dead": {"_count": 1}, "very": {"_count": 1}}, "me": {"_count": 5, "giving": {"_count": 1}, "asking": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 2}}, "dueling": {"_count": 1, "lessons": {"_count": 1}}, "my": {"_count": 3, "saying": {"_count": 1}, "sweet": {"_count": 1}, "staffing": {"_count": 1}}, "still": {"_count": 4, "full": {"_count": 2}, "miraculously": {"_count": 1}, "on": {"_count": 1}}, "it": {"_count": 2, "made": {"_count": 1}, "was": {"_count": 1}}, "knowing": {"_count": 1, "how": {"_count": 1}}, "what": {"_count": 3, "he": {"_count": 1}, "was": {"_count": 1}, "theyre": {"_count": 1}}, "taking": {"_count": 1, "Professor": {"_count": 1}}, "telling": {"_count": 2, "you": {"_count": 1}, "us": {"_count": 1}}, "yeh": {"_count": 1, "don": {"_count": 1}}, "Hermione": {"_count": 1, "Lavender": {"_count": 1}}, "a": {"_count": 4, "bit": {"_count": 2}, "long": {"_count": 1}, "little": {"_count": 1}}, "murdering": {"_count": 1, "innocent": {"_count": 1}}, "and": {"_count": 9, "external": {"_count": 1}, "gone": {"_count": 1}, "body": {"_count": 1}, "his": {"_count": 1}, "thoughts": {"_count": 1}, "I": {"_count": 2}, "see": {"_count": 1}, "Harry": {"_count": 1}}, "empty": {"_count": 1, "when": {"_count": 1}}, "made": {"_count": 1, "up": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "had": {"_count": 6, "gone": {"_count": 2}, "accepted": {"_count": 1}, "been": {"_count": 1}, "left": {"_count": 1}, "not": {"_count": 1}}, "slaughtering": {"_count": 1, "all": {"_count": 1}}, "when": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "saturated": {"_count": 1}}, "works": {"_count": 1, "hissed": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "is": {"_count": 5, "that": {"_count": 1}, "not": {"_count": 1}, "a": {"_count": 1}, "most": {"_count": 1}, "insufficiently": {"_count": 1}}, "like": {"_count": 4, "everyone": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 2}}, "we": {"_count": 1, "must": {"_count": 1}}, "of": {"_count": 7, "palm": {"_count": 1}, "a": {"_count": 2}, "all": {"_count": 2}, "Ginny": {"_count": 1}, "the": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "Amos": {"_count": 1, "said": {"_count": 1}}, "And": {"_count": 1, "tell": {"_count": 1}}, "how": {"_count": 2, "old": {"_count": 1}, "I": {"_count": 1}}, "Dumbledore": {"_count": 3, "": {"_count": 1}, "shook": {"_count": 1}, "finished": {"_count": 1}}, "giving": {"_count": 1, "him": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 2}, "back": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "sharing": {"_count": 2, "a": {"_count": 1}, "with": {"_count": 1}}, "entirely": {"_count": 1, "and": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "now": {"_count": 3, "but": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}, "maroon": {"_count": 1, "do": {"_count": 1}}, "remains": {"_count": 1, "as": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "snapped": {"_count": 1, "Parvati": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "though": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "jumped": {"_count": 1, "to": {"_count": 1}}, "boys": {"_count": 1, "so": {"_count": 1}}, "ter": {"_count": 1, "": {"_count": 1}}, "wander": {"_count": 1, "in": {"_count": 1}}, "breaking": {"_count": 1, "rules": {"_count": 1}}, "never": {"_count": 2, "mind": {"_count": 2}}, "trying": {"_count": 1, "to": {"_count": 1}}, "pours": {"_count": 1, "them": {"_count": 1}}, "practicing": {"_count": 1, "on": {"_count": 1}}, "upon": {"_count": 1, "forcing": {"_count": 1}}, "racing": {"_count": 3, "now": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}}, "quite": {"_count": 1, "blank": {"_count": 1}}, "hiding": {"_count": 1, "that": {"_count": 1}}, "just": {"_count": 2, "ill": {"_count": 1}, "stuff": {"_count": 1}}, "would": {"_count": 4, "make": {"_count": 2}, "rather": {"_count": 1}, "have": {"_count": 1}}, "unwrapping": {"_count": 1, "it": {"_count": 1}}, "Were": {"_count": 1, "taught": {"_count": 1}}, "him": {"_count": 1, "overhearing": {"_count": 1}}, "whether": {"_count": 1, "it": {"_count": 1}}, "immediately": {"_count": 1, "to": {"_count": 1}}, "spots": {"_count": 1, "the": {"_count": 1}}, "sir": {"_count": 1, "for": {"_count": 1}}, "one": {"_count": 1, "that": {"_count": 1}}, "against": {"_count": 2, "external": {"_count": 1}, "magical": {"_count": 1}}, "muttered": {"_count": 1, "Ron": {"_count": 1}}, "He": {"_count": 2, "can": {"_count": 1}, "was": {"_count": 1}}, "reading": {"_count": 1, "to": {"_count": 1}}, "because": {"_count": 1, "that": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "tried": {"_count": 1, "not": {"_count": 1}}, "attacked": {"_count": 1, "over": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "magpielike": {"_count": 1}}, "But": {"_count": 1, "as": {"_count": 1}}, "running": {"_count": 1, "along": {"_count": 1}}, "even": {"_count": 2, "if": {"_count": 1}, "further": {"_count": 1}}, "free": {"_count": 1, "to": {"_count": 1}}, "hitching": {"_count": 1, "his": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "Luna": {"_count": 1, "talking": {"_count": 1}}, "Id": {"_count": 1, "rather": {"_count": 1}}, "however": {"_count": 1, "Snape": {"_count": 1}}, "power": {"_count": 1, "which": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "lumbering": {"_count": 1, "away": {"_count": 1}}, "dirty": {"_count": 1, "Squibs": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "came": {"_count": 1, "an": {"_count": 1}}, "before": {"_count": 1, "she": {"_count": 1}}, "laid": {"_count": 1, "Morfins": {"_count": 1}}, "firmly": {"_count": 2, "upon": {"_count": 1}, "": {"_count": 1}}, "without": {"_count": 2, "conscious": {"_count": 1}, "damage": {"_count": 1}}, "worked": {"_count": 1, "feverishly": {"_count": 1}}, "its": {"_count": 1, "over": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "closed": {"_count": 1, "Potter": {"_count": 1}}, "every": {"_count": 1, "twentyfour": {"_count": 1}}, "affected": {"_count": 1, "": {"_count": 1}}, "burst": {"_count": 1, "the": {"_count": 1}}, "helping": {"_count": 1, "with": {"_count": 1}}, "wandered": {"_count": 1, "a": {"_count": 1}}, "remember": {"_count": 1, "Yeah": {"_count": 1}}, "Kreacher": {"_count": 1, "could": {"_count": 1}}, "Sirius": {"_count": 1, "falling": {"_count": 1}}, "grappled": {"_count": 1, "with": {"_count": 1}}, "where": {"_count": 1, "we": {"_count": 1}}, "your": {"_count": 1, "own": {"_count": 1}}, "working": {"_count": 1, "very": {"_count": 1}}, "viewed": {"_count": 1, "as": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "swift": {"_count": 1, "as": {"_count": 1}}, "sleeping": {"_count": 1, "in": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "clean": {"_count": 1, "of": {"_count": 1}}, "We": {"_count": 1, "will": {"_count": 1}}, "us": {"_count": 1, "But": {"_count": 1}}, "crammed": {"_count": 1, "it": {"_count": 1}}, "dying": {"_count": 1, "said": {"_count": 1}}, "means": {"_count": 1, "to": {"_count": 1}}, "felt": {"_count": 1, "oddly": {"_count": 1}}}, "toward": {"_count": 1058, "town": {"_count": 1, "he": {"_count": 1}}, "number": {"_count": 1, "four": {"_count": 1}}, "the": {"_count": 495, "Dursleys": {"_count": 1}, "kitchen": {"_count": 6}, "front": {"_count": 11}, "highway": {"_count": 1}, "barrier": {"_count": 5}, "train": {"_count": 3}, "Chocolate": {"_count": 1}, "door": {"_count": 45}, "Gryffindor": {"_count": 5}, "dungeon": {"_count": 1}, "forbidden": {"_count": 2}, "ground": {"_count": 13}, "castle": {"_count": 29}, "trophy": {"_count": 1}, "Quidditch": {"_count": 4}, "other": {"_count": 4}, "girls": {"_count": 5}, "open": {"_count": 2}, "goal": {"_count": 5}, "wait": {"_count": 1}, "Snitch": {"_count": 3}, "school": {"_count": 4}, "forest": {"_count": 7}, "trapdoor": {"_count": 2}, "wall": {"_count": 3}, "Stone": {"_count": 1}, "flame": {"_count": 1}, "gateway": {"_count": 1}, "house": {"_count": 5}, "moon": {"_count": 1}, "lake": {"_count": 6}, "great": {"_count": 3}, "exit": {"_count": 4}, "edge": {"_count": 4}, "dungeons": {"_count": 3}, "podium": {"_count": 1}, "steps": {"_count": 4}, "message": {"_count": 1}, "Great": {"_count": 3}, "end": {"_count": 8}, "library": {"_count": 2}, "leaden": {"_count": 1}, "water": {"_count": 1}, "dormitory": {"_count": 1}, "lit": {"_count": 1}, "corner": {"_count": 3}, "greenhouses": {"_count": 2}, "light": {"_count": 2}, "sink": {"_count": 1}, "floor": {"_count": 1}, "pipe": {"_count": 1}, "enchanted": {"_count": 1}, "ceiling": {"_count": 2}, "passage": {"_count": 2}, "Leaky": {"_count": 1}, "first": {"_count": 1}, "dementor": {"_count": 2}, "opposite": {"_count": 2}, "fence": {"_count": 1}, "hippogriff": {"_count": 1}, "teachers": {"_count": 2}, "portrait": {"_count": 1}, "middle": {"_count": 3}, "wooden": {"_count": 1}, "bar": {"_count": 1}, "staircase": {"_count": 4}, "fire": {"_count": 4}, "Slytherin": {"_count": 2}, "Slytherins": {"_count": 1}, "stands": {"_count": 2}, "entrance": {"_count": 7}, "Whomping": {"_count": 1}, "windows": {"_count": 1}, "shelter": {"_count": 1}, "Willow": {"_count": 3}, "creature": {"_count": 1}, "upper": {"_count": 1}, "station": {"_count": 1}, "living": {"_count": 1}, "village": {"_count": 1}, "gate": {"_count": 2}, "nearest": {"_count": 4}, "empty": {"_count": 1}, "leprechauns": {"_count": 1}, "oncoming": {"_count": 1}, "source": {"_count": 3}, "wood": {"_count": 1}, "commotion": {"_count": 1}, "place": {"_count": 11}, "trees": {"_count": 1}, "Burrow": {"_count": 2}, "compartment": {"_count": 1}, "stranger": {"_count": 1}, "double": {"_count": 2}, "bank": {"_count": 2}, "girl": {"_count": 1}, "doors": {"_count": 4}, "remainder": {"_count": 1}, "chamber": {"_count": 1}, "whole": {"_count": 1}, "witch": {"_count": 1}, "lights": {"_count": 1}, "Horntails": {"_count": 1}, "stairs": {"_count": 2}, "Charms": {"_count": 1}, "eggs": {"_count": 1}, "unicorn": {"_count": 1}, "gates": {"_count": 2}, "mermaid": {"_count": 1}, "judges": {"_count": 1}, "hostages": {"_count": 1}, "surface": {"_count": 4}, "foot": {"_count": 3}, "son": {"_count": 1}, "second": {"_count": 2}, "Dark": {"_count": 1}, "silver": {"_count": 2}, "chair": {"_count": 1}, "righthand": {"_count": 1}, "people": {"_count": 2}, "cup": {"_count": 1}, "plinth": {"_count": 1}, "marble": {"_count": 3}, "hospital": {"_count": 2}, "Hufflepuffs": {"_count": 1}, "darkening": {"_count": 1}, "park": {"_count": 1}, "road": {"_count": 1}, "dark": {"_count": 5}, "dresser": {"_count": 1}, "far": {"_count": 2}, "center": {"_count": 1}, "table": {"_count": 2}, "food": {"_count": 1}, "engine": {"_count": 1}, "woman": {"_count": 3}, "common": {"_count": 1}, "staff": {"_count": 3}, "west": {"_count": 1}, "Ravenclaw": {"_count": 1}, "dim": {"_count": 1}, "stadium": {"_count": 2}, "pitch": {"_count": 1}, "vast": {"_count": 1}, "heart": {"_count": 1}, "bed": {"_count": 1}, "window": {"_count": 2}, "desk": {"_count": 3}, "office": {"_count": 1}, "Department": {"_count": 1}, "stone": {"_count": 3}, "leafy": {"_count": 1}, "giant": {"_count": 2}, "plain": {"_count": 2}, "lawn": {"_count": 1}, "battle": {"_count": 1}, "distant": {"_count": 2}, "tops": {"_count": 1}, "back": {"_count": 2}, "pavement": {"_count": 1}, "dais": {"_count": 2}, "bell": {"_count": 1}, "sunken": {"_count": 1}, "mans": {"_count": 1}, "hand": {"_count": 1}, "fray": {"_count": 1}, "lifts": {"_count": 2}, "remnants": {"_count": 1}, "fireplaces": {"_count": 1}, "Fat": {"_count": 1}, "notice": {"_count": 1}, "glass": {"_count": 1}, "sunlit": {"_count": 1}, "hardest": {"_count": 1}, "fireplace": {"_count": 2}, "counter": {"_count": 1}, "bottom": {"_count": 1}, "lane": {"_count": 1}, "store": {"_count": 2}, "bowl": {"_count": 1}, "sounds": {"_count": 1}, "terrified": {"_count": 1}, "commentators": {"_count": 1}, "drinks": {"_count": 1}, "nearby": {"_count": 1}, "wireless": {"_count": 1}, "Weasleys": {"_count": 1}, "shelf": {"_count": 1}, "very": {"_count": 1}, "vegetable": {"_count": 1}, "bathroom": {"_count": 1}, "misty": {"_count": 1}, "rock": {"_count": 2}, "landing": {"_count": 1}, "burning": {"_count": 1}, "earth": {"_count": 1}, "crooked": {"_count": 1}, "whispering": {"_count": 1}, "garden": {"_count": 1}, "marquee": {"_count": 1}, "island": {"_count": 1}, "main": {"_count": 1}, "golden": {"_count": 1}, "shining": {"_count": 1}, "dementors": {"_count": 1}, "group": {"_count": 1}, "church": {"_count": 1}, "bookcase": {"_count": 1}, "pool": {"_count": 1}, "hills": {"_count": 1}, "top": {"_count": 2}, "ludicrous": {"_count": 1}, "outside": {"_count": 1}, "gigantic": {"_count": 1}, "cottage": {"_count": 2}, "walnut": {"_count": 1}, "point": {"_count": 1}, "blind": {"_count": 1}, "fresher": {"_count": 1}, "cool": {"_count": 1}, "grimy": {"_count": 1}, "High": {"_count": 2}, "little": {"_count": 1}, "dormitories": {"_count": 1}, "perimeter": {"_count": 1}, "concealed": {"_count": 1}, "Room": {"_count": 1}, "maw": {"_count": 1}, "masked": {"_count": 1}, "swings": {"_count": 1}, "boy": {"_count": 1}, "cheering": {"_count": 1}, "lightning": {"_count": 1}, "master": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 3}}, "them": {"_count": 111, "as": {"_count": 2}, "": {"_count": 29}, "they": {"_count": 1}, "and": {"_count": 13}, "out": {"_count": 5}, "down": {"_count": 1}, "beetleblack": {"_count": 1}, "through": {"_count": 4}, "WATCH": {"_count": 1}, "his": {"_count": 3}, "looking": {"_count": 4}, "when": {"_count": 1}, "were": {"_count": 1}, "Angelinas": {"_count": 1}, "quiet": {"_count": 1}, "he": {"_count": 2}, "on": {"_count": 2}, "something": {"_count": 1}, "then": {"_count": 1}, "pulling": {"_count": 1}, "many": {"_count": 1}, "still": {"_count": 1}, "pulled": {"_count": 1}, "from": {"_count": 3}, "their": {"_count": 1}, "meaning": {"_count": 1}, "a": {"_count": 1}, "supported": {"_count": 1}, "across": {"_count": 1}, "climbing": {"_count": 1}, "leaning": {"_count": 1}, "between": {"_count": 1}, "up": {"_count": 1}, "though": {"_count": 1}, "like": {"_count": 1}, "her": {"_count": 1}, "surrounded": {"_count": 1}, "in": {"_count": 2}, "accompanied": {"_count": 2}, "all": {"_count": 1}, "wearing": {"_count": 1}, "Hermiones": {"_count": 1}, "by": {"_count": 1}, "very": {"_count": 1}, "faster": {"_count": 1}, "silhouetted": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}, "growing": {"_count": 1}, "hitting": {"_count": 1}, "sucking": {"_count": 1}}, "land": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 43, "and": {"_count": 10}, "he": {"_count": 2}, "his": {"_count": 4}, "": {"_count": 7}, "again": {"_count": 1}, "who": {"_count": 3}, "one": {"_count": 1}, "drawing": {"_count": 1}, "Expecto": {"_count": 1}, "were": {"_count": 1}, "across": {"_count": 2}, "over": {"_count": 1}, "since": {"_count": 1}, "are": {"_count": 1}, "giggling": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "passing": {"_count": 1}, "dressed": {"_count": 1}, "leering": {"_count": 1}}, "him": {"_count": 113, "": {"_count": 42}, "and": {"_count": 13}, "hadnt": {"_count": 1}, "he": {"_count": 4}, "exactly": {"_count": 1}, "screaming": {"_count": 1}, "took": {"_count": 1}, "grinning": {"_count": 1}, "clubs": {"_count": 1}, "halfblinded": {"_count": 1}, "looking": {"_count": 2}, "hands": {"_count": 1}, "dragging": {"_count": 1}, "from": {"_count": 4}, "along": {"_count": 1}, "loaded": {"_count": 1}, "raised": {"_count": 1}, "under": {"_count": 1}, "around": {"_count": 3}, "a": {"_count": 2}, "had": {"_count": 1}, "through": {"_count": 1}, "but": {"_count": 1}, "hovering": {"_count": 1}, "with": {"_count": 2}, "stretching": {"_count": 1}, "beaming": {"_count": 1}, "soak": {"_count": 1}, "Ron": {"_count": 1}, "seized": {"_count": 1}, "so": {"_count": 1}, "evidently": {"_count": 1}, "its": {"_count": 1}, "while": {"_count": 1}, "across": {"_count": 1}, "Mrs": {"_count": 1}, "holding": {"_count": 1}, "taking": {"_count": 1}, "accompanied": {"_count": 1}, "as": {"_count": 1}, "or": {"_count": 1}, "she": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}, "her": {"_count": 1}, "once": {"_count": 1}, "eyes": {"_count": 1}, "sprightly": {"_count": 1}, "was": {"_count": 1}}, "one": {"_count": 4, "of": {"_count": 4}}, "Madam": {"_count": 2, "Malkins": {"_count": 1}, "Pomfreys": {"_count": 1}}, "platforms": {"_count": 1, "nine": {"_count": 1}}, "it": {"_count": 23, "": {"_count": 8}, "before": {"_count": 1}, "when": {"_count": 2}, "two": {"_count": 1}, "it": {"_count": 1}, "but": {"_count": 2}, "they": {"_count": 1}, "and": {"_count": 2}, "his": {"_count": 2}, "with": {"_count": 1}, "a": {"_count": 1}, "checking": {"_count": 1}}, "a": {"_count": 27, "smooth": {"_count": 1}, "damp": {"_count": 1}, "Slytherin": {"_count": 1}, "misty": {"_count": 1}, "pillar": {"_count": 1}, "pair": {"_count": 1}, "dark": {"_count": 1}, "spare": {"_count": 1}, "Ballycastle": {"_count": 1}, "large": {"_count": 1}, "tree": {"_count": 1}, "sevenfoottall": {"_count": 1}, "stone": {"_count": 1}, "set": {"_count": 1}, "desk": {"_count": 1}, "small": {"_count": 1}, "plain": {"_count": 1}, "tiny": {"_count": 1}, "chair": {"_count": 2}, "door": {"_count": 1}, "rundown": {"_count": 1}, "witch": {"_count": 1}, "leader": {"_count": 1}, "shortcut": {"_count": 1}, "podium": {"_count": 1}, "spiral": {"_count": 1}}, "Malfoy": {"_count": 9, "like": {"_count": 1}, "but": {"_count": 2}, "": {"_count": 3}, "in": {"_count": 1}, "who": {"_count": 1}, "whose": {"_count": 1}}, "Peeves": {"_count": 1, "s": {"_count": 1}}, "Ron": {"_count": 10, "instead": {"_count": 1}, "who": {"_count": 2}, "his": {"_count": 1}, "you": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "spinning": {"_count": 1}, "Something": {"_count": 1}, "her": {"_count": 1}}, "Marcus": {"_count": 1, "Flint": {"_count": 1}}, "Hermione": {"_count": 7, "": {"_count": 3}, "an": {"_count": 1}, "after": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "Justin": {"_count": 2, "FinchFletchley": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 15, "eyebrows": {"_count": 1}, "cabin": {"_count": 1}, "right": {"_count": 1}, "headmaster": {"_count": 1}, "pocket": {"_count": 2}, "own": {"_count": 2}, "fallen": {"_count": 1}, "wand": {"_count": 1}, "desk": {"_count": 1}, "daughter": {"_count": 1}, "allconsuming": {"_count": 1}, "attackers": {"_count": 1}, "smaller": {"_count": 1}}, "Moaning": {"_count": 2, "Myrtles": {"_count": 2}}, "Gryffindor": {"_count": 8, "Tower": {"_count": 8}}, "Filchs": {"_count": 1, "voice": {"_count": 1}}, "Professor": {"_count": 7, "McGonagall": {"_count": 2}, "Lupin": {"_count": 2}, "Flitwicks": {"_count": 1}, "Umbridge": {"_count": 1}, "Flitwick": {"_count": 1}}, "her": {"_count": 37, "she": {"_count": 2}, "empty": {"_count": 1}, "very": {"_count": 1}, "completely": {"_count": 1}, "": {"_count": 8}, "frowning": {"_count": 1}, "chin": {"_count": 1}, "than": {"_count": 1}, "through": {"_count": 2}, "Neville": {"_count": 1}, "in": {"_count": 1}, "too": {"_count": 1}, "closed": {"_count": 1}, "and": {"_count": 5}, "as": {"_count": 1}, "from": {"_count": 1}, "dragging": {"_count": 1}, "pub": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "feeling": {"_count": 1}, "now": {"_count": 1}, "sister": {"_count": 1}, "parents": {"_count": 1}}, "magic": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 8, "separate": {"_count": 1}, "first": {"_count": 1}, "clearing": {"_count": 1}, "History": {"_count": 1}, "owners": {"_count": 1}, "dormitories": {"_count": 1}, "destinations": {"_count": 1}, "seats": {"_count": 1}}, "Lupin": {"_count": 1, "more": {"_count": 1}}, "Lupins": {"_count": 1, "classroom": {"_count": 1}}, "an": {"_count": 5, "empty": {"_count": 1}, "old": {"_count": 2}, "ancient": {"_count": 1}, "oncoming": {"_count": 1}}, "Dumbledore": {"_count": 9, "who": {"_count": 1}, "": {"_count": 3}, "extending": {"_count": 1}, "he": {"_count": 1}, "now": {"_count": 1}, "s": {"_count": 1}, "with": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "Hogsmeade": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "growing": {"_count": 1}, "labeled": {"_count": 1}}, "Angelina": {"_count": 1, "including": {"_count": 1}}, "Hagrids": {"_count": 6, "cabin": {"_count": 4}, "bloodstained": {"_count": 1}, "": {"_count": 1}}, "Lavender": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 3, "wand": {"_count": 1}, "Disillusioned": {"_count": 1}, "quivering": {"_count": 1}}, "Snape": {"_count": 6, "but": {"_count": 1}, "and": {"_count": 1}, "s": {"_count": 1}, "who": {"_count": 1}, "pulling": {"_count": 1}, "the": {"_count": 1}}, "Crookshanks": {"_count": 1, "who": {"_count": 1}}, "people": {"_count": 1, "by": {"_count": 1}}, "Krum": {"_count": 1, "who": {"_count": 1}}, "Hogwarts": {"_count": 4, "Castle": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "Hagrid": {"_count": 2, "s": {"_count": 1}, "who": {"_count": 1}}, "Crabbe": {"_count": 1, "Goyle": {"_count": 1}}, "Mr": {"_count": 3, "Ollivander": {"_count": 1}, "Crouch": {"_count": 1}, "Weasley": {"_count": 1}}, "werewolves": {"_count": 1, "": {"_count": 1}}, "Cedric": {"_count": 1, "just": {"_count": 1}}, "North": {"_count": 1, "Tower": {"_count": 1}}, "Voldemort": {"_count": 6, "and": {"_count": 1}, "": {"_count": 2}, "his": {"_count": 1}, "as": {"_count": 1}, "for": {"_count": 1}}, "finding": {"_count": 1, "and": {"_count": 1}}, "Cedrics": {"_count": 1, "body": {"_count": 1}}, "Sirius": {"_count": 3, "but": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "Fudge": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "each": {"_count": 2, "other": {"_count": 2}}, "Dudleys": {"_count": 1, "face": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 2, "looked": {"_count": 2}}, "certain": {"_count": 1, "people": {"_count": 1}}, "Neville": {"_count": 4, "": {"_count": 1}, "holding": {"_count": 1}, "Can": {"_count": 1}, "who": {"_count": 1}}, "breakfast": {"_count": 1, "": {"_count": 1}}, "lunch": {"_count": 3, "": {"_count": 3}}, "Katie": {"_count": 1, "": {"_count": 1}}, "ensuring": {"_count": 1, "that": {"_count": 1}}, "Parvati": {"_count": 1, "and": {"_count": 1}}, "Pansy": {"_count": 2, "Parkinson": {"_count": 1}, "instead": {"_count": 1}}, "Buckbeaks": {"_count": 1, "room": {"_count": 1}}, "Snapes": {"_count": 1, "office": {"_count": 1}}, "bed": {"_count": 1, "": {"_count": 1}}, "Dervish": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "Umbridge": {"_count": 1, "and": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "row": {"_count": 1, "number": {"_count": 1}}, "Grawp": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 4, "just": {"_count": 1}, "now": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "catching": {"_count": 1, "him": {"_count": 1}}, "Flourish": {"_count": 1, "and": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "Borgin": {"_count": 1, "and": {"_count": 1}}, "Ogden": {"_count": 1, "by": {"_count": 1}}, "Honeydukes": {"_count": 1, "which": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "Slughorn": {"_count": 2, "s": {"_count": 2}}, "March": {"_count": 1, "with": {"_count": 1}}, "Wilkie": {"_count": 1, "Twycross": {"_count": 1}}, "McLaggen": {"_count": 1, "just": {"_count": 1}}, "my": {"_count": 1, "mum": {"_count": 1}}, "this": {"_count": 2, "moment": {"_count": 1}, "point": {"_count": 1}}, "Divination": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "the": {"_count": 1}}, "us": {"_count": 1, "but": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Tonkss": {"_count": 1, "parents": {"_count": 1}}, "Fleurs": {"_count": 1, "family": {"_count": 1}}, "another": {"_count": 1, "lift": {"_count": 1}}, "its": {"_count": 1, "thick": {"_count": 1}}, "where": {"_count": 1, "Snape": {"_count": 1}}}, "town": {"_count": 13, "he": {"_count": 1, "thought": {"_count": 1}}, "drills": {"_count": 1, "were": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "get": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "pick": {"_count": 1}}, "of": {"_count": 1, "Great": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "I": {"_count": 1, "mean": {"_count": 1}}, "then": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "an": {"_count": 1}}}, "thought": {"_count": 1260, "of": {"_count": 99, "nothing": {"_count": 1}, "something": {"_count": 3}, "Hagrid": {"_count": 1}, "them": {"_count": 2}, "the": {"_count": 18}, "that": {"_count": 4}, "what": {"_count": 7}, "Malfoy": {"_count": 2}, "being": {"_count": 2}, "getting": {"_count": 2}, "Ron": {"_count": 2}, "more": {"_count": 2}, "Honeydukes": {"_count": 1}, "Black": {"_count": 1}, "course": {"_count": 1}, "Sirius": {"_count": 2}, "this": {"_count": 1}, "a": {"_count": 3}, "Dumbledore": {"_count": 1}, "her": {"_count": 1}, "explaining": {"_count": 1}, "Fudge": {"_count": 1}, "him": {"_count": 2}, "Christmas": {"_count": 1}, "Snape": {"_count": 1}, "throwing": {"_count": 1}, "Chos": {"_count": 1}, "his": {"_count": 2}, "maybe": {"_count": 1}, "taking": {"_count": 1}, "leaving": {"_count": 1}, "it": {"_count": 4}, "these": {"_count": 1}, "nonverbal": {"_count": 1}, "Cedric": {"_count": 1}, "all": {"_count": 1}, "MadEye": {"_count": 1}, "writing": {"_count": 1}, "my": {"_count": 1}, "how": {"_count": 2}, "Ginny": {"_count": 2}, "Godrics": {"_count": 1}, "mysterious": {"_count": 1}, "photos": {"_count": 1}, "Gregorovitch": {"_count": 1}, "casting": {"_count": 1}, "sneaking": {"_count": 1}, "Splinching": {"_count": 1}, "Harry": {"_count": 1}, "poor": {"_count": 1}, "A": {"_count": 1}, "Ollivander": {"_count": 1}, "water": {"_count": 1}, "Wormtail": {"_count": 1}, "lightning": {"_count": 1}}, "hed": {"_count": 12, "stretch": {"_count": 1}, "just": {"_count": 1}, "better": {"_count": 1}, "have": {"_count": 2}, "rather": {"_count": 1}, "got": {"_count": 1}, "like": {"_count": 1}, "be": {"_count": 2}, "known": {"_count": 1}, "annoy": {"_count": 1}}, "better": {"_count": 3, "of": {"_count": 3}}, "he": {"_count": 159, "had": {"_count": 19}, "might": {"_count": 10}, "could": {"_count": 9}, "saw": {"_count": 19}, "was": {"_count": 41}, "heard": {"_count": 11}, "wasnt": {"_count": 2}, "meant": {"_count": 3}, "mighta": {"_count": 1}, "must": {"_count": 4}, "knew": {"_count": 12}, "looked": {"_count": 4}, "would": {"_count": 6}, "Harry": {"_count": 2}, "said": {"_count": 1}, "sensed": {"_count": 1}, "detected": {"_count": 1}, "understood": {"_count": 2}, "sounded": {"_count": 1}, "caught": {"_count": 2}, "liked": {"_count": 1}, "seemed": {"_count": 2}, "did": {"_count": 1}, "only": {"_count": 1}, "recognized": {"_count": 2}, "suspects": {"_count": 1}}, "": {"_count": 54, ".": {"_count": 52}, "!": {"_count": 2}}, "before": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "about": {"_count": 13, "them": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 5}, "that": {"_count": 1}, "what": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 2}, "those": {"_count": 1}}, "for": {"_count": 19, "a": {"_count": 13}, "the": {"_count": 3}, "Slughorn": {"_count": 1}, "anything": {"_count": 1}, "one": {"_count": 1}}, "licking": {"_count": 1, "it": {"_count": 1}}, "or": {"_count": 2, "maybe": {"_count": 1}, "perhaps": {"_count": 1}}, "this": {"_count": 13, "was": {"_count": 4}, "would": {"_count": 1}, "the": {"_count": 1}, "evening": {"_count": 1}, "an": {"_count": 1}, "lesson": {"_count": 1}, "through": {"_count": 1}, "Hermione": {"_count": 1}, "belonged": {"_count": 1}, "at": {"_count": 1}}, "two": {"_count": 2, "of": {"_count": 1}, "Sickles": {"_count": 1}}, "it": {"_count": 91, "best": {"_count": 5}, "was": {"_count": 34}, "might": {"_count": 7}, "looked": {"_count": 4}, "would": {"_count": 15}, "deserved": {"_count": 1}, "must": {"_count": 2}, "had": {"_count": 3}, "": {"_count": 1}, "possible": {"_count": 1}, "better": {"_count": 1}, "sounded": {"_count": 1}, "ought": {"_count": 1}, "than": {"_count": 1}, "unlikely": {"_count": 1}, "seemed": {"_count": 1}, "likely": {"_count": 1}, "went": {"_count": 1}, "common": {"_count": 1}, "through": {"_count": 1}, "most": {"_count": 2}, "much": {"_count": 1}, "out": {"_count": 1}, "safe": {"_count": 1}, "said": {"_count": 1}, "worth": {"_count": 1}, "made": {"_count": 1}}, "nobody": {"_count": 1, "stood": {"_count": 1}}, "didnt": {"_count": 1, "cheer": {"_count": 1}}, "yeh": {"_count": 1, "wouldnt": {"_count": 1}}, "his": {"_count": 16, "heart": {"_count": 1}, "friends": {"_count": 1}, "Bludger": {"_count": 1}, "eyes": {"_count": 1}, "ribs": {"_count": 1}, "scar": {"_count": 1}, "head": {"_count": 1}, "protection": {"_count": 1}, "behavior": {"_count": 1}, "looked": {"_count": 1}, "practical": {"_count": 1}, "skull": {"_count": 1}, "chest": {"_count": 1}, "words": {"_count": 1}, "voice": {"_count": 1}, "face": {"_count": 1}}, "so": {"_count": 9, "yet": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}, "too": {"_count": 2}, "he": {"_count": 1}}, "Id": {"_count": 23, "be": {"_count": 2}, "see": {"_count": 1}, "meet": {"_count": 1}, "Are": {"_count": 1}, "like": {"_count": 3}, "live": {"_count": 1}, "congratulate": {"_count": 1}, "offer": {"_count": 1}, "better": {"_count": 1}, "leave": {"_count": 1}, "say": {"_count": 1}, "try": {"_count": 1}, "feel": {"_count": 1}, "check": {"_count": 1}, "ask": {"_count": 1}, "die": {"_count": 1}, "enjoy": {"_count": 1}, "hear": {"_count": 1}, "go": {"_count": 1}, "have": {"_count": 1}}, "you": {"_count": 72, "of": {"_count": 1}, "werent": {"_count": 1}, "ought": {"_count": 3}, "had": {"_count": 6}, "might": {"_count": 9}, "were": {"_count": 20}, "mighta": {"_count": 1}, "made": {"_count": 1}, "twod": {"_count": 1}, "wouldnt": {"_count": 1}, "mightve": {"_count": 1}, "enjoyed": {"_count": 1}, "said": {"_count": 2}, "meant": {"_count": 1}, "really": {"_count": 1}, "two": {"_count": 1}, "are": {"_count": 1}, "showed": {"_count": 1}, "can": {"_count": 1}, "must": {"_count": 2}, "was": {"_count": 1}, "just": {"_count": 1}, "could": {"_count": 2}, "lived": {"_count": 1}, "knew": {"_count": 6}, "wore": {"_count": 1}, "would": {"_count": 1}, "seemed": {"_count": 1}, "agreed": {"_count": 1}, "did": {"_count": 1}}, "there": {"_count": 11, "were": {"_count": 2}, "must": {"_count": 1}, "d": {"_count": 1}, "was": {"_count": 5}, "might": {"_count": 2}}, "was": {"_count": 20, "that": {"_count": 4}, "very": {"_count": 1}, "a": {"_count": 6}, "Slytherins": {"_count": 1}, "Lord": {"_count": 1}, "distinctly": {"_count": 1}, "MadEye": {"_count": 1}, "gunpowder": {"_count": 1}, "extinguished": {"_count": 1}, "of": {"_count": 1}, "far": {"_count": 1}, "your": {"_count": 1}}, "wildly": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "they": {"_count": 30, "looked": {"_count": 1}, "were": {"_count": 16}, "saw": {"_count": 1}, "just": {"_count": 1}, "might": {"_count": 2}, "would": {"_count": 1}, "had": {"_count": 2}, "believed": {"_count": 1}, "even": {"_count": 1}, "could": {"_count": 1}, "didnt": {"_count": 2}, "breathed": {"_count": 1}}, "struck": {"_count": 3, "Harry": {"_count": 1}, "him": {"_count": 2}}, "Not": {"_count": 1, "Slytherin": {"_count": 1}}, "I": {"_count": 46, "was": {"_count": 17}, "might": {"_count": 2}, "could": {"_count": 3}, "had": {"_count": 3}, "did": {"_count": 3}, "migh": {"_count": 1}, "heard": {"_count": 3}, "just": {"_count": 2}, "would": {"_count": 2}, "saw": {"_count": 3}, "felt": {"_count": 1}, "made": {"_count": 1}, "need": {"_count": 1}, "knew": {"_count": 2}, "thought": {"_count": 1}, "should": {"_count": 1}}, "that": {"_count": 89, "none": {"_count": 1}, "meeting": {"_count": 1}, "things": {"_count": 1}, "was": {"_count": 5}, "she": {"_count": 3}, "Hagrid": {"_count": 4}, "he": {"_count": 7}, "what": {"_count": 1}, "still": {"_count": 1}, "trance": {"_count": 1}, "matters": {"_count": 1}, "the": {"_count": 7}, "Hermione": {"_count": 1}, "Bagman": {"_count": 1}, "Ron": {"_count": 4}, "Neville": {"_count": 1}, "too": {"_count": 1}, "Harry": {"_count": 2}, "Mr": {"_count": 2}, "Dumbledore": {"_count": 4}, "would": {"_count": 1}, "it": {"_count": 4}, "Sirius": {"_count": 1}, "Professor": {"_count": 2}, "Michael": {"_count": 1}, "if": {"_count": 3}, "someone": {"_count": 1}, "after": {"_count": 2}, "paper": {"_count": 1}, "we": {"_count": 1}, "all": {"_count": 1}, "deficient": {"_count": 1}, "I": {"_count": 1}, "there": {"_count": 4}, "they": {"_count": 3}, "as": {"_count": 1}, "Mrs": {"_count": 1}, "Lucius": {"_count": 1}, "his": {"_count": 1}, "perhaps": {"_count": 1}, "this": {"_count": 1}, "having": {"_count": 1}, "answering": {"_count": 1}, "connection": {"_count": 1}, "had": {"_count": 1}, "Aberforth": {"_count": 1}, "Snape": {"_count": 1}, "explained": {"_count": 1}}, "Harry": {"_count": 35, "there": {"_count": 1}, "bewildered": {"_count": 1}, "but": {"_count": 1}, "had": {"_count": 2}, "as": {"_count": 3}, "was": {"_count": 3}, "Potter": {"_count": 1}, "": {"_count": 4}, "its": {"_count": 1}, "would": {"_count": 2}, "that": {"_count": 2}, "making": {"_count": 1}, "and": {"_count": 1}, "miserably": {"_count": 1}, "looking": {"_count": 1}, "scathingly": {"_count": 1}, "bitterly": {"_count": 1}, "the": {"_count": 2}, "because": {"_count": 1}, "hadnt": {"_count": 1}, "skimmed": {"_count": 1}, "with": {"_count": 1}, "tore": {"_count": 1}, "They": {"_count": 1}}, "youd": {"_count": 22, "like": {"_count": 1}, "be": {"_count": 2}, "read": {"_count": 1}, "died": {"_count": 1}, "come": {"_count": 2}, "have": {"_count": 3}, "want": {"_count": 1}, "know": {"_count": 1}, "uuunderstand": {"_count": 1}, "finished": {"_count": 1}, "persuade": {"_count": 1}, "get": {"_count": 1}, "been": {"_count": 1}, "say": {"_count": 4}, "seen": {"_count": 1}}, "seemed": {"_count": 3, "to": {"_count": 3}}, "as": {"_count": 9, "he": {"_count": 7}, "though": {"_count": 1}, "they": {"_count": 1}}, "she": {"_count": 19, "was": {"_count": 7}, "might": {"_count": 4}, "said": {"_count": 3}, "too": {"_count": 1}, "looked": {"_count": 3}, "wasnt": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 1}, "flashed": {"_count": 1}}, "Flint": {"_count": 1, "looked": {"_count": 1}}, "a": {"_count": 4, "faint": {"_count": 1}, "biting": {"_count": 1}, "Patronus": {"_count": 1}, "good": {"_count": 1}}, "edging": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 3}, "panic": {"_count": 1}}, "to": {"_count": 13, "look": {"_count": 1}, "be": {"_count": 1}, "the": {"_count": 3}, "put": {"_count": 1}, "change": {"_count": 1}, "your": {"_count": 1}, "tell": {"_count": 1}, "ask": {"_count": 2}, "what": {"_count": 1}, "share": {"_count": 1}}, "wed": {"_count": 20, "keep": {"_count": 1}, "be": {"_count": 2}, "had": {"_count": 1}, "start": {"_count": 1}, "sneak": {"_count": 1}, "seen": {"_count": 1}, "been": {"_count": 2}, "have": {"_count": 1}, "cover": {"_count": 1}, "try": {"_count": 1}, "settled": {"_count": 2}, "treat": {"_count": 1}, "just": {"_count": 1}, "get": {"_count": 1}, "say": {"_count": 1}, "give": {"_count": 1}, "stolen": {"_count": 1}}, "Gryffindor": {"_count": 1, "meant": {"_count": 1}}, "the": {"_count": 24, "blood": {"_count": 1}, "attacker": {"_count": 1}, "Dark": {"_count": 2}, "idea": {"_count": 1}, "monster": {"_count": 1}, "thing": {"_count": 1}, "roaring": {"_count": 1}, "map": {"_count": 1}, "chap": {"_count": 1}, "Beauxbatons": {"_count": 1}, "first": {"_count": 1}, "archway": {"_count": 1}, "creature": {"_count": 1}, "boy": {"_count": 1}, "reason": {"_count": 1}, "wrong": {"_count": 1}, "difference": {"_count": 1}, "furniture": {"_count": 1}, "Prince": {"_count": 1}, "move": {"_count": 1}, "connection": {"_count": 1}, "worst": {"_count": 1}, "natural": {"_count": 1}}, "Firenze": {"_count": 2, "didnt": {"_count": 1}, "mighta": {"_count": 1}}, "Snape": {"_count": 7, "just": {"_count": 1}, "Severus": {"_count": 1}, "was": {"_count": 4}, "and": {"_count": 1}}, "Voldemort": {"_count": 5, "could": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 2}}, "is": {"_count": 1, "to": {"_count": 1}}, "desperately": {"_count": 6, "": {"_count": 5}, "Not": {"_count": 1}}, "some": {"_count": 2, "sort": {"_count": 1}, "bogeys": {"_count": 1}}, "bitterly": {"_count": 1, "Uncle": {"_count": 1}}, "savagely": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "your": {"_count": 2, "family": {"_count": 1}, "friend": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "Were": {"_count": 1, "stuck": {"_count": 1}}, "miserably": {"_count": 1, "please": {"_count": 1}}, "angrily": {"_count": 3, "pummeling": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "too": {"_count": 2, "about": {"_count": 1}, "": {"_count": 1}}, "Arithmancy": {"_count": 1, "sounded": {"_count": 1}}, "Father": {"_count": 1, "might": {"_count": 1}}, "Hagrid": {"_count": 2, "was": {"_count": 2}}, "Aragog": {"_count": 1, "wouldnt": {"_count": 1}}, "sounded": {"_count": 1, "like": {"_count": 1}}, "hard": {"_count": 5, "picturing": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "for": {"_count": 1}}, "someone": {"_count": 4, "must": {"_count": 2}, "was": {"_count": 1}, "should": {"_count": 1}}, "how": {"_count": 4, "were": {"_count": 1}, "he": {"_count": 2}, "absurd": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "ed": {"_count": 1, "be": {"_count": 1}}, "Azkaban": {"_count": 1, "was": {"_count": 1}}, "itd": {"_count": 2, "make": {"_count": 1}, "be": {"_count": 1}}, "Ron": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "Black": {"_count": 1, "and": {"_count": 1}}, "staring": {"_count": 2, "into": {"_count": 1}, "up": {"_count": 1}}, "and": {"_count": 10, "Professor": {"_count": 1}, "worry": {"_count": 1}, "added": {"_count": 1}, "no": {"_count": 1}, "shes": {"_count": 1}, "immediately": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "emotion": {"_count": 1}, "lowering": {"_count": 1}}, "had": {"_count": 5, "just": {"_count": 2}, "been": {"_count": 2}, "fluttered": {"_count": 1}}, "we": {"_count": 25, "werent": {"_count": 1}, "were": {"_count": 10}, "might": {"_count": 4}, "could": {"_count": 2}, "heard": {"_count": 2}, "ought": {"_count": 2}, "had": {"_count": 1}, "knew": {"_count": 1}, "would": {"_count": 1}, "both": {"_count": 1}}, "Lee": {"_count": 1, "had": {"_count": 1}}, "Sirius": {"_count": 4, "killed": {"_count": 1}, "betrayed": {"_count": 1}, "coming": {"_count": 1}, "a": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 1, "Hermione": {"_count": 1}}, "him": {"_count": 4, "a": {"_count": 1}, "mad": {"_count": 1}, "strange": {"_count": 1}, "unbalanced": {"_count": 1}}, "possible": {"_count": 1, "from": {"_count": 1}}, "Mr": {"_count": 3, "Weasley": {"_count": 2}, "Bagman": {"_count": 1}}, "Dudley": {"_count": 2, "was": {"_count": 2}}, "but": {"_count": 8, "the": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 1}, "this": {"_count": 1}, "Shield": {"_count": 1}, "a": {"_count": 1}, "try": {"_count": 1}, "at": {"_count": 1}}, "much": {"_count": 1, "about": {"_count": 1}}, "theyd": {"_count": 3, "bring": {"_count": 1}, "forgotten": {"_count": 1}, "quite": {"_count": 1}}, "Peeves": {"_count": 1, "seemed": {"_count": 1}}, "irritably": {"_count": 1, "Professor": {"_count": 1}}, "then": {"_count": 1, "that": {"_count": 1}}, "briefly": {"_count": 1, "of": {"_count": 1}}, "Moody": {"_count": 1, "said": {"_count": 1}}, "even": {"_count": 1, "Professor": {"_count": 1}}, "what": {"_count": 2, "he": {"_count": 1}, "if": {"_count": 1}}, "would": {"_count": 3, "have": {"_count": 1}, "you": {"_count": 1}, "ever": {"_count": 1}}, "shed": {"_count": 2, "like": {"_count": 1}, "had": {"_count": 1}}, "dully": {"_count": 2, "hed": {"_count": 1}, "": {"_count": 1}}, "back": {"_count": 3, "to": {"_count": 3}}, "furiously": {"_count": 1, "as": {"_count": 1}}, "revolving": {"_count": 1, "slowly": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "gloomily": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 7, "Snape": {"_count": 1}, "Phineas": {"_count": 1}, "Hermione": {"_count": 2}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}}, "dazedly": {"_count": 1, "as": {"_count": 1}}, "Dumbledore": {"_count": 11, "would": {"_count": 2}, "was": {"_count": 4}, "s": {"_count": 1}, "must": {"_count": 1}, "had": {"_count": 2}, "might": {"_count": 1}}, "since": {"_count": 1, "hed": {"_count": 1}}, "all": {"_count": 3, "hope": {"_count": 1}, "the": {"_count": 2}}, "Potter": {"_count": 2, "was": {"_count": 1}, "might": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 1}, "meaning": {"_count": 1}}, "let": {"_count": 1, "it": {"_count": 1}}, "might": {"_count": 4, "try": {"_count": 1}, "want": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}}, "only": {"_count": 1, "of": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "at": {"_count": 4, "first": {"_count": 3}, "least": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "scruffiness": {"_count": 1, "ought": {"_count": 1}}, "occurred": {"_count": 6, "he": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 3}, "the": {"_count": 1}}, "sliding": {"_count": 1, "off": {"_count": 1}}, "though": {"_count": 3, "his": {"_count": 2}, "it": {"_count": 1}}, "longingly": {"_count": 1, "for": {"_count": 1}}, "Dads": {"_count": 1, "a": {"_count": 1}}, "Regulus": {"_count": 1, "was": {"_count": 1}}, "given": {"_count": 2, "that": {"_count": 1}, "Ronald": {"_count": 1}}, "indignantly": {"_count": 1, "": {"_count": 1}}, "quite": {"_count": 2, "unsuitable": {"_count": 1}, "clear": {"_count": 1}}, "perhaps": {"_count": 3, "the": {"_count": 1}, "an": {"_count": 1}, "given": {"_count": 1}}, "like": {"_count": 2, "somebodys": {"_count": 1}, "you": {"_count": 1}}, "Harrys": {"_count": 1, "spirits": {"_count": 1}}, "You": {"_count": 1, "thought": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 2, "dementors": {"_count": 1}, "ugly": {"_count": 1}}, "Ginny": {"_count": 1, "fancied": {"_count": 1}}, "boys": {"_count": 1, "were": {"_count": 1}}, "wrong": {"_count": 1, "she": {"_count": 1}}, "Malfoy": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "made": {"_count": 1, "his": {"_count": 1}}, "turning": {"_count": 1, "over": {"_count": 1}}, "not": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "even": {"_count": 1}}, "Kingsley": {"_count": 1, "whispered": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "most": {"_count": 2, "likely": {"_count": 2}}, "Professor": {"_count": 3, "Marchbanks": {"_count": 1}, "Snape": {"_count": 1}, "McGonagall": {"_count": 1}}, "us": {"_count": 1, "pretty": {"_count": 1}}, "natural": {"_count": 1, "curiosity": {"_count": 1}}, "now": {"_count": 2, "flying": {"_count": 1}, "": {"_count": 1}}, "clinging": {"_count": 1, "to": {"_count": 1}}, "dementors": {"_count": 1, "guard": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "otherwise": {"_count": 1, "said": {"_count": 1}}, "Transfiguration": {"_count": 1, "went": {"_count": 1}}, "Shield": {"_count": 1, "Hats": {"_count": 1}}, "Gran": {"_count": 1, "would": {"_count": 1}}, "Little": {"_count": 1, "Hangleton": {"_count": 1}}, "Ogden": {"_count": 1, "was": {"_count": 1}}, "Gaunt": {"_count": 1, "was": {"_count": 1}}, "insane": {"_count": 1, "": {"_count": 1}}, "Liberacorpus": {"_count": 1, "with": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "wryly": {"_count": 1, "he": {"_count": 1}}, "Filch": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "everyone": {"_count": 1, "knew": {"_count": 1}}, "being": {"_count": 1, "\u2018the": {"_count": 1}}, "well": {"_count": 1, "hes": {"_count": 1}}, "maybe": {"_count": 2, "you": {"_count": 1}, "if": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "Levicorpus": {"_count": 2, "Ron": {"_count": 1}, "and": {"_count": 1}}, "fleetingly": {"_count": 1, "of": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "privately": {"_count": 1, "that": {"_count": 1}}, "went": {"_count": 1, "through": {"_count": 1}}, "seeing": {"_count": 1, "what": {"_count": 1}}, "something": {"_count": 1, "would": {"_count": 1}}, "impossible": {"_count": 1, "": {"_count": 1}}, "Levi": {"_count": 1, "No": {"_count": 1}}, "apparently": {"_count": 1, "too": {"_count": 1}}, "MadEye": {"_count": 1, "was": {"_count": 1}}, "They": {"_count": 1, "knew": {"_count": 1}}, "M": {"_count": 1, "all": {"_count": 1}}, "our": {"_count": 1, "presence": {"_count": 1}}, "Quidditch": {"_count": 1, "Krum": {"_count": 1}}, "All": {"_count": 1, "three": {"_count": 1}}, "were": {"_count": 1, "decoratively": {"_count": 1}}, "Thicknesse": {"_count": 1, "might": {"_count": 1}}, "came": {"_count": 2, "to": {"_count": 2}}, "obliterated": {"_count": 1, "his": {"_count": 1}}, "ruefully": {"_count": 1, "he": {"_count": 1}}, "when": {"_count": 1, "Ive": {"_count": 1}}, "just": {"_count": 1, "for": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 2}}, "Gringotts": {"_count": 1, "had": {"_count": 1}}, "fast": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "processes": {"_count": 1, "": {"_count": 1}}, "be": {"_count": 1, "concealing": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "long": {"_count": 1, "and": {"_count": 1}}, "absurdly": {"_count": 1, "of": {"_count": 1}}, "inexplicably": {"_count": 1, "of": {"_count": 1}}}, "except": {"_count": 188, "a": {"_count": 5, "large": {"_count": 1}, "faint": {"_count": 1}, "dragon": {"_count": 1}, "headache": {"_count": 1}, "tiny": {"_count": 1}}, "for": {"_count": 40, "his": {"_count": 1}, "a": {"_count": 11}, "Peeves": {"_count": 1}, "classes": {"_count": 1}, "Lockhart": {"_count": 1}, "the": {"_count": 10}, "Malfoy": {"_count": 1}, "one": {"_count": 2}, "Ron": {"_count": 3}, "Winkys": {"_count": 1}, "this": {"_count": 1}, "its": {"_count": 1}, "Celestinas": {"_count": 1}, "Harry": {"_count": 1}, "Hogwarts": {"_count": 1}, "three": {"_count": 1}, "those": {"_count": 1}, "He": {"_count": 1}}, "that": {"_count": 36, "it": {"_count": 5}, "they": {"_count": 5}, "the": {"_count": 4}, "Mr": {"_count": 2}, "there": {"_count": 4}, "his": {"_count": 2}, "Harry": {"_count": 2}, "Bagman": {"_count": 1}, "no": {"_count": 1}, "he": {"_count": 2}, "after": {"_count": 1}, "Lupin": {"_count": 1}, "Voldemorts": {"_count": 1}, "Voldemort": {"_count": 2}, "her": {"_count": 1}, "while": {"_count": 1}, "Ron": {"_count": 1}}, "stupid": {"_count": 1, "people": {"_count": 1}}, "snap": {"_count": 1, "playfully": {"_count": 1}}, "you": {"_count": 2, "an": {"_count": 1}, "two": {"_count": 1}}, "in": {"_count": 2, "very": {"_count": 1}, "our": {"_count": 1}}, "Hermione": {"_count": 6, "Granger": {"_count": 1}, "who": {"_count": 4}, "whose": {"_count": 1}}, "the": {"_count": 13, "peppermints": {"_count": 1}, "students": {"_count": 1}, "match": {"_count": 1}, "floor": {"_count": 1}, "smallest": {"_count": 1}, "clothes": {"_count": 1}, "toadlike": {"_count": 1}, "sound": {"_count": 1}, "horrible": {"_count": 1}, "distant": {"_count": 1}, "information": {"_count": 1}, "end": {"_count": 1}, "first": {"_count": 1}}, "perhaps": {"_count": 4, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "making": {"_count": 1}, "that": {"_count": 1}}, "Malfoy": {"_count": 2, "whom": {"_count": 1}, "Crabbe": {"_count": 1}}, "powerful": {"_count": 1, "Dark": {"_count": 1}}, "sit": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "me": {"_count": 1, "an": {"_count": 1}}, "Harry": {"_count": 6, "because": {"_count": 1}, "Ron": {"_count": 1}, "winced": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "was": {"_count": 1}}, "him": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "wait": {"_count": 1, "for": {"_count": 1}}, "lettuce": {"_count": 1, "since": {"_count": 1}}, "their": {"_count": 1, "flailing": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "applause": {"_count": 1, "didnt": {"_count": 1}}, "Percy": {"_count": 1, "and": {"_count": 1}}, "how": {"_count": 1, "glad": {"_count": 1}}, "to": {"_count": 4, "blow": {"_count": 1}, "continue": {"_count": 1}, "visit": {"_count": 1}, "kill": {"_count": 1}}, "Harrys": {"_count": 1, "there": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "when": {"_count": 2, "I": {"_count": 1}, "they": {"_count": 1}}, "Pettigrew": {"_count": 1, "whose": {"_count": 1}}, "your": {"_count": 3, "word": {"_count": 1}, "father": {"_count": 1}, "own": {"_count": 1}}, "my": {"_count": 2, "studies": {"_count": 1}, "own": {"_count": 1}}, "his": {"_count": 1, "father": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 1, "inside": {"_count": 1}}, "Ron": {"_count": 3, "and": {"_count": 1}, "who": {"_count": 1}, "staring": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Hagrid": {"_count": 1, "who": {"_count": 1}}, "Wormtail": {"_count": 1, "who": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 1}, "Lovegood": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "Luna": {"_count": 1, "Lovegood": {"_count": 1}}, "help": {"_count": 1, "Albus": {"_count": 1}}, "Oh": {"_count": 1, "": {"_count": 1}}, "Kreacher": {"_count": 1, "shut": {"_count": 1}}, "Ginny": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "fellow": {"_count": 1, "Slytherins": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "Well": {"_count": 1, "be": {"_count": 1}}, "Fleur": {"_count": 1, "on": {"_count": 1}}, "during": {"_count": 1, "dreams": {"_count": 1}}, "powdered": {"_count": 1, "glass": {"_count": 1}}, "us": {"_count": 2, "they": {"_count": 1}, "": {"_count": 1}}, "find": {"_count": 1, "Horcruxes": {"_count": 1}}, "her": {"_count": 1, "small": {"_count": 1}}, "some": {"_count": 1, "wild": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "Potterwatch": {"_count": 1, "": {"_count": 1}}, "Greyback": {"_count": 1, "who": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "its": {"_count": 1}}, "shock": {"_count": 1, "at": {"_count": 1}}}, "order": {"_count": 63, "of": {"_count": 2, "drills": {"_count": 1}, "servants": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "and": {"_count": 5, "then": {"_count": 1}, "quantities": {"_count": 1}, "silence": {"_count": 1}, "yet": {"_count": 1}, "looking": {"_count": 1}}, "from": {"_count": 3, "him": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "for": {"_count": 5, "seven": {"_count": 1}, "me": {"_count": 1}, "Dungbombs": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 5, "enjoy": {"_count": 1}, "the": {"_count": 1}, "remove": {"_count": 1}, "leave": {"_count": 1}, "cut": {"_count": 1}}, "form": {"_count": 3, "at": {"_count": 1}, "are": {"_count": 1}, "for": {"_count": 1}}, "forms": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "three": {"_count": 1, "ordinary": {"_count": 1}}, "said": {"_count": 4, "Mr": {"_count": 2}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}, "in": {"_count": 2, "which": {"_count": 1}, "the": {"_count": 1}}, "service": {"_count": 1, "at": {"_count": 1}}, "nevertheless": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "Harry": {"_count": 1}}, "Seamus": {"_count": 1, "said": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "the": {"_count": 2, "moment": {"_count": 2}}, "wands": {"_count": 1, "away": {"_count": 1}}, "anything": {"_count": 1, "we": {"_count": 1}}, "get": {"_count": 1, "back": {"_count": 1}}, "those": {"_count": 1, "left": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "replace": {"_count": 1, "them": {"_count": 1}}, "at": {"_count": 1, "Flourish": {"_count": 1}}, "him": {"_count": 1, "one": {"_count": 1}}, "you": {"_count": 3, "to": {"_count": 2}, "Mundungus": {"_count": 1}}, "kindly": {"_count": 1, "but": {"_count": 1}}, "is": {"_count": 2, "affecting": {"_count": 1}, "being": {"_count": 1}}, "than": {"_count": 1, "you": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}}, "hoping": {"_count": 102, "to": {"_count": 34, "get": {"_count": 2}, "catch": {"_count": 2}, "fall": {"_count": 1}, "see": {"_count": 7}, "come": {"_count": 1}, "hear": {"_count": 2}, "distract": {"_count": 1}, "overhear": {"_count": 1}, "startle": {"_count": 1}, "sell": {"_count": 1}, "run": {"_count": 1}, "receive": {"_count": 1}, "depart": {"_count": 1}, "speak": {"_count": 1}, "convey": {"_count": 1}, "deflect": {"_count": 1}, "Disapparate": {"_count": 1}, "pick": {"_count": 1}, "overtake": {"_count": 1}, "give": {"_count": 1}, "have": {"_count": 1}, "do": {"_count": 1}, "meet": {"_count": 1}, "sleep": {"_count": 1}, "go": {"_count": 1}}, "he": {"_count": 6, "was": {"_count": 2}, "sounded": {"_count": 1}, "could": {"_count": 1}, "would": {"_count": 2}}, "for": {"_count": 13, "a": {"_count": 3}, "more": {"_count": 2}, "": {"_count": 2}, "an": {"_count": 3}, "some": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 1}}, "his": {"_count": 1, "knees": {"_count": 1}}, "against": {"_count": 6, "hope": {"_count": 6}}, "that": {"_count": 12, "Neville": {"_count": 1}, "they": {"_count": 1}, "this": {"_count": 2}, "Harry": {"_count": 1}, "sometime": {"_count": 1}, "something": {"_count": 1}, "she": {"_count": 2}, "you": {"_count": 1}, "the": {"_count": 1}, "Lord": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "you": {"_count": 2, "11": {"_count": 1}, "will": {"_count": 1}}, "someone": {"_count": 1, "would": {"_count": 1}}, "Potter": {"_count": 1, "is": {"_count": 1}}, "praying": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "hoping": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "youll": {"_count": 1, "help": {"_count": 1}}, "Moody": {"_count": 1, "was": {"_count": 1}}, "somebody": {"_count": 3, "was": {"_count": 2}, "else": {"_count": 1}}, "youd": {"_count": 3, "be": {"_count": 2}, "appear": {"_count": 1}}, "their": {"_count": 1, "homework": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 2}}, "desperately": {"_count": 1, "that": {"_count": 1}}, "Bill": {"_count": 1, "will": {"_count": 1}}, "it": {"_count": 2, "panicked": {"_count": 1}, "might": {"_count": 1}}, "itd": {"_count": 1, "be": {"_count": 1}}, "shell": {"_count": 1, "kiss": {"_count": 1}}, "theyre": {"_count": 1, "going": {"_count": 1}}, "the": {"_count": 1, "latter": {"_count": 1}}, "well": {"_count": 1, "march": {"_count": 1}}, "a": {"_count": 2, "little": {"_count": 1}, "bad": {"_count": 1}}}, "get": {"_count": 1571, "that": {"_count": 15, "day": {"_count": 1}, "motorcycle": {"_count": 1}, "all": {"_count": 1}, "with": {"_count": 2}, "shredded": {"_count": 1}, "hourglass": {"_count": 1}, "": {"_count": 1}, "well": {"_count": 1}, "from": {"_count": 1}, "memory": {"_count": 4}, "Cloak": {"_count": 1}}, "mixed": {"_count": 2, "up": {"_count": 2}}, "this": {"_count": 18, "over": {"_count": 2}, "bike": {"_count": 1}, "done": {"_count": 1}, "book": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 2}, "straight": {"_count": 3}, "back": {"_count": 1}, "finished": {"_count": 1}, "far": {"_count": 1}, "anyway": {"_count": 1}, "house": {"_count": 1}, "sword": {"_count": 2}}, "a": {"_count": 94, "grip": {"_count": 7}, "move": {"_count": 7}, "closer": {"_count": 2}, "prickle": {"_count": 1}, "rabbit": {"_count": 1}, "good": {"_count": 9}, "fly": {"_count": 1}, "look": {"_count": 3}, "single": {"_count": 1}, "chance": {"_count": 4}, "straight": {"_count": 1}, "lot": {"_count": 5}, "real": {"_count": 1}, "huge": {"_count": 1}, "better": {"_count": 7}, "detention": {"_count": 1}, "picture": {"_count": 2}, "confession": {"_count": 1}, "decent": {"_count": 1}, "few": {"_count": 3}, "reward": {"_count": 1}, "stronger": {"_count": 1}, "clear": {"_count": 5}, "Nimbus": {"_count": 1}, "glimpse": {"_count": 2}, "very": {"_count": 1}, "signature": {"_count": 1}, "new": {"_count": 2}, "head": {"_count": 1}, "nice": {"_count": 1}, "job": {"_count": 2}, "compartment": {"_count": 1}, "pair": {"_count": 1}, "first": {"_count": 1}, "coach": {"_count": 1}, "carriage": {"_count": 1}, "vision": {"_count": 1}, "clearer": {"_count": 3}, "coffee": {"_count": 1}, "proper": {"_count": 2}, "brain": {"_count": 1}, "hundred": {"_count": 1}, "bite": {"_count": 1}, "message": {"_count": 1}, "wand": {"_count": 1}}, "dangerous": {"_count": 1, "ideas": {"_count": 1}}, "bored": {"_count": 2, "with": {"_count": 1}, "of": {"_count": 1}}, "him": {"_count": 33, "a": {"_count": 4}, "one": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "out": {"_count": 2}, "sacked": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 2}, "checked": {"_count": 1}, "back": {"_count": 3}, "outta": {"_count": 1}, "onto": {"_count": 1}, "off": {"_count": 1}, "killed": {"_count": 1}, "thrown": {"_count": 1}, "": {"_count": 4}, "Mrs": {"_count": 1}, "down": {"_count": 1}, "from": {"_count": 1}, "along": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}, "inside": {"_count": 1}}, "it": {"_count": 75, "": {"_count": 19}, "Potter": {"_count": 1}, "through": {"_count": 4}, "before": {"_count": 2}, "on": {"_count": 1}, "Hagrid": {"_count": 1}, "otherwise": {"_count": 1}, "back": {"_count": 3}, "even": {"_count": 1}, "either": {"_count": 2}, "my": {"_count": 1}, "out": {"_count": 9}, "with": {"_count": 1}, "checked": {"_count": 1}, "said": {"_count": 5}, "Harry": {"_count": 3}, "and": {"_count": 1}, "for": {"_count": 2}, "Angelina": {"_count": 1}, "that": {"_count": 1}, "soon": {"_count": 1}, "ter": {"_count": 1}, "Hermione": {"_count": 1}, "did": {"_count": 1}, "himself": {"_count": 1}, "done": {"_count": 1}, "in": {"_count": 1}, "right": {"_count": 3}, "from": {"_count": 1}, "you": {"_count": 1}, "away": {"_count": 1}, "wrong": {"_count": 1}, "Riddle": {"_count": 1}}, "the": {"_count": 72, "mail": {"_count": 1}, "letter": {"_count": 3}, "letters": {"_count": 1}, "good": {"_count": 1}, "Ridgeback": {"_count": 1}, "crate": {"_count": 1}, "cloak": {"_count": 2}, "Stone": {"_count": 1}, "slime": {"_count": 1}, "Invisibility": {"_count": 3}, "stuffing": {"_count": 1}, "rest": {"_count": 1}, "feeling": {"_count": 2}, "Defense": {"_count": 1}, "Snitch": {"_count": 4}, "drinks": {"_count": 1}, "feel": {"_count": 1}, "dementors": {"_count": 1}, "idea": {"_count": 2}, "badges": {"_count": 2}, "words": {"_count": 2}, "egg": {"_count": 1}, "urge": {"_count": 1}, "chance": {"_count": 3}, "Cleansweep": {"_count": 1}, "worst": {"_count": 1}, "Daily": {"_count": 1}, "gold": {"_count": 1}, "Quaffle": {"_count": 1}, "hair": {"_count": 1}, "last": {"_count": 1}, "weapon": {"_count": 3}, "sack": {"_count": 1}, "same": {"_count": 1}, "message": {"_count": 1}, "one": {"_count": 1}, "information": {"_count": 1}, "job": {"_count": 3}, "memory": {"_count": 1}, "hang": {"_count": 1}, "book": {"_count": 1}, "house": {"_count": 1}, "secret": {"_count": 1}, "lights": {"_count": 1}, "truth": {"_count": 1}, "Horcrux": {"_count": 1}, "girl": {"_count": 1}, "Horcruxes": {"_count": 2}, "wand": {"_count": 1}, "Hallows": {"_count": 1}, "students": {"_count": 1}, "snake": {"_count": 1}, "Cloak": {"_count": 1}}, "an": {"_count": 13, "answer": {"_count": 2}, "ot": {"_count": 1}, "idea": {"_count": 1}, "inch": {"_count": 1}, "early": {"_count": 1}, "elf": {"_count": 1}, "ally": {"_count": 1}, "anxious": {"_count": 1}, "arm": {"_count": 1}, "invitation": {"_count": 1}, "\u2018Outstanding": {"_count": 1}, "opportunity": {"_count": 1}}, "out": {"_count": 111, "": {"_count": 8}, "of": {"_count": 71}, "even": {"_count": 1}, "his": {"_count": 1}, "now": {"_count": 2}, "then": {"_count": 1}, "at": {"_count": 3}, "too": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 5}, "here": {"_count": 1}, "into": {"_count": 2}, "that": {"_count": 1}, "occasionally": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 1}, "till": {"_count": 1}, "from": {"_count": 1}, "last": {"_count": 1}, "o": {"_count": 1}, "but": {"_count": 1}, "get": {"_count": 1}, "again": {"_count": 1}, "its": {"_count": 1}, "lets": {"_count": 1}}, "comfortable": {"_count": 1, "his": {"_count": 1}}, "friendly": {"_count": 1, "with": {"_count": 1}}, "em": {"_count": 4, "on": {"_count": 1}, "": {"_count": 2}, "eager": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "yer": {"_count": 7, "letters": {"_count": 1}, "hands": {"_count": 1}, "money": {"_count": 1}, "uniform": {"_count": 1}, "animal": {"_count": 1}, "an": {"_count": 1}, "firs": {"_count": 1}}, "up": {"_count": 40, "ter": {"_count": 3}, "": {"_count": 3}, "to": {"_count": 9}, "whenever": {"_count": 1}, "there": {"_count": 4}, "earlier": {"_count": 1}, "again": {"_count": 3}, "at": {"_count": 1}, "this": {"_count": 1}, "here": {"_count": 2}, "Mr": {"_count": 1}, "but": {"_count": 4}, "from": {"_count": 2}, "and": {"_count": 1}, "your": {"_count": 1}, "by": {"_count": 1}, "the": {"_count": 1}, "those": {"_count": 1}}, "all": {"_count": 16, "yer": {"_count": 1}, "the": {"_count": 7}, "Lockharts": {"_count": 1}, "your": {"_count": 2}, "sorts": {"_count": 1}, "this": {"_count": 1}, "them": {"_count": 1}, "upset": {"_count": 1}, "excited": {"_count": 1}}, "here": {"_count": 7, "": {"_count": 5}, "by": {"_count": 1}, "will": {"_count": 1}}, "away": {"_count": 34, "from": {"_count": 14}, "before": {"_count": 2}, "Harry": {"_count": 1}, "with": {"_count": 7}, "Scabbers": {"_count": 2}, "": {"_count": 4}, "whenever": {"_count": 1}, "more": {"_count": 1}, "and": {"_count": 2}}, "on": {"_count": 29, "lots": {"_count": 1}, "the": {"_count": 8}, "with": {"_count": 11}, "our": {"_count": 1}, "And": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}, "very": {"_count": 1}, "and": {"_count": 1}, "board": {"_count": 1}}, "some": {"_count": 17, "firsthand": {"_count": 1}, "sleep": {"_count": 4}, "more": {"_count": 2}, "work": {"_count": 1}, "wood": {"_count": 1}, "of": {"_count": 1}, "drinks": {"_count": 1}, "stuff": {"_count": 1}, "breakfast": {"_count": 1}, "food": {"_count": 1}, "rest": {"_count": 3}}, "there": {"_count": 22, "do": {"_count": 1}, "": {"_count": 10}, "without": {"_count": 1}, "in": {"_count": 1}, "soon": {"_count": 1}, "oh": {"_count": 1}, "first": {"_count": 1}, "until": {"_count": 1}, "early": {"_count": 1}, "A": {"_count": 1}, "this": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}}, "his": {"_count": 16, "hands": {"_count": 3}, "attention": {"_count": 1}, "memory": {"_count": 1}, "Confusing": {"_count": 1}, "uncles": {"_count": 1}, "name": {"_count": 1}, "egg": {"_count": 1}, "son": {"_count": 1}, "soul": {"_count": 1}, "own": {"_count": 2}, "mates": {"_count": 1}, "ears": {"_count": 1}, "job": {"_count": 1}}, "ter": {"_count": 2, "that": {"_count": 1}, "fer": {"_count": 1}}, "such": {"_count": 1, "good": {"_count": 1}}, "to": {"_count": 71, "a": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 17}, "Diagon": {"_count": 1}, "school": {"_count": 2}, "bed": {"_count": 7}, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}, "London": {"_count": 1}, "finally": {"_count": 1}, "after": {"_count": 1}, "classes": {"_count": 1}, "all": {"_count": 1}, "Hagrid": {"_count": 1}, "him": {"_count": 1}, "work": {"_count": 4}, "you": {"_count": 1}, "do": {"_count": 2}, "that": {"_count": 1}, "Hogwarts": {"_count": 1}, "his": {"_count": 1}, "join": {"_count": 1}, "Mrs": {"_count": 1}, "it": {"_count": 3}, "grips": {"_count": 1}, "see": {"_count": 1}, "sleep": {"_count": 2}, "arrest": {"_count": 1}, "take": {"_count": 1}, "know": {"_count": 3}, "their": {"_count": 3}, "Zabini": {"_count": 1}, "this": {"_count": 2}, "Dumbledore": {"_count": 1}, "me": {"_count": 1}}, "annoyed": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 43, "Diagon": {"_count": 1}, "the": {"_count": 20}, "trouble": {"_count": 2}, "any": {"_count": 1}, "Hogsmeade": {"_count": 2}, "my": {"_count": 2}, "dry": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 4}, "difficulty": {"_count": 1}, "bed": {"_count": 1}, "her": {"_count": 1}, "terrible": {"_count": 1}, "this": {"_count": 1}, "isnt": {"_count": 1}, "that": {"_count": 1}, "Hogwarts": {"_count": 2}}, "onto": {"_count": 5, "the": {"_count": 4}, "platform": {"_count": 1}}, "one": {"_count": 9, "more": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "from": {"_count": 1}, "on": {"_count": 1}, "of": {"_count": 2}, "in": {"_count": 1}, "over": {"_count": 1}}, "really": {"_count": 1, "good": {"_count": 1}}, "anything": {"_count": 3, "new": {"_count": 1}, "other": {"_count": 1}, "like": {"_count": 1}}, "Agrippa": {"_count": 1, "thanks": {"_count": 1}}, "spinach": {"_count": 1, "and": {"_count": 1}}, "round": {"_count": 3, "Gringotts": {"_count": 1}, "Dumbledore": {"_count": 1}, "this": {"_count": 1}}, "if": {"_count": 4, "he": {"_count": 1}, "I": {"_count": 1}, "Dumbledore": {"_count": 1}, "you": {"_count": 1}}, "in": {"_count": 56, "a": {"_count": 2}, "to": {"_count": 3}, "": {"_count": 12}, "front": {"_count": 1}, "we": {"_count": 1}, "after": {"_count": 1}, "wont": {"_count": 1}, "there": {"_count": 12}, "line": {"_count": 1}, "training": {"_count": 1}, "then": {"_count": 1}, "under": {"_count": 1}, "get": {"_count": 1}, "can": {"_count": 1}, "between": {"_count": 1}, "too": {"_count": 1}, "the": {"_count": 3}, "before": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 3}, "with": {"_count": 1}, "wouldnt": {"_count": 2}, "using": {"_count": 1}, "that": {"_count": 1}, "character": {"_count": 1}, "here": {"_count": 1}}, "back": {"_count": 75, "on": {"_count": 6}, "inside": {"_count": 3}, "to": {"_count": 28}, "in": {"_count": 5}, "off": {"_count": 1}, "and": {"_count": 1}, "through": {"_count": 3}, "up": {"_count": 5}, "into": {"_count": 4}, "": {"_count": 4}, "first": {"_count": 1}, "down": {"_count": 2}, "all": {"_count": 1}, "without": {"_count": 1}, "shall": {"_count": 1}, "thats": {"_count": 1}, "from": {"_count": 1}, "sighed": {"_count": 1}, "out": {"_count": 1}, "too": {"_count": 1}, "there": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 2}}, "covered": {"_count": 1, "in": {"_count": 1}}, "started": {"_count": 8, "but": {"_count": 1}, "": {"_count": 2}, "next": {"_count": 1}, "on": {"_count": 3}, "then": {"_count": 1}}, "Friday": {"_count": 1, "afternoons": {"_count": 1}}, "rid": {"_count": 48, "of": {"_count": 48}}, "": {"_count": 6, ".": {"_count": 1}, "?": {"_count": 4}, "!": {"_count": 1}}, "us": {"_count": 17, "all": {"_count": 1}, "caught": {"_count": 1}, "thrown": {"_count": 1}, "out": {"_count": 2}, "safely": {"_count": 1}, "back": {"_count": 2}, "through": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 2}, "expelled": {"_count": 1}, "some": {"_count": 2}, "drinks": {"_count": 1}, "these": {"_count": 1}}, "caught": {"_count": 4, "by": {"_count": 1}, "before": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}}, "caughty": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 14, "Neville": {"_count": 1}, "to": {"_count": 3}, "the": {"_count": 3}, "Yeh": {"_count": 1}, "": {"_count": 1}, "ouch": {"_count": 1}, "said": {"_count": 1}, "me": {"_count": 1}, "but": {"_count": 1}, "his": {"_count": 1}}, "fouled": {"_count": 1, "so": {"_count": 1}}, "them": {"_count": 20, "out": {"_count": 1}, "nice": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 4}, "up": {"_count": 1}, "down": {"_count": 1}, "Dad": {"_count": 1}, "sick": {"_count": 1}, "shrunk": {"_count": 1}, "dont": {"_count": 1}, "said": {"_count": 1}, "off": {"_count": 1}, "all": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}, "safely": {"_count": 1}, "fighting": {"_count": 1}}, "plates": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 28, "that": {"_count": 3}, "Fluffy": {"_count": 7}, "him": {"_count": 1}, "a": {"_count": 3}, "than": {"_count": 1}, "Wood": {"_count": 1}, "them": {"_count": 2}, "it": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 6}, "his": {"_count": 1}, "one": {"_count": 1}}, "clobbered": {"_count": 1, "by": {"_count": 1}}, "shown": {"_count": 1, "the": {"_count": 1}}, "everyone": {"_count": 1, "laughing": {"_count": 1}}, "himself": {"_count": 1, "into": {"_count": 1}}, "inside": {"_count": 18, "the": {"_count": 5}, "Honeydukes": {"_count": 1}, "Ill": {"_count": 1}, "or": {"_count": 1}, "information": {"_count": 1}, "and": {"_count": 2}, "your": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 2}, "me": {"_count": 1}, "Ravenclaw": {"_count": 2}}, "through": {"_count": 32, "all": {"_count": 3}, "his": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 5}, "a": {"_count": 7}, "itll": {"_count": 1}, "it": {"_count": 2}, "without": {"_count": 1}, "my": {"_count": 1}, "there": {"_count": 1}, "stuff": {"_count": 1}, "any": {"_count": 1}, "in": {"_count": 1}, "yer": {"_count": 1}, "this": {"_count": 3}, "perfectly": {"_count": 1}, "that": {"_count": 1}}, "any": {"_count": 8, "points": {"_count": 1}, "guidance": {"_count": 1}, "work": {"_count": 1}, "apart": {"_count": 1}, "more": {"_count": 1}, "worse": {"_count": 2}, "hint": {"_count": 1}}, "thrown": {"_count": 2, "out": {"_count": 2}}, "rich": {"_count": 1, "": {"_count": 1}}, "worked": {"_count": 1, "up": {"_count": 1}}, "expelled": {"_count": 3, "from": {"_count": 2}, "": {"_count": 1}}, "across": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 47, "back": {"_count": 2}, "out": {"_count": 6}, "anyway": {"_count": 1}, "ourselves": {"_count": 1}, "another": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 4}, "at": {"_count": 2}, "": {"_count": 4}, "sir": {"_count": 1}, "Peeves": {"_count": 1}, "next": {"_count": 1}, "do": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 2}, "more": {"_count": 1}, "through": {"_count": 2}, "once": {"_count": 1}, "away": {"_count": 1}, "mdears": {"_count": 1}, "into": {"_count": 2}, "across": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}, "up": {"_count": 1}, "there": {"_count": 1}, "here": {"_count": 2}, "she": {"_count": 1}, "inside": {"_count": 1}}, "Ron": {"_count": 2, "": {"_count": 1}, "past": {"_count": 1}}, "lucky": {"_count": 4, "again": {"_count": 1}, "at": {"_count": 1}, "sometimes": {"_count": 1}, "": {"_count": 1}}, "your": {"_count": 17, "trunk": {"_count": 1}, "new": {"_count": 1}, "things": {"_count": 2}, "wands": {"_count": 1}, "name": {"_count": 1}, "score": {"_count": 1}, "books": {"_count": 1}, "bats": {"_count": 1}, "boots": {"_count": 1}, "information": {"_count": 2}, "hands": {"_count": 4}, "girl": {"_count": 1}}, "mine": {"_count": 1, "beyond": {"_count": 1}}, "Harry": {"_count": 6, "into": {"_count": 1}, "said": {"_count": 1}, "there": {"_count": 1}, "expelled": {"_count": 1}, "": {"_count": 1}, "come": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "outta": {"_count": 1, "here": {"_count": 1}}, "trolleys": {"_count": 1, "for": {"_count": 1}}, "home": {"_count": 4, "": {"_count": 2}, "if": {"_count": 1}, "for": {"_count": 1}}, "our": {"_count": 6, "stuff": {"_count": 1}, "food": {"_count": 1}, "Divination": {"_count": 1}, "trunks": {"_count": 1}, "robes": {"_count": 1}, "hands": {"_count": 1}}, "along": {"_count": 3, "to": {"_count": 1}, "now": {"_count": 1}, "without": {"_count": 1}}, "near": {"_count": 10, "enough": {"_count": 4}, "me": {"_count": 1}, "them": {"_count": 2}, "any": {"_count": 1}, "the": {"_count": 2}}, "upstairs": {"_count": 3, "bit": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "yourself": {"_count": 5, "noticed": {"_count": 1}, "killed": {"_count": 1}, "down": {"_count": 1}, "a": {"_count": 1}, "into": {"_count": 1}}, "another": {"_count": 6, "Howler": {"_count": 1}, "shot": {"_count": 1}, "box": {"_count": 1}, "chance": {"_count": 1}, "position": {"_count": 1}, "sensible": {"_count": 1}}, "new": {"_count": 1, "brooms": {"_count": 1}}, "seven": {"_count": 1, "free": {"_count": 1}}, "detention": {"_count": 4, "": {"_count": 1}, "faster": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 1}}, "much": {"_count": 1, "response": {"_count": 1}}, "outside": {"_count": 5, "": {"_count": 1}, "owls": {"_count": 1}, "quickly": {"_count": 1}, "into": {"_count": 1}, "its": {"_count": 1}}, "lost": {"_count": 1, "before": {"_count": 1}}, "going": {"_count": 22, "The": {"_count": 1}, "Hagrid": {"_count": 1}, "said": {"_count": 3}, "Harry": {"_count": 1}, "theres": {"_count": 1}, "if": {"_count": 2}, "I": {"_count": 1}, "": {"_count": 4}, "then": {"_count": 4}, "boys": {"_count": 2}, "with": {"_count": 1}, "he": {"_count": 1}}, "help": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "something": {"_count": 5, "of": {"_count": 1}, "on": {"_count": 1}, "straight": {"_count": 1}, "like": {"_count": 1}, "to": {"_count": 1}}, "well": {"_count": 2, "card": {"_count": 1}, "away": {"_count": 1}}, "yeh": {"_count": 3, "outta": {"_count": 1}, "back": {"_count": 1}, "but": {"_count": 1}}, "moving": {"_count": 1, "said": {"_count": 1}}, "my": {"_count": 11, "dads": {"_count": 1}, "wand": {"_count": 1}, "Nimbus": {"_count": 1}, "Firebolt": {"_count": 2}, "strength": {"_count": 1}, "drift": {"_count": 1}, "eye": {"_count": 1}, "hopes": {"_count": 1}, "things": {"_count": 1}, "head": {"_count": 1}}, "loose": {"_count": 1, "": {"_count": 1}}, "undressed": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 13, "out": {"_count": 1}, "owl": {"_count": 1}, "into": {"_count": 2}, "back": {"_count": 2}, "down": {"_count": 1}, "by": {"_count": 1}, "off": {"_count": 1}, "on": {"_count": 1}, "hopes": {"_count": 1}, "to": {"_count": 2}}, "like": {"_count": 1, "this": {"_count": 1}}, "ready": {"_count": 7, "to": {"_count": 2}, "": {"_count": 1}, "for": {"_count": 3}, "ter": {"_count": 1}}, "themselves": {"_count": 1, "killed": {"_count": 1}}, "ot": {"_count": 1, "chocolate": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "involved": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "used": {"_count": 3, "to": {"_count": 3}}, "myself": {"_count": 2, "an": {"_count": 1}, "any": {"_count": 1}}, "Scabberss": {"_count": 1, "stuff": {"_count": 1}}, "Harrys": {"_count": 1, "present": {"_count": 1}}, "hold": {"_count": 10, "of": {"_count": 10}}, "angry": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "at": {"_count": 7, "Malfoy": {"_count": 2}, "Pettigrew": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "them": {"_count": 1}, "us": {"_count": 1}}, "Hagrid": {"_count": 4, "fired": {"_count": 1}, "sacked": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}}, "their": {"_count": 6, "bags": {"_count": 1}, "hands": {"_count": 3}, "wish": {"_count": 1}, "luggage": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "anyone": {"_count": 2, "else": {"_count": 1}, "": {"_count": 1}}, "too": {"_count": 10, "close": {"_count": 4}, "near": {"_count": 1}, "tidy": {"_count": 1}, "friendly": {"_count": 2}, "much": {"_count": 1}, "fond": {"_count": 1}}, "hurt": {"_count": 4, "would": {"_count": 1}, "nobody": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "someone": {"_count": 3, "": {"_count": 2}, "Dumbledore": {"_count": 1}}, "excited": {"_count": 2, "Oliver": {"_count": 1}, "he": {"_count": 1}}, "me": {"_count": 7, "an": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "ter": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 1}, "anything": {"_count": 1}}, "slightly": {"_count": 1, "worried": {"_count": 1}}, "from": {"_count": 1, "James": {"_count": 1}}, "nearer": {"_count": 2, "to": {"_count": 2}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "tickets": {"_count": 2, "from": {"_count": 1}, "said": {"_count": 1}}, "dressed": {"_count": 2, "before": {"_count": 1}, "": {"_count": 1}}, "more": {"_count": 4, "to": {"_count": 1}, "O": {"_count": 1}, "stuff": {"_count": 1}, "homework": {"_count": 1}}, "prime": {"_count": 1, "tickets": {"_count": 1}}, "invited": {"_count": 1, "to": {"_count": 1}}, "cracking": {"_count": 1, "then": {"_count": 1}}, "as": {"_count": 2, "many": {"_count": 1}, "far": {"_count": 1}}, "together": {"_count": 4, "": {"_count": 2}, "sometime": {"_count": 1}, "I": {"_count": 1}}, "seats": {"_count": 1, "in": {"_count": 1}}, "dirtier": {"_count": 1, "": {"_count": 1}}, "flying": {"_count": 1, "again": {"_count": 1}}, "enough": {"_count": 4, "O": {"_count": 1}, "N": {"_count": 1}, "of": {"_count": 1}, "breath": {"_count": 1}}, "yours": {"_count": 1, "secondhand": {"_count": 1}}, "over": {"_count": 3, "there": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "MadEye": {"_count": 1, "off": {"_count": 1}}, "time": {"_count": 2, "off": {"_count": 2}}, "down": {"_count": 7, "here": {"_count": 1}, "to": {"_count": 5}, "But": {"_count": 1}}, "paid": {"_count": 1, "": {"_count": 1}}, "holidays": {"_count": 1, "dont": {"_count": 1}}, "decent": {"_count": 1, "seats": {"_count": 1}}, "so": {"_count": 2, "much": {"_count": 2}}, "stabbed": {"_count": 1, "in": {"_count": 1}}, "shot": {"_count": 1, "of": {"_count": 1}}, "awarded": {"_count": 1, "points": {"_count": 1}}, "weirdos": {"_count": 1, "in": {"_count": 1}}, "Krums": {"_count": 1, "autograph": {"_count": 1}}, "Fleur": {"_count": 1, "at": {"_count": 1}}, "Quidditch": {"_count": 1, "terms": {"_count": 1}}, "dragged": {"_count": 1, "in": {"_count": 1}}, "what": {"_count": 2, "you": {"_count": 1}, "she": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "downstairs": {"_count": 2, "for": {"_count": 1}, "quick": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "boring": {"_count": 1, "": {"_count": 1}}, "complacent": {"_count": 1, "though": {"_count": 1}}, "closer": {"_count": 2, "to": {"_count": 1}, "pressing": {"_count": 1}}, "trampled": {"_count": 1, "Hermione": {"_count": 1}}, "Dumbledore": {"_count": 5, "if": {"_count": 2}, "Ill": {"_count": 1}, "": {"_count": 1}, "quickly": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 3, "telling": {"_count": 1}, "Christmas": {"_count": 1}, "it": {"_count": 1}}, "top": {"_count": 1, "marks": {"_count": 1}}, "rescued": {"_count": 1, "and": {"_count": 1}}, "far": {"_count": 1, "": {"_count": 1}}, "Alastor": {"_count": 1, "Moody": {"_count": 1}}, "inventing": {"_count": 1, "": {"_count": 1}}, "packed": {"_count": 1, "Harry": {"_count": 1}}, "soaked": {"_count": 1, "MadEye": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 2}}, "stuff": {"_count": 1, "out": {"_count": 1}}, "by": {"_count": 3, "stealth": {"_count": 3}}, "premises": {"_count": 2, "yet": {"_count": 1}, "": {"_count": 1}}, "power": {"_count": 1, "though": {"_count": 1}}, "these": {"_count": 6, "upstairs": {"_count": 1}, "massive": {"_count": 1}, "ruddy": {"_count": 1}, "brain": {"_count": 1}, "ropes": {"_count": 2}}, "killed": {"_count": 1, "whos": {"_count": 1}}, "instructions": {"_count": 1, "from": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "matey": {"_count": 1, "with": {"_count": 1}}, "those": {"_count": 3, "Skiving": {"_count": 1}, "two": {"_count": 1}, "Chocolate": {"_count": 1}}, "career": {"_count": 1, "advice": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "people": {"_count": 1, "to": {"_count": 1}}, "changed": {"_count": 1, "": {"_count": 1}}, "violent": {"_count": 1, "": {"_count": 1}}, "yourselves": {"_count": 1, "in": {"_count": 1}}, "Ds": {"_count": 1, "": {"_count": 1}}, "P": {"_count": 1, "for": {"_count": 1}}, "Defense": {"_count": 1, "lessons": {"_count": 1}}, "why": {"_count": 3, "Fred": {"_count": 1}, "Dumbledores": {"_count": 1}, "he": {"_count": 1}}, "practicing": {"_count": 1, "then": {"_count": 1}}, "food": {"_count": 1, "all": {"_count": 1}}, "eggs": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "himself": {"_count": 1}}, "upset": {"_count": 1, "Molly": {"_count": 1}}, "worse": {"_count": 1, "before": {"_count": 1}}, "herself": {"_count": 1, "all": {"_count": 1}}, "Sibyll": {"_count": 1, "": {"_count": 1}}, "Filch": {"_count": 1, "on": {"_count": 1}}, "Outstanding": {"_count": 1, "on": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Oh": {"_count": 1, "shut": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "Sturgis": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "Neville": {"_count": 1, "up": {"_count": 1}}, "\u2018Outstanding": {"_count": 1, "in": {"_count": 1}}, "Tonks": {"_count": 1, "round": {"_count": 1}}, "goin": {"_count": 1, "then": {"_count": 1}}, "everyones": {"_count": 1, "schoolbooks": {"_count": 1}}, "straight": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "warning": {"_count": 1}}, "seriously": {"_count": 1, "annoyed": {"_count": 1}}, "Borgin": {"_count": 1, "to": {"_count": 1}}, "Madam": {"_count": 2, "Pomfrey": {"_count": 1}, "Severus": {"_count": 1}}, "ten": {"_count": 1, "Galleons": {"_count": 1}}, "attacked": {"_count": 1, "by": {"_count": 1}}, "revenge": {"_count": 1, "": {"_count": 1}}, "distorted": {"_count": 1, "": {"_count": 1}}, "murdered": {"_count": 1, "right": {"_count": 1}}, "free": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "to": {"_count": 1}}, "venom": {"_count": 1, "from": {"_count": 1}}, "water": {"_count": 1, "because": {"_count": 1}}, "undercover": {"_count": 1, "before": {"_count": 1}}, "within": {"_count": 1, "a": {"_count": 1}}, "married": {"_count": 2, "here": {"_count": 1}, "said": {"_count": 1}}, "It": {"_count": 1, "wont": {"_count": 1}}, "run": {"_count": 1, "over": {"_count": 1}}, "information": {"_count": 1, "on": {"_count": 1}}, "Bernie": {"_count": 1, "Pillsworth": {"_count": 1}}, "dark": {"_count": 1, "I": {"_count": 1}}, "old": {"_count": 1, "or": {"_count": 1}}, "sidetracked": {"_count": 1, "Harry": {"_count": 1}}, "lulled": {"_count": 1, "into": {"_count": 1}}, "taken": {"_count": 1, "hostage": {"_count": 1}}, "Flitwick": {"_count": 1, "": {"_count": 1}}, "organized": {"_count": 1, "Harry": {"_count": 1}}, "better": {"_count": 1, "marks": {"_count": 1}}, "farther": {"_count": 1, "than": {"_count": 1}}, "letters": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}}, "day": {"_count": 438, "": {"_count": 109, ".": {"_count": 92}, "!": {"_count": 10}, "?": {"_count": 7}}, "said": {"_count": 12, "Professor": {"_count": 2}, "Ron": {"_count": 3}, "Fudge": {"_count": 2}, "the": {"_count": 2}, "Hermione": {"_count": 1}, "Hagrid": {"_count": 1}, "Albus": {"_count": 1}}, "YouKnowWho": {"_count": 1, "seems": {"_count": 1}}, "for": {"_count": 10, "neither": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 3}, "Apparating": {"_count": 1}, "nothing": {"_count": 1}, "whatever": {"_count": 1}, "surely": {"_count": 1}}, "to": {"_count": 18, "adventure": {"_count": 1}, "find": {"_count": 2}, "you": {"_count": 9}, "brilliant": {"_count": 1}, "enormous": {"_count": 1}, "keep": {"_count": 1}, "try": {"_count": 1}, "end": {"_count": 1}, "be": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "somewhere": {"_count": 1, "that": {"_count": 1}}, "long": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 19, "then": {"_count": 1}, "the": {"_count": 1}, "hear": {"_count": 1}, "left": {"_count": 1}, "in": {"_count": 1}, "we": {"_count": 1}, "as": {"_count": 2}, "night": {"_count": 2}, "returned": {"_count": 1}, "well": {"_count": 1}, "advises": {"_count": 1}, "on": {"_count": 1}, "most": {"_count": 1}, "although": {"_count": 1}, "go": {"_count": 1}, "whether": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 8, "Stonewall": {"_count": 2}, "school": {"_count": 1}, "home": {"_count": 1}, "break": {"_count": 1}, "Hogwarts": {"_count": 3}}, "in": {"_count": 10, "July": {"_count": 1}, "his": {"_count": 2}, "Herbology": {"_count": 1}, "Hogsmeade": {"_count": 1}, "Diagon": {"_count": 1}, "question": {"_count": 1}, "Dumbledores": {"_count": 1}, "a": {"_count": 1}, "discussion": {"_count": 1}}, "wear": {"_count": 1, "3": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "of": {"_count": 17, "August": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 10}, "term": {"_count": 1}, "his": {"_count": 1}, "lessons": {"_count": 1}, "peace": {"_count": 1}, "September": {"_count": 1}}, "so": {"_count": 2, "he": {"_count": 1}, "theyve": {"_count": 1}}, "he": {"_count": 6, "didnt": {"_count": 1}, "would": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 3}}, "before": {"_count": 11, "": {"_count": 3}, "Harrys": {"_count": 1}, "term": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 3}, "yesterday": {"_count": 1}, "when": {"_count": 1}}, "Harry": {"_count": 3, "thought": {"_count": 1}, "was": {"_count": 1}, "confided": {"_count": 1}}, "looking": {"_count": 1, "tired": {"_count": 1}}, "Harrys": {"_count": 2, "broomstick": {"_count": 1}, "school": {"_count": 1}}, "ever": {"_count": 1, "": {"_count": 1}}, "theyd": {"_count": 1, "had": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 2}}, "thought": {"_count": 1, "there": {"_count": 1}}, "like": {"_count": 3, "this": {"_count": 2}, "Hermione": {"_count": 1}}, "shaken": {"_count": 1, "hands": {"_count": 1}}, "off": {"_count": 5, "yesterday": {"_count": 1}, "a": {"_count": 1}, "work": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 8, "make": {"_count": 1}, "got": {"_count": 1}, "had": {"_count": 2}, "made": {"_count": 1}, "must": {"_count": 1}, "just": {"_count": 1}, "first": {"_count": 1}}, "it": {"_count": 5, "is": {"_count": 3}, "was": {"_count": 2}}, "yourself": {"_count": 1, "Mister": {"_count": 1}}, "however": {"_count": 1, "Harry": {"_count": 1}}, "back": {"_count": 6, "make": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 1}}, "they": {"_count": 5, "died": {"_count": 1}, "let": {"_count": 1}, "told": {"_count": 1}, "persuaded": {"_count": 1}, "devoted": {"_count": 1}}, "when": {"_count": 7, "youd": {"_count": 1}, "I": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}, "Riddle": {"_count": 1}, "we": {"_count": 1}}, "with": {"_count": 9, "a": {"_count": 2}, "him": {"_count": 1}, "luck": {"_count": 1}, "his": {"_count": 1}, "another": {"_count": 1}, "her": {"_count": 2}, "it": {"_count": 1}}, "now": {"_count": 5, "": {"_count": 3}, "Dobby": {"_count": 1}, "he": {"_count": 1}}, "older": {"_count": 1, "than": {"_count": 1}}, "fear": {"_count": 1, "to": {"_count": 1}}, "after": {"_count": 6, "that": {"_count": 3}, "tomorrow": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}}, "the": {"_count": 6, "first": {"_count": 1}, "walls": {"_count": 1}, "sole": {"_count": 1}, "Hogwarts": {"_count": 1}, "enchanted": {"_count": 1}, "Ravenclaws": {"_count": 1}}, "we": {"_count": 3, "fought": {"_count": 1}, "finish": {"_count": 1}, "gave": {"_count": 1}}, "reading": {"_count": 1, "up": {"_count": 1}}, "me": {"_count": 1, "dad": {"_count": 1}}, "everywhere": {"_count": 1, "they": {"_count": 1}}, "an": {"_count": 2, "night": {"_count": 1}, "its": {"_count": 1}}, "was": {"_count": 8, "fine": {"_count": 1}, "Saturday": {"_count": 1}, "reaching": {"_count": 1}, "gone": {"_count": 1}, "not": {"_count": 2}, "eventful": {"_count": 1}, "cloudless": {"_count": 1}}, "Hermiones": {"_count": 1, "having": {"_count": 1}}, "not": {"_count": 3, "to": {"_count": 2}, "only": {"_count": 1}}, "because": {"_count": 1, "every": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "you": {"_count": 4, "know": {"_count": 1}, "see": {"_count": 1}, "saw": {"_count": 1}, "showed": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "showed": {"_count": 1, "him": {"_count": 1}}, "Ritas": {"_count": 1, "article": {"_count": 1}}, "two": {"_count": 1, "more": {"_count": 1}}, "during": {"_count": 1, "break": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "seemed": {"_count": 1}}, "hadnt": {"_count": 1, "bothered": {"_count": 1}}, "Rons": {"_count": 1, "and": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "indeed": {"_count": 1, "for": {"_count": 1}}, "Fang": {"_count": 1, "bounded": {"_count": 1}}, "your": {"_count": 1, "scar": {"_count": 1}}, "this": {"_count": 1, "summer": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "filthy": {"_count": 1}}, "be": {"_count": 1, "rewarded": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "proved": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "one": {"_count": 2, "moment": {"_count": 1}, "of": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "No": {"_count": 1, "we": {"_count": 1}}, "had": {"_count": 3, "lasted": {"_count": 1}, "become": {"_count": 1}, "seemed": {"_count": 1}}, "dawned": {"_count": 1, "just": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "comes": {"_count": 1, "": {"_count": 1}}, "wore": {"_count": 1, "on": {"_count": 1}}, "seeking": {"_count": 1, "out": {"_count": 1}}, "even": {"_count": 1, "Fred": {"_count": 1}}, "bringin": {"_count": 1, "gifts": {"_count": 1}}, "clothes": {"_count": 1, "there": {"_count": 1}}, "dozed": {"_count": 1, "off": {"_count": 1}}, "early": {"_count": 1, "Arthur": {"_count": 1}}, "escorted": {"_count": 1, "once": {"_count": 1}}, "that": {"_count": 5, "he": {"_count": 3}, "I": {"_count": 1}, "she": {"_count": 1}}, "dreading": {"_count": 2, "the": {"_count": 1}, "what": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "no": {"_count": 1, "sir": {"_count": 1}}, "nor": {"_count": 3, "that": {"_count": 1}, "by": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 5, "it": {"_count": 2}, "the": {"_count": 1}, "was": {"_count": 1}, "Hermione": {"_count": 1}}, "evaporated": {"_count": 1, "around": {"_count": 1}}, "drawing": {"_count": 1, "up": {"_count": 1}}, "feeling": {"_count": 1, "almost": {"_count": 1}}, "ahead": {"_count": 1, "Harry": {"_count": 1}}, "more": {"_count": 2, "than": {"_count": 1}, "frightened": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "trip": {"_count": 2, "": {"_count": 2}}, "Arthur": {"_count": 1, "confiscated": {"_count": 1}}, "oi": {"_count": 1, "come": {"_count": 1}}, "only": {"_count": 1, "": {"_count": 1}}, "becomes": {"_count": 1, "extraordinary": {"_count": 1}}, "by": {"_count": 1, "which": {"_count": 1}}, "become": {"_count": 1, "Lord": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "How": {"_count": 1, "would": {"_count": 1}}, "\u2018Where": {"_count": 1, "is": {"_count": 1}}, "how": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "his": {"_count": 1}}, "waiting": {"_count": 1, "outside": {"_count": 1}}, "Ron": {"_count": 1, "swallowed": {"_count": 1}}, "croaked": {"_count": 1, "Kreacher": {"_count": 1}}, "take": {"_count": 1, "the": {"_count": 1}}, "amongst": {"_count": 1, "their": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "perhaps": {"_count": 1, "it": {"_count": 1}}, "Neville": {"_count": 1, "had": {"_count": 1}}, "including": {"_count": 1, "Nicolas": {"_count": 1}}, "since": {"_count": 1, "we": {"_count": 1}}, "Squibs": {"_count": 1, "were": {"_count": 1}}, "a": {"_count": 1, "year": {"_count": 1}}, "passed": {"_count": 1, "without": {"_count": 1}}, "Runcorn": {"_count": 1, "": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "does": {"_count": 1, "anyone": {"_count": 1}}, "sharing": {"_count": 1, "the": {"_count": 1}}, "courtesy": {"_count": 1, "of": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "Aberforth": {"_count": 1, "sneered": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}}, "But": {"_count": 1917, "on": {"_count": 5, "the": {"_count": 5}}, "then": {"_count": 62, "it": {"_count": 1}, "he": {"_count": 8}, "disagreements": {"_count": 1}, "": {"_count": 7}, "she": {"_count": 3}, "the": {"_count": 4}, "to": {"_count": 1}, "why": {"_count": 1}, "there": {"_count": 2}, "Dumbledore": {"_count": 2}, "I": {"_count": 2}, "from": {"_count": 1}, "Maybe": {"_count": 1}, "perhaps": {"_count": 1}, "shed": {"_count": 1}, "Fathers": {"_count": 1}, "Can": {"_count": 1}, "when": {"_count": 1}, "a": {"_count": 1}, "something": {"_count": 1}, "through": {"_count": 2}, "discord": {"_count": 1}, "what": {"_count": 2}, "Voldemort": {"_count": 1}, "an": {"_count": 1}, "bleated": {"_count": 1}, "with": {"_count": 1}, "Goyle": {"_count": 1}, "Harry": {"_count": 1}, "youve": {"_count": 1}, "wheres": {"_count": 1}, "thats": {"_count": 1}, "where": {"_count": 1}, "lets": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 1}, "Voldemorts": {"_count": 1}, "if": {"_count": 1}, "Potter": {"_count": 1}}, "I": {"_count": 165, "can": {"_count": 2}, "cc": {"_count": 1}, "suppose": {"_count": 3}, "bounced": {"_count": 1}, "expect": {"_count": 1}, "dont": {"_count": 21}, "thought": {"_count": 10}, "heard": {"_count": 2}, "HOW": {"_count": 1}, "must": {"_count": 5}, "booked": {"_count": 1}, "mean": {"_count": 1}, "believe": {"_count": 1}, "never": {"_count": 1}, "shudder": {"_count": 1}, "didnt": {"_count": 7}, "stand": {"_count": 1}, "still": {"_count": 3}, "know": {"_count": 8}, "always": {"_count": 2}, "knew": {"_count": 4}, "cannot": {"_count": 1}, "was": {"_count": 8}, "wasnt": {"_count": 2}, "couldnt": {"_count": 1}, "do": {"_count": 5}, "wish": {"_count": 2}, "really": {"_count": 3}, "mustve": {"_count": 1}, "would": {"_count": 2}, "wont": {"_count": 1}, "have": {"_count": 3}, "stopped": {"_count": 1}, "am": {"_count": 4}, "knows": {"_count": 1}, "think": {"_count": 6}, "spose": {"_count": 2}, "havent": {"_count": 5}, "wouldnt": {"_count": 1}, "had": {"_count": 4}, "": {"_count": 1}, "dared": {"_count": 1}, "want": {"_count": 4}, "also": {"_count": 2}, "could": {"_count": 1}, "bet": {"_count": 1}, "sometimes": {"_count": 1}, "reckon": {"_count": 1}, "disagree": {"_count": 1}, "shall": {"_count": 1}, "kept": {"_count": 1}, "mustnt": {"_count": 1}, "daresay": {"_count": 1}, "need": {"_count": 1}, "cant": {"_count": 3}, "forgot": {"_count": 1}, "got": {"_count": 3}, "did": {"_count": 1}, "wanted": {"_count": 1}, "hope": {"_count": 2}, "wonder": {"_count": 1}, "might": {"_count": 2}, "only": {"_count": 1}, "liked": {"_count": 1}, "should": {"_count": 1}}, "he": {"_count": 103, "did": {"_count": 3}, "couldnt": {"_count": 4}, "wished": {"_count": 1}, "had": {"_count": 10}, "still": {"_count": 1}, "didnt": {"_count": 11}, "is": {"_count": 2}, "seemed": {"_count": 3}, "already": {"_count": 1}, "never": {"_count": 2}, "hadnt": {"_count": 2}, "stopped": {"_count": 2}, "must": {"_count": 3}, "was": {"_count": 14}, "and": {"_count": 1}, "knew": {"_count": 1}, "fell": {"_count": 2}, "hoped": {"_count": 1}, "wasnt": {"_count": 3}, "grinned": {"_count": 1}, "suddenly": {"_count": 1}, "cant": {"_count": 2}, "abandoned": {"_count": 1}, "cannot": {"_count": 1}, "wants": {"_count": 1}, "died": {"_count": 1}, "wondered": {"_count": 1}, "wouldnt": {"_count": 1}, "looked": {"_count": 1}, "gave": {"_count": 2}, "thought": {"_count": 2}, "might": {"_count": 1}, "left": {"_count": 1}, "wont": {"_count": 1}, "knows": {"_count": 2}, "broke": {"_count": 2}, "thinks": {"_count": 1}, "took": {"_count": 1}, "says": {"_count": 1}, "can": {"_count": 1}, "\u2018accidentally": {"_count": 1}, "doesn": {"_count": 1}, "understood": {"_count": 1}, "healed": {"_count": 1}, "hasnt": {"_count": 1}, "shook": {"_count": 1}, "hesitated": {"_count": 1}, "scarcely": {"_count": 1}, "threw": {"_count": 1}, "pulled": {"_count": 1}}, "thats": {"_count": 14, "no": {"_count": 1}, "what": {"_count": 1}, "impossible": {"_count": 2}, "very": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 2}, "okay": {"_count": 1}, "just": {"_count": 1}, "Im": {"_count": 1}, "Lee": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 1}}, "youre": {"_count": 18, "different": {"_count": 1}, "Mugglesl": {"_count": 1}, "much": {"_count": 1}, "the": {"_count": 1}, "forgetting": {"_count": 1}, "behind": {"_count": 1}, "not": {"_count": 1}, "telling": {"_count": 1}, "coming": {"_count": 1}, "just": {"_count": 1}, "still": {"_count": 1}, "moving": {"_count": 1}, "doing": {"_count": 1}, "okay": {"_count": 1}, "fighting": {"_count": 1}, "Muggleborn": {"_count": 1}, "dead": {"_count": 1}, "too": {"_count": 1}}, "how": {"_count": 34, "is": {"_count": 1}, "do": {"_count": 5}, "can": {"_count": 2}, "did": {"_count": 8}, "I": {"_count": 1}, "on": {"_count": 1}, "could": {"_count": 3}, "will": {"_count": 1}, "to": {"_count": 2}, "are": {"_count": 4}, "come": {"_count": 2}, "": {"_count": 2}, "much": {"_count": 1}, "how": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "all": {"_count": 7, "hed": {"_count": 1}, "my": {"_count": 1}, "weve": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "seems": {"_count": 1}}, "today": {"_count": 1, "nothing": {"_count": 1}}, "the": {"_count": 103, "glass": {"_count": 1}, "others": {"_count": 2}, "news": {"_count": 1}, "room": {"_count": 1}, "nights": {"_count": 1}, "long": {"_count": 1}, "Weasleys": {"_count": 1}, "things": {"_count": 1}, "car": {"_count": 2}, "whole": {"_count": 1}, "thing": {"_count": 4}, "Bludgers": {"_count": 1}, "point": {"_count": 1}, "headmaster": {"_count": 1}, "wizard": {"_count": 1}, "monster": {"_count": 1}, "only": {"_count": 2}, "bell": {"_count": 1}, "tunnel": {"_count": 1}, "door": {"_count": 3}, "dementor": {"_count": 1}, "sword": {"_count": 1}, "match": {"_count": 1}, "truly": {"_count": 1}, "dementors": {"_count": 1}, "classroom": {"_count": 1}, "map": {"_count": 1}, "cat": {"_count": 1}, "force": {"_count": 1}, "Ministry": {"_count": 3}, "chance": {"_count": 1}, "cheers": {"_count": 1}, "footsteps": {"_count": 1}, "man": {"_count": 2}, "question": {"_count": 2}, "skrewts": {"_count": 1}, "Fat": {"_count": 1}, "World": {"_count": 1}, "dot": {"_count": 1}, "boy": {"_count": 1}, "Pensieve": {"_count": 1}, "tasks": {"_count": 1}, "blood": {"_count": 1}, "rest": {"_count": 4}, "nasty": {"_count": 1}, "great": {"_count": 1}, "very": {"_count": 1}, "more": {"_count": 2}, "full": {"_count": 1}, "scream": {"_count": 1}, "fire": {"_count": 1}, "unsightly": {"_count": 1}, "Healer": {"_count": 1}, "common": {"_count": 1}, "Daily": {"_count": 1}, "breakout": {"_count": 1}, "fact": {"_count": 1}, "heat": {"_count": 1}, "Death": {"_count": 2}, "Dark": {"_count": 2}, "thin": {"_count": 1}, "headless": {"_count": 1}, "rage": {"_count": 1}, "prophecy": {"_count": 2}, "problem": {"_count": 1}, "villagers": {"_count": 1}, "weathers": {"_count": 1}, "six": {"_count": 1}, "importance": {"_count": 1}, "owl": {"_count": 1}, "dark": {"_count": 1}, "end": {"_count": 1}, "smile": {"_count": 1}, "Deathly": {"_count": 1}, "second": {"_count": 1}, "ole": {"_count": 1}, "fake": {"_count": 1}, "idea": {"_count": 1}, "diadem": {"_count": 1}, "girl": {"_count": 1}, "lie": {"_count": 1}, "spell": {"_count": 1}, "Cloak": {"_count": 1}, "vapor": {"_count": 1}}, "worst": {"_count": 1, "of": {"_count": 1}}, "what": {"_count": 56, "should": {"_count": 2}, "happened": {"_count": 4}, "does": {"_count": 4}, "they": {"_count": 1}, "are": {"_count": 4}, "can": {"_count": 1}, "about": {"_count": 9}, "good": {"_count": 1}, "if": {"_count": 6}, "do": {"_count": 2}, "was": {"_count": 3}, "would": {"_count": 1}, "were": {"_count": 2}, "ARE": {"_count": 1}, "have": {"_count": 2}, "": {"_count": 2}, "on": {"_count": 1}, "made": {"_count": 2}, "use": {"_count": 1}, "help": {"_count": 1}, "concerns": {"_count": 1}, "say": {"_count": 1}, "will": {"_count": 1}, "did": {"_count": 1}, "must": {"_count": 1}, "escaped": {"_count": 1}}, "Im": {"_count": 17, "not": {"_count": 8}, "in": {"_count": 1}, "afraid": {"_count": 1}, "taking": {"_count": 1}, "also": {"_count": 1}, "the": {"_count": 1}, "sure": {"_count": 1}, "jiggered": {"_count": 1}, "going": {"_count": 1}, "fine": {"_count": 1}}, "Hagrid": {"_count": 7, "simply": {"_count": 1}, "wasnt": {"_count": 2}, "was": {"_count": 1}, "continued": {"_count": 1}, "merely": {"_count": 1}, "had": {"_count": 1}}, "yeh": {"_count": 2, "must": {"_count": 1}, "will": {"_count": 1}}, "for": {"_count": 4, "my": {"_count": 1}, "all": {"_count": 1}, "filth": {"_count": 1}, "heavens": {"_count": 1}}, "why": {"_count": 31, "": {"_count": 9}, "would": {"_count": 2}, "couldnt": {"_count": 2}, "dont": {"_count": 1}, "are": {"_count": 2}, "not": {"_count": 1}, "has": {"_count": 1}, "Bertha": {"_count": 1}, "does": {"_count": 2}, "havent": {"_count": 1}, "sack": {"_count": 1}, "Hermione": {"_count": 1}, "did": {"_count": 1}, "didnt": {"_count": 2}, "have": {"_count": 2}, "should": {"_count": 1}, "that": {"_count": 1}}, "its": {"_count": 13, "that": {"_count": 1}, "against": {"_count": 1}, "the": {"_count": 2}, "obvious": {"_count": 1}, "gonna": {"_count": 1}, "nothing": {"_count": 1}, "business": {"_count": 1}, "okay": {"_count": 1}, "got": {"_count": 1}, "barely": {"_count": 1}, "all": {"_count": 1}, "expanded": {"_count": 1}}, "at": {"_count": 11, "that": {"_count": 8}, "these": {"_count": 2}, "once": {"_count": 1}}, "Dumbledore": {"_count": 21, "let": {"_count": 1}, "held": {"_count": 1}, "suddenly": {"_count": 1}, "didnt": {"_count": 1}, "doesnt": {"_count": 1}, "says": {"_count": 1}, "thinks": {"_count": 1}, "told": {"_count": 1}, "stood": {"_count": 1}, "cut": {"_count": 1}, "wont": {"_count": 1}, "was": {"_count": 2}, "can": {"_count": 1}, "has": {"_count": 1}, "merely": {"_count": 1}, "swore": {"_count": 1}, "like": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 2}}, "if": {"_count": 48, "their": {"_count": 1}, "we": {"_count": 3}, "you": {"_count": 8}, "were": {"_count": 1}, "it": {"_count": 5}, "he": {"_count": 7}, "they": {"_count": 4}, "Slytherin": {"_count": 1}, "the": {"_count": 2}, "if": {"_count": 1}, "hes": {"_count": 1}, "Id": {"_count": 1}, "youre": {"_count": 2}, "none": {"_count": 1}, "Voldemorts": {"_count": 1}, "Voldemort": {"_count": 2}, "this": {"_count": 2}, "I": {"_count": 2}, "my": {"_count": 2}, "any": {"_count": 1}}, "they": {"_count": 24, "were": {"_count": 3}, "didnt": {"_count": 2}, "werent": {"_count": 2}, "won": {"_count": 1}, "couldnt": {"_count": 1}, "all": {"_count": 1}, "already": {"_count": 1}, "got": {"_count": 1}, "get": {"_count": 1}, "at": {"_count": 1}, "waited": {"_count": 1}, "both": {"_count": 1}, "are": {"_count": 1}, "did": {"_count": 2}, "still": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}, "could": {"_count": 1}, "might": {"_count": 1}}, "before": {"_count": 26, "Harry": {"_count": 6}, "he": {"_count": 12}, "Hermione": {"_count": 1}, "they": {"_count": 3}, "we": {"_count": 2}, "any": {"_count": 1}, "you": {"_count": 1}}, "you": {"_count": 79, "dont": {"_count": 5}, "cant": {"_count": 2}, "will": {"_count": 2}, "can": {"_count": 4}, "would": {"_count": 2}, "must": {"_count": 3}, "havent": {"_count": 1}, "said": {"_count": 6}, "were": {"_count": 5}, "11": {"_count": 2}, "just": {"_count": 1}, "Peter": {"_count": 1}, "believe": {"_count": 1}, "passed": {"_count": 1}, "seem": {"_count": 2}, "told": {"_count": 1}, "found": {"_count": 1}, "did": {"_count": 3}, "know": {"_count": 8}, "see": {"_count": 2}, "survived": {"_count": 1}, "still": {"_count": 1}, "wont": {"_count": 3}, "shouldnt": {"_count": 1}, "saw": {"_count": 1}, "do": {"_count": 1}, "came": {"_count": 1}, "stayed": {"_count": 1}, "didnt": {"_count": 2}, "think": {"_count": 1}, "should": {"_count": 2}, "are": {"_count": 2}, "Tom": {"_count": 1}, "obviously": {"_count": 1}, "couldnt": {"_count": 1}, "never": {"_count": 1}, "have": {"_count": 1}, "call": {"_count": 1}, "already": {"_count": 1}, "expected": {"_count": 1}, "want": {"_count": 1}}, "yehll": {"_count": 2, "have": {"_count": 1}, "see": {"_count": 1}}, "see": {"_count": 1, "what": {"_count": 1}}, "in": {"_count": 6, "you": {"_count": 1}, "all": {"_count": 1}, "summer": {"_count": 1}, "essence": {"_count": 1}, "the": {"_count": 2}}, "we": {"_count": 23, "dont": {"_count": 4}, "do": {"_count": 1}, "cant": {"_count": 1}, "also": {"_count": 1}, "havent": {"_count": 3}, "hope": {"_count": 1}, "should": {"_count": 1}, "got": {"_count": 1}, "feel": {"_count": 1}, "didnt": {"_count": 1}, "have": {"_count": 1}, "couldnt": {"_count": 1}, "managed": {"_count": 1}, "are": {"_count": 1}, "definitely": {"_count": 1}, "can": {"_count": 2}, "were": {"_count": 1}}, "dont": {"_count": 12, "judge": {"_count": 1}, "panic": {"_count": 1}, "touch": {"_count": 1}, "worry": {"_count": 2}, "go": {"_count": 1}, "tell": {"_count": 1}, "you": {"_count": 4}, "be": {"_count": 1}}, "were": {"_count": 7, "not": {"_count": 5}, "being": {"_count": 1}, "going": {"_count": 1}}, "Neville": {"_count": 6, "nervous": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 2}, "said": {"_count": 1}, "seized": {"_count": 1}}, "Malfoy": {"_count": 3, "Thats": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}}, "Wood": {"_count": 1, "turned": {"_count": 1}}, "first": {"_count": 5, "years": {"_count": 1}, "let": {"_count": 1}, "You": {"_count": 1}, "of": {"_count": 1}, "he": {"_count": 1}}, "people": {"_count": 2, "only": {"_count": 1}, "used": {"_count": 1}}, "Hermione": {"_count": 24, "had": {"_count": 3}, "gave": {"_count": 2}, "s": {"_count": 1}, "was": {"_count": 5}, "wasnt": {"_count": 2}, "didnt": {"_count": 3}, "began": {"_count": 2}, "nudged": {"_count": 1}, "says": {"_count": 1}, "said": {"_count": 1}, "Well": {"_count": 1}, "where": {"_count": 1}, "raised": {"_count": 1}}, "as": {"_count": 27, "all": {"_count": 2}, "they": {"_count": 2}, "Harry": {"_count": 1}, "Filch": {"_count": 1}, "he": {"_count": 6}, "warm": {"_count": 1}, "we": {"_count": 1}, "his": {"_count": 2}, "you": {"_count": 1}, "far": {"_count": 1}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "youre": {"_count": 1}, "Dumbledore": {"_count": 1}, "its": {"_count": 1}, "for": {"_count": 1}, "it": {"_count": 2}, "I": {"_count": 1}}, "Percyd": {"_count": 1, "better": {"_count": 1}}, "from": {"_count": 1, "that": {"_count": 1}}, "whats": {"_count": 9, "he": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 2}, "a": {"_count": 1}, "been": {"_count": 1}, "Hagrid": {"_count": 1}, "all": {"_count": 1}, "going": {"_count": 1}}, "it": {"_count": 53, "isnt": {"_count": 1}, "was": {"_count": 18}, "doesnt": {"_count": 2}, "cant": {"_count": 1}, "makes": {"_count": 1}, "wasnt": {"_count": 2}, "must": {"_count": 2}, "seemed": {"_count": 3}, "might": {"_count": 1}, "mustve": {"_count": 1}, "seems": {"_count": 1}, "sounded": {"_count": 1}, "wouldve": {"_count": 1}, "did": {"_count": 1}, "wont": {"_count": 3}, "would": {"_count": 3}, "sounds": {"_count": 2}, "is": {"_count": 4}, "comes": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 1}, "keeps": {"_count": 1}, "didnt": {"_count": 1}}, "this": {"_count": 25, "isnt": {"_count": 1}, "is": {"_count": 7}, "was": {"_count": 4}, "time": {"_count": 1}, "didnt": {"_count": 1}, "way": {"_count": 1}, "one": {"_count": 2}, "query": {"_count": 1}, "year": {"_count": 1}, "at": {"_count": 1}, "apparently": {"_count": 1}, "definitely": {"_count": 1}, "proves": {"_count": 1}, "raised": {"_count": 1}, "he": {"_count": 1}}, "Nimbus": {"_count": 1, "Two": {"_count": 1}}, "Snapes": {"_count": 1, "trying": {"_count": 1}}, "Harry": {"_count": 100, "only": {"_count": 1}, "what": {"_count": 2}, "who": {"_count": 2}, "grinning": {"_count": 1}, "was": {"_count": 17}, "could": {"_count": 6}, "didnt": {"_count": 5}, "wasnt": {"_count": 5}, "thought": {"_count": 1}, "had": {"_count": 13}, "stood": {"_count": 1}, "continued": {"_count": 1}, "mustnt": {"_count": 1}, "will": {"_count": 1}, "happened": {"_count": 1}, "saw": {"_count": 1}, "stayed": {"_count": 1}, "isnt": {"_count": 1}, "lay": {"_count": 1}, "couldnt": {"_count": 3}, "remembering": {"_count": 1}, "doubted": {"_count": 2}, "looked": {"_count": 1}, "set": {"_count": 1}, "held": {"_count": 1}, "Ron": {"_count": 2}, "closing": {"_count": 1}, "did": {"_count": 6}, "Potter": {"_count": 1}, "thats": {"_count": 1}, "first": {"_count": 1}, "": {"_count": 1}, "youve": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}, "Hermione": {"_count": 1}, "before": {"_count": 1}, "never": {"_count": 1}, "interrupted": {"_count": 1}, "hasnt": {"_count": 1}, "beamed": {"_count": 1}, "his": {"_count": 1}, "its": {"_count": 1}, "Please": {"_count": 1}, "hardly": {"_count": 1}, "cut": {"_count": 1}, "knew": {"_count": 1}, "kept": {"_count": 1}}, "there": {"_count": 36, "arent": {"_count": 1}, "are": {"_count": 6}, "is": {"_count": 1}, "was": {"_count": 17}, "isnt": {"_count": 1}, "werent": {"_count": 1}, "wouldnt": {"_count": 1}, "cant": {"_count": 1}, "were": {"_count": 5}, "could": {"_count": 1}, "will": {"_count": 1}}, "even": {"_count": 11, "Quidditch": {"_count": 1}, "as": {"_count": 5}, "then": {"_count": 1}, "from": {"_count": 1}, "if": {"_count": 3}}, "weve": {"_count": 8, "got": {"_count": 6}, "always": {"_count": 1}, "been": {"_count": 1}}, "whod": {"_count": 1, "be": {"_count": 1}}, "Professor": {"_count": 14, "Potter": {"_count": 1}, "piped": {"_count": 1}, "": {"_count": 1}, "Lupin": {"_count": 2}, "my": {"_count": 1}, "Trelawney": {"_count": 1}, "Dumbledores": {"_count": 1}, "McGonagalls": {"_count": 1}, "McGonagall": {"_count": 1}, "couldnt": {"_count": 1}, "Umbridge": {"_count": 1}, "hes": {"_count": 1}, "whos": {"_count": 1}}, "that": {"_count": 21, "part": {"_count": 1}, "means": {"_count": 1}, "was": {"_count": 4}, "sounds": {"_count": 1}, "wasnt": {"_count": 2}, "doesnt": {"_count": 3}, "does": {"_count": 1}, "night": {"_count": 1}, "makes": {"_count": 1}, "fellow": {"_count": 1}, "would": {"_count": 1}, "murder": {"_count": 1}, "could": {"_count": 2}, "wouldnt": {"_count": 1}}, "will": {"_count": 3, "it": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}}, "leaving": {"_count": 1, "Neville": {"_count": 1}}, "Do": {"_count": 1, "you": {"_count": 1}}, "so": {"_count": 1, "will": {"_count": 1}}, "Snape": {"_count": 8, "tried": {"_count": 1}, "always": {"_count": 1}, "was": {"_count": 1}, "s": {"_count": 1}, "had": {"_count": 1}, "ignored": {"_count": 1}, "parried": {"_count": 1}, "knows": {"_count": 1}}, "a": {"_count": 8, "moment": {"_count": 2}, "reckless": {"_count": 1}, "pair": {"_count": 1}, "hundred": {"_count": 1}, "grin": {"_count": 1}, "few": {"_count": 1}, "little": {"_count": 1}}, "sir": {"_count": 9, "the": {"_count": 1}, "Dobbys": {"_count": 1}, "said": {"_count": 3}, "": {"_count": 3}, "I": {"_count": 1}}, "your": {"_count": 6, "friend": {"_count": 1}, "dad": {"_count": 1}, "mum": {"_count": 1}, "father": {"_count": 1}, "blood": {"_count": 1}, "journey": {"_count": 1}}, "five": {"_count": 2, "minutes": {"_count": 1}, "oclock": {"_count": 1}}, "wont": {"_count": 1, "they": {"_count": 1}}, "Dobby": {"_count": 8, "has": {"_count": 1}, "didnt": {"_count": 1}, "shouted": {"_count": 1}, "talks": {"_count": 1}, "hasnt": {"_count": 1}, "is": {"_count": 1}, "was": {"_count": 1}, "shook": {"_count": 1}}, "Ive": {"_count": 8, "got": {"_count": 4}, "told": {"_count": 1}, "still": {"_count": 1}, "found": {"_count": 1}, "never": {"_count": 1}}, "Dobbys": {"_count": 1, "eyes": {"_count": 1}}, "doing": {"_count": 1, "magic": {"_count": 1}}, "Percy": {"_count": 3, "wouldnt": {"_count": 1}, "must": {"_count": 1}, "showed": {"_count": 1}}, "really": {"_count": 1, "she": {"_count": 1}}, "dear": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "Rons": {"_count": 2, "whole": {"_count": 1}, "tolerance": {"_count": 1}}, "when": {"_count": 17, "I": {"_count": 1}, "a": {"_count": 1}, "Krums": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 3}, "were": {"_count": 1}, "Educational": {"_count": 1}, "Sibyll": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 2}, "did": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}}, "Colin": {"_count": 2, "didnt": {"_count": 1}, "was": {"_count": 1}}, "unfortunately": {"_count": 4, "owing": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}}, "Tve": {"_count": 1, "got": {"_count": 1}}, "perhaps": {"_count": 2, "the": {"_count": 1}, "we": {"_count": 1}}, "nobody": {"_count": 6, "heard": {"_count": 1}, "had": {"_count": 1}, "wanted": {"_count": 1}, "was": {"_count": 1}, "paid": {"_count": 1}, "seemed": {"_count": 1}}, "whys": {"_count": 2, "she": {"_count": 2}}, "these": {"_count": 1, "honest": {"_count": 1}}, "maybe": {"_count": 3, "youve": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}}, "getting": {"_count": 1, "hold": {"_count": 1}}, "who": {"_count": 3, "cares": {"_count": 1}, "conjured": {"_count": 1}, "had": {"_count": 1}}, "not": {"_count": 9, "toenails": {"_count": 1}, "Sirius": {"_count": 1}, "one": {"_count": 1}, "even": {"_count": 1}, "anymore": {"_count": 1}, "by": {"_count": 1}, "until": {"_count": 2}, "because": {"_count": 1}}, "mostly": {"_count": 2, "sir": {"_count": 1}, "she": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "Lockhart": {"_count": 1, "wasnt": {"_count": 1}}, "their": {"_count": 2, "antics": {"_count": 1}, "attitude": {"_count": 1}}, "to": {"_count": 7, "Harrys": {"_count": 2}, "get": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}, "be": {"_count": 1}}, "luckily": {"_count": 2, "weve": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "monsters": {"_count": 1, "dont": {"_count": 1}}, "his": {"_count": 10, "cheerful": {"_count": 1}, "wand": {"_count": 1}, "shout": {"_count": 1}, "head": {"_count": 1}, "journey": {"_count": 1}, "mouth": {"_count": 1}, "beard": {"_count": 1}, "question": {"_count": 1}, "hopes": {"_count": 1}, "final": {"_count": 1}}, "Ron": {"_count": 20, "was": {"_count": 5}, "fell": {"_count": 1}, "had": {"_count": 5}, "ignored": {"_count": 1}, "didnt": {"_count": 1}, "let": {"_count": 1}, "we": {"_count": 1}, "did": {"_count": 1}, "who": {"_count": 1}, "held": {"_count": 1}, "stopped": {"_count": 1}, "started": {"_count": 1}}, "only": {"_count": 3, "a": {"_count": 1}, "just": {"_count": 1}, "one": {"_count": 1}}, "McGonagall": {"_count": 1, "said": {"_count": 1}}, "stuttered": {"_count": 1, "Fudge": {"_count": 1}}, "with": {"_count": 2, "no": {"_count": 1}, "a": {"_count": 1}}, "Lockharts": {"_count": 1, "disgusting": {"_count": 1}}, "but": {"_count": 8, "My": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "spluttered": {"_count": 1}, "Understanding": {"_count": 1}, "where": {"_count": 1}, "we": {"_count": 1}, "Reg": {"_count": 1}}, "something": {"_count": 4, "happened": {"_count": 1}, "odd": {"_count": 1}, "moved": {"_count": 1}, "thats": {"_count": 1}}, "just": {"_count": 7, "as": {"_count": 4}, "then": {"_count": 2}, "say": {"_count": 1}}, "no": {"_count": 12, "ones": {"_count": 2}, "way": {"_count": 1}, "one": {"_count": 3}, "": {"_count": 2}, "she": {"_count": 1}, "that": {"_count": 1}, "matter": {"_count": 2}}, "hows": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 29, "finally": {"_count": 1}, "couldnt": {"_count": 1}, "broke": {"_count": 3}, "was": {"_count": 2}, "wasnt": {"_count": 1}, "didnt": {"_count": 3}, "just": {"_count": 1}, "became": {"_count": 1}, "backed": {"_count": 1}, "laid": {"_count": 1}, "may": {"_count": 1}, "lowered": {"_count": 1}, "stood": {"_count": 1}, "seemed": {"_count": 1}, "took": {"_count": 1}, "turned": {"_count": 1}, "did": {"_count": 1}, "could": {"_count": 1}, "wouldnt": {"_count": 1}, "said": {"_count": 1}, "wants": {"_count": 1}, "still": {"_count": 1}, "only": {"_count": 1}, "the": {"_count": 1}}, "Riddles": {"_count": 2, "twisted": {"_count": 1}, "hunger": {"_count": 1}}, "was": {"_count": 1, "this": {"_count": 1}}, "Later": {"_count": 1, "Harry": {"_count": 1}}, "tears": {"_count": 1, "were": {"_count": 1}}, "Ginny": {"_count": 4, "s": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "shook": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 2}, "does": {"_count": 1}}, "hurry": {"_count": 1, "": {"_count": 1}}, "Aunt": {"_count": 3, "Petunia": {"_count": 2}, "Marge": {"_count": 1}}, "after": {"_count": 4, "ten": {"_count": 1}, "a": {"_count": 2}, "talking": {"_count": 1}}, "Stan": {"_count": 1, "wasnt": {"_count": 1}}, "itll": {"_count": 3, "be": {"_count": 2}, "have": {"_count": 1}}, "Mum": {"_count": 1, "spotted": {"_count": 1}}, "hes": {"_count": 14, "not": {"_count": 2}, "right": {"_count": 1}, "made": {"_count": 1}, "gone": {"_count": 1}, "really": {"_count": 1}, "also": {"_count": 1}, "still": {"_count": 1}, "all": {"_count": 1}, "up": {"_count": 1}, "older": {"_count": 1}, "a": {"_count": 1}, "acting": {"_count": 1}, "there": {"_count": 1}}, "theyll": {"_count": 1, "catch": {"_count": 1}}, "Hogsmeades": {"_count": 1, "a": {"_count": 1}}, "didnt": {"_count": 2, "any": {"_count": 1}, "they": {"_count": 1}}, "look": {"_count": 3, "said": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 1}}, "Oh": {"_count": 1, "Ron": {"_count": 1}}, "everyone": {"_count": 1, "knows": {"_count": 1}}, "s": {"_count": 1, "only": {"_count": 1}}, "Malfoys": {"_count": 2, "eyes": {"_count": 1}, "hand": {"_count": 1}}, "nothing": {"_count": 6, "anyone": {"_count": 1}, "at": {"_count": 1}, "doing": {"_count": 1}, "happened": {"_count": 2}, "I": {"_count": 1}}, "Sirius": {"_count": 6, "Black": {"_count": 1}, "said": {"_count": 1}, "held": {"_count": 1}, "this": {"_count": 1}, "did": {"_count": 2}}, "James": {"_count": 3, "Potter": {"_count": 1}, "caught": {"_count": 1}, "merely": {"_count": 1}}, "Id": {"_count": 2, "had": {"_count": 1}, "have": {"_count": 1}}, "where": {"_count": 7, "is": {"_count": 3}, "are": {"_count": 1}, "they": {"_count": 1}, "will": {"_count": 1}, "have": {"_count": 1}}, "surely": {"_count": 9, "you": {"_count": 2}, "sir": {"_count": 1}, "Harry": {"_count": 1}, "werewolves": {"_count": 1}, "Snape": {"_count": 1}, "people": {"_count": 1}, "she": {"_count": 1}, "if": {"_count": 1}}, "Black": {"_count": 2, "couldnt": {"_count": 1}, "was": {"_count": 1}}, "hed": {"_count": 2, "never": {"_count": 1}, "make": {"_count": 1}}, "youve": {"_count": 5, "achieved": {"_count": 1}, "just": {"_count": 2}, "lasted": {"_count": 1}, "been": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "shes": {"_count": 4, "still": {"_count": 1}, "not": {"_count": 1}, "pretty": {"_count": 1}, "ditched": {"_count": 1}}, "famous": {"_count": 1, "Harry": {"_count": 1}}, "Flint": {"_count": 1, "had": {"_count": 1}}, "still": {"_count": 3, "": {"_count": 1}, "no": {"_count": 1}, "Harry": {"_count": 1}}, "Blacks": {"_count": 2, "free": {"_count": 1}, "by": {"_count": 1}}, "Crookshanks": {"_count": 1, "sank": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "of": {"_count": 9, "course": {"_count": 9}}, "Peter": {"_count": 1, "got": {"_count": 1}}, "Lupin": {"_count": 1, "silenced": {"_count": 1}}, "think": {"_count": 1, "": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "Fudge": {"_count": 1, "was": {"_count": 1}}, "Madam": {"_count": 2, "Pomfrey": {"_count": 2}}, "Listen": {"_count": 1, "to": {"_count": 1}}, "remember": {"_count": 2, "this": {"_count": 1}, "what": {"_count": 1}}, "Shh": {"_count": 1, "": {"_count": 1}}, "trust": {"_count": 1, "me": {"_count": 1}}, "over": {"_count": 1, "in": {"_count": 1}}, "Frank": {"_count": 1, "did": {"_count": 1}}, "Memory": {"_count": 1, "Charms": {"_count": 1}}, "quiet": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 3, "couldnt": {"_count": 1}, "continues": {"_count": 1}, "broke": {"_count": 1}}, "Mr": {"_count": 8, "Weasley": {"_count": 4}, "Weasleys": {"_count": 1}, "Crouch": {"_count": 2}, "Ollivander": {"_count": 1}}, "Dudley": {"_count": 3, "didnt": {"_count": 1}, "either": {"_count": 1}, "seemed": {"_count": 1}}, "far": {"_count": 1, "from": {"_count": 1}}, "next": {"_count": 3, "moment": {"_count": 2}, "second": {"_count": 1}}, "Bill": {"_count": 2, "and": {"_count": 1}, "saw": {"_count": 1}}, "shell": {"_count": 1, "turn": {"_count": 1}}, "Levskis": {"_count": 1, "got": {"_count": 1}}, "none": {"_count": 4, "of": {"_count": 4}}, "Ill": {"_count": 1, "tell": {"_count": 1}}, "Mrs": {"_count": 3, "Weasley": {"_count": 1}, "Figg": {"_count": 1}, "Cole": {"_count": 1}}, "my": {"_count": 8, "own": {"_count": 1}, "plan": {"_count": 1}, "dear": {"_count": 1}, "point": {"_count": 1}, "death": {"_count": 1}, "mother": {"_count": 1}, "Lord": {"_count": 1}, "guesses": {"_count": 1}}, "Mother": {"_count": 1, "didnt": {"_count": 1}}, "Hogwarts": {"_count": 2, "is": {"_count": 2}}, "her": {"_count": 4, "anxiety": {"_count": 1}, "quarry": {"_count": 1}, "face": {"_count": 1}, "final": {"_count": 1}}, "Harrys": {"_count": 5, "thoughts": {"_count": 1}, "already": {"_count": 1}, "anger": {"_count": 1}, "eyes": {"_count": 1}, "imagination": {"_count": 1}}, "most": {"_count": 2, "of": {"_count": 1}, "wizards": {"_count": 1}}, "an": {"_count": 2, "odd": {"_count": 1}, "hour": {"_count": 1}}, "Dumbledores": {"_count": 2, "always": {"_count": 1}, "not": {"_count": 1}}, "ze": {"_count": 1, "orses": {"_count": 1}}, "evidently": {"_count": 1, "zair": {"_count": 1}}, "Karkaroff": {"_count": 1, "it": {"_count": 1}}, "Madame": {"_count": 2, "Maxime": {"_count": 2}}, "someone": {"_count": 1, "else": {"_count": 1}}, "Angelina": {"_count": 1, "had": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "whoever": {"_count": 2, "put": {"_count": 1}, "it": {"_count": 1}}, "theyre": {"_count": 7, "not": {"_count": 1}, "legally": {"_count": 1}, "like": {"_count": 1}, "really": {"_count": 1}, "all": {"_count": 1}, "probably": {"_count": 1}, "real": {"_count": 1}}, "Winky": {"_count": 5, "cried": {"_count": 1}, "come": {"_count": 1}, "is": {"_count": 1}, "shook": {"_count": 1}, "didnt": {"_count": 1}}, "now": {"_count": 12, "that": {"_count": 1}, "a": {"_count": 1}, "MadEyes": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 2}, "your": {"_count": 1}, "all": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "ve": {"_count": 1, "have": {"_count": 1}}, "honestly": {"_count": 1, "all": {"_count": 1}}, "would": {"_count": 2, "you": {"_count": 1}, "Lord": {"_count": 1}}, "some": {"_count": 3, "don": {"_count": 1}, "are": {"_count": 1}, "part": {"_count": 1}}, "past": {"_count": 1, "an": {"_count": 1}}, "Peeves": {"_count": 2, "couldnt": {"_count": 2}}, "me": {"_count": 1, "I": {"_count": 1}}, "unless": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "Crouch": {"_count": 2, "didnt": {"_count": 1}, "took": {"_count": 1}}, "Krum": {"_count": 1, "glowered": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "Travers": {"_count": 1, "and": {"_count": 1}}, "Cedric": {"_count": 1, "didnt": {"_count": 1}}, "Wormtail": {"_count": 3, "who": {"_count": 1}, "displaying": {"_count": 1}, "neglected": {"_count": 1}}, "already": {"_count": 1, "yet": {"_count": 1}}, "Moody": {"_count": 2, "wasnt": {"_count": 1}, "could": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "said": {"_count": 12, "Harry": {"_count": 5}, "Hermione": {"_count": 3}, "Ron": {"_count": 2}, "the": {"_count": 2}}, "through": {"_count": 2, "a": {"_count": 1}, "all": {"_count": 1}}, "youll": {"_count": 2, "always": {"_count": 1}, "get": {"_count": 1}}, "The": {"_count": 1, "revelation": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "oh": {"_count": 1, "my": {"_count": 1}}, "Petunia": {"_count": 2, "dear": {"_count": 1}, "was": {"_count": 1}}, "Hedwig": {"_count": 1, "didnt": {"_count": 1}}, "wheres": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "Molly": {"_count": 1, "thinks": {"_count": 1}}, "theres": {"_count": 3, "no": {"_count": 2}, "nothing": {"_count": 1}}, "dementors": {"_count": 1, "wandering": {"_count": 1}}, "naturally": {"_count": 1, "you": {"_count": 1}}, "wait": {"_count": 1, "a": {"_count": 1}}, "apparently": {"_count": 1, "he": {"_count": 1}}, "Peevesy": {"_count": 1, "knows": {"_count": 1}}, "She": {"_count": 1, "is": {"_count": 1}}, "fairy": {"_count": 1, "eggs": {"_count": 1}}, "last": {"_count": 2, "year": {"_count": 1}, "term": {"_count": 1}}, "too": {"_count": 2, "soon": {"_count": 1}, "late": {"_count": 1}}, "Ernie": {"_count": 1, "was": {"_count": 1}}, "twentynil": {"_count": 1, "was": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "theyve": {"_count": 2, "bin": {"_count": 1}, "used": {"_count": 1}}, "thas": {"_count": 1, "not": {"_count": 1}}, "Kreacher": {"_count": 3, "did": {"_count": 1}, "should": {"_count": 1}, "shook": {"_count": 1}}, "You": {"_count": 3, "KnowWho": {"_count": 1}, "gave": {"_count": 1}, "swore": {"_count": 1}}, "Cho": {"_count": 1, "did": {"_count": 1}}, "Rookwoods": {"_count": 1, "going": {"_count": 1}}, "Well": {"_count": 1, "I": {"_count": 1}}, "close": {"_count": 1, "the": {"_count": 1}}, "Marietta": {"_count": 2, "gave": {"_count": 1}, "would": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "whether": {"_count": 1, "James": {"_count": 1}}, "did": {"_count": 3, "he": {"_count": 1}, "you": {"_count": 2}}, "Itll": {"_count": 1, "be": {"_count": 1}}, "Grawp": {"_count": 1, "merely": {"_count": 1}}, "poor": {"_count": 1, "Professor": {"_count": 1}}, "somebody": {"_count": 3, "screamed": {"_count": 1}, "else": {"_count": 1}, "betrayed": {"_count": 1}}, "Master": {"_count": 2, "he": {"_count": 1}, "Regulus": {"_count": 1}}, "words": {"_count": 1, "were": {"_count": 1}}, "old": {"_count": 2, "men": {"_count": 1}, "Dodgy": {"_count": 1}}, "very": {"_count": 1, "few": {"_count": 1}}, "Narcissa": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "If": {"_count": 1, "he": {"_count": 1}}, "while": {"_count": 3, "I": {"_count": 2}, "Ive": {"_count": 1}}, "Bills": {"_count": 1, "not": {"_count": 1}}, "wands": {"_count": 1, "whatll": {"_count": 1}}, "Ollivander": {"_count": 1, "was": {"_count": 1}}, "Knockturn": {"_count": 1, "Alley": {"_count": 1}}, "havent": {"_count": 1, "we": {"_count": 1}}, "whatre": {"_count": 1, "you": {"_count": 1}}, "taken": {"_count": 1, "sparingly": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 1}, "your": {"_count": 1}}, "trials": {"_count": 1, "might": {"_count": 1}}, "thanks": {"_count": 1, "fer": {"_count": 1}}, "wasnt": {"_count": 1, "that": {"_count": 1}}, "anything": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "what": {"_count": 1}}, "since": {"_count": 1, "when": {"_count": 1}}, "obviously": {"_count": 1, "if": {"_count": 1}}, "unbidden": {"_count": 1, "into": {"_count": 1}}, "seriously": {"_count": 1, "his": {"_count": 1}}, "almost": {"_count": 1, "before": {"_count": 1}}, "meanwhile": {"_count": 1, "said": {"_count": 1}}, "Greyback": {"_count": 1, "is": {"_count": 1}}, "lets": {"_count": 3, "wait": {"_count": 1}, "get": {"_count": 1}, "not": {"_count": 1}}, "Tonks": {"_count": 2, "has": {"_count": 1}, "had": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "Slughorn": {"_count": 2, "seemed": {"_count": 1}, "had": {"_count": 1}}, "never": {"_count": 3, "mind": {"_count": 2}, "never": {"_count": 1}}, "has": {"_count": 1, "either": {"_count": 1}}, "Potter": {"_count": 1, "seems": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "acromantula": {"_count": 1, "venom": {"_count": 1}}, "firstly": {"_count": 1, "no": {"_count": 1}}, "spluttered": {"_count": 1, "Harry": {"_count": 1}}, "It": {"_count": 1, "is": {"_count": 1}}, "once": {"_count": 2, "again": {"_count": 1}, "youre": {"_count": 1}}, "Your": {"_count": 1, "word": {"_count": 1}}, "though": {"_count": 1, "gashes": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "suddenly": {"_count": 1, "footsteps": {"_count": 1}}, "Fawkess": {"_count": 1, "perch": {"_count": 1}}, "Theres": {"_count": 1, "one": {"_count": 1}}, "mate": {"_count": 1, "youre": {"_count": 1}}, "Thicknesse": {"_count": 1, "is": {"_count": 1}}, "Hestia": {"_count": 1, "Jones": {"_count": 1}}, "Mundungus": {"_count": 1, "cant": {"_count": 1}}, "Shut": {"_count": 1, "up": {"_count": 1}}, "hopefully": {"_count": 1, "itll": {"_count": 1}}, "please": {"_count": 1, "dont": {"_count": 1}}, "youd": {"_count": 2, "think": {"_count": 1}, "have": {"_count": 1}}, "here": {"_count": 2, "Harrys": {"_count": 1}, "is": {"_count": 1}}, "by": {"_count": 1, "suggesting": {"_count": 1}}, "let": {"_count": 3, "him": {"_count": 1}, "me": {"_count": 2}}, "according": {"_count": 2, "to": {"_count": 2}}, "wouldnt": {"_count": 1, "it": {"_count": 1}}, "well": {"_count": 3, "take": {"_count": 1}, "see": {"_count": 1}, "get": {"_count": 1}}, "Xeno": {"_count": 1, "says": {"_count": 1}}, "Aberforth": {"_count": 1, "always": {"_count": 1}}, "instinct": {"_count": 1, "overwhelming": {"_count": 1}}, "Death": {"_count": 1, "was": {"_count": 1}}, "Ah": {"_count": 1, "but": {"_count": 1}}, "mending": {"_count": 1, "": {"_count": 1}}, "hell": {"_count": 1, "know": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "arguing": {"_count": 1, "with": {"_count": 1}}, "within": {"_count": 1, "seconds": {"_count": 1}}, "Mulcibers": {"_count": 1, "and": {"_count": 1}}}, "edge": {"_count": 151, "of": {"_count": 121, "town": {"_count": 1}, "the": {"_count": 94}, "a": {"_count": 6}, "her": {"_count": 2}, "his": {"_count": 8}, "revealing": {"_count": 1}, "Snape": {"_count": 1}, "it": {"_count": 1}, "panic": {"_count": 1}, "Achievements": {"_count": 1}, "their": {"_count": 1}, "Ogdens": {"_count": 1}, "speech": {"_count": 1}, "an": {"_count": 1}, "dazzling": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "to": {"_count": 6, "the": {"_count": 1}, "her": {"_count": 3}, "his": {"_count": 2}}, "were": {"_count": 1, "things": {"_count": 1}}, "and": {"_count": 6, "scuttled": {"_count": 1}, "tiny": {"_count": 1}, "he": {"_count": 1}, "angled": {"_count": 1}, "placed": {"_count": 1}, "began": {"_count": 1}}, "forward": {"_count": 1, "toward": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}, "runes": {"_count": 1, "and": {"_count": 1}}, "tense": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "off": {"_count": 1, "Harry": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "she": {"_count": 1, "gave": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "agreed": {"_count": 1, "Lupin": {"_count": 1}}}, "driven": {"_count": 19, "out": {"_count": 4, "of": {"_count": 3}, "by": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "mad": {"_count": 2, "not": {"_count": 1}, "with": {"_count": 1}}, "carts": {"_count": 1, "that": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "clean": {"_count": 1}}, "the": {"_count": 1, "dementors": {"_count": 1}}, "to": {"_count": 1, "in": {"_count": 1}}, "everything": {"_count": 2, "before": {"_count": 1}, "else": {"_count": 1}}, "into": {"_count": 1, "hiding": {"_count": 1}}, "deep": {"_count": 1, "into": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "every": {"_count": 1, "other": {"_count": 1}}, "through": {"_count": 1, "Harrys": {"_count": 1}}}, "by": {"_count": 2116, "something": {"_count": 6, "else": {"_count": 1}, "so": {"_count": 1}, "being": {"_count": 1}, "like": {"_count": 1}, "very": {"_count": 1}, "on": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 19}, "?": {"_count": 1}}, "a": {"_count": 186, "complete": {"_count": 1}, "long": {"_count": 3}, "bearded": {"_count": 1}, "small": {"_count": 2}, "ghost": {"_count": 1}, "broomstick": {"_count": 1}, "Bludger": {"_count": 5}, "second": {"_count": 2}, "loud": {"_count": 3}, "wizard": {"_count": 1}, "goblin": {"_count": 1}, "large": {"_count": 3}, "plump": {"_count": 1}, "few": {"_count": 2}, "vicious": {"_count": 1}, "curlyhaired": {"_count": 1}, "werewolf": {"_count": 3}, "considerable": {"_count": 1}, "sudden": {"_count": 7}, "highpitched": {"_count": 1}, "single": {"_count": 4}, "knot": {"_count": 2}, "headless": {"_count": 1}, "number": {"_count": 2}, "bodiless": {"_count": 1}, "woolly": {"_count": 1}, "strong": {"_count": 1}, "stretch": {"_count": 1}, "teacher": {"_count": 2}, "very": {"_count": 2}, "matted": {"_count": 1}, "faintly": {"_count": 1}, "thirteenyearold": {"_count": 1}, "furtive": {"_count": 1}, "nasty": {"_count": 1}, "disturbance": {"_count": 1}, "fox": {"_count": 3}, "knock": {"_count": 1}, "hundred": {"_count": 2}, "hippogriff": {"_count": 3}, "vast": {"_count": 1}, "tide": {"_count": 1}, "gamekeeper": {"_count": 1}, "powerful": {"_count": 1}, "strange": {"_count": 1}, "faint": {"_count": 1}, "venomous": {"_count": 1}, "man": {"_count": 2}, "stray": {"_count": 1}, "swarm": {"_count": 1}, "halfoctave": {"_count": 1}, "horde": {"_count": 1}, "blinding": {"_count": 1}, "gaggle": {"_count": 2}, "voice": {"_count": 1}, "giant": {"_count": 3}, "fork": {"_count": 1}, "rampaging": {"_count": 1}, "soft": {"_count": 1}, "group": {"_count": 2}, "dozen": {"_count": 2}, "quantity": {"_count": 1}, "girl": {"_count": 1}, "dark": {"_count": 2}, "pretty": {"_count": 1}, "boy": {"_count": 1}, "Summoning": {"_count": 1}, "splendid": {"_count": 1}, "skrewt": {"_count": 1}, "servant": {"_count": 1}, "lucky": {"_count": 1}, "mother": {"_count": 1}, "series": {"_count": 3}, "horrible": {"_count": 2}, "tea": {"_count": 1}, "double": {"_count": 1}, "little": {"_count": 1}, "rather": {"_count": 1}, "turnip": {"_count": 1}, "combination": {"_count": 1}, "common": {"_count": 1}, "gang": {"_count": 1}, "lesson": {"_count": 1}, "scalpel": {"_count": 1}, "tall": {"_count": 2}, "snake": {"_count": 1}, "gigantic": {"_count": 1}, "witch": {"_count": 1}, "mackintosh": {"_count": 1}, "pottedplant": {"_count": 1}, "particularly": {"_count": 1}, "known": {"_count": 1}, "competent": {"_count": 1}, "bunch": {"_count": 1}, "look": {"_count": 2}, "spell": {"_count": 1}, "magical": {"_count": 1}, "security": {"_count": 1}, "glow": {"_count": 1}, "candlefilled": {"_count": 1}, "simple": {"_count": 1}, "Death": {"_count": 1}, "battalion": {"_count": 1}, "wide": {"_count": 1}, "gold": {"_count": 1}, "third": {"_count": 1}, "young": {"_count": 1}, "scruffy": {"_count": 1}, "savage": {"_count": 1}, "lightning": {"_count": 1}, "mob": {"_count": 1}, "ray": {"_count": 1}, "Dark": {"_count": 2}, "margin": {"_count": 1}, "fraction": {"_count": 1}, "curse": {"_count": 1}, "Killing": {"_count": 2}, "nudge": {"_count": 1}, "high": {"_count": 1}, "gilded": {"_count": 1}, "fat": {"_count": 1}, "motheaten": {"_count": 1}, "shrill": {"_count": 1}, "jet": {"_count": 1}, "green": {"_count": 1}, "knife": {"_count": 1}, "longfingered": {"_count": 1}, "desire": {"_count": 1}, "windblown": {"_count": 1}, "hooded": {"_count": 1}, "veil": {"_count": 1}, "brutal": {"_count": 1}, "scream": {"_count": 1}, "jinx": {"_count": 1}, "sprinting": {"_count": 1}, "monumental": {"_count": 1}, "gust": {"_count": 1}, "millimeter": {"_count": 1}, "freshening": {"_count": 1}}, "daylight": {"_count": 3, "": {"_count": 2}, "we": {"_count": 1}}, "the": {"_count": 577, "silver": {"_count": 1}, "way": {"_count": 14}, "time": {"_count": 45}, "scruffs": {"_count": 1}, "fact": {"_count": 13}, "Smelting": {"_count": 1}, "low": {"_count": 1}, "scruff": {"_count": 4}, "minute": {"_count": 1}, "shore": {"_count": 1}, "ankles": {"_count": 2}, "name": {"_count": 8}, "arrival": {"_count": 5}, "next": {"_count": 1}, "end": {"_count": 10}, "door": {"_count": 10}, "other": {"_count": 4}, "Slytherins": {"_count": 2}, "Gryffindor": {"_count": 1}, "fire": {"_count": 17}, "hour": {"_count": 1}, "fifty": {"_count": 1}, "wall": {"_count": 2}, "Warlocks": {"_count": 1}, "crate": {"_count": 1}, "ear": {"_count": 2}, "odd": {"_count": 1}, "arm": {"_count": 9}, "ticket": {"_count": 1}, "chink": {"_count": 1}, "thunder": {"_count": 1}, "ankle": {"_count": 5}, "sight": {"_count": 4}, "car": {"_count": 1}, "Whomping": {"_count": 3}, "feet": {"_count": 1}, "cry": {"_count": 1}, "hand": {"_count": 3}, "ears": {"_count": 2}, "arms": {"_count": 3}, "light": {"_count": 11}, "caretaker": {"_count": 2}, "mysterious": {"_count": 1}, "flaming": {"_count": 2}, "desk": {"_count": 1}, "four": {"_count": 1}, "fanciful": {"_count": 1}, "most": {"_count": 2}, "\u2018horror": {"_count": 1}, "stubs": {"_count": 1}, "searing": {"_count": 1}, "high": {"_count": 1}, "sound": {"_count": 10}, "governors": {"_count": 1}, "crowd": {"_count": 4}, "monster": {"_count": 2}, "wand": {"_count": 1}, "mere": {"_count": 1}, "phoenix": {"_count": 1}, "Dark": {"_count": 4}, "mantelpiece": {"_count": 1}, "distant": {"_count": 1}, "tail": {"_count": 3}, "speed": {"_count": 1}, "perfect": {"_count": 1}, "twins": {"_count": 1}, "shivering": {"_count": 1}, "nurse": {"_count": 1}, "fireside": {"_count": 1}, "Hogwarts": {"_count": 1}, "students": {"_count": 1}, "rain": {"_count": 1}, "Knight": {"_count": 1}, "news": {"_count": 2}, "presence": {"_count": 2}, "Weasley": {"_count": 1}, "cheering": {"_count": 1}, "smallest": {"_count": 1}, "nights": {"_count": 1}, "uneasy": {"_count": 1}, "Shrieking": {"_count": 1}, "merest": {"_count": 1}, "milky": {"_count": 1}, "gigantic": {"_count": 1}, "headmaster": {"_count": 1}, "greenhouses": {"_count": 1}, "Committees": {"_count": 1}, "tree": {"_count": 2}, "unconscious": {"_count": 1}, "flickering": {"_count": 1}, "cold": {"_count": 1}, "large": {"_count": 2}, "Smeltings": {"_count": 1}, "postman": {"_count": 1}, "dustpan": {"_count": 1}, "wood": {"_count": 1}, "information": {"_count": 1}, "Registry": {"_count": 1}, "law": {"_count": 1}, "Bulgarians": {"_count": 1}, "sudden": {"_count": 4}, "trouble": {"_count": 1}, "dim": {"_count": 2}, "feeble": {"_count": 1}, "silent": {"_count": 1}, "sparks": {"_count": 1}, "Weasleys": {"_count": 1}, "majority": {"_count": 1}, "following": {"_count": 2}, "many": {"_count": 1}, "planetary": {"_count": 1}, "antics": {"_count": 1}, "Imperius": {"_count": 2}, "moonlight": {"_count": 2}, "feeling": {"_count": 1}, "largest": {"_count": 1}, "look": {"_count": 7}, "Goblet": {"_count": 1}, "pumpkin": {"_count": 1}, "constantly": {"_count": 1}, "flames": {"_count": 2}, "Creevey": {"_count": 1}, "quill": {"_count": 1}, "window": {"_count": 3}, "hearth": {"_count": 1}, "back": {"_count": 4}, "looks": {"_count": 9}, "Durmstrang": {"_count": 1}, "Ravenclaw": {"_count": 1}, "Dursleys": {"_count": 1}, "Department": {"_count": 5}, "apple": {"_count": 1}, "massive": {"_count": 1}, "narrow": {"_count": 1}, "lake": {"_count": 5}, "article": {"_count": 1}, "cluster": {"_count": 1}, "extraordinary": {"_count": 1}, "dry": {"_count": 1}, "dementors": {"_count": 5}, "curse": {"_count": 1}, "attack": {"_count": 1}, "womans": {"_count": 1}, "rats": {"_count": 1}, "Cruciatus": {"_count": 1}, "handle": {"_count": 2}, "spider": {"_count": 1}, "love": {"_count": 1}, "ugly": {"_count": 1}, "blaze": {"_count": 1}, "Muggles": {"_count": 1}, "alarm": {"_count": 1}, "clanking": {"_count": 1}, "darkness": {"_count": 3}, "rippling": {"_count": 1}, "Ministry": {"_count": 10}, "former": {"_count": 1}, "shoulders": {"_count": 4}, "unprecedented": {"_count": 1}, "band": {"_count": 1}, "flapping": {"_count": 1}, "mournful": {"_count": 1}, "cacophony": {"_count": 1}, "shoulder": {"_count": 4}, "full": {"_count": 2}, "Death": {"_count": 6}, "Forbidden": {"_count": 2}, "forest": {"_count": 2}, "argument": {"_count": 1}, "lamps": {"_count": 1}, "fireplace": {"_count": 1}, "injustice": {"_count": 1}, "Fat": {"_count": 1}, "sleepy": {"_count": 1}, "usual": {"_count": 1}, "day": {"_count": 2}, "incoming": {"_count": 1}, "High": {"_count": 1}, "voice": {"_count": 1}, "Mundane": {"_count": 1}, "cheers": {"_count": 1}, "goalposts": {"_count": 1}, "force": {"_count": 1}, "three": {"_count": 1}, "steak": {"_count": 1}, "giants": {"_count": 1}, "others": {"_count": 1}, "neck": {"_count": 2}, "smell": {"_count": 1}, "right": {"_count": 1}, "elbows": {"_count": 1}, "solitary": {"_count": 1}, "elf": {"_count": 1}, "Healer": {"_count": 1}, "convalescent": {"_count": 1}, "terms": {"_count": 1}, "lips": {"_count": 1}, "candles": {"_count": 1}, "candlelight": {"_count": 1}, "limitations": {"_count": 1}, "burning": {"_count": 1}, "observation": {"_count": 1}, "waters": {"_count": 1}, "second": {"_count": 1}, "furious": {"_count": 1}, "sounds": {"_count": 1}, "roots": {"_count": 2}, "bottle": {"_count": 1}, "muffled": {"_count": 1}, "tiny": {"_count": 1}, "common": {"_count": 1}, "Wizarding": {"_count": 2}, "swiveling": {"_count": 1}, "cloak": {"_count": 1}, "hair": {"_count": 3}, "side": {"_count": 1}, "proceedings": {"_count": 1}, "throat": {"_count": 2}, "Wizengamot": {"_count": 4}, "beautiful": {"_count": 1}, "appearance": {"_count": 3}, "occasional": {"_count": 1}, "enchantments": {"_count": 1}, "giant": {"_count": 1}, "opposition": {"_count": 1}, "portrait": {"_count": 1}, "new": {"_count": 2}, "memory": {"_count": 1}, "persistent": {"_count": 1}, "familiar": {"_count": 1}, "movements": {"_count": 1}, "cabinet": {"_count": 1}, "enthusiasm": {"_count": 1}, "wildness": {"_count": 1}, "windows": {"_count": 1}, "textbook": {"_count": 1}, "elbow": {"_count": 2}, "crossingsout": {"_count": 1}, "fierce": {"_count": 1}, "noisiest": {"_count": 1}, "choice": {"_count": 1}, "front": {"_count": 1}, "very": {"_count": 1}, "lamp": {"_count": 1}, "behavior": {"_count": 1}, "heavy": {"_count": 1}, "music": {"_count": 1}, "Charms": {"_count": 1}, "abrupt": {"_count": 1}, "goal": {"_count": 1}, "incurably": {"_count": 1}, "ministrations": {"_count": 1}, "little": {"_count": 1}, "partners": {"_count": 1}, "prophecy": {"_count": 2}, "jealous": {"_count": 1}, "setting": {"_count": 1}, "aftereffects": {"_count": 1}, "ferocity": {"_count": 1}, "surge": {"_count": 1}, "impetus": {"_count": 1}, "red": {"_count": 1}, "upper": {"_count": 1}, "lamplight": {"_count": 1}, "Killing": {"_count": 1}, "opening": {"_count": 1}, "maker": {"_count": 1}, "bridegrooms": {"_count": 1}, "Gernumblies": {"_count": 1}, "bride": {"_count": 1}, "pain": {"_count": 1}, "use": {"_count": 1}, "newly": {"_count": 1}, "unknown": {"_count": 1}, "moment": {"_count": 1}, "strength": {"_count": 1}, "bushes": {"_count": 1}, "bright": {"_count": 1}, "stillness": {"_count": 1}, "calamity": {"_count": 1}, "pleas": {"_count": 1}, "weight": {"_count": 2}, "mother": {"_count": 1}, "girl": {"_count": 1}, "destruction": {"_count": 1}, "change": {"_count": 1}, "Snatchers": {"_count": 1}, "ropes": {"_count": 1}, "triple": {"_count": 1}, "sea": {"_count": 1}, "amount": {"_count": 1}, "wind": {"_count": 1}, "suddenly": {"_count": 1}, "one": {"_count": 1}, "simple": {"_count": 1}, "crashing": {"_count": 1}, "combined": {"_count": 1}, "flashes": {"_count": 1}, "continued": {"_count": 1}, "stuttering": {"_count": 1}, "rosy": {"_count": 1}, "firelight": {"_count": 1}, "kids": {"_count": 1}, "inferno": {"_count": 1}, "devouring": {"_count": 1}, "river": {"_count": 1}, "trees": {"_count": 1}, "whimpering": {"_count": 1}, "fall": {"_count": 1}, "lightening": {"_count": 1}, "retreating": {"_count": 1}, "oncoming": {"_count": 1}, "faintest": {"_count": 1}, "finest": {"_count": 1}, "lack": {"_count": 1}}, "his": {"_count": 69, "name": {"_count": 3}, "proper": {"_count": 1}, "cousin": {"_count": 1}, "mother": {"_count": 1}, "stunned": {"_count": 1}, "tail": {"_count": 1}, "sweater": {"_count": 1}, "brothers": {"_count": 1}, "old": {"_count": 1}, "fingertips": {"_count": 1}, "dead": {"_count": 1}, "large": {"_count": 1}, "friends": {"_count": 1}, "fall": {"_count": 1}, "very": {"_count": 2}, "cronies": {"_count": 1}, "cloak": {"_count": 1}, "cauldron": {"_count": 1}, "followers": {"_count": 1}, "own": {"_count": 5}, "dustbins": {"_count": 1}, "formidable": {"_count": 1}, "skrewts": {"_count": 1}, "side": {"_count": 3}, "good": {"_count": 1}, "cabin": {"_count": 1}, "grandmother": {"_count": 1}, "tenmonth": {"_count": 1}, "faithful": {"_count": 1}, "encounter": {"_count": 1}, "absence": {"_count": 1}, "usual": {"_count": 1}, "attitude": {"_count": 2}, "eight": {"_count": 1}, "promise": {"_count": 1}, "fellow": {"_count": 1}, "stone": {"_count": 1}, "actions": {"_count": 1}, "Ministry": {"_count": 1}, "tone": {"_count": 1}, "failure": {"_count": 1}, "hoop": {"_count": 1}, "withered": {"_count": 1}, "air": {"_count": 1}, "weakened": {"_count": 1}, "collapse": {"_count": 1}, "haughtylooking": {"_count": 1}, "or": {"_count": 1}, "feet": {"_count": 1}, "friend": {"_count": 1}, "mane": {"_count": 1}, "poor": {"_count": 1}, "status": {"_count": 1}, "lit": {"_count": 1}, "paper": {"_count": 1}, "expression": {"_count": 1}, "dad": {"_count": 1}, "ankle": {"_count": 1}, "wand": {"_count": 1}}, "Mrs": {"_count": 11, "Dursleys": {"_count": 1}, "Weasley": {"_count": 6}, "Norriss": {"_count": 1}, "Weasleys": {"_count": 2}, "Figg": {"_count": 1}}, "way": {"_count": 1, "of": {"_count": 1}}, "lunchtime": {"_count": 2, "wouldnt": {"_count": 1}, "": {"_count": 1}}, "surprise": {"_count": 5, "Harry": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "stared": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 3}}, "mistake": {"_count": 7, "said": {"_count": 1}, "": {"_count": 4}, "Well": {"_count": 1}, "I": {"_count": 1}}, "no": {"_count": 6, "later": {"_count": 1}, "means": {"_count": 4}, "hand": {"_count": 1}}, "then": {"_count": 4, "": {"_count": 3}, "how": {"_count": 1}}, "Dudley": {"_count": 1, "and": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Dudleys": {"_count": 1, "gang": {"_count": 1}}, "goblins": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "I": {"_count": 1}, "sitting": {"_count": 1}}, "Miranda": {"_count": 4, "Goshawk": {"_count": 4}}, "Bathilda": {"_count": 4, "Bagshot": {"_count": 4}}, "Adalbert": {"_count": 1, "Waffling": {"_count": 1}}, "Emeric": {"_count": 1, "Switch": {"_count": 1}}, "Phyllida": {"_count": 1, "Spore": {"_count": 1}}, "Arsenius": {"_count": 1, "Jigger": {"_count": 1}}, "Newt": {"_count": 1, "Scamander": {"_count": 1}}, "Quentin": {"_count": 1, "Trimble": {"_count": 1}}, "didnt": {"_count": 1, "glance": {"_count": 1}}, "Professor": {"_count": 17, "Vindictus": {"_count": 1}, "Quirrell": {"_count": 1}, "McGonagall": {"_count": 7}, "Sprouts": {"_count": 1}, "Flitwick": {"_count": 1}, "Sprout": {"_count": 2}, "Dumbledore": {"_count": 1}, "GrubblyPlank": {"_count": 1}, "Umbridge": {"_count": 1}, "Trelawney": {"_count": 1}}, "Mr": {"_count": 12, "Ollivander": {"_count": 1}, "Filch": {"_count": 3}, "Weasley": {"_count": 3}, "Wormtail": {"_count": 1}, "Malfoy": {"_count": 1}, "Crouch": {"_count": 2}, "Weasleys": {"_count": 1}}, "many": {"_count": 5, "the": {"_count": 1}, "of": {"_count": 1}, "ancient": {"_count": 1}, "powerful": {"_count": 1}, "to": {"_count": 1}}, "heart": {"_count": 9, "of": {"_count": 1}, "either": {"_count": 1}, "out": {"_count": 1}, "Fred": {"_count": 1}, "memorize": {"_count": 1}, "said": {"_count": 1}, "we": {"_count": 1}, "when": {"_count": 1}, "Harry": {"_count": 1}}, "far": {"_count": 13, "the": {"_count": 2}, "at": {"_count": 1}, "than": {"_count": 5}, "had": {"_count": 1}, "": {"_count": 4}}, "Neville": {"_count": 5, "and": {"_count": 4}, "who": {"_count": 1}}, "one": {"_count": 39, "the": {"_count": 6}, "hundred": {"_count": 2}, "into": {"_count": 1}, "back": {"_count": 1}, "of": {"_count": 3}, "": {"_count": 4}, "wizards": {"_count": 1}, "they": {"_count": 4}, "and": {"_count": 1}, "to": {"_count": 2}, "his": {"_count": 2}, "oclock": {"_count": 1}, "as": {"_count": 2}, "yelling": {"_count": 1}, "stepped": {"_count": 1}, "managed": {"_count": 1}, "until": {"_count": 1}, "handle": {"_count": 1}, "Snape": {"_count": 1}, "figures": {"_count": 1}, "out": {"_count": 1}, "other": {"_count": 1}}, "thousands": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 2}}, "now": {"_count": 46, "": {"_count": 18}, "but": {"_count": 4}, "what": {"_count": 1}, "just": {"_count": 1}, "not": {"_count": 1}, "we": {"_count": 1}, "Malfoy": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 1}, "Maxime": {"_count": 1}, "Wormtail": {"_count": 1}, "that": {"_count": 1}, "too": {"_count": 1}, "no": {"_count": 1}, "attracted": {"_count": 1}, "Professor": {"_count": 1}, "had": {"_count": 1}, "hes": {"_count": 1}, "Potter": {"_count": 1}, "though": {"_count": 1}, "have": {"_count": 1}, "so": {"_count": 1}, "is": {"_count": 1}, "and": {"_count": 2}, "they": {"_count": 1}}, "an": {"_count": 28, "African": {"_count": 1}, "excellent": {"_count": 1}, "Encyclopedia": {"_count": 1}, "orchestra": {"_count": 1}, "interested": {"_count": 1}, "invisible": {"_count": 3}, "inch": {"_count": 2}, "unlucky": {"_count": 1}, "impartial": {"_count": 1}, "Aging": {"_count": 1}, "empty": {"_count": 1}, "even": {"_count": 1}, "Auror": {"_count": 1}, "watch": {"_count": 1}, "innocent": {"_count": 1}, "eerie": {"_count": 1}, "AntiDisapparation": {"_count": 1}, "ancient": {"_count": 1}, "odd": {"_count": 2}, "ornate": {"_count": 1}, "irate": {"_count": 1}, "almost": {"_count": 1}, "expression": {"_count": 1}, "old": {"_count": 1}}, "taking": {"_count": 4, "the": {"_count": 1}, "an": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "leaning": {"_count": 1, "forward": {"_count": 1}}, "Slytherin": {"_count": 1, "I": {"_count": 1}}, "Crabbe": {"_count": 6, "and": {"_count": 5}, "or": {"_count": 1}}, "Filch": {"_count": 5, "or": {"_count": 1}, "s": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}, "occasionally": {"_count": 1}}, "six": {"_count": 3, "large": {"_count": 1}, "oclock": {"_count": 1}, "people": {"_count": 1}}, "twig": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 3, "with": {"_count": 1}, "s": {"_count": 1}, "": {"_count": 1}}, "asking": {"_count": 3, "her": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "Angelina": {"_count": 1, "Johnson": {"_count": 1}}, "Gryffindor": {"_count": 3, "Keeper": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 1}}, "Fred": {"_count": 9, "or": {"_count": 1}, "and": {"_count": 6}, "Weasley": {"_count": 1}, "George": {"_count": 1}}, "Spinnet": {"_count": 1, "who": {"_count": 1}}, "Hagrid": {"_count": 4, "before": {"_count": 1}, "who": {"_count": 2}, "hit": {"_count": 1}}, "older": {"_count": 1, "students": {"_count": 1}}, "losing": {"_count": 1, "spectacularly": {"_count": 1}}, "what": {"_count": 18, "they": {"_count": 2}, "I": {"_count": 1}, "sounded": {"_count": 3}, "": {"_count": 2}, "she": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 6}, "seemed": {"_count": 1}, "looked": {"_count": 1}}, "inches": {"_count": 9, "the": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 2}, "": {"_count": 3}, "shattering": {"_count": 1}, "Hermione": {"_count": 1}}, "next": {"_count": 3, "Tuesday": {"_count": 1}, "post": {"_count": 1}, "Saturday": {"_count": 1}}, "him": {"_count": 8, "": {"_count": 5}, "so": {"_count": 1}, "beyond": {"_count": 1}, "in": {"_count": 1}}, "your": {"_count": 5, "wrists": {"_count": 1}, "young": {"_count": 1}, "look": {"_count": 1}, "ankle": {"_count": 1}, "ability": {"_count": 1}}, "summat": {"_count": 1, "": {"_count": 1}}, "centaurs": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 8, "there": {"_count": 1}, "it": {"_count": 1}, "large": {"_count": 2}, "borrow": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}, "Hermione": {"_count": 1}}, "it": {"_count": 6, "": {"_count": 4}, "but": {"_count": 1}, "boy": {"_count": 1}}, "that": {"_count": 12, "time": {"_count": 1}, "": {"_count": 1}, "lot": {"_count": 2}, "thread": {"_count": 1}, "as": {"_count": 1}, "I": {"_count": 1}, "old": {"_count": 1}, "Bellatrix": {"_count": 1}, "promise": {"_count": 1}, "ring": {"_count": 1}, "note": {"_count": 1}}, "instinct": {"_count": 1, "reached": {"_count": 1}}, "Ravenclaw": {"_count": 3, "without": {"_count": 1}, "While": {"_count": 1}, "sixth": {"_count": 1}}, "Madam": {"_count": 6, "Pomfreys": {"_count": 1}, "Pomfrey": {"_count": 5}}, "all": {"_count": 9, "bursting": {"_count": 1}, "accounts": {"_count": 2}, "those": {"_count": 2}, "means": {"_count": 2}, "this": {"_count": 1}, "o": {"_count": 1}}, "owl": {"_count": 6, "eating": {"_count": 1}, "": {"_count": 3}, "about": {"_count": 1}, "then": {"_count": 1}}, "magic": {"_count": 12, "and": {"_count": 2}, "which": {"_count": 1}, "": {"_count": 5}, "couldnt": {"_count": 1}, "but": {"_count": 1}, "directly": {"_count": 1}, "the": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "inch": {"_count": 1, "the": {"_count": 1}}, "Friday": {"_count": 1, "": {"_count": 1}}, "Gilderoy": {"_count": 9, "Lockhart": {"_count": 9}}, "trees": {"_count": 1, "that": {"_count": 1}}, "passing": {"_count": 1, "butterflies": {"_count": 1}}, "Floo": {"_count": 5, "powder": {"_count": 5}}, "another": {"_count": 4, "Gringotts": {"_count": 1}, "one": {"_count": 1}, "flock": {"_count": 1}, "person": {"_count": 1}}, "means": {"_count": 1, "of": {"_count": 1}}, "large": {"_count": 3, "pictures": {"_count": 1}, "brightly": {"_count": 1}, "square": {"_count": 1}}, "side": {"_count": 14, "and": {"_count": 2}, "opposite": {"_count": 1}, "at": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 2}, "they": {"_count": 3}, "arms": {"_count": 1}, "onto": {"_count": 1}, "like": {"_count": 1}}, "neat": {"_count": 1, "green": {"_count": 1}}, "everybody": {"_count": 1, "except": {"_count": 1}}, "flying": {"_count": 2, "car": {"_count": 1}, "friends": {"_count": 1}}, "sight": {"_count": 2, "but": {"_count": 1}, "such": {"_count": 1}}, "Hermiones": {"_count": 2, "showing": {"_count": 1}, "jinx": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "shooting": {"_count": 1, "out": {"_count": 1}}, "Oliver": {"_count": 1, "Wood": {"_count": 1}}, "Rons": {"_count": 6, "slug": {"_count": 1}, "rudeness": {"_count": 1}, "watch": {"_count": 1}, "knight": {"_count": 1}, "and": {"_count": 1}, "departure": {"_count": 1}}, "every": {"_count": 1, "student": {"_count": 1}}, "Percy": {"_count": 2, "": {"_count": 1}, "Weasley": {"_count": 1}}, "their": {"_count": 11, "ankles": {"_count": 1}, "behavior": {"_count": 1}, "footsteps": {"_count": 1}, "mascots": {"_count": 1}, "own": {"_count": 1}, "immediate": {"_count": 1}, "fourth": {"_count": 1}, "parents": {"_count": 1}, "surprise": {"_count": 1}, "thick": {"_count": 1}, "worried": {"_count": 1}}, "her": {"_count": 22, "tail": {"_count": 1}, "own": {"_count": 2}, "clawed": {"_count": 1}, "that": {"_count": 2}, "paunchy": {"_count": 1}, "surname": {"_count": 1}, "expression": {"_count": 2}, "plate": {"_count": 1}, "to": {"_count": 1}, "why": {"_count": 1}, "release": {"_count": 1}, "broken": {"_count": 1}, "spectacles": {"_count": 1}, "lank": {"_count": 1}, "father": {"_count": 1}, "jubilant": {"_count": 1}, "death": {"_count": 1}, "tone": {"_count": 1}, "side": {"_count": 1}}, "Malfoys": {"_count": 3, "shout": {"_count": 1}, "foul": {"_count": 1}, "boasts": {"_count": 1}}, "pacing": {"_count": 1, "the": {"_count": 1}}, "such": {"_count": 1, "an": {"_count": 1}}, "common": {"_count": 2, "people": {"_count": 1}, "consent": {"_count": 1}}, "Slytherins": {"_count": 1, "true": {"_count": 1}}, "this": {"_count": 20, "business": {"_count": 1}, "news": {"_count": 1}, "startling": {"_count": 1}, "council": {"_count": 1}, "Yeah": {"_count": 1}, "offer": {"_count": 1}, "Sirius": {"_count": 1}, "unexpected": {"_count": 1}, "thoughtfulness": {"_count": 1}, "that": {"_count": 1}, "austere": {"_count": 1}, "": {"_count": 2}, "piece": {"_count": 1}, "thought": {"_count": 1}, "time": {"_count": 2}, "sudden": {"_count": 1}, "because": {"_count": 1}, "lessthanwarm": {"_count": 1}}, "pointing": {"_count": 2, "out": {"_count": 2}}, "Monday": {"_count": 3, "morning": {"_count": 2}, "": {"_count": 1}}, "none": {"_count": 2, "other": {"_count": 2}}, "thinking": {"_count": 1, "that": {"_count": 1}}, "You": {"_count": 3, "KnowWho": {"_count": 3}}, "Hermione": {"_count": 8, "who": {"_count": 1}, "": {"_count": 2}, "Ron": {"_count": 1}, "without": {"_count": 1}, "Ginny": {"_count": 1}, "months": {"_count": 1}, "s": {"_count": 1}}, "kicking": {"_count": 1, "peoples": {"_count": 1}}, "my": {"_count": 5, "diary": {"_count": 1}, "master": {"_count": 1}, "guard": {"_count": 1}, "brothers": {"_count": 1}, "hand": {"_count": 1}}, "candlelight": {"_count": 2, "": {"_count": 2}}, "anyone": {"_count": 3, "A": {"_count": 1}, "other": {"_count": 1}, "else": {"_count": 1}}, "with": {"_count": 2, "no": {"_count": 1}, "Malfoy": {"_count": 1}}, "Ron": {"_count": 8, "": {"_count": 2}, "and": {"_count": 4}, "throwing": {"_count": 1}, "who": {"_count": 1}}, "teachers": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "looking": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "yourself": {"_count": 5, "": {"_count": 3}, "Ron": {"_count": 1}, "did": {"_count": 1}}, "Muggles": {"_count": 4, "": {"_count": 2}, "even": {"_count": 1}, "Hermione": {"_count": 1}}, "Fawkes": {"_count": 1, "whose": {"_count": 1}}, "Lord": {"_count": 3, "Voldemort": {"_count": 3}}, "night": {"_count": 7, "": {"_count": 3}, "when": {"_count": 1}, "an": {"_count": 1}, "before": {"_count": 1}, "you": {"_count": 1}}, "owlorder": {"_count": 1, "there": {"_count": 1}}, "wizard": {"_count": 2, "law": {"_count": 1}, "said": {"_count": 1}}, "forcing": {"_count": 2, "himself": {"_count": 1}, "the": {"_count": 1}}, "some": {"_count": 5, "members": {"_count": 1}, "miracle": {"_count": 2}, "fellow": {"_count": 1}, "creature": {"_count": 1}}, "Tom": {"_count": 2, "the": {"_count": 1}, "Riddle": {"_count": 1}}, "flashlight": {"_count": 1, "anymore": {"_count": 1}}, "Cassandra": {"_count": 1, "Vablatsky": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "Harry": {"_count": 11, "started": {"_count": 1}, "for": {"_count": 1}, "Potter": {"_count": 1}, "whose": {"_count": 1}, "James": {"_count": 1}, "the": {"_count": 1}, "several": {"_count": 1}, "and": {"_count": 2}, "who": {"_count": 1}, "Lord": {"_count": 1}}, "cages": {"_count": 1, "": {"_count": 1}}, "themselves": {"_count": 2, "theyve": {"_count": 1}, "": {"_count": 1}}, "itself": {"_count": 1, "bumping": {"_count": 1}}, "trying": {"_count": 1, "on": {"_count": 1}}, "our": {"_count": 6, "excellent": {"_count": 1}, "ancestors": {"_count": 1}, "laws": {"_count": 1}, "people": {"_count": 1}, "marriage": {"_count": 1}, "fingers": {"_count": 1}}, "tricks": {"_count": 1, "or": {"_count": 1}}, "chintz": {"_count": 1, "armchairs": {"_count": 1}}, "Harrys": {"_count": 5, "success": {"_count": 1}, "guilty": {"_count": 1}, "low": {"_count": 1}, "relaxed": {"_count": 1}, "left": {"_count": 1}}, "himself": {"_count": 5, "": {"_count": 4}, "so": {"_count": 1}}, "putting": {"_count": 4, "the": {"_count": 2}, "you": {"_count": 1}, "both": {"_count": 1}}, "Malfoy": {"_count": 3, "who": {"_count": 1}, "roared": {"_count": 1}, "Crabbe": {"_count": 1}}, "more": {"_count": 4, "than": {"_count": 4}}, "stealth": {"_count": 4, "": {"_count": 4}}, "forked": {"_count": 1, "lightning": {"_count": 1}}, "at": {"_count": 3, "least": {"_count": 2}, "the": {"_count": 1}}, "Wood": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "nearfatal": {"_count": 1, "accidents": {"_count": 1}}, "doing": {"_count": 2, "spirited": {"_count": 1}, "a": {"_count": 1}}, "dropping": {"_count": 1, "another": {"_count": 1}}, "grief": {"_count": 1, "no": {"_count": 1}}, "twenty": {"_count": 1, "members": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "Azkaban": {"_count": 1, "like": {"_count": 1}}, "Hagrids": {"_count": 1, "usual": {"_count": 1}}, "Christmas": {"_count": 2, "Eve": {"_count": 1}, "": {"_count": 1}}, "Dumbledore": {"_count": 7, "and": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "long": {"_count": 1}, "s": {"_count": 1}, "its": {"_count": 1}, "but": {"_count": 1}}, "Sirius": {"_count": 5, "Black": {"_count": 1}, "": {"_count": 1}, "g": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}}, "people": {"_count": 5, "exclaiming": {"_count": 1}, "": {"_count": 2}, "whose": {"_count": 1}, "when": {"_count": 1}}, "suggesting": {"_count": 2, "that": {"_count": 2}}, "about": {"_count": 3, "a": {"_count": 3}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "eighty": {"_count": 2, "points": {"_count": 2}}, "nipping": {"_count": 1, "him": {"_count": 1}}, "telling": {"_count": 4, "him": {"_count": 2}, "everyone": {"_count": 1}, "them": {"_count": 1}}, "rules": {"_count": 1, "either": {"_count": 1}}, "practicing": {"_count": 1, "relaxing": {"_count": 1}}, "exactly": {"_count": 1, "two": {"_count": 1}}, "being": {"_count": 3, "louder": {"_count": 1}, "able": {"_count": 1}, "vicious": {"_count": 1}}, "Captain": {"_count": 1, "Flint": {"_count": 1}}, "Warrington": {"_count": 1, "Warrington": {"_count": 1}}, "George": {"_count": 3, "Weasley": {"_count": 1}, "hit": {"_count": 1}, "and": {"_count": 1}}, "Johnson": {"_count": 1, "Gryffindor": {"_count": 1}}, "several": {"_count": 1, "feet": {"_count": 1}}, "tears": {"_count": 1, "he": {"_count": 1}}, "fussing": {"_count": 1, "about": {"_count": 1}}, "somebody": {"_count": 3, "else": {"_count": 2}, "from": {"_count": 1}}, "me": {"_count": 4, "": {"_count": 3}, "feet": {"_count": 1}}, "feeding": {"_count": 1, "off": {"_count": 1}}, "refusing": {"_count": 1, "him": {"_count": 1}}, "fighting": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 9, "brightness": {"_count": 1}, "extraordinary": {"_count": 1}, "silvery": {"_count": 1}, "hood": {"_count": 1}, "light": {"_count": 1}, "inhabitant": {"_count": 1}, "distinctive": {"_count": 1}, "rubied": {"_count": 1}, "pointed": {"_count": 1}}, "thunder": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "ourselves": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "beheading": {"_count": 1, "to": {"_count": 1}}, "ivy": {"_count": 1, "took": {"_count": 1}}, "creatures": {"_count": 1, "called": {"_count": 1}}, "Wormtail": {"_count": 1, "Voldemorts": {"_count": 1}}, "owls": {"_count": 1, "as": {"_count": 1}}, "how": {"_count": 3, "big": {"_count": 1}, "tall": {"_count": 1}, "long": {"_count": 1}}, "punctuality": {"_count": 1, "": {"_count": 1}}, "fire": {"_count": 1, "only": {"_count": 1}}, "Tuesday": {"_count": 1, "Percy": {"_count": 1}}, "Luxembourg": {"_count": 1, "": {"_count": 1}}, "Crookshanks": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "using": {"_count": 3, "her": {"_count": 1}, "Bertha": {"_count": 1}, "anothers": {"_count": 1}}, "Amos": {"_count": 1, "Diggory": {"_count": 1}}, "adding": {"_count": 1, "chimneys": {"_count": 1}}, "hand": {"_count": 6, "": {"_count": 1}, "Vanished": {"_count": 1}, "and": {"_count": 1}, "though": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "light": {"_count": 2, "though": {"_count": 1}, "from": {"_count": 1}}, "mediwizards": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "anything": {"_count": 1, "Harry": {"_count": 1}}, "ten": {"_count": 3, "more": {"_count": 1}, "points": {"_count": 1}, "every": {"_count": 1}}, "Moran": {"_count": 1, "and": {"_count": 1}}, "invisible": {"_count": 3, "strings": {"_count": 1}, "ropes": {"_count": 2}}, "name": {"_count": 1, "said": {"_count": 1}}, "any": {"_count": 16, "chance": {"_count": 6}, "of": {"_count": 3}, "invader": {"_count": 1}, "surrounding": {"_count": 1}, "but": {"_count": 1}, "security": {"_count": 1}, "tree": {"_count": 1}, "look": {"_count": 1}, "means": {"_count": 1}}, "loud": {"_count": 2, "whistlings": {"_count": 1}, "and": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "and": {"_count": 1}}, "midday": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "sailing": {"_count": 1, "across": {"_count": 1}}, "day": {"_count": 2, "do": {"_count": 1}, "": {"_count": 1}}, "starving": {"_count": 1, "yourself": {"_count": 1}}, "someone": {"_count": 4, "who": {"_count": 1}, "you": {"_count": 1}, "Apparating": {"_count": 1}, "from": {"_count": 1}}, "Moodys": {"_count": 2, "bizarre": {"_count": 1}, "curse": {"_count": 1}}, "excited": {"_count": 1, "talk": {"_count": 1}}, "wizarding": {"_count": 1, "law": {"_count": 1}}, "decapitation": {"_count": 1, "": {"_count": 1}}, "recruiting": {"_count": 1, "members": {"_count": 1}}, "Peeves": {"_count": 3, "who": {"_count": 3}}, "dementors": {"_count": 7, "down": {"_count": 1}, "and": {"_count": 3}, "this": {"_count": 1}, "": {"_count": 2}}, "Madame": {"_count": 1, "Maximes": {"_count": 1}}, "Lee": {"_count": 1, "who": {"_count": 1}}, "midafternoon": {"_count": 1, "it": {"_count": 1}}, "torches": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "tricking": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "admirers": {"_count": 1, "and": {"_count": 1}}, "Siriuss": {"_count": 1, "warnings": {"_count": 1}}, "charms": {"_count": 1, "": {"_count": 1}}, "tomorrow": {"_count": 4, "afternoon": {"_count": 1}, "morning": {"_count": 1}, "or": {"_count": 2}}, "heaps": {"_count": 2, "of": {"_count": 2}}, "to": {"_count": 2, "control": {"_count": 1}, "take": {"_count": 1}}, "turning": {"_count": 5, "into": {"_count": 1}, "up": {"_count": 2}, "to": {"_count": 1}, "his": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "girls": {"_count": 1, "they": {"_count": 1}}, "Fleur": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "turning": {"_count": 1}}, "bushes": {"_count": 1, "winding": {"_count": 1}}, "Aurors": {"_count": 3, "": {"_count": 1}, "working": {"_count": 1}, "the": {"_count": 1}}, "comparison": {"_count": 3, "": {"_count": 2}, "today": {"_count": 1}}, "chasing": {"_count": 1, "them": {"_count": 1}}, "warring": {"_count": 1, "amongst": {"_count": 1}}, "winged": {"_count": 1, "boars": {"_count": 1}}, "checking": {"_count": 1, "the": {"_count": 1}}, "Rita": {"_count": 4, "Skeeter": {"_count": 4}}, "brown": {"_count": 1, "owl": {"_count": 1}}, "return": {"_count": 3, "owl": {"_count": 2}, "of": {"_count": 1}}, "spear": {"_count": 1, "carrying": {"_count": 1}}, "grindylows": {"_count": 1, "as": {"_count": 1}}, "very": {"_count": 1, "strict": {"_count": 1}}, "nightfall": {"_count": 1, "": {"_count": 1}}, "catching": {"_count": 1, "one": {"_count": 1}}, "saying": {"_count": 5, "hed": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "loudly": {"_count": 1}}, "four": {"_count": 2, "elves": {"_count": 1}, "barn": {"_count": 1}}, "Winky": {"_count": 1, "sirs": {"_count": 1}}, "accident": {"_count": 5, "": {"_count": 3}, "Luna": {"_count": 1}, "and": {"_count": 1}}, "two": {"_count": 6, "dementors": {"_count": 1}, "or": {"_count": 1}, "curtains": {"_count": 1}, "girls": {"_count": 1}, "new": {"_count": 1}, "wizards": {"_count": 1}}, "Albus": {"_count": 4, "Dumbledore": {"_count": 3}, "and": {"_count": 1}}, "Bludgers": {"_count": 1, "for": {"_count": 1}}, "Apollyon": {"_count": 1, "Pringle": {"_count": 1}}, "second": {"_count": 1, "to": {"_count": 1}}, "those": {"_count": 7, "he": {"_count": 1}, "who": {"_count": 1}, "trolls": {"_count": 1}, "dementors": {"_count": 1}, "of": {"_count": 2}, "charming": {"_count": 1}}, "killing": {"_count": 2, "him": {"_count": 2}}, "Death": {"_count": 3, "Eaters": {"_count": 1}, "": {"_count": 2}}, "arms": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "feeling": {"_count": 1}}, "showing": {"_count": 2, "an": {"_count": 2}}, "law": {"_count": 1, "but": {"_count": 1}}, "news": {"_count": 1, "on": {"_count": 1}}, "walking": {"_count": 1, "very": {"_count": 1}}, "total": {"_count": 1, "impenetrable": {"_count": 1}}, "panic": {"_count": 1, "how": {"_count": 1}}, "neighbors": {"_count": 1, "who": {"_count": 1}}, "Muggle": {"_count": 1, "post": {"_count": 1}}, "Sturgis": {"_count": 1, "Podmore": {"_count": 1}}, "dirty": {"_count": 2, "walls": {"_count": 1}, "looks": {"_count": 1}}, "transforming": {"_count": 1, "her": {"_count": 1}}, "Ministry": {"_count": 2, "wizards": {"_count": 1}, "of": {"_count": 1}}, "Tonks": {"_count": 2, "knocking": {"_count": 1}, "and": {"_count": 1}}, "Voldemort": {"_count": 12, "": {"_count": 4}, "in": {"_count": 1}, "because": {"_count": 1}, "just": {"_count": 1}, "whose": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}, "remains": {"_count": 1}, "for": {"_count": 1}}, "marriage": {"_count": 1, "and": {"_count": 1}}, "headquarters": {"_count": 1, "yet": {"_count": 1}}, "Kreacher": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "rescuing": {"_count": 1, "Ron": {"_count": 1}}, "train": {"_count": 1, "and": {"_count": 1}}, "holding": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "coincidence": {"_count": 1, "said": {"_count": 1}}, "suppressed": {"_count": 1, "rage": {"_count": 1}}, "making": {"_count": 3, "headquarters": {"_count": 1}, "a": {"_count": 1}, "one": {"_count": 1}}, "Wilbert": {"_count": 3, "Slinkhard": {"_count": 3}}, "foot": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 7, "time": {"_count": 5}, "it": {"_count": 1}, "most": {"_count": 1}}, "these": {"_count": 3, "horrible": {"_count": 1}, "just": {"_count": 1}, "sudden": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "careful": {"_count": 2, "instruction": {"_count": 1}, "observation": {"_count": 1}}, "Wizardkind": {"_count": 1, "": {"_count": 1}}, "copying": {"_count": 1, "Hermiones": {"_count": 1}}, "herself": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "running": {"_count": 1, "into": {"_count": 1}}, "scarves": {"_count": 1, "and": {"_count": 1}}, "Inigo": {"_count": 1, "Imago": {"_count": 1}}, "Course": {"_count": 1, "aims": {"_count": 1}}, "Hogwarts": {"_count": 1, "standards": {"_count": 1}}, "double": {"_count": 1, "Transfiguration": {"_count": 1}}, "setting": {"_count": 1, "them": {"_count": 1}}, "lecturing": {"_count": 1, "them": {"_count": 1}}, "reputation": {"_count": 1, "and": {"_count": 1}}, "anxious": {"_count": 1, "parents": {"_count": 1}}, "dreams": {"_count": 1, "of": {"_count": 1}}, "Parvati": {"_count": 1, "and": {"_count": 1}}, "us": {"_count": 2, "as": {"_count": 1}, "they": {"_count": 1}}, "Barry": {"_count": 1, "Ryan": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Katie": {"_count": 2, "and": {"_count": 1}, "Bell": {"_count": 1}}, "whitefaced": {"_count": 1, "with": {"_count": 1}}, "other": {"_count": 6, "staff": {"_count": 1}, "means": {"_count": 1}, "Order": {"_count": 1}, "Ministry": {"_count": 1}, "witches": {"_count": 1}, "hooded": {"_count": 1}}, "Alicia": {"_count": 1, "and": {"_count": 1}}, "beard": {"_count": 1, "or": {"_count": 1}}, "Karkuss": {"_count": 1, "feet": {"_count": 1}}, "said": {"_count": 1, "Umbridge": {"_count": 1}}, "enthusiasm": {"_count": 1, "from": {"_count": 1}}, "raising": {"_count": 1, "the": {"_count": 1}}, "crystal": {"_count": 1, "bubbles": {"_count": 1}}, "YouKnowWho": {"_count": 1, "and": {"_count": 1}}, "Mundungus": {"_count": 2, "and": {"_count": 2}}, "MadEye": {"_count": 1, "and": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "Lockharts": {"_count": 1, "angry": {"_count": 1}}, "contrast": {"_count": 1, "was": {"_count": 1}}, "Weasleys": {"_count": 1, "": {"_count": 1}}, "Knight": {"_count": 1, "Bus": {"_count": 1}}, "seizing": {"_count": 2, "a": {"_count": 1}, "Harry": {"_count": 1}}, "tall": {"_count": 1, "hills": {"_count": 1}}, "Voldemorts": {"_count": 1, "snake": {"_count": 1}}, "Pride": {"_count": 1, "of": {"_count": 1}}, "Roger": {"_count": 1, "Davies": {"_count": 1}}, "accusing": {"_count": 1, "respectable": {"_count": 1}}, "Ginnys": {"_count": 1, "performance": {"_count": 1}}, "Educational": {"_count": 1, "Decree": {"_count": 1}}, "sundown": {"_count": 1, "Filch": {"_count": 1}}, "myself": {"_count": 2, "and": {"_count": 1}, "now": {"_count": 1}}, "twilight": {"_count": 3, "and": {"_count": 1}, "undone": {"_count": 1}, "": {"_count": 1}}, "planetary": {"_count": 1, "movements": {"_count": 1}}, "pretending": {"_count": 1, "he": {"_count": 1}}, "Dean": {"_count": 1, "": {"_count": 1}}, "shaking": {"_count": 1, "your": {"_count": 1}}, "Umbridges": {"_count": 1, "sudden": {"_count": 1}}, "certain": {"_count": 1, "trustworthy": {"_count": 1}}, "force": {"_count": 4, "I": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "Kingsley": {"_count": 2, "and": {"_count": 1}, "Fleur": {"_count": 1}}, "planting": {"_count": 1, "himself": {"_count": 1}}, "still": {"_count": 1, "buried": {"_count": 1}}, "Hufflepuff": {"_count": 1, "in": {"_count": 1}}, "nigh": {"_count": 1, "an": {"_count": 1}}, "Gryffindors": {"_count": 1, "walking": {"_count": 1}}, "class": {"_count": 1, "to": {"_count": 1}}, "mice": {"_count": 1, "": {"_count": 1}}, "mixing": {"_count": 1, "up": {"_count": 1}}, "five": {"_count": 2, "others": {"_count": 1}, "injured": {"_count": 1}}, "Luna": {"_count": 3, "who": {"_count": 1}, "Lovegood": {"_count": 1}, "": {"_count": 1}}, "Lunas": {"_count": 1, "blonde": {"_count": 1}}, "Millicent": {"_count": 1, "Bulstrode": {"_count": 1}}, "unseen": {"_count": 1, "eyes": {"_count": 1}}, "halfbreeds": {"_count": 1, "such": {"_count": 1}}, "Bane": {"_count": 2, "and": {"_count": 1}, "still": {"_count": 1}}, "Grawp": {"_count": 1, "said": {"_count": 1}}, "dads": {"_count": 1, "old": {"_count": 1}}, "Bellatrix": {"_count": 3, "Lestrange": {"_count": 2}, "to": {"_count": 1}}, "streaks": {"_count": 1, "of": {"_count": 1}}, "pain": {"_count": 1, "and": {"_count": 1}}, "wizards": {"_count": 2, "Harry": {"_count": 1}, "said": {"_count": 1}}, "studying": {"_count": 2, "or": {"_count": 1}, "The": {"_count": 1}}, "Marietta": {"_count": 1, "Edgecombe": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "theby": {"_count": 1, "now": {"_count": 1}}, "impersonating": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 2}, "know": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "Rufus": {"_count": 4, "Scrimgeour": {"_count": 4}}, "returning": {"_count": 1, "to": {"_count": 1}}, "Slughorn": {"_count": 2, "": {"_count": 2}}, "not": {"_count": 2, "confiding": {"_count": 1}, "doing": {"_count": 1}}, "shock": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "grisly": {"_count": 1, "tidings": {"_count": 1}}, "Remus": {"_count": 1, "Lupin": {"_count": 1}}, "mesmerized": {"_count": 1, "girls": {"_count": 1}}, "anybody": {"_count": 2, "except": {"_count": 1}, "in": {"_count": 1}}, "carriage": {"_count": 1, "Harry": {"_count": 1}}, "Wednesday": {"_count": 1, "": {"_count": 1}}, "Libatius": {"_count": 1, "Borage": {"_count": 1}}, "high": {"_count": 2, "tangled": {"_count": 1}, "railings": {"_count": 1}}, "inexperienced": {"_count": 1, "wizards": {"_count": 1}}, "higher": {"_count": 1, "and": {"_count": 1}}, "magical": {"_count": 1, "means": {"_count": 1}}, "coming": {"_count": 1, "too": {"_count": 1}}, "reading": {"_count": 1, "his": {"_count": 1}}, "warm": {"_count": 1, "toffeescented": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "long": {"_count": 2, "suffering": {"_count": 1}, "velvet": {"_count": 1}}, "either": {"_count": 5, "he": {"_count": 1}, "of": {"_count": 3}, "Hagrid": {"_count": 1}}, "Ginny": {"_count": 1, "his": {"_count": 1}}, "Cormac": {"_count": 2, "McLaggen": {"_count": 2}}, "Argus": {"_count": 1, "Filch": {"_count": 1}}, "tampering": {"_count": 1, "with": {"_count": 1}}, "everyone": {"_count": 1, "once": {"_count": 1}}, "arguing": {"_count": 1, "further": {"_count": 1}}, "Riddle": {"_count": 1, "they": {"_count": 1}}, "Dobby": {"_count": 1, "growled": {"_count": 1}}, "winking": {"_count": 1, "": {"_count": 1}}, "Scarpins": {"_count": 1, "Revelaspell": {"_count": 1}}, "cold": {"_count": 1, "dreary": {"_count": 1}}, "dodging": {"_count": 1, "around": {"_count": 1}}, "Seamus": {"_count": 1, "and": {"_count": 1}}, "houseelves": {"_count": 1, "in": {"_count": 1}}, "appointment": {"_count": 1, "": {"_count": 1}}, "henchmen": {"_count": 1, "to": {"_count": 1}}, "images": {"_count": 1, "of": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "giving": {"_count": 1, "me": {"_count": 1}}, "diving": {"_count": 1, "sideways": {"_count": 1}}, "mosquitoes": {"_count": 1, "": {"_count": 1}}, "murdering": {"_count": 1, "other": {"_count": 1}}, "Dumbledores": {"_count": 3, "decision": {"_count": 1}, "silence": {"_count": 1}, "tone": {"_count": 1}}, "less": {"_count": 1, "than": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "generations": {"_count": 1, "of": {"_count": 1}}, "teetering": {"_count": 1, "piles": {"_count": 1}}, "castleproud": {"_count": 1, "houseelves": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "drinking": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "staring": {"_count": 1, "": {"_count": 1}}, "Greyback": {"_count": 4, "": {"_count": 2}, "all": {"_count": 1}, "now": {"_count": 1}}, "zat": {"_count": 1, "": {"_count": 1}}, "hair": {"_count": 1, "or": {"_count": 1}}, "hour": {"_count": 1, "he": {"_count": 1}}, "listing": {"_count": 1, "them": {"_count": 1}}, "wild": {"_count": 1, "low": {"_count": 1}}, "luck": {"_count": 1, "and": {"_count": 1}}, "Charity": {"_count": 1, "Burbage": {"_count": 1}}, "attacking": {"_count": 1, "the": {"_count": 1}}, "Elphias": {"_count": 1, "Doge": {"_count": 1}}, "dueling": {"_count": 1, "rather": {"_count": 1}}, "Betty": {"_count": 1, "Braithwaite": {"_count": 1}}, "Side": {"_count": 1, "Along": {"_count": 1}}, "broom": {"_count": 1, "Whym": {"_count": 1}}, "thestral": {"_count": 1, "Hermione": {"_count": 1}}, "Bill": {"_count": 1, "": {"_count": 1}}, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "darkness": {"_count": 1, "as": {"_count": 1}}, "millimeters": {"_count": 1, "cast": {"_count": 1}}, "Dark": {"_count": 3, "Magic": {"_count": 3}}, "gentle": {"_count": 1, "thuds": {"_count": 1}}, "ripping": {"_count": 1, "it": {"_count": 1}}, "both": {"_count": 2, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "Portkey": {"_count": 1, "": {"_count": 1}}, "aiming": {"_count": 2, "a": {"_count": 2}}, "wearing": {"_count": 1, "his": {"_count": 1}}, "bare": {"_count": 1, "skin": {"_count": 1}}, "occasional": {"_count": 1, "spurts": {"_count": 1}}, "golden": {"_count": 1, "poles": {"_count": 1}}, "Ollivander": {"_count": 2, "": {"_count": 1}, "whatever": {"_count": 1}}, "terrified": {"_count": 1, "guests": {"_count": 1}}, "subject": {"_count": 1, "": {"_count": 1}}, "going": {"_count": 1, "back": {"_count": 1}}, "firelight": {"_count": 1, "and": {"_count": 1}}, "wandlight": {"_count": 2, "": {"_count": 2}}, "whoever": {"_count": 1, "had": {"_count": 1}}, "borrowing": {"_count": 1, "a": {"_count": 1}}, "Pius": {"_count": 1, "Thicknesse": {"_count": 1}}, "theft": {"_count": 1, "or": {"_count": 1}}, "moonlight": {"_count": 1, "the": {"_count": 1}}, "ouseelves": {"_count": 1, "": {"_count": 1}}, "air": {"_count": 1, "shimmering": {"_count": 1}}, "brushing": {"_count": 1, "his": {"_count": 1}}, "inserting": {"_count": 1, "his": {"_count": 1}}, "families": {"_count": 1, "others": {"_count": 1}}, "gold": {"_count": 1, "and": {"_count": 1}}, "Apparition": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "SideAlong": {"_count": 1, "Apparition": {"_count": 1}}, "odd": {"_count": 1, "rustlings": {"_count": 1}}, "animals": {"_count": 1, "rather": {"_count": 1}}, "having": {"_count": 1, "these": {"_count": 1}}, "gouging": {"_count": 1, "a": {"_count": 1}}, "slipping": {"_count": 1, "in": {"_count": 1}}, "streetlamps": {"_count": 1, "": {"_count": 1}}, "rounding": {"_count": 1, "up": {"_count": 1}}, "maintaining": {"_count": 1, "an": {"_count": 1}}, "midnight": {"_count": 1, "": {"_count": 1}}, "spells": {"_count": 2, "so": {"_count": 1}, "dragging": {"_count": 1}}, "casting": {"_count": 1, "a": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "squeezing": {"_count": 1, "the": {"_count": 1}}, "Bellatrixs": {"_count": 1, "silver": {"_count": 1}}, "much": {"_count": 1, "": {"_count": 1}}, "Griphook": {"_count": 2, "": {"_count": 2}}, "murder": {"_count": 3, "": {"_count": 2}, "I": {"_count": 1}}, "Grindelwald": {"_count": 1, "": {"_count": 1}}, "Godric": {"_count": 1, "Gryffindor": {"_count": 1}}, "delivering": {"_count": 1, "a": {"_count": 1}}, "Travers": {"_count": 1, "who": {"_count": 1}}, "regarding": {"_count": 1, "Travers": {"_count": 1}}, "vicious": {"_count": 1, "slashes": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "degrees": {"_count": 1, "howling": {"_count": 1}}, "three": {"_count": 1, "Muggle": {"_count": 1}}, "Carrow": {"_count": 1, "for": {"_count": 1}}, "walls": {"_count": 1, "": {"_count": 1}}, "elated": {"_count": 1, "and": {"_count": 1}}, "feet": {"_count": 1, "the": {"_count": 1}}, "dragging": {"_count": 1, "the": {"_count": 1}}, "halfglancing": {"_count": 1, "toward": {"_count": 1}}, "cloudy": {"_count": 1, "vapor": {"_count": 1}}, "superior": {"_count": 1, "skill": {"_count": 1}}, "movement": {"_count": 1, "or": {"_count": 1}}, "roars": {"_count": 1, "from": {"_count": 1}}, "elves": {"_count": 1, "or": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "exhaustion": {"_count": 1, "and": {"_count": 1}}, "thick": {"_count": 1, "white": {"_count": 1}}}, "else": {"_count": 463, "": {"_count": 85, ".": {"_count": 65}, "?": {"_count": 12}, "!": {"_count": 8}}, "to": {"_count": 27, "do": {"_count": 3}, "think": {"_count": 1}, "see": {"_count": 2}, "worry": {"_count": 1}, "go": {"_count": 3}, "ask": {"_count": 1}, "occupy": {"_count": 1}, "know": {"_count": 2}, "velvety": {"_count": 1}, "say": {"_count": 4}, "turn": {"_count": 2}, "rub": {"_count": 1}, "get": {"_count": 1}, "find": {"_count": 1}, "help": {"_count": 1}, "attempt": {"_count": 1}, "try": {"_count": 1}}, "would": {"_count": 17, "yeh": {"_count": 1}, "hear": {"_count": 1}, "have": {"_count": 3}, "be": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 2}, "they": {"_count": 2}, "Fudge": {"_count": 1}, "walk": {"_count": 1}, "that": {"_count": 1}, "find": {"_count": 1}, "intervene": {"_count": 1}, "live": {"_count": 1}}, "for": {"_count": 6, "the": {"_count": 1}, "it": {"_count": 1}, "two": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "he": {"_count": 7, "kept": {"_count": 1}, "owned": {"_count": 1}, "got": {"_count": 1}, "may": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}, "thinks": {"_count": 1}}, "is": {"_count": 12, "full": {"_count": 1}, "a": {"_count": 1}, "caught": {"_count": 1}, "": {"_count": 1}, "coming": {"_count": 1}, "down": {"_count": 1}, "here": {"_count": 2}, "dead": {"_count": 1}, "back": {"_count": 1}, "there": {"_count": 2}}, "looked": {"_count": 1, "terrified": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "was": {"_count": 23, "very": {"_count": 1}, "at": {"_count": 1}, "running": {"_count": 1}, "sweaty": {"_count": 1}, "I": {"_count": 1}, "nodding": {"_count": 1}, "on": {"_count": 1}, "sharing": {"_count": 1}, "missing": {"_count": 1}, "up": {"_count": 1}, "settled": {"_count": 1}, "sitting": {"_count": 1}, "swirling": {"_count": 1}, "quite": {"_count": 1}, "watching": {"_count": 1}, "told": {"_count": 1}, "choosing": {"_count": 1}, "roaring": {"_count": 1}, "looking": {"_count": 1}, "staring": {"_count": 1}, "sure": {"_count": 1}, "moving": {"_count": 1}, "there": {"_count": 1}}, "because": {"_count": 2, "they": {"_count": 1}, "theyre": {"_count": 1}}, "were": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 20, "his": {"_count": 2}, "the": {"_count": 14}, "there": {"_count": 1}, "your": {"_count": 1}, "empty": {"_count": 1}, "Potters": {"_count": 1}}, "the": {"_count": 4, "dormitory": {"_count": 1}, "door": {"_count": 1}, "man": {"_count": 1}, "treacle": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 22, "gone": {"_count": 3}, "": {"_count": 2}, "been": {"_count": 1}, "finished": {"_count": 1}, "a": {"_count": 1}, "read": {"_count": 1}, "considered": {"_count": 1}, "wanted": {"_count": 1}, "set": {"_count": 1}, "done": {"_count": 1}, "disappeared": {"_count": 1}, "made": {"_count": 1}, "he": {"_count": 1}, "succeeded": {"_count": 1}, "when": {"_count": 1}, "spoken": {"_count": 1}, "removed": {"_count": 1}, "clambered": {"_count": 1}, "died": {"_count": 1}}, "something": {"_count": 2, "that": {"_count": 1}, "just": {"_count": 1}}, "might": {"_count": 3, "be": {"_count": 1}, "say": {"_count": 1}, "kill": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "who": {"_count": 3, "is": {"_count": 1}, "must": {"_count": 1}, "you": {"_count": 1}}, "at": {"_count": 4, "Hogwarts": {"_count": 1}, "my": {"_count": 1}, "me": {"_count": 1}, "night": {"_count": 1}}, "can": {"_count": 4, "hear": {"_count": 2}, "have": {"_count": 1}, "I": {"_count": 1}}, "but": {"_count": 5, "the": {"_count": 1}, "did": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}, "you": {"_count": 1}}, "wants": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "Hermione": {"_count": 2, "let": {"_count": 1}, "went": {"_count": 1}}, "all": {"_count": 2, "game": {"_count": 1}, "through": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 2}, "Fred": {"_count": 1}, "anything": {"_count": 1}, "Ron": {"_count": 1}}, "now": {"_count": 3, "that": {"_count": 1}, "or": {"_count": 1}, "said": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "knows": {"_count": 3, "our": {"_count": 1}, "what": {"_count": 1}, "and": {"_count": 1}}, "they": {"_count": 4, "could": {"_count": 1}, "hadnt": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 1}}, "has": {"_count": 10, "heard": {"_count": 1}, "died": {"_count": 1}, "": {"_count": 1}, "spotted": {"_count": 1}, "he": {"_count": 1}, "read": {"_count": 1}, "started": {"_count": 1}, "happened": {"_count": 1}, "um": {"_count": 1}, "dared": {"_count": 1}}, "glad": {"_count": 1, "for": {"_count": 1}}, "Stan": {"_count": 1, "theres": {"_count": 1}}, "discussing": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "shall": {"_count": 1, "perish": {"_count": 1}}, "clapped": {"_count": 1, "their": {"_count": 1}}, "skinned": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 5, "to": {"_count": 3}, "too": {"_count": 1}, "prepared": {"_count": 1}}, "cared": {"_count": 1, "that": {"_count": 1}}, "dyou": {"_count": 1, "think": {"_count": 1}}, "collapsed": {"_count": 1, "every": {"_count": 1}}, "heard": {"_count": 1, "echoes": {"_count": 1}}, "mdear": {"_count": 1, "but": {"_count": 1}}, "kept": {"_count": 1, "intruding": {"_count": 1}}, "Crookshanks": {"_count": 1, "had": {"_count": 1}}, "proceeded": {"_count": 1, "to": {"_count": 1}}, "moving": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 4, "a": {"_count": 1}, "conversing": {"_count": 1}, "was": {"_count": 1}, "do": {"_count": 1}}, "did": {"_count": 7, "he": {"_count": 2}, "you": {"_count": 3}, "": {"_count": 1}, "she": {"_count": 1}}, "could": {"_count": 10, "have": {"_count": 3}, "you": {"_count": 1}, "answer": {"_count": 1}, "hear": {"_count": 1}, "overhear": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}}, "there": {"_count": 4, "was": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "would": {"_count": 1}}, "whispering": {"_count": 1, "fervently": {"_count": 1}}, "know": {"_count": 3, "one": {"_count": 1}, "about": {"_count": 1}, "where": {"_count": 1}}, "looking": {"_count": 2, "around": {"_count": 1}, "down": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "gaping": {"_count": 1, "at": {"_count": 1}}, "got": {"_count": 1, "across": {"_count": 1}}, "mustve": {"_count": 1, "done": {"_count": 1}}, "into": {"_count": 2, "shadow": {"_count": 1}, "the": {"_count": 1}}, "stood": {"_count": 1, "around": {"_count": 1}}, "safe": {"_count": 1, "in": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "offered": {"_count": 1, "them": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 1}, "comparison": {"_count": 1}}, "went": {"_count": 1, "inside": {"_count": 1}}, "does": {"_count": 2, "and": {"_count": 1}, "it": {"_count": 1}}, "like": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "there": {"_count": 1}}, "saw": {"_count": 1, "Mr": {"_count": 1}}, "attacked": {"_count": 1, "both": {"_count": 1}}, "well": {"_count": 2, "": {"_count": 1}, "do": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "letting": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 5, "had": {"_count": 2}, "Dumbledore": {"_count": 1}, "calmed": {"_count": 1}, "he": {"_count": 1}}, "worth": {"_count": 1, "hearing": {"_count": 1}}, "DO": {"_count": 1, "YOU": {"_count": 1}}, "Whats": {"_count": 1, "going": {"_count": 1}}, "knew": {"_count": 1, "exactly": {"_count": 1}}, "march": {"_count": 1, "up": {"_count": 1}}, "from": {"_count": 3, "someone": {"_count": 1}, "what": {"_count": 1}, "his": {"_count": 1}}, "circle": {"_count": 1, "the": {"_count": 1}}, "what": {"_count": 2, "were": {"_count": 1}, "the": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "demand": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "its": {"_count": 1}, "that": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "spoke": {"_count": 1, "for": {"_count": 1}}, "joins": {"_count": 1, "us": {"_count": 1}}, "slithered": {"_count": 1, "through": {"_count": 1}}, "spent": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "taking": {"_count": 1}}, "following": {"_count": 1, "one": {"_count": 1}}, "wiped": {"_count": 1, "magically": {"_count": 1}}, "wanted": {"_count": 1, "": {"_count": 1}}, "How": {"_count": 1, "thick": {"_count": 1}}, "sniffed": {"_count": 1, "from": {"_count": 1}}, "One": {"_count": 1, "more": {"_count": 1}}, "spout": {"_count": 1, "blood": {"_count": 1}}, "centaurs": {"_count": 1, "were": {"_count": 1}}, "it": {"_count": 3, "took": {"_count": 1}, "could": {"_count": 1}, "was": {"_count": 1}}, "hear": {"_count": 1, "it": {"_count": 1}}, "unconscious": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "powerful": {"_count": 1}}, "though": {"_count": 1, "since": {"_count": 1}}, "waved": {"_count": 1, "clearly": {"_count": 1}}, "scratching": {"_count": 1, "his": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "whos": {"_count": 1, "got": {"_count": 1}}, "called": {"_count": 1, "Belby": {"_count": 1}}, "listening": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 2, "sniffed": {"_count": 1}, "whos": {"_count": 1}}, "making": {"_count": 1, "sure": {"_count": 1}}, "an": {"_count": 1, "odd": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "failed": {"_count": 1, "to": {"_count": 1}}, "stretched": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "bent": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 1, "your": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 3, "potion": {"_count": 1}, "second": {"_count": 1}, "weapon": {"_count": 1}}, "dashing": {"_count": 1, "into": {"_count": 1}}, "hidden": {"_count": 1, "by": {"_count": 1}}, "mattered": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "visit": {"_count": 1, "the": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "we": {"_count": 3, "know": {"_count": 1}, "go": {"_count": 1}, "dont": {"_count": 1}}, "stand": {"_count": 1, "between": {"_count": 1}}, "even": {"_count": 1, "Godrics": {"_count": 1}}, "faking": {"_count": 1, "she": {"_count": 1}}, "Ron": {"_count": 1, "smirked": {"_count": 1}}, "broken": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "four": {"_count": 1, "of": {"_count": 1}}, "tact": {"_count": 1, "": {"_count": 1}}, "Muriel": {"_count": 1, "said": {"_count": 1}}, "fled": {"_count": 1, "when": {"_count": 1}}, "theyd": {"_count": 1, "know": {"_count": 1}}, "happened": {"_count": 1, "today": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "glinted": {"_count": 1, "": {"_count": 1}}, "woven": {"_count": 1, "from": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "sprinted": {"_count": 1}}, "greeting": {"_count": 1, "one": {"_count": 1}}, "die": {"_count": 1, "for": {"_count": 1}}, "counting": {"_count": 1, "silently": {"_count": 1}}, "simply": {"_count": 1, "attempting": {"_count": 1}}, "tonight": {"_count": 1, "said": {"_count": 1}}, "being": {"_count": 1, "captured": {"_count": 1}}}, "sat": {"_count": 459, "in": {"_count": 26, "the": {"_count": 8}, "motionless": {"_count": 1}, "front": {"_count": 1}, "serious": {"_count": 1}, "a": {"_count": 2}, "silence": {"_count": 6}, "her": {"_count": 1}, "thought": {"_count": 3}, "seething": {"_count": 1}, "happier": {"_count": 1}, "rows": {"_count": 1}}, "with": {"_count": 7, "his": {"_count": 3}, "her": {"_count": 1}, "Hermione": {"_count": 1}, "them": {"_count": 1}, "Lavender": {"_count": 1}}, "frozen": {"_count": 3, "in": {"_count": 2}, "with": {"_count": 1}}, "down": {"_count": 185, "on": {"_count": 28}, "heavily": {"_count": 1}, "at": {"_count": 17}, "and": {"_count": 10}, "as": {"_count": 1}, "stared": {"_count": 1}, "next": {"_count": 7}, "": {"_count": 24}, "opposite": {"_count": 8}, "in": {"_count": 15}, "around": {"_count": 3}, "to": {"_count": 6}, "doing": {"_count": 1}, "gripping": {"_count": 1}, "between": {"_count": 1}, "feeling": {"_count": 1}, "again": {"_count": 5}, "took": {"_count": 3}, "side": {"_count": 1}, "picked": {"_count": 2}, "lowered": {"_count": 1}, "together": {"_count": 2}, "too": {"_count": 2}, "with": {"_count": 6}, "shook": {"_count": 1}, "laid": {"_count": 1}, "beside": {"_count": 2}, "against": {"_count": 1}, "quickly": {"_count": 1}, "stretched": {"_count": 1}, "upon": {"_count": 4}, "near": {"_count": 1}, "put": {"_count": 1}, "inside": {"_count": 1}, "looking": {"_count": 2}, "neatly": {"_count": 1}, "behind": {"_count": 3}, "when": {"_count": 1}, "an": {"_count": 1}, "watching": {"_count": 1}, "facing": {"_count": 1}, "he": {"_count": 1}, "while": {"_count": 1}, "staring": {"_count": 1}, "without": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}, "for": {"_count": 2}, "hard": {"_count": 1}, "it": {"_count": 1}, "opened": {"_count": 1}, "chains": {"_count": 1}, "wearing": {"_count": 1}, "his": {"_count": 1}}, "up": {"_count": 49, "and": {"_count": 10}, "quickly": {"_count": 3}, "suddenly": {"_count": 1}, "": {"_count": 8}, "in": {"_count": 1}, "one": {"_count": 1}, "straight": {"_count": 6}, "she": {"_count": 1}, "straightening": {"_count": 1}, "late": {"_count": 1}, "a": {"_count": 3}, "waiting": {"_count": 1}, "counting": {"_count": 1}, "so": {"_count": 1}, "straighter": {"_count": 1}, "her": {"_count": 1}, "very": {"_count": 1}, "too": {"_count": 1}, "still": {"_count": 1}, "curled": {"_count": 1}, "great": {"_count": 1}, "looking": {"_count": 1}, "The": {"_count": 1}, "rather": {"_count": 1}}, "on": {"_count": 17, "it": {"_count": 2}, "to": {"_count": 1}, "the": {"_count": 9}, "his": {"_count": 2}, "top": {"_count": 1}, "my": {"_count": 1}, "Fudges": {"_count": 1}}, "bolt": {"_count": 8, "upright": {"_count": 8}}, "back": {"_count": 11, "down": {"_count": 8}, "in": {"_count": 1}, "again": {"_count": 1}, "on": {"_count": 1}}, "and": {"_count": 11, "thought": {"_count": 1}, "stared": {"_count": 1}, "gaped": {"_count": 1}, "waited": {"_count": 1}, "made": {"_count": 1}, "watched": {"_count": 2}, "which": {"_count": 1}, "a": {"_count": 1}, "conversing": {"_count": 1}, "brooded": {"_count": 1}}, "knitting": {"_count": 1, "what": {"_count": 1}}, "there": {"_count": 20, "with": {"_count": 1}, "excitement": {"_count": 1}, "whitefaced": {"_count": 1}, "in": {"_count": 2}, "staring": {"_count": 3}, "twitching": {"_count": 1}, "on": {"_count": 1}, "aware": {"_count": 1}, "horrorstruck": {"_count": 1}, "shaking": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}, "looking": {"_count": 1}, "feeling": {"_count": 1}, "under": {"_count": 1}, "trying": {"_count": 1}, "opening": {"_count": 1}}, "Hagrid": {"_count": 1, "who": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "quickly": {"_count": 1, "down": {"_count": 1}}, "together": {"_count": 4, "next": {"_count": 1}, "in": {"_count": 1}, "writing": {"_count": 1}, "": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "nervously": {"_count": 1, "apart": {"_count": 1}}, "hiccoughing": {"_count": 1, "looking": {"_count": 1}}, "watching": {"_count": 3, "the": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}}, "stunned": {"_count": 2, "as": {"_count": 1}, "for": {"_count": 1}}, "reading": {"_count": 2, "talking": {"_count": 1}, "the": {"_count": 1}}, "next": {"_count": 2, "to": {"_count": 2}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "still": {"_count": 1, "and": {"_count": 1}}, "feeling": {"_count": 1, "unaccountably": {"_count": 1}}, "motionless": {"_count": 2, "in": {"_count": 1}, "her": {"_count": 1}}, "quite": {"_count": 4, "still": {"_count": 3}, "motionless": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "gulping": {"_count": 1, "wetly": {"_count": 1}}, "at": {"_count": 3, "earlier": {"_count": 1}, "a": {"_count": 1}, "lamplit": {"_count": 1}}, "themselves": {"_count": 3, "around": {"_count": 1}, "down": {"_count": 1}, "upon": {"_count": 1}}, "admiring": {"_count": 1, "it": {"_count": 1}}, "finishing": {"_count": 1, "a": {"_count": 1}}, "hooting": {"_count": 1, "softly": {"_count": 1}}, "waiting": {"_count": 2, "for": {"_count": 2}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "plotting": {"_count": 1, "murder": {"_count": 1}}, "gossiping": {"_count": 1, "happily": {"_count": 1}}, "along": {"_count": 1, "one": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "torn": {"_count": 1, "between": {"_count": 1}}, "huddled": {"_count": 3, "in": {"_count": 2}, "and": {"_count": 1}}, "between": {"_count": 2, "them": {"_count": 2}}, "making": {"_count": 1, "up": {"_count": 1}}, "looking": {"_count": 3, "around": {"_count": 1}, "stunned": {"_count": 1}, "out": {"_count": 1}}, "here": {"_count": 3, "absorbed": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "gingerly": {"_count": 1, "on": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "an": {"_count": 1, "ancient": {"_count": 1}}, "primly": {"_count": 1, "upright": {"_count": 1}}, "eating": {"_count": 1, "between": {"_count": 1}}, "Siriuss": {"_count": 1, "head": {"_count": 1}}, "the": {"_count": 3, "test": {"_count": 1}, "Princes": {"_count": 1}, "fresh": {"_count": 1}}, "a": {"_count": 2, "witch": {"_count": 1}, "student": {"_count": 1}}, "Hedwig": {"_count": 1, "hooting": {"_count": 1}}, "gazing": {"_count": 1, "miserably": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "fully": {"_count": 1, "clothed": {"_count": 1}}, "side": {"_count": 2, "by": {"_count": 2}}, "upon": {"_count": 1, "rickety": {"_count": 1}}, "alone": {"_count": 3, "in": {"_count": 1}, "": {"_count": 2}}, "tearstained": {"_count": 1, "and": {"_count": 1}}, "poring": {"_count": 1, "over": {"_count": 1}}, "rumpling": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "Ancient": {"_count": 1}}, "grotesquely": {"_count": 1, "on": {"_count": 1}}, "nevertheless": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "examinations": {"_count": 1}}, "clamlike": {"_count": 1, "before": {"_count": 1}}, "Dumbledore": {"_count": 1, "looking": {"_count": 1}}, "Neville": {"_count": 1, "with": {"_count": 1}}, "ancient": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "beside": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "rigid": {"_count": 1, "and": {"_count": 1}}, "spectacles": {"_count": 1, "perched": {"_count": 1}}, "himself": {"_count": 2, "in": {"_count": 1}, "not": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "Umbridge": {"_count": 1, "with": {"_count": 1}}, "perched": {"_count": 1, "like": {"_count": 1}}, "low": {"_count": 1, "in": {"_count": 1}}, "practicing": {"_count": 1, "for": {"_count": 1}}, "tied": {"_count": 1, "to": {"_count": 1}}, "crouching": {"_count": 1, "down": {"_count": 1}}, "glittering": {"_count": 1, "and": {"_count": 1}}, "slumped": {"_count": 1, "dozily": {"_count": 1}}, "lopsided": {"_count": 1, "upon": {"_count": 1}}, "panting": {"_count": 1, "on": {"_count": 1}}, "facing": {"_count": 1, "each": {"_count": 1}}, "silent": {"_count": 1, "as": {"_count": 1}}, "closest": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "without": {"_count": 1, "talking": {"_count": 1}}}, "morning": {"_count": 288, "traffic": {"_count": 1, "jam": {"_count": 1}}, "": {"_count": 90, ".": {"_count": 77}, "?": {"_count": 9}, "!": {"_count": 4}}, "greeting": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 4, "he": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 2}}, "it": {"_count": 5, "was": {"_count": 3}, "took": {"_count": 1}, "had": {"_count": 1}}, "hed": {"_count": 1, "had": {"_count": 1}}, "when": {"_count": 10, "Harry": {"_count": 2}, "about": {"_count": 1}, "the": {"_count": 3}, "many": {"_count": 1}, "Dumbledores": {"_count": 1}, "an": {"_count": 1}, "I": {"_count": 1}}, "at": {"_count": 4, "breakfast": {"_count": 3}, "eleven": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "askin": {"_count": 1, "fer": {"_count": 1}}, "and": {"_count": 16, "was": {"_count": 1}, "evening": {"_count": 1}, "if": {"_count": 1}, "lay": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}, "stopped": {"_count": 1}, "dressed": {"_count": 1}, "tell": {"_count": 1}, "the": {"_count": 2}, "left": {"_count": 1}, "icy": {"_count": 1}, "thrown": {"_count": 1}, "I": {"_count": 1}, "moved": {"_count": 1}}, "to": {"_count": 8, "teach": {"_count": 1}, "find": {"_count": 4}, "insist": {"_count": 1}, "scribble": {"_count": 1}, "tell": {"_count": 1}}, "Harry": {"_count": 8, "and": {"_count": 2}, "awoke": {"_count": 1}, "was": {"_count": 1}, "packed": {"_count": 1}, "woke": {"_count": 1}, "stood": {"_count": 1}, "after": {"_count": 1}}, "they": {"_count": 3, "woke": {"_count": 1}, "reckon": {"_count": 1}, "made": {"_count": 1}}, "the": {"_count": 4, "ground": {"_count": 1}, "Healers": {"_count": 1}, "number": {"_count": 1}, "Slytherins": {"_count": 1}}, "dawned": {"_count": 2, "very": {"_count": 1}, "cold": {"_count": 1}}, "in": {"_count": 10, "mid": {"_count": 1}, "Defense": {"_count": 1}, "the": {"_count": 3}, "which": {"_count": 1}, "a": {"_count": 2}, "Gryffindor": {"_count": 1}, "cheery": {"_count": 1}}, "break": {"_count": 1, "": {"_count": 1}}, "Rons": {"_count": 1, "bitten": {"_count": 1}}, "notes": {"_count": 1, "were": {"_count": 1}}, "by": {"_count": 3, "a": {"_count": 1}, "shooting": {"_count": 1}, "Rons": {"_count": 1}}, "he": {"_count": 5, "paid": {"_count": 1}, "seriously": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "air": {"_count": 1, "whipped": {"_count": 1}}, "sun": {"_count": 1, "": {"_count": 1}}, "Marge": {"_count": 1, "": {"_count": 1}}, "A": {"_count": 1, "loud": {"_count": 1}}, "with": {"_count": 7, "all": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 2}, "half": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Parvati": {"_count": 1, "whispered": {"_count": 1}}, "so": {"_count": 2, "early": {"_count": 1}, "that": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 12, "the": {"_count": 10}, "February": {"_count": 1}, "his": {"_count": 1}}, "but": {"_count": 5, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "thought": {"_count": 1}, "turned": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 2, "Defense": {"_count": 1}, "smoother": {"_count": 1}}, "you": {"_count": 2, "saved": {"_count": 1}, "cant": {"_count": 1}}, "Hermione": {"_count": 1, "gave": {"_count": 1}}, "just": {"_count": 1, "before": {"_count": 1}}, "hardly": {"_count": 1, "anyone": {"_count": 1}}, "though": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "especially": {"_count": 1, "when": {"_count": 1}}, "since": {"_count": 1, "just": {"_count": 1}}, "I": {"_count": 1, "woke": {"_count": 1}}, "before": {"_count": 3, "the": {"_count": 3}}, "said": {"_count": 4, "Ron": {"_count": 1}, "Ogden": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "mail": {"_count": 1, "": {"_count": 1}}, "wasted": {"_count": 1, "if": {"_count": 1}}, "youd": {"_count": 1, "have": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "instance": {"_count": 1}, "a": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "What": {"_count": 1, "were": {"_count": 1}}, "walking": {"_count": 1, "over": {"_count": 1}}, "until": {"_count": 1, "night": {"_count": 1}}, "cant": {"_count": 1, "we": {"_count": 1}}, "as": {"_count": 1, "abruptly": {"_count": 1}}, "commuters": {"_count": 1, "": {"_count": 1}}, "When": {"_count": 1, "old": {"_count": 1}}, "came": {"_count": 1, "he": {"_count": 1}}, "light": {"_count": 1, "some": {"_count": 1}}, "post": {"_count": 2, "was": {"_count": 1}, "Hopefully": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "feeling": {"_count": 2, "very": {"_count": 1}, "slightly": {"_count": 1}}, "didn": {"_count": 1, "want": {"_count": 1}}, "off": {"_count": 1, "work": {"_count": 1}}, "sleeping": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 1, "you": {"_count": 1}}, "whispered": {"_count": 1, "Mrs": {"_count": 1}}, "putting": {"_count": 1, "up": {"_count": 1}}, "Potions": {"_count": 1, "lesson": {"_count": 1}}, "after": {"_count": 2, "news": {"_count": 1}, "Dumbledore": {"_count": 1}}, "edition": {"_count": 1, "": {"_count": 1}}, "striding": {"_count": 1, "up": {"_count": 1}}, "went": {"_count": 1, "well": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "All": {"_count": 1, "right": {"_count": 1}}, "thats": {"_count": 1, "why": {"_count": 1}}, "Quintessence": {"_count": 1, "A": {"_count": 1}}, "restored": {"_count": 1, "to": {"_count": 1}}, "nearly": {"_count": 1, "all": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "whatever": {"_count": 1, "he": {"_count": 1}}, "following": {"_count": 1, "Dumbledores": {"_count": 1}}, "completely": {"_count": 1, "emptying": {"_count": 1}}, "might": {"_count": 1, "not": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "considering": {"_count": 1, "said": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "or": {"_count": 1, "even": {"_count": 1}}, "Albert": {"_count": 1, "arent": {"_count": 1}}, "quite": {"_count": 1, "unconscious": {"_count": 1}}, "drew": {"_count": 1, "on": {"_count": 1}}}, "traffic": {"_count": 7, "jam": {"_count": 1, "he": {"_count": 1}}, "moved": {"_count": 1, "on": {"_count": 1}}, "lights": {"_count": 2, "": {"_count": 2}}, "on": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "jam": {"_count": 10, "he": {"_count": 1, "couldnt": {"_count": 1}}, "doughnuts": {"_count": 1, "trifle": {"_count": 1}}, "jar": {"_count": 2, "": {"_count": 1}, "beside": {"_count": 1}}, "doughnut": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "her": {"_count": 1}, "check": {"_count": 1}}, "tart": {"_count": 2, "Hermione": {"_count": 1}, "": {"_count": 1}}, "preferences": {"_count": 1, "before": {"_count": 1}}}, "help": {"_count": 495, "noticing": {"_count": 9, "that": {"_count": 6}, "a": {"_count": 1}, "nervous": {"_count": 1}, "how": {"_count": 1}}, "it": {"_count": 11, "": {"_count": 7}, "said": {"_count": 1}, "he": {"_count": 2}, "resist": {"_count": 1}}, "trusting": {"_count": 2, "him": {"_count": 1}, "Albus": {"_count": 1}}, "": {"_count": 61, "!": {"_count": 7}, "?": {"_count": 7}, ".": {"_count": 47}}, "Harrys": {"_count": 1, "trunk": {"_count": 1}}, "you": {"_count": 49, "there": {"_count": 1}, "with": {"_count": 3}, "on": {"_count": 3}, "now": {"_count": 1}, "whichever": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 17}, "know": {"_count": 1}, "gave": {"_count": 1}, "think": {"_count": 1}, "Dumbledore": {"_count": 1}, "fight": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}, "decide": {"_count": 1}, "look": {"_count": 1}, "to": {"_count": 1}, "find": {"_count": 1}, "Ron": {"_count": 1}, "convince": {"_count": 1}, "much": {"_count": 1}, "of": {"_count": 1}, "Draco": {"_count": 1}, "and": {"_count": 1}, "Mr": {"_count": 1}, "Thats": {"_count": 1}, "get": {"_count": 1}, "today": {"_count": 1}}, "us": {"_count": 17, "win": {"_count": 1}, "if": {"_count": 1}, "tonight": {"_count": 1}, "against": {"_count": 1}, "But": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 3}, "turn": {"_count": 1}, "in": {"_count": 1}, "get": {"_count": 1}, "is": {"_count": 1}, "more": {"_count": 1}, "well": {"_count": 2}, "overthrow": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "thinking": {"_count": 7, "that": {"_count": 2}, "a": {"_count": 1}, "about": {"_count": 1}, "the": {"_count": 1}, "One": {"_count": 1}, "Harry": {"_count": 1}}, "him": {"_count": 41, "hang": {"_count": 1}, "so": {"_count": 1}, "get": {"_count": 1}, "apart": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 7}, "write": {"_count": 1}, "now": {"_count": 4}, "Miss": {"_count": 1}, "then": {"_count": 1}, "come": {"_count": 1}, "through": {"_count": 1}, "no": {"_count": 1}, "find": {"_count": 2}, "work": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 2}, "again": {"_count": 1}, "practice": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "a": {"_count": 1}, "become": {"_count": 1}, "save": {"_count": 1}, "persuade": {"_count": 1}, "fix": {"_count": 1}, "out": {"_count": 1}, "retrieve": {"_count": 1}, "escape": {"_count": 1}}, "overhearing": {"_count": 1, "what": {"_count": 1}}, "cheering": {"_count": 1, "with": {"_count": 1}}, "snarled": {"_count": 1, "Ron": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 21, "Dobby": {"_count": 1}, "he": {"_count": 2}, "Krum": {"_count": 1}, "lift": {"_count": 2}, "the": {"_count": 1}, "feel": {"_count": 4}, "fear": {"_count": 1}, "even": {"_count": 1}, "be": {"_count": 1}, "there": {"_count": 1}, "agree": {"_count": 1}, "she": {"_count": 2}, "Harry": {"_count": 1}, "notice": {"_count": 1}, "remember": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 4, "": {"_count": 1}, "whispered": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 4, "Harry": {"_count": 1}, "though": {"_count": 1}, "she": {"_count": 1}, "if": {"_count": 1}}, "came": {"_count": 2, "almost": {"_count": 1}, "at": {"_count": 1}}, "Harry": {"_count": 9, "noticed": {"_count": 1}, "began": {"_count": 1}, "gulp": {"_count": 1}, "Potter": {"_count": 2}, "": {"_count": 2}, "leapt": {"_count": 1}, "said": {"_count": 1}}, "feeling": {"_count": 9, "grateful": {"_count": 1}, "a": {"_count": 2}, "that": {"_count": 4}, "miserable": {"_count": 1}, "annoyed": {"_count": 1}}, "me": {"_count": 42, "understand": {"_count": 1}, "with": {"_count": 8}, "They": {"_count": 1}, "Tom": {"_count": 1}, "Riddle": {"_count": 1}, "Harry": {"_count": 2}, "There": {"_count": 1}, "gotta": {"_count": 1}, "": {"_count": 11}, "Sirius": {"_count": 1}, "Remus": {"_count": 1}, "search": {"_count": 1}, "if": {"_count": 2}, "win": {"_count": 1}, "Dad": {"_count": 1}, "Dobby": {"_count": 1}, "Snape": {"_count": 1}, "I": {"_count": 1}, "survive": {"_count": 1}, "said": {"_count": 1}, "support": {"_count": 1}, "feed": {"_count": 1}, "then": {"_count": 1}}, "said": {"_count": 8, "Lockhart": {"_count": 1}, "the": {"_count": 1}, "Rita": {"_count": 1}, "Malfoy": {"_count": 1}, "Nick": {"_count": 1}, "Harry": {"_count": 1}, "Voldemort": {"_count": 1}, "Dumbledore": {"_count": 1}}, "ourselves": {"_count": 1, "": {"_count": 1}}, "grinning": {"_count": 2, "even": {"_count": 1}, "broadly": {"_count": 1}}, "them": {"_count": 7, "": {"_count": 2}, "interpret": {"_count": 1}, "and": {"_count": 1}, "realize": {"_count": 1}, "onto": {"_count": 1}, "not": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "this": {"_count": 1}}, "will": {"_count": 1, "always": {"_count": 1}}, "when": {"_count": 2, "everyone": {"_count": 1}, "Dumbledore": {"_count": 1}}, "imagining": {"_count": 1, "what": {"_count": 1}}, "from": {"_count": 5, "Florean": {"_count": 1}, "Moony": {"_count": 1}, "my": {"_count": 1}, "filthy": {"_count": 1}, "me": {"_count": 1}}, "with": {"_count": 6, "some": {"_count": 1}, "a": {"_count": 1}, "all": {"_count": 1}, "breakfast": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "hearing": {"_count": 1, "Harry": {"_count": 1}}, "whoever": {"_count": 1, "it": {"_count": 1}}, "cutting": {"_count": 1, "up": {"_count": 1}}, "Neville": {"_count": 2, "put": {"_count": 1}, "in": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 10, "": {"_count": 4}, "down": {"_count": 1}, "pursue": {"_count": 1}, "up": {"_count": 1}, "he": {"_count": 1}, "son": {"_count": 1}, "through": {"_count": 1}}, "a": {"_count": 2, "new": {"_count": 1}, "boy": {"_count": 1}}, "Hagrid": {"_count": 4, "win": {"_count": 1}, "": {"_count": 1}, "put": {"_count": 1}, "out": {"_count": 1}}, "prepare": {"_count": 1, "a": {"_count": 1}}, "look": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 2, "Ron": {"_count": 1}, "a": {"_count": 1}}, "Hermione": {"_count": 3, "gasped": {"_count": 1}, "whispered": {"_count": 1}, "": {"_count": 1}}, "Another": {"_count": 1, "branch": {"_count": 1}}, "help": {"_count": 1, "Hermione": {"_count": 1}}, "your": {"_count": 2, "friend": {"_count": 1}, "mum": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 1}, "said": {"_count": 1}, "gave": {"_count": 1}}, "paying": {"_count": 1, "more": {"_count": 1}}, "Sirius": {"_count": 3, "": {"_count": 2}, "were": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "morning": {"_count": 1}}, "to": {"_count": 3, "him": {"_count": 1}, "Harry": {"_count": 1}, "be": {"_count": 1}}, "and": {"_count": 10, "they": {"_count": 1}, "protection": {"_count": 1}, "advice": {"_count": 1}, "then": {"_count": 2}, "hoped": {"_count": 1}, "we": {"_count": 1}, "looking": {"_count": 1}, "encouragement": {"_count": 1}, "guidance": {"_count": 1}}, "Bellowing": {"_count": 1, "like": {"_count": 1}}, "Bill": {"_count": 2, "and": {"_count": 2}}, "because": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 3, "Ministry": {"_count": 1}, "Order": {"_count": 1}, "Death": {"_count": 1}}, "of": {"_count": 2, "any": {"_count": 1}, "two": {"_count": 1}}, "rather": {"_count": 1, "as": {"_count": 1}}, "being": {"_count": 1, "related": {"_count": 1}}, "Thats": {"_count": 1, "right": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 3, "he": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}}, "not": {"_count": 2, "from": {"_count": 1}, "us": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "Cedric": {"_count": 1, "as": {"_count": 1}}, "solve": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "on": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Tonks": {"_count": 1, "joined": {"_count": 1}}, "himself": {"_count": 9, "": {"_count": 4}, "Abandoning": {"_count": 1}, "talking": {"_count": 1}, "he": {"_count": 2}, "but": {"_count": 1}}, "themselves": {"_count": 3, "to": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}}, "laughing": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 2, "it": {"_count": 1}, "him": {"_count": 1}}, "Professor": {"_count": 3, "Umbridge": {"_count": 1}, "McGonagall": {"_count": 1}, "Flitwick": {"_count": 1}}, "giving": {"_count": 1, "her": {"_count": 1}}, "glancing": {"_count": 1, "into": {"_count": 1}}, "visibility": {"_count": 1, "all": {"_count": 1}}, "Ginny": {"_count": 2, "up": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 4, "that": {"_count": 3}, "he": {"_count": 1}}, "others": {"_count": 1, "follow": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 2, "once": {"_count": 1}, "": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "humans": {"_count": 1, "": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}, "finding": {"_count": 1, "them": {"_count": 1}}, "Narcissa": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "protect": {"_count": 1, "you": {"_count": 1}}, "wondering": {"_count": 3, "why": {"_count": 1}, "whether": {"_count": 2}}, "much": {"_count": 1, "against": {"_count": 1}}, "yourself": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 1, "companionship": {"_count": 1}}, "herself": {"_count": 1, "to": {"_count": 1}}, "admiring": {"_count": 1, "her": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "himl": {"_count": 1, "said": {"_count": 1}}, "Malfoy": {"_count": 1, "he": {"_count": 1}}, "Scrimgeour": {"_count": 1, "get": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "McGonagall": {"_count": 1, "and": {"_count": 1}}, "get": {"_count": 1, "rid": {"_count": 1}}, "wanting": {"_count": 1, "all": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "fight": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "parents": {"_count": 1}}, "Potter": {"_count": 1, "to": {"_count": 1}}, "identify": {"_count": 1, "a": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "Mums": {"_count": 1, "stress": {"_count": 1}}, "show": {"_count": 1, "people": {"_count": 1}}, "understanding": {"_count": 1, "our": {"_count": 1}}, "remembering": {"_count": 1, "what": {"_count": 1}}, "I": {"_count": 2, "get": {"_count": 1}, "wanna": {"_count": 1}}, "hoping": {"_count": 1, "a": {"_count": 1}}, "yourselves": {"_count": 1, "to": {"_count": 1}}, "one": {"_count": 1, "with": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}, "Griphook": {"_count": 1, "and": {"_count": 1}}, "voicing": {"_count": 1, "whenever": {"_count": 1}}, "then": {"_count": 1, "doublecross": {"_count": 1}}, "suspecting": {"_count": 1, "that": {"_count": 1}}, "R": {"_count": 1, "HARRY": {"_count": 1}}, "Jets": {"_count": 1, "of": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}}, "noticing": {"_count": 42, "that": {"_count": 8, "there": {"_count": 2}, "everyone": {"_count": 1}, "Mr": {"_count": 1}, "Cho": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "she": {"_count": 1}}, "where": {"_count": 3, "Harry": {"_count": 1}, "he": {"_count": 2}}, "what": {"_count": 3, "he": {"_count": 2}, "was": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "?": {"_count": 2}}, "anything": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 1, "if": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "flew": {"_count": 1}}, "the": {"_count": 2, "fantastic": {"_count": 1}, "gentle": {"_count": 1}}, "a": {"_count": 1, "drawer": {"_count": 1}}, "nervous": {"_count": 1, "as": {"_count": 1}}, "this": {"_count": 1, "snatched": {"_count": 1}}, "dimly": {"_count": 1, "that": {"_count": 1}}, "Harry": {"_count": 1, "watching": {"_count": 1}}, "how": {"_count": 3, "the": {"_count": 1}, "clearly": {"_count": 1}, "Mrs": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 3}}, "him": {"_count": 1, "for": {"_count": 1}}, "Lavender": {"_count": 1, "tickling": {"_count": 1}}}, "seemed": {"_count": 1133, "to": {"_count": 783, "be": {"_count": 266}, "amuse": {"_count": 1}, "have": {"_count": 169}, "become": {"_count": 5}, "think": {"_count": 23}, "know": {"_count": 19}, "vanish": {"_count": 4}, "fill": {"_count": 4}, "tingle": {"_count": 2}, "cheer": {"_count": 2}, "move": {"_count": 1}, "like": {"_count": 4}, "really": {"_count": 1}, "end": {"_count": 1}, "happen": {"_count": 1}, "keep": {"_count": 2}, "hear": {"_count": 3}, "impress": {"_count": 1}, "hate": {"_count": 1}, "come": {"_count": 8}, "quiver": {"_count": 1}, "go": {"_count": 4}, "feature": {"_count": 1}, "give": {"_count": 3}, "want": {"_count": 5}, "melt": {"_count": 3}, "connect": {"_count": 1}, "worry": {"_count": 1}, "mean": {"_count": 1}, "stop": {"_count": 1}, "stiffen": {"_count": 1}, "regain": {"_count": 2}, "flicker": {"_count": 1}, "spread": {"_count": 2}, "scare": {"_count": 1}, "exist": {"_count": 1}, "feel": {"_count": 5}, "read": {"_count": 1}, "lead": {"_count": 1}, "heat": {"_count": 2}, "take": {"_count": 9}, "annoy": {"_count": 1}, "obey": {"_count": 1}, "rule": {"_count": 1}, "swim": {"_count": 2}, "grow": {"_count": 3}, "decide": {"_count": 8}, "Harry": {"_count": 10}, "double": {"_count": 1}, "jog": {"_count": 1}, "sharpen": {"_count": 1}, "burst": {"_count": 3}, "slip": {"_count": 1}, "ease": {"_count": 3}, "curl": {"_count": 1}, "hold": {"_count": 2}, "notice": {"_count": 2}, "him": {"_count": 5}, "fall": {"_count": 3}, "need": {"_count": 1}, "loom": {"_count": 1}, "cost": {"_count": 1}, "trigger": {"_count": 1}, "run": {"_count": 1}, "rise": {"_count": 2}, "fear": {"_count": 1}, "radiate": {"_count": 2}, "unclench": {"_count": 1}, "understand": {"_count": 3}, "reawaken": {"_count": 1}, "hang": {"_count": 2}, "recede": {"_count": 1}, "slacken": {"_count": 1}, "tauten": {"_count": 3}, "mind": {"_count": 1}, "crackle": {"_count": 1}, "bulge": {"_count": 2}, "shrivel": {"_count": 1}, "make": {"_count": 3}, "form": {"_count": 1}, "sap": {"_count": 1}, "reverberate": {"_count": 2}, "deflate": {"_count": 1}, "find": {"_count": 5}, "realize": {"_count": 4}, "pull": {"_count": 2}, "slide": {"_count": 1}, "prefer": {"_count": 1}, "sit": {"_count": 2}, "strain": {"_count": 1}, "wilt": {"_count": 1}, "tighten": {"_count": 1}, "pop": {"_count": 1}, "chorus": {"_count": 1}, "me": {"_count": 3}, "struggle": {"_count": 2}, "belong": {"_count": 1}, "bristle": {"_count": 1}, "offend": {"_count": 1}, "outweigh": {"_count": 1}, "hover": {"_count": 1}, "shine": {"_count": 2}, "lose": {"_count": 2}, "rouse": {"_count": 1}, "poke": {"_count": 1}, "float": {"_count": 1}, "get": {"_count": 1}, "clear": {"_count": 2}, "blaze": {"_count": 1}, "contain": {"_count": 1}, "glow": {"_count": 1}, "flood": {"_count": 1}, "gather": {"_count": 1}, "sag": {"_count": 1}, "drop": {"_count": 1}, "regard": {"_count": 1}, "scoop": {"_count": 1}, "dazzle": {"_count": 1}, "sink": {"_count": 1}, "illuminate": {"_count": 1}, "burn": {"_count": 4}, "merely": {"_count": 1}, "indicate": {"_count": 1}, "look": {"_count": 3}, "leap": {"_count": 1}, "root": {"_count": 1}, "shimmer": {"_count": 1}, "interest": {"_count": 1}, "consider": {"_count": 1}, "show": {"_count": 1}, "draw": {"_count": 3}, "shred": {"_count": 1}, "just": {"_count": 1}, "mock": {"_count": 1}, "pulse": {"_count": 1}, "emit": {"_count": 1}, "issue": {"_count": 2}, "hiss": {"_count": 1}, "teeter": {"_count": 1}, "expand": {"_count": 1}, "guess": {"_count": 1}, "recognize": {"_count": 2}, "drain": {"_count": 1}, "lie": {"_count": 1}, "dawn": {"_count": 1}, "hit": {"_count": 1}, "regret": {"_count": 2}, "elate": {"_count": 1}, "hum": {"_count": 1}, "twinkle": {"_count": 1}, "share": {"_count": 1}, "see": {"_count": 1}, "follow": {"_count": 1}, "accept": {"_count": 1}, "force": {"_count": 1}, "steal": {"_count": 1}, "swell": {"_count": 1}, "hurtle": {"_count": 1}, "course": {"_count": 1}, "close": {"_count": 2}, "freeze": {"_count": 1}, "act": {"_count": 1}, "blow": {"_count": 1}, "diminish": {"_count": 1}, "remember": {"_count": 1}, "enthrall": {"_count": 1}, "relish": {"_count": 1}, "recoil": {"_count": 1}, "flow": {"_count": 1}, "vibrate": {"_count": 1}, "sense": {"_count": 1}, "crave": {"_count": 1}, "pierce": {"_count": 1}, "fail": {"_count": 2}, "overwhelm": {"_count": 1}, "associate": {"_count": 1}, "": {"_count": 1}, "shiver": {"_count": 1}, "litter": {"_count": 1}, "fly": {"_count": 2}, "shrink": {"_count": 1}, "flick": {"_count": 1}, "peer": {"_count": 1}, "emanate": {"_count": 1}, "invent": {"_count": 1}, "press": {"_count": 1}, "breathe": {"_count": 1}, "occur": {"_count": 1}, "arrive": {"_count": 1}}, "not": {"_count": 6, "to": {"_count": 5}, "only": {"_count": 1}}, "that": {"_count": 15, "Professor": {"_count": 1}, "the": {"_count": 2}, "Fred": {"_count": 1}, "Moodys": {"_count": 1}, "Madame": {"_count": 1}, "Hagrid": {"_count": 1}, "Kreacher": {"_count": 1}, "Hermione": {"_count": 1}, "every": {"_count": 1}, "she": {"_count": 1}, "Dudley": {"_count": 1}, "to": {"_count": 1}, "like": {"_count": 1}, "he": {"_count": 1}}, "like": {"_count": 14, "hours": {"_count": 2}, "no": {"_count": 2}, "at": {"_count": 1}, "their": {"_count": 1}, "an": {"_count": 2}, "about": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 3}, "it": {"_count": 1}}, "about": {"_count": 2, "to": {"_count": 2}}, "she": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 8, "sort": {"_count": 1}, "easiest": {"_count": 1}, "obvious": {"_count": 1}, "very": {"_count": 1}, "school": {"_count": 1}, "right": {"_count": 1}, "Death": {"_count": 1}, "most": {"_count": 1}}, "ages": {"_count": 1, "ago": {"_count": 1}}, "an": {"_count": 4, "age": {"_count": 1}, "insane": {"_count": 1}, "odd": {"_count": 1}, "excellent": {"_count": 1}}, "Quirrells": {"_count": 1, "spell": {"_count": 1}}, "sharper": {"_count": 1, "than": {"_count": 1}}, "had": {"_count": 3, "sneaked": {"_count": 1}, "Hermione": {"_count": 1}, "flitted": {"_count": 1}}, "very": {"_count": 13, "cold": {"_count": 1}, "prone": {"_count": 1}, "disturbed": {"_count": 1}, "remote": {"_count": 1}, "taken": {"_count": 1}, "happy": {"_count": 1}, "funny": {"_count": 1}, "keen": {"_count": 1}, "reluctant": {"_count": 1}, "sleepy": {"_count": 1}, "quiet": {"_count": 1}, "tense": {"_count": 1}, "hungry": {"_count": 1}}, "as": {"_count": 6, "though": {"_count": 2}, "nothing": {"_count": 1}, "scared": {"_count": 2}, "an": {"_count": 1}}, "ready": {"_count": 3, "to": {"_count": 2}, "for": {"_count": 1}}, "he": {"_count": 7, "had": {"_count": 3}, "was": {"_count": 1}, "looked": {"_count": 1}, "thought": {"_count": 1}, "expected": {"_count": 1}}, "satisfied": {"_count": 3, "perhaps": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "glad": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 3, "more": {"_count": 2}, "angrier": {"_count": 1}}, "almost": {"_count": 3, "ordinary": {"_count": 1}, "helpless": {"_count": 1}, "as": {"_count": 1}}, "unaware": {"_count": 2, "of": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "foolish": {"_count": 2, "to": {"_count": 1}, "not": {"_count": 1}}, "pointless": {"_count": 1, "to": {"_count": 1}}, "numb": {"_count": 1, "with": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "constantly": {"_count": 1, "close": {"_count": 1}}, "more": {"_count": 4, "anxious": {"_count": 1}, "romantic": {"_count": 1}, "prudent": {"_count": 1}, "alert": {"_count": 1}}, "thoroughly": {"_count": 1, "pleased": {"_count": 1}}, "impossible": {"_count": 6, "that": {"_count": 5}, "": {"_count": 1}}, "beyond": {"_count": 1, "reason": {"_count": 1}}, "outraged": {"_count": 1, "that": {"_count": 1}}, "confirmed": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 6, "real": {"_count": 2}, "determined": {"_count": 1}, "important": {"_count": 1}, "tough": {"_count": 1}, "long": {"_count": 1}}, "too": {"_count": 10, "scared": {"_count": 1}, "transfixed": {"_count": 1}, "appalled": {"_count": 1}, "bothered": {"_count": 1}, "busy": {"_count": 2}, "distracted": {"_count": 1}, "good": {"_count": 2}, "tipsy": {"_count": 1}}, "genuinely": {"_count": 1, "concerned": {"_count": 1}}, "completely": {"_count": 6, "unimpressed": {"_count": 1}, "unaware": {"_count": 1}, "deserted": {"_count": 2}, "lost": {"_count": 1}, "relaxed": {"_count": 1}}, "a": {"_count": 15, "good": {"_count": 1}, "long": {"_count": 4}, "simple": {"_count": 1}, "million": {"_count": 1}, "little": {"_count": 3}, "serious": {"_count": 1}, "lifetime": {"_count": 1}, "charming": {"_count": 1}, "place": {"_count": 1}, "matter": {"_count": 1}}, "much": {"_count": 7, "less": {"_count": 1}, "quieter": {"_count": 1}, "more": {"_count": 2}, "disposed": {"_count": 1}, "too": {"_count": 1}, "longer": {"_count": 1}}, "quite": {"_count": 11, "unperturbed": {"_count": 1}, "as": {"_count": 2}, "appealing": {"_count": 1}, "different": {"_count": 1}, "determined": {"_count": 1}, "popular": {"_count": 1}, "unabashed": {"_count": 1}, "unaware": {"_count": 1}, "deserted": {"_count": 1}, "certain": {"_count": 1}}, "hacked": {"_count": 1, "off": {"_count": 1}}, "totally": {"_count": 1, "indifferent": {"_count": 1}}, "strangely": {"_count": 1, "wary": {"_count": 1}}, "oddly": {"_count": 2, "tense": {"_count": 1}, "lumpy": {"_count": 1}}, "mildly": {"_count": 1, "interested": {"_count": 1}}, "somehow": {"_count": 3, "much": {"_count": 1}, "rougher": {"_count": 1}, "closer": {"_count": 1}}, "Dumbledore": {"_count": 2, "reached": {"_count": 1}, "had": {"_count": 1}}, "distant": {"_count": 1, "with": {"_count": 1}}, "determined": {"_count": 8, "to": {"_count": 5}, "that": {"_count": 1}, "at": {"_count": 1}, "not": {"_count": 1}}, "keenest": {"_count": 1, "to": {"_count": 1}}, "furious": {"_count": 1, "about": {"_count": 1}}, "perfectly": {"_count": 3, "clear": {"_count": 1}, "unconcerned": {"_count": 1}, "untroubled": {"_count": 1}}, "intent": {"_count": 2, "on": {"_count": 2}}, "really": {"_count": 2, "weak": {"_count": 1}, "interested": {"_count": 1}}, "decided": {"_count": 1, "": {"_count": 1}}, "frightened": {"_count": 2, "beyond": {"_count": 1}, "and": {"_count": 1}}, "assured": {"_count": 1, "": {"_count": 1}}, "important": {"_count": 1, "to": {"_count": 1}}, "likely": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "outside": {"_count": 1, "his": {"_count": 1}}, "Fudge": {"_count": 1, "could": {"_count": 1}}, "incapable": {"_count": 1, "of": {"_count": 1}}, "horribly": {"_count": 1, "flustered": {"_count": 1}}, "oblivious": {"_count": 1, "to": {"_count": 1}}, "five": {"_count": 1, "times": {"_count": 1}}, "warmer": {"_count": 1, "and": {"_count": 1}}, "extraordinary": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "reckless": {"_count": 1, "if": {"_count": 1}}, "able": {"_count": 2, "to": {"_count": 2}}, "hours": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "sincerely": {"_count": 2, "sorry": {"_count": 1}, "interested": {"_count": 1}}, "farfetched": {"_count": 1, "Hermione": {"_count": 1}}, "keener": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "first": {"_count": 1}}, "however": {"_count": 2, "that": {"_count": 1}, "to": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "elongated": {"_count": 1, "by": {"_count": 1}}, "ter": {"_count": 1, "be": {"_count": 1}}, "wide": {"_count": 1, "awake": {"_count": 1}}, "worried": {"_count": 1, "about": {"_count": 1}}, "overlarge": {"_count": 1, "and": {"_count": 1}}, "positively": {"_count": 1, "gleeful": {"_count": 1}}, "glued": {"_count": 1, "together": {"_count": 1}}, "neither": {"_count": 1, "perturbed": {"_count": 1}}, "unable": {"_count": 9, "to": {"_count": 9}}, "aware": {"_count": 1, "for": {"_count": 1}}, "unchanged": {"_count": 1, "was": {"_count": 1}}, "saturated": {"_count": 1, "with": {"_count": 1}}, "threatening": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "highly": {"_count": 1, "reluctant": {"_count": 1}}, "incredible": {"_count": 3, "to": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "with": {"_count": 1, "indignation": {"_count": 1}}, "insurmountable": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "momentarily": {"_count": 2, "frozen": {"_count": 1}, "surprised": {"_count": 1}}, "suspended": {"_count": 1, "in": {"_count": 1}}, "beside": {"_count": 1, "himself": {"_count": 1}}, "difficult": {"_count": 1, "again": {"_count": 1}}, "plain": {"_count": 1, "to": {"_count": 1}}, "rather": {"_count": 1, "pleased": {"_count": 1}}, "stopped": {"_count": 1, "spinning": {"_count": 1}}, "stunned": {"_count": 2, "into": {"_count": 1}, "that": {"_count": 1}}, "remarkably": {"_count": 1, "unabashed": {"_count": 1}}, "uncertain": {"_count": 1, "what": {"_count": 1}}, "taken": {"_count": 1, "aback": {"_count": 1}}, "agitated": {"_count": 1, "": {"_count": 1}}, "vain": {"_count": 1, "and": {"_count": 1}}, "slightly": {"_count": 1, "punchdrunk": {"_count": 1}}, "afraid": {"_count": 1, "to": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "rude": {"_count": 1, "to": {"_count": 1}}, "older": {"_count": 1, "and": {"_count": 1}}, "unlikely": {"_count": 3, "ever": {"_count": 2}, "that": {"_count": 1}}, "magnified": {"_count": 2, "tenfold": {"_count": 1}, "in": {"_count": 1}}, "stiff": {"_count": 1, "and": {"_count": 1}}, "deserted": {"_count": 2, "": {"_count": 2}}, "less": {"_count": 5, "likely": {"_count": 1}, "impressed": {"_count": 1}, "powerful": {"_count": 1}, "important": {"_count": 1}, "suspicious": {"_count": 1}}, "part": {"_count": 1, "sitting": {"_count": 1}}, "awed": {"_count": 1, "rather": {"_count": 1}}, "polite": {"_count": 1, "quiet": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "paralyzed": {"_count": 1, "by": {"_count": 1}}, "embarrassingly": {"_count": 1, "feeble": {"_count": 1}}, "suddenly": {"_count": 1, "not": {"_count": 1}}, "clear": {"_count": 1, "to": {"_count": 1}}, "most": {"_count": 2, "ominous": {"_count": 1}, "unlikely": {"_count": 1}}, "cheery": {"_count": 1, "too": {"_count": 1}}, "no": {"_count": 1, "chance": {"_count": 1}}, "indicated": {"_count": 1, "during": {"_count": 1}}, "illdisposed": {"_count": 1, "toward": {"_count": 1}}, "total": {"_count": 1, "darkness": {"_count": 1}}, "wholly": {"_count": 1, "in": {"_count": 1}}, "cowed": {"_count": 1, "": {"_count": 1}}, "quiet": {"_count": 1, "": {"_count": 1}}, "otherwise": {"_count": 1, "unscathed": {"_count": 1}}, "just": {"_count": 2, "the": {"_count": 1}, "as": {"_count": 1}}, "remote": {"_count": 1, "as": {"_count": 1}}, "incredibly": {"_count": 1, "unlikely": {"_count": 1}}, "unsure": {"_count": 1, "whether": {"_count": 1}}, "sure": {"_count": 1, "Oh": {"_count": 1}}, "fuzzy": {"_count": 1, "slow": {"_count": 1}}, "branded": {"_count": 1, "on": {"_count": 1}}, "down": {"_count": 2, "but": {"_count": 1}, "had": {"_count": 1}}, "than": {"_count": 1, "to": {"_count": 1}}, "darker": {"_count": 1, "than": {"_count": 1}}, "laughably": {"_count": 1, "childish": {"_count": 1}}, "ten": {"_count": 1, "Dean": {"_count": 1}}, "only": {"_count": 1, "too": {"_count": 1}}, "distracted": {"_count": 1, "by": {"_count": 1}}, "simply": {"_count": 1, "to": {"_count": 1}}, "lengthy": {"_count": 1, "with": {"_count": 1}}, "clumsier": {"_count": 1, "and": {"_count": 1}}, "simultaneously": {"_count": 1, "terrified": {"_count": 1}}, "barely": {"_count": 1, "conscious": {"_count": 1}}, "drove": {"_count": 1, "Voldemort": {"_count": 1}}, "deep": {"_count": 1, "enough": {"_count": 1}}, "vast": {"_count": 1, "in": {"_count": 1}}, "dazed": {"_count": 1, "by": {"_count": 1}}, "untouched": {"_count": 1, "by": {"_count": 1}}, "set": {"_count": 1, "on": {"_count": 1}}, "upon": {"_count": 1, "one": {"_count": 1}}, "lost": {"_count": 1, "in": {"_count": 1}}, "temporarily": {"_count": 1, "at": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "wrenched": {"_count": 1, "from": {"_count": 1}}, "unstoppable": {"_count": 1, "and": {"_count": 1}}}, "lot": {"_count": 329, "of": {"_count": 129, "strangely": {"_count": 1}, "funnylooking": {"_count": 1}, "Scotch": {"_count": 1}, "water": {"_count": 2}, "green": {"_count": 2}, "new": {"_count": 1}, "them": {"_count": 6}, "funny": {"_count": 1}, "complicated": {"_count": 1}, "time": {"_count": 8}, "trouble": {"_count": 7}, "explaining": {"_count": 1}, "the": {"_count": 3}, "fun": {"_count": 1}, "wizards": {"_count": 1}, "letters": {"_count": 1}, "Ginnys": {"_count": 1}, "wizard": {"_count": 1}, "hot": {"_count": 1}, "muttering": {"_count": 1}, "exercise": {"_count": 1}, "budgies": {"_count": 1}, "pressure": {"_count": 1}, "activity": {"_count": 1}, "work": {"_count": 2}, "holiday": {"_count": 1}, "things": {"_count": 5}, "mustache": {"_count": 1}, "wine": {"_count": 1}, "self": {"_count": 1}, "guesswork": {"_count": 1}, "influence": {"_count": 2}, "names": {"_count": 1}, "people": {"_count": 9}, "information": {"_count": 2}, "weight": {"_count": 1}, "lives": {"_count": 1}, "proposals": {"_count": 1}, "you": {"_count": 1}, "choice": {"_count": 1}, "emphasis": {"_count": 1}, "rivalry": {"_count": 1}, "witches": {"_count": 2}, "help": {"_count": 3}, "herself": {"_count": 1}, "other": {"_count": 1}, "difficulty": {"_count": 1}, "odd": {"_count": 1}, "attacks": {"_count": 1}, "strain": {"_count": 1}, "respect": {"_count": 1}, "private": {"_count": 1}, "money": {"_count": 1}, "concentration": {"_count": 1}, "comfort": {"_count": 1}, "commotion": {"_count": 1}, "Harry": {"_count": 1}, "madeup": {"_count": 1}, "shoddy": {"_count": 1}, "Quidditch": {"_count": 1}, "confidence": {"_count": 1}, "English": {"_count": 1}, "ash": {"_count": 1}, "tedious": {"_count": 1}, "each": {"_count": 1}, "publicity": {"_count": 1}, "use": {"_count": 1}, "explanations": {"_count": 1}, "Phlegm": {"_count": 1}, "your": {"_count": 1}, "boys": {"_count": 1}, "Toms": {"_count": 1}, "James": {"_count": 1}, "good": {"_count": 2}, "blood": {"_count": 1}, "important": {"_count": 1}, "claptrap": {"_count": 1}, "Muggleborns": {"_count": 1}, "unsaid": {"_count": 1}, "excellent": {"_count": 1}, "research": {"_count": 1}, "offices": {"_count": 1}, "hills": {"_count": 1}, "nonsense": {"_count": 1}, "em": {"_count": 2}, "Mudblood": {"_count": 1}, "it": {"_count": 1}}, "his": {"_count": 1, "mind": {"_count": 1}}, "harder": {"_count": 1, "to": {"_count": 1}}, "like": {"_count": 4, "Uncle": {"_count": 1}, "yer": {"_count": 1}, "directing": {"_count": 1}, "you": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "said": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 36, ".": {"_count": 26}, "!": {"_count": 7}, "?": {"_count": 3}}, "at": {"_count": 2, "Hagrid": {"_count": 1}, "once": {"_count": 1}}, "here": {"_count": 1, "another": {"_count": 1}}, "o": {"_count": 5, "duffers": {"_count": 1}, "funny": {"_count": 2}, "work": {"_count": 1}, "room": {"_count": 1}}, "more": {"_count": 15, "study": {"_count": 2}, "comfortable": {"_count": 1}, "interest": {"_count": 1}, "to": {"_count": 1}, "hanging": {"_count": 1}, "difficult": {"_count": 1}, "trouble": {"_count": 1}, "explicit": {"_count": 1}, "of": {"_count": 2}, "than": {"_count": 1}, "rebellious": {"_count": 1}, "time": {"_count": 1}, "vicious": {"_count": 1}}, "to": {"_count": 11, "live": {"_count": 1}, "remember": {"_count": 1}, "do": {"_count": 2}, "learn": {"_count": 1}, "be": {"_count": 2}, "say": {"_count": 1}, "me": {"_count": 1}, "help": {"_count": 1}, "tell": {"_count": 1}}, "but": {"_count": 3, "they": {"_count": 1}, "I": {"_count": 1}, "Ron": {"_count": 1}}, "lately": {"_count": 3, "I": {"_count": 1}, "": {"_count": 2}}, "bigger": {"_count": 5, "than": {"_count": 5}}, "better": {"_count": 6, "than": {"_count": 3}, "if": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "didnt": {"_count": 1}}, "about": {"_count": 5, "the": {"_count": 1}, "Professor": {"_count": 1}, "him": {"_count": 1}, "Dobby": {"_count": 1}, "it": {"_count": 1}}, "great": {"_count": 1, "with": {"_count": 1}}, "braver": {"_count": 1, "now": {"_count": 1}}, "up": {"_count": 2, "ter": {"_count": 1}, "too": {"_count": 1}}, "have": {"_count": 2, "taken": {"_count": 1}, "the": {"_count": 1}}, "wont": {"_count": 1, "come": {"_count": 1}}, "quicker": {"_count": 1, "dear": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "less": {"_count": 1, "hassle": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "our": {"_count": 1}, "that": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "happier": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "or": {"_count": 1, "Madam": {"_count": 1}}, "since": {"_count": 1, "Chris": {"_count": 1}}, "in": {"_count": 6, "trouble": {"_count": 2}, "a": {"_count": 1}, "Potions": {"_count": 1}, "case": {"_count": 1}, "the": {"_count": 1}}, "arent": {"_count": 2, "very": {"_count": 1}, "allowed": {"_count": 1}}, "which": {"_count": 1, "seemed": {"_count": 1}}, "as": {"_count": 1, "everybody": {"_count": 1}}, "smaller": {"_count": 1, "than": {"_count": 1}}, "wear": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 3}, "Charlie": {"_count": 1}}, "get": {"_count": 2, "into": {"_count": 1}, "their": {"_count": 1}}, "you": {"_count": 2, "mean": {"_count": 1}, "need": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "setting": {"_count": 1}}, "a": {"_count": 1, "boy": {"_count": 1}}, "even": {"_count": 1, "Hagrid": {"_count": 1}}, "loose": {"_count": 1, "on": {"_count": 1}}, "she": {"_count": 1, "replied": {"_count": 1}}, "safer": {"_count": 1, "this": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "blew": {"_count": 1, "up": {"_count": 1}}, "got": {"_count": 2, "dates": {"_count": 1}, "in": {"_count": 1}}, "closer": {"_count": 1, "from": {"_count": 1}}, "tougher": {"_count": 1, "than": {"_count": 1}}, "colder": {"_count": 1, "where": {"_count": 1}}, "keep": {"_count": 1, "gabbling": {"_count": 1}}, "further": {"_count": 1, "on": {"_count": 1}}, "keener": {"_count": 1, "on": {"_count": 1}}, "sneaking": {"_count": 1, "out": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "ave": {"_count": 1, "ter": {"_count": 1}}, "dont": {"_count": 1, "get": {"_count": 1}}, "then": {"_count": 1, "Dung": {"_count": 1}}, "And": {"_count": 1, "treat": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "can": {"_count": 2, "happen": {"_count": 1}, "wait": {"_count": 1}}, "had": {"_count": 4, "an": {"_count": 1}, "beaten": {"_count": 1}, "better": {"_count": 2}}, "raided": {"_count": 1, "the": {"_count": 1}}, "don": {"_count": 1, "get": {"_count": 1}}, "yehll": {"_count": 1, "never": {"_count": 1}}, "disappeared": {"_count": 1, "right": {"_count": 1}}, "who": {"_count": 1, "wont": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "play": {"_count": 1, "Quidditch": {"_count": 1}}, "worse": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "pureblood": {"_count": 1}}, "easier": {"_count": 1, "DONT": {"_count": 1}}, "Demelza": {"_count": 1, "": {"_count": 1}}, "older": {"_count": 1, "than": {"_count": 1}}, "panted": {"_count": 1, "Harry": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "ter": {"_count": 1, "do": {"_count": 1}}, "are": {"_count": 1, "okay": {"_count": 1}}, "right": {"_count": 1, "said": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "quiet": {"_count": 1, "these": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "would": {"_count": 1, "like": {"_count": 1}}, "cooler": {"_count": 1, "than": {"_count": 1}}, "that": {"_count": 1, "got": {"_count": 1}}, "traffick": {"_count": 1, "potions": {"_count": 1}}, "cleaner": {"_count": 1, "and": {"_count": 1}}}, "strangely": {"_count": 42, "dressed": {"_count": 1, "people": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "kind": {"_count": 1, "until": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "small": {"_count": 1, "without": {"_count": 1}}, "magnified": {"_count": 1, "in": {"_count": 1}}, "lopsided": {"_count": 2, "": {"_count": 1}, "creature": {"_count": 1}}, "croaky": {"_count": 1, "voice": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "blurred": {"_count": 1, "around": {"_count": 1}}, "hot": {"_count": 1, "tail": {"_count": 1}}, "familiar": {"_count": 3, "": {"_count": 2}, "room": {"_count": 1}}, "empty": {"_count": 1, "even": {"_count": 1}}, "high": {"_count": 1, "pitched": {"_count": 1}}, "unreal": {"_count": 1, "and": {"_count": 1}}, "highpitched": {"_count": 1, "and": {"_count": 1}}, "unfocused": {"_count": 2, "": {"_count": 1}, "look": {"_count": 1}}, "wary": {"_count": 1, "of": {"_count": 1}}, "skeletal": {"_count": 1, "look": {"_count": 1}}, "impressive": {"_count": 1, "silhouetted": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "across": {"_count": 1, "the": {"_count": 1}}, "enlarged": {"_count": 1, "eyes": {"_count": 1}}, "muffled": {"_count": 1, "now": {"_count": 1}}, "triumphant": {"_count": 1, "look": {"_count": 1}}, "reluctant": {"_count": 1, "to": {"_count": 1}}, "distant": {"_count": 1, "": {"_count": 1}}, "misshapen": {"_count": 1, "": {"_count": 1}}, "airless": {"_count": 1, "": {"_count": 1}}, "contorted": {"_count": 1, "body": {"_count": 1}}, "blank": {"_count": 2, "and": {"_count": 1}, "face": {"_count": 1}}, "heavy": {"_count": 1, "he": {"_count": 1}}, "diminished": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "lonely": {"_count": 1, "": {"_count": 1}}}, "dressed": {"_count": 63, "people": {"_count": 1, "about": {"_count": 1}}, "in": {"_count": 18, "funny": {"_count": 1}, "Muggle": {"_count": 1}, "robes": {"_count": 1}, "blue": {"_count": 1}, "a": {"_count": 5}, "silence": {"_count": 1}, "an": {"_count": 1}, "jeans": {"_count": 1}, "the": {"_count": 1}, "black": {"_count": 1}, "nothing": {"_count": 1}, "sleek": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}, "all": {"_count": 2, "in": {"_count": 2}}, "silently": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "Hogwarts": {"_count": 1}}, "and": {"_count": 9, "went": {"_count": 2}, "carrying": {"_count": 2}, "was": {"_count": 1}, "gone": {"_count": 1}, "removing": {"_count": 1}, "breakfasted": {"_count": 1}, "talking": {"_count": 1}}, "as": {"_count": 4, "quickly": {"_count": 1}, "Muggles": {"_count": 1}, "though": {"_count": 1}, "pumpkins": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "went": {"_count": 1, "for": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "before": {"_count": 1, "going": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "tonight": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "head": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "so": {"_count": 1, "inattentively": {"_count": 1}}, "except": {"_count": 1, "Mrs": {"_count": 1}}, "at": {"_count": 2, "top": {"_count": 2}}, "they": {"_count": 1, "could": {"_count": 1}}, "particularly": {"_count": 1, "carefully": {"_count": 1}}, "padding": {"_count": 1, "themselves": {"_count": 1}}, "thinking": {"_count": 1, "hard": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 1, "traveling": {"_count": 1}}, "theres": {"_count": 1, "luggage": {"_count": 1}}, "the": {"_count": 1, "fake": {"_count": 1}}, "bespectacled": {"_count": 1, "and": {"_count": 1}}, "men": {"_count": 1, "descending": {"_count": 1}}, "but": {"_count": 1, "drenched": {"_count": 1}}}, "People": {"_count": 75, "in": {"_count": 1, "cloaks": {"_count": 1}}, "are": {"_count": 5, "being": {"_count": 1}, "always": {"_count": 1}, "terrified": {"_count": 1}, "disappearing": {"_count": 1}, "dying": {"_count": 1}}, "throughout": {"_count": 2, "the": {"_count": 2}}, "who": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "stared": {"_count": 3, "more": {"_count": 1}, "at": {"_count": 1}, "shamelessly": {"_count": 1}}, "jostled": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "pushed": {"_count": 1, "their": {"_count": 1}}, "lining": {"_count": 1, "up": {"_count": 1}}, "will": {"_count": 1, "insist": {"_count": 1}}, "goggled": {"_count": 1, "through": {"_count": 1}}, "were": {"_count": 15, "still": {"_count": 1}, "chasing": {"_count": 1}, "striding": {"_count": 1}, "disembarking": {"_count": 1}, "cheering": {"_count": 1}, "starting": {"_count": 1}, "staring": {"_count": 1}, "coming": {"_count": 1}, "shouting": {"_count": 1}, "filing": {"_count": 1}, "interrogating": {"_count": 1}, "whispering": {"_count": 1}, "queuing": {"_count": 1}, "moving": {"_count": 1}, "dying": {"_count": 1}}, "arent": {"_count": 1, "too": {"_count": 1}}, "herell": {"_count": 1, "believe": {"_count": 1}}, "shrieked": {"_count": 1, "as": {"_count": 1}}, "say": {"_count": 1, "Muggle": {"_count": 1}}, "swapped": {"_count": 1, "exasperated": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "with": {"_count": 1, "cheaper": {"_count": 1}}, "usually": {"_count": 1, "just": {"_count": 1}}, "high": {"_count": 1, "high": {"_count": 1}}, "keep": {"_count": 2, "sending": {"_count": 1}, "looking": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 2}}, "have": {"_count": 5, "died": {"_count": 1}, "written": {"_count": 1}, "said": {"_count": 1}, "been": {"_count": 1}, "looked": {"_count": 1}}, "gawping": {"_count": 1, "at": {"_count": 1}}, "passing": {"_count": 1, "him": {"_count": 1}}, "kept": {"_count": 1, "wishing": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "got": {"_count": 1, "bored": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "like": {"_count": 1, "you": {"_count": 1}}, "froze": {"_count": 1, "for": {"_count": 1}}, "just": {"_count": 1, "dont": {"_count": 1}}, "should": {"_count": 1, "know": {"_count": 1}}, "exiting": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "dont": {"_count": 1, "like": {"_count": 1}}, "can": {"_count": 1, "come": {"_count": 1}}, "take": {"_count": 1, "them": {"_count": 1}}, "expect": {"_count": 1, "you": {"_count": 1}}, "believe": {"_count": 1, "you": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "wouldnt": {"_count": 1, "like": {"_count": 1}}, "wont": {"_count": 1, "let": {"_count": 1}}}, "cloaks": {"_count": 44, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "big": {"_count": 1, "enough": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "they": {"_count": 1, "watched": {"_count": 1}}, "and": {"_count": 8, "battered": {"_count": 1}, "scarves": {"_count": 1}, "rushed": {"_count": 1}, "thrown": {"_count": 1}, "started": {"_count": 1}, "theyre": {"_count": 1}, "their": {"_count": 1}, "from": {"_count": 1}}, "swung": {"_count": 1, "into": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "soaked": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "some": {"_count": 1}}, "more": {"_count": 1, "closely": {"_count": 1}}, "repeated": {"_count": 1, "Madam": {"_count": 1}}, "their": {"_count": 1, "hats": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "scarves": {"_count": 1, "and": {"_count": 1}}, "tightly": {"_count": 1, "around": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "flapped": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "stood": {"_count": 1, "silent": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}, "others": {"_count": 1, "in": {"_count": 1}}, "cramming": {"_count": 1, "themselves": {"_count": 1}}}, "who": {"_count": 2644, "dressed": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 491, "a": {"_count": 7}, "gone": {"_count": 6}, "expected": {"_count": 5}, "never": {"_count": 7}, "to": {"_count": 5}, "been": {"_count": 84}, "her": {"_count": 3}, "golden": {"_count": 1}, "all": {"_count": 4}, "done": {"_count": 2}, "finished": {"_count": 2}, "reached": {"_count": 1}, "received": {"_count": 1}, "woken": {"_count": 1}, "already": {"_count": 12}, "another": {"_count": 1}, "remained": {"_count": 4}, "approached": {"_count": 2}, "the": {"_count": 5}, "wandered": {"_count": 1}, "caught": {"_count": 2}, "brought": {"_count": 2}, "opened": {"_count": 2}, "so": {"_count": 3}, "sunk": {"_count": 1}, "grown": {"_count": 2}, "answered": {"_count": 1}, "climbed": {"_count": 1}, "taken": {"_count": 6}, "always": {"_count": 4}, "looked": {"_count": 2}, "saved": {"_count": 2}, "cleared": {"_count": 1}, "seated": {"_count": 1}, "gotten": {"_count": 3}, "had": {"_count": 2}, "followed": {"_count": 6}, "resolved": {"_count": 1}, "obviously": {"_count": 3}, "spoken": {"_count": 4}, "just": {"_count": 26}, "spread": {"_count": 1}, "fought": {"_count": 1}, "thrown": {"_count": 1}, "almost": {"_count": 1}, "now": {"_count": 5}, "laughed": {"_count": 2}, "stopped": {"_count": 4}, "knocked": {"_count": 1}, "come": {"_count": 6}, "backed": {"_count": 1}, "lost": {"_count": 4}, "each": {"_count": 1}, "shouted": {"_count": 1}, "inherited": {"_count": 1}, "risen": {"_count": 1}, "pulled": {"_count": 1}, "begun": {"_count": 1}, "conjured": {"_count": 1}, "evidently": {"_count": 2}, "occupied": {"_count": 1}, "lasted": {"_count": 1}, "resigned": {"_count": 1}, "only": {"_count": 1}, "not": {"_count": 9}, "turned": {"_count": 7}, "played": {"_count": 1}, "flitted": {"_count": 1}, "ever": {"_count": 1}, "pretended": {"_count": 1}, "warned": {"_count": 1}, "asked": {"_count": 1}, "changed": {"_count": 1}, "read": {"_count": 2}, "picked": {"_count": 1}, "told": {"_count": 3}, "released": {"_count": 1}, "some": {"_count": 3}, "tortured": {"_count": 1}, "torn": {"_count": 1}, "ruined": {"_count": 1}, "met": {"_count": 1}, "his": {"_count": 2}, "screamed": {"_count": 1}, "seen": {"_count": 4}, "faked": {"_count": 1}, "hated": {"_count": 1}, "stripped": {"_count": 1}, "heard": {"_count": 1}, "set": {"_count": 2}, "bustled": {"_count": 1}, "made": {"_count": 4}, "entered": {"_count": 3}, "served": {"_count": 1}, "once": {"_count": 3}, "an": {"_count": 2}, "tried": {"_count": 2}, "long": {"_count": 3}, "toppled": {"_count": 1}, "lured": {"_count": 1}, "dressed": {"_count": 1}, "edged": {"_count": 1}, "bent": {"_count": 1}, "stood": {"_count": 2}, "betrayed": {"_count": 1}, "died": {"_count": 2}, "squeezed": {"_count": 1}, "flung": {"_count": 1}, "clearly": {"_count": 3}, "raised": {"_count": 1}, "become": {"_count": 2}, "pelted": {"_count": 1}, "permission": {"_count": 2}, "tipped": {"_count": 1}, "curly": {"_count": 1}, "momentarily": {"_count": 1}, "signed": {"_count": 1}, "dismounted": {"_count": 1}, "hit": {"_count": 2}, "bounded": {"_count": 1}, "attacked": {"_count": 3}, "no": {"_count": 5}, "dropped": {"_count": 2}, "narrowly": {"_count": 1}, "lowered": {"_count": 1}, "got": {"_count": 1}, "grabbed": {"_count": 1}, "drifted": {"_count": 1}, "joined": {"_count": 1}, "watched": {"_count": 1}, "kicked": {"_count": 1}, "hastily": {"_count": 2}, "hold": {"_count": 1}, "hastened": {"_count": 1}, "arrived": {"_count": 2}, "dragged": {"_count": 1}, "both": {"_count": 1}, "such": {"_count": 1}, "weighed": {"_count": 1}, "mimicked": {"_count": 1}, "crawled": {"_count": 1}, "murdered": {"_count": 1}, "staggered": {"_count": 1}, "plainly": {"_count": 1}, "thrice": {"_count": 1}, "limped": {"_count": 1}, "announced": {"_count": 1}, "burst": {"_count": 1}, "committed": {"_count": 1}, "paused": {"_count": 2}, "settled": {"_count": 1}, "sat": {"_count": 2}, "first": {"_count": 1}, "chosen": {"_count": 1}, "noticed": {"_count": 3}, "succeeded": {"_count": 1}, "let": {"_count": 1}, "more": {"_count": 1}, "injured": {"_count": 1}, "outflown": {"_count": 1}, "managed": {"_count": 2}, "substituted": {"_count": 1}, "indeed": {"_count": 1}, "sleet": {"_count": 1}, "started": {"_count": 1}, "found": {"_count": 3}, "half": {"_count": 1}, "abandoned": {"_count": 1}, "eyes": {"_count": 1}, "jammed": {"_count": 1}, "demonstrated": {"_count": 1}, "admired": {"_count": 1}, "worked": {"_count": 1}, "visited": {"_count": 1}, "captained": {"_count": 1}, "overheard": {"_count": 1}, "carried": {"_count": 1}, "experienced": {"_count": 2}, "caused": {"_count": 1}, "fled": {"_count": 1}, "helped": {"_count": 1}, "missed": {"_count": 1}, "checked": {"_count": 1}, "listened": {"_count": 1}, "slowed": {"_count": 1}, "also": {"_count": 1}, "appeared": {"_count": 1}, "jeered": {"_count": 2}, "drained": {"_count": 1}, "waited": {"_count": 1}, "prodigious": {"_count": 1}, "presided": {"_count": 1}, "cast": {"_count": 1}, "tied": {"_count": 1}, "pilfered": {"_count": 1}, "really": {"_count": 1}, "witnessed": {"_count": 1}, "known": {"_count": 1}, "struck": {"_count": 1}, "at": {"_count": 1}, "moved": {"_count": 1}, "perched": {"_count": 1}, "wanted": {"_count": 1}, "snatched": {"_count": 1}, "stretched": {"_count": 1}, "conquered": {"_count": 1}, "sprinted": {"_count": 1}, "sent": {"_count": 1}, "clashed": {"_count": 1}, "insisted": {"_count": 1}, "preferred": {"_count": 1}, "sidled": {"_count": 1}, "paid": {"_count": 1}, "stolen": {"_count": 1}, "stooped": {"_count": 1}, "surely": {"_count": 1}, "defended": {"_count": 1}, "sought": {"_count": 1}, "killed": {"_count": 1}, "emerged": {"_count": 1}, "shown": {"_count": 1}, "lived": {"_count": 1}, "leapt": {"_count": 1}, "survived": {"_count": 1}, "tampered": {"_count": 1}, "stuck": {"_count": 1}}, "was": {"_count": 548, "wearing": {"_count": 18}, "unsticking": {"_count": 1}, "vacationing": {"_count": 1}, "crouching": {"_count": 2}, "so": {"_count": 3}, "on": {"_count": 3}, "pulling": {"_count": 3}, "quite": {"_count": 2}, "talking": {"_count": 4}, "holding": {"_count": 8}, "saying": {"_count": 1}, "near": {"_count": 1}, "scratching": {"_count": 1}, "checking": {"_count": 2}, "whispering": {"_count": 2}, "starting": {"_count": 4}, "passing": {"_count": 4}, "pouring": {"_count": 1}, "busy": {"_count": 1}, "determined": {"_count": 2}, "nearest": {"_count": 4}, "still": {"_count": 43}, "good": {"_count": 4}, "measuring": {"_count": 1}, "circling": {"_count": 1}, "looking": {"_count": 24}, "now": {"_count": 32}, "almost": {"_count": 2}, "trying": {"_count": 7}, "asleep": {"_count": 1}, "feeling": {"_count": 2}, "snoozing": {"_count": 2}, "watching": {"_count": 7}, "having": {"_count": 1}, "clicking": {"_count": 2}, "causing": {"_count": 2}, "whacking": {"_count": 1}, "wishing": {"_count": 1}, "obviously": {"_count": 1}, "used": {"_count": 2}, "halfway": {"_count": 3}, "born": {"_count": 2}, "carefully": {"_count": 1}, "commentating": {"_count": 1}, "rolling": {"_count": 1}, "Snapes": {"_count": 1}, "polishing": {"_count": 1}, "already": {"_count": 4}, "sitting": {"_count": 19}, "trembling": {"_count": 1}, "pretending": {"_count": 1}, "twirling": {"_count": 1}, "killed": {"_count": 1}, "very": {"_count": 3}, "Petrified": {"_count": 1}, "writing": {"_count": 1}, "crying": {"_count": 2}, "taking": {"_count": 4}, "once": {"_count": 1}, "one": {"_count": 1}, "rooted": {"_count": 1}, "in": {"_count": 9}, "bony": {"_count": 1}, "swinging": {"_count": 1}, "plainly": {"_count": 2}, "huddled": {"_count": 3}, "a": {"_count": 5}, "rubyred": {"_count": 1}, "right": {"_count": 3}, "cowering": {"_count": 1}, "floating": {"_count": 1}, "pointing": {"_count": 2}, "standing": {"_count": 15}, "deeply": {"_count": 2}, "barely": {"_count": 2}, "streaking": {"_count": 1}, "shaking": {"_count": 5}, "deep": {"_count": 2}, "of": {"_count": 1}, "always": {"_count": 1}, "eating": {"_count": 1}, "supposed": {"_count": 3}, "shivering": {"_count": 2}, "forced": {"_count": 1}, "stretched": {"_count": 1}, "walking": {"_count": 1}, "acting": {"_count": 2}, "partnering": {"_count": 1}, "staring": {"_count": 5}, "paperwhite": {"_count": 1}, "squealing": {"_count": 1}, "clamped": {"_count": 1}, "digging": {"_count": 2}, "sorry": {"_count": 1}, "elderly": {"_count": 1}, "small": {"_count": 1}, "making": {"_count": 2}, "striding": {"_count": 1}, "dancing": {"_count": 1}, "hanging": {"_count": 2}, "being": {"_count": 4}, "last": {"_count": 1}, "rubbing": {"_count": 1}, "mending": {"_count": 1}, "playing": {"_count": 1}, "also": {"_count": 3}, "wrapped": {"_count": 1}, "running": {"_count": 1}, "charged": {"_count": 1}, "flicking": {"_count": 1}, "skipping": {"_count": 1}, "going": {"_count": 2}, "leading": {"_count": 3}, "howling": {"_count": 1}, "receiving": {"_count": 1}, "nursing": {"_count": 1}, "nervously": {"_count": 1}, "completely": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 1}, "surveying": {"_count": 1}, "fast": {"_count": 1}, "usually": {"_count": 1}, "smiling": {"_count": 1}, "crunching": {"_count": 1}, "handed": {"_count": 1}, "clearly": {"_count": 2}, "gaping": {"_count": 2}, "thick": {"_count": 1}, "under": {"_count": 1}, "lifted": {"_count": 1}, "upon": {"_count": 1}, "hiding": {"_count": 2}, "careful": {"_count": 1}, "lying": {"_count": 2}, "glaring": {"_count": 2}, "strolling": {"_count": 1}, "retching": {"_count": 1}, "not": {"_count": 4}, "staying": {"_count": 1}, "snapping": {"_count": 1}, "carrying": {"_count": 3}, "reading": {"_count": 2}, "bouncing": {"_count": 1}, "choosing": {"_count": 1}, "gazing": {"_count": 4}, "rocking": {"_count": 1}, "waiting": {"_count": 3}, "putting": {"_count": 1}, "stared": {"_count": 1}, "kneeling": {"_count": 1}, "sweating": {"_count": 1}, "lurking": {"_count": 1}, "dozing": {"_count": 2}, "rather": {"_count": 1}, "hovering": {"_count": 1}, "continuing": {"_count": 1}, "here": {"_count": 1}, "glowering": {"_count": 1}, "positively": {"_count": 1}, "bending": {"_count": 3}, "assisting": {"_count": 1}, "examining": {"_count": 4}, "clutching": {"_count": 2}, "nearer": {"_count": 1}, "laughing": {"_count": 1}, "gliding": {"_count": 1}, "with": {"_count": 1}, "enjoying": {"_count": 1}, "sobbing": {"_count": 1}, "mopping": {"_count": 1}, "modeling": {"_count": 1}, "fanning": {"_count": 1}, "breathing": {"_count": 2}, "sneering": {"_count": 1}, "leaning": {"_count": 2}, "hunched": {"_count": 1}, "tucking": {"_count": 1}, "shooting": {"_count": 1}, "half": {"_count": 1}, "silhouetted": {"_count": 1}, "knocked": {"_count": 1}, "up": {"_count": 1}, "hobbling": {"_count": 1}, "bobbing": {"_count": 1}, "determinedly": {"_count": 1}, "trapped": {"_count": 1}, "too": {"_count": 1}, "groaning": {"_count": 1}, "finding": {"_count": 1}, "depicted": {"_count": 1}, "feared": {"_count": 1}, "massaging": {"_count": 1}, "scrutinizing": {"_count": 1}, "returning": {"_count": 1}, "just": {"_count": 3}, "detaching": {"_count": 1}, "thin": {"_count": 1}, "interrogated": {"_count": 1}, "instantly": {"_count": 1}, "indeed": {"_count": 1}, "attempting": {"_count": 3}, "redfaced": {"_count": 1}, "particularly": {"_count": 1}, "simply": {"_count": 1}, "slowly": {"_count": 2}, "no": {"_count": 2}, "about": {"_count": 1}, "concentrating": {"_count": 1}, "smacking": {"_count": 1}, "pale": {"_count": 1}, "zigzagging": {"_count": 1}, "hinting": {"_count": 1}, "patting": {"_count": 1}, "tall": {"_count": 1}, "working": {"_count": 1}, "thinner": {"_count": 1}, "sporting": {"_count": 1}, "sweatyfaced": {"_count": 1}, "chivying": {"_count": 1}, "Captain": {"_count": 1}, "doing": {"_count": 1}, "calling": {"_count": 1}, "there": {"_count": 2}, "waffling": {"_count": 1}, "prepared": {"_count": 1}, "refraining": {"_count": 1}, "panting": {"_count": 1}, "behind": {"_count": 1}, "able": {"_count": 1}, "it": {"_count": 1}, "grinning": {"_count": 1}, "fighting": {"_count": 1}, "throwing": {"_count": 1}, "sending": {"_count": 1}, "that": {"_count": 1}, "perusing": {"_count": 1}, "to": {"_count": 1}, "close": {"_count": 1}, "visibly": {"_count": 1}, "unconscious": {"_count": 1}, "peering": {"_count": 1}, "invited": {"_count": 1}, "chatting": {"_count": 1}, "blond": {"_count": 1}, "whiling": {"_count": 1}, "evidently": {"_count": 1}, "murmuring": {"_count": 1}, "dead": {"_count": 1}, "missing": {"_count": 1}, "more": {"_count": 1}, "casting": {"_count": 1}, "an": {"_count": 1}, "permitted": {"_count": 1}, "wriggling": {"_count": 1}, "tallest": {"_count": 1}, "limping": {"_count": 1}, "speaking": {"_count": 1}, "thundering": {"_count": 1}, "pursuing": {"_count": 1}, "really": {"_count": 1}, "both": {"_count": 1}, "struggling": {"_count": 1}}, "told": {"_count": 7, "you": {"_count": 1}, "me": {"_count": 2}, "them": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "incredible": {"_count": 1}}, "live": {"_count": 2, "here": {"_count": 1}, "without": {"_count": 1}}, "are": {"_count": 31, "less": {"_count": 1}, "you": {"_count": 4}, "coming": {"_count": 1}, "fixed": {"_count": 1}, "already": {"_count": 1}, "here": {"_count": 1}, "up": {"_count": 1}, "supposed": {"_count": 1}, "least": {"_count": 1}, "of": {"_count": 1}, "unpaid": {"_count": 1}, "leading": {"_count": 1}, "prejudiced": {"_count": 1}, "not": {"_count": 1}, "supportive": {"_count": 1}, "currently": {"_count": 1}, "permitted": {"_count": 1}, "all": {"_count": 1}, "so": {"_count": 1}, "kind": {"_count": 1}, "these": {"_count": 1}, "ignorant": {"_count": 1}, "suffering": {"_count": 1}, "learned": {"_count": 1}, "over": {"_count": 1}, "a": {"_count": 1}, "best": {"_count": 1}, "at": {"_count": 1}}, "lived": {"_count": 13, "": {"_count": 1}, "two": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 4}, "here": {"_count": 1}, "alone": {"_count": 1}, "there": {"_count": 2}, "alongside": {"_count": 1}, "like": {"_count": 1}}, "could": {"_count": 37, "see": {"_count": 2}, "spot": {"_count": 1}, "add": {"_count": 1}, "talk": {"_count": 1}, "feel": {"_count": 3}, "have": {"_count": 2}, "transform": {"_count": 2}, "really": {"_count": 2}, "that": {"_count": 1}, "make": {"_count": 1}, "speak": {"_count": 1}, "converse": {"_count": 1}, "not": {"_count": 8}, "throw": {"_count": 1}, "help": {"_count": 1}, "vanquish": {"_count": 1}, "look": {"_count": 1}, "cook": {"_count": 1}, "show": {"_count": 1}, "be": {"_count": 1}, "give": {"_count": 1}, "only": {"_count": 1}, "stop": {"_count": 1}, "walk": {"_count": 1}}, "held": {"_count": 6, "peoples": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}}, "couldnt": {"_count": 6, "believe": {"_count": 2}, "understand": {"_count": 1}, "have": {"_count": 1}, "help": {"_count": 1}, "truthfully": {"_count": 1}}, "spent": {"_count": 4, "a": {"_count": 1}, "half": {"_count": 1}, "many": {"_count": 1}, "his": {"_count": 1}}, "looked": {"_count": 71, "remarkably": {"_count": 2}, "as": {"_count": 13}, "truly": {"_count": 1}, "just": {"_count": 2}, "at": {"_count": 1}, "like": {"_count": 3}, "increasingly": {"_count": 1}, "more": {"_count": 2}, "startled": {"_count": 1}, "shocked": {"_count": 1}, "excited": {"_count": 1}, "up": {"_count": 2}, "extremely": {"_count": 3}, "both": {"_count": 1}, "back": {"_count": 1}, "very": {"_count": 6}, "bewildered": {"_count": 1}, "strangely": {"_count": 1}, "thoroughly": {"_count": 3}, "utterly": {"_count": 1}, "stonily": {"_count": 1}, "right": {"_count": 1}, "no": {"_count": 1}, "nothing": {"_count": 1}, "astonished": {"_count": 1}, "immensely": {"_count": 1}, "for": {"_count": 1}, "frightened": {"_count": 1}, "tearful": {"_count": 2}, "furious": {"_count": 1}, "crestfallen": {"_count": 1}, "positively": {"_count": 2}, "oddly": {"_count": 1}, "slightly": {"_count": 1}, "around": {"_count": 1}, "weedy": {"_count": 1}, "unusually": {"_count": 1}, "the": {"_count": 1}, "nervous": {"_count": 1}, "bad": {"_count": 1}, "horrified": {"_count": 1}, "defeated": {"_count": 1}}, "were": {"_count": 100, "starting": {"_count": 2}, "shaking": {"_count": 1}, "standing": {"_count": 2}, "stocking": {"_count": 1}, "watching": {"_count": 1}, "leaving": {"_count": 1}, "sitting": {"_count": 5}, "almost": {"_count": 1}, "both": {"_count": 9}, "unworthy": {"_count": 1}, "looking": {"_count": 4}, "very": {"_count": 1}, "about": {"_count": 1}, "chortling": {"_count": 1}, "equipped": {"_count": 1}, "full": {"_count": 1}, "drifting": {"_count": 1}, "wrapped": {"_count": 1}, "stronger": {"_count": 1}, "identical": {"_count": 1}, "riding": {"_count": 1}, "having": {"_count": 1}, "obviously": {"_count": 1}, "cackling": {"_count": 1}, "under": {"_count": 1}, "working": {"_count": 1}, "discussing": {"_count": 1}, "usually": {"_count": 1}, "laughing": {"_count": 1}, "not": {"_count": 1}, "meeting": {"_count": 1}, "dancing": {"_count": 2}, "all": {"_count": 6}, "against": {"_count": 1}, "brave": {"_count": 1}, "acquitted": {"_count": 1}, "still": {"_count": 3}, "the": {"_count": 1}, "as": {"_count": 1}, "clattering": {"_count": 1}, "huddled": {"_count": 2}, "partially": {"_count": 1}, "wearing": {"_count": 2}, "now": {"_count": 5}, "dotted": {"_count": 1}, "squatting": {"_count": 1}, "grouped": {"_count": 1}, "already": {"_count": 1}, "left": {"_count": 2}, "closely": {"_count": 1}, "in": {"_count": 1}, "doing": {"_count": 1}, "roaring": {"_count": 1}, "practicing": {"_count": 1}, "enjoying": {"_count": 1}, "taking": {"_count": 1}, "nervously": {"_count": 1}, "staring": {"_count": 1}, "locked": {"_count": 1}, "entwined": {"_count": 1}, "most": {"_count": 1}, "privileged": {"_count": 1}, "alive": {"_count": 1}, "dazzled": {"_count": 1}, "Christmas": {"_count": 1}, "serious": {"_count": 1}, "traveling": {"_count": 1}, "continuing": {"_count": 1}}, "visited": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "would": {"_count": 38, "listen": {"_count": 6}, "be": {"_count": 10}, "suspect": {"_count": 1}, "not": {"_count": 2}, "take": {"_count": 1}, "speak": {"_count": 1}, "know": {"_count": 1}, "win": {"_count": 1}, "": {"_count": 1}, "turn": {"_count": 2}, "guide": {"_count": 1}, "watch": {"_count": 1}, "go": {"_count": 1}, "have": {"_count": 5}, "one": {"_count": 1}, "challenge": {"_count": 1}, "ever": {"_count": 1}, "do": {"_count": 1}}, "seemed": {"_count": 54, "to": {"_count": 35}, "more": {"_count": 1}, "quite": {"_count": 1}, "very": {"_count": 1}, "glad": {"_count": 1}, "keener": {"_count": 1}, "determined": {"_count": 2}, "beside": {"_count": 1}, "rather": {"_count": 1}, "stunned": {"_count": 1}, "a": {"_count": 1}, "afraid": {"_count": 1}, "perfectly": {"_count": 1}, "unlikely": {"_count": 1}, "sincerely": {"_count": 1}, "not": {"_count": 1}, "unsure": {"_count": 1}, "barely": {"_count": 1}, "dazed": {"_count": 1}}, "you": {"_count": 11, "are": {"_count": 8}, "hang": {"_count": 1}, "know": {"_count": 1}, "can": {"_count": 1}}, "shrank": {"_count": 1, "back": {"_count": 1}}, "saw": {"_count": 12, "her": {"_count": 1}, "him": {"_count": 2}, "Pettigrew": {"_count": 1}, "that": {"_count": 1}, "Voldemort": {"_count": 1}, "what": {"_count": 2}, "a": {"_count": 2}, "through": {"_count": 1}, "the": {"_count": 1}}, "went": {"_count": 7, "": {"_count": 1}, "bad": {"_count": 1}, "to": {"_count": 1}, "slightly": {"_count": 1}, "free": {"_count": 1}, "first": {"_count": 1}, "on": {"_count": 1}}, "ter": {"_count": 1, "trust": {"_count": 1}}, "didnt": {"_count": 20, "wake": {"_count": 1}, "understand": {"_count": 2}, "look": {"_count": 2}, "have": {"_count": 2}, "need": {"_count": 1}, "seem": {"_count": 3}, "flinch": {"_count": 1}, "want": {"_count": 1}, "if": {"_count": 1}, "read": {"_count": 1}, "hear": {"_count": 1}, "laugh": {"_count": 1}, "believe": {"_count": 1}, "present": {"_count": 1}, "like": {"_count": 1}}, "take": {"_count": 2, "but": {"_count": 1}, "care": {"_count": 1}}, "yeh": {"_count": 2, "were": {"_count": 1}, "are": {"_count": 1}}, "wasnt": {"_count": 7, "in": {"_count": 2}, "eating": {"_count": 2}, "listening": {"_count": 2}, "there": {"_count": 1}}, "never": {"_count": 6, "read": {"_count": 1}, "stick": {"_count": 1}, "even": {"_count": 2}, "wanted": {"_count": 1}, "knew": {"_count": 1}}, "we": {"_count": 6, "just": {"_count": 1}, "are": {"_count": 1}, "all": {"_count": 1}, "thought": {"_count": 1}, "can": {"_count": 1}, "curse": {"_count": 1}}, "he": {"_count": 23, "is": {"_count": 11}, "was": {"_count": 9}, "thought": {"_count": 1}, "asked": {"_count": 1}, "loved": {"_count": 1}}, "found": {"_count": 8, "Ron": {"_count": 1}, "himself": {"_count": 1}, "him": {"_count": 3}, "you": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "come": {"_count": 1, "from": {"_count": 1}}, "hadnt": {"_count": 6, "had": {"_count": 1}, "heard": {"_count": 1}, "noticed": {"_count": 1}, "rushed": {"_count": 1}, "bothered": {"_count": 1}, "considered": {"_count": 1}}, "the": {"_count": 10, "wrong": {"_count": 1}, "champions": {"_count": 1}, "champion": {"_count": 1}, "Death": {"_count": 1}, "Prime": {"_count": 1}, "uninvited": {"_count": 1}, "ruddy": {"_count": 1}, "people": {"_count": 1}, "HalfBlood": {"_count": 1}, "man": {"_count": 1}}, "kept": {"_count": 8, "losing": {"_count": 2}, "divebombing": {"_count": 1}, "belching": {"_count": 1}, "walking": {"_count": 1}, "his": {"_count": 1}, "turning": {"_count": 1}, "telling": {"_count": 1}}, "felt": {"_count": 11, "a": {"_count": 3}, "wide": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 1}, "numb": {"_count": 1}, "no": {"_count": 1}, "like": {"_count": 1}}, "caught": {"_count": 4, "his": {"_count": 1}, "it": {"_count": 1}, "hold": {"_count": 1}, "sight": {"_count": 1}}, "Harry": {"_count": 5, "was": {"_count": 2}, "supposed": {"_count": 1}, "noticed": {"_count": 1}, "saw": {"_count": 1}}, "does": {"_count": 4, "not": {"_count": 1}, "": {"_count": 2}, "best": {"_count": 1}}, "did": {"_count": 33, "": {"_count": 1}, "it": {"_count": 8}, "this": {"_count": 1}, "not": {"_count": 18}, "put": {"_count": 1}, "do": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}, "you": {"_count": 1}}, "clapped": {"_count": 1, "loudest": {"_count": 1}}, "can": {"_count": 26, "control": {"_count": 1}, "tell": {"_count": 4}, "say": {"_count": 3}, "": {"_count": 1}, "become": {"_count": 1}, "get": {"_count": 1}, "show": {"_count": 1}, "fly": {"_count": 1}, "see": {"_count": 3}, "I": {"_count": 1}, "blame": {"_count": 1}, "save": {"_count": 1}, "be": {"_count": 1}, "help": {"_count": 2}, "put": {"_count": 1}, "do": {"_count": 1}, "end": {"_count": 2}}, "bounded": {"_count": 1, "straight": {"_count": 1}}, "shared": {"_count": 1, "their": {"_count": 1}}, "came": {"_count": 6, "out": {"_count": 3}, "back": {"_count": 1}, "jogging": {"_count": 1}, "from": {"_count": 1}}, "knew": {"_count": 29, "nothing": {"_count": 1}, "that": {"_count": 4}, "Diagon": {"_count": 1}, "about": {"_count": 1}, "Peter": {"_count": 1}, "only": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "George": {"_count": 1}, "our": {"_count": 1}, "what": {"_count": 5}, "or": {"_count": 1}, "his": {"_count": 1}, "all": {"_count": 1}, "him": {"_count": 2}, "Slughorn": {"_count": 1}, "you": {"_count": 1}, "Albus": {"_count": 1}, "Ariana": {"_count": 1}, "of": {"_count": 1}, "where": {"_count": 1}}, "dived": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 10, "\u2018s": {"_count": 1}, "Dumbledore": {"_count": 1}, "as": {"_count": 1}, "RiddikulusV": {"_count": 1}, "quietly": {"_count": 1}, "You": {"_count": 1}, "Harry": {"_count": 1}, "We": {"_count": 1}, "you": {"_count": 1}, "in": {"_count": 1}}, "spoke": {"_count": 2, "first": {"_count": 1}, "this": {"_count": 1}}, "get": {"_count": 3, "clobbered": {"_count": 1}, "Ds": {"_count": 1}, "anything": {"_count": 1}}, "puts": {"_count": 1, "it": {"_count": 1}}, "have": {"_count": 23, "to": {"_count": 1}, "never": {"_count": 2}, "been": {"_count": 4}, "so": {"_count": 1}, "gone": {"_count": 2}, "left": {"_count": 1}, "managed": {"_count": 1}, "seen": {"_count": 1}, "mastered": {"_count": 1}, "thrice": {"_count": 1}, "shown": {"_count": 1}, "applied": {"_count": 1}, "expired": {"_count": 1}, "twice": {"_count": 1}, "got": {"_count": 1}, "always": {"_count": 1}, "studied": {"_count": 1}, "served": {"_count": 1}}, "Nicolas": {"_count": 2, "Flamel": {"_count": 2}}, "Flamel": {"_count": 2, "is": {"_count": 1}, "was": {"_count": 1}}, "sent": {"_count": 5, "these": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "letters": {"_count": 1}, "that": {"_count": 1}}, "that": {"_count": 4, "ones": {"_count": 1}, "screaming": {"_count": 1}, "was": {"_count": 1}, "man": {"_count": 1}}, "to": {"_count": 1, "Harrys": {"_count": 1}}, "shouldnt": {"_count": 2, "be": {"_count": 2}}, "replied": {"_count": 1, "The": {"_count": 1}}, "has": {"_count": 39, "always": {"_count": 2}, "nothing": {"_count": 1}, "waited": {"_count": 1}, "clung": {"_count": 1}, "been": {"_count": 7}, "kindly": {"_count": 1}, "agreed": {"_count": 2}, "never": {"_count": 2}, "lost": {"_count": 1}, "ever": {"_count": 2}, "the": {"_count": 2}, "managed": {"_count": 1}, "already": {"_count": 1}, "put": {"_count": 1}, "grown": {"_count": 1}, "got": {"_count": 1}, "it": {"_count": 1}, "seen": {"_count": 1}, "watched": {"_count": 1}, "eluded": {"_count": 1}, "actually": {"_count": 1}, "": {"_count": 1}, "lived": {"_count": 1}, "tried": {"_count": 2}, "a": {"_count": 1}, "survived": {"_count": 1}, "performed": {"_count": 1}}, "leapt": {"_count": 3, "up": {"_count": 1}, "out": {"_count": 1}, "backward": {"_count": 1}}, "celebrated": {"_count": 1, "his": {"_count": 1}}, "Dumbledore": {"_count": 2, "had": {"_count": 1}, "is": {"_count": 1}}, "knows": {"_count": 11, "how": {"_count": 2}, "what": {"_count": 2}, "his": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 4}, "him": {"_count": 1}}, "opened": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}, "his": {"_count": 1}}, "do": {"_count": 8, "you": {"_count": 2}, "have": {"_count": 1}, "know": {"_count": 1}, "not": {"_count": 3}, "really": {"_count": 1}}, "this": {"_count": 4, "is": {"_count": 2}, "girl": {"_count": 1}, "was": {"_count": 1}}, "Can": {"_count": 1, "you": {"_count": 1}}, "says": {"_count": 3, "the": {"_count": 1}, "its": {"_count": 1}, "it": {"_count": 1}}, "ever": {"_count": 3, "sent": {"_count": 1}, "knew": {"_count": 1}, "dared": {"_count": 1}}, "just": {"_count": 1, "happens": {"_count": 1}}, "stand": {"_count": 1, "at": {"_count": 1}}, "already": {"_count": 2, "suspected": {"_count": 1}, "had": {"_count": 1}}, "is": {"_count": 17, "prepared": {"_count": 1}, "Muggleborn": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "giving": {"_count": 1}, "openly": {"_count": 1}, "a": {"_count": 1}, "trying": {"_count": 1}, "he": {"_count": 1}, "deemed": {"_count": 1}, "late": {"_count": 1}, "also": {"_count": 1}, "under": {"_count": 1}, "proving": {"_count": 1}, "known": {"_count": 1}, "incapable": {"_count": 1}, "this": {"_count": 1}}, "loved": {"_count": 1, "us": {"_count": 1}}, "wanted": {"_count": 6, "to": {"_count": 2}, "his": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 1}, "every": {"_count": 1}}, "else": {"_count": 10, "would": {"_count": 3}, "wants": {"_count": 1}, "was": {"_count": 2}, "you": {"_count": 1}, "is": {"_count": 2}, "had": {"_count": 1}}, "dont": {"_count": 3, "even": {"_count": 1}, "bother": {"_count": 1}, "want": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "turned": {"_count": 12, "up": {"_count": 4}, "his": {"_count": 2}, "her": {"_count": 1}, "and": {"_count": 1}, "eagerly": {"_count": 1}, "into": {"_count": 2}, "it": {"_count": 1}}, "backed": {"_count": 2, "away": {"_count": 1}, "slowly": {"_count": 1}}, "nodded": {"_count": 8, "encouragingly": {"_count": 2}, "bravely": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "briefly": {"_count": 1}, "his": {"_count": 1}}, "appeared": {"_count": 6, "in": {"_count": 1}, "to": {"_count": 4}, "at": {"_count": 1}}, "": {"_count": 14, "?": {"_count": 9}, ".": {"_count": 5}}, "stepped": {"_count": 2, "right": {"_count": 1}, "aside": {"_count": 1}}, "followed": {"_count": 1, "could": {"_count": 1}}, "made": {"_count": 8, "the": {"_count": 2}, "You": {"_count": 1}, "it": {"_count": 1}, "me": {"_count": 1}, "a": {"_count": 2}, "no": {"_count": 1}}, "I": {"_count": 11, "saw": {"_count": 1}, "am": {"_count": 3}, "believe": {"_count": 2}, "know": {"_count": 1}, "talk": {"_count": 1}, "mean": {"_count": 1}, "go": {"_count": 1}, "ran": {"_count": 1}}, "accompanied": {"_count": 1, "him": {"_count": 1}}, "wore": {"_count": 3, "a": {"_count": 1}, "her": {"_count": 1}, "hornrimmed": {"_count": 1}}, "hears": {"_count": 1, "it": {"_count": 1}}, "fell": {"_count": 3, "a": {"_count": 1}, "to": {"_count": 1}, "sideways": {"_count": 1}}, "carry": {"_count": 1, "clubs": {"_count": 1}}, "stood": {"_count": 13, "shoulder": {"_count": 1}, "up": {"_count": 1}, "panting": {"_count": 1}, "waiting": {"_count": 1}, "in": {"_count": 2}, "frozen": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 2}, "between": {"_count": 1}, "with": {"_count": 1}, "facing": {"_count": 1}}, "emerged": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 13, "was": {"_count": 6}, "is": {"_count": 5}, "couldve": {"_count": 1}, "would": {"_count": 1}}, "think": {"_count": 1, "theyre": {"_count": 1}}, "waited": {"_count": 4, "with": {"_count": 1}, "until": {"_count": 1}, "breathlessly": {"_count": 1}, "outside": {"_count": 1}}, "taught": {"_count": 3, "it": {"_count": 1}, "History": {"_count": 1}, "me": {"_count": 1}}, "showed": {"_count": 2, "signs": {"_count": 1}, "you": {"_count": 1}}, "thinks": {"_count": 8, "Muggleborns": {"_count": 1}, "they": {"_count": 1}, "hes": {"_count": 1}, "Harry": {"_count": 1}, "youre": {"_count": 2}, "that": {"_count": 1}, "my": {"_count": 1}}, "delivered": {"_count": 1, "them": {"_count": 1}}, "cares": {"_count": 7, "weve": {"_count": 1}, "about": {"_count": 3}, "one": {"_count": 1}, "why": {"_count": 1}, "what": {"_count": 1}}, "thought": {"_count": 6, "the": {"_count": 1}, "scruffiness": {"_count": 1}, "he": {"_count": 2}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "sat": {"_count": 2, "next": {"_count": 1}, "huddled": {"_count": 1}}, "threw": {"_count": 2, "this": {"_count": 1}, "it": {"_count": 1}}, "reminded": {"_count": 1, "Harry": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 1}, "now": {"_count": 1}, "an": {"_count": 1}}, "should": {"_count": 8, "have": {"_count": 1}, "be": {"_count": 4}, "he": {"_count": 1}, "remain": {"_count": 1}, "do": {"_count": 1}}, "always": {"_count": 2, "did": {"_count": 1}, "voted": {"_count": 1}}, "disapproved": {"_count": 2, "of": {"_count": 2}}, "burst": {"_count": 1, "in": {"_count": 1}}, "read": {"_count": 3, "Sonnets": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "conquered": {"_count": 1, "the": {"_count": 1}}, "obviously": {"_count": 1, "hadnt": {"_count": 1}}, "asked": {"_count": 3, "him": {"_count": 1}, "what": {"_count": 1}, "Professor": {"_count": 1}}, "like": {"_count": 9, "Harry": {"_count": 4}, "the": {"_count": 1}, "Ron": {"_count": 1}, "him": {"_count": 1}, "Dogbreath": {"_count": 1}, "you": {"_count": 1}}, "brought": {"_count": 5, "it": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 1}, "us": {"_count": 1}, "about": {"_count": 1}}, "played": {"_count": 4, "in": {"_count": 1}, "Seeker": {"_count": 1}, "Chaser": {"_count": 2}}, "ask": {"_count": 3, "for": {"_count": 3}}, "got": {"_count": 4, "rid": {"_count": 1}, "to": {"_count": 1}, "us": {"_count": 1}, "up": {"_count": 1}}, "wont": {"_count": 2, "want": {"_count": 1}, "look": {"_count": 1}}, "died": {"_count": 3, "": {"_count": 1}, "fighting": {"_count": 1}, "trying": {"_count": 1}}, "or": {"_count": 2, "what": {"_count": 2}}, "Ginny": {"_count": 1, "looked": {"_count": 1}}, "banished": {"_count": 1, "the": {"_count": 1}}, "shook": {"_count": 4, "his": {"_count": 4}}, "abandoned": {"_count": 1, "me": {"_count": 1}}, "hesitated": {"_count": 2, "for": {"_count": 1}, "then": {"_count": 1}}, "smiled": {"_count": 2, "faintly": {"_count": 1}, "broadly": {"_count": 1}}, "happened": {"_count": 2, "to": {"_count": 2}}, "deserved": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "deserve": {"_count": 1, "it": {"_count": 1}}, "He": {"_count": 2, "was": {"_count": 1}, "shuddered": {"_count": 1}}, "nervously": {"_count": 1, "flattened": {"_count": 1}}, "crosses": {"_count": 1, "him": {"_count": 1}}, "still": {"_count": 10, "hadnt": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 3}, "wore": {"_count": 1}, "desired": {"_count": 1}, "thinks": {"_count": 1}, "clutched": {"_count": 1}, "clung": {"_count": 1}}, "ordered": {"_count": 1, "a": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "worked": {"_count": 6, "at": {"_count": 1}, "in": {"_count": 3}, "with": {"_count": 1}, "for": {"_count": 1}}, "stopped": {"_count": 4, "their": {"_count": 1}, "the": {"_count": 1}, "struggling": {"_count": 1}, "Grindelwald": {"_count": 1}}, "promptly": {"_count": 1, "started": {"_count": 1}}, "on": {"_count": 1, "closer": {"_count": 1}}, "pushed": {"_count": 2, "the": {"_count": 2}}, "wants": {"_count": 6, "to": {"_count": 3}, "ter": {"_count": 1}, "paying": {"_count": 1}, "him": {"_count": 1}}, "collapses": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 2, "for": {"_count": 1}, "it": {"_count": 1}}, "hated": {"_count": 2, "Snape": {"_count": 1}, "and": {"_count": 1}}, "almost": {"_count": 3, "toppled": {"_count": 1}, "caught": {"_count": 1}, "she": {"_count": 1}}, "gave": {"_count": 12, "the": {"_count": 3}, "them": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 2}, "Professor": {"_count": 1}, "it": {"_count": 1}, "Katie": {"_count": 1}, "a": {"_count": 1}}, "lay": {"_count": 2, "curled": {"_count": 1}, "twitching": {"_count": 1}}, "lasted": {"_count": 1, "ony": {"_count": 1}}, "both": {"_count": 2, "staggered": {"_count": 1}, "put": {"_count": 1}}, "waged": {"_count": 1, "a": {"_count": 1}}, "walked": {"_count": 6, "forward": {"_count": 1}, "him": {"_count": 1}, "free": {"_count": 2}, "so": {"_count": 1}, "beside": {"_count": 1}}, "defended": {"_count": 1, "the": {"_count": 1}}, "shouted": {"_count": 3, "through": {"_count": 1}, "\u2018Boo": {"_count": 1}, "at": {"_count": 1}}, "all": {"_count": 2, "looked": {"_count": 1}, "go": {"_count": 1}}, "quickly": {"_count": 1, "pretended": {"_count": 1}}, "wouldnt": {"_count": 3, "even": {"_count": 2}, "want": {"_count": 1}}, "know": {"_count": 4, "about": {"_count": 1}, "Im": {"_count": 1}, "the": {"_count": 2}}, "his": {"_count": 2, "best": {"_count": 1}, "supporters": {"_count": 1}}, "resembled": {"_count": 1, "Neville": {"_count": 1}}, "each": {"_count": 1, "seized": {"_count": 1}}, "picked": {"_count": 1, "it": {"_count": 1}}, "took": {"_count": 4, "it": {"_count": 2}, "up": {"_count": 1}, "the": {"_count": 1}}, "swapped": {"_count": 1, "it": {"_count": 1}}, "remained": {"_count": 4, "convinced": {"_count": 1}, "outside": {"_count": 1}, "standing": {"_count": 1}, "for": {"_count": 1}}, "conjures": {"_count": 1, "it": {"_count": 1}}, "really": {"_count": 3, "know": {"_count": 1}, "deserved": {"_count": 1}, "did": {"_count": 1}}, "Ravenclaw": {"_count": 1, "is": {"_count": 1}}, "vaulted": {"_count": 1, "the": {"_count": 1}}, "put": {"_count": 5, "their": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "yeh": {"_count": 1}, "your": {"_count": 1}}, "reads": {"_count": 1, "it": {"_count": 1}}, "sets": {"_count": 1, "the": {"_count": 1}}, "disturbed": {"_count": 1, "the": {"_count": 1}}, "suddenly": {"_count": 2, "crossed": {"_count": 1}, "felt": {"_count": 1}}, "sounded": {"_count": 4, "weak": {"_count": 1}, "as": {"_count": 1}, "close": {"_count": 1}, "disdainful": {"_count": 1}}, "conjured": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}}, "greeted": {"_count": 1, "him": {"_count": 1}}, "owned": {"_count": 1, "the": {"_count": 1}}, "cared": {"_count": 3, "about": {"_count": 2}, "what": {"_count": 1}}, "needed": {"_count": 3, "plenty": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "tried": {"_count": 8, "to": {"_count": 8}}, "ducked": {"_count": 2, "causing": {"_count": 1}, "": {"_count": 1}}, "they": {"_count": 6, "must": {"_count": 1}, "had": {"_count": 1}, "are": {"_count": 1}, "let": {"_count": 1}, "were": {"_count": 2}}, "grinned": {"_count": 3, "back": {"_count": 2}, "": {"_count": 1}}, "spotted": {"_count": 1, "the": {"_count": 1}}, "merely": {"_count": 1, "nodded": {"_count": 1}}, "slopped": {"_count": 1, "quite": {"_count": 1}}, "survived": {"_count": 1, "YouKnowWho": {"_count": 1}}, "prop": {"_count": 1, "up": {"_count": 1}}, "youre": {"_count": 4, "talking": {"_count": 2}, "going": {"_count": 1}, "calling": {"_count": 1}}, "practice": {"_count": 1, "them": {"_count": 1}}, "disobeys": {"_count": 1, "me": {"_count": 1}}, "forgets": {"_count": 1, "what": {"_count": 1}}, "actually": {"_count": 4, "conjured": {"_count": 1}, "knew": {"_count": 1}, "did": {"_count": 1}, "caught": {"_count": 1}}, "managed": {"_count": 2, "to": {"_count": 2}}, "screamed": {"_count": 3, "and": {"_count": 2}, "loudly": {"_count": 1}}, "decides": {"_count": 1, "who": {"_count": 1}}, "deeply": {"_count": 1, "admired": {"_count": 1}}, "understand": {"_count": 2, "the": {"_count": 1}, "these": {"_count": 1}}, "retired": {"_count": 2, "from": {"_count": 2}}, "attack": {"_count": 1, "when": {"_count": 1}}, "in": {"_count": 3, "any": {"_count": 1}, "contrast": {"_count": 1}, "the": {"_count": 1}}, "stared": {"_count": 5, "back": {"_count": 1}, "blankly": {"_count": 2}, "at": {"_count": 2}}, "forgot": {"_count": 1, "to": {"_count": 1}}, "might": {"_count": 10, "be": {"_count": 3}, "think": {"_count": 1}, "have": {"_count": 2}, "once": {"_count": 1}, "even": {"_count": 1}, "make": {"_count": 1}, "not": {"_count": 1}}, "looks": {"_count": 2, "like": {"_count": 2}}, "arent": {"_count": 1, "chosen": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "so": {"_count": 1, "resembled": {"_count": 1}}, "bent": {"_count": 1, "his": {"_count": 1}}, "gets": {"_count": 3, "all": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "How": {"_count": 1, "do": {"_count": 1}}, "passes": {"_count": 2, "through": {"_count": 1}, "to": {"_count": 1}}, "want": {"_count": 2, "to": {"_count": 1}, "them": {"_count": 1}}, "yawned": {"_count": 1, "very": {"_count": 1}}, "haunted": {"_count": 1, "the": {"_count": 1}}, "havent": {"_count": 2, "got": {"_count": 2}}, "hooted": {"_count": 1, "more": {"_count": 1}}, "surveyed": {"_count": 2, "himself": {"_count": 1}, "him": {"_count": 1}}, "shrugged": {"_count": 2, "": {"_count": 1}, "looking": {"_count": 1}}, "Maxime": {"_count": 1, "thinks": {"_count": 1}}, "makes": {"_count": 1, "a": {"_count": 1}}, "admits": {"_count": 1, "to": {"_count": 1}}, "served": {"_count": 1, "HeWhoMust": {"_count": 1}}, "remember": {"_count": 1, "you": {"_count": 1}}, "stuck": {"_count": 1, "up": {"_count": 1}}, "cant": {"_count": 1, "use": {"_count": 1}}, "smirked": {"_count": 1, "at": {"_count": 1}}, "placed": {"_count": 1, "his": {"_count": 1}}, "broke": {"_count": 4, "into": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 1}, "ranks": {"_count": 1}}, "braced": {"_count": 1, "himself": {"_count": 1}}, "also": {"_count": 2, "used": {"_count": 1}, "looked": {"_count": 1}}, "considers": {"_count": 1, "rules": {"_count": 1}}, "stole": {"_count": 5, "them": {"_count": 1}, "the": {"_count": 2}, "from": {"_count": 2}}, "isnt": {"_count": 1, "you": {"_count": 1}}, "nearly": {"_count": 1, "all": {"_count": 1}}, "from": {"_count": 1, "Krums": {"_count": 1}}, "will": {"_count": 7, "be": {"_count": 4}, "join": {"_count": 1}, "not": {"_count": 1}, "make": {"_count": 1}}, "seized": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "sped": {"_count": 2, "up": {"_count": 1}, "off": {"_count": 1}}, "began": {"_count": 2, "scribbling": {"_count": 1}, "to": {"_count": 1}}, "Wormtail": {"_count": 1, "I": {"_count": 1}}, "suggested": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "defeated": {"_count": 1, "HeWhoMustNotBeNamed": {"_count": 1}}, "wished": {"_count": 2, "to": {"_count": 2}}, "seeks": {"_count": 1, "out": {"_count": 1}}, "waved": {"_count": 1, "back": {"_count": 1}}, "lives": {"_count": 3, "in": {"_count": 1}, "at": {"_count": 1}, "here": {"_count": 1}}, "lies": {"_count": 1, "": {"_count": 1}}, "reaches": {"_count": 1, "the": {"_count": 1}}, "continued": {"_count": 6, "to": {"_count": 5}, "their": {"_count": 1}}, "remains": {"_count": 1, "my": {"_count": 1}}, "scrambled": {"_count": 1, "to": {"_count": 1}}, "escaped": {"_count": 2, "Azkaban": {"_count": 1}, "from": {"_count": 1}}, "avoided": {"_count": 2, "his": {"_count": 2}}, "likewise": {"_count": 1, "looked": {"_count": 1}}, "recoiled": {"_count": 1, "": {"_count": 1}}, "exemplified": {"_count": 1, "many": {"_count": 1}}, "must": {"_count": 5, "be": {"_count": 2}, "do": {"_count": 1}, "surely": {"_count": 1}, "remain": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "ran": {"_count": 4, "the": {"_count": 3}, "screeching": {"_count": 1}}, "those": {"_count": 1, "people": {"_count": 1}}, "attended": {"_count": 2, "St": {"_count": 1}, "Ariana": {"_count": 1}}, "drove": {"_count": 1, "very": {"_count": 1}}, "doesnt": {"_count": 2, "know": {"_count": 1}, "even": {"_count": 1}}, "cheated": {"_count": 1, "more": {"_count": 1}}, "heard": {"_count": 2, "voices": {"_count": 1}, "looked": {"_count": 1}}, "hurt": {"_count": 1, "Dudley": {"_count": 1}}, "flinched": {"_count": 1, "winced": {"_count": 1}}, "murdered": {"_count": 1, "your": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "prefers": {"_count": 2, "to": {"_count": 1}, "your": {"_count": 1}}, "bowed": {"_count": 1, "Elphias": {"_count": 1}}, "fought": {"_count": 3, "against": {"_count": 1}, "the": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "shouts": {"_count": 1, "": {"_count": 1}}, "tells": {"_count": 1, "ridiculous": {"_count": 1}}, "wound": {"_count": 1, "himself": {"_count": 1}}, "helped": {"_count": 1, "him": {"_count": 1}}, "dyou": {"_count": 1, "thinks": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "mend": {"_count": 1, "pipes": {"_count": 1}}, "catch": {"_count": 1, "them": {"_count": 1}}, "often": {"_count": 1, "sported": {"_count": 1}}, "exactly": {"_count": 1, "are": {"_count": 1}}, "readjusted": {"_count": 1, "her": {"_count": 1}}, "assigned": {"_count": 1, "the": {"_count": 1}}, "claimed": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "smoothed": {"_count": 1, "the": {"_count": 1}}, "calls": {"_count": 2, "me": {"_count": 1}, "himself": {"_count": 1}}, "gulped": {"_count": 1, "": {"_count": 1}}, "ignored": {"_count": 1, "him": {"_count": 1}}, "immediately": {"_count": 2, "embarked": {"_count": 1}, "fell": {"_count": 1}}, "believe": {"_count": 2, "me": {"_count": 1}, "Dumbledore": {"_count": 1}}, "support": {"_count": 1, "you": {"_count": 1}}, "fitted": {"_count": 1, "in": {"_count": 1}}, "swung": {"_count": 1, "forward": {"_count": 1}}, "awoke": {"_count": 1, "with": {"_count": 1}}, "refused": {"_count": 4, "to": {"_count": 4}}, "passed": {"_count": 9, "to": {"_count": 4}, "back": {"_count": 1}, "them": {"_count": 2}, "in": {"_count": 1}, "over": {"_count": 1}}, "dropped": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "lunged": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "leaned": {"_count": 1, "toward": {"_count": 1}}, "count": {"_count": 1, "have": {"_count": 1}}, "shows": {"_count": 1, "himself": {"_count": 1}}, "feel": {"_count": 1, "the": {"_count": 1}}, "plowed": {"_count": 1, "on": {"_count": 1}}, "appointed": {"_count": 1, "you": {"_count": 1}}, "unlike": {"_count": 1, "Umbridge": {"_count": 1}}, "nudged": {"_count": 1, "Hermione": {"_count": 1}}, "complains": {"_count": 1, "about": {"_count": 1}}, "seem": {"_count": 1, "interested": {"_count": 1}}, "matched": {"_count": 1, "their": {"_count": 1}}, "piped": {"_count": 1, "up": {"_count": 1}}, "of": {"_count": 3, "course": {"_count": 3}}, "disagrees": {"_count": 1, "with": {"_count": 1}}, "cast": {"_count": 1, "the": {"_count": 1}}, "insisted": {"_count": 2, "that": {"_count": 2}}, "forced": {"_count": 1, "em": {"_count": 1}}, "sends": {"_count": 1, "his": {"_count": 1}}, "considering": {"_count": 1, "he": {"_count": 1}}, "hadn": {"_count": 1, "wanted": {"_count": 1}}, "worried": {"_count": 1, "us": {"_count": 1}}, "sighed": {"_count": 1, "but": {"_count": 1}}, "see": {"_count": 1, "them": {"_count": 1}}, "shivered": {"_count": 1, "and": {"_count": 1}}, "suspected": {"_count": 1, "that": {"_count": 1}}, "she": {"_count": 2, "likes": {"_count": 1}, "is": {"_count": 1}}, "started": {"_count": 1, "it": {"_count": 1}}, "ripped": {"_count": 1, "it": {"_count": 1}}, "finds": {"_count": 1, "the": {"_count": 1}}, "lured": {"_count": 1, "Sirius": {"_count": 1}}, "goggled": {"_count": 1, "at": {"_count": 1}}, "dwell": {"_count": 1, "within": {"_count": 1}}, "wear": {"_count": 1, "their": {"_count": 1}}, "cannot": {"_count": 1, "control": {"_count": 1}}, "wallow": {"_count": 1, "in": {"_count": 1}}, "work": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "include": {"_count": 1, "Blacks": {"_count": 1}}, "now": {"_count": 4, "found": {"_count": 1}, "looked": {"_count": 1}, "came": {"_count": 1}, "towered": {"_count": 1}}, "despite": {"_count": 1, "many": {"_count": 1}}, "needs": {"_count": 2, "her": {"_count": 1}, "sleep": {"_count": 1}}, "alone": {"_count": 2, "of": {"_count": 1}, "seemed": {"_count": 1}}, "annoys": {"_count": 1, "you": {"_count": 1}}, "swear": {"_count": 1, "theyre": {"_count": 1}}, "simply": {"_count": 1, "looked": {"_count": 1}}, "peered": {"_count": 1, "back": {"_count": 1}}, "and": {"_count": 1, "what": {"_count": 1}}, "comes": {"_count": 1, "an": {"_count": 1}}, "swore": {"_count": 2, "it": {"_count": 1}, "loudly": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "hailed": {"_count": 1, "him": {"_count": 1}}, "met": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "recognized": {"_count": 2, "the": {"_count": 2}}, "maintained": {"_count": 2, "a": {"_count": 2}}, "giggled": {"_count": 2, "feebly": {"_count": 1}, "and": {"_count": 1}}, "vanished": {"_count": 1, "and": {"_count": 1}}, "hung": {"_count": 1, "on": {"_count": 1}}, "explained": {"_count": 1, "this": {"_count": 1}}, "deduced": {"_count": 1, "where": {"_count": 1}}, "love": {"_count": 2, "to": {"_count": 1}, "Muggle": {"_count": 1}}, "laughed": {"_count": 1, "who": {"_count": 1}}, "neither": {"_count": 1, "knew": {"_count": 1}}, "called": {"_count": 1, "after": {"_count": 1}}, "answered": {"_count": 3, "": {"_count": 2}, "perched": {"_count": 1}}, "YouKnowWho": {"_count": 1, "is": {"_count": 1}}, "works": {"_count": 2, "for": {"_count": 2}}, "whisper": {"_count": 1, "behind": {"_count": 1}}, "lost": {"_count": 1, "faith": {"_count": 1}}, "paused": {"_count": 1, "beside": {"_count": 1}}, "missed": {"_count": 1, "neither": {"_count": 1}}, "used": {"_count": 4, "to": {"_count": 4}}, "understood": {"_count": 2, "that": {"_count": 1}, "himself": {"_count": 1}}, "hastily": {"_count": 3, "whipped": {"_count": 1}, "tried": {"_count": 1}, "inserted": {"_count": 1}}, "raised": {"_count": 2, "Fred": {"_count": 1}, "the": {"_count": 1}}, "darted": {"_count": 1, "into": {"_count": 1}}, "suffer": {"_count": 1, "for": {"_count": 1}}, "progress": {"_count": 1, "to": {"_count": 1}}, "founded": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 5, "some": {"_count": 4}, "a": {"_count": 1}}, "dislikes": {"_count": 1, "the": {"_count": 1}}, "believed": {"_count": 1, "the": {"_count": 1}}, "bounced": {"_count": 1, "off": {"_count": 1}}, "towered": {"_count": 1, "over": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "dwelled": {"_count": 1, "deep": {"_count": 1}}, "scares": {"_count": 1, "Mundungus": {"_count": 1}}, "goes": {"_count": 1, "in": {"_count": 1}}, "hissed": {"_count": 1, "softly": {"_count": 1}}, "annoy": {"_count": 1, "me": {"_count": 1}}, "require": {"_count": 1, "assistance": {"_count": 1}}, "suffered": {"_count": 1, "from": {"_count": 1}}, "acts": {"_count": 1, "like": {"_count": 1}}, "jumped": {"_count": 1, "in": {"_count": 1}}, "yelped": {"_count": 1, "and": {"_count": 1}}, "bit": {"_count": 1, "me": {"_count": 1}}, "better": {"_count": 1, "to": {"_count": 1}}, "drank": {"_count": 1, "a": {"_count": 1}}, "WonWon": {"_count": 1, "": {"_count": 1}}, "lined": {"_count": 1, "up": {"_count": 1}}, "performed": {"_count": 1, "the": {"_count": 1}}, "matter": {"_count": 2, "thank": {"_count": 2}}, "swooped": {"_count": 2, "around": {"_count": 1}, "past": {"_count": 1}}, "hes": {"_count": 1, "meeting": {"_count": 1}}, "pass": {"_count": 1, "through": {"_count": 1}}, "call": {"_count": 1, "themselves": {"_count": 1}}, "who": {"_count": 1, "He": {"_count": 1}}, "keep": {"_count": 1, "watch": {"_count": 1}}, "hopefully": {"_count": 1, "would": {"_count": 1}}, "sulked": {"_count": 1, "for": {"_count": 1}}, "likes": {"_count": 2, "attacking": {"_count": 1}, "to": {"_count": 1}}, "pocketed": {"_count": 1, "it": {"_count": 1}}, "killed": {"_count": 3, "Lily": {"_count": 1}, "you": {"_count": 1}, "its": {"_count": 1}}, "created": {"_count": 1, "more": {"_count": 1}}, "rises": {"_count": 1, "against": {"_count": 1}}, "sits": {"_count": 1, "here": {"_count": 1}}, "approved": {"_count": 1, "of": {"_count": 1}}, "reached": {"_count": 3, "this": {"_count": 2}, "out": {"_count": 1}}, "gestured": {"_count": 1, "him": {"_count": 1}}, "incredibly": {"_count": 1, "smiled": {"_count": 1}}, "realized": {"_count": 3, "what": {"_count": 1}, "there": {"_count": 2}}, "bizarrely": {"_count": 1, "seemed": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "stumbled": {"_count": 1, "and": {"_count": 1}}, "invented": {"_count": 1, "them": {"_count": 1}}, "staggered": {"_count": 2, "backward": {"_count": 2}}, "discovered": {"_count": 1, "your": {"_count": 1}}, "whispered": {"_count": 1, "Shh": {"_count": 1}}, "wan": {"_count": 1, "me": {"_count": 1}}, "became": {"_count": 1, "angry": {"_count": 1}}, "until": {"_count": 1, "recently": {"_count": 1}}, "witnessed": {"_count": 1, "it": {"_count": 1}}, "go": {"_count": 1, "dewyeyed": {"_count": 1}}, "grimaced": {"_count": 1, "at": {"_count": 1}}, "wrinkled": {"_count": 1, "her": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "either": {"_count": 1, "witnessed": {"_count": 1}}, "liked": {"_count": 1, "it": {"_count": 1}}, "wears": {"_count": 1, "gloves": {"_count": 1}}, "forgave": {"_count": 1, "your": {"_count": 1}}, "finished": {"_count": 1, "off": {"_count": 1}}, "collapsed": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "roared": {"_count": 2, "in": {"_count": 2}}, "dotes": {"_count": 1, "on": {"_count": 1}}, "treat": {"_count": 1, "them": {"_count": 1}}, "sailed": {"_count": 1, "with": {"_count": 1}}, "Apparates": {"_count": 1, "unless": {"_count": 1}}, "henceforth": {"_count": 1, "knew": {"_count": 1}}, "deflected": {"_count": 1, "awkward": {"_count": 1}}, "faked": {"_count": 1, "his": {"_count": 1}}, "submitted": {"_count": 1, "my": {"_count": 1}}, "moved": {"_count": 1, "forward": {"_count": 1}}, "scurried": {"_count": 1, "forward": {"_count": 1}}, "ends": {"_count": 1, "up": {"_count": 1}}, "pictured": {"_count": 1, "a": {"_count": 1}}, "banded": {"_count": 1, "together": {"_count": 1}}, "ve": {"_count": 1, "just": {"_count": 1}}, "hid": {"_count": 1, "beneath": {"_count": 1}}, "uses": {"_count": 1, "it": {"_count": 1}}, "craved": {"_count": 1, "a": {"_count": 1}}, "clambered": {"_count": 1, "to": {"_count": 1}}, "considered": {"_count": 1, "this": {"_count": 1}}, "keeps": {"_count": 1, "telling": {"_count": 1}}, "attacked": {"_count": 1, "me": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}, "use": {"_count": 1, "them": {"_count": 1}}, "triumphed": {"_count": 1, "": {"_count": 1}}, "possessed": {"_count": 1, "all": {"_count": 1}}, "reply": {"_count": 1, "that": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "hand": {"_count": 1, "Potter": {"_count": 1}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "set": {"_count": 1, "Dobby": {"_count": 1}}, "study": {"_count": 1, "the": {"_count": 1}}, "Travers": {"_count": 1, "was": {"_count": 1}}, "usually": {"_count": 1, "flanked": {"_count": 1}}, "dashed": {"_count": 1, "away": {"_count": 1}}, "whistled": {"_count": 1, "to": {"_count": 1}}, "accepted": {"_count": 1, "him": {"_count": 1}}, "gazed": {"_count": 1, "out": {"_count": 1}}, "teach": {"_count": 1, "here": {"_count": 1}}, "murmured": {"_count": 1, "I": {"_count": 1}}, "confided": {"_count": 1, "in": {"_count": 1}}, "lurched": {"_count": 1, "out": {"_count": 1}}, "pulled": {"_count": 1, "Hermione": {"_count": 1}}, "flung": {"_count": 1, "an": {"_count": 1}}, "greatly": {"_count": 1, "resembled": {"_count": 1}}, "succeeded": {"_count": 1, "in": {"_count": 1}}, "united": {"_count": 1, "all": {"_count": 1}}, "struck": {"_count": 1, "Ariana": {"_count": 1}}, "continues": {"_count": 1, "to": {"_count": 1}}, "marched": {"_count": 1, "on": {"_count": 1}}, "relied": {"_count": 1, "on": {"_count": 1}}, "continue": {"_count": 1, "to": {"_count": 1}}, "grew": {"_count": 1, "rigid": {"_count": 1}}}, "funny": {"_count": 144, "clothes": {"_count": 1, "the": {"_count": 1}}, "feeling": {"_count": 6, "hed": {"_count": 1}, "": {"_count": 1}, "Rita": {"_count": 1}, "Moodys": {"_count": 1}, "that": {"_count": 2}}, "business": {"_count": 1, "anything": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 17}, "?": {"_count": 1}, "!": {"_count": 1}}, "whelk": {"_count": 1, "": {"_count": 1}}, "crunching": {"_count": 1, "noise": {"_count": 1}}, "rasping": {"_count": 1, "noise": {"_count": 1}}, "noise": {"_count": 2, "like": {"_count": 1}, "halfway": {"_count": 1}}, "shaped": {"_count": 1, "packages": {"_count": 1}}, "looks": {"_count": 1, "because": {"_count": 1}}, "gray": {"_count": 1, "one": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 2}}, "words": {"_count": 1, "": {"_count": 1}}, "smell": {"_count": 2, "hung": {"_count": 1}, "that": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}, "clicking": {"_count": 2, "noise": {"_count": 2}}, "that": {"_count": 1, "Longbottom": {"_count": 1}}, "folk": {"_count": 2, "in": {"_count": 2}}, "muffled": {"_count": 1, "sort": {"_count": 1}}, "man": {"_count": 1, "Dumbledore": {"_count": 1}}, "choking": {"_count": 1, "noise": {"_count": 1}}, "story": {"_count": 2, "about": {"_count": 1}, "": {"_count": 1}}, "really": {"_count": 1, "but": {"_count": 1}}, "said": {"_count": 9, "Ron": {"_count": 2}, "the": {"_count": 1}, "Hermione": {"_count": 2}, "Aunt": {"_count": 1}, "Harry": {"_count": 1}, "Mrs": {"_count": 1}, "Neville": {"_count": 1}}, "lately": {"_count": 1, "said": {"_count": 1}}, "Every": {"_count": 1, "one": {"_count": 1}}, "little": {"_count": 4, "noises": {"_count": 1}, "witches": {"_count": 1}, "potion": {"_count": 1}, "spasm": {"_count": 1}}, "to": {"_count": 1, "throw": {"_count": 1}}, "rustling": {"_count": 1, "and": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "jolt": {"_count": 1, "": {"_count": 1}}, "stuff": {"_count": 1, "while": {"_count": 1}}, "ringing": {"_count": 1, "in": {"_count": 1}}, "prickling": {"_count": 1, "on": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "custardcolored": {"_count": 1, "furballs": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "about": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "wand": {"_count": 1, "then": {"_count": 1}}, "spluttering": {"_count": 1, "noise": {"_count": 1}}, "things": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "sometimes": {"_count": 1}}, "joke": {"_count": 2, "Meester": {"_count": 1}, "making": {"_count": 1}}, "thing": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "way": {"_count": 2, "of": {"_count": 2}}, "rumors": {"_count": 3, "flying": {"_count": 1}, "have": {"_count": 1}, "about": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "though": {"_count": 1, "said": {"_count": 1}}, "turns": {"_count": 1, "all": {"_count": 1}}, "accident": {"_count": 1, "or": {"_count": 1}}, "deaths": {"_count": 1, "or": {"_count": 1}}, "questions": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "Her": {"_count": 1, "prominent": {"_count": 1}}, "as": {"_count": 1, "opposed": {"_count": 1}}, "flat": {"_count": 1, "barklike": {"_count": 1}}, "and": {"_count": 3, "interesting": {"_count": 1}, "he": {"_count": 1}, "everything": {"_count": 1}}, "look": {"_count": 1, "Professor": {"_count": 1}}, "feelin": {"_count": 1, "Golgomath": {"_count": 1}}, "mood": {"_count": 1, "you": {"_count": 1}}, "movement": {"_count": 1, "somewhere": {"_count": 1}}, "snapped": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "after": {"_count": 1, "an": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "dreams": {"_count": 2, "": {"_count": 1}, "Hermione": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}, "Ginnys": {"_count": 1, "got": {"_count": 1}}, "instructions": {"_count": 1, "who": {"_count": 1}}, "squelching": {"_count": 1, "sound": {"_count": 1}}, "now": {"_count": 1, "hes": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "name": {"_count": 1, "isnt": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "baby": {"_count": 1, "too": {"_count": 1}}, "notion": {"_count": 1, "that": {"_count": 1}}, "says": {"_count": 1, "hes": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "witch": {"_count": 1}}, "coins": {"_count": 1, "or": {"_count": 1}}, "Cattermole": {"_count": 1, "do": {"_count": 1}}, "What": {"_count": 1, "about": {"_count": 1}}}, "clothes": {"_count": 78, "the": {"_count": 1, "getups": {"_count": 1}}, "swapping": {"_count": 1, "rumors": {"_count": 1}}, "of": {"_count": 1, "Dudleys": {"_count": 1}}, "and": {"_count": 10, "taped": {"_count": 1}, "broken": {"_count": 1}, "never": {"_count": 1}, "her": {"_count": 1}, "salaries": {"_count": 1}, "he": {"_count": 1}, "Dark": {"_count": 1}, "wizards": {"_count": 1}, "emerged": {"_count": 1}, "stale": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 13}, "!": {"_count": 2}}, "should": {"_count": 1, "carry": {"_count": 1}}, "brush": {"_count": 1, "out": {"_count": 1}}, "sir": {"_count": 2, "": {"_count": 2}}, "a": {"_count": 2, "pinstriped": {"_count": 1}, "small": {"_count": 1}}, "your": {"_count": 1, "grandmother": {"_count": 1}}, "very": {"_count": 1, "clearly": {"_count": 1}}, "had": {"_count": 1, "traveled": {"_count": 1}}, "Petunia": {"_count": 1, "and": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}, "more": {"_count": 2, "clearly": {"_count": 1}, "ragged": {"_count": 1}}, "but": {"_count": 2, "Mr": {"_count": 1}, "Kreacher": {"_count": 1}}, "not": {"_count": 1, "clothes": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "were": {"_count": 4, "ragged": {"_count": 1}, "as": {"_count": 1}, "ripped": {"_count": 1}, "so": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "telescope": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 3, "tomorrow": {"_count": 1}, "days": {"_count": 1}, "both": {"_count": 1}}, "Hermiones": {"_count": 1, "been": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "theyre": {"_count": 1, "tied": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "rack": {"_count": 2, "holding": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 1, "often": {"_count": 1}}, "billowed": {"_count": 1, "around": {"_count": 1}}, "are": {"_count": 2, "a": {"_count": 1}, "gone": {"_count": 1}}, "putting": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}}, "rose": {"_count": 1, "into": {"_count": 1}}, "thinking": {"_count": 1, "to": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "still": {"_count": 1, "lying": {"_count": 1}}, "he": {"_count": 1, "struck": {"_count": 1}}}, "getups": {"_count": 1, "you": {"_count": 1, "saw": {"_count": 1}}}, "saw": {"_count": 1212, "on": {"_count": 2, "young": {"_count": 1}, "entering": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "him": {"_count": 88, "kicking": {"_count": 1}, "gasp": {"_count": 1}, "hes": {"_count": 1}, "clap": {"_count": 1}, "": {"_count": 16}, "hunched": {"_count": 1}, "perhaps": {"_count": 1}, "reappear": {"_count": 1}, "wink": {"_count": 1}, "standing": {"_count": 1}, "surrounded": {"_count": 1}, "collide": {"_count": 1}, "tonight": {"_count": 1}, "too": {"_count": 4}, "bowl": {"_count": 1}, "said": {"_count": 1}, "glance": {"_count": 2}, "right": {"_count": 1}, "washing": {"_count": 1}, "give": {"_count": 1}, "arrive": {"_count": 2}, "up": {"_count": 1}, "in": {"_count": 3}, "dismiss": {"_count": 1}, "torture": {"_count": 1}, "indicating": {"_count": 1}, "lose": {"_count": 1}, "pushing": {"_count": 1}, "fighting": {"_count": 1}, "raise": {"_count": 2}, "and": {"_count": 2}, "sitting": {"_count": 2}, "talking": {"_count": 1}, "I": {"_count": 1}, "send": {"_count": 1}, "she": {"_count": 1}, "die": {"_count": 1}, "Hermione": {"_count": 1}, "at": {"_count": 2}, "there": {"_count": 1}, "quite": {"_count": 1}, "double": {"_count": 1}, "Mr": {"_count": 1}, "when": {"_count": 1}, "over": {"_count": 1}, "having": {"_count": 1}, "slip": {"_count": 2}, "with": {"_count": 1}, "flush": {"_count": 1}, "running": {"_count": 1}, "run": {"_count": 1}, "slam": {"_count": 1}, "hit": {"_count": 1}, "coming": {"_count": 2}, "again": {"_count": 1}, "waving": {"_count": 1}, "obliquely": {"_count": 1}, "find": {"_count": 1}, "across": {"_count": 1}, "wave": {"_count": 1}}, "how": {"_count": 5, "it": {"_count": 1}, "far": {"_count": 1}, "much": {"_count": 1}, "seriously": {"_count": 1}, "he": {"_count": 1}}, "a": {"_count": 88, "purple": {"_count": 1}, "curly": {"_count": 1}, "burst": {"_count": 1}, "wroughtiron": {"_count": 1}, "velvety": {"_count": 1}, "horrible": {"_count": 1}, "dark": {"_count": 2}, "blurred": {"_count": 1}, "familiar": {"_count": 1}, "long": {"_count": 3}, "glitter": {"_count": 1}, "small": {"_count": 2}, "line": {"_count": 1}, "gleaming": {"_count": 1}, "tear": {"_count": 2}, "solid": {"_count": 1}, "sleek": {"_count": 1}, "boggart": {"_count": 1}, "silverywhite": {"_count": 1}, "sign": {"_count": 1}, "gigantic": {"_count": 3}, "dementor": {"_count": 1}, "silvery": {"_count": 1}, "tiny": {"_count": 4}, "minute": {"_count": 1}, "shining": {"_count": 1}, "wizened": {"_count": 1}, "grindylow": {"_count": 1}, "large": {"_count": 2}, "pet": {"_count": 1}, "stile": {"_count": 1}, "narrow": {"_count": 1}, "sliver": {"_count": 2}, "man": {"_count": 1}, "gleam": {"_count": 2}, "wand": {"_count": 1}, "very": {"_count": 1}, "longfingered": {"_count": 1}, "flash": {"_count": 2}, "shadow": {"_count": 2}, "stand": {"_count": 1}, "darker": {"_count": 1}, "flicker": {"_count": 1}, "bit": {"_count": 1}, "mess": {"_count": 1}, "clear": {"_count": 1}, "mane": {"_count": 1}, "red": {"_count": 1}, "few": {"_count": 2}, "fissure": {"_count": 1}, "hand": {"_count": 1}, "phoenix": {"_count": 1}, "mass": {"_count": 1}, "body": {"_count": 1}, "spurt": {"_count": 1}, "clean": {"_count": 1}, "Grim": {"_count": 1}, "glimpse": {"_count": 1}, "poster": {"_count": 1}, "fullpage": {"_count": 1}, "dreadful": {"_count": 1}, "little": {"_count": 1}, "trace": {"_count": 1}, "photograph": {"_count": 1}, "glint": {"_count": 1}, "towering": {"_count": 1}, "pair": {"_count": 1}, "ghostly": {"_count": 1}, "stag": {"_count": 1}, "tall": {"_count": 1}, "rectangular": {"_count": 1}, "high": {"_count": 1}}, "that": {"_count": 135, "the": {"_count": 20}, "Hagrid": {"_count": 5}, "Hedwig": {"_count": 1}, "everyone": {"_count": 1}, "Harry": {"_count": 3}, "she": {"_count": 7}, "it": {"_count": 13}, "they": {"_count": 11}, "what": {"_count": 1}, "a": {"_count": 2}, "its": {"_count": 1}, "Lockhart": {"_count": 1}, "Stan": {"_count": 1}, "thing": {"_count": 1}, "her": {"_count": 4}, "there": {"_count": 3}, "he": {"_count": 21}, "both": {"_count": 1}, "Ron": {"_count": 1}, "Bill": {"_count": 1}, "Nevilles": {"_count": 1}, "their": {"_count": 1}, "Madame": {"_count": 1}, "an": {"_count": 1}, "Pansy": {"_count": 1}, "Snape": {"_count": 1}, "rows": {"_count": 1}, "Voldemorts": {"_count": 1}, "Malfoy": {"_count": 2}, "keeping": {"_count": 1}, "nearly": {"_count": 1}, "Dobby": {"_count": 1}, "snake": {"_count": 1}, "door": {"_count": 1}, "Trelawneys": {"_count": 1}, "his": {"_count": 3}, "Umbridge": {"_count": 2}, "Hermiones": {"_count": 1}, "Mrs": {"_count": 1}, "Ginny": {"_count": 1}, "Zonkos": {"_count": 1}, "Hermione": {"_count": 2}, "Filch": {"_count": 1}, "nothing": {"_count": 1}, "many": {"_count": 1}, "witch": {"_count": 1}, "deer": {"_count": 1}, "Dumbledore": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 1}, "letter": {"_count": 1}}, "you": {"_count": 20, "you": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "last": {"_count": 1}, "": {"_count": 5}, "on": {"_count": 1}, "running": {"_count": 1}, "coming": {"_count": 1}, "at": {"_count": 1}, "teaching": {"_count": 1}, "thrashing": {"_count": 1}, "there": {"_count": 1}, "heading": {"_count": 1}, "sneered": {"_count": 1}, "in": {"_count": 1}, "Apparate": {"_count": 1}}, "Dumbledore": {"_count": 5, "leave": {"_count": 1}, "he": {"_count": 1}, "rising": {"_count": 1}, "clutching": {"_count": 1}, "s": {"_count": 1}}, "her": {"_count": 18, "for": {"_count": 2}, "glance": {"_count": 1}, "leaving": {"_count": 1}, "slip": {"_count": 1}, "zoom": {"_count": 1}, "drop": {"_count": 1}, "throw": {"_count": 1}, "exchange": {"_count": 1}, "watching": {"_count": 1}, "chuck": {"_count": 1}, "deep": {"_count": 1}, "again": {"_count": 1}, "foolish": {"_count": 1}, "shudder": {"_count": 1}, "look": {"_count": 1}, "picture": {"_count": 1}, "at": {"_count": 1}}, "again": {"_count": 3, "the": {"_count": 2}, "that": {"_count": 1}}, "the": {"_count": 137, "archway": {"_count": 1}, "Dursleys": {"_count": 2}, "boys": {"_count": 1}, "ghost": {"_count": 2}, "fluttering": {"_count": 1}, "other": {"_count": 1}, "three": {"_count": 2}, "black": {"_count": 1}, "cabinet": {"_count": 1}, "smooth": {"_count": 1}, "rest": {"_count": 1}, "very": {"_count": 1}, "Snitch": {"_count": 2}, "printed": {"_count": 1}, "side": {"_count": 1}, "reflection": {"_count": 1}, "name": {"_count": 2}, "now": {"_count": 1}, "dim": {"_count": 1}, "gigantic": {"_count": 1}, "lower": {"_count": 1}, "front": {"_count": 1}, "exam": {"_count": 1}, "map": {"_count": 1}, "nervous": {"_count": 1}, "tiny": {"_count": 2}, "Dark": {"_count": 2}, "headline": {"_count": 2}, "two": {"_count": 3}, "rigging": {"_count": 1}, "long": {"_count": 1}, "same": {"_count": 2}, "eyes": {"_count": 1}, "dragons": {"_count": 1}, "dragon": {"_count": 1}, "first": {"_count": 1}, "edge": {"_count": 1}, "shortest": {"_count": 1}, "word": {"_count": 1}, "dazed": {"_count": 1}, "elf": {"_count": 1}, "dementors": {"_count": 1}, "people": {"_count": 1}, "longing": {"_count": 1}, "look": {"_count": 3}, "evil": {"_count": 1}, "shining": {"_count": 1}, "tip": {"_count": 1}, "sparkling": {"_count": 1}, "Death": {"_count": 3}, "others": {"_count": 1}, "dark": {"_count": 2}, "blurred": {"_count": 1}, "house": {"_count": 1}, "prominent": {"_count": 1}, "caretakers": {"_count": 1}, "faint": {"_count": 1}, "basket": {"_count": 1}, "pugfaced": {"_count": 1}, "Snitchs": {"_count": 1}, "Devils": {"_count": 1}, "top": {"_count": 1}, "nostrils": {"_count": 1}, "knees": {"_count": 1}, "five": {"_count": 1}, "scar": {"_count": 1}, "blinds": {"_count": 1}, "tall": {"_count": 1}, "box": {"_count": 2}, "locket": {"_count": 1}, "attraction": {"_count": 1}, "rather": {"_count": 1}, "glint": {"_count": 1}, "Sectumsempra": {"_count": 1}, "best": {"_count": 1}, "reflected": {"_count": 1}, "brother": {"_count": 1}, "vast": {"_count": 1}, "nextdoor": {"_count": 1}, "strangely": {"_count": 1}, "white": {"_count": 1}, "frail": {"_count": 1}, "obituary": {"_count": 1}, "interview": {"_count": 1}, "snakes": {"_count": 1}, "whiteness": {"_count": 1}, "door": {"_count": 1}, "delight": {"_count": 1}, "sword": {"_count": 1}, "contemptuous": {"_count": 1}, "outline": {"_count": 1}, "old": {"_count": 1}, "snake": {"_count": 1}, "small": {"_count": 1}, "fear": {"_count": 1}, "place": {"_count": 1}, "doe": {"_count": 1}, "what": {"_count": 1}, "body": {"_count": 1}, "mark": {"_count": 2}, "absence": {"_count": 1}, "ratlike": {"_count": 1}, "Shield": {"_count": 1}, "thing": {"_count": 1}, "scars": {"_count": 1}, "fake": {"_count": 1}, "coast": {"_count": 1}, "cup": {"_count": 1}, "achingly": {"_count": 1}, "gold": {"_count": 1}, "great": {"_count": 1}, "envelope": {"_count": 1}, "mouth": {"_count": 1}, "Cloak": {"_count": 1}, "open": {"_count": 1}, "figure": {"_count": 1}, "skin": {"_count": 1}, "Elder": {"_count": 1}, "wonder": {"_count": 1}}, "what": {"_count": 19, "everyone": {"_count": 1}, "he": {"_count": 5}, "happened": {"_count": 4}, "had": {"_count": 2}, "was": {"_count": 2}, "shes": {"_count": 1}, "really": {"_count": 1}, "looked": {"_count": 2}, "it": {"_count": 1}}, "yeh": {"_count": 3, "": {"_count": 1}, "I": {"_count": 1}, "take": {"_count": 1}}, "were": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "he": {"_count": 1, "still": {"_count": 1}}, "to": {"_count": 10, "his": {"_count": 8}, "their": {"_count": 1}, "that": {"_count": 1}}, "looked": {"_count": 3, "pale": {"_count": 1}, "slightly": {"_count": 1}, "wary": {"_count": 1}}, "before": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "their": {"_count": 4, "owners": {"_count": 1}, "spider": {"_count": 1}, "house": {"_count": 1}, "eyes": {"_count": 1}}, "his": {"_count": 38, "scared": {"_count": 1}, "face": {"_count": 3}, "reflection": {"_count": 1}, "mouth": {"_count": 2}, "right": {"_count": 1}, "own": {"_count": 6}, "eyes": {"_count": 1}, "bald": {"_count": 1}, "ghost": {"_count": 1}, "jaw": {"_count": 1}, "lips": {"_count": 2}, "hands": {"_count": 1}, "dark": {"_count": 1}, "and": {"_count": 1}, "Firebolt": {"_count": 1}, "horrible": {"_count": 1}, "red": {"_count": 1}, "picture": {"_count": 1}, "vibrant": {"_count": 1}, "hand": {"_count": 1}, "five": {"_count": 1}, "glasses": {"_count": 1}, "knuckles": {"_count": 1}, "feet": {"_count": 1}, "Patronus": {"_count": 1}, "reply": {"_count": 1}, "father": {"_count": 1}, "parents": {"_count": 1}, "pupils": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "quite": {"_count": 2, "clearly": {"_count": 1}, "distinctly": {"_count": 1}}, "this": {"_count": 5, "as": {"_count": 1}, "except": {"_count": 1}, "young": {"_count": 2}, "": {"_count": 1}}, "not": {"_count": 1, "Percy": {"_count": 1}}, "Harry": {"_count": 18, "": {"_count": 4}, "and": {"_count": 4}, "Ginny": {"_count": 1}, "Ron": {"_count": 1}, "watching": {"_count": 1}, "but": {"_count": 1}, "her": {"_count": 1}, "Im": {"_count": 1}, "coming": {"_count": 1}, "emerging": {"_count": 1}, "staring": {"_count": 1}, "standing": {"_count": 1}}, "it": {"_count": 51, "": {"_count": 12}, "the": {"_count": 3}, "through": {"_count": 1}, "Scratched": {"_count": 1}, "had": {"_count": 1}, "for": {"_count": 2}, "Faking": {"_count": 1}, "immediately": {"_count": 1}, "lower": {"_count": 1}, "who": {"_count": 1}, "from": {"_count": 1}, "happen": {"_count": 8}, "all": {"_count": 2}, "spill": {"_count": 1}, "a": {"_count": 2}, "with": {"_count": 1}, "there": {"_count": 1}, "as": {"_count": 1}, "marble": {"_count": 1}, "drop": {"_count": 1}, "Hagrid": {"_count": 1}, "expand": {"_count": 1}, "raise": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 2}, "out": {"_count": 1}, "really": {"_count": 1}}, "was": {"_count": 11, "a": {"_count": 1}, "Draco": {"_count": 1}, "Peeves": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "trailing": {"_count": 1}, "Daviess": {"_count": 1}, "starkly": {"_count": 1}, "left": {"_count": 1}, "carrying": {"_count": 1}, "now": {"_count": 1}}, "only": {"_count": 2, "moonlight": {"_count": 1}, "greedy": {"_count": 1}}, "other": {"_count": 1, "pairs": {"_count": 1}}, "no": {"_count": 4, "one": {"_count": 1}, "hint": {"_count": 1}, "signs": {"_count": 1}, "reason": {"_count": 1}}, "Snape": {"_count": 9, "land": {"_count": 1}, "enter": {"_count": 1}, "up": {"_count": 1}, "disappearing": {"_count": 1}, "running": {"_count": 1}, "s": {"_count": 2}, "talking": {"_count": 1}, "cast": {"_count": 1}}, "flat": {"_count": 1, "on": {"_count": 1}}, "faithful": {"_count": 1, "Quirrell": {"_count": 1}}, "Dobbys": {"_count": 1, "face": {"_count": 1}}, "Fred": {"_count": 6, "and": {"_count": 4}, "George": {"_count": 1}, "pull": {"_count": 1}}, "Hermione": {"_count": 15, "Granger": {"_count": 1}, "s": {"_count": 3}, "slip": {"_count": 1}, "slide": {"_count": 1}, "dashing": {"_count": 1}, "saying": {"_count": 1}, "cover": {"_count": 1}, "give": {"_count": 1}, "point": {"_count": 1}, "and": {"_count": 1}, "checking": {"_count": 1}, "dive": {"_count": 1}, "approach": {"_count": 1}}, "in": {"_count": 8, "Borgin": {"_count": 1}, "front": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}, "that": {"_count": 1}}, "Ron": {"_count": 20, "and": {"_count": 5}, "detach": {"_count": 1}, "dashing": {"_count": 1}, "dive": {"_count": 1}, "dragging": {"_count": 1}, "sitting": {"_count": 1}, "shiver": {"_count": 1}, "checking": {"_count": 1}, "streak": {"_count": 1}, "Ginny": {"_count": 1}, "goggling": {"_count": 1}, "ripping": {"_count": 1}, "throw": {"_count": 1}, "blinking": {"_count": 1}, "who": {"_count": 1}, "smiling": {"_count": 1}}, "Gilderoy": {"_count": 2, "Lockhart": {"_count": 2}}, "an": {"_count": 11, "old": {"_count": 2}, "ogre": {"_count": 1}, "enormous": {"_count": 1}, "extraordinary": {"_count": 1}, "animal": {"_count": 1}, "odd": {"_count": 1}, "inexplicable": {"_count": 1}, "untidy": {"_count": 1}, "unrecognizable": {"_count": 1}, "inkling": {"_count": 1}}, "them": {"_count": 19, "": {"_count": 3}, "at": {"_count": 2}, "pointing": {"_count": 1}, "whispering": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "hurrying": {"_count": 1}, "taking": {"_count": 1}, "Death": {"_count": 1}, "in": {"_count": 1}, "standing": {"_count": 1}, "turn": {"_count": 1}, "quite": {"_count": 1}, "together": {"_count": 1}, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}}, "Malfoy": {"_count": 20, "slide": {"_count": 1}, "stoop": {"_count": 1}, "watching": {"_count": 1}, "Crabbe": {"_count": 2}, "on": {"_count": 1}, "flashing": {"_count": 1}, "under": {"_count": 1}, "look": {"_count": 1}, "concealed": {"_count": 1}, "throw": {"_count": 1}, "smash": {"_count": 1}, "jump": {"_count": 1}, "miming": {"_count": 1}, "lean": {"_count": 1}, "riffling": {"_count": 1}, "cutting": {"_count": 1}, "leaving": {"_count": 1}, "walking": {"_count": 1}, "sneaking": {"_count": 1}}, "who": {"_count": 2, "it": {"_count": 1}, "had": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "Mrs": {"_count": 6, "Norris": {"_count": 1}, "Weasley": {"_count": 5}}, "several": {"_count": 2, "of": {"_count": 1}, "wizard": {"_count": 1}}, "my": {"_count": 4, "Kwikspell": {"_count": 1}, "piece": {"_count": 1}, "body": {"_count": 1}, "mum": {"_count": 1}}, "Justin": {"_count": 1, "Finch": {"_count": 1}}, "anything": {"_count": 1, "Harry": {"_count": 1}}, "George": {"_count": 3, "give": {"_count": 1}, "half": {"_count": 1}, "wrap": {"_count": 1}}, "its": {"_count": 1, "eyes": {"_count": 1}}, "nearly": {"_count": 1, "made": {"_count": 1}}, "said": {"_count": 4, "Ernie": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "Rons": {"_count": 3, "eyes": {"_count": 1}, "legs": {"_count": 1}, "silver": {"_count": 1}}, "at": {"_count": 6, "a": {"_count": 1}, "once": {"_count": 5}}, "fresh": {"_count": 1, "words": {"_count": 1}}, "any": {"_count": 2, "part": {"_count": 1}, "misgivings": {"_count": 1}}, "one": {"_count": 8, "of": {"_count": 2}, "stir": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "without": {"_count": 1}}, "right": {"_count": 1, "through": {"_count": 1}}, "through": {"_count": 4, "you": {"_count": 1}, "the": {"_count": 3}}, "fit": {"_count": 1, "to": {"_count": 1}}, "Mr": {"_count": 10, "Malfoys": {"_count": 1}, "Weasley": {"_count": 4}, "Crouch": {"_count": 3}, "and": {"_count": 1}, "Doge": {"_count": 1}}, "all": {"_count": 3, "nine": {"_count": 1}, "the": {"_count": 2}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 2}}, "Stans": {"_count": 1, "eyes": {"_count": 1}}, "made": {"_count": 2, "his": {"_count": 2}}, "two": {"_count": 7, "more": {"_count": 2}, "large": {"_count": 1}, "little": {"_count": 1}, "panting": {"_count": 1}, "bucketsize": {"_count": 1}, "leather": {"_count": 1}}, "Madam": {"_count": 3, "Hoochs": {"_count": 1}, "Pomfrey": {"_count": 1}, "Rosmerta": {"_count": 1}}, "something": {"_count": 19, "that": {"_count": 2}, "to": {"_count": 2}, "very": {"_count": 1}, "with": {"_count": 1}, "larger": {"_count": 1}, "monstrous": {"_count": 1}, "silvery": {"_count": 1}, "immense": {"_count": 1}, "upon": {"_count": 1}, "slide": {"_count": 1}, "scarlet": {"_count": 1}, "white": {"_count": 1}, "scribbled": {"_count": 1}, "calculated": {"_count": 1}, "move": {"_count": 2}, "": {"_count": 1}}, "four": {"_count": 1, "sets": {"_count": 1}}, "another": {"_count": 3, "pair": {"_count": 1}, "dot": {"_count": 1}, "figure": {"_count": 1}}, "Hagrid": {"_count": 9, "so": {"_count": 1}, "plastered": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "digging": {"_count": 1}, "emerging": {"_count": 1}, "lying": {"_count": 1}, "spreadeagled": {"_count": 1}}, "myself": {"_count": 2, "abandoning": {"_count": 1}, "across": {"_count": 1}}, "Professor": {"_count": 7, "Lupin": {"_count": 1}, "Umbridge": {"_count": 4}, "McGonagall": {"_count": 1}, "Trelawney": {"_count": 1}}, "Neville": {"_count": 5, "Longbottom": {"_count": 1}, "slip": {"_count": 1}, "lying": {"_count": 1}, "being": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 12, "enormous": {"_count": 1}, "a": {"_count": 5}, "some": {"_count": 1}, "my": {"_count": 1}, "an": {"_count": 2}, "deep": {"_count": 1}, "immense": {"_count": 1}}, "Cho": {"_count": 8, "following": {"_count": 1}, "Chang": {"_count": 2}, "and": {"_count": 1}, "give": {"_count": 1}, "laughing": {"_count": 1}, "standing": {"_count": 1}, "earlier": {"_count": 1}}, "six": {"_count": 2, "scarlet": {"_count": 1}, "tiny": {"_count": 1}}, "Glaring": {"_count": 1, "suspiciously": {"_count": 1}}, "signs": {"_count": 1, "of": {"_count": 1}}, "nothing": {"_count": 5, "but": {"_count": 3}, "there": {"_count": 1}, "reflected": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "Buckbeak": {"_count": 1, "a": {"_count": 1}}, "inchlong": {"_count": 1, "teeth": {"_count": 1}}, "me": {"_count": 9, "": {"_count": 1}, "but": {"_count": 1}, "expelled": {"_count": 1}, "on": {"_count": 1}, "stealing": {"_count": 1}, "hex": {"_count": 1}, "coming": {"_count": 2}, "leaving": {"_count": 1}}, "James": {"_count": 1, "disappearing": {"_count": 1}}, "Pettigrew": {"_count": 2, "die": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 2}, ".": {"_count": 3}, "?": {"_count": 2}}, "Peter": {"_count": 1, "in": {"_count": 1}}, "why": {"_count": 1, "Sirius": {"_count": 1}}, "by": {"_count": 3, "its": {"_count": 1}, "Rufus": {"_count": 1}, "the": {"_count": 1}}, "Sirius": {"_count": 6, "murder": {"_count": 1}, "and": {"_count": 1}, "give": {"_count": 1}, "dueling": {"_count": 1}, "duck": {"_count": 1}, "move": {"_count": 1}}, "yourself": {"_count": 1, "bursting": {"_count": 1}}, "himself": {"_count": 6, "Ron": {"_count": 1}, "in": {"_count": 2}, "emerging": {"_count": 1}, "holding": {"_count": 1}, "possessor": {"_count": 1}}, "Lupin": {"_count": 4, "Pettigrew": {"_count": 1}, "Mrs": {"_count": 1}, "hurry": {"_count": 1}, "and": {"_count": 1}}, "movement": {"_count": 3, "There": {"_count": 1}, "once": {"_count": 1}, "outside": {"_count": 1}}, "THEY": {"_count": 1, "HELPED": {"_count": 1}}, "lights": {"_count": 1, "glimmering": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "more": {"_count": 1, "familiar": {"_count": 1}}, "representatives": {"_count": 1, "of": {"_count": 1}}, "Krums": {"_count": 1, "face": {"_count": 1}}, "three": {"_count": 1, "tall": {"_count": 1}}, "jets": {"_count": 1, "of": {"_count": 1}}, "whats": {"_count": 1, "left": {"_count": 1}}, "floating": {"_count": 1, "twenty": {"_count": 1}}, "below": {"_count": 1, "the": {"_count": 1}}, "illuminated": {"_count": 1, "by": {"_count": 1}}, "Hedwig": {"_count": 1, "soaring": {"_count": 1}}, "Dennis": {"_count": 1, "Creevey": {"_count": 1}}, "Lee": {"_count": 2, "Jordan": {"_count": 1}, "the": {"_count": 1}}, "Karkaroff": {"_count": 2, "lean": {"_count": 1}, "pull": {"_count": 1}}, "Krum": {"_count": 2, "shake": {"_count": 1}, "on": {"_count": 1}}, "comprehension": {"_count": 1, "dawn": {"_count": 1}}, "about": {"_count": 2, "twenty": {"_count": 1}, "Madam": {"_count": 1}}, "Angelina": {"_count": 2, "Johnson": {"_count": 1}, "Fred": {"_count": 1}}, "Viktor": {"_count": 2, "Krum": {"_count": 2}}, "anywhere": {"_count": 1, "else": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "they": {"_count": 2, "werent": {"_count": 1}, "were": {"_count": 1}}, "long": {"_count": 1, "bronzecolored": {"_count": 1}}, "Siriuss": {"_count": 1, "face": {"_count": 1}}, "Cedric": {"_count": 5, "Diggory": {"_count": 2}, "emerging": {"_count": 1}, "swimming": {"_count": 1}, "jerking": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "MadEye": {"_count": 2, "Moody": {"_count": 2}}, "everything": {"_count": 1, "in": {"_count": 1}}, "gazing": {"_count": 1, "back": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "Ludo": {"_count": 2, "Bagman": {"_count": 2}}, "Fleur": {"_count": 2, "Delacour": {"_count": 2}}, "Moodys": {"_count": 2, "magical": {"_count": 1}, "magic": {"_count": 1}}, "Moody": {"_count": 2, "point": {"_count": 1}, "sitting": {"_count": 1}}, "Hagrids": {"_count": 2, "crestfallen": {"_count": 1}, "enormous": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "instead": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "light": {"_count": 2, "ahead": {"_count": 2}}, "Cedrics": {"_count": 2, "wand": {"_count": 1}, "body": {"_count": 1}}, "Chos": {"_count": 2, "face": {"_count": 1}, "friend": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "Voldemort": {"_count": 7, "come": {"_count": 2}, "preparing": {"_count": 1}, "punishing": {"_count": 1}, "striding": {"_count": 1}, "standing": {"_count": 1}, "wave": {"_count": 1}}, "Draco": {"_count": 3, "Malfoy": {"_count": 3}}, "Dudley": {"_count": 1, "look": {"_count": 1}}, "number": {"_count": 1, "ten": {"_count": 1}}, "Bill": {"_count": 1, "who": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "Kreacher": {"_count": 3, "serving": {"_count": 1}, "as": {"_count": 2}}, "silver": {"_count": 1, "Sickles": {"_count": 1}}, "dementors": {"_count": 1, "running": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "youd": {"_count": 1, "got": {"_count": 1}}, "nobody": {"_count": 1, "but": {"_count": 1}}, "little": {"_count": 2, "golden": {"_count": 1}, "disturbances": {"_count": 1}}, "wasn": {"_count": 1, "good": {"_count": 1}}, "someone": {"_count": 1, "snuff": {"_count": 1}}, "many": {"_count": 3, "of": {"_count": 2}, "people": {"_count": 1}}, "Dad": {"_count": 1, "hurt": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 2, "remembered": {"_count": 1}, "think": {"_count": 1}}, "students": {"_count": 1, "approaching": {"_count": 1}}, "there": {"_count": 2, "hell": {"_count": 1}, "Harry": {"_count": 1}}, "Firenze": {"_count": 1, "": {"_count": 1}}, "Potters": {"_count": 1, "name": {"_count": 1}}, "McGonagall": {"_count": 2, "and": {"_count": 1}, "Kingsley": {"_count": 1}}, "five": {"_count": 2, "or": {"_count": 1}, "pairs": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "Umbridge": {"_count": 1, "being": {"_count": 1}}, "small": {"_count": 1, "collections": {"_count": 1}}, "clocks": {"_count": 1, "gleaming": {"_count": 1}}, "Uranus": {"_count": 2, "up": {"_count": 1}, "ha": {"_count": 1}}, "Tonks": {"_count": 2, "fall": {"_count": 1}, "fighting": {"_count": 1}}, "Kingsley": {"_count": 1, "yelling": {"_count": 1}}, "Bellatrix": {"_count": 2, "disappearing": {"_count": 1}, "bearing": {"_count": 1}}, "proof": {"_count": 1, "with": {"_count": 1}}, "Rookwood": {"_count": 1, "who": {"_count": 1}}, "somebody": {"_count": 2, "up": {"_count": 1}, "once": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Narcissa": {"_count": 2, "darting": {"_count": 1}, "Malfoy": {"_count": 1}}, "sudden": {"_count": 1, "movement": {"_count": 1}}, "Borgin": {"_count": 1, "lick": {"_count": 1}}, "Malfoys": {"_count": 3, "eyes": {"_count": 1}, "tiny": {"_count": 1}, "pale": {"_count": 1}}, "fleetingly": {"_count": 1, "a": {"_count": 1}}, "Harrys": {"_count": 2, "and": {"_count": 1}, "disembodied": {"_count": 1}}, "Lavender": {"_count": 1, "walking": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "Dean": {"_count": 2, "fly": {"_count": 1}, "and": {"_count": 1}}, "Lupins": {"_count": 2, "head": {"_count": 1}, "face": {"_count": 1}}, "dimly": {"_count": 1, "where": {"_count": 1}}, "Voldemorts": {"_count": 3, "eyes": {"_count": 1}, "nostrils": {"_count": 1}, "green": {"_count": 1}}, "daylight": {"_count": 1, "these": {"_count": 1}}, "clearly": {"_count": 1, "what": {"_count": 1}}, "Ginny": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "look": {"_count": 1}}, "red": {"_count": 1, "hair": {"_count": 1}}, "Nevilles": {"_count": 1, "pale": {"_count": 1}}, "people": {"_count": 1, "beginning": {"_count": 1}}, "us": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "very": {"_count": 1, "clearly": {"_count": 1}}, "stretching": {"_count": 1, "ahead": {"_count": 1}}, "Potter": {"_count": 1, "running": {"_count": 1}}, "Dumbledores": {"_count": 1, "eye": {"_count": 1}}, "sparks": {"_count": 1, "from": {"_count": 1}}, "both": {"_count": 2, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}}, "Stan": {"_count": 1, "Shunpike": {"_count": 1}}, "YouKnowWho": {"_count": 2, "as": {"_count": 1}, "trying": {"_count": 1}}, "Ginnys": {"_count": 1, "face": {"_count": 1}}, "cloaked": {"_count": 1, "and": {"_count": 1}}, "these": {"_count": 1, "things": {"_count": 1}}, "terrible": {"_count": 1, "things": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "mere": {"_count": 1}}, "Kendra": {"_count": 1, "leading": {"_count": 1}}, "Hermiones": {"_count": 3, "eyes": {"_count": 1}, "anxious": {"_count": 1}, "otter": {"_count": 1}}, "quills": {"_count": 1, "and": {"_count": 1}}, "Yaxleys": {"_count": 1, "head": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "him": {"_count": 1}}, "concern": {"_count": 1, "and": {"_count": 1}}, "Dracos": {"_count": 1, "face": {"_count": 1}}, "Luna": {"_count": 1, "all": {"_count": 1}}, "beads": {"_count": 1, "of": {"_count": 1}}, "resentment": {"_count": 1, "in": {"_count": 1}}, "Bills": {"_count": 1, "eyes": {"_count": 1}}, "Griphooks": {"_count": 1, "face": {"_count": 1}}, "Tom": {"_count": 1, "look": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "terror": {"_count": 1, "in": {"_count": 1}}, "deep": {"_count": 1, "green": {"_count": 1}}, "scared": {"_count": 1, "them": {"_count": 1}}, "Alecto": {"_count": 1, "lying": {"_count": 1}}, "Professors": {"_count": 1, "Flitwick": {"_count": 1}}, "wands": {"_count": 1, "emerging": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "bursts": {"_count": 3, "of": {"_count": 3}}, "Grawp": {"_count": 1, "the": {"_count": 1}}, "Aberforth": {"_count": 1, "again": {"_count": 1}}, "tear": {"_count": 1, "tracks": {"_count": 1}}, "Peeves": {"_count": 1, "zooming": {"_count": 1}}, "Snapes": {"_count": 1, "white": {"_count": 1}}, "Yaxley": {"_count": 2, "and": {"_count": 1}, "slammed": {"_count": 1}}, "Fenrir": {"_count": 1, "skulking": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "great": {"_count": 1, "winged": {"_count": 1}}, "Charlie": {"_count": 1, "Weasley": {"_count": 1}}, "Dolohov": {"_count": 1, "fall": {"_count": 1}}, "Walden": {"_count": 1, "Macnair": {"_count": 1}}, "shock": {"_count": 1, "flit": {"_count": 1}}, "families": {"_count": 1, "reunited": {"_count": 1}}}, "young": {"_count": 162, "people": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "eighteen": {"_count": 1}}, "hoodlums": {"_count": 1, "he": {"_count": 1}}, "man": {"_count": 22, "made": {"_count": 1}, "being": {"_count": 1}, "from": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "before": {"_count": 1}, "possibly": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "who": {"_count": 4}, "sitting": {"_count": 1}, "And": {"_count": 1}, "with": {"_count": 2}, "no": {"_count": 1}, "at": {"_count": 1}, "that": {"_count": 1}}, "with": {"_count": 1, "scabby": {"_count": 1}}, "as": {"_count": 4, "you": {"_count": 2}, "he": {"_count": 1}, "she": {"_count": 1}}, "Master": {"_count": 1, "Malfoy": {"_count": 1}}, "Harry": {"_count": 2, "here": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "Creevey": {"_count": 1, "if": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "maybe": {"_count": 1, "itll": {"_count": 1}}, "girl": {"_count": 2, "": {"_count": 1}, "got": {"_count": 1}}, "his": {"_count": 1, "light": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "carefree": {"_count": 1, "and": {"_count": 1}}, "yeomen": {"_count": 1, "": {"_count": 1}}, "thoughtless": {"_count": 1, "carried": {"_count": 1}}, "lady": {"_count": 5, "is": {"_count": 1}, "tells": {"_count": 1}, "perform": {"_count": 1}, "called": {"_count": 1}, "said": {"_count": 1}}, "Harrys": {"_count": 1, "back": {"_count": 1}}, "killer": {"_count": 1, "whale": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 10, "be": {"_count": 2}, "gamble": {"_count": 1}, "Apparate": {"_count": 2}, "have": {"_count": 2}, "know": {"_count": 1}, "understand": {"_count": 1}, "come": {"_count": 1}}, "wizards": {"_count": 3, "all": {"_count": 1}, "He": {"_count": 1}, "Grindelwald": {"_count": 1}}, "wizard": {"_count": 5, "whose": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "like": {"_count": 1}, "who": {"_count": 1}}, "sorcerers": {"_count": 1, "Thus": {"_count": 1}}, "witches": {"_count": 3, "and": {"_count": 3}}, "in": {"_count": 1, "life": {"_count": 1}}, "Weatherby": {"_count": 1, "in": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "round": {"_count": 1, "and": {"_count": 1}}, "unicorns": {"_count": 1, "he": {"_count": 1}}, "e": {"_count": 1, "is": {"_count": 1}}, "lad": {"_count": 1, "from": {"_count": 1}}, "friend": {"_count": 2, "arrived": {"_count": 1}, "here": {"_count": 1}}, "foolish": {"_count": 1, "and": {"_count": 1}}, "woman": {"_count": 6, "with": {"_count": 2}, "": {"_count": 2}, "was": {"_count": 1}, "burst": {"_count": 1}}, "mans": {"_count": 4, "chest": {"_count": 1}, "twin": {"_count": 1}, "voice": {"_count": 1}, "finished": {"_count": 1}}, "Crouch": {"_count": 1, "": {"_count": 1}}, "Lupin": {"_count": 1, "looked": {"_count": 1}}, "witch": {"_count": 9, "with": {"_count": 3}, "just": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "beside": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}}, "But": {"_count": 1, "before": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "chap": {"_count": 1, "and": {"_count": 1}}, "master": {"_count": 2, "that": {"_count": 1}, "Theyre": {"_count": 1}}, "Theyre": {"_count": 1, "not": {"_count": 1}}, "is": {"_count": 1, "she": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "age": {"_count": 2, "": {"_count": 2}}, "much": {"_count": 1, "too": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "Marcus": {"_count": 1, "here": {"_count": 1}}, "boy": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "he": {"_count": 2, "says": {"_count": 1}, "said": {"_count": 1}}, "minds": {"_count": 1, "": {"_count": 1}}, "muttered": {"_count": 1, "Hagrid": {"_count": 1}}, "and": {"_count": 4, "whole": {"_count": 2}, "then": {"_count": 1}, "I": {"_count": 1}}, "Muggles": {"_count": 1, "": {"_count": 1}}, "children": {"_count": 1, "came": {"_count": 1}}, "Doge": {"_count": 1, "but": {"_count": 1}}, "bloke": {"_count": 1, "perched": {"_count": 1}}, "thief": {"_count": 1, "look": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "men": {"_count": 2, "were": {"_count": 1}, "sat": {"_count": 1}}, "brother": {"_count": 1, "": {"_count": 1}}, "boys": {"_count": 1, "they": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 1, "and": {"_count": 1}}, "Slytherin": {"_count": 1, "friend": {"_count": 1}}, "leaders": {"_count": 1, "of": {"_count": 1}}}, "!": {"_count": 6934, "He": {"_count": 170, "supposed": {"_count": 1}, "ruffled": {"_count": 1}, "shot": {"_count": 2}, "looked": {"_count": 5}, "had": {"_count": 13}, "brought": {"_count": 1}, "keeps": {"_count": 1}, "sat": {"_count": 2}, "swooped": {"_count": 1}, "felt": {"_count": 5}, "tried": {"_count": 1}, "has": {"_count": 1}, "stomped": {"_count": 1}, "pointed": {"_count": 2}, "glanced": {"_count": 1}, "waited": {"_count": 1}, "gave": {"_count": 2}, "found": {"_count": 1}, "was": {"_count": 12}, "seized": {"_count": 2}, "never": {"_count": 2}, "raised": {"_count": 4}, "heard": {"_count": 1}, "wrenched": {"_count": 1}, "handed": {"_count": 1}, "turned": {"_count": 4}, "cant": {"_count": 2}, "got": {"_count": 1}, "pulled": {"_count": 4}, "bit": {"_count": 1}, "he": {"_count": 1}, "escaped": {"_count": 1}, "looks": {"_count": 1}, "waved": {"_count": 1}, "suddenly": {"_count": 1}, "knew": {"_count": 2}, "knows": {"_count": 1}, "didnt": {"_count": 1}, "fought": {"_count": 1}, "pressed": {"_count": 1}, "jammed": {"_count": 1}, "should": {"_count": 1}, "held": {"_count": 1}, "made": {"_count": 1}, "ripped": {"_count": 1}, "is": {"_count": 4}, "will": {"_count": 2}, "shook": {"_count": 1}, "let": {"_count": 1}, "jerked": {"_count": 1}, "continued": {"_count": 1}, "leaned": {"_count": 1}, "awoke": {"_count": 1}, "sank": {"_count": 1}, "could": {"_count": 5}, "withdrew": {"_count": 1}, "flapped": {"_count": 1}, "opened": {"_count": 2}, "rounded": {"_count": 1}, "and": {"_count": 1}, "ran": {"_count": 2}, "put": {"_count": 1}, "don": {"_count": 1}, "migh": {"_count": 1}, "took": {"_count": 1}, "saw": {"_count": 2}, "dared": {"_count": 1}, "chose": {"_count": 1}, "bounced": {"_count": 1}, "hurried": {"_count": 1}, "contemplated": {"_count": 1}, "Ron": {"_count": 1}, "might": {"_count": 1}, "bustled": {"_count": 1}, "began": {"_count": 1}, "crouched": {"_count": 1}, "remembered": {"_count": 1}, "spoke": {"_count": 1}, "sprinted": {"_count": 1}, "bellowed": {"_count": 1}, "can": {"_count": 1}, "thought": {"_count": 3}, "told": {"_count": 1}, "nearly": {"_count": 1}, "no": {"_count": 1}, "choked": {"_count": 1}, "winked": {"_count": 1}, "peered": {"_count": 1}, "stooped": {"_count": 1}, "obeyed": {"_count": 2}, "wanted": {"_count": 1}, "left": {"_count": 1}, "whipped": {"_count": 1}, "did": {"_count": 2}, "vanished": {"_count": 1}, "slithered": {"_count": 1}, "spat": {"_count": 1}, "forced": {"_count": 1}, "groped": {"_count": 1}, "says": {"_count": 1}, "watched": {"_count": 1}, "thinks": {"_count": 1}, "wont": {"_count": 1}, "tethered": {"_count": 1}, "beat": {"_count": 1}, "intended": {"_count": 1}, "already": {"_count": 1}}, "The": {"_count": 153, "nerve": {"_count": 1}, "door": {"_count": 2}, "narrow": {"_count": 1}, "table": {"_count": 2}, "Bloody": {"_count": 1}, "Gryffindor": {"_count": 2}, "three": {"_count": 2}, "steep": {"_count": 1}, "distant": {"_count": 1}, "Stone": {"_count": 1}, "two": {"_count": 1}, "Masons": {"_count": 1}, "crowd": {"_count": 2}, "perfect": {"_count": 1}, "Hogwarts": {"_count": 2}, "pixies": {"_count": 1}, "class": {"_count": 1}, "figure": {"_count": 1}, "scene": {"_count": 1}, "culprit": {"_count": 1}, "darkness": {"_count": 1}, "Heir": {"_count": 1}, "blinded": {"_count": 1}, "chill": {"_count": 1}, "book": {"_count": 1}, "golden": {"_count": 1}, "dementors": {"_count": 3}, "knight": {"_count": 1}, "knights": {"_count": 1}, "whole": {"_count": 5}, "candles": {"_count": 1}, "map": {"_count": 1}, "teachers": {"_count": 1}, "common": {"_count": 1}, "tower": {"_count": 1}, "hippogriff": {"_count": 1}, "tiny": {"_count": 1}, "police": {"_count": 1}, "owl": {"_count": 1}, "spectators": {"_count": 1}, "righthand": {"_count": 1}, "great": {"_count": 1}, "leprechauns": {"_count": 2}, "veela": {"_count": 1}, "Great": {"_count": 1}, "way": {"_count": 2}, "Halloween": {"_count": 1}, "clapping": {"_count": 1}, "heavy": {"_count": 1}, "houseelves": {"_count": 2}, "left": {"_count": 1}, "unicorn": {"_count": 1}, "stupid": {"_count": 1}, "foam": {"_count": 1}, "whistle": {"_count": 1}, "song": {"_count": 1}, "gargoyle": {"_count": 2}, "wispy": {"_count": 1}, "cheers": {"_count": 1}, "sphinx": {"_count": 1}, "surface": {"_count": 1}, "words": {"_count": 2}, "rest": {"_count": 1}, "madhouse": {"_count": 1}, "fifth": {"_count": 1}, "snowy": {"_count": 1}, "others": {"_count": 1}, "pureblood": {"_count": 1}, "lift": {"_count": 1}, "four": {"_count": 1}, "noble": {"_count": 1}, "bowl": {"_count": 1}, "little": {"_count": 1}, "wizard": {"_count": 2}, "empty": {"_count": 1}, "Ministry": {"_count": 1}, "very": {"_count": 1}, "voice": {"_count": 2}, "Minister": {"_count": 1}, "jet": {"_count": 1}, "ghost": {"_count": 2}, "harsh": {"_count": 1}, "woman": {"_count": 1}, "Dark": {"_count": 4}, "Prophets": {"_count": 1}, "house": {"_count": 1}, "squat": {"_count": 1}, "asylum": {"_count": 1}, "stories": {"_count": 1}, "Chosen": {"_count": 1}, "Fat": {"_count": 1}, "houseelf": {"_count": 1}, "passwords": {"_count": 1}, "noise": {"_count": 1}, "plan": {"_count": 1}, "broomstick": {"_count": 1}, "motorbike": {"_count": 1}, "hooded": {"_count": 1}, "Dumbledores": {"_count": 1}, "elf": {"_count": 3}, "snake": {"_count": 1}, "girl": {"_count": 1}, "grave": {"_count": 1}, "green": {"_count": 1}, "Deathly": {"_count": 1}, "Peverell": {"_count": 1}, "names": {"_count": 1}, "window": {"_count": 1}, "gates": {"_count": 1}, "situation": {"_count": 1}, "eye": {"_count": 1}, "silver": {"_count": 1}, "goblin": {"_count": 1}, "Cruciatus": {"_count": 1}, "swords": {"_count": 1}, "sword": {"_count": 1}, "clanking": {"_count": 1}, "Death": {"_count": 1}, "Ravenclaws": {"_count": 1}, "boys": {"_count": 1}, "basilisk": {"_count": 1}, "prophecy": {"_count": 1}, "Mudblood": {"_count": 1}, "unbeatable": {"_count": 1}, "Resurrection": {"_count": 1}, "scream": {"_count": 1}, "boy": {"_count": 1}, "son": {"_count": 1}}, "But": {"_count": 146, "then": {"_count": 4}, "I": {"_count": 14}, "for": {"_count": 1}, "why": {"_count": 3}, "he": {"_count": 8}, "this": {"_count": 3}, "there": {"_count": 2}, "Do": {"_count": 1}, "how": {"_count": 3}, "Dobby": {"_count": 2}, "the": {"_count": 10}, "when": {"_count": 2}, "Hermione": {"_count": 3}, "Harry": {"_count": 17}, "hows": {"_count": 1}, "tears": {"_count": 1}, "a": {"_count": 1}, "Stan": {"_count": 1}, "itll": {"_count": 1}, "what": {"_count": 4}, "Id": {"_count": 1}, "Flint": {"_count": 1}, "that": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 5}, "Winky": {"_count": 1}, "hes": {"_count": 1}, "Peeves": {"_count": 1}, "nothing": {"_count": 1}, "it": {"_count": 4}, "Crouch": {"_count": 1}, "we": {"_count": 2}, "The": {"_count": 1}, "Dudley": {"_count": 1}, "naturally": {"_count": 1}, "Professor": {"_count": 2}, "youve": {"_count": 1}, "Kreacher": {"_count": 1}, "just": {"_count": 1}, "too": {"_count": 1}, "Im": {"_count": 2}, "nobody": {"_count": 2}, "": {"_count": 2}, "you": {"_count": 2}, "before": {"_count": 2}, "her": {"_count": 1}, "Snape": {"_count": 1}, "Knockturn": {"_count": 1}, "Ron": {"_count": 1}, "meanwhile": {"_count": 1}, "theyre": {"_count": 2}, "only": {"_count": 1}, "Slughorn": {"_count": 1}, "spluttered": {"_count": 1}, "It": {"_count": 1}, "not": {"_count": 1}, "Voldemort": {"_count": 1}, "at": {"_count": 1}, "were": {"_count": 1}, "my": {"_count": 2}, "all": {"_count": 1}, "if": {"_count": 1}, "thats": {"_count": 1}, "isnt": {"_count": 1}, "weve": {"_count": 1}, "lets": {"_count": 1}, "Petunia": {"_count": 1}, "James": {"_count": 1}}, "Rejoice": {"_count": 1, "for": {"_count": 1}}, "Even": {"_count": 2, "Muggles": {"_count": 1}, "worse": {"_count": 1}}, "And": {"_count": 161, "the": {"_count": 5}, "now": {"_count": 5}, "they": {"_count": 1}, "Id": {"_count": 2}, "into": {"_count": 1}, "you": {"_count": 6}, "cleverness": {"_count": 1}, "to": {"_count": 2}, "Quirrell": {"_count": 1}, "walk": {"_count": 1}, "laughing": {"_count": 1}, "old": {"_count": 2}, "for": {"_count": 3}, "Ginny": {"_count": 1}, "she": {"_count": 7}, "he": {"_count": 17}, "so": {"_count": 4}, "without": {"_count": 3}, "Harry": {"_count": 3}, "miraculously": {"_count": 1}, "shes": {"_count": 1}, "while": {"_count": 2}, "from": {"_count": 1}, "that": {"_count": 4}, "with": {"_count": 5}, "Harrys": {"_count": 1}, "my": {"_count": 1}, "itll": {"_count": 1}, "its": {"_count": 2}, "Ernie": {"_count": 1}, "I": {"_count": 6}, "Angelina": {"_count": 1}, "Crookshanks": {"_count": 1}, "Ill": {"_count": 1}, "we": {"_count": 1}, "something": {"_count": 1}, "finally": {"_count": 1}, "why": {"_count": 1}, "theres": {"_count": 1}, "all": {"_count": 1}, "then": {"_count": 8}, "pork": {"_count": 1}, "anyway": {"_count": 1}, "how": {"_count": 2}, "Mr": {"_count": 1}, "what": {"_count": 6}, "Rookwood": {"_count": 1}, "these": {"_count": 1}, "his": {"_count": 2}, "dont": {"_count": 2}, "sure": {"_count": 3}, "as": {"_count": 2}, "if": {"_count": 2}, "of": {"_count": 1}, "it": {"_count": 2}, "Potter": {"_count": 1}, "whipping": {"_count": 1}, "were": {"_count": 2}, "before": {"_count": 1}, "at": {"_count": 1}, "best": {"_count": 1}, "thats": {"_count": 1}, "one": {"_count": 1}, "theyd": {"_count": 1}, "even": {"_count": 1}, "whore": {"_count": 1}, "there": {"_count": 1}, "youd": {"_count": 1}, "youre": {"_count": 1}, "indeed": {"_count": 1}, "Dumbledore": {"_count": 1}, "again": {"_count": 2}, "YOU": {"_count": 1}, "apparently": {"_count": 1}, "Im": {"_count": 1}, "where": {"_count": 1}, "Percy": {"_count": 1}, "guess": {"_count": 1}}, "said": {"_count": 1135, "Mr": {"_count": 21}, "Aunt": {"_count": 2}, "Dudley": {"_count": 2}, "Uncle": {"_count": 8}, "the": {"_count": 27}, "Harry": {"_count": 200}, "Hagrid": {"_count": 43}, "Ron": {"_count": 172}, "Snape": {"_count": 13}, "Malfoy": {"_count": 11}, "Neville": {"_count": 15}, "Dean": {"_count": 7}, "Fred": {"_count": 20}, "Hermione": {"_count": 214}, "Mrs": {"_count": 40}, "George": {"_count": 9}, "Ginny": {"_count": 12}, "Professor": {"_count": 36}, "Lockhart": {"_count": 5}, "Wood": {"_count": 4}, "Sir": {"_count": 2}, "Nearly": {"_count": 2}, "Myrtle": {"_count": 2}, "Dobby": {"_count": 11}, "Madam": {"_count": 9}, "Seamus": {"_count": 3}, "Percy": {"_count": 14}, "Aragog": {"_count": 2}, "Stan": {"_count": 2}, "Tom": {"_count": 1}, "a": {"_count": 21}, "Dumbledore": {"_count": 16}, "Pansy": {"_count": 3}, "Lupin": {"_count": 7}, "Angelina": {"_count": 2}, "Lavender": {"_count": 7}, "Flint": {"_count": 1}, "Black": {"_count": 1}, "Pettigrew": {"_count": 1}, "Wormtail": {"_count": 2}, "Bagman": {"_count": 10}, "Ludo": {"_count": 3}, "Bagmans": {"_count": 1}, "Fudge": {"_count": 15}, "Colin": {"_count": 3}, "Ernie": {"_count": 1}, "Dennis": {"_count": 1}, "Fleur": {"_count": 3}, "Madame": {"_count": 1}, "Moody": {"_count": 2}, "Charlie": {"_count": 1}, "Rita": {"_count": 1}, "Cho": {"_count": 4}, "Karkaroff": {"_count": 3}, "Parvati": {"_count": 4}, "Filch": {"_count": 3}, "Krum": {"_count": 1}, "Mundungus": {"_count": 2}, "Rons": {"_count": 1}, "Tonks": {"_count": 3}, "Sirius": {"_count": 17}, "Lee": {"_count": 3}, "Katie": {"_count": 1}, "Luna": {"_count": 5}, "Alicia": {"_count": 1}, "Umbridge": {"_count": 8}, "Bellatrix": {"_count": 6}, "Narcissa": {"_count": 2}, "Slughorn": {"_count": 10}, "Ogden": {"_count": 4}, "Gaunt": {"_count": 1}, "Zacharias": {"_count": 1}, "Romilda": {"_count": 1}, "Worple": {"_count": 2}, "Scrimgeour": {"_count": 2}, "Twycross": {"_count": 1}, "Hepzibah": {"_count": 4}, "Dedalus": {"_count": 1}, "Hestia": {"_count": 1}, "MadEye": {"_count": 1}, "Ted": {"_count": 1}, "Kingsley": {"_count": 2}, "Monsieur": {"_count": 2}, "Doge": {"_count": 3}, "Auntie": {"_count": 2}, "Xenophilius": {"_count": 2}, "another": {"_count": 1}, "Scabior": {"_count": 1}, "Greyback": {"_count": 2}, "Lucius": {"_count": 2}, "Bill": {"_count": 1}, "Griphook": {"_count": 4}, "Carrow": {"_count": 1}, "Hermiones": {"_count": 1}, "Voldemort": {"_count": 1}, "Lily": {"_count": 1}, "Petunia": {"_count": 2}, "James": {"_count": 1}}, "Perhaps": {"_count": 2, "people": {"_count": 1}, "I": {"_count": 1}}, "Its": {"_count": 52, "the": {"_count": 3}, "all": {"_count": 1}, "been": {"_count": 2}, "killed": {"_count": 1}, "nearly": {"_count": 1}, "But": {"_count": 1}, "a": {"_count": 5}, "bad": {"_count": 1}, "okay": {"_count": 3}, "timeout": {"_count": 1}, "but": {"_count": 1}, "her": {"_count": 1}, "Mr": {"_count": 1}, "too": {"_count": 3}, "just": {"_count": 2}, "addressed": {"_count": 1}, "not": {"_count": 4}, "right": {"_count": 1}, "fortyten": {"_count": 1}, "quite": {"_count": 2}, "you": {"_count": 1}, "McGonagall": {"_count": 1}, "your": {"_count": 1}, "my": {"_count": 1}, "either": {"_count": 1}, "different": {"_count": 1}, "utter": {"_count": 1}, "time": {"_count": 2}, "him": {"_count": 1}, "as": {"_count": 1}, "nothing": {"_count": 1}, "never": {"_count": 1}, "Potter": {"_count": 1}, "standing": {"_count": 1}, "power": {"_count": 1}}, "Hell": {"_count": 9, "be": {"_count": 3}, "turn": {"_count": 1}, "flatten": {"_count": 1}, "know": {"_count": 1}, "have": {"_count": 1}, "kill": {"_count": 2}}, "Exactly": {"_count": 3, "said": {"_count": 3}}, "Famous": {"_count": 2, "for": {"_count": 1}, "Harry": {"_count": 1}}, "Cant": {"_count": 5, "you": {"_count": 2}, "can": {"_count": 1}, "I": {"_count": 1}, "have": {"_count": 1}}, "hissed": {"_count": 4, "Professor": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "Sssorry": {"_count": 1, "sobbed": {"_count": 1}}, "THE": {"_count": 6, "VANASHIG": {"_count": 1}, "BOY": {"_count": 2}, "PATRONUS": {"_count": 1}, "ADVANCED": {"_count": 1}, "EYE": {"_count": 1}}, "Get": {"_count": 13, "up": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "off": {"_count": 1}, "out": {"_count": 3}, "ready": {"_count": 1}, "in": {"_count": 1}, "him": {"_count": 1}, "back": {"_count": 1}}, "Now": {"_count": 21, "": {"_count": 1}, "listen": {"_count": 1}, "after": {"_count": 1}, "Professor": {"_count": 1}, "With": {"_count": 1}, "Snape": {"_count": 1}, "pay": {"_count": 1}, "youve": {"_count": 1}, "slip": {"_count": 1}, "MadEye": {"_count": 1}, "I": {"_count": 1}, "one": {"_count": 1}, "working": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "get": {"_count": 2}, "this": {"_count": 1}, "if": {"_count": 1}, "open": {"_count": 1}}, "Harry": {"_count": 437, "woke": {"_count": 3}, "was": {"_count": 7}, "leapt": {"_count": 2}, "had": {"_count": 10}, "Potter": {"_count": 6}, "shook": {"_count": 2}, "heard": {"_count": 9}, "sat": {"_count": 2}, "clapped": {"_count": 3}, "yelled": {"_count": 39}, "grabbed": {"_count": 2}, "mouthed": {"_count": 1}, "gasped": {"_count": 4}, "said": {"_count": 39}, "left": {"_count": 3}, "looked": {"_count": 18}, "pulled": {"_count": 1}, "snapped": {"_count": 1}, "hissed": {"_count": 2}, "whispered": {"_count": 4}, "panted": {"_count": 1}, "are": {"_count": 1}, "and": {"_count": 12}, "turned": {"_count": 5}, "choked": {"_count": 2}, "called": {"_count": 9}, "shouted": {"_count": 38}, "sprang": {"_count": 1}, "": {"_count": 9}, "bellowed": {"_count": 14}, "tried": {"_count": 4}, "stared": {"_count": 3}, "paid": {"_count": 1}, "moved": {"_count": 1}, "took": {"_count": 4}, "tore": {"_count": 1}, "croaked": {"_count": 2}, "hurried": {"_count": 3}, "squinted": {"_count": 2}, "strained": {"_count": 1}, "snarled": {"_count": 4}, "elbowed": {"_count": 1}, "blundered": {"_count": 1}, "retorted": {"_count": 1}, "felt": {"_count": 9}, "dropped": {"_count": 2}, "ignored": {"_count": 1}, "Ron": {"_count": 6}, "reached": {"_count": 1}, "jerked": {"_count": 1}, "didnt": {"_count": 2}, "slept": {"_count": 1}, "who": {"_count": 4}, "urged": {"_count": 2}, "roared": {"_count": 7}, "made": {"_count": 1}, "what": {"_count": 1}, "watched": {"_count": 2}, "no": {"_count": 1}, "I": {"_count": 1}, "jumped": {"_count": 2}, "if": {"_count": 1}, "did": {"_count": 5}, "knew": {"_count": 3}, "flattened": {"_count": 1}, "spun": {"_count": 3}, "could": {"_count": 9}, "swung": {"_count": 1}, "found": {"_count": 1}, "saw": {"_count": 4}, "scrambled": {"_count": 1}, "told": {"_count": 4}, "Potteri": {"_count": 1}, "doubted": {"_count": 1}, "tripped": {"_count": 1}, "lowered": {"_count": 1}, "opened": {"_count": 2}, "skidded": {"_count": 1}, "expected": {"_count": 1}, "Harry": {"_count": 1}, "continued": {"_count": 1}, "couldnt": {"_count": 1}, "hesitated": {"_count": 1}, "waited": {"_count": 1}, "stood": {"_count": 3}, "muttered": {"_count": 1}, "crossed": {"_count": 1}, "followed": {"_count": 1}, "glared": {"_count": 1}, "glanced": {"_count": 2}, "repeated": {"_count": 3}, "folded": {"_count": 1}, "realized": {"_count": 2}, "flung": {"_count": 2}, "whipped": {"_count": 1}, "zoomed": {"_count": 1}, "burst": {"_count": 1}, "over": {"_count": 1}, "ripped": {"_count": 1}, "straightened": {"_count": 1}, "got": {"_count": 1}, "awoke": {"_count": 1}, "poked": {"_count": 1}, "fell": {"_count": 1}, "seized": {"_count": 3}, "laughed": {"_count": 3}, "screamed": {"_count": 2}, "gave": {"_count": 1}, "imitated": {"_count": 1}, "started": {"_count": 1}, "waved": {"_count": 1}, "slipped": {"_count": 1}, "you": {"_count": 3}, "suddenly": {"_count": 1}, "pressed": {"_count": 1}, "walked": {"_count": 1}, "gaped": {"_count": 1}, "blurted": {"_count": 1}, "picked": {"_count": 1}, "scowled": {"_count": 1}, "strolled": {"_count": 1}, "remembered": {"_count": 1}, "threw": {"_count": 1}, "dont": {"_count": 1}, "reacted": {"_count": 1}, "whirled": {"_count": 2}, "thundered": {"_count": 1}, "she": {"_count": 1}, "Im": {"_count": 1}, "thought": {"_count": 1}, "Come": {"_count": 1}, "dashed": {"_count": 1}, "hit": {"_count": 1}, "beseeched": {"_count": 1}, "Potted": {"_count": 1}, "hurtled": {"_count": 1}, "forgot": {"_count": 1}}, "she": {"_count": 154, "screeched": {"_count": 3}, "cried": {"_count": 6}, "shouted": {"_count": 5}, "barked": {"_count": 2}, "said": {"_count": 62}, "whispered": {"_count": 9}, "stormed": {"_count": 1}, "wailed": {"_count": 1}, "squealed": {"_count": 2}, "raged": {"_count": 1}, "howled": {"_count": 1}, "called": {"_count": 2}, "was": {"_count": 1}, "repeated": {"_count": 1}, "shrieked": {"_count": 13}, "mouthed": {"_count": 2}, "moaned": {"_count": 1}, "burst": {"_count": 2}, "squeaked": {"_count": 2}, "told": {"_count": 3}, "muttered": {"_count": 2}, "added": {"_count": 7}, "hissed": {"_count": 2}, "panted": {"_count": 1}, "trilled": {"_count": 1}, "giggled": {"_count": 3}, "sputtered": {"_count": 1}, "choked": {"_count": 1}, "screamed": {"_count": 6}, "jeered": {"_count": 1}, "gasped": {"_count": 1}, "breathed": {"_count": 1}, "snapped": {"_count": 3}, "bellowed": {"_count": 1}, "pouted": {"_count": 1}, "sneered": {"_count": 1}, "leered": {"_count": 1}}, "he": {"_count": 234, "barked": {"_count": 2}, "gasped": {"_count": 7}, "shouted": {"_count": 24}, "said": {"_count": 86}, "boomed": {"_count": 4}, "commanded": {"_count": 1}, "explained": {"_count": 1}, "yelled": {"_count": 15}, "blurted": {"_count": 1}, "called": {"_count": 12}, "sobbed": {"_count": 2}, "roared": {"_count": 7}, "hissed": {"_count": 5}, "would": {"_count": 1}, "moaned": {"_count": 2}, "cried": {"_count": 2}, "growled": {"_count": 2}, "was": {"_count": 1}, "screeched": {"_count": 1}, "finished": {"_count": 1}, "shrieked": {"_count": 2}, "read": {"_count": 1}, "bellowed": {"_count": 11}, "told": {"_count": 5}, "sighed": {"_count": 1}, "advised": {"_count": 1}, "spat": {"_count": 1}, "whispered": {"_count": 3}, "muttered": {"_count": 3}, "snarled": {"_count": 2}, "panted": {"_count": 5}, "squeaked": {"_count": 4}, "mouthed": {"_count": 1}, "screamed": {"_count": 1}, "heard": {"_count": 3}, "added": {"_count": 6}, "went": {"_count": 1}, "wheezed": {"_count": 2}, "announced": {"_count": 2}, "snapped": {"_count": 1}, "shook": {"_count": 1}}, "Dudley": {"_count": 7, "yelled": {"_count": 1}, "and": {"_count": 1}, "came": {"_count": 1}, "turned": {"_count": 1}, "snarled": {"_count": 1}, "whimpered": {"_count": 1}, "shut": {"_count": 1}}, "MR": {"_count": 1, "Dursley": {"_count": 1}}, "COME": {"_count": 2, "AND": {"_count": 1}, "HERE": {"_count": 1}}, "YOU": {"_count": 4, "WONT": {"_count": 1}, "CAN": {"_count": 1}, "WERE": {"_count": 1}, "DONT": {"_count": 1}}, "shouted": {"_count": 96, "Uncle": {"_count": 2}, "the": {"_count": 7}, "Hermione": {"_count": 7}, "Ron": {"_count": 12}, "Mrs": {"_count": 5}, "Filch": {"_count": 1}, "Sir": {"_count": 1}, "Lockhart": {"_count": 2}, "a": {"_count": 4}, "Aunt": {"_count": 1}, "Lupin": {"_count": 2}, "Professor": {"_count": 5}, "Percy": {"_count": 1}, "Bagman": {"_count": 1}, "Harry": {"_count": 11}, "Mr": {"_count": 3}, "Karkaroff": {"_count": 1}, "Fudge": {"_count": 3}, "Moody": {"_count": 1}, "MadEye": {"_count": 1}, "Tonks": {"_count": 1}, "Fred": {"_count": 2}, "George": {"_count": 2}, "Kingsley": {"_count": 1}, "Umbridge": {"_count": 3}, "Hagrid": {"_count": 3}, "Sirius": {"_count": 1}, "Bellatrix": {"_count": 1}, "Ginny": {"_count": 2}, "Peakes": {"_count": 1}, "Slughorn": {"_count": 1}, "Madam": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Lucius": {"_count": 1}, "Amycus": {"_count": 1}, "McGonagall": {"_count": 1}, "Malfoy": {"_count": 1}, "Rowle": {"_count": 1}}, "Oh": {"_count": 41, "my": {"_count": 2}, "yeah": {"_count": 5}, "Im": {"_count": 1}, "no": {"_count": 4}, "is": {"_count": 1}, "what": {"_count": 2}, "shut": {"_count": 1}, "thanks": {"_count": 1}, "you": {"_count": 2}, "did": {"_count": 1}, "Ron": {"_count": 2}, "as": {"_count": 1}, "Harry": {"_count": 1}, "yes": {"_count": 3}, "the": {"_count": 1}, "how": {"_count": 1}, "well": {"_count": 1}, "Hagrid": {"_count": 1}, "honestly": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "its": {"_count": 1}, "all": {"_count": 2}, "there": {"_count": 1}, "thank": {"_count": 1}, "come": {"_count": 1}}, "They": {"_count": 66, "stared": {"_count": 2}, "could": {"_count": 1}, "pushed": {"_count": 1}, "heard": {"_count": 1}, "hurried": {"_count": 1}, "only": {"_count": 1}, "set": {"_count": 1}, "were": {"_count": 10}, "watched": {"_count": 1}, "had": {"_count": 4}, "walked": {"_count": 1}, "all": {"_count": 5}, "scattered": {"_count": 1}, "crept": {"_count": 2}, "ran": {"_count": 1}, "tore": {"_count": 1}, "waited": {"_count": 1}, "make": {"_count": 1}, "ended": {"_count": 1}, "wouldnt": {"_count": 1}, "isnt": {"_count": 1}, "couldnt": {"_count": 1}, "soared": {"_count": 1}, "fell": {"_count": 1}, "then": {"_count": 1}, "trudged": {"_count": 1}, "must": {"_count": 1}, "looked": {"_count": 3}, "sped": {"_count": 1}, "have": {"_count": 1}, "beamed": {"_count": 1}, "shook": {"_count": 1}, "put": {"_count": 1}, "glared": {"_count": 2}, "didnt": {"_count": 1}, "knew": {"_count": 1}, "relapsed": {"_count": 1}, "werent": {"_count": 1}, "nearly": {"_count": 1}, "did": {"_count": 1}, "caught": {"_count": 1}, "know": {"_count": 1}, "agreed": {"_count": 1}, "live": {"_count": 1}, "are": {"_count": 1}}, "demanded": {"_count": 2, "Dudley": {"_count": 1}, "the": {"_count": 1}}, "roared": {"_count": 51, "Uncle": {"_count": 8}, "Hagrid": {"_count": 5}, "the": {"_count": 5}, "Wood": {"_count": 1}, "Professor": {"_count": 1}, "Sir": {"_count": 2}, "Seamus": {"_count": 1}, "Harry": {"_count": 4}, "Black": {"_count": 1}, "Mr": {"_count": 1}, "Bagman": {"_count": 3}, "Ron": {"_count": 2}, "Moody": {"_count": 3}, "George": {"_count": 1}, "Fudge": {"_count": 1}, "Mrs": {"_count": 1}, "a": {"_count": 4}, "Grawp": {"_count": 1}, "Neville": {"_count": 2}, "Gaunt": {"_count": 1}, "Snapes": {"_count": 1}, "Vernon": {"_count": 1}, "Rons": {"_count": 1}}, "Didnt": {"_count": 5, "we": {"_count": 1}, "I": {"_count": 3}, "the": {"_count": 1}}, "yelled": {"_count": 63, "Uncle": {"_count": 5}, "Hagrid": {"_count": 6}, "Ron": {"_count": 12}, "Mrs": {"_count": 2}, "Lee": {"_count": 5}, "Sir": {"_count": 3}, "Percy": {"_count": 1}, "the": {"_count": 2}, "Bagman": {"_count": 2}, "Bagmans": {"_count": 1}, "Harry": {"_count": 9}, "his": {"_count": 1}, "a": {"_count": 3}, "an": {"_count": 1}, "another": {"_count": 1}, "Professor": {"_count": 2}, "Moody": {"_count": 1}, "George": {"_count": 1}, "Seamus": {"_count": 1}, "Neville": {"_count": 1}, "Ginny": {"_count": 1}, "Dean": {"_count": 1}, "Hermione": {"_count": 1}}, "snapped": {"_count": 15, "his": {"_count": 1}, "Ron": {"_count": 2}, "Aunt": {"_count": 1}, "Snape": {"_count": 1}, "Mrs": {"_count": 2}, "Dean": {"_count": 1}, "Filch": {"_count": 1}, "Fudge": {"_count": 2}, "Ogden": {"_count": 1}, "Gaunt": {"_count": 1}, "Harry": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "\u2018Mr": {"_count": 1, "H": {"_count": 1}}, "OUT": {"_count": 6, "": {"_count": 6}}, "Uncle": {"_count": 4, "Vernon": {"_count": 4}}, "Everyone": {"_count": 2, "out": {"_count": 1}, "here": {"_count": 1}}, "It": {"_count": 63, "was": {"_count": 33}, "mightve": {"_count": 1}, "is": {"_count": 8}, "does": {"_count": 2}, "had": {"_count": 1}, "sounded": {"_count": 1}, "took": {"_count": 1}, "wasnt": {"_count": 4}, "isnt": {"_count": 3}, "smashed": {"_count": 1}, "looked": {"_count": 1}, "could": {"_count": 1}, "sounds": {"_count": 1}, "did": {"_count": 1}, "will": {"_count": 1}, "all": {"_count": 1}, "belongs": {"_count": 1}, "matters": {"_count": 1}}, "A": {"_count": 55, "toothless": {"_count": 1}, "braver": {"_count": 1}, "scandal": {"_count": 1}, "pinkfaced": {"_count": 1}, "roar": {"_count": 2}, "stone": {"_count": 1}, "cell": {"_count": 1}, "songbird": {"_count": 1}, "large": {"_count": 2}, "sudden": {"_count": 1}, "likely": {"_count": 1}, "few": {"_count": 5}, "moment": {"_count": 1}, "flash": {"_count": 1}, "short": {"_count": 1}, "wizard": {"_count": 1}, "scarletclad": {"_count": 1}, "second": {"_count": 1}, "small": {"_count": 1}, "mediwizard": {"_count": 1}, "boy": {"_count": 1}, "thousand": {"_count": 1}, "very": {"_count": 1}, "a": {"_count": 2}, "PECK": {"_count": 1}, "couple": {"_count": 1}, "Firebolt": {"_count": 1}, "weapons": {"_count": 1}, "prefect": {"_count": 1}, "bearlike": {"_count": 1}, "lantern": {"_count": 1}, "group": {"_count": 1}, "door": {"_count": 1}, "sallowfaced": {"_count": 1}, "harassedlooking": {"_count": 1}, "giant": {"_count": 1}, "jet": {"_count": 1}, "teenage": {"_count": 1}, "huge": {"_count": 1}, "log": {"_count": 1}, "scream": {"_count": 1}, "gang": {"_count": 1}, "minute": {"_count": 1}, "dark": {"_count": 1}, "copy": {"_count": 1}, "teenagers": {"_count": 1}, "battle": {"_count": 1}, "fistful": {"_count": 1}}, "There": {"_count": 41, "was": {"_count": 28}, "are": {"_count": 4}, "must": {"_count": 1}, "is": {"_count": 2}, "you": {"_count": 2}, "wont": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "will": {"_count": 1}}, "Ah": {"_count": 11, "shut": {"_count": 1}, "said": {"_count": 4}, "here": {"_count": 1}, "well": {"_count": 1}, "come": {"_count": 1}, "no": {"_count": 1}, "Sybill": {"_count": 1}, "yes": {"_count": 1}}, "I": {"_count": 238, "knew": {"_count": 5}, "forbid": {"_count": 1}, "saw": {"_count": 5}, "FORBID": {"_count": 1}, "would": {"_count": 1}, "hope": {"_count": 1}, "almost": {"_count": 1}, "told": {"_count": 7}, "bet": {"_count": 1}, "could": {"_count": 2}, "make": {"_count": 1}, "have": {"_count": 8}, "was": {"_count": 5}, "should": {"_count": 2}, "can": {"_count": 6}, "WILL": {"_count": 3}, "just": {"_count": 4}, "mean": {"_count": 5}, "thought": {"_count": 10}, "regret": {"_count": 1}, "wouldnt": {"_count": 3}, "know": {"_count": 21}, "wont": {"_count": 3}, "never": {"_count": 2}, "dont": {"_count": 21}, "think": {"_count": 10}, "want": {"_count": 7}, "I": {"_count": 6}, "wonder": {"_count": 2}, "cant": {"_count": 9}, "shall": {"_count": 1}, "tell": {"_count": 3}, "certainly": {"_count": 1}, "forgot": {"_count": 1}, "DONT": {"_count": 1}, "couldnt": {"_count": 1}, "spend": {"_count": 1}, "havent": {"_count": 1}, "give": {"_count": 1}, "is": {"_count": 3}, "suppose": {"_count": 3}, "hoped": {"_count": 1}, "got": {"_count": 1}, "had": {"_count": 3}, "spose": {"_count": 1}, "vos": {"_count": 1}, "smell": {"_count": 1}, "dunno": {"_count": 3}, "now": {"_count": 1}, "didnt": {"_count": 5}, "will": {"_count": 2}, "see": {"_count": 1}, "warned": {"_count": 1}, "said": {"_count": 1}, "ccant": {"_count": 1}, "shouldve": {"_count": 1}, "love": {"_count": 1}, "ask": {"_count": 1}, "wish": {"_count": 3}, "dd": {"_count": 1}, "am": {"_count": 6}, "need": {"_count": 3}, "believe": {"_count": 2}, "KNOW": {"_count": 1}, "shshall": {"_count": 1}, "expected": {"_count": 1}, "might": {"_count": 1}, "enjoyed": {"_count": 1}, "agree": {"_count": 1}, "well": {"_count": 1}, "cannot": {"_count": 3}, "appreciate": {"_count": 1}, "taught": {"_count": 1}, "remember": {"_count": 1}, "beg": {"_count": 1}, "did": {"_count": 1}, "swear": {"_count": 1}, "notice": {"_count": 1}, "called": {"_count": 1}, "begged": {"_count": 1}, "understand": {"_count": 1}, "only": {"_count": 1}, "meant": {"_count": 2}, "live": {"_count": 1}, "crushed": {"_count": 1}, "removed": {"_count": 1}}, "Did": {"_count": 4, "yeh": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "knows": {"_count": 1, "nothin": {"_count": 1}}, "An": {"_count": 10, "youve": {"_count": 1}, "then": {"_count": 1}, "if": {"_count": 1}, "explanation": {"_count": 1}, "agains": {"_count": 1}, "excellent": {"_count": 1}, "theres": {"_count": 1}, "ink": {"_count": 1}, "shes": {"_count": 1}, "idea": {"_count": 1}}, "Wizard": {"_count": 1, "indeed": {"_count": 1}}, "You": {"_count": 115, "knew": {"_count": 2}, "leave": {"_count": 1}, "won": {"_count": 1}, "Miss": {"_count": 1}, "two": {"_count": 1}, "know": {"_count": 5}, "may": {"_count": 2}, "can": {"_count": 4}, "havent": {"_count": 1}, "just": {"_count": 2}, "saved": {"_count": 2}, "solved": {"_count": 1}, "already": {"_count": 1}, "keep": {"_count": 2}, "heard": {"_count": 2}, "sure": {"_count": 1}, "wouldnt": {"_count": 2}, "saw": {"_count": 1}, "said": {"_count": 4}, "cant": {"_count": 7}, "would": {"_count": 1}, "see": {"_count": 1}, "dont": {"_count": 5}, "are": {"_count": 10}, "bust": {"_count": 1}, "reckon": {"_count": 1}, "were": {"_count": 6}, "dropped": {"_count": 2}, "really": {"_count": 1}, "and": {"_count": 3}, "didnt": {"_count": 2}, "is": {"_count": 3}, "youre": {"_count": 1}, "you": {"_count": 2}, "place": {"_count": 1}, "fail": {"_count": 1}, "do": {"_count": 1}, "think": {"_count": 2}, "": {"_count": 2}, "need": {"_count": 1}, "will": {"_count": 1}, "must": {"_count": 1}, "wont": {"_count": 2}, "recognized": {"_count": 1}, "shall": {"_count": 2}, "calling": {"_count": 1}, "want": {"_count": 2}, "made": {"_count": 1}, "never": {"_count": 1}, "mustnt": {"_count": 1}, "go": {"_count": 2}, "complete": {"_count": 1}, "have": {"_count": 2}, "idiot": {"_count": 1}, "set": {"_count": 1}, "open": {"_count": 1}, "gave": {"_count": 1}, "wanted": {"_count": 1}, "thought": {"_count": 1}, "still": {"_count": 1}}, "shrieked": {"_count": 33, "Aunt": {"_count": 1}, "Hermione": {"_count": 7}, "Voldemort": {"_count": 3}, "Pansy": {"_count": 1}, "Madam": {"_count": 2}, "Snape": {"_count": 1}, "Winky": {"_count": 1}, "one": {"_count": 1}, "Katie": {"_count": 1}, "Madame": {"_count": 1}, "the": {"_count": 2}, "Mrs": {"_count": 1}, "Umbridge": {"_count": 2}, "Professor": {"_count": 3}, "Bellatrix": {"_count": 4}, "Uncle": {"_count": 1}, "Petunia": {"_count": 1}}, "How": {"_count": 39, "could": {"_count": 5}, "nice": {"_count": 1}, "they": {"_count": 2}, "dare": {"_count": 4}, "did": {"_count": 3}, "was": {"_count": 1}, "extraordinary": {"_count": 1}, "can": {"_count": 2}, "about": {"_count": 1}, "come": {"_count": 2}, "is": {"_count": 3}, "lovely": {"_count": 1}, "charming": {"_count": 1}, "does": {"_count": 2}, "many": {"_count": 1}, "would": {"_count": 1}, "few": {"_count": 1}, "wonderful": {"_count": 1}, "hollow": {"_count": 1}, "despicable": {"_count": 1}, "dyou": {"_count": 1}, "how": {"_count": 1}, "are": {"_count": 1}, "neat": {"_count": 1}}, "She": {"_count": 61, "stopped": {"_count": 1}, "leapt": {"_count": 1}, "snatched": {"_count": 1}, "had": {"_count": 3}, "approached": {"_count": 1}, "hurried": {"_count": 1}, "was": {"_count": 6}, "looked": {"_count": 3}, "shot": {"_count": 1}, "seized": {"_count": 1}, "buried": {"_count": 1}, "just": {"_count": 1}, "stormed": {"_count": 1}, "pointed": {"_count": 2}, "seemed": {"_count": 1}, "marched": {"_count": 1}, "hasnt": {"_count": 1}, "bent": {"_count": 1}, "and": {"_count": 1}, "started": {"_count": 1}, "gave": {"_count": 2}, "wrenched": {"_count": 1}, "smiled": {"_count": 1}, "stood": {"_count": 2}, "left": {"_count": 1}, "strode": {"_count": 1}, "pinned": {"_count": 1}, "drifted": {"_count": 1}, "clearly": {"_count": 1}, "swooped": {"_count": 1}, "moved": {"_count": 1}, "tucked": {"_count": 1}, "opened": {"_count": 1}, "doesnt": {"_count": 1}, "released": {"_count": 1}, "stepped": {"_count": 1}, "held": {"_count": 1}, "threw": {"_count": 1}, "continued": {"_count": 1}, "punctuated": {"_count": 1}, "laughed": {"_count": 1}, "thrust": {"_count": 1}, "dragged": {"_count": 1}, "waved": {"_count": 1}, "consented": {"_count": 1}, "remained": {"_count": 1}, "turned": {"_count": 1}, "nodded": {"_count": 1}, "is": {"_count": 1}}, "CAR": {"_count": 1, "CRASH": {"_count": 1}}, "Suppose": {"_count": 1, "the": {"_count": 1}}, "Yer": {"_count": 3, "mad": {"_count": 1}, "not": {"_count": 1}, "here": {"_count": 1}}, "Nah": {"_count": 3, "first": {"_count": 1}, "Ive": {"_count": 1}, "she": {"_count": 1}}, "cried": {"_count": 57, "Dedalus": {"_count": 1}, "Neville": {"_count": 2}, "Dumbledore": {"_count": 2}, "Professor": {"_count": 10}, "Aunt": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 6}, "Fudge": {"_count": 2}, "Mrs": {"_count": 2}, "Sir": {"_count": 1}, "several": {"_count": 1}, "Madame": {"_count": 1}, "Bagman": {"_count": 3}, "Karkaroff": {"_count": 1}, "a": {"_count": 2}, "Umbridge": {"_count": 2}, "Dawlish": {"_count": 1}, "Hermione": {"_count": 10}, "Lupin": {"_count": 1}, "Slughorn": {"_count": 1}, "Dobby": {"_count": 1}, "Peeves": {"_count": 1}, "Hepzibah": {"_count": 1}, "Fleur": {"_count": 1}, "Lucius": {"_count": 1}, "Voldemort": {"_count": 1}}, "Griphook": {"_count": 3, "was": {"_count": 1}, "glared": {"_count": 1}, "urged": {"_count": 1}}, "Dont": {"_count": 19, "make": {"_count": 1}, "be": {"_count": 5}, "Harry": {"_count": 1}, "what": {"_count": 1}, "you": {"_count": 6}, "know": {"_count": 1}, "send": {"_count": 1}, "kill": {"_count": 1}, "let": {"_count": 1}, "call": {"_count": 1}}, "Look": {"_count": 20, "what": {"_count": 2}, "down": {"_count": 2}, "at": {"_count": 8}, "": {"_count": 2}, "Im": {"_count": 1}, "closer": {"_count": 1}, "can": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}, "Ive": {"_count": 1}}, "So": {"_count": 30, "what": {"_count": 1}, "Harry": {"_count": 1}, "valiant": {"_count": 1}, "you": {"_count": 2}, "Black": {"_count": 1}, "Gryffindor": {"_count": 1}, "have": {"_count": 1}, "listen": {"_count": 2}, "I": {"_count": 2}, "thats": {"_count": 1}, "we": {"_count": 1}, "is": {"_count": 1}, "um": {"_count": 1}, "why": {"_count": 3}, "weve": {"_count": 1}, "said": {"_count": 1}, "did": {"_count": 1}, "youre": {"_count": 1}, "it": {"_count": 1}, "are": {"_count": 1}, "Death": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "Voldemort": {"_count": 1}}, "Rubeus": {"_count": 1, "Hagrid": {"_count": 1}}, "Yes": {"_count": 33, "indeed": {"_count": 2}, "Weasley": {"_count": 1}, "but": {"_count": 6}, "I": {"_count": 6}, "said": {"_count": 3}, "": {"_count": 2}, "yes": {"_count": 3}, "they": {"_count": 1}, "we": {"_count": 1}, "Professor": {"_count": 2}, "that": {"_count": 1}, "Harry": {"_count": 1}, "Albus": {"_count": 1}, "you": {"_count": 1}, "all": {"_count": 1}, "Dumbledores": {"_count": 1}}, "piped": {"_count": 2, "a": {"_count": 1}, "up": {"_count": 1}}, "Cmere": {"_count": 1, "and": {"_count": 1}}, "With": {"_count": 15, "the": {"_count": 4}, "a": {"_count": 5}, "that": {"_count": 1}, "two": {"_count": 1}, "these": {"_count": 1}, "her": {"_count": 1}, "another": {"_count": 1}, "Dumbledore": {"_count": 1}}, "their": {"_count": 1, "mother": {"_count": 1}}, "Well": {"_count": 63, "you": {"_count": 2}, "of": {"_count": 3}, "see": {"_count": 3}, "ha": {"_count": 1}, "I": {"_count": 2}, "": {"_count": 5}, "in": {"_count": 1}, "risk": {"_count": 1}, "done": {"_count": 4}, "weve": {"_count": 2}, "there": {"_count": 1}, "shes": {"_count": 1}, "bully": {"_count": 1}, "try": {"_count": 1}, "this": {"_count": 1}, "said": {"_count": 3}, "have": {"_count": 1}, "youre": {"_count": 2}, "second": {"_count": 1}, "they": {"_count": 1}, "talk": {"_count": 1}, "anyway": {"_count": 1}, "as": {"_count": 1}, "not": {"_count": 1}, "now": {"_count": 2}, "spit": {"_count": 1}, "split": {"_count": 1}, "enjoy": {"_count": 1}, "whats": {"_count": 1}, "wait": {"_count": 1}, "if": {"_count": 2}, "Im": {"_count": 1}, "Kreacher": {"_count": 1}, "youve": {"_count": 1}, "after": {"_count": 1}, "yes": {"_count": 1}, "cant": {"_count": 1}, "we": {"_count": 2}, "just": {"_count": 1}, "follow": {"_count": 1}, "goblins": {"_count": 1}, "find": {"_count": 1}, "it": {"_count": 1}}, "Ron": {"_count": 136, "looked": {"_count": 1}, "whispered": {"_count": 1}, "moaned": {"_count": 3}, "was": {"_count": 3}, "and": {"_count": 7}, "said": {"_count": 16}, "let": {"_count": 1}, "tore": {"_count": 1}, "threw": {"_count": 1}, "": {"_count": 7}, "followed": {"_count": 1}, "examined": {"_count": 1}, "dived": {"_count": 1}, "yelled": {"_count": 15}, "shouted": {"_count": 8}, "breathed": {"_count": 2}, "bellowed": {"_count": 4}, "buckled": {"_count": 1}, "dont": {"_count": 1}, "hissed": {"_count": 5}, "roared": {"_count": 4}, "mouthed": {"_count": 2}, "had": {"_count": 7}, "you": {"_count": 1}, "leapt": {"_count": 1}, "tried": {"_count": 1}, "marched": {"_count": 1}, "interjected": {"_count": 1}, "grinned": {"_count": 2}, "howled": {"_count": 1}, "your": {"_count": 1}, "be": {"_count": 1}, "Harry": {"_count": 1}, "gasped": {"_count": 1}, "stared": {"_count": 1}, "snapped": {"_count": 1}, "called": {"_count": 3}, "hes": {"_count": 1}, "interrupted": {"_count": 1}, "Im": {"_count": 1}, "hastened": {"_count": 1}, "Well": {"_count": 1}, "exclaimed": {"_count": 1}, "groaned": {"_count": 1}, "It": {"_count": 1}, "walked": {"_count": 1}, "made": {"_count": 2}, "wrenched": {"_count": 1}, "turned": {"_count": 1}, "barked": {"_count": 1}, "ignored": {"_count": 1}, "told": {"_count": 1}, "thats": {"_count": 1}, "pulled": {"_count": 1}, "relieved": {"_count": 1}, "laughed": {"_count": 1}, "passing": {"_count": 1}, "appeared": {"_count": 1}, "cut": {"_count": 1}, "hurled": {"_count": 1}, "panted": {"_count": 1}, "stood": {"_count": 1}}, "Scabbers": {"_count": 1, "has": {"_count": 1}}, "Firs": {"_count": 2, "years": {"_count": 2}}, "All": {"_count": 24, "right": {"_count": 10}, "fer": {"_count": 1}, "it": {"_count": 1}, "Frank": {"_count": 1}, "in": {"_count": 1}, "clear": {"_count": 1}, "first": {"_count": 1}, "we": {"_count": 1}, "righ": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}, "thought": {"_count": 1}, "these": {"_count": 1}, "the": {"_count": 1}, "Ive": {"_count": 1}}, "Slipping": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 34, "called": {"_count": 2}, "sobbed": {"_count": 1}, "seized": {"_count": 2}, "shouted": {"_count": 4}, "": {"_count": 1}, "roared": {"_count": 3}, "strode": {"_count": 1}, "said": {"_count": 4}, "whispered": {"_count": 2}, "suddenly": {"_count": 2}, "hurried": {"_count": 1}, "didnt": {"_count": 1}, "get": {"_count": 1}, "snarled": {"_count": 1}, "was": {"_count": 2}, "moved": {"_count": 1}, "turned": {"_count": 1}, "added": {"_count": 1}, "bellowed": {"_count": 1}, "yelled": {"_count": 2}}, "Is": {"_count": 2, "this": {"_count": 1}, "that": {"_count": 1}}, "HUFFLEPUFF": {"_count": 5, "": {"_count": 5}}, "RAVENCLAW": {"_count": 2, "": {"_count": 2}}, "Sometimes": {"_count": 2, "Harry": {"_count": 1}, "youve": {"_count": 1}}, "Hermione": {"_count": 136, "almost": {"_count": 1}, "had": {"_count": 3}, "urged": {"_count": 1}, "screamed": {"_count": 10}, "ordered": {"_count": 1}, "cried": {"_count": 9}, "seized": {"_count": 3}, "turned": {"_count": 1}, "squealed": {"_count": 2}, "squeaked": {"_count": 2}, "nodded": {"_count": 1}, "didnt": {"_count": 1}, "s": {"_count": 2}, "was": {"_count": 9}, "flung": {"_count": 1}, "pulled": {"_count": 1}, "said": {"_count": 17}, "wailed": {"_count": 1}, "joined": {"_count": 1}, "gasped": {"_count": 5}, "breathed": {"_count": 2}, "whispered": {"_count": 14}, "moaned": {"_count": 5}, "whimpered": {"_count": 1}, "calm": {"_count": 1}, "shrieked": {"_count": 2}, "called": {"_count": 3}, "": {"_count": 2}, "burst": {"_count": 1}, "snapped": {"_count": 2}, "looked": {"_count": 2}, "shrugged": {"_count": 1}, "made": {"_count": 1}, "raised": {"_count": 1}, "who": {"_count": 2}, "began": {"_count": 1}, "budge": {"_count": 1}, "shouted": {"_count": 2}, "hissed": {"_count": 1}, "added": {"_count": 1}, "stopped": {"_count": 1}, "insisted": {"_count": 1}, "panted": {"_count": 1}, "is": {"_count": 1}, "rolled": {"_count": 1}, "simply": {"_count": 1}, "keep": {"_count": 1}, "did": {"_count": 1}, "smiled": {"_count": 1}, "slid": {"_count": 1}, "recited": {"_count": 1}, "begged": {"_count": 1}, "dropped": {"_count": 1}, "if": {"_count": 1}, "hes": {"_count": 1}, "sobbed": {"_count": 1}, "drew": {"_count": 1}, "fumbled": {"_count": 1}}, "Malfoy": {"_count": 18, "went": {"_count": 2}, "didnt": {"_count": 1}, "let": {"_count": 1}, "roared": {"_count": 1}, "sneered": {"_count": 2}, "yelled": {"_count": 3}, "Crabbe": {"_count": 1}, "called": {"_count": 1}, "provoked": {"_count": 1}, "made": {"_count": 1}, "snarled": {"_count": 1}, "mustve": {"_count": 1}, "shouted": {"_count": 1}, "grabbed": {"_count": 1}}, "As": {"_count": 14, "Harry": {"_count": 3}, "he": {"_count": 2}, "if": {"_count": 3}, "they": {"_count": 1}, "I": {"_count": 1}, "Marietta": {"_count": 1}, "she": {"_count": 2}, "the": {"_count": 1}}, "We": {"_count": 51, "got": {"_count": 4}, "won": {"_count": 2}, "meet": {"_count": 1}, "will": {"_count": 1}, "wanted": {"_count": 1}, "could": {"_count": 1}, "houseelves": {"_count": 1}, "ad": {"_count": 1}, "dont": {"_count": 1}, "mustnt": {"_count": 2}, "must": {"_count": 4}, "saw": {"_count": 1}, "came": {"_count": 1}, "had": {"_count": 1}, "havent": {"_count": 2}, "all": {"_count": 1}, "know": {"_count": 2}, "couldve": {"_count": 1}, "alone": {"_count": 2}, "didnt": {"_count": 3}, "were": {"_count": 3}, "just": {"_count": 1}, "wen": {"_count": 1}, "are": {"_count": 2}, "wont": {"_count": 2}, "shall": {"_count": 1}, "only": {"_count": 1}, "do": {"_count": 1}, "both": {"_count": 2}, "heard": {"_count": 1}, "have": {"_count": 1}, "need": {"_count": 1}, "cannot": {"_count": 1}}, "Before": {"_count": 5, "we": {"_count": 1}, "Fudge": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "Blubber": {"_count": 1, "": {"_count": 1}}, "Oddment": {"_count": 1, "": {"_count": 1}}, "Tweak": {"_count": 1, "": {"_count": 1}}, "Thank": {"_count": 9, "you": {"_count": 7}, "goodness": {"_count": 1}, "God": {"_count": 1}}, "Best": {"_count": 2, "wizard": {"_count": 1}, "friend": {"_count": 1}}, "What": {"_count": 80, "fun": {"_count": 1}, "are": {"_count": 8}, "did": {"_count": 8}, "": {"_count": 18}, "utter": {"_count": 1}, "goods": {"_count": 1}, "is": {"_count": 6}, "terrible": {"_count": 1}, "dyeh": {"_count": 1}, "about": {"_count": 2}, "an": {"_count": 2}, "drop": {"_count": 1}, "a": {"_count": 1}, "happened": {"_count": 1}, "use": {"_count": 1}, "if": {"_count": 4}, "do": {"_count": 6}, "were": {"_count": 1}, "now": {"_count": 2}, "news": {"_count": 1}, "dyou": {"_count": 3}, "kind": {"_count": 1}, "say": {"_count": 1}, "exactly": {"_count": 1}, "happens": {"_count": 1}, "good": {"_count": 1}, "the": {"_count": 2}, "would": {"_count": 1}, "else": {"_count": 1}, "you": {"_count": 1}}, "barked": {"_count": 19, "Percy": {"_count": 1}, "Professor": {"_count": 5}, "Uncle": {"_count": 2}, "Mr": {"_count": 2}, "Moody": {"_count": 2}, "Fudge": {"_count": 2}, "Angelina": {"_count": 1}, "Ernie": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "Mrs": {"_count": 1}}, "Hes": {"_count": 28, "chewing": {"_count": 1}, "still": {"_count": 2}, "got": {"_count": 2}, "doing": {"_count": 1}, "coming": {"_count": 1}, "an": {"_count": 1}, "on": {"_count": 1}, "been": {"_count": 2}, "not": {"_count": 3}, "gone": {"_count": 1}, "free": {"_count": 1}, "supposed": {"_count": 1}, "ill": {"_count": 1}, "worried": {"_count": 1}, "dead": {"_count": 1}, "going": {"_count": 3}, "killed": {"_count": 1}, "trying": {"_count": 2}, "teaching": {"_count": 1}, "in": {"_count": 1}}, "snarled": {"_count": 26, "Snape": {"_count": 3}, "Filch": {"_count": 1}, "Black": {"_count": 1}, "Mrs": {"_count": 1}, "Uncle": {"_count": 1}, "Moody": {"_count": 3}, "Fudge": {"_count": 1}, "Angelina": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 2}, "Lucius": {"_count": 1}, "Voldemort": {"_count": 1}, "Narcissa": {"_count": 1}, "Bellatrix": {"_count": 2}, "Malfoy": {"_count": 1}, "Kingsley": {"_count": 1}, "Ron": {"_count": 2}, "Harry": {"_count": 1}, "an": {"_count": 1}}, "UP": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "shouted": {"_count": 1}}, "His": {"_count": 8, "heart": {"_count": 1}, "last": {"_count": 1}, "head": {"_count": 1}, "touch": {"_count": 1}, "voice": {"_count": 2}, "tone": {"_count": 1}, "cry": {"_count": 1}}, "Ive": {"_count": 26, "been": {"_count": 5}, "never": {"_count": 4}, "forgotten": {"_count": 1}, "had": {"_count": 2}, "got": {"_count": 6}, "seen": {"_count": 1}, "Ive": {"_count": 1}, "ggone": {"_count": 1}, "bbeen": {"_count": 1}, "listened": {"_count": 1}, "only": {"_count": 2}, "found": {"_count": 1}}, "Peeves": {"_count": 1, "bellowed": {"_count": 1}}, "Ducking": {"_count": 1, "under": {"_count": 1}}, "This": {"_count": 28, "is": {"_count": 15}, "way": {"_count": 1}, "was": {"_count": 2}, "isnt": {"_count": 1}, "hasnt": {"_count": 1}, "belongs": {"_count": 1}, "ones": {"_count": 1}, "cannot": {"_count": 1}, "pain": {"_count": 1}, "thought": {"_count": 1}, "time": {"_count": 1}, "this": {"_count": 1}, "must": {"_count": 1}}, "Ha": {"_count": 2, "haa": {"_count": 1}, "ha": {"_count": 1}}, "Told": {"_count": 3, "you": {"_count": 2}, "them": {"_count": 1}}, "Haa": {"_count": 1, "": {"_count": 1}}, "For": {"_count": 10, "Neville": {"_count": 1}, "one": {"_count": 1}, "heavens": {"_count": 1}, "a": {"_count": 2}, "some": {"_count": 1}, "the": {"_count": 2}, "that": {"_count": 1}, "all": {"_count": 1}}, "Oliver": {"_count": 2, "Wood": {"_count": 1}, "calm": {"_count": 1}}, "squeaked": {"_count": 20, "Professor": {"_count": 2}, "tiny": {"_count": 1}, "Neville": {"_count": 1}, "the": {"_count": 3}, "Dobby": {"_count": 8}, "a": {"_count": 1}, "an": {"_count": 2}, "Hermione": {"_count": 2}}, "Percy": {"_count": 10, "was": {"_count": 1}, "Weasley": {"_count": 1}, "said": {"_count": 1}, "called": {"_count": 1}, "shouted": {"_count": 1}, "I": {"_count": 1}, "froze": {"_count": 1}, "She": {"_count": 1}, "dashed": {"_count": 1}, "roared": {"_count": 1}}, "Stick": {"_count": 1, "together": {"_count": 1}}, "No": {"_count": 43, "need": {"_count": 1}, "no": {"_count": 5}, "said": {"_count": 8}, "Im": {"_count": 1}, "more": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 8}, "Buckbeak": {"_count": 1}, "broken": {"_count": 1}, "I": {"_count": 3}, "ones": {"_count": 1}, "way": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 2}, "she": {"_count": 1}, "higher": {"_count": 1}, "youre": {"_count": 1}, "its": {"_count": 1}, "doubt": {"_count": 1}, "is": {"_count": 1}, "not": {"_count": 1}, "he": {"_count": 1}}, "Stay": {"_count": 1, "close": {"_count": 1}}, "Excuse": {"_count": 1, "me": {"_count": 1}}, "Flushed": {"_count": 1, "with": {"_count": 1}}, "Snape": {"_count": 35, "s": {"_count": 1}, "roared": {"_count": 2}, "said": {"_count": 4}, "called": {"_count": 1}, "shouted": {"_count": 1}, "shrieked": {"_count": 1}, "seized": {"_count": 1}, "howled": {"_count": 1}, "wont": {"_count": 1}, "snarled": {"_count": 3}, "snapped": {"_count": 1}, "looked": {"_count": 1}, "hissed": {"_count": 3}, "had": {"_count": 3}, "stretched": {"_count": 1}, "has": {"_count": 1}, "bellowed": {"_count": 1}, "gave": {"_count": 1}, "did": {"_count": 1}, "flicked": {"_count": 1}, "headmaster": {"_count": 1}, "in": {"_count": 1}, "protested": {"_count": 1}, "was": {"_count": 1}, "sounded": {"_count": 1}}, "Thats": {"_count": 24, "where": {"_count": 2}, "a": {"_count": 2}, "what": {"_count": 2}, "all": {"_count": 2}, "why": {"_count": 2}, "going": {"_count": 1}, "very": {"_count": 1}, "wonderful": {"_count": 1}, "my": {"_count": 1}, "not": {"_count": 2}, "the": {"_count": 1}, "really": {"_count": 1}, "everyone": {"_count": 1}, "for": {"_count": 1}, "true": {"_count": 1}, "three": {"_count": 1}, "as": {"_count": 1}, "convenient": {"_count": 1}}, "Hermiones": {"_count": 4, "eyes": {"_count": 1}, "there": {"_count": 1}, "mouth": {"_count": 1}, "Patronus": {"_count": 1}}, "Sorry": {"_count": 6, "Professor": {"_count": 2}, "said": {"_count": 1}, "": {"_count": 3}}, "Gryffindor": {"_count": 5, "cheers": {"_count": 1}, "is": {"_count": 1}, "common": {"_count": 1}, "back": {"_count": 1}, "leads": {"_count": 1}}, "screamed": {"_count": 21, "the": {"_count": 2}, "Lockhart": {"_count": 1}, "Aunt": {"_count": 1}, "Cho": {"_count": 1}, "Bagman": {"_count": 1}, "Hermione": {"_count": 3}, "Mrs": {"_count": 3}, "Angelina": {"_count": 1}, "Umbridge": {"_count": 1}, "Ginny": {"_count": 1}, "Bellatrix": {"_count": 1}, "a": {"_count": 1}, "Snape": {"_count": 1}, "Mundungus": {"_count": 1}, "Malfoy": {"_count": 1}, "Voldemort": {"_count": 1}}, "Red": {"_count": 2, "card": {"_count": 1}, "sparks": {"_count": 1}}, "growled": {"_count": 6, "Professor": {"_count": 1}, "Hagrid": {"_count": 2}, "Moodys": {"_count": 1}, "MadEye": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "Youve": {"_count": 16, "got": {"_count": 7}, "forgotten": {"_count": 1}, "murdered": {"_count": 1}, "killed": {"_count": 1}, "been": {"_count": 1}, "had": {"_count": 1}, "never": {"_count": 2}, "just": {"_count": 2}}, "Im": {"_count": 29, "tellin": {"_count": 1}, "going": {"_count": 2}, "not": {"_count": 9}, "sure": {"_count": 2}, "here": {"_count": 1}, "leaving": {"_count": 1}, "telling": {"_count": 1}, "right": {"_count": 1}, "perfectly": {"_count": 1}, "sorry": {"_count": 3}, "tellinyeh": {"_count": 1}, "trying": {"_count": 1}, "seventeen": {"_count": 1}, "serious": {"_count": 1}, "descended": {"_count": 1}, "a": {"_count": 1}, "of": {"_count": 1}}, "Wishing": {"_count": 1, "hed": {"_count": 1}}, "Hey": {"_count": 5, "look": {"_count": 1}, "wherere": {"_count": 1}, "Weasley": {"_count": 1}, "CHO": {"_count": 1}, "Harry": {"_count": 1}}, "Fred": {"_count": 17, "and": {"_count": 3}, "yelled": {"_count": 2}, "no": {"_count": 1}, "shouted": {"_count": 4}, "bellowed": {"_count": 2}, "Weasley": {"_count": 2}, "whispered": {"_count": 1}, "swept": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 29, "disappointment": {"_count": 1}, "the": {"_count": 2}, "other": {"_count": 1}, "look": {"_count": 1}, "vanished": {"_count": 3}, "shell": {"_count": 1}, "started": {"_count": 1}, "hurried": {"_count": 1}, "pointed": {"_count": 2}, "he": {"_count": 1}, "of": {"_count": 1}, "LIONS": {"_count": 1}, "disappeared": {"_count": 1}, "Mr": {"_count": 1}, "departed": {"_count": 1}, "set": {"_count": 1}, "then": {"_count": 1}, "I": {"_count": 1}, "only": {"_count": 1}, "Hagrid": {"_count": 1}, "Lavender": {"_count": 1}, "silence": {"_count": 1}, "Ron": {"_count": 1}, "it": {"_count": 1}, "sprinted": {"_count": 1}}, "Snapes": {"_count": 3, "refereeing": {"_count": 1}, "sallow": {"_count": 1}, "not": {"_count": 1}}, "George": {"_count": 3, "Weasley": {"_count": 1}, "no": {"_count": 1}, "pushed": {"_count": 1}}, "Neville": {"_count": 13, "shook": {"_count": 1}, "burst": {"_count": 1}, "Ron": {"_count": 1}, "put": {"_count": 1}, "was": {"_count": 1}, "told": {"_count": 1}, "had": {"_count": 1}, "nodded": {"_count": 1}, "is": {"_count": 1}, "whats": {"_count": 1}, "called": {"_count": 1}, "bellowed": {"_count": 1}, "looked": {"_count": 1}}, "Are": {"_count": 6, "we": {"_count": 1}, "you": {"_count": 5}}, "Anyone": {"_count": 2, "would": {"_count": 1}, "else": {"_count": 1}}, "Harrys": {"_count": 19, "heart": {"_count": 7}, "won": {"_count": 1}, "brain": {"_count": 1}, "name": {"_count": 1}, "insides": {"_count": 1}, "doubts": {"_count": 1}, "spirits": {"_count": 1}, "uncle": {"_count": 1}, "foot": {"_count": 1}, "eyes": {"_count": 1}, "mind": {"_count": 1}, "head": {"_count": 1}, "scar": {"_count": 1}}, "Someone": {"_count": 3, "had": {"_count": 2}, "yanked": {"_count": 1}}, "Where": {"_count": 15, "are": {"_count": 2}, "have": {"_count": 1}, "is": {"_count": 1}, "the": {"_count": 1}, "theyve": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "to": {"_count": 1}, "am": {"_count": 1}, "would": {"_count": 1}, "dyou": {"_count": 1}, "havent": {"_count": 1}, "did": {"_count": 2}}, "Weve": {"_count": 15, "won": {"_count": 1}, "got": {"_count": 7}, "been": {"_count": 4}, "already": {"_count": 1}, "caught": {"_count": 1}, "named": {"_count": 1}}, "Everyones": {"_count": 1, "waiting": {"_count": 1}}, "Norbert": {"_count": 1, "": {"_count": 1}}, "Wheres": {"_count": 3, "Mommy": {"_count": 1}, "the": {"_count": 2}}, "Brilliant": {"_count": 1, "": {"_count": 1}}, "Wandering": {"_count": 1, "around": {"_count": 1}}, "Come": {"_count": 19, "on": {"_count": 9}, "ere": {"_count": 1}, "to": {"_count": 2}, "clap": {"_count": 1}, "off": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}, "here": {"_count": 1}, "now": {"_count": 1}, "closer": {"_count": 1}}, "Only": {"_count": 3, "Ron": {"_count": 1}, "the": {"_count": 1}, "bubbles": {"_count": 1}}, "Bane": {"_count": 1, "thundered": {"_count": 1}}, "Have": {"_count": 5, "you": {"_count": 5}}, "Firenze": {"_count": 1, "suddenly": {"_count": 1}}, "Of": {"_count": 11, "course": {"_count": 10}, "what": {"_count": 1}}, "If": {"_count": 40, "I": {"_count": 7}, "you": {"_count": 10}, "the": {"_count": 4}, "ever": {"_count": 1}, "anyone": {"_count": 2}, "that": {"_count": 1}, "anything": {"_count": 2}, "Malfoy": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 1}, "thats": {"_count": 1}, "Voldemort": {"_count": 2}, "he": {"_count": 3}, "say": {"_count": 1}, "were": {"_count": 1}, "they": {"_count": 1}, "all": {"_count": 1}}, "SO": {"_count": 1, "WHAT": {"_count": 1}}, "Havent": {"_count": 3, "you": {"_count": 2}, "I": {"_count": 1}}, "Losing": {"_count": 1, "points": {"_count": 1}}, "Voldemort": {"_count": 7, "killed": {"_count": 1}, "began": {"_count": 1}, "shrieked": {"_count": 1}, "shouted": {"_count": 1}, "can": {"_count": 1}, "is": {"_count": 1}, "fears": {"_count": 1}}, "whispered": {"_count": 23, "Ron": {"_count": 1}, "Professor": {"_count": 2}, "Lavender": {"_count": 1}, "Winky": {"_count": 1}, "Harry": {"_count": 2}, "Hermione": {"_count": 10}, "Neville": {"_count": 1}, "Seamus": {"_count": 1}, "Hepzibah": {"_count": 1}, "Tonks": {"_count": 1}, "Doge": {"_count": 1}, "Lily": {"_count": 1}}, "Broomsticks": {"_count": 1, "": {"_count": 1}}, "Quirrell": {"_count": 2, "shouted": {"_count": 1}, "rolled": {"_count": 1}}, "SEIZE": {"_count": 1, "HIM": {"_count": 1}}, "screeched": {"_count": 2, "Voldemort": {"_count": 1}, "Pansy": {"_count": 1}}, "KILL": {"_count": 2, "HIM": {"_count": 2}}, "Sir": {"_count": 1, "quick": {"_count": 1}}, "Bertie": {"_count": 1, "Botts": {"_count": 1}}, "Ear": {"_count": 1, "wax": {"_count": 1}}, "Madam": {"_count": 3, "Pomfrey": {"_count": 1}, "Z": {"_count": 1}, "Hooch": {"_count": 1}}, "Yeh": {"_count": 1, "couldve": {"_count": 1}}, "Ill": {"_count": 15, "never": {"_count": 2}, "let": {"_count": 1}, "kill": {"_count": 1}, "Argus": {"_count": 1}, "go": {"_count": 1}, "do": {"_count": 2}, "just": {"_count": 1}, "hhit": {"_count": 1}, "talk": {"_count": 1}, "take": {"_count": 1}, "tell": {"_count": 1}, "hold": {"_count": 1}, "have": {"_count": 1}}, "sobbed": {"_count": 10, "Hagrid": {"_count": 2}, "Lavender": {"_count": 1}, "Hermione": {"_count": 1}, "Bellatrix": {"_count": 1}, "Narcissa": {"_count": 1}, "Leanne": {"_count": 1}, "Mrs": {"_count": 1}, "Xenophilius": {"_count": 2}}, "VOLDEMORT": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 25, "said": {"_count": 1}, "told": {"_count": 1}, "sat": {"_count": 1}, "called": {"_count": 1}, "smiled": {"_count": 2}, "and": {"_count": 1}, "had": {"_count": 2}, "will": {"_count": 1}, "turned": {"_count": 1}, "chuckled": {"_count": 1}, "gave": {"_count": 1}, "gulped": {"_count": 1}, "staggered": {"_count": 1}, "kept": {"_count": 1}, "must": {"_count": 1}, "was": {"_count": 4}, "left": {"_count": 1}, "wouldnt": {"_count": 1}, "s": {"_count": 1}, "intended": {"_count": 1}}, "Hopefully": {"_count": 1, "your": {"_count": 1}}, "My": {"_count": 17, "youngest": {"_count": 1}, "cat": {"_count": 1}, "dear": {"_count": 5}, "brother": {"_count": 2}, "devotion": {"_count": 1}, "master": {"_count": 1}, "true": {"_count": 1}, "jobs": {"_count": 1}, "father": {"_count": 1}, "Patronus": {"_count": 1}, "Lord": {"_count": 1}, "word": {"_count": 1}}, "Got": {"_count": 1, "past": {"_count": 1}}, "At": {"_count": 4, "last": {"_count": 1}, "Christmas": {"_count": 1}, "this": {"_count": 1}, "least": {"_count": 1}}, "See": {"_count": 7, "you": {"_count": 3}, "": {"_count": 1}, "here": {"_count": 1}, "that": {"_count": 1}, "ya": {"_count": 1}}, "Still": {"_count": 4, "famous": {"_count": 1}, "working": {"_count": 1}, "in": {"_count": 1}, "chuckling": {"_count": 1}}, "sniffed": {"_count": 1, "Aunt": {"_count": 1}}, "howled": {"_count": 5, "Dudley": {"_count": 1}, "Myrtle": {"_count": 1}, "Fred": {"_count": 1}, "Professor": {"_count": 1}, "Hagrid": {"_count": 1}}, "Hurry": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "choked": {"_count": 5, "the": {"_count": 1}, "Hagrid": {"_count": 2}, "Hermione": {"_count": 1}, "Narcissa": {"_count": 1}}, "Bad": {"_count": 2, "Dobby": {"_count": 2}}, "Speak": {"_count": 1, "not": {"_count": 1}}, "Quick": {"_count": 2, "": {"_count": 2}}, "In": {"_count": 11, "the": {"_count": 4}, "fact": {"_count": 2}, "you": {"_count": 1}, "unison": {"_count": 1}, "a": {"_count": 2}, "spite": {"_count": 1}}, "Say": {"_count": 1, "you": {"_count": 1}}, "Then": {"_count": 10, "Harry": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "you": {"_count": 1}, "why": {"_count": 1}, "its": {"_count": 1}, "what": {"_count": 1}, "shell": {"_count": 1}}, "Yours": {"_count": 1, "sincerely": {"_count": 1}}, "HES": {"_count": 3, "GETTING": {"_count": 1}, "SAVED": {"_count": 1}, "ALIVE": {"_count": 1}}, "Mrs": {"_count": 20, "Weasley": {"_count": 16}, "Norris": {"_count": 2}, "Petunia": {"_count": 1}, "Cattermole": {"_count": 1}}, "Gerroff": {"_count": 1, "me": {"_count": 1}}, "squealed": {"_count": 22, "the": {"_count": 4}, "a": {"_count": 1}, "Aunt": {"_count": 2}, "Lavender": {"_count": 2}, "Hermione": {"_count": 6}, "Pettigrew": {"_count": 1}, "Winky": {"_count": 2}, "Parvati": {"_count": 1}, "old": {"_count": 1}, "Moaning": {"_count": 1}, "Flitwick": {"_count": 1}}, "\u2018and": {"_count": 1, "were": {"_count": 1}}, "After": {"_count": 2, "you": {"_count": 1}, "a": {"_count": 1}}, "Your": {"_count": 11, "son": {"_count": 1}, "mum": {"_count": 1}, "fathers": {"_count": 1}, "mother": {"_count": 1}, "dementor": {"_count": 1}, "dad": {"_count": 1}, "scar": {"_count": 1}, "boyfriends": {"_count": 1}, "death": {"_count": 1}, "wand": {"_count": 1}, "blood": {"_count": 1}}, "Over": {"_count": 3, "here": {"_count": 2}, "his": {"_count": 1}}, "Whats": {"_count": 19, "that": {"_count": 4}, "all": {"_count": 2}, "happened": {"_count": 4}, "going": {"_count": 2}, "a": {"_count": 2}, "it": {"_count": 1}, "wrong": {"_count": 1}, "Dumbledore": {"_count": 1}, "so": {"_count": 1}, "your": {"_count": 1}}, "When": {"_count": 12, "young": {"_count": 1}, "I": {"_count": 2}, "nobody": {"_count": 2}, "we": {"_count": 1}, "Harry": {"_count": 1}, "Snape": {"_count": 1}, "History": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "my": {"_count": 1}}, "from": {"_count": 2, "Fred": {"_count": 1}, "behind": {"_count": 1}}, "the": {"_count": 9, "crowd": {"_count": 1}, "proprietor": {"_count": 1}, "executioner": {"_count": 1}, "hat": {"_count": 1}, "Sorting": {"_count": 1}, "Fat": {"_count": 1}, "elf": {"_count": 1}, "figure": {"_count": 1}, "Granger": {"_count": 1}}, "Silhouetted": {"_count": 1, "on": {"_count": 1}}, "STOP": {"_count": 2, "": {"_count": 2}}, "Flying": {"_count": 1, "a": {"_count": 1}}, "\u2018Its": {"_count": 1, "all": {"_count": 1}}, "Pinned": {"_count": 1, "to": {"_count": 1}}, "beamed": {"_count": 4, "Lockhart": {"_count": 2}, "Slughorn": {"_count": 1}, "Ron": {"_count": 1}}, "Take": {"_count": 4, "ten": {"_count": 1}, "him": {"_count": 1}, "off": {"_count": 1}, "your": {"_count": 1}}, "Wait": {"_count": 2, "for": {"_count": 1}, "till": {"_count": 1}}, "Colin": {"_count": 1, "scrambled": {"_count": 1}}, "Wood": {"_count": 11, "shouted": {"_count": 2}, "hissed": {"_count": 1}, "shot": {"_count": 1}, "bellowed": {"_count": 1}, "roared": {"_count": 2}, "looked": {"_count": 1}, "called": {"_count": 1}, "too": {"_count": 1}, "kept": {"_count": 1}}, "Marcus": {"_count": 1, "Flint": {"_count": 1}}, "Lockhart": {"_count": 4, "was": {"_count": 1}, "told": {"_count": 1}, "shouted": {"_count": 1}, "clapped": {"_count": 1}}, "Broke": {"_count": 1, "all": {"_count": 1}}, "Id": {"_count": 5, "never": {"_count": 1}, "started": {"_count": 1}, "better": {"_count": 1}, "pay": {"_count": 1}, "love": {"_count": 1}}, "Most": {"_count": 2, "people": {"_count": 1}, "of": {"_count": 1}}, "Follow": {"_count": 1, "me": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Filch": {"_count": 5, "roared": {"_count": 2}, "spat": {"_count": 1}, "would": {"_count": 1}, "evidently": {"_count": 1}}, "Kwikspell": {"_count": 1, "is": {"_count": 1}}, "Warlock": {"_count": 1, "D": {"_count": 1}}, "Fascinated": {"_count": 1, "Harry": {"_count": 1}}, "Why": {"_count": 22, "would": {"_count": 2}, "not": {"_count": 2}, "didnt": {"_count": 3}, "ask": {"_count": 1}, "should": {"_count": 1}, "doesnt": {"_count": 3}, "dont": {"_count": 2}, "we": {"_count": 1}, "": {"_count": 1}, "Severus": {"_count": 1}, "did": {"_count": 1}, "are": {"_count": 1}, "hide": {"_count": 1}, "else": {"_count": 1}, "was": {"_count": 1}}, "MYRTLE": {"_count": 1, "": {"_count": 1}}, "Ugly": {"_count": 1, "Myrtle": {"_count": 1}}, "Miserable": {"_count": 2, "moaning": {"_count": 1}, "old": {"_count": 1}}, "Something": {"_count": 4, "was": {"_count": 1}, "caught": {"_count": 1}, "to": {"_count": 1}, "fell": {"_count": 1}}, "Youll": {"_count": 4, "be": {"_count": 2}, "need": {"_count": 2}}, "Hullo": {"_count": 1, "Colin": {"_count": 1}}, "Signed": {"_count": 1, "copies": {"_count": 1}}, "Out": {"_count": 1, "": {"_count": 1}}, "Indeed": {"_count": 1, "yes": {"_count": 1}}, "Such": {"_count": 3, "a": {"_count": 1}, "lies": {"_count": 1}, "ignorance": {"_count": 1}}, "Dobby": {"_count": 16, "thought": {"_count": 1}, "only": {"_count": 1}, "groaned": {"_count": 1}, "remembers": {"_count": 1}, "let": {"_count": 1}, "squealed": {"_count": 2}, "squeaked": {"_count": 1}, "likes": {"_count": 1}, "beamed": {"_count": 1}, "gave": {"_count": 1}, "is": {"_count": 1}, "plucked": {"_count": 1}, "said": {"_count": 1}, "called": {"_count": 1}, "sank": {"_count": 1}}, "Better": {"_count": 1, "sent": {"_count": 1}}, "moaned": {"_count": 6, "Dobby": {"_count": 1}, "Mr": {"_count": 1}, "Winky": {"_count": 1}, "Hermione": {"_count": 2}, "Ron": {"_count": 1}}, "breathed": {"_count": 3, "the": {"_count": 1}, "Aunt": {"_count": 1}, "Hermione": {"_count": 1}}, "SILENCE": {"_count": 1, "": {"_count": 1}}, "Can": {"_count": 9, "everyone": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 4}, "you": {"_count": 2}, "yeh": {"_count": 1}}, "Wouldnt": {"_count": 1, "it": {"_count": 1}}, "called": {"_count": 24, "Lockhart": {"_count": 1}, "Stan": {"_count": 1}, "Mrs": {"_count": 4}, "a": {"_count": 4}, "Harry": {"_count": 1}, "Cho": {"_count": 1}, "Moody": {"_count": 1}, "Tonks": {"_count": 1}, "Magorian": {"_count": 1}, "Hermione": {"_count": 1}, "Slughorn": {"_count": 2}, "Professor": {"_count": 1}, "Lavender": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "another": {"_count": 1}, "Bathilda": {"_count": 1}}, "Stop": {"_count": 5, "": {"_count": 1}, "it": {"_count": 2}, "poking": {"_count": 1}, "doing": {"_count": 1}}, "cackled": {"_count": 3, "Peeves": {"_count": 3}}, "ATTACK": {"_count": 1, "": {"_count": 1}}, "ANOTHER": {"_count": 1, "ATTACK": {"_count": 1}}, "NO": {"_count": 3, "MORTAL": {"_count": 1}, "": {"_count": 2}}, "RUN": {"_count": 1, "FOR": {"_count": 1}}, "ATTaaCK": {"_count": 1, "": {"_count": 1}}, "Crash": {"_count": 1, "crash": {"_count": 1}}, "Ernie": {"_count": 1, "yelled": {"_count": 1}}, "Uhoh": {"_count": 1, "said": {"_count": 1}}, "Mopping": {"_count": 1, "all": {"_count": 1}}, "Ten": {"_count": 2, "points": {"_count": 1}, "minutes": {"_count": 1}}, "Fifty": {"_count": 1, "points": {"_count": 1}}, "Who": {"_count": 10, "threw": {"_count": 1}, "dyou": {"_count": 1}, "wants": {"_count": 1}, "": {"_count": 3}, "are": {"_count": 2}, "was": {"_count": 1}, "says": {"_count": 1}}, "Professor": {"_count": 18, "Flitwick": {"_count": 1}, "Trelawney": {"_count": 4}, "McGonagall": {"_count": 9}, "Lupin": {"_count": 1}, "": {"_count": 1}, "Dumbledore": {"_count": 1}, "Sprout": {"_count": 1}}, "Arry": {"_count": 1, "Potter": {"_count": 1}}, "Ginny": {"_count": 10, "covered": {"_count": 1}, "wept": {"_count": 1}, "sobbed": {"_count": 1}, "BED": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 1}, "screamed": {"_count": 1}, "": {"_count": 1}, "shouted": {"_count": 1}, "told": {"_count": 1}}, "Stand": {"_count": 3, "aside": {"_count": 2}, "back": {"_count": 1}}, "Therell": {"_count": 2, "be": {"_count": 2}}, "Calm": {"_count": 1, "yourself": {"_count": 1}}, "it": {"_count": 3, "called": {"_count": 1}, "was": {"_count": 1}, "whispered": {"_count": 1}}, "several": {"_count": 2, "people": {"_count": 2}}, "Mind": {"_count": 1, "you": {"_count": 1}}, "Halfway": {"_count": 1, "through": {"_count": 1}}, "Weasley": {"_count": 2, "": {"_count": 2}}, "Nick": {"_count": 3, "got": {"_count": 1}, "he": {"_count": 1}, "made": {"_count": 1}}, "Spiders": {"_count": 1, "flee": {"_count": 1}}, "Not": {"_count": 10, "with": {"_count": 1}, "that": {"_count": 1}, "clothes": {"_count": 1}, "by": {"_count": 2}, "until": {"_count": 1}, "anymore": {"_count": 1}, "quite": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}}, "came": {"_count": 8, "Rons": {"_count": 2}, "Woods": {"_count": 1}, "Lupins": {"_count": 1}, "Lees": {"_count": 1}, "a": {"_count": 2}, "Luciuss": {"_count": 1}}, "Do": {"_count": 11, "you": {"_count": 7}, "not": {"_count": 3}, "it": {"_count": 1}}, "but": {"_count": 3, "what": {"_count": 1}, "unfortunately": {"_count": 1}, "there": {"_count": 1}}, "LEAVE": {"_count": 2, "THE": {"_count": 2}}, "SNIFF": {"_count": 1, "SMELL": {"_count": 1}}, "Him": {"_count": 1, "and": {"_count": 1}}, "Amazing": {"_count": 1, "": {"_count": 1}}, "Sword": {"_count": 1, "": {"_count": 1}}, "Least": {"_count": 1, "I": {"_count": 1}}, "or": {"_count": 1, "Justin": {"_count": 1}}, "NEVER": {"_count": 1, "CONTACT": {"_count": 1}}, "DONT": {"_count": 2, "YOU": {"_count": 1}, "KILL": {"_count": 1}}, "Try": {"_count": 1, "and": {"_count": 1}}, "Love": {"_count": 1, "from": {"_count": 1}}, "Think": {"_count": 1, "you": {"_count": 1}}, "Aunt": {"_count": 5, "Petunia": {"_count": 5}}, "bellowed": {"_count": 26, "Uncle": {"_count": 4}, "Black": {"_count": 1}, "Mr": {"_count": 2}, "Fred": {"_count": 2}, "Ron": {"_count": 4}, "Hagrid": {"_count": 4}, "Harry": {"_count": 4}, "Malfoy": {"_count": 1}, "Gaunt": {"_count": 1}, "Amycus": {"_count": 1}, "Percy": {"_count": 1}, "Snape": {"_count": 1}}, "boomed": {"_count": 6, "Aunt": {"_count": 1}, "Hagrid": {"_count": 1}, "Ludo": {"_count": 1}, "Karkaroff": {"_count": 1}, "Slughorn": {"_count": 2}}, "Stanley": {"_count": 1, "turned": {"_count": 1}}, "Ern": {"_count": 2, "come": {"_count": 1}, "": {"_count": 1}}, "Stan": {"_count": 1, "shouted": {"_count": 1}}, "Guess": {"_count": 1, "oo": {"_count": 1}}, "Es": {"_count": 1, "Arry": {"_count": 1}}, "Unless": {"_count": 3, "Harrys": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "HARRY": {"_count": 6, "": {"_count": 5}, "WHATRE": {"_count": 1}}, "Hows": {"_count": 1, "he": {"_count": 1}}, "retorted": {"_count": 1, "Mr": {"_count": 1}}, "gasped": {"_count": 15, "Hermione": {"_count": 6}, "Pettigrew": {"_count": 3}, "Mr": {"_count": 1}, "the": {"_count": 3}, "Fudge": {"_count": 1}, "Harry": {"_count": 1}}, "Ouch": {"_count": 1, "": {"_count": 1}}, "Granger": {"_count": 1, "": {"_count": 1}}, "New": {"_count": 1, "students": {"_count": 1}}, "Woooooooo": {"_count": 1, "": {"_count": 1}}, "Right": {"_count": 6, "after": {"_count": 1}, "said": {"_count": 3}, "sorry": {"_count": 1}, "yeah": {"_count": 1}}, "Bin": {"_count": 2, "up": {"_count": 1}, "celebratin": {"_count": 1}}, "Back": {"_count": 2, "you": {"_count": 1}, "to": {"_count": 1}}, "On": {"_count": 3, "": {"_count": 2}, "my": {"_count": 1}}, "Yeah": {"_count": 32, "well": {"_count": 6}, "I": {"_count": 4}, "it": {"_count": 2}, "said": {"_count": 2}, "thats": {"_count": 1}, "we": {"_count": 2}, "its": {"_count": 3}, "and": {"_count": 3}, "": {"_count": 4}, "but": {"_count": 4}, "very": {"_count": 1}}, "Coincidence": {"_count": 1, "said": {"_count": 1}}, "That": {"_count": 16, "lesson": {"_count": 1}, "thing": {"_count": 1}, "was": {"_count": 2}, "would": {"_count": 1}, "things": {"_count": 1}, "makes": {"_count": 1}, "Mr": {"_count": 1}, "sounds": {"_count": 1}, "really": {"_count": 1}, "they": {"_count": 1}, "symbol": {"_count": 1}, "wand": {"_count": 1}, "sword": {"_count": 1}, "wasnt": {"_count": 1}, "which": {"_count": 1}}, "Great": {"_count": 4, "lesson": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}, "idea": {"_count": 1}}, "Shut": {"_count": 3, "up": {"_count": 3}}, "Pat": {"_count": 1, "his": {"_count": 1}}, "Feeling": {"_count": 2, "that": {"_count": 1}, "enormously": {"_count": 1}}, "AN": {"_count": 1, "YOU": {"_count": 1}}, "LETTIN": {"_count": 1, "HIM": {"_count": 1}}, "7": {"_count": 1, "THE": {"_count": 1}}, "Forward": {"_count": 2, "": {"_count": 1}, "Neville": {"_count": 1}}, "Parvati": {"_count": 7, "walked": {"_count": 1}, "tightened": {"_count": 1}, "readjusted": {"_count": 1}, "was": {"_count": 1}, "hissed": {"_count": 1}, "said": {"_count": 1}, "positively": {"_count": 1}}, "becoming": {"_count": 1, "a": {"_count": 1}}, "Dean": {"_count": 4, "": {"_count": 1}, "hurried": {"_count": 1}, "and": {"_count": 1}, "left": {"_count": 1}}, "of": {"_count": 2, "laughter": {"_count": 1}, "comprehension": {"_count": 1}}, "Crookshanks": {"_count": 2, "doesnt": {"_count": 1}, "had": {"_count": 1}}, "Theres": {"_count": 11, "something": {"_count": 1}, "nothing": {"_count": 1}, "someone": {"_count": 2}, "a": {"_count": 2}, "no": {"_count": 3}, "been": {"_count": 1}, "writing": {"_count": 1}}, "Remember": {"_count": 2, "": {"_count": 1}, "last": {"_count": 1}}, "Hi": {"_count": 4, "Harry": {"_count": 1}, "Neville": {"_count": 1}, "Luna": {"_count": 1}, "": {"_count": 1}}, "Er": {"_count": 7, "no": {"_count": 1}, "hang": {"_count": 1}, "good": {"_count": 1}, "we": {"_count": 1}, "my": {"_count": 1}, "began": {"_count": 1}, "why": {"_count": 1}}, "spat": {"_count": 6, "Filch": {"_count": 1}, "Ron": {"_count": 1}, "Snape": {"_count": 3}, "Voldemort": {"_count": 1}}, "Sneaking": {"_count": 1, "around": {"_count": 1}}, "About": {"_count": 3, "two": {"_count": 1}, "time": {"_count": 1}, "one": {"_count": 1}}, "Honeydukes": {"_count": 1, "has": {"_count": 1}}, "Lights": {"_count": 1, "out": {"_count": 1}}, "Cmon": {"_count": 1, "Ron": {"_count": 1}}, "Slytherin": {"_count": 1, "is": {"_count": 1}}, "Give": {"_count": 4, "me": {"_count": 2}, "it": {"_count": 2}}, "Resigned": {"_count": 1, "to": {"_count": 1}}, "Ice": {"_count": 1, "Mice": {"_count": 1}}, "peppermint": {"_count": 1, "creams": {"_count": 1}}, "fragile": {"_count": 1, "sugarspun": {"_count": 1}}, "Course": {"_count": 4, "I": {"_count": 1}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}}, "chimed": {"_count": 1, "in": {"_count": 1}}, "Jus": {"_count": 1, "got": {"_count": 1}}, "Alas": {"_count": 1, "if": {"_count": 1}}, "Lets": {"_count": 6, "lets": {"_count": 1}, "just": {"_count": 2}, "hope": {"_count": 1}, "say": {"_count": 1}, "sit": {"_count": 1}}, "Further": {"_count": 1, "discussion": {"_count": 1}}, "down": {"_count": 1, "through": {"_count": 1}}, "Scared": {"_count": 1, "o": {"_count": 1}}, "lied": {"_count": 1, "Hermione": {"_count": 1}}, "Presents": {"_count": 1, "": {"_count": 1}}, "Blimey": {"_count": 6, "whod": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 2}, "you": {"_count": 1}}, "Nothing": {"_count": 2, "could": {"_count": 1}, "happened": {"_count": 1}}, "Never": {"_count": 3, "forget": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "Which": {"_count": 1, "of": {"_count": 1}}, "Password": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "Youd": {"_count": 6, "better": {"_count": 4}, "have": {"_count": 1}, "think": {"_count": 1}}, "Seriously": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "Very": {"_count": 5, "good": {"_count": 1}, "difficult": {"_count": 1}, "well": {"_count": 2}, "gratifying": {"_count": 1}}, "Run": {"_count": 3, "Ill": {"_count": 1}, "Black": {"_count": 1}, "": {"_count": 1}}, "Lupin": {"_count": 14, "said": {"_count": 2}, "raised": {"_count": 1}, "shouted": {"_count": 2}, "yelled": {"_count": 1}, "panted": {"_count": 1}, "shook": {"_count": 1}, "looked": {"_count": 2}, "ignored": {"_count": 1}, "was": {"_count": 1}, "kicked": {"_count": 1}, "muttered": {"_count": 1}}, "Listen": {"_count": 7, "can": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 2}, "Hermione": {"_count": 1}, "She": {"_count": 1}}, "Oddsbodikins": {"_count": 1, "said": {"_count": 1}}, "LOOK": {"_count": 1, "": {"_count": 1}}, "SCABBERS": {"_count": 1, "": {"_count": 1}}, "AND": {"_count": 2, "YOU": {"_count": 1}, "IVE": {"_count": 1}}, "Just": {"_count": 10, "leave": {"_count": 1}, "now": {"_count": 1}, "here": {"_count": 1}, "go": {"_count": 1}, "put": {"_count": 1}, "then": {"_count": 1}, "give": {"_count": 2}, "stay": {"_count": 1}, "keep": {"_count": 1}}, "Penelope": {"_count": 1, "put": {"_count": 1}}, "Okay": {"_count": 8, "okay": {"_count": 4}, "": {"_count": 1}, "then": {"_count": 1}, "Ron": {"_count": 1}, "dont": {"_count": 1}}, "Potters": {"_count": 2, "really": {"_count": 1}, "there": {"_count": 1}}, "ARE": {"_count": 1, "YOU": {"_count": 1}}, "Ravenclaw": {"_count": 1, "was": {"_count": 1}}, "Must": {"_count": 2, "find": {"_count": 1}, "be": {"_count": 1}}, "Detention": {"_count": 2, "for": {"_count": 1}, "Mr": {"_count": 1}}, "NOOOOOOOOOOOOOOOOO": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 4, "Black": {"_count": 1}, "can": {"_count": 1}, "yelled": {"_count": 1}, "grinned": {"_count": 1}}, "Slashed": {"_count": 1, "the": {"_count": 1}}, "Woke": {"_count": 2, "me": {"_count": 2}}, "Read": {"_count": 1, "em": {"_count": 1}}, "Pull": {"_count": 1, "them": {"_count": 1}}, "Cold": {"_count": 2, "with": {"_count": 1}, "as": {"_count": 1}}, "Utterly": {"_count": 2, "bewildered": {"_count": 1}, "perplexed": {"_count": 1}}, "Severus": {"_count": 4, "Ill": {"_count": 1}, "be": {"_count": 1}, "Snape": {"_count": 1}, "she": {"_count": 1}}, "Were": {"_count": 10, "due": {"_count": 1}, "nearly": {"_count": 1}, "paying": {"_count": 1}, "not": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}, "going": {"_count": 1}, "all": {"_count": 1}, "off": {"_count": 1}}, "Together": {"_count": 2, "they": {"_count": 2}}, "Seamus": {"_count": 4, "Finnigan": {"_count": 1}, "yelled": {"_count": 1}, "looked": {"_count": 1}, "snapped": {"_count": 1}}, "Bed": {"_count": 1, "": {"_count": 1}}, "Wake": {"_count": 1, "up": {"_count": 1}}, "Huh": {"_count": 1, "": {"_count": 1}}, "Sall": {"_count": 1, "dark": {"_count": 1}}, "Behind": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "Argh": {"_count": 1, "no": {"_count": 1}}, "nice": {"_count": 1, "Bludger": {"_count": 1}}, "TENZERO": {"_count": 1, "TO": {"_count": 1}}, "Angelina": {"_count": 4, "punched": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}}, "Penalty": {"_count": 2, "shot": {"_count": 1}, "to": {"_count": 1}}, "SHES": {"_count": 1, "BEATEN": {"_count": 1}}, "TWENTYZERO": {"_count": 1, "TO": {"_count": 1}}, "Lee": {"_count": 3, "Jordan": {"_count": 2}, "shouted": {"_count": 1}}, "Relieved": {"_count": 1, "Harry": {"_count": 1}}, "Montague": {"_count": 1, "a": {"_count": 1}}, "TAKE": {"_count": 1, "THAT": {"_count": 1}}, "Wont": {"_count": 1, "happen": {"_count": 1}}, "SHE": {"_count": 2, "SCORES": {"_count": 1}, "SHOOTS": {"_count": 1}}, "Go": {"_count": 12, "": {"_count": 6}, "away": {"_count": 1}, "on": {"_count": 3}, "to": {"_count": 1}, "down": {"_count": 1}}, "Sunset": {"_count": 1, "though": {"_count": 1}}, "CAT": {"_count": 1, "RAT": {"_count": 1}}, "Too": {"_count": 1, "late": {"_count": 1}}, "HE": {"_count": 2, "KILLED": {"_count": 1}, "SAID": {"_count": 1}}, "Black": {"_count": 5, "made": {"_count": 1}, "stopped": {"_count": 1}, "started": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}}, "Youre": {"_count": 12, "wrong": {"_count": 1}, "kidding": {"_count": 2}, "mad": {"_count": 1}, "history": {"_count": 1}, "not": {"_count": 2}, "getting": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}, "seventeen": {"_count": 1}, "right": {"_count": 1}}, "Running": {"_count": 1, "around": {"_count": 1}}, "Thin": {"_count": 1, "snakelike": {"_count": 1}}, "Pettigrew": {"_count": 5, "squeaked": {"_count": 2}, "shouted": {"_count": 1}, "had": {"_count": 1}, "owes": {"_count": 1}}, "Blacks": {"_count": 1, "face": {"_count": 1}}, "Precisely": {"_count": 1, "what": {"_count": 1}}, "whined": {"_count": 1, "Pettigrew": {"_count": 1}}, "THEN": {"_count": 1, "YOU": {"_count": 1}}, "One": {"_count": 4, "wrong": {"_count": 1}, "more": {"_count": 1}, "of": {"_count": 1}, "two": {"_count": 1}}, "Expecto": {"_count": 1, "patronum": {"_count": 1}}, "Peter": {"_count": 1, "Pettigrew": {"_count": 1}}, "Minister": {"_count": 1, "listen": {"_count": 1}}, "sputtered": {"_count": 1, "Madam": {"_count": 1}}, "Someones": {"_count": 2, "coming": {"_count": 1}, "gotta": {"_count": 1}}, "From": {"_count": 4, "what": {"_count": 2}, "their": {"_count": 1}, "above": {"_count": 1}}, "Nobodys": {"_count": 1, "supposed": {"_count": 1}}, "Gone": {"_count": 1, "": {"_count": 1}}, "Bless": {"_count": 1, "his": {"_count": 1}}, "Beaky": {"_count": 1, "yeh": {"_count": 1}}, "Buckbeak": {"_count": 1, "started": {"_count": 1}}, "Lupins": {"_count": 1, "going": {"_count": 1}}, "THIS": {"_count": 1, "HAS": {"_count": 1}}, "Fudge": {"_count": 7, "barked": {"_count": 1}, "was": {"_count": 2}, "gasped": {"_count": 1}, "shouted": {"_count": 1}, "passed": {"_count": 1}, "had": {"_count": 1}}, "puffed": {"_count": 1, "Fudge": {"_count": 1}}, "Dad": {"_count": 3, "can": {"_count": 1}, "help": {"_count": 1}, "said": {"_count": 1}}, "Dear": {"_count": 1, "Harry": {"_count": 1}}, "Frank": {"_count": 1, "Bryce": {"_count": 1}}, "Nobody": {"_count": 3, "forced": {"_count": 1}, "cares": {"_count": 1}, "was": {"_count": 1}}, "Outside": {"_count": 1, "in": {"_count": 1}}, "Mr": {"_count": 16, "Weasley": {"_count": 8}, "Crouch": {"_count": 4}, "Crouchs": {"_count": 1}, "Diggory": {"_count": 1}, "PotteryouhavealreadylostyourHouseten": {"_count": 1}, "Ollivander": {"_count": 1}}, "Rons": {"_count": 5, "voice": {"_count": 1}, "tiny": {"_count": 1}, "dad": {"_count": 1}, "annoyed": {"_count": 1}, "Hermiones": {"_count": 1}}, "Tall": {"_count": 1, "thin": {"_count": 1}}, "raged": {"_count": 1, "Mr": {"_count": 1}}, "Empty": {"_count": 2, "your": {"_count": 1}, "threat": {"_count": 1}}, "Two": {"_count": 3, "tall": {"_count": 1}, "masked": {"_count": 1}, "months": {"_count": 1}}, "Shouldnt": {"_count": 1, "be": {"_count": 1}}, "Parents": {"_count": 1, "having": {"_count": 1}}, "Ludo": {"_count": 2, "": {"_count": 1}, "Bagman": {"_count": 1}}, "Bagman": {"_count": 12, "called": {"_count": 2}, "informed": {"_count": 1}, "shouted": {"_count": 2}, "had": {"_count": 1}, "looked": {"_count": 1}, "was": {"_count": 3}, "yelled": {"_count": 1}, "bad": {"_count": 1}}, "Could": {"_count": 1, "we": {"_count": 1}}, "Mermish": {"_count": 1, "and": {"_count": 1}}, "Barty": {"_count": 2, "": {"_count": 1}, "whispered": {"_count": 1}}, "4": {"_count": 1, "THE": {"_count": 1}}, "Straight": {"_count": 1, "upstairs": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "Welcome": {"_count": 1, "to": {"_count": 1}}, "Next": {"_count": 1, "moment": {"_count": 1}}, "Levski": {"_count": 3, "": {"_count": 3}}, "Vulchanov": {"_count": 1, "": {"_count": 1}}, "Volkov": {"_count": 1, "": {"_count": 1}}, "aand": {"_count": 2, "Krum": {"_count": 1}, "Lynch": {"_count": 1}}, "Ryan": {"_count": 1, "": {"_count": 1}}, "Troy": {"_count": 3, "": {"_count": 3}}, "Mullet": {"_count": 1, "": {"_count": 1}}, "Moran": {"_count": 3, "": {"_count": 3}}, "Quigley": {"_count": 1, "": {"_count": 1}}, "Dimitrov": {"_count": 2, "": {"_count": 2}}, "Ivanova": {"_count": 1, "oh": {"_count": 1}}, "Charlie": {"_count": 4, "said": {"_count": 1}, "didnt": {"_count": 1}, "": {"_count": 1}, "approached": {"_count": 1}}, "echoed": {"_count": 1, "Ludo": {"_count": 1}}, "Ministry": {"_count": 1, "wizards": {"_count": 1}}, "Half": {"_count": 3, "the": {"_count": 1}, "of": {"_count": 1}, "breeds": {"_count": 1}}, "Veil": {"_count": 1, "it": {"_count": 1}}, "Bill": {"_count": 1, "Charlie": {"_count": 1}}, "Winky": {"_count": 7, "is": {"_count": 3}, "began": {"_count": 1}, "gasped": {"_count": 1}, "": {"_count": 1}, "squeaked": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Voldemorts": {"_count": 3, "": {"_count": 1}, "taken": {"_count": 1}, "voice": {"_count": 1}}, "Unconscious": {"_count": 1, "": {"_count": 1}}, "Shed": {"_count": 2, "need": {"_count": 1}, "love": {"_count": 1}}, "Amos": {"_count": 1, "Diggory": {"_count": 1}}, "repeated": {"_count": 1, "Mrs": {"_count": 1}}, "Urgent": {"_count": 1, "message": {"_count": 1}}, "First": {"_count": 2, "years": {"_count": 1}, "you": {"_count": 1}}, "Wheeeeeeeeee": {"_count": 1, "": {"_count": 1}}, "Keep": {"_count": 5, "your": {"_count": 5}}, "SLYTHERIN": {"_count": 2, "": {"_count": 2}}, "Cauldwell": {"_count": 1, "Owen": {"_count": 1}}, "Creevey": {"_count": 1, "Dennis": {"_count": 1}}, "Tiny": {"_count": 1, "Dennis": {"_count": 1}}, "Cool": {"_count": 1, "": {"_count": 1}}, "Wow": {"_count": 2, "said": {"_count": 1}, "I": {"_count": 1}}, "Dennis": {"_count": 1, "": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}, "joined": {"_count": 1, "the": {"_count": 1}}, "Quirke": {"_count": 1, "Orla": {"_count": 1}}, "Slave": {"_count": 1, "labor": {"_count": 1}}, "Chocolate": {"_count": 1, "gateau": {"_count": 1}}, "Chop": {"_count": 1, "chop": {"_count": 1}}, "Thought": {"_count": 1, "wed": {"_count": 1}}, "Oooh": {"_count": 2, "which": {"_count": 1}, "theres": {"_count": 1}}, "FURTHER": {"_count": 1, "MISTAKES": {"_count": 1}}, "Several": {"_count": 1, "people": {"_count": 1}}, "Moody": {"_count": 4, "shouted": {"_count": 2}, "growled": {"_count": 1}, "raised": {"_count": 1}}, "Or": {"_count": 4, "speak": {"_count": 1}, "are": {"_count": 1}, "am": {"_count": 1}, "if": {"_count": 1}}, "Our": {"_count": 5, "shortterm": {"_count": 1}, "youngest": {"_count": 1}, "intelligence": {"_count": 1}, "students": {"_count": 1}, "cousin": {"_count": 1}}, "Theyll": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "Miss": {"_count": 3, "Granger": {"_count": 2}, "will": {"_count": 1}}, "Students": {"_count": 3, "will": {"_count": 1}, "exchanged": {"_count": 1}, "in": {"_count": 1}}, "Viktor": {"_count": 1, "Kruml": {"_count": 1}}, "Thanks": {"_count": 3, "Hermione": {"_count": 1}, "to": {"_count": 1}, "Dedalus": {"_count": 1}}, "Without": {"_count": 1, "so": {"_count": 1}}, "Up": {"_count": 1, "here": {"_count": 1}}, "Gentlemen": {"_count": 1, "": {"_count": 1}}, "Krums": {"_count": 1, "thick": {"_count": 1}}, "Somewhere": {"_count": 1, "under": {"_count": 1}}, "exploded": {"_count": 1, "Karkaroff": {"_count": 1}}, "Ze": {"_count": 1, "honor": {"_count": 1}}, "Maybe": {"_count": 10, "someones": {"_count": 1}, "she": {"_count": 2}, "theyve": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}, "theyll": {"_count": 1}, "once": {"_count": 1}}, "Jealous": {"_count": 1, "": {"_count": 1}}, "Champion": {"_count": 1, "number": {"_count": 1}}, "Isn": {"_count": 2, "it": {"_count": 1}, "tha": {"_count": 1}}, "Whos": {"_count": 2, "there": {"_count": 1}, "Cedric": {"_count": 1}}, "Goodo": {"_count": 1, "": {"_count": 1}}, "Fleur": {"_count": 2, "was": {"_count": 2}}, "they": {"_count": 1, "could": {"_count": 1}}, "Careful": {"_count": 1, "now": {"_count": 1}}, "Applause": {"_count": 1, "shattered": {"_count": 1}}, "Theyre": {"_count": 7, "dead": {"_count": 1}, "not": {"_count": 1}, "fairly": {"_count": 1}, "staring": {"_count": 1}, "watching": {"_count": 1}, "Snatchers": {"_count": 1}, "supposed": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "Shell": {"_count": 1, "twist": {"_count": 1}}, "Hogwarts": {"_count": 1, "So": {"_count": 1}}, "Ashamed": {"_count": 1, "": {"_count": 1}}, "Will": {"_count": 1, "you": {"_count": 1}}, "Like": {"_count": 2, "what": {"_count": 1}, "my": {"_count": 1}}, "Leave": {"_count": 2, "him": {"_count": 2}}, "Her": {"_count": 4, "nose": {"_count": 1}, "curlyhaired": {"_count": 1}, "voice": {"_count": 1}, "composure": {"_count": 1}}, "Said": {"_count": 1, "shes": {"_count": 1}}, "Pigwidgeons": {"_count": 1, "back": {"_count": 1}}, "Isnt": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "hooted": {"_count": 1}}, "Against": {"_count": 1, "Hogwarts": {"_count": 1}}, "People": {"_count": 2, "were": {"_count": 2}}, "To": {"_count": 6, "Harrys": {"_count": 1}, "our": {"_count": 1}, "cap": {"_count": 1}, "generosity": {"_count": 1}, "ten": {"_count": 1}, "me": {"_count": 1}}, "Karkaroffs": {"_count": 1, "voice": {"_count": 1}}, "as": {"_count": 4, "a": {"_count": 1}, "they": {"_count": 1}, "though": {"_count": 1}, "if": {"_count": 1}}, "Anuzzer": {"_count": 1, "what": {"_count": 1}}, "Alfgiant": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "Crabbe": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "Everything": {"_count": 1, "going": {"_count": 1}}, "Silly": {"_count": 1, "little": {"_count": 1}}, "Breaking": {"_count": 1, "into": {"_count": 1}}, "School": {"_count": 1, "champion": {"_count": 1}}, "Somebody": {"_count": 1, "has": {"_count": 1}}, "Prowl": {"_count": 1, "away": {"_count": 1}}, "Mine": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 5, "is": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "Meaning": {"_count": 2, "what": {"_count": 1}, "Im": {"_count": 1}}, "Interesting": {"_count": 1, "idea": {"_count": 1}}, "Chos": {"_count": 1, "head": {"_count": 1}}, "Gabrielle": {"_count": 1, "Is": {"_count": 1}}, "Pansy": {"_count": 1, "said": {"_count": 1}}, "Shes": {"_count": 6, "made": {"_count": 1}, "unhappy": {"_count": 1}, "still": {"_count": 1}, "only": {"_count": 2}, "gorn": {"_count": 1}}, "Anything": {"_count": 1, "that": {"_count": 1}}, "whimpered": {"_count": 2, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "scoffed": {"_count": 1, "Hermione": {"_count": 1}}, "Hate": {"_count": 1, "mail": {"_count": 1}}, "Krum": {"_count": 1, "muttered": {"_count": 1}}, "Lie": {"_count": 2, "still": {"_count": 1}, "back": {"_count": 1}}, "Karkaroff": {"_count": 1, "spat": {"_count": 1}}, "Coulda": {"_count": 1, "jinxed": {"_count": 1}}, "Tryin": {"_count": 1, "ter": {"_count": 1}}, "then": {"_count": 2, "joined": {"_count": 1}, "a": {"_count": 1}}, "Once": {"_count": 2, "youre": {"_count": 1}, "McLaggen": {"_count": 1}}, "Cockroach": {"_count": 1, "Cluster": {"_count": 1}}, "Mulciber": {"_count": 2, "he": {"_count": 1}, "What": {"_count": 1}}, "Rookwood": {"_count": 1, "who": {"_count": 1}}, "Old": {"_count": 1, "Rookwood": {"_count": 1}}, "Mother": {"_count": 2, "no": {"_count": 1}, "I": {"_count": 1}}, "Throw": {"_count": 1, "us": {"_count": 1}}, "Crouch": {"_count": 1, "roared": {"_count": 1}}, "Father": {"_count": 3, "": {"_count": 1}, "I": {"_count": 1}, "please": {"_count": 1}}, "Potteri": {"_count": 1, "Hows": {"_count": 1}}, "Let": {"_count": 6, "me": {"_count": 3}, "your": {"_count": 1}, "nothing": {"_count": 1}, "our": {"_count": 1}}, "Tied": {"_count": 1, "in": {"_count": 1}}, "More": {"_count": 2, "applause": {"_count": 1}, "of": {"_count": 1}}, "Riddikulusl": {"_count": 1, "There": {"_count": 1}}, "Ers": {"_count": 1, "a": {"_count": 1}}, "Cedric": {"_count": 2, "looked": {"_count": 1}, "Diggory": {"_count": 1}}, "Impedimenta": {"_count": 1, "": {"_count": 1}}, "Stupefy": {"_count": 1, "": {"_count": 1}}, "Forgive": {"_count": 2, "us": {"_count": 1}, "me": {"_count": 1}}, "ImperioV": {"_count": 1, "And": {"_count": 1}}, "HarryV": {"_count": 2, "He": {"_count": 1}, "Im": {"_count": 1}}, "Dead": {"_count": 1, "": {"_count": 1}}, "Mad": {"_count": 2, "am": {"_count": 1}, "eh": {"_count": 1}}, "Good": {"_count": 11, "heavens": {"_count": 1}, "afternoon": {"_count": 1}, "one": {"_count": 2}, "likeness": {"_count": 1}, "idea": {"_count": 1}, "night": {"_count": 1}, "evening": {"_count": 2}, "lord": {"_count": 1}, "": {"_count": 1}}, "wailed": {"_count": 6, "Winky": {"_count": 1}, "Tonks": {"_count": 1}, "Ginny": {"_count": 1}, "Hermione": {"_count": 3}}, "Headmaster": {"_count": 1, "said": {"_count": 1}}, "blustered": {"_count": 1, "Fudge": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "Lucius": {"_count": 3, "Malfoy": {"_count": 2}, "froze": {"_count": 1}}, "Avery": {"_count": 1, "Nott": {"_count": 1}}, "These": {"_count": 4, "deaths": {"_count": 1}, "words": {"_count": 2}, "people": {"_count": 1}}, "Insane": {"_count": 1, "whispered": {"_count": 1}}, "Mudbloods": {"_count": 1, "and": {"_count": 1}}, "Nope": {"_count": 1, "said": {"_count": 1}}, "Anyway": {"_count": 5, "its": {"_count": 1}, "thats": {"_count": 1}, "they": {"_count": 1}, "explain": {"_count": 1}, "hes": {"_count": 1}}, "Mary": {"_count": 1, "Dorkins": {"_count": 1}}, "Again": {"_count": 1, "": {"_count": 1}}, "Help": {"_count": 3, "me": {"_count": 2}, "": {"_count": 1}}, "Boo": {"_count": 1, "hoo": {"_count": 1}}, "\u2018Come": {"_count": 1, "and": {"_count": 1}}, "Mum": {"_count": 3, "come": {"_count": 1}, "told": {"_count": 1}, "hates": {"_count": 1}}, "YOURE": {"_count": 1, "RUNNING": {"_count": 1}}, "WHATEVER": {"_count": 1, "YOU": {"_count": 1}}, "Wand": {"_count": 1, "": {"_count": 1}}, "Dementors": {"_count": 3, "": {"_count": 2}, "are": {"_count": 1}}, "Diddy": {"_count": 2, "whats": {"_count": 1}, "darling": {"_count": 1}}, "Phone": {"_count": 1, "the": {"_count": 1}}, "FINE": {"_count": 1, "": {"_count": 1}}, "Owls": {"_count": 1, "treating": {"_count": 1}}, "Itll": {"_count": 1, "happen": {"_count": 1}}, "Hedwigs": {"_count": 1, "large": {"_count": 1}}, "Time": {"_count": 1, "to": {"_count": 1}}, "YOUVE": {"_count": 1, "STILL": {"_count": 1}}, "ME": {"_count": 1, "IVE": {"_count": 1}}, "Scum": {"_count": 1, "": {"_count": 1}}, "Byproducts": {"_count": 1, "of": {"_count": 1}}, "interrupted": {"_count": 3, "George": {"_count": 1}, "Parvati": {"_count": 1}, "Bane": {"_count": 1}}, "Personally": {"_count": 1, "said": {"_count": 1}}, "Perkins": {"_count": 1, "flattened": {"_count": 1}}, "Those": {"_count": 1, "who": {"_count": 1}}, "Breathing": {"_count": 2, "very": {"_count": 1}, "hard": {"_count": 1}}, "Beaming": {"_count": 1, "Mr": {"_count": 1}}, "gulped": {"_count": 1, "Mrs": {"_count": 1}}, "Harnessed": {"_count": 1, "to": {"_count": 1}}, "Nice": {"_count": 2, "cardigan": {"_count": 1}, "to": {"_count": 1}}, "Midgets": {"_count": 1, "": {"_count": 1}}, "someone": {"_count": 2, "panted": {"_count": 1}, "was": {"_count": 1}}, "Pocket": {"_count": 1, "money": {"_count": 1}}, "groaned": {"_count": 2, "Ron": {"_count": 1}, "Hermione": {"_count": 1}}, "sang": {"_count": 2, "Professor": {"_count": 1}, "Mrs": {"_count": 1}}, "Rain": {"_count": 1, "pounded": {"_count": 1}}, "Rubbish": {"_count": 1, "said": {"_count": 1}}, "Luna": {"_count": 5, "said": {"_count": 2}, "can": {"_count": 1}, "whispered": {"_count": 2}}, "Itd": {"_count": 1, "be": {"_count": 1}}, "Katies": {"_count": 1, "nose": {"_count": 1}}, "Five": {"_count": 1, "points": {"_count": 1}}, "Another": {"_count": 5, "five": {"_count": 1}, "one": {"_count": 1}, "year": {"_count": 1}, "redheaded": {"_count": 1}, "goblin": {"_count": 1}}, "Wha": {"_count": 1, "": {"_count": 1}}, "Excellent": {"_count": 1, "": {"_count": 1}}, "Cho": {"_count": 2, "told": {"_count": 1}, "": {"_count": 1}}, "GEORGE": {"_count": 1, "": {"_count": 1}}, "1VO": {"_count": 1, "": {"_count": 1}}, "Explain": {"_count": 1, "yourselves": {"_count": 1}}, "exclaimed": {"_count": 1, "Professor": {"_count": 1}}, "Yehre": {"_count": 1, "not": {"_count": 1}}, "Didn": {"_count": 1, "matter": {"_count": 1}}, "Don": {"_count": 1, "worry": {"_count": 1}}, "stormed": {"_count": 1, "Hermione": {"_count": 1}}, "Umbridge": {"_count": 4, "said": {"_count": 1}, "came": {"_count": 1}, "hates": {"_count": 1}, "ignored": {"_count": 1}}, "Harryl": {"_count": 1, "He": {"_count": 1}}, "Phineas": {"_count": 1, "": {"_count": 1}}, "PHINEAS": {"_count": 1, "": {"_count": 1}}, "Shall": {"_count": 1, "I": {"_count": 1}}, "Easy": {"_count": 1, "for": {"_count": 1}}, "KREACHER": {"_count": 1, "": {"_count": 1}}, "Young": {"_count": 1, "people": {"_count": 1}}, "Their": {"_count": 1, "exDefense": {"_count": 1}}, "Gilderoy": {"_count": 1, "told": {"_count": 1}}, "Whove": {"_count": 1, "you": {"_count": 1}}, "OCCLUMENCY": {"_count": 1, "Kreacher": {"_count": 1}}, "Manners": {"_count": 1, "Potter": {"_count": 1}}, "Master": {"_count": 1, "yourself": {"_count": 1}}, "Legilimens": {"_count": 1, "He": {"_count": 1}}, "Surely": {"_count": 2, "you": {"_count": 2}}, "Pperhaps": {"_count": 1, "it": {"_count": 1}}, "Meanwhile": {"_count": 1, "Professor": {"_count": 1}}, "HHogwarts": {"_count": 1, "is": {"_count": 1}}, "Lavender": {"_count": 1, "assured": {"_count": 1}}, "Comprehension": {"_count": 1, "dawned": {"_count": 1}}, "Blatant": {"_count": 1, "corruption": {"_count": 1}}, "Be": {"_count": 3, "quiet": {"_count": 3}}, "Enough": {"_count": 1, "of": {"_count": 1}}, "Shacklebolt": {"_count": 1, "": {"_count": 1}}, "Wise": {"_count": 1, "move": {"_count": 1}}, "wheezed": {"_count": 3, "Filch": {"_count": 1}, "Doge": {"_count": 2}}, "Please": {"_count": 7, "remain": {"_count": 1}, "let": {"_count": 1}, "": {"_count": 3}, "Ill": {"_count": 1}, "Ron": {"_count": 1}}, "Acciol": {"_count": 1, "More": {"_count": 1}}, "James": {"_count": 8, "and": {"_count": 1}, "sighed": {"_count": 1}, "roared": {"_count": 1}, "shouted": {"_count": 1}, "is": {"_count": 1}, "give": {"_count": 1}, "had": {"_count": 1}, "added": {"_count": 1}}, "Certainly": {"_count": 2, "said": {"_count": 1}, "if": {"_count": 1}}, "Lily": {"_count": 2, "shouted": {"_count": 1}, "blinked": {"_count": 1}}, "Messing": {"_count": 1, "up": {"_count": 1}}, "By": {"_count": 4, "the": {"_count": 2}, "waiting": {"_count": 1}, "allowing": {"_count": 1}}, "Special": {"_count": 1, "discounts": {"_count": 1}}, "Harmless": {"_count": 1, "": {"_count": 1}}, "Grawps": {"_count": 1, "hand": {"_count": 1}}, "YEH": {"_count": 1, "DON": {"_count": 1}}, "Magorian": {"_count": 1, "called": {"_count": 1}}, "Always": {"_count": 5, "assuming": {"_count": 1}, "echoed": {"_count": 1}, "he": {"_count": 1}, "liked": {"_count": 1}, "the": {"_count": 1}}, "HERMIONE": {"_count": 4, "": {"_count": 4}}, "WE": {"_count": 2, "WON": {"_count": 1}, "NEED": {"_count": 1}}, "Alone": {"_count": 1, "I": {"_count": 1}}, "Outrageous": {"_count": 1, "behavior": {"_count": 1}}, "COWARDS": {"_count": 1, "": {"_count": 1}}, "HAVE": {"_count": 1, "SOME": {"_count": 1}}, "Cowardice": {"_count": 1, "thats": {"_count": 1}}, "WELL": {"_count": 1, "I": {"_count": 1}}, "Really": {"_count": 4, "": {"_count": 2}, "Muriel": {"_count": 1}, "gives": {"_count": 1}}, "Ththat": {"_count": 1, "would": {"_count": 1}}, "Uncontrolled": {"_count": 1, "animals": {"_count": 1}}, "HERMY": {"_count": 1, "": {"_count": 1}}, "GRAWP": {"_count": 1, "WANT": {"_count": 1}}, "mimicked": {"_count": 1, "the": {"_count": 1}}, "Bellatrix": {"_count": 3, "shrieked": {"_count": 1}, "raised": {"_count": 1}, "hit": {"_count": 1}}, "bawled": {"_count": 2, "Malfoy": {"_count": 1}, "Bellatrix": {"_count": 1}}, "croaked": {"_count": 3, "Harry": {"_count": 2}, "the": {"_count": 1}}, "ACCIO": {"_count": 1, "PROPHECY": {"_count": 1}}, "gibbered": {"_count": 1, "Fudge": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "great": {"_count": 1, "heavens": {"_count": 1}}, "Cornelius": {"_count": 1, "I": {"_count": 1}}, "Williamson": {"_count": 1, "": {"_count": 1}}, "Kreacher": {"_count": 3, "lied": {"_count": 1}, "will": {"_count": 1}, "shook": {"_count": 1}}, "NICK": {"_count": 2, "": {"_count": 2}}, "declared": {"_count": 1, "the": {"_count": 1}}, "Scrimgeour": {"_count": 1, "turned": {"_count": 1}}, "Narcissa": {"_count": 4, "breathed": {"_count": 1}, "let": {"_count": 1}, "gave": {"_count": 1}, "Malfoy": {"_count": 1}}, "\u2018Present": {"_count": 1, "company": {"_count": 1}}, "Consider": {"_count": 1, "Bellatrix": {"_count": 1}}, "Shame": {"_count": 2, "he": {"_count": 1}, "yawned": {"_count": 1}}, "Gracious": {"_count": 1, "Albus": {"_count": 1}}, "Arthur": {"_count": 2, "really": {"_count": 1}, "told": {"_count": 1}}, "Eet": {"_count": 1, "was": {"_count": 1}}, "Theyve": {"_count": 2, "known": {"_count": 1}, "kidnapped": {"_count": 1}}, "Today": {"_count": 1, "": {"_count": 1}}, "grinned": {"_count": 1, "Ron": {"_count": 1}}, "\u2018Patented": {"_count": 1, "Daydream": {"_count": 1}}, "Shh": {"_count": 1, "": {"_count": 1}}, "Fantastic": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 3, "finished": {"_count": 1}, "moved": {"_count": 1}, "was": {"_count": 1}}, "chuckled": {"_count": 1, "Slughorn": {"_count": 1}}, "Zabini": {"_count": 1, "merely": {"_count": 1}}, "Raising": {"_count": 1, "an": {"_count": 1}}, "chortled": {"_count": 1, "Ron": {"_count": 1}}, "fumed": {"_count": 1, "Harry": {"_count": 1}}, "\u2018One": {"_count": 1, "of": {"_count": 1}}, "Here": {"_count": 3, "you": {"_count": 1}, "hes": {"_count": 1}, "And": {"_count": 1}}, "Hope": {"_count": 1, "it": {"_count": 1}}, "Merope": {"_count": 1, "stumbled": {"_count": 1}}, "Summons": {"_count": 1, "": {"_count": 1}}, "Know": {"_count": 1, "how": {"_count": 1}}, "Generations": {"_count": 1, "of": {"_count": 1}}, "rang": {"_count": 1, "out": {"_count": 1}}, "Open": {"_count": 1, "up": {"_count": 1}}, "\u2018Tm": {"_count": 1, "sorry": {"_count": 1}}, "Momentarily": {"_count": 1, "stymied": {"_count": 1}}, "Dangling": {"_count": 1, "people": {"_count": 1}}, "Glad": {"_count": 1, "that": {"_count": 1}}, "Nicked": {"_count": 1, "it": {"_count": 1}}, "Somethings": {"_count": 1, "happened": {"_count": 1}}, "Leanne": {"_count": 1, "shook": {"_count": 1}}, "Both": {"_count": 1, "Harry": {"_count": 1}}, "Hark": {"_count": 1, "whos": {"_count": 1}}, "Smith": {"_count": 1, "really": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "Wondered": {"_count": 1, "where": {"_count": 1}}, "Befouled": {"_count": 1, "": {"_count": 1}}, "Potty": {"_count": 1, "luuuuurves": {"_count": 1}}, "HermioneV": {"_count": 1, "Harry": {"_count": 1}}, "hiccuped": {"_count": 1, "Slughorn": {"_count": 1}}, "Some": {"_count": 1, "credit": {"_count": 1}}, "Trapped": {"_count": 1, "with": {"_count": 1}}, "Report": {"_count": 1, "me": {"_count": 1}}, "jeered": {"_count": 1, "Malfoy": {"_count": 1}}, "Celestina": {"_count": 1, "ended": {"_count": 1}}, "Arent": {"_count": 1, "they": {"_count": 1}}, "fluttered": {"_count": 1, "Mrs": {"_count": 1}}, "Hmm": {"_count": 1, "": {"_count": 1}}, "Each": {"_count": 1, "of": {"_count": 1}}, "Quickly": {"_count": 1, "now": {"_count": 1}}, "Golpalotts": {"_count": 1, "Third": {"_count": 1}}, "Annoyed": {"_count": 1, "Harry": {"_count": 1}}, "Inside": {"_count": 1, "were": {"_count": 1}}, "Blaise": {"_count": 1, "": {"_count": 1}}, "Step": {"_count": 1, "one": {"_count": 1}}, "McLaggen": {"_count": 2, "said": {"_count": 1}, "shouted": {"_count": 1}}, "giving": {"_count": 1, "him": {"_count": 1}}, "pouted": {"_count": 1, "Hepzibah": {"_count": 1}}, "Tonks": {"_count": 3, "": {"_count": 1}, "cried": {"_count": 1}, "said": {"_count": 1}}, "Fiftyseventh": {"_count": 1, "time": {"_count": 1}}, "Though": {"_count": 1, "your": {"_count": 1}}, "yelped": {"_count": 2, "Slughorn": {"_count": 1}, "one": {"_count": 1}}, "Because": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "Imagine": {"_count": 1, "please": {"_count": 1}}, "Thatll": {"_count": 1, "make": {"_count": 1}}, "MURDER": {"_count": 2, "IN": {"_count": 1}, "": {"_count": 1}}, "Four": {"_count": 1, "hundred": {"_count": 1}}, "Dumbledores": {"_count": 1, "expression": {"_count": 1}}, "protested": {"_count": 2, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "Make": {"_count": 2, "it": {"_count": 1}, "him": {"_count": 1}}, "Drink": {"_count": 1, "this": {"_count": 1}}, "Ingenious": {"_count": 1, "said": {"_count": 1}}, "sneered": {"_count": 2, "Malfoy": {"_count": 1}, "Snape": {"_count": 1}}, "Gulping": {"_count": 1, "Madam": {"_count": 1}}, "ejaculated": {"_count": 1, "Slughorn": {"_count": 1}}, "laughs": {"_count": 1, "Skeeter": {"_count": 1}}, "Skeeter": {"_count": 1, "refuses": {"_count": 1}}, "Sixteen": {"_count": 1, "years": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "added": {"_count": 1, "Uncle": {"_count": 1}}, "House": {"_count": 1, "prices": {"_count": 1}}, "Dudleys": {"_count": 1, "hands": {"_count": 1}}, "spluttered": {"_count": 1, "Uncle": {"_count": 1}}, "Change": {"_count": 1, "of": {"_count": 1}}, "because": {"_count": 1, "its": {"_count": 1}}, "REPAROl": {"_count": 1, "There": {"_count": 1}}, "how": {"_count": 1, "had": {"_count": 1}}, "Hold": {"_count": 2, "on": {"_count": 1}, "him": {"_count": 1}}, "Crashed": {"_count": 1, "in": {"_count": 1}}, "Knocking": {"_count": 1, "over": {"_count": 1}}, "Le": {"_count": 1, "go": {"_count": 1}}, "Stans": {"_count": 1, "not": {"_count": 1}}, "Expelliarmus": {"_count": 2, "saved": {"_count": 1}, "is": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "6": {"_count": 1, "THE": {"_count": 1}}, "Monsieur": {"_count": 1, "Delacour": {"_count": 1}}, "trilled": {"_count": 1, "Mrs": {"_count": 1}}, "s": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "Actually": {"_count": 1, "Ive": {"_count": 1}}, "Although": {"_count": 1, "they": {"_count": 1}}, "Snothin": {"_count": 1, "said": {"_count": 1}}, "Dyou": {"_count": 3, "want": {"_count": 1}, "think": {"_count": 1}, "know": {"_count": 1}}, "Gnome": {"_count": 1, "saliva": {"_count": 1}}, "Nowhere": {"_count": 1, "near": {"_count": 1}}, "Hello": {"_count": 2, "Muriel": {"_count": 1}, "you": {"_count": 1}}, "Doge": {"_count": 3, "looked": {"_count": 2}, "is": {"_count": 1}}, "Illinformed": {"_count": 1, "sniping": {"_count": 1}}, "Muriell": {"_count": 1, "exclaimed": {"_count": 1}}, "Untrue": {"_count": 1, "": {"_count": 1}}, "Kendra": {"_count": 1, "was": {"_count": 1}}, "Bathilda": {"_count": 1, "would": {"_count": 1}}, "Diffindol": {"_count": 1, "The": {"_count": 1}}, "Gingerly": {"_count": 1, "Harry": {"_count": 1}}, "Otherwise": {"_count": 1, "Voldemort": {"_count": 1}}, "Tell": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "RON": {"_count": 1, "": {"_count": 1}}, "Unable": {"_count": 1, "to": {"_count": 1}}, "Remus": {"_count": 1, "": {"_count": 1}}, "\u2018Merlins": {"_count": 1, "pants": {"_count": 1}}, "sighed": {"_count": 1, "Hermione": {"_count": 1}}, "Abandoning": {"_count": 1, "the": {"_count": 1}}, "Clearly": {"_count": 1, "frightened": {"_count": 1}}, "Yaxley": {"_count": 2, "ignored": {"_count": 1}, "had": {"_count": 1}}, "Tut": {"_count": 1, "tut": {"_count": 1}}, "SEAL": {"_count": 1, "IT": {"_count": 1}}, "YOUKNOWWHO": {"_count": 1, "then": {"_count": 1}}, "shot": {"_count": 1, "back": {"_count": 1}}, "Remove": {"_count": 2, "this": {"_count": 1}, "it": {"_count": 1}}, "Slightly": {"_count": 1, "crestfallen": {"_count": 1}}, "Goblinmade": {"_count": 1, "blades": {"_count": 1}}, "Disapparated": {"_count": 1, "": {"_count": 1}}, "Long": {"_count": 2, "live": {"_count": 1}, "since": {"_count": 1}}, "RReparo": {"_count": 1, "": {"_count": 1}}, "Ritas": {"_count": 1, "book": {"_count": 1}}, "Risk": {"_count": 1, "your": {"_count": 1}}, "Weeks": {"_count": 1, "and": {"_count": 1}}, "Bolstered": {"_count": 1, "by": {"_count": 1}}, "Using": {"_count": 1, "his": {"_count": 1}}, "Many": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "Homenum": {"_count": 1, "revelio": {"_count": 1}}, "Cave": {"_count": 1, "Inimicum": {"_count": 1}}, "Serves": {"_count": 1, "him": {"_count": 1}}, "Marvolo": {"_count": 1, "Gaunt": {"_count": 1}}, "Gaunt": {"_count": 1, "said": {"_count": 1}}, "Ignotus": {"_count": 1, "Peverell": {"_count": 1}}, "Nearly": {"_count": 1, "all": {"_count": 1}}, "Roused": {"_count": 1, "for": {"_count": 1}}, "burst": {"_count": 2, "out": {"_count": 2}}, "muttered": {"_count": 2, "Ron": {"_count": 1}, "a": {"_count": 1}}, "demorts": {"_count": 1, "after": {"_count": 1}}, "MALFOY": {"_count": 1, "MANOR": {"_count": 1}}, "rasped": {"_count": 2, "Greyback": {"_count": 2}}, "Greyback": {"_count": 2, "roared": {"_count": 1}, "seized": {"_count": 1}}, "Ere": {"_count": 1, "maam": {"_count": 1}}, "laughed": {"_count": 1, "Bellatrix": {"_count": 1}}, "CRUCIO": {"_count": 1, "Hermione": {"_count": 1}}, "Footsteps": {"_count": 1, "crossed": {"_count": 1}}, "Panting": {"_count": 1, "Harry": {"_count": 1}}, "Wizards": {"_count": 1, "refuse": {"_count": 1}}, "Gringotts": {"_count": 1, "falls": {"_count": 1}}, "answered": {"_count": 1, "them": {"_count": 1}}, "Oo": {"_count": 1, "does": {"_count": 1}}, "Congratulations": {"_count": 1, "": {"_count": 1}}, "Imperiol": {"_count": 1, "Harry": {"_count": 1}}, "Lumosl": {"_count": 1, "Harry": {"_count": 1}}, "Thieves": {"_count": 2, "": {"_count": 2}}, "murmured": {"_count": 1, "Voldemort": {"_count": 1}}, "Stag": {"_count": 1, "": {"_count": 1}}, "Brains": {"_count": 1, "like": {"_count": 1}}, "Save": {"_count": 2, "yourself": {"_count": 1}, "your": {"_count": 1}}, "Aberforth": {"_count": 2, "spat": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Kept": {"_count": 1, "telling": {"_count": 1}}, "Hermionel": {"_count": 1, "He": {"_count": 1}}, "Nevilles": {"_count": 1, "the": {"_count": 1}}, "Lunas": {"_count": 1, "feet": {"_count": 1}}, "Amyous": {"_count": 1, "bellowed": {"_count": 1}}, "Garn": {"_count": 1, "": {"_count": 1}}, "\u2018Got": {"_count": 1, "Potter": {"_count": 1}}, "Beneath": {"_count": 1, "the": {"_count": 1}}, "Flitwicks": {"_count": 1, "spell": {"_count": 1}}, "COWARD": {"_count": 1, "": {"_count": 1}}, "Find": {"_count": 1, "Peeves": {"_count": 1}}, "PPeeves": {"_count": 1, "": {"_count": 1}}, "Clattering": {"_count": 1, "and": {"_count": 1}}, "Ginnys": {"_count": 1, "hair": {"_count": 1}}, "While": {"_count": 1, "the": {"_count": 1}}, "Beyond": {"_count": 1, "Hagrid": {"_count": 1}}, "Cruciol": {"_count": 1, "Harry": {"_count": 1}}, "Avada": {"_count": 1, "Kedavral": {"_count": 1}}, "Pushing": {"_count": 1, "Hermione": {"_count": 1}}, "Draco": {"_count": 1, "was": {"_count": 1}}, "Somehow": {"_count": 1, "he": {"_count": 1}}, "panted": {"_count": 1, "Hermione": {"_count": 1}}, "Petunia": {"_count": 1, "stopped": {"_count": 1}}, "a": {"_count": 1, "voice": {"_count": 1}}, "Swear": {"_count": 1, "it": {"_count": 1}}, "Lots": {"_count": 1, "of": {"_count": 1}}, "Real": {"_count": 1, "and": {"_count": 1}}, "Was": {"_count": 1, "I": {"_count": 1}}, "True": {"_count": 1, "true": {"_count": 1}}, "Watch": {"_count": 1, "": {"_count": 1}}, "CrucioV": {"_count": 1, "Harry": {"_count": 1}}, "Hagrids": {"_count": 1, "unexpected": {"_count": 1}}, "iVo": {"_count": 1, "": {"_count": 1}}, "Set": {"_count": 1, "him": {"_count": 1}}, "Fight": {"_count": 4, "": {"_count": 2}, "for": {"_count": 1}, "the": {"_count": 1}}, "Hundreds": {"_count": 1, "of": {"_count": 1}}, "were": {"_count": 1, "stifled": {"_count": 1}}, "Holding": {"_count": 1, "it": {"_count": 1}}, "Teddy": {"_count": 1, "Lupin": {"_count": 1}}}, "supposed": {"_count": 334, "this": {"_count": 2, "was": {"_count": 2}}, "that": {"_count": 8, "the": {"_count": 1}, "meant": {"_count": 1}, "Sirius": {"_count": 1}, "as": {"_count": 1}, "an": {"_count": 1}, "he": {"_count": 1}, "Privet": {"_count": 1}, "she": {"_count": 1}}, "was": {"_count": 3, "the": {"_count": 1}, "Gilderoy": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 291, "be": {"_count": 138}, "do": {"_count": 14}, "keep": {"_count": 1}, "know": {"_count": 6}, "use": {"_count": 3}, "agree": {"_count": 1}, "mean": {"_count": 10}, "add": {"_count": 1}, "ask": {"_count": 1}, "light": {"_count": 1}, "go": {"_count": 6}, "get": {"_count": 7}, "stay": {"_count": 1}, "drain": {"_count": 1}, "teach": {"_count": 2}, "leave": {"_count": 3}, "take": {"_count": 3}, "breathe": {"_count": 2}, "change": {"_count": 1}, "listen": {"_count": 1}, "have": {"_count": 14}, "look": {"_count": 3}, "say": {"_count": 3}, "see": {"_count": 2}, "show": {"_count": 4}, "defend": {"_count": 1}, "read": {"_count": 1}, "Well": {"_count": 1}, "fix": {"_count": 1}, "put": {"_count": 1}, "work": {"_count": 5}, "concentrate": {"_count": 1}, "dance": {"_count": 1}, "come": {"_count": 3}, "help": {"_count": 2}, "cast": {"_count": 1}, "endure": {"_count": 1}, "refuse": {"_count": 1}, "survive": {"_count": 2}, "patrol": {"_count": 1}, "abuse": {"_count": 1}, "supervise": {"_count": 1}, "tell": {"_count": 2}, "bring": {"_count": 2}, "feel": {"_count": 1}, "protect": {"_count": 1}, "talk": {"_count": 2}, "give": {"_count": 3}, "believe": {"_count": 1}, "guard": {"_count": 1}, "deliver": {"_count": 1}, "indicate": {"_count": 1}, "smell": {"_count": 1}, "puncture": {"_count": 1}, "": {"_count": 3}, "possess": {"_count": 1}, "remain": {"_count": 1}, "find": {"_count": 5}, "wait": {"_count": 1}, "sit": {"_count": 1}, "let": {"_count": 1}, "open": {"_count": 1}, "meet": {"_count": 1}, "make": {"_count": 1}, "kill": {"_count": 1}, "finish": {"_count": 1}, "refer": {"_count": 1}, "practice": {"_count": 1}}, "ter": {"_count": 2, "do": {"_count": 1}, "say": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 8, "hadnt": {"_count": 1}, "bit": {"_count": 1}, "must": {"_count": 1}, "should": {"_count": 1}, "would": {"_count": 2}, "had": {"_count": 1}, "ought": {"_count": 1}}, "she": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 1}, "too": {"_count": 1}}, "Moody": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "judges": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "Charlie": {"_count": 1, "had": {"_count": 1}}, "Harry": {"_count": 1, "KrumHermione": {"_count": 1}}, "had": {"_count": 1, "something": {"_count": 1}}, "there": {"_count": 1, "must": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "achievements": {"_count": 1, "": {"_count": 1}}, "hatred": {"_count": 1, "of": {"_count": 1}}, "great": {"_count": 1, "love": {"_count": 1}}}, "this": {"_count": 2733, "was": {"_count": 105, "some": {"_count": 1}, "probably": {"_count": 1}, "the": {"_count": 11}, "very": {"_count": 1}, "going": {"_count": 2}, "as": {"_count": 1}, "what": {"_count": 3}, "an": {"_count": 2}, "strangely": {"_count": 1}, "all": {"_count": 2}, "not": {"_count": 7}, "easy": {"_count": 1}, "wonderful": {"_count": 1}, "his": {"_count": 3}, "a": {"_count": 20}, "too": {"_count": 1}, "their": {"_count": 1}, "and": {"_count": 1}, "proclaimed": {"_count": 1}, "absurd": {"_count": 1}, "obvious": {"_count": 1}, "from": {"_count": 1}, "something": {"_count": 1}, "no": {"_count": 2}, "good": {"_count": 1}, "paradise": {"_count": 1}, "years": {"_count": 1}, "difficult": {"_count": 1}, "coming": {"_count": 2}, "costing": {"_count": 1}, "real": {"_count": 1}, "about": {"_count": 1}, "taken": {"_count": 1}, "he": {"_count": 1}, "between": {"_count": 1}, "because": {"_count": 1}, "happening": {"_count": 1}, "impossible": {"_count": 1}, "even": {"_count": 1}, "how": {"_count": 1}, "murder": {"_count": 1}, "Snapes": {"_count": 1}, "perfectly": {"_count": 2}, "before": {"_count": 2}, "both": {"_count": 1}, "perhaps": {"_count": 1}, "Merlins": {"_count": 1}, "most": {"_count": 1}, "that": {"_count": 1}, "less": {"_count": 1}, "exactly": {"_count": 1}, "": {"_count": 1}, "much": {"_count": 1}, "your": {"_count": 1}, "Elphias": {"_count": 1}, "it": {"_count": 1}, "Fenrir": {"_count": 1}, "true": {"_count": 1}, "simply": {"_count": 1}}, "happy": {"_count": 3, "happy": {"_count": 1}, "": {"_count": 1}, "prospect": {"_count": 1}}, "normal": {"_count": 1, "cat": {"_count": 1}}, "have": {"_count": 2, "anything": {"_count": 2}}, "man": {"_count": 5, "had": {"_count": 1}, "before": {"_count": 1}, "hes": {"_count": 1}, "Lovegood": {"_count": 1}, "": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "son": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 16, "a": {"_count": 4}, "London": {"_count": 1}, "my": {"_count": 1}, "mind": {"_count": 1}, "pairs": {"_count": 1}, "an": {"_count": 1}, "almost": {"_count": 1}, "fact": {"_count": 1}, "recent": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 3}}, "": {"_count": 254, "?": {"_count": 86}, ".": {"_count": 146}, "!": {"_count": 22}}, "over": {"_count": 4, "with": {"_count": 3}, "and": {"_count": 1}}, "bike": {"_count": 1, "away": {"_count": 1}}, "very": {"_count": 18, "moment": {"_count": 5}, "fast": {"_count": 1}, "funny": {"_count": 1}, "stall": {"_count": 1}, "quickly": {"_count": 1}, "fire": {"_count": 1}, "amusing": {"_count": 1}, "tree": {"_count": 1}, "office": {"_count": 1}, "late": {"_count": 1}, "odd": {"_count": 1}, "room": {"_count": 1}, "short": {"_count": 1}, "spot": {"_count": 1}}, "big": {"_count": 3, "one": {"_count": 2}, "row": {"_count": 1}}, "as": {"_count": 8, "though": {"_count": 2}, "an": {"_count": 2}, "Ron": {"_count": 1}, "well": {"_count": 2}, "a": {"_count": 1}}, "even": {"_count": 3, "though": {"_count": 1}, "more": {"_count": 2}}, "but": {"_count": 18, "thought": {"_count": 1}, "it": {"_count": 2}, "a": {"_count": 2}, "Rons": {"_count": 1}, "he": {"_count": 2}, "there": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 3}, "now": {"_count": 1}, "we": {"_count": 1}, "once": {"_count": 1}, "cleared": {"_count": 1}, "Auntie": {"_count": 1}}, "cupboard": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "stuff": {"_count": 12, "upstairs": {"_count": 1}, "": {"_count": 9}, "Harry": {"_count": 1}, "out": {"_count": 1}}, "room": {"_count": 14, "": {"_count": 4}, "No": {"_count": 1}, "through": {"_count": 1}, "listening": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}, "oh": {"_count": 1}, "would": {"_count": 1}, "you": {"_count": 1}}, "time": {"_count": 165, "yesterday": {"_count": 1}, "hed": {"_count": 1}, "sagged": {"_count": 1}, "with": {"_count": 3}, "he": {"_count": 8}, "": {"_count": 39}, "several": {"_count": 1}, "Potter": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 9}, "especially": {"_count": 1}, "we": {"_count": 2}, "she": {"_count": 1}, "tomorrow": {"_count": 1}, "Ill": {"_count": 1}, "would": {"_count": 1}, "my": {"_count": 2}, "acting": {"_count": 1}, "aiming": {"_count": 1}, "wouldnt": {"_count": 1}, "Harry": {"_count": 7}, "but": {"_count": 4}, "is": {"_count": 1}, "not": {"_count": 1}, "its": {"_count": 1}, "Lord": {"_count": 1}, "from": {"_count": 1}, "accompanied": {"_count": 1}, "it": {"_count": 8}, "by": {"_count": 1}, "Hermione": {"_count": 1}, "next": {"_count": 1}, "no": {"_count": 2}, "though": {"_count": 1}, "weve": {"_count": 1}, "they": {"_count": 3}, "And": {"_count": 1}, "said": {"_count": 2}, "if": {"_count": 1}, "of": {"_count": 3}, "Professor": {"_count": 1}, "Karkaroff": {"_count": 1}, "flanking": {"_count": 1}, "will": {"_count": 1}, "even": {"_count": 2}, "exploded": {"_count": 1}, "upon": {"_count": 1}, "Miss": {"_count": 1}, "nobody": {"_count": 1}, "last": {"_count": 1}, "Willys": {"_count": 1}, "Snape": {"_count": 1}, "seemed": {"_count": 1}, "I": {"_count": 1}, "hasnt": {"_count": 1}, "smiled": {"_count": 1}, "Voldemort": {"_count": 1}, "as": {"_count": 1}, "succeeding": {"_count": 1}, "taking": {"_count": 1}, "on": {"_count": 1}, "around": {"_count": 1}, "right": {"_count": 1}, "Malfoy": {"_count": 1}, "wearing": {"_count": 1}, "Voldemorts": {"_count": 1}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "together": {"_count": 1}, "There": {"_count": 1}, "seeing": {"_count": 1}, "when": {"_count": 1}, "Krum": {"_count": 1}, "concentrating": {"_count": 1}, "looking": {"_count": 1}, "found": {"_count": 1}, "sinking": {"_count": 1}, "clearly": {"_count": 1}, "He": {"_count": 2}, "pointing": {"_count": 1}, "thatd": {"_count": 1}, "because": {"_count": 1}, "how": {"_count": 1}}, "badly": {"_count": 2, "": {"_count": 1}, "hurt": {"_count": 1}}, "gentlemans": {"_count": 1, "kindly": {"_count": 1}}, "boy": {"_count": 12, "this": {"_count": 1}, "": {"_count": 3}, "to": {"_count": 1}, "brings": {"_count": 1}, "Harry": {"_count": 1}, "my": {"_count": 1}, "could": {"_count": 1}, "has": {"_count": 2}, "lurking": {"_count": 1}}, "and": {"_count": 18, "Lily": {"_count": 1}, "if": {"_count": 1}, "Ernie": {"_count": 1}, "bending": {"_count": 1}, "stared": {"_count": 1}, "wondering": {"_count": 1}, "determinedly": {"_count": 1}, "youll": {"_count": 1}, "immediately": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}, "could": {"_count": 1}, "Im": {"_count": 1}, "was": {"_count": 2}, "that": {"_count": 1}, "even": {"_count": 1}, "Phineas": {"_count": 1}}, "for": {"_count": 21, "years": {"_count": 2}, "the": {"_count": 4}, "you": {"_count": 2}, "twelve": {"_count": 1}, "Moody": {"_count": 1}, "a": {"_count": 2}, "days": {"_count": 1}, "Ron": {"_count": 1}, "myself": {"_count": 1}, "free": {"_count": 1}, "ages": {"_count": 1}, "Draco": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "more": {"_count": 1}}, "he": {"_count": 32, "said": {"_count": 9}, "knew": {"_count": 2}, "gave": {"_count": 2}, "growled": {"_count": 1}, "and": {"_count": 1}, "certainly": {"_count": 1}, "felt": {"_count": 2}, "muttered": {"_count": 1}, "could": {"_count": 3}, "thought": {"_count": 2}, "wished": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 3}, "still": {"_count": 1}, "pointed": {"_count": 1}}, "is": {"_count": 150, "difficult": {"_count": 1}, "the": {"_count": 17}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}, "Crabbe": {"_count": 1}, "Goyle": {"_count": 1}, "magic": {"_count": 1}, "Oliver": {"_count": 1}, "servant": {"_count": 1}, "Ronan": {"_count": 1}, "": {"_count": 5}, "one": {"_count": 2}, "important": {"_count": 6}, "its": {"_count": 1}, "Voldemort": {"_count": 2}, "a": {"_count": 12}, "insane": {"_count": 2}, "bad": {"_count": 1}, "because": {"_count": 1}, "dying": {"_count": 1}, "not": {"_count": 4}, "where": {"_count": 1}, "all": {"_count": 3}, "supposed": {"_count": 1}, "getting": {"_count": 2}, "stupid": {"_count": 2}, "going": {"_count": 5}, "weird": {"_count": 1}, "exactly": {"_count": 3}, "your": {"_count": 3}, "over": {"_count": 2}, "us": {"_count": 1}, "my": {"_count": 1}, "Fred": {"_count": 1}, "Ludo": {"_count": 1}, "urgent": {"_count": 1}, "most": {"_count": 2}, "just": {"_count": 4}, "nice": {"_count": 1}, "so": {"_count": 2}, "for": {"_count": 1}, "quite": {"_count": 1}, "heavy": {"_count": 1}, "about": {"_count": 2}, "evidence": {"_count": 1}, "some": {"_count": 1}, "no": {"_count": 1}, "Potter": {"_count": 1}, "Nymphadora": {"_count": 1}, "Kingsley": {"_count": 1}, "better": {"_count": 1}, "too": {"_count": 1}, "Perkins": {"_count": 1}, "taking": {"_count": 1}, "much": {"_count": 1}, "rather": {"_count": 1}, "really": {"_count": 1}, "relevant": {"_count": 1}, "wonderful": {"_count": 2}, "why": {"_count": 2}, "precisely": {"_count": 1}, "Kreachers": {"_count": 1}, "absolutely": {"_count": 1}, "an": {"_count": 2}, "excellent": {"_count": 1}, "Hermione": {"_count": 1}, "awful": {"_count": 1}, "Marcus": {"_count": 1}, "guesswork": {"_count": 1}, "another": {"_count": 1}, "something": {"_count": 2}, "safe": {"_count": 1}, "spectacular": {"_count": 1}, "goodbye": {"_count": 1}, "YouKnowWho": {"_count": 1}, "mad": {"_count": 1}, "our": {"_count": 1}, "his": {"_count": 2}, "different": {"_count": 1}, "Rita": {"_count": 1}, "what": {"_count": 1}, "wise": {"_count": 1}, "it": {"_count": 1}, "touching": {"_count": 1}}, "wizard": {"_count": 2, "who": {"_count": 1}, "about": {"_count": 1}}, "this": {"_count": 4, "wizard": {"_count": 1}, "madness": {"_count": 1}, "man": {"_count": 1}, "object": {"_count": 1}}, "lot": {"_count": 8, "": {"_count": 3}, "even": {"_count": 1}, "said": {"_count": 1}, "up": {"_count": 1}, "don": {"_count": 1}, "yehll": {"_count": 1}}, "about": {"_count": 9, "your": {"_count": 1}, "": {"_count": 2}, "us": {"_count": 1}, "him": {"_count": 2}, "Voldemorts": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 1}}, "at": {"_count": 14, "Uncle": {"_count": 1}, "least": {"_count": 2}, "once": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 5}, "school": {"_count": 1}, "night": {"_count": 1}, "her": {"_count": 1}}, "while": {"_count": 1, "Hagrid": {"_count": 1}}, "moment": {"_count": 16, "the": {"_count": 1}, "he": {"_count": 3}, "": {"_count": 1}, "Professor": {"_count": 1}, "onward": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 2}, "excited": {"_count": 1}, "perhaps": {"_count": 1}, "when": {"_count": 1}, "that": {"_count": 2}, "had": {"_count": 1}}, "not": {"_count": 1, "all": {"_count": 1}}, "Hagrid": {"_count": 3, "had": {"_count": 1}, "": {"_count": 1}, "became": {"_count": 1}}, "can": {"_count": 2, "this": {"_count": 1}, "hurt": {"_count": 1}}, "be": {"_count": 4, "": {"_count": 4}}, "or": {"_count": 2, "theyd": {"_count": 1}, "have": {"_count": 1}}, "top": {"_count": 1, "security": {"_count": 1}}, "infernal": {"_count": 1, "cart": {"_count": 1}}, "on": {"_count": 4, "its": {"_count": 1}, "my": {"_count": 1}, "Percys": {"_count": 1}, "Crabbe": {"_count": 1}}, "one": {"_count": 57, "": {"_count": 12}, "looked": {"_count": 1}, "here": {"_count": 4}, "Stan": {"_count": 1}, "she": {"_count": 2}, "is": {"_count": 3}, "because": {"_count": 2}, "leads": {"_count": 1}, "lurking": {"_count": 1}, "might": {"_count": 2}, "for": {"_count": 1}, "Arthur": {"_count": 1}, "seriously": {"_count": 1}, "which": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 3}, "completely": {"_count": 1}, "theres": {"_count": 1}, "instead": {"_count": 1}, "he": {"_count": 3}, "first": {"_count": 1}, "says": {"_count": 1}, "if": {"_count": 1}, "Again": {"_count": 1}, "I": {"_count": 1}, "ten": {"_count": 1}, "was": {"_count": 1}, "Aragog": {"_count": 1}, "will": {"_count": 1}, "inexplicable": {"_count": 1}, "program": {"_count": 1}, "down": {"_count": 1}, "great": {"_count": 1}}, "wand": {"_count": 11, "when": {"_count": 1}, "pointing": {"_count": 1}, "eh": {"_count": 1}, "": {"_count": 2}, "slightly": {"_count": 1}, "from": {"_count": 2}, "seemed": {"_count": 1}, "exists": {"_count": 1}, "and": {"_count": 1}}, "school": {"_count": 25, "anyway": {"_count": 1}, "": {"_count": 7}, "when": {"_count": 3}, "commands": {"_count": 1}, "Snape": {"_count": 1}, "next": {"_count": 1}, "after": {"_count": 1}, "she": {"_count": 1}, "will": {"_count": 1}, "The": {"_count": 1}, "are": {"_count": 1}, "and": {"_count": 2}, "without": {"_count": 1}, "than": {"_count": 1}, "growled": {"_count": 1}, "Potter": {"_count": 1}}, "year": {"_count": 76, "you": {"_count": 1}, "": {"_count": 30}, "the": {"_count": 1}, "said": {"_count": 9}, "because": {"_count": 1}, "whispered": {"_count": 1}, "Yawning": {"_count": 1}, "we": {"_count": 1}, "Dumbledores": {"_count": 1}, "called": {"_count": 1}, "Hermione": {"_count": 1}, "he": {"_count": 4}, "I": {"_count": 2}, "Harry": {"_count": 3}, "its": {"_count": 1}, "been": {"_count": 1}, "at": {"_count": 1}, "have": {"_count": 1}, "as": {"_count": 2}, "and": {"_count": 1}, "to": {"_count": 1}, "dragons": {"_count": 1}, "excepting": {"_count": 1}, "Ill": {"_count": 1}, "hasnt": {"_count": 1}, "Bill": {"_count": 1}, "of": {"_count": 1}, "assuming": {"_count": 1}, "even": {"_count": 1}, "without": {"_count": 1}, "thats": {"_count": 1}, "for": {"_count": 1}}, "its": {"_count": 3, "all": {"_count": 1}, "disgusting": {"_count": 1}, "an": {"_count": 1}}, "stupid": {"_count": 3, "fat": {"_count": 1}, "": {"_count": 1}, "teaching": {"_count": 1}}, "happens": {"_count": 2, "in": {"_count": 1}, "even": {"_count": 1}}, "news": {"_count": 9, "over": {"_count": 1}, "": {"_count": 3}, "meant": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "everybody": {"_count": 1}, "for": {"_count": 1}}, "compartment": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "bend": {"_count": 1, "here": {"_count": 1}}, "your": {"_count": 1, "toad": {"_count": 1}}, "the": {"_count": 10, "moment": {"_count": 3}, "last": {"_count": 1}, "veela": {"_count": 1}, "new": {"_count": 1}, "scar": {"_count": 1}, "Prime": {"_count": 1}, "Muggleborn": {"_count": 1}, "answer": {"_count": 1}}, "I": {"_count": 7, "mean": {"_count": 2}, "dont": {"_count": 1}, "suggest": {"_count": 1}, "honor": {"_count": 1}, "have": {"_count": 1}, "think": {"_count": 1}}, "story": {"_count": 7, "": {"_count": 1}, "wasnt": {"_count": 1}, "was": {"_count": 2}, "highly": {"_count": 1}, "it": {"_count": 1}, "havent": {"_count": 1}}, "by": {"_count": 4, "now": {"_count": 2}, "Monday": {"_count": 1}, "the": {"_count": 1}}, "little": {"_count": 6, "speech": {"_count": 1}, "button": {"_count": 1}, "dueling": {"_count": 1}, "surprise": {"_count": 1}, "piece": {"_count": 1}, "oddball": {"_count": 1}}, "Hermione": {"_count": 7, "stood": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}, "spoke": {"_count": 1}, "panted": {"_count": 1}, "and": {"_count": 1}}, "afternoon": {"_count": 17, "": {"_count": 8}, "wasnt": {"_count": 1}, "round": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 2}, "with": {"_count": 1}, "Ill": {"_count": 1}}, "tells": {"_count": 1, "you": {"_count": 1}}, "years": {"_count": 8, "team": {"_count": 1}, "the": {"_count": 1}, "our": {"_count": 1}, "World": {"_count": 1}, "batch": {"_count": 1}, "going": {"_count": 1}, "lessons": {"_count": 1}, "league": {"_count": 1}}, "place": {"_count": 34, "": {"_count": 11}, "tonight": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 1}, "can": {"_count": 1}, "is": {"_count": 1}, "go": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "anyway": {"_count": 1}, "fit": {"_count": 1}, "said": {"_count": 1}, "worth": {"_count": 1}, "or": {"_count": 1}, "full": {"_count": 1}, "are": {"_count": 1}, "as": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}, "home": {"_count": 1}, "forever": {"_count": 1}, "once": {"_count": 1}, "would": {"_count": 1}}, "Harry": {"_count": 21, "": {"_count": 3}, "sat": {"_count": 1}, "tried": {"_count": 1}, "Potter": {"_count": 1}, "muttered": {"_count": 1}, "urged": {"_count": 1}, "said": {"_count": 3}, "she": {"_count": 2}, "wondered": {"_count": 1}, "thought": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 2}, "gathered": {"_count": 1}, "were": {"_count": 1}, "that": {"_count": 1}}, "door": {"_count": 4, "is": {"_count": 1}, "": {"_count": 2}, "here": {"_count": 1}}, "large": {"_count": 1, "parcel": {"_count": 1}}, "evening": {"_count": 30, "then": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 13}, "because": {"_count": 1}, "when": {"_count": 2}, "I": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 2}, "but": {"_count": 1}, "this": {"_count": 1}, "we": {"_count": 1}, "and": {"_count": 1}, "Snape": {"_count": 1}, "both": {"_count": 1}}, "said": {"_count": 25, "Professor": {"_count": 1}, "Dumbledore": {"_count": 1}, "Ron": {"_count": 5}, "Harry": {"_count": 5}, "Lupin": {"_count": 2}, "Black": {"_count": 1}, "Hagrid": {"_count": 2}, "Hermione": {"_count": 4}, "the": {"_count": 1}, "a": {"_count": 1}, "Fred": {"_count": 1}, "Stan": {"_count": 1}}, "means": {"_count": 8, "": {"_count": 4}, "he": {"_count": 1}, "weve": {"_count": 1}, "open": {"_count": 1}, "said": {"_count": 1}}, "isnt": {"_count": 10, "soccer": {"_count": 1}, "a": {"_count": 2}, "it": {"_count": 2}, "going": {"_count": 1}, "all": {"_count": 1}, "happening": {"_count": 1}, "practice": {"_count": 1}, "about": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "funny": {"_count": 1, "because": {"_count": 1}}, "would": {"_count": 14, "probably": {"_count": 1}, "look": {"_count": 1}, "cheer": {"_count": 1}, "bother": {"_count": 1}, "mean": {"_count": 1}, "be": {"_count": 2}, "happen": {"_count": 1}, "lift": {"_count": 1}, "put": {"_count": 1}, "suffice": {"_count": 1}, "keep": {"_count": 1}, "help": {"_count": 1}, "assuage": {"_count": 1}}, "case": {"_count": 4, "his": {"_count": 1}, "either": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "noise": {"_count": 3, "": {"_count": 1}, "about": {"_count": 1}, "going": {"_count": 1}}, "had": {"_count": 5, "been": {"_count": 3}, "nothing": {"_count": 1}, "something": {"_count": 1}}, "cloak": {"_count": 1, "": {"_count": 1}}, "anywhere": {"_count": 1, "and": {"_count": 1}}, "mirrors": {"_count": 1, "trick": {"_count": 1}}, "summer": {"_count": 22, "": {"_count": 9}, "said": {"_count": 3}, "was": {"_count": 1}, "Weasley": {"_count": 1}, "he": {"_count": 2}, "werent": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 1}, "or": {"_count": 1}}, "splendid": {"_count": 1, "sight": {"_count": 1}}, "mirror": {"_count": 3, "shows": {"_count": 1}, "will": {"_count": 1}, "do": {"_count": 1}}, "\u2018Dumbledore": {"_count": 1, "is": {"_count": 1}}, "out": {"_count": 10, "of": {"_count": 2}, "to": {"_count": 3}, "": {"_count": 3}, "if": {"_count": 1}, "its": {"_count": 1}}, "private": {"_count": 1, "said": {"_count": 1}}, "Ron": {"_count": 3, "burst": {"_count": 1}, "muttered": {"_count": 1}, "told": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "didnt": {"_count": 2, "soothe": {"_count": 1}, "tally": {"_count": 1}}, "could": {"_count": 6, "be": {"_count": 2}, "have": {"_count": 1}, "turn": {"_count": 1}, "hardly": {"_count": 1}, "mean": {"_count": 1}}, "wasnt": {"_count": 4, "true": {"_count": 1}, "nearly": {"_count": 1}, "going": {"_count": 1}, "the": {"_count": 1}}, "Neville": {"_count": 2, "let": {"_count": 1}, "": {"_count": 1}}, "hed": {"_count": 1, "tell": {"_count": 1}}, "forest": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "Bane": {"_count": 1}}, "idiot": {"_count": 1, "": {"_count": 1}}, "done": {"_count": 1, "": {"_count": 1}}, "way": {"_count": 33, "": {"_count": 8}, "houseelves": {"_count": 1}, "Harry": {"_count": 2}, "said": {"_count": 2}, "it": {"_count": 1}, "and": {"_count": 8}, "was": {"_count": 1}, "then": {"_count": 1}, "Potter": {"_count": 1}, "about": {"_count": 1}, "for": {"_count": 1}, "I": {"_count": 1}, "anymore": {"_count": 1}, "well": {"_count": 1}, "of": {"_count": 1}, "their": {"_count": 1}, "he": {"_count": 1}}, "made": {"_count": 3, "him": {"_count": 2}, "it": {"_count": 1}}, "people": {"_count": 1, "will": {"_count": 1}}, "nonsense": {"_count": 2, "": {"_count": 2}}, "once": {"_count": 2, "Ron": {"_count": 1}, "well": {"_count": 1}}, "thing": {"_count": 9, "goes": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "before": {"_count": 1}, "off": {"_count": 1}, "she": {"_count": 1}}, "plant": {"_count": 1, "things": {"_count": 1}}, "paper": {"_count": 1, "": {"_count": 1}}, "interesting": {"_count": 1, "mirror": {"_count": 1}}, "reason": {"_count": 2, "": {"_count": 2}}, "week": {"_count": 7, "": {"_count": 4}, "because": {"_count": 1}, "starting": {"_count": 1}, "to": {"_count": 1}}, "simple": {"_count": 1, "sentence": {"_count": 1}}, "scar": {"_count": 2, "that": {"_count": 1}, "was": {"_count": 1}}, "hasnt": {"_count": 2, "got": {"_count": 2}}, "doesnt": {"_count": 5, "count": {"_count": 1}, "often": {"_count": 1}, "he": {"_count": 1}, "clash": {"_count": 1}, "it": {"_count": 1}}, "sort": {"_count": 9, "of": {"_count": 9}}, "car": {"_count": 1, "Fred": {"_count": 1}}, "from": {"_count": 7, "Bill": {"_count": 1}, "the": {"_count": 3}, "Perkins": {"_count": 1}, "happening": {"_count": 1}, "his": {"_count": 1}}, "morning": {"_count": 45, "in": {"_count": 2}, "": {"_count": 22}, "Marge": {"_count": 1}, "and": {"_count": 1}, "A": {"_count": 1}, "with": {"_count": 1}, "they": {"_count": 1}, "Parvati": {"_count": 1}, "at": {"_count": 1}, "you": {"_count": 2}, "just": {"_count": 1}, "though": {"_count": 1}, "youd": {"_count": 1}, "for": {"_count": 1}, "could": {"_count": 1}, "the": {"_count": 1}, "whispered": {"_count": 1}, "but": {"_count": 1}, "All": {"_count": 1}, "thats": {"_count": 1}, "considering": {"_count": 1}, "Harry": {"_count": 1}}, "shy": {"_count": 1, "": {"_count": 1}}, "point": {"_count": 18, "Fred": {"_count": 1}, "that": {"_count": 1}, "thinking": {"_count": 1}, "Harry": {"_count": 2}, "Mrs": {"_count": 1}, "": {"_count": 2}, "forth": {"_count": 1}, "Leanne": {"_count": 1}, "because": {"_count": 2}, "and": {"_count": 1}, "for": {"_count": 1}, "many": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}}, "except": {"_count": 1, "Harry": {"_count": 1}}, "September": {"_count": 1, "I": {"_count": 1}}, "roomy": {"_count": 1, "from": {"_count": 1}}, "far": {"_count": 8, "before": {"_count": 1}, "said": {"_count": 1}, "hadnt": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}, "with": {"_count": 1}, "didnt": {"_count": 1}, "I": {"_count": 1}}, "aged": {"_count": 1, "old": {"_count": 1}}, "angry": {"_count": 1, "before": {"_count": 1}}, "again": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "nature": {"_count": 2, "It": {"_count": 1}, "to": {"_count": 1}}, "Professor": {"_count": 5, "McGonagall": {"_count": 2}, "": {"_count": 2}, "Trelawney": {"_count": 1}}, "whats": {"_count": 1, "all": {"_count": 1}}, "stage": {"_count": 3, "of": {"_count": 1}, "": {"_count": 1}, "wouldnt": {"_count": 1}}, "yesterday": {"_count": 1, "when": {"_count": 1}}, "umbrella": {"_count": 1, "was": {"_count": 1}}, "every": {"_count": 2, "time": {"_count": 1}, "day": {"_count": 1}}, "mean": {"_count": 7, "he": {"_count": 1}, "Albus": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 2}, "theyre": {"_count": 1}}, "Halloween": {"_count": 1, "will": {"_count": 1}}, "castle": {"_count": 8, "together": {"_count": 1}, "by": {"_count": 1}, "would": {"_count": 1}, "while": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 2}, "then": {"_count": 1}}, "much": {"_count": 3, "he": {"_count": 1}, "gold": {"_count": 1}, "": {"_count": 1}}, "pureblood": {"_count": 1, "stuff": {"_count": 1}}, "looks": {"_count": 3, "like": {"_count": 1}, "good": {"_count": 1}, "absolutely": {"_count": 1}}, "business": {"_count": 2, "You": {"_count": 1}, "": {"_count": 1}}, "slammed": {"_count": 1, "him": {"_count": 1}}, "book": {"_count": 11, "out": {"_count": 1}, "why": {"_count": 1}, "were": {"_count": 1}, "Professor": {"_count": 1}, "Ive": {"_count": 1}, "Harry": {"_count": 1}, "how": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}, "Ron": {"_count": 1}, "has": {"_count": 1}}, "it": {"_count": 8, "was": {"_count": 3}, "": {"_count": 2}, "is": {"_count": 1}, "died": {"_count": 1}, "follows": {"_count": 1}}, "Bludger": {"_count": 1, "Fred": {"_count": 1}}, "thanks": {"_count": 1, "": {"_count": 1}}, "Colin": {"_count": 1, "he": {"_count": 1}}, "sir": {"_count": 2, "tis": {"_count": 1}, "": {"_count": 1}}, "any": {"_count": 1, "better": {"_count": 1}}, "Snape": {"_count": 2, "whispered": {"_count": 1}, "toward": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 22, "happen": {"_count": 4}, "you": {"_count": 5}, "care": {"_count": 1}, "their": {"_count": 1}, "Sirius": {"_count": 1}, "make": {"_count": 1}, "Professor": {"_count": 1}, "ignore": {"_count": 1}, "continue": {"_count": 1}, "be": {"_count": 1}, "anybody": {"_count": 1}, "Madam": {"_count": 1}, "Harry": {"_count": 1}, "tell": {"_count": 1}, "being": {"_count": 1}}, "term": {"_count": 6, "he": {"_count": 1}, "": {"_count": 4}, "after": {"_count": 1}}, "rate": {"_count": 2, "well": {"_count": 1}, "therell": {"_count": 1}}, "behavior": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "would": {"_count": 1}}, "troubled": {"_count": 1, "time": {"_count": 1}}, "under": {"_count": 1, "your": {"_count": 1}}, "diary": {"_count": 6, "is": {"_count": 1}, "read": {"_count": 1}, "holds": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "cheerful": {"_count": 1, "view": {"_count": 1}}, "commotion": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 5, "know": {"_count": 1}, "filthy": {"_count": 1}, "two": {"_count": 1}, "cant": {"_count": 1}, "might": {"_count": 1}}, "unknown": {"_count": 1, "wizard": {"_count": 1}}, "unpleasantness": {"_count": 1, "": {"_count": 1}}, "late": {"_count": 4, "Tom": {"_count": 1}, "at": {"_count": 1}, "again": {"_count": 1}, "hour": {"_count": 1}}, "stuffs": {"_count": 1, "coming": {"_count": 1}}, "a": {"_count": 14, "house": {"_count": 1}, "single": {"_count": 1}, "holiday": {"_count": 1}, "hospital": {"_count": 1}, "confession": {"_count": 1}, "great": {"_count": 1}, "school": {"_count": 1}, "student": {"_count": 1}, "few": {"_count": 1}, "little": {"_count": 1}, "title": {"_count": 1}, "sharp": {"_count": 1}, "mere": {"_count": 1}, "low": {"_count": 1}}, "deep": {"_count": 1, "into": {"_count": 1}}, "state": {"_count": 5, "": {"_count": 2}, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}, "I": {"_count": 1}}, "dreadful": {"_count": 1, "year": {"_count": 1}}, "has": {"_count": 4, "all": {"_count": 1}, "been": {"_count": 2}, "done": {"_count": 1}}, "skin": {"_count": 1, "back": {"_count": 1}}, "gits": {"_count": 1, "not": {"_count": 1}}, "rock": {"_count": 2, "said": {"_count": 1}, "unless": {"_count": 1}}, "dying": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "told": {"_count": 1}}, "merits": {"_count": 1, "a": {"_count": 1}}, "dangerous": {"_count": 1, "adventure": {"_count": 1}}, "plan": {"_count": 6, "could": {"_count": 1}, "was": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 1}, "however": {"_count": 1}, "": {"_count": 1}}, "essay": {"_count": 1, "tomorrow": {"_count": 1}}, "long": {"_count": 9, "before": {"_count": 1}, "cobbled": {"_count": 1}, "reduced": {"_count": 1}, "Hermione": {"_count": 1}, "maybe": {"_count": 1}, "rectangular": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "night": {"_count": 1}}, "house": {"_count": 17, "who": {"_count": 1}, "hed": {"_count": 1}, "boy": {"_count": 1}, "its": {"_count": 1}, "see": {"_count": 1}, "to": {"_count": 2}, "again": {"_count": 1}, "without": {"_count": 1}, "\u2018home": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 1}, "while": {"_count": 1}, "both": {"_count": 1}, "of": {"_count": 2}, "for": {"_count": 1}}, "owl": {"_count": 5, "of": {"_count": 1}, "falls": {"_count": 1}, "as": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 1}}, "trip": {"_count": 2, "but": {"_count": 1}, "was": {"_count": 1}}, "too": {"_count": 4, "there": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}}, "useful": {"_count": 1, "for": {"_count": 1}}, "incident": {"_count": 1, "still": {"_count": 1}}, "nambypamby": {"_count": 1, "wishywashy": {"_count": 1}}, "boys": {"_count": 3, "case": {"_count": 1}, "shoulder": {"_count": 1}, "imagination": {"_count": 1}}, "wall": {"_count": 1, "forever": {"_count": 1}}, "eve": {"_count": 1, "The": {"_count": 1}}, "bus": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 3, "course": {"_count": 3}}, "rat": {"_count": 2, "": {"_count": 1}, "tonic": {"_count": 1}}, "cant": {"_count": 1, "be": {"_count": 1}}, "sweetshop": {"_count": 1, "said": {"_count": 1}}, "fuss": {"_count": 1, "": {"_count": 1}}, "teaching": {"_count": 1, "job": {"_count": 1}}, "landing": {"_count": 1, "but": {"_count": 1}}, "extraordinary": {"_count": 1, "pronouncement": {"_count": 1}}, "field": {"_count": 1, "": {"_count": 1}}, "subject": {"_count": 9, "": {"_count": 2}, "only": {"_count": 1}, "might": {"_count": 1}, "has": {"_count": 1}, "may": {"_count": 1}, "quite": {"_count": 1}, "so": {"_count": 1}, "cropped": {"_count": 1}}, "pronouncement": {"_count": 1, "but": {"_count": 1}}, "shrivelfig": {"_count": 1, "skinned": {"_count": 1}}, "lesson": {"_count": 7, "we": {"_count": 1}, "not": {"_count": 1}, "was": {"_count": 2}, "Harry": {"_count": 1}, "tomorrow": {"_count": 1}, "": {"_count": 1}}, "potion": {"_count": 7, "to": {"_count": 1}, "needs": {"_count": 1}, "is": {"_count": 2}, "indicating": {"_count": 1}, "within": {"_count": 1}, "must": {"_count": 1}}, "class": {"_count": 13, "contains": {"_count": 1}, "in": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 2}, "who": {"_count": 1}, "is": {"_count": 2}, "undoubtedly": {"_count": 1}, "very": {"_count": 1}, "should": {"_count": 1}, "and": {"_count": 1}, "this": {"_count": 1}}, "wardrobe": {"_count": 1, "Neville": {"_count": 1}}, "will": {"_count": 8, "come": {"_count": 1}, "all": {"_count": 1}, "make": {"_count": 2}, "simply": {"_count": 1}, "be": {"_count": 1}, "do": {"_count": 2}}, "weather": {"_count": 6, "": {"_count": 2}, "because": {"_count": 1}, "said": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}}, "lighthearted": {"_count": 1, "behavior": {"_count": 1}}, "happened": {"_count": 3, "Wood": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 1}}, "eight": {"_count": 1, "out": {"_count": 1}}, "with": {"_count": 6, "any": {"_count": 1}, "Hedwig": {"_count": 1}, "Pig": {"_count": 1}, "the": {"_count": 2}, "looks": {"_count": 1}}, "earth": {"_count": 1, "": {"_count": 1}}, "neck": {"_count": 1, "of": {"_count": 1}}, "left": {"_count": 2, "Black": {"_count": 1}, "sleeve": {"_count": 1}}, "old": {"_count": 5, "photograph": {"_count": 1}, "place": {"_count": 1}, "bat": {"_count": 1}, "teacher": {"_count": 1}, "lady": {"_count": 1}}, "picture": {"_count": 2, "had": {"_count": 1}, "than": {"_count": 1}}, "conversation": {"_count": 6, "while": {"_count": 1}, "but": {"_count": 2}, "with": {"_count": 1}, "now": {"_count": 2}}, "matter": {"_count": 7, "will": {"_count": 2}, "he": {"_count": 1}, "Cornelius": {"_count": 1}, "with": {"_count": 1}, "do": {"_count": 1}, "higher": {"_count": 1}}, "Thats": {"_count": 1, "why": {"_count": 1}}, "seemed": {"_count": 4, "to": {"_count": 3}, "a": {"_count": 1}}, "Potter": {"_count": 3, "": {"_count": 3}}, "Lupin": {"_count": 2, "cleared": {"_count": 1}, "continued": {"_count": 1}}, "before": {"_count": 8, "we": {"_count": 1}, "he": {"_count": 1}, "their": {"_count": 1}, "": {"_count": 3}, "though": {"_count": 1}, "Professor": {"_count": 1}}, "game": {"_count": 1, "weve": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "loon": {"_count": 1, "in": {"_count": 1}}, "vein": {"_count": 1, "for": {"_count": 1}}, "match": {"_count": 3, "were": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "make": {"_count": 2, "no": {"_count": 1}, "him": {"_count": 1}}, "weeks": {"_count": 2, "passwords": {"_count": 1}, "essay": {"_count": 1}}, "view": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "ripping": {"_count": 1, "noise": {"_count": 1}}, "draft": {"_count": 1, "": {"_count": 1}}, "great": {"_count": 3, "long": {"_count": 1}, "jet": {"_count": 1}, "school": {"_count": 1}}, "unpleasant": {"_count": 2, "sight": {"_count": 1}, "surprise": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "another": {"_count": 1, "treasured": {"_count": 1}}, "back": {"_count": 3, "shall": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}}, "map": {"_count": 4, "was": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "which": {"_count": 1}}, "table": {"_count": 2, "said": {"_count": 1}, "who": {"_count": 1}}, "mornin": {"_count": 4, "": {"_count": 3}, "mind": {"_count": 1}}, "tunnel": {"_count": 2, "come": {"_count": 1}, "": {"_count": 1}}, "statement": {"_count": 2, "to": {"_count": 1}, "will": {"_count": 1}}, "century": {"_count": 1, "and": {"_count": 1}}, "starts": {"_count": 1, "with": {"_count": 1}}, "passageway": {"_count": 1, "and": {"_count": 1}}, "madness": {"_count": 1, "Remus": {"_count": 1}}, "piece": {"_count": 5, "of": {"_count": 5}}, "comfortable": {"_count": 2, "bed": {"_count": 1}, "notion": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "bush": {"_count": 1, "Ill": {"_count": 1}}, "oh": {"_count": 1, "I": {"_count": 1}}, "gets": {"_count": 1, "out": {"_count": 1}}, "so": {"_count": 6, "calmly": {"_count": 1}, "he": {"_count": 2}, "its": {"_count": 1}, "I": {"_count": 2}}, "snatched": {"_count": 1, "the": {"_count": 1}}, "finds": {"_count": 1, "you": {"_count": 1}}, "suggestion": {"_count": 3, "of": {"_count": 1}, "at": {"_count": 1}, "looking": {"_count": 1}}, "early": {"_count": 5, "in": {"_count": 2}, "": {"_count": 3}}, "Monday": {"_count": 1, "night": {"_count": 1}}, "really": {"_count": 1, "is": {"_count": 1}}, "letter": {"_count": 8, "came": {"_count": 1}, "through": {"_count": 1}, "had": {"_count": 1}, "several": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}, "for": {"_count": 1}, "constitutes": {"_count": 1}}, "woman": {"_count": 7, "": {"_count": 3}, "in": {"_count": 1}, "now": {"_count": 1}, "obviously": {"_count": 1}, "was": {"_count": 1}}, "rubbish": {"_count": 5, "": {"_count": 3}, "about": {"_count": 1}, "Potter": {"_count": 1}}, "ruddy": {"_count": 1, "": {"_count": 1}}, "World": {"_count": 1, "Cup": {"_count": 1}}, "note": {"_count": 1, "up": {"_count": 1}}, "might": {"_count": 9, "have": {"_count": 1}, "be": {"_count": 4}, "happen": {"_count": 2}, "just": {"_count": 1}, "end": {"_count": 1}}, "remark": {"_count": 1, "didnt": {"_count": 1}}, "stack": {"_count": 1, "of": {"_count": 1}}, "area": {"_count": 1, "are": {"_count": 1}}, "manky": {"_count": 1, "old": {"_count": 1}}, "crowded": {"_count": 1, "he": {"_count": 1}}, "problem": {"_count": 1, "too": {"_count": 1}}, "young": {"_count": 4, "before": {"_count": 1}, "mans": {"_count": 1}, "lady": {"_count": 1}, "bloke": {"_count": 1}}, "couldnt": {"_count": 2, "work": {"_count": 1}, "be": {"_count": 1}}, "now": {"_count": 4, "said": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "take": {"_count": 1}}, "Dobby": {"_count": 2, "I": {"_count": 1}, "mumbled": {"_count": 1}}, "money": {"_count": 1, "": {"_count": 1}}, "clearing": {"_count": 1, "who": {"_count": 1}}, "\u2018If": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 2, "you": {"_count": 1}, "flatly": {"_count": 1}}, "clock": {"_count": 1, "": {"_count": 1}}, "Molly": {"_count": 1, "it": {"_count": 1}}, "stormy": {"_count": 1, "": {"_count": 1}}, "dinner": {"_count": 1, "": {"_count": 1}}, "tournament": {"_count": 5, "involves": {"_count": 1}, "is": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}, "you": {"_count": 1}}, "impartial": {"_count": 1, "judge": {"_count": 1}}, "judge": {"_count": 1, "knows": {"_count": 1}}, "particular": {"_count": 3, "step": {"_count": 1}, "spell": {"_count": 1}, "dragon": {"_count": 1}}, "BlastEnded": {"_count": 1, "Skrewts": {"_count": 1}}, "muttered": {"_count": 1, "Seamus": {"_count": 1}}, "perhaps": {"_count": 1, "that": {"_count": 1}}, "down": {"_count": 1, "": {"_count": 1}}, "lots": {"_count": 1, "supposed": {"_count": 1}}, "settled": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 5, "word": {"_count": 1}, "comment": {"_count": 1}, "function": {"_count": 1}, "year": {"_count": 1}, "great": {"_count": 1}}, "line": {"_count": 1, "": {"_count": 1}}, "query": {"_count": 1, "was": {"_count": 1}}, "situation": {"_count": 2, "arose": {"_count": 1}, "": {"_count": 1}}, "excellent": {"_count": 1, "excuse": {"_count": 1}}, "into": {"_count": 1, "words": {"_count": 1}}, "Hedwig": {"_count": 1, "came": {"_count": 1}}, "suits": {"_count": 1, "you": {"_count": 1}}, "spew": {"_count": 1, "stuff": {"_count": 1}}, "she": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "looked": {"_count": 1}}, "Horntail": {"_count": 1, "do": {"_count": 1}}, "office": {"_count": 5, "under": {"_count": 2}, "": {"_count": 2}, "ever": {"_count": 1}}, "bag": {"_count": 1, "he": {"_count": 1}}, "spot": {"_count": 8, "": {"_count": 4}, "again": {"_count": 1}, "for": {"_count": 1}, "on": {"_count": 1}, "or": {"_count": 1}}, "Mr": {"_count": 1, "Krum": {"_count": 1}}, "up": {"_count": 3, "it": {"_count": 1}, "": {"_count": 2}}, "distance": {"_count": 3, "": {"_count": 2}, "Harry": {"_count": 1}}, "weird": {"_count": 2, "thing": {"_count": 1}, "connection": {"_count": 1}}, "does": {"_count": 1, "look": {"_count": 1}}, "Winky": {"_count": 2, "howled": {"_count": 1}, "flung": {"_count": 1}}, "Christmas": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "ball": {"_count": 2, "thing": {"_count": 1}, "was": {"_count": 1}}, "startling": {"_count": 1, "news": {"_count": 1}}, "question": {"_count": 5, "on": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}, "because": {"_count": 1}}, "new": {"_count": 7, "and": {"_count": 1}, "gloomy": {"_count": 1}, "laughing": {"_count": 1}, "development": {"_count": 1}, "security": {"_count": 1}, "idea": {"_count": 1}, "order": {"_count": 1}}, "nor": {"_count": 1, "as": {"_count": 1}}, "secrecy": {"_count": 1, "": {"_count": 1}}, "hysteria": {"_count": 1, "about": {"_count": 1}}, "side": {"_count": 1, "of": {"_count": 1}}, "were": {"_count": 4, "not": {"_count": 1}, "fire": {"_count": 1}, "a": {"_count": 1}, "listed": {"_count": 1}}, "should": {"_count": 2, "put": {"_count": 1}, "be": {"_count": 1}}, "cabin": {"_count": 1, "for": {"_count": 1}}, "bathroom": {"_count": 1, "": {"_count": 1}}, "supposed": {"_count": 3, "to": {"_count": 3}}, "hardly": {"_count": 1, "mattered": {"_count": 1}}, "Weve": {"_count": 1, "taken": {"_count": 1}}, "theory": {"_count": 2, "past": {"_count": 1}, "": {"_count": 1}}, "bath": {"_count": 1, "were": {"_count": 1}}, "Myrtles": {"_count": 1, "eyes": {"_count": 1}}, "racket": {"_count": 1, "": {"_count": 1}}, "egg": {"_count": 1, "down": {"_count": 1}}, "happen": {"_count": 4, "": {"_count": 2}, "said": {"_count": 1}, "anymore": {"_count": 1}}, "shows": {"_count": 1, "moral": {"_count": 1}}, "press": {"_count": 1, "attention": {"_count": 1}}, "entire": {"_count": 1, "class": {"_count": 1}}, "clear": {"_count": 1, "never": {"_count": 1}}, "direction": {"_count": 1, "before": {"_count": 1}}, "straight": {"_count": 3, "he": {"_count": 1}, "said": {"_count": 1}, "once": {"_count": 1}}, "Ill": {"_count": 1, "eat": {"_count": 1}}, "tournaments": {"_count": 1, "over": {"_count": 1}}, "if": {"_count": 4, "its": {"_count": 1}, "you": {"_count": 3}}, "thought": {"_count": 6, "it": {"_count": 1}, "had": {"_count": 1}, "occurred": {"_count": 2}, "Harrys": {"_count": 1}, "Harry": {"_count": 1}}, "stared": {"_count": 1, "up": {"_count": 1}}, "whole": {"_count": 2, "affair": {"_count": 1}, "thing": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 2}}, "joke": {"_count": 1, "shop": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "Impediment": {"_count": 1, "Curse": {"_count": 1}}, "discussion": {"_count": 2, "": {"_count": 1}, "inside": {"_count": 1}}, "information": {"_count": 4, "as": {"_count": 1}, "did": {"_count": 1}, "the": {"_count": 1}, "comes": {"_count": 1}}, "council": {"_count": 1, "said": {"_count": 1}}, "glanced": {"_count": 1, "around": {"_count": 1}}, "court": {"_count": 1, "said": {"_count": 1}}, "form": {"_count": 1, "": {"_count": 1}}, "fresh": {"_count": 1, "thought": {"_count": 1}}, "task": {"_count": 1, "than": {"_count": 1}}, "Which": {"_count": 1, "creature": {"_count": 1}}, "leg": {"_count": 1, "": {"_count": 1}}, "village": {"_count": 1, "fell": {"_count": 1}}, "band": {"_count": 1, "of": {"_count": 1}}, "pain": {"_count": 1, "Wormtail": {"_count": 1}}, "miracle": {"_count": 1, "": {"_count": 1}}, "country": {"_count": 4, "and": {"_count": 2}, "": {"_count": 1}, "they": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}, "than": {"_count": 3, "Harry": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}}, "head": {"_count": 1, "gray": {"_count": 1}}, "what": {"_count": 4, "happened": {"_count": 1}, "if": {"_count": 1}, "it": {"_count": 1}, "youve": {"_count": 1}}, "because": {"_count": 3, "it": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "Cornelius": {"_count": 1, "said": {"_count": 1}}, "Hall": {"_count": 4, "said": {"_count": 1}, "have": {"_count": 1}, "knows": {"_count": 1}, "and": {"_count": 1}}, "close": {"_count": 5, "to": {"_count": 3}, "up": {"_count": 1}, "and": {"_count": 1}}, "signal": {"_count": 1, "he": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "after": {"_count": 1, "eating": {"_count": 1}}, "must": {"_count": 7, "be": {"_count": 7}}, "brave": {"_count": 1, "at": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "breach": {"_count": 1, "of": {"_count": 1}}, "explains": {"_count": 2, "everything": {"_count": 1}, "why": {"_count": 1}}, "codswallop": {"_count": 1, "": {"_count": 1}}, "scrap": {"_count": 1, "of": {"_count": 1}}, "hearing": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "such": {"_count": 1, "an": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "mess": {"_count": 5, "and": {"_count": 1}, "is": {"_count": 1}, "or": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "knack": {"_count": 1, "of": {"_count": 1}}, "seriously": {"_count": 1, "said": {"_count": 1}}, "alive": {"_count": 2, "in": {"_count": 1}, "make": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "cold": {"_count": 3, "on": {"_count": 1}, "disappointment": {"_count": 1}, "simply": {"_count": 1}}, "He": {"_count": 2, "showed": {"_count": 1}, "had": {"_count": 1}}, "got": {"_count": 2, "to": {"_count": 2}}, "deluded": {"_count": 1, "attentionseeking": {"_count": 1}}, "image": {"_count": 1, "of": {"_count": 1}}, "Dumbledore": {"_count": 3, "must": {"_count": 1}, "continued": {"_count": 1}, "": {"_count": 1}}, "kitchen": {"_count": 1, "now": {"_count": 1}}, "weapon": {"_count": 3, "could": {"_count": 1}, "something": {"_count": 1}, "is": {"_count": 1}}, "bad": {"_count": 2, "what": {"_count": 1}, "feeling": {"_count": 1}}, "writing": {"_count": 1, "desk": {"_count": 1}}, "bucket": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "and": {"_count": 1}}, "floor": {"_count": 1, "except": {"_count": 1}}, "dealt": {"_count": 1, "with": {"_count": 1}}, "person": {"_count": 2, "": {"_count": 2}}, "inquiry": {"_count": 1, "said": {"_count": 1}}, "courts": {"_count": 1, "job": {"_count": 1}}, "soppily": {"_count": 1, "at": {"_count": 1}}, "dusty": {"_count": 2, "musty": {"_count": 1}, "spunglass": {"_count": 1}}, "within": {"_count": 1, "earshot": {"_count": 1}}, "worry": {"_count": 1, "Im": {"_count": 1}}, "generosity": {"_count": 1, "": {"_count": 1}}, "horrible": {"_count": 2, "thing": {"_count": 1}, "business": {"_count": 1}}, "we": {"_count": 3, "never": {"_count": 1}, "are": {"_count": 1}, "hear": {"_count": 1}}, "stunted": {"_count": 1, "little": {"_count": 1}}, "easily": {"_count": 2, "": {"_count": 1}, "weak": {"_count": 1}}, "edition": {"_count": 1, "of": {"_count": 1}}, "sentence": {"_count": 2, "several": {"_count": 1}, "would": {"_count": 1}}, "they": {"_count": 1, "disappeared": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "historic": {"_count": 1, "school": {"_count": 1}}, "all": {"_count": 2, "summer": {"_count": 1}, "the": {"_count": 1}}, "together": {"_count": 2, "after": {"_count": 1}, "from": {"_count": 1}}, "kind": {"_count": 2, "of": {"_count": 2}}, "least": {"_count": 1, "of": {"_count": 1}}, "true": {"_count": 1, "": {"_count": 1}}, "dosage": {"_count": 1, "looks": {"_count": 1}}, "quill": {"_count": 1, "": {"_count": 1}}, "managing": {"_count": 1, "lark": {"_count": 1}}, "Yeah": {"_count": 1, "said": {"_count": 1}}, "offer": {"_count": 1, "": {"_count": 1}}, "says": {"_count": 1, "\u2018Snuffles": {"_count": 1}}, "window": {"_count": 2, "and": {"_count": 1}, "OUCH": {"_count": 1}}, "thrilling": {"_count": 1, "thought": {"_count": 1}}, "Fred": {"_count": 1, "told": {"_count": 1}}, "no": {"_count": 2, "doubt": {"_count": 1}, "proof": {"_count": 1}}, "easier": {"_count": 1, "from": {"_count": 1}}, "finished": {"_count": 1, "some": {"_count": 1}}, "conclusion": {"_count": 2, "that": {"_count": 1}, "Harry": {"_count": 1}}, "bit": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "then": {"_count": 2, "Ron": {"_count": 1}, "": {"_count": 1}}, "Sirius": {"_count": 1, "added": {"_count": 1}}, "position": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "newspaper": {"_count": 1, "which": {"_count": 1}}, "\u2018Educational": {"_count": 1, "Decree": {"_count": 1}}, "work": {"_count": 1, "in": {"_count": 1}}, "homework": {"_count": 1, "was": {"_count": 1}}, "been": {"_count": 3, "your": {"_count": 1}, "here": {"_count": 1}, "happening": {"_count": 1}}, "post": {"_count": 1, "how": {"_count": 1}}, "classroom": {"_count": 2, "Miss": {"_count": 1}, "for": {"_count": 1}}, "second": {"_count": 1, "weeks": {"_count": 1}}, "injustice": {"_count": 2, "": {"_count": 1}, "still": {"_count": 1}}, "box": {"_count": 1, "of": {"_count": 1}}, "December": {"_count": 1, "said": {"_count": 1}}, "opportunity": {"_count": 1, "to": {"_count": 1}}, "more": {"_count": 5, "than": {"_count": 1}, "awkward": {"_count": 1}, "fully": {"_count": 1}, "serious": {"_count": 1}, "of": {"_count": 1}}, "pub": {"_count": 1, "in": {"_count": 1}}, "meeting": {"_count": 3, "was": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}}, "coming": {"_count": 2, "": {"_count": 1}, "Friday": {"_count": 1}}, "critical": {"_count": 1, "period": {"_count": 1}}, "unexpected": {"_count": 1, "piece": {"_count": 1}}, "list": {"_count": 1, "was": {"_count": 1}}, "group": {"_count": 3, "was": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "when": {"_count": 4, "did": {"_count": 1}, "Voldemort": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}}, "yet": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "owls": {"_count": 1, "traveled": {"_count": 1}}, "day": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "how": {"_count": 1}}, "ever": {"_count": 2, "since": {"_count": 2}}, "clears": {"_count": 1, "up": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "Room": {"_count": 1, "of": {"_count": 1}}, "save": {"_count": 1, "compared": {"_count": 1}}, "just": {"_count": 2, "listen": {"_count": 1}, "Professor": {"_count": 1}}, "angle": {"_count": 1, "": {"_count": 1}}, "shes": {"_count": 1, "not": {"_count": 1}}, "dip": {"_count": 1, "between": {"_count": 1}}, "branch": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "Had": {"_count": 1, "Hagrid": {"_count": 1}}, "depressing": {"_count": 1, "discussion": {"_count": 1}}, "spell": {"_count": 3, "at": {"_count": 1}, "by": {"_count": 1}, "said": {"_count": 1}}, "completely": {"_count": 1, "he": {"_count": 1}}, "speech": {"_count": 1, "then": {"_count": 1}}, "interrupted": {"_count": 1, "it": {"_count": 1}}, "attack": {"_count": 1, "happen": {"_count": 1}}, "idea": {"_count": 4, "and": {"_count": 1}, "at": {"_count": 2}, "he": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "article": {"_count": 1, "two": {"_count": 1}}, "why": {"_count": 3, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "have": {"_count": 1}}, "liking": {"_count": 1, "for": {"_count": 1}}, "ward": {"_count": 1, "bore": {"_count": 1}}, "parting": {"_count": 1, "he": {"_count": 1}}, "added": {"_count": 1, "up": {"_count": 1}}, "tomorrow": {"_count": 1, "he": {"_count": 1}}, "magnitude": {"_count": 1, "suggests": {"_count": 1}}, "snarled": {"_count": 1, "Harry": {"_count": 1}}, "tragic": {"_count": 1, "accident": {"_count": 1}}, "improvement": {"_count": 1, "more": {"_count": 1}}, "increased": {"_count": 1, "sensitivity": {"_count": 1}}, "quickly": {"_count": 2, "And": {"_count": 1}, "Im": {"_count": 1}}, "apparently": {"_count": 1, "was": {"_count": 1}}, "battered": {"_count": 1, "and": {"_count": 1}}, "garbage": {"_count": 1, "Dumbledores": {"_count": 1}}, "tedious": {"_count": 1, "job": {"_count": 1}}, "hall": {"_count": 1, "": {"_count": 1}}, "occasion": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 3, "it": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}}, "war": {"_count": 1, "were": {"_count": 1}}, "hex": {"_count": 1, "she": {"_count": 1}}, "trouble": {"_count": 1, "or": {"_count": 1}}, "girl": {"_count": 3, "Harrys": {"_count": 1}, "is": {"_count": 1}, "not": {"_count": 1}}, "\u2018Are": {"_count": 1, "you": {"_count": 1}}, "thoughtfulness": {"_count": 1, "": {"_count": 1}}, "tactic": {"_count": 1, "as": {"_count": 1}}, "ambition": {"_count": 1, "I": {"_count": 1}}, "did": {"_count": 4, "not": {"_count": 4}}, "sensible": {"_count": 1, "course": {"_count": 1}}, "merely": {"_count": 1, "grunted": {"_count": 1}}, "incomprehensible": {"_count": 1, "note": {"_count": 1}}, "an": {"_count": 2, "odd": {"_count": 2}}, "part": {"_count": 2, "of": {"_count": 2}}, "human": {"_count": 1, "showed": {"_count": 1}}, "And": {"_count": 1, "I": {"_count": 1}}, "meant": {"_count": 3, "only": {"_count": 1}, "that": {"_count": 1}, "Dumbledore": {"_count": 1}}, "eggcup": {"_count": 1, "and": {"_count": 1}}, "Dawlish": {"_count": 1, "": {"_count": 1}}, "IF": {"_count": 1, "YOU": {"_count": 1}}, "lie": {"_count": 1, "": {"_count": 1}}, "buffoon": {"_count": 1, "she": {"_count": 1}}, "precise": {"_count": 1, "moment": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "height": {"_count": 1, "with": {"_count": 1}}, "order": {"_count": 1, "the": {"_count": 1}}, "ceiling": {"_count": 1, "gave": {"_count": 1}}, "dais": {"_count": 1, "stood": {"_count": 1}}, "archway": {"_count": 1, "": {"_count": 1}}, "prophecy": {"_count": 3, "is": {"_count": 1}, "Im": {"_count": 1}, "the": {"_count": 1}}, "clutched": {"_count": 1, "in": {"_count": 1}}, "Portkey": {"_count": 1, "Harry": {"_count": 1}}, "proves": {"_count": 2, "you": {"_count": 1}, "Malfoys": {"_count": 1}}, "ability": {"_count": 1, "of": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "connection": {"_count": 1, "between": {"_count": 1}}, "uncharacteristic": {"_count": 1, "sign": {"_count": 1}}, "wonderful": {"_count": 1, "plan": {"_count": 1}}, "flaw": {"_count": 1, "to": {"_count": 1}}, "impression": {"_count": 1, "": {"_count": 1}}, "bunch": {"_count": 1, "of": {"_count": 1}}, "fact": {"_count": 3, "so": {"_count": 1}, "by": {"_count": 1}, "from": {"_count": 1}}, "chilly": {"_count": 1, "mist": {"_count": 1}}, "compliment": {"_count": 1, "so": {"_count": 1}}, "Fudge": {"_count": 1, "had": {"_count": 1}}, "encounter": {"_count": 1, "to": {"_count": 1}}, "uncomfortable": {"_count": 1, "encounter": {"_count": 1}}, "extremely": {"_count": 1, "gloomy": {"_count": 1}}, "mist": {"_count": 1, "": {"_count": 1}}, "strange": {"_count": 1, "new": {"_count": 1}}, "Muggle": {"_count": 1, "dunghill": {"_count": 1}}, "front": {"_count": 1, "page": {"_count": 1}}, "autumn": {"_count": 1, "": {"_count": 1}}, "Friday": {"_count": 1, "I": {"_count": 1}}, "missive": {"_count": 1, "every": {"_count": 1}}, "filthy": {"_count": 1, "had": {"_count": 1}}, "likes": {"_count": 1, "his": {"_count": 1}}, "smelly": {"_count": 1, "spidery": {"_count": 1}}, "important": {"_count": 2, "to": {"_count": 1}, "news": {"_count": 1}}, "vision": {"_count": 1, "of": {"_count": 1}}, "engagement": {"_count": 1, "thats": {"_count": 1}}, "uncertainty": {"_count": 1, "with": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "gloomy": {"_count": 1}}, "ways": {"_count": 1, "easier": {"_count": 1}}, "necklace": {"_count": 4, "for": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "might": {"_count": 1}}, "lovely": {"_count": 1, "um": {"_count": 1}}, "austere": {"_count": 1, "efficiency": {"_count": 1}}, "look": {"_count": 1, "as": {"_count": 1}}, "charming": {"_count": 1, "young": {"_count": 1}}, "fabled": {"_count": 1, "prophecy": {"_count": 1}}, "\u2018Chosen": {"_count": 1, "One": {"_count": 1}}, "notion": {"_count": 1, "because": {"_count": 1}}, "enthusiastic": {"_count": 1, "greeting": {"_count": 1}}, "confusion": {"_count": 1, "I": {"_count": 1}}, "weekend": {"_count": 2, "But": {"_count": 1}, "sir": {"_count": 1}}, "Saturday": {"_count": 2, "": {"_count": 2}}, "dungeon": {"_count": 1, "": {"_count": 1}}, "renewed": {"_count": 1, "outbreak": {"_count": 1}}, "popular": {"_count": 1, "all": {"_count": 1}}, "past": {"_count": 1, "week": {"_count": 1}}, "objection": {"_count": 1, "": {"_count": 1}}, "anecdote": {"_count": 1, "and": {"_count": 1}}, "Prince": {"_count": 1, "character": {"_count": 1}}, "hard": {"_count": 1, "work": {"_count": 1}}, "jibe": {"_count": 1, "sipping": {"_count": 1}}, "If": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "Hogwarts": {"_count": 1, "": {"_count": 1}}, "strangest": {"_count": 1, "power": {"_count": 1}}, "magpielike": {"_count": 1, "tendency": {"_count": 1}}, "particularly": {"_count": 1, "will": {"_count": 1}}, "terms": {"_count": 1, "project": {"_count": 1}}, "hole": {"_count": 1, "which": {"_count": 1}}, "team": {"_count": 1, "Well": {"_count": 1}}, "sudden": {"_count": 2, "madness": {"_count": 1}, "change": {"_count": 1}}, "strategy": {"_count": 1, "did": {"_count": 1}}, "good": {"_count": 1, "eh": {"_count": 1}}, "shall": {"_count": 1, "": {"_count": 1}}, "crucial": {"_count": 2, "juncture": {"_count": 1}, "match": {"_count": 1}}, "being": {"_count": 1, "the": {"_count": 1}}, "sprout": {"_count": 1, "Im": {"_count": 1}}, "satsuma": {"_count": 1, "": {"_count": 1}}, "Fleur": {"_count": 1, "decided": {"_count": 1}}, "affecting": {"_count": 1, "scene": {"_count": 1}}, "intrusion": {"_count": 1, "he": {"_count": 1}}, "oneoff": {"_count": 1, "connection": {"_count": 1}}, "definitely": {"_count": 1, "proves": {"_count": 1}}, "Fenrir": {"_count": 1, "Grey": {"_count": 1}}, "intriguing": {"_count": 2, "subject": {"_count": 2}}, "real": {"_count": 2, "memory": {"_count": 1}, "": {"_count": 1}}, "memory": {"_count": 3, "with": {"_count": 1}, "her": {"_count": 1}, "Harry": {"_count": 1}}, "other": {"_count": 1, "memory": {"_count": 1}}, "travesty": {"_count": 1, "of": {"_count": 1}}, "irritating": {"_count": 1, "sight": {"_count": 1}}, "whispered": {"_count": 1, "Slughorn": {"_count": 1}}, "disastrous": {"_count": 1, "interview": {"_count": 1}}, "frail": {"_count": 1, "build": {"_count": 1}}, "enchantment": {"_count": 1, "purely": {"_count": 1}}, "interruption": {"_count": 1, "": {"_count": 1}}, "oakmatured": {"_count": 1, "mead": {"_count": 1}}, "ominous": {"_count": 1, "pronouncement": {"_count": 1}}, "lapse": {"_count": 1, "of": {"_count": 1}}, "appointment": {"_count": 1, "": {"_count": 1}}, "highly": {"_count": 1, "made": {"_count": 1}}, "suited": {"_count": 1, "him": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "death": {"_count": 1, "and": {"_count": 1}}, "visit": {"_count": 1, "had": {"_count": 1}}, "name": {"_count": 1, "he": {"_count": 1}}, "notice": {"_count": 1, "he": {"_count": 1}}, "hopeful": {"_count": 1, "mood": {"_count": 1}}, "corridor": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "giant": {"_count": 1, "spider": {"_count": 1}}, "abuse": {"_count": 1, "of": {"_count": 1}}, "raised": {"_count": 1, "as": {"_count": 1}}, "Horcrux": {"_count": 1, "seemed": {"_count": 1}}, "puts": {"_count": 1, "you": {"_count": 1}}, "respect": {"_count": 1, "interest": {"_count": 1}}, "unlikely": {"_count": 1, "coupling": {"_count": 1}}, "wrecked": {"_count": 1, "soaked": {"_count": 1}}, "hidden": {"_count": 1, "treasure": {"_count": 1}}, "junk": {"_count": 1, "": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "and": {"_count": 1}}, "simply": {"_count": 1, "by": {"_count": 1}}, "patch": {"_count": 1, "of": {"_count": 1}}, "boat": {"_count": 2, "safe": {"_count": 1}, "so": {"_count": 1}}, "island": {"_count": 2, "": {"_count": 1}, "Dumbledore": {"_count": 1}}, "drink": {"_count": 2, "this": {"_count": 1}, "it": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "pleasant": {"_count": 1, "chat": {"_count": 1}}, "world": {"_count": 2, "anyway": {"_count": 1}, "that": {"_count": 1}}, "jinx": {"_count": 1, "excruciating": {"_count": 1}}, "agony": {"_count": 1, "Snape": {"_count": 1}}, "Remus": {"_count": 1, "said": {"_count": 1}}, "portrait": {"_count": 1, "Professor": {"_count": 1}}, "sight": {"_count": 1, "For": {"_count": 1}}, "most": {"_count": 1, "dangerous": {"_count": 1}}, "singular": {"_count": 1, "sight": {"_count": 1}}, "jagged": {"_count": 1, "cut": {"_count": 1}}, "mulch": {"_count": 1, "experienced": {"_count": 1}}, "crime": {"_count": 1, "on": {"_count": 1}}, "obituary": {"_count": 1, "he": {"_count": 1}}, "superfast": {"_count": 1, "feat": {"_count": 1}}, "argument": {"_count": 1, "": {"_count": 1}}, "Lord": {"_count": 1, "Thing": {"_count": 1}}, "protection": {"_count": 1, "": {"_count": 1}}, "attitude": {"_count": 1, "before": {"_count": 1}}, "doormat": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "general": {"_count": 1, "area": {"_count": 1}}, "Siriuss": {"_count": 1, "bike": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "": {"_count": 1}}, "cozy": {"_count": 1, "little": {"_count": 1}}, "weddings": {"_count": 1, "over": {"_count": 1}}, "Snitch": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "song": {"_count": 1, "said": {"_count": 1}}, "muck": {"_count": 1, "said": {"_count": 1}}, "selfsame": {"_count": 1, "connection": {"_count": 1}}, "coolest": {"_count": 1, "of": {"_count": 1}}, "parchment": {"_count": 1, "tracing": {"_count": 1}}, "Bathilda": {"_count": 1, "my": {"_count": 1}}, "dramatic": {"_count": 1, "change": {"_count": 1}}, "end": {"_count": 1, "has": {"_count": 1}}, "faded": {"_count": 1, "old": {"_count": 1}}, "heat": {"_count": 1, "": {"_count": 1}}, "special": {"_count": 1, "connection": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "vast": {"_count": 1, "sculpture": {"_count": 1}}, "treatment": {"_count": 1, "of": {"_count": 1}}, "went": {"_count": 1, "unnoticed": {"_count": 1}}, "unwelcome": {"_count": 1, "conclusion": {"_count": 1}}, "belonged": {"_count": 1, "to": {"_count": 1}}, "dismal": {"_count": 1, "gray": {"_count": 1}}, "foul": {"_count": 1, "addition": {"_count": 1}}, "meandering": {"_count": 1, "pointless": {"_count": 1}}, "accounts": {"_count": 1, "no": {"_count": 1}}, "possibility": {"_count": 1, "": {"_count": 1}}, "snow": {"_count": 1, "": {"_count": 1}}, "graveyard": {"_count": 1, "and": {"_count": 1}}, "row": {"_count": 1, "of": {"_count": 1}}, "uneasy": {"_count": 1, "conclusion": {"_count": 1}}, "breathed": {"_count": 1, "Hermione": {"_count": 1}}, "Please": {"_count": 1, "Hermione": {"_count": 1}}, "journey": {"_count": 1, "had": {"_count": 1}}, "The": {"_count": 1, "wand": {"_count": 1}}, "damning": {"_count": 1, "new": {"_count": 1}}, "abrupt": {"_count": 1, "rupture": {"_count": 1}}, "brief": {"_count": 1, "boyhood": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}, "small": {"_count": 1, "instance": {"_count": 1}}, "near": {"_count": 1, "but": {"_count": 1}}, "lessthanwarm": {"_count": 1, "welcome": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "nutter": {"_count": 1, "was": {"_count": 1}}, "sign": {"_count": 1, "again": {"_count": 1}}, "wrong": {"_count": 1, "all": {"_count": 1}}, "Hallows": {"_count": 1, "business": {"_count": 1}}, "Greyback": {"_count": 1, "": {"_count": 1}}, "changes": {"_count": 1, "things": {"_count": 1}}, "highest": {"_count": 1, "honor": {"_count": 1}}, "ere": {"_count": 1, "see": {"_count": 1}}, "sword": {"_count": 3, "": {"_count": 3}}, "scum": {"_count": 1, "outside": {"_count": 1}}, "knife": {"_count": 1, "": {"_count": 1}}, "cellar": {"_count": 1, "": {"_count": 1}}, "Shell": {"_count": 1, "Cottage": {"_count": 1}}, "cottage": {"_count": 1, "too": {"_count": 1}}, "dawn": {"_count": 1, "than": {"_count": 1}}, "difficult": {"_count": 1, "": {"_count": 1}}, "interview": {"_count": 1, "with": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "degree": {"_count": 1, "of": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "holds": {"_count": 1, "true": {"_count": 1}}, "still": {"_count": 1, "something": {"_count": 1}}, "Griphook": {"_count": 1, "if": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "Bill": {"_count": 1, "went": {"_count": 1}}, "odd": {"_count": 1, "phenomenon": {"_count": 1}}, "vault": {"_count": 1, "he": {"_count": 1}}, "whether": {"_count": 1, "in": {"_count": 1}}, "Nevilles": {"_count": 1, "brows": {"_count": 1}}, "rooms": {"_count": 1, "been": {"_count": 1}}, "statue": {"_count": 1, "at": {"_count": 1}}, "fast": {"_count": 1, "never": {"_count": 1}}, "damned": {"_count": 1, "door": {"_count": 1}}, "object": {"_count": 1, "": {"_count": 1}}, "diadem": {"_count": 1, "thing": {"_count": 1}}, "battle": {"_count": 1, "enter": {"_count": 1}}, "wanted": {"_count": 1, "him": {"_count": 1}}, "shack": {"_count": 1, "and": {"_count": 1}}, "remorse": {"_count": 1, "Severus": {"_count": 1}}, "makes": {"_count": 1, "matters": {"_count": 1}}, "familiar": {"_count": 1, "place": {"_count": 1}}, "twofold": {"_count": 1, "connection": {"_count": 1}}, "din": {"_count": 1, "Fight": {"_count": 1}}}, "some": {"_count": 856, "stupid": {"_count": 9, "new": {"_count": 1}, "thing": {"_count": 1}, "trick": {"_count": 1}, "boy": {"_count": 1}, "showoff": {"_count": 1}, "little": {"_count": 1}, "teacher": {"_count": 1}, "noble": {"_count": 1}, "castle": {"_count": 1}}, "silly": {"_count": 2, "stunt": {"_count": 1}, "school": {"_count": 1}}, "reason": {"_count": 26, "the": {"_count": 2}, "he": {"_count": 4}, "So": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 2}, "Mrs": {"_count": 1}, "Harry": {"_count": 1}, "glanced": {"_count": 1}, "many": {"_count": 1}, "she": {"_count": 1}, "every": {"_count": 1}, "Snape": {"_count": 1}, "Hagrid": {"_count": 1}, "wanted": {"_count": 1}, "looked": {"_count": 2}, "had": {"_count": 2}, "it": {"_count": 1}, "said": {"_count": 1}, "thats": {"_count": 1}}, "sign": {"_count": 8, "of": {"_count": 7}, "some": {"_count": 1}}, "food": {"_count": 8, "": {"_count": 4}, "and": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}}, "unknown": {"_count": 3, "relation": {"_count": 1}, "substance": {"_count": 1}, "magic": {"_count": 1}}, "of": {"_count": 133, "Dudleys": {"_count": 1}, "those": {"_count": 3}, "it": {"_count": 5}, "these": {"_count": 4}, "everything": {"_count": 1}, "the": {"_count": 43}, "them": {"_count": 25}, "whom": {"_count": 3}, "this": {"_count": 2}, "his": {"_count": 17}, "Nevilles": {"_count": 1}, "you": {"_count": 2}, "its": {"_count": 2}, "their": {"_count": 3}, "Krums": {"_count": 1}, "em": {"_count": 2}, "Harrys": {"_count": 1}, "your": {"_count": 9}, "us": {"_count": 2}, "Dumbledores": {"_count": 2}, "her": {"_count": 1}, "which": {"_count": 2}, "our": {"_count": 1}}, "clothes": {"_count": 1, "": {"_count": 1}}, "rations": {"_count": 1, "said": {"_count": 1}}, "point": {"_count": 3, "but": {"_count": 1}, "in": {"_count": 1}, "realize": {"_count": 1}}, "amber": {"_count": 1, "liquid": {"_count": 1}}, "things": {"_count": 4, "he": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 2}}, "were": {"_count": 2, "afraid": {"_count": 1}, "bent": {"_count": 1}}, "just": {"_count": 1, "wanted": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "o": {"_count": 9, "the": {"_count": 5}, "those": {"_count": 1}, "them": {"_count": 1}, "themll": {"_count": 1}, "you": {"_count": 1}}, "huge": {"_count": 1, "joke": {"_count": 1}}, "firsthand": {"_count": 1, "experience": {"_count": 1}}, "money": {"_count": 5, "outta": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "under": {"_count": 1}}, "difficulty": {"_count": 3, "and": {"_count": 1}, "trying": {"_count": 1}, "": {"_count": 1}}, "basic": {"_count": 1, "potion": {"_count": 1}}, "secret": {"_count": 3, "magic": {"_count": 1}, "plan": {"_count": 1}, "path": {"_count": 1}}, "hanging": {"_count": 1, "out": {"_count": 1}}, "fighting": {"_count": 1, "over": {"_count": 1}}, "wizarding": {"_count": 1, "families": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "strange": {"_count": 4, "reason": {"_count": 1}, "accident": {"_count": 1}, "language": {"_count": 1}, "fortresslike": {"_count": 1}}, "magic": {"_count": 1, "out": {"_count": 1}}, "interesting": {"_count": 3, "stuff": {"_count": 1}, "local": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 1, "led": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 1}, "very": {"_count": 1}, "long": {"_count": 1}}, "nerve": {"_count": 2, "said": {"_count": 1}, "hes": {"_count": 1}}, "sleep": {"_count": 5, "": {"_count": 4}, "too": {"_count": 1}}, "breakfast": {"_count": 5, "": {"_count": 4}, "Harry": {"_count": 1}}, "troll": {"_count": 1, "blood": {"_count": 1}}, "extra": {"_count": 2, "money": {"_count": 2}}, "sparkling": {"_count": 1, "with": {"_count": 1}}, "glittering": {"_count": 1, "with": {"_count": 1}}, "story": {"_count": 1, "Harry": {"_count": 1}}, "presents": {"_count": 1, "": {"_count": 1}}, "bacon": {"_count": 1, "or": {"_count": 1}}, "time": {"_count": 19, "later": {"_count": 3}, "": {"_count": 3}, "that": {"_count": 1}, "until": {"_count": 1}, "after": {"_count": 1}, "before": {"_count": 3}, "said": {"_count": 1}, "in": {"_count": 1}, "ago": {"_count": 1}, "vague": {"_count": 1}, "When": {"_count": 1}, "what": {"_count": 1}, "now": {"_count": 1}}, "cakes": {"_count": 1, "and": {"_count": 1}}, "antiDark": {"_count": 1, "Arts": {"_count": 1}}, "readin": {"_count": 1, "said": {"_count": 1}}, "friends": {"_count": 4, "of": {"_count": 1}, "ter": {"_count": 1}, "": {"_count": 2}}, "brandy": {"_count": 1, "fer": {"_count": 1}}, "cockand": {"_count": 1, "bull": {"_count": 1}}, "stalking": {"_count": 1, "beast": {"_count": 1}}, "sort": {"_count": 29, "of": {"_count": 29}}, "sacrifices": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "nettle": {"_count": 1}}, "other": {"_count": 8, "things": {"_count": 1}, "monster": {"_count": 1}, "Order": {"_count": 1}, "means": {"_count": 1}, "way": {"_count": 1}, "member": {"_count": 1}, "people": {"_count": 1}, "damn": {"_count": 1}}, "protection": {"_count": 1, "forever": {"_count": 1}}, "ice": {"_count": 1, "cream": {"_count": 1}}, "old": {"_count": 4, "witch": {"_count": 2}, "habits": {"_count": 1}, "fishandchip": {"_count": 1}}, "pretty": {"_count": 2, "nasty": {"_count": 1}, "difficult": {"_count": 1}}, "extremely": {"_count": 2, "odd": {"_count": 2}}, "more": {"_count": 20, "today": {"_count": 1}, "lasting": {"_count": 1}, "money": {"_count": 1}, "tea": {"_count": 1}, "chocolate": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 4}, "staring": {"_count": 1}, "then": {"_count": 1}, "hats": {"_count": 1}, "chairs": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 1}, "cant": {"_count": 1}, "firewhisky": {"_count": 1}, "concrete": {"_count": 1}, "Horcruxes": {"_count": 1}}, "excited": {"_count": 1, "first": {"_count": 1}}, "giant": {"_count": 2, "umbrellasized": {"_count": 1}, "hand": {"_count": 1}}, "borrowed": {"_count": 1, "Spellotape": {"_count": 1}}, "handson": {"_count": 1, "experience": {"_count": 1}}, "gold": {"_count": 7, "and": {"_count": 1}, "into": {"_count": 1}, "this": {"_count": 1}, "from": {"_count": 1}, "out": {"_count": 1}, "coins": {"_count": 1}, "to": {"_count": 1}}, "banshee": {"_count": 1, "he": {"_count": 1}}, "wizards": {"_count": 3, "like": {"_count": 2}, "as": {"_count": 1}}, "by": {"_count": 2, "Percy": {"_count": 1}, "the": {"_count": 1}}, "third": {"_count": 1, "years": {"_count": 1}}, "kind": {"_count": 24, "of": {"_count": 22}, "was": {"_count": 1}, "but": {"_count": 1}}, "punishmenti": {"_count": 1, "We": {"_count": 1}}, "Mandrakes": {"_count": 1, "": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "privacy": {"_count": 2, "": {"_count": 2}}, "very": {"_count": 7, "unpleasant": {"_count": 1}, "valuable": {"_count": 1}, "quick": {"_count": 1}, "strange": {"_count": 1}, "irresponsible": {"_count": 1}, "bad": {"_count": 1}, "important": {"_count": 1}}, "water": {"_count": 4, "": {"_count": 2}, "from": {"_count": 1}, "then": {"_count": 1}}, "catch": {"_count": 1, "you": {"_count": 1}}, "weighted": {"_count": 1, "down": {"_count": 1}}, "work": {"_count": 3, "and": {"_count": 1}, "done": {"_count": 1}, "for": {"_count": 1}}, "heavy": {"_count": 1, "murmuring": {"_count": 1}}, "idea": {"_count": 2, "whos": {"_count": 1}, "": {"_count": 1}}, "serious": {"_count": 1, "thinking": {"_count": 1}}, "Muggle": {"_count": 1, "orphanage": {"_count": 1}}, "stuff": {"_count": 4, "all": {"_count": 1}, "up": {"_count": 1}, "yehve": {"_count": 1}, "to": {"_count": 1}}, "help": {"_count": 7, "": {"_count": 3}, "to": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "Griphook": {"_count": 1}}, "ten": {"_count": 6, "feet": {"_count": 4}, "minutes": {"_count": 1}, "yards": {"_count": 1}}, "information": {"_count": 1, "for": {"_count": 1}}, "ugly": {"_count": 1, "old": {"_count": 1}}, "confidence": {"_count": 1, "into": {"_count": 1}}, "weird": {"_count": 1, "crab": {"_count": 1}}, "tea": {"_count": 4, "out": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}}, "manners": {"_count": 1, "into": {"_count": 1}}, "slugs": {"_count": 1, "and": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "highly": {"_count": 1, "polished": {"_count": 1}}, "terrifying": {"_count": 1, "new": {"_count": 1}}, "chocolate": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 1}, "Fred": {"_count": 1}, "Professor": {"_count": 1}}, "scattered": {"_count": 1, "rather": {"_count": 1}}, "new": {"_count": 4, "subjects": {"_count": 1}, "robes": {"_count": 1}, "blood": {"_count": 1}, "terror": {"_count": 1}}, "sinisterlooking": {"_count": 1, "monks": {"_count": 1}}, "pumpkin": {"_count": 1, "juice": {"_count": 1}}, "like": {"_count": 2, "Harry": {"_count": 1}, "that": {"_count": 1}}, "dreadful": {"_count": 2, "battle": {"_count": 1}, "crime": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "respect": {"_count": 4, "toward": {"_count": 1}, "yeh": {"_count": 1}, "": {"_count": 1}, "will": {"_count": 1}}, "practice": {"_count": 2, "": {"_count": 1}, "before": {"_count": 1}}, "star": {"_count": 1, "charts": {"_count": 1}}, "again": {"_count": 1, "tomorrow": {"_count": 1}}, "people": {"_count": 8, "reckon": {"_count": 1}, "this": {"_count": 1}, "have": {"_count": 1}, "and": {"_count": 1}, "can": {"_count": 1}, "Draco": {"_count": 1}, "whom": {"_count": 1}, "onto": {"_count": 1}}, "butterbeer": {"_count": 1, "really": {"_count": 1}}, "unwelcome": {"_count": 1, "news": {"_count": 1}}, "sullen": {"_count": 1, "muttering": {"_count": 1}}, "worn": {"_count": 1, "stone": {"_count": 1}}, "satisfaction": {"_count": 3, "But": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}}, "comfort": {"_count": 1, "to": {"_count": 1}}, "Christmas": {"_count": 2, "cake": {"_count": 1}, "baubles": {"_count": 1}}, "git": {"_count": 1, "like": {"_count": 1}}, "thinking": {"_count": 1, "over": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}, "problems": {"_count": 1, "with": {"_count": 1}}, "Patronus": {"_count": 1, "said": {"_count": 1}}, "really": {"_count": 2, "good": {"_count": 1}, "nice": {"_count": 1}}, "foulsmelling": {"_count": 1, "green": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "six": {"_count": 1, "feet": {"_count": 1}}, "act": {"_count": 1, "of": {"_count": 1}}, "changes": {"_count": 2, "in": {"_count": 1}, "will": {"_count": 1}}, "shred": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "proof": {"_count": 1, "said": {"_count": 1}}, "amazing": {"_count": 1, "solution": {"_count": 1}}, "Dark": {"_count": 3, "Magic": {"_count": 1}, "rite": {"_count": 1}, "wizard": {"_count": 1}}, "surprising": {"_count": 1, "news": {"_count": 1}}, "doubt": {"_count": 1, "about": {"_count": 1}}, "Muggles": {"_count": 1, "to": {"_count": 1}}, "hard": {"_count": 1, "surface": {"_count": 1}}, "horrible": {"_count": 2, "travesty": {"_count": 1}, "way": {"_count": 1}}, "swotty": {"_count": 1, "little": {"_count": 1}}, "tinpot": {"_count": 1, "car": {"_count": 1}}, "poor": {"_count": 1, "old": {"_count": 1}}, "change": {"_count": 1, "": {"_count": 1}}, "wood": {"_count": 1, "for": {"_count": 1}}, "foreign": {"_count": 1, "school": {"_count": 1}}, "book": {"_count": 1, "or": {"_count": 1}}, "programs": {"_count": 1, "look": {"_count": 1}}, "common": {"_count": 1, "goblin": {"_count": 1}}, "grisly": {"_count": 1, "neon": {"_count": 1}}, "fun": {"_count": 3, "with": {"_count": 2}, "he": {"_count": 1}}, "assistance": {"_count": 1, "from": {"_count": 1}}, "smoothing": {"_count": 1, "over": {"_count": 1}}, "Owl": {"_count": 1, "Treats": {"_count": 1}}, "for": {"_count": 3, "smart": {"_count": 1}, "Harry": {"_count": 1}, "Winky": {"_count": 1}}, "trepidation": {"_count": 1, "Harry": {"_count": 1}}, "decent": {"_count": 1, "robes": {"_count": 1}}, "brains": {"_count": 1, "in": {"_count": 1}}, "four": {"_count": 1, "hundred": {"_count": 1}}, "inquiry": {"_count": 1, "of": {"_count": 1}}, "seven": {"_count": 1, "hundred": {"_count": 1}}, "toast": {"_count": 1, "": {"_count": 1}}, "books": {"_count": 1, "that": {"_count": 1}}, "ink": {"_count": 1, "and": {"_count": 1}}, "dark": {"_count": 1, "London": {"_count": 1}}, "distant": {"_count": 2, "chamber": {"_count": 1}, "country": {"_count": 1}}, "mulled": {"_count": 1, "wine": {"_count": 1}}, "vine": {"_count": 1, "said": {"_count": 1}}, "students": {"_count": 1, "were": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "parchment": {"_count": 2, "and": {"_count": 2}}, "individual": {"_count": 1, "shots": {"_count": 1}}, "horrific": {"_count": 1, "monster": {"_count": 1}}, "harebrained": {"_count": 1, "scheme": {"_count": 1}}, "simple": {"_count": 1, "spellbooks": {"_count": 1}}, "fascinating": {"_count": 2, "new": {"_count": 1}, "Dark": {"_count": 1}}, "good": {"_count": 5, "general": {"_count": 1}, "ones": {"_count": 1}, "Mr": {"_count": 1}, "hard": {"_count": 1}, "in": {"_count": 1}}, "dinner": {"_count": 1, "after": {"_count": 1}}, "purple": {"_count": 2, "liquid": {"_count": 1}, "potion": {"_count": 1}}, "Filibusters": {"_count": 1, "Fireworks": {"_count": 1}}, "impressive": {"_count": 1, "new": {"_count": 1}}, "presentopening": {"_count": 1, "too": {"_count": 1}}, "bagpipes": {"_count": 1, "were": {"_count": 1}}, "drinks": {"_count": 1, "": {"_count": 1}}, "sense": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "don": {"_count": 1, "understand": {"_count": 1}}, "whod": {"_count": 2, "always": {"_count": 1}, "even": {"_count": 1}}, "wholl": {"_count": 1, "hold": {"_count": 1}}, "map": {"_count": 1, "Potter": {"_count": 1}}, "funny": {"_count": 2, "rumors": {"_count": 2}}, "miracle": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "bookshelves": {"_count": 1, "": {"_count": 1}}, "Pepperup": {"_count": 1, "Potion": {"_count": 1}}, "newspapers": {"_count": 1, "in": {"_count": 1}}, "fruit": {"_count": 1, "into": {"_count": 1}}, "experience": {"_count": 2, "of": {"_count": 2}}, "names": {"_count": 1, "for": {"_count": 1}}, "trials": {"_count": 1, "come": {"_count": 1}}, "notice": {"_count": 1, "some": {"_count": 1}}, "chance": {"_count": 1, "to": {"_count": 1}}, "company": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "material": {"_count": 1}}, "twenty": {"_count": 4, "feet": {"_count": 3}, "minutes": {"_count": 1}}, "muttered": {"_count": 1, "and": {"_count": 1}}, "robes": {"_count": 1, "for": {"_count": 1}}, "form": {"_count": 2, "of": {"_count": 2}}, "peace": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "pajamas": {"_count": 1, "and": {"_count": 1}}, "crackpot": {"_count": 2, "story": {"_count": 1}, "spell": {"_count": 1}}, "word": {"_count": 1, "of": {"_count": 1}}, "pathetic": {"_count": 1, "reporter": {"_count": 1}}, "excuse": {"_count": 1, "to": {"_count": 1}}, "different": {"_count": 1, "dress": {"_count": 1}}, "small": {"_count": 4, "clue": {"_count": 1}, "portion": {"_count": 1}, "fierce": {"_count": 1}, "protection": {"_count": 1}}, "invisible": {"_count": 2, "force": {"_count": 1}, "line": {"_count": 1}}, "fresh": {"_count": 3, "way": {"_count": 1}, "air": {"_count": 2}}, "weirdos": {"_count": 1, "prison": {"_count": 1}}, "loonys": {"_count": 1, "after": {"_count": 1}}, "naughty": {"_count": 1, "kid": {"_count": 1}}, "craning": {"_count": 1, "their": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "low": {"_count": 1, "cloud": {"_count": 1}}, "farfetched": {"_count": 1, "story": {"_count": 1}}, "son": {"_count": 1, "of": {"_count": 1}}, "No": {"_count": 1, "ones": {"_count": 1}}, "Extendable": {"_count": 1, "Ears": {"_count": 1}}, "particularly": {"_count": 1, "painful": {"_count": 1}}, "sandwiches": {"_count": 1, "": {"_count": 1}}, "fifteen": {"_count": 1, "years": {"_count": 1}}, "enormous": {"_count": 2, "heavenly": {"_count": 1}, "animal": {"_count": 1}}, "lunch": {"_count": 1, "you": {"_count": 1}}, "way": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "of": {"_count": 1}, "ahead": {"_count": 1}, "that": {"_count": 1}}, "control": {"_count": 2, "over": {"_count": 2}}, "waving": {"_count": 1, "at": {"_count": 1}}, "diseased": {"_count": 1, "internal": {"_count": 1}}, "timidlooking": {"_count": 1, "second": {"_count": 1}}, "fellow": {"_count": 1, "fourth": {"_count": 1}}, "conclusive": {"_count": 1, "explanation": {"_count": 1}}, "important": {"_count": 1, "stuff": {"_count": 1}}, "are": {"_count": 2, "more": {"_count": 1}, "calling": {"_count": 1}}, "slid": {"_count": 1, "right": {"_count": 1}}, "coffee": {"_count": 1, "": {"_count": 1}}, "distance": {"_count": 2, "away": {"_count": 2}}, "fourth": {"_count": 1, "years": {"_count": 1}}, "lines": {"_count": 1, "for": {"_count": 1}}, "clearly": {"_count": 1, "just": {"_count": 1}}, "guff": {"_count": 1, "about": {"_count": 1}}, "passes": {"_count": 1, "just": {"_count": 1}}, "homework": {"_count": 1, "said": {"_count": 1}}, "real": {"_count": 1, "responsibility": {"_count": 1}}, "advice": {"_count": 2, "which": {"_count": 1}, "about": {"_count": 1}}, "trumpedup": {"_count": 1, "charge": {"_count": 1}}, "grave": {"_count": 1, "peril": {"_count": 1}}, "proper": {"_count": 1, "Defense": {"_count": 1}}, "smoking": {"_count": 1, "fiery": {"_count": 1}}, "looking": {"_count": 3, "rather": {"_count": 1}, "perfectly": {"_count": 1}, "confused": {"_count": 1}}, "defense": {"_count": 1, "then": {"_count": 1}}, "mad": {"_count": 2, "idea": {"_count": 2}}, "anxiouslooking": {"_count": 1, "second": {"_count": 1}}, "Puking": {"_count": 1, "Pastilles": {"_count": 1}}, "truly": {"_count": 2, "spectacular": {"_count": 2}}, "English": {"_count": 1, "they": {"_count": 1}}, "creature": {"_count": 1, "whose": {"_count": 1}}, "monstrous": {"_count": 2, "bird": {"_count": 1}, "weighty": {"_count": 1}}, "cant": {"_count": 2, "": {"_count": 2}}, "concern": {"_count": 1, "at": {"_count": 1}}, "part": {"_count": 4, "of": {"_count": 4}}, "rather": {"_count": 1, "unusual": {"_count": 1}}, "deadly": {"_count": 1, "germ": {"_count": 1}}, "mince": {"_count": 1, "pies": {"_count": 1}}, "improvement": {"_count": 2, "": {"_count": 2}}, "means": {"_count": 1, "of": {"_count": 1}}, "noxious": {"_count": 1, "gas": {"_count": 1}}, "foolhardy": {"_count": 1, "trip": {"_count": 1}}, "silvery": {"_count": 1, "substance": {"_count": 1}}, "weeks": {"_count": 1, "prior": {"_count": 1}}, "gaping": {"_count": 1, "holes": {"_count": 1}}, "progress": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "daffodils": {"_count": 1, "not": {"_count": 1}}, "degree": {"_count": 1, "but": {"_count": 1}}, "lengths": {"_count": 1, "to": {"_count": 1}}, "surprise": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "encounters": {"_count": 1}}, "days": {"_count": 1, "I": {"_count": 1}}, "fact": {"_count": 1, "or": {"_count": 1}}, "lastminute": {"_count": 1, "studying": {"_count": 1}}, "cartwheels": {"_count": 1, "for": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "bright": {"_count": 1, "blue": {"_count": 1}}, "Slytherins": {"_count": 1, "bound": {"_count": 1}}, "firewhisky": {"_count": 1, "": {"_count": 1}}, "answers": {"_count": 1, "": {"_count": 1}}, "method": {"_count": 1, "of": {"_count": 1}}, "sixteen": {"_count": 1, "years": {"_count": 1}}, "tiny": {"_count": 2, "part": {"_count": 2}}, "wounds": {"_count": 1, "run": {"_count": 1}}, "Wizarding": {"_count": 1, "family": {"_count": 1}}, "reference": {"_count": 1, "to": {"_count": 1}}, "crumpled": {"_count": 1, "robes": {"_count": 1}}, "pudding": {"_count": 1, "and": {"_count": 1}}, "lurid": {"_count": 1, "green": {"_count": 1}}, "powder": {"_count": 1, "into": {"_count": 1}}, "spell": {"_count": 1, "or": {"_count": 1}}, "getting": {"_count": 1, "used": {"_count": 1}}, "dirt": {"_count": 1, "off": {"_count": 1}}, "fat": {"_count": 1, "old": {"_count": 1}}, "injuries": {"_count": 1, "you": {"_count": 1}}, "support": {"_count": 1, "for": {"_count": 1}}, "his": {"_count": 1, "gaze": {"_count": 1}}, "scales": {"_count": 1, "and": {"_count": 1}}, "loud": {"_count": 1, "clunks": {"_count": 1}}, "preferential": {"_count": 1, "treatment": {"_count": 1}}, "indication": {"_count": 1, "of": {"_count": 1}}, "apprehension": {"_count": 1, "": {"_count": 1}}, "filthy": {"_count": 1, "Muggle": {"_count": 1}}, "hot": {"_count": 2, "day": {"_count": 1}, "strong": {"_count": 1}}, "bogeys": {"_count": 1, "landed": {"_count": 1}}, "trouble": {"_count": 1, "": {"_count": 1}}, "measure": {"_count": 1, "of": {"_count": 1}}, "hint": {"_count": 1, "of": {"_count": 1}}, "clue": {"_count": 1, "as": {"_count": 1}}, "tooding": {"_count": 1, "": {"_count": 1}}, "shared": {"_count": 1, "glory": {"_count": 1}}, "trace": {"_count": 1, "of": {"_count": 1}}, "ideas": {"_count": 1, "on": {"_count": 1}}, "kinds": {"_count": 1, "of": {"_count": 1}}, "any": {"_count": 1, "time": {"_count": 1}}, "years": {"_count": 2, "now": {"_count": 1}, "however": {"_count": 1}}, "hours": {"_count": 1, "to": {"_count": 1}}, "Felix": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "spare": {"_count": 1}}, "bottles": {"_count": 1, "so": {"_count": 1}}, "curiosity": {"_count": 1, "about": {"_count": 1}}, "future": {"_count": 1, "Hogwarts": {"_count": 1}}, "care": {"_count": 1, "favoring": {"_count": 1}}, "still": {"_count": 1, "with": {"_count": 1}}, "familiar": {"_count": 1, "names": {"_count": 1}}, "wait": {"_count": 1, "AguamentiV": {"_count": 1}}, "harshsmelling": {"_count": 1, "green": {"_count": 1}}, "contamination": {"_count": 2, "": {"_count": 1}, "Arthur": {"_count": 1}}, "wolfish": {"_count": 1, "characteristics": {"_count": 1}}, "Snape": {"_count": 1, "killed": {"_count": 1}}, "obscure": {"_count": 1, "wizard": {"_count": 1}}, "including": {"_count": 1, "Harry": {"_count": 1}}, "portion": {"_count": 1, "of": {"_count": 1}}, "have": {"_count": 1, "that": {"_count": 1}}, "connection": {"_count": 2, "with": {"_count": 1}, "but": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "great": {"_count": 3, "magnet": {"_count": 1}, "slumbering": {"_count": 1}, "Room": {"_count": 1}}, "glasses": {"_count": 1, "": {"_count": 1}}, "veela": {"_count": 1, "when": {"_count": 1}}, "newborn": {"_count": 1, "unicorns": {"_count": 1}}, "questions": {"_count": 1, "for": {"_count": 1}}, "bearing": {"_count": 1, "silver": {"_count": 1}}, "mighty": {"_count": 1, "funny": {"_count": 1}}, "maroon": {"_count": 1, "socks": {"_count": 1}}, "less": {"_count": 1, "gifted": {"_count": 1}}, "use": {"_count": 1, "to": {"_count": 1}}, "Ministry": {"_count": 1, "hag": {"_count": 1}}, "flying": {"_count": 1, "chunks": {"_count": 1}}, "hairs": {"_count": 1, "for": {"_count": 1}}, "papers": {"_count": 1, "he": {"_count": 1}}, "hope": {"_count": 1, "some": {"_count": 1}}, "resilience": {"_count": 1, "": {"_count": 1}}, "protective": {"_count": 1, "enchantments": {"_count": 1}}, "wild": {"_count": 1, "mushrooms": {"_count": 1}}, "perverse": {"_count": 1, "slowmotion": {"_count": 1}}, "Well": {"_count": 1, "dont": {"_count": 1}}, "reservations": {"_count": 1, "however": {"_count": 1}}, "longlost": {"_count": 1, "relation": {"_count": 1}}, "bizarre": {"_count": 2, "fastgrowing": {"_count": 1}, "manylipped": {"_count": 1}}, "Dumbledoreish": {"_count": 1, "power": {"_count": 1}}, "dittany": {"_count": 1, "on": {"_count": 1}}, "longforgotten": {"_count": 1, "joke": {"_count": 1}}, "months": {"_count": 1, "": {"_count": 1}}, "five": {"_count": 1, "years": {"_count": 1}}, "brief": {"_count": 1, "but": {"_count": 1}}, "parody": {"_count": 1, "of": {"_count": 1}}, "yards": {"_count": 1, "away": {"_count": 1}}, "painful": {"_count": 1, "internal": {"_count": 1}}, "solid": {"_count": 1, "information": {"_count": 1}}, "violent": {"_count": 1, "allergic": {"_count": 1}}, "rest": {"_count": 3, "": {"_count": 2}, "now": {"_count": 1}}, "knives": {"_count": 1, "to": {"_count": 1}}, "pictures": {"_count": 1, "in": {"_count": 1}}, "goblins": {"_count": 1, "and": {"_count": 1}}, "toppled": {"_count": 1, "over": {"_count": 1}}, "cheese": {"_count": 1, "and": {"_count": 1}}, "enthusiastically": {"_count": 1, "others": {"_count": 1}}, "objection": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "traveling": {"_count": 1}}, "carrying": {"_count": 1, "or": {"_count": 1}}, "already": {"_count": 1, "in": {"_count": 1}}, "surface": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "remorse": {"_count": 2, "Riddle": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "replied": {"_count": 1}}, "cases": {"_count": 1, "their": {"_count": 1}}, "fifty": {"_count": 1, "yards": {"_count": 1}}}, "stupid": {"_count": 183, "new": {"_count": 1, "fashion": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 19}, "?": {"_count": 3}, "!": {"_count": 1}}, "people": {"_count": 1, "drumming": {"_count": 1}}, "but": {"_count": 4, "as": {"_count": 1}, "the": {"_count": 1}, "Black": {"_count": 1}, "it": {"_count": 1}}, "snapped": {"_count": 1, "Aunt": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "purpose": {"_count": 1}}, "fat": {"_count": 1, "rat": {"_count": 1}}, "with": {"_count": 1, "flying": {"_count": 1}}, "thing": {"_count": 5, "Longbottoms": {"_count": 1}, "to": {"_count": 3}, "about": {"_count": 1}}, "said": {"_count": 7, "Ron": {"_count": 4}, "Ginny": {"_count": 1}, "Harry": {"_count": 2}}, "He": {"_count": 1, "took": {"_count": 1}}, "we": {"_count": 3, "know": {"_count": 1}, "shouldntve": {"_count": 1}, "cant": {"_count": 1}}, "as": {"_count": 5, "to": {"_count": 2}, "he": {"_count": 1}, "you": {"_count": 2}}, "first": {"_count": 1, "years": {"_count": 1}}, "dinner": {"_count": 1, "party": {"_count": 1}}, "to": {"_count": 3, "take": {"_count": 2}, "listen": {"_count": 1}}, "scar": {"_count": 1, "on": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 6, "Ginny": {"_count": 1}, "girl": {"_count": 1}, "village": {"_count": 1}, "man": {"_count": 1}, "beard": {"_count": 1}, "boy": {"_count": 1}}, "enough": {"_count": 7, "to": {"_count": 7}}, "knew": {"_count": 1, "that": {"_count": 1}}, "furball": {"_count": 1, "left": {"_count": 1}}, "abou": {"_count": 1, "their": {"_count": 1}}, "kept": {"_count": 1, "drifting": {"_count": 1}}, "rat": {"_count": 1, "": {"_count": 1}}, "trick": {"_count": 1, "Sirius": {"_count": 1}}, "thinking": {"_count": 1, "it": {"_count": 1}}, "someone": {"_count": 1, "who": {"_count": 1}}, "really": {"_count": 1, "now": {"_count": 1}}, "he": {"_count": 4, "might": {"_count": 1}, "must": {"_count": 1}, "knows": {"_count": 1}, "said": {"_count": 1}}, "rules": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 1, "at": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "lumos": {"_count": 1, "She": {"_count": 1}}, "you": {"_count": 3, "know": {"_count": 2}, "havent": {"_count": 1}}, "Ill": {"_count": 1, "come": {"_count": 1}}, "article": {"_count": 1, "": {"_count": 1}}, "ship": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "isnt": {"_count": 1}}, "great": {"_count": 2, "prat": {"_count": 1}, "oafs": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "if": {"_count": 3, "we": {"_count": 1}, "you": {"_count": 1}, "wed": {"_count": 1}}, "prat": {"_count": 1, "talking": {"_count": 1}}, "walking": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 3, "annoyed": {"_count": 1}, "not": {"_count": 1}, "dirty": {"_count": 1}}, "Hermione": {"_count": 2, "snapped": {"_count": 1}, "or": {"_count": 1}}, "I": {"_count": 2, "was": {"_count": 1}, "fancy": {"_count": 1}}, "about": {"_count": 1, "their": {"_count": 1}}, "Daily": {"_count": 1, "Prophet": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "boy": {"_count": 2, "whos": {"_count": 1}, "said": {"_count": 1}}, "showoff": {"_count": 1, "we": {"_count": 1}}, "umbrella": {"_count": 1, "stand": {"_count": 1}}, "hat": {"_count": 1, "": {"_count": 1}}, "boggart": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "woman": {"_count": 1, "he": {"_count": 1}}, "Dream": {"_count": 1, "Oracle": {"_count": 1}}, "things": {"_count": 2, "yourselves": {"_count": 1}, "to": {"_count": 1}}, "dream": {"_count": 1, "diary": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "flying": {"_count": 1, "horse": {"_count": 1}}, "textbook": {"_count": 1, "said": {"_count": 1}}, "grin": {"_count": 1, "": {"_count": 1}}, "teaching": {"_count": 1, "me": {"_count": 1}}, "like": {"_count": 1, "he": {"_count": 1}}, "Ministry": {"_count": 1, "isnt": {"_count": 1}}, "lie": {"_count": 1, "Hermione": {"_count": 1}}, "questions": {"_count": 1, "follow": {"_count": 1}}, "of": {"_count": 1, "you": {"_count": 1}}, "Harry": {"_count": 3, "was": {"_count": 1}, "": {"_count": 2}}, "then": {"_count": 2, "both": {"_count": 1}, "I": {"_count": 1}}, "they": {"_count": 2, "looked": {"_count": 1}, "were": {"_count": 1}}, "tea": {"_count": 1, "shop": {"_count": 1}}, "puffedup": {"_count": 1, "powercrazy": {"_count": 1}}, "Snitch": {"_count": 1, "walking": {"_count": 1}}, "dreams": {"_count": 1, "about": {"_count": 1}}, "warnins": {"_count": 1, "": {"_count": 1}}, "song": {"_count": 1, "said": {"_count": 1}}, "she": {"_count": 2, "snarled": {"_count": 1}, "was": {"_count": 1}}, "subject": {"_count": 3, "in": {"_count": 1}, "Dyou": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 1, "suggest": {"_count": 1}}, "for": {"_count": 1, "admitting": {"_count": 1}}, "teacher": {"_count": 1, "": {"_count": 1}}, "situation": {"_count": 1, "to": {"_count": 1}}, "scribbles": {"_count": 1, "of": {"_count": 1}}, "party": {"_count": 1, "neither": {"_count": 1}}, "nickname": {"_count": 1, "and": {"_count": 1}}, "Harrys": {"_count": 1, "snogged": {"_count": 1}}, "socalled": {"_count": 1, "Prince": {"_count": 1}}, "book": {"_count": 1, "": {"_count": 1}}, "Apparition": {"_count": 1, "": {"_count": 1}}, "Prince": {"_count": 1, "isnt": {"_count": 1}}, "Marietta": {"_count": 1, "had": {"_count": 1}}, "hoop": {"_count": 1, "anyway": {"_count": 1}}, "suggestion": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "man": {"_count": 1}}, "it": {"_count": 2, "could": {"_count": 1}, "wasnt": {"_count": 1}}, "noble": {"_count": 1, "reason": {"_count": 1}}, "pointless": {"_count": 1, "irritating": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "ugly": {"_count": 1, "faces": {"_count": 1}}, "bleeding": {"_count": 1, "headdress": {"_count": 1}}, "castle": {"_count": 1, "and": {"_count": 1}}}, "new": {"_count": 390, "fashion": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "word": {"_count": 1, "Wont": {"_count": 1}}, "earmuffs": {"_count": 1, "": {"_count": 1}}, "computer": {"_count": 2, "he": {"_count": 1}, "games": {"_count": 1}}, "hes": {"_count": 1, "not": {"_count": 1}}, "video": {"_count": 1, "camera": {"_count": 1}}, "knickerbockers": {"_count": 1, "Uncle": {"_count": 1}}, "school": {"_count": 4, "uniform": {"_count": 1}, "year": {"_count": 2}, "if": {"_count": 1}}, "uniform": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "b": {"_count": 1, "book": {"_count": 1}}, "Nimbus": {"_count": 3, "Two": {"_count": 3}}, "questions": {"_count": 1, "that": {"_count": 1}}, "owl": {"_count": 1, "for": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "robes": {"_count": 4, "anyway": {"_count": 1}, "": {"_count": 1}, "tried": {"_count": 1}, "he": {"_count": 1}}, "either": {"_count": 1, "with": {"_count": 1}}, "Hogwarts": {"_count": 1, "robes": {"_count": 1}}, "Gryffindor": {"_count": 3, "and": {"_count": 1}, "prefects": {"_count": 1}, "Keeper": {"_count": 1}}, "year": {"_count": 2, "at": {"_count": 1}, "Lets": {"_count": 1}}, "Gryffindors": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "celebrity": {"_count": 1, "": {"_count": 1}}, "secret": {"_count": 1, "passageway": {"_count": 1}}, "password": {"_count": 5, "to": {"_count": 1}, "": {"_count": 2}, "again": {"_count": 1}, "she": {"_count": 1}}, "broomstick": {"_count": 2, "was": {"_count": 1}, "for": {"_count": 1}}, "to": {"_count": 5, "them": {"_count": 1}, "think": {"_count": 1}, "the": {"_count": 2}, "tell": {"_count": 1}}, "tree": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 1, "chess": {"_count": 1}}, "chess": {"_count": 1, "set": {"_count": 1}}, "home": {"_count": 2, "tomorrow": {"_count": 1}, "up": {"_count": 1}}, "resolution": {"_count": 1, "not": {"_count": 1}}, "spring": {"_count": 2, "in": {"_count": 2}}, "quills": {"_count": 2, "for": {"_count": 1}, "a": {"_count": 1}}, "books": {"_count": 6, "hed": {"_count": 1}, "": {"_count": 3}, "under": {"_count": 1}, "and": {"_count": 1}}, "Defense": {"_count": 8, "Against": {"_count": 8}}, "Muggle": {"_count": 1, "Protection": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "?": {"_count": 3}}, "quill": {"_count": 2, "": {"_count": 2}}, "cauldron": {"_count": 2, "": {"_count": 1}, "Charlies": {"_count": 1}}, "students": {"_count": 5, "into": {"_count": 2}, "forward": {"_count": 1}, "walked": {"_count": 1}, "welcome": {"_count": 1}}, "years": {"_count": 1, "password": {"_count": 1}}, "one": {"_count": 6, "": {"_count": 2}, "for": {"_count": 1}, "looks": {"_count": 1}, "he": {"_count": 1}, "felt": {"_count": 1}}, "training": {"_count": 3, "program": {"_count": 3}}, "tactics": {"_count": 1, "Fred": {"_count": 1}}, "theories": {"_count": 1, "into": {"_count": 1}}, "moves": {"_count": 2, "": {"_count": 1}, "have": {"_count": 1}}, "Seeker": {"_count": 2, "": {"_count": 2}}, "Slytherin": {"_count": 2, "Seeker": {"_count": 1}, "Captain": {"_count": 1}}, "brooms": {"_count": 2, "too": {"_count": 1}, "": {"_count": 1}}, "attack": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "dawn": {"_count": 1, "sir": {"_count": 1}}, "ingredients": {"_count": 1, "into": {"_count": 1}}, "handknitted": {"_count": 1, "sweater": {"_count": 1}}, "sweater": {"_count": 2, "from": {"_count": 1}, "green": {"_count": 1}}, "term": {"_count": 4, "started": {"_count": 2}, "was": {"_count": 1}, "arrived": {"_count": 1}}, "leads": {"_count": 1, "": {"_count": 1}}, "bottle": {"_count": 1, "out": {"_count": 1}}, "noises": {"_count": 1, "": {"_count": 1}}, "subjects": {"_count": 5, "marking": {"_count": 1}, "as": {"_count": 1}, "Care": {"_count": 1}, "than": {"_count": 1}, "today": {"_count": 1}}, "owner": {"_count": 1, "of": {"_count": 1}}, "diary": {"_count": 1, "entries": {"_count": 1}}, "target": {"_count": 1, "has": {"_count": 1}}, "name": {"_count": 2, "a": {"_count": 1}, "Lord": {"_count": 1}}, "company": {"_count": 2, "car": {"_count": 2}}, "wand": {"_count": 9, "for": {"_count": 1}, "look": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}, "that": {"_count": 1}, "made": {"_count": 1}}, "bow": {"_count": 1, "tie": {"_count": 1}}, "emotion": {"_count": 1, "overtook": {"_count": 1}}, "freedom": {"_count": 1, "": {"_count": 1}}, "ones": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "too": {"_count": 1}}, "schoolbooks": {"_count": 1, "which": {"_count": 1}}, "pet": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "in": {"_count": 1}}, "Head": {"_count": 2, "Boy": {"_count": 1}, "deserves": {"_count": 1}}, "teachers": {"_count": 1, "to": {"_count": 1}}, "appointment": {"_count": 1, "Dumbledore": {"_count": 1}}, "passwords": {"_count": 1, "\u2018Fortuna": {"_count": 1}}, "schedule": {"_count": 1, "": {"_count": 1}}, "class": {"_count": 1, "": {"_count": 1}}, "Arithmancy": {"_count": 1, "book": {"_count": 1}}, "potion": {"_count": 1, "today": {"_count": 1}}, "season": {"_count": 1, "": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "Captain": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "broom": {"_count": 7, "of": {"_count": 1}, "yet": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "an": {"_count": 1}, "to": {"_count": 1}}, "generation": {"_count": 1, "of": {"_count": 1}}, "ink": {"_count": 1, "figure": {"_count": 1}}, "voice": {"_count": 1, "a": {"_count": 1}}, "rat": {"_count": 2, "whats": {"_count": 1}, "you": {"_count": 1}}, "notice": {"_count": 1, "": {"_count": 1}}, "security": {"_count": 3, "measures": {"_count": 1}, "plans": {"_count": 1}, "an": {"_count": 1}}, "boggart": {"_count": 1, "": {"_count": 1}}, "jug": {"_count": 1, "in": {"_count": 1}}, "sound": {"_count": 1, "Muffled": {"_count": 1}}, "corridor": {"_count": 2, "then": {"_count": 1}, "when": {"_count": 1}}, "owners": {"_count": 1, "said": {"_count": 1}}, "regime": {"_count": 7, "had": {"_count": 1}, "at": {"_count": 1}, "thinks": {"_count": 1}, "": {"_count": 4}}, "heart": {"_count": 1, "": {"_count": 1}}, "constellation": {"_count": 1, "": {"_count": 1}}, "order": {"_count": 2, "form": {"_count": 1}, "than": {"_count": 1}}, "dress": {"_count": 3, "said": {"_count": 1}, "robes": {"_count": 2}}, "job": {"_count": 1, "today": {"_count": 1}}, "face": {"_count": 1, "there": {"_count": 1}}, "staff": {"_count": 1, "members": {"_count": 1}}, "pictures": {"_count": 1, "forming": {"_count": 1}}, "course": {"_count": 1, "schedules": {"_count": 1}}, "stand": {"_count": 1, "on": {"_count": 1}}, "levels": {"_count": 1, "of": {"_count": 1}}, "Dark": {"_count": 1, "creature": {"_count": 1}}, "banners": {"_count": 1, "most": {"_count": 1}}, "position": {"_count": 2, "sir": {"_count": 1}, "of": {"_count": 1}}, "angle": {"_count": 2, "Hagrid": {"_count": 1}, "then": {"_count": 1}}, "tinsel": {"_count": 1, "hair": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 5, "more": {"_count": 3}, "sharper": {"_count": 1}, "darker": {"_count": 1}}, "song": {"_count": 1, "which": {"_count": 1}}, "breeds": {"_count": 1, "of": {"_count": 1}}, "scenes": {"_count": 1, "seemed": {"_count": 1}}, "teeth": {"_count": 1, "were": {"_count": 1}}, "powers": {"_count": 1, "powers": {"_count": 1}}, "socks": {"_count": 1, "": {"_count": 1}}, "vegetable": {"_count": 1, "patch": {"_count": 1}}, "names": {"_count": 1, "": {"_count": 1}}, "route": {"_count": 1, "and": {"_count": 1}}, "path": {"_count": 1, "for": {"_count": 1}}, "hand": {"_count": 1, "his": {"_count": 1}}, "silver": {"_count": 1, "hand": {"_count": 1}}, "headmaster": {"_count": 1, "yet": {"_count": 1}}, "talent": {"_count": 2, "had": {"_count": 1}, "on": {"_count": 1}}, "bit": {"_count": 1, "was": {"_count": 1}}, "boy": {"_count": 2, "Kreacher": {"_count": 1}, "resembled": {"_count": 1}}, "prefects": {"_count": 2, "badge": {"_count": 2}}, "set": {"_count": 2, "of": {"_count": 2}}, "Cleansweep": {"_count": 2, "out": {"_count": 1}, "Eleven": {"_count": 1}}, "arrivals": {"_count": 4, "would": {"_count": 1}, "settled": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "evidence": {"_count": 3, "has": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "haircuts": {"_count": 1, "and": {"_count": 1}}, "And": {"_count": 1, "Hogwarts": {"_count": 1}}, "teacher": {"_count": 3, "had": {"_count": 1}, "Professor": {"_count": 1}, "without": {"_count": 1}}, "between": {"_count": 1, "permanence": {"_count": 1}}, "era": {"_count": 1, "of": {"_count": 1}}, "sign": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 1}, "on": {"_count": 1}}, "Keeper": {"_count": 3, "now": {"_count": 1}, "at": {"_count": 1}, "yet": {"_count": 1}}, "personll": {"_count": 1, "fit": {"_count": 1}}, "blood": {"_count": 1, "will": {"_count": 1}}, "program": {"_count": 1, "of": {"_count": 1}}, "pair": {"_count": 2, "of": {"_count": 2}}, "legislation": {"_count": 1, "giving": {"_count": 1}}, "laws": {"_count": 1, "to": {"_count": 1}}, "phase": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 2, "there": {"_count": 1}, "familiar": {"_count": 1}}, "move": {"_count": 1, "called": {"_count": 1}}, "advertisement": {"_count": 1, "for": {"_count": 1}}, "captain": {"_count": 1, "Montague": {"_count": 1}}, "Beaters": {"_count": 1, "bats": {"_count": 1}}, "Gurg": {"_count": 2, "Golgomath": {"_count": 1}, "two": {"_count": 1}}, "right": {"_count": 1, "before": {"_count": 1}}, "vista": {"_count": 1, "of": {"_count": 1}}, "homework": {"_count": 1, "diary": {"_count": 1}}, "red": {"_count": 1, "bicycle": {"_count": 1}}, "cut": {"_count": 1, "right": {"_count": 1}}, "signs": {"_count": 1, "had": {"_count": 1}}, "rule": {"_count": 1, "she": {"_count": 1}}, "jinx": {"_count": 1, "and": {"_count": 1}}, "bruises": {"_count": 1, "": {"_count": 1}}, "star": {"_count": 1, "chart": {"_count": 1}}, "Divination": {"_count": 2, "teacher": {"_count": 2}}, "headmistress": {"_count": 2, "": {"_count": 1}, "Professor": {"_count": 1}}, "times": {"_count": 1, "": {"_count": 1}}, "screening": {"_count": 1, "process": {"_count": 1}}, "approach": {"_count": 1, "something": {"_count": 1}}, "Minister": {"_count": 3, "of": {"_count": 2}, "and": {"_count": 1}}, "premises": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 3, "and": {"_count": 1}, "somebody": {"_count": 1}, "but": {"_count": 1}}, "optimism": {"_count": 1, "": {"_count": 1}}, "arrival": {"_count": 3, "": {"_count": 1}, "straighten": {"_count": 1}, "and": {"_count": 1}}, "feeling": {"_count": 1, "of": {"_count": 1}}, "clothes": {"_count": 1, "": {"_count": 1}}, "secretary": {"_count": 1, "in": {"_count": 1}}, "phenomenon": {"_count": 1, "": {"_count": 1}}, "measures": {"_count": 1, "taken": {"_count": 1}}, "Ministers": {"_count": 1, "tough": {"_count": 1}}, "mistress": {"_count": 1, "Kreacher": {"_count": 1}}, "offices": {"_count": 1, "in": {"_count": 1}}, "copy": {"_count": 3, "of": {"_count": 3}}, "purple": {"_count": 1, "Pygmy": {"_count": 1}}, "traveling": {"_count": 1, "cloak": {"_count": 1}}, "gloomy": {"_count": 1, "Tonks": {"_count": 1}}, "Patronus": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 1, "commentators": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "classes": {"_count": 1, "to": {"_count": 1}}, "parchment": {"_count": 1, "and": {"_count": 1}}, "book": {"_count": 1, "and": {"_count": 1}}, "find": {"_count": 1, "called": {"_count": 1}}, "team": {"_count": 1, "beaming": {"_count": 1}}, "Chaser": {"_count": 1, "Demelza": {"_count": 1}}, "spell": {"_count": 1, "was": {"_count": 1}}, "extralarge": {"_count": 1, "sugar": {"_count": 1}}, "policy": {"_count": 1, "of": {"_count": 1}}, "wizards": {"_count": 1, "must": {"_count": 1}}, "aggression": {"_count": 1, "did": {"_count": 1}}, "laughing": {"_count": 1, "joking": {"_count": 1}}, "festive": {"_count": 1, "password": {"_count": 1}}, "development": {"_count": 1, "with": {"_count": 1}}, "sweaters": {"_count": 1, "when": {"_count": 1}}, "boyfriend": {"_count": 1, "had": {"_count": 1}}, "portrait": {"_count": 1, "had": {"_count": 1}}, "poster": {"_count": 1, "boy": {"_count": 1}}, "biography": {"_count": 1, "The": {"_count": 1}}, "Flutterby": {"_count": 2, "bushes": {"_count": 2}}, "like": {"_count": 1, "Rons": {"_count": 1}}, "Sneakoscope": {"_count": 1, "": {"_count": 1}}, "brutally": {"_count": 1, "short": {"_count": 1}}, "customers": {"_count": 1, "orders": {"_count": 1}}, "terror": {"_count": 1, "to": {"_count": 1}}, "Wizarding": {"_count": 3, "neighbors": {"_count": 1}, "order": {"_count": 2}}, "plaque": {"_count": 1, "read": {"_count": 1}}, "official": {"_count": 1, "position": {"_count": 1}}, "skin": {"_count": 1, "stretched": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "ideas": {"_count": 1, "they": {"_count": 1}}, "mellow": {"_count": 1, "and": {"_count": 1}}, "has": {"_count": 1, "happened": {"_count": 1}}, "headstone": {"_count": 1, "he": {"_count": 1}}, "best": {"_count": 2, "friend": {"_count": 2}}, "friendship": {"_count": 1, "Dumbledore": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "victims": {"_count": 1, "for": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "person": {"_count": 1, "": {"_count": 1}}, "vistas": {"_count": 1, "of": {"_count": 1}}, "selfabsorption": {"_count": 1, "that": {"_count": 1}}, "correspondent": {"_count": 1, "Rodent": {"_count": 1}}, "idea": {"_count": 1, "that": {"_count": 1}}, "master": {"_count": 4, "": {"_count": 1}, "at": {"_count": 1}, "before": {"_count": 1}, "removed": {"_count": 1}}, "life": {"_count": 1, "were": {"_count": 1}}, "establishments": {"_count": 1, "dedicated": {"_count": 1}}, "tent": {"_count": 1, "but": {"_count": 1}}, "question": {"_count": 1, "however": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "plan": {"_count": 1, "She": {"_count": 1}}, "world": {"_count": 1, "we": {"_count": 1}}, "challenger": {"_count": 1, "": {"_count": 1}}, "sun": {"_count": 1, "dazzled": {"_count": 1}}}, "fashion": {"_count": 20, "": {"_count": 6, ".": {"_count": 6}}, "years": {"_count": 1, "ago": {"_count": 1}}, "asked": {"_count": 1, "how": {"_count": 1}}, "apparently": {"_count": 1, "with": {"_count": 1}}, "barely": {"_count": 1, "moving": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "at": {"_count": 1, "Dean": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "glared": {"_count": 1}}, "with": {"_count": 1, "many": {"_count": 1}}, "for": {"_count": 1, "students": {"_count": 1}}, "like": {"_count": 1, "everything": {"_count": 1}}, "mumbled": {"_count": 1, "Dumbledore": {"_count": 1}}, "and": {"_count": 1, "looking": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "drummed": {"_count": 4, "his": {"_count": 1, "fingers": {"_count": 1}}, "madly": {"_count": 1, "inside": {"_count": 1}}, "her": {"_count": 1, "fingers": {"_count": 1}}, "lightly": {"_count": 1, "on": {"_count": 1}}}, "fingers": {"_count": 247, "on": {"_count": 7, "the": {"_count": 5}, "which": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 47, ".": {"_count": 46}, "?": {"_count": 1}}, "through": {"_count": 5, "his": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 2}}, "and": {"_count": 24, "feet": {"_count": 2}, "it": {"_count": 1}, "slipped": {"_count": 1}, "toes": {"_count": 2}, "he": {"_count": 1}, "the": {"_count": 1}, "then": {"_count": 1}, "said": {"_count": 1}, "soared": {"_count": 1}, "began": {"_count": 1}, "put": {"_count": 1}, "passed": {"_count": 1}, "smashed": {"_count": 1}, "are": {"_count": 1}, "landed": {"_count": 1}, "crooning": {"_count": 1}, "hit": {"_count": 1}, "shot": {"_count": 1}, "was": {"_count": 1}, "shook": {"_count": 1}, "pulled": {"_count": 1}, "out": {"_count": 1}}, "under": {"_count": 3, "the": {"_count": 2}, "Harrys": {"_count": 1}}, "crossed": {"_count": 5, "in": {"_count": 2}, "eh": {"_count": 1}, "she": {"_count": 1}, "for": {"_count": 1}}, "in": {"_count": 5, "her": {"_count": 1}, "his": {"_count": 3}, "what": {"_count": 1}}, "Professor": {"_count": 1, "Quirrell": {"_count": 1}}, "showing": {"_count": 1, "pointed": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "certainly": {"_count": 1}}, "gently": {"_count": 1, "prodding": {"_count": 1}}, "at": {"_count": 6, "Mrs": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 2}, "a": {"_count": 1}}, "to": {"_count": 8, "her": {"_count": 2}, "the": {"_count": 2}, "make": {"_count": 1}, "indicate": {"_count": 2}, "his": {"_count": 1}}, "close": {"_count": 1, "on": {"_count": 1}}, "but": {"_count": 3, "Dobby": {"_count": 1}, "he": {"_count": 2}}, "together": {"_count": 7, "": {"_count": 4}, "and": {"_count": 1}, "she": {"_count": 1}, "in": {"_count": 1}}, "thickened": {"_count": 1, "the": {"_count": 1}}, "blowing": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 2, "fire": {"_count": 1}, "pod": {"_count": 1}}, "over": {"_count": 5, "the": {"_count": 2}, "his": {"_count": 2}, "her": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "twisting": {"_count": 1, "madly": {"_count": 1}}, "tightened": {"_count": 1, "Harry": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "distractedly": {"_count": 2, "through": {"_count": 2}}, "as": {"_count": 4, "though": {"_count": 3}, "he": {"_count": 1}}, "revealing": {"_count": 1, "enormous": {"_count": 1}}, "slightly": {"_count": 1, "so": {"_count": 1}}, "into": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "impatiently": {"_count": 1, "out": {"_count": 1}}, "stuffed": {"_count": 1, "into": {"_count": 1}}, "were": {"_count": 8, "together": {"_count": 1}, "hastily": {"_count": 1}, "now": {"_count": 1}, "so": {"_count": 1}, "closing": {"_count": 1}, "a": {"_count": 1}, "moving": {"_count": 1}, "left": {"_count": 1}}, "clutching": {"_count": 1, "her": {"_count": 1}}, "had": {"_count": 2, "Harrys": {"_count": 1}, "even": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "tingling": {"_count": 1, "with": {"_count": 1}}, "clutched": {"_count": 1, "tightly": {"_count": 1}}, "arent": {"_count": 1, "full": {"_count": 1}}, "pulling": {"_count": 1, "grotesquely": {"_count": 1}}, "trembling": {"_count": 2, "uncontrollably": {"_count": 1}, "slightly": {"_count": 1}}, "caressed": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 2, "expression": {"_count": 1}, "black": {"_count": 1}}, "from": {"_count": 2, "Wormtails": {"_count": 1}, "around": {"_count": 1}}, "then": {"_count": 3, "trembling": {"_count": 1}, "her": {"_count": 1}, "attempted": {"_count": 1}}, "too": {"_count": 1, "were": {"_count": 1}}, "grew": {"_count": 1, "so": {"_count": 1}}, "He": {"_count": 1, "concentrated": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "with": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "now": {"_count": 1, "biting": {"_count": 1}}, "clenched": {"_count": 2, "tightly": {"_count": 2}}, "staring": {"_count": 3, "at": {"_count": 3}}, "which": {"_count": 2, "as": {"_count": 1}, "were": {"_count": 1}}, "leaving": {"_count": 1, "two": {"_count": 1}}, "for": {"_count": 2, "his": {"_count": 1}, "more": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "closed": {"_count": 6, "around": {"_count": 3}, "over": {"_count": 1}, "tightly": {"_count": 1}, "briefly": {"_count": 1}}, "struggling": {"_count": 1, "for": {"_count": 1}}, "slipped": {"_count": 1, "on": {"_count": 1}}, "ripped": {"_count": 1, "off": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "managed": {"_count": 1}}, "tightening": {"_count": 1, "over": {"_count": 1}}, "the": {"_count": 2, "sight": {"_count": 1}, "cloth": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "Malfoy": {"_count": 1, "left": {"_count": 1}}, "oh": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "absentmindedly": {"_count": 1, "caressing": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "brushing": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "encountered": {"_count": 1, "nothing": {"_count": 1}}, "fumbled": {"_count": 2, "in": {"_count": 1}, "for": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "still": {"_count": 1, "looking": {"_count": 1}}, "thinking": {"_count": 1, "thinking": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "groped": {"_count": 1, "for": {"_count": 1}}, "looking": {"_count": 1, "stunned": {"_count": 1}}, "inches": {"_count": 1, "from": {"_count": 1}}, "while": {"_count": 1, "inside": {"_count": 1}}, "already": {"_count": 1, "busy": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "Harry": {"_count": 1, "started": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "sketched": {"_count": 1, "quotation": {"_count": 1}}, "shaking": {"_count": 1, "hard": {"_count": 1}}, "tight": {"_count": 1, "swollen": {"_count": 1}}, "slackened": {"_count": 1, "": {"_count": 1}}, "tenderly": {"_count": 1, "upon": {"_count": 1}}, "pressed": {"_count": 1, "together": {"_count": 1}}, "flexing": {"_count": 1, "it": {"_count": 1}}, "kept": {"_count": 1, "appearing": {"_count": 1}}, "moved": {"_count": 1, "absentmindedly": {"_count": 1}}, "Harrys": {"_count": 1, "eyes": {"_count": 1}}, "watching": {"_count": 1, "it": {"_count": 1}}}, "steering": {"_count": 16, "wheel": {"_count": 10, "and": {"_count": 1}, "": {"_count": 4}, "a": {"_count": 1}, "around": {"_count": 1}, "completely": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "him": {"_count": 1, "out": {"_count": 1}}, "Harry": {"_count": 1, "so": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "dragon": {"_count": 1}}}, "wheel": {"_count": 11, "and": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "a": {"_count": 1, "little": {"_count": 1}}, "around": {"_count": 2, "they": {"_count": 1}, "": {"_count": 1}}, "completely": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "too": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}}, "eyes": {"_count": 1613, "fell": {"_count": 15, "on": {"_count": 6}, "instead": {"_count": 1}, "upon": {"_count": 7}, "immediately": {"_count": 1}}, "": {"_count": 262, ".": {"_count": 257}, "?": {"_count": 4}, "!": {"_count": 1}}, "fixed": {"_count": 34, "unblinkingly": {"_count": 2}, "on": {"_count": 13}, "meaningfully": {"_count": 1}, "insolently": {"_count": 1}, "over": {"_count": 1}, "upon": {"_count": 12}, "ahead": {"_count": 1}, "intently": {"_count": 1}, "resolutely": {"_count": 1}, "pitilessly": {"_count": 1}}, "narrowed": {"_count": 20, "": {"_count": 9}, "dangerously": {"_count": 1}, "as": {"_count": 2}, "ready": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 2}, "against": {"_count": 1}, "malevolently": {"_count": 1}, "over": {"_count": 1}, "slightly": {"_count": 1}}, "were": {"_count": 145, "light": {"_count": 1}, "on": {"_count": 1}, "crinkled": {"_count": 1}, "a": {"_count": 4}, "black": {"_count": 1}, "wide": {"_count": 6}, "glittering": {"_count": 2}, "moving": {"_count": 2}, "gleaming": {"_count": 2}, "reduced": {"_count": 1}, "popping": {"_count": 4}, "brighter": {"_count": 1}, "peering": {"_count": 1}, "dull": {"_count": 1}, "turning": {"_count": 1}, "full": {"_count": 3}, "fixed": {"_count": 10}, "flashing": {"_count": 1}, "closed": {"_count": 3}, "still": {"_count": 10}, "itching": {"_count": 1}, "reproachful": {"_count": 1}, "deceiving": {"_count": 1}, "framed": {"_count": 1}, "narrowed": {"_count": 2}, "shining": {"_count": 1}, "twinkling": {"_count": 2}, "extremely": {"_count": 1}, "boring": {"_count": 3}, "sparkling": {"_count": 1}, "unfocused": {"_count": 3}, "darting": {"_count": 3}, "traveling": {"_count": 1}, "now": {"_count": 3}, "suddenly": {"_count": 2}, "only": {"_count": 1}, "open": {"_count": 2}, "not": {"_count": 4}, "presently": {"_count": 1}, "blooming": {"_count": 1}, "rather": {"_count": 1}, "like": {"_count": 1}, "colder": {"_count": 1}, "alight": {"_count": 1}, "upon": {"_count": 1}, "starting": {"_count": 1}, "so": {"_count": 2}, "yellow": {"_count": 1}, "bulging": {"_count": 2}, "rolling": {"_count": 5}, "staring": {"_count": 1}, "watering": {"_count": 1}, "telling": {"_count": 1}, "visible": {"_count": 2}, "blazing": {"_count": 2}, "screwed": {"_count": 1}, "large": {"_count": 1}, "very": {"_count": 1}, "as": {"_count": 1}, "sweeping": {"_count": 1}, "growing": {"_count": 1}, "following": {"_count": 1}, "red": {"_count": 1}, "drawn": {"_count": 1}, "swimming": {"_count": 2}, "hazel": {"_count": 1}, "both": {"_count": 1}, "playing": {"_count": 1}, "small": {"_count": 1}, "flickering": {"_count": 1}, "puffy": {"_count": 2}, "sunken": {"_count": 2}, "wider": {"_count": 1}, "thick": {"_count": 1}, "no": {"_count": 1}, "gone": {"_count": 1}, "nothing": {"_count": 1}, "enormous": {"_count": 1}, "milkily": {"_count": 1}, "shut": {"_count": 1}, "huge": {"_count": 1}, "briefly": {"_count": 1}, "slits": {"_count": 1}}, "of": {"_count": 14, "the": {"_count": 6}, "a": {"_count": 1}, "Mrs": {"_count": 1}, "Sirius": {"_count": 1}, "every": {"_count": 1}, "many": {"_count": 1}, "all": {"_count": 1}, "Albus": {"_count": 1}, "everyone": {"_count": 1}}, "beneath": {"_count": 1, "her": {"_count": 1}}, "seemed": {"_count": 9, "to": {"_count": 7}, "overlarge": {"_count": 1}, "vast": {"_count": 1}}, "on": {"_count": 63, "his": {"_count": 8}, "": {"_count": 2}, "the": {"_count": 23}, "all": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 8}, "Colin": {"_count": 1}, "Rons": {"_count": 1}, "Harry": {"_count": 5}, "Hermione": {"_count": 2}, "him": {"_count": 2}, "Voldemort": {"_count": 1}, "Snape": {"_count": 1}, "each": {"_count": 1}, "Dumbledore": {"_count": 1}, "Zabini": {"_count": 1}, "our": {"_count": 1}, "a": {"_count": 1}, "Charing": {"_count": 1}, "Fleurs": {"_count": 1}}, "and": {"_count": 101, "thick": {"_count": 1}, "sat": {"_count": 1}, "a": {"_count": 11}, "slits": {"_count": 1}, "jetblack": {"_count": 1}, "spoke": {"_count": 2}, "said": {"_count": 4}, "met": {"_count": 1}, "jabbing": {"_count": 1}, "knew": {"_count": 3}, "her": {"_count": 1}, "staring": {"_count": 1}, "seemed": {"_count": 1}, "stared": {"_count": 2}, "clicking": {"_count": 1}, "attempted": {"_count": 1}, "muttered": {"_count": 1}, "sitting": {"_count": 1}, "very": {"_count": 1}, "examined": {"_count": 1}, "the": {"_count": 4}, "splashed": {"_count": 1}, "saw": {"_count": 2}, "fell": {"_count": 2}, "razorsharp": {"_count": 1}, "short": {"_count": 1}, "winking": {"_count": 1}, "was": {"_count": 3}, "throwing": {"_count": 1}, "avoid": {"_count": 1}, "scanning": {"_count": 1}, "folding": {"_count": 1}, "wondering": {"_count": 1}, "vanished": {"_count": 1}, "as": {"_count": 2}, "followed": {"_count": 1}, "looked": {"_count": 2}, "dropping": {"_count": 1}, "buried": {"_count": 2}, "put": {"_count": 1}, "for": {"_count": 2}, "find": {"_count": 1}, "two": {"_count": 1}, "hastily": {"_count": 1}, "found": {"_count": 1}, "dived": {"_count": 1}, "trilled": {"_count": 1}, "croaked": {"_count": 2}, "faced": {"_count": 1}, "entered": {"_count": 1}, "Hermione": {"_count": 1}, "began": {"_count": 1}, "wand": {"_count": 1}, "trickling": {"_count": 1}, "legs": {"_count": 1}, "matted": {"_count": 1}, "he": {"_count": 4}, "looking": {"_count": 1}, "feathery": {"_count": 1}, "sniggered": {"_count": 1}, "several": {"_count": 1}, "Harry": {"_count": 2}, "mouth": {"_count": 1}, "nodded": {"_count": 1}, "suddenly": {"_count": 1}, "turned": {"_count": 1}, "wanted": {"_count": 1}, "waiting": {"_count": 1}}, "to": {"_count": 19, "the": {"_count": 6}, "several": {"_count": 1}, "see": {"_count": 1}, "Harrys": {"_count": 1}, "Hermione": {"_count": 1}, "stare": {"_count": 1}, "leak": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}, "Mr": {"_count": 1}, "her": {"_count": 1}, "find": {"_count": 1}, "molelike": {"_count": 1}, "look": {"_count": 1}}, "glinting": {"_count": 10, "like": {"_count": 1}, "": {"_count": 4}, "maliciously": {"_count": 1}, "eerily": {"_count": 1}, "dangerously": {"_count": 1}, "as": {"_count": 1}, "through": {"_count": 1}}, "off": {"_count": 17, "the": {"_count": 6}, "them": {"_count": 1}, "you": {"_count": 2}, "each": {"_count": 1}, "Lucius": {"_count": 1}, "Harrys": {"_count": 1}, "Scabbers": {"_count": 1}, "her": {"_count": 2}, "Harry": {"_count": 1}, "him": {"_count": 1}}, "but": {"_count": 13, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "I": {"_count": 1}, "these": {"_count": 1}, "Harrys": {"_count": 1}, "Ron": {"_count": 1}, "did": {"_count": 1}, "not": {"_count": 1}, "they": {"_count": 1}, "with": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 1}, "allowed": {"_count": 1}}, "shut": {"_count": 10, "tight": {"_count": 2}, "said": {"_count": 1}, "and": {"_count": 2}, "banging": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 2}, "while": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "slid": {"_count": 5, "from": {"_count": 1}, "out": {"_count": 2}, "rapidly": {"_count": 1}, "over": {"_count": 1}}, "was": {"_count": 4, "twitching": {"_count": 1}, "the": {"_count": 1}, "small": {"_count": 1}, "swollen": {"_count": 1}}, "tottering": {"_count": 1, "piles": {"_count": 1}}, "stung": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "five": {"_count": 1, "Knuts": {"_count": 1}}, "shining": {"_count": 5, "like": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "red": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}, "strayed": {"_count": 1, "to": {"_count": 1}}, "away": {"_count": 7, "from": {"_count": 7}}, "lingered": {"_count": 8, "for": {"_count": 4}, "on": {"_count": 3}, "upon": {"_count": 1}}, "Harry": {"_count": 4, "looked": {"_count": 1}, "suddenly": {"_count": 1}, "snatched": {"_count": 1}, "saw": {"_count": 1}}, "for": {"_count": 12, "ages": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 5}, "emotion": {"_count": 1}, "his": {"_count": 1}, "nobody": {"_count": 2}}, "a": {"_count": 7, "gaunt": {"_count": 1}, "fraction": {"_count": 2}, "pointed": {"_count": 1}, "prominent": {"_count": 1}, "voice": {"_count": 1}, "distinctly": {"_count": 1}}, "flashed": {"_count": 7, "in": {"_count": 1}, "menacingly": {"_count": 1}, "": {"_count": 2}, "dangerously": {"_count": 1}, "every": {"_count": 1}, "scarlet": {"_count": 1}}, "just": {"_count": 3, "like": {"_count": 2}, "as": {"_count": 1}}, "when": {"_count": 5, "he": {"_count": 3}, "you": {"_count": 1}, "if": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "like": {"_count": 6, "a": {"_count": 3}, "his": {"_count": 1}, "pale": {"_count": 1}, "her": {"_count": 1}}, "glittered": {"_count": 6, "wickedly": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "strangely": {"_count": 1}, "there": {"_count": 1}}, "three": {"_count": 1, "noses": {"_count": 1}}, "staring": {"_count": 13, "at": {"_count": 5}, "blankly": {"_count": 1}, "sinisterly": {"_count": 1}, "back": {"_count": 1}, "up": {"_count": 1}, "straight": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 1}, "unblinkingly": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "saw": {"_count": 3, "Harry": {"_count": 1}, "his": {"_count": 1}, "any": {"_count": 1}}, "looked": {"_count": 10, "straight": {"_count": 1}, "strangely": {"_count": 2}, "alert": {"_count": 1}, "very": {"_count": 1}, "up": {"_count": 1}, "red": {"_count": 1}, "oddly": {"_count": 1}, "rather": {"_count": 1}, "at": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 1}, "whole": {"_count": 1}}, "are": {"_count": 4, "just": {"_count": 1}, "as": {"_count": 2}, "its": {"_count": 1}}, "from": {"_count": 9, "the": {"_count": 4}, "this": {"_count": 1}, "watering": {"_count": 1}, "Zacharias": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "filled": {"_count": 9, "with": {"_count": 8}, "slowly": {"_count": 1}}, "lingering": {"_count": 1, "on": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "not": {"_count": 1, "used": {"_count": 1}}, "stepped": {"_count": 1, "in": {"_count": 1}}, "twinkled": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "had": {"_count": 24, "appeared": {"_count": 1}, "turned": {"_count": 1}, "widened": {"_count": 2}, "been": {"_count": 5}, "fallen": {"_count": 2}, "belonged": {"_count": 1}, "returned": {"_count": 1}, "bulged": {"_count": 1}, "darted": {"_count": 1}, "blue": {"_count": 1}, "found": {"_count": 2}, "adjusted": {"_count": 1}, "filled": {"_count": 1}, "even": {"_count": 1}, "slid": {"_count": 1}, "a": {"_count": 1}, "followed": {"_count": 1}}, "blinked": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 7, "size": {"_count": 1}, "other": {"_count": 1}, "girl": {"_count": 1}, "face": {"_count": 1}, "head": {"_count": 1}, "place": {"_count": 1}, "flattened": {"_count": 1}}, "aglow": {"_count": 1, "": {"_count": 1}}, "wide": {"_count": 20, "as": {"_count": 1}, "and": {"_count": 3}, "open": {"_count": 4}, "enough": {"_count": 1}, "staring": {"_count": 1}, "with": {"_count": 2}, "": {"_count": 7}, "Ginny": {"_count": 1}}, "suddenly": {"_count": 4, "shone": {"_count": 1}, "widened": {"_count": 1}, "seemed": {"_count": 1}, "gleaming": {"_count": 1}}, "wider": {"_count": 1, "than": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "closed": {"_count": 9, "": {"_count": 5}, "and": {"_count": 2}, "as": {"_count": 1}, "concentrating": {"_count": 1}}, "jerked": {"_count": 1, "open": {"_count": 1}}, "flashing": {"_count": 7, "": {"_count": 3}, "over": {"_count": 1}, "at": {"_count": 1}, "dangerously": {"_count": 1}, "in": {"_count": 1}}, "that": {"_count": 10, "that": {"_count": 1}, "Harry": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 2}, "gave": {"_count": 2}, "I": {"_count": 1}, "seemed": {"_count": 1}, "were": {"_count": 1}}, "open": {"_count": 7, "but": {"_count": 1}, "and": {"_count": 1}, "facing": {"_count": 1}, "too": {"_count": 1}, "Harry": {"_count": 1}, "particularly": {"_count": 1}, "": {"_count": 1}}, "again": {"_count": 18, "wishing": {"_count": 1}, "": {"_count": 10}, "will": {"_count": 1}, "trying": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 3}, "Hermione": {"_count": 1}}, "his": {"_count": 7, "pointed": {"_count": 1}, "face": {"_count": 1}, "balaclava": {"_count": 1}, "hands": {"_count": 1}, "tongue": {"_count": 1}, "enormous": {"_count": 1}, "wand": {"_count": 1}}, "straying": {"_count": 1, "to": {"_count": 1}}, "glittering": {"_count": 11, "with": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "maliciously": {"_count": 1}, "": {"_count": 4}, "unpleasantly": {"_count": 1}, "dangerously": {"_count": 1}, "malevolently": {"_count": 1}}, "gleaming": {"_count": 9, "": {"_count": 3}, "in": {"_count": 2}, "out": {"_count": 1}, "eerily": {"_count": 1}, "through": {"_count": 1}, "with": {"_count": 1}}, "wandered": {"_count": 1, "past": {"_count": 1}}, "raked": {"_count": 2, "Harrys": {"_count": 2}}, "creating": {"_count": 1, "a": {"_count": 1}}, "twinkling": {"_count": 10, "": {"_count": 9}, "again": {"_count": 1}}, "popping": {"_count": 5, "alarmingly": {"_count": 1}, "": {"_count": 1}, "slightly": {"_count": 1}, "at": {"_count": 1}, "excitedly": {"_count": 1}}, "dancing": {"_count": 1, "": {"_count": 1}}, "alive": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 6, "you": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 2}, "of": {"_count": 1}}, "widen": {"_count": 3, "with": {"_count": 2}, "in": {"_count": 1}}, "huge": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "at": {"_count": 12, "Ron": {"_count": 1}, "Harry": {"_count": 5}, "the": {"_count": 4}, "exactly": {"_count": 1}, "her": {"_count": 1}}, "which": {"_count": 3, "had": {"_count": 1}, "remained": {"_count": 1}, "fell": {"_count": 1}}, "glinted": {"_count": 3, "and": {"_count": 1}, "how": {"_count": 1}, "through": {"_count": 1}}, "now": {"_count": 11, "on": {"_count": 1}, "": {"_count": 2}, "slits": {"_count": 1}, "shining": {"_count": 1}, "gleaming": {"_count": 2}, "and": {"_count": 1}, "sparkling": {"_count": 1}, "swollen": {"_count": 1}, "had": {"_count": 1}}, "against": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 2}}, "because": {"_count": 2, "Goyle": {"_count": 1}, "Im": {"_count": 1}}, "flickered": {"_count": 5, "toward": {"_count": 2}, "over": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "screwed": {"_count": 7, "up": {"_count": 5}, "tight": {"_count": 2}}, "he": {"_count": 12, "could": {"_count": 1}, "grabbed": {"_count": 1}, "squinted": {"_count": 1}, "saw": {"_count": 4}, "struggled": {"_count": 1}, "reread": {"_count": 1}, "had": {"_count": 2}, "allowed": {"_count": 1}}, "wandering": {"_count": 2, "vaguely": {"_count": 1}, "between": {"_count": 1}}, "werent": {"_count": 1, "popping": {"_count": 1}}, "frowning": {"_count": 1, "through": {"_count": 1}}, "frantically": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "as": {"_count": 19, "he": {"_count": 6}, "narrow": {"_count": 1}, "our": {"_count": 1}, "she": {"_count": 3}, "tightly": {"_count": 1}, "though": {"_count": 3}, "cold": {"_count": 1}, "they": {"_count": 2}, "the": {"_count": 1}}, "right": {"_count": 1, "away": {"_count": 1}}, "set": {"_count": 1, "with": {"_count": 1}}, "never": {"_count": 1, "left": {"_count": 1}}, "roved": {"_count": 4, "over": {"_count": 3}, "from": {"_count": 1}}, "tight": {"_count": 4, "he": {"_count": 1}, "shut": {"_count": 2}, "again": {"_count": 1}}, "if": {"_count": 2, "it": {"_count": 1}, "its": {"_count": 1}}, "it": {"_count": 2, "turned": {"_count": 1}, "was": {"_count": 1}}, "both": {"_count": 2, "its": {"_count": 1}, "of": {"_count": 1}}, "traveled": {"_count": 7, "from": {"_count": 2}, "up": {"_count": 1}, "the": {"_count": 1}, "over": {"_count": 2}, "to": {"_count": 1}}, "bright": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "upon": {"_count": 19, "Dumbledore": {"_count": 1}, "him": {"_count": 9}, "Harry": {"_count": 3}, "Harrys": {"_count": 2}, "them": {"_count": 1}, "Dumbledores": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "widening": {"_count": 12, "as": {"_count": 1}, "": {"_count": 4}, "innocently": {"_count": 1}, "behind": {"_count": 1}, "having": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 1}, "so": {"_count": 1}, "under": {"_count": 1}}, "swiveled": {"_count": 3, "around": {"_count": 1}, "in": {"_count": 1}, "backward": {"_count": 1}}, "behind": {"_count": 6, "his": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 1}, "halfmoon": {"_count": 1}}, "bulged": {"_count": 1, "and": {"_count": 1}}, "move": {"_count": 1, "to": {"_count": 1}}, "moved": {"_count": 8, "from": {"_count": 3}, "at": {"_count": 1}, "slowly": {"_count": 2}, "curiously": {"_count": 1}, "rapidly": {"_count": 1}}, "oddly": {"_count": 1, "bright": {"_count": 1}}, "darted": {"_count": 5, "downward": {"_count": 1}, "toward": {"_count": 2}, "to": {"_count": 1}, "onto": {"_count": 1}}, "rolled": {"_count": 4, "up": {"_count": 1}, "and": {"_count": 1}, "forward": {"_count": 1}, "upward": {"_count": 1}}, "there": {"_count": 5, "were": {"_count": 2}, "was": {"_count": 1}, "it": {"_count": 1}, "bloomed": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "moving": {"_count": 3, "from": {"_count": 1}, "over": {"_count": 1}, "carefully": {"_count": 1}}, "opened": {"_count": 2, "dramatically": {"_count": 1}, "and": {"_count": 1}}, "almost": {"_count": 2, "shut": {"_count": 1}, "closed": {"_count": 1}}, "into": {"_count": 3, "a": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}}, "immediately": {"_count": 2, "began": {"_count": 1}, "": {"_count": 1}}, "lazily": {"_count": 1, "as": {"_count": 1}}, "narrowing": {"_count": 3, "": {"_count": 1}, "slightly": {"_count": 1}, "but": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "flickering": {"_count": 2, "toward": {"_count": 1}, "between": {"_count": 1}}, "somber": {"_count": 1, "to": {"_count": 1}}, "bulging": {"_count": 6, "slightly": {"_count": 1}, "in": {"_count": 1}, "again": {"_count": 2}, "suddenly": {"_count": 1}, "": {"_count": 1}}, "full": {"_count": 3, "of": {"_count": 3}}, "snapped": {"_count": 3, "open": {"_count": 1}, "back": {"_count": 1}, "onto": {"_count": 1}}, "nevertheless": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 16, "a": {"_count": 5}, "an": {"_count": 1}, "their": {"_count": 2}, "his": {"_count": 2}, "Conjunctivitus": {"_count": 1}, "extreme": {"_count": 1}, "her": {"_count": 2}, "slits": {"_count": 1}, "it": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 12, "fixed": {"_count": 2}, "glinted": {"_count": 1}, "boring": {"_count": 2}, "closed": {"_count": 3}, "swimming": {"_count": 1}, "tight": {"_count": 2}, "puffy": {"_count": 1}}, "flicked": {"_count": 1, "to": {"_count": 1}}, "gleamed": {"_count": 3, "": {"_count": 1}, "momentarily": {"_count": 1}, "scarlet": {"_count": 1}}, "in": {"_count": 7, "horror": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}, "concentration": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}}, "Ron": {"_count": 1, "began": {"_count": 1}}, "following": {"_count": 4, "him": {"_count": 2}, "the": {"_count": 2}}, "started": {"_count": 1, "to": {"_count": 1}}, "Lumos": {"_count": 1, "he": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "said": {"_count": 2, "Lupin": {"_count": 1}, "a": {"_count": 1}}, "met": {"_count": 10, "they": {"_count": 1}, "Harrys": {"_count": 3}, "for": {"_count": 2}, "": {"_count": 2}, "Rons": {"_count": 1}, "over": {"_count": 1}}, "thought": {"_count": 1, "for": {"_count": 1}}, "dart": {"_count": 2, "to": {"_count": 1}, "sideways": {"_count": 1}}, "taking": {"_count": 1, "in": {"_count": 1}}, "continued": {"_count": 2, "to": {"_count": 2}}, "trying": {"_count": 3, "to": {"_count": 3}}, "became": {"_count": 5, "very": {"_count": 1}, "more": {"_count": 2}, "used": {"_count": 1}, "unfocused": {"_count": 1}}, "once": {"_count": 3, "more": {"_count": 2}, "and": {"_count": 1}}, "widened": {"_count": 13, "": {"_count": 3}, "to": {"_count": 1}, "behind": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 2}, "and": {"_count": 2}, "slightly": {"_count": 1}, "in": {"_count": 1}, "maliciously": {"_count": 1}}, "stood": {"_count": 1, "before": {"_count": 1}}, "puzzled": {"_count": 1, "under": {"_count": 1}}, "tightly": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 7, "sharp": {"_count": 1}, "very": {"_count": 1}, "he": {"_count": 1}, "unlike": {"_count": 1}, "that": {"_count": 1}, "tightly": {"_count": 1}, "like": {"_count": 1}}, "contract": {"_count": 1, "with": {"_count": 1}}, "or": {"_count": 1, "has": {"_count": 1}}, "short": {"_count": 2, "blond": {"_count": 1}, "scrubby": {"_count": 1}}, "performed": {"_count": 1, "the": {"_count": 1}}, "falling": {"_count": 1, "upon": {"_count": 1}}, "completely": {"_count": 1, "again": {"_count": 1}}, "swept": {"_count": 5, "over": {"_count": 2}, "up": {"_count": 1}, "the": {"_count": 2}}, "too": {"_count": 3, "he": {"_count": 1}, "clouded": {"_count": 1}, "were": {"_count": 1}}, "darting": {"_count": 5, "all": {"_count": 1}, "between": {"_count": 2}, "from": {"_count": 2}}, "blazing": {"_count": 2, "in": {"_count": 1}, "once": {"_count": 1}}, "hardening": {"_count": 2, "as": {"_count": 2}}, "rolling": {"_count": 6, "in": {"_count": 2}, "": {"_count": 1}, "from": {"_count": 1}, "it": {"_count": 1}, "upward": {"_count": 1}}, "brimming": {"_count": 4, "with": {"_count": 4}}, "youre": {"_count": 1, "alive": {"_count": 1}}, "dear": {"_count": 1, "said": {"_count": 1}}, "hard": {"_count": 1, "and": {"_count": 1}}, "appear": {"_count": 1, "far": {"_count": 1}}, "snapping": {"_count": 1, "open": {"_count": 1}}, "misting": {"_count": 1, "over": {"_count": 1}}, "thats": {"_count": 1, "where": {"_count": 1}}, "back": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "then": {"_count": 2, "at": {"_count": 1}, "realizing": {"_count": 1}}, "Ignore": {"_count": 1, "the": {"_count": 1}}, "standing": {"_count": 1, "quietly": {"_count": 1}}, "round": {"_count": 1, "with": {"_count": 1}}, "travel": {"_count": 1, "over": {"_count": 1}}, "dont": {"_count": 1, "go": {"_count": 1}}, "skinned": {"_count": 2, "for": {"_count": 1}, "fer": {"_count": 1}}, "swollen": {"_count": 2, "and": {"_count": 2}}, "very": {"_count": 2, "red": {"_count": 1}, "bright": {"_count": 1}}, "beaming": {"_count": 1, "as": {"_count": 1}}, "alight": {"_count": 1, "with": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "skyward": {"_count": 1, "though": {"_count": 1}}, "down": {"_count": 1, "as": {"_count": 1}}, "boring": {"_count": 1, "into": {"_count": 1}}, "sweeping": {"_count": 2, "the": {"_count": 2}}, "crossed": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "loomed": {"_count": 1, "over": {"_count": 1}}, "doing": {"_count": 1, "his": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 2}, "had": {"_count": 1}}, "blank": {"_count": 2, "and": {"_count": 2}}, "whose": {"_count": 2, "pupils": {"_count": 2}}, "through": {"_count": 2, "a": {"_count": 1}, "slits": {"_count": 1}}, "furious": {"_count": 1, "fixed": {"_count": 1}}, "flamed": {"_count": 1, "in": {"_count": 1}}, "while": {"_count": 2, "the": {"_count": 1}, "Grawp": {"_count": 1}}, "gazed": {"_count": 2, "into": {"_count": 1}, "reproachfully": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "blearily": {"_count": 1, "Someone": {"_count": 1}}, "flew": {"_count": 6, "back": {"_count": 1}, "open": {"_count": 5}}, "will": {"_count": 1, "carry": {"_count": 1}}, "streaming": {"_count": 3, "he": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}, "watering": {"_count": 5, "with": {"_count": 1}, "": {"_count": 2}, "slightly": {"_count": 1}, "Harry": {"_count": 1}}, "found": {"_count": 5, "the": {"_count": 3}, "him": {"_count": 1}, "Harry": {"_count": 1}}, "watered": {"_count": 1, "in": {"_count": 1}}, "Harrys": {"_count": 2, "godfather": {"_count": 1}, "eyes": {"_count": 1}}, "unfocused": {"_count": 3, "": {"_count": 2}, "thinking": {"_count": 1}}, "glowed": {"_count": 1, "in": {"_count": 1}}, "each": {"_count": 1, "time": {"_count": 1}}, "overbright": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 2, "rescuing": {"_count": 1}, "a": {"_count": 1}}, "stretching": {"_count": 1, "even": {"_count": 1}}, "Moody": {"_count": 1, "came": {"_count": 1}}, "peeled": {"_count": 1, "said": {"_count": 1}}, "ranged": {"_count": 1, "over": {"_count": 1}}, "appeared": {"_count": 2, "over": {"_count": 1}, "blurred": {"_count": 1}}, "swam": {"_count": 2, "with": {"_count": 2}}, "white": {"_count": 1, "and": {"_count": 1}}, "instead": {"_count": 2, "upon": {"_count": 1}, "of": {"_count": 1}}, "followed": {"_count": 2, "hers": {"_count": 1}, "it": {"_count": 1}}, "she": {"_count": 1, "": {"_count": 1}}, "rested": {"_count": 1, "on": {"_count": 1}}, "zoomed": {"_count": 1, "from": {"_count": 1}}, "thick": {"_count": 1, "silvery": {"_count": 1}}, "briefly": {"_count": 1, "and": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}, "large": {"_count": 1, "as": {"_count": 1}}, "traveling": {"_count": 1, "around": {"_count": 1}}, "I": {"_count": 3, "have": {"_count": 1}, "discovered": {"_count": 1}, "am": {"_count": 1}}, "slits": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 2, "arrogant": {"_count": 1}, "infinitesimal": {"_count": 1}}, "sped": {"_count": 1, "from": {"_count": 1}}, "scanning": {"_count": 2, "the": {"_count": 2}}, "bored": {"_count": 1, "into": {"_count": 1}}, "apparently": {"_count": 1, "taken": {"_count": 1}}, "threateningly": {"_count": 1, "but": {"_count": 1}}, "grew": {"_count": 2, "brighter": {"_count": 1}, "accustomed": {"_count": 1}}, "burning": {"_count": 1, "": {"_count": 1}}, "rubbed": {"_count": 1, "vigorously": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "alighted": {"_count": 1, "upon": {"_count": 1}}, "they": {"_count": 1, "stung": {"_count": 1}}, "resting": {"_count": 1, "for": {"_count": 1}}, "squares": {"_count": 1, "of": {"_count": 1}}, "flicking": {"_count": 1, "from": {"_count": 1}}, "swaying": {"_count": 1, "slightly": {"_count": 1}}, "rose": {"_count": 1, "into": {"_count": 1}}, "stream": {"_count": 1, "": {"_count": 1}}, "magnified": {"_count": 2, "to": {"_count": 2}}, "blinking": {"_count": 1, "back": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "wearily": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "surveyed": {"_count": 1, "the": {"_count": 1}}, "crouching": {"_count": 1, "on": {"_count": 1}}, "flying": {"_count": 1, "to": {"_count": 1}}, "yeah": {"_count": 1, "": {"_count": 1}}, "burned": {"_count": 2, "suddenly": {"_count": 1}, "with": {"_count": 1}}, "follow": {"_count": 1, "his": {"_count": 1}}, "discerned": {"_count": 1, "the": {"_count": 1}}, "searching": {"_count": 1, "all": {"_count": 1}}, "merely": {"_count": 1, "nodded": {"_count": 1}}, "cold": {"_count": 1, "and": {"_count": 1}}, "nor": {"_count": 1, "mouth": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "flash": {"_count": 1, "red": {"_count": 1}}, "expectantly": {"_count": 1, "": {"_count": 1}}, "stared": {"_count": 3, "blankly": {"_count": 1}, "without": {"_count": 1}, "a": {"_count": 1}}, "Slughorn": {"_count": 1, "touched": {"_count": 1}}, "hoping": {"_count": 1, "against": {"_count": 1}}, "sought": {"_count": 1, "Ron": {"_count": 1}}, "They": {"_count": 2, "were": {"_count": 2}}, "misted": {"_count": 1, "as": {"_count": 1}}, "gripping": {"_count": 1, "Dumbledores": {"_count": 1}}, "The": {"_count": 1, "smell": {"_count": 1}}, "shift": {"_count": 1, "back": {"_count": 1}}, "however": {"_count": 1, "were": {"_count": 1}}, "shake": {"_count": 1, "their": {"_count": 1}}, "sparkling": {"_count": 1, "with": {"_count": 1}}, "only": {"_count": 2, "for": {"_count": 2}}, "He": {"_count": 2, "looked": {"_count": 1}, "had": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "fastened": {"_count": 1, "upon": {"_count": 1}}, "examining": {"_count": 1, "it": {"_count": 1}}, "averted": {"_count": 2, "from": {"_count": 2}}, "welled": {"_count": 1, "with": {"_count": 1}}, "single": {"_count": 1, "socks": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "noticing": {"_count": 1, "as": {"_count": 1}}, "frozen": {"_count": 1, "on": {"_count": 1}}, "high": {"_count": 2, "cheekbones": {"_count": 1}, "above": {"_count": 1}}, "narrow": {"_count": 1, "and": {"_count": 1}}, "downcast": {"_count": 1, "Harry": {"_count": 1}}, "putting": {"_count": 1, "Harry": {"_count": 1}}, "sparkled": {"_count": 1, "with": {"_count": 1}}, "panting": {"_count": 1, "his": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "willing": {"_count": 1, "someone": {"_count": 1}}, "causing": {"_count": 1, "him": {"_count": 1}}, "raking": {"_count": 1, "the": {"_count": 1}}, "held": {"_count": 1, "high": {"_count": 1}}, "concentrating": {"_count": 1, "on": {"_count": 1}}, "bloodshot": {"_count": 1, "but": {"_count": 1}}, "focused": {"_count": 1, "on": {"_count": 1}}, "absently": {"_count": 1, "to": {"_count": 1}}, "although": {"_count": 1, "if": {"_count": 1}}, "opening": {"_count": 1, "in": {"_count": 1}}, "glazed": {"_count": 1, "watching": {"_count": 1}}, "momentarily": {"_count": 1, "as": {"_count": 1}}, "rightfully": {"_count": 1, "theirs": {"_count": 1}}, "disdainful": {"_count": 1, "as": {"_count": 1}}, "gave": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "lost": {"_count": 1}}, "flitted": {"_count": 1, "over": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "dropped": {"_count": 1, "to": {"_count": 1}}, "some": {"_count": 1, "small": {"_count": 1}}, "remained": {"_count": 1, "closed": {"_count": 1}}, "eager": {"_count": 1, "in": {"_count": 1}}, "without": {"_count": 1, "being": {"_count": 1}}, "precisely": {"_count": 1, "her": {"_count": 1}}, "pierced": {"_count": 1, "Snape": {"_count": 1}}, "feasted": {"_count": 1, "on": {"_count": 1}}, "green": {"_count": 1, "into": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "whiten": {"_count": 1, "": {"_count": 1}}}, "fell": {"_count": 462, "on": {"_count": 17, "a": {"_count": 3}, "the": {"_count": 5}, "Harry": {"_count": 2}, "his": {"_count": 1}, "Hermione": {"_count": 2}, "Rita": {"_count": 1}, "top": {"_count": 2}, "Harrys": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 19}, "?": {"_count": 3}}, "asleep": {"_count": 23, "quickly": {"_count": 1}, "was": {"_count": 1}, "as": {"_count": 1}, "almost": {"_count": 4}, "again": {"_count": 1}, "": {"_count": 5}, "last": {"_count": 1}, "right": {"_count": 1}, "and": {"_count": 1}, "immediately": {"_count": 1}, "jus": {"_count": 1}, "contemplating": {"_count": 1}, "in": {"_count": 1}, "were": {"_count": 1}, "snoring": {"_count": 1}, "at": {"_count": 1}}, "out": {"_count": 16, "of": {"_count": 13}, "a": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "open": {"_count": 18, "in": {"_count": 3}, "": {"_count": 10}, "as": {"_count": 2}, "and": {"_count": 1}, "too": {"_count": 1}, "showing": {"_count": 1}}, "hard": {"_count": 3, "on": {"_count": 1}, "onto": {"_count": 2}}, "from": {"_count": 6, "the": {"_count": 3}, "his": {"_count": 1}, "her": {"_count": 1}, "sight": {"_count": 1}}, "the": {"_count": 1, "promised": {"_count": 1}}, "silent": {"_count": 47, "": {"_count": 18}, "looking": {"_count": 3}, "a": {"_count": 1}, "gulping": {"_count": 1}, "staring": {"_count": 1}, "at": {"_count": 7}, "watching": {"_count": 2}, "though": {"_count": 1}, "was": {"_count": 1}, "again": {"_count": 2}, "immediately": {"_count": 1}, "trying": {"_count": 1}, "and": {"_count": 2}, "the": {"_count": 1}, "as": {"_count": 3}, "their": {"_count": 1}, "when": {"_count": 1}}, "off": {"_count": 17, "him": {"_count": 2}, "in": {"_count": 1}, "his": {"_count": 3}, "": {"_count": 2}, "with": {"_count": 1}, "again": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 2}, "when": {"_count": 1}, "as": {"_count": 1}}, "back": {"_count": 26, "and": {"_count": 5}, "into": {"_count": 5}, "clutching": {"_count": 1}, "to": {"_count": 5}, "with": {"_count": 1}, "onto": {"_count": 2}, "toward": {"_count": 1}, "writhing": {"_count": 1}, "without": {"_count": 1}, "against": {"_count": 2}, "lifeless": {"_count": 1}, "before": {"_count": 1}}, "right": {"_count": 3, "down": {"_count": 1}, "through": {"_count": 1}, "beside": {"_count": 1}}, "over": {"_count": 22, "on": {"_count": 1}, "laughing": {"_count": 1}, "": {"_count": 5}, "the": {"_count": 7}, "Ron": {"_count": 1}, "his": {"_count": 1}, "son": {"_count": 1}, "in": {"_count": 1}, "again": {"_count": 1}, "still": {"_count": 1}, "Nevilles": {"_count": 1}, "a": {"_count": 1}}, "onto": {"_count": 3, "his": {"_count": 3}}, "into": {"_count": 18, "bed": {"_count": 1}, "his": {"_count": 4}, "blackness": {"_count": 1}, "an": {"_count": 1}, "Hermiones": {"_count": 1}, "Harrys": {"_count": 2}, "your": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 3}, "Ravenclaws": {"_count": 1}, "neat": {"_count": 1}, "the": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 11, "Harry": {"_count": 1}, "into": {"_count": 2}, "over": {"_count": 1}, "his": {"_count": 1}, "Nevilles": {"_count": 1}, "with": {"_count": 1}, "off": {"_count": 1}, "onto": {"_count": 1}, "on": {"_count": 1}, "arms": {"_count": 1}}, "flat": {"_count": 3, "on": {"_count": 3}}, "to": {"_count": 40, "his": {"_count": 6}, "its": {"_count": 1}, "the": {"_count": 28}, "him": {"_count": 1}, "her": {"_count": 3}, "Harrys": {"_count": 1}}, "down": {"_count": 5, "down": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "again": {"_count": 1}, "into": {"_count": 1}}, "away": {"_count": 7, "": {"_count": 2}, "dropping": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "shrinking": {"_count": 1}, "sloping": {"_count": 1}}, "downstairs": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 2, "forward": {"_count": 2}}, "a": {"_count": 3, "second": {"_count": 1}, "book": {"_count": 1}, "small": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "heavily": {"_count": 1, "onto": {"_count": 1}}, "almost": {"_count": 2, "to": {"_count": 2}}, "twitching": {"_count": 1, "to": {"_count": 1}}, "painfully": {"_count": 1, "over": {"_count": 1}}, "with": {"_count": 12, "its": {"_count": 1}, "a": {"_count": 9}, "an": {"_count": 1}, "dull": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "waved": {"_count": 1, "his": {"_count": 1}}, "across": {"_count": 5, "the": {"_count": 3}, "them": {"_count": 1}, "Georges": {"_count": 1}}, "and": {"_count": 8, "she": {"_count": 1}, "hit": {"_count": 1}, "lamps": {"_count": 1}, "Harry": {"_count": 2}, "they": {"_count": 1}, "those": {"_count": 1}, "rose": {"_count": 1}}, "cold": {"_count": 1, "and": {"_count": 1}}, "behind": {"_count": 1, "": {"_count": 1}}, "largely": {"_count": 1, "on": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 3}, "darkness": {"_count": 1}}, "forward": {"_count": 10, "onto": {"_count": 2}, "and": {"_count": 1}, "his": {"_count": 2}, "over": {"_count": 1}, "facedown": {"_count": 1}, "against": {"_count": 1}, "screaming": {"_count": 1}, "like": {"_count": 1}}, "rapidly": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "was": {"_count": 1, "able": {"_count": 1}}, "past": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 3, "the": {"_count": 1}, "though": {"_count": 1}, "she": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 3}, "": {"_count": 1}, "love": {"_count": 1}, "a": {"_count": 2}, "curls": {"_count": 1}}, "suddenly": {"_count": 1, "silent": {"_count": 1}}, "again": {"_count": 4, "but": {"_count": 1}, "": {"_count": 2}, "through": {"_count": 1}}, "silently": {"_count": 1, "to": {"_count": 1}}, "instead": {"_count": 1, "on": {"_count": 1}}, "slowly": {"_count": 2, "into": {"_count": 1}, "backward": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "upon": {"_count": 17, "a": {"_count": 2}, "the": {"_count": 5}, "Dumbledore": {"_count": 2}, "her": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}, "Ron": {"_count": 1}, "another": {"_count": 1}, "glittering": {"_count": 1}, "their": {"_count": 1}}, "between": {"_count": 7, "them": {"_count": 6}, "the": {"_count": 1}}, "only": {"_count": 1, "upon": {"_count": 1}}, "twelve": {"_count": 1, "feet": {"_count": 1}}, "softly": {"_count": 1, "into": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "stretching": {"_count": 1, "out": {"_count": 1}}, "lightly": {"_count": 1, "onto": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "slightly": {"_count": 1, "broomsticks": {"_count": 1}}, "easily": {"_count": 1, "through": {"_count": 1}}, "outside": {"_count": 1, "Umbridges": {"_count": 1}}, "fully": {"_count": 1, "clothed": {"_count": 1}}, "immediately": {"_count": 2, "": {"_count": 1}, "upon": {"_count": 1}}, "sideways": {"_count": 3, "": {"_count": 1}, "off": {"_count": 1}, "onto": {"_count": 1}}, "gracefully": {"_count": 1, "into": {"_count": 1}}, "against": {"_count": 1, "it": {"_count": 1}}, "limply": {"_count": 1, "to": {"_count": 1}}, "spectacularly": {"_count": 1, "skidding": {"_count": 1}}, "like": {"_count": 3, "grenades": {"_count": 1}, "a": {"_count": 1}, "boulders": {"_count": 1}}, "below": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 1, "sky": {"_count": 1}}, "sprawling": {"_count": 1, "in": {"_count": 1}}, "about": {"_count": 2, "giggling": {"_count": 1}, "a": {"_count": 1}}, "extinguishing": {"_count": 1, "Voldemorts": {"_count": 1}}, "apart": {"_count": 1, "yeah": {"_count": 1}}, "grazing": {"_count": 1, "his": {"_count": 1}}, "tripping": {"_count": 1, "up": {"_count": 1}}, "far": {"_count": 1, "short": {"_count": 1}}, "jumped": {"_count": 1, "or": {"_count": 1}}, "hissing": {"_count": 1, "wildly": {"_count": 1}}, "panting": {"_count": 1, "onto": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "sparkling": {"_count": 1, "to": {"_count": 1}}, "neatly": {"_count": 1, "upon": {"_count": 1}}, "oddly": {"_count": 1, "upon": {"_count": 1}}, "it": {"_count": 1, "split": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "ill": {"_count": 1, "fatally": {"_count": 1}}, "headlong": {"_count": 1, "into": {"_count": 1}}, "abruptly": {"_count": 1, "and": {"_count": 1}}, "respectfully": {"_count": 1, "silent": {"_count": 1}}}, "huddle": {"_count": 10, "of": {"_count": 3, "these": {"_count": 1}, "limp": {"_count": 1}, "teenagers": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "its": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "shepherded": {"_count": 1, "by": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "these": {"_count": 447, "weirdos": {"_count": 1, "standing": {"_count": 1}}, "people": {"_count": 18, "were": {"_count": 1}, "was": {"_count": 1}, "off": {"_count": 1}, "down": {"_count": 1}, "": {"_count": 4}, "he": {"_count": 1}, "sitting": {"_count": 1}, "had": {"_count": 1}, "maybe": {"_count": 1}, "marching": {"_count": 1}, "know": {"_count": 1}, "realize": {"_count": 1}, "tarnish": {"_count": 1}, "unable": {"_count": 1}, "But": {"_count": 1}}, "birds": {"_count": 1, "flying": {"_count": 1}}, "peoples": {"_count": 1, "minds": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "years": {"_count": 9, "": {"_count": 4}, "Ive": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}, "had": {"_count": 1}}, "wizarding": {"_count": 1, "types": {"_count": 1}}, "Muggles": {"_count": 2, "dream": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 9}, "?": {"_count": 6}, "!": {"_count": 1}}, "things": {"_count": 19, "happen": {"_count": 1}, "aside": {"_count": 1}, "mean": {"_count": 1}, "from": {"_count": 1}, "had": {"_count": 1}, "are": {"_count": 2}, "actually": {"_count": 1}, "": {"_count": 2}, "out": {"_count": 1}, "private": {"_count": 1}, "happened": {"_count": 1}, "suggest": {"_count": 1}, "nor": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}}, "said": {"_count": 7, "Harry": {"_count": 1}, "Fred": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "Tonks": {"_count": 1}, "Madam": {"_count": 1}, "George": {"_count": 1}}, "days": {"_count": 47, "": {"_count": 15}, "Ill": {"_count": 1}, "he": {"_count": 1}, "its": {"_count": 1}, "are": {"_count": 1}, "Hagrid": {"_count": 1}, "because": {"_count": 1}, "The": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 3}, "neither": {"_count": 1}, "Cedric": {"_count": 1}, "it": {"_count": 1}, "when": {"_count": 2}, "see": {"_count": 1}, "said": {"_count": 3}, "was": {"_count": 3}, "yet": {"_count": 1}, "youll": {"_count": 1}, "to": {"_count": 1}, "Professor": {"_count": 1}, "\u2018the": {"_count": 1}, "even": {"_count": 1}, "seeing": {"_count": 1}, "Ive": {"_count": 1}, "muttered": {"_count": 1}}, "words": {"_count": 29, "Hermione": {"_count": 1}, "": {"_count": 7}, "a": {"_count": 2}, "both": {"_count": 1}, "and": {"_count": 3}, "as": {"_count": 1}, "Winky": {"_count": 1}, "Harry": {"_count": 1}, "burst": {"_count": 1}, "of": {"_count": 1}, "onto": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "hit": {"_count": 1}, "she": {"_count": 1}, "for": {"_count": 2}, "seemingly": {"_count": 1}, "words": {"_count": 1}, "meant": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "books": {"_count": 4, "from": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "anyway": {"_count": 1}}, "dreams": {"_count": 2, "": {"_count": 1}, "before": {"_count": 1}}, "exams": {"_count": 1, "to": {"_count": 1}}, "Dragon": {"_count": 1, "Species": {"_count": 1}}, "last": {"_count": 4, "words": {"_count": 1}, "two": {"_count": 1}, "thirteen": {"_count": 1}, "few": {"_count": 1}}, "clues": {"_count": 1, "four": {"_count": 1}}, "past": {"_count": 1, "weeks": {"_count": 1}}, "sweets": {"_count": 1, "": {"_count": 1}}, "rumors": {"_count": 2, "about": {"_count": 1}, "and": {"_count": 1}}, "poisons": {"_count": 1, "might": {"_count": 1}}, "Harry": {"_count": 2, "mumbled": {"_count": 1}, "saw": {"_count": 1}}, "boys": {"_count": 2, "have": {"_count": 1}, "punishments": {"_count": 1}}, "exotic": {"_count": 1, "plants": {"_count": 1}}, "honest": {"_count": 1, "facts": {"_count": 1}}, "reconstructions": {"_count": 1, "so": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "spare": {"_count": 1, "robes": {"_count": 1}}, "attacks": {"_count": 5, "yet": {"_count": 1}, "sir": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}, "See": {"_count": 1}}, "long": {"_count": 3, "faces": {"_count": 1}, "JORDAN": {"_count": 1}, "months": {"_count": 1}}, "security": {"_count": 2, "measures": {"_count": 1}, "spells": {"_count": 1}}, "rocks": {"_count": 1, "by": {"_count": 1}}, "stone": {"_count": 1, "snakes": {"_count": 1}}, "mutant": {"_count": 1, "skeletons": {"_count": 1}}, "beauties": {"_count": 1, "": {"_count": 1}}, "cages": {"_count": 1, "were": {"_count": 1}}, "She": {"_count": 1, "indicated": {"_count": 1}}, "Azkaban": {"_count": 1, "guards": {"_count": 1}}, "that": {"_count": 2, "trespass": {"_count": 1}, "Mrs": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "lessons": {"_count": 1, "with": {"_count": 1}}, "were": {"_count": 7, "held": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "important": {"_count": 1}, "tears": {"_count": 1}, "Death": {"_count": 1}, "he": {"_count": 1}}, "daisy": {"_count": 1, "roots": {"_count": 1}}, "roots": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 3, "me": {"_count": 1}, "want": {"_count": 1}, "you": {"_count": 1}}, "subjects": {"_count": 1, "today": {"_count": 1}}, "on": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "four": {"_count": 3, "he": {"_count": 1}, "founders": {"_count": 1}, "had": {"_count": 1}}, "chipolatas": {"_count": 1, "": {"_count": 1}}, "punishments": {"_count": 1, "however": {"_count": 1}}, "men": {"_count": 1, "": {"_count": 1}}, "mapmakers": {"_count": 1, "would": {"_count": 1}}, "times": {"_count": 3, "right": {"_count": 1}, "said": {"_count": 1}, "Malfoy": {"_count": 1}}, "occasions": {"_count": 2, "": {"_count": 2}}, "twelve": {"_count": 1, "years": {"_count": 1}}, "children": {"_count": 1, "need": {"_count": 1}}, "students": {"_count": 3, "left": {"_count": 1}, "continued": {"_count": 1}, "for": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "expressions": {"_count": 1, "meant": {"_count": 1}}, "flashy": {"_count": 1, "intruders": {"_count": 1}}, "these": {"_count": 1, "Weasleys": {"_count": 1}}, "Weasleys": {"_count": 1, "theyre": {"_count": 1}}, "foreign": {"_count": 1, "imports": {"_count": 1}}, "yours": {"_count": 1, "Arthur": {"_count": 1}}, "little": {"_count": 3, "bits": {"_count": 1}, "glass": {"_count": 1}, "heroes": {"_count": 1}}, "numbers": {"_count": 1, "on": {"_count": 1}}, "tents": {"_count": 2, "up": {"_count": 1}, "would": {"_count": 1}}, "kidsll": {"_count": 1, "know": {"_count": 1}}, "Bulgarian": {"_count": 1, "blighters": {"_count": 1}}, "big": {"_count": 1, "plans": {"_count": 1}}, "wizards": {"_count": 3, "had": {"_count": 1}, "waiting": {"_count": 1}, "were": {"_count": 1}}, "Ministry": {"_count": 1, "wizards": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "trick": {"_count": 1, "stairs": {"_count": 1}}, "bottles": {"_count": 1, "": {"_count": 1}}, "details": {"_count": 1, "because": {"_count": 1}}, "up": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "foul": {"_count": 1, "things": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "dragons": {"_count": 1, "said": {"_count": 1}}, "boxes": {"_count": 1, "": {"_count": 1}}, "fascinating": {"_count": 1, "creatures": {"_count": 1}}, "lines": {"_count": 1, "said": {"_count": 1}}, "er": {"_count": 1, "BangEnded": {"_count": 1}}, "tables": {"_count": 1, "Harry": {"_count": 1}}, "two": {"_count": 9, "and": {"_count": 2}, "on": {"_count": 1}, "from": {"_count": 1}, "turned": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "extraordinary": {"_count": 1}, "with": {"_count": 1}}, "though": {"_count": 1, "in": {"_count": 1}}, "surprises": {"_count": 1, "had": {"_count": 1}}, "cakes": {"_count": 1, "Hagrid": {"_count": 1}}, "wouldnt": {"_count": 1, "hurt": {"_count": 1}}, "Dark": {"_count": 1, "wizard": {"_count": 1}}, "sugar": {"_count": 1, "lumps": {"_count": 1}}, "unfortunate": {"_count": 1, "boys": {"_count": 1}}, "claims": {"_count": 1, "": {"_count": 1}}, "absences": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "pets": {"_count": 1}}, "ridiculous": {"_count": 1, "rumors": {"_count": 1}}, "foreigners": {"_count": 1, "the": {"_count": 1}}, "hexes": {"_count": 2, "this": {"_count": 1}, "in": {"_count": 1}}, "matters": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "however": {"_count": 1}}, "serried": {"_count": 1, "rows": {"_count": 1}}, "crimes": {"_count": 1, "deserve": {"_count": 1}}, "very": {"_count": 1, "grounds": {"_count": 1}}, "families": {"_count": 1, "apart": {"_count": 1}}, "lives": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 6, "bound": {"_count": 1}, "at": {"_count": 1}, "bowtruckles": {"_count": 1}, "elementary": {"_count": 1}, "manners": {"_count": 1}, "childrens": {"_count": 1}}, "tasks": {"_count": 1, "without": {"_count": 1}}, "instructions": {"_count": 1, "peculiar": {"_count": 1}}, "echoes": {"_count": 1, "these": {"_count": 1}}, "shadows": {"_count": 1, "": {"_count": 1}}, "pains": {"_count": 1, "then": {"_count": 1}}, "streets": {"_count": 1, "so": {"_count": 1}}, "ruddy": {"_count": 2, "owls": {"_count": 1}, "things": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "facts": {"_count": 1, "quickly": {"_count": 1}}, "Mudbloods": {"_count": 1, "and": {"_count": 1}}, "beings": {"_count": 1, "were": {"_count": 1}}, "particular": {"_count": 2, "dementors": {"_count": 1}, "kinds": {"_count": 1}}, "dementors": {"_count": 1, "if": {"_count": 1}}, "circumstances": {"_count": 1, "falls": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "seats": {"_count": 1, "": {"_count": 1}}, "horrible": {"_count": 1, "horses": {"_count": 1}}, "dangerous": {"_count": 4, "waters": {"_count": 1}, "times": {"_count": 2}, "and": {"_count": 1}}, "problems": {"_count": 1, "are": {"_count": 1}}, "examinations": {"_count": 1, "may": {"_count": 1}}, "creatures": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "massive": {"_count": 1, "pusfilled": {"_count": 1}}, "fake": {"_count": 1, "coins": {"_count": 1}}, "remind": {"_count": 1, "me": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "encouraging": {"_count": 1, "factors": {"_count": 1}}, "horses": {"_count": 1, "Harry": {"_count": 1}}, "ouch": {"_count": 1, "shoes": {"_count": 1}}, "old": {"_count": 4, "Muggle": {"_count": 1}, "files": {"_count": 1}, "stories": {"_count": 1}, "scandals": {"_count": 1}}, "Occlumency": {"_count": 1, "lessons": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "individuals": {"_count": 3, "": {"_count": 1}, "who": {"_count": 1}, "be": {"_count": 1}}, "walls": {"_count": 1, "ten": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "doubters": {"_count": 1, "now": {"_count": 1}}, "injuries": {"_count": 2, "": {"_count": 2}}, "she": {"_count": 2, "waved": {"_count": 1}, "gestured": {"_count": 1}}, "letters": {"_count": 2, "Mr": {"_count": 1}, "these": {"_count": 1}}, "signs": {"_count": 2, "she": {"_count": 1}, "of": {"_count": 1}}, "visions": {"_count": 1, "and": {"_count": 1}}, "movements": {"_count": 1, "over": {"_count": 1}}, "lies": {"_count": 1, "to": {"_count": 1}}, "meetings": {"_count": 4, "continued": {"_count": 1}, "have": {"_count": 1}, "for": {"_count": 1}, "of": {"_count": 1}}, "witnesses": {"_count": 1, "suffice": {"_count": 1}}, "pyrotechnical": {"_count": 1, "miracles": {"_count": 1}}, "notes": {"_count": 1, "only": {"_count": 1}}, "suspicious": {"_count": 1, "signs": {"_count": 1}}, "whats": {"_count": 1, "The": {"_count": 1}}, "persistent": {"_count": 1, "rumors": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "accusations": {"_count": 1, "for": {"_count": 1}}, "terrible": {"_count": 1, "disasters": {"_count": 1}}, "troubled": {"_count": 1, "times": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "precautions": {"_count": 1, "against": {"_count": 1}}, "absurd": {"_count": 1, "burglar": {"_count": 1}}, "sighed": {"_count": 1, "Mrs": {"_count": 1}}, "again": {"_count": 1, "said": {"_count": 1}}, "somber": {"_count": 1, "purple": {"_count": 1}}, "anymore": {"_count": 1, "He": {"_count": 1}}, "shelves": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "Neville": {"_count": 1}}, "by": {"_count": 1, "Wednesday": {"_count": 1}}, "teachers": {"_count": 1, "will": {"_count": 1}}, "funny": {"_count": 1, "instructions": {"_count": 1}}, "out": {"_count": 1, "to": {"_count": 1}}, "recollections": {"_count": 1, "to": {"_count": 1}}, "trips": {"_count": 1, "would": {"_count": 1}}, "charms": {"_count": 1, "amusing": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "detours": {"_count": 1, "a": {"_count": 1}}, "girls": {"_count": 1, "are": {"_count": 1}}, "anyway": {"_count": 1, "said": {"_count": 1}}, "sprouts": {"_count": 1, "": {"_count": 1}}, "spells": {"_count": 1, "come": {"_count": 1}}, "stories": {"_count": 1, "get": {"_count": 1}}, "whispers": {"_count": 1, "of": {"_count": 1}}, "disparate": {"_count": 1, "elements": {"_count": 1}}, "phials": {"_count": 1, "from": {"_count": 1}}, "potions": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 2, "and": {"_count": 1}, "too": {"_count": 1}}, "sudden": {"_count": 1, "appearances": {"_count": 1}}, "brain": {"_count": 1, "waves": {"_count": 1}}, "crucial": {"_count": 1, "parts": {"_count": 1}}, "detentions": {"_count": 1, "particularly": {"_count": 1}}, "bitter": {"_count": 1, "reflections": {"_count": 1}}, "bites": {"_count": 1, "he": {"_count": 1}}, "scars": {"_count": 1, "show": {"_count": 1}}, "important": {"_count": 1, "people": {"_count": 1}}, "thieves": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "many": {"_count": 1}}, "Order": {"_count": 1, "people": {"_count": 1}}, "exchanges": {"_count": 1, "with": {"_count": 1}}, "experiences": {"_count": 1, "in": {"_count": 1}}, "jinxes": {"_count": 1, "they": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "Carrows": {"_count": 1, "": {"_count": 1}}, "glimpses": {"_count": 1, "of": {"_count": 1}}, "reconnaissance": {"_count": 1, "trips": {"_count": 1}}, "chains": {"_count": 1, "": {"_count": 1}}, "thoughts": {"_count": 2, "and": {"_count": 1}, "pattered": {"_count": 1}}, "unceremonious": {"_count": 1, "goodbyes": {"_count": 1}}, "halfmagical": {"_count": 1, "dwelling": {"_count": 1}}, "neatly": {"_count": 1, "lettered": {"_count": 1}}, "shining": {"_count": 1, "brightly": {"_count": 1}}, "dreadful": {"_count": 1, "circumstances": {"_count": 1}}, "woods": {"_count": 1, "": {"_count": 1}}, "brothers": {"_count": 1, "were": {"_count": 1}}, "objects": {"_count": 1, "these": {"_count": 1}}, "Hallows": {"_count": 1, "actually": {"_count": 1}}, "questions": {"_count": 1, "in": {"_count": 1}}, "unsatisfying": {"_count": 1, "vague": {"_count": 1}}, "prisoners": {"_count": 1, "down": {"_count": 1}}, "ropes": {"_count": 2, "off": {"_count": 2}}, "wandless": {"_count": 1, "can": {"_count": 1}}, "centuries": {"_count": 1, "later": {"_count": 1}}, "evenings": {"_count": 1, "you": {"_count": 1}}}, "weirdos": {"_count": 6, "standing": {"_count": 1, "quite": {"_count": 1}}, "no": {"_count": 1, "denying": {"_count": 1}}, "in": {"_count": 1, "every": {"_count": 1}}, "prison": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "support": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}}, "quite": {"_count": 525, "close": {"_count": 2, "by": {"_count": 2}}, "agree": {"_count": 4, "": {"_count": 1}, "Madame": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}}, "plainly": {"_count": 2, "I": {"_count": 1}, "that": {"_count": 1}}, "happy": {"_count": 4, "to": {"_count": 3}, "and": {"_count": 1}}, "as": {"_count": 38, "fond": {"_count": 1}, "cool": {"_count": 1}, "good": {"_count": 3}, "ugly": {"_count": 1}, "pathetic": {"_count": 1}, "farfetched": {"_count": 1}, "mad": {"_count": 1}, "usual": {"_count": 1}, "excited": {"_count": 1}, "strained": {"_count": 1}, "disappointed": {"_count": 1}, "much": {"_count": 4}, "full": {"_count": 1}, "devoted": {"_count": 1}, "bad": {"_count": 1}, "mystified": {"_count": 1}, "interesting": {"_count": 1}, "funny": {"_count": 1}, "suddenly": {"_count": 1}, "tall": {"_count": 1}, "clearly": {"_count": 1}, "sinister": {"_count": 1}, "bushy": {"_count": 1}, "loudly": {"_count": 1}, "rude": {"_count": 1}, "curious": {"_count": 1}, "rotund": {"_count": 1}, "forgetful": {"_count": 1}, "pale": {"_count": 1}, "pleased": {"_count": 1}, "high": {"_count": 1}, "whitefaced": {"_count": 1}, "precociously": {"_count": 1}}, "painful": {"_count": 1, "": {"_count": 1}}, "sure": {"_count": 32, "there": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 3}, "dear": {"_count": 1}, "what": {"_count": 2}, "that": {"_count": 9}, "Mr": {"_count": 1}, "sir": {"_count": 1}, "she": {"_count": 3}, "its": {"_count": 2}, "was": {"_count": 1}, "they": {"_count": 2}, "you": {"_count": 1}, "I": {"_count": 1}, "no": {"_count": 1}, "his": {"_count": 1}, "of": {"_count": 1}}, "clear": {"_count": 7, "now": {"_count": 1}, "that": {"_count": 2}, "you": {"_count": 1}, "said": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}}, "bald": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 10, "same": {"_count": 2}, "effect": {"_count": 1}, "contrary": {"_count": 1}, "reverse": {"_count": 1}, "way": {"_count": 1}, "wrong": {"_count": 2}, "temperament": {"_count": 1}, "hero": {"_count": 1}}, "right": {"_count": 26, "of": {"_count": 3}, "to": {"_count": 2}, "not": {"_count": 1}, "": {"_count": 6}, "said": {"_count": 4}, "Harry": {"_count": 2}, "none": {"_count": 1}, "afterwards": {"_count": 1}, "for": {"_count": 1}, "because": {"_count": 1}, "they": {"_count": 1}, "it": {"_count": 2}, "at": {"_count": 1}}, "suddenly": {"_count": 8, "he": {"_count": 2}, "in": {"_count": 1}, "as": {"_count": 1}, "Professor": {"_count": 1}, "Mr": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "still": {"_count": 32, "again": {"_count": 1}, "all": {"_count": 2}, "both": {"_count": 1}, "as": {"_count": 3}, "facedown": {"_count": 1}, "pretending": {"_count": 1}, "watching": {"_count": 1}, "balanced": {"_count": 1}, "anger": {"_count": 1}, "listening": {"_count": 1}, "even": {"_count": 1}, "and": {"_count": 4}, "staring": {"_count": 2}, "looking": {"_count": 1}, "for": {"_count": 1}, "her": {"_count": 1}, "upon": {"_count": 1}, "he": {"_count": 1}, "half": {"_count": 1}, "wands": {"_count": 1}, "holding": {"_count": 2}, "eyes": {"_count": 1}, "with": {"_count": 1}, "floating": {"_count": 1}}, "creepy": {"_count": 1, "enough": {"_count": 1}}, "meet": {"_count": 1, "his": {"_count": 1}}, "clearly": {"_count": 7, "what": {"_count": 1}, "that": {"_count": 2}, "I": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "keen": {"_count": 6, "to": {"_count": 3}, "though": {"_count": 1}, "for": {"_count": 1}, "on": {"_count": 1}}, "apart": {"_count": 4, "from": {"_count": 3}, "Ill": {"_count": 1}}, "truthful": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 20, "personal": {"_count": 1}, "while": {"_count": 2}, "long": {"_count": 1}, "lot": {"_count": 5}, "few": {"_count": 2}, "small": {"_count": 1}, "good": {"_count": 1}, "fright": {"_count": 1}, "turn": {"_count": 1}, "change": {"_count": 1}, "difference": {"_count": 1}, "performance": {"_count": 1}, "disturbance": {"_count": 1}, "bit": {"_count": 1}}, "glad": {"_count": 5, "ter": {"_count": 1}, "to": {"_count": 2}, "if": {"_count": 1}, "of": {"_count": 1}}, "remember": {"_count": 1, "how": {"_count": 1}}, "delighted": {"_count": 1, "": {"_count": 1}}, "different": {"_count": 8, "": {"_count": 2}, "now": {"_count": 1}, "relaxed": {"_count": 1}, "from": {"_count": 3}, "voice": {"_count": 1}}, "impressed": {"_count": 2, "at": {"_count": 1}, "by": {"_count": 1}}, "within": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "alone": {"_count": 7, "but": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "What": {"_count": 1}, "I": {"_count": 1}, "eyes": {"_count": 1}}, "ordinary": {"_count": 1, "to": {"_count": 1}}, "unremarkable": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "yet": {"_count": 1}}, "disgusting": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "unusual": {"_count": 1, "": {"_count": 1}}, "usual": {"_count": 1, "for": {"_count": 1}}, "angry": {"_count": 1, "": {"_count": 1}}, "explain": {"_count": 1, "": {"_count": 1}}, "ludicrous": {"_count": 1, "": {"_count": 1}}, "hysterical": {"_count": 2, "": {"_count": 1}, "fighting": {"_count": 1}}, "politely": {"_count": 1, "to": {"_count": 1}}, "surprised": {"_count": 3, "the": {"_count": 1}, "youre": {"_count": 1}, "not": {"_count": 1}}, "enough": {"_count": 7, "to": {"_count": 2}, "on": {"_count": 2}, "damage": {"_count": 1}, "concerns": {"_count": 1}, "": {"_count": 1}}, "understand": {"_count": 6, "": {"_count": 1}, "said": {"_count": 1}, "how": {"_count": 2}, "that": {"_count": 1}, "what": {"_count": 1}}, "like": {"_count": 7, "this": {"_count": 1}, "her": {"_count": 2}, "Cedric": {"_count": 1}, "lying": {"_count": 1}, "to": {"_count": 2}}, "well": {"_count": 4, "though": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "distinctly": {"_count": 3, "the": {"_count": 1}, "from": {"_count": 1}, "he": {"_count": 1}}, "empty": {"_count": 6, "": {"_count": 3}, "except": {"_count": 1}, "but": {"_count": 1}, "of": {"_count": 1}}, "pleased": {"_count": 1, "when": {"_count": 1}}, "young": {"_count": 2, "his": {"_count": 1}, "Lupin": {"_count": 1}}, "so": {"_count": 3, "confident": {"_count": 1}, "": {"_count": 1}, "quick": {"_count": 1}}, "early": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "rationally": {"_count": 1, "to": {"_count": 1}}, "kindly": {"_count": 1, "not": {"_count": 1}}, "some": {"_count": 1, "Patronus": {"_count": 1}}, "terrified": {"_count": 1, "patted": {"_count": 1}}, "unlike": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "steady": {"_count": 4, "": {"_count": 3}, "even": {"_count": 1}}, "silent": {"_count": 2, "": {"_count": 1}, "staring": {"_count": 1}}, "expressionless": {"_count": 2, "": {"_count": 2}}, "convinced": {"_count": 3, "you": {"_count": 1}, "that": {"_count": 2}}, "deranged": {"_count": 2, "": {"_count": 2}}, "enjoying": {"_count": 1, "himself": {"_count": 1}}, "unbalanced": {"_count": 1, "said": {"_count": 1}}, "alarming": {"_count": 1, "": {"_count": 1}}, "useless": {"_count": 1, "": {"_count": 1}}, "fond": {"_count": 2, "of": {"_count": 2}}, "forgiven": {"_count": 1, "Cedric": {"_count": 1}}, "horrified": {"_count": 1, "at": {"_count": 1}}, "unperturbed": {"_count": 1, "by": {"_count": 1}}, "distracted": {"_count": 1, "and": {"_count": 1}}, "looking": {"_count": 1, "forward": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "independently": {"_count": 1, "of": {"_count": 1}}, "astonishing": {"_count": 1, "gymnastics": {"_count": 1}}, "unembarrassed": {"_count": 1, "however": {"_count": 1}}, "uninterested": {"_count": 1, "almost": {"_count": 1}}, "deserted": {"_count": 4, "": {"_count": 3}, "it": {"_count": 1}}, "what": {"_count": 2, "I": {"_count": 1}, "to": {"_count": 1}}, "rigid": {"_count": 1, "": {"_count": 1}}, "appealing": {"_count": 1, "but": {"_count": 1}}, "normal": {"_count": 1, "Hermione": {"_count": 1}}, "shallow": {"_count": 1, "": {"_count": 1}}, "noticed": {"_count": 1, "that": {"_count": 1}}, "goodlooking": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}, "got": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "over": {"_count": 1}}, "pretty": {"_count": 1, "now": {"_count": 1}}, "overwhelmed": {"_count": 1, "": {"_count": 1}}, "brilliant": {"_count": 1, "of": {"_count": 1}}, "satisfied": {"_count": 1, "the": {"_count": 1}}, "friendly": {"_count": 1, "to": {"_count": 1}}, "warm": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "capable": {"_count": 2, "of": {"_count": 2}}, "suppress": {"_count": 1, "the": {"_count": 1}}, "useful": {"_count": 1, "Harry": {"_count": 1}}, "liked": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "forget": {"_count": 2, "that": {"_count": 1}, "their": {"_count": 1}}, "safe": {"_count": 1, "and": {"_count": 1}}, "brainy": {"_count": 1, "": {"_count": 1}}, "cuddly": {"_count": 1, "": {"_count": 1}}, "believe": {"_count": 4, "he": {"_count": 1}, "what": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}}, "frightening": {"_count": 1, "for": {"_count": 1}}, "desperate": {"_count": 1, "": {"_count": 1}}, "cheerful": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "sentimental": {"_count": 1, "": {"_count": 1}}, "motionless": {"_count": 3, "the": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}}, "unprotected": {"_count": 1, "": {"_count": 1}}, "soon": {"_count": 3, "": {"_count": 1}, "inside": {"_count": 1}, "said": {"_count": 1}}, "impassive": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "invisible": {"_count": 1, "to": {"_count": 1}}, "busy": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "galling": {"_count": 1, "to": {"_count": 1}}, "quite": {"_count": 2, "Diddy": {"_count": 1}, "sure": {"_count": 1}}, "Diddy": {"_count": 1, "whats": {"_count": 1}}, "appalled": {"_count": 1, "with": {"_count": 1}}, "blank": {"_count": 3, "when": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "nasty": {"_count": 1, "actually": {"_count": 1}}, "forgotten": {"_count": 3, "how": {"_count": 1}, "his": {"_count": 1}, "Venuss": {"_count": 1}}, "unnecessary": {"_count": 2, "": {"_count": 2}}, "determined": {"_count": 1, "not": {"_count": 1}}, "relieved": {"_count": 2, "though": {"_count": 1}, "that": {"_count": 1}}, "unsuitable": {"_count": 1, "": {"_count": 1}}, "enjoyable": {"_count": 1, "you": {"_count": 1}}, "sensible": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "downhearted": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "achievement": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "straight": {"_count": 1, "": {"_count": 1}}, "nice": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "all": {"_count": 3, "right": {"_count": 3}}, "plain": {"_count": 1, "": {"_count": 1}}, "smooth": {"_count": 1, "": {"_count": 1}}, "fun": {"_count": 3, "Im": {"_count": 1}, "sometimes": {"_count": 1}, "really": {"_count": 1}}, "calmly": {"_count": 3, "after": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "encouraging": {"_count": 1, "at": {"_count": 1}}, "evaporated": {"_count": 1, "": {"_count": 1}}, "popular": {"_count": 1, "said": {"_count": 1}}, "incomprehensible": {"_count": 1, "but": {"_count": 1}}, "unnoticed": {"_count": 1, "": {"_count": 1}}, "certain": {"_count": 2, "that": {"_count": 1}, "said": {"_count": 1}}, "good": {"_count": 1, "Harry": {"_count": 1}}, "recovered": {"_count": 1, "from": {"_count": 1}}, "agreed": {"_count": 1, "with": {"_count": 1}}, "intrested": {"_count": 1, "in": {"_count": 1}}, "true": {"_count": 1, "but": {"_count": 1}}, "know": {"_count": 1, "how": {"_count": 1}}, "easy": {"_count": 4, "to": {"_count": 3}, "once": {"_count": 1}}, "unabashed": {"_count": 1, "": {"_count": 1}}, "comfortably": {"_count": 1, "": {"_count": 1}}, "quick": {"_count": 1, "as": {"_count": 1}}, "unaware": {"_count": 1, "of": {"_count": 1}}, "common": {"_count": 1, "to": {"_count": 1}}, "unnerving": {"_count": 1, "and": {"_count": 1}}, "worried": {"_count": 1, "enough": {"_count": 1}}, "abruptly": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "unimpaired": {"_count": 1, "said": {"_count": 1}}, "wrong": {"_count": 3, "to": {"_count": 2}, "said": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "forgetting": {"_count": 1, "to": {"_count": 1}}, "meeting": {"_count": 1, "her": {"_count": 1}}, "beside": {"_count": 2, "himself": {"_count": 1}, "the": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "unnecessarily": {"_count": 1, "so": {"_count": 1}}, "forgot": {"_count": 2, "his": {"_count": 1}, "that": {"_count": 1}}, "died": {"_count": 1, "from": {"_count": 1}}, "unconnected": {"_count": 1, "with": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "whole": {"_count": 1, "": {"_count": 1}}, "unscathed": {"_count": 1, "": {"_count": 1}}, "extraordinary": {"_count": 1, "witch": {"_count": 1}}, "connected": {"_count": 1, "with": {"_count": 1}}, "routine": {"_count": 1, "but": {"_count": 1}}, "faint": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "flat": {"_count": 1, "": {"_count": 1}}, "extraordinarily": {"_count": 1, "out": {"_count": 1}}, "insistently": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "unsettled": {"_count": 1, "for": {"_count": 1}}, "keep": {"_count": 1, "a": {"_count": 1}}, "long": {"_count": 1, "enough": {"_count": 1}}, "that": {"_count": 1, "much": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "emptied": {"_count": 1, "": {"_count": 1}}, "ah": {"_count": 1, "safe": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "mad": {"_count": 1, "you": {"_count": 1}}, "cheerfully": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "full": {"_count": 1, "and": {"_count": 1}}, "manage": {"_count": 1, "it": {"_count": 1}}, "Sanguini": {"_count": 1, "stay": {"_count": 1}}, "disconcerting": {"_count": 1, "it": {"_count": 1}}, "rude": {"_count": 1, "about": {"_count": 1}}, "oblivious": {"_count": 2, "to": {"_count": 2}}, "free": {"_count": 1, "to": {"_count": 1}}, "obliterated": {"_count": 1, "knowing": {"_count": 1}}, "softly": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "how": {"_count": 1}}, "reach": {"_count": 1, "though": {"_count": 1}}, "silently": {"_count": 1, "his": {"_count": 1}}, "eradicated": {"_count": 1, "": {"_count": 1}}, "unconcerned": {"_count": 1, "was": {"_count": 1}}, "comprehend": {"_count": 1, "it": {"_count": 1}}, "resentful": {"_count": 1, "toward": {"_count": 1}}, "pleasant": {"_count": 1, "": {"_count": 1}}, "disproportionate": {"_count": 1, "to": {"_count": 1}}, "huge": {"_count": 1, "now": {"_count": 1}}, "stationary": {"_count": 1, "within": {"_count": 1}}, "distinct": {"_count": 1, "in": {"_count": 1}}, "obviously": {"_count": 1, "repulsed": {"_count": 1}}, "dry": {"_count": 1, "": {"_count": 1}}, "mesmerizing": {"_count": 1, "": {"_count": 1}}, "calm": {"_count": 1, "even": {"_count": 1}}, "demented": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 1, "to": {"_count": 1}}, "isolated": {"_count": 1, "from": {"_count": 1}}, "another": {"_count": 1, "": {"_count": 1}}, "agrees": {"_count": 1, "no": {"_count": 1}}, "unconscious": {"_count": 1, "of": {"_count": 1}}, "straightforward": {"_count": 1, "really": {"_count": 1}}, "sorry": {"_count": 1, "he": {"_count": 1}}, "literally": {"_count": 1, "flown": {"_count": 1}}, "yet": {"_count": 1, "said": {"_count": 1}}, "honestly": {"_count": 1, "he": {"_count": 1}}}, "close": {"_count": 307, "by": {"_count": 28, "": {"_count": 10}, "them": {"_count": 2}, "and": {"_count": 2}, "at": {"_count": 1}, "so": {"_count": 1}, "or": {"_count": 1}, "him": {"_count": 1}, "whitefaced": {"_count": 1}, "still": {"_count": 1}, "Harrys": {"_count": 1}, "who": {"_count": 1}, "us": {"_count": 1}, "another": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 1}, "in": {"_count": 1}}, "to": {"_count": 111, "Harrys": {"_count": 5}, "the": {"_count": 23}, "letting": {"_count": 1}, "him": {"_count": 9}, "Harry": {"_count": 6}, "read": {"_count": 1}, "YouKnowOo": {"_count": 1}, "Professor": {"_count": 2}, "Rons": {"_count": 1}, "being": {"_count": 1}, "matching": {"_count": 1}, "his": {"_count": 9}, "a": {"_count": 1}, "tears": {"_count": 4}, "laughing": {"_count": 1}, "accusing": {"_count": 1}, "her": {"_count": 3}, "reverence": {"_count": 1}, "it": {"_count": 3}, "Potter": {"_count": 1}, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}, "where": {"_count": 3}, "Siriuss": {"_count": 1}, "wonder": {"_count": 1}, "Dumbledore": {"_count": 7}, "Parvati": {"_count": 1}, "books": {"_count": 1}, "doing": {"_count": 1}, "you": {"_count": 1}, "laughter": {"_count": 1}, "Nott": {"_count": 1}, "victims": {"_count": 1}, "Ernie": {"_count": 1}, "immortal": {"_count": 1}, "finding": {"_count": 1}, "me": {"_count": 2}, "": {"_count": 2}, "suicidal": {"_count": 1}, "MadEye": {"_count": 1}, "pitying": {"_count": 1}, "wishing": {"_count": 1}, "knowing": {"_count": 1}, "its": {"_count": 1}, "them": {"_count": 1}, "Ginny": {"_count": 1}}, "ter": {"_count": 1, "Dumbledore": {"_count": 1}}, "he": {"_count": 3, "saw": {"_count": 1}, "had": {"_count": 1}, "felt": {"_count": 1}}, "behind": {"_count": 8, "him": {"_count": 4}, "me": {"_count": 2}, "them": {"_count": 2}}, "that": {"_count": 3, "he": {"_count": 1}, "time": {"_count": 1}, "Harry": {"_count": 1}}, "as": {"_count": 7, "possible": {"_count": 2}, "we": {"_count": 1}, "well": {"_count": 1}, "he": {"_count": 3}}, "very": {"_count": 1, "close": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 26}, "!": {"_count": 2}, "?": {"_count": 2}}, "together": {"_count": 8, "but": {"_count": 1}, "and": {"_count": 2}, "so": {"_count": 1}, "they": {"_count": 1}, "on": {"_count": 1}, "some": {"_count": 1}, "there": {"_count": 1}}, "shaves": {"_count": 1, "already": {"_count": 1}}, "in": {"_count": 3, "on": {"_count": 2}, "around": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "thing": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "contact": {"_count": 3, "with": {"_count": 2}, "I": {"_count": 1}}, "the": {"_count": 13, "school": {"_count": 1}, "door": {"_count": 7}, "curtains": {"_count": 2}, "drawing": {"_count": 1}, "deal": {"_count": 1}, "loopholes": {"_count": 1}}, "your": {"_count": 10, "eyes": {"_count": 2}, "mind": {"_count": 8}}, "watch": {"_count": 3, "on": {"_count": 3}}, "his": {"_count": 5, "eyes": {"_count": 2}, "fingers": {"_count": 1}, "case": {"_count": 1}, "mind": {"_count": 1}}, "then": {"_count": 1, "headed": {"_count": 1}}, "Harry": {"_count": 2, "slammed": {"_count": 1}, "thought": {"_count": 1}}, "enough": {"_count": 3, "watch": {"_count": 1}, "now": {"_count": 1}, "to": {"_count": 1}}, "at": {"_count": 4, "hand": {"_count": 4}}, "and": {"_count": 7, "looked": {"_count": 1}, "a": {"_count": 2}, "she": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}, "was": {"_count": 1}}, "eye": {"_count": 3, "on": {"_count": 2}, "upon": {"_count": 1}}, "friend": {"_count": 2, "Colin": {"_count": 1}, "": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 2}}, "friendship": {"_count": 2, "with": {"_count": 2}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "now": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "right": {"_count": 1}, "no": {"_count": 1}}, "formation": {"_count": 1, "": {"_count": 1}}, "proximity": {"_count": 3, "to": {"_count": 2}, "with": {"_count": 1}}, "but": {"_count": 1, "remained": {"_count": 1}}, "quiet": {"_count": 1, "had": {"_count": 1}}, "attention": {"_count": 1, "to": {"_count": 1}}, "call": {"_count": 2, "last": {"_count": 1}, "Alicia": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "its": {"_count": 1, "sharp": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "set": {"_count": 1, "purple": {"_count": 1}}, "up": {"_count": 3, "since": {"_count": 1}, "for": {"_count": 1}, "after": {"_count": 1}}, "quarters": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 1, "and": {"_count": 1}}, "thats": {"_count": 1, "number": {"_count": 1}}, "embrace": {"_count": 2, "and": {"_count": 1}, "Their": {"_count": 1}}, "personal": {"_count": 1, "friendship": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "relationship": {"_count": 1, "then": {"_count": 1}}, "bond": {"_count": 1, "says": {"_count": 1}}, "emotionally": {"_count": 1, "": {"_count": 1}}, "Wizarding": {"_count": 1, "relative": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "upon": {"_count": 1, "him": {"_count": 1}}}, "whispering": {"_count": 52, "excitedly": {"_count": 5, "together": {"_count": 2}, "too": {"_count": 1}, "Lockhart": {"_count": 1}, "to": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "was": {"_count": 1, "coming": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "that": {"_count": 2, "still": {"_count": 1}, "Voldemort": {"_count": 1}}, "but": {"_count": 3, "they": {"_count": 1}, "its": {"_count": 1}, "speaking": {"_count": 1}}, "fervently": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "nonstop": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 1}, "each": {"_count": 1}}, "and": {"_count": 4, "giggling": {"_count": 3}, "murmuring": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "together": {"_count": 2, "and": {"_count": 1}, "looking": {"_count": 1}}, "stopped": {"_count": 1, "": {"_count": 1}}, "believed": {"_count": 1, "the": {"_count": 1}}, "students": {"_count": 1, "the": {"_count": 1}}, "staring": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "Crabbe": {"_count": 1}}, "about": {"_count": 2, "what": {"_count": 1}, "it": {"_count": 1}}, "something": {"_count": 1, "under": {"_count": 1}}, "somewhere": {"_count": 1, "nearby": {"_count": 1}}, "as": {"_count": 1, "clearly": {"_count": 1}}, "Dont": {"_count": 1, "": {"_count": 1}}, "murmuring": {"_count": 1, "noises": {"_count": 1}}, "behind": {"_count": 3, "there": {"_count": 1}, "their": {"_count": 1}, "my": {"_count": 1}}, "the": {"_count": 2, "first": {"_count": 1}, "incantation": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Hello": {"_count": 1, "": {"_count": 1}}, "wondering": {"_count": 1, "and": {"_count": 1}}, "bush": {"_count": 1, "or": {"_count": 1}}, "frantic": {"_count": 1, "instructions": {"_count": 1}}, "amongst": {"_count": 1, "themselves": {"_count": 1}}, "broke": {"_count": 1, "out": {"_count": 1}}, "for": {"_count": 1, "her": {"_count": 1}}}, "excitedly": {"_count": 84, "together": {"_count": 2, "": {"_count": 2}}, "too": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "showed": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 36, ".": {"_count": 36}}, "at": {"_count": 4, "Harry": {"_count": 1}, "the": {"_count": 3}}, "Lockhart": {"_count": 1, "dived": {"_count": 1}}, "as": {"_count": 7, "she": {"_count": 1}, "they": {"_count": 2}, "his": {"_count": 1}, "he": {"_count": 1}, "usual": {"_count": 1}, "if": {"_count": 1}}, "the": {"_count": 2, "class": {"_count": 1}, "Gryffindors": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 1}, "Goyle": {"_count": 1}, "his": {"_count": 1}}, "holding": {"_count": 1, "out": {"_count": 1}}, "no": {"_count": 1, "magic": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "pointing": {"_count": 2, "at": {"_count": 2}}, "to": {"_count": 2, "one": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 4, "nothing": {"_count": 1}, "Krum": {"_count": 1}, "Sirius": {"_count": 1}, "Hermione": {"_count": 1}}, "laughing": {"_count": 1, "joking": {"_count": 1}}, "comparing": {"_count": 1, "notes": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "attempting": {"_count": 1, "the": {"_count": 1}}, "round": {"_count": 1, "and": {"_count": 1}}, "brandishing": {"_count": 1, "her": {"_count": 1}}, "running": {"_count": 1, "a": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "raising": {"_count": 1, "her": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "joining": {"_count": 1, "Harry": {"_count": 1}}, "unrolling": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "inside": {"_count": 1}}, "now": {"_count": 1, "the": {"_count": 1}}}, "together": {"_count": 385, "": {"_count": 123, ".": {"_count": 109}, "!": {"_count": 4}, "?": {"_count": 10}}, "he": {"_count": 8, "let": {"_count": 1}, "and": {"_count": 4}, "said": {"_count": 2}, "Ron": {"_count": 1}}, "with": {"_count": 9, "a": {"_count": 3}, "what": {"_count": 1}, "binder": {"_count": 1}, "wands": {"_count": 1}, "glee": {"_count": 1}, "sleep": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 9, "it": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "Krum": {"_count": 1}, "that": {"_count": 1}, "Hermione": {"_count": 1}, "suddenly": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}}, "than": {"_count": 1, "they": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "to": {"_count": 12, "block": {"_count": 1}, "give": {"_count": 1}, "read": {"_count": 1}, "let": {"_count": 1}, "form": {"_count": 1}, "send": {"_count": 1}, "whisper": {"_count": 1}, "make": {"_count": 2}, "discuss": {"_count": 1}, "bring": {"_count": 1}, "support": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 6, "he": {"_count": 1}, "that": {"_count": 3}, "we": {"_count": 1}, "tightly": {"_count": 1}}, "instantly": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 8, "": {"_count": 2}, "and": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "correct": {"_count": 1}, "when": {"_count": 1}, "This": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 2}}, "weve": {"_count": 2, "only": {"_count": 1}, "been": {"_count": 1}}, "Why": {"_count": 1, "couldnt": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "far": {"_count": 1, "from": {"_count": 1}}, "seeking": {"_count": 1, "out": {"_count": 1}}, "while": {"_count": 1, "Slytherins": {"_count": 1}}, "and": {"_count": 28, "they": {"_count": 2}, "beaming": {"_count": 1}, "looking": {"_count": 2}, "the": {"_count": 2}, "he": {"_count": 3}, "applauded": {"_count": 1}, "smiling": {"_count": 1}, "Hermione": {"_count": 1}, "answer": {"_count": 1}, "casting": {"_count": 1}, "looked": {"_count": 1}, "Dumbledores": {"_count": 1}, "attempt": {"_count": 1}, "pacing": {"_count": 1}, "listened": {"_count": 1}, "which": {"_count": 1}, "look": {"_count": 1}, "planning": {"_count": 1}, "direct": {"_count": 1}, "talking": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}, "there": {"_count": 1}}, "very": {"_count": 4, "tightly": {"_count": 1}, "angrily": {"_count": 1}, "loudly": {"_count": 1}, "well": {"_count": 1}}, "in": {"_count": 13, "a": {"_count": 5}, "furious": {"_count": 1}, "the": {"_count": 4}, "their": {"_count": 1}, "various": {"_count": 1}, "English": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "they": {"_count": 11, "walked": {"_count": 1}, "were": {"_count": 1}, "seemed": {"_count": 1}, "backed": {"_count": 1}, "stepped": {"_count": 1}, "rose": {"_count": 1}, "worked": {"_count": 1}, "turned": {"_count": 2}, "marched": {"_count": 1}, "lifted": {"_count": 1}}, "as": {"_count": 8, "Aunt": {"_count": 1}, "only": {"_count": 1}, "they": {"_count": 1}, "did": {"_count": 1}, "he": {"_count": 1}, "Yaxleys": {"_count": 1}, "if": {"_count": 1}, "though": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 4}, "Saturday": {"_count": 1}, "almost": {"_count": 1}}, "said": {"_count": 6, "Fred": {"_count": 1}, "Ron": {"_count": 2}, "We": {"_count": 1}, "Mrs": {"_count": 1}, "Neville": {"_count": 1}}, "the": {"_count": 3, "first": {"_count": 1}, "whole": {"_count": 1}, "more": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "at": {"_count": 10, "the": {"_count": 8}, "mealtimes": {"_count": 1}, "this": {"_count": 1}}, "Hermione": {"_count": 1, "left": {"_count": 1}}, "soon": {"_count": 1, "theyll": {"_count": 1}}, "Troy": {"_count": 1, "in": {"_count": 1}}, "before": {"_count": 2, "turning": {"_count": 1}, "they": {"_count": 1}}, "wouldnt": {"_count": 1, "you": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "quills": {"_count": 1, "out": {"_count": 1}}, "writing": {"_count": 1, "something": {"_count": 1}}, "sometime": {"_count": 1, "": {"_count": 1}}, "during": {"_count": 1, "those": {"_count": 1}}, "Moody": {"_count": 1, "still": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 2}}, "without": {"_count": 2, "inviting": {"_count": 1}, "him": {"_count": 1}}, "talking": {"_count": 1, "in": {"_count": 1}}, "anyway": {"_count": 2, "": {"_count": 2}}, "since": {"_count": 1, "they": {"_count": 1}}, "cant": {"_count": 1, "stand": {"_count": 1}}, "about": {"_count": 1, "halfway": {"_count": 1}}, "be": {"_count": 2, "strong": {"_count": 1}, "united": {"_count": 1}}, "whispering": {"_count": 1, "and": {"_count": 1}}, "only": {"_count": 1, "once": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "something": {"_count": 1, "on": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "Dear": {"_count": 1, "Ron": {"_count": 1}}, "I": {"_count": 2, "would": {"_count": 1}, "doubt": {"_count": 1}}, "good": {"_count": 1, "as": {"_count": 1}}, "discussing": {"_count": 1, "Angelinas": {"_count": 1}}, "under": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "like": {"_count": 1, "tha": {"_count": 1}}, "fer": {"_count": 1, "their": {"_count": 1}}, "giants": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 2, "it": {"_count": 1}, "Hermione": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "later": {"_count": 1, "that": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "Accio": {"_count": 1, "BroomsV": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "was": {"_count": 2, "very": {"_count": 1}, "becoming": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "bound": {"_count": 1, "by": {"_count": 1}}, "for": {"_count": 6, "she": {"_count": 1}, "the": {"_count": 1}, "longer": {"_count": 1}, "mutual": {"_count": 1}, "a": {"_count": 1}, "more": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 5, "angry": {"_count": 1}, "distressed": {"_count": 1}, "surprised": {"_count": 1}, "aghast": {"_count": 1}, "down": {"_count": 1}}, "a": {"_count": 1, "hole": {"_count": 1}}, "then": {"_count": 1, "split": {"_count": 1}}, "an": {"_count": 1, "uncomfortable": {"_count": 1}}, "you": {"_count": 1, "played": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "time": {"_count": 1}}, "both": {"_count": 2, "looking": {"_count": 1}, "considered": {"_count": 1}}, "there": {"_count": 2, "until": {"_count": 1}, "was": {"_count": 1}}, "had": {"_count": 1, "sent": {"_count": 1}}, "Harry": {"_count": 3, "could": {"_count": 1}, "felt": {"_count": 1}, "Ron": {"_count": 1}}, "ran": {"_count": 1, "forward": {"_count": 1}}, "its": {"_count": 1, "only": {"_count": 1}}, "could": {"_count": 1, "provide": {"_count": 1}}, "visiting": {"_count": 1, "and": {"_count": 1}}, "Wow": {"_count": 1, "were": {"_count": 1}}, "became": {"_count": 1, "virtually": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "realms": {"_count": 1}}, "gazing": {"_count": 1, "around": {"_count": 1}}, "began": {"_count": 1, "Harry": {"_count": 1}}, "some": {"_count": 1, "yards": {"_count": 1}}, "automatically": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "helping": {"_count": 1, "clear": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 2, "spells": {"_count": 1}, "branches": {"_count": 1}}, "crouching": {"_count": 1, "low": {"_count": 1}}, "more": {"_count": 1, "securely": {"_count": 1}}, "teachers": {"_count": 1, "and": {"_count": 1}}}, "enraged": {"_count": 4, "to": {"_count": 1, "see": {"_count": 1}}, "that": {"_count": 1, "Hermione": {"_count": 1}}, "werewolf": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "see": {"_count": 1821, "that": {"_count": 61, "a": {"_count": 2}, "she": {"_count": 4}, "he": {"_count": 7}, "all": {"_count": 2}, "stuff": {"_count": 1}, "unicorn": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 3}, "the": {"_count": 8}, "their": {"_count": 1}, "Draco": {"_count": 1}, "picture": {"_count": 1}, "my": {"_count": 2}, "it": {"_count": 1}, "Scabbers": {"_count": 1}, "": {"_count": 3}, "Professor": {"_count": 1}, "far": {"_count": 1}, "sirs": {"_count": 1}, "house": {"_count": 1}, "GrubblyPlank": {"_count": 1}, "you": {"_count": 5}, "we": {"_count": 1}, "Hagrid": {"_count": 1}, "chink": {"_count": 1}, "being": {"_count": 1}, "there": {"_count": 1}, "did": {"_count": 1}, "nearly": {"_count": 1}, "coming": {"_count": 1}, "I": {"_count": 1}, "yours": {"_count": 1}, "said": {"_count": 1}, "anyone": {"_count": 1}}, "the": {"_count": 170, "owls": {"_count": 1}, "bundle": {"_count": 1}, "Leaky": {"_count": 1}, "High": {"_count": 1}, "little": {"_count": 2}, "Great": {"_count": 1}, "burns": {"_count": 1}, "lighted": {"_count": 1}, "Stone": {"_count": 1}, "bars": {"_count": 1}, "train": {"_count": 1}, "wreckage": {"_count": 1}, "grisly": {"_count": 1}, "day": {"_count": 1}, "Slytherin": {"_count": 1}, "headmaster": {"_count": 4}, "dark": {"_count": 2}, "attacker": {"_count": 1}, "sun": {"_count": 1}, "eyes": {"_count": 1}, "outline": {"_count": 2}, "giant": {"_count": 1}, "vast": {"_count": 1}, "mouth": {"_count": 1}, "point": {"_count": 3}, "Hogwarts": {"_count": 1}, "Grim": {"_count": 1}, "thing": {"_count": 1}, "word": {"_count": 1}, "disguise": {"_count": 1}, "Snitch": {"_count": 2}, "entrance": {"_count": 1}, "dementor": {"_count": 2}, "edge": {"_count": 2}, "dog": {"_count": 1}, "trees": {"_count": 1}, "werewolf": {"_count": 1}, "truth": {"_count": 3}, "Whomping": {"_count": 1}, "speaker": {"_count": 1}, "back": {"_count": 3}, "World": {"_count": 1}, "cogs": {"_count": 1}, "conclusion": {"_count": 1}, "broad": {"_count": 1}, "plugs": {"_count": 1}, "city": {"_count": 1}, "inside": {"_count": 1}, "Ministry": {"_count": 2}, "floating": {"_count": 1}, "way": {"_count": 2}, "tournament": {"_count": 1}, "Triwizard": {"_count": 1}, "combs": {"_count": 1}, "whites": {"_count": 1}, "hinges": {"_count": 1}, "sparkling": {"_count": 1}, "full": {"_count": 1}, "expression": {"_count": 1}, "bottom": {"_count": 2}, "connection": {"_count": 1}, "stone": {"_count": 1}, "tops": {"_count": 2}, "circular": {"_count": 1}, "paper": {"_count": 1}, "view": {"_count": 1}, "stands": {"_count": 1}, "only": {"_count": 1}, "outlines": {"_count": 1}, "simplicity": {"_count": 1}, "old": {"_count": 1}, "fuzzy": {"_count": 1}, "Diggorys": {"_count": 1}, "boys": {"_count": 1}, "person": {"_count": 1}, "problem": {"_count": 1}, "Daily": {"_count": 2}, "top": {"_count": 1}, "scar": {"_count": 1}, "use": {"_count": 1}, "statue": {"_count": 1}, "effect": {"_count": 1}, "batwinged": {"_count": 1}, "Prophet": {"_count": 1}, "start": {"_count": 1}, "letter": {"_count": 1}, "tip": {"_count": 1}, "numerals": {"_count": 1}, "thestrals": {"_count": 1}, "Quaffle": {"_count": 1}, "notice": {"_count": 1}, "street": {"_count": 1}, "recipients": {"_count": 1}, "white": {"_count": 1}, "enjoyment": {"_count": 1}, "fortune": {"_count": 1}, "towering": {"_count": 1}, "soles": {"_count": 1}, "earth": {"_count": 1}, "look": {"_count": 1}, "tiny": {"_count": 1}, "closest": {"_count": 1}, "things": {"_count": 2}, "slightest": {"_count": 1}, "glittering": {"_count": 1}, "Quidditch": {"_count": 1}, "clear": {"_count": 1}, "flaw": {"_count": 2}, "gloating": {"_count": 1}, "place": {"_count": 7}, "Malfoys": {"_count": 1}, "corridors": {"_count": 1}, "mysterious": {"_count": 1}, "gleaming": {"_count": 1}, "Divination": {"_count": 1}, "very": {"_count": 1}, "marks": {"_count": 1}, "snowy": {"_count": 1}, "team": {"_count": 1}, "shadow": {"_count": 1}, "headquarters": {"_count": 1}, "final": {"_count": 1}, "Riddle": {"_count": 1}, "prophecy": {"_count": 1}, "walls": {"_count": 1}, "hippogriff": {"_count": 1}, "Dursleys": {"_count": 1}, "scarlet": {"_count": 1}, "blondhaired": {"_count": 1}, "cottage": {"_count": 1}, "graveyard": {"_count": 1}, "halfhealed": {"_count": 1}, "name": {"_count": 1}, "girl": {"_count": 1}, "usually": {"_count": 1}, "crystal": {"_count": 1}, "cloth": {"_count": 1}, "dragons": {"_count": 1}, "Inferifilled": {"_count": 1}, "Death": {"_count": 1}, "single": {"_count": 1}, "red": {"_count": 1}}, "a": {"_count": 52, "single": {"_count": 1}, "curiously": {"_count": 1}, "huge": {"_count": 1}, "tiny": {"_count": 2}, "great": {"_count": 2}, "dragon": {"_count": 1}, "clearing": {"_count": 1}, "sign": {"_count": 2}, "gang": {"_count": 1}, "branch": {"_count": 1}, "muscle": {"_count": 1}, "little": {"_count": 1}, "healthysized": {"_count": 1}, "bit": {"_count": 1}, "gaggle": {"_count": 2}, "thing": {"_count": 2}, "patch": {"_count": 1}, "very": {"_count": 1}, "narrow": {"_count": 1}, "plate": {"_count": 1}, "beard": {"_count": 1}, "strip": {"_count": 1}, "dog": {"_count": 1}, "vein": {"_count": 1}, "slight": {"_count": 1}, "sliver": {"_count": 1}, "signpost": {"_count": 1}, "lot": {"_count": 3}, "light": {"_count": 1}, "round": {"_count": 1}, "village": {"_count": 1}, "loophole": {"_count": 1}, "black": {"_count": 1}, "blue": {"_count": 1}, "few": {"_count": 1}, "silver": {"_count": 1}, "couple": {"_count": 1}, "pair": {"_count": 1}, "wispy": {"_count": 1}, "hand": {"_count": 1}, "stream": {"_count": 1}, "jeweled": {"_count": 1}, "trace": {"_count": 1}, "flash": {"_count": 1}, "sunlit": {"_count": 1}}, "how": {"_count": 52, "he": {"_count": 9}, "much": {"_count": 4}, "they": {"_count": 3}, "it": {"_count": 2}, "eight": {"_count": 1}, "useful": {"_count": 2}, "foolish": {"_count": 1}, "our": {"_count": 1}, "Ginny": {"_count": 1}, "happy": {"_count": 2}, "yeh": {"_count": 1}, "theyd": {"_count": 1}, "Dumbledore": {"_count": 2}, "Sirius": {"_count": 1}, "she": {"_count": 2}, "this": {"_count": 1}, "the": {"_count": 2}, "we": {"_count": 1}, "you": {"_count": 3}, "well": {"_count": 1}, "on": {"_count": 1}, "quietly": {"_count": 1}, "were": {"_count": 1}, "long": {"_count": 1}, "to": {"_count": 1}, "youve": {"_count": 1}, "anybody": {"_count": 1}, "are": {"_count": 1}, "Kreacher": {"_count": 1}, "good": {"_count": 1}, "": {"_count": 1}}, "anything": {"_count": 14, "that": {"_count": 1}, "": {"_count": 5}, "at": {"_count": 1}, "but": {"_count": 1}, "except": {"_count": 1}, "none": {"_count": 1}, "unusual": {"_count": 1}, "Miss": {"_count": 1}, "of": {"_count": 1}, "through": {"_count": 1}}, "you": {"_count": 123, "soon": {"_count": 3}, "at": {"_count": 6}, "again": {"_count": 5}, "in": {"_count": 7}, "later": {"_count": 8}, "": {"_count": 22}, "sir": {"_count": 2}, "there": {"_count": 2}, "havent": {"_count": 2}, "of": {"_count": 1}, "are": {"_count": 3}, "Harry": {"_count": 3}, "two": {"_count": 2}, "out": {"_count": 2}, "try": {"_count": 3}, "on": {"_count": 2}, "old": {"_count": 1}, "I": {"_count": 1}, "both": {"_count": 2}, "blown": {"_count": 1}, "Black": {"_count": 1}, "were": {"_count": 1}, "know": {"_count": 1}, "upstairs": {"_count": 1}, "flinch": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 2}, "sometimes": {"_count": 1}, "all": {"_count": 4}, "as": {"_count": 1}, "properly": {"_count": 1}, "down": {"_count": 1}, "said": {"_count": 1}, "around": {"_count": 5}, "look": {"_count": 1}, "three": {"_count": 1}, "risking": {"_count": 1}, "alone": {"_count": 1}, "cant": {"_count": 1}, "Potter": {"_count": 1}, "maam": {"_count": 1}, "this": {"_count": 1}, "back": {"_count": 2}, "do": {"_count": 1}, "quite": {"_count": 1}, "good": {"_count": 1}, "throwing": {"_count": 1}, "The": {"_count": 1}, "coming": {"_count": 1}, "appreciate": {"_count": 1}, "so": {"_count": 2}, "leaving": {"_count": 1}, "made": {"_count": 1}, "dont": {"_count": 1}, "acting": {"_count": 1}}, "its": {"_count": 5, "here": {"_count": 1}, "face": {"_count": 1}, "tongue": {"_count": 1}, "mouth": {"_count": 1}, "a": {"_count": 1}}, "huge": {"_count": 1, "poisonous": {"_count": 1}}, "if": {"_count": 43, "anyone": {"_count": 2}, "it": {"_count": 2}, "anyones": {"_count": 1}, "its": {"_count": 2}, "we": {"_count": 6}, "the": {"_count": 3}, "they": {"_count": 5}, "Toms": {"_count": 1}, "theyve": {"_count": 2}, "hes": {"_count": 1}, "youve": {"_count": 2}, "theres": {"_count": 1}, "she": {"_count": 1}, "their": {"_count": 1}, "Cedrics": {"_count": 1}, "hed": {"_count": 1}, "I": {"_count": 3}, "everyone": {"_count": 1}, "Olivers": {"_count": 1}, "you": {"_count": 3}, "St": {"_count": 1}, "he": {"_count": 1}, "shes": {"_count": 1}}, "so": {"_count": 4, "youve": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 2}}, "it": {"_count": 55, "": {"_count": 15}, "then": {"_count": 1}, "before": {"_count": 1}, "again": {"_count": 3}, "all": {"_count": 1}, "turn": {"_count": 1}, "was": {"_count": 3}, "writhing": {"_count": 1}, "Hagrid": {"_count": 1}, "wouldnt": {"_count": 1}, "twitch": {"_count": 1}, "very": {"_count": 1}, "start": {"_count": 1}, "properly": {"_count": 1}, "at": {"_count": 2}, "Harry": {"_count": 2}, "chasing": {"_count": 1}, "from": {"_count": 2}, "I": {"_count": 3}, "Youd": {"_count": 1}, "collided": {"_count": 1}, "is": {"_count": 1}, "though": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 2}, "although": {"_count": 1}, "still": {"_count": 1}, "happening": {"_count": 1}, "the": {"_count": 1}, "happen": {"_count": 1}, "trembling": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "three": {"_count": 1, "letters": {"_count": 1}}, "and": {"_count": 10, "hed": {"_count": 1}, "panicked": {"_count": 1}, "hear": {"_count": 1}, "how": {"_count": 1}, "sniggering": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "they": {"_count": 1}}, "what": {"_count": 108, "he": {"_count": 8}, "was": {"_count": 22}, "the": {"_count": 10}, "it": {"_count": 8}, "McGonagall": {"_count": 1}, "had": {"_count": 4}, "section": {"_count": 1}, "Lockharts": {"_count": 1}, "you": {"_count": 7}, "Ive": {"_count": 2}, "else": {"_count": 1}, "use": {"_count": 1}, "hes": {"_count": 2}, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}, "happens": {"_count": 2}, "lay": {"_count": 1}, "they": {"_count": 3}, "there": {"_count": 1}, "Crouch": {"_count": 1}, "Percys": {"_count": 1}, "that": {"_count": 1}, "Krum": {"_count": 1}, "those": {"_count": 1}, "theyre": {"_count": 2}, "she": {"_count": 2}, "we": {"_count": 1}, "grade": {"_count": 1}, "shes": {"_count": 1}, "Umbridge": {"_count": 1}, "Sirius": {"_count": 1}, "all": {"_count": 1}, "I": {"_count": 1}, "happened": {"_count": 2}, "would": {"_count": 1}, "Hokey": {"_count": 1}, "attractions": {"_count": 1}, "Malfoy": {"_count": 2}, "Malfoys": {"_count": 2}, "Draco": {"_count": 1}, "this": {"_count": 1}, "lies": {"_count": 1}, "Voldemort": {"_count": 1}, "Im": {"_count": 1}, "Bellatrix": {"_count": 1}}, "": {"_count": 170, ".": {"_count": 120}, "?": {"_count": 41}, "!": {"_count": 9}}, "more": {"_count": 4, "magic": {"_count": 1}, "pipes": {"_count": 1}, "of": {"_count": 1}, "flashes": {"_count": 1}}, "fabulous": {"_count": 1, "jewels": {"_count": 1}}, "why": {"_count": 19, "first": {"_count": 1}, "he": {"_count": 3}, "wed": {"_count": 1}, "Ron": {"_count": 1}, "were": {"_count": 1}, "today": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 3}, "the": {"_count": 2}, "": {"_count": 1}, "we": {"_count": 2}, "people": {"_count": 1}, "thats": {"_count": 1}}, "himself": {"_count": 3, "reflected": {"_count": 1}, "exactly": {"_count": 1}, "represented": {"_count": 1}}, "him": {"_count": 79, "looking": {"_count": 1}, "Mom": {"_count": 1}, "": {"_count": 16}, "anywhere": {"_count": 1}, "of": {"_count": 1}, "alive": {"_count": 1}, "laughing": {"_count": 1}, "in": {"_count": 1}, "frowning": {"_count": 1}, "on": {"_count": 1}, "standing": {"_count": 2}, "before": {"_count": 2}, "walking": {"_count": 2}, "please": {"_count": 1}, "sitting": {"_count": 1}, "he": {"_count": 1}, "limping": {"_count": 1}, "safely": {"_count": 1}, "itching": {"_count": 1}, "come": {"_count": 1}, "make": {"_count": 1}, "but": {"_count": 2}, "sir": {"_count": 1}, "sometimes": {"_count": 1}, "said": {"_count": 2}, "going": {"_count": 1}, "letting": {"_count": 1}, "its": {"_count": 1}, "sweating": {"_count": 1}, "risk": {"_count": 1}, "they": {"_count": 1}, "made": {"_count": 1}, "try": {"_count": 1}, "is": {"_count": 1}, "later": {"_count": 1}, "Er": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 2}, "Harry": {"_count": 1}, "lumbering": {"_count": 1}, "grinning": {"_count": 1}, "coming": {"_count": 1}, "lurking": {"_count": 1}, "about": {"_count": 1}, "by": {"_count": 1}, "right": {"_count": 1}, "sneering": {"_count": 1}, "pass": {"_count": 1}, "stumping": {"_count": 1}, "at": {"_count": 1}, "hiding": {"_count": 1}, "because": {"_count": 1}, "as": {"_count": 1}, "now": {"_count": 1}, "plainly": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "lying": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}, "mountains": {"_count": 2, "and": {"_count": 2}}, "his": {"_count": 24, "sneakers": {"_count": 1}, "face": {"_count": 5}, "scar": {"_count": 1}, "knight": {"_count": 1}, "way": {"_count": 1}, "family": {"_count": 1}, "eager": {"_count": 1}, "teammates": {"_count": 1}, "clothes": {"_count": 1}, "houseelfs": {"_count": 1}, "clawed": {"_count": 1}, "hair": {"_count": 1}, "outline": {"_count": 1}, "parents": {"_count": 1}, "tryout": {"_count": 1}, "own": {"_count": 1}, "bricklike": {"_count": 1}, "saviors": {"_count": 1}, "glasses": {"_count": 1}, "one": {"_count": 1}}, "Ill": {"_count": 1, "eat": {"_count": 1}}, "So": {"_count": 1, "try": {"_count": 1}}, "Rons": {"_count": 3, "twin": {"_count": 1}, "deserted": {"_count": 1}, "or": {"_count": 1}}, "them": {"_count": 46, "all": {"_count": 2}, "any": {"_count": 1}, "standing": {"_count": 2}, "": {"_count": 8}, "safely": {"_count": 1}, "in": {"_count": 2}, "they": {"_count": 1}, "or": {"_count": 1}, "edging": {"_count": 1}, "are": {"_count": 1}, "swirling": {"_count": 1}, "next": {"_count": 1}, "for": {"_count": 1}, "exchanging": {"_count": 1}, "it": {"_count": 1}, "surrounded": {"_count": 1}, "dddead": {"_count": 1}, "too": {"_count": 2}, "ever": {"_count": 1}, "and": {"_count": 2}, "especially": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "said": {"_count": 1}, "reflecting": {"_count": 1}, "trying": {"_count": 1}, "purple": {"_count": 1}, "try": {"_count": 1}, "exchange": {"_count": 1}, "but": {"_count": 1}, "straightaway": {"_count": 1}, "pass": {"_count": 1}, "off": {"_count": 1}, "again": {"_count": 1}}, "didnt": {"_count": 1, "look": {"_count": 1}}, "over": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 3}}, "whether": {"_count": 30, "Filch": {"_count": 1}, "Justin": {"_count": 1}, "they": {"_count": 3}, "Dumbledore": {"_count": 1}, "he": {"_count": 7}, "she": {"_count": 2}, "there": {"_count": 1}, "Gryffindor": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 2}, "Ron": {"_count": 1}, "anybody": {"_count": 1}, "Harry": {"_count": 1}, "Neville": {"_count": 1}, "any": {"_count": 2}, "I": {"_count": 1}, "we": {"_count": 1}, "a": {"_count": 1}}, "here": {"_count": 8, "Miss": {"_count": 1}, "how": {"_count": 1}, "young": {"_count": 1}, "Lucius": {"_count": 1}, "Dumbledore": {"_count": 2}, "Fudge": {"_count": 1}, "was": {"_count": 1}}, "us": {"_count": 6, "": {"_count": 2}, "win": {"_count": 1}, "off": {"_count": 2}, "whoever": {"_count": 1}}, "one": {"_count": 6, "Hagrid": {"_count": 1}, "person": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "no": {"_count": 13, "reflection": {"_count": 1}, "reason": {"_count": 3}, "difference": {"_count": 1}, "evidence": {"_count": 1}, "snag": {"_count": 1}, "gas": {"_count": 1}, "sign": {"_count": 2}, "one": {"_count": 1}, "way": {"_count": 2}}, "your": {"_count": 4, "mom": {"_count": 1}, "father": {"_count": 1}, "nephew": {"_count": 1}, "new": {"_count": 1}}, "all": {"_count": 3, "your": {"_count": 2}, "of": {"_count": 1}}, "my": {"_count": 3, "parents": {"_count": 1}, "self": {"_count": 1}, "published": {"_count": 1}}, "when": {"_count": 5, "you": {"_count": 3}, "Lucius": {"_count": 1}, "he": {"_count": 1}}, "myself": {"_count": 3, "holding": {"_count": 2}, "shaking": {"_count": 1}}, "Dumbledore": {"_count": 12, "was": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 4}, "standing": {"_count": 1}, "said": {"_count": 2}, "put": {"_count": 1}, "when": {"_count": 1}, "if": {"_count": 1}}, "something": {"_count": 10, "scarlet": {"_count": 1}, "moving": {"_count": 1}, "else": {"_count": 2}, "": {"_count": 2}, "unusual": {"_count": 1}, "but": {"_count": 1}, "of": {"_count": 1}, "like": {"_count": 1}}, "where": {"_count": 30, "Snape": {"_count": 1}, "its": {"_count": 1}, "Quirrell": {"_count": 1}, "the": {"_count": 5}, "it": {"_count": 5}, "Harry": {"_count": 1}, "this": {"_count": 1}, "Uncle": {"_count": 1}, "he": {"_count": 3}, "Cedric": {"_count": 1}, "shes": {"_count": 1}, "Wormtail": {"_count": 1}, "MadEye": {"_count": 1}, "those": {"_count": 1}, "you": {"_count": 1}, "Mundungus": {"_count": 1}, "Malfoy": {"_count": 1}, "they": {"_count": 1}, "Slughorn": {"_count": 1}, "in": {"_count": 1}}, "through": {"_count": 11, "the": {"_count": 4}, "this": {"_count": 1}, "them": {"_count": 1}, "solid": {"_count": 1}, "Invisibility": {"_count": 2}, "walls": {"_count": 1}, "it": {"_count": 1}}, "Quirrell": {"_count": 2, "standing": {"_count": 1}, "howling": {"_count": 1}}, "me": {"_count": 29, "later": {"_count": 1}, "come": {"_count": 1}, "": {"_count": 4}, "Professor": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}, "take": {"_count": 2}, "with": {"_count": 1}, "to": {"_count": 1}, "now": {"_count": 1}, "for": {"_count": 1}, "all": {"_count": 1}, "so": {"_count": 1}, "very": {"_count": 1}, "outside": {"_count": 1}, "disarm": {"_count": 1}, "make": {"_count": 1}, "Headmistress": {"_count": 1}, "when": {"_count": 1}, "again": {"_count": 1}, "but": {"_count": 1}, "Dumbledore": {"_count": 1}, "said": {"_count": 1}, "Hermione": {"_count": 1}, "one": {"_count": 1}}, "an": {"_count": 5, "when": {"_count": 1}, "old": {"_count": 1}, "aunt": {"_count": 1}, "angry": {"_count": 1}, "applicant": {"_count": 1}}, "Professor": {"_count": 21, "Snape": {"_count": 1}, "Dumbledore": {"_count": 6}, "McGonagall": {"_count": 4}, "Lupin": {"_count": 2}, "Flitwick": {"_count": 2}, "Moody": {"_count": 3}, "GrubblyPlank": {"_count": 1}, "Slughorn": {"_count": 1}, "Vector": {"_count": 1}}, "Slytherin": {"_count": 3, "lose": {"_count": 1}, "beaten": {"_count": 1}, "s": {"_count": 1}}, "anythin": {"_count": 1, "let": {"_count": 1}}, "Hagrid": {"_count": 17, "now": {"_count": 1}, "shaking": {"_count": 2}, "who": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "because": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 2}, "helping": {"_count": 1}, "again": {"_count": 1}, "watching": {"_count": 1}, "feeding": {"_count": 1}, "slamming": {"_count": 1}, "with": {"_count": 1}}, "another": {"_count": 3, "door": {"_count": 1}, "person": {"_count": 1}, "twenty": {"_count": 1}}, "clearly": {"_count": 2, "all": {"_count": 1}, "what": {"_count": 1}}, "nothing": {"_count": 9, "but": {"_count": 4}, "at": {"_count": 3}, "below": {"_count": 1}, "of": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "they": {"_count": 1, "looked": {"_count": 1}}, "he": {"_count": 10, "could": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 2}, "opened": {"_count": 1}, "ripped": {"_count": 1}, "comes": {"_count": 1}, "added": {"_count": 2}, "himself": {"_count": 1}}, "only": {"_count": 4, "one": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 1}}, "themselves": {"_count": 2, "making": {"_count": 1}, "darting": {"_count": 1}}, "Draco": {"_count": 2, "Malfoy": {"_count": 1}, "looking": {"_count": 1}}, "Be": {"_count": 1, "quiet": {"_count": 1}}, "famous": {"_count": 1, "Harry": {"_count": 1}}, "any": {"_count": 8, "way": {"_count": 2}, "hope": {"_count": 1}, "sign": {"_count": 1}, "point": {"_count": 1}, "boils": {"_count": 1}, "of": {"_count": 2}}, "Malfoy": {"_count": 9, "strutting": {"_count": 1}, "pretending": {"_count": 1}, "who": {"_count": 1}, "clapping": {"_count": 1}, "Crabbe": {"_count": 1}, "cant": {"_count": 1}, "anywhere": {"_count": 1}, "s": {"_count": 1}, "on": {"_count": 1}}, "Harry": {"_count": 18, "and": {"_count": 1}, "here": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 3}, "edged": {"_count": 1}, "watching": {"_count": 1}, "there": {"_count": 1}, "soon": {"_count": 1}, "Potter": {"_count": 2}, "to": {"_count": 1}, "grunted": {"_count": 1}, "said": {"_count": 1}, "pressed": {"_count": 1}, "that": {"_count": 1}, "shook": {"_count": 1}}, "we": {"_count": 5, "had": {"_count": 1}, "are": {"_count": 2}, "kept": {"_count": 1}, "have": {"_count": 1}}, "Fred": {"_count": 6, "and": {"_count": 5}, "George": {"_count": 1}}, "certain": {"_count": 1, "of": {"_count": 1}}, "yeh": {"_count": 5, "down": {"_count": 1}, "Hermione": {"_count": 1}, "mate": {"_count": 1}, "": {"_count": 1}, "tomorrow": {"_count": 1}}, "this": {"_count": 6, "little": {"_count": 1}, "morning": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "other": {"_count": 1}}, "Hermione": {"_count": 11, "dashing": {"_count": 1}, "said": {"_count": 2}, "pinioned": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}, "pointing": {"_count": 1}, "stalking": {"_count": 1}, "giving": {"_count": 1}, "crouched": {"_count": 1}, "and": {"_count": 1}}, "who": {"_count": 17, "had": {"_count": 7}, "he": {"_count": 1}, "else": {"_count": 3}, "broke": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 2}, "and": {"_count": 1}, "weve": {"_count": 1}}, "youve": {"_count": 2, "all": {"_count": 1}, "met": {"_count": 1}}, "about": {"_count": 3, "this": {"_count": 2}, "how": {"_count": 1}}, "right": {"_count": 2, "through": {"_count": 2}}, "some": {"_count": 4, "punishmenti": {"_count": 1}, "of": {"_count": 1}, "stuff": {"_count": 1}, "sort": {"_count": 1}}, "anyone": {"_count": 9, "near": {"_count": 1}, "": {"_count": 3}, "else": {"_count": 2}, "trying": {"_count": 1}, "out": {"_count": 1}, "there": {"_count": 1}}, "of": {"_count": 6, "Professor": {"_count": 1}, "Hermiones": {"_count": 1}, "them": {"_count": 1}, "Dudleys": {"_count": 1}, "Hagrid": {"_count": 1}, "Malfoy": {"_count": 1}}, "Ive": {"_count": 1, "lost": {"_count": 1}}, "Justin": {"_count": 2, "looking": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "dust": {"_count": 1}}, "Goyle": {"_count": 1, "thinking": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 27, "Harry": {"_count": 4}, "Aunt": {"_count": 1}, "Professor": {"_count": 2}, "Lupin": {"_count": 2}, "Charlie": {"_count": 1}, "Moody": {"_count": 1}, "Dumbledore": {"_count": 3}, "Uncle": {"_count": 1}, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "Tonks": {"_count": 1}, "Phineas": {"_count": 1}, "Hermione": {"_count": 2}, "George": {"_count": 1}, "Hagrid": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Slughorn": {"_count": 1}, "Ted": {"_count": 1}, "Travers": {"_count": 1}}, "was": {"_count": 3, "the": {"_count": 1}, "whiteness": {"_count": 1}, "Borgin": {"_count": 1}}, "patches": {"_count": 2, "of": {"_count": 2}}, "Lockhart": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 3, "very": {"_count": 1}, "happy": {"_count": 1}, "rather": {"_count": 1}}, "Ginny": {"_count": 3, "told": {"_count": 1}, "wincing": {"_count": 1}, "so": {"_count": 1}}, "now": {"_count": 9, "": {"_count": 2}, "firs": {"_count": 1}, "was": {"_count": 1}, "dont": {"_count": 1}, "that": {"_count": 3}, "how": {"_count": 1}}, "yes": {"_count": 1, "I": {"_count": 1}}, "Lucius": {"_count": 1, "said": {"_count": 1}}, "Percy": {"_count": 2, "doing": {"_count": 1}, "and": {"_count": 1}}, "is": {"_count": 4, "scar": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 3, "and": {"_count": 1}, "jogging": {"_count": 1}, "crawling": {"_count": 1}}, "in": {"_count": 10, "mine": {"_count": 1}, "a": {"_count": 2}, "me": {"_count": 1}, "your": {"_count": 1}, "Krum": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 1}, "him": {"_count": 1}}, "past": {"_count": 4, "the": {"_count": 2}, "Dumbledore": {"_count": 1}, "Slughorn": {"_count": 1}}, "death": {"_count": 1, "omens": {"_count": 1}}, "our": {"_count": 2, "name": {"_count": 1}, "new": {"_count": 1}}, "Hedwig": {"_count": 1, "and": {"_count": 1}}, "Professors": {"_count": 1, "McGonagall": {"_count": 1}}, "Percys": {"_count": 2, "face": {"_count": 1}, "head": {"_count": 1}}, "Black": {"_count": 2, "try": {"_count": 1}, "laughing": {"_count": 1}}, "exactly": {"_count": 2, "what": {"_count": 1}, "how": {"_count": 1}}, "every": {"_count": 2, "day": {"_count": 1}, "tear": {"_count": 1}}, "Lupin": {"_count": 1, "affording": {"_count": 1}}, "her": {"_count": 28, "forehead": {"_count": 1}, "": {"_count": 5}, "face": {"_count": 1}, "any": {"_count": 1}, "tell": {"_count": 1}, "being": {"_count": 1}, "anywhere": {"_count": 1}, "hair": {"_count": 1}, "mum": {"_count": 1}, "again": {"_count": 1}, "it": {"_count": 1}, "we": {"_count": 1}, "flying": {"_count": 1}, "in": {"_count": 1}, "if": {"_count": 1}, "its": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "burst": {"_count": 1}, "Elphias": {"_count": 1}, "sons": {"_count": 1}, "and": {"_count": 1}, "struggling": {"_count": 1}, "off": {"_count": 1}}, "reason": {"_count": 1, "": {"_count": 1}}, "sense": {"_count": 2, "": {"_count": 1}, "Perce": {"_count": 1}}, "whats": {"_count": 6, "going": {"_count": 3}, "inside": {"_count": 1}, "pulling": {"_count": 1}, "on": {"_count": 1}}, "He": {"_count": 1, "led": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "Severus": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "within": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "unless": {"_count": 2, "he": {"_count": 1}, "youve": {"_count": 1}}, "Sirius": {"_count": 5, "here": {"_count": 1}, "again": {"_count": 2}, "talk": {"_count": 1}, "pearly": {"_count": 1}}, "beads": {"_count": 1, "of": {"_count": 1}}, "Remus": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 8, "had": {"_count": 1}, "read": {"_count": 1}, "think": {"_count": 1}, "unlike": {"_count": 1}, "do": {"_count": 1}, "have": {"_count": 1}, "dont": {"_count": 1}, "never": {"_count": 1}}, "Lupins": {"_count": 1, "silhouette": {"_count": 1}}, "Snape": {"_count": 2, "we": {"_count": 1}, "standing": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "Hagrids": {"_count": 2, "garden": {"_count": 1}, "face": {"_count": 1}}, "distinctly": {"_count": 1, "": {"_count": 1}}, "tiny": {"_count": 1, "glimmers": {"_count": 1}}, "each": {"_count": 5, "other": {"_count": 4}, "uzzer": {"_count": 1}}, "their": {"_count": 12, "point": {"_count": 1}, "names": {"_count": 2}, "silhouettes": {"_count": 1}, "cold": {"_count": 1}, "looks": {"_count": 1}, "sides": {"_count": 1}, "expressions": {"_count": 1}, "reactions": {"_count": 1}, "families": {"_count": 1}, "thinking": {"_count": 1}, "disembodied": {"_count": 1}}, "just": {"_count": 2, "for": {"_count": 1}, "how": {"_count": 1}}, "Mr": {"_count": 3, "Crouch": {"_count": 1}, "and": {"_count": 1}, "Gaunt": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "first": {"_count": 1}}, "thousands": {"_count": 1, "and": {"_count": 1}}, "people": {"_count": 4, "running": {"_count": 1}, "either": {"_count": 1}, "standing": {"_count": 1}, "messing": {"_count": 1}}, "very": {"_count": 1, "far": {"_count": 1}}, "elf": {"_count": 1, "the": {"_count": 1}}, "growled": {"_count": 1, "Mr": {"_count": 1}}, "Amos": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "off": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 5}}, "Hogwarts": {"_count": 3, "coming": {"_count": 1}, "said": {"_count": 1}, "perhaps": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "Amelia": {"_count": 1}}, "difficult": {"_count": 1, "times": {"_count": 1}}, "enough": {"_count": 1, "of": {"_count": 1}}, "whos": {"_count": 4, "just": {"_count": 1}, "mad": {"_count": 1}, "laughing": {"_count": 1}, "right": {"_count": 1}}, "dont": {"_count": 1, "want": {"_count": 1}}, "finger": {"_count": 1, "marks": {"_count": 1}}, "em": {"_count": 3, "shrugged": {"_count": 1}, "": {"_count": 2}}, "from": {"_count": 2, "a": {"_count": 1}, "my": {"_count": 1}}, "Madam": {"_count": 4, "Pomfrey": {"_count": 3}, "Pince": {"_count": 1}}, "youll": {"_count": 1, "see": {"_count": 1}}, "sir": {"_count": 1, "it": {"_count": 1}}, "had": {"_count": 4, "managed": {"_count": 1}, "a": {"_count": 2}, "spilled": {"_count": 1}}, "Seamus": {"_count": 1, "and": {"_count": 1}}, "Cho": {"_count": 1, "waiting": {"_count": 1}}, "cos": {"_count": 1, "me": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "two": {"_count": 2, "feet": {"_count": 1}, "possibilities": {"_count": 1}}, "daylight": {"_count": 1, "above": {"_count": 1}}, "inside": {"_count": 2, "he": {"_count": 1}, "whenever": {"_count": 1}}, "vare": {"_count": 1, "Potter": {"_count": 1}}, "further": {"_count": 1, "than": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "or": {"_count": 8, "hear": {"_count": 3}, "I": {"_count": 1}, "speak": {"_count": 1}, "whatever": {"_count": 1}, "be": {"_count": 1}, "breathe": {"_count": 1}}, "Voldemort": {"_count": 5, "": {"_count": 1}, "staring": {"_count": 1}, "attempting": {"_count": 1}, "sailing": {"_count": 1}, "finished": {"_count": 1}}, "would": {"_count": 2, "there": {"_count": 1}, "locate": {"_count": 1}}, "Harrys": {"_count": 2, "reaction": {"_count": 1}, "reception": {"_count": 1}}, "as": {"_count": 2, "far": {"_count": 1}, "debris": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "Wormtail": {"_count": 1, "or": {"_count": 1}}, "Moodys": {"_count": 1, "face": {"_count": 1}}, "Cedric": {"_count": 1, "emerging": {"_count": 1}}, "fit": {"_count": 2, "": {"_count": 2}}, "Ron": {"_count": 5, "and": {"_count": 2}, "when": {"_count": 1}, "throw": {"_count": 1}, "running": {"_count": 1}}, "someone": {"_count": 2, "about": {"_count": 1}, "other": {"_count": 1}}, "Siriuss": {"_count": 1, "handwriting": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "individual": {"_count": 1, "headlights": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "Fudge": {"_count": 3, "thinks": {"_count": 1}, "": {"_count": 1}, "whose": {"_count": 1}}, "Young": {"_count": 1, "Master": {"_count": 1}}, "Tonks": {"_count": 1, "isnt": {"_count": 1}}, "MINISTRY": {"_count": 1, "OF": {"_count": 1}}, "wearing": {"_count": 2, "plumcolored": {"_count": 1}, "those": {"_count": 1}}, "dementors": {"_count": 2, "can": {"_count": 1}, "": {"_count": 1}}, "red": {"_count": 1, "marks": {"_count": 1}}, "such": {"_count": 1, "happy": {"_count": 1}}, "are": {"_count": 1, "very": {"_count": 1}}, "McGonagall": {"_count": 1, "inspected": {"_count": 1}}, "old": {"_count": 2, "Flitwick": {"_count": 1}, "Aragog": {"_count": 1}}, "Umbridge": {"_count": 4, "get": {"_count": 1}, "would": {"_count": 1}, "standing": {"_count": 1}, "coming": {"_count": 1}}, "Talk": {"_count": 1, "about": {"_count": 1}}, "sparks": {"_count": 1, "fly": {"_count": 1}}, "beside": {"_count": 1, "a": {"_count": 1}}, "these": {"_count": 1, "creatures": {"_count": 1}}, "thestrals": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "die": {"_count": 1, "": {"_count": 1}}, "objects": {"_count": 1, "around": {"_count": 1}}, "seven": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 2, "after": {"_count": 1}, "Weasley": {"_count": 1}}, "Broderick": {"_count": 1, "Bode": {"_count": 1}}, "both": {"_count": 1, "Ron": {"_count": 1}}, "wanders": {"_count": 1, "off": {"_count": 1}}, "everything": {"_count": 1, "I": {"_count": 1}}, "Sloper": {"_count": 1, "and": {"_count": 1}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "but": {"_count": 3, "that": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 1}}, "little": {"_count": 1, "bro": {"_count": 1}}, "moving": {"_count": 1, "pictures": {"_count": 1}}, "fighting": {"_count": 1, "": {"_count": 1}}, "Ronan": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "properly": {"_count": 1, "from": {"_count": 1}}, "there": {"_count": 2, "are": {"_count": 2}}, "Phineas": {"_count": 1, "marching": {"_count": 1}}, "continued": {"_count": 1, "Dumbledore": {"_count": 1}}, "Kreacher": {"_count": 3, "was": {"_count": 1}, "struggling": {"_count": 1}, "": {"_count": 1}}, "Mum": {"_count": 1, "again": {"_count": 1}}, "Should": {"_count": 1, "the": {"_count": 1}}, "eye": {"_count": 1, "to": {"_count": 1}}, "Buckbeak": {"_count": 1, "again": {"_count": 1}}, "hidden": {"_count": 1, "behind": {"_count": 1}}, "Slughorn": {"_count": 4, "standing": {"_count": 1}, "or": {"_count": 1}, "remember": {"_count": 1}, "scowl": {"_count": 1}}, "much": {"_count": 3, "of": {"_count": 2}, "humor": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "im": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "Ah": {"_count": 1, "yes": {"_count": 1}}, "youre": {"_count": 1, "keeping": {"_count": 1}}, "Morfin": {"_count": 1, "return": {"_count": 1}}, "Merope": {"_count": 1, "refused": {"_count": 1}}, "whereas": {"_count": 1, "they": {"_count": 1}}, "neither": {"_count": 1, "eyes": {"_count": 1}}, "Riddle": {"_count": 1, "and": {"_count": 1}}, "Susan": {"_count": 1, "Bones": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "into": {"_count": 3, "his": {"_count": 1}, "Voldemorts": {"_count": 2}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "disappointment": {"_count": 1, "or": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "hadnt": {"_count": 1, "I": {"_count": 1}}, "good": {"_count": 1, "in": {"_count": 1}}, "whod": {"_count": 1, "been": {"_count": 1}}, "Snapes": {"_count": 1, "face": {"_count": 1}}, "blood": {"_count": 1, "trickling": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "Scrimgeour": {"_count": 1, "looking": {"_count": 1}}, "flaws": {"_count": 1, "in": {"_count": 1}}, "hes": {"_count": 1, "grown": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "webs": {"_count": 1, "between": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "fresh": {"_count": 1, "tears": {"_count": 1}}, "chapter": {"_count": 1, "22": {"_count": 1}}, "Xenophilius": {"_count": 1, "Lovegood": {"_count": 1}}, "Lovegood": {"_count": 2, "": {"_count": 1}, "His": {"_count": 1}}, "believers": {"_count": 1, "seek": {"_count": 1}}, "maybe": {"_count": 1, "a": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "the": {"_count": 1}}, "Bogrod": {"_count": 1, "shaking": {"_count": 1}}, "enormous": {"_count": 1, "ripples": {"_count": 1}}, "yer": {"_count": 1, "in": {"_count": 1}}, "Nagini": {"_count": 1, "swirling": {"_count": 1}}, "Freds": {"_count": 1, "body": {"_count": 1}}, "Ariana": {"_count": 1, "and": {"_count": 1}}, "even": {"_count": 1, "through": {"_count": 1}}}, "couple": {"_count": 150, "of": {"_count": 124, "them": {"_count": 4}, "spiders": {"_count": 1}, "broken": {"_count": 1}, "looptheloops": {"_count": 1}, "sparks": {"_count": 1}, "other": {"_count": 1}, "weeks": {"_count": 8}, "minutes": {"_count": 7}, "steps": {"_count": 3}, "the": {"_count": 2}, "hours": {"_count": 7}, "cars": {"_count": 1}, "inches": {"_count": 2}, "monks": {"_count": 1}, "subjects": {"_count": 1}, "birds": {"_count": 1}, "people": {"_count": 10}, "days": {"_count": 6}, "saucepans": {"_count": 1}, "owls": {"_count": 1}, "drops": {"_count": 2}, "Fred": {"_count": 1}, "recklessly": {"_count": 1}, "contacts": {"_count": 1}, "lengths": {"_count": 2}, "grindylows": {"_count": 1}, "passing": {"_count": 1}, "years": {"_count": 3}, "dementors": {"_count": 1}, "whats": {"_count": 1}, "times": {"_count": 1}, "pieces": {"_count": 1}, "envelopes": {"_count": 1}, "cats": {"_count": 1}, "concealed": {"_count": 1}, "madeup": {"_count": 1}, "questions": {"_count": 2}, "cute": {"_count": 1}, "sleepless": {"_count": 1}, "wands": {"_count": 1}, "verses": {"_count": 1}, "seconds": {"_count": 2}, "false": {"_count": 1}, "invisible": {"_count": 1}, "wizards": {"_count": 2}, "students": {"_count": 3}, "Galleons": {"_count": 1}, "dementor": {"_count": 1}, "Death": {"_count": 5}, "chicken": {"_count": 1}, "family": {"_count": 1}, "little": {"_count": 1}, "warlocks": {"_count": 2}, "vines": {"_count": 1}, "months": {"_count": 1}, "girlfriends": {"_count": 1}, "girls": {"_count": 2}, "wart": {"_count": 1}, "fingers": {"_count": 1}, "reasonably": {"_count": 1}, "my": {"_count": 1}, "owl": {"_count": 1}, "curses": {"_count": 1}, "puffy": {"_count": 1}, "large": {"_count": 1}, "Decoy": {"_count": 1}, "mouthfuls": {"_count": 1}, "toadstools": {"_count": 1}, "friends": {"_count": 1}}, "o": {"_count": 11, "dormice": {"_count": 1}, "terms": {"_count": 1}, "hundred": {"_count": 1}, "mad": {"_count": 1}, "bull": {"_count": 1}, "giants": {"_count": 1}, "days": {"_count": 1}, "creatures": {"_count": 1}, "salamanders": {"_count": 1}, "swings": {"_count": 1}, "bowtruckle": {"_count": 1}}, "more": {"_count": 5, "feathers": {"_count": 1}, "days": {"_count": 1}, "of": {"_count": 1}, "people": {"_count": 1}, "Longbottom": {"_count": 1}}, "showed": {"_count": 1, "Cedric": {"_count": 1}}, "theyre": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 1, "seem": {"_count": 1}}, "look": {"_count": 1, "Two": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "and": {"_count": 1, "throwing": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "fell": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}}, "werent": {"_count": 131, "young": {"_count": 1, "at": {"_count": 1}}, "listening": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "you": {"_count": 9, "Harry": {"_count": 2}, "Peter": {"_count": 1}, "at": {"_count": 1}, "Potter": {"_count": 1}, "two": {"_count": 1}, "": {"_count": 3}}, "looking": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "eleven": {"_count": 1, "every": {"_count": 1}}, "gettin": {"_count": 1, "yer": {"_count": 1}}, "bad": {"_count": 1, "": {"_count": 1}}, "famous": {"_count": 1, "were": {"_count": 1}}, "they": {"_count": 5, "": {"_count": 3}, "couldnt": {"_count": 1}, "Ron": {"_count": 1}}, "many": {"_count": 1, "people": {"_count": 1}}, "really": {"_count": 2, "doors": {"_count": 1}, "back": {"_count": 1}}, "going": {"_count": 8, "to": {"_count": 7}, "home": {"_count": 1}}, "sure": {"_count": 2, "they": {"_count": 1}, "whether": {"_count": 1}}, "there": {"_count": 8, "yet": {"_count": 1}, "": {"_count": 3}, "remember": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "when": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 3}, "that": {"_count": 1}}, "already": {"_count": 1, "dead": {"_count": 1}}, "speaking": {"_count": 2, "to": {"_count": 2}}, "killed": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "drawback": {"_count": 1}, "lot": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 1, "business": {"_count": 1}}, "as": {"_count": 1, "wellknown": {"_count": 1}}, "far": {"_count": 1, "away": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}, "allowed": {"_count": 5, "to": {"_count": 4}, "Lily": {"_count": 1}}, "intending": {"_count": 1, "to": {"_count": 1}}, "hungry": {"_count": 1, "said": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "taken": {"_count": 1, "to": {"_count": 1}}, "popping": {"_count": 1, "anymore": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "about": {"_count": 2, "to": {"_count": 2}}, "swooping": {"_count": 1, "down": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "entirely": {"_count": 1, "sure": {"_count": 1}}, "called": {"_count": 1, "off": {"_count": 1}}, "keen": {"_count": 1, "on": {"_count": 1}}, "dementors": {"_count": 1, "said": {"_count": 1}}, "dreaming": {"_count": 2, "Ron": {"_count": 2}}, "starting": {"_count": 1, "crystal": {"_count": 1}}, "likely": {"_count": 1, "to": {"_count": 1}}, "responsible": {"_count": 1, "for": {"_count": 1}}, "any": {"_count": 2, "to": {"_count": 1}, "such": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "doing": {"_count": 1, "their": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}, "concentrating": {"_count": 1, "properly": {"_count": 1}}, "happy": {"_count": 1, "not": {"_count": 1}}, "only": {"_count": 1, "Gryffindors": {"_count": 1}}, "bothering": {"_count": 1, "you": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "taking": {"_count": 1}}, "being": {"_count": 1, "thick": {"_count": 1}}, "talking": {"_count": 1, "": {"_count": 1}}, "genuinely": {"_count": 1, "written": {"_count": 1}}, "supposed": {"_count": 2, "to": {"_count": 2}}, "alone": {"_count": 1, "either": {"_count": 1}}, "But": {"_count": 1, "dementors": {"_count": 1}}, "wrong": {"_count": 1, "about": {"_count": 1}}, "ordering": {"_count": 2, "Dungbombs": {"_count": 1}, "them": {"_count": 1}}, "copying": {"_count": 1, "from": {"_count": 1}}, "saying": {"_count": 1, "anything": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "rude": {"_count": 1}}, "attacking": {"_count": 1, "anyone": {"_count": 1}}, "never": {"_count": 1, "nuffink": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 3, "": {"_count": 3}}, "I": {"_count": 1, "forgot": {"_count": 1}}, "although": {"_count": 1, "that": {"_count": 1}}, "yeh": {"_count": 1, "Dumby": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "close": {"_count": 1, "": {"_count": 1}}, "separated": {"_count": 1, "as": {"_count": 1}}, "thieving": {"_count": 1, "said": {"_count": 1}}, "Dont": {"_count": 1, "lie": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "brightest": {"_count": 1}, "first": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}}, "why": {"_count": 590, "that": {"_count": 5, "man": {"_count": 1}, "was": {"_count": 2}, "particular": {"_count": 1}, "is": {"_count": 1}}, "but": {"_count": 4, "they": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 1}}, "the": {"_count": 20, "owls": {"_count": 1}, "gateways": {"_count": 1}, "symbol": {"_count": 1}, "coaches": {"_count": 1}, "Ministry": {"_count": 1}, "subject": {"_count": 1}, "headmaster": {"_count": 1}, "warlocks": {"_count": 1}, "Dark": {"_count": 3}, "Wizarding": {"_count": 1}, "Death": {"_count": 1}, "teams": {"_count": 1}, "boy": {"_count": 2}, "Delacours": {"_count": 1}, "ell": {"_count": 1}, "Elder": {"_count": 1}, "Cloak": {"_count": 1}}, "hes": {"_count": 14, "disappeared": {"_count": 1}, "gone": {"_count": 2}, "so": {"_count": 1}, "doing": {"_count": 1}, "had": {"_count": 1}, "such": {"_count": 1}, "been": {"_count": 2}, "chosen": {"_count": 1}, "brought": {"_count": 1}, "": {"_count": 1}, "going": {"_count": 1}, "after": {"_count": 1}}, "or": {"_count": 1, "how": {"_count": 1}}, "youre": {"_count": 8, "here": {"_count": 2}, "putting": {"_count": 1}, "worried": {"_count": 1}, "bothering": {"_count": 1}, "back": {"_count": 1}, "not": {"_count": 1}, "late": {"_count": 1}}, "Dudley": {"_count": 1, "wanted": {"_count": 1}}, "Harry": {"_count": 8, "spent": {"_count": 1}, "was": {"_count": 1}, "respected": {"_count": 1}, "shouldnt": {"_count": 1}, "would": {"_count": 1}, "wondered": {"_count": 1}, "but": {"_count": 1}, "opened": {"_count": 1}}, "": {"_count": 36, "?": {"_count": 19}, ".": {"_count": 16}, "!": {"_count": 1}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "yer": {"_count": 2, "famous": {"_count": 1}, "late": {"_count": 1}}, "hadnt": {"_count": 4, "they": {"_count": 2}, "anyone": {"_count": 1}, "he": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "not": {"_count": 17, "unusual": {"_count": 1}, "join": {"_count": 1}, "": {"_count": 8}, "us": {"_count": 1}, "do": {"_count": 1}, "come": {"_count": 1}, "have": {"_count": 1}, "try": {"_count": 1}, "confide": {"_count": 1}, "let": {"_count": 1}}, "its": {"_count": 5, "brother": {"_count": 1}, "such": {"_count": 1}, "not": {"_count": 1}, "happened": {"_count": 1}, "so": {"_count": 1}}, "were": {"_count": 6, "not": {"_count": 1}, "trying": {"_count": 1}, "they": {"_count": 2}, "you": {"_count": 1}, "here": {"_count": 1}}, "dont": {"_count": 20, "you": {"_count": 17}, "they": {"_count": 1}, "Muggles": {"_count": 1}, "we": {"_count": 1}}, "didnt": {"_count": 10, "you": {"_count": 6}, "he": {"_count": 3}, "they": {"_count": 1}}, "did": {"_count": 18, "Snape": {"_count": 1}, "he": {"_count": 5}, "you": {"_count": 7}, "they": {"_count": 1}, "this": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}, "we": {"_count": 1}}, "it": {"_count": 13, "was": {"_count": 4}, "belonged": {"_count": 1}, "had": {"_count": 3}, "took": {"_count": 2}, "seemed": {"_count": 1}, "happened": {"_count": 1}, "is": {"_count": 1}}, "you": {"_count": 35, "have": {"_count": 2}, "wanted": {"_count": 2}, "two": {"_count": 1}, "did": {"_count": 1}, "care": {"_count": 1}, "dont": {"_count": 1}, "lost": {"_count": 1}, "couldnt": {"_count": 1}, "didnt": {"_count": 2}, "should": {"_count": 2}, "would": {"_count": 1}, "werent": {"_count": 1}, "went": {"_count": 1}, "are": {"_count": 6}, "asked": {"_count": 1}, "do": {"_count": 1}, "dyed": {"_count": 1}, "argued": {"_count": 1}, "who": {"_count": 1}, "were": {"_count": 1}, "arent": {"_count": 1}, "ran": {"_count": 1}, "jumped": {"_count": 1}, "made": {"_count": 1}, "come": {"_count": 1}, "cant": {"_count": 1}}, "Seekers": {"_count": 1, "get": {"_count": 1}}, "Harrys": {"_count": 2, "broom": {"_count": 1}, "wand": {"_count": 1}}, "arent": {"_count": 3, "you": {"_count": 3}}, "he": {"_count": 61, "wanted": {"_count": 2}, "may": {"_count": 1}, "kept": {"_count": 3}, "hadnt": {"_count": 3}, "hates": {"_count": 1}, "didnt": {"_count": 4}, "had": {"_count": 11}, "was": {"_count": 17}, "wouldnt": {"_count": 1}, "rang": {"_count": 1}, "felt": {"_count": 1}, "has": {"_count": 1}, "killed": {"_count": 1}, "should": {"_count": 1}, "thought": {"_count": 1}, "and": {"_count": 1}, "fought": {"_count": 1}, "wasnt": {"_count": 2}, "saved": {"_count": 1}, "really": {"_count": 1}, "told": {"_count": 1}, "did": {"_count": 2}, "left": {"_count": 1}, "couldnt": {"_count": 1}, "got": {"_count": 1}}, "they": {"_count": 12, "looked": {"_count": 1}, "had": {"_count": 2}, "made": {"_count": 1}, "havent": {"_count": 1}, "were": {"_count": 4}, "attacked": {"_count": 1}, "all": {"_count": 1}, "killed": {"_count": 1}}, "Snape": {"_count": 4, "was": {"_count": 1}, "doesnt": {"_count": 1}, "s": {"_count": 1}, "is": {"_count": 1}}, "would": {"_count": 11, "he": {"_count": 2}, "you": {"_count": 2}, "I": {"_count": 2}, "we": {"_count": 1}, "that": {"_count": 1}, "starting": {"_count": 1}, "Voldemort": {"_count": 1}, "Slughorn": {"_count": 1}}, "couldnt": {"_count": 5, "Quirrell": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}, "Malfoy": {"_count": 1}, "he": {"_count": 1}}, "Voldemorts": {"_count": 1, "powers": {"_count": 1}}, "are": {"_count": 12, "you": {"_count": 10}, "all": {"_count": 1}, "we": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 1}, "been": {"_count": 1}}, "youd": {"_count": 2, "done": {"_count": 1}, "love": {"_count": 1}}, "any": {"_count": 1, "mention": {"_count": 1}}, "wed": {"_count": 2, "want": {"_count": 1}, "like": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "looked": {"_count": 1}}, "we": {"_count": 11, "decided": {"_count": 1}, "called": {"_count": 1}, "need": {"_count": 1}, "are": {"_count": 2}, "have": {"_count": 1}, "were": {"_count": 1}, "could": {"_count": 1}, "argued": {"_count": 1}, "cant": {"_count": 1}, "havent": {"_count": 1}}, "Lockhart": {"_count": 1, "was": {"_count": 1}}, "YouKnowWho": {"_count": 1, "wanted": {"_count": 1}}, "someone": {"_count": 2, "wanted": {"_count": 1}, "did": {"_count": 1}}, "Hagrid": {"_count": 3, "had": {"_count": 3}}, "weve": {"_count": 2, "come": {"_count": 1}, "always": {"_count": 1}}, "has": {"_count": 2, "he": {"_count": 1}, "nobody": {"_count": 1}}, "she": {"_count": 15, "was": {"_count": 7}, "would": {"_count": 2}, "should": {"_count": 1}, "talks": {"_count": 1}, "never": {"_count": 1}, "wanted": {"_count": 2}, "died": {"_count": 1}}, "Ginny": {"_count": 2, "Weasley": {"_count": 1}, "hasnt": {"_count": 1}}, "should": {"_count": 7, "I": {"_count": 1}, "he": {"_count": 3}, "we": {"_count": 1}, "anybody": {"_count": 1}, "they": {"_count": 1}}, "Fudge": {"_count": 1, "let": {"_count": 1}}, "said": {"_count": 5, "Ron": {"_count": 1}, "Black": {"_count": 1}, "Snape": {"_count": 1}, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}}, "I": {"_count": 23, "want": {"_count": 1}, "dont": {"_count": 1}, "didnt": {"_count": 1}, "will": {"_count": 1}, "am": {"_count": 3}, "loathed": {"_count": 1}, "did": {"_count": 2}, "never": {"_count": 1}, "stood": {"_count": 1}, "havent": {"_count": 1}, "think": {"_count": 1}, "like": {"_count": 1}, "cant": {"_count": 2}, "stopped": {"_count": 1}, "thought": {"_count": 1}, "wanted": {"_count": 1}, "have": {"_count": 1}, "even": {"_count": 1}, "died": {"_count": 1}}, "Professor": {"_count": 2, "Lupins": {"_count": 1}, "Umbridge": {"_count": 1}}, "theyre": {"_count": 3, "doing": {"_count": 3}}, "hasnt": {"_count": 3, "he": {"_count": 2}, "a": {"_count": 1}}, "was": {"_count": 6, "Lupin": {"_count": 1}, "everyone": {"_count": 1}, "Filch": {"_count": 1}, "it": {"_count": 1}, "Snape": {"_count": 1}, "she": {"_count": 1}}, "an": {"_count": 2, "innocent": {"_count": 1}, "Easter": {"_count": 1}}, "Sirius": {"_count": 4, "had": {"_count": 3}, "was": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "shouldnt": {"_count": 4, "we": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 1}}, "Percy": {"_count": 1, "idolized": {"_count": 1}}, "cant": {"_count": 5, "we": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "I": {"_count": 1}}, "today": {"_count": 1, "should": {"_count": 1}}, "Dumbledore": {"_count": 12, "wanted": {"_count": 2}, "hired": {"_count": 1}, "keeps": {"_count": 1}, "didnt": {"_count": 1}, "had": {"_count": 2}, "has": {"_count": 1}, "would": {"_count": 2}, "did": {"_count": 1}, "thought": {"_count": 1}}, "dyou": {"_count": 2, "reckon": {"_count": 1}, "think": {"_count": 1}}, "hed": {"_count": 3, "do": {"_count": 1}, "vanished": {"_count": 1}, "done": {"_count": 1}}, "Crouch": {"_count": 1, "had": {"_count": 1}}, "Bagman": {"_count": 1, "didnt": {"_count": 1}}, "Bertha": {"_count": 1, "said": {"_count": 1}}, "my": {"_count": 1, "scars": {"_count": 1}}, "people": {"_count": 2, "said": {"_count": 1}, "are": {"_count": 1}}, "nothing": {"_count": 1, "had": {"_count": 1}}, "have": {"_count": 7, "you": {"_count": 4}, "the": {"_count": 1}, "they": {"_count": 1}, "we": {"_count": 1}}, "this": {"_count": 1, "hit": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "anyway": {"_count": 1, "after": {"_count": 1}}, "Kreacher": {"_count": 1, "wont": {"_count": 1}}, "somebody": {"_count": 1, "within": {"_count": 1}}, "two": {"_count": 1, "dementors": {"_count": 1}}, "Neville": {"_count": 1, "had": {"_count": 1}}, "Luna": {"_count": 1, "had": {"_count": 1}}, "then": {"_count": 1, "could": {"_count": 1}}, "could": {"_count": 2, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "else": {"_count": 1, "would": {"_count": 1}}, "everybody": {"_count": 1, "in": {"_count": 1}}, "what": {"_count": 1, "Harry": {"_count": 1}}, "whispering": {"_count": 1, "but": {"_count": 1}}, "do": {"_count": 5, "you": {"_count": 2}, "I": {"_count": 3}}, "there": {"_count": 3, "were": {"_count": 1}, "had": {"_count": 2}}, "on": {"_count": 5, "earth": {"_count": 5}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Slytherins": {"_count": 1, "all": {"_count": 1}}, "thatd": {"_count": 1, "be": {"_count": 1}}, "Bits": {"_count": 1, "of": {"_count": 1}}, "some": {"_count": 1, "o": {"_count": 1}}, "nor": {"_count": 1, "does": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "does": {"_count": 3, "Professor": {"_count": 2}, "he": {"_count": 1}}, "You": {"_count": 1, "seem": {"_count": 1}}, "his": {"_count": 1, "fellow": {"_count": 1}}, "ten": {"_count": 1, "Death": {"_count": 1}}, "Angelina": {"_count": 1, "wont": {"_count": 1}}, "had": {"_count": 4, "she": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}}, "soon": {"_count": 1, "enough": {"_count": 1}}, "James": {"_count": 1, "didnt": {"_count": 1}}, "havent": {"_count": 2, "you": {"_count": 2}}, "youve": {"_count": 1, "had": {"_count": 1}}, "Gryffindors": {"_count": 1, "all": {"_count": 1}}, "Umbridge": {"_count": 1, "would": {"_count": 1}}, "sack": {"_count": 1, "Hagrid": {"_count": 1}}, "Hermione": {"_count": 1, "persisted": {"_count": 1}}, "Dumbledores": {"_count": 2, "been": {"_count": 1}, "showing": {"_count": 1}}, "these": {"_count": 1, "two": {"_count": 1}}, "Voldemort": {"_count": 3, "had": {"_count": 3}}, "each": {"_count": 1, "and": {"_count": 1}}, "why": {"_count": 1, "has": {"_count": 1}}, "isnt": {"_count": 2, "he": {"_count": 1}, "Hermione": {"_count": 1}}, "Malfoy": {"_count": 1, "told": {"_count": 1}}, "everything": {"_count": 1, "went": {"_count": 1}}, "even": {"_count": 1, "Severus": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}, "mention": {"_count": 1, "it": {"_count": 1}}, "is": {"_count": 1, "Dumbledore": {"_count": 1}}, "take": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "wizard": {"_count": 1}}, "Im": {"_count": 2, "looking": {"_count": 1}, "sure": {"_count": 1}}, "shed": {"_count": 1, "be": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "asked": {"_count": 1, "Snape": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "They": {"_count": 1, "were": {"_count": 1}}, "such": {"_count": 1, "strange": {"_count": 1}}, "aren": {"_count": 1, "you": {"_count": 1}}, "tell": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 1, "ones": {"_count": 1}}, "Tottenham": {"_count": 1, "Court": {"_count": 1}}, "thats": {"_count": 1, "upset": {"_count": 1}}, "theyd": {"_count": 1, "come": {"_count": 1}}, "anyone": {"_count": 1, "would": {"_count": 1}}, "nobodys": {"_count": 1, "ever": {"_count": 1}}, "wouldnt": {"_count": 2, "he": {"_count": 2}}, "exactly": {"_count": 1, "have": {"_count": 1}}, "elder": {"_count": 1, "wands": {"_count": 1}}, "Greyback": {"_count": 1, "was": {"_count": 1}}, "your": {"_count": 1, "wand": {"_count": 1}}, "goblins": {"_count": 1, "dont": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "may": {"_count": 1, "I": {"_count": 1}}}, "older": {"_count": 50, "than": {"_count": 14, "he": {"_count": 4}, "sixteen": {"_count": 2}, "two": {"_count": 1}, "Kevin": {"_count": 1}, "eleven": {"_count": 1}, "eight": {"_count": 1}, "ever": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "students": {"_count": 5, "would": {"_count": 1}, "studying": {"_count": 1}, "who": {"_count": 1}, "to": {"_count": 1}, "ought": {"_count": 1}}, "and": {"_count": 5, "Im": {"_count": 1}, "wearier": {"_count": 1}, "cleverer": {"_count": 1}, "tried": {"_count": 1}, "much": {"_count": 1}}, "inhabitants": {"_count": 1, "of": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "student": {"_count": 2, "to": {"_count": 2}}, "giving": {"_count": 1, "him": {"_count": 1}}, "brother": {"_count": 1, "you": {"_count": 1}}, "sister": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "man": {"_count": 1, "looking": {"_count": 1}}, "Dumbledore": {"_count": 1, "followed": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 1, "in": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "much": {"_count": 1, "cleverer": {"_count": 1}}, "persons": {"_count": 1, "suffering": {"_count": 1}}, "but": {"_count": 1, "otherwise": {"_count": 1}}, "Ravenclaws": {"_count": 1, "remained": {"_count": 1}}, "ones": {"_count": 1, "called": {"_count": 1}}, "self": {"_count": 1, "": {"_count": 1}}}, "than": {"_count": 1399, "he": {"_count": 93, "was": {"_count": 15}, "really": {"_count": 1}, "had": {"_count": 33}, "felt": {"_count": 3}, "would": {"_count": 6}, "meant": {"_count": 2}, "did": {"_count": 8}, "could": {"_count": 8}, "expected": {"_count": 1}, "looked": {"_count": 1}, "usually": {"_count": 2}, "needs": {"_count": 2}, "thinks": {"_count": 1}, "is": {"_count": 2}, "showed": {"_count": 1}, "has": {"_count": 1}, "yelled": {"_count": 1}, "already": {"_count": 1}, "": {"_count": 1}, "ever": {"_count": 1}, "knew": {"_count": 1}, "does": {"_count": 1}}, "the": {"_count": 93, "rest": {"_count": 6}, "red": {"_count": 1}, "deepest": {"_count": 1}, "other": {"_count": 3}, "Sorcerers": {"_count": 1}, "last": {"_count": 7}, "Ministry": {"_count": 3}, "one": {"_count": 4}, "wild": {"_count": 1}, "study": {"_count": 1}, "inside": {"_count": 1}, "Basilisk": {"_count": 1}, "Weasleys": {"_count": 1}, "others": {"_count": 2}, "Cleansweeps": {"_count": 1}, "boys": {"_count": 1}, "doors": {"_count": 1}, "Beauxbatons": {"_count": 1}, "stuff": {"_count": 1}, "Labrador": {"_count": 1}, "wizards": {"_count": 1}, "giantess": {"_count": 1}, "adults": {"_count": 1}, "giant": {"_count": 1}, "likes": {"_count": 1}, "meanest": {"_count": 2}, "thing": {"_count": 1}, "streets": {"_count": 1}, "world": {"_count": 1}, "hall": {"_count": 1}, "Avada": {"_count": 2}, "Stone": {"_count": 1}, "broom": {"_count": 1}, "first": {"_count": 3}, "Minister": {"_count": 1}, "Three": {"_count": 2}, "average": {"_count": 2}, "Burrow": {"_count": 1}, "street": {"_count": 1}, "Crumple": {"_count": 1}, "scurryings": {"_count": 1}, "occasion": {"_count": 1}, "fire": {"_count": 1}, "lives": {"_count": 1}, "day": {"_count": 1}, "whole": {"_count": 1}, "Princes": {"_count": 1}, "two": {"_count": 2}, "usual": {"_count": 1}, "fact": {"_count": 1}, "tripe": {"_count": 1}, "silken": {"_count": 1}, "idea": {"_count": 1}, "most": {"_count": 1}, "Mugglemaiming": {"_count": 1}, "houseelf": {"_count": 1}, "cats": {"_count": 1}, "Forbidden": {"_count": 1}, "many": {"_count": 1}, "end": {"_count": 1}, "snake": {"_count": 1}, "dead": {"_count": 1}, "real": {"_count": 1}, "kitchen": {"_count": 1}, "possibility": {"_count": 1}, "living": {"_count": 1}, "Great": {"_count": 1}}, "last": {"_count": 3, "year": {"_count": 2}, "time": {"_count": 1}}, "his": {"_count": 23, "asking": {"_count": 1}, "familys": {"_count": 1}, "skin": {"_count": 1}, "cackle": {"_count": 1}, "grip": {"_count": 1}, "own": {"_count": 3}, "servant": {"_count": 1}, "badge": {"_count": 1}, "smarting": {"_count": 1}, "closest": {"_count": 1}, "usual": {"_count": 1}, "but": {"_count": 1}, "daughter": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "best": {"_count": 1}, "silhouette": {"_count": 1}, "outfit": {"_count": 1}, "fear": {"_count": 1}, "body": {"_count": 1}, "screams": {"_count": 1}}, "having": {"_count": 3, "a": {"_count": 1}, "to": {"_count": 1}, "slugs": {"_count": 1}}, "a": {"_count": 78, "set": {"_count": 1}, "whisper": {"_count": 6}, "dozen": {"_count": 1}, "match": {"_count": 1}, "pack": {"_count": 1}, "thief": {"_count": 1}, "rampaging": {"_count": 1}, "rich": {"_count": 1}, "phantom": {"_count": 1}, "fiftyyearyounger": {"_count": 1}, "scar": {"_count": 1}, "bit": {"_count": 1}, "few": {"_count": 5}, "human": {"_count": 2}, "man": {"_count": 1}, "help": {"_count": 1}, "pet": {"_count": 1}, "tarantula": {"_count": 1}, "broomstick": {"_count": 1}, "narrow": {"_count": 1}, "dolphin": {"_count": 1}, "chicken": {"_count": 1}, "room": {"_count": 1}, "skull": {"_count": 2}, "son": {"_count": 1}, "year": {"_count": 8}, "battered": {"_count": 1}, "garbled": {"_count": 1}, "concussed": {"_count": 1}, "hundred": {"_count": 4}, "D": {"_count": 1}, "minute": {"_count": 3}, "humongous": {"_count": 1}, "crup": {"_count": 1}, "brief": {"_count": 1}, "good": {"_count": 1}, "small": {"_count": 1}, "matter": {"_count": 1}, "Snitch": {"_count": 1}, "mirror": {"_count": 1}, "pureblood": {"_count": 1}, "week": {"_count": 1}, "boys": {"_count": 1}, "whack": {"_count": 1}, "heartbeat": {"_count": 1}, "look": {"_count": 1}, "purewhite": {"_count": 1}, "Chocolate": {"_count": 1}, "brother": {"_count": 1}, "tool": {"_count": 1}, "head": {"_count": 1}, "loaf": {"_count": 1}, "recreational": {"_count": 1}, "house": {"_count": 1}, "humans": {"_count": 1}}, "up": {"_count": 3, "here": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "twelve": {"_count": 2, "letters": {"_count": 1}, "towering": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "July": {"_count": 1, "31": {"_count": 1}}, "worse": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 133, "on": {"_count": 2}, "": {"_count": 61}, "because": {"_count": 1}, "opened": {"_count": 1}, "before": {"_count": 15}, "so": {"_count": 1}, "against": {"_count": 2}, "under": {"_count": 1}, "like": {"_count": 1}, "echoing": {"_count": 1}, "to": {"_count": 2}, "he": {"_count": 2}, "large": {"_count": 1}, "as": {"_count": 5}, "in": {"_count": 5}, "but": {"_count": 4}, "trying": {"_count": 1}, "and": {"_count": 8}, "his": {"_count": 3}, "they": {"_count": 1}, "rushing": {"_count": 1}, "with": {"_count": 1}, "Harry": {"_count": 1}, "holding": {"_count": 1}, "though": {"_count": 1}, "brandishing": {"_count": 1}, "no": {"_count": 1}, "by": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}, "were": {"_count": 1}, "dust": {"_count": 1}, "two": {"_count": 1}}, "Harry": {"_count": 41, "": {"_count": 5}, "had": {"_count": 21}, "but": {"_count": 1}, "who": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "though": {"_count": 1}, "could": {"_count": 3}, "Potter": {"_count": 1}, "because": {"_count": 1}, "this": {"_count": 1}, "did": {"_count": 1}, "Ron": {"_count": 1}, "now": {"_count": 1}, "remembered": {"_count": 1}}, "treasure": {"_count": 1, "there": {"_count": 1}}, "blinking": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 33, "ask": {"_count": 1}, "see": {"_count": 1}, "Harry": {"_count": 3}, "say": {"_count": 1}, "think": {"_count": 1}, "accept": {"_count": 1}, "talk": {"_count": 1}, "sit": {"_count": 1}, "have": {"_count": 1}, "Uncle": {"_count": 1}, "cooperate": {"_count": 1}, "listen": {"_count": 2}, "struggle": {"_count": 1}, "thump": {"_count": 1}, "strike": {"_count": 1}, "snatch": {"_count": 1}, "seize": {"_count": 1}, "open": {"_count": 1}, "stride": {"_count": 1}, "sink": {"_count": 1}, "his": {"_count": 1}, "any": {"_count": 1}, "meet": {"_count": 1}, "lean": {"_count": 1}, "get": {"_count": 1}, "instruct": {"_count": 1}, "the": {"_count": 1}, "renege": {"_count": 1}, "enable": {"_count": 1}, "call": {"_count": 1}}, "hed": {"_count": 9, "had": {"_count": 1}, "shown": {"_count": 1}, "just": {"_count": 1}, "looked": {"_count": 1}, "intended": {"_count": 1}, "ever": {"_count": 3}, "talked": {"_count": 1}}, "even": {"_count": 2, "Dudley": {"_count": 1}, "the": {"_count": 1}}, "Slytherin": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 3, "he": {"_count": 1}, "happened": {"_count": 1}, "she": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "they": {"_count": 26, "can": {"_count": 1}, "would": {"_count": 3}, "were": {"_count": 5}, "did": {"_count": 2}, "have": {"_count": 2}, "had": {"_count": 7}, "usually": {"_count": 1}, "": {"_count": 1}, "once": {"_count": 1}, "heard": {"_count": 1}, "are": {"_count": 1}, "could": {"_count": 1}}, "others": {"_count": 2, "Potter": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 5, "or": {"_count": 1}, "without": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}}, "me": {"_count": 7, "": {"_count": 1}, "they": {"_count": 1}, "said": {"_count": 3}, "out": {"_count": 1}, "Ron": {"_count": 1}}, "Ron": {"_count": 12, "joined": {"_count": 1}, "and": {"_count": 3}, "had": {"_count": 2}, "": {"_count": 2}, "in": {"_count": 1}, "though": {"_count": 1}, "thickset": {"_count": 1}, "Im": {"_count": 1}}, "Peeves": {"_count": 1, "if": {"_count": 1}}, "anyone": {"_count": 13, "except": {"_count": 1}, "else": {"_count": 2}, "could": {"_count": 1}, "really": {"_count": 1}, "elses": {"_count": 3}, "that": {"_count": 1}, "who": {"_count": 1}, "he": {"_count": 1}, "has": {"_count": 1}, "in": {"_count": 1}}, "waving": {"_count": 1, "your": {"_count": 1}}, "Dudley": {"_count": 4, "but": {"_count": 1}, "Dursley": {"_count": 1}, "and": {"_count": 1}, "squeezed": {"_count": 1}}, "anything": {"_count": 27, "else": {"_count": 11}, "but": {"_count": 1}, "to": {"_count": 3}, "Harry": {"_count": 2}, "they": {"_count": 2}, "in": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}, "though": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "Luciuss": {"_count": 1}}, "any": {"_count": 21, "teacher": {"_count": 1}, "other": {"_count": 7}, "of": {"_count": 5}, "wizard": {"_count": 3}, "cauldron": {"_count": 1}, "student": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}}, "Malfoy": {"_count": 2, "burst": {"_count": 1}, "": {"_count": 1}}, "crack": {"_count": 1, "their": {"_count": 1}}, "that": {"_count": 28, "": {"_count": 10}, "and": {"_count": 1}, "good": {"_count": 1}, "mdear": {"_count": 1}, "amount": {"_count": 1}, "to": {"_count": 1}, "soon": {"_count": 1}, "woman": {"_count": 1}, "I": {"_count": 1}, "filthy": {"_count": 1}, "of": {"_count": 2}, "McLaggen": {"_count": 1}, "Malfoys": {"_count": 1}, "necklace": {"_count": 1}, "nothing": {"_count": 1}, "unless": {"_count": 1}, "done": {"_count": 1}, "said": {"_count": 1}}, "Charlie": {"_count": 1, "Weasley": {"_count": 1}}, "Privet": {"_count": 1, "Drive": {"_count": 1}}, "ten": {"_count": 2, "points": {"_count": 1}, "years": {"_count": 1}}, "Higgs": {"_count": 1, "he": {"_count": 1}}, "usual": {"_count": 70, "since": {"_count": 2}, "so": {"_count": 1}, "": {"_count": 25}, "made": {"_count": 1}, "I": {"_count": 1}, "but": {"_count": 3}, "Harry": {"_count": 2}, "and": {"_count": 9}, "when": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 4}, "even": {"_count": 1}, "lately": {"_count": 1}, "which": {"_count": 1}, "very": {"_count": 1}, "while": {"_count": 1}, "came": {"_count": 1}, "before": {"_count": 1}, "if": {"_count": 1}, "out": {"_count": 1}, "with": {"_count": 1}, "though": {"_count": 1}, "this": {"_count": 2}, "without": {"_count": 1}, "anxious": {"_count": 1}, "to": {"_count": 1}, "sometimes": {"_count": 1}, "her": {"_count": 1}, "on": {"_count": 1}, "due": {"_count": 1}}, "Harrys": {"_count": 3, "": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "ours": {"_count": 2, "though": {"_count": 1}, "": {"_count": 1}}, "silk": {"_count": 1, "light": {"_count": 1}}, "when": {"_count": 5, "the": {"_count": 1}, "Harry": {"_count": 2}, "he": {"_count": 2}}, "before": {"_count": 13, "": {"_count": 7}, "talking": {"_count": 1}, "but": {"_count": 1}, "Snape": {"_count": 1}, "and": {"_count": 1}, "Many": {"_count": 1}, "more": {"_count": 1}}, "was": {"_count": 5, "wise": {"_count": 1}, "necessary": {"_count": 2}, "natural": {"_count": 1}, "strictly": {"_count": 1}}, "Albus": {"_count": 2, "Dumbledore": {"_count": 2}}, "Weasley": {"_count": 1, "and": {"_count": 1}}, "theyd": {"_count": 1, "thought": {"_count": 1}}, "Norbert": {"_count": 1, "as": {"_count": 1}}, "this": {"_count": 14, "": {"_count": 5}, "stuff": {"_count": 1}, "lot": {"_count": 1}, "stared": {"_count": 1}, "before": {"_count": 1}, "he": {"_count": 1}, "one": {"_count": 1}, "when": {"_count": 1}, "in": {"_count": 1}, "memory": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "Ronan": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 39, "thought": {"_count": 6}, "would": {"_count": 2}, "do": {"_count": 5}, "Youre": {"_count": 1}, "had": {"_count": 5}, "deserve": {"_count": 1}, "was": {"_count": 4}, "am": {"_count": 3}, "think": {"_count": 1}, "can": {"_count": 2}, "did": {"_count": 2}, "": {"_count": 1}, "could": {"_count": 1}, "What": {"_count": 1}, "expected": {"_count": 1}, "didnt": {"_count": 1}, "despise": {"_count": 1}, "feared": {"_count": 1}}, "Professor": {"_count": 4, "McGonagall": {"_count": 1}, "Binns": {"_count": 1}, "Umbridge": {"_count": 1}, "Dippet": {"_count": 1}}, "it": {"_count": 28, "became": {"_count": 1}, "usually": {"_count": 2}, "had": {"_count": 16}, "was": {"_count": 2}, "took": {"_count": 2}, "would": {"_count": 1}, "being": {"_count": 1}, "is": {"_count": 1}, "affected": {"_count": 1}, "really": {"_count": 1}}, "winning": {"_count": 1, "at": {"_count": 1}}, "playing": {"_count": 1, "Quidditch": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 2}}, "she": {"_count": 12, "was": {"_count": 2}, "is": {"_count": 1}, "have": {"_count": 1}, "had": {"_count": 4}, "already": {"_count": 1}, "would": {"_count": 1}, "thought": {"_count": 1}, "did": {"_count": 1}}, "Lockhart": {"_count": 1, "you": {"_count": 1}}, "Fred": {"_count": 2, "who": {"_count": 1}, "and": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 36, "can": {"_count": 7}, "could": {"_count": 1}, "do": {"_count": 3}, "arent": {"_count": 1}, "think": {"_count": 3}, "have": {"_count": 5}, "should": {"_count": 1}, "got": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 2}, "learning": {"_count": 1}, "were": {"_count": 2}, "had": {"_count": 1}, "at": {"_count": 1}, "did": {"_count": 1}, "Dumbledore": {"_count": 1}, "wanted": {"_count": 1}, "who": {"_count": 1}, "knew": {"_count": 1}, "said": {"_count": 1}}, "my": {"_count": 4, "book": {"_count": 1}, "plan": {"_count": 1}, "kind": {"_count": 1}, "mother": {"_count": 1}}, "either": {"_count": 4, "Ron": {"_count": 1}, "of": {"_count": 3}}, "all": {"_count": 4, "Break": {"_count": 1}, "the": {"_count": 3}}, "we": {"_count": 11, "give": {"_count": 1}, "Ron": {"_count": 1}, "are": {"_count": 5}, "did": {"_count": 1}, "were": {"_count": 1}, "do": {"_count": 1}, "would": {"_count": 1}}, "Snape": {"_count": 6, "but": {"_count": 2}, "wearing": {"_count": 1}, "who": {"_count": 1}, "so": {"_count": 1}, "or": {"_count": 1}}, "water": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "Woods": {"_count": 1, "long": {"_count": 1}}, "Wood": {"_count": 2, "": {"_count": 1}, "wiping": {"_count": 1}}, "in": {"_count": 9, "he": {"_count": 1}, "worrying": {"_count": 1}, "months": {"_count": 1}, "Mr": {"_count": 1}, "Neville": {"_count": 1}, "the": {"_count": 2}, "France": {"_count": 1}, "you": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "seven": {"_count": 1, "greenish": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "brewing": {"_count": 1, "up": {"_count": 1}}, "us": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}, "remain": {"_count": 1, "here": {"_count": 1}}, "let": {"_count": 2, "Snape": {"_count": 1}, "him": {"_count": 1}}, "Ernie": {"_count": 1, "the": {"_count": 1}}, "gloomy": {"_count": 1, "and": {"_count": 1}}, "visit": {"_count": 1, "Bill": {"_count": 1}}, "ink": {"_count": 1, "": {"_count": 1}}, "go": {"_count": 1, "back": {"_count": 1}}, "Dean": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "breaking": {"_count": 1, "twigs": {"_count": 1}}, "once": {"_count": 6, "they": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 2}}, "sixteen": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "little": {"_count": 1, "Miss": {"_count": 1}}, "believing": {"_count": 1, "it": {"_count": 1}}, "later": {"_count": 2, "": {"_count": 2}}, "our": {"_count": 2, "abilities": {"_count": 1}, "lifes": {"_count": 1}}, "Dobby": {"_count": 2, "knew": {"_count": 1}, "the": {"_count": 1}}, "fortyseven": {"_count": 1, "times": {"_count": 1}}, "with": {"_count": 4, "the": {"_count": 1}, "Muggle": {"_count": 1}, "with": {"_count": 1}, "broomsticks": {"_count": 1}}, "heard": {"_count": 2, "it": {"_count": 1}, "Hermione": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "three": {"_count": 6, "years": {"_count": 1}, "people": {"_count": 1}, "terms": {"_count": 1}, "minutes": {"_count": 1}, "hundred": {"_count": 2}}, "inventing": {"_count": 2, "self": {"_count": 1}, "a": {"_count": 1}}, "Voldemort": {"_count": 3, "can": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "Fudge": {"_count": 3, "seems": {"_count": 1}, "so": {"_count": 1}, "or": {"_count": 1}}, "air": {"_count": 2, "from": {"_count": 1}, "as": {"_count": 1}}, "Rubeus": {"_count": 1, "Hagrid": {"_count": 1}}, "made": {"_count": 1, "up": {"_count": 1}}, "walls": {"_count": 1, "you": {"_count": 1}}, "willing": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "murdering": {"_count": 1, "all": {"_count": 1}}, "tell": {"_count": 2, "where": {"_count": 1}, "Snape": {"_count": 1}}, "criminal": {"_count": 1, "damage": {"_count": 1}}, "understand": {"_count": 1, "I": {"_count": 1}}, "six": {"_count": 4, "Quidditch": {"_count": 1}, "or": {"_count": 1}, "visitors": {"_count": 1}, "feet": {"_count": 1}}, "search": {"_count": 1, "for": {"_count": 1}}, "anybody": {"_count": 5, "else": {"_count": 1}, "along": {"_count": 2}, "And": {"_count": 1}, "to": {"_count": 1}}, "fifty": {"_count": 4, "points": {"_count": 3}, "eyewitnesses": {"_count": 1}}, "skill": {"_count": 1, "More": {"_count": 1}}, "Percy": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "swirling": {"_count": 1, "white": {"_count": 1}}, "tears": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 3, "Harrys": {"_count": 1}, "Crouch": {"_count": 1}, "accidental": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 4, "whole": {"_count": 1}, "knowing": {"_count": 1}, "predecessor": {"_count": 1}, "own": {"_count": 1}}, "dead": {"_count": 2, "": {"_count": 2}}, "yours": {"_count": 2, "": {"_count": 1}, "Im": {"_count": 1}}, "one": {"_count": 7, "innocent": {"_count": 2}, "person": {"_count": 1}, "usually": {"_count": 1}, "": {"_count": 1}, "master": {"_count": 1}, "Horcrux": {"_count": 1}}, "an": {"_count": 7, "attempt": {"_count": 1}, "excuse": {"_count": 1}, "hour": {"_count": 3}, "afternoon": {"_count": 1}, "old": {"_count": 1}}, "cowardice": {"_count": 1, "": {"_count": 1}}, "approach": {"_count": 1, "his": {"_count": 1}}, "Hermione": {"_count": 2, "and": {"_count": 1}, "was": {"_count": 1}}, "Dudleys": {"_count": 1, "": {"_count": 1}}, "fear": {"_count": 1, "": {"_count": 1}}, "talked": {"_count": 1, "as": {"_count": 1}}, "shes": {"_count": 2, "worth": {"_count": 1}, "been": {"_count": 1}}, "two": {"_count": 4, "was": {"_count": 1}, "months": {"_count": 1}, "years": {"_count": 1}, "goals": {"_count": 1}}, "Kevin": {"_count": 1, "who": {"_count": 1}}, "Dobbys": {"_count": 2, "had": {"_count": 1}, "odd": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "your": {"_count": 1}, "our": {"_count": 1}}, "Hogwarts": {"_count": 2, "you": {"_count": 1}, "about": {"_count": 1}}, "sailed": {"_count": 1, "": {"_count": 1}}, "being": {"_count": 2, "thrown": {"_count": 1}, "right": {"_count": 1}}, "food": {"_count": 1, "said": {"_count": 1}}, "stare": {"_count": 1, "at": {"_count": 1}}, "thick": {"_count": 1, "black": {"_count": 1}}, "lucky": {"_count": 1, "guesswork": {"_count": 1}}, "her": {"_count": 7, "usual": {"_count": 1}, "seat": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "famously": {"_count": 1}, "sister": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "their": {"_count": 1}}, "increasing": {"_count": 1, "them": {"_count": 1}}, "miss": {"_count": 1, "such": {"_count": 1}}, "dinner": {"_count": 1, "plates": {"_count": 1}}, "seventeen": {"_count": 1, "did": {"_count": 1}}, "PrettyBoy": {"_count": 1, "Diggory": {"_count": 1}}, "vicious": {"_count": 1, "insults": {"_count": 1}}, "average": {"_count": 1, "were": {"_count": 1}}, "transforming": {"_count": 1, "his": {"_count": 1}}, "five": {"_count": 3, "minutes": {"_count": 3}}, "dragons": {"_count": 1, "coming": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "Moodys": {"_count": 1, "": {"_count": 1}}, "kid": {"_count": 1, "stuff": {"_count": 1}}, "dodging": {"_count": 1, "a": {"_count": 1}}, "old": {"_count": 1, "Crouch": {"_count": 1}}, "adopt": {"_count": 1, "Harry": {"_count": 1}}, "during": {"_count": 1, "termtime": {"_count": 1}}, "join": {"_count": 1, "in": {"_count": 1}}, "these": {"_count": 1, "though": {"_count": 1}}, "asking": {"_count": 1, "advice": {"_count": 1}}, "eleven": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "stand": {"_count": 1, "up": {"_count": 1}}, "admit": {"_count": 2, "to": {"_count": 1}, "it": {"_count": 1}}, "not": {"_count": 2, "it": {"_count": 1}, "adorned": {"_count": 1}}, "eight": {"_count": 2, "whose": {"_count": 1}, "": {"_count": 1}}, "there": {"_count": 5, "were": {"_count": 1}, "was": {"_count": 1}, "should": {"_count": 1}, "is": {"_count": 2}}, "feet": {"_count": 1, "": {"_count": 1}}, "capable": {"_count": 1, "of": {"_count": 1}}, "Winky": {"_count": 1, "said": {"_count": 1}}, "capture": {"_count": 1, "for": {"_count": 1}}, "nineteen": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 6, "the": {"_count": 4}, "": {"_count": 1}, "an": {"_count": 1}}, "hes": {"_count": 1, "bin": {"_count": 1}}, "detention": {"_count": 1, "for": {"_count": 1}}, "likely": {"_count": 1, "Im": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "come": {"_count": 1, "quietly": {"_count": 1}}, "Rosier": {"_count": 1, "deserved": {"_count": 1}}, "But": {"_count": 1, "there": {"_count": 1}}, "YouKnowWho": {"_count": 1, "himself": {"_count": 1}}, "aggravating": {"_count": 1, "it": {"_count": 1}}, "renounce": {"_count": 1, "me": {"_count": 1}}, "spirit": {"_count": 2, "less": {"_count": 2}}, "as": {"_count": 2, "pure": {"_count": 1}, "he": {"_count": 1}}, "if": {"_count": 2, "hed": {"_count": 2}}, "stranded": {"_count": 1, "holidaymakers": {"_count": 1}}, "most": {"_count": 4, "to": {"_count": 1}, "people": {"_count": 1}, "men": {"_count": 1}, "of": {"_count": 1}}, "some": {"_count": 2, "No": {"_count": 1}, "solid": {"_count": 1}}, "death": {"_count": 4, "": {"_count": 1}, "Dumbledore": {"_count": 1}, "has": {"_count": 1}, "than": {"_count": 1}}, "hanging": {"_count": 1, "around": {"_count": 1}}, "lifesize": {"_count": 1, "stood": {"_count": 1}}, "Bills": {"_count": 1, "was": {"_count": 1}}, "vapor": {"_count": 1, "or": {"_count": 1}}, "bilge": {"_count": 1, "Dumbledore": {"_count": 1}}, "expulsion": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 2, "scaring": {"_count": 1}, "had": {"_count": 1}}, "spines": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 1, "Lovegood": {"_count": 1}}, "sitting": {"_count": 5, "there": {"_count": 1}, "hunched": {"_count": 1}, "here": {"_count": 1}, "safely": {"_count": 1}, "still": {"_count": 1}}, "Seamuss": {"_count": 1, "anyway": {"_count": 1}}, "Rons": {"_count": 2, "which": {"_count": 1}, "just": {"_count": 1}}, "sufficient": {"_count": 1, "to": {"_count": 1}}, "House": {"_count": 1, "points": {"_count": 1}}, "Conjuring": {"_count": 1, "Spells": {"_count": 1}}, "zero": {"_count": 1, "said": {"_count": 1}}, "following": {"_count": 1, "in": {"_count": 1}}, "congratulations": {"_count": 1, "Ron": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "continued": {"_count": 1, "fraternization": {"_count": 1}}, "pink": {"_count": 1, "like": {"_count": 1}}, "D": {"_count": 1, "isnt": {"_count": 1}}, "critical": {"_count": 1, "": {"_count": 1}}, "homework": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "happy": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "girls": {"_count": 1, "": {"_count": 1}}, "frogs": {"_count": 1, "said": {"_count": 1}}, "four": {"_count": 2, "years": {"_count": 1}, "Stunners": {"_count": 1}}, "detentions": {"_count": 1, "said": {"_count": 1}}, "common": {"_count": 1, "teachers": {"_count": 1}}, "chimaeras": {"_count": 1, "oh": {"_count": 1}}, "easier": {"_count": 1, "to": {"_count": 1}}, "Divination": {"_count": 1, "anyway": {"_count": 1}}, "whirring": {"_count": 1, "and": {"_count": 1}}, "telling": {"_count": 1, "McGonagall": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "mine": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "twentyfour": {"_count": 2, "hours": {"_count": 2}}, "robes": {"_count": 2, "": {"_count": 1}, "appeared": {"_count": 1}}, "Potions": {"_count": 1, "": {"_count": 1}}, "strengthening": {"_count": 1, "it": {"_count": 1}}, "hostile": {"_count": 1, "now": {"_count": 1}}, "Trelawney": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "stand": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "something": {"_count": 1, "just": {"_count": 1}}, "stay": {"_count": 1, "here": {"_count": 1}}, "keepin": {"_count": 1, "a": {"_count": 1}}, "swallowed": {"_count": 1, "them": {"_count": 1}}, "arguing": {"_count": 1, "with": {"_count": 1}}, "because": {"_count": 3, "he": {"_count": 2}, "their": {"_count": 1}}, "\u2018Outstanding": {"_count": 1, "in": {"_count": 1}}, "twenty": {"_count": 3, "years": {"_count": 1}, "feet": {"_count": 1}, "people": {"_count": 1}}, "everybody": {"_count": 1, "else": {"_count": 1}}, "Malfoys": {"_count": 1, "had": {"_count": 1}}, "impressed": {"_count": 1, "": {"_count": 1}}, "located": {"_count": 1, "an": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "welcome": {"_count": 1, "to": {"_count": 1}}, "accusatory": {"_count": 1, "Harry": {"_count": 1}}, "outright": {"_count": 1, "dislike": {"_count": 1}}, "gladly": {"_count": 1, "would": {"_count": 1}}, "perhaps": {"_count": 1, "anyone": {"_count": 1}}, "human": {"_count": 1, "intelligence": {"_count": 1}}, "forces": {"_count": 1, "of": {"_count": 1}}, "almost": {"_count": 1, "anything": {"_count": 1}}, "Grawp": {"_count": 1, "was": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "endless": {"_count": 1, "reminiscences": {"_count": 1}}, "cold": {"_count": 1, "custard": {"_count": 1}}, "Cornelius": {"_count": 1, "": {"_count": 1}}, "Umbridge": {"_count": 2, "can": {"_count": 1}, "said": {"_count": 1}}, "Phlegm": {"_count": 1, "said": {"_count": 1}}, "GalleonsV": {"_count": 1, "he": {"_count": 1}}, "bullying": {"_count": 1, "younger": {"_count": 1}}, "betray": {"_count": 1, "his": {"_count": 1}}, "fine": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "cutting": {"_count": 1, "": {"_count": 1}}, "S": {"_count": 1, "napes": {"_count": 1}}, "register": {"_count": 1, "his": {"_count": 1}}, "those": {"_count": 5, "they": {"_count": 1}, "nature": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 2}}, "their": {"_count": 2, "homes": {"_count": 1}, "surroundings": {"_count": 1}}, "revolted": {"_count": 1, "but": {"_count": 1}}, "normal": {"_count": 2, "as": {"_count": 1}, "darkness": {"_count": 1}}, "Crabbe": {"_count": 2, "and": {"_count": 2}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "unkind": {"_count": 1, "and": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 1}, "s": {"_count": 1}}, "encouragement": {"_count": 1, "Ron": {"_count": 1}}, "hilarity": {"_count": 1, "simply": {"_count": 1}}, "\u2018three": {"_count": 1, "mistaken": {"_count": 1}}, "Lupin": {"_count": 2, "the": {"_count": 1}, "grabbed": {"_count": 1}}, "exchange": {"_count": 1, "stunned": {"_count": 1}}, "had": {"_count": 1, "lain": {"_count": 1}}, "put": {"_count": 1, "off": {"_count": 1}}, "anywhere": {"_count": 1, "Harry": {"_count": 1}}, "poor": {"_count": 1, "Morfin": {"_count": 1}}, "good": {"_count": 1, "I": {"_count": 1}}, "real": {"_count": 1, "stones": {"_count": 1}}, "satisfy": {"_count": 1, "themselves": {"_count": 1}}, "McLaggens": {"_count": 1, "Quidditch": {"_count": 1}}, "fair": {"_count": 1, "Now": {"_count": 1}}, "passing": {"_count": 1, "on": {"_count": 1}}, "here": {"_count": 1, "at": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "finding": {"_count": 1, "Dumbledore": {"_count": 1}}, "proper": {"_count": 1, "security": {"_count": 1}}, "Hagrids": {"_count": 1, "elbow": {"_count": 1}}, "tear": {"_count": 1, "his": {"_count": 1}}, "Horcruxes": {"_count": 1, "to": {"_count": 1}}, "guard": {"_count": 1, "it": {"_count": 1}}, "Michael": {"_count": 1, "or": {"_count": 1}}, "ropes": {"_count": 1, "": {"_count": 1}}, "expertise": {"_count": 1, "": {"_count": 1}}, "physical": {"_count": 1, "injury": {"_count": 1}}, "blood": {"_count": 2, "and": {"_count": 1}, "was": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 1, "reasoned": {"_count": 1}}, "harboring": {"_count": 1, "a": {"_count": 1}}, "Ollivander": {"_count": 2, "": {"_count": 1}, "did": {"_count": 1}}, "shock": {"_count": 1, "in": {"_count": 1}}, "distinctly": {"_count": 1, "hairy": {"_count": 1}}, "firewhisky": {"_count": 1, "she": {"_count": 1}}, "polite": {"_count": 1, "conversation": {"_count": 1}}, "risk": {"_count": 1, "carrying": {"_count": 1}}, "Tonks": {"_count": 1, "": {"_count": 1}}, "stir": {"_count": 1, "sleepily": {"_count": 1}}, "Siriuss": {"_count": 1, "though": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "suffer": {"_count": 1, "the": {"_count": 1}}, "Runcorn": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "people": {"_count": 1, "yet": {"_count": 1}}, "youd": {"_count": 3, "think": {"_count": 3}}, "Ginny": {"_count": 1, "the": {"_count": 1}}, "staying": {"_count": 1, "in": {"_count": 1}}, "hearing": {"_count": 1, "about": {"_count": 1}}, "channel": {"_count": 1, "his": {"_count": 1}}, "other": {"_count": 1, "peoples": {"_count": 1}}, "substance": {"_count": 1, "": {"_count": 1}}, "actually": {"_count": 1, "showing": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "Barny": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "great": {"_count": 1, "glassy": {"_count": 1}}, "another": {"_count": 1, "wand": {"_count": 1}}, "theft": {"_count": 1, "": {"_count": 1}}, "Well": {"_count": 1, "just": {"_count": 1}}, "Gurdyroots": {"_count": 1, "": {"_count": 1}}, "wait": {"_count": 1, "": {"_count": 1}}, "swimming": {"_count": 1, "and": {"_count": 1}}, "ghost": {"_count": 1, "": {"_count": 1}}, "teach": {"_count": 1, "said": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "yourself": {"_count": 1, "My": {"_count": 1}}, "yell": {"_count": 1, "it": {"_count": 1}}, "face": {"_count": 2, "me": {"_count": 2}}, "nine": {"_count": 1, "or": {"_count": 1}}, "brainy": {"_count": 1, "Where": {"_count": 1}}, "Igor": {"_count": 1, "Karkaroff": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "living": {"_count": 1, "bodies": {"_count": 1}}, "ghosts": {"_count": 1, "they": {"_count": 1}}, "falling": {"_count": 1, "asleep": {"_count": 1}}, "disembodied": {"_count": 1, "thought": {"_count": 1}}, "dying": {"_count": 1, "": {"_count": 1}}, "McGonagalls": {"_count": 1, "Harry": {"_count": 1}}, "its": {"_count": 1, "worth": {"_count": 1}}}, "wearing": {"_count": 302, "an": {"_count": 13, "emeraldgreen": {"_count": 1}, "apron": {"_count": 2}, "extremely": {"_count": 1}, "Invisibility": {"_count": 1}, "earring": {"_count": 1}, "expression": {"_count": 2}, "exceptionally": {"_count": 1}, "old": {"_count": 1}, "enormous": {"_count": 1}, "elaborate": {"_count": 1}, "odd": {"_count": 1}}, "a": {"_count": 83, "violet": {"_count": 1}, "cloak": {"_count": 2}, "uniform": {"_count": 1}, "ruff": {"_count": 1}, "pink": {"_count": 1}, "salmonpink": {"_count": 1}, "flowered": {"_count": 1}, "scowl": {"_count": 1}, "wellyoudidbreakschoolrules": {"_count": 1}, "bright": {"_count": 1}, "most": {"_count": 2}, "long": {"_count": 12}, "strange": {"_count": 1}, "suit": {"_count": 1}, "very": {"_count": 3}, "bemused": {"_count": 1}, "tea": {"_count": 2}, "look": {"_count": 2}, "steely": {"_count": 1}, "large": {"_count": 2}, "Cedric": {"_count": 1}, "flower": {"_count": 1}, "silk": {"_count": 2}, "Bulgaria": {"_count": 1}, "thick": {"_count": 2}, "neat": {"_count": 1}, "pair": {"_count": 1}, "hooded": {"_count": 1}, "dazzling": {"_count": 1}, "strangely": {"_count": 1}, "quilted": {"_count": 1}, "vapid": {"_count": 1}, "slimy": {"_count": 1}, "different": {"_count": 1}, "luridly": {"_count": 1}, "Gryffindor": {"_count": 1}, "magnificently": {"_count": 1}, "tinsel": {"_count": 1}, "delighted": {"_count": 1}, "triumphant": {"_count": 1}, "balaclava": {"_count": 1}, "puce": {"_count": 1}, "satisfied": {"_count": 1}, "handsome": {"_count": 1}, "set": {"_count": 2}, "curious": {"_count": 1}, "tasseled": {"_count": 1}, "green": {"_count": 1}, "shrunken": {"_count": 1}, "somber": {"_count": 1}, "helmet": {"_count": 1}, "floaty": {"_count": 1}, "brandnew": {"_count": 1}, "velvet": {"_count": 1}, "bonnet": {"_count": 1}, "traveling": {"_count": 1}, "crown": {"_count": 1}, "hood": {"_count": 1}, "motheaten": {"_count": 1}, "wig": {"_count": 1}, "dusty": {"_count": 1}, "dressing": {"_count": 1}}, "long": {"_count": 6, "robes": {"_count": 1}, "green": {"_count": 2}, "white": {"_count": 1}, "Quidditch": {"_count": 1}, "midnightblue": {"_count": 1}}, "square": {"_count": 1, "glasses": {"_count": 1}}, "differentcolored": {"_count": 1, "bonnets": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 8, "new": {"_count": 1}, "dressing": {"_count": 1}, "bedroom": {"_count": 1}, "black": {"_count": 1}, "green": {"_count": 2}, "free": {"_count": 1}, "brandnew": {"_count": 1}}, "it": {"_count": 9, "and": {"_count": 2}, "when": {"_count": 1}, "": {"_count": 3}, "so": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 1}}, "Professor": {"_count": 1, "Quirrells": {"_count": 1}}, "blue": {"_count": 1, "sweaters": {"_count": 1}}, "yours": {"_count": 1, "Ron": {"_count": 1}}, "ours": {"_count": 1, "even": {"_count": 1}}, "the": {"_count": 26, "badge": {"_count": 1}, "Invisibility": {"_count": 5}, "scarlet": {"_count": 1}, "strangest": {"_count": 1}, "same": {"_count": 2}, "fluffy": {"_count": 1}, "Slytherin": {"_count": 1}, "long": {"_count": 1}, "cloak": {"_count": 1}, "strange": {"_count": 1}, "tutu": {"_count": 1}, "filthy": {"_count": 1}, "slightly": {"_count": 1}, "navy": {"_count": 1}, "Horcrux": {"_count": 3}, "symbol": {"_count": 1}, "hangdog": {"_count": 1}, "clothes": {"_count": 1}, "great": {"_count": 1}}, "what": {"_count": 5, "looked": {"_count": 2}, "appeared": {"_count": 2}, "now": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "bright": {"_count": 2, "orange": {"_count": 1}, "yellow": {"_count": 1}}, "broken": {"_count": 1, "glasses": {"_count": 1}}, "robes": {"_count": 5, "of": {"_count": 4}, "made": {"_count": 1}}, "his": {"_count": 22, "usual": {"_count": 3}, "vague": {"_count": 1}, "fathers": {"_count": 1}, "long": {"_count": 1}, "Ireland": {"_count": 1}, "moldy": {"_count": 1}, "best": {"_count": 3}, "old": {"_count": 2}, "sleek": {"_count": 1}, "grandmothers": {"_count": 1}, "glasses": {"_count": 3}, "Quidditch": {"_count": 1}, "great": {"_count": 1}, "familiar": {"_count": 1}, "emerald": {"_count": 1}}, "off": {"_count": 8, "": {"_count": 3}, "and": {"_count": 1}, "now": {"_count": 2}, "as": {"_count": 1}, "cloaks": {"_count": 1}}, "chains": {"_count": 1, "and": {"_count": 1}}, "lurid": {"_count": 1, "pink": {"_count": 1}}, "golden": {"_count": 2, "wings": {"_count": 1}, "dresses": {"_count": 1}}, "very": {"_count": 1, "thick": {"_count": 1}}, "canary": {"_count": 1, "yellow": {"_count": 1}}, "sparkly": {"_count": 1, "turquoise": {"_count": 1}}, "their": {"_count": 3, "party": {"_count": 1}, "Quidditch": {"_count": 1}, "dress": {"_count": 1}}, "scarlet": {"_count": 1, "rosettes": {"_count": 1}}, "green": {"_count": 3, "the": {"_count": 1}, "like": {"_count": 1}, "they": {"_count": 1}}, "your": {"_count": 1, "fathers": {"_count": 1}}, "anything": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "hornrimmed": {"_count": 1, "glasses": {"_count": 1}}, "splendid": {"_count": 1, "robes": {"_count": 1}}, "masks": {"_count": 1, "are": {"_count": 1}}, "that": {"_count": 2, "no": {"_count": 1}, "mad": {"_count": 1}}, "them": {"_count": 2, "Ron": {"_count": 1}, "today": {"_count": 1}}, "these": {"_count": 1, "were": {"_count": 1}}, "badges": {"_count": 1, "saying": {"_count": 1}}, "cloaks": {"_count": 4, "": {"_count": 2}, "of": {"_count": 1}, "repeated": {"_count": 1}}, "furs": {"_count": 1, "of": {"_count": 1}}, "magenta": {"_count": 3, "robes": {"_count": 2}, "staff": {"_count": 1}}, "my": {"_count": 2, "Invisibility": {"_count": 1}, "clothes": {"_count": 1}}, "acidgreen": {"_count": 1, "robes": {"_count": 1}}, "Dobbys": {"_count": 1, "tea": {"_count": 1}}, "different": {"_count": 2, "colors": {"_count": 1}, "robes": {"_count": 1}}, "dress": {"_count": 4, "robes": {"_count": 4}}, "brandnew": {"_count": 2, "navyblue": {"_count": 1}, "jackets": {"_count": 1}}, "Bulgarian": {"_count": 1, "Quidditch": {"_count": 1}}, "bananayellow": {"_count": 1, "robes": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "swimming": {"_count": 1, "trunks": {"_count": 1}}, "ragged": {"_count": 1, "gray": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "large": {"_count": 1, "red": {"_count": 1}}, "wizards": {"_count": 1, "robes": {"_count": 1}}, "glum": {"_count": 1, "earlymorning": {"_count": 1}}, "plumcolored": {"_count": 1, "robes": {"_count": 1}}, "crowns": {"_count": 1, "and": {"_count": 1}}, "deeppurple": {"_count": 1, "robes": {"_count": 1}}, "those": {"_count": 2, "badges": {"_count": 1}, "silver": {"_count": 1}}, "radishes": {"_count": 1, "in": {"_count": 1}}, "one": {"_count": 1, "on": {"_count": 1}}, "several": {"_count": 1, "scarves": {"_count": 1}}, "in": {"_count": 1, "addition": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "redandgold": {"_count": 1, "scarves": {"_count": 1}}, "scarf": {"_count": 1, "gloves": {"_count": 1}}, "expressions": {"_count": 1, "as": {"_count": 1}}, "at": {"_count": 2, "an": {"_count": 1}, "Malfoy": {"_count": 1}}, "jeans": {"_count": 1, "rather": {"_count": 1}}, "upsidedown": {"_count": 1, "goldfish": {"_count": 1}}, "pajamas": {"_count": 1, "under": {"_count": 1}}, "heavily": {"_count": 1, "patched": {"_count": 1}}, "rubber": {"_count": 1, "gloves": {"_count": 1}}, "horn": {"_count": 1, "rimmed": {"_count": 1}}, "of": {"_count": 1, "school": {"_count": 1}}, "enormously": {"_count": 1, "thick": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "new": {"_count": 1, "sweaters": {"_count": 1}}, "Marvolos": {"_count": 1, "goldand": {"_count": 1}}, "than": {"_count": 1, "McLaggens": {"_count": 1}}, "rosettes": {"_count": 1, "and": {"_count": 1}}, "magnificent": {"_count": 2, "long": {"_count": 1}, "robes": {"_count": 1}}, "jackets": {"_count": 1, "of": {"_count": 1}}, "glasses": {"_count": 2, "": {"_count": 1}, "anymore": {"_count": 1}}, "round": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 2, "his": {"_count": 1}, "your": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "nightclothes": {"_count": 1, "but": {"_count": 1}}, "traveling": {"_count": 1, "cloaks": {"_count": 1}}, "earmuffs": {"_count": 1, "and": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "sweeping": {"_count": 1, "robes": {"_count": 1}}}, "an": {"_count": 2486, "emeraldgreen": {"_count": 2, "cloak": {"_count": 1}, "shawl": {"_count": 1}}, "owl": {"_count": 44, "even": {"_count": 1}, "a": {"_count": 1}, "rapping": {"_count": 1}, "Pay": {"_count": 1}, "OR": {"_count": 1}, "": {"_count": 11}, "when": {"_count": 1}, "from": {"_count": 3}, "if": {"_count": 1}, "to": {"_count": 8}, "flutter": {"_count": 1}, "in": {"_count": 1}, "ahead": {"_count": 1}, "now": {"_count": 1}, "about": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "but": {"_count": 2}, "turning": {"_count": 1}, "Ive": {"_count": 1}, "arrived": {"_count": 1}, "tapping": {"_count": 1}}, "unusual": {"_count": 5, "name": {"_count": 1}, "show": {"_count": 1}, "magazine": {"_count": 1}, "amount": {"_count": 1}, "wizard": {"_count": 1}}, "uneasy": {"_count": 4, "sleep": {"_count": 3}, "glance": {"_count": 1}}, "emerald": {"_count": 2, "one": {"_count": 1}, "liquid": {"_count": 1}}, "James": {"_count": 4, "dead": {"_count": 1}, "Potter": {"_count": 1}, "Potters": {"_count": 1}, "": {"_count": 1}}, "poor": {"_count": 1, "little": {"_count": 1}}, "hour": {"_count": 124, "later": {"_count": 22}, "and": {"_count": 7}, "night": {"_count": 1}, "before": {"_count": 5}, "": {"_count": 14}, "already": {"_count": 1}, "deeper": {"_count": 1}, "to": {"_count": 3}, "when": {"_count": 2}, "of": {"_count": 5}, "adding": {"_count": 1}, "just": {"_count": 1}, "youd": {"_count": 1}, "their": {"_count": 1}, "he": {"_count": 4}, "in": {"_count": 3}, "carefully": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 1}, "or": {"_count": 8}, "early": {"_count": 1}, "shorter": {"_count": 1}, "ago": {"_count": 10}, "so": {"_count": 1}, "on": {"_count": 1}, "underwater": {"_count": 1}, "came": {"_count": 1}, "\u2018the": {"_count": 1}, "they": {"_count": 1}, "at": {"_count": 3}, "after": {"_count": 3}, "that": {"_count": 1}, "by": {"_count": 1}, "reviewing": {"_count": 1}, "Harry": {"_count": 1}, "leapt": {"_count": 1}, "passed": {"_count": 1}, "said": {"_count": 1}, "away": {"_count": 1}, "left": {"_count": 1}, "because": {"_count": 1}, "earlier": {"_count": 1}, "however": {"_count": 1}, "but": {"_count": 1}, "your": {"_count": 1}, "until": {"_count": 1}}, "eagle": {"_count": 5, "a": {"_count": 1}, "up": {"_count": 1}, "owl": {"_count": 1}, "": {"_count": 2}}, "answer": {"_count": 17, "": {"_count": 7}, "back": {"_count": 1}, "as": {"_count": 1}, "before": {"_count": 1}, "he": {"_count": 1}, "from": {"_count": 1}, "Listen": {"_count": 1}, "she": {"_count": 2}, "to": {"_count": 1}, "ready": {"_count": 1}}, "alien": {"_count": 1, "on": {"_count": 1}}, "undred": {"_count": 1, "of": {"_count": 1}}, "old": {"_count": 91, "rowboat": {"_count": 1}, "mans": {"_count": 2}, "pillowcase": {"_count": 2}, "turquoise": {"_count": 1}, "wizarding": {"_count": 1}, "warlock": {"_count": 1}, "car": {"_count": 1}, "and": {"_count": 2}, "vacuum": {"_count": 1}, "Medal": {"_count": 1}, "hat": {"_count": 1}, "wardrobe": {"_count": 2}, "chest": {"_count": 1}, "rabbit": {"_count": 1}, "trunk": {"_count": 1}, "pal": {"_count": 1}, "Muggle": {"_count": 2}, "man": {"_count": 9}, "newspaper": {"_count": 1}, "neighbor": {"_count": 1}, "friend": {"_count": 5}, "rubber": {"_count": 1}, "fraud": {"_count": 3}, "wizard": {"_count": 2}, "set": {"_count": 1}, "tramp": {"_count": 2}, "ivycovered": {"_count": 1}, "piece": {"_count": 1}, "tire": {"_count": 1}, "woman": {"_count": 1}, "bomber": {"_count": 1}, "red": {"_count": 1}, "toaster": {"_count": 1}, "fool": {"_count": 1}, "hag": {"_count": 1}, "bearded": {"_count": 1}, "lion": {"_count": 1}, "armchair": {"_count": 2}, "war": {"_count": 1}, "colleague": {"_count": 1}, "green": {"_count": 1}, "textbook": {"_count": 1}, "student": {"_count": 1}, "prejudice": {"_count": 1}, "family": {"_count": 2}, "Professor": {"_count": 1}, "gramophone": {"_count": 1}, "elephant": {"_count": 1}, "nightmare": {"_count": 2}, "badge": {"_count": 1}, "rucksack": {"_count": 1}, "pair": {"_count": 1}, "Snitch": {"_count": 3}, "edition": {"_count": 1}, "copy": {"_count": 1}, "ruin": {"_count": 1}, "cushion": {"_count": 1}, "fashioned": {"_count": 1}, "wand": {"_count": 1}, "nail": {"_count": 1}, "goblin": {"_count": 1}, "dog": {"_count": 1}, "discolored": {"_count": 1}, "crate": {"_count": 1}, "waxwork": {"_count": 1}}, "easy": {"_count": 6, "journey": {"_count": 1}, "person": {"_count": 1}, "save": {"_count": 2}, "experience": {"_count": 1}, "grace": {"_count": 1}}, "inside": {"_count": 9, "pocket": {"_count": 9}}, "enormous": {"_count": 59, "hand": {"_count": 3}, "black": {"_count": 2}, "old": {"_count": 1}, "bed": {"_count": 1}, "blackboard": {"_count": 1}, "gray": {"_count": 2}, "peacock": {"_count": 1}, "loopy": {"_count": 1}, "claw": {"_count": 1}, "purple": {"_count": 1}, "suitcase": {"_count": 1}, "slab": {"_count": 2}, "teapot": {"_count": 1}, "umbrella": {"_count": 1}, "shaggy": {"_count": 1}, "crate": {"_count": 2}, "backside": {"_count": 1}, "book": {"_count": 1}, "Gryffindor": {"_count": 1}, "paleeyed": {"_count": 1}, "leap": {"_count": 1}, "fruitcake": {"_count": 1}, "high": {"_count": 1}, "silver": {"_count": 1}, "bubble": {"_count": 1}, "sigh": {"_count": 1}, "hiccup": {"_count": 1}, "room": {"_count": 1}, "relief": {"_count": 1}, "effort": {"_count": 3}, "wink": {"_count": 1}, "swallow": {"_count": 1}, "tapestry": {"_count": 1}, "box": {"_count": 2}, "hourglass": {"_count": 1}, "glass": {"_count": 1}, "furry": {"_count": 1}, "bear": {"_count": 1}, "mince": {"_count": 1}, "grunt": {"_count": 1}, "stuffed": {"_count": 1}, "blond": {"_count": 1}, "figure": {"_count": 1}, "motorbike": {"_count": 1}, "bunch": {"_count": 1}, "fist": {"_count": 1}, "obstacle": {"_count": 1}, "rumble": {"_count": 1}, "person": {"_count": 1}, "arm": {"_count": 1}}, "a": {"_count": 5, "thumpin": {"_count": 1}, "toofbrush": {"_count": 1}, "wizard": {"_count": 1}, "bit": {"_count": 1}, "necklace": {"_count": 1}}, "dad": {"_count": 6, "like": {"_count": 1}, "were": {"_count": 2}, "an": {"_count": 2}, "Harry": {"_count": 1}}, "outrage": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 4, "killed": {"_count": 1}, "decided": {"_count": 1}, "told": {"_count": 1}, "wasn": {"_count": 1}}, "wizard": {"_count": 1, "as": {"_count": 1}}, "girl": {"_count": 1, "at": {"_count": 1}}, "an": {"_count": 5, "Hagrid": {"_count": 1}, "now": {"_count": 2}, "smell": {"_count": 1}, "taught": {"_count": 1}}, "Hagrid": {"_count": 1, "suddenly": {"_count": 1}}, "nicer": {"_count": 1, "people": {"_count": 1}}, "this": {"_count": 3, "is": {"_count": 1}, "idiot": {"_count": 1}, "time": {"_count": 1}}, "yer": {"_count": 1, "house": {"_count": 1}}, "thats": {"_count": 4, "why": {"_count": 1}, "always": {"_count": 1}, "even": {"_count": 1}, "what": {"_count": 1}}, "hed": {"_count": 1, "killed": {"_count": 1}}, "wizards": {"_count": 2, "of": {"_count": 1}, "up": {"_count": 1}}, "you": {"_count": 5, "was": {"_count": 2}, "lived": {"_count": 1}, "forget": {"_count": 1}, "two": {"_count": 1}}, "umbrella": {"_count": 1, "by": {"_count": 1}}, "more": {"_count": 1, "powerful": {"_count": 1}}, "hell": {"_count": 2, "be": {"_count": 1}, "go": {"_count": 1}}, "get": {"_count": 5, "yer": {"_count": 1}, "a": {"_count": 1}, "em": {"_count": 2}, "ready": {"_count": 1}}, "stuff": {"_count": 5, "one": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "if": {"_count": 1}}, "everything": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 3, "": {"_count": 1}, "was": {"_count": 2}}, "buy": {"_count": 1, "all": {"_count": 1}}, "I": {"_count": 19, "wouldn": {"_count": 1}, "still": {"_count": 1}, "don": {"_count": 3}, "told": {"_count": 3}, "said": {"_count": 1}, "need": {"_count": 1}, "kep": {"_count": 1}, "believe": {"_count": 1}, "can": {"_count": 1}, "had": {"_count": 1}, "went": {"_count": 1}, "spect": {"_count": 1}, "missed": {"_count": 1}, "did": {"_count": 1}, "overheard": {"_count": 1}}, "rob": {"_count": 3, "it": {"_count": 3}}, "down": {"_count": 1, "the": {"_count": 1}}, "ordinary": {"_count": 13, "way": {"_count": 1}, "street": {"_count": 1}, "hairpin": {"_count": 1}, "Muggle": {"_count": 1}, "sink": {"_count": 1}, "bird": {"_count": 1}, "criminal": {"_count": 1}, "dream": {"_count": 2}, "class": {"_count": 1}, "door": {"_count": 1}, "day": {"_count": 1}, "underground": {"_count": 1}}, "honor": {"_count": 8, "": {"_count": 1}, "it": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 2}, "for": {"_count": 1}}, "archway": {"_count": 5, "large": {"_count": 1}, "onto": {"_count": 3}, "theres": {"_count": 1}}, "Apothecary": {"_count": 1, "was": {"_count": 1}}, "ounce": {"_count": 2, "theyre": {"_count": 1}, "of": {"_count": 1}}, "underground": {"_count": 4, "lake": {"_count": 1}, "ravine": {"_count": 1}, "vault": {"_count": 1}, "room": {"_count": 1}}, "\u2018m": {"_count": 1, "in": {"_count": 1}}, "excuse": {"_count": 15, "to": {"_count": 12}, "for": {"_count": 2}, "did": {"_count": 1}}, "years": {"_count": 1, "ago": {"_count": 1}}, "everythin": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "envelope": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "improvement": {"_count": 4, "in": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "even": {"_count": 12, "nastier": {"_count": 1}, "footing": {"_count": 1}, "worse": {"_count": 1}, "more": {"_count": 1}, "louder": {"_count": 1}, "murkier": {"_count": 1}, "larger": {"_count": 1}, "higher": {"_count": 2}, "heat": {"_count": 1}, "deeper": {"_count": 1}, "smaller": {"_count": 1}}, "empty": {"_count": 41, "seat": {"_count": 5}, "compartment": {"_count": 4}, "painting": {"_count": 1}, "room": {"_count": 1}, "chair": {"_count": 4}, "classroom": {"_count": 4}, "shell": {"_count": 1}, "chamber": {"_count": 1}, "drinks": {"_count": 1}, "space": {"_count": 1}, "armchair": {"_count": 1}, "helmet": {"_count": 1}, "rectangular": {"_count": 1}, "corridor": {"_count": 1}, "goblet": {"_count": 1}, "ink": {"_count": 1}, "cauldron": {"_count": 1}, "Droobles": {"_count": 1}, "sherry": {"_count": 1}, "inn": {"_count": 1}, "threat": {"_count": 1}, "stomach": {"_count": 1}, "vase": {"_count": 1}, "passage": {"_count": 2}, "theater": {"_count": 1}, "office": {"_count": 1}, "one": {"_count": 1}}, "air": {"_count": 15, "of": {"_count": 13}, "as": {"_count": 1}, "that": {"_count": 1}}, "accountant": {"_count": 1, "but": {"_count": 1}}, "unpleasant": {"_count": 20, "lot": {"_count": 1}, "jolt": {"_count": 1}, "bump": {"_count": 1}, "smile": {"_count": 3}, "mission": {"_count": 1}, "scene": {"_count": 1}, "crusty": {"_count": 1}, "feeling": {"_count": 1}, "heat": {"_count": 1}, "constricted": {"_count": 1}, "mixture": {"_count": 1}, "lurch": {"_count": 1}, "simper": {"_count": 1}, "dose": {"_count": 1}, "hollow": {"_count": 1}, "smell": {"_count": 2}, "agitating": {"_count": 1}}, "upstairs": {"_count": 3, "window": {"_count": 1}, "toilet": {"_count": 1}, "corridor": {"_count": 1}}, "awful": {"_count": 17, "lot": {"_count": 7}, "loss": {"_count": 1}, "smile": {"_count": 1}, "risk": {"_count": 1}, "woman": {"_count": 1}, "paper": {"_count": 1}, "waste": {"_count": 1}, "frustration": {"_count": 1}, "shock": {"_count": 1}, "thought": {"_count": 1}, "lurch": {"_count": 1}}, "evil": {"_count": 8, "cackle": {"_count": 1}, "look": {"_count": 1}, "wind": {"_count": 1}, "grin": {"_count": 1}, "twisted": {"_count": 1}, "thing": {"_count": 1}, "duet": {"_count": 1}, "object": {"_count": 1}}, "excited": {"_count": 3, "squeak": {"_count": 1}, "woman": {"_count": 1}, "voice": {"_count": 1}}, "African": {"_count": 1, "prince": {"_count": 1}}, "important": {"_count": 10, "day": {"_count": 2}, "member": {"_count": 1}, "lesson": {"_count": 1}, "quality": {"_count": 1}, "Ministry": {"_count": 1}, "examination": {"_count": 1}, "weapon": {"_count": 1}, "historical": {"_count": 1}, "source": {"_count": 1}}, "infusion": {"_count": 3, "of": {"_count": 3}}, "extraordinary": {"_count": 7, "number": {"_count": 2}, "moment": {"_count": 1}, "apparition": {"_count": 1}, "amount": {"_count": 1}, "creature": {"_count": 1}, "tonic": {"_count": 1}}, "oak": {"_count": 3, "he": {"_count": 1}, "trunk": {"_count": 1}, "": {"_count": 1}}, "admiring": {"_count": 1, "whoop": {"_count": 1}}, "excellent": {"_count": 21, "Quidditch": {"_count": 1}, "adventure": {"_count": 1}, "Chaser": {"_count": 1}, "move": {"_count": 1}, "idea": {"_count": 2}, "time": {"_count": 1}, "lesson": {"_count": 1}, "Seeker": {"_count": 1}, "breakfast": {"_count": 1}, "one": {"_count": 1}, "memory": {"_count": 1}, "opportunity": {"_count": 1}, "dancer": {"_count": 1}, "reason": {"_count": 1}, "Auror": {"_count": 1}, "trial": {"_count": 1}, "copy": {"_count": 1}, "view": {"_count": 1}, "refuge": {"_count": 1}, "student": {"_count": 1}}, "angry": {"_count": 19, "goose": {"_count": 1}, "voice": {"_count": 2}, "bull": {"_count": 1}, "screech": {"_count": 1}, "outburst": {"_count": 3}, "look": {"_count": 2}, "outcry": {"_count": 1}, "cat": {"_count": 1}, "hiss": {"_count": 1}, "weal": {"_count": 1}, "bowtruckle": {"_count": 1}, "movement": {"_count": 1}, "drunken": {"_count": 1}, "retort": {"_count": 1}, "little": {"_count": 1}}, "added": {"_count": 2, "bonus": {"_count": 1}, "precaution": {"_count": 1}}, "extra": {"_count": 18, "hundred": {"_count": 2}, "spurt": {"_count": 1}, "hour": {"_count": 1}, "hug": {"_count": 1}, "one": {"_count": 1}, "arm": {"_count": 1}, "large": {"_count": 2}, "safety": {"_count": 1}, "precaution": {"_count": 2}, "curl": {"_count": 1}, "weapon": {"_count": 1}, "squiggly": {"_count": 1}, "house": {"_count": 1}, "measure": {"_count": 1}, "ten": {"_count": 1}}, "uproar": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "under": {"_count": 1}}, "idea": {"_count": 19, "that": {"_count": 2}, "Harry": {"_count": 1}, "of": {"_count": 2}, "I": {"_count": 1}, "": {"_count": 7}, "Cedric": {"_count": 1}, "Hermione": {"_count": 1}, "thought": {"_count": 1}, "said": {"_count": 1}, "struck": {"_count": 1}, "he": {"_count": 1}}, "hours": {"_count": 4, "time": {"_count": 2}, "quiet": {"_count": 1}, "droning": {"_count": 1}}, "kill": {"_count": 1, "a": {"_count": 1}}, "Nicolas": {"_count": 1, "Flamel": {"_count": 1}}, "see": {"_count": 7, "the": {"_count": 1}, "me": {"_count": 2}, "what": {"_count": 1}, "if": {"_count": 2}, "these": {"_count": 1}}, "Invisibility": {"_count": 15, "Cloak": {"_count": 13}, "Booster": {"_count": 1}, "Marquee": {"_count": 1}}, "effort": {"_count": 15, "if": {"_count": 1}, "to": {"_count": 9}, "with": {"_count": 1}, "he": {"_count": 3}, "it": {"_count": 1}}, "interestinglooking": {"_count": 1, "book": {"_count": 1}}, "unused": {"_count": 2, "classroom": {"_count": 2}}, "upturned": {"_count": 5, "wastepaper": {"_count": 1}, "bucket": {"_count": 2}, "nose": {"_count": 2}}, "ornate": {"_count": 7, "gold": {"_count": 1}, "picture": {"_count": 2}, "crystal": {"_count": 1}, "golden": {"_count": 1}, "serpentine": {"_count": 1}, "marble": {"_count": 1}}, "inscription": {"_count": 1, "carved": {"_count": 1}}, "end": {"_count": 6, "to": {"_count": 3}, "irritated": {"_count": 1}, "writes": {"_count": 1}, "and": {"_count": 1}}, "age": {"_count": 5, "she": {"_count": 1}, "when": {"_count": 1}, "restriction": {"_count": 1}, "limiti": {"_count": 1}, "to": {"_count": 1}}, "early": {"_count": 9, "capture": {"_count": 1}, "birthday": {"_count": 1}, "lead": {"_count": 1}, "Portkey": {"_count": 1}, "end": {"_count": 1}, "death": {"_count": 1}, "night": {"_count": 1}, "breakfast": {"_count": 1}, "lunch": {"_count": 1}}, "encouraging": {"_count": 1, "sort": {"_count": 1}}, "all": {"_count": 13, "": {"_count": 8}, "them": {"_count": 1}, "said": {"_count": 2}, "an": {"_count": 1}, "after": {"_count": 1}}, "Dumbledore": {"_count": 4, "himself": {"_count": 1}, "said": {"_count": 1}, "catch": {"_count": 1}, "believes": {"_count": 1}}, "got": {"_count": 1, "into": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "illegal": {"_count": 9, "dragon": {"_count": 2}, "car": {"_count": 1}, "curse": {"_count": 1}, "defense": {"_count": 1}, "secret": {"_count": 1}, "student": {"_count": 1}, "society": {"_count": 1}, "hex": {"_count": 1}}, "some": {"_count": 3, "brandy": {"_count": 1}, "o": {"_count": 1}, "cant": {"_count": 1}}, "unexpected": {"_count": 5, "test": {"_count": 1}, "way": {"_count": 1}, "visitor": {"_count": 1}, "urge": {"_count": 1}, "gust": {"_count": 1}}, "now": {"_count": 5, "yehve": {"_count": 1}, "yeh": {"_count": 1}, "look": {"_count": 1}, "theyre": {"_count": 1}, "hell": {"_count": 1}}, "pack": {"_count": 1, "": {"_count": 1}}, "find": {"_count": 3, "the": {"_count": 1}, "yeh": {"_count": 1}, "out": {"_count": 1}}, "follow": {"_count": 1, "the": {"_count": 1}}, "Hermionell": {"_count": 1, "go": {"_count": 1}}, "Draco": {"_count": 1, "Neville": {"_count": 1}}, "Fangll": {"_count": 1, "go": {"_count": 1}}, "practice": {"_count": 1, "now": {"_count": 1}}, "if": {"_count": 2, "anyone": {"_count": 1}, "you": {"_count": 1}}, "well": {"_count": 3, "all": {"_count": 1}, "jus": {"_count": 1}, "meet": {"_count": 1}}, "then": {"_count": 5, "well": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 2}, "Professor": {"_count": 1}}, "arrow": {"_count": 3, "and": {"_count": 1}, "sticking": {"_count": 1}, "out": {"_count": 1}}, "it": {"_count": 3, "wasn": {"_count": 2}, "was": {"_count": 1}}, "Hermione": {"_count": 3, "Granger": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "weve": {"_count": 1, "gotta": {"_count": 1}}, "ancient": {"_count": 15, "oak": {"_count": 1}, "creature": {"_count": 1}, "hat": {"_count": 1}, "Shooting": {"_count": 1}, "magic": {"_count": 2}, "dresser": {"_count": 1}, "set": {"_count": 1}, "wizards": {"_count": 1}, "wooden": {"_count": 1}, "people": {"_count": 1}, "suitcase": {"_count": 1}, "black": {"_count": 1}, "sneaker": {"_count": 1}, "discolored": {"_count": 1}}, "inch": {"_count": 35, "from": {"_count": 7}, "of": {"_count": 5}, "if": {"_count": 1}, "and": {"_count": 1}, "nearer": {"_count": 1}, "he": {"_count": 1}, "difference": {"_count": 1}, "or": {"_count": 7}, "Wormtail": {"_count": 1}, "above": {"_count": 1}, "long": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 2}, "across": {"_count": 1}, "lower": {"_count": 1}, "into": {"_count": 1}, "He": {"_count": 1}}, "iron": {"_count": 3, "fist": {"_count": 1}, "flagon": {"_count": 1}, "bedstead": {"_count": 1}}, "AntiCheating": {"_count": 1, "spell": {"_count": 1}}, "egg": {"_count": 7, "in": {"_count": 1}, "on": {"_count": 2}, "": {"_count": 2}, "there": {"_count": 1}, "yeh": {"_count": 1}}, "armchair": {"_count": 23, "outside": {"_count": 1}, "clutching": {"_count": 1}, "in": {"_count": 3}, "and": {"_count": 4}, "his": {"_count": 3}, "near": {"_count": 2}, "then": {"_count": 1}, "by": {"_count": 2}, "gave": {"_count": 1}, "beside": {"_count": 2}, "": {"_count": 2}, "there": {"_count": 1}}, "we": {"_count": 12, "could": {"_count": 1}, "made": {"_count": 1}, "knew": {"_count": 2}, "started": {"_count": 1}, "didn": {"_count": 1}, "got": {"_count": 1}, "bowed": {"_count": 1}, "talked": {"_count": 1}, "had": {"_count": 1}, "agreed": {"_count": 1}, "wanted": {"_count": 1}}, "urgent": {"_count": 5, "owl": {"_count": 1}, "whisper": {"_count": 3}, "message": {"_count": 1}}, "odd": {"_count": 49, "twisted": {"_count": 1}, "red": {"_count": 1}, "expression": {"_count": 4}, "gulping": {"_count": 1}, "ringing": {"_count": 1}, "rattling": {"_count": 1}, "clunking": {"_count": 1}, "sort": {"_count": 2}, "fringe": {"_count": 1}, "golden": {"_count": 1}, "moment": {"_count": 1}, "laugh": {"_count": 1}, "shuddering": {"_count": 1}, "feeling": {"_count": 2}, "assortment": {"_count": 1}, "creeping": {"_count": 1}, "sense": {"_count": 1}, "unsettled": {"_count": 1}, "sick": {"_count": 1}, "yelp": {"_count": 1}, "angle": {"_count": 1}, "shrieking": {"_count": 1}, "blue": {"_count": 1}, "onthespot": {"_count": 1}, "mechanical": {"_count": 1}, "question": {"_count": 1}, "squelching": {"_count": 1}, "way": {"_count": 1}, "comment": {"_count": 1}, "combination": {"_count": 1}, "decision": {"_count": 1}, "rolling": {"_count": 1}, "coincidence": {"_count": 1}, "mixture": {"_count": 1}, "lopsided": {"_count": 1}, "case": {"_count": 1}, "movement": {"_count": 1}, "stiff": {"_count": 1}, "tremulous": {"_count": 1}, "empty": {"_count": 1}, "object": {"_count": 1}, "smocklike": {"_count": 1}, "clicking": {"_count": 1}, "one": {"_count": 1}}, "eye": {"_count": 39, "on": {"_count": 19}, "they": {"_count": 1}, "and": {"_count": 1}, "over": {"_count": 1}, "out": {"_count": 7}, "Dumbledore": {"_count": 1}, "upon": {"_count": 1}, "open": {"_count": 1}, "down": {"_count": 1}, "for": {"_count": 1}, "now": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 2}, "just": {"_count": 1}}, "idiot": {"_count": 20, "Dont": {"_count": 1}, "": {"_count": 8}, "said": {"_count": 1}, "like": {"_count": 1}, "sitting": {"_count": 1}, "One": {"_count": 1}, "to": {"_count": 2}, "he": {"_count": 1}, "thought": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}, "I": {"_count": 1}}, "astonishing": {"_count": 1, "sight": {"_count": 1}}, "overgrown": {"_count": 3, "bat": {"_count": 2}, "bird": {"_count": 1}}, "accident": {"_count": 17, "he": {"_count": 3}, "down": {"_count": 1}, "": {"_count": 6}, "if": {"_count": 1}, "or": {"_count": 2}, "mustnt": {"_count": 1}, "Im": {"_count": 1}, "given": {"_count": 1}, "said": {"_count": 1}}, "made": {"_count": 2, "ter": {"_count": 1}, "em": {"_count": 1}}, "instant": {"_count": 21, "the": {"_count": 2}, "he": {"_count": 2}, "uproar": {"_count": 1}, "Ron": {"_count": 1}, "celebrity": {"_count": 1}, "": {"_count": 3}, "turned": {"_count": 1}, "to": {"_count": 2}, "as": {"_count": 1}, "but": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 2}, "bestseller": {"_count": 1}, "Harry": {"_count": 1}, "could": {"_count": 1}}, "argument": {"_count": 8, "had": {"_count": 1}, "was": {"_count": 1}, "with": {"_count": 2}, "about": {"_count": 1}, "against": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "invisible": {"_count": 24, "woman": {"_count": 2}, "stranger": {"_count": 1}, "hand": {"_count": 3}, "horse": {"_count": 1}, "giants": {"_count": 1}, "shotputter": {"_count": 1}, "pillow": {"_count": 1}, "walkietalkie": {"_count": 1}, "beam": {"_count": 1}, "line": {"_count": 1}, "wall": {"_count": 1}, "hook": {"_count": 2}, "sword": {"_count": 2}, "rope": {"_count": 2}, "barrier": {"_count": 2}, "shield": {"_count": 1}, "and": {"_count": 1}}, "essay": {"_count": 3, "about": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "equal": {"_count": 4, "Harry": {"_count": 1}, "a": {"_count": 1}, "competition": {"_count": 1}, "to": {"_count": 1}}, "expression": {"_count": 31, "of": {"_count": 27}, "said": {"_count": 1}, "remarkably": {"_count": 1}, "appropriate": {"_count": 2}}, "alltime": {"_count": 2, "low": {"_count": 2}}, "official": {"_count": 6, "warning": {"_count": 5}, "decision": {"_count": 1}}, "antiques": {"_count": 1, "shop": {"_count": 1}}, "undertone": {"_count": 19, "to": {"_count": 3}, "as": {"_count": 3}, "and": {"_count": 1}, "uncomfortably": {"_count": 1}, "pick": {"_count": 1}, "": {"_count": 4}, "noticing": {"_count": 1}, "after": {"_count": 1}, "Master": {"_count": 1}, "so": {"_count": 1}, "while": {"_count": 1}, "still": {"_count": 1}}, "uneven": {"_count": 1, "staircase": {"_count": 1}}, "assortment": {"_count": 7, "of": {"_count": 7}}, "apothecary": {"_count": 1, "": {"_count": 1}}, "arm": {"_count": 23, "around": {"_count": 8}, "Harry": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}, "to": {"_count": 3}, "through": {"_count": 1}, "and": {"_count": 5}, "in": {"_count": 1}, "Hermione": {"_count": 1}}, "Encyclopedia": {"_count": 1, "of": {"_count": 1}}, "earsplitting": {"_count": 5, "bang": {"_count": 1}, "racket": {"_count": 1}, "scream": {"_count": 1}, "groundtrembling": {"_count": 1}, "noise": {"_count": 1}}, "equally": {"_count": 3, "heavy": {"_count": 1}, "strong": {"_count": 2}}, "oil": {"_count": 1, "painting": {"_count": 1}}, "entrance": {"_count": 3, "": {"_count": 1}, "far": {"_count": 1}, "did": {"_count": 1}}, "inquiry": {"_count": 4, "at": {"_count": 1}, "If": {"_count": 1}, "and": {"_count": 1}, "actually": {"_count": 1}}, "internationally": {"_count": 1, "famous": {"_count": 1}}, "essential": {"_count": 2, "part": {"_count": 1}, "task": {"_count": 1}}, "extremely": {"_count": 16, "talkative": {"_count": 1}, "shabby": {"_count": 1}, "crooked": {"_count": 1}, "pompous": {"_count": 1}, "handsome": {"_count": 1}, "nasty": {"_count": 1}, "old": {"_count": 2}, "offended": {"_count": 1}, "ungainly": {"_count": 1}, "long": {"_count": 1}, "realistic": {"_count": 1}, "powerful": {"_count": 1}, "good": {"_count": 1}, "able": {"_count": 1}, "murky": {"_count": 1}}, "almighty": {"_count": 7, "belch": {"_count": 1}, "bang": {"_count": 1}, "crash": {"_count": 2}, "uproar": {"_count": 1}, "lurch": {"_count": 1}, "wrench": {"_count": 1}}, "elegant": {"_count": 2, "hand": {"_count": 1}, "knot": {"_count": 1}}, "entire": {"_count": 12, "drawer": {"_count": 1}, "cauldronful": {"_count": 1}, "side": {"_count": 1}, "ham": {"_count": 1}, "conversation": {"_count": 1}, "roll": {"_count": 1}, "ink": {"_count": 1}, "fried": {"_count": 1}, "party": {"_count": 1}, "chapter": {"_count": 1}, "bottle": {"_count": 1}, "country": {"_count": 1}}, "example": {"_count": 3, "": {"_count": 2}, "Mother": {"_count": 1}}, "allnew": {"_count": 1, "failsafe": {"_count": 1}}, "icy": {"_count": 6, "shower": {"_count": 1}, "blue": {"_count": 1}, "voice": {"_count": 1}, "surge": {"_count": 1}, "sneering": {"_count": 1}, "knife": {"_count": 1}}, "incredible": {"_count": 4, "sight": {"_count": 1}, "amount": {"_count": 1}, "treasure": {"_count": 1}, "magical": {"_count": 1}}, "orchestra": {"_count": 1, "on": {"_count": 1}}, "explanation": {"_count": 4, "about": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}}, "effect": {"_count": 2, "on": {"_count": 2}}, "aggravated": {"_count": 1, "tone": {"_count": 1}}, "indistinct": {"_count": 3, "noise": {"_count": 1}, "silvery": {"_count": 1}, "Patronus": {"_count": 1}}, "underfed": {"_count": 1, "vulture": {"_count": 1}}, "agonizing": {"_count": 2, "moment": {"_count": 1}, "floorshaking": {"_count": 1}}, "ashenfaced": {"_count": 1, "Seamus": {"_count": 1}}, "ominous": {"_count": 10, "muttering": {"_count": 1}, "feeling": {"_count": 3}, "silence": {"_count": 1}, "noise": {"_count": 1}, "sign": {"_count": 2}, "cracking": {"_count": 1}, "jingling": {"_count": 1}}, "absorbing": {"_count": 1, "conversation": {"_count": 1}}, "bothered": {"_count": 1, "Harry": {"_count": 1}}, "escalator": {"_count": 2, "": {"_count": 2}}, "affectionate": {"_count": 3, "sort": {"_count": 1}, "nip": {"_count": 1}, "way": {"_count": 1}}, "elaborately": {"_count": 2, "carved": {"_count": 1}, "worked": {"_count": 1}}, "imaginary": {"_count": 1, "camera": {"_count": 1}}, "award": {"_count": 3, "for": {"_count": 3}}, "interested": {"_count": 1, "Hermione": {"_count": 1}}, "open": {"_count": 8, "door": {"_count": 2}, "Arithmancy": {"_count": 1}, "doorway": {"_count": 1}, "request": {"_count": 1}, "secret": {"_count": 1}, "wound": {"_count": 1}, "till": {"_count": 1}}, "unfortunate": {"_count": 2, "liking": {"_count": 1}, "habit": {"_count": 1}}, "outdoor": {"_count": 1, "type": {"_count": 1}}, "anxious": {"_count": 6, "expression": {"_count": 1}, "look": {"_count": 1}, "hand": {"_count": 1}, "twisted": {"_count": 1}, "glance": {"_count": 1}, "voice": {"_count": 1}}, "elbow": {"_count": 2, "in": {"_count": 2}}, "audible": {"_count": 4, "gasp": {"_count": 2}, "sigh": {"_count": 1}, "whisper": {"_count": 1}}, "Order": {"_count": 3, "of": {"_count": 3}}, "blackmail": {"_count": 1, "before": {"_count": 1}}, "the": {"_count": 11, "Muggleborns": {"_count": 1}, "executioner": {"_count": 1}, "laziest": {"_count": 1}, "weight": {"_count": 1}, "followin": {"_count": 1}, "women": {"_count": 1}, "best": {"_count": 1}, "trouble": {"_count": 2}, "other": {"_count": 1}, "headmistress": {"_count": 1}}, "attack": {"_count": 5, "a": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "Dropping": {"_count": 1}, "said": {"_count": 1}}, "armful": {"_count": 6, "of": {"_count": 6}}, "unnaturally": {"_count": 5, "straight": {"_count": 1}, "high": {"_count": 1}, "quiet": {"_count": 1}, "highpitched": {"_count": 1}, "somber": {"_count": 1}}, "exam": {"_count": 4, "": {"_count": 3}, "I": {"_count": 1}}, "explosion": {"_count": 7, "of": {"_count": 5}, "something": {"_count": 1}, "from": {"_count": 1}}, "ugly": {"_count": 11, "sort": {"_count": 1}, "puce": {"_count": 1}, "git": {"_count": 1}, "patchy": {"_count": 1}, "dragonshaped": {"_count": 1}, "gold": {"_count": 1}, "grimace": {"_count": 1}, "old": {"_count": 2}, "blotchy": {"_count": 1}, "ring": {"_count": 1}}, "endless": {"_count": 1, "slimy": {"_count": 1}}, "interesting": {"_count": 6, "question": {"_count": 1}, "first": {"_count": 1}, "year": {"_count": 1}, "class": {"_count": 1}, "insight": {"_count": 1}, "curio": {"_count": 1}}, "almost": {"_count": 17, "hungry": {"_count": 1}, "deserted": {"_count": 1}, "silent": {"_count": 1}, "skulllike": {"_count": 1}, "human": {"_count": 1}, "awed": {"_count": 2}, "dreamlike": {"_count": 1}, "awestruck": {"_count": 1}, "Aunt": {"_count": 1}, "pitying": {"_count": 1}, "normal": {"_count": 1}, "alchemical": {"_count": 1}, "inaudible": {"_count": 1}, "completed": {"_count": 1}, "lazy": {"_count": 1}, "unendurable": {"_count": 1}}, "elevenyearold": {"_count": 2, "girl": {"_count": 2}}, "annoyingly": {"_count": 2, "close": {"_count": 1}, "buoyant": {"_count": 1}}, "amused": {"_count": 2, "eye": {"_count": 1}, "expression": {"_count": 1}}, "advertisement": {"_count": 4, "for": {"_count": 3}, "in": {"_count": 1}}, "especially": {"_count": 1, "bad": {"_count": 1}}, "entirely": {"_count": 3, "wizarding": {"_count": 1}, "mirthless": {"_count": 1}, "unconvincing": {"_count": 1}}, "escaped": {"_count": 3, "convict": {"_count": 1}, "rhinoceros": {"_count": 1}, "firework": {"_count": 1}}, "orphanage": {"_count": 4, "if": {"_count": 1}, "than": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "unsatisfactory": {"_count": 1, "person": {"_count": 1}}, "underage": {"_count": 2, "wizard": {"_count": 2}}, "evening": {"_count": 4, "with": {"_count": 1}, "off": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "insolent": {"_count": 2, "ungrateful": {"_count": 1}, "stare": {"_count": 1}}, "outcast": {"_count": 3, "": {"_count": 2}, "nor": {"_count": 1}}, "ot": {"_count": 1, "water": {"_count": 1}}, "elderly": {"_count": 6, "wizard": {"_count": 1}, "witch": {"_count": 5}}, "irritable": {"_count": 3, "Fudge": {"_count": 1}, "sort": {"_count": 1}, "twitch": {"_count": 1}}, "Black": {"_count": 1, "took": {"_count": 1}}, "so": {"_count": 2, "did": {"_count": 1}, "I": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "apron": {"_count": 3, "over": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "uncle": {"_count": 2, "surveying": {"_count": 1}, "aunt": {"_count": 1}}, "order": {"_count": 10, "for": {"_count": 2}, "form": {"_count": 1}, "get": {"_count": 1}, "from": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "acceleration": {"_count": 1, "of": {"_count": 1}}, "unbreakable": {"_count": 1, "Braking": {"_count": 1}}, "aunt": {"_count": 2, "": {"_count": 2}}, "unmoving": {"_count": 1, "line": {"_count": 1}}, "adult": {"_count": 5, "there": {"_count": 1}, "wizard": {"_count": 1}, "either": {"_count": 1}, "witch": {"_count": 1}, "": {"_count": 1}}, "offhand": {"_count": 4, "sort": {"_count": 1}, "voice": {"_count": 3}}, "automatic": {"_count": 1, "step": {"_count": 1}}, "impression": {"_count": 5, "of": {"_count": 3}, "yet": {"_count": 1}, "reinforced": {"_count": 1}}, "unfamiliar": {"_count": 4, "landing": {"_count": 1}, "brown": {"_count": 1}, "lamplit": {"_count": 1}, "tavern": {"_count": 1}}, "alarmed": {"_count": 2, "group": {"_count": 1}, "threatening": {"_count": 1}}, "oldfashioned": {"_count": 4, "tea": {"_count": 1}, "threeroom": {"_count": 1}, "rule": {"_count": 1}, "lamp": {"_count": 1}}, "acorn": {"_count": 1, "": {"_count": 1}}, "animal": {"_count": 4, "": {"_count": 2}, "amid": {"_count": 1}, "sped": {"_count": 1}}, "omen": {"_count": 3, "the": {"_count": 1}, "its": {"_count": 1}, "of": {"_count": 1}}, "Arithmancy": {"_count": 1, "class": {"_count": 1}}, "yeh": {"_count": 4, "wait": {"_count": 1}, "know": {"_count": 1}, "should": {"_count": 1}, "can": {"_count": 1}}, "intake": {"_count": 1, "of": {"_count": 1}}, "unmistakable": {"_count": 3, "bow": {"_count": 1}, "bellowing": {"_count": 1}, "voice": {"_count": 1}}, "mind": {"_count": 1, "yeh": {"_count": 1}}, "don": {"_count": 3, "let": {"_count": 1}, "forget": {"_count": 1}, "want": {"_count": 1}}, "unseen": {"_count": 1, "mouth": {"_count": 1}}, "unearthly": {"_count": 2, "sound": {"_count": 1}, "and": {"_count": 1}}, "afterthought": {"_count": 2, "": {"_count": 2}}, "allforthebest": {"_count": 1, "expression": {"_count": 1}}, "opportunity": {"_count": 6, "to": {"_count": 3}, "for": {"_count": 1}, "probably": {"_count": 1}, "with": {"_count": 1}}, "ogre": {"_count": 1, "honestly": {"_count": 1}}, "entertainment": {"_count": 1, "provided": {"_count": 1}}, "oily": {"_count": 1, "voice": {"_count": 1}}, "insufferable": {"_count": 1, "knowitall": {"_count": 1}}, "advantage": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 1}, "there": {"_count": 1}}, "expert": {"_count": 2, "at": {"_count": 1}, "potioneer": {"_count": 1}}, "uncanny": {"_count": 2, "impersonation": {"_count": 1}, "knack": {"_count": 1}}, "Jamess": {"_count": 2, "house": {"_count": 1}, "SecretKeeper": {"_count": 1}}, "his": {"_count": 3, "parents": {"_count": 1}, "wife": {"_count": 1}, "head": {"_count": 1}}, "Sirius": {"_count": 2, "Black": {"_count": 2}}, "come": {"_count": 1, "ter": {"_count": 1}}, "shakin": {"_count": 1, "he": {"_count": 1}}, "uncles": {"_count": 1, "": {"_count": 1}}, "iced": {"_count": 1, "cake": {"_count": 1}}, "officiallooking": {"_count": 2, "letter": {"_count": 1}, "piece": {"_count": 1}}, "no": {"_count": 3, "one": {"_count": 2}, "onell": {"_count": 1}}, "whos": {"_count": 1, "not": {"_count": 1}}, "Im": {"_count": 3, "scared": {"_count": 1}, "not": {"_count": 1}, "on": {"_count": 1}}, "international": {"_count": 4, "standard": {"_count": 2}, "Quidditch": {"_count": 2}}, "unusually": {"_count": 10, "good": {"_count": 3}, "short": {"_count": 1}, "sharp": {"_count": 1}, "shrewd": {"_count": 1}, "thick": {"_count": 1}, "large": {"_count": 1}, "talented": {"_count": 1}, "highpitched": {"_count": 1}}, "incantation": {"_count": 6, "which": {"_count": 1}, "Oh": {"_count": 1}, "did": {"_count": 1}, "and": {"_count": 1}, "Sectumsempral": {"_count": 1}, "that": {"_count": 1}}, "appearance": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "eyebrow": {"_count": 5, "": {"_count": 2}, "skeptically": {"_count": 1}, "behind": {"_count": 1}, "Like": {"_count": 1}}, "mell": {"_count": 1, "be": {"_count": 1}}, "night": {"_count": 1, "but": {"_count": 1}}, "appeal": {"_count": 1, "though": {"_count": 1}}, "said": {"_count": 2, "his": {"_count": 1}, "A": {"_count": 1}}, "amazing": {"_count": 2, "prediction": {"_count": 1}, "defensive": {"_count": 1}}, "unprovoked": {"_count": 2, "attack": {"_count": 2}}, "unbiased": {"_count": 1, "way": {"_count": 1}}, "eruption": {"_count": 2, "of": {"_count": 2}}, "executioner": {"_count": 1, "": {"_count": 1}}, "unnatural": {"_count": 5, "hush": {"_count": 1}, "size": {"_count": 1}, "darkness": {"_count": 1}, "interest": {"_count": 1}, "chill": {"_count": 1}}, "unqualified": {"_count": 2, "disaster": {"_count": 1}, "wizard": {"_count": 1}}, "execution": {"_count": 1, "at": {"_count": 1}}, "axe": {"_count": 3, "behind": {"_count": 1}, "": {"_count": 2}}, "impressive": {"_count": 3, "end": {"_count": 1}, "sigh": {"_count": 1}, "new": {"_count": 1}}, "smell": {"_count": 1, "fresh": {"_count": 1}}, "clean": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "earthy": {"_count": 1, "slope": {"_count": 1}}, "Animagus": {"_count": 12, "": {"_count": 5}, "had": {"_count": 1}, "Pettigrew": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "by": {"_count": 1}, "so": {"_count": 1}}, "obvious": {"_count": 3, "effort": {"_count": 2}, "attempt": {"_count": 1}}, "impatient": {"_count": 4, "hand": {"_count": 1}, "noise": {"_count": 2}, "dig": {"_count": 1}}, "experiment": {"_count": 1, "with": {"_count": 1}}, "innocent": {"_count": 10, "man": {"_count": 4}, "boy": {"_count": 1}, "tone": {"_count": 1}, "Flitterbloom": {"_count": 1}, "sparrow": {"_count": 1}, "reason": {"_count": 1}, "child": {"_count": 1}}, "uncertain": {"_count": 1, "step": {"_count": 1}}, "ear": {"_count": 4, "out": {"_count": 1}, "trumpet": {"_count": 1}, "said": {"_count": 1}, "by": {"_count": 1}}, "obsession": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}}, "oversized": {"_count": 2, "balding": {"_count": 1}, "artichoke": {"_count": 1}}, "odder": {"_count": 1, "report": {"_count": 1}}, "attempt": {"_count": 12, "to": {"_count": 9}, "at": {"_count": 3}}, "insult": {"_count": 7, "to": {"_count": 5}, "frankly": {"_count": 1}, "": {"_count": 1}}, "impossible": {"_count": 1, "idea": {"_count": 1}}, "ice": {"_count": 1, "cube": {"_count": 1}}, "airborne": {"_count": 1, "broomstick": {"_count": 1}}, "address": {"_count": 1, "": {"_count": 1}}, "approaching": {"_count": 1, "car": {"_count": 1}}, "engagement": {"_count": 1, "": {"_count": 1}}, "electric": {"_count": 5, "fire": {"_count": 1}, "charge": {"_count": 1}, "shock": {"_count": 3}}, "afternoon": {"_count": 3, "you": {"_count": 1}, "trying": {"_count": 1}, "to": {"_count": 1}}, "Engorgement": {"_count": 1, "Charm": {"_count": 1}}, "older": {"_count": 3, "version": {"_count": 1}, "student": {"_count": 2}}, "earring": {"_count": 1, "with": {"_count": 1}}, "exhibition": {"_count": 2, "of": {"_count": 2}}, "eyeball": {"_count": 1, "lying": {"_count": 1}}, "extravagant": {"_count": 1, "confection": {"_count": 1}}, "oven": {"_count": 1, "said": {"_count": 1}}, "exchange": {"_count": 1, "trip": {"_count": 1}}, "Obliviator": {"_count": 1, "member": {"_count": 1}}, "attitude": {"_count": 2, "of": {"_count": 1}, "that": {"_count": 1}}, "impeccably": {"_count": 1, "crisp": {"_count": 1}}, "Axminster": {"_count": 1, "that": {"_count": 1}}, "Irish": {"_count": 1, "flag": {"_count": 1}}, "occasional": {"_count": 1, "leprechaun": {"_count": 1}}, "elf": {"_count": 7, "": {"_count": 3}, "like": {"_count": 2}, "into": {"_count": 1}, "at": {"_count": 1}}, "Idontthinkyoure": {"_count": 1, "being": {"_count": 1}}, "absolute": {"_count": 1, "uproar": {"_count": 1}}, "unfounded": {"_count": 1, "accusation": {"_count": 1}}, "overlarge": {"_count": 2, "Owl": {"_count": 1}, "lion": {"_count": 1}}, "intruder": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "Auror": {"_count": 27, "one": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 12}, "Potter": {"_count": 1}, "he": {"_count": 1}, "Frank": {"_count": 1}, "just": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 2}, "Did": {"_count": 1}, "as": {"_count": 1}, "if": {"_count": 2}, "Cissy": {"_count": 1}}, "unobtrusive": {"_count": 1, "way": {"_count": 1}}, "outsider": {"_count": 3, "too": {"_count": 1}, "": {"_count": 2}}, "unlucky": {"_count": 1, "combination": {"_count": 1}}, "event": {"_count": 3, "that": {"_count": 2}, "like": {"_count": 1}}, "frog": {"_count": 1, "livers": {"_count": 1}}, "exasperated": {"_count": 2, "voice": {"_count": 2}}, "unaspected": {"_count": 1, "planet": {"_count": 1}}, "undignified": {"_count": 1, "and": {"_count": 1}}, "uplifted": {"_count": 1, "expression": {"_count": 1}}, "involuntary": {"_count": 3, "shudder": {"_count": 1}, "gasp": {"_count": 1}, "movement": {"_count": 1}}, "eerie": {"_count": 3, "unblinking": {"_count": 1}, "flickering": {"_count": 1}, "red": {"_count": 1}}, "extrathorough": {"_count": 1, "cleaning": {"_count": 1}}, "elephant": {"_count": 1, "": {"_count": 1}}, "immense": {"_count": 7, "vacuum": {"_count": 1}, "iron": {"_count": 1}, "silvery": {"_count": 1}, "head": {"_count": 1}, "pocket": {"_count": 1}, "list": {"_count": 1}, "number": {"_count": 1}}, "anchor": {"_count": 1, "being": {"_count": 1}}, "impartial": {"_count": 1, "selector": {"_count": 1}}, "Age": {"_count": 1, "Line": {"_count": 1}}, "Aging": {"_count": 1, "Potion": {"_count": 1}}, "embarrassed": {"_count": 2, "sort": {"_count": 1}, "silence": {"_count": 1}}, "unkindness": {"_count": 1, "Hermione": {"_count": 1}}, "insultin": {"_count": 1, "em": {"_count": 1}}, "understatement": {"_count": 2, "Harry": {"_count": 1}, "said": {"_count": 1}}, "immensely": {"_count": 2, "long": {"_count": 1}, "fat": {"_count": 1}}, "exceptionally": {"_count": 4, "strong": {"_count": 1}, "full": {"_count": 1}, "angry": {"_count": 1}, "hot": {"_count": 1}}, "alternative": {"_count": 3, "I": {"_count": 1}, "route": {"_count": 1}, "story": {"_count": 1}}, "idle": {"_count": 1, "sort": {"_count": 1}}, "urge": {"_count": 2, "to": {"_count": 2}}, "excess": {"_count": 1, "of": {"_count": 1}}, "help": {"_count": 1, "me": {"_count": 1}}, "alarming": {"_count": 3, "bang": {"_count": 1}, "rate": {"_count": 1}, "height": {"_count": 1}}, "obsolete": {"_count": 1, "dingbat": {"_count": 1}}, "unknown": {"_count": 3, "piece": {"_count": 1}, "quantity": {"_count": 1}, "handwritten": {"_count": 1}}, "unattended": {"_count": 1, "cup": {"_count": 1}}, "keep": {"_count": 2, "yerself": {"_count": 1}, "our": {"_count": 1}}, "enclosure": {"_count": 1, "fenced": {"_count": 1}}, "object": {"_count": 12, "that": {"_count": 5}, "he": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}, "outside": {"_count": 1}, "twitched": {"_count": 1}, "of": {"_count": 1}, "like": {"_count": 1}}, "innocently": {"_count": 2, "casual": {"_count": 1}, "dead": {"_count": 1}}, "put": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "our": {"_count": 1}}, "slip": {"_count": 1, "the": {"_count": 1}}, "interview": {"_count": 4, "would": {"_count": 1}, "about": {"_count": 1}, "with": {"_count": 1}, "said": {"_count": 1}}, "autograph": {"_count": 1, "but": {"_count": 1}}, "impressed": {"_count": 1, "voice": {"_count": 1}}, "she": {"_count": 3, "didn": {"_count": 1}, "thinks": {"_count": 1}, "went": {"_count": 1}}, "appraising": {"_count": 2, "sort": {"_count": 1}, "eye": {"_count": 1}}, "impregnable": {"_count": 1, "fortress": {"_count": 1}}, "escort": {"_count": 1, "of": {"_count": 1}}, "eggcup": {"_count": 1, "": {"_count": 1}}, "exciting": {"_count": 2, "checkmate": {"_count": 1}, "new": {"_count": 1}}, "appalled": {"_count": 1, "look": {"_count": 1}}, "area": {"_count": 3, "of": {"_count": 1}, "full": {"_count": 1}, "o": {"_count": 1}}, "unpleasantly": {"_count": 3, "familiar": {"_count": 1}, "pulsating": {"_count": 1}, "purposeful": {"_count": 1}}, "oddly": {"_count": 11, "husky": {"_count": 1}, "constrained": {"_count": 1}, "unreal": {"_count": 1}, "shaped": {"_count": 2}, "misty": {"_count": 1}, "chilling": {"_count": 1}, "furtive": {"_count": 1}, "detached": {"_count": 1}, "twisted": {"_count": 1}, "impressive": {"_count": 1}}, "option": {"_count": 1, "": {"_count": 1}}, "unspoken": {"_count": 1, "agreement": {"_count": 1}}, "article": {"_count": 2, "topped": {"_count": 1}, "on": {"_count": 1}}, "activity": {"_count": 1, "usually": {"_count": 1}}, "interpreter": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 1, "I": {"_count": 1}}, "Dad": {"_count": 1, "gone": {"_count": 1}}, "ungainly": {"_count": 1, "wobble": {"_count": 1}}, "ideal": {"_count": 5, "cover": {"_count": 1}, "excuse": {"_count": 1}, "opportunity": {"_count": 1}, "informer": {"_count": 1}, "place": {"_count": 1}}, "AquaLung": {"_count": 1, "within": {"_count": 1}}, "Aqua": {"_count": 1, "Lung": {"_count": 1}}, "they": {"_count": 4, "grow": {"_count": 1}, "had": {"_count": 1}, "translated": {"_count": 1}, "dropped": {"_count": 1}}, "insane": {"_count": 4, "urge": {"_count": 1}, "smile": {"_count": 1}, "grin": {"_count": 1}, "idea": {"_count": 1}}, "incomplete": {"_count": 1, "form": {"_count": 1}}, "agitated": {"_count": 1, "voice": {"_count": 1}}, "edge": {"_count": 5, "to": {"_count": 2}, "of": {"_count": 2}, "agreed": {"_count": 1}}, "choose": {"_count": 1, "a": {"_count": 1}}, "insect": {"_count": 2, "humming": {"_count": 1}, "struck": {"_count": 1}}, "excruciating": {"_count": 1, "pain": {"_count": 1}}, "enchanted": {"_count": 4, "diary": {"_count": 1}, "sleep": {"_count": 1}, "mirror": {"_count": 1}, "razor": {"_count": 1}}, "acidgreen": {"_count": 1, "quill": {"_count": 1}}, "Albus": {"_count": 2, "Dumbledore": {"_count": 2}}, "orphan": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "opening": {"_count": 4, "he": {"_count": 1}, "leading": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 1}}, "Unforgivable": {"_count": 4, "Curse": {"_count": 4}}, "imposter": {"_count": 1, "": {"_count": 1}}, "eternity": {"_count": 1, "Harry": {"_count": 1}}, "army": {"_count": 8, "of": {"_count": 5}, "against": {"_count": 1}, "": {"_count": 2}}, "Albanian": {"_count": 1, "forest": {"_count": 1}}, "inn": {"_count": 2, "for": {"_count": 1}, "where": {"_count": 1}}, "easier": {"_count": 4, "time": {"_count": 1}, "path": {"_count": 1}, "way": {"_count": 1}, "job": {"_count": 1}}, "arrested": {"_count": 1, "look": {"_count": 1}}, "inexpressible": {"_count": 2, "sense": {"_count": 1}, "comfort": {"_count": 1}}, "alarm": {"_count": 2, "bell": {"_count": 1}, "": {"_count": 1}}, "expressionless": {"_count": 2, "voice": {"_count": 2}}, "understanding": {"_count": 2, "they": {"_count": 1}, "smile": {"_count": 1}}, "visit": {"_count": 1, "the": {"_count": 1}}, "unregistered": {"_count": 2, "Animagus": {"_count": 2}}, "Unbreakable": {"_count": 3, "Charm": {"_count": 1}, "Oath": {"_count": 1}, "Vow": {"_count": 1}}, "unexplained": {"_count": 1, "disappearance": {"_count": 1}}, "inadequate": {"_count": 1, "response": {"_count": 1}}, "unassailable": {"_count": 1, "conclusion": {"_count": 1}}, "inkling": {"_count": 3, "of": {"_count": 2}, "that": {"_count": 1}}, "escape": {"_count": 2, "route": {"_count": 1}, "that": {"_count": 1}}, "engine": {"_count": 1, "and": {"_count": 1}}, "impostor": {"_count": 5, "an": {"_count": 1}, "moreover": {"_count": 1}, "": {"_count": 3}}, "unauthorized": {"_count": 1, "Portkey": {"_count": 1}}, "upper": {"_count": 3, "window": {"_count": 2}, "corner": {"_count": 1}}, "Imperturbable": {"_count": 1, "Charm": {"_count": 1}}, "uncharacteristically": {"_count": 1, "ugly": {"_count": 1}}, "echoing": {"_count": 3, "silence": {"_count": 1}, "bang": {"_count": 1}, "clang": {"_count": 1}}, "acrid": {"_count": 1, "smell": {"_count": 1}}, "intense": {"_count": 1, "discussion": {"_count": 1}}, "irresponsible": {"_count": 1, "godfather": {"_count": 1}}, "ally": {"_count": 1, "I": {"_count": 1}}, "occupational": {"_count": 2, "hazard": {"_count": 2}}, "infestation": {"_count": 1, "this": {"_count": 1}}, "unkempt": {"_count": 1, "gingery": {"_count": 1}}, "unpleasantlooking": {"_count": 1, "silver": {"_count": 1}}, "Underground": {"_count": 1, "train": {"_count": 1}}, "overflowing": {"_count": 1, "dumpster": {"_count": 1}}, "untidy": {"_count": 2, "looking": {"_count": 1}, "sprawl": {"_count": 1}}, "eager": {"_count": 2, "voice": {"_count": 1}, "audience": {"_count": 1}}, "offense": {"_count": 1, "under": {"_count": 1}}, "eyewitness": {"_count": 1, "Dumbledore": {"_count": 1}}, "ecstatic": {"_count": 1, "expression": {"_count": 1}}, "inner": {"_count": 2, "pocket": {"_count": 2}}, "aura": {"_count": 2, "of": {"_count": 2}}, "accusation": {"_count": 1, "that": {"_count": 1}}, "abrupt": {"_count": 7, "end": {"_count": 1}, "return": {"_count": 1}, "halt": {"_count": 5}}, "appreciative": {"_count": 1, "laugh": {"_count": 1}}, "outbreak": {"_count": 5, "of": {"_count": 5}}, "achievement": {"_count": 2, "for": {"_count": 1}, "said": {"_count": 1}}, "adequate": {"_count": 1, "apology": {"_count": 1}}, "antidote": {"_count": 12, "yet": {"_count": 1}, "though": {"_count": 1}, "to": {"_count": 3}, "dont": {"_count": 1}, "for": {"_count": 3}, "could": {"_count": 1}, "immediately": {"_count": 1}, "Harry": {"_count": 1}}, "unnecessarily": {"_count": 2, "accusatory": {"_count": 1}, "large": {"_count": 1}}, "\u2018Acceptable": {"_count": 1, "in": {"_count": 1}}, "unconvincing": {"_count": 4, "smile": {"_count": 2}, "look": {"_count": 1}, "expression": {"_count": 1}}, "Idliketosee": {"_count": 1, "youtryit": {"_count": 1}}, "O": {"_count": 5, "": {"_count": 4}, "Hermione": {"_count": 1}}, "exemplary": {"_count": 1, "Care": {"_count": 1}}, "amusing": {"_count": 1, "joke": {"_count": 1}}, "obliging": {"_count": 1, "leg": {"_count": 1}}, "admonitory": {"_count": 1, "hoot": {"_count": 1}}, "anguished": {"_count": 2, "whisper": {"_count": 1}, "look": {"_count": 1}}, "unprecedented": {"_count": 1, "level": {"_count": 1}}, "appropriate": {"_count": 1, "person": {"_count": 1}}, "immediate": {"_count": 4, "success": {"_count": 2}, "impression": {"_count": 1}, "desire": {"_count": 1}}, "outpost": {"_count": 1, "of": {"_count": 1}}, "inspected": {"_count": 1, "lesson": {"_count": 1}}, "eventuality": {"_count": 1, "": {"_count": 1}}, "A": {"_count": 1, "": {"_count": 1}}, "invertebrate": {"_count": 1, "does": {"_count": 1}}, "objective": {"_count": 1, "outsider": {"_count": 1}}, "Organization": {"_count": 1, "Society": {"_count": 1}}, "absolutely": {"_count": 1, "appalling": {"_count": 1}}, "ink": {"_count": 2, "pellet": {"_count": 2}}, "awed": {"_count": 1, "voice": {"_count": 1}}, "indignant": {"_count": 1, "hoot": {"_count": 1}}, "awkward": {"_count": 4, "silence": {"_count": 1}, "and": {"_count": 1}, "angle": {"_count": 2}}, "upsurge": {"_count": 1, "of": {"_count": 1}}, "knowin": {"_count": 1, "where": {"_count": 1}}, "sleepin": {"_count": 2, "in": {"_count": 1}, "spots": {"_count": 1}}, "tha": {"_count": 1, "bu": {"_count": 1}}, "anyone": {"_count": 1, "they": {"_count": 1}}, "We": {"_count": 1, "know": {"_count": 1}}, "me": {"_count": 3, "we": {"_count": 1}, "aren": {"_count": 1}, "": {"_count": 1}}, "there": {"_count": 2, "they": {"_count": 1}, "was": {"_count": 1}}, "huge": {"_count": 1, "shadows": {"_count": 1}}, "came": {"_count": 1, "up": {"_count": 1}}, "fer": {"_count": 1, "another": {"_count": 1}}, "avalanche": {"_count": 1, "near": {"_count": 1}}, "such": {"_count": 1, "like": {"_count": 1}}, "Karkus": {"_count": 1, "was": {"_count": 1}}, "ignore": {"_count": 1, "the": {"_count": 1}}, "watched": {"_count": 1, "us": {"_count": 1}}, "theyll": {"_count": 1, "kill": {"_count": 1}}, "went": {"_count": 1, "off": {"_count": 1}}, "found": {"_count": 1, "ourselves": {"_count": 1}}, "indestructible": {"_count": 1, "yeh": {"_count": 1}}, "listened": {"_count": 1, "too": {"_count": 1}}, "matchin": {"_count": 1, "teeth": {"_count": 1}}, "did": {"_count": 1, "some": {"_count": 1}}, "watchin": {"_count": 1, "": {"_count": 1}}, "Olympe": {"_count": 1, "talked": {"_count": 1}}, "persuade": {"_count": 1, "some": {"_count": 1}}, "crawled": {"_count": 1, "inter": {"_count": 1}}, "e": {"_count": 1, "translated": {"_count": 1}}, "what": {"_count": 1, "we": {"_count": 1}}, "theres": {"_count": 1, "gotta": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "sea": {"_count": 1, "": {"_count": 1}}, "ingratiating": {"_count": 1, "smile": {"_count": 1}}, "its": {"_count": 1, "late": {"_count": 1}}, "here": {"_count": 1, "comes": {"_count": 1}}, "useful": {"_count": 1, "": {"_count": 1}}, "heres": {"_count": 1, "another": {"_count": 1}}, "five": {"_count": 1, "females": {"_count": 1}}, "angle": {"_count": 2, "to": {"_count": 2}}, "antitheft": {"_count": 1, "device": {"_count": 1}}, "arrogant": {"_count": 4, "disdainful": {"_count": 1}, "bullying": {"_count": 1}, "man": {"_count": 1}, "toerag": {"_count": 1}}, "Unspeakable": {"_count": 1, "he": {"_count": 1}}, "mb": {"_count": 1, "a": {"_count": 1}}, "obscure": {"_count": 1, "Department": {"_count": 1}}, "illness": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "bruises": {"_count": 1, "Harry": {"_count": 1}}, "acid": {"_count": 1, "green": {"_count": 1}}, "insiders": {"_count": 1, "account": {"_count": 1}}, "overemotional": {"_count": 1, "toddler": {"_count": 1}}, "upright": {"_count": 1, "doggypaddle": {"_count": 1}}, "Enlargement": {"_count": 1, "Charm": {"_count": 1}}, "indecent": {"_count": 1, "excitement": {"_count": 1}}, "identical": {"_count": 2, "door": {"_count": 1}, "package": {"_count": 1}}, "Easter": {"_count": 1, "egg": {"_count": 1}}, "E": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "opinion": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "uninterrupted": {"_count": 1, "flow": {"_count": 1}}, "Invigoration": {"_count": 1, "Draught": {"_count": 1}}, "armed": {"_count": 1, "security": {"_count": 1}}, "injured": {"_count": 1, "voice": {"_count": 1}}, "riled": {"_count": 1, "at": {"_count": 1}}, "watch": {"_count": 1, "em": {"_count": 1}}, "Idve": {"_count": 1, "thought": {"_count": 1}}, "taught": {"_count": 1, "him": {"_count": 1}}, "show": {"_count": 1, "evryone": {"_count": 1}}, "had": {"_count": 1, "Grawp": {"_count": 1}}, "through": {"_count": 1, "wild": {"_count": 1}}, "deer": {"_count": 1, "an": {"_count": 1}}, "want": {"_count": 1, "him": {"_count": 1}}, "have": {"_count": 1, "a": {"_count": 1}}, "leave": {"_count": 1, "them": {"_count": 1}}, "goes": {"_count": 1, "in": {"_count": 1}}, "irritating": {"_count": 1, "habit": {"_count": 1}}, "uncomfortable": {"_count": 2, "sort": {"_count": 1}, "moment": {"_count": 1}}, "Outstanding": {"_count": 1, "O": {"_count": 1}}, "examination": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "ironic": {"_count": 1, "bow": {"_count": 1}}, "issue": {"_count": 1, "of": {"_count": 1}}, "ant": {"_count": 1, "upon": {"_count": 1}}, "amphitheater": {"_count": 1, "or": {"_count": 1}}, "unbidden": {"_count": 2, "voice": {"_count": 2}}, "awestruck": {"_count": 1, "voice": {"_count": 1}}, "octopuss": {"_count": 1, "body": {"_count": 1}}, "overturned": {"_count": 1, "beetles": {"_count": 1}}, "AntiDisapparation": {"_count": 1, "Jinx": {"_count": 1}}, "applicant": {"_count": 1, "for": {"_count": 1}}, "expedition": {"_count": 1, "to": {"_count": 1}}, "thas": {"_count": 1, "the": {"_count": 1}}, "let": {"_count": 1, "other": {"_count": 1}}, "drop": {"_count": 1, "back": {"_count": 1}}, "imprint": {"_count": 1, "of": {"_count": 1}}, "emotion": {"_count": 1, "quite": {"_count": 1}}, "ignorant": {"_count": 2, "schoolboy": {"_count": 1}, "old": {"_count": 1}}, "art": {"_count": 1, "historian": {"_count": 1}}, "isolated": {"_count": 1, "incident": {"_count": 1}}, "overstatement": {"_count": 1, "": {"_count": 1}}, "aggrieved": {"_count": 2, "silence": {"_count": 1}, "and": {"_count": 1}}, "advisory": {"_count": 1, "capacity": {"_count": 1}}, "incredulous": {"_count": 2, "look": {"_count": 1}, "laugh": {"_count": 1}}, "alley": {"_count": 1, "between": {"_count": 1}}, "insider": {"_count": 1, "confirmed": {"_count": 1}}, "organization": {"_count": 1, "calling": {"_count": 1}}, "introduction": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "exploding": {"_count": 1, "letter": {"_count": 1}}, "enchantment": {"_count": 4, "exists": {"_count": 1}, "that": {"_count": 1}, "will": {"_count": 1}, "by": {"_count": 1}}, "overstuffed": {"_count": 1, "armchair": {"_count": 1}}, "enormously": {"_count": 2, "fat": {"_count": 1}, "overgrown": {"_count": 1}}, "enthusiastic": {"_count": 1, "collector": {"_count": 1}}, "approving": {"_count": 3, "pat": {"_count": 1}, "nod": {"_count": 1}, "look": {"_count": 1}}, "honest": {"_count": 1, "days": {"_count": 1}}, "unconvincingly": {"_count": 1, "casual": {"_count": 1}}, "undeceived": {"_count": 1, "Mrs": {"_count": 1}}, "overcast": {"_count": 1, "murky": {"_count": 1}}, "airy": {"_count": 4, "hand": {"_count": 3}, "forkful": {"_count": 1}}, "array": {"_count": 1, "of": {"_count": 1}}, "unimpeded": {"_count": 1, "view": {"_count": 1}}, "oilyhaired": {"_count": 1, "stooping": {"_count": 1}}, "upswing": {"_count": 1, "in": {"_count": 1}}, "exclusive": {"_count": 1, "interview": {"_count": 1}}, "Acceptable": {"_count": 2, "Harry": {"_count": 1}, "really": {"_count": 1}}, "invitation": {"_count": 6, "said": {"_count": 1}, "did": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 1}}, "absurd": {"_count": 1, "turtle": {"_count": 1}}, "\u2018Outstanding": {"_count": 2, "O": {"_count": 1}, "in": {"_count": 1}}, "\u2018Exceeds": {"_count": 1, "Expectations": {"_count": 1}}, "Inferius": {"_count": 5, "been": {"_count": 1}, "during": {"_count": 1}, "and": {"_count": 2}, "No": {"_count": 1}}, "element": {"_count": 1, "of": {"_count": 1}}, "ill": {"_count": 1, "omen": {"_count": 1}}, "enjoyable": {"_count": 1, "first": {"_count": 1}}, "appointment": {"_count": 5, "with": {"_count": 3}, "and": {"_count": 2}}, "offensive": {"_count": 1, "tone": {"_count": 1}}, "obscene": {"_count": 1, "hand": {"_count": 1}}, "eyesore": {"_count": 1, "": {"_count": 1}}, "arrest": {"_count": 1, "": {"_count": 1}}, "emptier": {"_count": 1, "stadium": {"_count": 1}}, "hes": {"_count": 1, "not": {"_count": 1}}, "unsuspecting": {"_count": 1, "Argus": {"_count": 1}}, "unidentifiable": {"_count": 1, "buzzing": {"_count": 1}}, "upward": {"_count": 1, "flick": {"_count": 1}}, "overcoat": {"_count": 1, "with": {"_count": 1}}, "accomplice": {"_count": 3, "then": {"_count": 1}, "all": {"_count": 1}, "waiting": {"_count": 1}}, "extravigorous": {"_count": 1, "shake": {"_count": 1}}, "inconveniently": {"_count": 1, "sharp": {"_count": 1}}, "extrarefined": {"_count": 1, "voice": {"_count": 1}}, "unrecognizably": {"_count": 1, "polite": {"_count": 1}}, "irksome": {"_count": 2, "fly": {"_count": 2}}, "apprehensive": {"_count": 1, "look": {"_count": 1}}, "inconsistent": {"_count": 1, "player": {"_count": 1}}, "oncoming": {"_count": 3, "Demelza": {"_count": 1}, "Cadwallader": {"_count": 1}, "wind": {"_count": 1}}, "image": {"_count": 1, "of": {"_count": 1}}, "accomplished": {"_count": 1, "caster": {"_count": 1}}, "irate": {"_count": 2, "Professor": {"_count": 1}, "McLaggen": {"_count": 1}}, "i": {"_count": 1, "so": {"_count": 1}}, "enemy": {"_count": 1, "no": {"_count": 1}}, "act": {"_count": 6, "": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 4}}, "actor": {"_count": 1, "not": {"_count": 1}}, "orrible": {"_count": 1, "Shall": {"_count": 1}}, "affected": {"_count": 1, "little": {"_count": 1}}, "annoyed": {"_count": 1, "look": {"_count": 1}}, "emotional": {"_count": 1, "upheaval": {"_count": 1}}, "occasion": {"_count": 1, "to": {"_count": 1}}, "ambition": {"_count": 1, "to": {"_count": 1}}, "impassive": {"_count": 1, "face": {"_count": 1}}, "inordinate": {"_count": 1, "amount": {"_count": 1}}, "insubstantial": {"_count": 1, "air": {"_count": 1}}, "exclamation": {"_count": 1, "of": {"_count": 1}}, "impractical": {"_count": 1, "idea": {"_count": 1}}, "increasing": {"_count": 1, "sense": {"_count": 1}}, "apologetic": {"_count": 1, "face": {"_count": 1}}, "kids": {"_count": 1, "are": {"_count": 1}}, "nex": {"_count": 1, "thing": {"_count": 1}}, "tried": {"_count": 1, "not": {"_count": 1}}, "maybe": {"_count": 1, "he": {"_count": 1}}, "unwilling": {"_count": 1, "giggle": {"_count": 1}}, "office": {"_count": 1, "full": {"_count": 1}}, "inexplicable": {"_count": 1, "smirk": {"_count": 1}}, "elaborate": {"_count": 1, "ginger": {"_count": 1}}, "improved": {"_count": 1, "offer": {"_count": 1}}, "attempted": {"_count": 1, "burglary": {"_count": 1}}, "experimental": {"_count": 1, "push": {"_count": 1}}, "Sbend": {"_count": 1, "too": {"_count": 1}}, "exhilarating": {"_count": 1, "sense": {"_count": 1}}, "acromantula": {"_count": 1, "while": {"_count": 1}}, "not": {"_count": 1, "turnin": {"_count": 1}}, "overview": {"_count": 1, "of": {"_count": 1}}, "unreasonable": {"_count": 1, "exchange": {"_count": 1}}, "interval": {"_count": 1, "of": {"_count": 1}}, "arched": {"_count": 1, "outline": {"_count": 1}}, "arch": {"_count": 1, "had": {"_count": 1}}, "expanse": {"_count": 1, "of": {"_count": 1}}, "unsteady": {"_count": 2, "statue": {"_count": 1}, "halt": {"_count": 1}}, "arc": {"_count": 1, "over": {"_count": 1}}, "ambitious": {"_count": 1, "homework": {"_count": 1}}, "octave": {"_count": 1, "as": {"_count": 1}}, "explosive": {"_count": 1, "bang": {"_count": 1}}, "inarticulate": {"_count": 1, "yell": {"_count": 1}}, "unrecognizable": {"_count": 1, "face": {"_count": 1}}, "ironclad": {"_count": 2, "reason": {"_count": 1}, "punch": {"_count": 1}}, "Professor": {"_count": 1, "Slughorn": {"_count": 1}}, "announcement": {"_count": 1, "saying": {"_count": 1}}, "apparently": {"_count": 1, "unconscious": {"_count": 1}}, "Imperius": {"_count": 1, "Curse": {"_count": 1}}, "impassioned": {"_count": 1, "defense": {"_count": 1}}, "altogether": {"_count": 1, "comfortable": {"_count": 1}}, "estrangement": {"_count": 1, "": {"_count": 1}}, "imprisonable": {"_count": 1, "offense": {"_count": 1}}, "thestrals": {"_count": 1, "cant": {"_count": 1}}, "aspidistra": {"_count": 1, "he": {"_count": 1}}, "appealing": {"_count": 1, "look": {"_count": 1}}, "emaciated": {"_count": 1, "old": {"_count": 1}}, "exhaust": {"_count": 1, "gaskin": {"_count": 1}}, "attractive": {"_count": 1, "rippling": {"_count": 1}}, "item": {"_count": 1, "so": {"_count": 1}}, "eyewatering": {"_count": 1, "shade": {"_count": 1}}, "acquaintance": {"_count": 1, "had": {"_count": 1}}, "omelet": {"_count": 1, "": {"_count": 1}}, "aged": {"_count": 1, "dandelion": {"_count": 1}}, "interfering": {"_count": 1, "trout": {"_count": 1}}, "annoying": {"_count": 1, "habit": {"_count": 1}}, "artificial": {"_count": 1, "smile": {"_count": 1}}, "adventure": {"_count": 1, "with": {"_count": 1}}, "unreliable": {"_count": 1, "bit": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "assistant": {"_count": 1, "in": {"_count": 1}}, "Atmospheric": {"_count": 1, "Charm": {"_count": 1}}, "interim": {"_count": 1, "measure": {"_count": 1}}, "Undesirable": {"_count": 1, "": {"_count": 1}}, "anthill": {"_count": 1, "": {"_count": 1}}, "instinctive": {"_count": 1, "attempt": {"_count": 1}}, "otter": {"_count": 1, "soaring": {"_count": 1}}, "impertinent": {"_count": 1, "request": {"_count": 1}}, "exboyfriend": {"_count": 1, "of": {"_count": 1}}, "oddity": {"_count": 1, "": {"_count": 1}}, "oaf": {"_count": 1, "": {"_count": 1}}, "obelisk": {"_count": 1, "covered": {"_count": 1}}, "Abbott": {"_count": 1, "could": {"_count": 1}}, "unimportant": {"_count": 1, "coincidence": {"_count": 1}}, "ambush": {"_count": 1, "": {"_count": 1}}, "outward": {"_count": 1, "sign": {"_count": 1}}, "enclosed": {"_count": 1, "space": {"_count": 1}}, "Erumpent": {"_count": 5, "horn": {"_count": 4}, "not": {"_count": 1}}, "extraordinarily": {"_count": 1, "dangerous": {"_count": 1}}, "elevated": {"_count": 1, "frame": {"_count": 1}}, "elder": {"_count": 1, "tree": {"_count": 1}}, "unbeatable": {"_count": 2, "wand": {"_count": 2}}, "impenetrable": {"_count": 1, "cloud": {"_count": 1}}, "update": {"_count": 1, "on": {"_count": 1}}, "albino": {"_count": 1, "peacock": {"_count": 1}}, "intricately": {"_count": 1, "scrolled": {"_count": 1}}, "outofsight": {"_count": 1, "Snatcher": {"_count": 1}}, "unnecessary": {"_count": 1, "blot": {"_count": 1}}, "OwlOrder": {"_count": 1, "business": {"_count": 1}}, "emergency": {"_count": 1, "": {"_count": 1}}, "excitement": {"_count": 1, "": {"_count": 1}}, "eyeglass": {"_count": 1, "": {"_count": 1}}, "expanding": {"_count": 1, "avalanche": {"_count": 1}}, "dementors": {"_count": 1, "wont": {"_count": 1}}, "obstacle": {"_count": 1, "at": {"_count": 1}}, "outcrop": {"_count": 1, "of": {"_count": 1}}, "uncouth": {"_count": 1, "voice": {"_count": 1}}, "orderly": {"_count": 1, "fashion": {"_count": 1}}, "Grawpy": {"_count": 1, "an": {"_count": 1}}, "Fang": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "dad": {"_count": 1}}, "undersized": {"_count": 1, "giant": {"_count": 1}}, "earthquaking": {"_count": 1, "tremor": {"_count": 1}}, "engaging": {"_count": 1, "child": {"_count": 1}}, "aside": {"_count": 1, "I": {"_count": 1}}, "epitaph": {"_count": 1, "": {"_count": 1}}, "eyelid": {"_count": 2, "might": {"_count": 1}, "crept": {"_count": 1}}, "infinitesimal": {"_count": 1, "amount": {"_count": 1}}, "answering": {"_count": 1, "cheer": {"_count": 1}}, "indispensable": {"_count": 1, "part": {"_count": 1}}, "apple": {"_count": 1, "and": {"_count": 1}}, "animated": {"_count": 1, "discussion": {"_count": 1}}}, "emeraldgreen": {"_count": 9, "cloak": {"_count": 1, "": {"_count": 1}}, "robes": {"_count": 1, "stood": {"_count": 1}}, "flames": {"_count": 3, "": {"_count": 2}, "that": {"_count": 1}}, "skull": {"_count": 1, "": {"_count": 1}}, "shawl": {"_count": 1, "inclined": {"_count": 1}}, "flame": {"_count": 1, "making": {"_count": 1}}, "silk": {"_count": 1, "pajamas": {"_count": 1}}}, "cloak": {"_count": 261, "": {"_count": 54, "!": {"_count": 2}, ".": {"_count": 48}, "?": {"_count": 4}}, "that": {"_count": 4, "swept": {"_count": 1}, "greatly": {"_count": 1}, "really": {"_count": 2}}, "looking": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 31, "set": {"_count": 1}, "seized": {"_count": 1}, "then": {"_count": 1}, "crept": {"_count": 1}, "everything": {"_count": 1}, "pointed": {"_count": 2}, "climbed": {"_count": 1}, "flew": {"_count": 1}, "tossed": {"_count": 1}, "it": {"_count": 1}, "held": {"_count": 1}, "there": {"_count": 1}, "Ron": {"_count": 1}, "waved": {"_count": 1}, "holding": {"_count": 1}, "stuffed": {"_count": 1}, "strode": {"_count": 1}, "a": {"_count": 2}, "throwing": {"_count": 1}, "striding": {"_count": 1}, "was": {"_count": 1}, "Harry": {"_count": 1}, "waited": {"_count": 1}, "his": {"_count": 1}, "took": {"_count": 1}, "drew": {"_count": 1}, "they": {"_count": 1}, "made": {"_count": 1}, "he": {"_count": 1}}, "an": {"_count": 1, "emerald": {"_count": 1}}, "suddenly": {"_count": 1, "as": {"_count": 1}}, "tucked": {"_count": 3, "it": {"_count": 3}}, "he": {"_count": 4, "was": {"_count": 1}, "felt": {"_count": 1}, "watched": {"_count": 1}, "looked": {"_count": 1}}, "black": {"_count": 1, "silver": {"_count": 1}}, "which": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}}, "watching": {"_count": 2, "them": {"_count": 1}, "Harry": {"_count": 1}}, "around": {"_count": 5, "his": {"_count": 1}, "himself": {"_count": 1}, "him": {"_count": 2}, "her": {"_count": 1}}, "over": {"_count": 11, "his": {"_count": 6}, "themselves": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}, "Harry": {"_count": 1}, "what": {"_count": 1}}, "quickly": {"_count": 1, "out": {"_count": 1}}, "out": {"_count": 3, "from": {"_count": 2}, "again": {"_count": 1}}, "didnt": {"_count": 1, "stop": {"_count": 1}}, "too": {"_count": 1, "they": {"_count": 1}}, "from": {"_count": 2, "around": {"_count": 1}, "his": {"_count": 1}}, "back": {"_count": 7, "over": {"_count": 4}, "on": {"_count": 2}, "around": {"_count": 1}}, "work": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 4, "become": {"_count": 2}, "make": {"_count": 1}, "ensure": {"_count": 1}}, "glad": {"_count": 1, "to": {"_count": 1}}, "trailing": {"_count": 1, "along": {"_count": 1}}, "off": {"_count": 4, "": {"_count": 2}, "his": {"_count": 1}, "themselves": {"_count": 1}}, "it": {"_count": 1, "mustve": {"_count": 1}}, "Ron": {"_count": 2, "muttered": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 3, "here": {"_count": 1}, "Walking": {"_count": 1}, "and": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 2, "turned": {"_count": 1}, "How": {"_count": 1}}, "I": {"_count": 2, "wont": {"_count": 1}, "never": {"_count": 1}}, "for": {"_count": 3, "warmth": {"_count": 1}, "a": {"_count": 2}}, "lay": {"_count": 2, "ripped": {"_count": 1}, "over": {"_count": 1}}, "only": {"_count": 1, "when": {"_count": 1}}, "smiling": {"_count": 1, "a": {"_count": 1}}, "throwing": {"_count": 1, "it": {"_count": 1}}, "a": {"_count": 3, "look": {"_count": 1}, "limegreen": {"_count": 1}, "little": {"_count": 1}}, "looked": {"_count": 1, "cold": {"_count": 1}}, "sensed": {"_count": 1, "Harrys": {"_count": 1}}, "with": {"_count": 5, "a": {"_count": 4}, "Harry": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "slid": {"_count": 1, "off": {"_count": 1}}, "up": {"_count": 1, "again": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 6, "standing": {"_count": 1}, "pulled": {"_count": 1}, "covering": {"_count": 1}, "the": {"_count": 1}, "walking": {"_count": 1}, "like": {"_count": 1}}, "folded": {"_count": 1, "carefully": {"_count": 1}}, "hidden": {"_count": 1, "down": {"_count": 1}}, "then": {"_count": 1, "walked": {"_count": 1}}, "they": {"_count": 2, "pulled": {"_count": 1}, "could": {"_count": 1}}, "Hermione": {"_count": 1, "panted": {"_count": 1}}, "aside": {"_count": 1, "careful": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}}, "propped": {"_count": 1, "on": {"_count": 1}}, "pulled": {"_count": 2, "out": {"_count": 1}, "up": {"_count": 1}}, "pocket": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "off": {"_count": 1}}, "billowing": {"_count": 3, "out": {"_count": 1}, "behind": {"_count": 2}}, "crept": {"_count": 1, "back": {"_count": 1}}, "tonight": {"_count": 1, "because": {"_count": 1}}, "the": {"_count": 1, "map": {"_count": 1}}, "now": {"_count": 2, "safely": {"_count": 1}, "thought": {"_count": 1}}, "had": {"_count": 2, "put": {"_count": 1}, "flapped": {"_count": 1}}, "hes": {"_count": 1, "freezing": {"_count": 1}}, "his": {"_count": 3, "gnarled": {"_count": 1}, "mind": {"_count": 1}, "graying": {"_count": 1}}, "collars": {"_count": 1, "turned": {"_count": 1}}, "are": {"_count": 1, "yeh": {"_count": 1}}, "as": {"_count": 3, "well": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "again": {"_count": 1, "her": {"_count": 1}}, "fell": {"_count": 1, "from": {"_count": 1}}, "shoved": {"_count": 1, "it": {"_count": 1}}, "next": {"_count": 1, "second": {"_count": 1}}, "Im": {"_count": 1, "quite": {"_count": 1}}, "into": {"_count": 1, "Goyles": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "rustling": {"_count": 1, "over": {"_count": 1}}, "streaming": {"_count": 1, "behind": {"_count": 1}}, "holding": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "cast": {"_count": 1, "it": {"_count": 1}}, "flapped": {"_count": 1, "a": {"_count": 1}}, "nowadays": {"_count": 1, "": {"_count": 1}}, "flutter": {"_count": 1, "around": {"_count": 1}}, "Harrys": {"_count": 1, "heart": {"_count": 1}}, "round": {"_count": 1, "his": {"_count": 1}}, "whispering": {"_count": 1, "on": {"_count": 1}}, "more": {"_count": 1, "tightly": {"_count": 1}}, "so": {"_count": 1, "nobody": {"_count": 1}}, "flecked": {"_count": 1, "with": {"_count": 1}}, "hat": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "though": {"_count": 1, "Hagrid": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "please": {"_count": 1, "said": {"_count": 1}}, "barely": {"_count": 1, "stirring": {"_count": 1}}, "stuffed": {"_count": 1, "it": {"_count": 1}}, "Draco": {"_count": 1, "do": {"_count": 1}}, "Moody": {"_count": 1, "now": {"_count": 1}}, "disappearing": {"_count": 1, "around": {"_count": 1}}, "threw": {"_count": 1, "it": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "making": {"_count": 1, "more": {"_count": 1}}, "slithering": {"_count": 1, "over": {"_count": 1}}, "imbued": {"_count": 1, "with": {"_count": 1}}, "exactly": {"_count": 1, "like": {"_count": 1}}, "Fleur": {"_count": 1, "a": {"_count": 1}}, "pointed": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "she": {"_count": 1, "wore": {"_count": 1}}}, "nerve": {"_count": 32, "of": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "and": {"_count": 4, "chivalry": {"_count": 2}, "outstanding": {"_count": 1}, "bounding": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 4, "Harrys": {"_count": 2}, "his": {"_count": 2}}, "": {"_count": 7, ".": {"_count": 7}}, "had": {"_count": 1, "failed": {"_count": 1}}, "to": {"_count": 2, "use": {"_count": 1}, "pursue": {"_count": 1}}, "hes": {"_count": 1, "showing": {"_count": 1}}, "was": {"_count": 2, "something": {"_count": 1}, "twitching": {"_count": 1}}, "asking": {"_count": 1, "him": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "several": {"_count": 1, "posters": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "struck": {"_count": 55, "Mr": {"_count": 1, "Dursley": {"_count": 1}}, "Harry": {"_count": 5, "as": {"_count": 3}, "that": {"_count": 1}, "suddenly": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "hard": {"_count": 1}}, "him": {"_count": 7, "": {"_count": 2}, "how": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}, "put": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "by": {"_count": 5, "a": {"_count": 4}, "his": {"_count": 1}}, "them": {"_count": 2, "as": {"_count": 1}, "angry": {"_count": 1}}, "up": {"_count": 3, "a": {"_count": 3}}, "out": {"_count": 3, "once": {"_count": 1}, "for": {"_count": 2}}, "anew": {"_count": 1, "by": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "dumb": {"_count": 3, "sprouting": {"_count": 1}, "midcroak": {"_count": 1}, "made": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "once": {"_count": 1, "twice": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "Fawkes": {"_count": 1, "swooped": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "while": {"_count": 1, "several": {"_count": 1}}, "the": {"_count": 2, "Dumbledores": {"_count": 1}, "blow": {"_count": 1}}, "himself": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "Hermione": {"_count": 1}}, "Hermione": {"_count": 1, "screamed": {"_count": 1}}, "her": {"_count": 1, "he": {"_count": 1}}, "any": {"_count": 1, "kind": {"_count": 1}}, "down": {"_count": 1, "around": {"_count": 1}}, "an": {"_count": 1, "oddly": {"_count": 1}}, "Ariana": {"_count": 1, "dead": {"_count": 1}}}, "probably": {"_count": 158, "some": {"_count": 2, "silly": {"_count": 1}, "kind": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "knew": {"_count": 2, "they": {"_count": 1}, "everything": {"_count": 1}}, "nothing": {"_count": 1, "a": {"_count": 1}}, "hiding": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "but": {"_count": 1}}, "be": {"_count": 12, "the": {"_count": 1}, "happily": {"_count": 1}, "eaten": {"_count": 1}, "tested": {"_count": 1}, "sent": {"_count": 1}, "back": {"_count": 1}, "dead": {"_count": 1}, "too": {"_count": 1}, "invited": {"_count": 1}, "in": {"_count": 1}, "really": {"_count": 1}, "some": {"_count": 1}}, "and": {"_count": 1, "Quirrell": {"_count": 1}}, "silver": {"_count": 1, "like": {"_count": 1}}, "starve": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "just": {"_count": 4, "tired": {"_count": 1}, "a": {"_count": 1}, "make": {"_count": 1}, "raving": {"_count": 1}}, "wait": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 13, "Transmogrifian": {"_count": 1}, "worst": {"_count": 1}, "most": {"_count": 2}, "giant": {"_count": 1}, "best": {"_count": 1}, "only": {"_count": 1}, "ony": {"_count": 1}, "toughest": {"_count": 1}, "two": {"_count": 1}, "ones": {"_count": 1}, "news": {"_count": 1}, "bravest": {"_count": 1}}, "have": {"_count": 5, "to": {"_count": 1}, "all": {"_count": 1}, "had": {"_count": 1}, "left": {"_count": 1}, "re": {"_count": 1}}, "tell": {"_count": 2, "us": {"_count": 2}}, "boasting": {"_count": 1, "about": {"_count": 1}}, "why": {"_count": 3, "YouKnowWho": {"_count": 1}, "anyway": {"_count": 1}, "these": {"_count": 1}}, "still": {"_count": 1, "in": {"_count": 1}}, "top": {"_count": 1, "of": {"_count": 1}}, "thought": {"_count": 2, "it": {"_count": 1}, "they": {"_count": 1}}, "blow": {"_count": 1, "up": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 2}, "a": {"_count": 1}}, "find": {"_count": 1, "himself": {"_count": 1}}, "take": {"_count": 1, "some": {"_count": 1}}, "suspected": {"_count": 1, "what": {"_count": 1}}, "sent": {"_count": 1, "to": {"_count": 1}}, "better": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "didnt": {"_count": 1, "feel": {"_count": 1}}, "washing": {"_count": 1, "down": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 2}}, "misread": {"_count": 1, "the": {"_count": 1}}, "broken": {"_count": 1, "by": {"_count": 1}}, "dont": {"_count": 2, "talk": {"_count": 1}, "remember": {"_count": 1}}, "come": {"_count": 2, "bursting": {"_count": 1}, "to": {"_count": 1}}, "increase": {"_count": 1, "a": {"_count": 1}}, "running": {"_count": 1, "around": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "warm": {"_count": 1, "them": {"_count": 1}}, "do": {"_count": 1, "a": {"_count": 1}}, "blast": {"_count": 1, "us": {"_count": 1}}, "feet": {"_count": 1, "away": {"_count": 1}}, "say": {"_count": 1, "I": {"_count": 1}}, "remind": {"_count": 1, "him": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "get": {"_count": 1, "out": {"_count": 1}}, "keeping": {"_count": 1, "it": {"_count": 1}}, "couldnt": {"_count": 1, "manage": {"_count": 1}}, "felt": {"_count": 1, "a": {"_count": 1}}, "got": {"_count": 1, "plenty": {"_count": 1}}, "should": {"_count": 1, "try": {"_count": 1}}, "more": {"_count": 2, "accurate": {"_count": 1}, "quickly": {"_count": 1}}, "would": {"_count": 2, "said": {"_count": 1}, "have": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "miles": {"_count": 1, "away": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "cant": {"_count": 1, "work": {"_count": 1}}, "been": {"_count": 4, "expecting": {"_count": 1}, "then": {"_count": 1}, "a": {"_count": 1}, "planning": {"_count": 1}}, "asleep": {"_count": 1, "not": {"_count": 1}}, "doesnt": {"_count": 2, "even": {"_count": 1}, "believe": {"_count": 1}}, "no": {"_count": 2, "problem": {"_count": 1}, "more": {"_count": 1}}, "set": {"_count": 1, "Phineas": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "prove": {"_count": 1, "an": {"_count": 1}}, "second": {"_count": 1, "only": {"_count": 1}}, "already": {"_count": 1, "profited": {"_count": 1}}, "persuade": {"_count": 1, "Peeves": {"_count": 1}}, "cheerful": {"_count": 1, "enough": {"_count": 1}}, "not": {"_count": 2, "ready": {"_count": 1}, "Ministry": {"_count": 1}}, "something": {"_count": 1, "Dark": {"_count": 1}}, "hasnt": {"_count": 1, "heard": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "block": {"_count": 1, "all": {"_count": 1}}, "true": {"_count": 1, "of": {"_count": 1}}, "work": {"_count": 1, "Why": {"_count": 1}}, "meant": {"_count": 1, "for": {"_count": 1}}, "on": {"_count": 1, "purpose": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "forever": {"_count": 1, "from": {"_count": 1}}, "told": {"_count": 2, "you": {"_count": 1}, "her": {"_count": 1}}, "look": {"_count": 1, "better": {"_count": 1}}, "tidied": {"_count": 1, "up": {"_count": 1}}, "transfigured": {"_count": 1, "Moody": {"_count": 1}}, "left": {"_count": 1, "a": {"_count": 1}}, "wear": {"_count": 1, "dress": {"_count": 1}}, "starving": {"_count": 1, "for": {"_count": 1}}, "watching": {"_count": 1, "to": {"_count": 1}}, "killed": {"_count": 1, "her": {"_count": 1}}, "another": {"_count": 1, "founders": {"_count": 1}}, "saved": {"_count": 1, "my": {"_count": 1}}, "Neville": {"_count": 1, "and": {"_count": 1}}, "wasnt": {"_count": 1, "": {"_count": 1}}, "worried": {"_count": 1, "about": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "teaching": {"_count": 1, "all": {"_count": 1}}, "move": {"_count": 1, "them": {"_count": 1}}, "help": {"_count": 1, "you": {"_count": 1}}}, "silly": {"_count": 42, "stunt": {"_count": 1, "these": {"_count": 1}}, "Vernon": {"_count": 1, "she": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "Ron": {"_count": 1, "Ive": {"_count": 1}}, "little": {"_count": 3, "troubles": {"_count": 1}, "girl": {"_count": 1}, "cough": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 5, "Hermione": {"_count": 3}, "Mrs": {"_count": 1}, "Ginny": {"_count": 1}}, "weve": {"_count": 1, "all": {"_count": 1}}, "girl": {"_count": 6, "": {"_count": 2}, "they": {"_count": 1}, "she": {"_count": 1}, "Ill": {"_count": 1}, "acted": {"_count": 1}}, "dear": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "school": {"_count": 1, "rule": {"_count": 1}}, "of": {"_count": 2, "me": {"_count": 1}, "course": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 2}}, "she": {"_count": 1, "muttered": {"_count": 1}}, "it": {"_count": 1, "wasnt": {"_count": 1}}, "I": {"_count": 1, "wouldn": {"_count": 1}}, "Harry": {"_count": 3, "Arthur": {"_count": 1}, "said": {"_count": 1}, "Snape": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "Dawlish": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 1, "miss": {"_count": 1}}, "boy": {"_count": 1, "said": {"_count": 1}}, "Molly": {"_count": 1, "said": {"_count": 1}}}, "stunt": {"_count": 1, "these": {"_count": 1, "people": {"_count": 1}}}, "obviously": {"_count": 95, "collecting": {"_count": 1, "for": {"_count": 1}}, "scented": {"_count": 1, "danger": {"_count": 1}}, "not": {"_count": 4, "used": {"_count": 1}, "keen": {"_count": 1}, "been": {"_count": 1}, "foraged": {"_count": 1}}, "been": {"_count": 2, "a": {"_count": 2}}, "tried": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "one": {"_count": 1}}, "guarding": {"_count": 1, "something": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "whittled": {"_count": 1, "it": {"_count": 1}}, "makes": {"_count": 1, "more": {"_count": 1}}, "spotted": {"_count": 1, "some": {"_count": 1}}, "I": {"_count": 2, "cant": {"_count": 1}, "just": {"_count": 1}}, "still": {"_count": 2, "on": {"_count": 1}, "trying": {"_count": 1}}, "thought": {"_count": 4, "he": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}, "Dudley": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "got": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "didnt": {"_count": 1, "need": {"_count": 1}}, "hadnt": {"_count": 2, "noticed": {"_count": 1}, "expected": {"_count": 1}}, "knew": {"_count": 1, "": {"_count": 1}}, "realized": {"_count": 1, "that": {"_count": 1}}, "pleased": {"_count": 1, "that": {"_count": 1}}, "dreading": {"_count": 1, "him": {"_count": 1}}, "visited": {"_count": 1, "Hogsmeade": {"_count": 1}}, "just": {"_count": 2, "seen": {"_count": 1}, "dismissed": {"_count": 1}}, "thinks": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "Malfoys": {"_count": 1}}, "casting": {"_count": 2, "around": {"_count": 2}}, "but": {"_count": 2, "all": {"_count": 1}, "otherwise": {"_count": 1}}, "so": {"_count": 2, "Muggles": {"_count": 1}, "I": {"_count": 1}}, "magical": {"_count": 1, "that": {"_count": 1}}, "very": {"_count": 1, "important": {"_count": 1}}, "felt": {"_count": 1, "the": {"_count": 1}}, "deciding": {"_count": 1, "not": {"_count": 1}}, "gone": {"_count": 2, "down": {"_count": 1}, "to": {"_count": 1}}, "told": {"_count": 1, "Hagrid": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "traveled": {"_count": 1, "miles": {"_count": 1}}, "she": {"_count": 1, "went": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "missed": {"_count": 1, "it": {"_count": 1}}, "flustered": {"_count": 1, "Fudge": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "forgotten": {"_count": 1, "": {"_count": 1}}, "run": {"_count": 1, "here": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "reckons": {"_count": 1, "Trelawneys": {"_count": 1}}, "cured": {"_count": 1, "": {"_count": 1}}, "found": {"_count": 1, "it": {"_count": 1}}, "partisan": {"_count": 1, "He": {"_count": 1}}, "shes": {"_count": 1, "feeling": {"_count": 1}}, "its": {"_count": 1, "some": {"_count": 1}}, "cant": {"_count": 1, "talk": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 1, "know": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "his": {"_count": 1, "left": {"_count": 1}}, "we": {"_count": 2, "would": {"_count": 1}, "need": {"_count": 1}}, "dont": {"_count": 1, "want": {"_count": 1}}, "Ah": {"_count": 1, "you": {"_count": 1}}, "he": {"_count": 1, "wanted": {"_count": 1}}, "showing": {"_count": 1, "off": {"_count": 1}}, "if": {"_count": 1, "youd": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "know": {"_count": 1, "all": {"_count": 1}}, "a": {"_count": 1, "very": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "came": {"_count": 1}}, "repulsed": {"_count": 1, "": {"_count": 1}}, "exhausted": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}}, "collecting": {"_count": 16, "for": {"_count": 1, "something": {"_count": 1}}, "tin": {"_count": 3, "": {"_count": 1}, "upstairs": {"_count": 1}, "under": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "things": {"_count": 1}}, "names": {"_count": 1, "of": {"_count": 1}}, "dry": {"_count": 1, "wood": {"_count": 1}}, "information": {"_count": 1, "for": {"_count": 1}}, "cutlery": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "four": {"_count": 1, "founders": {"_count": 1}}, "more": {"_count": 1, "reasons": {"_count": 1}}, "wood": {"_count": 1, "or": {"_count": 1}}, "water": {"_count": 1, "and": {"_count": 1}}}, "yes": {"_count": 284, "that": {"_count": 3, "would": {"_count": 1}, "occurred": {"_count": 1}, "power": {"_count": 1}}, "their": {"_count": 1, "son": {"_count": 1}}, "said": {"_count": 57, "Mr": {"_count": 5}, "the": {"_count": 4}, "Hagrid": {"_count": 3}, "Harry": {"_count": 4}, "Hermione": {"_count": 10}, "Lockhart": {"_count": 1}, "Neville": {"_count": 2}, "Dumbledore": {"_count": 10}, "Fred": {"_count": 1}, "Lupin": {"_count": 1}, "Moody": {"_count": 1}, "Bagman": {"_count": 1}, "Bode": {"_count": 1}, "Luna": {"_count": 1}, "Nick": {"_count": 1}, "Professor": {"_count": 2}, "Ernie": {"_count": 1}, "Umbridge": {"_count": 3}, "his": {"_count": 1}, "Slughorn": {"_count": 1}, "Voldemort": {"_count": 1}, "Snape": {"_count": 1}, "Ollivander": {"_count": 1}}, "everyones": {"_count": 1, "celebrating": {"_count": 1}}, "youre": {"_count": 2, "right": {"_count": 2}}, "its": {"_count": 3, "all": {"_count": 1}, "a": {"_count": 1}, "Granger": {"_count": 1}}, "Harry": {"_count": 6, "about": {"_count": 1}, "muttered": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "recalled": {"_count": 1}, "I": {"_count": 1}}, "": {"_count": 52, ".": {"_count": 44}, "!": {"_count": 7}, "?": {"_count": 1}}, "they": {"_count": 5, "did": {"_count": 1}, "will": {"_count": 1}, "lied": {"_count": 1}, "do": {"_count": 1}, "must": {"_count": 1}}, "why": {"_count": 1, "not": {"_count": 1}}, "but": {"_count": 9, "great": {"_count": 1}, "luckily": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 2}, "not": {"_count": 2}, "you": {"_count": 1}}, "I": {"_count": 26, "am": {"_count": 3}, "think": {"_count": 5}, "know": {"_count": 3}, "will": {"_count": 1}, "can": {"_count": 1}, "see": {"_count": 2}, "owe": {"_count": 1}, "would": {"_count": 1}, "do": {"_count": 2}, "suppose": {"_count": 2}, "forgot": {"_count": 1}, "did": {"_count": 1}, "have": {"_count": 1}, "expect": {"_count": 1}, "remember": {"_count": 1}}, "and": {"_count": 3, "a": {"_count": 1}, "what": {"_count": 1}, "no": {"_count": 1}}, "he": {"_count": 10, "said": {"_count": 3}, "would": {"_count": 1}, "is": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 1}, "hasnt": {"_count": 1}, "has": {"_count": 1}, "does": {"_count": 1}}, "thats": {"_count": 2, "right": {"_count": 1}, "partly": {"_count": 1}}, "you": {"_count": 6, "too": {"_count": 1}, "do": {"_count": 2}, "did": {"_count": 1}, "were": {"_count": 1}, "have": {"_count": 1}}, "with": {"_count": 3, "humans": {"_count": 1}, "these": {"_count": 1}, "the": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "done": {"_count": 1}}, "sir": {"_count": 2, "said": {"_count": 2}}, "one": {"_count": 2, "could": {"_count": 1}, "of": {"_count": 1}}, "an": {"_count": 2, "excellent": {"_count": 1}, "old": {"_count": 1}}, "the": {"_count": 2, "Shrieking": {"_count": 1}, "Triwizard": {"_count": 1}}, "Professorhead": {"_count": 1, "said": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "theyll": {"_count": 1, "have": {"_count": 1}}, "send": {"_count": 1, "Pig": {"_count": 1}}, "sorry": {"_count": 2, "about": {"_count": 1}, "dear": {"_count": 1}}, "so": {"_count": 1, "it": {"_count": 1}}, "theres": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 3, "fine": {"_count": 1}, "sure": {"_count": 1}, "staying": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "Ive": {"_count": 1, "never": {"_count": 1}}, "yes": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "lets": {"_count": 2, "do": {"_count": 1}, "go": {"_count": 1}}, "hes": {"_count": 3, "got": {"_count": 1}, "alive": {"_count": 1}, "fine": {"_count": 1}}, "Winky": {"_count": 1, "said": {"_count": 1}}, "Bagman": {"_count": 1, "said": {"_count": 1}}, "very": {"_count": 4, "easy": {"_count": 1}, "proud": {"_count": 1}, "well": {"_count": 1}, "handsome": {"_count": 1}}, "Professor": {"_count": 2, "but": {"_count": 1}, "McGonagall": {"_count": 1}}, "of": {"_count": 6, "course": {"_count": 6}}, "thank": {"_count": 1, "you": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 7, "is": {"_count": 1}, "said": {"_count": 4}, "arrived": {"_count": 1}, "was": {"_count": 1}}, "good": {"_count": 1, "point": {"_count": 1}}, "Dumbledores": {"_count": 1, "excellent": {"_count": 1}}, "we": {"_count": 4, "were": {"_count": 1}, "know": {"_count": 2}, "are": {"_count": 1}}, "hospital": {"_count": 1, "wing": {"_count": 1}}, "Alice": {"_count": 1, "dear": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "His": {"_count": 1, "mouth": {"_count": 1}}, "do": {"_count": 1, "said": {"_count": 1}}, "tiny": {"_count": 1, "": {"_count": 1}}, "fine": {"_count": 1, "said": {"_count": 1}}, "Bellatrix": {"_count": 1, "I": {"_count": 1}}, "Kreacher": {"_count": 1, "belongs": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "conceded": {"_count": 1, "Fred": {"_count": 1}}, "circulations": {"_count": 1, "well": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "there": {"_count": 2, "is": {"_count": 1}, "you": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "if": {"_count": 2, "youve": {"_count": 1}, "you": {"_count": 1}}, "Dobby": {"_count": 1, "will": {"_count": 1}}, "thisll": {"_count": 1, "make": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "says": {"_count": 1, "Skeeter": {"_count": 1}}, "weve": {"_count": 1, "developed": {"_count": 1}}, "zis": {"_count": 1, "will": {"_count": 1}}, "shes": {"_count": 2, "been": {"_count": 1}, "had": {"_count": 1}}, "moaned": {"_count": 1, "Kreacher": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "a": {"_count": 1, "boy": {"_count": 1}}, "supplied": {"_count": 1, "Lavender": {"_count": 1}}, "Id": {"_count": 2, "like": {"_count": 2}}, "theyre": {"_count": 1, "arguing": {"_count": 1}}}, "moved": {"_count": 313, "on": {"_count": 12, "and": {"_count": 3}, "to": {"_count": 3}, "quickly": {"_count": 1}, "continuing": {"_count": 1}, "again": {"_count": 1}, "he": {"_count": 1}, "down": {"_count": 1}, "through": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 2}, "once": {"_count": 1}}, "in": {"_count": 10, "front": {"_count": 2}, "yesterday": {"_count": 1}, "convoy": {"_count": 1}, "for": {"_count": 1}, "closer": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "silence": {"_count": 1}}, "into": {"_count": 13, "Dudleys": {"_count": 1}, "the": {"_count": 9}, "action": {"_count": 1}, "his": {"_count": 1}, "June": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 3}, "in": {"_count": 1}}, "closer": {"_count": 15, "to": {"_count": 10}, "together": {"_count": 1}, "": {"_count": 2}, "scared": {"_count": 1}, "and": {"_count": 1}}, "off": {"_count": 8, "all": {"_count": 1}, "along": {"_count": 2}, "into": {"_count": 1}, "around": {"_count": 1}, "through": {"_count": 1}, "gathering": {"_count": 1}, "to": {"_count": 1}}, "from": {"_count": 8, "Gringotts": {"_count": 1}, "Scabbers": {"_count": 1}, "the": {"_count": 3}, "Harry": {"_count": 1}, "side": {"_count": 1}, "room": {"_count": 1}}, "nearer": {"_count": 3, "to": {"_count": 3}}, "to": {"_count": 6, "a": {"_count": 3}, "stand": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 8, ".": {"_count": 6}, "!": {"_count": 2}}, "forward": {"_count": 35, "two": {"_count": 1}, "toward": {"_count": 1}, "between": {"_count": 1}, "beaming": {"_count": 1}, "": {"_count": 5}, "into": {"_count": 6}, "looking": {"_count": 1}, "to": {"_count": 4}, "and": {"_count": 2}, "a": {"_count": 3}, "in": {"_count": 2}, "but": {"_count": 1}, "covered": {"_count": 1}, "the": {"_count": 1}, "quietly": {"_count": 1}, "too": {"_count": 1}, "as": {"_count": 1}, "rather": {"_count": 1}, "until": {"_count": 1}}, "silently": {"_count": 2, "wherever": {"_count": 1}, "mouthing": {"_count": 1}}, "three": {"_count": 1, "spaces": {"_count": 1}}, "close": {"_count": 4, "behind": {"_count": 2}, "to": {"_count": 1}, "by": {"_count": 1}}, "aside": {"_count": 4, "he": {"_count": 1}, "for": {"_count": 1}, "when": {"_count": 1}, "to": {"_count": 1}}, "gladly": {"_count": 1, "into": {"_count": 1}}, "back": {"_count": 5, "into": {"_count": 2}, "and": {"_count": 1}, "up": {"_count": 1}, "toward": {"_count": 1}}, "his": {"_count": 8, "aching": {"_count": 1}, "head": {"_count": 3}, "flashlight": {"_count": 1}, "eyes": {"_count": 1}, "hand": {"_count": 1}, "foot": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "automatically": {"_count": 1, "toward": {"_count": 1}}, "slowly": {"_count": 9, "toward": {"_count": 2}, "up": {"_count": 1}, "upward": {"_count": 2}, "forward": {"_count": 1}, "among": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 4, "tip": {"_count": 1}, "harder": {"_count": 1}, "heavy": {"_count": 1}, "dark": {"_count": 1}}, "abruptly": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "with": {"_count": 1}, "now": {"_count": 1}}, "steadily": {"_count": 1, "north": {"_count": 1}}, "or": {"_count": 3, "made": {"_count": 2}, "said": {"_count": 1}}, "around": {"_count": 6, "to": {"_count": 1}, "the": {"_count": 3}, "and": {"_count": 1}, "behind": {"_count": 1}}, "away": {"_count": 8, "leaving": {"_count": 1}, "": {"_count": 3}, "toward": {"_count": 1}, "Angelina": {"_count": 1}, "from": {"_count": 2}}, "but": {"_count": 3, "no": {"_count": 1}, "was": {"_count": 1}, "there": {"_count": 1}}, "all": {"_count": 1, "these": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "faster": {"_count": 2, "so": {"_count": 1}, "than": {"_count": 1}}, "toward": {"_count": 18, "the": {"_count": 6}, "her": {"_count": 2}, "Uncle": {"_count": 1}, "each": {"_count": 1}, "him": {"_count": 3}, "them": {"_count": 1}, "it": {"_count": 1}, "Borgin": {"_count": 1}, "March": {"_count": 1}, "Neville": {"_count": 1}}, "over": {"_count": 10, "so": {"_count": 1}, "to": {"_count": 7}, "the": {"_count": 2}}, "as": {"_count": 2, "fast": {"_count": 1}, "if": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 2, "behind": {"_count": 1}, "around": {"_count": 1}}, "them": {"_count": 1, "away": {"_count": 1}}, "ever": {"_count": 1, "so": {"_count": 1}}, "so": {"_count": 4, "easily": {"_count": 1}, "quickly": {"_count": 1}, "fast": {"_count": 2}}, "farther": {"_count": 2, "north": {"_count": 1}, "along": {"_count": 1}}, "nor": {"_count": 2, "spoke": {"_count": 2}}, "it": {"_count": 4, "carefully": {"_count": 1}, "was": {"_count": 1}, "gently": {"_count": 1}, "in": {"_count": 1}}, "right": {"_count": 1, "up": {"_count": 1}}, "very": {"_count": 1, "gracefully": {"_count": 1}}, "Harry": {"_count": 1, "a": {"_count": 1}}, "noisily": {"_count": 1, "toward": {"_count": 1}}, "behind": {"_count": 1, "Krum": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "except": {"_count": 2, "Wormtail": {"_count": 1}, "for": {"_count": 1}}, "uncomfortably": {"_count": 1, "but": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "about": {"_count": 1, "two": {"_count": 1}}, "a": {"_count": 4, "few": {"_count": 1}, "little": {"_count": 2}, "muscle": {"_count": 1}}, "carefully": {"_count": 2, "and": {"_count": 1}, "into": {"_count": 1}}, "swiftly": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "their": {"_count": 1, "argument": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "hovering": {"_count": 1, "inches": {"_count": 1}}, "slightly": {"_count": 1, "but": {"_count": 1}}, "stop": {"_count": 1, "your": {"_count": 1}}, "across": {"_count": 6, "to": {"_count": 4}, "the": {"_count": 1}, "this": {"_count": 1}}, "sideways": {"_count": 1, "out": {"_count": 1}}, "restlessly": {"_count": 1, "to": {"_count": 1}}, "even": {"_count": 1, "farther": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}, "no": {"_count": 2, "more": {"_count": 2}}, "her": {"_count": 2, "head": {"_count": 1}, "cauldron": {"_count": 1}}, "instinctively": {"_count": 1, "together": {"_count": 1}}, "deeper": {"_count": 2, "into": {"_count": 2}}, "fairly": {"_count": 1, "quickly": {"_count": 1}}, "smoothly": {"_count": 1, "away": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "curiously": {"_count": 1, "over": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 2}}, "among": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "their": {"_count": 1}}, "dreamlike": {"_count": 1, "through": {"_count": 1}}, "shimmering": {"_count": 1, "insubstantially": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "tonight": {"_count": 2, "I": {"_count": 1}, "and": {"_count": 1}}, "there": {"_count": 1, "after": {"_count": 1}}, "rapidly": {"_count": 1, "between": {"_count": 1}}, "elsewhere": {"_count": 1, "the": {"_count": 1}}, "Bathilda": {"_count": 1, "shook": {"_count": 1}}, "weirdly": {"_count": 1, "He": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "to": {"_count": 1}}, "absentmindedly": {"_count": 1, "to": {"_count": 1}}, "house": {"_count": 1, "put": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Voldemorts": {"_count": 1, "body": {"_count": 1}}}, "few": {"_count": 686, "minutes": {"_count": 45, "later": {"_count": 13}, "he": {"_count": 1}, "in": {"_count": 1}, "there": {"_count": 2}, "Ron": {"_count": 1}, "progress": {"_count": 1}, "then": {"_count": 1}, "were": {"_count": 1}, "when": {"_count": 3}, "for": {"_count": 1}, "the": {"_count": 2}, "craning": {"_count": 1}, "whispered": {"_count": 1}, "she": {"_count": 2}, "just": {"_count": 1}, "they": {"_count": 1}, "however": {"_count": 2}, "late": {"_count": 2}, "ago": {"_count": 1}, "since": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 3}, "before": {"_count": 1}, "silence": {"_count": 1}}, "words": {"_count": 16, "of": {"_count": 4}, "": {"_count": 6}, "were": {"_count": 1}, "with": {"_count": 3}, "nitwit": {"_count": 1}, "could": {"_count": 1}}, "seconds": {"_count": 79, "before": {"_count": 11}, "and": {"_count": 5}, "there": {"_count": 1}, "the": {"_count": 3}, "later": {"_count": 10}, "silence": {"_count": 1}, "then": {"_count": 11}, "they": {"_count": 5}, "he": {"_count": 6}, "for": {"_count": 1}, "Frank": {"_count": 1}, "as": {"_count": 2}, "Crouch": {"_count": 1}, "pause": {"_count": 1}, "pain": {"_count": 1}, "": {"_count": 2}, "when": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 3}, "to": {"_count": 2}, "swishing": {"_count": 1}, "start": {"_count": 1}, "Voldemort": {"_count": 1}, "of": {"_count": 2}, "Buckbeak": {"_count": 1}, "Riddle": {"_count": 1}, "Dobby": {"_count": 1}, "late": {"_count": 1}, "it": {"_count": 1}}, "hours": {"_count": 21, "time": {"_count": 3}, "but": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "ago": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 5}, "sleep": {"_count": 1}, "Hermione": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "break": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}}, "weeks": {"_count": 23, "being": {"_count": 1}, "": {"_count": 6}, "ago": {"_count": 5}, "said": {"_count": 1}, "had": {"_count": 1}, "but": {"_count": 1}, "back": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 1}, "previously": {"_count": 1}, "with": {"_count": 1}, "wed": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 1}}, "of": {"_count": 43, "his": {"_count": 3}, "our": {"_count": 2}, "these": {"_count": 1}, "you": {"_count": 1}, "them": {"_count": 10}, "their": {"_count": 2}, "my": {"_count": 1}, "the": {"_count": 16}, "us": {"_count": 2}, "those": {"_count": 1}, "mine": {"_count": 1}, "which": {"_count": 1}, "Uncle": {"_count": 1}, "your": {"_count": 1}}, "deep": {"_count": 1, "breaths": {"_count": 1}}, "even": {"_count": 1, "forced": {"_count": 1}}, "moldy": {"_count": 1, "blankets": {"_count": 1}}, "old": {"_count": 1, "women": {"_count": 1}}, "weeds": {"_count": 1, "": {"_count": 1}}, "books": {"_count": 2, "with": {"_count": 1}, "into": {"_count": 1}}, "carriages": {"_count": 1, "were": {"_count": 1}}, "moments": {"_count": 40, "then": {"_count": 4}, "to": {"_count": 3}, "pain": {"_count": 1}, "later": {"_count": 6}, "he": {"_count": 5}, "passed": {"_count": 1}, "of": {"_count": 1}, "before": {"_count": 5}, "": {"_count": 4}, "still": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "wishing": {"_count": 1}, "Slughorn": {"_count": 1}, "you": {"_count": 1}, "in": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}}, "simple": {"_count": 2, "spells": {"_count": 2}}, "extra": {"_count": 2, "books": {"_count": 1}, "jabs": {"_count": 1}}, "people": {"_count": 21, "nodded": {"_count": 1}, "laughed": {"_count": 2}, "below": {"_count": 1}, "have": {"_count": 1}, "smiled": {"_count": 1}, "know": {"_count": 1}, "had": {"_count": 1}, "screamed": {"_count": 1}, "said": {"_count": 1}, "gasped": {"_count": 1}, "kept": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 2}, "looked": {"_count": 1}, "weve": {"_count": 1}, "before": {"_count": 1}, "mumbled": {"_count": 1}, "who": {"_count": 1}, "out": {"_count": 1}}, "more": {"_count": 26, "words": {"_count": 2}, "slimy": {"_count": 1}, "months": {"_count": 1}, "hours": {"_count": 1}, "feet": {"_count": 2}, "minutes": {"_count": 2}, "inches": {"_count": 1}, "seconds": {"_count": 3}, "books": {"_count": 1}, "witches": {"_count": 1}, "accidents": {"_count": 1}, "painful": {"_count": 1}, "details": {"_count": 1}, "good": {"_count": 1}, "of": {"_count": 1}, "sprouts": {"_count": 1}, "ingredients": {"_count": 1}, "people": {"_count": 2}, "cries": {"_count": 1}, "or": {"_count": 1}}, "startofterm": {"_count": 1, "notices": {"_count": 1}}, "who": {"_count": 4, "did": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}, "attended": {"_count": 1}}, "lines": {"_count": 2, "with": {"_count": 1}, "of": {"_count": 1}}, "funny": {"_count": 1, "words": {"_count": 1}}, "that": {"_count": 1, "did": {"_count": 1}}, "feet": {"_count": 25, "and": {"_count": 1}, "from": {"_count": 3}, "along": {"_count": 1}, "away": {"_count": 7}, "above": {"_count": 3}, "behind": {"_count": 1}, "": {"_count": 2}, "carrying": {"_count": 1}, "farther": {"_count": 1}, "to": {"_count": 2}, "of": {"_count": 1}, "into": {"_count": 1}, "below": {"_count": 1}}, "embers": {"_count": 1, "were": {"_count": 1}}, "wellchosen": {"_count": 2, "words": {"_count": 1}, "comments": {"_count": 1}}, "owls": {"_count": 1, "that": {"_count": 1}}, "things": {"_count": 6, "we": {"_count": 1}, "I": {"_count": 1}, "straight": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 1}, "quite": {"_count": 1}}, "drinks": {"_count": 2, "an": {"_count": 1}, "tonight": {"_count": 1}}, "days": {"_count": 47, "Ive": {"_count": 1}, "ago": {"_count": 4}, "dodging": {"_count": 1}, "before": {"_count": 4}, "the": {"_count": 1}, "": {"_count": 11}, "alone": {"_count": 1}, "were": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "later": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "after": {"_count": 2}, "that": {"_count": 1}, "of": {"_count": 1}, "time": {"_count": 3}, "hoping": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "Ron": {"_count": 1}, "over": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "or": {"_count": 1}, "making": {"_count": 1}, "previously": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "lastminute": {"_count": 2, "points": {"_count": 1}, "stragglers": {"_count": 1}}, "good": {"_count": 1, "compliments": {"_count": 1}}, "shrinking": {"_count": 1, "door": {"_count": 1}}, "ah": {"_count": 1, "items": {"_count": 1}}, "splinters": {"_count": 1, "": {"_count": 1}}, "horrible": {"_count": 1, "seconds": {"_count": 1}}, "notices": {"_count": 2, "": {"_count": 2}}, "years": {"_count": 13, "the": {"_count": 1}, "later": {"_count": 1}, "older": {"_count": 1}, "": {"_count": 1}, "Lees": {"_count": 1}, "above": {"_count": 1}, "and": {"_count": 1}, "ago": {"_count": 1}, "if": {"_count": 1}, "back": {"_count": 1}, "before": {"_count": 1}, "in": {"_count": 1}, "seemed": {"_count": 1}}, "paces": {"_count": 7, "past": {"_count": 1}, "when": {"_count": 1}, "beaming": {"_count": 1}, "and": {"_count": 1}, "nearer": {"_count": 1}, "or": {"_count": 1}, "beyond": {"_count": 1}}, "candles": {"_count": 1, "burning": {"_count": 1}}, "questions": {"_count": 3, "without": {"_count": 1}, "answered": {"_count": 1}, "for": {"_count": 1}}, "inches": {"_count": 22, "so": {"_count": 1}, "over": {"_count": 1}, "off": {"_count": 3}, "above": {"_count": 2}, "and": {"_count": 2}, "to": {"_count": 2}, "from": {"_count": 2}, "distance": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}, "as": {"_count": 1}, "behind": {"_count": 1}, "of": {"_count": 1}, "Harry": {"_count": 1}, "along": {"_count": 1}, "between": {"_count": 1}}, "wisps": {"_count": 1, "of": {"_count": 1}}, "loose": {"_count": 1, "pages": {"_count": 1}}, "games": {"_count": 1, "of": {"_count": 1}}, "small": {"_count": 1, "differences": {"_count": 1}}, "pimples": {"_count": 1, "": {"_count": 1}}, "nights": {"_count": 1, "time": {"_count": 1}}, "seats": {"_count": 3, "down": {"_count": 1}, "along": {"_count": 2}}, "steps": {"_count": 22, "and": {"_count": 4}, "the": {"_count": 1}, "below": {"_count": 1}, "closer": {"_count": 2}, "he": {"_count": 2}, "at": {"_count": 1}, "over": {"_count": 1}, "forward": {"_count": 2}, "backward": {"_count": 1}, "leading": {"_count": 1}, "of": {"_count": 1}, "they": {"_count": 1}, "by": {"_count": 1}, "down": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "cauldrons": {"_count": 1, "away": {"_count": 1}}, "drops": {"_count": 5, "of": {"_count": 1}, "down": {"_count": 1}, "on": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}}, "square": {"_count": 1, "meals": {"_count": 1}}, "curious": {"_count": 1, "looks": {"_count": 1}}, "lessons": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "older": {"_count": 1, "students": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "fragments": {"_count": 1, "Fudges": {"_count": 1}}, "short": {"_count": 4, "hours": {"_count": 1}, "weeks": {"_count": 1}, "years": {"_count": 1}, "steps": {"_count": 1}}, "goals": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "crucial": {"_count": 2, "seconds": {"_count": 1}, "lessons": {"_count": 1}}, "times": {"_count": 3, "yeh": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}}, "ferret": {"_count": 1, "bones": {"_count": 1}}, "yards": {"_count": 5, "away": {"_count": 2}, "apart": {"_count": 1}, "that": {"_count": 1}, "from": {"_count": 1}}, "sparks": {"_count": 1, "shot": {"_count": 1}}, "tricks": {"_count": 3, "": {"_count": 1}, "up": {"_count": 1}, "from": {"_count": 1}}, "fires": {"_count": 1, "that": {"_count": 1}}, "hurried": {"_count": 1, "steps": {"_count": 1}}, "wizards": {"_count": 6, "know": {"_count": 1}, "have": {"_count": 1}, "choose": {"_count": 1}, "could": {"_count": 1}, "realize": {"_count": 1}, "believe": {"_count": 1}}, "Owl": {"_count": 1, "Treats": {"_count": 1}}, "diffrent": {"_count": 1, "things": {"_count": 1}}, "seemed": {"_count": 1, "mildly": {"_count": 1}}, "had": {"_count": 1, "wrapped": {"_count": 1}}, "places": {"_count": 1, "away": {"_count": 1}}, "months": {"_count": 8, "on": {"_count": 1}, "older": {"_count": 1}, "ago": {"_count": 1}, "of": {"_count": 2}, "in": {"_count": 1}, "Tom": {"_count": 1}, "one": {"_count": 1}}, "fingers": {"_count": 1, "to": {"_count": 1}}, "notches": {"_count": 1, "": {"_count": 1}}, "pointers": {"_count": 1, "if": {"_count": 1}}, "rules": {"_count": 1, "Harry": {"_count": 1}}, "o": {"_count": 5, "these": {"_count": 1}, "course": {"_count": 1}, "the": {"_count": 2}, "them": {"_count": 1}}, "twigs": {"_count": 2, "and": {"_count": 2}}, "pages": {"_count": 4, "said": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 1}}, "hexes": {"_count": 1, "wouldnt": {"_count": 1}}, "mouthfuls": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "heads": {"_count": 1, "turned": {"_count": 1}}, "laughs": {"_count": 2, "": {"_count": 2}}, "feathers": {"_count": 1, "and": {"_count": 1}}, "glorious": {"_count": 1, "moments": {"_count": 1}}, "fights": {"_count": 1, "": {"_count": 1}}, "stray": {"_count": 1, "doxies": {"_count": 1}}, "nodded": {"_count": 1, "but": {"_count": 1}}, "other": {"_count": 1, "members": {"_count": 1}}, "laws": {"_count": 1, "yourself": {"_count": 1}}, "tentative": {"_count": 1, "steps": {"_count": 1}}, "including": {"_count": 1, "Madam": {"_count": 1}}, "still": {"_count": 1, "staring": {"_count": 1}}, "students": {"_count": 2, "joined": {"_count": 1}, "ran": {"_count": 1}}, "Extendable": {"_count": 1, "Ears": {"_count": 1}}, "screwedup": {"_count": 1, "bits": {"_count": 1}}, "wood": {"_count": 1, "lice": {"_count": 1}}, "distant": {"_count": 1, "owls": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "openly": {"_count": 1, "laughing": {"_count": 1}}, "Gryffindors": {"_count": 1, "looked": {"_count": 1}}, "unbruised": {"_count": 1, "bits": {"_count": 1}}, "chipped": {"_count": 1, "dummies": {"_count": 1}}, "sticky": {"_count": 1, "spots": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "elf": {"_count": 1, "hats": {"_count": 1}}, "Hogsmeaders": {"_count": 1, "were": {"_count": 1}}, "happy": {"_count": 1, "moments": {"_count": 1}}, "tables": {"_count": 1, "away": {"_count": 1}}, "rows": {"_count": 1, "below": {"_count": 1}}, "Patronuses": {"_count": 1, "people": {"_count": 1}}, "flitted": {"_count": 1, "into": {"_count": 1}}, "points": {"_count": 2, "from": {"_count": 1}, "youd": {"_count": 1}}, "stairs": {"_count": 4, "in": {"_count": 2}, "to": {"_count": 1}, "and": {"_count": 1}}, "manners": {"_count": 1, "Id": {"_count": 1}}, "doors": {"_count": 1, "he": {"_count": 1}}, "desks": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "rubies": {"_count": 1, "retreated": {"_count": 1}}, "feeble": {"_count": 1, "remonstrances": {"_count": 1}}, "followers": {"_count": 1, "left": {"_count": 1}}, "the": {"_count": 1, "Dark": {"_count": 1}}, "matters": {"_count": 1, "we": {"_count": 1}}, "benches": {"_count": 1, "": {"_count": 1}}, "houses": {"_count": 1, "": {"_count": 1}}, "creature": {"_count": 1, "comforts": {"_count": 1}}, "windows": {"_count": 1, "were": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "rather": {"_count": 1, "stunnedlooking": {"_count": 1}}, "footsteps": {"_count": 1, "were": {"_count": 1}}, "potions": {"_count": 1, "for": {"_count": 1}}, "Ministry": {"_count": 1, "leaflets": {"_count": 1}}, "backflips": {"_count": 1, "": {"_count": 1}}, "occasions": {"_count": 1, "when": {"_count": 1}}, "rising": {"_count": 1, "stars": {"_count": 1}}, "practices": {"_count": 1, "their": {"_count": 1}}, "interviews": {"_count": 1, "say": {"_count": 1}}, "with": {"_count": 1, "this": {"_count": 1}}, "Ravenclaws": {"_count": 2, "all": {"_count": 1}, "who": {"_count": 1}}, "pinches": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "whom": {"_count": 1}}, "well": {"_count": 1, "do": {"_count": 1}}, "leaves": {"_count": 1, "for": {"_count": 1}}, "nice": {"_count": 1, "things": {"_count": 1}}, "would": {"_count": 1, "want": {"_count": 1}}, "large": {"_count": 1, "chunks": {"_count": 1}}, "streetlamps": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "thumped": {"_count": 1, "the": {"_count": 1}}, "real": {"_count": 1, "friends": {"_count": 1}}, "faltering": {"_count": 1, "steps": {"_count": 1}}, "really": {"_count": 1, "foolproof": {"_count": 1}}, "substances": {"_count": 1, "as": {"_count": 1}}, "personal": {"_count": 1, "bequests": {"_count": 1}}, "veela": {"_count": 1, "cousins": {"_count": 1}}, "butterbeers": {"_count": 1, "from": {"_count": 1}}, "strides": {"_count": 1, "and": {"_count": 1}}, "hairs": {"_count": 1, "from": {"_count": 1}}, "pureblood": {"_count": 1, "families": {"_count": 1}}, "salmon": {"_count": 1, "in": {"_count": 1}}, "tiny": {"_count": 1, "movements": {"_count": 1}}, "outsiders": {"_count": 1, "who": {"_count": 1}}, "miles": {"_count": 1, "farther": {"_count": 1}}, "scratches": {"_count": 1, "": {"_count": 1}}, "bars": {"_count": 1, "of": {"_count": 1}}, "Order": {"_count": 1, "members": {"_count": 1}}, "degrees": {"_count": 1, "when": {"_count": 1}}, "Griphookfree": {"_count": 1, "moments": {"_count": 1}}, "passersby": {"_count": 1, "pleading": {"_count": 1}}, "long": {"_count": 1, "fingers": {"_count": 1}}, "broomsticks": {"_count": 1, "propped": {"_count": 1}}, "whoops": {"_count": 1, "Ron": {"_count": 1}}, "Slytherins": {"_count": 1, "hostage": {"_count": 1}}, "goes": {"_count": 1, "to": {"_count": 1}}, "objects": {"_count": 1, "unburned": {"_count": 1}}, "leafless": {"_count": 1, "trees": {"_count": 1}}, "scruples": {"_count": 1, "": {"_count": 1}}}, "minutes": {"_count": 306, "later": {"_count": 57, "Mr": {"_count": 1}, "they": {"_count": 7}, "he": {"_count": 5}, "but": {"_count": 1}, "Ron": {"_count": 2}, "as": {"_count": 3}, "four": {"_count": 1}, "Snape": {"_count": 1}, "carrying": {"_count": 2}, "could": {"_count": 2}, "Errol": {"_count": 1}, "with": {"_count": 1}, "by": {"_count": 1}, "in": {"_count": 1}, "looking": {"_count": 3}, "you": {"_count": 1}, "the": {"_count": 4}, "surrounded": {"_count": 1}, "uttering": {"_count": 1}, "Harry": {"_count": 1}, "holding": {"_count": 2}, "catching": {"_count": 2}, "": {"_count": 5}, "what": {"_count": 1}, "Professor": {"_count": 1}, "was": {"_count": 1}, "fully": {"_count": 1}, "to": {"_count": 1}, "Hermione": {"_count": 1}, "handing": {"_count": 1}, "heading": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "time": {"_count": 6, "": {"_count": 4}, "I": {"_count": 1}, "Zabini": {"_count": 1}}, "to": {"_count": 26, "go": {"_count": 8}, "get": {"_count": 5}, "disappear": {"_count": 1}, "explain": {"_count": 1}, "eight": {"_count": 1}, "catch": {"_count": 1}, "spare": {"_count": 1}, "midnight": {"_count": 2}, "reach": {"_count": 1}, "appreciate": {"_count": 1}, "track": {"_count": 1}, "realize": {"_count": 1}, "and": {"_count": 1}, "untie": {"_count": 1}}, "he": {"_count": 6, "stammered": {"_count": 1}, "was": {"_count": 3}, "sat": {"_count": 1}, "said": {"_count": 1}}, "left": {"_count": 6, "to": {"_count": 2}, "for": {"_count": 1}, "you": {"_count": 1}, "everyone": {"_count": 1}, "until": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 25}, "!": {"_count": 3}, "?": {"_count": 5}}, "crept": {"_count": 1, "by": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "dragged": {"_count": 1, "by": {"_count": 1}}, "ago": {"_count": 13, "she": {"_count": 2}, "off": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}, "I": {"_count": 1}, "its": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "weaving": {"_count": 1, "about": {"_count": 1}}, "Harry": {"_count": 5, "pleaded": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "heard": {"_count": 1}, "sat": {"_count": 1}}, "only": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 2, "OUT": {"_count": 1}, "we": {"_count": 1}}, "past": {"_count": 3, "nine": {"_count": 3}}, "there": {"_count": 3, "was": {"_count": 3}}, "after": {"_count": 4, "that": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "Id": {"_count": 1}}, "and": {"_count": 4, "no": {"_count": 1}, "looking": {"_count": 1}, "Harry": {"_count": 1}, "hes": {"_count": 1}}, "Ron": {"_count": 4, "stretched": {"_count": 1}, "even": {"_count": 1}, "finishing": {"_count": 1}, "stood": {"_count": 1}}, "late": {"_count": 4, "do": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 10, "Harry": {"_count": 2}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "Alicia": {"_count": 1}, "Hermione": {"_count": 1}, "when": {"_count": 1}, "striding": {"_count": 1}, "Kreacher": {"_count": 1}, "had": {"_count": 1}}, "start": {"_count": 1, "now": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "snailed": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 10, "class": {"_count": 1}, "trees": {"_count": 2}, "paper": {"_count": 1}, "scene": {"_count": 1}, "silence": {"_count": 1}, "room": {"_count": 2}, "whole": {"_count": 1}, "boat": {"_count": 1}}, "or": {"_count": 6, "so": {"_count": 6}}, "had": {"_count": 3, "already": {"_count": 2}, "passed": {"_count": 1}}, "they": {"_count": 3, "followed": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 1}}, "not": {"_count": 1, "speaking": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "progress": {"_count": 1, "up": {"_count": 1}}, "alone": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 3, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "then": {"_count": 3, "Hermione": {"_count": 1}, "add": {"_count": 1}, "we": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "entering": {"_count": 1}}, "when": {"_count": 6, "Professor": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 2}, "Angelinas": {"_count": 1}, "Harry": {"_count": 1}}, "head": {"_count": 1, "start": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "Nevilles": {"_count": 1}}, "frantic": {"_count": 1, "searching": {"_count": 1}}, "Rons": {"_count": 1, "large": {"_count": 1}}, "until": {"_count": 4, "Dumbledore": {"_count": 1}, "they": {"_count": 1}, "were": {"_count": 1}, "midnight": {"_count": 1}}, "however": {"_count": 4, "when": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "Bill": {"_count": 1}}, "a": {"_count": 2, "small": {"_count": 1}, "procession": {"_count": 1}}, "talking": {"_count": 1, "and": {"_count": 1}}, "Ireland": {"_count": 2, "had": {"_count": 2}}, "she": {"_count": 3, "had": {"_count": 1}, "got": {"_count": 1}, "returned": {"_count": 1}}, "was": {"_count": 1, "asked": {"_count": 1}}, "hard": {"_count": 1, "work": {"_count": 1}}, "afterward": {"_count": 1, "before": {"_count": 1}}, "but": {"_count": 2, "kept": {"_count": 1}, "it": {"_count": 1}}, "craning": {"_count": 1, "his": {"_count": 1}}, "whispered": {"_count": 1, "conversation": {"_count": 1}}, "five": {"_count": 1, "in": {"_count": 1}}, "playing": {"_count": 1, "hangman": {"_count": 1}}, "conversation": {"_count": 1, "with": {"_count": 1}}, "passed": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "of": {"_count": 3, "their": {"_count": 1}, "agony": {"_count": 1}, "this": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "feet": {"_count": 1}}, "so": {"_count": 2, "I": {"_count": 1}, "Ill": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "Cho": {"_count": 1, "mentioned": {"_count": 1}}, "checking": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 2}}, "by": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "quivering": {"_count": 1, "silence": {"_count": 1}}, "since": {"_count": 1, "seven": {"_count": 1}}, "warning": {"_count": 1, "": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "that": {"_count": 1}}, "stretched": {"_count": 1, "into": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "silence": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "with": {"_count": 1, "my": {"_count": 1}}, "also": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "like": {"_count": 1, "softly": {"_count": 1}}}, "later": {"_count": 382, "Mr": {"_count": 4, "Dursley": {"_count": 1}, "Weasley": {"_count": 3}}, "Dudleys": {"_count": 1, "best": {"_count": 1}}, "Harry": {"_count": 19, "who": {"_count": 1}, "kept": {"_count": 1}, "heart": {"_count": 1}, "knew": {"_count": 1}, "woke": {"_count": 1}, "Ron": {"_count": 1}, "spotted": {"_count": 1}, "he": {"_count": 1}, "realized": {"_count": 2}, "heard": {"_count": 1}, "muttered": {"_count": 2}, "found": {"_count": 1}, "and": {"_count": 2}, "took": {"_count": 1}, "had": {"_count": 1}, "sensed": {"_count": 1}}, "wishing": {"_count": 1, "he": {"_count": 1}}, "life": {"_count": 3, "": {"_count": 2}, "that": {"_count": 1}}, "they": {"_count": 28, "had": {"_count": 6}, "were": {"_count": 8}, "stood": {"_count": 1}, "left": {"_count": 1}, "headed": {"_count": 1}, "burst": {"_count": 1}, "found": {"_count": 1}, "heard": {"_count": 7}, "reluctantly": {"_count": 1}, "turned": {"_count": 1}}, "but": {"_count": 5, "Uncle": {"_count": 1}, "everybody": {"_count": 1}, "it": {"_count": 1}, "did": {"_count": 1}, "thought": {"_count": 1}}, "there": {"_count": 5, "was": {"_count": 5}}, "than": {"_count": 4, "July": {"_count": 1}, "I": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 1}}, "Harrys": {"_count": 6, "huge": {"_count": 1}, "mind": {"_count": 1}, "feet": {"_count": 2}, "lungs": {"_count": 1}, "glasses": {"_count": 1}}, "he": {"_count": 25, "had": {"_count": 4}, "and": {"_count": 1}, "understood": {"_count": 1}, "crawled": {"_count": 1}, "recognized": {"_count": 1}, "came": {"_count": 1}, "was": {"_count": 3}, "heard": {"_count": 2}, "said": {"_count": 3}, "felt": {"_count": 1}, "would": {"_count": 2}, "realized": {"_count": 1}, "could": {"_count": 1}, "moved": {"_count": 1}, "wears": {"_count": 1}, "lay": {"_count": 1}}, "then": {"_count": 5, "": {"_count": 3}, "said": {"_count": 1}, "Hagrid": {"_count": 1}}, "Hermione": {"_count": 5, "Granger": {"_count": 1}, "slithered": {"_count": 1}, "arrived": {"_count": 1}, "emerged": {"_count": 1}, "who": {"_count": 1}}, "the": {"_count": 16, "hat": {"_count": 1}, "desserts": {"_count": 1}, "reflection": {"_count": 1}, "Dursleys": {"_count": 1}, "bird": {"_count": 1}, "castle": {"_count": 1}, "Death": {"_count": 1}, "carriage": {"_count": 1}, "egg": {"_count": 1}, "stands": {"_count": 1}, "doors": {"_count": 1}, "dragonish": {"_count": 1}, "silverringletted": {"_count": 1}, "Knight": {"_count": 1}, "vulturelike": {"_count": 1}, "dragon": {"_count": 1}}, "": {"_count": 49, ".": {"_count": 43}, "!": {"_count": 5}, "?": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "Dont": {"_count": 1, "leave": {"_count": 1}}, "Professor": {"_count": 4, "McGonagall": {"_count": 1}, "Dumbledore": {"_count": 1}, "Lupin": {"_count": 1}, "Flitwick": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 5}, "a": {"_count": 1}}, "Ron": {"_count": 4, "and": {"_count": 1}, "arrived": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "as": {"_count": 6, "Snape": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}}, "to": {"_count": 8, "take": {"_count": 1}, "test": {"_count": 1}, "Harry": {"_count": 1}, "find": {"_count": 2}, "head": {"_count": 1}, "gain": {"_count": 1}, "steal": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "with": {"_count": 9, "a": {"_count": 6}, "his": {"_count": 1}, "the": {"_count": 2}}, "four": {"_count": 1, "broomsticks": {"_count": 1}}, "Neville": {"_count": 1, "said": {"_count": 1}}, "Hedwig": {"_count": 1, "soared": {"_count": 1}}, "a": {"_count": 5, "bell": {"_count": 1}, "gigantic": {"_count": 1}, "short": {"_count": 1}, "man": {"_count": 1}, "harassedlooking": {"_count": 1}}, "careers": {"_count": 1, "Ron": {"_count": 1}}, "however": {"_count": 5, "Harry": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "still": {"_count": 2, "as": {"_count": 1}, "clutching": {"_count": 1}}, "Snape": {"_count": 2, "returned": {"_count": 1}, "was": {"_count": 1}}, "something": {"_count": 2, "large": {"_count": 1}, "miraculous": {"_count": 1}}, "Lockhart": {"_count": 1, "collected": {"_count": 1}}, "were": {"_count": 1, "hurrying": {"_count": 1}}, "carrying": {"_count": 3, "a": {"_count": 1}, "its": {"_count": 1}, "three": {"_count": 1}}, "had": {"_count": 1, "directed": {"_count": 1}}, "could": {"_count": 3, "not": {"_count": 2}, "fail": {"_count": 1}}, "it": {"_count": 5, "had": {"_count": 3}, "twisted": {"_count": 1}, "occurred": {"_count": 1}}, "holding": {"_count": 3, "what": {"_count": 1}, "her": {"_count": 1}, "three": {"_count": 1}}, "Were": {"_count": 1, "going": {"_count": 1}}, "found": {"_count": 1, "themselves": {"_count": 1}}, "she": {"_count": 3, "had": {"_count": 2}, "stood": {"_count": 1}}, "Errol": {"_count": 1, "and": {"_count": 1}}, "Ripper": {"_count": 1, "leapt": {"_count": 1}}, "footsteps": {"_count": 1, "told": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Fred": {"_count": 3, "told": {"_count": 1}, "Weasley": {"_count": 2}}, "told": {"_count": 1, "us": {"_count": 1}}, "Malfoy": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 4}}, "looking": {"_count": 3, "extremely": {"_count": 1}, "slightly": {"_count": 1}, "at": {"_count": 1}}, "Katie": {"_count": 1, "had": {"_count": 1}}, "his": {"_count": 4, "foot": {"_count": 1}, "feet": {"_count": 1}, "wand": {"_count": 1}, "voice": {"_count": 1}}, "you": {"_count": 2, "left": {"_count": 1}, "big": {"_count": 1}}, "Hagrids": {"_count": 1, "back": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "beneath": {"_count": 1}}, "and": {"_count": 12, "pick": {"_count": 1}, "slipped": {"_count": 1}, "pay": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "sneak": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}, "though": {"_count": 1}, "later": {"_count": 1}, "looked": {"_count": 1}}, "remains": {"_count": 1, "to": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "Moody": {"_count": 1, "had": {"_count": 1}}, "turned": {"_count": 1, "red": {"_count": 1}}, "eating": {"_count": 1, "large": {"_count": 1}}, "uttering": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 7, "week": {"_count": 1}, "afternoon": {"_count": 2}, "was": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}, "evening": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "Karkaroff": {"_count": 1, "": {"_count": 1}}, "catching": {"_count": 2, "up": {"_count": 2}}, "her": {"_count": 1, "hair": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "dived": {"_count": 1, "away": {"_count": 1}}, "Percy": {"_count": 1, "returned": {"_count": 1}}, "beamed": {"_count": 1, "Mrs": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "evening": {"_count": 1}}, "Luna": {"_count": 1, "Lovegood": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "demanding": {"_count": 1, "to": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "glowering": {"_count": 1, "at": {"_count": 1}}, "when": {"_count": 1, "having": {"_count": 1}}, "youll": {"_count": 1, "pay": {"_count": 1}}, "thatll": {"_count": 1, "be": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "Dumbledore": {"_count": 1, "was": {"_count": 1}}, "squashed": {"_count": 1, "into": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "distinctly": {"_count": 1}}, "was": {"_count": 1, "jumping": {"_count": 1}}, "until": {"_count": 1, "after": {"_count": 1}}, "Fudge": {"_count": 1, "had": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 2, "so": {"_count": 1}, "maybe": {"_count": 1}}, "fully": {"_count": 1, "dressed": {"_count": 1}}, "speaking": {"_count": 1, "for": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "an": {"_count": 2, "identical": {"_count": 1}, "announcement": {"_count": 1}}, "back": {"_count": 1, "onto": {"_count": 1}}, "Susans": {"_count": 1, "Splinching": {"_count": 1}}, "Cadwallader": {"_count": 1, "scored": {"_count": 1}}, "perhaps": {"_count": 1, "than": {"_count": 1}}, "handing": {"_count": 1, "back": {"_count": 1}}, "having": {"_count": 1, "tried": {"_count": 1}}, "clapping": {"_count": 1, "his": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "heading": {"_count": 1, "in": {"_count": 1}}, "years": {"_count": 5, "that": {"_count": 1}, "they": {"_count": 1}, "pleading": {"_count": 1}, "": {"_count": 1}, "alone": {"_count": 1}}, "gave": {"_count": 1, "evidence": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "shrugged": {"_count": 1, "Ron": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "during": {"_count": 1, "which": {"_count": 1}}, "once": {"_count": 2, "hed": {"_count": 1}, "they": {"_count": 1}}, "from": {"_count": 1, "out": {"_count": 1}}, "if": {"_count": 1, "at": {"_count": 1}}, "Xenophilius": {"_count": 1, "had": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "clean": {"_count": 1, "air": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "hours": {"_count": 1, "and": {"_count": 1}}, "Al": {"_count": 1, "": {"_count": 1}}}, "parking": {"_count": 3, "lot": {"_count": 1, "his": {"_count": 1}}, "garage": {"_count": 1, "": {"_count": 1}}, "meters": {"_count": 1, "and": {"_count": 1}}}, "always": {"_count": 391, "sat": {"_count": 1, "with": {"_count": 1}}, "got": {"_count": 3, "so": {"_count": 1}, "on": {"_count": 2}}, "been": {"_count": 40, "small": {"_count": 1}, "able": {"_count": 3}, "last": {"_count": 1}, "overshadowed": {"_count": 1}, "those": {"_count": 1}, "a": {"_count": 4}, "very": {"_count": 2}, "allowed": {"_count": 1}, "so": {"_count": 2}, "really": {"_count": 1}, "about": {"_count": 1}, "fascinated": {"_count": 1}, "dim": {"_count": 1}, "you": {"_count": 1}, "closely": {"_count": 1}, "there": {"_count": 1}, "afraid": {"_count": 1}, "Dumbledores": {"_count": 1}, "feared": {"_count": 1}, "completely": {"_count": 1}, "your": {"_count": 1}, "Dracos": {"_count": 1}, "drawn": {"_count": 1}, "scathing": {"_count": 1}, "sweet": {"_count": 1}, "used": {"_count": 1}, "like": {"_count": 1}, "decent": {"_count": 1}, "clear": {"_count": 1}, "happy": {"_count": 1}, "proud": {"_count": 1}, "Harry": {"_count": 1}, "determined": {"_count": 1}}, "sp": {"_count": 1, "spoils": {"_count": 1}}, "did": {"_count": 10, "if": {"_count": 1}, "whatever": {"_count": 1}, "at": {"_count": 1}, "haughty": {"_count": 1}, "of": {"_count": 1}, "when": {"_count": 2}, "the": {"_count": 1}, "intensely": {"_count": 1}, "himself": {"_count": 1}}, "knew": {"_count": 8, "theyd": {"_count": 1}, "Salazar": {"_count": 1}, "that": {"_count": 2}, "Hagrid": {"_count": 1}, "Id": {"_count": 1}, "yehd": {"_count": 1}, "on": {"_count": 1}}, "that": {"_count": 2, "nervous": {"_count": 1}, "safe": {"_count": 1}}, "hard": {"_count": 2, "": {"_count": 1}, "work": {"_count": 1}}, "forgets": {"_count": 1, "I": {"_count": 1}}, "find": {"_count": 3, "their": {"_count": 1}, "some": {"_count": 1}, "that": {"_count": 1}}, "do": {"_count": 3, "when": {"_count": 1}, "in": {"_count": 1}, "Mrs": {"_count": 1}}, "taken": {"_count": 2, "anything": {"_count": 1}, "for": {"_count": 1}}, "a": {"_count": 11, "nasty": {"_count": 1}, "stag": {"_count": 2}, "horrible": {"_count": 1}, "bad": {"_count": 1}, "foul": {"_count": 1}, "danger": {"_count": 1}, "chance": {"_count": 1}, "specialty": {"_count": 1}, "matter": {"_count": 1}, "hottempered": {"_count": 1}}, "happy": {"_count": 1, "to": {"_count": 1}}, "favors": {"_count": 1, "them": {"_count": 1}}, "taking": {"_count": 1, "points": {"_count": 1}}, "wanted": {"_count": 6, "": {"_count": 2}, "a": {"_count": 1}, "to": {"_count": 2}, "one": {"_count": 1}}, "going": {"_count": 4, "on": {"_count": 2}, "to": {"_count": 2}}, "seemed": {"_count": 3, "to": {"_count": 2}, "too": {"_count": 1}}, "bringing": {"_count": 1, "him": {"_count": 1}}, "flew": {"_count": 1, "slightly": {"_count": 1}}, "unlocked": {"_count": 1, "": {"_count": 1}}, "win": {"_count": 2, "": {"_count": 1}, "duels": {"_count": 1}}, "the": {"_count": 8, "ones": {"_count": 1}, "same": {"_count": 3}, "feast": {"_count": 1}, "gentleman": {"_count": 1}, "last": {"_count": 1}, "one": {"_count": 1}}, "maroon": {"_count": 1, "": {"_count": 1}}, "liked": {"_count": 7, "to": {"_count": 1}, "big": {"_count": 1}, "Percy": {"_count": 1}, "his": {"_count": 1}, "Scabbers": {"_count": 1}, "very": {"_count": 1}, "Kreacher": {"_count": 1}}, "really": {"_count": 1, "wanted": {"_count": 1}}, "plays": {"_count": 1, "first": {"_count": 1}}, "value": {"_count": 1, "bravery": {"_count": 1}}, "said": {"_count": 11, "he": {"_count": 3}, "old": {"_count": 1}, "": {"_count": 1}, "hed": {"_count": 1}, "only": {"_count": 1}, "You": {"_count": 1}, "Ron": {"_count": 1}, "this": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "hope": {"_count": 1, "theyll": {"_count": 1}}, "untidy": {"_count": 1, "": {"_count": 1}}, "having": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "wishing": {"_count": 1, "we": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "banging": {"_count": 1, "on": {"_count": 1}}, "mirrored": {"_count": 1, "the": {"_count": 1}}, "top": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 3, "at": {"_count": 1}, "Peeves": {"_count": 1}, "in": {"_count": 1}}, "begging": {"_count": 1, "Dumbledore": {"_count": 1}}, "have": {"_count": 3, "a": {"_count": 1}, "done": {"_count": 1}, "to": {"_count": 1}}, "boasting": {"_count": 1, "about": {"_count": 1}}, "forbidden": {"_count": 1, "questions": {"_count": 1}}, "seems": {"_count": 1, "so": {"_count": 1}}, "loved": {"_count": 2, "chaos": {"_count": 1}, "that": {"_count": 1}}, "come": {"_count": 2, "up": {"_count": 1}, "where": {"_count": 1}}, "slow": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "entered": {"_count": 1}}, "known": {"_count": 5, "that": {"_count": 2}, "where": {"_count": 1}, "it": {"_count": 2}}, "more": {"_count": 1, "of": {"_count": 1}}, "be": {"_count": 10, "given": {"_count": 3}, "the": {"_count": 1}, "Ickle": {"_count": 1}, "welcome": {"_count": 1}, "there": {"_count": 1}, "Tom": {"_count": 1}, "second": {"_count": 1}, "ashamed": {"_count": 1}}, "thought": {"_count": 12, "Father": {"_count": 1}, "Hagrid": {"_count": 1}, "he": {"_count": 2}, "hed": {"_count": 1}, "of": {"_count": 2}, "Dads": {"_count": 1}, "Dumbledore": {"_count": 2}, "Fred": {"_count": 1}, "there": {"_count": 1}}, "very": {"_count": 3, "crowded": {"_count": 1}, "outspoken": {"_count": 1}, "handsome": {"_count": 1}}, "thinks": {"_count": 1, "monsters": {"_count": 1}}, "told": {"_count": 4, "you": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 2}}, "had": {"_count": 9, "been": {"_count": 2}, "trouble": {"_count": 1}, "help": {"_count": 1}, "odd": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}}, "stay": {"_count": 1, "at": {"_count": 1}}, "say": {"_count": 1, "that": {"_count": 1}}, "gave": {"_count": 1, "an": {"_count": 1}}, "enjoyed": {"_count": 1, "watching": {"_count": 1}}, "wait": {"_count": 1, "fer": {"_count": 1}}, "reserved": {"_count": 1, "just": {"_count": 1}}, "best": {"_count": 1, "to": {"_count": 1}}, "returned": {"_count": 1, "with": {"_count": 1}}, "good": {"_count": 3, "but": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}}, "worth": {"_count": 2, "a": {"_count": 1}, "watching": {"_count": 1}}, "tagging": {"_count": 1, "around": {"_count": 1}}, "hopeless": {"_count": 1, "at": {"_count": 1}}, "saying": {"_count": 2, "how": {"_count": 1}, "hed": {"_count": 1}}, "is": {"_count": 1, "": {"_count": 1}}, "ill": {"_count": 1, "at": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 3, "complicated": {"_count": 1}, "close": {"_count": 1}, "thoughtful": {"_count": 1}}, "tell": {"_count": 2, "Wormtail": {"_count": 1}, "when": {"_count": 1}}, "knows": {"_count": 4, "": {"_count": 3}, "when": {"_count": 1}}, "twinge": {"_count": 1, "a": {"_count": 1}}, "took": {"_count": 2, "up": {"_count": 1}, "the": {"_count": 1}}, "insisted": {"_count": 2, "that": {"_count": 2}}, "imagined": {"_count": 1, "Bill": {"_count": 1}}, "made": {"_count": 5, "him": {"_count": 2}, "Harry": {"_count": 1}, "me": {"_count": 1}, "a": {"_count": 1}}, "touchy": {"_count": 1, "about": {"_count": 1}}, "avoided": {"_count": 1, "saying": {"_count": 1}}, "associated": {"_count": 2, "with": {"_count": 2}}, "forgot": {"_count": 2, "to": {"_count": 2}}, "wore": {"_count": 2, "whenever": {"_count": 1}, "to": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}, "done": {"_count": 1, "things": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "who": {"_count": 1}}, "shunted": {"_count": 1, "to": {"_count": 1}}, "assuming": {"_count": 1, "she": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "worn": {"_count": 1, "the": {"_count": 1}}, "get": {"_count": 2, "one": {"_count": 1}, "away": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "pretended": {"_count": 1, "a": {"_count": 1}}, "hold": {"_count": 1, "it": {"_count": 1}}, "attack": {"_count": 1, "someone": {"_count": 1}}, "chase": {"_count": 1, "me": {"_count": 1}}, "refrained": {"_count": 1, "from": {"_count": 1}}, "warned": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "making": {"_count": 1, "some": {"_count": 1}}, "growing": {"_count": 1, "more": {"_count": 1}}, "talking": {"_count": 2, "about": {"_count": 2}}, "welcome": {"_count": 1, "at": {"_count": 1}}, "control": {"_count": 1, "their": {"_count": 1}}, "attract": {"_count": 1, "trouble": {"_count": 1}}, "pulled": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "times": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "considered": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "surrounded": {"_count": 2, "by": {"_count": 2}}, "supported": {"_count": 1, "them": {"_count": 1}}, "reminded": {"_count": 1, "Harry": {"_count": 1}}, "stood": {"_count": 1, "firm": {"_count": 1}}, "moaning": {"_count": 1, "about": {"_count": 1}}, "guessing": {"_count": 1, "where": {"_count": 1}}, "possible": {"_count": 1, "to": {"_count": 1}}, "packed": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "to": {"_count": 3, "find": {"_count": 1}, "see": {"_count": 1}, "tell": {"_count": 1}}, "popping": {"_count": 1, "in": {"_count": 1}}, "rather": {"_count": 1, "admired": {"_count": 1}}, "persecuted": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "given": {"_count": 1, "us": {"_count": 1}}, "hopes": {"_count": 1, "to": {"_count": 1}}, "equipped": {"_count": 1, "for": {"_count": 1}}, "there": {"_count": 1, "waiting": {"_count": 1}}, "surprised": {"_count": 1, "Derrick": {"_count": 1}}, "lets": {"_count": 2, "the": {"_count": 2}}, "put": {"_count": 1, "down": {"_count": 1}}, "featured": {"_count": 1, "a": {"_count": 1}}, "choose": {"_count": 1, "to": {"_count": 1}}, "looking": {"_count": 1, "quickly": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "culminated": {"_count": 1, "in": {"_count": 1}}, "want": {"_count": 2, "to": {"_count": 2}}, "stopped": {"_count": 1, "short": {"_count": 1}}, "grabbed": {"_count": 1, "at": {"_count": 1}}, "advised": {"_count": 1, "eating": {"_count": 1}}, "useful": {"_count": 1, "and": {"_count": 1}}, "hated": {"_count": 1, "the": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "telling": {"_count": 1, "Professor": {"_count": 1}}, "expected": {"_count": 1, "Professor": {"_count": 1}}, "dependably": {"_count": 1, "solidly": {"_count": 1}}, "speaks": {"_count": 1, "most": {"_count": 1}}, "walked": {"_count": 1, "purposefully": {"_count": 1}}, "hurt": {"_count": 1, "worse": {"_count": 1}}, "therefore": {"_count": 1, "underestimated": {"_count": 1}}, "does": {"_count": 1, "in": {"_count": 1}}, "called": {"_count": 1, "Fudge": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "interested": {"_count": 1, "to": {"_count": 1}}, "astonished": {"_count": 1, "to": {"_count": 1}}, "reaping": {"_count": 1, "some": {"_count": 1}}, "worked": {"_count": 1, "before": {"_count": 1}}, "traveled": {"_count": 1, "there": {"_count": 1}}, "saves": {"_count": 1, "his": {"_count": 1}}, "spoke": {"_count": 1, "very": {"_count": 1}}, "shown": {"_count": 1, "respect": {"_count": 1}}, "knocking": {"_count": 1, "I": {"_count": 1}}, "bin": {"_count": 1, "a": {"_count": 1}}, "asleep": {"_count": 1, "when": {"_count": 1}}, "commentates": {"_count": 1, "from": {"_count": 1}}, "guarded": {"_count": 1, "her": {"_count": 1}}, "wondered": {"_count": 1, "why": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "doing": {"_count": 1, "that": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "leaves": {"_count": 1, "traces": {"_count": 1}}, "hinted": {"_count": 1, "that": {"_count": 1}}, "valued": {"_count": 1, "your": {"_count": 1}}, "hoped": {"_count": 1, "": {"_count": 1}}, "generous": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "discussed": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "who": {"_count": 1}}, "says": {"_count": 1, "shell": {"_count": 1}}, "read": {"_count": 1, "her": {"_count": 1}}, "too": {"_count": 1, "poor": {"_count": 1}}, "helps": {"_count": 1, "said": {"_count": 1}}, "portrayed": {"_count": 1, "Dumbledore": {"_count": 1}}, "talked": {"_count": 1, "a": {"_count": 1}}, "voted": {"_count": 1, "for": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "eternally": {"_count": 1, "overshadowed": {"_count": 1}}, "sounds": {"_count": 1, "cooler": {"_count": 1}}, "handy": {"_count": 1, "to": {"_count": 1}}, "point": {"_count": 1, "toward": {"_count": 1}}, "requests": {"_count": 1, "our": {"_count": 1}}, "right": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "remember": {"_count": 1, "what": {"_count": 1}}, "fear": {"_count": 1, "attack": {"_count": 1}}, "it": {"_count": 1, "resurfaces": {"_count": 1}}, "captioned": {"_count": 1, "with": {"_count": 1}}, "think": {"_count": 1, "wands": {"_count": 1}}, "suspected": {"_count": 1, "him": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "patrolling": {"_count": 1, "the": {"_count": 1}}, "sensed": {"_count": 1, "in": {"_count": 1}}}, "office": {"_count": 414, "on": {"_count": 4, "the": {"_count": 3}, "weekends": {"_count": 1}}, "snapped": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 37, "the": {"_count": 3}, "they": {"_count": 1}, "take": {"_count": 1}, "down": {"_count": 2}, "started": {"_count": 1}, "its": {"_count": 1}, "Moody": {"_count": 1}, "pulled": {"_count": 1}, "then": {"_count": 1}, "landed": {"_count": 1}, "she": {"_count": 1}, "find": {"_count": 1}, "swooped": {"_count": 1}, "as": {"_count": 1}, "using": {"_count": 1}, "only": {"_count": 1}, "Harry": {"_count": 2}, "you": {"_count": 2}, "slammed": {"_count": 1}, "back": {"_count": 1}, "at": {"_count": 1}, "up": {"_count": 1}, "off": {"_count": 1}, "muttered": {"_count": 1}, "this": {"_count": 1}, "try": {"_count": 1}, "knocked": {"_count": 1}, "we": {"_count": 1}, "closed": {"_count": 1}, "smashed": {"_count": 1}, "something": {"_count": 1}, "soared": {"_count": 1}}, "keep": {"_count": 1, "em": {"_count": 1}}, "": {"_count": 102, "?": {"_count": 14}, ".": {"_count": 78}, "!": {"_count": 10}}, "shivering": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 20, "and": {"_count": 1}, "opened": {"_count": 1}, "": {"_count": 8}, "was": {"_count": 1}, "for": {"_count": 1}, "his": {"_count": 1}, "banged": {"_count": 1}, "when": {"_count": 1}, "through": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 2}, "I": {"_count": 1}}, "leaving": {"_count": 3, "them": {"_count": 1}, "Harry": {"_count": 1}, "behind": {"_count": 1}}, "treading": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "which": {"_count": 2, "made": {"_count": 1}, "promptly": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 4, "punishment": {"_count": 1}, "noticing": {"_count": 1}, "a": {"_count": 1}, "my": {"_count": 1}}, "said": {"_count": 13, "Nick": {"_count": 2}, "George": {"_count": 1}, "a": {"_count": 1}, "Madam": {"_count": 1}, "Harry": {"_count": 4}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "Umbridge": {"_count": 1}, "Snape": {"_count": 1}}, "is": {"_count": 7, "nearest": {"_count": 1}, "He": {"_count": 1}, "on": {"_count": 1}, "supposed": {"_count": 1}, "because": {"_count": 1}, "not": {"_count": 1}, "raining": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 6, "knows": {"_count": 1}, "was": {"_count": 1}, "looked": {"_count": 1}, "heard": {"_count": 1}, "had": {"_count": 1}, "found": {"_count": 1}}, "they": {"_count": 1, "turned": {"_count": 1}}, "since": {"_count": 1, "our": {"_count": 1}}, "with": {"_count": 4, "it": {"_count": 1}, "such": {"_count": 1}, "a": {"_count": 1}, "giant": {"_count": 1}}, "flew": {"_count": 1, "open": {"_count": 1}}, "but": {"_count": 5, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "for": {"_count": 1}, "how": {"_count": 1}, "on": {"_count": 1}}, "this": {"_count": 4, "time": {"_count": 2}, "is": {"_count": 1}, "late": {"_count": 1}}, "getting": {"_count": 1, "getting": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "come": {"_count": 1}}, "she": {"_count": 2, "told": {"_count": 1}, "panted": {"_count": 1}}, "a": {"_count": 3, "small": {"_count": 1}, "harmless": {"_count": 1}, "pub": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "Zonkos": {"_count": 1, "is": {"_count": 1}}, "when": {"_count": 6, "were": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}}, "Ron": {"_count": 1, "pretended": {"_count": 1}}, "examining": {"_count": 1, "it": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 12, "the": {"_count": 1}, "a": {"_count": 1}, "halfpast": {"_count": 1}, "all": {"_count": 1}, "8": {"_count": 1}, "half": {"_count": 1}, "once": {"_count": 1}, "eight": {"_count": 1}, "Hogwarts": {"_count": 4}}, "any": {"_count": 1, "moment": {"_count": 1}}, "sometime": {"_count": 1, "in": {"_count": 1}}, "surely": {"_count": 1, "they": {"_count": 1}}, "early": {"_count": 2, "to": {"_count": 1}, "once": {"_count": 1}}, "to": {"_count": 4, "order": {"_count": 1}, "make": {"_count": 1}, "see": {"_count": 2}}, "if": {"_count": 2, "anybody": {"_count": 1}, "theyve": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 2, "two": {"_count": 1}, "three": {"_count": 1}}, "was": {"_count": 10, "full": {"_count": 2}, "broken": {"_count": 1}, "dark": {"_count": 1}, "blasted": {"_count": 1}, "situated": {"_count": 1}, "as": {"_count": 1}, "bathed": {"_count": 1}, "absolute": {"_count": 1}, "much": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 6, "saw": {"_count": 1}, "said": {"_count": 1}, "reckon": {"_count": 1}, "dont": {"_count": 1}, "spoke": {"_count": 1}, "decide": {"_count": 1}}, "thats": {"_count": 1, "Clunk": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "pretty": {"_count": 1, "thoroughly": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "where": {"_count": 4, "he": {"_count": 2}, "Barty": {"_count": 1}, "I": {"_count": 1}}, "staring": {"_count": 1, "down": {"_count": 1}}, "as": {"_count": 5, "well": {"_count": 1}, "soon": {"_count": 1}, "they": {"_count": 1}, "a": {"_count": 1}, "quick": {"_count": 1}}, "then": {"_count": 4, "": {"_count": 3}, "Minister": {"_count": 1}}, "first": {"_count": 2, "assuring": {"_count": 1}, "Harry": {"_count": 1}}, "one": {"_count": 3, "more": {"_count": 1}, "night": {"_count": 1}, "last": {"_count": 1}}, "Potter": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 3, "not": {"_count": 1}, "at": {"_count": 1}, "out": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "opened": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "once": {"_count": 2, "before": {"_count": 1}, "the": {"_count": 1}}, "knowing": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "looked": {"_count": 2, "back": {"_count": 1}, "just": {"_count": 1}}, "gave": {"_count": 1, "an": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "floor": {"_count": 8, "": {"_count": 4}, "his": {"_count": 1}, "he": {"_count": 1}, "Dumbledore": {"_count": 1}, "bounded": {"_count": 1}}, "placed": {"_count": 1, "a": {"_count": 1}}, "tell": {"_count": 1, "him": {"_count": 1}}, "accompanying": {"_count": 1, "them": {"_count": 1}}, "returned": {"_count": 1, "holding": {"_count": 1}}, "for": {"_count": 3, "suggesting": {"_count": 1}, "me": {"_count": 1}, "fresh": {"_count": 1}}, "you": {"_count": 1, "hold": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "until": {"_count": 1, "its": {"_count": 1}}, "seemed": {"_count": 3, "to": {"_count": 3}}, "together": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 2, "I": {"_count": 1}, "very": {"_count": 1}}, "looking": {"_count": 2, "grim": {"_count": 1}, "the": {"_count": 1}}, "already": {"_count": 1, "changed": {"_count": 1}}, "that": {"_count": 2, "night": {"_count": 1}, "Snape": {"_count": 1}}, "from": {"_count": 1, "which": {"_count": 1}}, "still": {"_count": 1, "smiling": {"_count": 1}}, "just": {"_count": 1, "before": {"_count": 1}}, "swam": {"_count": 1, "in": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "shes": {"_count": 1, "been": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "loomed": {"_count": 1, "into": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "has": {"_count": 1, "sealed": {"_count": 1}}, "would": {"_count": 1, "they": {"_count": 1}}, "shook": {"_count": 1, "Umbridge": {"_count": 1}}, "after": {"_count": 2, "dinner": {"_count": 1}, "Filch": {"_count": 1}}, "afterward": {"_count": 1, "or": {"_count": 1}}, "lurched": {"_count": 1, "tipping": {"_count": 1}}, "ever": {"_count": 1, "again": {"_count": 1}}, "ahead": {"_count": 1, "Harry": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "mere": {"_count": 1, "hours": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "piped": {"_count": 1, "up": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 1, "we": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "breathing": {"_count": 1, "quickly": {"_count": 1}}, "walls": {"_count": 1, "Harry": {"_count": 1}}, "reading": {"_count": 1, "a": {"_count": 1}}, "mournfully": {"_count": 1, "": {"_count": 1}}, "savoring": {"_count": 1, "the": {"_count": 1}}, "let": {"_count": 1, "alone": {"_count": 1}}, "\u2018Tm": {"_count": 1, "not": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "immediately": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "lit": {"_count": 1}}, "now": {"_count": 1, "but": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "here": {"_count": 1}}, "many": {"_count": 1, "years": {"_count": 1}}, "his": {"_count": 1, "feet": {"_count": 1}}, "an": {"_count": 1, "expanse": {"_count": 1}}, "yes": {"_count": 1, "whispered": {"_count": 1}}, "forthwith": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "day": {"_count": 1}}, "during": {"_count": 1, "all": {"_count": 1}}, "Cattermole": {"_count": 1, "": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "dissolved": {"_count": 1, "but": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "disappeared": {"_count": 1, "and": {"_count": 1}}, "tonight": {"_count": 1, "Severus": {"_count": 1}}, "the": {"_count": 1, "windows": {"_count": 1}}}, "ninth": {"_count": 4, "floor": {"_count": 1, "": {"_count": 1}}, "level": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "goblet": {"_count": 1, "": {"_count": 1}}}, "floor": {"_count": 642, "": {"_count": 218, ".": {"_count": 213}, "?": {"_count": 5}}, "he": {"_count": 12, "could": {"_count": 1}, "looked": {"_count": 1}, "threw": {"_count": 1}, "saw": {"_count": 1}, "knew": {"_count": 1}, "was": {"_count": 1}, "met": {"_count": 1}, "spotted": {"_count": 1}, "remembered": {"_count": 1}, "glimpsed": {"_count": 1}, "yelled": {"_count": 1}, "whispered": {"_count": 1}}, "and": {"_count": 71, "began": {"_count": 2}, "Ron": {"_count": 2}, "tiptoed": {"_count": 1}, "dragged": {"_count": 1}, "looked": {"_count": 1}, "she": {"_count": 1}, "halted": {"_count": 1}, "his": {"_count": 1}, "saw": {"_count": 1}, "bent": {"_count": 1}, "the": {"_count": 6}, "then": {"_count": 2}, "Peeves": {"_count": 1}, "Harry": {"_count": 3}, "embraced": {"_count": 1}, "was": {"_count": 1}, "nodded": {"_count": 1}, "as": {"_count": 2}, "many": {"_count": 1}, "gaped": {"_count": 1}, "grabbed": {"_count": 2}, "bounced": {"_count": 1}, "unfolded": {"_count": 1}, "to": {"_count": 2}, "slipped": {"_count": 1}, "tearing": {"_count": 1}, "continued": {"_count": 1}, "pulled": {"_count": 1}, "adding": {"_count": 1}, "seemed": {"_count": 1}, "never": {"_count": 1}, "smashed": {"_count": 2}, "started": {"_count": 1}, "struck": {"_count": 1}, "he": {"_count": 6}, "Firenze": {"_count": 1}, "Snape": {"_count": 2}, "through": {"_count": 1}, "that": {"_count": 1}, "ceiling": {"_count": 1}, "upon": {"_count": 1}, "each": {"_count": 1}, "burst": {"_count": 1}, "shoving": {"_count": 1}, "remained": {"_count": 1}, "throwing": {"_count": 1}, "sat": {"_count": 1}, "walls": {"_count": 1}, "down": {"_count": 1}, "threw": {"_count": 1}, "rolled": {"_count": 1}}, "jars": {"_count": 1, "of": {"_count": 1}}, "knee": {"_count": 1, "to": {"_count": 1}}, "corridor": {"_count": 2, "on": {"_count": 1}, "seemed": {"_count": 1}}, "burning": {"_count": 1, "holes": {"_count": 1}}, "fast": {"_count": 1, "asleep": {"_count": 1}}, "with": {"_count": 24, "a": {"_count": 14}, "Harry": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 3}, "olive": {"_count": 1}, "Ginger": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "in": {"_count": 15, "a": {"_count": 1}, "fright": {"_count": 1}, "front": {"_count": 4}, "Amelia": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 4}, "almost": {"_count": 1}, "an": {"_count": 1}, "exactly": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "saw": {"_count": 1}}, "because": {"_count": 1, "its": {"_count": 1}}, "where": {"_count": 9, "it": {"_count": 2}, "they": {"_count": 2}, "a": {"_count": 1}, "hed": {"_count": 1}, "she": {"_count": 2}, "the": {"_count": 1}}, "who": {"_count": 1, "do": {"_count": 1}}, "didnt": {"_count": 2, "feel": {"_count": 1}, "you": {"_count": 1}}, "Hermione": {"_count": 1, "screamed": {"_count": 1}}, "to": {"_count": 5, "head": {"_count": 1}, "stop": {"_count": 1}, "fall": {"_count": 1}, "ceiling": {"_count": 2}}, "next": {"_count": 3, "to": {"_count": 3}}, "of": {"_count": 17, "cloud": {"_count": 1}, "the": {"_count": 9}, "a": {"_count": 1}, "Moaning": {"_count": 1}, "Professor": {"_count": 1}, "Snapes": {"_count": 2}, "Umbridges": {"_count": 1}, "her": {"_count": 1}}, "waltzing": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 5, "Hermione": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 1}, "Firenze": {"_count": 1}}, "Ron": {"_count": 4, "and": {"_count": 3}, "was": {"_count": 1}}, "above": {"_count": 4, "and": {"_count": 1}, "reached": {"_count": 1}, "": {"_count": 1}, "actually": {"_count": 1}}, "up": {"_count": 1, "from": {"_count": 1}}, "was": {"_count": 8, "damp": {"_count": 1}, "shaking": {"_count": 1}, "covered": {"_count": 2}, "entirely": {"_count": 1}, "reflecting": {"_count": 1}, "gone": {"_count": 1}, "worn": {"_count": 1}}, "thus": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 6, "this": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "instead": {"_count": 1}, "did": {"_count": 1}, "Percy": {"_count": 1}}, "panting": {"_count": 2, "Ron": {"_count": 1}, "and": {"_count": 1}}, "between": {"_count": 4, "them": {"_count": 4}}, "docile": {"_count": 1, "as": {"_count": 1}}, "rigid": {"_count": 1, "and": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "Ho": {"_count": 1, "": {"_count": 1}}, "soaking": {"_count": 1, "wet": {"_count": 1}}, "nondescript": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "beside": {"_count": 11, "him": {"_count": 3}, "his": {"_count": 1}, "the": {"_count": 4}, "her": {"_count": 1}, "Alecto": {"_count": 1}, "Goyle": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "unable": {"_count": 3, "to": {"_count": 3}}, "again": {"_count": 4, "": {"_count": 4}}, "as": {"_count": 8, "the": {"_count": 1}, "a": {"_count": 3}, "Black": {"_count": 1}, "they": {"_count": 1}, "fast": {"_count": 1}, "he": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 4, "a": {"_count": 2}, "some": {"_count": 1}, "drops": {"_count": 1}}, "great": {"_count": 1, "chunks": {"_count": 1}}, "sir": {"_count": 1, "dodging": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "holding": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 4, "it": {"_count": 1}, "Mr": {"_count": 1}, "had": {"_count": 1}, "I": {"_count": 1}}, "remained": {"_count": 1, "unguarded": {"_count": 1}}, "slipping": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 1, "piece": {"_count": 1}}, "someone": {"_count": 2, "was": {"_count": 1}, "spoke": {"_count": 1}}, "over": {"_count": 2, "Hermione": {"_count": 1}, "Winkys": {"_count": 1}}, "a": {"_count": 6, "trickle": {"_count": 1}, "few": {"_count": 1}, "short": {"_count": 2}, "number": {"_count": 1}, "wroughtiron": {"_count": 1}}, "bound": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "underneath": {"_count": 1}}, "coming": {"_count": 1, "closer": {"_count": 1}}, "eating": {"_count": 1, "it": {"_count": 1}}, "before": {"_count": 3, "him": {"_count": 1}, "zooming": {"_count": 1}, "seizing": {"_count": 1}}, "scooping": {"_count": 1, "up": {"_count": 1}}, "landing": {"_count": 1, "on": {"_count": 1}}, "exactly": {"_count": 1, "where": {"_count": 1}}, "forming": {"_count": 1, "a": {"_count": 1}}, "beating": {"_count": 1, "her": {"_count": 1}}, "Rons": {"_count": 1, "parrots": {"_count": 1}}, "clear": {"_count": 1, "and": {"_count": 1}}, "carefully": {"_count": 1, "avoiding": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 2}, "often": {"_count": 1}}, "past": {"_count": 3, "Fred": {"_count": 1}, "Ginny": {"_count": 1}, "suits": {"_count": 1}}, "disappearing": {"_count": 1, "into": {"_count": 1}}, "gave": {"_count": 1, "Harry": {"_count": 1}}, "looking": {"_count": 2, "for": {"_count": 1}, "groggy": {"_count": 1}}, "clutching": {"_count": 1, "your": {"_count": 1}}, "some": {"_count": 1, "ten": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "covered": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "rolling": {"_count": 2, "butterbeer": {"_count": 1}, "behind": {"_count": 1}}, "except": {"_count": 1, "Mr": {"_count": 1}}, "his": {"_count": 6, "brain": {"_count": 1}, "scar": {"_count": 1}, "breath": {"_count": 1}, "glasses": {"_count": 1}, "ear": {"_count": 1}, "nose": {"_count": 1}}, "noticed": {"_count": 1, "something": {"_count": 1}}, "for": {"_count": 5, "the": {"_count": 2}, "any": {"_count": 1}, "a": {"_count": 2}}, "others": {"_count": 1, "merely": {"_count": 1}}, "or": {"_count": 1, "dangling": {"_count": 1}}, "shes": {"_count": 1, "an": {"_count": 1}}, "crunched": {"_count": 1, "a": {"_count": 1}}, "seemed": {"_count": 1, "at": {"_count": 1}}, "you": {"_count": 2, "might": {"_count": 1}, "will": {"_count": 1}}, "Sirius": {"_count": 1, "agrees": {"_count": 1}}, "opposite": {"_count": 1, "that": {"_count": 1}}, "Fang": {"_count": 1, "yelped": {"_count": 1}}, "sliding": {"_count": 1, "along": {"_count": 1}}, "ahead": {"_count": 1, "his": {"_count": 1}}, "guide": {"_count": 2, "": {"_count": 1}, "ARTIFACT": {"_count": 1}}, "second": {"_count": 1, "door": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "staring": {"_count": 1, "up": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 2}, "George": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 2, "become": {"_count": 1}, "been": {"_count": 1}}, "sometimes": {"_count": 1, "known": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "trembled": {"_count": 2, "": {"_count": 1}, "there": {"_count": 1}}, "their": {"_count": 1, "silver": {"_count": 1}}, "down": {"_count": 1, "pandemonium": {"_count": 1}}, "shooting": {"_count": 1, "fifteen": {"_count": 1}}, "when": {"_count": 3, "he": {"_count": 2}, "Harry": {"_count": 1}}, "reciting": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 7, "the": {"_count": 3}, "Madam": {"_count": 1}, "Ogdens": {"_count": 1}, "his": {"_count": 2}}, "shifted": {"_count": 1, "a": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "trembling": {"_count": 1, "Umbridge": {"_count": 1}}, "below": {"_count": 4, "": {"_count": 2}, "accompanied": {"_count": 1}, "cramming": {"_count": 1}}, "might": {"_count": 1, "move": {"_count": 1}}, "RUN": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "which": {"_count": 1}}, "then": {"_count": 2, "a": {"_count": 1}, "in": {"_count": 1}}, "vanish": {"_count": 1, "He": {"_count": 1}}, "twitching": {"_count": 1, "and": {"_count": 1}}, "Through": {"_count": 1, "the": {"_count": 1}}, "Neville": {"_count": 1, "spun": {"_count": 1}}, "Dumbledore": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "small": {"_count": 1, "wrinkled": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "glistened": {"_count": 1, "like": {"_count": 1}}, "lay": {"_count": 1, "a": {"_count": 1}}, "space": {"_count": 1, "was": {"_count": 1}}, "You": {"_count": 1, "be": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "having": {"_count": 1, "fallen": {"_count": 1}}, "hidden": {"_count": 1, "beneath": {"_count": 1}}, "coated": {"_count": 1, "in": {"_count": 1}}, "quite": {"_count": 1, "alone": {"_count": 1}}, "enclosed": {"_count": 1, "by": {"_count": 1}}, "shut": {"_count": 1, "and": {"_count": 1}}, "waving": {"_count": 1, "his": {"_count": 1}}, "leaning": {"_count": 1, "against": {"_count": 1}}, "her": {"_count": 2, "head": {"_count": 1}, "fingers": {"_count": 1}}, "beneath": {"_count": 3, "the": {"_count": 2}, "them": {"_count": 1}}, "outside": {"_count": 1, "his": {"_count": 1}}, "stretched": {"_count": 1, "and": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "screaming": {"_count": 2, "a": {"_count": 1}, "and": {"_count": 1}}, "writhe": {"_count": 1, "in": {"_count": 1}}, "hoist": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 2, "hovering": {"_count": 1}, "oldest": {"_count": 1}}, "glancing": {"_count": 1, "left": {"_count": 1}}, "first": {"_count": 1, "to": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "Perhaps": {"_count": 1, "the": {"_count": 1}}, "tears": {"_count": 1, "gushing": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "apparently": {"_count": 1, "alone": {"_count": 1}}, "trapped": {"_count": 1, "but": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "blood": {"_count": 1, "gushing": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "bounded": {"_count": 1, "once": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "must": {"_count": 1}}}, "If": {"_count": 651, "he": {"_count": 70, "hadnt": {"_count": 8}, "wants": {"_count": 1}, "tries": {"_count": 1}, "finds": {"_count": 1}, "raided": {"_count": 1}, "knew": {"_count": 1}, "doesnt": {"_count": 1}, "moved": {"_count": 1}, "was": {"_count": 8}, "werent": {"_count": 1}, "makes": {"_count": 1}, "bows": {"_count": 1}, "doesn": {"_count": 1}, "has": {"_count": 4}, "sees": {"_count": 1}, "really": {"_count": 1}, "gave": {"_count": 1}, "didnt": {"_count": 2}, "tried": {"_count": 1}, "told": {"_count": 1}, "had": {"_count": 10}, "could": {"_count": 11}, "is": {"_count": 1}, "thought": {"_count": 1}, "would": {"_count": 1}, "carries": {"_count": 1}, "calls": {"_count": 1}, "just": {"_count": 1}, "Harry": {"_count": 1}, "chooses": {"_count": 1}, "wanted": {"_count": 1}, "were": {"_count": 1}, "comes": {"_count": 1}}, "it": {"_count": 35, "did": {"_count": 1}, "was": {"_count": 8}, "has": {"_count": 3}, "turns": {"_count": 1}, "had": {"_count": 3}, "were": {"_count": 3}, "can": {"_count": 1}, "hadnt": {"_count": 7}, "hurts": {"_count": 1}, "is": {"_count": 5}, "bothers": {"_count": 1}, "wasnt": {"_count": 1}}, "anyone": {"_count": 10, "looked": {"_count": 1}, "but": {"_count": 1}, "found": {"_count": 1}, "wanted": {"_count": 1}, "finds": {"_count": 1}, "deserves": {"_count": 1}, "was": {"_count": 1}, "fancies": {"_count": 1}, "comes": {"_count": 1}, "shouldnt": {"_count": 1}}, "the": {"_count": 28, "motorcycle": {"_count": 1}, "Dursleys": {"_count": 2}, "governors": {"_count": 1}, "basilisk": {"_count": 1}, "Ministry": {"_count": 3}, "Knight": {"_count": 1}, "crowd": {"_count": 1}, "dementors": {"_count": 2}, "Nimbus": {"_count": 1}, "oneeyed": {"_count": 1}, "Patronus": {"_count": 1}, "Hogwarts": {"_count": 1}, "worst": {"_count": 1}, "riddle": {"_count": 1}, "magical": {"_count": 1}, "plant": {"_count": 1}, "first": {"_count": 1}, "beast": {"_count": 1}, "mother": {"_count": 1}, "new": {"_count": 1}, "plan": {"_count": 1}, "Deathly": {"_count": 1}, "rest": {"_count": 1}, "plans": {"_count": 1}}, "there": {"_count": 7, "was": {"_count": 3}, "is": {"_count": 2}, "were": {"_count": 1}, "comes": {"_count": 1}}, "they": {"_count": 28, "dont": {"_count": 1}, "hadnt": {"_count": 1}, "won": {"_count": 2}, "met": {"_count": 1}, "ever": {"_count": 2}, "pursued": {"_count": 1}, "save": {"_count": 1}, "say": {"_count": 2}, "carry": {"_count": 1}, "really": {"_count": 1}, "didnt": {"_count": 1}, "had": {"_count": 2}, "take": {"_count": 1}, "were": {"_count": 4}, "could": {"_count": 1}, "do": {"_count": 1}, "lost": {"_count": 1}, "emerged": {"_count": 1}, "both": {"_count": 1}, "find": {"_count": 1}, "examine": {"_count": 1}}, "hed": {"_count": 7, "once": {"_count": 1}, "known": {"_count": 1}, "only": {"_count": 1}, "just": {"_count": 2}, "been": {"_count": 2}}, "I": {"_count": 54, "was": {"_count": 2}, "get": {"_count": 3}, "didn": {"_count": 1}, "back": {"_count": 1}, "dont": {"_count": 3}, "hear": {"_count": 2}, "could": {"_count": 3}, "thought": {"_count": 2}, "might": {"_count": 2}, "ever": {"_count": 1}, "had": {"_count": 5}, "say": {"_count": 1}, "hand": {"_count": 1}, "join": {"_count": 1}, "hadnt": {"_count": 2}, "just": {"_count": 1}, "manage": {"_count": 1}, "didnt": {"_count": 1}, "have": {"_count": 2}, "find": {"_count": 1}, "hadn": {"_count": 1}, "jus": {"_count": 1}, "wasnt": {"_count": 1}, "were": {"_count": 1}, "see": {"_count": 1}, "remember": {"_count": 1}, "cant": {"_count": 2}, "talked": {"_count": 1}, "": {"_count": 1}, "tell": {"_count": 3}, "can": {"_count": 1}, "want": {"_count": 1}, "use": {"_count": 1}, "know": {"_count": 1}, "die": {"_count": 1}}, "yeh": {"_count": 5, "know": {"_count": 1}, "think": {"_count": 1}, "ask": {"_count": 1}, "could": {"_count": 1}, "say": {"_count": 1}}, "Harry": {"_count": 11, "hadnt": {"_count": 2}, "Potter": {"_count": 1}, "had": {"_count": 5}, "Ron": {"_count": 1}, "wants": {"_count": 1}, "could": {"_count": 1}}, "Hagrid": {"_count": 2, "hadnt": {"_count": 1}, "s": {"_count": 1}}, "Id": {"_count": 6, "brought": {"_count": 1}, "sprouted": {"_count": 1}, "been": {"_count": 2}, "seen": {"_count": 1}, "known": {"_count": 1}}, "youve": {"_count": 7, "a": {"_count": 1}, "finished": {"_count": 1}, "forgotten": {"_count": 1}, "got": {"_count": 2}, "come": {"_count": 1}, "dotted": {"_count": 1}}, "only": {"_count": 19, "the": {"_count": 1}, "there": {"_count": 4}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 4}, "wed": {"_count": 1}, "his": {"_count": 2}, "Arthur": {"_count": 1}, "I": {"_count": 1}, "we": {"_count": 1}, "Id": {"_count": 1}, "they": {"_count": 1}}, "either": {"_count": 2, "of": {"_count": 1}, "Snape": {"_count": 1}}, "any": {"_count": 3, "dog": {"_count": 1}, "more": {"_count": 1}, "of": {"_count": 1}}, "youre": {"_count": 12, "not": {"_count": 2}, "going": {"_count": 3}, "talking": {"_count": 2}, "only": {"_count": 1}, "doing": {"_count": 1}, "wondering": {"_count": 1}, "angry": {"_count": 1}, "telling": {"_count": 1}}, "Gryffindor": {"_count": 3, "won": {"_count": 2}, "beat": {"_count": 1}}, "thats": {"_count": 3, "what": {"_count": 1}, "the": {"_count": 1}, "how": {"_count": 1}}, "she": {"_count": 9, "was": {"_count": 1}, "just": {"_count": 1}, "had": {"_count": 1}, "catches": {"_count": 1}, "wished": {"_count": 1}, "could": {"_count": 1}, "with": {"_count": 1}, "dies": {"_count": 1}, "means": {"_count": 1}}, "you": {"_count": 129, "ever": {"_count": 1}, "want": {"_count": 10}, "cant": {"_count": 2}, "hadnt": {"_count": 1}, "put": {"_count": 1}, "need": {"_count": 5}, "must": {"_count": 2}, "can": {"_count": 4}, "gave": {"_count": 1}, "ask": {"_count": 9}, "said": {"_count": 1}, "dont": {"_count": 12}, "knew": {"_count": 1}, "would": {"_count": 2}, "havent": {"_count": 2}, "made": {"_count": 1}, "allowed": {"_count": 1}, "follow": {"_count": 1}, "think": {"_count": 3}, "accuse": {"_count": 1}, "say": {"_count": 1}, "look": {"_count": 2}, "really": {"_count": 1}, "will": {"_count": 4}, "leave": {"_count": 1}, "get": {"_count": 1}, "accept": {"_count": 1}, "are": {"_count": 11}, "mean": {"_count": 2}, "eat": {"_count": 1}, "just": {"_count": 3}, "had": {"_count": 3}, "still": {"_count": 1}, "give": {"_count": 1}, "care": {"_count": 1}, "have": {"_count": 4}, "resign": {"_count": 1}, "shout": {"_count": 1}, "remember": {"_count": 1}, "smash": {"_count": 1}, "proceed": {"_count": 1}, "attack": {"_count": 1}, "went": {"_count": 1}, "were": {"_count": 4}, "tell": {"_count": 2}, "do": {"_count": 1}, "help": {"_count": 1}, "or": {"_count": 1}, "keep": {"_count": 1}, "two": {"_count": 1}, "could": {"_count": 1}, "struggle": {"_count": 1}, "read": {"_count": 1}, "seek": {"_count": 1}, "took": {"_count": 1}, "wish": {"_count": 1}, "wreck": {"_count": 1}, "continue": {"_count": 1}, "loved": {"_count": 1}, "insist": {"_count": 1}, "laid": {"_count": 1}, "planned": {"_count": 1}}, "Filch": {"_count": 3, "had": {"_count": 1}, "s": {"_count": 1}, "really": {"_count": 1}}, "Snape": {"_count": 4, "had": {"_count": 2}, "gets": {"_count": 1}, "hadnt": {"_count": 1}}, "Quirrells": {"_count": 1, "told": {"_count": 1}}, "we": {"_count": 25, "try": {"_count": 1}, "just": {"_count": 1}, "hurry": {"_count": 1}, "hadnt": {"_count": 1}, "stop": {"_count": 1}, "hurried": {"_count": 1}, "lose": {"_count": 3}, "only": {"_count": 1}, "manage": {"_count": 1}, "steal": {"_count": 1}, "throw": {"_count": 1}, "keep": {"_count": 1}, "dont": {"_count": 2}, "could": {"_count": 1}, "send": {"_count": 1}, "were": {"_count": 1}, "can": {"_count": 2}, "cannot": {"_count": 1}, "knew": {"_count": 1}, "killed": {"_count": 1}, "are": {"_count": 1}}, "anything": {"_count": 7, "happens": {"_count": 1}, "could": {"_count": 1}, "happened": {"_count": 1}, "had": {"_count": 1}, "more": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}}, "were": {"_count": 6, "not": {"_count": 1}, "going": {"_count": 4}, "staying": {"_count": 1}}, "Idve": {"_count": 1, "known": {"_count": 1}}, "one": {"_count": 2, "word": {"_count": 1}, "of": {"_count": 1}}, "Lockharts": {"_count": 1, "still": {"_count": 1}}, "Dumbledore": {"_count": 5, "believed": {"_count": 1}, "Ah": {"_count": 1}, "chooses": {"_count": 1}, "was": {"_count": 1}, "didnt": {"_count": 1}}, "a": {"_count": 2, "long": {"_count": 1}, "Muggle": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "doubt": {"_count": 1}}, "its": {"_count": 7, "got": {"_count": 2}, "another": {"_count": 1}, "all": {"_count": 1}, "massive": {"_count": 1}, "a": {"_count": 1}, "annoying": {"_count": 1}}, "Albus": {"_count": 1, "hadnt": {"_count": 1}}, "youd": {"_count": 7, "wiped": {"_count": 1}, "follow": {"_count": 1}, "told": {"_count": 1}, "just": {"_count": 1}, "rather": {"_count": 2}, "like": {"_count": 1}}, "someone": {"_count": 2, "else": {"_count": 1}, "is": {"_count": 1}}, "theres": {"_count": 8, "one": {"_count": 2}, "someone": {"_count": 1}, "something": {"_count": 2}, "anything": {"_count": 2}, "anyone": {"_count": 1}}, "Im": {"_count": 4, "not": {"_count": 2}, "proud": {"_count": 1}, "having": {"_count": 1}}, "this": {"_count": 3, "is": {"_count": 1}, "was": {"_count": 2}}, "not": {"_count": 2, "Ill": {"_count": 1}, "then": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "youll": {"_count": 3, "follow": {"_count": 1}, "give": {"_count": 1}, "come": {"_count": 1}}, "Black": {"_count": 2, "can": {"_count": 1}, "wanted": {"_count": 1}}, "hes": {"_count": 5, "hungry": {"_count": 1}, "seeing": {"_count": 1}, "working": {"_count": 1}, "ever": {"_count": 1}, "already": {"_count": 1}}, "ever": {"_count": 3, "you": {"_count": 2}, "Harry": {"_count": 1}}, "being": {"_count": 1, "good": {"_count": 1}}, "as": {"_count": 2, "I": {"_count": 2}}, "all": {"_count": 3, "goes": {"_count": 2}, "had": {"_count": 1}}, "Neville": {"_count": 1, "is": {"_count": 1}}, "Snapes": {"_count": 1, "teaching": {"_count": 1}}, "that": {"_count": 9, "wasnt": {"_count": 1}, "dog": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 3}, "ring": {"_count": 1}, "diadems": {"_count": 1}, "seems": {"_count": 1}}, "Scabbers": {"_count": 1, "hadnt": {"_count": 1}}, "shed": {"_count": 3, "just": {"_count": 1}, "caught": {"_count": 1}, "been": {"_count": 1}}, "Malfoy": {"_count": 2, "tells": {"_count": 1}, "wants": {"_count": 1}}, "your": {"_count": 4, "head": {"_count": 1}, "determination": {"_count": 1}, "friends": {"_count": 1}, "son": {"_count": 1}}, "Crookshanks": {"_count": 1, "could": {"_count": 1}}, "Fudge": {"_count": 2, "an": {"_count": 1}, "thinks": {"_count": 1}}, "eyes": {"_count": 1, "hadnt": {"_count": 1}}, "Voldemorts": {"_count": 1, "supporters": {"_count": 1}}, "theyd": {"_count": 2, "just": {"_count": 1}, "lived": {"_count": 1}}, "anyones": {"_count": 3, "looking": {"_count": 1}, "got": {"_count": 1}, "going": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Ive": {"_count": 2, "told": {"_count": 1}, "still": {"_count": 1}}, "truth": {"_count": 1, "be": {"_count": 1}}, "Dad": {"_count": 1, "hadnt": {"_count": 1}}, "Sirius": {"_count": 3, "came": {"_count": 1}, "really": {"_count": 1}, "was": {"_count": 1}}, "his": {"_count": 2, "antics": {"_count": 1}, "surroundings": {"_count": 1}}, "Cedric": {"_count": 1, "had": {"_count": 1}}, "someones": {"_count": 1, "trying": {"_count": 1}}, "Voldemort": {"_count": 8, "is": {"_count": 1}, "decided": {"_count": 1}, "had": {"_count": 3}, "finds": {"_count": 1}, "chose": {"_count": 1}, "should": {"_count": 1}}, "however": {"_count": 1, "the": {"_count": 1}}, "Dudleys": {"_count": 1, "friends": {"_count": 1}}, "their": {"_count": 2, "least": {"_count": 1}, "lessons": {"_count": 1}}, "Mum": {"_count": 1, "sees": {"_count": 1}}, "some": {"_count": 1, "farfetched": {"_count": 1}}, "Harrys": {"_count": 1, "allowed": {"_count": 1}}, "Dumbledores": {"_count": 1, "out": {"_count": 1}}, "Ginnys": {"_count": 1, "not": {"_count": 1}}, "my": {"_count": 1, "parents": {"_count": 1}}, "Luna": {"_count": 1, "was": {"_count": 1}}, "anybody": {"_count": 1, "asks": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "somebody": {"_count": 2, "had": {"_count": 1}, "swapped": {"_count": 1}}, "death": {"_count": 1, "is": {"_count": 1}}, "Draco": {"_count": 1, "succeeds": {"_count": 1}}, "so": {"_count": 4, "she": {"_count": 1}, "he": {"_count": 1}, "Id": {"_count": 1}, "Harry": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "say": {"_count": 1, "her": {"_count": 1}}, "Potter": {"_count": 1, "Apparates": {"_count": 1}}, "wed": {"_count": 1, "even": {"_count": 1}}, "Dudley": {"_count": 1, "was": {"_count": 1}}, "these": {"_count": 2, "things": {"_count": 1}, "were": {"_count": 1}}, "Doge": {"_count": 1, "had": {"_count": 1}}, "Kreacher": {"_count": 1, "could": {"_count": 1}}, "Thicknesse": {"_count": 1, "had": {"_count": 1}}, "Yaxley": {"_count": 1, "could": {"_count": 1}}, "He": {"_count": 1, "cleared": {"_count": 1}}, "surviving": {"_count": 1, "was": {"_count": 1}}, "Dean": {"_count": 1, "is": {"_count": 1}}, "theyre": {"_count": 1, "rubies": {"_count": 1}}}, "might": {"_count": 798, "have": {"_count": 187, "found": {"_count": 2}, "been": {"_count": 55}, "fitted": {"_count": 1}, "thought": {"_count": 2}, "died": {"_count": 2}, "told": {"_count": 4}, "broken": {"_count": 2}, "done": {"_count": 2}, "gone": {"_count": 4}, "ter": {"_count": 2}, "saved": {"_count": 1}, "The": {"_count": 1}, "hidden": {"_count": 3}, "got": {"_count": 3}, "guessed": {"_count": 1}, "taken": {"_count": 2}, "happened": {"_count": 1}, "sent": {"_count": 1}, "mistaken": {"_count": 1}, "missed": {"_count": 1}, "permitted": {"_count": 1}, "had": {"_count": 4}, "stepped": {"_count": 1}, "looked": {"_count": 2}, "picked": {"_count": 1}, "Mugglerepelling": {"_count": 1}, "made": {"_count": 8}, "to": {"_count": 6}, "joined": {"_count": 1}, "overlooked": {"_count": 1}, "a": {"_count": 4}, "helped": {"_count": 1}, "ruined": {"_count": 2}, "considered": {"_count": 1}, "released": {"_count": 1}, "forgotten": {"_count": 1}, "ordered": {"_count": 1}, "hoped": {"_count": 1}, "many": {"_count": 1}, "turned": {"_count": 3}, "swallowed": {"_count": 1}, "walked": {"_count": 1}, "enough": {"_count": 1}, "appealed": {"_count": 1}, "their": {"_count": 1}, "decided": {"_count": 1}, "indicated": {"_count": 1}, "dropped": {"_count": 2}, "crawled": {"_count": 1}, "humbled": {"_count": 1}, "put": {"_count": 2}, "chosen": {"_count": 2}, "noticed": {"_count": 4}, "and": {"_count": 1}, "added": {"_count": 1}, "set": {"_count": 2}, "awoken": {"_count": 1}, "marked": {"_count": 1}, "succeeded": {"_count": 1}, "forced": {"_count": 1}, "er": {"_count": 1}, "smelled": {"_count": 1}, "cured": {"_count": 1}, "the": {"_count": 1}, "another": {"_count": 1}, "expected": {"_count": 1}, "some": {"_count": 1}, "announced": {"_count": 1}, "come": {"_count": 1}, "fallen": {"_count": 1}, "survived": {"_count": 1}, "succumbed": {"_count": 1}, "enchanted": {"_count": 1}, "stabbed": {"_count": 1}, "stuck": {"_count": 1}, "magic": {"_count": 1}, "provoked": {"_count": 1}, "caught": {"_count": 2}, "left": {"_count": 1}, "misunderstood": {"_count": 1}, "stolen": {"_count": 1}, "known": {"_count": 1}, "belonged": {"_count": 2}, "lain": {"_count": 1}, "sprung": {"_count": 1}}, "be": {"_count": 169, "going": {"_count": 2}, "hiding": {"_count": 2}, "sick": {"_count": 3}, "following": {"_count": 1}, "nice": {"_count": 1}, "warmer": {"_count": 1}, "trouble": {"_count": 1}, "one": {"_count": 1}, "lurking": {"_count": 2}, "raised": {"_count": 1}, "up": {"_count": 4}, "something": {"_count": 4}, "able": {"_count": 13}, "too": {"_count": 3}, "thrown": {"_count": 1}, "a": {"_count": 15}, "fairer": {"_count": 1}, "": {"_count": 5}, "using": {"_count": 1}, "invisible": {"_count": 1}, "deaf": {"_count": 1}, "the": {"_count": 5}, "Slytherins": {"_count": 1}, "some": {"_count": 1}, "kinder": {"_count": 1}, "solved": {"_count": 1}, "alive": {"_count": 1}, "in": {"_count": 4}, "telling": {"_count": 2}, "said": {"_count": 2}, "carrying": {"_count": 1}, "doing": {"_count": 1}, "mistaken": {"_count": 1}, "us": {"_count": 1}, "useful": {"_count": 2}, "to": {"_count": 1}, "time": {"_count": 1}, "his": {"_count": 1}, "seeing": {"_count": 1}, "ter": {"_count": 1}, "poisoning": {"_count": 1}, "entering": {"_count": 1}, "Hagrid": {"_count": 1}, "better": {"_count": 1}, "here": {"_count": 2}, "easier": {"_count": 1}, "dead": {"_count": 4}, "my": {"_count": 1}, "exactly": {"_count": 1}, "laboring": {"_count": 1}, "prejudiced": {"_count": 1}, "weaker": {"_count": 1}, "coming": {"_count": 3}, "cornin": {"_count": 1}, "taking": {"_count": 1}, "allowed": {"_count": 2}, "expelled": {"_count": 1}, "uncomfortable": {"_count": 1}, "intercepted": {"_count": 1}, "that": {"_count": 3}, "out": {"_count": 2}, "dropping": {"_count": 1}, "pompous": {"_count": 1}, "another": {"_count": 1}, "back": {"_count": 1}, "surprised": {"_count": 1}, "under": {"_count": 1}, "them": {"_count": 1}, "expecting": {"_count": 2}, "good": {"_count": 1}, "considered": {"_count": 1}, "grateful": {"_count": 1}, "an": {"_count": 2}, "shattered": {"_count": 1}, "rather": {"_count": 1}, "dangerous": {"_count": 1}, "gagged": {"_count": 1}, "lost": {"_count": 1}, "but": {"_count": 2}, "danger": {"_count": 2}, "wise": {"_count": 1}, "possible": {"_count": 1}, "reusable": {"_count": 1}, "wrong": {"_count": 1}, "pushing": {"_count": 1}, "off": {"_count": 1}, "at": {"_count": 1}, "just": {"_count": 2}, "keeping": {"_count": 1}, "aware": {"_count": 1}, "like": {"_count": 1}, "lying": {"_count": 1}, "important": {"_count": 1}, "listening": {"_count": 1}, "late": {"_count": 1}, "blamed": {"_count": 1}, "now": {"_count": 1}, "more": {"_count": 1}, "school": {"_count": 1}, "breaching": {"_count": 1}, "killed": {"_count": 1}}, "get": {"_count": 9, "dangerous": {"_count": 1}, "Agrippa": {"_count": 1}, "lucky": {"_count": 1}, "to": {"_count": 1}, "me": {"_count": 1}, "off": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}}, "already": {"_count": 3, "have": {"_count": 2}, "be": {"_count": 1}}, "faint": {"_count": 2, "": {"_count": 2}}, "belong": {"_count": 3, "in": {"_count": 2}, "to": {"_count": 1}}, "not": {"_count": 57, "be": {"_count": 21}, "have": {"_count": 16}, "want": {"_count": 5}, "see": {"_count": 1}, "get": {"_count": 1}, "understand": {"_count": 1}, "your": {"_count": 1}, "count": {"_count": 1}, "let": {"_count": 1}, "to": {"_count": 1}, "take": {"_count": 1}, "even": {"_count": 2}, "make": {"_count": 1}, "yet": {"_count": 1}, "mind": {"_count": 1}, "do": {"_count": 1}, "come": {"_count": 1}}, "help": {"_count": 4, "him": {"_count": 1}, "prepare": {"_count": 1}, "look": {"_count": 1}, "one": {"_count": 1}}, "lose": {"_count": 1, "it": {"_count": 1}}, "overtake": {"_count": 1, "Slytherin": {"_count": 1}}, "cry": {"_count": 1, "": {"_count": 1}}, "happen": {"_count": 4, "to": {"_count": 1}, "the": {"_count": 1}, "sooner": {"_count": 1}, "if": {"_count": 1}}, "as": {"_count": 15, "well": {"_count": 15}}, "back": {"_count": 1, "us": {"_count": 1}}, "even": {"_count": 16, "now": {"_count": 2}, "attack": {"_count": 1}, "get": {"_count": 1}, "have": {"_count": 4}, "be": {"_count": 6}, "suspect": {"_count": 1}, "consider": {"_count": 1}}, "and": {"_count": 2, "to": {"_count": 1}, "pointed": {"_count": 1}}, "like": {"_count": 6, "it": {"_count": 1}, "one": {"_count": 1}, "to": {"_count": 3}, "": {"_count": 1}}, "well": {"_count": 6, "have": {"_count": 2}, "fall": {"_count": 1}, "find": {"_count": 1}, "be": {"_count": 2}}, "go": {"_count": 4, "off": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}, "back": {"_count": 1}}, "turn": {"_count": 5, "them": {"_count": 1}, "up": {"_count": 1}, "suddenly": {"_count": 1}, "him": {"_count": 1}, "out": {"_count": 1}}, "still": {"_count": 5, "have": {"_count": 1}, "be": {"_count": 4}}, "finish": {"_count": 1, "your": {"_count": 1}}, "embarrass": {"_count": 1, "me": {"_count": 1}}, "make": {"_count": 8, "it": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}, "better": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 2}}, "": {"_count": 8, ".": {"_count": 6}, "!": {"_count": 1}, "?": {"_count": 1}}, "provoke": {"_count": 1, "them": {"_count": 1}}, "run": {"_count": 3, "inter": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 1}}, "distract": {"_count": 1, "him": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "speak": {"_count": 2, "Headmaster": {"_count": 1}, "words": {"_count": 1}}, "come": {"_count": 8, "back": {"_count": 2}, "in": {"_count": 3}, "spilling": {"_count": 1}, "to": {"_count": 1}, "next": {"_count": 1}}, "think": {"_count": 4, "of": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "about": {"_count": 1}}, "stand": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "Bludger": {"_count": 1}, "HalfBlood": {"_count": 1}}, "at": {"_count": 2, "it": {"_count": 1}, "last": {"_count": 1}}, "strangle": {"_count": 1, "you": {"_count": 1}}, "tell": {"_count": 2, "you": {"_count": 1}, "her": {"_count": 1}}, "know": {"_count": 4, "anything": {"_count": 1}, "who": {"_count": 1}, "whats": {"_count": 1}, "something": {"_count": 1}}, "notve": {"_count": 1, "been": {"_count": 1}}, "wake": {"_count": 2, "everyone": {"_count": 1}, "at": {"_count": 1}}, "just": {"_count": 14, "as": {"_count": 4}, "be": {"_count": 3}, "explode": {"_count": 1}, "find": {"_count": 1}, "do": {"_count": 1}, "go": {"_count": 1}, "have": {"_count": 3}}, "look": {"_count": 5, "like": {"_count": 2}, "if": {"_count": 1}, "in": {"_count": 1}, "suspicious": {"_count": 1}}, "need": {"_count": 2, "it": {"_count": 1}, "reminding": {"_count": 1}}, "add": {"_count": 2, "but": {"_count": 1}, "that": {"_count": 1}}, "explode": {"_count": 2, "": {"_count": 2}}, "find": {"_count": 8, "this": {"_count": 1}, "something": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}, "them": {"_count": 1}, "useful": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "forget": {"_count": 1, "their": {"_count": 1}}, "hear": {"_count": 5, "Arthur": {"_count": 1}, "his": {"_count": 1}, "us": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "collapse": {"_count": 1, "again": {"_count": 1}}, "he": {"_count": 5, "couldnt": {"_count": 2}, "not": {"_count": 1}, "thought": {"_count": 2}}, "let": {"_count": 2, "yeh": {"_count": 1}, "us": {"_count": 1}}, "force": {"_count": 1, "it": {"_count": 1}}, "want": {"_count": 10, "to": {"_count": 8}, "someone": {"_count": 1}, "ter": {"_count": 1}}, "never": {"_count": 8, "have": {"_count": 5}, "regain": {"_count": 1}, "go": {"_count": 1}, "come": {"_count": 1}}, "sound": {"_count": 1, "like": {"_count": 1}}, "on": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "to": {"_count": 3, "keep": {"_count": 1}, "suppress": {"_count": 1}, "make": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "try": {"_count": 9, "and": {"_count": 7}, "to": {"_count": 2}}, "invite": {"_count": 1, "him": {"_count": 1}}, "start": {"_count": 1, "thinking": {"_count": 1}}, "don": {"_count": 1, "Muggle": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "suddenly": {"_count": 2, "run": {"_count": 1}, "emerge": {"_count": 1}}, "fall": {"_count": 1, "off": {"_count": 1}}, "sneer": {"_count": 1, "Ron": {"_count": 1}}, "write": {"_count": 2, "back": {"_count": 1}, "occasionally": {"_count": 1}}, "slip": {"_count": 1, "dragon": {"_count": 1}}, "shut": {"_count": 1, "him": {"_count": 1}}, "stop": {"_count": 1, "those": {"_count": 1}}, "do": {"_count": 6, "it": {"_count": 2}, "": {"_count": 1}, "better": {"_count": 1}, "him": {"_count": 1}, "much": {"_count": 1}}, "interest": {"_count": 2, "you": {"_count": 2}}, "remind": {"_count": 1, "you": {"_count": 1}}, "meet": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 1, "red": {"_count": 1}}, "knock": {"_count": 1, "him": {"_count": 1}}, "take": {"_count": 4, "weeks": {"_count": 1}, "a": {"_count": 2}, "all": {"_count": 1}}, "lead": {"_count": 2, "to": {"_count": 1}, "somehow": {"_count": 1}}, "enable": {"_count": 1, "a": {"_count": 1}}, "include": {"_count": 1, "one": {"_count": 1}}, "resort": {"_count": 1, "to": {"_count": 1}}, "achieve": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 5, "but": {"_count": 1}, "how": {"_count": 1}, "about": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}}, "point": {"_count": 1, "to": {"_count": 1}}, "mean": {"_count": 3, "": {"_count": 2}, "were": {"_count": 1}}, "prefer": {"_count": 2, "not": {"_count": 1}, "brooms": {"_count": 1}}, "refer": {"_count": 1, "to": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "strike": {"_count": 1, "some": {"_count": 1}}, "contaminate": {"_count": 1, "him": {"_count": 1}}, "see": {"_count": 4, "you": {"_count": 2}, "hidden": {"_count": 1}, "about": {"_count": 1}}, "really": {"_count": 2, "be": {"_count": 1}, "go": {"_count": 1}}, "Take": {"_count": 1, "only": {"_count": 1}}, "attack": {"_count": 2, "stragglers": {"_count": 1}, "Snape": {"_count": 1}}, "with": {"_count": 1, "luck": {"_count": 1}}, "lighten": {"_count": 1, "his": {"_count": 1}}, "accidentally": {"_count": 2, "pick": {"_count": 1}, "spend": {"_count": 1}}, "actually": {"_count": 1, "float": {"_count": 1}}, "call": {"_count": 2, "the": {"_count": 1}, "\u2018usual": {"_count": 1}}, "throw": {"_count": 2, "caution": {"_count": 1}, "something": {"_count": 1}}, "upset": {"_count": 1, "Umbridge": {"_count": 1}}, "yet": {"_count": 1, "make": {"_count": 1}}, "cheer": {"_count": 1, "you": {"_count": 1}}, "show": {"_count": 2, "itself": {"_count": 1}, "they": {"_count": 1}}, "spill": {"_count": 1, "over": {"_count": 1}}, "become": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "Snape": {"_count": 1}, "Lupin": {"_count": 1}}, "soon": {"_count": 2, "crack": {"_count": 1}, "vanish": {"_count": 1}}, "give": {"_count": 5, "you": {"_count": 2}, "us": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "seek": {"_count": 1, "to": {"_count": 1}}, "hit": {"_count": 3, "that": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 3}}, "spring": {"_count": 1, "out": {"_count": 1}}, "against": {"_count": 1, "Hagrid": {"_count": 1}}, "kill": {"_count": 2, "them": {"_count": 1}, "off": {"_count": 1}}, "move": {"_count": 1, "too": {"_count": 1}}, "burst": {"_count": 1, "": {"_count": 1}}, "tear": {"_count": 1, "and": {"_count": 1}}, "realize": {"_count": 1, "that": {"_count": 1}}, "ask": {"_count": 2, "and": {"_count": 1}, "you": {"_count": 1}}, "indeed": {"_count": 2, "have": {"_count": 1}, "know": {"_count": 1}}, "remember": {"_count": 1, "me": {"_count": 1}}, "argue": {"_count": 1, "but": {"_count": 1}}, "ah": {"_count": 1, "bring": {"_count": 1}}, "too": {"_count": 1, "have": {"_count": 1}}, "occur": {"_count": 2, "to": {"_count": 2}}, "use": {"_count": 2, "your": {"_count": 1}, "them": {"_count": 1}}, "impose": {"_count": 1, "upon": {"_count": 1}}, "punch": {"_count": 1, "him": {"_count": 1}}, "once": {"_count": 1, "have": {"_count": 1}}, "or": {"_count": 1, "might": {"_count": 1}}, "consider": {"_count": 1, "it": {"_count": 1}}, "blow": {"_count": 1, "him": {"_count": 1}}, "begin": {"_count": 1, "to": {"_count": 1}}, "Harrys": {"_count": 1, "heart": {"_count": 1}}, "destroy": {"_count": 1, "it": {"_count": 1}}, "one": {"_count": 1, "day": {"_count": 1}}, "then": {"_count": 1, "have": {"_count": 1}}, "avoid": {"_count": 1, "even": {"_count": 1}}, "discuss": {"_count": 1, "the": {"_count": 1}}, "decide": {"_count": 1, "to": {"_count": 1}}, "paralyze": {"_count": 1, "me": {"_count": 1}}, "cause": {"_count": 2, "him": {"_count": 1}, "Hermione": {"_count": 1}}, "drink": {"_count": 1, "": {"_count": 1}}, "contradict": {"_count": 1, "her": {"_count": 1}}, "close": {"_count": 1, "": {"_count": 1}}, "suggest": {"_count": 1, "": {"_count": 1}}, "leap": {"_count": 1, "unscathed": {"_count": 1}}, "expect": {"_count": 1, "you": {"_count": 1}}, "transform": {"_count": 1, "in": {"_count": 1}}, "put": {"_count": 1, "a": {"_count": 1}}, "check": {"_count": 1, "there": {"_count": 1}}, "wonder": {"_count": 1, "whats": {"_count": 1}}, "glance": {"_count": 1, "back": {"_count": 1}}, "recognize": {"_count": 1, "him": {"_count": 1}}, "trigger": {"_count": 1, "a": {"_count": 1}}, "break": {"_count": 1, "into": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "hide": {"_count": 1, "something": {"_count": 1}}, "fill": {"_count": 1, "part": {"_count": 1}}, "oh": {"_count": 1, "Harry": {"_count": 1}}, "curse": {"_count": 1, "her": {"_count": 1}}, "proclaim": {"_count": 1, "other": {"_count": 1}}, "soften": {"_count": 1, "at": {"_count": 1}}, "sting": {"_count": 1, "or": {"_count": 1}}, "return": {"_count": 1, "would": {"_count": 1}}, "end": {"_count": 1, "": {"_count": 1}}, "commence": {"_count": 1, "their": {"_count": 1}}, "bury": {"_count": 1, "this": {"_count": 1}}, "die": {"_count": 1, "at": {"_count": 1}}, "penetrate": {"_count": 1, "the": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "dominate": {"_count": 1, "your": {"_count": 1}}, "seize": {"_count": 1, "the": {"_count": 1}}, "twitch": {"_count": 1, "": {"_count": 1}}, "bring": {"_count": 1, "him": {"_count": 1}}}, "harder": {"_count": 71, "to": {"_count": 12, "concentrate": {"_count": 2}, "get": {"_count": 1}, "feel": {"_count": 1}, "hold": {"_count": 1}, "see": {"_count": 1}, "do": {"_count": 1}, "overhear": {"_count": 1}, "bring": {"_count": 1}, "empty": {"_count": 1}, "ignore": {"_count": 1}, "Get": {"_count": 1}}, "she": {"_count": 1, "tried": {"_count": 1}}, "than": {"_count": 36, "ever": {"_count": 25}, "he": {"_count": 3}, "they": {"_count": 2}, "was": {"_count": 1}, "she": {"_count": 1}, "anyone": {"_count": 2}, "Luna": {"_count": 1}, "frogs": {"_count": 1}}, "time": {"_count": 1, "frightenin": {"_count": 1}}, "and": {"_count": 5, "harder": {"_count": 2}, "more": {"_count": 1}, "faster": {"_count": 1}, "heavier": {"_count": 1}}, "if": {"_count": 1, "there": {"_count": 1}}, "even": {"_count": 1, "than": {"_count": 1}}, "for": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "squashed": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "your": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "now": {"_count": 1}}, "or": {"_count": 1, "lower": {"_count": 1}}, "making": {"_count": 1, "stuff": {"_count": 1}}, "valiantly": {"_count": 1, "keeping": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "concentrate": {"_count": 30, "on": {"_count": 10, "drills": {"_count": 2}, "finding": {"_count": 2}, "the": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}, "Snapes": {"_count": 1}, "keeping": {"_count": 1}, "getting": {"_count": 1}}, "hard": {"_count": 3, "on": {"_count": 2}, "to": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "when": {"_count": 1, "people": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "with": {"_count": 1, "all": {"_count": 1}}, "in": {"_count": 1, "class": {"_count": 1}}, "A": {"_count": 1, "pair": {"_count": 1}}, "your": {"_count": 1, "efforts": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "boys": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "and": {"_count": 1, "by": {"_count": 1}}, "upon": {"_count": 1, "that": {"_count": 1}}, "continuously": {"_count": 1, "upon": {"_count": 1}}}, "owls": {"_count": 119, "swooping": {"_count": 2, "past": {"_count": 1}, "around": {"_count": 1}}, "have": {"_count": 4, "been": {"_count": 1}, "suddenly": {"_count": 1}, "come": {"_count": 1}, "arrived": {"_count": 1}}, "normally": {"_count": 1, "hunt": {"_count": 1}}, "tonight": {"_count": 1, "Jim": {"_count": 1}}, "that": {"_count": 2, "have": {"_count": 1}, "managed": {"_count": 1}}, "swooped": {"_count": 2, "overhead": {"_count": 1}, "into": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 16}, "?": {"_count": 3}}, "are": {"_count": 2, "nothing": {"_count": 1}, "being": {"_count": 1}}, "every": {"_count": 1, "morning": {"_count": 1}}, "theyre": {"_count": 1, "dead": {"_count": 1}}, "had": {"_count": 2, "suddenly": {"_count": 1}, "fluttered": {"_count": 1}}, "flooded": {"_count": 1, "into": {"_count": 1}}, "soared": {"_count": 2, "down": {"_count": 1}, "through": {"_count": 1}}, "off": {"_count": 1, "ter": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 11, "a": {"_count": 1}, "I": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "dont": {"_count": 1}, "the": {"_count": 2}, "narrowing": {"_count": 1}, "theyre": {"_count": 1}, "followed": {"_count": 1}, "her": {"_count": 1}, "letters": {"_count": 1}}, "streamed": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "tell": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "hooted": {"_count": 1, "cats": {"_count": 1}}, "all": {"_count": 2, "sitting": {"_count": 1}, "of": {"_count": 1}}, "sat": {"_count": 1, "hooting": {"_count": 1}}, "Local": {"_count": 1, "Deliveries": {"_count": 1}}, "will": {"_count": 1, "start": {"_count": 1}}, "as": {"_count": 3, "was": {"_count": 1}, "well": {"_count": 1}, "the": {"_count": 1}}, "leg": {"_count": 4, "as": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "from": {"_count": 2, "Hogwarts": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 2, "soaring": {"_count": 2}}, "circled": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "every": {"_count": 1}}, "arrived": {"_count": 3, "nor": {"_count": 1}, "Hermione": {"_count": 1}, "swooping": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "then": {"_count": 1, "anyone": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "kept": {"_count": 1, "being": {"_count": 1}}, "around": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "a": {"_count": 1, "brown": {"_count": 1}}, "with": {"_count": 1, "instructions": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "appeared": {"_count": 1, "bringing": {"_count": 1}}, "doing": {"_count": 1, "if": {"_count": 1}}, "carrying": {"_count": 1, "letters": {"_count": 1}}, "beak": {"_count": 1, "and": {"_count": 1}}, "shooting": {"_count": 1, "in": {"_count": 1}}, "coming": {"_count": 1, "Harry": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "arent": {"_count": 1, "being": {"_count": 1}}, "nestled": {"_count": 1, "on": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "overhead": {"_count": 1, "and": {"_count": 1}}, "other": {"_count": 1, "leg": {"_count": 1}}, "fluttering": {"_count": 2, "around": {"_count": 1}, "and": {"_count": 1}}, "issued": {"_count": 1, "at": {"_count": 1}}, "traveled": {"_count": 1, "Potter": {"_count": 1}}, "followin": {"_count": 1, "me": {"_count": 1}}, "on": {"_count": 1, "Monday": {"_count": 1}}, "landed": {"_count": 1, "amongst": {"_count": 1}}, "still": {"_count": 1, "scrabbling": {"_count": 1}}, "would": {"_count": 1, "never": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Gaunt": {"_count": 1}}, "were": {"_count": 2, "flying": {"_count": 1}, "being": {"_count": 1}}, "everywhere": {"_count": 1, "and": {"_count": 1}}, "inside": {"_count": 1, "them": {"_count": 1}}}, "swooping": {"_count": 22, "past": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 2, "and": {"_count": 1}, "his": {"_count": 1}}, "down": {"_count": 6, "out": {"_count": 1}, "on": {"_count": 2}, "to": {"_count": 1}, "upon": {"_count": 1}, "through": {"_count": 1}}, "around": {"_count": 4, "like": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "sensation": {"_count": 2, "in": {"_count": 2}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "feeling": {"_count": 1, "as": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "kiss": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "low": {"_count": 2, "over": {"_count": 2}}}, "broad": {"_count": 30, "daylight": {"_count": 4, "though": {"_count": 1}, "not": {"_count": 1}, "They": {"_count": 1}, "": {"_count": 1}}, "grin": {"_count": 3, "on": {"_count": 2}, "": {"_count": 1}}, "thumb": {"_count": 1, "along": {"_count": 1}}, "goodnatured": {"_count": 1, "face": {"_count": 1}}, "grins": {"_count": 1, "on": {"_count": 1}}, "Shrewd": {"_count": 1, "Slytherin": {"_count": 1}}, "Hagrid": {"_count": 1, "with": {"_count": 1}}, "stone": {"_count": 2, "corridor": {"_count": 1}, "steps": {"_count": 1}}, "back": {"_count": 3, "as": {"_count": 1}, "": {"_count": 2}}, "street": {"_count": 1, "lined": {"_count": 1}}, "squarejawed": {"_count": 1, "witch": {"_count": 1}}, "flabby": {"_count": 2, "face": {"_count": 2}}, "smile": {"_count": 2, "spreading": {"_count": 1}, "of": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "storelined": {"_count": 1, "street": {"_count": 1}}, "vacant": {"_count": 1, "smile": {"_count": 1}}, "and": {"_count": 2, "as": {"_count": 1}, "his": {"_count": 1}}, "hunched": {"_count": 1, "woman": {"_count": 1}}, "nose": {"_count": 1, "and": {"_count": 1}}}, "daylight": {"_count": 17, "though": {"_count": 1, "people": {"_count": 1}}, "there": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 2}, "!": {"_count": 2}}, "not": {"_count": 1, "even": {"_count": 1}}, "he": {"_count": 1, "kept": {"_count": 1}}, "They": {"_count": 1, "reached": {"_count": 1}}, "was": {"_count": 1, "slightly": {"_count": 1}}, "so": {"_count": 1, "ve": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "for": {"_count": 1, "months": {"_count": 1}}, "could": {"_count": 1, "permeate": {"_count": 1}}, "we": {"_count": 1, "couldn": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}}, "though": {"_count": 1760, "people": {"_count": 2, "down": {"_count": 1}, "were": {"_count": 1}}, "it": {"_count": 126, "were": {"_count": 26}, "had": {"_count": 26}, "was": {"_count": 48}, "couldnt": {"_count": 1}, "left": {"_count": 1}, "seemed": {"_count": 1}, "too": {"_count": 1}, "is": {"_count": 2}, "knew": {"_count": 1}, "may": {"_count": 1}, "would": {"_count": 3}, "wasnt": {"_count": 2}, "belonged": {"_count": 1}, "could": {"_count": 1}, "gave": {"_count": 2}, "felt": {"_count": 1}, "might": {"_count": 3}, "looked": {"_count": 1}, "burst": {"_count": 1}, "sounds": {"_count": 1}, "hadnt": {"_count": 1}, "will": {"_count": 1}}, "hoping": {"_count": 9, "he": {"_count": 2}, "for": {"_count": 1}, "to": {"_count": 2}, "their": {"_count": 1}, "somebody": {"_count": 2}, "the": {"_count": 1}}, "she": {"_count": 117, "didnt": {"_count": 1}, "thought": {"_count": 5}, "might": {"_count": 5}, "had": {"_count": 30}, "hadnt": {"_count": 3}, "were": {"_count": 8}, "couldnt": {"_count": 3}, "was": {"_count": 25}, "looked": {"_count": 4}, "knew": {"_count": 3}, "said": {"_count": 3}, "doubted": {"_count": 1}, "made": {"_count": 1}, "sounded": {"_count": 3}, "demonstrated": {"_count": 1}, "could": {"_count": 5}, "is": {"_count": 1}, "also": {"_count": 1}, "did": {"_count": 3}, "accepts": {"_count": 1}, "really": {"_count": 1}, "would": {"_count": 2}, "wanted": {"_count": 1}, "appeared": {"_count": 1}, "seemed": {"_count": 1}, "considerably": {"_count": 1}, "wished": {"_count": 1}, "frequently": {"_count": 1}, "smiled": {"_count": 1}}, "because": {"_count": 4, "he": {"_count": 1}, "we": {"_count": 1}, "your": {"_count": 1}, "ripping": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "hed": {"_count": 22, "planned": {"_count": 1}, "sunk": {"_count": 1}, "rather": {"_count": 1}, "cracked": {"_count": 1}, "been": {"_count": 4}, "just": {"_count": 5}, "wrecked": {"_count": 1}, "only": {"_count": 2}, "lost": {"_count": 1}, "eaten": {"_count": 1}, "received": {"_count": 1}, "swallowed": {"_count": 1}, "misbehaved": {"_count": 1}, "never": {"_count": 1}}, "he": {"_count": 398, "wasnt": {"_count": 5}, "was": {"_count": 85}, "hadnt": {"_count": 3}, "had": {"_count": 107}, "couldnt": {"_count": 11}, "added": {"_count": 2}, "needs": {"_count": 1}, "might": {"_count": 6}, "could": {"_count": 17}, "were": {"_count": 44}, "wanted": {"_count": 4}, "and": {"_count": 3}, "said": {"_count": 1}, "doubted": {"_count": 1}, "thought": {"_count": 8}, "knew": {"_count": 16}, "asked": {"_count": 1}, "got": {"_count": 1}, "owned": {"_count": 1}, "pulled": {"_count": 1}, "Harry": {"_count": 1}, "wished": {"_count": 2}, "still": {"_count": 2}, "would": {"_count": 9}, "trimmed": {"_count": 1}, "sounded": {"_count": 1}, "too": {"_count": 3}, "didnt": {"_count": 5}, "personally": {"_count": 1}, "looked": {"_count": 3}, "Ron": {"_count": 1}, "returned": {"_count": 1}, "never": {"_count": 1}, "told": {"_count": 1}, "made": {"_count": 1}, "is": {"_count": 2}, "ought": {"_count": 1}, "knows": {"_count": 1}, "expected": {"_count": 1}, "felt": {"_count": 3}, "often": {"_count": 1}, "did": {"_count": 6}, "sincerely": {"_count": 1}, "neither": {"_count": 1}, "desired": {"_count": 1}, "found": {"_count": 3}, "continued": {"_count": 1}, "may": {"_count": 1}, "altered": {"_count": 1}, "isnt": {"_count": 1}, "weighed": {"_count": 1}, "barely": {"_count": 1}, "really": {"_count": 1}, "seemed": {"_count": 1}, "thinks": {"_count": 1}, "lay": {"_count": 1}, "belonged": {"_count": 1}, "now": {"_count": 2}, "liked": {"_count": 1}, "himself": {"_count": 1}, "walked": {"_count": 1}, "just": {"_count": 1}, "sat": {"_count": 1}, "confided": {"_count": 1}, "staggered": {"_count": 1}, "hardly": {"_count": 1}, "appeared": {"_count": 1}, "does": {"_count": 1}, "remained": {"_count": 1}, "stood": {"_count": 1}, "turned": {"_count": 1}}, "shed": {"_count": 3, "just": {"_count": 2}, "had": {"_count": 1}}, "theyd": {"_count": 4, "never": {"_count": 1}, "had": {"_count": 1}, "just": {"_count": 2}}, "the": {"_count": 97, "thought": {"_count": 1}, "happy": {"_count": 1}, "way": {"_count": 2}, "broom": {"_count": 1}, "teddy": {"_count": 1}, "bottom": {"_count": 2}, "poor": {"_count": 1}, "person": {"_count": 1}, "whole": {"_count": 1}, "effect": {"_count": 1}, "first": {"_count": 2}, "trees": {"_count": 1}, "blackandwhite": {"_count": 1}, "creature": {"_count": 1}, "memory": {"_count": 3}, "idea": {"_count": 1}, "conditions": {"_count": 1}, "tree": {"_count": 2}, "effort": {"_count": 1}, "ground": {"_count": 2}, "atmosphere": {"_count": 1}, "weeds": {"_count": 1}, "great": {"_count": 1}, "Top": {"_count": 1}, "masked": {"_count": 1}, "path": {"_count": 1}, "rain": {"_count": 1}, "ceiling": {"_count": 3}, "Ministry": {"_count": 1}, "matter": {"_count": 1}, "styling": {"_count": 1}, "last": {"_count": 1}, "castle": {"_count": 1}, "prospect": {"_count": 1}, "words": {"_count": 1}, "bathroom": {"_count": 1}, "faces": {"_count": 1}, "eighteenyearold": {"_count": 1}, "evening": {"_count": 1}, "maze": {"_count": 1}, "curse": {"_count": 1}, "wands": {"_count": 1}, "song": {"_count": 1}, "thick": {"_count": 1}, "office": {"_count": 1}, "rush": {"_count": 1}, "long": {"_count": 1}, "most": {"_count": 1}, "fighting": {"_count": 1}, "Ministrys": {"_count": 1}, "mystical": {"_count": 1}, "cut": {"_count": 1}, "numbers": {"_count": 1}, "singing": {"_count": 1}, "panic": {"_count": 1}, "old": {"_count": 1}, "hand": {"_count": 1}, "taste": {"_count": 1}, "features": {"_count": 1}, "glow": {"_count": 1}, "woman": {"_count": 1}, "glass": {"_count": 1}, "sudden": {"_count": 1}, "light": {"_count": 1}, "rattling": {"_count": 1}, "details": {"_count": 1}, "monster": {"_count": 1}, "golden": {"_count": 1}, "pupils": {"_count": 1}, "potion": {"_count": 1}, "Death": {"_count": 1}, "bottles": {"_count": 1}, "corners": {"_count": 1}, "sunlight": {"_count": 1}, "dark": {"_count": 1}, "only": {"_count": 1}, "word": {"_count": 1}, "lights": {"_count": 1}, "sun": {"_count": 1}, "Muffliato": {"_count": 1}, "house": {"_count": 1}, "best": {"_count": 1}, "passageway": {"_count": 1}, "density": {"_count": 1}, "night": {"_count": 1}, "girls": {"_count": 1}, "soul": {"_count": 1}, "bright": {"_count": 1}}, "this": {"_count": 20, "was": {"_count": 10}, "story": {"_count": 1}, "settled": {"_count": 1}, "were": {"_count": 2}, "thought": {"_count": 1}, "time": {"_count": 1}, "question": {"_count": 1}, "weapon": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}}, "a": {"_count": 34, "large": {"_count": 1}, "tidal": {"_count": 1}, "person": {"_count": 1}, "hook": {"_count": 1}, "great": {"_count": 1}, "powerful": {"_count": 1}, "vast": {"_count": 1}, "couple": {"_count": 1}, "huge": {"_count": 1}, "friend": {"_count": 1}, "drop": {"_count": 1}, "lot": {"_count": 1}, "brick": {"_count": 2}, "vandal": {"_count": 1}, "stranger": {"_count": 2}, "whitehot": {"_count": 1}, "film": {"_count": 1}, "bullet": {"_count": 1}, "wonderful": {"_count": 1}, "lead": {"_count": 1}, "deep": {"_count": 1}, "radio": {"_count": 1}, "lump": {"_count": 1}, "single": {"_count": 1}, "few": {"_count": 1}, "little": {"_count": 1}, "beloved": {"_count": 1}, "cold": {"_count": 1}, "curtain": {"_count": 1}, "flame": {"_count": 1}, "small": {"_count": 1}, "good": {"_count": 1}}, "said": {"_count": 32, "Hagrid": {"_count": 1}, "Fred": {"_count": 5}, "Hermione": {"_count": 6}, "Ron": {"_count": 8}, "Hannah": {"_count": 1}, "Harry": {"_count": 8}, "Mr": {"_count": 1}, "Neville": {"_count": 1}, "Ernie": {"_count": 1}}, "everything": {"_count": 2, "Hagrid": {"_count": 1}, "was": {"_count": 1}}, "any": {"_count": 2, "chair": {"_count": 1}, "expectation": {"_count": 1}}, "Harry": {"_count": 46, "was": {"_count": 6}, "had": {"_count": 7}, "could": {"_count": 8}, "were": {"_count": 3}, "noticed": {"_count": 4}, "thought": {"_count": 2}, "if": {"_count": 1}, "didnt": {"_count": 1}, "": {"_count": 3}, "asked": {"_count": 1}, "argued": {"_count": 1}, "saw": {"_count": 1}, "youve": {"_count": 1}, "would": {"_count": 1}, "and": {"_count": 2}, "knew": {"_count": 1}, "did": {"_count": 1}, "strongly": {"_count": 1}, "said": {"_count": 1}}, "thanks": {"_count": 1, "Mom": {"_count": 1}}, "": {"_count": 85, ".": {"_count": 61}, "?": {"_count": 19}, "!": {"_count": 5}}, "his": {"_count": 53, "legs": {"_count": 2}, "insides": {"_count": 3}, "scar": {"_count": 2}, "Seeker": {"_count": 1}, "arm": {"_count": 1}, "stomach": {"_count": 2}, "face": {"_count": 1}, "head": {"_count": 2}, "ribs": {"_count": 1}, "hollowed": {"_count": 1}, "mouth": {"_count": 1}, "magical": {"_count": 1}, "sleeping": {"_count": 1}, "eyes": {"_count": 5}, "brain": {"_count": 3}, "whole": {"_count": 1}, "muscles": {"_count": 1}, "feet": {"_count": 1}, "voice": {"_count": 3}, "aunt": {"_count": 1}, "fears": {"_count": 1}, "heart": {"_count": 1}, "hair": {"_count": 1}, "first": {"_count": 1}, "final": {"_count": 1}, "hands": {"_count": 1}, "knees": {"_count": 1}, "life": {"_count": 1}, "expression": {"_count": 1}, "flesh": {"_count": 1}, "body": {"_count": 1}, "look": {"_count": 1}, "Uncle": {"_count": 1}, "features": {"_count": 1}, "wand": {"_count": 1}, "many": {"_count": 1}, "soul": {"_count": 1}, "slight": {"_count": 1}, "fathers": {"_count": 1}}, "I": {"_count": 28, "have": {"_count": 2}, "wouldnt": {"_count": 1}, "really": {"_count": 1}, "am": {"_count": 1}, "must": {"_count": 1}, "know": {"_count": 1}, "vos": {"_count": 1}, "lost": {"_count": 1}, "was": {"_count": 2}, "bet": {"_count": 1}, "want": {"_count": 1}, "knew": {"_count": 1}, "give": {"_count": 1}, "doubt": {"_count": 1}, "always": {"_count": 1}, "daresay": {"_count": 1}, "approve": {"_count": 1}, "just": {"_count": 1}, "think": {"_count": 3}, "heard": {"_count": 1}, "dont": {"_count": 1}, "spurned": {"_count": 1}, "pretended": {"_count": 2}}, "why": {"_count": 1, "dont": {"_count": 1}}, "in": {"_count": 14, "slow": {"_count": 2}, "her": {"_count": 1}, "protest": {"_count": 1}, "answer": {"_count": 1}, "a": {"_count": 3}, "silence": {"_count": 1}, "vinter": {"_count": 1}, "many": {"_count": 1}, "prayer": {"_count": 1}, "an": {"_count": 1}, "my": {"_count": 1}}, "all": {"_count": 3, "his": {"_count": 1}, "three": {"_count": 1}, "happiness": {"_count": 1}}, "thats": {"_count": 1, "somethin": {"_count": 1}}, "they": {"_count": 75, "knew": {"_count": 2}, "had": {"_count": 22}, "expected": {"_count": 1}, "were": {"_count": 27}, "are": {"_count": 3}, "cant": {"_count": 1}, "havent": {"_count": 1}, "might": {"_count": 1}, "didnt": {"_count": 1}, "did": {"_count": 2}, "could": {"_count": 2}, "feared": {"_count": 1}, "gleaned": {"_count": 1}, "hardly": {"_count": 1}, "ought": {"_count": 1}, "attempted": {"_count": 1}, "thought": {"_count": 1}, "say": {"_count": 1}, "really": {"_count": 1}, "understood": {"_count": 1}, "continued": {"_count": 1}, "mightve": {"_count": 1}, "would": {"_count": 1}}, "was": {"_count": 3, "staring": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 1}}, "have": {"_count": 1, "they": {"_count": 1}}, "someone": {"_count": 14, "was": {"_count": 2}, "had": {"_count": 11}, "invisible": {"_count": 1}}, "an": {"_count": 15, "iron": {"_count": 1}, "invisible": {"_count": 10}, "ice": {"_count": 1}, "immense": {"_count": 1}, "electric": {"_count": 1}, "extra": {"_count": 1}}, "different": {"_count": 1, "at": {"_count": 1}}, "ice": {"_count": 1, "was": {"_count": 1}}, "Quirrell": {"_count": 1, "wasnt": {"_count": 1}}, "pinning": {"_count": 1, "Harry": {"_count": 1}}, "life": {"_count": 1, "would": {"_count": 1}}, "perhaps": {"_count": 2, "not": {"_count": 1}, "this": {"_count": 1}}, "Ron": {"_count": 11, "had": {"_count": 4}, "said": {"_count": 3}, "was": {"_count": 1}, "and": {"_count": 1}, "advised": {"_count": 1}, "": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 3}}, "waiting": {"_count": 3, "for": {"_count": 3}}, "cold": {"_count": 2, "hands": {"_count": 1}, "water": {"_count": 1}}, "Christmas": {"_count": 2, "had": {"_count": 2}}, "transfixed": {"_count": 1, "": {"_count": 1}}, "struck": {"_count": 1, "by": {"_count": 1}}, "of": {"_count": 9, "distant": {"_count": 1}, "water": {"_count": 1}, "angry": {"_count": 1}, "course": {"_count": 5}, "surprise": {"_count": 1}}, "not": {"_count": 11, "nearly": {"_count": 3}, "as": {"_count": 2}, "loudly": {"_count": 1}, "unexpected": {"_count": 1}, "remotely": {"_count": 1}, "now": {"_count": 1}, "a": {"_count": 1}, "before": {"_count": 1}}, "continuing": {"_count": 1, "a": {"_count": 1}}, "we": {"_count": 5, "were": {"_count": 1}, "havent": {"_count": 1}, "belong": {"_count": 1}, "dont": {"_count": 1}, "didnt": {"_count": 1}}, "determined": {"_count": 5, "to": {"_count": 5}}, "to": {"_count": 19, "show": {"_count": 1}, "grip": {"_count": 1}, "sweep": {"_count": 2}, "dart": {"_count": 1}, "do": {"_count": 1}, "the": {"_count": 1}, "scare": {"_count": 1}, "Harrys": {"_count": 1}, "see": {"_count": 1}, "catch": {"_count": 1}, "complete": {"_count": 1}, "make": {"_count": 1}, "underline": {"_count": 1}, "stride": {"_count": 1}, "say": {"_count": 1}, "embrace": {"_count": 1}, "take": {"_count": 1}, "undo": {"_count": 1}}, "from": {"_count": 5, "a": {"_count": 3}, "far": {"_count": 1}, "very": {"_count": 1}}, "dead": {"_count": 1, "in": {"_count": 1}}, "scared": {"_count": 2, "they": {"_count": 1}, "of": {"_count": 1}}, "how": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "Riddle": {"_count": 1, "was": {"_count": 1}}, "caught": {"_count": 1, "in": {"_count": 1}}, "carved": {"_count": 2, "out": {"_count": 1}, "from": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "resigned": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 10, "chair": {"_count": 1}, "eyes": {"_count": 1}, "dark": {"_count": 1}, "face": {"_count": 2}, "voice": {"_count": 1}, "cheeks": {"_count": 1}, "smile": {"_count": 1}, "hair": {"_count": 1}, "first": {"_count": 1}}, "somebody": {"_count": 13, "had": {"_count": 9}, "was": {"_count": 3}, "near": {"_count": 1}}, "Hagrid": {"_count": 2, "had": {"_count": 1}, "mopping": {"_count": 1}}, "ten": {"_count": 1, "Riddles": {"_count": 1}}, "wont": {"_count": 1, "they": {"_count": 1}}, "frightened": {"_count": 6, "it": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}, "of": {"_count": 2}}, "still": {"_count": 5, "rather": {"_count": 1}, "not": {"_count": 1}, "surveying": {"_count": 1}, "smoking": {"_count": 1}, "quite": {"_count": 1}}, "daring": {"_count": 3, "him": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 1}}, "words": {"_count": 1, "had": {"_count": 1}}, "everyone": {"_count": 1, "hed": {"_count": 1}}, "very": {"_count": 2, "old": {"_count": 1}, "inexpertly": {"_count": 1}}, "did": {"_count": 3, "you": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "enjoying": {"_count": 1, "it": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "begging": {"_count": 1, "someone": {"_count": 1}}, "doing": {"_count": 2, "his": {"_count": 1}, "an": {"_count": 1}}, "trying": {"_count": 8, "to": {"_count": 8}}, "night": {"_count": 1, "had": {"_count": 1}}, "as": {"_count": 9, "strong": {"_count": 1}, "Ron": {"_count": 2}, "Harry": {"_count": 3}, "Lockhart": {"_count": 1}, "obnoxious": {"_count": 1}, "I": {"_count": 1}}, "freezing": {"_count": 1, "water": {"_count": 1}}, "Harrys": {"_count": 3, "memory": {"_count": 1}, "legs": {"_count": 1}, "nod": {"_count": 1}}, "or": {"_count": 1, "he": {"_count": 1}}, "following": {"_count": 2, "orders": {"_count": 1}, "a": {"_count": 1}}, "having": {"_count": 1, "no": {"_count": 1}}, "expecting": {"_count": 9, "him": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 6}, "strange": {"_count": 1}}, "far": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 3, "wheels": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Dumbledore": {"_count": 1}, "Marchbanks": {"_count": 1}}, "for": {"_count": 1, "how": {"_count": 1}}, "narrowly": {"_count": 1, "": {"_count": 1}}, "nervous": {"_count": 1, "was": {"_count": 1}}, "Malfoy": {"_count": 4, "had": {"_count": 2}, "would": {"_count": 1}, "was": {"_count": 1}}, "there": {"_count": 25, "had": {"_count": 4}, "always": {"_count": 1}, "was": {"_count": 13}, "were": {"_count": 6}, "did": {"_count": 1}}, "each": {"_count": 4, "was": {"_count": 1}, "were": {"_count": 1}, "member": {"_count": 1}, "wished": {"_count": 1}}, "theyve": {"_count": 1, "already": {"_count": 1}}, "looking": {"_count": 5, "for": {"_count": 3}, "very": {"_count": 1}, "dispirited": {"_count": 1}}, "desperate": {"_count": 1, "to": {"_count": 1}}, "Black": {"_count": 2, "had": {"_count": 2}}, "rather": {"_count": 2, "pale": {"_count": 1}, "bored": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "is": {"_count": 4, "he": {"_count": 2}, "it": {"_count": 2}}, "rats": {"_count": 1, "frequently": {"_count": 1}}, "hypnotized": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "praying": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "invisible": {"_count": 2, "strings": {"_count": 1}, "torturers": {"_count": 1}}, "worried": {"_count": 3, "about": {"_count": 2}, "he": {"_count": 1}}, "itching": {"_count": 1, "to": {"_count": 1}}, "nothing": {"_count": 7, "with": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 4}}, "nobody": {"_count": 4, "was": {"_count": 1}, "in": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}}, "if": {"_count": 4, "truth": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "any": {"_count": 1}}, "only": {"_count": 2, "Professor": {"_count": 1}, "because": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "biting": {"_count": 1, "back": {"_count": 1}}, "dont": {"_count": 1, "worry": {"_count": 1}}, "afraid": {"_count": 1, "it": {"_count": 1}}, "Mr": {"_count": 4, "Weasley": {"_count": 4}}, "without": {"_count": 2, "the": {"_count": 1}, "any": {"_count": 1}}, "sure": {"_count": 2, "this": {"_count": 1}, "he": {"_count": 1}}, "small": {"_count": 1, "oddly": {"_count": 1}}, "blinded": {"_count": 1, "by": {"_count": 1}}, "several": {"_count": 2, "ruined": {"_count": 1}, "new": {"_count": 1}}, "shaken": {"_count": 1, "": {"_count": 1}}, "buckets": {"_count": 1, "of": {"_count": 1}}, "lost": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 2, "that": {"_count": 1}, "he": {"_count": 1}}, "hes": {"_count": 2, "a": {"_count": 1}, "been": {"_count": 1}}, "fascinated": {"_count": 1, "by": {"_count": 1}}, "eh": {"_count": 3, "": {"_count": 3}}, "their": {"_count": 2, "table": {"_count": 1}, "rays": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "Moody": {"_count": 2, "assured": {"_count": 1}, "had": {"_count": 1}}, "tall": {"_count": 1, "himself": {"_count": 1}}, "unsure": {"_count": 2, "he": {"_count": 1}, "whether": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 1}, "been": {"_count": 1}}, "what": {"_count": 2, "Moody": {"_count": 1}, "she": {"_count": 1}}, "both": {"_count": 3, "answered": {"_count": 1}, "angry": {"_count": 1}, "hands": {"_count": 1}}, "Dobby": {"_count": 1, "had": {"_count": 1}}, "does": {"_count": 1, "she": {"_count": 1}}, "are": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "suddenly": {"_count": 1, "seeing": {"_count": 1}}, "keen": {"_count": 1, "not": {"_count": 1}}, "oddly": {"_count": 2, "formal": {"_count": 1}, "it": {"_count": 1}}, "privately": {"_count": 1, "thinking": {"_count": 1}}, "something": {"_count": 8, "on": {"_count": 1}, "poisonous": {"_count": 1}, "hot": {"_count": 1}, "was": {"_count": 2}, "large": {"_count": 1}, "extremely": {"_count": 1}, "inside": {"_count": 1}}, "angry": {"_count": 1, "with": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "hasnt": {"_count": 1, "he": {"_count": 1}}, "your": {"_count": 1, "social": {"_count": 1}}, "shutters": {"_count": 1, "had": {"_count": 1}}, "every": {"_count": 5, "nerve": {"_count": 1}, "word": {"_count": 2}, "now": {"_count": 1}, "breath": {"_count": 1}}, "and": {"_count": 2, "shed": {"_count": 1}, "no": {"_count": 1}}, "its": {"_count": 3, "occupants": {"_count": 1}, "invisible": {"_count": 1}, "current": {"_count": 1}}, "whispered": {"_count": 1, "Moody": {"_count": 1}}, "Dumbledore": {"_count": 9, "were": {"_count": 2}, "never": {"_count": 1}, "was": {"_count": 1}, "told": {"_count": 1}, "had": {"_count": 2}, "helpfully": {"_count": 1}, "of": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "speaking": {"_count": 2, "into": {"_count": 1}, "to": {"_count": 1}}, "Fleur": {"_count": 1, "was": {"_count": 1}}, "Wormtail": {"_count": 1, "had": {"_count": 1}}, "large": {"_count": 1, "beads": {"_count": 1}}, "recalling": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 3, "to": {"_count": 3}}, "seeing": {"_count": 1, "him": {"_count": 1}}, "no": {"_count": 2, "words": {"_count": 1}, "time": {"_count": 1}}, "by": {"_count": 4, "a": {"_count": 2}, "saying": {"_count": 1}, "listing": {"_count": 1}}, "Dumbledores": {"_count": 1, "speech": {"_count": 1}}, "those": {"_count": 1, "two": {"_count": 1}}, "some": {"_count": 4, "giant": {"_count": 1}, "of": {"_count": 3}}, "testing": {"_count": 1, "to": {"_count": 1}}, "stockier": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 4, "settled": {"_count": 1}, "was": {"_count": 1}, "moment": {"_count": 1}, "while": {"_count": 1}}, "youre": {"_count": 1, "this": {"_count": 1}}, "voting": {"_count": 1, "his": {"_count": 1}}, "muttered": {"_count": 1, "Mundungus": {"_count": 1}}, "readying": {"_count": 1, "himself": {"_count": 1}}, "you": {"_count": 13, "think": {"_count": 1}, "were": {"_count": 2}, "should": {"_count": 1}, "would": {"_count": 1}, "wasted": {"_count": 1}, "may": {"_count": 1}, "are": {"_count": 3}, "will": {"_count": 1}, "did": {"_count": 1}, "understand": {"_count": 1}}, "swarming": {"_count": 1, "with": {"_count": 1}}, "doxies": {"_count": 1, "had": {"_count": 1}}, "today": {"_count": 1, "he": {"_count": 1}}, "inviting": {"_count": 1, "them": {"_count": 1}}, "making": {"_count": 1, "sure": {"_count": 1}}, "considering": {"_count": 1, "they": {"_count": 1}}, "checking": {"_count": 2, "for": {"_count": 1}, "that": {"_count": 1}}, "asking": {"_count": 2, "mutely": {"_count": 1}, "for": {"_count": 1}}, "scalded": {"_count": 1, "and": {"_count": 1}}, "Stinksaps": {"_count": 1, "not": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "detention": {"_count": 1, "would": {"_count": 1}}, "hit": {"_count": 3, "over": {"_count": 1}, "by": {"_count": 1}, "in": {"_count": 1}}, "fearful": {"_count": 1, "for": {"_count": 1}}, "hadnt": {"_count": 1, "I": {"_count": 1}}, "traced": {"_count": 1, "there": {"_count": 1}}, "exhausted": {"_count": 1, "go": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "unable": {"_count": 2, "to": {"_count": 2}}, "eyes": {"_count": 1, "continued": {"_count": 1}}, "boiling": {"_count": 1, "water": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "none": {"_count": 3, "was": {"_count": 1}, "of": {"_count": 2}}, "seriously": {"_count": 1, "considering": {"_count": 1}}, "Montagues": {"_count": 1, "replaced": {"_count": 1}}, "horrified": {"_count": 1, "at": {"_count": 1}}, "snoring": {"_count": 1, "and": {"_count": 1}}, "counting": {"_count": 1, "them": {"_count": 1}}, "dancing": {"_count": 1, "on": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 1}, "similar": {"_count": 1}, "cobwebs": {"_count": 1}, "less": {"_count": 1}}, "poison": {"_count": 1, "were": {"_count": 1}}, "youve": {"_count": 2, "been": {"_count": 1}, "had": {"_count": 1}}, "once": {"_count": 1, "or": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "poised": {"_count": 1, "for": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "reading": {"_count": 1, "Harrys": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "anything": {"_count": 2, "odd": {"_count": 1}, "unusual": {"_count": 1}}, "keeping": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "bound": {"_count": 1, "by": {"_count": 1}}, "when": {"_count": 2, "Hermione": {"_count": 1}, "asked": {"_count": 1}}, "anxious": {"_count": 1, "not": {"_count": 1}}, "freshly": {"_count": 1, "painted": {"_count": 1}}, "will": {"_count": 1, "it": {"_count": 1}}, "hopeful": {"_count": 1, "he": {"_count": 1}}, "Rons": {"_count": 1, "suggestion": {"_count": 1}}, "Hogwarts": {"_count": 1, "will": {"_count": 1}}, "panic": {"_count": 1, "was": {"_count": 1}}, "shielded": {"_count": 1, "by": {"_count": 1}}, "brandishing": {"_count": 1, "a": {"_count": 1}}, "isnt": {"_count": 3, "he": {"_count": 3}}, "since": {"_count": 1, "she": {"_count": 1}}, "less": {"_count": 1, "effective": {"_count": 1}}, "Unhappy": {"_count": 1, "as": {"_count": 1}}, "Ill": {"_count": 1, "never": {"_count": 1}}, "terrified": {"_count": 1, "somebody": {"_count": 1}}, "anyone": {"_count": 2, "needed": {"_count": 1}, "would": {"_count": 1}}, "burned": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "rumors": {"_count": 1, "of": {"_count": 1}}, "black": {"_count": 1, "and": {"_count": 1}}, "Kreacher": {"_count": 2, "was": {"_count": 1}, "would": {"_count": 1}}, "related": {"_count": 1, "subject": {"_count": 1}}, "beating": {"_count": 1, "off": {"_count": 1}}, "innit": {"_count": 1, "": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "highly": {"_count": 1, "instructive": {"_count": 1}}, "theyre": {"_count": 2, "doing": {"_count": 1}, "making": {"_count": 1}}, "quite": {"_count": 1, "keen": {"_count": 1}}, "deciding": {"_count": 1, "whether": {"_count": 1}}, "twothirds": {"_count": 1, "of": {"_count": 1}}, "glued": {"_count": 1, "together": {"_count": 1}}, "admittedly": {"_count": 3, "carrying": {"_count": 1}, "he": {"_count": 1}, "not": {"_count": 1}}, "Gryffindor": {"_count": 1, "could": {"_count": 1}}, "Gryffindors": {"_count": 1, "below": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "appraising": {"_count": 1, "his": {"_count": 1}}, "ruining": {"_count": 1, "the": {"_count": 1}}, "separately": {"_count": 1, "for": {"_count": 1}}, "toasting": {"_count": 1, "Voldemort": {"_count": 1}}, "explaining": {"_count": 1, "the": {"_count": 1}}, "winking": {"_count": 1, "at": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "just": {"_count": 1, "out": {"_count": 1}}, "Slughorn": {"_count": 1, "who": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "gashes": {"_count": 1, "appeared": {"_count": 1}}, "welcoming": {"_count": 1, "the": {"_count": 1}}, "coming": {"_count": 1, "out": {"_count": 1}}, "steeling": {"_count": 1, "herself": {"_count": 1}}, "thankfully": {"_count": 1, "with": {"_count": 1}}, "never": {"_count": 1, "quite": {"_count": 1}}, "many": {"_count": 1, "attempted": {"_count": 1}}, "so": {"_count": 2, "youll": {"_count": 1}, "in": {"_count": 1}}, "reproaching": {"_count": 1, "him": {"_count": 1}}, "inexplicable": {"_count": 1, "feeling": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "occasionally": {"_count": 1, "one": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "repetition": {"_count": 1, "would": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "entirely": {"_count": 1, "covered": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "hiding": {"_count": 1, "something": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "cant": {"_count": 1, "they": {"_count": 1}}, "bracing": {"_count": 1, "herself": {"_count": 1}}, "Death": {"_count": 1, "searched": {"_count": 1}}, "great": {"_count": 1, "new": {"_count": 1}}, "shes": {"_count": 1, "been": {"_count": 1}}, "Griphook": {"_count": 1, "had": {"_count": 1}}, "weightless": {"_count": 1, "landing": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "You": {"_count": 1, "havent": {"_count": 1}}, "Flitwick": {"_count": 1, "had": {"_count": 1}}, "clearly": {"_count": 1, "startled": {"_count": 1}}, "Petunia": {"_count": 1, "tried": {"_count": 1}}, "underage": {"_count": 1, "must": {"_count": 1}}, "love": {"_count": 1, "did": {"_count": 1}}, "wand": {"_count": 1, "and": {"_count": 1}}, "Rosie": {"_count": 1, "": {"_count": 1}}}, "down": {"_count": 2336, "in": {"_count": 97, "the": {"_count": 44}, "Kent": {"_count": 1}, "her": {"_count": 3}, "one": {"_count": 4}, "front": {"_count": 17}, "time": {"_count": 2}, "two": {"_count": 1}, "icy": {"_count": 1}, "rage": {"_count": 1}, "midair": {"_count": 3}, "his": {"_count": 4}, "a": {"_count": 4}, "an": {"_count": 1}, "these": {"_count": 1}, "any": {"_count": 1}, "Parvatis": {"_count": 1}, "old": {"_count": 1}, "eagerness": {"_count": 1}, "their": {"_count": 1}, "imitation": {"_count": 1}, "such": {"_count": 1}, "Elephant": {"_count": 1}, "Hokeys": {"_count": 1}, "fresh": {"_count": 1}}, "and": {"_count": 106, "stroked": {"_count": 1}, "slowly": {"_count": 1}, "finally": {"_count": 1}, "dropped": {"_count": 1}, "freed": {"_count": 1}, "pulled": {"_count": 2}, "visit": {"_count": 2}, "working": {"_count": 1}, "gathered": {"_count": 1}, "FLUMP": {"_count": 1}, "Ill": {"_count": 1}, "walked": {"_count": 1}, "everything": {"_count": 1}, "took": {"_count": 1}, "found": {"_count": 1}, "whispered": {"_count": 2}, "tried": {"_count": 1}, "let": {"_count": 1}, "wiping": {"_count": 2}, "twiddled": {"_count": 1}, "find": {"_count": 2}, "grabbed": {"_count": 1}, "looked": {"_count": 2}, "get": {"_count": 1}, "slid": {"_count": 1}, "drink": {"_count": 1}, "see": {"_count": 3}, "began": {"_count": 3}, "tipped": {"_count": 1}, "laying": {"_count": 1}, "picking": {"_count": 1}, "seized": {"_count": 1}, "scooped": {"_count": 1}, "they": {"_count": 3}, "help": {"_count": 2}, "entering": {"_count": 1}, "from": {"_count": 1}, "Harry": {"_count": 3}, "said": {"_count": 1}, "stretching": {"_count": 1}, "stared": {"_count": 1}, "opening": {"_count": 1}, "turned": {"_count": 1}, "started": {"_count": 1}, "look": {"_count": 1}, "lifted": {"_count": 1}, "Crouch": {"_count": 1}, "obstruct": {"_count": 1}, "kissed": {"_count": 1}, "saw": {"_count": 8}, "with": {"_count": 1}, "put": {"_count": 1}, "whoever": {"_count": 1}, "have": {"_count": 2}, "quivering": {"_count": 1}, "emptied": {"_count": 1}, "your": {"_count": 2}, "bent": {"_count": 1}, "hurried": {"_count": 1}, "taken": {"_count": 1}, "tugged": {"_count": 1}, "so": {"_count": 1}, "staring": {"_count": 1}, "apparently": {"_count": 1}, "placing": {"_count": 1}, "having": {"_count": 1}, "persuaded": {"_count": 1}, "picked": {"_count": 3}, "watching": {"_count": 1}, "sprinted": {"_count": 1}, "glaring": {"_count": 1}, "interrogate": {"_count": 1}, "peered": {"_count": 1}, "the": {"_count": 2}, "placed": {"_count": 1}, "returned": {"_count": 1}, "slept": {"_count": 1}, "there": {"_count": 1}, "felt": {"_count": 1}}, "into": {"_count": 52, "the": {"_count": 31}, "his": {"_count": 8}, "two": {"_count": 1}, "it": {"_count": 3}, "a": {"_count": 5}, "an": {"_count": 1}, "her": {"_count": 1}, "Riddles": {"_count": 1}, "Snapes": {"_count": 1}}, "Privet": {"_count": 3, "Drive": {"_count": 3}}, "on": {"_count": 110, "the": {"_count": 55}, "plastic": {"_count": 1}, "a": {"_count": 5}, "her": {"_count": 1}, "them": {"_count": 3}, "Harry": {"_count": 1}, "all": {"_count": 1}, "either": {"_count": 4}, "his": {"_count": 10}, "him": {"_count": 4}, "Georges": {"_count": 1}, "its": {"_count": 3}, "Lupins": {"_count": 1}, "their": {"_count": 2}, "an": {"_count": 1}, "it": {"_count": 3}, "top": {"_count": 1}, "one": {"_count": 2}, "Dumbledore": {"_count": 1}, "Snapes": {"_count": 1}, "Harrys": {"_count": 3}, "Crouch": {"_count": 1}, "us": {"_count": 1}, "substandard": {"_count": 1}, "Rons": {"_count": 1}, "that": {"_count": 1}, "me": {"_count": 1}}, "the": {"_count": 425, "street": {"_count": 11}, "hall": {"_count": 11}, "toilet": {"_count": 1}, "kitchen": {"_count": 2}, "country": {"_count": 3}, "road": {"_count": 1}, "platform": {"_count": 2}, "middle": {"_count": 3}, "train": {"_count": 3}, "corridors": {"_count": 7}, "garden": {"_count": 2}, "front": {"_count": 13}, "sloping": {"_count": 7}, "rows": {"_count": 3}, "spiral": {"_count": 18}, "gallery": {"_count": 1}, "corridor": {"_count": 29}, "field": {"_count": 1}, "stairs": {"_count": 33}, "path": {"_count": 4}, "walls": {"_count": 1}, "line": {"_count": 2}, "table": {"_count": 11}, "window": {"_count": 3}, "list": {"_count": 6}, "cold": {"_count": 1}, "teapot": {"_count": 1}, "dimly": {"_count": 1}, "passageway": {"_count": 2}, "passage": {"_count": 5}, "deserted": {"_count": 1}, "marble": {"_count": 12}, "stone": {"_count": 23}, "packed": {"_count": 1}, "steep": {"_count": 3}, "slope": {"_count": 1}, "Gryffindor": {"_count": 2}, "nearest": {"_count": 3}, "empty": {"_count": 3}, "wall": {"_count": 3}, "glossy": {"_count": 1}, "dark": {"_count": 7}, "page": {"_count": 1}, "days": {"_count": 2}, "steps": {"_count": 15}, "Leaky": {"_count": 1}, "crowded": {"_count": 1}, "flobberworms": {"_count": 1}, "smoking": {"_count": 1}, "lawns": {"_count": 2}, "familiar": {"_count": 1}, "thirdfloor": {"_count": 1}, "staircase": {"_count": 7}, "lawn": {"_count": 4}, "turkeys": {"_count": 1}, "crumbling": {"_count": 1}, "boys": {"_count": 1}, "neck": {"_count": 1}, "hill": {"_count": 3}, "cellar": {"_count": 2}, "ladder": {"_count": 6}, "time": {"_count": 1}, "silver": {"_count": 1}, "distant": {"_count": 1}, "tunnel": {"_count": 1}, "kettle": {"_count": 1}, "chart": {"_count": 1}, "twins": {"_count": 1}, "last": {"_count": 2}, "row": {"_count": 2}, "purplecarpeted": {"_count": 1}, "sides": {"_count": 1}, "staff": {"_count": 2}, "Monday": {"_count": 1}, "drive": {"_count": 3}, "golden": {"_count": 3}, "index": {"_count": 2}, "slushy": {"_count": 1}, "door": {"_count": 1}, "long": {"_count": 3}, "cave": {"_count": 1}, "mountainside": {"_count": 2}, "trunk": {"_count": 1}, "sleeve": {"_count": 1}, "thread": {"_count": 1}, "imposters": {"_count": 1}, "dormitory": {"_count": 1}, "drain": {"_count": 1}, "side": {"_count": 2}, "narrow": {"_count": 2}, "alleyway": {"_count": 3}, "chimney": {"_count": 1}, "eye": {"_count": 1}, "back": {"_count": 3}, "first": {"_count": 1}, "sign": {"_count": 1}, "following": {"_count": 1}, "banister": {"_count": 1}, "pitch": {"_count": 2}, "bit": {"_count": 1}, "parchment": {"_count": 1}, "wide": {"_count": 1}, "main": {"_count": 1}, "Gobstones": {"_count": 1}, "newly": {"_count": 1}, "notice": {"_count": 1}, "bottle": {"_count": 1}, "purple": {"_count": 1}, "rest": {"_count": 2}, "many": {"_count": 1}, "room": {"_count": 1}, "aisle": {"_count": 3}, "end": {"_count": 1}, "ward": {"_count": 3}, "necks": {"_count": 1}, "High": {"_count": 1}, "rainwashed": {"_count": 1}, "righthand": {"_count": 1}, "dates": {"_count": 1}, "benches": {"_count": 1}, "alley": {"_count": 2}, "one": {"_count": 1}, "article": {"_count": 1}, "portrait": {"_count": 1}, "bank": {"_count": 1}, "wand": {"_count": 1}, "direct": {"_count": 1}, "grades": {"_count": 1}, "blinds": {"_count": 1}, "lane": {"_count": 1}, "newspaper": {"_count": 2}, "quaking": {"_count": 1}, "Ministry": {"_count": 1}, "carrots": {"_count": 1}, "shortcut": {"_count": 1}, "corner": {"_count": 1}, "copy": {"_count": 1}, "study": {"_count": 1}, "urge": {"_count": 1}, "ramparts": {"_count": 1}, "rampart": {"_count": 1}, "darkened": {"_count": 1}, "concealed": {"_count": 1}, "remainder": {"_count": 1}, "center": {"_count": 2}, "Horcruxes": {"_count": 1}, "living": {"_count": 1}, "flight": {"_count": 1}, "wizard": {"_count": 1}, "canvas": {"_count": 1}, "impulse": {"_count": 1}, "tent": {"_count": 2}, "visions": {"_count": 1}, "sinews": {"_count": 1}, "juice": {"_count": 1}, "new": {"_count": 1}, "building": {"_count": 1}, "next": {"_count": 1}, "vertical": {"_count": 1}}, "his": {"_count": 81, "bacon": {"_count": 1}, "quill": {"_count": 6}, "fat": {"_count": 2}, "face": {"_count": 6}, "pitiful": {"_count": 1}, "knife": {"_count": 4}, "very": {"_count": 2}, "front": {"_count": 7}, "long": {"_count": 3}, "booklist": {"_count": 1}, "paper": {"_count": 1}, "hooked": {"_count": 4}, "empty": {"_count": 2}, "goblet": {"_count": 1}, "cheeks": {"_count": 2}, "throat": {"_count": 3}, "chin": {"_count": 4}, "bundle": {"_count": 1}, "body": {"_count": 3}, "back": {"_count": 1}, "spoon": {"_count": 2}, "Daily": {"_count": 1}, "plate": {"_count": 1}, "wrist": {"_count": 1}, "bag": {"_count": 1}, "rag": {"_count": 1}, "signature": {"_count": 1}, "letter": {"_count": 1}, "crooked": {"_count": 2}, "nose": {"_count": 1}, "study": {"_count": 1}, "bruised": {"_count": 1}, "expression": {"_count": 1}, "horses": {"_count": 1}, "mouth": {"_count": 1}, "application": {"_count": 1}, "rock": {"_count": 1}, "hand": {"_count": 1}, "robes": {"_count": 1}, "shriveled": {"_count": 1}, "pale": {"_count": 1}, "glass": {"_count": 2}, "Wellingtoned": {"_count": 1}}, "heavily": {"_count": 1, "and": {"_count": 1}}, "enough": {"_count": 2, "to": {"_count": 2}}, "old": {"_count": 1, "Mrs": {"_count": 1}}, "it": {"_count": 14, "it": {"_count": 1}, "to": {"_count": 2}, "greeting": {"_count": 1}, "had": {"_count": 1}, "as": {"_count": 1}, "looked": {"_count": 1}, "gloomily": {"_count": 1}, "her": {"_count": 1}, "hit": {"_count": 1}, "and": {"_count": 1}, "collapsed": {"_count": 1}, "charged": {"_count": 1}, "unable": {"_count": 1}}, "at": {"_count": 244, "the": {"_count": 75}, "his": {"_count": 51}, "Hagrids": {"_count": 1}, "once": {"_count": 2}, "Ron": {"_count": 4}, "them": {"_count": 8}, "him": {"_count": 22}, "Colin": {"_count": 1}, "her": {"_count": 8}, "Mr": {"_count": 1}, "our": {"_count": 1}, "Harry": {"_count": 17}, "Black": {"_count": 1}, "Snapes": {"_count": 1}, "your": {"_count": 1}, "Mrs": {"_count": 2}, "Winky": {"_count": 2}, "Winkys": {"_count": 1}, "last": {"_count": 1}, "a": {"_count": 3}, "it": {"_count": 8}, "their": {"_count": 1}, "words": {"_count": 1}, "both": {"_count": 1}, "those": {"_count": 1}, "Moody": {"_count": 2}, "Crouch": {"_count": 2}, "Ludo": {"_count": 1}, "Krum": {"_count": 1}, "Wormtail": {"_count": 1}, "Barty": {"_count": 1}, "Crabbe": {"_count": 1}, "Dumbledore": {"_count": 1}, "Umbridges": {"_count": 1}, "dinner": {"_count": 2}, "Professor": {"_count": 1}, "Fred": {"_count": 1}, "Bellatrix": {"_count": 1}, "Voldemorts": {"_count": 1}, "Malfoy": {"_count": 1}, "Ogden": {"_count": 1}, "all": {"_count": 1}, "Ginny": {"_count": 1}, "Bill": {"_count": 1}, "Spellmans": {"_count": 1}, "Bottom": {"_count": 1}, "Griphook": {"_count": 1}, "Dobby": {"_count": 1}, "Bellatrixs": {"_count": 1}, "Snape": {"_count": 1}, "Neville": {"_count": 1}}, "their": {"_count": 13, "necks": {"_count": 3}, "quills": {"_count": 1}, "glass": {"_count": 1}, "staircase": {"_count": 1}, "homework": {"_count": 1}, "noses": {"_count": 1}, "tables": {"_count": 1}, "names": {"_count": 1}, "throats": {"_count": 1}, "breakfast": {"_count": 1}, "arms": {"_count": 1}}, "picked": {"_count": 4, "up": {"_count": 4}}, "over": {"_count": 9, "the": {"_count": 3}, "her": {"_count": 2}, "his": {"_count": 2}, "Harry": {"_count": 1}, "Moodys": {"_count": 1}}, "Dear": {"_count": 1, "Professor": {"_count": 1}}, "as": {"_count": 13, "though": {"_count": 2}, "his": {"_count": 1}, "he": {"_count": 3}, "Bagman": {"_count": 1}, "they": {"_count": 1}, "a": {"_count": 1}, "she": {"_count": 1}, "Snape": {"_count": 1}, "far": {"_count": 1}, "head": {"_count": 1}}, "stared": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 160, "?": {"_count": 12}, ".": {"_count": 125}, "!": {"_count": 23}}, "to": {"_count": 183, "the": {"_count": 70}, "both": {"_count": 1}, "September": {"_count": 1}, "sit": {"_count": 1}, "Hagrids": {"_count": 7}, "Professor": {"_count": 2}, "breakfast": {"_count": 15}, "examine": {"_count": 2}, "meet": {"_count": 3}, "pick": {"_count": 1}, "lunch": {"_count": 1}, "54": {"_count": 1}, "listen": {"_count": 2}, "you": {"_count": 2}, "his": {"_count": 7}, "hibernate": {"_count": 1}, "Lockharts": {"_count": 1}, "blood": {"_count": 1}, "stare": {"_count": 1}, "me": {"_count": 1}, "Hogsmeade": {"_count": 1}, "tiny": {"_count": 1}, "dinner": {"_count": 5}, "plan": {"_count": 1}, "close": {"_count": 1}, "eat": {"_count": 1}, "Transylvania": {"_count": 1}, "sleep": {"_count": 1}, "reveal": {"_count": 1}, "Neville": {"_count": 2}, "check": {"_count": 3}, "read": {"_count": 3}, "visit": {"_count": 2}, "Hagrid": {"_count": 2}, "help": {"_count": 1}, "her": {"_count": 3}, "stay": {"_count": 1}, "watch": {"_count": 3}, "some": {"_count": 1}, "this": {"_count": 2}, "it": {"_count": 2}, "see": {"_count": 4}, "their": {"_count": 2}, "three": {"_count": 1}, "retrieve": {"_count": 1}, "Snapes": {"_count": 1}, "open": {"_count": 1}, "bone": {"_count": 1}, "kiss": {"_count": 1}, "business": {"_count": 1}, "peer": {"_count": 1}, "him": {"_count": 2}, "being": {"_count": 1}, "Filch": {"_count": 1}, "whether": {"_count": 1}, "boulders": {"_count": 1}, "London": {"_count": 1}, "a": {"_count": 1}, "tug": {"_count": 1}, "Ignotuss": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "through": {"_count": 16, "the": {"_count": 13}, "six": {"_count": 1}, "rain": {"_count": 1}, "his": {"_count": 1}}, "from": {"_count": 23, "the": {"_count": 8}, "his": {"_count": 3}, "Harry": {"_count": 1}, "their": {"_count": 2}, "them": {"_count": 1}, "Rons": {"_count": 1}, "a": {"_count": 2}, "Umbridges": {"_count": 1}, "its": {"_count": 1}, "her": {"_count": 1}, "Dumbledore": {"_count": 1}, "behind": {"_count": 1}}, "boxes": {"_count": 1, "": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "next": {"_count": 19, "to": {"_count": 18}, "second": {"_count": 1}}, "there": {"_count": 25, "": {"_count": 7}, "I": {"_count": 2}, "anyway": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}, "pick": {"_count": 1}, "acting": {"_count": 1}, "unless": {"_count": 1}, "Id": {"_count": 1}, "to": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}, "holding": {"_count": 1}, "down": {"_count": 1}, "Snapes": {"_count": 1}}, "what": {"_count": 3, "seemed": {"_count": 1}, "felt": {"_count": 1}, "appeared": {"_count": 1}}, "again": {"_count": 22, "as": {"_count": 2}, "quickly": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 8}, "Ron": {"_count": 1}, "it": {"_count": 1}, "thanked": {"_count": 1}, "and": {"_count": 3}, "shall": {"_count": 1}, "to": {"_count": 1}, "looking": {"_count": 1}}, "opposite": {"_count": 11, "the": {"_count": 1}, "Harry": {"_count": 2}, "Fred": {"_count": 1}, "him": {"_count": 3}, "them": {"_count": 1}, "Ron": {"_count": 1}, "each": {"_count": 1}, "Lily": {"_count": 1}}, "names": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 4, "the": {"_count": 2}, "Dudley": {"_count": 1}, "them": {"_count": 1}}, "he": {"_count": 13, "snapped": {"_count": 1}, "spotted": {"_count": 1}, "said": {"_count": 2}, "threw": {"_count": 1}, "paced": {"_count": 2}, "was": {"_count": 1}, "saw": {"_count": 3}, "did": {"_count": 1}, "found": {"_count": 1}}, "with": {"_count": 18, "rock": {"_count": 1}, "a": {"_count": 2}, "my": {"_count": 1}, "arms": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 3}, "Dean": {"_count": 1}, "Ron": {"_count": 1}, "books": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "Lavender": {"_count": 1}, "you": {"_count": 1}, "age": {"_count": 1}}, "by": {"_count": 14, "leaning": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 7}, "girls": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 2}, "ouseelves": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 54, "long": {"_count": 4}, "deserted": {"_count": 2}, "row": {"_count": 1}, "narrow": {"_count": 4}, "stone": {"_count": 1}, "giant": {"_count": 1}, "large": {"_count": 2}, "corridor": {"_count": 4}, "couple": {"_count": 2}, "name": {"_count": 1}, "toilet": {"_count": 2}, "side": {"_count": 3}, "thick": {"_count": 1}, "drawling": {"_count": 1}, "second": {"_count": 2}, "hippogriff": {"_count": 1}, "hand": {"_count": 1}, "tightly": {"_count": 1}, "laugh": {"_count": 1}, "flight": {"_count": 5}, "pipe": {"_count": 1}, "narrower": {"_count": 1}, "little": {"_count": 2}, "finger": {"_count": 1}, "storm": {"_count": 1}, "furry": {"_count": 1}, "hillside": {"_count": 1}, "dark": {"_count": 1}, "wooden": {"_count": 1}, "short": {"_count": 1}, "bit": {"_count": 1}, "steep": {"_count": 1}, "few": {"_count": 1}}, "one": {"_count": 3, "corridor": {"_count": 1}, "of": {"_count": 2}}, "safely": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "joined": {"_count": 1}}, "pulled": {"_count": 2, "out": {"_count": 1}, "it": {"_count": 1}}, "carefully": {"_count": 2, "on": {"_count": 1}, "upon": {"_count": 1}}, "different": {"_count": 1, "ways": {"_count": 1}}, "Ron": {"_count": 4, "cheering": {"_count": 1}, "or": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "its": {"_count": 4, "front": {"_count": 1}, "spine": {"_count": 1}, "visor": {"_count": 1}, "side": {"_count": 1}}, "jus": {"_count": 1, "play": {"_count": 1}}, "well": {"_count": 2, "just": {"_count": 1}, "": {"_count": 1}}, "down": {"_count": 2, "down": {"_count": 1}, "and": {"_count": 1}}, "many": {"_count": 1, "times": {"_count": 1}}, "breathing": {"_count": 1, "like": {"_count": 1}}, "said": {"_count": 15, "Harry": {"_count": 3}, "Dippet": {"_count": 1}, "Fudge": {"_count": 1}, "Professor": {"_count": 1}, "Lupin": {"_count": 1}, "Moody": {"_count": 1}, "Snape": {"_count": 1}, "George": {"_count": 1}, "Dumbledore": {"_count": 3}, "Umbridge": {"_count": 1}, "Ron": {"_count": 1}}, "Fred": {"_count": 2, "": {"_count": 1}, "told": {"_count": 1}}, "around": {"_count": 4, "him": {"_count": 3}, "his": {"_count": 1}}, "Knockturn": {"_count": 2, "Alley": {"_count": 2}}, "all": {"_count": 2, "right": {"_count": 1}, "three": {"_count": 1}}, "for": {"_count": 16, "Eton": {"_count": 2}, "about": {"_count": 1}, "a": {"_count": 3}, "my": {"_count": 1}, "Hermione": {"_count": 1}, "breakfast": {"_count": 2}, "the": {"_count": 3}, "you": {"_count": 1}, "our": {"_count": 1}, "Christmas": {"_count": 1}}, "behind": {"_count": 11, "his": {"_count": 7}, "her": {"_count": 2}, "another": {"_count": 1}, "it": {"_count": 1}}, "her": {"_count": 40, "face": {"_count": 8}, "usual": {"_count": 1}, "cheeks": {"_count": 1}, "hand": {"_count": 1}, "enormous": {"_count": 1}, "books": {"_count": 1}, "wand": {"_count": 1}, "food": {"_count": 2}, "front": {"_count": 3}, "blouse": {"_count": 1}, "already": {"_count": 1}, "list": {"_count": 1}, "legs": {"_count": 1}, "own": {"_count": 1}, "half": {"_count": 1}, "back": {"_count": 5}, "neck": {"_count": 1}, "quill": {"_count": 3}, "rather": {"_count": 1}, "book": {"_count": 1}, "knife": {"_count": 1}, "pale": {"_count": 1}, "chin": {"_count": 1}, "sock": {"_count": 1}}, "lifted": {"_count": 1, "his": {"_count": 1}}, "father": {"_count": 1, "to": {"_count": 1}}, "avoiding": {"_count": 1, "another": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}, "some": {"_count": 3, "water": {"_count": 1}, "dark": {"_count": 1}, "dinner": {"_count": 1}}, "fourth": {"_count": 1, "helpings": {"_count": 1}}, "toward": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}}, "here": {"_count": 27, "": {"_count": 7}, "Weasley": {"_count": 1}, "Tom": {"_count": 1}, "to": {"_count": 1}, "anyway": {"_count": 1}, "at": {"_count": 2}, "NOW": {"_count": 1}, "later": {"_count": 1}, "just": {"_count": 1}, "for": {"_count": 1}, "we": {"_count": 2}, "panted": {"_count": 1}, "Ive": {"_count": 1}, "Potter": {"_count": 1}, "in": {"_count": 3}, "Hagrid": {"_count": 1}, "I": {"_count": 1}}, "doing": {"_count": 1, "their": {"_count": 1}}, "hard": {"_count": 2, "on": {"_count": 2}}, "gripping": {"_count": 1, "his": {"_count": 1}}, "yelling": {"_count": 1, "NOOOOOOO": {"_count": 1}}, "not": {"_count": 2, "counting": {"_count": 1}, "upon": {"_count": 1}}, "Ill": {"_count": 3, "make": {"_count": 1}, "have": {"_count": 1}, "get": {"_count": 1}}, "still": {"_count": 1, "thinking": {"_count": 1}}, "onto": {"_count": 30, "the": {"_count": 16}, "his": {"_count": 8}, "Harrys": {"_count": 2}, "Hermione": {"_count": 1}, "a": {"_count": 2}, "her": {"_count": 1}}, "an": {"_count": 4, "endless": {"_count": 1}, "earthy": {"_count": 1}, "we": {"_count": 1}, "entire": {"_count": 1}}, "my": {"_count": 5, "front": {"_count": 1}, "door": {"_count": 1}, "mum": {"_count": 1}, "street": {"_count": 1}, "mother": {"_count": 1}}, "Ginnys": {"_count": 1, "face": {"_count": 1}}, "Harry": {"_count": 11, "he": {"_count": 1}, "said": {"_count": 3}, "saw": {"_count": 4}, "thought": {"_count": 1}, "muttered": {"_count": 1}, "Potter": {"_count": 1}}, "eyes": {"_count": 1, "open": {"_count": 1}}, "Magnolia": {"_count": 1, "Crescent": {"_count": 1}}, "dincha": {"_count": 1, "": {"_count": 1}}, "wasnt": {"_count": 1, "they": {"_count": 1}}, "feeling": {"_count": 2, "goose": {"_count": 1}, "as": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "Not": {"_count": 1, "here": {"_count": 1}}, "ter": {"_count": 7, "you": {"_count": 1}, "see": {"_count": 2}, "London": {"_count": 1}, "visit": {"_count": 1}, "mountaineerin": {"_count": 1}, "him": {"_count": 1}}, "settle": {"_count": 2, "down": {"_count": 2}}, "if": {"_count": 1, "theyd": {"_count": 1}}, "myself": {"_count": 2, "": {"_count": 2}}, "Trevors": {"_count": 1, "throat": {"_count": 1}}, "took": {"_count": 3, "out": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "Peeves": {"_count": 1, "s": {"_count": 1}}, "looking": {"_count": 5, "a": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}, "around": {"_count": 2}}, "upon": {"_count": 56, "him": {"_count": 8}, "some": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 15}, "Winky": {"_count": 1}, "it": {"_count": 3}, "his": {"_count": 1}, "Karkaroff": {"_count": 1}, "her": {"_count": 2}, "Cedric": {"_count": 1}, "Harry": {"_count": 3}, "them": {"_count": 11}, "Katie": {"_count": 1}, "one": {"_count": 1}, "Hermiones": {"_count": 1}, "Fred": {"_count": 1}, "what": {"_count": 1}, "Dumbledore": {"_count": 1}}, "you": {"_count": 4, "know": {"_count": 1}, "silly": {"_count": 1}, "dont": {"_count": 1}, "two": {"_count": 1}}, "just": {"_count": 2, "in": {"_count": 1}, "so": {"_count": 1}}, "before": {"_count": 5, "you": {"_count": 1}, "Harry": {"_count": 1}, "facing": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}}, "howling": {"_count": 1, "with": {"_count": 1}}, "sit": {"_count": 3, "down": {"_count": 3}}, "side": {"_count": 1, "by": {"_count": 1}}, "Strip": {"_count": 1, "it": {"_count": 1}}, "lowered": {"_count": 1, "his": {"_count": 1}}, "Wood": {"_count": 1, "went": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "then": {"_count": 3, "": {"_count": 1}, "Harry": {"_count": 1}, "withdrew": {"_count": 1}}, "Scabbers": {"_count": 1, "with": {"_count": 1}}, "this": {"_count": 2, "weeks": {"_count": 1}, "far": {"_count": 1}}, "until": {"_count": 2, "he": {"_count": 2}}, "completely": {"_count": 1, "": {"_count": 1}}, "together": {"_count": 2, "at": {"_count": 2}}, "Horrified": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 1}, "that": {"_count": 1}}, "these": {"_count": 1, "times": {"_count": 1}}, "while": {"_count": 2, "it": {"_count": 1}, "Ron": {"_count": 1}}, "Hermione": {"_count": 4, "s": {"_count": 1}, "theyre": {"_count": 1}, "said": {"_count": 1}, "begged": {"_count": 1}}, "beside": {"_count": 18, "him": {"_count": 5}, "Fred": {"_count": 1}, "Harry": {"_count": 3}, "them": {"_count": 1}, "Ron": {"_count": 2}, "the": {"_count": 3}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "Fleur": {"_count": 1}}, "I": {"_count": 1, "didnt": {"_count": 1}}, "quickly": {"_count": 5, "and": {"_count": 1}, "at": {"_count": 1}, "next": {"_count": 1}, "thrust": {"_count": 1}, "too": {"_count": 1}}, "but": {"_count": 5, "it": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}}, "THATS": {"_count": 1, "NOT": {"_count": 1}}, "tapped": {"_count": 1, "Rons": {"_count": 1}}, "now": {"_count": 3, "weve": {"_count": 1}, "": {"_count": 1}, "okay": {"_count": 1}}, "too": {"_count": 8, "": {"_count": 5}, "well": {"_count": 1}, "badly": {"_count": 1}, "looking": {"_count": 1}}, "several": {"_count": 1, "feet": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "recognized": {"_count": 1, "Rons": {"_count": 1}}, "ducked": {"_count": 1, "under": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "waving": {"_count": 1, "her": {"_count": 1}}, "applauding": {"_count": 1, "with": {"_count": 1}}, "Granger": {"_count": 1, "sneered": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "so": {"_count": 4, "thick": {"_count": 1}, "hard": {"_count": 1}, "Hermione": {"_count": 1}, "that": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "those": {"_count": 2, "books": {"_count": 1}, "feelings": {"_count": 1}}, "because": {"_count": 1, "": {"_count": 1}}, "laid": {"_count": 1, "the": {"_count": 1}}, "everything": {"_count": 3, "Im": {"_count": 1}, "hes": {"_count": 1}, "he": {"_count": 1}}, "Malfoy": {"_count": 1, "was": {"_count": 1}}, "against": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "past": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "time": {"_count": 1, "it": {"_count": 1}}, "off": {"_count": 2, "his": {"_count": 2}}, "every": {"_count": 1, "book": {"_count": 1}}, "three": {"_count": 2, "to": {"_count": 1}, "bucketsized": {"_count": 1}}, "miss": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "shall": {"_count": 1, "we": {"_count": 1}}, "corridors": {"_count": 2, "hand": {"_count": 1}, "and": {"_count": 1}}, "badly": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 3, "floors": {"_count": 2}, "flights": {"_count": 1}}, "six": {"_count": 1, "stairs": {"_count": 1}}, "more": {"_count": 1, "books": {"_count": 1}}, "kissed": {"_count": 1, "Harry": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "large": {"_count": 2, "pieces": {"_count": 1}, "amounts": {"_count": 1}}, "bread": {"_count": 1, "": {"_count": 1}}, "herself": {"_count": 4, "": {"_count": 2}, "Terry": {"_count": 1}, "she": {"_count": 1}}, "mines": {"_count": 1, "mostly": {"_count": 1}}, "though": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "stretched": {"_count": 1, "out": {"_count": 1}}, "anything": {"_count": 1, "thats": {"_count": 1}}, "struggling": {"_count": 1, "hopelessly": {"_count": 1}}, "Harrys": {"_count": 4, "throat": {"_count": 1}, "front": {"_count": 1}, "arm": {"_count": 1}, "face": {"_count": 1}}, "when": {"_count": 4, "something": {"_count": 1}, "Angelina": {"_count": 1}, "hes": {"_count": 1}, "she": {"_count": 1}}, "seized": {"_count": 1, "one": {"_count": 1}}, "that": {"_count": 5, "alleyway": {"_count": 2}, "corridor": {"_count": 2}, "tunnel": {"_count": 1}}, "The": {"_count": 1, "Dursleys": {"_count": 1}}, "IVe": {"_count": 1, "got": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "Fudge": {"_count": 1, "knows": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "near": {"_count": 1, "his": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "below": {"_count": 6, "": {"_count": 2}, "the": {"_count": 2}, "rebolting": {"_count": 1}, "his": {"_count": 1}}, "button": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "put": {"_count": 1, "the": {"_count": 1}}, "have": {"_count": 1, "some": {"_count": 1}}, "inside": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "neatly": {"_count": 1, "and": {"_count": 1}}, "smartly": {"_count": 1, "and": {"_count": 1}}, "Rons": {"_count": 3, "and": {"_count": 1}, "grades": {"_count": 1}, "booklist": {"_count": 1}}, "Professor": {"_count": 2, "Umbridges": {"_count": 2}}, "girls": {"_count": 1, "": {"_count": 1}}, "comfortably": {"_count": 1, "and": {"_count": 1}}, "glumly": {"_count": 1, "at": {"_count": 1}}, "inter": {"_count": 1, "the": {"_count": 1}}, "mountains": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 1, "Dumbledore": {"_count": 1}}, "facing": {"_count": 1, "them": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "which": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "Umbridges": {"_count": 1, "homework": {"_count": 1}}, "peering": {"_count": 1, "into": {"_count": 1}}, "flies": {"_count": 1, "": {"_count": 1}}, "pandemonium": {"_count": 1, "reigned": {"_count": 1}}, "low": {"_count": 1, "ran": {"_count": 1}}, "please": {"_count": 2, "": {"_count": 2}}, "implored": {"_count": 1, "Lupin": {"_count": 1}}, "lately": {"_count": 1, "Ginny": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 2}}, "could": {"_count": 1, "you": {"_count": 1}}, "yeh": {"_count": 1, "big": {"_count": 1}}, "soon": {"_count": 1, "enough": {"_count": 1}}, "shaking": {"_count": 1, "but": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "He": {"_count": 1}}, "row": {"_count": 1, "ninetyseven": {"_count": 1}}, "But": {"_count": 2, "Ron": {"_count": 1}, "at": {"_count": 1}}, "steep": {"_count": 1, "stone": {"_count": 1}}, "slid": {"_count": 1, "back": {"_count": 1}}, "Dumbledore": {"_count": 2, "s": {"_count": 2}}, "staircases": {"_count": 1, "and": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "Id": {"_count": 1, "better": {"_count": 1}}, "without": {"_count": 2, "invitation": {"_count": 1}, "another": {"_count": 1}}, "Slughorn": {"_count": 1, "if": {"_count": 1}}, "dear": {"_count": 1, "Ill": {"_count": 1}}, "across": {"_count": 1, "two": {"_count": 1}}, "Bob": {"_count": 1, "Ogdens": {"_count": 1}}, "after": {"_count": 1, "Quidditch": {"_count": 1}}, "He": {"_count": 1, "groped": {"_count": 1}}, "scooped": {"_count": 2, "her": {"_count": 1}, "up": {"_count": 1}}, "calmly": {"_count": 1, "I": {"_count": 1}}, "think": {"_count": 1, "better": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "finally": {"_count": 1, "stopping": {"_count": 1}}, "noisily": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "when": {"_count": 1}}, "objects": {"_count": 1, "owned": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "magic": {"_count": 1, "would": {"_count": 1}}, "wide": {"_count": 1, "eyed": {"_count": 1}}, "Hagrids": {"_count": 1, "cheek": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Slights": {"_count": 1, "on": {"_count": 1}}, "His": {"_count": 1, "scar": {"_count": 1}}, "Voldemort": {"_count": 1, "in": {"_count": 1}}, "Monsieur": {"_count": 1, "and": {"_count": 1}}, "Deluminators": {"_count": 1, "or": {"_count": 1}}, "somewhere": {"_count": 1, "Hermione": {"_count": 1}}, "thats": {"_count": 1, "why": {"_count": 1}}, "had": {"_count": 1, "he": {"_count": 1}}, "either": {"_count": 1, "side": {"_count": 1}}, "Hermiones": {"_count": 2, "cheeks": {"_count": 1}, "face": {"_count": 1}}, "Kreacher": {"_count": 1, "who": {"_count": 1}}, "Tottenham": {"_count": 1, "Court": {"_count": 1}}, "Dedalus": {"_count": 1, "Diggles": {"_count": 1}}, "opened": {"_count": 1, "the": {"_count": 1}}, "Mafalda": {"_count": 1, "youll": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "another": {"_count": 1, "floor": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "chains": {"_count": 1, "clinked": {"_count": 1}}, "wearing": {"_count": 1, "all": {"_count": 1}}, "Perhaps": {"_count": 1, "it": {"_count": 1}}, "mate": {"_count": 1, "": {"_count": 1}}, "beyond": {"_count": 1, "Bottom": {"_count": 1}}, "mind": {"_count": 1, "your": {"_count": 1}}, "forks": {"_count": 1, "as": {"_count": 1}}, "beams": {"_count": 1, "of": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "bestowed": {"_count": 1, "upon": {"_count": 1}}, "Fang": {"_count": 1, "": {"_count": 1}}, "aisles": {"_count": 1, "of": {"_count": 1}}, "skirting": {"_count": 1, "the": {"_count": 1}}, "Spinners": {"_count": 1, "End": {"_count": 1}}, "kill": {"_count": 1, "them": {"_count": 1}}, "your": {"_count": 1, "lives": {"_count": 1}}, "Hagrid": {"_count": 1, "at": {"_count": 1}}, "Fenrir": {"_count": 1, "Greyback": {"_count": 1}}}, "pointed": {"_count": 284, "and": {"_count": 3, "gazed": {"_count": 1}, "didnt": {"_count": 1}, "his": {"_count": 1}}, "hat": {"_count": 8, "black": {"_count": 1}, "": {"_count": 2}, "stretched": {"_count": 1}, "and": {"_count": 1}, "barely": {"_count": 1}, "decorated": {"_count": 2}}, "it": {"_count": 28, "out": {"_count": 1}, "at": {"_count": 22}, "furiously": {"_count": 1}, "in": {"_count": 1}, "directly": {"_count": 2}, "into": {"_count": 1}}, "beard": {"_count": 3, "and": {"_count": 1}, "who": {"_count": 1}, "that": {"_count": 1}}, "face": {"_count": 8, "was": {"_count": 2}, "and": {"_count": 3}, "": {"_count": 1}, "Draco": {"_count": 1}, "contorted": {"_count": 1}}, "at": {"_count": 47, "the": {"_count": 20}, "Harrys": {"_count": 1}, "himself": {"_count": 1}, "a": {"_count": 3}, "Malfoy": {"_count": 1}, "Harry": {"_count": 3}, "his": {"_count": 3}, "Neville": {"_count": 2}, "Alicia": {"_count": 1}, "Black": {"_count": 1}, "Blacks": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}, "Crabbe": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 2}, "ten": {"_count": 1}, "Ginny": {"_count": 1}, "when": {"_count": 1}, "an": {"_count": 1}}, "wizards": {"_count": 3, "hat": {"_count": 3}}, "as": {"_count": 1, "they": {"_count": 1}}, "his": {"_count": 39, "broom": {"_count": 1}, "wand": {"_count": 36}, "own": {"_count": 1}, "blackened": {"_count": 1}}, "them": {"_count": 4, "into": {"_count": 1}, "at": {"_count": 2}, "out": {"_count": 1}}, "fangs": {"_count": 3, "": {"_count": 2}, "bared": {"_count": 1}}, "nose": {"_count": 7, "": {"_count": 4}, "and": {"_count": 3}}, "down": {"_count": 2, "a": {"_count": 1}, "into": {"_count": 1}}, "excitedly": {"_count": 2, "at": {"_count": 1}, "over": {"_count": 1}}, "black": {"_count": 4, "Hogwarts": {"_count": 1}, "hats": {"_count": 1}, "quill": {"_count": 1}, "beard": {"_count": 1}}, "to": {"_count": 14, "a": {"_count": 2}, "the": {"_count": 10}, "another": {"_count": 1}, "an": {"_count": 1}}, "faces": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 17, "that": {"_count": 2}, "the": {"_count": 3}, "": {"_count": 4}, "Cedric": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}, "these": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 2}}, "purple": {"_count": 2, "crystal": {"_count": 1}, "boots": {"_count": 1}}, "ears": {"_count": 2, "poking": {"_count": 1}, "were": {"_count": 1}}, "this": {"_count": 3, "out": {"_count": 2}, "at": {"_count": 1}}, "their": {"_count": 2, "wands": {"_count": 2}}, "toward": {"_count": 7, "the": {"_count": 4}, "his": {"_count": 1}, "a": {"_count": 1}, "Mr": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "a": {"_count": 6, "fat": {"_count": 1}, "long": {"_count": 2}, "shaking": {"_count": 1}, "thick": {"_count": 1}, "finger": {"_count": 1}}, "sneering": {"_count": 1, "face": {"_count": 1}}, "witchs": {"_count": 1, "hat": {"_count": 1}}, "that": {"_count": 1, "way": {"_count": 1}}, "straight": {"_count": 1, "at": {"_count": 1}}, "sideways": {"_count": 1, "at": {"_count": 1}}, "her": {"_count": 13, "wand": {"_count": 13}}, "ahead": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "green": {"_count": 1, "hats": {"_count": 1}}, "one": {"_count": 1, "gnarled": {"_count": 1}}, "openly": {"_count": 1, "at": {"_count": 1}}, "horns": {"_count": 1, "snapping": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "him": {"_count": 2, "to": {"_count": 1}, "out": {"_count": 1}}, "pale": {"_count": 1, "face": {"_count": 1}}, "chin": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "teeth": {"_count": 5, "": {"_count": 4}, "cackled": {"_count": 1}}, "quills": {"_count": 1, "scratching": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "fashion": {"_count": 1, "with": {"_count": 1}}, "threateningly": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "toward": {"_count": 1}}, "archway": {"_count": 1, "looked": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 3, "wand": {"_count": 3}}, "with": {"_count": 3, "his": {"_count": 2}, "a": {"_count": 1}}, "we": {"_count": 1, "had": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "asides": {"_count": 1, "about": {"_count": 1}}, "white": {"_count": 1, "face": {"_count": 1}}, "Hermiones": {"_count": 1, "wand": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "silences": {"_count": 1, "the": {"_count": 1}}, "brown": {"_count": 1, "teeth": {"_count": 1}}, "blur": {"_count": 1, "beneath": {"_count": 1}}, "ear": {"_count": 1, "you": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "Dracos": {"_count": 1, "wand": {"_count": 1}}, "Bellatrixs": {"_count": 1, "wand": {"_count": 1}}, "end": {"_count": 1, "and": {"_count": 1}}}, "gazed": {"_count": 65, "openmouthed": {"_count": 1, "as": {"_count": 1}}, "miserably": {"_count": 1, "into": {"_count": 1}}, "longingly": {"_count": 1, "at": {"_count": 1}}, "blearily": {"_count": 1, "around": {"_count": 1}}, "desperately": {"_count": 1, "around": {"_count": 1}}, "uncertainly": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "terror": {"_count": 1}}, "intently": {"_count": 3, "at": {"_count": 3}}, "after": {"_count": 1, "them": {"_count": 1}}, "into": {"_count": 7, "its": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 4}, "space": {"_count": 1}}, "nonplussed": {"_count": 1, "at": {"_count": 1}}, "reproachfully": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 18, "Dumbledore": {"_count": 1}, "him": {"_count": 3}, "Rita": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 5}, "one": {"_count": 2}, "it": {"_count": 2}, "each": {"_count": 2}, "Hermione": {"_count": 1}}, "sleepily": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 3}, "the": {"_count": 1}}, "mistyeyed": {"_count": 1, "into": {"_count": 1}}, "down": {"_count": 6, "upon": {"_count": 2}, "at": {"_count": 3}, "into": {"_count": 1}}, "upward": {"_count": 2, "at": {"_count": 2}}, "blankly": {"_count": 1, "at": {"_count": 1}}, "up": {"_count": 3, "at": {"_count": 3}}, "hopelessly": {"_count": 2, "at": {"_count": 2}}, "dreamily": {"_count": 1, "into": {"_count": 1}}, "around": {"_count": 2, "at": {"_count": 1}, "the": {"_count": 1}}, "blindly": {"_count": 1, "upward": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "at": {"_count": 1}}}, "openmouthed": {"_count": 14, "as": {"_count": 1, "owl": {"_count": 1}}, "at": {"_count": 4, "Harry": {"_count": 1}, "the": {"_count": 3}}, "treading": {"_count": 1, "on": {"_count": 1}}, "toward": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "into": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "staring": {"_count": 1}}, "appalled": {"_count": 1, "at": {"_count": 1}}, "serpents": {"_count": 1, "and": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}}, "after": {"_count": 1012, "owl": {"_count": 1, "sped": {"_count": 1}}, "a": {"_count": 95, "moment": {"_count": 12}, "while": {"_count": 23}, "fiftyfoot": {"_count": 1}, "few": {"_count": 17}, "very": {"_count": 1}, "nervous": {"_count": 1}, "Kwikspell": {"_count": 1}, "minute": {"_count": 4}, "long": {"_count": 4}, "day": {"_count": 1}, "quarter": {"_count": 1}, "minutes": {"_count": 1}, "hasty": {"_count": 2}, "couple": {"_count": 1}, "month": {"_count": 1}, "little": {"_count": 3}, "slightly": {"_count": 1}, "twomonth": {"_count": 1}, "lengthy": {"_count": 2}, "moments": {"_count": 4}, "mere": {"_count": 1}, "filthy": {"_count": 1}, "raid": {"_count": 1}, "shocked": {"_count": 1}, "short": {"_count": 2}, "particularly": {"_count": 1}, "fashion": {"_count": 1}, "last": {"_count": 1}, "second": {"_count": 2}, "considerable": {"_count": 1}, "summer": {"_count": 1}}, "the": {"_count": 81, "bacon": {"_count": 1}, "storm": {"_count": 1}, "excitement": {"_count": 1}, "streak": {"_count": 1}, "grounds": {"_count": 1}, "Quidditch": {"_count": 2}, "other": {"_count": 4}, "actionpacked": {"_count": 1}, "terrified": {"_count": 2}, "lesson": {"_count": 1}, "kappas": {"_count": 1}, "Fidelius": {"_count": 1}, "start": {"_count": 2}, "Easter": {"_count": 1}, "World": {"_count": 3}, "twins": {"_count": 2}, "balls": {"_count": 1}, "appearance": {"_count": 1}, "Goblet": {"_count": 1}, "Crouches": {"_count": 1}, "first": {"_count": 1}, "things": {"_count": 1}, "third": {"_count": 2}, "darkness": {"_count": 2}, "warning": {"_count": 1}, "figure": {"_count": 1}, "whistle": {"_count": 1}, "giants": {"_count": 1}, "meeting": {"_count": 1}, "plant": {"_count": 1}, "Ravenclaws": {"_count": 1}, "last": {"_count": 2}, "sacking": {"_count": 1}, "decree": {"_count": 1}, "distressing": {"_count": 1}, "second": {"_count": 1}, "elf": {"_count": 1}, "Howler": {"_count": 1}, "end": {"_count": 1}, "feast": {"_count": 2}, "pieces": {"_count": 1}, "fiasco": {"_count": 1}, "sugary": {"_count": 1}, "match": {"_count": 1}, "Defense": {"_count": 1}, "brother": {"_count": 1}, "Death": {"_count": 1}, "funeral": {"_count": 1}, "seventh": {"_count": 1}, "cruel": {"_count": 1}, "loss": {"_count": 1}, "Muggle": {"_count": 1}, "death": {"_count": 1}, "wedding": {"_count": 1}, "treatment": {"_count": 1}, "girls": {"_count": 2}, "pool": {"_count": 1}, "Elder": {"_count": 2}, "": {"_count": 1}, "goblin": {"_count": 1}, "bastards": {"_count": 1}, "Dark": {"_count": 2}, "boys": {"_count": 1}, "wand": {"_count": 2}}, "pulling": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 102, "and": {"_count": 4}, "hed": {"_count": 1}, "but": {"_count": 3}, "": {"_count": 31}, "that": {"_count": 2}, "it": {"_count": 2}, "whod": {"_count": 1}, "although": {"_count": 1}, "the": {"_count": 6}, "he": {"_count": 6}, "Yehre": {"_count": 1}, "you": {"_count": 3}, "his": {"_count": 1}, "Amos": {"_count": 1}, "possessed": {"_count": 1}, "Dumbledore": {"_count": 2}, "didnt": {"_count": 1}, "about": {"_count": 1}, "is": {"_count": 1}, "what": {"_count": 1}, "Ron": {"_count": 1}, "very": {"_count": 2}, "never": {"_count": 1}, "thought": {"_count": 1}, "hardly": {"_count": 1}, "this": {"_count": 3}, "was": {"_count": 1}, "look": {"_count": 1}, "McLaggen": {"_count": 1}, "still": {"_count": 1}, "Aragogs": {"_count": 1}, "when": {"_count": 1}, "Remus": {"_count": 1}, "can": {"_count": 1}, "we": {"_count": 1}, "its": {"_count": 1}, "a": {"_count": 2}, "They": {"_count": 1}, "Sirius": {"_count": 1}, "their": {"_count": 1}, "put": {"_count": 1}, "ridiculous": {"_count": 1}, "to": {"_count": 1}, "come": {"_count": 1}, "Severus": {"_count": 1}, "so": {"_count": 1}, "my": {"_count": 1}, "those": {"_count": 1}}, "he": {"_count": 21, "decided": {"_count": 1}, "had": {"_count": 8}, "lost": {"_count": 1}, "touched": {"_count": 1}, "made": {"_count": 1}, "died": {"_count": 1}, "was": {"_count": 2}, "started": {"_count": 1}, "left": {"_count": 2}, "broke": {"_count": 1}, "vanished": {"_count": 1}, "and": {"_count": 1}}, "them": {"_count": 34, "": {"_count": 12}, "Godric": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 3}, "on": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 2}, "his": {"_count": 2}, "as": {"_count": 2}, "smashing": {"_count": 1}, "the": {"_count": 1}, "111": {"_count": 1}, "all": {"_count": 1}, "one": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}, "bending": {"_count": 1}, "curiously": {"_count": 1}}, "him": {"_count": 52, "to": {"_count": 1}, "hasnt": {"_count": 1}, "trying": {"_count": 2}, "": {"_count": 16}, "in": {"_count": 2}, "once": {"_count": 1}, "and": {"_count": 2}, "crouching": {"_count": 1}, "Harry": {"_count": 3}, "along": {"_count": 1}, "as": {"_count": 2}, "Diggorys": {"_count": 1}, "Ha": {"_count": 1}, "clearly": {"_count": 1}, "he": {"_count": 1}, "while": {"_count": 1}, "his": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 3}, "knocking": {"_count": 1}, "The": {"_count": 1}, "see": {"_count": 1}, "since": {"_count": 1}, "determined": {"_count": 1}, "into": {"_count": 1}, "I": {"_count": 1}, "Id": {"_count": 1}, "He": {"_count": 1}, "have": {"_count": 1}}, "Ron": {"_count": 12, "": {"_count": 5}, "and": {"_count": 4}, "toward": {"_count": 1}, "they": {"_count": 1}, "left": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "Hagrids": {"_count": 1, "lamp": {"_count": 1}}, "they": {"_count": 14, "were": {"_count": 3}, "had": {"_count": 6}, "was": {"_count": 1}, "brought": {"_count": 1}, "saw": {"_count": 1}, "moved": {"_count": 1}, "would": {"_count": 1}}, "Quirrells": {"_count": 1, "job": {"_count": 1}}, "her": {"_count": 48, "his": {"_count": 3}, "pelting": {"_count": 1}, "I": {"_count": 2}, "and": {"_count": 2}, "": {"_count": 14}, "as": {"_count": 4}, "Theres": {"_count": 1}, "the": {"_count": 1}, "fourth": {"_count": 1}, "before": {"_count": 1}, "for": {"_count": 2}, "he": {"_count": 1}, "original": {"_count": 1}, "children": {"_count": 1}, "catching": {"_count": 1}, "but": {"_count": 1}, "Professor": {"_count": 1}, "to": {"_count": 1}, "Hey": {"_count": 1}, "too": {"_count": 1}, "into": {"_count": 1}, "friends": {"_count": 1}, "husband": {"_count": 2}, "father": {"_count": 1}, "said": {"_count": 1}, "sister": {"_count": 1}}, "Snape": {"_count": 6, "s": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "had": {"_count": 1}}, "weeks": {"_count": 3, "of": {"_count": 1}, "and": {"_count": 1}, "weeks": {"_count": 1}}, "whatever": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 12, "?": {"_count": 5}, ".": {"_count": 7}}, "it": {"_count": 13, "": {"_count": 3}, "thats": {"_count": 1}, "it": {"_count": 1}, "brandishing": {"_count": 1}, "he": {"_count": 1}, "weaving": {"_count": 1}, "happened": {"_count": 2}, "attacked": {"_count": 1}, "had": {"_count": 2}}, "that": {"_count": 30, "obvious": {"_count": 1}, "open": {"_count": 1}, "": {"_count": 10}, "they": {"_count": 1}, "it": {"_count": 1}, "time": {"_count": 1}, "just": {"_count": 1}, "the": {"_count": 1}, "Daily": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 2}, "terrible": {"_count": 1}, "without": {"_count": 1}, "impenetrable": {"_count": 1}, "little": {"_count": 1}, "Hagrid": {"_count": 1}, "sighed": {"_count": 1}, "you": {"_count": 1}, "fire": {"_count": 1}}, "training": {"_count": 2, "": {"_count": 1}, "cold": {"_count": 1}}, "evening": {"_count": 2, "they": {"_count": 1}, "using": {"_count": 1}}, "everyone": {"_count": 2, "else": {"_count": 1}, "": {"_count": 1}}, "stray": {"_count": 1, "humans": {"_count": 1}}, "Fluffy": {"_count": 1, "a": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "dinner": {"_count": 12, "mints": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 3}, "every": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}, "this": {"_count": 1}, "or": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}, "us": {"_count": 2, "Mrs": {"_count": 1}, "wouldnt": {"_count": 1}}, "picture": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 13, "so": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 3}, "": {"_count": 3}, "through": {"_count": 1}, "s": {"_count": 2}, "died": {"_count": 1}, "fell": {"_count": 1}}, "making": {"_count": 2, "sure": {"_count": 2}}, "I": {"_count": 12, "spoke": {"_count": 1}, "was": {"_count": 1}, "plucked": {"_count": 1}, "started": {"_count": 1}, "got": {"_count": 2}, "ran": {"_count": 1}, "am": {"_count": 1}, "have": {"_count": 2}, "saved": {"_count": 1}, "saw": {"_count": 1}}, "door": {"_count": 2, "flew": {"_count": 1}, "as": {"_count": 1}}, "Christmas": {"_count": 2, "tea": {"_count": 1}, "": {"_count": 1}}, "Malfoy": {"_count": 3, "who": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "my": {"_count": 8, "father": {"_count": 1}, "grandfather": {"_count": 1}, "blood": {"_count": 1}, "patients": {"_count": 1}, "questioning": {"_count": 1}, "lesson": {"_count": 1}, "kidnapping": {"_count": 1}, "death": {"_count": 1}}, "Hagrid": {"_count": 4, "was": {"_count": 2}, "leading": {"_count": 1}, "and": {"_count": 1}}, "sunset": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 2, "tense": {"_count": 1}, "minutes": {"_count": 1}}, "your": {"_count": 4, "time": {"_count": 1}, "journey": {"_count": 1}, "detentions": {"_count": 1}, "half": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "leaving": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "swearing": {"_count": 2, "that": {"_count": 1}, "angrily": {"_count": 1}}, "you": {"_count": 25, "": {"_count": 6}, "did": {"_count": 1}, "fell": {"_count": 1}, "didnt": {"_count": 1}, "conjured": {"_count": 1}, "now": {"_count": 1}, "though": {"_count": 1}, "next": {"_count": 1}, "were": {"_count": 1}, "attacked": {"_count": 1}, "touched": {"_count": 1}, "youre": {"_count": 1}, "leave": {"_count": 1}, "rejoined": {"_count": 1}, "She": {"_count": 1}, "changed": {"_count": 1}, "left": {"_count": 3}, "visited": {"_count": 1}}, "ten": {"_count": 2, "minutes": {"_count": 2}}, "what": {"_count": 17, "he": {"_count": 2}, "happened": {"_count": 8}, "I": {"_count": 2}, "seemed": {"_count": 1}, "had": {"_count": 1}, "weve": {"_count": 1}, "youve": {"_count": 1}, "you": {"_count": 1}}, "Toms": {"_count": 1, "lantern": {"_count": 1}}, "hed": {"_count": 4, "arrived": {"_count": 1}, "been": {"_count": 1}, "stopped": {"_count": 1}, "pulled": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 9, "There": {"_count": 1}, "until": {"_count": 1}, "as": {"_count": 1}, "had": {"_count": 4}, "looking": {"_count": 1}, "and": {"_count": 1}}, "himself": {"_count": 2, "": {"_count": 2}}, "their": {"_count": 3, "search": {"_count": 1}, "third": {"_count": 1}, "arrival": {"_count": 1}}, "Professor": {"_count": 3, "Kettleburn": {"_count": 1}, "Flitwick": {"_count": 1}, "McGonagall": {"_count": 1}}, "our": {"_count": 1, "first": {"_count": 1}}, "lunch": {"_count": 12, "": {"_count": 8}, "they": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}}, "his": {"_count": 12, "pony": {"_count": 1}, "Seeker": {"_count": 1}, "conversation": {"_count": 1}, "father": {"_count": 1}, "downfall": {"_count": 1}, "dream": {"_count": 1}, "friends": {"_count": 1}, "Dumbledores": {"_count": 1}, "mothers": {"_count": 1}, "slaughter": {"_count": 1}, "son": {"_count": 1}, "legs": {"_count": 1}}, "youve": {"_count": 3, "broken": {"_count": 1}, "used": {"_count": 1}, "left": {"_count": 1}}, "dark": {"_count": 3, "again": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "lesson": {"_count": 1, "learning": {"_count": 1}}, "flobberworms": {"_count": 1, "which": {"_count": 1}}, "yet": {"_count": 1, "another": {"_count": 1}}, "me": {"_count": 11, "said": {"_count": 1}, "": {"_count": 6}, "it": {"_count": 1}, "would": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "sundown": {"_count": 1, "": {"_count": 1}}, "Black": {"_count": 5, "himself": {"_count": 1}, "murdered": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "who": {"_count": 1}}, "many": {"_count": 3, "more": {"_count": 1}, "tantrums": {"_count": 1}, "nervous": {"_count": 1}}, "New": {"_count": 2, "Year": {"_count": 2}}, "Hermione": {"_count": 10, "": {"_count": 3}, "unearthed": {"_count": 1}, "but": {"_count": 1}, "bade": {"_count": 1}, "dragging": {"_count": 1}, "when": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}}, "every": {"_count": 4, "Transfiguration": {"_count": 1}, "seventh": {"_count": 1}, "use": {"_count": 1}, "Potions": {"_count": 1}}, "theyd": {"_count": 4, "finished": {"_count": 1}, "done": {"_count": 1}, "searched": {"_count": 1}, "spent": {"_count": 1}}, "Blacks": {"_count": 1, "breakin": {"_count": 1}}, "tomorrow": {"_count": 1, "one": {"_count": 1}}, "about": {"_count": 5, "twenty": {"_count": 1}, "a": {"_count": 2}, "ten": {"_count": 1}, "fifteen": {"_count": 1}}, "Crookshanks": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 3, "hes": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}}, "wed": {"_count": 5, "gone": {"_count": 1}, "all": {"_count": 1}, "had": {"_count": 1}, "made": {"_count": 1}, "been": {"_count": 1}}, "over": {"_count": 1, "an": {"_count": 1}}, "wha": {"_count": 1, "happened": {"_count": 1}}, "last": {"_count": 3, "night": {"_count": 2}, "summer": {"_count": 1}}, "arguments": {"_count": 1, "that": {"_count": 1}}, "Dudley": {"_count": 2, "finished": {"_count": 1}, "again": {"_count": 1}}, "another": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "ten": {"_count": 1}, "into": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 2}, "but": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "Muggles": {"_count": 1, "said": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 10, "got": {"_count": 2}, "play": {"_count": 1}, "started": {"_count": 1}, "had": {"_count": 1}, "broke": {"_count": 1}, "leave": {"_count": 1}, "agreed": {"_count": 1}, "ran": {"_count": 1}, "left": {"_count": 1}}, "Charlies": {"_count": 1, "snores": {"_count": 1}}, "only": {"_count": 2, "a": {"_count": 1}, "twentyfour": {"_count": 1}}, "Mad": {"_count": 1, "Eye": {"_count": 1}}, "next": {"_count": 3, "both": {"_count": 1}, "whispered": {"_count": 1}, "": {"_count": 1}}, "task": {"_count": 1, "three": {"_count": 1}}, "humans": {"_count": 1, "thats": {"_count": 1}}, "nearly": {"_count": 1, "half": {"_count": 1}}, "yourself": {"_count": 7, "and": {"_count": 2}, "": {"_count": 3}, "now": {"_count": 1}, "Harry": {"_count": 1}}, "Ritas": {"_count": 1, "article": {"_count": 1}}, "hes": {"_count": 2, "faced": {"_count": 1}, "helped": {"_count": 1}}, "Divination": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "she": {"_count": 4, "had": {"_count": 3}, "burst": {"_count": 1}}, "Potions": {"_count": 3, "": {"_count": 1}, "which": {"_count": 1}, "this": {"_count": 1}}, "Dad": {"_count": 1, "went": {"_count": 1}}, "potion": {"_count": 1, "ingredients": {"_count": 1}}, "hours": {"_count": 3, "again": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "everything": {"_count": 2, "else": {"_count": 1}, "that": {"_count": 1}}, "page": {"_count": 1, "of": {"_count": 1}}, "breakfast": {"_count": 4, "and": {"_count": 1}, "on": {"_count": 1}, "she": {"_count": 1}, "but": {"_count": 1}}, "an": {"_count": 4, "hour": {"_count": 2}, "excellent": {"_count": 1}, "ominous": {"_count": 1}}, "Gabrielle": {"_count": 1, "she": {"_count": 1}}, "regarding": {"_count": 1, "them": {"_count": 1}}, "removing": {"_count": 1, "the": {"_count": 1}}, "youd": {"_count": 2, "left": {"_count": 1}, "had": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "Ive": {"_count": 2, "seen": {"_count": 2}}, "Voldemorts": {"_count": 2, "fall": {"_count": 1}, "high": {"_count": 1}}, "those": {"_count": 1, "fathers": {"_count": 1}}, "Sirius": {"_count": 2, "": {"_count": 1}, "died": {"_count": 1}}, "eating": {"_count": 1, "the": {"_count": 1}}, "Id": {"_count": 1, "finished": {"_count": 1}}, "Hedwigs": {"_count": 1, "departure": {"_count": 1}}, "Hogwarts": {"_count": 3, "": {"_count": 2}, "you": {"_count": 1}}, "its": {"_count": 1, "cleaning": {"_count": 1}}, "skirting": {"_count": 1, "a": {"_count": 1}}, "yearning": {"_count": 1, "to": {"_count": 1}}, "myself": {"_count": 2, "after": {"_count": 1}, "": {"_count": 1}}, "term": {"_count": 2, "ended": {"_count": 2}}, "Voldemort": {"_count": 2, "returned": {"_count": 1}, "s": {"_count": 1}}, "YouKnowWho": {"_count": 1, "came": {"_count": 1}}, "apart": {"_count": 2, "from": {"_count": 2}}, "scanning": {"_count": 1, "the": {"_count": 1}}, "nine": {"_count": 1, "on": {"_count": 1}}, "this": {"_count": 8, "was": {"_count": 1}, "we": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "rather": {"_count": 1}, "Fleur": {"_count": 1}, "Hagrid": {"_count": 1}}, "yourselves": {"_count": 2, "said": {"_count": 2}}, "being": {"_count": 1, "struck": {"_count": 1}}, "fifth": {"_count": 1, "year": {"_count": 1}}, "allowing": {"_count": 1, "his": {"_count": 1}}, "two": {"_count": 5, "hours": {"_count": 1}, "days": {"_count": 1}, "months": {"_count": 1}, "nifflers": {"_count": 1}, "solid": {"_count": 1}}, "daybreak": {"_count": 1, "": {"_count": 1}}, "window": {"_count": 1, "showing": {"_count": 1}}, "school": {"_count": 1, "too": {"_count": 1}}, "E": {"_count": 1, "its": {"_count": 1}}, "Ernie": {"_count": 1, "though": {"_count": 1}}, "crossing": {"_count": 1, "out": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "walking": {"_count": 1, "twice": {"_count": 1}}, "three": {"_count": 2, "meetings": {"_count": 1}, "days": {"_count": 1}}, "Karkus": {"_count": 1, "was": {"_count": 1}}, "themselves": {"_count": 3, "Hagrid": {"_count": 1}, "said": {"_count": 1}, "thats": {"_count": 1}}, "porlocks": {"_count": 1, "how": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "sip": {"_count": 1}}, "image": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 1, "in": {"_count": 1}}, "seeing": {"_count": 1, "the": {"_count": 1}}, "Snapes": {"_count": 1, "been": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "Decree": {"_count": 1, "": {"_count": 1}}, "news": {"_count": 1, "of": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "class": {"_count": 2, "one": {"_count": 1}, "this": {"_count": 1}}, "Harrys": {"_count": 2, "Hogsmeade": {"_count": 1}, "exclamation": {"_count": 1}}, "listening": {"_count": 1, "intently": {"_count": 1}}, "encounters": {"_count": 1, "with": {"_count": 1}}, "lessons": {"_count": 2, "because": {"_count": 1}, "with": {"_count": 1}}, "Filch": {"_count": 1, "who": {"_count": 1}}, "Umbridge": {"_count": 2, "and": {"_count": 1}, "herself": {"_count": 1}}, "yeh": {"_count": 2, "fer": {"_count": 1}, "Molly": {"_count": 1}}, "Potter": {"_count": 1, "last": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "empty": {"_count": 1, "aisle": {"_count": 1}}, "steep": {"_count": 1, "stone": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "quick": {"_count": 1, "scared": {"_count": 1}}, "doffing": {"_count": 1, "his": {"_count": 1}}, "six": {"_count": 1, "years": {"_count": 1}}, "deserting": {"_count": 1, "the": {"_count": 1}}, "McLaggen": {"_count": 1, "turned": {"_count": 1}}, "Zabini": {"_count": 2, "as": {"_count": 1}, "came": {"_count": 1}}, "break": {"_count": 1, "": {"_count": 1}}, "completing": {"_count": 2, "your": {"_count": 1}, "school": {"_count": 1}}, "Ogden": {"_count": 1, "said": {"_count": 1}}, "Quidditch": {"_count": 1, "Harry": {"_count": 1}}, "Katie": {"_count": 1, "got": {"_count": 1}}, "telling": {"_count": 1, "Riddle": {"_count": 1}}, "Transfiguration": {"_count": 1, "one": {"_count": 1}}, "threequarters": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "enduring": {"_count": 1, "a": {"_count": 1}}, "much": {"_count": 1, "painstaking": {"_count": 1}}, "tracing": {"_count": 1, "those": {"_count": 1}}, "searching": {"_count": 1, "old": {"_count": 1}}, "painstaking": {"_count": 1, "research": {"_count": 1}}, "muttering": {"_count": 1, "incomprehensibly": {"_count": 1}}, "tonight": {"_count": 1, "unless": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 1, "into": {"_count": 1}}, "checking": {"_count": 1, "carefully": {"_count": 1}}, "attacking": {"_count": 1, "you": {"_count": 1}}, "giving": {"_count": 1, "him": {"_count": 1}}, "Charms": {"_count": 1, "and": {"_count": 1}}, "match": {"_count": 1, "party": {"_count": 1}}, "wave": {"_count": 1, "obliterating": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "hex": {"_count": 1, "at": {"_count": 1}}, "curse": {"_count": 1, "at": {"_count": 1}}, "winning": {"_count": 1, "the": {"_count": 1}}, "great": {"_count": 1, "effort": {"_count": 1}}, "retrieving": {"_count": 1, "an": {"_count": 1}}, "noting": {"_count": 1, "that": {"_count": 1}}, "Stunning": {"_count": 1, "Spell": {"_count": 1}}, "zey": {"_count": 1, "ave": {"_count": 1}}, "Dumbledores": {"_count": 1, "funeral": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Percival": {"_count": 1, "was": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "Siriuss": {"_count": 1, "death": {"_count": 1}}, "Gregorovitch": {"_count": 1, "": {"_count": 1}}, "spending": {"_count": 1, "hours": {"_count": 1}}, "gleaming": {"_count": 1, "wooden": {"_count": 1}}, "object": {"_count": 1, "began": {"_count": 1}}, "something": {"_count": 1, "else": {"_count": 1}}, "these": {"_count": 1, "unceremonious": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}, "heavy": {"_count": 1, "coil": {"_count": 1}}, "sweater": {"_count": 1, "over": {"_count": 1}}, "explaining": {"_count": 1, "the": {"_count": 1}}, "examining": {"_count": 1, "them": {"_count": 1}}, "Griphook": {"_count": 1, "had": {"_count": 1}}, "weve": {"_count": 1, "used": {"_count": 1}}, "problem": {"_count": 1, "to": {"_count": 1}}, "Doras": {"_count": 1, "father": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "Ariana": {"_count": 1, "took": {"_count": 1}}, "em": {"_count": 1, "then": {"_count": 1}}, "Easter": {"_count": 1, "and": {"_count": 1}}, "portrait": {"_count": 1, "and": {"_count": 1}}, "Tonks": {"_count": 1, "": {"_count": 1}}, "Aberforth": {"_count": 1, "": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "Horcruxes": {"_count": 1, "hes": {"_count": 1}}, "sitting": {"_count": 1, "his": {"_count": 1}}, "James": {"_count": 1, "had": {"_count": 1}}, "George": {"_count": 1, "Weasleys": {"_count": 1}}}, "sped": {"_count": 80, "overhead": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 4, "to": {"_count": 2}, "down": {"_count": 2}}, "off": {"_count": 11, "toward": {"_count": 3}, "in": {"_count": 2}, "with": {"_count": 2}, "": {"_count": 2}, "to": {"_count": 1}, "up": {"_count": 1}}, "up": {"_count": 20, "a": {"_count": 2}, "and": {"_count": 3}, "the": {"_count": 1}, "his": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 2}, "skirting": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 3}, "talking": {"_count": 1}, "as": {"_count": 1}, "sucked": {"_count": 1}, "dragging": {"_count": 1}, "following": {"_count": 1}}, "straight": {"_count": 1, "at": {"_count": 1}}, "toward": {"_count": 6, "the": {"_count": 4}, "her": {"_count": 1}, "him": {"_count": 1}}, "past": {"_count": 3, "Muggle": {"_count": 1}, "the": {"_count": 1}, "though": {"_count": 1}}, "along": {"_count": 2, "minature": {"_count": 1}, "the": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "in": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "them": {"_count": 2, "on": {"_count": 1}, "southward": {"_count": 1}}, "yet": {"_count": 1, "farther": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 4, "into": {"_count": 1}, "the": {"_count": 3}}, "right": {"_count": 2, "into": {"_count": 1}, "on": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "into": {"_count": 2, "greenhouse": {"_count": 1}, "the": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "on": {"_count": 1, "staring": {"_count": 1}}, "around": {"_count": 2, "a": {"_count": 1}, "and": {"_count": 1}}, "forward": {"_count": 2, "in": {"_count": 1}, "propelled": {"_count": 1}}, "from": {"_count": 1, "left": {"_count": 1}}, "ever": {"_count": 1, "onward": {"_count": 1}}, "upward": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "four": {"_count": 1, "legged": {"_count": 1}}, "between": {"_count": 1, "duelers": {"_count": 1}}}, "overhead": {"_count": 59, "": {"_count": 13, ".": {"_count": 13}}, "said": {"_count": 2, "Hogwarts": {"_count": 1}, "Wotcher": {"_count": 1}}, "glittering": {"_count": 1, "glittering": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "burning": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 2, "showed": {"_count": 1}, "announced": {"_count": 1}}, "and": {"_count": 13, "a": {"_count": 1}, "the": {"_count": 2}, "something": {"_count": 1}, "they": {"_count": 2}, "picturing": {"_count": 1}, "ageblackened": {"_count": 1}, "mewing": {"_count": 1}, "he": {"_count": 2}, "both": {"_count": 1}, "Harry": {"_count": 1}}, "blazed": {"_count": 1, "midnightblue": {"_count": 1}}, "now": {"_count": 1, "grinning": {"_count": 1}}, "were": {"_count": 1, "no": {"_count": 1}}, "thickened": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "pounding": {"_count": 1}}, "shes": {"_count": 1, "a": {"_count": 1}}, "rustled": {"_count": 1, "faintly": {"_count": 1}}, "as": {"_count": 3, "Harry": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "deepened": {"_count": 1, "to": {"_count": 1}}, "Ask": {"_count": 1, "us": {"_count": 1}}, "then": {"_count": 2, "lowered": {"_count": 1}, "there": {"_count": 1}}, "gazed": {"_count": 1, "down": {"_count": 1}}, "rose": {"_count": 1, "twittering": {"_count": 1}}, "that": {"_count": 1, "Ron": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "glanced": {"_count": 1, "quickly": {"_count": 1}}, "burst": {"_count": 1, "Birds": {"_count": 1}}, "Harry": {"_count": 1, "wondered": {"_count": 1}}, "Draco": {"_count": 1, "marching": {"_count": 1}}, "All": {"_count": 1, "three": {"_count": 1}}}, "Most": {"_count": 60, "of": {"_count": 31, "them": {"_count": 3}, "us": {"_count": 1}, "their": {"_count": 1}, "its": {"_count": 1}, "em": {"_count": 1}, "the": {"_count": 18}, "you": {"_count": 1}, "this": {"_count": 1}, "these": {"_count": 1}, "his": {"_count": 1}, "all": {"_count": 2}}, "mysterious": {"_count": 1, "": {"_count": 1}}, "unfortunately": {"_count": 2, "you": {"_count": 1}, "Professor": {"_count": 1}}, "Charming": {"_count": 1, "Smile": {"_count": 1}}, "wizards": {"_count": 2, "these": {"_count": 1}, "need": {"_count": 1}}, "people": {"_count": 9, "would": {"_count": 1}, "seemed": {"_count": 1}, "were": {"_count": 5}, "he": {"_count": 1}, "returned": {"_count": 1}}, "unluckily": {"_count": 1, "it": {"_count": 1}}, "important": {"_count": 1, "of": {"_count": 1}}, "unfortunate": {"_count": 1, "that": {"_count": 1}}, "looked": {"_count": 1, "almost": {"_count": 1}}, "worthy": {"_count": 1, "of": {"_count": 1}}, "Ravenclaws": {"_count": 1, "seemed": {"_count": 1}}, "go": {"_count": 1, "mad": {"_count": 1}}, "seem": {"_count": 1, "reassured": {"_count": 1}}, "Extraordinary": {"_count": 1, "Society": {"_count": 1}}, "definitely": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "did": {"_count": 1}}, "celebrated": {"_count": 1, "of": {"_count": 1}}, "Dangerous": {"_count": 1, "Dark": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}}, "nighttime": {"_count": 13, "": {"_count": 2, ".": {"_count": 2}}, "visit": {"_count": 1, "and": {"_count": 1}}, "wanderings": {"_count": 2, "and": {"_count": 1}, "had": {"_count": 1}}, "stroll": {"_count": 4, "to": {"_count": 1}, "into": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 2, "had": {"_count": 1}, "Dumbledore": {"_count": 1}}, "visions": {"_count": 1, "with": {"_count": 1}}, "prowlings": {"_count": 1, "out": {"_count": 1}}}, "however": {"_count": 369, "had": {"_count": 9, "a": {"_count": 1}, "more": {"_count": 1}, "reached": {"_count": 1}, "sent": {"_count": 1}, "been": {"_count": 1}, "to": {"_count": 1}, "leapt": {"_count": 1}, "never": {"_count": 1}, "always": {"_count": 1}}, "was": {"_count": 34, "choosing": {"_count": 1}, "not": {"_count": 3}, "to": {"_count": 3}, "on": {"_count": 1}, "completely": {"_count": 2}, "immaculate": {"_count": 1}, "shaken": {"_count": 1}, "as": {"_count": 1}, "looking": {"_count": 4}, "watching": {"_count": 1}, "just": {"_count": 1}, "the": {"_count": 2}, "frowning": {"_count": 1}, "smaller": {"_count": 1}, "nothing": {"_count": 1}, "that": {"_count": 1}, "number": {"_count": 1}, "a": {"_count": 1}, "now": {"_count": 1}, "oddly": {"_count": 1}, "muttering": {"_count": 1}, "still": {"_count": 1}, "too": {"_count": 1}, "more": {"_count": 1}, "free": {"_count": 1}}, "he": {"_count": 27, "had": {"_count": 2}, "was": {"_count": 6}, "made": {"_count": 1}, "could": {"_count": 1}, "did": {"_count": 1}, "remembered": {"_count": 1}, "lifted": {"_count": 1}, "found": {"_count": 2}, "ought": {"_count": 1}, "felt": {"_count": 1}, "shot": {"_count": 1}, "rallied": {"_count": 1}, "used": {"_count": 1}, "heard": {"_count": 2}, "saw": {"_count": 1}, "never": {"_count": 1}, "held": {"_count": 1}, "agreed": {"_count": 1}, "discovered": {"_count": 1}}, "she": {"_count": 3, "fluttered": {"_count": 1}, "moved": {"_count": 1}, "stopped": {"_count": 1}}, "they": {"_count": 7, "saw": {"_count": 1}, "had": {"_count": 1}, "did": {"_count": 1}, "found": {"_count": 2}, "began": {"_count": 1}, "heard": {"_count": 1}}, "stood": {"_count": 3, "alone": {"_count": 1}, "up": {"_count": 1}, "limply": {"_count": 1}}, "the": {"_count": 15, "first": {"_count": 1}, "snow": {"_count": 1}, "door": {"_count": 1}, "cat": {"_count": 1}, "office": {"_count": 1}, "owners": {"_count": 1}, "crushing": {"_count": 1}, "visitors": {"_count": 1}, "front": {"_count": 1}, "portrait": {"_count": 1}, "villagers": {"_count": 1}, "bell": {"_count": 1}, "author": {"_count": 1}, "details": {"_count": 1}, "eve": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "Harry": {"_count": 8, "became": {"_count": 1}, "had": {"_count": 2}, "barely": {"_count": 1}, "was": {"_count": 2}, "started": {"_count": 1}, "shook": {"_count": 1}}, "must": {"_count": 2, "have": {"_count": 1}, "always": {"_count": 1}}, "when": {"_count": 7, "Firenze": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 1}, "James": {"_count": 1}}, "slyly": {"_count": 1, "the": {"_count": 1}}, "felt": {"_count": 1, "it": {"_count": 1}}, "didnt": {"_count": 2, "seem": {"_count": 1}, "feel": {"_count": 1}}, "wasnt": {"_count": 2, "the": {"_count": 1}, "feeling": {"_count": 1}}, "as": {"_count": 4, "the": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}, "more": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "exasperated": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 3, "in": {"_count": 1}, "Good": {"_count": 1}, "quickly": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "anything": {"_count": 1}}, "stopped": {"_count": 1, "playing": {"_count": 1}}, "I": {"_count": 3, "felt": {"_count": 1}, "became": {"_count": 1}, "would": {"_count": 1}}, "found": {"_count": 2, "all": {"_count": 1}, "it": {"_count": 1}}, "their": {"_count": 1, "hearts": {"_count": 1}}, "pocketed": {"_count": 1, "it": {"_count": 1}}, "cut": {"_count": 1, "his": {"_count": 1}}, "clapped": {"_count": 1, "a": {"_count": 1}}, "seemed": {"_count": 5, "to": {"_count": 3}, "genuinely": {"_count": 1}, "completely": {"_count": 1}}, "pointed": {"_count": 1, "at": {"_count": 1}}, "whose": {"_count": 1, "gaunt": {"_count": 1}}, "things": {"_count": 1, "that": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "were": {"_count": 7, "eager": {"_count": 1}, "not": {"_count": 1}, "among": {"_count": 1}, "still": {"_count": 3}, "fixed": {"_count": 1}}, "approached": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 13, "thoughtful": {"_count": 1}, "quite": {"_count": 1}, "rather": {"_count": 1}, "carefully": {"_count": 1}, "interested": {"_count": 1}, "fixedly": {"_count": 1}, "sharply": {"_count": 1}, "reproachful": {"_count": 1}, "cold": {"_count": 1}, "calmly": {"_count": 1}, "bemused": {"_count": 1}, "puzzled": {"_count": 1}, "alarmed": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 16, "it": {"_count": 1}, "one": {"_count": 1}, "we": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 4}, "these": {"_count": 1}, "Ron": {"_count": 1}, "those": {"_count": 1}, "Dumbledore": {"_count": 1}, "many": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "did": {"_count": 7, "not": {"_count": 7}}, "there": {"_count": 4, "were": {"_count": 2}, "was": {"_count": 2}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "came": {"_count": 2, "close": {"_count": 1}, "to": {"_count": 1}}, "remained": {"_count": 3, "standing": {"_count": 1}, "where": {"_count": 1}, "behind": {"_count": 1}}, "astounded": {"_count": 1, "that": {"_count": 1}}, "two": {"_count": 1, "hundred": {"_count": 1}}, "thought": {"_count": 3, "Lee": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "sat": {"_count": 1, "Ron": {"_count": 1}}, "spoke": {"_count": 1, "to": {"_count": 1}}, "took": {"_count": 3, "an": {"_count": 1}, "a": {"_count": 2}}, "so": {"_count": 1, "they": {"_count": 1}}, "started": {"_count": 1, "in": {"_count": 1}}, "distantly": {"_count": 1, "with": {"_count": 1}}, "moved": {"_count": 1, "forward": {"_count": 1}}, "a": {"_count": 3, "horrible": {"_count": 1}, "Ludo": {"_count": 1}, "wonderful": {"_count": 1}}, "angry": {"_count": 1, "he": {"_count": 1}}, "unmistakably": {"_count": 1, "a": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "allow": {"_count": 1}, "each": {"_count": 1}, "have": {"_count": 1}}, "his": {"_count": 5, "dress": {"_count": 1}, "scar": {"_count": 1}, "voice": {"_count": 1}, "face": {"_count": 1}, "tongue": {"_count": 1}}, "leaned": {"_count": 2, "in": {"_count": 1}, "against": {"_count": 1}}, "and": {"_count": 6, "did": {"_count": 2}, "spotting": {"_count": 1}, "spent": {"_count": 1}, "from": {"_count": 1}, "chose": {"_count": 1}}, "tossed": {"_count": 1, "her": {"_count": 1}}, "it": {"_count": 5, "was": {"_count": 3}, "looked": {"_count": 1}, "is": {"_count": 1}}, "or": {"_count": 1, "stay": {"_count": 1}}, "paused": {"_count": 1, "his": {"_count": 1}}, "all": {"_count": 3, "they": {"_count": 1}, "the": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "Neville": {"_count": 1, "had": {"_count": 1}}, "everyone": {"_count": 1, "in": {"_count": 1}}, "walked": {"_count": 2, "right": {"_count": 1}, "straight": {"_count": 1}}, "am": {"_count": 2, "remaining": {"_count": 1}, "here": {"_count": 1}}, "looks": {"_count": 1, "responsible": {"_count": 1}}, "Hagrid": {"_count": 1, "used": {"_count": 1}}, "considers": {"_count": 1, "himself": {"_count": 1}}, "Fridwulfas": {"_count": 1, "son": {"_count": 1}}, "Ron": {"_count": 4, "was": {"_count": 2}, "did": {"_count": 1}, "Dean": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "win": {"_count": 1}}, "well": {"_count": 1, "or": {"_count": 1}}, "has": {"_count": 1, "unearthed": {"_count": 1}}, "Sirius": {"_count": 2, "let": {"_count": 1}, "had": {"_count": 1}}, "stayed": {"_count": 2, "put": {"_count": 1}, "behind": {"_count": 1}}, "much": {"_count": 2, "you": {"_count": 1}, "his": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "raised": {"_count": 1, "their": {"_count": 1}}, "merely": {"_count": 3, "gazed": {"_count": 1}, "rustled": {"_count": 1}, "gave": {"_count": 1}}, "Dumbledore": {"_count": 3, "continued": {"_count": 1}, "seemed": {"_count": 1}, "drew": {"_count": 1}}, "gave": {"_count": 2, "Harry": {"_count": 1}, "a": {"_count": 1}}, "loomed": {"_count": 1, "ever": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "Snape": {"_count": 2, "stopped": {"_count": 1}, "said": {"_count": 1}}, "squared": {"_count": 1, "her": {"_count": 1}}, "take": {"_count": 1, "many": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "split": {"_count": 1, "itself": {"_count": 1}}, "even": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 2, "a": {"_count": 2}}, "doing": {"_count": 1, "all": {"_count": 1}}, "have": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "when": {"_count": 1}}, "whether": {"_count": 1, "Snape": {"_count": 1}}, "Cho": {"_count": 2, "came": {"_count": 1}, "spoke": {"_count": 1}}, "given": {"_count": 1, "Harry": {"_count": 1}}, "you": {"_count": 1, "did": {"_count": 1}}, "why": {"_count": 2, "Voldemort": {"_count": 1}, "not": {"_count": 1}}, "eclipsed": {"_count": 1, "almost": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "vacated": {"_count": 1, "the": {"_count": 1}}, "unwelcome": {"_count": 1, "however": {"_count": 1}}, "badly": {"_count": 1, "treated": {"_count": 1}}, "not": {"_count": 1, "since": {"_count": 1}}, "neither": {"_count": 1, "Ron": {"_count": 1}}, "who": {"_count": 1, "walked": {"_count": 1}}, "irksome": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "perfectly": {"_count": 1}}, "Ogden": {"_count": 1, "had": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "wild": {"_count": 1, "": {"_count": 1}}, "Clearly": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "Harrys": {"_count": 1, "frequent": {"_count": 1}}, "reminded": {"_count": 1, "of": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "Morfin": {"_count": 1, "had": {"_count": 1}}, "no": {"_count": 1, "such": {"_count": 1}}, "except": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "maimed": {"_count": 1, "resides": {"_count": 1}}, "little": {"_count": 1, "though": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "Albuss": {"_count": 1, "own": {"_count": 1}}, "apparently": {"_count": 1, "insignificant": {"_count": 1}}, "answered": {"_count": 1, "Harry": {"_count": 1}}, "gasped": {"_count": 1, "pointing": {"_count": 1}}, "reassuring": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 2, "Hermione": {"_count": 1}, "there": {"_count": 1}}, "faint": {"_count": 1, "about": {"_count": 1}}, "Bathilda": {"_count": 1, "is": {"_count": 1}}, "Gellert": {"_count": 1, "Grindelwald": {"_count": 1}}, "collecting": {"_count": 1, "water": {"_count": 1}}, "Hermione": {"_count": 1, "let": {"_count": 1}}, "recognize": {"_count": 1, "that": {"_count": 1}}, "Bill": {"_count": 1, "returned": {"_count": 1}}, "great": {"_count": 1, "difficulty": {"_count": 1}}}, "owlfree": {"_count": 1, "morning": {"_count": 1, "": {"_count": 1}}}, "yelled": {"_count": 261, "at": {"_count": 8, "five": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 2}, "them": {"_count": 1}, "it": {"_count": 1}, "Crabbe": {"_count": 1}}, "between": {"_count": 1, "huge": {"_count": 1}}, "Uncle": {"_count": 6, "Vernon": {"_count": 6}}, "as": {"_count": 11, "something": {"_count": 1}, "the": {"_count": 2}, "Crookshanks": {"_count": 1}, "he": {"_count": 2}, "another": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}, "loudly": {"_count": 1}}, "Hagrid": {"_count": 6, "as": {"_count": 1}, "making": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "but": {"_count": 1}}, "We": {"_count": 1, "got": {"_count": 1}}, "but": {"_count": 4, "Malfoy": {"_count": 1}, "with": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "and": {"_count": 15, "the": {"_count": 2}, "he": {"_count": 3}, "woken": {"_count": 1}, "sputtered": {"_count": 1}, "ducked": {"_count": 1}, "fell": {"_count": 1}, "stamped": {"_count": 1}, "as": {"_count": 1}, "jerked": {"_count": 1}, "lunging": {"_count": 1}, "from": {"_count": 1}, "still": {"_count": 1}}, "Ron": {"_count": 13, "from": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 3}, "following": {"_count": 1}, "punching": {"_count": 1}, "waving": {"_count": 1}, "pulling": {"_count": 1}, "bounding": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}}, "": {"_count": 37, ".": {"_count": 37}}, "struggling": {"_count": 1, "with": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 1}, "Figg": {"_count": 1}}, "What": {"_count": 1, "in": {"_count": 1}}, "swinging": {"_count": 1, "the": {"_count": 1}}, "whacking": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 5, "it": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "Lee": {"_count": 5, "Jordan": {"_count": 4}, "into": {"_count": 1}}, "Sir": {"_count": 3, "Patricks": {"_count": 1}, "Cadogan": {"_count": 2}}, "Malfoy": {"_count": 2, "shooting": {"_count": 1}, "as": {"_count": 1}}, "happily": {"_count": 2, "but": {"_count": 1}, "stuffing": {"_count": 1}}, "his": {"_count": 6, "face": {"_count": 1}, "name": {"_count": 1}, "friend": {"_count": 1}, "eyes": {"_count": 1}, "voice": {"_count": 1}, "best": {"_count": 1}}, "in": {"_count": 5, "shock": {"_count": 2}, "frustration": {"_count": 1}, "his": {"_count": 1}, "triumph": {"_count": 1}}, "spitefully": {"_count": 1, "after": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "diving": {"_count": 1, "into": {"_count": 1}}, "joyfully": {"_count": 1, "": {"_count": 1}}, "Obliviatel": {"_count": 1, "The": {"_count": 1}}, "speeding": {"_count": 1, "up": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "seeing": {"_count": 2, "Harry": {"_count": 1}, "a": {"_count": 1}}, "the": {"_count": 8, "knight": {"_count": 1}, "rat": {"_count": 1}, "spell": {"_count": 1}, "same": {"_count": 1}, "Death": {"_count": 3}, "snake": {"_count": 1}}, "Dean": {"_count": 3, "": {"_count": 1}, "Thomas": {"_count": 1}, "exuberantly": {"_count": 1}}, "shaking": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "yanking": {"_count": 1, "Harrys": {"_count": 1}}, "pointing": {"_count": 3, "at": {"_count": 1}, "his": {"_count": 2}}, "Team": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "pain": {"_count": 1}, "fright": {"_count": 1}}, "launching": {"_count": 1, "himself": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "except": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "advancing": {"_count": 1, "on": {"_count": 1}}, "Bagman": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "looking": {"_count": 1, "wildly": {"_count": 1}}, "Bagmans": {"_count": 1, "voice": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Harry": {"_count": 17, "": {"_count": 5}, "and": {"_count": 2}, "staring": {"_count": 1}, "trying": {"_count": 1}, "his": {"_count": 1}, "ignoring": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "who": {"_count": 1}, "struggling": {"_count": 1}, "knocking": {"_count": 1}, "for": {"_count": 1}}, "DUCK": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 4, "voice": {"_count": 2}, "sixth": {"_count": 1}, "wizard": {"_count": 1}}, "an": {"_count": 1, "angry": {"_count": 1}}, "another": {"_count": 1, "wizard": {"_count": 1}}, "thumping": {"_count": 1, "Harry": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "scrambling": {"_count": 1, "away": {"_count": 1}}, "Hermione": {"_count": 2, "her": {"_count": 1}, "with": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "gesturing": {"_count": 1, "toward": {"_count": 1}}, "angrily": {"_count": 1, "standing": {"_count": 1}}, "Cedrics": {"_count": 1, "voice": {"_count": 1}}, "he": {"_count": 2, "didnt": {"_count": 1}, "could": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 2}}, "or": {"_count": 1, "jumped": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "IMPEDIMENTA": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "someone": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "vaulting": {"_count": 1, "over": {"_count": 1}}, "Seamus": {"_count": 1, "who": {"_count": 1}}, "Fawkes": {"_count": 1, "screeched": {"_count": 1}}, "Fudge": {"_count": 1, "pushing": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "Be": {"_count": 1, "reasonable": {"_count": 1}}, "Neville": {"_count": 1, "clearly": {"_count": 1}}, "turning": {"_count": 1, "quickly": {"_count": 1}}, "IMPEDIMENT": {"_count": 1, "A": {"_count": 1}}, "Protego": {"_count": 1, "Harry": {"_count": 1}}, "Petrificus": {"_count": 1, "Totalusl": {"_count": 1}}, "dashing": {"_count": 1, "to": {"_count": 1}}, "Impedimental": {"_count": 2, "Malfoy": {"_count": 1}, "The": {"_count": 1}}, "SIRIUS": {"_count": 1, "": {"_count": 1}}, "Ouch": {"_count": 1, "": {"_count": 1}}, "Protegol": {"_count": 1, "His": {"_count": 1}}, "Gaunt": {"_count": 1, "": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "Ginny": {"_count": 1, "beside": {"_count": 1}}, "again": {"_count": 1, "as": {"_count": 1}}, "KILL": {"_count": 1, "ME": {"_count": 1}}, "Sectumsempral": {"_count": 1, "SECTUMSEMPRAl": {"_count": 1}}, "Stupefy": {"_count": 2, "He": {"_count": 1}, "and": {"_count": 1}}, "Incendiol": {"_count": 1, "Harry": {"_count": 1}}, "Oi": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "out": {"_count": 1}}, "Confringo": {"_count": 1, "He": {"_count": 1}}, "Voldemort": {"_count": 1, "screamed": {"_count": 1}}, "Stupefyl": {"_count": 2, "The": {"_count": 2}}, "throwing": {"_count": 1, "one": {"_count": 1}}, "fighting": {"_count": 1, "the": {"_count": 1}}, "Relashiol": {"_count": 1, "The": {"_count": 1}}, "I": {"_count": 1, "knew": {"_count": 1}}, "Crabbe": {"_count": 1, "throwing": {"_count": 1}}, "grabbing": {"_count": 1, "Hermiones": {"_count": 1}}, "HARRY": {"_count": 1, "": {"_count": 1}}, "HAGGER": {"_count": 1, "": {"_count": 1}}}, "five": {"_count": 234, "different": {"_count": 2, "people": {"_count": 1}, "directions": {"_count": 1}}, "oclock": {"_count": 19, "he": {"_count": 2}, "the": {"_count": 2}, "on": {"_count": 4}, "tomorrow": {"_count": 4}, "came": {"_count": 1}, "said": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "times": {"_count": 7, "as": {"_count": 1}, "without": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "already": {"_count": 1}, "so": {"_count": 1}, "funnier": {"_count": 1}}, "minutes": {"_count": 56, "ready": {"_count": 1}, "time": {"_count": 4}, "": {"_count": 5}, "Harry": {"_count": 2}, "only": {"_count": 1}, "to": {"_count": 7}, "the": {"_count": 2}, "or": {"_count": 2}, "ago": {"_count": 4}, "they": {"_count": 2}, "after": {"_count": 1}, "later": {"_count": 9}, "remember": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}, "before": {"_count": 1}, "though": {"_count": 1}, "of": {"_count": 1}, "had": {"_count": 1}, "by": {"_count": 1}, "said": {"_count": 1}, "youd": {"_count": 1}, "so": {"_count": 1}, "if": {"_count": 1}, "at": {"_count": 1}, "until": {"_count": 1}}, "television": {"_count": 1, "programs": {"_count": 1}}, "Knuts": {"_count": 2, "said": {"_count": 1}, "a": {"_count": 1}}, "little": {"_count": 1, "bronze": {"_count": 1}}, "brothers": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 7, "us": {"_count": 1}, "the": {"_count": 2}, "them": {"_count": 2}, "his": {"_count": 2}}, "hundred": {"_count": 4, "but": {"_count": 1}, "years": {"_count": 1}, "have": {"_count": 1}, "for": {"_count": 1}}, "four": {"_count": 1, "posters": {"_count": 1}}, "to": {"_count": 3, "three": {"_count": 1}, "five": {"_count": 1}, "eight": {"_count": 1}}, "points": {"_count": 7, "will": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 3}, "to": {"_count": 1}}, "floors": {"_count": 1, "above": {"_count": 1}}, "paces": {"_count": 1, "before": {"_count": 1}}, "chimneys": {"_count": 1, "were": {"_count": 1}}, "or": {"_count": 4, "six": {"_count": 4}}, "fourposters": {"_count": 1, "hung": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "hundredth": {"_count": 1, "deathday": {"_count": 1}}, "Galleons": {"_count": 4, "the": {"_count": 1}, "for": {"_count": 3}}, "whole": {"_count": 2, "years": {"_count": 1}, "minutes": {"_count": 1}}, "long": {"_count": 2, "weeks": {"_count": 1}, "tables": {"_count": 1}}, "chins": {"_count": 1, "wobbling": {"_count": 1}}, "years": {"_count": 14, "to": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 5}, "ago": {"_count": 3}, "old": {"_count": 1}, "the": {"_count": 1}, "of": {"_count": 1}}, "delicious": {"_count": 1, "courses": {"_count": 1}}, "fourposter": {"_count": 1, "beds": {"_count": 1}}, "gettin": {"_count": 1, "everythin": {"_count": 1}}, "and": {"_count": 5, "six": {"_count": 2}, "read": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 1}}, "each": {"_count": 1, "to": {"_count": 1}}, "noses": {"_count": 1, "being": {"_count": 1}}, "a": {"_count": 1, "week": {"_count": 1}}, "unarmed": {"_count": 1, "boys": {"_count": 1}}, "days": {"_count": 4, "to": {"_count": 2}, "last": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 2, "went": {"_count": 1}, "bade": {"_count": 1}}, "miles": {"_count": 1, "south": {"_count": 1}}, "from": {"_count": 2, "Stoatshead": {"_count": 1}, "you": {"_count": 1}}, "fifteen": {"_count": 1, "": {"_count": 1}}, "continents": {"_count": 1, "is": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "judges": {"_count": 2, "were": {"_count": 2}}, "girls": {"_count": 1, "": {"_count": 1}}, "weeks": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "Department": {"_count": 1, "of": {"_count": 1}}, "Death": {"_count": 2, "Eaters": {"_count": 2}}, "consecutive": {"_count": 1, "carriages": {"_count": 1}}, "in": {"_count": 2, "warm": {"_count": 1}, "the": {"_count": 1}}, "\u2018Basics": {"_count": 1, "for": {"_count": 1}}, "butterbeers": {"_count": 1, "please": {"_count": 1}}, "words": {"_count": 3, "in": {"_count": 1}, "two": {"_count": 1}, "written": {"_count": 1}}, "females": {"_count": 1, "": {"_count": 1}}, "Extendable": {"_count": 1, "Ears": {"_count": 1}}, "watching": {"_count": 1, "Dudley": {"_count": 1}}, "more": {"_count": 3, "owls": {"_count": 1}, "emerged": {"_count": 1}, "people": {"_count": 1}}, "for": {"_count": 2, "contradicting": {"_count": 1}, "that": {"_count": 1}}, "feet": {"_count": 4, "in": {"_count": 1}, "of": {"_count": 1}, "away": {"_count": 2}}, "signs": {"_count": 1, "that": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "others": {"_count": 1, "": {"_count": 1}}, "How": {"_count": 1, "was": {"_count": 1}}, "pairs": {"_count": 1, "of": {"_count": 1}}, "fellows": {"_count": 1, "soaring": {"_count": 1}}, "wands": {"_count": 1, "of": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "statues": {"_count": 1, "had": {"_count": 1}}, "Why": {"_count": 1, "Nobody": {"_count": 1}}, "glasses": {"_count": 1, "appeared": {"_count": 1}}, "seconds": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "hours": {"_count": 1, "for": {"_count": 1}}, "boys": {"_count": 1, "on": {"_count": 1}}, "teachers": {"_count": 1, "in": {"_count": 1}}, "applicants": {"_count": 1, "saved": {"_count": 1}}, "penalties": {"_count": 1, "in": {"_count": 1}}, "scrolls": {"_count": 1, "of": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "injured": {"_count": 1, "two": {"_count": 1}}, "seats": {"_count": 1, "that": {"_count": 1}}, "Principal": {"_count": 1, "Exceptions": {"_count": 1}}, "star": {"_count": 1, "hotels": {"_count": 1}}, "beautifully": {"_count": 1, "painted": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "people": {"_count": 1, "wrestling": {"_count": 1}}, "exceptions": {"_count": 1, "to": {"_count": 1}}, "Potters": {"_count": 1, "approached": {"_count": 1}}}, "different": {"_count": 158, "people": {"_count": 1, "": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 14}, "!": {"_count": 1}, "?": {"_count": 1}}, "times": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "stars": {"_count": 1, "and": {"_count": 1}}, "brooms": {"_count": 1, "thought": {"_count": 1}}, "groups": {"_count": 1, "of": {"_count": 1}}, "directions": {"_count": 5, "": {"_count": 3}, "to": {"_count": 1}, "and": {"_count": 1}}, "colors": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "instead": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "look": {"_count": 1}}, "view": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "ways": {"_count": 3, "of": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "are": {"_count": 1, "those": {"_count": 1}}, "size": {"_count": 1, "Neither": {"_count": 1}}, "at": {"_count": 1, "first": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}, "owl": {"_count": 1, "because": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "world": {"_count": 1, "": {"_count": 1}}, "language": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "tack": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "advice": {"_count": 1, "on": {"_count": 1}}, "one": {"_count": 2, "who": {"_count": 1}, "every": {"_count": 1}}, "from": {"_count": 9, "Tom": {"_count": 1}, "their": {"_count": 1}, "Harrys": {"_count": 1}, "a": {"_count": 1}, "those": {"_count": 1}, "the": {"_count": 2}, "portly": {"_count": 1}, "us": {"_count": 1}}, "street": {"_count": 1, "": {"_count": 1}}, "color": {"_count": 2, "stormy": {"_count": 1}, "according": {"_count": 1}}, "sizes": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 4, "from": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "echoed": {"_count": 1}}, "conditions": {"_count": 1, "": {"_count": 1}}, "makes": {"_count": 1, "": {"_count": 1}}, "kinds": {"_count": 1, "of": {"_count": 1}}, "animal": {"_count": 1, "at": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}, "theories": {"_count": 1, "about": {"_count": 1}}, "virtues": {"_count": 1, "In": {"_count": 1}}, "nationalities": {"_count": 1, "until": {"_count": 1}}, "sort": {"_count": 1, "sleek": {"_count": 1}}, "owls": {"_count": 1, "while": {"_count": 1}}, "er": {"_count": 1, "varieties": {"_count": 1}}, "species": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 2, "friendly": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 3, "how": {"_count": 1}, "producing": {"_count": 1}, "the": {"_count": 1}}, "smile": {"_count": 1, "from": {"_count": 1}}, "Houses": {"_count": 2, "were": {"_count": 2}}, "languages": {"_count": 1, "though": {"_count": 1}}, "sorts": {"_count": 1, "of": {"_count": 1}}, "colored": {"_count": 1, "steam": {"_count": 1}}, "matter": {"_count": 1, "": {"_count": 1}}, "seat": {"_count": 1, "still": {"_count": 1}}, "relaxed": {"_count": 1, "even": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "memory": {"_count": 1, "a": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "trial": {"_count": 1, "": {"_count": 1}}, "school": {"_count": 1, "": {"_count": 1}}, "contents": {"_count": 1, "": {"_count": 1}}, "hex": {"_count": 1, "": {"_count": 1}}, "dress": {"_count": 1, "robes": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "qualities": {"_count": 1, "looked": {"_count": 1}}, "tune": {"_count": 1, "soon": {"_count": 1}}, "bow": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 1, "probably": {"_count": 1}}, "something": {"_count": 1, "stupid": {"_count": 1}}, "ward": {"_count": 1, "this": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Lupin": {"_count": 1}}, "fancy": {"_count": 1, "hippogriff": {"_count": 1}}, "story": {"_count": 1, "here": {"_count": 1}}, "around": {"_count": 1, "here": {"_count": 1}}, "direction": {"_count": 1, "once": {"_count": 1}}, "means": {"_count": 1, "of": {"_count": 1}}, "way": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "parts": {"_count": 1, "of": {"_count": 1}}, "voices": {"_count": 1, "behind": {"_count": 1}}, "types": {"_count": 1, "of": {"_count": 1}}, "race": {"_count": 1, "it": {"_count": 1}}, "senses": {"_count": 1, "of": {"_count": 1}}, "arrangements": {"_count": 1, "No": {"_count": 1}}, "though": {"_count": 1, "related": {"_count": 1}}, "instructions": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "whispered": {"_count": 1}}, "separate": {"_count": 1, "notorious": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "love": {"_count": 1, "potions": {"_count": 1}}, "crystal": {"_count": 1, "phials": {"_count": 1}}, "you": {"_count": 1, "always": {"_count": 1}}, "boys": {"_count": 1, "could": {"_count": 1}}, "personality": {"_count": 1, "into": {"_count": 1}}, "houses": {"_count": 1, "every": {"_count": 1}}, "safe": {"_count": 1, "house": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "wand": {"_count": 1, "would": {"_count": 1}}, "motive": {"_count": 1, "": {"_count": 1}}, "inflections": {"_count": 1, "they": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "place": {"_count": 1, "each": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "itd": {"_count": 1, "be": {"_count": 1}}, "superstitions": {"_count": 1, "": {"_count": 1}}, "names": {"_count": 2, "through": {"_count": 1}, "": {"_count": 1}}, "name": {"_count": 1, "": {"_count": 1}}, "breed": {"_count": 1, "of": {"_count": 1}}, "plan": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "reasons": {"_count": 1, "I": {"_count": 1}}}, "important": {"_count": 162, "telephone": {"_count": 1, "calls": {"_count": 1}}, "as": {"_count": 2, "this": {"_count": 1}, "you": {"_count": 1}}, "stuff": {"_count": 4, "fer": {"_count": 1}, "in": {"_count": 1}, "when": {"_count": 1}, "hidden": {"_count": 1}}, "": {"_count": 31, ".": {"_count": 22}, "!": {"_count": 6}, "?": {"_count": 3}}, "ceremony": {"_count": 1, "because": {"_count": 1}}, "day": {"_count": 3, "for": {"_count": 1}, "": {"_count": 2}}, "ball": {"_count": 1, "of": {"_count": 1}}, "too": {"_count": 2, "never": {"_count": 1}, "weve": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 3, "should": {"_count": 1}, "think": {"_count": 1}, "have": {"_count": 1}}, "than": {"_count": 13, "the": {"_count": 1}, "food": {"_count": 1}, "ever": {"_count": 1}, "stranded": {"_count": 1}, "homework": {"_count": 2}, "anything": {"_count": 2}, "you": {"_count": 1}, "he": {"_count": 1}, "passing": {"_count": 1}, "this": {"_count": 1}, "my": {"_count": 1}}, "things": {"_count": 8, "friendship": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 3}, "on": {"_count": 2}, "that": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "business": {"_count": 1, "elsewhere": {"_count": 1}}, "hurried": {"_count": 1, "after": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 1}, "us": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 12, "you": {"_count": 1}, "explain": {"_count": 1}, "them": {"_count": 1}, "mend": {"_count": 1}, "know": {"_count": 1}, "the": {"_count": 1}, "get": {"_count": 1}, "him": {"_count": 1}, "YouKnowWho": {"_count": 1}, "Harry": {"_count": 1}, "remain": {"_count": 1}, "give": {"_count": 1}}, "of": {"_count": 3, "all": {"_count": 2}, "several": {"_count": 1}}, "thing": {"_count": 6, "is": {"_count": 2}, "youd": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}, "now": {"_count": 1}}, "wizarding": {"_count": 1, "laws": {"_count": 1}}, "wizards": {"_count": 1, "": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 2, "is": {"_count": 1}, "was": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "phase": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "announcement": {"_count": 1}}, "quality": {"_count": 1, "in": {"_count": 1}}, "tools": {"_count": 1, "in": {"_count": 1}}, "Ministry": {"_count": 1, "member": {"_count": 1}}, "he": {"_count": 2, "didnt": {"_count": 1}, "started": {"_count": 1}}, "hie": {"_count": 1, "the": {"_count": 1}}, "information": {"_count": 1, "for": {"_count": 1}}, "supporters": {"_count": 1, "mark": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "enough": {"_count": 4, "to": {"_count": 3}, "": {"_count": 1}}, "affect": {"_count": 1, "the": {"_count": 1}}, "examination": {"_count": 1, "during": {"_count": 1}}, "means": {"_count": 1, "of": {"_count": 1}}, "were": {"_count": 1, "talking": {"_count": 1}}, "possibly": {"_count": 1, "more": {"_count": 1}}, "work": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "we": {"_count": 1}, "memory": {"_count": 1}}, "Wizarding": {"_count": 1, "institutions": {"_count": 1}}, "point": {"_count": 1, "is": {"_count": 1}}, "stories": {"_count": 1, "that": {"_count": 1}}, "story": {"_count": 1, "so": {"_count": 1}}, "and": {"_count": 3, "it": {"_count": 1}, "itll": {"_count": 1}, "precious": {"_count": 1}}, "weapon": {"_count": 1, "his": {"_count": 1}}, "is": {"_count": 1, "your": {"_count": 1}}, "points": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "job": {"_count": 1, "and": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "why": {"_count": 1, "had": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}, "news": {"_count": 2, "when": {"_count": 1}, "you": {"_count": 1}}, "one": {"_count": 1, "he": {"_count": 1}}, "memory": {"_count": 1, "of": {"_count": 1}}, "we": {"_count": 2, "will": {"_count": 1}, "need": {"_count": 1}}, "matters": {"_count": 1, "to": {"_count": 1}}, "Well": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "toes": {"_count": 1, "": {"_count": 1}}, "historical": {"_count": 1, "artifact": {"_count": 1}}, "source": {"_count": 1, "close": {"_count": 1}}, "Harry": {"_count": 3, "could": {"_count": 1}, "went": {"_count": 1}, "": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}}, "telephone": {"_count": 40, "calls": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 4, "had": {"_count": 1}, "would": {"_count": 1}, "in": {"_count": 1}, "trying": {"_count": 1}}, "rang": {"_count": 1, "and": {"_count": 1}}, "looking": {"_count": 1, "both": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "booth": {"_count": 1, "by": {"_count": 1}}, "number": {"_count": 1, "he": {"_count": 1}}, "last": {"_count": 1, "summer": {"_count": 1}}, "call": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "booths": {"_count": 1, "and": {"_count": 1}}, "hot": {"_count": 1, "line": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "box": {"_count": 15, "in": {"_count": 1}, "which": {"_count": 1}, "door": {"_count": 1}, "not": {"_count": 1}, "shuddered": {"_count": 2}, "until": {"_count": 1}, "made": {"_count": 1}, "sprang": {"_count": 1}, "rang": {"_count": 1}, "both": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "burst": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "apparatus": {"_count": 1, "which": {"_count": 1}}, "lift": {"_count": 1, "at": {"_count": 1}}, "tomorrow": {"_count": 1, "night": {"_count": 1}}}, "calls": {"_count": 10, "and": {"_count": 1, "shouted": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "Ron": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "Hagrid": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 1, "question": {"_count": 1}}, "in": {"_count": 1, "our": {"_count": 1}}, "himself": {"_count": 1, "Lord": {"_count": 1}}}, "shouted": {"_count": 389, "a": {"_count": 9, "bit": {"_count": 1}, "particularly": {"_count": 1}, "great": {"_count": 1}, "wildlooking": {"_count": 1}, "voice": {"_count": 1}, "scarletrobed": {"_count": 1}, "lot": {"_count": 1}, "girl": {"_count": 1}, "masked": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "it": {"_count": 1}}, "at": {"_count": 28, "Uncle": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 4}, "Ron": {"_count": 1}, "Lupin": {"_count": 1}, "his": {"_count": 2}, "you": {"_count": 1}, "it": {"_count": 2}, "Professor": {"_count": 1}, "during": {"_count": 1}, "Firenze": {"_count": 1}, "or": {"_count": 1}, "James": {"_count": 1}, "her": {"_count": 3}, "me": {"_count": 2}, "him": {"_count": 1}, "once": {"_count": 1}, "Hermione": {"_count": 1}, "Crabbe": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "": {"_count": 59, ".": {"_count": 58}, "?": {"_count": 1}}, "Theres": {"_count": 1, "another": {"_count": 1}}, "Hagrid": {"_count": 5, "who": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 3}}, "the": {"_count": 11, "hat": {"_count": 4}, "Burrow": {"_count": 1}, "gray": {"_count": 1}, "wizard": {"_count": 2}, "password": {"_count": 1}, "brutalfaced": {"_count": 1}, "first": {"_count": 1}}, "out": {"_count": 5, "the": {"_count": 2}, "asking": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "GRYFFINDOR": {"_count": 2, "Neville": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 3, "Neville": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}}, "Hermione": {"_count": 7, "Granger": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "real": {"_count": 1}}, "and": {"_count": 16, "he": {"_count": 6}, "ignoring": {"_count": 1}, "before": {"_count": 1}, "they": {"_count": 1}, "toffees": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "given": {"_count": 1}, "though": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 1}}, "waving": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "Ron": {"_count": 17, "thumping": {"_count": 1}, "": {"_count": 5}, "through": {"_count": 1}, "upending": {"_count": 1}, "who": {"_count": 1}, "revolving": {"_count": 1}, "raising": {"_count": 1}, "standing": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 1}, "after": {"_count": 1}, "again": {"_count": 1}}, "something": {"_count": 1, "about": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "herself": {"_count": 1, "hoarse": {"_count": 1}}, "Mrs": {"_count": 7, "Weasley": {"_count": 7}}, "Tuck": {"_count": 1, "your": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "It": {"_count": 1, "cant": {"_count": 1}}, "making": {"_count": 1, "Ron": {"_count": 1}}, "throwing": {"_count": 1, "his": {"_count": 1}}, "seizing": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 10, "jowls": {"_count": 1}, "voice": {"_count": 2}, "eyes": {"_count": 3}, "wand": {"_count": 2}, "name": {"_count": 1}, "hands": {"_count": 1}}, "Filch": {"_count": 1, "a": {"_count": 1}}, "Sir": {"_count": 1, "Patricks": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "Lockhart": {"_count": 2, "": {"_count": 2}}, "Rictusempral": {"_count": 1, "A": {"_count": 1}}, "in": {"_count": 4, "alarm": {"_count": 1}, "unison": {"_count": 1}, "her": {"_count": 1}, "anger": {"_count": 1}}, "Harrys": {"_count": 1, "feet": {"_count": 1}}, "stupidly": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 1, "quiet": {"_count": 1}}, "emerging": {"_count": 1, "with": {"_count": 1}}, "ExpelliarmusV": {"_count": 3, "and": {"_count": 1}, "Voldemort": {"_count": 1}, "Snape": {"_count": 1}}, "aloud": {"_count": 1, "and": {"_count": 1}}, "You": {"_count": 1, "shall": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "Blimey": {"_count": 1, "": {"_count": 1}}, "gleefully": {"_count": 1, "": {"_count": 1}}, "racing": {"_count": 1, "out": {"_count": 1}}, "Come": {"_count": 1, "follow": {"_count": 1}}, "Parvati": {"_count": 1, "": {"_count": 1}}, "Seamus": {"_count": 3, "": {"_count": 2}, "who": {"_count": 1}}, "Lupin": {"_count": 2, "": {"_count": 2}}, "Professor": {"_count": 7, "Lupin": {"_count": 1}, "McGonagall": {"_count": 5}, "Tofty": {"_count": 1}}, "Malfoy": {"_count": 2, "who": {"_count": 1}, "staying": {"_count": 1}}, "Percy": {"_count": 2, "": {"_count": 1}, "come": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "looking": {"_count": 1, "suddenly": {"_count": 1}}, "shrilly": {"_count": 1, "": {"_count": 1}}, "running": {"_count": 2, "forward": {"_count": 1}, "down": {"_count": 1}}, "together": {"_count": 2, "": {"_count": 1}, "their": {"_count": 1}}, "Its": {"_count": 2, "from": {"_count": 1}, "the": {"_count": 1}}, "Bagman": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 15, "": {"_count": 8}, "staring": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 3}, "who": {"_count": 1}, "his": {"_count": 1}}, "who": {"_count": 1, "like": {"_count": 1}}, "back": {"_count": 3, "over": {"_count": 1}, "redfaced": {"_count": 1}, "as": {"_count": 1}}, "over": {"_count": 6, "all": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}}, "Mr": {"_count": 5, "Crouch": {"_count": 4}, "Weasley": {"_count": 1}}, "words": {"_count": 1, "an": {"_count": 1}}, "\u2018Boo": {"_count": 1, "behind": {"_count": 1}}, "as": {"_count": 5, "the": {"_count": 2}, "Ron": {"_count": 1}, "she": {"_count": 1}, "more": {"_count": 1}}, "stamping": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "angrily": {"_count": 1, "as": {"_count": 1}}, "indignantly": {"_count": 1, "from": {"_count": 1}}, "pounding": {"_count": 2, "on": {"_count": 2}}, "except": {"_count": 1, "that": {"_count": 1}}, "Karkaroff": {"_count": 1, "straining": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "advancing": {"_count": 1, "in": {"_count": 1}}, "Expelliarmus": {"_count": 2, "": {"_count": 1}, "Harrys": {"_count": 1}}, "Stupefyl": {"_count": 1, "just": {"_count": 1}}, "it": {"_count": 2, "screeched": {"_count": 1}, "pain": {"_count": 1}}, "Fudge": {"_count": 3, "now": {"_count": 1}, "again": {"_count": 1}, "already": {"_count": 1}}, "after": {"_count": 4, "her": {"_count": 4}}, "Moody": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "MadEye": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 1, "angrily": {"_count": 1}}, "banging": {"_count": 1, "his": {"_count": 1}}, "GR": {"_count": 1, "YFFIND": {"_count": 1}}, "so": {"_count": 1, "loudly": {"_count": 1}}, "Angelina": {"_count": 1, "": {"_count": 1}}, "Cedric": {"_count": 1, "gave": {"_count": 1}}, "Fred": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "George": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "disconnected": {"_count": 1, "words": {"_count": 1}}, "Kingsley": {"_count": 1, "also": {"_count": 1}}, "Umbridge": {"_count": 4, "angrily": {"_count": 2}, "": {"_count": 1}, "disappointment": {"_count": 1}}, "rounding": {"_count": 1, "on": {"_count": 1}}, "Sirius": {"_count": 2, "causing": {"_count": 1}, "forcing": {"_count": 1}}, "tiny": {"_count": 1, "Professor": {"_count": 1}}, "They": {"_count": 2, "came": {"_count": 1}, "can": {"_count": 1}}, "Protego": {"_count": 1, "before": {"_count": 1}}, "STUPEFY": {"_count": 2, "A": {"_count": 1}, "": {"_count": 1}}, "STUP": {"_count": 1, "STUPEFY": {"_count": 1}}, "Neville": {"_count": 1, "wheeling": {"_count": 1}}, "again": {"_count": 3, "pointing": {"_count": 1}, "HERMIONE": {"_count": 1}, "but": {"_count": 1}}, "Someone": {"_count": 1, "Stun": {"_count": 1}}, "Wingardium": {"_count": 2, "Levioscd": {"_count": 1}, "Leviosal": {"_count": 1}}, "desperately": {"_count": 1, "as": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "more": {"_count": 1}}, "Who": {"_count": 1, "the": {"_count": 1}}, "Will": {"_count": 1, "you": {"_count": 1}}, "himself": {"_count": 1, "hoarse": {"_count": 1}}, "her": {"_count": 1, "down": {"_count": 1}}, "Ginny": {"_count": 3, "drawing": {"_count": 1}, "who": {"_count": 1}, "pointing": {"_count": 1}}, "Peakes": {"_count": 1, "who": {"_count": 1}}, "congratulations": {"_count": 1, "at": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "Hogwarts": {"_count": 1, "": {"_count": 1}}, "Dishonored": {"_count": 1, "us": {"_count": 1}}, "Quiet": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 1, "Rosmerta": {"_count": 1}}, "jabbing": {"_count": 1, "the": {"_count": 1}}, "Theyve": {"_count": 2, "blocked": {"_count": 1}, "crashed": {"_count": 1}}, "Run": {"_count": 1, "Draco": {"_count": 1}}, "Snape": {"_count": 3, "": {"_count": 3}}, "\u2018Its": {"_count": 1, "over": {"_count": 1}}, "down": {"_count": 1, "Monsieur": {"_count": 1}}, "Scrimgeour": {"_count": 1, "standing": {"_count": 1}}, "apologies": {"_count": 1, "to": {"_count": 1}}, "goaded": {"_count": 1, "past": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "excitedly": {"_count": 1, "from": {"_count": 1}}, "Lucius": {"_count": 2, "striding": {"_count": 1}, "Malfoy": {"_count": 1}}, "We": {"_count": 1, "know": {"_count": 1}}, "with": {"_count": 1, "delight": {"_count": 1}}, "Amycus": {"_count": 1, "": {"_count": 1}}, "Crucio": {"_count": 1, "The": {"_count": 1}}, "McGonagall": {"_count": 1, "": {"_count": 1}}, "angry": {"_count": 1, "tears": {"_count": 1}}, "pulling": {"_count": 1, "a": {"_count": 1}}, "And": {"_count": 1, "what": {"_count": 1}}, "Aberforth": {"_count": 1, "havent": {"_count": 1}}, "DescendoV": {"_count": 1, "The": {"_count": 1}}, "Glisseo": {"_count": 1, "The": {"_count": 1}}, "Rowle": {"_count": 1, "and": {"_count": 1}}, "now": {"_count": 1, "they": {"_count": 1}}}, "bit": {"_count": 543, "more": {"_count": 39, "": {"_count": 3}, "careful": {"_count": 2}, "interesting": {"_count": 1}, "relaxed": {"_count": 1}, "time": {"_count": 2}, "panted": {"_count": 1}, "once": {"_count": 1}, "respect": {"_count": 1}, "than": {"_count": 2}, "magic": {"_count": 1}, "hardwearing": {"_count": 1}, "fame": {"_count": 1}, "active": {"_count": 2}, "impressive": {"_count": 1}, "about": {"_count": 1}, "attention": {"_count": 1}, "trustin": {"_count": 1}, "sympathetic": {"_count": 1}, "cloud": {"_count": 1}, "talent": {"_count": 1}, "comfortable": {"_count": 1}, "chili": {"_count": 1}, "effort": {"_count": 1}, "carefully": {"_count": 1}, "hopeful": {"_count": 1}, "cheerful": {"_count": 1}, "dear": {"_count": 1}, "muscle": {"_count": 1}, "to": {"_count": 2}, "notice": {"_count": 1}, "myself": {"_count": 1}, "fear": {"_count": 1}}, "of": {"_count": 208, "chocolate": {"_count": 2}, "floor": {"_count": 1}, "sausage": {"_count": 2}, "a": {"_count": 44}, "everything": {"_count": 1}, "toast": {"_count": 6}, "wood": {"_count": 1}, "cheating": {"_count": 1}, "bad": {"_count": 1}, "light": {"_count": 2}, "hocuspocus": {"_count": 2}, "poking": {"_count": 1}, "fried": {"_count": 1}, "treacle": {"_count": 1}, "mud": {"_count": 2}, "an": {"_count": 9}, "whoever": {"_count": 2}, "slime": {"_count": 1}, "luck": {"_count": 2}, "the": {"_count": 6}, "this": {"_count": 1}, "himself": {"_count": 1}, "parchment": {"_count": 5}, "tea": {"_count": 1}, "formation": {"_count": 1}, "rain": {"_count": 2}, "festive": {"_count": 1}, "old": {"_count": 2}, "Cockroach": {"_count": 1}, "him": {"_count": 2}, "butterbeer": {"_count": 1}, "background": {"_count": 1}, "bedtime": {"_count": 1}, "lastminute": {"_count": 1}, "longawaited": {"_count": 1}, "Peter": {"_count": 1}, "filth": {"_count": 1}, "rock": {"_count": 1}, "it": {"_count": 4}, "paperwork": {"_count": 1}, "grass": {"_count": 1}, "fun": {"_count": 1}, "what": {"_count": 2}, "glory": {"_count": 1}, "cleaning": {"_count": 2}, "risk": {"_count": 1}, "each": {"_count": 1}, "weight": {"_count": 1}, "magic": {"_count": 4}, "sanity": {"_count": 1}, "color": {"_count": 1}, "Transfiguration": {"_count": 1}, "water": {"_count": 1}, "practice": {"_count": 1}, "term": {"_count": 1}, "digging": {"_count": 1}, "extra": {"_count": 1}, "me": {"_count": 2}, "power": {"_count": 1}, "determination": {"_count": 1}, "trouble": {"_count": 3}, "Mundungus": {"_count": 1}, "use": {"_count": 1}, "time": {"_count": 2}, "work": {"_count": 2}, "gold": {"_count": 1}, "moral": {"_count": 1}, "attention": {"_count": 2}, "mold": {"_count": 1}, "rummaging": {"_count": 1}, "interHouse": {"_count": 1}, "Nosebleed": {"_count": 1}, "market": {"_count": 1}, "training": {"_count": 1}, "advice": {"_count": 1}, "anti": {"_count": 1}, "flying": {"_count": 1}, "wall": {"_count": 1}, "interest": {"_count": 1}, "English": {"_count": 1}, "kissing": {"_count": 1}, "joke": {"_count": 1}, "crumble": {"_count": 1}, "mayhem": {"_count": 1}, "scrap": {"_count": 1}, "egg": {"_count": 1}, "uproar": {"_count": 1}, "dirt": {"_count": 1}, "post": {"_count": 1}, "strength": {"_count": 1}, "bubotuber": {"_count": 1}, "adventure": {"_count": 1}, "glamour": {"_count": 1}, "spin": {"_count": 1}, "that": {"_count": 1}, "distance": {"_count": 1}, "snogging": {"_count": 1}, "flesh": {"_count": 1}, "his": {"_count": 1}, "restraint": {"_count": 1}, "Voldemorts": {"_count": 1}, "mirror": {"_count": 1}, "your": {"_count": 2}, "skullduggery": {"_count": 1}, "research": {"_count": 1}, "soul": {"_count": 4}, "affection": {"_count": 1}, "scum": {"_count": 1}, "company": {"_count": 1}, "Riddle": {"_count": 1}, "riverbank": {"_count": 1}, "both": {"_count": 1}, "regret": {"_count": 1}, "her": {"_count": 1}, "cuttlebone": {"_count": 1}}, "big": {"_count": 1, "for": {"_count": 1}}, "far": {"_count": 1, "": {"_count": 1}}, "": {"_count": 32, ".": {"_count": 30}, "?": {"_count": 2}}, "o": {"_count": 10, "his": {"_count": 1}, "yer": {"_count": 1}, "trouble": {"_count": 2}, "music": {"_count": 1}, "help": {"_count": 1}, "grass": {"_count": 1}, "magic": {"_count": 1}, "o": {"_count": 1}, "tinkerin": {"_count": 1}}, "ter": {"_count": 1, "follow": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "would": {"_count": 1, "yeh": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "arrogant": {"_count": 1}, "far": {"_count": 1}}, "sick": {"_count": 1, "so": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "creepy": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "Mr": {"_count": 1}}, "depressing": {"_count": 1, "after": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "lighter": {"_count": 1, "said": {"_count": 1}}, "politer": {"_count": 1, "youll": {"_count": 1}}, "short": {"_count": 2, "for": {"_count": 1}, "with": {"_count": 1}}, "queasy": {"_count": 1, "that": {"_count": 1}}, "mad": {"_count": 2, "": {"_count": 1}, "yes": {"_count": 1}}, "too": {"_count": 4, "much": {"_count": 1}, "often": {"_count": 1}, "clean": {"_count": 1}, "outspoken": {"_count": 1}}, "like": {"_count": 9, "a": {"_count": 4}, "an": {"_count": 2}, "Percy": {"_count": 1}, "our": {"_count": 1}, "you": {"_count": 1}}, "uncomfortable": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 4, "lip": {"_count": 3}, "white": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 2}, "painfully": {"_count": 1}}, "quicker": {"_count": 2, "at": {"_count": 2}}, "pink": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "outta": {"_count": 1, "date": {"_count": 1}}, "me": {"_count": 6, "": {"_count": 4}, "he": {"_count": 1}, "Ive": {"_count": 1}}, "late": {"_count": 4, "arriving": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "Ill": {"_count": 1, "take": {"_count": 1}}, "said": {"_count": 5, "Hermione": {"_count": 1}, "Harry": {"_count": 2}, "Sirius": {"_count": 1}, "Hagrid": {"_count": 1}}, "nearer": {"_count": 2, "home": {"_count": 1}, "No": {"_count": 1}}, "odd": {"_count": 7, "said": {"_count": 2}, "isnt": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "toward": {"_count": 1}, "Ive": {"_count": 1}}, "about": {"_count": 10, "the": {"_count": 2}, "dueling": {"_count": 1}, "not": {"_count": 1}, "Harry": {"_count": 1}, "how": {"_count": 1}, "who": {"_count": 1}, "you": {"_count": 1}, "Percy": {"_count": 1}, "him": {"_count": 1}}, "later": {"_count": 1, "than": {"_count": 1}}, "slow": {"_count": 1, "": {"_count": 1}}, "small": {"_count": 1, "said": {"_count": 1}}, "awkward": {"_count": 1, "": {"_count": 1}}, "tired": {"_count": 2, "he": {"_count": 1}, "of": {"_count": 1}}, "unfair": {"_count": 1, "": {"_count": 1}}, "sorry": {"_count": 1, "for": {"_count": 1}}, "dodgy": {"_count": 3, "to": {"_count": 1}, "isnt": {"_count": 1}, "": {"_count": 1}}, "dim": {"_count": 2, "the": {"_count": 1}, "but": {"_count": 1}}, "wider": {"_count": 2, "": {"_count": 2}}, "was": {"_count": 2, "Hermione": {"_count": 1}, "Crack": {"_count": 1}}, "then": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "offcolor": {"_count": 2, "ever": {"_count": 1}, "he": {"_count": 1}}, "battered": {"_count": 1, "": {"_count": 1}}, "bowlegged": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 7, "explore": {"_count": 1}, "the": {"_count": 1}, "scratched": {"_count": 1}, "Harry": {"_count": 1}, "put": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "full": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "better": {"_count": 4, "": {"_count": 2}, "Ive": {"_count": 1}, "this": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "assured": {"_count": 1}}, "look": {"_count": 1, "We": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 5, "lip": {"_count": 4}, "which": {"_count": 1}}, "shirty": {"_count": 1, "with": {"_count": 1}}, "Goyle": {"_count": 1, "for": {"_count": 1}}, "slimmer": {"_count": 1, "than": {"_count": 1}}, "Ron": {"_count": 2, "wants": {"_count": 1}, "made": {"_count": 1}}, "stupid": {"_count": 2, "abou": {"_count": 1}, "of": {"_count": 1}}, "useless": {"_count": 1, "": {"_count": 1}}, "bright": {"_count": 1, "that": {"_count": 1}}, "depressed": {"_count": 1, "Hagrid": {"_count": 1}}, "cleverer": {"_count": 1, "Id": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "rich": {"_count": 1, "of": {"_count": 1}}, "dangerous": {"_count": 1, "said": {"_count": 1}}, "sooner": {"_count": 1, "than": {"_count": 1}}, "cramped": {"_count": 1, "he": {"_count": 1}}, "young": {"_count": 1, "to": {"_count": 1}}, "disorientated": {"_count": 1, "for": {"_count": 1}}, "long": {"_count": 1, "dear": {"_count": 1}}, "scared": {"_count": 1, "of": {"_count": 1}}, "bigger": {"_count": 1, "for": {"_count": 1}}, "obvious": {"_count": 2, "youve": {"_count": 1}, "Well": {"_count": 1}}, "much": {"_count": 1, "he": {"_count": 1}}, "no": {"_count": 1, "ones": {"_count": 1}}, "cold": {"_count": 1, "isnt": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 2, "play": {"_count": 1}, "whispered": {"_count": 1}}, "to": {"_count": 2, "fit": {"_count": 1}, "Ron": {"_count": 1}}, "doubtful": {"_count": 1, "": {"_count": 1}}, "evil": {"_count": 1, "said": {"_count": 1}}, "funny": {"_count": 4, "isnt": {"_count": 1}, "I": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}}, "yeh": {"_count": 1, "can": {"_count": 1}}, "grim": {"_count": 1, "though": {"_count": 1}}, "higher": {"_count": 2, "over": {"_count": 1}, "up": {"_count": 1}}, "Fleur": {"_count": 1, "swooped": {"_count": 1}}, "chilly": {"_count": 1, "": {"_count": 1}}, "hasnt": {"_count": 1, "she": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "peaky": {"_count": 2, "": {"_count": 2}}, "just": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 2, "dinner": {"_count": 1}, "Dumbledore": {"_count": 1}}, "strange": {"_count": 1, "its": {"_count": 1}}, "early": {"_count": 1, "but": {"_count": 1}}, "harsh": {"_count": 2, "Hermione": {"_count": 1}, "said": {"_count": 1}}, "guilty": {"_count": 1, "himself": {"_count": 1}}, "by": {"_count": 1, "making": {"_count": 1}}, "off": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "in": {"_count": 1, "our": {"_count": 1}}, "paler": {"_count": 1, "": {"_count": 1}}, "dull": {"_count": 1, "but": {"_count": 1}}, "hard": {"_count": 2, "on": {"_count": 2}}, "worse": {"_count": 1, "tonight": {"_count": 1}}, "earlier": {"_count": 1, "with": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "exposed": {"_count": 1}}, "nervous": {"_count": 1, "said": {"_count": 1}}, "back": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 1}, "his": {"_count": 1}}, "happier": {"_count": 1, "": {"_count": 1}}, "disappointed": {"_count": 1, "but": {"_count": 1}}, "harder": {"_count": 1, "in": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "tactless": {"_count": 1, "": {"_count": 1}}, "confused": {"_count": 1, "": {"_count": 1}}, "conceited": {"_count": 1, "mate": {"_count": 1}}, "carried": {"_count": 2, "away": {"_count": 2}}, "he": {"_count": 1, "mumbled": {"_count": 1}}, "farther": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "further": {"_count": 2, "through": {"_count": 1}, "in": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "An": {"_count": 1, "arrow": {"_count": 1}}, "wearing": {"_count": 1, "": {"_count": 1}}, "fast": {"_count": 1, "arent": {"_count": 1}}, "tame": {"_count": 1, "after": {"_count": 1}}, "senile": {"_count": 1, "": {"_count": 1}}, "scary": {"_count": 1, "isnt": {"_count": 1}}, "restive": {"_count": 1, "": {"_count": 1}}, "upset": {"_count": 1, "said": {"_count": 1}}, "unkind": {"_count": 1, "": {"_count": 1}}, "lonely": {"_count": 1, "without": {"_count": 1}}, "Luna": {"_count": 1, "er": {"_count": 1}}, "longer": {"_count": 1, "than": {"_count": 1}}, "months": {"_count": 1, "time": {"_count": 1}}, "Slughorn": {"_count": 1, "ran": {"_count": 1}}, "overworked": {"_count": 1, "thas": {"_count": 1}}, "obsessed": {"_count": 1, "with": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "rocky": {"_count": 1, "for": {"_count": 1}}, "around": {"_count": 1, "you": {"_count": 1}}, "thats": {"_count": 1, "still": {"_count": 1}}, "roomy": {"_count": 1, "Ive": {"_count": 1}}, "dented": {"_count": 1, "on": {"_count": 1}}, "exposed": {"_count": 1, "": {"_count": 1}}, "frustrated": {"_count": 1, "shut": {"_count": 1}}, "risky": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "too": {"_count": 1}}, "pathetic": {"_count": 2, "to": {"_count": 1}, "but": {"_count": 1}}, "hacked": {"_count": 1, "off": {"_count": 1}}, "spookier": {"_count": 1, "if": {"_count": 1}}, "closer": {"_count": 1, "youll": {"_count": 1}}, "shorter": {"_count": 1, "try": {"_count": 1}}, "weird": {"_count": 1, "hanging": {"_count": 1}}, "if": {"_count": 1, "were": {"_count": 1}}, "annoyed": {"_count": 1, "said": {"_count": 1}}, "smarter": {"_count": 1, "to": {"_count": 1}}, "didnt": {"_count": 1, "work": {"_count": 1}}}, "more": {"_count": 1868, "": {"_count": 118, ".": {"_count": 107}, "!": {"_count": 6}, "?": {"_count": 5}}, "showers": {"_count": 1, "of": {"_count": 1}}, "careful": {"_count": 4, "but": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "hes": {"_count": 1}}, "haircuts": {"_count": 1, "than": {"_count": 1}}, "presents": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 222, "his": {"_count": 7}, "ever": {"_count": 6}, "treasure": {"_count": 1}, "to": {"_count": 6}, "a": {"_count": 36}, "Dudley": {"_count": 1}, "anything": {"_count": 9}, "crack": {"_count": 1}, "ten": {"_count": 1}, "you": {"_count": 7}, "my": {"_count": 1}, "we": {"_count": 2}, "seven": {"_count": 1}, "I": {"_count": 6}, "our": {"_count": 2}, "any": {"_count": 5}, "the": {"_count": 3}, "Professor": {"_count": 1}, "that": {"_count": 5}, "air": {"_count": 1}, "Harry": {"_count": 2}, "made": {"_count": 1}, "walls": {"_count": 1}, "all": {"_count": 3}, "willing": {"_count": 2}, "he": {"_count": 14}, "understand": {"_count": 1}, "fifty": {"_count": 4}, "one": {"_count": 6}, "three": {"_count": 4}, "an": {"_count": 6}, "cowardice": {"_count": 1}, "being": {"_count": 1}, "stare": {"_count": 1}, "lucky": {"_count": 1}, "hed": {"_count": 1}, "kid": {"_count": 1}, "dodging": {"_count": 1}, "feet": {"_count": 1}, "capable": {"_count": 1}, "nineteen": {"_count": 1}, "detention": {"_count": 1}, "likely": {"_count": 1}, "Rosier": {"_count": 1}, "aggravating": {"_count": 1}, "usual": {"_count": 2}, "they": {"_count": 4}, "some": {"_count": 1}, "once": {"_count": 2}, "vapor": {"_count": 1}, "half": {"_count": 2}, "either": {"_count": 1}, "sufficient": {"_count": 1}, "House": {"_count": 1}, "Snape": {"_count": 1}, "congratulations": {"_count": 1}, "continued": {"_count": 1}, "four": {"_count": 1}, "detentions": {"_count": 1}, "two": {"_count": 2}, "she": {"_count": 1}, "twenty": {"_count": 2}, "five": {"_count": 2}, "able": {"_count": 1}, "welcome": {"_count": 1}, "gladly": {"_count": 1}, "her": {"_count": 1}, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "GalleonsV": {"_count": 1}, "as": {"_count": 1}, "fine": {"_count": 1}, "register": {"_count": 1}, "exchange": {"_count": 1}, "six": {"_count": 2}, "satisfy": {"_count": 1}, "fair": {"_count": 1}, "tear": {"_count": 1}, "mine": {"_count": 1}, "there": {"_count": 1}, "harboring": {"_count": 1}, "up": {"_count": 1}, "shock": {"_count": 1}, "polite": {"_count": 1}, "stir": {"_count": 1}, "Ginny": {"_count": 1}, "great": {"_count": 1}, "theft": {"_count": 1}, "water": {"_count": 1}, "wait": {"_count": 1}, "your": {"_count": 1}, "teach": {"_count": 1}, "yell": {"_count": 1}, "blood": {"_count": 1}, "nine": {"_count": 1}, "ghosts": {"_count": 1}, "disembodied": {"_count": 1}}, "and": {"_count": 55, "more": {"_count": 26}, "Harry": {"_count": 4}, "most": {"_count": 1}, "said": {"_count": 1}, "then": {"_count": 1}, "bowed": {"_count": 1}, "listened": {"_count": 1}, "Aunt": {"_count": 1}, "for": {"_count": 1}, "we": {"_count": 1}, "goggling": {"_count": 1}, "went": {"_count": 1}, "saw": {"_count": 1}, "shouted": {"_count": 1}, "his": {"_count": 1}, "ropes": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "set": {"_count": 1}, "gazing": {"_count": 1}, "this": {"_count": 1}, "raising": {"_count": 1}, "there": {"_count": 2}, "frowned": {"_count": 1}, "he": {"_count": 1}, "reaching": {"_count": 1}}, "ferociously": {"_count": 1, "as": {"_count": 1}}, "clearly": {"_count": 8, "than": {"_count": 5}, "": {"_count": 2}, "the": {"_count": 1}}, "word": {"_count": 3, "": {"_count": 1}, "Ron": {"_count": 1}, "about": {"_count": 1}}, "famous": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "an": {"_count": 1, "more": {"_count": 1}}, "powerful": {"_count": 15, "whyd": {"_count": 1}, "than": {"_count": 7}, "wizard": {"_count": 1}, "ways": {"_count": 1}, "and": {"_count": 1}, "wand": {"_count": 2}, "your": {"_count": 1}, "bang": {"_count": 1}}, "magic": {"_count": 8, "": {"_count": 1}, "in": {"_count": 1}, "couldnt": {"_count": 1}, "there": {"_count": 1}, "than": {"_count": 2}, "stay": {"_count": 1}, "but": {"_count": 1}}, "eyes": {"_count": 2, "": {"_count": 1}, "taking": {"_count": 1}}, "goblins": {"_count": 2, "were": {"_count": 2}}, "marble": {"_count": 1, "was": {"_count": 1}}, "slowly": {"_count": 8, "": {"_count": 3}, "the": {"_count": 1}, "ears": {"_count": 1}, "now": {"_count": 2}, "still": {"_count": 1}}, "money": {"_count": 5, "than": {"_count": 3}, "Dont": {"_count": 1}, "for": {"_count": 1}}, "stupid": {"_count": 1, "by": {"_count": 1}}, "interesting": {"_count": 9, "": {"_count": 1}, "but": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 2}, "they": {"_count": 1}, "pastime": {"_count": 1}, "clientele": {"_count": 1}, "than": {"_count": 1}}, "study": {"_count": 2, "before": {"_count": 1}, "even": {"_count": 1}}, "power": {"_count": 1, "and": {"_count": 1}}, "wands": {"_count": 1, "Mr": {"_count": 1}}, "quickly": {"_count": 8, "": {"_count": 3}, "than": {"_count": 1}, "still": {"_count": 1}, "now": {"_count": 2}, "but": {"_count": 1}}, "owl": {"_count": 1, "telling": {"_count": 1}}, "interested": {"_count": 7, "in": {"_count": 7}}, "comfortable": {"_count": 6, "saying": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "shape": {"_count": 2}}, "interest": {"_count": 2, "than": {"_count": 1}, "in": {"_count": 1}}, "children": {"_count": 1, "than": {"_count": 1}}, "bravely": {"_count": 1, "than": {"_count": 1}}, "rats": {"_count": 1, "lurking": {"_count": 1}}, "firs": {"_count": 1, "years": {"_count": 1}}, "nervous": {"_count": 3, "never": {"_count": 1}, "whatever": {"_count": 1}, "looking": {"_count": 1}}, "words": {"_count": 3, "now": {"_count": 1}, "with": {"_count": 1}, "by": {"_count": 1}}, "staircases": {"_count": 2, "yawning": {"_count": 1}, "toward": {"_count": 1}}, "to": {"_count": 28, "magic": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 3}, "him": {"_count": 1}, "eat": {"_count": 1}, "himself": {"_count": 5}, "add": {"_count": 1}, "say": {"_count": 3}, "it": {"_count": 2}, "this": {"_count": 2}, "be": {"_count": 1}, "draw": {"_count": 1}, "my": {"_count": 1}, "Lupin": {"_count": 1}, "go": {"_count": 1}, "herself": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}}, "like": {"_count": 35, "home": {"_count": 1}, "a": {"_count": 15}, "Goyle": {"_count": 1}, "": {"_count": 3}, "an": {"_count": 1}, "the": {"_count": 2}, "Professor": {"_count": 1}, "it": {"_count": 1}, "cheating": {"_count": 1}, "said": {"_count": 3}, "woolly": {"_count": 1}, "Moaning": {"_count": 1}, "driedup": {"_count": 1}, "her": {"_count": 1}, "fear": {"_count": 1}, "his": {"_count": 1}}, "luck": {"_count": 1, "": {"_count": 1}}, "awkward": {"_count": 2, "at": {"_count": 1}, "than": {"_count": 1}}, "swooped": {"_count": 1, "over": {"_count": 1}}, "relaxed": {"_count": 2, "about": {"_count": 1}, "than": {"_count": 1}}, "points": {"_count": 5, "from": {"_count": 3}, "can": {"_count": 1}, "on": {"_count": 1}}, "unpleasant": {"_count": 1, "than": {"_count": 1}}, "of": {"_count": 41, "an": {"_count": 3}, "a": {"_count": 7}, "this": {"_count": 3}, "poor": {"_count": 1}, "Lord": {"_count": 1}, "them": {"_count": 9}, "it": {"_count": 1}, "us": {"_count": 1}, "those": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}, "you": {"_count": 2}, "the": {"_count": 4}, "Siriuss": {"_count": 1}, "its": {"_count": 1}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "what": {"_count": 1}}, "wine": {"_count": 2, "finally": {"_count": 1}, "and": {"_count": 1}}, "furiously": {"_count": 2, "than": {"_count": 2}}, "time": {"_count": 21, "": {"_count": 7}, "Snape": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 2}, "everyone": {"_count": 1}, "off": {"_count": 1}, "I": {"_count": 1}, "at": {"_count": 1}, "was": {"_count": 1}, "please": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}, "noise": {"_count": 2, "than": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 8, "less": {"_count": 8}}, "thing": {"_count": 2, "however": {"_count": 1}, "": {"_count": 1}}, "trouble": {"_count": 9, "he": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "Minerva": {"_count": 1}, "than": {"_count": 4}, "for": {"_count": 1}}, "on": {"_count": 4, "her": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}}, "dragon": {"_count": 1, "Malfoy": {"_count": 1}}, "feeble": {"_count": 1, "than": {"_count": 1}}, "likely": {"_count": 10, "to": {"_count": 4}, "that": {"_count": 3}, "he": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}}, "sense": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "if": {"_count": 1}}, "ashamed": {"_count": 1, "of": {"_count": 1}}, "students": {"_count": 3, "get": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}}, "galloping": {"_count": 1, "from": {"_count": 1}}, "what": {"_count": 2, "Hagrid": {"_count": 1}, "I": {"_count": 1}}, "studying": {"_count": 1, "Ron": {"_count": 1}}, "cheerful": {"_count": 10, "Harry": {"_count": 3}, "went": {"_count": 1}, "than": {"_count": 1}, "": {"_count": 3}, "as": {"_count": 1}, "by": {"_count": 1}}, "important": {"_count": 26, "than": {"_count": 13}, "things": {"_count": 6}, "the": {"_count": 1}, "work": {"_count": 1}, "is": {"_count": 1}, "idea": {"_count": 1}, "matters": {"_count": 1}, "": {"_count": 2}}, "nighttime": {"_count": 2, "wanderings": {"_count": 1}, "stroll": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "rules": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 2, "strained": {"_count": 1}, "talked": {"_count": 1}}, "brilliant": {"_count": 1, "ideas": {"_count": 1}}, "strange": {"_count": 1, "and": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}, "stunned": {"_count": 1, "and": {"_count": 1}}, "bacon": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 11, "the": {"_count": 3}, "his": {"_count": 1}, "a": {"_count": 2}, "The": {"_count": 1}, "that": {"_count": 1}, "its": {"_count": 1}, "sympathy": {"_count": 1}, "front": {"_count": 1}}, "even": {"_count": 2, "than": {"_count": 1}, "more": {"_count": 1}}, "sound": {"_count": 1, "and": {"_count": 1}}, "panted": {"_count": 1, "Fred": {"_count": 1}}, "was": {"_count": 2, "said": {"_count": 1}, "needed": {"_count": 1}}, "flights": {"_count": 2, "until": {"_count": 1}, "of": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "raids": {"_count": 1, "said": {"_count": 1}}, "meddlesome": {"_count": 1, "": {"_count": 1}}, "coldly": {"_count": 3, "still": {"_count": 2}, "": {"_count": 1}}, "shelves": {"_count": 1, "over": {"_count": 1}}, "Dark": {"_count": 2, "witches": {"_count": 2}}, "nastily": {"_count": 1, "": {"_count": 1}}, "damage": {"_count": 3, "to": {"_count": 1}, "than": {"_count": 1}, "": {"_count": 1}}, "shocked": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "once": {"_count": 1, "youve": {"_count": 1}}, "exciting": {"_count": 3, "than": {"_count": 1}, "here": {"_count": 1}, "saw": {"_count": 1}}, "carefully": {"_count": 7, "I": {"_count": 1}, "": {"_count": 4}, "remember": {"_count": 1}, "said": {"_count": 1}}, "effectively": {"_count": 2, "than": {"_count": 2}}, "broadly": {"_count": 8, "": {"_count": 5}, "than": {"_count": 3}}, "slugs": {"_count": 2, "dribbled": {"_count": 1}, "hitting": {"_count": 1}}, "black": {"_count": 1, "candles": {"_count": 1}}, "selective": {"_count": 1, "about": {"_count": 1}}, "detective": {"_count": 1, "work": {"_count": 1}}, "dramatic": {"_count": 1, "bits": {"_count": 1}}, "heavily": {"_count": 4, "now": {"_count": 1}, "than": {"_count": 2}, "": {"_count": 1}}, "tears": {"_count": 2, "dripping": {"_count": 1}, "over": {"_count": 1}}, "Dobby": {"_count": 1, "froze": {"_count": 1}}, "ask": {"_count": 2, "no": {"_count": 1}, "for": {"_count": 1}}, "welcome": {"_count": 1, "": {"_count": 1}}, "closely": {"_count": 20, "at": {"_count": 4}, "to": {"_count": 1}, "still": {"_count": 1}, "": {"_count": 3}, "upon": {"_count": 1}, "around": {"_count": 1}, "I": {"_count": 1}, "than": {"_count": 1}, "the": {"_count": 1}, "over": {"_count": 1}, "against": {"_count": 1}, "and": {"_count": 2}, "into": {"_count": 1}, "with": {"_count": 1}}, "feathers": {"_count": 1, "fell": {"_count": 1}}, "lacewings": {"_count": 1, "to": {"_count": 1}}, "satisfactory": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "loudly": {"_count": 14, "with": {"_count": 1}, "than": {"_count": 6}, "": {"_count": 5}, "drowning": {"_count": 1}, "for": {"_count": 1}}, "respect": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "clueless": {"_count": 1, "than": {"_count": 1}}, "work": {"_count": 1, "for": {"_count": 1}}, "water": {"_count": 1, "which": {"_count": 1}}, "about": {"_count": 19, "Riddle": {"_count": 1}, "Entrancing": {"_count": 1}, "Hagrid": {"_count": 1}, "you": {"_count": 2}, "winning": {"_count": 1}, "the": {"_count": 3}, "trying": {"_count": 1}, "those": {"_count": 1}, "it": {"_count": 2}, "Defense": {"_count": 1}, "staff": {"_count": 1}, "Draco": {"_count": 1}, "Eileen": {"_count": 1}, "himself": {"_count": 1}, "what": {"_count": 1}}, "hopeful": {"_count": 2, "": {"_count": 2}}, "attacks": {"_count": 1, "since": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "lasting": {"_count": 1, "way": {"_count": 1}}, "days": {"_count": 2, "went": {"_count": 1}, "should": {"_count": 1}}, "difficult": {"_count": 17, "than": {"_count": 1}, "it": {"_count": 2}, "and": {"_count": 1}, "with": {"_count": 2}, "fiddly": {"_count": 1}, "to": {"_count": 2}, "vanishment": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "hiding": {"_count": 1}, "was": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "evening": {"_count": 1, "activities": {"_count": 1}}, "quietly": {"_count": 5, "still": {"_count": 1}, "": {"_count": 1}, "waspish": {"_count": 1}, "now": {"_count": 1}, "Kill": {"_count": 1}}, "said": {"_count": 8, "": {"_count": 1}, "Hermione": {"_count": 2}, "Professor": {"_count": 1}, "Harry": {"_count": 3}, "Dumbledore": {"_count": 1}}, "a": {"_count": 7, "precaution": {"_count": 1}, "Death": {"_count": 1}, "sharp": {"_count": 1}, "kind": {"_count": 1}, "feeble": {"_count": 1}, "voice": {"_count": 1}, "question": {"_count": 1}}, "this": {"_count": 1, "afternoon": {"_count": 1}}, "chances": {"_count": 1, "Madam": {"_count": 1}}, "spiders": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "clicking": {"_count": 1, "and": {"_count": 1}}, "rustling": {"_count": 1, "the": {"_count": 1}}, "darkly": {"_count": 1, "": {"_count": 1}}, "porridge": {"_count": 1, "": {"_count": 1}}, "corridor": {"_count": 1, "to": {"_count": 1}}, "curious": {"_count": 1, "or": {"_count": 1}}, "deadly": {"_count": 1, "than": {"_count": 1}}, "he": {"_count": 12, "looked": {"_count": 1}, "headed": {"_count": 1}, "was": {"_count": 2}, "said": {"_count": 1}, "attempted": {"_count": 1}, "realized": {"_count": 1}, "dangled": {"_count": 1}, "did": {"_count": 1}, "recalled": {"_count": 1}, "added": {"_count": 1}, "thought": {"_count": 1}}, "it": {"_count": 1, "made": {"_count": 1}}, "pipes": {"_count": 1, "branching": {"_count": 1}}, "carved": {"_count": 1, "serpents": {"_count": 1}}, "pressing": {"_count": 8, "matters": {"_count": 3}, "problem": {"_count": 1}, "problems": {"_count": 1}, "questions": {"_count": 1}, "worries": {"_count": 1}, "question": {"_count": 1}}, "delighted": {"_count": 1, "": {"_count": 1}}, "life": {"_count": 1, "was": {"_count": 1}}, "solid": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "mad": {"_count": 1, "hissing": {"_count": 1}}, "school": {"_count": 1, "rules": {"_count": 1}}, "commonly": {"_count": 2, "known": {"_count": 1}, "found": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "brandy": {"_count": 1, "Vernon": {"_count": 1}}, "into": {"_count": 5, "her": {"_count": 1}, "the": {"_count": 2}, "Harrys": {"_count": 1}, "darkness": {"_count": 1}}, "his": {"_count": 2, "hand": {"_count": 1}, "gray": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "messing": {"_count": 1, "around": {"_count": 1}}, "new": {"_count": 1, "subjects": {"_count": 1}}, "hardwearing": {"_count": 1, "you": {"_count": 1}}, "heartily": {"_count": 1, "embarrassed": {"_count": 1}}, "scared": {"_count": 3, "": {"_count": 2}, "than": {"_count": 1}}, "hurried": {"_count": 1, "voice": {"_count": 1}}, "serious": {"_count": 4, "than": {"_count": 2}, "line": {"_count": 1}, "and": {"_count": 1}}, "frightened": {"_count": 5, "of": {"_count": 1}, "than": {"_count": 2}, "at": {"_count": 1}, "perhaps": {"_count": 1}}, "crack": {"_count": 1, "about": {"_count": 1}}, "nervously": {"_count": 1, "still": {"_count": 1}}, "sweat": {"_count": 1, "off": {"_count": 1}}, "towering": {"_count": 1, "hooded": {"_count": 1}}, "corridors": {"_count": 1, "up": {"_count": 1}}, "stairs": {"_count": 1, "to": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "calmly": {"_count": 3, "Divination": {"_count": 1}, "bothering": {"_count": 1}, "": {"_count": 1}}, "violently": {"_count": 2, "": {"_count": 1}, "Stop": {"_count": 1}}, "tea": {"_count": 2, "": {"_count": 2}}, "often": {"_count": 7, "than": {"_count": 5}, "said": {"_count": 1}, "the": {"_count": 1}}, "talking": {"_count": 2, "": {"_count": 2}}, "footsteps": {"_count": 4, "": {"_count": 2}, "growing": {"_count": 1}, "but": {"_count": 1}}, "so": {"_count": 3, "than": {"_count": 1}, "when": {"_count": 1}, "with": {"_count": 1}}, "menacing": {"_count": 2, "than": {"_count": 2}}, "sleep": {"_count": 1, "got": {"_count": 1}}, "dangerous": {"_count": 8, "": {"_count": 1}, "voice": {"_count": 1}, "than": {"_count": 1}, "when": {"_count": 1}, "assignments": {"_count": 1}, "plants": {"_count": 1}, "in": {"_count": 1}, "place": {"_count": 1}}, "loosely": {"_count": 1, "on": {"_count": 1}}, "there": {"_count": 2, "are": {"_count": 1}, "was": {"_count": 1}}, "innocent": {"_count": 1, "than": {"_count": 1}}, "hems": {"_count": 1, "of": {"_count": 1}}, "assurances": {"_count": 1, "of": {"_count": 1}}, "unlucky": {"_count": 1, "": {"_count": 1}}, "classes": {"_count": 1, "yawned": {"_count": 1}}, "go": {"_count": 2, "": {"_count": 2}}, "draining": {"_count": 1, "than": {"_count": 1}}, "butterbeer": {"_count": 3, "then": {"_count": 1}, "down": {"_count": 1}, "": {"_count": 1}}, "different": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "attention": {"_count": 5, "to": {"_count": 3}, "but": {"_count": 1}, "": {"_count": 1}}, "slimy": {"_count": 1, "horrible": {"_count": 1}}, "seriously": {"_count": 2, "than": {"_count": 1}, "I": {"_count": 1}}, "subjects": {"_count": 2, "than": {"_count": 2}}, "furious": {"_count": 1, "that": {"_count": 1}}, "concerned": {"_count": 3, "for": {"_count": 1}, "abou": {"_count": 1}, "about": {"_count": 1}}, "exuberant": {"_count": 2, "than": {"_count": 2}}, "anxious": {"_count": 3, "than": {"_count": 2}, "tone": {"_count": 1}}, "with": {"_count": 3, "sunburnt": {"_count": 1}, "gold": {"_count": 1}, "his": {"_count": 1}}, "terrible": {"_count": 9, "than": {"_count": 7}, "things": {"_count": 1}, "because": {"_count": 1}}, "color": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 8, "Crookshanks": {"_count": 1}, "Azkaban": {"_count": 1}, "your": {"_count": 3}, "a": {"_count": 2}, "the": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "hatred": {"_count": 1, "": {"_count": 1}}, "skulllike": {"_count": 1, "than": {"_count": 1}}, "shrilly": {"_count": 1, "than": {"_count": 1}}, "were": {"_count": 2, "appearing": {"_count": 1}, "coming": {"_count": 1}}, "convincing": {"_count": 1, "than": {"_count": 1}}, "figures": {"_count": 2, "materialize": {"_count": 1}, "at": {"_count": 1}}, "chocolate": {"_count": 1, "": {"_count": 1}}, "enjoyable": {"_count": 3, "": {"_count": 2}, "he": {"_count": 1}}, "details": {"_count": 2, "": {"_count": 1}, "about": {"_count": 1}}, "vigorously": {"_count": 3, "into": {"_count": 1}, "than": {"_count": 1}, "": {"_count": 1}}, "protracted": {"_count": 1, "and": {"_count": 1}}, "months": {"_count": 1, "will": {"_count": 1}}, "death": {"_count": 1, "and": {"_count": 1}}, "pronounced": {"_count": 7, "than": {"_count": 3}, "became": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}, "since": {"_count": 1}}, "murders": {"_count": 1, "this": {"_count": 1}}, "murder": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "argument": {"_count": 1, "": {"_count": 1}}, "disconcerting": {"_count": 1, "to": {"_count": 1}}, "space": {"_count": 1, "than": {"_count": 1}}, "grabbed": {"_count": 1, "a": {"_count": 1}}, "panicstricken": {"_count": 1, "Aunt": {"_count": 1}}, "but": {"_count": 2, "instead": {"_count": 1}, "Aberforth": {"_count": 1}}, "owls": {"_count": 2, "from": {"_count": 1}, "had": {"_count": 1}}, "saucepans": {"_count": 1, "": {"_count": 1}}, "naturally": {"_count": 1, "to": {"_count": 1}}, "TonTongue": {"_count": 1, "Toffees": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "Amos": {"_count": 1, "": {"_count": 1}}, "enthusiastic": {"_count": 1, "head": {"_count": 1}}, "familiar": {"_count": 1, "faces": {"_count": 1}}, "perfect": {"_count": 1, "weather": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "bringing": {"_count": 1, "their": {"_count": 1}}, "brutal": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "fast": {"_count": 1, "and": {"_count": 1}}, "goals": {"_count": 2, "": {"_count": 2}}, "spectacular": {"_count": 1, "moves": {"_count": 1}}, "danger": {"_count": 6, "than": {"_count": 2}, "at": {"_count": 1}, "here": {"_count": 1}, "by": {"_count": 1}, "in": {"_count": 1}}, "spring": {"_count": 1, "in": {"_count": 1}}, "deeply": {"_count": 3, "etched": {"_count": 1}, "": {"_count": 1}, "ashamed": {"_count": 1}}, "urgently": {"_count": 3, "": {"_count": 2}, "behind": {"_count": 1}}, "hours": {"_count": 2, "sleep": {"_count": 1}, "in": {"_count": 1}}, "information": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "horrified": {"_count": 1, "than": {"_count": 1}}, "Ministry": {"_count": 1, "messups": {"_count": 1}}, "sensible": {"_count": 1, "line": {"_count": 1}}, "Malfoy": {"_count": 1, "beckoned": {"_count": 1}}, "empty": {"_count": 2, "seats": {"_count": 1}, "goblets": {"_count": 1}}, "ago": {"_count": 1, "When": {"_count": 1}}, "stubborn": {"_count": 1, "forms": {"_count": 1}}, "lethal": {"_count": 1, "the": {"_count": 1}}, "twisted": {"_count": 1, "and": {"_count": 1}}, "tragic": {"_count": 1, "for": {"_count": 1}}, "firmly": {"_count": 3, "": {"_count": 1}, "above": {"_count": 1}, "and": {"_count": 1}}, "difficulty": {"_count": 2, "with": {"_count": 1}, "deciphering": {"_count": 1}}, "accurate": {"_count": 3, "title": {"_count": 1}, "view": {"_count": 1}, "term": {"_count": 1}}, "vociferous": {"_count": 1, "": {"_count": 1}}, "active": {"_count": 3, "role": {"_count": 1}, "than": {"_count": 1}, "in": {"_count": 1}}, "bearable": {"_count": 2, "than": {"_count": 2}}, "unnaturally": {"_count": 1, "large": {"_count": 1}}, "crowded": {"_count": 3, "than": {"_count": 2}, "as": {"_count": 1}}, "likable": {"_count": 1, "": {"_count": 1}}, "discussion": {"_count": 1, "of": {"_count": 1}}, "minute": {"_count": 1, "": {"_count": 1}}, "brightly": {"_count": 5, "than": {"_count": 2}, "": {"_count": 2}, "through": {"_count": 1}}, "sparks": {"_count": 2, "showered": {"_count": 1}, "green": {"_count": 1}}, "you": {"_count": 3, "are": {"_count": 1}, "is": {"_count": 1}, "saw": {"_count": 1}}, "magical": {"_count": 1, "education": {"_count": 1}}, "fame": {"_count": 1, "by": {"_count": 1}}, "admiration": {"_count": 1, "these": {"_count": 1}}, "certainty": {"_count": 1, "than": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "enthusiasm": {"_count": 1, "as": {"_count": 1}}, "hanging": {"_count": 1, "around": {"_count": 1}}, "direct": {"_count": 1, "action": {"_count": 1}}, "irritated": {"_count": 1, "as": {"_count": 1}}, "lizardlike": {"_count": 1, "than": {"_count": 1}}, "peculiar": {"_count": 1, "fashion": {"_count": 1}}, "warmly": {"_count": 2, "toward": {"_count": 1}, "as": {"_count": 1}}, "clapping": {"_count": 1, "": {"_count": 1}}, "aware": {"_count": 2, "of": {"_count": 2}}, "feet": {"_count": 2, "and": {"_count": 1}, "across": {"_count": 1}}, "elated": {"_count": 1, "than": {"_count": 1}}, "minutes": {"_count": 5, "": {"_count": 2}, "Ron": {"_count": 1}, "had": {"_count": 1}, "passed": {"_count": 1}}, "detail": {"_count": 1, "": {"_count": 1}}, "widely": {"_count": 6, "": {"_count": 3}, "than": {"_count": 1}, "turned": {"_count": 1}, "spaced": {"_count": 1}}, "the": {"_count": 10, "whole": {"_count": 1}, "better": {"_count": 2}, "Ministrys": {"_count": 1}, "attitude": {"_count": 1}, "merrier": {"_count": 1}, "fact": {"_count": 2}, "wall": {"_count": 1}, "best": {"_count": 1}}, "impressive": {"_count": 5, "if": {"_count": 1}, "location": {"_count": 1}, "the": {"_count": 1}, "Ive": {"_count": 1}, "move": {"_count": 1}}, "girls": {"_count": 1, "asked": {"_count": 1}}, "happily": {"_count": 1, "than": {"_count": 1}}, "holiday": {"_count": 1, "steam": {"_count": 1}}, "opportunity": {"_count": 1, "if": {"_count": 1}}, "manly": {"_count": 1, "he": {"_count": 1}}, "noticeable": {"_count": 1, "than": {"_count": 1}}, "complicated": {"_count": 3, "method": {"_count": 1}, "rather": {"_count": 1}, "than": {"_count": 1}}, "ambitious": {"_count": 1, "lately": {"_count": 1}}, "drinks": {"_count": 1, "Harry": {"_count": 1}}, "insulted": {"_count": 1, "in": {"_count": 1}}, "private": {"_count": 2, "clump": {"_count": 1}, "said": {"_count": 1}}, "dancing": {"_count": 1, "with": {"_count": 1}}, "by": {"_count": 3, "comparison": {"_count": 1}, "the": {"_count": 1}, "dreams": {"_count": 1}}, "explicit": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 6, "Fred": {"_count": 1}, "the": {"_count": 1}, "did": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "Malfoy": {"_count": 1}}, "forcefully": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "I": {"_count": 4, "promise": {"_count": 1}, "hint": {"_count": 1}, "can": {"_count": 1}, "think": {"_count": 1}}, "favours": {"_count": 1, "from": {"_count": 1}}, "underwater": {"_count": 1, "renditions": {"_count": 1}}, "inches": {"_count": 2, "any": {"_count": 1}, "during": {"_count": 1}}, "rapidly": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "seconds": {"_count": 4, "before": {"_count": 1}, "hey": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}}, "businesslike": {"_count": 2, "tone": {"_count": 1}, "and": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "trustin": {"_count": 1, "when": {"_count": 1}}, "books": {"_count": 4, "books": {"_count": 1}, "": {"_count": 3}}, "marveling": {"_count": 1, "at": {"_count": 1}}, "grindylows": {"_count": 2, "had": {"_count": 1}, "that": {"_count": 1}}, "jets": {"_count": 2, "of": {"_count": 2}}, "numerous": {"_count": 1, "there": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "deaths": {"_count": 1, "more": {"_count": 1}}, "disappearances": {"_count": 1, "more": {"_count": 1}}, "torturing": {"_count": 1, "": {"_count": 1}}, "sympathetic": {"_count": 1, "toward": {"_count": 1}}, "Death": {"_count": 10, "Eater": {"_count": 1}, "Eaters": {"_count": 9}}, "curses": {"_count": 5, "when": {"_count": 1}, "shot": {"_count": 1}, "streaked": {"_count": 1}, "flew": {"_count": 1}, "came": {"_count": 1}}, "staring": {"_count": 1, "blurrily": {"_count": 1}}, "stuff": {"_count": 1, "out": {"_count": 1}}, "worried": {"_count": 5, "about": {"_count": 1}, "than": {"_count": 1}, "what": {"_count": 1}, "if": {"_count": 1}, "by": {"_count": 1}}, "lopsided": {"_count": 2, "appearance": {"_count": 1}, "but": {"_count": 1}}, "inviting": {"_count": 1, "than": {"_count": 1}}, "little": {"_count": 1, "reminder": {"_count": 1}}, "suspect": {"_count": 1, "Madame": {"_count": 1}}, "tired": {"_count": 1, "and": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "questions": {"_count": 3, "he": {"_count": 1}, "about": {"_count": 1}, "are": {"_count": 1}}, "has": {"_count": 1, "Professor": {"_count": 1}}, "confident": {"_count": 6, "about": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 1}, "because": {"_count": 1}, "but": {"_count": 1}}, "hex": {"_count": 1, "research": {"_count": 1}}, "stiffly": {"_count": 1, "than": {"_count": 1}}, "courses": {"_count": 1, "than": {"_count": 1}}, "dead": {"_count": 2, "ends": {"_count": 1}, "guardian": {"_count": 1}}, "effect": {"_count": 1, "than": {"_count": 1}}, "persistently": {"_count": 1, "as": {"_count": 1}}, "agitated": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 16, "": {"_count": 2}, "to": {"_count": 3}, "were": {"_count": 2}, "the": {"_count": 1}, "had": {"_count": 3}, "sprinted": {"_count": 1}, "out": {"_count": 1}, "lurking": {"_count": 1}, "on": {"_count": 1}, "storming": {"_count": 1}}, "faithful": {"_count": 1, "service": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "nothing": {"_count": 1, "was": {"_count": 1}}, "beams": {"_count": 1, "arced": {"_count": 1}}, "tightly": {"_count": 7, "with": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "over": {"_count": 1}, "around": {"_count": 2}}, "powerfully": {"_count": 4, "than": {"_count": 2}, "as": {"_count": 1}, "": {"_count": 1}}, "shouts": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "expected": {"_count": 1, "this": {"_count": 1}}, "wand": {"_count": 1, "blasts": {"_count": 1}}, "distinct": {"_count": 1, "": {"_count": 1}}, "Master": {"_count": 2, "Barty": {"_count": 1}, "Harry": {"_count": 1}}, "ingredients": {"_count": 2, "for": {"_count": 1}, "into": {"_count": 1}}, "scope": {"_count": 1, "for": {"_count": 1}}, "cups": {"_count": 1, "from": {"_count": 1}}, "fully": {"_count": 3, "and": {"_count": 1}, "about": {"_count": 1}, "when": {"_count": 1}}, "pleased": {"_count": 3, "with": {"_count": 1}, "than": {"_count": 1}, "when": {"_count": 1}}, "arrogant": {"_count": 1, "and": {"_count": 1}}, "insistent": {"_count": 1, "all": {"_count": 1}}, "do": {"_count": 1, "I": {"_count": 1}}, "formidable": {"_count": 1, "than": {"_count": 1}}, "accurately": {"_count": 1, "was": {"_count": 1}}, "terrified": {"_count": 1, "than": {"_count": 1}}, "when": {"_count": 2, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "instructions": {"_count": 1, "": {"_count": 1}}, "tempted": {"_count": 1, "by": {"_count": 1}}, "shut": {"_count": 1, "it": {"_count": 1}}, "painfully": {"_count": 4, "": {"_count": 1}, "than": {"_count": 1}, "more": {"_count": 1}, "still": {"_count": 1}}, "illegal": {"_count": 1, "magic": {"_count": 1}}, "gray": {"_count": 1, "hair": {"_count": 1}}, "patched": {"_count": 1, "and": {"_count": 1}}, "cloud": {"_count": 1, "cover": {"_count": 1}}, "height": {"_count": 1, "": {"_count": 1}}, "longingly": {"_count": 1, "of": {"_count": 1}}, "gangly": {"_count": 1, "looking": {"_count": 1}}, "wildly": {"_count": 1, "than": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}, "goblets": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "than": {"_count": 1}}, "followers": {"_count": 1, "": {"_count": 1}}, "efficient": {"_count": 1, "than": {"_count": 1}}, "doxies": {"_count": 1, "than": {"_count": 1}}, "bottles": {"_count": 1, "of": {"_count": 1}}, "Stains": {"_count": 1, "of": {"_count": 1}}, "offensive": {"_count": 1, "as": {"_count": 1}}, "though": {"_count": 1, "to": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "memos": {"_count": 1, "zoomed": {"_count": 1}}, "muttering": {"_count": 1, "but": {"_count": 1}}, "taradiddles": {"_count": 1, "Im": {"_count": 1}}, "batty": {"_count": 1, "than": {"_count": 1}}, "welcoming": {"_count": 1, "all": {"_count": 1}}, "pajamas": {"_count": 1, "these": {"_count": 1}}, "Harry": {"_count": 3, "thought": {"_count": 1}, "pored": {"_count": 1}, "realized": {"_count": 1}}, "eventful": {"_count": 1, "happened": {"_count": 1}}, "speed": {"_count": 1, "so": {"_count": 1}}, "securely": {"_count": 3, "into": {"_count": 1}, "onto": {"_count": 1}, "than": {"_count": 1}}, "insubstantial": {"_count": 1, "than": {"_count": 1}}, "applause": {"_count": 1, "broke": {"_count": 1}}, "whispering": {"_count": 1, "staring": {"_count": 1}}, "she": {"_count": 3, "was": {"_count": 1}, "seemed": {"_count": 1}, "could": {"_count": 1}}, "kindly": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "aggressively": {"_count": 1, "than": {"_count": 1}}, "polite": {"_count": 1, "": {"_count": 1}}, "human": {"_count": 1, "than": {"_count": 1}}, "provocation": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "detentions": {"_count": 2, "or": {"_count": 1}, "Severus": {"_count": 1}}, "wrote": {"_count": 1, "I": {"_count": 1}}, "homework": {"_count": 2, "which": {"_count": 1}, "done": {"_count": 1}}, "talent": {"_count": 1, "than": {"_count": 1}}, "hats": {"_count": 3, "": {"_count": 1}, "tomorrow": {"_count": 1}, "and": {"_count": 1}}, "gracious": {"_count": 1, "to": {"_count": 1}}, "paranoid": {"_count": 1, "about": {"_count": 1}}, "effort": {"_count": 2, "for": {"_count": 1}, "on": {"_count": 1}}, "Quidditch": {"_count": 2, "practices": {"_count": 2}}, "acceptable": {"_count": 1, "": {"_count": 1}}, "license": {"_count": 1, "but": {"_count": 1}}, "notes": {"_count": 1, "while": {"_count": 1}}, "elf": {"_count": 1, "clothes": {"_count": 1}}, "indeed": {"_count": 1, "than": {"_count": 1}}, "chairs": {"_count": 1, "": {"_count": 1}}, "rebellious": {"_count": 1, "": {"_count": 1}}, "wool": {"_count": 1, "outside": {"_count": 1}}, "distracting": {"_count": 1, "": {"_count": 1}}, "along": {"_count": 1, "a": {"_count": 1}}, "objections": {"_count": 1, "": {"_count": 1}}, "accidents": {"_count": 1, "like": {"_count": 1}}, "anguished": {"_count": 1, "than": {"_count": 1}}, "heads": {"_count": 1, "": {"_count": 1}}, "ter": {"_count": 1, "to": {"_count": 1}}, "snowball": {"_count": 1, "hits": {"_count": 1}}, "sheltered": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "horses": {"_count": 1, "came": {"_count": 1}}, "toadlike": {"_count": 1, "than": {"_count": 1}}, "snow": {"_count": 1, "and": {"_count": 1}}, "onerous": {"_count": 1, "as": {"_count": 1}}, "times": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "youll": {"_count": 1, "have": {"_count": 1}}, "useful": {"_count": 2, "than": {"_count": 1}, "welcomeback": {"_count": 1}}, "convenient": {"_count": 1, "for": {"_count": 1}}, "portraits": {"_count": 4, "of": {"_count": 2}, "shoving": {"_count": 1}, "against": {"_count": 1}}, "shining": {"_count": 2, "crystal": {"_count": 1}, "black": {"_count": 1}}, "dreadful": {"_count": 1, "ideas": {"_count": 1}}, "comfortably": {"_count": 1, "against": {"_count": 1}}, "nettled": {"_count": 1, "": {"_count": 1}}, "gruesome": {"_count": 1, "even": {"_count": 1}}, "But": {"_count": 1, "as": {"_count": 1}}, "personal": {"_count": 1, "effects": {"_count": 1}}, "relics": {"_count": 1, "of": {"_count": 1}}, "docilely": {"_count": 1, "than": {"_count": 1}}, "prone": {"_count": 1, "to": {"_count": 1}}, "food": {"_count": 1, "his": {"_count": 1}}, "retching": {"_count": 1, "from": {"_count": 1}}, "adept": {"_count": 1, "at": {"_count": 1}}, "Snape": {"_count": 1, "raised": {"_count": 1}}, "discipline": {"_count": 1, "than": {"_count": 1}}, "painful": {"_count": 4, "": {"_count": 2}, "minutes": {"_count": 1}, "twinge": {"_count": 1}}, "chili": {"_count": 1, "powder": {"_count": 1}}, "bad": {"_count": 1, "news": {"_count": 1}}, "frightening": {"_count": 2, "than": {"_count": 2}}, "distant": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 1}, "that": {"_count": 1}, "large": {"_count": 1}, "ease": {"_count": 1}}, "kissing": {"_count": 1, "couples": {"_count": 1}}, "horrible": {"_count": 2, "stories": {"_count": 1}, "they": {"_count": 1}}, "withdrew": {"_count": 1, "a": {"_count": 1}}, "news": {"_count": 1, "about": {"_count": 1}}, "Hogsmeade": {"_count": 1, "trips": {"_count": 1}}, "frequent": {"_count": 1, "intervals": {"_count": 1}}, "Ds": {"_count": 1, "in": {"_count": 1}}, "doors": {"_count": 2, "all": {"_count": 1}, "burst": {"_count": 1}}, "significance": {"_count": 1, "than": {"_count": 1}}, "importan": {"_count": 1, "than": {"_count": 1}}, "stones": {"_count": 1, "fly": {"_count": 1}}, "dangerously": {"_count": 1, "sweet": {"_count": 1}}, "room": {"_count": 2, "to": {"_count": 2}}, "have": {"_count": 1, "Stunned": {"_count": 1}}, "good": {"_count": 1, "things": {"_count": 1}}, "mature": {"_count": 1, "": {"_count": 1}}, "miserably": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "audible": {"_count": 1, "this": {"_count": 1}}, "exams": {"_count": 1, "after": {"_count": 1}}, "looking": {"_count": 2, "down": {"_count": 1}, "disheveled": {"_count": 1}}, "lesson": {"_count": 1, "like": {"_count": 1}}, "rousing": {"_count": 1, "choruses": {"_count": 1}}, "rows": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}, "emerged": {"_count": 2, "behind": {"_count": 1}, "through": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "achievable": {"_count": 1, "ambition": {"_count": 1}}, "someones": {"_count": 1, "put": {"_count": 1}}, "pretending": {"_count": 1, "we": {"_count": 1}}, "light": {"_count": 1, "had": {"_count": 1}}, "alarmed": {"_count": 2, "than": {"_count": 1}, "": {"_count": 1}}, "apprehensive": {"_count": 1, "than": {"_count": 1}}, "foul": {"_count": 1, "scavenging": {"_count": 1}}, "purple": {"_count": 1, "in": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "sweetly": {"_count": 1, "girlish": {"_count": 1}}, "plainly": {"_count": 1, "in": {"_count": 1}}, "foolhardy": {"_count": 1, "than": {"_count": 1}}, "neighing": {"_count": 1, "roars": {"_count": 1}}, "insistently": {"_count": 1, "": {"_count": 1}}, "trees": {"_count": 1, "aside": {"_count": 1}}, "protests": {"_count": 1, "": {"_count": 1}}, "thestrals": {"_count": 2, "youre": {"_count": 1}, "Im": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "secure": {"_count": 1, "and": {"_count": 1}}, "villages": {"_count": 1, "then": {"_count": 1}}, "gracefully": {"_count": 1, "than": {"_count": 1}}, "accustomed": {"_count": 1, "to": {"_count": 1}}, "candle": {"_count": 1, "brackets": {"_count": 1}}, "dim": {"_count": 1, "candlelight": {"_count": 1}}, "suspense": {"_count": 1, "": {"_count": 1}}, "persuasion": {"_count": 1, "": {"_count": 1}}, "glass": {"_count": 1, "spheres": {"_count": 1}}, "spells": {"_count": 1, "": {"_count": 1}}, "jet": {"_count": 1, "of": {"_count": 1}}, "voices": {"_count": 2, "than": {"_count": 1}, "but": {"_count": 1}}, "help": {"_count": 4, "from": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "we": {"_count": 1}}, "trapped": {"_count": 1, "inside": {"_count": 1}}, "incentives": {"_count": 1, "to": {"_count": 1}}, "reliable": {"_count": 1, "methods": {"_count": 1}}, "extensive": {"_count": 1, "than": {"_count": 1}}, "disturbed": {"_count": 1, "that": {"_count": 1}}, "pain": {"_count": 1, "than": {"_count": 1}}, "burdens": {"_count": 1, "than": {"_count": 1}}, "practical": {"_count": 1, "course": {"_count": 1}}, "wonderful": {"_count": 1, "and": {"_count": 1}}, "miserable": {"_count": 1, "than": {"_count": 1}}, "flustered": {"_count": 1, "with": {"_count": 1}}, "success": {"_count": 1, "": {"_count": 1}}, "talented": {"_count": 1, "friends": {"_count": 1}}, "freely": {"_count": 1, "": {"_count": 1}}, "decisive": {"_count": 1, "and": {"_count": 1}}, "peaceful": {"_count": 1, "at": {"_count": 1}}, "things": {"_count": 1, "Harry": {"_count": 1}}, "persuadable": {"_count": 2, "than": {"_count": 2}}, "intelligent": {"_count": 1, "shes": {"_count": 1}}, "breakfast": {"_count": 1, "": {"_count": 1}}, "sausages": {"_count": 1, "": {"_count": 1}}, "ragged": {"_count": 2, "and": {"_count": 1}, "looking": {"_count": 1}}, "outbursts": {"_count": 1, "from": {"_count": 1}}, "dear": {"_count": 1, "let": {"_count": 1}}, "subdued": {"_count": 1, "": {"_count": 1}}, "backbone": {"_count": 1, "than": {"_count": 1}}, "anecdotes": {"_count": 1, "about": {"_count": 1}}, "dignified": {"_count": 1, "sitting": {"_count": 1}}, "confidence": {"_count": 1, "when": {"_count": 1}}, "her": {"_count": 1, "fault": {"_count": 1}}, "surprised": {"_count": 1, "if": {"_count": 1}}, "advanced": {"_count": 1, "": {"_count": 1}}, "lack": {"_count": 1, "": {"_count": 1}}, "complex": {"_count": 1, "than": {"_count": 1}}, "unusually": {"_count": 1, "with": {"_count": 1}}, "paces": {"_count": 1, "before": {"_count": 1}}, "defeatedlooking": {"_count": 1, "person": {"_count": 1}}, "romantic": {"_count": 1, "to": {"_count": 1}}, "demanding": {"_count": 1, "than": {"_count": 1}}, "fanciable": {"_count": 1, "": {"_count": 1}}, "post": {"_count": 1, "than": {"_count": 1}}, "dementor": {"_count": 1, "attacks": {"_count": 1}}, "grit": {"_count": 1, "and": {"_count": 1}}, "effective": {"_count": 1, "teacher": {"_count": 1}}, "firewhisky": {"_count": 2, "said": {"_count": 1}, "for": {"_count": 1}}, "intimidating": {"_count": 1, "still": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "gin": {"_count": 1, "": {"_count": 1}}, "severely": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "landing": {"_count": 1}}, "Ron": {"_count": 2, "seemed": {"_count": 1}, "Ron": {"_count": 1}}, "aggressive": {"_count": 1, "so": {"_count": 1}}, "animated": {"_count": 1, "": {"_count": 1}}, "muscle": {"_count": 1, "Hit": {"_count": 1}}, "Christmas": {"_count": 1, "was": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "day": {"_count": 1, "of": {"_count": 1}}, "sprouts": {"_count": 1, "and": {"_count": 1}}, "awake": {"_count": 1, "all": {"_count": 1}}, "Mum": {"_count": 1, "now": {"_count": 1}}, "involved": {"_count": 1, "Harry": {"_count": 1}}, "memories": {"_count": 1, "to": {"_count": 1}}, "refined": {"_count": 1, "forms": {"_count": 1}}, "indescribably": {"_count": 1, "filthy": {"_count": 1}}, "knowledgeable": {"_count": 2, "than": {"_count": 2}}, "accomplished": {"_count": 1, "at": {"_count": 1}}, "harm": {"_count": 2, "than": {"_count": 1}, "and": {"_count": 1}}, "further": {"_count": 1, "disappearances": {"_count": 1}}, "offended": {"_count": 1, "than": {"_count": 1}}, "parents": {"_count": 1, "takin": {"_count": 1}}, "inter": {"_count": 1, "this": {"_count": 1}}, "annoying": {"_count": 1, "": {"_count": 1}}, "wearing": {"_count": 1, "than": {"_count": 1}}, "tiny": {"_count": 1, "crystal": {"_count": 1}}, "amazed": {"_count": 1, "still": {"_count": 1}}, "attached": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "handsome": {"_count": 1, "than": {"_count": 1}}, "Tom": {"_count": 1, "she": {"_count": 1}}, "threatening": {"_count": 3, "than": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "sophisticated": {"_count": 1, "from": {"_count": 1}}, "variations": {"_count": 1, "of": {"_count": 1}}, "Hermiones": {"_count": 1, "territory": {"_count": 1}}, "lessons": {"_count": 1, "until": {"_count": 1}}, "suitable": {"_count": 1, "I": {"_count": 1}}, "noticed": {"_count": 1, "nothing": {"_count": 1}}, "treasures": {"_count": 1, "that": {"_count": 1}}, "pieces": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "sinister": {"_count": 3, "had": {"_count": 1}, "he": {"_count": 1}, "than": {"_count": 1}}, "Horcruxes": {"_count": 5, "so": {"_count": 1}, "but": {"_count": 1}, "shall": {"_count": 1}, "": {"_count": 2}}, "if": {"_count": 1, "only": {"_count": 1}}, "reverence": {"_count": 1, "but": {"_count": 1}}, "action": {"_count": 1, "": {"_count": 1}}, "Bludger": {"_count": 1, "injuries": {"_count": 1}}, "distinctive": {"_count": 1, "then": {"_count": 1}}, "defiance": {"_count": 1, "": {"_count": 1}}, "macho": {"_count": 1, "": {"_count": 1}}, "disposed": {"_count": 1, "to": {"_count": 1}}, "worrisome": {"_count": 1, "than": {"_count": 1}}, "please": {"_count": 1, "no": {"_count": 1}}, "refilling": {"_count": 1, "the": {"_count": 1}}, "anguish": {"_count": 1, "than": {"_count": 1}}, "Inferi": {"_count": 2, "were": {"_count": 1}, "creeping": {"_count": 1}}, "clanking": {"_count": 1, "and": {"_count": 1}}, "defenseless": {"_count": 1, "than": {"_count": 1}}, "pretense": {"_count": 1, "about": {"_count": 1}}, "completely": {"_count": 2, "than": {"_count": 1}, "and": {"_count": 1}}, "shock": {"_count": 1, "or": {"_count": 1}}, "reasons": {"_count": 2, "to": {"_count": 2}}, "zan": {"_count": 1, "a": {"_count": 1}}, "love": {"_count": 1, "in": {"_count": 1}}, "disturbing": {"_count": 1, "to": {"_count": 1}}, "real": {"_count": 2, "to": {"_count": 2}}, "alone": {"_count": 1, "than": {"_count": 1}}, "cries": {"_count": 1, "of": {"_count": 1}}, "notice": {"_count": 1, "if": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 1, "inside": {"_count": 1}}, "because": {"_count": 1, "Dumbledore": {"_count": 1}}, "cautiously": {"_count": 1, "": {"_count": 1}}, "remained": {"_count": 1, "of": {"_count": 1}}, "mistaken": {"_count": 1, "As": {"_count": 1}}, "pleasurable": {"_count": 1, "as": {"_count": 1}}, "reserved": {"_count": 1, "than": {"_count": 1}}, "away": {"_count": 1, "on": {"_count": 1}}, "Dudley": {"_count": 1, "subsided": {"_count": 1}}, "lined": {"_count": 1, "Fleur": {"_count": 1}}, "arguments": {"_count": 1, "": {"_count": 1}}, "flames": {"_count": 1, "into": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "we": {"_count": 1, "knew": {"_count": 1}}, "Ive": {"_count": 1, "read": {"_count": 1}}, "vicious": {"_count": 1, "said": {"_count": 1}}, "meaning": {"_count": 2, "from": {"_count": 1}, "than": {"_count": 1}}, "suspicious": {"_count": 1, "": {"_count": 1}}, "skilled": {"_count": 1, "than": {"_count": 1}}, "uncontained": {"_count": 1, "": {"_count": 1}}, "champagne": {"_count": 2, "": {"_count": 2}}, "desperately": {"_count": 1, "sad": {"_count": 1}}, "dishonorable": {"_count": 1, "for": {"_count": 1}}, "butterbeers": {"_count": 1, "": {"_count": 1}}, "discouraged": {"_count": 1, "she": {"_count": 1}}, "determined": {"_count": 1, "": {"_count": 1}}, "potion": {"_count": 1, "": {"_count": 1}}, "coherent": {"_count": 1, "words": {"_count": 1}}, "He": {"_count": 1, "knew": {"_count": 1}}, "distinctivelooking": {"_count": 1, "": {"_count": 1}}, "dramatically": {"_count": 1, "different": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "highly": {"_count": 1, "polished": {"_count": 1}}, "dementors": {"_count": 1, "in": {"_count": 1}}, "warming": {"_count": 1, "than": {"_count": 1}}, "successful": {"_count": 1, "at": {"_count": 1}}, "humiliated": {"_count": 1, "by": {"_count": 1}}, "woods": {"_count": 1, "to": {"_count": 1}}, "intelligible": {"_count": 1, "as": {"_count": 1}}, "clattering": {"_count": 1, "of": {"_count": 1}}, "cheered": {"_count": 1, "at": {"_count": 1}}, "desperate": {"_count": 1, "and": {"_count": 1}}, "cottages": {"_count": 1, "Any": {"_count": 1}}, "windows": {"_count": 1, "sparkling": {"_count": 1}}, "pointing": {"_count": 1, "first": {"_count": 1}}, "prudent": {"_count": 2, "to": {"_count": 2}}, "pretty": {"_count": 1, "lights": {"_count": 1}}, "shocking": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "chapter": {"_count": 1}}, "part": {"_count": 1, "in": {"_count": 1}}, "concrete": {"_count": 1, "reason": {"_count": 1}}, "could": {"_count": 1, "he": {"_count": 1}}, "alert": {"_count": 1, "than": {"_count": 1}}, "fear": {"_count": 2, "leavened": {"_count": 1}, "in": {"_count": 1}}, "beautiful": {"_count": 2, "and": {"_count": 1}, "place": {"_count": 1}}, "breakthroughs": {"_count": 1, "would": {"_count": 1}}, "cluttered": {"_count": 1, "than": {"_count": 1}}, "confused": {"_count": 1, "than": {"_count": 1}}, "shadow": {"_count": 1, "than": {"_count": 1}}, "unlikely": {"_count": 1, "places": {"_count": 1}}, "evidence": {"_count": 1, "as": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "outspoken": {"_count": 1, "supporters": {"_count": 1}}, "insane": {"_count": 1, "rumors": {"_count": 1}}, "terror": {"_count": 1, "than": {"_count": 1}}, "jeering": {"_count": 1, "laughter": {"_count": 1}}, "crashes": {"_count": 1, "from": {"_count": 1}}, "noises": {"_count": 1, "from": {"_count": 1}}, "had": {"_count": 1, "he": {"_count": 1}}, "snugly": {"_count": 1, "in": {"_count": 1}}, "neatly": {"_count": 1, "and": {"_count": 1}}, "intense": {"_count": 1, "he": {"_count": 1}}, "short": {"_count": 1, "effort": {"_count": 1}}, "conspicuous": {"_count": 1, "for": {"_count": 1}}, "foolish": {"_count": 1, "it": {"_count": 1}}, "savage": {"_count": 1, "for": {"_count": 1}}, "exploded": {"_count": 1, "into": {"_count": 1}}, "gouging": {"_count": 1, "spells": {"_count": 1}}, "muffled": {"_count": 1, "while": {"_count": 1}}, "detailed": {"_count": 1, "as": {"_count": 1}}, "Longbottom": {"_count": 1, "": {"_count": 1}}, "hammocks": {"_count": 1, "every": {"_count": 1}}, "floors": {"_count": 1, "when": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "stayed": {"_count": 1}}, "opaque": {"_count": 1, "and": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}, "Dobbies": {"_count": 1, "do": {"_count": 1}}, "screams": {"_count": 2, "echoed": {"_count": 1}, "than": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "duelers": {"_count": 1, "all": {"_count": 1}}, "terrifying": {"_count": 1, "than": {"_count": 1}}, "lay": {"_count": 1, "dead": {"_count": 1}}, "leaves": {"_count": 1, "": {"_count": 1}}, "buy": {"_count": 1, "you": {"_count": 1}}, "straightforward": {"_count": 1, "": {"_count": 1}}, "alive": {"_count": 1, "and": {"_count": 1}}, "lives": {"_count": 1, "but": {"_count": 1}}, "bodies": {"_count": 2, "": {"_count": 2}}, "enthusiastically": {"_count": 1, "urging": {"_count": 1}}, "afraid": {"_count": 1, "than": {"_count": 1}}, "selfish": {"_count": 1, "than": {"_count": 1}}, "admirable": {"_count": 1, "brother": {"_count": 1}}, "skillful": {"_count": 1, "": {"_count": 1}}, "loss": {"_count": 1, "": {"_count": 1}}, "war": {"_count": 1, "": {"_count": 1}}, "Sorting": {"_count": 1, "at": {"_count": 1}}, "Houses": {"_count": 1, "": {"_count": 1}}, "Shield": {"_count": 1, "Charms": {"_count": 1}}}, "mood": {"_count": 64, "until": {"_count": 1, "lunchtime": {"_count": 1}}, "was": {"_count": 3, "the": {"_count": 1}, "not": {"_count": 1}, "further": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "by": {"_count": 2, "the": {"_count": 2}}, "looking": {"_count": 1, "for": {"_count": 1}}, "hes": {"_count": 2, "got": {"_count": 1}, "in": {"_count": 1}}, "he": {"_count": 3, "would": {"_count": 1}, "was": {"_count": 1}, "hummed": {"_count": 1}}, "had": {"_count": 2, "grown": {"_count": 1}, "no": {"_count": 1}}, "didnt": {"_count": 1, "last": {"_count": 1}}, "with": {"_count": 2, "him": {"_count": 1}, "Hermione": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "to": {"_count": 5, "have": {"_count": 1}, "bury": {"_count": 1}, "celebrate": {"_count": 1}, "work": {"_count": 1}, "deeply": {"_count": 1}}, "couldnt": {"_count": 1, "even": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "continued": {"_count": 1, "for": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "Harry": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "than": {"_count": 1, "Harry": {"_count": 1}}, "she": {"_count": 1, "did": {"_count": 1}}, "suddenly": {"_count": 1, "lifted": {"_count": 1}}, "for": {"_count": 1, "talking": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "more": {"_count": 1, "exuberant": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "that": {"_count": 1}, "Harry": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "hes": {"_count": 1}}, "persisted": {"_count": 1, "for": {"_count": 1}}, "has": {"_count": 1, "gripped": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "And": {"_count": 1, "did": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "inside": {"_count": 1, "number": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}}, "until": {"_count": 440, "lunchtime": {"_count": 1, "when": {"_count": 1}}, "he": {"_count": 62, "passed": {"_count": 1}, "was": {"_count": 12}, "found": {"_count": 4}, "climbed": {"_count": 1}, "heard": {"_count": 4}, "dies": {"_count": 1}, "saw": {"_count": 2}, "is": {"_count": 3}, "hit": {"_count": 1}, "glimpsed": {"_count": 1}, "actually": {"_count": 1}, "reached": {"_count": 9}, "would": {"_count": 1}, "started": {"_count": 1}, "muttered": {"_count": 1}, "needed": {"_count": 1}, "understood": {"_count": 1}, "broke": {"_count": 1}, "fell": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 3}, "stood": {"_count": 1}, "killed": {"_count": 1}, "finally": {"_count": 2}, "caught": {"_count": 1}, "forced": {"_count": 1}, "turned": {"_count": 1}, "held": {"_count": 1}, "told": {"_count": 1}, "discovered": {"_count": 1}, "spoke": {"_count": 1}}, "next": {"_count": 4, "week": {"_count": 2}, "term": {"_count": 2}}, "the": {"_count": 54, "only": {"_count": 1}, "trees": {"_count": 1}, "path": {"_count": 1}, "Snitch": {"_count": 1}, "subject": {"_count": 1}, "following": {"_count": 1}, "Potions": {"_count": 1}, "danger": {"_count": 1}, "train": {"_count": 2}, "very": {"_count": 2}, "portrait": {"_count": 1}, "World": {"_count": 1}, "bell": {"_count": 1}, "start": {"_count": 1}, "message": {"_count": 1}, "first": {"_count": 2}, "rest": {"_count": 2}, "darkness": {"_count": 1}, "end": {"_count": 4}, "other": {"_count": 1}, "meetings": {"_count": 1}, "coast": {"_count": 2}, "horrible": {"_count": 1}, "redhot": {"_count": 1}, "exams": {"_count": 1}, "last": {"_count": 4}, "walls": {"_count": 1}, "year": {"_count": 1}, "compartment": {"_count": 1}, "glowing": {"_count": 1}, "effects": {"_count": 2}, "potion": {"_count": 1}, "fourth": {"_count": 1}, "age": {"_count": 1}, "distant": {"_count": 1}, "funerals": {"_count": 1}, "thirtieth": {"_count": 2}, "doors": {"_count": 1}, "Death": {"_count": 1}, "hole": {"_count": 1}, "man": {"_count": 1}}, "Dumbledore": {"_count": 2, "told": {"_count": 1}, "locks": {"_count": 1}}, "hes": {"_count": 2, "ready": {"_count": 1}, "back": {"_count": 1}}, "Christmas": {"_count": 2, "": {"_count": 1}, "Eve": {"_count": 1}}, "finally": {"_count": 5, "it": {"_count": 2}, "they": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "its": {"_count": 4, "eyes": {"_count": 1}, "safe": {"_count": 1}, "time": {"_count": 1}, "all": {"_count": 1}}, "Piers": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 57, "get": {"_count": 2}, "reached": {"_count": 12}, "saw": {"_count": 2}, "spotted": {"_count": 1}, "had": {"_count": 7}, "couldnt": {"_count": 1}, "came": {"_count": 1}, "turned": {"_count": 1}, "were": {"_count": 10}, "arrived": {"_count": 1}, "heard": {"_count": 1}, "acted": {"_count": 1}, "broke": {"_count": 1}, "knew": {"_count": 1}, "could": {"_count": 4}, "accept": {"_count": 1}, "lost": {"_count": 1}, "wanted": {"_count": 1}, "landed": {"_count": 1}, "set": {"_count": 1}, "join": {"_count": 1}, "poked": {"_count": 1}, "carried": {"_count": 1}, "met": {"_count": 1}, "stood": {"_count": 1}, "became": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "it": {"_count": 13, "gathered": {"_count": 1}, "was": {"_count": 5}, "is": {"_count": 2}, "hit": {"_count": 1}, "started": {"_count": 1}, "broke": {"_count": 1}, "turns": {"_count": 1}, "vanished": {"_count": 1}}, "a": {"_count": 9, "month": {"_count": 1}, "distant": {"_count": 1}, "truly": {"_count": 1}, "particularly": {"_count": 1}, "Stunning": {"_count": 1}, "year": {"_count": 2}, "couple": {"_count": 1}, "second": {"_count": 1}}, "Hagrid": {"_count": 2, "told": {"_count": 1}, "stepped": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Lupin": {"_count": 1}, "Umbridge": {"_count": 1}}, "I": {"_count": 11, "was": {"_count": 1}, "saw": {"_count": 1}, "tell": {"_count": 1}, "see": {"_count": 1}, "have": {"_count": 2}, "return": {"_count": 1}, "discharge": {"_count": 1}, "get": {"_count": 1}, "got": {"_count": 1}, "succeed": {"_count": 1}}, "our": {"_count": 1, "brains": {"_count": 1}}, "Ive": {"_count": 1, "learned": {"_count": 1}}, "you": {"_count": 8, "catch": {"_count": 1}, "see": {"_count": 1}, "get": {"_count": 1}, "have": {"_count": 1}, "can": {"_count": 1}, "manage": {"_count": 1}, "learn": {"_count": 1}, "pass": {"_count": 1}}, "yer": {"_count": 1, "holidays": {"_count": 1}}, "shed": {"_count": 1, "looked": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "theyd": {"_count": 1, "stepped": {"_count": 1}}, "Quirrells": {"_count": 1, "footsteps": {"_count": 1}}, "their": {"_count": 3, "exam": {"_count": 1}, "exams": {"_count": 1}, "blackness": {"_count": 1}}, "hed": {"_count": 1, "finished": {"_count": 1}}, "your": {"_count": 4, "father": {"_count": 2}, "dormitory": {"_count": 1}, "disciplinary": {"_count": 1}}, "all": {"_count": 3, "four": {"_count": 1}, "the": {"_count": 2}}, "Wow": {"_count": 1, "Harry": {"_count": 1}}, "Hermione": {"_count": 5, "dragged": {"_count": 1}, "had": {"_count": 1}, "turned": {"_count": 1}, "pointed": {"_count": 1}, "cried": {"_count": 1}}, "at": {"_count": 10, "last": {"_count": 9}, "least": {"_count": 1}}, "only": {"_count": 4, "the": {"_count": 2}, "those": {"_count": 1}, "their": {"_count": 1}}, "Lockhart": {"_count": 1, "was": {"_count": 1}}, "proven": {"_count": 1, "guilty": {"_count": 1}}, "nearly": {"_count": 1, "everyone": {"_count": 1}}, "his": {"_count": 11, "own": {"_count": 1}, "return": {"_count": 2}, "dying": {"_count": 1}, "letter": {"_count": 1}, "face": {"_count": 3}, "uncle": {"_count": 1}, "throat": {"_count": 1}, "surroundings": {"_count": 1}}, "were": {"_count": 3, "cutting": {"_count": 1}, "safely": {"_count": 1}, "supposed": {"_count": 1}}, "Riddle": {"_count": 1, "stopped": {"_count": 1}}, "Neville": {"_count": 1, "Dean": {"_count": 1}}, "past": {"_count": 4, "midnight": {"_count": 4}}, "Black": {"_count": 1, "was": {"_count": 1}}, "lanterns": {"_count": 1, "flickered": {"_count": 1}}, "late": {"_count": 2, "on": {"_count": 1}, "that": {"_count": 1}}, "Harry": {"_count": 12, "had": {"_count": 5}, "voiced": {"_count": 1}, "could": {"_count": 2}, "asked": {"_count": 1}, "felt": {"_count": 1}, "and": {"_count": 1}, "reached": {"_count": 1}}, "dawn": {"_count": 1, "in": {"_count": 1}}, "last": {"_count": 2, "winter": {"_count": 1}, "hoping": {"_count": 1}}, "further": {"_count": 1, "notice": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "daybreak": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 3, "flown": {"_count": 1}, "tried": {"_count": 1}, "heard": {"_count": 1}}, "we": {"_count": 5, "are": {"_count": 1}, "can": {"_count": 1}, "come": {"_count": 1}, "hear": {"_count": 1}, "get": {"_count": 1}}, "Wood": {"_count": 1, "said": {"_count": 1}}, "Gryffindor": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 8, "reached": {"_count": 2}, "had": {"_count": 2}, "became": {"_count": 1}, "swooped": {"_count": 1}, "looked": {"_count": 1}, "drew": {"_count": 1}}, "Buckbeaks": {"_count": 1, "appeal": {"_count": 1}}, "weve": {"_count": 3, "sorted": {"_count": 1}, "got": {"_count": 2}}, "Im": {"_count": 1, "satisfied": {"_count": 1}}, "theyve": {"_count": 2, "seen": {"_count": 1}, "gone": {"_count": 1}}, "Peeves": {"_count": 1, "s": {"_count": 1}}, "then": {"_count": 1, "Sirius": {"_count": 1}}, "tonight": {"_count": 1, "youll": {"_count": 1}}, "such": {"_count": 3, "time": {"_count": 3}}, "that": {"_count": 6, "is": {"_count": 1}, "afternoon": {"_count": 1}, "time": {"_count": 1}, "moment": {"_count": 1}, "point": {"_count": 2}}, "youre": {"_count": 3, "in": {"_count": 1}, "expelled": {"_count": 1}, "absolutely": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "each": {"_count": 1, "school": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "Tuesday": {"_count": 1, "evening": {"_count": 1}}, "Cedrics": {"_count": 1, "friends": {"_count": 1}}, "Moodys": {"_count": 1, "next": {"_count": 1}}, "her": {"_count": 1, "dying": {"_count": 1}}, "sixth": {"_count": 1, "year": {"_count": 1}}, "three": {"_count": 1, "": {"_count": 1}}, "June": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "Crouch": {"_count": 1, "got": {"_count": 1}}, "morning": {"_count": 2, "do": {"_count": 1}, "": {"_count": 1}}, "after": {"_count": 4, "Ive": {"_count": 1}, "dinner": {"_count": 1}, "the": {"_count": 2}}, "Harrys": {"_count": 1, "mind": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "midnight": {"_count": 4, "where": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}}, "every": {"_count": 1, "lamp": {"_count": 1}}, "Ginny": {"_count": 1, "had": {"_count": 1}}, "darkness": {"_count": 1, "closed": {"_count": 1}}, "charges": {"_count": 1, "have": {"_count": 1}}, "this": {"_count": 4, "moment": {"_count": 3}, "will": {"_count": 1}}, "Cho": {"_count": 1, "was": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "oclock": {"_count": 1}}, "VVoldemort": {"_count": 1, "oh": {"_count": 1}}, "now": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "much": {"_count": 1, "later": {"_count": 1}}, "nine": {"_count": 1, "oclock": {"_count": 1}}, "somebody": {"_count": 1, "in": {"_count": 1}}, "someone": {"_count": 1, "came": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "BANG": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "recently": {"_count": 1}}, "break": {"_count": 1, "next": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "Monday": {"_count": 2, "my": {"_count": 1}, "Potter": {"_count": 1}}, "two": {"_count": 1, "days": {"_count": 1}}, "Montague": {"_count": 1, "reappears": {"_count": 1}}, "called": {"_count": 1, "for": {"_count": 1}}, "evening": {"_count": 1, "for": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 2}, "an": {"_count": 1}}, "later": {"_count": 1, "until": {"_count": 1}}, "Snape": {"_count": 1, "looked": {"_count": 1}}, "breakfast": {"_count": 1, "by": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "by": {"_count": 1, "dodging": {"_count": 1}}, "about": {"_count": 1, "two": {"_count": 1}}, "curfew": {"_count": 1, "most": {"_count": 1}}, "recently": {"_count": 1, "taught": {"_count": 1}}, "those": {"_count": 1, "of": {"_count": 1}}, "forced": {"_count": 2, "to": {"_count": 2}}, "both": {"_count": 1, "sensations": {"_count": 1}}, "finding": {"_count": 1, "the": {"_count": 1}}, "March": {"_count": 1, "did": {"_count": 1}}, "Bill": {"_count": 1, "following": {"_count": 1}}, "suddenly": {"_count": 1, "it": {"_count": 1}}, "quite": {"_count": 1, "suddenly": {"_count": 1}}, "Petunia": {"_count": 1, "was": {"_count": 1}}, "SILENCE": {"_count": 1, "": {"_count": 1}}}, "lunchtime": {"_count": 16, "when": {"_count": 1, "he": {"_count": 1}}, "wouldnt": {"_count": 1, "fall": {"_count": 1}}, "and": {"_count": 3, "as": {"_count": 1}, "queued": {"_count": 1}, "once": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "went": {"_count": 1}}, "on": {"_count": 1, "Monday": {"_count": 1}}, "said": {"_count": 1, "Karkaroff": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "retreated": {"_count": 1}}, "Hermione": {"_count": 1, "dropped": {"_count": 1}}}, "when": {"_count": 1904, "he": {"_count": 403, "thought": {"_count": 5}, "changed": {"_count": 1}, "left": {"_count": 5}, "couldnt": {"_count": 1}, "reminded": {"_count": 1}, "strained": {"_count": 1}, "got": {"_count": 7}, "drew": {"_count": 1}, "Harry": {"_count": 1}, "found": {"_count": 4}, "asked": {"_count": 1}, "woke": {"_count": 2}, "had": {"_count": 59}, "reached": {"_count": 8}, "said": {"_count": 7}, "turned": {"_count": 2}, "told": {"_count": 9}, "saw": {"_count": 17}, "realized": {"_count": 8}, "was": {"_count": 60}, "half": {"_count": 1}, "wasnt": {"_count": 1}, "mentioned": {"_count": 1}, "missed": {"_count": 3}, "heard": {"_count": 13}, "tripped": {"_count": 1}, "hit": {"_count": 1}, "resurfaced": {"_count": 1}, "raised": {"_count": 2}, "went": {"_count": 4}, "wakes": {"_count": 1}, "put": {"_count": 3}, "spotted": {"_count": 1}, "recognized": {"_count": 1}, "finally": {"_count": 2}, "is": {"_count": 6}, "Black": {"_count": 1}, "arrived": {"_count": 8}, "sees": {"_count": 2}, "tried": {"_count": 1}, "ran": {"_count": 1}, "did": {"_count": 5}, "knew": {"_count": 4}, "met": {"_count": 1}, "transformed": {"_count": 1}, "next": {"_count": 1}, "himself": {"_count": 2}, "lost": {"_count": 2}, "or": {"_count": 1}, "killed": {"_count": 1}, "spoke": {"_count": 5}, "stepped": {"_count": 2}, "would": {"_count": 5}, "wanted": {"_count": 4}, "wants": {"_count": 5}, "ought": {"_count": 1}, "seemed": {"_count": 1}, "noticed": {"_count": 3}, "felt": {"_count": 1}, "needed": {"_count": 1}, "finds": {"_count": 1}, "paused": {"_count": 1}, "vanished": {"_count": 3}, "escaped": {"_count": 1}, "passed": {"_count": 1}, "lived": {"_count": 1}, "picked": {"_count": 1}, "removed": {"_count": 1}, "pushed": {"_count": 1}, "still": {"_count": 1}, "thinks": {"_count": 1}, "returned": {"_count": 5}, "entered": {"_count": 4}, "could": {"_count": 3}, "might": {"_count": 1}, "came": {"_count": 5}, "has": {"_count": 2}, "made": {"_count": 2}, "didnt": {"_count": 2}, "returns": {"_count": 1}, "talks": {"_count": 1}, "attempted": {"_count": 2}, "sat": {"_count": 1}, "experienced": {"_count": 1}, "caught": {"_count": 3}, "looked": {"_count": 3}, "touched": {"_count": 1}, "answered": {"_count": 1}, "fell": {"_count": 2}, "and": {"_count": 4}, "pulled": {"_count": 2}, "says": {"_count": 1}, "let": {"_count": 1}, "showed": {"_count": 1}, "possessed": {"_count": 1}, "knocked": {"_count": 1}, "Hagrid": {"_count": 1}, "gets": {"_count": 2}, "remembered": {"_count": 2}, "passes": {"_count": 1}, "blew": {"_count": 1}, "joined": {"_count": 1}, "gestured": {"_count": 1}, "failed": {"_count": 1}, "disappears": {"_count": 1}, "appeared": {"_count": 1}, "confided": {"_count": 1}, "began": {"_count": 1}, "opened": {"_count": 1}, "hatched": {"_count": 1}, "attacked": {"_count": 1}, "walked": {"_count": 1}, "when": {"_count": 1}, "awakens": {"_count": 1}, "comes": {"_count": 1}, "released": {"_count": 1}, "uses": {"_count": 1}, "imagined": {"_count": 1}, "suggested": {"_count": 1}, "should": {"_count": 1}, "lowered": {"_count": 1}, "croaked": {"_count": 1}, "gave": {"_count": 1}, "discovered": {"_count": 1}, "chose": {"_count": 1}, "wondered": {"_count": 1}, "can": {"_count": 1}, "does": {"_count": 2}, "will": {"_count": 1}, "committed": {"_count": 1}, "pursued": {"_count": 1}}, "a": {"_count": 43, "car": {"_count": 1}, "powerful": {"_count": 1}, "voice": {"_count": 7}, "doorknob": {"_count": 1}, "slithering": {"_count": 1}, "huge": {"_count": 1}, "little": {"_count": 1}, "loud": {"_count": 3}, "girl": {"_count": 1}, "tall": {"_count": 1}, "wizard": {"_count": 1}, "large": {"_count": 4}, "shout": {"_count": 1}, "persons": {"_count": 1}, "cockatrice": {"_count": 1}, "dose": {"_count": 1}, "death": {"_count": 1}, "scream": {"_count": 1}, "faithful": {"_count": 1}, "wand": {"_count": 1}, "fully": {"_count": 1}, "sneaky": {"_count": 1}, "medieval": {"_count": 1}, "person": {"_count": 1}, "selfproclaimed": {"_count": 1}, "bird": {"_count": 1}, "crashing": {"_count": 1}, "noise": {"_count": 1}, "Horcrux": {"_count": 1}, "powderblue": {"_count": 1}, "door": {"_count": 1}, "deafening": {"_count": 1}}, "two": {"_count": 3, "owls": {"_count": 1}, "Neptunes": {"_count": 1}, "large": {"_count": 1}}, "hes": {"_count": 13, "older": {"_count": 1}, "got": {"_count": 1}, "pleased": {"_count": 1}, "possessing": {"_count": 1}, "on": {"_count": 1}, "going": {"_count": 1}, "bin": {"_count": 1}, "been": {"_count": 1}, "at": {"_count": 2}, "not": {"_count": 2}, "most": {"_count": 1}}, "Mr": {"_count": 4, "Dursley": {"_count": 1}, "Weasley": {"_count": 1}, "Crouch": {"_count": 1}, "Fudge": {"_count": 1}}, "your": {"_count": 4, "parents": {"_count": 1}, "Nimbus": {"_count": 1}, "mind": {"_count": 1}, "dad": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "as": {"_count": 2, "much": {"_count": 1}, "was": {"_count": 1}}, "Dudley": {"_count": 3, "had": {"_count": 1}, "found": {"_count": 1}, "mumbled": {"_count": 1}}, "his": {"_count": 15, "parents": {"_count": 1}, "favorite": {"_count": 1}, "name": {"_count": 3}, "bedroom": {"_count": 1}, "own": {"_count": 1}, "hand": {"_count": 1}, "uncle": {"_count": 1}, "scar": {"_count": 1}, "godfather": {"_count": 1}, "father": {"_count": 2}, "emotions": {"_count": 1}, "partially": {"_count": 1}}, "Harry": {"_count": 107, "went": {"_count": 1}, "started": {"_count": 1}, "couldnt": {"_count": 1}, "had": {"_count": 18}, "told": {"_count": 4}, "sat": {"_count": 1}, "and": {"_count": 6}, "roughly": {"_count": 1}, "kicked": {"_count": 1}, "opened": {"_count": 2}, "bellowed": {"_count": 1}, "remembered": {"_count": 1}, "reminded": {"_count": 1}, "glancing": {"_count": 1}, "knocked": {"_count": 2}, "informed": {"_count": 1}, "awoke": {"_count": 1}, "walked": {"_count": 1}, "slammed": {"_count": 1}, "heard": {"_count": 2}, "finally": {"_count": 2}, "Ron": {"_count": 5}, "first": {"_count": 1}, "still": {"_count": 1}, "pointed": {"_count": 1}, "reached": {"_count": 1}, "might": {"_count": 1}, "decided": {"_count": 1}, "handed": {"_count": 1}, "did": {"_count": 2}, "entered": {"_count": 4}, "expecting": {"_count": 1}, "got": {"_count": 1}, "left": {"_count": 1}, "discussed": {"_count": 1}, "was": {"_count": 4}, "made": {"_count": 1}, "caught": {"_count": 2}, "sets": {"_count": 1}, "raised": {"_count": 1}, "taught": {"_count": 1}, "confided": {"_count": 1}, "shook": {"_count": 1}, "passed": {"_count": 1}, "least": {"_count": 1}, "demonstrated": {"_count": 1}, "looked": {"_count": 4}, "saw": {"_count": 2}, "is": {"_count": 1}, "wanted": {"_count": 1}, "approached": {"_count": 1}, "arrived": {"_count": 2}, "hastily": {"_count": 1}, "realized": {"_count": 1}, "appeared": {"_count": 1}, "immediately": {"_count": 1}, "gave": {"_count": 1}, "resolved": {"_count": 1}, "shouted": {"_count": 1}, "burst": {"_count": 1}, "Ginny": {"_count": 1}}, "Ive": {"_count": 8, "finished": {"_count": 1}, "been": {"_count": 2}, "had": {"_count": 1}, "got": {"_count": 3}, "killed": {"_count": 1}}, "it": {"_count": 60, "was": {"_count": 8}, "too": {"_count": 1}, "screamed": {"_count": 1}, "hatches": {"_count": 1}, "is": {"_count": 2}, "happened": {"_count": 6}, "wanders": {"_count": 1}, "did": {"_count": 3}, "came": {"_count": 6}, "works": {"_count": 1}, "would": {"_count": 2}, "saw": {"_count": 1}, "all": {"_count": 1}, "charged": {"_count": 1}, "Sorted": {"_count": 1}, "detects": {"_count": 2}, "had": {"_count": 3}, "froze": {"_count": 1}, "fell": {"_count": 1}, "burned": {"_count": 1}, "does": {"_count": 1}, "goes": {"_count": 1}, "comes": {"_count": 1}, "hurts": {"_count": 1}, "appears": {"_count": 1}, "makes": {"_count": 1}, "dissolved": {"_count": 1}, "underestimates": {"_count": 1}, "arrived": {"_count": 1}, "rattled": {"_count": 1}, "started": {"_count": 1}, "will": {"_count": 1}, "turned": {"_count": 1}, "hears": {"_count": 1}, "heard": {"_count": 1}, "gets": {"_count": 1}}, "we": {"_count": 62, "took": {"_count": 3}, "are": {"_count": 2}, "saw": {"_count": 1}, "met": {"_count": 3}, "were": {"_count": 11}, "get": {"_count": 5}, "bought": {"_count": 1}, "said": {"_count": 2}, "should": {"_count": 2}, "see": {"_count": 1}, "arrived": {"_count": 3}, "wrote": {"_count": 1}, "played": {"_count": 1}, "left": {"_count": 1}, "reached": {"_count": 1}, "got": {"_count": 2}, "warned": {"_count": 1}, "had": {"_count": 2}, "adopted": {"_count": 1}, "battled": {"_count": 1}, "but": {"_count": 1}, "passed": {"_count": 1}, "can": {"_count": 2}, "visited": {"_count": 1}, "followed": {"_count": 1}, "have": {"_count": 4}, "pictured": {"_count": 1}, "look": {"_count": 1}, "heard": {"_count": 1}, "three": {"_count": 1}, "cant": {"_count": 1}, "never": {"_count": 1}, "go": {"_count": 1}}, "the": {"_count": 141, "owner": {"_count": 1}, "cart": {"_count": 1}, "compartment": {"_count": 3}, "cauldron": {"_count": 1}, "owls": {"_count": 1}, "Snitch": {"_count": 1}, "crowd": {"_count": 2}, "book": {"_count": 1}, "color": {"_count": 1}, "portrait": {"_count": 6}, "time": {"_count": 3}, "rest": {"_count": 4}, "true": {"_count": 1}, "doorbell": {"_count": 1}, "Masons": {"_count": 1}, "front": {"_count": 1}, "salamander": {"_count": 1}, "bird": {"_count": 1}, "trees": {"_count": 1}, "next": {"_count": 3}, "door": {"_count": 4}, "car": {"_count": 1}, "bus": {"_count": 2}, "sound": {"_count": 2}, "train": {"_count": 1}, "last": {"_count": 2}, "dementors": {"_count": 2}, "Slytherins": {"_count": 1}, "bell": {"_count": 4}, "box": {"_count": 1}, "house": {"_count": 1}, "witch": {"_count": 1}, "Riddle": {"_count": 1}, "Riddles": {"_count": 1}, "sun": {"_count": 3}, "wand": {"_count": 1}, "Irish": {"_count": 1}, "whole": {"_count": 2}, "pleasemen": {"_count": 1}, "Hogwarts": {"_count": 1}, "post": {"_count": 1}, "class": {"_count": 2}, "champions": {"_count": 1}, "first": {"_count": 2}, "person": {"_count": 1}, "doors": {"_count": 2}, "seeker": {"_count": 1}, "lesson": {"_count": 1}, "deep": {"_count": 1}, "spider": {"_count": 1}, "winner": {"_count": 1}, "lunch": {"_count": 1}, "idiots": {"_count": 1}, "curtained": {"_count": 1}, "silver": {"_count": 1}, "signal": {"_count": 1}, "action": {"_count": 1}, "morning": {"_count": 1}, "three": {"_count": 1}, "meeting": {"_count": 1}, "date": {"_count": 1}, "giants": {"_count": 1}, "lamps": {"_count": 1}, "snake": {"_count": 2}, "murderer": {"_count": 1}, "rapturous": {"_count": 1}, "talking": {"_count": 1}, "Minister": {"_count": 1}, "old": {"_count": 1}, "spinning": {"_count": 1}, "lift": {"_count": 2}, "female": {"_count": 1}, "Death": {"_count": 2}, "creature": {"_count": 1}, "curse": {"_count": 1}, "dormitory": {"_count": 1}, "wretched": {"_count": 1}, "Dark": {"_count": 4}, "jinx": {"_count": 1}, "Ministry": {"_count": 1}, "squires": {"_count": 1}, "offense": {"_count": 1}, "Prince": {"_count": 1}, "mind": {"_count": 1}, "werewolf": {"_count": 1}, "laughter": {"_count": 1}, "prophecy": {"_count": 1}, "clock": {"_count": 1}, "glass": {"_count": 1}, "horrible": {"_count": 1}, "motorbike": {"_count": 1}, "words": {"_count": 1}, "cake": {"_count": 1}, "basin": {"_count": 1}, "subjects": {"_count": 1}, "Snatchers": {"_count": 1}, "tiara": {"_count": 1}, "Clankers": {"_count": 1}, "diary": {"_count": 1}, "passage": {"_count": 1}, "window": {"_count": 1}, "Headless": {"_count": 1}, "noble": {"_count": 1}, "battle": {"_count": 1}}, "she": {"_count": 101, "asked": {"_count": 2}, "told": {"_count": 3}, "came": {"_count": 3}, "was": {"_count": 14}, "finds": {"_count": 1}, "spoke": {"_count": 3}, "saw": {"_count": 8}, "gave": {"_count": 2}, "transformed": {"_count": 1}, "wouldnt": {"_count": 2}, "gets": {"_count": 1}, "checked": {"_count": 1}, "had": {"_count": 9}, "showed": {"_count": 1}, "is": {"_count": 1}, "sat": {"_count": 1}, "least": {"_count": 1}, "wen": {"_count": 1}, "made": {"_count": 1}, "drew": {"_count": 1}, "wasnt": {"_count": 1}, "usually": {"_count": 1}, "brought": {"_count": 1}, "reached": {"_count": 2}, "continued": {"_count": 1}, "said": {"_count": 5}, "put": {"_count": 1}, "raised": {"_count": 1}, "abstained": {"_count": 1}, "entered": {"_count": 1}, "opened": {"_count": 1}, "wished": {"_count": 1}, "does": {"_count": 1}, "nipped": {"_count": 1}, "strode": {"_count": 1}, "left": {"_count": 1}, "got": {"_count": 1}, "moved": {"_count": 1}, "isnt": {"_count": 1}, "finally": {"_count": 1}, "went": {"_count": 1}, "arrives": {"_count": 1}, "ought": {"_count": 1}, "agreed": {"_count": 1}, "": {"_count": 1}, "vanished": {"_count": 1}, "couldnt": {"_count": 4}, "thought": {"_count": 2}, "looked": {"_count": 1}, "took": {"_count": 1}, "first": {"_count": 1}, "stopped": {"_count": 1}, "nodded": {"_count": 1}, "tried": {"_count": 1}, "died": {"_count": 1}}, "they": {"_count": 166, "got": {"_count": 4}, "walked": {"_count": 1}, "saw": {"_count": 11}, "had": {"_count": 18}, "came": {"_count": 2}, "were": {"_count": 22}, "heard": {"_count": 6}, "arrived": {"_count": 6}, "wished": {"_count": 1}, "went": {"_count": 2}, "need": {"_count": 1}, "reached": {"_count": 11}, "landed": {"_count": 1}, "asked": {"_count": 2}, "happen": {"_count": 1}, "met": {"_count": 3}, "wake": {"_count": 1}, "broke": {"_count": 1}, "lose": {"_count": 1}, "climbed": {"_count": 1}, "left": {"_count": 2}, "ran": {"_count": 1}, "returned": {"_count": 2}, "cut": {"_count": 1}, "opened": {"_count": 1}, "awoke": {"_count": 1}, "finally": {"_count": 4}, "refused": {"_count": 1}, "start": {"_count": 1}, "looked": {"_count": 1}, "entered": {"_count": 8}, "blast": {"_count": 1}, "passed": {"_count": 1}, "tried": {"_count": 1}, "approached": {"_count": 1}, "gave": {"_count": 1}, "became": {"_count": 1}, "shrieked": {"_count": 1}, "are": {"_count": 2}, "feel": {"_count": 1}, "suck": {"_count": 1}, "might": {"_count": 2}, "wish": {"_count": 1}, "did": {"_count": 1}, "want": {"_count": 1}, "all": {"_count": 3}, "have": {"_count": 1}, "needs": {"_count": 1}, "take": {"_count": 1}, "found": {"_count": 2}, "would": {"_count": 1}, "emerged": {"_count": 1}, "reappeared": {"_count": 1}, "insisted": {"_count": 1}, "rounded": {"_count": 1}, "held": {"_count": 1}, "died": {"_count": 1}, "see": {"_count": 1}, "flew": {"_count": 1}, "get": {"_count": 3}, "moved": {"_count": 1}, "come": {"_count": 1}, "appeared": {"_count": 1}, "managed": {"_count": 1}, "realized": {"_count": 1}, "Our": {"_count": 1}, "wanted": {"_count": 1}, "first": {"_count": 1}, "discovered": {"_count": 1}, "decided": {"_count": 1}, "mentioned": {"_count": 1}}, "Hagrid": {"_count": 5, "spoke": {"_count": 1}, "tapped": {"_count": 1}, "had": {"_count": 2}, "threw": {"_count": 1}}, "every": {"_count": 1, "kid": {"_count": 1}}, "Dumbledore": {"_count": 18, "told": {"_count": 2}, "turns": {"_count": 1}, "read": {"_count": 1}, "had": {"_count": 4}, "hears": {"_count": 2}, "was": {"_count": 1}, "took": {"_count": 1}, "\u2018borrowed": {"_count": 1}, "died": {"_count": 2}, "removed": {"_count": 1}, "destroyed": {"_count": 1}, "knew": {"_count": 1}}, "you": {"_count": 112, "was": {"_count": 1}, "got": {"_count": 7}, "get": {"_count": 4}, "were": {"_count": 18}, "leave": {"_count": 2}, "look": {"_count": 5}, "are": {"_count": 4}, "didnt": {"_count": 1}, "wrote": {"_count": 2}, "attacked": {"_count": 1}, "know": {"_count": 3}, "appointed": {"_count": 1}, "fell": {"_count": 1}, "will": {"_count": 1}, "have": {"_count": 5}, "left": {"_count": 2}, "touch": {"_count": 1}, "caught": {"_count": 1}, "is": {"_count": 1}, "hear": {"_count": 1}, "open": {"_count": 1}, "would": {"_count": 1}, "finally": {"_count": 1}, "feel": {"_count": 2}, "came": {"_count": 1}, "say": {"_count": 2}, "saw": {"_count": 2}, "arrived": {"_count": 2}, "said": {"_count": 2}, "werent": {"_count": 1}, "helped": {"_count": 1}, "fought": {"_count": 1}, "entered": {"_count": 2}, "witnessed": {"_count": 1}, "gave": {"_count": 1}, "made": {"_count": 1}, "did": {"_count": 2}, "had": {"_count": 1}, "die": {"_count": 1}, "felt": {"_count": 1}, "put": {"_count": 1}, "come": {"_count": 2}, "call": {"_count": 1}, "dont": {"_count": 1}, "stop": {"_count": 1}, "told": {"_count": 2}, "couldnt": {"_count": 1}, "do": {"_count": 1}, "met": {"_count": 1}, "turn": {"_count": 1}, "take": {"_count": 1}, "stared": {"_count": 1}, "first": {"_count": 1}, "meet": {"_count": 1}, "mention": {"_count": 1}, "ended": {"_count": 1}, "think": {"_count": 1}, "packed": {"_count": 1}, "went": {"_count": 1}, "thought": {"_count": 1}, "lost": {"_count": 1}}, "its": {"_count": 9, "brother": {"_count": 1}, "hatched": {"_count": 1}, "time": {"_count": 2}, "not": {"_count": 1}, "over": {"_count": 1}, "been": {"_count": 2}, "broken": {"_count": 1}}, "Vol": {"_count": 1, "sorry": {"_count": 1}}, "Uncle": {"_count": 4, "Vernon": {"_count": 4}}, "I": {"_count": 147, "got": {"_count": 5}, "blow": {"_count": 1}, "see": {"_count": 5}, "left": {"_count": 5}, "had": {"_count": 7}, "traveled": {"_count": 1}, "can": {"_count": 1}, "come": {"_count": 1}, "was": {"_count": 32}, "find": {"_count": 1}, "caught": {"_count": 1}, "sensed": {"_count": 1}, "took": {"_count": 1}, "saw": {"_count": 6}, "ask": {"_count": 1}, "tell": {"_count": 1}, "let": {"_count": 1}, "offered": {"_count": 1}, "did": {"_count": 1}, "received": {"_count": 1}, "transform": {"_count": 1}, "have": {"_count": 2}, "arrived": {"_count": 4}, "came": {"_count": 2}, "need": {"_count": 1}, "questioned": {"_count": 1}, "compare": {"_count": 1}, "wrote": {"_count": 1}, "open": {"_count": 1}, "went": {"_count": 2}, "havent": {"_count": 2}, "firs": {"_count": 1}, "passed": {"_count": 1}, "get": {"_count": 1}, "seen": {"_count": 1}, "fired": {"_count": 1}, "seemed": {"_count": 1}, "warned": {"_count": 1}, "heard": {"_count": 5}, "drop": {"_count": 1}, "asked": {"_count": 2}, "turn": {"_count": 1}, "told": {"_count": 1}, "say": {"_count": 3}, "am": {"_count": 3}, "spoke": {"_count": 1}, "said": {"_count": 1}, "knew": {"_count": 2}, "want": {"_count": 2}, "set": {"_count": 1}, "explained": {"_count": 1}, "joined": {"_count": 1}, "found": {"_count": 1}, "first": {"_count": 1}, "looked": {"_count": 1}, "mentioned": {"_count": 2}, "give": {"_count": 2}, "go": {"_count": 1}, "could": {"_count": 1}, "returned": {"_count": 1}, "confess": {"_count": 1}, "leave": {"_count": 1}, "put": {"_count": 1}, "used": {"_count": 1}, "plucked": {"_count": 1}, "cursed": {"_count": 1}, "stabbed": {"_count": 1}, "knowingly": {"_count": 1}, "made": {"_count": 1}, "bought": {"_count": 1}, "finally": {"_count": 1}, "decided": {"_count": 1}, "strike": {"_count": 1}}, "something": {"_count": 7, "like": {"_count": 1}, "happened": {"_count": 1}, "of": {"_count": 1}, "caught": {"_count": 1}, "small": {"_count": 1}, "else": {"_count": 1}, "unpleasant": {"_count": 1}}, "Scabbers": {"_count": 1, "finally": {"_count": 1}}, "hed": {"_count": 12, "had": {"_count": 1}, "left": {"_count": 1}, "jumped": {"_count": 1}, "see": {"_count": 1}, "placed": {"_count": 1}, "been": {"_count": 1}, "first": {"_count": 1}, "realized": {"_count": 1}, "expressly": {"_count": 1}, "flung": {"_count": 1}, "finished": {"_count": 1}, "won": {"_count": 1}}, "youre": {"_count": 17, "very": {"_count": 1}, "on": {"_count": 3}, "older": {"_count": 1}, "talking": {"_count": 1}, "dealing": {"_count": 2}, "in": {"_count": 2}, "not": {"_count": 1}, "dressed": {"_count": 1}, "aiming": {"_count": 1}, "off": {"_count": 1}, "under": {"_count": 1}, "making": {"_count": 1}, "a": {"_count": 1}}, "my": {"_count": 5, "Great": {"_count": 1}, "sources": {"_count": 1}, "pubs": {"_count": 1}, "mother": {"_count": 2}}, "one": {"_count": 2, "of": {"_count": 2}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "clouds": {"_count": 1, "of": {"_count": 1}}, "Hermione": {"_count": 19, "s": {"_count": 1}, "caught": {"_count": 2}, "grabbed": {"_count": 1}, "tried": {"_count": 1}, "ushered": {"_count": 1}, "was": {"_count": 1}, "fell": {"_count": 1}, "said": {"_count": 1}, "let": {"_count": 1}, "elaborated": {"_count": 1}, "opened": {"_count": 1}, "joined": {"_count": 1}, "asked": {"_count": 1}, "returned": {"_count": 1}, "spoke": {"_count": 1}, "entered": {"_count": 1}, "spotted": {"_count": 1}, "moved": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "someone": {"_count": 4, "far": {"_count": 1}, "finds": {"_count": 1}, "yelled": {"_count": 1}, "walked": {"_count": 1}}, "another": {"_count": 3, "owl": {"_count": 1}, "door": {"_count": 1}, "set": {"_count": 1}}, "Professor": {"_count": 16, "Quirrell": {"_count": 1}, "McGonagall": {"_count": 3}, "Lupin": {"_count": 3}, "Trelawney": {"_count": 3}, "Sprout": {"_count": 1}, "Marchbanks": {"_count": 1}, "Snape": {"_count": 1}, "Slughorn": {"_count": 1}, "Flitwick": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Snape": {"_count": 6, "crossed": {"_count": 1}, "had": {"_count": 1}, "closed": {"_count": 1}, "saw": {"_count": 1}, "killed": {"_count": 1}, "finished": {"_count": 1}}, "Flint": {"_count": 1, "blocked": {"_count": 1}}, "youve": {"_count": 7, "had": {"_count": 1}, "found": {"_count": 1}, "done": {"_count": 1}, "been": {"_count": 3}, "got": {"_count": 1}}, "Firenze": {"_count": 2, "suddenly": {"_count": 1}, "called": {"_count": 1}}, "their": {"_count": 4, "other": {"_count": 1}, "old": {"_count": 1}, "opponents": {"_count": 1}, "minds": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "was": {"_count": 3, "at": {"_count": 1}, "the": {"_count": 2}}, "at": {"_count": 7, "last": {"_count": 5}, "the": {"_count": 1}, "a": {"_count": 1}}, "YouKnowWho": {"_count": 4, "disappeared": {"_count": 1}, "tried": {"_count": 1}, "was": {"_count": 1}, "lost": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "Ginny": {"_count": 5, "shrieked": {"_count": 1}, "fell": {"_count": 1}, "got": {"_count": 1}, "Fleur": {"_count": 1}, "had": {"_count": 1}}, "sure": {"_count": 1, "enough": {"_count": 1}}, "Lockharts": {"_count": 1, "hand": {"_count": 1}}, "Lockhart": {"_count": 1, "went": {"_count": 1}}, "like": {"_count": 1, "me": {"_count": 1}}, "there": {"_count": 11, "was": {"_count": 6}, "is": {"_count": 2}, "are": {"_count": 2}, "were": {"_count": 1}}, "youd": {"_count": 2, "come": {"_count": 1}, "be": {"_count": 1}}, "shuffling": {"_count": 1, "footsteps": {"_count": 1}}, "Justin": {"_count": 1, "caught": {"_count": 1}}, "magic": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 6, "Bludger": {"_count": 1}, "would": {"_count": 1}, "day": {"_count": 1}, "Sirius": {"_count": 1}, "package": {"_count": 1}, "spell": {"_count": 1}}, "weve": {"_count": 4, "taken": {"_count": 1}, "sorted": {"_count": 1}, "got": {"_count": 1}, "been": {"_count": 1}}, "Madam": {"_count": 3, "Pomfrey": {"_count": 2}, "Malkin": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "was": {"_count": 1}}, "Percy": {"_count": 2, "apoplectic": {"_count": 1}, "gave": {"_count": 1}}, "Im": {"_count": 7, "through": {"_count": 1}, "talking": {"_count": 1}, "not": {"_count": 1}, "going": {"_count": 1}, "seventeen": {"_count": 1}, "gone": {"_count": 1}, "about": {"_count": 1}}, "George": {"_count": 1, "pretended": {"_count": 1}}, "an": {"_count": 3, "angry": {"_count": 1}, "unnatural": {"_count": 1}, "owl": {"_count": 1}}, "term": {"_count": 2, "ends": {"_count": 1}, "ended": {"_count": 1}}, "Riddle": {"_count": 2, "pushed": {"_count": 1}, "was": {"_count": 1}}, "Ron": {"_count": 18, "stubbed": {"_count": 1}, "banged": {"_count": 1}, "made": {"_count": 1}, "continued": {"_count": 1}, "told": {"_count": 1}, "burst": {"_count": 1}, "entered": {"_count": 1}, "asked": {"_count": 2}, "elbowed": {"_count": 1}, "tried": {"_count": 1}, "looked": {"_count": 1}, "drew": {"_count": 1}, "was": {"_count": 1}, "decided": {"_count": 1}, "gave": {"_count": 1}, "shouted": {"_count": 1}, "and": {"_count": 1}}, "none": {"_count": 5, "here": {"_count": 3}, "of": {"_count": 2}}, "everyone": {"_count": 6, "was": {"_count": 2}, "had": {"_count": 3}, "thought": {"_count": 1}}, "sitting": {"_count": 1, "right": {"_count": 1}}, "Fred": {"_count": 4, "George": {"_count": 2}, "and": {"_count": 2}}, "what": {"_count": 1, "seemed": {"_count": 1}}, "theyd": {"_count": 1, "taken": {"_count": 1}}, "Dad": {"_count": 3, "won": {"_count": 1}, "took": {"_count": 1}, "found": {"_count": 1}}, "Rons": {"_count": 2, "old": {"_count": 1}, "labeled": {"_count": 1}}, "shes": {"_count": 6, "talking": {"_count": 1}, "supposed": {"_count": 1}, "thicker": {"_count": 1}, "roused": {"_count": 1}, "already": {"_count": 1}, "finished": {"_count": 1}}, "Black": {"_count": 3, "murdered": {"_count": 1}, "nearly": {"_count": 1}, "had": {"_count": 1}}, "little": {"_count": 1, "Arry": {"_count": 1}}, "reinforcements": {"_count": 1, "from": {"_count": 1}}, "no": {"_count": 3, "one": {"_count": 1}, "other": {"_count": 1}, "longer": {"_count": 1}}, "Pansy": {"_count": 1, "had": {"_count": 1}}, "many": {"_count": 1, "students": {"_count": 1}}, "our": {"_count": 2, "search": {"_count": 1}, "O": {"_count": 1}}, "theyre": {"_count": 7, "all": {"_count": 1}, "abou": {"_count": 1}, "babies": {"_count": 1}, "used": {"_count": 1}, "fresh": {"_count": 1}, "back": {"_count": 1}, "bound": {"_count": 1}}, "James": {"_count": 4, "married": {"_count": 1}, "stood": {"_count": 1}, "and": {"_count": 1}, "shouted": {"_count": 1}}, "this": {"_count": 5, "picture": {"_count": 1}, "is": {"_count": 2}, "class": {"_count": 1}, "tournaments": {"_count": 1}}, "thirteen": {"_count": 1, "dine": {"_count": 1}}, "were": {"_count": 9, "not": {"_count": 1}, "out": {"_count": 1}, "all": {"_count": 1}, "they": {"_count": 1}, "about": {"_count": 1}, "practicing": {"_count": 1}, "alone": {"_count": 1}, "Harry": {"_count": 1}, "under": {"_count": 1}}, "Gryffindor": {"_count": 1, "had": {"_count": 1}}, "first": {"_count": 1, "you": {"_count": 1}}, "thoughts": {"_count": 1, "such": {"_count": 1}}, "Wood": {"_count": 1, "suddenly": {"_count": 1}}, "interrupted": {"_count": 1, "these": {"_count": 1}}, "Lupin": {"_count": 1, "started": {"_count": 1}}, "wizards": {"_count": 1, "have": {"_count": 1}}, "Mrs": {"_count": 8, "Weasley": {"_count": 7}, "Figg": {"_count": 1}}, "topics": {"_count": 1, "for": {"_count": 1}}, "things": {"_count": 1, "were": {"_count": 1}}, "Frank": {"_count": 1, "awoke": {"_count": 1}}, "Voldemorts": {"_count": 1, "chair": {"_count": 1}}, "sounds": {"_count": 1, "of": {"_count": 1}}, "Hedwig": {"_count": 2, "returned": {"_count": 2}}, "people": {"_count": 3, "keep": {"_count": 1}, "are": {"_count": 1}, "stand": {"_count": 1}}, "Hermiones": {"_count": 2, "cat": {"_count": 1}, "bandylegged": {"_count": 1}}, "Archie": {"_count": 1, "had": {"_count": 1}}, "Bill": {"_count": 1, "Charlie": {"_count": 1}}, "Mullet": {"_count": 1, "had": {"_count": 1}}, "Ireland": {"_count": 1, "were": {"_count": 1}}, "Krums": {"_count": 1, "name": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "Freds": {"_count": 1, "trunk": {"_count": 1}}, "undiluted": {"_count": 1, "bubotuber": {"_count": 1}}, "Moody": {"_count": 3, "had": {"_count": 3}}, "someones": {"_count": 1, "putting": {"_count": 1}}, "are": {"_count": 2, "we": {"_count": 1}, "you": {"_count": 1}}, "have": {"_count": 5, "you": {"_count": 3}, "he": {"_count": 1}, "yeh": {"_count": 1}}, "without": {"_count": 1, "warning": {"_count": 1}}, "performing": {"_count": 1, "CrossSpecies": {"_count": 1}}, "set": {"_count": 1, "beside": {"_count": 1}}, "objects": {"_count": 1, "kept": {"_count": 1}}, "descending": {"_count": 1, "the": {"_count": 1}}, "read": {"_count": 1, "by": {"_count": 1}}, "Karkaroff": {"_count": 1, "turned": {"_count": 1}}, "to": {"_count": 2, "keep": {"_count": 1}, "duck": {"_count": 1}}, "out": {"_count": 1, "shopping": {"_count": 1}}, "Viktor": {"_count": 1, "wasnt": {"_count": 1}}, "observing": {"_count": 1, "it": {"_count": 1}}, "Lord": {"_count": 4, "Voldemort": {"_count": 4}}, "Rita": {"_count": 1, "found": {"_count": 1}}, "Cedric": {"_count": 3, "had": {"_count": 2}, "died": {"_count": 1}}, "Sirius": {"_count": 4, "broke": {"_count": 1}, "apparently": {"_count": 1}, "had": {"_count": 1}, "came": {"_count": 1}}, "interviewing": {"_count": 1, "a": {"_count": 1}}, "several": {"_count": 1, "things": {"_count": 1}}, "did": {"_count": 4, "someone": {"_count": 1}, "she": {"_count": 1}, "you": {"_count": 2}}, "Millicent": {"_count": 1, "Bagnold": {"_count": 1}}, "wound": {"_count": 1, "and": {"_count": 1}}, "Fudge": {"_count": 2, "spoke": {"_count": 1}, "had": {"_count": 1}}, "nobody": {"_count": 4, "called": {"_count": 1}, "understood": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "Mundungus": {"_count": 2, "had": {"_count": 1}, "gave": {"_count": 1}}, "had": {"_count": 1, "Sirius": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "has": {"_count": 5, "Snape": {"_count": 1}, "any": {"_count": 1}, "Malfoy": {"_count": 1}, "anyone": {"_count": 1}, "Won": {"_count": 1}}, "Sir": {"_count": 1, "Cadogan": {"_count": 1}}, "finally": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "instructed": {"_count": 1, "to": {"_count": 1}}, "Gilderoy": {"_count": 1, "Lockhart": {"_count": 1}}, "Angelinas": {"_count": 1, "whistle": {"_count": 1}}, "telling": {"_count": 1, "me": {"_count": 1}}, "Voldemort": {"_count": 6, "murders": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 2}, "believes": {"_count": 1}}, "Neville": {"_count": 1, "Dean": {"_count": 1}}, "Sturgis": {"_count": 2, "was": {"_count": 1}, "next": {"_count": 1}}, "Angelina": {"_count": 1, "came": {"_count": 1}}, "Winky": {"_count": 1, "has": {"_count": 1}}, "not": {"_count": 1, "for": {"_count": 1}}, "Dark": {"_count": 1, "wizards": {"_count": 1}}, "having": {"_count": 1, "checked": {"_count": 1}}, "Peeves": {"_count": 1, "has": {"_count": 1}}, "her": {"_count": 3, "eyes": {"_count": 1}, "fork": {"_count": 1}, "husband": {"_count": 1}}, "fangs": {"_count": 1, "that": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "somebody": {"_count": 5, "hammered": {"_count": 1}, "is": {"_count": 1}, "tapped": {"_count": 1}, "found": {"_count": 1}, "has": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "Snapes": {"_count": 1, "cold": {"_count": 1}}, "touched": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "standing": {"_count": 1, "as": {"_count": 1}}, "handling": {"_count": 2, "hot": {"_count": 1}, "Secrets": {"_count": 1}}, "all": {"_count": 4, "the": {"_count": 2}, "became": {"_count": 1}, "three": {"_count": 1}}, "confronted": {"_count": 1, "by": {"_count": 1}}, "Educational": {"_count": 1, "Decree": {"_count": 1}}, "left": {"_count": 1, "well": {"_count": 1}}, "Filch": {"_count": 1, "burst": {"_count": 1}}, "Trelawney": {"_count": 1, "had": {"_count": 1}}, "yeh": {"_count": 2, "come": {"_count": 1}, "get": {"_count": 1}}, "Bradley": {"_count": 1, "came": {"_count": 1}}, "Chambers": {"_count": 1, "came": {"_count": 1}}, "will": {"_count": 1, "we": {"_count": 1}}, "Jupiter": {"_count": 1, "and": {"_count": 1}}, "alert": {"_count": 1, "for": {"_count": 1}}, "fifty": {"_count": 1, "arrows": {"_count": 1}}, "Sibyll": {"_count": 1, "Trelawney": {"_count": 1}}, "Malfoy": {"_count": 4, "Crabbe": {"_count": 1}, "simply": {"_count": 1}, "goes": {"_count": 1}, "neither": {"_count": 1}}, "Nick": {"_count": 1, "continued": {"_count": 1}}, "bright": {"_count": 1, "green": {"_count": 1}}, "anything": {"_count": 1, "like": {"_count": 1}}, "Potter": {"_count": 1, "first": {"_count": 1}}, "Slughorn": {"_count": 3, "who": {"_count": 1}, "came": {"_count": 1}, "rumbled": {"_count": 1}}, "Fleurs": {"_count": 1, "around": {"_count": 1}}, "Charlie": {"_count": 1, "wore": {"_count": 1}}, "waved": {"_count": 1, "the": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "well": {"_count": 1, "after": {"_count": 1}}, "Zabini": {"_count": 1, "opened": {"_count": 1}}, "Hannah": {"_count": 1, "Abbott": {"_count": 1}}, "Katie": {"_count": 1, "touched": {"_count": 1}}, "do": {"_count": 1, "I": {"_count": 1}}, "Scrimgeour": {"_count": 1, "first": {"_count": 1}}, "Lavender": {"_count": 2, "crept": {"_count": 1}, "comes": {"_count": 1}}, "Apparating": {"_count": 1, "are": {"_count": 1}}, "theres": {"_count": 1, "trouble": {"_count": 1}}, "asked": {"_count": 2, "this": {"_count": 1}, "what": {"_count": 1}}, "Crack": {"_count": 1, "": {"_count": 1}}, "viewed": {"_count": 1, "close": {"_count": 1}}, "Dumbledores": {"_count": 1, "body": {"_count": 1}}, "Mollys": {"_count": 1, "not": {"_count": 1}}, "Wizards": {"_count": 1, "reproduce": {"_count": 1}}, "assembled": {"_count": 1, "folded": {"_count": 1}}, "reassuring": {"_count": 1, "Hermione": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "darkness": {"_count": 1, "fell": {"_count": 1}}, "Xenophilius": {"_count": 1, "slammed": {"_count": 1}}, "escaping": {"_count": 1, "from": {"_count": 1}}, "six": {"_count": 1, "oclock": {"_count": 1}}, "shaken": {"_count": 1, "made": {"_count": 1}}, "curfew": {"_count": 1, "lifts": {"_count": 1}}, "Albus": {"_count": 1, "was": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "nothing": {"_count": 1, "happened": {"_count": 1}}, "danger": {"_count": 1, "seemed": {"_count": 1}}, "directed": {"_count": 1, "at": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "Lily": {"_count": 1, "cast": {"_count": 1}}, "hell": {"_count": 1, "freezes": {"_count": 1}}}, "hed": {"_count": 463, "stretch": {"_count": 1, "his": {"_count": 1}}, "had": {"_count": 11, "a": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 2}, "any": {"_count": 1}, "so": {"_count": 1}, "when": {"_count": 1}, "enough": {"_count": 1}, "time": {"_count": 1}}, "spotted": {"_count": 1, "that": {"_count": 1}}, "heard": {"_count": 4, "the": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}}, "be": {"_count": 34, "about": {"_count": 1}, "able": {"_count": 7}, "eleven": {"_count": 2}, "in": {"_count": 3}, "learning": {"_count": 1}, "brilliant": {"_count": 1}, "walking": {"_count": 1}, "leaving": {"_count": 1}, "back": {"_count": 2}, "overpleased": {"_count": 1}, "smaller": {"_count": 1}, "visiting": {"_count": 1}, "feeding": {"_count": 1}, "terrified": {"_count": 1}, "lucky": {"_count": 1}, "smart": {"_count": 1}, "stupid": {"_count": 1}, "better": {"_count": 1}, "here": {"_count": 1}, "checking": {"_count": 1}, "mad": {"_count": 1}, "pleased": {"_count": 1}, "out": {"_count": 1}, "with": {"_count": 1}}, "just": {"_count": 15, "popped": {"_count": 1}, "plunged": {"_count": 1}, "dived": {"_count": 1}, "had": {"_count": 2}, "left": {"_count": 1}, "been": {"_count": 3}, "won": {"_count": 1}, "swallowed": {"_count": 2}, "traveled": {"_count": 1}, "run": {"_count": 1}, "seen": {"_count": 1}}, "planned": {"_count": 1, "this": {"_count": 1}}, "really": {"_count": 3, "cried": {"_count": 1}, "stopped": {"_count": 1}, "taken": {"_count": 1}}, "gotten": {"_count": 7, "into": {"_count": 1}, "out": {"_count": 1}, "from": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "an": {"_count": 1}, "through": {"_count": 1}}, "tried": {"_count": 2, "to": {"_count": 2}}, "been": {"_count": 43, "a": {"_count": 3}, "trying": {"_count": 1}, "to": {"_count": 1}, "wrong": {"_count": 1}, "doing": {"_count": 3}, "looking": {"_count": 1}, "playing": {"_count": 1}, "making": {"_count": 1}, "knocked": {"_count": 1}, "burned": {"_count": 1}, "hit": {"_count": 2}, "calling": {"_count": 1}, "down": {"_count": 1}, "in": {"_count": 4}, "faced": {"_count": 1}, "wondering": {"_count": 1}, "threatening": {"_count": 1}, "using": {"_count": 1}, "feeling": {"_count": 1}, "made": {"_count": 1}, "coming": {"_count": 1}, "asleep": {"_count": 1}, "too": {"_count": 1}, "acting": {"_count": 1}, "resisting": {"_count": 1}, "irritable": {"_count": 1}, "fantasizing": {"_count": 1}, "promoted": {"_count": 1}, "offered": {"_count": 1}, "voted": {"_count": 1}, "sent": {"_count": 1}, "caught": {"_count": 1}, "Confunded": {"_count": 1}, "like": {"_count": 1}, "anyone": {"_count": 1}}, "said": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "never": {"_count": 20, "even": {"_count": 1}, "done": {"_count": 1}, "gone": {"_count": 1}, "had": {"_count": 3}, "leave": {"_count": 1}, "been": {"_count": 1}, "speak": {"_count": 1}, "get": {"_count": 2}, "felt": {"_count": 2}, "meant": {"_count": 1}, "be": {"_count": 1}, "really": {"_count": 1}, "dislodged": {"_count": 1}, "teach": {"_count": 1}, "have": {"_count": 1}, "passed": {"_count": 1}}, "put": {"_count": 4, "his": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "himself": {"_count": 1}}, "have": {"_count": 28, "given": {"_count": 2}, "gotten": {"_count": 1}, "gambled": {"_count": 1}, "found": {"_count": 2}, "to": {"_count": 3}, "been": {"_count": 2}, "gone": {"_count": 1}, "someone": {"_count": 1}, "lunch": {"_count": 1}, "come": {"_count": 1}, "time": {"_count": 1}, "a": {"_count": 2}, "met": {"_count": 1}, "wanted": {"_count": 1}, "Snape": {"_count": 1}, "it": {"_count": 1}, "cured": {"_count": 1}, "known": {"_count": 1}, "died": {"_count": 1}, "let": {"_count": 1}, "seen": {"_count": 1}, "told": {"_count": 1}}, "rather": {"_count": 5, "be": {"_count": 1}, "not": {"_count": 1}, "face": {"_count": 1}, "live": {"_count": 1}, "have": {"_count": 1}}, "opened": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "make": {"_count": 3, "sure": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "trodden": {"_count": 1, "on": {"_count": 1}}, "missed": {"_count": 1, "five": {"_count": 1}}, "wanted": {"_count": 4, "to": {"_count": 4}}, "bought": {"_count": 1, "": {"_count": 1}}, "wake": {"_count": 1, "Dudley": {"_count": 1}}, "sunk": {"_count": 1, "into": {"_count": 1}}, "killed": {"_count": 2, "some": {"_count": 1}, "you": {"_count": 1}}, "once": {"_count": 1, "defeated": {"_count": 1}}, "managed": {"_count": 2, "to": {"_count": 2}}, "known": {"_count": 5, "who": {"_count": 1}, "for": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "better": {"_count": 5, "speak": {"_count": 1}, "get": {"_count": 1}, "start": {"_count": 1}, "skip": {"_count": 1}, "go": {"_count": 1}}, "change": {"_count": 1, "on": {"_count": 1}}, "followed": {"_count": 1, "through": {"_count": 1}}, "brought": {"_count": 1, "sandwiches": {"_count": 1}}, "finished": {"_count": 5, "school": {"_count": 1}, "": {"_count": 1}, "Ron": {"_count": 1}, "Lupin": {"_count": 1}, "telling": {"_count": 1}}, "like": {"_count": 5, "to": {"_count": 5}}, "shown": {"_count": 2, "back": {"_count": 1}, "Snape": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "somehow": {"_count": 1, "turned": {"_count": 1}}, "seen": {"_count": 18, "earlier": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 3}, "and": {"_count": 1}, "trying": {"_count": 1}, "enough": {"_count": 1}, "until": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 3}, "how": {"_count": 1}, "on": {"_count": 1}, "what": {"_count": 1}, "movement": {"_count": 1}, "as": {"_count": 1}}, "met": {"_count": 1, "in": {"_count": 1}}, "spent": {"_count": 1, "most": {"_count": 1}}, "almost": {"_count": 1, "hit": {"_count": 1}}, "forgotten": {"_count": 3, "when": {"_count": 1}, "all": {"_count": 1}, "to": {"_count": 1}}, "found": {"_count": 6, "something": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 3}, "himself": {"_count": 1}}, "done": {"_count": 6, "it": {"_count": 3}, "": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 1}}, "left": {"_count": 8, "the": {"_count": 1}, "Privet": {"_count": 1}, "his": {"_count": 1}, "all": {"_count": 1}, "it": {"_count": 1}, "half": {"_count": 1}, "us": {"_count": 1}, "em": {"_count": 1}}, "walked": {"_count": 4, "into": {"_count": 1}, "through": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}}, "take": {"_count": 2, "Filch": {"_count": 1}, "over": {"_count": 1}}, "already": {"_count": 3, "been": {"_count": 1}, "read": {"_count": 1}, "have": {"_count": 1}}, "jumped": {"_count": 1, "it": {"_count": 1}}, "lost": {"_count": 4, "control": {"_count": 2}, "one": {"_count": 1}, "consciousness": {"_count": 1}}, "do": {"_count": 6, "nothin": {"_count": 1}, "anything": {"_count": 3}, "that": {"_count": 1}, "": {"_count": 1}}, "realized": {"_count": 2, "that": {"_count": 1}, "hed": {"_count": 1}}, "ever": {"_count": 12, "had": {"_count": 1}, "managed": {"_count": 1}, "heard": {"_count": 1}, "been": {"_count": 2}, "tasted": {"_count": 1}, "dreamed": {"_count": 1}, "worked": {"_count": 1}, "screamed": {"_count": 1}, "considered": {"_count": 1}, "found": {"_count": 1}, "known": {"_count": 1}}, "drawn": {"_count": 1, "the": {"_count": 1}}, "touch": {"_count": 1, "her": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "buy": {"_count": 1, "his": {"_count": 1}}, "cracked": {"_count": 1, "yet": {"_count": 1}}, "won": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "promised": {"_count": 2, "himself": {"_count": 1}, "Malfoys": {"_count": 1}}, "tell": {"_count": 2, "yer": {"_count": 1}, "you": {"_count": 1}}, "got": {"_count": 10, "Hagrid": {"_count": 1}, "halfway": {"_count": 1}, "Riddles": {"_count": 1}, "there": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 1}, "rid": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "probably": {"_count": 2, "starve": {"_count": 1}, "find": {"_count": 1}}, "slammed": {"_count": 1, "the": {"_count": 1}}, "given": {"_count": 2, "Harry": {"_count": 1}, "you": {"_count": 1}}, "collapsed": {"_count": 1, "on": {"_count": 1}}, "need": {"_count": 1, "for": {"_count": 1}}, "see": {"_count": 2, "it": {"_count": 2}}, "gone": {"_count": 6, "and": {"_count": 1}, "two": {"_count": 1}, "too": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}}, "thought": {"_count": 6, "": {"_count": 1}, "she": {"_count": 1}, "about": {"_count": 1}, "what": {"_count": 1}, "of": {"_count": 1}, "hed": {"_count": 1}}, "wrecked": {"_count": 1, "something": {"_count": 1}}, "placed": {"_count": 1, "the": {"_count": 1}}, "explain": {"_count": 2, "that": {"_count": 1}, "what": {"_count": 1}}, "fallen": {"_count": 2, "over": {"_count": 1}, "hed": {"_count": 1}}, "christened": {"_count": 1, "Fluffy": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 1}, "you": {"_count": 1}}, "looked": {"_count": 2, "in": {"_count": 1}, "down": {"_count": 1}}, "find": {"_count": 2, "when": {"_count": 1}, "himself": {"_count": 1}}, "stopped": {"_count": 2, "enjoying": {"_count": 1}, "laughing": {"_count": 1}}, "intended": {"_count": 1, "": {"_count": 1}}, "received": {"_count": 2, "a": {"_count": 2}}, "finish": {"_count": 1, "this": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "made": {"_count": 3, "for": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}}, "know": {"_count": 2, "whether": {"_count": 1}, "the": {"_count": 1}}, "arrived": {"_count": 1, "at": {"_count": 1}}, "pretended": {"_count": 1, "to": {"_count": 1}}, "only": {"_count": 5, "just": {"_count": 2}, "grabbed": {"_count": 1}, "asked": {"_count": 1}, "come": {"_count": 1}}, "passed": {"_count": 2, "out": {"_count": 1}, "information": {"_count": 1}}, "expected": {"_count": 1, "but": {"_count": 1}}, "started": {"_count": 1, "on": {"_count": 1}}, "bin": {"_count": 2, "Lily": {"_count": 1}, "the": {"_count": 1}}, "jus": {"_count": 1, "heard": {"_count": 1}}, "reached": {"_count": 2, "Hogsmeade": {"_count": 1}, "the": {"_count": 1}}, "train": {"_count": 1, "me": {"_count": 1}}, "first": {"_count": 1, "found": {"_count": 1}}, "even": {"_count": 3, "opened": {"_count": 1}, "touched": {"_count": 1}, "stopped": {"_count": 1}}, "overheard": {"_count": 1, "about": {"_count": 1}}, "get": {"_count": 2, "a": {"_count": 1}, "back": {"_count": 1}}, "eaten": {"_count": 1, "something": {"_count": 1}}, "come": {"_count": 8, "after": {"_count": 1}, "home": {"_count": 1}, "back": {"_count": 3}, "at": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "betrayed": {"_count": 1, "Lord": {"_count": 1}}, "swallowed": {"_count": 1, "a": {"_count": 1}}, "leave": {"_count": 1, "here": {"_count": 1}}, "eat": {"_count": 1, "it": {"_count": 1}}, "expressly": {"_count": 1, "told": {"_count": 1}}, "manage": {"_count": 1, "it": {"_count": 1}}, "smashed": {"_count": 1, "headlong": {"_count": 1}}, "sign": {"_count": 1, "my": {"_count": 1}}, "flung": {"_count": 1, "open": {"_count": 1}}, "fantasized": {"_count": 1, "about": {"_count": 1}}, "talked": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "finally": {"_count": 1, "got": {"_count": 1}}, "last": {"_count": 1, "stood": {"_count": 1}}, "felt": {"_count": 1, "while": {"_count": 1}}, "cared": {"_count": 1, "to": {"_count": 1}}, "loathed": {"_count": 1, "Harrys": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "stay": {"_count": 1, "there": {"_count": 1}}, "slept": {"_count": 1, "and": {"_count": 1}}, "pulled": {"_count": 1, "me": {"_count": 1}}, "poured": {"_count": 1, "out": {"_count": 1}}, "want": {"_count": 3, "to": {"_count": 2}, "you": {"_count": 1}}, "always": {"_count": 1, "been": {"_count": 1}}, "beaten": {"_count": 1, "Harry": {"_count": 1}}, "used": {"_count": 1, "someone": {"_count": 1}}, "smiled": {"_count": 1, "in": {"_count": 1}}, "caught": {"_count": 1, "from": {"_count": 1}}, "cough": {"_count": 1, "up": {"_count": 1}}, "hear": {"_count": 1, "voices": {"_count": 1}}, "misbehaved": {"_count": 1, "and": {"_count": 1}}, "perform": {"_count": 1, "more": {"_count": 1}}, "bullied": {"_count": 1, "or": {"_count": 1}}, "experienced": {"_count": 1, "it": {"_count": 1}}, "respond": {"_count": 1, "after": {"_count": 1}}, "think": {"_count": 1, "it": {"_count": 1}}, "mobilize": {"_count": 1, "us": {"_count": 1}}, "love": {"_count": 2, "to": {"_count": 2}}, "believe": {"_count": 1, "anything": {"_count": 1}}, "sent": {"_count": 1, "a": {"_count": 1}}, "argued": {"_count": 1, "against": {"_count": 1}}, "still": {"_count": 1, "be": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "kill": {"_count": 1, "me": {"_count": 1}}, "asked": {"_count": 1, "me": {"_count": 1}}, "hardly": {"_count": 1, "stand": {"_count": 1}}, "annoy": {"_count": 1, "Ron": {"_count": 1}}, "keep": {"_count": 1, "something": {"_count": 1}}, "agreed": {"_count": 1, "ter": {"_count": 1}}, "trust": {"_count": 1, "lots": {"_count": 1}}, "bring": {"_count": 1, "some": {"_count": 1}}, "meant": {"_count": 1, "to": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "expect": {"_count": 1, "the": {"_count": 1}}, "say": {"_count": 1, "to": {"_count": 1}}}, "stretch": {"_count": 29, "his": {"_count": 1, "legs": {"_count": 1}}, "her": {"_count": 1, "wings": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 18, "bare": {"_count": 1}, "pavement": {"_count": 1}, "grass": {"_count": 1}, "misty": {"_count": 1}, "ground": {"_count": 1}, "canvas": {"_count": 1}, "blank": {"_count": 2}, "wall": {"_count": 3}, "lawn": {"_count": 1}, "shelf": {"_count": 1}, "muddybrown": {"_count": 1}, "mundanely": {"_count": 1}, "stone": {"_count": 1}, "muddy": {"_count": 1}, "silence": {"_count": 1}}, "its": {"_count": 2, "many": {"_count": 1}, "wings": {"_count": 1}}, "only": {"_count": 1, "said": {"_count": 1}}, "out": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 2}}, "your": {"_count": 1, "legs": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}}, "legs": {"_count": 203, "and": {"_count": 26, "walk": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "each": {"_count": 1}, "tails": {"_count": 1}, "making": {"_count": 1}, "shot": {"_count": 1}, "started": {"_count": 1}, "trying": {"_count": 1}, "an": {"_count": 1}, "tail": {"_count": 1}, "went": {"_count": 1}, "bread": {"_count": 1}, "then": {"_count": 1}, "placed": {"_count": 1}, "onto": {"_count": 1}, "brain": {"_count": 1}, "speaking": {"_count": 1}, "a": {"_count": 3}, "replacing": {"_count": 1}, "reading": {"_count": 1}, "sprinted": {"_count": 1}, "spoke": {"_count": 1}, "sit": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 31}, "?": {"_count": 2}}, "had": {"_count": 6, "turned": {"_count": 1}, "been": {"_count": 2}, "already": {"_count": 1}, "difficulty": {"_count": 1}, "mended": {"_count": 1}}, "were": {"_count": 17, "like": {"_count": 1}, "stuck": {"_count": 1}, "carrying": {"_count": 1}, "half": {"_count": 1}, "starting": {"_count": 1}, "so": {"_count": 2}, "seizing": {"_count": 1}, "thin": {"_count": 1}, "still": {"_count": 3}, "soon": {"_count": 1}, "curled": {"_count": 1}, "trembling": {"_count": 2}, "the": {"_count": 1}}, "thick": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 2, "bloody": {"_count": 1}, "resting": {"_count": 1}}, "he": {"_count": 4, "saw": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}, "might": {"_count": 1}}, "sprang": {"_count": 2, "apart": {"_count": 1}, "together": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "hard": {"_count": 1}}, "in": {"_count": 5, "anger": {"_count": 2}, "the": {"_count": 3}}, "wouldnt": {"_count": 1, "move": {"_count": 1}}, "would": {"_count": 3, "carry": {"_count": 2}, "support": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 2, "gleam": {"_count": 1}, "loaf": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "leave": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "front": {"_count": 1}}, "shifting": {"_count": 1, "angrily": {"_count": 1}}, "waving": {"_count": 2, "in": {"_count": 1}, "wildly": {"_count": 1}}, "up": {"_count": 1, "onto": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "watched": {"_count": 1, "Riddle": {"_count": 1}}, "heavily": {"_count": 1, "wrapped": {"_count": 1}}, "took": {"_count": 1, "off": {"_count": 1}}, "hit": {"_count": 2, "his": {"_count": 1}, "something": {"_count": 1}}, "wings": {"_count": 1, "and": {"_count": 1}}, "off": {"_count": 4, "": {"_count": 2}, "the": {"_count": 2}}, "vanished": {"_count": 1, "it": {"_count": 1}}, "move": {"_count": 1, "back": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "shaking": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "Snapes": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "rigidly": {"_count": 1, "then": {"_count": 1}}, "bent": {"_count": 1, "in": {"_count": 1}}, "relaxed": {"_count": 1, "but": {"_count": 1}}, "fractured": {"_count": 1, "both": {"_count": 1}}, "inside": {"_count": 1, "an": {"_count": 1}}, "its": {"_count": 1, "jaws": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "their": {"_count": 1, "fireblasting": {"_count": 1}}, "crossed": {"_count": 3, "one": {"_count": 1}, "so": {"_count": 1}, "how": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "searing": {"_count": 1, "as": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "Then": {"_count": 1, "Harry": {"_count": 1}}, "struggling": {"_count": 1, "madly": {"_count": 1}}, "to": {"_count": 1, "join": {"_count": 1}}, "long": {"_count": 1, "straggly": {"_count": 1}}, "purring": {"_count": 2, "then": {"_count": 1}, "loudly": {"_count": 1}}, "get": {"_count": 1, "into": {"_count": 1}}, "two": {"_count": 1, "twiglike": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "that": {"_count": 3, "would": {"_count": 1}, "hoisted": {"_count": 1}, "must": {"_count": 1}}, "tried": {"_count": 1, "feebly": {"_count": 1}}, "collapsed": {"_count": 1, "again": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "stamping": {"_count": 1, "furiously": {"_count": 1}}, "tightly": {"_count": 1, "around": {"_count": 1}}, "numb": {"_count": 1, "from": {"_count": 1}}, "snapped": {"_count": 2, "together": {"_count": 2}}, "drawn": {"_count": 1, "up": {"_count": 1}}, "went": {"_count": 1, "immediately": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "jerked": {"_count": 1, "and": {"_count": 1}}, "twitched": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 2, "jerking": {"_count": 1}, "curled": {"_count": 1}}, "He": {"_count": 1, "gave": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "fell": {"_count": 1, "back": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "rolled": {"_count": 1, "in": {"_count": 1}}, "she": {"_count": 1, "fell": {"_count": 1}}, "stretched": {"_count": 1, "out": {"_count": 1}}, "curled": {"_count": 1, "and": {"_count": 1}}, "apparently": {"_count": 1, "fading": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "sank": {"_count": 1, "into": {"_count": 1}}, "jammed": {"_count": 1, "into": {"_count": 1}}, "Another": {"_count": 1, "wizard": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "now": {"_count": 1, "encased": {"_count": 1}}, "are": {"_count": 1, "on": {"_count": 1}}, "bore": {"_count": 1, "heavy": {"_count": 1}}, "jerking": {"_count": 1, "horribly": {"_count": 1}}}, "walk": {"_count": 135, "across": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 3, "talk": {"_count": 3}}, "a": {"_count": 4, "little": {"_count": 2}, "few": {"_count": 1}, "short": {"_count": 1}}, "into": {"_count": 8, "the": {"_count": 2}, "you": {"_count": 1}, "Quality": {"_count": 1}, "Hogsmeade": {"_count": 1}, "him": {"_count": 1}, "Hogwarts": {"_count": 1}, "Herbology": {"_count": 1}}, "straight": {"_count": 3, "at": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 1}}, "toward": {"_count": 6, "it": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}, "Voldemort": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "?": {"_count": 2}}, "much": {"_count": 1, "more": {"_count": 1}}, "around": {"_count": 10, "school": {"_count": 1}, "like": {"_count": 1}, "": {"_count": 1}, "wearing": {"_count": 1}, "the": {"_count": 3}, "with": {"_count": 1}, "and": {"_count": 1}, "Hogwarts": {"_count": 1}}, "warned": {"_count": 1, "Harry": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 2}, "its": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 9, "the": {"_count": 4}, "anyone": {"_count": 1}, "it": {"_count": 3}, "first": {"_count": 1}}, "too": {"_count": 1, "quickly": {"_count": 1}}, "out": {"_count": 6, "of": {"_count": 4}, "on": {"_count": 1}, "right": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 1}, "Mr": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 3, "corridors": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "this": {"_count": 1, "earth": {"_count": 1}}, "right": {"_count": 2, "toward": {"_count": 1}, "into": {"_count": 1}}, "past": {"_count": 4, "em": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}, "her": {"_count": 1}}, "his": {"_count": 1, "black": {"_count": 1}}, "to": {"_count": 5, "class": {"_count": 1}, "the": {"_count": 1}, "work": {"_count": 1}, "Hagrids": {"_count": 1}, "his": {"_count": 1}}, "rustling": {"_count": 1, "its": {"_count": 1}}, "with": {"_count": 2, "Mr": {"_count": 1}, "Neville": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 5, "here": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 3}}, "over": {"_count": 2, "there": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "top": {"_count": 1}}, "away": {"_count": 3, "back": {"_count": 1}, "from": {"_count": 1}, "if": {"_count": 1}}, "down": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "back": {"_count": 1, "around": {"_count": 1}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "in": {"_count": 6, "on": {"_count": 1}, "and": {"_count": 1}, "so": {"_count": 1}, "here": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "than": {"_count": 1, "admit": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "Dudleys": {"_count": 1}}, "she": {"_count": 1, "mimed": {"_count": 1}}, "sedately": {"_count": 1, "past": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "slowly": {"_count": 1, "toward": {"_count": 1}}, "from": {"_count": 1, "here": {"_count": 1}}, "perhaps": {"_count": 1, "from": {"_count": 1}}, "palely": {"_count": 1, "where": {"_count": 1}}, "thanks": {"_count": 1, "said": {"_count": 1}}, "instantly": {"_count": 1, "became": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "very": {"_count": 1, "far": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "shed": {"_count": 1, "think": {"_count": 1}}, "forward": {"_count": 1, "on": {"_count": 1}}, "calmly": {"_count": 1, "into": {"_count": 1}}, "forced": {"_count": 1, "their": {"_count": 1}}}, "across": {"_count": 551, "the": {"_count": 379, "road": {"_count": 8}, "dark": {"_count": 7}, "table": {"_count": 25}, "lake": {"_count": 14}, "flagged": {"_count": 1}, "room": {"_count": 62}, "hall": {"_count": 12}, "scar": {"_count": 2}, "stone": {"_count": 4}, "grounds": {"_count": 15}, "tower": {"_count": 1}, "entrance": {"_count": 13}, "common": {"_count": 5}, "ground": {"_count": 3}, "bright": {"_count": 1}, "chamber": {"_count": 1}, "board": {"_count": 1}, "head": {"_count": 1}, "lawn": {"_count": 15}, "yard": {"_count": 5}, "country": {"_count": 1}, "upper": {"_count": 1}, "pinkandgold": {"_count": 1}, "dewdrenched": {"_count": 1}, "walls": {"_count": 1}, "pitch": {"_count": 1}, "vegetable": {"_count": 5}, "black": {"_count": 6}, "tunnel": {"_count": 2}, "dusty": {"_count": 1}, "floor": {"_count": 15}, "short": {"_count": 1}, "stormy": {"_count": 1}, "field": {"_count": 9}, "stadium": {"_count": 1}, "dungeon": {"_count": 2}, "classroom": {"_count": 1}, "top": {"_count": 3}, "grass": {"_count": 3}, "face": {"_count": 5}, "surface": {"_count": 2}, "shoulder": {"_count": 1}, "paved": {"_count": 1}, "still": {"_count": 1}, "moon": {"_count": 1}, "garden": {"_count": 2}, "kitchen": {"_count": 4}, "deserted": {"_count": 1}, "campsite": {"_count": 1}, "news": {"_count": 1}, "palm": {"_count": 1}, "lenses": {"_count": 1}, "crowd": {"_count": 1}, "path": {"_count": 3}, "clearing": {"_count": 2}, "wand": {"_count": 1}, "busy": {"_count": 1}, "sky": {"_count": 1}, "ceiling": {"_count": 3}, "sodden": {"_count": 1}, "wet": {"_count": 1}, "wooden": {"_count": 1}, "almost": {"_count": 1}, "now": {"_count": 1}, "deep": {"_count": 1}, "Hall": {"_count": 2}, "Age": {"_count": 2}, "parchment": {"_count": 4}, "pub": {"_count": 1}, "smoldering": {"_count": 1}, "dance": {"_count": 2}, "bathroom": {"_count": 2}, "countryside": {"_count": 1}, "water": {"_count": 2}, "scrubby": {"_count": 1}, "boulderstrewn": {"_count": 1}, "stoneflagged": {"_count": 1}, "corridor": {"_count": 1}, "office": {"_count": 3}, "Great": {"_count": 3}, "lawns": {"_count": 2}, "parched": {"_count": 1}, "park": {"_count": 1}, "drawing": {"_count": 1}, "shoulders": {"_count": 1}, "courtroom": {"_count": 1}, "landing": {"_count": 1}, "courtyard": {"_count": 2}, "back": {"_count": 1}, "sunlit": {"_count": 1}, "flooded": {"_count": 1}, "thin": {"_count": 1}, "Pensieve": {"_count": 1}, "bridge": {"_count": 1}, "front": {"_count": 1}, "desk": {"_count": 2}, "cabin": {"_count": 1}, "polished": {"_count": 1}, "empty": {"_count": 3}, "end": {"_count": 1}, "station": {"_count": 1}, "snowy": {"_count": 2}, "valley": {"_count": 2}, "term": {"_count": 1}, "ring": {"_count": 1}, "dead": {"_count": 1}, "rock": {"_count": 1}, "knuckles": {"_count": 1}, "intervening": {"_count": 1}, "skies": {"_count": 2}, "pavement": {"_count": 1}, "bench": {"_count": 1}, "misty": {"_count": 1}, "single": {"_count": 1}, "square": {"_count": 3}, "bed": {"_count": 1}, "fetid": {"_count": 1}, "one": {"_count": 1}, "treacherous": {"_count": 1}, "pages": {"_count": 2}, "cellar": {"_count": 1}, "little": {"_count": 1}, "wall": {"_count": 1}, "passage": {"_count": 1}, "castle": {"_count": 1}, "snakelike": {"_count": 1}, "enchanted": {"_count": 2}, "rumbling": {"_count": 1}}, "a": {"_count": 13, "suspension": {"_count": 1}, "desk": {"_count": 1}, "vomitflavored": {"_count": 1}, "deep": {"_count": 1}, "patch": {"_count": 1}, "large": {"_count": 1}, "specimen": {"_count": 1}, "wizard": {"_count": 1}, "long": {"_count": 1}, "room": {"_count": 1}, "terrified": {"_count": 1}, "bloodred": {"_count": 1}, "vast": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "Harry": {"_count": 3, "as": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}}, "to": {"_count": 23, "the": {"_count": 10}, "his": {"_count": 4}, "her": {"_count": 1}, "Professor": {"_count": 1}, "him": {"_count": 2}, "Harry": {"_count": 1}, "them": {"_count": 1}, "read": {"_count": 1}, "another": {"_count": 1}, "Siriuss": {"_count": 1}}, "it": {"_count": 17, "was": {"_count": 1}, "you": {"_count": 1}, "kept": {"_count": 1}, "in": {"_count": 2}, "reading": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}, "when": {"_count": 2}, "occasionally": {"_count": 1}, "to": {"_count": 1}, "without": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 1}, "corner": {"_count": 1}, "cheek": {"_count": 1}}, "Quirrells": {"_count": 1, "face": {"_count": 1}}, "Harrys": {"_count": 2, "scar": {"_count": 1}, "knees": {"_count": 1}}, "my": {"_count": 2, "head": {"_count": 1}, "path": {"_count": 1}}, "somebody": {"_count": 1, "who": {"_count": 1}}, "his": {"_count": 32, "gaunt": {"_count": 2}, "face": {"_count": 9}, "forehead": {"_count": 2}, "throat": {"_count": 1}, "chest": {"_count": 4}, "muzzle": {"_count": 1}, "lenses": {"_count": 1}, "mangled": {"_count": 1}, "mind": {"_count": 3}, "freckled": {"_count": 1}, "picture": {"_count": 1}, "comrade": {"_count": 1}, "field": {"_count": 1}, "own": {"_count": 1}, "hat": {"_count": 1}, "distended": {"_count": 1}, "swarthy": {"_count": 1}}, "its": {"_count": 3, "staring": {"_count": 1}, "surface": {"_count": 1}, "face": {"_count": 1}}, "something": {"_count": 3, "relevant": {"_count": 1}, "she": {"_count": 1}, "with": {"_count": 1}}, "him": {"_count": 6, "forcing": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 4}}, "me": {"_count": 1, "while": {"_count": 1}}, "her": {"_count": 10, "bed": {"_count": 1}, "face": {"_count": 4}, "nose": {"_count": 1}, "lap": {"_count": 1}, "his": {"_count": 1}, "daughters": {"_count": 1}, "path": {"_count": 1}}, "them": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "five": {"_count": 1, "continents": {"_count": 1}}, "Malfoys": {"_count": 1, "pale": {"_count": 1}}, "Ron": {"_count": 3, "": {"_count": 2}, "for": {"_count": 1}}, "Siriuss": {"_count": 2, "thin": {"_count": 1}, "face": {"_count": 1}}, "while": {"_count": 1, "rummaging": {"_count": 1}}, "Neville": {"_count": 1, "toward": {"_count": 1}}, "tiny": {"_count": 1, "animal": {"_count": 1}}, "Rons": {"_count": 2, "drawing": {"_count": 1}, "face": {"_count": 1}}, "dark": {"_count": 1, "cold": {"_count": 1}}, "London": {"_count": 1, "gleefully": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "Ginny": {"_count": 1, "to": {"_count": 1}}, "two": {"_count": 4, "or": {"_count": 1}, "aisles": {"_count": 1}, "universes": {"_count": 1}, "seats": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 1, "chests": {"_count": 1}}, "this": {"_count": 2, "room": {"_count": 1}, "parchment": {"_count": 1}}, "Hermiones": {"_count": 1, "chest": {"_count": 1}}, "from": {"_count": 1, "here": {"_count": 1}}, "Fleurs": {"_count": 1, "monologue": {"_count": 1}}, "Fleur": {"_count": 1, "again": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "at": {"_count": 3, "Ron": {"_count": 1}, "Fleur": {"_count": 1}, "his": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "onto": {"_count": 1, "Rons": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "chest": {"_count": 1}}, "someones": {"_count": 1, "legs": {"_count": 1}}, "Voldemorts": {"_count": 2, "shoulders": {"_count": 1}, "path": {"_count": 1}}, "Georges": {"_count": 1, "head": {"_count": 1}}, "three": {"_count": 1, "counties": {"_count": 1}}, "that": {"_count": 1, "dark": {"_count": 1}}, "Dobbys": {"_count": 1, "front": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "Freds": {"_count": 2, "body": {"_count": 1}, "chest": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}}, "buy": {"_count": 59, "himself": {"_count": 2, "a": {"_count": 1}, "some": {"_count": 1}}, "you": {"_count": 4, "another": {"_count": 1}, "a": {"_count": 2}, "more": {"_count": 1}}, "his": {"_count": 5, "Smeltings": {"_count": 1}, "things": {"_count": 1}, "own": {"_count": 1}, "way": {"_count": 1}, "new": {"_count": 1}}, "all": {"_count": 2, "yer": {"_count": 1}, "this": {"_count": 1}}, "their": {"_count": 3, "tickets": {"_count": 1}, "way": {"_count": 1}, "products": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "parchment": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 7, "solid": {"_count": 1}, "broomstick": {"_count": 1}, "new": {"_count": 1}, "S": {"_count": 1}, "wand": {"_count": 1}, "sweater": {"_count": 1}, "present": {"_count": 1}}, "as": {"_count": 1, "many": {"_count": 1}}, "my": {"_count": 4, "new": {"_count": 1}, "autobiography": {"_count": 1}, "own": {"_count": 1}, "book": {"_count": 1}}, "some": {"_count": 2, "more": {"_count": 1}, "of": {"_count": 1}}, "your": {"_count": 2, "school": {"_count": 1}, "schoolbooks": {"_count": 1}}, "me": {"_count": 3, "a": {"_count": 3}}, "anything": {"_count": 1, "": {"_count": 1}}, "ink": {"_count": 1, "and": {"_count": 1}}, "icecold": {"_count": 1, "pumpkin": {"_count": 1}}, "vicious": {"_count": 1, "threeheaded": {"_count": 1}}, "the": {"_count": 2, "cook": {"_count": 1}, "books": {"_count": 1}}, "tickets": {"_count": 1, "": {"_count": 1}}, "drinks": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 1, "giant": {"_count": 1}}, "Dobby": {"_count": 1, "a": {"_count": 1}}, "these": {"_count": 1, "as": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "cat": {"_count": 1, "food": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 1, "": {"_count": 1}}, "Dark": {"_count": 1, "artifacts": {"_count": 1}}, "books": {"_count": 1, "and": {"_count": 1}}, "spellbooks": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "stuff": {"_count": 1}}}, "bun": {"_count": 9, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 1, "placing": {"_count": 1}}, "her": {"_count": 1, "sharp": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "squeezing": {"_count": 1, "between": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}}, "from": {"_count": 4053, "the": {"_count": 1274, "bakery": {"_count": 1}, "other": {"_count": 23}, "telephone": {"_count": 1}, "barbers": {"_count": 1}, "Dursleys": {"_count": 10}, "kitchen": {"_count": 11}, "ceiling": {"_count": 21}, "cupboard": {"_count": 2}, "dining": {"_count": 3}, "high": {"_count": 4}, "poker": {"_count": 1}, "ruined": {"_count": 2}, "sofa": {"_count": 3}, "Muggles": {"_count": 2}, "big": {"_count": 1}, "footstool": {"_count": 1}, "shelves": {"_count": 2}, "end": {"_count": 23}, "room": {"_count": 21}, "engine": {"_count": 2}, "druidess": {"_count": 1}, "left": {"_count": 2}, "card": {"_count": 1}, "Leaky": {"_count": 2}, "plates": {"_count": 1}, "teachers": {"_count": 4}, "moment": {"_count": 12}, "stomach": {"_count": 2}, "forest": {"_count": 4}, "Daily": {"_count": 4}, "ground": {"_count": 32}, "hospital": {"_count": 4}, "chair": {"_count": 1}, "trophy": {"_count": 1}, "Bludgers": {"_count": 1}, "walls": {"_count": 8}, "chamber": {"_count": 1}, "smell": {"_count": 1}, "upstairs": {"_count": 1}, "mountain": {"_count": 1}, "Slytherins": {"_count": 8}, "Gryffindors": {"_count": 2}, "game": {"_count": 2}, "inside": {"_count": 7}, "rest": {"_count": 7}, "books": {"_count": 1}, "library": {"_count": 7}, "box": {"_count": 6}, "crowd": {"_count": 14}, "whirl": {"_count": 1}, "kitchens": {"_count": 5}, "castle": {"_count": 13}, "Quidditch": {"_count": 1}, "Ministry": {"_count": 33}, "corner": {"_count": 7}, "first": {"_count": 2}, "dog": {"_count": 1}, "light": {"_count": 1}, "flyingkey": {"_count": 1}, "round": {"_count": 1}, "Slytherin": {"_count": 14}, "Gryffindor": {"_count": 5}, "greatest": {"_count": 1}, "magical": {"_count": 2}, "hall": {"_count": 4}, "living": {"_count": 1}, "Hogwarts": {"_count": 3}, "house": {"_count": 5}, "letter": {"_count": 2}, "front": {"_count": 18}, "bedroom": {"_count": 1}, "stack": {"_count": 1}, "shadow": {"_count": 1}, "witch": {"_count": 1}, "shop": {"_count": 1}, "outside": {"_count": 2}, "surrounding": {"_count": 3}, "trunk": {"_count": 1}, "staff": {"_count": 5}, "Great": {"_count": 3}, "warmth": {"_count": 1}, "iron": {"_count": 1}, "spitting": {"_count": 1}, "rain": {"_count": 2}, "accusing": {"_count": 1}, "low": {"_count": 1}, "office": {"_count": 2}, "Kwikspell": {"_count": 1}, "salamanders": {"_count": 1}, "dungeon": {"_count": 2}, "floor": {"_count": 18}, "Halloween": {"_count": 1}, "torch": {"_count": 3}, "shadows": {"_count": 3}, "direction": {"_count": 2}, "Restricted": {"_count": 1}, "monthly": {"_count": 1}, "Bludger": {"_count": 1}, "stabbing": {"_count": 1}, "Chamber": {"_count": 2}, "bodies": {"_count": 2}, "classes": {"_count": 1}, "ashes": {"_count": 1}, "stall": {"_count": 1}, "pudding": {"_count": 1}, "entrance": {"_count": 10}, "fire": {"_count": 4}, "look": {"_count": 5}, "closet": {"_count": 1}, "giant": {"_count": 2}, "arrested": {"_count": 1}, "pale": {"_count": 1}, "weight": {"_count": 2}, "diary": {"_count": 3}, "marble": {"_count": 2}, "disembodied": {"_count": 1}, "complaining": {"_count": 1}, "spot": {"_count": 4}, "kettle": {"_count": 1}, "wandlight": {"_count": 1}, "glare": {"_count": 1}, "middle": {"_count": 5}, "table": {"_count": 16}, "center": {"_count": 5}, "crowing": {"_count": 1}, "back": {"_count": 6}, "wound": {"_count": 1}, "roof": {"_count": 2}, "huge": {"_count": 1}, "book": {"_count": 2}, "nearest": {"_count": 5}, "Hufflepuff": {"_count": 2}, "same": {"_count": 4}, "television": {"_count": 1}, "effort": {"_count": 1}, "wizarding": {"_count": 4}, "upper": {"_count": 3}, "bar": {"_count": 3}, "country": {"_count": 1}, "dogs": {"_count": 1}, "top": {"_count": 11}, "parlor": {"_count": 1}, "train": {"_count": 4}, "window": {"_count": 12}, "basket": {"_count": 2}, "cloak": {"_count": 1}, "chattering": {"_count": 1}, "golden": {"_count": 5}, "shelf": {"_count": 2}, "dim": {"_count": 1}, "gargoyles": {"_count": 1}, "pocket": {"_count": 5}, "remnants": {"_count": 1}, "plants": {"_count": 1}, "spout": {"_count": 1}, "cold": {"_count": 1}, "silvery": {"_count": 1}, "true": {"_count": 1}, "textbook": {"_count": 1}, "opposite": {"_count": 1}, "desk": {"_count": 2}, "point": {"_count": 4}, "Magical": {"_count": 1}, "album": {"_count": 1}, "depths": {"_count": 9}, "Three": {"_count": 2}, "Ravenclaw": {"_count": 5}, "robe": {"_count": 1}, "party": {"_count": 1}, "statue": {"_count": 1}, "Minister": {"_count": 2}, "manufacturers": {"_count": 2}, "silver": {"_count": 2}, "wall": {"_count": 7}, "bed": {"_count": 7}, "start": {"_count": 7}, "distant": {"_count": 5}, "corridor": {"_count": 1}, "right": {"_count": 1}, "open": {"_count": 3}, "roots": {"_count": 1}, "sky": {"_count": 1}, "school": {"_count": 6}, "Shrieking": {"_count": 1}, "war": {"_count": 1}, "fact": {"_count": 2}, "village": {"_count": 1}, "ancient": {"_count": 1}, "street": {"_count": 2}, "next": {"_count": 3}, "journey": {"_count": 1}, "tone": {"_count": 1}, "doorway": {"_count": 5}, "wand": {"_count": 13}, "Department": {"_count": 4}, "Black": {"_count": 1}, "cottage": {"_count": 2}, "stadium": {"_count": 1}, "sign": {"_count": 1}, "team": {"_count": 3}, "veela": {"_count": 2}, "Bulgarian": {"_count": 1}, "sidelines": {"_count": 3}, "greenclad": {"_count": 2}, "Irish": {"_count": 3}, "Ireland": {"_count": 1}, "bunk": {"_count": 1}, "wands": {"_count": 2}, "boys": {"_count": 2}, "campsite": {"_count": 3}, "edge": {"_count": 2}, "patch": {"_count": 2}, "wizards": {"_count": 1}, "skull": {"_count": 2}, "real": {"_count": 1}, "woods": {"_count": 2}, "wind": {"_count": 2}, "ghoul": {"_count": 1}, "fireworks": {"_count": 1}, "throng": {"_count": 1}, "policemen": {"_count": 1}, "carriage": {"_count": 4}, "girl": {"_count": 1}, "watching": {"_count": 2}, "grounds": {"_count": 9}, "lake": {"_count": 4}, "tail": {"_count": 4}, "tip": {"_count": 8}, "judges": {"_count": 3}, "trough": {"_count": 1}, "blackboard": {"_count": 2}, "wild": {"_count": 1}, "one": {"_count": 1}, "elf": {"_count": 2}, "bagpipe": {"_count": 1}, "dance": {"_count": 2}, "countless": {"_count": 1}, "photograph": {"_count": 1}, "day": {"_count": 2}, "bottom": {"_count": 6}, "bath": {"_count": 1}, "egg": {"_count": 1}, "pain": {"_count": 2}, "page": {"_count": 1}, "merpeople": {"_count": 1}, "looks": {"_count": 1}, "merman": {"_count": 1}, "bank": {"_count": 1}, "stands": {"_count": 4}, "Hufflepuffs": {"_count": 1}, "lunch": {"_count": 1}, "smoke": {"_count": 2}, "faces": {"_count": 1}, "hearth": {"_count": 1}, "Beauxbatons": {"_count": 2}, "gray": {"_count": 1}, "Owlery": {"_count": 1}, "class": {"_count": 3}, "Andorran": {"_count": 1}, "hidden": {"_count": 1}, "darkness": {"_count": 4}, "perfumed": {"_count": 1}, "basins": {"_count": 1}, "glassy": {"_count": 1}, "Pensieve": {"_count": 2}, "court": {"_count": 2}, "endofterm": {"_count": 1}, "Forbidden": {"_count": 2}, "earth": {"_count": 1}, "task": {"_count": 1}, "grassy": {"_count": 1}, "sphinx": {"_count": 1}, "spiders": {"_count": 1}, "Triwizard": {"_count": 2}, "cup": {"_count": 1}, "sort": {"_count": 1}, "maze": {"_count": 1}, "way": {"_count": 1}, "cauldron": {"_count": 3}, "tombstone": {"_count": 1}, "tent": {"_count": 2}, "Death": {"_count": 3}, "dungeons": {"_count": 2}, "steaming": {"_count": 1}, "control": {"_count": 1}, "dresser": {"_count": 2}, "trolley": {"_count": 1}, "station": {"_count": 2}, "uppers": {"_count": 1}, "waistband": {"_count": 1}, "world": {"_count": 2}, "vague": {"_count": 1}, "others": {"_count": 4}, "stair": {"_count": 1}, "owls": {"_count": 2}, "law": {"_count": 1}, "beginning": {"_count": 2}, "burning": {"_count": 2}, "fridge": {"_count": 2}, "streetlamps": {"_count": 2}, "pile": {"_count": 4}, "Order": {"_count": 5}, "dark": {"_count": 3}, "pantry": {"_count": 2}, "intensive": {"_count": 1}, "portraits": {"_count": 1}, "tapestry": {"_count": 1}, "cabinets": {"_count": 1}, "drawing": {"_count": 3}, "rubbish": {"_count": 1}, "brief": {"_count": 1}, "receiver": {"_count": 1}, "ends": {"_count": 1}, "Fountain": {"_count": 1}, "lamp": {"_count": 2}, "tattered": {"_count": 1}, "empty": {"_count": 2}, "lolloping": {"_count": 1}, "Head": {"_count": 1}, "Wizengamot": {"_count": 1}, "trapdoor": {"_count": 1}, "dead": {"_count": 4}, "portrait": {"_count": 1}, "group": {"_count": 2}, "goblet": {"_count": 1}, "dormitories": {"_count": 1}, "neck": {"_count": 1}, "Captains": {"_count": 2}, "indignity": {"_count": 1}, "barman": {"_count": 1}, "High": {"_count": 1}, "syllabus": {"_count": 1}, "eager": {"_count": 1}, "Hogs": {"_count": 1}, "stormswept": {"_count": 1}, "lock": {"_count": 1}, "rear": {"_count": 1}, "robes": {"_count": 1}, "torches": {"_count": 1}, "goal": {"_count": 1}, "shock": {"_count": 2}, "sea": {"_count": 1}, "crowds": {"_count": 1}, "argument": {"_count": 1}, "pitch": {"_count": 3}, "girls": {"_count": 1}, "mouth": {"_count": 2}, "haversack": {"_count": 1}, "bones": {"_count": 1}, "air": {"_count": 1}, "holidays": {"_count": 2}, "snakes": {"_count": 1}, "minuscule": {"_count": 1}, "apparently": {"_count": 1}, "Portkey": {"_count": 1}, "plate": {"_count": 1}, "two": {"_count": 4}, "Birmingham": {"_count": 1}, "beak": {"_count": 1}, "owl": {"_count": 1}, "many": {"_count": 1}, "jug": {"_count": 1}, "corridors": {"_count": 1}, "rush": {"_count": 2}, "spectators": {"_count": 1}, "introduction": {"_count": 1}, "speed": {"_count": 1}, "toilet": {"_count": 2}, "surface": {"_count": 1}, "chimney": {"_count": 1}, "students": {"_count": 1}, "traitor": {"_count": 1}, "giants": {"_count": 1}, "examination": {"_count": 1}, "proceedings": {"_count": 1}, "figures": {"_count": 1}, "dementors": {"_count": 4}, "basilisk": {"_count": 1}, "thundering": {"_count": 1}, "change": {"_count": 1}, "vandalized": {"_count": 1}, "lift": {"_count": 2}, "torchlit": {"_count": 1}, "lifts": {"_count": 1}, "dais": {"_count": 2}, "veil": {"_count": 1}, "midst": {"_count": 2}, "fragments": {"_count": 1}, "shattered": {"_count": 2}, "pate": {"_count": 1}, "monstrous": {"_count": 1}, "Hall": {"_count": 1}, "prophecy": {"_count": 1}, "exit": {"_count": 1}, "doors": {"_count": 1}, "green": {"_count": 1}, "head": {"_count": 2}, "Brain": {"_count": 1}, "arch": {"_count": 1}, "archway": {"_count": 1}, "whirling": {"_count": 1}, "fight": {"_count": 1}, "pool": {"_count": 1}, "door": {"_count": 4}, "baby": {"_count": 1}, "nights": {"_count": 1}, "spindlelegged": {"_count": 1}, "jaws": {"_count": 1}, "building": {"_count": 1}, "Wizarding": {"_count": 2}, "immense": {"_count": 1}, "centaurs": {"_count": 1}, "trees": {"_count": 1}, "staircase": {"_count": 1}, "gaze": {"_count": 1}, "premises": {"_count": 1}, "solid": {"_count": 1}, "notice": {"_count": 2}, "anger": {"_count": 1}, "Prophet": {"_count": 1}, "President": {"_count": 2}, "froglike": {"_count": 1}, "sleeves": {"_count": 1}, "whisper": {"_count": 1}, "sight": {"_count": 1}, "glass": {"_count": 1}, "piano": {"_count": 1}, "Burrow": {"_count": 2}, "fourthyear": {"_count": 1}, "temptation": {"_count": 1}, "store": {"_count": 1}, "Ministrys": {"_count": 2}, "desperate": {"_count": 1}, "large": {"_count": 1}, "hedgerow": {"_count": 1}, "bathroom": {"_count": 2}, "rafters": {"_count": 1}, "asylum": {"_count": 1}, "wardrobe": {"_count": 1}, "orphanage": {"_count": 2}, "stump": {"_count": 1}, "crate": {"_count": 1}, "frozen": {"_count": 1}, "HalfBlood": {"_count": 1}, "onlookers": {"_count": 2}, "classroom": {"_count": 1}, "chain": {"_count": 1}, "twins": {"_count": 1}, "Riddle": {"_count": 1}, "map": {"_count": 1}, "great": {"_count": 1}, "tassel": {"_count": 1}, "Invisibility": {"_count": 1}, "corners": {"_count": 1}, "body": {"_count": 1}, "Bloody": {"_count": 1}, "four": {"_count": 1}, "common": {"_count": 1}, "scene": {"_count": 2}, "final": {"_count": 1}, "mass": {"_count": 1}, "hole": {"_count": 1}, "sunset": {"_count": 1}, "D": {"_count": 1}, "cliff": {"_count": 2}, "boulder": {"_count": 1}, "cave": {"_count": 1}, "water": {"_count": 2}, "black": {"_count": 2}, "rock": {"_count": 1}, "Mark": {"_count": 1}, "Mudblood": {"_count": 1}, "fray": {"_count": 1}, "foot": {"_count": 1}, "I": {"_count": 1}, "source": {"_count": 1}, "revolving": {"_count": 1}, "delivery": {"_count": 1}, "word": {"_count": 1}, "second": {"_count": 1}, "motorbike": {"_count": 1}, "circle": {"_count": 1}, "bikes": {"_count": 1}, "exhaust": {"_count": 2}, "bike": {"_count": 1}, "dragonfire": {"_count": 1}, "old": {"_count": 3}, "punctured": {"_count": 1}, "seating": {"_count": 1}, "Delacours": {"_count": 1}, "bag": {"_count": 1}, "will": {"_count": 1}, "leather": {"_count": 1}, "local": {"_count": 1}, "wise": {"_count": 1}, "marquee": {"_count": 2}, "assembled": {"_count": 1}, "heart": {"_count": 2}, "place": {"_count": 3}, "descending": {"_count": 1}, "bedcovers": {"_count": 1}, "friends": {"_count": 1}, "witchs": {"_count": 2}, "beaded": {"_count": 1}, "queue": {"_count": 1}, "courtroom": {"_count": 1}, "wood": {"_count": 1}, "despair": {"_count": 1}, "people": {"_count": 1}, "Atrium": {"_count": 1}, "lower": {"_count": 2}, "windowsill": {"_count": 1}, "headmaster": {"_count": 1}, "images": {"_count": 1}, "Horcrux": {"_count": 1}, "stained": {"_count": 1}, "dates": {"_count": 1}, "rubble": {"_count": 1}, "pictures": {"_count": 1}, "photographs": {"_count": 1}, "largest": {"_count": 1}, "crib": {"_count": 1}, "rocks": {"_count": 1}, "locket": {"_count": 2}, "Snatchers": {"_count": 2}, "breezy": {"_count": 1}, "horn": {"_count": 1}, "sides": {"_count": 1}, "thinkers": {"_count": 1}, "small": {"_count": 1}, "riverbank": {"_count": 1}, "Sorcerers": {"_count": 1}, "tray": {"_count": 1}, "Peverells": {"_count": 2}, "third": {"_count": 1}, "airwaves": {"_count": 1}, "person": {"_count": 1}, "lamps": {"_count": 1}, "cellar": {"_count": 1}, "three": {"_count": 1}, "Malfoys": {"_count": 2}, "elfs": {"_count": 2}, "stars": {"_count": 1}, "wrong": {"_count": 1}, "wizard": {"_count": 1}, "lowhanging": {"_count": 1}, "sweater": {"_count": 1}, "goblin": {"_count": 1}, "bustling": {"_count": 1}, "enchanted": {"_count": 1}, "burns": {"_count": 1}, "shrieking": {"_count": 1}, "places": {"_count": 1}, "vault": {"_count": 1}, "ignominy": {"_count": 1}, "snake": {"_count": 1}, "windows": {"_count": 3}, "environment": {"_count": 1}, "surfeit": {"_count": 1}, "mantelpiece": {"_count": 1}, "bust": {"_count": 1}, "eagle": {"_count": 1}, "echoing": {"_count": 1}, "floors": {"_count": 1}, "raised": {"_count": 1}, "plinth": {"_count": 1}, "new": {"_count": 1}, "fangs": {"_count": 1}, "diadem": {"_count": 1}, "thing": {"_count": 1}, "Carrows": {"_count": 1}, "balcony": {"_count": 1}, "feebly": {"_count": 1}, "battle": {"_count": 1}, "grave": {"_count": 1}, "wounds": {"_count": 1}, "bush": {"_count": 1}, "little": {"_count": 1}, "Yule": {"_count": 1}, "whole": {"_count": 1}, "tower": {"_count": 1}, "time": {"_count": 1}, "painted": {"_count": 1}, "scarlet": {"_count": 1}, "mist": {"_count": 1}}, "your": {"_count": 25, "sister": {"_count": 1}, "friends": {"_count": 1}, "mind": {"_count": 2}, "room": {"_count": 1}, "concerned": {"_count": 1}, "aunt": {"_count": 2}, "trunk": {"_count": 1}, "godfather": {"_count": 1}, "potion": {"_count": 1}, "new": {"_count": 1}, "mother": {"_count": 3}, "cabin": {"_count": 1}, "mouth": {"_count": 1}, "cauldrons": {"_count": 1}, "trip": {"_count": 1}, "struggle": {"_count": 1}, "appearance": {"_count": 1}, "sons": {"_count": 1}, "master": {"_count": 1}, "office": {"_count": 1}, "mistakes": {"_count": 1}}, "his": {"_count": 253, "name": {"_count": 1}, "pocket": {"_count": 17}, "seat": {"_count": 3}, "shop": {"_count": 1}, "goblet": {"_count": 3}, "grandmother": {"_count": 1}, "mothers": {"_count": 3}, "mind": {"_count": 8}, "face": {"_count": 11}, "grasp": {"_count": 3}, "nephew": {"_count": 1}, "bushy": {"_count": 1}, "purplefaced": {"_count": 1}, "first": {"_count": 2}, "inside": {"_count": 1}, "wand": {"_count": 8}, "right": {"_count": 4}, "own": {"_count": 10}, "precious": {"_count": 1}, "desk": {"_count": 1}, "halfcompleted": {"_count": 1}, "books": {"_count": 1}, "arm": {"_count": 3}, "bedside": {"_count": 4}, "hand": {"_count": 4}, "stomach": {"_count": 1}, "mouth": {"_count": 12}, "father": {"_count": 4}, "spellbooks": {"_count": 1}, "ear": {"_count": 2}, "friends": {"_count": 1}, "pie": {"_count": 1}, "vault": {"_count": 1}, "which": {"_count": 1}, "broomstick": {"_count": 1}, "hiding": {"_count": 1}, "mother": {"_count": 2}, "ears": {"_count": 2}, "waistcoat": {"_count": 1}, "hands": {"_count": 2}, "chair": {"_count": 5}, "last": {"_count": 1}, "long": {"_count": 1}, "shoulders": {"_count": 3}, "parents": {"_count": 1}, "old": {"_count": 1}, "nose": {"_count": 5}, "servants": {"_count": 1}, "eager": {"_count": 1}, "knee": {"_count": 1}, "hip": {"_count": 4}, "tone": {"_count": 1}, "lips": {"_count": 1}, "bowl": {"_count": 1}, "flask": {"_count": 1}, "fingers": {"_count": 2}, "relations": {"_count": 1}, "gaze": {"_count": 1}, "fathers": {"_count": 1}, "best": {"_count": 1}, "wife": {"_count": 1}, "white": {"_count": 1}, "broom": {"_count": 4}, "Death": {"_count": 1}, "grip": {"_count": 1}, "cousin": {"_count": 1}, "schoolbag": {"_count": 1}, "mission": {"_count": 2}, "poster": {"_count": 1}, "glum": {"_count": 1}, "joke": {"_count": 1}, "Wiltshire": {"_count": 1}, "butterbeer": {"_count": 1}, "notes": {"_count": 1}, "bag": {"_count": 2}, "trunk": {"_count": 2}, "legs": {"_count": 1}, "scar": {"_count": 3}, "place": {"_count": 1}, "skull": {"_count": 1}, "tankard": {"_count": 1}, "front": {"_count": 1}, "many": {"_count": 1}, "office": {"_count": 1}, "robes": {"_count": 1}, "head": {"_count": 1}, "sojourn": {"_count": 1}, "fellows": {"_count": 2}, "back": {"_count": 1}, "thestral": {"_count": 1}, "vision": {"_count": 1}, "rapidly": {"_count": 1}, "clutching": {"_count": 1}, "master": {"_count": 2}, "very": {"_count": 1}, "anger": {"_count": 1}, "duty": {"_count": 1}, "rightful": {"_count": 1}, "walls": {"_count": 1}, "lap": {"_count": 1}, "voice": {"_count": 1}, "son": {"_count": 1}, "daughter": {"_count": 1}, "arms": {"_count": 1}, "mistakes": {"_count": 1}, "body": {"_count": 4}, "cauldron": {"_count": 1}, "mug": {"_count": 1}, "brain": {"_count": 1}, "limp": {"_count": 1}, "orphanage": {"_count": 1}, "soaking": {"_count": 1}, "cabin": {"_count": 1}, "giantess": {"_count": 1}, "eyes": {"_count": 3}, "nightmare": {"_count": 1}, "current": {"_count": 1}, "upper": {"_count": 1}, "example": {"_count": 1}, "aunt": {"_count": 2}, "forehead": {"_count": 1}, "wandtip": {"_count": 1}, "batlike": {"_count": 1}, "sagging": {"_count": 1}, "wellmuscled": {"_count": 1}, "search": {"_count": 1}, "jeans": {"_count": 1}, "cup": {"_count": 1}, "contemplation": {"_count": 1}, "companion": {"_count": 1}, "feet": {"_count": 1}, "other": {"_count": 1}, "fist": {"_count": 1}, "purpose": {"_count": 1}, "one": {"_count": 1}, "wrist": {"_count": 1}}, "all": {"_count": 19, "that": {"_count": 1}, "sides": {"_count": 3}, "over": {"_count": 6}, "the": {"_count": 3}, "this": {"_count": 1}, "future": {"_count": 1}, "sorts": {"_count": 1}, "directions": {"_count": 2}, "students": {"_count": 1}}, "Dumbledores": {"_count": 5, "eyes": {"_count": 1}, "other": {"_count": 1}, "praise": {"_count": 1}, "grasp": {"_count": 1}, "face": {"_count": 1}}, "Mommy": {"_count": 1, "and": {"_count": 1}}, "now": {"_count": 15, "until": {"_count": 1}, "on": {"_count": 13}, "": {"_count": 1}}, "Harrys": {"_count": 28, "headmistress": {"_count": 1}, "new": {"_count": 1}, "mind": {"_count": 3}, "Quidditch": {"_count": 1}, "wand": {"_count": 2}, "side": {"_count": 1}, "life": {"_count": 1}, "shoulder": {"_count": 1}, "grip": {"_count": 1}, "memory": {"_count": 1}, "retaliation": {"_count": 1}, "chest": {"_count": 1}, "mouth": {"_count": 1}, "they": {"_count": 1}, "lungs": {"_count": 1}, "slack": {"_count": 1}, "not": {"_count": 1}, "left": {"_count": 1}, "face": {"_count": 2}, "trembling": {"_count": 1}, "scar": {"_count": 1}, "shoulders": {"_count": 1}, "lips": {"_count": 1}, "": {"_count": 1}}, "anyway": {"_count": 3, "": {"_count": 3}}, "": {"_count": 22, ".": {"_count": 7}, "!": {"_count": 2}, "?": {"_count": 13}}, "trying": {"_count": 3, "not": {"_count": 1}, "to": {"_count": 2}}, "a": {"_count": 126, "large": {"_count": 2}, "dark": {"_count": 2}, "Muggle": {"_count": 2}, "doorway": {"_count": 1}, "classroom": {"_count": 1}, "trolley": {"_count": 1}, "wistful": {"_count": 1}, "pot": {"_count": 1}, "great": {"_count": 3}, "Care": {"_count": 1}, "Kwikspell": {"_count": 1}, "teacher": {"_count": 1}, "glance": {"_count": 1}, "distance": {"_count": 1}, "locked": {"_count": 1}, "side": {"_count": 1}, "tin": {"_count": 1}, "third": {"_count": 1}, "distant": {"_count": 3}, "very": {"_count": 3}, "chickens": {"_count": 1}, "fellow": {"_count": 1}, "whole": {"_count": 1}, "hook": {"_count": 1}, "bad": {"_count": 1}, "class": {"_count": 1}, "room": {"_count": 2}, "badly": {"_count": 1}, "joke": {"_count": 1}, "hinkypunk": {"_count": 1}, "boys": {"_count": 1}, "terrible": {"_count": 1}, "vivid": {"_count": 1}, "long": {"_count": 2}, "springboard": {"_count": 1}, "stack": {"_count": 1}, "nearby": {"_count": 1}, "height": {"_count": 1}, "Defense": {"_count": 1}, "student": {"_count": 2}, "boulder": {"_count": 1}, "private": {"_count": 1}, "good": {"_count": 1}, "lamp": {"_count": 1}, "former": {"_count": 1}, "deep": {"_count": 2}, "hip": {"_count": 1}, "sink": {"_count": 1}, "door": {"_count": 2}, "severed": {"_count": 1}, "silver": {"_count": 1}, "sleepy": {"_count": 1}, "plain": {"_count": 1}, "witness": {"_count": 1}, "corner": {"_count": 2}, "tree": {"_count": 1}, "family": {"_count": 1}, "reliable": {"_count": 1}, "rusty": {"_count": 1}, "hooded": {"_count": 1}, "belt": {"_count": 1}, "Jack": {"_count": 1}, "bloke": {"_count": 1}, "witch": {"_count": 1}, "far": {"_count": 1}, "crowd": {"_count": 1}, "mass": {"_count": 1}, "broom": {"_count": 1}, "Fanged": {"_count": 1}, "wide": {"_count": 1}, "scrawny": {"_count": 1}, "narrow": {"_count": 1}, "half": {"_count": 1}, "circus": {"_count": 1}, "corridor": {"_count": 2}, "girls": {"_count": 1}, "chandelier": {"_count": 1}, "blocked": {"_count": 1}, "passing": {"_count": 3}, "Ministry": {"_count": 1}, "single": {"_count": 1}, "raggedlooking": {"_count": 1}, "post": {"_count": 1}, "neighboring": {"_count": 1}, "body": {"_count": 1}, "stone": {"_count": 1}, "trace": {"_count": 1}, "window": {"_count": 1}, "roaring": {"_count": 1}, "burning": {"_count": 1}, "flying": {"_count": 1}, "place": {"_count": 1}, "golden": {"_count": 1}, "normal": {"_count": 1}, "malicious": {"_count": 1}, "young": {"_count": 1}, "merrily": {"_count": 1}, "small": {"_count": 1}, "petty": {"_count": 1}, "hard": {"_count": 1}, "blanket": {"_count": 1}, "few": {"_count": 1}, "delightful": {"_count": 1}, "branch": {"_count": 1}, "packed": {"_count": 1}, "trip": {"_count": 1}, "balcony": {"_count": 1}, "copy": {"_count": 1}}, "behind": {"_count": 119, "his": {"_count": 9}, "": {"_count": 5}, "the": {"_count": 31}, "them": {"_count": 14}, "an": {"_count": 2}, "him": {"_count": 10}, "statues": {"_count": 1}, "a": {"_count": 13}, "Harry": {"_count": 4}, "Wood": {"_count": 1}, "it": {"_count": 3}, "her": {"_count": 7}, "its": {"_count": 1}, "Fred": {"_count": 1}, "Snape": {"_count": 1}, "bookshelves": {"_count": 1}, "some": {"_count": 1}, "their": {"_count": 3}, "with": {"_count": 1}, "by": {"_count": 2}, "Millicent": {"_count": 1}, "pinioning": {"_count": 1}, "Slughorns": {"_count": 1}, "Slughorn": {"_count": 1}, "thin": {"_count": 1}, "And": {"_count": 1}, "one": {"_count": 1}, "and": {"_count": 1}}, "Uncle": {"_count": 6, "Vernons": {"_count": 3}, "Vernon": {"_count": 3}}, "red": {"_count": 1, "to": {"_count": 1}}, "one": {"_count": 41, "ear": {"_count": 1}, "of": {"_count": 14}, "guilty": {"_count": 1}, "to": {"_count": 14}, "enormous": {"_count": 1}, "side": {"_count": 1}, "place": {"_count": 1}, "spot": {"_count": 1}, "another": {"_count": 2}, "foot": {"_count": 1}, "inert": {"_count": 1}, "Reg": {"_count": 1}, "small": {"_count": 1}, "end": {"_count": 1}}, "work": {"_count": 5, "Uncle": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}}, "him": {"_count": 106, "which": {"_count": 1}, "all": {"_count": 1}, "faster": {"_count": 1}, "Uncle": {"_count": 1}, "": {"_count": 30}, "at": {"_count": 3}, "except": {"_count": 1}, "in": {"_count": 4}, "he": {"_count": 5}, "I": {"_count": 3}, "sharpish": {"_count": 1}, "before": {"_count": 1}, "get": {"_count": 2}, "across": {"_count": 1}, "Wormtail": {"_count": 1}, "and": {"_count": 14}, "but": {"_count": 2}, "when": {"_count": 2}, "convinced": {"_count": 1}, "you": {"_count": 1}, "again": {"_count": 2}, "frowning": {"_count": 1}, "or": {"_count": 1}, "by": {"_count": 3}, "they": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 2}, "looking": {"_count": 1}, "last": {"_count": 1}, "as": {"_count": 4}, "back": {"_count": 1}, "for": {"_count": 1}, "over": {"_count": 1}, "set": {"_count": 1}, "fast": {"_count": 1}, "gladly": {"_count": 1}, "finally": {"_count": 1}, "pressing": {"_count": 1}, "Xenophilius": {"_count": 1}, "against": {"_count": 1}, "their": {"_count": 1}, "returning": {"_count": 1}, "filled": {"_count": 1}}, "before": {"_count": 1, "starting": {"_count": 1}}, "me": {"_count": 28, "": {"_count": 14}, "hut": {"_count": 1}, "said": {"_count": 1}, "werewolf": {"_count": 1}, "for": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 1}, "Ill": {"_count": 1}, "hes": {"_count": 2}, "unscathed": {"_count": 1}, "Cornelius": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}, "Hermione": {"_count": 1}}, "yet": {"_count": 2, "another": {"_count": 2}}, "Hagrids": {"_count": 9, "face": {"_count": 1}, "garden": {"_count": 1}, "front": {"_count": 2}, "chimney": {"_count": 2}, "just": {"_count": 1}, "window": {"_count": 1}, "cabin": {"_count": 1}}, "inside": {"_count": 38, "his": {"_count": 10}, "and": {"_count": 1}, "the": {"_count": 13}, "": {"_count": 3}, "one": {"_count": 2}, "every": {"_count": 1}, "Hagrids": {"_count": 2}, "her": {"_count": 1}, "YouKnow": {"_count": 1}, "it": {"_count": 3}, "suits": {"_count": 1}}, "Gringotts": {"_count": 3, "knows": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}}, "them": {"_count": 43, "all": {"_count": 1}, "Dursleys": {"_count": 1}, "into": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 15}, "Fred": {"_count": 1}, "he": {"_count": 1}, "so": {"_count": 1}, "across": {"_count": 1}, "in": {"_count": 2}, "looking": {"_count": 1}, "again": {"_count": 1}, "talking": {"_count": 1}, "even": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "narrowly": {"_count": 1}, "and": {"_count": 3}, "behind": {"_count": 1}, "as": {"_count": 1}, "seem": {"_count": 1}, "said": {"_count": 1}, "blinking": {"_count": 1}, "a": {"_count": 1}, "long": {"_count": 1}}, "Professor": {"_count": 18, "Dumbledore": {"_count": 1}, "McGonagall": {"_count": 3}, "Flitwick": {"_count": 1}, "Snape": {"_count": 2}, "Lupin": {"_count": 1}, "Trelawneys": {"_count": 1}, "Umbridge": {"_count": 1}, "McGonagalls": {"_count": 1}, "Flitwicks": {"_count": 1}, "Marchbanks": {"_count": 1}, "Tofty": {"_count": 1}, "Slughorn": {"_count": 4}}, "trembling": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 7, "families": {"_count": 3}, "society": {"_count": 1}, "house": {"_count": 1}, "ones": {"_count": 1}, "eyes": {"_count": 1}}, "Curses": {"_count": 1, "and": {"_count": 1}}, "shoulder": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 28, "Mr": {"_count": 1}, "": {"_count": 8}, "know": {"_count": 1}, "that": {"_count": 1}, "any": {"_count": 2}, "Wormtail": {"_count": 2}, "three": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}, "must": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 3}, "to": {"_count": 1}, "Ronald": {"_count": 1}, "Potter": {"_count": 1}, "upon": {"_count": 1}, "anymore": {"_count": 1}}, "platform": {"_count": 1, "nine": {"_count": 1}}, "my": {"_count": 29, "dad": {"_count": 1}, "own": {"_count": 2}, "point": {"_count": 1}, "tower": {"_count": 1}, "transformations": {"_count": 1}, "godfather": {"_count": 1}, "parents": {"_count": 1}, "private": {"_count": 2}, "office": {"_count": 1}, "Mark": {"_count": 1}, "body": {"_count": 2}, "dear": {"_count": 2}, "sight": {"_count": 1}, "friend": {"_count": 1}, "mothers": {"_count": 1}, "O": {"_count": 1}, "note": {"_count": 1}, "Death": {"_count": 1}, "father": {"_count": 1}, "observations": {"_count": 1}, "desk": {"_count": 1}, "place": {"_count": 1}, "mother": {"_count": 2}, "shoulders": {"_count": 1}}, "Madam": {"_count": 9, "Malkins": {"_count": 1}, "Pince": {"_count": 1}, "Pomfreys": {"_count": 1}, "Pomfrey": {"_count": 3}, "Rosmerta": {"_count": 3}}, "here": {"_count": 25, "": {"_count": 11}, "he": {"_count": 2}, "said": {"_count": 3}, "doesnt": {"_count": 1}, "grunted": {"_count": 1}, "boasting": {"_count": 1}, "giant": {"_count": 1}, "then": {"_count": 1}, "on": {"_count": 1}, "as": {"_count": 2}, "a": {"_count": 1}}, "under": {"_count": 68, "your": {"_count": 1}, "it": {"_count": 3}, "his": {"_count": 13}, "its": {"_count": 1}, "the": {"_count": 35}, "her": {"_count": 5}, "Hermiones": {"_count": 1}, "our": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "their": {"_count": 1}, "all": {"_count": 1}, "Harrys": {"_count": 2}, "Rons": {"_count": 1}, "sleeves": {"_count": 1}}, "giving": {"_count": 4, "them": {"_count": 2}, "his": {"_count": 1}, "students": {"_count": 1}}, "most": {"_count": 2, "poisons": {"_count": 2}}, "Gryffindor": {"_count": 33, "House": {"_count": 2}, "for": {"_count": 3}, "": {"_count": 13}, "Weasley": {"_count": 1}, "she": {"_count": 1}, "any": {"_count": 1}, "said": {"_count": 3}, "because": {"_count": 1}, "and": {"_count": 4}, "before": {"_count": 1}, "Mr": {"_count": 1}, "should": {"_count": 1}, "roared": {"_count": 1}}, "wizarding": {"_count": 1, "families": {"_count": 1}}, "home": {"_count": 7, "which": {"_count": 1}, "": {"_count": 3}, "this": {"_count": 1}, "Kreachers": {"_count": 1}, "about": {"_count": 1}}, "Ron": {"_count": 24, "": {"_count": 3}, "and": {"_count": 6}, "beneath": {"_count": 1}, "looking": {"_count": 1}, "again": {"_count": 1}, "Hermione": {"_count": 2}, "to": {"_count": 4}, "who": {"_count": 4}, "as": {"_count": 1}, "is": {"_count": 1}}, "puzzlement": {"_count": 1, "to": {"_count": 1}}, "Filchs": {"_count": 1, "voice": {"_count": 1}}, "yellowish": {"_count": 1, "fangs": {"_count": 1}}, "vault": {"_count": 1, "seven": {"_count": 1}}, "Harry": {"_count": 50, "and": {"_count": 10}, "": {"_count": 8}, "to": {"_count": 18}, "puffed": {"_count": 1}, "Ron": {"_count": 2}, "about": {"_count": 1}, "they": {"_count": 1}, "Potter": {"_count": 1}, "who": {"_count": 2}, "while": {"_count": 1}, "wearing": {"_count": 1}, "he": {"_count": 1}, "back": {"_count": 1}, "when": {"_count": 1}, "glancing": {"_count": 1}}, "just": {"_count": 3, "behind": {"_count": 2}, "beneath": {"_count": 1}}, "scoring": {"_count": 1, "": {"_count": 1}}, "breaking": {"_count": 2, "his": {"_count": 1}, "into": {"_count": 1}}, "their": {"_count": 62, "team": {"_count": 1}, "bodies": {"_count": 2}, "footsteps": {"_count": 1}, "petrified": {"_count": 1}, "side": {"_count": 1}, "labels": {"_count": 1}, "Christmas": {"_count": 1}, "number": {"_count": 1}, "dormitories": {"_count": 1}, "match": {"_count": 1}, "climb": {"_count": 1}, "tents": {"_count": 1}, "lofty": {"_count": 1}, "native": {"_count": 1}, "shoulders": {"_count": 1}, "mascots": {"_count": 1}, "carriage": {"_count": 2}, "teachers": {"_count": 1}, "open": {"_count": 1}, "dungeon": {"_count": 1}, "own": {"_count": 1}, "caves": {"_count": 1}, "mouths": {"_count": 1}, "seats": {"_count": 1}, "various": {"_count": 1}, "names": {"_count": 1}, "wardrobe": {"_count": 1}, "ranks": {"_count": 1}, "parents": {"_count": 3}, "dormitory": {"_count": 1}, "midst": {"_count": 1}, "chairs": {"_count": 2}, "ears": {"_count": 1}, "hovering": {"_count": 1}, "perches": {"_count": 1}, "wands": {"_count": 1}, "spheres": {"_count": 1}, "wand": {"_count": 1}, "presence": {"_count": 1}, "year": {"_count": 1}, "first": {"_count": 1}, "children": {"_count": 1}, "sockets": {"_count": 1}, "point": {"_count": 1}, "lessons": {"_count": 1}, "Diddykins": {"_count": 1}, "vigil": {"_count": 1}, "careful": {"_count": 1}, "drawer": {"_count": 1}, "protected": {"_count": 1}, "records": {"_count": 1}, "state": {"_count": 1}, "work": {"_count": 1}, "hinges": {"_count": 1}, "plinths": {"_count": 1}, "frames": {"_count": 1}, "owners": {"_count": 1}}, "view": {"_count": 30, "": {"_count": 13}, "they": {"_count": 1}, "of": {"_count": 1}, "as": {"_count": 3}, "with": {"_count": 1}, "by": {"_count": 2}, "behind": {"_count": 1}, "too": {"_count": 1}, "before": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 2}, "Hermione": {"_count": 1}, "temporarily": {"_count": 1}, "Harry": {"_count": 1}}, "it": {"_count": 42, "was": {"_count": 2}, "holding": {"_count": 1}, "": {"_count": 15}, "they": {"_count": 1}, "should": {"_count": 1}, "in": {"_count": 2}, "Excellent": {"_count": 1}, "bouncing": {"_count": 1}, "through": {"_count": 1}, "swaying": {"_count": 1}, "but": {"_count": 1}, "greener": {"_count": 1}, "and": {"_count": 5}, "so": {"_count": 1}, "carrying": {"_count": 1}, "again": {"_count": 1}, "glimmered": {"_count": 1}, "unraveling": {"_count": 1}, "an": {"_count": 1}, "as": {"_count": 1}, "his": {"_count": 1}, "with": {"_count": 1}}, "Hermione": {"_count": 17, "": {"_count": 6}, "and": {"_count": 1}, "but": {"_count": 1}, "PS": {"_count": 1}, "he": {"_count": 1}, "shaking": {"_count": 1}, "that": {"_count": 1}, "s": {"_count": 2}, "to": {"_count": 1}, "stopped": {"_count": 1}, "seemed": {"_count": 1}}, "anything": {"_count": 3, "else": {"_count": 2}, "with": {"_count": 1}}, "that": {"_count": 19, "moment": {"_count": 2}, "hole": {"_count": 1}, "youre": {"_count": 1}, "time": {"_count": 2}, "far": {"_count": 1}, "freak": {"_count": 1}, "Umbridge": {"_count": 1}, "said": {"_count": 1}, "angle": {"_count": 1}, "point": {"_count": 2}, "potion": {"_count": 1}, "": {"_count": 1}, "horn": {"_count": 1}, "place": {"_count": 1}, "cellar": {"_count": 1}, "room": {"_count": 1}}, "sight": {"_count": 19, "again": {"_count": 1}, "although": {"_count": 1}, "": {"_count": 9}, "they": {"_count": 1}, "or": {"_count": 1}, "long": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 2}, "she": {"_count": 1}, "I": {"_count": 1}}, "her": {"_count": 98, "wand": {"_count": 4}, "belt": {"_count": 1}, "when": {"_count": 3}, "grasp": {"_count": 1}, "face": {"_count": 5}, "beak": {"_count": 1}, "tweed": {"_count": 1}, "portrait": {"_count": 1}, "broom": {"_count": 2}, "Wormtail": {"_count": 1}, "water": {"_count": 1}, "": {"_count": 12}, "was": {"_count": 1}, "but": {"_count": 1}, "frame": {"_count": 1}, "her": {"_count": 1}, "famous": {"_count": 1}, "wrist": {"_count": 1}, "hes": {"_count": 1}, "with": {"_count": 1}, "goblet": {"_count": 1}, "stupid": {"_count": 1}, "voice": {"_count": 1}, "without": {"_count": 1}, "office": {"_count": 4}, "dropped": {"_count": 1}, "window": {"_count": 1}, "half": {"_count": 1}, "flowery": {"_count": 1}, "at": {"_count": 1}, "sleeve": {"_count": 1}, "throat": {"_count": 1}, "homework": {"_count": 1}, "stationary": {"_count": 1}, "bag": {"_count": 2}, "winged": {"_count": 1}, "shoulders": {"_count": 1}, "pocket": {"_count": 2}, "to": {"_count": 4}, "own": {"_count": 1}, "desk": {"_count": 1}, "limp": {"_count": 1}, "Where": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "hand": {"_count": 1}, "thestral": {"_count": 1}, "fellows": {"_count": 1}, "crouching": {"_count": 1}, "mother": {"_count": 1}, "he": {"_count": 1}, "perch": {"_count": 2}, "clutches": {"_count": 1}, "new": {"_count": 1}, "cauldron": {"_count": 1}, "hit": {"_count": 1}, "chair": {"_count": 1}, "work": {"_count": 1}, "I": {"_count": 1}, "eyes": {"_count": 1}, "seemed": {"_count": 1}, "ears": {"_count": 1}, "quite": {"_count": 1}, "friend": {"_count": 1}, "husband": {"_count": 1}, "bunk": {"_count": 1}, "grip": {"_count": 1}, "tone": {"_count": 1}}, "Important": {"_count": 1, "Modern": {"_count": 1}}, "Hagrid": {"_count": 5, "": {"_count": 2}, "the": {"_count": 1}, "said": {"_count": 1}, "bustling": {"_count": 1}}, "said": {"_count": 6, "Ron": {"_count": 1}, "school": {"_count": 1}, "Hermione": {"_count": 1}, "Moody": {"_count": 1}, "Ginny": {"_count": 1}, "Harry": {"_count": 1}}, "being": {"_count": 8, "solid": {"_count": 1}, "angry": {"_count": 1}, "reassured": {"_count": 1}, "murdered": {"_count": 1}, "expelled": {"_count": 1}, "chucked": {"_count": 1}, "smashed": {"_count": 1}, "downright": {"_count": 1}}, "screaming": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 10, "his": {"_count": 3}, "the": {"_count": 4}, "her": {"_count": 1}, "Hermione": {"_count": 1}, "Wormtails": {"_count": 1}}, "this": {"_count": 21, "splendid": {"_count": 1}, "place": {"_count": 3}, "unpleasant": {"_count": 2}, "school": {"_count": 2}, "distance": {"_count": 1}, "side": {"_count": 1}, "glanced": {"_count": 1}, "horrible": {"_count": 1}, "window": {"_count": 1}, "he": {"_count": 1}, "hall": {"_count": 1}, "girl": {"_count": 1}, "ceiling": {"_count": 1}, "door": {"_count": 1}, "moment": {"_count": 1}, "house": {"_count": 1}, "it": {"_count": 1}}, "staying": {"_count": 1, "here": {"_count": 1}}, "wanting": {"_count": 2, "to": {"_count": 2}}, "ever": {"_count": 1, "dying": {"_count": 1}}, "Malfoy": {"_count": 4, "using": {"_count": 1}, "this": {"_count": 1}, "s": {"_count": 1}, "was": {"_count": 1}}, "Fluffy": {"_count": 3, "loads": {"_count": 1}, "SHHHH": {"_count": 1}, "": {"_count": 1}}, "noticing": {"_count": 1, "us": {"_count": 1}}, "Slytherin": {"_count": 4, "": {"_count": 3}, "who": {"_count": 1}}, "what": {"_count": 25, "Harry": {"_count": 4}, "looked": {"_count": 1}, "I": {"_count": 2}, "Ive": {"_count": 2}, "they": {"_count": 2}, "he": {"_count": 5}, "felt": {"_count": 1}, "Lucius": {"_count": 1}, "weve": {"_count": 1}, "Arthur": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "happened": {"_count": 1}, "seemed": {"_count": 1}, "my": {"_count": 1}}, "death": {"_count": 1, "but": {"_count": 1}}, "curling": {"_count": 1, "around": {"_count": 1}}, "up": {"_count": 3, "ahead": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}}, "above": {"_count": 10, "Hermione": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 4}, "he": {"_count": 1}, "them": {"_count": 1}, "there": {"_count": 1}}, "going": {"_count": 4, "down": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}}, "winning": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "concentrating": {"_count": 1, "on": {"_count": 1}}, "Quirrell": {"_count": 1, "himself": {"_count": 1}}, "Quirrells": {"_count": 1, "turban": {"_count": 1}}, "doing": {"_count": 3, "a": {"_count": 1}, "magic": {"_count": 1}, "so": {"_count": 1}}, "killing": {"_count": 2, "me": {"_count": 1}, "Pettigrew": {"_count": 1}}, "every": {"_count": 16, "page": {"_count": 1}, "flower": {"_count": 1}, "face": {"_count": 1}, "angle": {"_count": 2}, "direction": {"_count": 5}, "corner": {"_count": 1}, "thread": {"_count": 1}, "boil": {"_count": 1}, "surface": {"_count": 1}, "side": {"_count": 1}, "quarter": {"_count": 1}}, "carrying": {"_count": 2, "messages": {"_count": 1}, "Dudley": {"_count": 1}}, "locking": {"_count": 1, "him": {"_count": 1}}, "Hogwarts": {"_count": 33, "": {"_count": 14}, "one": {"_count": 1}, "Lee": {"_count": 1}, "in": {"_count": 3}, "Hermione": {"_count": 1}, "left": {"_count": 1}, "if": {"_count": 1}, "so": {"_count": 1}, "about": {"_count": 1}, "yet": {"_count": 1}, "students": {"_count": 1}, "and": {"_count": 1}, "Ill": {"_count": 1}, "while": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "by": {"_count": 1}, "or": {"_count": 1}}, "downstairs": {"_count": 5, "and": {"_count": 1}, "both": {"_count": 1}, "followed": {"_count": 2}, "that": {"_count": 1}}, "head": {"_count": 18, "to": {"_count": 18}}, "horrible": {"_count": 1, "happenings": {"_count": 1}}, "ear": {"_count": 2, "to": {"_count": 2}}, "Bill": {"_count": 3, "or": {"_count": 1}, "and": {"_count": 1}, "Weasley": {"_count": 1}}, "Mrs": {"_count": 8, "Weasleys": {"_count": 1}, "Norriss": {"_count": 1}, "Weasley": {"_count": 3}, "Figg": {"_count": 2}, "Coles": {"_count": 1}}, "life": {"_count": 1, "on": {"_count": 1}}, "Fred": {"_count": 10, "and": {"_count": 7}, "or": {"_count": 1}, "Weasley": {"_count": 1}, "": {"_count": 1}}, "school": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "pending": {"_count": 1}}, "Kings": {"_count": 3, "Cross": {"_count": 3}}, "underneath": {"_count": 8, "him": {"_count": 1}, "his": {"_count": 2}, "its": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}}, "Percy": {"_count": 6, "and": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 3}}, "Dumbledore": {"_count": 26, "so": {"_count": 1}, "to": {"_count": 1}, "an": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 5}, "explaining": {"_count": 1}, "growled": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}, "would": {"_count": 1}, "its": {"_count": 1}, "lately": {"_count": 1}, "did": {"_count": 1}, "at": {"_count": 1}, "looking": {"_count": 1}, "who": {"_count": 1}, "slumped": {"_count": 1}, "hidden": {"_count": 1}, "s": {"_count": 1}, "like": {"_count": 1}, "against": {"_count": 1}}, "Mr": {"_count": 10, "Borgin": {"_count": 1}, "Weasley": {"_count": 4}, "and": {"_count": 1}, "Crouch": {"_count": 1}, "Diggory": {"_count": 1}, "Potter": {"_count": 1}, "Tonks": {"_count": 1}}, "amid": {"_count": 1, "the": {"_count": 1}}, "leaving": {"_count": 1, "but": {"_count": 1}}, "ceiling": {"_count": 1, "to": {"_count": 1}}, "knucklelike": {"_count": 1, "twigs": {"_count": 1}}, "another": {"_count": 4, "branch": {"_count": 1}, "innocent": {"_count": 1}, "said": {"_count": 1}, "persons": {"_count": 1}}, "its": {"_count": 39, "exhaust": {"_count": 1}, "shelf": {"_count": 3}, "deadly": {"_count": 1}, "depths": {"_count": 2}, "ruined": {"_count": 1}, "surroundings": {"_count": 1}, "fellows": {"_count": 1}, "roof": {"_count": 1}, "hook": {"_count": 1}, "mouth": {"_count": 2}, "tip": {"_count": 4}, "nights": {"_count": 1}, "end": {"_count": 1}, "eyes": {"_count": 1}, "hairnet": {"_count": 1}, "proper": {"_count": 1}, "midst": {"_count": 1}, "nostrils": {"_count": 1}, "slipstream": {"_count": 1}, "plinth": {"_count": 1}, "hiding": {"_count": 2}, "last": {"_count": 2}, "leaves": {"_count": 1}, "back": {"_count": 1}, "restraining": {"_count": 1}, "broken": {"_count": 1}, "previous": {"_count": 2}, "hard": {"_count": 1}, "underground": {"_count": 1}}, "breakfast": {"_count": 1, "in": {"_count": 1}}, "Errols": {"_count": 1, "beak": {"_count": 1}}, "Rons": {"_count": 13, "hand": {"_count": 2}, "bed": {"_count": 2}, "expression": {"_count": 1}, "face": {"_count": 1}, "leg": {"_count": 1}, "vicinity": {"_count": 1}, "": {"_count": 2}, "grip": {"_count": 1}, "and": {"_count": 1}, "robes": {"_count": 1}}, "Colin": {"_count": 1, "": {"_count": 1}}, "somewhere": {"_count": 15, "near": {"_count": 1}, "": {"_count": 2}, "above": {"_count": 2}, "and": {"_count": 1}, "around": {"_count": 1}, "ahead": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}, "outside": {"_count": 1}, "behind": {"_count": 1}, "nearby": {"_count": 1}, "out": {"_count": 1}, "close": {"_count": 1}}, "where": {"_count": 10, "it": {"_count": 2}, "Harry": {"_count": 1}, "Im": {"_count": 1}, "he": {"_count": 4}, "you": {"_count": 1}, "the": {"_count": 1}}, "Filch": {"_count": 3, "s": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "cheerful": {"_count": 1, "These": {"_count": 1}}, "Kent": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 24, "position": {"_count": 1}, "round": {"_count": 1}, "she": {"_count": 4}, "you": {"_count": 1}, "her": {"_count": 1}, "Ginny": {"_count": 1}, "owls": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 2}, "flew": {"_count": 1}, "a": {"_count": 2}, "sure": {"_count": 1}, "the": {"_count": 1}, "witch": {"_count": 1}, "they": {"_count": 2}, "chains": {"_count": 1}, "to": {"_count": 1}, "Lily": {"_count": 1}}, "Nick": {"_count": 1, "Nicks": {"_count": 1}}, "both": {"_count": 10, "ends": {"_count": 1}, "of": {"_count": 2}, "wands": {"_count": 3}, "countries": {"_count": 1}, "directions": {"_count": 1}, "nostrils": {"_count": 1}, "ankles": {"_count": 1}}, "Lockharts": {"_count": 2, "office": {"_count": 1}, "face": {"_count": 1}}, "Herbology": {"_count": 2, "coming": {"_count": 1}, "after": {"_count": 1}}, "between": {"_count": 16, "the": {"_count": 5}, "her": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 6}, "its": {"_count": 1}, "them": {"_count": 1}, "more": {"_count": 1}}, "prying": {"_count": 2, "Muggle": {"_count": 1}, "eyes": {"_count": 1}}, "there": {"_count": 4, "Percy": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "murdering": {"_count": 1, "Harry": {"_count": 1}}, "letting": {"_count": 1, "us": {"_count": 1}}, "hitting": {"_count": 3, "himself": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}}, "within": {"_count": 11, "the": {"_count": 3}, "a": {"_count": 1}, "": {"_count": 3}, "her": {"_count": 2}, "his": {"_count": 1}, "using": {"_count": 1}}, "getting": {"_count": 3, "on": {"_count": 1}, "to": {"_count": 1}, "wind": {"_count": 1}}, "Snapes": {"_count": 5, "private": {"_count": 1}, "office": {"_count": 1}, "childhood": {"_count": 1}, "mouth": {"_count": 1}, "throat": {"_count": 1}}, "Crabbe": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "over": {"_count": 11, "there": {"_count": 3}, "their": {"_count": 2}, "the": {"_count": 2}, "": {"_count": 1}, "beside": {"_count": 1}, "his": {"_count": 2}}, "telling": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "Vauxhall": {"_count": 1, "Road": {"_count": 1}}, "class": {"_count": 1, "to": {"_count": 1}}, "six": {"_count": 1, "oclock": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtles": {"_count": 1}}, "werewolves": {"_count": 1, "": {"_count": 1}}, "side": {"_count": 11, "to": {"_count": 11}}, "Riddles": {"_count": 1, "face": {"_count": 1}}, "Slytherins": {"_count": 1, "mouth": {"_count": 1}}, "Tom": {"_count": 2, "Riddle": {"_count": 2}}, "opposite": {"_count": 2, "ends": {"_count": 2}}, "any": {"_count": 5, "of": {"_count": 3}, "Dark": {"_count": 1}, "reasonable": {"_count": 1}}, "because": {"_count": 1, "in": {"_count": 1}}, "men": {"_count": 1, "in": {"_count": 1}}, "wishing": {"_count": 1, "Harry": {"_count": 1}}, "beating": {"_count": 1, "Dudley": {"_count": 1}}, "Azkaban": {"_count": 17, "before": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 7}, "ordering": {"_count": 1}, "two": {"_count": 1}, "might": {"_count": 1}, "remember": {"_count": 1}, "Fudge": {"_count": 1}, "expecting": {"_count": 1}}, "Anglesey": {"_count": 1, "to": {"_count": 1}}, "deep": {"_count": 2, "velvety": {"_count": 1}, "water": {"_count": 1}}, "Florean": {"_count": 1, "Fortescue": {"_count": 1}}, "knowing": {"_count": 1, "a": {"_count": 1}}, "buying": {"_count": 1, "a": {"_count": 1}}, "Flourish": {"_count": 4, "and": {"_count": 4}}, "Egypt": {"_count": 3, "": {"_count": 2}, "our": {"_count": 1}}, "Scabbers": {"_count": 2, "s": {"_count": 1}, "to": {"_count": 1}}, "far": {"_count": 4, "away": {"_count": 3}, "far": {"_count": 1}}, "face": {"_count": 1, "to": {"_count": 1}}, "feather": {"_count": 1, "to": {"_count": 1}}, "beneath": {"_count": 19, "his": {"_count": 6}, "them": {"_count": 1}, "by": {"_count": 1}, "the": {"_count": 4}, "what": {"_count": 1}, "her": {"_count": 3}, "a": {"_count": 1}, "an": {"_count": 1}, "cloaks": {"_count": 1}}, "an": {"_count": 21, "unseen": {"_count": 1}, "airborne": {"_count": 1}, "entrance": {"_count": 1}, "owl": {"_count": 1}, "upper": {"_count": 1}, "ancient": {"_count": 1}, "eyewitness": {"_count": 1}, "armchair": {"_count": 3}, "old": {"_count": 1}, "inside": {"_count": 5}, "organization": {"_count": 1}, "acromantula": {"_count": 1}, "egg": {"_count": 1}, "inner": {"_count": 1}, "Erumpent": {"_count": 1}}, "tackling": {"_count": 1, "the": {"_count": 1}}, "Crookshanks": {"_count": 1, "but": {"_count": 1}}, "Honeydukes": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "himself": {"_count": 5, "was": {"_count": 1}, "who": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "Hufflepuff": {"_count": 7, "Ravenclaw": {"_count": 1}, "spent": {"_count": 1}, "He": {"_count": 1}, "too": {"_count": 1}, "during": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}}, "sneaking": {"_count": 1, "up": {"_count": 1}}, "Lord": {"_count": 3, "Voldemort": {"_count": 1}, "Thingy": {"_count": 1}, "Voldemorts": {"_count": 1}}, "Lupin": {"_count": 3, "the": {"_count": 1}, "that": {"_count": 1}, "if": {"_count": 1}}, "Wood": {"_count": 1, "and": {"_count": 1}}, "something": {"_count": 3, "much": {"_count": 1}, "someone": {"_count": 1}, "called": {"_count": 1}}, "Lily": {"_count": 4, "an": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "limb": {"_count": 2, "Hagrid": {"_count": 1}, "for": {"_count": 1}}, "fun": {"_count": 1, "had": {"_count": 1}}, "Mum": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "Snape": {"_count": 12, "remember": {"_count": 1}, "": {"_count": 6}, "too": {"_count": 1}, "s": {"_count": 1}, "as": {"_count": 2}, "in": {"_count": 1}}, "Seamuss": {"_count": 1, "bed": {"_count": 1}}, "handle": {"_count": 1, "to": {"_count": 1}}, "Hogsmeade": {"_count": 6, "Harry": {"_count": 1}, "last": {"_count": 1}, "Id": {"_count": 1}, "Station": {"_count": 1}, "early": {"_count": 1}, "then": {"_count": 1}}, "long": {"_count": 2, "black": {"_count": 1}, "grass": {"_count": 1}}, "Moony": {"_count": 1, "Wormtail": {"_count": 1}}, "tiny": {"_count": 1, "cracks": {"_count": 1}}, "Great": {"_count": 1, "Grays": {"_count": 1}}, "Father": {"_count": 1, "any": {"_count": 1}}, "leaping": {"_count": 1, "on": {"_count": 1}}, "Sirius": {"_count": 16, "Black": {"_count": 1}, "": {"_count": 4}, "all": {"_count": 1}, "since": {"_count": 1}, "the": {"_count": 1}, "lately": {"_count": 1}, "Hedwig": {"_count": 1}, "an": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}, "appeared": {"_count": 1}}, "shaking": {"_count": 1, "": {"_count": 1}}, "ajar": {"_count": 1, "on": {"_count": 1}}, "each": {"_count": 14, "other": {"_count": 6}, "school": {"_count": 1}, "of": {"_count": 2}, "one": {"_count": 1}, "nostril": {"_count": 1}, "House": {"_count": 1}, "": {"_count": 1}, "wither": {"_count": 1}}, "below": {"_count": 10, "the": {"_count": 1}, "": {"_count": 2}, "grew": {"_count": 1}, "rather": {"_count": 1}, "louder": {"_count": 1}, "and": {"_count": 2}, "their": {"_count": 1}, "in": {"_count": 1}}, "Transfiguration": {"_count": 1, "at": {"_count": 1}}, "pulling": {"_count": 1, "him": {"_count": 1}}, "near": {"_count": 3, "the": {"_count": 3}}, "Lupins": {"_count": 3, "voice": {"_count": 1}, "wand": {"_count": 1}, "slackened": {"_count": 1}}, "humans": {"_count": 1, "to": {"_count": 1}}, "James": {"_count": 3, "and": {"_count": 2}, "to": {"_count": 1}}, "Voldemort": {"_count": 9, "that": {"_count": 1}, "and": {"_count": 3}, "its": {"_count": 1}, "two": {"_count": 1}, "himself": {"_count": 1}, "wouldnt": {"_count": 1}, "to": {"_count": 1}}, "Voldemorts": {"_count": 5, "old": {"_count": 1}, "wand": {"_count": 3}, "giants": {"_count": 1}}, "thin": {"_count": 6, "air": {"_count": 6}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "either": {"_count": 3, "side": {"_count": 3}}, "Fudge": {"_count": 5, "who": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 2}}, "parents": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "overhead": {"_count": 11, "": {"_count": 4}, "and": {"_count": 4}, "which": {"_count": 1}, "Harry": {"_count": 1}, "All": {"_count": 1}}, "needing": {"_count": 1, "extra": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 2}}, "Hermiones": {"_count": 4, "house": {"_count": 1}, "parents": {"_count": 1}, "bird": {"_count": 1}, "wand": {"_count": 1}}, "lack": {"_count": 2, "of": {"_count": 2}}, "he": {"_count": 1, "was": {"_count": 1}}, "room": {"_count": 2, "to": {"_count": 2}}, "excitement": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "on": {"_count": 3, "top": {"_count": 2}, "high": {"_count": 1}}, "falling": {"_count": 3, "face": {"_count": 1}, "": {"_count": 1}, "right": {"_count": 1}}, "nowhere": {"_count": 3, "": {"_count": 2}, "brandishing": {"_count": 1}}, "department": {"_count": 1, "to": {"_count": 1}}, "Norway": {"_count": 1, "": {"_count": 1}}, "tangles": {"_count": 1, "of": {"_count": 1}}, "Muggles": {"_count": 1, "": {"_count": 1}}, "Stoatshead": {"_count": 1, "Hill": {"_count": 1}}, "Perkins": {"_count": 1, "at": {"_count": 1}}, "smirking": {"_count": 1, "than": {"_count": 1}}, "last": {"_count": 1, "seat": {"_count": 1}}, "using": {"_count": 3, "some": {"_count": 1}, "the": {"_count": 1}, "defensive": {"_count": 1}}, "airplanes": {"_count": 1, "without": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "Albus": {"_count": 4, "Dumbledore": {"_count": 3}, "": {"_count": 1}}, "The": {"_count": 2, "Standard": {"_count": 2}}, "finding": {"_count": 1, "it": {"_count": 1}}, "Cornelius": {"_count": 2, "Fudge": {"_count": 2}}, "out": {"_count": 11, "of": {"_count": 11}}, "wild": {"_count": 1, "moor": {"_count": 1}}, "glen": {"_count": 1, "Sweet": {"_count": 1}}, "valley": {"_count": 1, "broad": {"_count": 1}}, "fen": {"_count": 1, "": {"_count": 1}}, "Beauxbatons": {"_count": 14, "and": {"_count": 6}, "approaches": {"_count": 1}, "had": {"_count": 1}, "leapt": {"_count": 1}, "who": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}}, "entering": {"_count": 1, "the": {"_count": 1}}, "Potions": {"_count": 1, "": {"_count": 1}}, "Lavender": {"_count": 4, "Brown": {"_count": 1}, "Browns": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}}, "launching": {"_count": 1, "himself": {"_count": 1}}, "Moodys": {"_count": 3, "hand": {"_count": 1}, "desk": {"_count": 1}, "nose": {"_count": 1}}, "looking": {"_count": 3, "anxiously": {"_count": 1}, "around": {"_count": 1}, "grateful": {"_count": 1}}, "seeing": {"_count": 3, "horrible": {"_count": 1}, "Dumbledore": {"_count": 1}, "these": {"_count": 1}}, "jumping": {"_count": 1, "the": {"_count": 1}}, "retorting": {"_count": 1, "": {"_count": 1}}, "student": {"_count": 1, "to": {"_count": 1}}, "themselves": {"_count": 3, "": {"_count": 1}, "something": {"_count": 1}, "and": {"_count": 1}}, "Durmstrang": {"_count": 8, "": {"_count": 4}, "came": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}}, "everyone": {"_count": 4, "else": {"_count": 2}, "around": {"_count": 1}, "since": {"_count": 1}}, "glowering": {"_count": 1, "at": {"_count": 1}}, "dealing": {"_count": 1, "with": {"_count": 1}}, "Karkaroffs": {"_count": 1, "face": {"_count": 1}}, "Gryffindors": {"_count": 1, "entering": {"_count": 1}}, "Bagman": {"_count": 1, "to": {"_count": 1}}, "our": {"_count": 4, "own": {"_count": 1}, "midst": {"_count": 1}, "first": {"_count": 1}, "Auntie": {"_count": 1}}, "endofyear": {"_count": 1, "tests": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "Rita": {"_count": 3, "Skeeter": {"_count": 2}, "to": {"_count": 1}}, "whom": {"_count": 3, "Harry": {"_count": 1}, "Fred": {"_count": 1}, "it": {"_count": 1}}, "ze": {"_count": 1, "ead": {"_count": 1}}, "liking": {"_count": 1, "to": {"_count": 1}}, "time": {"_count": 5, "to": {"_count": 5}}, "tables": {"_count": 1, "around": {"_count": 1}}, "outside": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "competing": {"_count": 1, "": {"_count": 1}}, "stands": {"_count": 1, "that": {"_count": 1}}, "Dobby": {"_count": 1, "as": {"_count": 1}}, "plowing": {"_count": 1, "on": {"_count": 1}}, "luminous": {"_count": 1, "holly": {"_count": 1}}, "different": {"_count": 2, "Houses": {"_count": 2}}, "dancing": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 3, "of": {"_count": 3}}, "Ravenclaw": {"_count": 2, "Fawcett": {"_count": 1}, "Not": {"_count": 1}}, "thirty": {"_count": 1, "musical": {"_count": 1}}, "someone": {"_count": 3, "who": {"_count": 1}, "other": {"_count": 1}, "whose": {"_count": 1}}, "power": {"_count": 2, "thereby": {"_count": 1}, "just": {"_count": 1}}, "other": {"_count": 4, "heads": {"_count": 1}, "Houses": {"_count": 1}, "wizards": {"_count": 1}, "parts": {"_count": 1}}, "Cedric": {"_count": 3, "he": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}}, "Peeves": {"_count": 2, "though": {"_count": 1}, "which": {"_count": 1}}, "Krum": {"_count": 1, "": {"_count": 1}}, "Percys": {"_count": 1, "clutches": {"_count": 1}}, "landing": {"_count": 1, "a": {"_count": 1}}, "slipping": {"_count": 2, "away": {"_count": 1}, "beneath": {"_count": 1}}, "overwork": {"_count": 1, "": {"_count": 1}}, "grace": {"_count": 1, "at": {"_count": 1}}, "pasted": {"_count": 1, "letters": {"_count": 1}}, "mUGgle": {"_count": 1, "": {"_count": 1}}, "Krums": {"_count": 1, "secretive": {"_count": 1}}, "black": {"_count": 1, "trunk": {"_count": 1}}, "Freds": {"_count": 1, "face": {"_count": 1}}, "turning": {"_count": 1, "all": {"_count": 1}}, "ones": {"_count": 1, "mind": {"_count": 1}}, "strangers": {"_count": 1, "for": {"_count": 1}}, "criticizing": {"_count": 1, "the": {"_count": 1}}, "blue": {"_count": 1, "to": {"_count": 1}}, "neck": {"_count": 1, "to": {"_count": 1}}, "Wormtails": {"_count": 1, "mark": {"_count": 1}}, "grave": {"_count": 1, "to": {"_count": 1}}, "unicorn": {"_count": 1, "blood": {"_count": 1}}, "morning": {"_count": 1, "until": {"_count": 1}}, "shock": {"_count": 1, "it": {"_count": 1}}, "very": {"_count": 1, "far": {"_count": 1}}, "Cedrics": {"_count": 1, "limp": {"_count": 1}}, "Wormtail": {"_count": 1, "and": {"_count": 1}}, "court": {"_count": 1, "by": {"_count": 1}}, "seeking": {"_count": 1, "my": {"_count": 1}}, "Potter": {"_count": 1, "that": {"_count": 1}}, "Fawkes": {"_count": 1, "": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "rising": {"_count": 1, "": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "hooting": {"_count": 1, "continually": {"_count": 1}}, "us": {"_count": 7, "": {"_count": 3}, "rather": {"_count": 1}, "an": {"_count": 1}, "Peeves": {"_count": 1}, "said": {"_count": 1}}, "nearby": {"_count": 1, "Wisteria": {"_count": 1}}, "bins": {"_count": 1, "along": {"_count": 1}}, "those": {"_count": 5, "pestilential": {"_count": 1}, "above": {"_count": 1}, "few": {"_count": 1}, "who": {"_count": 1}, "within": {"_count": 1}}, "several": {"_count": 3, "expensive": {"_count": 1}, "floors": {"_count": 1}, "sitting": {"_count": 1}}, "Dudleys": {"_count": 1, "when": {"_count": 1}}, "Hog": {"_count": 1, "warts": {"_count": 1}}, "relieving": {"_count": 1, "his": {"_count": 1}}, "Privet": {"_count": 2, "Drive": {"_count": 2}}, "next": {"_count": 2, "to": {"_count": 1}, "week": {"_count": 1}}, "anyone": {"_count": 4, "whats": {"_count": 1}, "Potter": {"_count": 1}, "in": {"_count": 1}, "beyond": {"_count": 1}}, "curtained": {"_count": 1, "windows": {"_count": 1}}, "whence": {"_count": 2, "his": {"_count": 1}, "he": {"_count": 1}}, "across": {"_count": 4, "the": {"_count": 2}, "that": {"_count": 1}, "a": {"_count": 1}}, "Chief": {"_count": 1, "Warlock": {"_count": 1}}, "followers": {"_count": 2, "": {"_count": 2}}, "taking": {"_count": 2, "Ginny": {"_count": 1}, "the": {"_count": 1}}, "down": {"_count": 1, "below": {"_count": 1}}, "Tonks": {"_count": 1, "to": {"_count": 1}}, "watering": {"_count": 1, "": {"_count": 1}}, "pictures": {"_count": 1, "of": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "public": {"_count": 1, "life": {"_count": 1}}, "beside": {"_count": 5, "Harry": {"_count": 1}, "him": {"_count": 1}, "Luna": {"_count": 1}, "the": {"_count": 2}}, "Cho": {"_count": 1, "Luna": {"_count": 1}}, "Trelawney": {"_count": 2, "": {"_count": 1}, "mate": {"_count": 1}}, "dinner": {"_count": 2, "now": {"_count": 1}, "to": {"_count": 1}}, "first": {"_count": 2, "year": {"_count": 1}, "years": {"_count": 1}}, "somebody": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "reading": {"_count": 2, "this": {"_count": 1}, "the": {"_count": 1}}, "hunting": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 2, "less": {"_count": 1}, "other": {"_count": 1}}, "staff": {"_count": 1, "as": {"_count": 1}}, "learning": {"_count": 1, "Defense": {"_count": 1}}, "YouKnowWho": {"_count": 4, "": {"_count": 2}, "finished": {"_count": 1}, "I": {"_count": 1}}, "Zacharias": {"_count": 1, "Smiths": {"_count": 1}}, "Argus": {"_count": 1, "Filch": {"_count": 1}}, "turquoise": {"_count": 1, "to": {"_count": 1}}, "Parvati": {"_count": 1, "angry": {"_count": 1}}, "seizing": {"_count": 1, "it": {"_count": 1}}, "Smith": {"_count": 1, "and": {"_count": 1}}, "chilling": {"_count": 1, "his": {"_count": 1}}, "raising": {"_count": 1, "Rons": {"_count": 1}}, "George": {"_count": 1, "Weasley": {"_count": 1}}, "Goyle": {"_count": 1, "of": {"_count": 1}}, "playing": {"_count": 1, "Quidditch": {"_count": 1}}, "ice": {"_count": 1, "staring": {"_count": 1}}, "chair": {"_count": 1, "to": {"_count": 1}}, "tha": {"_count": 1, "couldnta": {"_count": 1}}, "healing": {"_count": 1, "": {"_count": 1}}, "tree": {"_count": 1, "to": {"_count": 1}}, "rolling": {"_count": 1, "her": {"_count": 1}}, "more": {"_count": 2, "shining": {"_count": 1}, "candle": {"_count": 1}}, "St": {"_count": 3, "": {"_count": 3}}, "Siriuss": {"_count": 4, "purge": {"_count": 1}, "wand": {"_count": 1}, "hands": {"_count": 1}, "house": {"_count": 1}}, "temple": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "having": {"_count": 1, "fallen": {"_count": 1}}, "happening": {"_count": 1, "": {"_count": 1}}, "Wizarding": {"_count": 1, "families": {"_count": 1}}, "walking": {"_count": 1, "down": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}, "Bellatrix": {"_count": 2, "Lestranges": {"_count": 1}, "": {"_count": 1}}, "midair": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 2, "under": {"_count": 1}, "behind": {"_count": 1}}, "readers": {"_count": 1, "": {"_count": 1}}, "textbooks": {"_count": 1, "if": {"_count": 1}}, "mentioning": {"_count": 1, "the": {"_count": 1}}, "touching": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "dwelling": {"_count": 1, "on": {"_count": 1}}, "stress": {"_count": 1, "to": {"_count": 1}}, "Willy": {"_count": 1, "Widdershins": {"_count": 1}}, "Marietta": {"_count": 1, "waving": {"_count": 1}}, "expulsion": {"_count": 1, "": {"_count": 1}}, "Houses": {"_count": 1, "Malfoy": {"_count": 1}}, "scratch": {"_count": 1, "now": {"_count": 1}}, "clamoring": {"_count": 1, "Gryffindors": {"_count": 1}}, "experience": {"_count": 1, "how": {"_count": 1}}, "filthy": {"_count": 1, "little": {"_count": 1}}, "tomorrow": {"_count": 1, "Fred": {"_count": 1}}, "Umbridge": {"_count": 1, "": {"_count": 1}}, "Umbridges": {"_count": 1, "office": {"_count": 1}}, "such": {"_count": 2, "disgrace": {"_count": 1}, "a": {"_count": 1}}, "Carmichael": {"_count": 1, "and": {"_count": 1}}, "studying": {"_count": 2, "": {"_count": 2}}, "bed": {"_count": 2, "three": {"_count": 1}, "to": {"_count": 1}}, "Liechtenstein": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "foot": {"_count": 1, "to": {"_count": 1}}, "bad": {"_count": 1, "to": {"_count": 1}}, "nor": {"_count": 1, "did": {"_count": 1}}, "rescuing": {"_count": 1, "Sirius": {"_count": 1}}, "gripping": {"_count": 1, "the": {"_count": 1}}, "halfway": {"_count": 2, "up": {"_count": 2}}, "top": {"_count": 2, "to": {"_count": 2}}, "Death": {"_count": 5, "Eater": {"_count": 1}, "": {"_count": 2}, "himself": {"_count": 1}, "Eaters": {"_count": 1}}, "who": {"_count": 2, "knew": {"_count": 2}}, "bench": {"_count": 1, "to": {"_count": 1}}, "step": {"_count": 1, "to": {"_count": 1}}, "stone": {"_count": 1, "seat": {"_count": 1}}, "sinking": {"_count": 1, "its": {"_count": 1}}, "portrait": {"_count": 1, "to": {"_count": 1}}, "repeating": {"_count": 1, "it": {"_count": 1}}, "afar": {"_count": 1, "as": {"_count": 1}}, "possession": {"_count": 1, "by": {"_count": 1}}, "Gryff": {"_count": 1, "Snape": {"_count": 1}}, "everybody": {"_count": 1, "since": {"_count": 1}}, "regulations": {"_count": 1, "on": {"_count": 1}}, "faithful": {"_count": 1, "Death": {"_count": 1}}, "harm": {"_count": 1, "": {"_count": 1}}, "attack": {"_count": 1, "": {"_count": 1}}, "collecting": {"_count": 1, "him": {"_count": 1}}, "unwanted": {"_count": 1, "Apparators": {"_count": 1}}, "slashes": {"_count": 1, "in": {"_count": 1}}, "Slughorn": {"_count": 8, "s": {"_count": 2}, "they": {"_count": 1}, "": {"_count": 4}, "seemed": {"_count": 1}}, "Peru": {"_count": 1, "": {"_count": 1}}, "boils": {"_count": 1, "to": {"_count": 1}}, "Ginny": {"_count": 5, "to": {"_count": 2}, "about": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "Pansy": {"_count": 1, "": {"_count": 1}}, "whichever": {"_count": 1, "carriage": {"_count": 1}}, "blaming": {"_count": 1, "her": {"_count": 1}}, "anybody": {"_count": 2, "": {"_count": 2}}, "Libatius": {"_count": 1, "Borages": {"_count": 1}}, "Flitwick": {"_count": 1, "": {"_count": 1}}, "Demelza": {"_count": 1, "did": {"_count": 1}}, "good": {"_count": 1, "ones": {"_count": 1}}, "wherever": {"_count": 1, "he": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "victims": {"_count": 1, "of": {"_count": 1}}, "nerves": {"_count": 1, "and": {"_count": 1}}, "Quidditch": {"_count": 1, "": {"_count": 1}}, "Romilda": {"_count": 1, "Vane": {"_count": 1}}, "Slughorns": {"_count": 2, "parry": {"_count": 1}, "desk": {"_count": 1}}, "Scrimgeour": {"_count": 2, "to": {"_count": 1}, "without": {"_count": 1}}, "portly": {"_count": 1, "Fudge": {"_count": 1}}, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}, "knocking": {"_count": 1, "Slughorn": {"_count": 1}}, "procuring": {"_count": 1, "that": {"_count": 1}}, "precisely": {"_count": 1, "what": {"_count": 1}}, "lessons": {"_count": 1, "most": {"_count": 1}}, "anywhere": {"_count": 1, "but": {"_count": 1}}, "Hokey": {"_count": 1, "the": {"_count": 1}}, "lovely": {"_count": 1, "in": {"_count": 1}}, "opening": {"_count": 1, "it": {"_count": 1}}, "boys": {"_count": 1, "": {"_count": 1}}, "eating": {"_count": 1, "Hagrid": {"_count": 1}}, "Aragog": {"_count": 1, "Harry": {"_count": 1}}, "decent": {"_count": 1, "Wizarding": {"_count": 1}}, "Horace": {"_count": 1, "was": {"_count": 1}}, "saying": {"_count": 1, "": {"_count": 1}}, "practice": {"_count": 1, "with": {"_count": 1}}, "Malfoys": {"_count": 2, "face": {"_count": 2}}, "poisoning": {"_count": 1, "Id": {"_count": 1}}, "fellow": {"_count": 1, "Gryffindors": {"_count": 1}}, "mice": {"_count": 1, "we": {"_count": 1}}, "these": {"_count": 1, "bitter": {"_count": 1}}, "yelling": {"_count": 1, "with": {"_count": 1}}, "shouting": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 2, "onward": {"_count": 1}, "on": {"_count": 1}}, "windows": {"_count": 1, "over": {"_count": 1}}, "Borgin": {"_count": 1, "and": {"_count": 1}}, "panic": {"_count": 1, "and": {"_count": 1}}, "high": {"_count": 1, "on": {"_count": 1}}, "stabbing": {"_count": 1, "pieces": {"_count": 1}}, "some": {"_count": 2, "including": {"_count": 1}, "brief": {"_count": 1}}, "glancing": {"_count": 1, "upward": {"_count": 1}}, "Yaxley": {"_count": 1, "he": {"_count": 1}}, "narrow": {"_count": 1, "escapes": {"_count": 1}}, "chimaeras": {"_count": 1, "in": {"_count": 1}}, "Ritas": {"_count": 1, "article": {"_count": 1}}, "Some": {"_count": 1, "of": {"_count": 1}}, "Dedaluss": {"_count": 1, "pocket": {"_count": 1}}, "Dudley": {"_count": 1, "thats": {"_count": 1}}, "brooms": {"_count": 1, "and": {"_count": 1}}, "darkening": {"_count": 1, "sky": {"_count": 1}}, "Mundungus": {"_count": 1, "as": {"_count": 1}}, "thoughts": {"_count": 1, "of": {"_count": 1}}, "four": {"_count": 1, "floors": {"_count": 1}}, "Romania": {"_count": 1, "": {"_count": 1}}, "tradition": {"_count": 1, "isnt": {"_count": 1}}, "hand": {"_count": 3, "to": {"_count": 3}}, "Beedle": {"_count": 1, "": {"_count": 1}}, "Lunas": {"_count": 1, "father": {"_count": 1}}, "Muriel": {"_count": 1, "at": {"_count": 1}}, "redecorating": {"_count": 1, "his": {"_count": 1}}, "person": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "Magical": {"_count": 4, "Maintenance": {"_count": 4}}, "reaching": {"_count": 1, "the": {"_count": 1}}, "graffiti": {"_count": 1, "": {"_count": 1}}, "Experimental": {"_count": 1, "Charms": {"_count": 1}}, "fireplace": {"_count": 1, "to": {"_count": 1}}, "occasional": {"_count": 1, "birds": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "icy": {"_count": 1, "water": {"_count": 1}}, "Gregorovitch": {"_count": 3, "Harry": {"_count": 1}, "": {"_count": 2}}, "wearing": {"_count": 1, "the": {"_count": 1}}, "Godrics": {"_count": 3, "Hollow": {"_count": 3}}, "innocent": {"_count": 1, "Muggles": {"_count": 1}}, "Dark": {"_count": 1, "Magic": {"_count": 1}}, "floor": {"_count": 2, "to": {"_count": 2}}, "noises": {"_count": 1, "that": {"_count": 1}}, "second": {"_count": 1, "to": {"_count": 1}}, "cold": {"_count": 1, "": {"_count": 1}}, "drowning": {"_count": 1, "": {"_count": 1}}, "Demiguise": {"_count": 1, "hair": {"_count": 1}}, "Barnabas": {"_count": 1, "Deverill": {"_count": 1}}, "Xenophilius": {"_count": 2, "": {"_count": 2}}, "Kreacher": {"_count": 1, "she": {"_count": 1}}, "Royal": {"_count": 1, "and": {"_count": 1}}, "Wizards": {"_count": 1, "first": {"_count": 1}}, "directly": {"_count": 2, "behind": {"_count": 1}, "above": {"_count": 1}}, "chairs": {"_count": 1, "in": {"_count": 1}}, "Greyback": {"_count": 1, "and": {"_count": 1}}, "Dracos": {"_count": 2, "Narcissas": {"_count": 1}, "grip": {"_count": 1}}, "wand": {"_count": 1, "carriers": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "Fleur": {"_count": 1, "went": {"_count": 1}}, "Griphook": {"_count": 1, "and": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "wizard": {"_count": 2, "to": {"_count": 2}}, "Grimmauld": {"_count": 1, "Place": {"_count": 1}}, "posters": {"_count": 1, "plastered": {"_count": 1}}, "Transylvania": {"_count": 1, "to": {"_count": 1}}, "brain": {"_count": 1, "to": {"_count": 1}}, "delight": {"_count": 1, "or": {"_count": 1}}, "Shell": {"_count": 1, "Cottage": {"_count": 1}}, "Dung": {"_count": 1, "bout": {"_count": 1}}, "Aberforth": {"_count": 1, "s": {"_count": 1}}, "flying": {"_count": 1, "spells": {"_count": 1}}, "confusion": {"_count": 1, "and": {"_count": 1}}, "painting": {"_count": 1, "to": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "amidst": {"_count": 1, "the": {"_count": 1}}, "panting": {"_count": 1, "and": {"_count": 1}}, "further": {"_count": 1, "harm": {"_count": 1}}, "Ollivander": {"_count": 1, "all": {"_count": 1}}, "crying": {"_count": 1, "out": {"_count": 1}}, "dawn": {"_count": 1, "yet": {"_count": 1}}, "normal": {"_count": 1, "people": {"_count": 1}}, "whatevers": {"_count": 1, "down": {"_count": 1}}, "returning": {"_count": 1, "here": {"_count": 1}}, "wounds": {"_count": 1, "stabbed": {"_count": 1}}, "hurting": {"_count": 1, "these": {"_count": 1}}}, "bakery": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Hed": {"_count": 67, "forgotten": {"_count": 1, "all": {"_count": 1}}, "never": {"_count": 8, "even": {"_count": 1}, "had": {"_count": 2}, "been": {"_count": 2}, "felt": {"_count": 1}, "be": {"_count": 1}, "let": {"_count": 1}}, "have": {"_count": 11, "to": {"_count": 6}, "a": {"_count": 1}, "been": {"_count": 2}, "me": {"_count": 1}, "loved": {"_count": 1}}, "lived": {"_count": 1, "with": {"_count": 1}}, "screamed": {"_count": 1, "whacked": {"_count": 1}}, "spent": {"_count": 1, "his": {"_count": 1}}, "just": {"_count": 5, "had": {"_count": 1}, "gotten": {"_count": 1}, "have": {"_count": 1}, "say": {"_count": 1}, "lost": {"_count": 1}}, "lost": {"_count": 1, "two": {"_count": 1}}, "be": {"_count": 5, "packing": {"_count": 1}, "able": {"_count": 1}, "fine": {"_count": 1}, "welcomed": {"_count": 1}, "trying": {"_count": 1}}, "done": {"_count": 4, "it": {"_count": 2}, "a": {"_count": 1}, "what": {"_count": 1}}, "really": {"_count": 1, "done": {"_count": 1}}, "die": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "it": {"_count": 1}}, "seen": {"_count": 1, "Quirrell": {"_count": 1}}, "been": {"_count": 2, "talking": {"_count": 1}, "afraid": {"_count": 1}}, "almost": {"_count": 1, "be": {"_count": 1}}, "see": {"_count": 1, "Justin": {"_count": 1}}, "probably": {"_count": 5, "thought": {"_count": 1}, "do": {"_count": 1}, "blast": {"_count": 1}, "wake": {"_count": 1}, "be": {"_count": 1}}, "look": {"_count": 1, "dreadful": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "escaped": {"_count": 1, "Lord": {"_count": 1}}, "want": {"_count": 1, "you": {"_count": 1}}, "give": {"_count": 1, "her": {"_count": 1}}, "got": {"_count": 1, "this": {"_count": 1}}, "deserve": {"_count": 1, "it": {"_count": 1}}, "love": {"_count": 1, "to": {"_count": 1}}, "better": {"_count": 1, "be": {"_count": 1}}, "heard": {"_count": 1, "o": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "given": {"_count": 1, "his": {"_count": 1}}, "hit": {"_count": 1, "you": {"_count": 1}}, "play": {"_count": 1, "up": {"_count": 1}}, "tell": {"_count": 1, "us": {"_count": 1}}, "already": {"_count": 1, "made": {"_count": 1}}}, "forgotten": {"_count": 127, "all": {"_count": 6, "about": {"_count": 6}}, "": {"_count": 8, "?": {"_count": 1}, ".": {"_count": 6}, "!": {"_count": 1}}, "that": {"_count": 14, "Harry": {"_count": 1}, "the": {"_count": 3}, "Malfoy": {"_count": 1}, "Buckbeaks": {"_count": 1}, "he": {"_count": 3}, "Headmaster": {"_count": 1}, "they": {"_count": 1}, "Ginny": {"_count": 1}, "she": {"_count": 1}, "other": {"_count": 1}}, "to": {"_count": 12, "tell": {"_count": 2}, "do": {"_count": 2}, "remove": {"_count": 1}, "add": {"_count": 1}, "mention": {"_count": 1}, "worry": {"_count": 1}, "take": {"_count": 1}, "warn": {"_count": 1}, "lock": {"_count": 2}}, "something": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "Draco": {"_count": 1}}, "what": {"_count": 8, "they": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 2}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "about": {"_count": 8, "Flamel": {"_count": 1}, "it": {"_count": 1}, "Lockhart": {"_count": 1}, "Black": {"_count": 1}, "magic": {"_count": 1}, "the": {"_count": 2}, "Slughorn": {"_count": 1}}, "someone": {"_count": 2, "": {"_count": 2}}, "they": {"_count": 2, "still": {"_count": 1}, "usually": {"_count": 1}}, "the": {"_count": 17, "magic": {"_count": 1}, "way": {"_count": 1}, "password": {"_count": 1}, "hint": {"_count": 1}, "Hover": {"_count": 1}, "magazine": {"_count": 1}, "scroll": {"_count": 1}, "fact": {"_count": 1}, "exam": {"_count": 1}, "potion": {"_count": 1}, "skrewts": {"_count": 1}, "lessons": {"_count": 1}, "Gryffindor": {"_count": 1}, "inert": {"_count": 1}, "fear": {"_count": 1}, "portrait": {"_count": 1}, "details": {"_count": 1}}, "his": {"_count": 5, "birthday": {"_count": 1}, "box": {"_count": 1}, "Firebolt": {"_count": 1}, "career": {"_count": 1}, "other": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 2}, "so": {"_count": 1}}, "Hedwig": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "how": {"_count": 1}}, "pimply": {"_count": 1, "Peeves": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 3, "squabble": {"_count": 1}, "promise": {"_count": 1}, "disagreement": {"_count": 1}}, "Malfoys": {"_count": 1, "attempt": {"_count": 1}}, "spellbooks": {"_count": 1, "or": {"_count": 1}}, "where": {"_count": 1, "I": {"_count": 1}}, "how": {"_count": 3, "to": {"_count": 1}, "much": {"_count": 1}, "his": {"_count": 1}}, "Dudley": {"_count": 1, "and": {"_count": 1}}, "completely": {"_count": 1, "about": {"_count": 1}}, "he": {"_count": 5, "used": {"_count": 2}, "was": {"_count": 1}, "yelled": {"_count": 1}, "hurried": {"_count": 1}}, "anything": {"_count": 1, "well": {"_count": 1}}, "Wood": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "this": {"_count": 1, "merely": {"_count": 1}}, "Venuss": {"_count": 1, "position": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "George": {"_count": 1}, "Harry": {"_count": 1}}, "Ogden": {"_count": 1, "who": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "why": {"_count": 1, "hadnt": {"_count": 1}}, "our": {"_count": 1, "orders": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 2, "laughter": {"_count": 1}, "her": {"_count": 1}}, "until": {"_count": 1, "this": {"_count": 1}}, "Rons": {"_count": 1, "hatred": {"_count": 1}}, "lost": {"_count": 1, "track": {"_count": 1}}, "or": {"_count": 1, "had": {"_count": 1}}}, "passed": {"_count": 337, "a": {"_count": 16, "group": {"_count": 3}, "dozen": {"_count": 1}, "roundfaced": {"_count": 1}, "bend": {"_count": 1}, "grapefruit": {"_count": 1}, "tent": {"_count": 1}, "window": {"_count": 1}, "Ministry": {"_count": 1}, "foulsmelling": {"_count": 1}, "few": {"_count": 1}, "full": {"_count": 1}, "hand": {"_count": 1}, "lamp": {"_count": 1}, "look": {"_count": 1}}, "": {"_count": 37, ".": {"_count": 34}, "!": {"_count": 3}}, "since": {"_count": 3, "the": {"_count": 1}, "I": {"_count": 1}, "their": {"_count": 1}}, "but": {"_count": 4, "by": {"_count": 1}, "Harry": {"_count": 1}, "none": {"_count": 1}, "Hagrids": {"_count": 1}}, "the": {"_count": 41, "sausages": {"_count": 1}, "ghost": {"_count": 1}, "thirdfloor": {"_count": 1}, "door": {"_count": 1}, "test": {"_count": 1}, "library": {"_count": 1}, "gates": {"_count": 1}, "Slytherin": {"_count": 3}, "security": {"_count": 2}, "oneeyed": {"_count": 1}, "second": {"_count": 1}, "Ls": {"_count": 1}, "girls": {"_count": 1}, "Durmstrang": {"_count": 2}, "Bloody": {"_count": 1}, "narrow": {"_count": 1}, "householders": {"_count": 1}, "window": {"_count": 2}, "row": {"_count": 1}, "fountain": {"_count": 1}, "large": {"_count": 1}, "Quidditch": {"_count": 1}, "place": {"_count": 2}, "wooden": {"_count": 1}, "sun": {"_count": 1}, "team": {"_count": 1}, "Deluminator": {"_count": 1}, "dementors": {"_count": 1}, "Horcrux": {"_count": 2}, "bag": {"_count": 1}, "underground": {"_count": 1}, "knowledge": {"_count": 1}, "stuffed": {"_count": 1}, "job": {"_count": 1}}, "book": {"_count": 1, "shops": {"_count": 1}}, "saying": {"_count": 1, "Dragon": {"_count": 1}}, "just": {"_count": 1, "behind": {"_count": 1}}, "on": {"_count": 5, "platform": {"_count": 1}, "Firenzes": {"_count": 1}, "their": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 2, "that": {"_count": 1}, "ten": {"_count": 1}}, "different": {"_count": 1, "groups": {"_count": 1}}, "his": {"_count": 3, "left": {"_count": 1}, "magical": {"_count": 1}, "test": {"_count": 1}}, "Filch": {"_count": 1, "in": {"_count": 1}}, "Quirrell": {"_count": 1, "these": {"_count": 1}}, "with": {"_count": 1, "good": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 13, "the": {"_count": 8}, "one": {"_count": 1}, "it": {"_count": 2}, "this": {"_count": 1}, "stretches": {"_count": 1}}, "it": {"_count": 13, "out": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}, "up": {"_count": 1}, "quickly": {"_count": 1}, "on": {"_count": 1}, "all": {"_count": 1}, "across": {"_count": 1}, "to": {"_count": 2}, "along": {"_count": 1}, "around": {"_count": 1}, "it": {"_count": 1}}, "over": {"_count": 7, "them": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 2}, "more": {"_count": 1}, "Ernies": {"_count": 1}, "shields": {"_count": 1}}, "him": {"_count": 9, "to": {"_count": 1}, "some": {"_count": 1}, "on": {"_count": 2}, "the": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}, "in": {"_count": 1}}, "corridors": {"_count": 1, "where": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 12, "a": {"_count": 2}, "the": {"_count": 4}, "silence": {"_count": 3}, "which": {"_count": 1}, "total": {"_count": 1}, "and": {"_count": 1}}, "Harrys": {"_count": 1, "bed": {"_count": 1}}, "her": {"_count": 8, "": {"_count": 3}, "in": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "several": {"_count": 1}}, "out": {"_count": 8, "or": {"_count": 1}, "of": {"_count": 3}, "": {"_count": 1}, "right": {"_count": 1}, "cold": {"_count": 1}, "against": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "Malfoy": {"_count": 2, "did": {"_count": 1}, "looked": {"_count": 1}}, "Harry": {"_count": 8, "saw": {"_count": 1}, "the": {"_count": 3}, "and": {"_count": 2}, "caught": {"_count": 1}, "heard": {"_count": 1}}, "them": {"_count": 11, "walking": {"_count": 1}, "was": {"_count": 1}, "girls": {"_count": 1}, "": {"_count": 2}, "including": {"_count": 1}, "had": {"_count": 1}, "glancing": {"_count": 1}, "were": {"_count": 1}, "up": {"_count": 1}, "on": {"_count": 1}}, "around": {"_count": 1, "and": {"_count": 1}}, "every": {"_count": 1, "subject": {"_count": 1}}, "your": {"_count": 4, "exam": {"_count": 1}, "test": {"_count": 1}, "Apparation": {"_count": 1}, "Apparition": {"_count": 1}}, "two": {"_count": 1, "weeks": {"_count": 1}}, "and": {"_count": 12, "though": {"_count": 1}, "making": {"_count": 1}, "a": {"_count": 1}, "Ginny": {"_count": 1}, "when": {"_count": 1}, "this": {"_count": 1}, "watched": {"_count": 1}, "did": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "looked": {"_count": 1}, "wondered": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "without": {"_count": 3, "great": {"_count": 1}, "further": {"_count": 1}, "one": {"_count": 1}}, "like": {"_count": 1, "everyone": {"_count": 1}}, "Snape": {"_count": 1, "walked": {"_count": 1}}, "right": {"_count": 4, "by": {"_count": 1}, "across": {"_count": 1}, "underneath": {"_count": 1}, "over": {"_count": 1}}, "angrily": {"_count": 1, "pushing": {"_count": 1}}, "my": {"_count": 1, "office": {"_count": 1}}, "Moody": {"_count": 1, "without": {"_count": 1}}, "Hagrids": {"_count": 1, "cabin": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "useful": {"_count": 1}}, "information": {"_count": 1, "to": {"_count": 1}}, "Amos": {"_count": 1, "Diggory": {"_count": 1}}, "he": {"_count": 3, "zigzagged": {"_count": 1}, "gritted": {"_count": 1}, "inclined": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "pleasantly": {"_count": 1, "enough": {"_count": 1}}, "earlier": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "here": {"_count": 1, "were": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "between": {"_count": 3, "the": {"_count": 1}, "them": {"_count": 1}, "tent": {"_count": 1}}, "down": {"_count": 2, "through": {"_count": 2}}, "however": {"_count": 1, "Harry": {"_count": 1}}, "Seamus": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 9, "George": {"_count": 2}, "Harry": {"_count": 2}, "Ron": {"_count": 1}, "Angelina": {"_count": 1}, "ensure": {"_count": 1}, "every": {"_count": 1}, "or": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "new": {"_count": 1, "legislation": {"_count": 1}}, "this": {"_count": 1, "\u2018Educational": {"_count": 1}}, "apparently": {"_count": 1, "unnoticed": {"_count": 1}}, "Montague": {"_count": 1, "shes": {"_count": 1}}, "midway": {"_count": 1, "around": {"_count": 1}}, "within": {"_count": 1, "two": {"_count": 1}}, "Cho": {"_count": 1, "she": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "Its": {"_count": 1, "never": {"_count": 1}}, "one": {"_count": 2, "door": {"_count": 1}, "of": {"_count": 1}}, "Professors": {"_count": 1, "McGonagall": {"_count": 1}}, "Scrivenshafts": {"_count": 1, "cold": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "they": {"_count": 1}}, "from": {"_count": 5, "the": {"_count": 1}, "Siriuss": {"_count": 1}, "hand": {"_count": 2}, "person": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "Umbridge": {"_count": 1, "beside": {"_count": 1}}, "then": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "muttered": {"_count": 1, "reproaches": {"_count": 1}}, "Ginny": {"_count": 1, "Hermione": {"_count": 1}}, "Hogsmeade": {"_count": 1, "": {"_count": 1}}, "row": {"_count": 1, "eightyfour": {"_count": 1}}, "boarded": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 3, "your": {"_count": 1}, "the": {"_count": 2}}, "everything": {"_count": 1, "else": {"_count": 1}}, "well": {"_count": 1, "in": {"_count": 1}}, "leering": {"_count": 1, "at": {"_count": 1}}, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}, "so": {"_count": 1, "close": {"_count": 1}}, "large": {"_count": 1, "bubbling": {"_count": 1}}, "very": {"_count": 1, "close": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "Lupin": {"_count": 1, "who": {"_count": 1}}, "amicably": {"_count": 1, "with": {"_count": 1}}, "Peeves": {"_count": 1, "near": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Voldemort": {"_count": 2, "had": {"_count": 1}, "the": {"_count": 1}}, "straight": {"_count": 1, "through": {"_count": 1}}, "gleaming": {"_count": 1, "wooden": {"_count": 1}}, "more": {"_count": 1, "cottages": {"_count": 1}}, "following": {"_count": 1, "Luna": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "unnoticed": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "out": {"_count": 1}}, "faces": {"_count": 1, "turned": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "portrait": {"_count": 1, "after": {"_count": 1}}, "they": {"_count": 1, "made": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}}, "group": {"_count": 111, "of": {"_count": 55, "them": {"_count": 2}, "people": {"_count": 7}, "gloomy": {"_count": 1}, "the": {"_count": 1}, "Slytherins": {"_count": 2}, "women": {"_count": 1}, "secondyear": {"_count": 1}, "men": {"_count": 3}, "middleaged": {"_count": 1}, "teenagers": {"_count": 1}, "haggardlooking": {"_count": 1}, "goblins": {"_count": 1}, "second": {"_count": 1}, "chattering": {"_count": 1}, "magical": {"_count": 1}, "simpering": {"_count": 1}, "her": {"_count": 1}, "thirdyear": {"_count": 1}, "Death": {"_count": 1}, "four": {"_count": 2}, "golden": {"_count": 1}, "very": {"_count": 1}, "new": {"_count": 1}, "curious": {"_count": 1}, "captive": {"_count": 1}, "students": {"_count": 2}, "laughing": {"_count": 1}, "cackling": {"_count": 1}, "ancient": {"_count": 1}, "fourthyear": {"_count": 1}, "unfriendly": {"_count": 1}, "girls": {"_count": 2}, "dedicated": {"_count": 1}, "boys": {"_count": 1}, "seventh": {"_count": 1}, "merry": {"_count": 1}, "terrified": {"_count": 1}, "wizards": {"_count": 1}, "Ravenclaws": {"_count": 1}, "fighters": {"_count": 1}, "helpers": {"_count": 1}, "rowdy": {"_count": 1}}, "that": {"_count": 2, "headed": {"_count": 1}, "called": {"_count": 1}}, "including": {"_count": 1, "Crabbe": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 13}, "?": {"_count": 2}}, "talking": {"_count": 1, "in": {"_count": 1}}, "laughing": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 2, "Harrys": {"_count": 1}, "Bills": {"_count": 1}}, "Harry": {"_count": 2, "saw": {"_count": 1}, "managed": {"_count": 1}}, "hes": {"_count": 1, "after": {"_count": 1}}, "The": {"_count": 1, "Hobgoblins": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "and": {"_count": 3, "potentially": {"_count": 1}, "as": {"_count": 1}, "went": {"_count": 1}}, "nearest": {"_count": 1, "them": {"_count": 1}}, "youre": {"_count": 1, "planning": {"_count": 1}}, "took": {"_count": 2, "their": {"_count": 2}}, "focused": {"_count": 1, "its": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 2, "this": {"_count": 1}, "large": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "was": {"_count": 3, "the": {"_count": 1}, "at": {"_count": 1}, "comprised": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "observed": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "bowler": {"_count": 1}}, "stood": {"_count": 1, "Mr": {"_count": 1}}, "had": {"_count": 3, "a": {"_count": 2}, "come": {"_count": 1}}, "were": {"_count": 1, "Hufflepuffs": {"_count": 1}}, "nearby": {"_count": 1, "This": {"_count": 1}}, "the": {"_count": 1, "Weird": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "casting": {"_count": 1, "massive": {"_count": 1}}}, "next": {"_count": 659, "to": {"_count": 171, "the": {"_count": 30}, "him": {"_count": 33}, "Harry": {"_count": 12}, "it": {"_count": 9}, "a": {"_count": 7}, "Ron": {"_count": 4}, "Hannah": {"_count": 1}, "Malfoy": {"_count": 1}, "Neville": {"_count": 2}, "her": {"_count": 6}, "George": {"_count": 2}, "you": {"_count": 2}, "Ronan": {"_count": 1}, "Hedwig": {"_count": 3}, "his": {"_count": 5}, "Hermione": {"_count": 5}, "fourth": {"_count": 1}, "Colin": {"_count": 1}, "them": {"_count": 5}, "Harrys": {"_count": 2}, "Professor": {"_count": 3}, "Rons": {"_count": 1}, "no": {"_count": 2}, "Ernies": {"_count": 1}, "all": {"_count": 1}, "Crookshanks": {"_count": 1}, "Mr": {"_count": 4}, "theirs": {"_count": 1}, "Nearly": {"_count": 1}, "Madame": {"_count": 2}, "Dumbledores": {"_count": 1}, "Cedric": {"_count": 1}, "Krum": {"_count": 2}, "Percy": {"_count": 1}, "Albus": {"_count": 1}, "Cedrics": {"_count": 1}, "Hagrid": {"_count": 1}, "Euan": {"_count": 1}, "me": {"_count": 1}, "Nevilles": {"_count": 1}, "Ginny": {"_count": 1}, "this": {"_count": 1}, "Fred": {"_count": 2}, "that": {"_count": 1}, "Parvati": {"_count": 1}, "Demelza": {"_count": 1}, "disappear": {"_count": 1}, "be": {"_count": 1}, "take": {"_count": 1}, "Mudblood": {"_count": 1}}, "week": {"_count": 10, "folks": {"_count": 1}, "said": {"_count": 1}, "made": {"_count": 1}, "": {"_count": 4}, "again": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}}, "street": {"_count": 1, "nor": {"_count": 1}}, "lamp": {"_count": 2, "flickered": {"_count": 1}, "went": {"_count": 1}}, "few": {"_count": 23, "weeks": {"_count": 4}, "days": {"_count": 16}, "lessons": {"_count": 1}, "words": {"_count": 1}, "minutes": {"_count": 1}}, "day": {"_count": 51, "where": {"_count": 1}, "": {"_count": 13}, "so": {"_count": 1}, "he": {"_count": 2}, "looking": {"_count": 1}, "for": {"_count": 1}, "thought": {"_count": 1}, "however": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 3}, "and": {"_count": 3}, "the": {"_count": 3}, "because": {"_count": 1}, "when": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}, "Harrys": {"_count": 1}, "was": {"_count": 3}, "Rons": {"_count": 1}, "with": {"_count": 2}, "dreading": {"_count": 2}, "feeling": {"_count": 1}, "either": {"_count": 1}, "oi": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 1}, "not": {"_count": 1}}, "happened": {"_count": 1, "so": {"_count": 1}}, "they": {"_count": 4, "had": {"_count": 1}, "were": {"_count": 1}, "met": {"_count": 1}, "would": {"_count": 1}}, "morning": {"_count": 44, "when": {"_count": 1}, "": {"_count": 13}, "and": {"_count": 3}, "to": {"_count": 5}, "Harry": {"_count": 2}, "dawned": {"_count": 1}, "in": {"_count": 2}, "Rons": {"_count": 1}, "however": {"_count": 1}, "with": {"_count": 3}, "so": {"_count": 1}, "she": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "feeling": {"_count": 1}, "the": {"_count": 1}, "Quintessence": {"_count": 1}, "he": {"_count": 1}, "wrapped": {"_count": 1}, "before": {"_count": 1}}, "door": {"_count": 20, "neighbors": {"_count": 1}, "and": {"_count": 4}, "buying": {"_count": 1}, "both": {"_count": 1}, "": {"_count": 8}, "to": {"_count": 1}, "being": {"_count": 1}, "where": {"_count": 2}, "open": {"_count": 1}}, "second": {"_count": 15, "Dudley": {"_count": 1}, "he": {"_count": 3}, "Harry": {"_count": 3}, "Harrys": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 1}, "several": {"_count": 1}, "Cornelius": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "moment": {"_count": 27, "Harry": {"_count": 5}, "had": {"_count": 2}, "students": {"_count": 1}, "he": {"_count": 7}, "Hagrid": {"_count": 2}, "you": {"_count": 1}, "the": {"_count": 3}, "Pettigrew": {"_count": 1}, "there": {"_count": 1}, "Parvati": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}, "Dracos": {"_count": 1}}, "the": {"_count": 1, "plump": {"_count": 1}}, "room": {"_count": 6, "made": {"_count": 1}, "": {"_count": 4}, "hesitated": {"_count": 1}}, "table": {"_count": 3, "wasnt": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "class": {"_count": 2, "and": {"_count": 1}, "And": {"_count": 1}}, "corridor": {"_count": 2, "after": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 36, ".": {"_count": 28}, "?": {"_count": 6}, "!": {"_count": 2}}, "present": {"_count": 2, "also": {"_count": 1}, "wed": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "match": {"_count": 3, "against": {"_count": 1}, "": {"_count": 1}, "Quidditch": {"_count": 1}}, "afternoon": {"_count": 1, "that": {"_count": 1}}, "Tuesday": {"_count": 1, "said": {"_count": 1}}, "chamber": {"_count": 3, "was": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "passageway": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "great": {"_count": 2, "adventure": {"_count": 2}}, "time": {"_count": 20, "and": {"_count": 1}, "he": {"_count": 7}, "my": {"_count": 1}, "so": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 5}, "Fudge": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}}, "year": {"_count": 17, "starts": {"_count": 1}, "or": {"_count": 1}, "owing": {"_count": 1}, "": {"_count": 9}, "is": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "whats": {"_count": 1}, "too": {"_count": 1}}, "summer": {"_count": 7, "": {"_count": 3}, "as": {"_count": 1}, "he": {"_count": 1}, "holiday": {"_count": 1}, "when": {"_count": 1}}, "Wednesday": {"_count": 2, "to": {"_count": 1}, "night": {"_count": 1}}, "brother": {"_count": 1, "Charlie": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "flight": {"_count": 1, "of": {"_count": 1}}, "Mudbloods": {"_count": 2, "": {"_count": 2}}, "staircase": {"_count": 3, "without": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "MudbloodsV": {"_count": 1, "come": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 2}}, "victim": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 1, "Ive": {"_count": 1}}, "or": {"_count": 2, "when": {"_count": 1}, "where": {"_count": 1}}, "bringing": {"_count": 1, "him": {"_count": 1}}, "passage": {"_count": 1, "That": {"_count": 1}}, "Quidditch": {"_count": 2, "match": {"_count": 2}}, "one": {"_count": 7, "dies": {"_count": 1}, "might": {"_count": 1}, "": {"_count": 3}, "The": {"_count": 1}, "is": {"_count": 1}}, "bend": {"_count": 1, "to": {"_count": 1}}, "doors": {"_count": 1, "runner": {"_count": 1}}, "three": {"_count": 1, "days": {"_count": 1}}, "But": {"_count": 1, "Hogsmeades": {"_count": 1}}, "carriage": {"_count": 1, "": {"_count": 1}}, "person": {"_count": 2, "forward": {"_count": 1}, "to": {"_count": 1}}, "lesson": {"_count": 8, "": {"_count": 4}, "Malfoy": {"_count": 1}, "do": {"_count": 1}, "with": {"_count": 1}, "said": {"_count": 1}}, "Herbology": {"_count": 1, "class": {"_count": 1}}, "Potions": {"_count": 1, "class": {"_count": 1}}, "term": {"_count": 2, "Im": {"_count": 1}, "Ron": {"_count": 1}}, "weekend": {"_count": 2, "": {"_count": 1}, "trip": {"_count": 1}}, "he": {"_count": 1, "crawled": {"_count": 1}}, "months": {"_count": 1, "adventure": {"_count": 1}}, "looking": {"_count": 1, "like": {"_count": 1}}, "best": {"_count": 1, "thing": {"_count": 1}}, "family": {"_count": 1, "who": {"_count": 1}}, "for": {"_count": 1, "neither": {"_count": 1}}, "spoke": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "thing": {"_count": 10, "I": {"_count": 2}, "Harry": {"_count": 2}, "he": {"_count": 3}, "shes": {"_count": 1}, "the": {"_count": 2}}, "half": {"_count": 1, "hour": {"_count": 1}}, "as": {"_count": 1, "Troy": {"_count": 1}}, "tent": {"_count": 1, "and": {"_count": 1}}, "Monday": {"_count": 1, "and": {"_count": 1}}, "two": {"_count": 1, "days": {"_count": 1}}, "spider": {"_count": 1, "and": {"_count": 1}}, "couple": {"_count": 3, "of": {"_count": 3}}, "Divination": {"_count": 1, "class": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "tournament": {"_count": 1, "in": {"_count": 1}}, "fortnight": {"_count": 1, "the": {"_count": 1}}, "interview": {"_count": 1, "in": {"_count": 1}}, "question": {"_count": 3, "brought": {"_count": 1}, "to": {"_count": 1}, "is": {"_count": 1}}, "walking": {"_count": 1, "into": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "Potter": {"_count": 1}}, "row": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "task": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "song": {"_count": 1, "ended": {"_count": 1}}, "words": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "cushion": {"_count": 1, "spinning": {"_count": 1}}, "Hogsmeade": {"_count": 3, "weekend": {"_count": 3}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "book": {"_count": 1, "": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "son": {"_count": 1}}, "post": {"_count": 1, "as": {"_count": 1}}, "Christmas": {"_count": 1, "said": {"_count": 1}}, "clue": {"_count": 1, "again": {"_count": 1}}, "lines": {"_count": 1, "of": {"_count": 1}}, "man": {"_count": 2, "": {"_count": 2}}, "word": {"_count": 2, "owls": {"_count": 1}, "": {"_count": 1}}, "be": {"_count": 1, "decided": {"_count": 1}}, "a": {"_count": 1, "second": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "bed": {"_count": 2, "putting": {"_count": 1}, "": {"_count": 1}}, "June": {"_count": 1, "you": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "meeting": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "hell": {"_count": 1}}, "stop": {"_count": 1, "a": {"_count": 1}}, "see": {"_count": 1, "each": {"_count": 1}}, "month": {"_count": 1, "did": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "saw": {"_count": 1, "Lee": {"_count": 1}}, "Bring": {"_count": 1, "andFly": {"_count": 1}}, "minute": {"_count": 1, "she": {"_count": 1}}, "had": {"_count": 1, "an": {"_count": 1}}, "letter": {"_count": 1, "finally": {"_count": 1}}, "Saturday": {"_count": 7, "Yeah": {"_count": 1}, "instead": {"_count": 1}, "everybody": {"_count": 1}, "": {"_count": 3}, "which": {"_count": 1}}, "Transfiguration": {"_count": 1, "lesson": {"_count": 1}}, "idiot": {"_count": 1, "who": {"_count": 1}}, "thestral": {"_count": 1, "and": {"_count": 1}}, "Kingsley": {"_count": 1, "swayed": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "speech": {"_count": 1, "but": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "move": {"_count": 2, "to": {"_count": 1}, "took": {"_count": 1}}, "male": {"_count": 1, "with": {"_count": 1}}, "junior": {"_count": 1, "member": {"_count": 1}}, "couldnt": {"_count": 1, "it": {"_count": 1}}, "This": {"_count": 1, "was": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "days": {"_count": 1, "weather": {"_count": 1}}, "Bludger": {"_count": 1, "at": {"_count": 1}}, "she": {"_count": 2, "had": {"_count": 1}, "said": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "Slughorn": {"_count": 1}}, "twelve": {"_count": 1, "weeks": {"_count": 1}}, "trip": {"_count": 1, "into": {"_count": 1}}, "weeks": {"_count": 1, "match": {"_count": 1}}, "mornings": {"_count": 1, "Charms": {"_count": 1}}, "empty": {"_count": 1, "corridor": {"_count": 1}}, "recognized": {"_count": 1, "Rita": {"_count": 1}}, "at": {"_count": 1, "nightfall": {"_count": 1}}, "Stunning": {"_count": 1, "Spell": {"_count": 1}}, "so": {"_count": 1, "brace": {"_count": 1}}, "booth": {"_count": 1, "": {"_count": 1}}, "movements": {"_count": 1, "is": {"_count": 1}}, "lot": {"_count": 1, "of": {"_count": 1}}, "level": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "password": {"_count": 1, "will": {"_count": 1}}, "window": {"_count": 1, "which": {"_count": 1}}, "entrant": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "settled": {"_count": 1, "gradually": {"_count": 1}}, "Friday": {"_count": 1, "": {"_count": 1}}}, "bakers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "eyed": {"_count": 20, "them": {"_count": 1, "angrily": {"_count": 1}}, "his": {"_count": 2, "cloak": {"_count": 1}, "wife": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "him": {"_count": 4, "with": {"_count": 1}, "suspiciously": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}}, "Hermione": {"_count": 2, "suspiciously": {"_count": 1}, "shrewdly": {"_count": 1}}, "eightlegged": {"_count": 1, "black": {"_count": 1}}, "the": {"_count": 1, "now": {"_count": 1}}, "witch": {"_count": 1, "raising": {"_count": 1}}, "Harry": {"_count": 1, "tracing": {"_count": 1}}, "it": {"_count": 1, "warily": {"_count": 1}}, "Dumbledore": {"_count": 1, "balefully": {"_count": 1}}, "at": {"_count": 1, "Dumbledore": {"_count": 1}}, "with": {"_count": 1, "shoulderlength": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}}, "angrily": {"_count": 181, "as": {"_count": 13, "he": {"_count": 6}, "Snape": {"_count": 1}, "they": {"_count": 3}, "the": {"_count": 2}, "both": {"_count": 1}}, "": {"_count": 100, ".": {"_count": 100}}, "it": {"_count": 2, "had": {"_count": 1}, "could": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 7, "Flint": {"_count": 1}, "Wood": {"_count": 1}, "Percy": {"_count": 1}, "herself": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}}, "his": {"_count": 1, "fists": {"_count": 1}}, "pummeling": {"_count": 1, "his": {"_count": 1}}, "large": {"_count": 1, "black": {"_count": 1}}, "but": {"_count": 7, "could": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "yeah": {"_count": 1}, "youre": {"_count": 1}, "the": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "missing": {"_count": 1, "the": {"_count": 1}}, "brandishing": {"_count": 1, "his": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 6, "started": {"_count": 1}, "stomped": {"_count": 1}, "Snape": {"_count": 1}, "stormed": {"_count": 1}, "Harry": {"_count": 1}, "there": {"_count": 1}}, "getting": {"_count": 1, "to": {"_count": 1}}, "glaring": {"_count": 2, "at": {"_count": 2}}, "looking": {"_count": 1, "at": {"_count": 1}}, "showing": {"_count": 1, "Hagrid": {"_count": 1}}, "pushing": {"_count": 1, "aside": {"_count": 1}}, "forgetting": {"_count": 1, "his": {"_count": 1}}, "Crouch": {"_count": 1, "isnt": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "putting": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 3, "which": {"_count": 1}, "the": {"_count": 1}, "several": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "because": {"_count": 1, "Ron": {"_count": 1}}, "what": {"_count": 1, "did": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}, "sloshing": {"_count": 1, "down": {"_count": 1}}, "for": {"_count": 1, "all": {"_count": 1}}, "setting": {"_count": 1, "down": {"_count": 1}}, "stopping": {"_count": 1, "dead": {"_count": 1}}, "from": {"_count": 2, "behind": {"_count": 1}, "overhead": {"_count": 1}}, "pick": {"_count": 1, "one": {"_count": 1}}, "Cant": {"_count": 1, "you": {"_count": 1}}, "snatching": {"_count": 1, "up": {"_count": 1}}, "dabbing": {"_count": 1, "his": {"_count": 1}}, "And": {"_count": 1, "this": {"_count": 1}}, "landing": {"_count": 1, "next": {"_count": 1}}, "sucking": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 1, "spun": {"_count": 1}}, "sitting": {"_count": 1, "up": {"_count": 1}}, "Hermione": {"_count": 1, "nudged": {"_count": 1}}}, "know": {"_count": 2246, "why": {"_count": 41, "but": {"_count": 2}, "hes": {"_count": 3}, "Harrys": {"_count": 1}, "you": {"_count": 9}, "that": {"_count": 2}, "Fudge": {"_count": 1}, "youre": {"_count": 3}, "Snape": {"_count": 1}, "": {"_count": 4}, "my": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 2}, "thatd": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 4}, "its": {"_count": 1}, "shed": {"_count": 1}, "the": {"_count": 2}, "Im": {"_count": 1}}, "about": {"_count": 50, "that": {"_count": 7}, "yer": {"_count": 1}, "it": {"_count": 7}, "the": {"_count": 17}, "Fluffy": {"_count": 1}, "Nicolas": {"_count": 1}, "these": {"_count": 1}, "them": {"_count": 3}, "gillyweed": {"_count": 1}, "Cedric": {"_count": 1}, "this": {"_count": 2}, "": {"_count": 3}, "girls": {"_count": 1}, "think": {"_count": 1}, "me": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 278, ".": {"_count": 193}, "?": {"_count": 51}, "!": {"_count": 34}}, "it": {"_count": 52, "was": {"_count": 8}, "": {"_count": 12}, "all": {"_count": 2}, "doesnt": {"_count": 1}, "rings": {"_count": 1}, "looked": {"_count": 1}, "by": {"_count": 2}, "cant": {"_count": 2}, "sounds": {"_count": 1}, "is": {"_count": 5}, "made": {"_count": 1}, "Potter": {"_count": 1}, "woke": {"_count": 1}, "must": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}, "veil": {"_count": 1}, "only": {"_count": 1}, "wasnt": {"_count": 1}, "said": {"_count": 2}, "yet": {"_count": 1}, "can": {"_count": 1}, "Snape": {"_count": 1}, "it": {"_count": 1}}, "that": {"_count": 125, "said": {"_count": 6}, "at": {"_count": 1}, "he": {"_count": 12}, "blackhaired": {"_count": 1}, "youll": {"_count": 1}, "Ron": {"_count": 1}, "night": {"_count": 1}, "Sn": {"_count": 1}, "name": {"_count": 1}, "": {"_count": 10}, "temper": {"_count": 1}, "Lord": {"_count": 1}, "day": {"_count": 1}, "but": {"_count": 4}, "the": {"_count": 6}, "Potter": {"_count": 1}, "this": {"_count": 1}, "Miss": {"_count": 1}, "I": {"_count": 5}, "anyone": {"_count": 1}, "we": {"_count": 2}, "you": {"_count": 10}, "one": {"_count": 1}, "myself": {"_count": 1}, "golden": {"_count": 1}, "working": {"_count": 1}, "dont": {"_count": 1}, "on": {"_count": 1}, "boxing": {"_count": 1}, "his": {"_count": 3}, "Dumbledore": {"_count": 3}, "was": {"_count": 2}, "cant": {"_count": 1}, "Hedwig": {"_count": 1}, "Harry": {"_count": 6}, "theres": {"_count": 1}, "it": {"_count": 7}, "by": {"_count": 1}, "Lucius": {"_count": 1}, "Peeves": {"_count": 1}, "there": {"_count": 2}, "Sirius": {"_count": 1}, "Professor": {"_count": 1}, "could": {"_count": 2}, "your": {"_count": 1}, "they": {"_count": 1}, "Katie": {"_count": 1}, "near": {"_count": 1}, "Hogwarts": {"_count": 1}, "several": {"_count": 1}, "thanks": {"_count": 1}, "Draco": {"_count": 1}, "politics": {"_count": 1}, "MadEye": {"_count": 1}, "theyve": {"_count": 1}, "all": {"_count": 1}, "its": {"_count": 1}, "Greyback": {"_count": 1}, "weve": {"_count": 1}, "Ive": {"_count": 1}}, "you": {"_count": 45, "havent": {"_count": 3}, "get": {"_count": 4}, "know": {"_count": 3}, "hate": {"_count": 1}, "could": {"_count": 1}, "cant": {"_count": 2}, "can": {"_count": 2}, "dont": {"_count": 3}, "shouldnt": {"_count": 1}, "were": {"_count": 5}, "judging": {"_count": 1}, "": {"_count": 1}, "did": {"_count": 2}, "all": {"_count": 2}, "like": {"_count": 1}, "so": {"_count": 1}, "werent": {"_count": 1}, "didnt": {"_count": 1}, "are": {"_count": 1}, "have": {"_count": 1}, "see": {"_count": 1}, "clever": {"_count": 1}, "do": {"_count": 1}, "lot": {"_count": 1}, "said": {"_count": 2}, "worshipped": {"_count": 1}, "really": {"_count": 1}}, "what": {"_count": 301, "everyones": {"_count": 1}, "time": {"_count": 1}, "yeh": {"_count": 1}, "to": {"_count": 37}, "it": {"_count": 11}, "happened": {"_count": 10}, "he": {"_count": 15}, "House": {"_count": 1}, "theyll": {"_count": 2}, "was": {"_count": 8}, "this": {"_count": 8}, "had": {"_count": 5}, "youre": {"_count": 21}, "you": {"_count": 16}, "that": {"_count": 4}, "unicorn": {"_count": 1}, "is": {"_count": 2}, "Im": {"_count": 7}, "its": {"_count": 6}, "11": {"_count": 1}, "day": {"_count": 3}, "": {"_count": 9}, "direction": {"_count": 1}, "people": {"_count": 1}, "a": {"_count": 2}, "hes": {"_count": 11}, "I": {"_count": 18}, "Harry": {"_count": 2}, "the": {"_count": 14}, "an": {"_count": 1}, "did": {"_count": 1}, "she": {"_count": 2}, "Black": {"_count": 1}, "will": {"_count": 1}, "shape": {"_count": 1}, "Blacks": {"_count": 1}, "Pettigrews": {"_count": 1}, "theyd": {"_count": 1}, "we": {"_count": 1}, "Ive": {"_count": 3}, "weve": {"_count": 2}, "Hermione": {"_count": 2}, "Lucius": {"_count": 1}, "they": {"_count": 9}, "Percy": {"_count": 1}, "Death": {"_count": 1}, "all": {"_count": 2}, "made": {"_count": 3}, "Id": {"_count": 2}, "Snape": {"_count": 2}, "Mr": {"_count": 1}, "Fudge": {"_count": 1}, "his": {"_count": 2}, "Voldemorts": {"_count": 2}, "grades": {"_count": 1}, "Flitwicks": {"_count": 1}, "went": {"_count": 1}, "wed": {"_count": 2}, "Voldemort": {"_count": 2}, "these": {"_count": 1}, "would": {"_count": 3}, "youve": {"_count": 1}, "Sirius": {"_count": 1}, "what": {"_count": 1}, "were": {"_count": 2}, "theyve": {"_count": 1}, "hagger": {"_count": 1}, "could": {"_count": 1}, "else": {"_count": 1}, "YouKnowWho": {"_count": 1}, "really": {"_count": 2}, "Felix": {"_count": 1}, "prompted": {"_count": 1}, "Ill": {"_count": 1}, "theyre": {"_count": 1}, "Hagrid": {"_count": 1}, "yehre": {"_count": 1}, "Dumbledore": {"_count": 1}, "He": {"_count": 1}, "hed": {"_count": 1}, "Greyback": {"_count": 1}, "little": {"_count": 1}, "nothing": {"_count": 1}, "rumors": {"_count": 1}, "needed": {"_count": 1}}, "his": {"_count": 11, "name": {"_count": 3}, "son": {"_count": 1}, "opinion": {"_count": 1}, "own": {"_count": 3}, "strength": {"_count": 1}, "style": {"_count": 1}, "weakness": {"_count": 1}}, "they": {"_count": 10, "dont": {"_count": 1}, "hadnt": {"_count": 1}, "were": {"_count": 2}, "havent": {"_count": 2}, "do": {"_count": 1}, "call": {"_count": 1}, "didnt": {"_count": 1}, "cant": {"_count": 1}}, "Harry": {"_count": 27, "murmured": {"_count": 1}, "called": {"_count": 1}, "told": {"_count": 2}, "gaped": {"_count": 1}, "never": {"_count": 1}, "didnt": {"_count": 1}, "panted": {"_count": 1}, "look": {"_count": 1}, "I": {"_count": 2}, "in": {"_count": 2}, "was": {"_count": 1}, "said": {"_count": 4}, "Hagrid": {"_count": 1}, "": {"_count": 4}, "muttered": {"_count": 1}, "began": {"_count": 1}, "but": {"_count": 1}, "Potter": {"_count": 1}}, "him": {"_count": 7, "": {"_count": 4}, "not": {"_count": 1}, "he": {"_count": 1}, "hadnt": {"_count": 1}}, "where": {"_count": 70, "he": {"_count": 15}, "to": {"_count": 7}, "Snape": {"_count": 1}, "I": {"_count": 2}, "we": {"_count": 3}, "were": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 8}, "you": {"_count": 9}, "this": {"_count": 1}, "Sirius": {"_count": 3}, "they": {"_count": 2}, "his": {"_count": 3}, "Barty": {"_count": 1}, "Harry": {"_count": 1}, "hes": {"_count": 2}, "she": {"_count": 3}, "wed": {"_count": 1}, "Dumbledore": {"_count": 1}, "Malfoys": {"_count": 1}, "your": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 48, "hadnt": {"_count": 1}, "was": {"_count": 8}, "had": {"_count": 3}, "wasn": {"_count": 1}, "told": {"_count": 2}, "would": {"_count": 1}, "misses": {"_count": 1}, "he": {"_count": 1}, "wasnt": {"_count": 3}, "couldnt": {"_count": 1}, "can": {"_count": 1}, "said": {"_count": 7}, "is": {"_count": 2}, "simply": {"_count": 1}, "never": {"_count": 1}, "must": {"_count": 2}, "just": {"_count": 1}, "will": {"_count": 2}, "believes": {"_count": 1}, "pressed": {"_count": 1}, "wanted": {"_count": 1}, "failed": {"_count": 1}, "trod": {"_count": 1}, "works": {"_count": 1}, "hesitated": {"_count": 1}, "loved": {"_count": 1}, "did": {"_count": 1}}, "the": {"_count": 70, "days": {"_count": 1}, "Muggle": {"_count": 1}, "difference": {"_count": 2}, "Stone": {"_count": 1}, "truth": {"_count": 5}, "degnomings": {"_count": 1}, "name": {"_count": 1}, "new": {"_count": 2}, "very": {"_count": 1}, "Weasleys": {"_count": 1}, "Ministry": {"_count": 1}, "person": {"_count": 1}, "worst": {"_count": 1}, "way": {"_count": 1}, "Halloween": {"_count": 1}, "dementors": {"_count": 2}, "feastll": {"_count": 1}, "Whomping": {"_count": 1}, "passage": {"_count": 1}, "half": {"_count": 1}, "law": {"_count": 1}, "one": {"_count": 4}, "Malfoys": {"_count": 1}, "time": {"_count": 2}, "age": {"_count": 1}, "password": {"_count": 1}, "feeling": {"_count": 1}, "trial": {"_count": 1}, "details": {"_count": 2}, "ones": {"_count": 1}, "score": {"_count": 1}, "perils": {"_count": 1}, "names": {"_count": 1}, "incantation": {"_count": 1}, "first": {"_count": 1}, "Disarming": {"_count": 1}, "right": {"_count": 1}, "wizard": {"_count": 1}, "full": {"_count": 2}, "kind": {"_count": 1}, "Patil": {"_count": 1}, "longer": {"_count": 1}, "board": {"_count": 1}, "Prince": {"_count": 1}, "real": {"_count": 1}, "rough": {"_count": 1}, "bloke": {"_count": 1}, "theory": {"_count": 1}, "snakes": {"_count": 1}, "Prophet": {"_count": 1}, "snake": {"_count": 1}, "meaning": {"_count": 1}, "only": {"_count": 1}, "sign": {"_count": 1}, "goblin": {"_count": 1}, "other": {"_count": 1}, "secret": {"_count": 1}}, "who": {"_count": 45, "you": {"_count": 5}, "ter": {"_count": 1}, "Nicolas": {"_count": 1}, "Flamel": {"_count": 1}, "that": {"_count": 2}, "sent": {"_count": 3}, "Dumbledore": {"_count": 1}, "thinks": {"_count": 1}, "did": {"_count": 1}, "it": {"_count": 3}, "he": {"_count": 6}, "I": {"_count": 2}, "put": {"_count": 1}, "How": {"_count": 1}, "Maxime": {"_count": 1}, "stole": {"_count": 1}, "his": {"_count": 1}, "Wormtail": {"_count": 1}, "the": {"_count": 2}, "has": {"_count": 1}, "was": {"_count": 1}, "this": {"_count": 2}, "YouKnowWho": {"_count": 1}, "love": {"_count": 1}, "youre": {"_count": 1}, "she": {"_count": 1}, "used": {"_count": 1}, "had": {"_count": 1}}, "all": {"_count": 14, "about": {"_count": 7}, "of": {"_count": 1}, "Hogwarts": {"_count": 1}, "this": {"_count": 3}, "the": {"_count": 1}, "that": {"_count": 1}}, "abou": {"_count": 3, "Hogwarts": {"_count": 1}, "Fluffy": {"_count": 1}, "hippogriffs": {"_count": 1}}, "some": {"_count": 5, "things": {"_count": 1}, "good": {"_count": 1}, "of": {"_count": 3}}, "do": {"_count": 2, "math": {"_count": 1}, "you": {"_count": 1}}, "if": {"_count": 21, "Im": {"_count": 2}, "you": {"_count": 5}, "this": {"_count": 1}, "the": {"_count": 2}, "Peter": {"_count": 1}, "anyone": {"_count": 1}, "curse": {"_count": 1}, "he": {"_count": 1}, "youve": {"_count": 1}, "anybody": {"_count": 1}, "they": {"_count": 1}, "theres": {"_count": 2}, "something": {"_count": 1}, "Snapes": {"_count": 1}}, "as": {"_count": 10, "much": {"_count": 2}, "long": {"_count": 1}, "theyre": {"_count": 1}, "well": {"_count": 2}, "good": {"_count": 1}, "far": {"_count": 1}, "Head": {"_count": 1}, "people": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 111, "the": {"_count": 5}, "many": {"_count": 4}, "to": {"_count": 24}, "hed": {"_count": 2}, "I": {"_count": 4}, "you": {"_count": 6}, "deep": {"_count": 1}, "weird": {"_count": 1}, "long": {"_count": 3}, "he": {"_count": 8}, "come": {"_count": 2}, "greedy": {"_count": 1}, "bizarre": {"_count": 1}, "they": {"_count": 2}, "Ginny": {"_count": 1}, "it": {"_count": 4}, "touchy": {"_count": 1}, "fast": {"_count": 1}, "": {"_count": 1}, "important": {"_count": 1}, "But": {"_count": 1}, "my": {"_count": 3}, "his": {"_count": 1}, "Harry": {"_count": 1}, "shes": {"_count": 1}, "she": {"_count": 1}, "bad": {"_count": 1}, "furious": {"_count": 1}, "much": {"_count": 11}, "Fred": {"_count": 1}, "things": {"_count": 1}, "we": {"_count": 1}, "far": {"_count": 1}, "were": {"_count": 1}, "soon": {"_count": 1}, "age": {"_count": 1}, "one": {"_count": 1}, "hard": {"_count": 2}, "these": {"_count": 2}, "special": {"_count": 1}, "most": {"_count": 1}, "Dumbledore": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 1}}, "Hagrid": {"_count": 3, "they": {"_count": 1}, "lures": {"_count": 1}, "was": {"_count": 1}}, "its": {"_count": 30, "own": {"_count": 1}, "hard": {"_count": 2}, "all": {"_count": 3}, "here": {"_count": 1}, "not": {"_count": 4}, "weird": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "there": {"_count": 1}, "just": {"_count": 2}, "pretty": {"_count": 1}, "me": {"_count": 1}, "full": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}, "true": {"_count": 1}, "supposed": {"_count": 1}, "an": {"_count": 1}, "Lupin": {"_count": 1}, "the": {"_count": 1}, "last": {"_count": 1}, "powerful": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "something": {"_count": 8, "the": {"_count": 1}, "about": {"_count": 4}, "was": {"_count": 1}, "": {"_count": 1}, "thatd": {"_count": 1}}, "our": {"_count": 5, "ways": {"_count": 1}, "schools": {"_count": 1}, "letters": {"_count": 1}, "headmasters": {"_count": 1}, "protective": {"_count": 1}}, "not": {"_count": 6, "knowin": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "until": {"_count": 1}}, "I": {"_count": 65, "dont": {"_count": 5}, "expect": {"_count": 2}, "think": {"_count": 4}, "cant": {"_count": 2}, "shouldnt": {"_count": 2}, "know": {"_count": 4}, "missed": {"_count": 1}, "havent": {"_count": 3}, "never": {"_count": 2}, "reckon": {"_count": 1}, "still": {"_count": 1}, "bet": {"_count": 1}, "didnt": {"_count": 1}, "just": {"_count": 1}, "was": {"_count": 7}, "shouldntve": {"_count": 1}, "mustnt": {"_count": 1}, "am": {"_count": 2}, "did": {"_count": 3}, "wouldnt": {"_count": 1}, "will": {"_count": 2}, "saw": {"_count": 2}, "decided": {"_count": 1}, "ought": {"_count": 1}, "presume": {"_count": 1}, "messed": {"_count": 1}, "could": {"_count": 1}, "found": {"_count": 1}, "pushed": {"_count": 1}, "wouldntve": {"_count": 1}, "have": {"_count": 1}, "had": {"_count": 2}, "remember": {"_count": 1}, "I": {"_count": 1}, "can": {"_count": 2}, "sometimes": {"_count": 1}}, "anything": {"_count": 23, "about": {"_count": 14}, "": {"_count": 2}, "more": {"_count": 2}, "thats": {"_count": 1}, "yet": {"_count": 1}, "new": {"_count": 1}, "anything": {"_count": 1}, "you": {"_count": 1}}, "said": {"_count": 88, "Harry": {"_count": 21}, "an": {"_count": 1}, "Hermione": {"_count": 18}, "George": {"_count": 1}, "Ron": {"_count": 14}, "Lupin": {"_count": 3}, "Mr": {"_count": 2}, "Nearly": {"_count": 1}, "Dumbledore": {"_count": 5}, "Sirius": {"_count": 3}, "Aunt": {"_count": 1}, "Uncle": {"_count": 1}, "Mrs": {"_count": 2}, "Madam": {"_count": 1}, "Ginny": {"_count": 2}, "Angelina": {"_count": 2}, "Cho": {"_count": 1}, "Phineas": {"_count": 1}, "Snape": {"_count": 2}, "Luna": {"_count": 1}, "Malfoy": {"_count": 1}, "Tonks": {"_count": 1}, "Hagrid": {"_count": 1}, "Professor": {"_count": 1}, "Vernon": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 3, "five": {"_count": 1}, "real": {"_count": 1}, "my": {"_count": 1}}, "Chocolate": {"_count": 1, "Frogs": {"_count": 1}}, "to": {"_count": 4, "collect": {"_count": 1}, "put": {"_count": 1}, "whom": {"_count": 1}, "this": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "any": {"_count": 4, "Harry": {"_count": 1}, "magic": {"_count": 1}, "of": {"_count": 1}, "others": {"_count": 1}}, "hes": {"_count": 12, "not": {"_count": 5}, "after": {"_count": 1}, "a": {"_count": 3}, "back": {"_count": 1}, "your": {"_count": 1}, "so": {"_count": 1}}, "whether": {"_count": 34, "to": {"_count": 3}, "he": {"_count": 8}, "it": {"_count": 4}, "the": {"_count": 3}, "theyre": {"_count": 1}, "were": {"_count": 1}, "you": {"_count": 5}, "": {"_count": 2}, "Rons": {"_count": 1}, "or": {"_count": 2}, "For": {"_count": 1}, "Runcorn": {"_count": 1}, "Grindelwalds": {"_count": 1}, "they": {"_count": 1}}, "turning": {"_count": 1, "something": {"_count": 1}}, "Quirrell": {"_count": 1, "already": {"_count": 1}}, "sir": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "hes": {"_count": 1}}, "every": {"_count": 2, "time": {"_count": 1}, "secret": {"_count": 1}}, "whats": {"_count": 19, "good": {"_count": 2}, "gotten": {"_count": 2}, "happening": {"_count": 1}, "going": {"_count": 9}, "coming": {"_count": 1}, "been": {"_count": 2}, "hit": {"_count": 1}, "happened": {"_count": 1}}, "Malfoys": {"_count": 3, "always": {"_count": 1}, "been": {"_count": 1}, "celebrating": {"_count": 1}}, "because": {"_count": 3, "Ive": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 1}}, "which": {"_count": 9, "was": {"_count": 1}, "to": {"_count": 1}, "one": {"_count": 2}, "curses": {"_count": 1}, "subjects": {"_count": 1}, "way": {"_count": 1}, "of": {"_count": 2}}, "Olivers": {"_count": 1, "speech": {"_count": 1}}, "better": {"_count": 9, "Id": {"_count": 1}, "than": {"_count": 4}, "": {"_count": 2}, "Oh": {"_count": 1}, "now": {"_count": 1}}, "a": {"_count": 9, "jinx": {"_count": 1}, "shortcut": {"_count": 1}, "bit": {"_count": 1}, "touch": {"_count": 1}, "dirty": {"_count": 1}, "lost": {"_count": 1}, "lot": {"_count": 2}, "final": {"_count": 1}}, "Ive": {"_count": 8, "read": {"_count": 1}, "got": {"_count": 1}, "been": {"_count": 2}, "had": {"_count": 1}, "failed": {"_count": 1}, "jus": {"_count": 1}, "come": {"_count": 1}}, "were": {"_count": 10, "called": {"_count": 1}, "getting": {"_count": 1}, "not": {"_count": 4}, "right": {"_count": 1}, "moving": {"_count": 1}, "in": {"_count": 1}, "evacuating": {"_count": 1}}, "theyd": {"_count": 2, "found": {"_count": 1}, "be": {"_count": 1}}, "Ron": {"_count": 4, "snapped": {"_count": 1}, "grimaced": {"_count": 1}, "said": {"_count": 2}}, "perfectly": {"_count": 9, "well": {"_count": 9}}, "meself": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 5, "much": {"_count": 4}, "that": {"_count": 1}}, "everything": {"_count": 6, "that": {"_count": 1}, "": {"_count": 2}, "thats": {"_count": 1}, "important": {"_count": 1}, "I": {"_count": 1}}, "anythin": {"_count": 1, "about": {"_count": 1}}, "wont": {"_count": 4, "yeh": {"_count": 1}, "you": {"_count": 1}, "hurt": {"_count": 1}, "he": {"_count": 1}}, "things": {"_count": 6, "": {"_count": 1}, "about": {"_count": 2}, "you": {"_count": 3}}, "anyone": {"_count": 3, "who": {"_count": 1}, "but": {"_count": 1}, "else": {"_count": 1}}, "one": {"_count": 6, "day": {"_count": 1}, "thing": {"_count": 1}, "": {"_count": 1}, "word": {"_count": 1}, "lesson": {"_count": 1}, "of": {"_count": 1}}, "an": {"_count": 2, "I": {"_count": 1}, "then": {"_count": 1}}, "today": {"_count": 1, "is": {"_count": 1}}, "youre": {"_count": 19, "here": {"_count": 3}, "good": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 4}, "up": {"_count": 1}, "not": {"_count": 4}, "back": {"_count": 1}, "about": {"_count": 1}, "out": {"_count": 1}, "cutting": {"_count": 1}, "being": {"_count": 1}}, "lots": {"_count": 2, "of": {"_count": 2}}, "my": {"_count": 7, "friends": {"_count": 1}, "dad": {"_count": 1}, "godfather": {"_count": 1}, "own": {"_count": 1}, "goal": {"_count": 1}, "mother": {"_count": 1}, "Luna": {"_count": 1}}, "underage": {"_count": 1, "wizards": {"_count": 1}}, "youve": {"_count": 2, "got": {"_count": 2}}, "in": {"_count": 3, "case": {"_count": 2}, "my": {"_count": 1}}, "we": {"_count": 7, "flew": {"_count": 1}, "heard": {"_count": 1}, "still": {"_count": 1}, "probably": {"_count": 1}, "definitely": {"_count": 1}, "are": {"_count": 1}, "know": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "last": {"_count": 1}}, "but": {"_count": 17, "as": {"_count": 1}, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}, "there": {"_count": 2}, "whatever": {"_count": 1}, "she": {"_count": 1}, "a": {"_count": 1}, "I": {"_count": 1}, "no": {"_count": 1}, "surely": {"_count": 1}, "how": {"_count": 1}, "Well": {"_count": 1}, "not": {"_count": 1}, "if": {"_count": 1}, "simply": {"_count": 1}}, "more": {"_count": 4, "than": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 1}, "magic": {"_count": 1}}, "just": {"_count": 2, "vanish": {"_count": 1}, "the": {"_count": 1}}, "when": {"_count": 17, "Ive": {"_count": 2}, "I": {"_count": 3}, "its": {"_count": 2}, "he": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 2}, "we": {"_count": 1}, "a": {"_count": 1}, "theyre": {"_count": 1}, "it": {"_count": 1}}, "nonmagic": {"_count": 1, "parents": {"_count": 1}}, "Mrs": {"_count": 2, "Norris": {"_count": 1}, "Weasley": {"_count": 1}}, "of": {"_count": 10, "course": {"_count": 3}, "said": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "she": {"_count": 10, "said": {"_count": 4}, "says": {"_count": 1}, "wrote": {"_count": 1}, "wont": {"_count": 1}, "was": {"_count": 1}, "existed": {"_count": 1}, "managed": {"_count": 1}}, "even": {"_count": 2, "if": {"_count": 1}, "now": {"_count": 1}}, "Percy": {"_count": 2, "swelled": {"_count": 1}, "Crouch": {"_count": 1}}, "Filch": {"_count": 1, "s": {"_count": 1}}, "Creevey": {"_count": 1, "s": {"_count": 1}}, "Millicent": {"_count": 1, "Bulstrodes": {"_count": 1}}, "Im": {"_count": 12, "surprised": {"_count": 2}, "starting": {"_count": 3}, "hiding": {"_count": 1}, "an": {"_count": 1}, "sure": {"_count": 1}, "not": {"_count": 1}, "on": {"_count": 1}, "doing": {"_count": 1}, "lousy": {"_count": 1}}, "T": {"_count": 1, "": {"_count": 1}}, "whos": {"_count": 5, "behind": {"_count": 1}, "got": {"_count": 1}, "working": {"_count": 1}, "lost": {"_count": 1}, "in": {"_count": 1}}, "theyre": {"_count": 5, "fully": {"_count": 1}, "Muggles": {"_count": 1}, "dentists": {"_count": 1}, "arriving": {"_count": 1}, "coming": {"_count": 1}}, "youd": {"_count": 2, "never": {"_count": 1}, "have": {"_count": 1}}, "itd": {"_count": 1, "probably": {"_count": 1}}, "Ginny": {"_count": 1, "er": {"_count": 1}}, "Weasley": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 15, "tell": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 2}, "start": {"_count": 1}, "it": {"_count": 3}, "very": {"_count": 1}, "squashed": {"_count": 1}, "he": {"_count": 1}, "Im": {"_count": 1}, "been": {"_count": 1}, "anyone": {"_count": 1}, "even": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "sobbed": {"_count": 1, "Ginny": {"_count": 1}}, "Minerva": {"_count": 2, "Professor": {"_count": 1}, "I": {"_count": 1}}, "attacked": {"_count": 1, "": {"_count": 1}}, "hed": {"_count": 4, "heard": {"_count": 1}, "bin": {"_count": 1}, "always": {"_count": 1}, "come": {"_count": 1}}, "for": {"_count": 7, "sure": {"_count": 3}, "a": {"_count": 3}, "many": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "much": {"_count": 4, "about": {"_count": 3}, "more": {"_count": 1}}, "Potter": {"_count": 5, "that": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}, "as": {"_count": 1}}, "Hermione": {"_count": 5, "said": {"_count": 3}, "dropped": {"_count": 1}, "admitted": {"_count": 1}}, "weve": {"_count": 3, "got": {"_count": 2}, "been": {"_count": 1}}, "this": {"_count": 16, "will": {"_count": 1}, "must": {"_count": 1}, "says": {"_count": 1}, "is": {"_count": 1}, "stuff": {"_count": 1}, "Harry": {"_count": 2}, "Dumbledore": {"_count": 1}, "name": {"_count": 1}, "for": {"_count": 1}, "man": {"_count": 1}, "Bathilda": {"_count": 1}, "last": {"_count": 1}, "": {"_count": 3}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "YouKnowWho": {"_count": 1, "met": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "Cornelius": {"_count": 1, "if": {"_count": 1}}, "them": {"_count": 4, "gargoyles": {"_count": 1}, "": {"_count": 1}, "Mr": {"_count": 1}, "then": {"_count": 1}}, "are": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 5, "that": {"_count": 1}, "": {"_count": 2}, "yeh": {"_count": 1}, "traveled": {"_count": 1}}, "working": {"_count": 1, "hard": {"_count": 1}}, "exactly": {"_count": 16, "what": {"_count": 4}, "where": {"_count": 5}, "how": {"_count": 2}, "whats": {"_count": 1}, "who": {"_count": 2}, "why": {"_count": 2}}, "Professor": {"_count": 5, "": {"_count": 2}, "Moody": {"_count": 1}, "Black": {"_count": 1}, "but": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "day": {"_count": 1, "after": {"_count": 1}}, "Lupin": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "Sirius": {"_count": 3, "thats": {"_count": 1}, "is": {"_count": 1}, "left": {"_count": 1}}, "had": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "by": {"_count": 4, "now": {"_count": 3}, "half": {"_count": 1}}, "sighed": {"_count": 1, "Hermione": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "is": {"_count": 5, "Ive": {"_count": 1}, "a": {"_count": 1}, "family": {"_count": 1}, "he": {"_count": 1}, "true": {"_count": 1}}, "wouldnt": {"_count": 1, "you": {"_count": 1}}, "owl": {"_count": 1, "post": {"_count": 1}}, "so": {"_count": 2, "we": {"_count": 1}, "much": {"_count": 1}}, "these": {"_count": 1, "little": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "there": {"_count": 8, "are": {"_count": 6}, "isnt": {"_count": 1}, "would": {"_count": 1}}, "soon": {"_count": 2, "enough": {"_count": 1}, "if": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "houseelves": {"_count": 1, "get": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "MadEye": {"_count": 1, "said": {"_count": 1}}, "your": {"_count": 9, "name": {"_count": 1}, "mother": {"_count": 1}, "father": {"_count": 1}, "scar": {"_count": 2}, "mum": {"_count": 1}, "parents": {"_count": 1}, "grandfather": {"_count": 1}, "theory": {"_count": 1}}, "will": {"_count": 3, "forgive": {"_count": 1}, "you": {"_count": 1}, "be": {"_count": 1}}, "her": {"_count": 6, "just": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 3}, "mum": {"_count": 1}}, "three": {"_count": 2, "champions": {"_count": 1}, "Ravenclaw": {"_count": 1}}, "fine": {"_count": 1, "but": {"_count": 1}}, "Rons": {"_count": 2, "got": {"_count": 1}, "with": {"_count": 1}}, "nothing": {"_count": 3, "will": {"_count": 1}, "about": {"_count": 1}, "of": {"_count": 1}}, "maybe": {"_count": 2, "I": {"_count": 1}, "it": {"_count": 1}}, "or": {"_count": 3, "care": {"_count": 2}, "suspect": {"_count": 1}}, "Charlie": {"_count": 1, "said": {"_count": 1}}, "no": {"_count": 2, "competition": {"_count": 1}, "I": {"_count": 1}}, "You": {"_count": 1, "is": {"_count": 1}}, "never": {"_count": 1, "having": {"_count": 1}}, "foreign": {"_count": 1, "wizards": {"_count": 1}}, "international": {"_count": 1, "magical": {"_count": 1}}, "Agrid": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "wha": {"_count": 1, "Harry": {"_count": 1}}, "Viktor": {"_count": 2, "asked": {"_count": 1}, "said": {"_count": 1}}, "Crouch": {"_count": 2, "then": {"_count": 1}, "all": {"_count": 1}}, "Dumbledore": {"_count": 9, "s": {"_count": 1}, "trusts": {"_count": 1}, "": {"_count": 2}, "who": {"_count": 1}, "doesnt": {"_count": 1}, "seems": {"_count": 1}, "seemed": {"_count": 1}, "left": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "Winky": {"_count": 1, "Hermione": {"_count": 1}}, "leprechaun": {"_count": 1, "gold": {"_count": 1}}, "We": {"_count": 1, "werent": {"_count": 1}}, "spilled": {"_count": 1, "out": {"_count": 1}}, "except": {"_count": 1, "your": {"_count": 1}}, "thats": {"_count": 3, "what": {"_count": 1}, "disgusting": {"_count": 1}, "why": {"_count": 1}}, "already": {"_count": 1, "you": {"_count": 1}}, "But": {"_count": 1, "Mrs": {"_count": 1}}, "ways": {"_count": 1, "to": {"_count": 1}}, "crying": {"_count": 1, "and": {"_count": 1}}, "Voldemorts": {"_count": 2, "back": {"_count": 1}, "snake": {"_count": 1}}, "A": {"_count": 1, "gale": {"_count": 1}}, "Will": {"_count": 1, "nicked": {"_count": 1}}, "Molly": {"_count": 1, "said": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "quite": {"_count": 2, "a": {"_count": 1}, "what": {"_count": 1}}, "nobody": {"_count": 1, "can": {"_count": 1}}, "moaned": {"_count": 1, "Mrs": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "however": {"_count": 1, "that": {"_count": 1}}, "get": {"_count": 1, "my": {"_count": 1}}, "violent": {"_count": 1, "but": {"_count": 1}}, "shes": {"_count": 7, "a": {"_count": 2}, "bin": {"_count": 1}, "grown": {"_count": 1}, "insane": {"_count": 1}, "written": {"_count": 1}, "safe": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "mate": {"_count": 2, "said": {"_count": 2}}, "theres": {"_count": 2, "nothing": {"_count": 1}, "someone": {"_count": 1}}, "If": {"_count": 1, "youve": {"_count": 1}}, "Madam": {"_count": 1, "Bones": {"_count": 1}}, "their": {"_count": 1, "stuff": {"_count": 1}}, "flashy": {"_count": 1, "stuff": {"_count": 1}}, "theyve": {"_count": 3, "got": {"_count": 2}, "stopped": {"_count": 1}}, "Yes": {"_count": 1, "as": {"_count": 1}}, "Mountain": {"_count": 1, "scenery": {"_count": 1}}, "straightaway": {"_count": 1, "for": {"_count": 1}}, "still": {"_count": 1, "thinks": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "dont": {"_count": 2, "you": {"_count": 2}}, "Willy": {"_count": 1, "turned": {"_count": 1}}, "lovely": {"_count": 1, "young": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "usual": {"_count": 1, "stuff": {"_count": 1}}, "Quidditch": {"_count": 1, "was": {"_count": 1}}, "continued": {"_count": 1, "Firenze": {"_count": 1}}, "definitely": {"_count": 1, "happened": {"_count": 1}}, "Minister": {"_count": 1, "I": {"_count": 1}}, "prefects": {"_count": 1, "cant": {"_count": 1}}, "yehve": {"_count": 1, "got": {"_count": 1}}, "yeh": {"_count": 2, "when": {"_count": 1}, "were": {"_count": 1}}, "Dragon": {"_count": 1, "claw": {"_count": 1}}, "somethings": {"_count": 1, "coming": {"_count": 1}}, "spells": {"_count": 1, "of": {"_count": 1}}, "Be": {"_count": 1, "quiet": {"_count": 1}}, "Williamson": {"_count": 1, "I": {"_count": 1}}, "nasty": {"_count": 1, "flight": {"_count": 1}}, "dear": {"_count": 1, "but": {"_count": 1}}, "someone": {"_count": 1, "whos": {"_count": 1}}, "Lupins": {"_count": 1, "tried": {"_count": 1}}, "\u2018security": {"_count": 1, "meant": {"_count": 1}}, "jus": {"_count": 1, "like": {"_count": 1}}, "challenge": {"_count": 1, "your": {"_count": 1}}, "Fenrir": {"_count": 1, "Greyback": {"_count": 1}}, "everyone": {"_count": 1, "": {"_count": 1}}, "Bertie": {"_count": 1, "and": {"_count": 1}}, "Voldemort": {"_count": 1, "doesnt": {"_count": 1}}, "Riddles": {"_count": 1, "diary": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "youll": {"_count": 2, "be": {"_count": 2}}, "funny": {"_count": 1, "name": {"_count": 1}}, "once": {"_count": 1, "a": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "a": {"_count": 1}}, "like": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 2, "": {"_count": 1}, "Rons": {"_count": 1}}, "Dumbledores": {"_count": 1, "tried": {"_count": 1}}, "Harrys": {"_count": 1, "name": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 2}}, "over": {"_count": 1, "Christmas": {"_count": 1}}, "full": {"_count": 2, "well": {"_count": 2}}, "eventually": {"_count": 1, "and": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "perhaps": {"_count": 1, "that": {"_count": 1}}, "aha": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "very": {"_count": 1}}, "exists": {"_count": 1, "said": {"_count": 1}}, "Essence": {"_count": 1, "of": {"_count": 1}}, "grave": {"_count": 1, "": {"_count": 1}}, "His": {"_count": 1, "voice": {"_count": 1}}, "students": {"_count": 1, "knew": {"_count": 1}}, "nor": {"_count": 1, "why": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "died": {"_count": 1, "": {"_count": 1}}, "hell": {"_count": 1, "find": {"_count": 1}}, "immediately": {"_count": 2, "": {"_count": 2}}, "Accio": {"_count": 1, "": {"_count": 1}}, "Gregorovitch": {"_count": 1, "made": {"_count": 1}}, "secrets": {"_count": 1, "of": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}, "sooner": {"_count": 1, "or": {"_count": 1}}, "only": {"_count": 1, "the": {"_count": 1}}, "roughly": {"_count": 1, "where": {"_count": 1}}, "dementors": {"_count": 1, "are": {"_count": 1}}, "after": {"_count": 1, "wed": {"_count": 1}}, "could": {"_count": 1, "it": {"_count": 1}}, "Bathilda": {"_count": 1, "thought": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "well": {"_count": 2, "be": {"_count": 1}, "and": {"_count": 1}}, "first": {"_count": 1, "holiday": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "unless": {"_count": 1, "theyve": {"_count": 1}}, "Stan": {"_count": 1, "Shunpike": {"_count": 1}}, "es": {"_count": 1, "swollen": {"_count": 1}}, "goblins": {"_count": 1, "said": {"_count": 1}}, "whispered": {"_count": 1, "Griphook": {"_count": 1}}, "Either": {"_count": 1, "way": {"_count": 1}}, "James": {"_count": 1, "Potters": {"_count": 1}}, "limited": {"_count": 1, "time": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "pretended": {"_count": 1, "he": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "Neville": {"_count": 1, "James": {"_count": 1}}}, "uneasy": {"_count": 19, "": {"_count": 8, ".": {"_count": 8}}, "sleep": {"_count": 3, "but": {"_count": 1}, "": {"_count": 1}, "full": {"_count": 1}}, "look": {"_count": 1, "on": {"_count": 1}}, "about": {"_count": 1, "goings": {"_count": 1}}, "looks": {"_count": 1, "with": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "conclusion": {"_count": 1, "she": {"_count": 1}}}, "bunch": {"_count": 29, "were": {"_count": 1, "whispering": {"_count": 1}}, "of": {"_count": 25, "dunderheads": {"_count": 1}, "grapes": {"_count": 1}, "people": {"_count": 2}, "earwiggy": {"_count": 1}, "rowdy": {"_count": 1}, "surly": {"_count": 1}, "doddery": {"_count": 1}, "flowers": {"_count": 1}, "goblins": {"_count": 1}, "wizards": {"_count": 1}, "blood": {"_count": 1}, "first": {"_count": 1}, "spells": {"_count": 2}, "mules": {"_count": 1}, "gossiping": {"_count": 1}, "oddballs": {"_count": 1}, "roses": {"_count": 1}, "layabout": {"_count": 1}, "golden": {"_count": 1}, "bleedin": {"_count": 1}, "stuff": {"_count": 2}, "Death": {"_count": 1}}, "Ginny": {"_count": 1, "said": {"_count": 1}}, "o": {"_count": 2, "Aurors": {"_count": 1}, "nags": {"_count": 1}}}, "single": {"_count": 113, "collecting": {"_count": 1, "tin": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "witch": {"_count": 1, "or": {"_count": 1}}, "wand": {"_count": 2, "lay": {"_count": 1}, "": {"_count": 1}}, "spindly": {"_count": 1, "chair": {"_count": 1}}, "letter": {"_count": 1, "since": {"_count": 1}}, "one": {"_count": 5, "and": {"_count": 1}, "of": {"_count": 3}, "": {"_count": 1}}, "pair": {"_count": 1, "": {"_count": 1}}, "handed": {"_count": 2, "": {"_count": 2}}, "gnome": {"_count": 1, "in": {"_count": 1}}, "slug": {"_count": 1, "fell": {"_count": 1}}, "oil": {"_count": 1, "lamp": {"_count": 1}}, "tear": {"_count": 1, "was": {"_count": 1}}, "hair": {"_count": 2, "inside": {"_count": 1}, "from": {"_count": 1}}, "spider": {"_count": 1, "left": {"_count": 1}}, "word": {"_count": 6, "had": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "dementors": {"_count": 1}}, "mention": {"_count": 2, "of": {"_count": 2}}, "curse": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "bloody": {"_count": 1, "eyeball": {"_count": 1}}, "entrance": {"_count": 1, "to": {"_count": 1}}, "person": {"_count": 5, "inside": {"_count": 1}, "seemed": {"_count": 1}, "in": {"_count": 2}, "within": {"_count": 1}}, "cheerful": {"_count": 1, "thought": {"_count": 1}}, "living": {"_count": 1, "soul": {"_count": 1}}, "table": {"_count": 1, "set": {"_count": 1}}, "very": {"_count": 1, "happy": {"_count": 1}}, "criticism": {"_count": 1, "to": {"_count": 1}}, "Slytherin": {"_count": 2, "player": {"_count": 1}, "Malfoy": {"_count": 1}}, "file": {"_count": 2, "": {"_count": 1}, "out": {"_count": 1}}, "voice": {"_count": 1, "was": {"_count": 1}}, "pane": {"_count": 1, "and": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "quill": {"_count": 1, "on": {"_count": 1}}, "room": {"_count": 1, "in": {"_count": 1}}, "Hufflepuff": {"_count": 1, "had": {"_count": 1}}, "feather": {"_count": 1, "from": {"_count": 1}}, "Stunner": {"_count": 1, "you": {"_count": 1}}, "manyheaded": {"_count": 1, "entity": {"_count": 1}}, "tissue": {"_count": 1, "an": {"_count": 1}}, "thing": {"_count": 2, "about": {"_count": 1}, "to": {"_count": 1}}, "goldenframed": {"_count": 1, "painting": {"_count": 1}}, "dot": {"_count": 1, "was": {"_count": 1}}, "teachers": {"_count": 1, "office": {"_count": 1}}, "thought": {"_count": 1, "since": {"_count": 1}}, "cloud": {"_count": 1, "in": {"_count": 1}}, "gold": {"_count": 1, "hoop": {"_count": 1}}, "stinking": {"_count": 1, "thing": {"_count": 1}}, "vertical": {"_count": 1, "gold": {"_count": 1}}, "dream": {"_count": 1, "in": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloak": {"_count": 1}}, "ring": {"_count": 4, "Thats": {"_count": 2}, "": {"_count": 2}}, "golden": {"_count": 2, "feather": {"_count": 1}, "phoenix": {"_count": 1}}, "Divination": {"_count": 1, "and": {"_count": 1}}, "branch": {"_count": 1, "of": {"_count": 1}}, "large": {"_count": 2, "fleshy": {"_count": 1}, "oil": {"_count": 1}}, "long": {"_count": 2, "black": {"_count": 1}, "coarse": {"_count": 1}}, "car": {"_count": 1, "was": {"_count": 1}}, "move": {"_count": 1, "to": {"_count": 1}}, "gargoyle": {"_count": 1, "stood": {"_count": 1}}, "goal": {"_count": 1, "the": {"_count": 1}}, "question": {"_count": 2, "about": {"_count": 2}}, "name": {"_count": 1, "\u2018Marvolo": {"_count": 1}}, "guttering": {"_count": 1, "candle": {"_count": 1}}, "illuminating": {"_count": 1, "note": {"_count": 1}}, "explanation": {"_count": 1, "of": {"_count": 1}}, "gust": {"_count": 1, "of": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "pupil": {"_count": 2, "wants": {"_count": 1}, "after": {"_count": 1}}, "patch": {"_count": 2, "on": {"_count": 1}, "of": {"_count": 1}}, "socks": {"_count": 1, "that": {"_count": 1}}, "sock": {"_count": 1, "he": {"_count": 1}}, "seat": {"_count": 1, "in": {"_count": 1}}, "shaky": {"_count": 1, "nod": {"_count": 1}}, "cobweb": {"_count": 1, "stretched": {"_count": 1}}, "glance": {"_count": 1, "from": {"_count": 1}}, "candle": {"_count": 1, "the": {"_count": 1}}, "dark": {"_count": 1, "wound": {"_count": 1}}, "unblocked": {"_count": 1, "window": {"_count": 1}}, "knot": {"_count": 1, "in": {"_count": 1}}, "headmaster": {"_count": 1, "or": {"_count": 1}}, "huge": {"_count": 1, "chimney": {"_count": 1}}, "second": {"_count": 1, "and": {"_count": 1}}, "white": {"_count": 1, "finger": {"_count": 1}}, "stroke": {"_count": 1, "Neville": {"_count": 1}}}, "tin": {"_count": 16, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 3, "treacle": {"_count": 1}, "HighFinish": {"_count": 1}, "cookies": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "upstairs": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 1, "their": {"_count": 1}}, "parrot": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "slid": {"_count": 1, "sideways": {"_count": 1}}, "cans": {"_count": 2, "or": {"_count": 2}}, "plate": {"_count": 1, "onto": {"_count": 1}}, "mugs": {"_count": 1, "were": {"_count": 1}}}, "way": {"_count": 1126, "back": {"_count": 51, "past": {"_count": 2}, "its": {"_count": 1}, "down": {"_count": 3}, "to": {"_count": 16}, "Harry": {"_count": 1}, "up": {"_count": 6}, "into": {"_count": 7}, "through": {"_count": 4}, "across": {"_count": 1}, "toward": {"_count": 1}, "from": {"_count": 2}, "along": {"_count": 1}, "around": {"_count": 1}, "downstairs": {"_count": 2}, "here": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 1}, "thought": {"_count": 1}}, "": {"_count": 155, "?": {"_count": 13}, ".": {"_count": 116}, "!": {"_count": 26}}, "up": {"_count": 32, "the": {"_count": 11}, "to": {"_count": 11}, "": {"_count": 2}, "from": {"_count": 1}, "filled": {"_count": 1}, "Karkaroffs": {"_count": 1}, "number": {"_count": 1}, "again": {"_count": 1}, "through": {"_count": 2}, "had": {"_count": 1}}, "of": {"_count": 47, "a": {"_count": 2}, "getting": {"_count": 2}, "climbing": {"_count": 1}, "running": {"_count": 1}, "great": {"_count": 1}, "making": {"_count": 1}, "greeting": {"_count": 1}, "smuggling": {"_count": 1}, "discovering": {"_count": 1}, "establishing": {"_count": 1}, "cheering": {"_count": 1}, "showing": {"_count": 3}, "communicating": {"_count": 1}, "continuing": {"_count": 1}, "doing": {"_count": 3}, "his": {"_count": 2}, "keeping": {"_count": 2}, "listening": {"_count": 1}, "killing": {"_count": 1}, "stealing": {"_count": 1}, "helping": {"_count": 1}, "letting": {"_count": 1}, "trying": {"_count": 1}, "taunts": {"_count": 1}, "lodging": {"_count": 1}, "releasing": {"_count": 1}, "reminding": {"_count": 1}, "finding": {"_count": 2}, "thinking": {"_count": 1}, "knowing": {"_count": 2}, "putting": {"_count": 1}, "weeding": {"_count": 1}, "opening": {"_count": 1}, "extracting": {"_count": 1}, "further": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "all": {"_count": 3, "over": {"_count": 1}, "the": {"_count": 1}, "along": {"_count": 1}}, "to": {"_count": 94, "the": {"_count": 19}, "his": {"_count": 2}, "get": {"_count": 7}, "platforms": {"_count": 1}, "greatness": {"_count": 2}, "classes": {"_count": 1}, "escape": {"_count": 1}, "Herbology": {"_count": 1}, "travel": {"_count": 2}, "doctor": {"_count": 1}, "History": {"_count": 2}, "march": {"_count": 1}, "our": {"_count": 1}, "deal": {"_count": 1}, "London": {"_count": 2}, "fight": {"_count": 1}, "repay": {"_count": 1}, "prove": {"_count": 1}, "keep": {"_count": 1}, "spend": {"_count": 1}, "turn": {"_count": 2}, "sort": {"_count": 1}, "attack": {"_count": 1}, "think": {"_count": 1}, "go": {"_count": 1}, "cause": {"_count": 1}, "Hogwarts": {"_count": 2}, "that": {"_count": 1}, "avoid": {"_count": 2}, "open": {"_count": 1}, "their": {"_count": 1}, "do": {"_count": 1}, "fly": {"_count": 1}, "induce": {"_count": 1}, "try": {"_count": 1}, "maintain": {"_count": 1}, "Fred": {"_count": 1}, "break": {"_count": 1}, "juice": {"_count": 1}, "join": {"_count": 1}, "corner": {"_count": 1}, "have": {"_count": 1}, "tackle": {"_count": 1}, "force": {"_count": 1}, "procure": {"_count": 1}, "thwart": {"_count": 1}, "let": {"_count": 1}, "penetrate": {"_count": 1}, "put": {"_count": 1}, "annoy": {"_count": 1}, "destroy": {"_count": 1}, "repair": {"_count": 1}, "find": {"_count": 2}, "make": {"_count": 1}, "approach": {"_count": 1}, "conquer": {"_count": 2}, "stop": {"_count": 1}, "die": {"_count": 1}, "end": {"_count": 1}, "bed": {"_count": 1}}, "it": {"_count": 7, "shouldnt": {"_count": 1}, "looks": {"_count": 1}, "was": {"_count": 2}, "is": {"_count": 2}, "seemed": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "you": {"_count": 13, "he": {"_count": 1}, "trapped": {"_count": 1}, "havent": {"_count": 1}, "did": {"_count": 2}, "got": {"_count": 1}, "could": {"_count": 2}, "talk": {"_count": 1}, "continue": {"_count": 1}, "can": {"_count": 1}, "do": {"_count": 1}, "learn": {"_count": 1}}, "they": {"_count": 15, "seemed": {"_count": 1}, "had": {"_count": 4}, "move": {"_count": 1}, "behave": {"_count": 1}, "clearly": {"_count": 1}, "were": {"_count": 4}, "moved": {"_count": 1}, "said": {"_count": 1}, "gaped": {"_count": 1}}, "down": {"_count": 31, "the": {"_count": 13}, "to": {"_count": 12}, "what": {"_count": 1}, "a": {"_count": 1}, "through": {"_count": 1}, "here": {"_count": 1}, "row": {"_count": 1}, "his": {"_count": 1}}, "into": {"_count": 27, "the": {"_count": 16}, "it": {"_count": 1}, "innocent": {"_count": 1}, "Cedrics": {"_count": 1}, "class": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}, "nothingness": {"_count": 1}, "Hogwarts": {"_count": 1}, "Snapes": {"_count": 1}, "learned": {"_count": 1}, "every": {"_count": 1}}, "through": {"_count": 45, "the": {"_count": 33}, "all": {"_count": 2}, "a": {"_count": 4}, "five": {"_count": 1}, "to": {"_count": 1}, "several": {"_count": 1}, "thickly": {"_count": 1}, "": {"_count": 1}, "reeds": {"_count": 1}}, "out": {"_count": 44, "at": {"_count": 1}, "of": {"_count": 31}, "to": {"_count": 1}, "into": {"_count": 2}, "": {"_count": 4}, "and": {"_count": 2}, "Ron": {"_count": 1}, "except": {"_count": 1}, "was": {"_count": 1}}, "but": {"_count": 8, "it": {"_count": 2}, "she": {"_count": 1}, "thats": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 2}, "this": {"_count": 1}}, "Gringotts": {"_count": 1, "is": {"_count": 1}}, "forward": {"_count": 7, "very": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}, "down": {"_count": 1}, "unhampered": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}}, "because": {"_count": 3, "Griphook": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}}, "over": {"_count": 12, "the": {"_count": 3}, "both": {"_count": 1}, "to": {"_count": 7}, "": {"_count": 1}}, "who": {"_count": 2, "are": {"_count": 1}, "seized": {"_count": 1}}, "as": {"_count": 16, "your": {"_count": 2}, "it": {"_count": 1}, "several": {"_count": 1}, "the": {"_count": 2}, "they": {"_count": 1}, "Dumbledore": {"_count": 2}, "any": {"_count": 1}, "four": {"_count": 1}, "though": {"_count": 1}, "Xenophiliuss": {"_count": 1}, "vast": {"_count": 1}, "possible": {"_count": 1}, "Freddie": {"_count": 1}}, "did": {"_count": 3, "you": {"_count": 2}, "they": {"_count": 1}}, "toward": {"_count": 16, "the": {"_count": 7}, "Harry": {"_count": 1}, "people": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 2}, "him": {"_count": 1}, "certain": {"_count": 1}, "her": {"_count": 2}}, "he": {"_count": 30, "wanted": {"_count": 2}, "said": {"_count": 2}, "shouted": {"_count": 1}, "looked": {"_count": 1}, "talks": {"_count": 1}, "could": {"_count": 1}, "was": {"_count": 4}, "would": {"_count": 2}, "looks": {"_count": 1}, "possessed": {"_count": 1}, "stumped": {"_count": 1}, "had": {"_count": 5}, "did": {"_count": 3}, "writes": {"_count": 1}, "hit": {"_count": 1}, "probably": {"_count": 1}, "added": {"_count": 2}}, "Malfoy": {"_count": 4, "had": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 1}, "looking": {"_count": 1}}, "across": {"_count": 17, "the": {"_count": 13}, "to": {"_count": 2}, "a": {"_count": 1}, "it": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "in": {"_count": 14, "time": {"_count": 1}, "the": {"_count": 2}, "turn": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 2}, "between": {"_count": 1}, "which": {"_count": 2}, "eavesdropped": {"_count": 1}, "ourselves": {"_count": 1}, "now": {"_count": 1}, "you": {"_count": 1}}, "snapped": {"_count": 1, "Ron": {"_count": 1}}, "when": {"_count": 6, "another": {"_count": 1}, "someones": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}, "with": {"_count": 1}, "I": {"_count": 1}}, "upstairs": {"_count": 3, "barred": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "slipped": {"_count": 1, "down": {"_count": 1}}, "walked": {"_count": 1, "onto": {"_count": 1}}, "by": {"_count": 1, "Fred": {"_count": 1}}, "until": {"_count": 3, "you": {"_count": 1}, "they": {"_count": 1}, "all": {"_count": 1}}, "more": {"_count": 2, "like": {"_count": 1}, "quickly": {"_count": 1}}, "Harry": {"_count": 14, "had": {"_count": 4}, "": {"_count": 4}, "lay": {"_count": 1}, "liked": {"_count": 1}, "filled": {"_count": 1}, "and": {"_count": 1}, "told": {"_count": 1}, "breathed": {"_count": 1}}, "along": {"_count": 12, "the": {"_count": 10}, "his": {"_count": 1}, "to": {"_count": 1}}, "that": {"_count": 15, "Snape": {"_count": 1}, "told": {"_count": 1}, "Neville": {"_count": 1}, "meant": {"_count": 1}, "spider": {"_count": 1}, "even": {"_count": 1}, "fate": {"_count": 1}, "year": {"_count": 1}, "Harry": {"_count": 1}, "is": {"_count": 1}, "will": {"_count": 1}, "Dumbledore": {"_count": 1}, "they": {"_count": 2}, "Lord": {"_count": 1}}, "Hagrid": {"_count": 1, "goes": {"_count": 1}}, "an": {"_count": 2, "Draco": {"_count": 1}, "went": {"_count": 1}}, "said": {"_count": 20, "Harry": {"_count": 6}, "Hermione": {"_count": 5}, "the": {"_count": 1}, "Hagrid": {"_count": 2}, "Mr": {"_count": 1}, "George": {"_count": 1}, "Ron": {"_count": 1}, "Umbridge": {"_count": 1}, "Morfin": {"_count": 1}, "Voldemort": {"_count": 1}}, "around": {"_count": 14, "the": {"_count": 7}, "dont": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 2}, "their": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}}, "peoples": {"_count": 1, "minds": {"_count": 1}}, "while": {"_count": 1, "shes": {"_count": 1}}, "hurt": {"_count": 1, "Aunt": {"_count": 1}}, "things": {"_count": 3, "were": {"_count": 1}, "have": {"_count": 1}, "are": {"_count": 1}}, "houseelves": {"_count": 1, "have": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "zigzagging": {"_count": 1, "up": {"_count": 1}}, "swiftly": {"_count": 1, "and": {"_count": 1}}, "there": {"_count": 4, "he": {"_count": 1}, "if": {"_count": 1}, "was": {"_count": 2}}, "past": {"_count": 4, "a": {"_count": 1}, "them": {"_count": 1}, "monstrous": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 14, "windshield": {"_count": 1}, "boys": {"_count": 1}, "planetary": {"_count": 1}, "elves": {"_count": 1}, "Extendable": {"_count": 1}, "stile": {"_count": 1}, "wind": {"_count": 1}, "Weasley": {"_count": 1}, "teachers": {"_count": 1}, "other": {"_count": 1}, "Ministry": {"_count": 1}, "lights": {"_count": 1}, "Death": {"_count": 1}, "wand": {"_count": 1}}, "she": {"_count": 11, "said": {"_count": 2}, "was": {"_count": 3}, "lost": {"_count": 1}, "couldve": {"_count": 1}, "would": {"_count": 2}, "talks": {"_count": 1}, "could": {"_count": 1}}, "Colin": {"_count": 1, "": {"_count": 1}}, "Justin": {"_count": 1, "FinchFletchley": {"_count": 1}}, "onto": {"_count": 3, "their": {"_count": 1}, "the": {"_count": 2}}, "Im": {"_count": 3, "going": {"_count": 2}, "afraid": {"_count": 1}}, "one": {"_count": 1, "idea": {"_count": 1}}, "downstairs": {"_count": 3, "for": {"_count": 1}, "they": {"_count": 1}, "to": {"_count": 1}}, "about": {"_count": 5, "cheering": {"_count": 1}, "your": {"_count": 1}, "any": {"_count": 1}, "anyone": {"_count": 1}, "me": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Potter": {"_count": 5, "she": {"_count": 1}, "youre": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "Moody": {"_count": 1}}, "for": {"_count": 7, "the": {"_count": 2}, "a": {"_count": 2}, "": {"_count": 1}, "Umbridge": {"_count": 1}, "folded": {"_count": 1}}, "Percy": {"_count": 1, "said": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "Harry": {"_count": 1}}, "with": {"_count": 7, "a": {"_count": 2}, "his": {"_count": 3}, "nothing": {"_count": 1}, "you": {"_count": 1}}, "than": {"_count": 1, "ink": {"_count": 1}}, "Lockhart": {"_count": 1, "teaches": {"_count": 1}}, "barely": {"_count": 1, "visible": {"_count": 1}}, "cleverly": {"_count": 1, "through": {"_count": 1}}, "Voldemort": {"_count": 3, "was": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 1}}, "glowing": {"_count": 1, "gold": {"_count": 1}}, "I": {"_count": 8, "might": {"_count": 1}, "teach": {"_count": 1}, "run": {"_count": 1}, "will": {"_count": 1}, "can": {"_count": 1}, "could": {"_count": 1}, "told": {"_count": 1}, "knew": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "inside": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "keeping": {"_count": 1}}, "and": {"_count": 28, "bowing": {"_count": 1}, "it": {"_count": 3}, "YES": {"_count": 1}, "that": {"_count": 6}, "a": {"_count": 2}, "there": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}, "everybody": {"_count": 1}, "hit": {"_count": 1}, "returned": {"_count": 1}, "dabbing": {"_count": 1}, "pointed": {"_count": 1}, "cackling": {"_count": 1}, "then": {"_count": 1}, "heard": {"_count": 1}, "pulled": {"_count": 1}, "they": {"_count": 1}}, "Id": {"_count": 2, "have": {"_count": 1}, "certainly": {"_count": 1}}, "McGonagall": {"_count": 1, "or": {"_count": 1}}, "mouth": {"_count": 1, "slightly": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "practice": {"_count": 1, "had": {"_count": 1}}, "away": {"_count": 10, "from": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 3}, "moving": {"_count": 1}, "and": {"_count": 1}, "if": {"_count": 1}, "under": {"_count": 1}, "in": {"_count": 1}}, "Ravenclaw": {"_count": 1, "is": {"_count": 1}}, "slowly": {"_count": 4, "down": {"_count": 2}, "through": {"_count": 1}, "back": {"_count": 1}}, "above": {"_count": 2, "the": {"_count": 2}}, "still": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 6, "clear": {"_count": 1}, "better": {"_count": 2}, "north": {"_count": 1}, "up": {"_count": 1}, "impeded": {"_count": 1}}, "or": {"_count": 4, "the": {"_count": 1}, "I": {"_count": 1}, "because": {"_count": 1}, "another": {"_count": 1}}, "Snapes": {"_count": 1, "been": {"_count": 1}}, "a": {"_count": 1, "werewolfs": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 1}, "heart": {"_count": 1}}, "silently": {"_count": 1, "through": {"_count": 1}}, "from": {"_count": 7, "Hogwarts": {"_count": 1}, "Egypt": {"_count": 1}, "the": {"_count": 3}, "us": {"_count": 1}, "lovely": {"_count": 1}}, "between": {"_count": 5, "two": {"_count": 1}, "the": {"_count": 1}, "tables": {"_count": 2}, "them": {"_count": 1}}, "theyre": {"_count": 2, "going": {"_count": 1}, "barricading": {"_count": 1}}, "their": {"_count": 2, "eyes": {"_count": 1}, "patch": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "beyond": {"_count": 4, "that": {"_count": 1}, "anything": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "farther": {"_count": 1, "on": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "off": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "Bagman": {"_count": 1, "pointed": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}, "Winky": {"_count": 1, "clutched": {"_count": 1}}, "Hermione": {"_count": 2, "I": {"_count": 1}, "trotting": {"_count": 1}}, "now": {"_count": 1, "dragging": {"_count": 1}}, "so": {"_count": 2, "as": {"_count": 1}, "that": {"_count": 1}}, "He": {"_count": 1, "whipped": {"_count": 1}}, "hasnt": {"_count": 1, "he": {"_count": 1}}, "Dark": {"_count": 1, "wizards": {"_count": 1}}, "Ron": {"_count": 2, "was": {"_count": 1}, "Ive": {"_count": 1}}, "backing": {"_count": 1, "down": {"_count": 1}}, "then": {"_count": 2, "the": {"_count": 2}}, "any": {"_count": 1, "of": {"_count": 1}}, "without": {"_count": 1, "being": {"_count": 1}}, "after": {"_count": 2, "that": {"_count": 1}, "all": {"_count": 1}}, "too": {"_count": 2, "much": {"_count": 1}, "obvious": {"_count": 1}}, "please": {"_count": 4, "said": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "Ive": {"_count": 2, "bin": {"_count": 1}, "chosen": {"_count": 1}}, "hed": {"_count": 1, "be": {"_count": 1}}, "Crouchs": {"_count": 1, "eyes": {"_count": 1}}, "Granger": {"_count": 1, "": {"_count": 1}}, "disentangling": {"_count": 1, "her": {"_count": 1}}, "unblocked": {"_count": 1, "": {"_count": 1}}, "blindly": {"_count": 1, "toward": {"_count": 1}}, "is": {"_count": 1, "past": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "clear": {"_count": 1, "": {"_count": 1}}, "home": {"_count": 2, "accompanied": {"_count": 1}, "through": {"_count": 1}}, "well": {"_count": 2, "YouKnowWho": {"_count": 1}, "be": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "blocking": {"_count": 1}, "leaving": {"_count": 1}}, "steadily": {"_count": 1, "through": {"_count": 1}}, "not": {"_count": 1, "as": {"_count": 1}}, "responsible": {"_count": 1, "for": {"_count": 1}}, "What": {"_count": 1, "use": {"_count": 1}}, "below": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "anyone": {"_count": 1, "would": {"_count": 1}}, "her": {"_count": 3, "eyebrows": {"_count": 1}, "chest": {"_count": 1}, "eyes": {"_count": 1}}, "youre": {"_count": 3, "moving": {"_count": 1}, "quite": {"_count": 2}}, "Fang": {"_count": 1, "": {"_count": 1}}, "yeh": {"_count": 2, "dozy": {"_count": 1}, "couldve": {"_count": 1}}, "ter": {"_count": 1, "give": {"_count": 1}}, "we": {"_count": 1, "was": {"_count": 1}}, "hidin": {"_count": 1, "out": {"_count": 1}}, "some": {"_count": 1, "people": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "still": {"_count": 1}}, "thank": {"_count": 1, "him": {"_count": 1}}, "at": {"_count": 1, "each": {"_count": 1}}, "closer": {"_count": 2, "to": {"_count": 2}}, "myself": {"_count": 1, "said": {"_count": 1}}, "oblivious": {"_count": 1, "to": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "disgusted": {"_count": 1}}, "quickly": {"_count": 1, "to": {"_count": 1}}, "left": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "ahead": {"_count": 4, "clear": {"_count": 1}, "illuminated": {"_count": 1}, "of": {"_count": 2}}, "dyou": {"_count": 1, "reck": {"_count": 1}}, "get": {"_count": 1, "down": {"_count": 1}}, "By": {"_count": 1, "which": {"_count": 1}}, "once": {"_count": 1, "you": {"_count": 1}}, "hedve": {"_count": 1, "wanted": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "youll": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "Phlegm": {"_count": 1, "says": {"_count": 1}}, "see": {"_count": 1, "what": {"_count": 1}}, "twenty": {"_count": 1, "hopefuls": {"_count": 1}}, "theyd": {"_count": 1, "let": {"_count": 1}}, "Hogwarts": {"_count": 1, "operated": {"_count": 1}}, "squeakily": {"_count": 1, "through": {"_count": 1}}, "realizing": {"_count": 1, "too": {"_count": 1}}, "just": {"_count": 2, "as": {"_count": 1}, "because": {"_count": 1}}, "maybe": {"_count": 1, "he": {"_count": 1}}, "quite": {"_count": 1, "free": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "Ted": {"_count": 1, "Tonks": {"_count": 1}}, "round": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "causing": {"_count": 1, "half": {"_count": 1}}, "Scrimgeour": {"_count": 1, "said": {"_count": 1}}, "Bathilda": {"_count": 1, "told": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "despite": {"_count": 1, "being": {"_count": 1}}, "cant": {"_count": 1, "y": {"_count": 1}}, "blocked": {"_count": 1, "by": {"_count": 1}}, "carefully": {"_count": 1, "toward": {"_count": 1}}, "everyone": {"_count": 1, "was": {"_count": 1}}, "My": {"_count": 1, "parents": {"_count": 1}}, "brushed": {"_count": 1, "snow": {"_count": 1}}, "Mr": {"_count": 1, "Lovegood": {"_count": 1}}, "pushed": {"_count": 1, "him": {"_count": 1}}, "HERMIONE": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 1, "have": {"_count": 1}}, "Griphook": {"_count": 1, "": {"_count": 1}}, "keep": {"_count": 1, "safe": {"_count": 1}}, "knocking": {"_count": 1, "Malfoys": {"_count": 1}}, "screamed": {"_count": 1, "Malfoy": {"_count": 1}}, "Nagini": {"_count": 1, "he": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "nearer": {"_count": 1, "still": {"_count": 1}}}, "clutching": {"_count": 131, "a": {"_count": 20, "large": {"_count": 4}, "stitch": {"_count": 1}, "muffler": {"_count": 1}, "bottle": {"_count": 1}, "copy": {"_count": 1}, "handkerchief": {"_count": 1}, "silvery": {"_count": 1}, "toad": {"_count": 1}, "squirming": {"_count": 1}, "certain": {"_count": 1}, "wand": {"_count": 1}, "long": {"_count": 1}, "magazine": {"_count": 1}, "selection": {"_count": 1}, "Ministry": {"_count": 1}, "bent": {"_count": 1}, "clipboard": {"_count": 1}}, "the": {"_count": 27, "walking": {"_count": 1}, "mop": {"_count": 1}, "stitch": {"_count": 2}, "Quaffle": {"_count": 1}, "cloak": {"_count": 1}, "egg": {"_count": 2}, "smooth": {"_count": 1}, "dead": {"_count": 1}, "Snitch": {"_count": 1}, "exam": {"_count": 1}, "latest": {"_count": 1}, "desk": {"_count": 1}, "telescope": {"_count": 2}, "edge": {"_count": 1}, "Gurdyroot": {"_count": 1}, "Cup": {"_count": 1}, "gate": {"_count": 1}, "upper": {"_count": 1}, "Extendable": {"_count": 1}, "bars": {"_count": 1}, "beaded": {"_count": 1}, "two": {"_count": 1}, "sword": {"_count": 1}, "crystal": {"_count": 1}}, "his": {"_count": 22, "wrist": {"_count": 1}, "heart": {"_count": 1}, "ribs": {"_count": 1}, "face": {"_count": 1}, "broom": {"_count": 1}, "leg": {"_count": 1}, "broken": {"_count": 1}, "bottom": {"_count": 1}, "furs": {"_count": 1}, "wand": {"_count": 5}, "broomstick": {"_count": 1}, "stomach": {"_count": 2}, "hair": {"_count": 1}, "mouth": {"_count": 1}, "nose": {"_count": 1}, "head": {"_count": 1}, "arm": {"_count": 1}}, "at": {"_count": 9, "the": {"_count": 4}, "a": {"_count": 1}, "his": {"_count": 1}, "Harrys": {"_count": 1}, "straws": {"_count": 1}, "Ron": {"_count": 1}}, "on": {"_count": 1, "as": {"_count": 1}}, "Trevor": {"_count": 1, "the": {"_count": 1}}, "stacks": {"_count": 1, "of": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "Cleansweep": {"_count": 1, "Fives": {"_count": 1}}, "him": {"_count": 1, "tightly": {"_count": 1}}, "her": {"_count": 12, "chest": {"_count": 2}, "mouth": {"_count": 1}, "crocodileskin": {"_count": 1}, "wand": {"_count": 1}, "sides": {"_count": 1}, "robe": {"_count": 1}, "desk": {"_count": 1}, "heavy": {"_count": 1}, "hot": {"_count": 1}, "heart": {"_count": 1}, "fathers": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "her": {"_count": 1}}, "their": {"_count": 2, "heads": {"_count": 1}, "bottles": {"_count": 1}}, "fingers": {"_count": 1, "hit": {"_count": 1}}, "hands": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 1, "manky": {"_count": 1}}, "hard": {"_count": 1, "around": {"_count": 1}}, "scarves": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "Malfoys": {"_count": 1, "arm": {"_count": 1}}, "two": {"_count": 1, "butterbeers": {"_count": 1}}, "your": {"_count": 2, "scar": {"_count": 2}}, "Cedrics": {"_count": 1, "dead": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "convulsively": {"_count": 1, "at": {"_count": 1}}, "The": {"_count": 1, "Quibbler": {"_count": 1}}, "hand": {"_count": 1, "as": {"_count": 1}}, "heavy": {"_count": 1, "packages": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "tightly": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}, "an": {"_count": 1, "unpleasantly": {"_count": 1}}, "either": {"_count": 1, "side": {"_count": 1}}, "that": {"_count": 1, "awful": {"_count": 1}}, "seating": {"_count": 1, "plans": {"_count": 1}}, "stitches": {"_count": 1, "in": {"_count": 1}}, "its": {"_count": 1, "back": {"_count": 1}}, "Wormtails": {"_count": 1, "wand": {"_count": 1}}, "long": {"_count": 1, "thin": {"_count": 1}}, "Lunas": {"_count": 1, "shoulder": {"_count": 1}}}, "doughnut": {"_count": 2, "in": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bag": {"_count": 240, "that": {"_count": 3, "he": {"_count": 1}, "Fred": {"_count": 1}, "seemed": {"_count": 1}}, "was": {"_count": 2, "Harry": {"_count": 1}, "swinging": {"_count": 1}}, "clearly": {"_count": 1, "making": {"_count": 1}}, "": {"_count": 49, ".": {"_count": 47}, "!": {"_count": 2}}, "of": {"_count": 27, "chips": {"_count": 1}, "Bertie": {"_count": 1}, "ordinary": {"_count": 1}, "gold": {"_count": 3}, "Zonkos": {"_count": 1}, "magic": {"_count": 1}, "sweets": {"_count": 2}, "Dungbombs": {"_count": 2}, "cat": {"_count": 1}, "what": {"_count": 1}, "rats": {"_count": 2}, "dead": {"_count": 1}, "knarl": {"_count": 1}, "moon": {"_count": 1}, "Fainting": {"_count": 1}, "Fancies": {"_count": 1}, "Fizzing": {"_count": 1}, "tarantulas": {"_count": 1}, "crystalized": {"_count": 1}, "Galleons": {"_count": 1}, "pastilles": {"_count": 1}, "metal": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 51, "began": {"_count": 2}, "getting": {"_count": 1}, "they": {"_count": 1}, "looked": {"_count": 3}, "pulled": {"_count": 3}, "pulling": {"_count": 1}, "shoved": {"_count": 1}, "opening": {"_count": 1}, "stalked": {"_count": 2}, "turned": {"_count": 1}, "a": {"_count": 1}, "get": {"_count": 1}, "drew": {"_count": 2}, "out": {"_count": 1}, "hurried": {"_count": 2}, "left": {"_count": 1}, "handed": {"_count": 2}, "headed": {"_count": 1}, "dashed": {"_count": 1}, "threw": {"_count": 2}, "took": {"_count": 1}, "slumped": {"_count": 1}, "produced": {"_count": 1}, "set": {"_count": 1}, "making": {"_count": 1}, "ink": {"_count": 1}, "the": {"_count": 1}, "joined": {"_count": 1}, "stowed": {"_count": 1}, "raised": {"_count": 1}, "tapped": {"_count": 1}, "books": {"_count": 1}, "approached": {"_count": 1}, "thrust": {"_count": 1}, "heading": {"_count": 1}, "started": {"_count": 1}, "rummaged": {"_count": 1}, "from": {"_count": 1}, "waited": {"_count": 1}, "hurriedly": {"_count": 1}, "I": {"_count": 1}}, "for": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "split": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "desperate": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "out": {"_count": 1, "after": {"_count": 1}}, "with": {"_count": 2, "gold": {"_count": 1}, "his": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "took": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "just": {"_count": 2, "the": {"_count": 1}, "split": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 5, "Crookshanks": {"_count": 1}, "quickly": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "around": {"_count": 1, "Crookshanks": {"_count": 1}}, "sprang": {"_count": 1, "over": {"_count": 1}}, "which": {"_count": 4, "was": {"_count": 1}, "he": {"_count": 1}, "made": {"_count": 1}, "Harry": {"_count": 1}}, "back": {"_count": 3, "over": {"_count": 2}, "inside": {"_count": 1}}, "slipped": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "over": {"_count": 4, "her": {"_count": 1}, "his": {"_count": 2}, "Rons": {"_count": 1}}, "from": {"_count": 4, "his": {"_count": 2}, "which": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "down": {"_count": 1, "onto": {"_count": 1}}, "again": {"_count": 1, "spread": {"_count": 1}}, "dangling": {"_count": 1, "off": {"_count": 1}}, "he": {"_count": 3, "held": {"_count": 1}, "plunged": {"_count": 1}, "caught": {"_count": 1}}, "grabbed": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 1}, "Disapparated": {"_count": 1}}, "eagerly": {"_count": 1, "wagged": {"_count": 1}}, "cutting": {"_count": 1, "into": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "Gryffindor": {"_count": 1}}, "dangled": {"_count": 1, "and": {"_count": 1}}, "clanking": {"_count": 1, "": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "open": {"_count": 1, "Harry": {"_count": 1}}, "onto": {"_count": 4, "her": {"_count": 3}, "the": {"_count": 1}}, "shut": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "before": {"_count": 2, "leaving": {"_count": 1}, "they": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "had": {"_count": 1, "slid": {"_count": 1}}, "withdrew": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 2, "more": {"_count": 2}}, "more": {"_count": 1, "securely": {"_count": 1}}, "seized": {"_count": 1, "Siriuss": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "pay": {"_count": 1}, "Griphook": {"_count": 1}}, "reflecting": {"_count": 1, "that": {"_count": 1}}, "without": {"_count": 1, "thanking": {"_count": 1}}, "looking": {"_count": 1, "sour": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "object": {"_count": 1}}, "a": {"_count": 2, "small": {"_count": 1}, "little": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "within": {"_count": 1, "a": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "she": {"_count": 1, "kept": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "aside": {"_count": 1, "and": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "containing": {"_count": 1, "all": {"_count": 1}}, "then": {"_count": 1, "climbed": {"_count": 1}}, "still": {"_count": 1, "jingling": {"_count": 1}}, "rummaged": {"_count": 1, "for": {"_count": 1}}, "waved": {"_count": 1, "her": {"_count": 1}}}, "caught": {"_count": 341, "a": {"_count": 20, "few": {"_count": 2}, "glimpse": {"_count": 12}, "whiff": {"_count": 1}, "phrase": {"_count": 1}, "brief": {"_count": 1}, "sudden": {"_count": 1}, "powerful": {"_count": 1}, "little": {"_count": 1}}, "him": {"_count": 22, "in": {"_count": 2}, "sharply": {"_count": 1}, "": {"_count": 6}, "then": {"_count": 1}, "and": {"_count": 3}, "around": {"_count": 3}, "coming": {"_count": 1}, "at": {"_count": 1}, "snogging": {"_count": 1}, "by": {"_count": 1}, "yets": {"_count": 1}, "I": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 14}, "?": {"_count": 2}, "!": {"_count": 1}}, "his": {"_count": 12, "eye": {"_count": 7}, "mothers": {"_count": 4}, "stunned": {"_count": 1}}, "every": {"_count": 2, "word": {"_count": 2}}, "Seamuss": {"_count": 2, "eye": {"_count": 1}, "expression": {"_count": 1}}, "Ron": {"_count": 1, "prodding": {"_count": 1}}, "it": {"_count": 27, "just": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 6}, "tightly": {"_count": 1}, "again": {"_count": 2}, "TROY": {"_count": 1}, "in": {"_count": 2}, "would": {"_count": 1}, "looking": {"_count": 1}, "by": {"_count": 1}, "the": {"_count": 1}, "full": {"_count": 1}, "up": {"_count": 1}, "sometimes": {"_count": 1}, "around": {"_count": 1}, "was": {"_count": 1}}, "sight": {"_count": 31, "of": {"_count": 31}}, "that": {"_count": 1, "thing": {"_count": 1}}, "and": {"_count": 7, "youre": {"_count": 1}, "stuffed": {"_count": 1}, "punished": {"_count": 1}, "sent": {"_count": 1}, "if": {"_count": 1}, "killed": {"_count": 1}, "solidified": {"_count": 1}}, "by": {"_count": 11, "Filch": {"_count": 1}, "a": {"_count": 2}, "Johnson": {"_count": 1}, "surprise": {"_count": 1}, "Apollyon": {"_count": 1}, "Professor": {"_count": 1}, "Katie": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}, "something": {"_count": 1}}, "up": {"_count": 28, "with": {"_count": 18}, "in": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 4}, "her": {"_count": 1}, "the": {"_count": 2}, "Hermione": {"_count": 1}}, "Ill": {"_count": 1, "never": {"_count": 1}}, "them": {"_count": 7, "": {"_count": 2}, "all": {"_count": 1}, "turning": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "Bill": {"_count": 1}}, "at": {"_count": 5, "once": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "last": {"_count": 1}, "Harrys": {"_count": 1}}, "so": {"_count": 3, "it": {"_count": 1}, "quickly": {"_count": 1}, "many": {"_count": 1}}, "Snapes": {"_count": 1, "eye": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 1}, "two": {"_count": 1}, "up": {"_count": 1}}, "Nevilles": {"_count": 1, "eye": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 4, "in": {"_count": 1}, "just": {"_count": 1}, "thinking": {"_count": 1}, "quickly": {"_count": 1}}, "twice": {"_count": 1, "": {"_count": 1}}, "Quirrell": {"_count": 1, "by": {"_count": 1}}, "Harrys": {"_count": 9, "eye": {"_count": 8}, "attention": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 30, "Hogwarts": {"_count": 1}, "acrid": {"_count": 1}, "person": {"_count": 1}, "wrong": {"_count": 1}, "Heir": {"_count": 1}, "culprit": {"_count": 1}, "Snitch": {"_count": 4}, "hem": {"_count": 1}, "green": {"_count": 1}, "Robertses": {"_count": 1}, "piece": {"_count": 1}, "light": {"_count": 1}, "Death": {"_count": 1}, "dementor": {"_count": 1}, "sound": {"_count": 1}, "Quaffle": {"_count": 1}, "houseelf": {"_count": 1}, "criminal": {"_count": 1}, "brain": {"_count": 1}, "first": {"_count": 1}, "words": {"_count": 1}, "gnome": {"_count": 1}, "crystal": {"_count": 1}, "whole": {"_count": 1}, "fish": {"_count": 1}, "glint": {"_count": 1}, "wand": {"_count": 1}}, "Cornish": {"_count": 1, "pixies": {"_count": 1}}, "fire": {"_count": 4, "To": {"_count": 1}, "": {"_count": 1}, "she": {"_count": 1}, "Marietta": {"_count": 1}}, "in": {"_count": 8, "a": {"_count": 2}, "fact": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}, "my": {"_count": 1}, "wrongdoing": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "soon": {"_count": 1, "he": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "Harry": {"_count": 6, "": {"_count": 1}, "he": {"_count": 1}, "hard": {"_count": 1}, "instead": {"_count": 1}, "examined": {"_count": 1}, "Potter": {"_count": 1}}, "no": {"_count": 1, "less": {"_count": 1}}, "Neville": {"_count": 1, "by": {"_count": 1}}, "Rons": {"_count": 3, "eye": {"_count": 3}}, "some": {"_count": 2, "this": {"_count": 1}, "pathetic": {"_count": 1}}, "words": {"_count": 1, "like": {"_count": 1}}, "her": {"_count": 8, "were": {"_count": 1}, "before": {"_count": 1}, "on": {"_count": 1}, "breath": {"_count": 1}, "": {"_count": 1}, "eye": {"_count": 1}, "just": {"_count": 1}, "sisters": {"_count": 1}}, "Charlies": {"_count": 1, "with": {"_count": 1}}, "snatches": {"_count": 1, "of": {"_count": 1}}, "redhanded": {"_count": 1, "elf": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "someone": {"_count": 1, "wouldnt": {"_count": 1}}, "mainly": {"_count": 1, "": {"_count": 1}}, "Colin": {"_count": 1, "Creeveys": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "last": {"_count": 1}}, "was": {"_count": 1, "something": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "Karkaroff": {"_count": 1, "": {"_count": 1}}, "smuggling": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "with": {"_count": 1, "a": {"_count": 1}}, "shortly": {"_count": 2, "after": {"_count": 2}}, "passing": {"_count": 1, "information": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "staring": {"_count": 1, "this": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Sirius": {"_count": 1, "went": {"_count": 1}}, "Snuffles": {"_count": 1, "": {"_count": 1}}, "unawares": {"_count": 1, "felt": {"_count": 1}}, "earlier": {"_count": 1, "was": {"_count": 1}}, "selling": {"_count": 1, "biting": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "only": {"_count": 1, "glimpses": {"_count": 1}}, "trespassing": {"_count": 1, "in": {"_count": 1}}, "what": {"_count": 1, "Harry": {"_count": 1}}, "hold": {"_count": 5, "of": {"_count": 5}}, "each": {"_count": 1, "others": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "blurred": {"_count": 1, "glimpses": {"_count": 1}}, "wouldn": {"_count": 1, "they": {"_count": 1}}, "on": {"_count": 1, "something": {"_count": 1}}, "Hermiones": {"_count": 1, "eye": {"_count": 1}}, "Ginnys": {"_count": 1, "eye": {"_count": 1}}, "having": {"_count": 1, "contact": {"_count": 1}}, "nearly": {"_count": 1, "enough": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "releasing": {"_count": 1, "a": {"_count": 1}}, "Petunia": {"_count": 1, "on": {"_count": 1}}}, "words": {"_count": 334, "of": {"_count": 15, "what": {"_count": 2}, "comfort": {"_count": 4}, "Messrs": {"_count": 1}, "explanation": {"_count": 1}, "encouragement": {"_count": 1}, "caution": {"_count": 2}, "Uncle": {"_count": 1}, "welcome": {"_count": 1}, "it": {"_count": 1}, "which": {"_count": 1}}, "got": {"_count": 1, "lost": {"_count": 1}}, "came": {"_count": 6, "out": {"_count": 4}, "just": {"_count": 1}, "without": {"_count": 1}}, "engraved": {"_count": 2, "upon": {"_count": 2}}, "": {"_count": 58, ".": {"_count": 54}, "?": {"_count": 2}, "!": {"_count": 2}}, "Platform": {"_count": 1, "Nine": {"_count": 1}}, "now": {"_count": 3, "that": {"_count": 1}, "cut": {"_count": 1}, "etched": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 4}, "old": {"_count": 1}}, "properly": {"_count": 1, "is": {"_count": 1}}, "Hermione": {"_count": 3, "seized": {"_count": 1}, "just": {"_count": 1}, "was": {"_count": 1}}, "Your": {"_count": 1, "father": {"_count": 1}}, "in": {"_count": 4, "languages": {"_count": 1}, "Siriuss": {"_count": 1}, "weeks": {"_count": 1}, "a": {"_count": 1}}, "Its": {"_count": 1, "hatching": {"_count": 1}}, "that": {"_count": 8, "this": {"_count": 1}, "proclaimed": {"_count": 1}, "each": {"_count": 1}, "had": {"_count": 2}, "did": {"_count": 1}, "they": {"_count": 1}, "Voldemort": {"_count": 1}}, "a": {"_count": 2, "knight": {"_count": 1}, "chill": {"_count": 1}}, "were": {"_count": 19, "drowned": {"_count": 7}, "cut": {"_count": 2}, "hardly": {"_count": 2}, "no": {"_count": 2}, "barely": {"_count": 1}, "repeated": {"_count": 1}, "greeted": {"_count": 1}, "out": {"_count": 1}, "inaudible": {"_count": 1}, "forced": {"_count": 1}}, "under": {"_count": 4, "his": {"_count": 4}}, "Gilderoy": {"_count": 1, "Lockharts": {"_count": 1}}, "Nimbus": {"_count": 1, "Two": {"_count": 1}}, "SIR": {"_count": 1, "NICHOLAS": {"_count": 1}}, "had": {"_count": 13, "been": {"_count": 2}, "barely": {"_count": 1}, "failed": {"_count": 1}, "hardly": {"_count": 1}, "a": {"_count": 2}, "certainly": {"_count": 1}, "appeared": {"_count": 2}, "escaped": {"_count": 1}, "left": {"_count": 1}, "sounded": {"_count": 1}}, "still": {"_count": 2, "gleamed": {"_count": 1}, "resounding": {"_count": 1}}, "wouldnt": {"_count": 1, "come": {"_count": 1}}, "shone": {"_count": 1, "momentarily": {"_count": 1}}, "Harry": {"_count": 5, "had": {"_count": 2}, "couldnt": {"_count": 2}, "remembered": {"_count": 1}}, "too": {"_count": 1, "faded": {"_count": 1}}, "forming": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 8, "himself": {"_count": 1}, "break": {"_count": 1}, "say": {"_count": 1}, "the": {"_count": 2}, "describe": {"_count": 1}, "tell": {"_count": 1}, "reassure": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 12, "said": {"_count": 1}, "scrambled": {"_count": 1}, "was": {"_count": 2}, "couldnt": {"_count": 1}, "had": {"_count": 4}, "staggered": {"_count": 1}, "could": {"_count": 1}, "did": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "properly": {"_count": 1}}, "werent": {"_count": 1, "what": {"_count": 1}}, "tom": {"_count": 1, "marvolo": {"_count": 1}}, "Dumbledore": {"_count": 1, "went": {"_count": 1}}, "with": {"_count": 8, "Harry": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}, "many": {"_count": 1}}, "stamped": {"_count": 1, "across": {"_count": 1}}, "carefully": {"_count": 1, "itll": {"_count": 1}}, "\u2018Hes": {"_count": 1, "at": {"_count": 1}}, "both": {"_count": 1, "Harry": {"_count": 1}}, "except": {"_count": 1, "to": {"_count": 1}}, "together": {"_count": 2, "said": {"_count": 1}, "but": {"_count": 1}}, "Mount": {"_count": 1, "your": {"_count": 1}}, "heard": {"_count": 1, "them": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "appeared": {"_count": 3, "on": {"_count": 2}, "to": {"_count": 1}}, "jolted": {"_count": 1, "Harry": {"_count": 1}}, "like": {"_count": 3, "farfetched": {"_count": 1}, "wizard": {"_count": 1}, "Dung": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "tumbling": {"_count": 2, "from": {"_count": 1}, "over": {"_count": 1}}, "the": {"_count": 5, "thing": {"_count": 1}, "quill": {"_count": 1}, "witch": {"_count": 1}, "usual": {"_count": 1}, "fragment": {"_count": 1}}, "sounded": {"_count": 1, "stupid": {"_count": 1}}, "send": {"_count": 1, "us": {"_count": 1}}, "they": {"_count": 4, "considered": {"_count": 1}, "had": {"_count": 1}, "stand": {"_count": 1}, "were": {"_count": 1}}, "HA": {"_count": 1, "HA": {"_count": 1}}, "HEE": {"_count": 1, "HEE": {"_count": 1}}, "an": {"_count": 1, "incantation": {"_count": 1}}, "and": {"_count": 6, "the": {"_count": 1}, "I": {"_count": 1}, "then": {"_count": 2}, "a": {"_count": 1}, "Harry": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "Fred": {"_count": 1, "Weasley": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 2}, "well": {"_count": 1}}, "Winky": {"_count": 1, "clapped": {"_count": 1}}, "about": {"_count": 2, "Krum": {"_count": 1}, "him": {"_count": 1}}, "strong": {"_count": 1, "enough": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}, "could": {"_count": 4, "express": {"_count": 1}, "not": {"_count": 2}, "ever": {"_count": 1}}, "But": {"_count": 1, "I": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "three": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 2}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}, "however": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 3, "like": {"_count": 1}, "must": {"_count": 1}, "acted": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "carved": {"_count": 1, "into": {"_count": 1}}, "Umbridge": {"_count": 1, "had": {"_count": 1}}, "spluttered": {"_count": 1, "from": {"_count": 1}}, "very": {"_count": 1, "carefully": {"_count": 1}}, "coming": {"_count": 1, "out": {"_count": 1}}, "etched": {"_count": 3, "onto": {"_count": 1}, "into": {"_count": 1}, "upon": {"_count": 1}}, "opened": {"_count": 1, "up": {"_count": 1}}, "seemed": {"_count": 4, "to": {"_count": 3}, "wrenched": {"_count": 1}}, "DANGEROUS": {"_count": 1, "DAI": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "HARRY": {"_count": 1, "POTTER": {"_count": 1}}, "shes": {"_count": 1, "going": {"_count": 1}}, "deeply": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 1, "won": {"_count": 1}}, "echoed": {"_count": 1, "all": {"_count": 1}}, "wash": {"_count": 1, "over": {"_count": 1}}, "from": {"_count": 1, "what": {"_count": 1}}, "quite": {"_count": 1, "enough": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "doesnt": {"_count": 1}}, "ISSUED": {"_count": 1, "ON": {"_count": 1}}, "shocked": {"_count": 1, "Slughorn": {"_count": 1}}, "she": {"_count": 1, "turned": {"_count": 1}}, "Accio": {"_count": 1, "Wand": {"_count": 1}}, "unworthy": {"_count": 1, "of": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 3, "fear": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "Krum": {"_count": 1, "and": {"_count": 1}}, "My": {"_count": 1, "Sweetheart": {"_count": 1}}, "\u2018My": {"_count": 1, "Sweetheart": {"_count": 1}}, "aloud": {"_count": 1, "": {"_count": 1}}, "finish": {"_count": 1, "writing": {"_count": 1}}, "For": {"_count": 1, "Enemies": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "did": {"_count": 1, "nothing": {"_count": 1}}, "floated": {"_count": 1, "back": {"_count": 1}}, "nitwit": {"_count": 1, "oddment": {"_count": 1}}, "seemingly": {"_count": 1, "in": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "important": {"_count": 1, "enough": {"_count": 1}}, "written": {"_count": 1, "in": {"_count": 1}}, "vanished": {"_count": 1, "again": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "words": {"_count": 1, "about": {"_count": 1}}, "his": {"_count": 1, "mind": {"_count": 1}}, "The": {"_count": 1, "Dumbledore": {"_count": 1}}, "MAGIC": {"_count": 1, "IS": {"_count": 1}}, "undesirable": {"_count": 1, "no": {"_count": 1}}, "pierced": {"_count": 1, "Harry": {"_count": 1}}, "KENDRA": {"_count": 1, "DUMBLEDORE": {"_count": 1}}, "meant": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 1, "as": {"_count": 1}}, "scribbles": {"_count": 1, "had": {"_count": 1}}, "\u2018Deathly": {"_count": 1, "Hallows": {"_count": 1}}, "UNDESIRABLE": {"_count": 2, "NUMBER": {"_count": 2}}, "Rapier": {"_count": 1, "said": {"_count": 1}}, "wiped": {"_count": 1, "the": {"_count": 1}}}, "saying": {"_count": 333, "": {"_count": 52, ".": {"_count": 42}, "?": {"_count": 8}, "!": {"_count": 2}}, "YouKnowWho": {"_count": 1, "": {"_count": 1}}, "Voldemorts": {"_count": 2, "name": {"_count": 2}}, "she": {"_count": 4, "was": {"_count": 2}, "pressed": {"_count": 1}, "probably": {"_count": 1}}, "he": {"_count": 9, "tried": {"_count": 1}, "was": {"_count": 2}, "wished": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "added": {"_count": 1}, "fell": {"_count": 1}, "can": {"_count": 1}}, "that": {"_count": 22, "when": {"_count": 1}, "hed": {"_count": 1}, "some": {"_count": 1}, "James": {"_count": 1}, "said": {"_count": 1}, "Saturn": {"_count": 1}, "he": {"_count": 3}, "they": {"_count": 2}, "Hermione": {"_count": 1}, "because": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "spell": {"_count": 1}, "Snape": {"_count": 1}, "shed": {"_count": 1}, "but": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "in": {"_count": 5, "hushed": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 1}, "an": {"_count": 1}}, "where": {"_count": 1, "did": {"_count": 1}}, "loudly": {"_count": 5, "See": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}, "Well": {"_count": 1}}, "The": {"_count": 1, "usual": {"_count": 1}}, "Dragon": {"_count": 1, "liver": {"_count": 1}}, "Eeylops": {"_count": 1, "Owl": {"_count": 1}}, "Gran": {"_count": 1, "Ive": {"_count": 1}}, "something": {"_count": 6, "about": {"_count": 1}, "": {"_count": 3}, "as": {"_count": 2}}, "the": {"_count": 12, "name": {"_count": 4}, "magic": {"_count": 1}, "other": {"_count": 1}, "first": {"_count": 1}, "Burrow": {"_count": 1}, "Vanishing": {"_count": 1}, "words": {"_count": 1}, "incantation": {"_count": 1}, "thing": {"_count": 1}}, "Voldemort": {"_count": 1, "without": {"_count": 1}}, "all": {"_count": 1, "down": {"_count": 1}}, "Forgive": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 9, "few": {"_count": 1}, "word": {"_count": 5}, "thoroughly": {"_count": 1}, "steaming": {"_count": 1}, "bit": {"_count": 1}}, "Back": {"_count": 1, "Fang": {"_count": 1}}, "Bet": {"_count": 1, "you": {"_count": 1}}, "it": {"_count": 10, "wrong": {"_count": 1}, "for": {"_count": 2}, "to": {"_count": 2}, "": {"_count": 2}, "looked": {"_count": 1}, "aloud": {"_count": 1}, "youre": {"_count": 1}}, "Chaser": {"_count": 1, "Pucey": {"_count": 1}}, "Ron": {"_count": 1, "needed": {"_count": 1}}, "hed": {"_count": 3, "never": {"_count": 1}, "been": {"_count": 1}, "believe": {"_count": 1}}, "wed": {"_count": 1, "come": {"_count": 1}}, "RONALDS": {"_count": 1, "ROOM": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "Touch": {"_count": 1, "nothing": {"_count": 1}}, "Calmly": {"_count": 1, "please": {"_count": 1}}, "SECOND": {"_count": 1, "YEARS": {"_count": 1}}, "your": {"_count": 2, "name": {"_count": 1}, "scar": {"_count": 1}}, "Mmm": {"_count": 1, "and": {"_count": 1}}, "gleefully": {"_count": 1, "to": {"_count": 1}}, "saying": {"_count": 1, "how": {"_count": 1}}, "how": {"_count": 2, "nice": {"_count": 1}, "boring": {"_count": 1}}, "youre": {"_count": 1, "But": {"_count": 1}}, "about": {"_count": 6, "you": {"_count": 1}, "him": {"_count": 3}, "Scrimgeour": {"_count": 1}, "Rita": {"_count": 1}}, "said": {"_count": 5, "Lockhart": {"_count": 1}, "Fred": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "Bill": {"_count": 1}}, "so": {"_count": 3, "it": {"_count": 1}, "my": {"_count": 1}, "for": {"_count": 1}}, "Whoops": {"_count": 1, "my": {"_count": 1}}, "anything": {"_count": 3, "no": {"_count": 1}, "like": {"_count": 1}, "said": {"_count": 1}}, "met": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 5, "told": {"_count": 2}, "believe": {"_count": 1}, "knew": {"_count": 1}, "think": {"_count": 1}}, "just": {"_count": 1, "last": {"_count": 1}}, "you": {"_count": 6, "were": {"_count": 1}, "reckon": {"_count": 1}, "won": {"_count": 1}, "have": {"_count": 2}, "would": {"_count": 1}}, "Amazing": {"_count": 1, "": {"_count": 1}}, "nothing": {"_count": 1, "against": {"_count": 1}}, "heatedly": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 3, "Potter": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "tearfully": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 13, "the": {"_count": 1}, "Mr": {"_count": 1}, "him": {"_count": 1}, "guffaws": {"_count": 1}, "Tonks": {"_count": 1}, "Professor": {"_count": 2}, "Ron": {"_count": 2}, "his": {"_count": 2}, "them": {"_count": 1}, "each": {"_count": 1}}, "Okay": {"_count": 1, "its": {"_count": 1}}, "things": {"_count": 4, "like": {"_count": 4}}, "pompously": {"_count": 1, "": {"_count": 1}}, "anyway": {"_count": 1, "so": {"_count": 1}}, "were": {"_count": 1, "wasting": {"_count": 1}}, "me": {"_count": 1, "but": {"_count": 1}}, "stubbornly": {"_count": 1, "": {"_count": 1}}, "DANGER": {"_count": 1, "DO": {"_count": 1}}, "my": {"_count": 3, "dear": {"_count": 2}, "sisters": {"_count": 1}}, "\u2018spew": {"_count": 1, "do": {"_count": 1}}, "now": {"_count": 1, "as": {"_count": 1}}, "hes": {"_count": 2, "got": {"_count": 1}, "ill": {"_count": 1}}, "gloomily": {"_count": 1, "to": {"_count": 1}}, "fiercely": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "zat": {"_count": 1, "zis": {"_count": 1}}, "was": {"_count": 2, "barely": {"_count": 1}, "not": {"_count": 1}}, "those": {"_count": 1, "last": {"_count": 1}}, "an": {"_count": 1, "awful": {"_count": 1}}, "Karkaroff": {"_count": 1, "put": {"_count": 1}}, "this": {"_count": 4, "to": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "grumpily": {"_count": 1, "as": {"_count": 1}}, "Sorry": {"_count": 1, "I": {"_count": 1}}, "good": {"_count": 2, "night": {"_count": 1}, "bye": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "then": {"_count": 1}, "Im": {"_count": 1}}, "whoever": {"_count": 1, "conjured": {"_count": 1}}, "stuff": {"_count": 1, "was": {"_count": 1}}, "Filth": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "farewells": {"_count": 1}}, "youd": {"_count": 1, "do": {"_count": 1}}, "YouKnow": {"_count": 2, "Whos": {"_count": 2}}, "Beauties": {"_count": 1, "aren": {"_count": 1}}, "Hestias": {"_count": 1, "just": {"_count": 1}}, "SECURITY": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "heart": {"_count": 1}}, "Dumbledore": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 3, "are": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}}, "Quidditch": {"_count": 1, "tryouts": {"_count": 1}}, "You": {"_count": 1, "Know": {"_count": 1}}, "today": {"_count": 2, "we": {"_count": 1}, "he": {"_count": 1}}, "anyone": {"_count": 1, "who": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "nobody": {"_count": 1, "in": {"_count": 1}}, "Dont": {"_count": 1, "be": {"_count": 1}}, "while": {"_count": 1, "talking": {"_count": 1}}, "shed": {"_count": 1, "rather": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "Potter": {"_count": 1, "Professor": {"_count": 1}}, "Id": {"_count": 1, "wasted": {"_count": 1}}, "Vol": {"_count": 1, "Shut": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "Umbridge": {"_count": 1, "was": {"_count": 1}}, "goodbye": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Narcissa": {"_count": 1, "": {"_count": 1}}, "angrily": {"_count": 1, "Cant": {"_count": 1}}, "Phlegm": {"_count": 1, "I": {"_count": 1}}, "anxiously": {"_count": 1, "standing": {"_count": 1}}, "much": {"_count": 1, "seeing": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "curtly": {"_count": 1, "Very": {"_count": 1}}, "however": {"_count": 1, "the": {"_count": 1}}, "incantations": {"_count": 1, "aloud": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "Look": {"_count": 1, "didnt": {"_count": 1}}, "Episkey": {"_count": 1, "": {"_count": 1}}, "blithely": {"_count": 1, "to": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "slowly": {"_count": 1, "Sometimes": {"_count": 1}}, "only": {"_count": 1, "one": {"_count": 1}}, "as": {"_count": 4, "he": {"_count": 2}, "a": {"_count": 1}, "she": {"_count": 1}}, "courteously": {"_count": 1, "most": {"_count": 1}}, "toffee": {"_count": 1, "eclairs": {"_count": 1}}, "Yes": {"_count": 1, "I": {"_count": 1}}, "Very": {"_count": 1, "good": {"_count": 1}}, "\u2018Mudblood": {"_count": 1, "when": {"_count": 1}}, "continued": {"_count": 1, "Voldemort": {"_count": 1}}, "Oh": {"_count": 1, "you": {"_count": 1}}, "\u2018Gregorovitch": {"_count": 1, "": {"_count": 1}}, "Its": {"_count": 1, "all": {"_count": 1}}, "Wakanda": {"_count": 1, "but": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "We": {"_count": 1, "thought": {"_count": 1}}, "words": {"_count": 1, "he": {"_count": 1}}, "\u2018the": {"_count": 1, "Mudblood": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "Like": {"_count": 1, "I": {"_count": 1}}, "youve": {"_count": 1, "just": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}}, "thats": {"_count": 451, "right": {"_count": 14, "thats": {"_count": 1}, "said": {"_count": 5}, "": {"_count": 2}, "smarm": {"_count": 1}, "lovely": {"_count": 1}, "whenever": {"_count": 1}, "girl": {"_count": 1}, "defend": {"_count": 1}, "I": {"_count": 1}}, "what": {"_count": 42, "I": {"_count": 5}, "you": {"_count": 3}, "it": {"_count": 7}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "matters": {"_count": 1}, "McGonagall": {"_count": 1}, "": {"_count": 1}, "she": {"_count": 1}, "they": {"_count": 1}, "youre": {"_count": 5}, "Diggory": {"_count": 1}, "Dumbledore": {"_count": 1}, "Id": {"_count": 2}, "we": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}, "made": {"_count": 1}, "giants": {"_count": 1}, "Bellatrix": {"_count": 1}, "he": {"_count": 2}, "my": {"_count": 1}, "well": {"_count": 1}, "did": {"_count": 1}}, "no": {"_count": 4, "reason": {"_count": 2}, "mystery": {"_count": 1}, "real": {"_count": 1}}, "why": {"_count": 38, "hes": {"_count": 5}, "yer": {"_count": 1}, "its": {"_count": 1}, "he": {"_count": 11}, "youre": {"_count": 1}, "Snape": {"_count": 1}, "you": {"_count": 3}, "we": {"_count": 2}, "Dumbledore": {"_count": 1}, "Bagman": {"_count": 1}, "weve": {"_count": 1}, "Kreacher": {"_count": 1}, "she": {"_count": 1}, "theyve": {"_count": 1}, "said": {"_count": 1}, "they": {"_count": 1}, "Dumbledores": {"_count": 1}, "everything": {"_count": 1}, "I": {"_count": 1}, "no": {"_count": 1}, "theyll": {"_count": 1}}, "that": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "boy": {"_count": 1}, "said": {"_count": 1}, "plan": {"_count": 1}}, "best": {"_count": 2, "": {"_count": 1}, "left": {"_count": 1}}, "a": {"_count": 22, "goblin": {"_count": 1}, "real": {"_count": 1}, "reward": {"_count": 1}, "very": {"_count": 1}, "great": {"_count": 1}, "start": {"_count": 1}, "powerful": {"_count": 1}, "Bludger": {"_count": 2}, "fair": {"_count": 1}, "houseelf": {"_count": 1}, "bit": {"_count": 2}, "major": {"_count": 1}, "record": {"_count": 1}, "good": {"_count": 2}, "promise": {"_count": 1}, "big": {"_count": 2}, "little": {"_count": 1}, "really": {"_count": 1}}, "not": {"_count": 23, "a": {"_count": 3}, "the": {"_count": 4}, "why": {"_count": 1}, "until": {"_count": 1}, "my": {"_count": 1}, "cheek": {"_count": 1}, "nearly": {"_count": 1}, "to": {"_count": 1}, "bad": {"_count": 1}, "for": {"_count": 1}, "all": {"_count": 1}, "very": {"_count": 1}, "fixed": {"_count": 1}, "what": {"_count": 3}, "mine": {"_count": 1}, "good": {"_count": 1}}, "where": {"_count": 10, "": {"_count": 1}, "YouKnowWho": {"_count": 1}, "you": {"_count": 2}, "were": {"_count": 2}, "we": {"_count": 1}, "youre": {"_count": 1}, "the": {"_count": 2}}, "always": {"_count": 3, "hard": {"_count": 1}, "unlocked": {"_count": 1}, "worth": {"_count": 1}}, "very": {"_count": 4, "important": {"_count": 2}, "very": {"_count": 1}, "Dark": {"_count": 1}}, "whats": {"_count": 1, "odd": {"_count": 1}}, "interesting": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "all": {"_count": 37, "talk": {"_count": 1}, "said": {"_count": 7}, "": {"_count": 13}, "weve": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "is": {"_count": 1}, "It": {"_count": 2}, "Harry": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}, "right": {"_count": 3}, "very": {"_count": 2}, "Potter": {"_count": 1}, "he": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 8, "any": {"_count": 1}, "an": {"_count": 1}, "then": {"_count": 1}, "is": {"_count": 2}, "said": {"_count": 1}, "get": {"_count": 1}, "": {"_count": 1}}, "Chaser": {"_count": 1, "Katie": {"_count": 1}}, "Adrian": {"_count": 1, "Pucey": {"_count": 1}}, "somethin": {"_count": 1, "said": {"_count": 1}}, "between": {"_count": 2, "Professor": {"_count": 1}, "us": {"_count": 1}}, "saying": {"_count": 2, "something": {"_count": 2}}, "like": {"_count": 2, "a": {"_count": 1}, "\u2018I": {"_count": 1}}, "something": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "nothing": {"_count": 3, "to": {"_count": 3}}, "how": {"_count": 16, "it": {"_count": 3}, "we": {"_count": 3}, "Ive": {"_count": 1}, "shes": {"_count": 1}, "you": {"_count": 3}, "I": {"_count": 1}, "far": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 2}}, "written": {"_count": 1, "in": {"_count": 1}}, "one": {"_count": 2, "o": {"_count": 1}, "more": {"_count": 1}}, "terrible": {"_count": 1, "you": {"_count": 1}}, "Hermione": {"_count": 1, "she": {"_count": 1}}, "keeping": {"_count": 1, "me": {"_count": 1}}, "the": {"_count": 28, "second": {"_count": 4}, "Committee": {"_count": 1}, "biggish": {"_count": 1}, "mark": {"_count": 2}, "old": {"_count": 1}, "ticket": {"_count": 1}, "first": {"_count": 2}, "heading": {"_count": 1}, "red": {"_count": 1}, "one": {"_count": 3}, "best": {"_count": 1}, "Wizard": {"_count": 1}, "key": {"_count": 1}, "only": {"_count": 1}, "last": {"_count": 2}, "plan": {"_count": 1}, "Ministrys": {"_count": 1}, "Imperius": {"_count": 1}, "worst": {"_count": 1}, "Weasley": {"_count": 1}}, "good": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "impossible": {"_count": 2, "Harry": {"_count": 2}}, "definitely": {"_count": 2, "not": {"_count": 1}, "where": {"_count": 1}}, "only": {"_count": 2, "the": {"_count": 1}, "one": {"_count": 1}}, "better": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "ever": {"_count": 1, "happened": {"_count": 1}}, "got": {"_count": 5, "him": {"_count": 1}, "bigger": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "any": {"_count": 1}}, "everything": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "an": {"_count": 3, "interesting": {"_count": 1}, "idea": {"_count": 1}, "Erumpent": {"_count": 1}}, "enough": {"_count": 4, "said": {"_count": 2}, "": {"_count": 2}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "nice": {"_count": 2, "said": {"_count": 1}, "isnt": {"_count": 1}}, "thats": {"_count": 2, "bad": {"_count": 1}, "it": {"_count": 1}}, "bad": {"_count": 1, "he": {"_count": 1}}, "my": {"_count": 4, "final": {"_count": 1}, "FoeGlass": {"_count": 1}, "wife": {"_count": 1}, "point": {"_count": 1}}, "okay": {"_count": 3, "then": {"_count": 2}, "is": {"_count": 1}}, "disgusting": {"_count": 2, "This": {"_count": 1}, "dont": {"_count": 1}}, "true": {"_count": 6, "said": {"_count": 3}, "": {"_count": 3}}, "hardly": {"_count": 2, "something": {"_count": 1}, "the": {"_count": 1}}, "procedure": {"_count": 1, "Macnairs": {"_count": 1}}, "really": {"_count": 5, "serious": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 1}, "all": {"_count": 1}, "why": {"_count": 1}}, "broken": {"_count": 1, "d": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "miles": {"_count": 1, "away": {"_count": 1}}, "Bode": {"_count": 1, "and": {"_count": 1}}, "Fred": {"_count": 1, "Bill": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "clause": {"_count": 1, "three": {"_count": 1}}, "mine": {"_count": 2, "": {"_count": 1}, "A": {"_count": 1}}, "their": {"_count": 1, "idea": {"_count": 1}}, "more": {"_count": 2, "like": {"_count": 1}, "than": {"_count": 1}}, "going": {"_count": 5, "on": {"_count": 4}, "downhill": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "lucky": {"_count": 1, "said": {"_count": 1}}, "affected": {"_count": 1, "you": {"_count": 1}}, "loads": {"_count": 1, "better": {"_count": 1}}, "illegal": {"_count": 2, "said": {"_count": 1}, "now": {"_count": 1}}, "his": {"_count": 1, "story": {"_count": 1}}, "Clunk": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "blackmail": {"_count": 1, "that": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Minerva": {"_count": 1, "McGonagalls": {"_count": 1}}, "news": {"_count": 1, "to": {"_count": 1}}, "been": {"_count": 3, "taught": {"_count": 1}, "happenin": {"_count": 1}, "written": {"_count": 1}}, "probably": {"_count": 2, "why": {"_count": 2}}, "wonderful": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "Emmeline": {"_count": 1, "Vance": {"_count": 1}}, "rubbish": {"_count": 2, "piped": {"_count": 1}, "snapped": {"_count": 1}}, "obvious": {"_count": 1, "why": {"_count": 1}}, "too": {"_count": 2, "big": {"_count": 1}, "dangerous": {"_count": 1}}, "her": {"_count": 1, "trouble": {"_count": 1}}, "exactly": {"_count": 2, "what": {"_count": 2}}, "as": {"_count": 2, "much": {"_count": 1}, "good": {"_count": 1}}, "put": {"_count": 1, "us": {"_count": 1}}, "just": {"_count": 5, "a": {"_count": 1}, "been": {"_count": 1}, "by": {"_count": 1}, "what": {"_count": 1}, "silly": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "N": {"_count": 1, "": {"_count": 1}}, "tennil": {"_count": 1, "to": {"_count": 1}}, "Montague": {"_count": 1, "with": {"_count": 1}}, "even": {"_count": 1, "without": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "settled": {"_count": 1, "then": {"_count": 1}}, "your": {"_count": 2, "job": {"_count": 1}, "lookout": {"_count": 1}}, "another": {"_count": 3, "thing": {"_count": 1}, "ten": {"_count": 1}, "small": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}, "fiftyfour": {"_count": 1, "": {"_count": 1}}, "fifty": {"_count": 1, "each": {"_count": 1}}, "likely": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 4, "say": {"_count": 3}, "be": {"_count": 1}}, "Gwenog": {"_count": 1, "Jones": {"_count": 1}}, "number": {"_count": 1, "ninety": {"_count": 1}}, "our": {"_count": 1, "stuff": {"_count": 1}}, "over": {"_count": 1, "muttered": {"_count": 1}}, "popular": {"_count": 1, "its": {"_count": 1}}, "three": {"_count": 1, "of": {"_count": 1}}, "because": {"_count": 1, "youve": {"_count": 1}}, "important": {"_count": 1, "": {"_count": 1}}, "partly": {"_count": 1, "why": {"_count": 1}}, "Smith": {"_count": 1, "of": {"_count": 1}}, "worth": {"_count": 1, "": {"_count": 1}}, "fer": {"_count": 1, "the": {"_count": 1}}, "whatll": {"_count": 1, "happen": {"_count": 1}}, "still": {"_count": 2, "in": {"_count": 1}, "likely": {"_count": 1}}, "way": {"_count": 1, "too": {"_count": 1}}, "odd": {"_count": 1, "enough": {"_count": 1}}, "revolting": {"_count": 1, "Ron": {"_count": 1}}, "Wizarding": {"_count": 1, "law": {"_count": 1}}, "upset": {"_count": 1, "you": {"_count": 1}}, "worrying": {"_count": 1, "really": {"_count": 1}}, "if": {"_count": 1, "theyre": {"_count": 1}}, "scary": {"_count": 1, "said": {"_count": 1}}, "pretty": {"_count": 1, "Dolores": {"_count": 1}}, "advisable": {"_count": 1, "whispered": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "completely": {"_count": 1, "ridiculous": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}, "Lee": {"_count": 2, "Jordan": {"_count": 1}, "Ron": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "Potter": {"_count": 1, "and": {"_count": 1}}, "two": {"_count": 1, "hundred": {"_count": 1}}, "much": {"_count": 1, "easier": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "funny": {"_count": 1, "What": {"_count": 1}}, "them": {"_count": 1, "Al": {"_count": 1}}, "little": {"_count": 1, "Scorpius": {"_count": 1}}}, "right": {"_count": 1478, "thats": {"_count": 2, "what": {"_count": 1}, "right": {"_count": 1}}, "she": {"_count": 9, "said": {"_count": 6}, "was": {"_count": 1}, "told": {"_count": 1}, "repeated": {"_count": 1}}, "Voldemort": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "of": {"_count": 12, "course": {"_count": 4}, "the": {"_count": 3}, "his": {"_count": 1}, "Wormtail": {"_count": 1}, "Andromedas": {"_count": 1}, "Fudge": {"_count": 2}}, "place": {"_count": 5, "said": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "before": {"_count": 4, "the": {"_count": 2}, "then": {"_count": 1}, "a": {"_count": 1}}, "thirtyseven": {"_count": 1, "then": {"_count": 1}}, "": {"_count": 272, "?": {"_count": 121}, ".": {"_count": 120}, "!": {"_count": 31}}, "then": {"_count": 22, "": {"_count": 10}, "Black": {"_count": 1}, "she": {"_count": 2}, "Fred": {"_count": 1}, "said": {"_count": 3}, "one": {"_count": 1}, "I": {"_count": 1}, "Snape": {"_count": 1}, "eh": {"_count": 1}, "he": {"_count": 1}}, "up": {"_count": 22, "close": {"_count": 3}, "to": {"_count": 13}, "you": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "ter": {"_count": 1}, "until": {"_count": 1}}, "around": {"_count": 6, "in": {"_count": 1}, "the": {"_count": 2}, "and": {"_count": 1}, "to": {"_count": 2}}, "behind": {"_count": 42, "him": {"_count": 11}, "his": {"_count": 1}, "them": {"_count": 7}, "Colin": {"_count": 1}, "her": {"_count": 6}, "Malfoy": {"_count": 1}, "Harry": {"_count": 5}, "the": {"_count": 2}, "us": {"_count": 2}, "a": {"_count": 1}, "Mr": {"_count": 1}, "you": {"_count": 1}, "Ron": {"_count": 1}, "Parvati": {"_count": 1}, "Snape": {"_count": 1}}, "into": {"_count": 25, "Uncle": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 5}, "him": {"_count": 3}, "it": {"_count": 1}, "Diagon": {"_count": 1}, "the": {"_count": 8}, "Cornelius": {"_count": 1}, "Blacks": {"_count": 1}, "Mrs": {"_count": 1}, "somebody": {"_count": 1}, "solid": {"_count": 1}}, "there": {"_count": 11, "sir": {"_count": 1}, "Harry": {"_count": 2}, "Scarhead": {"_count": 1}, "couldn": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}, "were": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 2}}, "person": {"_count": 3, "ter": {"_count": 1}, "": {"_count": 1}, "firstly": {"_count": 1}}, "down": {"_count": 13, "to": {"_count": 7}, "and": {"_count": 1}, "over": {"_count": 1}, "into": {"_count": 2}, "the": {"_count": 1}, "at": {"_count": 1}}, "famous": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 39, "mumbled": {"_count": 1}, "": {"_count": 21}, "Hermione": {"_count": 1}, "said": {"_count": 5}, "followed": {"_count": 1}, "thought": {"_count": 2}, "had": {"_count": 1}, "Id": {"_count": 1}, "found": {"_count": 1}, "dear": {"_count": 1}, "come": {"_count": 1}, "snatched": {"_count": 1}, "sped": {"_count": 1}, "cast": {"_count": 1}}, "weighing": {"_count": 1, "a": {"_count": 1}}, "right": {"_count": 2, "left": {"_count": 1}, "arm": {"_count": 1}}, "left": {"_count": 2, "middle": {"_count": 1}, "but": {"_count": 1}}, "length": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 11, "you": {"_count": 5}, "can": {"_count": 1}, "I": {"_count": 2}, "it": {"_count": 1}, "we": {"_count": 2}}, "well": {"_count": 4, "take": {"_count": 1}, "do": {"_count": 1}, "Id": {"_count": 1}, "have": {"_count": 1}}, "Percy": {"_count": 1, "you": {"_count": 1}}, "dear": {"_count": 3, "well": {"_count": 1}, "lets": {"_count": 1}, "": {"_count": 1}}, "keep": {"_count": 1, "your": {"_count": 1}}, "I": {"_count": 15, "only": {"_count": 1}, "dont": {"_count": 2}, "mean": {"_count": 2}, "wont": {"_count": 1}, "saw": {"_count": 1}, "didnt": {"_count": 1}, "was": {"_count": 2}, "think": {"_count": 2}, "wasnt": {"_count": 1}, "lied": {"_count": 1}, "forgot": {"_count": 1}}, "underneath": {"_count": 3, "the": {"_count": 2}, "Peeves": {"_count": 1}}, "in": {"_count": 50, "the": {"_count": 8}, "front": {"_count": 26}, "YouKnow": {"_count": 1}, "a": {"_count": 3}, "Lockharts": {"_count": 1}, "here": {"_count": 1}, "Voldemorts": {"_count": 1}, "thinking": {"_count": 4}, "with": {"_count": 1}, "saying": {"_count": 1}, "telling": {"_count": 1}, "Arithmancy": {"_count": 1}, "our": {"_count": 1}}, "the": {"_count": 8, "rest": {"_count": 1}, "Stones": {"_count": 1}, "something": {"_count": 1}, "sweetshops": {"_count": 1}, "idea": {"_count": 1}, "wizard": {"_count": 1}, "others": {"_count": 1}, "first": {"_count": 1}}, "cheered": {"_count": 1, "and": {"_count": 1}}, "next": {"_count": 10, "to": {"_count": 10}}, "away": {"_count": 8, "theres": {"_count": 1}, "": {"_count": 4}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}, "from": {"_count": 1}}, "direction": {"_count": 6, "but": {"_count": 1}, "": {"_count": 3}, "within": {"_count": 1}, "and": {"_count": 1}}, "to": {"_count": 45, "think": {"_count": 2}, "the": {"_count": 7}, "walk": {"_count": 1}, "face": {"_count": 1}, "Harry": {"_count": 1}, "know": {"_count": 5}, "decide": {"_count": 1}, "get": {"_count": 1}, "sack": {"_count": 1}, "be": {"_count": 2}, "protect": {"_count": 1}, "prowl": {"_count": 1}, "trust": {"_count": 1}, "wages": {"_count": 1}, "let": {"_count": 1}, "expect": {"_count": 1}, "present": {"_count": 1}, "confiscate": {"_count": 1}, "give": {"_count": 1}, "warn": {"_count": 1}, "suggest": {"_count": 1}, "eavesdrop": {"_count": 1}, "dismiss": {"_count": 1}, "appoint": {"_count": 1}, "a": {"_count": 1}, "hope": {"_count": 1}, "confide": {"_count": 1}, "do": {"_count": 2}, "teach": {"_count": 1}, "rule": {"_count": 1}, "my": {"_count": 1}, "carry": {"_count": 1}}, "hand": {"_count": 32, "over": {"_count": 1}, "": {"_count": 5}, "twitch": {"_count": 1}, "as": {"_count": 1}, "hesitated": {"_count": 1}, "side": {"_count": 1}, "one": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 2}, "which": {"_count": 1}, "had": {"_count": 1}, "cut": {"_count": 1}, "tried": {"_count": 1}, "opened": {"_count": 1}, "clenched": {"_count": 1}, "from": {"_count": 1}, "stretched": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 2}, "lay": {"_count": 1}, "in": {"_count": 1}, "stood": {"_count": 1}, "seemed": {"_count": 2}, "to": {"_count": 1}, "dangled": {"_count": 1}}, "but": {"_count": 12, "I": {"_count": 4}, "he": {"_count": 2}, "theyre": {"_count": 1}, "Dumbledore": {"_count": 1}, "why": {"_count": 1}, "was": {"_count": 1}, "Before": {"_count": 1}, "Ron": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 110, "Professor": {"_count": 4}, "Ron": {"_count": 18}, "Harry": {"_count": 31}, "Hermione": {"_count": 18}, "Malfoy": {"_count": 3}, "Hagrid": {"_count": 3}, "Mr": {"_count": 2}, "Percy": {"_count": 1}, "Moody": {"_count": 2}, "Sirius": {"_count": 3}, "Mrs": {"_count": 2}, "Fred": {"_count": 1}, "a": {"_count": 1}, "George": {"_count": 1}, "Umbridge": {"_count": 1}, "Neville": {"_count": 1}, "Dumbledore": {"_count": 7}, "Lavender": {"_count": 1}, "Luna": {"_count": 4}, "Ginny": {"_count": 1}, "Slughorn": {"_count": 1}, "Fenrir": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Xenophilius": {"_count": 1}, "Petunia": {"_count": 1}}, "it": {"_count": 10, "was": {"_count": 4}, "is": {"_count": 3}, "should": {"_count": 1}, "has": {"_count": 1}, "wasnt": {"_count": 1}}, "he": {"_count": 23, "snapped": {"_count": 1}, "only": {"_count": 1}, "heard": {"_count": 1}, "said": {"_count": 11}, "sneered": {"_count": 1}, "could": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 2}, "thought": {"_count": 1}, "turned": {"_count": 1}, "has": {"_count": 1}, "saw": {"_count": 1}}, "answers": {"_count": 1, "anyway": {"_count": 1}}, "all": {"_count": 17, "right": {"_count": 16}, "along": {"_count": 1}}, "thanks": {"_count": 4, "Ron": {"_count": 1}, "said": {"_count": 2}, "a": {"_count": 1}}, "at": {"_count": 27, "the": {"_count": 15}, "Harry": {"_count": 2}, "him": {"_count": 4}, "Harrys": {"_count": 1}, "Rons": {"_count": 1}, "us": {"_count": 1}, "himself": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}}, "through": {"_count": 20, "it": {"_count": 3}, "him": {"_count": 4}, "you": {"_count": 2}, "the": {"_count": 4}, "my": {"_count": 1}, "those": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 3}, "shop": {"_count": 1}}, "that": {"_count": 4, "mirror": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 1}}, "talk": {"_count": 1, "about": {"_count": 1}}, "Hermione": {"_count": 5, "": {"_count": 2}, "gave": {"_count": 1}, "Im": {"_count": 1}, "that": {"_count": 1}}, "and": {"_count": 28, "it": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "saw": {"_count": 1}, "limped": {"_count": 1}, "someone": {"_count": 1}, "hurried": {"_count": 1}, "hit": {"_count": 1}, "what": {"_count": 1}, "wrong": {"_count": 1}, "Sirius": {"_count": 1}, "received": {"_count": 1}, "almost": {"_count": 1}, "broke": {"_count": 1}, "says": {"_count": 1}, "four": {"_count": 1}, "began": {"_count": 1}, "smashed": {"_count": 1}, "walking": {"_count": 1}, "center": {"_count": 2}, "when": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "also": {"_count": 1}, "Im": {"_count": 1}, "led": {"_count": 1}}, "Are": {"_count": 1, "twins": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "places": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 6, "will": {"_count": 1}, "just": {"_count": 1}, "are": {"_count": 1}, "could": {"_count": 1}, "know": {"_count": 1}, "people": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "Mum": {"_count": 1, "said": {"_count": 1}}, "grate": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 8, "of": {"_count": 6}, "the": {"_count": 1}, "from": {"_count": 1}}, "after": {"_count": 14, "us": {"_count": 1}, "dinner": {"_count": 1}, "Black": {"_count": 1}, "the": {"_count": 2}, "we": {"_count": 1}, "theyd": {"_count": 1}, "hed": {"_count": 2}, "me": {"_count": 1}, "he": {"_count": 1}, "Dumbledore": {"_count": 2}, "youd": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "below": {"_count": 1, "them": {"_count": 1}}, "ahead": {"_count": 4, "Ron": {"_count": 1}, "of": {"_count": 2}, "the": {"_count": 1}}, "Ron": {"_count": 5, "let": {"_count": 1}, "muttering": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "mightve": {"_count": 1}}, "hes": {"_count": 4, "still": {"_count": 1}, "hes": {"_count": 1}, "not": {"_count": 1}, "alive": {"_count": 1}}, "way": {"_count": 10, "to": {"_count": 2}, "up": {"_count": 3}, "now": {"_count": 1}, "and": {"_count": 1}, "Granger": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "for": {"_count": 9, "him": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}, "coming": {"_count": 1}, "you": {"_count": 2}, "pursuers": {"_count": 1}, "a": {"_count": 1}}, "potion": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 6, "my": {"_count": 1}, "the": {"_count": 2}, "Hermiones": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "onto": {"_count": 2, "Alicia": {"_count": 1}, "the": {"_count": 1}}, "arm": {"_count": 12, "and": {"_count": 2}, "dangling": {"_count": 1}, "covered": {"_count": 1}, "to": {"_count": 2}, "once": {"_count": 2}, "": {"_count": 3}, "upward": {"_count": 1}}, "wheezing": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 16, "Filchs": {"_count": 1}, "and": {"_count": 4}, "his": {"_count": 1}, "the": {"_count": 4}, "in": {"_count": 1}, "Blacks": {"_count": 1}, "pointing": {"_count": 1}, "to": {"_count": 1}, "your": {"_count": 1}, "their": {"_count": 1}}, "outside": {"_count": 12, "your": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 5}, "this": {"_count": 2}, "our": {"_count": 1}, "looking": {"_count": 1}, "a": {"_count": 1}}, "now": {"_count": 32, "if": {"_count": 2}, "": {"_count": 17}, "when": {"_count": 1}, "but": {"_count": 1}, "full": {"_count": 1}, "and": {"_count": 1}, "The": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "right": {"_count": 1}, "Ron": {"_count": 1}, "in": {"_count": 1}, "than": {"_count": 1}, "with": {"_count": 1}}, "minds": {"_count": 2, "would": {"_count": 1}, "going": {"_count": 1}}, "side": {"_count": 4, "": {"_count": 1}, "Draco": {"_count": 2}, "of": {"_count": 1}}, "on": {"_count": 6, "target": {"_count": 1}, "top": {"_count": 2}, "my": {"_count": 1}, "the": {"_count": 1}, "past": {"_count": 1}}, "House": {"_count": 2, "He": {"_count": 1}, "said": {"_count": 1}}, "Ive": {"_count": 3, "got": {"_count": 2}, "Ive": {"_count": 1}}, "Im": {"_count": 4, "cornin": {"_count": 1}, "off": {"_count": 1}, "sure": {"_count": 1}, "here": {"_count": 1}}, "came": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "words": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Gilderoy": {"_count": 1, "chipped": {"_count": 1}}, "He": {"_count": 3, "opened": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 1}}, "again": {"_count": 3, "Havent": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "above": {"_count": 2, "him": {"_count": 2}}, "mind": {"_count": 8, "you": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "would": {"_count": 4}, "": {"_count": 1}}, "flap": {"_count": 1, "I": {"_count": 1}}, "Crookshanks": {"_count": 1, "Hermione": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "under": {"_count": 13, "a": {"_count": 1}, "Albus": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 2}, "Hufflepuff": {"_count": 1}, "his": {"_count": 1}, "your": {"_count": 1}, "my": {"_count": 1}, "Rons": {"_count": 1}}, "Potter": {"_count": 3, "": {"_count": 2}, "it": {"_count": 1}}, "aura": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 10, "you": {"_count": 1}, "her": {"_count": 1}, "me": {"_count": 1}, "that": {"_count": 1}, "Snape": {"_count": 1}, "everything": {"_count": 1}, "Voldemort": {"_count": 1}, "the": {"_count": 1}, "Eileen": {"_count": 1}, "magic": {"_count": 1}}, "foot": {"_count": 2, "out": {"_count": 1}, "as": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "beside": {"_count": 16, "theirs": {"_count": 1}, "them": {"_count": 2}, "Harry": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 5}, "him": {"_count": 2}, "you": {"_count": 1}, "his": {"_count": 2}}, "height": {"_count": 1, "for": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 3, "you": {"_count": 1}, "": {"_count": 2}}, "until": {"_count": 1, "they": {"_count": 1}}, "Hagrid": {"_count": 3, "": {"_count": 3}}, "ear": {"_count": 6, "": {"_count": 3}, "hit": {"_count": 1}, "toward": {"_count": 1}, "was": {"_count": 1}}, "Professor": {"_count": 4, "Flitwick": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "its": {"_count": 1}}, "old": {"_count": 2, "fraud": {"_count": 1}, "slob": {"_count": 1}}, "stood": {"_count": 2, "open": {"_count": 1}, "Pettigrew": {"_count": 1}}, "wasnt": {"_count": 2, "I": {"_count": 2}}, "sneered": {"_count": 1, "a": {"_count": 1}}, "thing": {"_count": 11, "": {"_count": 4}, "starting": {"_count": 1}, "to": {"_count": 5}, "though": {"_count": 1}}, "Twelve": {"_count": 1, "years": {"_count": 1}}, "lay": {"_count": 1, "Hermione": {"_count": 1}}, "afterward": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "enough": {"_count": 1, "grunted": {"_count": 1}}, "hands": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "screening": {"_count": 1, "Aunt": {"_count": 1}}, "showed": {"_count": 1, "that": {"_count": 1}}, "certainly": {"_count": 1, "said": {"_count": 1}}, "alongside": {"_count": 1, "a": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "opposite": {"_count": 1, "them": {"_count": 1}}, "with": {"_count": 3, "you": {"_count": 1}, "Madame": {"_count": 1}, "him": {"_count": 1}}, "beneath": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 2}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "can": {"_count": 1, "it": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "sonny": {"_count": 1, "he": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "werent": {"_count": 3, "they": {"_count": 2}, "we": {"_count": 1}}, "But": {"_count": 1, "Ron": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "was": {"_count": 1}}, "smarm": {"_count": 1, "up": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "back": {"_count": 8, "out": {"_count": 1}, "at": {"_count": 1}, "into": {"_count": 1}, "then": {"_count": 1}, "an": {"_count": 1}, "past": {"_count": 1}, "down": {"_count": 1}, "his": {"_count": 1}}, "walked": {"_count": 1, "along": {"_count": 1}}, "step": {"_count": 1, "he": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}, "lovely": {"_count": 1, "said": {"_count": 1}}, "today": {"_count": 1, "Harry": {"_count": 1}}, "sorry": {"_count": 3, "he": {"_count": 1}, "said": {"_count": 2}}, "by": {"_count": 2, "Hermione": {"_count": 1}, "a": {"_count": 1}}, "parts": {"_count": 1, "of": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "really": {"_count": 1, "dragons": {"_count": 1}}, "her": {"_count": 2, "grandmother": {"_count": 1}, "wand": {"_count": 1}}, "dont": {"_count": 2, "bend": {"_count": 1}, "worry": {"_count": 1}}, "sock": {"_count": 1, "was": {"_count": 1}}, "past": {"_count": 5, "Hermione": {"_count": 1}, "the": {"_count": 1}, "Peeves": {"_count": 1}, "it": {"_count": 1}, "an": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "wall": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 2, "leaned": {"_count": 1}, "before": {"_count": 1}}, "stick": {"_count": 1, "your": {"_count": 1}}, "book": {"_count": 1, "so": {"_count": 1}}, "Ill": {"_count": 4, "try": {"_count": 1}, "boil": {"_count": 1}, "come": {"_count": 1}, "spit": {"_count": 1}}, "as": {"_count": 4, "wizards": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}}, "yare": {"_count": 1, "Professor": {"_count": 1}}, "Sirius": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "watching": {"_count": 1, "Crouchs": {"_count": 1}}, "turn": {"_count": 2, "and": {"_count": 2}}, "fork": {"_count": 1, "with": {"_count": 1}}, "saw": {"_count": 2, "Cedric": {"_count": 1}, "that": {"_count": 1}}, "his": {"_count": 2, "mother": {"_count": 1}, "son": {"_count": 1}}, "son": {"_count": 1, "Ive": {"_count": 1}}, "therefore": {"_count": 1, "to": {"_count": 1}}, "maintaining": {"_count": 1, "a": {"_count": 1}}, "time": {"_count": 2, "to": {"_count": 1}, "or": {"_count": 1}}, "hook": {"_count": 1, "Big": {"_count": 1}}, "leg": {"_count": 1, "over": {"_count": 1}}, "however": {"_count": 2, "was": {"_count": 1}, "merely": {"_count": 1}}, "state": {"_count": 3, "said": {"_count": 2}, "": {"_count": 1}}, "arry": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 1, "you": {"_count": 1}}, "youre": {"_count": 2, "supposed": {"_count": 1}, "all": {"_count": 1}}, "than": {"_count": 1, "most": {"_count": 1}}, "squirti": {"_count": 1, "Harry": {"_count": 1}}, "idea": {"_count": 2, "they": {"_count": 1}, "about": {"_count": 1}}, "little": {"_count": 2, "hero": {"_count": 1}, "tantrum": {"_count": 1}}, "Arthur": {"_count": 2, "": {"_count": 2}}, "bore": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 2, "another": {"_count": 1}, "the": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "people": {"_count": 2, "": {"_count": 1}, "Both": {"_count": 1}}, "lads": {"_count": 1, "ten": {"_count": 1}}, "because": {"_count": 3, "Malfoy": {"_count": 1}, "weve": {"_count": 1}, "it": {"_count": 1}}, "leading": {"_count": 1, "to": {"_count": 1}}, "order": {"_count": 1, "and": {"_count": 1}}, "number": {"_count": 1, "of": {"_count": 1}}, "level": {"_count": 1, "for": {"_count": 1}}, "eye": {"_count": 2, "": {"_count": 1}, "Rons": {"_count": 1}}, "temple": {"_count": 1, "was": {"_count": 1}}, "though": {"_count": 3, "": {"_count": 2}, "isnt": {"_count": 1}}, "called": {"_count": 1, "Angelina": {"_count": 1}}, "pigs": {"_count": 1, "ear": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "we": {"_count": 4, "can": {"_count": 1}, "need": {"_count": 1}, "werent": {"_count": 1}, "made": {"_count": 1}}, "pain": {"_count": 1, "in": {"_count": 1}}, "everyone": {"_count": 1, "listen": {"_count": 1}}, "why": {"_count": 1, "did": {"_count": 1}}, "Malfoys": {"_count": 1, "arm": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "Dai": {"_count": 1, "Llewellyn": {"_count": 1}}, "Fudge": {"_count": 1, "is": {"_count": 1}}, "lets": {"_count": 3, "say": {"_count": 2}, "get": {"_count": 1}}, "track": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "angle": {"_count": 1, "in": {"_count": 1}}, "Shacklebolt": {"_count": 1, "I": {"_count": 1}}, "Draco": {"_count": 3, "said": {"_count": 3}}, "Snivellus": {"_count": 1, "": {"_count": 1}}, "Evans": {"_count": 1, "": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "whenever": {"_count": 1, "Ron": {"_count": 1}}, "importan": {"_count": 1, "ter": {"_count": 1}}, "goal": {"_count": 1, "hoop": {"_count": 1}}, "obviously": {"_count": 1, "his": {"_count": 1}}, "finally": {"_count": 1, "hitting": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "oh": {"_count": 1, "Id": {"_count": 1}}, "Umbridge": {"_count": 1, "was": {"_count": 1}}, "one": {"_count": 2, "there": {"_count": 1}, "as": {"_count": 1}}, "eyes": {"_count": 1, "glinted": {"_count": 1}}, "Jugson": {"_count": 1, "Dolohov": {"_count": 1}}, "sprang": {"_count": 1, "open": {"_count": 1}}, "where": {"_count": 1, "Nevilles": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "pleased": {"_count": 1, "ter": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "wont": {"_count": 1, "he": {"_count": 1}}, "which": {"_count": 1, "looked": {"_count": 1}}, "111": {"_count": 1, "do": {"_count": 1}}, "defend": {"_count": 1, "her": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "Hermiones": {"_count": 1, "hands": {"_count": 1}}, "havent": {"_count": 1, "we": {"_count": 1}}, "destiny": {"_count": 1, "for": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "shelves": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "take": {"_count": 1, "another": {"_count": 1}}, "twice": {"_count": 1, "": {"_count": 1}}, "page": {"_count": 1, "at": {"_count": 1}}, "afterwards": {"_count": 1, "and": {"_count": 1}}, "Smith": {"_count": 1, "he": {"_count": 1}}, "Argus": {"_count": 1, "thats": {"_count": 1}}, "effect": {"_count": 1, "Lupins": {"_count": 1}}, "impression": {"_count": 1, "": {"_count": 1}}, "fist": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "like": {"_count": 1, "him": {"_count": 1}}, "marrying": {"_count": 1, "filth": {"_count": 1}}, "they": {"_count": 1, "can": {"_count": 1}}, "come": {"_count": 1, "in": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "sir": {"_count": 1, "Harry": {"_count": 1}}, "rasped": {"_count": 1, "the": {"_count": 1}}, "muttered": {"_count": 1, "Neville": {"_count": 1}}, "panted": {"_count": 1, "Harry": {"_count": 1}}, "Yaxley": {"_count": 1, "drew": {"_count": 1}}, "blustered": {"_count": 1, "Vernon": {"_count": 1}}, "were": {"_count": 2, "operating": {"_count": 1}, "in": {"_count": 1}}, "seats": {"_count": 1, "": {"_count": 1}}, "laugh": {"_count": 1, "at": {"_count": 1}}, "darling": {"_count": 1, "": {"_count": 1}}, "yeah": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "theyre": {"_count": 1, "all": {"_count": 1}}, "how": {"_count": 1, "can": {"_count": 1}}, "shaken": {"_count": 1, "obviously": {"_count": 1}}, "Albus": {"_count": 1, "Percival": {"_count": 1}}, "giant": {"_count": 1, "spiders": {"_count": 1}}, "She": {"_count": 1, "still": {"_count": 1}}, "Selwyn": {"_count": 1, "said": {"_count": 1}}, "breathed": {"_count": 1, "Hermione": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "weve": {"_count": 1, "seen": {"_count": 1}}, "Ginny": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "leaders": {"_count": 1, "up": {"_count": 1}}, "moment": {"_count": 1, "": {"_count": 1}}, "murmured": {"_count": 1, "Ginny": {"_count": 1}}}, "I": {"_count": 10409, "heard": {"_count": 73, "yes": {"_count": 1}, "it": {"_count": 2}, "hes": {"_count": 2}, "you": {"_count": 9}, "something": {"_count": 2}, "Malfoy": {"_count": 1}, "": {"_count": 5}, "well": {"_count": 1}, "someone": {"_count": 1}, "all": {"_count": 1}, "somebody": {"_count": 1}, "your": {"_count": 4}, "screaming": {"_count": 1}, "Rons": {"_count": 1}, "about": {"_count": 2}, "my": {"_count": 1}, "her": {"_count": 3}, "this": {"_count": 2}, "things": {"_count": 1}, "banging": {"_count": 1}, "noises": {"_count": 1}, "him": {"_count": 5}, "Crouchs": {"_count": 1}, "Harrys": {"_count": 1}, "that": {"_count": 4}, "a": {"_count": 3}, "Warringtons": {"_count": 1}, "Montague": {"_count": 1}, "voices": {"_count": 1}, "he": {"_count": 1}, "from": {"_count": 1}, "the": {"_count": 2}, "Goyles": {"_count": 1}, "youre": {"_count": 1}, "people": {"_count": 1}, "rumors": {"_count": 1}, "em": {"_count": 1}, "Snape": {"_count": 1}, "toward": {"_count": 1}, "she": {"_count": 1}, "what": {"_count": 1}}, "dont": {"_count": 680, "know": {"_count": 181}, "suppose": {"_count": 13}, "want": {"_count": 68}, "think": {"_count": 162}, "see": {"_count": 10}, "have": {"_count": 3}, "like": {"_count": 27}, "believe": {"_count": 27}, "need": {"_count": 14}, "expect": {"_count": 1}, "all": {"_count": 1}, "care": {"_count": 26}, "understand": {"_count": 23}, "": {"_count": 7}, "belong": {"_count": 1}, "blame": {"_count": 6}, "talk": {"_count": 1}, "really": {"_count": 8}, "get": {"_count": 10}, "mind": {"_count": 6}, "even": {"_count": 3}, "said": {"_count": 6}, "recall": {"_count": 1}, "fancy": {"_count": 3}, "ever": {"_count": 1}, "doubt": {"_count": 5}, "go": {"_count": 2}, "let": {"_count": 1}, "remember": {"_count": 6}, "say": {"_count": 2}, "pretend": {"_count": 1}, "deny": {"_count": 1}, "reckon": {"_count": 12}, "feel": {"_count": 1}, "come": {"_count": 1}, "hear": {"_count": 1}, "miss": {"_count": 1}, "envy": {"_count": 1}, "show": {"_count": 1}, "dance": {"_count": 1}, "You": {"_count": 1}, "give": {"_count": 1}, "Petunia": {"_count": 1}, "intend": {"_count": 1}, "seem": {"_count": 1}, "I": {"_count": 2}, "hate": {"_count": 1}, "that": {"_count": 1}, "much": {"_count": 1}, "quite": {"_count": 2}, "regret": {"_count": 1}, "wonder": {"_count": 1}, "Harry": {"_count": 1}, "well": {"_count": 2}, "trust": {"_count": 2}, "mean": {"_count": 2}, "personally": {"_count": 1}, "open": {"_count": 1}, "do": {"_count": 1}, "exactly": {"_count": 1}, "dont": {"_count": 1}, "imagine": {"_count": 1}, "agree": {"_count": 1}, "The": {"_count": 1}, "cooperate": {"_count": 1}, "support": {"_count": 1}, "turn": {"_count": 1}, "take": {"_count": 1}, "despise": {"_count": 1}}, "promised": {"_count": 9, "yesterday": {"_count": 1}, "I": {"_count": 3}, "Id": {"_count": 1}, "Dumbledore": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "her": {"_count": 1}}, "can": {"_count": 230, "promise": {"_count": 2}, "you": {"_count": 3}, "tell": {"_count": 18}, "help": {"_count": 10}, "be": {"_count": 3}, "cap": {"_count": 1}, "teach": {"_count": 1}, "only": {"_count": 7}, "and": {"_count": 2}, "remember": {"_count": 4}, "get": {"_count": 7}, "see": {"_count": 18}, "share": {"_count": 1}, "cant": {"_count": 1}, "prove": {"_count": 1}, "do": {"_count": 19}, "mend": {"_count": 1}, "speak": {"_count": 4}, "show": {"_count": 1}, "take": {"_count": 2}, "carry": {"_count": 2}, "hear": {"_count": 7}, "ask": {"_count": 2}, "afford": {"_count": 1}, "store": {"_count": 1}, "have": {"_count": 3}, "explain": {"_count": 2}, "wangle": {"_count": 1}, "manage": {"_count": 3}, "disguise": {"_count": 1}, "always": {"_count": 1}, "come": {"_count": 1}, "put": {"_count": 1}, "repair": {"_count": 1}, "sort": {"_count": 1}, "correct": {"_count": 1}, "make": {"_count": 7}, "give": {"_count": 4}, "certainly": {"_count": 1}, "said": {"_count": 3}, "count": {"_count": 2}, "feel": {"_count": 2}, "try": {"_count": 2}, "scrounge": {"_count": 1}, "find": {"_count": 4}, "": {"_count": 10}, "barely": {"_count": 1}, "touch": {"_count": 2}, "change": {"_count": 1}, "hardly": {"_count": 3}, "escort": {"_count": 1}, "summon": {"_count": 1}, "breed": {"_count": 1}, "draw": {"_count": 1}, "go": {"_count": 1}, "no": {"_count": 2}, "think": {"_count": 3}, "walk": {"_count": 3}, "play": {"_count": 1}, "still": {"_count": 1}, "learn": {"_count": 1}, "leave": {"_count": 1}, "I": {"_count": 4}, "stand": {"_count": 1}, "say": {"_count": 4}, "persuade": {"_count": 1}, "fix": {"_count": 2}, "smell": {"_count": 1}, "save": {"_count": 1}, "stop": {"_count": 1}, "assist": {"_count": 2}, "about": {"_count": 1}, "love": {"_count": 1}, "just": {"_count": 2}, "Apparate": {"_count": 1}, "run": {"_count": 1}, "Before": {"_count": 1}, "send": {"_count": 1}, "visit": {"_count": 1}, "Five": {"_count": 1}, "Harry": {"_count": 1}, "believe": {"_count": 1}, "finish": {"_count": 1}, "assure": {"_count": 1}, "never": {"_count": 1}, "act": {"_count": 1}, "attend": {"_count": 1}, "use": {"_count": 1}}, "just": {"_count": 128, "thought": {"_count": 11}, "take": {"_count": 1}, "never": {"_count": 2}, "hope": {"_count": 8}, "wondered": {"_count": 5}, "I": {"_count": 1}, "happen": {"_count": 1}, "say": {"_count": 1}, "dont": {"_count": 9}, "wanted": {"_count": 5}, "go": {"_count": 1}, "want": {"_count": 8}, "found": {"_count": 1}, "heard": {"_count": 1}, "asked": {"_count": 1}, "remember": {"_count": 1}, "lost": {"_count": 1}, "": {"_count": 2}, "came": {"_count": 1}, "knew": {"_count": 2}, "hold": {"_count": 1}, "throw": {"_count": 1}, "made": {"_count": 1}, "got": {"_count": 1}, "dashed": {"_count": 1}, "saved": {"_count": 1}, "saw": {"_count": 3}, "dropped": {"_count": 1}, "cant": {"_count": 4}, "imagined": {"_count": 1}, "sort": {"_count": 1}, "meant": {"_count": 1}, "forgot": {"_count": 1}, "need": {"_count": 2}, "know": {"_count": 2}, "think": {"_count": 5}, "wish": {"_count": 6}, "Im": {"_count": 1}, "did": {"_count": 2}, "blundered": {"_count": 1}, "wonder": {"_count": 1}, "oh": {"_count": 1}, "have": {"_count": 1}, "told": {"_count": 2}, "feel": {"_count": 2}, "fancied": {"_count": 1}, "ran": {"_count": 1}, "walked": {"_count": 1}, "fell": {"_count": 1}, "hoped": {"_count": 2}, "had": {"_count": 3}, "said": {"_count": 2}, "tried": {"_count": 1}, "Panicked": {"_count": 1}, "keep": {"_count": 2}, "assumed": {"_count": 1}, "met": {"_count": 1}, "felt": {"_count": 2}, "add": {"_count": 1}, "proved": {"_count": 1}}, "suppose": {"_count": 154, "so": {"_count": 9}, "he": {"_count": 6}, "it": {"_count": 7}, "we": {"_count": 5}, "with": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 32}, "said": {"_count": 5}, "they": {"_count": 4}, "Ravenclaw": {"_count": 1}, "you": {"_count": 17}, "that": {"_count": 2}, "she": {"_count": 5}, "thats": {"_count": 2}, "Bane": {"_count": 1}, "its": {"_count": 3}, "if": {"_count": 3}, "weve": {"_count": 2}, "your": {"_count": 2}, "Dumbledores": {"_count": 1}, "the": {"_count": 2}, "youve": {"_count": 4}, "there": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 1}, "hes": {"_count": 3}, "Here": {"_count": 1}, "this": {"_count": 2}, "I": {"_count": 2}, "theres": {"_count": 1}, "my": {"_count": 1}, "not": {"_count": 1}, "well": {"_count": 2}, "all": {"_count": 1}, "Dumbledore": {"_count": 1}, "No": {"_count": 1}, "were": {"_count": 1}, "when": {"_count": 1}, "a": {"_count": 1}, "You": {"_count": 1}, "something": {"_count": 1}, "because": {"_count": 1}, "itll": {"_count": 1}, "Im": {"_count": 2}, "youd": {"_count": 2}, "for": {"_count": 1}, "youre": {"_count": 1}, "one": {"_count": 1}, "everybodys": {"_count": 1}, "ha": {"_count": 1}, "Ill": {"_count": 1}, "by": {"_count": 1}, "whoever": {"_count": 1}, "She": {"_count": 1}, "and": {"_count": 1}}, "quite": {"_count": 9, "agree": {"_count": 4}, "understand": {"_count": 4}, "forgot": {"_count": 1}}, "should": {"_count": 62, "have": {"_count": 27}, "said": {"_count": 1}, "if": {"_count": 1}, "see": {"_count": 1}, "be": {"_count": 7}, "ruddy": {"_count": 1}, "probably": {"_count": 1}, "think": {"_count": 2}, "tell": {"_count": 1}, "offer": {"_count": 1}, "try": {"_count": 1}, "not": {"_count": 2}, "like": {"_count": 3}, "know": {"_count": 1}, "say": {"_count": 3}, "explain": {"_count": 1}, "remind": {"_count": 1}, "also": {"_count": 1}, "just": {"_count": 1}, "read": {"_count": 1}, "never": {"_count": 1}, "use": {"_count": 1}, "climb": {"_count": 1}, "prefer": {"_count": 1}}, "must": {"_count": 120, "have": {"_count": 6}, "say": {"_count": 22}, "tell": {"_count": 5}, "": {"_count": 2}, "lie": {"_count": 1}, "look": {"_count": 1}, "trouble": {"_count": 1}, "show": {"_count": 1}, "impress": {"_count": 1}, "also": {"_count": 2}, "go": {"_count": 4}, "ask": {"_count": 5}, "inform": {"_count": 1}, "find": {"_count": 2}, "do": {"_count": 3}, "draft": {"_count": 1}, "make": {"_count": 1}, "warn": {"_count": 3}, "admit": {"_count": 4}, "insist": {"_count": 5}, "speak": {"_count": 1}, "see": {"_count": 2}, "once": {"_count": 1}, "get": {"_count": 2}, "keep": {"_count": 1}, "dash": {"_count": 1}, "use": {"_count": 1}, "be": {"_count": 6}, "return": {"_count": 1}, "first": {"_count": 1}, "fulfill": {"_count": 1}, "not": {"_count": 14}, "finish": {"_count": 1}, "remember": {"_count": 2}, "give": {"_count": 3}, "avoid": {"_count": 1}, "confess": {"_count": 2}, "confirm": {"_count": 1}, "quickly": {"_count": 1}, "agree": {"_count": 1}, "today": {"_count": 1}, "save": {"_count": 1}, "know": {"_count": 1}, "master": {"_count": 1}, "die": {"_count": 1}}, "know": {"_count": 359, "that": {"_count": 27}, "you": {"_count": 18}, "": {"_count": 18}, "they": {"_count": 4}, "Harry": {"_count": 7}, "some": {"_count": 2}, "Ill": {"_count": 1}, "I": {"_count": 30}, "its": {"_count": 15}, "all": {"_count": 5}, "who": {"_count": 7}, "Malfoys": {"_count": 1}, "hes": {"_count": 4}, "it": {"_count": 25}, "a": {"_count": 3}, "Ive": {"_count": 3}, "what": {"_count": 28}, "Ron": {"_count": 2}, "lots": {"_count": 2}, "said": {"_count": 23}, "the": {"_count": 5}, "too": {"_count": 1}, "one": {"_count": 1}, "we": {"_count": 1}, "just": {"_count": 1}, "about": {"_count": 2}, "youd": {"_count": 2}, "why": {"_count": 4}, "how": {"_count": 8}, "whats": {"_count": 2}, "wants": {"_count": 1}, "youre": {"_count": 6}, "this": {"_count": 5}, "sighed": {"_count": 1}, "is": {"_count": 2}, "of": {"_count": 5}, "there": {"_count": 2}, "for": {"_count": 2}, "your": {"_count": 3}, "he": {"_count": 10}, "better": {"_count": 4}, "theyd": {"_count": 1}, "nothing": {"_count": 2}, "she": {"_count": 2}, "things": {"_count": 2}, "now": {"_count": 1}, "Crouch": {"_count": 1}, "Dumbledore": {"_count": 4}, "Snape": {"_count": 1}, "where": {"_count": 2}, "our": {"_count": 1}, "moaned": {"_count": 1}, "but": {"_count": 5}, "violent": {"_count": 1}, "will": {"_count": 1}, "her": {"_count": 1}, "shes": {"_count": 2}, "mate": {"_count": 2}, "prefects": {"_count": 1}, "perfectly": {"_count": 2}, "yehve": {"_count": 1}, "exactly": {"_count": 1}, "Sirius": {"_count": 1}, "youve": {"_count": 1}, "spells": {"_count": 1}, "Williamson": {"_count": 1}, "dear": {"_count": 1}, "someone": {"_count": 1}, "Lupins": {"_count": 1}, "jus": {"_count": 1}, "or": {"_count": 1}, "funny": {"_count": 1}, "youll": {"_count": 1}, "Dumbledores": {"_count": 1}, "Im": {"_count": 2}, "as": {"_count": 1}, "his": {"_count": 2}, "him": {"_count": 2}, "not": {"_count": 2}, "Bathilda": {"_count": 1}, "Viktor": {"_count": 1}, "es": {"_count": 1}, "goblins": {"_count": 1}, "well": {"_count": 1}, "thats": {"_count": 1}, "Professor": {"_count": 1}, "were": {"_count": 1}, "James": {"_count": 1}, "in": {"_count": 1}}, "say": {"_count": 58, "even": {"_count": 1}, "goodbye": {"_count": 1}, "look": {"_count": 1}, "your": {"_count": 1}, "we": {"_count": 7}, "what": {"_count": 1}, "so": {"_count": 2}, "": {"_count": 10}, "it": {"_count": 6}, "something": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 3}, "youve": {"_count": 1}, "worst": {"_count": 1}, "hes": {"_count": 2}, "Ive": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 2}, "nothing": {"_count": 1}, "theyre": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "go": {"_count": 1}, "let": {"_count": 1}, "never": {"_count": 1}, "can": {"_count": 1}, "prevented": {"_count": 1}, "a": {"_count": 2}, "youll": {"_count": 1}, "Krum": {"_count": 1}, "thats": {"_count": 1}}, "have": {"_count": 373, "been": {"_count": 29}, "never": {"_count": 10}, "one": {"_count": 2}, "burned": {"_count": 1}, "a": {"_count": 28}, "none": {"_count": 1}, "also": {"_count": 2}, "to": {"_count": 26}, "business": {"_count": 1}, "served": {"_count": 1}, "let": {"_count": 1}, "strength": {"_count": 1}, "become": {"_count": 1}, "form": {"_count": 1}, "the": {"_count": 4}, "had": {"_count": 5}, "not": {"_count": 12}, "that": {"_count": 1}, "important": {"_count": 1}, "great": {"_count": 4}, "but": {"_count": 1}, "your": {"_count": 9}, "taken": {"_count": 1}, "rarely": {"_count": 1}, "no": {"_count": 23}, "lived": {"_count": 1}, "good": {"_count": 2}, "given": {"_count": 5}, "many": {"_count": 1}, "very": {"_count": 1}, "said": {"_count": 8}, "seen": {"_count": 9}, "complete": {"_count": 1}, "got": {"_count": 2}, "just": {"_count": 5}, "decided": {"_count": 4}, "": {"_count": 7}, "difficulty": {"_count": 1}, "done": {"_count": 7}, "reason": {"_count": 1}, "some": {"_count": 3}, "regained": {"_count": 1}, "my": {"_count": 3}, "already": {"_count": 11}, "waited": {"_count": 1}, "gone": {"_count": 2}, "put": {"_count": 1}, "only": {"_count": 2}, "half": {"_count": 1}, "NOT": {"_count": 1}, "something": {"_count": 1}, "shown": {"_count": 2}, "as": {"_count": 2}, "quite": {"_count": 1}, "experience": {"_count": 1}, "sir": {"_count": 1}, "long": {"_count": 1}, "more": {"_count": 3}, "it": {"_count": 4}, "met": {"_count": 1}, "spoken": {"_count": 1}, "discovered": {"_count": 1}, "suggested": {"_count": 2}, "heard": {"_count": 3}, "work": {"_count": 1}, "written": {"_count": 1}, "told": {"_count": 5}, "warned": {"_count": 1}, "come": {"_count": 5}, "of": {"_count": 1}, "enough": {"_count": 1}, "always": {"_count": 1}, "hinted": {"_count": 1}, "awarded": {"_count": 1}, "ever": {"_count": 1}, "better": {"_count": 1}, "talked": {"_count": 1}, "tried": {"_count": 2}, "wasted": {"_count": 1}, "here": {"_count": 1}, "dismissed": {"_count": 1}, "succeeded": {"_count": 1}, "agreed": {"_count": 1}, "testimony": {"_count": 1}, "all": {"_count": 1}, "absolutely": {"_count": 1}, "ter": {"_count": 1}, "entered": {"_count": 1}, "nothing": {"_count": 1}, "sent": {"_count": 1}, "too": {"_count": 1}, "explained": {"_count": 1}, "finished": {"_count": 1}, "and": {"_count": 1}, "watched": {"_count": 2}, "kept": {"_count": 1}, "somehow": {"_count": 1}, "passed": {"_count": 1}, "played": {"_count": 1}, "nowhere": {"_count": 1}, "lost": {"_count": 1}, "urgent": {"_count": 1}, "assured": {"_count": 1}, "you": {"_count": 2}, "arranged": {"_count": 1}, "planned": {"_count": 1}, "an": {"_count": 1}, "known": {"_count": 2}, "two": {"_count": 2}, "collected": {"_count": 1}, "drawn": {"_count": 1}, "returned": {"_count": 2}, "experimented": {"_count": 1}, "pushed": {"_count": 1}, "ideas": {"_count": 1}, "excellent": {"_count": 1}, "destroyed": {"_count": 1}, "made": {"_count": 1}, "traveled": {"_count": 1}, "showed": {"_count": 1}, "therefore": {"_count": 1}, "hung": {"_count": 1}, "suspicions": {"_count": 1}, "once": {"_count": 1}, "found": {"_count": 1}, "stolen": {"_count": 2}, "with": {"_count": 1}, "noticed": {"_count": 1}, "working": {"_count": 1}, "regretted": {"_count": 1}, "received": {"_count": 1}, "expressed": {"_count": 1}, "reached": {"_count": 1}, "gold": {"_count": 1}, "visited": {"_count": 1}, "goblin": {"_count": 1}, "performed": {"_count": 1}, "thought": {"_count": 2}, "called": {"_count": 1}, "used": {"_count": 1}, "sat": {"_count": 1}, "I": {"_count": 1}, "asked": {"_count": 1}, "trapped": {"_count": 1}, "usurped": {"_count": 1}, "things": {"_count": 1}, "changed": {"_count": 1}, "spied": {"_count": 1}, "killed": {"_count": 1}}, "will": {"_count": 120, "never": {"_count": 4}, "have": {"_count": 7}, "take": {"_count": 5}, "tell": {"_count": 1}, "personally": {"_count": 2}, "sir": {"_count": 1}, "be": {"_count": 22}, "said": {"_count": 9}, "lead": {"_count": 1}, "not": {"_count": 13}, "give": {"_count": 3}, "attract": {"_count": 1}, "escort": {"_count": 1}, "only": {"_count": 2}, "inform": {"_count": 2}, "if": {"_count": 2}, "fill": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 5}, "make": {"_count": 3}, "need": {"_count": 1}, "use": {"_count": 1}, "allow": {"_count": 1}, "face": {"_count": 1}, "too": {"_count": 1}, "she": {"_count": 1}, "thanks": {"_count": 2}, "go": {"_count": 2}, "dim": {"_count": 1}, "let": {"_count": 1}, "kill": {"_count": 2}, "say": {"_count": 2}, "wait": {"_count": 1}, "explain": {"_count": 1}, "settle": {"_count": 1}, "contact": {"_count": 1}, "see": {"_count": 1}, "Harry": {"_count": 1}, "write": {"_count": 1}, "want": {"_count": 1}, "send": {"_count": 1}, "expect": {"_count": 1}, "curse": {"_count": 1}, "assist": {"_count": 1}, "get": {"_count": 1}, "keep": {"_count": 1}, "hazard": {"_count": 1}, "start": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "havent": {"_count": 99, "blushed": {"_count": 1}, "introduced": {"_count": 1}, "got": {"_count": 36}, "eaten": {"_count": 1}, "been": {"_count": 8}, "said": {"_count": 5}, "Goyle": {"_count": 1}, "learned": {"_count": 1}, "touched": {"_count": 1}, "poisoned": {"_count": 1}, "done": {"_count": 3}, "changed": {"_count": 1}, "seen": {"_count": 9}, "told": {"_count": 3}, "asked": {"_count": 1}, "really": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 3}, "actually": {"_count": 1}, "finished": {"_count": 1}, "heard": {"_count": 2}, "looked": {"_count": 1}, "even": {"_count": 1}, "packed": {"_count": 1}, "tried": {"_count": 1}, "set": {"_count": 1}, "moved": {"_count": 1}, "checked": {"_count": 1}, "any": {"_count": 1}, "given": {"_count": 1}, "forgotten": {"_count": 3}, "found": {"_count": 2}, "tested": {"_count": 1}, "noticed": {"_count": 1}}, "cant": {"_count": 201, "believe": {"_count": 21}, "tell": {"_count": 7}, "even": {"_count": 1}, "remember": {"_count": 8}, "talk": {"_count": 1}, "see": {"_count": 22}, "said": {"_count": 6}, "he": {"_count": 1}, "keep": {"_count": 2}, "jus": {"_count": 1}, "handle": {"_count": 2}, "breathe": {"_count": 2}, "think": {"_count": 5}, "Dobby": {"_count": 1}, "magic": {"_count": 1}, "get": {"_count": 5}, "stand": {"_count": 8}, "find": {"_count": 5}, "be": {"_count": 4}, "go": {"_count": 4}, "afford": {"_count": 1}, "Harry": {"_count": 5}, "let": {"_count": 1}, "work": {"_count": 1}, "concentrate": {"_count": 2}, "bear": {"_count": 2}, "hold": {"_count": 1}, "mend": {"_count": 1}, "understand": {"_count": 1}, "use": {"_count": 2}, "say": {"_count": 3}, "stay": {"_count": 3}, "help": {"_count": 3}, "manage": {"_count": 1}, "snapped": {"_count": 1}, "come": {"_count": 3}, "deny": {"_count": 1}, "": {"_count": 7}, "give": {"_count": 2}, "Apparate": {"_count": 1}, "stop": {"_count": 3}, "take": {"_count": 1}, "do": {"_count": 6}, "imagine": {"_count": 2}, "pretend": {"_count": 3}, "promise": {"_count": 2}, "wait": {"_count": 8}, "its": {"_count": 1}, "theyre": {"_count": 1}, "play": {"_count": 1}, "aaRGH": {"_count": 1}, "possess": {"_count": 1}, "shut": {"_count": 1}, "check": {"_count": 1}, "Professor": {"_count": 1}, "she": {"_count": 2}, "fault": {"_count": 1}, "visit": {"_count": 1}, "face": {"_count": 1}, "withdraw": {"_count": 1}, "I": {"_count": 3}, "dont": {"_count": 1}, "make": {"_count": 1}, "Well": {"_count": 1}, "Remus": {"_count": 1}, "guarantee": {"_count": 1}, "explain": {"_count": 1}, "blimey": {"_count": 1}, "but": {"_count": 1}, "leave": {"_count": 1}, "walk": {"_count": 1}}, "didnt": {"_count": 186, "want": {"_count": 6}, "realize": {"_count": 6}, "know": {"_count": 19}, "see": {"_count": 7}, "get": {"_count": 4}, "youre": {"_count": 1}, "do": {"_count": 13}, "mean": {"_count": 23}, "but": {"_count": 1}, "think": {"_count": 8}, "even": {"_count": 1}, "chase": {"_count": 1}, "This": {"_count": 1}, "manage": {"_count": 1}, "believe": {"_count": 2}, "really": {"_count": 2}, "expect": {"_count": 3}, "care": {"_count": 2}, "feel": {"_count": 2}, "tell": {"_count": 1}, "give": {"_count": 1}, "drop": {"_count": 1}, "put": {"_count": 6}, "": {"_count": 10}, "said": {"_count": 8}, "Harry": {"_count": 2}, "he": {"_count": 1}, "The": {"_count": 1}, "enter": {"_count": 2}, "start": {"_count": 1}, "dare": {"_count": 1}, "cheat": {"_count": 1}, "need": {"_count": 2}, "I": {"_count": 2}, "then": {"_count": 1}, "make": {"_count": 1}, "use": {"_count": 1}, "ask": {"_count": 1}, "have": {"_count": 6}, "decide": {"_count": 1}, "plan": {"_count": 1}, "like": {"_count": 2}, "say": {"_count": 3}, "imagine": {"_count": 1}, "shut": {"_count": 1}, "learn": {"_count": 1}, "hear": {"_count": 1}, "Snape": {"_count": 1}, "she": {"_count": 1}, "muttered": {"_count": 1}, "practice": {"_count": 1}, "bother": {"_count": 1}, "approve": {"_count": 1}, "notice": {"_count": 1}, "buy": {"_count": 1}, "fancy": {"_count": 1}, "enjoy": {"_count": 1}, "fully": {"_count": 1}, "mumbled": {"_count": 1}, "breathed": {"_count": 1}, "misunderstand": {"_count": 1}, "Didnt": {"_count": 1}, "wanna": {"_count": 1}, "kill": {"_count": 1}, "ttake": {"_count": 1}, "guess": {"_count": 1}, "beg": {"_count": 1}, "defend": {"_count": 2}}, "saw": {"_count": 129, "him": {"_count": 29}, "you": {"_count": 11}, "Dumbledore": {"_count": 1}, "in": {"_count": 4}, "said": {"_count": 2}, "that": {"_count": 8}, "one": {"_count": 2}, "myself": {"_count": 2}, "loads": {"_count": 1}, "James": {"_count": 1}, "another": {"_count": 1}, "the": {"_count": 10}, "their": {"_count": 1}, "Peter": {"_count": 1}, "it": {"_count": 13}, "me": {"_count": 1}, "gazing": {"_count": 1}, "yeh": {"_count": 2}, "Barty": {"_count": 1}, "with": {"_count": 1}, "my": {"_count": 1}, "Voldemort": {"_count": 1}, "dementors": {"_count": 1}, "his": {"_count": 3}, "no": {"_count": 2}, "inside": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 2}, "Potters": {"_count": 1}, "Cho": {"_count": 1}, "was": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 3}, "only": {"_count": 1}, "about": {"_count": 1}, "this": {"_count": 2}, "something": {"_count": 3}, "Malfoy": {"_count": 2}, "what": {"_count": 1}, "them": {"_count": 1}, "Stan": {"_count": 1}, "of": {"_count": 1}, "somebody": {"_count": 1}, "her": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "wouldnt": {"_count": 66, "be": {"_count": 10}, "": {"_count": 1}, "bother": {"_count": 1}, "say": {"_count": 2}, "put": {"_count": 3}, "mind": {"_count": 7}, "bet": {"_count": 2}, "read": {"_count": 1}, "have": {"_count": 6}, "tell": {"_count": 4}, "like": {"_count": 2}, "fancy": {"_count": 2}, "come": {"_count": 1}, "know": {"_count": 2}, "want": {"_count": 6}, "ave": {"_count": 1}, "expect": {"_count": 2}, "mention": {"_count": 1}, "go": {"_count": 2}, "do": {"_count": 1}, "you": {"_count": 1}, "cross": {"_count": 1}, "touch": {"_count": 1}, "bank": {"_count": 1}, "said": {"_count": 2}, "chuck": {"_count": 1}, "wander": {"_count": 1}, "damage": {"_count": 1}}, "would": {"_count": 144, "trust": {"_count": 1}, "like": {"_count": 25}, "prefer": {"_count": 3}, "never": {"_count": 7}, "have": {"_count": 29}, "buy": {"_count": 1}, "remind": {"_count": 3}, "urge": {"_count": 1}, "advise": {"_count": 4}, "be": {"_count": 17}, "inform": {"_count": 1}, "expect": {"_count": 2}, "hate": {"_count": 1}, "certainly": {"_count": 1}, "also": {"_count": 3}, "not": {"_count": 13}, "said": {"_count": 3}, "ask": {"_count": 1}, "think": {"_count": 1}, "say": {"_count": 3}, "settle": {"_count": 1}, "need": {"_count": 1}, "do": {"_count": 1}, "snarled": {"_count": 1}, "I": {"_count": 1}, "question": {"_count": 1}, "": {"_count": 1}, "warn": {"_count": 1}, "find": {"_count": 1}, "rather": {"_count": 2}, "sacrifice": {"_count": 1}, "hear": {"_count": 1}, "assume": {"_count": 1}, "turn": {"_count": 1}, "if": {"_count": 1}, "protect": {"_count": 1}, "but": {"_count": 2}, "go": {"_count": 1}, "hazard": {"_count": 1}, "make": {"_count": 1}, "believe": {"_count": 1}, "entrust": {"_count": 1}}, "got": {"_count": 85, "him": {"_count": 3}, "about": {"_count": 1}, "Scabbers": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 6}, "in": {"_count": 3}, "from": {"_count": 1}, "this": {"_count": 4}, "theres": {"_count": 1}, "question": {"_count": 1}, "it": {"_count": 7}, "back": {"_count": 7}, "were": {"_count": 1}, "lost": {"_count": 1}, "the": {"_count": 9}, "an": {"_count": 1}, "all": {"_count": 1}, "expelled": {"_count": 1}, "somethin": {"_count": 1}, "off": {"_count": 1}, "some": {"_count": 2}, "ant": {"_count": 1}, "picked": {"_count": 1}, "here": {"_count": 1}, "hurt": {"_count": 1}, "inter": {"_count": 1}, "told": {"_count": 1}, "to": {"_count": 3}, "out": {"_count": 1}, "through": {"_count": 2}, "her": {"_count": 1}, "top": {"_count": 1}, "famous": {"_count": 1}, "for": {"_count": 1}, "detention": {"_count": 1}, "made": {"_count": 1}, "you": {"_count": 2}, "attacked": {"_count": 1}, "there": {"_count": 3}, "company": {"_count": 1}, "his": {"_count": 1}, "em": {"_count": 1}, "Professor": {"_count": 1}, "cut": {"_count": 1}, "upstairs": {"_count": 1}, "food": {"_count": 1}}, "could": {"_count": 154, "I": {"_count": 2}, "": {"_count": 9}, "if": {"_count": 1}, "deal": {"_count": 1}, "have": {"_count": 18}, "sing": {"_count": 1}, "handle": {"_count": 1}, "just": {"_count": 5}, "stand": {"_count": 2}, "do": {"_count": 16}, "tell": {"_count": 5}, "avoid": {"_count": 2}, "whip": {"_count": 1}, "keep": {"_count": 1}, "help": {"_count": 4}, "about": {"_count": 2}, "go": {"_count": 2}, "say": {"_count": 2}, "hear": {"_count": 5}, "be": {"_count": 3}, "curse": {"_count": 1}, "transform": {"_count": 1}, "see": {"_count": 3}, "find": {"_count": 2}, "use": {"_count": 1}, "never": {"_count": 1}, "eat": {"_count": 1}, "choose": {"_count": 1}, "make": {"_count": 2}, "kip": {"_count": 1}, "advise": {"_count": 1}, "lift": {"_count": 1}, "always": {"_count": 1}, "not": {"_count": 11}, "possess": {"_count": 1}, "only": {"_count": 1}, "fool": {"_count": 1}, "sneak": {"_count": 1}, "take": {"_count": 2}, "skip": {"_count": 1}, "come": {"_count": 2}, "NO": {"_count": 1}, "think": {"_count": 3}, "manure": {"_count": 1}, "break": {"_count": 1}, "talk": {"_count": 1}, "count": {"_count": 1}, "ask": {"_count": 3}, "probably": {"_count": 1}, "hardly": {"_count": 2}, "give": {"_count": 1}, "to": {"_count": 1}, "remain": {"_count": 1}, "climb": {"_count": 1}, "Apparate": {"_count": 1}, "persuade": {"_count": 2}, "show": {"_count": 1}, "frighten": {"_count": 1}, "Tom": {"_count": 1}, "Disapparate": {"_count": 1}, "send": {"_count": 1}, "fit": {"_count": 1}, "borrow": {"_count": 1}, "understand": {"_count": 1}, "feel": {"_count": 1}, "get": {"_count": 3}, "pass": {"_count": 1}}, "cc": {"_count": 1, "cant": {"_count": 1}}, "shall": {"_count": 103, "see": {"_count": 5}, "return": {"_count": 1}, "speak": {"_count": 2}, "answer": {"_count": 1}, "not": {"_count": 7}, "be": {"_count": 10}, "go": {"_count": 2}, "make": {"_count": 3}, "of": {"_count": 3}, "take": {"_count": 3}, "monitor": {"_count": 1}, "move": {"_count": 1}, "keep": {"_count": 2}, "tell": {"_count": 5}, "call": {"_count": 3}, "review": {"_count": 1}, "have": {"_count": 6}, "act": {"_count": 1}, "say": {"_count": 2}, "put": {"_count": 1}, "said": {"_count": 1}, "know": {"_count": 2}, "need": {"_count": 5}, "let": {"_count": 1}, "in": {"_count": 1}, "give": {"_count": 1}, "deal": {"_count": 1}, "explain": {"_count": 2}, "probably": {"_count": 1}, "send": {"_count": 2}, "": {"_count": 2}, "ensure": {"_count": 1}, "drop": {"_count": 1}, "pass": {"_count": 1}, "decide": {"_count": 1}, "find": {"_count": 2}, "then": {"_count": 1}, "wait": {"_count": 3}, "do": {"_count": 1}, "attend": {"_count": 1}, "miss": {"_count": 1}, "try": {"_count": 1}, "summon": {"_count": 1}, "run": {"_count": 1}, "join": {"_count": 1}, "meet": {"_count": 1}, "expect": {"_count": 1}, "rouse": {"_count": 1}, "leave": {"_count": 1}, "enter": {"_count": 1}, "punish": {"_count": 1}, "never": {"_count": 1}}, "expect": {"_count": 69, "Professor": {"_count": 1}, "well": {"_count": 3}, "youve": {"_count": 2}, "theyve": {"_count": 2}, "a": {"_count": 1}, "said": {"_count": 6}, "If": {"_count": 1}, "youd": {"_count": 2}, "I": {"_count": 1}, "They": {"_count": 1}, "thats": {"_count": 2}, "Hermione": {"_count": 1}, "": {"_count": 6}, "hell": {"_count": 1}, "you": {"_count": 4}, "cauldron": {"_count": 1}, "she": {"_count": 2}, "youll": {"_count": 2}, "youre": {"_count": 2}, "my": {"_count": 1}, "theyll": {"_count": 1}, "more": {"_count": 1}, "someone": {"_count": 1}, "Ginnys": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}, "shes": {"_count": 1}, "Dumbledores": {"_count": 1}, "Ill": {"_count": 1}, "did": {"_count": 1}, "hes": {"_count": 1}, "anyone": {"_count": 1}, "all": {"_count": 1}, "we": {"_count": 1}, "shell": {"_count": 1}, "they": {"_count": 1}, "what": {"_count": 1}, "Potter": {"_count": 1}, "most": {"_count": 1}, "\u2018nothings": {"_count": 1}, "so": {"_count": 2}, "at": {"_count": 1}, "your": {"_count": 2}, "he": {"_count": 1}, "Severus": {"_count": 1}}, "want": {"_count": 191, "you": {"_count": 33}, "everything": {"_count": 1}, "to": {"_count": 97}, "he": {"_count": 1}, "a": {"_count": 11}, "ter": {"_count": 1}, "Fang": {"_count": 1}, "more": {"_count": 3}, "it": {"_count": 3}, "revenge": {"_count": 1}, "the": {"_count": 7}, "everyone": {"_count": 1}, "two": {"_count": 1}, "them": {"_count": 4}, "Harry": {"_count": 2}, "thirteen": {"_count": 1}, "there": {"_count": 1}, "threehundred": {"_count": 1}, "this": {"_count": 3}, "said": {"_count": 2}, "someone": {"_count": 1}, "him": {"_count": 1}, "nonsense": {"_count": 1}, "us": {"_count": 2}, "these": {"_count": 1}, "your": {"_count": 5}, "people": {"_count": 1}, "each": {"_count": 1}, "breakfast": {"_count": 1}, "Gregorovitch": {"_count": 1}, "with": {"_count": 1}}, "wont": {"_count": 50, "blow": {"_count": 1}, "let": {"_count": 4}, "blame": {"_count": 1}, "need": {"_count": 1}, "said": {"_count": 3}, "say": {"_count": 5}, "be": {"_count": 7}, "have": {"_count": 4}, "deny": {"_count": 3}, "forget": {"_count": 1}, "tell": {"_count": 2}, "even": {"_count": 1}, "come": {"_count": 1}, "": {"_count": 2}, "answer": {"_count": 1}, "do": {"_count": 1}, "give": {"_count": 1}, "I": {"_count": 1}, "get": {"_count": 1}, "bother": {"_count": 3}, "try": {"_count": 1}, "pretend": {"_count": 1}, "see": {"_count": 1}, "lie": {"_count": 1}, "blast": {"_count": 1}, "permit": {"_count": 1}}, "": {"_count": 142, ".": {"_count": 47}, "?": {"_count": 92}, "!": {"_count": 3}}, "had": {"_count": 205, "a": {"_count": 14}, "no": {"_count": 12}, "Lord": {"_count": 1}, "just": {"_count": 3}, "the": {"_count": 9}, "it": {"_count": 4}, "my": {"_count": 6}, "one": {"_count": 3}, "another": {"_count": 1}, "wanted": {"_count": 2}, "Slytherin": {"_count": 1}, "to": {"_count": 43}, "become": {"_count": 1}, "Colonel": {"_count": 1}, "them": {"_count": 2}, "ter": {"_count": 4}, "planned": {"_count": 2}, "an": {"_count": 1}, "ever": {"_count": 1}, "friends": {"_count": 1}, "led": {"_count": 1}, "come": {"_count": 1}, "only": {"_count": 1}, "your": {"_count": 1}, "two": {"_count": 2}, "enough": {"_count": 2}, "better": {"_count": 1}, "other": {"_count": 1}, "big": {"_count": 1}, "been": {"_count": 5}, "help": {"_count": 2}, "not": {"_count": 9}, "made": {"_count": 1}, "given": {"_count": 1}, "almost": {"_count": 1}, "extracted": {"_count": 1}, "fallen": {"_count": 2}, "recovered": {"_count": 1}, "loved": {"_count": 1}, "escaped": {"_count": 1}, "heard": {"_count": 1}, "done": {"_count": 2}, "taken": {"_count": 1}, "approached": {"_count": 1}, "gone": {"_count": 2}, "that": {"_count": 1}, "Ron": {"_count": 1}, "about": {"_count": 2}, "": {"_count": 4}, "had": {"_count": 1}, "Stealth": {"_count": 1}, "hed": {"_count": 1}, "anticipated": {"_count": 1}, "never": {"_count": 3}, "foreseen": {"_count": 1}, "told": {"_count": 2}, "sixteen": {"_count": 1}, "turned": {"_count": 1}, "plenty": {"_count": 1}, "left": {"_count": 2}, "joined": {"_count": 1}, "murdered": {"_count": 1}, "sons": {"_count": 1}, "expected": {"_count": 1}, "tracked": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}, "advised": {"_count": 1}, "Hokey": {"_count": 1}, "didnt": {"_count": 1}, "him": {"_count": 1}, "some": {"_count": 1}, "proof": {"_count": 1}, "contracted": {"_count": 1}, "every": {"_count": 1}, "Dirk": {"_count": 1}, "hidden": {"_count": 1}, "failed": {"_count": 1}, "long": {"_count": 1}, "always": {"_count": 1}, "encouraged": {"_count": 1}, "learned": {"_count": 2}, "proven": {"_count": 1}, "craved": {"_count": 1}, "proved": {"_count": 1}, "complete": {"_count": 1}}, "get": {"_count": 23, "that": {"_count": 1}, "one": {"_count": 2}, "if": {"_count": 1}, "caught": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}, "too": {"_count": 1}, "killed": {"_count": 1}, "his": {"_count": 1}, "so": {"_count": 1}, "started": {"_count": 1}, "you": {"_count": 1}, "\u2018Outstanding": {"_count": 1}, "it": {"_count": 3}, "hold": {"_count": 1}, "a": {"_count": 1}, "married": {"_count": 1}, "rid": {"_count": 1}, "back": {"_count": 1}}, "see": {"_count": 90, "so": {"_count": 1}, "": {"_count": 15}, "what": {"_count": 5}, "one": {"_count": 2}, "myself": {"_count": 3}, "it": {"_count": 6}, "the": {"_count": 4}, "thats": {"_count": 1}, "you": {"_count": 8}, "youve": {"_count": 2}, "no": {"_count": 6}, "said": {"_count": 14}, "and": {"_count": 1}, "him": {"_count": 2}, "any": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}, "difficult": {"_count": 1}, "enough": {"_count": 1}, "Hermione": {"_count": 1}, "two": {"_count": 1}, "fit": {"_count": 1}, "Tonks": {"_count": 1}, "them": {"_count": 1}, "now": {"_count": 2}, "Professor": {"_count": 2}, "there": {"_count": 1}, "a": {"_count": 2}, "that": {"_count": 2}, "we": {"_count": 1}}, "come": {"_count": 10, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "out": {"_count": 1}, "from": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 2}, "with": {"_count": 2}}, "WANT": {"_count": 4, "MY": {"_count": 1}, "TO": {"_count": 1}, "OUT": {"_count": 1}, "IT": {"_count": 1}}, "need": {"_count": 98, "that": {"_count": 2}, "to": {"_count": 47}, "a": {"_count": 7}, "the": {"_count": 2}, "hardly": {"_count": 3}, "you": {"_count": 10}, "Get": {"_count": 1}, "Unfogging": {"_count": 1}, "Intermediate": {"_count": 1}, "with": {"_count": 1}, "feeding": {"_count": 1}, "somebody": {"_count": 1}, "Barty": {"_count": 1}, "": {"_count": 3}, "persuading": {"_count": 1}, "as": {"_count": 1}, "scarcely": {"_count": 1}, "here": {"_count": 1}, "it": {"_count": 2}, "thanks": {"_count": 1}, "ter": {"_count": 1}, "information": {"_count": 1}, "your": {"_count": 1}, "socks": {"_count": 1}, "Severus": {"_count": 1}, "both": {"_count": 1}, "some": {"_count": 3}, "him": {"_count": 1}}, "mean": {"_count": 262, "your": {"_count": 3}, "": {"_count": 35}, "theyre": {"_count": 4}, "You": {"_count": 1}, "the": {"_count": 9}, "yes": {"_count": 2}, "I": {"_count": 17}, "its": {"_count": 8}, "YouKnowWho": {"_count": 2}, "it": {"_count": 7}, "after": {"_count": 1}, "he": {"_count": 11}, "to": {"_count": 12}, "theres": {"_count": 2}, "hes": {"_count": 6}, "youd": {"_count": 1}, "everyone": {"_count": 1}, "a": {"_count": 5}, "nobody": {"_count": 1}, "thats": {"_count": 2}, "itd": {"_count": 1}, "that": {"_count": 3}, "we": {"_count": 5}, "she": {"_count": 3}, "well": {"_count": 1}, "come": {"_count": 2}, "Im": {"_count": 3}, "Harrys": {"_count": 1}, "theyve": {"_count": 1}, "Binky": {"_count": 1}, "will": {"_count": 1}, "this": {"_count": 2}, "at": {"_count": 2}, "and": {"_count": 2}, "finger": {"_count": 1}, "Black": {"_count": 1}, "when": {"_count": 6}, "how": {"_count": 1}, "what": {"_count": 4}, "last": {"_count": 1}, "they": {"_count": 4}, "youre": {"_count": 4}, "lesson": {"_count": 1}, "can": {"_count": 1}, "Bagman": {"_count": 1}, "who": {"_count": 2}, "by": {"_count": 1}, "pack": {"_count": 1}, "What": {"_count": 1}, "if": {"_count": 4}, "all": {"_count": 7}, "there": {"_count": 1}, "She": {"_count": 1}, "prefect": {"_count": 1}, "do": {"_count": 1}, "maybe": {"_count": 1}, "something": {"_count": 1}, "were": {"_count": 1}, "Harry": {"_count": 2}, "really": {"_count": 1}, "learning": {"_count": 1}, "Michael": {"_count": 1}, "shes": {"_count": 2}, "said": {"_count": 2}, "once": {"_count": 1}, "Exnellimellius": {"_count": 1}, "even": {"_count": 1}, "George": {"_count": 1}, "bad": {"_count": 1}, "some": {"_count": 1}, "obviously": {"_count": 1}, "you": {"_count": 4}, "James": {"_count": 1}, "weve": {"_count": 1}, "in": {"_count": 1}, "kids": {"_count": 1}, "Id": {"_count": 1}, "dont": {"_count": 1}, "is": {"_count": 1}, "The": {"_count": 1}, "next": {"_count": 1}, "Tonks": {"_count": 1}, "Fleur": {"_count": 1}, "yeh": {"_count": 1}, "of": {"_count": 1}, "think": {"_count": 1}, "Witherwings": {"_count": 2}, "just": {"_count": 1}, "Ive": {"_count": 1}, "anybody": {"_count": 1}, "No": {"_count": 1}, "why": {"_count": 1}, "Smith": {"_count": 1}, "thinking": {"_count": 1}, "wheres": {"_count": 1}, "would": {"_count": 1}, "for": {"_count": 1}, "Greyback": {"_count": 1}, "look": {"_count": 1}, "Goyle": {"_count": 1}, "close": {"_count": 1}, "whats": {"_count": 1}, "Cattermole": {"_count": 1}, "thanks": {"_count": 1}, "are": {"_count": 1}, "Godrics": {"_count": 1}, "Ron": {"_count": 1}}, "warn": {"_count": 3, "you": {"_count": 2}, "yeh": {"_count": 1}}, "demand": {"_count": 1, "that": {"_count": 1}}, "mighta": {"_count": 1, "sat": {"_count": 1}}, "still": {"_count": 43, "dont": {"_count": 14}, "got": {"_count": 1}, "havent": {"_count": 2}, "say": {"_count": 2}, "want": {"_count": 5}, "have": {"_count": 3}, "dream": {"_count": 1}, "cant": {"_count": 4}, "cry": {"_count": 1}, "caught": {"_count": 1}, "couldnt": {"_count": 2}, "reckon": {"_count": 2}, "receive": {"_count": 1}, "feel": {"_count": 1}, "think": {"_count": 3}}, "told": {"_count": 107, "yeh": {"_count": 3}, "you": {"_count": 50}, "her": {"_count": 12}, "him": {"_count": 21}, "the": {"_count": 1}, "Lockhart": {"_count": 1}, "Ginny": {"_count": 1}, "Justin": {"_count": 1}, "your": {"_count": 1}, "Black": {"_count": 1}, "them": {"_count": 5}, "Sirius": {"_count": 2}, "Bagman": {"_count": 1}, "Arthur": {"_count": 1}, "Dumbledore": {"_count": 1}, "myself": {"_count": 2}, "Cornelius": {"_count": 1}, "Daddy": {"_count": 1}, "em": {"_count": 1}}, "knew": {"_count": 126, "yeh": {"_count": 2}, "youd": {"_count": 6}, "it": {"_count": 22}, "what": {"_count": 8}, "at": {"_count": 2}, "I": {"_count": 16}, "who": {"_count": 2}, "why": {"_count": 2}, "you": {"_count": 15}, "wizards": {"_count": 1}, "Minerva": {"_count": 1}, "him": {"_count": 4}, "hed": {"_count": 2}, "that": {"_count": 9}, "your": {"_count": 1}, "he": {"_count": 4}, "": {"_count": 1}, "Bertha": {"_count": 1}, "her": {"_count": 1}, "wasnt": {"_count": 1}, "thats": {"_count": 1}, "the": {"_count": 2}, "and": {"_count": 1}, "something": {"_count": 1}, "a": {"_count": 2}, "yehd": {"_count": 1}, "if": {"_count": 1}, "perfectly": {"_count": 1}, "not": {"_count": 2}, "too": {"_count": 1}, "even": {"_count": 1}, "one": {"_count": 1}, "now": {"_count": 1}, "theyd": {"_count": 1}, "Sirius": {"_count": 1}, "there": {"_count": 1}, "this": {"_count": 2}, "Ginny": {"_count": 1}, "she": {"_count": 1}, "Id": {"_count": 1}, "my": {"_count": 1}}, "never": {"_count": 74, "thought": {"_count": 7}, "expected": {"_count": 1}, "know": {"_count": 2}, "knew": {"_count": 11}, "saw": {"_count": 3}, "went": {"_count": 2}, "touched": {"_count": 1}, "said": {"_count": 7}, "Professor": {"_count": 1}, "harmed": {"_count": 1}, "even": {"_count": 1}, "speak": {"_count": 1}, "wear": {"_count": 1}, "lost": {"_count": 1}, "betrayed": {"_count": 1}, "meant": {"_count": 3}, "got": {"_count": 3}, "told": {"_count": 1}, "suggested": {"_count": 1}, "was": {"_count": 1}, "noticed": {"_count": 1}, "come": {"_count": 1}, "remember": {"_count": 1}, "feel": {"_count": 1}, "want": {"_count": 1}, "dreamed": {"_count": 2}, "chose": {"_count": 1}, "deserted": {"_count": 1}, "did": {"_count": 1}, "promised": {"_count": 1}, "had": {"_count": 2}, "listened": {"_count": 1}, "really": {"_count": 2}, "used": {"_count": 1}, "wanted": {"_count": 1}, "volunteered": {"_count": 1}, "pretended": {"_count": 1}, "took": {"_count": 1}, "stopped": {"_count": 1}, "heard": {"_count": 1}, "returned": {"_count": 1}}, "forbid": {"_count": 4, "you": {"_count": 4}}, "was": {"_count": 567, "there": {"_count": 10}, "the": {"_count": 15}, "allowed": {"_count": 1}, "so": {"_count": 5}, "at": {"_count": 4}, "going": {"_count": 24}, "ter": {"_count": 1}, "a": {"_count": 23}, "trying": {"_count": 14}, "ever": {"_count": 1}, "all": {"_count": 1}, "eight": {"_count": 1}, "too": {"_count": 6}, "down": {"_count": 1}, "doing": {"_count": 8}, "meanin": {"_count": 1}, "gamekeeper": {"_count": 1}, "waiting": {"_count": 1}, "lucky": {"_count": 2}, "then": {"_count": 1}, "": {"_count": 16}, "afraid": {"_count": 4}, "unfortunate": {"_count": 1}, "getting": {"_count": 4}, "lost": {"_count": 2}, "lookin": {"_count": 1}, "twelve": {"_count": 1}, "just": {"_count": 24}, "even": {"_count": 3}, "able": {"_count": 3}, "wondering": {"_count": 7}, "three": {"_count": 1}, "asked": {"_count": 4}, "talkin": {"_count": 2}, "born": {"_count": 4}, "sleeping": {"_count": 1}, "not": {"_count": 5}, "an": {"_count": 3}, "discovered": {"_count": 1}, "well": {"_count": 1}, "crying": {"_count": 1}, "floating": {"_count": 1}, "determined": {"_count": 1}, "patient": {"_count": 1}, "sympathetic": {"_count": 1}, "kind": {"_count": 1}, "most": {"_count": 3}, "still": {"_count": 3}, "when": {"_count": 2}, "already": {"_count": 1}, "hopeless": {"_count": 1}, "saying": {"_count": 17}, "panicking": {"_count": 1}, "tying": {"_count": 1}, "looking": {"_count": 5}, "hoping": {"_count": 5}, "obviously": {"_count": 1}, "wrong": {"_count": 3}, "merely": {"_count": 3}, "under": {"_count": 10}, "seven": {"_count": 1}, "often": {"_count": 1}, "Junior": {"_count": 1}, "one": {"_count": 2}, "shocked": {"_count": 1}, "astounded": {"_count": 1}, "goin": {"_count": 1}, "playing": {"_count": 2}, "asleep": {"_count": 3}, "thinking": {"_count": 7}, "always": {"_count": 4}, "in": {"_count": 11}, "watching": {"_count": 7}, "right": {"_count": 4}, "imprisoned": {"_count": 1}, "smuggled": {"_count": 1}, "dangerous": {"_count": 1}, "separated": {"_count": 1}, "happier": {"_count": 2}, "terrified": {"_count": 1}, "with": {"_count": 2}, "breaking": {"_count": 1}, "no": {"_count": 2}, "after": {"_count": 1}, "scared": {"_count": 3}, "innocent": {"_count": 1}, "losing": {"_count": 1}, "weak": {"_count": 1}, "thin": {"_count": 1}, "your": {"_count": 2}, "never": {"_count": 2}, "seeing": {"_count": 3}, "my": {"_count": 2}, "worried": {"_count": 2}, "having": {"_count": 2}, "asking": {"_count": 1}, "away": {"_count": 1}, "dreaming": {"_count": 1}, "newly": {"_count": 1}, "half": {"_count": 1}, "telling": {"_count": 2}, "supposed": {"_count": 6}, "peckish": {"_count": 1}, "abou": {"_count": 1}, "six": {"_count": 2}, "attacked": {"_count": 1}, "alive": {"_count": 3}, "sitting": {"_count": 1}, "coming": {"_count": 2}, "joking": {"_count": 3}, "more": {"_count": 1}, "paying": {"_count": 1}, "only": {"_count": 8}, "hanging": {"_count": 1}, "out": {"_count": 1}, "forgetting": {"_count": 1}, "collecting": {"_count": 1}, "using": {"_count": 1}, "gone": {"_count": 2}, "mightier": {"_count": 1}, "constantly": {"_count": 2}, "foolish": {"_count": 1}, "ripped": {"_count": 2}, "less": {"_count": 2}, "tested": {"_count": 1}, "as": {"_count": 1}, "little": {"_count": 1}, "thwarted": {"_count": 1}, "left": {"_count": 3}, "hiding": {"_count": 3}, "soon": {"_count": 1}, "willing": {"_count": 1}, "to": {"_count": 4}, "keeping": {"_count": 1}, "sure": {"_count": 8}, "patrolling": {"_count": 1}, "forced": {"_count": 2}, "growing": {"_count": 1}, "starting": {"_count": 3}, "almost": {"_count": 2}, "angry": {"_count": 1}, "released": {"_count": 1}, "myself": {"_count": 2}, "ready": {"_count": 4}, "jokin": {"_count": 1}, "here": {"_count": 3}, "about": {"_count": 5}, "seventeen": {"_count": 1}, "new": {"_count": 1}, "was": {"_count": 1}, "buying": {"_count": 1}, "up": {"_count": 2}, "ordering": {"_count": 1}, "practicing": {"_count": 1}, "bound": {"_count": 1}, "unable": {"_count": 1}, "slashed": {"_count": 1}, "brilliant": {"_count": 2}, "unwilling": {"_count": 1}, "reading": {"_count": 1}, "on": {"_count": 2}, "hangin": {"_count": 1}, "hard": {"_count": 1}, "Senior": {"_count": 1}, "knocking": {"_count": 1}, "gonna": {"_count": 1}, "it": {"_count": 2}, "inside": {"_count": 1}, "bringing": {"_count": 1}, "YouKnowWho": {"_count": 1}, "passin": {"_count": 1}, "saving": {"_count": 2}, "and": {"_count": 1}, "fighting": {"_count": 1}, "correct": {"_count": 1}, "due": {"_count": 1}, "condemning": {"_count": 1}, "pulling": {"_count": 2}, "disappointed": {"_count": 1}, "nine": {"_count": 1}, "sacked": {"_count": 1}, "sent": {"_count": 1}, "Then": {"_count": 1}, "where": {"_count": 1}, "ordered": {"_count": 1}, "his": {"_count": 1}, "curious": {"_count": 1}, "taking": {"_count": 1}, "Head": {"_count": 1}, "said": {"_count": 4}, "passing": {"_count": 1}, "interested": {"_count": 1}, "pleased": {"_count": 1}, "twentyfour": {"_count": 1}, "fiftyseven": {"_count": 1}, "sorry": {"_count": 1}, "speaking": {"_count": 1}, "Dumbledore": {"_count": 1}, "better": {"_count": 1}, "counting": {"_count": 1}, "behind": {"_count": 2}, "different": {"_count": 1}, "special": {"_count": 1}, "certainly": {"_count": 1}, "holding": {"_count": 1}, "very": {"_count": 1}, "attempting": {"_count": 1}, "cornin": {"_count": 1}, "dreadful": {"_count": 1}, "showing": {"_count": 1}, "distantly": {"_count": 1}, "sort": {"_count": 3}, "annoyed": {"_count": 1}, "strolling": {"_count": 1}, "being": {"_count": 1}, "staying": {"_count": 1}, "assaulted": {"_count": 1}, "bindin": {"_count": 1}, "thirteen": {"_count": 1}, "awake": {"_count": 1}, "alone": {"_count": 1}, "nearly": {"_count": 1}, "writing": {"_count": 1}, "listening": {"_count": 2}, "selling": {"_count": 1}, "eleven": {"_count": 1}, "him": {"_count": 1}, "halfway": {"_count": 1}, "running": {"_count": 1}, "like": {"_count": 1}, "Ron": {"_count": 1}, "Stan": {"_count": 2}, "really": {"_count": 1}, "talking": {"_count": 1}, "told": {"_count": 1}, "her": {"_count": 1}, "Helena": {"_count": 1}, "delirious": {"_count": 1}, "such": {"_count": 2}, "gifted": {"_count": 1}, "selfish": {"_count": 1}, "safer": {"_count": 1}, "unworthy": {"_count": 1}, "fit": {"_count": 2}, "permitted": {"_count": 1}}, "FORBID": {"_count": 1, "YOU": {"_count": 1}}, "reckon": {"_count": 56, "its": {"_count": 3}, "there": {"_count": 1}, "he": {"_count": 6}, "old": {"_count": 1}, "she": {"_count": 3}, "hes": {"_count": 3}, "Ron": {"_count": 1}, "youre": {"_count": 1}, "we": {"_count": 5}, "hell": {"_count": 1}, "a": {"_count": 1}, "theyre": {"_count": 2}, "Snapes": {"_count": 1}, "": {"_count": 5}, "I": {"_count": 2}, "you": {"_count": 2}, "Ive": {"_count": 2}, "Crouch": {"_count": 1}, "theyve": {"_count": 2}, "shes": {"_count": 1}, "youll": {"_count": 2}, "abou": {"_count": 1}, "Im": {"_count": 1}, "theyd": {"_count": 1}, "if": {"_count": 1}, "thas": {"_count": 1}, "so": {"_count": 1}, "the": {"_count": 1}, "theyll": {"_count": 1}, "weve": {"_count": 1}, "Kreachers": {"_count": 1}}, "ever": {"_count": 20, "laid": {"_count": 1}, "knew": {"_count": 2}, "saw": {"_count": 1}, "He": {"_count": 1}, "met": {"_count": 2}, "find": {"_count": 1}, "suspected": {"_count": 1}, "hear": {"_count": 1}, "sneak": {"_count": 1}, "thank": {"_count": 1}, "said": {"_count": 1}, "get": {"_count": 1}, "counted": {"_count": 1}, "tell": {"_count": 1}, "have": {"_count": 1}, "had": {"_count": 1}, "taught": {"_count": 1}, "discussed": {"_count": 1}}, "don": {"_count": 30, "know": {"_count": 8}, "like": {"_count": 2}, "believe": {"_count": 2}, "spose": {"_count": 1}, "want": {"_count": 5}, "blame": {"_count": 1}, "ever": {"_count": 1}, "wan": {"_count": 4}, "fly": {"_count": 1}, "reckon": {"_count": 3}, "think": {"_count": 1}, "suppose": {"_count": 1}}, "accept": {"_count": 1, "theres": {"_count": 1}}, "expected": {"_count": 10, "always": {"_count": 1}, "": {"_count": 2}, "better": {"_count": 2}, "him": {"_count": 3}, "you": {"_count": 1}, "ter": {"_count": 1}}, "think": {"_count": 582, "you": {"_count": 32}, "I": {"_count": 41}, "Im": {"_count": 9}, "Ill": {"_count": 19}, "Id": {"_count": 9}, "hes": {"_count": 19}, "they": {"_count": 14}, "we": {"_count": 35}, "so": {"_count": 22}, "Moms": {"_count": 1}, "the": {"_count": 21}, "": {"_count": 23}, "he": {"_count": 29}, "Hermione": {"_count": 1}, "weve": {"_count": 6}, "well": {"_count": 11}, "she": {"_count": 12}, "its": {"_count": 20}, "it": {"_count": 35}, "Ive": {"_count": 13}, "said": {"_count": 15}, "youll": {"_count": 7}, "another": {"_count": 2}, "wed": {"_count": 11}, "Grans": {"_count": 1}, "shes": {"_count": 5}, "youre": {"_count": 8}, "someone": {"_count": 3}, "youd": {"_count": 4}, "not": {"_count": 3}, "thats": {"_count": 10}, "Dumbledore": {"_count": 4}, "Myrtles": {"_count": 1}, "all": {"_count": 1}, "two": {"_count": 1}, "Arthur": {"_count": 2}, "what": {"_count": 3}, "people": {"_count": 1}, "Divination": {"_count": 1}, "youve": {"_count": 6}, "was": {"_count": 1}, "were": {"_count": 5}, "of": {"_count": 4}, "Harry": {"_count": 3}, "He": {"_count": 1}, "will": {"_count": 1}, "theyve": {"_count": 2}, "hell": {"_count": 2}, "Mr": {"_count": 2}, "Durmstrang": {"_count": 1}, "this": {"_count": 6}, "your": {"_count": 1}, "Harrys": {"_count": 2}, "even": {"_count": 1}, "how": {"_count": 1}, "in": {"_count": 1}, "Dobby": {"_count": 1}, "that": {"_count": 13}, "Mollys": {"_count": 1}, "theyre": {"_count": 1}, "a": {"_count": 7}, "Dumbledores": {"_count": 1}, "with": {"_count": 1}, "correct": {"_count": 1}, "learning": {"_count": 1}, "hed": {"_count": 2}, "does": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "Voldemort": {"_count": 1}, "111": {"_count": 1}, "there": {"_count": 4}, "Minister": {"_count": 1}, "one": {"_count": 1}, "James": {"_count": 1}, "Ron": {"_count": 1}, "yeh": {"_count": 1}, "some": {"_count": 1}, "whispered": {"_count": 1}, "her": {"_count": 3}, "Potter": {"_count": 2}, "Professor": {"_count": 1}, "Buckbeak": {"_count": 1}, "ouch": {"_count": 1}, "Sirius": {"_count": 1}, "eet": {"_count": 1}, "Norfolk": {"_count": 1}, "Draco": {"_count": 1}, "whatever": {"_count": 1}, "Harper": {"_count": 1}, "on": {"_count": 1}, "theres": {"_count": 3}, "probably": {"_count": 1}, "been": {"_count": 1}, "itll": {"_count": 1}, "Filch": {"_count": 1}, "be": {"_count": 1}, "Dung": {"_count": 1}, "Hermiones": {"_count": 2}, "Mum": {"_count": 1}, "Voldemorts": {"_count": 1}, "dating": {"_count": 1}, "Fred": {"_count": 1}, "Bathilda": {"_count": 1}, "somebodys": {"_count": 1}, "about": {"_count": 1}, "is": {"_count": 2}, "murmured": {"_count": 1}, "Rons": {"_count": 1}, "ought": {"_count": 1}, "have": {"_count": 1}, "happened": {"_count": 1}, "ever": {"_count": 1}, "than": {"_count": 1}}, "AM": {"_count": 2, "NOT": {"_count": 1}, "GOING": {"_count": 1}}, "er": {"_count": 6, "got": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "heard": {"_count": 1}, "had": {"_count": 1}}, "dreamed": {"_count": 5, "a": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 3}}, "open": {"_count": 7, "my": {"_count": 2}, "at": {"_count": 5}}, "wouldn": {"_count": 4, "say": {"_count": 1}, "tell": {"_count": 1}, "give": {"_count": 1}, "be": {"_count": 1}}, "gotta": {"_count": 2, "visit": {"_count": 1}, "tell": {"_count": 1}}, "am": {"_count": 385, "to": {"_count": 5}, "Fred": {"_count": 1}, "": {"_count": 26}, "Im": {"_count": 1}, "weak": {"_count": 2}, "resting": {"_count": 1}, "in": {"_count": 2}, "I": {"_count": 3}, "here": {"_count": 9}, "the": {"_count": 4}, "dead": {"_count": 1}, "minding": {"_count": 1}, "now": {"_count": 4}, "hopeful": {"_count": 2}, "Cornelius": {"_count": 1}, "pleased": {"_count": 3}, "sorry": {"_count": 7}, "delighted": {"_count": 3}, "sure": {"_count": 46}, "very": {"_count": 6}, "leaving": {"_count": 1}, "headmaster": {"_count": 1}, "teaching": {"_count": 1}, "telling": {"_count": 1}, "up": {"_count": 5}, "not": {"_count": 38}, "going": {"_count": 12}, "however": {"_count": 1}, "anxious": {"_count": 1}, "a": {"_count": 14}, "able": {"_count": 1}, "no": {"_count": 2}, "planning": {"_count": 1}, "enclosing": {"_count": 1}, "determined": {"_count": 1}, "calling": {"_count": 1}, "much": {"_count": 2}, "said": {"_count": 16}, "glad": {"_count": 8}, "fully": {"_count": 1}, "right": {"_count": 4}, "likely": {"_count": 1}, "itll": {"_count": 1}, "thinking": {"_count": 1}, "becoming": {"_count": 1}, "your": {"_count": 3}, "merely": {"_count": 4}, "what": {"_count": 1}, "an": {"_count": 1}, "constantly": {"_count": 1}, "eager": {"_count": 1}, "growing": {"_count": 1}, "told": {"_count": 2}, "guessing": {"_count": 2}, "afraid": {"_count": 17}, "interfering": {"_count": 1}, "talking": {"_count": 3}, "mistaken": {"_count": 2}, "oping": {"_count": 1}, "though": {"_count": 1}, "aware": {"_count": 5}, "still": {"_count": 2}, "quite": {"_count": 1}, "trying": {"_count": 2}, "sending": {"_count": 2}, "they": {"_count": 2}, "saying": {"_count": 2}, "giving": {"_count": 3}, "too": {"_count": 3}, "setting": {"_count": 1}, "he": {"_count": 1}, "about": {"_count": 2}, "making": {"_count": 1}, "working": {"_count": 1}, "forced": {"_count": 3}, "happy": {"_count": 1}, "banished": {"_count": 1}, "confused": {"_count": 1}, "dont": {"_count": 1}, "left": {"_count": 1}, "Dolores": {"_count": 1}, "Senior": {"_count": 1}, "all": {"_count": 1}, "ready": {"_count": 1}, "speaking": {"_count": 3}, "being": {"_count": 1}, "neither": {"_count": 1}, "perfectly": {"_count": 2}, "thats": {"_count": 1}, "asking": {"_count": 1}, "one": {"_count": 1}, "yours": {"_count": 2}, "indeed": {"_count": 1}, "Horace": {"_count": 1}, "undoubtedly": {"_count": 1}, "correct": {"_count": 1}, "reunited": {"_count": 1}, "theenking": {"_count": 1}, "considered": {"_count": 1}, "surprised": {"_count": 3}, "inclined": {"_count": 1}, "already": {"_count": 1}, "Professor": {"_count": 1}, "simply": {"_count": 1}, "returned": {"_count": 1}, "with": {"_count": 2}, "then": {"_count": 1}, "his": {"_count": 1}, "ordered": {"_count": 1}, "only": {"_count": 1}, "known": {"_count": 1}, "ashamed": {"_count": 2}, "convinced": {"_count": 2}, "confident": {"_count": 1}, "off": {"_count": 1}, "distracted": {"_count": 1}, "more": {"_count": 1}, "so": {"_count": 2}, "goodlooking": {"_count": 1}, "probably": {"_count": 1}, "or": {"_count": 1}, "Kingsley": {"_count": 1}, "gatecrashing": {"_count": 1}, "Remus": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 2}, "related": {"_count": 1}, "coming": {"_count": 1}, "extraordinary": {"_count": 1}, "fortunate": {"_count": 1}, "concerned": {"_count": 1}, "counting": {"_count": 1}}, "said": {"_count": 66, "yehd": {"_count": 2}, "when": {"_count": 1}, "what": {"_count": 1}, "it": {"_count": 2}, "I": {"_count": 8}, "but": {"_count": 1}, "no": {"_count": 2}, "Harry": {"_count": 3}, "shell": {"_count": 1}, "disarm": {"_count": 1}, "before": {"_count": 1}, "Percy": {"_count": 1}, "": {"_count": 4}, "get": {"_count": 1}, "come": {"_count": 1}, "thats": {"_count": 1}, "to": {"_count": 4}, "Ced": {"_count": 1}, "about": {"_count": 2}, "Cedric": {"_count": 1}, "bow": {"_count": 1}, "Moody": {"_count": 1}, "Uncle": {"_count": 1}, "SHUT": {"_count": 1}, "do": {"_count": 1}, "shut": {"_count": 2}, "illuminating": {"_count": 1}, "leave": {"_count": 1}, "Altars": {"_count": 1}, "Ron": {"_count": 1}, "\u2018e": {"_count": 1}, "whats": {"_count": 1}, "Hermione": {"_count": 2}, "Id": {"_count": 3}, "she": {"_count": 1}, "muttered": {"_count": 1}, "doesnt": {"_count": 1}, "all": {"_count": 1}, "Dumbledore": {"_count": 1}, "repeated": {"_count": 1}, "the": {"_count": 1}, "drop": {"_count": 1}, "a": {"_count": 1}}, "keep": {"_count": 15, "me": {"_count": 1}, "forgettin": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 2}, "telling": {"_count": 3}, "him": {"_count": 1}, "this": {"_count": 1}, "watch": {"_count": 2}, "running": {"_count": 1}, "drinking": {"_count": 1}, "trying": {"_count": 1}}, "slipped": {"_count": 4, "off": {"_count": 2}, "past": {"_count": 1}, "in": {"_count": 1}}, "hate": {"_count": 14, "them": {"_count": 2}, "maroon": {"_count": 1}, "talking": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "being": {"_count": 1}, "that": {"_count": 1}, "more": {"_count": 1}, "it": {"_count": 2}, "not": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}}, "do": {"_count": 155, "Father": {"_count": 1}, "its": {"_count": 1}, "hope": {"_count": 6}, "think": {"_count": 2}, "feel": {"_count": 2}, "believe": {"_count": 2}, "that": {"_count": 4}, "said": {"_count": 18}, "have": {"_count": 1}, "not": {"_count": 66}, "like": {"_count": 2}, "Severus": {"_count": 1}, "beg": {"_count": 1}, "": {"_count": 18}, "about": {"_count": 1}, "Hagrid": {"_count": 1}, "it": {"_count": 2}, "mind": {"_count": 1}, "want": {"_count": 1}, "know": {"_count": 1}, "Molly": {"_count": 1}, "see": {"_count": 1}, "I": {"_count": 2}, "Bellatrix": {"_count": 1}, "for": {"_count": 1}, "Narcissa": {"_count": 1}, "love": {"_count": 1}, "but": {"_count": 2}, "with": {"_count": 2}, "mine": {"_count": 1}, "therefore": {"_count": 1}, "she": {"_count": 1}, "thank": {"_count": 1}, "how": {"_count": 1}, "remember": {"_count": 1}, "them": {"_count": 1}, "all": {"_count": 1}, "enjoy": {"_count": 1}, "Harry": {"_count": 1}, "on": {"_count": 1}}, "agree": {"_count": 9, "": {"_count": 1}, "sir": {"_count": 1}, "with": {"_count": 2}, "we": {"_count": 1}, "weve": {"_count": 1}, "said": {"_count": 2}, "I": {"_count": 1}}, "really": {"_count": 46, "dont": {"_count": 10}, "think": {"_count": 5}, "wanted": {"_count": 2}, "should": {"_count": 1}, "never": {"_count": 1}, "hope": {"_count": 4}, "want": {"_count": 2}, "Hagrid": {"_count": 1}, "didnt": {"_count": 1}, "hoped": {"_count": 1}, "wish": {"_count": 1}, "would": {"_count": 1}, "need": {"_count": 2}, "fancied": {"_count": 1}, "like": {"_count": 1}, "do": {"_count": 5}, "thought": {"_count": 2}, "was": {"_count": 1}, "couldnt": {"_count": 1}, "must": {"_count": 1}, "hate": {"_count": 1}, "stammered": {"_count": 1}}, "bet": {"_count": 57, "Im": {"_count": 2}, "he": {"_count": 7}, "thats": {"_count": 2}, "she": {"_count": 2}, "theres": {"_count": 1}, "youll": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 2}, "there": {"_count": 2}, "loads": {"_count": 1}, "its": {"_count": 2}, "you": {"_count": 7}, "Dumbledore": {"_count": 2}, "hes": {"_count": 2}, "youre": {"_count": 1}, "hell": {"_count": 1}, "it": {"_count": 4}, "they": {"_count": 2}, "theyd": {"_count": 1}, "Sirius": {"_count": 1}, "we": {"_count": 1}, "Krum": {"_count": 1}, "shes": {"_count": 1}, "hed": {"_count": 1}, "my": {"_count": 1}, "theyre": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "shed": {"_count": 2}, "Snape": {"_count": 1}, "Voldemort": {"_count": 1}}, "thought": {"_count": 269, "Id": {"_count": 5}, "it": {"_count": 26}, "you": {"_count": 44}, "I": {"_count": 30}, "wed": {"_count": 11}, "Gryffindor": {"_count": 1}, "Snape": {"_count": 3}, "your": {"_count": 2}, "Were": {"_count": 1}, "youd": {"_count": 11}, "so": {"_count": 3}, "he": {"_count": 19}, "someone": {"_count": 2}, "that": {"_count": 7}, "they": {"_count": 8}, "and": {"_count": 1}, "a": {"_count": 2}, "we": {"_count": 16}, "the": {"_count": 6}, "she": {"_count": 6}, "Mr": {"_count": 1}, "theyd": {"_count": 2}, "two": {"_count": 1}, "there": {"_count": 3}, "shed": {"_count": 1}, "": {"_count": 9}, "Care": {"_count": 1}, "for": {"_count": 1}, "his": {"_count": 1}, "might": {"_count": 1}, "only": {"_count": 1}, "Voldemort": {"_count": 1}, "You": {"_count": 1}, "Ginny": {"_count": 1}, "what": {"_count": 1}, "this": {"_count": 2}, "said": {"_count": 4}, "not": {"_count": 2}, "of": {"_count": 2}, "Professor": {"_count": 1}, "dementors": {"_count": 1}, "perhaps": {"_count": 2}, "Im": {"_count": 1}, "Transfiguration": {"_count": 1}, "Malfoy": {"_count": 1}, "Gran": {"_count": 1}, "hed": {"_count": 2}, "but": {"_count": 2}, "Filch": {"_count": 1}, "all": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 1}, "everyone": {"_count": 1}, "maybe": {"_count": 2}, "Harry": {"_count": 1}, "something": {"_count": 1}, "impossible": {"_count": 1}, "MadEye": {"_count": 1}, "They": {"_count": 1}, "M": {"_count": 1}, "Quidditch": {"_count": 1}, "too": {"_count": 1}, "Gringotts": {"_count": 1}, "was": {"_count": 1}}, "sold": {"_count": 1, "the": {"_count": 1}}, "wonder": {"_count": 46, "now": {"_count": 1}, "wholl": {"_count": 1}, "what": {"_count": 9}, "why": {"_count": 9}, "dear": {"_count": 1}, "could": {"_count": 1}, "whats": {"_count": 2}, "": {"_count": 3}, "if": {"_count": 5}, "how": {"_count": 2}, "whether": {"_count": 5}, "said": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}, "where": {"_count": 1}, "when": {"_count": 2}, "whezzer": {"_count": 1}}, "remember": {"_count": 33, "every": {"_count": 1}, "him": {"_count": 3}, "a": {"_count": 1}, "something": {"_count": 1}, "it": {"_count": 5}, "how": {"_count": 1}, "Mum": {"_count": 1}, "them": {"_count": 1}, "when": {"_count": 3}, "my": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "her": {"_count": 1}, "only": {"_count": 1}, "rightly": {"_count": 1}, "dear": {"_count": 1}, "she": {"_count": 1}, "correctly": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}, "interviewing": {"_count": 1}, "everything": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 2}}, "did": {"_count": 122, "still": {"_count": 1}, "an": {"_count": 1}, "to": {"_count": 2}, "Harry": {"_count": 1}, "it": {"_count": 13}, "think": {"_count": 3}, "on": {"_count": 1}, "express": {"_count": 1}, "not": {"_count": 29}, "": {"_count": 24}, "hear": {"_count": 2}, "as": {"_count": 1}, "said": {"_count": 9}, "indeed": {"_count": 1}, "Professor": {"_count": 1}, "my": {"_count": 3}, "him": {"_count": 1}, "warn": {"_count": 1}, "win": {"_count": 1}, "magic": {"_count": 1}, "but": {"_count": 2}, "the": {"_count": 1}, "he": {"_count": 3}, "them": {"_count": 1}, "yeah": {"_count": 1}, "bits": {"_count": 1}, "attack": {"_count": 1}, "couldnt": {"_count": 1}, "nine": {"_count": 1}, "myself": {"_count": 1}, "all": {"_count": 1}, "wonder": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}, "know": {"_count": 1}, "wrong": {"_count": 1}, "everything": {"_count": 1}, "too": {"_count": 1}, "then": {"_count": 1}, "so": {"_count": 1}, "at": {"_count": 1}, "Confund": {"_count": 1}}, "go": {"_count": 24, "Youre": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 2}, "now": {"_count": 2}, "said": {"_count": 1}, "and": {"_count": 7}, "to": {"_count": 3}, "looking": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 2}, "its": {"_count": 1}, "round": {"_count": 1}, "out": {"_count": 1}}, "wondered": {"_count": 11, "": {"_count": 2}, "whether": {"_count": 2}, "where": {"_count": 1}, "you": {"_count": 1}, "ow": {"_count": 1}, "what": {"_count": 3}, "that": {"_count": 1}}, "might": {"_count": 47, "get": {"_count": 2}, "not": {"_count": 6}, "be": {"_count": 9}, "speak": {"_count": 1}, "strangle": {"_count": 1}, "tell": {"_count": 1}, "need": {"_count": 1}, "add": {"_count": 2}, "even": {"_count": 1}, "go": {"_count": 2}, "remind": {"_count": 1}, "look": {"_count": 1}, "never": {"_count": 1}, "have": {"_count": 6}, "just": {"_count": 1}, "": {"_count": 1}, "still": {"_count": 2}, "make": {"_count": 1}, "prefer": {"_count": 1}, "use": {"_count": 1}, "well": {"_count": 1}, "one": {"_count": 1}, "give": {"_count": 1}, "ask": {"_count": 1}, "drink": {"_count": 1}}, "brought": {"_count": 15, "Scabbers": {"_count": 1}, "Ron": {"_count": 1}, "him": {"_count": 2}, "this": {"_count": 1}, "you": {"_count": 4}, "some": {"_count": 1}, "something": {"_count": 1}, "her": {"_count": 1}, "yeh": {"_count": 1}, "us": {"_count": 1}, "about": {"_count": 1}}, "tried": {"_count": 18, "to": {"_count": 12}, "she": {"_count": 1}, "out": {"_count": 1}, "a": {"_count": 1}, "Draco": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "hope": {"_count": 83, "Im": {"_count": 1}, "shes": {"_count": 1}, "each": {"_count": 1}, "youre": {"_count": 5}, "boys": {"_count": 1}, "its": {"_count": 4}, "you": {"_count": 16}, "this": {"_count": 3}, "": {"_count": 2}, "my": {"_count": 2}, "theyre": {"_count": 1}, "it": {"_count": 2}, "Rons": {"_count": 1}, "the": {"_count": 4}, "hes": {"_count": 3}, "theres": {"_count": 1}, "those": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}, "she": {"_count": 3}, "Dumbledore": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 4}, "youve": {"_count": 2}, "they": {"_count": 4}, "that": {"_count": 3}, "we": {"_count": 2}, "to": {"_count": 3}, "very": {"_count": 1}, "Luna": {"_count": 1}, "then": {"_count": 1}, "be": {"_count": 1}, "for": {"_count": 2}, "so": {"_count": 1}, "everythings": {"_count": 1}, "Mr": {"_count": 1}}, "hear": {"_count": 20, "Dumbledore": {"_count": 1}, "youve": {"_count": 1}, "said": {"_count": 1}, "youre": {"_count": 2}, "the": {"_count": 2}, "Nagini": {"_count": 1}, "shes": {"_count": 1}, "yous": {"_count": 1}, "yeh": {"_count": 1}, "that": {"_count": 2}, "there": {"_count": 1}, "she": {"_count": 1}, "right": {"_count": 1}, "has": {"_count": 1}, "someone": {"_count": 1}, "you": {"_count": 1}, "Voldemort": {"_count": 1}}, "were": {"_count": 25, "you": {"_count": 11}, "back": {"_count": 1}, "talking": {"_count": 1}, "in": {"_count": 2}, "a": {"_count": 2}, "not": {"_count": 1}, "made": {"_count": 1}, "on": {"_count": 1}, "both": {"_count": 1}, "to": {"_count": 1}, "there": {"_count": 1}, "brought": {"_count": 1}, "raised": {"_count": 1}}, "only": {"_count": 31, "came": {"_count": 2}, "need": {"_count": 2}, "hope": {"_count": 2}, "know": {"_count": 3}, "wish": {"_count": 1}, "said": {"_count": 4}, "just": {"_count": 3}, "qualified": {"_count": 1}, "used": {"_count": 1}, "asked": {"_count": 1}, "remembered": {"_count": 1}, "Yeah": {"_count": 1}, "meant": {"_count": 2}, "work": {"_count": 1}, "met": {"_count": 1}, "ever": {"_count": 2}, "feared": {"_count": 1}, "dreaded": {"_count": 1}, "forgot": {"_count": 1}}, "suggest": {"_count": 16, "you": {"_count": 9}, "Headmaster": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 2}, "we": {"_count": 2}}, "read": {"_count": 7, "about": {"_count": 4}, "it": {"_count": 2}, "the": {"_count": 1}}, "call": {"_count": 4, "your": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 1}}, "put": {"_count": 14, "you": {"_count": 2}, "my": {"_count": 3}, "one": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "Mr": {"_count": 1}, "a": {"_count": 1}, "into": {"_count": 1}, "on": {"_count": 1}, "it": {"_count": 1}}, "nearly": {"_count": 4, "drowned": {"_count": 1}, "always": {"_count": 1}, "did": {"_count": 1}, "forgot": {"_count": 1}}, "bounced": {"_count": 1, "all": {"_count": 1}}, "usually": {"_count": 4, "have": {"_count": 1}, "save": {"_count": 1}, "Apparate": {"_count": 1}, "do": {"_count": 1}}, "added": {"_count": 1, "powdered": {"_count": 1}}, "spent": {"_count": 3, "half": {"_count": 1}, "the": {"_count": 1}, "too": {"_count": 1}}, "liked": {"_count": 7, "him": {"_count": 1}, "Diggory": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "books": {"_count": 1}, "my": {"_count": 1}, "that": {"_count": 1}}, "always": {"_count": 24, "wanted": {"_count": 2}, "value": {"_count": 1}, "said": {"_count": 2}, "hope": {"_count": 1}, "knew": {"_count": 4}, "thought": {"_count": 5}, "told": {"_count": 1}, "find": {"_count": 1}, "stay": {"_count": 1}, "managed": {"_count": 1}, "get": {"_count": 1}, "do": {"_count": 1}, "wondered": {"_count": 1}, "hoped": {"_count": 1}, "think": {"_count": 1}}, "forget": {"_count": 3, "things": {"_count": 1}, "one": {"_count": 1}, "said": {"_count": 1}}, "blow": {"_count": 1, "my": {"_count": 1}}, "take": {"_count": 22, "this": {"_count": 1}, "your": {"_count": 2}, "you": {"_count": 2}, "it": {"_count": 10}, "him": {"_count": 1}, "Harry": {"_count": 1}, "only": {"_count": 1}, "as": {"_count": 1}, "my": {"_count": 2}, "the": {"_count": 1}}, "borrow": {"_count": 5, "Wood": {"_count": 1}, "this": {"_count": 1}, "Hedwig": {"_count": 1}, "your": {"_count": 2}}, "couldnt": {"_count": 50, "look": {"_count": 1}, "help": {"_count": 2}, "remember": {"_count": 2}, "do": {"_count": 4}, "have": {"_count": 5}, "hear": {"_count": 2}, "fit": {"_count": 1}, "believe": {"_count": 2}, "leave": {"_count": 3}, "see": {"_count": 3}, "use": {"_count": 1}, "": {"_count": 2}, "understand": {"_count": 2}, "said": {"_count": 2}, "think": {"_count": 3}, "fight": {"_count": 1}, "guarantee": {"_count": 1}, "change": {"_count": 1}, "tell": {"_count": 3}, "let": {"_count": 2}, "stop": {"_count": 1}, "get": {"_count": 2}, "lift": {"_count": 1}, "go": {"_count": 1}, "ask": {"_count": 1}, "stand": {"_count": 1}}, "may": {"_count": 7, "change": {"_count": 1}, "be": {"_count": 4}, "spare": {"_count": 1}, "have": {"_count": 1}}, "start": {"_count": 2, "training": {"_count": 1}, "bleeding": {"_count": 1}}, "tell": {"_count": 43, "you": {"_count": 32}, "him": {"_count": 4}, "yeh": {"_count": 1}, "Buckbeak": {"_count": 1}, "your": {"_count": 1}, "Dad": {"_count": 1}, "her": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}}, "wave": {"_count": 1, "my": {"_count": 1}}, "almost": {"_count": 2, "told": {"_count": 1}, "forgot": {"_count": 1}}, "warned": {"_count": 7, "you": {"_count": 3}, "her": {"_count": 2}, "him": {"_count": 1}, "Sirius": {"_count": 1}}, "going": {"_count": 8, "to": {"_count": 8}}, "wasnt": {"_count": 38, "looking": {"_count": 1}, "there": {"_count": 2}, "paying": {"_count": 1}, "going": {"_count": 6}, "supposed": {"_count": 1}, "too": {"_count": 1}, "thinking": {"_count": 1}, "offering": {"_count": 1}, "accusing": {"_count": 1}, "": {"_count": 3}, "doing": {"_count": 1}, "the": {"_count": 2}, "involved": {"_count": 1}, "really": {"_count": 1}, "But": {"_count": 1}, "stopping": {"_count": 1}, "attacking": {"_count": 1}, "so": {"_count": 1}, "expecting": {"_count": 2}, "sure": {"_count": 2}, "feeling": {"_count": 1}, "worried": {"_count": 1}, "already": {"_count": 1}, "invited": {"_count": 1}, "bothered": {"_count": 1}, "trying": {"_count": 1}, "at": {"_count": 1}}, "went": {"_count": 26, "looking": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 2}, "every": {"_count": 1}, "to": {"_count": 7}, "ter": {"_count": 1}, "up": {"_count": 1}, "back": {"_count": 3}, "down": {"_count": 1}, "through": {"_count": 4}, "in": {"_count": 1}, "into": {"_count": 1}, "with": {"_count": 1}, "around": {"_count": 1}}, "I": {"_count": 61, "thought": {"_count": 3}, "didnt": {"_count": 3}, "know": {"_count": 5}, "mean": {"_count": 1}, "dont": {"_count": 6}, "really": {"_count": 2}, "sswear": {"_count": 1}, "forgot": {"_count": 2}, "think": {"_count": 3}, "remembered": {"_count": 1}, "will": {"_count": 1}, "did": {"_count": 2}, "took": {"_count": 1}, "wan": {"_count": 1}, "have": {"_count": 3}, "I": {"_count": 1}, "is": {"_count": 2}, "never": {"_count": 1}, "reckon": {"_count": 2}, "do": {"_count": 1}, "saw": {"_count": 1}, "am": {"_count": 1}, "alone": {"_count": 1}, "shall": {"_count": 1}, "said": {"_count": 1}, "He": {"_count": 1}, "dunno": {"_count": 1}, "111": {"_count": 1}, "packed": {"_count": 1}, "made": {"_count": 1}, "stammered": {"_count": 1}, "forced": {"_count": 1}, "want": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "cant": {"_count": 1}, "Percy": {"_count": 1}, "cannot": {"_count": 1}, "come": {"_count": 1}}, "didn": {"_count": 6, "know": {"_count": 3}, "get": {"_count": 1}, "wan": {"_count": 1}, "have": {"_count": 1}}, "found": {"_count": 23, "out": {"_count": 8}, "one": {"_count": 1}, "it": {"_count": 2}, "this": {"_count": 2}, "you": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 1}, "oh": {"_count": 1}, "myself": {"_count": 1}, "something": {"_count": 1}, "that": {"_count": 1}, "glasses": {"_count": 1}, "": {"_count": 1}}, "met": {"_count": 14, "in": {"_count": 1}, "him": {"_count": 6}, "Black": {"_count": 1}, "McGonagall": {"_count": 1}, "Bode": {"_count": 1}, "Mundungus": {"_count": 1}, "Malfoy": {"_count": 1}, "Albus": {"_count": 1}, "Dean": {"_count": 1}}, "lent": {"_count": 1, "him": {"_count": 1}}, "look": {"_count": 18, "older": {"_count": 1}, "after": {"_count": 1}, "in": {"_count": 1}, "without": {"_count": 1}, "stupid": {"_count": 1}, "to": {"_count": 1}, "like": {"_count": 5}, "forward": {"_count": 2}, "carrying": {"_count": 2}, "": {"_count": 2}, "as": {"_count": 1}}, "dunno": {"_count": 78, "Ive": {"_count": 2}, "dodgy": {"_count": 1}, "Ron": {"_count": 1}, "chuckled": {"_count": 1}, "Harry": {"_count": 4}, "": {"_count": 14}, "said": {"_count": 16}, "I": {"_count": 1}, "if": {"_count": 6}, "maybe": {"_count": 1}, "when": {"_count": 2}, "what": {"_count": 3}, "they": {"_count": 1}, "really": {"_count": 1}, "last": {"_count": 1}, "can": {"_count": 1}, "why": {"_count": 5}, "how": {"_count": 3}, "where": {"_count": 1}, "Weasley": {"_count": 1}, "Voldemort": {"_count": 1}, "there": {"_count": 1}, "whether": {"_count": 1}, "empty": {"_count": 1}, "Professor": {"_count": 1}, "though": {"_count": 1}, "do": {"_count": 2}, "some": {"_count": 1}, "exactly": {"_count": 2}, "it": {"_count": 1}}, "ask": {"_count": 35, "you": {"_count": 17}, "is": {"_count": 1}, "for": {"_count": 1}, "how": {"_count": 1}, "myself": {"_count": 2}, "what": {"_count": 2}, "only": {"_count": 2}, "your": {"_count": 1}, "Sybill": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "whether": {"_count": 2}, "why": {"_count": 1}, "him": {"_count": 1}, "this": {"_count": 1}}, "back": {"_count": 1, "out": {"_count": 1}}, "You": {"_count": 1, "dont": {"_count": 1}}, "dddont": {"_count": 1, "Very": {"_count": 1}}, "gave": {"_count": 14, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 7}, "him": {"_count": 1}, "it": {"_count": 2}, "an": {"_count": 1}, "them": {"_count": 1}}, "studying": {"_count": 1, "for": {"_count": 1}}, "sppose": {"_count": 1, "yehve": {"_count": 1}}, "left": {"_count": 18, "he": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 3}, "The": {"_count": 1}, "for": {"_count": 1}, "you": {"_count": 1}, "with": {"_count": 1}, "this": {"_count": 1}, "Hogwarts": {"_count": 2}, "some": {"_count": 1}, "said": {"_count": 1}}, "shouldnt": {"_count": 11, "have": {"_count": 7}, "be": {"_count": 1}, "ve": {"_count": 1}, "come": {"_count": 1}, "think": {"_count": 1}}, "bin": {"_count": 3, "waitin": {"_count": 1}, "stupid": {"_count": 1}, "readin": {"_count": 1}}, "set": {"_count": 7, "myself": {"_count": 1}, "foot": {"_count": 1}, "out": {"_count": 2}, "my": {"_count": 1}, "you": {"_count": 2}}, "leave": {"_count": 5, "you": {"_count": 1}, "there": {"_count": 1}, "Professor": {"_count": 1}, "my": {"_count": 2}}, "neednt": {"_count": 1, "have": {"_count": 1}}, "wish": {"_count": 50, "I": {"_count": 14}, "there": {"_count": 1}, "people": {"_count": 1}, "he": {"_count": 3}, "you": {"_count": 6}, "to": {"_count": 10}, "youd": {"_count": 2}, "England": {"_count": 1}, "it": {"_count": 1}, "hed": {"_count": 1}, "Fred": {"_count": 1}, "she": {"_count": 1}, "theyd": {"_count": 2}, "him": {"_count": 1}, "yehd": {"_count": 1}, "old": {"_count": 1}, "Mr": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}}, "woke": {"_count": 3, "up": {"_count": 3}}, "remembered": {"_count": 8, "wed": {"_count": 1}, "that": {"_count": 1}, "those": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 2}}, "wanted": {"_count": 48, "": {"_count": 4}, "to": {"_count": 32}, "a": {"_count": 3}, "Harry": {"_count": 1}, "the": {"_count": 2}, "answers": {"_count": 1}, "Ron": {"_count": 1}, "ter": {"_count": 1}, "somewhere": {"_count": 1}, "glory": {"_count": 1}, "you": {"_count": 1}}, "shouldnta": {"_count": 3, "told": {"_count": 1}, "heard": {"_count": 1}, "tried": {"_count": 1}}, "most": {"_count": 1, "certainly": {"_count": 1}}, "make": {"_count": 7, "my": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "myself": {"_count": 1}, "mistakes": {"_count": 1}, "it": {"_count": 1}, "sure": {"_count": 1}}, "find": {"_count": 9, "it": {"_count": 2}, "out": {"_count": 2}, "that": {"_count": 2}, "you": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "traveled": {"_count": 1, "around": {"_count": 1}}, "failed": {"_count": 3, "to": {"_count": 2}, "dismally": {"_count": 1}}, "break": {"_count": 1, "it": {"_count": 1}}, "Ive": {"_count": 6, "won": {"_count": 1}, "got": {"_count": 2}, "thought": {"_count": 1}, "been": {"_count": 1}, "already": {"_count": 1}}, "killed": {"_count": 6, "your": {"_count": 1}, "Bertha": {"_count": 1}, "my": {"_count": 2}, "you": {"_count": 1}, "Severus": {"_count": 1}}, "cannot": {"_count": 39, "hold": {"_count": 1}, "tell": {"_count": 3}, "say": {"_count": 2}, "possibly": {"_count": 1}, "deny": {"_count": 1}, "make": {"_count": 1}, "permit": {"_count": 1}, "allow": {"_count": 1}, "touch": {"_count": 2}, "help": {"_count": 2}, "manage": {"_count": 1}, "answer": {"_count": 3}, "speak": {"_count": 1}, "pretend": {"_count": 5}, "stay": {"_count": 1}, "emphasize": {"_count": 1}, "let": {"_count": 1}, "ask": {"_count": 1}, "approach": {"_count": 1}, "defend": {"_count": 1}, "understand": {"_count": 1}, "remember": {"_count": 1}, "believe": {"_count": 1}, "be": {"_count": 2}, "lose": {"_count": 1}, "bear": {"_count": 1}, "promise": {"_count": 1}}, "Harry": {"_count": 2, "please": {"_count": 1}, "felt": {"_count": 1}}, "believe": {"_count": 65, "your": {"_count": 2}, "you": {"_count": 7}, "it": {"_count": 4}, "I": {"_count": 3}, "": {"_count": 9}, "the": {"_count": 2}, "my": {"_count": 1}, "theres": {"_count": 1}, "and": {"_count": 1}, "yeh": {"_count": 1}, "he": {"_count": 4}, "Neville": {"_count": 1}, "has": {"_count": 1}, "Harry": {"_count": 1}, "examination": {"_count": 1}, "HeWhoMust": {"_count": 1}, "that": {"_count": 13}, "learned": {"_count": 1}, "complete": {"_count": 1}, "is": {"_count": 1}, "more": {"_count": 1}, "from": {"_count": 1}, "without": {"_count": 1}, "not": {"_count": 1}, "so": {"_count": 1}, "its": {"_count": 2}, "Gregorovitch": {"_count": 1}, "both": {"_count": 1}}, "been": {"_count": 2, "in": {"_count": 1}, "a": {"_count": 1}}, "arrived": {"_count": 8, "in": {"_count": 2}, "just": {"_count": 1}, "at": {"_count": 3}, "I": {"_count": 1}, "it": {"_count": 1}}, "reached": {"_count": 3, "London": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}}, "feared": {"_count": 4, "I": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 1}}, "beg": {"_count": 18, "you": {"_count": 9}, "your": {"_count": 8}, "a": {"_count": 1}}, "understand": {"_count": 20, "it": {"_count": 2}, "": {"_count": 2}, "sir": {"_count": 1}, "Parseltongue": {"_count": 1}, "a": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 3}, "with": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}, "those": {"_count": 1}, "better": {"_count": 1}, "why": {"_count": 2}, "my": {"_count": 1}, "murmured": {"_count": 1}}, "award": {"_count": 3, "Gryffindor": {"_count": 3}}, "therefore": {"_count": 3, "award": {"_count": 1}, "warn": {"_count": 1}, "beg": {"_count": 1}}, "promise": {"_count": 8, "you": {"_count": 6}, "yeh": {"_count": 2}}, "meant": {"_count": 14, "\u2018please": {"_count": 1}, "to": {"_count": 5}, "best": {"_count": 1}, "the": {"_count": 1}, "sorry": {"_count": 1}, "I": {"_count": 1}, "Hagrid": {"_count": 1}, "please": {"_count": 1}, "it": {"_count": 1}, "bu": {"_count": 1}}, "TOLD": {"_count": 2, "YOU": {"_count": 2}}, "HOW": {"_count": 1, "DARE": {"_count": 1}}, "WARNED": {"_count": 1, "YOU": {"_count": 1}}, "WILL": {"_count": 5, "NOT": {"_count": 5}}, "wrote": {"_count": 8, "about": {"_count": 1}, "to": {"_count": 5}, "back": {"_count": 1}, "them": {"_count": 1}}, "belong": {"_count": 1, "in": {"_count": 1}}, "daresay": {"_count": 31, "": {"_count": 5}, "youd": {"_count": 2}, "hell": {"_count": 1}, "the": {"_count": 3}, "youve": {"_count": 1}, "you": {"_count": 4}, "that": {"_count": 1}, "Madam": {"_count": 1}, "youll": {"_count": 2}, "theyll": {"_count": 1}, "their": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "hes": {"_count": 1}, "he": {"_count": 1}, "hed": {"_count": 1}, "Burke": {"_count": 1}}, "sleep": {"_count": 1, "at": {"_count": 1}}, "supposed": {"_count": 11, "to": {"_count": 10}, "he": {"_count": 1}}, "forgot": {"_count": 37, "": {"_count": 8}, "He": {"_count": 1}, "Forgot": {"_count": 1}, "about": {"_count": 3}, "you": {"_count": 2}, "I": {"_count": 1}, "to": {"_count": 5}, "it": {"_count": 1}, "the": {"_count": 1}, "did": {"_count": 1}, "said": {"_count": 2}, "he": {"_count": 2}, "myself": {"_count": 1}, "youre": {"_count": 1}, "of": {"_count": 1}, "Madam": {"_count": 1}, "another": {"_count": 1}, "youd": {"_count": 1}, "lied": {"_count": 1}, "well": {"_count": 1}, "what": {"_count": 1}}, "be": {"_count": 6, "of": {"_count": 1}, "asking": {"_count": 1}, "in": {"_count": 1}, "worried": {"_count": 1}, "any": {"_count": 1}, "alive": {"_count": 1}}, "realized": {"_count": 4, "that": {"_count": 1}, "what": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "are": {"_count": 10, "worth": {"_count": 1}, "in": {"_count": 2}, "going": {"_count": 2}, "cousins": {"_count": 1}, "supposed": {"_count": 1}, "behind": {"_count": 1}, "fine": {"_count": 1}, "still": {"_count": 1}}, "installed": {"_count": 1, "thatd": {"_count": 1}}, "noticed": {"_count": 5, "in": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 1}, "how": {"_count": 1}}, "ignored": {"_count": 1, "it": {"_count": 1}}, "WOULDNT": {"_count": 1, "HAVE": {"_count": 1}}, "GET": {"_count": 1, "HOLD": {"_count": 1}}, "DONT": {"_count": 9, "SUPPOSE": {"_count": 1}, "KNOW": {"_count": 1}, "BELIEVE": {"_count": 2}, "WANT": {"_count": 1}, "CARE": {"_count": 3}, "": {"_count": 1}}, "WENT": {"_count": 1, "THROUGH": {"_count": 1}}, "THOUGHT": {"_count": 1, "YOUR": {"_count": 1}}, "deserved": {"_count": 2, "it": {"_count": 1}, "zero": {"_count": 1}}, "blame": {"_count": 2, "myself": {"_count": 1}, "them": {"_count": 1}}, "came": {"_count": 24, "here": {"_count": 2}, "in": {"_count": 3}, "down": {"_count": 2}, "back": {"_count": 2}, "to": {"_count": 6}, "round": {"_count": 1}, "on": {"_count": 2}, "and": {"_count": 1}, "across": {"_count": 1}, "camping": {"_count": 1}, "running": {"_count": 1}, "out": {"_count": 2}}, "made": {"_count": 16, "her": {"_count": 2}, "Ginny": {"_count": 1}, "an": {"_count": 1}, "him": {"_count": 2}, "some": {"_count": 1}, "up": {"_count": 1}, "sure": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}, "it": {"_count": 1}, "of": {"_count": 1}, "a": {"_count": 2}}, "develop": {"_count": 1, "the": {"_count": 1}}, "covered": {"_count": 1, "up": {"_count": 1}}, "clearly": {"_count": 1, "state": {"_count": 1}}, "booked": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "\u2018dont": {"_count": 1, "fulfill": {"_count": 1}}, "succeeded": {"_count": 1, "in": {"_count": 1}}, "persuaded": {"_count": 4, "Peeves": {"_count": 1}, "you": {"_count": 1}, "Lily": {"_count": 1}, "him": {"_count": 1}}, "feel": {"_count": 21, "sick": {"_count": 2}, "sure": {"_count": 2}, "really": {"_count": 1}, "very": {"_count": 1}, "like": {"_count": 3}, "bound": {"_count": 1}, "absolutely": {"_count": 1}, "is": {"_count": 1}, "all": {"_count": 1}, "I": {"_count": 2}, "that": {"_count": 1}, "about": {"_count": 2}, "safe": {"_count": 1}, "no": {"_count": 1}, "great": {"_count": 1}}, "smell": {"_count": 4, "blood": {"_count": 1}, "doubledealing": {"_count": 1}, "guilt": {"_count": 1}, "": {"_count": 1}}, "SMELL": {"_count": 1, "BLOOD": {"_count": 1}}, "personally": {"_count": 5, "feel": {"_count": 1}, "think": {"_count": 1}, "believe": {"_count": 1}, "am": {"_count": 1}, "would": {"_count": 1}}, "hadnt": {"_count": 12, "left": {"_count": 1}, "told": {"_count": 1}, "been": {"_count": 5}, "bought": {"_count": 1}, "offered": {"_count": 1}, "Professor": {"_count": 1}, "done": {"_count": 1}, "alerted": {"_count": 1}}, "deal": {"_count": 1, "with": {"_count": 1}}, "repeat": {"_count": 6, "if": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}, "this": {"_count": 1}, "Mr": {"_count": 1}, "The": {"_count": 1}}, "regret": {"_count": 7, "telling": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 2}, "now": {"_count": 1}, "what": {"_count": 1}, "it": {"_count": 1}}, "broke": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "pounced": {"_count": 1, "like": {"_count": 1}}, "managed": {"_count": 10, "to": {"_count": 10}}, "then": {"_count": 1, "screwed": {"_count": 1}}, "missed": {"_count": 7, "the": {"_count": 2}, "": {"_count": 1}, "Cheering": {"_count": 1}, "it": {"_count": 1}, "em": {"_count": 1}, "breakfast": {"_count": 1}}, "shudder": {"_count": 3, "to": {"_count": 3}}, "myself": {"_count": 4, "have": {"_count": 1}, "will": {"_count": 1}, "gave": {"_count": 1}, "rather": {"_count": 1}}, "felt": {"_count": 13, "it": {"_count": 1}, "weird": {"_count": 1}, "them": {"_count": 1}, "": {"_count": 1}, "something": {"_count": 2}, "like": {"_count": 2}, "a": {"_count": 1}, "one": {"_count": 1}, "I": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}}, "count": {"_count": 3, "to": {"_count": 1}, "myself": {"_count": 2}}, "accidentally": {"_count": 2, "set": {"_count": 1}, "let": {"_count": 1}}, "sort": {"_count": 4, "of": {"_count": 3}, "you": {"_count": 1}}, "spoke": {"_count": 4, "a": {"_count": 1}, "to": {"_count": 3}}, "speak": {"_count": 5, "a": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 1}, "nothing": {"_count": 1}, "now": {"_count": 1}}, "swear": {"_count": 22, "I": {"_count": 10}, "Ill": {"_count": 1}, "": {"_count": 3}, "it": {"_count": 3}, "Im": {"_count": 1}, "Rons": {"_count": 1}, "theyre": {"_count": 1}, "Id": {"_count": 1}, "its": {"_count": 1}}, "stand": {"_count": 2, "by": {"_count": 2}}, "yehve": {"_count": 1, "got": {"_count": 1}}, "sneaked": {"_count": 1, "these": {"_count": 1}}, "lick": {"_count": 1, "your": {"_count": 1}}, "throw": {"_count": 1, "something": {"_count": 1}}, "burped": {"_count": 1, "slugs": {"_count": 1}}, "caught": {"_count": 5, "him": {"_count": 2}, "the": {"_count": 1}, "her": {"_count": 1}, "in": {"_count": 1}}, "thank": {"_count": 3, "the": {"_count": 1}, "you": {"_count": 2}}, "recorded": {"_count": 1, "my": {"_count": 1}}, "disturbed": {"_count": 1, "you": {"_count": 1}}, "simply": {"_count": 3, "called": {"_count": 1}, "have": {"_count": 1}, "cant": {"_count": 1}}, "apologize": {"_count": 1, "for": {"_count": 1}}, "flatter": {"_count": 1, "myself": {"_count": 1}}, "grew": {"_count": 4, "up": {"_count": 2}, "stronger": {"_count": 1}, "powerful": {"_count": 1}}, "pleaded": {"_count": 1, "with": {"_count": 1}}, "sensed": {"_count": 1, "the": {"_count": 1}}, "trust": {"_count": 13, "you": {"_count": 4}, "": {"_count": 2}, "Severus": {"_count": 3}, "that": {"_count": 2}, "Professor": {"_count": 1}, "all": {"_count": 1}}, "um": {"_count": 1, "I": {"_count": 1}}, "asked": {"_count": 28, "her": {"_count": 4}, "not": {"_count": 1}, "Dad": {"_count": 2}, "the": {"_count": 1}, "Nearly": {"_count": 1}, "McGonagall": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 5}, "Ron": {"_count": 1}, "him": {"_count": 2}, "Kreacher": {"_count": 1}, "": {"_count": 1}, "Professor": {"_count": 2}, "Borgin": {"_count": 1}, "whether": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}, "Teddy": {"_count": 1}}, "realize": {"_count": 1, "this": {"_count": 1}}, "well": {"_count": 10, "I": {"_count": 4}, "Im": {"_count": 1}, "like": {"_count": 1}, "well": {"_count": 1}, "we": {"_count": 1}, "said": {"_count": 1}, "remember": {"_count": 1}}, "sputtered": {"_count": 1, "Lockhart": {"_count": 1}}, "certainly": {"_count": 12, "remember": {"_count": 1}, "do": {"_count": 2}, "believe": {"_count": 1}, "didnt": {"_count": 1}, "did": {"_count": 2}, "dont": {"_count": 2}, "will": {"_count": 1}, "hope": {"_count": 1}, "expect": {"_count": 1}}, "Youre": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 22, "the": {"_count": 3}, "it": {"_count": 6}, "him": {"_count": 2}, "a": {"_count": 3}, "long": {"_count": 1}, "possession": {"_count": 1}, "his": {"_count": 1}, "up": {"_count": 1}, "out": {"_count": 2}, "this": {"_count": 2}}, "pride": {"_count": 1, "myself": {"_count": 1}}, "died": {"_count": 4, "in": {"_count": 1}, "": {"_count": 1}, "how": {"_count": 1}, "and": {"_count": 1}}, "unlocked": {"_count": 1, "the": {"_count": 1}}, "needed": {"_count": 6, "": {"_count": 1}, "to": {"_count": 4}, "and": {"_count": 1}}, "decided": {"_count": 5, "to": {"_count": 4}, "not": {"_count": 1}}, "admit": {"_count": 8, "even": {"_count": 1}, "I": {"_count": 3}, "it": {"_count": 2}, "There": {"_count": 1}, "that": {"_count": 1}}, "already": {"_count": 2, "told": {"_count": 1}, "know": {"_count": 1}}, "repeated": {"_count": 1, "all": {"_count": 1}}, "escaped": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 2, "whose": {"_count": 1}, "turn": {"_count": 1}}, "fashioned": {"_count": 1, "myself": {"_count": 1}}, "prefer": {"_count": 6, "it": {"_count": 1}, "your": {"_count": 1}, "goalscoring": {"_count": 1}, "to": {"_count": 1}, "flying": {"_count": 1}, "not": {"_count": 1}}, "c": {"_count": 1, "couldnt": {"_count": 1}}, "sswear": {"_count": 1, "I": {"_count": 1}}, "ddidnt": {"_count": 2, "mean": {"_count": 1}, "know": {"_count": 1}}, "rremember": {"_count": 1, "is": {"_count": 1}}, "taught": {"_count": 6, "him": {"_count": 2}, "you": {"_count": 2}, "at": {"_count": 1}, "Tom": {"_count": 1}}, "ththought": {"_count": 1, "someone": {"_count": 1}}, "seem": {"_count": 4, "to": {"_count": 4}}, "a": {"_count": 2, "professor": {"_count": 1}, "spy": {"_count": 1}}, "imagine": {"_count": 6, "he": {"_count": 2}, "Harry": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 2}}, "write": {"_count": 1, "to": {"_count": 1}}, "give": {"_count": 16, "that": {"_count": 1}, "up": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 6}, "out": {"_count": 1}, "this": {"_count": 1}, "us": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 3}}, "walked": {"_count": 4, "in": {"_count": 1}, "back": {"_count": 1}, "into": {"_count": 1}, "straight": {"_count": 1}}, "couldve": {"_count": 5, "died": {"_count": 1}, "taken": {"_count": 1}, "just": {"_count": 1}, "strung": {"_count": 1}, "stopped": {"_count": 1}}, "bought": {"_count": 5, "your": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 3}}, "last": {"_count": 2, "saw": {"_count": 1}, "bought": {"_count": 1}}, "hoped": {"_count": 3, "school": {"_count": 1}, "I": {"_count": 1}, "hed": {"_count": 1}}, "tempt": {"_count": 1, "you": {"_count": 1}}, "eard": {"_count": 1, "he": {"_count": 1}}, "admitted": {"_count": 1, "Harry": {"_count": 1}}, "blew": {"_count": 1, "up": {"_count": 1}}, "notice": {"_count": 6, "they": {"_count": 2}, "said": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 1}, "Im": {"_count": 1}}, "work": {"_count": 3, "there": {"_count": 1}, "here": {"_count": 1}, "at": {"_count": 1}}, "mightve": {"_count": 2, "left": {"_count": 1}, "opened": {"_count": 1}}, "if": {"_count": 3, "it": {"_count": 1}, "I": {"_count": 2}}, "perceive": {"_count": 1, "very": {"_count": 1}}, "assure": {"_count": 16, "you": {"_count": 16}}, "started": {"_count": 2, "too": {"_count": 1}, "school": {"_count": 1}}, "state": {"_count": 1, "plainly": {"_count": 1}}, "let": {"_count": 4, "him": {"_count": 2}, "you": {"_count": 2}}, "once": {"_count": 1, "saw": {"_count": 1}}, "assumed": {"_count": 1, "that": {"_count": 1}}, "imagined": {"_count": 4, "that": {"_count": 2}, "it": {"_count": 2}}, "the": {"_count": 4, "only": {"_count": 1}, "ring": {"_count": 1}, "HalfBlood": {"_count": 1}, "glorious": {"_count": 1}}, "But": {"_count": 4, "it": {"_count": 1}, "Lupin": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "teach": {"_count": 1, "a": {"_count": 1}}, "called": {"_count": 4, "for": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}, "you": {"_count": 1}}, "chose": {"_count": 4, "a": {"_count": 1}, "to": {"_count": 2}, "my": {"_count": 1}}, "whipped": {"_count": 1, "the": {"_count": 1}}, "solemnly": {"_count": 5, "swear": {"_count": 5}}, "hand": {"_count": 2, "it": {"_count": 2}}, "musta": {"_count": 1, "bin": {"_count": 1}}, "COMFORTED": {"_count": 1, "THE": {"_count": 1}}, "ter": {"_count": 1, "know": {"_count": 1}}, "shoulda": {"_count": 1, "known": {"_count": 1}}, "how": {"_count": 4, "I": {"_count": 1}, "did": {"_count": 1}, "": {"_count": 1}, "dare": {"_count": 1}}, "wouldntve": {"_count": 3, "messed": {"_count": 1}, "she": {"_count": 1}, "used": {"_count": 1}}, "couldn": {"_count": 3, "leave": {"_count": 2}, "go": {"_count": 1}}, "lose": {"_count": 1, "the": {"_count": 1}}, "used": {"_count": 20, "ter": {"_count": 1}, "your": {"_count": 1}, "to": {"_count": 10}, "the": {"_count": 4}, "JellyLegs": {"_count": 1}, "it": {"_count": 1}, "Sectumsempra": {"_count": 1}, "escaping": {"_count": 1}}, "to": {"_count": 9, "refuse": {"_count": 1}, "survive": {"_count": 1}, "understand": {"_count": 2}, "have": {"_count": 1}, "tell": {"_count": 1}, "mine": {"_count": 1}, "take": {"_count": 2}}, "at": {"_count": 1, "once": {"_count": 1}}, "dare": {"_count": 3, "not": {"_count": 1}, "said": {"_count": 2}}, "join": {"_count": 1, "the": {"_count": 1}}, "frequently": {"_count": 1, "act": {"_count": 1}}, "offered": {"_count": 6, "to": {"_count": 2}, "him": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 2}}, "doubt": {"_count": 31, "said": {"_count": 1}, "it": {"_count": 7}, "whether": {"_count": 4}, "Id": {"_count": 1}, "hes": {"_count": 1}, "even": {"_count": 1}, "he": {"_count": 3}, "Regulus": {"_count": 1}, "You": {"_count": 1}, "anyone": {"_count": 1}, "Molly": {"_count": 1}, "that": {"_count": 6}, "youll": {"_count": 1}, "youd": {"_count": 1}, "very": {"_count": 1}}, "cared": {"_count": 3, "more": {"_count": 2}, "about": {"_count": 1}}, "like": {"_count": 18, "that": {"_count": 1}, "to": {"_count": 2}, "Ludo": {"_count": 1}, "it": {"_count": 3}, "a": {"_count": 3}, "the": {"_count": 2}, "": {"_count": 1}, "even": {"_count": 1}, "really": {"_count": 1}, "kids": {"_count": 1}, "you": {"_count": 1}, "this": {"_count": 1}}, "mustve": {"_count": 3, "dropped": {"_count": 1}, "been": {"_count": 1}, "dozed": {"_count": 1}}, "sit": {"_count": 2, "down": {"_count": 2}}, "try": {"_count": 3, "and": {"_count": 2}, "not": {"_count": 1}}, "learned": {"_count": 4, "to": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "loads": {"_count": 1}}, "WOKE": {"_count": 1, "UP": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "looked": {"_count": 8, "at": {"_count": 2}, "them": {"_count": 1}, "after": {"_count": 1}, "more": {"_count": 1}, "he": {"_count": 1}, "into": {"_count": 1}, "him": {"_count": 1}}, "yelled": {"_count": 2, "and": {"_count": 1}, "until": {"_count": 1}}, "finished": {"_count": 1, "it": {"_count": 1}}, "happen": {"_count": 3, "to": {"_count": 3}}, "kep": {"_count": 1, "droppin": {"_count": 1}}, "owe": {"_count": 8, "him": {"_count": 1}, "you": {"_count": 4}, "the": {"_count": 1}, "this": {"_count": 1}, "Bellatrix": {"_count": 1}}, "lost": {"_count": 4, "track": {"_count": 1}, "my": {"_count": 2}, "the": {"_count": 1}}, "KNOW": {"_count": 7, "OLIVER": {"_count": 1}, "IT": {"_count": 1}, "HE": {"_count": 1}, "WHATS": {"_count": 1}, "": {"_count": 3}}, "borrowed": {"_count": 3, "it": {"_count": 2}, "this": {"_count": 1}}, "drifted": {"_count": 1, "off": {"_count": 1}}, "d": {"_count": 2, "dont": {"_count": 1}, "ddont": {"_count": 1}}, "trusted": {"_count": 2, "you": {"_count": 1}, "that": {"_count": 1}}, "helped": {"_count": 1, "write": {"_count": 1}}, "watched": {"_count": 7, "you": {"_count": 2}, "as": {"_count": 1}, "them": {"_count": 1}, "Potter": {"_count": 2}, "from": {"_count": 1}}, "believed": {"_count": 4, "it": {"_count": 2}, "him": {"_count": 1}, "a": {"_count": 1}}, "received": {"_count": 4, "the": {"_count": 1}, "it": {"_count": 1}, "one": {"_count": 1}, "what": {"_count": 1}}, "transform": {"_count": 1, "": {"_count": 1}}, "became": {"_count": 6, "a": {"_count": 1}, "less": {"_count": 1}, "headmaster": {"_count": 1}, "Moodys": {"_count": 1}, "concerned": {"_count": 1}, "rather": {"_count": 1}}, "bit": {"_count": 1, "and": {"_count": 1}}, "disappeared": {"_count": 1, "once": {"_count": 1}}, "sometimes": {"_count": 9, "felt": {"_count": 1}, "go": {"_count": 1}, "find": {"_count": 1}, "inhabited": {"_count": 1}, "think": {"_count": 2}, "say": {"_count": 1}, "wonder": {"_count": 1}, "offer": {"_count": 1}}, "convinced": {"_count": 1, "myself": {"_count": 1}}, "seen": {"_count": 3, "him": {"_count": 1}, "Dumbledore": {"_count": 1}, "your": {"_count": 1}}, "cornered": {"_count": 1, "him": {"_count": 1}}, "shouldve": {"_count": 9, "let": {"_count": 1}, "learned": {"_count": 1}, "done": {"_count": 2}, "got": {"_count": 1}, "stopped": {"_count": 1}, "grabbed": {"_count": 1}, "shown": {"_count": 1}, "recognized": {"_count": 1}}, "as": {"_count": 1, "good": {"_count": 1}}, "suggested": {"_count": 2, "it": {"_count": 1}, "poison": {"_count": 1}}, "swam": {"_count": 1, "as": {"_count": 1}}, "journeyed": {"_count": 1, "north": {"_count": 1}}, "betrayed": {"_count": 1, "them": {"_count": 1}}, "assume": {"_count": 7, "thats": {"_count": 1}, "that": {"_count": 3}, "I": {"_count": 1}, "so": {"_count": 1}, "you": {"_count": 1}}, "deserve": {"_count": 1, "thank": {"_count": 1}}, "move": {"_count": 1, "in": {"_count": 1}}, "bound": {"_count": 1, "and": {"_count": 1}}, "wan": {"_count": 1, "ter": {"_count": 1}}, "passed": {"_count": 5, "out": {"_count": 2}, "my": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "allowed": {"_count": 3, "to": {"_count": 2}, "you": {"_count": 1}}, "shouldn": {"_count": 1, "feel": {"_count": 1}}, "stopped": {"_count": 2, "Sirius": {"_count": 1}, "it": {"_count": 1}}, "manage": {"_count": 1, "to": {"_count": 1}}, "who": {"_count": 11, "sent": {"_count": 1}, "suggested": {"_count": 1}, "have": {"_count": 1}, "did": {"_count": 1}, "almost": {"_count": 1}, "explained": {"_count": 1}, "spent": {"_count": 1}, "invented": {"_count": 1}, "discovered": {"_count": 1}, "killed": {"_count": 1}, "brought": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "Dot": {"_count": 1, "": {"_count": 1}}, "revolt": {"_count": 1, "you": {"_count": 1}}, "murder": {"_count": 1, "IP": {"_count": 1}}, "kill": {"_count": 1, "you": {"_count": 1}}, "proved": {"_count": 1, "when": {"_count": 1}}, "questioned": {"_count": 2, "her": {"_count": 2}}, "extracted": {"_count": 2, "from": {"_count": 1}, "this": {"_count": 1}}, "Disapparate": {"_count": 1, "": {"_count": 1}}, "collect": {"_count": 2, "plugs": {"_count": 1}, "your": {"_count": 1}}, "invented": {"_count": 3, "them": {"_count": 2}, "a": {"_count": 1}}, "spend": {"_count": 2, "half": {"_count": 1}, "time": {"_count": 1}}, "smoothed": {"_count": 1, "the": {"_count": 1}}, "compare": {"_count": 1, "him": {"_count": 1}}, "dress": {"_count": 1, "as": {"_count": 1}}, "bring": {"_count": 1, "home": {"_count": 1}}, "sent": {"_count": 6, "him": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 2}, "Filius": {"_count": 1}, "for": {"_count": 1}}, "knows": {"_count": 1, "Dobby": {"_count": 1}}, "is": {"_count": 18, "not": {"_count": 11}, "": {"_count": 2}, "just": {"_count": 1}, "a": {"_count": 1}, "finding": {"_count": 1}, "seeing": {"_count": 1}, "looking": {"_count": 1}}, "says": {"_count": 4, "to": {"_count": 1}, "go": {"_count": 1}, "and": {"_count": 1}, "\u2018Nicked": {"_count": 1}}, "comes": {"_count": 1, "sir": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 2}}, "pull": {"_count": 1, "down": {"_count": 1}}, "dropped": {"_count": 4, "it": {"_count": 4}}, "isnt": {"_count": 2, "using": {"_count": 1}, "knowing": {"_count": 1}}, "routinely": {"_count": 1, "teach": {"_count": 1}}, "despise": {"_count": 2, "and": {"_count": 1}, "myself": {"_count": 1}}, "shouted": {"_count": 1, "at": {"_count": 1}}, "own": {"_count": 1, "rubbish": {"_count": 1}}, "mentioned": {"_count": 3, "it": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}}, "fell": {"_count": 4, "in": {"_count": 2}, "asleep": {"_count": 2}}, "introduce": {"_count": 4, "our": {"_count": 1}, "incredible": {"_count": 1}, "Mr": {"_count": 1}, "you": {"_count": 1}}, "spose": {"_count": 24, "they": {"_count": 1}, "Ron": {"_count": 1}, "said": {"_count": 6}, "he": {"_count": 1}, "I": {"_count": 1}, "wed": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}, "hes": {"_count": 1}, "so": {"_count": 1}, "were": {"_count": 1}, "Filch": {"_count": 1}, "Lord": {"_count": 1}, "you": {"_count": 1}, "Hagrid": {"_count": 1}, "Id": {"_count": 1}, "mumbled": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}}, "definitely": {"_count": 3, "havent": {"_count": 1}, "remember": {"_count": 1}, "made": {"_count": 1}}, "fear": {"_count": 3, "the": {"_count": 1}, "": {"_count": 2}}, "showing": {"_count": 1, "you": {"_count": 1}}, "shouldntve": {"_count": 3, "told": {"_count": 1}, "Forget": {"_count": 1}, "I": {"_count": 1}}, "hardly": {"_count": 2, "think": {"_count": 2}}, "ope": {"_count": 2, "I": {"_count": 1}, "said": {"_count": 1}}, "now": {"_count": 3, "invite": {"_count": 1}, "ask": {"_count": 2}}, "send": {"_count": 1, "for": {"_count": 1}}, "vood": {"_count": 1, "like": {"_count": 1}}, "wouldve": {"_count": 6, "if": {"_count": 1}, "gone": {"_count": 1}, "lain": {"_count": 1}, "pounded": {"_count": 1}, "had": {"_count": 1}, "known": {"_count": 1}}, "nip": {"_count": 1, "upstairs": {"_count": 1}}, "live": {"_count": 4, "": {"_count": 2}, "or": {"_count": 1}, "just": {"_count": 1}}, "estimate": {"_count": 1, "that": {"_count": 1}}, "not": {"_count": 11, "read": {"_count": 1}, "I": {"_count": 2}, "tell": {"_count": 1}, "been": {"_count": 2}, "bad": {"_count": 1}, "proved": {"_count": 1}, "that": {"_count": 1}, "spoken": {"_count": 1}, "have": {"_count": 1}}, "insist": {"_count": 2, "upon": {"_count": 1}, "": {"_count": 1}}, "little": {"_count": 1, "expected": {"_count": 1}}, "entered": {"_count": 1, "myself": {"_count": 1}}, "use": {"_count": 6, "a": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 2}, "magic": {"_count": 1}}, "particularly": {"_count": 1, "enjoyed": {"_count": 1}}, "plucked": {"_count": 2, "his": {"_count": 1}, "up": {"_count": 1}}, "showed": {"_count": 1, "yeh": {"_count": 1}}, "no": {"_count": 6, "nothing": {"_count": 1}, "more": {"_count": 1}, "what": {"_count": 1}, "Give": {"_count": 1}, "Im": {"_count": 1}, "longer": {"_count": 1}}, "A": {"_count": 1, "whistle": {"_count": 1}}, "heal": {"_count": 1, "it": {"_count": 1}}, "swore": {"_count": 2, "Id": {"_count": 1}, "to": {"_count": 1}}, "sat": {"_count": 1, "here": {"_count": 1}}, "arose": {"_count": 1, "I": {"_count": 1}}, "settled": {"_count": 2, "myself": {"_count": 1}, "in": {"_count": 1}}, "gazed": {"_count": 1, "into": {"_count": 1}}, "love": {"_count": 8, "not": {"_count": 1}, "hearing": {"_count": 1}, "being": {"_count": 1}, "her": {"_count": 4}, "you": {"_count": 1}}, "playing": {"_count": 1, "at": {"_count": 1}}, "walk": {"_count": 3, "around": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "has": {"_count": 1, "seven": {"_count": 1}}, "discovered": {"_count": 3, "that": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}}, "haff": {"_count": 2, "drinks": {"_count": 1}, "a": {"_count": 1}}, "however": {"_count": 2, "am": {"_count": 2}}, "jus": {"_count": 7, "knew": {"_count": 2}, "hope": {"_count": 1}, "got": {"_count": 1}, "couldn": {"_count": 1}, "heard": {"_count": 1}, "saw": {"_count": 1}}, "ave": {"_count": 6, "nevair": {"_count": 1}, "I": {"_count": 1}, "big": {"_count": 1}, "been": {"_count": 1}, "almost": {"_count": 1}, "always": {"_count": 1}}, "surmised": {"_count": 1, "as": {"_count": 1}}, "sacked": {"_count": 1, "you": {"_count": 1}}, "run": {"_count": 2, "it": {"_count": 1}, "and": {"_count": 1}}, "refuse": {"_count": 3, "to": {"_count": 3}}, "migh": {"_count": 1, "not": {"_count": 1}}, "firs": {"_count": 1, "met": {"_count": 1}}, "closed": {"_count": 2, "my": {"_count": 2}}, "seal": {"_count": 1, "my": {"_count": 1}}, "yes": {"_count": 5, "Professor": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 2}, "Alice": {"_count": 1}}, "recognize": {"_count": 4, "it": {"_count": 1}, "him": {"_count": 1}, "no": {"_count": 1}, "the": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "merely": {"_count": 3, "thought": {"_count": 1}, "wondered": {"_count": 1}, "sought": {"_count": 1}}, "catch": {"_count": 1, "you": {"_count": 1}}, "ony": {"_count": 2, "buried": {"_count": 1}, "jus": {"_count": 1}}, "vant": {"_count": 1, "to": {"_count": 1}}, "vos": {"_count": 5, "votching": {"_count": 1}, "looking": {"_count": 1}, "attacked": {"_count": 1}, "from": {"_count": 1}, "one": {"_count": 1}}, "consider": {"_count": 1, "her": {"_count": 1}}, "where": {"_count": 1, "are": {"_count": 1}}, "fully": {"_count": 1, "and": {"_count": 1}}, "attended": {"_count": 1, "it": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "turned": {"_count": 3, "around": {"_count": 1}, "him": {"_count": 1}, "to": {"_count": 1}}, "attack": {"_count": 1, "": {"_count": 1}}, "vowed": {"_count": 1, "to": {"_count": 1}}, "revenged": {"_count": 1, "myself": {"_count": 1}}, "answer": {"_count": 4, "myself": {"_count": 2}, "you": {"_count": 2}}, "confess": {"_count": 6, "myself": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 3}, "it": {"_count": 1}}, "forgive": {"_count": 2, "you": {"_count": 1}, "myself": {"_count": 1}}, "prostrate": {"_count": 1, "myself": {"_count": 1}}, "miscalculated": {"_count": 1, "my": {"_count": 1}}, "waited": {"_count": 5, "": {"_count": 2}, "in": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "dared": {"_count": 1, "not": {"_count": 1}}, "returned": {"_count": 7, "to": {"_count": 4}, "two": {"_count": 1}, "on": {"_count": 1}, "home": {"_count": 1}}, "disposed": {"_count": 1, "of": {"_count": 1}}, "WONT": {"_count": 1, "": {"_count": 1}}, "command": {"_count": 2, "you": {"_count": 1}, "my": {"_count": 1}}, "mustnt": {"_count": 2, "": {"_count": 1}, "get": {"_count": 1}}, "fired": {"_count": 1, "it": {"_count": 1}}, "alone": {"_count": 4, "remained": {"_count": 1}, "in": {"_count": 1}, "could": {"_count": 1}, "must": {"_count": 1}}, "possess": {"_count": 1, "so": {"_count": 1}}, "also": {"_count": 6, "had": {"_count": 1}, "needed": {"_count": 1}, "think": {"_count": 2}, "told": {"_count": 1}, "said": {"_count": 1}}, "planted": {"_count": 1, "it": {"_count": 1}}, "staged": {"_count": 1, "a": {"_count": 1}}, "breathed": {"_count": 1, "again": {"_count": 1}}, "Stunned": {"_count": 3, "Fleur": {"_count": 1}, "Krum": {"_count": 1}, "him": {"_count": 1}}, "conquer": {"_count": 1, "you": {"_count": 1}}, "followed": {"_count": 3, "": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}}, "seemed": {"_count": 1, "outside": {"_count": 1}}, "stole": {"_count": 5, "it": {"_count": 1}, "boomslang": {"_count": 1}, "the": {"_count": 3}}, "stood": {"_count": 3, "": {"_count": 1}, "aside": {"_count": 1}, "between": {"_count": 1}}, "awoke": {"_count": 1, "": {"_count": 1}}, "drank": {"_count": 1, "it": {"_count": 1}}, "packed": {"_count": 3, "up": {"_count": 1}, "them": {"_count": 1}, "your": {"_count": 1}}, "kept": {"_count": 6, "him": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 1}, "thinking": {"_count": 2}, "hoping": {"_count": 1}}, "pulled": {"_count": 3, "on": {"_count": 1}, "out": {"_count": 2}}, "Transfigured": {"_count": 1, "my": {"_count": 1}}, "buried": {"_count": 1, "it": {"_count": 1}}, "correct": {"_count": 1, "Harry": {"_count": 1}}, "intend": {"_count": 1, "to": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "honor": {"_count": 1, "him": {"_count": 1}}, "so": {"_count": 2, "hoped": {"_count": 1}, "what": {"_count": 1}}, "DUDLEY": {"_count": 1, "DEMENTED": {"_count": 1}}, "youre": {"_count": 1, "lying": {"_count": 1}}, "ccant": {"_count": 1, "see": {"_count": 1}}, "Mundungus": {"_count": 1, "looked": {"_count": 1}}, "hheard": {"_count": 1, "": {"_count": 1}}, "TELL": {"_count": 1, "YOU": {"_count": 1}}, "pack": {"_count": 1, "": {"_count": 1}}, "SUPPOSE": {"_count": 1, "YOUVE": {"_count": 1}}, "gree": {"_count": 1, "with": {"_count": 1}}, "ad": {"_count": 1, "a": {"_count": 1}}, "absolutely": {"_count": 1, "forbid": {"_count": 1}}, "oh": {"_count": 6, "all": {"_count": 3}, "said": {"_count": 1}, "sorry": {"_count": 1}, "yes": {"_count": 1}}, "ran": {"_count": 4, "away": {"_count": 2}, "along": {"_count": 1}, "into": {"_count": 1}}, "camped": {"_count": 1, "out": {"_count": 1}}, "hated": {"_count": 1, "the": {"_count": 1}}, "getting": {"_count": 1, "there": {"_count": 1}}, "Weasley": {"_count": 1, "could": {"_count": 1}}, "that": {"_count": 2, "not": {"_count": 1}, "was": {"_count": 1}}, "presume": {"_count": 2, "that": {"_count": 2}}, "reminded": {"_count": 2, "you": {"_count": 2}}, "for": {"_count": 2, "one": {"_count": 2}}, "drop": {"_count": 1, "you": {"_count": 1}}, "nextdoor": {"_count": 1, "neighbors": {"_count": 1}}, "lacked": {"_count": 1, "certain": {"_count": 1}}, "turn": {"_count": 2, "in": {"_count": 1}, "up": {"_count": 1}}, "dd": {"_count": 1, "dream": {"_count": 1}}, "recognized": {"_count": 4, "him": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}}, "unlike": {"_count": 2, "you": {"_count": 2}}, "worry": {"_count": 1, "that": {"_count": 1}}, "Sir": {"_count": 1, "Nicholas": {"_count": 1}}, "listen": {"_count": 1, "Ron": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 1}, "but": {"_count": 1}}, "refused": {"_count": 5, "to": {"_count": 3}, "the": {"_count": 1}, "": {"_count": 1}}, "advise": {"_count": 1, "all": {"_count": 1}}, "fought": {"_count": 1, "him": {"_count": 1}}, "what": {"_count": 5, "": {"_count": 4}, "dragons": {"_count": 1}}, "fancied": {"_count": 1, "a": {"_count": 1}}, "gather": {"_count": 3, "that": {"_count": 2}, "not": {"_count": 1}}, "urge": {"_count": 3, "you": {"_count": 3}}, "sincerely": {"_count": 1, "hope": {"_count": 1}}, "sense": {"_count": 1, "something": {"_count": 1}}, "disagree": {"_count": 2, "Hermione": {"_count": 1}, "with": {"_count": 1}}, "Third": {"_count": 1, "year": {"_count": 1}}, "guessed": {"_count": 6, "right": {"_count": 1}, "fifteen": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}}, "He": {"_count": 6, "didnt": {"_count": 1}, "seemed": {"_count": 1}, "looked": {"_count": 2}, "was": {"_count": 1}, "frowned": {"_count": 1}}, "specifically": {"_count": 1, "asked": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "See": {"_count": 1, "to": {"_count": 1}}, "Know": {"_count": 1, "": {"_count": 1}}, "poked": {"_count": 1, "myself": {"_count": 1}}, "DID": {"_count": 2, "IT": {"_count": 2}}, "thinking": {"_count": 1, "": {"_count": 1}}, "kicked": {"_count": 1, "the": {"_count": 1}}, "help": {"_count": 7, "Professor": {"_count": 1}, "you": {"_count": 5}, "with": {"_count": 1}}, "contacted": {"_count": 1, "the": {"_count": 1}}, "lies": {"_count": 1, "it": {"_count": 1}}, "haven": {"_count": 2, "finished": {"_count": 1}, "bin": {"_count": 1}}, "spect": {"_count": 3, "some": {"_count": 1}, "hes": {"_count": 2}}, "honestly": {"_count": 2, "dont": {"_count": 1}, "havent": {"_count": 1}}, "sayin": {"_count": 1, "": {"_count": 1}}, "persuade": {"_count": 1, "him": {"_count": 1}}, "loathed": {"_count": 1, "being": {"_count": 1}}, "fancy": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "suspect": {"_count": 1, "it": {"_count": 1}}, "jinx": {"_count": 1, "him": {"_count": 1}}, "even": {"_count": 4, "want": {"_count": 1}, "felt": {"_count": 1}, "thought": {"_count": 1}, "talk": {"_count": 1}}, "SAW": {"_count": 1, "HIM": {"_count": 1}}, "answered": {"_count": 1, "them": {"_count": 1}}, "crave": {"_count": 2, "your": {"_count": 2}}, "shshall": {"_count": 1, "1leave": {"_count": 1}}, "appoint": {"_count": 1, "a": {"_count": 1}}, "remind": {"_count": 1, "you": {"_count": 1}}, "fetch": {"_count": 1, "our": {"_count": 1}}, "proceeded": {"_count": 2, "to": {"_count": 1}, "at": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "w": {"_count": 1, "Get": {"_count": 1}}, "cleared": {"_count": 1, "up": {"_count": 1}}, "ought": {"_count": 7, "to": {"_count": 4}, "perhaps": {"_count": 1}, "not": {"_count": 2}}, "offer": {"_count": 4, "you": {"_count": 4}}, "understood": {"_count": 5, "it": {"_count": 1}, "everything": {"_count": 1}, "more": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}}, "ppreciate": {"_count": 1, "this": {"_count": 1}}, "hadn": {"_count": 1, "stepped": {"_count": 1}}, "won": {"_count": 4, "": {"_count": 1}, "be": {"_count": 1}, "the": {"_count": 2}}, "confiscated": {"_count": 1, "that": {"_count": 1}}, "mistranslated": {"_count": 1, "\u2018ehwaz": {"_count": 1}}, "mixed": {"_count": 1, "it": {"_count": 1}}, "HAVEN": {"_count": 1, "T": {"_count": 1}}, "EXPECT": {"_count": 1, "HED": {"_count": 1}}, "talk": {"_count": 2, "to": {"_count": 2}}, "ordered": {"_count": 1, "dementors": {"_count": 1}}, "return": {"_count": 1, "and": {"_count": 1}}, "care": {"_count": 5, "what": {"_count": 1}, "if": {"_count": 1}, "about": {"_count": 1}, "how": {"_count": 1}, "said": {"_count": 1}}, "dink": {"_count": 3, "so": {"_count": 1}, "hes": {"_count": 2}}, "ab": {"_count": 1, "He": {"_count": 1}}, "DOE": {"_count": 1, "YOU": {"_count": 1}}, "didnd": {"_count": 1, "bean": {"_count": 1}}, "TRIED": {"_count": 2, "I": {"_count": 1}, "DO": {"_count": 1}}, "you": {"_count": 2, "Dumbledore": {"_count": 1}, "my": {"_count": 1}}, "FEEL": {"_count": 1, "": {"_count": 1}}, "arranged": {"_count": 2, "Occlumency": {"_count": 1}, "a": {"_count": 1}}, "delivered": {"_count": 1, "you": {"_count": 1}}, "placed": {"_count": 1, "upon": {"_count": 1}}, "explained": {"_count": 2, "what": {"_count": 1}, "that": {"_count": 1}}, "suspected": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "acted": {"_count": 1, "exactly": {"_count": 1}}, "defy": {"_count": 1, "anyone": {"_count": 1}}, "ripped": {"_count": 1, "his": {"_count": 1}}, "rather": {"_count": 5, "thought": {"_count": 2}, "think": {"_count": 3}}, "oughtnt": {"_count": 1, "to": {"_count": 1}}, "ditched": {"_count": 1, "him": {"_count": 1}}, "decide": {"_count": 3, "who": {"_count": 1}, "youre": {"_count": 1}, "about": {"_count": 1}}, "endured": {"_count": 1, "the": {"_count": 1}}, "stayed": {"_count": 3, "said": {"_count": 1}, "so": {"_count": 1}, "on": {"_count": 1}}, "preferred": {"_count": 1, "to": {"_count": 1}}, "deeply": {"_count": 1, "regret": {"_count": 1}}, "ensured": {"_count": 1, "that": {"_count": 1}}, "remained": {"_count": 1, "faithful": {"_count": 1}}, "spun": {"_count": 1, "him": {"_count": 1}}, "joined": {"_count": 1, "his": {"_count": 1}}, "evoked": {"_count": 1, "fifteen": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "bringing": {"_count": 1}}, "squeezed": {"_count": 1, "it": {"_count": 1}}, "first": {"_count": 3, "heard": {"_count": 1}, "arrived": {"_count": 1}, "met": {"_count": 1}}, "messed": {"_count": 2, "up": {"_count": 2}}, "wanna": {"_count": 3, "come": {"_count": 1}, "help": {"_count": 1}, "kill": {"_count": 1}}, "dumped": {"_count": 1, "him": {"_count": 1}}, "obviously": {"_count": 1, "dont": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "enjoyed": {"_count": 1, "the": {"_count": 1}}, "Wrackspurt": {"_count": 1, "got": {"_count": 1}}, "barely": {"_count": 1, "scratched": {"_count": 1}}, "hexed": {"_count": 1, "him": {"_count": 1}}, "pity": {"_count": 1, "Slughorns": {"_count": 1}}, "implore": {"_count": 1, "you": {"_count": 1}}, "enjoy": {"_count": 1, "Acid": {"_count": 1}}, "cheated": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "acquired": {"_count": 1, "it": {"_count": 1}}, "landed": {"_count": 2, "on": {"_count": 1}, "badly": {"_count": 1}}, "Lupin": {"_count": 1, "told": {"_count": 1}}, "appreciate": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "hooked": {"_count": 1, "up": {"_count": 1}}, "played": {"_count": 1, "like": {"_count": 1}}, "resign": {"_count": 1, "": {"_count": 1}}, "faked": {"_count": 1, "it": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "debated": {"_count": 1, "for": {"_count": 1}}, "checked": {"_count": 1, "Harry": {"_count": 1}}, "neither": {"_count": 1, "like": {"_count": 1}}, "bear": {"_count": 1, "the": {"_count": 1}}, "owned": {"_count": 1, "a": {"_count": 1}}, "111": {"_count": 1, "Stutter": {"_count": 1}}, "invited": {"_count": 1, "dear": {"_count": 1}}, "gained": {"_count": 1, "office": {"_count": 1}}, "approve": {"_count": 1, "of": {"_count": 1}}, "arrange": {"_count": 1, "a": {"_count": 1}}, "overheard": {"_count": 3, "them": {"_count": 1}, "em": {"_count": 1}, "between": {"_count": 1}}, "gleaned": {"_count": 1, "a": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "coerced": {"_count": 1, "him": {"_count": 1}}, "emphasize": {"_count": 1, "that": {"_count": 1}}, "exist": {"_count": 1, "said": {"_count": 1}}, "chucked": {"_count": 1, "them": {"_count": 1}}, "generally": {"_count": 1, "sleep": {"_count": 1}}, "stop": {"_count": 2, "and": {"_count": 1}, "it": {"_count": 1}}, "sorta": {"_count": 1, "skulked": {"_count": 1}}, "yeh": {"_count": 1, "sneakin": {"_count": 1}}, "mended": {"_count": 1, "it": {"_count": 1}}, "discharge": {"_count": 1, "you": {"_count": 1}}, "traced": {"_count": 1, "her": {"_count": 1}}, "place": {"_count": 1, "myself": {"_count": 1}}, "hint": {"_count": 1, "I": {"_count": 1}}, "repaired": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "miss": {"_count": 3, "him": {"_count": 1}, "having": {"_count": 1}, "my": {"_count": 1}}, "overshot": {"_count": 1, "it": {"_count": 1}}, "moved": {"_count": 1, "": {"_count": 1}}, "revere": {"_count": 1, "them": {"_count": 1}}, "lied": {"_count": 1, "": {"_count": 1}}, "confidently": {"_count": 1, "expect": {"_count": 1}}, "considered": {"_count": 2, "certain": {"_count": 1}, "an": {"_count": 1}}, "stumbled": {"_count": 1, "across": {"_count": 1}}, "talked": {"_count": 1, "to": {"_count": 1}}, "pushed": {"_count": 1, "open": {"_count": 1}}, "underestimated": {"_count": 1, "you": {"_count": 1}}, "wished": {"_count": 2, "to": {"_count": 2}}, "lay": {"_count": 1, "them": {"_count": 1}}, "appear": {"_count": 1, "to": {"_count": 1}}, "empty": {"_count": 1, "the": {"_count": 1}}, "drink": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "panicked": {"_count": 2, "Quite": {"_count": 1}, "okay": {"_count": 1}}, "fixed": {"_count": 1, "the": {"_count": 1}}, "stepped": {"_count": 1, "over": {"_count": 1}}, "face": {"_count": 1, "death": {"_count": 1}}, "actually": {"_count": 3, "sent": {"_count": 1}, "think": {"_count": 1}, "struck": {"_count": 1}}, "ducked": {"_count": 1, "and": {"_count": 1}}, "Because": {"_count": 1, "e": {"_count": 1}}, "theenk": {"_count": 1, "": {"_count": 1}}, "meet": {"_count": 2, "them": {"_count": 1}, "Severus": {"_count": 1}}, "What": {"_count": 1, "do": {"_count": 1}}, "THE": {"_count": 1, "DARK": {"_count": 1}}, "act": {"_count": 1, "": {"_count": 1}}, "require": {"_count": 3, "your": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 1}}, "postponed": {"_count": 1, "my": {"_count": 1}}, "mention": {"_count": 2, "the": {"_count": 1}, "Im": {"_count": 1}}, "reveal": {"_count": 1, "in": {"_count": 1}}, "venture": {"_count": 1, "be": {"_count": 1}}, "devote": {"_count": 1, "an": {"_count": 1}}, "ruddy": {"_count": 1, "well": {"_count": 1}}, "saved": {"_count": 2, "him": {"_count": 1}, "your": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "picked": {"_count": 3, "it": {"_count": 2}, "up": {"_count": 1}}, "cursed": {"_count": 1, "him": {"_count": 1}}, "probably": {"_count": 1, "look": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "jjust": {"_count": 1, "nnever": {"_count": 1}}, "survive": {"_count": 1, "our": {"_count": 1}}, "Hermione": {"_count": 1, "Im": {"_count": 1}}, "stabbed": {"_count": 1, "it": {"_count": 1}}, "forge": {"_count": 1, "the": {"_count": 1}}, "serve": {"_count": 1, "dinner": {"_count": 1}}, "declare": {"_count": 1, "you": {"_count": 1}}, "vould": {"_count": 1, "duel": {"_count": 1}}, "valked": {"_count": 1, "past": {"_count": 1}}, "clear": {"_count": 1, "up": {"_count": 1}}, "Its": {"_count": 1, "not": {"_count": 1}}, "cried": {"_count": 1, "all": {"_count": 1}}, "order": {"_count": 3, "you": {"_count": 3}}, "knowingly": {"_count": 1, "risked": {"_count": 1}}, "done": {"_count": 2, "": {"_count": 1}, "lemme": {"_count": 1}}, "being": {"_count": 1, "unted": {"_count": 1}}, "aint": {"_count": 1, "got": {"_count": 1}}, "requested": {"_count": 1, "somebody": {"_count": 1}}, "stammered": {"_count": 1, "Ron": {"_count": 1}}, "married": {"_count": 1, "would": {"_count": 1}}, "bbought": {"_count": 1, "it": {"_count": 1}}, "darent": {"_count": 1, "try": {"_count": 1}}, "forced": {"_count": 1, "him": {"_count": 1}}, "bled": {"_count": 1, "half": {"_count": 1}}, "deemed": {"_count": 1, "it": {"_count": 1}}, "grow": {"_count": 1, "weary": {"_count": 1}}, "Not": {"_count": 1, "bothered": {"_count": 1}}, "cast": {"_count": 1, "a": {"_count": 1}}, "introduced": {"_count": 1, "him": {"_count": 1}}, "begged": {"_count": 1, "you": {"_count": 1}}, "clicked": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "grabbed": {"_count": 1, "my": {"_count": 1}}, "Disapparated": {"_count": 2, "and": {"_count": 2}}, "figured": {"_count": 1, "its": {"_count": 1}}, "possibly": {"_count": 1, "prove": {"_count": 1}}, "Hand": {"_count": 1, "over": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "seek": {"_count": 2, "only": {"_count": 2}}, "welcome": {"_count": 1, "death": {"_count": 1}}, "stay": {"_count": 1, "here": {"_count": 1}}, "and": {"_count": 1, "other": {"_count": 1}}, "much": {"_count": 1, "Harry": {"_count": 1}}, "Remus": {"_count": 1, "John": {"_count": 1}}, "yeah": {"_count": 1, "blimey": {"_count": 1}}, "respect": {"_count": 1, "Harry": {"_count": 1}}, "deplore": {"_count": 1, "the": {"_count": 1}}, "touch": {"_count": 1, "stuff": {"_count": 1}}, "succeed": {"_count": 1, "or": {"_count": 1}}, "die": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "too": {"_count": 2, "late": {"_count": 1}, "sought": {"_count": 1}}, "Percy": {"_count": 1, "spluttered": {"_count": 1}}, "lived": {"_count": 1, "she": {"_count": 1}}, "sought": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "spurned": {"_count": 1, "his": {"_count": 1}}, "hid": {"_count": 1, "my": {"_count": 1}}, "sealed": {"_count": 1, "it": {"_count": 1}}, "virtually": {"_count": 1, "lived": {"_count": 1}}, "No": {"_count": 1, "said": {"_count": 1}}, "procured": {"_count": 1, "from": {"_count": 1}}, "finally": {"_count": 1, "meet": {"_count": 1}}, "master": {"_count": 1, "Potter": {"_count": 1}}, "detest": {"_count": 1, "Avery": {"_count": 1}}, "refer": {"_count": 1, "to": {"_count": 1}}, "underestimate": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 1, "suffocating": {"_count": 1}}, "better": {"_count": 1, "ultimately": {"_count": 1}}, "resented": {"_count": 1, "it": {"_count": 1}}, "loved": {"_count": 3, "them": {"_count": 1}, "my": {"_count": 2}}, "assuaged": {"_count": 1, "my": {"_count": 1}}, "pretended": {"_count": 2, "not": {"_count": 2}}, "meanwhile": {"_count": 1, "was": {"_count": 1}}, "busied": {"_count": 1, "myself": {"_count": 1}}, "dreaded": {"_count": 1, "beyond": {"_count": 1}}, "delayed": {"_count": 1, "meeting": {"_count": 1}}, "counted": {"_count": 1, "on": {"_count": 1}}, "intended": {"_count": 1, "did": {"_count": 1}}, "strike": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "Lord": {"_count": 1}}, "crushed": {"_count": 2, "them": {"_count": 1}, "your": {"_count": 1}}, "removed": {"_count": 1, "it": {"_count": 1}}, "overpowered": {"_count": 1, "Draco": {"_count": 1}}, "wonti": {"_count": 1, "I": {"_count": 1}}}, "heard": {"_count": 931, "yes": {"_count": 1, "their": {"_count": 1}}, "from": {"_count": 17, "your": {"_count": 1}, "Hogwarts": {"_count": 1}, "Uncle": {"_count": 1}, "me": {"_count": 1}, "inside": {"_count": 2}, "": {"_count": 1}, "Sirius": {"_count": 1}, "you": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "no": {"_count": 1}, "Dumbledore": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "Muriel": {"_count": 1}}, "the": {"_count": 111, "name": {"_count": 4}, "click": {"_count": 1}, "old": {"_count": 1}, "little": {"_count": 1}, "hat": {"_count": 2}, "sound": {"_count": 2}, "yell": {"_count": 1}, "crashes": {"_count": 1}, "story": {"_count": 1}, "voices": {"_count": 1}, "voice": {"_count": 2}, "telltale": {"_count": 1}, "wall": {"_count": 1}, "scrape": {"_count": 1}, "gloop": {"_count": 1}, "lock": {"_count": 2}, "stone": {"_count": 1}, "scratching": {"_count": 1}, "Dursleys": {"_count": 1}, "whole": {"_count": 2}, "door": {"_count": 7}, "murmur": {"_count": 1}, "last": {"_count": 1}, "man": {"_count": 2}, "grunts": {"_count": 1}, "news": {"_count": 1}, "dormitory": {"_count": 1}, "Howler": {"_count": 1}, "soft": {"_count": 3}, "noise": {"_count": 2}, "familiar": {"_count": 1}, "like": {"_count": 2}, "word": {"_count": 1}, "words": {"_count": 3}, "rush": {"_count": 1}, "splash": {"_count": 1}, "buzzing": {"_count": 1}, "roar": {"_count": 2}, "deafening": {"_count": 1}, "crowd": {"_count": 1}, "Chinese": {"_count": 1}, "whistle": {"_count": 1}, "dragons": {"_count": 1}, "final": {"_count": 1}, "unmistakable": {"_count": 2}, "clunks": {"_count": 1}, "evidence": {"_count": 2}, "high": {"_count": 3}, "frightened": {"_count": 1}, "Death": {"_count": 1}, "hospital": {"_count": 1}, "key": {"_count": 1}, "slamming": {"_count": 1}, "third": {"_count": 1}, "front": {"_count": 5}, "sarcasm": {"_count": 1}, "floorboard": {"_count": 1}, "gentle": {"_count": 1}, "usual": {"_count": 2}, "swishing": {"_count": 1}, "distant": {"_count": 1}, "rasp": {"_count": 1}, "prophecy": {"_count": 2}, "way": {"_count": 1}, "quickly": {"_count": 1}, "tinkle": {"_count": 1}, "first": {"_count": 1}, "hated": {"_count": 1}, "faintest": {"_count": 2}, "creak": {"_count": 1}, "others": {"_count": 1}, "authority": {"_count": 1}, "cart": {"_count": 1}, "dragon": {"_count": 1}, "grinding": {"_count": 1}, "Baron": {"_count": 1}, "screams": {"_count": 1}, "rasping": {"_count": 1}}, "it": {"_count": 28, "": {"_count": 4}, "a": {"_count": 1}, "too": {"_count": 2}, "yet": {"_count": 1}, "again": {"_count": 3}, "someone": {"_count": 1}, "from": {"_count": 1}, "speeding": {"_count": 1}, "crack": {"_count": 1}, "only": {"_count": 1}, "for": {"_count": 1}, "thud": {"_count": 1}, "an": {"_count": 1}, "before": {"_count": 2}, "somewhere": {"_count": 1}, "so": {"_count": 1}, "I": {"_count": 1}, "at": {"_count": 1}, "over": {"_count": 1}, "happen": {"_count": 1}, "wished": {"_count": 1}}, "her": {"_count": 32, "walking": {"_count": 1}, "mutter": {"_count": 3}, "telling": {"_count": 1}, "words": {"_count": 1}, "talking": {"_count": 2}, "did": {"_count": 1}, "climbing": {"_count": 1}, "say": {"_count": 3}, "go": {"_count": 1}, "saying": {"_count": 1}, "mention": {"_count": 1}, "approaching": {"_count": 1}, "heading": {"_count": 1}, "ask": {"_count": 1}, "tell": {"_count": 1}, "": {"_count": 3}, "use": {"_count": 2}, "reshuffling": {"_count": 1}, "as": {"_count": 1}, "stumble": {"_count": 1}, "stop": {"_count": 1}, "approach": {"_count": 1}, "scream": {"_count": 1}, "strictures": {"_count": 1}}, "him": {"_count": 43, "banging": {"_count": 1}, "zooming": {"_count": 1}, "mutter": {"_count": 1}, "crashing": {"_count": 1}, "": {"_count": 13}, "squeak": {"_count": 1}, "\u2018Youll": {"_count": 1}, "Then": {"_count": 1}, "he": {"_count": 1}, "saying": {"_count": 2}, "stand": {"_count": 1}, "calling": {"_count": 1}, "and": {"_count": 1}, "except": {"_count": 1}, "telling": {"_count": 3}, "say": {"_count": 1}, "I": {"_count": 1}, "planning": {"_count": 1}, "thundering": {"_count": 1}, "muttering": {"_count": 1}, "move": {"_count": 3}, "though": {"_count": 1}, "Harry": {"_count": 1}, "screech": {"_count": 1}, "cry": {"_count": 1}, "speak": {"_count": 1}}, "something": {"_count": 16, "creak": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 1}, "something": {"_count": 1}, "move": {"_count": 1}, "in": {"_count": 1}, "heavy": {"_count": 1}, "fall": {"_count": 1}, "scuttling": {"_count": 1}, "moving": {"_count": 1}, "crack": {"_count": 2}, "large": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 32, ".": {"_count": 26}, "?": {"_count": 5}, "!": {"_count": 1}}, "Uncle": {"_count": 5, "Vernon": {"_count": 5}}, "over": {"_count": 5, "the": {"_count": 4}, "Malfoy": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 2}}, "of": {"_count": 43, "him": {"_count": 2}, "Hogwarts": {"_count": 2}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 7}, "those": {"_count": 1}, "such": {"_count": 4}, "your": {"_count": 1}, "course": {"_count": 1}, "you": {"_count": 1}, "Slytherin": {"_count": 1}, "three": {"_count": 1}, "it": {"_count": 3}, "them": {"_count": 4}, "Muggles": {"_count": 1}, "Sirius": {"_count": 1}, "em": {"_count": 1}, "someone": {"_count": 1}, "this": {"_count": 1}, "bezoars": {"_count": 1}, "Tom": {"_count": 1}, "the": {"_count": 2}, "The": {"_count": 1}, "Babbitty": {"_count": 1}, "one": {"_count": 1}, "an": {"_count": 1}}, "hes": {"_count": 4, "a": {"_count": 2}, "been": {"_count": 1}, "asking": {"_count": 1}}, "you": {"_count": 13, "went": {"_count": 1}, "": {"_count": 3}, "a": {"_count": 1}, "speaking": {"_count": 1}, "hate": {"_count": 1}, "and": {"_count": 1}, "recently": {"_count": 1}, "last": {"_count": 1}, "the": {"_count": 1}, "coming": {"_count": 1}, "joke": {"_count": 1}}, "Ive": {"_count": 1, "learned": {"_count": 1}}, "footsteps": {"_count": 11, "because": {"_count": 1}, "coming": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "quite": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "running": {"_count": 2}, "through": {"_count": 1}}, "a": {"_count": 95, "familiar": {"_count": 5}, "frantic": {"_count": 1}, "word": {"_count": 5}, "distant": {"_count": 7}, "sharp": {"_count": 1}, "sudden": {"_count": 1}, "door": {"_count": 3}, "strange": {"_count": 1}, "soft": {"_count": 3}, "loud": {"_count": 4}, "womans": {"_count": 1}, "very": {"_count": 1}, "last": {"_count": 1}, "wild": {"_count": 1}, "faint": {"_count": 1}, "scurrying": {"_count": 2}, "yelping": {"_count": 1}, "knock": {"_count": 1}, "burst": {"_count": 1}, "cackling": {"_count": 1}, "great": {"_count": 1}, "lot": {"_count": 2}, "second": {"_count": 1}, "tiny": {"_count": 1}, "chorus": {"_count": 1}, "snatch": {"_count": 2}, "high": {"_count": 1}, "key": {"_count": 1}, "disturbance": {"_count": 3}, "crash": {"_count": 1}, "thumping": {"_count": 1}, "snort": {"_count": 1}, "hearty": {"_count": 1}, "large": {"_count": 1}, "voice": {"_count": 2}, "sob": {"_count": 2}, "rustle": {"_count": 2}, "smashing": {"_count": 1}, "wheezy": {"_count": 1}, "roar": {"_count": 1}, "scuffle": {"_count": 2}, "cough": {"_count": 1}, "few": {"_count": 1}, "weak": {"_count": 1}, "prophecy": {"_count": 1}, "scream": {"_count": 1}, "muffled": {"_count": 1}, "rasping": {"_count": 1}, "noise": {"_count": 1}, "rush": {"_count": 1}, "rumor": {"_count": 2}, "bang": {"_count": 1}, "crack": {"_count": 1}, "series": {"_count": 1}, "tap": {"_count": 1}, "thing": {"_count": 1}, "weary": {"_count": 1}, "carol": {"_count": 1}, "cry": {"_count": 1}, "little": {"_count": 1}, "weird": {"_count": 2}, "thin": {"_count": 1}, "terrible": {"_count": 1}}, "Hermione": {"_count": 18, "whisper": {"_count": 1}, "snap": {"_count": 1}, "speak": {"_count": 1}, "shriek": {"_count": 2}, "s": {"_count": 1}, "gasp": {"_count": 2}, "talking": {"_count": 1}, "squeal": {"_count": 1}, "passing": {"_count": 1}, "shout": {"_count": 1}, "say": {"_count": 1}, "Bathilda": {"_count": 1}, "call": {"_count": 1}, "He": {"_count": 1}, "through": {"_count": 1}, "yelling": {"_count": 1}}, "about": {"_count": 11, "Slytherin": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 4}, "McLaggen": {"_count": 1}, "this": {"_count": 1}, "Professor": {"_count": 1}}, "Snape": {"_count": 9, "can": {"_count": 1}, "would": {"_count": 1}, "walking": {"_count": 1}, "hiss": {"_count": 1}, "and": {"_count": 1}, "sayin": {"_count": 1}, "shout": {"_count": 2}, "let": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 1}, "whisper": {"_count": 1}, "say": {"_count": 1}}, "screams": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "someone": {"_count": 6, "speak": {"_count": 1}, "saying": {"_count": 1}, "calling": {"_count": 2}, "lurking": {"_count": 1}, "descending": {"_count": 1}}, "Filch": {"_count": 1, "enter": {"_count": 1}}, "quick": {"_count": 2, "footsteps": {"_count": 2}}, "himself": {"_count": 3, "cry": {"_count": 1}, "say": {"_count": 2}}, "none": {"_count": 1, "of": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "voices": {"_count": 11, "": {"_count": 4}, "nearby": {"_count": 1}, "at": {"_count": 1}, "were": {"_count": 1}, "she": {"_count": 1}, "behind": {"_count": 1}, "again": {"_count": 1}, "coming": {"_count": 1}}, "Ron": {"_count": 11, "say": {"_count": 1}, "gasp": {"_count": 1}, "give": {"_count": 1}, "leave": {"_count": 1}, "yell": {"_count": 2}, "come": {"_count": 1}, "and": {"_count": 1}, "spluttering": {"_count": 1}, "agree": {"_count": 1}, "stir": {"_count": 1}}, "Malfoy": {"_count": 4, "saying": {"_count": 1}, "singing": {"_count": 1}, "say": {"_count": 1}, "whooping": {"_count": 1}}, "somebody": {"_count": 3, "whimpering": {"_count": 1}, "come": {"_count": 1}, "blundering": {"_count": 1}}, "Quirrells": {"_count": 1, "voice": {"_count": 1}}, "Quirrell": {"_count": 1, "sob": {"_count": 1}}, "said": {"_count": 3, "Hagrid": {"_count": 1}, "Lupin": {"_count": 1}, "Auntie": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "anythin": {"_count": 1, "like": {"_count": 1}}, "hooves": {"_count": 4, "behind": {"_count": 2}, "gathering": {"_count": 1}, "": {"_count": 1}}, "what": {"_count": 19, "it": {"_count": 2}, "sounded": {"_count": 1}, "Professor": {"_count": 2}, "I": {"_count": 2}, "happened": {"_count": 2}, "Fudge": {"_count": 1}, "had": {"_count": 1}, "Sirius": {"_count": 1}, "Hagrid": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "Mr": {"_count": 1}, "Skeeter": {"_count": 1}, "Id": {"_count": 1}, "happens": {"_count": 1}}, "telling": {"_count": 1, "the": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Dudleys": {"_count": 1, "voice": {"_count": 1}}, "tell": {"_count": 2, "he": {"_count": 1}, "of": {"_count": 1}}, "Dumbledores": {"_count": 1, "powers": {"_count": 1}}, "Dad": {"_count": 2, "talking": {"_count": 1}, "talk": {"_count": 1}}, "these": {"_count": 1, "rumors": {"_count": 1}}, "hurrying": {"_count": 1, "feet": {"_count": 1}}, "well": {"_count": 2, "of": {"_count": 1}, "no": {"_count": 1}}, "youve": {"_count": 1, "bin": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "in": {"_count": 6, "Lockharts": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Lee": {"_count": 1, "Jordan": {"_count": 1}}, "Harry": {"_count": 3, "leave": {"_count": 1}, "Potter": {"_count": 1}, "talk": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "they": {"_count": 1}}, "urgent": {"_count": 2, "voices": {"_count": 2}}, "their": {"_count": 5, "voices": {"_count": 2}, "footsteps": {"_count": 1}, "names": {"_count": 1}, "car": {"_count": 1}}, "Professor": {"_count": 5, "McGonagall": {"_count": 3}, "Snape": {"_count": 1}, "Trelawney": {"_count": 1}}, "that": {"_count": 16, "Malfoy": {"_count": 1}, "a": {"_count": 1}, "Arthur": {"_count": 1}, "he": {"_count": 1}, "awful": {"_count": 1}, "name": {"_count": 2}, "mans": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}, "you": {"_count": 1}, "prophecy": {"_count": 1}, "bearded": {"_count": 1}, "Grindelwald": {"_count": 1}, "your": {"_count": 1}}, "me": {"_count": 10, "I": {"_count": 1}, "say": {"_count": 1}, "Wormtail": {"_count": 1}, "Potter": {"_count": 1}, "talking": {"_count": 1}, "OUT": {"_count": 1}, "": {"_count": 2}, "out": {"_count": 1}, "on": {"_count": 1}}, "twice": {"_count": 1, "and": {"_count": 1}}, "whoever": {"_count": 1, "it": {"_count": 1}}, "all": {"_count": 2, "righ": {"_count": 1}, "abou": {"_count": 1}}, "Fang": {"_count": 2, "": {"_count": 1}, "whimpering": {"_count": 1}}, "more": {"_count": 6, "clicking": {"_count": 1}, "mad": {"_count": 1}, "wand": {"_count": 1}, "shouts": {"_count": 1}, "crashes": {"_count": 1}, "danger": {"_count": 1}}, "concern": {"_count": 1, "beneath": {"_count": 1}}, "was": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "Riddles": {"_count": 2, "hissing": {"_count": 1}, "last": {"_count": 1}}, "Riddle": {"_count": 1, "screaming": {"_count": 1}}, "Rons": {"_count": 5, "voice": {"_count": 2}, "dad": {"_count": 1}, "footsteps": {"_count": 1}, "mattress": {"_count": 1}}, "Harrys": {"_count": 3, "reply": {"_count": 1}, "name": {"_count": 1}, "account": {"_count": 1}}, "speak": {"_count": 1, "of": {"_count": 1}}, "our": {"_count": 1, "exciting": {"_count": 1}}, "angry": {"_count": 1, "voices": {"_count": 1}}, "another": {"_count": 2, "pair": {"_count": 1}, "woman": {"_count": 1}}, "them": {"_count": 16, "arguing": {"_count": 1}, "over": {"_count": 1}, "as": {"_count": 1}, "screaming": {"_count": 1}, "": {"_count": 6}, "whispering": {"_count": 2}, "just": {"_count": 1}, "moaning": {"_count": 1}, "first": {"_count": 1}, "spreading": {"_count": 1}}, "chairs": {"_count": 1, "move": {"_count": 1}}, "Mr": {"_count": 5, "and": {"_count": 1}, "Weasley": {"_count": 2}, "Diggory": {"_count": 2}}, "your": {"_count": 7, "father": {"_count": 2}, "mum": {"_count": 1}, "family": {"_count": 1}, "dulcet": {"_count": 1}, "voice": {"_count": 1}, "parents": {"_count": 1}}, "screaming": {"_count": 2, "terrible": {"_count": 1}, "A": {"_count": 1}}, "say": {"_count": 1, "the": {"_count": 1}}, "Percy": {"_count": 2, "say": {"_count": 1}, "discoursing": {"_count": 1}}, "echoes": {"_count": 1, "in": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 6, "talk": {"_count": 2}, "speak": {"_count": 1}, "telling": {"_count": 1}, "yelling": {"_count": 1}, "s": {"_count": 1}}, "now": {"_count": 1, "were": {"_count": 1}}, "my": {"_count": 1, "dad": {"_count": 1}}, "James": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 2, "ripping": {"_count": 1}, "news": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "movement": {"_count": 4, "from": {"_count": 1}, "behind": {"_count": 2}, "right": {"_count": 1}}, "everything": {"_count": 3, "I": {"_count": 1}, "Muggle": {"_count": 1}, "Harry": {"_count": 1}}, "Sirius": {"_count": 4, "was": {"_count": 1}, "walking": {"_count": 1}, "tramping": {"_count": 1}, "say": {"_count": 1}}, "before": {"_count": 4, "": {"_count": 2}, "he": {"_count": 1}, "a": {"_count": 1}}, "things": {"_count": 1, "in": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "ourselves": {"_count": 1, "leaving": {"_count": 1}}, "his": {"_count": 6, "own": {"_count": 1}, "cousin": {"_count": 1}, "parents": {"_count": 1}, "footsteps": {"_count": 1}, "heavy": {"_count": 1}, "thoughts": {"_count": 1}}, "Dumbledore": {"_count": 3, "if": {"_count": 1}, "was": {"_count": 1}, "frightened": {"_count": 1}}, "three": {"_count": 2, "pairs": {"_count": 1}, "bodies": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 2, "different": {"_count": 1}, "loud": {"_count": 1}}, "enough": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "talking": {"_count": 1, "at": {"_count": 1}}, "throughout": {"_count": 1, "the": {"_count": 1}}, "old": {"_count": 1, "Winky": {"_count": 1}}, "snapping": {"_count": 1, "twigs": {"_count": 1}}, "doing": {"_count": 1, "the": {"_count": 1}}, "bangs": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 3, "intruder": {"_count": 1}, "unpleasantly": {"_count": 1}, "explosive": {"_count": 1}}, "Moodys": {"_count": 1, "distinctive": {"_count": 1}}, "there": {"_count": 2, "before": {"_count": 2}}, "MadEye": {"_count": 1, "Moodys": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "correctly": {"_count": 2, "": {"_count": 2}}, "but": {"_count": 3, "the": {"_count": 1}, "didnt": {"_count": 1}, "pretending": {"_count": 1}}, "intruders": {"_count": 2, "a": {"_count": 1}, "in": {"_count": 1}}, "passing": {"_count": 1, "the": {"_count": 1}}, "Oooh": {"_count": 1, "narrow": {"_count": 1}}, "Krum": {"_count": 1, "speak": {"_count": 1}}, "Ali": {"_count": 1, "Bashir": {"_count": 1}}, "Fleur": {"_count": 1, "and": {"_count": 1}}, "anything": {"_count": 5, "else": {"_count": 1}, "about": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 2}}, "sobbing": {"_count": 1, "in": {"_count": 1}}, "underwater": {"_count": 1, "then": {"_count": 1}}, "banging": {"_count": 2, "and": {"_count": 2}}, "noises": {"_count": 2, "Professor": {"_count": 1}, "": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "its": {"_count": 2, "become": {"_count": 1}, "frail": {"_count": 1}}, "he": {"_count": 3, "wormed": {"_count": 1}, "knew": {"_count": 1}, "got": {"_count": 1}}, "Voldemort": {"_count": 5, "accusing": {"_count": 1}, "draw": {"_count": 1}, "scream": {"_count": 2}, "What": {"_count": 1}}, "and": {"_count": 4, "running": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}, "understood": {"_count": 1}}, "quite": {"_count": 1, "distinctly": {"_count": 1}}, "while": {"_count": 1, "waiting": {"_count": 1}}, "to": {"_count": 3, "complain": {"_count": 1}, "tell": {"_count": 1}, "express": {"_count": 1}}, "The": {"_count": 1, "window": {"_count": 1}}, "Cedric": {"_count": 2, "do": {"_count": 1}, "shouting": {"_count": 1}}, "Bagmans": {"_count": 1, "whistle": {"_count": 1}}, "Krums": {"_count": 1, "voice": {"_count": 1}}, "During": {"_count": 1, "the": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "Wormtails": {"_count": 1, "anguished": {"_count": 1}}, "Voldemorts": {"_count": 1, "scream": {"_count": 1}}, "Fudges": {"_count": 1, "voice": {"_count": 1}}, "people": {"_count": 3, "gasping": {"_count": 1}, "talking": {"_count": 1}, "say": {"_count": 1}}, "nothing": {"_count": 2, "but": {"_count": 1}, "however": {"_count": 1}}, "Winky": {"_count": 1, "talking": {"_count": 1}}, "whispering": {"_count": 1, "around": {"_count": 1}}, "Barry": {"_count": 1, "Crouch": {"_count": 1}}, "Crouchs": {"_count": 1, "confession": {"_count": 1}}, "just": {"_count": 2, "the": {"_count": 1}, "enough": {"_count": 1}}, "Dudley": {"_count": 1, "blundering": {"_count": 1}}, "loud": {"_count": 2, "running": {"_count": 1}, "and": {"_count": 1}}, "words": {"_count": 1, "like": {"_count": 1}}, "others": {"_count": 1, "making": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "whispers": {"_count": 1, "all": {"_count": 1}}, "including": {"_count": 1, "all": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "Lavender": {"_count": 3, "sigh": {"_count": 1}, "had": {"_count": 1}, "say": {"_count": 1}}, "Warringtons": {"_count": 1, "sworn": {"_count": 1}}, "above": {"_count": 1, "it": {"_count": 1}}, "Bletchley": {"_count": 1, "singing": {"_count": 1}}, "Madam": {"_count": 1, "Hoochs": {"_count": 1}}, "Montague": {"_count": 1, "laughing": {"_count": 1}}, "o": {"_count": 1, "Dumbledore": {"_count": 1}}, "hed": {"_count": 2, "argued": {"_count": 1}, "been": {"_count": 1}}, "Umbridge": {"_count": 2, "s": {"_count": 1}, "shriek": {"_count": 1}}, "Pansys": {"_count": 1, "answer": {"_count": 1}}, "Nevilles": {"_count": 1, "voice": {"_count": 1}}, "Phineas": {"_count": 3, "s": {"_count": 1}, "Nigelluss": {"_count": 1}, "Nigellus": {"_count": 1}}, "distant": {"_count": 1, "wailing": {"_count": 1}}, "Tonks": {"_count": 1, "whispering": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "Moody": {"_count": 1, "say": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "every": {"_count": 2, "word": {"_count": 2}}, "Marietta": {"_count": 1, "was": {"_count": 1}}, "students": {"_count": 1, "saying": {"_count": 1}}, "Hagrids": {"_count": 1, "fruitless": {"_count": 1}}, "she": {"_count": 3, "answered": {"_count": 1}, "pretended": {"_count": 1}, "shot": {"_count": 1}}, "Lucius": {"_count": 2, "Malfoy": {"_count": 2}}, "Luna": {"_count": 1, "cry": {"_count": 1}}, "Bellatrix": {"_count": 2, "Lestranges": {"_count": 1}, "scream": {"_count": 1}}, "only": {"_count": 1, "the": {"_count": 1}}, "perfectly": {"_count": 1, "well": {"_count": 1}}, "shes": {"_count": 1, "going": {"_count": 1}}, "Im": {"_count": 1, "on": {"_count": 1}}, "Goyles": {"_count": 1, "trunk": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 1, "the": {"_count": 1}}, "Katie": {"_count": 1, "say": {"_count": 1}}, "were": {"_count": 1, "surprisingly": {"_count": 1}}, "Ginny": {"_count": 1, "saying": {"_count": 1}}, "Slughorn": {"_count": 1, "its": {"_count": 1}}, "Malfoys": {"_count": 1, "footsteps": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "rumors": {"_count": 2, "": {"_count": 1}, "there": {"_count": 1}}, "Twycross": {"_count": 1, "going": {"_count": 1}}, "Dean": {"_count": 1, "make": {"_count": 1}}, "nearly": {"_count": 1, "two": {"_count": 1}}, "for": {"_count": 1, "it": {"_count": 1}}, "raucous": {"_count": 1, "shouting": {"_count": 1}}, "running": {"_count": 2, "footsteps": {"_count": 2}}, "em": {"_count": 1, "cornin": {"_count": 1}}, "music": {"_count": 1, "strange": {"_count": 1}}, "differently": {"_count": 1, "": {"_count": 1}}, "sliding": {"_count": 1, "across": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "Avada": {"_count": 1, "As": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "began": {"_count": 1, "Mr": {"_count": 1}}, "\u2018Snow": {"_count": 1, "White": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "those": {"_count": 1, "two": {"_count": 1}}, "stuff": {"_count": 1, "about": {"_count": 1}}, "Hermiones": {"_count": 1, "scream": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "Bellatrixs": {"_count": 1, "voice": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "Griphook": {"_count": 1, "shout": {"_count": 1}}, "Neville": {"_count": 1, "call": {"_count": 1}}, "McGonagall": {"_count": 1, "cry": {"_count": 1}}, "innumerable": {"_count": 1, "objects": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "yeah": {"_count": 1, "": {"_count": 1}}, "slight": {"_count": 1, "movements": {"_count": 1}}, "uproar": {"_count": 1, "from": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}}, "Harry": {"_count": 16710, "Mr": {"_count": 2, "Dursley": {"_count": 1}, "Weasley": {"_count": 1}}, "": {"_count": 2210, ".": {"_count": 1761}, "?": {"_count": 231}, "!": {"_count": 218}}, "Potter": {"_count": 336, "Voldemorts": {"_count": 1}, "come": {"_count": 1}, "Day": {"_count": 1}, "rolled": {"_count": 1}, "the": {"_count": 5}, "was": {"_count": 8}, "in": {"_count": 3}, "not": {"_count": 4}, "": {"_count": 111}, "chorused": {"_count": 1}, "said": {"_count": 13}, "their": {"_count": 2}, "an": {"_count": 1}, "do": {"_count": 1}, "wasnt": {"_count": 1}, "now": {"_count": 1}, "asks": {"_count": 1}, "is": {"_count": 17}, "speaks": {"_count": 1}, "met": {"_count": 1}, "escaped": {"_count": 2}, "to": {"_count": 1}, "must": {"_count": 9}, "goes": {"_count": 2}, "mustnt": {"_count": 2}, "thought": {"_count": 2}, "might": {"_count": 1}, "will": {"_count": 5}, "leaves": {"_count": 1}, "got": {"_count": 1}, "and": {"_count": 13}, "fan": {"_count": 2}, "at": {"_count": 1}, "came": {"_count": 1}, "go": {"_count": 3}, "would": {"_count": 3}, "hurt": {"_count": 1}, "only": {"_count": 1}, "survived": {"_count": 1}, "shone": {"_count": 1}, "stay": {"_count": 1}, "risks": {"_count": 1}, "he": {"_count": 8}, "freed": {"_count": 1}, "set": {"_count": 2}, "felt": {"_count": 1}, "safe": {"_count": 1}, "you": {"_count": 4}, "My": {"_count": 1}, "whoever": {"_count": 1}, "woke": {"_count": 1}, "had": {"_count": 2}, "she": {"_count": 2}, "but": {"_count": 1}, "likely": {"_count": 1}, "upstairs": {"_count": 1}, "whose": {"_count": 1}, "instead": {"_count": 1}, "sir": {"_count": 13}, "has": {"_count": 4}, "like": {"_count": 1}, "Dobby": {"_count": 2}, "squeaked": {"_count": 1}, "that": {"_count": 3}, "thank": {"_count": 1}, "\u2018Merry": {"_count": 1}, "did": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 1}, "along": {"_count": 1}, "standing": {"_count": 1}, "needs": {"_count": 1}, "Ten": {"_count": 1}, "breathe": {"_count": 1}, "lose": {"_count": 1}, "used": {"_count": 1}, "false": {"_count": 1}, "thatAlbus": {"_count": 1}, "both": {"_count": 1}, "upon": {"_count": 1}, "through": {"_count": 1}, "managed": {"_count": 1}, "who": {"_count": 1}, "Disciplinary": {"_count": 1}, "lives": {"_count": 1}, "does": {"_count": 1}, "having": {"_count": 1}, "for": {"_count": 2}, "coming": {"_count": 1}, "1": {"_count": 1}, "Great": {"_count": 1}, "a": {"_count": 1}, "yes": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "thwart": {"_count": 1}, "page": {"_count": 1}, "none": {"_count": 1}, "still": {"_count": 1}, "I": {"_count": 2}, "wants": {"_count": 1}, "so": {"_count": 1}, "from": {"_count": 1}, "whom": {"_count": 1}, "visited": {"_count": 1}, "here": {"_count": 1}, "have": {"_count": 1}, "party": {"_count": 1}, "parties": {"_count": 1}, "repeated": {"_count": 1}, "whispered": {"_count": 1}, "try": {"_count": 1}, "Minerva": {"_count": 1}, "see": {"_count": 1}, "directly": {"_count": 1}}, "survive": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 108, "his": {"_count": 9}, "himself": {"_count": 1}, "catch": {"_count": 1}, "keep": {"_count": 1}, "the": {"_count": 12}, "come": {"_count": 3}, "sit": {"_count": 3}, "be": {"_count": 4}, "Hermione": {"_count": 4}, "help": {"_count": 2}, "show": {"_count": 1}, "wait": {"_count": 1}, "stay": {"_count": 2}, "put": {"_count": 1}, "leave": {"_count": 1}, "hear": {"_count": 3}, "him": {"_count": 1}, "read": {"_count": 2}, "Sir": {"_count": 1}, "get": {"_count": 1}, "realize": {"_count": 1}, "discover": {"_count": 1}, "call": {"_count": 1}, "send": {"_count": 1}, "go": {"_count": 1}, "disappear": {"_count": 1}, "visit": {"_count": 1}, "win": {"_count": 1}, "take": {"_count": 2}, "spend": {"_count": 1}, "listen": {"_count": 1}, "ask": {"_count": 1}, "stretch": {"_count": 1}, "Dumbledore": {"_count": 2}, "a": {"_count": 2}, "quiet": {"_count": 1}, "know": {"_count": 1}, "Ron": {"_count": 4}, "Professor": {"_count": 2}, "Filch": {"_count": 1}, "George": {"_count": 1}, "see": {"_count": 2}, "announce": {"_count": 1}, "ride": {"_count": 1}, "jump": {"_count": 2}, "resume": {"_count": 1}, "peer": {"_count": 1}, "Snape": {"_count": 1}, "return": {"_count": 2}, "Crabbe": {"_count": 1}, "roll": {"_count": 1}, "pass": {"_count": 1}, "say": {"_count": 1}, "do": {"_count": 2}, "discuss": {"_count": 1}, "whom": {"_count": 1}, "stare": {"_count": 2}, "have": {"_count": 1}, "Lupin": {"_count": 1}, "start": {"_count": 1}, "communicate": {"_count": 1}, "hold": {"_count": 1}}, "every": {"_count": 2, "child": {"_count": 1}, "time": {"_count": 1}}, "underneath": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 110, "his": {"_count": 6}, "the": {"_count": 15}, "amazement": {"_count": 3}, "it": {"_count": 1}, "a": {"_count": 33}, "an": {"_count": 6}, "surprise": {"_count": 5}, "high": {"_count": 1}, "hot": {"_count": 1}, "what": {"_count": 3}, "this": {"_count": 1}, "greeting": {"_count": 1}, "Privet": {"_count": 1}, "you": {"_count": 1}, "disbelief": {"_count": 2}, "relief": {"_count": 4}, "spite": {"_count": 3}, "front": {"_count": 1}, "silence": {"_count": 1}, "reading": {"_count": 1}, "mild": {"_count": 1}, "every": {"_count": 1}, "class": {"_count": 1}, "fact": {"_count": 1}, "that": {"_count": 1}, "some": {"_count": 1}, "one": {"_count": 2}, "desperation": {"_count": 1}, "her": {"_count": 1}, "exasperation": {"_count": 1}, "frustration": {"_count": 1}, "objects": {"_count": 1}, "no": {"_count": 1}, "Runcorns": {"_count": 1}, "mind": {"_count": 1}, "on": {"_count": 1}, "utter": {"_count": 1}, "mock": {"_count": 1}, "here": {"_count": 1}}, "and": {"_count": 868, "gave": {"_count": 1}, "Uncle": {"_count": 1}, "it": {"_count": 4}, "Dudley": {"_count": 4}, "seized": {"_count": 2}, "pointing": {"_count": 1}, "Hagrid": {"_count": 2}, "they": {"_count": 7}, "then": {"_count": 7}, "Ron": {"_count": 327}, "staring": {"_count": 1}, "hurried": {"_count": 3}, "the": {"_count": 41}, "felt": {"_count": 1}, "Seamus": {"_count": 2}, "Rons": {"_count": 9}, "was": {"_count": 3}, "he": {"_count": 31}, "I": {"_count": 11}, "Hermione": {"_count": 147}, "Hermiones": {"_count": 5}, "threw": {"_count": 1}, "George": {"_count": 6}, "no": {"_count": 2}, "jumped": {"_count": 1}, "its": {"_count": 3}, "Malfoy": {"_count": 5}, "Professor": {"_count": 1}, "holding": {"_count": 1}, "Dean": {"_count": 1}, "before": {"_count": 2}, "Riddle": {"_count": 1}, "peered": {"_count": 1}, "left": {"_count": 1}, "kept": {"_count": 1}, "disappeared": {"_count": 3}, "pointed": {"_count": 2}, "YouKnowWho": {"_count": 1}, "didnt": {"_count": 1}, "never": {"_count": 1}, "Lupin": {"_count": 1}, "hes": {"_count": 1}, "go": {"_count": 2}, "went": {"_count": 2}, "feeling": {"_count": 2}, "Neville": {"_count": 15}, "without": {"_count": 1}, "climbed": {"_count": 1}, "his": {"_count": 11}, "looked": {"_count": 3}, "a": {"_count": 4}, "shows": {"_count": 1}, "Mr": {"_count": 4}, "Draco": {"_count": 1}, "run": {"_count": 1}, "said": {"_count": 8}, "stared": {"_count": 1}, "proceeded": {"_count": 1}, "back": {"_count": 3}, "walked": {"_count": 1}, "there": {"_count": 2}, "Dobby": {"_count": 2}, "Ill": {"_count": 1}, "stood": {"_count": 1}, "turned": {"_count": 2}, "had": {"_count": 1}, "sank": {"_count": 1}, "pulled": {"_count": 2}, "passed": {"_count": 1}, "Cedric": {"_count": 7}, "Krum": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 14}, "scratching": {"_count": 1}, "shaking": {"_count": 1}, "amazed": {"_count": 1}, "began": {"_count": 1}, "Wormtail": {"_count": 1}, "Voldemort": {"_count": 6}, "hissed": {"_count": 1}, "Harry": {"_count": 3}, "saw": {"_count": 1}, "raised": {"_count": 1}, "in": {"_count": 1}, "if": {"_count": 1}, "hitching": {"_count": 1}, "Sirius": {"_count": 1}, "led": {"_count": 2}, "closed": {"_count": 1}, "Madam": {"_count": 1}, "spending": {"_count": 1}, "from": {"_count": 1}, "clapped": {"_count": 1}, "throwing": {"_count": 1}, "by": {"_count": 1}, "Ginny": {"_count": 4}, "she": {"_count": 4}, "helping": {"_count": 1}, "made": {"_count": 1}, "attempted": {"_count": 1}, "instead": {"_count": 1}, "Cho": {"_count": 3}, "Alicia": {"_count": 1}, "their": {"_count": 1}, "we": {"_count": 1}, "even": {"_count": 1}, "sticking": {"_count": 1}, "keep": {"_count": 1}, "next": {"_count": 1}, "me": {"_count": 4}, "runs": {"_count": 1}, "suddenly": {"_count": 1}, "Marietta": {"_count": 4}, "several": {"_count": 1}, "for": {"_count": 1}, "took": {"_count": 1}, "make": {"_count": 1}, "say": {"_count": 1}, "again": {"_count": 1}, "directed": {"_count": 1}, "shes": {"_count": 1}, "tipped": {"_count": 1}, "started": {"_count": 1}, "rubbing": {"_count": 1}, "Zabini": {"_count": 1}, "Ogden": {"_count": 1}, "theres": {"_count": 1}, "thats": {"_count": 1}, "Luna": {"_count": 10}, "Slughorn": {"_count": 2}, "Ginnys": {"_count": 2}, "hugged": {"_count": 2}, "have": {"_count": 1}, "at": {"_count": 1}, "spoke": {"_count": 1}, "adding": {"_count": 1}, "fell": {"_count": 1}, "slightly": {"_count": 1}, "jabbed": {"_count": 1}, "with": {"_count": 2}, "Doge": {"_count": 1}, "well": {"_count": 1}, "hands": {"_count": 1}, "lets": {"_count": 1}, "Phineas": {"_count": 1}, "when": {"_count": 1}, "you": {"_count": 1}, "wiped": {"_count": 1}, "sat": {"_count": 1}, "dragged": {"_count": 1}, "as": {"_count": 1}, "Griphook": {"_count": 3}, "whispered": {"_count": 1}, "try": {"_count": 1}, "your": {"_count": 1}, "gazed": {"_count": 1}, "Lord": {"_count": 1}, "tears": {"_count": 1}, "still": {"_count": 1}}, "off": {"_count": 5, "ter": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}}, "gently": {"_count": 1, "on": {"_count": 1}}, "he": {"_count": 62, "murmured": {"_count": 1}, "wouldnt": {"_count": 1}, "hated": {"_count": 1}, "couldnt": {"_count": 2}, "has": {"_count": 1}, "would": {"_count": 3}, "and": {"_count": 2}, "said": {"_count": 25}, "must": {"_count": 1}, "could": {"_count": 2}, "kept": {"_count": 1}, "leaned": {"_count": 1}, "just": {"_count": 1}, "promised": {"_count": 1}, "had": {"_count": 1}, "muttered": {"_count": 1}, "was": {"_count": 6}, "swept": {"_count": 1}, "marched": {"_count": 1}, "seemed": {"_count": 1}, "panted": {"_count": 1}, "began": {"_count": 1}, "added": {"_count": 1}, "mumbled": {"_count": 1}, "hurried": {"_count": 1}, "hit": {"_count": 1}, "keeled": {"_count": 1}, "changed": {"_count": 1}}, "woke": {"_count": 17, "with": {"_count": 3}, "early": {"_count": 4}, "at": {"_count": 1}, "sweating": {"_count": 1}, "quite": {"_count": 1}, "up": {"_count": 3}, "on": {"_count": 1}, "extremely": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}}, "heard": {"_count": 121, "her": {"_count": 8}, "something": {"_count": 4}, "one": {"_count": 1}, "the": {"_count": 24}, "a": {"_count": 20}, "Hermione": {"_count": 4}, "none": {"_count": 1}, "Dudleys": {"_count": 1}, "Uncle": {"_count": 1}, "from": {"_count": 1}, "it": {"_count": 3}, "Ron": {"_count": 4}, "Riddle": {"_count": 1}, "chairs": {"_count": 1}, "inside": {"_count": 1}, "his": {"_count": 2}, "many": {"_count": 2}, "talking": {"_count": 1}, "him": {"_count": 4}, "himself": {"_count": 1}, "Hagrid": {"_count": 3}, "Fleur": {"_count": 1}, "someone": {"_count": 2}, "Snape": {"_count": 2}, "quite": {"_count": 1}, "Bagmans": {"_count": 1}, "Krums": {"_count": 1}, "its": {"_count": 1}, "people": {"_count": 1}, "nothing": {"_count": 1}, "but": {"_count": 1}, "Fred": {"_count": 1}, "Rons": {"_count": 1}, "just": {"_count": 1}, "Lavender": {"_count": 1}, "Malfoy": {"_count": 2}, "footsteps": {"_count": 1}, "them": {"_count": 2}, "hooves": {"_count": 1}, "Phineas": {"_count": 1}, "Bellatrix": {"_count": 1}, "Katie": {"_count": 1}, "Ginny": {"_count": 1}, "over": {"_count": 1}, "more": {"_count": 2}, "an": {"_count": 1}, "Voldemort": {"_count": 1}, "Griphook": {"_count": 1}, "innumerable": {"_count": 1}}, "groaned": {"_count": 6, "": {"_count": 3}, "looking": {"_count": 1}, "wondering": {"_count": 1}, "and": {"_count": 1}}, "got": {"_count": 58, "slowly": {"_count": 3}, "toast": {"_count": 1}, "into": {"_count": 3}, "to": {"_count": 20}, "one": {"_count": 1}, "a": {"_count": 3}, "up": {"_count": 14}, "out": {"_count": 3}, "outside": {"_count": 1}, "down": {"_count": 1}, "back": {"_count": 3}, "through": {"_count": 1}, "dressed": {"_count": 1}, "off": {"_count": 1}, "it": {"_count": 1}, "so": {"_count": 1}}, "was": {"_count": 535, "used": {"_count": 4}, "turning": {"_count": 2}, "frying": {"_count": 1}, "left": {"_count": 6}, "allowed": {"_count": 1}, "talking": {"_count": 1}, "glad": {"_count": 8}, "on": {"_count": 6}, "thinking": {"_count": 9}, "sure": {"_count": 49}, "strongly": {"_count": 1}, "rather": {"_count": 3}, "being": {"_count": 3}, "now": {"_count": 6}, "wondering": {"_count": 2}, "looking": {"_count": 6}, "pleased": {"_count": 12}, "just": {"_count": 9}, "going": {"_count": 5}, "very": {"_count": 6}, "speechless": {"_count": 1}, "gliding": {"_count": 1}, "faster": {"_count": 1}, "suddenly": {"_count": 4}, "speeding": {"_count": 2}, "so": {"_count": 10}, "relieved": {"_count": 5}, "still": {"_count": 14}, "almost": {"_count": 2}, "halfway": {"_count": 2}, "rubbing": {"_count": 1}, "quite": {"_count": 13}, "reminded": {"_count": 7}, "pointing": {"_count": 2}, "remembering": {"_count": 1}, "in": {"_count": 4}, "silent": {"_count": 2}, "knocked": {"_count": 2}, "surely": {"_count": 1}, "dragging": {"_count": 1}, "to": {"_count": 2}, "staring": {"_count": 5}, "at": {"_count": 1}, "regretting": {"_count": 1}, "hauled": {"_count": 1}, "forced": {"_count": 4}, "attacking": {"_count": 1}, "seized": {"_count": 1}, "determined": {"_count": 3}, "the": {"_count": 6}, "little": {"_count": 1}, "only": {"_count": 4}, "getting": {"_count": 3}, "particularly": {"_count": 1}, "how": {"_count": 2}, "far": {"_count": 1}, "bursting": {"_count": 1}, "trying": {"_count": 5}, "shaking": {"_count": 1}, "several": {"_count": 1}, "watching": {"_count": 4}, "also": {"_count": 1}, "soaked": {"_count": 1}, "standing": {"_count": 5}, "more": {"_count": 2}, "ter": {"_count": 1}, "woken": {"_count": 1}, "helping": {"_count": 1}, "keen": {"_count": 1}, "falling": {"_count": 1}, "surrounded": {"_count": 1}, "too": {"_count": 8}, "taking": {"_count": 1}, "prepared": {"_count": 2}, "having": {"_count": 2}, "sitting": {"_count": 7}, "angry": {"_count": 2}, "borne": {"_count": 1}, "": {"_count": 4}, "awake": {"_count": 2}, "amazed": {"_count": 2}, "no": {"_count": 3}, "that": {"_count": 1}, "about": {"_count": 3}, "already": {"_count": 7}, "losing": {"_count": 2}, "not": {"_count": 29}, "starting": {"_count": 3}, "ready": {"_count": 6}, "feeling": {"_count": 7}, "with": {"_count": 1}, "listening": {"_count": 2}, "polishing": {"_count": 1}, "something": {"_count": 1}, "surprised": {"_count": 4}, "able": {"_count": 4}, "finding": {"_count": 3}, "full": {"_count": 1}, "really": {"_count": 1}, "adamant": {"_count": 1}, "right": {"_count": 1}, "supposed": {"_count": 1}, "a": {"_count": 5}, "perfectly": {"_count": 1}, "as": {"_count": 3}, "burning": {"_count": 1}, "bobbing": {"_count": 1}, "training": {"_count": 1}, "an": {"_count": 2}, "there": {"_count": 2}, "running": {"_count": 1}, "concentrating": {"_count": 1}, "thrown": {"_count": 2}, "practicing": {"_count": 2}, "hanging": {"_count": 1}, "bound": {"_count": 1}, "tied": {"_count": 1}, "and": {"_count": 1}, "astonished": {"_count": 3}, "stunned": {"_count": 1}, "filled": {"_count": 1}, "lying": {"_count": 2}, "shouting": {"_count": 1}, "managing": {"_count": 1}, "jammed": {"_count": 1}, "careful": {"_count": 1}, "sweeping": {"_count": 1}, "putting": {"_count": 1}, "somehow": {"_count": 1}, "hardly": {"_count": 1}, "first": {"_count": 1}, "again": {"_count": 1}, "starving": {"_count": 1}, "grateful": {"_count": 1}, "barely": {"_count": 2}, "exhausted": {"_count": 1}, "grinning": {"_count": 1}, "pretty": {"_count": 1}, "reading": {"_count": 2}, "exerting": {"_count": 1}, "tempted": {"_count": 1}, "worried": {"_count": 2}, "saved": {"_count": 1}, "protesting": {"_count": 1}, "riotously": {"_count": 1}, "separated": {"_count": 1}, "revolted": {"_count": 1}, "simply": {"_count": 1}, "stuck": {"_count": 1}, "of": {"_count": 2}, "certain": {"_count": 1}, "deeply": {"_count": 1}, "desperate": {"_count": 1}, "laughing": {"_count": 3}, "patting": {"_count": 1}, "pulled": {"_count": 2}, "dying": {"_count": 1}, "grasping": {"_count": 1}, "yelling": {"_count": 1}, "deluged": {"_count": 1}, "all": {"_count": 1}, "letting": {"_count": 1}, "pulling": {"_count": 1}, "holding": {"_count": 1}, "purple": {"_count": 1}, "unsurprised": {"_count": 1}, "hungry": {"_count": 1}, "calming": {"_count": 1}, "saying": {"_count": 1}, "impressed": {"_count": 2}, "nearly": {"_count": 2}, "wrong": {"_count": 1}, "doing": {"_count": 1}, "besieged": {"_count": 1}, "unlikely": {"_count": 1}, "disappointed": {"_count": 1}, "seeing": {"_count": 1}, "clearly": {"_count": 1}, "shaken": {"_count": 1}, "paying": {"_count": 1}, "alarmed": {"_count": 1}, "clambering": {"_count": 1}, "mere": {"_count": 1}, "soaring": {"_count": 1}, "diligently": {"_count": 1}, "bleeding": {"_count": 1}, "embarrassed": {"_count": 1}, "afraid": {"_count": 1}, "drawn": {"_count": 1}, "kissing": {"_count": 1}, "making": {"_count": 1}, "his": {"_count": 1}, "invisible": {"_count": 1}, "confident": {"_count": 1}, "here": {"_count": 2}, "concerned": {"_count": 1}, "impersonating": {"_count": 1}, "wandering": {"_count": 1}, "hurrying": {"_count": 1}, "hurtling": {"_count": 1}, "least": {"_count": 1}, "visited": {"_count": 1}, "up": {"_count": 1}, "even": {"_count": 1}, "wearing": {"_count": 1}, "waiting": {"_count": 1}, "half": {"_count": 1}, "walking": {"_count": 1}, "careless": {"_count": 1}, "disconcerted": {"_count": 1}, "aware": {"_count": 1}, "rolled": {"_count": 1}, "caught": {"_count": 1}, "facing": {"_count": 1}, "fully": {"_count": 1}, "consumed": {"_count": 1}, "back": {"_count": 1}, "struggling": {"_count": 1}, "flying": {"_count": 1}, "shooting": {"_count": 1}, "buffeted": {"_count": 1}}, "as": {"_count": 159, "Dudley": {"_count": 1}, "though": {"_count": 29}, "Dedalus": {"_count": 1}, "horrible": {"_count": 1}, "Zabini": {"_count": 1}, "they": {"_count": 29}, "he": {"_count": 31}, "Seeker": {"_count": 1}, "George": {"_count": 2}, "Mrs": {"_count": 2}, "Hermione": {"_count": 6}, "she": {"_count": 7}, "the": {"_count": 14}, "Ron": {"_count": 4}, "Neville": {"_count": 1}, "Dobby": {"_count": 1}, "downtrodden": {"_count": 1}, "ominous": {"_count": 1}, "Harry": {"_count": 2}, "miserable": {"_count": 1}, "what": {"_count": 1}, "much": {"_count": 1}, "meeting": {"_count": 1}, "if": {"_count": 2}, "everybody": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 5}, "to": {"_count": 1}, "I": {"_count": 1}, "another": {"_count": 1}, "quietly": {"_count": 2}, "Dean": {"_count": 1}, "Cousin": {"_count": 1}, "slightly": {"_count": 1}, "Bill": {"_count": 1}, "together": {"_count": 1}}, "but": {"_count": 85, "he": {"_count": 11}, "they": {"_count": 2}, "whats": {"_count": 1}, "I": {"_count": 10}, "hed": {"_count": 1}, "hell": {"_count": 1}, "Ron": {"_count": 3}, "as": {"_count": 1}, "rules": {"_count": 1}, "McGonagall": {"_count": 1}, "there": {"_count": 2}, "well": {"_count": 1}, "these": {"_count": 1}, "Karkaroff": {"_count": 1}, "Harry": {"_count": 2}, "Hermione": {"_count": 2}, "hes": {"_count": 1}, "her": {"_count": 1}, "Ill": {"_count": 1}, "before": {"_count": 2}, "Knowing": {"_count": 1}, "Fred": {"_count": 1}, "you": {"_count": 5}, "that": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 6}, "theres": {"_count": 2}, "weve": {"_count": 1}, "people": {"_count": 1}, "eagerly": {"_count": 1}, "stumbled": {"_count": 1}, "his": {"_count": 1}, "please": {"_count": 1}, "": {"_count": 1}, "battle": {"_count": 1}, "why": {"_count": 3}, "not": {"_count": 1}, "then": {"_count": 1}, "Well": {"_count": 1}, "Lupin": {"_count": 1}, "it": {"_count": 1}, "of": {"_count": 1}, "if": {"_count": 1}, "Ginny": {"_count": 1}, "Death": {"_count": 1}, "tell": {"_count": 1}, "perhaps": {"_count": 1}}, "didnt": {"_count": 109, "look": {"_count": 1}, "trust": {"_count": 1}, "move": {"_count": 4}, "do": {"_count": 1}, "know": {"_count": 21}, "speak": {"_count": 2}, "say": {"_count": 9}, "think": {"_count": 2}, "take": {"_count": 1}, "feel": {"_count": 3}, "have": {"_count": 8}, "miss": {"_count": 1}, "see": {"_count": 1}, "like": {"_count": 7}, "sleep": {"_count": 1}, "really": {"_count": 1}, "enjoy": {"_count": 1}, "answer": {"_count": 7}, "much": {"_count": 1}, "mind": {"_count": 1}, "even": {"_count": 2}, "care": {"_count": 3}, "realize": {"_count": 1}, "want": {"_count": 4}, "but": {"_count": 1}, "recognize": {"_count": 2}, "return": {"_count": 1}, "ask": {"_count": 2}, "stop": {"_count": 1}, "understand": {"_count": 5}, "go": {"_count": 1}, "slow": {"_count": 1}, "dare": {"_count": 2}, "catch": {"_count": 1}, "seem": {"_count": 1}, "need": {"_count": 2}, "believe": {"_count": 1}, "reply": {"_count": 1}, "you": {"_count": 1}, "tell": {"_count": 1}, "quite": {"_count": 1}}, "had": {"_count": 726, "always": {"_count": 4}, "a": {"_count": 32}, "been": {"_count": 54}, "the": {"_count": 35}, "seen": {"_count": 37}, "dreamed": {"_count": 1}, "no": {"_count": 27}, "grabbed": {"_count": 1}, "gone": {"_count": 4}, "learned": {"_count": 2}, "never": {"_count": 69}, "to": {"_count": 28}, "passed": {"_count": 3}, "gotten": {"_count": 3}, "eaten": {"_count": 1}, "tea": {"_count": 1}, "caught": {"_count": 2}, "heard": {"_count": 9}, "just": {"_count": 22}, "only": {"_count": 8}, "found": {"_count": 5}, "difficulty": {"_count": 1}, "an": {"_count": 3}, "done": {"_count": 2}, "managed": {"_count": 3}, "signed": {"_count": 1}, "torn": {"_count": 1}, "even": {"_count": 4}, "suddenly": {"_count": 2}, "pulled": {"_count": 4}, "reached": {"_count": 1}, "forgotten": {"_count": 4}, "also": {"_count": 2}, "taken": {"_count": 10}, "ever": {"_count": 51}, "almost": {"_count": 2}, "come": {"_count": 10}, "somehow": {"_count": 2}, "escaped": {"_count": 2}, "enjoyed": {"_count": 1}, "slipped": {"_count": 1}, "finished": {"_count": 8}, "expected": {"_count": 7}, "had": {"_count": 10}, "changed": {"_count": 2}, "barely": {"_count": 5}, "wanted": {"_count": 1}, "hit": {"_count": 2}, "visited": {"_count": 2}, "perched": {"_count": 1}, "lost": {"_count": 1}, "started": {"_count": 2}, "Potions": {"_count": 1}, "stopped": {"_count": 2}, "grown": {"_count": 1}, "inherited": {"_count": 2}, "entered": {"_count": 4}, "Fawkes": {"_count": 1}, "spent": {"_count": 4}, "therefore": {"_count": 1}, "crept": {"_count": 1}, "accidentally": {"_count": 1}, "broken": {"_count": 1}, "paid": {"_count": 1}, "refilled": {"_count": 1}, "belted": {"_count": 1}, "bargained": {"_count": 1}, "something": {"_count": 2}, "already": {"_count": 6}, "mortally": {"_count": 1}, "once": {"_count": 4}, "by": {"_count": 1}, "": {"_count": 2}, "disappeared": {"_count": 1}, "crossed": {"_count": 1}, "conjured": {"_count": 1}, "watched": {"_count": 2}, "fallen": {"_count": 2}, "survived": {"_count": 1}, "arrived": {"_count": 1}, "believed": {"_count": 1}, "helped": {"_count": 2}, "conveniently": {"_count": 1}, "received": {"_count": 2}, "sent": {"_count": 4}, "lived": {"_count": 1}, "begun": {"_count": 1}, "set": {"_count": 2}, "imagined": {"_count": 1}, "described": {"_count": 1}, "rarely": {"_count": 1}, "finally": {"_count": 3}, "thought": {"_count": 4}, "stolen": {"_count": 1}, "closed": {"_count": 1}, "met": {"_count": 3}, "bought": {"_count": 1}, "waved": {"_count": 1}, "half": {"_count": 1}, "of": {"_count": 1}, "first": {"_count": 2}, "left": {"_count": 3}, "removed": {"_count": 1}, "used": {"_count": 2}, "quite": {"_count": 1}, "not": {"_count": 42}, "told": {"_count": 3}, "sat": {"_count": 1}, "swallowed": {"_count": 1}, "it": {"_count": 1}, "explained": {"_count": 1}, "such": {"_count": 1}, "walked": {"_count": 2}, "soon": {"_count": 1}, "one": {"_count": 1}, "felt": {"_count": 3}, "said": {"_count": 3}, "confided": {"_count": 1}, "tricked": {"_count": 1}, "got": {"_count": 2}, "noticed": {"_count": 2}, "gripped": {"_count": 1}, "asked": {"_count": 2}, "slid": {"_count": 1}, "wondered": {"_count": 3}, "thrown": {"_count": 3}, "unfrozen": {"_count": 1}, "time": {"_count": 2}, "traveled": {"_count": 1}, "completely": {"_count": 1}, "drunk": {"_count": 1}, "opened": {"_count": 2}, "taught": {"_count": 2}, "read": {"_count": 1}, "ridden": {"_count": 1}, "stepped": {"_count": 1}, "better": {"_count": 1}, "suspected": {"_count": 2}, "joined": {"_count": 1}, "his": {"_count": 4}, "offered": {"_count": 1}, "indeed": {"_count": 1}, "deliberately": {"_count": 1}, "hoped": {"_count": 2}, "often": {"_count": 1}, "known": {"_count": 6}, "pinned": {"_count": 1}, "Herbology": {"_count": 1}, "now": {"_count": 1}, "endured": {"_count": 1}, "registered": {"_count": 1}, "given": {"_count": 4}, "cottoned": {"_count": 1}, "triumphed": {"_count": 1}, "lessons": {"_count": 1}, "glimpsed": {"_count": 1}, "knocked": {"_count": 1}, "anticipated": {"_count": 1}, "nodded": {"_count": 1}, "long": {"_count": 1}, "dived": {"_count": 1}, "plunged": {"_count": 1}, "recounted": {"_count": 1}, "shown": {"_count": 1}, "so": {"_count": 2}, "hastily": {"_count": 1}, "become": {"_count": 1}, "prowled": {"_count": 1}, "strayed": {"_count": 1}, "hardly": {"_count": 1}, "lunged": {"_count": 1}, "simply": {"_count": 1}, "eyes": {"_count": 1}}, "liked": {"_count": 7, "about": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}, "Hermione": {"_count": 1}, "Angelina": {"_count": 1}, "despite": {"_count": 1}, "them": {"_count": 1}}, "needed": {"_count": 6, "a": {"_count": 1}, "to": {"_count": 4}, "": {"_count": 1}}, "must": {"_count": 3, "have": {"_count": 2}, "not": {"_count": 1}}, "often": {"_count": 2, "said": {"_count": 1}, "felt": {"_count": 1}}, "put": {"_count": 26, "the": {"_count": 3}, "in": {"_count": 2}, "on": {"_count": 6}, "his": {"_count": 11}, "out": {"_count": 2}, "off": {"_count": 1}, "Hagrids": {"_count": 1}}, "who": {"_count": 215, "could": {"_count": 11}, "couldnt": {"_count": 3}, "spent": {"_count": 1}, "was": {"_count": 52}, "had": {"_count": 51}, "found": {"_count": 2}, "hadnt": {"_count": 2}, "knew": {"_count": 9}, "backed": {"_count": 1}, "felt": {"_count": 9}, "": {"_count": 2}, "didnt": {"_count": 2}, "waited": {"_count": 1}, "hesitated": {"_count": 2}, "happened": {"_count": 1}, "nervously": {"_count": 1}, "got": {"_count": 1}, "hated": {"_count": 1}, "wasnt": {"_count": 1}, "picked": {"_count": 1}, "did": {"_count": 5}, "tried": {"_count": 2}, "grinned": {"_count": 1}, "slopped": {"_count": 1}, "looked": {"_count": 3}, "yawned": {"_count": 1}, "shrugged": {"_count": 1}, "braced": {"_count": 1}, "saw": {"_count": 3}, "from": {"_count": 1}, "waved": {"_count": 1}, "stared": {"_count": 2}, "scrambled": {"_count": 1}, "avoided": {"_count": 2}, "turned": {"_count": 4}, "would": {"_count": 3}, "ignored": {"_count": 1}, "suddenly": {"_count": 1}, "passed": {"_count": 2}, "asked": {"_count": 1}, "lured": {"_count": 1}, "kept": {"_count": 2}, "ducked": {"_count": 1}, "recognized": {"_count": 2}, "stood": {"_count": 2}, "caught": {"_count": 1}, "missed": {"_count": 1}, "understood": {"_count": 2}, "thought": {"_count": 1}, "hastily": {"_count": 1}, "wanted": {"_count": 1}, "became": {"_count": 1}, "remained": {"_count": 1}, "liked": {"_count": 1}, "now": {"_count": 1}, "nodded": {"_count": 1}, "pictured": {"_count": 1}, "considered": {"_count": 1}, "set": {"_count": 1}, "continued": {"_count": 1}}, "hated": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "so": {"_count": 1}}, "knew": {"_count": 172, "he": {"_count": 13}, "somehow": {"_count": 1}, "that": {"_count": 41}, "when": {"_count": 2}, "Ron": {"_count": 6}, "what": {"_count": 7}, "Quirrell": {"_count": 1}, "it": {"_count": 8}, "at": {"_count": 6}, "instantly": {"_count": 2}, "perfectly": {"_count": 5}, "why": {"_count": 5}, "by": {"_count": 2}, "so": {"_count": 1}, "the": {"_count": 6}, "there": {"_count": 3}, "Aunt": {"_count": 1}, "": {"_count": 5}, "which": {"_count": 1}, "she": {"_count": 7}, "better": {"_count": 2}, "no": {"_count": 1}, "who": {"_count": 2}, "was": {"_count": 4}, "exactly": {"_count": 1}, "enough": {"_count": 1}, "these": {"_count": 1}, "Hagrid": {"_count": 1}, "of": {"_count": 1}, "how": {"_count": 4}, "they": {"_count": 2}, "Dumbledore": {"_count": 1}, "his": {"_count": 2}, "out": {"_count": 1}, "for": {"_count": 3}, "led": {"_count": 1}, "from": {"_count": 1}, "just": {"_count": 1}, "Snape": {"_count": 1}, "this": {"_count": 2}, "been": {"_count": 1}, "though": {"_count": 1}, "must": {"_count": 1}, "instinctively": {"_count": 1}, "as": {"_count": 2}, "boded": {"_count": 1}, "to": {"_count": 1}, "immediately": {"_count": 1}, "because": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}, "detected": {"_count": 1}, "now": {"_count": 2}, "had": {"_count": 1}}, "like": {"_count": 17, "this": {"_count": 1}, "a": {"_count": 8}, "everyone": {"_count": 1}, "poison": {"_count": 1}, "Hermione": {"_count": 1}, "an": {"_count": 1}, "mist": {"_count": 1}, "scalding": {"_count": 1}, "physical": {"_count": 1}, "they": {"_count": 1}}, "a": {"_count": 76, "nasty": {"_count": 1}, "look": {"_count": 3}, "hamburger": {"_count": 1}, "small": {"_count": 3}, "swift": {"_count": 2}, "hint": {"_count": 1}, "little": {"_count": 10}, "hearty": {"_count": 1}, "searching": {"_count": 1}, "boy": {"_count": 1}, "pair": {"_count": 1}, "toothpick": {"_count": 1}, "happy": {"_count": 1}, "large": {"_count": 2}, "chipped": {"_count": 1}, "dark": {"_count": 1}, "quizzical": {"_count": 1}, "startled": {"_count": 1}, "slight": {"_count": 2}, "piece": {"_count": 1}, "rubber": {"_count": 1}, "sort": {"_count": 1}, "book": {"_count": 1}, "hand": {"_count": 1}, "disgusted": {"_count": 1}, "few": {"_count": 2}, "very": {"_count": 1}, "goodluck": {"_count": 1}, "furtive": {"_count": 1}, "chink": {"_count": 1}, "distant": {"_count": 1}, "bit": {"_count": 1}, "last": {"_count": 1}, "perplexed": {"_count": 1}, "venomous": {"_count": 1}, "crease": {"_count": 1}, "thoroughly": {"_count": 1}, "feeling": {"_count": 1}, "stretch": {"_count": 1}, "Happy": {"_count": 1}, "hatred": {"_count": 1}, "set": {"_count": 1}, "hard": {"_count": 1}, "burning": {"_count": 1}, "shifty": {"_count": 1}, "sharp": {"_count": 1}, "reproachful": {"_count": 2}, "most": {"_count": 1}, "big": {"_count": 1}, "rope": {"_count": 1}, "glowing": {"_count": 1}, "cold": {"_count": 1}, "meaningful": {"_count": 1}, "goblet": {"_count": 1}, "scathing": {"_count": 1}, "radiant": {"_count": 1}, "cursory": {"_count": 1}, "better": {"_count": 1}}, "aside": {"_count": 5, "": {"_count": 3}, "the": {"_count": 1}, "to": {"_count": 1}}, "honestly": {"_count": 3, "But": {"_count": 1}, "": {"_count": 2}}, "coming": {"_count": 4, "back": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 1}}, "wasnt": {"_count": 22, "punished": {"_count": 1}, "sure": {"_count": 4}, "going": {"_count": 3}, "listening": {"_count": 4}, "surprised": {"_count": 2}, "looking": {"_count": 1}, "worried": {"_count": 1}, "complaining": {"_count": 1}, "expelled": {"_count": 1}, "fooled": {"_count": 1}, "allowed": {"_count": 1}, "bothered": {"_count": 1}, "cursed": {"_count": 1}}, "supposed": {"_count": 15, "that": {"_count": 4}, "was": {"_count": 2}, "must": {"_count": 1}, "Moody": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "Charlie": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 55, "council": {"_count": 1}, "bank": {"_count": 1}, "moment": {"_count": 3}, "twins": {"_count": 1}, "sudden": {"_count": 1}, "youngest": {"_count": 1}, "Weasleys": {"_count": 1}, "impression": {"_count": 1}, "Bludger": {"_count": 1}, "next": {"_count": 1}, "look": {"_count": 1}, "Cup": {"_count": 1}, "truth": {"_count": 1}, "other": {"_count": 2}, "uproar": {"_count": 1}, "article": {"_count": 1}, "names": {"_count": 1}, "first": {"_count": 1}, "dragons": {"_count": 1}, "egg": {"_count": 1}, "empty": {"_count": 1}, "thing": {"_count": 1}, "smoky": {"_count": 1}, "rear": {"_count": 1}, "meetings": {"_count": 1}, "index": {"_count": 1}, "words": {"_count": 1}, "elf": {"_count": 1}, "breath": {"_count": 1}, "food": {"_count": 1}, "third": {"_count": 1}, "effect": {"_count": 1}, "young": {"_count": 2}, "usual": {"_count": 1}, "hesitancy": {"_count": 1}, "diarys": {"_count": 1}, "charms": {"_count": 1}, "time": {"_count": 1}, "strange": {"_count": 1}, "thumbsup": {"_count": 1}, "entrance": {"_count": 1}, "thicker": {"_count": 1}, "strength": {"_count": 1}, "new": {"_count": 1}, "scene": {"_count": 1}, "bottle": {"_count": 1}, "blood": {"_count": 1}, "only": {"_count": 1}, "Horcrux": {"_count": 1}, "door": {"_count": 1}, "same": {"_count": 1}}, "were": {"_count": 23, "just": {"_count": 1}, "almost": {"_count": 1}, "up": {"_count": 1}, "having": {"_count": 1}, "led": {"_count": 1}, "looking": {"_count": 1}, "being": {"_count": 1}, "Ron": {"_count": 1}, "never": {"_count": 1}, "meeting": {"_count": 1}, "okay": {"_count": 1}, "supposed": {"_count": 1}, "going": {"_count": 1}, "really": {"_count": 1}, "part": {"_count": 1}, "invisible": {"_count": 1}, "stopping": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "buffeted": {"_count": 1}, "all": {"_count": 1}, "coming": {"_count": 1}}, "remembering": {"_count": 9, "suddenly": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 4}, "ink": {"_count": 1}, "how": {"_count": 1}, "Dumbledore": {"_count": 1}}, "his": {"_count": 67, "face": {"_count": 3}, "longestever": {"_count": 1}, "glasses": {"_count": 1}, "letter": {"_count": 1}, "eyes": {"_count": 8}, "beard": {"_count": 1}, "stomach": {"_count": 2}, "voice": {"_count": 13}, "teeth": {"_count": 1}, "black": {"_count": 2}, "heart": {"_count": 6}, "temper": {"_count": 4}, "wand": {"_count": 1}, "magical": {"_count": 2}, "enormous": {"_count": 1}, "expression": {"_count": 2}, "boyish": {"_count": 1}, "arms": {"_count": 1}, "fingers": {"_count": 1}, "pouchy": {"_count": 1}, "mouth": {"_count": 2}, "hand": {"_count": 2}, "hands": {"_count": 2}, "jaw": {"_count": 1}, "head": {"_count": 1}, "task": {"_count": 1}, "pulse": {"_count": 1}, "scar": {"_count": 1}, "throat": {"_count": 1}, "mother": {"_count": 2}}, "what": {"_count": 29, "he": {"_count": 1}, "if": {"_count": 3}, "kept": {"_count": 1}, "was": {"_count": 1}, "do": {"_count": 3}, "are": {"_count": 5}, "the": {"_count": 2}, "form": {"_count": 1}, "Dumbledore": {"_count": 1}, "MadEye": {"_count": 1}, "youve": {"_count": 2}, "did": {"_count": 1}, "kind": {"_count": 1}, "": {"_count": 1}, "happened": {"_count": 3}, "can": {"_count": 1}, "else": {"_count": 1}}, "thought": {"_count": 187, "licking": {"_count": 1}, "this": {"_count": 3}, "his": {"_count": 5}, "there": {"_count": 3}, "wildly": {"_count": 2}, "that": {"_count": 19}, "as": {"_count": 5}, "she": {"_count": 6}, "Flint": {"_count": 1}, "edging": {"_count": 1}, "": {"_count": 8}, "it": {"_count": 16}, "the": {"_count": 4}, "Firenze": {"_count": 1}, "he": {"_count": 41}, "miserably": {"_count": 1}, "of": {"_count": 11}, "hard": {"_count": 4}, "in": {"_count": 1}, "Ron": {"_count": 2}, "someone": {"_count": 1}, "staring": {"_count": 2}, "suddenly": {"_count": 1}, "but": {"_count": 3}, "irritably": {"_count": 1}, "had": {"_count": 1}, "briefly": {"_count": 1}, "even": {"_count": 1}, "they": {"_count": 3}, "dully": {"_count": 2}, "was": {"_count": 2}, "furiously": {"_count": 1}, "revolving": {"_count": 1}, "desperately": {"_count": 2}, "dazedly": {"_count": 1}, "Snape": {"_count": 1}, "her": {"_count": 1}, "let": {"_count": 1}, "Dumbledore": {"_count": 1}, "and": {"_count": 3}, "indignantly": {"_count": 1}, "like": {"_count": 1}, "how": {"_count": 1}, "Professor": {"_count": 1}, "though": {"_count": 2}, "Ogden": {"_count": 1}, "Gaunt": {"_count": 1}, "Liberacorpus": {"_count": 1}, "wryly": {"_count": 1}, "Voldemort": {"_count": 1}, "watching": {"_count": 1}, "privately": {"_count": 1}, "for": {"_count": 2}, "would": {"_count": 1}, "Levi": {"_count": 1}, "or": {"_count": 1}, "because": {"_count": 1}, "fast": {"_count": 1}, "Tom": {"_count": 1}, "inexplicably": {"_count": 1}}, "felt": {"_count": 269, "afterward": {"_count": 1}, "the": {"_count": 27}, "himself": {"_count": 13}, "strangely": {"_count": 3}, "a": {"_count": 52}, "shed": {"_count": 1}, "he": {"_count": 7}, "restless": {"_count": 1}, "terrible": {"_count": 1}, "wideawake": {"_count": 1}, "as": {"_count": 35}, "in": {"_count": 1}, "something": {"_count": 4}, "Quirrells": {"_count": 1}, "nearly": {"_count": 1}, "": {"_count": 3}, "even": {"_count": 1}, "his": {"_count": 20}, "heavy": {"_count": 1}, "that": {"_count": 5}, "Ron": {"_count": 3}, "it": {"_count": 3}, "drowsy": {"_count": 1}, "very": {"_count": 3}, "no": {"_count": 2}, "her": {"_count": 2}, "gave": {"_count": 1}, "better": {"_count": 1}, "sick": {"_count": 2}, "angry": {"_count": 1}, "two": {"_count": 1}, "Hermione": {"_count": 1}, "around": {"_count": 1}, "was": {"_count": 1}, "wonderfully": {"_count": 1}, "oddly": {"_count": 1}, "more": {"_count": 1}, "both": {"_count": 1}, "almost": {"_count": 3}, "Wormtails": {"_count": 1}, "for": {"_count": 1}, "an": {"_count": 3}, "able": {"_count": 1}, "at": {"_count": 1}, "sure": {"_count": 8}, "vaguely": {"_count": 1}, "winded": {"_count": 1}, "utterly": {"_count": 1}, "happier": {"_count": 1}, "optimistic": {"_count": 2}, "thoroughly": {"_count": 1}, "shivery": {"_count": 1}, "wide": {"_count": 1}, "exhausted": {"_count": 1}, "horribly": {"_count": 1}, "scared": {"_count": 1}, "distinctly": {"_count": 1}, "Dumbledores": {"_count": 1}, "extremely": {"_count": 1}, "however": {"_count": 1}, "slightly": {"_count": 3}, "fully": {"_count": 1}, "goose": {"_count": 1}, "anger": {"_count": 1}, "Dumbledore": {"_count": 1}, "rather": {"_count": 1}, "frustrated": {"_count": 1}, "Fenrir": {"_count": 1}, "Ginny": {"_count": 1}, "perplexed": {"_count": 1}, "drained": {"_count": 1}, "contaminated": {"_count": 1}, "badgered": {"_count": 1}, "sickened": {"_count": 2}, "discouraged": {"_count": 1}, "hugely": {"_count": 1}, "cheerful": {"_count": 1}, "dazed": {"_count": 1}, "they": {"_count": 1}, "like": {"_count": 1}, "responsible": {"_count": 1}, "overwhelmed": {"_count": 2}, "Griphooks": {"_count": 1}, "nothing": {"_count": 1}, "him": {"_count": 1}}, "moved": {"_count": 45, "in": {"_count": 1}, "nearer": {"_count": 1}, "closer": {"_count": 4}, "three": {"_count": 1}, "aside": {"_count": 1}, "gladly": {"_count": 1}, "back": {"_count": 1}, "his": {"_count": 4}, "automatically": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "slowly": {"_count": 1}, "toward": {"_count": 6}, "forward": {"_count": 3}, "off": {"_count": 2}, "on": {"_count": 1}, "a": {"_count": 2}, "carefully": {"_count": 1}, "over": {"_count": 1}, "across": {"_count": 3}, "into": {"_count": 1}, "around": {"_count": 2}, "so": {"_count": 1}, "deeper": {"_count": 1}, "an": {"_count": 1}, "to": {"_count": 1}, "up": {"_count": 1}}, "stared": {"_count": 95, "": {"_count": 10}, "as": {"_count": 1}, "at": {"_count": 50}, "from": {"_count": 1}, "around": {"_count": 3}, "out": {"_count": 3}, "after": {"_count": 1}, "dumbstruck": {"_count": 1}, "down": {"_count": 3}, "up": {"_count": 7}, "through": {"_count": 1}, "apprehensively": {"_count": 1}, "straight": {"_count": 1}, "back": {"_count": 2}, "into": {"_count": 5}, "thunderstruck": {"_count": 1}, "miserably": {"_count": 1}, "fixedly": {"_count": 2}, "It": {"_count": 1}}, "murmured": {"_count": 5, "through": {"_count": 1}, "watching": {"_count": 1}, "come": {"_count": 1}, "to": {"_count": 1}, "words": {"_count": 1}}, "asked": {"_count": 165, "": {"_count": 37}, "urgently": {"_count": 1}, "looking": {"_count": 2}, "before": {"_count": 1}, "trying": {"_count": 3}, "for": {"_count": 1}, "Ron": {"_count": 13}, "hoping": {"_count": 1}, "as": {"_count": 10}, "the": {"_count": 3}, "Ginny": {"_count": 1}, "scratching": {"_count": 1}, "him": {"_count": 8}, "them": {"_count": 2}, "pointing": {"_count": 2}, "her": {"_count": 12}, "Hermione": {"_count": 7}, "watching": {"_count": 1}, "fiercely": {"_count": 1}, "what": {"_count": 1}, "after": {"_count": 2}, "Professor": {"_count": 1}, "without": {"_count": 2}, "shakily": {"_count": 1}, "his": {"_count": 3}, "Mrs": {"_count": 1}, "hopefully": {"_count": 1}, "apprehensively": {"_count": 1}, "but": {"_count": 2}, "still": {"_count": 1}, "bewildered": {"_count": 1}, "perplexedly": {"_count": 1}, "quickly": {"_count": 1}, "swiftly": {"_count": 1}, "tentatively": {"_count": 1}, "surprised": {"_count": 1}, "grinning": {"_count": 1}, "Lucius": {"_count": 1}, "jumping": {"_count": 1}, "shoving": {"_count": 1}, "Luna": {"_count": 1}, "rather": {"_count": 1}, "with": {"_count": 1}, "wrenching": {"_count": 1}, "eyeing": {"_count": 1}, "unsure": {"_count": 1}, "sitting": {"_count": 1}, "grabbing": {"_count": 1}, "quietly": {"_count": 1}, "miserably": {"_count": 1}, "tripping": {"_count": 1}, "anxiously": {"_count": 1}, "aghast": {"_count": 1}, "again": {"_count": 1}, "disregarding": {"_count": 1}, "Lupin": {"_count": 1}, "angrily": {"_count": 1}, "loudly": {"_count": 1}, "ignoring": {"_count": 1}, "in": {"_count": 1}, "Dumbledore": {"_count": 1}, "Bill": {"_count": 1}, "following": {"_count": 1}, "regarding": {"_count": 1}, "suspiciously": {"_count": 1}, "and": {"_count": 1}, "remembering": {"_count": 1}, "himself": {"_count": 1}, "coldly": {"_count": 1}, "walking": {"_count": 1}, "Neville": {"_count": 1}, "weakly": {"_count": 1}}, "peered": {"_count": 6, "at": {"_count": 1}, "out": {"_count": 1}, "over": {"_count": 1}, "inside": {"_count": 1}, "down": {"_count": 1}, "around": {"_count": 1}}, "read": {"_count": 17, "on": {"_count": 1}, "the": {"_count": 6}, "": {"_count": 2}, "and": {"_count": 2}, "it": {"_count": 1}, "out": {"_count": 3}, "this": {"_count": 1}, "Siriuss": {"_count": 1}}, "made": {"_count": 27, "both": {"_count": 1}, "Dudley": {"_count": 1}, "a": {"_count": 6}, "for": {"_count": 1}, "his": {"_count": 3}, "sure": {"_count": 1}, "an": {"_count": 1}, "its": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 8}, "no": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "fell": {"_count": 18, "hard": {"_count": 2}, "off": {"_count": 2}, "into": {"_count": 2}, "to": {"_count": 3}, "backward": {"_count": 2}, "forward": {"_count": 2}, "twelve": {"_count": 1}, "silent": {"_count": 2}, "again": {"_count": 1}, "panting": {"_count": 1}}, "sat": {"_count": 66, "up": {"_count": 10}, "bolt": {"_count": 2}, "and": {"_count": 1}, "down": {"_count": 24}, "on": {"_count": 2}, "feeling": {"_count": 1}, "motionless": {"_count": 1}, "there": {"_count": 8}, "": {"_count": 4}, "finishing": {"_count": 1}, "stunned": {"_count": 1}, "torn": {"_count": 1}, "looking": {"_count": 1}, "in": {"_count": 4}, "quite": {"_count": 1}, "fully": {"_count": 1}, "too": {"_count": 1}, "back": {"_count": 1}, "crouching": {"_count": 1}}, "could": {"_count": 424, "have": {"_count": 13}, "see": {"_count": 93}, "read": {"_count": 2}, "put": {"_count": 1}, "answer": {"_count": 4}, "hear": {"_count": 46}, "hardly": {"_count": 13}, "feel": {"_count": 19}, "": {"_count": 1}, "clamber": {"_count": 1}, "think": {"_count": 6}, "stop": {"_count": 3}, "make": {"_count": 7}, "move": {"_count": 1}, "tell": {"_count": 47}, "he": {"_count": 1}, "say": {"_count": 6}, "only": {"_count": 7}, "just": {"_count": 7}, "crouch": {"_count": 1}, "again": {"_count": 1}, "shut": {"_count": 1}, "turn": {"_count": 1}, "reply": {"_count": 3}, "sort": {"_count": 1}, "almost": {"_count": 3}, "do": {"_count": 3}, "still": {"_count": 8}, "not": {"_count": 85}, "throw": {"_count": 1}, "imagine": {"_count": 3}, "remember": {"_count": 1}, "ever": {"_count": 1}, "send": {"_count": 1}, "even": {"_count": 1}, "reach": {"_count": 2}, "demand": {"_count": 1}, "barely": {"_count": 3}, "I": {"_count": 1}, "smell": {"_count": 5}, "speak": {"_count": 4}, "rectify": {"_count": 1}, "get": {"_count": 1}, "interrupt": {"_count": 1}, "distinctly": {"_count": 1}, "persuade": {"_count": 1}, "sense": {"_count": 1}, "raise": {"_count": 1}, "never": {"_count": 1}, "simply": {"_count": 1}, "visualize": {"_count": 1}, "finish": {"_count": 1}, "you": {"_count": 1}, "judge": {"_count": 1}, "this": {"_count": 1}, "no": {"_count": 1}}, "at": {"_count": 54, "least": {"_count": 3}, "Mrs": {"_count": 1}, "the": {"_count": 9}, "all": {"_count": 4}, "once": {"_count": 29}, "Hogwarts": {"_count": 1}, "a": {"_count": 1}, "something": {"_count": 1}, "first": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "what": {"_count": 1}}, "lay": {"_count": 23, "in": {"_count": 1}, "there": {"_count": 4}, "quite": {"_count": 1}, "awake": {"_count": 3}, "facedown": {"_count": 1}, "down": {"_count": 1}, "restless": {"_count": 1}, "listening": {"_count": 2}, "still": {"_count": 1}, "flat": {"_count": 1}, "looking": {"_count": 1}, "staring": {"_count": 1}, "back": {"_count": 1}, "panting": {"_count": 1}, "and": {"_count": 1}, "curled": {"_count": 2}}, "furiously": {"_count": 11, "if": {"_count": 1}, "as": {"_count": 2}, "kicking": {"_count": 1}, "": {"_count": 4}, "but": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}}, "tried": {"_count": 59, "to": {"_count": 42}, "but": {"_count": 1}, "": {"_count": 1}, "hard": {"_count": 3}, "yet": {"_count": 1}, "not": {"_count": 3}, "with": {"_count": 2}, "his": {"_count": 1}, "very": {"_count": 1}, "getting": {"_count": 1}, "every": {"_count": 1}, "again": {"_count": 2}}, "Hunting": {"_count": 1, "": {"_count": 1}}, "spent": {"_count": 12, "as": {"_count": 1}, "ten": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 6}, "most": {"_count": 2}}, "on": {"_count": 29, "the": {"_count": 18}, "a": {"_count": 2}, "to": {"_count": 1}, "purpose": {"_count": 1}, "tenterhooks": {"_count": 1}, "having": {"_count": 1}, "his": {"_count": 2}, "her": {"_count": 2}, "board": {"_count": 1}}, "watch": {"_count": 2, "television": {"_count": 1}, "us": {"_count": 1}}, "went": {"_count": 55, "in": {"_count": 1}, "back": {"_count": 10}, "out": {"_count": 1}, "to": {"_count": 11}, "people": {"_count": 1}, "on": {"_count": 13}, "straight": {"_count": 2}, "over": {"_count": 1}, "down": {"_count": 3}, "next": {"_count": 1}, "right": {"_count": 1}, "restlessly": {"_count": 1}, "the": {"_count": 1}, "through": {"_count": 1}, "inside": {"_count": 2}, "into": {"_count": 1}, "up": {"_count": 1}, "within": {"_count": 1}, "past": {"_count": 1}, "first": {"_count": 1}}, "looked": {"_count": 326, "in": {"_count": 2}, "up": {"_count": 51}, "into": {"_count": 10}, "back": {"_count": 16}, "quickly": {"_count": 6}, "behind": {"_count": 2}, "at": {"_count": 49}, "upward": {"_count": 1}, "down": {"_count": 32}, "over": {"_count": 16}, "nothing": {"_count": 1}, "out": {"_count": 2}, "around": {"_count": 79}, "from": {"_count": 7}, "bemusedly": {"_count": 1}, "everywhere": {"_count": 1}, "sideways": {"_count": 6}, "straight": {"_count": 1}, "uncertainly": {"_count": 1}, "curiously": {"_count": 1}, "wildly": {"_count": 2}, "and": {"_count": 3}, "desperately": {"_count": 1}, "eagerly": {"_count": 1}, "all": {"_count": 2}, "away": {"_count": 3}, "across": {"_count": 1}, "toward": {"_count": 1}, "between": {"_count": 1}, "slowly": {"_count": 1}, "round": {"_count": 2}, "surreptitiously": {"_count": 1}, "right": {"_count": 2}, "questioningly": {"_count": 1}, "there": {"_count": 1}, "anxiously": {"_count": 1}, "to": {"_count": 2}, "left": {"_count": 1}, "through": {"_count": 1}, "startled": {"_count": 1}, "mockingly": {"_count": 1}, "more": {"_count": 2}, "steadily": {"_count": 1}, "white": {"_count": 1}, "mutinous": {"_count": 1}, "above": {"_count": 1}, "too": {"_count": 1}, "closer": {"_count": 1}, "unconvinced": {"_count": 1}, "Yaxley": {"_count": 1}, "Death": {"_count": 1}}, "seriously": {"_count": 2, "doubted": {"_count": 1}, "": {"_count": 1}}, "get": {"_count": 5, "it": {"_count": 1}, "inside": {"_count": 1}, "away": {"_count": 1}, "out": {"_count": 1}, "that": {"_count": 1}}, "dodged": {"_count": 7, "the": {"_count": 1}, "it": {"_count": 1}, "another": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}, "around": {"_count": 1}, "behind": {"_count": 1}}, "picked": {"_count": 16, "it": {"_count": 3}, "up": {"_count": 11}, "the": {"_count": 1}, "his": {"_count": 1}}, "saw": {"_count": 288, "a": {"_count": 22}, "the": {"_count": 34}, "he": {"_count": 1}, "before": {"_count": 1}, "his": {"_count": 19}, "as": {"_count": 1}, "it": {"_count": 6}, "that": {"_count": 36}, "Gilderoy": {"_count": 1}, "Malfoy": {"_count": 5}, "several": {"_count": 2}, "George": {"_count": 3}, "Hermione": {"_count": 8}, "Rons": {"_count": 1}, "at": {"_count": 1}, "Ron": {"_count": 5}, "Aunt": {"_count": 1}, "quite": {"_count": 1}, "when": {"_count": 2}, "Stans": {"_count": 1}, "two": {"_count": 2}, "her": {"_count": 5}, "him": {"_count": 12}, "Madam": {"_count": 1}, "something": {"_count": 6}, "no": {"_count": 1}, "four": {"_count": 1}, "with": {"_count": 5}, "them": {"_count": 2}, "by": {"_count": 1}, "himself": {"_count": 2}, "one": {"_count": 1}, "below": {"_count": 1}, "Fred": {"_count": 2}, "Lee": {"_count": 1}, "Karkaroff": {"_count": 1}, "Krum": {"_count": 1}, "comprehension": {"_count": 1}, "Viktor": {"_count": 1}, "each": {"_count": 1}, "long": {"_count": 1}, "some": {"_count": 1}, "was": {"_count": 3}, "Ludo": {"_count": 2}, "looked": {"_count": 2}, "MadEye": {"_count": 1}, "Moodys": {"_count": 1}, "Moody": {"_count": 1}, "faces": {"_count": 1}, "Cho": {"_count": 2}, "Hagrid": {"_count": 1}, "Cedrics": {"_count": 1}, "their": {"_count": 1}, "Mrs": {"_count": 2}, "Draco": {"_count": 1}, "Bill": {"_count": 1}, "silver": {"_count": 1}, "Professor": {"_count": 2}, "Chos": {"_count": 1}, "little": {"_count": 2}, "many": {"_count": 1}, "McGonagall": {"_count": 1}, "Sirius": {"_count": 3}, "Lupin": {"_count": 1}, "Umbridge": {"_count": 1}, "small": {"_count": 1}, "through": {"_count": 1}, "Tonks": {"_count": 2}, "Kingsley": {"_count": 1}, "sudden": {"_count": 1}, "Borgin": {"_count": 1}, "fleetingly": {"_count": 1}, "Lavender": {"_count": 1}, "were": {"_count": 1}, "Seamus": {"_count": 1}, "an": {"_count": 1}, "clearly": {"_count": 1}, "in": {"_count": 3}, "Dumbledore": {"_count": 1}, "Malfoys": {"_count": 1}, "Neville": {"_count": 2}, "Dolores": {"_count": 1}, "very": {"_count": 1}, "both": {"_count": 1}, "Mr": {"_count": 1}, "Lupins": {"_count": 1}, "cloaked": {"_count": 1}, "for": {"_count": 1}, "Hermiones": {"_count": 1}, "Yaxleys": {"_count": 1}, "Narcissa": {"_count": 1}, "Dracos": {"_count": 1}, "Bellatrix": {"_count": 1}, "Luna": {"_count": 1}, "beads": {"_count": 1}, "Professors": {"_count": 1}, "Zacharias": {"_count": 1}, "bursts": {"_count": 3}, "Grawp": {"_count": 1}, "Aberforth": {"_count": 1}, "tear": {"_count": 1}, "Peeves": {"_count": 1}, "Snape": {"_count": 3}, "Yaxley": {"_count": 2}, "light": {"_count": 1}, "Fenrir": {"_count": 1}, "Voldemort": {"_count": 1}, "great": {"_count": 1}, "Charlie": {"_count": 1}, "Voldemorts": {"_count": 1}}, "trying": {"_count": 25, "to": {"_count": 22}, "the": {"_count": 1}, "not": {"_count": 1}, "hard": {"_count": 1}}, "angrily": {"_count": 36, "it": {"_count": 1}, "": {"_count": 25}, "his": {"_count": 1}, "but": {"_count": 4}, "forgetting": {"_count": 1}, "Crouch": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "sitting": {"_count": 1}}, "about": {"_count": 11, "this": {"_count": 1}, "having": {"_count": 1}, "whats": {"_count": 1}, "the": {"_count": 3}, "to": {"_count": 3}, "my": {"_count": 1}, "a": {"_count": 1}}, "one": {"_count": 5, "trip": {"_count": 1}, "glistening": {"_count": 1}, "evening": {"_count": 1}, "more": {"_count": 1}, "upsidedown": {"_count": 1}}, "sighed": {"_count": 5, "and": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 3}}, "right": {"_count": 4, "behind": {"_count": 2}, "": {"_count": 2}}, "walked": {"_count": 49, "round": {"_count": 1}, "more": {"_count": 1}, "toward": {"_count": 1}, "in": {"_count": 2}, "onto": {"_count": 2}, "right": {"_count": 1}, "past": {"_count": 1}, "on": {"_count": 2}, "over": {"_count": 2}, "across": {"_count": 2}, "beside": {"_count": 1}, "slowly": {"_count": 5}, "around": {"_count": 2}, "into": {"_count": 3}, "down": {"_count": 4}, "back": {"_count": 4}, "out": {"_count": 2}, "inside": {"_count": 1}, "up": {"_count": 1}, "quietly": {"_count": 1}, "closer": {"_count": 1}, "the": {"_count": 1}, "quickly": {"_count": 2}, "alongside": {"_count": 2}, "straight": {"_count": 1}, "to": {"_count": 2}, "with": {"_count": 1}}, "turned": {"_count": 91, "it": {"_count": 4}, "and": {"_count": 8}, "over": {"_count": 3}, "the": {"_count": 5}, "this": {"_count": 2}, "around": {"_count": 6}, "to": {"_count": 24}, "back": {"_count": 6}, "too": {"_count": 1}, "his": {"_count": 9}, "Ron": {"_count": 1}, "off": {"_count": 1}, "away": {"_count": 5}, "left": {"_count": 1}, "toward": {"_count": 2}, "": {"_count": 5}, "right": {"_count": 1}, "on": {"_count": 2}, "a": {"_count": 3}, "at": {"_count": 1}, "slowly": {"_count": 1}}, "leapt": {"_count": 15, "into": {"_count": 2}, "forward": {"_count": 2}, "behind": {"_count": 1}, "up": {"_count": 2}, "to": {"_count": 3}, "over": {"_count": 3}, "backward": {"_count": 1}, "out": {"_count": 1}}, "realized": {"_count": 37, "that": {"_count": 18}, "his": {"_count": 1}, "what": {"_count": 4}, "too": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 4}, "how": {"_count": 1}, "immediately": {"_count": 1}, "was": {"_count": 1}, "at": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 1}, "from": {"_count": 1}, "their": {"_count": 1}}, "for": {"_count": 39, "about": {"_count": 1}, "a": {"_count": 15}, "the": {"_count": 8}, "this": {"_count": 1}, "every": {"_count": 1}, "coming": {"_count": 1}, "Angelina": {"_count": 1}, "I": {"_count": 1}, "Hermione": {"_count": 1}, "his": {"_count": 2}, "good": {"_count": 1}, "once": {"_count": 1}, "wanting": {"_count": 1}, "luck": {"_count": 1}, "what": {"_count": 1}, "help": {"_count": 1}, "nineteen": {"_count": 1}}, "shuffled": {"_count": 1, "miserably": {"_count": 1}}, "found": {"_count": 59, "their": {"_count": 1}, "himself": {"_count": 28}, "that": {"_count": 2}, "most": {"_count": 1}, "Ron": {"_count": 2}, "it": {"_count": 7}, "his": {"_count": 4}, "he": {"_count": 3}, "this": {"_count": 2}, "the": {"_count": 4}, "if": {"_count": 1}, "helpful": {"_count": 1}, "nothing": {"_count": 1}, "almost": {"_count": 1}, "bleak": {"_count": 1}}, "around": {"_count": 6, "the": {"_count": 6}}, "shared": {"_count": 1, "a": {"_count": 1}}, "stayed": {"_count": 5, "awake": {"_count": 1}, "where": {"_count": 2}, "silent": {"_count": 1}, "quite": {"_count": 1}}, "of": {"_count": 12, "something": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "someone": {"_count": 1}, "energy": {"_count": 1}, "being": {"_count": 1}, "some": {"_count": 1}, "Percys": {"_count": 1}, "course": {"_count": 3}}, "privately": {"_count": 3, "agreed": {"_count": 2}, "felt": {"_count": 1}}, "couldnt": {"_count": 71, "sleep": {"_count": 3}, "blame": {"_count": 4}, "help": {"_count": 12}, "even": {"_count": 1}, "keep": {"_count": 1}, "believe": {"_count": 5}, "understand": {"_count": 2}, "eat": {"_count": 1}, "make": {"_count": 5}, "think": {"_count": 5}, "sit": {"_count": 1}, "take": {"_count": 3}, "speak": {"_count": 1}, "feel": {"_count": 1}, "see": {"_count": 9}, "bring": {"_count": 2}, "fail": {"_count": 1}, "explain": {"_count": 1}, "have": {"_count": 1}, "tell": {"_count": 1}, "run": {"_count": 1}, "imagine": {"_count": 1}, "stop": {"_count": 1}, "hear": {"_count": 2}, "suppress": {"_count": 1}, "get": {"_count": 1}, "ignore": {"_count": 1}, "answer": {"_count": 1}, "stand": {"_count": 1}, "go": {"_count": 1}}, "hed": {"_count": 1, "be": {"_count": 1}}, "said": {"_count": 493, "the": {"_count": 3}, "quickly": {"_count": 8}, "again": {"_count": 5}, "to": {"_count": 15}, "but": {"_count": 3}, "desperately": {"_count": 2}, "nothing": {"_count": 23}, "": {"_count": 62}, "Hermione": {"_count": 36}, "quietly": {"_count": 5}, "suddenly": {"_count": 2}, "Dumbledore": {"_count": 41}, "And": {"_count": 2}, "Lockhart": {"_count": 9}, "urgently": {"_count": 1}, "Hagrid": {"_count": 8}, "Nick": {"_count": 1}, "loudly": {"_count": 8}, "his": {"_count": 4}, "Remember": {"_count": 1}, "as": {"_count": 6}, "Fred": {"_count": 5}, "George": {"_count": 5}, "keeping": {"_count": 1}, "looking": {"_count": 6}, "You": {"_count": 2}, "There": {"_count": 1}, "Ron": {"_count": 15}, "uncertainly": {"_count": 1}, "raising": {"_count": 1}, "Riddle": {"_count": 2}, "shortly": {"_count": 3}, "thunderstruck": {"_count": 1}, "breathing": {"_count": 1}, "forgetting": {"_count": 1}, "a": {"_count": 6}, "miserably": {"_count": 1}, "Fudge": {"_count": 3}, "out": {"_count": 1}, "Mr": {"_count": 13}, "Seamus": {"_count": 1}, "while": {"_count": 1}, "exasperatedly": {"_count": 1}, "slowly": {"_count": 5}, "bending": {"_count": 1}, "wearily": {"_count": 1}, "gripping": {"_count": 1}, "weakly": {"_count": 1}, "excitedly": {"_count": 1}, "even": {"_count": 1}, "suspiciously": {"_count": 1}, "Lupin": {"_count": 7}, "Black": {"_count": 1}, "furiously": {"_count": 5}, "unable": {"_count": 1}, "completely": {"_count": 1}, "fervently": {"_count": 1}, "spotting": {"_count": 1}, "goodbye": {"_count": 1}, "Percy": {"_count": 1}, "startled": {"_count": 1}, "bewildered": {"_count": 1}, "thoughtfully": {"_count": 1}, "stroking": {"_count": 1}, "blankly": {"_count": 2}, "incredulously": {"_count": 1}, "so": {"_count": 1}, "flatly": {"_count": 1}, "Rita": {"_count": 1}, "stubbornly": {"_count": 1}, "Shes": {"_count": 1}, "very": {"_count": 6}, "warily": {"_count": 1}, "through": {"_count": 1}, "coming": {"_count": 1}, "throwing": {"_count": 1}, "Bagman": {"_count": 2}, "under": {"_count": 1}, "starting": {"_count": 1}, "in": {"_count": 7}, "dully": {"_count": 1}, "See": {"_count": 1}, "shrugging": {"_count": 1}, "watching": {"_count": 1}, "hurrying": {"_count": 2}, "angrily": {"_count": 1}, "noticing": {"_count": 1}, "untruthfully": {"_count": 1}, "staring": {"_count": 4}, "Well": {"_count": 2}, "though": {"_count": 1}, "hopelessly": {"_count": 1}, "fiercely": {"_count": 2}, "sidestepping": {"_count": 1}, "annoyed": {"_count": 1}, "bitterly": {"_count": 1}, "at": {"_count": 4}, "and": {"_count": 4}, "roughly": {"_count": 1}, "Voldemort": {"_count": 1}, "Voldemorts": {"_count": 2}, "hoarsely": {"_count": 1}, "he": {"_count": 1}, "amazed": {"_count": 1}, "Sirius": {"_count": 4}, "Mrs": {"_count": 5}, "sharply": {"_count": 1}, "Ive": {"_count": 1}, "talking": {"_count": 1}, "coldly": {"_count": 1}, "Ginny": {"_count": 2}, "aloud": {"_count": 2}, "Tonks": {"_count": 2}, "breathlessly": {"_count": 1}, "pulling": {"_count": 2}, "echoing": {"_count": 1}, "Dean": {"_count": 1}, "it": {"_count": 2}, "isnt": {"_count": 1}, "stiffly": {"_count": 1}, "I": {"_count": 1}, "brightly": {"_count": 1}, "Angelina": {"_count": 1}, "half": {"_count": 1}, "furious": {"_count": 1}, "Neville": {"_count": 5}, "stunned": {"_count": 1}, "bracingly": {"_count": 1}, "heavily": {"_count": 1}, "Rons": {"_count": 1}, "over": {"_count": 2}, "still": {"_count": 2}, "aggressively": {"_count": 1}, "softly": {"_count": 1}, "fearfully": {"_count": 1}, "yet": {"_count": 1}, "hastily": {"_count": 1}, "finally": {"_count": 1}, "Who": {"_count": 1}, "made": {"_count": 1}, "Luna": {"_count": 2}, "Parvati": {"_count": 1}, "Scrimgeour": {"_count": 1}, "grudgingly": {"_count": 1}, "just": {"_count": 1}, "This": {"_count": 1}, "Kreacher": {"_count": 1}, "is": {"_count": 1}, "sure": {"_count": 1}, "Hestia": {"_count": 1}, "That": {"_count": 1}, "No": {"_count": 2}, "what": {"_count": 1}, "eyes": {"_count": 1}, "harshly": {"_count": 1}, "Speaking": {"_count": 1}, "trying": {"_count": 1}, "opening": {"_count": 1}, "approaching": {"_count": 1}}, "opened": {"_count": 37, "it": {"_count": 3}, "his": {"_count": 26}, "the": {"_count": 8}}, "written": {"_count": 1, "on": {"_count": 1}}, "with": {"_count": 64, "a": {"_count": 24}, "warmth": {"_count": 1}, "his": {"_count": 8}, "difficulty": {"_count": 2}, "spit": {"_count": 1}, "Dudley": {"_count": 1}, "her": {"_count": 3}, "one": {"_count": 1}, "its": {"_count": 1}, "bits": {"_count": 1}, "the": {"_count": 6}, "complete": {"_count": 1}, "distinct": {"_count": 1}, "an": {"_count": 3}, "those": {"_count": 1}, "shrewd": {"_count": 1}, "bright": {"_count": 1}, "great": {"_count": 1}, "detailed": {"_count": 1}, "as": {"_count": 1}, "piggy": {"_count": 1}, "feeble": {"_count": 1}, "all": {"_count": 1}, "half": {"_count": 1}}, "eagerly": {"_count": 9, "": {"_count": 7}, "regretting": {"_count": 1}, "dropping": {"_count": 1}}, "yer": {"_count": 2, "a": {"_count": 1}, "here": {"_count": 1}}, "stretched": {"_count": 4, "out": {"_count": 4}}, "interested": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 91, "don": {"_count": 1}, "keep": {"_count": 1}, "just": {"_count": 1}, "know": {"_count": 4}, "think": {"_count": 14}, "sleep": {"_count": 1}, "forgot": {"_count": 1}, "dont": {"_count": 11}, "cant": {"_count": 4}, "fashioned": {"_count": 1}, "tried": {"_count": 1}, "want": {"_count": 5}, "need": {"_count": 2}, "knew": {"_count": 2}, "hope": {"_count": 1}, "could": {"_count": 2}, "was": {"_count": 2}, "didnt": {"_count": 4}, "really": {"_count": 2}, "bet": {"_count": 1}, "can": {"_count": 1}, "will": {"_count": 1}, "havent": {"_count": 1}, "did": {"_count": 1}, "never": {"_count": 1}, "thought": {"_count": 2}, "didnd": {"_count": 1}, "owe": {"_count": 1}, "believe": {"_count": 1}, "doubt": {"_count": 2}, "said": {"_count": 1}, "would": {"_count": 2}, "may": {"_count": 1}, "am": {"_count": 2}, "must": {"_count": 1}, "shouldnta": {"_count": 1}, "passed": {"_count": 1}, "promised": {"_count": 2}, "should": {"_count": 2}, "found": {"_count": 1}, "saw": {"_count": 1}, "told": {"_count": 1}, "only": {"_count": 1}, "dreaded": {"_count": 1}}, "people": {"_count": 1, "are": {"_count": 1}}, "suggested": {"_count": 9, "": {"_count": 4}, "as": {"_count": 1}, "wanting": {"_count": 1}, "looking": {"_count": 1}, "quietly": {"_count": 1}, "trying": {"_count": 1}}, "jumped": {"_count": 22, "he": {"_count": 1}, "": {"_count": 1}, "off": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 6}, "forward": {"_count": 1}, "and": {"_count": 2}, "out": {"_count": 1}, "up": {"_count": 3}, "backward": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "down": {"_count": 1}, "over": {"_count": 1}}, "meanwhile": {"_count": 4, "still": {"_count": 1}, "had": {"_count": 2}, "felt": {"_count": 1}}, "instead": {"_count": 3, "of": {"_count": 1}, "": {"_count": 2}}, "under": {"_count": 5, "his": {"_count": 4}, "her": {"_count": 1}}, "mumbled": {"_count": 12, "Im": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 7}, "where": {"_count": 1}, "turning": {"_count": 1}, "something": {"_count": 1}}, "scrambled": {"_count": 12, "to": {"_count": 4}, "out": {"_count": 1}, "around": {"_count": 2}, "into": {"_count": 1}, "down": {"_count": 1}, "up": {"_count": 2}, "back": {"_count": 1}}, "loudly": {"_count": 25, "": {"_count": 10}, "give": {"_count": 1}, "who": {"_count": 1}, "his": {"_count": 3}, "so": {"_count": 1}, "and": {"_count": 3}, "but": {"_count": 2}, "over": {"_count": 1}, "as": {"_count": 1}, "there": {"_count": 1}, "staring": {"_count": 1}}, "pulled": {"_count": 70, "out": {"_count": 16}, "back": {"_count": 4}, "the": {"_count": 10}, "off": {"_count": 10}, "a": {"_count": 2}, "his": {"_count": 10}, "on": {"_count": 2}, "him": {"_count": 2}, "himself": {"_count": 5}, "hard": {"_count": 1}, "down": {"_count": 1}, "open": {"_count": 3}, "one": {"_count": 1}, "Rons": {"_count": 1}, "some": {"_count": 1}, "Luna": {"_count": 1}}, "counted": {"_count": 2, "out": {"_count": 1}, "three": {"_count": 1}}, "lots": {"_count": 1, "ter": {"_count": 1}}, "dropped": {"_count": 18, "the": {"_count": 4}, "quickly": {"_count": 1}, "Goyles": {"_count": 1}, "into": {"_count": 1}, "his": {"_count": 7}, "lower": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "followed": {"_count": 36, "Hagrid": {"_count": 1}, "Griphook": {"_count": 1}, "Fred": {"_count": 2}, "him": {"_count": 6}, "quickly": {"_count": 1}, "it": {"_count": 1}, "Tom": {"_count": 1}, "": {"_count": 5}, "the": {"_count": 1}, "their": {"_count": 1}, "her": {"_count": 4}, "Tonks": {"_count": 1}, "Mr": {"_count": 1}, "his": {"_count": 1}, "gazing": {"_count": 1}, "Dumbledore": {"_count": 1}, "close": {"_count": 1}, "Ron": {"_count": 1}, "Ginny": {"_count": 1}, "gliding": {"_count": 1}, "he": {"_count": 1}, "them": {"_count": 1}, "as": {"_count": 1}}, "still": {"_count": 34, "staring": {"_count": 3}, "cheering": {"_count": 1}, "shaking": {"_count": 1}, "hadnt": {"_count": 4}, "shouldnt": {"_count": 1}, "reading": {"_count": 1}, "had": {"_count": 2}, "smiling": {"_count": 1}, "searching": {"_count": 1}, "got": {"_count": 1}, "unnerved": {"_count": 1}, "breathing": {"_count": 2}, "believed": {"_count": 2}, "in": {"_count": 1}, "did": {"_count": 1}, "clutching": {"_count": 1}, "endeavoring": {"_count": 1}, "looking": {"_count": 1}, "trying": {"_count": 1}, "refusing": {"_count": 1}, "dazed": {"_count": 1}, "wondering": {"_count": 1}, "invisible": {"_count": 1}, "holding": {"_count": 1}, "fighting": {"_count": 1}, "disoriented": {"_count": 1}}, "another": {"_count": 5, "of": {"_count": 1}, "note": {"_count": 1}, "friend": {"_count": 1}, "look": {"_count": 1}, "shove": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "everyone": {"_count": 3, "d": {"_count": 1}, "says": {"_count": 1}, "except": {"_count": 1}}, "panting": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 28, "he": {"_count": 1}, "theres": {"_count": 1}, "particularly": {"_count": 1}, "forcefully": {"_count": 2}, "hard": {"_count": 4}, "firmly": {"_count": 1}, "much": {"_count": 4}, "you": {"_count": 1}, "that": {"_count": 4}, "quickly": {"_count": 1}, "heartily": {"_count": 1}, "will": {"_count": 1}, "loudly": {"_count": 1}, "fast": {"_count": 1}, "tightly": {"_count": 2}, "youre": {"_count": 1}, "happy": {"_count": 1}}, "took": {"_count": 70, "the": {"_count": 17}, "out": {"_count": 3}, "a": {"_count": 12}, "one": {"_count": 3}, "it": {"_count": 7}, "off": {"_count": 8}, "his": {"_count": 5}, "Malfoys": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 1}, "hold": {"_count": 1}, "as": {"_count": 1}, "toward": {"_count": 1}, "advantage": {"_count": 2}, "two": {"_count": 1}, "to": {"_count": 1}, "another": {"_count": 1}, "aim": {"_count": 1}, "first": {"_count": 1}, "no": {"_count": 1}, "for": {"_count": 1}}, "unfolded": {"_count": 1, "a": {"_count": 1}}, "wondered": {"_count": 44, "aloud": {"_count": 1}, "if": {"_count": 3}, "what": {"_count": 5}, "why": {"_count": 5}, "how": {"_count": 5}, "whether": {"_count": 13}, "for": {"_count": 4}, "as": {"_count": 1}, "anxiously": {"_count": 1}, "dully": {"_count": 1}, "vaguely": {"_count": 1}, "watching": {"_count": 1}, "was": {"_count": 1}, "where": {"_count": 1}, "or": {"_count": 1}}, "hadnt": {"_count": 17, "known": {"_count": 1}, "had": {"_count": 2}, "broken": {"_count": 1}, "told": {"_count": 1}, "seen": {"_count": 2}, "understood": {"_count": 1}, "gotten": {"_count": 1}, "forgotten": {"_count": 1}, "touched": {"_count": 1}, "been": {"_count": 2}, "put": {"_count": 1}, "asked": {"_count": 1}, "he": {"_count": 1}, "slipped": {"_count": 1}}, "wouldnt": {"_count": 7, "have": {"_count": 4}, "soon": {"_count": 1}, "let": {"_count": 1}, "do": {"_count": 1}}, "is": {"_count": 20, "this": {"_count": 1}, "okay": {"_count": 1}, "all": {"_count": 1}, "some": {"_count": 1}, "enough": {"_count": 1}, "the": {"_count": 2}, "rarely": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 2}, "as": {"_count": 1}, "that": {"_count": 3}, "having": {"_count": 1}, "back": {"_count": 1}, "your": {"_count": 1}, "our": {"_count": 1}, "he": {"_count": 1}}, "shook": {"_count": 28, "hands": {"_count": 1}, "his": {"_count": 24}, "it": {"_count": 1}, "himself": {"_count": 1}, "feeling": {"_count": 1}}, "Professor": {"_count": 2, "Quirrell": {"_count": 1}, "Dumbledore": {"_count": 1}}, "wished": {"_count": 12, "he": {"_count": 5}, "they": {"_count": 2}, "it": {"_count": 2}, "she": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}}, "noticed": {"_count": 55, "very": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 2}, "that": {"_count": 26}, "at": {"_count": 2}, "him": {"_count": 1}, "Hagrids": {"_count": 1}, "was": {"_count": 3}, "something": {"_count": 1}, "suddenly": {"_count": 1}, "too": {"_count": 1}, "seemed": {"_count": 1}, "her": {"_count": 1}, "as": {"_count": 1}, "it": {"_count": 1}, "Madame": {"_count": 1}, "people": {"_count": 1}, "had": {"_count": 1}, "his": {"_count": 1}, "covered": {"_count": 1}, "Ron": {"_count": 1}, "glared": {"_count": 1}}, "Potters": {"_count": 26, "safe": {"_count": 1}, "in": {"_count": 1}, "coming": {"_count": 1}, "own": {"_count": 1}, "giving": {"_count": 1}, "life": {"_count": 1}, "godfather": {"_count": 1}, "greatest": {"_count": 1}, "Secret": {"_count": 1}, "well": {"_count": 1}, "wellwishers": {"_count": 1}, "strange": {"_count": 2}, "blood": {"_count": 1}, "appearance": {"_count": 1}, "offenses": {"_count": 1}, "owl": {"_count": 1}, "incidentally": {"_count": 1}, "got": {"_count": 1}, "now": {"_count": 1}, "continued": {"_count": 1}, "relatives": {"_count": 1}, "moving": {"_count": 1}, "gasping": {"_count": 1}, "who": {"_count": 1}, "ddead": {"_count": 1}}, "watched": {"_count": 70, "the": {"_count": 11}, "careful": {"_count": 1}, "Snape": {"_count": 1}, "Hagrid": {"_count": 3}, "nervously": {"_count": 2}, "Lockhart": {"_count": 1}, "amazed": {"_count": 1}, "aghast": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 7}, "": {"_count": 2}, "carefully": {"_count": 1}, "it": {"_count": 2}, "himself": {"_count": 1}, "her": {"_count": 7}, "George": {"_count": 1}, "as": {"_count": 3}, "fascinated": {"_count": 1}, "he": {"_count": 1}, "closely": {"_count": 1}, "Cedric": {"_count": 1}, "lazily": {"_count": 1}, "astounded": {"_count": 1}, "apprehensively": {"_count": 1}, "them": {"_count": 2}, "Fred": {"_count": 1}, "numbly": {"_count": 1}, "fly": {"_count": 1}, "one": {"_count": 1}, "Ginny": {"_count": 1}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}, "terrified": {"_count": 1}, "from": {"_count": 1}, "Thicknesse": {"_count": 1}, "horrified": {"_count": 1}, "Phineas": {"_count": 1}, "Lupin": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}}, "called": {"_count": 22, "to": {"_count": 5}, "or": {"_count": 1}, "": {"_count": 2}, "not": {"_count": 1}, "back": {"_count": 3}, "desperately": {"_count": 1}, "after": {"_count": 3}, "as": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}, "a": {"_count": 1}, "holding": {"_count": 1}, "across": {"_count": 1}}, "gasped": {"_count": 19, "": {"_count": 9}, "they": {"_count": 1}, "wrestling": {"_count": 1}, "clutching": {"_count": 1}, "I": {"_count": 1}, "fighting": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}, "picking": {"_count": 1}, "sitting": {"_count": 1}, "as": {"_count": 1}}, "cost": {"_count": 1, "them": {"_count": 1}}, "pile": {"_count": 1, "some": {"_count": 1}}, "leaned": {"_count": 24, "over": {"_count": 3}, "back": {"_count": 1}, "against": {"_count": 3}, "forward": {"_count": 9}, "around": {"_count": 1}, "still": {"_count": 1}, "backward": {"_count": 1}, "on": {"_count": 1}, "farther": {"_count": 1}, "an": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}}, "longed": {"_count": 2, "to": {"_count": 2}}, "would": {"_count": 49, "yeh": {"_count": 1}, "be": {"_count": 5}, "never": {"_count": 1}, "have": {"_count": 16}, "I": {"_count": 1}, "face": {"_count": 1}, "go": {"_count": 1}, "pass": {"_count": 1}, "not": {"_count": 9}, "still": {"_count": 1}, "write": {"_count": 1}, "rather": {"_count": 2}, "drown": {"_count": 1}, "appear": {"_count": 1}, "very": {"_count": 1}, "pull": {"_count": 1}, "normally": {"_count": 1}, "then": {"_count": 1}, "see": {"_count": 1}, "gladly": {"_count": 1}, "come": {"_count": 1}}, "entered": {"_count": 12, "Madam": {"_count": 1}, "a": {"_count": 2}, "Flourish": {"_count": 1}, "the": {"_count": 5}, "Cedric": {"_count": 1}, "": {"_count": 2}}, "started": {"_count": 26, "to": {"_count": 13}, "stuffing": {"_count": 1}, "at": {"_count": 1}, "looking": {"_count": 1}, "and": {"_count": 2}, "unwrapping": {"_count": 1}, "explaining": {"_count": 1}, "": {"_count": 3}, "picking": {"_count": 1}, "pacing": {"_count": 1}, "again": {"_count": 1}}, "feeling": {"_count": 16, "more": {"_count": 1}, "dazed": {"_count": 1}, "around": {"_count": 1}, "stunned": {"_count": 1}, "hot": {"_count": 1}, "worse": {"_count": 1}, "extremely": {"_count": 1}, "his": {"_count": 3}, "himself": {"_count": 1}, "both": {"_count": 1}, "it": {"_count": 1}, "slightly": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}}, "wishing": {"_count": 3, "he": {"_count": 3}}, "pleased": {"_count": 1, "to": {"_count": 1}}, "coldly": {"_count": 12, "": {"_count": 10}, "and": {"_count": 1}, "as": {"_count": 1}}, "shortly": {"_count": 9, "": {"_count": 6}, "getting": {"_count": 1}, "dragging": {"_count": 1}, "racing": {"_count": 1}}, "not": {"_count": 21, "sorry": {"_count": 1}, "to": {"_count": 3}, "taking": {"_count": 1}, "far": {"_count": 1}, "sure": {"_count": 1}, "Harry": {"_count": 2}, "one": {"_count": 1}, "meeting": {"_count": 1}, "without": {"_count": 1}, "looking": {"_count": 2}, "me": {"_count": 1}, "since": {"_count": 1}, "seven": {"_count": 1}, "listening": {"_count": 1}, "entirely": {"_count": 1}, "altogether": {"_count": 1}, "Voldemort": {"_count": 1}}, "lied": {"_count": 17, "": {"_count": 6}, "putting": {"_count": 1}, "quickly": {"_count": 2}, "and": {"_count": 1}, "coldly": {"_count": 1}, "defiantly": {"_count": 1}, "but": {"_count": 1}, "looking": {"_count": 1}, "brutally": {"_count": 1}, "hoping": {"_count": 1}, "easily": {"_count": 1}}, "cheered": {"_count": 1, "up": {"_count": 1}}, "gloomily": {"_count": 6, "": {"_count": 5}, "great": {"_count": 1}}, "away": {"_count": 4, "from": {"_count": 3}, "toward": {"_count": 1}}, "buy": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 21, "himself": {"_count": 1}, "Harry": {"_count": 3}, "": {"_count": 2}, "said": {"_count": 2}, "a": {"_count": 1}, "whats": {"_count": 1}, "youre": {"_count": 1}, "opened": {"_count": 1}, "was": {"_count": 1}, "reread": {"_count": 1}, "well": {"_count": 1}, "Potter": {"_count": 2}, "just": {"_count": 1}, "of": {"_count": 1}, "only": {"_count": 1}, "what": {"_count": 1}}, "himself": {"_count": 5, "examined": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "came": {"_count": 1}, "had": {"_count": 1}}, "now": {"_count": 27, "carried": {"_count": 1}, "had": {"_count": 2}, "knew": {"_count": 1}, "turned": {"_count": 1}, "feeling": {"_count": 1}, "starting": {"_count": 2}, "trying": {"_count": 1}, "slamming": {"_count": 1}, "and": {"_count": 1}, "saw": {"_count": 3}, "noticed": {"_count": 1}, "realized": {"_count": 1}, "grinning": {"_count": 1}, "glaring": {"_count": 1}, "suspected": {"_count": 1}, "squinted": {"_count": 1}, "positively": {"_count": 1}, "": {"_count": 1}, "sat": {"_count": 1}, "despite": {"_count": 1}, "a": {"_count": 1}, "while": {"_count": 1}, "recognized": {"_count": 1}}, "awkwardly": {"_count": 7, "": {"_count": 6}, "but": {"_count": 1}}, "from": {"_count": 27, "shoulder": {"_count": 1}, "the": {"_count": 9}, "Hagrid": {"_count": 1}, "horrible": {"_count": 1}, "going": {"_count": 1}, "a": {"_count": 2}, "under": {"_count": 2}, "Madam": {"_count": 1}, "Lord": {"_count": 1}, "Lily": {"_count": 1}, "his": {"_count": 2}, "him": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}, "drowning": {"_count": 1}, "across": {"_count": 1}}, "suddenly": {"_count": 34, "realized": {"_count": 7}, "grabbed": {"_count": 1}, "turned": {"_count": 1}, "jumped": {"_count": 1}, "sat": {"_count": 1}, "found": {"_count": 1}, "understood": {"_count": 2}, "": {"_count": 6}, "ravenous": {"_count": 1}, "realizing": {"_count": 2}, "what": {"_count": 1}, "unable": {"_count": 1}, "became": {"_count": 2}, "how": {"_count": 1}, "see": {"_count": 1}, "remembering": {"_count": 1}, "wished": {"_count": 1}, "noticed": {"_count": 1}, "irritated": {"_count": 1}, "knew": {"_count": 1}}, "swallowed": {"_count": 10, "": {"_count": 3}, "now": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 3}, "knowing": {"_count": 1}, "a": {"_count": 1}}, "shivered": {"_count": 7, "": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}, "then": {"_count": 1}, "unlike": {"_count": 1}, "slightly": {"_count": 1}}, "only": {"_count": 10, "realized": {"_count": 1}, "had": {"_count": 1}, "shook": {"_count": 1}, "No": {"_count": 1}, "wished": {"_count": 1}, "recognized": {"_count": 1}, "five": {"_count": 1}, "because": {"_count": 1}, "stopped": {"_count": 1}, "after": {"_count": 1}}, "kept": {"_count": 21, "looking": {"_count": 4}, "to": {"_count": 1}, "being": {"_count": 1}, "waking": {"_count": 1}, "glancing": {"_count": 1}, "quite": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 5}, "checking": {"_count": 1}, "reminding": {"_count": 1}, "expecting": {"_count": 1}, "pace": {"_count": 1}, "quiet": {"_count": 1}, "smiling": {"_count": 1}}, "wanted": {"_count": 19, "to": {"_count": 12}, "Hagrid": {"_count": 1}, "a": {"_count": 1}, "someone": {"_count": 1}, "things": {"_count": 1}, "very": {"_count": 1}, "with": {"_count": 1}, "nothing": {"_count": 1}}, "ticked": {"_count": 1, "off": {"_count": 1}}, "realizing": {"_count": 3, "this": {"_count": 1}, "what": {"_count": 1}, "that": {"_count": 1}}, "swung": {"_count": 12, "round": {"_count": 1}, "at": {"_count": 1}, "off": {"_count": 1}, "his": {"_count": 7}, "the": {"_count": 2}}, "pushed": {"_count": 20, "his": {"_count": 5}, "the": {"_count": 3}, "it": {"_count": 2}, "open": {"_count": 5}, "himself": {"_count": 2}, "forward": {"_count": 1}, "on": {"_count": 1}, "Ron": {"_count": 1}}, "nodded": {"_count": 34, "": {"_count": 18}, "silently": {"_count": 1}, "but": {"_count": 3}, "and": {"_count": 3}, "hesitated": {"_count": 1}, "again": {"_count": 2}, "still": {"_count": 1}, "without": {"_count": 1}, "curtly": {"_count": 1}, "his": {"_count": 2}, "then": {"_count": 1}}, "pressed": {"_count": 8, "on": {"_count": 3}, "him": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 1}}, "panted": {"_count": 19, "": {"_count": 9}, "leaning": {"_count": 1}, "as": {"_count": 1}, "just": {"_count": 1}, "darting": {"_count": 1}, "snatching": {"_count": 1}, "skidding": {"_count": 1}, "massaging": {"_count": 1}, "to": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hagrid": {"_count": 1}}, "pushing": {"_count": 5, "his": {"_count": 2}, "against": {"_count": 1}, "the": {"_count": 1}, "back": {"_count": 1}}, "Potted": {"_count": 2, "Harry": {"_count": 1}, "It": {"_count": 1}}, "brought": {"_count": 2, "it": {"_count": 1}, "up": {"_count": 1}}, "taking": {"_count": 11, "a": {"_count": 3}, "one": {"_count": 1}, "advantage": {"_count": 1}, "even": {"_count": 1}, "off": {"_count": 1}, "the": {"_count": 1}, "care": {"_count": 1}, "note": {"_count": 1}, "Dudleys": {"_count": 1}}, "holding": {"_count": 8, "up": {"_count": 3}, "on": {"_count": 1}, "the": {"_count": 2}, "out": {"_count": 2}}, "unwrapped": {"_count": 2, "his": {"_count": 2}}, "confessed": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 25, "the": {"_count": 8}, "clenched": {"_count": 2}, "gritted": {"_count": 5}, "a": {"_count": 2}, "his": {"_count": 4}, "tiny": {"_count": 1}, "her": {"_count": 1}, "numb": {"_count": 1}, "chattering": {"_count": 1}}, "recognized": {"_count": 43, "the": {"_count": 6}, "him": {"_count": 1}, "as": {"_count": 9}, "her": {"_count": 1}, "his": {"_count": 3}, "it": {"_count": 7}, "one": {"_count": 1}, "though": {"_count": 1}, "at": {"_count": 4}, "them": {"_count": 1}, "vaguely": {"_count": 1}, "Hermione": {"_count": 1}, "Parseltongue": {"_count": 1}, "immediately": {"_count": 2}, "Zacharias": {"_count": 1}, "Voldemort": {"_count": 1}, "to": {"_count": 1}, "Rowena": {"_count": 1}}, "more": {"_count": 8, "bravely": {"_count": 1}, "quietly": {"_count": 1}, "loudly": {"_count": 2}, "seriously": {"_count": 1}, "than": {"_count": 1}, "amazed": {"_count": 1}, "selfish": {"_count": 1}}, "explained": {"_count": 9, "about": {"_count": 1}, "": {"_count": 5}, "all": {"_count": 2}, "briefly": {"_count": 1}}, "nervously": {"_count": 13, "tried": {"_count": 1}, "": {"_count": 7}, "as": {"_count": 2}, "flattened": {"_count": 1}, "all": {"_count": 1}, "apparently": {"_count": 1}}, "quickly": {"_count": 75, "looked": {"_count": 1}, "found": {"_count": 1}, "": {"_count": 45}, "but": {"_count": 2}, "Ill": {"_count": 1}, "picking": {"_count": 1}, "flattening": {"_count": 1}, "Ive": {"_count": 1}, "took": {"_count": 1}, "forcing": {"_count": 1}, "pulled": {"_count": 2}, "focused": {"_count": 1}, "he": {"_count": 3}, "I": {"_count": 1}, "pushing": {"_count": 1}, "and": {"_count": 2}, "remembering": {"_count": 1}, "passing": {"_count": 1}, "keen": {"_count": 1}, "his": {"_count": 1}, "looking": {"_count": 1}, "let": {"_count": 1}, "can": {"_count": 1}, "envisaging": {"_count": 1}, "in": {"_count": 1}, "before": {"_count": 1}}, "smiled": {"_count": 10, "weakly": {"_count": 2}, "feebly": {"_count": 1}, "grimly": {"_count": 1}, "back": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 2}}, "stepped": {"_count": 22, "forward": {"_count": 3}, "aside": {"_count": 1}, "in": {"_count": 1}, "over": {"_count": 2}, "out": {"_count": 4}, "backward": {"_count": 1}, "down": {"_count": 1}, "outside": {"_count": 1}, "into": {"_count": 2}, "inside": {"_count": 1}, "onto": {"_count": 1}, "so": {"_count": 1}, "swiftly": {"_count": 1}, "up": {"_count": 2}}, "gripped": {"_count": 7, "the": {"_count": 3}, "his": {"_count": 2}, "Dumbledores": {"_count": 1}, "Dracos": {"_count": 1}}, "grinned": {"_count": 10, "back": {"_count": 2}, "awkwardly": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 2}, "again": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}}, "spotted": {"_count": 12, "Professor": {"_count": 1}, "the": {"_count": 3}, "Fred": {"_count": 1}, "something": {"_count": 1}, "an": {"_count": 2}, "Uncle": {"_count": 1}, "Ron": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "crossed": {"_count": 10, "his": {"_count": 1}, "to": {"_count": 4}, "the": {"_count": 5}}, "clapped": {"_count": 5, "loudly": {"_count": 2}, "a": {"_count": 2}, "his": {"_count": 1}}, "really": {"_count": 6, "wanted": {"_count": 2}, "spectacular": {"_count": 1}, "got": {"_count": 1}, "did": {"_count": 1}, "amusing": {"_count": 1}}, "piled": {"_count": 1, "his": {"_count": 1}}, "cut": {"_count": 6, "up": {"_count": 1}, "him": {"_count": 1}, "in": {"_count": 2}, "across": {"_count": 2}}, "helped": {"_count": 7, "himself": {"_count": 4}, "her": {"_count": 1}, "George": {"_count": 1}, "Dumbledore": {"_count": 1}}, "laughed": {"_count": 18, "but": {"_count": 2}, "as": {"_count": 1}, "softly": {"_count": 1}, "aloud": {"_count": 1}, "again": {"_count": 2}, "just": {"_count": 1}, "": {"_count": 5}, "uncomfortably": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "The": {"_count": 1}, "though": {"_count": 1}}, "told": {"_count": 71, "the": {"_count": 6}, "Hagrid": {"_count": 2}, "them": {"_count": 8}, "him": {"_count": 7}, "Hermione": {"_count": 5}, "Ron": {"_count": 9}, "Crookshanks": {"_count": 1}, "Wood": {"_count": 1}, "her": {"_count": 12}, "Lupin": {"_count": 1}, "himself": {"_count": 5}, "Sirius": {"_count": 1}, "of": {"_count": 1}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "Ginny": {"_count": 1}, "Kreacher": {"_count": 1}, "Mundungus": {"_count": 1}, "a": {"_count": 1}, "Bathilda": {"_count": 1}, "Bill": {"_count": 1}, "Neville": {"_count": 1}, "Luna": {"_count": 2}, "Albus": {"_count": 1}}, "anything": {"_count": 1, "so": {"_count": 1}}, "tore": {"_count": 9, "it": {"_count": 1}, "back": {"_count": 1}, "from": {"_count": 1}, "open": {"_count": 1}, "his": {"_count": 1}, "up": {"_count": 1}, "a": {"_count": 1}, "past": {"_count": 1}, "the": {"_count": 1}}, "borrowed": {"_count": 2, "Rons": {"_count": 1}, "a": {"_count": 1}}, "glanced": {"_count": 64, "at": {"_count": 16}, "down": {"_count": 4}, "back": {"_count": 7}, "sideways": {"_count": 4}, "quickly": {"_count": 3}, "into": {"_count": 2}, "around": {"_count": 10}, "up": {"_count": 4}, "toward": {"_count": 2}, "over": {"_count": 6}, "left": {"_count": 1}, "out": {"_count": 1}, "again": {"_count": 2}, "automatically": {"_count": 1}, "hopelessly": {"_count": 1}}, "forced": {"_count": 7, "himself": {"_count": 3}, "a": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 1}}, "quietly": {"_count": 37, "": {"_count": 25}, "tucking": {"_count": 1}, "I": {"_count": 1}, "more": {"_count": 1}, "can": {"_count": 1}, "when": {"_count": 2}, "while": {"_count": 1}, "and": {"_count": 1}, "McLaggen": {"_count": 1}, "as": {"_count": 1}, "extracted": {"_count": 1}, "Ron": {"_count": 1}}, "caught": {"_count": 39, "Seamuss": {"_count": 2}, "sight": {"_count": 3}, "a": {"_count": 10}, "Nevilles": {"_count": 1}, "himself": {"_count": 1}, "the": {"_count": 6}, "his": {"_count": 2}, "him": {"_count": 2}, "words": {"_count": 1}, "snatches": {"_count": 1}, "it": {"_count": 4}, "Rons": {"_count": 1}, "unawares": {"_count": 1}, "her": {"_count": 2}, "Hermione": {"_count": 1}, "Hermiones": {"_count": 1}}, "knocked": {"_count": 9, "they": {"_count": 1}, "and": {"_count": 2}, "on": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 2}}, "remembered": {"_count": 38, "Ron": {"_count": 1}, "about": {"_count": 1}, "something": {"_count": 3}, "only": {"_count": 1}, "what": {"_count": 3}, "that": {"_count": 3}, "him": {"_count": 1}, "how": {"_count": 5}, "as": {"_count": 1}, "He": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 7}, "Hagrid": {"_count": 1}, "Lupin": {"_count": 1}, "Rons": {"_count": 1}, "why": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 3}, "with": {"_count": 1}, "It": {"_count": 1}}, "that": {"_count": 47, "Gringotts": {"_count": 1}, "mirror": {"_count": 1}, "Dumbledore": {"_count": 2}, "mustve": {"_count": 1}, "she": {"_count": 3}, "they": {"_count": 2}, "Im": {"_count": 1}, "there": {"_count": 1}, "show": {"_count": 1}, "you": {"_count": 3}, "he": {"_count": 7}, "the": {"_count": 2}, "stuff": {"_count": 1}, "looked": {"_count": 1}, "Mr": {"_count": 1}, "it": {"_count": 2}, "is": {"_count": 1}, "Hagrid": {"_count": 1}, "Sirius": {"_count": 1}, "day": {"_count": 1}, "wasnt": {"_count": 1}, "would": {"_count": 1}, "Umbridge": {"_count": 1}, "twenty": {"_count": 1}, "for": {"_count": 1}, "really": {"_count": 1}, "this": {"_count": 1}, "if": {"_count": 1}, "youre": {"_count": 1}, "Xenophilius": {"_count": 1}, "Voldemort": {"_count": 1}, "swords": {"_count": 1}, "those": {"_count": 1}}, "darkly": {"_count": 8, "": {"_count": 5}, "as": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}}, "Ron": {"_count": 277, "and": {"_count": 236}, "weve": {"_count": 1}, "Fred": {"_count": 4}, "Ginny": {"_count": 1}, "Hermione": {"_count": 23}, "wrote": {"_count": 1}, "gave": {"_count": 1}, "come": {"_count": 1}, "Crabbe": {"_count": 1}, "muttered": {"_count": 2}, "or": {"_count": 1}, "added": {"_count": 1}, "Seamus": {"_count": 1}, "": {"_count": 1}, "seemed": {"_count": 1}, "looked": {"_count": 1}}, "there": {"_count": 7, "was": {"_count": 1}, "": {"_count": 2}, "is": {"_count": 1}, "are": {"_count": 1}, "alone": {"_count": 1}, "arent": {"_count": 1}}, "yelled": {"_count": 64, "but": {"_count": 2}, "and": {"_count": 6}, "at": {"_count": 4}, "": {"_count": 27}, "in": {"_count": 1}, "diving": {"_count": 1}, "speeding": {"_count": 1}, "pointing": {"_count": 2}, "raising": {"_count": 1}, "trying": {"_count": 1}, "looking": {"_count": 1}, "seeing": {"_count": 1}, "scrambling": {"_count": 1}, "gesturing": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}, "his": {"_count": 1}, "after": {"_count": 2}, "vaulting": {"_count": 1}, "turning": {"_count": 1}, "Protego": {"_count": 1}, "Petrificus": {"_count": 1}, "SIRIUS": {"_count": 1}, "Sectumsempral": {"_count": 1}, "Stupefy": {"_count": 1}, "fighting": {"_count": 1}}, "grabbed": {"_count": 9, "his": {"_count": 2}, "the": {"_count": 1}, "Ron": {"_count": 1}, "Rons": {"_count": 1}, "hold": {"_count": 1}, "Hermione": {"_count": 2}, "two": {"_count": 1}}, "ignored": {"_count": 10, "her": {"_count": 4}, "them": {"_count": 2}, "him": {"_count": 2}, "it": {"_count": 1}, "": {"_count": 1}}, "trotting": {"_count": 1, "miserably": {"_count": 1}}, "bewildered": {"_count": 4, "was": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "shoveling": {"_count": 1, "pie": {"_count": 1}}, "Wood": {"_count": 1, "was": {"_count": 1}}, "coolly": {"_count": 5, "": {"_count": 4}, "turning": {"_count": 1}}, "sharply": {"_count": 5, "": {"_count": 4}, "because": {"_count": 1}}, "hissed": {"_count": 13, "at": {"_count": 1}, "": {"_count": 4}, "springing": {"_count": 1}, "to": {"_count": 2}, "dragging": {"_count": 1}, "trying": {"_count": 1}, "swerving": {"_count": 1}, "as": {"_count": 1}, "Im": {"_count": 1}}, "expected": {"_count": 6, "to": {"_count": 3}, "Dumbledore": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}}, "waved": {"_count": 5, "madly": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}, "good": {"_count": 1}, "until": {"_count": 1}}, "mouthed": {"_count": 2, "to": {"_count": 1}, "at": {"_count": 1}}, "whispered": {"_count": 35, "": {"_count": 14}, "as": {"_count": 1}, "frantically": {"_count": 1}, "back": {"_count": 2}, "unzipping": {"_count": 1}, "tapping": {"_count": 1}, "Pettigrew": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 4}, "when": {"_count": 1}, "fifteen": {"_count": 1}, "looking": {"_count": 1}, "bending": {"_count": 1}, "hoarsely": {"_count": 1}, "with": {"_count": 1}, "weve": {"_count": 1}, "Hermione": {"_count": 1}, "in": {"_count": 1}}, "groped": {"_count": 2, "for": {"_count": 2}}, "slammed": {"_count": 5, "the": {"_count": 4}, "it": {"_count": 1}}, "something": {"_count": 4, "else": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "about": {"_count": 1}}, "filled": {"_count": 4, "Ron": {"_count": 2}, "the": {"_count": 1}, "Hagrids": {"_count": 1}}, "ripped": {"_count": 3, "open": {"_count": 1}, "the": {"_count": 1}, "off": {"_count": 1}}, "fighting": {"_count": 4, "not": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 1}}, "chortled": {"_count": 1, "as": {"_count": 1}}, "left": {"_count": 18, "the": {"_count": 7}, "before": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "Gryffindor": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 2}, "Umbridges": {"_count": 1}, "without": {"_count": 1}, "Hermione": {"_count": 1}}, "mounted": {"_count": 2, "his": {"_count": 2}}, "landed": {"_count": 3, "next": {"_count": 2}, "back": {"_count": 1}}, "repeated": {"_count": 31, "as": {"_count": 2}, "blankly": {"_count": 2}, "hopefully": {"_count": 1}, "": {"_count": 7}, "under": {"_count": 1}, "a": {"_count": 1}, "nervously": {"_count": 1}, "loudly": {"_count": 1}, "dully": {"_count": 1}, "firmly": {"_count": 1}, "horrified": {"_count": 1}, "still": {"_count": 1}, "glumly": {"_count": 1}, "wonderingly": {"_count": 1}, "angrily": {"_count": 2}, "stunned": {"_count": 1}, "tearing": {"_count": 1}, "coming": {"_count": 1}, "looking": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "recited": {"_count": 2, "": {"_count": 1}, "staring": {"_count": 1}}, "two": {"_count": 1, "identical": {"_count": 1}}, "reeled": {"_count": 2, "off": {"_count": 1}, "backward": {"_count": 1}}, "behind": {"_count": 8, "a": {"_count": 1}, "them": {"_count": 1}, "you": {"_count": 1}, "Fudges": {"_count": 1}, "his": {"_count": 2}, "Snape": {"_count": 1}, "the": {"_count": 1}}, "sniffed": {"_count": 1, "and": {"_count": 1}}, "muttered": {"_count": 68, "": {"_count": 19}, "angrily": {"_count": 1}, "to": {"_count": 15}, "as": {"_count": 6}, "sprinting": {"_count": 1}, "desperately": {"_count": 1}, "wildly": {"_count": 1}, "and": {"_count": 1}, "running": {"_count": 1}, "biting": {"_count": 1}, "back": {"_count": 1}, "staring": {"_count": 2}, "grabbing": {"_count": 1}, "so": {"_count": 1}, "odd": {"_count": 1}, "Pansy": {"_count": 1}, "it": {"_count": 1}, "frantically": {"_count": 1}, "pretending": {"_count": 1}, "Mr": {"_count": 1}, "but": {"_count": 3}, "speaking": {"_count": 1}, "pointing": {"_count": 1}, "sinking": {"_count": 1}, "unable": {"_count": 1}, "hating": {"_count": 1}, "hurrying": {"_count": 1}, "under": {"_count": 1}}, "managed": {"_count": 11, "to": {"_count": 9}, "not": {"_count": 2}}, "time": {"_count": 2, "to": {"_count": 2}}, "then": {"_count": 18, "did": {"_count": 1}, "I": {"_count": 1}, "looked": {"_count": 2}, "realized": {"_count": 1}, "stepped": {"_count": 1}, "Hagrid": {"_count": 1}, "laughed": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "back": {"_count": 1}, "crossed": {"_count": 1}, "gave": {"_count": 1}, "snatched": {"_count": 1}, "well": {"_count": 1}, "quickly": {"_count": 1}, "to": {"_count": 1}, "returned": {"_count": 1}}, "hanging": {"_count": 1, "there": {"_count": 1}}, "clinging": {"_count": 1, "on": {"_count": 1}}, "stuck": {"_count": 6, "his": {"_count": 5}, "out": {"_count": 1}}, "reminded": {"_count": 8, "him": {"_count": 5}, "himself": {"_count": 2}, "her": {"_count": 1}}, "play": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "should": {"_count": 7, "be": {"_count": 3}, "do": {"_count": 2}, "sit": {"_count": 1}, "go": {"_count": 1}}, "learned": {"_count": 2, "that": {"_count": 1}, "quickly": {"_count": 1}}, "showed": {"_count": 6, "him": {"_count": 1}, "her": {"_count": 2}, "them": {"_count": 1}, "much": {"_count": 1}, "that": {"_count": 1}}, "gulped": {"_count": 1, "": {"_count": 1}}, "joined": {"_count": 6, "them": {"_count": 2}, "the": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}, "in": {"_count": 1}}, "you": {"_count": 47, "need": {"_count": 2}, "like": {"_count": 1}, "go": {"_count": 1}, "take": {"_count": 1}, "look": {"_count": 1}, "must": {"_count": 2}, "you": {"_count": 1}, "owe": {"_count": 1}, "arent": {"_count": 2}, "come": {"_count": 1}, "and": {"_count": 2}, "were": {"_count": 3}, "show": {"_count": 1}, "prat": {"_count": 1}, "cant": {"_count": 3}, "dont": {"_count": 3}, "can": {"_count": 3}, "saw": {"_count": 1}, "didnt": {"_count": 2}, "really": {"_count": 1}, "know": {"_count": 1}, "help": {"_count": 1}, "said": {"_count": 1}, "mustnt": {"_count": 1}, "going": {"_count": 1}, "made": {"_count": 1}, "shouldnt": {"_count": 1}, "are": {"_count": 1}, "listen": {"_count": 1}, "keep": {"_count": 1}, "wanted": {"_count": 1}, "told": {"_count": 1}, "get": {"_count": 1}, "nearly": {"_count": 1}}, "watching": {"_count": 17, "Seamus": {"_count": 1}, "Hermione": {"_count": 1}, "him": {"_count": 4}, "the": {"_count": 2}, "through": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}, "as": {"_count": 1}, "Snape": {"_count": 1}, "Rita": {"_count": 1}, "uncomprehendingly": {"_count": 1}, "Mundungus": {"_count": 1}, "Slughorn": {"_count": 1}}, "they": {"_count": 5, "had": {"_count": 3}, "can": {"_count": 1}, "know": {"_count": 1}}, "we": {"_count": 20, "were": {"_count": 2}, "need": {"_count": 2}, "mustnt": {"_count": 1}, "all": {"_count": 1}, "havent": {"_count": 1}, "want": {"_count": 2}, "wanted": {"_count": 1}, "really": {"_count": 1}, "should": {"_count": 1}, "won": {"_count": 1}, "are": {"_count": 1}, "saw": {"_count": 1}, "have": {"_count": 1}, "didnt": {"_count": 1}, "werent": {"_count": 1}, "said": {"_count": 1}, "cant": {"_count": 1}}, "clambered": {"_count": 4, "onto": {"_count": 1}, "over": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 1}}, "hasnt": {"_count": 2, "had": {"_count": 1}, "been": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "thinks": {"_count": 1, "hes": {"_count": 1}}, "all": {"_count": 7, "over": {"_count": 1}, "right": {"_count": 1}, "the": {"_count": 3}, "made": {"_count": 1}, "of": {"_count": 1}}, "she": {"_count": 25, "started": {"_count": 1}, "felt": {"_count": 1}, "said": {"_count": 19}, "whispered": {"_count": 1}, "was": {"_count": 1}, "added": {"_count": 1}, "must": {"_count": 1}}, "safely": {"_count": 1, "onto": {"_count": 1}}, "decided": {"_count": 9, "on": {"_count": 1}, "to": {"_count": 4}, "as": {"_count": 1}, "not": {"_count": 1}, "it": {"_count": 1}, "against": {"_count": 1}}, "Malfoy": {"_count": 3, "and": {"_count": 2}, "wasnt": {"_count": 1}}, "added": {"_count": 6, "": {"_count": 1}, "quickly": {"_count": 1}, "a": {"_count": 1}, "getting": {"_count": 1}, "defiantly": {"_count": 1}, "and": {"_count": 1}}, "wandered": {"_count": 3, "over": {"_count": 1}, "dispiritedly": {"_count": 1}, "onto": {"_count": 1}}, "waited": {"_count": 23, "outside": {"_count": 1}, "for": {"_count": 6}, "until": {"_count": 5}, "nervously": {"_count": 1}, "": {"_count": 2}, "every": {"_count": 1}, "a": {"_count": 1}, "but": {"_count": 3}, "hopefully": {"_count": 1}, "with": {"_count": 1}, "holding": {"_count": 1}}, "wizard": {"_count": 1, "chess": {"_count": 1}}, "played": {"_count": 2, "with": {"_count": 1}, "on": {"_count": 1}}, "blew": {"_count": 1, "it": {"_count": 1}}, "laughing": {"_count": 4, "at": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}}, "threw": {"_count": 26, "the": {"_count": 3}, "it": {"_count": 3}, "his": {"_count": 4}, "up": {"_count": 1}, "himself": {"_count": 9}, "him": {"_count": 3}, "all": {"_count": 1}, "caution": {"_count": 1}, "Ron": {"_count": 1}}, "stuffed": {"_count": 7, "the": {"_count": 2}, "his": {"_count": 3}, "their": {"_count": 1}, "a": {"_count": 1}}, "finally": {"_count": 5, "left": {"_count": 1}, "": {"_count": 1}, "dozed": {"_count": 1}, "went": {"_count": 1}, "entered": {"_count": 1}}, "broke": {"_count": 9, "in": {"_count": 1}, "away": {"_count": 1}, "into": {"_count": 2}, "apart": {"_count": 1}, "off": {"_count": 3}, "free": {"_count": 1}}, "wake": {"_count": 1, "him": {"_count": 1}}, "lit": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "snapped": {"_count": 7, "it": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 1}, "trying": {"_count": 1}, "crushing": {"_count": 1}}, "slipped": {"_count": 11, "under": {"_count": 1}, "into": {"_count": 2}, "inside": {"_count": 1}, "quietly": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}, "as": {"_count": 1}, "upstairs": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 1}}, "stood": {"_count": 52, "rooted": {"_count": 3}, "quite": {"_count": 4}, "up": {"_count": 9}, "in": {"_count": 3}, "stunned": {"_count": 1}, "irresolute": {"_count": 1}, "aside": {"_count": 1}, "listening": {"_count": 2}, "tense": {"_count": 1}, "for": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 8}, "staring": {"_count": 2}, "frozen": {"_count": 1}, "transfixed": {"_count": 1}, "to": {"_count": 1}, "near": {"_count": 1}, "very": {"_count": 1}, "stockstill": {"_count": 1}, "motionless": {"_count": 1}, "sandwiched": {"_count": 1}, "": {"_count": 1}, "invisible": {"_count": 2}, "imprisoned": {"_count": 1}, "and": {"_count": 1}, "shaking": {"_count": 1}, "with": {"_count": 1}}, "feared": {"_count": 1, "most": {"_count": 1}}, "out": {"_count": 20, "of": {"_count": 15}, "to": {"_count": 1}, "into": {"_count": 2}, "on": {"_count": 1}, "trapped": {"_count": 1}}, "dont": {"_count": 8, "go": {"_count": 2}, "trust": {"_count": 1}, "complain": {"_count": 1}, "let": {"_count": 1}, "you": {"_count": 1}, "do": {"_count": 1}, "just": {"_count": 1}}, "sank": {"_count": 11, "down": {"_count": 3}, "into": {"_count": 4}, "his": {"_count": 1}, "back": {"_count": 2}, "to": {"_count": 1}}, "being": {"_count": 5, "out": {"_count": 1}, "bullied": {"_count": 1}, "told": {"_count": 1}, "lovesick": {"_count": 1}, "still": {"_count": 1}}, "headed": {"_count": 3, "straight": {"_count": 1}, "a": {"_count": 1}, "off": {"_count": 1}}, "became": {"_count": 9, "more": {"_count": 1}, "aware": {"_count": 7}, "conscious": {"_count": 1}}, "hardly": {"_count": 8, "heard": {"_count": 1}, "knowing": {"_count": 1}, "drew": {"_count": 1}, "noticed": {"_count": 3}, "dared": {"_count": 1}, "slept": {"_count": 1}}, "know": {"_count": 1, "that": {"_count": 1}}, "streaked": {"_count": 3, "toward": {"_count": 1}, "after": {"_count": 1}, "past": {"_count": 1}}, "sped": {"_count": 15, "straight": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 6}, "on": {"_count": 1}, "around": {"_count": 1}, "toward": {"_count": 1}, "off": {"_count": 1}, "forward": {"_count": 1}, "to": {"_count": 1}, "between": {"_count": 1}}, "strained": {"_count": 2, "to": {"_count": 1}, "his": {"_count": 1}}, "nearly": {"_count": 3, "fell": {"_count": 1}, "upset": {"_count": 1}, "hit": {"_count": 1}}, "where": {"_count": 5, "have": {"_count": 1}, "hes": {"_count": 1}, "do": {"_count": 1}, "are": {"_count": 1}, "did": {"_count": 1}}, "breathlessly": {"_count": 2, "": {"_count": 2}}, "passed": {"_count": 11, "Quirrell": {"_count": 1}, "the": {"_count": 3}, "her": {"_count": 3}, "it": {"_count": 1}, "and": {"_count": 1}, "Umbridge": {"_count": 1}, "on": {"_count": 1}}, "anxiously": {"_count": 6, "": {"_count": 5}, "and": {"_count": 1}}, "sorry": {"_count": 2, "said": {"_count": 2}}, "bolted": {"_count": 1, "to": {"_count": 1}}, "urged": {"_count": 11, "": {"_count": 1}, "Ginny": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}, "Buckbeak": {"_count": 1}, "her": {"_count": 2}, "him": {"_count": 3}}, "sitting": {"_count": 12, "alone": {"_count": 1}, "up": {"_count": 6}, "down": {"_count": 3}, "upright": {"_count": 1}, "back": {"_count": 1}}, "hurrying": {"_count": 4, "to": {"_count": 1}, "over": {"_count": 1}, "after": {"_count": 1}, "forward": {"_count": 1}}, "advised": {"_count": 2, "her": {"_count": 1}, "as": {"_count": 1}}, "miserably": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "swore": {"_count": 5, "to": {"_count": 1}, "under": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "during": {"_count": 1, "practice": {"_count": 1}}, "because": {"_count": 22, "they": {"_count": 1}, "just": {"_count": 1}, "he": {"_count": 2}, "weve": {"_count": 1}, "his": {"_count": 1}, "capturing": {"_count": 1}, "Id": {"_count": 1}, "after": {"_count": 1}, "Fleur": {"_count": 1}, "were": {"_count": 1}, "A": {"_count": 1}, "if": {"_count": 1}, "while": {"_count": 1}, "Ive": {"_count": 1}, "its": {"_count": 1}, "Malfoy": {"_count": 1}, "she": {"_count": 2}, "once": {"_count": 1}, "I": {"_count": 1}, "Dumbledores": {"_count": 1}}, "flatly": {"_count": 14, "weve": {"_count": 1}, "glancing": {"_count": 1}, "": {"_count": 12}}, "Hermione": {"_count": 30, "and": {"_count": 16}, "": {"_count": 1}, "muttered": {"_count": 1}, "began": {"_count": 1}, "tried": {"_count": 1}, "whispered": {"_count": 5}, "said": {"_count": 1}, "called": {"_count": 1}, "Hagrid": {"_count": 1}, "interrupted": {"_count": 1}, "mysteriously": {"_count": 1}}, "an": {"_count": 15, "Hermionell": {"_count": 1}, "affectionate": {"_count": 1}, "idea": {"_count": 2}, "ominous": {"_count": 2}, "odd": {"_count": 1}, "enormous": {"_count": 1}, "unpleasant": {"_count": 1}, "emotion": {"_count": 1}, "oddly": {"_count": 1}, "expert": {"_count": 1}, "I": {"_count": 1}, "old": {"_count": 2}}, "set": {"_count": 14, "off": {"_count": 7}, "down": {"_count": 3}, "Dobby": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}, "to": {"_count": 1}}, "unicorn": {"_count": 1, "blood": {"_count": 1}}, "charging": {"_count": 1, "at": {"_count": 1}}, "clutching": {"_count": 2, "on": {"_count": 1}, "a": {"_count": 1}}, "startled": {"_count": 5, "by": {"_count": 2}, "": {"_count": 3}}, "croaked": {"_count": 8, "that": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 5}, "Kreacher": {"_count": 1}}, "are": {"_count": 7, "you": {"_count": 5}, "anyway": {"_count": 1}, "letters": {"_count": 1}}, "slid": {"_count": 5, "off": {"_count": 1}, "down": {"_count": 1}, "from": {"_count": 1}, "through": {"_count": 1}, "the": {"_count": 1}}, "shivering": {"_count": 1, "behind": {"_count": 1}}, "roughly": {"_count": 5, "shook": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "aside": {"_count": 1}, "off": {"_count": 1}}, "began": {"_count": 43, "to": {"_count": 10}, "but": {"_count": 9}, "without": {"_count": 2}, "awkwardly": {"_count": 2}, "": {"_count": 11}, "sprinting": {"_count": 1}, "angrily": {"_count": 1}, "hotly": {"_count": 1}, "rather": {"_count": 1}, "this": {"_count": 1}, "again": {"_count": 2}, "not": {"_count": 1}, "Hermione": {"_count": 1}}, "did": {"_count": 135, "the": {"_count": 1}, "as": {"_count": 4}, "his": {"_count": 1}, "you": {"_count": 3}, "not": {"_count": 122}, "so": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "weve": {"_count": 5, "got": {"_count": 3}, "just": {"_count": 1}, "nearly": {"_count": 1}}, "relax": {"_count": 1, "Hermione": {"_count": 1}}, "scrambling": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "sprinting": {"_count": 1, "across": {"_count": 1}}, "frantically": {"_count": 4, "": {"_count": 3}, "listen": {"_count": 1}}, "throwing": {"_count": 6, "caution": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}, "aside": {"_count": 1}, "lumps": {"_count": 1}}, "once": {"_count": 4, "he": {"_count": 1}, "more": {"_count": 1}, "the": {"_count": 1}, "again": {"_count": 1}}, "flushed": {"_count": 1, "": {"_count": 1}}, "shouted": {"_count": 51, "": {"_count": 20}, "suddenly": {"_count": 1}, "making": {"_count": 1}, "trying": {"_count": 1}, "running": {"_count": 2}, "back": {"_count": 2}, "as": {"_count": 2}, "pounding": {"_count": 1}, "and": {"_count": 2}, "except": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 5}, "ExpelliarmusV": {"_count": 1}, "after": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "goaded": {"_count": 1}, "his": {"_count": 2}, "Crucio": {"_count": 1}, "Percy": {"_count": 1}, "together": {"_count": 1}, "again": {"_count": 1}}, "any": {"_count": 3, "more": {"_count": 2}, "time": {"_count": 1}}, "ran": {"_count": 20, "upstairs": {"_count": 1}, "to": {"_count": 2}, "up": {"_count": 1}, "back": {"_count": 2}, "his": {"_count": 1}, "flatout": {"_count": 2}, "as": {"_count": 1}, "toward": {"_count": 2}, "for": {"_count": 1}, "down": {"_count": 2}, "at": {"_count": 1}, "forward": {"_count": 1}, "the": {"_count": 1}, "after": {"_count": 1}, "without": {"_count": 1}}, "hurriedly": {"_count": 5, "putting": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "pointed": {"_count": 1}, "and": {"_count": 1}}, "this": {"_count": 21, "is": {"_count": 12}, "scar": {"_count": 1}, "piece": {"_count": 1}, "isnt": {"_count": 2}, "year": {"_count": 1}, "injustice": {"_count": 1}, "lapse": {"_count": 1}, "was": {"_count": 2}}, "handed": {"_count": 5, "the": {"_count": 2}, "him": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 1}}, "climbed": {"_count": 16, "over": {"_count": 1}, "onto": {"_count": 2}, "out": {"_count": 4}, "he": {"_count": 1}, "the": {"_count": 3}, "into": {"_count": 2}, "back": {"_count": 1}, "inside": {"_count": 1}, "carefully": {"_count": 1}}, "let": {"_count": 25, "go": {"_count": 6}, "Dobby": {"_count": 1}, "out": {"_count": 10}, "Lockharts": {"_count": 1}, "the": {"_count": 1}, "himself": {"_count": 1}, "it": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 1}, "themselves": {"_count": 1}, "her": {"_count": 1}}, "choked": {"_count": 5, "": {"_count": 1}, "his": {"_count": 1}, "wiping": {"_count": 1}, "over": {"_count": 1}, "attempting": {"_count": 1}}, "doesnt": {"_count": 5, "lose": {"_count": 1}, "miss": {"_count": 1}, "want": {"_count": 2}, "look": {"_count": 1}}, "pointing": {"_count": 13, "down": {"_count": 1}, "at": {"_count": 5}, "to": {"_count": 2}, "uncertainly": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "some": {"_count": 1}, "his": {"_count": 1}}, "listened": {"_count": 10, "": {"_count": 1}, "anxiously": {"_count": 1}, "closely": {"_count": 1}, "rather": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 3}, "as": {"_count": 1}, "hard": {"_count": 1}}, "move": {"_count": 1, "diagonally": {"_count": 1}}, "amazed": {"_count": 3, "saw": {"_count": 2}, "and": {"_count": 1}}, "youre": {"_count": 17, "a": {"_count": 1}, "still": {"_count": 2}, "very": {"_count": 1}, "secretary": {"_count": 1}, "interfering": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "squashing": {"_count": 1}, "reading": {"_count": 1}, "not": {"_count": 2}, "blaming": {"_count": 1}, "worse": {"_count": 1}, "trying": {"_count": 1}, "just": {"_count": 1}, "planning": {"_count": 1}}, "very": {"_count": 10, "embarrassed": {"_count": 1}, "tight": {"_count": 1}, "slightly": {"_count": 1}, "firmly": {"_count": 1}, "tightly": {"_count": 1}, "quietly": {"_count": 1}, "well": {"_count": 1}, "intently": {"_count": 1}, "but": {"_count": 1}, "much": {"_count": 1}}, "be": {"_count": 2, "carefull": {"_count": 1}, "careful": {"_count": 1}}, "struggled": {"_count": 9, "against": {"_count": 1}, "to": {"_count": 4}, "around": {"_count": 1}, "hard": {"_count": 1}, "fruitlessly": {"_count": 1}, "trying": {"_count": 1}}, "breathed": {"_count": 5, "in": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "deeply": {"_count": 1}, "Luna": {"_count": 1}}, "screwed": {"_count": 4, "up": {"_count": 4}}, "sprang": {"_count": 3, "toward": {"_count": 1}, "after": {"_count": 1}, "to": {"_count": 1}}, "clean": {"_count": 1, "off": {"_count": 1}}, "by": {"_count": 17, "instinct": {"_count": 1}, "the": {"_count": 11}, "Sirius": {"_count": 1}, "about": {"_count": 1}, "inches": {"_count": 2}, "millimeters": {"_count": 1}}, "please": {"_count": 10, "relax": {"_count": 1}, "not": {"_count": 2}, "no": {"_count": 2}, "said": {"_count": 1}, "": {"_count": 3}, "dont": {"_count": 1}}, "blankly": {"_count": 15, "": {"_count": 14}, "and": {"_count": 1}}, "while": {"_count": 11, "you": {"_count": 1}, "Ernies": {"_count": 1}, "I": {"_count": 1}, "Ron": {"_count": 3}, "she": {"_count": 1}, "Professor": {"_count": 1}, "weve": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "pleaded": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "thoughtfully": {"_count": 5, "": {"_count": 5}}, "shocked": {"_count": 3, "to": {"_count": 1}, "": {"_count": 2}}, "bellowed": {"_count": 22, "and": {"_count": 4}, "lunging": {"_count": 1}, "Expelliarmus": {"_count": 1}, "": {"_count": 7}, "at": {"_count": 1}, "again": {"_count": 1}, "directing": {"_count": 1}, "louder": {"_count": 1}, "He": {"_count": 1}, "toward": {"_count": 1}, "back": {"_count": 1}, "fighting": {"_count": 1}, "as": {"_count": 1}}, "strongly": {"_count": 2, "suspected": {"_count": 2}}, "just": {"_count": 17, "one": {"_count": 1}, "caught": {"_count": 1}, "toddle": {"_count": 1}, "had": {"_count": 2}, "because": {"_count": 1}, "grab": {"_count": 1}, "as": {"_count": 4}, "couldnt": {"_count": 1}, "go": {"_count": 1}, "here": {"_count": 1}, "the": {"_count": 1}, "say": {"_count": 1}, "now": {"_count": 1}}, "Ill": {"_count": 3, "need": {"_count": 1}, "give": {"_count": 1}, "meet": {"_count": 1}}, "carrying": {"_count": 2, "an": {"_count": 1}, "it": {"_count": 1}}, "hung": {"_count": 4, "back": {"_count": 2}, "in": {"_count": 1}, "around": {"_count": 1}}, "irritably": {"_count": 11, "": {"_count": 8}, "thinking": {"_count": 1}, "rounding": {"_count": 1}, "jerking": {"_count": 1}}, "closely": {"_count": 7, "out": {"_count": 1}, "": {"_count": 3}, "across": {"_count": 1}, "through": {"_count": 1}, "there": {"_count": 1}}, "lost": {"_count": 11, "his": {"_count": 1}, "the": {"_count": 2}, "track": {"_count": 3}, "no": {"_count": 1}, "patience": {"_count": 1}, "any": {"_count": 1}, "some": {"_count": 1}, "sight": {"_count": 1}}, "tonelessly": {"_count": 2, "": {"_count": 2}}, "dully": {"_count": 6, "": {"_count": 5}, "looking": {"_count": 1}}, "ducked": {"_count": 11, "under": {"_count": 1}, "as": {"_count": 1}, "swiftly": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 2}, "just": {"_count": 1}, "a": {"_count": 1}, "down": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}}, "fought": {"_count": 3, "to": {"_count": 1}, "his": {"_count": 1}, "hard": {"_count": 1}}, "missed": {"_count": 4, "his": {"_count": 1}, "most": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "feel": {"_count": 17, "so": {"_count": 2}, "as": {"_count": 2}, "sick": {"_count": 2}, "he": {"_count": 1}, "any": {"_count": 1}, "queasy": {"_count": 1}, "sure": {"_count": 1}, "uncomfortable": {"_count": 1}, "rather": {"_count": 1}, "a": {"_count": 1}, "even": {"_count": 1}, "idiotic": {"_count": 1}, "ashamed": {"_count": 1}, "uneasy": {"_count": 1}}, "paid": {"_count": 1, "dearly": {"_count": 1}}, "cleaned": {"_count": 1, "the": {"_count": 1}}, "washed": {"_count": 1, "his": {"_count": 1}}, "edging": {"_count": 1, "along": {"_count": 1}}, "politely": {"_count": 1, "pointing": {"_count": 1}}, "curiously": {"_count": 9, "": {"_count": 9}}, "stammered": {"_count": 2, "": {"_count": 1}, "wiping": {"_count": 1}}, "grabbing": {"_count": 5, "the": {"_count": 2}, "him": {"_count": 1}, "up": {"_count": 1}, "a": {"_count": 1}}, "however": {"_count": 23, "was": {"_count": 5}, "pocketed": {"_count": 1}, "didnt": {"_count": 1}, "pointed": {"_count": 1}, "wasnt": {"_count": 1}, "thought": {"_count": 3}, "continued": {"_count": 1}, "stayed": {"_count": 1}, "did": {"_count": 1}, "stood": {"_count": 1}, "who": {"_count": 1}, "remained": {"_count": 1}, "had": {"_count": 1}, "with": {"_count": 1}, "little": {"_count": 1}, "that": {"_count": 1}, "collecting": {"_count": 1}}, "heart": {"_count": 1, "thudding": {"_count": 1}}, "stuffing": {"_count": 2, "Dobby": {"_count": 1}, "the": {"_count": 1}}, "frowning": {"_count": 10, "": {"_count": 5}, "after": {"_count": 1}, "at": {"_count": 2}, "slightly": {"_count": 1}, "it": {"_count": 1}}, "rigid": {"_count": 1, "with": {"_count": 1}}, "back": {"_count": 20, "upstairs": {"_count": 1}, "to": {"_count": 7}, "the": {"_count": 1}, "into": {"_count": 5}, "toward": {"_count": 2}, "up": {"_count": 1}, "was": {"_count": 1}, "out": {"_count": 1}, "onto": {"_count": 1}}, "whose": {"_count": 18, "insides": {"_count": 1}, "mouth": {"_count": 3}, "untidy": {"_count": 1}, "thoughts": {"_count": 2}, "attention": {"_count": 2}, "scar": {"_count": 2}, "hands": {"_count": 1}, "head": {"_count": 1}, "forehead": {"_count": 1}, "voice": {"_count": 1}, "sadness": {"_count": 1}, "brain": {"_count": 1}, "heart": {"_count": 1}}, "grimly": {"_count": 10, "": {"_count": 8}, "and": {"_count": 1}, "taking": {"_count": 1}}, "creeping": {"_count": 1, "to": {"_count": 1}}, "staring": {"_count": 17, "at": {"_count": 14}, "up": {"_count": 1}, "down": {"_count": 1}, "into": {"_count": 1}}, "dashed": {"_count": 7, "around": {"_count": 1}, "to": {"_count": 2}, "over": {"_count": 2}, "inside": {"_count": 1}, "across": {"_count": 1}}, "settled": {"_count": 2, "back": {"_count": 1}, "himself": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "been": {"_count": 2, "stupid": {"_count": 1}, "nothing": {"_count": 1}}, "guessing": {"_count": 1, "the": {"_count": 1}}, "happily": {"_count": 5, "thinking": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "pulling": {"_count": 1}}, "dear": {"_count": 17, "she": {"_count": 3}, "": {"_count": 6}, "if": {"_count": 1}, "youve": {"_count": 1}, "come": {"_count": 1}, "are": {"_count": 1}, "said": {"_count": 1}, "how": {"_count": 1}, "Id": {"_count": 1}, "everyones": {"_count": 1}}, "after": {"_count": 10, "a": {"_count": 5}, "scanning": {"_count": 1}, "attempting": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}, "explaining": {"_count": 1}}, "tipping": {"_count": 1, "eight": {"_count": 1}}, "bread": {"_count": 1, "and": {"_count": 1}}, "Fred": {"_count": 6, "said": {"_count": 1}, "and": {"_count": 3}, "had": {"_count": 1}, "began": {"_count": 1}}, "arrived": {"_count": 5, "this": {"_count": 1}, "in": {"_count": 1}, "early": {"_count": 1}, "downstairs": {"_count": 1}, "back": {"_count": 1}}, "grinning": {"_count": 26, "widely": {"_count": 1}, "": {"_count": 11}, "at": {"_count": 2}, "back": {"_count": 2}, "bleakly": {"_count": 1}, "broadly": {"_count": 2}, "and": {"_count": 1}, "as": {"_count": 4}, "to": {"_count": 1}, "up": {"_count": 1}}, "talked": {"_count": 1, "him": {"_count": 1}}, "Ginny": {"_count": 5, "accidentally": {"_count": 1}, "and": {"_count": 3}, "Lily": {"_count": 1}}, "if": {"_count": 15, "youre": {"_count": 3}, "you": {"_count": 6}, "I": {"_count": 1}, "it": {"_count": 1}, "youll": {"_count": 1}, "we": {"_count": 1}, "were": {"_count": 1}, "that": {"_count": 1}}, "into": {"_count": 18, "trouble": {"_count": 2}, "an": {"_count": 1}, "the": {"_count": 7}, "her": {"_count": 1}, "greater": {"_count": 1}, "a": {"_count": 5}, "speech": {"_count": 1}}, "reassured": {"_count": 1, "her": {"_count": 1}}, "wiped": {"_count": 4, "his": {"_count": 3}, "the": {"_count": 1}}, "backed": {"_count": 8, "away": {"_count": 4}, "into": {"_count": 3}, "out": {"_count": 1}}, "don": {"_count": 2, "want": {"_count": 1}, "worry": {"_count": 1}}, "ducking": {"_count": 1, "as": {"_count": 1}}, "jogged": {"_count": 1, "alongside": {"_count": 1}}, "oh": {"_count": 4, "my": {"_count": 1}, "Harry": {"_count": 2}, "yeah": {"_count": 1}}, "enjoyed": {"_count": 1, "the": {"_count": 1}}, "here": {"_count": 5, "stepped": {"_count": 1}, "eh": {"_count": 1}, "Mr": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "turning": {"_count": 13, "back": {"_count": 2}, "to": {"_count": 4}, "away": {"_count": 3}, "quickly": {"_count": 1}, "the": {"_count": 2}, "did": {"_count": 1}}, "gave": {"_count": 20, "a": {"_count": 10}, "the": {"_count": 1}, "his": {"_count": 2}, "up": {"_count": 2}, "Ron": {"_count": 1}, "her": {"_count": 3}, "Hagrid": {"_count": 1}}, "blinking": {"_count": 1, "at": {"_count": 1}}, "wearily": {"_count": 8, "wed": {"_count": 1}, "": {"_count": 5}, "as": {"_count": 1}, "moving": {"_count": 1}}, "come": {"_count": 18, "and": {"_count": 3}, "in": {"_count": 1}, "on": {"_count": 10}, "here": {"_count": 2}, "back": {"_count": 2}}, "hurried": {"_count": 29, "over": {"_count": 4}, "toward": {"_count": 2}, "along": {"_count": 1}, "up": {"_count": 3}, "into": {"_count": 3}, "back": {"_count": 3}, "to": {"_count": 4}, "off": {"_count": 3}, "inside": {"_count": 1}, "after": {"_count": 1}, "out": {"_count": 1}, "forward": {"_count": 2}, "alongside": {"_count": 1}}, "well": {"_count": 8, "remembered": {"_count": 1}, "beyond": {"_count": 1}, "go": {"_count": 1}, "done": {"_count": 1}, "set": {"_count": 1}, "have": {"_count": 2}, "now": {"_count": 1}}, "also": {"_count": 4, "happened": {"_count": 1}, "looking": {"_count": 1}, "looked": {"_count": 1}, "tried": {"_count": 1}}, "spun": {"_count": 15, "around": {"_count": 7}, "faster": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}, "on": {"_count": 1}, "round": {"_count": 1}, "about": {"_count": 1}}, "gaped": {"_count": 14, "at": {"_count": 12}, "after": {"_count": 1}, "as": {"_count": 1}}, "shrugged": {"_count": 12, "": {"_count": 9}, "he": {"_count": 1}, "and": {"_count": 2}}, "assured": {"_count": 7, "her": {"_count": 6}, "himself": {"_count": 1}}, "nudged": {"_count": 2, "Ron": {"_count": 2}}, "barely": {"_count": 8, "grinned": {"_count": 1}, "had": {"_count": 2}, "slept": {"_count": 1}, "heard": {"_count": 1}, "saw": {"_count": 1}, "understood": {"_count": 1}, "noticed": {"_count": 1}}, "its": {"_count": 17, "a": {"_count": 3}, "our": {"_count": 1}, "not": {"_count": 2}, "getting": {"_count": 1}, "Krum": {"_count": 1}, "lovely": {"_count": 1}, "you": {"_count": 1}, "nothing": {"_count": 1}, "gotta": {"_count": 1}, "round": {"_count": 1}, "all": {"_count": 2}, "okay": {"_count": 1}, "an": {"_count": 1}}, "hastily": {"_count": 16, "changing": {"_count": 1}, "explained": {"_count": 1}, "": {"_count": 3}, "stuffed": {"_count": 1}, "pressed": {"_count": 1}, "untied": {"_count": 1}, "checked": {"_count": 1}, "staring": {"_count": 1}, "dropped": {"_count": 1}, "hurrying": {"_count": 1}, "to": {"_count": 1}, "stuck": {"_count": 1}, "snatching": {"_count": 1}, "he": {"_count": 1}}, "maybe": {"_count": 3, "your": {"_count": 1}, "curse": {"_count": 1}, "": {"_count": 1}}, "go": {"_count": 5, "at": {"_count": 1}, "": {"_count": 3}, "on": {"_count": 1}}, "yanked": {"_count": 2, "his": {"_count": 1}, "out": {"_count": 1}}, "sounded": {"_count": 1, "when": {"_count": 1}}, "groggily": {"_count": 1, "": {"_count": 1}}, "squinted": {"_count": 14, "at": {"_count": 8}, "around": {"_count": 2}, "pressing": {"_count": 1}, "": {"_count": 1}, "through": {"_count": 1}, "into": {"_count": 1}}, "scribbled": {"_count": 4, "a": {"_count": 1}, "everything": {"_count": 1}, "the": {"_count": 1}, "down": {"_count": 1}}, "heavily": {"_count": 9, "resigned": {"_count": 1}, "": {"_count": 4}, "as": {"_count": 2}, "looking": {"_count": 1}, "slumping": {"_count": 1}}, "shifted": {"_count": 2, "guiltily": {"_count": 1}, "uncomfortably": {"_count": 1}}, "looking": {"_count": 42, "jealously": {"_count": 1}, "terrified": {"_count": 1}, "over": {"_count": 3}, "calmly": {"_count": 1}, "down": {"_count": 4}, "quickly": {"_count": 1}, "around": {"_count": 10}, "from": {"_count": 2}, "at": {"_count": 7}, "awed": {"_count": 1}, "up": {"_count": 6}, "sick": {"_count": 1}, "directly": {"_count": 1}, "everywhere": {"_count": 1}, "rather": {"_count": 1}, "back": {"_count": 1}}, "wrenched": {"_count": 4, "his": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 2}}, "genially": {"_count": 1, "on": {"_count": 1}}, "desperately": {"_count": 14, "": {"_count": 7}, "turning": {"_count": 1}, "who": {"_count": 1}, "hauling": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 2}}, "hollowly": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 14, "Celebrity": {"_count": 1}, "we": {"_count": 1}, "Hermione": {"_count": 2}, "Id": {"_count": 1}, "wave": {"_count": 1}, "indeed": {"_count": 1}, "Professor": {"_count": 1}, "I": {"_count": 1}, "Neville": {"_count": 1}, "Zabini": {"_count": 1}, "Katie": {"_count": 1}, "were": {"_count": 1}, "Luna": {"_count": 1}}, "lying": {"_count": 2, "back": {"_count": 2}}, "squelched": {"_count": 1, "along": {"_count": 1}}, "backing": {"_count": 1, "away": {"_count": 1}}, "Filch": {"_count": 1, "ran": {"_count": 1}}, "flicked": {"_count": 3, "the": {"_count": 1}, "through": {"_count": 1}, "his": {"_count": 1}}, "thumbed": {"_count": 1, "through": {"_count": 1}}, "braced": {"_count": 2, "himself": {"_count": 2}}, "gratefully": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "bossily": {"_count": 1, "": {"_count": 1}}, "cautiously": {"_count": 3, "": {"_count": 3}}, "agreed": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "without": {"_count": 1}}, "whatre": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "urgently": {"_count": 8, "and": {"_count": 1}, "": {"_count": 6}, "his": {"_count": 1}}, "sprinted": {"_count": 8, "up": {"_count": 2}, "away": {"_count": 1}, "into": {"_count": 1}, "off": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 1}, "by": {"_count": 1}}, "hurtled": {"_count": 4, "around": {"_count": 2}, "toward": {"_count": 1}, "into": {"_count": 1}}, "almost": {"_count": 6, "slipped": {"_count": 1}, "said": {"_count": 1}, "defiantly": {"_count": 1}, "angrily": {"_count": 1}, "before": {"_count": 1}, "walked": {"_count": 1}}, "ask": {"_count": 1, "You": {"_count": 1}}, "automatically": {"_count": 6, "": {"_count": 4}, "dropping": {"_count": 1}, "though": {"_count": 1}}, "dropping": {"_count": 3, "his": {"_count": 3}}, "have": {"_count": 4, "you": {"_count": 2}, "to": {"_count": 1}, "been": {"_count": 1}}, "suspiciously": {"_count": 4, "": {"_count": 2}, "so": {"_count": 1}, "still": {"_count": 1}}, "forcefully": {"_count": 6, "of": {"_count": 1}, "": {"_count": 4}, "blinking": {"_count": 1}}, "closing": {"_count": 3, "his": {"_count": 3}}, "together": {"_count": 2, "": {"_count": 2}}, "exactly": {"_count": 1, "and": {"_count": 1}}, "higher": {"_count": 1, "than": {"_count": 1}}, "returned": {"_count": 11, "to": {"_count": 5}, "feeling": {"_count": 1}, "the": {"_count": 1}, "slowly": {"_count": 1}, "Hedwig": {"_count": 1}, "hungrily": {"_count": 1}, "with": {"_count": 1}}, "sincerely": {"_count": 2, "hoped": {"_count": 1}, "": {"_count": 1}}, "Itll": {"_count": 1, "be": {"_count": 1}}, "good": {"_count": 2, "luck": {"_count": 1}, "morning": {"_count": 1}}, "flew": {"_count": 3, "higher": {"_count": 1}, "across": {"_count": 1}, "through": {"_count": 1}}, "again": {"_count": 21, "": {"_count": 10}, "but": {"_count": 2}, "wanting": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}, "hissing": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 1}, "looking": {"_count": 1}, "pointing": {"_count": 1}, "I": {"_count": 1}}, "Oliver": {"_count": 1, "said": {"_count": 1}}, "alone": {"_count": 11, "": {"_count": 3}, "in": {"_count": 2}, "at": {"_count": 1}, "cannot": {"_count": 1}, "that": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "beside": {"_count": 1}}, "deal": {"_count": 1, "with": {"_count": 1}}, "leave": {"_count": 2, "him": {"_count": 1}, "through": {"_count": 1}}, "kicked": {"_count": 9, "hard": {"_count": 1}, "him": {"_count": 1}, "off": {"_count": 3}, "the": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "out": {"_count": 1}}, "swerved": {"_count": 4, "out": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 1}, "again": {"_count": 1}}, "weakly": {"_count": 5, "but": {"_count": 1}, "": {"_count": 2}, "passing": {"_count": 1}, "while": {"_count": 1}}, "getting": {"_count": 6, "into": {"_count": 1}, "up": {"_count": 1}, "more": {"_count": 1}, "to": {"_count": 2}, "wearily": {"_count": 1}}, "gulp": {"_count": 1, "down": {"_count": 1}}, "sinking": {"_count": 2, "back": {"_count": 1}, "into": {"_count": 1}}, "heaved": {"_count": 6, "himself": {"_count": 1}, "on": {"_count": 1}, "Nevilles": {"_count": 1}, "again": {"_count": 1}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}}, "ten": {"_count": 1, "long": {"_count": 1}}, "slumped": {"_count": 5, "back": {"_count": 3}, "into": {"_count": 1}, "down": {"_count": 1}}, "anger": {"_count": 1, "rising": {"_count": 1}}, "fiercely": {"_count": 9, "": {"_count": 6}, "stuffing": {"_count": 1}, "seizing": {"_count": 1}, "I": {"_count": 1}}, "three": {"_count": 1, "beds": {"_count": 1}}, "dressed": {"_count": 3, "as": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "squeezing": {"_count": 2, "into": {"_count": 1}, "through": {"_count": 1}}, "straightened": {"_count": 6, "up": {"_count": 5}, "his": {"_count": 1}}, "arranged": {"_count": 1, "his": {"_count": 1}}, "pointed": {"_count": 17, "his": {"_count": 7}, "out": {"_count": 5}, "": {"_count": 2}, "this": {"_count": 1}, "it": {"_count": 1}, "Dracos": {"_count": 1}}, "merrily": {"_count": 1, "on": {"_count": 1}}, "standing": {"_count": 9, "motionless": {"_count": 1}, "there": {"_count": 3}, "between": {"_count": 1}, "up": {"_count": 1}, "alone": {"_count": 1}, "right": {"_count": 1}, "still": {"_count": 1}}, "starting": {"_count": 7, "to": {"_count": 7}}, "fretted": {"_count": 1, "about": {"_count": 1}}, "edged": {"_count": 8, "nearer": {"_count": 1}, "forward": {"_count": 3}, "his": {"_count": 1}, "slowly": {"_count": 1}, "between": {"_count": 1}, "right": {"_count": 1}}, "blundered": {"_count": 2, "up": {"_count": 1}, "after": {"_count": 1}}, "stamped": {"_count": 1, "up": {"_count": 1}}, "hesitated": {"_count": 27, "": {"_count": 10}, "his": {"_count": 1}, "then": {"_count": 3}, "thinking": {"_count": 1}, "glanced": {"_count": 1}, "for": {"_count": 5}, "but": {"_count": 3}, "to": {"_count": 1}, "before": {"_count": 1}, "looking": {"_count": 1}}, "never": {"_count": 7, "Hagridl": {"_count": 1}, "enjoyed": {"_count": 1}, "found": {"_count": 2}, "knew": {"_count": 1}, "wanted": {"_count": 1}, "forget": {"_count": 1}}, "attacked": {"_count": 1, "those": {"_count": 1}}, "whether": {"_count": 2, "there": {"_count": 1}, "he": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 1}, "onto": {"_count": 1}}, "drank": {"_count": 4, "the": {"_count": 1}, "deeply": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "unlocked": {"_count": 1, "his": {"_count": 1}}, "scratched": {"_count": 1, "his": {"_count": 1}}, "loosening": {"_count": 1, "the": {"_count": 1}}, "bleakly": {"_count": 1, "": {"_count": 1}}, "thinking": {"_count": 12, "fast": {"_count": 2}, "of": {"_count": 4}, "hard": {"_count": 2}, "that": {"_count": 2}, "privately": {"_count": 1}, "about": {"_count": 1}}, "shot": {"_count": 2, "him": {"_count": 1}, "at": {"_count": 1}}, "puzzled": {"_count": 1, "": {"_count": 1}}, "checked": {"_count": 4, "his": {"_count": 3}, "with": {"_count": 1}}, "waded": {"_count": 1, "across": {"_count": 1}}, "reasonably": {"_count": 2, "": {"_count": 2}}, "peeled": {"_count": 1, "the": {"_count": 1}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "overheard": {"_count": 4, "him": {"_count": 2}, "Malfoy": {"_count": 1}, "one": {"_count": 1}}, "snarled": {"_count": 9, "tugging": {"_count": 1}, "under": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 1}, "as": {"_count": 1}}, "glancing": {"_count": 10, "over": {"_count": 2}, "around": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 3}, "across": {"_count": 1}, "toward": {"_count": 1}, "down": {"_count": 1}}, "loaded": {"_count": 1, "up": {"_count": 1}}, "scrawled": {"_count": 1, "blotting": {"_count": 1}}, "wrote": {"_count": 5, "quickly": {"_count": 1}, "to": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "paused": {"_count": 6, "for": {"_count": 1}, "trying": {"_count": 1}, "biting": {"_count": 1}, "pondering": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}, "drew": {"_count": 9, "nearer": {"_count": 1}, "level": {"_count": 1}, "back": {"_count": 2}, "closer": {"_count": 2}, "his": {"_count": 1}, "heaving": {"_count": 1}, "the": {"_count": 1}}, "raised": {"_count": 35, "his": {"_count": 28}, "the": {"_count": 3}, "a": {"_count": 1}, "himself": {"_count": 2}, "an": {"_count": 1}}, "without": {"_count": 12, "glancing": {"_count": 2}, "thinking": {"_count": 5}, "the": {"_count": 1}, "moving": {"_count": 1}, "flinching": {"_count": 1}, "anyone": {"_count": 1}, "looking": {"_count": 1}}, "gliding": {"_count": 1, "noiselessly": {"_count": 1}}, "tiptoeing": {"_count": 1, "behind": {"_count": 1}}, "half": {"_count": 6, "wished": {"_count": 2}, "his": {"_count": 1}, "expected": {"_count": 2}, "amused": {"_count": 1}}, "quite": {"_count": 4, "politely": {"_count": 1}, "alone": {"_count": 1}, "plainly": {"_count": 1}, "sure": {"_count": 1}}, "fearfully": {"_count": 2, "Neville": {"_count": 1}, "as": {"_count": 1}}, "jerked": {"_count": 3, "his": {"_count": 2}, "back": {"_count": 1}}, "buck": {"_count": 1, "up": {"_count": 1}}, "distractedly": {"_count": 4, "still": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 1}}, "raced": {"_count": 2, "up": {"_count": 1}, "after": {"_count": 1}}, "over": {"_count": 18, "to": {"_count": 2}, "as": {"_count": 1}, "the": {"_count": 10}, "then": {"_count": 1}, "here": {"_count": 1}, "Ginny": {"_count": 1}, "Aunt": {"_count": 1}, "his": {"_count": 1}}, "making": {"_count": 9, "up": {"_count": 3}, "no": {"_count": 1}, "Ron": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "valiant": {"_count": 1}, "another": {"_count": 1}}, "elbowed": {"_count": 2, "Ron": {"_count": 1}, "him": {"_count": 1}}, "no": {"_count": 12, "better": {"_count": 1}, "": {"_count": 5}, "thank": {"_count": 1}, "okay": {"_count": 1}, "additional": {"_count": 1}, "Im": {"_count": 1}, "longer": {"_count": 1}, "face": {"_count": 1}}, "constantly": {"_count": 2, "repeated": {"_count": 1}, "": {"_count": 1}}, "hit": {"_count": 5, "Ron": {"_count": 2}, "Krum": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "patting": {"_count": 1, "his": {"_count": 1}}, "tapped": {"_count": 3, "Ron": {"_count": 1}, "the": {"_count": 2}}, "breathing": {"_count": 2, "very": {"_count": 1}, "fast": {"_count": 1}}, "summoned": {"_count": 1, "what": {"_count": 1}}, "twitched": {"_count": 2, "the": {"_count": 2}}, "ignoring": {"_count": 8, "Nevilles": {"_count": 1}, "Ron": {"_count": 1}, "as": {"_count": 1}, "Hermiones": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}, "Hermione": {"_count": 1}}, "Im": {"_count": 29, "starving": {"_count": 1}, "going": {"_count": 2}, "sure": {"_count": 5}, "letting": {"_count": 1}, "flying": {"_count": 1}, "serious": {"_count": 2}, "really": {"_count": 1}, "so": {"_count": 2}, "not": {"_count": 3}, "sorry": {"_count": 6}, "talking": {"_count": 1}, "begging": {"_count": 1}, "Romilda": {"_count": 1}, "supposed": {"_count": 1}, "cornin": {"_count": 1}}, "smoothed": {"_count": 2, "it": {"_count": 1}, "out": {"_count": 1}}, "jumping": {"_count": 6, "up": {"_count": 3}, "to": {"_count": 2}, "down": {"_count": 1}}, "wheeled": {"_count": 8, "around": {"_count": 6}, "the": {"_count": 1}, "in": {"_count": 1}}, "disbelievingly": {"_count": 1, "": {"_count": 1}}, "incredulously": {"_count": 6, "": {"_count": 6}}, "reached": {"_count": 26, "his": {"_count": 1}, "out": {"_count": 5}, "for": {"_count": 3}, "the": {"_count": 12}, "a": {"_count": 1}, "Filch": {"_count": 1}, "forward": {"_count": 1}, "up": {"_count": 1}, "instinctively": {"_count": 1}}, "forcing": {"_count": 2, "Lockhart": {"_count": 1}, "him": {"_count": 1}}, "both": {"_count": 5, "pointed": {"_count": 1}, "he": {"_count": 1}, "arms": {"_count": 1}, "spun": {"_count": 1}, "turned": {"_count": 1}}, "jabbed": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "lowered": {"_count": 8, "his": {"_count": 4}, "Ginny": {"_count": 1}, "the": {"_count": 3}}, "led": {"_count": 8, "the": {"_count": 4}, "Hermione": {"_count": 1}, "them": {"_count": 2}, "her": {"_count": 1}}, "theres": {"_count": 3, "something": {"_count": 2}, "no": {"_count": 1}}, "flung": {"_count": 7, "his": {"_count": 1}, "himself": {"_count": 3}, "at": {"_count": 1}, "the": {"_count": 1}, "open": {"_count": 1}}, "See": {"_count": 1, "you": {"_count": 1}}, "approached": {"_count": 12, "his": {"_count": 1}, "": {"_count": 2}, "it": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "didnt": {"_count": 1}, "him": {"_count": 2}, "eyes": {"_count": 1}}, "shaking": {"_count": 16, "from": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 9}, "hands": {"_count": 2}, "so": {"_count": 1}, "Dumbledore": {"_count": 1}}, "sweating": {"_count": 1, "managed": {"_count": 1}}, "stretching": {"_count": 1, "out": {"_count": 1}}, "twirling": {"_count": 1, "the": {"_count": 1}}, "losing": {"_count": 2, "patience": {"_count": 1}, "track": {"_count": 1}}, "Ive": {"_count": 7, "always": {"_count": 1}, "got": {"_count": 1}, "just": {"_count": 1}, "been": {"_count": 2}, "left": {"_count": 1}, "already": {"_count": 1}}, "triumphantly": {"_count": 1, "": {"_count": 1}}, "spat": {"_count": 7, "fists": {"_count": 1}, "trying": {"_count": 1}, "throwing": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "blood": {"_count": 1}}, "slowly": {"_count": 28, "": {"_count": 18}, "but": {"_count": 1}, "pulled": {"_count": 1}, "because": {"_count": 1}, "halfway": {"_count": 1}, "still": {"_count": 1}, "and": {"_count": 1}, "if": {"_count": 1}, "scanning": {"_count": 1}, "do": {"_count": 1}, "Im": {"_count": 1}}, "retorted": {"_count": 3, "": {"_count": 3}}, "abruptly": {"_count": 2, "": {"_count": 2}}, "fear": {"_count": 1, "spreading": {"_count": 1}}, "understood": {"_count": 18, "what": {"_count": 1}, "why": {"_count": 4}, "": {"_count": 2}, "Dudley": {"_count": 1}, "completely": {"_count": 1}, "now": {"_count": 1}, "to": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}, "without": {"_count": 1}}, "tripped": {"_count": 2, "": {"_count": 1}, "over": {"_count": 1}}, "trembled": {"_count": 1, "ready": {"_count": 1}}, "seized": {"_count": 28, "it": {"_count": 2}, "the": {"_count": 5}, "his": {"_count": 5}, "one": {"_count": 2}, "Dobby": {"_count": 1}, "Hedwig": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 1}, "her": {"_count": 2}, "Neville": {"_count": 1}, "Lunas": {"_count": 1}, "him": {"_count": 1}, "Dobbys": {"_count": 1}, "Griphooks": {"_count": 1}, "Rons": {"_count": 1}, "its": {"_count": 1}, "a": {"_count": 1}}, "thickly": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "peering": {"_count": 1}}, "blinked": {"_count": 9, "": {"_count": 6}, "and": {"_count": 3}}, "bent": {"_count": 23, "down": {"_count": 7}, "over": {"_count": 6}, "his": {"_count": 3}, "forward": {"_count": 2}, "closer": {"_count": 1}, "swiftly": {"_count": 1}, "low": {"_count": 2}, "back": {"_count": 1}}, "isnt": {"_count": 5, "an": {"_count": 1}, "going": {"_count": 1}, "supposed": {"_count": 1}, "it": {"_count": 1}, "exclusive": {"_count": 1}}, "tucked": {"_count": 2, "the": {"_count": 2}}, "came": {"_count": 9, "tumbling": {"_count": 1}, "to": {"_count": 4}, "very": {"_count": 1}, "back": {"_count": 2}, "skidding": {"_count": 1}}, "distinctly": {"_count": 8, "saw": {"_count": 4}, "heard": {"_count": 3}, "remembered": {"_count": 1}}, "moonlight": {"_count": 1, "from": {"_count": 1}}, "detention": {"_count": 2, "for": {"_count": 1}, "neither": {"_count": 1}}, "suspected": {"_count": 6, "that": {"_count": 2}, "his": {"_count": 1}, "on": {"_count": 1}, "though": {"_count": 1}, "had": {"_count": 1}}, "finished": {"_count": 12, "writing": {"_count": 1}, "her": {"_count": 1}, "reading": {"_count": 3}, "the": {"_count": 4}, "his": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}}, "though": {"_count": 9, "still": {"_count": 1}, "nervous": {"_count": 1}, "Moody": {"_count": 1}, "when": {"_count": 1}, "panic": {"_count": 1}, "shielded": {"_count": 1}, "he": {"_count": 2}, "both": {"_count": 1}}, "relieved": {"_count": 2, "this": {"_count": 1}, "": {"_count": 1}}, "scanned": {"_count": 4, "the": {"_count": 4}}, "Happy": {"_count": 2, "birthday": {"_count": 2}}, "happened": {"_count": 2, "to": {"_count": 2}}, "froze": {"_count": 4, "": {"_count": 1}, "foot": {"_count": 1}, "with": {"_count": 1}, "his": {"_count": 1}}, "poked": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "clamped": {"_count": 1, "the": {"_count": 1}}, "slit": {"_count": 2, "open": {"_count": 2}}, "enter": {"_count": 1, "the": {"_count": 1}}, "bitterly": {"_count": 20, "if": {"_count": 1}, "": {"_count": 15}, "as": {"_count": 1}, "getting": {"_count": 1}, "but": {"_count": 1}, "looking": {"_count": 1}}, "choosing": {"_count": 1, "his": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "might": {"_count": 9, "forget": {"_count": 1}, "he": {"_count": 1}, "have": {"_count": 5}, "be": {"_count": 1}, "indeed": {"_count": 1}}, "such": {"_count": 2, "an": {"_count": 1}, "as": {"_count": 1}}, "snatched": {"_count": 7, "up": {"_count": 4}, "the": {"_count": 1}, "at": {"_count": 1}, "it": {"_count": 1}}, "annoyed": {"_count": 1, "": {"_count": 1}}, "saying": {"_count": 1, "the": {"_count": 1}}, "rummaged": {"_count": 1, "once": {"_count": 1}}, "held": {"_count": 11, "the": {"_count": 1}, "up": {"_count": 3}, "onto": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 2}, "out": {"_count": 2}, "his": {"_count": 1}}, "handing": {"_count": 6, "the": {"_count": 2}, "him": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}, "over": {"_count": 1}}, "prompted": {"_count": 2, "apologetically": {"_count": 1}, "Ron": {"_count": 1}}, "up": {"_count": 7, "but": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 2}, "the": {"_count": 1}, "by": {"_count": 1}}, "along": {"_count": 4, "the": {"_count": 3}, "should": {"_count": 1}}, "already": {"_count": 3, "knew": {"_count": 2}, "bound": {"_count": 1}}, "unstuck": {"_count": 1, "his": {"_count": 1}}, "several": {"_count": 3, "days": {"_count": 1}, "years": {"_count": 1}, "curly": {"_count": 1}}, "ate": {"_count": 1, "breakfast": {"_count": 1}}, "free": {"_count": 2, "sundaes": {"_count": 1}, "to": {"_count": 1}}, "continued": {"_count": 14, "to": {"_count": 10}, "": {"_count": 1}, "heavily": {"_count": 1}, "up": {"_count": 1}, "calmly": {"_count": 1}}, "tearing": {"_count": 2, "his": {"_count": 2}}, "emerged": {"_count": 4, "from": {"_count": 3}, "into": {"_count": 1}}, "met": {"_count": 3, "Seamus": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "hoped": {"_count": 3, "she": {"_count": 1}, "that": {"_count": 1}, "with": {"_count": 1}}, "seemed": {"_count": 9, "even": {"_count": 1}, "to": {"_count": 8}}, "mustnt": {"_count": 2, "do": {"_count": 1}, "there": {"_count": 1}}, "will": {"_count": 5, "be": {"_count": 1}, "bring": {"_count": 1}, "just": {"_count": 1}, "have": {"_count": 1}, "you": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "dead": {"_count": 2, "": {"_count": 2}}, "stopped": {"_count": 12, "YouKnowWho": {"_count": 1}, "dead": {"_count": 2}, "right": {"_count": 1}, "worrying": {"_count": 1}, "to": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 2}, "at": {"_count": 1}, "walking": {"_count": 1}, "under": {"_count": 1}}, "promise": {"_count": 1, "to": {"_count": 1}}, "until": {"_count": 2, "he": {"_count": 1}, "VVoldemort": {"_count": 1}}, "most": {"_count": 1, "was": {"_count": 1}}, "across": {"_count": 6, "the": {"_count": 5}, "Mr": {"_count": 1}}, "imitated": {"_count": 3, "him": {"_count": 1}, "Mr": {"_count": 1}, "her": {"_count": 1}}, "swear": {"_count": 1, "to": {"_count": 1}}, "nettled": {"_count": 2, "": {"_count": 2}}, "wiping": {"_count": 1, "more": {"_count": 1}}, "crossly": {"_count": 4, "": {"_count": 3}, "which": {"_count": 1}}, "respected": {"_count": 1, "him": {"_count": 1}}, "puffed": {"_count": 1, "out": {"_count": 1}}, "among": {"_count": 2, "them": {"_count": 2}}, "moving": {"_count": 6, "closer": {"_count": 2}, "swiftly": {"_count": 1}, "in": {"_count": 1}, "slightly": {"_count": 1}, "his": {"_count": 1}}, "chose": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 15, "was": {"_count": 5}, "hit": {"_count": 1}, "is": {"_count": 3}, "said": {"_count": 1}, "looked": {"_count": 1}, "sounded": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 1}, "might": {"_count": 1}}, "remember": {"_count": 2, "your": {"_count": 1}, "": {"_count": 1}}, "easy": {"_count": 1, "does": {"_count": 1}}, "skinned": {"_count": 1, "the": {"_count": 1}}, "accidentally": {"_count": 3, "beheading": {"_count": 1}, "spat": {"_count": 1}, "spilling": {"_count": 1}}, "offhandedly": {"_count": 1, "": {"_count": 1}}, "glared": {"_count": 7, "at": {"_count": 6}, "back": {"_count": 1}}, "Lupin": {"_count": 6, "said": {"_count": 2}, "called": {"_count": 1}, "muttered": {"_count": 1}, "continued": {"_count": 1}, "whispered": {"_count": 1}}, "collapse": {"_count": 1, "on": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "yawned": {"_count": 3, "": {"_count": 2}, "Tonks": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "awoke": {"_count": 11, "with": {"_count": 1}, "next": {"_count": 2}, "very": {"_count": 2}, "at": {"_count": 1}, "he": {"_count": 1}, "on": {"_count": 1}, "abruptly": {"_count": 1}, "instantly": {"_count": 1}, "as": {"_count": 1}}, "listlessly": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "truthfully": {"_count": 4, "": {"_count": 3}, "standing": {"_count": 1}}, "doubled": {"_count": 3, "back": {"_count": 2}, "up": {"_count": 1}}, "my": {"_count": 3, "grindylow": {"_count": 1}, "daughter": {"_count": 1}, "hands": {"_count": 1}}, "Id": {"_count": 5, "better": {"_count": 2}, "be": {"_count": 2}, "like": {"_count": 1}}, "putting": {"_count": 5, "down": {"_count": 2}, "one": {"_count": 1}, "any": {"_count": 1}, "his": {"_count": 1}}, "picking": {"_count": 6, "up": {"_count": 6}}, "outraged": {"_count": 4, "": {"_count": 4}}, "skidded": {"_count": 3, "to": {"_count": 3}}, "fumbled": {"_count": 1, "for": {"_count": 1}}, "whiled": {"_count": 1, "away": {"_count": 1}}, "rose": {"_count": 4, "fast": {"_count": 1}, "a": {"_count": 1}, "early": {"_count": 1}, "up": {"_count": 1}}, "Stand": {"_count": 1, "aside": {"_count": 1}}, "Please": {"_count": 3, "": {"_count": 1}, "Ill": {"_count": 1}, "Ron": {"_count": 1}}, "youve": {"_count": 10, "never": {"_count": 1}, "sorted": {"_count": 1}, "got": {"_count": 5}, "had": {"_count": 1}, "just": {"_count": 1}, "grown": {"_count": 1}}, "dozed": {"_count": 1, "fitfully": {"_count": 1}}, "falling": {"_count": 1, "off": {"_count": 1}}, "bid": {"_count": 2, "goodbye": {"_count": 1}, "him": {"_count": 1}}, "suspecting": {"_count": 1, "one": {"_count": 1}}, "young": {"_count": 1, "carefree": {"_count": 1}}, "snorted": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "into": {"_count": 1}}, "reasoned": {"_count": 1, "he": {"_count": 1}}, "traced": {"_count": 1, "the": {"_count": 1}}, "crept": {"_count": 6, "slowly": {"_count": 1}, "silently": {"_count": 1}, "past": {"_count": 2}, "out": {"_count": 1}, "closer": {"_count": 1}}, "squeezed": {"_count": 2, "himself": {"_count": 2}}, "sneaked": {"_count": 4, "up": {"_count": 2}, "along": {"_count": 1}, "a": {"_count": 1}}, "wont": {"_count": 2, "want": {"_count": 1}, "you": {"_count": 1}}, "squealed": {"_count": 1, "Hermione": {"_count": 1}}, "deserves": {"_count": 1, "a": {"_count": 1}}, "Seen": {"_count": 1, "the": {"_count": 1}}, "clutched": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 2}, "at": {"_count": 1}}, "has": {"_count": 11, "no": {"_count": 2}, "the": {"_count": 1}, "been": {"_count": 4}, "at": {"_count": 1}, "told": {"_count": 2}, "powerful": {"_count": 1}}, "ter": {"_count": 1, "me": {"_count": 1}}, "listen": {"_count": 1, "said": {"_count": 1}}, "youd": {"_count": 3, "be": {"_count": 1}, "better": {"_count": 2}}, "firmly": {"_count": 20, "": {"_count": 13}, "to": {"_count": 1}, "fully": {"_count": 1}, "getting": {"_count": 1}, "passing": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "you": {"_count": 1}}, "thumping": {"_count": 1, "the": {"_count": 1}}, "frowned": {"_count": 6, "at": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 1}, "trying": {"_count": 1}}, "Who": {"_count": 1, "sent": {"_count": 1}}, "can": {"_count": 6, "I": {"_count": 1}, "hear": {"_count": 1}, "you": {"_count": 1}, "tell": {"_count": 1}, "have": {"_count": 1}, "do": {"_count": 1}}, "cast": {"_count": 8, "his": {"_count": 3}, "a": {"_count": 4}, "more": {"_count": 1}}, "excitedly": {"_count": 5, "": {"_count": 3}, "unrolling": {"_count": 1}, "now": {"_count": 1}}, "drawing": {"_count": 1, "a": {"_count": 1}}, "Not": {"_count": 1, "Harry": {"_count": 1}}, "Expecto": {"_count": 1, "patronum": {"_count": 1}}, "hard": {"_count": 8, "on": {"_count": 3}, "in": {"_count": 4}, "over": {"_count": 1}}, "perhaps": {"_count": 2, "we": {"_count": 1}, "that": {"_count": 1}}, "dispiritedly": {"_count": 1, "": {"_count": 1}}, "voiced": {"_count": 1, "something": {"_count": 1}}, "defiantly": {"_count": 2, "": {"_count": 2}}, "carried": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 10, "": {"_count": 5}, "he": {"_count": 1}, "as": {"_count": 1}, "had": {"_count": 1}, "looked": {"_count": 1}, "even": {"_count": 1}}, "persuaded": {"_count": 1, "him": {"_count": 1}}, "strode": {"_count": 5, "over": {"_count": 2}, "off": {"_count": 2}, "across": {"_count": 1}}, "shouldered": {"_count": 1, "the": {"_count": 1}}, "make": {"_count": 2, "sure": {"_count": 2}}, "casually": {"_count": 2, "": {"_count": 2}}, "dived": {"_count": 8, "Cho": {"_count": 1}, "": {"_count": 3}, "behind": {"_count": 1}, "for": {"_count": 1}, "after": {"_count": 1}, "and": {"_count": 1}}, "veered": {"_count": 1, "off": {"_count": 1}}, "accelerated": {"_count": 2, "eyes": {"_count": 1}, "the": {"_count": 1}}, "expelled": {"_count": 1, "": {"_count": 1}}, "packed": {"_count": 2, "his": {"_count": 2}}, "completely": {"_count": 6, "hidden": {"_count": 1}, "distracted": {"_count": 1}, "": {"_count": 1}, "nonplussed": {"_count": 1}, "by": {"_count": 1}, "thrown": {"_count": 1}}, "tugged": {"_count": 3, "the": {"_count": 2}, "harder": {"_count": 1}}, "striving": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 22, "he": {"_count": 7}, "now": {"_count": 1}, "we": {"_count": 3}, "and": {"_count": 1}, "answering": {"_count": 1}, "being": {"_count": 1}, "continuing": {"_count": 1}, "": {"_count": 1}, "either": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 1}, "something": {"_count": 1}, "Hermione": {"_count": 2}}, "bit": {"_count": 4, "his": {"_count": 1}, "back": {"_count": 3}}, "praying": {"_count": 1, "hed": {"_count": 1}}, "clenched": {"_count": 3, "his": {"_count": 3}}, "closed": {"_count": 12, "his": {"_count": 9}, "the": {"_count": 3}}, "do": {"_count": 6, "you": {"_count": 5}, "I": {"_count": 1}}, "impressed": {"_count": 3, "": {"_count": 3}}, "prodded": {"_count": 1, "her": {"_count": 1}}, "doubted": {"_count": 7, "whether": {"_count": 2}, "even": {"_count": 1}, "very": {"_count": 2}, "he": {"_count": 1}, "that": {"_count": 1}}, "slept": {"_count": 2, "badly": {"_count": 2}}, "zoomed": {"_count": 3, "away": {"_count": 1}, "off": {"_count": 1}, "around": {"_count": 1}}, "blocking": {"_count": 3, "him": {"_count": 1}, "out": {"_count": 1}, "his": {"_count": 1}}, "flattened": {"_count": 2, "himself": {"_count": 2}}, "soared": {"_count": 3, "above": {"_count": 1}, "higher": {"_count": 1}, "around": {"_count": 1}}, "yeh": {"_count": 1, "beat": {"_count": 1}}, "ripping": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 9, "overdid": {"_count": 1}, "surprised": {"_count": 1}, "less": {"_count": 1}, "alarmed": {"_count": 1}, "defensively": {"_count": 1}, "nervously": {"_count": 1}, "desperately": {"_count": 1}, "nonplussed": {"_count": 1}, "disappointed": {"_count": 1}}, "gathered": {"_count": 4, "that": {"_count": 3}, "up": {"_count": 1}}, "cough": {"_count": 1, "as": {"_count": 1}}, "yehll": {"_count": 1, "be": {"_count": 1}}, "lunged": {"_count": 1, "forward": {"_count": 1}}, "setting": {"_count": 2, "off": {"_count": 1}, "his": {"_count": 1}}, "youll": {"_count": 6, "have": {"_count": 2}, "be": {"_count": 2}, "know": {"_count": 2}}, "roared": {"_count": 9, "and": {"_count": 3}, "": {"_count": 3}, "but": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}}, "doing": {"_count": 2, "something": {"_count": 1}, "his": {"_count": 1}}, "walking": {"_count": 3, "slowly": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 1}}, "Crookshanks": {"_count": 1, "leapt": {"_count": 1}}, "interrupted": {"_count": 7, "loudly": {"_count": 1}, "": {"_count": 2}, "her": {"_count": 1}, "with": {"_count": 1}, "you": {"_count": 1}, "again": {"_count": 1}}, "How": {"_count": 2, "dyou": {"_count": 1}, "": {"_count": 1}}, "James": {"_count": 6, "Potter": {"_count": 5}, "wouldnt": {"_count": 1}}, "astounded": {"_count": 1, "": {"_count": 1}}, "Two": {"_count": 1, "more": {"_count": 1}}, "avoided": {"_count": 3, "Blacks": {"_count": 1}, "his": {"_count": 1}, "Rons": {"_count": 1}}, "And": {"_count": 1, "now": {"_count": 1}}, "whod": {"_count": 1, "dare": {"_count": 1}}, "believed": {"_count": 1, "him": {"_count": 1}}, "running": {"_count": 2, "flat": {"_count": 1}, "back": {"_count": 1}}, "whats": {"_count": 8, "this": {"_count": 2}, "up": {"_count": 1}, "that": {"_count": 2}, "going": {"_count": 1}, "happened": {"_count": 1}, "happening": {"_count": 1}}, "determinedly": {"_count": 1, "": {"_count": 1}}, "darted": {"_count": 4, "out": {"_count": 1}, "forward": {"_count": 2}, "into": {"_count": 1}}, "hurry": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 2, "dads": {"_count": 1}, "eyesight": {"_count": 1}}, "look": {"_count": 10, "at": {"_count": 3}, "like": {"_count": 1}, "": {"_count": 3}, "whats": {"_count": 1}, "down": {"_count": 1}, "inside": {"_count": 1}}, "checking": {"_count": 1, "his": {"_count": 1}}, "gripping": {"_count": 2, "Buckbeak": {"_count": 1}, "the": {"_count": 1}}, "gazed": {"_count": 8, "after": {"_count": 1}, "nonplussed": {"_count": 1}, "into": {"_count": 2}, "at": {"_count": 3}, "in": {"_count": 1}}, "wrenching": {"_count": 1, "his": {"_count": 1}}, "helping": {"_count": 1, "himself": {"_count": 1}}, "alarmed": {"_count": 1, "": {"_count": 1}}, "distracted": {"_count": 1, "": {"_count": 1}}, "cheerfully": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "brightly": {"_count": 2, "": {"_count": 2}}, "thats": {"_count": 11, "really": {"_count": 1}, "Dudley": {"_count": 1}, "their": {"_count": 1}, "loads": {"_count": 1}, "wonderful": {"_count": 1}, "got": {"_count": 1}, "where": {"_count": 1}, "three": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "how": {"_count": 1}}, "wearing": {"_count": 3, "a": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "kneaded": {"_count": 1, "his": {"_count": 1}}, "even": {"_count": 3, "if": {"_count": 2}, "above": {"_count": 1}}, "cleared": {"_count": 4, "his": {"_count": 3}, "away": {"_count": 1}}, "Yes": {"_count": 1, "thought": {"_count": 1}}, "stay": {"_count": 2, "for": {"_count": 1}, "here": {"_count": 1}}, "soon": {"_count": 1, "Yours": {"_count": 1}}, "happy": {"_count": 1, "something": {"_count": 1}}, "writing": {"_count": 1, "to": {"_count": 1}}, "massaged": {"_count": 1, "the": {"_count": 1}}, "DAD": {"_count": 1, "GOT": {"_count": 1}}, "He": {"_count": 5, "folded": {"_count": 1}, "then": {"_count": 1}, "had": {"_count": 1}, "strode": {"_count": 1}, "tripped": {"_count": 1}}, "informed": {"_count": 1, "him": {"_count": 1}}, "retreated": {"_count": 2, "to": {"_count": 1}, "farther": {"_count": 1}}, "straightening": {"_count": 1, "up": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "seizing": {"_count": 4, "a": {"_count": 1}, "Hermione": {"_count": 1}, "gratefully": {"_count": 1}, "his": {"_count": 1}}, "than": {"_count": 2, "anything": {"_count": 1}, "Michael": {"_count": 1}}, "So": {"_count": 1, "have": {"_count": 1}}, "softly": {"_count": 1, "twice": {"_count": 1}}, "enthusiastically": {"_count": 3, "": {"_count": 1}, "turning": {"_count": 1}, "when": {"_count": 1}}, "smiling": {"_count": 3, "very": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "winced": {"_count": 1, "": {"_count": 1}}, "having": {"_count": 3, "been": {"_count": 1}, "stormed": {"_count": 1}, "to": {"_count": 1}}, "Potterl": {"_count": 1, "Harry": {"_count": 1}}, "how": {"_count": 10, "odd": {"_count": 1}, "many": {"_count": 1}, "come": {"_count": 1}, "wonderful": {"_count": 1}, "on": {"_count": 1}, "exactly": {"_count": 1}, "often": {"_count": 1}, "did": {"_count": 1}, "they": {"_count": 1}, "could": {"_count": 1}}, "disentangled": {"_count": 1, "himself": {"_count": 1}}, "toward": {"_count": 7, "him": {"_count": 2}, "the": {"_count": 4}, "what": {"_count": 1}}, "corrected": {"_count": 3, "him": {"_count": 3}}, "inside": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "filing": {"_count": 1, "into": {"_count": 1}}, "taken": {"_count": 4, "aback": {"_count": 4}}, "fervently": {"_count": 5, "": {"_count": 4}, "looking": {"_count": 1}}, "whom": {"_count": 2, "Cornelius": {"_count": 1}, "Lord": {"_count": 1}}, "vividly": {"_count": 2, "recalled": {"_count": 1}, "of": {"_count": 1}}, "focusing": {"_count": 1, "still": {"_count": 1}}, "dug": {"_count": 4, "in": {"_count": 2}, "his": {"_count": 1}, "deeper": {"_count": 1}}, "whirled": {"_count": 7, "around": {"_count": 7}}, "gesturing": {"_count": 2, "up": {"_count": 1}, "out": {"_count": 1}}, "jerking": {"_count": 1, "his": {"_count": 1}}, "pocketed": {"_count": 2, "it": {"_count": 2}}, "shrugging": {"_count": 8, "": {"_count": 7}, "but": {"_count": 1}}, "repacked": {"_count": 1, "his": {"_count": 1}}, "shut": {"_count": 2, "his": {"_count": 2}}, "bought": {"_count": 1, "a": {"_count": 1}}, "warily": {"_count": 1, "": {"_count": 1}}, "guess": {"_count": 2, "what": {"_count": 2}}, "guessed": {"_count": 6, "was": {"_count": 1}, "Kreacher": {"_count": 1}, "that": {"_count": 4}}, "clapping": {"_count": 3, "along": {"_count": 2}, "her": {"_count": 1}}, "rolled": {"_count": 7, "over": {"_count": 5}, "up": {"_count": 2}}, "following": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "crumpling": {"_count": 1, "up": {"_count": 1}}, "scribbling": {"_count": 1, "it": {"_count": 1}}, "rather": {"_count": 7, "as": {"_count": 1}, "angrily": {"_count": 1}, "cautiously": {"_count": 1}, "thought": {"_count": 2}, "doubted": {"_count": 1}, "than": {"_count": 1}}, "laid": {"_count": 4, "down": {"_count": 3}, "it": {"_count": 1}}, "suggesting": {"_count": 2, "she": {"_count": 1}, "that": {"_count": 1}}, "simply": {"_count": 3, "wanted": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 1}}, "vehemently": {"_count": 1, "": {"_count": 1}}, "Cedric": {"_count": 2, "Fleur": {"_count": 1}, "I": {"_count": 1}}, "struggle": {"_count": 1, "to": {"_count": 1}}, "open": {"_count": 3, "his": {"_count": 1}, "it": {"_count": 1}, "up": {"_count": 1}}, "Finished": {"_count": 1, "he": {"_count": 1}}, "normally": {"_count": 1, "got": {"_count": 1}}, "either": {"_count": 2, "": {"_count": 2}}, "concealing": {"_count": 1, "with": {"_count": 1}}, "assumed": {"_count": 3, "he": {"_count": 1}, "have": {"_count": 1}, "was": {"_count": 1}}, "Hagrid": {"_count": 5, "sighed": {"_count": 1}, "continued": {"_count": 1}, "whispered": {"_count": 1}, "said": {"_count": 1}, "George": {"_count": 1}}, "actually": {"_count": 6, "saw": {"_count": 1}, "felt": {"_count": 2}, "screwed": {"_count": 1}, "pulled": {"_count": 1}, "turned": {"_count": 1}}, "imagined": {"_count": 6, "picking": {"_count": 1}, "sitting": {"_count": 1}, "MadEyes": {"_count": 1}, "the": {"_count": 1}, "coming": {"_count": 1}, "he": {"_count": 1}}, "yet": {"_count": 3, "again": {"_count": 2}, "another": {"_count": 1}}, "announcing": {"_count": 1, "that": {"_count": 1}}, "considered": {"_count": 10, "going": {"_count": 1}, "telling": {"_count": 1}, "an": {"_count": 1}, "this": {"_count": 2}, "for": {"_count": 1}, "pure": {"_count": 1}, "asking": {"_count": 1}, "him": {"_count": 1}, "suggesting": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "rarely": {"_count": 1, "saw": {"_count": 1}}, "glimpsed": {"_count": 6, "Fleur": {"_count": 1}, "an": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "Slughorn": {"_count": 1}, "hooded": {"_count": 1}}, "meet": {"_count": 1, "me": {"_count": 1}}, "slipping": {"_count": 1, "inside": {"_count": 1}}, "totally": {"_count": 1, "bewildered": {"_count": 1}}, "remained": {"_count": 13, "still": {"_count": 1}, "with": {"_count": 1}, "behind": {"_count": 1}, "quite": {"_count": 2}, "within": {"_count": 1}, "silent": {"_count": 2}, "crouched": {"_count": 1}, "on": {"_count": 1}, "where": {"_count": 1}, "convinced": {"_count": 1}, "kneeling": {"_count": 1}}, "talk": {"_count": 2, "himself": {"_count": 1}, "about": {"_count": 1}}, "speaking": {"_count": 5, "quickly": {"_count": 1}, "fast": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "more": {"_count": 1}}, "concentrate": {"_count": 1, "": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "Bagman": {"_count": 1, "was": {"_count": 1}}, "wondering": {"_count": 2, "why": {"_count": 2}}, "plummeted": {"_count": 1, "just": {"_count": 1}}, "cmon": {"_count": 1, "theyll": {"_count": 1}}, "squinting": {"_count": 1, "up": {"_count": 1}}, "reentered": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 9, "he": {"_count": 2}, "they": {"_count": 2}, "she": {"_count": 1}, "I": {"_count": 1}, "hes": {"_count": 1}, "fifty": {"_count": 1}, "you": {"_count": 1}}, "savagely": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "attached": {"_count": 1, "the": {"_count": 1}}, "zooming": {"_count": 1, "around": {"_count": 1}}, "used": {"_count": 2, "their": {"_count": 1}, "to": {"_count": 1}}, "stoutly": {"_count": 1, "": {"_count": 1}}, "thoroughly": {"_count": 3, "enjoyed": {"_count": 1}, "discomposed": {"_count": 1}, "taken": {"_count": 1}}, "intrigued": {"_count": 1, "": {"_count": 1}}, "Potteri": {"_count": 1, "Next": {"_count": 1}}, "past": {"_count": 1, "them": {"_count": 1}}, "closer": {"_count": 2, "": {"_count": 2}}, "proceeded": {"_count": 3, "gloomily": {"_count": 1}, "down": {"_count": 1}, "through": {"_count": 1}}, "bu": {"_count": 1, "yehre": {"_count": 1}}, "lazily": {"_count": 1, "he": {"_count": 1}}, "joining": {"_count": 2, "them": {"_count": 1}, "in": {"_count": 1}}, "keen": {"_count": 2, "not": {"_count": 1}, "to": {"_count": 1}}, "Congratulations": {"_count": 1, "on": {"_count": 1}}, "concentrated": {"_count": 2, "on": {"_count": 1}, "harder": {"_count": 1}}, "knows": {"_count": 1, "that": {"_count": 1}}, "deeper": {"_count": 1, "into": {"_count": 1}}, "definitely": {"_count": 1, "didnt": {"_count": 1}}, "theyre": {"_count": 5, "just": {"_count": 1}, "brains": {"_count": 1}, "easily": {"_count": 1}, "here": {"_count": 1}, "always": {"_count": 1}}, "wasted": {"_count": 1, "no": {"_count": 1}}, "hotly": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 2, "the": {"_count": 2}}, "leading": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "ladling": {"_count": 1, "chicken": {"_count": 1}}, "whenever": {"_count": 1, "there": {"_count": 1}}, "fended": {"_count": 1, "off": {"_count": 1}}, "sheepishly": {"_count": 1, "": {"_count": 1}}, "winning": {"_count": 1, "the": {"_count": 1}}, "planned": {"_count": 1, "his": {"_count": 1}}, "owned": {"_count": 1, "": {"_count": 1}}, "amused": {"_count": 2, "himself": {"_count": 1}, "": {"_count": 1}}, "bending": {"_count": 2, "his": {"_count": 1}, "to": {"_count": 1}}, "which": {"_count": 8, "was": {"_count": 3}, "suited": {"_count": 1}, "sobered": {"_count": 1}, "I": {"_count": 1}, "must": {"_count": 1}, "takes": {"_count": 1}}, "indignantly": {"_count": 8, "": {"_count": 5}, "racking": {"_count": 1}, "as": {"_count": 1}, "pointing": {"_count": 1}}, "vaguely": {"_count": 3, "": {"_count": 1}, "his": {"_count": 1}, "putting": {"_count": 1}}, "examined": {"_count": 2, "the": {"_count": 2}}, "gritted": {"_count": 1, "his": {"_count": 1}}, "trapped": {"_count": 1, "in": {"_count": 1}}, "hoping": {"_count": 2, "Moody": {"_count": 1}, "for": {"_count": 1}}, "admitted": {"_count": 3, "": {"_count": 3}}, "ought": {"_count": 3, "to": {"_count": 3}}, "waving": {"_count": 1, "his": {"_count": 1}}, "sent": {"_count": 7, "him": {"_count": 1}, "Advanced": {"_count": 1}, "Stunning": {"_count": 2}, "Rons": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 1}}, "shouldnt": {"_count": 2, "Summon": {"_count": 1}, "leave": {"_count": 1}}, "resting": {"_count": 2, "facedown": {"_count": 1}, "for": {"_count": 1}}, "uneasily": {"_count": 1, "": {"_count": 1}}, "flashed": {"_count": 1, "past": {"_count": 1}}, "sprint": {"_count": 1, "toward": {"_count": 1}}, "struck": {"_count": 3, "out": {"_count": 1}, "by": {"_count": 2}}, "twisted": {"_count": 2, "his": {"_count": 1}, "around": {"_count": 1}}, "slowed": {"_count": 3, "down": {"_count": 3}}, "swam": {"_count": 2, "faster": {"_count": 1}, "on": {"_count": 1}}, "swirled": {"_count": 1, "around": {"_count": 1}}, "loosened": {"_count": 1, "their": {"_count": 1}}, "upright": {"_count": 1, "Fleur": {"_count": 1}}, "raising": {"_count": 6, "his": {"_count": 5}, "the": {"_count": 1}}, "twice": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "halfexasperated": {"_count": 1, "halfcommiserating": {"_count": 1}}, "tensely": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "folded": {"_count": 2, "up": {"_count": 1}, "his": {"_count": 1}}, "unload": {"_count": 1, "his": {"_count": 1}}, "resumed": {"_count": 3, "the": {"_count": 2}, "Youve": {"_count": 1}}, "tipped": {"_count": 1, "the": {"_count": 1}}, "deliberately": {"_count": 2, "knocked": {"_count": 1}, "circled": {"_count": 1}}, "peering": {"_count": 1, "around": {"_count": 1}}, "innocently": {"_count": 1, "straightening": {"_count": 1}}, "first": {"_count": 2, "met": {"_count": 1}, "of": {"_count": 1}}, "enlisted": {"_count": 1, "the": {"_count": 1}}, "Pansy": {"_count": 1, "called": {"_count": 1}}, "impatiently": {"_count": 15, "": {"_count": 8}, "lets": {"_count": 1}, "they": {"_count": 1}, "but": {"_count": 3}, "wincing": {"_count": 1}, "and": {"_count": 1}}, "KrumHermione": {"_count": 1, "triangle": {"_count": 1}}, "frankly": {"_count": 1, "marveled": {"_count": 1}}, "shall": {"_count": 1, "I": {"_count": 1}}, "suppressing": {"_count": 1, "a": {"_count": 1}}, "somehow": {"_count": 1, "struck": {"_count": 1}}, "pulling": {"_count": 10, "himself": {"_count": 1}, "at": {"_count": 1}, "Professor": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 3}, "her": {"_count": 1}}, "malevolently": {"_count": 1, "": {"_count": 1}}, "leaving": {"_count": 1, "Snape": {"_count": 1}}, "spoke": {"_count": 11, "again": {"_count": 2}, "for": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 2}, "causing": {"_count": 1}, "his": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "gazing": {"_count": 2, "at": {"_count": 2}}, "astonished": {"_count": 4, "saw": {"_count": 1}, "": {"_count": 3}}, "prepare": {"_count": 1, "": {"_count": 1}}, "wobbled": {"_count": 1, "around": {"_count": 1}}, "appreciated": {"_count": 1, "it": {"_count": 1}}, "lightly": {"_count": 1, "folding": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "staggered": {"_count": 3, "back": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "knowing": {"_count": 4, "what": {"_count": 1}, "perfectly": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}}, "pacing": {"_count": 1, "up": {"_count": 1}}, "steadying": {"_count": 1, "himself": {"_count": 1}}, "testing": {"_count": 1, "his": {"_count": 1}}, "limp": {"_count": 1, "toward": {"_count": 1}}, "glad": {"_count": 3, "that": {"_count": 1}, "of": {"_count": 2}}, "tying": {"_count": 1, "him": {"_count": 1}}, "Voldemort": {"_count": 1, "and": {"_count": 1}}, "lifted": {"_count": 4, "too": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}}, "obedience": {"_count": 1, "is": {"_count": 1}}, "crouched": {"_count": 3, "behind": {"_count": 1}, "hidden": {"_count": 1}, "down": {"_count": 1}}, "swayed": {"_count": 2, "": {"_count": 1}, "where": {"_count": 1}}, "Dumbledore": {"_count": 6, "Ill": {"_count": 1}, "and": {"_count": 1}, "corrected": {"_count": 1}, "pointed": {"_count": 1}, "added": {"_count": 1}, "didnt": {"_count": 1}}, "wildly": {"_count": 2, "": {"_count": 2}}, "guiding": {"_count": 1, "you": {"_count": 1}}, "leering": {"_count": 2, "down": {"_count": 1}, "and": {"_count": 1}}, "plunged": {"_count": 2, "his": {"_count": 1}, "after": {"_count": 1}}, "fully": {"_count": 6, "understood": {"_count": 1}, "appreciated": {"_count": 1}, "intended": {"_count": 1}, "aware": {"_count": 1}, "expected": {"_count": 1}, "realized": {"_count": 1}}, "throw": {"_count": 1, "down": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "relive": {"_count": 1, "everything": {"_count": 1}}, "continue": {"_count": 1, "please": {"_count": 1}}, "these": {"_count": 1, "echoes": {"_count": 1}}, "described": {"_count": 1, "how": {"_count": 1}}, "some": {"_count": 3, "pajamas": {"_count": 1}, "more": {"_count": 1}, "of": {"_count": 1}}, "touched": {"_count": 2, "the": {"_count": 1}, "down": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 10, "hand": {"_count": 1}, "prominent": {"_count": 1}, "face": {"_count": 2}, "eyes": {"_count": 3}, "thin": {"_count": 1}, "son": {"_count": 1}, "breast": {"_count": 1}}, "take": {"_count": 4, "the": {"_count": 2}, "it": {"_count": 1}, "care": {"_count": 1}}, "Mrs": {"_count": 3, "Weasley": {"_count": 2}, "Cattermole": {"_count": 1}}, "keep": {"_count": 1, "a": {"_count": 1}}, "perplexed": {"_count": 1, "": {"_count": 1}}, "thanks": {"_count": 1, "George": {"_count": 1}}, "winked": {"_count": 1, "at": {"_count": 1}}, "repressed": {"_count": 2, "a": {"_count": 2}}, "merely": {"_count": 7, "glanced": {"_count": 1}, "walked": {"_count": 1}, "settled": {"_count": 1}, "looked": {"_count": 2}, "knew": {"_count": 1}, "grimaced": {"_count": 1}}, "cared": {"_count": 1, "about": {"_count": 1}}, "busy": {"_count": 1, "": {"_count": 1}}, "vaulted": {"_count": 1, "over": {"_count": 1}}, "mastered": {"_count": 1, "the": {"_count": 1}}, "preferred": {"_count": 1, "Little": {"_count": 1}}, "enormous": {"_count": 1, "satisfaction": {"_count": 1}}, "readjusted": {"_count": 1, "Dudley": {"_count": 1}}, "removed": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "unfurled": {"_count": 1, "the": {"_count": 1}}, "Dumbledores": {"_count": 1, "just": {"_count": 1}}, "calmly": {"_count": 4, "he": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "supplied": {"_count": 1, "tonelessly": {"_count": 1}}, "temper": {"_count": 1, "and": {"_count": 1}}, "exasperated": {"_count": 1, "": {"_count": 1}}, "copied": {"_count": 1, "these": {"_count": 1}}, "paced": {"_count": 1, "the": {"_count": 1}}, "invariably": {"_count": 1, "slid": {"_count": 1}}, "clearly": {"_count": 3, "suspicious": {"_count": 1}, "": {"_count": 2}}, "descended": {"_count": 3, "the": {"_count": 3}}, "uncomfortably": {"_count": 3, "it": {"_count": 1}, "aware": {"_count": 1}, "": {"_count": 1}}, "inclined": {"_count": 1, "his": {"_count": 1}}, "gaping": {"_count": 1, "at": {"_count": 1}}, "stroked": {"_count": 2, "her": {"_count": 1}, "Hedwig": {"_count": 1}}, "sarcastically": {"_count": 5, "": {"_count": 5}}, "grumpily": {"_count": 2, "": {"_count": 2}}, "confused": {"_count": 1, "": {"_count": 1}}, "defensively": {"_count": 1, "": {"_count": 1}}, "spluttered": {"_count": 1, "": {"_count": 1}}, "grudgingly": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 2, "and": {"_count": 1}, "told": {"_count": 1}}, "Tonks": {"_count": 1, "was": {"_count": 1}}, "associated": {"_count": 2, "with": {"_count": 2}}, "gets": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "plenty": {"_count": 2, "of": {"_count": 2}}, "recognizing": {"_count": 1, "defeat": {"_count": 1}}, "regretfully": {"_count": 1, "closed": {"_count": 1}}, "Kreacher": {"_count": 2, "said": {"_count": 1}, "doesnt": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "handled": {"_count": 1, "the": {"_count": 1}}, "produced": {"_count": 1, "his": {"_count": 1}}, "received": {"_count": 4, "a": {"_count": 3}, "two": {"_count": 1}}, "unblinkingly": {"_count": 1, "": {"_count": 1}}, "aback": {"_count": 1, "he": {"_count": 1}}, "forward": {"_count": 2, "as": {"_count": 1}, "toward": {"_count": 1}}, "yeah": {"_count": 1, "Im": {"_count": 1}}, "burst": {"_count": 4, "out": {"_count": 3}, "into": {"_count": 1}}, "wringing": {"_count": 1, "out": {"_count": 1}}, "heatedly": {"_count": 3, "": {"_count": 3}}, "swept": {"_count": 1, "the": {"_count": 1}}, "counting": {"_count": 2, "them": {"_count": 1}, "on": {"_count": 1}}, "me": {"_count": 1, "too": {"_count": 1}}, "argued": {"_count": 1, "with": {"_count": 1}}, "Rons": {"_count": 1, "best": {"_count": 1}}, "hes": {"_count": 4, "our": {"_count": 1}, "so": {"_count": 1}, "taking": {"_count": 1}, "got": {"_count": 1}}, "warned": {"_count": 1, "them": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "tiptoed": {"_count": 1, "up": {"_count": 1}}, "inhaled": {"_count": 2, "the": {"_count": 1}, "half": {"_count": 1}}, "last": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "reaching": {"_count": 2, "out": {"_count": 2}}, "airy": {"_count": 1, "overly": {"_count": 1}}, "recalled": {"_count": 2, "fleetingly": {"_count": 1}, "with": {"_count": 1}}, "Me": {"_count": 1, "mam": {"_count": 1}}, "pausing": {"_count": 1, "in": {"_count": 1}}, "announced": {"_count": 1, "his": {"_count": 1}}, "Dean": {"_count": 1, "muttered": {"_count": 1}}, "itshisproblemnot": {"_count": 1, "yours": {"_count": 1}}, "glowering": {"_count": 1, "at": {"_count": 1}}, "shoved": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "thrust": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "stiffly": {"_count": 6, "": {"_count": 6}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "Shes": {"_count": 1, "got": {"_count": 1}}, "Anyone": {"_count": 1, "would": {"_count": 1}}, "stung": {"_count": 3, "by": {"_count": 2}, "": {"_count": 1}}, "glumly": {"_count": 1, "tipping": {"_count": 1}}, "bade": {"_count": 2, "the": {"_count": 1}, "Mrs": {"_count": 1}}, "placed": {"_count": 6, "the": {"_count": 3}, "his": {"_count": 2}, "carefully": {"_count": 1}}, "dared": {"_count": 1, "watch": {"_count": 1}}, "uncorked": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "reread": {"_count": 1, "this": {"_count": 1}}, "devoted": {"_count": 1, "himself": {"_count": 1}}, "playing": {"_count": 2, "Chaser": {"_count": 1}, "for": {"_count": 1}}, "attempted": {"_count": 3, "to": {"_count": 2}, "a": {"_count": 1}}, "think": {"_count": 3, "he": {"_count": 1}, "about": {"_count": 1}, "suddenly": {"_count": 1}}, "reversed": {"_count": 1, "away": {"_count": 1}}, "release": {"_count": 1, "the": {"_count": 1}}, "released": {"_count": 3, "the": {"_count": 1}, "Neville": {"_count": 1}, "him": {"_count": 1}}, "loyally": {"_count": 1, "": {"_count": 1}}, "nor": {"_count": 7, "Ron": {"_count": 4}, "any": {"_count": 1}, "Hermione": {"_count": 2}}, "yours": {"_count": 1, "is": {"_count": 1}}, "answered": {"_count": 1, "she": {"_count": 1}}, "chancing": {"_count": 1, "a": {"_count": 1}}, "exchanged": {"_count": 1, "uneasy": {"_count": 1}}, "giving": {"_count": 2, "Defense": {"_count": 1}, "her": {"_count": 1}}, "Well": {"_count": 1, "what": {"_count": 1}}, "discussed": {"_count": 1, "his": {"_count": 1}}, "dryly": {"_count": 1, "especially": {"_count": 1}}, "hoarsely": {"_count": 1, "to": {"_count": 1}}, "plainly": {"_count": 1, "that": {"_count": 1}}, "curtly": {"_count": 5, "": {"_count": 4}, "then": {"_count": 1}}, "lifting": {"_count": 1, "Hedwig": {"_count": 1}}, "neither": {"_count": 2, "knew": {"_count": 2}}, "succeeded": {"_count": 2, "in": {"_count": 2}}, "horrified": {"_count": 2, "": {"_count": 2}}, "whipped": {"_count": 3, "around": {"_count": 2}, "off": {"_count": 1}}, "demanded": {"_count": 8, "": {"_count": 5}, "while": {"_count": 1}, "for": {"_count": 1}, "of": {"_count": 1}}, "stroking": {"_count": 1, "Hedwigs": {"_count": 1}}, "yawning": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "reluctantly": {"_count": 1, "sinking": {"_count": 1}}, "warningly": {"_count": 2, "unfolding": {"_count": 1}, "": {"_count": 1}}, "stepping": {"_count": 1, "between": {"_count": 1}}, "retrieved": {"_count": 1, "it": {"_count": 1}}, "encouragingly": {"_count": 1, "deciding": {"_count": 1}}, "ruefully": {"_count": 1, "": {"_count": 1}}, "evidently": {"_count": 1, "she": {"_count": 1}}, "sets": {"_count": 1, "the": {"_count": 1}}, "sternly": {"_count": 1, "": {"_count": 1}}, "recovering": {"_count": 1, "quickly": {"_count": 1}}, "WHAT": {"_count": 1, "ARE": {"_count": 1}}, "squarely": {"_count": 1, "in": {"_count": 1}}, "testily": {"_count": 1, "therell": {"_count": 1}}, "skeptically": {"_count": 1, "": {"_count": 1}}, "suspect": {"_count": 1, "broken": {"_count": 1}}, "allowed": {"_count": 1, "him": {"_count": 1}}, "endured": {"_count": 1, "several": {"_count": 1}}, "asking": {"_count": 1, "how": {"_count": 1}}, "partnered": {"_count": 1, "Neville": {"_count": 1}}, "considering": {"_count": 1, "the": {"_count": 1}}, "dreamed": {"_count": 1, "he": {"_count": 1}}, "protested": {"_count": 1, "": {"_count": 1}}, "mate": {"_count": 1, "said": {"_count": 1}}, "emphatically": {"_count": 1, "why": {"_count": 1}}, "halfrising": {"_count": 1, "from": {"_count": 1}}, "pretended": {"_count": 3, "to": {"_count": 2}, "that": {"_count": 1}}, "Arthur": {"_count": 1, "wants": {"_count": 1}}, "tersely": {"_count": 2, "tugging": {"_count": 1}, "": {"_count": 1}}, "impertinent": {"_count": 1, "": {"_count": 1}}, "swiftly": {"_count": 1, "": {"_count": 1}}, "dragged": {"_count": 3, "his": {"_count": 2}, "her": {"_count": 1}}, "glaring": {"_count": 2, "at": {"_count": 2}}, "racked": {"_count": 1, "his": {"_count": 1}}, "sorted": {"_count": 1, "through": {"_count": 1}}, "contradicted": {"_count": 1, "him": {"_count": 1}}, "uneasy": {"_count": 1, "": {"_count": 1}}, "positively": {"_count": 1, "dread": {"_count": 1}}, "immobile": {"_count": 1, "between": {"_count": 1}}, "stowing": {"_count": 2, "the": {"_count": 2}}, "apparently": {"_count": 1, "Stan": {"_count": 1}}, "dismally": {"_count": 1, "": {"_count": 1}}, "dislike": {"_count": 1, "etched": {"_count": 1}}, "tracing": {"_count": 1, "his": {"_count": 1}}, "tensed": {"_count": 1, "in": {"_count": 1}}, "intently": {"_count": 1, "": {"_count": 1}}, "convicted": {"_count": 1, "of": {"_count": 1}}, "concentrating": {"_count": 1, "on": {"_count": 1}}, "Fudge": {"_count": 1, "is": {"_count": 1}}, "next": {"_count": 2, "saw": {"_count": 1}, "recognized": {"_count": 1}}, "recommended": {"_count": 1, "essence": {"_count": 1}}, "taught": {"_count": 2, "them": {"_count": 2}}, "confided": {"_count": 2, "in": {"_count": 2}}, "dubiously": {"_count": 1, "": {"_count": 1}}, "untruthfully": {"_count": 1, "": {"_count": 1}}, "drinking": {"_count": 1, "his": {"_count": 1}}, "grand": {"_count": 1, "": {"_count": 1}}, "unable": {"_count": 3, "to": {"_count": 3}}, "reports": {"_count": 1, "them": {"_count": 1}}, "bemused": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 4, "longer": {"_count": 1}, "preferred": {"_count": 1}, "the": {"_count": 1}, "less": {"_count": 1}}, "dyou": {"_count": 2, "mind": {"_count": 1}, "want": {"_count": 1}}, "happiest": {"_count": 1, "was": {"_count": 1}}, "flailed": {"_count": 1, "around": {"_count": 1}}, "convinced": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "firing": {"_count": 2, "up": {"_count": 2}}, "impassively": {"_count": 1, "": {"_count": 1}}, "jus": {"_count": 1, "get": {"_count": 1}}, "sometimes": {"_count": 1, "wondered": {"_count": 1}}, "patiently": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "replied": {"_count": 5, "with": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 2}}, "changed": {"_count": 1, "direction": {"_count": 1}}, "blandly": {"_count": 1, "": {"_count": 1}}, "hoisting": {"_count": 1, "an": {"_count": 1}}, "stupidly": {"_count": 1, "thinking": {"_count": 1}}, "promptly": {"_count": 2, "": {"_count": 2}}, "moodily": {"_count": 1, "": {"_count": 1}}, "removing": {"_count": 1, "as": {"_count": 1}}, "replaced": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "headfirst": {"_count": 1, "into": {"_count": 1}}, "jump": {"_count": 2, "turning": {"_count": 1}, "into": {"_count": 1}}, "gruffly": {"_count": 1, "": {"_count": 1}}, "brusquely": {"_count": 1, "": {"_count": 1}}, "hopelessly": {"_count": 1, "": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "always": {"_count": 1, "hated": {"_count": 1}}, "doggedly": {"_count": 1, "determined": {"_count": 1}}, "indifferently": {"_count": 3, "like": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "surprised": {"_count": 4, "at": {"_count": 1}, "out": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "frequently": {"_count": 2, "heard": {"_count": 1}, "looked": {"_count": 1}}, "witnessed": {"_count": 1, "Professor": {"_count": 1}}, "mutinously": {"_count": 1, "": {"_count": 1}}, "Mum": {"_count": 1, "cant": {"_count": 1}}, "least": {"_count": 1, "expected": {"_count": 1}}, "wordlessly": {"_count": 1, "on": {"_count": 1}}, "Grawp": {"_count": 1, "": {"_count": 1}}, "forcibly": {"_count": 1, "of": {"_count": 1}}, "Occlumency": {"_count": 1, "tuition": {"_count": 1}}, "demonstrated": {"_count": 1, "a": {"_count": 1}}, "corked": {"_count": 1, "his": {"_count": 1}}, "completed": {"_count": 1, "the": {"_count": 1}}, "quills": {"_count": 1, "were": {"_count": 1}}, "shakily": {"_count": 2, "on": {"_count": 1}, "I": {"_count": 1}}, "nodding": {"_count": 3, "vigorously": {"_count": 1}, "": {"_count": 1}, "toward": {"_count": 1}}, "stunned": {"_count": 1, "": {"_count": 1}}, "inserted": {"_count": 1, "the": {"_count": 1}}, "beating": {"_count": 1, "her": {"_count": 1}}, "shell": {"_count": 1, "force": {"_count": 1}}, "tightening": {"_count": 2, "his": {"_count": 2}}, "kicking": {"_count": 1, "a": {"_count": 1}}, "frustratedly": {"_count": 1, "because": {"_count": 1}}, "wound": {"_count": 1, "his": {"_count": 1}}, "toppled": {"_count": 1, "out": {"_count": 1}}, "stabbed": {"_count": 1, "the": {"_count": 1}}, "stopping": {"_count": 1, "again": {"_count": 1}}, "lets": {"_count": 3, "go": {"_count": 2}, "get": {"_count": 1}}, "stop": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "maintaining": {"_count": 1, "his": {"_count": 1}}, "recklessly": {"_count": 1, "": {"_count": 1}}, "trembling": {"_count": 1, "from": {"_count": 1}}, "launched": {"_count": 1, "himself": {"_count": 1}}, "hot": {"_count": 1, "on": {"_count": 1}}, "IN": {"_count": 1, "AN": {"_count": 1}}, "Ib": {"_count": 2, "sure": {"_count": 1}, "sorry": {"_count": 1}}, "snatching": {"_count": 2, "up": {"_count": 1}, "it": {"_count": 1}}, "dashing": {"_count": 1, "toward": {"_count": 1}}, "smashed": {"_count": 1, "his": {"_count": 1}}, "crashed": {"_count": 1, "into": {"_count": 1}}, "giggling": {"_count": 1, "": {"_count": 1}}, "itll": {"_count": 1, "suffocate": {"_count": 1}}, "round": {"_count": 1, "up": {"_count": 1}}, "Get": {"_count": 1, "him": {"_count": 1}}, "We": {"_count": 1, "can": {"_count": 1}}, "backward": {"_count": 2, "away": {"_count": 1}, "off": {"_count": 1}}, "stride": {"_count": 1, "across": {"_count": 1}}, "anymore": {"_count": 2, "": {"_count": 2}}, "leap": {"_count": 1, "away": {"_count": 1}}, "contented": {"_count": 1, "himself": {"_count": 1}}, "suffering": {"_count": 1, "like": {"_count": 1}}, "demolishing": {"_count": 1, "his": {"_count": 1}}, "screamed": {"_count": 2, "so": {"_count": 1}, "at": {"_count": 1}}, "bluntly": {"_count": 2, "": {"_count": 2}}, "disregarded": {"_count": 1, "this": {"_count": 1}}, "safe": {"_count": 1, "and": {"_count": 1}}, "dredging": {"_count": 1, "up": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "exasperatedly": {"_count": 1, "": {"_count": 1}}, "uncertainly": {"_count": 1, "": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "Ernie": {"_count": 3, "and": {"_count": 2}, "said": {"_count": 1}}, "thanked": {"_count": 1, "the": {"_count": 1}}, "use": {"_count": 1, "the": {"_count": 1}}, "grunted": {"_count": 1, "in": {"_count": 1}}, "If": {"_count": 1, "it": {"_count": 1}}, "why": {"_count": 3, "he": {"_count": 1}, "exactly": {"_count": 1}, "wouldnt": {"_count": 1}}, "comes": {"_count": 1, "of": {"_count": 1}}, "turns": {"_count": 1, "seventeen": {"_count": 1}}, "extracted": {"_count": 1, "his": {"_count": 1}}, "rubbing": {"_count": 4, "his": {"_count": 3}, "the": {"_count": 1}}, "chuckled": {"_count": 1, "and": {"_count": 1}}, "zip": {"_count": 1, "up": {"_count": 1}}, "stifled": {"_count": 1, "a": {"_count": 1}}, "instinctively": {"_count": 2, "yanked": {"_count": 1}, "dived": {"_count": 1}}, "swinging": {"_count": 1, "her": {"_count": 1}}, "conversationally": {"_count": 1, "": {"_count": 1}}, "hastening": {"_count": 1, "to": {"_count": 1}}, "pocketing": {"_count": 1, "his": {"_count": 1}}, "speeding": {"_count": 1, "up": {"_count": 1}}, "frustrated": {"_count": 1, "": {"_count": 1}}, "motioned": {"_count": 1, "to": {"_count": 1}}, "disregarding": {"_count": 1, "Mr": {"_count": 1}}, "stubbornly": {"_count": 3, "": {"_count": 3}}, "bearing": {"_count": 1, "the": {"_count": 1}}, "PPotter": {"_count": 1, "she": {"_count": 1}}, "unrolled": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "stowed": {"_count": 1, "it": {"_count": 1}}, "mboy": {"_count": 4, "": {"_count": 4}}, "Blaise": {"_count": 1, "any": {"_count": 1}}, "scowling": {"_count": 1, "at": {"_count": 1}}, "darting": {"_count": 1, "after": {"_count": 1}}, "clung": {"_count": 1, "to": {"_count": 1}}, "evasively": {"_count": 2, "": {"_count": 2}}, "racking": {"_count": 1, "his": {"_count": 1}}, "scathingly": {"_count": 1, "": {"_count": 1}}, "reacted": {"_count": 4, "instinctively": {"_count": 3}, "but": {"_count": 1}}, "advanced": {"_count": 1, "Defensive": {"_count": 1}}, "crushed": {"_count": 1, "his": {"_count": 1}}, "stirred": {"_count": 1, "counterclockwise": {"_count": 1}}, "tentatively": {"_count": 3, "does": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "obeyed": {"_count": 3, "Merope": {"_count": 1}, "his": {"_count": 1}, "noticing": {"_count": 1}}, "leaning": {"_count": 1, "forward": {"_count": 1}}, "unwrapping": {"_count": 1, "the": {"_count": 1}}, "resisted": {"_count": 1, "the": {"_count": 1}}, "emphasizing": {"_count": 1, "the": {"_count": 1}}, "pored": {"_count": 1, "over": {"_count": 1}}, "preferring": {"_count": 1, "not": {"_count": 1}}, "wrapped": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "gagged": {"_count": 1, "on": {"_count": 1}}, "drained": {"_count": 1, "the": {"_count": 1}}, "mentioned": {"_count": 1, "his": {"_count": 1}}, "inserting": {"_count": 1, "a": {"_count": 1}}, "landing": {"_count": 1, "beside": {"_count": 1}}, "shouting": {"_count": 1, "things": {"_count": 1}}, "persisted": {"_count": 3, "in": {"_count": 1}, "": {"_count": 2}}, "blithely": {"_count": 1, "": {"_count": 1}}, "wheeling": {"_count": 2, "around": {"_count": 2}}, "craned": {"_count": 1, "around": {"_count": 1}}, "generally": {"_count": 1, "joined": {"_count": 1}}, "tugging": {"_count": 2, "it": {"_count": 1}, "at": {"_count": 1}}, "deciding": {"_count": 2, "that": {"_count": 1}, "on": {"_count": 1}}, "shes": {"_count": 1, "so": {"_count": 1}}, "disconcerted": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "revolted": {"_count": 1, "": {"_count": 1}}, "unenthusiastically": {"_count": 2, "": {"_count": 2}}, "sending": {"_count": 1, "letters": {"_count": 1}}, "delved": {"_count": 1, "into": {"_count": 1}}, "prodding": {"_count": 1, "the": {"_count": 1}}, "pass": {"_count": 1, "through": {"_count": 1}}, "deliberated": {"_count": 1, "wondering": {"_count": 1}}, "chosen": {"_count": 1, "or": {"_count": 1}}, "pleasantly": {"_count": 1, "": {"_count": 1}}, "unrolling": {"_count": 1, "it": {"_count": 1}}, "blurted": {"_count": 1, "out": {"_count": 1}}, "Fawkes": {"_count": 1, "the": {"_count": 1}}, "blessed": {"_count": 1, "as": {"_count": 1}}, "yes": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "dawdled": {"_count": 1, "behind": {"_count": 1}}, "reminding": {"_count": 1, "himself": {"_count": 1}}, "brooded": {"_count": 1, "for": {"_count": 1}}, "awaited": {"_count": 1, "an": {"_count": 1}}, "toyed": {"_count": 1, "with": {"_count": 1}}, "reflected": {"_count": 2, "sadly": {"_count": 1}, "in": {"_count": 1}}, "absentmindedly": {"_count": 1, "as": {"_count": 1}}, "sparing": {"_count": 1, "the": {"_count": 1}}, "scrutinized": {"_count": 1, "him": {"_count": 1}}, "albeit": {"_count": 1, "puzzled": {"_count": 1}}, "confidently": {"_count": 3, "leading": {"_count": 1}, "": {"_count": 2}}, "inventing": {"_count": 1, "wildly": {"_count": 1}}, "somewhat": {"_count": 1, "distracted": {"_count": 1}}, "retold": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "dyeh": {"_count": 2, "wan": {"_count": 1}, "remember": {"_count": 1}}, "shouldering": {"_count": 1, "his": {"_count": 1}}, "pelting": {"_count": 1, "toward": {"_count": 1}}, "aimed": {"_count": 1, "his": {"_count": 1}}, "twisting": {"_count": 1, "Kreachers": {"_count": 1}}, "foreseeing": {"_count": 1, "a": {"_count": 1}}, "does": {"_count": 2, "have": {"_count": 1}, "": {"_count": 1}}, "stalled": {"_count": 1, "at": {"_count": 1}}, "hesitantly": {"_count": 1, "": {"_count": 1}}, "wracked": {"_count": 1, "his": {"_count": 1}}, "Wish": {"_count": 1, "that": {"_count": 1}}, "cutting": {"_count": 1, "across": {"_count": 1}}, "smacking": {"_count": 1, "himself": {"_count": 1}}, "dismissively": {"_count": 1, "": {"_count": 1}}, "aloud": {"_count": 1, "": {"_count": 1}}, "scowled": {"_count": 2, "at": {"_count": 1}, "after": {"_count": 1}}, "Let": {"_count": 1, "us": {"_count": 1}}, "skimmed": {"_count": 1, "through": {"_count": 1}}, "emptied": {"_count": 1, "the": {"_count": 1}}, "lurked": {"_count": 1, "behind": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "patted": {"_count": 1, "him": {"_count": 1}}, "pouring": {"_count": 1, "most": {"_count": 1}}, "remorselessly": {"_count": 1, "": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "excitement": {"_count": 2, "blazing": {"_count": 1}, "rekindling": {"_count": 1}}, "entrance": {"_count": 1, "onto": {"_count": 1}}, "bowed": {"_count": 1, "obediently": {"_count": 1}}, "armed": {"_count": 1, "with": {"_count": 1}}, "\u2018Wouldnt": {"_count": 1, "it": {"_count": 1}}, "horror": {"_count": 1, "struck": {"_count": 1}}, "despite": {"_count": 1, "your": {"_count": 1}}, "bellowing": {"_count": 1, "orders": {"_count": 1}}, "exploded": {"_count": 1, "Harry": {"_count": 1}}, "invented": {"_count": 1, "wildly": {"_count": 1}}, "far": {"_count": 1, "and": {"_count": 1}}, "kissed": {"_count": 1, "her": {"_count": 1}}, "scanning": {"_count": 1, "the": {"_count": 1}}, "later": {"_count": 1, "and": {"_count": 1}}, "You": {"_count": 2, "are": {"_count": 1}, "yes": {"_count": 1}}, "Voldemorts": {"_count": 1, "mistake": {"_count": 1}}, "offered": {"_count": 1, "him": {"_count": 1}}, "scooped": {"_count": 1, "up": {"_count": 1}}, "struggling": {"_count": 3, "to": {"_count": 3}}, "sir": {"_count": 1, "I": {"_count": 1}}, "guided": {"_count": 1, "his": {"_count": 1}}, "fearing": {"_count": 1, "how": {"_count": 1}}, "beyond": {"_count": 1, "anything": {"_count": 1}}, "aiming": {"_count": 1, "a": {"_count": 1}}, "knocking": {"_count": 1, "two": {"_count": 1}}, "uttered": {"_count": 1, "an": {"_count": 1}}, "crumpled": {"_count": 1, "the": {"_count": 1}}, "registered": {"_count": 1, "the": {"_count": 1}}, "passing": {"_count": 1, "Scrimgeour": {"_count": 1}}, "scraped": {"_count": 1, "the": {"_count": 1}}, "Harrys": {"_count": 1, "past": {"_count": 1}}, "appeared": {"_count": 1, "at": {"_count": 1}}, "strolled": {"_count": 1, "downstairs": {"_count": 1}}, "fiddled": {"_count": 1, "aimlessly": {"_count": 1}}, "bestowing": {"_count": 1, "a": {"_count": 1}}, "Dedalus": {"_count": 1, "continued": {"_count": 1}}, "thus": {"_count": 1, "the": {"_count": 1}}, "altogether": {"_count": 1, "": {"_count": 1}}, "torn": {"_count": 1, "between": {"_count": 1}}, "beaming": {"_count": 1, "around": {"_count": 1}}, "yelped": {"_count": 1, "looking": {"_count": 1}}, "nearest": {"_count": 1, "the": {"_count": 1}}, "thisll": {"_count": 1, "do": {"_count": 1}}, "responded": {"_count": 1, "with": {"_count": 1}}, "hold": {"_count": 3, "on": {"_count": 3}}, "seated": {"_count": 1, "so": {"_count": 1}}, "visualized": {"_count": 1, "as": {"_count": 1}}, "wheres": {"_count": 1, "Hedwig": {"_count": 1}}, "addressed": {"_count": 2, "Lupin": {"_count": 1}, "Aberforth": {"_count": 1}}, "behaved": {"_count": 1, "a": {"_count": 1}}, "give": {"_count": 2, "us": {"_count": 1}, "me": {"_count": 1}}, "Remus": {"_count": 1, "she": {"_count": 1}}, "clenching": {"_count": 1, "his": {"_count": 1}}, "contemplated": {"_count": 1, "the": {"_count": 1}}, "humbly": {"_count": 1, "": {"_count": 1}}, "rubbed": {"_count": 2, "his": {"_count": 2}}, "sniggering": {"_count": 1, "when": {"_count": 1}}, "immediately": {"_count": 1, "checked": {"_count": 1}}, "harshly": {"_count": 1, "": {"_count": 1}}, "couldn": {"_count": 1, "think": {"_count": 1}}, "full": {"_count": 2, "in": {"_count": 2}}, "flummoxed": {"_count": 1, "": {"_count": 1}}, "Did": {"_count": 1, "you": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "coughed": {"_count": 1, "looking": {"_count": 1}}, "inwardly": {"_count": 1, "cursing": {"_count": 1}}, "mirrored": {"_count": 1, "them": {"_count": 1}}, "Snape": {"_count": 1, "can": {"_count": 1}}, "sickened": {"_count": 1, "by": {"_count": 1}}, "jubilantly": {"_count": 1, "as": {"_count": 1}}, "elation": {"_count": 1, "flooding": {"_count": 1}}, "kneeling": {"_count": 1, "beside": {"_count": 1}}, "otherwise": {"_count": 1, "Dumbledore": {"_count": 1}}, "digested": {"_count": 1, "this": {"_count": 1}}, "disgusted": {"_count": 1, "": {"_count": 1}}, "owns": {"_count": 1, "the": {"_count": 1}}, "wands": {"_count": 1, "pointing": {"_count": 1}}, "lowering": {"_count": 1, "his": {"_count": 1}}, "involves": {"_count": 1, "warning": {"_count": 1}}, "flipping": {"_count": 1, "over": {"_count": 1}}, "skulking": {"_count": 1, "alone": {"_count": 1}}, "retired": {"_count": 1, "to": {"_count": 1}}, "hastened": {"_count": 1, "to": {"_count": 1}}, "forgot": {"_count": 2, "where": {"_count": 1}, "everything": {"_count": 1}}, "reviewed": {"_count": 1, "his": {"_count": 1}}, "want": {"_count": 2, "to": {"_count": 2}}, "thundered": {"_count": 1, "and": {"_count": 1}}, "blustered": {"_count": 1, "": {"_count": 1}}, "whole": {"_count": 1, "And": {"_count": 1}}, "ventured": {"_count": 1, "out": {"_count": 1}}, "stated": {"_count": 1, "firmly": {"_count": 1}}, "plowed": {"_count": 1, "on": {"_count": 1}}, "defeated": {"_count": 1, "": {"_count": 1}}, "wince": {"_count": 1, "": {"_count": 1}}, "leaping": {"_count": 1, "to": {"_count": 1}}, "estimated": {"_count": 1, "that": {"_count": 1}}, "jangling": {"_count": 1, "his": {"_count": 1}}, "resuming": {"_count": 1, "his": {"_count": 1}}, "IveFacedWorse": {"_count": 1, "Potter": {"_count": 1}}, "grasped": {"_count": 2, "hands": {"_count": 1}, "it": {"_count": 1}}, "deduced": {"_count": 2, "that": {"_count": 2}}, "experienced": {"_count": 2, "a": {"_count": 2}}, "resolved": {"_count": 1, "to": {"_count": 1}}, "transforming": {"_count": 1, "into": {"_count": 1}}, "stooped": {"_count": 3, "down": {"_count": 1}, "pretending": {"_count": 1}, "to": {"_count": 1}}, "They": {"_count": 1, "were": {"_count": 1}}, "Look": {"_count": 1, "": {"_count": 1}}, "remains": {"_count": 1, "the": {"_count": 1}}, "wherever": {"_count": 1, "you": {"_count": 1}}, "beamed": {"_count": 1, "at": {"_count": 1}}, "wrinkled": {"_count": 1, "his": {"_count": 1}}, "reassuringly": {"_count": 1, "and": {"_count": 1}}, "instantly": {"_count": 1, "where": {"_count": 1}}, "mechanically": {"_count": 1, "": {"_count": 1}}, "searched": {"_count": 1, "the": {"_count": 1}}, "But": {"_count": 1, "he": {"_count": 1}}, "refused": {"_count": 1, "Hermiones": {"_count": 1}}, "crammed": {"_count": 1, "the": {"_count": 1}}, "sure": {"_count": 1, "he": {"_count": 1}}, "says": {"_count": 1, "wed": {"_count": 1}}, "The": {"_count": 2, "Quibblers": {"_count": 1}, "phrase": {"_count": 1}}, "upon": {"_count": 1, "which": {"_count": 1}}, "embarrassed": {"_count": 1, "nows": {"_count": 1}}, "abandoning": {"_count": 1, "caution": {"_count": 1}}, "Everything": {"_count": 1, "fit": {"_count": 1}}, "quoted": {"_count": 1, "calmly": {"_count": 1}}, "connected": {"_count": 1, "these": {"_count": 1}}, "yearned": {"_count": 1, "to": {"_count": 1}}, "Come": {"_count": 1, "on": {"_count": 1}}, "sensed": {"_count": 2, "the": {"_count": 1}, "by": {"_count": 1}}, "tied": {"_count": 1, "up": {"_count": 1}}, "directly": {"_count": 1, "beneath": {"_count": 1}}, "beseeched": {"_count": 1, "Luna": {"_count": 1}}, "slapped": {"_count": 1, "a": {"_count": 1}}, "knelt": {"_count": 1, "again": {"_count": 1}}, "dried": {"_count": 1, "his": {"_count": 1}}, "noted": {"_count": 1, "the": {"_count": 1}}, "burned": {"_count": 1, "to": {"_count": 1}}, "noting": {"_count": 1, "Griphooks": {"_count": 1}}, "admits": {"_count": 1, "he": {"_count": 1}}, "relief": {"_count": 1, "surging": {"_count": 1}}, "noticing": {"_count": 1, "": {"_count": 1}}, "nobody": {"_count": 1, "could": {"_count": 1}}, "ached": {"_count": 2, "with": {"_count": 2}}, "disliked": {"_count": 1, "the": {"_count": 1}}, "sidled": {"_count": 1, "sideways": {"_count": 1}}, "willed": {"_count": 1, "Hermione": {"_count": 1}}, "acted": {"_count": 1, "without": {"_count": 1}}, "shone": {"_count": 1, "his": {"_count": 1}}, "To": {"_count": 1, "repel": {"_count": 1}}, "skirted": {"_count": 1, "the": {"_count": 1}}, "awestruck": {"_count": 1, "and": {"_count": 1}}, "finishing": {"_count": 1, "his": {"_count": 1}}, "apologetically": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "fast": {"_count": 1}}, "begged": {"_count": 1, "of": {"_count": 1}}, "Their": {"_count": 1, "split": {"_count": 1}}, "bawled": {"_count": 1, "but": {"_count": 1}}, "fired": {"_count": 1, "Stunning": {"_count": 1}}, "Stunned": {"_count": 1, "the": {"_count": 1}}, "directed": {"_count": 1, "a": {"_count": 1}}, "realize": {"_count": 1, "that": {"_count": 1}}, "wriggled": {"_count": 1, "into": {"_count": 1}}, "thudded": {"_count": 1, "to": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "onward": {"_count": 1, "a": {"_count": 1}}, "Lilys": {"_count": 1, "protection": {"_count": 1}}, "master": {"_count": 1, "of": {"_count": 1}}, "inflamed": {"_count": 1, "me": {"_count": 1}}, "pictured": {"_count": 1, "Bellatrix": {"_count": 1}}, "sobbed": {"_count": 1, "Hagrid": {"_count": 1}}}, "stopped": {"_count": 335, "dead": {"_count": 24, "": {"_count": 5}, "facing": {"_count": 2}, "to": {"_count": 1}, "in": {"_count": 4}, "at": {"_count": 1}, "staring": {"_count": 1}, "his": {"_count": 1}, "looking": {"_count": 1}, "catching": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}, "right": {"_count": 1}, "Harry": {"_count": 1}, "quivering": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 2}, "from": {"_count": 2}}, "and": {"_count": 13, "took": {"_count": 1}, "so": {"_count": 2}, "looked": {"_count": 4}, "everything": {"_count": 1}, "he": {"_count": 2}, "flanking": {"_count": 1}, "drawn": {"_count": 1}, "glared": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 9, "last": {"_count": 2}, "Hogsmeade": {"_count": 1}, "the": {"_count": 2}, "an": {"_count": 1}, "least": {"_count": 1}, "Harrys": {"_count": 1}, "once": {"_count": 1}}, "to": {"_count": 6, "draw": {"_count": 1}, "buy": {"_count": 1}, "let": {"_count": 1}, "consider": {"_count": 1}, "think": {"_count": 1}, "be": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "Percy": {"_count": 1}}, "a": {"_count": 3, "passing": {"_count": 1}, "few": {"_count": 2}}, "": {"_count": 19, ".": {"_count": 18}, "!": {"_count": 1}}, "her": {"_count": 2, "from": {"_count": 1}, "swing": {"_count": 1}}, "talking": {"_count": 14, "to": {"_count": 1}, "": {"_count": 2}, "abruptly": {"_count": 3}, "very": {"_count": 2}, "and": {"_count": 2}, "when": {"_count": 1}, "about": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}}, "outside": {"_count": 4, "a": {"_count": 2}, "the": {"_count": 2}}, "next": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 1, "an": {"_count": 1}}, "his": {"_count": 5, "heart": {"_count": 1}, "fist": {"_count": 1}, "pacing": {"_count": 2}, "hand": {"_count": 1}}, "drawing": {"_count": 1, "attention": {"_count": 1}}, "quickly": {"_count": 4, "because": {"_count": 2}, "at": {"_count": 2}}, "crying": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 3, "from": {"_count": 2}, "leaving": {"_count": 1}}, "again": {"_count": 8, "": {"_count": 3}, "and": {"_count": 2}, "staring": {"_count": 1}, "this": {"_count": 1}, "The": {"_count": 1}}, "noticing": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 4, "behind": {"_count": 1}, "outside": {"_count": 1}, "above": {"_count": 1}, "in": {"_count": 1}}, "laughing": {"_count": 6, "and": {"_count": 2}, "now": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}}, "in": {"_count": 18, "his": {"_count": 7}, "their": {"_count": 1}, "midsentence": {"_count": 1}, "front": {"_count": 5}, "the": {"_count": 4}}, "playing": {"_count": 2, "at": {"_count": 1}, "applause": {"_count": 1}}, "abruptly": {"_count": 9, "in": {"_count": 2}, "": {"_count": 5}, "at": {"_count": 1}, "the": {"_count": 1}}, "Angelina": {"_count": 1, "scoring": {"_count": 1}}, "the": {"_count": 6, "barrier": {"_count": 1}, "attacks": {"_count": 1}, "cold": {"_count": 1}, "Dark": {"_count": 1}, "worst": {"_count": 1}, "grilles": {"_count": 1}}, "us": {"_count": 1, "from": {"_count": 1}}, "dancing": {"_count": 4, "Malfoy": {"_count": 1}, "terrible": {"_count": 1}, "and": {"_count": 2}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "before": {"_count": 1, "a": {"_count": 1}}, "shouting": {"_count": 3, "they": {"_count": 1}, "Expelliarmusl": {"_count": 1}, "": {"_count": 1}}, "What": {"_count": 1, "do": {"_count": 1}}, "feeling": {"_count": 2, "expectant": {"_count": 1}, "his": {"_count": 1}}, "suddenly": {"_count": 2, "his": {"_count": 1}, "and": {"_count": 1}}, "after": {"_count": 1, "Hagrid": {"_count": 1}}, "discussing": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "suddenly": {"_count": 1}}, "singing": {"_count": 2, "": {"_count": 2}}, "you": {"_count": 1, "killing": {"_count": 1}}, "enjoying": {"_count": 1, "the": {"_count": 1}}, "speaking": {"_count": 4, "": {"_count": 1}, "and": {"_count": 2}, "at": {"_count": 1}}, "their": {"_count": 1, "skipping": {"_count": 1}}, "YouKnowWho": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 2}, "Harrys": {"_count": 1}}, "making": {"_count": 1, "them": {"_count": 1}}, "just": {"_count": 1, "short": {"_count": 1}}, "moving": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "again": {"_count": 1}}, "struggling": {"_count": 3, "though": {"_count": 1}, "and": {"_count": 1}, "her": {"_count": 1}}, "fighting": {"_count": 3, "and": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "Sirius": {"_count": 2, "and": {"_count": 1}, "from": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 4}}, "there": {"_count": 1, "to": {"_count": 1}}, "arguing": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "worrying": {"_count": 2, "about": {"_count": 2}}, "blowing": {"_count": 1, "about": {"_count": 1}}, "fairly": {"_count": 1, "quickly": {"_count": 1}}, "it": {"_count": 3, "Hermione": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "Colin": {"_count": 1, "saying": {"_count": 1}}, "smiling": {"_count": 1, "": {"_count": 1}}, "calling": {"_count": 1, "Percy": {"_count": 1}}, "coming": {"_count": 2, "to": {"_count": 2}}, "very": {"_count": 1, "suddenly": {"_count": 1}}, "Filch": {"_count": 1, "had": {"_count": 1}}, "beside": {"_count": 2, "Filch": {"_count": 1}, "a": {"_count": 1}}, "swallowed": {"_count": 1, "and": {"_count": 1}}, "spinning": {"_count": 2, "he": {"_count": 1}, "his": {"_count": 1}}, "working": {"_count": 4, "": {"_count": 1}, "too": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}}, "looking": {"_count": 3, "astonished": {"_count": 1}, "down": {"_count": 1}, "at": {"_count": 1}}, "bickering": {"_count": 1, "to": {"_count": 1}}, "turning": {"_count": 1, "up": {"_count": 1}}, "hie": {"_count": 1, "coming": {"_count": 1}}, "opening": {"_count": 1, "it": {"_count": 1}}, "hurting": {"_count": 1, "now": {"_count": 1}}, "pacing": {"_count": 1, "and": {"_count": 1}}, "adding": {"_count": 1, "thoughts": {"_count": 1}}, "supporting": {"_count": 1, "Voldemort": {"_count": 1}}, "twitching": {"_count": 1, "and": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 2}}, "walking": {"_count": 7, "": {"_count": 1}, "they": {"_count": 1}, "around": {"_count": 1}, "level": {"_count": 1}, "and": {"_count": 2}, "leaned": {"_count": 1}}, "too": {"_count": 5, "staring": {"_count": 1}, "if": {"_count": 1}, "leaned": {"_count": 1}, "": {"_count": 2}}, "yelling": {"_count": 1, "": {"_count": 1}}, "raging": {"_count": 1, "about": {"_count": 1}}, "killing": {"_count": 1, "people": {"_count": 1}}, "screaming": {"_count": 1, "": {"_count": 1}}, "muttering": {"_count": 1, "and": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "sounding": {"_count": 1, "hearty": {"_count": 1}}, "Dumbledore": {"_count": 1, "getting": {"_count": 1}}, "jumping": {"_count": 1, "down": {"_count": 1}}, "taking": {"_count": 2, "out": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 2}}, "training": {"_count": 1, "just": {"_count": 1}}, "flouting": {"_count": 1, "authority": {"_count": 1}}, "knitting": {"_count": 1, "elf": {"_count": 1}}, "neatly": {"_count": 1, "in": {"_count": 1}}, "craning": {"_count": 1, "his": {"_count": 1}}, "this": {"_count": 1, "from": {"_count": 1}}, "prickling": {"_count": 1, "and": {"_count": 1}}, "thinking": {"_count": 1, "Harry": {"_count": 1}}, "short": {"_count": 2, "of": {"_count": 1}, "at": {"_count": 1}}, "showing": {"_count": 1, "off": {"_count": 1}}, "having": {"_count": 2, "funny": {"_count": 2}}, "hexing": {"_count": 1, "people": {"_count": 1}}, "giving": {"_count": 2, "you": {"_count": 1}, "me": {"_count": 1}}, "sharply": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "opened": {"_count": 1}}, "running": {"_count": 1, "": {"_count": 1}}, "myself": {"_count": 1, "having": {"_count": 1}}, "now": {"_count": 1, "Dumbledores": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "bridge": {"_count": 1}}, "trusting": {"_count": 1, "Severus": {"_count": 1}}, "careful": {"_count": 1, "not": {"_count": 1}}, "drizzling": {"_count": 1, "at": {"_count": 1}}, "using": {"_count": 1, "magic": {"_count": 1}}, "glaring": {"_count": 1, "though": {"_count": 1}}, "quivering": {"_count": 1, "and": {"_count": 1}}, "Zacharias": {"_count": 1, "wondering": {"_count": 1}}, "two": {"_count": 1, "boys": {"_count": 1}}, "echoing": {"_count": 1, "around": {"_count": 1}}, "mopping": {"_count": 1, "his": {"_count": 1}}, "himself": {"_count": 1, "adding": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "suddenly": {"_count": 1}}, "quite": {"_count": 1, "abruptly": {"_count": 1}}, "Apparition": {"_count": 1, "in": {"_count": 1}}, "suggesting": {"_count": 1, "it": {"_count": 1}}, "Grindelwald": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "would": {"_count": 1}}, "saying": {"_count": 1, "YouKnow": {"_count": 1}}, "reading": {"_count": 1, "then": {"_count": 1}}, "still": {"_count": 1, "echoing": {"_count": 1}}, "clinging": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}}, "dead": {"_count": 361, "": {"_count": 102, ".": {"_count": 70}, "?": {"_count": 19}, "!": {"_count": 13}}, "an": {"_count": 1, "poor": {"_count": 1}}, "said": {"_count": 16, "Harry": {"_count": 6}, "Ron": {"_count": 4}, "Myrtle": {"_count": 1}, "Crouch": {"_count": 1}, "Dumbledore": {"_count": 1}, "Malfoy": {"_count": 1}, "Ginny": {"_count": 1}, "McGonagall": {"_count": 1}}, "useful": {"_count": 2, "carry": {"_count": 1}, "": {"_count": 1}}, "mice": {"_count": 1, "": {"_count": 1}}, "facing": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "was": {"_count": 3, "that": {"_count": 1}, "Ron": {"_count": 1}, "fixed": {"_count": 1}}, "faint": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 2, "": {"_count": 2}}, "with": {"_count": 2, "cold": {"_count": 1}, "dignity": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "to": {"_count": 1, "listen": {"_count": 1}}, "rats": {"_count": 4, "by": {"_count": 1}, "": {"_count": 3}}, "of": {"_count": 10, "night": {"_count": 8}, "natural": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 17, "his": {"_count": 5}, "the": {"_count": 4}, "midair": {"_count": 2}, "my": {"_count": 1}, "her": {"_count": 2}, "another": {"_count": 1}, "their": {"_count": 1}, "Hagrid": {"_count": 1}}, "last": {"_count": 1, "Wednesday": {"_count": 1}}, "leaves": {"_count": 3, "nearby": {"_count": 1}, "slithering": {"_count": 1}, "many": {"_count": 1}}, "Hagrid": {"_count": 1, "its": {"_count": 1}}, "mothers": {"_count": 1, "sister": {"_count": 1}}, "depressing": {"_count": 1, "to": {"_count": 1}}, "Argus": {"_count": 1, "he": {"_count": 1}}, "Myrtle": {"_count": 1, "no": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "any": {"_count": 1}}, "lacewings": {"_count": 1, "on": {"_count": 1}}, "rooster": {"_count": 2, "was": {"_count": 1}, "still": {"_count": 1}}, "girls": {"_count": 1, "parents": {"_count": 1}}, "twigs": {"_count": 1, "he": {"_count": 1}}, "ends": {"_count": 5, "everywhere": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}, "and": {"_count": 1}}, "please": {"_count": 1, "dont": {"_count": 1}}, "He": {"_count": 2, "flung": {"_count": 1}, "wasnt": {"_count": 1}}, "weight": {"_count": 3, "": {"_count": 1}, "seemed": {"_count": 1}, "of": {"_count": 1}}, "Harry": {"_count": 4, "Potter": {"_count": 1}, "on": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "basilisk": {"_count": 3, "over": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 1}}, "parents": {"_count": 2, "who": {"_count": 1}, "in": {"_count": 1}}, "mouse": {"_count": 2, "dangling": {"_count": 1}, "fell": {"_count": 1}}, "on": {"_count": 3, "your": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "blowflies": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "hes": {"_count": 1, "fine": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "he": {"_count": 1}}, "polecat": {"_count": 1, "from": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "caterpillar": {"_count": 1, "because": {"_count": 1}}, "spider": {"_count": 4, "was": {"_count": 1}, "off": {"_count": 1}, "lying": {"_count": 1}, "forming": {"_count": 1}}, "for": {"_count": 2, "sure": {"_count": 1}, "all": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 4, "told": {"_count": 1}, "got": {"_count": 1}, "said": {"_count": 1}, "stormed": {"_count": 1}}, "and": {"_count": 12, "listening": {"_count": 1}, "gone": {"_count": 1}, "rottenlooking": {"_count": 1}, "would": {"_count": 1}, "staring": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 1}, "although": {"_count": 1}, "then": {"_count": 1}, "turned": {"_count": 1}, "thats": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 2, "heart": {"_count": 1}, "wife": {"_count": 1}}, "ferrets": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "suddenly": {"_count": 1}}, "too": {"_count": 2, "hes": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 1, "youd": {"_count": 1}}, "slimy": {"_count": 1, "hand": {"_count": 1}}, "we": {"_count": 2, "have": {"_count": 1}, "loved": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "do": {"_count": 1}}, "snapped": {"_count": 1, "Ron": {"_count": 1}}, "looking": {"_count": 2, "up": {"_count": 1}, "as": {"_count": 1}}, "birds": {"_count": 1, "hanging": {"_count": 1}}, "someone": {"_count": 1, "had": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "mum": {"_count": 1, "and": {"_count": 1}}, "helpful": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "center": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "fer": {"_count": 1, "all": {"_count": 1}}, "chuffed": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 6, "none": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 4, "family": {"_count": 1}, "watching": {"_count": 1}, "fiery": {"_count": 1}, "evidence": {"_count": 1}}, "end": {"_count": 3, "a": {"_count": 1}, "where": {"_count": 1}, "of": {"_count": 1}}, "victims": {"_count": 1, "whispered": {"_count": 1}}, "Hell": {"_count": 1, "need": {"_count": 1}}, "frog": {"_count": 2, "clamped": {"_count": 1}, "suspended": {"_count": 1}}, "clumsy": {"_count": 1, "did": {"_count": 1}}, "catching": {"_count": 1, "her": {"_count": 1}}, "puffskeins": {"_count": 1, "under": {"_count": 1}}, "ones": {"_count": 1, "memory": {"_count": 1}}, "than": {"_count": 1, "what": {"_count": 1}}, "no": {"_count": 1, "it": {"_count": 1}}, "body": {"_count": 5, "on": {"_count": 1}, "watched": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "cow": {"_count": 3, "over": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}}, "clever": {"_count": 1, "an": {"_count": 1}}, "eel": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 2, "coming": {"_count": 1}, "lying": {"_count": 1}}, "cockroaches": {"_count": 1, "exploded": {"_count": 1}}, "dont": {"_count": 1, "let": {"_count": 1}}, "its": {"_count": 2, "my": {"_count": 1}, "Mundungus": {"_count": 1}}, "it": {"_count": 4, "was": {"_count": 3}, "could": {"_count": 1}}, "as": {"_count": 1, "was": {"_count": 1}}, "so": {"_count": 1, "did": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "tomorrow": {"_count": 1, "so": {"_count": 1}}, "Ron": {"_count": 1, "observed": {"_count": 1}}, "right": {"_count": 1, "on": {"_count": 1}}, "snake": {"_count": 3, "": {"_count": 1}, "on": {"_count": 1}, "swung": {"_count": 1}}, "lump": {"_count": 1, "of": {"_count": 1}}, "bodies": {"_count": 2, "arent": {"_count": 1}, "enchanted": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "objects": {"_count": 1, "were": {"_count": 1}}, "black": {"_count": 1, "water": {"_count": 1}}, "you": {"_count": 3, "said": {"_count": 1}, "the": {"_count": 1}, "dont": {"_count": 1}}, "rising": {"_count": 1, "from": {"_count": 1}}, "guardian": {"_count": 1, "of": {"_count": 1}}, "quivering": {"_count": 1, "slightly": {"_count": 1}}, "long": {"_count": 1, "before": {"_count": 1}}, "headmasters": {"_count": 1, "and": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "godfather": {"_count": 1, "Sirius": {"_count": 1}}, "headmaster": {"_count": 1, "": {"_count": 1}}, "hands": {"_count": 1, "came": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "jaw": {"_count": 1}}, "by": {"_count": 3, "now": {"_count": 1}, "no": {"_count": 1}, "my": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "a": {"_count": 1, "while": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "upon": {"_count": 2, "the": {"_count": 2}}, "have": {"_count": 1, "there": {"_count": 1}}, "were": {"_count": 1, "they": {"_count": 1}}, "they": {"_count": 1, "belong": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "elf": {"_count": 1, "at": {"_count": 1}}, "houseelf": {"_count": 1, "and": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "cold": {"_count": 1, "look": {"_count": 1}}, "anyway": {"_count": 1, "whats": {"_count": 1}}, "Lucius": {"_count": 1, "it": {"_count": 1}}, "lay": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 1, "walked": {"_count": 1}}, "though": {"_count": 1, "of": {"_count": 1}}, "Voldemort": {"_count": 1, "hurled": {"_count": 1}}, "killed": {"_count": 1, "by": {"_count": 1}}}, "Fear": {"_count": 6, "flooded": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "jabbed": {"_count": 1, "at": {"_count": 1}}, "stirred": {"_count": 1, "in": {"_count": 1}}, "lapped": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "panic": {"_count": 1}}}, "flooded": {"_count": 18, "him": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "through": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 4, "room": {"_count": 1}, "pit": {"_count": 1}, "second": {"_count": 1}, "platform": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 6, "excitement": {"_count": 1}, "flimsy": {"_count": 1}, "a": {"_count": 1}, "color": {"_count": 1}, "angry": {"_count": 1}, "chill": {"_count": 1}}, "vegetable": {"_count": 1, "patch": {"_count": 1}}, "Harry": {"_count": 1, "at": {"_count": 1}}, "Freds": {"_count": 1, "pale": {"_count": 1}}}, "looked": {"_count": 2359, "back": {"_count": 66, "at": {"_count": 40}, "unconvinced": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 5}, "hopelessly": {"_count": 1}, "as": {"_count": 3}, "into": {"_count": 4}, "even": {"_count": 1}, "down": {"_count": 4}, "up": {"_count": 1}, "Grawp": {"_count": 1}, "over": {"_count": 1}, "again": {"_count": 1}, "out": {"_count": 1}}, "shocked": {"_count": 7, "and": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "up": {"_count": 221, "suddenly": {"_count": 1}, "and": {"_count": 19}, "at": {"_count": 102}, "into": {"_count": 9}, "": {"_count": 29}, "the": {"_count": 5}, "hardly": {"_count": 1}, "from": {"_count": 4}, "amazed": {"_count": 1}, "nervously": {"_count": 1}, "again": {"_count": 2}, "to": {"_count": 9}, "in": {"_count": 2}, "listening": {"_count": 1}, "fer": {"_count": 1}, "startled": {"_count": 1}, "only": {"_count": 1}, "as": {"_count": 4}, "but": {"_count": 2}, "when": {"_count": 1}, "high": {"_count": 1}, "Ron": {"_count": 1}, "his": {"_count": 2}, "eagerly": {"_count": 2}, "expectantly": {"_count": 2}, "whenever": {"_count": 1}, "night": {"_count": 1}, "inquiringly": {"_count": 1}, "everything": {"_count": 1}, "Luna": {"_count": 1}, "with": {"_count": 2}, "smiling": {"_count": 1}, "hopefully": {"_count": 1}, "blinking": {"_count": 1}, "Slughorn": {"_count": 1}, "Felix": {"_count": 1}, "terrified": {"_count": 1}, "just": {"_count": 1}, "rustled": {"_count": 1}, "diverted": {"_count": 1}, "A": {"_count": 1}}, "out": {"_count": 20, "of": {"_count": 9}, "": {"_count": 1}, "for": {"_count": 1}, "into": {"_count": 2}, "over": {"_count": 4}, "disconsolately": {"_count": 1}, "at": {"_count": 1}, "upon": {"_count": 1}}, "distinctly": {"_count": 3, "ruffled": {"_count": 1}, "the": {"_count": 1}, "disheveled": {"_count": 1}}, "simply": {"_count": 6, "too": {"_count": 1}, "furious": {"_count": 1}, "dumbfounded": {"_count": 1}, "radiant": {"_count": 1}, "bemused": {"_count": 1}, "delighted": {"_count": 1}}, "at": {"_count": 226, "the": {"_count": 17}, "Dudley": {"_count": 1}, "Harry": {"_count": 18}, "it": {"_count": 13}, "Ron": {"_count": 13}, "him": {"_count": 40}, "Crabbe": {"_count": 1}, "each": {"_count": 44}, "his": {"_count": 8}, "one": {"_count": 11}, "Hagrid": {"_count": 1}, "them": {"_count": 4}, "Hermione": {"_count": 6}, "her": {"_count": 18}, "Lucius": {"_count": 1}, "Dumbledore": {"_count": 1}, "me": {"_count": 3}, "my": {"_count": 1}, "Mr": {"_count": 1}, "Voldemort": {"_count": 2}, "Sirius": {"_count": 1}, "Mrs": {"_count": 2}, "this": {"_count": 1}, "Percy": {"_count": 2}, "Fudge": {"_count": 1}, "Alice": {"_count": 1}, "again": {"_count": 1}, "Dean": {"_count": 1}, "Umbridge": {"_count": 1}, "you": {"_count": 1}, "Slughorn": {"_count": 1}, "doesnt": {"_count": 1}, "Rons": {"_count": 1}, "very": {"_count": 1}, "Ginny": {"_count": 2}, "Bill": {"_count": 1}, "Neville": {"_count": 1}, "Tonks": {"_count": 1}, "Lily": {"_count": 1}}, "like": {"_count": 159, "a": {"_count": 61}, "hard": {"_count": 1}, "dirty": {"_count": 1}, "the": {"_count": 10}, "bodyguards": {"_count": 1}, "pale": {"_count": 1}, "an": {"_count": 15}, "lumpy": {"_count": 1}, "Filch": {"_count": 1}, "black": {"_count": 1}, "half": {"_count": 3}, "thick": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 4}, "zero": {"_count": 1}, "scaly": {"_count": 1}, "yellow": {"_count": 2}, "it": {"_count": 2}, "him": {"_count": 1}, "but": {"_count": 1}, "brass": {"_count": 1}, "emerald": {"_count": 1}, "his": {"_count": 1}, "deformed": {"_count": 1}, "that": {"_count": 1}, "ghostly": {"_count": 1}, "childrens": {"_count": 1}, "slimy": {"_count": 1}, "only": {"_count": 1}, "light": {"_count": 1}, "glass": {"_count": 1}, "some": {"_count": 1}, "molten": {"_count": 1}, "two": {"_count": 2}, "Ginnys": {"_count": 1}, "shriveled": {"_count": 1}, "boils": {"_count": 1}, "tiny": {"_count": 2}, "brown": {"_count": 1}, "essays": {"_count": 1}, "all": {"_count": 1}, "favorin": {"_count": 1}, "large": {"_count": 1}, "most": {"_count": 1}, "he": {"_count": 1}, "ten": {"_count": 1}, "purple": {"_count": 1}, "ribbons": {"_count": 1}, "gold": {"_count": 1}, "said": {"_count": 1}, "plain": {"_count": 1}, "liquid": {"_count": 1}, "spells": {"_count": 1}, "footlong": {"_count": 1}, "she": {"_count": 1}, "little": {"_count": 1}, "catsick": {"_count": 1}, "cat": {"_count": 1}, "dragon": {"_count": 1}, "mud": {"_count": 1}, "bogies": {"_count": 1}, "one": {"_count": 1}, "theyd": {"_count": 1}, "gingerbread": {"_count": 1}, "why": {"_count": 1}, "Mafalda": {"_count": 1}, "fear": {"_count": 1}}, "as": {"_count": 152, "though": {"_count": 129}, "if": {"_count": 10}, "stumped": {"_count": 1}, "magnificent": {"_count": 1}, "outraged": {"_count": 1}, "tense": {"_count": 1}, "menacing": {"_count": 1}, "tired": {"_count": 1}, "white": {"_count": 1}, "old": {"_count": 1}, "sour": {"_count": 1}, "welcoming": {"_count": 1}, "odd": {"_count": 1}, "stunned": {"_count": 1}, "ancient": {"_count": 1}}, "even": {"_count": 8, "smaller": {"_count": 1}, "more": {"_count": 3}, "unhappier": {"_count": 1}, "paler": {"_count": 1}, "surlier": {"_count": 1}, "prettier": {"_count": 1}}, "over": {"_count": 42, "the": {"_count": 5}, "at": {"_count": 14}, "his": {"_count": 14}, "her": {"_count": 5}, "and": {"_count": 1}, "": {"_count": 1}, "Hermiones": {"_count": 1}, "just": {"_count": 1}}, "a": {"_count": 19, "lot": {"_count": 2}, "bit": {"_count": 2}, "real": {"_count": 2}, "good": {"_count": 2}, "little": {"_count": 9}, "long": {"_count": 1}, "tear": {"_count": 1}}, "remarkably": {"_count": 2, "like": {"_count": 1}, "calm": {"_count": 1}}, "intently": {"_count": 1, "at": {"_count": 1}}, "quickly": {"_count": 18, "around": {"_count": 4}, "over": {"_count": 2}, "out": {"_count": 2}, "at": {"_count": 7}, "away": {"_count": 1}, "back": {"_count": 2}}, "so": {"_count": 12, "handsome": {"_count": 1}, "dangerous": {"_count": 1}, "strange": {"_count": 1}, "excited": {"_count": 1}, "grim": {"_count": 1}, "much": {"_count": 1}, "stunned": {"_count": 1}, "solid": {"_count": 1}, "shocked": {"_count": 1}, "ancient": {"_count": 1}, "pleased": {"_count": 1}, "toadlike": {"_count": 1}}, "in": {"_count": 16, "the": {"_count": 6}, "fact": {"_count": 1}, "days": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "danger": {"_count": 1}, "a": {"_count": 1}, "imminent": {"_count": 1}, "for": {"_count": 1}, "terror": {"_count": 1}}, "quite": {"_count": 21, "painful": {"_count": 1}, "ordinary": {"_count": 1}, "unremarkable": {"_count": 1}, "empty": {"_count": 1}, "horrified": {"_count": 1}, "uninterested": {"_count": 1}, "different": {"_count": 1}, "overwhelmed": {"_count": 1}, "as": {"_count": 1}, "frightening": {"_count": 1}, "cheerful": {"_count": 2}, "appalled": {"_count": 1}, "well": {"_count": 1}, "extraordinarily": {"_count": 1}, "unsettled": {"_count": 1}, "nice": {"_count": 1}, "at": {"_count": 1}, "deranged": {"_count": 1}, "happy": {"_count": 1}, "demented": {"_count": 1}}, "around": {"_count": 279, "shook": {"_count": 1}, "anxiously": {"_count": 1}, "quickly": {"_count": 1}, "as": {"_count": 8}, "the": {"_count": 18}, "wildly": {"_count": 1}, "him": {"_count": 2}, "saw": {"_count": 1}, "Sprinting": {"_count": 1}, "": {"_count": 59}, "just": {"_count": 2}, "at": {"_count": 71}, "I": {"_count": 1}, "and": {"_count": 27}, "rather": {"_count": 1}, "hoping": {"_count": 1}, "once": {"_count": 1}, "to": {"_count": 10}, "too": {"_count": 1}, "listening": {"_count": 3}, "in": {"_count": 4}, "it": {"_count": 1}, "when": {"_count": 2}, "blinking": {"_count": 2}, "Madame": {"_count": 1}, "there": {"_count": 2}, "back": {"_count": 1}, "waiting": {"_count": 1}, "realized": {"_count": 1}, "for": {"_count": 8}, "more": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "carefully": {"_count": 2}, "impressively": {"_count": 1}, "beaming": {"_count": 2}, "Ginny": {"_count": 1}, "they": {"_count": 1}, "this": {"_count": 1}, "hastily": {"_count": 1}, "curiously": {"_count": 1}, "Fred": {"_count": 1}, "cautiously": {"_count": 1}, "They": {"_count": 1}, "his": {"_count": 2}, "all": {"_count": 1}, "instinctively": {"_count": 1}, "He": {"_count": 2}, "Jack": {"_count": 1}, "surreptitiously": {"_count": 1}, "expecting": {"_count": 1}, "Hermione": {"_count": 1}, "sure": {"_count": 1}, "Harper": {"_count": 1}, "furtively": {"_count": 1}, "terrified": {"_count": 1}, "desperately": {"_count": 1}, "distractedly": {"_count": 1}, "suspiciously": {"_count": 1}, "Harrys": {"_count": 1}, "Yaxley": {"_count": 1}, "worried": {"_count": 1}, "holding": {"_count": 1}, "shocked": {"_count": 1}, "There": {"_count": 1}, "eyebrows": {"_count": 1}, "properly": {"_count": 2}, "through": {"_count": 1}, "The": {"_count": 1}, "then": {"_count": 1}}, "suddenly": {"_count": 7, "anxious": {"_count": 1}, "suspicious": {"_count": 1}, "nervous": {"_count": 1}, "alarmed": {"_count": 1}, "serious": {"_count": 1}, "shifty": {"_count": 1}, "scared": {"_count": 1}}, "into": {"_count": 26, "the": {"_count": 9}, "Harrys": {"_count": 4}, "his": {"_count": 2}, "each": {"_count": 1}, "Dumbledore": {"_count": 1}, "those": {"_count": 1}, "her": {"_count": 5}, "Dumbledores": {"_count": 1}, "Doges": {"_count": 1}, "on": {"_count": 1}}, "down": {"_count": 119, "at": {"_count": 74}, "again": {"_count": 1}, "through": {"_count": 1}, "the": {"_count": 3}, "and": {"_count": 9}, "in": {"_count": 1}, "": {"_count": 7}, "toward": {"_count": 1}, "upon": {"_count": 5}, "quickly": {"_count": 1}, "into": {"_count": 4}, "on": {"_count": 3}, "his": {"_count": 4}, "glumly": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}, "not": {"_count": 1}}, "terrified": {"_count": 11, "at": {"_count": 3}, "too": {"_count": 1}, "": {"_count": 6}, "as": {"_count": 1}}, "instead": {"_count": 1, "at": {"_count": 1}}, "very": {"_count": 42, "solid": {"_count": 1}, "out": {"_count": 1}, "pleased": {"_count": 3}, "worried": {"_count": 1}, "frightened": {"_count": 2}, "ill": {"_count": 1}, "uncomfortable": {"_count": 1}, "strained": {"_count": 1}, "seriously": {"_count": 3}, "upset": {"_count": 1}, "shaken": {"_count": 1}, "white": {"_count": 2}, "nervous": {"_count": 1}, "taken": {"_count": 1}, "odd": {"_count": 1}, "cross": {"_count": 1}, "anxious": {"_count": 2}, "shocked": {"_count": 2}, "pretty": {"_count": 1}, "busy": {"_count": 1}, "much": {"_count": 2}, "thin": {"_count": 1}, "intently": {"_count": 1}, "old": {"_count": 1}, "angry": {"_count": 1}, "cold": {"_count": 1}, "offended": {"_count": 1}, "suspicious": {"_count": 1}, "like": {"_count": 2}, "similar": {"_count": 1}, "concerned": {"_count": 1}, "alike": {"_count": 1}}, "behind": {"_count": 5, "him": {"_count": 5}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "tearful": {"_count": 3, "": {"_count": 3}}, "taken": {"_count": 6, "aback": {"_count": 6}}, "dumbfounded": {"_count": 1, "": {"_count": 1}}, "extremely": {"_count": 14, "mean": {"_count": 1}, "miffed": {"_count": 1}, "pleased": {"_count": 2}, "confused": {"_count": 1}, "white": {"_count": 1}, "disappointed": {"_count": 1}, "apprehensive": {"_count": 1}, "old": {"_count": 1}, "anxious": {"_count": 1}, "put": {"_count": 1}, "miserable": {"_count": 1}, "worried": {"_count": 1}, "nervous": {"_count": 1}}, "closer": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "pale": {"_count": 5, "under": {"_count": 1}, "and": {"_count": 4}}, "upward": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "past": {"_count": 1, "Quirrells": {"_count": 1}}, "desperate": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 3}}, "stunned": {"_count": 4, "": {"_count": 3}, "at": {"_count": 1}}, "wonderful": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "furious": {"_count": 8, "with": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "Karkaroff": {"_count": 1}, "now": {"_count": 1}, "as": {"_count": 1}}, "spectacular": {"_count": 1, "": {"_count": 1}}, "horribly": {"_count": 3, "like": {"_count": 3}}, "along": {"_count": 1, "the": {"_count": 1}}, "straight": {"_count": 3, "through": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}}, "and": {"_count": 6, "looked": {"_count": 1}, "saw": {"_count": 2}, "both": {"_count": 1}, "instead": {"_count": 1}, "smelled": {"_count": 1}}, "until": {"_count": 1, "a": {"_count": 1}}, "something": {"_count": 4, "up": {"_count": 1}, "like": {"_count": 3}}, "more": {"_count": 23, "likely": {"_count": 1}, "stunned": {"_count": 1}, "serious": {"_count": 1}, "menacing": {"_count": 1}, "like": {"_count": 5}, "skulllike": {"_count": 1}, "than": {"_count": 1}, "inviting": {"_count": 1}, "tired": {"_count": 1}, "pleased": {"_count": 1}, "anguished": {"_count": 1}, "alarmed": {"_count": 1}, "apprehensive": {"_count": 1}, "dangerous": {"_count": 1}, "closely": {"_count": 3}, "offended": {"_count": 1}, "handsome": {"_count": 1}}, "convinced": {"_count": 1, "but": {"_count": 1}}, "skyward": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 4, "at": {"_count": 1}, "back": {"_count": 2}, "and": {"_count": 1}}, "younger": {"_count": 3, "he": {"_count": 1}, "much": {"_count": 1}, "they": {"_count": 1}}, "carefully": {"_count": 4, "at": {"_count": 1}, "up": {"_count": 1}, "down": {"_count": 1}, "around": {"_count": 1}}, "horrified": {"_count": 7, "": {"_count": 4}, "before": {"_count": 1}, "yet": {"_count": 1}, "transfixed": {"_count": 1}}, "strangely": {"_count": 8, "small": {"_count": 1}, "alive": {"_count": 1}, "familiar": {"_count": 2}, "unfocused": {"_count": 1}, "impressive": {"_count": 1}, "misshapen": {"_count": 1}, "blank": {"_count": 1}}, "burned": {"_count": 1, "raw": {"_count": 1}}, "ready": {"_count": 3, "to": {"_count": 3}}, "too": {"_count": 4, "big": {"_count": 1}, "scared": {"_count": 1}, "fierce": {"_count": 1}, "and": {"_count": 1}}, "nothing": {"_count": 2, "like": {"_count": 1}, "short": {"_count": 1}}, "worried": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "now": {"_count": 1}}, "wildly": {"_count": 10, "around": {"_count": 8}, "up": {"_count": 1}, "from": {"_count": 1}}, "less": {"_count": 8, "thin": {"_count": 1}, "like": {"_count": 3}, "ugly": {"_count": 1}, "than": {"_count": 2}, "peculiar": {"_count": 1}}, "from": {"_count": 21, "their": {"_count": 1}, "Dumbledore": {"_count": 1}, "Bagman": {"_count": 1}, "Cedric": {"_count": 1}, "Madame": {"_count": 1}, "Aunt": {"_count": 1}, "Mrs": {"_count": 1}, "Rons": {"_count": 1}, "Harry": {"_count": 3}, "one": {"_count": 3}, "her": {"_count": 3}, "Hermione": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Ron": {"_count": 1}, "James": {"_count": 1}}, "imploringly": {"_count": 1, "at": {"_count": 1}}, "bemusedly": {"_count": 1, "at": {"_count": 1}}, "truly": {"_count": 1, "awake": {"_count": 1}}, "outraged": {"_count": 5, "": {"_count": 5}}, "sideways": {"_count": 12, "at": {"_count": 12}}, "just": {"_count": 10, "as": {"_count": 8}, "like": {"_count": 2}}, "madder": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "bright": {"_count": 1, "and": {"_count": 1}}, "irritable": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "amazed": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "dimly": {"_count": 1, "at": {"_count": 1}}, "faintly": {"_count": 2, "annoyed": {"_count": 1}, "embarrassed": {"_count": 1}}, "fearfully": {"_count": 1, "at": {"_count": 1}}, "balefully": {"_count": 1, "back": {"_count": 1}}, "feverishly": {"_count": 1, "around": {"_count": 1}}, "increasingly": {"_count": 1, "sour": {"_count": 1}}, "magnificent": {"_count": 1, "": {"_count": 1}}, "incredulously": {"_count": 2, "at": {"_count": 1}, "from": {"_count": 1}}, "affronted": {"_count": 2, "": {"_count": 2}}, "under": {"_count": 1, "the": {"_count": 1}}, "nervous": {"_count": 9, "": {"_count": 5}, "as": {"_count": 1}, "and": {"_count": 2}, "even": {"_count": 1}}, "aghast": {"_count": 3, "at": {"_count": 1}, "": {"_count": 2}}, "everywhere": {"_count": 1, "he": {"_count": 1}}, "exactly": {"_count": 3, "like": {"_count": 1}, "as": {"_count": 2}}, "tense": {"_count": 3, "and": {"_count": 2}, "watching": {"_count": 1}}, "it": {"_count": 3, "straight": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}}, "weakchinned": {"_count": 1, "and": {"_count": 1}}, "dreamily": {"_count": 1, "at": {"_count": 1}}, "monstrous": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 8, "old": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}, "be": {"_count": 1}, "Hermione": {"_count": 1}, "see": {"_count": 1}}, "bad": {"_count": 2, "all": {"_count": 1}, "tempered": {"_count": 1}}, "forward": {"_count": 3, "to": {"_count": 3}}, "uncertainly": {"_count": 2, "at": {"_count": 2}}, "furiously": {"_count": 2, "from": {"_count": 1}, "around": {"_count": 1}}, "resentful": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 12, "something": {"_count": 1}, "a": {"_count": 9}, "by": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 6, "happier": {"_count": 1}, "part": {"_count": 1}, "youngest": {"_count": 1}, "most": {"_count": 2}, "more": {"_count": 1}}, "cold": {"_count": 3, "and": {"_count": 3}}, "suspiciously": {"_count": 4, "like": {"_count": 2}, "at": {"_count": 2}}, "oddly": {"_count": 5, "familiar": {"_count": 1}, "blank": {"_count": 1}, "disembodied": {"_count": 1}, "groggy": {"_count": 1}, "lonely": {"_count": 1}}, "especially": {"_count": 1, "woebegone": {"_count": 1}}, "grumpy": {"_count": 1, "and": {"_count": 1}}, "ill": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "thunderstruck": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "all": {"_count": 6, "around": {"_count": 4}, "right": {"_count": 1}, "funny": {"_count": 1}}, "alert": {"_count": 2, "and": {"_count": 1}, "excited": {"_count": 1}}, "scared": {"_count": 4, "": {"_count": 2}, "and": {"_count": 2}}, "particularly": {"_count": 2, "shabby": {"_count": 1}, "hard": {"_count": 1}}, "startled": {"_count": 5, "at": {"_count": 1}, "but": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}}, "puzzled": {"_count": 5, "but": {"_count": 1}, "he": {"_count": 2}, "": {"_count": 2}}, "almost": {"_count": 8, "black": {"_count": 1}, "as": {"_count": 1}, "tanned": {"_count": 1}, "ordinary": {"_count": 1}, "exactly": {"_count": 2}, "affronted": {"_count": 1}, "appraisingly": {"_count": 1}}, "away": {"_count": 25, "": {"_count": 5}, "from": {"_count": 10}, "staring": {"_count": 1}, "at": {"_count": 2}, "quickly": {"_count": 1}, "toward": {"_count": 1}, "staggering": {"_count": 1}, "pointedly": {"_count": 1}, "apparently": {"_count": 1}, "trying": {"_count": 1}, "his": {"_count": 1}}, "excited": {"_count": 2, "": {"_count": 2}}, "slightly": {"_count": 28, "confused": {"_count": 2}, "abashed": {"_count": 1}, "suspicious": {"_count": 1}, "embarrassed": {"_count": 1}, "disappointed": {"_count": 1}, "mad": {"_count": 2}, "alarming": {"_count": 1}, "eerie": {"_count": 1}, "green": {"_count": 1}, "discomposed": {"_count": 1}, "perturbed": {"_count": 1}, "happier": {"_count": 1}, "surprised": {"_count": 2}, "nauseous": {"_count": 1}, "paler": {"_count": 1}, "sheepish": {"_count": 1}, "mollified": {"_count": 1}, "amused": {"_count": 1}, "taken": {"_count": 1}, "disconcerted": {"_count": 1}, "disgruntled": {"_count": 1}, "more": {"_count": 1}, "dazed": {"_count": 1}, "sick": {"_count": 1}, "ashamed": {"_count": 1}}, "healthier": {"_count": 1, "than": {"_count": 1}}, "thoughtful": {"_count": 1, "": {"_count": 1}}, "sympathetic": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "eagerly": {"_count": 5, "around": {"_count": 2}, "inside": {"_count": 1}, "at": {"_count": 2}}, "curiously": {"_count": 4, "at": {"_count": 3}, "around": {"_count": 1}}, "cheerful": {"_count": 2, "and": {"_count": 2}}, "angry": {"_count": 8, "": {"_count": 4}, "again": {"_count": 1}, "but": {"_count": 1}, "with": {"_count": 1}, "mutinous": {"_count": 1}}, "twice": {"_count": 1, "at": {"_count": 1}}, "highly": {"_count": 4, "affronted": {"_count": 2}, "delighted": {"_count": 2}}, "paler": {"_count": 3, "than": {"_count": 2}, "his": {"_count": 1}}, "ahead": {"_count": 3, "he": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}}, "both": {"_count": 7, "shaken": {"_count": 1}, "worried": {"_count": 1}, "confused": {"_count": 1}, "frightened": {"_count": 1}, "scared": {"_count": 1}, "sulky": {"_count": 1}, "defiant": {"_count": 1}}, "deeply": {"_count": 4, "impressed": {"_count": 1}, "relieved": {"_count": 1}, "uncomfortable": {"_count": 1}, "troubled": {"_count": 1}}, "positively": {"_count": 7, "terrified": {"_count": 2}, "delighted": {"_count": 1}, "faint": {"_count": 1}, "hawklike": {"_count": 1}, "alarmed": {"_count": 1}, "appalled": {"_count": 1}}, "thoroughly": {"_count": 7, "startled": {"_count": 1}, "shocked": {"_count": 1}, "put": {"_count": 1}, "disconcerted": {"_count": 1}, "confused": {"_count": 2}, "downcast": {"_count": 1}}, "rather": {"_count": 30, "flattered": {"_count": 1}, "excited": {"_count": 1}, "pleased": {"_count": 2}, "weak": {"_count": 1}, "anxious": {"_count": 1}, "startled": {"_count": 2}, "taken": {"_count": 2}, "impressed": {"_count": 1}, "scared": {"_count": 1}, "stupid": {"_count": 1}, "forbidding": {"_count": 1}, "pale": {"_count": 1}, "nervous": {"_count": 1}, "disapproving": {"_count": 1}, "like": {"_count": 4}, "amused": {"_count": 1}, "as": {"_count": 1}, "bored": {"_count": 1}, "watery": {"_count": 1}, "annoyed": {"_count": 1}, "forlorn": {"_count": 1}, "unhappy": {"_count": 1}, "pink": {"_count": 1}, "bettergroomed": {"_count": 1}}, "dreadful": {"_count": 1, "": {"_count": 1}}, "bewildered": {"_count": 4, "": {"_count": 3}, "but": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "sober": {"_count": 1, "and": {"_count": 1}}, "directly": {"_count": 5, "at": {"_count": 3}, "into": {"_count": 2}}, "miserably": {"_count": 1, "around": {"_count": 1}}, "grubby": {"_count": 1, "almost": {"_count": 1}}, "staggered": {"_count": 1, "": {"_count": 1}}, "desperately": {"_count": 3, "around": {"_count": 2}, "for": {"_count": 1}}, "petrified": {"_count": 3, "and": {"_count": 1}, "nudged": {"_count": 1}, "": {"_count": 1}}, "nervously": {"_count": 5, "over": {"_count": 3}, "around": {"_count": 1}, "at": {"_count": 1}}, "solid": {"_count": 1, "": {"_count": 1}}, "calm": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 7, "to": {"_count": 1}, "the": {"_count": 5}, "at": {"_count": 1}}, "mildly": {"_count": 3, "impressed": {"_count": 1}, "pleased": {"_count": 1}, "surprised": {"_count": 1}}, "closely": {"_count": 1, "at": {"_count": 1}}, "normal": {"_count": 1, "but": {"_count": 1}}, "hopelessly": {"_count": 1, "around": {"_count": 1}}, "livid": {"_count": 4, "": {"_count": 4}}, "vaguely": {"_count": 2, "panicky": {"_count": 1}, "familiar": {"_count": 1}}, "coldly": {"_count": 3, "up": {"_count": 1}, "at": {"_count": 1}, "surprised": {"_count": 1}}, "downright": {"_count": 1, "alarmed": {"_count": 1}}, "somehow": {"_count": 2, "diminished": {"_count": 1}, "like": {"_count": 1}}, "much": {"_count": 8, "as": {"_count": 1}, "younger": {"_count": 1}, "older": {"_count": 2}, "the": {"_count": 1}, "taller": {"_count": 1}, "brighter": {"_count": 1}, "too": {"_count": 1}}, "exhausted": {"_count": 3, "His": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "utterly": {"_count": 7, "unsurprised": {"_count": 1}, "mad": {"_count": 1}, "perplexed": {"_count": 2}, "woebegone": {"_count": 1}, "terrified": {"_count": 1}, "bewildered": {"_count": 1}}, "on": {"_count": 3, "helplessly": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "smooth": {"_count": 1, "as": {"_count": 1}}, "unsupported": {"_count": 1, "and": {"_count": 1}}, "exceptionally": {"_count": 2, "embarrassed": {"_count": 1}, "frail": {"_count": 1}}, "broken": {"_count": 1, "there": {"_count": 1}}, "surlier": {"_count": 1, "than": {"_count": 1}}, "buoyant": {"_count": 1, "and": {"_count": 1}}, "unhurt": {"_count": 1, "though": {"_count": 1}}, "if": {"_count": 3, "shed": {"_count": 1}, "anything": {"_count": 2}}, "most": {"_count": 3, "upset": {"_count": 1}, "displeased": {"_count": 1}, "disappointed": {"_count": 1}}, "dumbstruck": {"_count": 1, "": {"_count": 1}}, "completely": {"_count": 4, "exhausted": {"_count": 1}, "astonished": {"_count": 1}, "insane": {"_count": 1}, "deserted": {"_count": 1}}, "its": {"_count": 1, "usual": {"_count": 1}}, "stumped": {"_count": 1, "at": {"_count": 1}}, "stonily": {"_count": 1, "back": {"_count": 1}}, "malevolently": {"_count": 1, "up": {"_count": 1}}, "surprised": {"_count": 4, "at": {"_count": 2}, "to": {"_count": 1}, "and": {"_count": 1}}, "uneasily": {"_count": 1, "around": {"_count": 1}}, "pleadingly": {"_count": 1, "at": {"_count": 1}}, "strange": {"_count": 2, "in": {"_count": 1}, "full": {"_count": 1}}, "nonplussed": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 2, "annoyed": {"_count": 1}, "resentful": {"_count": 1}}, "death": {"_count": 1, "in": {"_count": 1}}, "darker": {"_count": 1, "": {"_count": 1}}, "different": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "doubtfully": {"_count": 2, "at": {"_count": 2}}, "dispiritedly": {"_count": 1, "at": {"_count": 1}}, "brandnew": {"_count": 1, "Winky": {"_count": 1}}, "delighted": {"_count": 2, "they": {"_count": 1}, "with": {"_count": 1}}, "severely": {"_count": 2, "over": {"_count": 1}, "shaken": {"_count": 1}}, "astonished": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "depressingly": {"_count": 1, "frayed": {"_count": 1}}, "him": {"_count": 3, "up": {"_count": 2}, "full": {"_count": 1}}, "gleeful": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "hardly": {"_count": 1, "older": {"_count": 1}}, "yearningly": {"_count": 1, "up": {"_count": 1}}, "deeper": {"_count": 1, "and": {"_count": 1}}, "after": {"_count": 5, "everything": {"_count": 1}, "myself": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 2}}, "green": {"_count": 1, "and": {"_count": 1}}, "no": {"_count": 3, "older": {"_count": 1}, "less": {"_count": 1}, "more": {"_count": 1}}, "interested": {"_count": 1, "": {"_count": 1}}, "pretty": {"_count": 1, "sickly": {"_count": 1}}, "really": {"_count": 2, "worried": {"_count": 1}, "miserable": {"_count": 1}}, "miserable": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "sadly": {"_count": 2, "at": {"_count": 2}}, "dazed": {"_count": 1, "": {"_count": 1}}, "unnerved": {"_count": 2, "": {"_count": 2}}, "fit": {"_count": 1, "and": {"_count": 1}}, "toward": {"_count": 4, "the": {"_count": 2}, "Fudge": {"_count": 1}, "him": {"_count": 1}}, "gaunter": {"_count": 1, "and": {"_count": 1}}, "older": {"_count": 1, "and": {"_count": 1}}, "stern": {"_count": 2, "theyre": {"_count": 1}, "and": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "red": {"_count": 1, "": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "white": {"_count": 3, "appalled": {"_count": 1}, "heads": {"_count": 1}, "and": {"_count": 1}}, "empty": {"_count": 1, "beneath": {"_count": 1}}, "interrogatively": {"_count": 1, "at": {"_count": 1}}, "angrier": {"_count": 2, "than": {"_count": 2}}, "resolute": {"_count": 1, "": {"_count": 1}}, "perfectly": {"_count": 1, "calm": {"_count": 1}}, "wary": {"_count": 2, "almost": {"_count": 1}, "": {"_count": 1}}, "slowly": {"_count": 1, "around": {"_count": 1}}, "tired": {"_count": 1, "and": {"_count": 1}}, "cautiously": {"_count": 1, "over": {"_count": 1}}, "round": {"_count": 3, "at": {"_count": 2}, "Ron": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "immensely": {"_count": 3, "old": {"_count": 1}, "relieved": {"_count": 1}, "guilty": {"_count": 1}}, "surreptitiously": {"_count": 1, "through": {"_count": 1}}, "forbidding": {"_count": 1, "": {"_count": 1}}, "annoyed": {"_count": 4, "others": {"_count": 1}, "": {"_count": 1}, "though": {"_count": 1}, "but": {"_count": 1}}, "convincing": {"_count": 1, "": {"_count": 1}}, "eerie": {"_count": 2, "and": {"_count": 1}, "floating": {"_count": 1}}, "seriously": {"_count": 1, "alarmed": {"_count": 1}}, "Harry": {"_count": 2, "thought": {"_count": 1}, "saw": {"_count": 1}}, "revolted": {"_count": 2, "": {"_count": 1}, "nauseated": {"_count": 1}}, "alertly": {"_count": 1, "at": {"_count": 1}}, "happy": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "equally": {"_count": 1, "frightened": {"_count": 1}}, "sternly": {"_count": 1, "back": {"_count": 1}}, "blurred": {"_count": 1, "at": {"_count": 1}}, "halfscared": {"_count": 1, "halffascinated": {"_count": 1}}, "totally": {"_count": 1, "unrecognizable": {"_count": 1}}, "disgusted": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "upset": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "helplessly": {"_count": 1, "at": {"_count": 1}}, "heartened": {"_count": 1, "well": {"_count": 1}}, "fixedly": {"_count": 2, "even": {"_count": 1}, "at": {"_count": 1}}, "alarmed": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "as": {"_count": 1}}, "sharply": {"_count": 1, "at": {"_count": 1}}, "uneasy": {"_count": 1, "": {"_count": 1}}, "blearily": {"_count": 1, "into": {"_count": 1}}, "neither": {"_count": 1, "angry": {"_count": 1}}, "far": {"_count": 1, "too": {"_count": 1}}, "questioningly": {"_count": 1, "at": {"_count": 1}}, "Malfoy": {"_count": 1, "was": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "horrorstruck": {"_count": 1, "": {"_count": 1}}, "disgruntled": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "unlike": {"_count": 1}}, "frightened": {"_count": 6, "": {"_count": 2}, "or": {"_count": 1}, "Oh": {"_count": 1}, "that": {"_count": 2}}, "mutinous": {"_count": 2, "": {"_count": 2}}, "better": {"_count": 1, "that": {"_count": 1}}, "reproachful": {"_count": 1, "": {"_count": 1}}, "pleasantly": {"_count": 1, "festive": {"_count": 1}}, "mortified": {"_count": 1, "": {"_count": 1}}, "agitated": {"_count": 1, "": {"_count": 1}}, "unkempt": {"_count": 1, "and": {"_count": 1}}, "darkly": {"_count": 1, "and": {"_count": 1}}, "swinging": {"_count": 1, "at": {"_count": 1}}, "disparagingly": {"_count": 1, "at": {"_count": 1}}, "Dumbledore": {"_count": 1, "seemed": {"_count": 1}}, "scornfully": {"_count": 1, "over": {"_count": 1}}, "anxious": {"_count": 1, "he": {"_count": 1}}, "anxiously": {"_count": 1, "behind": {"_count": 1}}, "apprehensive": {"_count": 2, "others": {"_count": 1}, "again": {"_count": 1}}, "absolutely": {"_count": 1, "delighted": {"_count": 1}}, "crestfallen": {"_count": 1, "": {"_count": 1}}, "interestingly": {"_count": 1, "windswept": {"_count": 1}}, "happier": {"_count": 1, "than": {"_count": 1}}, "luminous": {"_count": 1, "illuminated": {"_count": 1}}, "left": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "transported": {"_count": 1, "alive": {"_count": 1}}, "sad": {"_count": 1, "and": {"_count": 1}}, "stricken": {"_count": 3, "at": {"_count": 1}, "": {"_count": 2}}, "old": {"_count": 1, "it": {"_count": 1}}, "mournfully": {"_count": 1, "at": {"_count": 1}}, "inquiringly": {"_count": 4, "at": {"_count": 3}, "toward": {"_count": 1}}, "unhappy": {"_count": 2, "though": {"_count": 1}, "": {"_count": 1}}, "satisfied": {"_count": 1, "for": {"_count": 1}}, "ghostly": {"_count": 2, "beneath": {"_count": 1}, "as": {"_count": 1}}, "expectant": {"_count": 1, "yet": {"_count": 1}}, "drawn": {"_count": 1, "even": {"_count": 1}}, "troubled": {"_count": 2, "": {"_count": 2}}, "reproachfully": {"_count": 1, "at": {"_count": 1}}, "again": {"_count": 1, "at": {"_count": 1}}, "mockingly": {"_count": 1, "all": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "saw": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "contemptuous": {"_count": 1, "": {"_count": 1}}, "pleased": {"_count": 1, "": {"_count": 1}}, "comical": {"_count": 1, "but": {"_count": 1}}, "scandalized": {"_count": 2, "": {"_count": 2}}, "weedy": {"_count": 1, "but": {"_count": 1}}, "hopefully": {"_count": 3, "at": {"_count": 1}, "toward": {"_count": 2}}, "reasonably": {"_count": 1, "wellcared": {"_count": 1}}, "fevered": {"_count": 1, "": {"_count": 1}}, "flustered": {"_count": 1, "and": {"_count": 1}}, "sheepish": {"_count": 1, "but": {"_count": 1}}, "Lupin": {"_count": 1, "straight": {"_count": 1}}, "big": {"_count": 1, "and": {"_count": 1}}, "tough": {"_count": 1, "and": {"_count": 1}}, "stupid": {"_count": 1, "if": {"_count": 1}}, "momentarily": {"_count": 1, "thrilled": {"_count": 1}}, "thoughtfully": {"_count": 1, "at": {"_count": 1}}, "tremendously": {"_count": 1, "hopeful": {"_count": 1}}, "sulky": {"_count": 1, "and": {"_count": 1}}, "funny": {"_count": 1, "said": {"_count": 1}}, "terrible": {"_count": 2, "and": {"_count": 1}, "thinner": {"_count": 1}}, "indignant": {"_count": 1, "": {"_count": 1}}, "unusually": {"_count": 1, "grave": {"_count": 1}}, "fractionally": {"_count": 1, "more": {"_count": 1}}, "steadily": {"_count": 1, "into": {"_count": 1}}, "amused": {"_count": 1, "": {"_count": 1}}, "simultaneously": {"_count": 1, "cross": {"_count": 1}}, "uncomfortably": {"_count": 1, "tight": {"_count": 1}}, "grotesque": {"_count": 1, "": {"_count": 1}}, "disoriented": {"_count": 1, "twisting": {"_count": 1}}, "devastated": {"_count": 1, "": {"_count": 1}}, "calmly": {"_count": 1, "back": {"_count": 1}}, "impressed": {"_count": 1, "his": {"_count": 1}}, "downward": {"_count": 1, "startled": {"_count": 1}}, "reassured": {"_count": 1, "as": {"_count": 1}}, "appalled": {"_count": 1, "but": {"_count": 1}}, "confused": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "his": {"_count": 2, "confusion": {"_count": 1}, "fill": {"_count": 1}}, "goodnatured": {"_count": 1, "": {"_count": 1}}, "bemused": {"_count": 1, "by": {"_count": 1}}, "pleasurably": {"_count": 1, "flustered": {"_count": 1}}, "mollified": {"_count": 1, "": {"_count": 1}}, "concerned": {"_count": 1, "and": {"_count": 1}}, "stiff": {"_count": 1, "and": {"_count": 1}}, "wretched": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "odd": {"_count": 1, "to": {"_count": 1}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "smug": {"_count": 1, "and": {"_count": 1}}, "disturbed": {"_count": 1, "but": {"_count": 1}}, "several": {"_count": 2, "years": {"_count": 1}, "days": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "perfect": {"_count": 1, "pristine": {"_count": 1}}, "mean": {"_count": 1, "unlike": {"_count": 1}}, "anguished": {"_count": 2, "": {"_count": 2}}, "vague": {"_count": 1, "": {"_count": 1}}, "grateful": {"_count": 1, "but": {"_count": 1}}, "exasperated": {"_count": 1, "The": {"_count": 1}}, "ghastly": {"_count": 1, "a": {"_count": 1}}, "beside": {"_count": 1, "himself": {"_count": 1}}, "frightening": {"_count": 1, "mad": {"_count": 1}}, "expectantly": {"_count": 1, "at": {"_count": 1}}, "slantwise": {"_count": 1, "at": {"_count": 1}}, "appealingly": {"_count": 1, "at": {"_count": 1}}, "flabbergasted": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 1, "younger": {"_count": 1}}, "black": {"_count": 1, "when": {"_count": 1}}, "offended": {"_count": 1, "he": {"_count": 1}}, "unconvinced": {"_count": 1, "You": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "haughty": {"_count": 1, "and": {"_count": 1}}, "Yaxley": {"_count": 1, "close": {"_count": 1}}, "deliberate": {"_count": 1, "too": {"_count": 1}}, "weary": {"_count": 1, "": {"_count": 1}}, "defeated": {"_count": 1, "and": {"_count": 1}}, "fleetingly": {"_count": 1, "like": {"_count": 1}}, "ancient": {"_count": 1, "again": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "solemn": {"_count": 1, "": {"_count": 1}}}, "whisperers": {"_count": 3, "as": {"_count": 1, "if": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "voices": {"_count": 1, "": {"_count": 1}}}, "better": {"_count": 511, "of": {"_count": 11, "it": {"_count": 4}, "You": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 2}, "what": {"_count": 1}, "their": {"_count": 1}}, "off": {"_count": 14, "hell": {"_count": 1}, "without": {"_count": 3}, "": {"_count": 1}, "she": {"_count": 1}, "inside": {"_count": 1}, "there": {"_count": 1}, "than": {"_count": 1}, "following": {"_count": 1}, "in": {"_count": 2}, "with": {"_count": 1}, "a": {"_count": 1}}, "get": {"_count": 51, "this": {"_count": 1}, "back": {"_count": 8}, "off": {"_count": 2}, "out": {"_count": 5}, "up": {"_count": 3}, "along": {"_count": 1}, "him": {"_count": 1}, "to": {"_count": 1}, "lost": {"_count": 1}, "going": {"_count": 12}, "moving": {"_count": 1}, "a": {"_count": 2}, "them": {"_count": 1}, "ready": {"_count": 1}, "some": {"_count": 1}, "downstairs": {"_count": 1}, "our": {"_count": 2}, "these": {"_count": 1}, "those": {"_count": 1}, "on": {"_count": 3}, "straight": {"_count": 1}, "your": {"_count": 1}}, "just": {"_count": 2, "to": {"_count": 2}}, "said": {"_count": 10, "Hagrid": {"_count": 1}, "Moody": {"_count": 1}, "Tonks": {"_count": 1}, "Harry": {"_count": 4}, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}, "Voldemort": {"_count": 1}}, "than": {"_count": 69, "to": {"_count": 10}, "what": {"_count": 1}, "others": {"_count": 1}, "having": {"_count": 1}, "anyone": {"_count": 3}, "Charlie": {"_count": 1}, "ours": {"_count": 1}, "winning": {"_count": 1}, "Lockhart": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 4}, "everyone": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 2}, "his": {"_count": 1}, "hed": {"_count": 1}, "you": {"_count": 6}, "a": {"_count": 2}, "Ron": {"_count": 3}, "the": {"_count": 5}, "her": {"_count": 1}, "D": {"_count": 1}, "I": {"_count": 4}, "Malfoys": {"_count": 1}, "usual": {"_count": 1}, "eleven": {"_count": 1}, "your": {"_count": 1}, "me": {"_count": 1}, "cutting": {"_count": 1}, "encouragement": {"_count": 1}, "\u2018three": {"_count": 1}, "ropes": {"_count": 1}, "waiting": {"_count": 1}, "Ollivander": {"_count": 1}, "firewhisky": {"_count": 1}, "other": {"_count": 1}, "we": {"_count": 1}, "Well": {"_count": 1}, "Fudge": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "go": {"_count": 29, "and": {"_count": 12}, "": {"_count": 4}, "up": {"_count": 1}, "look": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 1}, "outside": {"_count": 1}, "quick": {"_count": 1}, "upstairs": {"_count": 1}, "on": {"_count": 1}, "first": {"_count": 1}, "Ill": {"_count": 1}, "I": {"_count": 1}, "Dumbledore": {"_count": 1}, "after": {"_count": 1}}, "change": {"_count": 3, "you": {"_count": 1}, "one": {"_count": 1}, "said": {"_count": 1}}, "hurry": {"_count": 9, "up": {"_count": 5}, "or": {"_count": 1}, "you": {"_count": 1}, "Im": {"_count": 1}, "said": {"_count": 1}}, "be": {"_count": 12, "GRYFFINDOR": {"_count": 1}, "Gryffindor": {"_count": 1}, "off": {"_count": 4}, "hurrying": {"_count": 1}, "you": {"_count": 1}, "okay": {"_count": 1}, "quick": {"_count": 1}, "certain": {"_count": 1}, "in": {"_count": 1}}, "team": {"_count": 1, "than": {"_count": 1}}, "dodge": {"_count": 1, "it": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "not": {"_count": 9, "see": {"_count": 1}, "ask": {"_count": 1}, "all": {"_count": 1}, "said": {"_count": 1}, "push": {"_count": 1}, "come": {"_count": 1}, "give": {"_count": 1}, "be": {"_count": 1}, "dawdle": {"_count": 1}}, "Id": {"_count": 1, "say": {"_count": 1}}, "hell": {"_count": 1, "think": {"_count": 1}}, "": {"_count": 39, ".": {"_count": 33}, "!": {"_count": 3}, "?": {"_count": 3}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "do": {"_count": 6, "that": {"_count": 2}, "the": {"_count": 1}, "Madam": {"_count": 1}, "it": {"_count": 2}}, "stay": {"_count": 3, "outside": {"_count": 1}, "here": {"_count": 1}, "inside": {"_count": 1}}, "put": {"_count": 5, "the": {"_count": 1}, "it": {"_count": 2}, "that": {"_count": 2}}, "in": {"_count": 2, "Majorca": {"_count": 1}, "fact": {"_count": 1}}, "to": {"_count": 19, "um": {"_count": 1}, "do": {"_count": 1}, "look": {"_count": 2}, "hear": {"_count": 1}, "But": {"_count": 1}, "keep": {"_count": 1}, "watch": {"_count": 1}, "abandon": {"_count": 3}, "hit": {"_count": 1}, "ask": {"_count": 1}, "see": {"_count": 1}, "understand": {"_count": 1}, "simply": {"_count": 1}, "observe": {"_count": 1}, "take": {"_count": 1}, "leave": {"_count": 1}}, "if": {"_count": 6, "you": {"_count": 2}, "he": {"_count": 2}, "we": {"_count": 1}, "she": {"_count": 1}}, "shot": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 6, "Herbology": {"_count": 1}, "Quidditch": {"_count": 1}, "anything": {"_count": 1}, "controlling": {"_count": 1}, "Twilfitt": {"_count": 1}, "identifying": {"_count": 1}}, "look": {"_count": 14, "": {"_count": 7}, "at": {"_count": 6}, "and": {"_count": 1}}, "hope": {"_count": 2, "Creevey": {"_count": 1}, "it": {"_count": 1}}, "brooms": {"_count": 1, "than": {"_count": 1}}, "people": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "spirits": {"_count": 1, "than": {"_count": 1}}, "snarled": {"_count": 1, "Ron": {"_count": 1}}, "teach": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 4, "Fred": {"_count": 1}, "Harry": {"_count": 1}, "way": {"_count": 2}}, "present": {"_count": 1, "than": {"_count": 1}}, "or": {"_count": 1, "at": {"_count": 1}}, "come": {"_count": 5, "with": {"_count": 1}, "too": {"_count": 1}, "down": {"_count": 1}, "into": {"_count": 1}, "up": {"_count": 1}}, "sooner": {"_count": 1, "than": {"_count": 1}}, "start": {"_count": 2, "now": {"_count": 1}, "without": {"_count": 1}}, "skip": {"_count": 1, "dessert": {"_count": 1}}, "example": {"_count": 1, "for": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 3}}, "since": {"_count": 1, "the": {"_count": 1}}, "kick": {"_count": 1, "the": {"_count": 1}}, "reward": {"_count": 1, "would": {"_count": 1}}, "myself": {"_count": 1, "said": {"_count": 1}}, "about": {"_count": 5, "being": {"_count": 1}, "it": {"_count": 2}, "having": {"_count": 1}, "the": {"_count": 1}}, "soon": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}, "head": {"_count": 1, "back": {"_count": 1}}, "take": {"_count": 8, "that": {"_count": 1}, "this": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 2}, "over": {"_count": 1}, "off": {"_count": 1}}, "judgment": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "for": {"_count": 4, "him": {"_count": 1}, "them": {"_count": 1}, "mixing": {"_count": 1}, "me": {"_count": 1}}, "run": {"_count": 2, "for": {"_count": 2}}, "beat": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 1, "because": {"_count": 1}}, "rat": {"_count": 1, "than": {"_count": 1}}, "hold": {"_count": 1, "on": {"_count": 1}}, "summer": {"_count": 1, "than": {"_count": 1}}, "have": {"_count": 1, "the": {"_count": 1}}, "panted": {"_count": 1, "Mr": {"_count": 1}}, "flier": {"_count": 1, "": {"_count": 1}}, "spot": {"_count": 1, "": {"_count": 1}}, "indeed": {"_count": 1, "than": {"_count": 1}}, "ways": {"_count": 1, "of": {"_count": 1}}, "make": {"_count": 3, "a": {"_count": 1}, "you": {"_count": 2}}, "you": {"_count": 1, "than": {"_count": 1}}, "Harry": {"_count": 2, "thats": {"_count": 1}, "muttered": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "use": {"_count": 2, "a": {"_count": 1}, "of": {"_count": 1}}, "lately": {"_count": 1, "and": {"_count": 1}}, "Im": {"_count": 1, "impressed": {"_count": 1}}, "qualified": {"_count": 1, "candidates": {"_count": 1}}, "here": {"_count": 1, "he": {"_count": 1}}, "their": {"_count": 1, "powerful": {"_count": 1}}, "separate": {"_count": 1, "the": {"_count": 1}}, "watch": {"_count": 1, "out": {"_count": 1}}, "tell": {"_count": 2, "Percy": {"_count": 1}, "Professor": {"_count": 1}}, "the": {"_count": 2, "Reductor": {"_count": 1}, "longer": {"_count": 1}}, "directed": {"_count": 1, "toward": {"_count": 1}}, "victims": {"_count": 1, "than": {"_count": 1}}, "this": {"_count": 3, "time": {"_count": 1}, "year": {"_count": 1}, "evening": {"_count": 1}}, "protected": {"_count": 1, "than": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "Ive": {"_count": 1, "never": {"_count": 1}}, "welcome": {"_count": 1, "noted": {"_count": 1}}, "nasty": {"_count": 1, "old": {"_count": 1}}, "son": {"_count": 1, "as": {"_count": 1}}, "impression": {"_count": 1, "given": {"_count": 1}}, "mood": {"_count": 2, "than": {"_count": 1}, "on": {"_count": 1}}, "shorter": {"_count": 1, "wouldnt": {"_count": 1}}, "prepared": {"_count": 2, "weve": {"_count": 1}, "than": {"_count": 1}}, "while": {"_count": 1, "others": {"_count": 1}}, "and": {"_count": 2, "says": {"_count": 1}, "Harry": {"_count": 1}}, "teacher": {"_count": 1, "": {"_count": 1}}, "check": {"_count": 2, "with": {"_count": 1}, "whispered": {"_count": 1}}, "I": {"_count": 2, "can": {"_count": 1}, "yeah": {"_count": 1}}, "now": {"_count": 3, "that": {"_count": 1}, "": {"_count": 2}}, "it": {"_count": 2, "was": {"_count": 1}, "would": {"_count": 1}}, "really": {"_count": 1, "I": {"_count": 1}}, "employed": {"_count": 1, "doing": {"_count": 1}}, "expelled": {"_count": 1, "and": {"_count": 1}}, "leave": {"_count": 1, "it": {"_count": 1}}, "listen": {"_count": 1, "closely": {"_count": 1}}, "give": {"_count": 2, "her": {"_count": 1}, "it": {"_count": 1}}, "things": {"_count": 4, "to": {"_count": 2}, "": {"_count": 2}}, "knock": {"_count": 1, "": {"_count": 1}}, "Oh": {"_count": 1, "but": {"_count": 1}}, "show": {"_count": 1, "than": {"_count": 1}}, "explanation": {"_count": 1, "of": {"_count": 1}}, "could": {"_count": 1, "they": {"_count": 1}}, "progress": {"_count": 1, "if": {"_count": 1}}, "without": {"_count": 2, "Fred": {"_count": 1}, "you": {"_count": 1}}, "hes": {"_count": 1, "not": {"_count": 1}}, "loads": {"_count": 1, "better": {"_count": 1}}, "settlin": {"_count": 1, "down": {"_count": 1}}, "by": {"_count": 1, "telling": {"_count": 1}}, "control": {"_count": 1, "of": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "aim": {"_count": 1, "": {"_count": 1}}, "behaved": {"_count": 1, "now": {"_count": 1}}, "hasn": {"_count": 1, "it": {"_count": 1}}, "idea": {"_count": 1, "than": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "fill": {"_count": 1, "you": {"_count": 1}}, "manners": {"_count": 1, "to": {"_count": 1}}, "word": {"_count": 1, "lessons": {"_count": 1}}, "time": {"_count": 1, "in": {"_count": 1}}, "cronies": {"_count": 1, "than": {"_count": 1}}, "looking": {"_count": 1, "on": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "stop": {"_count": 1, "telling": {"_count": 1}}, "life": {"_count": 1, "said": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "pass": {"_count": 1, "my": {"_count": 1}}, "term": {"_count": 1, "although": {"_count": 1}}, "light": {"_count": 1, "obliterating": {"_count": 1}}, "birthdays": {"_count": 1, "": {"_count": 1}}, "permanent": {"_count": 1, "Keeper": {"_count": 1}}, "appreciated": {"_count": 1, "": {"_count": 1}}, "view": {"_count": 1, "and": {"_count": 1}}, "place": {"_count": 1, "to": {"_count": 1}}, "nature": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "Malfoy": {"_count": 1}}, "sendoff": {"_count": 1, "you": {"_count": 1}}, "then": {"_count": 1, "they": {"_count": 1}}, "goodbye": {"_count": 1, "to": {"_count": 1}}, "shut": {"_count": 1, "them": {"_count": 1}}, "like": {"_count": 2, "that": {"_count": 1}, "this": {"_count": 1}}, "cover": {"_count": 1, "they": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "return": {"_count": 1, "to": {"_count": 1}}, "marks": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "do": {"_count": 1}}, "man": {"_count": 2, "": {"_count": 2}}, "ultimately": {"_count": 1, "than": {"_count": 1}}, "much": {"_count": 1, "better": {"_count": 1}}, "against": {"_count": 1, "yours": {"_count": 1}}, "wizard": {"_count": 1, "a": {"_count": 1}}}, "dashed": {"_count": 53, "back": {"_count": 6, "across": {"_count": 1}, "toward": {"_count": 1}, "downstairs": {"_count": 1}, "up": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 1}}, "to": {"_count": 7, "the": {"_count": 5}, "his": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "about": {"_count": 1, "in": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 2}, "to": {"_count": 1}}, "up": {"_count": 4, "the": {"_count": 3}, "this": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 3}, "now": {"_count": 1}, "from": {"_count": 1}}, "inside": {"_count": 3, "": {"_count": 2}, "now": {"_count": 1}}, "over": {"_count": 4, "to": {"_count": 4}}, "through": {"_count": 2, "every": {"_count": 1}, "the": {"_count": 1}}, "away": {"_count": 2, "now": {"_count": 1}, "and": {"_count": 1}}, "off": {"_count": 3, "upstairs": {"_count": 1}, "answers": {"_count": 1}, "to": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "down": {"_count": 3, "the": {"_count": 2}, "into": {"_count": 1}}, "sideways": {"_count": 1, "through": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "then": {"_count": 1}}}, "hurried": {"_count": 249, "up": {"_count": 17, "to": {"_count": 4}, "the": {"_count": 9}, "it": {"_count": 1}, "alongside": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 24, "his": {"_count": 3}, "the": {"_count": 6}, "a": {"_count": 1}, "Harrys": {"_count": 1}, "follow": {"_count": 1}, "tighten": {"_count": 1}, "find": {"_count": 1}, "form": {"_count": 1}, "look": {"_count": 1}, "it": {"_count": 1}, "keep": {"_count": 1}, "close": {"_count": 1}, "help": {"_count": 1}, "pick": {"_count": 1}, "her": {"_count": 1}, "hug": {"_count": 1}, "catch": {"_count": 1}}, "out": {"_count": 20, "from": {"_count": 1}, "of": {"_count": 16}, "into": {"_count": 2}, "through": {"_count": 1}}, "down": {"_count": 8, "the": {"_count": 5}, "to": {"_count": 2}, "through": {"_count": 1}}, "over": {"_count": 17, "": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 12}, "Hermione": {"_count": 1}, "the": {"_count": 2}}, "off": {"_count": 37, "to": {"_count": 12}, "toward": {"_count": 5}, "after": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 3}, "down": {"_count": 1}, "through": {"_count": 1}, "again": {"_count": 3}, "downstairs": {"_count": 1}, "up": {"_count": 2}, "into": {"_count": 2}, "in": {"_count": 1}, "behind": {"_count": 1}, "without": {"_count": 1}, "Hagrids": {"_count": 1}, "along": {"_count": 1}}, "past": {"_count": 4, "him": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 5, "the": {"_count": 5}}, "into": {"_count": 10, "the": {"_count": 6}, "a": {"_count": 1}, "three": {"_count": 1}, "his": {"_count": 1}, "this": {"_count": 1}}, "after": {"_count": 8, "Dumbledore": {"_count": 1}, "Malfoy": {"_count": 1}, "him": {"_count": 2}, "her": {"_count": 3}, "Ron": {"_count": 1}}, "lunch": {"_count": 1, "he": {"_count": 1}}, "back": {"_count": 21, "to": {"_count": 10}, "toward": {"_count": 2}, "upstairs": {"_count": 1}, "into": {"_count": 2}, "down": {"_count": 3}, "around": {"_count": 1}, "through": {"_count": 1}, "inside": {"_count": 1}}, "nearer": {"_count": 1, "however": {"_count": 1}}, "toward": {"_count": 11, "the": {"_count": 6}, "her": {"_count": 2}, "them": {"_count": 2}, "one": {"_count": 1}}, "footsteps": {"_count": 6, "": {"_count": 1}, "growing": {"_count": 1}, "outside": {"_count": 1}, "and": {"_count": 1}, "coming": {"_count": 1}, "whispers": {"_count": 1}}, "upstairs": {"_count": 2, "out": {"_count": 1}, "toward": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}, "forward": {"_count": 13, "": {"_count": 3}, "with": {"_count": 1}, "to": {"_count": 2}, "into": {"_count": 2}, "looking": {"_count": 2}, "and": {"_count": 3}}, "along": {"_count": 5, "it": {"_count": 1}, "the": {"_count": 4}}, "away": {"_count": 10, "toward": {"_count": 1}, "after": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}, "from": {"_count": 1}}, "them": {"_count": 1, "off": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}, "steps": {"_count": 1, "a": {"_count": 1}}, "discussion": {"_count": 1, "with": {"_count": 1}}, "good": {"_count": 1, "byes": {"_count": 1}}, "apology": {"_count": 1, "to": {"_count": 1}}, "alongside": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "straight": {"_count": 2, "for": {"_count": 1}, "toward": {"_count": 1}}, "on": {"_count": 5, "holding": {"_count": 1}, "Well": {"_count": 1}, "Look": {"_count": 1}, "Harry": {"_count": 1}, "foot": {"_count": 1}}, "inside": {"_count": 3, "": {"_count": 1}, "gratefully": {"_count": 1}, "the": {"_count": 1}}, "Ron": {"_count": 1, "across": {"_count": 1}}, "breakfast": {"_count": 1, "they": {"_count": 1}}, "onward": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "together": {"_count": 1, "along": {"_count": 1}}}, "snapped": {"_count": 162, "at": {"_count": 11, "his": {"_count": 2}, "Hermione": {"_count": 2}, "Percy": {"_count": 1}, "Hedwig": {"_count": 1}, "Ron": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 1}}, "Mrs": {"_count": 6, "Dursley": {"_count": 1}, "Weasley": {"_count": 5}}, "through": {"_count": 1, "the": {"_count": 1}}, "Aunt": {"_count": 3, "Petunia": {"_count": 3}}, "his": {"_count": 5, "uncle": {"_count": 1}, "fingers": {"_count": 1}, "beak": {"_count": 2}, "sharp": {"_count": 1}}, "me": {"_count": 1, "wand": {"_count": 1}}, "its": {"_count": 2, "beak": {"_count": 1}, "jaws": {"_count": 1}}, "it": {"_count": 4, "in": {"_count": 1}, "shut": {"_count": 2}, "had": {"_count": 1}}, "Parvati": {"_count": 2, "Patil": {"_count": 1}, "and": {"_count": 1}}, "Percy": {"_count": 1, "hes": {"_count": 1}}, "Ron": {"_count": 11, "taking": {"_count": 1}, "": {"_count": 9}, "who": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "back": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "almost": {"_count": 1, "in": {"_count": 1}}, "Snape": {"_count": 2, "again": {"_count": 1}, "though": {"_count": 1}}, "the": {"_count": 5, "earmuffs": {"_count": 1}, "book": {"_count": 1}, "Prime": {"_count": 1}, "goblin": {"_count": 1}, "borrowed": {"_count": 1}}, "They": {"_count": 1, "went": {"_count": 1}}, "Harry": {"_count": 5, "": {"_count": 3}, "while": {"_count": 1}, "turning": {"_count": 1}}, "Professor": {"_count": 2, "Binns": {"_count": 1}, "McGonagall": {"_count": 1}}, "Malfoy": {"_count": 2, "": {"_count": 2}}, "Hermione": {"_count": 14, "": {"_count": 12}, "picking": {"_count": 1}, "but": {"_count": 1}}, "Riddle": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 2, "as": {"_count": 1}, "again": {"_count": 1}}, "shut": {"_count": 1, "on": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "finally": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 5, "he": {"_count": 2}, "Fleur": {"_count": 1}, "the": {"_count": 1}, "Peeves": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "Filch": {"_count": 1, "and": {"_count": 1}}, "open": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "up": {"_count": 1, "again": {"_count": 1}}, "now": {"_count": 1, "directing": {"_count": 1}}, "sounding": {"_count": 1, "much": {"_count": 1}}, "Karkaroff": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "Padma": {"_count": 1, "and": {"_count": 1}}, "off": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "crushing": {"_count": 1, "Siriuss": {"_count": 1}}, "in": {"_count": 3, "half": {"_count": 1}, "two": {"_count": 2}}, "before": {"_count": 1, "sweeping": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 3, "": {"_count": 1}, "who": {"_count": 1}, "now": {"_count": 1}}, "Seamus": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 1, "her": {"_count": 1}}, "waving": {"_count": 1, "her": {"_count": 1}}, "her": {"_count": 2, "bag": {"_count": 1}, "fingers": {"_count": 1}}, "Umbridge": {"_count": 2, "": {"_count": 1}, "glancing": {"_count": 1}}, "together": {"_count": 2, "and": {"_count": 2}}, "cleanly": {"_count": 1, "in": {"_count": 1}}, "Ginny": {"_count": 3, "": {"_count": 1}, "pausing": {"_count": 1}, "youll": {"_count": 1}}, "Ogden": {"_count": 1, "": {"_count": 1}}, "Gaunt": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "goggles": {"_count": 1}}, "stuffing": {"_count": 1, "it": {"_count": 1}}, "Scrimgeour": {"_count": 1, "": {"_count": 1}}, "Fleur": {"_count": 1, "but": {"_count": 1}}, "dropping": {"_count": 1, "all": {"_count": 1}}, "viciously": {"_count": 1, "at": {"_count": 1}}}, "secretary": {"_count": 5, "not": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "treasurer": {"_count": 1}}, "to": {"_count": 1, "take": {"_count": 1}}, "in": {"_count": 1, "your": {"_count": 1}}}, "not": {"_count": 5012, "to": {"_count": 375, "disturb": {"_count": 1}, "mention": {"_count": 31}, "notice": {"_count": 5}, "laugh": {"_count": 8}, "argue": {"_count": 2}, "think": {"_count": 13}, "panic": {"_count": 1}, "blink": {"_count": 4}, "listen": {"_count": 2}, "look": {"_count": 9}, "add": {"_count": 1}, "worry": {"_count": 9}, "move": {"_count": 3}, "be": {"_count": 28}, "take": {"_count": 7}, "go": {"_count": 9}, "meddle": {"_count": 1}, "interfere": {"_count": 1}, "set": {"_count": 2}, "us": {"_count": 1}, "in": {"_count": 2}, "use": {"_count": 3}, "exist": {"_count": 1}, "do": {"_count": 4}, "shout": {"_count": 4}, "make": {"_count": 6}, "feel": {"_count": 4}, "scream": {"_count": 1}, "wake": {"_count": 2}, "perform": {"_count": 1}, "walk": {"_count": 2}, "smile": {"_count": 2}, "pass": {"_count": 2}, "attack": {"_count": 1}, "spill": {"_count": 1}, "get": {"_count": 3}, "roam": {"_count": 1}, "answer": {"_count": 4}, "leave": {"_count": 8}, "imagine": {"_count": 3}, "call": {"_count": 2}, "say": {"_count": 8}, "punish": {"_count": 1}, "spend": {"_count": 1}, "tell": {"_count": 9}, "reply": {"_count": 1}, "help": {"_count": 1}, "entrust": {"_count": 1}, "": {"_count": 4}, "tread": {"_count": 1}, "interrupt": {"_count": 2}, "relax": {"_count": 1}, "run": {"_count": 2}, "defend": {"_count": 1}, "know": {"_count": 3}, "present": {"_count": 1}, "OUCH": {"_count": 1}, "disclose": {"_count": 1}, "care": {"_count": 2}, "said": {"_count": 1}, "waste": {"_count": 3}, "comment": {"_count": 1}, "come": {"_count": 3}, "giggle": {"_count": 1}, "watch": {"_count": 1}, "discuss": {"_count": 2}, "sink": {"_count": 2}, "annoy": {"_count": 2}, "have": {"_count": 17}, "restore": {"_count": 1}, "question": {"_count": 1}, "hang": {"_count": 1}, "touch": {"_count": 5}, "steal": {"_count": 1}, "report": {"_count": 1}, "ring": {"_count": 1}, "lead": {"_count": 1}, "expect": {"_count": 3}, "knock": {"_count": 1}, "him": {"_count": 1}, "give": {"_count": 3}, "lose": {"_count": 1}, "spread": {"_count": 1}, "proceed": {"_count": 1}, "point": {"_count": 1}, "throw": {"_count": 1}, "destroy": {"_count": 1}, "fall": {"_count": 1}, "talk": {"_count": 3}, "hear": {"_count": 5}, "vomit": {"_count": 1}, "accept": {"_count": 1}, "try": {"_count": 2}, "let": {"_count": 2}, "doze": {"_count": 1}, "teach": {"_count": 2}, "want": {"_count": 1}, "betray": {"_count": 2}, "bother": {"_count": 1}, "speak": {"_count": 3}, "share": {"_count": 1}, "show": {"_count": 2}, "turn": {"_count": 1}, "slip": {"_count": 2}, "disarrange": {"_count": 1}, "catch": {"_count": 1}, "repeat": {"_count": 2}, "trust": {"_count": 2}, "allow": {"_count": 1}, "publish": {"_count": 1}, "his": {"_count": 1}, "lie": {"_count": 1}, "Burke": {"_count": 1}, "anyone": {"_count": 1}, "Voldemort": {"_count": 1}, "No": {"_count": 1}, "collect": {"_count": 1}, "break": {"_count": 2}, "recognize": {"_count": 1}, "fling": {"_count": 1}, "sound": {"_count": 1}, "warn": {"_count": 1}, "step": {"_count": 1}, "follow": {"_count": 1}, "stop": {"_count": 2}, "keep": {"_count": 1}, "a": {"_count": 1}, "roll": {"_count": 1}, "moan": {"_count": 1}, "either": {"_count": 1}, "challenge": {"_count": 1}, "believe": {"_count": 1}, "search": {"_count": 1}, "see": {"_count": 1}, "hurt": {"_count": 1}, "stay": {"_count": 1}, "wear": {"_count": 1}, "criticize": {"_count": 1}, "obey": {"_count": 1}, "admit": {"_count": 1}, "seek": {"_count": 1}, "race": {"_count": 1}, "act": {"_count": 1}, "brush": {"_count": 1}, "blast": {"_count": 1}, "put": {"_count": 1}, "now": {"_count": 1}, "boast": {"_count": 1}, "kill": {"_count": 1}}, "only": {"_count": 38, "the": {"_count": 5}, "Dumbledore": {"_count": 1}, "himself": {"_count": 1}, "did": {"_count": 1}, "were": {"_count": 1}, "bearable": {"_count": 1}, "sounded": {"_count": 1}, "him": {"_count": 1}, "hie": {"_count": 1}, "to": {"_count": 4}, "seen": {"_count": 1}, "performed": {"_count": 1}, "weirdos": {"_count": 1}, "finished": {"_count": 1}, "appeared": {"_count": 1}, "get": {"_count": 1}, "about": {"_count": 1}, "comforting": {"_count": 1}, "let": {"_count": 1}, "with": {"_count": 2}, "in": {"_count": 1}, "coldshouldering": {"_count": 1}, "was": {"_count": 1}, "nowhere": {"_count": 1}, "possible": {"_count": 1}, "handpicked": {"_count": 1}, "won": {"_count": 1}, "set": {"_count": 1}, "Muggleborns": {"_count": 1}, "Voldemort": {"_count": 1}}, "until": {"_count": 16, "next": {"_count": 1}, "the": {"_count": 3}, "youve": {"_count": 1}, "Harry": {"_count": 2}, "June": {"_count": 1}, "Hermione": {"_count": 1}, "they": {"_count": 1}, "somebody": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "forced": {"_count": 1}, "March": {"_count": 1}, "it": {"_count": 1}}, "completely": {"_count": 2, "stupid": {"_count": 1}, "dry": {"_count": 1}}, "even": {"_count": 70, "dressed": {"_count": 1}, "when": {"_count": 3}, "top": {"_count": 1}, "that": {"_count": 1}, "someone": {"_count": 1}, "Auntie": {"_count": 1}, "the": {"_count": 3}, "Ron": {"_count": 1}, "if": {"_count": 2}, "tell": {"_count": 1}, "a": {"_count": 2}, "Uncle": {"_count": 1}, "getting": {"_count": 1}, "his": {"_count": 1}, "goodlooking": {"_count": 1}, "ter": {"_count": 1}, "summon": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}, "Sirius": {"_count": 1}, "complain": {"_count": 1}, "have": {"_count": 1}, "opened": {"_count": 2}, "looking": {"_count": 1}, "check": {"_count": 1}, "Zacharias": {"_count": 1}, "attempt": {"_count": 1}, "know": {"_count": 2}, "realized": {"_count": 2}, "centaurs": {"_count": 1}, "Dumbledore": {"_count": 1}, "happen": {"_count": 1}, "started": {"_count": 1}, "be": {"_count": 1}, "fully": {"_count": 1}, "\u2018the": {"_count": 1}, "look": {"_count": 1}, "Snape": {"_count": 1}, "expect": {"_count": 1}, "noticing": {"_count": 1}, "sound": {"_count": 1}, "here": {"_count": 1}, "find": {"_count": 1}, "on": {"_count": 1}, "Filch": {"_count": 1}, "care": {"_count": 1}, "by": {"_count": 1}, "defend": {"_count": 1}, "going": {"_count": 1}, "notice": {"_count": 1}, "troubling": {"_count": 1}, "feel": {"_count": 1}, "sure": {"_count": 2}, "picked": {"_count": 1}, "explain": {"_count": 1}, "seem": {"_count": 1}, "fighting": {"_count": 1}, "halfway": {"_count": 1}, "attempting": {"_count": 1}, "begun": {"_count": 1}}, "going": {"_count": 91, "to": {"_count": 74}, "he": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "back": {"_count": 3}, "anywhere": {"_count": 4}, "nearly": {"_count": 1}, "through": {"_count": 2}, "mad": {"_count": 1}, "there": {"_count": 1}, "see": {"_count": 1}}, "answer": {"_count": 44, "": {"_count": 17}, "Harrys": {"_count": 1}, "immediately": {"_count": 3}, "until": {"_count": 1}, "at": {"_count": 3}, "he": {"_count": 5}, "she": {"_count": 2}, "the": {"_count": 1}, "fortunately": {"_count": 1}, "but": {"_count": 7}, "in": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}}, "all": {"_count": 16, "": {"_count": 1}, "be": {"_count": 1}, "of": {"_count": 2}, "it": {"_count": 1}, "drink": {"_count": 1}, "book": {"_count": 1}, "its": {"_count": 1}, "Voldemorts": {"_count": 1}, "drop": {"_count": 1}, "attending": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}, "like": {"_count": 1}, "about": {"_count": 1}, "he": {"_count": 1}}, "saying": {"_count": 8, "his": {"_count": 1}, "a": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 1}, "much": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}, "careless": {"_count": 1, "": {"_count": 1}}, "knowing": {"_count": 17, "he": {"_count": 3}, "what": {"_count": 4}, "if": {"_count": 1}, "": {"_count": 1}, "how": {"_count": 3}, "that": {"_count": 1}, "whom": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 1}, "Tonks": {"_count": 1}}, "for": {"_count": 16, "long": {"_count": 2}, "students": {"_count": 1}, "the": {"_count": 2}, "another": {"_count": 1}, "ages": {"_count": 1}, "you": {"_count": 2}, "lack": {"_count": 1}, "him": {"_count": 1}, "my": {"_count": 2}, "revenge": {"_count": 1}, "anyone": {"_count": 1}, "gain": {"_count": 1}}, "much": {"_count": 21, "neck": {"_count": 1}, "said": {"_count": 1}, "use": {"_count": 1}, "to": {"_count": 1}, "time": {"_count": 1}, "is": {"_count": 1}, "I": {"_count": 1}, "taller": {"_count": 1}, "consoled": {"_count": 1}, "want": {"_count": 1}, "space": {"_count": 1}, "fancy": {"_count": 1}, "of": {"_count": 2}, "like": {"_count": 2}, "older": {"_count": 1}, "mistaken": {"_count": 1}, "but": {"_count": 2}, "matter": {"_count": 1}}, "sitting": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "having": {"_count": 12, "one": {"_count": 1}, "met": {"_count": 1}, "hallucinations": {"_count": 1}, "to": {"_count": 1}, "listened": {"_count": 1}, "practiced": {"_count": 1}, "nightmares": {"_count": 1}, "rows": {"_count": 1}, "the": {"_count": 1}, "no": {"_count": 1}, "em": {"_count": 1}, "it": {"_count": 1}}, "a": {"_count": 106, "mistake": {"_count": 1}, "wizard": {"_count": 2}, "single": {"_count": 4}, "good": {"_count": 3}, "stoat": {"_count": 1}, "drop": {"_count": 1}, "very": {"_count": 7}, "shred": {"_count": 2}, "brainless": {"_count": 1}, "laughing": {"_count": 1}, "day": {"_count": 1}, "blood": {"_count": 1}, "happy": {"_count": 1}, "punishment": {"_count": 1}, "rat": {"_count": 1}, "moment": {"_count": 1}, "shapeless": {"_count": 1}, "word": {"_count": 1}, "man": {"_count": 1}, "stupid": {"_count": 1}, "worry": {"_count": 1}, "chance": {"_count": 1}, "panicked": {"_count": 1}, "normal": {"_count": 1}, "sin": {"_count": 1}, "smart": {"_count": 1}, "nutter": {"_count": 1}, "member": {"_count": 1}, "child": {"_count": 3}, "question": {"_count": 7}, "lot": {"_count": 1}, "sitdown": {"_count": 1}, "double": {"_count": 1}, "pleasant": {"_count": 1}, "big": {"_count": 2}, "sound": {"_count": 1}, "teacher": {"_count": 1}, "bit": {"_count": 1}, "book": {"_count": 1}, "bundle": {"_count": 1}, "horse": {"_count": 1}, "mound": {"_count": 1}, "care": {"_count": 1}, "fear": {"_count": 1}, "cruel": {"_count": 1}, "pampered": {"_count": 1}, "trace": {"_count": 1}, "hoax": {"_count": 1}, "foolish": {"_count": 1}, "particle": {"_count": 1}, "hallucination": {"_count": 1}, "school": {"_count": 1}, "crime": {"_count": 1}, "baboon": {"_count": 1}, "difficult": {"_count": 1}, "real": {"_count": 1}, "girl": {"_count": 1}, "Freezing": {"_count": 1}, "killer": {"_count": 2}, "Horcrux": {"_count": 1}, "close": {"_count": 1}, "problem": {"_count": 2}, "joke": {"_count": 2}, "guest": {"_count": 1}, "Squib": {"_count": 1}, "mirror": {"_count": 2}, "witch": {"_count": 2}, "television": {"_count": 1}, "houseelf": {"_count": 1}, "snake": {"_count": 1}, "doe": {"_count": 1}, "traveling": {"_count": 1}, "Mudblood": {"_count": 1}, "thief": {"_count": 1}, "CrumpleHorned": {"_count": 1}, "case": {"_count": 1}, "second": {"_count": 1}, "freak": {"_count": 1}, "basket": {"_count": 1}}, "sure": {"_count": 46, "thatll": {"_count": 1}, "whether": {"_count": 6}, "Ill": {"_count": 2}, "he": {"_count": 6}, "you": {"_count": 3}, "what": {"_count": 3}, "this": {"_count": 1}, "that": {"_count": 5}, "if": {"_count": 1}, "his": {"_count": 1}, "said": {"_count": 2}, "they": {"_count": 2}, "I": {"_count": 2}, "but": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "yet": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}, "hed": {"_count": 1}, "about": {"_count": 1}, "she": {"_count": 1}, "thats": {"_count": 1}}, "like": {"_count": 29, "you": {"_count": 3}, "houseelves": {"_count": 1}, "the": {"_count": 4}, "Crouch": {"_count": 1}, "people": {"_count": 1}, "to": {"_count": 3}, "that": {"_count": 3}, "Trelawney": {"_count": 1}, "Malfoy": {"_count": 1}, "talking": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 3}, "brother": {"_count": 1}, "he": {"_count": 1}, "being": {"_count": 1}, "me": {"_count": 1}, "Im": {"_count": 1}, "mist": {"_count": 1}}, "been": {"_count": 77, "an": {"_count": 1}, "visited": {"_count": 1}, "giving": {"_count": 1}, "tampered": {"_count": 1}, "lifted": {"_count": 1}, "helping": {"_count": 2}, "bedecked": {"_count": 1}, "held": {"_count": 2}, "hanging": {"_count": 1}, "full": {"_count": 1}, "selected": {"_count": 1}, "there": {"_count": 1}, "alone": {"_count": 1}, "exercised": {"_count": 1}, "closed": {"_count": 1}, "seen": {"_count": 3}, "killed": {"_count": 1}, "allowed": {"_count": 1}, "this": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 3}, "time": {"_count": 1}, "on": {"_count": 1}, "expecting": {"_count": 1}, "shouted": {"_count": 1}, "talking": {"_count": 2}, "approved": {"_count": 1}, "very": {"_count": 1}, "permanent": {"_count": 1}, "for": {"_count": 4}, "so": {"_count": 2}, "caught": {"_count": 1}, "listening": {"_count": 2}, "able": {"_count": 9}, "in": {"_count": 2}, "moving": {"_count": 1}, "gilding": {"_count": 1}, "with": {"_count": 1}, "stupid": {"_count": 1}, "convinced": {"_count": 1}, "the": {"_count": 1}, "present": {"_count": 1}, "himself": {"_count": 1}, "at": {"_count": 1}, "wasted": {"_count": 1}, "forgive": {"_count": 1}, "keeping": {"_count": 1}, "Sirius": {"_count": 1}, "looking": {"_count": 1}, "thinking": {"_count": 1}, "expelled": {"_count": 1}, "Ritas": {"_count": 1}, "slept": {"_count": 1}, "granted": {"_count": 1}, "told": {"_count": 1}, "left": {"_count": 1}}, "say": {"_count": 16, "no": {"_count": 1}, "anything": {"_count": 7}, "this": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 2}, "Siriuss": {"_count": 1}, "just": {"_count": 1}, "thank": {"_count": 1}, "Be": {"_count": 1}}, "be": {"_count": 107, "my": {"_count": 1}, "magic": {"_count": 1}, "able": {"_count": 20}, "very": {"_count": 2}, "finished": {"_count": 1}, "well": {"_count": 1}, "here": {"_count": 4}, "for": {"_count": 1}, "with": {"_count": 1}, "distressed": {"_count": 1}, "seen": {"_count": 4}, "spoken": {"_count": 1}, "time": {"_count": 1}, "competing": {"_count": 1}, "a": {"_count": 5}, "Miss": {"_count": 1}, "feeding": {"_count": 1}, "detectable": {"_count": 1}, "so": {"_count": 5}, "sure": {"_count": 3}, "overheard": {"_count": 2}, "as": {"_count": 1}, "in": {"_count": 1}, "more": {"_count": 1}, "insulted": {"_count": 1}, "gone": {"_count": 1}, "back": {"_count": 2}, "clothes": {"_count": 1}, "he": {"_count": 1}, "an": {"_count": 1}, "singlehanded": {"_count": 1}, "anything": {"_count": 1}, "long": {"_count": 1}, "me": {"_count": 1}, "interrupted": {"_count": 1}, "persuaded": {"_count": 1}, "going": {"_count": 1}, "permitted": {"_count": 1}, "innocent": {"_count": 1}, "at": {"_count": 1}, "making": {"_count": 2}, "keeping": {"_count": 1}, "ready": {"_count": 1}, "seventeen": {"_count": 1}, "much": {"_count": 1}, "surprised": {"_count": 1}, "around": {"_count": 1}, "necessary": {"_count": 1}, "made": {"_count": 1}, "moved": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "hidden": {"_count": 1}, "harmed": {"_count": 2}, "returning": {"_count": 1}, "better": {"_count": 1}, "room": {"_count": 1}, "true": {"_count": 2}, "parted": {"_count": 1}, "dead": {"_count": 1}, "Lord": {"_count": 1}, "nearly": {"_count": 1}, "allowed": {"_count": 1}, "heard": {"_count": 1}, "forgotten": {"_count": 1}, "repaired": {"_count": 1}}, "knowin": {"_count": 3, "his": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 1}}, "": {"_count": 166, "?": {"_count": 47}, ".": {"_count": 87}, "!": {"_count": 32}}, "jus": {"_count": 1, "then": {"_count": 1}}, "supposed": {"_count": 25, "ter": {"_count": 2}, "to": {"_count": 23}}, "bad": {"_count": 10, "cold": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 4}, "are": {"_count": 1}}, "mentionin": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 54, "Harry": {"_count": 13}, "Hermione": {"_count": 8}, "Professor": {"_count": 2}, "George": {"_count": 1}, "Madam": {"_count": 1}, "Ron": {"_count": 3}, "Wood": {"_count": 1}, "Lupin": {"_count": 3}, "Dumbledore": {"_count": 2}, "Draco": {"_count": 1}, "Madame": {"_count": 1}, "Ginny": {"_count": 2}, "Sirius": {"_count": 2}, "a": {"_count": 3}, "Hagrid": {"_count": 1}, "for": {"_count": 1}, "Ernie": {"_count": 1}, "Mr": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 2}, "Riddle": {"_count": 1}, "Mrs": {"_count": 1}, "Xenophilius": {"_count": 2}}, "used": {"_count": 3, "to": {"_count": 3}}, "think": {"_count": 57, "about": {"_count": 2}, "Im": {"_count": 1}, "that": {"_count": 9}, "Mrs": {"_count": 1}, "of": {"_count": 10}, "him": {"_count": 1}, "": {"_count": 2}, "hed": {"_count": 1}, "Sirius": {"_count": 2}, "why": {"_count": 2}, "what": {"_count": 6}, "he": {"_count": 6}, "she": {"_count": 1}, "you": {"_count": 3}, "much": {"_count": 1}, "it": {"_count": 3}, "girls": {"_count": 1}, "where": {"_count": 2}, "properly": {"_count": 1}, "who": {"_count": 1}, "so": {"_count": 1}}, "earn": {"_count": 1, "Must": {"_count": 1}}, "picked": {"_count": 1, "to": {"_count": 1}}, "sounding": {"_count": 1, "sorry": {"_count": 1}}, "the": {"_count": 91, "same": {"_count": 3}, "floor": {"_count": 1}, "name": {"_count": 2}, "point": {"_count": 6}, "kind": {"_count": 1}, "way": {"_count": 1}, "only": {"_count": 28}, "first": {"_count": 3}, "men": {"_count": 1}, "time": {"_count": 4}, "song": {"_count": 1}, "one": {"_count": 1}, "map": {"_count": 1}, "presentday": {"_count": 1}, "slightest": {"_count": 1}, "random": {"_count": 2}, "tiniest": {"_count": 2}, "toilet": {"_count": 1}, "Wizengamots": {"_count": 1}, "subject": {"_count": 1}, "real": {"_count": 1}, "true": {"_count": 1}, "rubbish": {"_count": 1}, "weapon": {"_count": 1}, "tapestry": {"_count": 1}, "honking": {"_count": 1}, "servants": {"_count": 1}, "end": {"_count": 1}, "pureblood": {"_count": 1}, "work": {"_count": 1}, "SecretKeeper": {"_count": 1}, "moment": {"_count": 4}, "effect": {"_count": 1}, "hours": {"_count": 1}, "Captain": {"_count": 1}, "suckingup": {"_count": 1}, "perpetrator": {"_count": 1}, "relatively": {"_count": 1}, "grave": {"_count": 1}, "lingering": {"_count": 1}, "very": {"_count": 1}, "black": {"_count": 1}, "accusers": {"_count": 1}, "Forbidden": {"_count": 1}, "ones": {"_count": 1}, "purchaser": {"_count": 1}}, "sorry": {"_count": 7, "for": {"_count": 1}, "about": {"_count": 1}, "that": {"_count": 3}, "to": {"_count": 1}, "": {"_count": 1}}, "from": {"_count": 8, "a": {"_count": 2}, "that": {"_count": 1}, "someone": {"_count": 1}, "the": {"_count": 3}, "Gryffindor": {"_count": 1}}, "sayin": {"_count": 3, "thats": {"_count": 1}, "there": {"_count": 1}, "said": {"_count": 1}}, "ter": {"_count": 5, "use": {"_count": 1}, "blink": {"_count": 1}, "tangle": {"_count": 1}, "tell": {"_count": 1}, "listen": {"_count": 1}}, "unusual": {"_count": 1, "combination": {"_count": 1}}, "old": {"_count": 3, "enough": {"_count": 3}}, "Fred": {"_count": 1, "Im": {"_count": 1}}, "funny": {"_count": 7, "": {"_count": 1}, "really": {"_count": 1}, "said": {"_count": 3}, "Ron": {"_count": 1}, "at": {"_count": 1}}, "being": {"_count": 20, "able": {"_count": 1}, "truly": {"_count": 1}, "entirely": {"_count": 1}, "happy": {"_count": 1}, "on": {"_count": 2}, "human": {"_count": 1}, "followed": {"_count": 2}, "here": {"_count": 2}, "possessed": {"_count": 1}, "shouted": {"_count": 1}, "watched": {"_count": 1}, "overheard": {"_count": 2}, "snubbed": {"_count": 1}, "ridiculous": {"_count": 1}, "kind": {"_count": 1}, "\u2018Rodent": {"_count": 1}}, "trying": {"_count": 10, "to": {"_count": 8}, "for": {"_count": 1}, "you": {"_count": 1}}, "really": {"_count": 18, "frogs": {"_count": 1}, "even": {"_count": 1}, "up": {"_count": 1}, "seeing": {"_count": 1}, "said": {"_count": 2}, "in": {"_count": 1}, "sure": {"_count": 1}, "registered": {"_count": 1}, "s": {"_count": 1}, "prophecy": {"_count": 1}, "my": {"_count": 1}, "listen": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "listening": {"_count": 1}, "like": {"_count": 1}, "fetching": {"_count": 1}}, "very": {"_count": 21, "good": {"_count": 3}, "nice": {"_count": 2}, "dangerous": {"_count": 1}, "happy": {"_count": 4}, "friendly": {"_count": 1}, "pretty": {"_count": 1}, "popular": {"_count": 1}, "likely": {"_count": 1}, "much": {"_count": 1}, "neat": {"_count": 1}, "interestin": {"_count": 1}, "definite": {"_count": 1}, "long": {"_count": 1}, "busy": {"_count": 1}, "close": {"_count": 1}}, "in": {"_count": 39, "it": {"_count": 2}, "the": {"_count": 9}, "broad": {"_count": 1}, "my": {"_count": 1}, "trouble": {"_count": 1}, "another": {"_count": 1}, "front": {"_count": 1}, "fourth": {"_count": 1}, "their": {"_count": 1}, "fact": {"_count": 1}, "any": {"_count": 3}, "there": {"_count": 1}, "his": {"_count": 1}, "much": {"_count": 2}, "danger": {"_count": 1}, "a": {"_count": 4}, "Ravenclaw": {"_count": 2}, "her": {"_count": 1}, "Hogsmeade": {"_count": 1}, "Albania": {"_count": 1}, "that": {"_count": 1}, "vain": {"_count": 1}, "Gryffindor": {"_count": 1}}, "us": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "someone": {"_count": 2, "to": {"_count": 1}, "fussing": {"_count": 1}}, "because": {"_count": 4, "he": {"_count": 1}, "the": {"_count": 1}, "of": {"_count": 1}, "it": {"_count": 1}}, "Slytherin": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 3, "in": {"_count": 1}, "himself": {"_count": 1}, "into": {"_count": 1}}, "done": {"_count": 5, "it": {"_count": 2}, "properly": {"_count": 1}, "with": {"_count": 2}}, "wish": {"_count": 14, "to": {"_count": 8}, "me": {"_count": 2}, "for": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}}, "serious": {"_count": 2, "": {"_count": 2}}, "allowed": {"_count": 21, "to": {"_count": 12}, "in": {"_count": 3}, "a": {"_count": 1}, "": {"_count": 4}, "Dudley": {"_count": 1}}, "come": {"_count": 20, "back": {"_count": 6}, "over": {"_count": 1}, "well": {"_count": 1}, "": {"_count": 2}, "out": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 4}, "down": {"_count": 1}, "running": {"_count": 1}, "home": {"_count": 1}, "and": {"_count": 1}}, "pleased": {"_count": 4, "": {"_count": 1}, "to": {"_count": 3}}, "as": {"_count": 43, "fierce": {"_count": 1}, "good": {"_count": 3}, "though": {"_count": 9}, "gone": {"_count": 1}, "the": {"_count": 1}, "bushy": {"_count": 1}, "much": {"_count": 1}, "bad": {"_count": 3}, "adept": {"_count": 2}, "young": {"_count": 1}, "big": {"_count": 1}, "a": {"_count": 2}, "he": {"_count": 3}, "clear": {"_count": 1}, "shortsighted": {"_count": 1}, "if": {"_count": 2}, "far": {"_count": 2}, "poor": {"_count": 1}, "dreadful": {"_count": 1}, "Ron": {"_count": 1}, "successful": {"_count": 1}, "snakelike": {"_count": 1}, "I": {"_count": 1}, "people": {"_count": 1}, "wonderful": {"_count": 1}}, "telling": {"_count": 15, "you": {"_count": 4}, "me": {"_count": 5}, "us": {"_count": 1}, "him": {"_count": 2}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 38, "she": {"_count": 1}, "unusual": {"_count": 1}, "its": {"_count": 2}, "however": {"_count": 1}, "cold": {"_count": 1}, "difficult": {"_count": 3}, "small": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 2}, "that": {"_count": 2}, "said": {"_count": 2}, "the": {"_count": 1}, "shes": {"_count": 1}, "hes": {"_count": 1}, "either": {"_count": 1}, "fussed": {"_count": 1}, "you": {"_count": 1}, "downtoearth": {"_count": 1}, "bad": {"_count": 2}, "again": {"_count": 1}, "now": {"_count": 1}, "Ron": {"_count": 1}, "easy": {"_count": 1}, "there": {"_count": 2}, "not": {"_count": 1}, "Ill": {"_count": 1}, "fond": {"_count": 1}, "far": {"_count": 1}, "any": {"_count": 1}}, "looking": {"_count": 29, "back": {"_count": 1}, "at": {"_count": 21}, "too": {"_count": 1}, "up": {"_count": 2}, "his": {"_count": 1}, "forward": {"_count": 1}, "scared": {"_count": 1}, "directly": {"_count": 1}}, "any": {"_count": 3, "old": {"_count": 1}, "other": {"_count": 1}, "of": {"_count": 1}}, "too": {"_count": 9, "easy": {"_count": 1}, "bright": {"_count": 1}, "long": {"_count": 1}, "happy": {"_count": 1}, "worried": {"_count": 1}, "bad": {"_count": 1}, "much": {"_count": 1}, "sleepy": {"_count": 1}, "sensed": {"_count": 1}}, "see": {"_count": 65, "us": {"_count": 1}, "that": {"_count": 2}, "what": {"_count": 6}, "": {"_count": 6}, "them": {"_count": 3}, "him": {"_count": 2}, "Young": {"_count": 1}, "it": {"_count": 2}, "why": {"_count": 4}, "how": {"_count": 8}, "this": {"_count": 1}, "who": {"_count": 1}, "the": {"_count": 5}, "but": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "any": {"_count": 2}, "or": {"_count": 3}, "Hermione": {"_count": 1}, "Slughorn": {"_count": 1}, "where": {"_count": 2}, "at": {"_count": 1}, "clearly": {"_count": 1}, "his": {"_count": 2}, "me": {"_count": 1}, "anything": {"_count": 2}, "anyone": {"_count": 1}, "Rons": {"_count": 1}, "a": {"_count": 1}, "Freds": {"_count": 1}}, "Percy": {"_count": 2, "but": {"_count": 1}, "he": {"_count": 1}}, "hurt": {"_count": 6, "at": {"_count": 2}, "Potter": {"_count": 1}, "said": {"_count": 1}, "like": {"_count": 1}, "Harry": {"_count": 1}}, "many": {"_count": 1, "first": {"_count": 1}}, "have": {"_count": 114, "needed": {"_count": 2}, "been": {"_count": 30}, "the": {"_count": 7}, "seen": {"_count": 2}, "what": {"_count": 1}, "to": {"_count": 9}, "thought": {"_count": 1}, "had": {"_count": 4}, "looked": {"_count": 2}, "made": {"_count": 1}, "believed": {"_count": 2}, "crossed": {"_count": 2}, "answered": {"_count": 1}, "said": {"_count": 2}, "his": {"_count": 1}, "removed": {"_count": 1}, "agreed": {"_count": 1}, "chosen": {"_count": 1}, "known": {"_count": 4}, "committed": {"_count": 1}, "come": {"_count": 1}, "found": {"_count": 1}, "unlimited": {"_count": 1}, "much": {"_count": 1}, "time": {"_count": 3}, "Harrys": {"_count": 1}, "achieved": {"_count": 1}, "picked": {"_count": 1}, "taken": {"_count": 3}, "meant": {"_count": 1}, "died": {"_count": 2}, "noticed": {"_count": 1}, "used": {"_count": 1}, "wanted": {"_count": 1}, "a": {"_count": 1}, "let": {"_count": 1}, "worried": {"_count": 1}, "permitted": {"_count": 1}, "happened": {"_count": 2}, "dared": {"_count": 1}, "an": {"_count": 1}, "bothered": {"_count": 1}, "lived": {"_count": 1}, "cared": {"_count": 2}, "done": {"_count": 1}, "stopped": {"_count": 1}, "expected": {"_count": 1}, "intervened": {"_count": 1}, "appreciated": {"_count": 1}, "helped": {"_count": 1}, "stayed": {"_count": 1}, "it": {"_count": 1}}, "hungry": {"_count": 3, "": {"_count": 2}, "I": {"_count": 1}}, "suddenly": {"_count": 1, "decide": {"_count": 1}}, "wanted": {"_count": 3, "at": {"_count": 1}, "to": {"_count": 2}}, "working": {"_count": 10, "Harry": {"_count": 1}, "properly": {"_count": 1}, "when": {"_count": 1}, "they": {"_count": 1}, "hard": {"_count": 1}, "": {"_count": 5}}, "ask": {"_count": 14, "Madam": {"_count": 1}, "Professor": {"_count": 1}, "for": {"_count": 2}, "Harry": {"_count": 2}, "his": {"_count": 1}, "when": {"_count": 1}, "me": {"_count": 2}, "Dumbledore": {"_count": 1}, "how": {"_count": 1}, "he": {"_count": 1}, "whether": {"_count": 1}}, "expecting": {"_count": 3, "any": {"_count": 1}, "it": {"_count": 1}, "us": {"_count": 1}}, "family": {"_count": 1, "": {"_count": 1}}, "stupid": {"_count": 12, "we": {"_count": 1}, "enough": {"_count": 3}, "you": {"_count": 2}, "": {"_count": 2}, "he": {"_count": 2}, "she": {"_count": 1}, "but": {"_count": 1}}, "but": {"_count": 9, "he": {"_count": 6}, "honestly": {"_count": 1}, "that": {"_count": 1}, "when": {"_count": 1}}, "fade": {"_count": 3, "and": {"_count": 1}, "from": {"_count": 1}, "away": {"_count": 1}}, "finding": {"_count": 1, "Flamel": {"_count": 1}}, "do": {"_count": 11, "to": {"_count": 1}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}, "as": {"_count": 1}, "either": {"_count": 1}, "anything": {"_count": 1}, "you": {"_count": 1}, "for": {"_count": 1}, "so": {"_count": 1}}, "my": {"_count": 18, "fault": {"_count": 9}, "girlfriend": {"_count": 2}, "guess": {"_count": 1}, "family": {"_count": 2}, "own": {"_count": 1}, "other": {"_count": 1}, "type": {"_count": 1}, "intention": {"_count": 1}}, "wanting": {"_count": 7, "Snape": {"_count": 1}, "to": {"_count": 4}, "them": {"_count": 1}, "Harry": {"_count": 1}}, "brave": {"_count": 2, "enough": {"_count": 1}, "in": {"_count": 1}}, "exactly": {"_count": 11, "recent": {"_count": 1}, "a": {"_count": 2}, "relaxing": {"_count": 1}, "difficult": {"_count": 1}, "straining": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "young": {"_count": 1}, "ten": {"_count": 1}, "new": {"_count": 1}}, "wiping": {"_count": 1, "you": {"_count": 1}}, "daring": {"_count": 7, "to": {"_count": 7}}, "ages": {"_count": 1, "thats": {"_count": 1}}, "six": {"_count": 1, "hundred": {"_count": 1}}, "still": {"_count": 4, "lookin": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}, "holding": {"_count": 1}}, "promisin": {"_count": 1, "Ill": {"_count": 1}}, "want": {"_count": 84, "to": {"_count": 65}, "this": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 2}, "Lupin": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 2}, "another": {"_count": 1}, "Harry": {"_count": 2}, "Hagrid": {"_count": 1}, "help": {"_count": 1}, "anything": {"_count": 1}, "Lord": {"_count": 1}, "": {"_count": 2}, "excuses": {"_count": 1}, "his": {"_count": 1}}, "about": {"_count": 5, "ter": {"_count": 1}, "to": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}}, "just": {"_count": 13, "my": {"_count": 1}, "foreigners": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}, "ten": {"_count": 1}, "you": {"_count": 1}, "theory": {"_count": 1}, "on": {"_count": 1}, "dreaming": {"_count": 1}, "attacked": {"_count": 1}, "that": {"_count": 2}, "because": {"_count": 1}}, "again": {"_count": 2, "please": {"_count": 1}, "he": {"_count": 1}}, "meddling": {"_count": 1, "": {"_count": 1}}, "easy": {"_count": 5, "ter": {"_count": 1}, "Apparition": {"_count": 1}, "to": {"_count": 2}, "no": {"_count": 1}}, "Ronan": {"_count": 1, "or": {"_count": 1}}, "safe": {"_count": 4, "at": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 1}}, "read": {"_count": 3, "what": {"_count": 1}, "the": {"_count": 1}, "any": {"_count": 1}}, "our": {"_count": 3, "business": {"_count": 1}, "fault": {"_count": 2}}, "understand": {"_count": 36, "why": {"_count": 9}, "and": {"_count": 1}, "what": {"_count": 4}, "therefore": {"_count": 1}, "it": {"_count": 2}, "this": {"_count": 1}, "normal": {"_count": 1}, "fine": {"_count": 1}, "the": {"_count": 3}, "how": {"_count": 2}, "my": {"_count": 1}, "people": {"_count": 1}, "": {"_count": 5}, "their": {"_count": 1}, "before": {"_count": 1}, "where": {"_count": 1}, "she": {"_count": 1}}, "let": {"_count": 16, "you": {"_count": 1}, "your": {"_count": 1}, "Master": {"_count": 1}, "go": {"_count": 2}, "us": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "anybody": {"_count": 1}, "something": {"_count": 1}, "anyone": {"_count": 2}, "Draco": {"_count": 1}}, "ill": {"_count": 1, "said": {"_count": 1}}, "throwing": {"_count": 1, "me": {"_count": 1}}, "bother": {"_count": 6, "you": {"_count": 1}, "to": {"_count": 5}}, "birds": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 15, "his": {"_count": 3}, "their": {"_count": 1}, "you": {"_count": 1}, "care": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "in": {"_count": 2}, "Hagrid": {"_count": 1}, "Care": {"_count": 1}, "her": {"_count": 1}}, "offended": {"_count": 2, "said": {"_count": 2}}, "poison": {"_count": 1, "": {"_count": 1}}, "forgive": {"_count": 3, "mistakes": {"_count": 1}, "": {"_count": 1}, "easily": {"_count": 1}}, "strong": {"_count": 2, "enough": {"_count": 1}, "that": {"_count": 1}}, "without": {"_count": 3, "suffering": {"_count": 1}, "reason": {"_count": 1}, "It": {"_count": 1}}, "manage": {"_count": 2, "to": {"_count": 2}}, "such": {"_count": 2, "a": {"_count": 2}}, "of": {"_count": 10, "course": {"_count": 5}, "his": {"_count": 1}, "leather": {"_count": 1}, "age": {"_count": 2}, "Polyjuice": {"_count": 1}}, "touch": {"_count": 7, "you": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 1}}, "use": {"_count": 6, "it": {"_count": 2}, "magic": {"_count": 2}, "that": {"_count": 2}}, "normal": {"_count": 3, "as": {"_count": 1}, "dreams": {"_count": 1}, "fire": {"_count": 1}}, "Snape": {"_count": 4, "the": {"_count": 1}, "snapped": {"_count": 1}, "": {"_count": 2}}, "there": {"_count": 16, "said": {"_count": 2}, "he": {"_count": 2}, "": {"_count": 6}, "to": {"_count": 1}, "not": {"_count": 1}, "then": {"_count": 1}, "Hermione": {"_count": 1}, "The": {"_count": 1}, "where": {"_count": 1}}, "go": {"_count": 11, "back": {"_count": 1}, "not": {"_count": 1}, "unnoticed": {"_count": 1}, "where": {"_count": 1}, "quietly": {"_count": 1}, "": {"_count": 1}, "uninvestigated": {"_count": 1}, "that": {"_count": 1}, "down": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "sir": {"_count": 1}}, "return": {"_count": 15, "to": {"_count": 3}, "": {"_count": 4}, "for": {"_count": 1}, "afterward": {"_count": 1}, "from": {"_count": 2}, "at": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "contain": {"_count": 1, "birthday": {"_count": 1}}, "permitted": {"_count": 4, "to": {"_count": 3}, "in": {"_count": 1}}, "snapped": {"_count": 1, "Mrs": {"_count": 1}}, "himself": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "careful": {"_count": 2, "well": {"_count": 1}, "": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "on": {"_count": 9, "the": {"_count": 3}, "yer": {"_count": 1}, "duty": {"_count": 1}, "here": {"_count": 2}, "top": {"_count": 1}, "said": {"_count": 1}}, "prudent": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 11, "most": {"_count": 1}, "theyre": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 2}, "people": {"_count": 1}, "shes": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 2}, "she": {"_count": 1}}, "buying": {"_count": 2, "today": {"_count": 1}, "anything": {"_count": 1}}, "growled": {"_count": 1, "Hagrid": {"_count": 1}}, "one": {"_count": 16, "step": {"_count": 1}, "of": {"_count": 7}, "but": {"_count": 1}, "single": {"_count": 1}, "Ron": {"_count": 1}, "mention": {"_count": 1}, "that": {"_count": 1}, "where": {"_count": 1}, "word": {"_count": 1}, "to": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "far": {"_count": 8, "now": {"_count": 1}, "away": {"_count": 3}, "from": {"_count": 3}, "": {"_count": 1}}, "rest": {"_count": 4, "with": {"_count": 1}, "until": {"_count": 2}, "while": {"_count": 1}}, "take": {"_count": 24, "any": {"_count": 1}, "place": {"_count": 1}, "long": {"_count": 2}, "his": {"_count": 1}, "risks": {"_count": 1}, "the": {"_count": 3}, "much": {"_count": 1}, "her": {"_count": 1}, "cheek": {"_count": 1}, "it": {"_count": 2}, "back": {"_count": 1}, "him": {"_count": 2}, "in": {"_count": 3}, "Harrys": {"_count": 1}, "off": {"_count": 1}, "kindly": {"_count": 1}, "together": {"_count": 1}}, "at": {"_count": 34, "all": {"_count": 25}, "the": {"_count": 2}, "home": {"_count": 1}, "Hogwarts": {"_count": 2}, "practice": {"_count": 1}, "their": {"_count": 1}, "school": {"_count": 1}, "her": {"_count": 1}}, "quite": {"_count": 17, "as": {"_count": 4}, "recovered": {"_count": 1}, "sure": {"_count": 1}, "believe": {"_count": 1}, "meeting": {"_count": 1}, "died": {"_count": 1}, "whole": {"_count": 1}, "keep": {"_count": 1}, "manage": {"_count": 1}, "right": {"_count": 1}, "see": {"_count": 1}, "reach": {"_count": 1}, "comprehend": {"_count": 1}, "yet": {"_count": 1}}, "improved": {"_count": 1, "by": {"_count": 1}}, "theyre": {"_count": 1, "not": {"_count": 1}}, "risk": {"_count": 3, "it": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}}, "dampened": {"_count": 1, "which": {"_count": 1}}, "fulfill": {"_count": 1, "our": {"_count": 1}}, "enough": {"_count": 4, "for": {"_count": 2}, "": {"_count": 1}, "the": {"_count": 1}}, "quickly": {"_count": 1, "enough": {"_count": 1}}, "stopping": {"_count": 2, "until": {"_count": 1}, "me": {"_count": 1}}, "nearly": {"_count": 10, "as": {"_count": 8}, "that": {"_count": 1}, "often": {"_count": 1}}, "dead": {"_count": 7, "Argus": {"_count": 1}, "hes": {"_count": 1}, "as": {"_count": 1}, "its": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}, "though": {"_count": 1}}, "join": {"_count": 3, "the": {"_count": 1}, "in": {"_count": 1}, "them": {"_count": 1}}, "varied": {"_count": 1, "in": {"_count": 1}}, "myths": {"_count": 1, "and": {"_count": 1}}, "exist": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "girls": {"_count": 1, "": {"_count": 1}}, "brought": {"_count": 1, "live": {"_count": 1}}, "toenails": {"_count": 1, "okay": {"_count": 1}}, "speaking": {"_count": 3, "much": {"_count": 1}, "listening": {"_count": 1}, "English": {"_count": 1}}, "losing": {"_count": 2, "to": {"_count": 1}, "my": {"_count": 1}}, "you": {"_count": 9, "he": {"_count": 1}, "know": {"_count": 2}, "": {"_count": 3}, "cant": {"_count": 1}, "trust": {"_count": 1}, "personally": {"_count": 1}}, "noticing": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "Muggleborn": {"_count": 1, "how": {"_count": 1}}, "meddle": {"_count": 1, "in": {"_count": 1}}, "Dobby": {"_count": 1, "suddenly": {"_count": 1}}, "who": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 15, "began": {"_count": 1}, "please": {"_count": 2}, "Stand": {"_count": 1}, "didnt": {"_count": 1}, "uncorked": {"_count": 1}, "knew": {"_count": 1}, "thought": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 2}, "realized": {"_count": 1}, "but": {"_count": 1}, "Potter": {"_count": 1}}, "angry": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "egging": {"_count": 1, "it": {"_count": 1}}, "possible": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "hate": {"_count": 4, "them": {"_count": 1}, "him": {"_count": 1}, "Kreacher": {"_count": 1}, "her": {"_count": 1}}, "unlike": {"_count": 6, "the": {"_count": 3}, "a": {"_count": 1}, "school": {"_count": 1}, "that": {"_count": 1}}, "listening": {"_count": 8, "and": {"_count": 1}, "to": {"_count": 3}, "she": {"_count": 2}, "he": {"_count": 1}, "but": {"_count": 1}}, "before": {"_count": 6, "Harry": {"_count": 2}, "the": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "imprisoned": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "s": {"_count": 1}, "who": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "counting": {"_count": 2, "a": {"_count": 1}, "vermin": {"_count": 1}}, "help": {"_count": 44, "in": {"_count": 1}, "he": {"_count": 1}, "himself": {"_count": 7}, "noticing": {"_count": 4}, "watching": {"_count": 1}, "giving": {"_count": 1}, "glancing": {"_count": 1}, "but": {"_count": 9}, "feeling": {"_count": 5}, "humans": {"_count": 1}, "wondering": {"_count": 3}, "admiring": {"_count": 1}, "thinking": {"_count": 2}, "": {"_count": 1}, "as": {"_count": 1}, "remembering": {"_count": 1}, "hoping": {"_count": 1}, "voicing": {"_count": 1}, "suspecting": {"_count": 1}, "taking": {"_count": 1}}, "meeting": {"_count": 5, "Hagrid": {"_count": 1}, "here": {"_count": 1}, "Ron": {"_count": 1}, "Professor": {"_count": 1}, "Dumbledores": {"_count": 1}}, "taken": {"_count": 5, "his": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}, "heat": {"_count": 1}, "into": {"_count": 1}}, "troubling": {"_count": 3, "to": {"_count": 3}}, "spotting": {"_count": 1, "Seamus": {"_count": 1}}, "born": {"_count": 1, "in": {"_count": 1}}, "speak": {"_count": 41, "of": {"_count": 1}, "again": {"_count": 1}, "to": {"_count": 4}, "she": {"_count": 1}, "about": {"_count": 1}, "at": {"_count": 1}, "but": {"_count": 3}, "his": {"_count": 1}, "": {"_count": 16}, "he": {"_count": 1}, "for": {"_count": 5}, "nor": {"_count": 1}, "so": {"_count": 2}, "as": {"_count": 1}, "and": {"_count": 1}, "another": {"_count": 1}}, "name": {"_count": 1, "it": {"_count": 1}}, "with": {"_count": 10, "the": {"_count": 2}, "fear": {"_count": 1}, "Hagrid": {"_count": 1}, "your": {"_count": 1}, "Hermione": {"_count": 1}, "Filch": {"_count": 1}, "gold": {"_count": 1}, "those": {"_count": 1}, "curses": {"_count": 1}}, "harm": {"_count": 2, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "terribly": {"_count": 1, "The": {"_count": 1}}, "now": {"_count": 13, "they": {"_count": 1}, "that": {"_count": 2}, "I": {"_count": 1}, "not": {"_count": 2}, "": {"_count": 3}, "yehve": {"_count": 1}, "remember": {"_count": 1}, "he": {"_count": 1}, "The": {"_count": 1}}, "if": {"_count": 6, "there": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}, "hes": {"_count": 1}, "Dumbledore": {"_count": 1}}, "though": {"_count": 2, "he": {"_count": 1}, "exhausted": {"_count": 1}}, "back": {"_count": 6, "in": {"_count": 1}, "to": {"_count": 1}, "yet": {"_count": 2}, "and": {"_count": 1}, "away": {"_count": 1}}, "shes": {"_count": 1, "not": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 6, "said": {"_count": 2}, "had": {"_count": 1}, "compromised": {"_count": 1}, "wanted": {"_count": 1}, "would": {"_count": 1}}, "so": {"_count": 18, "bad": {"_count": 1}, "much": {"_count": 6}, "generous": {"_count": 1}, "offensive": {"_count": 1}, "badly": {"_count": 1}, "young": {"_count": 1}, "good": {"_count": 1}, "fast": {"_count": 1}, "different": {"_count": 1}, "lucky": {"_count": 1}, "lunatic": {"_count": 1}, "easy": {"_count": 1}, "sure": {"_count": 1}}, "died": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 1}, "away": {"_count": 1}}, "Ill": {"_count": 1, "see": {"_count": 1}}, "coming": {"_count": 7, "here": {"_count": 1}, "in": {"_count": 1}, "this": {"_count": 1}, "said": {"_count": 1}, "back": {"_count": 2}, "": {"_count": 1}}, "heard": {"_count": 10, "Harrys": {"_count": 1}, "correctly": {"_count": 2}, "Pansys": {"_count": 1}, "Riddles": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "hitting": {"_count": 1, "people": {"_count": 1}}, "Ron": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}}, "breathe": {"_count": 5, "a": {"_count": 1}, "properly": {"_count": 1}, "through": {"_count": 1}, "there": {"_count": 1}, "or": {"_count": 1}}, "Sirius": {"_count": 2, "Black": {"_count": 1}, "but": {"_count": 1}}, "yet": {"_count": 39, "but": {"_count": 1}, "assumed": {"_count": 1}, "know": {"_count": 3}, "at": {"_count": 1}, "lost": {"_count": 2}, "getting": {"_count": 1}, "strong": {"_count": 1}, "managed": {"_count": 3}, "reached": {"_count": 1}, "read": {"_count": 1}, "had": {"_count": 1}, "uprooted": {"_count": 1}, "burned": {"_count": 1}, "corrected": {"_count": 1}, "as": {"_count": 1}, "tracked": {"_count": 1}, "spread": {"_count": 1}, "prove": {"_count": 1}, "been": {"_count": 1}, "detected": {"_count": 1}, "scarlet": {"_count": 1}, "masklike": {"_count": 1}, "the": {"_count": 1}, "tried": {"_count": 2}, "have": {"_count": 1}, "given": {"_count": 1}, "near": {"_count": 1}, "risen": {"_count": 1}, "used": {"_count": 1}, "to": {"_count": 1}, "charred": {"_count": 1}, "so": {"_count": 1}, "formed": {"_count": 1}}, "your": {"_count": 10, "parent": {"_count": 1}, "fault": {"_count": 3}, "ostage": {"_count": 1}, "energies": {"_count": 1}, "father": {"_count": 1}, "son": {"_count": 1}, "servant": {"_count": 1}, "husband": {"_count": 1}}, "corned": {"_count": 1, "beef": {"_count": 1}}, "scared": {"_count": 4, "but": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 2}}, "why": {"_count": 1, "I": {"_count": 1}}, "delicate": {"_count": 1, "": {"_count": 1}}, "committed": {"_count": 2, "": {"_count": 2}}, "worth": {"_count": 5, "it": {"_count": 2}, "that": {"_count": 1}, "dying": {"_count": 1}, "botherin": {"_count": 1}}, "got": {"_count": 3, "applause": {"_count": 1}, "that": {"_count": 1}, "spattergroit": {"_count": 1}}, "conceal": {"_count": 2, "from": {"_count": 1}, "her": {"_count": 1}}, "hand": {"_count": 1, "it": {"_count": 1}}, "an": {"_count": 16, "omen": {"_count": 1}, "idiot": {"_count": 3}, "equal": {"_count": 1}, "adult": {"_count": 1}, "outpost": {"_count": 1}, "ordinary": {"_count": 1}, "innocent": {"_count": 1}, "order": {"_count": 2}, "impostor": {"_count": 1}, "answer": {"_count": 1}, "oddity": {"_count": 1}, "oaf": {"_count": 1}, "ideal": {"_count": 1}}, "dangerous": {"_count": 5, "at": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "unless": {"_count": 1}}, "dyin": {"_count": 1, "": {"_count": 1}}, "touching": {"_count": 1, "her": {"_count": 1}}, "witness": {"_count": 1, "this": {"_count": 1}}, "fool": {"_count": 2, "enough": {"_count": 1}, "himself": {"_count": 1}}, "necessarily": {"_count": 4, "by": {"_count": 1}, "said": {"_count": 1}, "worthless": {"_count": 1}, "remain": {"_count": 1}}, "Potter": {"_count": 2, "she": {"_count": 1}, "organized": {"_count": 1}}, "missing": {"_count": 1, "anything": {"_count": 1}}, "after": {"_count": 5, "the": {"_count": 1}, "what": {"_count": 1}, "all": {"_count": 3}}, "worried": {"_count": 5, "are": {"_count": 1}, "at": {"_count": 1}, "so": {"_count": 1}, "about": {"_count": 1}, "Harry": {"_count": 1}}, "believe": {"_count": 27, "a": {"_count": 2}, "that": {"_count": 9}, "what": {"_count": 2}, "she": {"_count": 1}, "her": {"_count": 3}, "he": {"_count": 1}, "it": {"_count": 4}, "his": {"_count": 1}, "any": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 2}}, "playing": {"_count": 4, "Slytherin": {"_count": 1}, "hideandseek": {"_count": 1}, "games": {"_count": 1}, "": {"_count": 1}}, "left": {"_count": 6, "any": {"_count": 1}, "the": {"_count": 3}, "instructions": {"_count": 1}, "out": {"_count": 1}}, "over": {"_count": 4, "yet": {"_count": 3}, "the": {"_count": 1}}, "fair": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "snapped": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "is": {"_count": 1}}, "afford": {"_count": 1, "to": {"_count": 1}}, "get": {"_count": 11, "another": {"_count": 1}, "too": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 2}, "near": {"_count": 1}, "a": {"_count": 2}, "it": {"_count": 1}, "to": {"_count": 1}, "enough": {"_count": 1}}, "nightfall": {"_count": 1, "yet": {"_count": 1}}, "we": {"_count": 1, "who": {"_count": 1}}, "sneaked": {"_count": 1, "quietly": {"_count": 1}}, "bin": {"_count": 1, "meself": {"_count": 1}}, "appear": {"_count": 11, "either": {"_count": 1}, "to": {"_count": 8}, "cheered": {"_count": 1}, "on": {"_count": 1}}, "sit": {"_count": 1, "down": {"_count": 1}}, "Headmaster": {"_count": 1, "": {"_count": 1}}, "parade": {"_count": 1, "the": {"_count": 1}}, "possessed": {"_count": 1, "of": {"_count": 1}}, "using": {"_count": 3, "him": {"_count": 1}, "their": {"_count": 1}, "an": {"_count": 1}}, "dark": {"_count": 1, "thoughts": {"_count": 1}}, "thinking": {"_count": 6, "of": {"_count": 4}, "about": {"_count": 2}}, "keen": {"_count": 1, "on": {"_count": 1}}, "waking": {"_count": 1, "her": {"_count": 1}}, "silenced": {"_count": 1, "Ron": {"_count": 1}}, "talkin": {"_count": 2, "to": {"_count": 2}}, "blamin": {"_count": 1, "yeh": {"_count": 1}}, "Quidditch": {"_count": 2, "Cupwinners": {"_count": 1}, "thats": {"_count": 1}}, "felt": {"_count": 5, "since": {"_count": 1}, "this": {"_count": 1}, "until": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "expect": {"_count": 7, "any": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "my": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}, "Draco": {"_count": 1}}, "right": {"_count": 5, "before": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 2}, "said": {"_count": 1}}, "presume": {"_count": 1, "to": {"_count": 1}}, "crying": {"_count": 1, "nor": {"_count": 1}}, "know": {"_count": 102, "where": {"_count": 6}, "what": {"_count": 30}, "them": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 8}, "": {"_count": 7}, "how": {"_count": 8}, "whether": {"_count": 6}, "why": {"_count": 2}, "the": {"_count": 1}, "three": {"_count": 1}, "he": {"_count": 2}, "when": {"_count": 1}, "continued": {"_count": 1}, "which": {"_count": 1}, "its": {"_count": 1}, "exactly": {"_count": 1}, "and": {"_count": 2}, "it": {"_count": 4}, "for": {"_count": 1}, "Harrys": {"_count": 1}, "perhaps": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}, "this": {"_count": 2}, "I": {"_count": 2}, "nor": {"_count": 1}, "we": {"_count": 1}, "And": {"_count": 1}, "Lupin": {"_count": 1}, "or": {"_count": 1}, "about": {"_count": 1}, "Either": {"_count": 1}, "not": {"_count": 1}, "who": {"_count": 1}}, "loudly": {"_count": 2, "enough": {"_count": 2}}, "Hermione": {"_count": 2, "whispered": {"_count": 1}, "s": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "evening": {"_count": 1}}, "here": {"_count": 20, "to": {"_count": 5}, "anymore": {"_count": 1}, "": {"_count": 7}, "said": {"_count": 1}, "Potter": {"_count": 1}, "he": {"_count": 2}, "now": {"_count": 1}, "yet": {"_count": 1}, "in": {"_count": 1}}, "look": {"_count": 37, "away": {"_count": 2}, "back": {"_count": 4}, "around": {"_count": 2}, "at": {"_count": 13}, "angry": {"_count": 1}, "dangerous": {"_count": 1}, "exasperated": {"_count": 1}, "too": {"_count": 2}, "up": {"_count": 1}, "over": {"_count": 1}, "entirely": {"_count": 1}, "remotely": {"_count": 1}, "like": {"_count": 1}, "displeased": {"_count": 1}, "particularly": {"_count": 1}, "quite": {"_count": 1}, "as": {"_count": 1}, "now": {"_count": 1}, "into": {"_count": 1}}, "doing": {"_count": 12, "this": {"_count": 1}, "it": {"_count": 4}, "magic": {"_count": 1}, "the": {"_count": 1}, "anything": {"_count": 3}, "prefect": {"_count": 1}, "any": {"_count": 1}}, "distressed": {"_count": 1, "Im": {"_count": 1}}, "interrupt": {"_count": 3, "me": {"_count": 2}, "": {"_count": 1}}, "convince": {"_count": 2, "anybody": {"_count": 1}, "Lily": {"_count": 1}}, "acted": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "unbalanced": {"_count": 1, "said": {"_count": 1}}, "true": {"_count": 5, "is": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "leaving": {"_count": 5, "just": {"_count": 1}, "to": {"_count": 1}, "until": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}}, "least": {"_count": 4, "keeping": {"_count": 1}, "because": {"_count": 2}, "of": {"_count": 1}}, "leave": {"_count": 7, "": {"_count": 3}, "Gryffindor": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}}, "entered": {"_count": 1, "it": {"_count": 1}}, "lie": {"_count": 5, "to": {"_count": 4}, "sir": {"_count": 1}}, "asking": {"_count": 5, "you": {"_count": 3}, "Ron": {"_count": 1}, "us": {"_count": 1}}, "aware": {"_count": 7, "how": {"_count": 1}, "of": {"_count": 2}, "that": {"_count": 2}, "for": {"_count": 1}, "then": {"_count": 1}}, "deny": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "hear": {"_count": 25, "it": {"_count": 2}, "": {"_count": 3}, "the": {"_count": 2}, "him": {"_count": 3}, "Maybe": {"_count": 1}, "What": {"_count": 1}, "that": {"_count": 1}, "Dumbledore": {"_count": 1}, "anyway": {"_count": 1}, "what": {"_count": 2}, "anything": {"_count": 3}, "them": {"_count": 1}, "Celestinas": {"_count": 1}, "her": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 1}}, "remember": {"_count": 12, "the": {"_count": 1}, "it": {"_count": 2}, "Hermione": {"_count": 1}, "dreaming": {"_count": 1}, "Sirius": {"_count": 1}, "ever": {"_count": 2}, "Where": {"_count": 1}, "anything": {"_count": 1}, "Dumbledore": {"_count": 1}, "where": {"_count": 1}}, "long": {"_count": 6, "afterward": {"_count": 1}, "after": {"_count": 3}, "for": {"_count": 1}, "thereafter": {"_count": 1}}, "worked": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "escaped": {"_count": 2, "had": {"_count": 1}, "his": {"_count": 1}}, "by": {"_count": 6, "owls": {"_count": 1}, "any": {"_count": 1}, "Ron": {"_count": 1}, "you": {"_count": 1}, "Crabbe": {"_count": 1}, "much": {"_count": 1}}, "approved": {"_count": 1, "of": {"_count": 1}}, "following": {"_count": 1, "the": {"_count": 1}}, "moving": {"_count": 5, "and": {"_count": 2}, "It": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "remove": {"_count": 3, "his": {"_count": 2}, "your": {"_count": 1}}, "thundering": {"_count": 1, "said": {"_count": 1}}, "room": {"_count": 1, "for": {"_count": 1}}, "getting": {"_count": 2, "the": {"_count": 1}, "rid": {"_count": 1}}, "complaining": {"_count": 5, "": {"_count": 1}, "or": {"_count": 1}, "merely": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}}, "helping": {"_count": 2, "": {"_count": 1}, "matters": {"_count": 1}}, "putting": {"_count": 1, "them": {"_count": 1}}, "had": {"_count": 7, "in": {"_count": 1}, "a": {"_count": 2}, "any": {"_count": 2}, "time": {"_count": 1}, "the": {"_count": 1}}, "prevent": {"_count": 4, "him": {"_count": 1}, "his": {"_count": 1}, "hot": {"_count": 1}, "me": {"_count": 1}}, "brightly": {"_count": 1, "lit": {"_count": 1}}, "paid": {"_count": 1, "sir": {"_count": 1}}, "liking": {"_count": 1, "heights": {"_count": 1}}, "impressed": {"_count": 1, "by": {"_count": 1}}, "duck": {"_count": 2, "quickly": {"_count": 1}, "out": {"_count": 1}}, "move": {"_count": 16, "or": {"_count": 1}, "": {"_count": 7}, "she": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "snow": {"_count": 1}, "His": {"_count": 1}, "until": {"_count": 1}}, "seem": {"_count": 58, "prepared": {"_count": 1}, "to": {"_count": 40}, "impressed": {"_count": 1}, "keen": {"_count": 1}, "wholly": {"_count": 1}, "perturbed": {"_count": 1}, "possible": {"_count": 1}, "happy": {"_count": 1}, "entirely": {"_count": 1}, "very": {"_count": 1}, "any": {"_count": 1}, "discouraged": {"_count": 1}, "that": {"_count": 1}, "able": {"_count": 2}, "an": {"_count": 1}, "at": {"_count": 1}, "hollow": {"_count": 1}, "like": {"_count": 1}}, "mumbled": {"_count": 1, "Mr": {"_count": 1}}, "making": {"_count": 4, "the": {"_count": 1}, "prophecies": {"_count": 1}, "eye": {"_count": 1}, "excuses": {"_count": 1}}, "I": {"_count": 12, "is": {"_count": 2}, "asked": {"_count": 1}, "havent": {"_count": 1}, "advise": {"_count": 1}, "was": {"_count": 2}, "who": {"_count": 2}, "mean": {"_count": 1}, "know": {"_count": 1}, "have": {"_count": 1}}, "dare": {"_count": 25, "refuse": {"_count": 1}, "to": {"_count": 1}, "disobey": {"_count": 1}, "voice": {"_count": 1}, "believe": {"_count": 1}, "speak": {"_count": 2}, "attempt": {"_count": 2}, "shift": {"_count": 1}, "look": {"_count": 3}, "reveal": {"_count": 1}, "use": {"_count": 2}, "do": {"_count": 1}, "pass": {"_count": 1}, "resurface": {"_count": 1}, "move": {"_count": 1}, "touch": {"_count": 1}, "remain": {"_count": 1}, "open": {"_count": 2}, "by": {"_count": 1}}, "clothes": {"_count": 1, "": {"_count": 1}}, "Him": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "apprehended": {"_count": 1, "": {"_count": 1}}, "conjure": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "wearing": {"_count": 9, "that": {"_count": 1}, "anything": {"_count": 1}, "wizards": {"_count": 1}, "radishes": {"_count": 1}, "his": {"_count": 2}, "a": {"_count": 1}, "nightclothes": {"_count": 1}, "glasses": {"_count": 1}}, "what": {"_count": 12, "youd": {"_count": 1}, "someone": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 2}, "you": {"_count": 1}, "I": {"_count": 3}, "they": {"_count": 1}, "happened": {"_count": 1}, "we": {"_count": 1}}, "joking": {"_count": 1, "Mr": {"_count": 1}}, "joined": {"_count": 2, "the": {"_count": 2}}, "useful": {"_count": 1, "Hermione": {"_count": 1}}, "eaten": {"_count": 2, "for": {"_count": 1}, "much": {"_count": 1}}, "baseless": {"_count": 1, "": {"_count": 1}}, "schoolwork": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "everyones": {"_count": 1, "got": {"_count": 1}}, "entirely": {"_count": 14, "normal": {"_count": 1}, "reliable": {"_count": 1}, "hide": {"_count": 1}, "sure": {"_count": 5}, "true": {"_count": 1}, "obscure": {"_count": 1}, "unexpected": {"_count": 1}, "truthfully": {"_count": 1}, "worthless": {"_count": 1}, "blame": {"_count": 1}}, "stop": {"_count": 12, "himself": {"_count": 6}, "And": {"_count": 1}, "arguing": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 1}, "him": {"_count": 1}}, "meaning": {"_count": 1, "that": {"_count": 1}}, "Thomas": {"_count": 1, "but": {"_count": 1}}, "reveal": {"_count": 1, "that": {"_count": 1}}, "native": {"_count": 1, "birds": {"_count": 1}}, "smooth": {"_count": 2, "at": {"_count": 1}, "was": {"_count": 1}}, "extend": {"_count": 1, "to": {"_count": 1}}, "resume": {"_count": 1, "their": {"_count": 1}}, "smile": {"_count": 5, "or": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 3}}, "alone": {"_count": 6, "in": {"_count": 3}, "she": {"_count": 1}, "despite": {"_count": 1}, "": {"_count": 1}}, "wink": {"_count": 1, "at": {"_count": 1}}, "make": {"_count": 14, "a": {"_count": 2}, "it": {"_count": 4}, "out": {"_count": 3}, "him": {"_count": 2}, "the": {"_count": 1}, "any": {"_count": 1}, "me": {"_count": 1}}, "persuade": {"_count": 1, "an": {"_count": 1}}, "Ludo": {"_count": 1, "said": {"_count": 1}}, "inviting": {"_count": 1, "it": {"_count": 1}}, "running": {"_count": 1, "around": {"_count": 1}}, "enjoying": {"_count": 3, "myself": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}}, "talk": {"_count": 7, "to": {"_count": 2}, "like": {"_count": 1}, "about": {"_count": 2}, "freely": {"_count": 1}, "much": {"_count": 1}}, "talking": {"_count": 12, "to": {"_count": 4}, "": {"_count": 2}, "about": {"_count": 6}}, "ashamed": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "sposed": {"_count": 1, "ter": {"_count": 1}}, "happy": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "needed": {"_count": 1, "to": {"_count": 1}}, "believing": {"_count": 1, "him": {"_count": 1}}, "simple": {"_count": 1, "spells": {"_count": 1}}, "reflecting": {"_count": 1, "the": {"_count": 1}}, "drawnout": {"_count": 1, "": {"_count": 1}}, "swerved": {"_count": 1, "away": {"_count": 1}}, "push": {"_count": 1, "it": {"_count": 1}}, "near": {"_count": 1, "enough": {"_count": 1}}, "Hagrid": {"_count": 4, "told": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}}, "hibernate": {"_count": 1, "and": {"_count": 1}}, "appreciate": {"_count": 4, "being": {"_count": 2}, "the": {"_count": 1}, "it": {"_count": 1}}, "spew": {"_count": 1, "Ron": {"_count": 1}}, "barging": {"_count": 1, "into": {"_count": 1}}, "foraged": {"_count": 1, "for": {"_count": 1}}, "sunk": {"_count": 2, "so": {"_count": 1}, "in": {"_count": 1}}, "insulting": {"_count": 2, "my": {"_count": 1}, "Mr": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "insist": {"_count": 1, "upon": {"_count": 1}}, "dancing": {"_count": 1, "he": {"_count": 1}}, "fit": {"_count": 2, "into": {"_count": 1}, "to": {"_count": 1}}, "she": {"_count": 4, "sighed": {"_count": 2}, "said": {"_count": 2}}, "tripping": {"_count": 1, "over": {"_count": 1}}, "well": {"_count": 3, "at": {"_count": 1}, "he": {"_count": 1}, "of": {"_count": 1}}, "jealously": {"_count": 1, "guard": {"_count": 1}}, "melt": {"_count": 1, "of": {"_count": 1}}, "forgotten": {"_count": 8, "the": {"_count": 3}, "what": {"_count": 1}, "you": {"_count": 1}, "are": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 1}}, "among": {"_count": 1, "them": {"_count": 1}}, "monsters": {"_count": 1, "": {"_count": 1}}, "mentioning": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "sound": {"_count": 7, "as": {"_count": 3}, "like": {"_count": 2}, "very": {"_count": 2}}, "halfgiant": {"_count": 1, "": {"_count": 1}}, "botherin": {"_count": 1, "with": {"_count": 1}}, "more": {"_count": 2, "so": {"_count": 1}, "than": {"_count": 1}}, "wail": {"_count": 1, "": {"_count": 1}}, "concentrating": {"_count": 1, "on": {"_count": 1}}, "or": {"_count": 3, "how": {"_count": 1}, "would": {"_count": 1}, "else": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}}, "found": {"_count": 4, "the": {"_count": 1}, "it": {"_count": 2}, "out": {"_count": 1}}, "icy": {"_count": 1, "water": {"_count": 1}}, "Lest": {"_count": 1, "what": {"_count": 1}}, "showing": {"_count": 3, "signs": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "merely": {"_count": 3, "his": {"_count": 1}, "seen": {"_count": 1}, "through": {"_count": 1}}, "tolerate": {"_count": 2, "your": {"_count": 1}, "another": {"_count": 1}}, "his": {"_count": 8, "equals": {"_count": 1}, "fault": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}, "master": {"_count": 1}, "own": {"_count": 1}, "soul": {"_count": 1}}, "surprising": {"_count": 1, "": {"_count": 1}}, "immediately": {"_count": 8, "distinguishable": {"_count": 1}, "register": {"_count": 2}, "open": {"_count": 1}, "recognized": {"_count": 1}, "respond": {"_count": 1}, "sure": {"_count": 1}, "noticed": {"_count": 1}}, "nosy": {"_count": 1, "": {"_count": 1}}, "judge": {"_count": 3, "us": {"_count": 1}, "her": {"_count": 1}, "how": {"_count": 1}}, "handwritten": {"_count": 1, "but": {"_count": 1}}, "another": {"_count": 2, "skrewt": {"_count": 1}, "word": {"_count": 1}}, "set": {"_count": 3, "a": {"_count": 1}, "off": {"_count": 1}, "forth": {"_count": 1}}, "spring": {"_count": 1, "to": {"_count": 1}}, "acting": {"_count": 2, "normally": {"_count": 1}, "": {"_count": 1}}, "ruined": {"_count": 1, "everything": {"_count": 1}}, "recognize": {"_count": 11, "": {"_count": 1}, "him": {"_count": 2}, "with": {"_count": 1}, "your": {"_count": 1}, "for": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 3}, "all": {"_count": 1}}, "tell": {"_count": 35, "whether": {"_count": 3}, "you": {"_count": 3}, "lies": {"_count": 15}, "somebody": {"_count": 1}, "anyone": {"_count": 1}, "anybody": {"_count": 2}, "poor": {"_count": 1}, "him": {"_count": 2}, "who": {"_count": 1}, "her": {"_count": 2}, "Kreacher": {"_count": 1}, "us": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}}, "hit": {"_count": 2, "the": {"_count": 2}}, "blink": {"_count": 1, "look": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "however": {"_count": 3, "a": {"_count": 1}, "have": {"_count": 1}, "alone": {"_count": 1}}, "bind": {"_count": 2, "him": {"_count": 2}}, "give": {"_count": 8, "you": {"_count": 1}, "us": {"_count": 1}, "Cho": {"_count": 1}, "the": {"_count": 3}, "to": {"_count": 1}, "ourselves": {"_count": 1}}, "fasten": {"_count": 1, "the": {"_count": 1}}, "Siriuss": {"_count": 1, "only": {"_count": 1}}, "consider": {"_count": 2, "of": {"_count": 1}, "it": {"_count": 1}}, "spoken": {"_count": 5, "for": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 1}, "at": {"_count": 1}}, "worrying": {"_count": 1, "about": {"_count": 1}}, "told": {"_count": 8, "Ron": {"_count": 2}, "about": {"_count": 1}, "them": {"_count": 2}, "anybody": {"_count": 1}, "me": {"_count": 1}, "Hermione": {"_count": 1}}, "Harrys": {"_count": 2, "responsibility": {"_count": 1}, "fault": {"_count": 1}}, "till": {"_count": 1, "tonight": {"_count": 1}}, "feeling": {"_count": 4, "quite": {"_count": 1}, "well": {"_count": 1}, "er": {"_count": 1}, "at": {"_count": 1}}, "letting": {"_count": 3, "him": {"_count": 1}, "us": {"_count": 1}, "Hagrid": {"_count": 1}}, "permanent": {"_count": 1, "the": {"_count": 1}}, "crouching": {"_count": 1, "as": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "seen": {"_count": 14, "it": {"_count": 1}, "so": {"_count": 1}, "sunlight": {"_count": 1}, "Malfoy": {"_count": 1}, "him": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hannah": {"_count": 1}, "or": {"_count": 1}, "what": {"_count": 1}, "Dudleys": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "and": {"_count": 1}}, "The": {"_count": 2, "spider": {"_count": 1}, "Snitch": {"_count": 1}}, "how": {"_count": 2, "its": {"_count": 1}, "many": {"_count": 1}}, "unclench": {"_count": 1, "the": {"_count": 1}}, "reply": {"_count": 6, "he": {"_count": 2}, "they": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}}, "block": {"_count": 1, "the": {"_count": 1}}, "rise": {"_count": 2, "again": {"_count": 1}, "to": {"_count": 1}}, "forget": {"_count": 7, "": {"_count": 2}, "it": {"_count": 1}, "that": {"_count": 3}, "Destination": {"_count": 1}}, "Wormtail": {"_count": 4, "": {"_count": 4}}, "renounced": {"_count": 1, "the": {"_count": 1}}, "Crabbe": {"_count": 1, "": {"_count": 1}}, "foreseen": {"_count": 2, "": {"_count": 2}}, "pretend": {"_count": 7, "to": {"_count": 2}, "any": {"_count": 1}, "not": {"_count": 1}, "now": {"_count": 1}, "that": {"_count": 1}, "Lucius": {"_count": 1}}, "hope": {"_count": 1, "that": {"_count": 1}}, "possess": {"_count": 1, "her": {"_count": 1}}, "bow": {"_count": 1, "": {"_count": 1}}, "laughing": {"_count": 3, "now": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "survive": {"_count": 1, "contact": {"_count": 1}}, "disappear": {"_count": 1, "they": {"_count": 1}}, "conquer": {"_count": 1, "him": {"_count": 1}}, "Alastor": {"_count": 1, "Moody": {"_count": 1}}, "saved": {"_count": 1, "me": {"_count": 1}}, "enslaved": {"_count": 1, "as": {"_count": 1}}, "watchful": {"_count": 1, "enough": {"_count": 1}}, "noticed": {"_count": 8, "all": {"_count": 1}, "her": {"_count": 2}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "until": {"_count": 1}}, "care": {"_count": 23, "he": {"_count": 2}, "very": {"_count": 1}, "how": {"_count": 2}, "what": {"_count": 2}, "for": {"_count": 2}, "not": {"_count": 1}, "if": {"_count": 2}, "": {"_count": 5}, "less": {"_count": 1}, "about": {"_count": 2}, "Slughorns": {"_count": 1}, "He": {"_count": 1}, "then": {"_count": 1}}, "work": {"_count": 5, "properly": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 2}, "nothing": {"_count": 1}}, "continue": {"_count": 4, "": {"_count": 2}, "fighting": {"_count": 1}, "but": {"_count": 1}}, "agree": {"_count": 1, "Dumbledore": {"_count": 1}}, "need": {"_count": 19, "her": {"_count": 1}, "Ron": {"_count": 1}, "to": {"_count": 9}, "telling": {"_count": 2}, "Hermione": {"_count": 1}, "Hermiones": {"_count": 1}, "it": {"_count": 1}, "finding": {"_count": 1}, "protection": {"_count": 1}, "a": {"_count": 1}}, "addled": {"_count": 1, "his": {"_count": 1}}, "remain": {"_count": 2, "loyal": {"_count": 1}, "in": {"_count": 1}}, "yelled": {"_count": 1, "or": {"_count": 1}}, "stand": {"_count": 9, "united": {"_count": 1}, "any": {"_count": 1}, "wizard": {"_count": 1}, "it": {"_count": 2}, "this": {"_count": 1}, "being": {"_count": 1}, "up": {"_count": 1}, "lying": {"_count": 1}}, "unexpected": {"_count": 1, "changes": {"_count": 1}}, "blame": {"_count": 6, "him": {"_count": 1}, "you": {"_count": 1}, "Ron": {"_count": 2}, "Ogden": {"_count": 1}, "her": {"_count": 1}}, "spposed": {"_count": 1, "ter": {"_count": 1}}, "steer": {"_count": 1, "said": {"_count": 1}}, "electronic": {"_count": 1, "bugs": {"_count": 1}}, "Oh": {"_count": 1, "yes": {"_count": 1}}, "slow": {"_count": 2, "down": {"_count": 2}}, "endear": {"_count": 1, "him": {"_count": 1}}, "perhaps": {"_count": 2, "very": {"_count": 1}, "have": {"_count": 1}}, "recognized": {"_count": 3, "for": {"_count": 1}, "it": {"_count": 1}, "until": {"_count": 1}}, "bringing": {"_count": 2, "you": {"_count": 1}, "trouble": {"_count": 1}}, "possibly": {"_count": 2, "know": {"_count": 2}}, "remotely": {"_count": 4, "afraid": {"_count": 1}, "hungry": {"_count": 1}, "interested": {"_count": 1}, "pleased": {"_count": 1}}, "turn": {"_count": 4, "around": {"_count": 1}, "Kreacher": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}}, "cheek": {"_count": 1, "Dud": {"_count": 1}}, "made": {"_count": 6, "": {"_count": 2}, "a": {"_count": 1}, "ter": {"_count": 1}, "additional": {"_count": 1}, "himself": {"_count": 1}}, "respond": {"_count": 4, "Uncle": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "definitely": {"_count": 1, "expelled": {"_count": 1}}, "narrowed": {"_count": 1, "in": {"_count": 1}}, "staying": {"_count": 3, "here": {"_count": 1}, "behind": {"_count": 1}, "for": {"_count": 1}}, "endangering": {"_count": 1, "my": {"_count": 1}}, "lower": {"_count": 2, "his": {"_count": 2}}, "relax": {"_count": 1, "his": {"_count": 1}}, "combed": {"_count": 1, "his": {"_count": 1}}, "discussing": {"_count": 3, "anything": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}}, "bothered": {"_count": 1, "tidying": {"_count": 1}}, "invisible": {"_count": 1, "it": {"_count": 1}}, "pass": {"_count": 1, "directly": {"_count": 1}}, "welcoming": {"_count": 1, "some": {"_count": 1}}, "likely": {"_count": 4, "to": {"_count": 3}, "that": {"_count": 1}}, "writing": {"_count": 1, "for": {"_count": 1}}, "\u2018spew": {"_count": 1, "": {"_count": 1}}, "close": {"_count": 2, "and": {"_count": 1}, "your": {"_count": 1}}, "smoke": {"_count": 1, "that": {"_count": 1}}, "since": {"_count": 3, "my": {"_count": 1}, "Voldemort": {"_count": 1}, "Sirius": {"_count": 1}}, "giving": {"_count": 5, "anything": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "back": {"_count": 1}, "away": {"_count": 1}}, "down": {"_count": 2, "to": {"_count": 1}, "there": {"_count": 1}}, "James": {"_count": 2, "Sirius": {"_count": 1}, "": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "argue": {"_count": 4, "": {"_count": 2}, "though": {"_count": 1}, "do": {"_count": 1}}, "lying": {"_count": 4, "awake": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "laugh": {"_count": 5, "he": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}}, "thought": {"_count": 6, "about": {"_count": 2}, "Harry": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 2}}, "dropped": {"_count": 1, "by": {"_count": 1}}, "chew": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 5, "to": {"_count": 1}, "Dumbledore": {"_count": 1}, "me": {"_count": 2}, "you": {"_count": 1}}, "stir": {"_count": 5, "as": {"_count": 1}, "": {"_count": 2}, "our": {"_count": 1}, "but": {"_count": 1}}, "required": {"_count": 1, "to": {"_count": 1}}, "expelled": {"_count": 1, "from": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "elaborate": {"_count": 4, "": {"_count": 3}, "so": {"_count": 1}}, "figments": {"_count": 1, "of": {"_count": 1}}, "object": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}}, "blustered": {"_count": 1, "Fudge": {"_count": 1}}, "press": {"_count": 4, "charges": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}}, "relevant": {"_count": 1, "to": {"_count": 1}}, "finished": {"_count": 5, "": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}, "when": {"_count": 1}, "his": {"_count": 1}}, "wait": {"_count": 5, "to": {"_count": 5}}, "me": {"_count": 4, "": {"_count": 2}, "Harry": {"_count": 1}, "Im": {"_count": 1}}, "notice": {"_count": 5, "arms": {"_count": 1}, "": {"_count": 1}, "Goyle": {"_count": 1}, "what": {"_count": 1}, "if": {"_count": 1}}, "belong": {"_count": 2, "to": {"_count": 2}}, "better": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "Rons": {"_count": 2, "fault": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 1, "compromised": {"_count": 1}}, "detect": {"_count": 1, "any": {"_count": 1}}, "packed": {"_count": 3, "Sirius": {"_count": 1}, "": {"_count": 1}, "any": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "keeping": {"_count": 1, "a": {"_count": 1}}, "poisonous": {"_count": 1, "he": {"_count": 1}}, "misunderstood": {"_count": 1, "it": {"_count": 1}}, "hesitate": {"_count": 2, "to": {"_count": 1}, "but": {"_count": 1}}, "downright": {"_count": 1, "dangerous": {"_count": 1}}, "bring": {"_count": 7, "the": {"_count": 2}, "it": {"_count": 1}, "himself": {"_count": 2}, "myself": {"_count": 1}, "you": {"_count": 1}}, "explain": {"_count": 5, "to": {"_count": 1}, "how": {"_count": 1}, "ow": {"_count": 1}, "even": {"_count": 1}, "so": {"_count": 1}}, "nurtured": {"_count": 1, "and": {"_count": 1}}, "enjoyable": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "appeared": {"_count": 1, "that": {"_count": 1}}, "Im": {"_count": 2, "a": {"_count": 1}, "just": {"_count": 1}}, "bothering": {"_count": 4, "": {"_count": 1}, "him": {"_count": 2}, "to": {"_count": 1}}, "emerging": {"_count": 1, "until": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "real": {"_count": 2, "fans": {"_count": 1}, "": {"_count": 1}}, "puncture": {"_count": 1, "the": {"_count": 1}}, "added": {"_count": 1, "syrup": {"_count": 1}}, "cheered": {"_count": 1, "up": {"_count": 1}}, "qualified": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 7, "Miss": {"_count": 1}, "Mr": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 3}, "ter": {"_count": 1}}, "flinch": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 8, "it": {"_count": 2}, "": {"_count": 5}, "his": {"_count": 1}}, "brisk": {"_count": 1, "crisp": {"_count": 1}}, "warned": {"_count": 1, "them": {"_count": 1}}, "finishing": {"_count": 1, "his": {"_count": 1}}, "count": {"_count": 2, "as": {"_count": 1}, "on": {"_count": 1}}, "already": {"_count": 1, "given": {"_count": 1}}, "worse": {"_count": 1, "in": {"_count": 1}}, "achieve": {"_count": 1, "an": {"_count": 1}}, "usually": {"_count": 7, "attempt": {"_count": 1}, "take": {"_count": 1}, "content": {"_count": 1}, "inhabited": {"_count": 1}, "lie": {"_count": 1}, "leave": {"_count": 1}, "appear": {"_count": 1}}, "given": {"_count": 3, "homework": {"_count": 1}, "a": {"_count": 1}, "yourself": {"_count": 1}}, "offending": {"_count": 1, "the": {"_count": 1}}, "ink": {"_count": 1, "but": {"_count": 1}}, "written": {"_count": 1, "a": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "fabulous": {"_count": 1, "she": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "dawdled": {"_count": 1, "in": {"_count": 1}}, "embarrassed": {"_count": 1, "himself": {"_count": 1}}, "covering": {"_count": 1, "your": {"_count": 1}}, "Callisto": {"_count": 1, "she": {"_count": 1}}, "allow": {"_count": 2, "family": {"_count": 1}, "it": {"_count": 1}}, "mice": {"_count": 1, "Harry": {"_count": 1}}, "perfectly": {"_count": 2, "okay": {"_count": 1}, "sure": {"_count": 1}}, "approve": {"_count": 1, "": {"_count": 1}}, "inspecting": {"_count": 1, "their": {"_count": 1}}, "precisely": {"_count": 1, "the": {"_count": 1}}, "George": {"_count": 1, "was": {"_count": 1}}, "See": {"_count": 1, "upon": {"_count": 1}}, "whispering": {"_count": 1, "but": {"_count": 1}}, "yours": {"_count": 3, "that": {"_count": 2}, "nor": {"_count": 1}}, "include": {"_count": 1, "inviting": {"_count": 1}}, "complain": {"_count": 4, "during": {"_count": 1}, "that": {"_count": 2}, "because": {"_count": 1}}, "generally": {"_count": 1, "permit": {"_count": 1}}, "present": {"_count": 3, "much": {"_count": 1}, "a": {"_count": 1}, "Slughorn": {"_count": 1}}, "therefore": {"_count": 1, "magic": {"_count": 1}}, "follow": {"_count": 3, "Professor": {"_count": 1}, "Malfoy": {"_count": 1}, "": {"_count": 1}}, "permit": {"_count": 5, "it": {"_count": 2}, "you": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 1}}, "youve": {"_count": 1, "beaten": {"_count": 1}}, "smashed": {"_count": 1, "the": {"_count": 1}}, "good": {"_count": 3, "at": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}}, "outofbounds": {"_count": 1, "I": {"_count": 1}}, "imagine": {"_count": 7, "what": {"_count": 1}, "but": {"_count": 1}, "Fred": {"_count": 1}, "for": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "how": {"_count": 1}}, "wasting": {"_count": 1, "an": {"_count": 1}}, "wrong": {"_count": 1, "mumbled": {"_count": 1}}, "fussy": {"_count": 1, "where": {"_count": 1}}, "find": {"_count": 10, "this": {"_count": 2}, "it": {"_count": 1}, "words": {"_count": 2}, "these": {"_count": 1}, "out": {"_count": 1}, "a": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 1}}, "teaching": {"_count": 1, "she": {"_count": 1}}, "due": {"_count": 1, "in": {"_count": 1}}, "technically": {"_count": 1, "doing": {"_count": 1}}, "unless": {"_count": 2, "theyre": {"_count": 1}, "they": {"_count": 1}}, "improve": {"_count": 2, "as": {"_count": 2}}, "ideal": {"_count": 1, "weather": {"_count": 1}}, "meant": {"_count": 6, "to": {"_count": 5}, "ter": {"_count": 1}}, "happening": {"_count": 2, "fast": {"_count": 1}, "quickly": {"_count": 1}}, "around": {"_count": 1, "because": {"_count": 1}}, "mind": {"_count": 4, "sir": {"_count": 1}, "Luna": {"_count": 1}, "in": {"_count": 1}, "too": {"_count": 1}}, "high": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "expected": {"_count": 11, "was": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}, "this": {"_count": 2}, "Dumbledore": {"_count": 1}, "it": {"_count": 3}, "Hermiones": {"_count": 1}, "to": {"_count": 1}}, "succeeding": {"_count": 1, "in": {"_count": 1}}, "ignore": {"_count": 1, "them": {"_count": 1}}, "performing": {"_count": 2, "to": {"_count": 1}, "up": {"_count": 1}}, "capable": {"_count": 1, "of": {"_count": 1}}, "wince": {"_count": 1, "": {"_count": 1}}, "matter": {"_count": 9, "that": {"_count": 1}, "however": {"_count": 1}, "nothing": {"_count": 1}, "there": {"_count": 1}, "tonight": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "The": {"_count": 1}, "about": {"_count": 1}}, "restrained": {"_count": 1, "him": {"_count": 1}}, "unreasonable": {"_count": 1, "Professor": {"_count": 1}}, "feel": {"_count": 11, "as": {"_count": 3}, "more": {"_count": 2}, "any": {"_count": 1}, "them": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}}, "bear": {"_count": 14, "to": {"_count": 13}, "it": {"_count": 1}}, "hidden": {"_count": 2, "by": {"_count": 2}}, "complimentin": {"_count": 1, "yeh": {"_count": 1}}, "hygien": {"_count": 1, "Hermione": {"_count": 1}}, "obscured": {"_count": 2, "by": {"_count": 2}}, "afraid": {"_count": 5, "of": {"_count": 3}, "to": {"_count": 1}, "": {"_count": 1}}, "hard": {"_count": 1, "ter": {"_count": 1}}, "manyd": {"_count": 1, "take": {"_count": 1}}, "black": {"_count": 1, "or": {"_count": 1}}, "greeted": {"_count": 1, "by": {"_count": 1}}, "imagined": {"_count": 1, "these": {"_count": 1}}, "contacted": {"_count": 1, "Harry": {"_count": 1}}, "regret": {"_count": 1, "his": {"_count": 1}}, "pull": {"_count": 2, "the": {"_count": 2}}, "mad": {"_count": 3, "": {"_count": 3}}, "realize": {"_count": 4, "how": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 2}}, "watching": {"_count": 3, "the": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}}, "Dumbledores": {"_count": 1, "writing": {"_count": 1}}, "seeing": {"_count": 2, "the": {"_count": 2}}, "occurred": {"_count": 2, "to": {"_count": 2}}, "confiding": {"_count": 2, "every": {"_count": 1}, "something": {"_count": 1}}, "inflict": {"_count": 1, "his": {"_count": 1}}, "obeyed": {"_count": 2, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}}, "run": {"_count": 2, "on": {"_count": 1}, "cheering": {"_count": 1}}, "stay": {"_count": 2, "long": {"_count": 1}, "to": {"_count": 1}}, "able": {"_count": 2, "to": {"_count": 2}}, "mention": {"_count": 2, "his": {"_count": 1}, "Quidditch": {"_count": 1}}, "beg": {"_count": 1, "for": {"_count": 1}}, "budge": {"_count": 4, "": {"_count": 4}}, "forcing": {"_count": 1, "himself": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "etched": {"_count": 1, "on": {"_count": 1}}, "weak": {"_count": 1, "said": {"_count": 1}}, "practiced": {"_count": 2, "": {"_count": 1}, "Occlumency": {"_count": 1}}, "weird": {"_count": 1, "at": {"_count": 1}}, "sweeping": {"_count": 1, "the": {"_count": 1}}, "satisfied": {"_count": 1, "with": {"_count": 1}}, "strictly": {"_count": 3, "related": {"_count": 1}, "on": {"_count": 1}, "speaking": {"_count": 1}}, "information": {"_count": 1, "relating": {"_count": 1}}, "once": {"_count": 4, "mentioned": {"_count": 1}, "but": {"_count": 2}, "see": {"_count": 1}}, "improving": {"_count": 1, "on": {"_count": 1}}, "last": {"_count": 2, "very": {"_count": 1}, "long": {"_count": 1}}, "suit": {"_count": 1, "Rita": {"_count": 1}}, "fussed": {"_count": 2, "about": {"_count": 1}, "really": {"_count": 1}}, "frightened": {"_count": 1, "": {"_count": 1}}, "betray": {"_count": 1, "his": {"_count": 1}}, "under": {"_count": 1, "threat": {"_count": 1}}, "shamming": {"_count": 1, "sleep": {"_count": 1}}, "cut": {"_count": 1, "deals": {"_count": 1}}, "breaking": {"_count": 1, "any": {"_count": 1}}, "illegal": {"_count": 1, "all": {"_count": 1}}, "drinking": {"_count": 1, "up": {"_count": 1}}, "play": {"_count": 3, "childish": {"_count": 1}, "games": {"_count": 1}, "due": {"_count": 1}}, "difficult": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "pause": {"_count": 2, "to": {"_count": 1}, "either": {"_count": 1}}, "while": {"_count": 2, "teachers": {"_count": 1}, "I": {"_count": 1}}, "Cho": {"_count": 1, "I": {"_count": 1}}, "emerge": {"_count": 2, "again": {"_count": 2}}, "reckoned": {"_count": 1, "on": {"_count": 1}}, "start": {"_count": 1, "nagging": {"_count": 1}}, "accept": {"_count": 1, "students": {"_count": 1}}, "proud": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "Moony": {"_count": 1, "so": {"_count": 1}}, "recovered": {"_count": 1, "from": {"_count": 1}}, "hell": {"_count": 1, "recover": {"_count": 1}}, "reach": {"_count": 1, "the": {"_count": 1}}, "confided": {"_count": 2, "in": {"_count": 2}}, "them": {"_count": 2, "": {"_count": 1}, "its": {"_count": 1}}, "fightin": {"_count": 1, "so": {"_count": 1}}, "settle": {"_count": 1, "to": {"_count": 1}}, "particularly": {"_count": 4, "keen": {"_count": 1}, "bothered": {"_count": 1}, "pleased": {"_count": 1}, "confident": {"_count": 1}}, "laid": {"_count": 1, "out": {"_count": 1}}, "sleep": {"_count": 2, "that": {"_count": 1}, "well": {"_count": 1}}, "suppress": {"_count": 5, "a": {"_count": 3}, "the": {"_count": 2}}, "mixed": {"_count": 1, "up": {"_count": 1}}, "planning": {"_count": 1, "on": {"_count": 1}}, "\u2018defense": {"_count": 1, "I": {"_count": 1}}, "convinced": {"_count": 4, "he": {"_count": 1}, "that": {"_count": 1}, "Fear": {"_count": 1}, "Hermione": {"_count": 1}}, "theyve": {"_count": 1, "taken": {"_count": 1}}, "prepared": {"_count": 1, "for": {"_count": 1}}, "attack": {"_count": 1, "foals": {"_count": 1}}, "acknowledge": {"_count": 1, "your": {"_count": 1}}, "welcome": {"_count": 4, "among": {"_count": 1}, "": {"_count": 3}}, "involved": {"_count": 1, "in": {"_count": 1}}, "They": {"_count": 1, "burst": {"_count": 1}}, "realized": {"_count": 4, "how": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "strike": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "jesting": {"_count": 1, "said": {"_count": 1}}, "unintell": {"_count": 1, "NOW": {"_count": 1}}, "reached": {"_count": 1, "in": {"_count": 1}}, "break": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "support": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "reappear": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "reappearing": {"_count": 1, "out": {"_count": 1}}, "writhe": {"_count": 1, "and": {"_count": 1}}, "seek": {"_count": 4, "to": {"_count": 2}, "another": {"_count": 1}, "personal": {"_count": 1}}, "satisfy": {"_count": 1, "me": {"_count": 1}}, "wood": {"_count": 1, "": {"_count": 1}}, "hold": {"_count": 1, "his": {"_count": 1}}, "flinched": {"_count": 1, "or": {"_count": 1}}, "wonder": {"_count": 1, "why": {"_count": 1}}, "teach": {"_count": 1, "you": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "returned": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}}, "SecretKeeper": {"_count": 1, "for": {"_count": 1}}, "disobey": {"_count": 1, "a": {"_count": 1}}, "Kreacher": {"_count": 1, "would": {"_count": 1}}, "understood": {"_count": 3, "Sirius": {"_count": 1}, "me": {"_count": 1}, "any": {"_count": 1}}, "okay": {"_count": 1, "for": {"_count": 1}}, "soften": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "whether": {"_count": 3, "it": {"_count": 1}, "he": {"_count": 1}, "Snape": {"_count": 1}}, "paused": {"_count": 1, "in": {"_count": 1}}, "Nevilles": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "kill": {"_count": 4, "you": {"_count": 1}, "him": {"_count": 2}, "who": {"_count": 1}}, "dreamed": {"_count": 1, "when": {"_count": 1}}, "warn": {"_count": 2, "his": {"_count": 1}, "you": {"_count": 1}}, "But": {"_count": 1, "I": {"_count": 1}}, "gone": {"_count": 2, "to": {"_count": 2}}, "ready": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "talked": {"_count": 1, "to": {"_count": 1}}, "referring": {"_count": 1, "to": {"_count": 1}}, "muster": {"_count": 2, "the": {"_count": 1}, "any": {"_count": 1}}, "spending": {"_count": 1, "enough": {"_count": 1}}, "honestly": {"_count": 1, "return": {"_count": 1}}, "anymore": {"_count": 2, "": {"_count": 2}}, "Scrimgeour": {"_count": 1, "cut": {"_count": 1}}, "trust": {"_count": 5, "me": {"_count": 3}, "him": {"_count": 1}, "Death": {"_count": 1}}, "attempt": {"_count": 3, "to": {"_count": 3}}, "forgiven": {"_count": 1, "we": {"_count": 1}}, "claim": {"_count": 1, "it": {"_count": 1}}, "mean": {"_count": 4, "him": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 1}, "very": {"_count": 1}}, "draw": {"_count": 3, "away": {"_count": 1}, "breath": {"_count": 2}}, "wake": {"_count": 1, "up": {"_count": 1}}, "shrug": {"_count": 1, "off": {"_count": 1}}, "doubt": {"_count": 1, "that": {"_count": 1}}, "challenge": {"_count": 1, "the": {"_count": 1}}, "uttered": {"_count": 1, "if": {"_count": 1}}, "then": {"_count": 1, "we": {"_count": 1}}, "waiting": {"_count": 1, "in": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "underestimate": {"_count": 2, "Lord": {"_count": 1}, "the": {"_count": 1}}, "known": {"_count": 4, "who": {"_count": 1}, "how": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "disappointed": {"_count": 1, "Slughorn": {"_count": 1}}, "shake": {"_count": 3, "me": {"_count": 1}, "off": {"_count": 2}}, "interrupted": {"_count": 1, "Dumbledore": {"_count": 1}}, "deprive": {"_count": 1, "Molly": {"_count": 1}}, "disguise": {"_count": 2, "the": {"_count": 2}}, "shrinking": {"_count": 1, "from": {"_count": 1}}, "five": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "secured": {"_count": 1, "the": {"_count": 1}}, "selling": {"_count": 2, "them": {"_count": 1}, "not": {"_count": 1}}, "currently": {"_count": 1, "going": {"_count": 1}}, "hurting": {"_count": 3, "again": {"_count": 1}, "precisely": {"_count": 1}, "you": {"_count": 1}}, "enjoy": {"_count": 1, "the": {"_count": 1}}, "hang": {"_count": 1, "around": {"_count": 1}}, "Slughorns": {"_count": 1, "only": {"_count": 1}}, "quick": {"_count": 1, "enough": {"_count": 1}}, "peer": {"_count": 1, "in": {"_count": 1}}, "dawdle": {"_count": 1, "": {"_count": 1}}, "pester": {"_count": 1, "you": {"_count": 1}}, "either": {"_count": 1, "are": {"_count": 1}}, "is": {"_count": 1, "she": {"_count": 1}}, "today": {"_count": 1, "said": {"_count": 1}}, "try": {"_count": 4, "for": {"_count": 1}, "an": {"_count": 1}, "any": {"_count": 1}, "to": {"_count": 1}}, "resent": {"_count": 1, "Hermione": {"_count": 1}}, "complete": {"_count": 1, "the": {"_count": 1}}, "keep": {"_count": 2, "asking": {"_count": 1}, "the": {"_count": 1}}, "ours": {"_count": 1, "said": {"_count": 1}}, "live": {"_count": 1, "to": {"_count": 1}}, "gettin": {"_count": 1, "better": {"_count": 1}}, "invited": {"_count": 1, "to": {"_count": 1}}, "cracked": {"_count": 1, "a": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "destined": {"_count": 1, "to": {"_count": 1}}, "fixed": {"_count": 1, "down": {"_count": 1}}, "met": {"_count": 1, "up": {"_count": 1}}, "unkindly": {"_count": 1, "go": {"_count": 1}}, "invite": {"_count": 1, "confidences": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "famed": {"_count": 1, "for": {"_count": 1}}, "tolerated": {"_count": 1, "at": {"_count": 1}}, "unheard": {"_count": 1, "of": {"_count": 1}}, "enjoyed": {"_count": 1, "trying": {"_count": 1}}, "wear": {"_count": 1, "off": {"_count": 1}}, "pathetic": {"_count": 1, "and": {"_count": 1}}, "resigning": {"_count": 1, "": {"_count": 1}}, "sped": {"_count": 1, "upward": {"_count": 1}}, "kissing": {"_count": 1, "Ron": {"_count": 1}}, "perform": {"_count": 1, "Legilimency": {"_count": 1}}, "Filch": {"_count": 1, "and": {"_count": 1}}, "interested": {"_count": 5, "said": {"_count": 1}, "in": {"_count": 3}, "": {"_count": 1}}, "confide": {"_count": 1, "in": {"_count": 1}}, "fooled": {"_count": 1, "for": {"_count": 1}}, "oblige": {"_count": 1, "so": {"_count": 1}}, "\u2018the": {"_count": 1, "Chosen": {"_count": 1}}, "Minister": {"_count": 1, "anymore": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "die": {"_count": 1, "when": {"_count": 1}}, "changed": {"_count": 1, "": {"_count": 1}}, "deserve": {"_count": 2, "it": {"_count": 1}, "to": {"_count": 1}}, "carried": {"_count": 1, "an": {"_count": 1}}, "copy": {"_count": 1, "the": {"_count": 1}}, "linger": {"_count": 2, "over": {"_count": 1}, "at": {"_count": 1}}, "genial": {"_count": 1, "anymore": {"_count": 1}}, "question": {"_count": 1, "Slughorn": {"_count": 1}}, "moved": {"_count": 2, "but": {"_count": 1}, "a": {"_count": 1}}, "cause": {"_count": 1, "the": {"_count": 1}}, "decide": {"_count": 1, "which": {"_count": 1}}, "setting": {"_count": 1, "a": {"_count": 1}}, "eased": {"_count": 1, "by": {"_count": 1}}, "insult": {"_count": 1, "Harry": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "banish": {"_count": 1, "the": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "tired": {"_count": 1, "of": {"_count": 1}}, "Voldemorts": {"_count": 1, "first": {"_count": 1}}, "resist": {"_count": 2, "an": {"_count": 1}, "could": {"_count": 1}}, "those": {"_count": 1, "Harry": {"_count": 1}}, "call": {"_count": 2, "me": {"_count": 1}, "him": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "\u2018Dugbogs": {"_count": 1, "and": {"_count": 1}}, "slept": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "realizing": {"_count": 1, "it": {"_count": 1}}, "alive": {"_count": 1, "it": {"_count": 1}}, "lift": {"_count": 1, "Harrys": {"_count": 1}}, "proved": {"_count": 2, "soothing": {"_count": 1}, "myself": {"_count": 1}}, "crack": {"_count": 1, "a": {"_count": 1}}, "twelve": {"_count": 1, "hours": {"_count": 1}}, "surprise": {"_count": 1, "him": {"_count": 1}}, "altogether": {"_count": 3, "surprised": {"_count": 1}, "truthfully": {"_count": 1}, "compensate": {"_count": 1}}, "large": {"_count": 1, "": {"_count": 1}}, "health": {"_count": 1, "but": {"_count": 1}}, "turnin": {"_count": 1, "yeh": {"_count": 1}}, "givin": {"_count": 1, "Harry": {"_count": 1}}, "evryone": {"_count": 1, "appreciates": {"_count": 1}}, "drink": {"_count": 1, "so": {"_count": 1}}, "surprised": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "enhance": {"_count": 1, "his": {"_count": 1}}, "seven": {"_count": 1, "Horcruxes": {"_count": 1}}, "congratulate": {"_count": 1, "ourselves": {"_count": 1}}, "advance": {"_count": 1, "us": {"_count": 1}}, "secretly": {"_count": 1, "glad": {"_count": 1}}, "forced": {"_count": 1, "your": {"_count": 1}}, "penetrate": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 1}}, "immortality": {"_count": 1, "or": {"_count": 1}}, "unique": {"_count": 1, "in": {"_count": 1}}, "occur": {"_count": 2, "to": {"_count": 2}}, "meet": {"_count": 2, "them": {"_count": 1}, "another": {"_count": 1}}, "defending": {"_count": 1, "what": {"_count": 1}}, "vacated": {"_count": 1, "it": {"_count": 1}}, "dared": {"_count": 1, "to": {"_count": 1}}, "dropping": {"_count": 1, "it": {"_count": 1}}, "pretty": {"_count": 1, "she": {"_count": 1}}, "paying": {"_count": 2, "much": {"_count": 1}, "attention": {"_count": 1}}, "value": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "inherited": {"_count": 1, "my": {"_count": 1}}, "advise": {"_count": 1, "incidentally": {"_count": 1}}, "knock": {"_count": 1, "upon": {"_count": 1}}, "upset": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "change": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "suggest": {"_count": 1, "that": {"_count": 1}}, "vary": {"_count": 1, "on": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "comfortably": {"_count": 1, "sit": {"_count": 1}}, "vanish": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "recognizing": {"_count": 1, "potions": {"_count": 1}}, "confronted": {"_count": 1, "you": {"_count": 1}}, "disgust": {"_count": 1, "me": {"_count": 1}}, "eliminated": {"_count": 1, "all": {"_count": 1}}, "happened": {"_count": 2, "": {"_count": 1}, "yet": {"_count": 1}}, "magic": {"_count": 1, "but": {"_count": 1}}, "escape": {"_count": 1, "he": {"_count": 1}}, "transformed": {"_count": 1, "at": {"_count": 1}}, "Lupin": {"_count": 1, "collapsed": {"_count": 1}}, "rreally": {"_count": 1, "important": {"_count": 1}}, "love": {"_count": 3, "me": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "weesh": {"_count": 1, "to": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "spared": {"_count": 1, "Malfoy": {"_count": 1}}, "unpleasant": {"_count": 1, "": {"_count": 1}}, "cry": {"_count": 1, "she": {"_count": 1}}, "counted": {"_count": 1, "on": {"_count": 1}}, "discovered": {"_count": 1, "before": {"_count": 1}}, "missed": {"_count": 1, "by": {"_count": 1}}, "demonstrate": {"_count": 1, "her": {"_count": 1}}, "encourage": {"_count": 1, "many": {"_count": 1}}, "alike": {"_count": 1, "Aberforth": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "answered": {"_count": 1, "honestly": {"_count": 1}}, "adorned": {"_count": 1, "with": {"_count": 1}}, "waver": {"_count": 2, "from": {"_count": 2}}, "ze": {"_count": 1, "ole": {"_count": 1}}, "their": {"_count": 1, "fault": {"_count": 1}}, "goin": {"_count": 1, "anywhere": {"_count": 1}}, "returning": {"_count": 1, "yet": {"_count": 1}}, "mine": {"_count": 1, "I": {"_count": 1}}, "grasped": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 3, "destroyed": {"_count": 1}, "true": {"_count": 2}}, "built": {"_count": 1, "to": {"_count": 1}}, "tearful": {"_count": 1, "that": {"_count": 1}}, "messing": {"_count": 1, "her": {"_count": 1}}, "retorted": {"_count": 1, "Hermione": {"_count": 1}}, "touched": {"_count": 1, "by": {"_count": 1}}, "desire": {"_count": 1, "what": {"_count": 1}}, "was": {"_count": 1, "unprecedented": {"_count": 1}}, "upon": {"_count": 2, "the": {"_count": 2}}, "repress": {"_count": 1, "it": {"_count": 1}}, "mistaken": {"_count": 1, "said": {"_count": 1}}, "anticipated": {"_count": 1, "or": {"_count": 1}}, "involve": {"_count": 1, "a": {"_count": 1}}, "reassured": {"_count": 1, "but": {"_count": 1}}, "where": {"_count": 2, "theyll": {"_count": 1}, "and": {"_count": 1}}, "splitting": {"_count": 1, "up": {"_count": 1}}, "fight": {"_count": 1, "the": {"_count": 1}}, "affect": {"_count": 2, "him": {"_count": 2}}, "trusted": {"_count": 1, "never": {"_count": 1}}, "hed": {"_count": 1, "want": {"_count": 1}}, "betrayed": {"_count": 1, "Sirius": {"_count": 1}}, "destroy": {"_count": 1, "the": {"_count": 1}}, "related": {"_count": 1, "": {"_count": 1}}, "carry": {"_count": 1, "to": {"_count": 1}}, "react": {"_count": 1, "the": {"_count": 1}}, "stealing": {"_count": 1, "is": {"_count": 1}}, "tune": {"_count": 1, "in": {"_count": 1}}, "require": {"_count": 2, "cleaning": {"_count": 1}, "assistance": {"_count": 1}}, "discuss": {"_count": 2, "Ron": {"_count": 1}, "it": {"_count": 1}}, "hide": {"_count": 1, "it": {"_count": 1}}, "persuaded": {"_count": 1, "the": {"_count": 1}}, "living": {"_count": 1, "thought": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "topple": {"_count": 1, "over": {"_count": 1}}, "lead": {"_count": 1, "him": {"_count": 1}}, "drawn": {"_count": 1, "the": {"_count": 1}}, "cried": {"_count": 1, "all": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "comforting": {"_count": 1, "his": {"_count": 1}}, "widely": {"_count": 1, "known": {"_count": 1}}, "decent": {"_count": 1, "": {"_count": 1}}, "throw": {"_count": 2, "off": {"_count": 1}, "it": {"_count": 1}}, "Dark": {"_count": 1, "Magic": {"_count": 1}}, "calling": {"_count": 2, "for": {"_count": 1}, "Voldemort": {"_count": 1}}, "deep": {"_count": 1, "but": {"_count": 1}}, "weed": {"_count": 1, "The": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "finish": {"_count": 1, "it": {"_count": 1}}, "calm": {"_count": 1, "down": {"_count": 1}}, "visited": {"_count": 1, "by": {"_count": 1}}, "mar": {"_count": 1, "his": {"_count": 1}}, "shrink": {"_count": 1, "": {"_count": 1}}, "deign": {"_count": 1, "to": {"_count": 1}}, "pointing": {"_count": 1, "inward": {"_count": 1}}, "fail": {"_count": 1, "to": {"_count": 1}}, "truly": {"_count": 1, "belong": {"_count": 1}}, "unintelligent": {"_count": 1, "but": {"_count": 1}}, "contradict": {"_count": 1, "him": {"_count": 1}}, "locate": {"_count": 1, "it": {"_count": 1}}, "elder": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "invisible": {"_count": 1}}, "seeking": {"_count": 1, "a": {"_count": 1}}, "yield": {"_count": 2, "": {"_count": 1}, "its": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "big": {"_count": 1, "enough": {"_count": 1}}, "separate": {"_count": 1, "from": {"_count": 1}}, "resemble": {"_count": 1, "Ollivanders": {"_count": 1}}, "capture": {"_count": 1, "the": {"_count": 1}}, "yorn": {"_count": 1, "missus": {"_count": 1}}, "win": {"_count": 1, "you": {"_count": 1}}, "begrudge": {"_count": 1, "you": {"_count": 1}}, "simply": {"_count": 1, "created": {"_count": 1}}, "catch": {"_count": 1, "he": {"_count": 1}}, "protest": {"_count": 1, "but": {"_count": 1}}, "visible": {"_count": 1, "here": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "explained": {"_count": 1, "before": {"_count": 1}}, "won": {"_count": 1, "the": {"_count": 1}}, "overheard": {"_count": 1, "tired": {"_count": 1}}, "heavy": {"_count": 1, "but": {"_count": 1}}, "lost": {"_count": 2, "the": {"_count": 1}, "hope": {"_count": 1}}, "multiply": {"_count": 1, "": {"_count": 1}}, "fall": {"_count": 1, "into": {"_count": 1}}, "relinquish": {"_count": 1, "it": {"_count": 1}}, "passed": {"_count": 1, "unnoticed": {"_count": 1}}, "Disapparate": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}, "suffer": {"_count": 1, "the": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "Creevey": {"_count": 1, "go": {"_count": 1}}, "encouraging": {"_count": 1, "": {"_count": 1}}, "blush": {"_count": 1, "but": {"_count": 1}}, "deaf": {"_count": 1, "the": {"_count": 1}}, "killing": {"_count": 1, "him": {"_count": 1}}, "ceased": {"_count": 1, "the": {"_count": 1}}, "lose": {"_count": 1, "sight": {"_count": 1}}, "hes": {"_count": 1, "not": {"_count": 1}}, "revealed": {"_count": 1, "the": {"_count": 1}}, "arguing": {"_count": 1, "anymore": {"_count": 1}}, "sneaking": {"_count": 1, "Now": {"_count": 1}}, "refer": {"_count": 1, "to": {"_count": 1}}, "save": {"_count": 1, "said": {"_count": 1}}, "raise": {"_count": 1, "a": {"_count": 1}}, "overcome": {"_count": 1, "him": {"_count": 1}}, "driver": {"_count": 1, "in": {"_count": 1}}, "concern": {"_count": 1, "him": {"_count": 1}}, "previously": {"_count": 1, "noticed": {"_count": 1}}, "minimize": {"_count": 1, "your": {"_count": 1}}, "trusting": {"_count": 1, "you": {"_count": 1}}, "Horcruxes": {"_count": 2, "": {"_count": 2}}, "misunderstand": {"_count": 1, "me": {"_count": 1}}, "death": {"_count": 1, "said": {"_count": 1}}, "naturally": {"_count": 1, "set": {"_count": 1}}, "pity": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "pained": {"_count": 1, "Harry": {"_count": 1}}}, "disturb": {"_count": 6, "him": {"_count": 1, "seized": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}, "Harry": {"_count": 1, "now": {"_count": 1}}, "anyone": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "said": {"_count": 1}, "Harry": {"_count": 1}}}, "seized": {"_count": 191, "his": {"_count": 34, "telephone": {"_count": 1}, "umbrella": {"_count": 1}, "hand": {"_count": 3}, "left": {"_count": 2}, "wand": {"_count": 2}, "crossbow": {"_count": 1}, "chance": {"_count": 3}, "sword": {"_count": 1}, "knife": {"_count": 1}, "arms": {"_count": 1}, "rope": {"_count": 1}, "eaglefeather": {"_count": 1}, "arm": {"_count": 4}, "hands": {"_count": 1}, "wrist": {"_count": 2}, "copy": {"_count": 1}, "opportunity": {"_count": 2}, "last": {"_count": 1}, "fallen": {"_count": 1}, "dragonskin": {"_count": 1}, "schoolbag": {"_count": 1}, "rucksack": {"_count": 1}, "elder": {"_count": 1}}, "Harry": {"_count": 8, "around": {"_count": 3}, "and": {"_count": 3}, "by": {"_count": 2}}, "the": {"_count": 43, "package": {"_count": 1}, "Quaffle": {"_count": 1}, "letter": {"_count": 1}, "ends": {"_count": 1}, "elfs": {"_count": 1}, "boarhound": {"_count": 1}, "basilisk": {"_count": 1}, "rest": {"_count": 1}, "envelope": {"_count": 2}, "back": {"_count": 4}, "hem": {"_count": 1}, "opportunity": {"_count": 1}, "branch": {"_count": 1}, "end": {"_count": 1}, "collar": {"_count": 1}, "other": {"_count": 1}, "sleeve": {"_count": 1}, "parchment": {"_count": 1}, "golden": {"_count": 1}, "little": {"_count": 2}, "front": {"_count": 3}, "sack": {"_count": 1}, "nearest": {"_count": 1}, "largest": {"_count": 1}, "brass": {"_count": 1}, "top": {"_count": 1}, "pot": {"_count": 1}, "table": {"_count": 1}, "doorknob": {"_count": 1}, "door": {"_count": 1}, "bowl": {"_count": 1}, "goblet": {"_count": 1}, "wand": {"_count": 1}, "tiny": {"_count": 1}, "dark": {"_count": 1}, "hilt": {"_count": 1}}, "Hagrid": {"_count": 2, "s": {"_count": 1}, "under": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 14, "broomstick": {"_count": 1}, "roll": {"_count": 1}, "third": {"_count": 1}, "stone": {"_count": 1}, "fistful": {"_count": 1}, "handful": {"_count": 3}, "china": {"_count": 1}, "quill": {"_count": 1}, "frilly": {"_count": 1}, "birds": {"_count": 1}, "grubby": {"_count": 1}, "pair": {"_count": 1}}, "Harrys": {"_count": 10, "desk": {"_count": 1}, "arms": {"_count": 1}, "arm": {"_count": 3}, "hand": {"_count": 1}, "and": {"_count": 1}, "shoulder": {"_count": 1}, "wrist": {"_count": 1}, "upper": {"_count": 1}}, "it": {"_count": 8, "": {"_count": 2}, "and": {"_count": 3}, "about": {"_count": 1}, "pulled": {"_count": 1}, "by": {"_count": 1}}, "Neville": {"_count": 3, "by": {"_count": 2}, "from": {"_count": 1}}, "up": {"_count": 3, "he": {"_count": 1}, "and": {"_count": 1}, "around": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 2}}, "him": {"_count": 9, "around": {"_count": 2}, "under": {"_count": 1}, "": {"_count": 2}, "hard": {"_count": 1}, "roughly": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}}, "Dudley": {"_count": 2, "in": {"_count": 1}, "by": {"_count": 1}}, "one": {"_count": 7, "of": {"_count": 5}, "end": {"_count": 1}, "put": {"_count": 1}}, "Hedwigs": {"_count": 1, "empty": {"_count": 1}}, "three": {"_count": 1, "sleeping": {"_count": 1}}, "Scabbers": {"_count": 1, "by": {"_count": 1}}, "Pettigrews": {"_count": 1, "shoulders": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Malfoys": {"_count": 1, "upper": {"_count": 1}}, "Dobby": {"_count": 1, "by": {"_count": 1}}, "handfuls": {"_count": 2, "of": {"_count": 2}}, "Ron": {"_count": 2, "and": {"_count": 1}, "above": {"_count": 1}}, "Dudleys": {"_count": 1, "hand": {"_count": 1}}, "her": {"_count": 6, "school": {"_count": 1}, "and": {"_count": 1}, "arm": {"_count": 1}, "by": {"_count": 1}, "hand": {"_count": 2}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "Kreacher": {"_count": 1, "by": {"_count": 1}}, "Hedwig": {"_count": 1, "stuffed": {"_count": 1}}, "Nevilles": {"_count": 1, "arms": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "too": {"_count": 1}}, "Marietta": {"_count": 1, "pulled": {"_count": 1}}, "Siriuss": {"_count": 1, "knife": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "them": {"_count": 1, "unexpectedly": {"_count": 1}}, "Katies": {"_count": 1, "ankles": {"_count": 1}}, "Lunas": {"_count": 1, "hand": {"_count": 1}}, "hold": {"_count": 2, "of": {"_count": 2}}, "Malfoy": {"_count": 1, "by": {"_count": 1}}, "Georges": {"_count": 1, "legs": {"_count": 1}}, "Tonkss": {"_count": 1, "wrist": {"_count": 1}}, "papers": {"_count": 1, "treating": {"_count": 1}}, "Hermione": {"_count": 1, "by": {"_count": 1}}, "Hagrids": {"_count": 1, "pouch": {"_count": 1}}, "Wormtails": {"_count": 1, "wand": {"_count": 1}}, "Dobbys": {"_count": 1, "hand": {"_count": 1}}, "Griphooks": {"_count": 1, "fingers": {"_count": 1}}, "Rons": {"_count": 1, "wrist": {"_count": 1}}, "its": {"_count": 1, "folds": {"_count": 1}}, "Hermiones": {"_count": 1, "hand": {"_count": 1}}}, "almost": {"_count": 387, "finished": {"_count": 2, "dialing": {"_count": 1}, "our": {"_count": 1}}, "fell": {"_count": 6, "": {"_count": 1}, "out": {"_count": 2}, "over": {"_count": 3}}, "knocked": {"_count": 4, "to": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "twice": {"_count": 1, "as": {"_count": 1}}, "destroyed": {"_count": 1, "but": {"_count": 1}}, "exactly": {"_count": 5, "the": {"_count": 2}, "as": {"_count": 3}}, "hidden": {"_count": 1, "beneath": {"_count": 1}}, "bald": {"_count": 1, "except": {"_count": 1}}, "ten": {"_count": 2, "years": {"_count": 1}, "minutes": {"_count": 1}}, "completely": {"_count": 6, "hidden": {"_count": 2}, "severed": {"_count": 1}, "stripped": {"_count": 1}, "empty": {"_count": 1}, "obscured": {"_count": 1}}, "forgotten": {"_count": 9, "that": {"_count": 4}, "about": {"_count": 3}, "what": {"_count": 2}}, "had": {"_count": 1, "to": {"_count": 1}}, "nose": {"_count": 4, "to": {"_count": 4}}, "at": {"_count": 19, "once": {"_count": 12}, "the": {"_count": 5}, "Kings": {"_count": 1}, "Harrys": {"_count": 1}}, "there": {"_count": 4, "and": {"_count": 1}, "They": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 41, "tall": {"_count": 1}, "nervous": {"_count": 1}, "soon": {"_count": 2}, "many": {"_count": 1}, "stupid": {"_count": 1}, "severe": {"_count": 1}, "close": {"_count": 1}, "much": {"_count": 3}, "though": {"_count": 14}, "bad": {"_count": 1}, "big": {"_count": 2}, "tired": {"_count": 1}, "concerned": {"_count": 1}, "if": {"_count": 2}, "short": {"_count": 1}, "badly": {"_count": 1}, "large": {"_count": 1}, "anxious": {"_count": 1}, "long": {"_count": 1}, "calm": {"_count": 1}, "terrible": {"_count": 1}, "paralyzed": {"_count": 1}, "pale": {"_count": 1}}, "a": {"_count": 8, "whole": {"_count": 2}, "Squib": {"_count": 1}, "stampede": {"_count": 1}, "hiss": {"_count": 1}, "stranger": {"_count": 1}, "minute": {"_count": 1}, "duty": {"_count": 1}}, "ran": {"_count": 1, "to": {"_count": 1}}, "unbearable": {"_count": 2, "hes": {"_count": 1}, "to": {"_count": 1}}, "everyone": {"_count": 1, "except": {"_count": 1}}, "broke": {"_count": 1, "their": {"_count": 1}}, "hit": {"_count": 1, "a": {"_count": 1}}, "speechless": {"_count": 1, "with": {"_count": 1}}, "skipping": {"_count": 1, "when": {"_count": 1}}, "reached": {"_count": 3, "the": {"_count": 3}}, "told": {"_count": 1, "your": {"_count": 1}}, "flew": {"_count": 1, "back": {"_count": 1}}, "unseated": {"_count": 2, "him": {"_count": 2}}, "impossible": {"_count": 9, "for": {"_count": 2}, "to": {"_count": 5}, "": {"_count": 1}, "that": {"_count": 1}}, "given": {"_count": 1, "up": {"_count": 1}}, "dark": {"_count": 1, "now": {"_count": 1}}, "stolen": {"_count": 1, "outta": {"_count": 1}}, "drop": {"_count": 1, "the": {"_count": 1}}, "glad": {"_count": 2, "that": {"_count": 1}, "when": {"_count": 1}}, "blinding": {"_count": 1, "him": {"_count": 1}}, "like": {"_count": 6, "he": {"_count": 1}, "Scabbers": {"_count": 1}, "seeing": {"_count": 1}, "a": {"_count": 1}, "real": {"_count": 1}, "song": {"_count": 1}}, "be": {"_count": 1, "glad": {"_count": 1}}, "spoke": {"_count": 1, "ill": {"_count": 1}}, "human": {"_count": 3, "": {"_count": 2}, "form": {"_count": 1}}, "touching": {"_count": 1, "the": {"_count": 1}}, "nervously": {"_count": 1, "as": {"_count": 1}}, "immediately": {"_count": 11, "pulling": {"_count": 1}, "they": {"_count": 1}, "stood": {"_count": 1}, "by": {"_count": 3}, "PEEVES": {"_count": 1}, "strangled": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "the": {"_count": 5, "whole": {"_count": 1}, "last": {"_count": 1}, "weekend": {"_count": 1}, "moment": {"_count": 1}, "same": {"_count": 1}}, "lifting": {"_count": 1, "Mr": {"_count": 1}}, "in": {"_count": 2, "two": {"_count": 1}, "spite": {"_count": 1}}, "double": {"_count": 2, "and": {"_count": 1}, "ahead": {"_count": 1}}, "ripped": {"_count": 1, "itself": {"_count": 1}}, "smiled": {"_count": 1, "": {"_count": 1}}, "empty": {"_count": 5, "": {"_count": 2}, "nearly": {"_count": 1}, "but": {"_count": 1}, "this": {"_count": 1}}, "slipped": {"_count": 1, "there": {"_count": 1}}, "nothing": {"_count": 2, "else": {"_count": 1}, "": {"_count": 1}}, "cheerful": {"_count": 1, "for": {"_count": 1}}, "too": {"_count": 1, "gruesome": {"_count": 1}}, "said": {"_count": 2, "something": {"_count": 1}, "Hogwarts": {"_count": 1}}, "closed": {"_count": 2, "Harry": {"_count": 2}}, "sure": {"_count": 2, "Dumbledores": {"_count": 1}, "of": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "have": {"_count": 1}}, "hungry": {"_count": 1, "look": {"_count": 1}}, "see": {"_count": 2, "the": {"_count": 2}}, "knocking": {"_count": 2, "him": {"_count": 1}, "Ron": {"_count": 1}}, "longingly": {"_count": 1, "of": {"_count": 1}}, "lifted": {"_count": 1, "from": {"_count": 1}}, "certainly": {"_count": 3, "expelled": {"_count": 1}, "underground": {"_count": 1}, "planted": {"_count": 1}}, "dazzling": {"_count": 1, "him": {"_count": 1}}, "every": {"_count": 3, "day": {"_count": 1}, "face": {"_count": 1}, "night": {"_count": 1}}, "ordinary": {"_count": 2, "though": {"_count": 1}, "their": {"_count": 1}}, "toppled": {"_count": 2, "off": {"_count": 2}}, "shut": {"_count": 1, "but": {"_count": 1}}, "black": {"_count": 1, "in": {"_count": 1}}, "always": {"_count": 5, "was": {"_count": 1}, "forgot": {"_count": 1}, "surrounded": {"_count": 1}, "possible": {"_count": 1}, "knows": {"_count": 1}}, "lazily": {"_count": 1, "": {"_count": 1}}, "beside": {"_count": 1, "himself": {"_count": 1}}, "more": {"_count": 2, "than": {"_count": 1}, "wearing": {"_count": 1}}, "normally": {"_count": 1, "until": {"_count": 1}}, "instantly": {"_count": 7, "drifting": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 3}, "they": {"_count": 1}, "as": {"_count": 1}}, "feel": {"_count": 2, "hundreds": {"_count": 1}, "the": {"_count": 1}}, "pelted": {"_count": 1, "headlong": {"_count": 1}}, "deserted": {"_count": 4, "": {"_count": 1}, "castle": {"_count": 1}, "room": {"_count": 1}, "but": {"_count": 1}}, "dislodged": {"_count": 1, "Crookshanks": {"_count": 1}}, "panting": {"_count": 1, "for": {"_count": 1}}, "extinguished": {"_count": 2, "Voldemort": {"_count": 1}, "the": {"_count": 1}}, "shameful": {"_count": 1, "to": {"_count": 1}}, "silent": {"_count": 1, "meal": {"_count": 1}}, "overwhelming": {"_count": 1, "": {"_count": 1}}, "tanned": {"_count": 1, "his": {"_count": 1}}, "three": {"_count": 2, "percent": {"_count": 1}, "decades": {"_count": 1}}, "crying": {"_count": 2, "with": {"_count": 2}}, "unnaturally": {"_count": 1, "straight": {"_count": 1}}, "trampling": {"_count": 1, "Winky": {"_count": 1}}, "wistfully": {"_count": 1, "at": {"_count": 1}}, "painfully": {"_count": 1, "excited": {"_count": 1}}, "dozing": {"_count": 1, "off": {"_count": 1}}, "defiantly": {"_count": 1, "": {"_count": 1}}, "full": {"_count": 2, "": {"_count": 1}, "cup": {"_count": 1}}, "bored": {"_count": 1, "": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "painful": {"_count": 1, "on": {"_count": 1}}, "taste": {"_count": 1, "it": {"_count": 1}}, "skulllike": {"_count": 1, "appearance": {"_count": 1}}, "flattening": {"_count": 1, "the": {"_count": 1}}, "suspicious": {"_count": 1, "look": {"_count": 1}}, "think": {"_count": 1, "you": {"_count": 1}}, "affronted": {"_count": 1, "but": {"_count": 1}}, "hear": {"_count": 2, "Fleur": {"_count": 1}, "his": {"_count": 1}}, "four": {"_count": 1, "years": {"_count": 1}}, "helpless": {"_count": 1, "it": {"_count": 1}}, "past": {"_count": 2, "endurance": {"_count": 2}}, "screamed": {"_count": 1, "in": {"_count": 1}}, "abandoned": {"_count": 1, "hope": {"_count": 1}}, "fearful": {"_count": 1, "": {"_count": 1}}, "myself": {"_count": 1, "again": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "mined": {"_count": 1, "everything": {"_count": 1}}, "cautiously": {"_count": 1, "as": {"_count": 1}}, "frightened": {"_count": 1, "as": {"_count": 1}}, "awed": {"_count": 2, "voice": {"_count": 2}}, "crashed": {"_count": 1, "in": {"_count": 1}}, "lovingly": {"_count": 1, "apart": {"_count": 1}}, "dreamlike": {"_count": 1, "state": {"_count": 1}}, "total": {"_count": 2, "darkness": {"_count": 2}}, "awestruck": {"_count": 1, "voice": {"_count": 1}}, "collided": {"_count": 2, "with": {"_count": 2}}, "appraisingly": {"_count": 1, "at": {"_count": 1}}, "Aunt": {"_count": 1, "Petuniaish": {"_count": 1}}, "unloaded": {"_count": 1, "Moodys": {"_count": 1}}, "indecent": {"_count": 1, "enthusiasm": {"_count": 1}}, "guaranteed": {"_count": 1, "to": {"_count": 1}}, "snapped": {"_count": 1, "it": {"_count": 1}}, "walked": {"_count": 2, "into": {"_count": 2}}, "shouting": {"_count": 1, "now": {"_count": 1}}, "angrily": {"_count": 1, "because": {"_count": 1}}, "upon": {"_count": 1, "him": {"_count": 1}}, "certain": {"_count": 1, "of": {"_count": 1}}, "daily": {"_count": 2, "practices": {"_count": 1}, "in": {"_count": 1}}, "pitying": {"_count": 2, "": {"_count": 1}, "expression": {"_count": 1}}, "incoherent": {"_count": 1, "because": {"_count": 1}}, "over": {"_count": 2, "Harrys": {"_count": 1}, "but": {"_count": 1}}, "normal": {"_count": 1, "life": {"_count": 1}}, "sprinted": {"_count": 1, "to": {"_count": 1}}, "anywhere": {"_count": 1, "else": {"_count": 1}}, "feverish": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 3, "to": {"_count": 1}, "else": {"_count": 1}, "for": {"_count": 1}}, "satisfied": {"_count": 1, "expression": {"_count": 1}}, "worth": {"_count": 1, "telling": {"_count": 1}}, "casually": {"_count": 1, "toward": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}, "escaping": {"_count": 1, "but": {"_count": 1}}, "continual": {"_count": 1, "attempts": {"_count": 1}}, "perfectly": {"_count": 2, "round": {"_count": 1}, "preserved": {"_count": 1}}, "nonexistent": {"_count": 1, "in": {"_count": 1}}, "detached": {"_count": 1, "": {"_count": 1}}, "entirely": {"_count": 1, "my": {"_count": 1}}, "equal": {"_count": 1, "regret": {"_count": 1}}, "bowled": {"_count": 1, "him": {"_count": 1}}, "laughed": {"_count": 1, "with": {"_count": 1}}, "forgot": {"_count": 2, "Fudge": {"_count": 1}, "to": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "flat": {"_count": 1, "in": {"_count": 1}}, "identical": {"_count": 1, "street": {"_count": 1}}, "imperceptibly": {"_count": 2, "and": {"_count": 1}, "then": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "midnight": {"_count": 1, "": {"_count": 1}}, "decided": {"_count": 1, "on": {"_count": 1}}, "directly": {"_count": 2, "overhead": {"_count": 1}, "below": {"_count": 1}}, "pointless": {"_count": 1, "": {"_count": 1}}, "word": {"_count": 1, "for": {"_count": 1}}, "foolish": {"_count": 1, "to": {"_count": 1}}, "tangible": {"_count": 1, "": {"_count": 1}}, "absentmindedly": {"_count": 1, "to": {"_count": 1}}, "shocking": {"_count": 1, "": {"_count": 1}}, "bestial": {"_count": 1, "": {"_count": 1}}, "drowned": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "put": {"_count": 1}}, "equally": {"_count": 1, "unhappy": {"_count": 1}}, "before": {"_count": 2, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "alchemical": {"_count": 1, "process": {"_count": 1}}, "alone": {"_count": 1, "with": {"_count": 1}}, "inaudible": {"_count": 1, "sniff": {"_count": 1}}, "no": {"_count": 1, "part": {"_count": 1}}, "touched": {"_count": 1, "his": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "completed": {"_count": 1, "essay": {"_count": 1}}, "comical": {"_count": 1, "": {"_count": 1}}, "killed": {"_count": 1, "Katie": {"_count": 1}}, "lazy": {"_count": 1, "flick": {"_count": 1}}, "unendurable": {"_count": 1, "thought": {"_count": 1}}, "dispersed": {"_count": 1, "now": {"_count": 1}}, "angry": {"_count": 1, "at": {"_count": 1}}, "cold": {"_count": 1, "": {"_count": 1}}, "unrecognizable": {"_count": 1, "": {"_count": 1}}, "dawn": {"_count": 1, "by": {"_count": 1}}, "gagged": {"_count": 1, "The": {"_count": 1}}, "any": {"_count": 1, "instrument": {"_count": 1}}, "an": {"_count": 1, "excitement": {"_count": 1}}, "welcomed": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}}, "finished": {"_count": 213, "dialing": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 20}, "?": {"_count": 2}, "!": {"_count": 1}}, "when": {"_count": 3, "the": {"_count": 2}, "Hermione": {"_count": 1}}, "him": {"_count": 3, "Harry": {"_count": 1}, "off": {"_count": 1}, "": {"_count": 1}}, "school": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 2, "song": {"_count": 1}, "work": {"_count": 1}}, "the": {"_count": 12, "song": {"_count": 1}, "last": {"_count": 1}, "question": {"_count": 1}, "sentence": {"_count": 6}, "drawing": {"_count": 1}, "task": {"_count": 1}, "pressure": {"_count": 1}}, "he": {"_count": 8, "was": {"_count": 1}, "merely": {"_count": 1}, "tied": {"_count": 1}, "would": {"_count": 1}, "turned": {"_count": 1}, "did": {"_count": 1}, "yelled": {"_count": 1}, "joined": {"_count": 1}}, "calling": {"_count": 1, "the": {"_count": 1}}, "telling": {"_count": 7, "Ron": {"_count": 2}, "the": {"_count": 1}, "her": {"_count": 1}, "us": {"_count": 1}, "them": {"_count": 2}}, "breathlessly": {"_count": 1, "": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "his": {"_count": 7, "own": {"_count": 2}, "butterbeer": {"_count": 1}, "bacon": {"_count": 1}, "breakfast": {"_count": 1}, "patrolling": {"_count": 1}, "soup": {"_count": 1}}, "watching": {"_count": 1, "her": {"_count": 1}}, "lunch": {"_count": 1, "and": {"_count": 1}}, "yet": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "eating": {"_count": 5, "you": {"_count": 1}, "Ill": {"_count": 1}, "yet": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "their": {"_count": 10, "third": {"_count": 1}, "breakfasts": {"_count": 1}, "apple": {"_count": 1}, "story": {"_count": 1}, "tea": {"_count": 1}, "work": {"_count": 1}, "Pumpkin": {"_count": 1}, "breakfast": {"_count": 1}, "dinner": {"_count": 1}, "first": {"_count": 1}}, "it": {"_count": 7, "": {"_count": 3}, "said": {"_count": 1}, "last": {"_count": 1}, "would": {"_count": 1}, "for": {"_count": 1}}, "writing": {"_count": 2, "about": {"_count": 1}, "her": {"_count": 1}}, "threatening": {"_count": 1, "Harry": {"_count": 1}}, "Ron": {"_count": 2, "looked": {"_count": 2}}, "with": {"_count": 13, "fire": {"_count": 1}, "an": {"_count": 1}, "my": {"_count": 1}, "him": {"_count": 4}, "them": {"_count": 1}, "unicorns": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 2}, "her": {"_count": 1}}, "deciding": {"_count": 1, "whether": {"_count": 1}}, "they": {"_count": 1, "joined": {"_count": 1}}, "adding": {"_count": 1, "your": {"_count": 1}}, "checking": {"_count": 1, "it": {"_count": 1}}, "palmistry": {"_count": 1, "Harry": {"_count": 1}}, "so": {"_count": 2, "they": {"_count": 1}, "I": {"_count": 1}}, "Lupin": {"_count": 3, "was": {"_count": 1}, "": {"_count": 1}, "looked": {"_count": 1}}, "letter": {"_count": 1, "": {"_count": 1}}, "reading": {"_count": 7, "put": {"_count": 1}, "and": {"_count": 3}, "the": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}}, "moths": {"_count": 1, "were": {"_count": 1}}, "disgustedly": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 3, "sentence": {"_count": 1}, "spell": {"_count": 1}, "off": {"_count": 1}}, "predicting": {"_count": 1, "his": {"_count": 1}}, "wiz": {"_count": 1, "it": {"_count": 1}}, "breakfast": {"_count": 2, "and": {"_count": 1}, "broke": {"_count": 1}}, "desperately": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "lamely": {"_count": 1, "": {"_count": 1}}, "playing": {"_count": 1, "at": {"_count": 1}}, "Sirius": {"_count": 1, "was": {"_count": 1}}, "our": {"_count": 1, "work": {"_count": 1}}, "conjuring": {"_count": 1, "the": {"_count": 1}}, "yawning": {"_count": 1, "hugely": {"_count": 1}}, "somewhat": {"_count": 1, "lamely": {"_count": 1}}, "defiantly": {"_count": 1, "": {"_count": 1}}, "buttoning": {"_count": 1, "his": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "some": {"_count": 1, "time": {"_count": 1}}, "dramatically": {"_count": 1, "": {"_count": 1}}, "chapter": {"_count": 1, "one": {"_count": 1}}, "all": {"_count": 1, "her": {"_count": 1}}, "Because": {"_count": 1, "Lord": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "people": {"_count": 1}}, "theyd": {"_count": 1, "lay": {"_count": 1}}, "me": {"_count": 1, "story": {"_count": 1}}, "askin": {"_count": 1, "stupid": {"_count": 1}}, "keeping": {"_count": 1, "a": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 1, "minutes": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 2}}, "by": {"_count": 1, "telling": {"_count": 1}}, "neither": {"_count": 1, "Sirius": {"_count": 1}}, "and": {"_count": 2, "nnnow": {"_count": 1}, "he": {"_count": 1}}, "saying": {"_count": 1, "goodbye": {"_count": 1}}, "packing": {"_count": 1, "and": {"_count": 1}}, "using": {"_count": 1, "a": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Zabini": {"_count": 1, "": {"_count": 1}}, "chopping": {"_count": 1, "his": {"_count": 1}}, "aggravated": {"_count": 1, "by": {"_count": 1}}, "ignoring": {"_count": 1, "Ron": {"_count": 1}}, "blowing": {"_count": 1, "his": {"_count": 1}}, "speaking": {"_count": 4, "": {"_count": 2}, "Professor": {"_count": 1}, "Ron": {"_count": 1}}, "dinner": {"_count": 1, "by": {"_count": 1}}, "within": {"_count": 1, "months": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "kissing": {"_count": 1, "Bill": {"_count": 1}}, "why": {"_count": 1, "doesnt": {"_count": 1}}, "Hermione": {"_count": 2, "sat": {"_count": 1}, "said": {"_count": 1}}, "Slughorn": {"_count": 1, "I": {"_count": 1}}, "hours": {"_count": 1, "ago": {"_count": 1}}, "describing": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "off": {"_count": 1, "Ariana": {"_count": 1}}, "throwing": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 3, "her": {"_count": 1}, "him": {"_count": 1}, "good": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "lighting": {"_count": 1, "the": {"_count": 1}}, "enclosing": {"_count": 1, "both": {"_count": 1}}, "Harry": {"_count": 1, "repeated": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "Neither": {"_count": 1, "would": {"_count": 1}}, "kindly": {"_count": 1, "": {"_count": 1}}}, "dialing": {"_count": 1, "his": {"_count": 1, "home": {"_count": 1}}}, "home": {"_count": 205, "number": {"_count": 1, "when": {"_count": 1}}, "hoping": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 19, "nailed": {"_count": 1}, "said": {"_count": 1}, "tried": {"_count": 1}, "finding": {"_count": 1}, "youre": {"_count": 1}, "anytime": {"_count": 1}, "the": {"_count": 1}, "work": {"_count": 1}, "told": {"_count": 1}, "Well": {"_count": 1}, "bewitching": {"_count": 1}, "personal": {"_count": 1}, "I": {"_count": 1}, "never": {"_count": 1}, "go": {"_count": 1}, "fetch": {"_count": 1}, "had": {"_count": 1}, "done": {"_count": 1}, "Voldemort": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "vacation": {"_count": 1}}, "in": {"_count": 6, "my": {"_count": 1}, "Majorca": {"_count": 1}, "pieces": {"_count": 1}, "a": {"_count": 1}, "hiding": {"_count": 1}, "Little": {"_count": 1}}, "to": {"_count": 9, "the": {"_count": 2}, "him": {"_count": 2}, "see": {"_count": 1}, "its": {"_count": 1}, "find": {"_count": 1}, "a": {"_count": 1}, "Godrics": {"_count": 1}}, "said": {"_count": 5, "Hagrid": {"_count": 2}, "Mrs": {"_count": 2}, "Professor": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "tomorrow": {"_count": 3, "youre": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "Malfoy": {"_count": 1, "a": {"_count": 1}}, "than": {"_count": 1, "Privet": {"_count": 1}}, "": {"_count": 54, ".": {"_count": 36}, "!": {"_count": 14}, "?": {"_count": 4}}, "for": {"_count": 12, "the": {"_count": 4}, "another": {"_count": 1}, "Christmas": {"_count": 5}, "his": {"_count": 1}, "my": {"_count": 1}}, "with": {"_count": 6, "us": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "Fleur": {"_count": 1}, "Mum": {"_count": 1}, "a": {"_count": 1}}, "we": {"_count": 1, "never": {"_count": 1}}, "that": {"_count": 3, "might": {"_count": 1}, "just": {"_count": 1}, "displeases": {"_count": 1}}, "but": {"_count": 3, "I": {"_count": 1}, "youve": {"_count": 1}, "theres": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "grievously": {"_count": 1, "injured": {"_count": 1}}, "Harry": {"_count": 4, "Potter": {"_count": 2}, "caught": {"_count": 1}, "might": {"_count": 1}}, "first": {"_count": 1, "thing": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "he": {"_count": 3, "might": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}}, "once": {"_count": 1, "his": {"_count": 1}}, "if": {"_count": 2, "Dad": {"_count": 1}, "you": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "much": {"_count": 1, "over": {"_count": 1}}, "position": {"_count": 1, "but": {"_count": 1}}, "soon": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 3, "him": {"_count": 1}, "to": {"_count": 1}, "once": {"_count": 1}}, "comforts": {"_count": 2, "since": {"_count": 1}, "they": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "after": {"_count": 1, "Dudley": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "puddings": {"_count": 1, "exploding": {"_count": 1}}, "really": {"_count": 1, "pleased": {"_count": 1}}, "Kreachers": {"_count": 1, "quite": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "three": {"_count": 1, "seconds": {"_count": 1}}, "a": {"_count": 1, "thick": {"_count": 1}}, "insurance": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "we": {"_count": 1}}, "or": {"_count": 3, "not": {"_count": 2}, "send": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 3, "place": {"_count": 2}, "next": {"_count": 1}}, "there": {"_count": 1, "he": {"_count": 1}}, "an": {"_count": 1, "let": {"_count": 1}}, "from": {"_count": 1, "attack": {"_count": 1}}, "news": {"_count": 1, "before": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "wasnt": {"_count": 1, "she": {"_count": 1}}, "To": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 1, "bin": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "afterward": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "of": {"_count": 3, "one": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "she": {"_count": 1, "leads": {"_count": 1}}, "so": {"_count": 1, "Kreacher": {"_count": 1}}, "seriously": {"_count": 1, "ill": {"_count": 1}}, "Spare": {"_count": 1, "us": {"_count": 1}}, "grab": {"_count": 1, "your": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 1, "greatnephew": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "safe": {"_count": 1, "familiar": {"_count": 1}}, "was": {"_count": 1, "perhaps": {"_count": 1}}, "reading": {"_count": 1, "his": {"_count": 1}}, "whispered": {"_count": 1, "the": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}}, "changed": {"_count": 105, "his": {"_count": 5, "mind": {"_count": 4}, "name": {"_count": 1}}, "their": {"_count": 1, "sleeping": {"_count": 1}}, "her": {"_count": 4, "mind": {"_count": 2}, "desk": {"_count": 1}, "usual": {"_count": 1}}, "at": {"_count": 6, "all": {"_count": 1}, "last": {"_count": 1}, "once": {"_count": 2}, "least": {"_count": 1}, "midnight": {"_count": 1}}, "color": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 9, "his": {"_count": 2}, "their": {"_count": 4}, "the": {"_count": 2}, "pajamas": {"_count": 1}}, "the": {"_count": 11, "subject": {"_count": 4}, "plan": {"_count": 1}, "rules": {"_count": 2}, "previous": {"_count": 1}, "time": {"_count": 2}, "world": {"_count": 1}}, "from": {"_count": 1, "puzzlement": {"_count": 1}}, "one": {"_count": 1, "jot": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 15}, "!": {"_count": 1}}, "direction": {"_count": 2, "in": {"_count": 1}, "mid": {"_count": 1}}, "behind": {"_count": 1, "yesterday": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "everything": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 2, "they": {"_count": 1}, "I": {"_count": 1}}, "hands": {"_count": 2, "with": {"_count": 1}, "You": {"_count": 1}}, "your": {"_count": 1, "fires": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "its": {"_count": 2, "mind": {"_count": 1}, "form": {"_count": 1}}, "tack": {"_count": 2, "at": {"_count": 2}}, "but": {"_count": 1, "it": {"_count": 1}}, "subtly": {"_count": 1, "with": {"_count": 1}}, "completely": {"_count": 2, "since": {"_count": 1}, "": {"_count": 1}}, "however": {"_count": 1, "for": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 4, "mind": {"_count": 4}}, "with": {"_count": 1, "the": {"_count": 1}}, "Molly": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Fudge": {"_count": 1}}, "already": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "day": {"_count": 1}}, "much": {"_count": 1, "has": {"_count": 1}}, "to": {"_count": 2, "mild": {"_count": 1}, "outrage": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "became": {"_count": 1}}, "perceptibly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "ready": {"_count": 1}, "put": {"_count": 1}, "then": {"_count": 1}}, "somewhat": {"_count": 1, "I": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 1, "too": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "changed": {"_count": 1, "into": {"_count": 1}}, "Harry": {"_count": 1, "he": {"_count": 1}}, "didnt": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "quality": {"_count": 1}}, "course": {"_count": 1, "running": {"_count": 1}}}, "receiver": {"_count": 9, "back": {"_count": 2, "down": {"_count": 1}, "onto": {"_count": 1}}, "a": {"_count": 1, "foot": {"_count": 1}}, "at": {"_count": 1, "arms": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "Mr": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "dial": {"_count": 1, "six": {"_count": 1}}}, "stroked": {"_count": 11, "his": {"_count": 2, "mustache": {"_count": 1}, "beard": {"_count": 1}}, "the": {"_count": 5, "door": {"_count": 1}, "phoenix": {"_count": 1}, "phoenixs": {"_count": 1}, "creature": {"_count": 1}, "sword": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "Crookshanks": {"_count": 1, "s": {"_count": 1}}, "her": {"_count": 1, "feathers": {"_count": 1}}, "Hedwig": {"_count": 1, "automatically": {"_count": 1}}}, "being": {"_count": 540, "stupid": {"_count": 6, "": {"_count": 2}, "on": {"_count": 1}, "knew": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}}, "almost": {"_count": 1, "knocked": {"_count": 1}}, "watched": {"_count": 12, "because": {"_count": 1}, "": {"_count": 5}, "but": {"_count": 1}, "was": {"_count": 2}, "wont": {"_count": 1}, "by": {"_count": 1}, "now": {"_count": 1}}, "downright": {"_count": 2, "careless": {"_count": 1}, "alarming": {"_count": 1}}, "prodded": {"_count": 1, "and": {"_count": 1}}, "hugged": {"_count": 2, "and": {"_count": 1}, "like": {"_count": 1}}, "put": {"_count": 4, "on": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 1}, "by": {"_count": 1}}, "found": {"_count": 3, "on": {"_count": 1}, "with": {"_count": 1}, "beneath": {"_count": 1}}, "with": {"_count": 3, "Dudley": {"_count": 1}, "feelings": {"_count": 2}}, "in": {"_count": 9, "the": {"_count": 2}, "Hufflepuff": {"_count": 1}, "your": {"_count": 1}, "range": {"_count": 1}, "such": {"_count": 1}, "love": {"_count": 1}, "midair": {"_count": 1}, "charge": {"_count": 1}}, "ignored": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "trodden": {"_count": 1, "on": {"_count": 1}}, "what": {"_count": 1, "she": {"_count": 1}}, "speared": {"_count": 1, "on": {"_count": 1}}, "clouted": {"_count": 1, "by": {"_count": 1}}, "fitted": {"_count": 1, "up": {"_count": 1}}, "made": {"_count": 5, "a": {"_count": 3}, "to": {"_count": 1}, "or": {"_count": 1}}, "able": {"_count": 6, "to": {"_count": 6}}, "a": {"_count": 20, "wizard": {"_count": 2}, "disgrace": {"_count": 1}, "bit": {"_count": 2}, "hat": {"_count": 1}, "Death": {"_count": 1}, "git": {"_count": 1}, "werewolf": {"_count": 2}, "member": {"_count": 1}, "teacher": {"_count": 1}, "permanent": {"_count": 1}, "child": {"_count": 1}, "prefect": {"_count": 1}, "little": {"_count": 1}, "sixth": {"_count": 1}, "houseelf": {"_count": 1}, "Mudblood": {"_count": 1}, "long": {"_count": 1}}, "picked": {"_count": 1, "for": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 1}, "down": {"_count": 1}}, "left": {"_count": 2, "on": {"_count": 1}, "behind": {"_count": 1}}, "taught": {"_count": 3, "this": {"_count": 1}, "consideration": {"_count": 1}, "at": {"_count": 1}}, "expelled": {"_count": 4, "and": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}, "shell": {"_count": 1}}, "solid": {"_count": 1, "": {"_count": 1}}, "invisible": {"_count": 2, "can": {"_count": 1}, "": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "caught": {"_count": 6, "so": {"_count": 1}, "in": {"_count": 1}, "holding": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "woken": {"_count": 1, "by": {"_count": 1}}, "truly": {"_count": 1, "alive": {"_count": 1}}, "treated": {"_count": 2, "like": {"_count": 1}, "upon": {"_count": 1}}, "sucked": {"_count": 3, "down": {"_count": 1}, "into": {"_count": 2}}, "presented": {"_count": 1, "with": {"_count": 1}}, "beaten": {"_count": 1, "up": {"_count": 1}}, "Sorted": {"_count": 1, "The": {"_count": 1}}, "perfectly": {"_count": 1, "friendly": {"_count": 1}}, "closely": {"_count": 2, "watched": {"_count": 2}}, "squashed": {"_count": 2, "by": {"_count": 1}, "and": {"_count": 1}}, "given": {"_count": 2, "a": {"_count": 2}}, "entirely": {"_count": 1, "truthful": {"_count": 1}}, "Xrayed": {"_count": 2, "": {"_count": 2}}, "so": {"_count": 5, "great": {"_count": 1}, "tiny": {"_count": 1}, "much": {"_count": 1}, "cheerful": {"_count": 1}, "stupid": {"_count": 1}}, "Head": {"_count": 1, "Boy": {"_count": 1}}, "flattened": {"_count": 1, "": {"_count": 1}}, "deflated": {"_count": 1, "": {"_count": 1}}, "taken": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "Slytherin": {"_count": 1, "s": {"_count": 1}}, "Goyle": {"_count": 1, "": {"_count": 1}}, "seen": {"_count": 3, "with": {"_count": 1}, "itll": {"_count": 1}, "": {"_count": 1}}, "canceled": {"_count": 1, "others": {"_count": 1}}, "inside": {"_count": 2, "your": {"_count": 1}, "a": {"_count": 1}}, "shepherded": {"_count": 2, "from": {"_count": 1}, "down": {"_count": 1}}, "swept": {"_count": 2, "away": {"_count": 1}, "into": {"_count": 1}}, "violently": {"_count": 1, "sick": {"_count": 1}}, "innocent": {"_count": 1, "": {"_count": 1}}, "led": {"_count": 2, "to": {"_count": 1}, "away": {"_count": 1}}, "burned": {"_count": 1, "so": {"_count": 1}}, "bullied": {"_count": 1, "by": {"_count": 1}}, "steered": {"_count": 1, "inside": {"_count": 1}}, "told": {"_count": 4, "off": {"_count": 3}, "to": {"_count": 1}}, "introduced": {"_count": 1, "to": {"_count": 1}}, "dragged": {"_count": 9, "downward": {"_count": 1}, "upstairs": {"_count": 1}, "across": {"_count": 1}, "along": {"_count": 1}, "away": {"_count": 1}, "backward": {"_count": 1}, "by": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}}, "happy": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "bad": {"_count": 1, "at": {"_count": 1}}, "good": {"_count": 1, "at": {"_count": 1}}, "tethered": {"_count": 1, "like": {"_count": 1}}, "killed": {"_count": 1, "by": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "speaking": {"_count": 1}, "it": {"_count": 1}}, "an": {"_count": 7, "insufferable": {"_count": 1}, "Animagus": {"_count": 2}, "important": {"_count": 1}, "orphan": {"_count": 1}, "Auror": {"_count": 1}, "international": {"_count": 1}}, "whipped": {"_count": 1, "out": {"_count": 1}}, "unseated": {"_count": 1, "by": {"_count": 1}}, "hit": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "blown": {"_count": 2, "": {"_count": 1}, "off": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "addressed": {"_count": 4, "directly": {"_count": 1}, "like": {"_count": 1}, "as": {"_count": 1}, "thus": {"_count": 1}}, "angry": {"_count": 1, "with": {"_count": 1}}, "checked": {"_count": 2, "for": {"_count": 1}, "too": {"_count": 1}}, "provided": {"_count": 1, "by": {"_count": 1}}, "searched": {"_count": 4, "again": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 1}}, "louder": {"_count": 1, "and": {"_count": 1}}, "spurred": {"_count": 1, "on": {"_count": 1}}, "pointed": {"_count": 1, "at": {"_count": 1}}, "alive": {"_count": 2, "That": {"_count": 1}, "": {"_count": 1}}, "frightened": {"_count": 1, "to": {"_count": 1}}, "forced": {"_count": 5, "nor": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}, "back": {"_count": 2}}, "just": {"_count": 1, "as": {"_count": 1}}, "mistreated": {"_count": 2, "": {"_count": 2}}, "reassured": {"_count": 1, "the": {"_count": 1}}, "shaken": {"_count": 1, "awake": {"_count": 1}}, "purebloods": {"_count": 1, "in": {"_count": 1}}, "human": {"_count": 2, "in": {"_count": 1}, "THEN": {"_count": 1}}, "revived": {"_count": 1, "by": {"_count": 1}}, "supported": {"_count": 1, "by": {"_count": 1}}, "contorted": {"_count": 1, "into": {"_count": 1}}, "pushed": {"_count": 3, "hither": {"_count": 1}, "into": {"_count": 1}, "deeper": {"_count": 1}}, "bossed": {"_count": 1, "around": {"_count": 1}}, "very": {"_count": 3, "sensitive": {"_count": 1}, "frightening": {"_count": 1}, "antiwerewolf": {"_count": 1}}, "emptied": {"_count": 1, "repeatedly": {"_count": 1}}, "thrown": {"_count": 3, "into": {"_count": 1}, "down": {"_count": 1}, "out": {"_count": 1}}, "born": {"_count": 1, "Harry": {"_count": 1}}, "controlled": {"_count": 2, "by": {"_count": 2}}, "is": {"_count": 1, "enough": {"_count": 1}}, "enslaved": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "lowered": {"_count": 1, "onto": {"_count": 1}}, "his": {"_count": 2, "usual": {"_count": 1}, "friend": {"_count": 1}}, "wrenched": {"_count": 1, "inside": {"_count": 1}}, "champion": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "related": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "not": {"_count": 1}}, "unable": {"_count": 5, "to": {"_count": 5}}, "sneered": {"_count": 2, "at": {"_count": 2}}, "shown": {"_count": 2, "": {"_count": 1}, "an": {"_count": 1}}, "friends": {"_count": 1, "with": {"_count": 1}}, "tortured": {"_count": 6, "": {"_count": 2}, "then": {"_count": 1}, "NOW": {"_count": 1}, "right": {"_count": 1}, "again": {"_count": 1}}, "free": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}}, "freed": {"_count": 1, "": {"_count": 1}}, "lectured": {"_count": 1, "on": {"_count": 1}}, "noticed": {"_count": 4, "Fleur": {"_count": 1}, "": {"_count": 1}, "did": {"_count": 1}, "by": {"_count": 1}}, "halfgiant": {"_count": 2, "": {"_count": 2}}, "back": {"_count": 9, "on": {"_count": 2}, "with": {"_count": 2}, "here": {"_count": 2}, "might": {"_count": 1}, "Dumbledore": {"_count": 1}, "and": {"_count": 1}}, "quite": {"_count": 2, "friendly": {"_count": 1}, "rude": {"_count": 1}}, "nosy": {"_count": 1, "": {"_count": 1}}, "quiet": {"_count": 1, "she": {"_count": 1}}, "honest": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "upset": {"_count": 1, "him": {"_count": 1}}, "The": {"_count": 1, "door": {"_count": 1}}, "dead": {"_count": 2, "but": {"_count": 1}, "will": {"_count": 1}}, "that": {"_count": 2, "these": {"_count": 1}, "Harry": {"_count": 1}}, "thick": {"_count": 1, "after": {"_count": 1}}, "the": {"_count": 7, "thing": {"_count": 1}, "person": {"_count": 1}, "sole": {"_count": 1}, "governments": {"_count": 1}, "new": {"_count": 1}, "Object": {"_count": 1}, "case": {"_count": 1}}, "poor": {"_count": 1, "": {"_count": 1}}, "polite": {"_count": 1, "its": {"_count": 1}}, "outofbounds": {"_count": 2, "": {"_count": 2}}, "linked": {"_count": 1, "with": {"_count": 1}}, "circular": {"_count": 1, "and": {"_count": 1}}, "meant": {"_count": 1, "a": {"_count": 1}}, "noble": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "pulled": {"_count": 4, "to": {"_count": 1}, "from": {"_count": 1}, "by": {"_count": 1}, "back": {"_count": 1}}, "my": {"_count": 1, "preference": {"_count": 1}}, "raised": {"_count": 1, "into": {"_count": 1}}, "concentrated": {"_count": 1, "on": {"_count": 1}}, "named": {"_count": 1, "after": {"_count": 1}}, "sick": {"_count": 1, "": {"_count": 1}}, "extracted": {"_count": 1, "from": {"_count": 1}}, "noisy": {"_count": 1, "and": {"_count": 1}}, "Death": {"_count": 2, "Eaters": {"_count": 2}}, "murdered": {"_count": 2, "and": {"_count": 1}, "or": {"_count": 1}}, "stuck": {"_count": 3, "in": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 1}}, "captured": {"_count": 2, "by": {"_count": 1}, "that": {"_count": 1}}, "unmasked": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 2, "cold": {"_count": 1}, "near": {"_count": 1}}, "followed": {"_count": 6, "": {"_count": 2}, "except": {"_count": 1}, "and": {"_count": 1}, "or": {"_count": 1}, "by": {"_count": 1}}, "famous": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 2, "good": {"_count": 1}, "Harry": {"_count": 1}}, "kept": {"_count": 1, "in": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "asked": {"_count": 4, "to": {"_count": 3}, "his": {"_count": 1}}, "allowed": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "disciplined": {"_count": 1, "for": {"_count": 1}}, "best": {"_count": 1, "man": {"_count": 1}}, "present": {"_count": 1, "finally": {"_count": 1}}, "selfish": {"_count": 1, "": {"_count": 1}}, "chosen": {"_count": 1, "in": {"_count": 1}}, "struck": {"_count": 2, "in": {"_count": 1}, "by": {"_count": 1}}, "secondbest": {"_count": 1, "to": {"_count": 1}}, "absolutely": {"_count": 1, "foul": {"_count": 1}}, "paranoid": {"_count": 1, "": {"_count": 1}}, "engrossed": {"_count": 1, "in": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "far": {"_count": 1, "below": {"_count": 1}}, "sacked": {"_count": 2, "laughed": {"_count": 1}, "": {"_count": 1}}, "intercepted": {"_count": 3, "anymore": {"_count": 1}, "too": {"_count": 1}, "but": {"_count": 1}}, "rude": {"_count": 4, "too": {"_count": 1}, "about": {"_count": 2}, "": {"_count": 1}}, "cut": {"_count": 1, "off": {"_count": 1}}, "prevented": {"_count": 1, "from": {"_count": 1}}, "subjected": {"_count": 1, "to": {"_count": 1}}, "punished": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "luck": {"_count": 1, "didnt": {"_count": 1}}, "too": {"_count": 1, "chuffed": {"_count": 1}}, "overheard": {"_count": 6, "was": {"_count": 1}, "than": {"_count": 1}, "": {"_count": 3}, "but": {"_count": 1}}, "discovered": {"_count": 2, "by": {"_count": 1}, "hiding": {"_count": 1}}, "clubbed": {"_count": 1, "by": {"_count": 1}}, "forcibly": {"_count": 1, "restrained": {"_count": 1}}, "attacked": {"_count": 4, "by": {"_count": 2}, "": {"_count": 1}, "tonight": {"_count": 1}}, "alone": {"_count": 1, "with": {"_count": 1}}, "applied": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 2, "who": {"_count": 1}, "would": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "separated": {"_count": 3, "by": {"_count": 1}, "from": {"_count": 2}}, "unclean": {"_count": 1, "intensified": {"_count": 1}}, "possessed": {"_count": 2, "then": {"_count": 1}, "they": {"_count": 1}}, "shunted": {"_count": 1, "out": {"_count": 1}}, "any": {"_count": 1, "the": {"_count": 1}}, "signed": {"_count": 1, "out": {"_count": 1}}, "heartily": {"_count": 1, "kissed": {"_count": 1}}, "crucial": {"_count": 1, "to": {"_count": 1}}, "horrible": {"_count": 1, "said": {"_count": 1}}, "sent": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "filled": {"_count": 1, "with": {"_count": 1}}, "monitored": {"_count": 2, "": {"_count": 2}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "shouted": {"_count": 1, "at": {"_count": 1}}, "patted": {"_count": 1, "on": {"_count": 1}}, "chucked": {"_count": 1, "out": {"_count": 1}}, "rather": {"_count": 1, "rude": {"_count": 1}}, "deliberately": {"_count": 1, "unhelpful": {"_count": 1}}, "borne": {"_count": 1, "away": {"_count": 1}}, "guarded": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "smashed": {"_count": 1, "": {"_count": 1}}, "jerked": {"_count": 1, "behind": {"_count": 1}}, "interrogated": {"_count": 1, "made": {"_count": 1}}, "Harry": {"_count": 1, "anymore": {"_count": 1}}, "lied": {"_count": 1, "to": {"_count": 1}}, "locked": {"_count": 1, "up": {"_count": 1}}, "weak": {"_count": 1, "when": {"_count": 1}}, "or": {"_count": 1, "knowing": {"_count": 1}}, "questioned": {"_count": 1, "and": {"_count": 1}}, "rapped": {"_count": 1, "smartly": {"_count": 1}}, "though": {"_count": 1, "I": {"_count": 1}}, "pressed": {"_count": 1, "very": {"_count": 1}}, "snubbed": {"_count": 1, "and": {"_count": 1}}, "reprimanded": {"_count": 1, "or": {"_count": 1}}, "used": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "wrong": {"_count": 1, "than": {"_count": 1}}, "right": {"_count": 1, "said": {"_count": 1}}, "plied": {"_count": 1, "with": {"_count": 1}}, "Dumbledores": {"_count": 1, "favorite": {"_count": 1}}, "glad": {"_count": 1, "to": {"_count": 1}}, "brave": {"_count": 1, "and": {"_count": 1}}, "forgive": {"_count": 1, "me": {"_count": 1}}, "extremely": {"_count": 1, "dim": {"_count": 1}}, "said": {"_count": 3, "he": {"_count": 1}, "Parvati": {"_count": 1}, "Bill": {"_count": 1}}, "terrorized": {"_count": 1, "by": {"_count": 1}}, "\u2018hoodwinked": {"_count": 1, "and": {"_count": 1}}, "thought": {"_count": 1, "insane": {"_count": 1}}, "set": {"_count": 1, "": {"_count": 1}}, "\u2018halfblood": {"_count": 1, "would": {"_count": 1}}, "carried": {"_count": 1, "back": {"_count": 1}}, "laughed": {"_count": 1, "at": {"_count": 1}}, "really": {"_count": 2, "obvious": {"_count": 1}, "ungrateful": {"_count": 1}}, "grumpy": {"_count": 1, "and": {"_count": 1}}, "fooled": {"_count": 1, "isnt": {"_count": 1}}, "withdrawn": {"_count": 1, "from": {"_count": 1}}, "incautious": {"_count": 1, "wandering": {"_count": 1}}, "\u2018the": {"_count": 2, "Chosen": {"_count": 2}}, "hoisted": {"_count": 1, "into": {"_count": 1}}, "\u2018Dumbledore": {"_count": 1, "s": {"_count": 1}}, "outperformed": {"_count": 1, "in": {"_count": 1}}, "remarked": {"_count": 1, "upon": {"_count": 1}}, "dogged": {"_count": 1, "wherever": {"_count": 1}}, "interesting": {"_count": 1, "": {"_count": 1}}, "poisoned": {"_count": 1, "and": {"_count": 1}}, "old": {"_count": 1, "and": {"_count": 1}}, "remarkably": {"_count": 1, "blase": {"_count": 1}}, "dependent": {"_count": 1, "even": {"_count": 1}}, "knocked": {"_count": 1, "out": {"_count": 1}}, "rehearsed": {"_count": 1, "loudly": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "lovesick": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "hurled": {"_count": 1, "headfirst": {"_count": 1}}, "squeezed": {"_count": 1, "through": {"_count": 1}}, "compressed": {"_count": 1, "almost": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "chased": {"_count": 1, "by": {"_count": 1}}, "ridiculous": {"_count": 1, "said": {"_count": 1}}, "accommodated": {"_count": 1, "within": {"_count": 1}}, "\u2018half": {"_count": 1, "a": {"_count": 1}}, "helped": {"_count": 1, "into": {"_count": 1}}, "offered": {"_count": 1, "serious": {"_count": 1}}, "still": {"_count": 1, "underage": {"_count": 1}}, "moved": {"_count": 2, "tonight": {"_count": 2}}, "realistic": {"_count": 1, "": {"_count": 1}}, "modest": {"_count": 1, "Ron": {"_count": 1}}, "brilliant": {"_count": 1, "at": {"_count": 1}}, "stationary": {"_count": 1, "walking": {"_count": 1}}, "imprisoned": {"_count": 1, "and": {"_count": 1}}, "roughly": {"_count": 1, "handled": {"_count": 1}}, "summoned": {"_count": 1, "magically": {"_count": 1}}, "rounded": {"_count": 1, "up": {"_count": 1}}, "unted": {"_count": 1, "down": {"_count": 1}}, "served": {"_count": 1, "coffee": {"_count": 1}}, "detected": {"_count": 1, "They": {"_count": 1}}, "strangled": {"_count": 2, "by": {"_count": 1}, "before": {"_count": 1}}, "tracked": {"_count": 1, "dont": {"_count": 1}}, "FOR": {"_count": 1, "THE": {"_count": 1}}, "kind": {"_count": 1, "or": {"_count": 1}}, "pals": {"_count": 1, "with": {"_count": 1}}, "ripped": {"_count": 1, "apart": {"_count": 1}}, "\u2018Rodent": {"_count": 1, "no": {"_count": 1}}, "sighted": {"_count": 1, "abroad": {"_count": 1}}, "breached": {"_count": 1, "": {"_count": 1}}, "shut": {"_count": 1, "in": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "less": {"_count": 1, "than": {"_count": 1}}, "stolen": {"_count": 1, "was": {"_count": 1}}, "called": {"_count": 1, "here": {"_count": 1}}, "vicious": {"_count": 1, "toward": {"_count": 1}}, "reestablished": {"_count": 1, "": {"_count": 1}}, "fought": {"_count": 1, "so": {"_count": 1}}, "consumed": {"_count": 1, "by": {"_count": 1}}, "Muggleborn": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "raised": {"_count": 1}}, "infuriating": {"_count": 1, "": {"_count": 1}}, "Deaths": {"_count": 1, "own": {"_count": 1}}, "released": {"_count": 1, "at": {"_count": 1}}}, "unusual": {"_count": 40, "name": {"_count": 1, "": {"_count": 1}}, "combination": {"_count": 1, "holly": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 1}, ".": {"_count": 5}}, "a": {"_count": 1, "bit": {"_count": 1}}, "yeh": {"_count": 1, "get": {"_count": 1}}, "even": {"_count": 1, "for": {"_count": 1}}, "about": {"_count": 1, "life": {"_count": 1}}, "show": {"_count": 1, "of": {"_count": 1}}, "activity": {"_count": 2, "": {"_count": 1}, "checking": {"_count": 1}}, "boy": {"_count": 1, "in": {"_count": 1}}, "thing": {"_count": 1, "about": {"_count": 1}}, "things": {"_count": 2, "about": {"_count": 1}, "in": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "exam": {"_count": 1, "any": {"_count": 1}}, "form": {"_count": 1, "your": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "Cho": {"_count": 1, "was": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "occurrence": {"_count": 1, "as": {"_count": 1}}, "magazine": {"_count": 1, "I": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "lesson": {"_count": 1, "Harry": {"_count": 1}}, "hell": {"_count": 1, "come": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "and": {"_count": 1, "powerful": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "move": {"_count": 1, "then": {"_count": 1}}, "for": {"_count": 1, "Ron": {"_count": 1}}, "wizard": {"_count": 1, "Harry": {"_count": 1}}}, "name": {"_count": 370, "": {"_count": 72, ".": {"_count": 44}, "?": {"_count": 18}, "!": {"_count": 10}}, "Potter": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "if": {"_count": 3, "you": {"_count": 1}, "I": {"_count": 1}, "his": {"_count": 1}}, "was": {"_count": 16, "Albus": {"_count": 1}, "": {"_count": 2}, "called": {"_count": 2}, "going": {"_count": 1}, "down": {"_count": 1}, "Errol": {"_count": 1}, "announced": {"_count": 2}, "Stan": {"_count": 1}, "Frank": {"_count": 1}, "entered": {"_count": 1}, "a": {"_count": 1}, "Eileen": {"_count": 1}, "printed": {"_count": 1}}, "to": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 2}, "\u2018Roonil": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 32, "heaven": {"_count": 1}, "aconite": {"_count": 1}, "wizard": {"_count": 2}, "at": {"_count": 1}, "a": {"_count": 4}, "that": {"_count": 1}, "Peter": {"_count": 1}, "Harrys": {"_count": 1}, "each": {"_count": 1}, "Norbert": {"_count": 1}, "the": {"_count": 3}, "Merlin": {"_count": 2}, "\u2018Black": {"_count": 1}, "Hokey": {"_count": 1}, "Galatea": {"_count": 1}, "Hepzibah": {"_count": 1}, "Mundungus": {"_count": 1}, "your": {"_count": 1}, "Merlins": {"_count": 3}, "Black": {"_count": 1}, "Grindelwald": {"_count": 1}, "Gornuk": {"_count": 1}, "brave": {"_count": 1}}, "everyone": {"_count": 1, "in": {"_count": 1}}, "tags": {"_count": 1, "COURSE": {"_count": 1}}, "Dedalus": {"_count": 1, "Diggle": {"_count": 1}}, "he": {"_count": 6, "had": {"_count": 1}, "gave": {"_count": 1}, "has": {"_count": 1}, "supposed": {"_count": 1}, "merely": {"_count": 1}, "saw": {"_count": 1}}, "said": {"_count": 7, "Ron": {"_count": 1}, "Harry": {"_count": 4}, "Mr": {"_count": 1}, "Hagrid": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "and": {"_count": 18, "you": {"_count": 1}, "he": {"_count": 2}, "his": {"_count": 1}, "school": {"_count": 1}, "bearing": {"_count": 1}, "there": {"_count": 1}, "business": {"_count": 2}, "bring": {"_count": 1}, "put": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "address": {"_count": 1}, "Are": {"_count": 1}, "occupation": {"_count": 1}, "whereabouts": {"_count": 1}, "her": {"_count": 1}}, "you": {"_count": 2, "will": {"_count": 2}}, "on": {"_count": 16, "it": {"_count": 4}, "the": {"_count": 9}, "an": {"_count": 1}, "said": {"_count": 2}}, "somewhere": {"_count": 3, "": {"_count": 2}, "before": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "is": {"_count": 18, "Firenze": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}, "Tom": {"_count": 1}, "Stan": {"_count": 1}, "Professor": {"_count": 3}, "Pigwidgeon": {"_count": 1}, "Winky": {"_count": 1}, "Rita": {"_count": 1}, "": {"_count": 3}, "Dolores": {"_count": 1}, "Albus": {"_count": 1}, "Wilkie": {"_count": 1}, "she": {"_count": 1}}, "Ron": {"_count": 1, "hissed": {"_count": 1}}, "for": {"_count": 5, "things": {"_count": 1}, "someone": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 1}, "questioning": {"_count": 1}}, "increases": {"_count": 1, "fear": {"_count": 1}}, "most": {"_count": 1, "witches": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "still": {"_count": 1}}, "or": {"_count": 2, "date": {"_count": 1}, "existence": {"_count": 1}}, "T": {"_count": 2, "": {"_count": 2}}, "me": {"_count": 1, "Tom": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "rearranged": {"_count": 1, "themselves": {"_count": 1}}, "I": {"_count": 3, "was": {"_count": 1}, "knew": {"_count": 1}, "will": {"_count": 1}}, "forever": {"_count": 2, "": {"_count": 1}, "assumed": {"_count": 1}}, "a": {"_count": 1, "name": {"_count": 1}}, "engraved": {"_count": 1, "just": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "that": {"_count": 3, "came": {"_count": 1}, "told": {"_count": 1}, "didnt": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 5, "overlooked": {"_count": 1}, "told": {"_count": 1}, "then": {"_count": 1}, "stared": {"_count": 1}, "shook": {"_count": 1}}, "Professor": {"_count": 1, "R": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "aloud": {"_count": 2, "apart": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 29, "minuscule": {"_count": 1}, "the": {"_count": 15}, "yet": {"_count": 1}, "Dean": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}, "that": {"_count": 7}, "his": {"_count": 1}}, "faced": {"_count": 1, "upward": {"_count": 1}}, "wasnt": {"_count": 1, "on": {"_count": 1}}, "had": {"_count": 4, "been": {"_count": 2}, "stirred": {"_count": 1}, "already": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "soon": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "Weasley": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 3}, "it": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "written": {"_count": 2, "upon": {"_count": 2}}, "just": {"_count": 1, "came": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "got": {"_count": 3, "into": {"_count": 2}, "dragged": {"_count": 1}}, "hadnt": {"_count": 1, "come": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "properly": {"_count": 1, "he": {"_count": 1}}, "terms": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "out": {"_count": 1}}, "dishonored": {"_count": 1, "and": {"_count": 1}}, "Crouch": {"_count": 1, "attacked": {"_count": 1}}, "didnt": {"_count": 2, "get": {"_count": 1}, "do": {"_count": 1}}, "upon": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 2, "members": {"_count": 1}, "Gernumbli": {"_count": 1}}, "as": {"_count": 4, "they": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}, "though": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "REGULUS": {"_count": 1, "BLACK": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "says": {"_count": 1, "Mrs": {"_count": 1}}, "Said": {"_count": 1, "Hufflepuff": {"_count": 1}}, "people": {"_count": 1, "give": {"_count": 1}}, "Harry": {"_count": 2, "did": {"_count": 1}, "said": {"_count": 1}}, "down": {"_count": 1, "just": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "o": {"_count": 1, "Tenebrus": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "softly": {"_count": 1, "up": {"_count": 1}}, "Longbottom": {"_count": 1, "too": {"_count": 1}}, "spat": {"_count": 1, "Snape": {"_count": 1}}, "They": {"_count": 1, "glared": {"_count": 1}}, "Rita": {"_count": 1, "had": {"_count": 1}}, "fer": {"_count": 1, "him": {"_count": 1}}, "doing": {"_count": 1, "down": {"_count": 1}}, "with": {"_count": 2, "your": {"_count": 1}, "Percy": {"_count": 1}}, "spoken": {"_count": 1, "aloud": {"_count": 1}}, "thrown": {"_count": 1, "out": {"_count": 1}}, "UNoPoo": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "Riddle": {"_count": 1, "gave": {"_count": 1}}, "Tom": {"_count": 2, "": {"_count": 2}}, "\u2018Slug": {"_count": 1, "Club": {"_count": 1}}, "convincing": {"_count": 1, "or": {"_count": 1}}, "\u2018Marvolo": {"_count": 1, "which": {"_count": 1}}, "its": {"_count": 1, "something": {"_count": 1}}, "\u2018Roonil": {"_count": 1, "Wazlib": {"_count": 1}}, "couldnt": {"_count": 1, "it": {"_count": 1}}, "quite": {"_count": 1, "softly": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "before": {"_count": 3, "but": {"_count": 1}, "": {"_count": 2}}, "Gregorovitch": {"_count": 1, "familiar": {"_count": 1}}, "leapt": {"_count": 1, "out": {"_count": 1}}, "began": {"_count": 1, "Harry": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "breaks": {"_count": 1, "protective": {"_count": 1}}, "\u2018Peverell": {"_count": 1, "is": {"_count": 1}}, "Peverell": {"_count": 1, "a": {"_count": 1}}, "than": {"_count": 1, "Barny": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "etched": {"_count": 1, "just": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "whether": {"_count": 1, "friend": {"_count": 1}}}, "sure": {"_count": 710, "there": {"_count": 8, "were": {"_count": 3}, "had": {"_count": 1}, "was": {"_count": 3}, "is": {"_count": 1}}, "his": {"_count": 6, "nephew": {"_count": 1}, "houseelf": {"_count": 1}, "wand": {"_count": 1}, "anger": {"_count": 1}, "feet": {"_count": 1}, "big": {"_count": 1}}, "it": {"_count": 29, "was": {"_count": 9}, "wouldnt": {"_count": 1}, "is": {"_count": 4}, "covers": {"_count": 1}, "seems": {"_count": 1}, "hadnt": {"_count": 2}, "would": {"_count": 5}, "had": {"_count": 2}, "will": {"_count": 1}, "wasnt": {"_count": 1}, "did": {"_count": 1}, "cant": {"_count": 1}}, "the": {"_count": 19, "snake": {"_count": 1}, "Dursleys": {"_count": 1}, "coats": {"_count": 1}, "unsettled": {"_count": 1}, "real": {"_count": 1}, "hangings": {"_count": 1}, "rest": {"_count": 1}, "sound": {"_count": 1}, "pair": {"_count": 1}, "stretch": {"_count": 1}, "Minister": {"_count": 1}, "neighbors": {"_count": 1}, "Ministry": {"_count": 1}, "reason": {"_count": 1}, "whole": {"_count": 1}, "Prince": {"_count": 1}, "way": {"_count": 1}, "time": {"_count": 1}, "Dark": {"_count": 1}}, "they": {"_count": 23, "didnt": {"_count": 1}, "were": {"_count": 5}, "believed": {"_count": 2}, "are": {"_count": 2}, "ate": {"_count": 1}, "got": {"_count": 1}, "could": {"_count": 2}, "had": {"_count": 1}, "did": {"_count": 1}, "can": {"_count": 1}, "all": {"_count": 1}, "would": {"_count": 2}, "werent": {"_count": 1}, "recognized": {"_count": 1}, "said": {"_count": 1}}, "that": {"_count": 116, "Harry": {"_count": 4}, "Hedwigs": {"_count": 1}, "neither": {"_count": 1}, "person": {"_count": 1}, "the": {"_count": 9}, "he": {"_count": 14}, "Madam": {"_count": 1}, "criminal": {"_count": 1}, "Blacks": {"_count": 1}, "no": {"_count": 2}, "somebody": {"_count": 1}, "Crookshanks": {"_count": 1}, "Frank": {"_count": 1}, "Hedwig": {"_count": 1}, "Mr": {"_count": 1}, "this": {"_count": 1}, "they": {"_count": 11}, "if": {"_count": 6}, "Siriuss": {"_count": 1}, "should": {"_count": 1}, "was": {"_count": 5}, "she": {"_count": 3}, "Fleur": {"_count": 1}, "there": {"_count": 3}, "Dobby": {"_count": 1}, "someone": {"_count": 1}, "anyone": {"_count": 1}, "Lupin": {"_count": 1}, "under": {"_count": 1}, "Dumbledore": {"_count": 2}, "Ron": {"_count": 3}, "you": {"_count": 1}, "every": {"_count": 1}, "wont": {"_count": 1}, "his": {"_count": 1}, "nobody": {"_count": 2}, "their": {"_count": 1}, "none": {"_count": 1}, "all": {"_count": 2}, "Slughorn": {"_count": 2}, "we": {"_count": 2}, "in": {"_count": 2}, "Voldemorts": {"_count": 1}, "Voldemort": {"_count": 4}, "Snape": {"_count": 1}, "it": {"_count": 4}, "once": {"_count": 1}, "sooner": {"_count": 1}, "ghouls": {"_count": 1}, "Scrimgeour": {"_count": 1}, "something": {"_count": 1}, "when": {"_count": 1}, "Rons": {"_count": 1}, "Ginny": {"_count": 1}}, "thatll": {"_count": 1, "work": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "your": {"_count": 1}, "marry": {"_count": 1}}, "he": {"_count": 64, "liked": {"_count": 1}, "could": {"_count": 6}, "had": {"_count": 14}, "was": {"_count": 13}, "knew": {"_count": 3}, "will": {"_count": 1}, "caught": {"_count": 1}, "even": {"_count": 1}, "wasnt": {"_count": 1}, "must": {"_count": 2}, "can": {"_count": 1}, "trusts": {"_count": 1}, "would": {"_count": 8}, "is": {"_count": 1}, "saw": {"_count": 1}, "overheard": {"_count": 1}, "wanted": {"_count": 1}, "isnt": {"_count": 1}, "felt": {"_count": 2}, "cant": {"_count": 1}, "never": {"_count": 1}, "gets": {"_count": 1}, "did": {"_count": 1}}, "thats": {"_count": 3, "a": {"_count": 1}, "all": {"_count": 1}, "advisable": {"_count": 1}}, "": {"_count": 42, "?": {"_count": 18}, ".": {"_count": 21}, "!": {"_count": 3}}, "better": {"_count": 1, "be": {"_count": 1}}, "this": {"_count": 8, "year": {"_count": 1}, "couldnt": {"_count": 1}, "is": {"_count": 5}, "doesnt": {"_count": 1}}, "hed": {"_count": 8, "walked": {"_count": 1}, "read": {"_count": 1}, "have": {"_count": 1}, "respond": {"_count": 1}, "be": {"_count": 2}, "want": {"_count": 1}, "come": {"_count": 1}}, "about": {"_count": 3, "the": {"_count": 1}, "this": {"_count": 2}}, "so": {"_count": 1, "a": {"_count": 1}}, "shed": {"_count": 2, "be": {"_count": 1}, "still": {"_count": 1}}, "we": {"_count": 14, "play": {"_count": 1}, "are": {"_count": 1}, "really": {"_count": 1}, "can": {"_count": 2}, "win": {"_count": 1}, "shall": {"_count": 2}, "dont": {"_count": 1}, "ought": {"_count": 1}, "all": {"_count": 1}, "stayed": {"_count": 1}, "will": {"_count": 1}, "cant": {"_count": 1}}, "Peeves": {"_count": 1, "wasnt": {"_count": 1}}, "Firenze": {"_count": 1, "thought": {"_count": 1}}, "I": {"_count": 15, "could": {"_count": 2}, "didnt": {"_count": 1}, "can": {"_count": 1}, "got": {"_count": 1}, "must": {"_count": 1}, "get": {"_count": 1}, "want": {"_count": 1}, "slipped": {"_count": 1}, "did": {"_count": 1}, "take": {"_count": 1}, "am": {"_count": 1}, "keep": {"_count": 1}, "had": {"_count": 1}, "imagined": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Dumbledore": {"_count": 1}, "Slughorn": {"_count": 1}}, "you": {"_count": 48, "are": {"_count": 5}, "were": {"_count": 2}, "knew": {"_count": 1}, "got": {"_count": 2}, "feel": {"_count": 1}, "can": {"_count": 2}, "win": {"_count": 1}, "werent": {"_count": 2}, "did": {"_count": 3}, "have": {"_count": 2}, "get": {"_count": 2}, "will": {"_count": 2}, "wouldnt": {"_count": 2}, "know": {"_count": 4}, "write": {"_count": 1}, "tell": {"_count": 1}, "slept": {"_count": 1}, "must": {"_count": 1}, "achieve": {"_count": 1}, "dont": {"_count": 2}, "also": {"_count": 1}, "look": {"_count": 1}, "do": {"_count": 1}, "understood": {"_count": 1}, "would": {"_count": 1}, "all": {"_count": 1}, "ought": {"_count": 1}, "arent": {"_count": 1}, "close": {"_count": 1}, "beat": {"_count": 1}}, "which": {"_count": 2, "is": {"_count": 1}, "it": {"_count": 1}}, "would": {"_count": 5, "carry": {"_count": 1}, "believe": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}, "come": {"_count": 1}}, "to": {"_count": 20, "get": {"_count": 1}, "come": {"_count": 1}, "be": {"_count": 6}, "make": {"_count": 1}, "have": {"_count": 2}, "mention": {"_count": 1}, "research": {"_count": 1}, "ask": {"_count": 1}, "understand": {"_count": 1}, "know": {"_count": 1}, "do": {"_count": 1}, "give": {"_count": 1}, "act": {"_count": 1}, "carry": {"_count": 1}}, "theyd": {"_count": 5, "be": {"_count": 2}, "really": {"_count": 1}, "never": {"_count": 1}, "have": {"_count": 1}}, "enough": {"_count": 27, "it": {"_count": 1}, "there": {"_count": 3}, "when": {"_count": 2}, "My": {"_count": 1}, "moments": {"_count": 2}, "as": {"_count": 2}, "a": {"_count": 3}, "now": {"_count": 1}, "Harry": {"_count": 2}, "she": {"_count": 1}, "were": {"_count": 1}, "they": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 2}, "large": {"_count": 1}, "by": {"_count": 1}, "his": {"_count": 1}}, "she": {"_count": 13, "had": {"_count": 4}, "was": {"_count": 6}, "would": {"_count": 2}, "wont": {"_count": 1}}, "your": {"_count": 2, "ears": {"_count": 1}, "earmuffs": {"_count": 1}}, "none": {"_count": 3, "of": {"_count": 3}}, "whether": {"_count": 15, "he": {"_count": 6}, "they": {"_count": 1}, "or": {"_count": 2}, "to": {"_count": 1}, "I": {"_count": 2}, "it": {"_count": 1}, "his": {"_count": 1}, "this": {"_count": 1}}, "nothing": {"_count": 1, "Snape": {"_count": 1}}, "no": {"_count": 4, "student": {"_count": 1}, "one": {"_count": 1}, "students": {"_count": 1}, "owls": {"_count": 1}}, "what": {"_count": 10, "made": {"_count": 1}, "the": {"_count": 1}, "theyll": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "Sirius": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 1}, "happened": {"_count": 1}}, "yehre": {"_count": 1, "all": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "Ive": {"_count": 2, "done": {"_count": 1}, "read": {"_count": 1}}, "of": {"_count": 22, "that": {"_count": 4}, "it": {"_count": 8}, "allies": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}, "what": {"_count": 1}, "one": {"_count": 1}, "this": {"_count": 1}, "now": {"_count": 1}, "who": {"_count": 1}, "the": {"_count": 1}, "things": {"_count": 1}}, "my": {"_count": 3, "colleagues": {"_count": 1}, "book": {"_count": 1}, "father": {"_count": 1}}, "Dumbledores": {"_count": 1, "eyes": {"_count": 1}}, "their": {"_count": 1, "feet": {"_count": 1}}, "everyones": {"_count": 1, "out": {"_count": 1}}, "youll": {"_count": 7, "feel": {"_count": 1}, "understand": {"_count": 1}, "be": {"_count": 1}, "find": {"_count": 1}, "agree": {"_count": 1}, "come": {"_count": 1}, "dazzle": {"_count": 1}}, "is": {"_count": 3, "what": {"_count": 1}, "that": {"_count": 2}}, "Mr": {"_count": 4, "Weasley": {"_count": 1}, "Crouch": {"_count": 2}, "and": {"_count": 1}}, "youre": {"_count": 7, "okay": {"_count": 2}, "therel": {"_count": 1}, "there": {"_count": 1}, "all": {"_count": 2}, "giving": {"_count": 1}}, "if": {"_count": 4, "I": {"_count": 1}, "Ive": {"_count": 1}, "thats": {"_count": 1}, "you": {"_count": 1}}, "Ill": {"_count": 3, "be": {"_count": 3}}, "yeh": {"_count": 3, "can": {"_count": 1}, "were": {"_count": 1}, "understand": {"_count": 1}}, "a": {"_count": 1, "hippogriff": {"_count": 1}}, "where": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 6, "the": {"_count": 1}, "not": {"_count": 2}, "called": {"_count": 1}, "safer": {"_count": 1}, "severe": {"_count": 1}}, "Ron": {"_count": 1, "would": {"_count": 1}}, "RiddikulusV": {"_count": 1, "roared": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 3}}, "youve": {"_count": 2, "copied": {"_count": 1}, "thought": {"_count": 1}}, "dear": {"_count": 2, "": {"_count": 2}}, "even": {"_count": 1, "now": {"_count": 1}}, "its": {"_count": 7, "us": {"_count": 1}, "him": {"_count": 2}, "fine": {"_count": 1}, "just": {"_count": 1}, "Grindelwalds": {"_count": 1}, "still": {"_count": 1}}, "well": {"_count": 2, "meet": {"_count": 1}, "be": {"_count": 1}}, "way": {"_count": 1, "to": {"_count": 1}}, "Harryd": {"_count": 1, "say": {"_count": 1}}, "sign": {"_count": 1, "that": {"_count": 1}}, "therefore": {"_count": 1, "that": {"_count": 1}}, "Dumbledore": {"_count": 5, "will": {"_count": 1}, "knew": {"_count": 1}, "would": {"_count": 2}, "finished": {"_count": 1}}, "Gryffindor": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 9, "Harry": {"_count": 2}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "Mrs": {"_count": 1}, "Ron": {"_count": 2}, "Dean": {"_count": 1}, "Draco": {"_count": 1}}, "Cedric": {"_count": 2, "wouldnt": {"_count": 1}, "would": {"_count": 1}}, "why": {"_count": 4, "he": {"_count": 3}, "": {"_count": 1}}, "Myrtle": {"_count": 2, "couldnt": {"_count": 1}, "had": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 2, "back": {"_count": 1}, "okay": {"_count": 1}}, "everyone": {"_count": 1, "knew": {"_count": 1}}, "Voldemort": {"_count": 4, "cant": {"_count": 1}, "had": {"_count": 1}, "will": {"_count": 1}, "knew": {"_count": 1}}, "was": {"_count": 6, "blood": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "beyond": {"_count": 1}, "Umbridges": {"_count": 1}, "where": {"_count": 1}}, "theyre": {"_count": 3, "going": {"_count": 1}, "trained": {"_count": 1}, "very": {"_count": 1}}, "Sirius": {"_count": 2, "will": {"_count": 1}, "is": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "shes": {"_count": 1, "no": {"_count": 1}}, "whats": {"_count": 1, "happened": {"_count": 1}}, "Hagrids": {"_count": 1, "fine": {"_count": 1}}, "Ernie": {"_count": 1, "will": {"_count": 1}}, "had": {"_count": 1, "hung": {"_count": 1}}, "theyll": {"_count": 1, "find": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "does": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "Hermiones": {"_count": 1, "notes": {"_count": 1}}, "id": {"_count": 1, "is": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "knowing": {"_count": 1}}, "Slughorn": {"_count": 1, "would": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 2}, "was": {"_count": 1}}, "how": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "yet": {"_count": 1, "said": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "nobody": {"_count": 1, "was": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "been": {"_count": 1, "using": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "beyond": {"_count": 1, "doubt": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "as": {"_count": 1, "Voldemort": {"_count": 1}}, "have": {"_count": 1, "exerted": {"_count": 1}}, "than": {"_count": 1, "Ron": {"_count": 1}}, "Snapes": {"_count": 1, "on": {"_count": 1}}, "zat": {"_count": 1, "will": {"_count": 1}}, "Riddle": {"_count": 1, "already": {"_count": 1}}, "Doges": {"_count": 1, "tiny": {"_count": 1}}, "Oh": {"_count": 1, "no": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "\u2018Miss": {"_count": 1, "Cissy": {"_count": 1}}, "James": {"_count": 1, "would": {"_count": 1}}, "Ginny": {"_count": 1, "Neville": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "theres": {"_count": 1, "someone": {"_count": 1}}, "unless": {"_count": 1, "it": {"_count": 1}}, "Id": {"_count": 1, "heard": {"_count": 1}}, "make": {"_count": 1, "quite": {"_count": 1}}}, "lots": {"_count": 21, "of": {"_count": 11, "people": {"_count": 3}, "pictures": {"_count": 1}, "bushy": {"_count": 1}, "sweets": {"_count": 1}, "them": {"_count": 2}, "work": {"_count": 1}, "indepth": {"_count": 1}, "important": {"_count": 1}}, "ter": {"_count": 3, "do": {"_count": 2}, "buy": {"_count": 1}}, "o": {"_count": 1, "rats": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "more": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "write": {"_count": 1}}, "in": {"_count": 2, "common": {"_count": 2}}}, "Come": {"_count": 272, "to": {"_count": 11, "think": {"_count": 5}, "throw": {"_count": 1}, "get": {"_count": 1}, "scorn": {"_count": 1}, "have": {"_count": 1}, "watch": {"_count": 1}, "my": {"_count": 1}}, "on": {"_count": 140, "": {"_count": 24}, "then": {"_count": 5}, "Harry": {"_count": 15}, "back": {"_count": 1}, "hurry": {"_count": 2}, "boy": {"_count": 2}, "dear": {"_count": 2}, "he": {"_count": 2}, "run": {"_count": 1}, "Hermione": {"_count": 9}, "cheer": {"_count": 1}, "get": {"_count": 1}, "I": {"_count": 3}, "Ill": {"_count": 1}, "Ron": {"_count": 5}, "said": {"_count": 8}, "now": {"_count": 11}, "grab": {"_count": 1}, "lets": {"_count": 9}, "Oliver": {"_count": 1}, "Rubeus": {"_count": 1}, "under": {"_count": 1}, "last": {"_count": 1}, "Alicia": {"_count": 1}, "and": {"_count": 1}, "all": {"_count": 1}, "Buckbeak": {"_count": 1}, "you": {"_count": 5}, "three": {"_count": 1}, "Barty": {"_count": 1}, "please": {"_count": 1}, "howm": {"_count": 1}, "jump": {"_count": 1}, "Ginny": {"_count": 1}, "weve": {"_count": 1}, "wed": {"_count": 2}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "Ginnys": {"_count": 1}, "Ive": {"_count": 1}, "Im": {"_count": 1}, "well": {"_count": 1}, "why": {"_count": 1}, "would": {"_count": 1}, "if": {"_count": 1}, "Draco": {"_count": 1}, "she": {"_count": 1}, "Ollivander": {"_count": 1}, "this": {"_count": 1}, "Luna": {"_count": 1}, "Severus": {"_count": 1}}, "back": {"_count": 7, "boy": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "you": {"_count": 1}, "up": {"_count": 1}}, "and": {"_count": 17, "get": {"_count": 2}, "look": {"_count": 2}, "see": {"_count": 2}, "join": {"_count": 1}, "stay": {"_count": 1}, "have": {"_count": 4}, "sit": {"_count": 3}, "Go": {"_count": 1}, "dance": {"_count": 1}}, "here": {"_count": 16, "Quirrell": {"_count": 1}, "I": {"_count": 1}, "Mr": {"_count": 2}, "Ill": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "boy": {"_count": 1}, "Ive": {"_count": 1}, "she": {"_count": 1}, "Ron": {"_count": 1}, "then": {"_count": 1}, "She": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 18, "and": {"_count": 2}, "Harry": {"_count": 1}, "called": {"_count": 1}, "here": {"_count": 3}, "come": {"_count": 4}, "then": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "shes": {"_count": 1}, "quickly": {"_count": 1}, "": {"_count": 1}}, "Draco": {"_count": 1, "Harry": {"_count": 1}}, "Severus": {"_count": 1, "theres": {"_count": 1}}, "an": {"_count": 1, "see": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "with": {"_count": 5, "me": {"_count": 5}}, "off": {"_count": 14, "it": {"_count": 14}}, "now": {"_count": 5, "he": {"_count": 1}, "Harry": {"_count": 1}, "Potter": {"_count": 1}, "Dumbledore": {"_count": 1}, "come": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "ere": {"_count": 1, "": {"_count": 1}}, "follow": {"_count": 1, "me": {"_count": 1}}, "clap": {"_count": 1, "this": {"_count": 1}}, "along": {"_count": 5, "quickly": {"_count": 1}, "dear": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 1}, "then": {"_count": 1}}, "But": {"_count": 1, "then": {"_count": 1}}, "Wormtail": {"_count": 1, "one": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "said": {"_count": 3, "Madame": {"_count": 1}, "the": {"_count": 1}, "Voldemort": {"_count": 1}}, "All": {"_count": 1, "Ye": {"_count": 1}}, "seek": {"_count": 1, "us": {"_count": 1}}, "ON": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "niceties": {"_count": 1}}, "out": {"_count": 4, "Harry": {"_count": 1}, "come": {"_count": 1}, "of": {"_count": 2}}, "through": {"_count": 1, "the": {"_count": 1}}, "early": {"_count": 1, "an": {"_count": 1}}, "over": {"_count": 2, "to": {"_count": 2}}, "closer": {"_count": 1, "": {"_count": 1}}}, "nephew": {"_count": 8, "was": {"_count": 1, "called": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Harrys": {"_count": 1, "room": {"_count": 1}}, "very": {"_count": 1, "disturbed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "till": {"_count": 1, "next": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}, "is": {"_count": 1, "going": {"_count": 1}}}, "Harvey": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Or": {"_count": 100, "Harold": {"_count": 1, "": {"_count": 1}}, "twice": {"_count": 1, "A": {"_count": 1}}, "yet": {"_count": 1, "in": {"_count": 1}}, "perhaps": {"_count": 4, "in": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "Mundungus": {"_count": 1}}, "young": {"_count": 1, "with": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "both": {"_count": 1, "said": {"_count": 1}}, "else": {"_count": 2, "": {"_count": 1}, "well": {"_count": 1}}, "were": {"_count": 1, "they": {"_count": 1}}, "have": {"_count": 3, "the": {"_count": 1}, "you": {"_count": 2}}, "you": {"_count": 4, "might": {"_count": 1}, "could": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 3, "might": {"_count": 1}, "could": {"_count": 1}, "dropped": {"_count": 1}}, "maybe": {"_count": 4, "said": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}, "I": {"_count": 3, "thought": {"_count": 2}, "should": {"_count": 1}}, "well": {"_count": 3, "be": {"_count": 1}, "stuff": {"_count": 1}, "crumble": {"_count": 1}}, "did": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "is": {"_count": 6, "it": {"_count": 2}, "this": {"_count": 2}, "there": {"_count": 1}, "he": {"_count": 1}}, "instructions": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 3, "it": {"_count": 2}, "he": {"_count": 1}}, "had": {"_count": 5, "that": {"_count": 1}, "Malfoys": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 4, "large": {"_count": 1}, "frog": {"_count": 1}, "new": {"_count": 1}, "love": {"_count": 1}}, "our": {"_count": 1, "son": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "A": {"_count": 1, "Highly": {"_count": 1}}, "they": {"_count": 2, "could": {"_count": 1}, "think": {"_count": 1}}, "it": {"_count": 1, "may": {"_count": 1}}, "are": {"_count": 5, "we": {"_count": 1}, "you": {"_count": 3}, "they": {"_count": 1}}, "would": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}}, "that": {"_count": 3, "I": {"_count": 2}, "the": {"_count": 1}}, "rather": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 2, "Voldemorts": {"_count": 1}, "Snape": {"_count": 1}}, "even": {"_count": 1, "looked": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "part": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "the": {"_count": 2, "Ministry": {"_count": 1}, "half": {"_count": 1}}, "why": {"_count": 1, "youre": {"_count": 1}}, "Ministry": {"_count": 1, "decrees": {"_count": 1}}, "dyou": {"_count": 3, "reckon": {"_count": 1}, "want": {"_count": 1}, "think": {"_count": 1}}, "has": {"_count": 2, "Dumbledore": {"_count": 1}, "this": {"_count": 1}}, "herself": {"_count": 1, "said": {"_count": 1}}, "hell": {"_count": 1, "nail": {"_count": 1}}, "Slughorn": {"_count": 1, "Dumbledore": {"_count": 1}}, "Or": {"_count": 1, "you": {"_count": 1}}, "Dobbin": {"_count": 1, "as": {"_count": 1}}, "hes": {"_count": 1, "the": {"_count": 1}}, "someone": {"_count": 1, "who": {"_count": 1}}, "peraps": {"_count": 1, "you": {"_count": 1}}, "she": {"_count": 1, "interposed": {"_count": 1}}, "could": {"_count": 1, "there": {"_count": 1}}, "dear": {"_count": 1, "Bellatrix": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}}, "Harold": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "Dingles": {"_count": 1, "powdered": {"_count": 1}}, "Dingle": {"_count": 1, "reckons": {"_count": 1}}}, "point": {"_count": 274, "in": {"_count": 14, "worrying": {"_count": 1}, "emptying": {"_count": 1}, "Snape": {"_count": 1}, "troubling": {"_count": 1}, "staying": {"_count": 1}, "telling": {"_count": 1}, "continuing": {"_count": 1}, "meeting": {"_count": 1}, "the": {"_count": 2}, "waiting": {"_count": 1}, "our": {"_count": 1}, "magical": {"_count": 1}, "wiping": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 48, "unfolding": {"_count": 1}, "his": {"_count": 2}, "unlocking": {"_count": 1}, "telling": {"_count": 1}, "the": {"_count": 6}, "view": {"_count": 4}, "sending": {"_count": 2}, "keeping": {"_count": 1}, "trying": {"_count": 1}, "informing": {"_count": 1}, "moaning": {"_count": 1}, "them": {"_count": 1}, "Switching": {"_count": 1}, "a": {"_count": 3}, "extinction": {"_count": 1}, "talking": {"_count": 1}, "fainting": {"_count": 1}, "forcing": {"_count": 1}, "Defense": {"_count": 1}, "any": {"_count": 1}, "checking": {"_count": 1}, "her": {"_count": 1}, "getting": {"_count": 1}, "withdrawing": {"_count": 1}, "following": {"_count": 1}, "entering": {"_count": 1}, "foolishness": {"_count": 1}, "being": {"_count": 2}, "disagreeing": {"_count": 1}, "Hagrid": {"_count": 1}, "death": {"_count": 1}, "taking": {"_count": 2}, "tonight": {"_count": 1}, "all": {"_count": 1}}, "but": {"_count": 2, "itll": {"_count": 1}, "something": {"_count": 1}}, "at": {"_count": 6, "Dudley": {"_count": 1}, "once": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}, "all": {"_count": 1}, "Harry": {"_count": 1}}, "new": {"_count": 1, "Gryffindors": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "youve": {"_count": 1, "lost": {"_count": 1}}, "with": {"_count": 1, "anxiety": {"_count": 1}}, "beating": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 25}, "!": {"_count": 3}, "?": {"_count": 6}}, "for": {"_count": 3, "Gryffindor": {"_count": 1}, "any": {"_count": 1}, "weeks": {"_count": 1}}, "Fred": {"_count": 2, "caught": {"_count": 1}, "and": {"_count": 1}}, "Her": {"_count": 1, "words": {"_count": 1}}, "denying": {"_count": 1, "it": {"_count": 1}}, "is": {"_count": 13, "the": {"_count": 1}, "she": {"_count": 1}, "Wood": {"_count": 1}, "even": {"_count": 1}, "are": {"_count": 1}, "that": {"_count": 2}, "if": {"_count": 1}, "were": {"_count": 1}, "it": {"_count": 2}, "Filch": {"_count": 1}, "you": {"_count": 1}}, "said": {"_count": 10, "Harry": {"_count": 1}, "Fred": {"_count": 1}, "Professor": {"_count": 1}, "Sirius": {"_count": 3}, "Ron": {"_count": 1}, "Hermione": {"_count": 2}, "Mrs": {"_count": 1}}, "this": {"_count": 2, "out": {"_count": 1}, "hex": {"_count": 1}}, "some": {"_count": 2, "ten": {"_count": 1}, "fifty": {"_count": 1}}, "out": {"_count": 5, "means": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 2}}, "talking": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 2, "theyd": {"_count": 1}, "the": {"_count": 1}}, "reflecting": {"_count": 1, "the": {"_count": 1}}, "Molly": {"_count": 1, "they": {"_count": 1}}, "waking": {"_count": 1, "me": {"_count": 1}}, "moving": {"_count": 1, "them": {"_count": 1}}, "hiding": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "grunt": {"_count": 1}, "reflected": {"_count": 1}, "he": {"_count": 1}}, "that": {"_count": 5, "Georges": {"_count": 1}, "she": {"_count": 1}, "some": {"_count": 1}, "thing": {"_count": 1}, "he": {"_count": 1}}, "o": {"_count": 2, "livin": {"_count": 1}, "view": {"_count": 1}}, "where": {"_count": 7, "Harry": {"_count": 2}, "the": {"_count": 4}, "Bill": {"_count": 1}}, "ever": {"_count": 1, "": {"_count": 1}}, "asking": {"_count": 1, "how": {"_count": 1}}, "putting": {"_count": 1, "in": {"_count": 1}}, "Mr": {"_count": 3, "Crouch": {"_count": 1}, "Potter": {"_count": 1}, "Gaunt": {"_count": 1}}, "them": {"_count": 1, "at": {"_count": 1}}, "pretending": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "quivering": {"_count": 1, "slightly": {"_count": 1}}, "hasnt": {"_count": 1, "he": {"_count": 1}}, "Thats": {"_count": 1, "what": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "might": {"_count": 1}}, "Harry": {"_count": 4, "didnt": {"_count": 1}, "found": {"_count": 1}, "heard": {"_count": 1}, "": {"_count": 1}}, "much": {"_count": 1, "better": {"_count": 1}}, "wouldnt": {"_count": 1, "it": {"_count": 1}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "due": {"_count": 1, "north": {"_count": 1}}, "penetrate": {"_count": 1, "the": {"_count": 1}}, "worrying": {"_count": 1, "yet": {"_count": 1}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "what": {"_count": 1}}, "the": {"_count": 5, "wand": {"_count": 2}, "thing": {"_count": 1}, "finger": {"_count": 1}, "village": {"_count": 1}}, "down": {"_count": 1, "and": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "pressed": {"_count": 1}}, "little": {"_count": 1, "bro": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "continuing": {"_count": 1, "with": {"_count": 1}}, "Im": {"_count": 1, "trying": {"_count": 1}}, "telling": {"_count": 1, "him": {"_count": 1}}, "their": {"_count": 1, "wands": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "starting": {"_count": 1, "anything": {"_count": 1}}, "hanging": {"_count": 1, "around": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "just": {"_count": 2, "over": {"_count": 1}, "beyond": {"_count": 1}}, "its": {"_count": 1, "more": {"_count": 1}}, "we": {"_count": 2, "asked": {"_count": 1}, "have": {"_count": 1}}, "forcing": {"_count": 1, "Ernie": {"_count": 1}}, "slightly": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "realized": {"_count": 1}}, "interjected": {"_count": 1, "Tonks": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "apportioning": {"_count": 1, "blame": {"_count": 1}}, "I": {"_count": 2, "dont": {"_count": 1}, "hope": {"_count": 1}}, "now": {"_count": 1, "weve": {"_count": 1}}, "because": {"_count": 3, "so": {"_count": 1}, "she": {"_count": 1}, "Hermione": {"_count": 1}}, "Ron": {"_count": 1, "snapped": {"_count": 1}}, "forth": {"_count": 1, "we": {"_count": 1}}, "beyond": {"_count": 1, "all": {"_count": 1}}, "yelling": {"_count": 1, "": {"_count": 1}}, "Leanne": {"_count": 1, "was": {"_count": 1}}, "arguing": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "onward": {"_count": 1, "said": {"_count": 1}}, "The": {"_count": 1, "room": {"_count": 1}}, "youll": {"_count": 1, "just": {"_count": 1}}, "realize": {"_count": 1, "we": {"_count": 1}}, "locking": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 3, "at": {"_count": 1}, "will": {"_count": 1}, "realized": {"_count": 1}}, "waiting": {"_count": 1, "in": {"_count": 1}}, "even": {"_count": 1, "before": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}, "They": {"_count": 1, "whisper": {"_count": 1}}, "all": {"_count": 1, "day": {"_count": 1}}, "staying": {"_count": 1, "where": {"_count": 1}}, "many": {"_count": 1, "times": {"_count": 1}}, "there": {"_count": 1, "said": {"_count": 1}}, "about": {"_count": 1, "Wizard": {"_count": 1}}, "was": {"_count": 1, "because": {"_count": 1}}, "would": {"_count": 1, "come": {"_count": 1}}, "dangled": {"_count": 1, "over": {"_count": 1}}, "trembled": {"_count": 1, "and": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}}, "worrying": {"_count": 28, "Mrs": {"_count": 1, "Dursley": {"_count": 1}}, "him": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "about": {"_count": 12, "the": {"_count": 2}, "them": {"_count": 1}, "anything": {"_count": 1}, "deaths": {"_count": 1}, "anyone": {"_count": 1}, "her": {"_count": 2}, "that": {"_count": 1}, "what": {"_count": 1}, "Kreachers": {"_count": 1}, "": {"_count": 1}}, "Crookshanks": {"_count": 1, "will": {"_count": 1}}, "you": {"_count": 1, "Harry": {"_count": 1}}, "Oliver": {"_count": 1, "said": {"_count": 1}}, "facts": {"_count": 1, "about": {"_count": 1}}, "yet": {"_count": 1, "he": {"_count": 1}}, "Leave": {"_count": 1, "my": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "aloud": {"_count": 1, "about": {"_count": 1}}, "really": {"_count": 1, "worrying": {"_count": 1}}}, "upset": {"_count": 55, "at": {"_count": 3, "any": {"_count": 1}, "being": {"_count": 1}, "breakfast": {"_count": 1}}, "me": {"_count": 3, "today": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}}, "or": {"_count": 1, "angry": {"_count": 1}}, "by": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "we": {"_count": 1, "wont": {"_count": 1}}, "you": {"_count": 4, "said": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "crying": {"_count": 1, "her": {"_count": 1}}, "his": {"_count": 1, "ink": {"_count": 1}}, "when": {"_count": 2, "she": {"_count": 1}, "Hermiones": {"_count": 1}}, "him": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}}, "abou": {"_count": 1, "Lily": {"_count": 1}}, "about": {"_count": 3, "what": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 2}}, "": {"_count": 11, ".": {"_count": 11}}, "Harry": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Luna": {"_count": 1}}, "Umbridge": {"_count": 1, "you": {"_count": 1}}, "no": {"_count": 1, "Im": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "Molly": {"_count": 1, "but": {"_count": 1}}, "Cho": {"_count": 1, "when": {"_count": 1}}, "that": {"_count": 1, "Trelawney": {"_count": 1}}, "them": {"_count": 1, "somehow": {"_count": 1}}, "but": {"_count": 1, "determined": {"_count": 1}}, "Mundungus": {"_count": 1, "has": {"_count": 1}}, "But": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 1, "lied": {"_count": 1}}, "cradling": {"_count": 1, "her": {"_count": 1}}}, "mention": {"_count": 102, "of": {"_count": 20, "her": {"_count": 1}, "the": {"_count": 4}, "Harrys": {"_count": 2}, "Professor": {"_count": 1}, "underwater": {"_count": 1}, "Dumbledores": {"_count": 1}, "Voldemorts": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 2}, "this": {"_count": 1}, "Slughorns": {"_count": 1}, "toffee": {"_count": 1}, "Crumple": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "anything": {"_count": 2, "to": {"_count": 1}, "about": {"_count": 1}}, "the": {"_count": 12, "second": {"_count": 1}, "tinkle": {"_count": 1}, "eggs": {"_count": 1}, "Triwizard": {"_count": 1}, "large": {"_count": 1}, "knife": {"_count": 1}, "occasional": {"_count": 1}, "fact": {"_count": 1}, "ruckus": {"_count": 1}, "recent": {"_count": 1}, "key": {"_count": 1}, "home": {"_count": 1}}, "that": {"_count": 4, "ter": {"_count": 1}, "unnaturalness": {"_count": 1}, "we": {"_count": 1}, "very": {"_count": 1}}, "this": {"_count": 3, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "encounter": {"_count": 1}}, "it": {"_count": 19, "said": {"_count": 4}, "": {"_count": 6}, "to": {"_count": 4}, "I": {"_count": 2}, "on": {"_count": 1}, "then": {"_count": 1}, "mboy": {"_count": 1}}, "platform": {"_count": 1, "nine": {"_count": 1}}, "Hogwarts": {"_count": 1, "at": {"_count": 1}}, "Dracos": {"_count": 1, "father": {"_count": 1}}, "to": {"_count": 1, "Sir": {"_count": 1}}, "hungry": {"_count": 1, "": {"_count": 1}}, "endless": {"_count": 1, "discussions": {"_count": 1}}, "sporadic": {"_count": 1, "howls": {"_count": 1}}, "Cedric": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "sister": {"_count": 1}}, "Percy": {"_count": 1, "in": {"_count": 1}}, "you": {"_count": 1, "a": {"_count": 1}}, "childish": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 2, "long": {"_count": 1}, "ugly": {"_count": 1}}, "she": {"_count": 1, "gave": {"_count": 1}}, "said": {"_count": 1, "Cho": {"_count": 1}}, "as": {"_count": 1, "reluctant": {"_count": 1}}, "names": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 4, "vague": {"_count": 1}, "help": {"_count": 1}, "wife": {"_count": 1}, "name": {"_count": 1}}, "Quidditch": {"_count": 1, "again": {"_count": 1}}, "very": {"_count": 1, "high": {"_count": 1}}, "annoyed": {"_count": 1, "": {"_count": 1}}, "Grawp": {"_count": 1, "not": {"_count": 1}}, "Voldemorts": {"_count": 2, "return": {"_count": 1}, "name": {"_count": 1}}, "done": {"_count": 1, "his": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "what": {"_count": 1, "had": {"_count": 1}}, "much": {"_count": 1, "anger": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "a": {"_count": 1, "certain": {"_count": 1}}, "smuggling": {"_count": 1, "MadEyes": {"_count": 1}}, "extremely": {"_count": 1, "dirty": {"_count": 1}}, "desperately": {"_count": 1, "hungry": {"_count": 1}}, "Im": {"_count": 1, "resigning": {"_count": 1}}}, "blame": {"_count": 49, "her": {"_count": 4, "if": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 2}}, "them": {"_count": 4, "said": {"_count": 1}, "": {"_count": 2}, "when": {"_count": 1}}, "you": {"_count": 7, "he": {"_count": 1}, "dear": {"_count": 1}, "Peter": {"_count": 1}, "but": {"_count": 1}, "mate": {"_count": 1}, "Rookwood": {"_count": 1}, "": {"_count": 1}}, "myself": {"_count": 1, "for": {"_count": 1}}, "yeh": {"_count": 1, "fer": {"_count": 1}}, "him": {"_count": 11, "for": {"_count": 6}, "in": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 1}, "Moodys": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "yourself": {"_count": 1, "for": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 1, "at": {"_count": 1}}, "Umbridge": {"_count": 1, "": {"_count": 1}}, "lies": {"_count": 1, "with": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "my": {"_count": 1, "husband": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "Ron": {"_count": 2, "for": {"_count": 2}}, "Snape": {"_count": 1, "which": {"_count": 1}}, "Ogden": {"_count": 1, "for": {"_count": 1}}, "at": {"_count": 1, "Mr": {"_count": 1}}, "someone": {"_count": 1, "who": {"_count": 1}}, "the": {"_count": 1, "Prince": {"_count": 1}}, "on": {"_count": 1, "yourself": {"_count": 1}}, "Albus": {"_count": 1, "for": {"_count": 1}}}, "same": {"_count": 417, "those": {"_count": 1, "people": {"_count": 1}}, "one": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "markings": {"_count": 1, "around": {"_count": 1}}, "tidy": {"_count": 1, "front": {"_count": 1}}, "as": {"_count": 21, "it": {"_count": 1}, "bein": {"_count": 1}, "he": {"_count": 4}, "Slytherin": {"_count": 1}, "usual": {"_count": 2}, "his": {"_count": 2}, "Ron": {"_count": 1}, "Rons": {"_count": 1}, "ever": {"_count": 3}, "her": {"_count": 1}, "if": {"_count": 1}, "truly": {"_count": 1}, "human": {"_count": 1}, "my": {"_count": 1}}, "dream": {"_count": 1, "before": {"_count": 1}}, "heavy": {"_count": 1, "parchment": {"_count": 1}}, "time": {"_count": 49, "": {"_count": 12}, "ushered": {"_count": 1}, "Stan": {"_count": 1}, "as": {"_count": 2}, "both": {"_count": 1}, "lucky": {"_count": 1}, "he": {"_count": 5}, "Moody": {"_count": 1}, "pulling": {"_count": 1}, "dragging": {"_count": 1}, "several": {"_count": 1}, "the": {"_count": 1}, "same": {"_count": 1}, "a": {"_count": 3}, "on": {"_count": 1}, "thought": {"_count": 1}, "felt": {"_count": 2}, "swelling": {"_count": 1}, "so": {"_count": 2}, "Ogden": {"_count": 1}, "and": {"_count": 1}, "picking": {"_count": 1}, "or": {"_count": 1}, "that": {"_count": 1}, "every": {"_count": 1}, "Hermione": {"_count": 1}, "was": {"_count": 1}, "noting": {"_count": 1}, "Grawp": {"_count": 1}}, "thing": {"_count": 18, "happened": {"_count": 1}, "did": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 8}, "for": {"_count": 1}, "and": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "doesnt": {"_count": 1}, "now": {"_count": 1}, "in": {"_count": 1}}, "just": {"_count": 3, "as": {"_count": 2}, "behind": {"_count": 1}}, "since": {"_count": 2, "": {"_count": 2}}, "theyve": {"_count": 1, "never": {"_count": 1}}, "": {"_count": 39, ".": {"_count": 37}, "?": {"_count": 1}, "!": {"_count": 1}}, "room": {"_count": 3, "while": {"_count": 1}, "in": {"_count": 1}, "Snape": {"_count": 1}}, "way": {"_count": 15, "as": {"_count": 5}, "": {"_count": 4}, "about": {"_count": 2}, "he": {"_count": 2}, "at": {"_count": 1}, "her": {"_count": 1}}, "plant": {"_count": 1, "which": {"_count": 1}}, "day": {"_count": 3, "": {"_count": 2}, "I": {"_count": 1}}, "thought": {"_count": 1, "seemed": {"_count": 1}}, "it": {"_count": 1, "wasnt": {"_count": 1}}, "league": {"_count": 1, "as": {"_count": 1}}, "question": {"_count": 5, "": {"_count": 2}, "How": {"_count": 1}, "every": {"_count": 1}, "twice": {"_count": 1}}, "shape": {"_count": 1, "but": {"_count": 1}}, "lines": {"_count": 3, "as": {"_count": 2}, "": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "Your": {"_count": 1, "detention": {"_count": 1}}, "bluebell": {"_count": 1, "flames": {"_count": 1}}, "instant": {"_count": 1, "black": {"_count": 1}}, "end": {"_count": 1, "as": {"_count": 1}}, "unanswerable": {"_count": 1, "questions": {"_count": 1}}, "seven": {"_count": 1, "witches": {"_count": 1}}, "pale": {"_count": 1, "pointed": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "voice": {"_count": 1, "the": {"_count": 1}}, "cold": {"_count": 1, "murderous": {"_count": 1}}, "reason": {"_count": 2, "everyone": {"_count": 1}, "that": {"_count": 1}}, "sort": {"_count": 4, "of": {"_count": 4}}, "new": {"_count": 1, "subjects": {"_count": 1}}, "boat": {"_count": 2, "now": {"_count": 1}, "you": {"_count": 1}}, "Shrivelfig": {"_count": 1, "as": {"_count": 1}}, "person": {"_count": 3, "or": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}}, "sticky": {"_count": 1, "end": {"_count": 1}}, "attack": {"_count": 1, "with": {"_count": 1}}, "fearful": {"_count": 1, "tone": {"_count": 1}}, "words": {"_count": 2, "\u2018Hes": {"_count": 1}, "": {"_count": 1}}, "position": {"_count": 2, "that": {"_count": 1}, "we": {"_count": 1}}, "hoarse": {"_count": 1, "voice": {"_count": 1}}, "round": {"_count": 1, "table": {"_count": 1}}, "table": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "hat": {"_count": 1, "": {"_count": 1}}, "puffapod": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "year": {"_count": 2, "that": {"_count": 1}, "you": {"_count": 1}}, "demurred": {"_count": 1, "Fudge": {"_count": 1}}, "laugh": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "you": {"_count": 1}}, "moment": {"_count": 18, "Dean": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 2}, "Bill": {"_count": 1}, "a": {"_count": 2}, "as": {"_count": 2}, "that": {"_count": 2}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}, "to": {"_count": 1}}, "rickety": {"_count": 1, "table": {"_count": 1}}, "harsh": {"_count": 1, "voice": {"_count": 1}}, "for": {"_count": 2, "me": {"_count": 1}, "years": {"_count": 1}}, "fairy": {"_count": 1, "tale": {"_count": 1}}, "place": {"_count": 5, "Fifty": {"_count": 1}, "presumably": {"_count": 1}, "": {"_count": 2}, "next": {"_count": 1}}, "night": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}}, "arm": {"_count": 1, "had": {"_count": 1}}, "target": {"_count": 1, "to": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "posters": {"_count": 1, "of": {"_count": 1}}, "Bagman": {"_count": 1, "ought": {"_count": 1}}, "wouldnt": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 3, "Mr": {"_count": 1}, "Karkaroff": {"_count": 1}, "Hagrid": {"_count": 1}}, "poster": {"_count": 1, "attached": {"_count": 1}}, "jerky": {"_count": 1, "fashion": {"_count": 1}}, "size": {"_count": 1, "as": {"_count": 1}}, "color": {"_count": 2, "as": {"_count": 2}}, "Houses": {"_count": 1, "dont": {"_count": 1}}, "small": {"_count": 3, "circular": {"_count": 1}, "cramped": {"_count": 1}, "tuftyhaired": {"_count": 1}}, "horrified": {"_count": 1, "wideeyed": {"_count": 1}}, "unnaturally": {"_count": 1, "high": {"_count": 1}}, "letters": {"_count": 1, "S": {"_count": 1}}, "and": {"_count": 3, "she": {"_count": 1}, "worth": {"_count": 1}, "they": {"_count": 1}}, "we": {"_count": 2, "cant": {"_count": 1}, "should": {"_count": 1}}, "sceptical": {"_count": 1, "tone": {"_count": 1}}, "tray": {"_count": 1, "though": {"_count": 1}}, "sixthyear": {"_count": 1, "girls": {"_count": 1}}, "message": {"_count": 1, "in": {"_count": 1}}, "bird": {"_count": 1, "that": {"_count": 1}}, "treat": {"_count": 1, "as": {"_count": 1}}, "held": {"_count": 1, "true": {"_count": 1}}, "process": {"_count": 1, "started": {"_count": 1}}, "filthy": {"_count": 1, "old": {"_count": 1}}, "uniform": {"_count": 1, "a": {"_count": 1}}, "ones": {"_count": 1, "he": {"_count": 1}}, "stool": {"_count": 1, "as": {"_count": 1}}, "weve": {"_count": 1, "no": {"_count": 1}}, "strange": {"_count": 1, "silverywhite": {"_count": 1}}, "take": {"_count": 1, "no": {"_count": 1}}, "wrong": {"_count": 1, "turning": {"_count": 1}}, "he": {"_count": 1, "raised": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "goes": {"_count": 1, "for": {"_count": 1}}, "distant": {"_count": 1, "echoing": {"_count": 1}}, "flat": {"_count": 1, "voice": {"_count": 1}}, "monotonous": {"_count": 1, "voice": {"_count": 1}}, "first": {"_count": 1, "name": {"_count": 1}}, "soft": {"_count": 1, "voice": {"_count": 1}}, "phoenix": {"_count": 1, "": {"_count": 1}}, "Minerva": {"_count": 1, "Cornelius": {"_count": 1}}, "side": {"_count": 3, "": {"_count": 1}, "now": {"_count": 1}, "muttered": {"_count": 1}}, "the": {"_count": 2, "tension": {"_count": 1}, "pressure": {"_count": 1}}, "rather": {"_count": 1, "snoutlike": {"_count": 1}}, "pained": {"_count": 1, "expression": {"_count": 1}}, "tired": {"_count": 1, "voice": {"_count": 1}}, "brusque": {"_count": 1, "voice": {"_count": 1}}, "fate": {"_count": 2, "met": {"_count": 1}, "in": {"_count": 1}}, "cool": {"_count": 1, "female": {"_count": 1}}, "indulgence": {"_count": 1, "from": {"_count": 1}}, "feeling": {"_count": 1, "of": {"_count": 1}}, "kind": {"_count": 3, "of": {"_count": 3}}, "hallucination": {"_count": 1, "if": {"_count": 1}}, "Stand": {"_count": 1, "together": {"_count": 1}}, "stand": {"_count": 1, "together": {"_count": 1}}, "line": {"_count": 1, "half": {"_count": 1}}, "spot": {"_count": 5, "on": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}, "and": {"_count": 1}}, "If": {"_count": 1, "you": {"_count": 1}}, "if": {"_count": 1, "not": {"_count": 1}}, "brush": {"_count": 1, "as": {"_count": 1}}, "situation": {"_count": 1, "nearly": {"_count": 1}}, "silly": {"_count": 1, "little": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "glass": {"_count": 1, "with": {"_count": 1}}, "Vanishing": {"_count": 1, "Spell": {"_count": 1}}, "mold": {"_count": 1, "Harry": {"_count": 1}}, "loud": {"_count": 1, "slow": {"_count": 1}}, "scared": {"_count": 1, "voice": {"_count": 1}}, "calm": {"_count": 1, "tone": {"_count": 1}}, "campsite": {"_count": 1, "": {"_count": 1}}, "callous": {"_count": 1, "pleasure": {"_count": 1}}, "thin": {"_count": 1, "face": {"_count": 1}}, "mouth": {"_count": 1, "same": {"_count": 1}}, "eyebrows": {"_count": 1, "": {"_count": 1}}, "beech": {"_count": 1, "tree": {"_count": 1}}, "ter": {"_count": 1, "you": {"_count": 1}}, "look": {"_count": 1, "on": {"_count": 1}}, "slashing": {"_count": 2, "movement": {"_count": 2}}, "week": {"_count": 1, "you": {"_count": 1}}, "concerns": {"_count": 1, "Fudge": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "harried": {"_count": 1, "anxious": {"_count": 1}}, "large": {"_count": 1, "black": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "sinking": {"_count": 1, "feeling": {"_count": 1}}, "subjects": {"_count": 1, "as": {"_count": 1}}, "Mugg": {"_count": 1, "Ogden": {"_count": 1}}, "ring": {"_count": 1, "Marvolo": {"_count": 1}}, "is": {"_count": 1, "probably": {"_count": 1}}, "commanding": {"_count": 1, "tone": {"_count": 1}}, "deserted": {"_count": 1, "corridor": {"_count": 1}}, "armchair": {"_count": 1, "": {"_count": 1}}, "intuitive": {"_count": 1, "grasp": {"_count": 1}}, "little": {"_count": 1, "girl": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "wild": {"_count": 1, "happiness": {"_count": 1}}, "age": {"_count": 2, "as": {"_count": 2}}, "No": {"_count": 1, "it": {"_count": 1}}, "slimy": {"_count": 1, "dead": {"_count": 1}}, "awareness": {"_count": 1, "of": {"_count": 1}}, "werent": {"_count": 1, "yeh": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "hard": {"_count": 1, "blazing": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "direction": {"_count": 1, "": {"_count": 1}}, "piles": {"_count": 1, "barely": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}, "unpleasant": {"_count": 1, "sensation": {"_count": 1}}, "air": {"_count": 1, "of": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "dark": {"_count": 1, "hair": {"_count": 1}}, "expression": {"_count": 1, "of": {"_count": 1}}, "two": {"_count": 1, "days": {"_count": 1}}, "pattern": {"_count": 1, "and": {"_count": 1}}, "ornamental": {"_count": 1, "plates": {"_count": 1}}, "cannot": {"_count": 1, "be": {"_count": 1}}, "balding": {"_count": 1, "wizard": {"_count": 1}}, "tent": {"_count": 1, "in": {"_count": 1}}, "flaw": {"_count": 1, "that": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "symbol": {"_count": 1, "Lunas": {"_count": 1}}, "graveyard": {"_count": 1, "had": {"_count": 1}}, "Wizarding": {"_count": 1, "family": {"_count": 1}}, "sensation": {"_count": 1, "he": {"_count": 1}}, "summer": {"_count": 1, "that": {"_count": 1}}, "breaking": {"_count": 1, "Albuss": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "triangular": {"_count": 1, "mark": {"_count": 1}}, "wand": {"_count": 1, "surfacing": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "with": {"_count": 1, "Wormtails": {"_count": 1}}, "curiosity": {"_count": 1, "he": {"_count": 1}}, "examination": {"_count": 1, "": {"_count": 1}}, "food": {"_count": 1, "insisting": {"_count": 1}}, "impression": {"_count": 1, "that": {"_count": 1}}, "measured": {"_count": 1, "voice": {"_count": 1}}, "try": {"_count": 1, "": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "loving": {"_count": 1, "smile": {"_count": 1}}, "height": {"_count": 1, "as": {"_count": 1}}, "exhilarated": {"_count": 1, "laugh": {"_count": 1}}, "distance": {"_count": 1, "from": {"_count": 1}}, "balm": {"_count": 1, "as": {"_count": 1}}}, "those": {"_count": 452, "people": {"_count": 15, "in": {"_count": 2}, "who": {"_count": 5}, "": {"_count": 3}, "whose": {"_count": 1}, "were": {"_count": 2}, "coming": {"_count": 1}, "did": {"_count": 1}}, "letters": {"_count": 3, "now": {"_count": 1}, "and": {"_count": 1}, "an": {"_count": 1}}, "who": {"_count": 56, "take": {"_count": 1}, "clapped": {"_count": 1}, "stand": {"_count": 1}, "would": {"_count": 3}, "ask": {"_count": 3}, "have": {"_count": 7}, "had": {"_count": 9}, "dont": {"_count": 1}, "practice": {"_count": 1}, "do": {"_count": 3}, "were": {"_count": 6}, "understand": {"_count": 1}, "remained": {"_count": 1}, "died": {"_count": 1}, "dwell": {"_count": 1}, "can": {"_count": 1}, "could": {"_count": 1}, "suffer": {"_count": 1}, "progress": {"_count": 1}, "require": {"_count": 1}, "ran": {"_count": 1}, "call": {"_count": 1}, "knew": {"_count": 1}, "believe": {"_count": 1}, "go": {"_count": 1}, "are": {"_count": 4}, "live": {"_count": 1}, "continue": {"_count": 1}}, "misty": {"_count": 1, "eyes": {"_count": 1}}, "old": {"_count": 3, "wizarding": {"_count": 1}, "Egyptian": {"_count": 1}, "robes": {"_count": 1}}, "Ron": {"_count": 1, "warned": {"_count": 1}}, "of": {"_count": 21, "wit": {"_count": 1}, "He": {"_count": 1}, "us": {"_count": 6}, "great": {"_count": 1}, "a": {"_count": 1}, "sharpest": {"_count": 1}, "the": {"_count": 5}, "his": {"_count": 1}, "Florean": {"_count": 1}, "Draco": {"_count": 1}, "Remus": {"_count": 1}, "you": {"_count": 1}}, "cold": {"_count": 1, "eyes": {"_count": 1}}, "brooms": {"_count": 2, "where": {"_count": 1}, "": {"_count": 1}}, "thunderous": {"_count": 1, "growls": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 1}, "had": {"_count": 3}}, "points": {"_count": 2, "him": {"_count": 1}, "from": {"_count": 1}}, "times": {"_count": 6, "": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 2}, "it": {"_count": 1}, "he": {"_count": 1}}, "too": {"_count": 1, "weak": {"_count": 1}}, "willing": {"_count": 1, "to": {"_count": 1}}, "things": {"_count": 14, "that": {"_count": 4}, "they": {"_count": 2}, "": {"_count": 3}, "dyou": {"_count": 1}, "you": {"_count": 2}, "were": {"_count": 1}, "matter": {"_count": 1}}, "rare": {"_count": 2, "occasions": {"_count": 2}}, "American": {"_count": 1, "plumbers": {"_count": 1}}, "Muggles": {"_count": 5, "you": {"_count": 2}, "was": {"_count": 1}, "to": {"_count": 1}, "did": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 5}, "!": {"_count": 2}, "?": {"_count": 1}}, "raids": {"_count": 1, "": {"_count": 1}}, "brilliant": {"_count": 1, "teeth": {"_count": 1}}, "amazing": {"_count": 1, "things": {"_count": 1}}, "Cleansweep": {"_count": 1, "Fives": {"_count": 1}}, "new": {"_count": 1, "Nimbus": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "bits": {"_count": 1, "last": {"_count": 1}}, "Mudbloods": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 4, "Justin": {"_count": 1}, "either": {"_count": 2}, "his": {"_count": 1}}, "poor": {"_count": 4, "people": {"_count": 2}, "Petrified": {"_count": 1}, "elves": {"_count": 1}}, "surging": {"_count": 1, "over": {"_count": 1}}, "rolls": {"_count": 1, "Harry": {"_count": 1}}, "long": {"_count": 2, "years": {"_count": 1}, "batlike": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "Monster": {"_count": 1, "Books": {"_count": 1}}, "youd": {"_count": 1, "rather": {"_count": 1}}, "dementors": {"_count": 9, "": {"_count": 4}, "away": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}, "too": {"_count": 1}, "outside": {"_count": 1}}, "talons": {"_count": 1, "hurt": {"_count": 1}}, "clothes": {"_count": 1, "very": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 3}, "Gringotts": {"_count": 1}}, "moves": {"_count": 1, "assuming": {"_count": 1}}, "Toothflossing": {"_count": 1, "Stringmints": {"_count": 1}}, "dangerous": {"_count": 1, "magical": {"_count": 1}}, "theyre": {"_count": 1, "for": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "horrors": {"_count": 1, "floating": {"_count": 1}}, "socks": {"_count": 1, "if": {"_count": 1}}, "they": {"_count": 4, "wish": {"_count": 1}, "wanted": {"_count": 1}, "had": {"_count": 2}}, "eyes": {"_count": 2, "had": {"_count": 1}, "upon": {"_count": 1}}, "few": {"_count": 7, "crucial": {"_count": 1}, "people": {"_count": 1}, "who": {"_count": 2}, "seconds": {"_count": 1}, "outsiders": {"_count": 1}, "moments": {"_count": 1}}, "Fudge": {"_count": 1, "Flies": {"_count": 1}}, "sunken": {"_count": 1, "eyes": {"_count": 1}}, "great": {"_count": 1, "yellow": {"_count": 1}}, "days": {"_count": 4, "there": {"_count": 1}, "were": {"_count": 1}, "your": {"_count": 1}, "confused": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "Committee": {"_count": 1, "people": {"_count": 1}}, "cakes": {"_count": 1, "": {"_count": 1}}, "girls": {"_count": 1, "got": {"_count": 1}}, "in": {"_count": 6, "other": {"_count": 1}, "class": {"_count": 1}, "favor": {"_count": 2}, "the": {"_count": 2}}, "that": {"_count": 5, "had": {"_count": 1}, "we": {"_count": 1}, "illuminated": {"_count": 1}, "have": {"_count": 1}, "flanked": {"_count": 1}}, "horns": {"_count": 1, "for": {"_count": 1}}, "trees": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 2, "in": {"_count": 1}, "who": {"_count": 1}}, "nutters": {"_count": 1, "in": {"_count": 1}}, "whatdyoucallems": {"_count": 1, "pleasemen": {"_count": 1}}, "away": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "books": {"_count": 2, "": {"_count": 1}, "anyway": {"_count": 1}}, "three": {"_count": 3, "curses": {"_count": 1}, "were": {"_count": 1}, "go": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "Hogwarts": {"_count": 1, "students": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "wholl": {"_count": 1, "turn": {"_count": 1}}, "brothers": {"_count": 1, "to": {"_count": 1}}, "months": {"_count": 1, "in": {"_count": 1}}, "last": {"_count": 1, "few": {"_count": 1}}, "startling": {"_count": 1, "green": {"_count": 1}}, "first": {"_count": 1, "said": {"_count": 1}}, "predictions": {"_count": 1, "together": {"_count": 1}}, "monsters": {"_count": 1, "unprepared": {"_count": 1}}, "fearsome": {"_count": 1, "yellow": {"_count": 1}}, "vertical": {"_count": 1, "pupils": {"_count": 1}}, "werent": {"_count": 1, "only": {"_count": 1}}, "golden": {"_count": 1, "eggs": {"_count": 1}}, "next": {"_count": 1, "Harry": {"_count": 1}}, "skrewts": {"_count": 1, "illegally": {"_count": 1}}, "elves": {"_count": 1, "you": {"_count": 1}}, "fangs": {"_count": 2, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}}, "cozy": {"_count": 1, "little": {"_count": 1}}, "fake": {"_count": 1, "wands": {"_count": 1}}, "taps": {"_count": 1, "now": {"_count": 1}}, "lines": {"_count": 1, "he": {"_count": 1}}, "mer": {"_count": 1, "idiots": {"_count": 1}}, "eclairs": {"_count": 1, "is": {"_count": 1}}, "substitutes": {"_count": 1, "for": {"_count": 1}}, "Bludgers": {"_count": 1, "had": {"_count": 1}}, "spells": {"_count": 1, "they": {"_count": 1}}, "sorts": {"_count": 1, "of": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "unnaturally": {"_count": 1, "longfingered": {"_count": 1}}, "bright": {"_count": 1, "red": {"_count": 1}}, "pitiless": {"_count": 2, "red": {"_count": 2}}, "around": {"_count": 2, "them": {"_count": 2}}, "hours": {"_count": 1, "in": {"_count": 1}}, "fathers": {"_count": 1, "": {"_count": 1}}, "Death": {"_count": 2, "Eaters": {"_count": 2}}, "blue": {"_count": 1, "eyes": {"_count": 1}}, "which": {"_count": 1, "preceded": {"_count": 1}}, "names": {"_count": 1, "in": {"_count": 1}}, "lessons": {"_count": 1, "free": {"_count": 1}}, "foul": {"_count": 1, "glasses": {"_count": 1}}, "nice": {"_count": 1, "little": {"_count": 1}}, "two": {"_count": 5, "shouldnt": {"_count": 1}, "off": {"_count": 1}, "very": {"_count": 1}, "Unspeakables": {"_count": 1}, "brothers": {"_count": 1}}, "she": {"_count": 1, "too": {"_count": 1}}, "pestilential": {"_count": 1, "birds": {"_count": 1}}, "tiny": {"_count": 1, "lights": {"_count": 1}}, "Dungbombs": {"_count": 1, "outside": {"_count": 1}}, "goblins": {"_count": 1, "never": {"_count": 1}}, "after": {"_count": 1, "lunch": {"_count": 1}}, "cauldrons": {"_count": 1, "for": {"_count": 1}}, "are": {"_count": 2, "enchanted": {"_count": 1}, "bits": {"_count": 1}}, "those": {"_count": 2, "pumbles": {"_count": 1}, "things": {"_count": 1}}, "pumbles": {"_count": 1, "I": {"_count": 1}}, "above": {"_count": 1, "": {"_count": 1}}, "chains": {"_count": 1, "spring": {"_count": 1}}, "exceptional": {"_count": 1, "circumstances": {"_count": 1}}, "cool": {"_count": 1, "gray": {"_count": 1}}, "adventures": {"_count": 1, "he": {"_count": 1}}, "hidden": {"_count": 1, "right": {"_count": 1}}, "other": {"_count": 1, "happy": {"_count": 1}}, "crimes": {"_count": 1, "because": {"_count": 1}}, "horse": {"_count": 1, "things": {"_count": 1}}, "Whose": {"_count": 1, "ancestry": {"_count": 1}}, "whose": {"_count": 1, "Intelligence": {"_count": 1}}, "With": {"_count": 1, "brave": {"_count": 1}}, "dragonish": {"_count": 1, "horses": {"_count": 1}}, "kind": {"_count": 1, "words": {"_count": 1}}, "Skiving": {"_count": 1, "Snackboxes": {"_count": 1}}, "badges": {"_count": 1, "only": {"_count": 1}}, "pouchy": {"_count": 1, "toads": {"_count": 1}}, "hats": {"_count": 2, "Ron": {"_count": 1}, "work": {"_count": 1}}, "necessary": {"_count": 1, "changes": {"_count": 1}}, "\u2018eccentric": {"_count": 1, "decisions": {"_count": 1}}, "dunces": {"_count": 1, "who": {"_count": 1}}, "Ravenclaw": {"_count": 1, "blokes": {"_count": 1}}, "with": {"_count": 2, "eyes": {"_count": 1}, "whom": {"_count": 1}}, "words": {"_count": 2, "in": {"_count": 1}, "that": {"_count": 1}}, "trolls": {"_count": 1, "": {"_count": 1}}, "Slytherins": {"_count": 1, "badges": {"_count": 1}}, "silver": {"_count": 2, "crownshaped": {"_count": 1}, "goblets": {"_count": 1}}, "goals": {"_count": 1, "nobody": {"_count": 1}}, "cuts": {"_count": 1, "look": {"_count": 1}}, "injuries": {"_count": 2, "": {"_count": 2}}, "regurgitating": {"_count": 2, "toilets": {"_count": 2}}, "autographs": {"_count": 1, "then": {"_count": 1}}, "dreams": {"_count": 2, "about": {"_count": 1}, "Hermione": {"_count": 1}}, "seats": {"_count": 1, "at": {"_count": 1}}, "skilled": {"_count": 1, "at": {"_count": 1}}, "feelings": {"_count": 1, "and": {"_count": 1}}, "touching": {"_count": 1, "her": {"_count": 1}}, "strange": {"_count": 1, "flashes": {"_count": 1}}, "already": {"_count": 1, "thank": {"_count": 1}}, "boils": {"_count": 1, "just": {"_count": 1}}, "nearest": {"_count": 4, "the": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "fell": {"_count": 1}}, "classrooms": {"_count": 1, "that": {"_count": 1}}, "astonishingly": {"_count": 1, "blue": {"_count": 1}}, "Catherine": {"_count": 1, "wheels": {"_count": 1}}, "applying": {"_count": 1, "to": {"_count": 1}}, "ropes": {"_count": 1, "for": {"_count": 1}}, "saves": {"_count": 1, "": {"_count": 1}}, "topics": {"_count": 1, "their": {"_count": 1}}, "left": {"_count": 1, "behind": {"_count": 1}}, "nifflers": {"_count": 1, "through": {"_count": 1}}, "behind": {"_count": 1, "": {"_count": 1}}, "mad": {"_count": 1, "horse": {"_count": 1}}, "about": {"_count": 1, "whom": {"_count": 1}}, "occasions": {"_count": 1, "when": {"_count": 1}}, "benches": {"_count": 1, "in": {"_count": 1}}, "oddly": {"_count": 1, "misty": {"_count": 1}}, "questions": {"_count": 1, "": {"_count": 1}}, "stains": {"_count": 1, "spattered": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "burned": {"_count": 1, "and": {"_count": 1}}, "highly": {"_count": 1, "trained": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "uncomfortable": {"_count": 1, "things": {"_count": 1}}, "Occlumency": {"_count": 1, "lessons": {"_count": 1}}, "precise": {"_count": 1, "words": {"_count": 1}}, "brains": {"_count": 1, "got": {"_count": 1}}, "veela": {"_count": 1, "": {"_count": 1}}, "extra": {"_count": 1, "protective": {"_count": 1}}, "Secrecy": {"_count": 1, "Sensors": {"_count": 1}}, "would": {"_count": 1, "last": {"_count": 1}}, "parts": {"_count": 2, "which": {"_count": 1}, "that": {"_count": 1}}, "ingredients": {"_count": 1, "in": {"_count": 1}}, "Chocolate": {"_count": 1, "Cauldrons": {"_count": 1}}, "inexplicable": {"_count": 2, "times": {"_count": 1}, "moments": {"_count": 1}}, "objects": {"_count": 1, "meant": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "whom": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "places": {"_count": 1, "he": {"_count": 1}}, "contact": {"_count": 1, "Galleons": {"_count": 1}}, "nature": {"_count": 1, "made": {"_count": 1}}, "creatures": {"_count": 1, "he": {"_count": 1}}, "climbing": {"_count": 1, "onto": {"_count": 1}}, "maniacs": {"_count": 1, "on": {"_count": 1}}, "initials": {"_count": 1, "Rosalind": {"_count": 1}}, "scribbled": {"_count": 1, "spells": {"_count": 1}}, "sitting": {"_count": 1, "around": {"_count": 1}}, "wreckers": {"_count": 1, "of": {"_count": 1}}, "closest": {"_count": 1, "to": {"_count": 1}}, "buttons": {"_count": 1, "and": {"_count": 1}}, "stolen": {"_count": 1, "hours": {"_count": 1}}, "Horcrux": {"_count": 1, "books": {"_count": 1}}, "items": {"_count": 1, "he": {"_count": 1}}, "hints": {"_count": 1, "in": {"_count": 1}}, "awful": {"_count": 1, "things": {"_count": 1}}, "red": {"_count": 1, "eyes": {"_count": 1}}, "protective": {"_count": 1, "charms": {"_count": 1}}, "funny": {"_count": 1, "coins": {"_count": 1}}, "wide": {"_count": 1, "tunnellike": {"_count": 1}}, "nights": {"_count": 1, "when": {"_count": 1}}, "locations": {"_count": 1, "they": {"_count": 1}}, "cast": {"_count": 1, "by": {"_count": 1}}, "speeches": {"_count": 1, "promoting": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "deep": {"_count": 1, "coughs": {"_count": 1}}, "birds": {"_count": 1, "she": {"_count": 1}}, "superstitions": {"_count": 1, "isnt": {"_count": 1}}, "wands": {"_count": 2, "the": {"_count": 1}, "something": {"_count": 1}}, "stairs": {"_count": 1, "and": {"_count": 1}}, "numbers": {"_count": 1, "would": {"_count": 1}}, "charming": {"_count": 1, "Death": {"_count": 1}}, "deaths": {"_count": 1, "that": {"_count": 1}}, "listeners": {"_count": 1, "who": {"_count": 1}}, "resisting": {"_count": 1, "the": {"_count": 1}}, "friends": {"_count": 1, "of": {"_count": 1}}, "wise": {"_count": 1, "words": {"_count": 1}}, "dials": {"_count": 1, "The": {"_count": 1}}, "goblin": {"_count": 1, "stories": {"_count": 1}}, "black": {"_count": 1, "eyes": {"_count": 1}}, "dragging": {"_count": 1, "rattling": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "kinds": {"_count": 1, "of": {"_count": 1}}, "secluded": {"_count": 1, "Albanian": {"_count": 1}}, "model": {"_count": 1, "pupils": {"_count": 1}}, "years": {"_count": 3, "ago": {"_count": 1}, "buried": {"_count": 1}, "I": {"_count": 1}}, "still": {"_count": 1, "fighting": {"_count": 1}}, "visits": {"_count": 1, "to": {"_count": 1}}, "odd": {"_count": 1, "thumping": {"_count": 1}}, "acts": {"_count": 1, "of": {"_count": 1}}, "powerful": {"_count": 1, "objects": {"_count": 1}}, "tempting": {"_count": 1, "objects": {"_count": 1}}, "within": {"_count": 1, "": {"_count": 1}}}, "afternoon": {"_count": 106, "and": {"_count": 4, "when": {"_count": 1}, "I": {"_count": 1}, "get": {"_count": 1}, "ask": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 22}, "?": {"_count": 2}, "!": {"_count": 2}}, "said": {"_count": 4, "a": {"_count": 1}, "Fudge": {"_count": 1}, "Mr": {"_count": 1}, "Dumbledore": {"_count": 1}}, "sun": {"_count": 2, "hung": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 5, "Ron": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "groaned": {"_count": 1}, "Ernie": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "Ron": {"_count": 1}}, "throwing": {"_count": 1, "down": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 6, "heard": {"_count": 1}, "said": {"_count": 3}, "told": {"_count": 1}, "and": {"_count": 1}}, "classes": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 2}}, "as": {"_count": 2, "the": {"_count": 1}, "headmistress": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "ever": {"_count": 1, "lasted": {"_count": 1}}, "round": {"_count": 1, "six": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "meant": {"_count": 1, "Herbology": {"_count": 1}}, "but": {"_count": 3, "Harry": {"_count": 1}, "also": {"_count": 1}, "by": {"_count": 1}}, "before": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 4, "his": {"_count": 1}, "which": {"_count": 1}, "reply": {"_count": 1}, "the": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "wore": {"_count": 2, "on": {"_count": 2}}, "progressed": {"_count": 1, "including": {"_count": 1}}, "lessons": {"_count": 2, "Harry": {"_count": 1}, "walking": {"_count": 1}}, "she": {"_count": 1, "put": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "the": {"_count": 1, "snow": {"_count": 1}}, "to": {"_count": 5, "you": {"_count": 2}, "go": {"_count": 1}, "retrieve": {"_count": 1}, "search": {"_count": 1}}, "with": {"_count": 3, "Ron": {"_count": 1}, "a": {"_count": 1}, "us": {"_count": 1}}, "double": {"_count": 1, "Potions": {"_count": 1}}, "Professor": {"_count": 4, "Umbridge": {"_count": 3}, "Trelawney": {"_count": 1}}, "class": {"_count": 2, "": {"_count": 2}}, "Harrys": {"_count": 1, "head": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "practical": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "devoted": {"_count": 1}}, "sunshine": {"_count": 1, "warming": {"_count": 1}}, "Ill": {"_count": 1, "take": {"_count": 1}}, "found": {"_count": 1, "Harry": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "fresh": {"_count": 1, "flakes": {"_count": 1}}, "sky": {"_count": 1, "": {"_count": 1}}}, "building": {"_count": 42, "at": {"_count": 1, "five": {"_count": 1}}, "that": {"_count": 1, "towered": {"_count": 1}}, "he": {"_count": 2, "couldnt": {"_count": 1}, "knew": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "Britain": {"_count": 1}, "his": {"_count": 2}}, "through": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "miles": {"_count": 1}}, "so": {"_count": 1, "its": {"_count": 1}}, "a": {"_count": 2, "card": {"_count": 1}, "grim": {"_count": 1}}, "long": {"_count": 1, "low": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "on": {"_count": 2, "Ritas": {"_count": 1}, "the": {"_count": 1}}, "up": {"_count": 2, "here": {"_count": 1}, "on": {"_count": 1}}, "full": {"_count": 2, "of": {"_count": 2}}, "yet": {"_count": 1, "when": {"_count": 1}}, "DO": {"_count": 1, "NOT": {"_count": 1}}, "temporarily": {"_count": 1, "": {"_count": 1}}, "halfhidden": {"_count": 1, "amongst": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "out": {"_count": 1}}, "like": {"_count": 1, "Gringotts": {"_count": 1}}, "keeping": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "liberated": {"_count": 1, "from": {"_count": 1}}, "inside": {"_count": 2, "Voldemort": {"_count": 1}, "the": {"_count": 1}}}, "oclock": {"_count": 106, "he": {"_count": 3, "was": {"_count": 1}, "read": {"_count": 1}, "headed": {"_count": 1}}, "the": {"_count": 7, "next": {"_count": 3}, "whole": {"_count": 1}, "plump": {"_count": 1}, "very": {"_count": 1}, "two": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "for": {"_count": 1, "your": {"_count": 1}}, "drew": {"_count": 1, "nearer": {"_count": 1}}, "in": {"_count": 13, "the": {"_count": 13}}, "tonight": {"_count": 2, "": {"_count": 1}, "all": {"_count": 1}}, "that": {"_count": 8, "night": {"_count": 2}, "evening": {"_count": 5}, "afternoon": {"_count": 1}}, "sharp": {"_count": 1, "both": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}, "approached": {"_count": 1, "the": {"_count": 1}}, "onward": {"_count": 1, "the": {"_count": 1}}, "Divination": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "on": {"_count": 11, "Thursday": {"_count": 2}, "Sunday": {"_count": 2}, "Friday": {"_count": 3}, "Christmas": {"_count": 1}, "Saturday": {"_count": 1}, "Monday": {"_count": 1}, "the": {"_count": 1}}, "Hagrid": {"_count": 1, "walked": {"_count": 1}}, "Arithmancy": {"_count": 1, "9": {"_count": 1}}, "Transfiguration": {"_count": 1, "Lunch": {"_count": 1}}, "Charms": {"_count": 1, "1": {"_count": 1}}, "Ancient": {"_count": 1, "Runes": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "tomorrow": {"_count": 5, "": {"_count": 2}, "for": {"_count": 1}, "and": {"_count": 1}, "so": {"_count": 1}}, "came": {"_count": 1, "and": {"_count": 1}}, "But": {"_count": 1, "Hagrid": {"_count": 1}}, "said": {"_count": 1, "she": {"_count": 1}}, "when": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "Madam": {"_count": 1, "Pince": {"_count": 1}}, "Potter": {"_count": 1, "she": {"_count": 1}}, "news": {"_count": 1, "reached": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 3, "I": {"_count": 1}, "took": {"_count": 1}, "looked": {"_count": 1}}, "making": {"_count": 1, "more": {"_count": 1}}, "seventh": {"_count": 1, "floor": {"_count": 1}}, "arrived": {"_count": 2, "every": {"_count": 1}, "and": {"_count": 1}}, "Monday": {"_count": 1, "evening": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "knocked": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "Saturday": {"_count": 1, "morning": {"_count": 1}}, "whispered": {"_count": 1, "Snape": {"_count": 1}}, "next": {"_count": 1, "Saturday": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "still": {"_count": 1636, "so": {"_count": 5, "worried": {"_count": 1}, "that": {"_count": 1}, "young": {"_count": 1}, "much": {"_count": 1}, "full": {"_count": 1}}, "determined": {"_count": 3, "not": {"_count": 1}, "to": {"_count": 1}, "then": {"_count": 1}}, "there": {"_count": 14, "": {"_count": 7}, "asleep": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 2}, "on": {"_count": 1}, "beneath": {"_count": 1}, "were": {"_count": 1}}, "as": {"_count": 14, "a": {"_count": 2}, "though": {"_count": 3}, "the": {"_count": 2}, "heavily": {"_count": 1}, "far": {"_count": 1}, "Hermione": {"_count": 1}, "waves": {"_count": 1}, "he": {"_count": 1}, "Dumbledore": {"_count": 1}, "if": {"_count": 1}}, "staring": {"_count": 32, "at": {"_count": 21}, "Mr": {"_count": 1}, "haughtily": {"_count": 1}, "unblinkingly": {"_count": 1}, "down": {"_count": 2}, "avidly": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 1}, "coldly": {"_count": 1}, "appalled": {"_count": 1}, "curiously": {"_count": 1}}, "in": {"_count": 43, "the": {"_count": 14}, "possession": {"_count": 1}, "my": {"_count": 1}, "their": {"_count": 5}, "a": {"_count": 4}, "Azkaban": {"_count": 2}, "his": {"_count": 3}, "bed": {"_count": 1}, "place": {"_count": 1}, "perfect": {"_count": 1}, "there": {"_count": 1}, "your": {"_count": 1}, "Romania": {"_count": 1}, "full": {"_count": 1}, "contact": {"_count": 1}, "progress": {"_count": 1}, "St": {"_count": 2}, "Lord": {"_count": 1}, "touch": {"_count": 1}}, "didnt": {"_count": 6, "have": {"_count": 1}, "open": {"_count": 1}, "know": {"_count": 2}, "think": {"_count": 1}, "realize": {"_count": 1}}, "streaming": {"_count": 1, "into": {"_count": 1}}, "couldnt": {"_count": 3, "take": {"_count": 1}, "tell": {"_count": 1}, "see": {"_count": 1}}, "dont": {"_count": 18, "really": {"_count": 2}, "like": {"_count": 1}, "know": {"_count": 4}, "While": {"_count": 1}, "understand": {"_count": 2}, "see": {"_count": 2}, "reckon": {"_count": 1}, "get": {"_count": 3}, "think": {"_count": 1}, "move": {"_count": 1}}, "ashenfaced": {"_count": 1, "but": {"_count": 1}}, "scared": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "had": {"_count": 32, "questions": {"_count": 1}, "a": {"_count": 7}, "detentions": {"_count": 1}, "to": {"_count": 2}, "blackandwhite": {"_count": 1}, "his": {"_count": 2}, "Crookshanks": {"_count": 1}, "Pettigrew": {"_count": 1}, "two": {"_count": 1}, "Quidditch": {"_count": 1}, "feathers": {"_count": 1}, "five": {"_count": 1}, "that": {"_count": 2}, "not": {"_count": 3}, "short": {"_count": 1}, "most": {"_count": 1}, "full": {"_count": 1}, "four": {"_count": 1}, "the": {"_count": 2}, "some": {"_count": 1}}, "out": {"_count": 6, "there": {"_count": 3}, "cold": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "got": {"_count": 29, "a": {"_count": 5}, "the": {"_count": 5}, "yer": {"_count": 1}, "to": {"_count": 2}, "Millicents": {"_count": 1}, "ten": {"_count": 1}, "four": {"_count": 2}, "two": {"_count": 1}, "his": {"_count": 3}, "": {"_count": 1}, "Silencing": {"_count": 1}, "Transfiguration": {"_count": 1}, "Dad": {"_count": 1}, "detention": {"_count": 1}, "you": {"_count": 1}, "your": {"_count": 1}, "it": {"_count": 1}}, "witches": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 18, "silent": {"_count": 8}, "warm": {"_count": 1}, "quiet": {"_count": 3}, "Harry": {"_count": 1}, "empty": {"_count": 1}, "freezing": {"_count": 1}, "once": {"_count": 1}, "his": {"_count": 1}, "peacefullooking": {"_count": 1}}, "look": {"_count": 1, "a": {"_count": 1}}, "havent": {"_count": 7, "got": {"_count": 2}, "found": {"_count": 1}, "caught": {"_count": 1}, "explained": {"_count": 1}, "called": {"_count": 1}, "ruled": {"_count": 1}}, "muttering": {"_count": 4, "Curious": {"_count": 1}, "about": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}}, "do": {"_count": 2, "smatter": {"_count": 1}, "": {"_count": 1}}, "pink": {"_count": 3, "where": {"_count": 1}, "in": {"_count": 2}}, "get": {"_count": 3, "really": {"_count": 1}, "him": {"_count": 1}, "Oh": {"_count": 1}}, "snoozing": {"_count": 1, "on": {"_count": 1}}, "seem": {"_count": 2, "to": {"_count": 2}}, "again": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "wearing": {"_count": 12, "it": {"_count": 2}, "his": {"_count": 4}, "their": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}, "dress": {"_count": 1}, "a": {"_count": 1}}, "ignoring": {"_count": 1, "Hermiones": {"_count": 1}}, "rising": {"_count": 1, "higher": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "Lupin": {"_count": 1}}, "glowing": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 2, "six": {"_count": 1}, "his": {"_count": 1}}, "at": {"_count": 13, "Hogwarts": {"_count": 2}, "school": {"_count": 4}, "large": {"_count": 3}, "least": {"_count": 2}, "work": {"_count": 1}, "the": {"_count": 1}}, "more": {"_count": 26, "awkward": {"_count": 1}, "nastily": {"_count": 1}, "broadly": {"_count": 4}, "loudly": {"_count": 1}, "color": {"_count": 1}, "vigorously": {"_count": 1}, "saucepans": {"_count": 1}, "closely": {"_count": 2}, "widely": {"_count": 3}, "brightly": {"_count": 1}, "anxiously": {"_count": 1}, "speed": {"_count": 1}, "miserably": {"_count": 1}, "calmly": {"_count": 1}, "lopsided": {"_count": 1}, "severely": {"_count": 1}, "aggressive": {"_count": 1}, "firmly": {"_count": 2}, "enthusiastically": {"_count": 1}}, "flat": {"_count": 1, "against": {"_count": 1}}, "been": {"_count": 3, "in": {"_count": 1}, "well": {"_count": 1}, "their": {"_count": 1}}, "raised": {"_count": 10, "staring": {"_count": 1}, "stared": {"_count": 1}, "his": {"_count": 2}, "Aunt": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "warning": {"_count": 1}, "in": {"_count": 1}}, "standing": {"_count": 12, "with": {"_count": 2}, "though": {"_count": 2}, "over": {"_count": 1}, "beside": {"_count": 1}, "motionless": {"_count": 1}, "": {"_count": 1}, "against": {"_count": 1}, "five": {"_count": 1}, "there": {"_count": 1}, "anyway": {"_count": 1}}, "say": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "difficult": {"_count": 1, "to": {"_count": 1}}, "commentating": {"_count": 1, "": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 23}, "?": {"_count": 1}, "!": {"_count": 2}}, "howling": {"_count": 1, "twenty": {"_count": 1}}, "happily": {"_count": 1, "shouting": {"_count": 1}}, "ringing": {"_count": 3, "in": {"_count": 3}}, "no": {"_count": 6, "one": {"_count": 2}, "sign": {"_count": 1}, "light": {"_count": 1}, "door": {"_count": 1}, "preparation": {"_count": 1}}, "both": {"_count": 1, "thinking": {"_count": 1}}, "hadnt": {"_count": 10, "melted": {"_count": 1}, "let": {"_count": 1}, "decided": {"_count": 1}, "ordered": {"_count": 1}, "done": {"_count": 2}, "mastered": {"_count": 1}, "forgotten": {"_count": 1}, "turned": {"_count": 1}, "got": {"_count": 1}}, "sure": {"_count": 1, "hed": {"_count": 1}}, "discussing": {"_count": 3, "what": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 1}}, "not": {"_count": 20, "daring": {"_count": 1}, "saying": {"_count": 1}, "entirely": {"_count": 1}, "had": {"_count": 1}, "looking": {"_count": 4}, "performing": {"_count": 1}, "been": {"_count": 1}, "sunk": {"_count": 1}, "recovered": {"_count": 1}, "returned": {"_count": 2}, "managed": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "found": {"_count": 1}, "sure": {"_count": 1}, "seeing": {"_count": 1}}, "ginside": {"_count": 1, "": {"_count": 1}}, "safe": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "lookin": {"_count": 1, "fer": {"_count": 1}}, "on": {"_count": 19, "abou": {"_count": 1}, "his": {"_count": 4}, "Silencel": {"_count": 1}, "holiday": {"_count": 1}, "the": {"_count": 4}, "": {"_count": 1}, "then": {"_count": 1}, "Sirius": {"_count": 1}, "Cho": {"_count": 1}, "board": {"_count": 1}, "tenterhooks": {"_count": 1}, "it": {"_count": 1}, "its": {"_count": 1}}, "dark": {"_count": 4, "": {"_count": 2}, "outside": {"_count": 1}, "because": {"_count": 1}}, "like": {"_count": 2, "them": {"_count": 1}, "a": {"_count": 1}}, "Fluffy": {"_count": 1, "though": {"_count": 1}}, "spots": {"_count": 1, "of": {"_count": 1}}, "shaking": {"_count": 6, "": {"_count": 2}, "started": {"_count": 1}, "convulsively": {"_count": 1}, "his": {"_count": 1}, "uncontrollably": {"_count": 1}}, "alive": {"_count": 22, "and": {"_count": 2}, "in": {"_count": 1}, "said": {"_count": 3}, "": {"_count": 8}, "Peter": {"_count": 1}, "they": {"_count": 1}, "but": {"_count": 2}, "hes": {"_count": 1}, "then": {"_count": 1}, "when": {"_count": 1}, "began": {"_count": 1}}, "playing": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "facedown": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 5, "to": {"_count": 1}, "about": {"_count": 1}, "in": {"_count": 1}, "apparently": {"_count": 1}, "excitedly": {"_count": 1}}, "see": {"_count": 8, "him": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 1}, "his": {"_count": 1}, "where": {"_count": 1}}, "very": {"_count": 11, "sore": {"_count": 1}, "young": {"_count": 1}, "distressed": {"_count": 1}, "red": {"_count": 1}, "green": {"_count": 1}, "pale": {"_count": 2}, "poor": {"_count": 1}, "white": {"_count": 1}, "hard": {"_count": 1}, "dark": {"_count": 1}}, "cheering": {"_count": 1, "nudged": {"_count": 1}}, "to": {"_count": 4, "come": {"_count": 1}, "the": {"_count": 1}, "go": {"_count": 1}, "do": {"_count": 1}}, "purplefaced": {"_count": 1, "still": {"_count": 1}}, "mustached": {"_count": 1, "still": {"_count": 1}}, "looking": {"_count": 31, "furious": {"_count": 1}, "around": {"_count": 1}, "puzzled": {"_count": 1}, "deeply": {"_count": 2}, "out": {"_count": 1}, "everywhere": {"_count": 1}, "at": {"_count": 6}, "very": {"_count": 1}, "politely": {"_count": 1}, "worried": {"_count": 1}, "carefully": {"_count": 1}, "a": {"_count": 2}, "anywhere": {"_count": 1}, "perplexed": {"_count": 1}, "unconvinced": {"_count": 1}, "away": {"_count": 1}, "astonished": {"_count": 1}, "fixedly": {"_count": 1}, "shocked": {"_count": 1}, "for": {"_count": 4}, "extremely": {"_count": 1}}, "feared": {"_count": 1, "to": {"_count": 1}}, "terrifying": {"_count": 1, "still": {"_count": 1}}, "cunning": {"_count": 1, "still": {"_count": 1}}, "have": {"_count": 9, "been": {"_count": 1}, "your": {"_count": 1}, "trouble": {"_count": 1}, "a": {"_count": 1}, "had": {"_count": 1}, "to": {"_count": 1}, "old": {"_count": 1}, "the": {"_count": 1}, "descendants": {"_count": 1}}, "spinning": {"_count": 1, "and": {"_count": 1}}, "stinging": {"_count": 2, "where": {"_count": 1}, "": {"_count": 1}}, "commands": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 4, "may": {"_count": 1}, "whatever": {"_count": 1}, "no": {"_count": 1}, "when": {"_count": 1}}, "holding": {"_count": 16, "Ginnys": {"_count": 1}, "Sir": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 5}, "tight": {"_count": 1}, "Stan": {"_count": 1}, "Mrs": {"_count": 1}, "on": {"_count": 2}, "onto": {"_count": 1}, "Lilys": {"_count": 1}, "Bellatrixs": {"_count": 1}}, "seemed": {"_count": 9, "to": {"_count": 5}, "slightly": {"_count": 1}, "less": {"_count": 1}, "remote": {"_count": 1}, "clumsier": {"_count": 1}}, "watching": {"_count": 13, "them": {"_count": 2}, "him": {"_count": 3}, "it": {"_count": 1}, "Scabbers": {"_count": 2}, "Scabberss": {"_count": 1}, "Bagman": {"_count": 1}, "her": {"_count": 1}, "horrified": {"_count": 1}, "Xenophilius": {"_count": 1}}, "right": {"_count": 1, "below": {"_count": 1}}, "plummeting": {"_count": 1, "the": {"_count": 1}}, "trying": {"_count": 12, "to": {"_count": 9}, "not": {"_count": 2}, "hard": {"_count": 1}}, "flailing": {"_count": 2, "its": {"_count": 1}, "uncontrollably": {"_count": 1}}, "extremely": {"_count": 2, "strict": {"_count": 1}, "nervous": {"_count": 1}}, "being": {"_count": 4, "beaten": {"_count": 1}, "followed": {"_count": 1}, "forcibly": {"_count": 1}, "searched": {"_count": 1}}, "eyeing": {"_count": 2, "them": {"_count": 1}, "Harry": {"_count": 1}}, "awake": {"_count": 2, "packed": {"_count": 1}, "": {"_count": 1}}, "having": {"_count": 5, "their": {"_count": 1}, "problems": {"_count": 1}, "trouble": {"_count": 1}, "dreams": {"_count": 1}, "difficulty": {"_count": 1}}, "disapproving": {"_count": 1, "of": {"_count": 1}}, "clasped": {"_count": 1, "to": {"_count": 1}}, "angry": {"_count": 1, "with": {"_count": 1}}, "malfunctioning": {"_count": 1, "surpassing": {"_count": 1}}, "torturing": {"_count": 1, "him": {"_count": 1}}, "yawning": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 5, "": {"_count": 2}, "stood": {"_count": 1}, "hadnt": {"_count": 1}, "Potter": {"_count": 1}}, "spreading": {"_count": 1, "that": {"_count": 1}}, "lashing": {"_count": 1, "the": {"_count": 1}}, "hanging": {"_count": 3, "in": {"_count": 1}, "unconscious": {"_count": 1}, "off": {"_count": 1}}, "he": {"_count": 8, "heard": {"_count": 1}, "knew": {"_count": 1}, "fought": {"_count": 1}, "did": {"_count": 3}, "felt": {"_count": 1}, "and": {"_count": 1}}, "gleamed": {"_count": 1, "as": {"_count": 1}}, "eight": {"_count": 1, "inches": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "further": {"_count": 4, "with": {"_count": 1}, "youre": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "long": {"_count": 2, "enough": {"_count": 2}}, "a": {"_count": 11, "second": {"_count": 1}, "fortnight": {"_count": 1}, "Hogwarts": {"_count": 1}, "few": {"_count": 1}, "member": {"_count": 1}, "man": {"_count": 1}, "baby": {"_count": 1}, "bit": {"_count": 1}, "grain": {"_count": 1}, "load": {"_count": 1}, "Horcrux": {"_count": 1}}, "crooked": {"_count": 1, "over": {"_count": 1}}, "lying": {"_count": 7, "on": {"_count": 5}, "motionless": {"_count": 1}, "at": {"_count": 1}}, "putting": {"_count": 1, "up": {"_count": 1}}, "treated": {"_count": 1, "like": {"_count": 1}}, "pretending": {"_count": 2, "to": {"_count": 2}}, "needed": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "smiling": {"_count": 16, "if": {"_count": 1}, "broadly": {"_count": 2}, "": {"_count": 9}, "widely": {"_count": 1}, "her": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}}, "moving": {"_count": 3, "Millicent": {"_count": 1}, "restlessly": {"_count": 1}, "sideways": {"_count": 1}}, "full": {"_count": 4, "of": {"_count": 4}}, "swinging": {"_count": 4, "from": {"_count": 2}, "the": {"_count": 2}}, "want": {"_count": 7, "to": {"_count": 6}, "me": {"_count": 1}}, "need": {"_count": 2, "a": {"_count": 2}}, "stunned": {"_count": 1, "at": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}, "seeping": {"_count": 1, "from": {"_count": 1}}, "be": {"_count": 21, "polishing": {"_count": 1}, "alive": {"_count": 3}, "difficult": {"_count": 1}, "gamekeeper": {"_count": 1}, "very": {"_count": 1}, "able": {"_count": 1}, "using": {"_count": 1}, "reporting": {"_count": 1}, "asleep": {"_count": 1}, "": {"_count": 1}, "dangerous": {"_count": 1}, "allowed": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "here": {"_count": 1}, "of": {"_count": 1}, "ogwarts": {"_count": 1}, "there": {"_count": 1}, "three": {"_count": 1}}, "convinced": {"_count": 1, "that": {"_count": 1}}, "heartshaped": {"_count": 1, "confetti": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 1}, "back": {"_count": 1}}, "its": {"_count": 1, "time": {"_count": 1}}, "blazing": {"_count": 1, "in": {"_count": 1}}, "visits": {"_count": 1, "me": {"_count": 1}}, "open": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "stiffnecked": {"_count": 1, "and": {"_count": 1}}, "thinking": {"_count": 5, "about": {"_count": 3}, "of": {"_count": 2}}, "getting": {"_count": 4, "exams": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "massive": {"_count": 1}}, "pointing": {"_count": 7, "his": {"_count": 1}, "at": {"_count": 3}, "directly": {"_count": 2}, "to": {"_count": 1}}, "clenched": {"_count": 1, "": {"_count": 1}}, "frightens": {"_count": 1, "you": {"_count": 1}}, "tightly": {"_count": 2, "shut": {"_count": 1}, "sealed": {"_count": 1}}, "deadly": {"_count": 1, "": {"_count": 1}}, "resting": {"_count": 2, "his": {"_count": 1}, "in": {"_count": 1}}, "oozing": {"_count": 1, "from": {"_count": 1}}, "flooding": {"_count": 1, "silently": {"_count": 1}}, "coursing": {"_count": 1, "silently": {"_count": 1}}, "saw": {"_count": 2, "fit": {"_count": 1}, "her": {"_count": 1}}, "slits": {"_count": 1, "of": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "rather": {"_count": 5, "small": {"_count": 1}, "work": {"_count": 1}, "disheveled": {"_count": 1}, "than": {"_count": 1}, "felt": {"_count": 1}}, "balanced": {"_count": 1, "on": {"_count": 1}}, "fast": {"_count": 2, "asleep": {"_count": 2}}, "scuttling": {"_count": 1, "on": {"_count": 1}}, "squinting": {"_count": 2, "into": {"_count": 1}, "toward": {"_count": 1}}, "brought": {"_count": 3, "tears": {"_count": 1}, "a": {"_count": 1}, "all": {"_count": 1}}, "an": {"_count": 1, "underage": {"_count": 1}}, "anger": {"_count": 1, "still": {"_count": 1}}, "surging": {"_count": 1, "through": {"_count": 1}}, "clutching": {"_count": 15, "in": {"_count": 2}, "his": {"_count": 1}, "scarves": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 7}, "their": {"_count": 1}, "her": {"_count": 1}, "as": {"_count": 1}}, "sitting": {"_count": 3, "on": {"_count": 2}, "beside": {"_count": 1}}, "eluding": {"_count": 1, "capture": {"_count": 1}}, "rubbing": {"_count": 4, "his": {"_count": 4}}, "laughing": {"_count": 1, "is": {"_count": 1}}, "waiting": {"_count": 3, "to": {"_count": 1}, "for": {"_count": 2}}, "chuckling": {"_count": 1, "": {"_count": 1}}, "closer": {"_count": 2, "to": {"_count": 2}}, "looked": {"_count": 10, "scared": {"_count": 1}, "worried": {"_count": 1}, "slightly": {"_count": 1}, "depressingly": {"_count": 1}, "angry": {"_count": 1}, "mutinous": {"_count": 1}, "unhappy": {"_count": 1}, "cold": {"_count": 1}, "pale": {"_count": 1}, "exceptionally": {"_count": 1}}, "weak": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 9, "us": {"_count": 3}, "the": {"_count": 1}, "his": {"_count": 3}, "that": {"_count": 1}, "enough": {"_count": 1}}, "quite": {"_count": 3, "early": {"_count": 1}, "brilliant": {"_count": 1}, "young": {"_count": 1}}, "wet": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "agony": {"_count": 1, "": {"_count": 1}}, "clinging": {"_count": 3, "to": {"_count": 2}, "on": {"_count": 1}}, "frowning": {"_count": 2, "at": {"_count": 2}}, "smoking": {"_count": 3, "": {"_count": 2}, "then": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "listening": {"_count": 4, "hard": {"_count": 1}, "intently": {"_count": 1}, "very": {"_count": 1}, "to": {"_count": 1}}, "injured": {"_count": 1, "said": {"_count": 1}}, "numb": {"_count": 1, "with": {"_count": 1}}, "wetter": {"_count": 1, "than": {"_count": 1}}, "the": {"_count": 12, "best": {"_count": 1}, "appeal": {"_count": 1}, "giant": {"_count": 1}, "fact": {"_count": 1}, "saddest": {"_count": 1}, "little": {"_count": 1}, "most": {"_count": 1}, "darkness": {"_count": 1}, "pain": {"_count": 1}, "thing": {"_count": 1}, "goblins": {"_count": 1}, "dragon": {"_count": 1}}, "shouldnt": {"_count": 1, "be": {"_count": 1}}, "dream": {"_count": 1, "about": {"_count": 1}}, "pounding": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "falling": {"_count": 3, "outside": {"_count": 1}, "with": {"_count": 1}, "thickly": {"_count": 1}}, "fixed": {"_count": 6, "maliciously": {"_count": 1}, "on": {"_count": 2}, "threateningly": {"_count": 1}, "upon": {"_count": 2}}, "fuming": {"_count": 2, "about": {"_count": 1}, "when": {"_count": 1}}, "clutched": {"_count": 8, "in": {"_count": 4}, "tightly": {"_count": 1}, "tight": {"_count": 1}, "the": {"_count": 2}}, "wants": {"_count": 2, "to": {"_count": 2}}, "working": {"_count": 3, "": {"_count": 1}, "furiously": {"_count": 1}, "there": {"_count": 1}}, "glistening": {"_count": 1, "at": {"_count": 1}}, "overseeing": {"_count": 1, "Gryffindor": {"_count": 1}}, "letting": {"_count": 1, "him": {"_count": 1}}, "miraculously": {"_count": 2, "clear": {"_count": 1}, "unbroken": {"_count": 1}}, "grasping": {"_count": 1, "his": {"_count": 1}}, "stuck": {"_count": 2, "inside": {"_count": 1}, "in": {"_count": 1}}, "sobbing": {"_count": 5, "ran": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 2}, "Leanne": {"_count": 1}}, "acting": {"_count": 1, "like": {"_count": 1}}, "littered": {"_count": 1, "with": {"_count": 1}}, "severely": {"_count": 1, "shaken": {"_count": 1}}, "sticking": {"_count": 1, "up": {"_count": 1}}, "shining": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "down": {"_count": 2, "there": {"_count": 1}, "at": {"_count": 1}}, "goggling": {"_count": 3, "at": {"_count": 3}}, "smarting": {"_count": 1, "about": {"_count": 1}}, "bleeding": {"_count": 2, "freely": {"_count": 1}, "and": {"_count": 1}}, "making": {"_count": 4, "sure": {"_count": 1}, "Snape": {"_count": 1}, "every": {"_count": 1}, "snatching": {"_count": 1}}, "keeping": {"_count": 5, "close": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "reading": {"_count": 4, "from": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "slightly": {"_count": 1, "inclined": {"_count": 1}}, "resounding": {"_count": 1, "in": {"_count": 1}}, "Ron": {"_count": 1, "hissed": {"_count": 1}}, "OUCH": {"_count": 1, "": {"_count": 1}}, "show": {"_count": 1, "up": {"_count": 1}}, "pacing": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "clawing": {"_count": 1, "the": {"_count": 1}}, "wolfish": {"_count": 1, "but": {"_count": 1}}, "really": {"_count": 3, "dangerous": {"_count": 1}, "down": {"_count": 1}, "angry": {"_count": 1}}, "haunts": {"_count": 1, "me": {"_count": 1}}, "fighting": {"_count": 9, "to": {"_count": 2}, "and": {"_count": 1}, "his": {"_count": 1}, "I": {"_count": 1}, "doing": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "too": {"_count": 1}}, "pointed": {"_count": 2, "at": {"_count": 1}, "sideways": {"_count": 1}}, "purring": {"_count": 1, "on": {"_count": 1}}, "plenty": {"_count": 3, "out": {"_count": 1}, "of": {"_count": 2}}, "paler": {"_count": 1, "with": {"_count": 1}}, "wheezing": {"_count": 2, "behind": {"_count": 1}, "and": {"_count": 1}}, "lolling": {"_count": 1, "unpleasantly": {"_count": 1}}, "drifting": {"_count": 1, "weirdly": {"_count": 1}}, "glued": {"_count": 1, "to": {"_count": 1}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "hear": {"_count": 9, "Dumbledores": {"_count": 1}, "much": {"_count": 1}, "the": {"_count": 2}, "screaming": {"_count": 1}, "her": {"_count": 1}, "singing": {"_count": 1}, "every": {"_count": 1}, "Voldemort": {"_count": 1}}, "even": {"_count": 1, "the": {"_count": 1}}, "sounding": {"_count": 1, "amused": {"_count": 1}}, "night": {"_count": 1, "air": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "outstretched": {"_count": 3, "": {"_count": 1}, "inches": {"_count": 1}, "and": {"_count": 1}}, "gripping": {"_count": 1, "the": {"_count": 1}}, "cant": {"_count": 4, "believe": {"_count": 1}, "work": {"_count": 2}, "do": {"_count": 1}}, "searching": {"_count": 2, "for": {"_count": 1}, "his": {"_count": 1}}, "hooting": {"_count": 1, "excitedly": {"_count": 1}}, "called": {"_count": 1, "it": {"_count": 1}}, "liked": {"_count": 1, "to": {"_count": 1}}, "hungry": {"_count": 1, "": {"_count": 1}}, "deeply": {"_count": 1, "shaken": {"_count": 1}}, "painful": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "asleep": {"_count": 1, "their": {"_count": 1}}, "apt": {"_count": 1, "to": {"_count": 1}}, "marveling": {"_count": 1, "at": {"_count": 1}}, "glaring": {"_count": 7, "at": {"_count": 4}, "after": {"_count": 1}, "down": {"_count": 2}}, "clamped": {"_count": 2, "over": {"_count": 2}}, "gaping": {"_count": 1, "at": {"_count": 1}}, "harder": {"_count": 2, "over": {"_count": 1}, "as": {"_count": 1}}, "glowering": {"_count": 3, "as": {"_count": 1}, "when": {"_count": 1}, "at": {"_count": 1}}, "air": {"_count": 3, "": {"_count": 1}, "mingling": {"_count": 1}, "the": {"_count": 1}}, "July": {"_count": 1, "": {"_count": 1}}, "summer": {"_count": 2, "air": {"_count": 2}}, "faster": {"_count": 3, "but": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}}, "grinning": {"_count": 3, "in": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}}, "burning": {"_count": 7, "he": {"_count": 2}, "so": {"_count": 2}, "with": {"_count": 1}, "": {"_count": 2}}, "along": {"_count": 1, "the": {"_count": 1}}, "ghostly": {"_count": 1, "white": {"_count": 1}}, "she": {"_count": 3, "looked": {"_count": 1}, "took": {"_count": 1}, "said": {"_count": 1}}, "upon": {"_count": 5, "the": {"_count": 3}, "him": {"_count": 1}, "its": {"_count": 1}}, "going": {"_count": 5, "to": {"_count": 3}, "strong": {"_count": 1}, "on": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "splattering": {"_count": 1, "against": {"_count": 1}}, "rocketing": {"_count": 1, "around": {"_count": 1}}, "writing": {"_count": 1, "very": {"_count": 1}}, "squeaking": {"_count": 1, "Troy": {"_count": 1}}, "well": {"_count": 1, "known": {"_count": 1}}, "attached": {"_count": 2, "it": {"_count": 1}, "to": {"_count": 1}}, "drumming": {"_count": 1, "heavily": {"_count": 1}}, "darting": {"_count": 1, "restlessly": {"_count": 1}}, "gazing": {"_count": 11, "transfixed": {"_count": 1}, "fixedly": {"_count": 1}, "enraptured": {"_count": 1}, "at": {"_count": 4}, "avidly": {"_count": 1}, "everywhere": {"_count": 1}, "mesmerized": {"_count": 1}, "dreamily": {"_count": 1}}, "gloomy": {"_count": 1, "heavy": {"_count": 1}}, "unable": {"_count": 3, "to": {"_count": 3}}, "higher": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "watering": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "lay": {"_count": 1, "and": {"_count": 1}}, "furious": {"_count": 1, "about": {"_count": 1}}, "curls": {"_count": 1, "up": {"_count": 1}}, "sufficiently": {"_count": 1, "painful": {"_count": 1}}, "silent": {"_count": 2, "and": {"_count": 2}}, "gathered": {"_count": 2, "around": {"_count": 2}}, "glinted": {"_count": 2, "malevolently": {"_count": 1}, "brightly": {"_count": 1}}, "surveying": {"_count": 1, "Karkaroff": {"_count": 1}}, "fully": {"_count": 2, "dressed": {"_count": 2}}, "think": {"_count": 6, "I": {"_count": 1}, "hes": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}, "we": {"_count": 1}}, "without": {"_count": 1, "recognizable": {"_count": 1}}, "cry": {"_count": 1, "about": {"_count": 1}}, "they": {"_count": 2, "walked": {"_count": 1}, "circled": {"_count": 1}}, "just": {"_count": 3, "open": {"_count": 1}, "as": {"_count": 1}, "connected": {"_count": 1}}, "fine": {"_count": 1, "after": {"_count": 1}}, "cries": {"_count": 1, "about": {"_count": 1}}, "spot": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "thought": {"_count": 1, "that": {"_count": 1}}, "feeling": {"_count": 2, "too": {"_count": 1}, "ill": {"_count": 1}}, "following": {"_count": 1, "his": {"_count": 1}}, "posing": {"_count": 1, "a": {"_count": 1}}, "swaying": {"_count": 2, "like": {"_count": 1}, "happily": {"_count": 1}}, "panting": {"_count": 3, "and": {"_count": 2}, "with": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "tending": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "doing": {"_count": 3, "star": {"_count": 1}, "really": {"_count": 1}, "D": {"_count": 1}}, "unnerved": {"_count": 1, "": {"_count": 1}}, "quoting": {"_count": 1, "Rita": {"_count": 1}}, "two": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 2, "at": {"_count": 1}, "in": {"_count": 1}}, "breathing": {"_count": 6, "rather": {"_count": 1}, "deeply": {"_count": 1}, "down": {"_count": 1}, "as": {"_count": 1}, "hard": {"_count": 2}}, "thick": {"_count": 1, "upon": {"_count": 1}}, "existing": {"_count": 1, "in": {"_count": 1}}, "poking": {"_count": 1, "around": {"_count": 1}}, "ill": {"_count": 1, "": {"_count": 1}}, "drawn": {"_count": 1, "and": {"_count": 1}}, "clear": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 2, "curiously": {"_count": 1}, "to": {"_count": 1}}, "damp": {"_count": 1, "from": {"_count": 1}}, "one": {"_count": 2, "leg": {"_count": 1}, "last": {"_count": 1}}, "jammed": {"_count": 1, "tightly": {"_count": 1}}, "peering": {"_count": 1, "around": {"_count": 1}}, "whizzing": {"_count": 2, "over": {"_count": 1}, "in": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "time": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "dry": {"_count": 1, "was": {"_count": 1}}, "giggling": {"_count": 5, "as": {"_count": 1}, "madly": {"_count": 1}, "feebly": {"_count": 1}, "weakly": {"_count": 1}, "": {"_count": 1}}, "believed": {"_count": 3, "Sirius": {"_count": 2}, "that": {"_count": 1}}, "stuffing": {"_count": 1, "down": {"_count": 1}}, "thinks": {"_count": 4, "he": {"_count": 1}, "Mr": {"_count": 1}, "hes": {"_count": 1}, "Dumbledore": {"_count": 1}}, "gabbling": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 2}, "his": {"_count": 1}}, "sprawled": {"_count": 1, "at": {"_count": 1}}, "stood": {"_count": 2, "waiting": {"_count": 1}, "a": {"_count": 1}}, "living": {"_count": 2, "but": {"_count": 1}, "in": {"_count": 1}}, "hurting": {"_count": 1, "is": {"_count": 1}}, "around": {"_count": 4, "": {"_count": 1}, "Leanne": {"_count": 1}, "his": {"_count": 1}, "each": {"_count": 1}}, "hesitating": {"_count": 1, "when": {"_count": 1}}, "square": {"_count": 1, "said": {"_count": 1}}, "cradling": {"_count": 1, "his": {"_count": 1}}, "united": {"_count": 1, "under": {"_count": 1}}, "greater": {"_count": 1, "power": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 2, "was": {"_count": 2}}, "abroad": {"_count": 1, "and": {"_count": 1}}, "connected": {"_count": 1, "by": {"_count": 1}}, "connecting": {"_count": 1, "his": {"_count": 1}}, "shocked": {"_count": 1, "": {"_count": 1}}, "blurred": {"_count": 1, "and": {"_count": 1}}, "visible": {"_count": 1, "glaring": {"_count": 1}}, "his": {"_count": 3, "faithful": {"_count": 1}, "scar": {"_count": 1}, "": {"_count": 1}}, "tight": {"_count": 6, "on": {"_count": 2}, "upon": {"_count": 1}, "over": {"_count": 1}, "shut": {"_count": 2}}, "constricted": {"_count": 1, "": {"_count": 1}}, "dimly": {"_count": 1, "lit": {"_count": 1}}, "nighttime": {"_count": 1, "and": {"_count": 1}}, "swallowing": {"_count": 1, "them": {"_count": 1}}, "backing": {"_count": 1, "away": {"_count": 1}}, "wasnt": {"_count": 2, "enough": {"_count": 1}, "sure": {"_count": 1}}, "hoping": {"_count": 2, "to": {"_count": 1}, "it": {"_count": 1}}, "scowling": {"_count": 1, "Harry": {"_count": 1}}, "supine": {"_count": 1, "on": {"_count": 1}}, "trembling": {"_count": 3, "": {"_count": 3}}, "trapped": {"_count": 2, "here": {"_count": 1}, "under": {"_count": 1}}, "underage": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "watched": {"_count": 1, "eagerly": {"_count": 1}}, "riding": {"_count": 1, "a": {"_count": 1}}, "everyone": {"_count": 1, "while": {"_count": 1}}, "beaming": {"_count": 4, "let": {"_count": 1}, "": {"_count": 2}, "returned": {"_count": 1}}, "hasnt": {"_count": 2, "given": {"_count": 1}, "got": {"_count": 1}}, "wore": {"_count": 1, "his": {"_count": 1}}, "blinking": {"_count": 1, "mournfully": {"_count": 1}}, "grimfaced": {"_count": 1, "to": {"_count": 1}}, "after": {"_count": 2, "me": {"_count": 1}, "the": {"_count": 1}}, "Hes": {"_count": 1, "not": {"_count": 1}}, "boring": {"_count": 2, "into": {"_count": 2}}, "glad": {"_count": 1, "to": {"_count": 1}}, "here": {"_count": 5, "because": {"_count": 1}, "and": {"_count": 1}, "arent": {"_count": 1}, "": {"_count": 1}, "she": {"_count": 1}}, "caught": {"_count": 1, "him": {"_count": 1}}, "sleeping": {"_count": 1, "badly": {"_count": 1}}, "others": {"_count": 2, "reading": {"_count": 1}, "had": {"_count": 1}}, "smirking": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "doubt": {"_count": 1, "her": {"_count": 1}}, "singing": {"_count": 1, "": {"_count": 1}}, "bolted": {"_count": 1, "shut": {"_count": 1}}, "feel": {"_count": 2, "that": {"_count": 1}, "very": {"_count": 1}}, "allowed": {"_count": 2, "to": {"_count": 2}}, "avoiding": {"_count": 2, "Harrys": {"_count": 1}, "looking": {"_count": 1}}, "blazed": {"_count": 1, "inside": {"_count": 1}}, "written": {"_count": 1, "on": {"_count": 1}}, "learned": {"_count": 1, "loads": {"_count": 1}}, "worried": {"_count": 2, "by": {"_count": 1}, "from": {"_count": 1}}, "sense": {"_count": 1, "the": {"_count": 1}}, "absent": {"_count": 1, "from": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 2, "unable": {"_count": 1}, "elusive": {"_count": 1}}, "seeing": {"_count": 1, "a": {"_count": 1}}, "reckon": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "floating": {"_count": 3, "his": {"_count": 1}, "gently": {"_count": 1}, "in": {"_count": 1}}, "you": {"_count": 2, "fought": {"_count": 1}, "have": {"_count": 1}}, "managing": {"_count": 2, "to": {"_count": 2}}, "cheerful": {"_count": 1, "on": {"_count": 1}}, "sealed": {"_count": 1, "and": {"_count": 1}}, "leaking": {"_count": 2, "from": {"_count": 1}, "out": {"_count": 1}}, "tell": {"_count": 1, "that": {"_count": 1}}, "beating": {"_count": 2, "heavily": {"_count": 1}, "alive": {"_count": 1}}, "drinking": {"_count": 2, "lots": {"_count": 1}, "": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "wont": {"_count": 4, "go": {"_count": 1}, "say": {"_count": 1}, "let": {"_count": 1}, "leave": {"_count": 1}}, "circling": {"_count": 1, "the": {"_count": 1}}, "berating": {"_count": 1, "Crabbe": {"_count": 1}}, "struggling": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "scribbling": {"_count": 1, "away": {"_count": 1}}, "crying": {"_count": 2, "about": {"_count": 1}, "his": {"_count": 1}}, "sweating": {"_count": 1, "and": {"_count": 1}}, "whispering": {"_count": 1, "somewhere": {"_count": 1}}, "wheyfaced": {"_count": 1, "said": {"_count": 1}}, "observing": {"_count": 1, "the": {"_count": 1}}, "whitefaced": {"_count": 1, "and": {"_count": 1}}, "trailing": {"_count": 2, "from": {"_count": 1}, "the": {"_count": 1}}, "doesnt": {"_count": 2, "explain": {"_count": 2}}, "stroking": {"_count": 1, "his": {"_count": 1}}, "Dumbledore": {"_count": 1, "did": {"_count": 1}}, "managed": {"_count": 1, "it": {"_count": 1}}, "receive": {"_count": 1, "a": {"_count": 1}}, "your": {"_count": 1, "teacher": {"_count": 1}}, "tracing": {"_count": 1, "his": {"_count": 1}}, "savoring": {"_count": 1, "the": {"_count": 1}}, "throbbing": {"_count": 3, "painfully": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "aching": {"_count": 1, "he": {"_count": 1}}, "prickling": {"_count": 5, "painfully": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "heard": {"_count": 1}}, "scrabbling": {"_count": 1, "around": {"_count": 1}}, "lost": {"_count": 1, "in": {"_count": 1}}, "held": {"_count": 4, "at": {"_count": 1}, "high": {"_count": 1}, "aloft": {"_count": 1}, "his": {"_count": 1}}, "resides": {"_count": 1, "with": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "attempting": {"_count": 3, "to": {"_count": 3}}, "hammering": {"_count": 1, "very": {"_count": 1}}, "ogling": {"_count": 1, "Dumbledore": {"_count": 1}}, "vibrating": {"_count": 1, "with": {"_count": 1}}, "resolutely": {"_count": 2, "spelling": {"_count": 1}, "purple": {"_count": 1}}, "passing": {"_count": 1, "the": {"_count": 1}}, "absorbed": {"_count": 1, "in": {"_count": 1}}, "buried": {"_count": 1, "in": {"_count": 1}}, "poring": {"_count": 2, "over": {"_count": 2}}, "operating": {"_count": 2, "on": {"_count": 1}, "an": {"_count": 1}}, "apparently": {"_count": 1, "intent": {"_count": 1}}, "said": {"_count": 4, "Hermione": {"_count": 1}, "nothing": {"_count": 1}, "Tonks": {"_count": 1}, "Voldemort": {"_count": 1}}, "refusing": {"_count": 3, "to": {"_count": 3}}, "flaming": {"_count": 1, "red": {"_count": 1}}, "twisting": {"_count": 1, "his": {"_count": 1}}, "pinching": {"_count": 1, "his": {"_count": 1}}, "flying": {"_count": 2, "beside": {"_count": 1}, "in": {"_count": 1}}, "upright": {"_count": 1, "and": {"_count": 1}}, "hung": {"_count": 1, "around": {"_count": 1}}, "yelling": {"_count": 1, "his": {"_count": 1}}, "arguing": {"_count": 1, "about": {"_count": 1}}, "too": {"_count": 4, "ill": {"_count": 1}, "angry": {"_count": 1}, "young": {"_count": 1}, "full": {"_count": 1}}, "choking": {"_count": 1, "for": {"_count": 1}}, "whimpering": {"_count": 1, "her": {"_count": 1}}, "screaming": {"_count": 2, "nonstop": {"_count": 1}, "instructions": {"_count": 1}}, "deeper": {"_count": 1, "": {"_count": 1}}, "streaking": {"_count": 1, "purposefully": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "burned": {"_count": 2, "showing": {"_count": 1}, "": {"_count": 1}}, "laughed": {"_count": 1, "loudest": {"_count": 1}}, "gritty": {"_count": 1, "with": {"_count": 1}}, "warm": {"_count": 1, "yet": {"_count": 1}}, "closed": {"_count": 5, "": {"_count": 3}, "his": {"_count": 1}, "tight": {"_count": 1}}, "thrashing": {"_count": 1, "against": {"_count": 1}}, "god": {"_count": 1, "be": {"_count": 1}}, "fighding": {"_count": 1, "the": {"_count": 1}}, "halfway": {"_count": 1, "up": {"_count": 1}}, "jerking": {"_count": 1, "and": {"_count": 1}}, "battling": {"_count": 1, "apparently": {"_count": 1}}, "reach": {"_count": 1, "him": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}, "dancing": {"_count": 2, "uncontrollably": {"_count": 1}, "alone": {"_count": 1}}, "unconscious": {"_count": 2, "": {"_count": 2}}, "closing": {"_count": 1, "in": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "call": {"_count": 3, "home": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}}, "desired": {"_count": 1, "food": {"_count": 1}}, "hazy": {"_count": 1, "though": {"_count": 1}}, "deep": {"_count": 2, "welts": {"_count": 1}, "purple": {"_count": 1}}, "definitely": {"_count": 1, "his": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "claim": {"_count": 1, "you": {"_count": 1}}, "many": {"_count": 1, "stories": {"_count": 1}}, "possessed": {"_count": 1, "": {"_count": 1}}, "gives": {"_count": 1, "me": {"_count": 1}}, "found": {"_count": 2, "it": {"_count": 2}}, "speaking": {"_count": 1, "to": {"_count": 1}}, "felt": {"_count": 4, "a": {"_count": 2}, "angry": {"_count": 1}, "guilty": {"_count": 1}}, "resembled": {"_count": 1, "her": {"_count": 1}}, "etched": {"_count": 3, "across": {"_count": 1}, "on": {"_count": 1}, "upon": {"_count": 1}}, "curled": {"_count": 1, "absurdly": {"_count": 1}}, "unsmiling": {"_count": 1, "": {"_count": 1}}, "guard": {"_count": 1, "scrupulously": {"_count": 1}}, "teaching": {"_count": 1, "Divination": {"_count": 1}}, "issuing": {"_count": 2, "large": {"_count": 1}, "from": {"_count": 1}}, "pregnant": {"_count": 1, "": {"_count": 1}}, "reasonably": {"_count": 1, "pleased": {"_count": 1}}, "wincing": {"_count": 1, "as": {"_count": 1}}, "writhing": {"_count": 1, "and": {"_count": 1}}, "zooming": {"_count": 1, "around": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "endured": {"_count": 1, "worse": {"_count": 1}}, "it": {"_count": 2, "coincided": {"_count": 1}, "did": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "bore": {"_count": 1, "scratches": {"_count": 1}}, "concentrating": {"_count": 1, "on": {"_count": 1}}, "lower": {"_count": 1, "after": {"_count": 1}}, "endeavoring": {"_count": 1, "to": {"_count": 1}}, "headmaster": {"_count": 1, "": {"_count": 1}}, "answering": {"_count": 1, "detailed": {"_count": 1}}, "trust": {"_count": 1, "": {"_count": 1}}, "rankled": {"_count": 1, "": {"_count": 1}}, "present": {"_count": 1, "": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "worth": {"_count": 2, "knowing": {"_count": 1}, "trying": {"_count": 1}}, "dabbing": {"_count": 1, "at": {"_count": 1}}, "seething": {"_count": 1, "at": {"_count": 1}}, "gettin": {"_count": 1, "hurt": {"_count": 1}}, "visiting": {"_count": 1, "him": {"_count": 1}}, "swimming": {"_count": 2, "in": {"_count": 1}, "from": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 2, "happy": {"_count": 1}, "working": {"_count": 1}}, "mysteries": {"_count": 1, "to": {"_count": 1}}, "wished": {"_count": 1, "to": {"_count": 1}}, "finds": {"_count": 1, "it": {"_count": 1}}, "keen": {"_count": 1, "to": {"_count": 1}}, "\u2018tapeworm": {"_count": 1, "": {"_count": 1}}, "intact": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "Lucius": {"_count": 1, "was": {"_count": 1}}, "murky": {"_count": 1, "brown": {"_count": 1}}, "Rons": {"_count": 1, "sister": {"_count": 1}}, "raged": {"_count": 1, "inside": {"_count": 1}}, "wide": {"_count": 1, "open": {"_count": 1}}, "checking": {"_count": 1, "the": {"_count": 1}}, "spending": {"_count": 1, "plenty": {"_count": 1}}, "shimmered": {"_count": 1, "evilly": {"_count": 1}}, "stick": {"_count": 1, "up": {"_count": 1}}, "We": {"_count": 1, "have": {"_count": 1}}, "work": {"_count": 3, "right": {"_count": 1}, "if": {"_count": 1}, "after": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "water": {"_count": 1, "below": {"_count": 1}}, "thundering": {"_count": 1, "as": {"_count": 1}}, "inexorably": {"_count": 1, "sailing": {"_count": 1}}, "farther": {"_count": 1, "he": {"_count": 1}}, "encircled": {"_count": 1, "by": {"_count": 1}}, "showed": {"_count": 2, "no": {"_count": 1}, "white": {"_count": 1}}, "made": {"_count": 1, "no": {"_count": 1}}, "cowering": {"_count": 2, "with": {"_count": 1}, "slightly": {"_count": 1}}, "running": {"_count": 1, "they": {"_count": 1}}, "dazed": {"_count": 1, "looking": {"_count": 1}}, "firing": {"_count": 1, "off": {"_count": 1}}, "echoing": {"_count": 3, "over": {"_count": 1}, "across": {"_count": 1}, "around": {"_count": 1}}, "weeping": {"_count": 1, "copiously": {"_count": 1}}, "half": {"_count": 2, "hidden": {"_count": 1}, "blind": {"_count": 1}}, "four": {"_count": 1, "of": {"_count": 1}}, "exist": {"_count": 1, "seemed": {"_count": 1}}, "wands": {"_count": 1, "directed": {"_count": 1}}, "addressing": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "circulating": {"_count": 1, "about": {"_count": 1}}, "purple": {"_count": 1, "with": {"_count": 1}}, "sulking": {"_count": 1, "with": {"_count": 1}}, "remember": {"_count": 1, "the": {"_count": 1}}, "betterlooking": {"_count": 1, "said": {"_count": 1}}, "airborne": {"_count": 1, "He": {"_count": 1}}, "eet": {"_count": 1, "does": {"_count": 1}}, "tingling": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "suspected": {"_count": 1, "Hagrid": {"_count": 1}}, "fell": {"_count": 1, "about": {"_count": 1}}, "sorting": {"_count": 1, "books": {"_count": 1}}, "folded": {"_count": 1, "": {"_count": 1}}, "library": {"_count": 1, "books": {"_count": 1}}, "massaging": {"_count": 1, "his": {"_count": 1}}, "shadowy": {"_count": 1, "": {"_count": 1}}, "wiping": {"_count": 1, "her": {"_count": 1}}, "wondering": {"_count": 1, "how": {"_count": 1}}, "expect": {"_count": 1, "us": {"_count": 1}}, "French": {"_count": 1, "": {"_count": 1}}, "craning": {"_count": 1, "their": {"_count": 1}}, "scarlet": {"_count": 1, "": {"_count": 1}}, "cold": {"_count": 1, "inside": {"_count": 1}}, "turning": {"_count": 1, "toward": {"_count": 1}}, "invisible": {"_count": 2, "yelled": {"_count": 1}, "and": {"_count": 1}}, "immersed": {"_count": 1, "in": {"_count": 1}}, "happy": {"_count": 1, "to": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "raining": {"_count": 1, "in": {"_count": 1}}, "waving": {"_count": 1, "and": {"_count": 1}}, "clustered": {"_count": 1, "around": {"_count": 1}}, "intent": {"_count": 1, "upon": {"_count": 1}}, "gleaming": {"_count": 1, "brightly": {"_count": 1}}, "wrestling": {"_count": 1, "with": {"_count": 1}}, "gray": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "missing": {"_count": 2, "something": {"_count": 1}, "from": {"_count": 1}}, "deciphering": {"_count": 1, "something": {"_count": 1}}, "lives": {"_count": 1, "in": {"_count": 1}}, "smell": {"_count": 1, "Bathildas": {"_count": 1}}, "contemplating": {"_count": 1, "the": {"_count": 1}}, "shivery": {"_count": 1, "": {"_count": 1}}, "imprinted": {"_count": 1, "on": {"_count": 1}}, "lit": {"_count": 1, "": {"_count": 1}}, "shimmering": {"_count": 1, "in": {"_count": 1}}, "five": {"_count": 1, "of": {"_count": 1}}, "awkward": {"_count": 1, "": {"_count": 1}}, "heavy": {"_count": 1, "with": {"_count": 1}}, "banging": {"_count": 1, "and": {"_count": 1}}, "white": {"_count": 1, "with": {"_count": 1}}, "likely": {"_count": 1, "to": {"_count": 1}}, "puffy": {"_count": 1, "took": {"_count": 1}}, "avoided": {"_count": 1, "eye": {"_count": 1}}, "tied": {"_count": 1, "backtoback": {"_count": 1}}, "clung": {"_count": 1, "to": {"_count": 1}}, "saying": {"_count": 1, "Dobby": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "eyes": {"_count": 1, "glazed": {"_count": 1}}, "use": {"_count": 1, "a": {"_count": 1}}, "beat": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}, "go": {"_count": 1, "No": {"_count": 1}}, "groping": {"_count": 1, "in": {"_count": 1}}, "glimmering": {"_count": 1, "palely": {"_count": 1}}, "strung": {"_count": 1, "around": {"_count": 1}}, "carrying": {"_count": 2, "Griphook": {"_count": 1}, "a": {"_count": 1}}, "jingling": {"_count": 1, "": {"_count": 1}}, "clanking": {"_count": 1, "he": {"_count": 1}}, "rooted": {"_count": 1, "to": {"_count": 1}}, "astride": {"_count": 1, "him": {"_count": 1}}, "borne": {"_count": 1, "along": {"_count": 1}}, "shooting": {"_count": 1, "Stunning": {"_count": 1}}, "Nagini": {"_count": 1, "who": {"_count": 1}}, "searing": {"_count": 1, "": {"_count": 1}}, "disoriented": {"_count": 1, "by": {"_count": 1}}, "probing": {"_count": 1, "the": {"_count": 1}}, "shielding": {"_count": 1, "Luna": {"_count": 1}}, "crowded": {"_count": 1, "with": {"_count": 1}}, "gliding": {"_count": 1, "smoothly": {"_count": 1}}, "people": {"_count": 1, "in": {"_count": 1}}, "users": {"_count": 1, "inside": {"_count": 1}}, "hot": {"_count": 1, "blackened": {"_count": 1}}, "bearing": {"_count": 1, "the": {"_count": 1}}, "scattered": {"_count": 1, "all": {"_count": 1}}, "flew": {"_count": 1, "through": {"_count": 1}}, "arent": {"_count": 1, "going": {"_count": 1}}, "knew": {"_count": 1, "about": {"_count": 1}}, "discernible": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "masked": {"_count": 1, "and": {"_count": 1}}, "swirling": {"_count": 1, "and": {"_count": 1}}, "Voldemort": {"_count": 1, "and": {"_count": 1}}, "tilted": {"_count": 1, "to": {"_count": 1}}, "stand": {"_count": 1, "before": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "sparkled": {"_count": 1, "in": {"_count": 1}}, "glittering": {"_count": 1, "on": {"_count": 1}}, "stowed": {"_count": 1, "beneath": {"_count": 1}}, "then": {"_count": 1, "forced": {"_count": 1}}, "survived": {"_count": 1, "and": {"_count": 1}}}, "worried": {"_count": 128, "that": {"_count": 10, "he": {"_count": 2}, "Harry": {"_count": 1}, "the": {"_count": 2}, "YouKnow": {"_count": 1}, "Snapes": {"_count": 1}, "you": {"_count": 1}, "Dumbledore": {"_count": 1}, "Slughorn": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 33}, "?": {"_count": 1}}, "voice": {"_count": 7, "": {"_count": 3}, "as": {"_count": 3}, "pressing": {"_count": 1}}, "or": {"_count": 1, "why": {"_count": 1}}, "about": {"_count": 18, "what": {"_count": 2}, "the": {"_count": 2}, "you": {"_count": 3}, "her": {"_count": 1}, "his": {"_count": 1}, "anything": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}, "that": {"_count": 1}, "making": {"_count": 1}, "whatll": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 1}, "just": {"_count": 1}}, "The": {"_count": 1, "whole": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 8, "if": {"_count": 1}, "tense": {"_count": 1}, "Lavender": {"_count": 1}, "hes": {"_count": 2}, "Snape": {"_count": 1}, "angry": {"_count": 1}, "frightened": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "he": {"_count": 2, "sat": {"_count": 1}, "had": {"_count": 1}}, "tone": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "Oliver": {"_count": 1, "Hufflepuff": {"_count": 1}}, "this": {"_count": 1, "mornin": {"_count": 1}}, "sick": {"_count": 2, "": {"_count": 2}}, "so": {"_count": 2, "worried": {"_count": 1}, "dont": {"_count": 1}}, "She": {"_count": 1, "flung": {"_count": 1}}, "than": {"_count": 2, "before": {"_count": 1}, "hes": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "hell": {"_count": 1, "eat": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "what": {"_count": 2, "dementors": {"_count": 1}, "would": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "by": {"_count": 3, "all": {"_count": 1}, "what": {"_count": 1}, "Dumbledores": {"_count": 1}}, "it": {"_count": 1, "tells": {"_count": 1}}, "looks": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "from": {"_count": 1, "time": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "us": {"_count": 1, "most": {"_count": 1}}, "not": {"_count": 1, "only": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "saved": {"_count": 1}}, "abou": {"_count": 1, "Aragog": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "with": {"_count": 1}}, "very": {"_count": 1, "worried": {"_count": 1}}, "croaked": {"_count": 1, "Kreacher": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}}, "walked": {"_count": 469, "straight": {"_count": 14, "into": {"_count": 4}, "past": {"_count": 5}, "through": {"_count": 1}, "out": {"_count": 2}, "up": {"_count": 1}, "across": {"_count": 1}}, "off": {"_count": 7, "": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 3}, "his": {"_count": 1}, "looking": {"_count": 1}}, "to": {"_count": 10, "the": {"_count": 8}, "Blacks": {"_count": 1}, "where": {"_count": 1}}, "back": {"_count": 31, "down": {"_count": 3}, "to": {"_count": 13}, "into": {"_count": 2}, "up": {"_count": 3}, "through": {"_count": 3}, "out": {"_count": 1}, "toward": {"_count": 1}, "across": {"_count": 1}, "along": {"_count": 1}, "downstairs": {"_count": 1}, "past": {"_count": 1}, "around": {"_count": 1}}, "in": {"_count": 23, "with": {"_count": 1}, "": {"_count": 5}, "silence": {"_count": 2}, "there": {"_count": 1}, "on": {"_count": 3}, "late": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 3}, "deeper": {"_count": 1}, "accompanied": {"_count": 1}, "by": {"_count": 1}, "a": {"_count": 1}, "looking": {"_count": 1}, "said": {"_count": 1}}, "away": {"_count": 39, "without": {"_count": 1}, "Harry": {"_count": 2}, "": {"_count": 11}, "looking": {"_count": 1}, "hardly": {"_count": 1}, "leaving": {"_count": 4}, "from": {"_count": 5}, "in": {"_count": 1}, "smirking": {"_count": 1}, "across": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 1}, "around": {"_count": 1}, "into": {"_count": 1}, "his": {"_count": 2}, "through": {"_count": 1}, "toward": {"_count": 1}, "not": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 1}}, "round": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 16, "the": {"_count": 10}, "it": {"_count": 1}, "a": {"_count": 2}, "much": {"_count": 1}, "on": {"_count": 1}, "that": {"_count": 1}}, "up": {"_count": 21, "the": {"_count": 9}, "a": {"_count": 1}, "and": {"_count": 4}, "to": {"_count": 5}, "toward": {"_count": 1}, "several": {"_count": 1}}, "inside": {"_count": 4, "": {"_count": 3}, "talking": {"_count": 1}}, "down": {"_count": 17, "the": {"_count": 14}, "to": {"_count": 2}, "a": {"_count": 1}}, "more": {"_count": 2, "quickly": {"_count": 1}, "slowly": {"_count": 1}}, "out": {"_count": 23, "of": {"_count": 11}, "onto": {"_count": 7}, "without": {"_count": 1}, "through": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 2}}, "shakily": {"_count": 1, "toward": {"_count": 1}}, "into": {"_count": 19, "a": {"_count": 3}, "something": {"_count": 2}, "what": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 8}, "Ron": {"_count": 1}, "him": {"_count": 3}}, "onto": {"_count": 5, "the": {"_count": 5}}, "quickly": {"_count": 5, "down": {"_count": 1}, "back": {"_count": 1}, "so": {"_count": 1}, "from": {"_count": 1}, "sure": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "over": {"_count": 18, "the": {"_count": 1}, "to": {"_count": 17}}, "as": {"_count": 2, "fast": {"_count": 1}, "quickly": {"_count": 1}}, "past": {"_count": 19, "them": {"_count": 2}, "a": {"_count": 2}, "muttering": {"_count": 1}, "classrooms": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 3}, "surrounded": {"_count": 1}, "Krum": {"_count": 1}, "but": {"_count": 1}, "when": {"_count": 1}, "window": {"_count": 1}, "there": {"_count": 1}, "toward": {"_count": 1}, "Lilys": {"_count": 1}}, "forward": {"_count": 15, "and": {"_count": 5}, "he": {"_count": 2}, "as": {"_count": 1}, "her": {"_count": 1}, "Harry": {"_count": 1}, "visibly": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "on": {"_count": 16, "through": {"_count": 1}, "by": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 3}, "hardly": {"_count": 1}, "and": {"_count": 2}, "feeling": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}, "unfeeling": {"_count": 1}, "back": {"_count": 1}, "around": {"_count": 1}}, "for": {"_count": 4, "nearly": {"_count": 1}, "what": {"_count": 1}, "about": {"_count": 1}, "a": {"_count": 1}}, "toward": {"_count": 10, "him": {"_count": 2}, "the": {"_count": 3}, "Pansy": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "five": {"_count": 1, "paces": {"_count": 1}}, "purposefully": {"_count": 2, "toward": {"_count": 1}, "across": {"_count": 1}}, "right": {"_count": 10, "through": {"_count": 1}, "into": {"_count": 5}, "up": {"_count": 1}, "past": {"_count": 2}, "around": {"_count": 1}}, "a": {"_count": 5, "Slytherin": {"_count": 1}, "little": {"_count": 1}, "few": {"_count": 1}, "short": {"_count": 2}}, "quietly": {"_count": 3, "around": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 1}}, "deeper": {"_count": 2, "and": {"_count": 1}, "into": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "openmouthed": {"_count": 1, "toward": {"_count": 1}}, "carefully": {"_count": 1, "back": {"_count": 1}}, "cautiously": {"_count": 1, "forward": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 2}}, "across": {"_count": 13, "the": {"_count": 12}, "to": {"_count": 1}}, "beside": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "slowly": {"_count": 17, "to": {"_count": 1}, "back": {"_count": 4}, "forward": {"_count": 2}, "toward": {"_count": 3}, "up": {"_count": 1}, "across": {"_count": 1}, "along": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}, "around": {"_count": 1}, "waiting": {"_count": 1}}, "around": {"_count": 19, "them": {"_count": 1}, "the": {"_count": 13}, "her": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "trying": {"_count": 1}, "him": {"_count": 1}}, "headlong": {"_count": 1, "into": {"_count": 1}}, "them": {"_count": 1, "back": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "Oh": {"_count": 1, "I": {"_count": 1}}, "along": {"_count": 3, "the": {"_count": 2}, "so": {"_count": 1}}, "resolutely": {"_count": 1, "over": {"_count": 1}}, "with": {"_count": 4, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "Harry": {"_count": 1, "getting": {"_count": 1}}, "so": {"_count": 2, "far": {"_count": 1}, "fast": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "him": {"_count": 2, "down": {"_count": 1}, "a": {"_count": 1}}, "by": {"_count": 3, "with": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "free": {"_count": 2, "": {"_count": 2}}, "once": {"_count": 1, "up": {"_count": 1}}, "swiftly": {"_count": 3, "down": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 2}, "by": {"_count": 1}, "he": {"_count": 1}}, "lazily": {"_count": 1, "over": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 3, "smaller": {"_count": 1}, "corridors": {"_count": 1}, "remaining": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "shyly": {"_count": 1, "up": {"_count": 1}}, "very": {"_count": 2, "fast": {"_count": 1}, "slowly": {"_count": 1}}, "slap": {"_count": 1, "into": {"_count": 1}}, "from": {"_count": 1, "first": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "sideways": {"_count": 1, "out": {"_count": 1}}, "serenely": {"_count": 1, "past": {"_count": 1}}, "farther": {"_count": 1, "and": {"_count": 1}}, "half": {"_count": 2, "a": {"_count": 1}, "ran": {"_count": 1}}, "without": {"_count": 1, "realizing": {"_count": 1}}, "his": {"_count": 1, "dark": {"_count": 1}}, "earlier": {"_count": 1, "Harry": {"_count": 1}}, "alongside": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "blindly": {"_count": 1, "back": {"_count": 1}}, "still": {"_count": 1, "gleaming": {"_count": 1}}, "alone": {"_count": 1, "through": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "their": {"_count": 1, "shadows": {"_count": 1}}, "checking": {"_count": 1, "the": {"_count": 1}}, "James": {"_count": 1, "Sirius": {"_count": 1}}}, "straight": {"_count": 229, "into": {"_count": 21, "someone": {"_count": 1}, "Harrys": {"_count": 1}, "those": {"_count": 1}, "the": {"_count": 9}, "its": {"_count": 1}, "it": {"_count": 1}, "Voldemort": {"_count": 1}, "his": {"_count": 1}, "each": {"_count": 1}, "Ginny": {"_count": 2}, "Dumbledores": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 33, "the": {"_count": 14}, "Madam": {"_count": 1}, "me": {"_count": 1}, "McGonagall": {"_count": 1}, "an": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "Azkaban": {"_count": 1}, "Sirius": {"_count": 2}, "Dumbledores": {"_count": 1}, "Snapes": {"_count": 1}, "Harry": {"_count": 1}, "Voldemort": {"_count": 1}, "us": {"_count": 1}, "bed": {"_count": 1}, "her": {"_count": 1}, "your": {"_count": 1}, "Slughorns": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "at": {"_count": 16, "the": {"_count": 2}, "Ron": {"_count": 2}, "Harrys": {"_count": 3}, "Snape": {"_count": 1}, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}, "Blacks": {"_count": 1}, "Moran": {"_count": 1}, "it": {"_count": 1}, "James": {"_count": 1}, "Crabbe": {"_count": 1}, "Thicknesse": {"_count": 1}}, "back": {"_count": 11, "down": {"_count": 1}, "to": {"_count": 6}, "home": {"_count": 1}, "upstairs": {"_count": 1}, "so": {"_count": 1}, "into": {"_count": 1}}, "up": {"_count": 12, "like": {"_count": 1}, "one": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 7}, "the": {"_count": 1}}, "and": {"_count": 5, "he": {"_count": 1}, "hoping": {"_count": 1}, "headed": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}}, "twigs": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 13, "him": {"_count": 1}, "the": {"_count": 6}, "Harry": {"_count": 1}, "Katies": {"_count": 1}, "Rons": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "past": {"_count": 6, "and": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 1}}, "down": {"_count": 8, "to": {"_count": 3}, "the": {"_count": 1}, "Peeves": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}, "Mafalda": {"_count": 1}}, "answer": {"_count": 2, "out": {"_count": 1}, "when": {"_count": 1}}, "off": {"_count": 3, "ter": {"_count": 1}, "again": {"_count": 1}, "if": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 20, "the": {"_count": 7}, "Harry": {"_count": 1}, "Moaning": {"_count": 1}, "his": {"_count": 3}, "him": {"_count": 1}, "dinner": {"_count": 1}, "Malfoy": {"_count": 1}, "goal": {"_count": 2}, "them": {"_count": 2}, "our": {"_count": 1}}, "toward": {"_count": 4, "Justin": {"_count": 1}, "row": {"_count": 1}, "the": {"_count": 2}}, "line": {"_count": 1, "as": {"_count": 1}}, "ahead": {"_count": 6, "unable": {"_count": 1}, "again": {"_count": 1}, "of": {"_count": 1}, "Harry": {"_count": 1}, "Macnair": {"_count": 1}, "quite": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 6}, "through": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 1}, "and": {"_count": 2}, "her": {"_count": 1}}, "away": {"_count": 7, "": {"_count": 6}, "it": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "face": {"_count": 3, "": {"_count": 3}}, "between": {"_count": 1, "Blacks": {"_count": 1}}, "upward": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "said": {"_count": 1}}, "nose": {"_count": 2, "dark": {"_count": 1}, "formally": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "across": {"_count": 2, "the": {"_count": 2}}, "path": {"_count": 1, "he": {"_count": 1}}, "backed": {"_count": 1, "and": {"_count": 1}}, "home": {"_count": 1, "said": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 1}, "to": {"_count": 1}}, "said": {"_count": 2, "Sirius": {"_count": 1}, "Harry": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "still": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "interested": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "lunch": {"_count": 1}}, "once": {"_count": 1, "and": {"_count": 1}}, "drive": {"_count": 1, "lights": {"_count": 1}}, "wideeyed": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "after": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "vertical": {"_count": 1, "line": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}}, "someone": {"_count": 299, "just": {"_count": 3, "outside": {"_count": 1}, "explain": {"_count": 1}, "as": {"_count": 1}}, "to": {"_count": 16, "complain": {"_count": 1}, "cross": {"_count": 1}, "practice": {"_count": 1}, "follow": {"_count": 1}, "help": {"_count": 1}, "test": {"_count": 1}, "look": {"_count": 2}, "realize": {"_count": 1}, "attack": {"_count": 1}, "do": {"_count": 2}, "be": {"_count": 1}, "go": {"_count": 1}, "clear": {"_count": 1}, "ask": {"_count": 1}}, "take": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 13}, "!": {"_count": 3}, "?": {"_count": 7}}, "tried": {"_count": 3, "to": {"_count": 3}}, "had": {"_count": 22, "tried": {"_count": 2}, "just": {"_count": 6}, "died": {"_count": 1}, "turned": {"_count": 1}, "lit": {"_count": 1}, "wanted": {"_count": 1}, "fixed": {"_count": 1}, "broken": {"_count": 1}, "exploded": {"_count": 1}, "ordered": {"_count": 1}, "switched": {"_count": 1}, "been": {"_count": 2}, "told": {"_count": 1}, "liquidized": {"_count": 1}, "rummaged": {"_count": 1}}, "far": {"_count": 1, "less": {"_count": 1}}, "speak": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 13, "going": {"_count": 1}, "there": {"_count": 1}, "after": {"_count": 1}, "threatening": {"_count": 1}, "goggling": {"_count": 1}, "patting": {"_count": 1}, "sponging": {"_count": 1}, "moving": {"_count": 1}, "staggering": {"_count": 1}, "dead": {"_count": 1}, "putting": {"_count": 1}, "carryin": {"_count": 1}, "shouting": {"_count": 1}}, "downstairs": {"_count": 1, "must": {"_count": 1}}, "called": {"_count": 3, "Nicolas": {"_count": 1}, "the": {"_count": 1}, "Octavius": {"_count": 1}}, "else": {"_count": 18, "in": {"_count": 2}, "who": {"_count": 1}, "at": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 5}, "had": {"_count": 2}, "does": {"_count": 1}, "said": {"_count": 2}, "Whats": {"_count": 1}, "now": {"_count": 1}, "called": {"_count": 1}}, "finds": {"_count": 1, "out": {"_count": 1}}, "there": {"_count": 3, "but": {"_count": 1}, "": {"_count": 2}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "be": {"_count": 1, "sent": {"_count": 1}}, "said": {"_count": 6, "youd": {"_count": 1}, "Ron": {"_count": 3}, "Harry": {"_count": 1}, "something": {"_count": 1}}, "saying": {"_count": 1, "your": {"_count": 1}}, "who": {"_count": 19, "is": {"_count": 1}, "was": {"_count": 4}, "by": {"_count": 1}, "looked": {"_count": 2}, "cared": {"_count": 1}, "had": {"_count": 2}, "kept": {"_count": 1}, "has": {"_count": 2}, "fitted": {"_count": 1}, "cares": {"_count": 1}, "used": {"_count": 1}, "wasnt": {"_count": 1}, "never": {"_count": 1}}, "invisible": {"_count": 2, "wouldve": {"_count": 1}, "were": {"_count": 1}}, "shouted": {"_count": 1, "through": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "leaning": {"_count": 1, "over": {"_count": 1}}, "dreading": {"_count": 1, "taking": {"_count": 1}}, "elses": {"_count": 7, "been": {"_count": 1}, "life": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 2}, "head": {"_count": 1}}, "thinks": {"_count": 1, "its": {"_count": 1}}, "throws": {"_count": 2, "something": {"_count": 1}, "one": {"_count": 1}}, "wanted": {"_count": 2, "to": {"_count": 1}, "him": {"_count": 1}}, "did": {"_count": 1, "try": {"_count": 1}}, "speaking": {"_count": 1, "in": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "friendly": {"_count": 1, "to": {"_count": 1}}, "explaining": {"_count": 1, "that": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "must": {"_count": 3, "realize": {"_count": 1}, "have": {"_count": 2}}, "anyone": {"_count": 1, "The": {"_count": 1}}, "untrustworthy": {"_count": 1, "around": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "yelled": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 3, "know": {"_count": 1}, "knew": {"_count": 1}, "cant": {"_count": 1}}, "will": {"_count": 2, "give": {"_count": 1}, "be": {"_count": 1}}, "fell": {"_count": 1, "painfully": {"_count": 1}}, "mental": {"_count": 1, "": {"_count": 1}}, "get": {"_count": 1, "my": {"_count": 1}}, "on": {"_count": 3, "our": {"_count": 1}, "whom": {"_count": 1}, "me": {"_count": 1}}, "in": {"_count": 5, "1296": {"_count": 1}, "my": {"_count": 1}, "front": {"_count": 1}, "here": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "stumbling": {"_count": 1, "from": {"_count": 1}}, "having": {"_count": 1, "their": {"_count": 1}}, "talking": {"_count": 1, "Harry": {"_count": 1}}, "knocked": {"_count": 1, "at": {"_count": 1}}, "would": {"_count": 3, "realize": {"_count": 1}, "find": {"_count": 1}, "have": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "like": {"_count": 5, "someone": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "Dung": {"_count": 1}, "that": {"_count": 1}}, "laughing": {"_count": 1, "and": {"_count": 1}}, "might": {"_count": 1, "slip": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 2}}, "wouldnt": {"_count": 1, "they": {"_count": 1}}, "say": {"_count": 1, "MadEye": {"_count": 1}}, "older": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "you": {"_count": 1, "thought": {"_count": 1}}, "younger": {"_count": 1, "than": {"_count": 1}}, "from": {"_count": 5, "Gryffindors": {"_count": 1}, "the": {"_count": 4}}, "oo": {"_count": 1, "wished": {"_count": 1}}, "have": {"_count": 2, "put": {"_count": 1}, "to": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "which": {"_count": 1, "tended": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "knew": {"_count": 1, "their": {"_count": 1}}, "coming": {"_count": 1, "": {"_count": 1}}, "saw": {"_count": 1, "Siriuss": {"_count": 1}}, "being": {"_count": 2, "tortured": {"_count": 1}, "sick": {"_count": 1}}, "somewhere": {"_count": 1, "wholl": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 2}, "loved": {"_count": 1}}, "calling": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "spoke": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "flushes": {"_count": 1, "my": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "couldve": {"_count": 1, "couldve": {"_count": 1}}, "Stunned": {"_count": 1, "Krum": {"_count": 1}}, "muttered": {"_count": 1, "dryly": {"_count": 1}}, "is": {"_count": 2, "born": {"_count": 1}, "alarming": {"_count": 1}}, "Apparating": {"_count": 1, "or": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "lurking": {"_count": 1, "out": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "nobody": {"_count": 1, "will": {"_count": 1}}, "put": {"_count": 1, "their": {"_count": 1}}, "halfway": {"_count": 1, "decent": {"_count": 1}}, "other": {"_count": 2, "than": {"_count": 2}}, "panted": {"_count": 1, "from": {"_count": 1}}, "walked": {"_count": 1, "around": {"_count": 1}}, "whos": {"_count": 2, "actually": {"_count": 1}, "worse": {"_count": 1}}, "whose": {"_count": 1, "father": {"_count": 1}}, "this": {"_count": 2, "stupid": {"_count": 1}, "story": {"_count": 1}}, "inside": {"_count": 1, "Hogwarts": {"_count": 1}}, "outside": {"_count": 2, "Hogwarts": {"_count": 2}}, "came": {"_count": 2, "ter": {"_count": 1}, "running": {"_count": 1}}, "snuff": {"_count": 2, "it": {"_count": 2}}, "fussing": {"_count": 1, "over": {"_count": 1}}, "call": {"_count": 1, "": {"_count": 1}}, "been": {"_count": 1, "attacked": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "jus": {"_count": 1, "score": {"_count": 1}}, "Voldemort": {"_count": 1, "doesnt": {"_count": 1}}, "unless": {"_count": 1, "your": {"_count": 1}}, "standing": {"_count": 1, "right": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "better": {"_count": 1, "next": {"_count": 1}}, "along": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "because": {"_count": 1}}, "surely": {"_count": 1, "would": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "much": {"_count": 1, "better": {"_count": 1}}, "wrote": {"_count": 1, "in": {"_count": 1}}, "should": {"_count": 1, "Harry": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "sooner": {"_count": 1, "theyll": {"_count": 1}}, "took": {"_count": 1, "him": {"_count": 1}}, "unwelcome": {"_count": 1, "was": {"_count": 1}}, "threw": {"_count": 1, "you": {"_count": 1}}, "definitely": {"_count": 1, "been": {"_count": 1}}, "got": {"_count": 1, "thrown": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "whom": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "moving": {"_count": 1, "around": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "scuttling": {"_count": 1, "down": {"_count": 1}}, "descending": {"_count": 1, "the": {"_count": 1}}, "taller": {"_count": 1, "than": {"_count": 1}}, "walking": {"_count": 1, "nearby": {"_count": 1}}}, "door": {"_count": 1316, "": {"_count": 293, ".": {"_count": 277}, "!": {"_count": 10}, "?": {"_count": 6}}, "slammed": {"_count": 9, "on": {"_count": 1}, "": {"_count": 4}, "shut": {"_count": 2}, "behind": {"_count": 2}}, "to": {"_count": 46, "put": {"_count": 1}, "wake": {"_count": 1}, "their": {"_count": 3}, "make": {"_count": 1}, "check": {"_count": 3}, "the": {"_count": 19}, "tell": {"_count": 1}, "Harry": {"_count": 2}, "bring": {"_count": 1}, "its": {"_count": 1}, "say": {"_count": 2}, "drown": {"_count": 1}, "his": {"_count": 1}, "listen": {"_count": 1}, "reveal": {"_count": 1}, "which": {"_count": 2}, "swing": {"_count": 1}, "be": {"_count": 1}, "examine": {"_count": 1}, "spy": {"_count": 1}, "let": {"_count": 1}}, "it": {"_count": 3, "crept": {"_count": 1}, "was": {"_count": 1}, "wont": {"_count": 1}}, "again": {"_count": 7, "": {"_count": 5}, "rather": {"_count": 1}, "he": {"_count": 1}}, "of": {"_count": 68, "his": {"_count": 5}, "the": {"_count": 43}, "their": {"_count": 5}, "Hermiones": {"_count": 1}, "Moaning": {"_count": 2}, "number": {"_count": 3}, "a": {"_count": 1}, "Moodys": {"_count": 2}, "Professor": {"_count": 1}, "twelve": {"_count": 1}, "Slughorns": {"_count": 1}, "Madam": {"_count": 1}, "Kreachers": {"_count": 1}, "an": {"_count": 1}}, "behind": {"_count": 76, "them": {"_count": 21}, "him": {"_count": 34}, "the": {"_count": 5}, "her": {"_count": 8}, "a": {"_count": 1}, "Harry": {"_count": 3}, "you": {"_count": 1}, "Ron": {"_count": 1}, "it": {"_count": 2}}, "and": {"_count": 133, "floor": {"_count": 1}, "Harry": {"_count": 3}, "fitted": {"_count": 1}, "threw": {"_count": 1}, "trapped": {"_count": 1}, "said": {"_count": 3}, "out": {"_count": 2}, "poked": {"_count": 1}, "it": {"_count": 5}, "lock": {"_count": 1}, "turned": {"_count": 4}, "looked": {"_count": 3}, "up": {"_count": 2}, "flinging": {"_count": 1}, "tried": {"_count": 1}, "Snape": {"_count": 1}, "slid": {"_count": 2}, "heard": {"_count": 1}, "stepped": {"_count": 2}, "followed": {"_count": 1}, "Ron": {"_count": 2}, "they": {"_count": 2}, "opened": {"_count": 1}, "as": {"_count": 2}, "slammed": {"_count": 1}, "wondered": {"_count": 1}, "Madam": {"_count": 1}, "back": {"_count": 1}, "held": {"_count": 2}, "then": {"_count": 2}, "took": {"_count": 1}, "locked": {"_count": 1}, "closed": {"_count": 1}, "started": {"_count": 1}, "in": {"_count": 1}, "someone": {"_count": 1}, "Mrs": {"_count": 1}, "leaned": {"_count": 1}, "the": {"_count": 5}, "Fangs": {"_count": 1}, "entered": {"_count": 2}, "he": {"_count": 3}, "looking": {"_count": 1}, "striding": {"_count": 1}, "say": {"_count": 1}, "barricaded": {"_count": 1}, "while": {"_count": 1}, "after": {"_count": 1}, "if": {"_count": 1}, "sitting": {"_count": 1}, "onto": {"_count": 1}, "bolted": {"_count": 1}, "Hagrid": {"_count": 1}, "rejoined": {"_count": 1}, "stood": {"_count": 1}, "fluttered": {"_count": 1}, "almost": {"_count": 1}, "set": {"_count": 1}, "led": {"_count": 1}, "watched": {"_count": 1}, "every": {"_count": 2}, "cast": {"_count": 1}, "found": {"_count": 1}, "everyone": {"_count": 1}, "pushed": {"_count": 3}, "hurried": {"_count": 1}, "removed": {"_count": 1}, "sought": {"_count": 1}, "wall": {"_count": 1}, "knew": {"_count": 1}, "walked": {"_count": 1}, "Dolohov": {"_count": 1}, "withdrew": {"_count": 1}, "tapping": {"_count": 1}, "stepping": {"_count": 1}, "passed": {"_count": 2}, "let": {"_count": 1}, "leapt": {"_count": 1}, "moving": {"_count": 1}, "knocked": {"_count": 2}, "swept": {"_count": 1}, "disappeared": {"_count": 1}, "flung": {"_count": 1}, "sit": {"_count": 1}, "was": {"_count": 1}, "saw": {"_count": 1}, "disarmed": {"_count": 1}, "tiptoed": {"_count": 1}, "Hermione": {"_count": 1}, "thought": {"_count": 2}, "even": {"_count": 1}, "wrenched": {"_count": 1}, "a": {"_count": 1}, "again": {"_count": 1}, "this": {"_count": 1}, "Stun": {"_count": 1}, "moments": {"_count": 1}, "sat": {"_count": 1}}, "neighbors": {"_count": 1, "dog": {"_count": 1}}, "aaRRRGH": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 19, "a": {"_count": 3}, "the": {"_count": 6}, "her": {"_count": 3}, "Dobby": {"_count": 1}, "his": {"_count": 1}, "time": {"_count": 1}, "which": {"_count": 1}, "large": {"_count": 1}, "their": {"_count": 1}, "my": {"_count": 1}}, "slotted": {"_count": 1, "through": {"_count": 1}}, "shut": {"_count": 14, "": {"_count": 3}, "behind": {"_count": 4}, "and": {"_count": 3}, "Put": {"_count": 1}, "taking": {"_count": 1}, "with": {"_count": 1}, "on": {"_count": 1}}, "was": {"_count": 22, "hit": {"_count": 1}, "flung": {"_count": 2}, "already": {"_count": 1}, "a": {"_count": 1}, "locked": {"_count": 1}, "open": {"_count": 2}, "ajar": {"_count": 2}, "sort": {"_count": 1}, "barred": {"_count": 1}, "closed": {"_count": 2}, "growing": {"_count": 2}, "hanging": {"_count": 1}, "opened": {"_count": 1}, "closing": {"_count": 1}, "concealed": {"_count": 1}, "overgrown": {"_count": 1}, "through": {"_count": 1}}, "Harry": {"_count": 12, "thought": {"_count": 1}, "among": {"_count": 1}, "said": {"_count": 1}, "saw": {"_count": 1}, "cast": {"_count": 1}, "took": {"_count": 1}, "muttered": {"_count": 1}, "realized": {"_count": 1}, "hurtled": {"_count": 1}, "leapt": {"_count": 1}, "sent": {"_count": 1}, "Ron": {"_count": 1}}, "open": {"_count": 27, "for": {"_count": 2}, "": {"_count": 9}, "and": {"_count": 9}, "said": {"_count": 1}, "Fang": {"_count": 1}, "much": {"_count": 1}, "behind": {"_count": 2}, "but": {"_count": 1}, "cast": {"_count": 1}}, "gently": {"_count": 1, "with": {"_count": 1}}, "buying": {"_count": 1, "my": {"_count": 1}}, "read": {"_count": 1, "Ollivanders": {"_count": 1}}, "slid": {"_count": 5, "open": {"_count": 4}, "slowly": {"_count": 1}}, "swung": {"_count": 17, "open": {"_count": 12}, "shut": {"_count": 4}, "closed": {"_count": 1}}, "wide": {"_count": 2, "": {"_count": 1}, "open": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "that": {"_count": 9, "unluckily": {"_count": 1}, "was": {"_count": 1}, "stood": {"_count": 1}, "he": {"_count": 1}, "led": {"_count": 4}, "marked": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "Were": {"_count": 1, "done": {"_count": 1}}, "is": {"_count": 1, "locked": {"_count": 1}}, "mouths": {"_count": 1, "dry": {"_count": 1}}, "but": {"_count": 13, "she": {"_count": 1}, "it": {"_count": 2}, "Voldemort": {"_count": 1}, "before": {"_count": 1}, "next": {"_count": 1}, "was": {"_count": 1}, "stopped": {"_count": 1}, "could": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 1}, "Dudley": {"_count": 1}, "the": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "ajar": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "quietly": {"_count": 5, "but": {"_count": 1}, "behind": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "looking": {"_count": 1, "disapproving": {"_count": 1}}, "stood": {"_count": 7, "ajar": {"_count": 4}, "open": {"_count": 2}, "a": {"_count": 1}}, "quickly": {"_count": 5, "behind": {"_count": 3}, "and": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 19, "any": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 14}, "one": {"_count": 1}, "all": {"_count": 1}, "random": {"_count": 1}}, "separating": {"_count": 1, "Fluffy": {"_count": 1}}, "somehow": {"_count": 1, "seemed": {"_count": 1}}, "creaked": {"_count": 7, "low": {"_count": 1}, "open": {"_count": 6}}, "untouched": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 5, "key": {"_count": 1}, "windshield": {"_count": 1}, "coach": {"_count": 1}, "better": {"_count": 1}, "door": {"_count": 1}}, "handle": {"_count": 6, "": {"_count": 4}, "turned": {"_count": 1}, "and": {"_count": 1}}, "ahead": {"_count": 6, "clear": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 3}, "flung": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 11, "he": {"_count": 3}, "Bill": {"_count": 1}, "they": {"_count": 1}, "Buckbeak": {"_count": 1}, "fast": {"_count": 1}, "quickly": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "for": {"_count": 7, "this": {"_count": 1}, "him": {"_count": 1}, "what": {"_count": 1}, "months": {"_count": 1}, "Snape": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}, "pulled": {"_count": 1, "it": {"_count": 1}}, "so": {"_count": 5, "that": {"_count": 2}, "hard": {"_count": 1}, "Alohomora": {"_count": 1}, "did": {"_count": 1}}, "lay": {"_count": 1, "a": {"_count": 1}}, "keys": {"_count": 2, "and": {"_count": 1}, "shrink": {"_count": 1}}, "with": {"_count": 23, "peeling": {"_count": 1}, "a": {"_count": 6}, "Hedwig": {"_count": 1}, "Pansy": {"_count": 1}, "Mrs": {"_count": 1}, "his": {"_count": 3}, "an": {"_count": 2}, "the": {"_count": 3}, "him": {"_count": 1}, "their": {"_count": 1}, "another": {"_count": 1}, "Borgin": {"_count": 1}, "her": {"_count": 1}}, "had": {"_count": 25, "closed": {"_count": 7}, "opened": {"_count": 3}, "shut": {"_count": 1}, "not": {"_count": 2}, "just": {"_count": 2}, "appeared": {"_count": 1}, "already": {"_count": 1}, "flown": {"_count": 1}, "fallen": {"_count": 1}, "burst": {"_count": 2}, "shown": {"_count": 1}, "swung": {"_count": 1}, "remained": {"_count": 1}, "reappeared": {"_count": 1}}, "saying": {"_count": 2, "Calmly": {"_count": 1}, "Dont": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "on": {"_count": 17, "the": {"_count": 14}, "Halloween": {"_count": 1}, "Myrtles": {"_count": 1}, "them": {"_count": 1}}, "flew": {"_count": 10, "open": {"_count": 10}}, "opened": {"_count": 50, "but": {"_count": 1}, "": {"_count": 9}, "and": {"_count": 18}, "it": {"_count": 1}, "the": {"_count": 1}, "again": {"_count": 5}, "Mundungus": {"_count": 1}, "for": {"_count": 1}, "behind": {"_count": 3}, "of": {"_count": 1}, "all": {"_count": 1}, "Dean": {"_count": 1}, "onto": {"_count": 1}, "at": {"_count": 2}, "as": {"_count": 1}, "He": {"_count": 1}, "A": {"_count": 1}, "on": {"_count": 1}}, "nodding": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 2, "next": {"_count": 1}, "behind": {"_count": 1}}, "after": {"_count": 3, "door": {"_count": 2}, "gleaming": {"_count": 1}}, "concealed": {"_count": 2, "in": {"_count": 1}, "behind": {"_count": 1}}, "they": {"_count": 6, "sprinted": {"_count": 1}, "went": {"_count": 1}, "had": {"_count": 2}, "were": {"_count": 1}, "backed": {"_count": 1}}, "slam": {"_count": 3, "": {"_count": 3}}, "bearing": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "almost": {"_count": 2, "closed": {"_count": 1}, "completely": {"_count": 1}}, "watching": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "staring": {"_count": 3, "through": {"_count": 1}, "at": {"_count": 2}}, "creak": {"_count": 1, "open": {"_count": 1}}, "a": {"_count": 10, "very": {"_count": 1}, "bit": {"_count": 1}, "long": {"_count": 1}, "magnificent": {"_count": 1}, "few": {"_count": 1}, "minute": {"_count": 1}, "little": {"_count": 1}, "group": {"_count": 1}, "small": {"_count": 1}, "large": {"_count": 1}}, "once": {"_count": 3, "more": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "he": {"_count": 10, "stopped": {"_count": 1}, "shot": {"_count": 1}, "saw": {"_count": 1}, "wanted": {"_count": 1}, "heard": {"_count": 1}, "proceeded": {"_count": 1}, "looked": {"_count": 1}, "knew": {"_count": 1}, "hammered": {"_count": 1}, "told": {"_count": 1}}, "banged": {"_count": 7, "shut": {"_count": 1}, "open": {"_count": 6}}, "banging": {"_count": 1, "open": {"_count": 1}}, "knob": {"_count": 1, "but": {"_count": 1}}, "burst": {"_count": 5, "open": {"_count": 3}, "magically": {"_count": 1}, "in": {"_count": 1}}, "gleamed": {"_count": 1, "and": {"_count": 1}}, "desperate": {"_count": 1, "to": {"_count": 1}}, "close": {"_count": 5, "then": {"_count": 1}, "and": {"_count": 2}, "but": {"_count": 1}, "quiet": {"_count": 1}}, "closed": {"_count": 10, "": {"_count": 1}, "with": {"_count": 1}, "behind": {"_count": 5}, "and": {"_count": 1}, "automatically": {"_count": 1}, "again": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "suddenly": {"_count": 1, "opened": {"_count": 1}}, "slide": {"_count": 1, "open": {"_count": 1}}, "into": {"_count": 17, "the": {"_count": 11}, "his": {"_count": 2}, "a": {"_count": 3}, "Slughorn": {"_count": 1}}, "something": {"_count": 2, "brushed": {"_count": 1}, "": {"_count": 1}}, "day": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "bursting": {"_count": 1, "open": {"_count": 1}}, "first": {"_count": 1, "and": {"_count": 1}}, "slamming": {"_count": 2, "": {"_count": 1}, "echoed": {"_count": 1}}, "rattle": {"_count": 1, "on": {"_count": 1}}, "Fudge": {"_count": 1, "was": {"_count": 1}}, "or": {"_count": 1, "well": {"_count": 1}}, "wrenched": {"_count": 3, "it": {"_count": 3}}, "Okay": {"_count": 1, "said": {"_count": 1}}, "has": {"_count": 2, "been": {"_count": 1}, "anyone": {"_count": 1}}, "then": {"_count": 5, "": {"_count": 1}, "people": {"_count": 1}, "his": {"_count": 1}, "metallic": {"_count": 1}, "opened": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "noiselessly": {"_count": 1, "": {"_count": 1}}, "pushing": {"_count": 1, "the": {"_count": 1}}, "listening": {"_count": 2, "very": {"_count": 1}, "with": {"_count": 1}}, "sharply": {"_count": 1, "behind": {"_count": 1}}, "fighting": {"_count": 1, "the": {"_count": 1}}, "clearly": {"_count": 1, "hoping": {"_count": 1}}, "peered": {"_count": 1, "up": {"_count": 1}}, "came": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 6, "Dean": {"_count": 1}, "swung": {"_count": 2}, "burst": {"_count": 1}, "was": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "throwing": {"_count": 1, "them": {"_count": 1}}, "through": {"_count": 6, "which": {"_count": 6}}, "whining": {"_count": 1, "but": {"_count": 1}}, "leaned": {"_count": 1, "close": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "knocker": {"_count": 5, "": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}, "Where": {"_count": 1}, "and": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 13, "he": {"_count": 6}, "Harry": {"_count": 1}, "a": {"_count": 2}, "your": {"_count": 1}, "there": {"_count": 1}, "Dudley": {"_count": 1}, "Slughorn": {"_count": 1}}, "whose": {"_count": 1, "handle": {"_count": 1}}, "said": {"_count": 4, "Mrs": {"_count": 1}, "Dumbledore": {"_count": 2}, "Katie": {"_count": 1}}, "eight": {"_count": 1, "or": {"_count": 1}}, "emerged": {"_count": 1, "out": {"_count": 1}}, "magically": {"_count": 1, "sealing": {"_count": 1}}, "here": {"_count": 1, "CRASH": {"_count": 1}}, "facing": {"_count": 3, "Harry": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "leading": {"_count": 6, "into": {"_count": 2}, "to": {"_count": 3}, "off": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "please": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "carefully": {"_count": 3, "behind": {"_count": 3}}, "an": {"_count": 1, "inch": {"_count": 1}}, "softly": {"_count": 1, "behind": {"_count": 1}}, "over": {"_count": 1, "Mr": {"_count": 1}}, "hissing": {"_count": 1, "For": {"_count": 1}}, "revealing": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 4, "had": {"_count": 2}, "said": {"_count": 1}, "began": {"_count": 1}}, "creaking": {"_count": 1, "open": {"_count": 1}}, "what": {"_count": 1, "on": {"_count": 1}}, "Cho": {"_count": 1, "looked": {"_count": 1}}, "waving": {"_count": 1, "around": {"_count": 1}}, "Hagrid": {"_count": 3, "pushed": {"_count": 1}, "however": {"_count": 1}, "staggered": {"_count": 1}}, "I": {"_count": 3, "dunno": {"_count": 1}, "make": {"_count": 1}, "reckon": {"_count": 1}}, "wont": {"_count": 2, "tell": {"_count": 1}, "open": {"_count": 1}}, "past": {"_count": 1, "rough": {"_count": 1}}, "toward": {"_count": 1, "Buckbeaks": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "would": {"_count": 2, "open": {"_count": 1}, "not": {"_count": 1}}, "Roger": {"_count": 1, "Davies": {"_count": 1}}, "being": {"_count": 1, "heartily": {"_count": 1}}, "invisible": {"_count": 1, "and": {"_count": 1}}, "ought": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 3, "wand": {"_count": 1}, "hands": {"_count": 1}, "bark": {"_count": 1}}, "like": {"_count": 2, "guards": {"_count": 1}, "the": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "where": {"_count": 2, "a": {"_count": 1}, "Ron": {"_count": 1}}, "frame": {"_count": 3, "": {"_count": 2}, "for": {"_count": 1}}, "clutching": {"_count": 1, "it": {"_count": 1}}, "somebody": {"_count": 1, "managed": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "immediately": {"_count": 1, "opposite": {"_count": 1}}, "we": {"_count": 1, "came": {"_count": 1}}, "now": {"_count": 1, "facing": {"_count": 1}}, "There": {"_count": 1, "are": {"_count": 1}}, "clicked": {"_count": 1, "shut": {"_count": 1}}, "sealed": {"_count": 1, "itself": {"_count": 1}}, "straight": {"_count": 1, "ahead": {"_count": 1}}, "Hermione": {"_count": 2, "had": {"_count": 1}, "toppled": {"_count": 1}}, "two": {"_count": 1, "more": {"_count": 1}}, "before": {"_count": 4, "any": {"_count": 1}, "Bella": {"_count": 1}, "Snape": {"_count": 1}, "she": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 1, "Bellatrix": {"_count": 1}}, "still": {"_count": 1, "open": {"_count": 1}}, "seized": {"_count": 1, "the": {"_count": 1}}, "sure": {"_count": 1, "for": {"_count": 1}}, "remained": {"_count": 2, "unlocked": {"_count": 1}, "firmly": {"_count": 1}}, "very": {"_count": 1, "slowly": {"_count": 1}}, "isnt": {"_count": 1, "Imperturbable": {"_count": 1}}, "tinkled": {"_count": 1, "loudly": {"_count": 1}}, "repeatedly": {"_count": 1, "into": {"_count": 1}}, "well": {"_count": 1, "blast": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "click": {"_count": 1, "behind": {"_count": 1}}, "just": {"_count": 2, "as": {"_count": 1}, "like": {"_count": 1}}, "pop": {"_count": 1, "into": {"_count": 1}}, "Felix": {"_count": 1, "does": {"_count": 1}}, "back": {"_count": 3, "out": {"_count": 1}, "toward": {"_count": 1}, "into": {"_count": 1}}, "Trelawney": {"_count": 1, "told": {"_count": 1}}, "find": {"_count": 1, "a": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "pausing": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "without": {"_count": 1, "looking": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "Bill": {"_count": 1, "dont": {"_count": 1}}, "lintel": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "gone": {"_count": 1}}, "give": {"_count": 1, "Dudley": {"_count": 1}}, "Ron": {"_count": 2, "clicked": {"_count": 1}, "was": {"_count": 1}}, "scared": {"_count": 1, "to": {"_count": 1}}, "holding": {"_count": 1, "his": {"_count": 1}}, "Do": {"_count": 1, "Not": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "beside": {"_count": 1, "them": {"_count": 1}}, "concealing": {"_count": 1, "the": {"_count": 1}}, "each": {"_count": 1, "bearing": {"_count": 1}}, "leaving": {"_count": 1, "a": {"_count": 1}}, "enter": {"_count": 1, "as": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "downstairs": {"_count": 1, "crashed": {"_count": 1}}, "upon": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "opposite": {"_count": 1, "Bill": {"_count": 1}}, "yeah": {"_count": 1, "": {"_count": 1}}, "opening": {"_count": 1, "made": {"_count": 1}}, "materialized": {"_count": 1, "on": {"_count": 1}}, "get": {"_count": 1, "to": {"_count": 1}}}, "Sorry": {"_count": 85, "he": {"_count": 6, "grunted": {"_count": 1}, "said": {"_count": 4}, "muttered": {"_count": 1}}, "Harry": {"_count": 5, "said": {"_count": 3}, "I": {"_count": 1}, "told": {"_count": 1}}, "": {"_count": 23, "?": {"_count": 14}, "!": {"_count": 4}, ".": {"_count": 5}}, "said": {"_count": 10, "Harry": {"_count": 7}, "Neville": {"_count": 1}, "Slughorn": {"_count": 1}, "Ron": {"_count": 1}}, "George": {"_count": 2, "dear": {"_count": 1}, "Im": {"_count": 1}}, "Professor": {"_count": 4, "": {"_count": 1}, "Ive": {"_count": 1}, "sorry": {"_count": 1}, "he": {"_count": 1}}, "Mum": {"_count": 1, "but": {"_count": 1}}, "Colin": {"_count": 1, "Im": {"_count": 1}}, "I": {"_count": 9, "disturbed": {"_count": 1}, "I": {"_count": 1}, "forgot": {"_count": 1}, "was": {"_count": 1}, "only": {"_count": 1}, "mean": {"_count": 1}, "Wrackspurt": {"_count": 1}, "just": {"_count": 1}, "will": {"_count": 1}}, "to": {"_count": 3, "disappoint": {"_count": 1}, "bother": {"_count": 1}, "intrude": {"_count": 1}}, "Thats": {"_count": 1, "not": {"_count": 1}}, "dyou": {"_count": 1, "know": {"_count": 1}}, "Im": {"_count": 1, "late": {"_count": 1}}, "didnt": {"_count": 1, "see": {"_count": 1}}, "if": {"_count": 1, "weve": {"_count": 1}}, "Perce": {"_count": 1, "said": {"_count": 1}}, "about": {"_count": 5, "this": {"_count": 2}, "that": {"_count": 2}, "last": {"_count": 1}}, "she": {"_count": 1, "whispered": {"_count": 1}}, "Molly": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "mate": {"_count": 1}}, "repeated": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 2, "thats": {"_count": 1}, "what": {"_count": 1}}, "sorry": {"_count": 1, "": {"_count": 1}}, "Reducio": {"_count": 1, "": {"_count": 1}}, "interjected": {"_count": 1, "Harry": {"_count": 1}}, "Bill": {"_count": 1, "": {"_count": 1}}}, "grunted": {"_count": 46, "as": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "into": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "show": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "offered": {"_count": 1}, "without": {"_count": 1}, "his": {"_count": 1}, "tore": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 2}, "amusement": {"_count": 1}, "pain": {"_count": 1}}, "swinging": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 3, "dwarf": {"_count": 1}, "security": {"_count": 1}, "Harry": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "Ernie": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "man": {"_count": 1}, "voice": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "Krum": {"_count": 1, "": {"_count": 1}}, "Moody": {"_count": 3, "his": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "Ron": {"_count": 1, "from": {"_count": 1}}, "loudly": {"_count": 1, "and": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "appreciatively": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "outofsight": {"_count": 1}}, "thanks": {"_count": 1, "and": {"_count": 1}}, "Goyle": {"_count": 1, "": {"_count": 1}}}, "tiny": {"_count": 232, "old": {"_count": 2, "man": {"_count": 1}, "Professor": {"_count": 1}}, "pinpricks": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "man": {"_count": 1, "in": {"_count": 1}}, "ray": {"_count": 1, "of": {"_count": 1}}, "grubbylooking": {"_count": 1, "pub": {"_count": 1}}, "glasses": {"_count": 1, "of": {"_count": 1}}, "golden": {"_count": 8, "key": {"_count": 2}, "glimmer": {"_count": 1}, "ball": {"_count": 2}, "lights": {"_count": 1}, "bells": {"_count": 1}, "cup": {"_count": 1}}, "place": {"_count": 1, "empty": {"_count": 1}}, "dark": {"_count": 2, "platform": {"_count": 1}, "bedroom": {"_count": 1}}, "little": {"_count": 13, "wizard": {"_count": 2}, "bit": {"_count": 1}, "flaw": {"_count": 1}, "Professor": {"_count": 1}, "Scops": {"_count": 1}, "bearded": {"_count": 1}, "brain": {"_count": 1}, "wooden": {"_count": 1}, "cough": {"_count": 1}, "Charms": {"_count": 1}, "bottle": {"_count": 1}, "ears": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "mind": {"_count": 1, "then": {"_count": 1}}, "icicles": {"_count": 1, "some": {"_count": 1}}, "bottle": {"_count": 5, "": {"_count": 1}, "out": {"_count": 1}, "of": {"_count": 2}, "that": {"_count": 1}}, "eyes": {"_count": 9, "": {"_count": 2}, "bulged": {"_count": 1}, "contract": {"_count": 1}, "were": {"_count": 2}, "darted": {"_count": 1}, "filled": {"_count": 1}, "which": {"_count": 1}}, "window": {"_count": 4, "": {"_count": 2}, "watching": {"_count": 1}, "was": {"_count": 1}}, "junk": {"_count": 1, "shop": {"_count": 1}}, "silver": {"_count": 3, "button": {"_count": 1}, "I": {"_count": 1}, "stars": {"_count": 1}}, "toy": {"_count": 1, "churches": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "wrinkled": {"_count": 1, "newborn": {"_count": 1}}, "light": {"_count": 1, "appeared": {"_count": 1}}, "spiders": {"_count": 1, "like": {"_count": 1}}, "snake": {"_count": 1, "": {"_count": 1}}, "engraving": {"_count": 1, "trying": {"_count": 1}}, "brass": {"_count": 1, "compass": {"_count": 1}}, "bloodshot": {"_count": 1, "eyes": {"_count": 1}}, "wizard": {"_count": 1, "in": {"_count": 1}}, "platform": {"_count": 1, "rain": {"_count": 1}}, "hint": {"_count": 1, "of": {"_count": 1}}, "landing": {"_count": 2, "where": {"_count": 1}, "": {"_count": 1}}, "wisps": {"_count": 1, "of": {"_count": 1}}, "winged": {"_count": 2, "walnutsized": {"_count": 1}, "golden": {"_count": 1}}, "black": {"_count": 5, "Pepper": {"_count": 2}, "eyes": {"_count": 1}, "speck": {"_count": 1}, "dots": {"_count": 1}}, "Snitch": {"_count": 1, "": {"_count": 1}}, "speck": {"_count": 1, "of": {"_count": 1}}, "island": {"_count": 2, "way": {"_count": 1}, "in": {"_count": 1}}, "ink": {"_count": 2, "dots": {"_count": 1}, "Mrs": {"_count": 1}}, "inn": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 2, "Flitwick": {"_count": 1}, "Marchbanks": {"_count": 1}}, "wings": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "cracks": {"_count": 1, "in": {"_count": 1}}, "dot": {"_count": 2, "was": {"_count": 1}, "labeled": {"_count": 1}}, "sparkling": {"_count": 1, "hourglass": {"_count": 1}}, "figures": {"_count": 1, "across": {"_count": 1}}, "glimmers": {"_count": 1, "of": {"_count": 1}}, "owl": {"_count": 6, "carrying": {"_count": 1}, "now": {"_count": 2}, "was": {"_count": 2}, "Pigwidgeon": {"_count": 1}}, "owls": {"_count": 1, "leg": {"_count": 1}}, "kitchen": {"_count": 3, "exploded": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "gray": {"_count": 1, "owl": {"_count": 1}}, "boy": {"_count": 1, "no": {"_count": 1}}, "models": {"_count": 1, "of": {"_count": 1}}, "creature": {"_count": 2, "sitting": {"_count": 1}, "looked": {"_count": 1}}, "table": {"_count": 1, "and": {"_count": 1}}, "limp": {"_count": 1, "figure": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "pop": {"_count": 3, "in": {"_count": 1}, "and": {"_count": 2}}, "perfect": {"_count": 1, "model": {"_count": 1}}, "model": {"_count": 1, "of": {"_count": 1}}, "fists": {"_count": 2, "upon": {"_count": 1}, "clenched": {"_count": 1}}, "print": {"_count": 1, "of": {"_count": 1}}, "egg": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "narrowed": {"_count": 1, "eyes": {"_count": 1}}, "lights": {"_count": 2, "might": {"_count": 1}, "burst": {"_count": 1}}, "needle": {"_count": 1, "sharp": {"_count": 1}}, "particle": {"_count": 1, "of": {"_count": 1}}, "pixieish": {"_count": 1, "creatures": {"_count": 1}}, "animal": {"_count": 1, "bones": {"_count": 1}}, "fluttering": {"_count": 3, "golden": {"_count": 1}, "Golden": {"_count": 1}, "ball": {"_count": 1}}, "note": {"_count": 1, "on": {"_count": 1}}, "dots": {"_count": 1, "anxiously": {"_count": 1}}, "struggling": {"_count": 1, "ball": {"_count": 1}}, "detail": {"_count": 2, "within": {"_count": 1}, "of": {"_count": 1}}, "puffs": {"_count": 1, "became": {"_count": 1}}, "nod": {"_count": 1, "beckoned": {"_count": 1}}, "wink": {"_count": 1, "walked": {"_count": 1}}, "fluctuations": {"_count": 1, "in": {"_count": 1}}, "human": {"_count": 1, "accidents": {"_count": 1}}, "arm": {"_count": 1, "and": {"_count": 1}}, "cough": {"_count": 1, "as": {"_count": 1}}, "click": {"_count": 1, "and": {"_count": 1}}, "sigh": {"_count": 1, "": {"_count": 1}}, "stooped": {"_count": 1, "witch": {"_count": 1}}, "but": {"_count": 1, "sharply": {"_count": 1}}, "threads": {"_count": 1, "of": {"_count": 1}}, "outline": {"_count": 1, "of": {"_count": 1}}, "scuffing": {"_count": 1, "sound": {"_count": 1}}, "jewelbright": {"_count": 1, "egg": {"_count": 1}}, "babys": {"_count": 1, "head": {"_count": 1}}, "oh": {"_count": 1, "": {"_count": 1}}, "baby": {"_count": 2, "Fawkes": {"_count": 1}, "with": {"_count": 1}}, "gold": {"_count": 1, "statues": {"_count": 1}}, "ugly": {"_count": 1, "featherless": {"_count": 1}}, "pieces": {"_count": 1, "against": {"_count": 1}}, "part": {"_count": 4, "of": {"_count": 3}, "was": {"_count": 1}}, "patch": {"_count": 2, "under": {"_count": 1}, "of": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "frown": {"_count": 1, "momentarily": {"_count": 1}}, "moving": {"_count": 2, "occupants": {"_count": 1}, "stars": {"_count": 1}}, "bit": {"_count": 1, "late": {"_count": 1}}, "fist": {"_count": 1, "on": {"_count": 1}}, "twinge": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "thick": {"_count": 1}}, "rooms": {"_count": 1, "": {"_count": 1}}, "shriek": {"_count": 1, "and": {"_count": 1}}, "hole": {"_count": 1, "in": {"_count": 1}}, "starlike": {"_count": 1, "diamonds": {"_count": 1}}, "labeled": {"_count": 2, "black": {"_count": 1}, "dot": {"_count": 1}}, "crystal": {"_count": 1, "bottles": {"_count": 1}}, "elf": {"_count": 2, "was": {"_count": 1}, "trotted": {"_count": 1}}, "thing": {"_count": 1, "the": {"_count": 1}}, "gleaming": {"_count": 1, "bottle": {"_count": 1}}, "glass": {"_count": 1, "bottle": {"_count": 1}}, "jerk": {"_count": 2, "of": {"_count": 2}}, "boat": {"_count": 2, "broke": {"_count": 1}, "this": {"_count": 1}}, "announcement": {"_count": 1, "about": {"_count": 1}}, "flick": {"_count": 1, "": {"_count": 1}}, "scullery": {"_count": 1, "off": {"_count": 1}}, "attic": {"_count": 1, "space": {"_count": 1}}, "wing": {"_count": 1, "": {"_count": 1}}, "walnutsized": {"_count": 1, "golden": {"_count": 1}}, "broom": {"_count": 1, "roaring": {"_count": 1}}, "half": {"_count": 1, "humansized": {"_count": 1}}, "bewitched": {"_count": 1, "so": {"_count": 1}}, "number": {"_count": 1, "of": {"_count": 1}}, "bag": {"_count": 1, "within": {"_count": 1}}, "alleyway": {"_count": 1, "where": {"_count": 1}}, "wispy": {"_count": 1, "beard": {"_count": 1}}, "beaded": {"_count": 2, "bag": {"_count": 2}}, "metal": {"_count": 1, "heart": {"_count": 1}}, "heartbeat": {"_count": 1, "ticking": {"_count": 1}}, "nervous": {"_count": 1, "nod": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "movements": {"_count": 1, "from": {"_count": 1}}, "movement": {"_count": 1, "seemed": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}, "speaker": {"_count": 1, "from": {"_count": 1}}, "suns": {"_count": 1, "flooding": {"_count": 1}}, "merciful": {"_count": 1, "impulse": {"_count": 1}}, "body": {"_count": 2, "curled": {"_count": 1}, "and": {"_count": 1}}, "limbs": {"_count": 1, "so": {"_count": 1}}, "cottage": {"_count": 1, "or": {"_count": 1}}, "backyard": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 1, "dot": {"_count": 1}}, "words": {"_count": 2, "etched": {"_count": 2}}, "spikes": {"_count": 1, "erupting": {"_count": 1}}, "gap": {"_count": 1, "left": {"_count": 1}}, "crack": {"_count": 1, "between": {"_count": 1}}, "groan": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "death": {"_count": 1}}, "faces": {"_count": 1, "alive": {"_count": 1}}}, "old": {"_count": 685, "man": {"_count": 35, "stumbled": {"_count": 1}, "hugged": {"_count": 1}, "came": {"_count": 1}, "was": {"_count": 2}, "who": {"_count": 2}, "been": {"_count": 1}, "Harry": {"_count": 3}, "he": {"_count": 2}, "": {"_count": 6}, "said": {"_count": 1}, "Bertha": {"_count": 1}, "with": {"_count": 1}, "Albus": {"_count": 1}, "whos": {"_count": 1}, "indifferently": {"_count": 1}, "revolving": {"_count": 1}, "for": {"_count": 1}, "lying": {"_count": 1}, "on": {"_count": 1}, "brandishing": {"_count": 1}, "wearing": {"_count": 1}, "avoid": {"_count": 1}, "still": {"_count": 1}, "much": {"_count": 1}, "and": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "clothes": {"_count": 3, "of": {"_count": 1}, "and": {"_count": 2}}, "lady": {"_count": 7, "who": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "wearing": {"_count": 1}, "Tom": {"_count": 1}, "shook": {"_count": 1}, "proudly": {"_count": 1}}, "sweater": {"_count": 1, "of": {"_count": 1}}, "woman": {"_count": 10, "dressed": {"_count": 1}, "with": {"_count": 1}, "sigh": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}, "greeted": {"_count": 1}, "showed": {"_count": 1}, "like": {"_count": 1}, "by": {"_count": 1}}, "Mrs": {"_count": 1, "Figg": {"_count": 1}}, "private": {"_count": 1, "school": {"_count": 1}}, "things": {"_count": 1, "gray": {"_count": 1}}, "elephant": {"_count": 2, "skin": {"_count": 1}, "bothered": {"_count": 1}}, "porridge": {"_count": 1, "": {"_count": 1}}, "socks": {"_count": 5, "": {"_count": 2}, "and": {"_count": 2}, "which": {"_count": 1}}, "rowboat": {"_count": 1, "bobbing": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 11}, "?": {"_count": 1}}, "tosh": {"_count": 1, "said": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "women": {"_count": 1, "were": {"_count": 1}}, "bartender": {"_count": 2, "who": {"_count": 1}, "Harry": {"_count": 1}}, "wizarding": {"_count": 3, "families": {"_count": 2}, "family": {"_count": 1}}, "enough": {"_count": 6, "Ginny": {"_count": 1}, "to": {"_count": 4}, "": {"_count": 1}}, "robes": {"_count": 7, "Charlies": {"_count": 1}, "which": {"_count": 1}, "were": {"_count": 1}, "fit": {"_count": 1}, "that": {"_count": 1}, "Kreacher": {"_count": 1}, "they": {"_count": 1}}, "wand": {"_count": 5, "and": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "indeed": {"_count": 1}}, "rat": {"_count": 3, "": {"_count": 1}, "Scabbers": {"_count": 2}}, "House": {"_count": 1, "you": {"_count": 1}}, "Ravenclaw": {"_count": 1, "If": {"_count": 1}}, "school": {"_count": 11, "": {"_count": 1}, "friends": {"_count": 3}, "wand": {"_count": 1}, "Sorting": {"_count": 1}, "things": {"_count": 1}, "brooms": {"_count": 1}, "records": {"_count": 1}, "Tom": {"_count": 1}, "textbook": {"_count": 1}}, "and": {"_count": 19, "bald": {"_count": 1}, "some": {"_count": 1}, "battered": {"_count": 1}, "valuable": {"_count": 1}, "eviltempered": {"_count": 1}, "Arthur": {"_count": 1}, "rather": {"_count": 1}, "thin": {"_count": 1}, "weary": {"_count": 1}, "losing": {"_count": 1}, "new": {"_count": 1}, "clever": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 1}, "dirty": {"_count": 1}, "mismatched": {"_count": 1}, "confused": {"_count": 1}, "young": {"_count": 1}, "already": {"_count": 1}}, "indeed": {"_count": 1, "when": {"_count": 1}}, "git": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "broom": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "broomstick": {"_count": 1, "he": {"_count": 1}}, "chessmen": {"_count": 1, "werent": {"_count": 1}}, "time": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "book": {"_count": 3, "in": {"_count": 2}, "shut": {"_count": 1}}, "Ron": {"_count": 2, "reminded": {"_count": 1}, "": {"_count": 1}}, "punishments": {"_count": 1, "die": {"_count": 1}}, "nightmare": {"_count": 3, "except": {"_count": 1}, "now": {"_count": 1}, "for": {"_count": 1}}, "wizards": {"_count": 1, "whod": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}, "Peevsie": {"_count": 1, "his": {"_count": 1}}, "mans": {"_count": 7, "wheezing": {"_count": 1}, "heels": {"_count": 1}, "mistakes": {"_count": 1}, "mistake": {"_count": 2}, "digestive": {"_count": 1}, "eyes": {"_count": 1}}, "guard": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "pillowcase": {"_count": 3, "with": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "turquoise": {"_count": 1, "car": {"_count": 1}}, "Dobby": {"_count": 1, "was": {"_count": 1}}, "ghoul": {"_count": 2, "in": {"_count": 1}, "lurking": {"_count": 1}}, "manors": {"_count": 1, "and": {"_count": 1}}, "witch": {"_count": 6, "died": {"_count": 1}, "in": {"_count": 1}, "wearing": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "living": {"_count": 1}}, "warlock": {"_count": 3, "called": {"_count": 1}, "from": {"_count": 1}, "onto": {"_count": 1}}, "radio": {"_count": 1, "next": {"_count": 1}}, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}, "car": {"_count": 2, "and": {"_count": 1}, "flying": {"_count": 1}}, "Shooting": {"_count": 1, "Star": {"_count": 1}}, "wooden": {"_count": 1, "street": {"_count": 1}}, "cloaks": {"_count": 1, "covered": {"_count": 1}}, "very": {"_count": 2, "battered": {"_count": 1}, "rich": {"_count": 1}}, "Transfiguration": {"_count": 2, "book": {"_count": 2}}, "Ford": {"_count": 3, "Anglia": {"_count": 3}}, "hat": {"_count": 3, "patched": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "dormitory": {"_count": 1, "which": {"_count": 1}}, "Professor": {"_count": 2, "Flitwick": {"_count": 1}, "by": {"_count": 1}}, "Two": {"_count": 1, "Thousand": {"_count": 1}}, "Cleansweeps": {"_count": 1, "he": {"_count": 1}}, "vacuum": {"_count": 1, "cleaner": {"_count": 1}}, "tortoise": {"_count": 1, "": {"_count": 1}}, "loony": {"_count": 1, "Ron": {"_count": 1}}, "mirror": {"_count": 1, "and": {"_count": 1}}, "cauldron": {"_count": 1, "was": {"_count": 1}}, "Draco": {"_count": 1, "how": {"_count": 1}}, "headmasters": {"_count": 7, "and": {"_count": 5}, "in": {"_count": 1}, "face": {"_count": 1}}, "one": {"_count": 3, "": {"_count": 1}, "ages": {"_count": 1}, "said": {"_count": 1}}, "Dumbledores": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Ron": {"_count": 1}}, "Medal": {"_count": 1, "for": {"_count": 1}}, "Head": {"_count": 1, "Boys": {"_count": 1}}, "dog": {"_count": 2, "": {"_count": 2}}, "wizard": {"_count": 10, "in": {"_count": 1}, "squinted": {"_count": 1}, "who": {"_count": 1}, "stubbornly": {"_count": 1}, "with": {"_count": 2}, "whom": {"_count": 1}, "sympathetically": {"_count": 1}, "gently": {"_count": 1}, "sitting": {"_count": 1}}, "subjects": {"_count": 1, "or": {"_count": 1}}, "cloak": {"_count": 2, "out": {"_count": 1}, "Harry": {"_count": 1}}, "spider": {"_count": 1, "": {"_count": 1}}, "library": {"_count": 1, "book": {"_count": 1}}, "Armenian": {"_count": 1, "warlock": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "Armando": {"_count": 1, "Dippet": {"_count": 1}}, "without": {"_count": 1, "realizing": {"_count": 1}}, "Egyptian": {"_count": 1, "wizards": {"_count": 1}}, "Ripper": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 4, "no": {"_count": 1}, "Marvelous": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "is": {"_count": 2, "this": {"_count": 2}}, "dementor": {"_count": 1, "frighten": {"_count": 1}}, "always": {"_count": 1, "gave": {"_count": 1}}, "briefcase": {"_count": 1, "on": {"_count": 1}}, "teacher": {"_count": 2, "had": {"_count": 1}, "to": {"_count": 1}}, "mismatched": {"_count": 1, "chairs": {"_count": 1}}, "wardrobe": {"_count": 2, "where": {"_count": 1}, "a": {"_count": 1}}, "houseelf": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}}, "manic": {"_count": 1, "glint": {"_count": 1}}, "bulletin": {"_count": 1, "board": {"_count": 1}}, "chest": {"_count": 1, "of": {"_count": 1}}, "rabbit": {"_count": 1, "": {"_count": 1}}, "parchment": {"_count": 2, "": {"_count": 2}}, "bit": {"_count": 2, "of": {"_count": 2}}, "crones": {"_count": 1, "hump": {"_count": 1}}, "photograph": {"_count": 5, "": {"_count": 2}, "unaware": {"_count": 1}, "of": {"_count": 2}}, "Silver": {"_count": 1, "Arrows": {"_count": 1}}, "piece": {"_count": 3, "of": {"_count": 3}}, "fools": {"_count": 1, "and": {"_count": 1}}, "swagger": {"_count": 1, "over": {"_count": 1}}, "trunk": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 2, "this": {"_count": 1}, "you": {"_count": 1}}, "fraud": {"_count": 6, "": {"_count": 3}, "says": {"_count": 1}, "but": {"_count": 1}, "too": {"_count": 1}}, "pal": {"_count": 1, "o": {"_count": 1}}, "Committee": {"_count": 3, "member": {"_count": 3}}, "friend": {"_count": 10, "Black": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 2}, "growled": {"_count": 1}, "and": {"_count": 2}}, "place": {"_count": 2, "as": {"_count": 1}, "felt": {"_count": 1}}, "friends": {"_count": 4, "": {"_count": 2}, "But": {"_count": 1}, "apparently": {"_count": 1}}, "masters": {"_count": 4, "name": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "supporters": {"_count": 2, "": {"_count": 1}, "returned": {"_count": 1}}, "protector": {"_count": 1, "regained": {"_count": 1}}, "suitcase": {"_count": 2, "which": {"_count": 1}, "and": {"_count": 1}}, "house": {"_count": 6, "was": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}, "on": {"_count": 1}, "perhaps": {"_count": 1}, "with": {"_count": 1}}, "Franks": {"_count": 1, "devotion": {"_count": 1}}, "age": {"_count": 4, "": {"_count": 2}, "become": {"_count": 1}, "of": {"_count": 1}}, "key": {"_count": 2, "from": {"_count": 1}, "put": {"_count": 1}}, "Muggle": {"_count": 3, "standing": {"_count": 1}, "remedies": {"_count": 1}, "man": {"_count": 1}}, "scar": {"_count": 2, "on": {"_count": 2}}, "the": {"_count": 1, "night": {"_count": 1}}, "tables": {"_count": 2, "fly": {"_count": 1}, "": {"_count": 1}}, "pair": {"_count": 2, "of": {"_count": 2}}, "dear": {"_count": 1, "doing": {"_count": 1}}, "boot": {"_count": 3, "in": {"_count": 2}, "held": {"_count": 1}}, "newspaper": {"_count": 1, "an": {"_count": 1}}, "neighbor": {"_count": 2, "": {"_count": 1}, "came": {"_count": 1}}, "Archie": {"_count": 2, "in": {"_count": 2}}, "captain": {"_count": 1, "of": {"_count": 1}}, "Bertha": {"_count": 2, "": {"_count": 1}, "going": {"_count": 1}}, "Wasp": {"_count": 2, "robes": {"_count": 2}}, "owners": {"_count": 1, "the": {"_count": 1}}, "bloke": {"_count": 1, "down": {"_count": 1}}, "Winky": {"_count": 1, "back": {"_count": 1}}, "Dracos": {"_count": 1, "face": {"_count": 1}}, "rubber": {"_count": 1, "tire": {"_count": 1}}, "Rita": {"_count": 1, "would": {"_count": 1}}, "ruin": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "dirty": {"_count": 1, "patched": {"_count": 1}}, "they": {"_count": 1, "are": {"_count": 1}}, "poster": {"_count": 1, "of": {"_count": 1}}, "bat": {"_count": 4, "said": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "added": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "Divination": {"_count": 1, "standby": {"_count": 1}}, "Hogwarts": {"_count": 1, "he": {"_count": 1}}, "tailcoat": {"_count": 1, "in": {"_count": 1}}, "impatience": {"_count": 1, "": {"_count": 1}}, "Karkaroff": {"_count": 1, "and": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "codger": {"_count": 1, "if": {"_count": 1}}, "Crouch": {"_count": 2, "said": {"_count": 1}, "lost": {"_count": 1}}, "charm": {"_count": 1, "for": {"_count": 1}}, "Barty": {"_count": 2, "doing": {"_count": 1}, "Id": {"_count": 1}}, "dad": {"_count": 1, "have": {"_count": 1}}, "flannel": {"_count": 1, "dressing": {"_count": 1}}, "traveling": {"_count": 1, "cloak": {"_count": 1}}, "MadEyes": {"_count": 1, "obsessed": {"_count": 1}}, "an": {"_count": 1, "they": {"_count": 1}}, "rubbish": {"_count": 1, "": {"_count": 1}}, "Daily": {"_count": 1, "Prophets": {"_count": 1}}, "scandal": {"_count": 1, "and": {"_count": 1}}, "popularity": {"_count": 1, "by": {"_count": 1}}, "Snuffles": {"_count": 1, "said": {"_count": 1}}, "tramp": {"_count": 2, "he": {"_count": 1}, "called": {"_count": 1}}, "madman": {"_count": 1, "attacked": {"_count": 1}}, "ties": {"_count": 1, "of": {"_count": 1}}, "differences": {"_count": 2, "heres": {"_count": 1}, "and": {"_count": 1}}, "ivycovered": {"_count": 1, "house": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "probably": {"_count": 1}}, "cow": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "ways": {"_count": 2, "though": {"_count": 1}, "": {"_count": 1}}, "magic": {"_count": 1, "I": {"_count": 1}}, "body": {"_count": 3, "back": {"_count": 1}, "collapsing": {"_count": 1}, "was": {"_count": 1}}, "strength": {"_count": 1, "": {"_count": 1}}, "Auror": {"_count": 1, "Moody": {"_count": 1}}, "family": {"_count": 4, "donations": {"_count": 1}, "friend": {"_count": 1}, "heirloom": {"_count": 1}, "": {"_count": 1}}, "reports": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 2, "any": {"_count": 1}, "I": {"_count": 1}}, "crowd": {"_count": 2, "": {"_count": 2}}, "news": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "your": {"_count": 1}}, "catobsessed": {"_count": 1, "neighbor": {"_count": 1}}, "onetwo": {"_count": 2, "did": {"_count": 1}, "said": {"_count": 1}}, "tire": {"_count": 1, "": {"_count": 1}}, "slob": {"_count": 1, "": {"_count": 1}}, "Snapes": {"_count": 1, "been": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "hag": {"_count": 4, "shut": {"_count": 1}, "": {"_count": 1}, "like": {"_count": 1}, "be": {"_count": 1}}, "womans": {"_count": 2, "face": {"_count": 1}, "screeches": {"_count": 1}}, "mum": {"_count": 1, "yeah": {"_count": 1}}, "Figgy": {"_count": 1, "since": {"_count": 1}}, "days": {"_count": 1, "he": {"_count": 1}}, "Extendables": {"_count": 1, "did": {"_count": 1}}, "blood": {"_count": 1, "traitor": {"_count": 1}}, "Kreacher": {"_count": 2, "oh": {"_count": 1}, "what": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 2}}, "mother": {"_count": 1, "blasted": {"_count": 1}}, "to": {"_count": 1, "carry": {"_count": 1}}, "trousers": {"_count": 1, "last": {"_count": 1}}, "photographs": {"_count": 3, "in": {"_count": 1}, "even": {"_count": 1}, "maybe": {"_count": 1}}, "bomber": {"_count": 1, "jacket": {"_count": 1}}, "red": {"_count": 1, "telephone": {"_count": 1}}, "motorcycle": {"_count": 1, "": {"_count": 1}}, "toaster": {"_count": 1, "that": {"_count": 1}}, "Courtroom": {"_count": 1, "Ten": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "ones": {"_count": 1, "rusting": {"_count": 1}}, "Wizarding": {"_count": 1, "photograph": {"_count": 1}}, "carpet": {"_count": 1, "in": {"_count": 1}}, "when": {"_count": 3, "I": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}}, "Slytherin": {"_count": 1, "departed": {"_count": 1}}, "hands": {"_count": 1, "welcome": {"_count": 1}}, "habits": {"_count": 1, "will": {"_count": 1}}, "fool": {"_count": 2, "": {"_count": 1}, "imagined": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "rings": {"_count": 1, "": {"_count": 1}}, "toad": {"_count": 2, "or": {"_count": 1}, "comes": {"_count": 1}}, "armchair": {"_count": 4, "beside": {"_count": 1}, "and": {"_count": 2}, "frowning": {"_count": 1}}, "Gobstones": {"_count": 1, "empty": {"_count": 1}}, "log": {"_count": 1, "like": {"_count": 1}}, "Flitwick": {"_count": 1, "getting": {"_count": 1}}, "tribes": {"_count": 1, "fight": {"_count": 1}}, "gargoyle": {"_count": 1, "": {"_count": 1}}, "portraits": {"_count": 1, "hanging": {"_count": 1}}, "kettle": {"_count": 2, "which": {"_count": 1}, "lying": {"_count": 1}}, "wound": {"_count": 1, "had": {"_count": 1}}, "stooped": {"_count": 1, "wizard": {"_count": 1}}, "rag": {"_count": 2, "": {"_count": 1}, "strung": {"_count": 1}}, "blankets": {"_count": 2, "were": {"_count": 1}, "in": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "bloomers": {"_count": 1, "or": {"_count": 1}}, "Now": {"_count": 1, "do": {"_count": 1}}, "father": {"_count": 1, "": {"_count": 1}}, "Snivelly": {"_count": 1, "again": {"_count": 1}}, "Invisibility": {"_count": 2, "Cloak": {"_count": 2}}, "nags": {"_count": 1, "though": {"_count": 1}}, "Griselda": {"_count": 1, "Marchbanks": {"_count": 1}}, "voice": {"_count": 1, "no": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "arch": {"_count": 1, "": {"_count": 1}}, "bearded": {"_count": 1, "man": {"_count": 1}}, "curtain": {"_count": 1, "was": {"_count": 1}}, "mate": {"_count": 1, "Voldemort": {"_count": 1}}, "face": {"_count": 3, "shake": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "men": {"_count": 1, "are": {"_count": 1}}, "lion": {"_count": 1, "": {"_count": 1}}, "fishandchip": {"_count": 1, "wrappings": {"_count": 1}}, "railings": {"_count": 1, "separated": {"_count": 1}}, "black": {"_count": 1, "or": {"_count": 1}}, "followers": {"_count": 1, "thought": {"_count": 1}}, "underwear": {"_count": 1, "sweets": {"_count": 1}}, "war": {"_count": 1, "memorial": {"_count": 1}}, "colleague": {"_count": 2, "of": {"_count": 1}, "so": {"_count": 1}}, "colleagues": {"_count": 1, "house": {"_count": 1}}, "times": {"_count": 2, "sake": {"_count": 1}, "innit": {"_count": 1}}, "buffer": {"_count": 2, "like": {"_count": 1}, "in": {"_count": 1}}, "Wellington": {"_count": 2, "boots": {"_count": 2}}, "green": {"_count": 1, "dressing": {"_count": 1}}, "favorites": {"_count": 1, "he": {"_count": 1}}, "bottles": {"_count": 1, "stood": {"_count": 1}}, "hasbeen": {"_count": 1, "likes": {"_count": 1}}, "students": {"_count": 1, "welcome": {"_count": 1}}, "curses": {"_count": 1, "": {"_count": 1}}, "post": {"_count": 1, "of": {"_count": 1}}, "faces": {"_count": 1, "or": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "books": {"_count": 3, "here": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}}, "owner": {"_count": 1, "be": {"_count": 1}}, "textbook": {"_count": 1, "someones": {"_count": 1}}, "copy": {"_count": 3, "of": {"_count": 3}}, "trees": {"_count": 2, "ahead": {"_count": 1}, "that": {"_count": 1}}, "Sluggys": {"_count": 2, "compartment": {"_count": 1}, "favorites": {"_count": 1}}, "brilliance": {"_count": 1, "of": {"_count": 1}}, "tobacco": {"_count": 1, "and": {"_count": 1}}, "possessions": {"_count": 1, "": {"_count": 1}}, "halfblood": {"_count": 1, "has": {"_count": 1}}, "fashioned": {"_count": 3, "London": {"_count": 1}, "gas": {"_count": 1}, "printing": {"_count": 1}}, "darkhaired": {"_count": 1, "and": {"_count": 1}}, "cats": {"_count": 1, "the": {"_count": 1}}, "patched": {"_count": 1, "hat": {"_count": 1}}, "insecurities": {"_count": 1, "": {"_count": 1}}, "favorite": {"_count": 1, "Weasley": {"_count": 1}}, "student": {"_count": 1, "of": {"_count": 1}}, "prejudice": {"_count": 1, "": {"_count": 1}}, "Potions": {"_count": 4, "book": {"_count": 3}, "awards": {"_count": 1}}, "wine": {"_count": 1, "Harry": {"_count": 1}}, "records": {"_count": 1, "and": {"_count": 1}}, "mistress": {"_count": 2, "": {"_count": 2}}, "Hepzibah": {"_count": 1, "though": {"_count": 1}}, "she": {"_count": 2, "admitted": {"_count": 1}, "was": {"_count": 1}}, "teachers": {"_count": 1, "": {"_count": 1}}, "argument": {"_count": 1, "he": {"_count": 1}}, "tiled": {"_count": 1, "bathroom": {"_count": 1}}, "gramophone": {"_count": 1, "": {"_count": 1}}, "Aragog": {"_count": 1, "off": {"_count": 1}}, "tin": {"_count": 1, "cans": {"_count": 1}}, "potion": {"_count": 1, "bottles": {"_count": 1}}, "plan": {"_count": 1, "for": {"_count": 1}}, "wig": {"_count": 2, "and": {"_count": 2}}, "files": {"_count": 1, "said": {"_count": 1}}, "Prophets": {"_count": 2, "up": {"_count": 1}, "and": {"_count": 1}}, "classroom": {"_count": 1, "and": {"_count": 1}}, "quills": {"_count": 2, "desiccated": {"_count": 1}, "outof": {"_count": 1}}, "badge": {"_count": 1, "that": {"_count": 1}}, "rucksack": {"_count": 1, "": {"_count": 1}}, "Dodgy": {"_count": 1, "Doge": {"_count": 1}}, "life": {"_count": 1, "Hagrid": {"_count": 1}}, "camp": {"_count": 1, "bed": {"_count": 1}}, "with": {"_count": 1, "waistlength": {"_count": 1}}, "room": {"_count": 1, "and": {"_count": 1}}, "Snitch": {"_count": 6, "": {"_count": 1}, "and": {"_count": 2}, "what": {"_count": 1}, "through": {"_count": 1}, "on": {"_count": 1}}, "kids": {"_count": 1, "stories": {"_count": 1}}, "stories": {"_count": 1, "came": {"_count": 1}}, "Ministry": {"_count": 1, "colleague": {"_count": 1}}, "couple": {"_count": 1, "fell": {"_count": 1}}, "Uncle": {"_count": 1, "Bilius": {"_count": 1}}, "Bathilda": {"_count": 2, "Bagshot": {"_count": 1}, "who": {"_count": 1}}, "scandals": {"_count": 1, "seemed": {"_count": 1}}, "wanted": {"_count": 1, "posters": {"_count": 1}}, "jeans": {"_count": 1, "theyre": {"_count": 1}}, "Dusty": {"_count": 1, "said": {"_count": 1}}, "gas": {"_count": 1, "lamps": {"_count": 1}}, "tapestry": {"_count": 1, "of": {"_count": 1}}, "edition": {"_count": 1, "of": {"_count": 1}}, "thing": {"_count": 1, "with": {"_count": 1}}, "Master": {"_count": 1, "Regulus": {"_count": 1}}, "elf": {"_count": 2, "rocked": {"_count": 1}, "and": {"_count": 1}}, "pureblood": {"_count": 1, "line": {"_count": 1}}, "heros": {"_count": 1, "death": {"_count": 1}}, "new": {"_count": 1, "skin": {"_count": 1}}, "wandmaker": {"_count": 1, "": {"_count": 1}}, "armchairs": {"_count": 1, "feeling": {"_count": 1}}, "again": {"_count": 1, "the": {"_count": 1}}, "highsecurity": {"_count": 1, "vaults": {"_count": 1}}, "decree": {"_count": 1, "forbidding": {"_count": 1}}, "self": {"_count": 1, "than": {"_count": 1}}, "pictures": {"_count": 1, "of": {"_count": 1}}, "headstones": {"_count": 1, "every": {"_count": 1}}, "weathered": {"_count": 1, "so": {"_count": 1}}, "grave": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "even": {"_count": 1, "Durmstrang": {"_count": 1}}, "cushion": {"_count": 1, "into": {"_count": 1}}, "shelves": {"_count": 1, "but": {"_count": 1}}, "wart": {"_count": 1, "said": {"_count": 1}}, "hypocrite": {"_count": 1, "telling": {"_count": 1}}, "or": {"_count": 1, "them": {"_count": 1}}, "his": {"_count": 1, "lips": {"_count": 1}}, "bleeder": {"_count": 1, "": {"_count": 1}}, "nail": {"_count": 1, "we": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "yew": {"_count": 1, "wand": {"_count": 1}}, "tent": {"_count": 1, "on": {"_count": 1}}, "goblin": {"_count": 6, "who": {"_count": 1}, "seemed": {"_count": 1}, "and": {"_count": 1}, "behind": {"_count": 1}, "hopping": {"_count": 1}, "obeyed": {"_count": 1}}, "clients": {"_count": 1, "": {"_count": 1}}, "unease": {"_count": 1, "flickered": {"_count": 1}}, "cat": {"_count": 1, "is": {"_count": 1}}, "berk": {"_count": 1, "muttered": {"_count": 1}}, "secret": {"_count": 1, "passageways": {"_count": 1}}, "girlfriend": {"_count": 1, "Cho": {"_count": 1}}, "besom": {"_count": 1, "": {"_count": 1}}, "tartan": {"_count": 1, "dressing": {"_count": 1}}, "Quidditch": {"_count": 1, "team": {"_count": 1}}, "tiara": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "cupboard": {"_count": 1, "in": {"_count": 1}}, "furniture": {"_count": 1, "of": {"_count": 1}}, "discolored": {"_count": 1, "tiara": {"_count": 1}}, "tree": {"_count": 1, "that": {"_count": 1}}, "crate": {"_count": 1, "": {"_count": 1}}, "sallow": {"_count": 1, "small": {"_count": 1}}, "bedroom": {"_count": 1, "": {"_count": 1}}, "letter": {"_count": 1, "from": {"_count": 1}}, "perfect": {"_count": 1, "in": {"_count": 1}}, "waxwork": {"_count": 1, "": {"_count": 1}}, "watch": {"_count": 1, "that": {"_count": 1}}}, "stumbled": {"_count": 31, "and": {"_count": 6, "almost": {"_count": 1}, "his": {"_count": 1}, "faltered": {"_count": 1}, "fell": {"_count": 1}, "was": {"_count": 1}, "slipped": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "backward": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "to": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "but": {"_count": 1, "everything": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "forward": {"_count": 3, "and": {"_count": 2}, "forcing": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 1}, "stone": {"_count": 1}}, "back": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "across": {"_count": 2, "the": {"_count": 2}}, "one": {"_count": 1, "or": {"_count": 1}}, "There": {"_count": 1, "were": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}}, "seconds": {"_count": 181, "before": {"_count": 21, "Mr": {"_count": 1}, "he": {"_count": 4}, "that": {"_count": 1}, "Harry": {"_count": 2}, "falling": {"_count": 1}, "turning": {"_count": 1}, "": {"_count": 3}, "it": {"_count": 2}, "Harrys": {"_count": 1}, "responding": {"_count": 1}, "accepting": {"_count": 1}, "there": {"_count": 1}, "shooting": {"_count": 1}, "Voldemort": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 17}, "?": {"_count": 1}}, "and": {"_count": 7, "then": {"_count": 4}, "Id": {"_count": 1}, "incorporates": {"_count": 1}, "he": {"_count": 1}}, "there": {"_count": 3, "was": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}}, "later": {"_count": 24, "": {"_count": 3}, "they": {"_count": 3}, "Harry": {"_count": 1}, "footsteps": {"_count": 1}, "however": {"_count": 1}, "Hermione": {"_count": 1}, "turned": {"_count": 1}, "she": {"_count": 2}, "and": {"_count": 2}, "the": {"_count": 1}, "Luna": {"_count": 1}, "that": {"_count": 1}, "demanding": {"_count": 1}, "squashed": {"_count": 1}, "back": {"_count": 1}, "Harrys": {"_count": 2}, "there": {"_count": 1}}, "the": {"_count": 9, "whole": {"_count": 2}, "sound": {"_count": 1}, "two": {"_count": 1}, "Snitch": {"_count": 1}, "tip": {"_count": 1}, "tiny": {"_count": 1}, "head": {"_count": 1}, "blue": {"_count": 1}}, "for": {"_count": 2, "Snape": {"_count": 1}, "the": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "silence": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 14, "had": {"_count": 5}, "didnt": {"_count": 1}, "chanced": {"_count": 1}, "and": {"_count": 1}, "whispered": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 1}, "has": {"_count": 1}, "realized": {"_count": 1}, "looked": {"_count": 1}}, "then": {"_count": 12, "remembering": {"_count": 1}, "picked": {"_count": 1}, "said": {"_count": 2}, "Aunt": {"_count": 1}, "looked": {"_count": 1}, "raked": {"_count": 1}, "several": {"_count": 1}, "folded": {"_count": 1}, "became": {"_count": 1}, "walked": {"_count": 1}, "removed": {"_count": 1}}, "they": {"_count": 6, "didnt": {"_count": 1}, "struggled": {"_count": 1}, "stared": {"_count": 1}, "heard": {"_count": 1}, "looked": {"_count": 1}, "were": {"_count": 1}}, "Harry": {"_count": 6, "straightened": {"_count": 1}, "dared": {"_count": 1}, "could": {"_count": 1}, "realized": {"_count": 1}, "heard": {"_count": 1}, "pointed": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 1, "caught": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}, "lengthened": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Frank": {"_count": 1, "could": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 2}, "he": {"_count": 1}}, "Crouch": {"_count": 1, "remained": {"_count": 1}}, "pause": {"_count": 1, "then": {"_count": 1}}, "pain": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Mrs": {"_count": 1, "Figg": {"_count": 1}}, "ringing": {"_count": 1, "silence": {"_count": 1}}, "longer": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "bitten": {"_count": 1}}, "a": {"_count": 5, "witch": {"_count": 1}, "complete": {"_count": 1}, "small": {"_count": 2}, "vision": {"_count": 1}}, "not": {"_count": 1, "bad": {"_count": 1}}, "to": {"_count": 5, "check": {"_count": 1}, "ensure": {"_count": 1}, "recognize": {"_count": 1}, "spare": {"_count": 1}, "become": {"_count": 1}}, "Malfoy": {"_count": 1, "was": {"_count": 1}}, "Harrys": {"_count": 1, "fingers": {"_count": 1}}, "reminiscence": {"_count": 1, "before": {"_count": 1}}, "swishing": {"_count": 1, "its": {"_count": 1}}, "after": {"_count": 1, "it": {"_count": 1}}, "hey": {"_count": 1, "Hagrid": {"_count": 1}}, "start": {"_count": 1, "then": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 3, "frantic": {"_count": 1}, "course": {"_count": 1}, "darkness": {"_count": 1}}, "Buckbeak": {"_count": 1, "sank": {"_count": 1}}, "Katies": {"_count": 1, "piercing": {"_count": 1}}, "Riddle": {"_count": 1, "stopped": {"_count": 1}}, "warning": {"_count": 1, "he": {"_count": 1}}, "trickled": {"_count": 1, "past": {"_count": 1}}, "Dobby": {"_count": 1, "struggled": {"_count": 1}}, "relief": {"_count": 2, "and": {"_count": 1}, "however": {"_count": 1}}, "late": {"_count": 1, "in": {"_count": 1}}, "stood": {"_count": 1, "before": {"_count": 1}}, "Hermione": {"_count": 1, "interjected": {"_count": 1}}, "passed": {"_count": 1, "then": {"_count": 1}}, "hesitation": {"_count": 1, "was": {"_count": 1}}}, "before": {"_count": 1391, "Mr": {"_count": 2, "Dursley": {"_count": 1}, "and": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 179, "fell": {"_count": 3}, "can": {"_count": 1}, "had": {"_count": 17}, "collapsed": {"_count": 2}, "visited": {"_count": 1}, "could": {"_count": 56}, "went": {"_count": 6}, "goes": {"_count": 1}, "met": {"_count": 2}, "died": {"_count": 5}, "noticed": {"_count": 2}, "let": {"_count": 1}, "remembered": {"_count": 3}, "was": {"_count": 7}, "finished": {"_count": 1}, "knew": {"_count": 4}, "said": {"_count": 3}, "changed": {"_count": 1}, "entered": {"_count": 1}, "got": {"_count": 1}, "murdered": {"_count": 1}, "killed": {"_count": 2}, "has": {"_count": 3}, "transformed": {"_count": 1}, "trusted": {"_count": 1}, "lost": {"_count": 2}, "hit": {"_count": 1}, "started": {"_count": 3}, "realized": {"_count": 9}, "finishes": {"_count": 1}, "put": {"_count": 1}, "woke": {"_count": 1}, "chose": {"_count": 1}, "faced": {"_count": 1}, "spoke": {"_count": 3}, "sees": {"_count": 1}, "gets": {"_count": 3}, "saw": {"_count": 2}, "reached": {"_count": 1}, "did": {"_count": 1}, "slept": {"_count": 1}, "cracks": {"_count": 1}, "returned": {"_count": 2}, "committed": {"_count": 1}, "became": {"_count": 1}, "smiled": {"_count": 1}, "found": {"_count": 2}, "came": {"_count": 1}, "opened": {"_count": 1}, "felt": {"_count": 1}, "would": {"_count": 1}, "and": {"_count": 1}, "caught": {"_count": 1}, "joined": {"_count": 1}, "took": {"_count": 1}, "turned": {"_count": 1}, "does": {"_count": 1}, "realizes": {"_count": 1}, "even": {"_count": 1}, "betrayed": {"_count": 1}}, "the": {"_count": 116, "cat": {"_count": 1}, "Muggles": {"_count": 1}, "hat": {"_count": 2}, "whistle": {"_count": 1}, "other": {"_count": 4}, "holidays": {"_count": 6}, "exams": {"_count": 3}, "plant": {"_count": 1}, "news": {"_count": 1}, "soup": {"_count": 1}, "newcomers": {"_count": 1}, "dwarf": {"_count": 1}, "ink": {"_count": 1}, "Basilisk": {"_count": 1}, "Ministry": {"_count": 5}, "match": {"_count": 5}, "end": {"_count": 10}, "Ravenclaw": {"_count": 1}, "curtains": {"_count": 1}, "thing": {"_count": 1}, "Quidditch": {"_count": 2}, "fire": {"_count": 3}, "sun": {"_count": 1}, "rest": {"_count": 2}, "great": {"_count": 1}, "first": {"_count": 4}, "bell": {"_count": 1}, "Welcoming": {"_count": 1}, "tournament": {"_count": 1}, "noise": {"_count": 1}, "judges": {"_count": 1}, "second": {"_count": 2}, "Dark": {"_count": 2}, "Easter": {"_count": 1}, "Council": {"_count": 1}, "ropes": {"_count": 1}, "Dursleys": {"_count": 1}, "sound": {"_count": 2}, "startofterm": {"_count": 1}, "Sorting": {"_count": 1}, "final": {"_count": 1}, "truth": {"_count": 1}, "Fat": {"_count": 1}, "subject": {"_count": 1}, "crowd": {"_count": 1}, "three": {"_count": 1}, "door": {"_count": 1}, "hospital": {"_count": 1}, "heavily": {"_count": 1}, "whole": {"_count": 1}, "doors": {"_count": 1}, "common": {"_count": 1}, "grilles": {"_count": 1}, "fragments": {"_count": 1}, "Prime": {"_count": 1}, "train": {"_count": 1}, "flames": {"_count": 1}, "31st": {"_count": 1}, "man": {"_count": 1}, "words": {"_count": 1}, "funeral": {"_count": 1}, "boy": {"_count": 1}, "wedding": {"_count": 2}, "men": {"_count": 1}, "arrival": {"_count": 1}, "table": {"_count": 1}, "Triwizard": {"_count": 1}, "waitress": {"_count": 1}, "silver": {"_count": 1}, "golden": {"_count": 1}, "game": {"_count": 1}, "inner": {"_count": 1}, "start": {"_count": 1}, "Death": {"_count": 1}, "fight": {"_count": 1}, "creatures": {"_count": 1}, "latter": {"_count": 1}}, "": {"_count": 166, ".": {"_count": 147}, "!": {"_count": 7}, "?": {"_count": 12}}, "theyd": {"_count": 1, "left": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "they": {"_count": 48, "could": {"_count": 11}, "stopped": {"_count": 1}, "forgot": {"_count": 1}, "agreed": {"_count": 1}, "had": {"_count": 7}, "hit": {"_count": 1}, "were": {"_count": 5}, "start": {"_count": 1}, "left": {"_count": 4}, "concerned": {"_count": 1}, "all": {"_count": 2}, "even": {"_count": 1}, "gave": {"_count": 1}, "vanished": {"_count": 1}, "noticed": {"_count": 1}, "are": {"_count": 2}, "entered": {"_count": 1}, "actually": {"_count": 1}, "arrived": {"_count": 1}, "killed": {"_count": 1}, "stop": {"_count": 1}, "spoke": {"_count": 1}, "did": {"_count": 1}}, "starting": {"_count": 5, "on": {"_count": 1}, "to": {"_count": 2}, "my": {"_count": 1}, "the": {"_count": 1}}, "Dudley": {"_count": 1, "could": {"_count": 1}}, "his": {"_count": 23, "eyes": {"_count": 9}, "time": {"_count": 1}, "hippogriff": {"_count": 1}, "uncle": {"_count": 1}, "parents": {"_count": 1}, "insides": {"_count": 1}, "front": {"_count": 1}, "return": {"_count": 1}, "shift": {"_count": 1}, "arrest": {"_count": 1}, "exams": {"_count": 1}, "mysterious": {"_count": 1}, "seventeenth": {"_count": 1}, "encouraging": {"_count": 1}, "first": {"_count": 1}}, "and": {"_count": 25, "he": {"_count": 4}, "read": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}, "Fudge": {"_count": 1}, "Dumbledores": {"_count": 1}, "had": {"_count": 1}, "it": {"_count": 2}, "panting": {"_count": 1}, "kissed": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 2}, "for": {"_count": 1}, "I": {"_count": 1}, "bowed": {"_count": 1}, "Harry": {"_count": 2}, "much": {"_count": 1}, "who": {"_count": 1}, "after": {"_count": 1}}, "windows": {"_count": 1, "stacked": {"_count": 1}}, "Harry": {"_count": 57, "could": {"_count": 27}, "became": {"_count": 3}, "had": {"_count": 10}, "realized": {"_count": 1}, "started": {"_count": 1}, "understood": {"_count": 1}, "remembered": {"_count": 2}, "or": {"_count": 1}, "wearing": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 1}, "noticed": {"_count": 1}, "was": {"_count": 1}, "does": {"_count": 1}, "out": {"_count": 1}, "felt": {"_count": 1}, "in": {"_count": 1}, "knew": {"_count": 1}}, "yeh": {"_count": 1, "get": {"_count": 1}}, "them": {"_count": 23, "his": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}, "came": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 7}, "filled": {"_count": 1}, "all": {"_count": 2}, "but": {"_count": 1}, "grunted": {"_count": 1}, "wearing": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "clattered": {"_count": 1}, "two": {"_count": 1}}, "yer": {"_count": 1, "train": {"_count": 1}}, "Ron": {"_count": 7, "": {"_count": 1}, "could": {"_count": 3}, "keep": {"_count": 1}, "said": {"_count": 1}, "who": {"_count": 1}}, "or": {"_count": 1, "indeed": {"_count": 1}}, "hed": {"_count": 13, "so": {"_count": 1}, "got": {"_count": 1}, "gone": {"_count": 1}, "stopped": {"_count": 1}, "even": {"_count": 3}, "lost": {"_count": 1}, "see": {"_count": 1}, "thought": {"_count": 1}, "reached": {"_count": 1}, "walked": {"_count": 1}, "experienced": {"_count": 1}}, "we": {"_count": 38, "even": {"_count": 1}, "go": {"_count": 4}, "find": {"_count": 1}, "sink": {"_count": 1}, "actually": {"_count": 1}, "begin": {"_count": 2}, "change": {"_count": 1}, "try": {"_count": 1}, "retire": {"_count": 1}, "bring": {"_count": 1}, "start": {"_count": 2}, "give": {"_count": 1}, "got": {"_count": 1}, "pronounce": {"_count": 1}, "let": {"_count": 2}, "came": {"_count": 1}, "wen": {"_count": 1}, "took": {"_count": 1}, "could": {"_count": 1}, "have": {"_count": 1}, "part": {"_count": 4}, "do": {"_count": 1}, "know": {"_count": 1}, "talk": {"_count": 1}, "can": {"_count": 1}, "left": {"_count": 1}, "hear": {"_count": 1}, "summon": {"_count": 1}, "reached": {"_count": 1}}, "you": {"_count": 42, "take": {"_count": 2}, "can": {"_count": 2}, "have": {"_count": 2}, "got": {"_count": 1}, "while": {"_count": 1}, "did": {"_count": 2}, "flagged": {"_count": 1}, "leave": {"_count": 1}, "become": {"_count": 1}, "hit": {"_count": 1}, "came": {"_count": 1}, "went": {"_count": 1}, "reach": {"_count": 1}, "left": {"_count": 1}, "go": {"_count": 3}, "drop": {"_count": 1}, "I": {"_count": 1}, "die": {"_count": 1}, "copies": {"_count": 1}, "Hem": {"_count": 1}, "start": {"_count": 1}, "chuck": {"_count": 1}, "know": {"_count": 1}, "get": {"_count": 2}, "read": {"_count": 1}, "you": {"_count": 1}, "were": {"_count": 2}, "seal": {"_count": 1}, "dived": {"_count": 1}, "follow": {"_count": 1}, "make": {"_count": 1}, "could": {"_count": 1}, "caught": {"_count": 1}, "try": {"_count": 1}}, "going": {"_count": 6, "off": {"_count": 1}, "down": {"_count": 1}, "home": {"_count": 1}, "up": {"_count": 2}, "hunting": {"_count": 1}}, "coming": {"_count": 3, "eh": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 37, "suppose": {"_count": 1}, "read": {"_count": 1}, "remembered": {"_count": 1}, "can": {"_count": 1}, "knew": {"_count": 1}, "caught": {"_count": 1}, "came": {"_count": 4}, "was": {"_count": 3}, "go": {"_count": 2}, "set": {"_count": 1}, "could": {"_count": 1}, "betrayed": {"_count": 1}, "Disapparate": {"_count": 1}, "put": {"_count": 1}, "heal": {"_count": 1}, "have": {"_count": 1}, "recognize": {"_count": 1}, "saw": {"_count": 1}, "forgive": {"_count": 1}, "turn": {"_count": 1}, "DID": {"_count": 1}, "left": {"_count": 2}, "just": {"_count": 1}, "decide": {"_count": 2}, "am": {"_count": 1}, "had": {"_count": 1}, "act": {"_count": 1}, "dont": {"_count": 1}, "He": {"_count": 1}}, "any": {"_count": 4, "of": {"_count": 3}, "more": {"_count": 1}}, "their": {"_count": 10, "first": {"_count": 2}, "very": {"_count": 2}, "general": {"_count": 1}, "eyes": {"_count": 2}, "other": {"_count": 1}, "afternoon": {"_count": 1}, "wands": {"_count": 1}}, "Harrys": {"_count": 8, "first": {"_count": 1}, "heart": {"_count": 1}, "mind": {"_count": 1}, "eyes": {"_count": 4}, "very": {"_count": 1}}, "Snape": {"_count": 9, "could": {"_count": 4}, "can": {"_count": 1}, "comes": {"_count": 1}, "saw": {"_count": 1}, "had": {"_count": 1}, "with": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "lunch": {"_count": 5, "we": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "shivering": {"_count": 1}, "Mrs": {"_count": 1}}, "were": {"_count": 2, "the": {"_count": 1}, "spotted": {"_count": 1}}, "bed": {"_count": 2, "except": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 35, "entranced": {"_count": 1}, "wears": {"_count": 1}, "closed": {"_count": 1}, "was": {"_count": 8}, "still": {"_count": 1}, "It": {"_count": 1}, "flipped": {"_count": 1}, "can": {"_count": 1}, "sped": {"_count": 1}, "opened": {"_count": 1}, "and": {"_count": 1}, "happened": {"_count": 1}, "is": {"_count": 3}, "had": {"_count": 1}, "landed": {"_count": 1}, "out": {"_count": 1}, "reached": {"_count": 1}, "gets": {"_count": 2}, "occurred": {"_count": 1}, "dived": {"_count": 1}, "even": {"_count": 1}, "slammed": {"_count": 1}, "could": {"_count": 1}, "realizes": {"_count": 1}, "did": {"_count": 1}}, "term": {"_count": 3, "started": {"_count": 2}, "starts": {"_count": 1}}, "she": {"_count": 21, "was": {"_count": 1}, "turned": {"_count": 1}, "hit": {"_count": 2}, "had": {"_count": 4}, "could": {"_count": 5}, "started": {"_count": 1}, "addressed": {"_count": 1}, "died": {"_count": 1}, "answered": {"_count": 1}, "ran": {"_count": 1}, "sent": {"_count": 1}, "got": {"_count": 1}, "eats": {"_count": 1}}, "shutting": {"_count": 1, "the": {"_count": 1}}, "pierced": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 15, "even": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 8}, "though": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "because": {"_count": 1}}, "but": {"_count": 12, "never": {"_count": 2}, "as": {"_count": 1}, "he": {"_count": 3}, "quite": {"_count": 1}, "when": {"_count": 1}, "his": {"_count": 1}, "enjoyed": {"_count": 1}, "said": {"_count": 1}, "Ive": {"_count": 1}}, "Hagrid": {"_count": 6, "lets": {"_count": 1}, "was": {"_count": 1}, "s": {"_count": 1}, "a": {"_count": 1}, "had": {"_count": 1}, "set": {"_count": 1}}, "then": {"_count": 3, "if": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "Quirrell": {"_count": 1, "does": {"_count": 1}}, "a": {"_count": 9, "high": {"_count": 1}, "large": {"_count": 3}, "Quidditch": {"_count": 1}, "heavily": {"_count": 1}, "threeweek": {"_count": 1}, "copy": {"_count": 1}, "stricken": {"_count": 1}}, "next": {"_count": 3, "year": {"_count": 1}, "Saturday": {"_count": 2}}, "Hell": {"_count": 1, "be": {"_count": 1}}, "turning": {"_count": 11, "to": {"_count": 2}, "in": {"_count": 2}, "his": {"_count": 2}, "and": {"_count": 2}, "away": {"_count": 1}, "immediately": {"_count": 1}, "back": {"_count": 1}}, "sweeping": {"_count": 2, "the": {"_count": 1}, "off": {"_count": 1}}, "helping": {"_count": 1, "himself": {"_count": 1}}, "greenhouse": {"_count": 1, "three": {"_count": 1}}, "Halloween": {"_count": 2, "returning": {"_count": 1}, "": {"_count": 1}}, "hes": {"_count": 1, "expelled": {"_count": 1}}, "Christmas": {"_count": 9, "": {"_count": 2}, "to": {"_count": 1}, "The": {"_count": 1}, "represented": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "oh": {"_count": 1}, "and": {"_count": 1}}, "alive": {"_count": 1, "or": {"_count": 1}}, "dinner": {"_count": 7, "": {"_count": 2}, "whispered": {"_count": 1}, "please": {"_count": 1}, "all": {"_count": 1}, "then": {"_count": 1}, "croaked": {"_count": 1}}, "You": {"_count": 1, "could": {"_count": 1}}, "Malfoy": {"_count": 3, "or": {"_count": 1}, "could": {"_count": 2}}, "had": {"_count": 7, "been": {"_count": 1}, "never": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}, "fallen": {"_count": 1}, "vanished": {"_count": 1}}, "my": {"_count": 1, "bones": {"_count": 1}}, "that": {"_count": 8, "kid": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "time": {"_count": 1}, "happy": {"_count": 1}, "their": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "eating": {"_count": 1, "Ron": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Hogwarts": {"_count": 1, "Dudley": {"_count": 1}}, "anyone": {"_count": 7, "else": {"_count": 4}, "could": {"_count": 3}}, "Saturdays": {"_count": 4, "match": {"_count": 4}}, "so": {"_count": 3, "that": {"_count": 1}, "if": {"_count": 1}, "he": {"_count": 1}}, "seizing": {"_count": 3, "the": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}}, "as": {"_count": 2, "there": {"_count": 1}, "a": {"_count": 1}}, "dark": {"_count": 1, "each": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "Lupin": {"_count": 1, "could": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "crack": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 2, "let": {"_count": 1}, "still": {"_count": 1}}, "ah": {"_count": 1, "the": {"_count": 1}}, "Potter": {"_count": 1, "interrupted": {"_count": 1}}, "nightfall": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 1, "Pettigrew": {"_count": 1}}, "was": {"_count": 3, "coursing": {"_count": 1}, "gazing": {"_count": 1}, "awaiting": {"_count": 1}}, "Hermione": {"_count": 14, "could": {"_count": 9}, "spoke": {"_count": 1}, "hurried": {"_count": 1}, "said": {"_count": 1}, "flew": {"_count": 1}, "s": {"_count": 1}}, "falling": {"_count": 1, "with": {"_count": 1}}, "pulling": {"_count": 1, "the": {"_count": 1}}, "He": {"_count": 1, "pulled": {"_count": 1}}, "takeoff": {"_count": 1, "and": {"_count": 1}}, "rising": {"_count": 1, "thirty": {"_count": 1}}, "Madam": {"_count": 1, "Hooch": {"_count": 1}}, "him": {"_count": 37, "Ravenclaw": {"_count": 1}, "like": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 14}, "all": {"_count": 1}, "and": {"_count": 5}, "life": {"_count": 1}, "paleskinned": {"_count": 1}, "so": {"_count": 1}, "refusing": {"_count": 1}, "took": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "stood": {"_count": 1}, "was": {"_count": 2}, "terrified": {"_count": 1}, "in": {"_count": 1}, "twenty": {"_count": 1}}, "speaking": {"_count": 4, "": {"_count": 4}}, "moving": {"_count": 1, "away": {"_count": 1}}, "midnight": {"_count": 4, "": {"_count": 3}, "Ill": {"_count": 1}}, "anybody": {"_count": 2, "realizes": {"_count": 1}, "elses": {"_count": 1}}, "Dumbledore": {"_count": 10, "locks": {"_count": 2}, "could": {"_count": 2}, "spoke": {"_count": 1}, "said": {"_count": 1}, "gave": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}, "died": {"_count": 1}}, "breakfast": {"_count": 4, "": {"_count": 1}, "every": {"_count": 1}, "next": {"_count": 1}, "on": {"_count": 1}}, "at": {"_count": 1, "daybreak": {"_count": 1}}, "Frank": {"_count": 1, "a": {"_count": 1}}, "flying": {"_count": 1, "off": {"_count": 1}}, "though": {"_count": 2, "he": {"_count": 2}}, "carpets": {"_count": 1, "were": {"_count": 1}}, "wed": {"_count": 1, "got": {"_count": 1}}, "leaving": {"_count": 5, "Privet": {"_count": 1}, "her": {"_count": 1}, "lessons": {"_count": 1}, "Hogwarts": {"_count": 1}, "the": {"_count": 1}}, "bidding": {"_count": 1, "them": {"_count": 1}}, "not": {"_count": 1, "sure": {"_count": 1}}, "life": {"_count": 1, "was": {"_count": 1}}, "particularly": {"_count": 1, "Moodys": {"_count": 1}}, "last": {"_count": 3, "": {"_count": 2}, "Sirius": {"_count": 1}}, "when": {"_count": 4, "he": {"_count": 1}, "Harry": {"_count": 1}, "Hannah": {"_count": 1}, "a": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "said": {"_count": 1}}, "lunchtime": {"_count": 1, "said": {"_count": 1}}, "realizing": {"_count": 3, "it": {"_count": 1}, "that": {"_count": 2}}, "who": {"_count": 1, "was": {"_count": 1}}, "havent": {"_count": 2, "you": {"_count": 2}}, "its": {"_count": 1, "charmer": {"_count": 1}}, "either": {"_count": 5, "of": {"_count": 2}, "Ron": {"_count": 1}, "wand": {"_count": 1}, "Harry": {"_count": 1}}, "managing": {"_count": 2, "to": {"_count": 2}}, "me": {"_count": 4, "and": {"_count": 2}, "Dumbledore": {"_count": 1}, "said": {"_count": 1}}, "her": {"_count": 5, "": {"_count": 2}, "with": {"_count": 1}, "untimely": {"_count": 1}, "drawing": {"_count": 1}}, "containing": {"_count": 1, "a": {"_count": 1}}, "someone": {"_count": 1, "else": {"_count": 1}}, "hastily": {"_count": 2, "changing": {"_count": 1}, "modified": {"_count": 1}}, "swimming": {"_count": 1, "back": {"_count": 1}}, "hoisting": {"_count": 1, "himself": {"_count": 1}}, "February": {"_count": 1, "the": {"_count": 1}}, "tying": {"_count": 1, "him": {"_count": 1}}, "this": {"_count": 4, "Ill": {"_count": 1}, "": {"_count": 2}, "it": {"_count": 1}}, "Voldemort": {"_count": 6, "fell": {"_count": 1}, "showed": {"_count": 1}, "moves": {"_count": 1}, "attempted": {"_count": 1}, "was": {"_count": 1}, "knew": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "Lord": {"_count": 1, "Voldemorts": {"_count": 1}}, "backing": {"_count": 1, "away": {"_count": 1}}, "others": {"_count": 1, "and": {"_count": 1}}, "continuing": {"_count": 3, "": {"_count": 2}, "Only": {"_count": 1}}, "chasing": {"_count": 1, "immortality": {"_count": 1}}, "killing": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}, "all": {"_count": 1}, "The": {"_count": 1}}, "Azkaban": {"_count": 1, "": {"_count": 1}}, "answering": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "flicking": {"_count": 1, "back": {"_count": 1}}, "long": {"_count": 8, "": {"_count": 5}, "and": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}}, "Uncle": {"_count": 2, "Vernons": {"_count": 1}, "Vernon": {"_count": 1}}, "throwing": {"_count": 1, "it": {"_count": 1}}, "setting": {"_count": 2, "off": {"_count": 2}}, "zooming": {"_count": 2, "into": {"_count": 1}, "out": {"_count": 1}}, "being": {"_count": 4, "unmasked": {"_count": 1}, "sent": {"_count": 1}, "knocked": {"_count": 1}, "consumed": {"_count": 1}}, "squeaked": {"_count": 1, "the": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "Moody": {"_count": 1, "limped": {"_count": 1}}, "holding": {"_count": 1, "him": {"_count": 1}}, "Mum": {"_count": 1, "realized": {"_count": 1}}, "getting": {"_count": 3, "to": {"_count": 1}, "back": {"_count": 1}, "into": {"_count": 1}}, "Sirius": {"_count": 1, "said": {"_count": 1}}, "returning": {"_count": 3, "to": {"_count": 3}}, "tapping": {"_count": 1, "it": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "each": {"_count": 1, "fireplace": {"_count": 1}}, "seven": {"_count": 1, "Mollys": {"_count": 1}}, "This": {"_count": 1, "was": {"_count": 1}}, "Muggles": {"_count": 1, "in": {"_count": 1}}, "talking": {"_count": 1, "less": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "clouds": {"_count": 1, "drifted": {"_count": 1}}, "always": {"_count": 1, "at": {"_count": 1}}, "stopping": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "everyone": {"_count": 2, "went": {"_count": 1}, "else": {"_count": 1}}, "Herbology": {"_count": 1, "": {"_count": 1}}, "exams": {"_count": 1, "she": {"_count": 1}}, "rounding": {"_count": 1, "on": {"_count": 1}}, "sinking": {"_count": 1, "as": {"_count": 1}}, "facing": {"_count": 2, "whatever": {"_count": 1}, "the": {"_count": 1}}, "considered": {"_count": 1, "the": {"_count": 1}}, "disappearing": {"_count": 1, "behind": {"_count": 1}}, "Cedric": {"_count": 1, "had": {"_count": 1}}, "training": {"_count": 1, "": {"_count": 1}}, "dawn": {"_count": 1, "he": {"_count": 1}}, "acting": {"_count": 1, "on": {"_count": 1}}, "adding": {"_count": 1, "her": {"_count": 1}}, "appreciated": {"_count": 2, "just": {"_count": 2}}, "has": {"_count": 1, "she": {"_count": 1}}, "would": {"_count": 1, "they": {"_count": 1}}, "conceding": {"_count": 1, "defeat": {"_count": 1}}, "Angelina": {"_count": 1, "came": {"_count": 1}}, "Alicia": {"_count": 1, "took": {"_count": 1}}, "Id": {"_count": 1, "opened": {"_count": 1}}, "clearing": {"_count": 1, "his": {"_count": 1}}, "beneath": {"_count": 1, "her": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "heard": {"_count": 1, "of": {"_count": 1}}, "issuing": {"_count": 1, "from": {"_count": 1}}, "sending": {"_count": 1, "you": {"_count": 1}}, "Umbridge": {"_count": 2, "could": {"_count": 2}}, "remembering": {"_count": 2, "that": {"_count": 1}, "his": {"_count": 1}}, "bedtime": {"_count": 1, "": {"_count": 1}}, "doing": {"_count": 1, "as": {"_count": 1}}, "sleep": {"_count": 1, "empty": {"_count": 1}}, "expressly": {"_count": 1, "forbidding": {"_count": 1}}, "Ancient": {"_count": 1, "Runes": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "Easter": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 1, "witnesses": {"_count": 1}}, "Fudges": {"_count": 1, "face": {"_count": 1}}, "sleeping": {"_count": 1, "so": {"_count": 1}}, "reaching": {"_count": 1, "the": {"_count": 1}}, "following": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "swept": {"_count": 1, "his": {"_count": 1}}, "Slytherin": {"_count": 1, "play": {"_count": 1}}, "Firenze": {"_count": 1, "left": {"_count": 1}}, "shes": {"_count": 1, "go": {"_count": 1}}, "heading": {"_count": 2, "back": {"_count": 1}, "down": {"_count": 1}}, "slamming": {"_count": 1, "the": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "your": {"_count": 1, "birth": {"_count": 1}}, "Malfoys": {"_count": 1, "fingers": {"_count": 1}}, "why": {"_count": 1, "had": {"_count": 1}}, "Siriuss": {"_count": 1, "death": {"_count": 1}}, "letting": {"_count": 2, "them": {"_count": 1}, "out": {"_count": 1}}, "Bella": {"_count": 1, "cursing": {"_count": 1}}, "night": {"_count": 1, "has": {"_count": 1}}, "there": {"_count": 8, "was": {"_count": 4}, "had": {"_count": 3}, "came": {"_count": 1}}, "impersonating": {"_count": 2, "myself": {"_count": 1}, "you": {"_count": 1}}, "It": {"_count": 2, "was": {"_count": 1}, "looked": {"_count": 1}}, "said": {"_count": 4, "Dumbledore": {"_count": 1}, "Harry": {"_count": 2}, "Hermione": {"_count": 1}}, "morning": {"_count": 1, "": {"_count": 1}}, "yesterday": {"_count": 1, "said": {"_count": 1}}, "people": {"_count": 1, "really": {"_count": 1}}, "saying": {"_count": 5, "curtly": {"_count": 1}, "it": {"_count": 1}, "slowly": {"_count": 1}, "Yes": {"_count": 1}, "Very": {"_count": 1}}, "Ogdens": {"_count": 1, "eyes": {"_count": 1}}, "Marvolo": {"_count": 1, "was": {"_count": 1}}, "seeing": {"_count": 1, "a": {"_count": 1}}, "much": {"_count": 1, "as": {"_count": 1}}, "landing": {"_count": 1, "squarely": {"_count": 1}}, "things": {"_count": 1, "got": {"_count": 1}}, "claimed": {"_count": 1, "he": {"_count": 1}}, "Charms": {"_count": 1, "next": {"_count": 1}}, "responding": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "reached": {"_count": 1}}, "peering": {"_count": 1, "more": {"_count": 1}}, "raising": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "striding": {"_count": 1, "off": {"_count": 1}}, "bending": {"_count": 1, "very": {"_count": 1}}, "walking": {"_count": 1, "down": {"_count": 1}}, "mounting": {"_count": 1, "his": {"_count": 1}}, "Filius": {"_count": 1, "told": {"_count": 1}}, "excited": {"_count": 1, "curious": {"_count": 1}}, "arriving": {"_count": 1, "at": {"_count": 1}}, "pursuing": {"_count": 1, "our": {"_count": 1}}, "anybodys": {"_count": 1, "bought": {"_count": 1}}, "Disapparating": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "Witches": {"_count": 1, "and": {"_count": 1}}, "accepting": {"_count": 1, "that": {"_count": 1}}, "mumbling": {"_count": 1, "You": {"_count": 1}}, "catching": {"_count": 1, "sight": {"_count": 1}}, "pouring": {"_count": 1, "a": {"_count": 1}}, "joining": {"_count": 1, "the": {"_count": 1}}, "placing": {"_count": 1, "his": {"_count": 1}}, "theyre": {"_count": 1, "trained": {"_count": 1}}, "Scrimgeour": {"_count": 1, "could": {"_count": 1}}, "Ariana": {"_count": 1, "of": {"_count": 1}}, "something": {"_count": 1, "whooshed": {"_count": 1}}, "Kreacher": {"_count": 1, "hiccuped": {"_count": 1}}, "Albus": {"_count": 1, "s": {"_count": 1}}, "calling": {"_count": 1, "Ive": {"_count": 1}}, "shooting": {"_count": 1, "up": {"_count": 1}}, "Many": {"_count": 1, "voices": {"_count": 1}}, "Bathilda": {"_count": 1, "closed": {"_count": 1}}, "casting": {"_count": 1, "the": {"_count": 1}}, "more": {"_count": 1, "threatening": {"_count": 1}}, "mentally": {"_count": 1, "shaking": {"_count": 1}}, "Grindelwald": {"_count": 1, "came": {"_count": 1}}, "Hermiones": {"_count": 1, "": {"_count": 1}}, "Xenophilius": {"_count": 1, "seemed": {"_count": 1}}, "another": {"_count": 1, "bang": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "choosing": {"_count": 1, "not": {"_count": 1}}, "supporting": {"_count": 1, "a": {"_count": 1}}, "theyve": {"_count": 1, "even": {"_count": 1}}}, "realized": {"_count": 207, "that": {"_count": 85, "the": {"_count": 12}, "hed": {"_count": 3}, "his": {"_count": 2}, "nobody": {"_count": 1}, "Ron": {"_count": 4}, "said": {"_count": 1}, "someone": {"_count": 1}, "they": {"_count": 2}, "he": {"_count": 18}, "there": {"_count": 4}, "it": {"_count": 8}, "their": {"_count": 1}, "six": {"_count": 1}, "Cedric": {"_count": 1}, "Harry": {"_count": 3}, "Voldemort": {"_count": 1}, "Sirius": {"_count": 1}, "Mrs": {"_count": 1}, "Hermione": {"_count": 2}, "Hedwigs": {"_count": 1}, "Neville": {"_count": 1}, "your": {"_count": 1}, "Fangs": {"_count": 1}, "our": {"_count": 1}, "you": {"_count": 1}, "Privet": {"_count": 1}, "Dumbledore": {"_count": 1}, "two": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}, "this": {"_count": 2}, "what": {"_count": 2}, "something": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}}, "his": {"_count": 2, "mouth": {"_count": 1}, "three": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "what": {"_count": 23, "he": {"_count": 5}, "a": {"_count": 1}, "was": {"_count": 5}, "it": {"_count": 3}, "wasnt": {"_count": 1}, "Peter": {"_count": 1}, "had": {"_count": 2}, "Ron": {"_count": 1}, "Wormtail": {"_count": 1}, "Malfoy": {"_count": 1}, "you": {"_count": 1}, "Hermione": {"_count": 1}}, "how": {"_count": 10, "hungry": {"_count": 1}, "loudly": {"_count": 1}, "important": {"_count": 1}, "much": {"_count": 4}, "noisy": {"_count": 1}, "Lord": {"_count": 1}, "tiny": {"_count": 1}}, "they": {"_count": 6, "werent": {"_count": 1}, "must": {"_count": 1}, "were": {"_count": 2}, "wouldnt": {"_count": 1}, "had": {"_count": 1}}, "hed": {"_count": 2, "found": {"_count": 1}, "be": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "he": {"_count": 15, "must": {"_count": 1}, "was": {"_count": 8}, "had": {"_count": 1}, "still": {"_count": 1}, "could": {"_count": 2}, "hadnt": {"_count": 1}, "said": {"_count": 1}}, "too": {"_count": 1, "late": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "who": {"_count": 5, "Ginny": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 2}}, "the": {"_count": 4, "monster": {"_count": 1}, "dangerous": {"_count": 1}, "moment": {"_count": 1}, "cup": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 3}}, "I": {"_count": 4, "havent": {"_count": 1}, "was": {"_count": 1}, "cant": {"_count": 1}, "ever": {"_count": 1}}, "MadEye": {"_count": 1, "could": {"_count": 1}}, "you": {"_count": 2, "didnt": {"_count": 1}, "wouldnt": {"_count": 1}}, "was": {"_count": 2, "not": {"_count": 1}, "standing": {"_count": 1}}, "it": {"_count": 11, "was": {"_count": 7}, "for": {"_count": 1}, "at": {"_count": 1}, "had": {"_count": 1}, "because": {"_count": 1}}, "there": {"_count": 4, "was": {"_count": 1}, "are": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 1}}, "Crouch": {"_count": 1, "was": {"_count": 1}}, "immediately": {"_count": 1, "where": {"_count": 1}}, "something": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "this": {"_count": 1, "it": {"_count": 1}}, "a": {"_count": 1, "split": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "even": {"_count": 1, "as": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "Wormtail": {"_count": 1, "we": {"_count": 1}}, "anything": {"_count": 1, "is": {"_count": 1}}, "from": {"_count": 2, "cold": {"_count": 1}, "the": {"_count": 1}}, "their": {"_count": 1, "mistake": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "anyone": {"_count": 1, "could": {"_count": 1}}}, "violet": {"_count": 13, "cloak": {"_count": 1, "": {"_count": 1}}, "top": {"_count": 1, "hat": {"_count": 1}}, "light": {"_count": 1, "a": {"_count": 1}}, "pudding": {"_count": 1, "": {"_count": 1}}, "sparks": {"_count": 1, "twenty": {"_count": 1}}, "socks": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "haired": {"_count": 1, "woman": {"_count": 1}}, "color": {"_count": 1, "and": {"_count": 1}}, "ribbon": {"_count": 1, "": {"_count": 1}}, "ribbonadorned": {"_count": 1, "invitation": {"_count": 1}}, "paper": {"_count": 1, "airplanes": {"_count": 1}}}, "seem": {"_count": 215, "at": {"_count": 3, "all": {"_count": 3}}, "to": {"_count": 135, "realize": {"_count": 2}, "hear": {"_count": 2}, "have": {"_count": 33}, "be": {"_count": 35}, "notice": {"_count": 3}, "want": {"_count": 8}, "think": {"_count": 10}, "need": {"_count": 3}, "remember": {"_count": 2}, "run": {"_count": 1}, "like": {"_count": 2}, "find": {"_count": 3}, "understand": {"_count": 3}, "take": {"_count": 1}, "care": {"_count": 3}, "recognize": {"_count": 1}, "know": {"_count": 4}, "fancy": {"_count": 1}, "happen": {"_count": 1}, "allow": {"_count": 1}, "me": {"_count": 1}, "expect": {"_count": 1}, "bother": {"_count": 1}, "work": {"_count": 1}, "fit": {"_count": 2}, "apply": {"_count": 1}, "mind": {"_count": 1}, "discompose": {"_count": 1}, "require": {"_count": 1}, "please": {"_count": 1}, "owe": {"_count": 1}, "count": {"_count": 1}, "feel": {"_count": 1}, "marshal": {"_count": 1}, "fear": {"_count": 1}}, "quite": {"_count": 2, "as": {"_count": 1}, "so": {"_count": 1}}, "like": {"_count": 5, "a": {"_count": 3}, "he": {"_count": 1}, "hell": {"_count": 1}}, "very": {"_count": 6, "important": {"_count": 1}, "well": {"_count": 1}, "intrested": {"_count": 1}, "keen": {"_count": 1}, "small": {"_count": 1}, "informative": {"_count": 1}}, "as": {"_count": 4, "worried": {"_count": 1}, "distant": {"_count": 1}, "though": {"_count": 2}}, "interested": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 3, "type": {"_count": 2}, "fourth": {"_count": 1}}, "perturbed": {"_count": 2, "by": {"_count": 2}}, "too": {"_count": 2, "happy": {"_count": 2}}, "even": {"_count": 2, "to": {"_count": 1}, "more": {"_count": 1}}, "keen": {"_count": 2, "to": {"_count": 2}}, "a": {"_count": 1, "good": {"_count": 1}}, "impossible": {"_count": 1, "": {"_count": 1}}, "eager": {"_count": 1, "for": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "able": {"_count": 4, "to": {"_count": 3}, "But": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "impressed": {"_count": 1, "": {"_count": 1}}, "trust": {"_count": 1, "me": {"_count": 1}}, "herself": {"_count": 1, "either": {"_count": 1}}, "happy": {"_count": 2, "at": {"_count": 1}, "Dobby": {"_count": 1}}, "in": {"_count": 3, "any": {"_count": 1}, "character": {"_count": 1}, "the": {"_count": 1}}, "wholly": {"_count": 1, "overjoyed": {"_count": 1}}, "worse": {"_count": 1, "and": {"_count": 1}}, "fair": {"_count": 1, "if": {"_count": 1}}, "possible": {"_count": 2, "that": {"_count": 1}, "my": {"_count": 1}}, "ter": {"_count": 2, "go": {"_count": 1}, "have": {"_count": 1}}, "more": {"_count": 3, "complicated": {"_count": 1}, "miserable": {"_count": 1}, "important": {"_count": 1}}, "entirely": {"_count": 1, "satisfied": {"_count": 1}}, "really": {"_count": 2, "down": {"_count": 1}, "harsh": {"_count": 1}}, "reassured": {"_count": 1, "by": {"_count": 1}}, "any": {"_count": 1, "different": {"_count": 1}}, "cleverer": {"_count": 1, "than": {"_count": 1}}, "discouraged": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "people": {"_count": 1}}, "likely": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}, "an": {"_count": 1, "unreasonable": {"_count": 1}}, "unsupported": {"_count": 1, "": {"_count": 1}}, "less": {"_count": 1, "than": {"_count": 1}}, "hollow": {"_count": 1, "and": {"_count": 1}}, "rather": {"_count": 1, "pointless": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "incredible": {"_count": 1, "about": {"_count": 1}}, "different": {"_count": 1, "or": {"_count": 1}}, "sadly": {"_count": 1, "misinformed": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}}, "knocked": {"_count": 117, "to": {"_count": 3, "the": {"_count": 3}}, "down": {"_count": 1, "old": {"_count": 1}}, "his": {"_count": 2, "hand": {"_count": 1}, "elbow": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "out": {"_count": 13, "Ron": {"_count": 1}, "": {"_count": 4}, "of": {"_count": 3}, "Professor": {"_count": 1}, "by": {"_count": 1}, "half": {"_count": 1}, "and": {"_count": 1}, "cold": {"_count": 1}}, "three": {"_count": 4, "times": {"_count": 4}}, "they": {"_count": 1, "heard": {"_count": 1}}, "into": {"_count": 2, "Harry": {"_count": 1}, "their": {"_count": 1}}, "it": {"_count": 3, "out": {"_count": 1}, "over": {"_count": 2}}, "": {"_count": 8, ".": {"_count": 8}}, "Harry": {"_count": 2, "outta": {"_count": 1}, "over": {"_count": 1}}, "Professor": {"_count": 2, "Quirrell": {"_count": 1}, "Flitwick": {"_count": 1}}, "over": {"_count": 7, "his": {"_count": 3}, "her": {"_count": 1}, "by": {"_count": 1}, "backward": {"_count": 2}}, "on": {"_count": 10, "the": {"_count": 5}, "Hagrids": {"_count": 3}, "Professor": {"_count": 1}, "his": {"_count": 1}}, "me": {"_count": 1, "over": {"_count": 1}}, "her": {"_count": 4, "porridge": {"_count": 1}, "down": {"_count": 1}, "off": {"_count": 1}, "backward": {"_count": 1}}, "him": {"_count": 6, "into": {"_count": 2}, "backward": {"_count": 2}, "flat": {"_count": 1}, "sideways": {"_count": 1}}, "off": {"_count": 5, "his": {"_count": 4}, "course": {"_count": 1}}, "backward": {"_count": 2, "into": {"_count": 1}, "off": {"_count": 1}}, "urgently": {"_count": 1, "": {"_count": 1}}, "softly": {"_count": 1, "on": {"_count": 1}}, "Hagrid": {"_count": 1, "flung": {"_count": 1}}, "and": {"_count": 6, "there": {"_count": 1}, "pushed": {"_count": 1}, "a": {"_count": 1}, "Fangs": {"_count": 1}, "entered": {"_count": 1}, "was": {"_count": 1}}, "silly": {"_count": 1, "by": {"_count": 1}}, "Crookshankss": {"_count": 1, "basket": {"_count": 1}}, "but": {"_count": 2, "there": {"_count": 1}, "received": {"_count": 1}}, "Malfoys": {"_count": 1, "arm": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Parvatis": {"_count": 1, "hat": {"_count": 1}}, "he": {"_count": 1, "heard": {"_count": 1}}, "the": {"_count": 5, "wand": {"_count": 1}, "knees": {"_count": 1}, "gravy": {"_count": 1}, "refilled": {"_count": 1}, "breath": {"_count": 1}}, "desks": {"_count": 1, "flying": {"_count": 1}}, "himself": {"_count": 1, "out": {"_count": 1}}, "sideways": {"_count": 3, "into": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 1}}, "cold": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "snow": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "offbalance": {"_count": 1, "and": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "twice": {"_count": 1, "and": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "aside": {"_count": 2, "into": {"_count": 1}, "it": {"_count": 1}}}, "ground": {"_count": 386, "": {"_count": 105, ".": {"_count": 101}, "!": {"_count": 2}, "?": {"_count": 2}}, "and": {"_count": 46, "highheeled": {"_count": 1}, "Nevilles": {"_count": 1}, "up": {"_count": 1}, "an": {"_count": 1}, "youve": {"_count": 1}, "the": {"_count": 3}, "stood": {"_count": 1}, "scampered": {"_count": 1}, "prod": {"_count": 1}, "watched": {"_count": 1}, "Harry": {"_count": 2}, "back": {"_count": 1}, "Dumbledore": {"_count": 1}, "sky": {"_count": 1}, "he": {"_count": 5}, "thrown": {"_count": 1}, "crushed": {"_count": 1}, "straighten": {"_count": 1}, "straightened": {"_count": 1}, "set": {"_count": 1}, "his": {"_count": 1}, "somewhere": {"_count": 1}, "Hagrid": {"_count": 1}, "threw": {"_count": 1}, "awoke": {"_count": 1}, "Harrys": {"_count": 1}, "sprinted": {"_count": 1}, "they": {"_count": 1}, "a": {"_count": 2}, "rose": {"_count": 1}, "miraculously": {"_count": 1}, "banged": {"_count": 1}, "pointed": {"_count": 1}, "did": {"_count": 1}, "said": {"_count": 1}, "lingered": {"_count": 1}, "was": {"_count": 1}, "after": {"_count": 1}}, "to": {"_count": 6, "get": {"_count": 1}, "catch": {"_count": 1}, "reach": {"_count": 1}, "retrieve": {"_count": 1}, "be": {"_count": 1}, "lie": {"_count": 1}}, "hard": {"_count": 2, "said": {"_count": 1}, "again": {"_count": 1}}, "pushed": {"_count": 1, "off": {"_count": 1}}, "falling": {"_count": 1, "away": {"_count": 1}}, "he": {"_count": 7, "caught": {"_count": 1}, "tried": {"_count": 1}, "could": {"_count": 1}, "rolled": {"_count": 1}, "opened": {"_count": 1}, "saw": {"_count": 1}, "understood": {"_count": 1}}, "was": {"_count": 6, "covered": {"_count": 2}, "sprayed": {"_count": 1}, "now": {"_count": 1}, "so": {"_count": 1}, "stirring": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "Ron": {"_count": 1}}, "like": {"_count": 3, "a": {"_count": 1}, "some": {"_count": 1}, "spiders": {"_count": 1}}, "nervously": {"_count": 3, "": {"_count": 2}, "with": {"_count": 1}}, "fast": {"_count": 1, "asleep": {"_count": 1}}, "with": {"_count": 15, "his": {"_count": 5}, "a": {"_count": 5}, "tremendous": {"_count": 1}, "their": {"_count": 1}, "blank": {"_count": 1}, "that": {"_count": 1}, "tiny": {"_count": 1}}, "near": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "in": {"_count": 7, "a": {"_count": 1}, "the": {"_count": 1}, "front": {"_count": 5}}, "flying": {"_count": 1, "up": {"_count": 1}}, "soaring": {"_count": 1, "up": {"_count": 1}}, "landing": {"_count": 1, "rather": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 2}}, "still": {"_count": 5, "trying": {"_count": 1}, "sobbing": {"_count": 1}, "seemed": {"_count": 1}, "silent": {"_count": 1}, "lit": {"_count": 1}}, "trying": {"_count": 1, "hard": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 1}, "all": {"_count": 1}, "their": {"_count": 1}, "which": {"_count": 2}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 3, "signs": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 1}, "hard": {"_count": 2}}, "too": {"_count": 1, "heard": {"_count": 1}}, "as": {"_count": 8, "calmly": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "fast": {"_count": 1}, "Bertha": {"_count": 1}, "lightly": {"_count": 1}, "they": {"_count": 1}, "though": {"_count": 1}}, "the": {"_count": 2, "pipe": {"_count": 1}, "Snitch": {"_count": 1}}, "while": {"_count": 2, "youre": {"_count": 1}, "Harry": {"_count": 1}}, "this": {"_count": 2, "was": {"_count": 1}, "time": {"_count": 1}}, "drifted": {"_count": 1, "sideways": {"_count": 1}}, "again": {"_count": 6, "Wood": {"_count": 1}, "Theyre": {"_count": 1}, "chasing": {"_count": 1}, "as": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}}, "flitting": {"_count": 1, "near": {"_count": 1}}, "were": {"_count": 2, "Malfoy": {"_count": 1}, "puppeteers": {"_count": 1}}, "perhaps": {"_count": 1, "and": {"_count": 1}}, "darkness": {"_count": 1, "was": {"_count": 1}}, "wide": {"_count": 1, "yellow": {"_count": 1}}, "but": {"_count": 2, "Scabbers": {"_count": 1}, "he": {"_count": 1}}, "limbs": {"_count": 1, "were": {"_count": 1}}, "his": {"_count": 6, "limp": {"_count": 1}, "head": {"_count": 1}, "injured": {"_count": 1}, "face": {"_count": 1}, "arms": {"_count": 1}, "legs": {"_count": 1}}, "pale": {"_count": 1, "as": {"_count": 1}}, "beneath": {"_count": 6, "him": {"_count": 2}, "his": {"_count": 3}, "their": {"_count": 1}}, "arms": {"_count": 1, "around": {"_count": 1}}, "apparently": {"_count": 1, "searching": {"_count": 1}}, "tossing": {"_count": 1, "his": {"_count": 1}}, "beside": {"_count": 6, "Dudley": {"_count": 1}, "him": {"_count": 3}, "the": {"_count": 2}}, "Ron": {"_count": 2, "staggered": {"_count": 1}, "Hermione": {"_count": 1}}, "that": {"_count": 6, "read": {"_count": 1}, "rose": {"_count": 1}, "was": {"_count": 2}, "might": {"_count": 1}, "marked": {"_count": 1}}, "around": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 3, "hundred": {"_count": 1}, "smooth": {"_count": 1}, "short": {"_count": 1}}, "Harry": {"_count": 3, "looked": {"_count": 2}, "lifted": {"_count": 1}}, "at": {"_count": 8, "his": {"_count": 3}, "Dumbledores": {"_count": 1}, "Cedrics": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 1}}, "her": {"_count": 1, "breath": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 3, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}}, "behind": {"_count": 2, "but": {"_count": 1}, "them": {"_count": 1}}, "tears": {"_count": 1, "splashing": {"_count": 1}}, "And": {"_count": 1, "while": {"_count": 1}}, "Krum": {"_count": 1, "standing": {"_count": 1}}, "revealing": {"_count": 1, "what": {"_count": 1}}, "heard": {"_count": 1, "Wormtails": {"_count": 1}}, "cradling": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "nor": {"_count": 1, "of": {"_count": 1}}, "writhed": {"_count": 1, "and": {"_count": 1}}, "gasping": {"_count": 1, "": {"_count": 1}}, "breathing": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 1, "started": {"_count": 1}}, "no": {"_count": 1, "feet": {"_count": 1}}, "whimpering": {"_count": 2, "and": {"_count": 2}}, "quick": {"_count": 1, "": {"_count": 1}}, "trembling": {"_count": 2, "and": {"_count": 1}, "beneath": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "floor": {"_count": 3, "where": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 4, "they": {"_count": 2}, "she": {"_count": 1}, "the": {"_count": 1}}, "burning": {"_count": 1, "everything": {"_count": 1}}, "spraying": {"_count": 1, "mud": {"_count": 1}}, "having": {"_count": 1, "dived": {"_count": 1}}, "stepped": {"_count": 1, "back": {"_count": 1}}, "vanished": {"_count": 1, "from": {"_count": 1}}, "they": {"_count": 3, "will": {"_count": 1}, "were": {"_count": 1}, "soared": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "pretty": {"_count": 1, "well": {"_count": 1}}, "smiled": {"_count": 1, "reassuringly": {"_count": 1}}, "which": {"_count": 2, "shuddered": {"_count": 1}, "had": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "below": {"_count": 2, "started": {"_count": 1}, "him": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "momentarily": {"_count": 1, "": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 1, "his": {"_count": 1}}, "grinding": {"_count": 1, "his": {"_count": 1}}, "Katie": {"_count": 1, "let": {"_count": 1}}, "since": {"_count": 1, "you": {"_count": 1}}, "dripping": {"_count": 1, "blood": {"_count": 1}}, "slipped": {"_count": 1, "on": {"_count": 1}}, "rigid": {"_count": 1, "as": {"_count": 1}}, "whose": {"_count": 1, "fate": {"_count": 1}}, "blood": {"_count": 1, "pouring": {"_count": 1}}, "shudder": {"_count": 1, "under": {"_count": 1}}, "nearby": {"_count": 1, "": {"_count": 1}}, "Its": {"_count": 1, "them": {"_count": 1}}, "clearer": {"_count": 1, "": {"_count": 1}}, "frost": {"_count": 1, "was": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "then": {"_count": 1, "slammed": {"_count": 1}}, "unconscious": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 2, "eyes": {"_count": 1}, "skin": {"_count": 1}}, "spun": {"_count": 1, "through": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "Disarmed": {"_count": 1, "Voldemort": {"_count": 1}}}, "On": {"_count": 155, "the": {"_count": 78, "contrary": {"_count": 10}, "corner": {"_count": 1}, "other": {"_count": 20}, "last": {"_count": 2}, "opposite": {"_count": 3}, "third": {"_count": 2}, "count": {"_count": 9}, "first": {"_count": 2}, "one": {"_count": 1}, "rare": {"_count": 1}, "threshold": {"_count": 1}, "Saturday": {"_count": 2}, "floor": {"_count": 2}, "landing": {"_count": 3}, "way": {"_count": 1}, "whole": {"_count": 4}, "fourth": {"_count": 1}, "very": {"_count": 2}, "pretext": {"_count": 1}, "morning": {"_count": 2}, "walls": {"_count": 1}, "topmost": {"_count": 1}, "whistle": {"_count": 1}, "downside": {"_count": 2}, "word": {"_count": 1}, "second": {"_count": 1}, "ground": {"_count": 1}}, "vacation": {"_count": 1, "in": {"_count": 1}}, "Friday": {"_count": 2, "no": {"_count": 1}, "Harry": {"_count": 1}}, "Saturday": {"_count": 4, "things": {"_count": 1}, "Harry": {"_count": 1}, "morning": {"_count": 2}}, "Sunday": {"_count": 1, "morning": {"_count": 1}}, "top": {"_count": 3, "of": {"_count": 3}}, "Harrys": {"_count": 3, "other": {"_count": 1}, "left": {"_count": 1}, "right": {"_count": 1}}, "my": {"_count": 3, "whistle": {"_count": 2}, "command": {"_count": 1}}, "Halloween": {"_count": 2, "morning": {"_count": 2}}, "their": {"_count": 3, "way": {"_count": 2}, "last": {"_count": 1}}, "Christmas": {"_count": 2, "Eve": {"_count": 1}, "morning": {"_count": 1}}, "and": {"_count": 4, "on": {"_count": 4}}, "Madam": {"_count": 1, "Hoochs": {"_count": 1}}, "her": {"_count": 2, "first": {"_count": 1}, "last": {"_count": 1}}, "a": {"_count": 4, "happier": {"_count": 1}, "magnificent": {"_count": 1}, "cold": {"_count": 1}, "different": {"_count": 1}}, "foot": {"_count": 1, "then": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "Professor": {"_count": 2, "Sinistra": {"_count": 1}, "Dumbledores": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}, "either": {"_count": 2, "side": {"_count": 2}}, "his": {"_count": 3, "way": {"_count": 1}, "desk": {"_count": 1}, "third": {"_count": 1}}, "Thursday": {"_count": 1, "night": {"_count": 1}}, "this": {"_count": 3, "map": {"_count": 1}, "incomprehensible": {"_count": 1}, "spot": {"_count": 1}}, "Monday": {"_count": 1, "last": {"_count": 1}}, "your": {"_count": 2, "left": {"_count": 1}, "head": {"_count": 1}}, "three": {"_count": 3, "right": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "Fudges": {"_count": 1, "right": {"_count": 1}}, "approaching": {"_count": 1, "the": {"_count": 1}}, "duty": {"_count": 1, "doing": {"_count": 1}}, "real": {"_count": 1, "Galleons": {"_count": 1}}, "these": {"_count": 1, "fake": {"_count": 1}}, "on": {"_count": 1, "get": {"_count": 1}}, "no": {"_count": 1, "account": {"_count": 1}}, "what": {"_count": 2, "grounds": {"_count": 1}, "": {"_count": 1}}, "they": {"_count": 1, "flew": {"_count": 1}}, "those": {"_count": 1, "rare": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "Dumbledores": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 3, "side": {"_count": 1}, "such": {"_count": 1}, "subject": {"_count": 1}}, "that": {"_count": 1, "intriguing": {"_count": 1}}, "every": {"_count": 1, "side": {"_count": 1}}, "Jamess": {"_count": 1, "left": {"_count": 1}}, "Harry": {"_count": 1, "dug": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "contrary": {"_count": 32, "his": {"_count": 3, "face": {"_count": 1}, "boyish": {"_count": 1}, "finely": {"_count": 1}}, "he": {"_count": 8, "sat": {"_count": 1}, "looked": {"_count": 2}, "felt": {"_count": 2}, "was": {"_count": 1}, "beamed": {"_count": 1}, "presented": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "her": {"_count": 2, "face": {"_count": 1}, "tone": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "at": {"_count": 1, "Hermiones": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "both": {"_count": 1, "thanked": {"_count": 1}}, "it": {"_count": 3, "sounded": {"_count": 1}, "was": {"_count": 1}, "felt": {"_count": 1}}, "she": {"_count": 2, "simply": {"_count": 1}, "was": {"_count": 1}}, "they": {"_count": 2, "all": {"_count": 1}, "exchanged": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "next": {"_count": 1, "moment": {"_count": 1}}, "much": {"_count": 1, "too": {"_count": 1}}, "Dumbledore": {"_count": 1, "I": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}}, "face": {"_count": 1521, "split": {"_count": 6, "into": {"_count": 2}, "suddenly": {"_count": 1}, "in": {"_count": 3}}, "he": {"_count": 19, "had": {"_count": 2}, "added": {"_count": 1}, "leapt": {"_count": 1}, "kept": {"_count": 1}, "looked": {"_count": 2}, "was": {"_count": 2}, "plunged": {"_count": 1}, "said": {"_count": 3}, "could": {"_count": 1}, "thought": {"_count": 1}, "knew": {"_count": 1}, "fell": {"_count": 1}, "nearly": {"_count": 1}, "gave": {"_count": 1}}, "in": {"_count": 39, "it": {"_count": 1}, "his": {"_count": 11}, "her": {"_count": 7}, "the": {"_count": 8}, "horror": {"_count": 1}, "retaliation": {"_count": 1}, "its": {"_count": 1}, "front": {"_count": 1}, "shadow": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "which": {"_count": 1}, "concentration": {"_count": 1}, "my": {"_count": 1}, "shame": {"_count": 1}, "sharp": {"_count": 1}}, "knobbly": {"_count": 1, "knees": {"_count": 1}}, "not": {"_count": 3, "much": {"_count": 1}, "Harry": {"_count": 1}, "yet": {"_count": 1}}, "fell": {"_count": 7, "": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}, "slightly": {"_count": 1}, "back": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 389, ".": {"_count": 380}, "?": {"_count": 5}, "!": {"_count": 4}}, "and": {"_count": 103, "wailed": {"_count": 1}, "saw": {"_count": 3}, "Harrys": {"_count": 1}, "robes": {"_count": 1}, "held": {"_count": 1}, "was": {"_count": 2}, "identical": {"_count": 1}, "her": {"_count": 2}, "you": {"_count": 1}, "staring": {"_count": 2}, "making": {"_count": 1}, "caused": {"_count": 1}, "imitated": {"_count": 1}, "his": {"_count": 5}, "neck": {"_count": 3}, "the": {"_count": 7}, "hands": {"_count": 2}, "felt": {"_count": 2}, "whiteblond": {"_count": 1}, "Dumbledore": {"_count": 1}, "began": {"_count": 1}, "didnt": {"_count": 1}, "fixed": {"_count": 1}, "Malfoys": {"_count": 1}, "he": {"_count": 7}, "tail": {"_count": 1}, "bulging": {"_count": 1}, "arms": {"_count": 2}, "it": {"_count": 1}, "sniffed": {"_count": 1}, "then": {"_count": 3}, "still": {"_count": 1}, "buried": {"_count": 1}, "fell": {"_count": 1}, "torso": {"_count": 1}, "departed": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 3}, "as": {"_count": 1}, "slopping": {"_count": 1}, "said": {"_count": 2}, "gave": {"_count": 1}, "Neville": {"_count": 1}, "bearing": {"_count": 1}, "opened": {"_count": 1}, "several": {"_count": 1}, "long": {"_count": 1}, "black": {"_count": 1}, "wagging": {"_count": 1}, "mousy": {"_count": 1}, "oblivious": {"_count": 1}, "white": {"_count": 1}, "muttered": {"_count": 1}, "straining": {"_count": 1}, "wondered": {"_count": 1}, "ignoring": {"_count": 1}, "glaring": {"_count": 1}, "for": {"_count": 1}, "chest": {"_count": 1}, "repeated": {"_count": 1}, "tried": {"_count": 1}, "after": {"_count": 1}, "what": {"_count": 1}, "experienced": {"_count": 1}, "Grey": {"_count": 1}, "believed": {"_count": 1}, "guessed": {"_count": 1}, "back": {"_count": 1}, "Ron": {"_count": 2}, "tiny": {"_count": 1}, "closed": {"_count": 1}}, "like": {"_count": 7, "a": {"_count": 4}, "that": {"_count": 1}, "Stinksap": {"_count": 1}, "Goyle": {"_count": 1}}, "right": {"_count": 1, "up": {"_count": 1}}, "went": {"_count": 5, "from": {"_count": 1}, "brick": {"_count": 1}, "pinker": {"_count": 1}, "if": {"_count": 1}, "slightly": {"_count": 1}}, "into": {"_count": 13, "a": {"_count": 4}, "what": {"_count": 2}, "his": {"_count": 3}, "sharp": {"_count": 1}, "the": {"_count": 3}}, "was": {"_count": 120, "almost": {"_count": 1}, "standing": {"_count": 1}, "twisted": {"_count": 2}, "now": {"_count": 2}, "entirely": {"_count": 1}, "somber": {"_count": 1}, "contorted": {"_count": 4}, "covered": {"_count": 4}, "livid": {"_count": 1}, "white": {"_count": 5}, "moving": {"_count": 1}, "suddenly": {"_count": 5}, "surrounded": {"_count": 1}, "starting": {"_count": 1}, "very": {"_count": 2}, "in": {"_count": 2}, "completely": {"_count": 2}, "turned": {"_count": 2}, "serving": {"_count": 1}, "Professor": {"_count": 1}, "hidden": {"_count": 4}, "quite": {"_count": 4}, "full": {"_count": 1}, "shining": {"_count": 2}, "set": {"_count": 3}, "sticking": {"_count": 1}, "halfhidden": {"_count": 1}, "taut": {"_count": 1}, "still": {"_count": 2}, "burning": {"_count": 2}, "fuller": {"_count": 1}, "screwed": {"_count": 3}, "blotchy": {"_count": 1}, "beardless": {"_count": 1}, "stuck": {"_count": 1}, "much": {"_count": 1}, "swimming": {"_count": 2}, "pressed": {"_count": 1}, "visible": {"_count": 1}, "slack": {"_count": 1}, "one": {"_count": 1}, "barely": {"_count": 1}, "half": {"_count": 1}, "blinking": {"_count": 1}, "turning": {"_count": 1}, "stricken": {"_count": 2}, "a": {"_count": 1}, "scarlet": {"_count": 1}, "pink": {"_count": 1}, "thin": {"_count": 1}, "pockmarked": {"_count": 1}, "actually": {"_count": 1}, "horribly": {"_count": 1}, "growing": {"_count": 2}, "alight": {"_count": 1}, "pale": {"_count": 2}, "bloodstained": {"_count": 1}, "inscrutable": {"_count": 1}, "anxious": {"_count": 1}, "transfigured": {"_count": 1}, "murderous": {"_count": 1}, "smoothly": {"_count": 1}, "perhaps": {"_count": 1}, "as": {"_count": 1}, "peppered": {"_count": 1}, "twitching": {"_count": 1}, "glazed": {"_count": 1}, "somehow": {"_count": 1}, "poking": {"_count": 1}, "dotted": {"_count": 1}, "looking": {"_count": 1}, "huge": {"_count": 1}, "hard": {"_count": 1}, "translucent": {"_count": 1}, "impassive": {"_count": 1}, "wet": {"_count": 1}, "bruised": {"_count": 1}, "blackened": {"_count": 1}, "like": {"_count": 1}, "swollen": {"_count": 1}, "illuminated": {"_count": 1}, "so": {"_count": 1}, "slightly": {"_count": 1}}, "a": {"_count": 9, "pointed": {"_count": 1}, "banshee": {"_count": 1}, "sense": {"_count": 1}, "second": {"_count": 1}, "battle": {"_count": 1}, "black": {"_count": 1}, "pale": {"_count": 1}, "puffy": {"_count": 1}, "little": {"_count": 1}}, "had": {"_count": 12, "disappeared": {"_count": 1}, "gone": {"_count": 3}, "hardened": {"_count": 1}, "been": {"_count": 3}, "leapt": {"_count": 1}, "a": {"_count": 2}, "turned": {"_count": 1}}, "that": {"_count": 19, "he": {"_count": 3}, "she": {"_count": 1}, "reminded": {"_count": 1}, "they": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 1}, "some": {"_count": 1}, "were": {"_count": 1}, "was": {"_count": 3}, "Aunt": {"_count": 1}, "Harry": {"_count": 2}, "for": {"_count": 1}, "appeared": {"_count": 1}, "could": {"_count": 1}}, "as": {"_count": 45, "red": {"_count": 1}, "white": {"_count": 1}, "he": {"_count": 16}, "low": {"_count": 1}, "though": {"_count": 7}, "blank": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "Snape": {"_count": 1}, "little": {"_count": 1}, "Ron": {"_count": 1}, "she": {"_count": 4}, "they": {"_count": 3}, "quickly": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 2}, "immobile": {"_count": 1}, "it": {"_count": 1}}, "beamed": {"_count": 1, "over": {"_count": 1}}, "appeared": {"_count": 5, "in": {"_count": 1}, "at": {"_count": 2}, "slightly": {"_count": 1}, "over": {"_count": 1}}, "look": {"_count": 3, "down": {"_count": 1}, "more": {"_count": 1}, "oddly": {"_count": 1}}, "tearstreaked": {"_count": 1, "clutching": {"_count": 1}}, "the": {"_count": 38, "great": {"_count": 1}, "two": {"_count": 1}, "black": {"_count": 1}, "most": {"_count": 1}, "barrier": {"_count": 1}, "exit": {"_count": 1}, "stunned": {"_count": 1}, "field": {"_count": 1}, "fidgeting": {"_count": 1}, "first": {"_count": 1}, "second": {"_count": 1}, "red": {"_count": 1}, "newcomer": {"_count": 1}, "moment": {"_count": 1}, "headmaster": {"_count": 1}, "class": {"_count": 2}, "rest": {"_count": 1}, "room": {"_count": 4}, "open": {"_count": 1}, "roots": {"_count": 1}, "door": {"_count": 1}, "empty": {"_count": 1}, "exposed": {"_count": 1}, "better": {"_count": 1}, "front": {"_count": 2}, "stench": {"_count": 1}, "firelight": {"_count": 1}, "other": {"_count": 1}, "sword": {"_count": 1}, "light": {"_count": 1}, "blow": {"_count": 1}, "pallor": {"_count": 1}, "dark": {"_count": 1}}, "Malfoy": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 5, "weeks": {"_count": 1}, "Dumbledore": {"_count": 1}, "everyone": {"_count": 1}, "asking": {"_count": 1}, "a": {"_count": 1}}, "kept": {"_count": 1, "looming": {"_count": 1}}, "with": {"_count": 26, "a": {"_count": 6}, "his": {"_count": 6}, "her": {"_count": 4}, "great": {"_count": 1}, "the": {"_count": 3}, "all": {"_count": 1}, "one": {"_count": 1}, "heavy": {"_count": 1}, "it": {"_count": 1}, "trembling": {"_count": 1}, "deliberate": {"_count": 1}}, "when": {"_count": 14, "Harry": {"_count": 1}, "he": {"_count": 5}, "they": {"_count": 1}, "Dumbledore": {"_count": 1}, "Karkaroff": {"_count": 1}, "she": {"_count": 1}, "Ginny": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 1}}, "by": {"_count": 4, "a": {"_count": 2}, "inches": {"_count": 1}, "something": {"_count": 1}}, "out": {"_count": 3, "from": {"_count": 1}, "of": {"_count": 2}}, "whispered": {"_count": 1, "Ill": {"_count": 1}}, "Snape": {"_count": 3, "": {"_count": 2}, "again": {"_count": 1}}, "but": {"_count": 16, "he": {"_count": 3}, "his": {"_count": 2}, "stood": {"_count": 1}, "she": {"_count": 2}, "as": {"_count": 1}, "descriptions": {"_count": 1}, "from": {"_count": 1}, "up": {"_count": 1}, "her": {"_count": 1}, "we": {"_count": 1}, "": {"_count": 1}, "clutching": {"_count": 1}}, "at": {"_count": 4, "all": {"_count": 1}, "his": {"_count": 1}, "some": {"_count": 1}, "once": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "loomed": {"_count": 1, "suddenly": {"_count": 1}}, "because": {"_count": 2, "Filch": {"_count": 1}, "Lupin": {"_count": 1}}, "stiff": {"_count": 1, "as": {"_count": 1}}, "toward": {"_count": 3, "him": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 1}}, "pale": {"_count": 4, "but": {"_count": 1}, "and": {"_count": 1}, "green": {"_count": 1}, "his": {"_count": 1}}, "wasnt": {"_count": 2, "twitching": {"_count": 1}, "sunken": {"_count": 1}}, "Harry": {"_count": 18, "had": {"_count": 4}, "stared": {"_count": 1}, "swerved": {"_count": 1}, "thought": {"_count": 1}, "set": {"_count": 1}, "as": {"_count": 1}, "took": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 1}, "saw": {"_count": 1}, "Ron": {"_count": 1}, "went": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 4, "": {"_count": 1}, "Whatever": {"_count": 1}, "Ron": {"_count": 1}, "more": {"_count": 1}}, "aaRGH": {"_count": 1, "": {"_count": 1}}, "blistering": {"_count": 1, "too": {"_count": 1}}, "of": {"_count": 22, "Albus": {"_count": 2}, "fire": {"_count": 1}, "Slytherin": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 6}, "Harry": {"_count": 1}, "his": {"_count": 1}, "Cornelius": {"_count": 1}, "Voldemort": {"_count": 1}, "Professor": {"_count": 1}, "one": {"_count": 1}, "all": {"_count": 1}, "our": {"_count": 1}, "Dumbledore": {"_count": 1}, "Stanley": {"_count": 1}, "a": {"_count": 1}}, "Voldemort": {"_count": 3, "if": {"_count": 1}, "straightened": {"_count": 1}, "": {"_count": 1}}, "straight": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 12, "wide": {"_count": 1}, "eyes": {"_count": 2}, "freckled": {"_count": 1}, "knees": {"_count": 1}, "fathers": {"_count": 1}, "aunt": {"_count": 1}, "mouth": {"_count": 1}, "class": {"_count": 1}, "lips": {"_count": 1}, "Keeper": {"_count": 1}, "lit": {"_count": 1}}, "horribly": {"_count": 1, "close": {"_count": 1}}, "to": {"_count": 20, "the": {"_count": 3}, "Harry": {"_count": 6}, "know": {"_count": 1}, "be": {"_count": 2}, "nervous": {"_count": 1}, "his": {"_count": 1}, "smart": {"_count": 1}, "glance": {"_count": 1}, "check": {"_count": 1}, "Lavender": {"_count": 1}, "see": {"_count": 1}, "something": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "Ron": {"_count": 3, "added": {"_count": 1}, "": {"_count": 1}, "instead": {"_count": 1}}, "glowing": {"_count": 3, "like": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}}, "squinting": {"_count": 1, "through": {"_count": 1}}, "forward": {"_count": 5, "onto": {"_count": 2}, "and": {"_count": 2}, "out": {"_count": 1}}, "all": {"_count": 4, "winking": {"_count": 1}, "right": {"_count": 1}, "the": {"_count": 1}, "tension": {"_count": 1}}, "burned": {"_count": 1, "as": {"_count": 1}}, "grinning": {"_count": 2, "embarrassedly": {"_count": 1}, "sheepishly": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "shining": {"_count": 6, "with": {"_count": 4}, "": {"_count": 1}, "like": {"_count": 1}}, "waking": {"_count": 1, "him": {"_count": 1}}, "flickered": {"_count": 1, "": {"_count": 1}}, "first": {"_count": 1, "into": {"_count": 1}}, "while": {"_count": 2, "Peeves": {"_count": 1}, "tugging": {"_count": 1}}, "flushed": {"_count": 3, "as": {"_count": 1}, "but": {"_count": 1}, "with": {"_count": 1}}, "purpling": {"_count": 2, "": {"_count": 2}}, "worked": {"_count": 2, "horribly": {"_count": 1}, "furiously": {"_count": 1}}, "turned": {"_count": 7, "to": {"_count": 1}, "away": {"_count": 1}, "toward": {"_count": 3}, "an": {"_count": 1}, "resolutely": {"_count": 1}}, "splattering": {"_count": 1, "onto": {"_count": 1}}, "below": {"_count": 1, "him": {"_count": 1}}, "still": {"_count": 4, "lying": {"_count": 1}, "shining": {"_count": 1}, "hidden": {"_count": 1}, "purple": {"_count": 1}}, "on": {"_count": 10, "the": {"_count": 1}, "his": {"_count": 3}, "these": {"_count": 1}, "her": {"_count": 3}, "by": {"_count": 1}, "a": {"_count": 1}}, "she": {"_count": 3, "didnt": {"_count": 1}, "looked": {"_count": 1}, "barely": {"_count": 1}}, "fearful": {"_count": 1, "": {"_count": 1}}, "Slytherins": {"_count": 1, "legendary": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "wore": {"_count": 2, "an": {"_count": 1}, "a": {"_count": 1}}, "stark": {"_count": 1, "white": {"_count": 1}}, "above": {"_count": 2, "It": {"_count": 1}, "his": {"_count": 1}}, "7": {"_count": 1, "think": {"_count": 1}}, "contorted": {"_count": 9, "": {"_count": 2}, "with": {"_count": 5}, "cried": {"_count": 1}, "and": {"_count": 1}}, "him": {"_count": 12, "": {"_count": 4}, "have": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "though": {"_count": 1}, "frowning": {"_count": 1}, "hows": {"_count": 1}, "again": {"_count": 1}}, "staring": {"_count": 2, "through": {"_count": 1}, "up": {"_count": 1}}, "livid": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "weve": {"_count": 1, "told": {"_count": 1}}, "an": {"_count": 2, "ugly": {"_count": 1}, "even": {"_count": 1}}, "dripping": {"_count": 1, "": {"_count": 1}}, "expulsion": {"_count": 1, "from": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "removed": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 11, "whod": {"_count": 1}, "looked": {"_count": 1}, "": {"_count": 4}, "we": {"_count": 1}, "alone": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 3}, "he": {"_count": 1}}, "peered": {"_count": 2, "interestedly": {"_count": 1}, "excitedly": {"_count": 1}}, "looked": {"_count": 3, "grumpy": {"_count": 1}, "more": {"_count": 1}, "dangerous": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 3, "theyve": {"_count": 1}, "she": {"_count": 1}, "Hermione": {"_count": 1}}, "gleeful": {"_count": 1, "and": {"_count": 1}}, "set": {"_count": 1, "": {"_count": 1}}, "pressed": {"_count": 5, "against": {"_count": 4}, "into": {"_count": 1}}, "rapt": {"_count": 1, "with": {"_count": 1}}, "then": {"_count": 6, "he": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "at": {"_count": 1}}, "very": {"_count": 3, "close": {"_count": 1}, "well": {"_count": 1}, "red": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "hot": {"_count": 1, "his": {"_count": 1}}, "if": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "glazed": {"_count": 2, "with": {"_count": 2}}, "behind": {"_count": 1, "it": {"_count": 1}}, "mingling": {"_count": 1, "with": {"_count": 1}}, "relaxed": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "averted": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "mounted": {"_count": 1, "the": {"_count": 1}}, "gathered": {"_count": 1, "up": {"_count": 1}}, "anxious": {"_count": 1, "": {"_count": 1}}, "free": {"_count": 1, "of": {"_count": 1}}, "full": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "impassive": {"_count": 1, "": {"_count": 1}}, "convinced": {"_count": 1, "Harry": {"_count": 1}}, "buried": {"_count": 2, "in": {"_count": 2}}, "there": {"_count": 5, "a": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 3}}, "now": {"_count": 11, "tinged": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 3}, "resembled": {"_count": 1}, "livid": {"_count": 1}, "appeared": {"_count": 1}, "shining": {"_count": 1}, "looming": {"_count": 1}, "looked": {"_count": 1}}, "bloodless": {"_count": 1, "his": {"_count": 1}}, "Black": {"_count": 1, "nodded": {"_count": 1}}, "hidden": {"_count": 7, "in": {"_count": 2}, "by": {"_count": 2}, "": {"_count": 1}, "throughout": {"_count": 1}, "was": {"_count": 1}}, "twitched": {"_count": 1, "convulsively": {"_count": 1}}, "showed": {"_count": 2, "more": {"_count": 1}, "equal": {"_count": 1}}, "left": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 3, "dont": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "broke": {"_count": 3, "into": {"_count": 2}, "the": {"_count": 1}}, "upward": {"_count": 1, "": {"_count": 1}}, "vanished": {"_count": 1, "from": {"_count": 1}}, "me": {"_count": 4, "like": {"_count": 2}, "yourself": {"_count": 2}}, "screwed": {"_count": 6, "up": {"_count": 6}}, "seemed": {"_count": 8, "to": {"_count": 7}, "branded": {"_count": 1}}, "making": {"_count": 2, "it": {"_count": 2}}, "were": {"_count": 1, "transparent": {"_count": 1}}, "purpled": {"_count": 1, "once": {"_count": 1}}, "which": {"_count": 12, "was": {"_count": 7}, "had": {"_count": 1}, "in": {"_count": 1}, "resembled": {"_count": 1}, "felt": {"_count": 1}, "spoke": {"_count": 1}}, "though": {"_count": 2, "her": {"_count": 1}, "it": {"_count": 1}}, "poked": {"_count": 1, "out": {"_count": 1}}, "shone": {"_count": 2, "with": {"_count": 1}, "through": {"_count": 1}}, "gleaming": {"_count": 3, "like": {"_count": 1}, "with": {"_count": 1}, "out": {"_count": 1}}, "saw": {"_count": 1, "his": {"_count": 1}}, "so": {"_count": 10, "white": {"_count": 1}, "that": {"_count": 5}, "suddenly": {"_count": 1}, "lined": {"_count": 1}, "recently": {"_count": 1}, "much": {"_count": 1}}, "them": {"_count": 4, "": {"_count": 2}, "sneering": {"_count": 1}, "both": {"_count": 1}}, "somehow": {"_count": 1, "sharpened": {"_count": 1}}, "protruded": {"_count": 1, "from": {"_count": 1}}, "unlike": {"_count": 1, "any": {"_count": 1}}, "pulled": {"_count": 2, "a": {"_count": 1}, "back": {"_count": 1}}, "lit": {"_count": 3, "with": {"_count": 2}, "from": {"_count": 1}}, "stood": {"_count": 2, "out": {"_count": 2}}, "Professor": {"_count": 2, "Trelawney": {"_count": 1}, "McGonagall": {"_count": 1}}, "redden": {"_count": 1, "as": {"_count": 1}}, "large": {"_count": 1, "black": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "darkened": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "half": {"_count": 1, "hidden": {"_count": 1}}, "before": {"_count": 2, "havent": {"_count": 1}, "the": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "breaking": {"_count": 1, "into": {"_count": 1}}, "within": {"_count": 2, "the": {"_count": 1}, "inches": {"_count": 1}}, "reddening": {"_count": 1, "with": {"_count": 1}}, "those": {"_count": 1, "monsters": {"_count": 1}}, "working": {"_count": 2, "rather": {"_count": 1}, "furiously": {"_count": 1}}, "toface": {"_count": 1, "with": {"_count": 1}}, "sopping": {"_count": 1, "wet": {"_count": 1}}, "once": {"_count": 2, "more": {"_count": 2}}, "from": {"_count": 6, "dancing": {"_count": 1}, "their": {"_count": 1}, "behind": {"_count": 1}, "Umbridge": {"_count": 1}, "the": {"_count": 2}}, "giggling": {"_count": 1, "and": {"_count": 1}}, "turn": {"_count": 1, "a": {"_count": 1}}, "twisted": {"_count": 2, "into": {"_count": 1}, "with": {"_count": 1}}, "Accio": {"_count": 1, "Parchments": {"_count": 1}}, "sting": {"_count": 1, "he": {"_count": 1}}, "burn": {"_count": 1, "and": {"_count": 1}}, "burning": {"_count": 2, "": {"_count": 2}}, "evidently": {"_count": 1, "thinking": {"_count": 1}}, "scratched": {"_count": 1, "he": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "swimming": {"_count": 1, "around": {"_count": 1}}, "change": {"_count": 1, "smoothly": {"_count": 1}}, "no": {"_count": 2, "child": {"_count": 1}, "twinkle": {"_count": 1}}, "illuminated": {"_count": 2, "in": {"_count": 1}, "by": {"_count": 1}}, "did": {"_count": 2, "he": {"_count": 2}}, "upturned": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "swam": {"_count": 2, "in": {"_count": 1}, "through": {"_count": 1}}, "distinctly": {"_count": 1, "even": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 3, "": {"_count": 2}, "still": {"_count": 1}}, "visible": {"_count": 1, "beneath": {"_count": 1}}, "stretching": {"_count": 1, "before": {"_count": 1}}, "came": {"_count": 2, "closer": {"_count": 1}, "into": {"_count": 1}}, "dark": {"_count": 1, "twinkling": {"_count": 1}}, "stretched": {"_count": 1, "taut": {"_count": 1}}, "blanched": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "got": {"_count": 1, "in": {"_count": 1}}, "quite": {"_count": 1, "expressionless": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "slightly": {"_count": 2, "to": {"_count": 1}, "pink": {"_count": 1}}, "upon": {"_count": 1, "Hermione": {"_count": 1}}, "felt": {"_count": 3, "hot": {"_count": 1}, "stiff": {"_count": 1}, "oddly": {"_count": 1}}, "grow": {"_count": 2, "hot": {"_count": 1}, "warm": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "Angelina": {"_count": 1, "Johnson": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "contorting": {"_count": 1, "with": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "leaned": {"_count": 1, "forward": {"_count": 1}}, "determined": {"_count": 1, "not": {"_count": 1}}, "close": {"_count": 2, "to": {"_count": 2}}, "dragon": {"_count": 1, "blood": {"_count": 1}}, "covered": {"_count": 4, "in": {"_count": 3}, "with": {"_count": 1}}, "neck": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "sort": {"_count": 1}}, "drained": {"_count": 3, "from": {"_count": 1}, "of": {"_count": 2}}, "her": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "framed": {"_count": 3, "between": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}}, "barely": {"_count": 1, "a": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "growing": {"_count": 1, "hot": {"_count": 1}}, "whiter": {"_count": 1, "than": {"_count": 1}}, "looming": {"_count": 1, "at": {"_count": 1}}, "muttering": {"_count": 1, "under": {"_count": 1}}, "Dean": {"_count": 1, "who": {"_count": 1}}, "extremely": {"_count": 1, "tense": {"_count": 1}}, "That": {"_count": 1, "was": {"_count": 1}}, "same": {"_count": 1, "mouth": {"_count": 1}}, "spattering": {"_count": 1, "his": {"_count": 1}}, "sticking": {"_count": 2, "between": {"_count": 1}, "out": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "deliberately": {"_count": 1, "smooth": {"_count": 1}}, "causing": {"_count": 1, "him": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "down": {"_count": 1, "into": {"_count": 1}}, "eyes": {"_count": 1, "screwed": {"_count": 1}}, "Neville": {"_count": 1, "gave": {"_count": 1}}, "anguished": {"_count": 1, "as": {"_count": 1}}, "suddenly": {"_count": 3, "transported": {"_count": 1}, "turned": {"_count": 1}, "crafty": {"_count": 1}}, "grew": {"_count": 1, "pinker": {"_count": 1}}, "shake": {"_count": 1, "him": {"_count": 1}}, "looking": {"_count": 3, "back": {"_count": 1}, "startled": {"_count": 1}, "curiously": {"_count": 1}}, "eloquent": {"_count": 1, "with": {"_count": 1}}, "Narcissa": {"_count": 1, "frowning": {"_count": 1}}, "paperwhite": {"_count": 1, "her": {"_count": 1}}, "glowed": {"_count": 1, "red": {"_count": 1}}, "slid": {"_count": 1, "down": {"_count": 1}}, "packing": {"_count": 1, "and": {"_count": 1}}, "registered": {"_count": 1, "nothing": {"_count": 1}}, "cracked": {"_count": 1, "its": {"_count": 1}}, "jumped": {"_count": 1, "onto": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "became": {"_count": 1, "stonier": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "clean": {"_count": 1, "for": {"_count": 1}}, "inches": {"_count": 1, "from": {"_count": 1}}, "falling": {"_count": 1, "comically": {"_count": 1}}, "expressionless": {"_count": 1, "but": {"_count": 1}}, "remained": {"_count": 2, "quite": {"_count": 1}, "expressionless": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "sank": {"_count": 1, "through": {"_count": 1}}, "merely": {"_count": 1, "expressed": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "touched": {"_count": 1, "them": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "crumpled": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "whitened": {"_count": 1, "under": {"_count": 1}}, "reflected": {"_count": 1, "upside": {"_count": 1}}, "paler": {"_count": 1, "and": {"_count": 1}}, "flat": {"_count": 1, "against": {"_count": 1}}, "He": {"_count": 3, "wheeled": {"_count": 1}, "wanted": {"_count": 1}, "wondered": {"_count": 1}}, "smacking": {"_count": 1, "the": {"_count": 1}}, "clearly": {"_count": 1, "at": {"_count": 1}}, "death": {"_count": 1, "in": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}, "taut": {"_count": 1, "and": {"_count": 1}}, "breakfast": {"_count": 1, "but": {"_count": 1}}, "clapped": {"_count": 1, "him": {"_count": 1}}, "flooded": {"_count": 2, "with": {"_count": 2}}, "silently": {"_count": 1, "daring": {"_count": 1}}, "whiten": {"_count": 1, "": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "fall": {"_count": 1, "again": {"_count": 1}}, "sunken": {"_count": 1, "fleshless": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "vanishing": {"_count": 1, "into": {"_count": 1}}, "filled": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "pointed": {"_count": 1, "and": {"_count": 1}}, "humor": {"_count": 1, "gone": {"_count": 1}}, "sinking": {"_count": 1, "back": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "some": {"_count": 1, "small": {"_count": 1}}, "glistened": {"_count": 1, "with": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "whose": {"_count": 1, "name": {"_count": 1}}, "away": {"_count": 2, "quickly": {"_count": 1}, "from": {"_count": 1}}, "Then": {"_count": 1, "the": {"_count": 1}}, "streaked": {"_count": 1, "with": {"_count": 1}}, "desperate": {"_count": 1, "for": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "missing": {"_count": 1, "fragments": {"_count": 1}}, "swelling": {"_count": 1, "rapidly": {"_count": 1}}, "regained": {"_count": 1, "its": {"_count": 1}}, "up": {"_count": 1, "close": {"_count": 1}}, "waxen": {"_count": 1, "": {"_count": 1}}, "bruised": {"_count": 1, "and": {"_count": 1}}, "glared": {"_count": 1, "down": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "cut": {"_count": 1, "his": {"_count": 1}}, "beautiful": {"_count": 1, "yet": {"_count": 1}}, "how": {"_count": 1, "his": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "losing": {"_count": 1, "the": {"_count": 1}}, "hungrily": {"_count": 1, "as": {"_count": 1}}, "their": {"_count": 1, "vanquishers": {"_count": 1}}, "existed": {"_count": 1, "but": {"_count": 1}}, "jeering": {"_count": 1, "": {"_count": 1}}, "vacant": {"_count": 1, "and": {"_count": 1}}, "already": {"_count": 1, "ablaze": {"_count": 1}}}, "split": {"_count": 95, "into": {"_count": 6, "a": {"_count": 2}, "two": {"_count": 2}, "good": {"_count": 1}, "pairs": {"_count": 1}}, "second": {"_count": 40, "he": {"_count": 6}, "Uncle": {"_count": 1}, "later": {"_count": 5}, "both": {"_count": 1}, "Harry": {"_count": 12}, "": {"_count": 2}, "Malfoy": {"_count": 1}, "they": {"_count": 1}, "perhaps": {"_count": 1}, "before": {"_count": 2}, "too": {"_count": 1}, "that": {"_count": 2}, "then": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}, "Wormtail": {"_count": 1}, "seemed": {"_count": 1}}, "the": {"_count": 4, "silence": {"_count": 1}, "thousand": {"_count": 1}, "room": {"_count": 1}, "dawn": {"_count": 1}}, "open": {"_count": 7, "": {"_count": 2}, "and": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "again": {"_count": 1}, "from": {"_count": 1}}, "inter": {"_count": 1, "two": {"_count": 1}}, "in": {"_count": 8, "two": {"_count": 5}, "a": {"_count": 3}}, "up": {"_count": 11, "the": {"_count": 1}, "with": {"_count": 1}, "said": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 1}, "he": {"_count": 1}, "too": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "suddenly": {"_count": 1, "into": {"_count": 1}}, "on": {"_count": 1, "Hermiones": {"_count": 1}}, "seconds": {"_count": 3, "view": {"_count": 1}, "relief": {"_count": 1}, "hesitation": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "you": {"_count": 1, "Still": {"_count": 1}}, "itself": {"_count": 1, "instantly": {"_count": 1}}, "your": {"_count": 4, "soul": {"_count": 4}}, "his": {"_count": 1, "soul": {"_count": 1}}, "himself": {"_count": 1, "into": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "wide": {"_count": 173, "smile": {"_count": 6, "and": {"_count": 1}, "": {"_count": 4}, "appeared": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "open": {"_count": 14, "": {"_count": 9}, "rain": {"_count": 1}, "until": {"_count": 1}, "fast": {"_count": 1}, "and": {"_count": 1}, "space": {"_count": 1}}, "pale": {"_count": 1, "eyes": {"_count": 1}}, "opening": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 4, "a": {"_count": 4}}, "as": {"_count": 8, "if": {"_count": 2}, "headlights": {"_count": 1}, "those": {"_count": 1}, "a": {"_count": 1}, "though": {"_count": 2}, "he": {"_count": 1}}, "mouth": {"_count": 2, "appeared": {"_count": 1}, "but": {"_count": 1}}, "sweeping": {"_count": 1, "ones": {"_count": 1}}, "nostrils": {"_count": 1, "the": {"_count": 1}}, "eyed": {"_count": 2, "as": {"_count": 1}, "at": {"_count": 1}}, "mad": {"_count": 1, "eyes": {"_count": 1}}, "and": {"_count": 22, "he": {"_count": 1}, "staring": {"_count": 1}, "his": {"_count": 2}, "hissed": {"_count": 2}, "musclely": {"_count": 1}, "an": {"_count": 1}, "horrified": {"_count": 1}, "stretched": {"_count": 1}, "she": {"_count": 1}, "fearful": {"_count": 2}, "a": {"_count": 1}, "mouth": {"_count": 1}, "gave": {"_count": 1}, "the": {"_count": 2}, "Ron": {"_count": 1}, "swallowed": {"_count": 1}, "Snape": {"_count": 1}, "it": {"_count": 1}}, "awake": {"_count": 6, "said": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "purplish": {"_count": 1, "moors": {"_count": 1}}, "berth": {"_count": 4, "by": {"_count": 1}, "for": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "wicked": {"_count": 1, "face": {"_count": 1}}, "in": {"_count": 4, "a": {"_count": 2}, "welcome": {"_count": 1}, "the": {"_count": 1}}, "enough": {"_count": 5, "for": {"_count": 1}, "to": {"_count": 3}, "she": {"_count": 1}}, "wide": {"_count": 1, "enough": {"_count": 1}}, "scarlet": {"_count": 1, "wings": {"_count": 1}}, "toothy": {"_count": 1, "smile": {"_count": 1}}, "gleaming": {"_count": 1, "eyes": {"_count": 1}}, "grin": {"_count": 1, "hidden": {"_count": 1}}, "bald": {"_count": 1, "patches": {"_count": 1}}, "yellow": {"_count": 2, "eyes": {"_count": 1}, "underbelly": {"_count": 1}}, "eyes": {"_count": 4, "were": {"_count": 1}, "staring": {"_count": 1}, "": {"_count": 1}, "traveled": {"_count": 1}}, "shiny": {"_count": 1, "stripe": {"_count": 1}}, "oak": {"_count": 1, "trunk": {"_count": 1}}, "curving": {"_count": 1, "track": {"_count": 1}}, "malicious": {"_count": 1, "face": {"_count": 1}}, "GRYFFINDOR": {"_count": 1, "": {"_count": 1}}, "path": {"_count": 1, "around": {"_count": 1}}, "babyblue": {"_count": 1, "eyes": {"_count": 1}}, "watery": {"_count": 1, "smile": {"_count": 1}}, "plains": {"_count": 1, "of": {"_count": 1}}, "staring": {"_count": 1, "through": {"_count": 1}}, "livid": {"_count": 1, "scarlet": {"_count": 1}}, "with": {"_count": 4, "astonishment": {"_count": 1}, "terror": {"_count": 2}, "a": {"_count": 1}}, "red": {"_count": 1, "eyes": {"_count": 1}}, "purple": {"_count": 1, "one": {"_count": 1}}, "slack": {"_count": 3, "mouth": {"_count": 3}}, "silvery": {"_count": 1, "eyes": {"_count": 1}}, "rip": {"_count": 1, "near": {"_count": 1}}, "faced": {"_count": 1, "little": {"_count": 1}}, "toadlike": {"_count": 2, "mouth": {"_count": 1}, "smile": {"_count": 1}}, "selfsatisfied": {"_count": 1, "smile": {"_count": 1}}, "drive": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "protracted": {"_count": 1}}, "lap": {"_count": 1, "of": {"_count": 1}}, "toads": {"_count": 1, "mouth": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "universe": {"_count": 1, "and": {"_count": 1}}, "circles": {"_count": 1, "above": {"_count": 1}}, "selection": {"_count": 1, "of": {"_count": 1}}, "pallid": {"_count": 1, "face": {"_count": 1}}, "complacent": {"_count": 1, "smile": {"_count": 1}}, "Ginny": {"_count": 1, "stopped": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "wings": {"_count": 1, "hardly": {"_count": 1}}, "variety": {"_count": 2, "of": {"_count": 2}}, "world": {"_count": 2, "would": {"_count": 1}, "of": {"_count": 1}}, "forehead": {"_count": 1, "": {"_count": 1}}, "backseat": {"_count": 1, "": {"_count": 1}}, "blue": {"_count": 1, "sky": {"_count": 1}}, "expanse": {"_count": 1, "of": {"_count": 1}}, "driveway": {"_count": 1, "that": {"_count": 1}}, "dark": {"_count": 1, "street": {"_count": 1}}, "circle": {"_count": 1, "around": {"_count": 1}}, "dilated": {"_count": 1, "with": {"_count": 1}}, "tunnellike": {"_count": 1, "pupils": {"_count": 1}}, "flat": {"_count": 1, "marsh": {"_count": 1}}, "sky": {"_count": 1, "": {"_count": 1}}, "longlashed": {"_count": 1, "eyes": {"_count": 1}}, "proportions": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "starry": {"_count": 1, "sky": {"_count": 1}}, "shining": {"_count": 1, "eyes": {"_count": 1}}, "empty": {"_count": 1, "sea": {"_count": 1}}, "circular": {"_count": 1, "room": {"_count": 1}}, "basin": {"_count": 1, "with": {"_count": 1}}}, "smile": {"_count": 240, "and": {"_count": 13, "he": {"_count": 1}, "Ron": {"_count": 1}, "shake": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 2}, "could": {"_count": 1}, "settled": {"_count": 1}, "turned": {"_count": 1}, "was": {"_count": 1}, "hugged": {"_count": 1}, "half": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "which": {"_count": 2, "looked": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 82, ".": {"_count": 82}}, "as": {"_count": 4, "he": {"_count": 2}, "she": {"_count": 1}, "Ron": {"_count": 1}}, "lurking": {"_count": 1, "on": {"_count": 1}}, "faded": {"_count": 7, "slightly": {"_count": 1}, "off": {"_count": 2}, "from": {"_count": 2}, "slowly": {"_count": 1}, "as": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 1}, "had": {"_count": 1}, "knew": {"_count": 1}}, "flickering": {"_count": 1, "across": {"_count": 1}}, "widened": {"_count": 4, "": {"_count": 4}}, "fading": {"_count": 5, "": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 2}, "slightly": {"_count": 1}}, "that": {"_count": 5, "she": {"_count": 1}, "made": {"_count": 1}, "revealed": {"_count": 1}, "showed": {"_count": 1}, "was": {"_count": 1}}, "back": {"_count": 5, "": {"_count": 1}, "on": {"_count": 1}, "through": {"_count": 1}, "but": {"_count": 1}, "onto": {"_count": 1}}, "curled": {"_count": 3, "the": {"_count": 2}, "Snapes": {"_count": 1}}, "broadened": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 2, "gone": {"_count": 1}, "vanished": {"_count": 1}}, "was": {"_count": 5, "widening": {"_count": 1}, "back": {"_count": 1}, "a": {"_count": 1}, "widest": {"_count": 1}, "tremulous": {"_count": 1}}, "I": {"_count": 2, "havent": {"_count": 1}, "think": {"_count": 1}}, "from": {"_count": 5, "beneath": {"_count": 1}, "behind": {"_count": 1}, "the": {"_count": 1}, "Lavender": {"_count": 1}, "Dumbledores": {"_count": 1}}, "on": {"_count": 9, "his": {"_count": 5}, "her": {"_count": 4}}, "appeared": {"_count": 1, "under": {"_count": 1}}, "Lupin": {"_count": 1, "left": {"_count": 1}}, "to": {"_count": 3, "keep": {"_count": 1}, "vanish": {"_count": 1}, "Harry": {"_count": 1}}, "spread": {"_count": 2, "across": {"_count": 1}, "wider": {"_count": 1}}, "twisting": {"_count": 2, "his": {"_count": 2}}, "did": {"_count": 1, "not": {"_count": 1}}, "or": {"_count": 2, "wave": {"_count": 1}, "not": {"_count": 1}}, "still": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 9, "Im": {"_count": 1}, "she": {"_count": 1}, "gave": {"_count": 1}, "managing": {"_count": 1}, "was": {"_count": 1}, "as": {"_count": 2}, "it": {"_count": 1}, "he": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 2}}, "flickered": {"_count": 1, "very": {"_count": 1}}, "twisted": {"_count": 2, "his": {"_count": 1}, "Snape": {"_count": 1}}, "off": {"_count": 1, "Hagrid": {"_count": 1}}, "in": {"_count": 2, "return": {"_count": 1}, "response": {"_count": 1}}, "faltering": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 1, "red": {"_count": 1}}, "saw": {"_count": 1, "him": {"_count": 1}}, "upon": {"_count": 2, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "lit": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "dawning": {"_count": 1, "on": {"_count": 1}}, "lingered": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "stretching": {"_count": 2, "her": {"_count": 2}}, "naturally": {"_count": 1, "while": {"_count": 1}}, "blandly": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "she": {"_count": 2, "sat": {"_count": 1}, "stalked": {"_count": 1}}, "slipped": {"_count": 1, "slightly": {"_count": 1}}, "widening": {"_count": 1, "still": {"_count": 1}}, "spreading": {"_count": 2, "across": {"_count": 2}}, "faltered": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "wider": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "reappeared": {"_count": 1, "upon": {"_count": 1}}, "sliding": {"_count": 1, "off": {"_count": 1}}, "playing": {"_count": 2, "around": {"_count": 2}}, "benignly": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Let": {"_count": 1}}, "vanished": {"_count": 2, "as": {"_count": 1}, "from": {"_count": 1}}, "we": {"_count": 1, "thought": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "slid": {"_count": 1, "from": {"_count": 1}}, "uncertainly": {"_count": 1, "": {"_count": 1}}, "during": {"_count": 1, "this": {"_count": 1}}, "falter": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "Its": {"_count": 1, "for": {"_count": 1}}, "Hermione": {"_count": 1, "gave": {"_count": 1}}, "then": {"_count": 1, "turned": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "curved": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 1, "encouragement": {"_count": 1}}, "froze": {"_count": 1, "her": {"_count": 1}}}, "squeaky": {"_count": 12, "voice": {"_count": 4, "that": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "noise": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "little": {"_count": 4, "voice": {"_count": 4}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "impersonation": {"_count": 1, "": {"_count": 1}}}, "voice": {"_count": 1455, "that": {"_count": 35, "made": {"_count": 2}, "said": {"_count": 2}, "got": {"_count": 1}, "was": {"_count": 7}, "had": {"_count": 3}, "he": {"_count": 1}, "shouted": {"_count": 1}, "Harry": {"_count": 2}, "nevertheless": {"_count": 1}, "trembled": {"_count": 1}, "sounded": {"_count": 2}, "took": {"_count": 1}, "did": {"_count": 1}, "its": {"_count": 1}, "we": {"_count": 1}, "pulsed": {"_count": 1}, "you": {"_count": 2}, "that": {"_count": 1}, "Ron": {"_count": 1}, "tells": {"_count": 1}, "burst": {"_count": 1}, "issued": {"_count": 1}}, "trembled": {"_count": 5, "as": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}, "slightly": {"_count": 1}}, "Id": {"_count": 2, "best": {"_count": 1}, "rather": {"_count": 1}}, "said": {"_count": 21, "Brazil": {"_count": 1}, "in": {"_count": 1}, "sounding": {"_count": 1}, "Ron": {"_count": 1}, "Excuse": {"_count": 1}, "Level": {"_count": 3}, "Oy": {"_count": 1}, "Back": {"_count": 1}, "Running": {"_count": 1}, "Gilderoy": {"_count": 1}, "feebly": {"_count": 1}, "I": {"_count": 1}, "Department": {"_count": 1}, "Very": {"_count": 1}, "Ah": {"_count": 1}, "Harry": {"_count": 1}, "Cattermole": {"_count": 1}, "Potter": {"_count": 1}, "Which": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 446, ".": {"_count": 440}, "!": {"_count": 2}, "?": {"_count": 4}}, "he": {"_count": 16, "said": {"_count": 2}, "had": {"_count": 3}, "recognized": {"_count": 3}, "sacked": {"_count": 1}, "seemed": {"_count": 1}, "would": {"_count": 1}, "posed": {"_count": 1}, "looked": {"_count": 1}, "did": {"_count": 1}, "associated": {"_count": 1}, "held": {"_count": 1}}, "came": {"_count": 6, "floating": {"_count": 1}, "out": {"_count": 4}, "suddenly": {"_count": 1}}, "lots": {"_count": 1, "of": {"_count": 1}}, "echoed": {"_count": 19, "through": {"_count": 3}, "around": {"_count": 2}, "over": {"_count": 1}, "throughout": {"_count": 2}, "loudly": {"_count": 2}, "all": {"_count": 1}, "as": {"_count": 1}, "into": {"_count": 1}, "like": {"_count": 1}, "in": {"_count": 1}, "distantly": {"_count": 1}, "impressively": {"_count": 1}, "off": {"_count": 1}, "suddenly": {"_count": 1}}, "Firs": {"_count": 1, "years": {"_count": 1}}, "in": {"_count": 20, "his": {"_count": 10}, "Harrys": {"_count": 8}, "the": {"_count": 1}, "which": {"_count": 1}}, "Peeves": {"_count": 1, "show": {"_count": 1}}, "rang": {"_count": 9, "out": {"_count": 7}, "across": {"_count": 2}}, "spoke": {"_count": 13, "from": {"_count": 5}, "though": {"_count": 1}, "again": {"_count": 2}, "behind": {"_count": 1}, "within": {"_count": 1}, "inside": {"_count": 1}, "very": {"_count": 1}, "so": {"_count": 1}}, "down": {"_count": 11, "Neville": {"_count": 1}, "": {"_count": 4}, "in": {"_count": 2}, "Ron": {"_count": 1}, "implored": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "but": {"_count": 14, "his": {"_count": 1}, "Harry": {"_count": 1}, "once": {"_count": 1}, "he": {"_count": 3}, "I": {"_count": 1}, "what": {"_count": 1}, "if": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "Vernon": {"_count": 1}, "Snape": {"_count": 1}}, "from": {"_count": 42, "just": {"_count": 1}, "the": {"_count": 12}, "his": {"_count": 1}, "behind": {"_count": 13}, "inside": {"_count": 1}, "Filch": {"_count": 1}, "over": {"_count": 1}, "a": {"_count": 2}, "near": {"_count": 1}, "somewhere": {"_count": 1}, "beside": {"_count": 1}, "far": {"_count": 1}, "above": {"_count": 1}, "one": {"_count": 2}, "overhead": {"_count": 2}, "beneath": {"_count": 1}}, "shaking": {"_count": 10, "": {"_count": 4}, "with": {"_count": 1}, "slightly": {"_count": 3}, "which": {"_count": 1}, "as": {"_count": 1}}, "dropping": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 56, "getting": {"_count": 1}, "growing": {"_count": 1}, "casual": {"_count": 1}, "gone": {"_count": 1}, "laughing": {"_count": 1}, "louder": {"_count": 1}, "Scabberss": {"_count": 1}, "squeaky": {"_count": 1}, "speaking": {"_count": 1}, "continuing": {"_count": 1}, "coming": {"_count": 1}, "excited": {"_count": 1}, "higher": {"_count": 1}, "low": {"_count": 2}, "so": {"_count": 2}, "full": {"_count": 1}, "very": {"_count": 1}, "distant": {"_count": 1}, "drowned": {"_count": 1}, "filling": {"_count": 1}, "lost": {"_count": 1}, "audible": {"_count": 1}, "highpitched": {"_count": 1}, "not": {"_count": 1}, "pleased": {"_count": 1}, "familiar": {"_count": 1}, "rather": {"_count": 1}, "suddenly": {"_count": 2}, "shaking": {"_count": 2}, "extinguished": {"_count": 1}, "warbling": {"_count": 1}, "quite": {"_count": 1}, "slightly": {"_count": 1}, "carefully": {"_count": 1}, "": {"_count": 1}, "light": {"_count": 1}, "muffled": {"_count": 2}, "hoarse": {"_count": 1}, "quiet": {"_count": 1}, "icy": {"_count": 1}, "high": {"_count": 2}, "cracked": {"_count": 2}, "now": {"_count": 1}, "issuing": {"_count": 1}, "sure": {"_count": 1}, "still": {"_count": 1}, "feeble": {"_count": 1}, "heated": {"_count": 1}, "surprisingly": {"_count": 1}}, "cackled": {"_count": 1, "with": {"_count": 1}}, "icy": {"_count": 1, "": {"_count": 1}}, "cracking": {"_count": 4, "with": {"_count": 1}, "": {"_count": 1}, "turning": {"_count": 1}, "as": {"_count": 1}}, "calm": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 6, "rang": {"_count": 1}, "echoed": {"_count": 1}, "": {"_count": 2}, "became": {"_count": 1}, "sounded": {"_count": 1}}, "\u2018Oh": {"_count": 1, "Professor": {"_count": 1}}, "trailed": {"_count": 4, "away": {"_count": 4}}, "answered": {"_count": 3, "and": {"_count": 1}, "him": {"_count": 1}, "Enter": {"_count": 1}}, "seemed": {"_count": 7, "to": {"_count": 7}}, "again": {"_count": 9, "Harry": {"_count": 1}, "but": {"_count": 2}, "shut": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 1}, "he": {"_count": 1}}, "floated": {"_count": 4, "across": {"_count": 1}, "out": {"_count": 1}, "upstairs": {"_count": 1}, "after": {"_count": 1}}, "Harry": {"_count": 11, "was": {"_count": 1}, "had": {"_count": 4}, "doesnt": {"_count": 1}, "knew": {"_count": 1}, "recognized": {"_count": 1}, "could": {"_count": 1}, "did": {"_count": 1}, "turned": {"_count": 1}}, "dropped": {"_count": 2, "to": {"_count": 1}, "almost": {"_count": 1}}, "as": {"_count": 40, "oily": {"_count": 1}, "though": {"_count": 5}, "Percy": {"_count": 1}, "they": {"_count": 9}, "he": {"_count": 4}, "trained": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}, "Ron": {"_count": 1}, "youve": {"_count": 1}, "she": {"_count": 1}, "Malfoy": {"_count": 1}, "both": {"_count": 1}, "Hermione": {"_count": 1}, "Merope": {"_count": 1}, "clearly": {"_count": 1}, "pleasant": {"_count": 1}, "Harry": {"_count": 1}, "respectful": {"_count": 1}, "indifferent": {"_count": 1}, "Katies": {"_count": 1}, "level": {"_count": 1}}, "right": {"_count": 3, "behind": {"_count": 3}}, "Ill": {"_count": 2, "go": {"_count": 1}, "see": {"_count": 1}}, "somewhat": {"_count": 1, "higher": {"_count": 1}}, "wash": {"_count": 1, "over": {"_count": 1}}, "a": {"_count": 6, "voice": {"_count": 1}, "mans": {"_count": 1}, "little": {"_count": 3}, "brisk": {"_count": 1}}, "to": {"_count": 18, "chill": {"_count": 1}, "a": {"_count": 8}, "the": {"_count": 1}, "Harrys": {"_count": 1}, "Harry": {"_count": 1}, "permeate": {"_count": 1}, "Goyle": {"_count": 1}, "her": {"_count": 1}, "Pansy": {"_count": 1}, "realize": {"_count": 1}, "address": {"_count": 1}}, "of": {"_count": 26, "breathtaking": {"_count": 1}, "Draco": {"_count": 3}, "deadly": {"_count": 1}, "Macnair": {"_count": 1}, "the": {"_count": 4}, "Lord": {"_count": 1}, "Professor": {"_count": 1}, "forced": {"_count": 3}, "determined": {"_count": 2}, "Lucius": {"_count": 2}, "truth": {"_count": 1}, "contempt": {"_count": 1}, "cold": {"_count": 1}, "Kingsley": {"_count": 1}, "Rons": {"_count": 1}, "Runcorn": {"_count": 1}, "Dean": {"_count": 1}}, "low": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 10, "same": {"_count": 2}, "amazement": {"_count": 1}, "sight": {"_count": 1}, "kind": {"_count": 1}, "moment": {"_count": 2}, "class": {"_count": 1}, "plea": {"_count": 1}, "conviction": {"_count": 1}}, "no": {"_count": 2, "one": {"_count": 1}, "need": {"_count": 1}}, "I": {"_count": 6, "heard": {"_count": 1}, "need": {"_count": 1}, "feel": {"_count": 1}, "suppose": {"_count": 1}, "think": {"_count": 1}, "thought": {"_count": 1}}, "made": {"_count": 7, "Harry": {"_count": 3}, "all": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "Harrys": {"_count": 1}}, "choked": {"_count": 1, "with": {"_count": 1}}, "still": {"_count": 4, "further": {"_count": 2}, "staring": {"_count": 1}, "vibrating": {"_count": 1}}, "because": {"_count": 3, "being": {"_count": 1}, "I": {"_count": 2}}, "mysteriously": {"_count": 1, "the": {"_count": 1}}, "until": {"_count": 1, "it": {"_count": 1}}, "issued": {"_count": 2, "from": {"_count": 2}}, "which": {"_count": 6, "sounded": {"_count": 1}, "put": {"_count": 1}, "screeched": {"_count": 1}, "had": {"_count": 1}, "echoed": {"_count": 1}, "has": {"_count": 1}}, "sitting": {"_count": 1, "up": {"_count": 1}}, "echoing": {"_count": 17, "in": {"_count": 5}, "around": {"_count": 3}, "slightly": {"_count": 1}, "up": {"_count": 2}, "over": {"_count": 1}, "loudly": {"_count": 2}, "through": {"_count": 2}, "across": {"_count": 1}}, "they": {"_count": 1, "became": {"_count": 1}}, "had": {"_count": 14, "come": {"_count": 1}, "faded": {"_count": 1}, "killed": {"_count": 1}, "awoken": {"_count": 1}, "sounded": {"_count": 1}, "echoed": {"_count": 1}, "stopped": {"_count": 1}, "suddenly": {"_count": 1}, "risen": {"_count": 2}, "changed": {"_count": 1}, "become": {"_count": 1}, "caused": {"_count": 1}, "issued": {"_count": 1}}, "and": {"_count": 61, "as": {"_count": 3}, "he": {"_count": 6}, "proceeded": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 4}, "Professor": {"_count": 1}, "weaving": {"_count": 1}, "Harry": {"_count": 10}, "the": {"_count": 5}, "then": {"_count": 1}, "suddenly": {"_count": 1}, "everyone": {"_count": 1}, "wait": {"_count": 1}, "frowned": {"_count": 1}, "glancing": {"_count": 2}, "wore": {"_count": 1}, "left": {"_count": 1}, "Percy": {"_count": 1}, "she": {"_count": 2}, "looking": {"_count": 2}, "nodding": {"_count": 1}, "observe": {"_count": 1}, "that": {"_count": 1}, "Slughorn": {"_count": 1}, "swung": {"_count": 1}, "everything": {"_count": 1}, "with": {"_count": 1}, "called": {"_count": 1}, "Phineas": {"_count": 1}, "Ron": {"_count": 1}, "it": {"_count": 1}, "knew": {"_count": 1}, "Hermione": {"_count": 1}, "affection": {"_count": 1}, "none": {"_count": 1}}, "breaking": {"_count": 2, "with": {"_count": 1}, "as": {"_count": 1}}, "back": {"_count": 3, "with": {"_count": 1}, "to": {"_count": 1}, "hed": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 1}, "of": {"_count": 1}}, "inside": {"_count": 5, "the": {"_count": 1}, "his": {"_count": 2}, "Harrys": {"_count": 2}}, "magically": {"_count": 4, "magnified": {"_count": 4}}, "feeble": {"_count": 1, "": {"_count": 1}}, "steady": {"_count": 3, "": {"_count": 3}}, "now": {"_count": 15, "shaking": {"_count": 2}, "growing": {"_count": 1}, "": {"_count": 6}, "joined": {"_count": 1}, "trembling": {"_count": 1}, "sponging": {"_count": 1}, "thick": {"_count": 1}, "felt": {"_count": 1}, "Travers": {"_count": 1}}, "full": {"_count": 3, "of": {"_count": 3}}, "Kill": {"_count": 1, "him": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "how": {"_count": 2, "Hermione": {"_count": 1}, "are": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 4, "usual": {"_count": 2}, "the": {"_count": 1}, "in": {"_count": 1}}, "sounded": {"_count": 14, "in": {"_count": 1}, "as": {"_count": 1}, "muffled": {"_count": 1}, "shaky": {"_count": 1}, "anxious": {"_count": 1}, "dim": {"_count": 1}, "": {"_count": 1}, "inside": {"_count": 2}, "strangely": {"_count": 1}, "falsely": {"_count": 1}, "much": {"_count": 1}, "strange": {"_count": 1}, "loud": {"_count": 1}}, "called": {"_count": 5, "Potter": {"_count": 1}, "Harry": {"_count": 1}, "down": {"_count": 1}, "Champions": {"_count": 1}, "as": {"_count": 1}}, "you": {"_count": 3, "havent": {"_count": 1}, "are": {"_count": 1}, "definitely": {"_count": 1}}, "growled": {"_count": 1, "Cmin": {"_count": 1}}, "glancing": {"_count": 1, "nervously": {"_count": 1}}, "Somebody": {"_count": 1, "get": {"_count": 1}}, "faded": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "belonged": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 9, "that": {"_count": 7}, "low": {"_count": 2}}, "What": {"_count": 1, "else": {"_count": 1}}, "alive": {"_count": 1, "with": {"_count": 1}}, "stopped": {"_count": 1, "abruptly": {"_count": 1}}, "uncertainly": {"_count": 1, "": {"_count": 1}}, "might": {"_count": 3, "sound": {"_count": 1}, "soon": {"_count": 1}, "have": {"_count": 1}}, "laughing": {"_count": 1, "shrilly": {"_count": 1}}, "heaving": {"_count": 1, "her": {"_count": 1}}, "shouting": {"_count": 2, "panicking": {"_count": 1}, "something": {"_count": 1}}, "not": {"_count": 2, "looking": {"_count": 1}, "a": {"_count": 1}}, "Dear": {"_count": 1, "dear": {"_count": 1}}, "quite": {"_count": 2, "unlike": {"_count": 1}, "calm": {"_count": 1}}, "shook": {"_count": 9, "more": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 2}, "slightly": {"_count": 2}, "": {"_count": 1}, "with": {"_count": 2}}, "die": {"_count": 1, "in": {"_count": 1}}, "wavering": {"_count": 1, "out": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "broke": {"_count": 7, "": {"_count": 4}, "into": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}}, "light": {"_count": 1, "and": {"_count": 1}}, "looking": {"_count": 4, "down": {"_count": 1}, "at": {"_count": 1}, "up": {"_count": 1}, "first": {"_count": 1}}, "easily": {"_count": 1, "as": {"_count": 1}}, "And": {"_count": 2, "then": {"_count": 1}, "let": {"_count": 1}}, "started": {"_count": 1, "again": {"_count": 1}}, "talking": {"_count": 1, "from": {"_count": 1}}, "even": {"_count": 5, "though": {"_count": 1}, "": {"_count": 2}, "lower": {"_count": 1}, "more": {"_count": 1}}, "went": {"_count": 1, "all": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "softly": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "rising": {"_count": 13, "squeakily": {"_count": 1}, "passionately": {"_count": 1}, "uncontrollably": {"_count": 1}, "now": {"_count": 1}, "together": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "apparently": {"_count": 1}, "to": {"_count": 1}, "furiously": {"_count": 1}, "angrily": {"_count": 1}, "ominously": {"_count": 1}, "a": {"_count": 1}}, "silkily": {"_count": 1, "why": {"_count": 1}}, "changed": {"_count": 1, "": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "switched": {"_count": 1, "abruptly": {"_count": 1}}, "coolly": {"_count": 1, "": {"_count": 1}}, "growing": {"_count": 4, "steadier": {"_count": 1}, "louder": {"_count": 2}, "stronger": {"_count": 1}}, "very": {"_count": 5, "quietly": {"_count": 1}, "sarcastically": {"_count": 1}, "highpitched": {"_count": 1}, "much": {"_count": 1}, "cold": {"_count": 1}}, "barely": {"_count": 4, "audible": {"_count": 1}, "louder": {"_count": 2}, "more": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 5, "he": {"_count": 3}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "behind": {"_count": 12, "them": {"_count": 6}, "Harry": {"_count": 3}, "Dumbledore": {"_count": 1}, "him": {"_count": 2}}, "slightly": {"_count": 4, "": {"_count": 1}, "for": {"_count": 1}, "so": {"_count": 1}, "higher": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 1}, "contrast": {"_count": 1}}, "kindly": {"_count": 1, "put": {"_count": 1}}, "unlike": {"_count": 1, "any": {"_count": 1}}, "we": {"_count": 3, "heard": {"_count": 1}, "meet": {"_count": 1}, "can": {"_count": 1}}, "drifting": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 2}, "all": {"_count": 1}, "last": {"_count": 1}}, "it": {"_count": 4, "would": {"_count": 1}, "aloud": {"_count": 1}, "was": {"_count": 2}}, "much": {"_count": 1, "higher": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "unctuous": {"_count": 1, "once": {"_count": 1}}, "holding": {"_count": 1, "her": {"_count": 1}}, "nearby": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "conspiratorially": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "cracked": {"_count": 3, "like": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "quivered": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "curtly": {"_count": 1, "": {"_count": 1}}, "exploded": {"_count": 1, "through": {"_count": 1}}, "carried": {"_count": 3, "over": {"_count": 1}, "no": {"_count": 1}, "like": {"_count": 1}}, "casual": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "raised": {"_count": 1, "in": {"_count": 1}}, "flatly": {"_count": 1, "from": {"_count": 1}}, "boomed": {"_count": 3, "out": {"_count": 3}}, "pintsized": {"_count": 1, "celebrity": {"_count": 1}}, "anymore": {"_count": 1, "but": {"_count": 1}}, "But": {"_count": 1, "he": {"_count": 1}}, "perhaps": {"_count": 1, "one": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "say": {"_count": 5, "Kill": {"_count": 1}, "and": {"_count": 1}, "Cruciol": {"_count": 1}, "Good": {"_count": 1}, "who": {"_count": 1}}, "swiftly": {"_count": 1, "from": {"_count": 1}}, "drawing": {"_count": 1, "nearer": {"_count": 1}}, "be": {"_count": 1, "ready": {"_count": 1}}, "remained": {"_count": 2, "calm": {"_count": 1}, "light": {"_count": 1}}, "she": {"_count": 4, "whispered": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "adopted": {"_count": 1}}, "drowned": {"_count": 1, "Fudges": {"_count": 1}}, "He": {"_count": 1, "cant": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "Cedric": {"_count": 1, "Diggory": {"_count": 1}}, "restored": {"_count": 1, "to": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "never": {"_count": 1, "got": {"_count": 1}}, "too": {"_count": 1, "though": {"_count": 1}}, "this": {"_count": 2, "one": {"_count": 1}, "time": {"_count": 1}}, "like": {"_count": 3, "a": {"_count": 2}, "none": {"_count": 1}}, "stronger": {"_count": 2, "and": {"_count": 1}, "now": {"_count": 1}}, "distorted": {"_count": 1, "by": {"_count": 1}}, "jeering": {"_count": 1, "in": {"_count": 1}}, "defiantly": {"_count": 1, "": {"_count": 1}}, "fairly": {"_count": 1, "maybe": {"_count": 1}}, "his": {"_count": 2, "arms": {"_count": 1}, "eyes": {"_count": 1}}, "maybe": {"_count": 1, "Lord": {"_count": 1}}, "tugging": {"_count": 1, "at": {"_count": 1}}, "Come": {"_count": 1, "here": {"_count": 1}}, "laying": {"_count": 1, "down": {"_count": 1}}, "quivering": {"_count": 1, "with": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "dramatically": {"_count": 1, "at": {"_count": 1}}, "sinking": {"_count": 1, "into": {"_count": 1}}, "though": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "while": {"_count": 4, "Fudge": {"_count": 1}, "the": {"_count": 2}, "Hagrid": {"_count": 1}}, "became": {"_count": 1, "suddenly": {"_count": 1}}, "high": {"_count": 1, "pitched": {"_count": 1}}, "throbbing": {"_count": 1, "with": {"_count": 1}}, "amid": {"_count": 1, "the": {"_count": 1}}, "late": {"_count": 1, "that": {"_count": 1}}, "This": {"_count": 1, "is": {"_count": 1}}, "trembling": {"_count": 3, "slightly": {"_count": 2}, "": {"_count": 1}}, "retreating": {"_count": 1, "behind": {"_count": 1}}, "dipping": {"_count": 1, "the": {"_count": 1}}, "Is": {"_count": 1, "Arthur": {"_count": 1}}, "giving": {"_count": 1, "a": {"_count": 1}}, "before": {"_count": 2, "issuing": {"_count": 1}, "turning": {"_count": 1}}, "weak": {"_count": 1, "with": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "without": {"_count": 1, "asking": {"_count": 1}}, "what": {"_count": 2, "were": {"_count": 1}, "are": {"_count": 1}}, "patting": {"_count": 1, "his": {"_count": 1}}, "about": {"_count": 1, "having": {"_count": 1}}, "fury": {"_count": 1, "now": {"_count": 1}}, "helping": {"_count": 1, "Harry": {"_count": 1}}, "hes": {"_count": 1, "actually": {"_count": 1}}, "also": {"_count": 1, "gazing": {"_count": 1}}, "calling": {"_count": 1, "his": {"_count": 1}}, "It": {"_count": 2, "must": {"_count": 1}, "was": {"_count": 1}}, "thinner": {"_count": 1, "and": {"_count": 1}}, "hoarse": {"_count": 1, "with": {"_count": 1}}, "sounding": {"_count": 1, "callously": {"_count": 1}}, "taking": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "positively": {"_count": 1, "sagging": {"_count": 1}}, "becoming": {"_count": 2, "more": {"_count": 2}}, "are": {"_count": 1, "you": {"_count": 1}}, "Give": {"_count": 1, "it": {"_count": 1}}, "mutter": {"_count": 1, "right": {"_count": 1}}, "pressing": {"_count": 1, "her": {"_count": 1}}, "backing": {"_count": 1, "away": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "carrying": {"_count": 1, "clearly": {"_count": 1}}, "empty": {"_count": 1, "of": {"_count": 1}}, "er": {"_count": 1, "": {"_count": 1}}, "crashing": {"_count": 1, "through": {"_count": 1}}, "grew": {"_count": 1, "fainter": {"_count": 1}}, "Hermy": {"_count": 1, "": {"_count": 1}}, "urging": {"_count": 1, "Neville": {"_count": 1}}, "faltered": {"_count": 1, "as": {"_count": 1}}, "Youre": {"_count": 1, "dead": {"_count": 1}}, "responded": {"_count": 1, "at": {"_count": 1}}, "dismissively": {"_count": 1, "from": {"_count": 1}}, "delicately": {"_count": 1, "inflected": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "reproachfully": {"_count": 1, "": {"_count": 1}}, "tailed": {"_count": 5, "away": {"_count": 5}}, "issuing": {"_count": 1, "from": {"_count": 1}}, "could": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "burst": {"_count": 1, "out": {"_count": 1}}, "overhead": {"_count": 1, "said": {"_count": 1}}, "unmistakable": {"_count": 1, "": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "making": {"_count": 1, "it": {"_count": 1}}, "advancing": {"_count": 1, "a": {"_count": 1}}, "moving": {"_count": 1, "forward": {"_count": 1}}, "spinning": {"_count": 1, "on": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "Yes": {"_count": 1, "sir": {"_count": 1}}, "gentle": {"_count": 2, "": {"_count": 2}}, "Ron": {"_count": 3, "seems": {"_count": 1}, "and": {"_count": 1}, "started": {"_count": 1}}, "tailing": {"_count": 1, "away": {"_count": 1}}, "friendly": {"_count": 1, "wont": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "Farewell": {"_count": 1, "Aragog": {"_count": 1}}, "rose": {"_count": 1, "rather": {"_count": 1}}, "reasonable": {"_count": 1, "sir": {"_count": 1}}, "strained": {"_count": 1, "": {"_count": 1}}, "shouted": {"_count": 1, "Theyve": {"_count": 1}}, "shout": {"_count": 1, "Its": {"_count": 1}}, "however": {"_count": 1, "that": {"_count": 1}}, "uncharacteristically": {"_count": 1, "harsh": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}, "cold": {"_count": 1, "now": {"_count": 1}}, "constricted": {"_count": 1, "with": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "yelled": {"_count": 2, "Oi": {"_count": 1}, "HARRY": {"_count": 1}}, "Dad": {"_count": 1, "Im": {"_count": 1}}, "screeched": {"_count": 1, "Hurry": {"_count": 1}}, "ringing": {"_count": 1, "through": {"_count": 1}}, "screamed": {"_count": 1, "inside": {"_count": 1}}, "Well": {"_count": 1, "happy": {"_count": 1}}, "mopping": {"_count": 1, "her": {"_count": 1}}, "stiff": {"_count": 1, "with": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "whispered": {"_count": 1, "out": {"_count": 1}}, "Your": {"_count": 1, "scar": {"_count": 1}}, "asked": {"_count": 2, "Severus": {"_count": 1}, "again": {"_count": 1}}, "begging": {"_count": 1, "for": {"_count": 1}}, "flicking": {"_count": 1, "through": {"_count": 1}}, "Atrium": {"_count": 1, "": {"_count": 1}}, "harsh": {"_count": 1, "": {"_count": 1}}, "rougher": {"_count": 1, "and": {"_count": 1}}, "unusually": {"_count": 1, "high": {"_count": 1}}, "Hold": {"_count": 1, "him": {"_count": 1}}, "well": {"_count": 1, "Ill": {"_count": 1}}, "frozen": {"_count": 1, "in": {"_count": 1}}, "would": {"_count": 1, "tell": {"_count": 1}}, "weaker": {"_count": 1, "than": {"_count": 1}}, "hissed": {"_count": 1, "from": {"_count": 1}}, "grateful": {"_count": 1, "for": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 1, "to": {"_count": 1}}, "deep": {"_count": 1, "measured": {"_count": 1}}, "State": {"_count": 1, "your": {"_count": 1}}, "wound": {"_count": 1, "Harrys": {"_count": 1}}, "Dobby": {"_count": 1, "has": {"_count": 1}}, "Yeah": {"_count": 2, "": {"_count": 1}, "youve": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "extinguished": {"_count": 1}}, "brittle": {"_count": 1, "": {"_count": 1}}, "desperate": {"_count": 1, "and": {"_count": 1}}, "see": {"_count": 1, "a": {"_count": 1}}, "reverberated": {"_count": 1, "from": {"_count": 1}}, "valiantly": {"_count": 1, "": {"_count": 1}}, "James": {"_count": 1, "tried": {"_count": 1}}, "heavy": {"_count": 1, "with": {"_count": 1}}, "audible": {"_count": 1, "even": {"_count": 1}}, "shriek": {"_count": 1, "as": {"_count": 1}}, "drifted": {"_count": 1, "back": {"_count": 1}}}, "passersby": {"_count": 9, "stare": {"_count": 1, "Dont": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "behind": {"_count": 1, "a": {"_count": 1}}, "actually": {"_count": 1, "turned": {"_count": 1}}, "were": {"_count": 1, "looking": {"_count": 1}}, "pleading": {"_count": 1, "for": {"_count": 1}}, "gathered": {"_count": 1, "their": {"_count": 1}}}, "stare": {"_count": 54, "Dont": {"_count": 1, "be": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "at": {"_count": 24, "the": {"_count": 8}, "Ron": {"_count": 2}, "Harry": {"_count": 2}, "him": {"_count": 3}, "them": {"_count": 1}, "Sirius": {"_count": 1}, "Professor": {"_count": 1}, "her": {"_count": 3}, "Albus": {"_count": 1}, "Ginnys": {"_count": 1}, "Hermione": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "of": {"_count": 1, "Mrs": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}, "and": {"_count": 3, "all": {"_count": 1}, "said": {"_count": 1}, "by": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "down": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "which": {"_count": 1, "took": {"_count": 1}}, "closely": {"_count": 2, "at": {"_count": 2}}, "up": {"_count": 1, "into": {"_count": 1}}, "unseeingly": {"_count": 1, "at": {"_count": 1}}, "aimlessly": {"_count": 1, "around": {"_count": 1}}, "avidly": {"_count": 1, "at": {"_count": 1}}, "while": {"_count": 1, "her": {"_count": 1}}, "incredulously": {"_count": 1, "at": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "blankly": {"_count": 1, "at": {"_count": 1}}}, "Dont": {"_count": 347, "be": {"_count": 50, "sorry": {"_count": 1}, "silly": {"_count": 13}, "stupid": {"_count": 15}, "afraid": {"_count": 1}, "a": {"_count": 3}, "so": {"_count": 5}, "thick": {"_count": 3}, "ridiculous": {"_count": 4}, "tempted": {"_count": 1}, "scared": {"_count": 1}, "squeamish": {"_count": 1}, "": {"_count": 1}, "shocked": {"_count": 1}}, "ask": {"_count": 7, "questions": {"_count": 3}, "me": {"_count": 3}, "Harry": {"_count": 1}}, "touch": {"_count": 4, "anything": {"_count": 1}, "it": {"_count": 2}, "if": {"_count": 1}}, "do": {"_count": 5, "that": {"_count": 2}, "any": {"_count": 1}, "anything": {"_count": 1}, "it": {"_count": 1}}, "worry": {"_count": 29, "about": {"_count": 10}, "ickle": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 2}, "dear": {"_count": 1}, "": {"_count": 4}, "Dad": {"_count": 1}, "he": {"_count": 1}, "Sirius": {"_count": 1}, "though": {"_count": 1}, "Harry": {"_count": 1}, "Ill": {"_count": 2}, "sir": {"_count": 1}, "none": {"_count": 1}, "Dumbledore": {"_count": 1}}, "make": {"_count": 3, "me": {"_count": 2}, "us": {"_count": 1}}, "talk": {"_count": 7, "rubbish": {"_count": 1}, "to": {"_count": 5}, "now": {"_count": 1}}, "stop": {"_count": 1, "and": {"_count": 1}}, "Ginny": {"_count": 1, "well": {"_count": 1}}, "tell": {"_count": 9, "me": {"_count": 7}, "your": {"_count": 1}, "us": {"_count": 1}}, "know": {"_count": 7, "why": {"_count": 1}, "when": {"_count": 2}, "what": {"_count": 2}, "": {"_count": 1}, "anything": {"_count": 1}}, "push": {"_count": 4, "it": {"_count": 1}, "me": {"_count": 2}, "there": {"_count": 1}}, "you": {"_count": 67, "care": {"_count": 2}, "think": {"_count": 9}, "understand": {"_count": 5}, "call": {"_count": 1}, "people": {"_count": 1}, "want": {"_count": 6}, "say": {"_count": 1}, "smirk": {"_count": 1}, "know": {"_count": 1}, "dare": {"_count": 9}, "see": {"_count": 3}, "lie": {"_count": 1}, "": {"_count": 2}, "go": {"_count": 3}, "be": {"_count": 1}, "point": {"_count": 1}, "Amelia": {"_count": 1}, "do": {"_count": 1}, "have": {"_count": 1}, "remember": {"_count": 5}, "get": {"_count": 3}, "blame": {"_count": 1}, "ever": {"_count": 1}, "realize": {"_count": 2}, "take": {"_count": 1}, "start": {"_count": 1}, "tell": {"_count": 1}, "Harry": {"_count": 1}, "worry": {"_count": 1}}, "leave": {"_count": 5, "me": {"_count": 2}, "the": {"_count": 2}, "it": {"_count": 1}}, "mess": {"_count": 2, "with": {"_count": 2}}, "send": {"_count": 2, "me": {"_count": 2}}, "go": {"_count": 8, "back": {"_count": 1}, "biting": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 1}, "blaming": {"_count": 1}, "downstairs": {"_count": 1}, "calling": {"_count": 1}, "wasting": {"_count": 1}}, "play": {"_count": 1, "said": {"_count": 1}}, "nag": {"_count": 1, "": {"_count": 1}}, "want": {"_count": 4, "to": {"_count": 3}, "much": {"_count": 1}}, "Harry": {"_count": 2, "advised": {"_count": 1}, "said": {"_count": 1}}, "what": {"_count": 1, "are": {"_count": 1}}, "fidget": {"_count": 1, "said": {"_count": 1}}, "lie": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "mind": {"_count": 3, "Nick": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 1}}, "move": {"_count": 3, "Potter": {"_count": 1}, "your": {"_count": 1}, "": {"_count": 1}}, "swing": {"_count": 1, "your": {"_count": 1}}, "let": {"_count": 12, "the": {"_count": 1}, "that": {"_count": 1}, "Malfoy": {"_count": 1}, "Percy": {"_count": 1}, "go": {"_count": 1}, "him": {"_count": 2}, "Ron": {"_count": 1}, "her": {"_count": 1}, "Lavender": {"_count": 1}, "me": {"_count": 1}, "it": {"_count": 1}}, "say": {"_count": 9, "anything": {"_count": 1}, "his": {"_count": 2}, "that": {"_count": 4}, "Ill": {"_count": 1}, "the": {"_count": 1}}, "rise": {"_count": 2, "Aunt": {"_count": 1}, "Hermione": {"_count": 1}}, "never": {"_count": 1, "insult": {"_count": 1}}, "beat": {"_count": 1, "yourself": {"_count": 1}}, "bother": {"_count": 2, "with": {"_count": 1}, "said": {"_count": 1}}, "forget": {"_count": 6, "to": {"_count": 2}, "what": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}, "Hagrids": {"_count": 1}}, "bring": {"_count": 1, "him": {"_count": 1}}, "get": {"_count": 4, "excited": {"_count": 1}, "complacent": {"_count": 1}, "used": {"_count": 1}, "too": {"_count": 1}}, "expect": {"_count": 2, "me": {"_count": 2}}, "give": {"_count": 1, "up": {"_count": 1}}, "complain": {"_count": 1, "this": {"_count": 1}}, "think": {"_count": 6, "she": {"_count": 1}, "about": {"_count": 1}, "it": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 2}}, "come": {"_count": 1, "down": {"_count": 1}}, "mention": {"_count": 2, "anything": {"_count": 1}, "it": {"_count": 1}}, "remember": {"_count": 1, "asking": {"_count": 1}}, "use": {"_count": 1, "Hedwig": {"_count": 1}}, "apologize": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 3}, ".": {"_count": 2}}, "laugh": {"_count": 1, "Just": {"_count": 1}}, "call": {"_count": 7, "him": {"_count": 1}, "me": {"_count": 1}, "her": {"_count": 2}, "them": {"_count": 1}, "Hermione": {"_count": 1}, "yourself": {"_count": 1}}, "vant": {"_count": 1, "to": {"_count": 1}}, "break": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "boys": {"_count": 1}}, "kill": {"_count": 3, "Cedric": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}}, "ever": {"_count": 1, "talk": {"_count": 1}}, "put": {"_count": 3, "it": {"_count": 1}, "your": {"_count": 2}}, "they": {"_count": 2, "think": {"_count": 1}, "realize": {"_count": 1}}, "kid": {"_count": 1, "yourself": {"_count": 1}}, "we": {"_count": 1, "all": {"_count": 1}}, "lose": {"_count": 1, "your": {"_count": 1}}, "often": {"_count": 1, "see": {"_count": 1}}, "pay": {"_count": 1, "any": {"_count": 1}}, "start": {"_count": 3, "arguing": {"_count": 1}, "crying": {"_count": 1}, "Hermione": {"_count": 1}}, "look": {"_count": 4, "at": {"_count": 3}, "like": {"_count": 1}}, "sit": {"_count": 1, "there": {"_count": 1}}, "blame": {"_count": 1, "you": {"_count": 1}}, "Stun": {"_count": 1, "them": {"_count": 1}}, "waste": {"_count": 1, "your": {"_count": 1}}, "count": {"_count": 1, "your": {"_count": 1}}, "dont": {"_count": 1, "dont": {"_count": 1}}, "argue": {"_count": 1, "": {"_count": 1}}, "drink": {"_count": 1, "that": {"_count": 1}}, "pretend": {"_count": 2, "you": {"_count": 1}, "Runcorn": {"_count": 1}}, "cry": {"_count": 1, "Mum": {"_count": 1}}, "try": {"_count": 3, "and": {"_count": 1}, "anything": {"_count": 1}, "to": {"_count": 1}}, "crooned": {"_count": 1, "Moaning": {"_count": 1}}, "hurt": {"_count": 2, "them": {"_count": 1}, "em": {"_count": 1}}, "these": {"_count": 1, "people": {"_count": 1}}, "take": {"_count": 1, "it": {"_count": 1}}, "believe": {"_count": 1, "a": {"_count": 1}}, "listen": {"_count": 2, "to": {"_count": 2}}, "exaggerate": {"_count": 1, "Ron": {"_count": 1}}, "even": {"_count": 1, "think": {"_count": 1}}, "duel": {"_count": 1, "anyone": {"_count": 1}}}, "sorry": {"_count": 260, "my": {"_count": 1, "dear": {"_count": 1}}, "that": {"_count": 8, "Mrs": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}, "there": {"_count": 1}, "Potter": {"_count": 1}, "Sirius": {"_count": 1}, "they": {"_count": 1}, "Dumbledore": {"_count": 1}}, "but": {"_count": 12, "I": {"_count": 4}, "shell": {"_count": 1}, "wheres": {"_count": 1}, "you": {"_count": 1}, "isnt": {"_count": 1}, "thats": {"_count": 2}, "a": {"_count": 1}, "we": {"_count": 1}}, "": {"_count": 47, "!": {"_count": 15}, ".": {"_count": 26}, "?": {"_count": 6}}, "I": {"_count": 17, "mean": {"_count": 3}, "ever": {"_count": 1}, "didnt": {"_count": 2}, "gave": {"_count": 1}, "knew": {"_count": 1}, "dont": {"_count": 1}, "had": {"_count": 2}, "forgot": {"_count": 1}, "cant": {"_count": 1}, "left": {"_count": 1}, "said": {"_count": 1}, "am": {"_count": 1}, "was": {"_count": 1}}, "said": {"_count": 12, "the": {"_count": 1}, "Draco": {"_count": 1}, "Hagrid": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 3}, "Ron": {"_count": 3}}, "at": {"_count": 1, "all": {"_count": 1}}, "for": {"_count": 18, "an": {"_count": 1}, "himself": {"_count": 1}, "": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 3}, "Neville": {"_count": 1}, "her": {"_count": 1}, "Snape": {"_count": 1}, "Luna": {"_count": 1}, "me": {"_count": 1}, "Lord": {"_count": 1}, "how": {"_count": 1}, "Dumbledores": {"_count": 1}, "Xenophilius": {"_count": 1}}, "YouKnowWho": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 27, "say": {"_count": 2}, "bother": {"_count": 1}, "tell": {"_count": 1}, "see": {"_count": 2}, "interrupt": {"_count": 2}, "hear": {"_count": 6}, "find": {"_count": 1}, "get": {"_count": 1}, "have": {"_count": 2}, "come": {"_count": 1}, "leave": {"_count": 1}, "depart": {"_count": 1}, "disturb": {"_count": 2}, "believe": {"_count": 1}, "break": {"_count": 1}, "let": {"_count": 1}, "take": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "Weasley": {"_count": 1, "didnt": {"_count": 1}}, "Hagrid": {"_count": 1, "added": {"_count": 1}}, "Harry": {"_count": 16, "": {"_count": 2}, "but": {"_count": 3}, "began": {"_count": 1}, "mumbled": {"_count": 2}, "didnt": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 5}, "Lupin": {"_count": 1}}, "about": {"_count": 7, "this": {"_count": 2}, "that": {"_count": 3}, "your": {"_count": 1}, "Scabbers": {"_count": 1}}, "your": {"_count": 1, "bloodiness": {"_count": 1}}, "he": {"_count": 11, "whispered": {"_count": 1}, "said": {"_count": 4}, "muttered": {"_count": 2}, "finished": {"_count": 1}, "was": {"_count": 2}, "told": {"_count": 1}}, "with": {"_count": 1, "YouKnowWho": {"_count": 1}}, "or": {"_count": 1, "happy": {"_count": 1}}, "theres": {"_count": 1, "every": {"_count": 1}}, "dozed": {"_count": 1, "off": {"_count": 1}}, "you": {"_count": 6, "hadnt": {"_count": 1}, "had": {"_count": 1}, "dont": {"_count": 1}, "couldnt": {"_count": 2}, "think": {"_count": 1}}, "boys": {"_count": 1, "but": {"_count": 1}}, "shed": {"_count": 1, "ever": {"_count": 1}}, "Hullo": {"_count": 1, "Neville": {"_count": 1}}, "Lavender": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "but": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "expecto": {"_count": 1, "patronum": {"_count": 1}}, "dear": {"_count": 2, "boy": {"_count": 1}, "": {"_count": 1}}, "thats": {"_count": 1, "Fred": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "Arry": {"_count": 1, "He": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "sir": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "Professor": {"_count": 2, "he": {"_count": 1}, "Black": {"_count": 1}}, "Here": {"_count": 1, "dear": {"_count": 1}}, "lads": {"_count": 1, "but": {"_count": 1}}, "what": {"_count": 1, "must": {"_count": 1}}, "tale": {"_count": 1, "": {"_count": 1}}, "theyve": {"_count": 1, "gone": {"_count": 1}}, "Marietta": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 3, "mumbled": {"_count": 1}, "my": {"_count": 1}, "said": {"_count": 1}}, "He": {"_count": 2, "pulled": {"_count": 1}, "addressed": {"_count": 1}}, "no": {"_count": 1, "of": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "Malfoy": {"_count": 1, "was": {"_count": 1}}, "cried": {"_count": 1, "Hermione": {"_count": 1}}, "youre": {"_count": 1, "going": {"_count": 1}}, "everyone": {"_count": 1, "said": {"_count": 1}}, "Grawp": {"_count": 1, "I": {"_count": 1}}, "Longbottom": {"_count": 2, "but": {"_count": 2}}, "Ive": {"_count": 1, "bin": {"_count": 1}}, "Dunderbore": {"_count": 1, "": {"_count": 1}}, "Demelza": {"_count": 1, "really": {"_count": 1}}, "suggested": {"_count": 1, "Harry": {"_count": 1}}, "dears": {"_count": 1, "but": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "centaur": {"_count": 1}}, "hed": {"_count": 1, "done": {"_count": 1}}, "James": {"_count": 1, "was": {"_count": 1}}, "Bill": {"_count": 1, "whispered": {"_count": 1}}, "Im": {"_count": 4, "sorry": {"_count": 2}, "so": {"_count": 1}, "really": {"_count": 1}}, "moaned": {"_count": 1, "Hagrid": {"_count": 1}}, "Ill": {"_count": 1, "explain": {"_count": 1}}, "hissed": {"_count": 1, "Hermione": {"_count": 1}}, "Runcorn": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 1}, "whispered": {"_count": 1}}, "very": {"_count": 1, "sorry": {"_count": 1}}, "Dad": {"_count": 1, "Percy": {"_count": 1}}, "Tuney": {"_count": 1, "Im": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}}, "my": {"_count": 1681, "dear": {"_count": 44, "sir": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 6}, "you": {"_count": 2}, "boy": {"_count": 6}, "she": {"_count": 4}, "the": {"_count": 1}, "but": {"_count": 1}, "stalking": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 2}, "that": {"_count": 2}, "said": {"_count": 3}, "fellow": {"_count": 1}, "Nagini": {"_count": 1}, "mother": {"_count": 1}, "coming": {"_count": 1}, "friend": {"_count": 1}, "cousin": {"_count": 2}, "man": {"_count": 1}, "brother": {"_count": 1}, "Molly": {"_count": 1}, "chap": {"_count": 1}, "beams": {"_count": 1}}, "way": {"_count": 5, "here": {"_count": 1}, "Id": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}, "downstairs": {"_count": 1}}, "new": {"_count": 3, "earmuffs": {"_count": 1}, "books": {"_count": 1}, "target": {"_count": 1}}, "life": {"_count": 30, "said": {"_count": 2}, "to": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 15}, "campaigning": {"_count": 1}, "those": {"_count": 1}, "and": {"_count": 2}, "were": {"_count": 1}, "with": {"_count": 1}, "can": {"_count": 1}, "last": {"_count": 1}, "than": {"_count": 1}, "would": {"_count": 1}, "here": {"_count": 1}}, "left": {"_count": 1, "knee": {"_count": 1}}, "goodness": {"_count": 4, "Vernon": {"_count": 1}, "yes": {"_count": 1}, "said": {"_count": 1}, "she": {"_count": 1}}, "letter": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}}, "cupboard": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "mom": {"_count": 1, "and": {"_count": 1}}, "owl": {"_count": 2, "": {"_count": 1}, "shes": {"_count": 1}}, "dratted": {"_count": 1, "sister": {"_count": 1}}, "mother": {"_count": 42, "and": {"_count": 3}, "because": {"_count": 1}, "died": {"_count": 3}, "was": {"_count": 3}, "Potter": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}, "left": {"_count": 1}, "": {"_count": 8}, "it": {"_count": 1}, "but": {"_count": 1}, "snapped": {"_count": 1}, "out": {"_count": 1}, "shell": {"_count": 1}, "like": {"_count": 1}, "understand": {"_count": 1}, "Your": {"_count": 1}, "Professor": {"_count": 1}, "Of": {"_count": 1}, "lessons": {"_count": 1}, "looked": {"_count": 1}, "I": {"_count": 1}, "wasnt": {"_count": 1}, "fell": {"_count": 1}, "gave": {"_count": 1}, "did": {"_count": 1}}, "opinion": {"_count": 4, "asked": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}}, "eyes": {"_count": 8, "Ill": {"_count": 1}, "said": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 2}, "out": {"_count": 1}, "shut": {"_count": 1}, "when": {"_count": 1}}, "soul": {"_count": 4, "whispered": {"_count": 1}, "back": {"_count": 1}, "would": {"_count": 1}, "Dumbledore": {"_count": 1}}, "jobs": {"_count": 1, "worth": {"_count": 1}}, "books": {"_count": 6, "and": {"_count": 1}, "so": {"_count": 1}, "there": {"_count": 1}, "well": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "House": {"_count": 8, "and": {"_count": 2}, "you": {"_count": 1}, "Dolores": {"_count": 1}, "": {"_count": 3}, "but": {"_count": 1}}, "parents": {"_count": 28, "died": {"_count": 2}, "or": {"_count": 1}, "": {"_count": 8}, "remember": {"_count": 1}, "said": {"_count": 1}, "are": {"_count": 1}, "yes": {"_count": 1}, "house": {"_count": 2}, "with": {"_count": 1}, "thought": {"_count": 1}, "could": {"_count": 1}, "snarled": {"_count": 1}, "that": {"_count": 1}, "graves": {"_count": 1}, "memories": {"_count": 1}, "all": {"_count": 1}, "son": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}}, "ticket": {"_count": 1, "": {"_count": 1}}, "toad": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "dad": {"_count": 20, "for": {"_count": 1}, "Harry": {"_count": 1}, "did": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 7}, "wouldve": {"_count": 1}, "whod": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}, "dont": {"_count": 1}, "like": {"_count": 1}}, "familys": {"_count": 1, "magic": {"_count": 1}}, "names": {"_count": 5, "Malfoy": {"_count": 1}, "funny": {"_count": 1}, "cleared": {"_count": 1}, "Arthur": {"_count": 1}, "Barny": {"_count": 1}}, "gran": {"_count": 2, "brought": {"_count": 1}, "talk": {"_count": 1}}, "guard": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Great": {"_count": 1, "Auntie": {"_count": 1}}, "sheets": {"_count": 1, "": {"_count": 1}}, "class": {"_count": 5, "will": {"_count": 1}, "has": {"_count": 1}, "": {"_count": 1}, "Mr": {"_count": 1}, "with": {"_count": 1}}, "birthday": {"_count": 5, "": {"_count": 3}, "in": {"_count": 1}, "last": {"_count": 1}}, "Remembrall": {"_count": 1, "Professor": {"_count": 1}}, "whistle": {"_count": 7, "you": {"_count": 1}, "three": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}, "shouted": {"_count": 1}}, "time": {"_count": 5, "at": {"_count": 2}, "said": {"_count": 1}, "tonight": {"_count": 1}, "": {"_count": 1}}, "mind": {"_count": 17, "about": {"_count": 1}, "with": {"_count": 1}, "when": {"_count": 1}, "seemed": {"_count": 1}, "is": {"_count": 1}, "like": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 2}, "he": {"_count": 2}, "Im": {"_count": 1}, "now": {"_count": 1}, "said": {"_count": 1}, "muttered": {"_count": 1}}, "own": {"_count": 42, "said": {"_count": 1}, "you": {"_count": 1}, "House": {"_count": 1}, "": {"_count": 6}, "Bet": {"_count": 1}, "range": {"_count": 1}, "business": {"_count": 1}, "and": {"_count": 2}, "Gringotts": {"_count": 1}, "sons": {"_count": 1}, "mother": {"_count": 1}, "she": {"_count": 1}, "too": {"_count": 1}, "superiors": {"_count": 1}, "thanks": {"_count": 1}, "eyes": {"_count": 1}, "a": {"_count": 1}, "invention": {"_count": 1}, "my": {"_count": 1}, "though": {"_count": 1}, "house": {"_count": 1}, "neck": {"_count": 1}, "of": {"_count": 1}, "jam": {"_count": 1}, "lunch": {"_count": 1}, "all": {"_count": 1}, "place": {"_count": 1}, "sister": {"_count": 1}, "prodigious": {"_count": 1}, "unassuming": {"_count": 1}, "spells": {"_count": 1}, "experiences": {"_count": 1}, "condition": {"_count": 1}, "front": {"_count": 1}, "brother": {"_count": 1}, "account": {"_count": 1}}, "second": {"_count": 2, "": {"_count": 1}, "cousin": {"_count": 1}}, "wand": {"_count": 39, "and": {"_count": 3}, "my": {"_count": 1}, "It": {"_count": 1}, "to": {"_count": 1}, "ah": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 10}, "Im": {"_count": 1}, "I": {"_count": 1}, "My": {"_count": 1}, "hidden": {"_count": 1}, "in": {"_count": 1}, "wasnt": {"_count": 1}, "but": {"_count": 2}, "arm": {"_count": 1}, "Lucius": {"_count": 1}, "spun": {"_count": 1}, "did": {"_count": 1}, "Hermione": {"_count": 2}, "connected": {"_count": 1}, "had": {"_count": 1}, "here": {"_count": 1}, "youre": {"_count": 1}, "break": {"_count": 1}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}}, "sweet": {"_count": 3, "they": {"_count": 1}, "His": {"_count": 1}, "": {"_count": 1}}, "head": {"_count": 20, "open": {"_count": 1}, "thanks": {"_count": 1}, "had": {"_count": 1}, "down": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 1}, "My": {"_count": 1}, "feels": {"_count": 1}, "for": {"_count": 1}, "I": {"_count": 3}, "off": {"_count": 1}, "not": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "Harry": {"_count": 1}}, "orders": {"_count": 4, "": {"_count": 3}, "He": {"_count": 1}}, "book": {"_count": 11, "back": {"_count": 1}, "Magical": {"_count": 1}, "": {"_count": 6}, "will": {"_count": 1}, "people": {"_count": 1}, "for": {"_count": 1}}, "broomstick": {"_count": 2, "he": {"_count": 1}, "Where": {"_count": 1}}, "aunt": {"_count": 6, "and": {"_count": 6}}, "possession": {"_count": 4, "before": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}, "on": {"_count": 1}}, "house": {"_count": 12, "this": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "you": {"_count": 1}, "I": {"_count": 1}, "Kingsleys": {"_count": 1}, "Ron": {"_count": 1}, "all": {"_count": 1}, "Bella": {"_count": 1}}, "family": {"_count": 15, "are": {"_count": 1}, "And": {"_count": 1}, "back": {"_count": 1}, "Im": {"_count": 1}, "for": {"_count": 2}, "but": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 2}, "knew": {"_count": 1}, "in": {"_count": 1}, "tree": {"_count": 1}, "\u2018the": {"_count": 1}, "left": {"_count": 1}}, "fault": {"_count": 37, "said": {"_count": 3}, "retorted": {"_count": 1}, "": {"_count": 15}, "isnt": {"_count": 1}, "if": {"_count": 2}, "he": {"_count": 2}, "you": {"_count": 1}, "I": {"_count": 2}, "You": {"_count": 1}, "Fred": {"_count": 1}, "that": {"_count": 1}, "Slughorn": {"_count": 1}, "shes": {"_count": 1}, "No": {"_count": 1}, "all": {"_count": 1}, "hurt": {"_count": 1}, "its": {"_count": 1}, "Hermione": {"_count": 1}}, "hand": {"_count": 10, "he": {"_count": 1}, "now": {"_count": 1}, "slips": {"_count": 1}, "in": {"_count": 1}, "would": {"_count": 1}, "sliced": {"_count": 1}, "They": {"_count": 1}, "and": {"_count": 2}, "Ron": {"_count": 1}}, "boot": {"_count": 1, "jus": {"_count": 1}}, "office": {"_count": 46, "keep": {"_count": 1}, "he": {"_count": 1}, "getting": {"_count": 1}, "she": {"_count": 1}, "when": {"_count": 2}, "examining": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 6}, "please": {"_count": 1}, "I": {"_count": 2}, "with": {"_count": 1}, "thats": {"_count": 1}, "pretty": {"_count": 1}, "one": {"_count": 1}, "was": {"_count": 1}, "Potter": {"_count": 1}, "or": {"_count": 1}, "into": {"_count": 1}, "said": {"_count": 4}, "tell": {"_count": 1}, "first": {"_count": 1}, "as": {"_count": 1}, "until": {"_count": 1}, "to": {"_count": 1}, "shortly": {"_count": 1}, "would": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 3}, "forthwith": {"_count": 1}, "Cattermole": {"_count": 1}, "is": {"_count": 1}, "tonight": {"_count": 1}}, "father": {"_count": 38, "knew": {"_count": 2}, "": {"_count": 9}, "Marvolo": {"_count": 1}, "he": {"_count": 1}, "told": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 4}, "into": {"_count": 1}, "that": {"_count": 1}, "had": {"_count": 1}, "kept": {"_count": 1}, "was": {"_count": 2}, "hated": {"_count": 1}, "entering": {"_count": 1}, "really": {"_count": 1}, "says": {"_count": 1}, "is": {"_count": 1}, "in": {"_count": 1}, "always": {"_count": 1}, "a": {"_count": 1}, "has": {"_count": 1}, "would": {"_count": 1}, "went": {"_count": 1}}, "Transfiguration": {"_count": 1, "notes": {"_count": 1}}, "mistake": {"_count": 1, "I": {"_count": 1}}, "move": {"_count": 1, "and": {"_count": 1}}, "eye": {"_count": 2, "contact": {"_count": 1}, "in": {"_count": 1}}, "troll": {"_count": 1, "fail": {"_count": 1}}, "side": {"_count": 3, "": {"_count": 1}, "arent": {"_count": 1}, "better": {"_count": 1}}, "master": {"_count": 14, "": {"_count": 8}, "sends": {"_count": 1}, "miss": {"_count": 1}, "when": {"_count": 1}, "knew": {"_count": 1}, "in": {"_count": 1}, "needed": {"_count": 1}}, "masters": {"_count": 4, "instructions": {"_count": 1}, "anymore": {"_count": 1}, "hie": {"_count": 1}, "private": {"_count": 1}}, "self": {"_count": 1, "finding": {"_count": 1}}, "hands": {"_count": 9, "my": {"_count": 1}, "": {"_count": 4}, "Potter": {"_count": 1}, "perhaps": {"_count": 1}, "shaking": {"_count": 1}, "are": {"_count": 1}}, "more": {"_count": 1, "brilliant": {"_count": 1}}, "youth": {"_count": 2, "to": {"_count": 1}, "I": {"_count": 1}}, "liking": {"_count": 1, "for": {"_count": 1}}, "ruddy": {"_count": 1, "fault": {"_count": 1}}, "career": {"_count": 2, "said": {"_count": 1}, "You": {"_count": 1}}, "bedroom": {"_count": 5, "making": {"_count": 1}, "": {"_count": 3}, "curtains": {"_count": 1}}, "room": {"_count": 13, "making": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 5}, "have": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}}, "school": {"_count": 8, "said": {"_count": 1}, "are": {"_count": 1}, "stuff": {"_count": 1}, "": {"_count": 3}, "your": {"_count": 1}, "which": {"_count": 1}}, "greatness": {"_count": 1, "is": {"_count": 1}}, "year": {"_count": 3, "at": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "Japanese": {"_count": 1, "golfer": {"_count": 1}}, "friends": {"_count": 8, "havent": {"_count": 1}, "letters": {"_count": 1}, "nickname": {"_count": 1}, "I": {"_count": 1}, "nothing": {"_count": 1}, "what": {"_count": 1}, "call": {"_count": 1}, "can": {"_count": 1}}, "letters": {"_count": 3, "": {"_count": 3}}, "Hogwarts": {"_count": 2, "stuff": {"_count": 1}, "things": {"_count": 1}}, "back": {"_count": 5, "turned": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}}, "department": {"_count": 2, "though": {"_count": 1}, "Id": {"_count": 1}}, "son": {"_count": 18, "will": {"_count": 1}, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "Percy": {"_count": 1}, "Harrys": {"_count": 1}, "has": {"_count": 1}, "": {"_count": 5}, "If": {"_count": 1}, "so": {"_count": 1}, "Draco": {"_count": 1}, "again": {"_count": 1}, "to": {"_count": 1}, "anywhere": {"_count": 1}, "now": {"_count": 1}}, "list": {"_count": 2, "said": {"_count": 2}}, "autobiography": {"_count": 2, "which": {"_count": 1}, "I": {"_count": 1}}, "search": {"_count": 1, "of": {"_count": 1}}, "sister": {"_count": 12, "being": {"_count": 1}, "": {"_count": 4}, "might": {"_count": 1}, "took": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "travels": {"_count": 1, "": {"_count": 1}}, "dormitory": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "favorite": {"_count": 6, "color": {"_count": 1}, "subject": {"_count": 1}, "cousin": {"_count": 1}, "flavor": {"_count": 1}, "As": {"_count": 1}, "Several": {"_count": 1}}, "ideal": {"_count": 1, "birthday": {"_count": 1}}, "secret": {"_count": 1, "ambition": {"_count": 1}}, "job": {"_count": 6, "to": {"_count": 2}, "": {"_count": 2}, "he": {"_count": 1}, "but": {"_count": 1}}, "fathers": {"_count": 15, "bought": {"_count": 1}, "just": {"_count": 1}, "control": {"_count": 1}, "office": {"_count": 1}, "signature": {"_count": 1}, "Imperius": {"_count": 1}, "house": {"_count": 1}, "escape": {"_count": 1}, "body": {"_count": 2}, "Tonks": {"_count": 1}, "said": {"_count": 1}, "old": {"_count": 1}, "SHUT": {"_count": 1}, "Harry": {"_count": 1}}, "kettle": {"_count": 1, "": {"_count": 1}}, "neck": {"_count": 5, "on": {"_count": 1}, "broken": {"_count": 1}, "in": {"_count": 2}, "Neville": {"_count": 1}}, "potions": {"_count": 1, "were": {"_count": 1}}, "Scintillation": {"_count": 1, "Solution": {"_count": 1}}, "feeble": {"_count": 2, "charms": {"_count": 1}, "imitation": {"_count": 1}}, "private": {"_count": 5, "not": {"_count": 1}, "lands": {"_count": 1}, "store": {"_count": 1}, "stores": {"_count": 1}, "how": {"_count": 1}}, "five": {"_count": 1, "hundredth": {"_count": 1}}, "deathday": {"_count": 1, "party": {"_count": 1}}, "speech": {"_count": 2, "Id": {"_count": 1}, "": {"_count": 1}}, "great": {"_count": 2, "sorrow": {"_count": 1}, "value": {"_count": 1}}, "cat": {"_count": 2, "": {"_count": 1}, "out": {"_count": 1}}, "Kwikspell": {"_count": 1, "letter": {"_count": 1}}, "sleep": {"_count": 2, "Excuse": {"_count": 1}, "": {"_count": 1}}, "copy": {"_count": 3, "at": {"_count": 1}, "of": {"_count": 2}}, "trunk": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "my": {"_count": 2, "teddy": {"_count": 1}, "mother": {"_count": 1}}, "teddy": {"_count": 1, "bear": {"_count": 1}}, "death": {"_count": 5, "": {"_count": 1}, "if": {"_count": 1}, "I": {"_count": 1}, "will": {"_count": 1}, "do": {"_count": 1}}, "other": {"_count": 4, "I": {"_count": 1}, "bit": {"_count": 1}, "portrait": {"_count": 1}, "hand": {"_count": 1}}, "remaining": {"_count": 1, "strength": {"_count": 1}}, "defeat": {"_count": 1, "of": {"_count": 1}}, "very": {"_count": 2, "favorite": {"_count": 1}, "great": {"_count": 1}}, "expertise": {"_count": 1, "to": {"_count": 1}}, "sleeve": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "bones": {"_count": 2, "come": {"_count": 1}, "last": {"_count": 1}}, "kind": {"_count": 2, "since": {"_count": 1}, "of": {"_count": 1}}, "best": {"_count": 10, "friends": {"_count": 5}, "quill": {"_count": 1}, "one": {"_count": 1}, "mate": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}}, "published": {"_count": 1, "works": {"_count": 1}}, "assistant": {"_count": 2, "Professor": {"_count": 1}, "Weasley": {"_count": 1}}, "saying": {"_count": 1, "so": {"_count": 1}}, "cousin": {"_count": 8, "Dudley": {"_count": 1}, "": {"_count": 2}, "felt": {"_count": 1}, "and": {"_count": 1}, "tried": {"_count": 1}, "Lancelot": {"_count": 1}, "Hermione": {"_count": 1}}, "bloods": {"_count": 1, "as": {"_count": 1}}, "robes": {"_count": 4, "when": {"_count": 1}, "and": {"_count": 2}, "without": {"_count": 1}}, "stomach": {"_count": 1, "Ron": {"_count": 1}}, "colleagues": {"_count": 3, "will": {"_count": 1}, "Professor": {"_count": 1}, "": {"_count": 1}}, "diary": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "memories": {"_count": 1, "in": {"_count": 1}}, "day": {"_count": 3, "they": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 1}}, "fifth": {"_count": 2, "year": {"_count": 2}}, "trouble": {"_count": 1, "and": {"_count": 1}}, "mouth": {"_count": 2, "shut": {"_count": 2}}, "word": {"_count": 7, "for": {"_count": 2}, "against": {"_count": 1}, "she": {"_count": 1}, "what": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 1}}, "memory": {"_count": 4, "of": {"_count": 1}, "": {"_count": 2}, "forever": {"_count": 1}}, "grandfather": {"_count": 4, "": {"_count": 1}, "had": {"_count": 1}, "Abraxas": {"_count": 1}, "for": {"_count": 1}}, "dads": {"_count": 3, "old": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 1}}, "full": {"_count": 1, "confidence": {"_count": 1}}, "point": {"_count": 5, "of": {"_count": 1}, "Mr": {"_count": 1}, "I": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "duty": {"_count": 3, "Take": {"_count": 1}, "as": {"_count": 1}, "And": {"_count": 1}}, "removal": {"_count": 1, "Lucius": {"_count": 1}}, "bare": {"_count": 1, "hands": {"_count": 1}}, "good": {"_count": 3, "friend": {"_count": 1}, "behavior": {"_count": 1}, "looks": {"_count": 1}}, "instinct": {"_count": 1, "but": {"_count": 1}}, "command": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "words": {"_count": 6, "he": {"_count": 1}, "": {"_count": 2}, "But": {"_count": 1}, "shes": {"_count": 1}, "back": {"_count": 1}}, "next": {"_count": 2, "class": {"_count": 1}, "move": {"_count": 1}}, "permission": {"_count": 4, "": {"_count": 1}, "form": {"_count": 2}, "doesnt": {"_count": 1}}, "Memory": {"_count": 1, "Charms": {"_count": 1}}, "secrets": {"_count": 3, "all": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}, "glasses": {"_count": 2, "": {"_count": 2}}, "pocket": {"_count": 5, "": {"_count": 2}, "money": {"_count": 1}, "and": {"_count": 1}, "theres": {"_count": 1}}, "front": {"_count": 1, "": {"_count": 1}}, "famous": {"_count": 1, "capture": {"_count": 1}}, "friend": {"_count": 11, "said": {"_count": 1}, "Hermione": {"_count": 1}, "Rons": {"_count": 3}, "Ron": {"_count": 2}, "Vincent": {"_count": 1}, "too": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}}, "sixteenyearold": {"_count": 1, "self": {"_count": 1}}, "footsteps": {"_count": 2, "and": {"_count": 1}, "so": {"_count": 1}}, "past": {"_count": 1, "present": {"_count": 1}}, "most": {"_count": 3, "intimate": {"_count": 1}, "faithful": {"_count": 1}, "complex": {"_count": 1}}, "filthy": {"_count": 1, "Muggle": {"_count": 1}}, "mothers": {"_count": 13, "side": {"_count": 1}, "hairs": {"_count": 1}, "death": {"_count": 1}, "bedroom": {"_count": 1}, "portrait": {"_count": 2}, "": {"_count": 1}, "old": {"_count": 1}, "eyes": {"_count": 1}, "funeral": {"_count": 1}, "reach": {"_count": 1}, "care": {"_count": 1}, "because": {"_count": 1}}, "future": {"_count": 1, "we": {"_count": 1}}, "toilet": {"_count": 3, "said": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}}, "sources": {"_count": 3, "tell": {"_count": 2}, "said": {"_count": 1}}, "servant": {"_count": 1, "boy": {"_count": 1}}, "whole": {"_count": 4, "History": {"_count": 1}, "term": {"_count": 1}, "family": {"_count": 2}}, "Dudders": {"_count": 1, "": {"_count": 1}}, "neffypoo": {"_count": 1, "": {"_count": 1}}, "saucer": {"_count": 1, "said": {"_count": 1}}, "doorstep": {"_count": 1, "": {"_count": 1}}, "earts": {"_count": 1, "goin": {"_count": 1}}, "punishment": {"_count": 1, "": {"_count": 1}}, "uncles": {"_count": 1, "house": {"_count": 1}}, "rat": {"_count": 2, "he": {"_count": 1}, "got": {"_count": 1}}, "brother": {"_count": 10, "": {"_count": 2}, "gave": {"_count": 1}, "Fabians": {"_count": 1}, "and": {"_count": 2}, "Potter": {"_count": 1}, "cared": {"_count": 1}, "had": {"_count": 1}, "wasnt": {"_count": 1}}, "bed": {"_count": 8, "": {"_count": 1}, "shaking": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "in": {"_count": 1}, "all": {"_count": 1}, "covered": {"_count": 1}}, "badge": {"_count": 1, "": {"_count": 1}}, "foot": {"_count": 1, "": {"_count": 1}}, "schedules": {"_count": 1, "a": {"_count": 1}}, "firs": {"_count": 1, "ever": {"_count": 1}}, "fall": {"_count": 1, "perchance": {"_count": 1}}, "comradesinarms": {"_count": 1, "": {"_count": 1}}, "children": {"_count": 2, "sit": {"_count": 1}, "": {"_count": 1}}, "Inner": {"_count": 1, "Eye": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "dears": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "poor": {"_count": 8, "dear": {"_count": 1}, "Mistress": {"_count": 3}, "puffedup": {"_count": 1}, "heart": {"_count": 1}, "sister": {"_count": 1}, "father": {"_count": 1}}, "transformations": {"_count": 3, "not": {"_count": 2}, "I": {"_count": 1}}, "uncle": {"_count": 3, "Bilius": {"_count": 1}, "said": {"_count": 1}, "more": {"_count": 1}}, "Arithmancy": {"_count": 1, "class": {"_count": 1}}, "fatherll": {"_count": 1, "have": {"_count": 1}}, "arm": {"_count": 8, "Weasley": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 3}, "very": {"_count": 1}, "Harry": {"_count": 1}, "mangled": {"_count": 1}}, "roots": {"_count": 1, "sir": {"_count": 1}}, "injury": {"_count": 1, "Keep": {"_count": 1}}, "armll": {"_count": 1, "ever": {"_count": 1}}, "caterpillars": {"_count": 1, "for": {"_count": 1}}, "third": {"_count": 3, "years": {"_count": 2}, "year": {"_count": 1}}, "questions": {"_count": 1, "correctly": {"_count": 1}}, "mummy": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 7, "chance": {"_count": 1}, "inspection": {"_count": 1}, "hope": {"_count": 1}, "bottle": {"_count": 1}, "question": {"_count": 1}, "visit": {"_count": 1}, "warning": {"_count": 1}}, "bag": {"_count": 6, "": {"_count": 3}, "said": {"_count": 1}, "its": {"_count": 1}, "theres": {"_count": 1}}, "form": {"_count": 1, "he": {"_count": 1}}, "final": {"_count": 2, "word": {"_count": 1}, "decision": {"_count": 1}}, "grindylow": {"_count": 1, "said": {"_count": 1}}, "Hermione": {"_count": 2, "grabbed": {"_count": 1}, "gasped": {"_count": 1}}, "concerns": {"_count": 1, "when": {"_count": 1}}, "Nimbus": {"_count": 1, "": {"_count": 1}}, "mum": {"_count": 21, "": {"_count": 1}, "screaming": {"_count": 2}, "does": {"_count": 1}, "time": {"_count": 1}, "and": {"_count": 10}, "knits": {"_count": 1}, "calls": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}, "mentions": {"_count": 1}, "when": {"_count": 1}}, "tongue": {"_count": 1, "": {"_count": 1}}, "customers": {"_count": 1, "away": {"_count": 1}}, "newspaper": {"_count": 1, "cool": {"_count": 1}}, "astonishment": {"_count": 1, "I": {"_count": 1}}, "solitary": {"_count": 1, "luncheon": {"_count": 1}}, "tower": {"_count": 1, "and": {"_count": 1}}, "lateness": {"_count": 2, "": {"_count": 1}, "vanished": {"_count": 1}}, "desk": {"_count": 5, "hell": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}}, "blood": {"_count": 3, "": {"_count": 1}, "would": {"_count": 1}, "said": {"_count": 1}}, "priorities": {"_count": 1, "wrong": {"_count": 1}}, "fine": {"_count": 2, "young": {"_count": 1}, "Potty": {"_count": 1}}, "boy": {"_count": 3, "": {"_count": 3}}, "lady": {"_count": 1, "": {"_count": 1}}, "dream": {"_count": 4, "you": {"_count": 1}, "my": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}}, "vampire": {"_count": 1, "essay": {"_count": 1}}, "symptoms": {"_count": 1, "meant": {"_count": 1}}, "homework": {"_count": 1, "the": {"_count": 1}}, "becoming": {"_count": 1, "a": {"_count": 1}}, "use": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "friends": {"_count": 1}}, "guilty": {"_count": 1, "feelings": {"_count": 1}}, "adult": {"_count": 1, "life": {"_count": 1}}, "appointment": {"_count": 1, "to": {"_count": 1}}, "old": {"_count": 9, "friends": {"_count": 1}, "dad": {"_count": 1}, "body": {"_count": 1}, "strength": {"_count": 1}, "ways": {"_count": 1}, "mistress": {"_count": 1}, "jeans": {"_count": 1}, "cat": {"_count": 1}, "Potions": {"_count": 1}}, "powers": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "cell": {"_count": 3, "": {"_count": 2}, "door": {"_count": 1}}, "feelings": {"_count": 2, "were": {"_count": 1}, "on": {"_count": 1}}, "door": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "godfather": {"_count": 4, "": {"_count": 3}, "left": {"_count": 1}}, "patient": {"_count": 1, "and": {"_count": 1}}, "evidence": {"_count": 1, "count": {"_count": 1}}, "lessons": {"_count": 1, "": {"_count": 1}}, "studies": {"_count": 1, "": {"_count": 1}}, "patients": {"_count": 1, "now": {"_count": 1}}, "Divination": {"_count": 1, "exam": {"_count": 1}}, "Patronus": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "journey": {"_count": 2, "north": {"_count": 1}, "from": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "reasons": {"_count": 1, "for": {"_count": 1}}, "plan": {"_count": 5, "will": {"_count": 1}, "failed": {"_count": 1}, "was": {"_count": 1}, "should": {"_count": 1}, "more": {"_count": 1}}, "present": {"_count": 1, "condition": {"_count": 1}}, "faithful": {"_count": 3, "servant": {"_count": 2}, "Death": {"_count": 1}}, "followers": {"_count": 1, "would": {"_count": 1}}, "questioning": {"_count": 1, "quite": {"_count": 1}}, "wife": {"_count": 9, "knows": {"_count": 1}, "Narcissa": {"_count": 1}, "and": {"_count": 2}, "youre": {"_count": 1}, "Apolline": {"_count": 1}, "were": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "chair": {"_count": 2, "around": {"_count": 1}, "": {"_count": 1}}, "scar": {"_count": 11, "hurt": {"_count": 2}, "hurting": {"_count": 3}, "said": {"_count": 1}, "twinged": {"_count": 1}, "": {"_count": 2}, "really": {"_count": 1}, "always": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "husband": {"_count": 3, "Arthur": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}}, "roof": {"_count": 1, "": {"_count": 1}}, "answer": {"_count": 1, "back": {"_count": 1}}, "intray": {"_count": 1, "would": {"_count": 1}}, "privates": {"_count": 1, "thanks": {"_count": 1}}, "daughter": {"_count": 2, "Ginny": {"_count": 1}, "and": {"_count": 1}}, "guest": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "elf": {"_count": 2, "has": {"_count": 1}, "you": {"_count": 1}}, "servants": {"_count": 1, "to": {"_count": 1}}, "lot": {"_count": 1, "back": {"_count": 1}}, "cauldron": {"_count": 3, "report": {"_count": 1}, "": {"_count": 1}, "And": {"_count": 1}}, "stuff": {"_count": 4, "in": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}}, "Firebolt": {"_count": 2, "": {"_count": 2}}, "pleasure": {"_count": 1, "dears": {"_count": 1}}, "painful": {"_count": 1, "duty": {"_count": 1}}, "grand": {"_count": 1, "want": {"_count": 1}}, "quiet": {"_count": 1, "retirement": {"_count": 1}}, "fight": {"_count": 1, "": {"_count": 1}}, "raccoon": {"_count": 1, "": {"_count": 1}}, "hat": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "off": {"_count": 1}}, "name": {"_count": 17, "in": {"_count": 8}, "is": {"_count": 1}, "got": {"_count": 1}, "came": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 3}, "into": {"_count": 1}, "for": {"_count": 1}}, "students": {"_count": 3, "said": {"_count": 1}, "Dolores": {"_count": 1}, "seriously": {"_count": 1}}, "forehead": {"_count": 1, "everywhere": {"_count": 1}}, "bet": {"_count": 1, "": {"_count": 1}}, "sight": {"_count": 2, "": {"_count": 1}, "after": {"_count": 1}}, "piece": {"_count": 1, "over": {"_count": 1}}, "grandmuzzers": {"_count": 1, "": {"_count": 1}}, "strength": {"_count": 3, "from": {"_count": 1}, "I": {"_count": 1}, "take": {"_count": 1}}, "dead": {"_count": 1, "mum": {"_count": 1}}, "Invisibility": {"_count": 4, "Cloak": {"_count": 4}}, "Dark": {"_count": 1, "Detectors": {"_count": 1}}, "Sneakoscope": {"_count": 1, "because": {"_count": 1}}, "FoeGlass": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 3, "joke": {"_count": 1}, "suppers": {"_count": 1}, "sister": {"_count": 1}}, "crystal": {"_count": 1, "gazing": {"_count": 1}}, "needlework": {"_count": 1, "the": {"_count": 1}}, "help": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "grandmother": {"_count": 2, "is": {"_count": 1}, "wants": {"_count": 1}}, "senses": {"_count": 1, "and": {"_count": 1}}, "dress": {"_count": 1, "robes": {"_count": 1}}, "braces": {"_count": 1, "": {"_count": 1}}, "brothers": {"_count": 3, "werent": {"_count": 1}, "every": {"_count": 1}, "best": {"_count": 1}}, "Who": {"_count": 1, "cares": {"_count": 1}}, "study": {"_count": 2, "and": {"_count": 1}, "boys": {"_count": 1}}, "ol": {"_count": 2, "dad": {"_count": 2}}, "body": {"_count": 8, "I": {"_count": 4}, "": {"_count": 1}, "said": {"_count": 1}, "back": {"_count": 2}}, "bathroom": {"_count": 1, "again": {"_count": 1}}, "chance": {"_count": 1, "to": {"_count": 1}}, "quill": {"_count": 1, "and": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "lesson": {"_count": 1, "Karkaroff": {"_count": 1}}, "armadillo": {"_count": 1, "bile": {"_count": 1}}, "Omnioculars": {"_count": 2, "": {"_count": 2}}, "girlfriend": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "champion": {"_count": 1, "out": {"_count": 1}}, "business": {"_count": 4, "if": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "Quidditch": {"_count": 2, "days": {"_count": 1}, "team": {"_count": 1}}, "thoughts": {"_count": 2, "you": {"_count": 1}, "right": {"_count": 1}}, "scars": {"_count": 1, "hurting": {"_count": 1}}, "belief": {"_count": 4, "that": {"_count": 1}, "however": {"_count": 1}, "and": {"_count": 1}, "I": {"_count": 1}}, "suspicions": {"_count": 1, "": {"_count": 1}}, "Ministry": {"_count": 1, "friends": {"_count": 1}}, "priority": {"_count": 3, "is": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}}, "riddle": {"_count": 1, "": {"_count": 1}}, "guess": {"_count": 1, "": {"_count": 1}}, "Lord": {"_count": 27, "": {"_count": 13}, "of": {"_count": 1}, "Dawlish": {"_count": 1}, "unless": {"_count": 1}, "that": {"_count": 2}, "said": {"_count": 3}, "whispered": {"_count": 2}, "she": {"_count": 1}, "their": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}}, "late": {"_count": 1, "father": {"_count": 1}}, "call": {"_count": 1, "as": {"_count": 1}}, "enemies": {"_count": 1, "and": {"_count": 1}}, "power": {"_count": 4, "in": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "slippery": {"_count": 1, "friend": {"_count": 1}}, "Mark": {"_count": 1, "when": {"_count": 1}}, "devoted": {"_count": 1, "servants": {"_count": 1}}, "service": {"_count": 2, "": {"_count": 2}}, "rebirthing": {"_count": 1, "party": {"_count": 1}}, "young": {"_count": 1, "friend": {"_count": 1}}, "downfall": {"_count": 2, "": {"_count": 2}}, "goal": {"_count": 1, "to": {"_count": 1}}, "experiments": {"_count": 1, "had": {"_count": 1}}, "preference": {"_count": 1, "but": {"_count": 1}}, "return": {"_count": 2, "seemed": {"_count": 1}, "my": {"_count": 1}}, "path": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "home": {"_count": 2, "": {"_count": 2}}, "will": {"_count": 1, "": {"_count": 1}}, "hiding": {"_count": 1, "place": {"_count": 1}}, "darkest": {"_count": 1, "hour": {"_count": 1}}, "Death": {"_count": 6, "Eaters": {"_count": 3}, "Eater": {"_count": 3}}, "wildest": {"_count": 2, "dreams": {"_count": 2}}, "sights": {"_count": 1, "lower": {"_count": 1}}, "veins": {"_count": 2, "too": {"_count": 1}, "What": {"_count": 1}}, "one": {"_count": 1, "faithful": {"_count": 1}}, "waiting": {"_count": 1, "arms": {"_count": 1}}, "hairs": {"_count": 1, "": {"_count": 1}}, "appearance": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "keeper": {"_count": 1, "and": {"_count": 1}}, "greatest": {"_count": 1, "ambition": {"_count": 1}}, "yard": {"_count": 1, "who": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "decision": {"_count": 5, "whether": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "invitation": {"_count": 1, "said": {"_count": 1}}, "Eenglish": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "hair": {"_count": 1, "after": {"_count": 1}}, "nose": {"_count": 5, "clean": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}}, "place": {"_count": 3, "my": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "color": {"_count": 1, "she": {"_count": 1}}, "parentsV": {"_count": 1, "Harry": {"_count": 1}}, "fleshl": {"_count": 1, "Page": {"_count": 1}}, "big": {"_count": 1, "disguise": {"_count": 1}}, "backside": {"_count": 2, "here": {"_count": 1}, "off": {"_count": 1}}, "instructions": {"_count": 1, "from": {"_count": 1}}, "knees": {"_count": 1, "": {"_count": 1}}, "Mistresss": {"_count": 4, "house": {"_count": 1}, "old": {"_count": 1}, "gloves": {"_count": 1}, "heart": {"_count": 1}}, "Mistress": {"_count": 2, "knew": {"_count": 1}, "what": {"_count": 1}}, "Uncle": {"_count": 1, "Alphard": {"_count": 1}}, "idiot": {"_count": 1, "brother": {"_count": 1}}, "greatgreatgrandfather": {"_count": 1, "see": {"_count": 1}}, "floor": {"_count": 1, "in": {"_count": 1}}, "report": {"_count": 1, "you": {"_count": 1}}, "views": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "confidence": {"_count": 1, "that": {"_count": 1}}, "spare": {"_count": 1, "Invisibility": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "first": {"_count": 5, "day": {"_count": 2}, "test": {"_count": 1}, "interview": {"_count": 1}, "ever": {"_count": 1}}, "hearing": {"_count": 4, "she": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}}, "song": {"_count": 1, "Though": {"_count": 1}}, "throats": {"_count": 1, "Harry": {"_count": 1}}, "notes": {"_count": 1, "this": {"_count": 1}}, "N": {"_count": 3, "": {"_count": 3}}, "O": {"_count": 3, "": {"_count": 3}}, "dreams": {"_count": 2, "said": {"_count": 1}, "would": {"_count": 1}}, "classroom": {"_count": 2, "that": {"_count": 1}, "said": {"_count": 1}}, "classes": {"_count": 4, "": {"_count": 1}, "could": {"_count": 1}, "lately": {"_count": 1}, "Harry": {"_count": 1}}, "understanding": {"_count": 1, "that": {"_count": 1}}, "predecessor": {"_count": 1, "not": {"_count": 1}}, "drift": {"_count": 1, "": {"_count": 1}}, "mums": {"_count": 1, "birthday": {"_count": 1}}, "congratulations": {"_count": 1, "": {"_count": 1}}, "note": {"_count": 4, "I": {"_count": 1}, "telling": {"_count": 1}, "Minerva": {"_count": 1}, "Harry": {"_count": 1}}, "usual": {"_count": 2, "teaching": {"_count": 1}, "magic": {"_count": 1}}, "temper": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "auntie": {"_count": 1, "she": {"_count": 1}}, "sisters": {"_count": 4, "going": {"_count": 1}, "a": {"_count": 1}, "life": {"_count": 1}, "ill": {"_count": 1}}, "Sorting": {"_count": 1, "said": {"_count": 1}}, "broom": {"_count": 3, "when": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}}, "lyrics": {"_count": 1, "Potter": {"_count": 1}}, "ban": {"_count": 1, "": {"_count": 1}}, "unfortunate": {"_count": 1, "but": {"_count": 1}}, "fellow": {"_count": 1, "teachers": {"_count": 1}}, "special": {"_count": 1, "favorite": {"_count": 1}}, "grandad": {"_count": 1, "said": {"_count": 1}}, "fangs": {"_count": 1, "had": {"_count": 1}}, "portrait": {"_count": 1, "": {"_count": 1}}, "picture": {"_count": 1, "by": {"_count": 1}}, "OUCH": {"_count": 1, "feet": {"_count": 1}}, "protection": {"_count": 1, "its": {"_count": 1}}, "thing": {"_count": 1, "said": {"_count": 1}}, "hopes": {"_count": 1, "up": {"_count": 1}}, "autograph": {"_count": 1, "would": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "garden": {"_count": 2, "with": {"_count": 1}, "when": {"_count": 1}}, "happiness": {"_count": 1, "doesnt": {"_count": 1}}, "evenings": {"_count": 1, "to": {"_count": 1}}, "inspections": {"_count": 1, "and": {"_count": 1}}, "teachers": {"_count": 1, "": {"_count": 1}}, "wish": {"_count": 3, "that": {"_count": 3}}, "fortune": {"_count": 1, "elsewhere": {"_count": 1}}, "natural": {"_count": 1, "habitat": {"_count": 1}}, "position": {"_count": 1, "": {"_count": 1}}, "respect": {"_count": 1, "for": {"_count": 1}}, "advantage": {"_count": 1, "": {"_count": 1}}, "mirror": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "arrival": {"_count": 1, "however": {"_count": 1}}, "clothes": {"_count": 1, "": {"_count": 1}}, "meaning": {"_count": 1, "plainer": {"_count": 1}}, "Triwizard": {"_count": 1, "winnings": {"_count": 1}}, "right": {"_count": 1, "obviously": {"_count": 1}}, "average": {"_count": 1, "": {"_count": 1}}, "grans": {"_count": 1, "and": {"_count": 1}}, "tea": {"_count": 1, "leaves": {"_count": 1}}, "gasped": {"_count": 1, "Hermione": {"_count": 1}}, "saving": {"_count": 1, "peoplething": {"_count": 1}}, "knowledge": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "doorway": {"_count": 1, "after": {"_count": 1}}, "fire": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "nee": {"_count": 1, "no": {"_count": 1}}, "ankle": {"_count": 1, "I": {"_count": 1}}, "prophecy": {"_count": 1, "": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "worthless": {"_count": 1, "greatgreatgrandson": {"_count": 1}}, "possessions": {"_count": 2, "said": {"_count": 2}}, "say": {"_count": 1, "said": {"_count": 1}}, "greatgreatgrandson": {"_count": 1, "the": {"_count": 1}}, "destruction": {"_count": 1, "": {"_count": 1}}, "worst": {"_count": 1, "fears": {"_count": 1}}, "presence": {"_count": 4, "Snape": {"_count": 1}, "bloodstained": {"_count": 1}, "in": {"_count": 1}, "is": {"_count": 1}}, "I": {"_count": 2, "trust": {"_count": 1}, "dont": {"_count": 1}}, "trust": {"_count": 1, "therefore": {"_count": 1}}, "brilliant": {"_count": 2, "plan": {"_count": 1}, "brother": {"_count": 1}}, "excuses": {"_count": 1, "were": {"_count": 1}}, "inclination": {"_count": 1, "to": {"_count": 1}}, "efforts": {"_count": 1, "into": {"_count": 1}}, "resignation": {"_count": 1, "for": {"_count": 1}}, "successor": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "treachery": {"_count": 1, "to": {"_count": 1}}, "post": {"_count": 1, "I": {"_count": 1}}, "utmost": {"_count": 1, "to": {"_count": 1}}, "part": {"_count": 1, "well": {"_count": 1}}, "only": {"_count": 2, "son": {"_count": 2}}, "useful": {"_count": 1, "role": {"_count": 1}}, "upholstery": {"_count": 1, "when": {"_count": 1}}, "assistance": {"_count": 1, "clearing": {"_count": 1}}, "Intruder": {"_count": 1, "Charm": {"_count": 1}}, "alltime": {"_count": 1, "favorite": {"_count": 1}}, "take": {"_count": 1, "on": {"_count": 1}}, "public": {"_count": 1, "allegiance": {"_count": 1}}, "account": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "seester": {"_count": 1, "Gabrielle": {"_count": 1}}, "God": {"_count": 1, "you": {"_count": 1}}, "Captain": {"_count": 1, "if": {"_count": 1}}, "shopping": {"_count": 1, "alone": {"_count": 1}}, "shop": {"_count": 1, "either": {"_count": 1}}, "education": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "Harry": {"_count": 1, "began": {"_count": 1}}, "fingers": {"_count": 1, "crossed": {"_count": 1}}, "fabulous": {"_count": 1, "prize": {"_count": 1}}, "mistakes": {"_count": 2, "tend": {"_count": 1}, "": {"_count": 1}}, "visit": {"_count": 1, "I": {"_count": 1}}, "rooms": {"_count": 1, "instead": {"_count": 1}}, "pumpkin": {"_count": 2, "juice": {"_count": 2}}, "mustache": {"_count": 1, "": {"_count": 1}}, "interference": {"_count": 1, "": {"_count": 1}}, "glory": {"_count": 1, "": {"_count": 1}}, "card": {"_count": 1, "tricks": {"_count": 1}}, "heart": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "fellows": {"_count": 1, "my": {"_count": 1}}, "equals": {"_count": 1, "said": {"_count": 1}}, "particular": {"_count": 1, "brand": {"_count": 1}}, "\u2018furry": {"_count": 1, "little": {"_count": 1}}, "defense": {"_count": 1, "when": {"_count": 1}}, "test": {"_count": 1, "first": {"_count": 1}}, "company": {"_count": 2, "on": {"_count": 1}, "upon": {"_count": 1}}, "observations": {"_count": 1, "at": {"_count": 1}}, "feet": {"_count": 3, "": {"_count": 1}, "too": {"_count": 1}, "where": {"_count": 1}}, "talents": {"_count": 2, "are": {"_count": 1}, "at": {"_count": 1}}, "staffing": {"_count": 1, "problems": {"_count": 1}}, "deductions": {"_count": 1, "as": {"_count": 1}}, "cakes": {"_count": 1, "": {"_count": 1}}, "trinkets": {"_count": 1, "": {"_count": 1}}, "collection": {"_count": 1, "": {"_count": 1}}, "conclusion": {"_count": 1, "too": {"_count": 1}}, "fresh": {"_count": 1, "researches": {"_count": 1}}, "mistress": {"_count": 1, "and": {"_count": 1}}, "po": {"_count": 1, "": {"_count": 1}}, "salary": {"_count": 1, "is": {"_count": 1}}, "tie": {"_count": 1, "this": {"_count": 1}}, "calculations": {"_count": 1, "are": {"_count": 1}}, "memorys": {"_count": 1, "a": {"_count": 1}}, "nickname": {"_count": 1, "he": {"_count": 1}}, "years": {"_count": 2, "of": {"_count": 1}, "travels": {"_count": 1}}, "greatgreatgrandmothers": {"_count": 1, "gift": {"_count": 1}}, "interview": {"_count": 1, "with": {"_count": 1}}, "absences": {"_count": 1, "this": {"_count": 1}}, "custom": {"_count": 1, "or": {"_count": 1}}, "protesting": {"_count": 1, "mouth": {"_count": 1}}, "Christmas": {"_count": 1, "present": {"_count": 1}}, "mercy": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "inventions": {"_count": 1, "on": {"_count": 1}}, "Aurors": {"_count": 1, "at": {"_count": 1}}, "errors": {"_count": 1, "than": {"_count": 1}}, "rise": {"_count": 1, "to": {"_count": 1}}, "pockmarked": {"_count": 1, "visage": {"_count": 1}}, "departure": {"_count": 1, "long": {"_count": 1}}, "respects": {"_count": 1, "at": {"_count": 1}}, "loss": {"_count": 1, "is": {"_count": 1}}, "leave": {"_count": 1, "": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "sickbed": {"_count": 1, "": {"_count": 1}}, "bleeding": {"_count": 1, "ear": {"_count": 1}}, "mess": {"_count": 1, "Harry": {"_count": 1}}, "things": {"_count": 1, "it": {"_count": 1}}, "leetle": {"_count": 1, "daughter": {"_count": 1}}, "Deluminator": {"_count": 1, "in": {"_count": 1}}, "wall": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 4, "": {"_count": 2}, "he": {"_count": 1}, "and": {"_count": 1}}, "love": {"_count": 1, "if": {"_count": 1}}, "tiara": {"_count": 2, "she": {"_count": 1}, "sets": {"_count": 1}}, "ears": {"_count": 1, "are": {"_count": 1}}, "vand": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "sanity": {"_count": 1, "": {"_count": 1}}, "Building": {"_count": 1, "Society": {"_count": 1}}, "wrath": {"_count": 1, "yourself": {"_count": 1}}, "offer": {"_count": 1, "": {"_count": 1}}, "better": {"_count": 1, "judgment": {"_count": 1}}, "unborn": {"_count": 1, "child": {"_count": 1}}, "affliction": {"_count": 1, "they": {"_count": 1}}, "handbag": {"_count": 1, "": {"_count": 1}}, "choice": {"_count": 1, "nobody": {"_count": 1}}, "arms": {"_count": 1, "in": {"_count": 1}}, "personal": {"_count": 1, "safety": {"_count": 1}}, "race": {"_count": 2, "replied": {"_count": 1}, "": {"_count": 1}}, "small": {"_count": 1, "revenge": {"_count": 1}}, "forebears": {"_count": 1, "": {"_count": 1}}, "rucksack": {"_count": 1, "and": {"_count": 1}}, "chest": {"_count": 1, "and": {"_count": 1}}, "sleeping": {"_count": 1, "bag": {"_count": 1}}, "interest": {"_count": 1, "in": {"_count": 1}}, "pet": {"_count": 1, "invention": {"_count": 1}}, "shoulder": {"_count": 1, "": {"_count": 1}}, "Cloak": {"_count": 1, "the": {"_count": 1}}, "ancestor": {"_count": 1, "": {"_count": 1}}, "vote": {"_count": 1, "for": {"_count": 1}}, "authority": {"_count": 1, "Your": {"_count": 1}}, "vault": {"_count": 4, "in": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "Do": {"_count": 1, "it": {"_count": 1}}, "kidnapping": {"_count": 1, "for": {"_count": 1}}, "hire": {"_count": 1, "take": {"_count": 1}}, "type": {"_count": 1, "but": {"_count": 1}}, "imagination": {"_count": 1, "shouted": {"_count": 1}}, "street": {"_count": 1, "Ill": {"_count": 1}}, "pubs": {"_count": 1, "closed": {"_count": 1}}, "sisterinlaw": {"_count": 1, "now": {"_count": 1}}, "dreadful": {"_count": 1, "betrayal": {"_count": 1}}, "perfidy": {"_count": 1, "she": {"_count": 1}}, "refusal": {"_count": 1, "jealous": {"_count": 1}}, "freedom": {"_count": 1, "he": {"_count": 1}}, "pub": {"_count": 1, "Potter": {"_count": 1}}, "grandson": {"_count": 1, "": {"_count": 1}}, "forces": {"_count": 1, "to": {"_count": 1}}, "birth": {"_count": 1, "Mudblood": {"_count": 1}}, "intention": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "guesses": {"_count": 1, "have": {"_count": 1}}, "village": {"_count": 1, "in": {"_count": 1}}, "conscience": {"_count": 1, "with": {"_count": 1}}, "shoulders": {"_count": 1, "": {"_count": 1}}, "rough": {"_count": 1, "unlettered": {"_count": 1}}, "guilt": {"_count": 1, "and": {"_count": 1}}, "terrible": {"_count": 1, "grief": {"_count": 1}}, "shame": {"_count": 1, "": {"_count": 1}}, "weakness": {"_count": 1, "and": {"_count": 1}}, "temptation": {"_count": 1, "": {"_count": 1}}, "arrogance": {"_count": 1, "and": {"_count": 1}}, "selfsacrifice": {"_count": 1, "as": {"_count": 1}}, "brave": {"_count": 1, "boy": {"_count": 1}}, "noble": {"_count": 1, "ancestor": {"_count": 1}}, "Master": {"_count": 1, "defender": {"_count": 1}}, "curse": {"_count": 1, "": {"_count": 1}}}, "dear": {"_count": 236, "sir": {"_count": 1, "for": {"_count": 1}}, "you": {"_count": 5, "havent": {"_count": 1}, "could": {"_count": 1}, "know": {"_count": 1}, "have": {"_count": 1}, "were": {"_count": 1}}, "Professor": {"_count": 4, "Ive": {"_count": 1}, "surely": {"_count": 1}, "Trelawneys": {"_count": 1}, "Lupin": {"_count": 1}}, "": {"_count": 49, "?": {"_count": 19}, ".": {"_count": 20}, "!": {"_count": 10}}, "and": {"_count": 3, "Harry": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}}, "she": {"_count": 14, "said": {"_count": 8}, "assured": {"_count": 1}, "added": {"_count": 1}, "shot": {"_count": 1}, "caught": {"_count": 1}, "pointed": {"_count": 1}, "whispered": {"_count": 1}}, "well": {"_count": 2, "have": {"_count": 1}, "find": {"_count": 1}}, "no": {"_count": 1, "wonder": {"_count": 1}}, "Friar": {"_count": 1, "havent": {"_count": 1}}, "life": {"_count": 6, "any": {"_count": 1}, "": {"_count": 3}, "Harry": {"_count": 1}, "there": {"_count": 1}}, "boy": {"_count": 32, "you": {"_count": 2}, "": {"_count": 11}, "said": {"_count": 3}, "were": {"_count": 1}, "it": {"_count": 1}, "she": {"_count": 1}, "thats": {"_count": 1}, "not": {"_count": 1}, "craving": {"_count": 1}, "the": {"_count": 1}, "ask": {"_count": 1}, "so": {"_count": 1}, "enough": {"_count": 1}, "but": {"_count": 1}, "let": {"_count": 1}, "I": {"_count": 3}, "its": {"_count": 1}}, "said": {"_count": 25, "George": {"_count": 1}, "Hermione": {"_count": 4}, "Lockhart": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}, "Professor": {"_count": 5}, "Mrs": {"_count": 6}, "Mr": {"_count": 2}, "Nevilles": {"_count": 1}, "Umbridge": {"_count": 1}, "Ollivander": {"_count": 1}}, "but": {"_count": 4, "its": {"_count": 2}, "goodness": {"_count": 1}, "I": {"_count": 1}}, "I": {"_count": 6, "think": {"_count": 2}, "did": {"_count": 1}, "couldnt": {"_count": 1}, "wish": {"_count": 1}, "was": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "if": {"_count": 3, "he": {"_count": 1}, "you": {"_count": 1}, "youll": {"_count": 1}}, "No": {"_count": 1, "Arthur": {"_count": 1}}, "friends": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "old": {"_count": 3, "Draco": {"_count": 1}, "mum": {"_count": 1}, "mate": {"_count": 1}}, "man": {"_count": 2, "please": {"_count": 1}, "": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "Mudblood": {"_count": 1, "mother": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "the": {"_count": 2, "Grim": {"_count": 1}, "planet": {"_count": 1}}, "theyve": {"_count": 1, "nearly": {"_count": 1}}, "stalking": {"_count": 1, "toward": {"_count": 1}}, "it": {"_count": 1, "has": {"_count": 1}}, "Im": {"_count": 1, "getting": {"_count": 1}}, "doing": {"_count": 1, "her": {"_count": 1}}, "they": {"_count": 1, "dont": {"_count": 1}}, "that": {"_count": 2, "you": {"_count": 2}}, "Madame": {"_count": 2, "Maxime": {"_count": 2}}, "fellow": {"_count": 1, "how": {"_count": 1}}, "thats": {"_count": 1, "right": {"_count": 1}}, "me": {"_count": 1, "An": {"_count": 1}}, "dear": {"_count": 3, "Potter": {"_count": 1}, "dear": {"_count": 1}, "": {"_count": 1}}, "Potter": {"_count": 1, "whats": {"_count": 1}}, "older": {"_count": 1, "brother": {"_count": 1}}, "mother": {"_count": 2, "": {"_count": 1}, "died": {"_count": 1}}, "Nagini": {"_count": 1, "Voldemorts": {"_count": 1}}, "woman": {"_count": 1, "": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 1}, "Elladora": {"_count": 1}}, "Ive": {"_count": 1, "really": {"_count": 1}}, "youve": {"_count": 1, "had": {"_count": 1}}, "whats": {"_count": 1, "this": {"_count": 1}}, "come": {"_count": 1, "and": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "godfathers": {"_count": 1, "kitchen": {"_count": 1}}, "dont": {"_count": 1, "be": {"_count": 1}}, "look": {"_count": 1, "up": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "Umbridge": {"_count": 1, "said": {"_count": 1}}, "new": {"_count": 1, "Head": {"_count": 1}}, "friend": {"_count": 1, "Tiberius": {"_count": 1}}, "lets": {"_count": 1, "make": {"_count": 1}}, "cousin": {"_count": 2, "": {"_count": 2}}, "how": {"_count": 1, "are": {"_count": 1}}, "Prime": {"_count": 2, "Minister": {"_count": 2}}, "Horace": {"_count": 1, "said": {"_count": 1}}, "Ill": {"_count": 1, "knock": {"_count": 1}}, "your": {"_count": 2, "trunks": {"_count": 1}, "mothers": {"_count": 1}}, "Id": {"_count": 2, "have": {"_count": 1}, "much": {"_count": 1}}, "were": {"_count": 1, "in": {"_count": 1}}, "Sirius": {"_count": 1, "before": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "youre": {"_count": 1, "coming": {"_count": 1}}, "Gwenog": {"_count": 1, "telling": {"_count": 1}}, "brother": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 1, "to": {"_count": 1}}, "Molly": {"_count": 1, "said": {"_count": 1}}, "Sybill": {"_count": 1, "said": {"_count": 1}}, "Hagrid": {"_count": 1, "I": {"_count": 1}}, "chap": {"_count": 1, "do": {"_count": 1}}, "breathed": {"_count": 1, "Slughorn": {"_count": 1}}, "beams": {"_count": 1, "Skeeter": {"_count": 1}}, "everyones": {"_count": 1, "awfully": {"_count": 1}}, "is": {"_count": 1, "this": {"_count": 1}}, "Bellatrix": {"_count": 1, "who": {"_count": 1}}}, "sir": {"_count": 335, "for": {"_count": 5, "nothing": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 2}, "then": {"_count": 1}}, "said": {"_count": 51, "the": {"_count": 4}, "Hagrid": {"_count": 1}, "Harry": {"_count": 20}, "Dobby": {"_count": 6}, "Mr": {"_count": 1}, "Seamus": {"_count": 1}, "Riddle": {"_count": 9}, "Hermione": {"_count": 3}, "Winky": {"_count": 2}, "an": {"_count": 1}, "Parvati": {"_count": 1}, "Malfoy": {"_count": 1}, "Ernie": {"_count": 1}}, "": {"_count": 166, ".": {"_count": 76}, "?": {"_count": 38}, "!": {"_count": 52}}, "house": {"_count": 1, "was": {"_count": 1}}, "yes": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 13, "said": {"_count": 7}, "gasped": {"_count": 1}, "admitted": {"_count": 1}, "must": {"_count": 1}, "is": {"_count": 1}, "has": {"_count": 1}, "was": {"_count": 1}}, "I": {"_count": 8, "most": {"_count": 1}, "cant": {"_count": 1}, "know": {"_count": 1}, "want": {"_count": 1}, "is": {"_count": 1}, "think": {"_count": 1}, "heard": {"_count": 1}, "forgot": {"_count": 1}}, "the": {"_count": 1, "Stone": {"_count": 1}}, "theres": {"_count": 1, "one": {"_count": 1}}, "no": {"_count": 3, "": {"_count": 1}, "offense": {"_count": 1}, "said": {"_count": 1}}, "But": {"_count": 2, "wont": {"_count": 1}, "Dobbys": {"_count": 1}}, "but": {"_count": 5, "of": {"_count": 1}, "I": {"_count": 1}, "Dobby": {"_count": 1}, "often": {"_count": 1}, "er": {"_count": 1}}, "Dobbys": {"_count": 1, "voice": {"_count": 1}}, "if": {"_count": 3, "he": {"_count": 1}, "you": {"_count": 1}, "Dobby": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 2}}, "surely": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 3, "course": {"_count": 3}}, "nor": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 1}, "is": {"_count": 2}}, "dont": {"_count": 1, "legends": {"_count": 1}}, "why": {"_count": 1, "didnt": {"_count": 1}}, "never": {"_count": 1, "kill": {"_count": 1}}, "life": {"_count": 1, "has": {"_count": 1}}, "and": {"_count": 9, "Harry": {"_count": 2}, "you": {"_count": 1}, "Professor": {"_count": 1}, "Dobby": {"_count": 1}, "is": {"_count": 1}, "nothing": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}}, "ask": {"_count": 1, "no": {"_count": 1}}, "tis": {"_count": 1, "too": {"_count": 1}}, "Dobby": {"_count": 1, "cant": {"_count": 1}}, "Dumbledore": {"_count": 1, "tried": {"_count": 1}}, "Snape": {"_count": 1, "smirked": {"_count": 1}}, "weve": {"_count": 2, "only": {"_count": 1}, "done": {"_count": 1}}, "Ill": {"_count": 3, "need": {"_count": 1}, "make": {"_count": 1}, "get": {"_count": 1}}, "111": {"_count": 1, "need": {"_count": 1}}, "dodging": {"_count": 1, "between": {"_count": 1}}, "just": {"_count": 1, "call": {"_count": 1}}, "Her": {"_count": 1, "dark": {"_count": 1}}, "meaning": {"_count": 1, "no": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "what": {"_count": 2, "is": {"_count": 1}, "hed": {"_count": 1}}, "We": {"_count": 1, "attacked": {"_count": 1}}, "Im": {"_count": 2, "supposed": {"_count": 1}, "a": {"_count": 1}}, "Mr": {"_count": 1, "Bagman": {"_count": 1}}, "hes": {"_count": 2, "got": {"_count": 1}, "a": {"_count": 1}}, "anything": {"_count": 1, "at": {"_count": 1}}, "very": {"_count": 2, "difficult": {"_count": 1}, "clever": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "because": {"_count": 2, "Dobby": {"_count": 1}, "Ron": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "we": {"_count": 1, "is": {"_count": 1}}, "your": {"_count": 1, "Wheezy": {"_count": 1}}, "gillyweed": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "luck": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "they": {"_count": 1, "did": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "oh": {"_count": 1, "sorry": {"_count": 1}}, "she": {"_count": 2, "needs": {"_count": 1}, "said": {"_count": 1}}, "Harry": {"_count": 2, "stammered": {"_count": 1}, "said": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "squeaked": {"_count": 1, "Dobby": {"_count": 1}}, "its": {"_count": 1, "Hagrid": {"_count": 1}}, "please": {"_count": 1, "Dumbledores": {"_count": 1}}, "youre": {"_count": 1, "going": {"_count": 1}}, "listen": {"_count": 1, "Im": {"_count": 1}}}, "me": {"_count": 2814, "today": {"_count": 2, "": {"_count": 2}}, "that": {"_count": 57, "instead": {"_count": 1}, "was": {"_count": 1}, "leaves": {"_count": 1}, "Stone": {"_count": 1}, "the": {"_count": 6}, "": {"_count": 2}, "blocking": {"_count": 1}, "you": {"_count": 6}, "whatever": {"_count": 1}, "Professor": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 4}, "would": {"_count": 2}, "your": {"_count": 1}, "rat": {"_count": 1}, "we": {"_count": 1}, "egg": {"_count": 1}, "Chudley": {"_count": 1}, "memo": {"_count": 1}, "they": {"_count": 2}, "she": {"_count": 2}, "one": {"_count": 1}, "lured": {"_count": 1}, "rubbish": {"_count": 1}, "Roger": {"_count": 1}, "put": {"_count": 1}, "twelve": {"_count": 1}, "its": {"_count": 1}, "book": {"_count": 1}, "Riddle": {"_count": 1}, "I": {"_count": 2}, "Voldemort": {"_count": 1}, "when": {"_count": 1}, "there": {"_count": 1}, "as": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "Im": {"_count": 1}}, "": {"_count": 632, ".": {"_count": 356}, "?": {"_count": 145}, "!": {"_count": 131}}, "said": {"_count": 100, "Dumbledore": {"_count": 10}, "Uncle": {"_count": 1}, "Hagrid": {"_count": 5}, "Hermione": {"_count": 5}, "Filch": {"_count": 1}, "Ron": {"_count": 14}, "Mr": {"_count": 2}, "Snape": {"_count": 4}, "Nick": {"_count": 2}, "Malfoy": {"_count": 4}, "Lockhart": {"_count": 1}, "Harry": {"_count": 27}, "Professor": {"_count": 2}, "Lupin": {"_count": 3}, "the": {"_count": 2}, "Voldemort": {"_count": 3}, "Bill": {"_count": 1}, "Aunt": {"_count": 1}, "Sirius": {"_count": 1}, "Moody": {"_count": 1}, "Luna": {"_count": 1}, "Mrs": {"_count": 2}, "Slughorn": {"_count": 1}, "Fleur": {"_count": 1}, "Krum": {"_count": 2}, "Xenophilius": {"_count": 1}, "Narcissa": {"_count": 1}, "Lucius": {"_count": 1}}, "she": {"_count": 15, "liked": {"_count": 1}, "wouldn": {"_count": 1}, "said": {"_count": 7}, "went": {"_count": 1}, "had": {"_count": 1}, "snorted": {"_count": 1}, "knows": {"_count": 1}, "neednt": {"_count": 1}, "was": {"_count": 1}}, "why": {"_count": 6, "youre": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "some": {"_count": 1}, "we": {"_count": 1}, "its": {"_count": 1}}, "here": {"_count": 12, "Harry": {"_count": 1}, "": {"_count": 7}, "under": {"_count": 1}, "today": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 1}}, "see": {"_count": 21, "it": {"_count": 2}, "": {"_count": 9}, "yes": {"_count": 1}, "that": {"_count": 2}, "let": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}, "you": {"_count": 3}, "another": {"_count": 1}}, "but": {"_count": 22, "is": {"_count": 1}, "careful": {"_count": 1}, "he": {"_count": 3}, "couldnt": {"_count": 2}, "I": {"_count": 6}, "they": {"_count": 1}, "by": {"_count": 1}, "it": {"_count": 2}, "went": {"_count": 1}, "do": {"_count": 1}, "let": {"_count": 1}, "then": {"_count": 1}, "she": {"_count": 1}}, "Hagrid": {"_count": 2, "he": {"_count": 1}, "Im": {"_count": 1}}, "he": {"_count": 43, "growled": {"_count": 1}, "pushed": {"_count": 1}, "told": {"_count": 2}, "said": {"_count": 12}, "knows": {"_count": 1}, "ttook": {"_count": 1}, "is": {"_count": 2}, "thinks": {"_count": 2}, "added": {"_count": 1}, "muttered": {"_count": 2}, "hissed": {"_count": 1}, "knew": {"_count": 1}, "was": {"_count": 2}, "still": {"_count": 1}, "just": {"_count": 1}, "foolishly": {"_count": 1}, "hurt": {"_count": 1}, "needed": {"_count": 1}, "seems": {"_count": 1}, "doesnt": {"_count": 1}, "retorted": {"_count": 1}, "caused": {"_count": 1}, "felt": {"_count": 1}, "whispered": {"_count": 1}, "heard": {"_count": 1}, "wanted": {"_count": 1}, "wasnt": {"_count": 1}}, "they": {"_count": 8, "died": {"_count": 1}, "said": {"_count": 1}, "hadnt": {"_count": 1}, "thought": {"_count": 1}, "wouldnt": {"_count": 1}, "whisper": {"_count": 1}, "chose": {"_count": 1}, "decided": {"_count": 1}}, "there": {"_count": 11, "might": {"_count": 1}, "cant": {"_count": 1}, "its": {"_count": 1}, "all": {"_count": 1}, "was": {"_count": 1}, "dont": {"_count": 1}, "or": {"_count": 1}, "so": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "till": {"_count": 1}}, "say": {"_count": 5, "it": {"_count": 2}, "quite": {"_count": 1}, "that": {"_count": 1}, "YouKnowWhos": {"_count": 1}}, "temper": {"_count": 1, "he": {"_count": 1}}, "third": {"_count": 1, "year": {"_count": 1}}, "wand": {"_count": 1, "in": {"_count": 1}}, "stay": {"_count": 1, "on": {"_count": 1}}, "I": {"_count": 44, "was": {"_count": 3}, "didnt": {"_count": 2}, "shouldnt": {"_count": 1}, "cannot": {"_count": 1}, "deserved": {"_count": 1}, "heard": {"_count": 1}, "have": {"_count": 3}, "really": {"_count": 1}, "need": {"_count": 1}, "mean": {"_count": 1}, "dont": {"_count": 3}, "say": {"_count": 2}, "pulled": {"_count": 1}, "swear": {"_count": 1}, "got": {"_count": 1}, "did": {"_count": 1}, "don": {"_count": 1}, "promise": {"_count": 1}, "couldnt": {"_count": 2}, "should": {"_count": 1}, "shall": {"_count": 1}, "admit": {"_count": 1}, "thought": {"_count": 2}, "had": {"_count": 2}, "even": {"_count": 1}, "am": {"_count": 2}, "think": {"_count": 1}, "knew": {"_count": 1}, "suppose": {"_count": 1}, "must": {"_count": 1}, "confess": {"_count": 1}, "do": {"_count": 1}}, "to": {"_count": 174, "go": {"_count": 12}, "do": {"_count": 16}, "come": {"_count": 6}, "stand": {"_count": 1}, "have": {"_count": 4}, "make": {"_count": 2}, "tell": {"_count": 9}, "keep": {"_count": 4}, "allow": {"_count": 1}, "Hagrid": {"_count": 1}, "ward": {"_count": 1}, "join": {"_count": 1}, "cover": {"_count": 1}, "help": {"_count": 4}, "Hogwarts": {"_count": 1}, "fathom": {"_count": 1}, "the": {"_count": 7}, "sign": {"_count": 1}, "leave": {"_count": 1}, "spoil": {"_count": 2}, "save": {"_count": 1}, "introduce": {"_count": 2}, "deal": {"_count": 1}, "Durmstrang": {"_count": 1}, "try": {"_count": 1}, "shut": {"_count": 1}, "meet": {"_count": 2}, "say": {"_count": 4}, "stop": {"_count": 4}, "carry": {"_count": 1}, "dance": {"_count": 1}, "look": {"_count": 1}, "visit": {"_count": 1}, "be": {"_count": 7}, "it": {"_count": 1}, "my": {"_count": 2}, "a": {"_count": 3}, "finish": {"_count": 1}, "bring": {"_count": 2}, "her": {"_count": 1}, "spill": {"_count": 1}, "criticize": {"_count": 1}, "": {"_count": 3}, "get": {"_count": 5}, "invite": {"_count": 1}, "stay": {"_count": 1}, "London": {"_count": 1}, "answer": {"_count": 1}, "teach": {"_count": 2}, "spend": {"_count": 1}, "so": {"_count": 1}, "turn": {"_count": 1}, "report": {"_count": 1}, "see": {"_count": 3}, "spy": {"_count": 2}, "speak": {"_count": 1}, "call": {"_count": 1}, "these": {"_count": 1}, "lunch": {"_count": 1}, "complete": {"_count": 1}, "his": {"_count": 1}, "check": {"_count": 1}, "Dumbledore": {"_count": 1}, "Romilda": {"_count": 1}, "follow": {"_count": 1}, "inquire": {"_count": 1}, "return": {"_count": 2}, "He": {"_count": 1}, "forget": {"_count": 1}, "give": {"_count": 2}, "said": {"_count": 1}, "watch": {"_count": 1}, "Voldemort": {"_count": 1}, "change": {"_count": 1}, "wish": {"_count": 1}, "talk": {"_count": 1}, "stick": {"_count": 1}, "fight": {"_count": 1}, "skip": {"_count": 1}, "extract": {"_count": 1}, "explain": {"_count": 1}, "lie": {"_count": 1}, "take": {"_count": 2}, "plead": {"_count": 1}, "Azkaban": {"_count": 1}, "find": {"_count": 1}, "kill": {"_count": 1}}, "ter": {"_count": 8, "do": {"_count": 1}, "take": {"_count": 1}, "talk": {"_count": 1}, "stay": {"_count": 1}, "tell": {"_count": 1}, "go": {"_count": 1}, "lose": {"_count": 1}, "teach": {"_count": 1}}, "once": {"_count": 3, "in": {"_count": 1}, "No": {"_count": 1}, "youve": {"_count": 1}}, "umbrella": {"_count": 1, "": {"_count": 1}}, "questions": {"_count": 2, "just": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 13, "the": {"_count": 3}, "and": {"_count": 1}, "": {"_count": 1}, "scraps": {"_count": 1}, "bended": {"_count": 1}, "it": {"_count": 2}, "without": {"_count": 1}, "Valentines": {"_count": 1}, "purpose": {"_count": 1}, "one": {"_count": 1}}, "mouth": {"_count": 2, "shut": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 12, "and": {"_count": 1}, "more": {"_count": 2}, "once": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 1}, "single": {"_count": 2}, "favor": {"_count": 1}, "": {"_count": 2}, "last": {"_count": 1}}, "feel": {"_count": 6, "worse": {"_count": 1}, "ruddy": {"_count": 1}, "you": {"_count": 1}, "guilty": {"_count": 1}, "better": {"_count": 1}, "more": {"_count": 1}}, "sneeze": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 63, "letter": {"_count": 3}, "lift": {"_count": 1}, "bezoar": {"_count": 1}, "bit": {"_count": 4}, "minute": {"_count": 1}, "chance": {"_count": 2}, "present": {"_count": 1}, "Howler": {"_count": 1}, "great": {"_count": 2}, "story": {"_count": 1}, "nice": {"_count": 1}, "wife": {"_count": 1}, "new": {"_count": 3}, "favor": {"_count": 3}, "cup": {"_count": 1}, "lot": {"_count": 2}, "job": {"_count": 5}, "reason": {"_count": 2}, "substitute": {"_count": 1}, "brew": {"_count": 1}, "Christmas": {"_count": 1}, "quick": {"_count": 1}, "roast": {"_count": 1}, "draft": {"_count": 1}, "wand": {"_count": 1}, "glass": {"_count": 1}, "decent": {"_count": 1}, "straight": {"_count": 1}, "prefect": {"_count": 1}, "liar": {"_count": 1}, "homework": {"_count": 1}, "coward": {"_count": 1}, "knife": {"_count": 1}, "couple": {"_count": 1}, "friend": {"_count": 1}, "fright": {"_count": 1}, "bowl": {"_count": 1}, "few": {"_count": 1}, "mascot": {"_count": 1}, "little": {"_count": 3}, "memory": {"_count": 1}, "cursed": {"_count": 1}, "copy": {"_count": 1}, "good": {"_count": 1}}, "Harry": {"_count": 42, "said": {"_count": 8}, "Ron": {"_count": 1}, "an": {"_count": 1}, "told": {"_count": 2}, "muttered": {"_count": 2}, "thought": {"_count": 2}, "Potter": {"_count": 4}, "but": {"_count": 1}, "": {"_count": 9}, "stared": {"_count": 1}, "spat": {"_count": 1}, "whispered": {"_count": 1}, "he": {"_count": 4}, "jus": {"_count": 1}, "go": {"_count": 1}, "began": {"_count": 1}, "my": {"_count": 1}, "inflamed": {"_count": 1}}, "an": {"_count": 13, "owl": {"_count": 3}, "see": {"_count": 1}, "Dumbledore": {"_count": 1}, "answer": {"_count": 1}, "Hermione": {"_count": 1}, "idiot": {"_count": 1}, "interview": {"_count": 1}, "essay": {"_count": 1}, "evening": {"_count": 1}, "the": {"_count": 1}, "Grawpy": {"_count": 1}}, "youve": {"_count": 2, "youve": {"_count": 1}, "stopped": {"_count": 1}}, "youd": {"_count": 2, "never": {"_count": 1}, "think": {"_count": 1}}, "bet": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 44, "Slytherin": {"_count": 2}, "secret": {"_count": 1}, "the": {"_count": 15}, "here": {"_count": 2}, "Gryffindor": {"_count": 1}, "Potions": {"_count": 1}, "no": {"_count": 1}, "my": {"_count": 3}, "": {"_count": 5}, "his": {"_count": 1}, "Assyria": {"_count": 1}, "every": {"_count": 1}, "our": {"_count": 1}, "Ravenclaw": {"_count": 1}, "by": {"_count": 1}, "case": {"_count": 1}, "Im": {"_count": 1}, "detention": {"_count": 1}, "fact": {"_count": 1}, "later": {"_count": 1}, "that": {"_count": 1}, "return": {"_count": 1}}, "all": {"_count": 30, "the": {"_count": 4}, "about": {"_count": 8}, "three": {"_count": 1}, "along": {"_count": 2}, "her": {"_count": 1}, "this": {"_count": 1}, "I": {"_count": 1}, "right": {"_count": 4}, "of": {"_count": 2}, "year": {"_count": 2}, "over": {"_count": 1}, "last": {"_count": 1}, "these": {"_count": 2}}, "any": {"_count": 7, "more": {"_count": 3}, "day": {"_count": 1}, "ink": {"_count": 1}, "information": {"_count": 2}}, "about": {"_count": 29, "you": {"_count": 2}, "my": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 3}, "it": {"_count": 5}, "one": {"_count": 1}, "the": {"_count": 6}, "being": {"_count": 1}, "not": {"_count": 1}, "that": {"_count": 2}, "five": {"_count": 1}, "Notts": {"_count": 1}, "": {"_count": 1}, "McLaggen": {"_count": 1}, "him": {"_count": 1}}, "Sir": {"_count": 1, "Nicholas": {"_count": 1}}, "up": {"_count": 19, "and": {"_count": 2}, "": {"_count": 6}, "said": {"_count": 2}, "he": {"_count": 1}, "first": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 2}, "over": {"_count": 1}, "for": {"_count": 1}, "something": {"_count": 1}, "or": {"_count": 1}}, "off": {"_count": 17, "my": {"_count": 2}, "the": {"_count": 1}, "when": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "does": {"_count": 1}, "this": {"_count": 1}, "then": {"_count": 1}, "his": {"_count": 1}, "at": {"_count": 1}, "after": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "ten": {"_count": 1}}, "out": {"_count": 27, "of": {"_count": 9}, "after": {"_count": 1}, "either": {"_count": 1}, "it": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 3}, "disguised": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 2}, "but": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "my": {"_count": 9, "toad": {"_count": 1}, "family": {"_count": 1}, "friends": {"_count": 1}, "wand": {"_count": 1}, "servant": {"_count": 1}, "head": {"_count": 1}, "names": {"_count": 1}, "life": {"_count": 1}, "ears": {"_count": 1}}, "around": {"_count": 2, "three": {"_count": 1}, "Hermione": {"_count": 1}}, "life": {"_count": 1, "chasin": {"_count": 1}}, "everywhere": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "now": {"_count": 11, "": {"_count": 5}, "watch": {"_count": 1}, "can": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "Professor": {"_count": 5, "Flitwick": {"_count": 1}, "": {"_count": 2}, "Dippet": {"_count": 1}, "Dumbledore": {"_count": 1}}, "you": {"_count": 31, "two": {"_count": 1}, "did": {"_count": 1}, "werent": {"_count": 1}, "were": {"_count": 5}, "forgot": {"_count": 1}, "wont": {"_count": 1}, "idiot": {"_count": 1}, "dont": {"_count": 2}, "need": {"_count": 1}, "three": {"_count": 1}, "had": {"_count": 2}, "enjoyed": {"_count": 1}, "are": {"_count": 2}, "animals": {"_count": 1}, "speak": {"_count": 1}, "wait": {"_count": 1}, "could": {"_count": 2}, "would": {"_count": 2}, "think": {"_count": 1}, "must": {"_count": 1}, "will": {"_count": 1}, "have": {"_count": 1}}, "Peeves": {"_count": 1, "now": {"_count": 1}}, "Im": {"_count": 13, "a": {"_count": 1}, "not": {"_count": 1}, "pale": {"_count": 1}, "Head": {"_count": 1}, "commentating": {"_count": 1}, "going": {"_count": 1}, "giving": {"_count": 1}, "sure": {"_count": 2}, "afraid": {"_count": 1}, "off": {"_count": 1}, "ideous": {"_count": 1}, "worried": {"_count": 1}}, "theyre": {"_count": 3, "supposed": {"_count": 1}, "getting": {"_count": 1}, "the": {"_count": 1}}, "Id": {"_count": 7, "be": {"_count": 1}, "Id": {"_count": 1}, "want": {"_count": 1}, "hunt": {"_count": 1}, "got": {"_count": 1}, "resign": {"_count": 1}, "advise": {"_count": 1}}, "hut": {"_count": 2, "said": {"_count": 1}, "after": {"_count": 1}}, "anymore": {"_count": 4, "said": {"_count": 2}, "": {"_count": 2}}, "your": {"_count": 12, "other": {"_count": 1}, "word": {"_count": 3}, "glasses": {"_count": 1}, "guardian": {"_count": 1}, "suspicions": {"_count": 1}, "charming": {"_count": 1}, "schoolbag": {"_count": 1}, "wand": {"_count": 1}, "chair": {"_count": 1}, "Defense": {"_count": 1}}, "have": {"_count": 11, "another": {"_count": 1}, "a": {"_count": 3}, "stopped": {"_count": 1}, "you": {"_count": 2}, "anything": {"_count": 1}, "yeh": {"_count": 1}, "Luna": {"_count": 1}, "not": {"_count": 1}}, "A": {"_count": 1, "sudden": {"_count": 1}}, "explain": {"_count": 3, "": {"_count": 3}}, "books": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 31, "a": {"_count": 5}, "mercy": {"_count": 1}, "saying": {"_count": 1}, "": {"_count": 4}, "twelve": {"_count": 1}, "believing": {"_count": 1}, "giving": {"_count": 1}, "breakfast": {"_count": 1}, "ages": {"_count": 1}, "it": {"_count": 1}, "twice": {"_count": 1}, "what": {"_count": 1}, "then": {"_count": 1}, "long": {"_count": 1}, "help": {"_count": 1}, "instance": {"_count": 1}, "mentioning": {"_count": 1}, "losing": {"_count": 2}, "one": {"_count": 1}, "Christmas": {"_count": 1}, "sporting": {"_count": 1}, "sticking": {"_count": 1}, "not": {"_count": 1}}, "as": {"_count": 22, "your": {"_count": 1}, "though": {"_count": 3}, "much": {"_count": 2}, "an": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 5}, "you": {"_count": 2}, "I": {"_count": 2}, "usual": {"_count": 1}, "\u2018Professor": {"_count": 1}, "he": {"_count": 1}, "surely": {"_count": 1}, "it": {"_count": 1}}, "later": {"_count": 1, "Im": {"_count": 1}}, "so": {"_count": 10, "the": {"_count": 1}, "much": {"_count": 4}, "far": {"_count": 1}, "angry": {"_count": 1}, "shes": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}}, "somethin": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 16, "yeh": {"_count": 1}, "wrong": {"_count": 1}, "we": {"_count": 1}, "are": {"_count": 1}, "she": {"_count": 1}, "to": {"_count": 3}, "the": {"_count": 1}, "does": {"_count": 1}, "but": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}, "have": {"_count": 1}, "Voldemort": {"_count": 1}}, "next": {"_count": 2, "week": {"_count": 1}, "couldnt": {"_count": 1}}, "Ive": {"_count": 2, "told": {"_count": 2}}, "what": {"_count": 35, "I": {"_count": 2}, "you": {"_count": 5}, "he": {"_count": 3}, "rescued": {"_count": 1}, "passwords": {"_count": 1}, "awful": {"_count": 1}, "": {"_count": 2}, "Arthur": {"_count": 2}, "was": {"_count": 1}, "the": {"_count": 2}, "these": {"_count": 1}, "Slinkhard": {"_count": 1}, "is": {"_count": 1}, "it": {"_count": 2}, "had": {"_count": 3}, "happened": {"_count": 1}, "this": {"_count": 1}, "other": {"_count": 1}, "were": {"_count": 1}, "are": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}}, "over": {"_count": 6, "here": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}}, "or": {"_count": 9, "Fang": {"_count": 1}, "your": {"_count": 1}, "something": {"_count": 1}, "when": {"_count": 1}, "defend": {"_count": 1}, "not": {"_count": 1}, "you": {"_count": 1}, "in": {"_count": 1}, "send": {"_count": 1}}, "know": {"_count": 8, "wont": {"_count": 1}, "at": {"_count": 1}, "whats": {"_count": 1}, "about": {"_count": 1}, "will": {"_count": 1}, "if": {"_count": 2}, "when": {"_count": 1}}, "if": {"_count": 18, "I": {"_count": 6}, "youve": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 4}, "it": {"_count": 1}, "they": {"_count": 1}, "anyones": {"_count": 1}, "some": {"_count": 1}, "youd": {"_count": 1}, "its": {"_count": 1}}, "from": {"_count": 11, "anyway": {"_count": 1}, "competing": {"_count": 1}, "the": {"_count": 3}, "seeking": {"_count": 1}, "Azkaban": {"_count": 1}, "Hogwarts": {"_count": 1}, "within": {"_count": 1}, "Voldemort": {"_count": 1}, "that": {"_count": 1}}, "and": {"_count": 58, "Professor": {"_count": 1}, "how": {"_count": 1}, "you": {"_count": 4}, "her": {"_count": 1}, "it": {"_count": 1}, "told": {"_count": 1}, "I": {"_count": 11}, "Remus": {"_count": 1}, "pushed": {"_count": 1}, "say": {"_count": 1}, "my": {"_count": 3}, "an": {"_count": 1}, "Cedric": {"_count": 1}, "Winky": {"_count": 1}, "Voldemort": {"_count": 1}, "Hermione": {"_count": 1}, "Tonks": {"_count": 1}, "many": {"_count": 1}, "Ill": {"_count": 2}, "Im": {"_count": 2}, "then": {"_count": 1}, "next": {"_count": 1}, "would": {"_count": 1}, "obviously": {"_count": 1}, "show": {"_count": 1}, "with": {"_count": 2}, "Lavender": {"_count": 1}, "gave": {"_count": 1}, "save": {"_count": 1}, "still": {"_count": 1}, "a": {"_count": 1}, "Its": {"_count": 1}, "asks": {"_count": 1}, "Harry": {"_count": 1}, "after": {"_count": 1}, "only": {"_count": 1}, "theyd": {"_count": 1}, "when": {"_count": 1}, "if": {"_count": 1}, "perhaps": {"_count": 1}}, "drinks": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 2, "follow": {"_count": 1}, "you": {"_count": 1}}, "think": {"_count": 5, "let": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "maybe": {"_count": 1}, "stuff": {"_count": 1}}, "coming": {"_count": 4, "to": {"_count": 1}, "down": {"_count": 1}, "out": {"_count": 1}, "back": {"_count": 1}}, "went": {"_count": 1, "straight": {"_count": 1}}, "by": {"_count": 9, "that": {"_count": 1}, "a": {"_count": 1}, "coming": {"_count": 1}, "tampering": {"_count": 1}, "Side": {"_count": 1}, "broom": {"_count": 1}, "you": {"_count": 1}, "delivering": {"_count": 1}, "my": {"_count": 1}}, "wherever": {"_count": 1, "I": {"_count": 1}}, "Master": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 57, "truth": {"_count": 5}, "Stone": {"_count": 1}, "day": {"_count": 1}, "properties": {"_count": 1}, "other": {"_count": 1}, "whole": {"_count": 1}, "collywobbles": {"_count": 1}, "largest": {"_count": 1}, "Order": {"_count": 1}, "moment": {"_count": 1}, "host": {"_count": 1}, "gamekeeper": {"_count": 1}, "password": {"_count": 2}, "sound": {"_count": 1}, "next": {"_count": 1}, "clue": {"_count": 1}, "strongest": {"_count": 1}, "idea": {"_count": 1}, "night": {"_count": 1}, "first": {"_count": 1}, "whereabouts": {"_count": 1}, "poltergeist": {"_count": 1}, "way": {"_count": 1}, "prophecy": {"_count": 8}, "full": {"_count": 1}, "question": {"_count": 1}, "Defense": {"_count": 1}, "price": {"_count": 1}, "memory": {"_count": 1}, "lack": {"_count": 1}, "courtesy": {"_count": 1}, "book": {"_count": 1}, "problem": {"_count": 1}, "sword": {"_count": 3}, "Deluminator": {"_count": 2}, "blood": {"_count": 1}, "locket": {"_count": 1}, "Invisibility": {"_count": 1}, "ring": {"_count": 1}, "address": {"_count": 1}, "sort": {"_count": 1}, "wand": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 7, "their": {"_count": 1}, "Hogwarts": {"_count": 1}, "work": {"_count": 1}, "hiding": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}}, "these": {"_count": 1, "past": {"_count": 1}}, "thrown": {"_count": 1, "out": {"_count": 1}}, "because": {"_count": 6, "he": {"_count": 2}, "there": {"_count": 1}, "I": {"_count": 1}, "its": {"_count": 1}, "Ollivander": {"_count": 1}}, "thats": {"_count": 1, "saying": {"_count": 1}}, "sometimes": {"_count": 1, "": {"_count": 1}}, "find": {"_count": 6, "out": {"_count": 2}, "something": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 1}, "Potter": {"_count": 1}}, "instead": {"_count": 6, "anyway": {"_count": 1}, "Numbing": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}, "This": {"_count": 1}}, "youre": {"_count": 3, "a": {"_count": 2}, "going": {"_count": 1}}, "where": {"_count": 7, "you": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 2}, "it": {"_count": 1}, "I": {"_count": 1}}, "going": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "alone": {"_count": 7, "": {"_count": 5}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "come": {"_count": 5, "back": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}}, "when": {"_count": 17, "I": {"_count": 7}, "youve": {"_count": 1}, "Hermione": {"_count": 1}, "he": {"_count": 3}, "interviewing": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}, "hes": {"_count": 1}}, "this": {"_count": 20, "at": {"_count": 1}, "afternoon": {"_count": 1}, "Hermione": {"_count": 1}, "mornin": {"_count": 1}, "morning": {"_count": 1}, "Christmas": {"_count": 1}, "time": {"_count": 2}, "Which": {"_count": 1}, "might": {"_count": 1}, "said": {"_count": 1}, "before": {"_count": 1}, "year": {"_count": 1}, "ways": {"_count": 1}, "but": {"_count": 1}, "term": {"_count": 1}, "Harry": {"_count": 1}, "travesty": {"_count": 1}, "book": {"_count": 1}, "If": {"_count": 1}}, "sir": {"_count": 6, "said": {"_count": 1}, "We": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "whats": {"_count": 6, "the": {"_count": 1}, "wrong": {"_count": 2}, "coming": {"_count": 1}, "always": {"_count": 1}, "so": {"_count": 1}}, "pocket": {"_count": 1, "money": {"_count": 1}}, "too": {"_count": 13, "your": {"_count": 1}, "": {"_count": 6}, "come": {"_count": 1}, "long": {"_count": 2}, "said": {"_count": 1}, "often": {"_count": 1}, "she": {"_count": 1}}, "just": {"_count": 8, "say": {"_count": 2}, "watch": {"_count": 1}, "now": {"_count": 1}, "out": {"_count": 1}, "Ouch": {"_count": 1}, "keep": {"_count": 1}, "a": {"_count": 1}}, "youll": {"_count": 2, "need": {"_count": 1}, "look": {"_count": 1}}, "show": {"_count": 5, "you": {"_count": 5}}, "advice": {"_count": 1, "on": {"_count": 1}}, "rip": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "tear": {"_count": 1, "you": {"_count": 1}}, "kill": {"_count": 3, "you": {"_count": 1}, "me": {"_count": 2}}, "buff": {"_count": 1, "up": {"_count": 1}}, "Potter": {"_count": 17, "": {"_count": 8}, "so": {"_count": 1}, "said": {"_count": 4}, "he": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}, "repeated": {"_count": 1}}, "its": {"_count": 5, "an": {"_count": 1}, "blocked": {"_count": 1}, "your": {"_count": 1}, "done": {"_count": 1}, "all": {"_count": 1}}, "Myrtle": {"_count": 2, "gasped": {"_count": 1}, "shouted": {"_count": 1}}, "behind": {"_count": 1, "my": {"_count": 1}}, "Argus": {"_count": 1, "he": {"_count": 1}}, "read": {"_count": 1, "your": {"_count": 1}}, "forever": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "understand": {"_count": 1, "what": {"_count": 1}}, "giving": {"_count": 1, "the": {"_count": 1}}, "deal": {"_count": 1, "with": {"_count": 1}}, "expelled": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "sent": {"_count": 1, "home": {"_count": 1}}, "Dobby": {"_count": 5, "": {"_count": 2}, "must": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}}, "Flitwick": {"_count": 1, "was": {"_count": 1}}, "permission": {"_count": 3, "to": {"_count": 2}, "No": {"_count": 1}}, "introduce": {"_count": 2, "my": {"_count": 1}, "for": {"_count": 1}}, "with": {"_count": 23, "a": {"_count": 4}, "the": {"_count": 5}, "Buckbeaks": {"_count": 1}, "great": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 2}, "her": {"_count": 1}, "him": {"_count": 1}, "your": {"_count": 2}, "questions": {"_count": 1}, "open": {"_count": 1}, "complete": {"_count": 1}, "spattergroit": {"_count": 1}, "something": {"_count": 1}}, "They": {"_count": 1, "moved": {"_count": 1}}, "it": {"_count": 8, "had": {"_count": 1}, "was": {"_count": 4}, "disappeared": {"_count": 1}, "would": {"_count": 1}, "started": {"_count": 1}}, "again": {"_count": 7, "": {"_count": 5}, "unless": {"_count": 1}, "however": {"_count": 1}}, "at": {"_count": 17, "the": {"_count": 5}, "him": {"_count": 1}, "all": {"_count": 6}, "school": {"_count": 1}, "least": {"_count": 1}, "his": {"_count": 1}, "Privet": {"_count": 1}, "Hogwarts": {"_count": 1}}, "Wondering": {"_count": 1, "what": {"_count": 1}}, "anything": {"_count": 9, "about": {"_count": 1}, "anymore": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 2}, "We": {"_count": 1}, "you": {"_count": 1}}, "polish": {"_count": 1, "his": {"_count": 1}}, "cards": {"_count": 1, "": {"_count": 1}}, "go": {"_count": 10, "": {"_count": 4}, "when": {"_count": 1}, "Mr": {"_count": 1}, "and": {"_count": 2}, "back": {"_count": 1}, "to": {"_count": 1}}, "Tom": {"_count": 3, "after": {"_count": 1}, "Harry": {"_count": 1}, "anymore": {"_count": 1}}, "Lucius": {"_count": 2, "": {"_count": 2}}, "free": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "ice": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "many": {"_count": 2, "times": {"_count": 1}, "things": {"_count": 1}}, "taking": {"_count": 4, "exams": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}}, "doing": {"_count": 1, "something": {"_count": 1}}, "those": {"_count": 1, "rolls": {"_count": 1}}, "was": {"_count": 4, "that": {"_count": 1}, "not": {"_count": 1}, "a": {"_count": 1}, "standing": {"_count": 1}}, "Riddle": {"_count": 1, "didnt": {"_count": 1}}, "like": {"_count": 19, "you": {"_count": 2}, "that": {"_count": 8}, "a": {"_count": 2}, "once": {"_count": 1}, "I": {"_count": 1}, "theres": {"_count": 1}, "this": {"_count": 1}, "Borgins": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}}, "five": {"_count": 1, "whole": {"_count": 1}}, "after": {"_count": 6, "Hagrid": {"_count": 1}, "dark": {"_count": 1}, "Potions": {"_count": 1}, "Dad": {"_count": 1}, "I": {"_count": 1}, "all": {"_count": 1}}, "not": {"_count": 5, "you": {"_count": 1}, "to": {"_count": 3}, "out": {"_count": 1}}, "leave": {"_count": 1, "its": {"_count": 1}}, "even": {"_count": 3, "before": {"_count": 1}, "when": {"_count": 1}, "though": {"_count": 1}}, "everything": {"_count": 5, "": {"_count": 2}, "said": {"_count": 1}, "you": {"_count": 1}, "yet": {"_count": 1}}, "Slytherin": {"_count": 1, "greatest": {"_count": 1}}, "help": {"_count": 2, "me": {"_count": 2}}, "There": {"_count": 1, "was": {"_count": 1}}, "most": {"_count": 5, "said": {"_count": 1}, "is": {"_count": 1}, "of": {"_count": 2}, "was": {"_count": 1}}, "real": {"_count": 1, "loyalty": {"_count": 1}}, "we": {"_count": 2, "do": {"_count": 1}, "stick": {"_count": 1}}, "back": {"_count": 11, "here": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 3}, "under": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}, "my": {"_count": 1}}, "wont": {"_count": 3, "make": {"_count": 1}, "you": {"_count": 2}}, "of": {"_count": 8, "an": {"_count": 1}, "dripping": {"_count": 1}, "the": {"_count": 2}, "power": {"_count": 1}, "": {"_count": 1}, "your": {"_count": 1}, "being": {"_count": 1}}, "ow": {"_count": 3, "e": {"_count": 1}, "theyre": {"_count": 1}, "Fred": {"_count": 1}}, "Mr": {"_count": 4, "Potter": {"_count": 2}, "Crouch": {"_count": 1}, "Weasley": {"_count": 1}}, "some": {"_count": 5, "money": {"_count": 1}, "": {"_count": 2}, "back": {"_count": 1}, "practice": {"_count": 1}}, "dear": {"_count": 1, "friends": {"_count": 1}}, "before": {"_count": 5, "": {"_count": 1}, "Halloween": {"_count": 1}, "someone": {"_count": 1}, "Christmas": {"_count": 1}, "but": {"_count": 1}}, "which": {"_count": 1, "of": {"_count": 1}}, "gotta": {"_count": 1, "get": {"_count": 1}}, "catch": {"_count": 2, "yeh": {"_count": 1}, "you": {"_count": 1}}, "boy": {"_count": 2, "does": {"_count": 1}, "": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 2, "you": {"_count": 1}, "it": {"_count": 1}}, "please": {"_count": 5, "": {"_count": 2}, "I": {"_count": 1}, "said": {"_count": 1}, "Dean": {"_count": 1}}, "take": {"_count": 2, "that": {"_count": 1}, "off": {"_count": 1}}, "directly": {"_count": 1, "Longbottom": {"_count": 1}}, "fight": {"_count": 1, "it": {"_count": 1}}, "through": {"_count": 3, "please": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "immediately": {"_count": 1, "he": {"_count": 1}}, "do": {"_count": 9, "": {"_count": 1}, "it": {"_count": 4}, "you": {"_count": 1}, "things": {"_count": 1}, "that": {"_count": 2}}, "then": {"_count": 12, "what": {"_count": 1}, "": {"_count": 6}, "we": {"_count": 1}, "panted": {"_count": 1}, "Blimey": {"_count": 1}, "it": {"_count": 1}, "Voldemort": {"_count": 1}}, "laugh": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "orders": {"_count": 1, "from": {"_count": 1}}, "their": {"_count": 1, "Secret": {"_count": 1}}, "already": {"_count": 1, "groaned": {"_count": 1}}, "classes": {"_count": 1, "We": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "dad": {"_count": 2, "died": {"_count": 1}, "an": {"_count": 1}}, "sleep": {"_count": 1, "": {"_count": 1}}, "draw": {"_count": 1, "you": {"_count": 1}}, "shes": {"_count": 2, "never": {"_count": 1}, "on": {"_count": 1}}, "only": {"_count": 1, "last": {"_count": 1}}, "Good": {"_count": 1, "for": {"_count": 1}}, "correct": {"_count": 1, "you": {"_count": 1}}, "Right": {"_count": 1, "on": {"_count": 1}}, "notes": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 5, "": {"_count": 3}, "recited": {"_count": 1}, "will": {"_count": 1}}, "But": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "anywhere": {"_count": 3, "near": {"_count": 2}, "": {"_count": 1}}, "pumpkin": {"_count": 1, "patch": {"_count": 1}}, "Black": {"_count": 2, "said": {"_count": 1}, "made": {"_count": 1}}, "werewolf": {"_count": 1, "Lupin": {"_count": 1}}, "Sirius": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "is": {"_count": 4, "a": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "safe": {"_count": 2, "you": {"_count": 1}, "will": {"_count": 1}}, "while": {"_count": 2, "I": {"_count": 1}, "we": {"_count": 1}}, "company": {"_count": 2, "as": {"_count": 2}}, "crossing": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "though": {"_count": 5, "at": {"_count": 1}, "": {"_count": 3}, "I": {"_count": 1}}, "Peter": {"_count": 2, "please": {"_count": 1}, "had": {"_count": 1}}, "his": {"_count": 4, "paper": {"_count": 1}, "name": {"_count": 1}, "most": {"_count": 1}, "sister": {"_count": 1}}, "Remus": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "tricks": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "never": {"_count": 1}}, "asking": {"_count": 1, "how": {"_count": 1}}, "sane": {"_count": 1, "and": {"_count": 1}}, "keep": {"_count": 5, "my": {"_count": 1}, "quiet": {"_count": 1}, "ya": {"_count": 1}, "drinking": {"_count": 1}, "me": {"_count": 1}}, "without": {"_count": 3, "a": {"_count": 1}, "hurting": {"_count": 1}, "us": {"_count": 1}}, "strength": {"_count": 1, "it": {"_count": 1}}, "croaked": {"_count": 1, "Black": {"_count": 1}}, "Ron": {"_count": 5, "will": {"_count": 1}, "said": {"_count": 2}, "held": {"_count": 1}, "": {"_count": 1}}, "killed": {"_count": 1, "": {"_count": 1}}, "mercy": {"_count": 1, "": {"_count": 1}}, "DONT": {"_count": 1, "LIE": {"_count": 1}}, "RUN": {"_count": 1, "": {"_count": 1}}, "swear": {"_count": 1, "I": {"_count": 1}}, "He": {"_count": 1, "nudged": {"_count": 1}}, "Moony": {"_count": 1, "Wormtail": {"_count": 1}}, "mad": {"_count": 4, "": {"_count": 3}, "as": {"_count": 1}}, "soon": {"_count": 1, "a": {"_count": 1}}, "alarmed": {"_count": 1, "you": {"_count": 1}}, "send": {"_count": 1, "word": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "greatly": {"_count": 1, "": {"_count": 1}}, "nothing": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "has": {"_count": 2, "become": {"_count": 1}, "she": {"_count": 1}}, "Wormtail": {"_count": 2, "": {"_count": 2}}, "Ill": {"_count": 4, "be": {"_count": 1}, "swap": {"_count": 1}, "take": {"_count": 1}, "look": {"_count": 1}}, "shrink": {"_count": 2, "it": {"_count": 1}, "them": {"_count": 1}}, "give": {"_count": 1, "it": {"_count": 1}}, "Bulgaria": {"_count": 1, "will": {"_count": 1}}, "mime": {"_count": 1, "everything": {"_count": 1}}, "Diggory": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 1, "said": {"_count": 1}}, "\u2018a": {"_count": 1, "longhaired": {"_count": 1}}, "No": {"_count": 1, "Mum": {"_count": 1}}, "Ginnys": {"_count": 1, "new": {"_count": 1}}, "So": {"_count": 1, "I": {"_count": 1}}, "snug": {"_count": 1, "about": {"_count": 1}}, "entering": {"_count": 1, "said": {"_count": 1}}, "shouldnt": {"_count": 1, "you": {"_count": 1}}, "posted": {"_count": 1, "on": {"_count": 1}}, "are": {"_count": 3, "you": {"_count": 2}, "a": {"_count": 1}}, "will": {"_count": 3, "you": {"_count": 3}}, "however": {"_count": 1, "that": {"_count": 1}}, "hes": {"_count": 5, "welcome": {"_count": 1}, "going": {"_count": 1}, "not": {"_count": 1}, "fixed": {"_count": 1}, "a": {"_count": 1}}, "Come": {"_count": 1, "off": {"_count": 1}}, "An": {"_count": 1, "air": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "tonight": {"_count": 4, "at": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}}, "cabin": {"_count": 1, "": {"_count": 1}}, "Agrid": {"_count": 1, "": {"_count": 1}}, "growled": {"_count": 2, "Moody": {"_count": 1}, "a": {"_count": 1}}, "second": {"_count": 2, "year": {"_count": 2}}, "someones": {"_count": 1, "asked": {"_count": 1}}, "own": {"_count": 1, "way": {"_count": 1}}, "thinking": {"_count": 1, "hed": {"_count": 1}}, "mum": {"_count": 2, "": {"_count": 2}}, "o": {"_count": 1, "me": {"_count": 1}}, "stalking": {"_count": 1, "her": {"_count": 1}}, "search": {"_count": 1, "for": {"_count": 1}}, "right": {"_count": 4, "after": {"_count": 1}, "in": {"_count": 1}, "afterward": {"_count": 1}, "": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "Snape": {"_count": 3, "hissed": {"_count": 1}, "went": {"_count": 1}, "held": {"_count": 1}}, "get": {"_count": 3, "this": {"_count": 1}, "in": {"_count": 1}, "your": {"_count": 1}}, "among": {"_count": 1, "yourselves": {"_count": 1}}, "Snuffles": {"_count": 1, "okay": {"_count": 1}}, "last": {"_count": 5, "time": {"_count": 1}, "June": {"_count": 1}, "night": {"_count": 3}}, "talking": {"_count": 2, "to": {"_count": 2}}, "abou": {"_count": 2, "her": {"_count": 1}, "Ron": {"_count": 1}}, "good": {"_count": 1, "books": {"_count": 1}}, "six": {"_count": 1, "months": {"_count": 1}}, "something": {"_count": 2, "": {"_count": 1}, "sir": {"_count": 1}}, "more": {"_count": 3, "clearly": {"_count": 1}, "like": {"_count": 1}, "than": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "two": {"_count": 2, "seconds": {"_count": 1}, "years": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "remind": {"_count": 2, "you": {"_count": 2}}, "unscathed": {"_count": 1, "": {"_count": 1}}, "leaving": {"_count": 2, "me": {"_count": 1}, "she": {"_count": 1}}, "reliving": {"_count": 1, "family": {"_count": 1}}, "broken": {"_count": 1, "they": {"_count": 1}}, "And": {"_count": 1, "yet": {"_count": 1}}, "required": {"_count": 1, "the": {"_count": 1}}, "use": {"_count": 1, "any": {"_count": 1}}, "occasional": {"_count": 1, "treats": {"_count": 1}}, "freedom": {"_count": 1, "": {"_count": 1}}, "lying": {"_count": 1, "there": {"_count": 1}}, "home": {"_count": 3, "": {"_count": 1}, "its": {"_count": 1}, "since": {"_count": 1}}, "acquire": {"_count": 1, "a": {"_count": 1}}, "escape": {"_count": 1, "": {"_count": 1}}, "imprisoned": {"_count": 1, "to": {"_count": 1}}, "whether": {"_count": 3, "I": {"_count": 2}, "he": {"_count": 1}}, "word": {"_count": 1, "of": {"_count": 1}}, "stealing": {"_count": 1, "more": {"_count": 1}}, "hed": {"_count": 2, "have": {"_count": 1}, "never": {"_count": 1}}, "Cornelius": {"_count": 2, "said": {"_count": 1}, "or": {"_count": 1}}, "Dumbledore": {"_count": 8, "but": {"_count": 1}, "says": {"_count": 1}, "cares": {"_count": 1}, "": {"_count": 3}, "added": {"_count": 1}, "explained": {"_count": 1}}, "The": {"_count": 4, "only": {"_count": 1}, "man": {"_count": 1}, "second": {"_count": 1}, "Tales": {"_count": 1}}, "very": {"_count": 3, "soon": {"_count": 1}, "seriously": {"_count": 1}, "quickly": {"_count": 1}}, "wha": {"_count": 1, "you": {"_count": 1}}, "Fudge": {"_count": 1, "is": {"_count": 1}}, "win": {"_count": 1, "": {"_count": 1}}, "quite": {"_count": 2, "a": {"_count": 1}, "as": {"_count": 1}}, "news": {"_count": 1, "said": {"_count": 1}}, "Dad": {"_count": 3, "": {"_count": 3}}, "Dudley": {"_count": 2, "backed": {"_count": 1}, "mumbled": {"_count": 1}}, "followed": {"_count": 2, "": {"_count": 2}}, "Was": {"_count": 1, "muttered": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "OUT": {"_count": 1, "": {"_count": 1}}, "Vernon": {"_count": 1, "look": {"_count": 1}}, "Nymphadora": {"_count": 1, "Remus": {"_count": 1}}, "look": {"_count": 1, "a": {"_count": 1}}, "break": {"_count": 1, "that": {"_count": 1}}, "informed": {"_count": 1, "if": {"_count": 1}}, "being": {"_count": 2, "an": {"_count": 1}, "dead": {"_count": 1}}, "e": {"_count": 1, "says": {"_count": 1}}, "lads": {"_count": 1, "the": {"_count": 1}}, "snarled": {"_count": 1, "Mrs": {"_count": 1}}, "funny": {"_count": 1, "questions": {"_count": 1}}, "Merlins": {"_count": 1, "beard": {"_count": 1}}, "registered": {"_count": 1, "would": {"_count": 1}}, "Dedalus": {"_count": 1, "Diggle": {"_count": 1}}, "make": {"_count": 3, "a": {"_count": 1}, "any": {"_count": 1}, "one": {"_count": 1}}, "outside": {"_count": 1, "class": {"_count": 1}}, "ALONE": {"_count": 1, "": {"_count": 1}}, "Keep": {"_count": 1, "for": {"_count": 1}}, "since": {"_count": 2, "I": {"_count": 1}, "Dolores": {"_count": 1}}, "who": {"_count": 2, "made": {"_count": 1}, "did": {"_count": 1}}, "earlier": {"_count": 1, "but": {"_count": 1}}, "We": {"_count": 1, "werent": {"_count": 1}}, "strongly": {"_count": 1, "to": {"_count": 1}}, "exactly": {"_count": 3, "where": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}}, "nervous": {"_count": 1, "I": {"_count": 1}}, "disarm": {"_count": 1, "Hermione": {"_count": 1}}, "JORDAN": {"_count": 1, "": {"_count": 1}}, "punch": {"_count": 1, "Malfoy": {"_count": 1}}, "jobs": {"_count": 1, "worth": {"_count": 1}}, "WHAT": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 1, "two": {"_count": 1}}, "straightaway": {"_count": 1, "bu": {"_count": 1}}, "story": {"_count": 1, "yet": {"_count": 1}}, "health": {"_count": 1, "he": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "You": {"_count": 1, "need": {"_count": 1}}, "another": {"_count": 3, "bite": {"_count": 1}, "go": {"_count": 1}, "one": {"_count": 1}}, "Voldemort": {"_count": 2, "made": {"_count": 1}, "wants": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "whos": {"_count": 1, "been": {"_count": 1}}, "warnings": {"_count": 1, "two": {"_count": 1}}, "whispered": {"_count": 2, "Ginny": {"_count": 1}, "Sirius": {"_count": 1}}, "\u2018sir": {"_count": 4, "or": {"_count": 1}, "": {"_count": 2}, "Professor": {"_count": 1}}, "eventually": {"_count": 1, "though": {"_count": 1}}, "access": {"_count": 1, "to": {"_count": 1}}, "weapons": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 3, "to": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 1}}, "resign": {"_count": 1, "": {"_count": 1}}, "aren": {"_count": 2, "we": {"_count": 1}, "they": {"_count": 1}}, "write": {"_count": 1, "the": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "cry": {"_count": 1, "": {"_count": 1}}, "mam": {"_count": 1, "": {"_count": 1}}, "Bode": {"_count": 1, "would": {"_count": 1}}, "stand": {"_count": 1, "in": {"_count": 1}}, "lie": {"_count": 1, "and": {"_count": 1}}, "Oh": {"_count": 1, "so": {"_count": 1}}, "Evans": {"_count": 1, "said": {"_count": 1}}, "hex": {"_count": 2, "you": {"_count": 1}, "Zacharias": {"_count": 1}}, "SICK": {"_count": 1, "": {"_count": 1}}, "Occlumency": {"_count": 2, "again": {"_count": 1}, "lessons": {"_count": 1}}, "thas": {"_count": 1, "why": {"_count": 1}}, "stupid": {"_count": 1, "warnins": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "mother": {"_count": 1, "took": {"_count": 1}}, "promise": {"_count": 1, "": {"_count": 1}}, "first": {"_count": 2, "Black": {"_count": 1}, "lesson": {"_count": 1}}, "prevented": {"_count": 1, "from": {"_count": 1}}, "freely": {"_count": 1, "": {"_count": 1}}, "Headmistress": {"_count": 1, "": {"_count": 1}}, "Malfoys": {"_count": 1, "stuck": {"_count": 1}}, "By": {"_count": 1, "all": {"_count": 1}}, "laughing": {"_count": 1, "fit": {"_count": 1}}, "Firenze": {"_count": 1, "isnt": {"_count": 1}}, "\u2018Loony": {"_count": 2, "Lovegood": {"_count": 1}, "the": {"_count": 1}}, "ask": {"_count": 1, "a": {"_count": 1}}, "each": {"_count": 1, "and": {"_count": 1}}, "nearer": {"_count": 1, "the": {"_count": 1}}, "warmly": {"_count": 1, "into": {"_count": 1}}, "refreshment": {"_count": 1, "Dumbledore": {"_count": 1}}, "excellent": {"_count": 1, "inside": {"_count": 1}}, "carry": {"_count": 1, "on": {"_count": 1}}, "much": {"_count": 1, "but": {"_count": 1}}, "ere": {"_count": 1, "for": {"_count": 1}}, "private": {"_count": 1, "lessons": {"_count": 1}}, "lessons": {"_count": 1, "but": {"_count": 1}}, "Molly": {"_count": 1, "said": {"_count": 1}}, "ladies": {"_count": 1, "": {"_count": 1}}, "Gwenog": {"_count": 1, "Jones": {"_count": 1}}, "assistant": {"_count": 1, "": {"_count": 1}}, "telling": {"_count": 1, "you": {"_count": 1}}, "rather": {"_count": 1, "cleverer": {"_count": 1}}, "\u2018Potter": {"_count": 1, "": {"_count": 1}}, "outsmarted": {"_count": 1, "innit": {"_count": 1}}, "inter": {"_count": 1, "yer": {"_count": 1}}, "be": {"_count": 1, "a": {"_count": 1}}, "wouldnt": {"_count": 1, "she": {"_count": 1}}, "hourly": {"_count": 1, "reports": {"_count": 1}}, "\u2018I": {"_count": 1, "hope": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "survive": {"_count": 1, "": {"_count": 1}}, "mental": {"_count": 1, "": {"_count": 1}}, "Draco": {"_count": 4, "": {"_count": 2}, "but": {"_count": 1}, "you": {"_count": 1}}, "every": {"_count": 2, "month": {"_count": 1}, "Saturday": {"_count": 1}}, "healthy": {"_count": 1, "": {"_count": 1}}, "along": {"_count": 1, "for": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "reassure": {"_count": 1, "you": {"_count": 1}}, "disquiet": {"_count": 1, "": {"_count": 1}}, "job": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 2, "you": {"_count": 2}}, "Luna": {"_count": 2, "he": {"_count": 1}, "just": {"_count": 1}}, "rest": {"_count": 1, "if": {"_count": 1}}, "return": {"_count": 2, "": {"_count": 2}}, "share": {"_count": 1, "my": {"_count": 1}}, "jump": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 1, "life": {"_count": 1}}, "pineapple": {"_count": 1, "I": {"_count": 1}}, "obviously": {"_count": 1, "I": {"_count": 1}}, "lines": {"_count": 1, "even": {"_count": 1}}, "almost": {"_count": 1, "comical": {"_count": 1}}, "teach": {"_count": 1, "at": {"_count": 1}}, "finish": {"_count": 1, "": {"_count": 1}}, "cause": {"_count": 1, "me": {"_count": 1}}, "incapable": {"_count": 1, "in": {"_count": 1}}, "support": {"_count": 1, "him": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "saying": {"_count": 1, "\u2018Mudblood": {"_count": 1}}, "unless": {"_count": 1, "it": {"_count": 1}}, "explicitly": {"_count": 1, "that": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "himself": {"_count": 1, "and": {"_count": 1}}, "little": {"_count": 1, "of": {"_count": 1}}, "straight": {"_count": 1, "into": {"_count": 1}}, "affectionately": {"_count": 1, "across": {"_count": 1}}, "Well": {"_count": 1, "none": {"_count": 1}}, "weight": {"_count": 1, "see": {"_count": 1}}, "present": {"_count": 1, "my": {"_count": 1}}, "across": {"_count": 1, "three": {"_count": 1}}, "Elphias": {"_count": 1, "dear": {"_count": 1}}, "well": {"_count": 1, "have": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "anyone": {"_count": 1, "woulda": {"_count": 1}}, "shed": {"_count": 1, "take": {"_count": 1}}, "Gregorovitch": {"_count": 1, "": {"_count": 1}}, "replied": {"_count": 1, "mellow": {"_count": 1}}, "included": {"_count": 1, "": {"_count": 1}}, "spoil": {"_count": 1, "your": {"_count": 1}}, "babbles": {"_count": 1, "Bathilda": {"_count": 1}}, "blindly": {"_count": 1, "trust": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "sound": {"_count": 1, "a": {"_count": 1}}, "young": {"_count": 1, "woman": {"_count": 1}}, "try": {"_count": 1, "my": {"_count": 1}}, "were": {"_count": 1, "a": {"_count": 1}}, "Lupins": {"_count": 1, "living": {"_count": 1}}, "woman": {"_count": 1, "": {"_count": 1}}, "prove": {"_count": 1, "it": {"_count": 1}}, "Madam": {"_count": 2, "Lestrange": {"_count": 1}, "but": {"_count": 1}}, "best": {"_count": 1, "": {"_count": 1}}, "feed": {"_count": 1, "the": {"_count": 1}}, "hard": {"_count": 1, "and": {"_count": 1}}, "Mark": {"_count": 1, "burn": {"_count": 1}}, "This": {"_count": 1, "isnt": {"_count": 1}}, "LISTEN": {"_count": 1, "ROM": {"_count": 1}}, "bring": {"_count": 2, "you": {"_count": 1}, "him": {"_count": 1}}, "Severus": {"_count": 2, "": {"_count": 1}, "You": {"_count": 1}}, "under": {"_count": 1, "torture": {"_count": 1}}, "properly": {"_count": 1, "Severus": {"_count": 1}}, "yourself": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "Mudblood": {"_count": 1, "": {"_count": 1}}, "protect": {"_count": 1, "Lilys": {"_count": 1}}, "heart": {"_count": 1, "failure": {"_count": 1}}, "magically": {"_count": 1, "": {"_count": 1}}, "cowardly": {"_count": 1, "You": {"_count": 1}}, "stamping": {"_count": 1, "out": {"_count": 1}}}, "today": {"_count": 127, "": {"_count": 44, "!": {"_count": 7}, ".": {"_count": 27}, "?": {"_count": 10}}, "was": {"_count": 2, "known": {"_count": 1}, "especially": {"_count": 1}}, "nothing": {"_count": 1, "was": {"_count": 1}}, "Something": {"_count": 1, "came": {"_count": 1}}, "gotta": {"_count": 1, "get": {"_count": 1}}, "insisted": {"_count": 1, "that": {"_count": 1}}, "either": {"_count": 1, "said": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 2, "a": {"_count": 1}, "pretty": {"_count": 1}}, "and": {"_count": 6, "very": {"_count": 1}, "I": {"_count": 1}, "her": {"_count": 1}, "commence": {"_count": 1}, "Im": {"_count": 1}, "one": {"_count": 1}}, "Mr": {"_count": 2, "Borgin": {"_count": 1}, "Weasley": {"_count": 1}}, "They": {"_count": 1, "started": {"_count": 1}}, "1230": {"_count": 1, "p": {"_count": 1}}, "he": {"_count": 3, "only": {"_count": 1}, "had": {"_count": 1}, "doodled": {"_count": 1}}, "a": {"_count": 2, "dull": {"_count": 1}, "Shrinking": {"_count": 1}}, "chaps": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "striding": {"_count": 1}}, "weve": {"_count": 2, "got": {"_count": 1}, "already": {"_count": 1}}, "fined": {"_count": 1, "fifty": {"_count": 1}}, "for": {"_count": 1, "Mr": {"_count": 1}}, "delivering": {"_count": 1, "your": {"_count": 1}}, "Hang": {"_count": 1, "on": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 2}, "looked": {"_count": 1}}, "said": {"_count": 7, "Professor": {"_count": 1}, "Snape": {"_count": 1}, "Ron": {"_count": 3}, "George": {"_count": 1}, "Mrs": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "Lavender": {"_count": 1, "wailed": {"_count": 1}}, "Harry": {"_count": 2, "Ron": {"_count": 1}, "got": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 2, "QuickQuotes": {"_count": 1}, "Banishing": {"_count": 1}}, "sitting": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "long": {"_count": 1}}, "No": {"_count": 1, "no": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 2, "are": {"_count": 1}, "shall": {"_count": 1}}, "to": {"_count": 2, "be": {"_count": 1}, "celebrate": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "or": {"_count": 1, "later": {"_count": 1}}, "heavily": {"_count": 1, "disguised": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "I": {"_count": 1, "promise": {"_count": 1}}, "also": {"_count": 1, "happened": {"_count": 1}}, "it": {"_count": 2, "will": {"_count": 1}, "beautified": {"_count": 1}}, "because": {"_count": 1, "you": {"_count": 1}}, "though": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "Tom": {"_count": 1, "sure": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}, "perhaps": {"_count": 1, "an": {"_count": 1}}, "appointed": {"_count": 1, "headmaster": {"_count": 1}}, "must": {"_count": 1, "go": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermole": {"_count": 1}}, "than": {"_count": 1, "they": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}}, "Rejoice": {"_count": 1, "for": {"_count": 1, "You": {"_count": 1}}}, "You": {"_count": 1995, "KnowWho": {"_count": 18, "has": {"_count": 1}, "nonsense": {"_count": 1}, "": {"_count": 4}, "disappeared": {"_count": 1}, "disappear": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 2}, "would": {"_count": 1}, "cant": {"_count": 1}, "returning": {"_count": 1}, "doesnt": {"_count": 1}, "some": {"_count": 1}, "can": {"_count": 1}, "defeated": {"_count": 1}}, "cant": {"_count": 52, "blame": {"_count": 2}, "Dont": {"_count": 1}, "": {"_count": 2}, "go": {"_count": 4}, "have": {"_count": 3}, "tell": {"_count": 2}, "let": {"_count": 4}, "all": {"_count": 1}, "just": {"_count": 2}, "know": {"_count": 1}, "do": {"_count": 6}, "kill": {"_count": 1}, "walk": {"_count": 1}, "Apparate": {"_count": 1}, "leave": {"_count": 1}, "Disapparate": {"_count": 2}, "pull": {"_count": 1}, "give": {"_count": 1}, "boss": {"_count": 1}, "skive": {"_count": 1}, "help": {"_count": 1}, "inside": {"_count": 1}, "come": {"_count": 1}, "see": {"_count": 1}, "hurt": {"_count": 1}, "land": {"_count": 1}, "possibly": {"_count": 1}, "kid": {"_count": 1}, "stand": {"_count": 1}, "want": {"_count": 1}, "move": {"_count": 1}, "wait": {"_count": 1}, "torture": {"_count": 1}, "touch": {"_count": 1}}, "Know": {"_count": 13, "oh": {"_count": 1}, "the": {"_count": 1}, "Whos": {"_count": 7}, "Who": {"_count": 4}}, "flatter": {"_count": 1, "me": {"_count": 1}}, "know": {"_count": 165, "what": {"_count": 37}, "that": {"_count": 9}, "I": {"_count": 17}, "how": {"_count": 11}, "perfectly": {"_count": 6}, "the": {"_count": 9}, "were": {"_count": 2}, "just": {"_count": 1}, "it": {"_count": 3}, "Im": {"_count": 7}, "Weasley": {"_count": 1}, "Minerva": {"_count": 1}, "why": {"_count": 4}, "Ron": {"_count": 1}, "": {"_count": 6}, "hes": {"_count": 1}, "most": {"_count": 1}, "Cornelius": {"_count": 1}, "Sirius": {"_count": 1}, "Harry": {"_count": 1}, "my": {"_count": 2}, "houseelves": {"_count": 1}, "your": {"_count": 1}, "said": {"_count": 6}, "her": {"_count": 2}, "maybe": {"_count": 2}, "theyre": {"_count": 1}, "you": {"_count": 2}, "of": {"_count": 1}, "Dumbledore": {"_count": 2}, "crying": {"_count": 1}, "from": {"_count": 1}, "Ive": {"_count": 1}, "where": {"_count": 3}, "we": {"_count": 1}, "Willy": {"_count": 1}, "Quidditch": {"_count": 1}, "Minister": {"_count": 1}, "he": {"_count": 2}, "about": {"_count": 1}, "as": {"_count": 1}, "Fenrir": {"_count": 1}, "a": {"_count": 1}, "full": {"_count": 1}, "shes": {"_count": 2}, "Accio": {"_count": 1}, "this": {"_count": 1}, "first": {"_count": 1}, "who": {"_count": 1}, "me": {"_count": 1}, "Voldemorts": {"_count": 1}}, "dont": {"_count": 107, "mean": {"_count": 2}, "think": {"_count": 22}, "have": {"_count": 10}, "want": {"_count": 15}, "know": {"_count": 17}, "use": {"_count": 1}, "understand": {"_count": 9}, "care": {"_count": 2}, "see": {"_count": 1}, "believe": {"_count": 4}, "mess": {"_count": 1}, "touch": {"_count": 1}, "need": {"_count": 1}, "mind": {"_count": 3}, "hang": {"_count": 1}, "tell": {"_count": 1}, "normally": {"_count": 1}, "even": {"_count": 2}, "support": {"_count": 1}, "look": {"_count": 1}, "get": {"_count": 2}, "seem": {"_count": 1}, "say": {"_count": 2}, "really": {"_count": 1}, "pay": {"_count": 1}, "like": {"_count": 1}, "reckon": {"_count": 2}, "learn": {"_count": 1}}, "couldnt": {"_count": 11, "find": {"_count": 1}, "help": {"_count": 1}, "wish": {"_count": 1}, "give": {"_count": 2}, "keep": {"_count": 1}, "make": {"_count": 1}, "have": {"_count": 3}, "expect": {"_count": 1}}, "think": {"_count": 36, "it": {"_count": 2}, "I": {"_count": 2}, "so": {"_count": 4}, "a": {"_count": 1}, "you": {"_count": 3}, "the": {"_count": 2}, "that": {"_count": 2}, "Karkaroff": {"_count": 1}, "youve": {"_count": 1}, "McGonagall": {"_count": 1}, "its": {"_count": 2}, "Umbridge": {"_count": 1}, "people": {"_count": 1}, "youre": {"_count": 2}, "youll": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 2}, "he": {"_count": 3}, "YouKnow": {"_count": 1}, "Im": {"_count": 2}, "this": {"_count": 1}}, "could": {"_count": 25, "just": {"_count": 3}, "say": {"_count": 2}, "be": {"_count": 3}, "have": {"_count": 5}, "look": {"_count": 1}, "havedied": {"_count": 1}, "raffle": {"_count": 1}, "see": {"_count": 1}, "always": {"_count": 1}, "said": {"_count": 1}, "take": {"_count": 1}, "do": {"_count": 3}, "get": {"_count": 1}, "never": {"_count": 1}}, "are": {"_count": 115, "breaking": {"_count": 1}, "here": {"_count": 1}, "not": {"_count": 15}, "the": {"_count": 8}, "safe": {"_count": 1}, "sure": {"_count": 2}, "Ron": {"_count": 1}, "Muggleborn": {"_count": 1}, "an": {"_count": 2}, "all": {"_count": 1}, "easily": {"_count": 1}, "disturbing": {"_count": 1}, "truly": {"_count": 1}, "regretting": {"_count": 1}, "preoccupied": {"_count": 1}, "now": {"_count": 1}, "a": {"_count": 7}, "to": {"_count": 5}, "in": {"_count": 1}, "very": {"_count": 4}, "further": {"_count": 1}, "no": {"_count": 1}, "still": {"_count": 3}, "merciful": {"_count": 1}, "er": {"_count": 1}, "prepared": {"_count": 1}, "merely": {"_count": 1}, "blinded": {"_count": 1}, "on": {"_count": 2}, "Harry": {"_count": 1}, "so": {"_count": 2}, "heading": {"_count": 1}, "lazy": {"_count": 1}, "embarrassing": {"_count": 1}, "quite": {"_count": 3}, "raving": {"_count": 1}, "trying": {"_count": 1}, "keeping": {"_count": 1}, "being": {"_count": 2}, "forcing": {"_count": 1}, "from": {"_count": 1}, "forgetting": {"_count": 3}, "avoiding": {"_count": 1}, "you": {"_count": 1}, "Luciuss": {"_count": 1}, "advised": {"_count": 1}, "with": {"_count": 1}, "sweet": {"_count": 1}, "cool": {"_count": 1}, "fighting": {"_count": 1}, "speaking": {"_count": 1}, "determined": {"_count": 1}, "as": {"_count": 1}, "sixteen": {"_count": 1}, "mistaken": {"_count": 1}, "omniscient": {"_count": 1}, "thinking": {"_count": 1}, "setting": {"_count": 1}, "protected": {"_count": 1}, "underage": {"_count": 1}, "afraid": {"_count": 1}, "of": {"_count": 1}, "Mary": {"_count": 1}, "ruining": {"_count": 1}, "Potter": {"_count": 1}, "I": {"_count": 1}, "lying": {"_count": 1}, "hardly": {"_count": 1}, "said": {"_count": 1}, "nearly": {"_count": 1}}, "never": {"_count": 14, "told": {"_count": 1}, "get": {"_count": 2}, "know": {"_count": 2}, "heard": {"_count": 1}, "miss": {"_count": 1}, "spoke": {"_count": 1}, "said": {"_count": 1}, "can": {"_count": 1}, "knew": {"_count": 1}, "really": {"_count": 1}, "killed": {"_count": 1}, "saw": {"_count": 1}}, "knew": {"_count": 10, "": {"_count": 1}, "Im": {"_count": 1}, "Sirius": {"_count": 1}, "hed": {"_count": 1}, "where": {"_count": 2}, "that": {"_count": 1}, "Dumbledore": {"_count": 1}, "there": {"_count": 1}, "all": {"_count": 1}}, "told": {"_count": 14, "me": {"_count": 8}, "nobody": {"_count": 1}, "her": {"_count": 2}, "us": {"_count": 1}, "him": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "was": {"_count": 1, "just": {"_count": 1}}, "can": {"_count": 70, "kip": {"_count": 1}, "start": {"_count": 1}, "keep": {"_count": 4}, "come": {"_count": 3}, "see": {"_count": 3}, "pretend": {"_count": 1}, "take": {"_count": 1}, "go": {"_count": 3}, "clear": {"_count": 1}, "address": {"_count": 1}, "talk": {"_count": 1}, "speak": {"_count": 3}, "copy": {"_count": 1}, "imagine": {"_count": 4}, "call": {"_count": 1}, "exist": {"_count": 1}, "do": {"_count": 5}, "replay": {"_count": 1}, "try": {"_count": 2}, "put": {"_count": 3}, "trust": {"_count": 1}, "look": {"_count": 1}, "open": {"_count": 1}, "wait": {"_count": 1}, "have": {"_count": 4}, "laugh": {"_count": 1}, "practice": {"_count": 1}, "simply": {"_count": 1}, "make": {"_count": 1}, "walk": {"_count": 2}, "carry": {"_count": 1}, "use": {"_count": 3}, "still": {"_count": 2}, "save": {"_count": 1}, "I": {"_count": 1}, "Apparate": {"_count": 1}, "lead": {"_count": 1}, "all": {"_count": 1}, "Summon": {"_count": 1}, "Disapparate": {"_count": 1}, "tell": {"_count": 2}}, "bowed": {"_count": 1, "to": {"_count": 1}}, "have": {"_count": 82, "his": {"_count": 1}, "your": {"_count": 3}, "been": {"_count": 13}, "a": {"_count": 5}, "slain": {"_count": 1}, "told": {"_count": 1}, "heard": {"_count": 2}, "these": {"_count": 1}, "thirty": {"_count": 1}, "nothing": {"_count": 1}, "sent": {"_count": 1}, "no": {"_count": 5}, "to": {"_count": 5}, "now": {"_count": 2}, "each": {"_count": 1}, "given": {"_count": 1}, "disappointed": {"_count": 1}, "never": {"_count": 2}, "shown": {"_count": 3}, "shouldered": {"_count": 1}, "it": {"_count": 1}, "produced": {"_count": 1}, "all": {"_count": 1}, "done": {"_count": 3}, "Lord": {"_count": 1}, "havent": {"_count": 1}, "irked": {"_count": 1}, "not": {"_count": 3}, "had": {"_count": 2}, "inadvertently": {"_count": 1}, "feared": {"_count": 1}, "": {"_count": 2}, "flitted": {"_count": 1}, "developed": {"_count": 1}, "only": {"_count": 1}, "some": {"_count": 1}, "until": {"_count": 1}, "fought": {"_count": 1}, "one": {"_count": 1}, "permitted": {"_count": 2}, "kept": {"_count": 1}, "used": {"_count": 1}, "guessed": {"_count": 1}, "lost": {"_count": 1}}, "saw": {"_count": 12, "what": {"_count": 2}, "her": {"_count": 1}, "him": {"_count": 2}, "Cornelius": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 3}, "Malfoy": {"_count": 1}, "Griphooks": {"_count": 1}}, "all": {"_count": 14, "right": {"_count": 10}, "know": {"_count": 2}, "righ": {"_count": 2}}, "11": {"_count": 1, "see": {"_count": 1}}, "just": {"_count": 24, "wait": {"_count": 2}, "had": {"_count": 2}, "dont": {"_count": 3}, "better": {"_count": 1}, "need": {"_count": 4}, "look": {"_count": 1}, "werent": {"_count": 1}, "said": {"_count": 2}, "want": {"_count": 1}, "chuck": {"_count": 1}, "walked": {"_count": 1}, "drop": {"_count": 1}, "didnt": {"_count": 1}, "put": {"_count": 1}, "tipped": {"_count": 1}, "picked": {"_count": 1}}, "should": {"_count": 30, "have": {"_count": 10}, "see": {"_count": 3}, "talk": {"_count": 1}, "drink": {"_count": 1}, "be": {"_count": 6}, "all": {"_count": 1}, "win": {"_count": 1}, "never": {"_count": 1}, "therefore": {"_count": 1}, "write": {"_count": 1}, "hear": {"_count": 1}, "get": {"_count": 1}, "definitely": {"_count": 1}, "each": {"_count": 1}}, "said": {"_count": 24, "YouKnowWhos": {"_count": 1}, "youd": {"_count": 3}, "hippogriffs": {"_count": 1}, "its": {"_count": 1}, "it": {"_count": 5}, "the": {"_count": 1}, "you": {"_count": 2}, "to": {"_count": 2}, "Ron": {"_count": 1}, "at": {"_count": 1}, "Greyback": {"_count": 1}, "everything": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "Voldemort": {"_count": 1}, "they": {"_count": 1}}, "wont": {"_count": 21, "be": {"_count": 6}, "tease": {"_count": 1}, "snapped": {"_count": 1}, "will": {"_count": 1}, "have": {"_count": 3}, "let": {"_count": 1}, "get": {"_count": 1}, "need": {"_count": 1}, "mind": {"_count": 1}, "": {"_count": 1}, "say": {"_count": 1}, "dear": {"_count": 1}, "find": {"_count": 1}, "tell": {"_count": 1}}, "want": {"_count": 29, "to": {"_count": 20}, "fame": {"_count": 1}, "us": {"_count": 4}, "Spell": {"_count": 1}, "me": {"_count": 1}, "Cornelius": {"_count": 1}, "the": {"_count": 1}}, "two": {"_count": 17, "had": {"_count": 1}, "wait": {"_count": 1}, "will": {"_count": 1}, "hurry": {"_count": 1}, "got": {"_count": 1}, "are": {"_count": 1}, "counseled": {"_count": 1}, "made": {"_count": 1}, "passed": {"_count": 1}, "just": {"_count": 1}, "she": {"_count": 1}, "must": {"_count": 1}, "Crabbe": {"_count": 1}, "stay": {"_count": 2}, "find": {"_count": 1}, "carry": {"_count": 1}}, "hang": {"_count": 1, "around": {"_count": 1}}, "havent": {"_count": 33, "been": {"_count": 6}, "got": {"_count": 10}, "seen": {"_count": 1}, "even": {"_count": 1}, "heard": {"_count": 3}, "forgotten": {"_count": 3}, "": {"_count": 2}, "given": {"_count": 1}, "done": {"_count": 1}, "mentioned": {"_count": 1}, "told": {"_count": 1}, "ever": {"_count": 1}, "slept": {"_count": 1}, "had": {"_count": 1}}, "there": {"_count": 3, "still": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "will": {"_count": 81, "have": {"_count": 4}, "keep": {"_count": 1}, "always": {"_count": 1}, "know": {"_count": 1}, "not": {"_count": 5}, "wait": {"_count": 1}, "eat": {"_count": 1}, "both": {"_count": 2}, "be": {"_count": 10}, "appreciate": {"_count": 1}, "also": {"_count": 1}, "find": {"_count": 4}, "interpret": {"_count": 1}, "need": {"_count": 3}, "each": {"_count": 1}, "damage": {"_count": 1}, "milk": {"_count": 1}, "do": {"_count": 1}, "collect": {"_count": 2}, "set": {"_count": 1}, "join": {"_count": 1}, "take": {"_count": 1}, "return": {"_count": 2}, "come": {"_count": 2}, "shake": {"_count": 1}, "go": {"_count": 1}, "notice": {"_count": 1}, "write": {"_count": 1}, "receive": {"_count": 2}, "meet": {"_count": 1}, "remember": {"_count": 4}, "now": {"_count": 2}, "sit": {"_count": 1}, "remain": {"_count": 1}, "give": {"_count": 1}, "tell": {"_count": 1}, "said": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 1}, "leave": {"_count": 2}, "hear": {"_count": 1}, "stay": {"_count": 2}, "continue": {"_count": 1}, "ave": {"_count": 1}, "suggest": {"_count": 1}, "forget": {"_count": 1}, "present": {"_count": 1}, "make": {"_count": 1}, "never": {"_count": 1}}, "might": {"_count": 18, "belong": {"_count": 2}, "want": {"_count": 1}, "have": {"_count": 6}, "sneer": {"_count": 1}, "even": {"_count": 1}, "find": {"_count": 1}, "be": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 2}, "ask": {"_count": 1}, "remember": {"_count": 1}}, "Potter": {"_count": 2, "why": {"_count": 1}, "and": {"_count": 1}}, "leave": {"_count": 1, "those": {"_count": 1}}, "must": {"_count": 32, "be": {"_count": 6}, "come": {"_count": 1}, "speak": {"_count": 1}, "have": {"_count": 5}, "catch": {"_count": 1}, "see": {"_count": 1}, "not": {"_count": 4}, "understand": {"_count": 1}, "act": {"_count": 1}, "remember": {"_count": 1}, "remain": {"_count": 1}, "listen": {"_count": 1}, "forgive": {"_count": 1}, "concentrate": {"_count": 1}, "know": {"_count": 2}, "prune": {"_count": 1}, "flee": {"_count": 1}, "hope": {"_count": 1}, "kill": {"_count": 1}}, "": {"_count": 22, "!": {"_count": 10}, ".": {"_count": 6}, "?": {"_count": 6}}, "realize": {"_count": 8, "that": {"_count": 3}, "we": {"_count": 1}, "Bertha": {"_count": 1}, "weve": {"_count": 1}, "shes": {"_count": 1}, "of": {"_count": 1}}, "do": {"_count": 19, "it": {"_count": 1}, "believe": {"_count": 1}, "want": {"_count": 1}, "realize": {"_count": 2}, "that": {"_count": 1}, "not": {"_count": 6}, "": {"_count": 1}, "know": {"_count": 2}, "care": {"_count": 1}, "said": {"_count": 1}, "them": {"_count": 1}, "spoil": {"_count": 1}}, "each": {"_count": 1, "win": {"_count": 1}}, "may": {"_count": 23, "go": {"_count": 7}, "ask": {"_count": 1}, "find": {"_count": 1}, "not": {"_count": 1}, "rest": {"_count": 1}, "retain": {"_count": 1}, "leave": {"_count": 1}, "use": {"_count": 1}, "stay": {"_count": 1}, "begin": {"_count": 2}, "perhaps": {"_count": 1}, "well": {"_count": 1}, "said": {"_count": 1}, "wear": {"_count": 1}, "have": {"_count": 1}, "call": {"_count": 1}}, "forget": {"_count": 2, "that": {"_count": 1}, "who": {"_count": 1}}, "what": {"_count": 2, "": {"_count": 2}}, "too": {"_count": 3, "said": {"_count": 1}, "Mr": {"_count": 1}, "Harry": {"_count": 1}}, "asked": {"_count": 3, "me": {"_count": 2}, "us": {"_count": 1}}, "look": {"_count": 21, "odd": {"_count": 1}, "terrible": {"_count": 2}, "troubled": {"_count": 1}, "in": {"_count": 1}, "after": {"_count": 1}, "absolutely": {"_count": 1}, "really": {"_count": 1}, "frozen": {"_count": 1}, "ever": {"_count": 1}, "funny": {"_count": 2}, "very": {"_count": 1}, "worried": {"_count": 1}, "mighty": {"_count": 1}, "right": {"_count": 1}, "pale": {"_count": 1}, "awful": {"_count": 1}, "smart": {"_count": 1}, "great": {"_count": 1}, "vunderful": {"_count": 1}}, "had": {"_count": 13, "it": {"_count": 1}, "better": {"_count": 2}, "to": {"_count": 2}, "too": {"_count": 1}, "an": {"_count": 1}, "flashes": {"_count": 1}, "your": {"_count": 1}, "suffered": {"_count": 1}, "no": {"_count": 1}, "a": {"_count": 1}, "accepted": {"_count": 1}}, "sound": {"_count": 5, "like": {"_count": 4}, "confident": {"_count": 1}}, "who": {"_count": 1, "have": {"_count": 1}}, "see": {"_count": 46, "Dumbledore": {"_count": 4}, "only": {"_count": 1}, "": {"_count": 7}, "it": {"_count": 1}, "the": {"_count": 7}, "Severus": {"_count": 1}, "Remus": {"_count": 1}, "Minister": {"_count": 1}, "Amos": {"_count": 1}, "sir": {"_count": 1}, "I": {"_count": 7}, "that": {"_count": 1}, "his": {"_count": 1}, "Fudge": {"_count": 1}, "what": {"_count": 2}, "Ronan": {"_count": 1}, "there": {"_count": 1}, "continued": {"_count": 1}, "when": {"_count": 2}, "Kreacher": {"_count": 1}, "in": {"_count": 1}, "within": {"_count": 1}, "we": {"_count": 1}}, "tell": {"_count": 3, "him": {"_count": 2}, "me": {"_count": 1}}, "won": {"_count": 1, "": {"_count": 1}}, "fed": {"_count": 1, "Draco": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "shouldnt": {"_count": 10, "be": {"_count": 1}, "have": {"_count": 6}, "ve": {"_count": 1}, "leave": {"_count": 1}, "overexert": {"_count": 1}}, "drink": {"_count": 2, "that": {"_count": 1}, "first": {"_count": 1}}, "gasped": {"_count": 1, "Harry": {"_count": 1}}, "let": {"_count": 3, "the": {"_count": 1}, "Professor": {"_count": 1}, "me": {"_count": 1}}, "mean": {"_count": 22, "he": {"_count": 3}, "all": {"_count": 1}, "youre": {"_count": 1}, "by": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 3}, "like": {"_count": 1}, "Dumbledore": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 3}, "Umbridge": {"_count": 1}, "hes": {"_count": 3}, "that": {"_count": 1}, "we": {"_count": 1}}, "got": {"_count": 8, "there": {"_count": 1}, "Hermiones": {"_count": 1}, "onto": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "married": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 1}}, "nearly": {"_count": 2, "were": {"_count": 1}, "got": {"_count": 1}}, "did": {"_count": 21, "do": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 3}, "": {"_count": 6}, "you": {"_count": 1}, "listen": {"_count": 1}, "promise": {"_count": 1}, "more": {"_count": 1}, "not": {"_count": 2}, "brilliantly": {"_count": 1}, "well": {"_count": 1}, "read": {"_count": 1}, "said": {"_count": 1}}, "need": {"_count": 24, "rest": {"_count": 1}, "your": {"_count": 2}, "to": {"_count": 15}, "preparing": {"_count": 1}, "arming": {"_count": 1}, "more": {"_count": 1}, "return": {"_count": 1}, "the": {"_count": 1}, "whats": {"_count": 1}}, "stay": {"_count": 7, "out": {"_count": 1}, "where": {"_count": 1}, "here": {"_count": 4}, "there": {"_count": 1}}, "ccant": {"_count": 2, "Dad": {"_count": 1}, "": {"_count": 1}}, "didnt": {"_count": 35, "tell": {"_count": 2}, "ask": {"_count": 1}, "pass": {"_count": 1}, "seem": {"_count": 1}, "arrive": {"_count": 1}, "hear": {"_count": 4}, "imagine": {"_count": 1}, "do": {"_count": 2}, "used": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "say": {"_count": 3}, "make": {"_count": 1}, "leave": {"_count": 1}, "realize": {"_count": 1}, "see": {"_count": 3}, "bring": {"_count": 1}, "mean": {"_count": 1}, "watch": {"_count": 1}, "try": {"_count": 1}, "meet": {"_count": 1}, "get": {"_count": 1}, "have": {"_count": 1}, "disobey": {"_count": 1}, "break": {"_count": 1}, "think": {"_count": 1}}, "keep": {"_count": 6, "your": {"_count": 2}, "away": {"_count": 1}, "that": {"_count": 1}, "shifting": {"_count": 1}, "saying": {"_count": 1}}, "twove": {"_count": 1, "got": {"_count": 1}}, "be": {"_count": 2, "careful": {"_count": 1}, "good": {"_count": 1}}, "were": {"_count": 59, "seen": {"_count": 1}, "the": {"_count": 7}, "there": {"_count": 2}, "fantastic": {"_count": 1}, "with": {"_count": 1}, "just": {"_count": 1}, "found": {"_count": 1}, "amazing": {"_count": 2}, "supposed": {"_count": 1}, "right": {"_count": 4}, "out": {"_count": 1}, "getting": {"_count": 1}, "clutching": {"_count": 1}, "rolling": {"_count": 1}, "at": {"_count": 2}, "so": {"_count": 2}, "all": {"_count": 1}, "really": {"_count": 2}, "expelled": {"_count": 1}, "werent": {"_count": 1}, "listening": {"_count": 1}, "lying": {"_count": 1}, "still": {"_count": 2}, "guarding": {"_count": 1}, "ordering": {"_count": 1}, "only": {"_count": 1}, "in": {"_count": 2}, "not": {"_count": 2}, "too": {"_count": 1}, "saying": {"_count": 1}, "told": {"_count": 1}, "both": {"_count": 1}, "wearing": {"_count": 1}, "going": {"_count": 1}, "certainly": {"_count": 1}, "never": {"_count": 1}, "muttering": {"_count": 1}, "happy": {"_count": 1}, "yelling": {"_count": 1}, "looking": {"_count": 1}, "trying": {"_count": 1}, "an": {"_count": 1}}, "couldve": {"_count": 2, "fried": {"_count": 1}, "taken": {"_count": 1}}, "wouldnt": {"_count": 14, "like": {"_count": 2}, "even": {"_count": 1}, "": {"_count": 1}, "understand": {"_count": 2}, "be": {"_count": 2}, "said": {"_count": 1}, "There": {"_count": 1}, "believe": {"_count": 1}, "think": {"_count": 1}, "want": {"_count": 1}, "have": {"_count": 1}}, "heard": {"_count": 23, "him": {"_count": 4}, "what": {"_count": 4}, "James": {"_count": 1}, "Dumbledore": {"_count": 1}, "everything": {"_count": 1}, "me": {"_count": 6}, "old": {"_count": 1}, "your": {"_count": 1}, "them": {"_count": 2}, "Slughorn": {"_count": 1}, "Voldemort": {"_count": 1}}, "needed": {"_count": 2, "a": {"_count": 1}, "Alastor": {"_count": 1}}, "enjoyed": {"_count": 1, "it": {"_count": 1}}, "stopped": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 5, "that": {"_count": 2}, "me": {"_count": 2}, "him": {"_count": 1}}, "gave": {"_count": 6, "us": {"_count": 2}, "Mr": {"_count": 1}, "Ron": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}}, "read": {"_count": 3, "too": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}}, "wish": {"_count": 2, "said": {"_count": 1}, "the": {"_count": 1}}, "definitely": {"_count": 2, "think": {"_count": 1}, "went": {"_count": 1}}, "go": {"_count": 8, "on": {"_count": 2}, "upstairs": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "too": {"_count": 1}}, "sleep": {"_count": 1, "with": {"_count": 1}}, "say": {"_count": 6, "that": {"_count": 1}, "you": {"_count": 2}, "your": {"_count": 1}, "one": {"_count": 1}, "youre": {"_count": 1}}, "wanted": {"_count": 4, "to": {"_count": 4}}, "live": {"_count": 1, "in": {"_count": 1}}, "met": {"_count": 1, "Hagrid": {"_count": 1}}, "wrote": {"_count": 2, "them": {"_count": 1}, "": {"_count": 1}}, "found": {"_count": 4, "it": {"_count": 1}, "him": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}}, "hold": {"_count": 1, "Ginnys": {"_count": 1}}, "saved": {"_count": 11, "her": {"_count": 2}, "an": {"_count": 1}, "er": {"_count": 1}, "my": {"_count": 2}, "Dads": {"_count": 1}, "four": {"_count": 1}, "everything": {"_count": 1}, "Ginny": {"_count": 1}, "our": {"_count": 1}}, "happen": {"_count": 1, "to": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "shall": {"_count": 7, "not": {"_count": 2}, "go": {"_count": 2}, "have": {"_count": 2}, "hear": {"_count": 1}}, "solved": {"_count": 2, "it": {"_count": 2}}, "behave": {"_count": 1, "yourself": {"_count": 1}}, "mustnt": {"_count": 6, "blame": {"_count": 1}, "": {"_count": 2}, "think": {"_count": 1}, "start": {"_count": 1}, "let": {"_count": 1}}, "get": {"_count": 4, "that": {"_count": 1}, "this": {"_count": 1}, "back": {"_count": 1}, "away": {"_count": 1}}, "boy": {"_count": 3, "he": {"_count": 1}, "she": {"_count": 1}, "give": {"_count": 1}}, "ave": {"_count": 3, "this": {"_count": 1}, "finished": {"_count": 1}, "been": {"_count": 1}}, "oughta": {"_count": 1, "read": {"_count": 1}}, "outta": {"_count": 1, "your": {"_count": 1}}, "KnowOo": {"_count": 1, "Harry": {"_count": 1}}, "already": {"_count": 1, "know": {"_count": 1}}, "bought": {"_count": 1, "that": {"_count": 1}}, "went": {"_count": 5, "sort": {"_count": 1}, "to": {"_count": 2}, "poking": {"_count": 1}, "sneaking": {"_count": 1}}, "fainted": {"_count": 1, "Potter": {"_count": 1}}, "actually": {"_count": 2, "fainted": {"_count": 1}, "are": {"_count": 1}}, "shouldve": {"_count": 3, "said": {"_count": 1}, "told": {"_count": 1}, "got": {"_count": 1}}, "and": {"_count": 17, "Hermione": {"_count": 2}, "Krum": {"_count": 1}, "Professor": {"_count": 1}, "your": {"_count": 4}, "Tonks": {"_count": 1}, "Umbridge": {"_count": 1}, "Mr": {"_count": 1}, "Fred": {"_count": 1}, "Dumbledore": {"_count": 1}, "Cho": {"_count": 1}, "Hagrid": {"_count": 1}, "that": {"_count": 2}}, "you": {"_count": 13, "were": {"_count": 1}, "did": {"_count": 2}, "just": {"_count": 1}, "tap": {"_count": 1}, "Hermione": {"_count": 1}, "sure": {"_count": 1}, "cannot": {"_count": 1}, "look": {"_count": 1}, "dont": {"_count": 1}, "reckon": {"_count": 1}, "really": {"_count": 1}, "have": {"_count": 1}}, "notice": {"_count": 2, "the": {"_count": 2}}, "remember": {"_count": 8, "the": {"_count": 2}, "that": {"_count": 2}, "how": {"_count": 1}, "my": {"_count": 1}, "where": {"_count": 1}, "said": {"_count": 1}}, "fell": {"_count": 1, "off": {"_count": 1}}, "really": {"_count": 8, "dont": {"_count": 1}, "should": {"_count": 1}, "were": {"_count": 1}, "ought": {"_count": 1}, "miss": {"_count": 1}, "mustnt": {"_count": 1}, "shouldnt": {"_count": 1}, "understand": {"_count": 1}}, "arent": {"_count": 5, "passing": {"_count": 1}, "going": {"_count": 1}, "still": {"_count": 1}, "serious": {"_count": 1}, "trying": {"_count": 1}}, "sure": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "called": {"_count": 4, "Severus": {"_count": 1}, "her": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 2, "was": {"_count": 1}, "Dedalus": {"_count": 1}}, "killed": {"_count": 3, "my": {"_count": 1}, "your": {"_count": 1}, "Albus": {"_count": 1}}, "sold": {"_count": 2, "them": {"_count": 1}, "Lily": {"_count": 1}}, "forgot": {"_count": 1, "to": {"_count": 1}}, "fool": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "would": {"_count": 10, "have": {"_count": 2}, "not": {"_count": 1}, "be": {"_count": 3}, "succeed": {"_count": 1}, "prefer": {"_count": 1}, "certainly": {"_count": 1}, "say": {"_count": 1}}, "always": {"_count": 2, "liked": {"_count": 1}, "get": {"_count": 1}}, "werent": {"_count": 6, "about": {"_count": 1}, "there": {"_count": 1}, "being": {"_count": 1}, "supposed": {"_count": 1}, "ordering": {"_count": 1}, "": {"_count": 1}}, "fly": {"_count": 2, "as": {"_count": 1}, "very": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "agree": {"_count": 1, "Harry": {"_count": 1}}, "surely": {"_count": 2, "dont": {"_count": 1}, "arent": {"_count": 1}}, "conjured": {"_count": 1, "up": {"_count": 1}}, "explain": {"_count": 1, "said": {"_count": 1}}, "guessed": {"_count": 1, "right": {"_count": 1}}, "helped": {"_count": 2, "uncover": {"_count": 1}, "me": {"_count": 1}}, "he": {"_count": 1, "barked": {"_count": 1}}, "stand": {"_count": 3, "there": {"_count": 1}, "Harry": {"_count": 1}, "by": {"_count": 1}}, "write": {"_count": 1, "and": {"_count": 1}}, "dropped": {"_count": 3, "it": {"_count": 2}, "the": {"_count": 1}}, "wait": {"_count": 8, "until": {"_count": 1}, "he": {"_count": 2}, "": {"_count": 2}, "she": {"_count": 1}, "when": {"_count": 1}, "here": {"_count": 1}}, "beat": {"_count": 2, "Harry": {"_count": 1}, "me": {"_count": 1}}, "foreign": {"_count": 1, "": {"_count": 1}}, "bust": {"_count": 2, "slug": {"_count": 2}}, "not": {"_count": 1, "got": {"_count": 1}}, "reckon": {"_count": 6, "Ireland": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}}, "is": {"_count": 11, "surely": {"_count": 1}, "not": {"_count": 2}, "ought": {"_count": 1}, "seeing": {"_count": 2}, "supposed": {"_count": 1}, "hie": {"_count": 1}, "killed": {"_count": 3}}, "goes": {"_count": 1, "racketing": {"_count": 1}}, "lot": {"_count": 3, "get": {"_count": 1}, "had": {"_count": 2}}, "watch": {"_count": 1, "your": {"_count": 1}}, "seem": {"_count": 7, "very": {"_count": 1}, "to": {"_count": 4}, "really": {"_count": 1}, "unsupported": {"_count": 1}}, "threw": {"_count": 1, "it": {"_count": 1}}, "only": {"_count": 4, "like": {"_count": 2}, "got": {"_count": 1}, "agreed": {"_count": 1}}, "jus": {"_count": 1, "wait": {"_count": 1}}, "believe": {"_count": 5, "I": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "Snape": {"_count": 1}}, "being": {"_count": 1, "champion": {"_count": 1}}, "treat": {"_count": 1, "it": {"_count": 1}}, "miss": {"_count": 1, "him": {"_count": 1}}, "lousy": {"_count": 1, "biased": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "bring": {"_count": 1, "letters": {"_count": 1}}, "er": {"_count": 5, "look": {"_count": 1}, "got": {"_count": 1}, "havent": {"_count": 1}, "feelin": {"_count": 1}, "your": {"_count": 1}}, "youre": {"_count": 1, "Ron": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "horrible": {"_count": 1, "woman": {"_count": 1}}, "used": {"_count": 3, "to": {"_count": 3}}, "ever": {"_count": 1, "thought": {"_count": 1}}, "okay": {"_count": 1, "Harry": {"_count": 1}}, "Never": {"_count": 1, "Knew": {"_count": 1}}, "Had": {"_count": 1, "and": {"_count": 1}}, "has": {"_count": 1, "to": {"_count": 1}}, "take": {"_count": 7, "your": {"_count": 1}, "it": {"_count": 2}, "this": {"_count": 1}, "Remedial": {"_count": 1}, "notes": {"_count": 1}, "a": {"_count": 1}}, "haff": {"_count": 2, "a": {"_count": 1}, "never": {"_count": 1}}, "three": {"_count": 1, "and": {"_count": 1}}, "first": {"_count": 1, "saw": {"_count": 1}}, "missed": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "planned": {"_count": 1, "to": {"_count": 1}}, "feeling": {"_count": 1, "all": {"_count": 1}}, "stayed": {"_count": 1, "behind": {"_count": 1}}, "ask": {"_count": 5, "for": {"_count": 1}, "where": {"_count": 1}, "why": {"_count": 1}, "him": {"_count": 1}, "deep": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "deserve": {"_count": 2, "this": {"_count": 1}, "to": {"_count": 1}}, "cannot": {"_count": 6, "hide": {"_count": 1}, "pass": {"_count": 1}, "fight": {"_count": 1}, "help": {"_count": 1}, "despise": {"_count": 1}, "imagine": {"_count": 1}}, "fight": {"_count": 1, "him": {"_count": 1}}, "dueled": {"_count": 1, "with": {"_count": 1}}, "fired": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "ought": {"_count": 1}}, "admit": {"_count": 1, "that": {"_count": 1}}, "place": {"_count": 1, "too": {"_count": 1}}, "fail": {"_count": 1, "to": {"_count": 1}}, "caught": {"_count": 1, "some": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "moron": {"_count": 1, "Dudley": {"_count": 1}}, "suggest": {"_count": 1, "to": {"_count": 1}}, "ran": {"_count": 1, "away": {"_count": 1}}, "received": {"_count": 3, "an": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}}, "produced": {"_count": 1, "a": {"_count": 1}}, "learned": {"_count": 1, "this": {"_count": 1}}, "belong": {"_count": 1, "at": {"_count": 1}}, "arrived": {"_count": 1, "back": {"_count": 1}}, "handled": {"_count": 1, "it": {"_count": 1}}, "thought": {"_count": 4, "I": {"_count": 2}, "wrong": {"_count": 1}, "you": {"_count": 1}}, "disagree": {"_count": 1, "": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "make": {"_count": 3, "a": {"_count": 1}, "me": {"_count": 1}, "sure": {"_count": 1}}, "applied": {"_count": 1, "first": {"_count": 1}}, "ought": {"_count": 4, "to": {"_count": 3}, "not": {"_count": 1}}, "tripped": {"_count": 1, "she": {"_count": 1}}, "left": {"_count": 2, "no": {"_count": 1}, "here": {"_count": 1}}, "hag": {"_count": 1, "you": {"_count": 1}}, "try": {"_count": 3, "putting": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "survived": {"_count": 2, "when": {"_count": 1}, "again": {"_count": 1}}, "misunderstand": {"_count": 1, "me": {"_count": 1}}, "understand": {"_count": 6, "": {"_count": 3}, "how": {"_count": 1}, "him": {"_count": 1}, "Im": {"_count": 1}}, "keepin": {"_count": 1, "well": {"_count": 1}}, "lost": {"_count": 2, "control": {"_count": 1}, "your": {"_count": 1}}, "managed": {"_count": 2, "to": {"_count": 1}, "perfectly": {"_count": 1}}, "kept": {"_count": 3, "blocking": {"_count": 1}, "that": {"_count": 1}, "saying": {"_count": 1}}, "support": {"_count": 1, "the": {"_count": 1}}, "mark": {"_count": 1, "my": {"_count": 1}}, "hop": {"_count": 1, "along": {"_count": 1}}, "organized": {"_count": 1, "this": {"_count": 1}}, "recruited": {"_count": 1, "these": {"_count": 1}}, "filthy": {"_count": 2, "little": {"_count": 1}, "hypocrite": {"_count": 1}}, "run": {"_count": 1, "round": {"_count": 1}}, "re": {"_count": 1, "less": {"_count": 1}}, "forfeited": {"_count": 1, "the": {"_count": 1}}, "stationed": {"_count": 1, "lookouts": {"_count": 1}}, "refused": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 3, "my": {"_count": 1}, "that": {"_count": 1}, "your": {"_count": 1}}, "sent": {"_count": 3, "the": {"_count": 1}, "that": {"_count": 1}, "Dobby": {"_count": 1}}, "dawdled": {"_count": 1, "enough": {"_count": 1}}, "hear": {"_count": 2, "him": {"_count": 2}}, "jest": {"_count": 1, "Harry": {"_count": 1}}, "dare": {"_count": 5, "speak": {"_count": 2}, "use": {"_count": 1}, "Yes": {"_count": 1}, "": {"_count": 1}}, "here": {"_count": 1, "I": {"_count": 1}}, "care": {"_count": 2, "so": {"_count": 1}, "about": {"_count": 1}}, "rose": {"_count": 1, "magnificently": {"_count": 1}}, "delayed": {"_count": 1, "his": {"_count": 1}}, "fought": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "come": {"_count": 1}}, "died": {"_count": 1, "but": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "claim": {"_count": 2, "you": {"_count": 1}, "said": {"_count": 1}}, "add": {"_count": 1, "a": {"_count": 1}}, "showed": {"_count": 1, "Horace": {"_count": 1}}, "recognized": {"_count": 1, "it": {"_count": 1}}, "disgusting": {"_count": 1, "little": {"_count": 1}}, "flew": {"_count": 1, "really": {"_count": 1}}, "dislike": {"_count": 1, "the": {"_count": 1}}, "prat": {"_count": 1, "Ron": {"_count": 1}}, "A": {"_count": 1, "streak": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "calling": {"_count": 1, "me": {"_count": 1}}, "spiked": {"_count": 1, "Rons": {"_count": 1}}, "added": {"_count": 1, "Felix": {"_count": 1}}, "considered": {"_count": 1, "Smith": {"_count": 1}}, "die": {"_count": 1, "said": {"_count": 1}}, "Charmed": {"_count": 1, "the": {"_count": 1}}, "prefer": {"_count": 1, "like": {"_count": 1}}, "speak": {"_count": 1, "it": {"_count": 1}}, "insulted": {"_count": 1, "her": {"_count": 1}}, "naughty": {"_count": 1, "boy": {"_count": 1}}, "call": {"_count": 1, "it": {"_count": 1}}, "liked": {"_count": 1, "her": {"_count": 1}}, "handed": {"_count": 1, "it": {"_count": 1}}, "destroyed": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 3, "got": {"_count": 1}, "want": {"_count": 1}, "dont": {"_count": 1}}, "screamed": {"_count": 1, "": {"_count": 1}}, "swore": {"_count": 2, "did": {"_count": 1}, "to": {"_count": 1}}, "almost": {"_count": 1, "killed": {"_count": 1}}, "theenk": {"_count": 2, "Bill": {"_count": 1}, "because": {"_count": 1}}, "lied": {"_count": 1, "to": {"_count": 1}}, "sought": {"_count": 1, "to": {"_count": 1}}, "ditched": {"_count": 1, "her": {"_count": 1}}, "mustve": {"_count": 2, "heard": {"_count": 2}}, "breed": {"_count": 1, "like": {"_count": 1}}, "amaze": {"_count": 1, "me": {"_count": 1}}, "Barny": {"_count": 1, "you": {"_count": 1}}, "fancy": {"_count": 1, "stepping": {"_count": 1}}, "simply": {"_count": 1, "cant": {"_count": 1}}, "tracked": {"_count": 1, "down": {"_count": 1}}, "cast": {"_count": 1, "the": {"_count": 1}}, "choose": {"_count": 1, "him": {"_count": 1}}, "complete": {"_count": 1, "arse": {"_count": 1}}, "crawl": {"_count": 1, "back": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "lying": {"_count": 1, "piece": {"_count": 1}}, "checked": {"_count": 1, "their": {"_count": 1}}, "enter": {"_count": 1, "through": {"_count": 1}}, "lie": {"_count": 1, "As": {"_count": 1}}, "owe": {"_count": 1, "me": {"_count": 1}}, "dirty": {"_count": 1, "little": {"_count": 1}}, "understood": {"_count": 1, "him": {"_count": 1}}, "turn": {"_count": 1, "up": {"_count": 1}}, "probably": {"_count": 1, "dont": {"_count": 1}}, "buried": {"_count": 1, "the": {"_count": 1}}, "dug": {"_count": 1, "the": {"_count": 1}}, "also": {"_count": 1, "rescued": {"_count": 1}}, "brought": {"_count": 1, "me": {"_count": 1}}, "rescued": {"_count": 1, "us": {"_count": 1}}, "talk": {"_count": 1, "about": {"_count": 1}}, "yes": {"_count": 1, "of": {"_count": 1}}, "send": {"_count": 1, "dementors": {"_count": 1}}, "idiot": {"_count": 1, "Expecto": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "bloody": {"_count": 1, "fools": {"_count": 1}}, "open": {"_count": 1, "it": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "an": {"_count": 1, "your": {"_count": 1}}, "hurt": {"_count": 1, "her": {"_count": 1}}, "disgust": {"_count": 1, "me": {"_count": 1}}, "alone": {"_count": 1, "know": {"_count": 1}}, "trust": {"_count": 1, "him": {"_count": 1}}, "refuse": {"_count": 1, "to": {"_count": 1}}, "wonderful": {"_count": 1, "boy": {"_count": 1}}, "brave": {"_count": 1, "brave": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "carry": {"_count": 1, "him": {"_count": 1}}, "show": {"_count": 1, "spirit": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "interrupted": {"_count": 1, "them": {"_count": 1}}}, "KnowWho": {"_count": 18, "has": {"_count": 1, "gone": {"_count": 1}}, "nonsense": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 3}, ".": {"_count": 1}}, "disappeared": {"_count": 1, "": {"_count": 1}}, "disappear": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "after": {"_count": 1}}, "and": {"_count": 2, "that": {"_count": 2}}, "would": {"_count": 1, "come": {"_count": 1}}, "cant": {"_count": 1, "have": {"_count": 1}}, "returning": {"_count": 1, "and": {"_count": 1}}, "doesnt": {"_count": 1, "know": {"_count": 1}}, "some": {"_count": 1, "respect": {"_count": 1}}, "can": {"_count": 1, "kill": {"_count": 1}}, "defeated": {"_count": 1, "more": {"_count": 1}}}, "has": {"_count": 792, "gone": {"_count": 11, "at": {"_count": 1}, "Dumbledore": {"_count": 1}, "My": {"_count": 1}, "all": {"_count": 1}, "on": {"_count": 2}, "": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}, "over": {"_count": 1}, "The": {"_count": 1}}, "left": {"_count": 5, "now": {"_count": 1}, "me": {"_count": 1}, "headquarters": {"_count": 1}, "obviously": {"_count": 1}, "his": {"_count": 1}}, "a": {"_count": 19, "core": {"_count": 1}, "job": {"_count": 1}, "murderous": {"_count": 1}, "fault": {"_count": 1}, "builtin": {"_count": 1}, "rat": {"_count": 1}, "slight": {"_count": 1}, "disobliging": {"_count": 1}, "duty": {"_count": 1}, "curious": {"_count": 1}, "funny": {"_count": 1}, "headmaster": {"_count": 1}, "criminal": {"_count": 1}, "great": {"_count": 1}, "rather": {"_count": 1}, "very": {"_count": 2}, "notorious": {"_count": 1}, "direct": {"_count": 1}}, "ickle": {"_count": 1, "Ronnie": {"_count": 1}}, "been": {"_count": 173, "going": {"_count": 1}, "fighting": {"_count": 1}, "for": {"_count": 1}, "foretold": {"_count": 1}, "destroyed": {"_count": 1}, "": {"_count": 3}, "sending": {"_count": 2}, "caught": {"_count": 2}, "Petrified": {"_count": 2}, "searched": {"_count": 2}, "saying": {"_count": 2}, "keeping": {"_count": 3}, "opened": {"_count": 2}, "splashed": {"_count": 1}, "locked": {"_count": 3}, "canceled": {"_count": 1}, "another": {"_count": 1}, "taken": {"_count": 5}, "snatched": {"_count": 1}, "you": {"_count": 2}, "a": {"_count": 5}, "no": {"_count": 1}, "set": {"_count": 2}, "criticized": {"_count": 1}, "punctured": {"_count": 1}, "modified": {"_count": 1}, "honed": {"_count": 1}, "put": {"_count": 2}, "trying": {"_count": 1}, "apparent": {"_count": 1}, "chained": {"_count": 1}, "making": {"_count": 2}, "silent": {"_count": 1}, "telling": {"_count": 2}, "visiting": {"_count": 1}, "highly": {"_count": 1}, "blocked": {"_count": 1}, "missing": {"_count": 1}, "taking": {"_count": 2}, "stunned": {"_count": 1}, "very": {"_count": 4}, "placed": {"_count": 2}, "selected": {"_count": 1}, "crossing": {"_count": 2}, "hoping": {"_count": 1}, "dismissed": {"_count": 1}, "freed": {"_count": 1}, "using": {"_count": 1}, "searching": {"_count": 1}, "stealing": {"_count": 2}, "toying": {"_count": 1}, "attacked": {"_count": 2}, "cleared": {"_count": 2}, "vouched": {"_count": 1}, "brought": {"_count": 2}, "better": {"_count": 1}, "cutting": {"_count": 1}, "through": {"_count": 1}, "responsible": {"_count": 1}, "restored": {"_count": 1}, "experiencing": {"_count": 1}, "having": {"_count": 1}, "growing": {"_count": 2}, "following": {"_count": 1}, "storming": {"_count": 1}, "asked": {"_count": 1}, "charged": {"_count": 1}, "six": {"_count": 1}, "believed": {"_count": 1}, "rather": {"_count": 1}, "offered": {"_count": 1}, "reading": {"_count": 1}, "able": {"_count": 1}, "gravely": {"_count": 1}, "injured": {"_count": 1}, "hiding": {"_count": 1}, "unaware": {"_count": 1}, "developing": {"_count": 1}, "suspended": {"_count": 1}, "discovered": {"_count": 1}, "achieving": {"_count": 1}, "serving": {"_count": 1}, "made": {"_count": 1}, "as": {"_count": 1}, "determined": {"_count": 1}, "seeking": {"_count": 1}, "working": {"_count": 1}, "screaming": {"_count": 1}, "assigned": {"_count": 1}, "entertaining": {"_count": 1}, "conveyed": {"_count": 1}, "looking": {"_count": 2}, "here": {"_count": 2}, "sacked": {"_count": 1}, "replaced": {"_count": 2}, "given": {"_count": 2}, "known": {"_count": 2}, "much": {"_count": 1}, "arrested": {"_count": 2}, "treating": {"_count": 1}, "picking": {"_count": 1}, "down": {"_count": 1}, "done": {"_count": 2}, "hidden": {"_count": 1}, "teaching": {"_count": 1}, "difficult": {"_count": 1}, "tampered": {"_count": 1}, "almost": {"_count": 1}, "handed": {"_count": 1}, "helping": {"_count": 1}, "arrest": {"_count": 1}, "reanimated": {"_count": 1}, "fulfilled": {"_count": 1}, "really": {"_count": 1}, "in": {"_count": 1}, "thwarted": {"_count": 1}, "murdered": {"_count": 1}, "Confunded": {"_count": 1}, "infiltrated": {"_count": 1}, "smooth": {"_count": 1}, "such": {"_count": 1}, "educated": {"_count": 1}, "left": {"_count": 1}, "blown": {"_count": 1}, "found": {"_count": 1}, "won": {"_count": 1}, "fault": {"_count": 1}, "agreed": {"_count": 1}, "essential": {"_count": 1}, "giving": {"_count": 1}}, "its": {"_count": 3, "own": {"_count": 1}, "hiding": {"_count": 1}, "safe": {"_count": 1}}, "produced": {"_count": 1, "outstanding": {"_count": 1}}, "said": {"_count": 7, "Ron": {"_count": 1}, "Mrs": {"_count": 1}, "Luna": {"_count": 2}, "Harry": {"_count": 2}, "Hermione": {"_count": 1}}, "always": {"_count": 14, "been": {"_count": 8}, "pretended": {"_count": 1}, "insisted": {"_count": 1}, "considered": {"_count": 1}, "had": {"_count": 1}, "therefore": {"_count": 1}, "worked": {"_count": 1}}, "come": {"_count": 13, "and": {"_count": 1}, "to": {"_count": 8}, "at": {"_count": 1}, "said": {"_count": 1}, "out": {"_count": 1}, "for": {"_count": 1}}, "but": {"_count": 1, "if": {"_count": 1}}, "nothing": {"_count": 3, "to": {"_count": 3}}, "waited": {"_count": 1, "many": {"_count": 1}}, "clung": {"_count": 1, "to": {"_count": 1}}, "many": {"_count": 2, "demands": {"_count": 1}, "hideyholes": {"_count": 1}}, "got": {"_count": 16, "to": {"_count": 3}, "into": {"_count": 1}, "a": {"_count": 2}, "Viktor": {"_count": 1}, "seven": {"_count": 1}, "an": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}, "people": {"_count": 1}, "her": {"_count": 1}, "legs": {"_count": 1}}, "his": {"_count": 3, "own": {"_count": 1}, "reasons": {"_count": 1}, "weaknesses": {"_count": 1}}, "had": {"_count": 10, "to": {"_count": 3}, "enough": {"_count": 1}, "assassinated": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 1}}, "strengthened": {"_count": 1, "me": {"_count": 1}}, "he": {"_count": 18, "": {"_count": 10}, "sent": {"_count": 1}, "had": {"_count": 1}, "got": {"_count": 1}, "come": {"_count": 1}, "gone": {"_count": 1}, "been": {"_count": 1}, "said": {"_count": 1}, "done": {"_count": 1}}, "not": {"_count": 18, "": {"_count": 1}, "yet": {"_count": 1}, "left": {"_count": 1}, "been": {"_count": 4}, "acted": {"_count": 1}, "ruined": {"_count": 1}, "addled": {"_count": 1}, "at": {"_count": 1}, "asked": {"_count": 1}, "changed": {"_count": 1}, "carried": {"_count": 1}, "slept": {"_count": 1}, "only": {"_count": 1}, "finished": {"_count": 1}, "revealed": {"_count": 1}}, "four": {"_count": 1, "hundred": {"_count": 1}}, "seen": {"_count": 5, "in": {"_count": 2}, "to": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "Dobby": {"_count": 1, "wanted": {"_count": 1}}, "never": {"_count": 25, "been": {"_count": 7}, "sent": {"_count": 1}, "failed": {"_count": 1}, "wavered": {"_count": 1}, "delivered": {"_count": 1}, "felt": {"_count": 1}, "yet": {"_count": 1}, "shown": {"_count": 1}, "suspected": {"_count": 1}, "stopped": {"_count": 1}, "sought": {"_count": 1}, "wanted": {"_count": 1}, "had": {"_count": 2}, "happened": {"_count": 1}, "spoken": {"_count": 1}, "experienced": {"_count": 1}, "understood": {"_count": 1}, "grasped": {"_count": 1}}, "heard": {"_count": 4, "of": {"_count": 1}, "Dumbledores": {"_count": 1}, "it": {"_count": 1}, "people": {"_count": 1}}, "braved": {"_count": 1, "so": {"_count": 1}}, "known": {"_count": 3, "it": {"_count": 1}, "nothing": {"_count": 1}, "magic": {"_count": 1}}, "it": {"_count": 7, "": {"_count": 1}, "from": {"_count": 1}, "been": {"_count": 1}, "gone": {"_count": 2}, "the": {"_count": 1}, "taken": {"_count": 1}}, "ever": {"_count": 16, "had": {"_count": 2}, "seen": {"_count": 2}, "done": {"_count": 1}, "existed": {"_count": 1}, "survived": {"_count": 1}, "performed": {"_count": 1}, "questioned": {"_count": 1}, "passed": {"_count": 1}, "been": {"_count": 5}, "wanted": {"_count": 1}}, "them": {"_count": 1, "here": {"_count": 1}}, "fine": {"_count": 1, "taste": {"_count": 1}}, "done": {"_count": 7, "anything": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "nothing": {"_count": 1}, "a": {"_count": 2}, "to": {"_count": 1}}, "better": {"_count": 1, "brooms": {"_count": 1}}, "to": {"_count": 16, "have": {"_count": 2}, "deal": {"_count": 1}, "play": {"_count": 1}, "be": {"_count": 2}, "go": {"_count": 2}, "eat": {"_count": 1}, "keep": {"_count": 1}, "say": {"_count": 2}, "get": {"_count": 1}, "believe": {"_count": 1}, "come": {"_count": 1}, "use": {"_count": 1}}, "improved": {"_count": 1, "for": {"_count": 1}}, "just": {"_count": 10, "taken": {"_count": 1}, "informed": {"_count": 1}, "been": {"_count": 1}, "managed": {"_count": 1}, "given": {"_count": 1}, "sent": {"_count": 1}, "had": {"_count": 1}, "destroyed": {"_count": 1}, "Disapparated": {"_count": 1}, "married": {"_count": 1}}, "granted": {"_count": 1, "me": {"_count": 1}}, "sportingly": {"_count": 1, "agreed": {"_count": 1}}, "brought": {"_count": 3, "the": {"_count": 1}, "something": {"_count": 1}, "you": {"_count": 1}}, "my": {"_count": 1, "full": {"_count": 1}}, "failed": {"_count": 1, "to": {"_count": 1}}, "only": {"_count": 2, "been": {"_count": 1}, "just": {"_count": 1}}, "passed": {"_count": 6, "": {"_count": 1}, "since": {"_count": 1}, "apparently": {"_count": 1}, "as": {"_count": 1}, "from": {"_count": 1}, "into": {"_count": 1}}, "grown": {"_count": 3, "all": {"_count": 1}, "a": {"_count": 1}, "faint": {"_count": 1}}, "informed": {"_count": 1, "me": {"_count": 1}}, "all": {"_count": 2, "been": {"_count": 1}, "the": {"_count": 1}}, "happened": {"_count": 21, "she": {"_count": 1}, "": {"_count": 4}, "My": {"_count": 1}, "before": {"_count": 1}, "tonight": {"_count": 2}, "since": {"_count": 2}, "of": {"_count": 1}, "to": {"_count": 4}, "here": {"_count": 2}, "and": {"_count": 1}, "There": {"_count": 1}, "anything": {"_count": 1}}, "she": {"_count": 6, "": {"_count": 4}, "been": {"_count": 1}, "got": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "vanished": {"_count": 3, "from": {"_count": 1}, "without": {"_count": 1}, "": {"_count": 1}}, "given": {"_count": 3, "a": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "won": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 16, "recollection": {"_count": 1}, "idea": {"_count": 4}, "objection": {"_count": 1}, "intention": {"_count": 1}, "right": {"_count": 1}, "authority": {"_count": 2}, "chance": {"_count": 1}, "warning": {"_count": 1}, "choice": {"_count": 1}, "self": {"_count": 1}, "master": {"_count": 1}, "beginning": {"_count": 1}}, "an": {"_count": 4, "acceleration": {"_count": 1}, "you": {"_count": 1}, "exceptionally": {"_count": 1}, "well": {"_count": 1}}, "kindly": {"_count": 3, "consented": {"_count": 1}, "joined": {"_count": 1}, "arranged": {"_count": 1}}, "agreed": {"_count": 3, "to": {"_count": 2}, "that": {"_count": 1}}, "predicted": {"_count": 1, "the": {"_count": 1}}, "died": {"_count": 2, "yet": {"_count": 1}, "": {"_count": 1}}, "managed": {"_count": 2, "to": {"_count": 2}}, "very": {"_count": 1, "kindly": {"_count": 1}}, "dried": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 10, "Firebolt": {"_count": 1}, "right": {"_count": 4}, "Quaffle": {"_count": 1}, "power": {"_count": 1}, "means": {"_count": 1}, "only": {"_count": 1}, "Elder": {"_count": 1}}, "permission": {"_count": 1, "to": {"_count": 1}}, "enjoyed": {"_count": 2, "London": {"_count": 1}, "the": {"_count": 1}}, "meant": {"_count": 1, "everything": {"_count": 1}}, "lost": {"_count": 3, "a": {"_count": 1}, "an": {"_count": 1}, "favor": {"_count": 1}}, "weapons": {"_count": 1, "you": {"_count": 1}}, "undoubtedly": {"_count": 1, "been": {"_count": 1}}, "indeed": {"_count": 1, "been": {"_count": 1}}, "tired": {"_count": 1, "me": {"_count": 1}}, "become": {"_count": 6, "wearisome": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}, "so": {"_count": 1}, "an": {"_count": 1}, "of": {"_count": 1}}, "interesting": {"_count": 1, "news": {"_count": 1}}, "everything": {"_count": 2, "gone": {"_count": 1}, "to": {"_count": 1}}, "put": {"_count": 2, "up": {"_count": 1}, "him": {"_count": 1}}, "behaved": {"_count": 1, "tonight": {"_count": 1}}, "asked": {"_count": 5, "me": {"_count": 4}, "the": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "been": {"_count": 1}}, "returned": {"_count": 12, "from": {"_count": 2}, "with": {"_count": 2}, "on": {"_count": 1}, "Dumbledore": {"_count": 1}, "or": {"_count": 1}, "to": {"_count": 3}, "I": {"_count": 1}, "you": {"_count": 1}}, "arisen": {"_count": 2, "with": {"_count": 1}, "which": {"_count": 1}}, "judged": {"_count": 1, "most": {"_count": 1}}, "two": {"_count": 1, "champions": {"_count": 1}}, "another": {"_count": 1, "hour": {"_count": 1}}, "punctured": {"_count": 1, "many": {"_count": 1}}, "at": {"_count": 2, "last": {"_count": 1}, "least": {"_count": 1}}, "assembled": {"_count": 1, "Im": {"_count": 1}}, "traveled": {"_count": 2, "the": {"_count": 1}, "here": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "spotted": {"_count": 1, "Im": {"_count": 1}}, "seven": {"_count": 1, "now": {"_count": 1}}, "made": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "maimed": {"_count": 1, "several": {"_count": 1}}, "dubbed": {"_count": 1, "BlastEnded": {"_count": 1}}, "now": {"_count": 5, "unearthed": {"_count": 1}, "formalized": {"_count": 1}, "been": {"_count": 1}, "failed": {"_count": 1}, "dimmed": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "told": {"_count": 6, "us": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 2}, "me": {"_count": 2}}, "already": {"_count": 7, "invited": {"_count": 1}, "reentered": {"_count": 1}, "become": {"_count": 1}, "informed": {"_count": 1}, "sacked": {"_count": 1}, "attempted": {"_count": 1}, "been": {"_count": 1}}, "your": {"_count": 3, "extra": {"_count": 1}, "scar": {"_count": 1}, "owl": {"_count": 1}}, "recently": {"_count": 5, "gained": {"_count": 1}, "come": {"_count": 2}, "been": {"_count": 1}, "rendered": {"_count": 1}}, "finally": {"_count": 2, "cracked": {"_count": 1}, "realized": {"_count": 1}}, "disappeared": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "unearthed": {"_count": 1, "worrying": {"_count": 1}}, "carefully": {"_count": 1, "concealed": {"_count": 1}}, "long": {"_count": 4, "been": {"_count": 2}, "since": {"_count": 1}, "attracted": {"_count": 1}}, "proved": {"_count": 2, "himself": {"_count": 1}, "both": {"_count": 1}}, "paid": {"_count": 1, "some": {"_count": 1}}, "ways": {"_count": 1, "of": {"_count": 1}}, "suffered": {"_count": 3, "tonight": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}}, "overcome": {"_count": 1, "that": {"_count": 1}}, "performed": {"_count": 2, "in": {"_count": 1}, "magic": {"_count": 1}}, "helped": {"_count": 1, "Voldemort": {"_count": 1}}, "held": {"_count": 1, "him": {"_count": 1}}, "affected": {"_count": 1, "you": {"_count": 1}}, "found": {"_count": 3, "a": {"_count": 1}, "antidotes": {"_count": 1}, "extra": {"_count": 1}}, "learned": {"_count": 2, "to": {"_count": 1}, "what": {"_count": 1}}, "resulted": {"_count": 1, "in": {"_count": 1}}, "chucked": {"_count": 2, "me": {"_count": 1}, "it": {"_count": 1}}, "revised": {"_count": 1, "its": {"_count": 1}}, "more": {"_count": 2, "right": {"_count": 1}, "important": {"_count": 1}}, "changed": {"_count": 3, "Molly": {"_count": 1}, "its": {"_count": 1}, "somewhat": {"_count": 1}}, "that": {"_count": 2, "helped": {"_count": 1}, "made": {"_count": 1}}, "presented": {"_count": 1, "his": {"_count": 1}}, "led": {"_count": 1, "to": {"_count": 1}}, "Snape": {"_count": 1, "ever": {"_count": 1}}, "unfortunately": {"_count": 1, "resulted": {"_count": 1}}, "everyone": {"_count": 1, "got": {"_count": 1}}, "every": {"_count": 1, "right": {"_count": 1}}, "Gryffindor": {"_count": 1, "got": {"_count": 1}}, "received": {"_count": 1, "a": {"_count": 1}}, "appeared": {"_count": 1, "in": {"_count": 1}}, "Dumbledore": {"_count": 3, "arrested": {"_count": 1}, "sent": {"_count": 1}, "told": {"_count": 1}}, "used": {"_count": 3, "new": {"_count": 1}, "it": {"_count": 1}, "Inferi": {"_count": 1}}, "accepted": {"_count": 1, "": {"_count": 1}}, "foisted": {"_count": 1, "such": {"_count": 1}}, "read": {"_count": 1, "this": {"_count": 1}}, "him": {"_count": 1, "carted": {"_count": 1}}, "consistently": {"_count": 1, "refused": {"_count": 1}}, "their": {"_count": 1, "best": {"_count": 1}}, "hidden": {"_count": 1, "her": {"_count": 1}}, "run": {"_count": 1, "short": {"_count": 1}}, "classified": {"_count": 1, "thestrals": {"_count": 1}}, "red": {"_count": 1, "hair": {"_count": 1}}, "finished": {"_count": 2, "keeping": {"_count": 1}, "its": {"_count": 1}}, "anyone": {"_count": 3, "actually": {"_count": 1}, "youve": {"_count": 1}, "ever": {"_count": 1}}, "sent": {"_count": 1, "me": {"_count": 1}}, "also": {"_count": 1, "deduced": {"_count": 1}}, "realized": {"_count": 1, "that": {"_count": 1}}, "treated": {"_count": 1, "you": {"_count": 1}}, "still": {"_count": 1, "not": {"_count": 1}}, "banished": {"_count": 1, "me": {"_count": 1}}, "troubles": {"_count": 1, "enough": {"_count": 1}}, "decided": {"_count": 2, "are": {"_count": 1}, "to": {"_count": 1}}, "replaced": {"_count": 1, "Albus": {"_count": 1}}, "sealed": {"_count": 1, "itself": {"_count": 1}}, "scented": {"_count": 1, "a": {"_count": 1}}, "What": {"_count": 1, "do": {"_count": 1}}, "quite": {"_count": 1, "the": {"_count": 1}}, "graded": {"_count": 1, "you": {"_count": 1}}, "achieved": {"_count": 3, "high": {"_count": 2}, "Astronomy": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "of": {"_count": 1, "ever": {"_count": 1}}, "persuaded": {"_count": 1, "them": {"_count": 1}}, "betrayed": {"_count": 1, "and": {"_count": 1}}, "entered": {"_count": 1, "into": {"_count": 1}}, "Sirius": {"_count": 1, "gone": {"_count": 1}}, "watched": {"_count": 1, "you": {"_count": 1}}, "insisted": {"_count": 1, "for": {"_count": 1}}, "gripped": {"_count": 1, "the": {"_count": 1}}, "nobody": {"_count": 1, "told": {"_count": 1}}, "eluded": {"_count": 1, "capture": {"_count": 1}}, "clearly": {"_count": 1, "reacted": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "consented": {"_count": 1, "to": {"_count": 1}}, "lately": {"_count": 1, "taken": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "fought": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 1, "Bellatrix": {"_count": 1}}, "since": {"_count": 1, "sustained": {"_count": 1}}, "forbidden": {"_count": 2, "me": {"_count": 1}, "it": {"_count": 1}}, "yet": {"_count": 2, "succeeded": {"_count": 1}, "realized": {"_count": 1}}, "chosen": {"_count": 1, "Draco": {"_count": 1}}, "ordered": {"_count": 1, "Draco": {"_count": 1}}, "succeeded": {"_count": 1, "Cornelius": {"_count": 1}}, "largely": {"_count": 1, "been": {"_count": 1}}, "fallen": {"_count": 3, "": {"_count": 2}, "before": {"_count": 1}}, "lived": {"_count": 2, "at": {"_count": 1}, "in": {"_count": 1}}, "powerful": {"_count": 1, "protection": {"_count": 1}}, "set": {"_count": 1, "up": {"_count": 1}}, "let": {"_count": 1, "erself": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 1}, "knowledge": {"_count": 1}}, "broken": {"_count": 2, "Wizarding": {"_count": 2}}, "committed": {"_count": 1, "With": {"_count": 1}}, "somebody": {"_count": 1, "nailed": {"_count": 1}}, "Malfoy": {"_count": 1, "been": {"_count": 1}}, "qualities": {"_count": 1, "we": {"_count": 1}}, "started": {"_count": 2, "and": {"_count": 1}, "moving": {"_count": 1}}, "banned": {"_count": 1, "": {"_count": 1}}, "upset": {"_count": 2, "you": {"_count": 2}}, "actually": {"_count": 1, "interviewed": {"_count": 1}}, "promised": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "threatened": {"_count": 1, "to": {"_count": 1}}, "most": {"_count": 1, "understandably": {"_count": 1}}, "discussed": {"_count": 1, "these": {"_count": 1}}, "even": {"_count": 1, "attempted": {"_count": 1}}, "meddled": {"_count": 1, "with": {"_count": 1}}, "tried": {"_count": 3, "to": {"_count": 3}}, "Won": {"_count": 1, "Wons": {"_count": 1}}, "lifted": {"_count": 1, "this": {"_count": 1}}, "extra": {"_count": 1, "Potions": {"_count": 1}}, "supported": {"_count": 1, "your": {"_count": 1}}, "either": {"_count": 1, "of": {"_count": 1}}, "concealed": {"_count": 1, "part": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "undergone": {"_count": 1, "seemed": {"_count": 1}}, "intimated": {"_count": 1, "that": {"_count": 1}}, "regular": {"_count": 1, "contact": {"_count": 1}}, "converted": {"_count": 1, "the": {"_count": 1}}, "taken": {"_count": 1, "place": {"_count": 1}}, "certainly": {"_count": 1, "suggested": {"_count": 1}}, "few": {"_count": 1, "real": {"_count": 1}}, "quilled": {"_count": 1, "an": {"_count": 1}}, "hushed": {"_count": 1, "up": {"_count": 1}}, "included": {"_count": 1, "doing": {"_count": 1}}, "spread": {"_count": 1, "to": {"_count": 1}}, "one": {"_count": 1, "antidote": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "spilled": {"_count": 1, "the": {"_count": 1}}, "escaped": {"_count": 1, "again": {"_count": 1}}, "created": {"_count": 1, "confusion": {"_count": 1}}, "issued": {"_count": 1, "an": {"_count": 1}}, "stayed": {"_count": 1, "with": {"_count": 1}}, "trouble": {"_count": 1, "with": {"_count": 1}}, "um": {"_count": 1, "taken": {"_count": 1}}, "caught": {"_count": 1, "nearly": {"_count": 1}}, "narrowly": {"_count": 1, "escaped": {"_count": 1}}, "certain": {"_count": 1, "identifying": {"_count": 1}}, "work": {"_count": 1, "to": {"_count": 1}}, "dared": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "recruited": {"_count": 1, "him": {"_count": 1}}, "volunteered": {"_count": 1, "to": {"_count": 1}}, "survived": {"_count": 1, "by": {"_count": 1}}}, "gone": {"_count": 450, "at": {"_count": 1, "last": {"_count": 1}}, "": {"_count": 119, ".": {"_count": 91}, "!": {"_count": 9}, "?": {"_count": 19}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "My": {"_count": 1, "dear": {"_count": 1}}, "out": {"_count": 9, "": {"_count": 3}, "into": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 1}}, "so": {"_count": 6, "long": {"_count": 2}, "tarry": {"_count": 1}, "badly": {"_count": 1}, "slowly": {"_count": 1}, "wrong": {"_count": 1}}, "mad": {"_count": 7, "hasnt": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "everyone": {"_count": 1}, "he": {"_count": 1}}, "very": {"_count": 10, "pale": {"_count": 1}, "white": {"_count": 4}, "dry": {"_count": 2}, "smoothly": {"_count": 1}, "quiet": {"_count": 2}}, "too": {"_count": 8, "far": {"_count": 5}, "get": {"_count": 1}, "": {"_count": 2}}, "completely": {"_count": 2, "still": {"_count": 1}, "and": {"_count": 1}}, "but": {"_count": 4, "how": {"_count": 1}, "he": {"_count": 2}, "pretended": {"_count": 1}}, "back": {"_count": 6, "to": {"_count": 5}, "in": {"_count": 1}}, "as": {"_count": 5, "quickly": {"_count": 1}, "you": {"_count": 1}, "were": {"_count": 1}, "soon": {"_count": 1}, "planned": {"_count": 1}}, "all": {"_count": 4, "silver": {"_count": 1}, "blotchy": {"_count": 1}, "that": {"_count": 1}, "funny": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 11, "a": {"_count": 1}, "next": {"_count": 1}, "this": {"_count": 1}, "vacation": {"_count": 1}, "Buckbeak": {"_count": 1}, "longer": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 2}}, "off": {"_count": 3, "somewhere": {"_count": 1}, "chasing": {"_count": 1}, "sick": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "straight": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "for": {"_count": 6, "Filch": {"_count": 1}, "anyone": {"_count": 1}, "help": {"_count": 1}, "Phlegm": {"_count": 1}, "years": {"_count": 1}, "good": {"_count": 1}}, "and": {"_count": 20, "I": {"_count": 1}, "saw": {"_count": 1}, "went": {"_count": 1}, "they": {"_count": 1}, "then": {"_count": 1}, "stolen": {"_count": 1}, "he": {"_count": 2}, "now": {"_count": 1}, "put": {"_count": 1}, "nicked": {"_count": 1}, "landed": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 3}, "expected": {"_count": 1}, "hes": {"_count": 1}, "Hagrid": {"_count": 1}, "rubble": {"_count": 1}}, "into": {"_count": 5, "a": {"_count": 3}, "hiding": {"_count": 1}, "details": {"_count": 1}}, "by": {"_count": 3, "next": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 38, "bed": {"_count": 7}, "fetch": {"_count": 1}, "any": {"_count": 1}, "send": {"_count": 1}, "pieces": {"_count": 1}, "find": {"_count": 1}, "see": {"_count": 1}, "Hogsmeade": {"_count": 1}, "get": {"_count": 4}, "the": {"_count": 4}, "rescue": {"_count": 1}, "seed": {"_count": 1}, "free": {"_count": 1}, "Sirius": {"_count": 1}, "some": {"_count": 1}, "join": {"_count": 1}, "visit": {"_count": 2}, "save": {"_count": 1}, "ground": {"_count": 1}, "his": {"_count": 1}, "change": {"_count": 1}, "meet": {"_count": 1}, "give": {"_count": 1}, "Godrics": {"_count": 1}, "plan": {"_count": 1}}, "far": {"_count": 2, "if": {"_count": 1}, "enough": {"_count": 1}}, "Vol": {"_count": 1, "I": {"_count": 1}}, "has": {"_count": 1, "he": {"_count": 1}}, "will": {"_count": 1, "give": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 6, "cant": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "couldnt": {"_count": 1}, "distinctly": {"_count": 1}, "agreed": {"_count": 1}}, "slightly": {"_count": 3, "crosseyed": {"_count": 1}, "to": {"_count": 1}, "pink": {"_count": 1}}, "a": {"_count": 6, "nasty": {"_count": 1}, "few": {"_count": 2}, "bit": {"_count": 2}, "record": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "one": {"_count": 2, "grate": {"_count": 1}, "step": {"_count": 1}}, "said": {"_count": 10, "Ron": {"_count": 2}, "Hermione": {"_count": 2}, "Percy": {"_count": 1}, "Fred": {"_count": 2}, "Uncle": {"_count": 1}, "Angelina": {"_count": 1}, "Harry": {"_count": 1}}, "up": {"_count": 4, "to": {"_count": 3}, "all": {"_count": 1}}, "home": {"_count": 2, "for": {"_count": 1}, "with": {"_count": 1}}, "from": {"_count": 9, "her": {"_count": 1}, "Riddles": {"_count": 1}, "the": {"_count": 4}, "beneath": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "two": {"_count": 1, "paces": {"_count": 1}}, "pale": {"_count": 1, "and": {"_count": 1}}, "fear": {"_count": 1, "had": {"_count": 1}}, "this": {"_count": 1, "long": {"_count": 1}}, "red": {"_count": 1, "just": {"_count": 1}}, "white": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "deaf": {"_count": 1}}, "horribly": {"_count": 1, "weakened": {"_count": 1}}, "down": {"_count": 7, "the": {"_count": 2}, "into": {"_count": 1}, "to": {"_count": 2}, "in": {"_count": 2}}, "forever": {"_count": 3, "": {"_count": 3}}, "rigid": {"_count": 4, "the": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 9, "color": {"_count": 2}, "night": {"_count": 1}, "socket": {"_count": 1}, "moment": {"_count": 1}, "wrong": {"_count": 1}, "assistant": {"_count": 1}, "rings": {"_count": 1}, "same": {"_count": 1}}, "blank": {"_count": 1, "with": {"_count": 1}}, "soft": {"_count": 1, "in": {"_count": 1}}, "Pettigrew": {"_count": 1, "transformed": {"_count": 1}}, "Musta": {"_count": 1, "pulled": {"_count": 1}}, "then": {"_count": 3, "started": {"_count": 1}, "we": {"_count": 1}, "hurried": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 1}, "to": {"_count": 1}, "which": {"_count": 1}}, "his": {"_count": 1, "life": {"_count": 1}}, "south": {"_count": 1, "": {"_count": 1}}, "wrong": {"_count": 6, "": {"_count": 3}, "he": {"_count": 1}, "with": {"_count": 1}, "inside": {"_count": 1}}, "green": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "far": {"_count": 1}}, "oddly": {"_count": 1, "slack": {"_count": 1}}, "than": {"_count": 1, "her": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "right": {"_count": 1, "today": {"_count": 1}}, "even": {"_count": 1, "further": {"_count": 1}}, "Harry": {"_count": 5, "said": {"_count": 1}, "threw": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "told": {"_count": 1}}, "missing": {"_count": 3, "": {"_count": 1}, "like": {"_count": 1}, "from": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "temporarily": {"_count": 1, "deaf": {"_count": 1}}, "an": {"_count": 1, "you": {"_count": 1}}, "it": {"_count": 2, "wont": {"_count": 2}}, "when": {"_count": 3, "Harry": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "wandering": {"_count": 1, "off": {"_count": 1}}, "further": {"_count": 2, "than": {"_count": 2}}, "I": {"_count": 2, "Transfigured": {"_count": 1}, "need": {"_count": 1}}, "dry": {"_count": 1, "": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 4, "a": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}}, "awry": {"_count": 1, "in": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "": {"_count": 1}}, "shivering": {"_count": 1, "as": {"_count": 1}}, "there": {"_count": 1, "to": {"_count": 1}}, "ter": {"_count": 1, "help": {"_count": 1}}, "astray": {"_count": 1, "Dumbledore": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "exploring": {"_count": 1, "but": {"_count": 1}}, "Gryffindor": {"_count": 1, "were": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "away": {"_count": 3, "again": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 2, "the": {"_count": 1}, "breakfast": {"_count": 1}}, "was": {"_count": 1, "he": {"_count": 1}}, "whispered": {"_count": 1, "Mr": {"_count": 1}}, "had": {"_count": 1, "left": {"_count": 1}}, "where": {"_count": 3, "Harry": {"_count": 1}, "he": {"_count": 1}, "none": {"_count": 1}}, "upstairs": {"_count": 1, "to": {"_count": 1}}, "replaced": {"_count": 1, "by": {"_count": 1}}, "looking": {"_count": 1, "to": {"_count": 1}}, "numb": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "cross": {"_count": 1, "eyed": {"_count": 1}}, "terror": {"_count": 1, "replacing": {"_count": 1}}, "bad": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "youd": {"_count": 1, "have": {"_count": 1}}, "Someone": {"_count": 1, "had": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "her": {"_count": 1, "bed": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}, "The": {"_count": 1, "Dark": {"_count": 1}}, "moldy": {"_count": 1, "so": {"_count": 1}}}, "Even": {"_count": 109, "Muggles": {"_count": 2, "like": {"_count": 1}, "feel": {"_count": 1}}, "if": {"_count": 7, "I": {"_count": 1}, "yeh": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}, "were": {"_count": 1}, "you": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Professor": {"_count": 1, "Quirrell": {"_count": 1}}, "Dudley": {"_count": 1, "who": {"_count": 1}}, "worse": {"_count": 2, "than": {"_count": 1}, "the": {"_count": 1}}, "Ron": {"_count": 4, "would": {"_count": 1}, "was": {"_count": 1}, "laughed": {"_count": 1}, "who": {"_count": 1}}, "Harry": {"_count": 3, "who": {"_count": 1}, "Ron": {"_count": 1}, "managed": {"_count": 1}}, "better": {"_count": 1, "Professor": {"_count": 1}}, "the": {"_count": 11, "endless": {"_count": 1}, "pain": {"_count": 1}, "Hogwarts": {"_count": 1}, "weather": {"_count": 2}, "little": {"_count": 1}, "ominous": {"_count": 1}, "sight": {"_count": 1}, "werewolf": {"_count": 1}, "fogs": {"_count": 1}, "mystery": {"_count": 1}}, "blimey": {"_count": 1, "Dumbledores": {"_count": 1}}, "though": {"_count": 6, "it": {"_count": 1}, "she": {"_count": 2}, "he": {"_count": 2}, "I": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "this": {"_count": 1}}, "Ravenclaws": {"_count": 1, "and": {"_count": 1}}, "Neville": {"_count": 3, "scraped": {"_count": 1}, "grinned": {"_count": 1}, "did": {"_count": 1}}, "aside": {"_count": 1, "from": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "as": {"_count": 11, "he": {"_count": 7}, "Harry": {"_count": 1}, "they": {"_count": 2}, "she": {"_count": 1}}, "Hagrid": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 2, "must": {"_count": 1}, "think": {"_count": 1}}, "Dumbledores": {"_count": 1, "bird": {"_count": 1}}, "Stans": {"_count": 1, "pimples": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "without": {"_count": 2, "Divination": {"_count": 1}, "any": {"_count": 1}}, "Hermione": {"_count": 4, "had": {"_count": 1}, "was": {"_count": 1}, "fought": {"_count": 1}, "grinned": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 2}, "had": {"_count": 1}}, "now": {"_count": 3, "when": {"_count": 1}, "he": {"_count": 1}, "having": {"_count": 1}}, "Pettigrews": {"_count": 1, "voice": {"_count": 1}}, "Quidditch": {"_count": 1, "in": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "by": {"_count": 4, "the": {"_count": 3}, "Harrys": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "those": {"_count": 1, "people": {"_count": 1}}, "underage": {"_count": 1, "wizards": {"_count": 1}}, "lower": {"_count": 1, "than": {"_count": 1}}, "Voldemort": {"_count": 1, "couldnt": {"_count": 1}}, "Snape": {"_count": 2, "": {"_count": 1}, "says": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "Fawkes": {"_count": 1, "had": {"_count": 1}}, "within": {"_count": 1, "Hogwarts": {"_count": 1}}, "Zabini": {"_count": 1, "had": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "YouKnowWho": {"_count": 1, "cant": {"_count": 1}}, "her": {"_count": 2, "own": {"_count": 1}, "ability": {"_count": 1}}, "this": {"_count": 1, "very": {"_count": 1}}, "after": {"_count": 2, "all": {"_count": 1}, "his": {"_count": 1}}, "assuming": {"_count": 1, "that": {"_count": 1}}, "amongst": {"_count": 1, "goblins": {"_count": 1}}, "attempting": {"_count": 1, "it": {"_count": 1}}}, "Muggles": {"_count": 172, "like": {"_count": 2, "yourself": {"_count": 1}, "it": {"_count": 1}}, "have": {"_count": 6, "noticed": {"_count": 1}, "garden": {"_count": 1}, "found": {"_count": 1}, "been": {"_count": 1}, "got": {"_count": 1}, "lost": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "started": {"_count": 1, "swarmin": {"_count": 1}}, "": {"_count": 32, "!": {"_count": 4}, "?": {"_count": 6}, ".": {"_count": 22}}, "Yes": {"_count": 1, "yes": {"_count": 1}}, "I": {"_count": 1, "ever": {"_count": 1}}, "that": {"_count": 2, "theres": {"_count": 1}, "has": {"_count": 1}}, "dream": {"_count": 1, "up": {"_count": 1}}, "manage": {"_count": 1, "without": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 2}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}}, "someone": {"_count": 1, "tried": {"_count": 1}}, "in": {"_count": 6, "helicopters": {"_count": 1}, "London": {"_count": 1}, "all": {"_count": 1}, "exceptional": {"_count": 1}, "St": {"_count": 1}, "this": {"_count": 1}}, "from": {"_count": 1, "noticing": {"_count": 1}}, "whove": {"_count": 1, "spotted": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "It": {"_count": 1, "wasnt": {"_count": 1}}, "you": {"_count": 2, "live": {"_count": 2}}, "our": {"_count": 1, "sheds": {"_count": 1}}, "asking": {"_count": 1, "him": {"_count": 1}}, "growled": {"_count": 1, "Hagrid": {"_count": 1}}, "do": {"_count": 2, "know": {"_count": 1}, "it": {"_count": 1}}, "noticed": {"_count": 1, "you": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "wedve": {"_count": 1, "died": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "were": {"_count": 1, "particularly": {"_count": 1}}, "and": {"_count": 11, "they": {"_count": 1}, "my": {"_count": 1}, "and": {"_count": 1}, "one": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 2}, "filth": {"_count": 1}, "must": {"_count": 1}, "Squibs": {"_count": 1}, "normal": {"_count": 1}}, "didnt": {"_count": 1, "give": {"_count": 1}}, "whod": {"_count": 1, "broken": {"_count": 1}}, "get": {"_count": 1, "you": {"_count": 1}}, "are": {"_count": 4, "treating": {"_count": 1}, "dying": {"_count": 1}, "pulling": {"_count": 1}, "like": {"_count": 1}}, "dont": {"_count": 2, "hear": {"_count": 1}, "go": {"_count": 1}}, "use": {"_count": 2, "to": {"_count": 1}, "electricity": {"_count": 1}}, "an": {"_count": 2, "Black": {"_count": 1}, "unexplained": {"_count": 1}}, "what": {"_count": 1, "got": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 2, "out": {"_count": 2}}, "think": {"_count": 1, "hes": {"_count": 1}}, "they": {"_count": 1, "dont": {"_count": 1}}, "feel": {"_count": 1, "their": {"_count": 1}}, "screaming": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "lifting": {"_count": 1, "heavy": {"_count": 1}}, "Need": {"_count": 1, "Electricity": {"_count": 1}}, "to": {"_count": 3, "get": {"_count": 1}, "glimpse": {"_count": 1}, "ask": {"_count": 1}}, "notice": {"_count": 1, "anything": {"_count": 1}}, "who": {"_count": 8, "hated": {"_count": 1}, "spotted": {"_count": 1}, "had": {"_count": 1}, "saw": {"_count": 1}, "lived": {"_count": 1}, "might": {"_count": 1}, "were": {"_count": 1}, "ve": {"_count": 1}}, "say": {"_count": 1, "I": {"_count": 1}}, "noticing": {"_count": 1, "": {"_count": 1}}, "cant": {"_count": 2, "penetrate": {"_count": 1}, "see": {"_count": 1}}, "though": {"_count": 2, "very": {"_count": 1}, "said": {"_count": 1}}, "shouldnt": {"_count": 1, "he": {"_count": 1}}, "camp": {"_count": 1, "they": {"_count": 1}}, "wear": {"_count": 1, "them": {"_count": 1}}, "would": {"_count": 1, "spot": {"_count": 1}}, "but": {"_count": 1, "meanwhile": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "inside": {"_count": 1, "hadnt": {"_count": 1}}, "Ron": {"_count": 1, "began": {"_count": 1}}, "could": {"_count": 1, "never": {"_count": 1}}, "going": {"_count": 1, "about": {"_count": 1}}, "present": {"_count": 1, "at": {"_count": 1}}, "can": {"_count": 1, "stand": {"_count": 1}}, "mate": {"_count": 1, "said": {"_count": 1}}, "even": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "right": {"_count": 1}}, "strapping": {"_count": 1, "narrow": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "fun": {"_count": 1}}, "talk": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "nonmagical": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 2}}, "if": {"_count": 1, "their": {"_count": 1}}, "around": {"_count": 1, "you": {"_count": 1}}, "below": {"_count": 1, "who": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "Harry": {"_count": 1, "pointed": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "by": {"_count": 1, "force": {"_count": 1}}, "Hermione": {"_count": 1, "reminded": {"_count": 1}}, "murdered": {"_count": 1, "by": {"_count": 1}}, "remain": {"_count": 1, "ignorant": {"_count": 1}}, "knowledge": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 1, "or": {"_count": 1}}, "bustled": {"_count": 1, "past": {"_count": 1}}, "their": {"_count": 1, "place": {"_count": 1}}, "did": {"_count": 1, "what": {"_count": 1}}, "forced": {"_count": 1, "into": {"_count": 1}}}, "yourself": {"_count": 158, "should": {"_count": 1, "be": {"_count": 1}}, "can": {"_count": 1, "call": {"_count": 1}}, "Hagrid": {"_count": 2, "or": {"_count": 1}, "said": {"_count": 1}}, "our": {"_count": 1, "mother": {"_count": 1}}, "said": {"_count": 9, "Harry": {"_count": 3}, "Ron": {"_count": 1}, "Professor": {"_count": 1}, "George": {"_count": 2}, "Slughorn": {"_count": 1}, "Hermione": {"_count": 1}}, "now": {"_count": 4, "thats": {"_count": 1}, "Cedrics": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 42, ".": {"_count": 21}, "?": {"_count": 7}, "!": {"_count": 14}}, "when": {"_count": 1, "you": {"_count": 1}}, "all": {"_count": 1, "last": {"_count": 1}}, "with": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 7, "you": {"_count": 1}, "Mr": {"_count": 1}, "your": {"_count": 2}, "while": {"_count": 1}, "everything": {"_count": 1}, "The": {"_count": 1}}, "dear": {"_count": 1, "boy": {"_count": 1}}, "out": {"_count": 2, "they": {"_count": 1}, "of": {"_count": 1}}, "Mister": {"_count": 1, "Malfoy": {"_count": 1}}, "a": {"_count": 3, "girlfriend": {"_count": 1}, "nice": {"_count": 1}, "partner": {"_count": 1}}, "noticed": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 3, "so": {"_count": 1}, "Harry": {"_count": 1}, "then": {"_count": 1}}, "making": {"_count": 1, "excuses": {"_count": 1}}, "got": {"_count": 1, "me": {"_count": 1}}, "for": {"_count": 5, "the": {"_count": 2}, "everything": {"_count": 1}, "something": {"_count": 1}, "a": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "killed": {"_count": 1, "before": {"_count": 1}}, "in": {"_count": 5, "danger": {"_count": 1}, "a": {"_count": 1}, "detention": {"_count": 1}, "any": {"_count": 1}, "that": {"_count": 1}}, "if": {"_count": 3, "you": {"_count": 2}, "Umbridge": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "bursting": {"_count": 1, "into": {"_count": 1}}, "after": {"_count": 1, "last": {"_count": 1}}, "puke": {"_count": 1, "instead": {"_count": 1}}, "against": {"_count": 1, "something": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "added": {"_count": 1}}, "extra": {"_count": 1, "powers": {"_count": 1}}, "at": {"_count": 1, "home": {"_count": 1}}, "Dobby": {"_count": 1, "talking": {"_count": 1}}, "though": {"_count": 1, "are": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 1}, "trouble": {"_count": 1}}, "equal": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "theres": {"_count": 1}, "he": {"_count": 1}}, "suspended": {"_count": 1, "from": {"_count": 1}}, "Hermione": {"_count": 1, "he": {"_count": 1}}, "Potter": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "Ron": {"_count": 2, "mumbled": {"_count": 1}, "muttered": {"_count": 1}}, "later": {"_count": 1, "and": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "seen": {"_count": 1, "on": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "work": {"_count": 1}}, "of": {"_count": 1, "emotion": {"_count": 1}}, "easy": {"_count": 1, "prey": {"_count": 1}}, "from": {"_count": 2, "this": {"_count": 1}, "the": {"_count": 1}}, "Madam": {"_count": 1, "Umbridge": {"_count": 1}}, "facetoface": {"_count": 1, "with": {"_count": 1}}, "beyond": {"_count": 1, "my": {"_count": 1}}, "are": {"_count": 1, "worried": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "anything": {"_count": 1}, "somebody": {"_count": 1}}, "I": {"_count": 3, "havent": {"_count": 1}, "didnt": {"_count": 1}, "shall": {"_count": 1}}, "you": {"_count": 2, "wouldnt": {"_count": 1}, "will": {"_count": 1}}, "together": {"_count": 1, "you": {"_count": 1}}, "caught": {"_count": 1, "and": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "Tom": {"_count": 1, "said": {"_count": 1}}, "never": {"_count": 1, "wished": {"_count": 1}}, "was": {"_count": 1, "proof": {"_count": 1}}, "will": {"_count": 1, "never": {"_count": 1}}, "youd": {"_count": 1, "rather": {"_count": 1}}, "back": {"_count": 1, "together": {"_count": 1}}, "the": {"_count": 1, "Elder": {"_count": 1}}, "breaking": {"_count": 1, "curfew": {"_count": 1}}, "heres": {"_count": 1, "how": {"_count": 1}}, "My": {"_count": 1, "instructions": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}}, "should": {"_count": 445, "be": {"_count": 85, "celebrating": {"_count": 1}, "sorry": {"_count": 2}, "enough": {"_count": 1}, "destined": {"_count": 1}, "somewhere": {"_count": 1}, "used": {"_count": 1}, "kept": {"_count": 3}, "in": {"_count": 8}, "on": {"_count": 1}, "breaking": {"_count": 1}, "was": {"_count": 1}, "chucked": {"_count": 1}, "": {"_count": 3}, "big": {"_count": 1}, "taken": {"_count": 2}, "tonight": {"_count": 1}, "scrapped": {"_count": 1}, "awake": {"_count": 1}, "reported": {"_count": 2}, "sneaking": {"_count": 1}, "up": {"_count": 1}, "starting": {"_count": 1}, "large": {"_count": 1}, "accompanied": {"_count": 1}, "thanking": {"_count": 1}, "chained": {"_count": 1}, "very": {"_count": 1}, "tested": {"_count": 1}, "stamping": {"_count": 1}, "upholding": {"_count": 1}, "here": {"_count": 1}, "fooled": {"_count": 1}, "good": {"_count": 1}, "any": {"_count": 1}, "okay": {"_count": 2}, "ashamed": {"_count": 1}, "made": {"_count": 1}, "allowed": {"_count": 2}, "stopped": {"_count": 1}, "suspended": {"_count": 1}, "put": {"_count": 1}, "sitting": {"_count": 1}, "kind": {"_count": 1}, "for": {"_count": 1}, "able": {"_count": 5}, "not": {"_count": 1}, "proud": {"_count": 3}, "near": {"_count": 1}, "effected": {"_count": 1}, "time": {"_count": 1}, "expelled": {"_count": 1}, "an": {"_count": 1}, "comfortable": {"_count": 1}, "chosen": {"_count": 1}, "glad": {"_count": 1}, "scared": {"_count": 1}, "Dumbledores": {"_count": 1}, "back": {"_count": 1}, "actually": {"_count": 1}, "locked": {"_count": 1}, "all": {"_count": 1}, "Wizards": {"_count": 1}, "the": {"_count": 1}}, "have": {"_count": 98, "known": {"_count": 5}, "a": {"_count": 3}, "said": {"_count": 7}, "seen": {"_count": 3}, "gotten": {"_count": 1}, "started": {"_count": 1}, "done": {"_count": 6}, "let": {"_count": 1}, "been": {"_count": 19}, "won": {"_count": 1}, "told": {"_count": 6}, "come": {"_count": 2}, "realized": {"_count": 5}, "some": {"_count": 1}, "stroked": {"_count": 1}, "finished": {"_count": 1}, "had": {"_count": 1}, "left": {"_count": 3}, "an": {"_count": 1}, "arrived": {"_count": 1}, "sent": {"_count": 1}, "given": {"_count": 2}, "nicked": {"_count": 1}, "met": {"_count": 1}, "remembered": {"_count": 1}, "stood": {"_count": 1}, "in": {"_count": 1}, "held": {"_count": 1}, "matured": {"_count": 1}, "made": {"_count": 2}, "it": {"_count": 1}, "recognized": {"_count": 2}, "asked": {"_count": 3}, "placed": {"_count": 1}, "waited": {"_count": 1}, "somehow": {"_count": 1}, "heard": {"_count": 1}, "thought": {"_count": 3}, "killed": {"_count": 1}, "brought": {"_count": 1}, "snapped": {"_count": 1}, "died": {"_count": 1}}, "we": {"_count": 4, "do": {"_count": 2}, "wait": {"_count": 1}, "attempt": {"_count": 1}}, "carry": {"_count": 1, "name": {"_count": 1}}, "let": {"_count": 1, "the": {"_count": 1}}, "keep": {"_count": 2, "it": {"_count": 2}}, "get": {"_count": 7, "out": {"_count": 3}, "together": {"_count": 1}, "a": {"_count": 1}, "some": {"_count": 1}, "to": {"_count": 1}}, "note": {"_count": 1, "that": {"_count": 1}}, "contact": {"_count": 1, "Madam": {"_count": 1}}, "he": {"_count": 14, "": {"_count": 4}, "be": {"_count": 1}, "go": {"_count": 1}, "become": {"_count": 1}, "give": {"_count": 1}, "double": {"_count": 1}, "meet": {"_count": 1}, "find": {"_count": 1}, "fall": {"_count": 1}, "sit": {"_count": 1}, "visit": {"_count": 1}}, "said": {"_count": 4, "Peeves": {"_count": 1}, "Mr": {"_count": 1}, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}}, "see": {"_count": 6, "the": {"_count": 1}, "my": {"_count": 1}, "what": {"_count": 1}, "Sloper": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}}, "if": {"_count": 1, "somethings": {"_count": 1}}, "therefore": {"_count": 2, "be": {"_count": 1}, "consider": {"_count": 1}}, "run": {"_count": 1, "through": {"_count": 1}}, "all": {"_count": 5, "be": {"_count": 1}, "have": {"_count": 1}, "divide": {"_count": 1}, "take": {"_count": 1}, "go": {"_count": 1}}, "aim": {"_count": 1, "to": {"_count": 1}}, "talk": {"_count": 3, "said": {"_count": 1}, "into": {"_count": 1}, "about": {"_count": 1}}, "ruddy": {"_count": 1, "well": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "prove": {"_count": 1}}, "mention": {"_count": 1, "Dracos": {"_count": 1}}, "probably": {"_count": 3, "wait": {"_count": 1}, "take": {"_count": 1}, "get": {"_count": 1}}, "look": {"_count": 3, "sorry": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}}, "really": {"_count": 2, "Professor": {"_count": 1}, "look": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "snap": {"_count": 1, "his": {"_count": 1}}, "go": {"_count": 15, "and": {"_count": 8}, "up": {"_count": 1}, "Harry": {"_count": 1}, "back": {"_count": 2}, "to": {"_count": 1}, "over": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 7, "know": {"_count": 2}, "do": {"_count": 2}, "": {"_count": 1}, "be": {"_count": 2}}, "wake": {"_count": 1, "him": {"_count": 1}}, "know": {"_count": 9, "Potter": {"_count": 1}, "better": {"_count": 1}, "": {"_count": 2}, "Be": {"_count": 1}, "that": {"_count": 2}, "before": {"_count": 1}, "theyre": {"_count": 1}}, "fire": {"_count": 1, "him": {"_count": 1}}, "hand": {"_count": 1, "Hogsmeade": {"_count": 1}}, "drink": {"_count": 1, "that": {"_count": 1}}, "think": {"_count": 4, "not": {"_count": 2}, "about": {"_count": 1}, "ourselves": {"_count": 1}}, "ride": {"_count": 1, "that": {"_count": 1}}, "start": {"_count": 2, "serving": {"_count": 1}, "": {"_count": 1}}, "happen": {"_count": 1, "on": {"_count": 1}}, "do": {"_count": 12, "the": {"_count": 2}, "it": {"_count": 6}, "a": {"_count": 1}, "is": {"_count": 1}, "fine": {"_count": 1}, "likewise": {"_count": 1}}, "leave": {"_count": 1, "it": {"_count": 1}}, "make": {"_count": 3, "up": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "tell": {"_count": 5, "someone": {"_count": 1}, "Dumbledore": {"_count": 2}, "him": {"_count": 1}, "them": {"_count": 1}}, "not": {"_count": 13, "be": {"_count": 3}, "tell": {"_count": 1}, "forget": {"_count": 1}, "have": {"_count": 3}, "achieve": {"_count": 1}, "listen": {"_count": 1}, "congratulate": {"_count": 1}, "get": {"_count": 1}, "say": {"_count": 1}}, "search": {"_count": 1, "the": {"_count": 1}}, "offer": {"_count": 1, "her": {"_count": 1}}, "take": {"_count": 3, "Muggle": {"_count": 1}, "it": {"_count": 2}}, "behave": {"_count": 1, "": {"_count": 1}}, "never": {"_count": 5, "go": {"_count": 1}, "have": {"_count": 4}}, "hear": {"_count": 5, "what": {"_count": 2}, "Remus": {"_count": 1}, "my": {"_count": 1}, "some": {"_count": 1}}, "ask": {"_count": 2, "said": {"_count": 1}, "for": {"_count": 1}}, "sit": {"_count": 2, "": {"_count": 1}, "down": {"_count": 1}}, "submit": {"_count": 1, "their": {"_count": 1}}, "e": {"_count": 1, "complain": {"_count": 1}}, "try": {"_count": 4, "and": {"_count": 2}, "a": {"_count": 1}, "first": {"_count": 1}}, "put": {"_count": 4, "an": {"_count": 1}, "out": {"_count": 1}, "some": {"_count": 2}}, "crack": {"_count": 1, "it": {"_count": 1}}, "exercise": {"_count": 1, "caution": {"_count": 1}}, "surely": {"_count": 1, "consider": {"_count": 1}}, "send": {"_count": 1, "up": {"_count": 1}}, "win": {"_count": 1, "": {"_count": 1}}, "stand": {"_count": 1, "here": {"_count": 1}}, "they": {"_count": 2, "wish": {"_count": 1}, "break": {"_count": 1}}, "come": {"_count": 3, "when": {"_count": 1}, "with": {"_count": 1}, "too": {"_count": 1}}, "give": {"_count": 3, "you": {"_count": 2}, "their": {"_count": 1}}, "now": {"_count": 1, "be": {"_count": 1}}, "like": {"_count": 3, "you": {"_count": 3}}, "at": {"_count": 1, "least": {"_count": 1}}, "Ron": {"_count": 1, "began": {"_count": 1}}, "tackle": {"_count": 1, "that": {"_count": 1}}, "find": {"_count": 1, "this": {"_count": 1}}, "select": {"_count": 1, "an": {"_count": 1}}, "help": {"_count": 1, "": {"_count": 1}}, "complain": {"_count": 1, "about": {"_count": 1}}, "just": {"_count": 6, "just": {"_count": 1}, "go": {"_count": 1}, "try": {"_count": 1}, "hang": {"_count": 1}, "be": {"_count": 2}}, "write": {"_count": 2, "their": {"_count": 1}, "a": {"_count": 1}}, "teach": {"_count": 1, "us": {"_count": 1}}, "enjoy": {"_count": 1, "themselves": {"_count": 1}}, "you": {"_count": 3, "be": {"_count": 1}, "wish": {"_count": 1}, "notice": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "remain": {"_count": 1, "": {"_count": 1}}, "stop": {"_count": 3, "until": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "cause": {"_count": 1, "maximum": {"_count": 1}}, "continue": {"_count": 1, "into": {"_count": 1}}, "stay": {"_count": 1, "here": {"_count": 1}}, "touch": {"_count": 1, "it": {"_count": 1}}, "say": {"_count": 3, "almost": {"_count": 1}, "": {"_count": 1}, "amended": {"_count": 1}}, "master": {"_count": 1, "Occlumency": {"_count": 1}}, "explain": {"_count": 1, "that": {"_count": 1}}, "succeed": {"_count": 1, "I": {"_count": 1}}, "remind": {"_count": 1, "you": {"_count": 1}}, "also": {"_count": 1, "be": {"_count": 1}}, "Harry": {"_count": 1, "forced": {"_count": 1}}, "feel": {"_count": 2, "protective": {"_count": 1}, "any": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "definitely": {"_count": 1, "wear": {"_count": 1}}, "anybody": {"_count": 1, "delve": {"_count": 1}}, "forget": {"_count": 2, "she": {"_count": 1}, "about": {"_count": 1}}, "act": {"_count": 1, "so": {"_count": 1}}, "allow": {"_count": 1, "for": {"_count": 1}}, "add": {"_count": 1, "interest": {"_count": 1}}, "the": {"_count": 1, "need": {"_count": 1}}, "reopen": {"_count": 1, "next": {"_count": 1}}, "pay": {"_count": 1, "tribute": {"_count": 1}}, "wait": {"_count": 1, "outside": {"_count": 1}}, "read": {"_count": 2, "them": {"_count": 1}, "Harrys": {"_count": 1}}, "each": {"_count": 1, "take": {"_count": 1}}, "stick": {"_count": 1, "together": {"_count": 1}}, "fool": {"_count": 1, "her": {"_count": 1}}, "move": {"_count": 1, "on": {"_count": 1}}, "only": {"_count": 1, "take": {"_count": 1}}, "vote": {"_count": 1, "on": {"_count": 1}}, "close": {"_count": 1, "his": {"_count": 1}}, "use": {"_count": 1, "this": {"_count": 1}}, "climb": {"_count": 1, "up": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "prefer": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "mean": {"_count": 1}}}, "celebrating": {"_count": 13, "this": {"_count": 1, "happy": {"_count": 1}}, "Bonfire": {"_count": 1, "Night": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 2}, ".": {"_count": 1}, "!": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "the": {"_count": 2, "downfall": {"_count": 1}, "end": {"_count": 1}}, "as": {"_count": 1, "June": {"_count": 1}}, "with": {"_count": 1, "Ron": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "happy": {"_count": 181, "happy": {"_count": 1, "day": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 23, "join": {"_count": 1}, "point": {"_count": 1}, "present": {"_count": 1}, "pass": {"_count": 1}, "do": {"_count": 1}, "tell": {"_count": 2}, "find": {"_count": 1}, "be": {"_count": 3}, "advise": {"_count": 1}, "take": {"_count": 1}, "say": {"_count": 1}, "think": {"_count": 1}, "accept": {"_count": 1}, "let": {"_count": 2}, "see": {"_count": 1}, "serve": {"_count": 1}, "betray": {"_count": 1}, "go": {"_count": 1}, "sit": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 27}, "?": {"_count": 6}, "!": {"_count": 1}}, "birthday": {"_count": 6, "to": {"_count": 2}, "none": {"_count": 1}, "Ralph": {"_count": 1}, "anyway": {"_count": 2}}, "he": {"_count": 3, "felt": {"_count": 2}, "is": {"_count": 1}}, "balloon": {"_count": 1, "inside": {"_count": 1}}, "afternoon": {"_count": 1, "having": {"_count": 1}}, "blur": {"_count": 1, "Gryffindors": {"_count": 1}}, "power": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 5, "all": {"_count": 4}, "the": {"_count": 1}}, "practice": {"_count": 1, "session": {"_count": 1}}, "about": {"_count": 9, "this": {"_count": 3}, "it": {"_count": 2}, "something": {"_count": 1}, "my": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}}, "talk": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "not": {"_count": 2, "knowing": {"_count": 1}, "happy": {"_count": 1}}, "if": {"_count": 3, "theyre": {"_count": 1}, "she": {"_count": 1}, "you": {"_count": 1}}, "with": {"_count": 14, "the": {"_count": 5}, "some": {"_count": 1}, "you": {"_count": 2}, "his": {"_count": 1}, "Mr": {"_count": 1}, "Shacklebolt": {"_count": 1}, "themselves": {"_count": 1}, "me": {"_count": 2}}, "myself": {"_count": 1, "said": {"_count": 1}}, "Malfoy": {"_count": 1, "looks": {"_count": 1}}, "cup": {"_count": 1, "": {"_count": 1}}, "memory": {"_count": 7, "will": {"_count": 1}, "": {"_count": 4}, "I": {"_count": 1}, "he": {"_count": 1}}, "thoughts": {"_count": 1, "about": {"_count": 1}}, "enough": {"_count": 1, "things": {"_count": 1}}, "thought": {"_count": 1, "so": {"_count": 1}}, "feeling": {"_count": 2, "": {"_count": 2}}, "after": {"_count": 1, "wha": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "something": {"_count": 1, "Uncle": {"_count": 1}}, "and": {"_count": 4, "peaceful": {"_count": 1}, "talkative": {"_count": 1}, "Nott": {"_count": 1}, "normal": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "do": {"_count": 2, "they": {"_count": 2}}, "said": {"_count": 2, "Professor": {"_count": 2}}, "tears": {"_count": 1, "welled": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "confident": {"_count": 1, "smile": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 1, "But": {"_count": 1}}, "little": {"_count": 1, "faces": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "moment": {"_count": 1, "of": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "Dobby": {"_count": 1, "went": {"_count": 1}}, "looking": {"_count": 1, "face": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "moments": {"_count": 1, "abusing": {"_count": 1}}, "Harry": {"_count": 2, "reminded": {"_count": 1}, "Potters": {"_count": 1}}, "nor": {"_count": 1, "as": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "relationship": {"_count": 1, "": {"_count": 1}}, "peaceful": {"_count": 1, "holiday": {"_count": 1}}, "ter": {"_count": 1, "be": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "couples": {"_count": 1, "": {"_count": 1}}, "Christmas": {"_count": 1, "and": {"_count": 1}}, "prospect": {"_count": 1, "he": {"_count": 1}}, "Firenze": {"_count": 1, "is": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "memories": {"_count": 2, "yeh": {"_count": 1}, "": {"_count": 1}}, "hour": {"_count": 1, "he": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 1, "late": {"_count": 1}}, "event": {"_count": 1, "that": {"_count": 1}}, "seventeenth": {"_count": 1, "Harry": {"_count": 1}}, "forgetfulness": {"_count": 1, "was": {"_count": 1}}, "returns": {"_count": 1, "": {"_count": 1}}, "family": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "in": {"_count": 1}}, "baby": {"_count": 1, "without": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "essential": {"_count": 1}}}, "And": {"_count": 1863, "the": {"_count": 65, "old": {"_count": 1}, "fleet": {"_count": 1}, "school": {"_count": 1}, "Quaffle": {"_count": 1}, "Invisibility": {"_count": 1}, "family": {"_count": 1}, "ground": {"_count": 1}, "fourth": {"_count": 1}, "Slytherins": {"_count": 1}, "ppotion": {"_count": 1}, "fun": {"_count": 1}, "attacks": {"_count": 1}, "witch": {"_count": 1}, "worst": {"_count": 3}, "hand": {"_count": 1}, "Fat": {"_count": 2}, "one": {"_count": 1}, "Jelly": {"_count": 1}, "Acid": {"_count": 1}, "same": {"_count": 2}, "caption": {"_count": 1}, "dementors": {"_count": 1}, "second": {"_count": 1}, "Goblet": {"_count": 1}, "first": {"_count": 2}, "dungeon": {"_count": 1}, "Death": {"_count": 2}, "very": {"_count": 1}, "clash": {"_count": 1}, "Sorting": {"_count": 1}, "homework": {"_count": 1}, "night": {"_count": 1}, "best": {"_count": 1}, "Defense": {"_count": 1}, "steam": {"_count": 1}, "answer": {"_count": 1}, "rest": {"_count": 1}, "moment": {"_count": 1}, "next": {"_count": 1}, "poisoned": {"_count": 1}, "meaning": {"_count": 1}, "core": {"_count": 1}, "laughter": {"_count": 1}, "more": {"_count": 1}, "sword": {"_count": 1}, "child": {"_count": 1}, "light": {"_count": 1}, "week": {"_count": 1}, "wand": {"_count": 1}, "rumors": {"_count": 1}, "Carrows": {"_count": 1}, "dragons": {"_count": 1}, "scene": {"_count": 5}, "Cloak": {"_count": 1}, "glasses": {"_count": 1}}, "finally": {"_count": 6, "birdwatchers": {"_count": 1}, "I": {"_count": 1}, "with": {"_count": 1}, "give": {"_count": 1}, "Bungy": {"_count": 1}, "Bathilda": {"_count": 1}}, "now": {"_count": 80, "over": {"_count": 2}, "there": {"_count": 2}, "before": {"_count": 1}, "bedtime": {"_count": 1}, "they": {"_count": 2}, "at": {"_count": 1}, "the": {"_count": 4}, "Harry": {"_count": 9}, "youve": {"_count": 2}, "without": {"_count": 1}, "roared": {"_count": 1}, "ladies": {"_count": 1}, "please": {"_count": 1}, "shes": {"_count": 1}, "it": {"_count": 4}, "he": {"_count": 6}, "Karkaroff": {"_count": 1}, "I": {"_count": 2}, "Wormtail": {"_count": 1}, "you": {"_count": 3}, "we": {"_count": 2}, "another": {"_count": 1}, "his": {"_count": 2}, "hes": {"_count": 3}, "ten": {"_count": 1}, "Rookwoods": {"_count": 1}, "": {"_count": 1}, "bright": {"_count": 1}, "tonight": {"_count": 1}, "everyone": {"_count": 1}, "said": {"_count": 4}, "theyre": {"_count": 1}, "if": {"_count": 1}, "for": {"_count": 1}, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 1}, "she": {"_count": 2}, "this": {"_count": 1}, "lets": {"_count": 1}, "everything": {"_count": 1}, "a": {"_count": 2}, "Piertotum": {"_count": 1}, "Snape": {"_count": 2}, "something": {"_count": 1}}, "a": {"_count": 16, "whisper": {"_count": 1}, "few": {"_count": 2}, "point": {"_count": 1}, "private": {"_count": 1}, "lasting": {"_count": 1}, "long": {"_count": 1}, "handbag": {"_count": 1}, "thousand": {"_count": 1}, "second": {"_count": 1}, "sphinx": {"_count": 1}, "great": {"_count": 1}, "terrible": {"_count": 1}, "Death": {"_count": 1}, "new": {"_count": 1}, "more": {"_count": 1}}, "I": {"_count": 89, "dont": {"_count": 9}, "can": {"_count": 3}, "want": {"_count": 2}, "gave": {"_count": 1}, "must": {"_count": 5}, "thought": {"_count": 4}, "would": {"_count": 2}, "cant": {"_count": 4}, "hope": {"_count": 2}, "sneaked": {"_count": 1}, "bet": {"_count": 3}, "am": {"_count": 3}, "was": {"_count": 6}, "looked": {"_count": 1}, "havent": {"_count": 3}, "tried": {"_count": 2}, "think": {"_count": 5}, "trust": {"_count": 1}, "find": {"_count": 1}, "regret": {"_count": 1}, "know": {"_count": 1}, "have": {"_count": 2}, "just": {"_count": 1}, "wasnt": {"_count": 1}, "answer": {"_count": 2}, "I": {"_count": 1}, "saw": {"_count": 1}, "says": {"_count": 1}, "felt": {"_count": 1}, "didnt": {"_count": 1}, "met": {"_count": 1}, "still": {"_count": 1}, "forbid": {"_count": 1}, "ought": {"_count": 1}, "wish": {"_count": 1}, "had": {"_count": 2}, "will": {"_count": 1}, "suppose": {"_count": 1}, "understand": {"_count": 1}, "shall": {"_count": 1}, "": {"_count": 1}, "take": {"_count": 1}, "reckon": {"_count": 1}, "you": {"_count": 1}, "wonder": {"_count": 1}, "do": {"_count": 1}, "asked": {"_count": 1}}, "theyve": {"_count": 2, "got": {"_count": 1}, "found": {"_count": 1}}, "where": {"_count": 7, "did": {"_count": 1}, "was": {"_count": 1}, "have": {"_count": 1}, "exactly": {"_count": 1}, "do": {"_count": 1}, "will": {"_count": 1}, "would": {"_count": 1}}, "dont": {"_count": 17, "you": {"_count": 1}, "ask": {"_count": 1}, "get": {"_count": 1}, "forget": {"_count": 7}, "look": {"_count": 1}, "take": {"_count": 1}, "say": {"_count": 1}, "tell": {"_count": 2}, "expect": {"_count": 1}, "let": {"_count": 1}}, "well": {"_count": 5, "buy": {"_count": 1}, "be": {"_count": 1}, "there": {"_count": 1}, "need": {"_count": 1}, "have": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "it": {"_count": 31, "didnt": {"_count": 1}, "showed": {"_count": 1}, "doesnt": {"_count": 3}, "hit": {"_count": 1}, "hasnt": {"_count": 1}, "clicked": {"_count": 1}, "wasnt": {"_count": 2}, "begins": {"_count": 1}, "had": {"_count": 2}, "got": {"_count": 1}, "wants": {"_count": 1}, "would": {"_count": 1}, "looks": {"_count": 1}, "was": {"_count": 1}, "might": {"_count": 1}, "seemed": {"_count": 2}, "so": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}, "happened": {"_count": 1}, "takes": {"_count": 1}, "sounded": {"_count": 1}, "worked": {"_count": 1}, "came": {"_count": 1}, "led": {"_count": 1}, "never": {"_count": 1}}, "this": {"_count": 20, "time": {"_count": 1}, "gentlemans": {"_count": 1}, "is": {"_count": 7}, "diary": {"_count": 1}, "left": {"_count": 1}, "isnt": {"_count": 1}, "ability": {"_count": 1}, "must": {"_count": 1}, "girl": {"_count": 1}, "information": {"_count": 1}, "dramatic": {"_count": 1}, "ere": {"_count": 1}, "one": {"_count": 1}, "holds": {"_count": 1}}, "they": {"_count": 20, "drove": {"_count": 1}, "heard": {"_count": 1}, "play": {"_count": 1}, "marched": {"_count": 1}, "shot": {"_count": 1}, "both": {"_count": 1}, "didnt": {"_count": 1}, "mustve": {"_count": 1}, "couldnt": {"_count": 1}, "are": {"_count": 1}, "left": {"_count": 1}, "ended": {"_count": 1}, "grow": {"_count": 1}, "could": {"_count": 1}, "still": {"_count": 1}, "zoomed": {"_count": 1}, "believed": {"_count": 1}, "turned": {"_count": 1}, "took": {"_count": 1}, "locked": {"_count": 1}}, "two": {"_count": 4, "minutes": {"_count": 1}, "of": {"_count": 2}, "seats": {"_count": 1}}, "theres": {"_count": 9, "Aunt": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "no": {"_count": 1}, "nothing": {"_count": 1}, "Dumbledore": {"_count": 1}, "this": {"_count": 1}}, "then": {"_count": 189, "yeh": {"_count": 1}, "once": {"_count": 1}, "they": {"_count": 4}, "of": {"_count": 2}, "it": {"_count": 9}, "the": {"_count": 12}, "your": {"_count": 1}, "exactly": {"_count": 1}, "could": {"_count": 1}, "he": {"_count": 28}, "I": {"_count": 10}, "Harry": {"_count": 12}, "just": {"_count": 1}, "at": {"_count": 4}, "there": {"_count": 6}, "from": {"_count": 2}, "Snape": {"_count": 2}, "a": {"_count": 8}, "barely": {"_count": 1}, "came": {"_count": 4}, "A": {"_count": 1}, "through": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 4}, "as": {"_count": 4}, "she": {"_count": 5}, "Frank": {"_count": 1}, "on": {"_count": 1}, "Well": {"_count": 1}, "without": {"_count": 3}, "Dumbledore": {"_count": 2}, "Karkaroff": {"_count": 1}, "theres": {"_count": 3}, "perhaps": {"_count": 1}, "after": {"_count": 1}, "Dobby": {"_count": 1}, "we": {"_count": 2}, "weve": {"_count": 1}, "halfway": {"_count": 1}, "Potter": {"_count": 1}, "before": {"_count": 1}, "Wormtail": {"_count": 1}, "suddenly": {"_count": 2}, "not": {"_count": 1}, "nothing": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 6}, "He": {"_count": 1}, "quite": {"_count": 1}, "to": {"_count": 2}, "T": {"_count": 1}, "with": {"_count": 3}, "beneath": {"_count": 1}, "abruptly": {"_count": 2}, "when": {"_count": 3}, "something": {"_count": 1}, "Harrys": {"_count": 1}, "Mrs": {"_count": 1}, "what": {"_count": 3}, "well": {"_count": 1}, "youll": {"_count": 1}, "out": {"_count": 2}, "Voldemort": {"_count": 1}, "Ron": {"_count": 1}, "his": {"_count": 2}, "come": {"_count": 1}, "many": {"_count": 1}}, "all": {"_count": 8, "the": {"_count": 2}, "of": {"_count": 1}, "these": {"_count": 1}, "with": {"_count": 1}, "sorts": {"_count": 1}, "around": {"_count": 1}, "along": {"_count": 1}}, "what": {"_count": 66, "are": {"_count": 8}, "do": {"_count": 7}, "if": {"_count": 4}, "model": {"_count": 1}, "on": {"_count": 1}, "exactly": {"_count": 2}, "will": {"_count": 3}, "about": {"_count": 10}, "is": {"_count": 3}, "did": {"_count": 6}, "became": {"_count": 1}, "were": {"_count": 2}, "the": {"_count": 1}, "what": {"_count": 1}, "goods": {"_count": 1}, "Hermione": {"_count": 1}, "she": {"_count": 1}, "brings": {"_count": 1}, "am": {"_count": 1}, "really": {"_count": 1}, "has": {"_count": 1}, "difference": {"_count": 1}, "would": {"_count": 3}, "Ive": {"_count": 1}, "in": {"_count": 1}, "ideas": {"_count": 1}, "gave": {"_count": 1}, "use": {"_count": 1}}, "thats": {"_count": 11, "where": {"_count": 2}, "how": {"_count": 1}, "Minerva": {"_count": 1}, "not": {"_count": 2}, "our": {"_count": 1}, "Smith": {"_count": 1}, "why": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 8, "course": {"_count": 7}, "the": {"_count": 1}}, "tried": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 2, "after": {"_count": 1}, "Broderick": {"_count": 1}}, "have": {"_count": 3, "you": {"_count": 3}}, "she": {"_count": 40, "left": {"_count": 1}, "let": {"_count": 1}, "pulled": {"_count": 6}, "offered": {"_count": 1}, "sprinted": {"_count": 1}, "disappeared": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}, "refused": {"_count": 1}, "was": {"_count": 2}, "stormed": {"_count": 2}, "hurried": {"_count": 3}, "remained": {"_count": 1}, "spent": {"_count": 1}, "probably": {"_count": 1}, "jerked": {"_count": 1}, "shoved": {"_count": 1}, "thought": {"_count": 2}, "is": {"_count": 1}, "withdrew": {"_count": 1}, "died": {"_count": 1}, "moved": {"_count": 1}, "walked": {"_count": 1}, "looked": {"_count": 1}, "turned": {"_count": 1}, "swung": {"_count": 1}, "muttered": {"_count": 1}, "pointed": {"_count": 1}, "strode": {"_count": 1}, "pushed": {"_count": 1}}, "he": {"_count": 117, "was": {"_count": 15}, "scooted": {"_count": 1}, "has": {"_count": 1}, "strode": {"_count": 5}, "opened": {"_count": 1}, "hesitated": {"_count": 1}, "fainted": {"_count": 1}, "stomped": {"_count": 1}, "hurried": {"_count": 1}, "left": {"_count": 3}, "set": {"_count": 4}, "forced": {"_count": 1}, "also": {"_count": 1}, "threw": {"_count": 2}, "said": {"_count": 3}, "ran": {"_count": 1}, "did": {"_count": 2}, "explained": {"_count": 1}, "bustled": {"_count": 1}, "scrambled": {"_count": 1}, "aimed": {"_count": 1}, "seized": {"_count": 1}, "had": {"_count": 6}, "went": {"_count": 1}, "sneaked": {"_count": 1}, "trusts": {"_count": 1}, "came": {"_count": 1}, "packed": {"_count": 1}, "probably": {"_count": 1}, "traipsed": {"_count": 1}, "recounted": {"_count": 1}, "told": {"_count": 7}, "felt": {"_count": 1}, "and": {"_count": 3}, "looked": {"_count": 1}, "strolled": {"_count": 1}, "might": {"_count": 2}, "wiped": {"_count": 1}, "lumbered": {"_count": 1}, "would": {"_count": 1}, "scurried": {"_count": 1}, "led": {"_count": 1}, "knows": {"_count": 1}, "wasnt": {"_count": 1}, "turned": {"_count": 1}, "dived": {"_count": 1}, "stamped": {"_count": 1}, "walked": {"_count": 2}, "spat": {"_count": 2}, "wanted": {"_count": 1}, "began": {"_count": 1}, "zoomed": {"_count": 1}, "hurtled": {"_count": 1}, "permitted": {"_count": 1}, "too": {"_count": 1}, "brought": {"_count": 1}, "drained": {"_count": 1}, "raised": {"_count": 1}, "slashed": {"_count": 1}, "didnt": {"_count": 2}, "knew": {"_count": 2}, "saw": {"_count": 3}, "clicked": {"_count": 1}, "made": {"_count": 2}, "ordered": {"_count": 1}, "drank": {"_count": 1}, "thought": {"_count": 1}, "never": {"_count": 1}, "will": {"_count": 1}}, "my": {"_count": 6, "names": {"_count": 1}, "mummy": {"_count": 1}, "elf": {"_count": 1}, "mum": {"_count": 1}, "father": {"_count": 1}, "soul": {"_count": 1}}, "so": {"_count": 31, "he": {"_count": 4}, "to": {"_count": 1}, "you": {"_count": 3}, "they": {"_count": 5}, "I": {"_count": 3}, "we": {"_count": 2}, "Dobby": {"_count": 1}, "the": {"_count": 2}, "am": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 1}, "since": {"_count": 1}, "strong": {"_count": 1}, "what": {"_count": 2}, "have": {"_count": 1}, "for": {"_count": 1}, "does": {"_count": 1}}, "youve": {"_count": 6, "got": {"_count": 2}, "been": {"_count": 3}, "brought": {"_count": 1}}, "unafraid": {"_count": 1, "of": {"_count": 1}}, "there": {"_count": 22, "in": {"_count": 1}, "were": {"_count": 5}, "at": {"_count": 2}, "": {"_count": 1}, "was": {"_count": 9}, "we": {"_count": 1}, "he": {"_count": 1}, "are": {"_count": 1}, "it": {"_count": 1}}, "here": {"_count": 11, "they": {"_count": 1}, "are": {"_count": 1}, "come": {"_count": 1}, "all": {"_count": 1}, "comes": {"_count": 1}, "Voldemort": {"_count": 1}, "we": {"_count": 2}, "he": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}}, "you": {"_count": 88, "should": {"_count": 1}, "dont": {"_count": 3}, "could": {"_count": 1}, "wouldnt": {"_count": 2}, "were": {"_count": 2}, "have": {"_count": 2}, "": {"_count": 4}, "boy": {"_count": 1}, "he": {"_count": 2}, "two": {"_count": 3}, "Potter": {"_count": 2}, "Miss": {"_count": 1}, "Malfoy": {"_count": 1}, "framed": {"_count": 1}, "will": {"_count": 2}, "know": {"_count": 3}, "can": {"_count": 3}, "picked": {"_count": 1}, "George": {"_count": 1}, "think": {"_count": 4}, "said": {"_count": 3}, "Hermione": {"_count": 1}, "too": {"_count": 3}, "might": {"_count": 1}, "make": {"_count": 1}, "Goyle": {"_count": 1}, "off": {"_count": 1}, "made": {"_count": 1}, "are": {"_count": 2}, "very": {"_count": 1}, "certainly": {"_count": 1}, "all": {"_count": 1}, "Harry": {"_count": 2}, "see": {"_count": 1}, "found": {"_count": 1}, "just": {"_count": 1}, "talked": {"_count": 1}, "lot": {"_count": 1}, "wont": {"_count": 1}, "ought": {"_count": 1}, "stopped": {"_count": 1}, "overlook": {"_count": 1}, "must": {"_count": 1}, "qualify": {"_count": 1}, "I": {"_count": 1}, "chose": {"_count": 1}, "thought": {"_count": 2}, "feel": {"_count": 1}, "didnt": {"_count": 1}, "resorted": {"_count": 1}, "Draco": {"_count": 1}, "still": {"_count": 2}, "tried": {"_count": 1}, "decided": {"_count": 1}, "understood": {"_count": 1}, "wonder": {"_count": 1}, "Peakes": {"_count": 1}, "do": {"_count": 1}, "knew": {"_count": 1}, "never": {"_count": 1}}, "learn": {"_count": 1, "until": {"_count": 1}}, "did": {"_count": 9, "Hagrid": {"_count": 1}, "he": {"_count": 3}, "you": {"_count": 2}, "the": {"_count": 2}, "that": {"_count": 1}}, "its": {"_count": 12, "really": {"_count": 2}, "not": {"_count": 3}, "Gryffindor": {"_count": 2}, "Mullet": {"_count": 1}, "come": {"_count": 1}, "Johnson": {"_count": 1}, "also": {"_count": 1}, "helped": {"_count": 1}}, "saying": {"_count": 1, "the": {"_count": 1}}, "Id": {"_count": 6, "bet": {"_count": 1}, "like": {"_count": 1}, "wash": {"_count": 1}, "want": {"_count": 1}, "have": {"_count": 1}, "tell": {"_count": 1}}, "women": {"_count": 2, "said": {"_count": 1}, "Wood": {"_count": 1}}, "shes": {"_count": 8, "really": {"_count": 1}, "gone": {"_count": 1}, "got": {"_count": 1}, "been": {"_count": 1}, "trying": {"_count": 1}, "asked": {"_count": 1}, "more": {"_count": 1}, "still": {"_count": 1}}, "that": {"_count": 21, "reminds": {"_count": 1}, "wasnt": {"_count": 1}, "I": {"_count": 1}, "girl": {"_count": 1}, "said": {"_count": 3}, "boys": {"_count": 1}, "Fleur": {"_count": 1}, "was": {"_count": 3}, "in": {"_count": 1}, "": {"_count": 1}, "complete": {"_count": 1}, "woman": {"_count": 1}, "perfume": {"_count": 1}, "interview": {"_count": 1}, "goes": {"_count": 1}, "apparently": {"_count": 1}, "one": {"_count": 1}}, "send": {"_count": 1, "me": {"_count": 1}}, "youre": {"_count": 10, "not": {"_count": 2}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "covering": {"_count": 1}, "sure": {"_count": 1}, "forbidden": {"_count": 1}, "supposed": {"_count": 1}, "being": {"_count": 1}}, "slowly": {"_count": 1, "Harry": {"_count": 1}}, "Ron": {"_count": 7, "pulled": {"_count": 1}, "looked": {"_count": 1}, "leaned": {"_count": 1}, "": {"_count": 3}, "would": {"_count": 1}}, "wheres": {"_count": 1, "Malfoy": {"_count": 1}}, "no": {"_count": 3, "wonder": {"_count": 1}, "magic": {"_count": 1}, "ones": {"_count": 1}}, "speaking": {"_count": 5, "of": {"_count": 5}}, "we": {"_count": 21, "know": {"_count": 4}, "have": {"_count": 2}, "also": {"_count": 1}, "thought": {"_count": 1}, "dont": {"_count": 2}, "all": {"_count": 1}, "heard": {"_count": 1}, "ave": {"_count": 1}, "must": {"_count": 1}, "saw": {"_count": 1}, "do": {"_count": 1}, "were": {"_count": 1}, "can": {"_count": 1}, "": {"_count": 1}, "left": {"_count": 1}, "need": {"_count": 1}}, "in": {"_count": 17, "the": {"_count": 4}, "case": {"_count": 3}, "no": {"_count": 1}, "third": {"_count": 1}, "our": {"_count": 2}, "fact": {"_count": 1}, "any": {"_count": 2}, "that": {"_count": 1}, "your": {"_count": 1}, "doing": {"_count": 1}}, "when": {"_count": 13, "I": {"_count": 2}, "YouKnowWho": {"_count": 1}, "he": {"_count": 1}, "are": {"_count": 1}, "they": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "youve": {"_count": 1}, "has": {"_count": 1}, "youre": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}}, "twenty": {"_count": 1, "points": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "do": {"_count": 6, "you": {"_count": 3}, "me": {"_count": 1}, "I": {"_count": 1}, "as": {"_count": 1}}, "Firenze": {"_count": 1, "whisked": {"_count": 1}}, "Neville": {"_count": 1, "will": {"_count": 1}}, "Gryffindor": {"_count": 1, "really": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "Harry": {"_count": 36, "let": {"_count": 1}, "knew": {"_count": 2}, "was": {"_count": 3}, "See": {"_count": 1}, "suddenly": {"_count": 1}, "you": {"_count": 1}, "heard": {"_count": 2}, "realized": {"_count": 3}, "make": {"_count": 1}, "in": {"_count": 1}, "I": {"_count": 1}, "looked": {"_count": 1}, "felt": {"_count": 3}, "ran": {"_count": 1}, "saw": {"_count": 5}, "remembered": {"_count": 2}, "said": {"_count": 1}, "fell": {"_count": 1}, "Potters": {"_count": 1}, "dived": {"_count": 1}, "too": {"_count": 1}, "went": {"_count": 1}, "with": {"_count": 1}}, "cleverness": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 12, "Harrys": {"_count": 4}, "the": {"_count": 2}, "everybodys": {"_count": 1}, "keep": {"_count": 1}, "recover": {"_count": 2}, "see": {"_count": 1}, "complicate": {"_count": 1}}, "Quirrell": {"_count": 1, "though": {"_count": 1}}, "sir": {"_count": 2, "theres": {"_count": 1}, "111": {"_count": 1}}, "suddenly": {"_count": 2, "their": {"_count": 1}, "Harry": {"_count": 1}}, "if": {"_count": 37, "the": {"_count": 3}, "as": {"_count": 1}, "I": {"_count": 4}, "youd": {"_count": 1}, "you": {"_count": 9}, "he": {"_count": 2}, "hes": {"_count": 1}, "Mum": {"_count": 1}, "youll": {"_count": 1}, "its": {"_count": 1}, "this": {"_count": 1}, "anyones": {"_count": 1}, "we": {"_count": 2}, "either": {"_count": 1}, "were": {"_count": 2}, "such": {"_count": 1}, "Dobby": {"_count": 1}, "it": {"_count": 3}, "by": {"_count": 1}}, "Dudley": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "walk": {"_count": 1, "on": {"_count": 1}}, "before": {"_count": 5, "Harry": {"_count": 1}, "Umbridge": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "laughing": {"_count": 1, "like": {"_count": 1}}, "someone": {"_count": 1, "was": {"_count": 1}}, "unless": {"_count": 4, "Harrys": {"_count": 1}, "Im": {"_count": 2}, "youve": {"_count": 1}}, "old": {"_count": 2, "Mundungus": {"_count": 1}, "Dusty": {"_count": 1}}, "for": {"_count": 8, "your": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 4}, "another": {"_count": 1}, "heavens": {"_count": 1}}, "Im": {"_count": 9, "right": {"_count": 1}, "very": {"_count": 1}, "still": {"_count": 1}, "not": {"_count": 3}, "afraid": {"_count": 1}, "telling": {"_count": 1}, "hunted": {"_count": 1}}, "Ginny": {"_count": 4, "needs": {"_count": 1}, "had": {"_count": 1}, "dont": {"_count": 1}, "shed": {"_count": 1}}, "be": {"_count": 3, "sure": {"_count": 1}, "warned": {"_count": 2}}, "keep": {"_count": 2, "your": {"_count": 2}}, "your": {"_count": 12, "eyes": {"_count": 1}, "soul": {"_count": 1}, "hairs": {"_count": 1}, "change": {"_count": 1}, "little": {"_count": 1}, "name": {"_count": 3}, "sons": {"_count": 1}, "authority": {"_count": 1}, "mum": {"_count": 1}, "first": {"_count": 1}}, "not": {"_count": 3, "one": {"_count": 1}, "all": {"_count": 1}, "just": {"_count": 1}}, "weve": {"_count": 9, "got": {"_count": 5}, "been": {"_count": 1}, "met": {"_count": 1}, "never": {"_count": 1}, "done": {"_count": 1}}, "even": {"_count": 3, "underage": {"_count": 1}, "better": {"_count": 1}, "if": {"_count": 1}}, "itd": {"_count": 1, "be": {"_count": 1}}, "whichever": {"_count": 1, "teams": {"_count": 1}}, "from": {"_count": 6, "behind": {"_count": 1}, "what": {"_count": 2}, "the": {"_count": 1}, "now": {"_count": 1}, "this": {"_count": 1}}, "whats": {"_count": 13, "he": {"_count": 2}, "inside": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 5}, "going": {"_count": 1}, "more": {"_count": 1}, "happened": {"_count": 1}}, "Lockhart": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "without": {"_count": 10, "a": {"_count": 1}, "even": {"_count": 1}, "looking": {"_count": 1}, "waiting": {"_count": 1}, "further": {"_count": 1}, "warning": {"_count": 2}, "another": {"_count": 2}, "thinking": {"_count": 1}}, "his": {"_count": 7, "popping": {"_count": 1}, "reward": {"_count": 1}, "wand": {"_count": 1}, "Mistress": {"_count": 1}, "scream": {"_count": 1}, "fury": {"_count": 1}, "knowledge": {"_count": 1}}, "Hermiones": {"_count": 1, "done": {"_count": 1}}, "within": {"_count": 2, "five": {"_count": 1}, "ten": {"_count": 1}}, "ignoring": {"_count": 1, "the": {"_count": 1}}, "dangerous": {"_count": 1, "very": {"_count": 1}}, "were": {"_count": 5, "not": {"_count": 1}, "supposed": {"_count": 2}, "still": {"_count": 1}, "going": {"_count": 1}}, "how": {"_count": 20, "did": {"_count": 3}, "come": {"_count": 2}, "long": {"_count": 2}, "do": {"_count": 2}, "much": {"_count": 1}, "she": {"_count": 1}, "many": {"_count": 2}, "are": {"_count": 3}, "dare": {"_count": 1}, "about": {"_count": 1}, "the": {"_count": 1}, "could": {"_count": 1}}, "everyone": {"_count": 2, "knows": {"_count": 1}, "who": {"_count": 1}}, "bow": {"_count": 1, "": {"_count": 1}}, "miraculously": {"_count": 1, "inexplicably": {"_count": 1}}, "obviously": {"_count": 1, "itll": {"_count": 1}}, "Millicent": {"_count": 1, "Bulstrodes": {"_count": 1}}, "whatre": {"_count": 1, "you": {"_count": 1}}, "people": {"_count": 1, "think": {"_count": 1}}, "Father": {"_count": 1, "wont": {"_count": 1}}, "some": {"_count": 1, "old": {"_count": 1}}, "All": {"_count": 1, "right": {"_count": 1}}, "while": {"_count": 9, "Harry": {"_count": 1}, "youre": {"_count": 2}, "no": {"_count": 1}, "we": {"_count": 2}, "Im": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}}, "after": {"_count": 5, "that": {"_count": 1}, "last": {"_count": 1}, "all": {"_count": 3}}, "may": {"_count": 1, "I": {"_count": 1}}, "are": {"_count": 4, "both": {"_count": 1}, "they": {"_count": 2}, "you": {"_count": 1}}, "just": {"_count": 5, "when": {"_count": 1}, "then": {"_count": 1}, "look": {"_count": 1}, "as": {"_count": 2}}, "out": {"_count": 4, "of": {"_count": 3}, "fell": {"_count": 1}}, "Riddle": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 1}, "Wednesday": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "as": {"_count": 23, "Dumbledore": {"_count": 1}, "Harrys": {"_count": 2}, "you": {"_count": 2}, "the": {"_count": 3}, "his": {"_count": 1}, "he": {"_count": 4}, "for": {"_count": 4}, "Lee": {"_count": 1}, "Harry": {"_count": 1}, "if": {"_count": 1}, "there": {"_count": 1}, "everybody": {"_count": 1}, "she": {"_count": 1}}, "beneath": {"_count": 1, "this": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "quite": {"_count": 2, "a": {"_count": 1}, "honestly": {"_count": 1}}, "why": {"_count": 19, "did": {"_count": 3}, "should": {"_count": 1}, "would": {"_count": 2}, "": {"_count": 1}, "have": {"_count": 1}, "could": {"_count": 1}, "does": {"_count": 1}, "said": {"_count": 1}, "Snape": {"_count": 1}, "was": {"_count": 2}, "couldnt": {"_count": 1}, "on": {"_count": 1}, "it": {"_count": 1}, "do": {"_count": 1}, "may": {"_count": 1}}, "twice": {"_count": 1, "I": {"_count": 1}}, "Ive": {"_count": 8, "seen": {"_count": 1}, "told": {"_count": 2}, "always": {"_count": 1}, "looked": {"_count": 1}, "sent": {"_count": 1}, "got": {"_count": 1}, "been": {"_count": 1}}, "something": {"_count": 3, "was": {"_count": 1}, "vast": {"_count": 1}, "in": {"_count": 1}}, "cowering": {"_count": 1, "behind": {"_count": 1}}, "imagine": {"_count": 1, "Dumbledore": {"_count": 1}}, "still": {"_count": 8, "behind": {"_count": 1}, "Harry": {"_count": 2}, "they": {"_count": 1}, "there": {"_count": 1}, "his": {"_count": 1}, "clanking": {"_count": 1}, "Voldemort": {"_count": 1}}, "with": {"_count": 17, "a": {"_count": 8}, "another": {"_count": 2}, "that": {"_count": 5}, "no": {"_count": 1}, "the": {"_count": 1}}, "together": {"_count": 1, "they": {"_count": 1}}, "thirdly": {"_count": 2, "said": {"_count": 1}, "as": {"_count": 1}}, "youll": {"_count": 3, "be": {"_count": 2}, "just": {"_count": 1}}, "lets": {"_count": 3, "face": {"_count": 2}, "see": {"_count": 1}}, "theyre": {"_count": 6, "favorites": {"_count": 1}, "coming": {"_count": 1}, "quite": {"_count": 1}, "cheeky": {"_count": 1}, "off": {"_count": 1}, "breeding": {"_count": 1}}, "stop": {"_count": 1, "worrying": {"_count": 1}}, "last": {"_count": 4, "Fred": {"_count": 1}, "time": {"_count": 1}, "night": {"_count": 1}, "summer": {"_count": 1}}, "therell": {"_count": 1, "be": {"_count": 1}}, "Professor": {"_count": 2, "Lupin": {"_count": 1}, "Dumbledore": {"_count": 1}}, "underneath": {"_count": 1, "nine": {"_count": 1}}, "around": {"_count": 1, "Easter": {"_count": 1}}, "Harrys": {"_count": 4, "still": {"_count": 1}, "mother": {"_count": 1}, "heart": {"_count": 1}, "feet": {"_count": 1}}, "Snape": {"_count": 5, "in": {"_count": 1}, "s": {"_count": 1}, "was": {"_count": 1}, "mightve": {"_count": 1}, "left": {"_count": 1}}, "me": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}, "Scabbers": {"_count": 1, "was": {"_count": 1}}, "Filch": {"_count": 2, "knows": {"_count": 1}, "has": {"_count": 1}}, "walked": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 16, "?": {"_count": 3}, ".": {"_count": 13}}, "at": {"_count": 8, "once": {"_count": 1}, "long": {"_count": 2}, "last": {"_count": 2}, "the": {"_count": 3}}, "many": {"_count": 1, "of": {"_count": 1}}, "itll": {"_count": 1, "go": {"_count": 1}}, "get": {"_count": 2, "another": {"_count": 1}, "the": {"_count": 1}}, "Black": {"_count": 1, "standing": {"_count": 1}}, "despite": {"_count": 1, "Rons": {"_count": 1}}, "Ernie": {"_count": 1, "McMillan": {"_count": 1}}, "Potter": {"_count": 2, "do": {"_count": 1}, "was": {"_count": 1}}, "hes": {"_count": 7, "been": {"_count": 1}, "supposed": {"_count": 1}, "scored": {"_count": 1}, "made": {"_count": 1}, "acting": {"_count": 1}, "hinting": {"_count": 1}, "not": {"_count": 1}}, "neither": {"_count": 1, "do": {"_count": 1}}, "sure": {"_count": 11, "enough": {"_count": 11}}, "Angelina": {"_count": 1, "scored": {"_count": 1}}, "Crookshanks": {"_count": 1, "was": {"_count": 1}}, "very": {"_count": 1, "lucky": {"_count": 1}}, "will": {"_count": 4, "you": {"_count": 2}, "it": {"_count": 2}}, "yet": {"_count": 17, "is": {"_count": 1}, "Black": {"_count": 1}, "": {"_count": 2}, "it": {"_count": 1}, "you": {"_count": 3}, "he": {"_count": 2}, "knowing": {"_count": 1}, "sitting": {"_count": 1}, "said": {"_count": 1}, "Elphias": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 2}}, "any": {"_count": 1, "other": {"_count": 1}}, "does": {"_count": 1, "my": {"_count": 1}}, "Dumbledore": {"_count": 9, "left": {"_count": 1}, "what": {"_count": 1}, "pointed": {"_count": 1}, "believed": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 2}, "thought": {"_count": 1}, "didnt": {"_count": 1}}, "grinning": {"_count": 1, "broadly": {"_count": 1}}, "Ill": {"_count": 7, "tell": {"_count": 2}, "go": {"_count": 1}, "get": {"_count": 1}, "see": {"_count": 1}, "thank": {"_count": 1}, "change": {"_count": 1}}, "who": {"_count": 6, "had": {"_count": 1}, "exactly": {"_count": 1}, "are": {"_count": 2}, "can": {"_count": 1}, "is": {"_count": 1}}, "batteries": {"_count": 1, "": {"_count": 1}}, "Wales": {"_count": 1, "lost": {"_count": 1}}, "whore": {"_count": 2, "you": {"_count": 2}}, "Ludo": {"_count": 1, "Bagmans": {"_count": 1}}, "allow": {"_count": 1, "me": {"_count": 1}}, "Mostafa": {"_count": 1, "takes": {"_count": 1}}, "yes": {"_count": 2, "its": {"_count": 1}, "I": {"_count": 1}}, "Volkov": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "Winky": {"_count": 2, "here": {"_count": 1}, "too": {"_count": 1}}, "tonight": {"_count": 2, "for": {"_count": 1}, "I": {"_count": 1}}, "remember": {"_count": 1, "what": {"_count": 1}}, "powerhungry": {"_count": 1, "Slytherin": {"_count": 1}}, "tell": {"_count": 2, "where": {"_count": 1}, "Dumbledore": {"_count": 1}}, "and": {"_count": 1, "sick": {"_count": 1}}, "once": {"_count": 6, "your": {"_count": 1}, "the": {"_count": 2}, "again": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 1}}, "Krum": {"_count": 2, "just": {"_count": 1}, "you": {"_count": 1}}, "since": {"_count": 2, "he": {"_count": 1}, "when": {"_count": 1}}, "Bagmans": {"_count": 1, "commentary": {"_count": 1}}, "Dobby": {"_count": 2, "thinks": {"_count": 1}, "knows": {"_count": 1}}, "heres": {"_count": 1, "your": {"_count": 1}}, "pork": {"_count": 1, "chops": {"_count": 1}}, "ze": {"_count": 1, "food": {"_count": 1}}, "ten": {"_count": 1, "points": {"_count": 1}}, "anyway": {"_count": 6, "youve": {"_count": 1}, "the": {"_count": 1}, "even": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}, "lifes": {"_count": 1}}, "Hagrid": {"_count": 2, "isnt": {"_count": 1}, "wants": {"_count": 1}}, "Moody": {"_count": 2, "thought": {"_count": 1}, "was": {"_count": 1}}, "Mr": {"_count": 2, "Crouch": {"_count": 1}, "Filch": {"_count": 1}}, "these": {"_count": 3, "were": {"_count": 1}, "words": {"_count": 1}, "": {"_count": 1}}, "helped": {"_count": 1, "him": {"_count": 1}}, "Rookwood": {"_count": 1, "kept": {"_count": 1}}, "Fudge": {"_count": 1, "reckons": {"_count": 1}}, "several": {"_count": 1, "paces": {"_count": 1}}, "one": {"_count": 3, "by": {"_count": 1}, "of": {"_count": 1}, "day": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "both": {"_count": 2, "of": {"_count": 2}}, "having": {"_count": 1, "funny": {"_count": 1}}, "Viktor": {"_count": 1, "pulled": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "theyll": {"_count": 1, "sentence": {"_count": 1}}, "whos": {"_count": 1, "left": {"_count": 1}}, "those": {"_count": 2, "in": {"_count": 1}, "Ravenclaw": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "about": {"_count": 2, "time": {"_count": 2}}, "guess": {"_count": 4, "whos": {"_count": 1}, "what": {"_count": 2}, "who": {"_count": 1}}, "Anthony": {"_count": 1, "Goldstein": {"_count": 1}}, "Hogwarts": {"_count": 2, "barely": {"_count": 1}, "": {"_count": 1}}, "pass": {"_count": 1, "along": {"_count": 1}}, "never": {"_count": 2, "did": {"_count": 1}, "since": {"_count": 1}}, "treat": {"_count": 1, "them": {"_count": 1}}, "only": {"_count": 1, "those": {"_count": 1}}, "taught": {"_count": 1, "them": {"_count": 1}}, "though": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "must": {"_count": 1, "quarter": {"_count": 1}}, "always": {"_count": 1, "of": {"_count": 1}}, "abandoning": {"_count": 1, "his": {"_count": 1}}, "welcome": {"_count": 1, "back": {"_count": 1}}, "sit": {"_count": 1, "down": {"_count": 1}}, "again": {"_count": 5, "and": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "Katie": {"_count": 1, "cant": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "nobody": {"_count": 3, "helped": {"_count": 1}, "would": {"_count": 1}, "from": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "Umbridge": {"_count": 1, "": {"_count": 1}}, "banning": {"_count": 1, "Fred": {"_count": 1}}, "was": {"_count": 3, "he": {"_count": 1}, "it": {"_count": 2}}, "moments": {"_count": 1, "later": {"_count": 1}}, "quickly": {"_count": 2, "before": {"_count": 1}, "": {"_count": 1}}, "oh": {"_count": 1, "Mrs": {"_count": 1}}, "listen": {"_count": 1, "": {"_count": 1}}, "Vol": {"_count": 1, "he": {"_count": 1}}, "off": {"_count": 1, "again": {"_count": 1}}, "Wood": {"_count": 1, "told": {"_count": 1}}, "unbelievably": {"_count": 1, "no": {"_count": 1}}, "dim": {"_count": 1, "though": {"_count": 1}}, "somehow": {"_count": 1, "Snape": {"_count": 1}}, "is": {"_count": 2, "therefore": {"_count": 1}, "it": {"_count": 1}}, "hadnt": {"_count": 1, "James": {"_count": 1}}, "whipping": {"_count": 1, "out": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "stopped": {"_count": 1, "hexing": {"_count": 1}}, "Peeves": {"_count": 1, "whom": {"_count": 1}}, "Davies": {"_count": 1, "takes": {"_count": 1}}, "our": {"_count": 2, "tolerance": {"_count": 1}, "Decoy": {"_count": 1}}, "Crabbe": {"_count": 1, "loosen": {"_count": 1}}, "taking": {"_count": 2, "a": {"_count": 1}, "care": {"_count": 1}}, "Hermione": {"_count": 4, "began": {"_count": 1}, "said": {"_count": 1}, "snogged": {"_count": 1}, "was": {"_count": 1}}, "howre": {"_count": 1, "we": {"_count": 1}}, "feeling": {"_count": 1, "slightly": {"_count": 1}}, "whad": {"_count": 1, "are": {"_count": 1}}, "Sirius": {"_count": 1, "would": {"_count": 1}}, "Kreacher": {"_count": 2, "told": {"_count": 1}, "ought": {"_count": 1}}, "whispered": {"_count": 1, "Harry": {"_count": 1}}, "whatever": {"_count": 1, "Kreachers": {"_count": 1}}, "notice": {"_count": 1, "this": {"_count": 1}}, "ask": {"_count": 1, "him": {"_count": 1}}, "unfortunately": {"_count": 1, "this": {"_count": 1}}, "Herbert": {"_count": 1, "Chorleys": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "forgive": {"_count": 1, "me": {"_count": 1}}, "through": {"_count": 1, "all": {"_count": 1}}, "should": {"_count": 1, "it": {"_count": 1}}, "Ambrosius": {"_count": 1, "Flume": {"_count": 1}}, "lastly": {"_count": 3, "while": {"_count": 1}, "I": {"_count": 1}, "your": {"_count": 1}}, "best": {"_count": 1, "of": {"_count": 1}}, "incidentally": {"_count": 2, "said": {"_count": 2}}, "let": {"_count": 2, "me": {"_count": 1}, "it": {"_count": 1}}, "times": {"_count": 1, "": {"_count": 1}}, "Merope": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 2, "arrest": {"_count": 1}, "extra": {"_count": 1}}, "Eloise": {"_count": 1, "Midgen": {"_count": 1}}, "also": {"_count": 1, "she": {"_count": 1}}, "er": {"_count": 1, "My": {"_count": 1}}, "theyd": {"_count": 1, "love": {"_count": 1}}, "Borgin": {"_count": 1, "just": {"_count": 1}}, "nothing": {"_count": 1, "I": {"_count": 1}}, "Vaisey": {"_count": 1, "off": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "please": {"_count": 1, "dont": {"_count": 1}}, "Morfin": {"_count": 1, "never": {"_count": 1}}, "her": {"_count": 1, "This": {"_count": 1}}, "maybe": {"_count": 1, "Voldemort": {"_count": 1}}, "\u2018augury": {"_count": 1, "doesnt": {"_count": 1}}, "Odo": {"_count": 1, "the": {"_count": 1}}, "isnt": {"_count": 1, "Voldemort": {"_count": 1}}, "obediently": {"_count": 1, "Dumbledore": {"_count": 1}}, "pulling": {"_count": 1, "Dumbledore": {"_count": 1}}, "youd": {"_count": 3, "turn": {"_count": 1}, "think": {"_count": 2}}, "although": {"_count": 1, "he": {"_count": 1}}, "yours": {"_count": 1, "Lucius": {"_count": 1}}, "under": {"_count": 1, "here": {"_count": 1}}, "Fleurs": {"_count": 1, "agreed": {"_count": 1}}, "had": {"_count": 1, "Dumbledore": {"_count": 1}}, "Grimmauld": {"_count": 1, "Place": {"_count": 1}}, "Master": {"_count": 2, "Regulus": {"_count": 2}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "bring": {"_count": 1, "him": {"_count": 1}}, "indeed": {"_count": 1, "it": {"_count": 1}}, "mine": {"_count": 1, "could": {"_count": 1}}, "tears": {"_count": 1, "came": {"_count": 1}}, "along": {"_count": 1, "a": {"_count": 1}}, "YOU": {"_count": 1, "": {"_count": 1}}, "Death": {"_count": 1, "most": {"_count": 1}}, "desire": {"_count": 1, "for": {"_count": 1}}, "apparently": {"_count": 1, "shes": {"_count": 1}}, "seconds": {"_count": 1, "later": {"_count": 1}}, "beside": {"_count": 1, "her": {"_count": 1}}, "Voldemorts": {"_count": 1, "fury": {"_count": 1}}, "shortly": {"_count": 1, "afterward": {"_count": 1}}, "YouKnowWho": {"_count": 1, "is": {"_count": 1}}, "Grindelwald": {"_count": 1, "used": {"_count": 1}}, "paid": {"_count": 1, "for": {"_count": 1}}, "another": {"_count": 1, "memory": {"_count": 1}}, "hurry": {"_count": 1, "we": {"_count": 1}}, "looking": {"_count": 1, "after": {"_count": 1}}, "Albus": {"_count": 1, "was": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Snargaluff": {"_count": 1, "pods": {"_count": 1}}, "wouldnt": {"_count": 1, "those": {"_count": 1}}, "Percy": {"_count": 1, "was": {"_count": 1}}, "Voldemort": {"_count": 3, "swiped": {"_count": 1}, "himself": {"_count": 1}, "never": {"_count": 1}}, "Severus": {"_count": 3, "Snape": {"_count": 1}, "if": {"_count": 1}, "be": {"_count": 1}}, "next": {"_count": 1, "Snape": {"_count": 1}}, "Ariana": {"_count": 1, "": {"_count": 1}}, "Voldys": {"_count": 1, "gone": {"_count": 1}}}, "hugged": {"_count": 26, "Mr": {"_count": 1, "Dursley": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "kissed": {"_count": 1}}, "her": {"_count": 5, "son": {"_count": 1}, "": {"_count": 3}, "then": {"_count": 1}}, "him": {"_count": 8, "": {"_count": 4}, "very": {"_count": 1}, "Lupin": {"_count": 1}, "after": {"_count": 1}, "tightly": {"_count": 1}}, "Harry": {"_count": 5, "in": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 1}, "gripping": {"_count": 1}, "the": {"_count": 1}}, "Ginny": {"_count": 2, "goodbye": {"_count": 1}, "but": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "Ron": {"_count": 1, "before": {"_count": 1}}, "pounded": {"_count": 1, "on": {"_count": 1}}}, "middle": {"_count": 157, "and": {"_count": 8, "walked": {"_count": 1}, "Harry": {"_count": 1}, "lift": {"_count": 1}, "threw": {"_count": 1}, "hugged": {"_count": 1}, "heaved": {"_count": 1}, "end": {"_count": 1}, "held": {"_count": 1}}, "of": {"_count": 124, "a": {"_count": 19}, "the": {"_count": 88}, "counting": {"_count": 1}, "their": {"_count": 1}, "middle": {"_count": 1}, "all": {"_count": 2}, "his": {"_count": 2}, "that": {"_count": 1}, "Grimmauld": {"_count": 2}, "it": {"_count": 2}, "July": {"_count": 1}, "The": {"_count": 1}, "which": {"_count": 1}, "its": {"_count": 1}, "them": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "fork": {"_count": 1, "right": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "nothing": {"_count": 1, "at": {"_count": 1}}, "one": {"_count": 1, "at": {"_count": 1}}, "glass": {"_count": 1, "and": {"_count": 1}}, "stall": {"_count": 1, "": {"_count": 1}}, "owl": {"_count": 1, "which": {"_count": 1}}, "finger": {"_count": 2, "because": {"_count": 1}, "waving": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "three": {"_count": 1, "of": {"_count": 1}}, "calling": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "it": {"_count": 1, "was": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "post": {"_count": 1, "": {"_count": 1}}, "o": {"_count": 1, "Diagon": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "partly": {"_count": 1, "obscured": {"_count": 1}}, "name": {"_count": 1, "": {"_count": 1}}}, "off": {"_count": 1829, "": {"_count": 156, ".": {"_count": 130}, "!": {"_count": 15}, "?": {"_count": 11}}, "for": {"_count": 59, "home": {"_count": 1}, "Filch": {"_count": 1}, "laughing": {"_count": 1}, "frightening": {"_count": 1}, "London": {"_count": 1}, "a": {"_count": 6}, "polishing": {"_count": 1}, "Professor": {"_count": 1}, "their": {"_count": 1}, "talking": {"_count": 1}, "us": {"_count": 2}, "trifles": {"_count": 1}, "the": {"_count": 16}, "not": {"_count": 1}, "North": {"_count": 1}, "Hogsmeade": {"_count": 1}, "that": {"_count": 1}, "your": {"_count": 1}, "going": {"_count": 1}, "Arithmancy": {"_count": 1}, "Hogwarts": {"_count": 1}, "giving": {"_count": 1}, "Umbridges": {"_count": 1}, "Friday": {"_count": 1}, "Binnss": {"_count": 1}, "playing": {"_count": 1}, "baths": {"_count": 1}, "Snape": {"_count": 1}, "Madam": {"_count": 1}, "Parkinson": {"_count": 2}, "Divination": {"_count": 1}, "it": {"_count": 2}, "school": {"_count": 1}, "Defense": {"_count": 1}, "distracting": {"_count": 1}, "his": {"_count": 1}}, "down": {"_count": 17, "the": {"_count": 15}, "a": {"_count": 1}, "Privet": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 293, "motorcycle": {"_count": 1}, "walls": {"_count": 10}, "giant": {"_count": 1}, "hall": {"_count": 4}, "spindly": {"_count": 1}, "train": {"_count": 4}, "cart": {"_count": 1}, "hat": {"_count": 4}, "end": {"_count": 3}, "zombie": {"_count": 1}, "fire": {"_count": 1}, "broom": {"_count": 3}, "desk": {"_count": 7}, "back": {"_count": 4}, "shelves": {"_count": 4}, "floor": {"_count": 9}, "cloak": {"_count": 10}, "field": {"_count": 1}, "path": {"_count": 3}, "stairs": {"_count": 1}, "key": {"_count": 1}, "board": {"_count": 4}, "pain": {"_count": 1}, "Stone": {"_count": 1}, "platform": {"_count": 1}, "spot": {"_count": 1}, "bed": {"_count": 10}, "kitchen": {"_count": 3}, "soot": {"_count": 1}, "evening": {"_count": 1}, "stone": {"_count": 3}, "cover": {"_count": 1}, "mark": {"_count": 2}, "Gryffindor": {"_count": 1}, "desks": {"_count": 1}, "subject": {"_count": 2}, "speed": {"_count": 1}, "stage": {"_count": 1}, "bathroom": {"_count": 1}, "Invisibility": {"_count": 17}, "ground": {"_count": 10}, "shadowy": {"_count": 1}, "pillars": {"_count": 1}, "wall": {"_count": 4}, "diary": {"_count": 1}, "very": {"_count": 1}, "parcel": {"_count": 1}, "brown": {"_count": 2}, "top": {"_count": 1}, "ceiling": {"_count": 2}, "Spellotape": {"_count": 1}, "glossy": {"_count": 1}, "last": {"_count": 1}, "sound": {"_count": 1}, "Snitch": {"_count": 2}, "bike": {"_count": 2}, "dementors": {"_count": 2}, "Frogs": {"_count": 2}, "lid": {"_count": 4}, "entrance": {"_count": 2}, "edge": {"_count": 1}, "rat": {"_count": 1}, "Hog": {"_count": 1}, "school": {"_count": 1}, "days": {"_count": 1}, "sideboard": {"_count": 1}, "Bulgarian": {"_count": 1}, "twins": {"_count": 1}, "plates": {"_count": 1}, "table": {"_count": 6}, "curse": {"_count": 2}, "Hall": {"_count": 3}, "Dark": {"_count": 1}, "Firebolt": {"_count": 1}, "slightly": {"_count": 1}, "beetle": {"_count": 1}, "surface": {"_count": 1}, "marble": {"_count": 1}, "chandelier": {"_count": 1}, "parchment": {"_count": 1}, "mermen": {"_count": 1}, "moving": {"_count": 1}, "spider": {"_count": 1}, "dustbins": {"_count": 1}, "stars": {"_count": 1}, "moment": {"_count": 3}, "letter": {"_count": 2}, "Chocolate": {"_count": 1}, "light": {"_count": 1}, "paper": {"_count": 2}, "woolly": {"_count": 1}, "lesson": {"_count": 1}, "dropping": {"_count": 1}, "morning": {"_count": 1}, "Imperius": {"_count": 1}, "handle": {"_count": 1}, "pitch": {"_count": 3}, "magic": {"_count": 1}, "Ravenclaw": {"_count": 1}, "dressings": {"_count": 1}, "pavement": {"_count": 1}, "bus": {"_count": 1}, "Astronomy": {"_count": 1}, "occasional": {"_count": 1}, "forest": {"_count": 1}, "whole": {"_count": 2}, "arrow": {"_count": 1}, "jar": {"_count": 1}, "front": {"_count": 1}, "dais": {"_count": 1}, "polished": {"_count": 1}, "suffocating": {"_count": 1}, "wrapper": {"_count": 1}, "sofa": {"_count": 3}, "feeling": {"_count": 2}, "shelf": {"_count": 1}, "Knut": {"_count": 1}, "dried": {"_count": 1}, "roof": {"_count": 1}, "main": {"_count": 1}, "horses": {"_count": 1}, "premises": {"_count": 1}, "frame": {"_count": 1}, "fork": {"_count": 1}, "names": {"_count": 1}, "second": {"_count": 1}, "team": {"_count": 3}, "Creevey": {"_count": 1}, "lamp": {"_count": 1}, "map": {"_count": 2}, "topmost": {"_count": 2}, "Refilling": {"_count": 1}, "rocky": {"_count": 2}, "vision": {"_count": 1}, "Mark": {"_count": 1}, "lane": {"_count": 1}, "scent": {"_count": 1}, "long": {"_count": 1}, "Death": {"_count": 1}, "farther": {"_count": 1}, "movement": {"_count": 1}, "little": {"_count": 1}, "locket": {"_count": 2}, "face": {"_count": 1}, "painted": {"_count": 1}, "Cloak": {"_count": 4}, "lights": {"_count": 1}, "surrounding": {"_count": 1}, "Horcrux": {"_count": 1}, "metal": {"_count": 1}, "fear": {"_count": 1}, "Caterwauling": {"_count": 1}, "plinth": {"_count": 1}, "Room": {"_count": 1}, "beaten": {"_count": 1}, "ridiculously": {"_count": 1}, "great": {"_count": 1}}, "ter": {"_count": 8, "live": {"_count": 1}, "Hogwarts": {"_count": 1}, "the": {"_count": 2}, "get": {"_count": 1}, "sleep": {"_count": 1}, "all": {"_count": 1}, "them": {"_count": 1}}, "into": {"_count": 36, "the": {"_count": 31}, "town": {"_count": 1}, "Muggle": {"_count": 1}, "a": {"_count": 2}, "Hogsmeade": {"_count": 1}}, "one": {"_count": 6, "of": {"_count": 3}, "shoulder": {"_count": 1}, "night": {"_count": 1}, "by": {"_count": 1}}, "a": {"_count": 42, "gold": {"_count": 1}, "funny": {"_count": 1}, "vampire": {"_count": 1}, "Greek": {"_count": 1}, "lurking": {"_count": 1}, "volley": {"_count": 1}, "loud": {"_count": 1}, "name": {"_count": 1}, "heavy": {"_count": 1}, "dusty": {"_count": 1}, "Dungbomb": {"_count": 2}, "chair": {"_count": 1}, "little": {"_count": 1}, "teacher": {"_count": 1}, "glacier": {"_count": 1}, "very": {"_count": 1}, "blast": {"_count": 1}, "stranger": {"_count": 1}, "month": {"_count": 1}, "flobberworm": {"_count": 2}, "small": {"_count": 1}, "large": {"_count": 2}, "fly": {"_count": 1}, "bit": {"_count": 2}, "foul": {"_count": 1}, "strong": {"_count": 1}, "highpitched": {"_count": 1}, "powerful": {"_count": 1}, "hot": {"_count": 1}, "load": {"_count": 1}, "fairground": {"_count": 1}, "really": {"_count": 1}, "hundred": {"_count": 2}, "trip": {"_count": 1}, "Quidditch": {"_count": 1}, "hex": {"_count": 1}, "stag": {"_count": 1}}, "his": {"_count": 156, "leg": {"_count": 1}, "thick": {"_count": 1}, "finger": {"_count": 1}, "head": {"_count": 5}, "neck": {"_count": 1}, "nerves": {"_count": 1}, "feelings": {"_count": 1}, "pillow": {"_count": 1}, "broom": {"_count": 19}, "misery": {"_count": 1}, "back": {"_count": 2}, "face": {"_count": 9}, "crown": {"_count": 1}, "feet": {"_count": 15}, "rocker": {"_count": 3}, "chair": {"_count": 7}, "bed": {"_count": 3}, "glasses": {"_count": 9}, "scrubbed": {"_count": 1}, "plumed": {"_count": 1}, "desk": {"_count": 2}, "horse": {"_count": 1}, "mind": {"_count": 1}, "shoes": {"_count": 3}, "old": {"_count": 1}, "bacon": {"_count": 1}, "pointed": {"_count": 1}, "broomstick": {"_count": 2}, "fourposter": {"_count": 1}, "stool": {"_count": 4}, "halfmoon": {"_count": 1}, "slimy": {"_count": 1}, "pinstriped": {"_count": 1}, "fathers": {"_count": 1}, "gloves": {"_count": 1}, "pouf": {"_count": 2}, "arms": {"_count": 1}, "bandages": {"_count": 1}, "robe": {"_count": 1}, "own": {"_count": 3}, "usual": {"_count": 1}, "cloak": {"_count": 3}, "black": {"_count": 1}, "hippogriffs": {"_count": 1}, "shabby": {"_count": 1}, "forehead": {"_count": 1}, "sneakers": {"_count": 1}, "seat": {"_count": 2}, "godfather": {"_count": 1}, "robes": {"_count": 5}, "ship": {"_count": 1}, "Firebolt": {"_count": 1}, "odd": {"_count": 1}, "pajamas": {"_count": 1}, "watch": {"_count": 1}, "nose": {"_count": 1}, "bomber": {"_count": 1}, "notes": {"_count": 1}, "traveling": {"_count": 1}, "bag": {"_count": 1}, "name": {"_count": 1}, "shoulder": {"_count": 1}, "peg": {"_count": 1}, "legs": {"_count": 2}, "thestral": {"_count": 1}, "mask": {"_count": 2}, "eyes": {"_count": 1}, "bruised": {"_count": 1}, "Invisibility": {"_count": 3}, "high": {"_count": 1}, "destination": {"_count": 1}, "dreadful": {"_count": 1}}, "to": {"_count": 119, "secondary": {"_count": 1}, "the": {"_count": 33}, "that": {"_count": 1}, "look": {"_count": 2}, "sit": {"_count": 1}, "sleep": {"_count": 5}, "Gryffindor": {"_count": 2}, "get": {"_count": 2}, "lunch": {"_count": 2}, "bed": {"_count": 9}, "examine": {"_count": 1}, "their": {"_count": 1}, "buy": {"_count": 1}, "Transfiguration": {"_count": 1}, "bully": {"_count": 1}, "play": {"_count": 1}, "check": {"_count": 1}, "your": {"_count": 2}, "class": {"_count": 1}, "his": {"_count": 1}, "join": {"_count": 3}, "find": {"_count": 6}, "come": {"_count": 1}, "do": {"_count": 2}, "lessons": {"_count": 2}, "her": {"_count": 1}, "Herbology": {"_count": 1}, "North": {"_count": 1}, "try": {"_count": 1}, "report": {"_count": 1}, "one": {"_count": 1}, "St": {"_count": 2}, "": {"_count": 2}, "say": {"_count": 1}, "see": {"_count": 2}, "Azkaban": {"_count": 4}, "London": {"_count": 1}, "comfort": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "Arithmancy": {"_count": 1}, "help": {"_count": 1}, "fetch": {"_count": 1}, "clear": {"_count": 1}, "Potions": {"_count": 1}, "Borgin": {"_count": 1}, "Hagrid": {"_count": 1}, "take": {"_count": 2}, "regrow": {"_count": 1}, "Muggle": {"_count": 1}, "Hogwarts": {"_count": 2}, "hang": {"_count": 1}, "where": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 19, "would": {"_count": 2}, "went": {"_count": 1}, "goes": {"_count": 1}, "murmured": {"_count": 1}, "was": {"_count": 2}, "reappeared": {"_count": 1}, "staggered": {"_count": 1}, "ought": {"_count": 1}, "got": {"_count": 6}, "caught": {"_count": 1}, "had": {"_count": 1}, "wanted": {"_count": 1}}, "they": {"_count": 5, "went": {"_count": 2}, "marched": {"_count": 1}, "reached": {"_count": 1}, "knew": {"_count": 1}}, "its": {"_count": 11, "hinges": {"_count": 4}, "leather": {"_count": 1}, "leg": {"_count": 1}, "chest": {"_count": 2}, "square": {"_count": 1}, "flanks": {"_count": 1}, "plinth": {"_count": 1}}, "without": {"_count": 6, "them": {"_count": 1}, "her": {"_count": 1}, "another": {"_count": 1}, "Grawp": {"_count": 1}, "giving": {"_count": 1}, "a": {"_count": 1}}, "him": {"_count": 22, "": {"_count": 9}, "into": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 2}, "at": {"_count": 1}, "and": {"_count": 4}, "Snape": {"_count": 1}, "then": {"_count": 1}, "Zabini": {"_count": 1}, "when": {"_count": 1}}, "through": {"_count": 14, "the": {"_count": 14}}, "Harry": {"_count": 11, "lots": {"_count": 1}, "so": {"_count": 1}, "gliding": {"_count": 1}, "its": {"_count": 1}, "reached": {"_count": 1}, "staggered": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "turned": {"_count": 1}, "heard": {"_count": 1}}, "toward": {"_count": 47, "land": {"_count": 1}, "the": {"_count": 35}, "Moaning": {"_count": 1}, "her": {"_count": 2}, "their": {"_count": 2}, "an": {"_count": 1}, "Flourish": {"_count": 1}, "Hagrids": {"_count": 1}, "Gryffindor": {"_count": 1}, "Tonkss": {"_count": 1}, "Hogwarts": {"_count": 1}}, "in": {"_count": 26, "his": {"_count": 1}, "the": {"_count": 12}, "all": {"_count": 1}, "a": {"_count": 2}, "search": {"_count": 1}, "four": {"_count": 1}, "midsentence": {"_count": 1}, "midconversation": {"_count": 1}, "her": {"_count": 1}, "my": {"_count": 1}, "Privet": {"_count": 1}, "completely": {"_count": 1}, "style": {"_count": 1}, "pursuit": {"_count": 1}}, "fer": {"_count": 1, "a": {"_count": 1}}, "another": {"_count": 5, "day": {"_count": 2}, "spectacular": {"_count": 1}, "stunning": {"_count": 1}, "giants": {"_count": 1}}, "them": {"_count": 4, "": {"_count": 3}, "but": {"_count": 1}}, "Houses": {"_count": 1, "": {"_count": 1}}, "explaining": {"_count": 1, "all": {"_count": 1}}, "on": {"_count": 17, "you": {"_count": 1}, "his": {"_count": 4}, "their": {"_count": 1}, "a": {"_count": 3}, "yer": {"_count": 1}, "top": {"_count": 1}, "the": {"_count": 3}, "Friday": {"_count": 2}, "your": {"_count": 1}}, "and": {"_count": 45, "hit": {"_count": 1}, "not": {"_count": 1}, "his": {"_count": 3}, "called": {"_count": 1}, "no": {"_count": 1}, "felt": {"_count": 1}, "they": {"_count": 1}, "glancing": {"_count": 1}, "he": {"_count": 3}, "the": {"_count": 2}, "Harry": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 1}, "shattered": {"_count": 1}, "MadEyes": {"_count": 1}, "climb": {"_count": 1}, "shes": {"_count": 1}, "flashing": {"_count": 1}, "stuck": {"_count": 1}, "read": {"_count": 1}, "told": {"_count": 2}, "who": {"_count": 1}, "cant": {"_count": 1}, "thats": {"_count": 1}, "I": {"_count": 2}, "listen": {"_count": 1}, "Filch": {"_count": 1}, "landed": {"_count": 2}, "make": {"_count": 1}, "rose": {"_count": 1}, "onto": {"_count": 1}, "we": {"_count": 1}, "walked": {"_count": 1}, "Id": {"_count": 1}, "vanished": {"_count": 1}, "with": {"_count": 1}, "set": {"_count": 1}}, "their": {"_count": 23, "jackets": {"_count": 1}, "shoulders": {"_count": 1}, "brooms": {"_count": 3}, "faces": {"_count": 1}, "wizard": {"_count": 1}, "sweaters": {"_count": 1}, "bags": {"_count": 1}, "broom": {"_count": 1}, "emotions": {"_count": 1}, "heads": {"_count": 1}, "heavy": {"_count": 1}, "cooking": {"_count": 1}, "chairs": {"_count": 2}, "cloaks": {"_count": 1}, "conversation": {"_count": 1}, "robes": {"_count": 2}, "conversations": {"_count": 1}, "mounts": {"_count": 1}, "feet": {"_count": 1}}, "all": {"_count": 9, "at": {"_count": 1}, "by": {"_count": 1}, "over": {"_count": 1}, "the": {"_count": 2}, "yer": {"_count": 1}, "year": {"_count": 1}, "summer": {"_count": 1}, "of": {"_count": 1}}, "still": {"_count": 2, "wearing": {"_count": 1}, "listening": {"_count": 1}}, "my": {"_count": 5, "guard": {"_count": 1}, "broom": {"_count": 2}, "hands": {"_count": 1}, "bed": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 2, "go": {"_count": 2}}, "again": {"_count": 34, "": {"_count": 15}, "so": {"_count": 1}, "the": {"_count": 2}, "fast": {"_count": 1}, "it": {"_count": 1}, "though": {"_count": 1}, "watching": {"_count": 1}, "Harry": {"_count": 1}, "clearly": {"_count": 1}, "as": {"_count": 1}, "swaying": {"_count": 1}, "around": {"_count": 1}, "leaving": {"_count": 2}, "until": {"_count": 1}, "his": {"_count": 1}, "for": {"_count": 1}, "eyes": {"_count": 1}, "ignoring": {"_count": 1}}, "Scabbers": {"_count": 3, "": {"_count": 1}, "for": {"_count": 2}}, "but": {"_count": 5, "it": {"_count": 2}, "Crookshanks": {"_count": 1}, "still": {"_count": 1}, "remained": {"_count": 1}}, "so": {"_count": 4, "would": {"_count": 1}, "suddenly": {"_count": 1}, "forcefully": {"_count": 1}, "that": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "from": {"_count": 12, "the": {"_count": 11}, "other": {"_count": 1}}, "hard": {"_count": 3, "before": {"_count": 1}, "from": {"_count": 2}}, "with": {"_count": 29, "Madam": {"_count": 1}, "a": {"_count": 9}, "Ginny": {"_count": 1}, "their": {"_count": 2}, "Ron": {"_count": 1}, "the": {"_count": 3}, "ruddy": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "light": {"_count": 1}, "Dumbledore": {"_count": 1}, "her": {"_count": 1}, "some": {"_count": 1}, "impunity": {"_count": 1}, "us": {"_count": 1}, "Hagrid": {"_count": 1}}, "that": {"_count": 4, "broom": {"_count": 2}, "way": {"_count": 1}, "time": {"_count": 1}}, "somewhere": {"_count": 2, "": {"_count": 1}, "He": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "chasing": {"_count": 1, "dragons": {"_count": 1}}, "or": {"_count": 4, "catch": {"_count": 1}, "shed": {"_count": 1}, "Harry": {"_count": 1}, "pretending": {"_count": 1}}, "when": {"_count": 10, "they": {"_count": 1}, "he": {"_count": 4}, "we": {"_count": 2}, "Hermione": {"_count": 1}, "I": {"_count": 1}, "youre": {"_count": 1}}, "Hermione": {"_count": 2, "s": {"_count": 2}}, "anyway": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 19, "the": {"_count": 18}, "adjacent": {"_count": 1}}, "she": {"_count": 5, "goes": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 1}, "couldnt": {"_count": 1}}, "course": {"_count": 7, "Harry": {"_count": 1}, "": {"_count": 4}, "avoiding": {"_count": 1}, "were": {"_count": 1}}, "ref": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 26, "": {"_count": 7}, "you": {"_count": 1}, "how": {"_count": 1}, "got": {"_count": 1}, "Miss": {"_count": 1}, "he": {"_count": 2}, "Harry": {"_count": 2}, "Amos": {"_count": 1}, "said": {"_count": 5}, "with": {"_count": 1}, "groaned": {"_count": 1}, "and": {"_count": 1}, "youve": {"_count": 1}, "Betty": {"_count": 1}}, "you": {"_count": 15, "": {"_count": 2}, "It": {"_count": 1}, "go": {"_count": 7}, "stinking": {"_count": 2}, "were": {"_count": 1}, "could": {"_count": 1}, "Hermione": {"_count": 1}}, "drawing": {"_count": 1, "the": {"_count": 1}}, "Gryffindor": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "wild": {"_count": 1, "ones": {"_count": 1}}, "Harrys": {"_count": 4, "Invisibility": {"_count": 1}, "face": {"_count": 1}, "neck": {"_count": 1}, "knees": {"_count": 1}}, "now": {"_count": 5, "itll": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "with": {"_count": 1}, "Ron": {"_count": 1}}, "across": {"_count": 10, "the": {"_count": 10}}, "then": {"_count": 3, "": {"_count": 3}}, "once": {"_count": 3, "hes": {"_count": 1}, "more": {"_count": 2}}, "properly": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "yesterday": {"_count": 1, "ter": {"_count": 1}}, "at": {"_count": 27, "any": {"_count": 2}, "full": {"_count": 2}, "a": {"_count": 14}, "the": {"_count": 5}, "Kings": {"_count": 1}, "angles": {"_count": 1}, "once": {"_count": 2}}, "until": {"_count": 3, "Wow": {"_count": 1}, "past": {"_count": 1}, "at": {"_count": 1}}, "\u2018Im": {"_count": 1, "very": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "together": {"_count": 4, "down": {"_count": 1}, "talking": {"_count": 1}, "toward": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 14, "Hagrid": {"_count": 2}, "Ron": {"_count": 3}, "Fred": {"_count": 1}, "Harry": {"_count": 3}, "Dobby": {"_count": 1}, "Lupin": {"_count": 1}, "Sirius": {"_count": 1}, "Dumbledore": {"_count": 1}, "Ginny": {"_count": 1}}, "more": {"_count": 3, "than": {"_count": 1}, "holiday": {"_count": 1}, "heads": {"_count": 1}}, "along": {"_count": 17, "the": {"_count": 15}, "one": {"_count": 1}, "a": {"_count": 1}}, "Nevilles": {"_count": 1, "head": {"_count": 1}}, "her": {"_count": 33, "hands": {"_count": 2}, "arms": {"_count": 1}, "chair": {"_count": 1}, "broom": {"_count": 2}, "stool": {"_count": 2}, "": {"_count": 3}, "wrist": {"_count": 1}, "looking": {"_count": 1}, "bench": {"_count": 1}, "cloak": {"_count": 3}, "jacket": {"_count": 1}, "stubby": {"_count": 1}, "feet": {"_count": 3}, "hood": {"_count": 1}, "traveling": {"_count": 1}, "for": {"_count": 1}, "potion": {"_count": 1}, "old": {"_count": 1}, "radish": {"_count": 1}, "own": {"_count": 1}, "frame": {"_count": 1}, "lap": {"_count": 1}, "tin": {"_count": 1}, "brotherinlaw": {"_count": 1}}, "back": {"_count": 14, "to": {"_count": 5}, "toward": {"_count": 3}, "down": {"_count": 2}, "up": {"_count": 2}, "across": {"_count": 1}, "the": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "those": {"_count": 2, "Cleansweep": {"_count": 1}, "spells": {"_count": 1}}, "around": {"_count": 12, "the": {"_count": 12}}, "shuddering": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 9, "the": {"_count": 3}, "his": {"_count": 1}, "themselves": {"_count": 1}, "lunchtime": {"_count": 1}, "Grawp": {"_count": 1}, "making": {"_count": 1}, "Griphook": {"_count": 1}}, "after": {"_count": 10, "a": {"_count": 1}, "Ron": {"_count": 2}, "I": {"_count": 1}, "the": {"_count": 2}, "Hagrid": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 2}}, "each": {"_count": 2, "other": {"_count": 2}}, "Justins": {"_count": 1, "head": {"_count": 1}}, "not": {"_count": 1, "egging": {"_count": 1}}, "students": {"_count": 1, "you": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoys": {"_count": 1}}, "dead": {"_count": 1, "twigs": {"_count": 1}}, "hitting": {"_count": 1, "more": {"_count": 1}}, "as": {"_count": 9, "they": {"_count": 1}, "long": {"_count": 1}, "he": {"_count": 3}, "a": {"_count": 1}, "Neville": {"_count": 1}, "Kingsley": {"_count": 1}, "yells": {"_count": 1}}, "patrol": {"_count": 1, "duty": {"_count": 1}}, "what": {"_count": 3, "have": {"_count": 1}, "seemed": {"_count": 1}, "little": {"_count": 1}}, "alone": {"_count": 2, "past": {"_count": 1}, "again": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "plenty": {"_count": 1, "to": {"_count": 1}}, "does": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 4, "morning": {"_count": 1}, "landing": {"_count": 1}, "particular": {"_count": 1}, "battle": {"_count": 1}}, "our": {"_count": 2, "regular": {"_count": 1}, "faces": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}, "your": {"_count": 11, "seats": {"_count": 1}, "knickers": {"_count": 1}, "cloak": {"_count": 1}, "broom": {"_count": 1}, "rocker": {"_count": 1}, "broomstick": {"_count": 1}, "last": {"_count": 1}, "bed": {"_count": 1}, "Invisibility": {"_count": 1}, "hands": {"_count": 1}, "many": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "worse": {"_count": 1, "": {"_count": 1}}, "homework": {"_count": 1, "today": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "names": {"_count": 2, "against": {"_count": 1}, "": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "Yeh": {"_count": 1, "don": {"_count": 1}}, "oh": {"_count": 1, "no": {"_count": 1}}, "looking": {"_count": 5, "awkward": {"_count": 1}, "rather": {"_count": 2}, "inquiringly": {"_count": 1}, "out": {"_count": 1}}, "moren": {"_count": 1, "she": {"_count": 1}}, "before": {"_count": 4, "Snape": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 2, "dear": {"_count": 1}, "hes": {"_count": 1}}, "silently": {"_count": 1, "around": {"_count": 1}}, "himself": {"_count": 5, "and": {"_count": 2}, "": {"_count": 1}, "raised": {"_count": 1}, "as": {"_count": 1}}, "bentbacked": {"_count": 1, "after": {"_count": 1}}, "entirely": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 6, "Harry": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 3}, "get": {"_count": 1}}, "Pettigrew": {"_count": 1, "attacked": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}, "eckeltricity": {"_count": 1, "do": {"_count": 1}}, "upstairs": {"_count": 3, "again": {"_count": 1}, "": {"_count": 1}, "Kreacher": {"_count": 1}}, "easy": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 2, "you": {"_count": 2}}, "old": {"_count": 1, "Dracos": {"_count": 1}}, "abruptly": {"_count": 1, "and": {"_count": 1}}, "tree": {"_count": 1, "trunks": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "if": {"_count": 4, "Rita": {"_count": 1}, "you": {"_count": 3}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "unexpectedly": {"_count": 1, "when": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "about": {"_count": 2, "something": {"_count": 1}, "a": {"_count": 1}}, "dangling": {"_count": 1, "on": {"_count": 1}}, "lost": {"_count": 1, "in": {"_count": 1}}, "streaking": {"_count": 1, "toward": {"_count": 1}}, "while": {"_count": 4, "he": {"_count": 1}, "Hermione": {"_count": 1}, "Im": {"_count": 1}, "the": {"_count": 1}}, "worst": {"_count": 1, "in": {"_count": 1}}, "Siriuss": {"_count": 2, "reply": {"_count": 2}}, "hang": {"_count": 1, "on": {"_count": 1}}, "crumpled": {"_count": 1, "it": {"_count": 1}}, "slightly": {"_count": 1, "now": {"_count": 1}}, "any": {"_count": 1, "Dungbombs": {"_count": 1}}, "shrugging": {"_count": 1, "": {"_count": 1}}, "Arithmancy": {"_count": 1, "and": {"_count": 1}}, "some": {"_count": 2, "Filibusters": {"_count": 1}, "first": {"_count": 1}}, "Professor": {"_count": 2, "Vector": {"_count": 1}, "": {"_count": 1}}, "delivering": {"_count": 1, "a": {"_count": 1}}, "Pigwidgeons": {"_count": 1, "leg": {"_count": 1}}, "downstairs": {"_count": 4, "": {"_count": 1}, "again": {"_count": 1}, "after": {"_count": 1}, "Hedwig": {"_count": 1}}, "out": {"_count": 2, "into": {"_count": 1}, "of": {"_count": 1}}, "Fang": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "particularly": {"_count": 1, "enjoying": {"_count": 1}}, "Shut": {"_count": 1, "up": {"_count": 1}}, "Snape": {"_count": 3, "": {"_count": 2}, "who": {"_count": 1}}, "dyou": {"_count": 1, "know": {"_count": 1}}, "target": {"_count": 1, "": {"_count": 1}}, "food": {"_count": 1, "again": {"_count": 1}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "ouch": {"_count": 1, "Harry": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "rats": {"_count": 2, "mostly": {"_count": 1}, "": {"_count": 1}}, "work": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "inside": {"_count": 1, "them": {"_count": 1}}, "every": {"_count": 3, "person": {"_count": 1}, "week": {"_count": 1}, "night": {"_count": 1}}, "burning": {"_count": 1, "heat": {"_count": 1}}, "ever": {"_count": 2, "since": {"_count": 2}}, "Bagman": {"_count": 1, "as": {"_count": 1}}, "dementors": {"_count": 1, "": {"_count": 1}}, "buying": {"_count": 1, "stolen": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "dementors": {"_count": 1}}, "hunting": {"_count": 1, "her": {"_count": 1}}, "immediately": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "though": {"_count": 2, "muttered": {"_count": 1}, "eh": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "duty": {"_count": 1, "when": {"_count": 1}}, "quite": {"_count": 1, "the": {"_count": 1}}, "early": {"_count": 1, "otherwise": {"_count": 1}}, "here": {"_count": 1, "too": {"_count": 1}}, "there": {"_count": 1, "than": {"_count": 1}}, "briskly": {"_count": 1, "around": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "Thats": {"_count": 2, "enough": {"_count": 2}}, "Be": {"_count": 1, "quiet": {"_count": 1}}, "Rons": {"_count": 3, "face": {"_count": 1}, "bunk": {"_count": 1}, "rucksack": {"_count": 1}}, "than": {"_count": 1, "we": {"_count": 1}}, "instantly": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 3, "aura": {"_count": 1}, "found": {"_count": 1}, "irksome": {"_count": 1}}, "buildings": {"_count": 1, "hes": {"_count": 1}}, "lessons": {"_count": 1, "": {"_count": 1}}, "guard": {"_count": 1, "after": {"_count": 1}}, "feeling": {"_count": 1, "both": {"_count": 1}}, "answers": {"_count": 1, "to": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "YouKnowWho": {"_count": 1, "again": {"_count": 1}}, "meeting": {"_count": 1, "them": {"_count": 1}}, "Divination": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}, "is": {"_count": 1, "organize": {"_count": 1}}, "Filch": {"_count": 1, "let": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinsons": {"_count": 1}}, "past": {"_count": 2, "Spinnet": {"_count": 1}, "him": {"_count": 1}}, "themselves": {"_count": 1, "so": {"_count": 1}}, "righ": {"_count": 1, "after": {"_count": 1}}, "following": {"_count": 1, "GrubblyPlanks": {"_count": 1}}, "tell": {"_count": 1, "her": {"_count": 1}}, "He": {"_count": 1, "hopped": {"_count": 1}}, "Id": {"_count": 1, "be": {"_count": 1}}, "Dad": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "sneaked": {"_count": 1}}, "unnoticed": {"_count": 1, "when": {"_count": 1}}, "first": {"_count": 1, "though": {"_count": 1}}, "em": {"_count": 1, "next": {"_count": 1}}, "chance": {"_count": 1, "that": {"_count": 1}}, "Umbridge": {"_count": 1, "about": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "cooling": {"_count": 1, "their": {"_count": 1}}, "Snivellys": {"_count": 1, "pants": {"_count": 1}}, "Snapes": {"_count": 1, "pants": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "better": {"_count": 1, "for": {"_count": 1}}, "Garroting": {"_count": 1, "Gas": {"_count": 1}}, "accidentally": {"_count": 1, "": {"_count": 1}}, "home": {"_count": 1, "will": {"_count": 1}}, "scrambling": {"_count": 1, "up": {"_count": 1}}, "Why": {"_count": 1, "": {"_count": 1}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "lampposts": {"_count": 1, "bent": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "Bellatrix": {"_count": 1, "couldnt": {"_count": 1}}, "Voldemort": {"_count": 2, "": {"_count": 1}, "while": {"_count": 1}}, "large": {"_count": 1, "invisible": {"_count": 1}}, "Malfoys": {"_count": 2, "forehead": {"_count": 1}, "restraining": {"_count": 1}}, "fighting": {"_count": 1, "Voldemort": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "Ive": {"_count": 1, "prepared": {"_count": 1}}, "Mundunguss": {"_count": 1, "throat": {"_count": 1}}, "replacing": {"_count": 1, "Katie": {"_count": 1}}, "sick": {"_count": 1, "too": {"_count": 1}}, "behind": {"_count": 1, "Hermione": {"_count": 1}}, "lately": {"_count": 1, "she": {"_count": 1}}, "Hagrids": {"_count": 1, "and": {"_count": 1}}, "Kreacher": {"_count": 1, "or": {"_count": 1}}, "Gulping": {"_count": 1, "Plimpies": {"_count": 1}}, "Voldemorts": {"_count": 1, "long": {"_count": 1}}, "doing": {"_count": 2, "our": {"_count": 1}, "whatever": {"_count": 1}}, "hurrying": {"_count": 1, "back": {"_count": 1}}, "balance": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "using": {"_count": 1, "your": {"_count": 1}}, "everywhere": {"_count": 1, "Harry": {"_count": 1}}, "jinxes": {"_count": 1, "all": {"_count": 1}}, "saying": {"_count": 1, "the": {"_count": 1}}, "todays": {"_count": 1, "Prophet": {"_count": 1}}, "recollections": {"_count": 1, "of": {"_count": 1}}, "fear": {"_count": 1, "and": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "midges": {"_count": 1, "": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "Ariana": {"_count": 1, "How": {"_count": 1}}, "call": {"_count": 1, "im": {"_count": 1}}, "e": {"_count": 1, "should": {"_count": 1}}, "peoples": {"_count": 1, "ears": {"_count": 1}}, "This": {"_count": 1, "is": {"_count": 1}}, "sorry": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "after": {"_count": 1}}, "cloaks": {"_count": 1, "when": {"_count": 1}}, "Greybacks": {"_count": 1, "hand": {"_count": 1}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "gathering": {"_count": 1, "speed": {"_count": 1}}, "defenses": {"_count": 1, "against": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "fast": {"_count": 1, "Then": {"_count": 1}}, "country": {"_count": 1, "he": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "stood": {"_count": 593, "rooted": {"_count": 5, "to": {"_count": 4}, "on": {"_count": 1}}, "and": {"_count": 14, "looked": {"_count": 2}, "was": {"_count": 1}, "then": {"_count": 1}, "watched": {"_count": 2}, "the": {"_count": 1}, "raised": {"_count": 2}, "threw": {"_count": 1}, "swept": {"_count": 1}, "Harrys": {"_count": 1}, "almost": {"_count": 1}, "Harry": {"_count": 1}}, "with": {"_count": 9, "his": {"_count": 4}, "their": {"_count": 1}, "the": {"_count": 1}, "clipboards": {"_count": 1}, "her": {"_count": 1}, "two": {"_count": 1}}, "a": {"_count": 17, "chance": {"_count": 2}, "massive": {"_count": 1}, "weird": {"_count": 1}, "very": {"_count": 1}, "little": {"_count": 3}, "few": {"_count": 1}, "small": {"_count": 1}, "short": {"_count": 2}, "stone": {"_count": 1}, "tall": {"_count": 2}, "boy": {"_count": 1}, "large": {"_count": 1}}, "up": {"_count": 106, "to": {"_count": 6}, "": {"_count": 32}, "her": {"_count": 2}, "glaring": {"_count": 1}, "walked": {"_count": 2}, "stretched": {"_count": 1}, "once": {"_count": 1}, "so": {"_count": 3}, "took": {"_count": 1}, "and": {"_count": 17}, "looking": {"_count": 2}, "crammed": {"_count": 1}, "an": {"_count": 1}, "surveying": {"_count": 1}, "his": {"_count": 2}, "on": {"_count": 1}, "again": {"_count": 5}, "for": {"_count": 2}, "noticing": {"_count": 1}, "very": {"_count": 2}, "sputtering": {"_count": 1}, "shaking": {"_count": 1}, "at": {"_count": 4}, "straightened": {"_count": 1}, "nostrils": {"_count": 1}, "hastily": {"_count": 1}, "they": {"_count": 1}, "too": {"_count": 2}, "rather": {"_count": 1}, "slowly": {"_count": 1}, "murmured": {"_count": 1}, "however": {"_count": 1}, "swaying": {"_count": 2}, "he": {"_count": 2}, "she": {"_count": 1}, "tall": {"_count": 1}}, "blinking": {"_count": 1, "in": {"_count": 1}}, "Harry": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 25, "the": {"_count": 6}, "tiptoe": {"_count": 3}, "spindlelegged": {"_count": 1}, "end": {"_count": 1}, "a": {"_count": 5}, "his": {"_count": 3}, "this": {"_count": 1}, "its": {"_count": 2}, "spindle": {"_count": 1}, "either": {"_count": 1}, "saucers": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 25}}, "there": {"_count": 48, "": {"_count": 3}, "in": {"_count": 8}, "he": {"_count": 2}, "panicking": {"_count": 1}, "the": {"_count": 1}, "fury": {"_count": 1}, "an": {"_count": 1}, "and": {"_count": 1}, "gazing": {"_count": 1}, "flooded": {"_count": 1}, "massaging": {"_count": 1}, "with": {"_count": 2}, "feeling": {"_count": 2}, "paralyzed": {"_count": 1}, "hand": {"_count": 1}, "seething": {"_count": 1}, "shaking": {"_count": 1}, "rocking": {"_count": 1}, "looking": {"_count": 5}, "waiting": {"_count": 2}, "quite": {"_count": 1}, "breathing": {"_count": 1}, "for": {"_count": 1}, "staring": {"_count": 1}, "listening": {"_count": 2}, "shaken": {"_count": 1}, "holding": {"_count": 1}, "shivering": {"_count": 1}, "his": {"_count": 1}, "but": {"_count": 1}}, "alone": {"_count": 5, "by": {"_count": 1}, "in": {"_count": 3}, "on": {"_count": 1}}, "in": {"_count": 29, "the": {"_count": 19}, "front": {"_count": 3}, "his": {"_count": 1}, "two": {"_count": 1}, "silence": {"_count": 2}, "groups": {"_count": 1}, "Dumbledores": {"_count": 1}, "sharp": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "ajar": {"_count": 7, "to": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 2}, "and": {"_count": 1}, "revealing": {"_count": 1}}, "quite": {"_count": 11, "still": {"_count": 11}}, "Snape": {"_count": 2, "but": {"_count": 1}, "his": {"_count": 1}}, "by": {"_count": 1, "him": {"_count": 1}}, "looking": {"_count": 4, "at": {"_count": 3}, "across": {"_count": 1}}, "transfixed": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "by": {"_count": 1}}, "out": {"_count": 7, "livid": {"_count": 1}, "horribly": {"_count": 1}, "particularly": {"_count": 1}, "so": {"_count": 1}, "of": {"_count": 1}, "white": {"_count": 1}, "grayish": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 1}, "Marge": {"_count": 1}}, "tonights": {"_count": 1, "pudding": {"_count": 1}}, "framed": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 10, "the": {"_count": 9}, "her": {"_count": 1}}, "the": {"_count": 7, "many": {"_count": 1}, "headmaster": {"_count": 1}, "only": {"_count": 1}, "hundred": {"_count": 1}, "cupboard": {"_count": 1}, "child": {"_count": 1}, "remaining": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "stunned": {"_count": 1, "for": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "shoulder": {"_count": 3, "to": {"_count": 3}}, "came": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 14, "": {"_count": 3}, "to": {"_count": 8}, "and": {"_count": 1}, "for": {"_count": 1}, "then": {"_count": 1}}, "against": {"_count": 3, "the": {"_count": 3}}, "steaming": {"_count": 1, "between": {"_count": 1}}, "brass": {"_count": 1, "scales": {"_count": 1}}, "ready": {"_count": 1, "on": {"_count": 1}}, "still": {"_count": 1, "their": {"_count": 1}}, "shaking": {"_count": 2, "as": {"_count": 1}, "in": {"_count": 1}}, "irresolute": {"_count": 2, "trying": {"_count": 1}, "in": {"_count": 1}}, "standing": {"_count": 1, "guard": {"_count": 1}}, "hidden": {"_count": 2, "": {"_count": 1}, "oh": {"_count": 1}}, "his": {"_count": 3, "ground": {"_count": 3}}, "terrified": {"_count": 1, "waiting": {"_count": 1}}, "open": {"_count": 9, "on": {"_count": 1}, "at": {"_count": 2}, "leading": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "ahead": {"_count": 1}, "Ron": {"_count": 1}}, "aside": {"_count": 4, "as": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 2}}, "listening": {"_count": 3, "to": {"_count": 2}, "carefully": {"_count": 1}}, "tense": {"_count": 1, "waiting": {"_count": 1}}, "for": {"_count": 7, "a": {"_count": 6}, "": {"_count": 1}}, "frozen": {"_count": 5, "staring": {"_count": 1}, "there": {"_count": 1}, "glaring": {"_count": 1}, "quite": {"_count": 1}, "": {"_count": 1}}, "beside": {"_count": 11, "the": {"_count": 3}, "a": {"_count": 2}, "it": {"_count": 1}, "her": {"_count": 1}, "Fawkess": {"_count": 1}, "them": {"_count": 2}, "him": {"_count": 1}}, "was": {"_count": 3, "a": {"_count": 1}, "moving": {"_count": 1}, "ripped": {"_count": 1}}, "glaring": {"_count": 1, "until": {"_count": 1}}, "themselves": {"_count": 1, "against": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "next": {"_count": 3, "to": {"_count": 3}}, "staring": {"_count": 5, "after": {"_count": 2}, "at": {"_count": 3}}, "flabbergasted": {"_count": 1, "as": {"_count": 1}}, "waiting": {"_count": 10, "with": {"_count": 1}, "for": {"_count": 5}, "": {"_count": 1}, "panting": {"_count": 1}, "in": {"_count": 1}, "still": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "one": {"_count": 1}, "refill": {"_count": 1}}, "over": {"_count": 4, "them": {"_count": 2}, "there": {"_count": 1}, "it": {"_count": 1}}, "before": {"_count": 11, "Frank": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 1}, "them": {"_count": 5}, "the": {"_count": 1}, "Snape": {"_count": 1}}, "an": {"_count": 3, "extravagant": {"_count": 1}, "object": {"_count": 1}, "old": {"_count": 1}}, "three": {"_count": 1, "goal": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "shivering": {"_count": 1, "slightly": {"_count": 1}}, "balanced": {"_count": 1, "on": {"_count": 1}}, "scowling": {"_count": 1, "with": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "near": {"_count": 2, "the": {"_count": 1}, "enough": {"_count": 1}}, "nervously": {"_count": 1, "between": {"_count": 1}}, "their": {"_count": 1, "noses": {"_count": 1}}, "straight": {"_count": 1, "again": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 1}, "except": {"_count": 1}}, "very": {"_count": 1, "still": {"_count": 1}}, "watching": {"_count": 6, "twenty": {"_count": 1}, "": {"_count": 2}, "him": {"_count": 1}, "anxiously": {"_count": 1}, "them": {"_count": 1}}, "beaming": {"_count": 2, "at": {"_count": 1}, "up": {"_count": 1}}, "surveying": {"_count": 1, "it": {"_count": 1}}, "were": {"_count": 1, "filled": {"_count": 1}}, "between": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "dusty": {"_count": 1, "in": {"_count": 1}}, "stockstill": {"_count": 1, "turning": {"_count": 1}}, "trembling": {"_count": 1, "in": {"_count": 1}}, "empty": {"_count": 2, "on": {"_count": 1}, "he": {"_count": 1}}, "facing": {"_count": 8, "his": {"_count": 1}, "him": {"_count": 2}, "them": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 1}, "each": {"_count": 1}, "not": {"_count": 1}}, "motionless": {"_count": 1, "staring": {"_count": 1}}, "nearest": {"_count": 1, "to": {"_count": 1}}, "behind": {"_count": 2, "wrought": {"_count": 1}, "them": {"_count": 1}}, "nearby": {"_count": 2, "": {"_count": 2}}, "belching": {"_count": 2, "sooty": {"_count": 1}, "steam": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "firm": {"_count": 1, "behind": {"_count": 1}}, "panting": {"_count": 2, "and": {"_count": 1}, "slightly": {"_count": 1}}, "again": {"_count": 3, "in": {"_count": 2}, "upon": {"_count": 1}}, "sandwiched": {"_count": 1, "between": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "pressed": {"_count": 1, "against": {"_count": 1}}, "so": {"_count": 2, "closely": {"_count": 1}, "near": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "then": {"_count": 1, "one": {"_count": 1}}, "directly": {"_count": 1, "over": {"_count": 1}}, "Firenze": {"_count": 1, "": {"_count": 1}}, "rigidly": {"_count": 1, "beside": {"_count": 1}}, "drunkenly": {"_count": 1, "again": {"_count": 1}}, "is": {"_count": 1, "Harry": {"_count": 1}}, "less": {"_count": 1, "chance": {"_count": 1}}, "buffeted": {"_count": 1, "by": {"_count": 1}}, "muttering": {"_count": 1, "to": {"_count": 1}}, "limply": {"_count": 1, "by": {"_count": 1}}, "now": {"_count": 2, "than": {"_count": 1}, "in": {"_count": 1}}, "grouped": {"_count": 2, "around": {"_count": 1}, "together": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "just": {"_count": 1, "behind": {"_count": 1}}, "Mr": {"_count": 1, "and": {"_count": 1}}, "apparently": {"_count": 1, "rooted": {"_count": 1}}, "Harrys": {"_count": 2, "aunt": {"_count": 1}, "school": {"_count": 1}}, "right": {"_count": 1, "beside": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "Hagrid": {"_count": 1, "glowering": {"_count": 1}}, "Ron": {"_count": 2, "wrapped": {"_count": 1}, "fully": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "pokerstraight": {"_count": 1, "and": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "invisible": {"_count": 2, "": {"_count": 1}, "torn": {"_count": 1}}, "it": {"_count": 2, "on": {"_count": 1}, "either": {"_count": 1}}, "sentry": {"_count": 1, "": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "imprisoned": {"_count": 1, "within": {"_count": 1}}, "huddled": {"_count": 1, "against": {"_count": 1}}, "chatting": {"_count": 1, "to": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}, "Pettigrew": {"_count": 1, "more": {"_count": 1}}, "silent": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "faceless": {"_count": 1}}, "sentinel": {"_count": 2, "before": {"_count": 1}, "on": {"_count": 1}}, "hugging": {"_count": 1, "herself": {"_count": 1}}, "The": {"_count": 1, "dark": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "Xenophilius": {"_count": 1, "Lovegood": {"_count": 1}}, "rigid": {"_count": 1, "clutching": {"_count": 1}}, "feet": {"_count": 1, "from": {"_count": 1}}, "towering": {"_count": 1, "over": {"_count": 1}}, "swaying": {"_count": 1, "in": {"_count": 1}}, "Disoriented": {"_count": 1, "he": {"_count": 1}}, "Lupin": {"_count": 1, "Fred": {"_count": 1}}, "blocking": {"_count": 1, "the": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "far": {"_count": 1, "far": {"_count": 1}}, "but": {"_count": 2, "inside": {"_count": 1}, "his": {"_count": 1}}, "braced": {"_count": 1, "looking": {"_count": 1}}, "shudder": {"_count": 1, "": {"_count": 1}}, "lopsided": {"_count": 1, "looking": {"_count": 1}}}, "rooted": {"_count": 12, "to": {"_count": 11, "the": {"_count": 11}}, "on": {"_count": 1, "the": {"_count": 1}}}, "spot": {"_count": 145, "": {"_count": 24, ".": {"_count": 21}, "!": {"_count": 1}, "?": {"_count": 2}}, "with": {"_count": 4, "his": {"_count": 2}, "excitement": {"_count": 1}, "Griphook": {"_count": 1}}, "trouble": {"_count": 1, "quicker": {"_count": 1}}, "and": {"_count": 12, "then": {"_count": 1}, "gave": {"_count": 1}, "settled": {"_count": 1}, "exchanged": {"_count": 1}, "vanished": {"_count": 3}, "marched": {"_count": 1}, "watched": {"_count": 1}, "she": {"_count": 1}, "run": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 3, "Filch": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "of": {"_count": 7, "silverblue": {"_count": 1}, "bother": {"_count": 2}, "trouble": {"_count": 1}, "Muggletorture": {"_count": 1}, "last": {"_count": 1}, "supper": {"_count": 1}}, "where": {"_count": 14, "they": {"_count": 1}, "she": {"_count": 1}, "Mrs": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 2}, "hes": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 1}, "Harry": {"_count": 2}, "Fred": {"_count": 1}, "Dobby": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "gouging": {"_count": 1}}, "on": {"_count": 8, "her": {"_count": 3}, "a": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 1}}, "more": {"_count": 2, "brandy": {"_count": 1}, "hex": {"_count": 1}}, "staring": {"_count": 1, "wildly": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "some": {"_count": 1, "six": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "listening": {"_count": 1, "with": {"_count": 1}}, "furiously": {"_count": 1, "looking": {"_count": 1}}, "to": {"_count": 5, "another": {"_count": 1}, "face": {"_count": 1}, "ensure": {"_count": 1}, "see": {"_count": 1}, "Disapparate": {"_count": 1}}, "a": {"_count": 3, "Mudblood": {"_count": 1}, "gaping": {"_count": 1}, "foot": {"_count": 1}}, "goggling": {"_count": 1, "upward": {"_count": 1}}, "them": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 4, "real": {"_count": 1}, "Marauders": {"_count": 1}, "map": {"_count": 1}, "source": {"_count": 1}}, "that": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "Malfoy": {"_count": 1}}, "Parvati": {"_count": 1, "was": {"_count": 1}}, "an": {"_count": 1, "Aqua": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "patterns": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 3, "face": {"_count": 1}, "hand": {"_count": 1}, "wand": {"_count": 1}}, "once": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "the": {"_count": 1}}, "yours": {"_count": 1, "truly": {"_count": 1}}, "her": {"_count": 1, "chest": {"_count": 1}}, "sending": {"_count": 1, "those": {"_count": 1}}, "but": {"_count": 2, "sometimes": {"_count": 1}, "there": {"_count": 1}}, "openmouthed": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 2, "a": {"_count": 1}, "seemed": {"_count": 1}}, "you": {"_count": 1, "bringing": {"_count": 1}}, "Harry": {"_count": 1, "now": {"_count": 1}}, "giving": {"_count": 1, "details": {"_count": 1}}, "feeling": {"_count": 1, "your": {"_count": 1}}, "lost": {"_count": 1, "balance": {"_count": 1}}, "again": {"_count": 1, "amidst": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "Ron": {"_count": 1}}, "he": {"_count": 2, "found": {"_count": 1}, "raised": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "evidently": {"_count": 1, "concentrating": {"_count": 1}}, "until": {"_count": 1, "finally": {"_count": 1}}, "several": {"_count": 1, "feet": {"_count": 1}}, "quite": {"_count": 1, "alone": {"_count": 1}}, "sight": {"_count": 1, "and": {"_count": 1}}, "traveling": {"_count": 1, "by": {"_count": 1}}, "only": {"_count": 1, "because": {"_count": 1}}, "or": {"_count": 1, "was": {"_count": 1}}, "looking": {"_count": 1, "abnormally": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "Ravenclaws": {"_count": 1, "symbol": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "roaring": {"_count": 1, "with": {"_count": 1}}}, "complete": {"_count": 66, "stranger": {"_count": 1, "": {"_count": 1}}, "silence": {"_count": 4, "": {"_count": 1}, "now": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}}, "confusion": {"_count": 1, "": {"_count": 1}}, "secret": {"_count": 1, "so": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "shock": {"_count": 1, "on": {"_count": 1}}, "waste": {"_count": 3, "of": {"_count": 3}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "lunatic": {"_count": 1, "said": {"_count": 1}}, "your": {"_count": 1, "shopping": {"_count": 1}}, "confidence": {"_count": 2, "in": {"_count": 1}, "I": {"_count": 1}}, "disarray": {"_count": 2, "the": {"_count": 1}, "as": {"_count": 1}}, "absence": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 5, "birdbath": {"_count": 1}, "bathroom": {"_count": 2}, "a": {"_count": 1}, "knife": {"_count": 1}}, "nonentity": {"_count": 1, "isnt": {"_count": 1}}, "the": {"_count": 5, "tasks": {"_count": 1}, "picture": {"_count": 1}, "ominous": {"_count": 1}, "spell": {"_count": 1}, "sentence": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "honesty": {"_count": 1, "this": {"_count": 1}}, "disbelief": {"_count": 1, "": {"_count": 1}}, "unreality": {"_count": 1, "were": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "cow": {"_count": 1, "Pansy": {"_count": 1}}, "darkness": {"_count": 1, "": {"_count": 1}}, "loss": {"_count": 4, "for": {"_count": 2}, "to": {"_count": 1}, "after": {"_count": 1}}, "inability": {"_count": 1, "to": {"_count": 1}}, "fiasco": {"_count": 1, "now": {"_count": 1}}, "rubbish": {"_count": 1, "without": {"_count": 1}}, "Harrys": {"_count": 1, "happiness": {"_count": 1}}, "indifference": {"_count": 1, "": {"_count": 1}}, "stillness": {"_count": 1, "of": {"_count": 1}}, "journeys": {"_count": 1, "before": {"_count": 1}}, "this": {"_count": 1, "vision": {"_count": 1}}, "my": {"_count": 1, "education": {"_count": 1}}, "halt": {"_count": 1, "": {"_count": 1}}, "novices": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "Transfiguration": {"_count": 1}}, "odds": {"_count": 1, "with": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "for": {"_count": 1}}, "it": {"_count": 1, "Harry": {"_count": 1}}, "opposite": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "arse": {"_count": 1, "Ronald": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "faith": {"_count": 1, "in": {"_count": 1}}}, "stranger": {"_count": 30, "": {"_count": 6, ".": {"_count": 6}}, "but": {"_count": 1, "take": {"_count": 1}}, "turns": {"_count": 1, "up": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 2, "rumpled": {"_count": 1}, "spoken": {"_count": 1}}, "was": {"_count": 3, "wearing": {"_count": 1}, "speaking": {"_count": 1}, "making": {"_count": 1}}, "group": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "darkhaired": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 2, "pain": {"_count": 1}, "him": {"_count": 1}}, "suddenly": {"_count": 1, "brightly": {"_count": 1}}, "reached": {"_count": 1, "Dumbledore": {"_count": 1}}, "who": {"_count": 1, "shook": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "kept": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "rounded": {"_count": 1}}, "speaking": {"_count": 1, "": {"_count": 1}}, "standing": {"_count": 1, "nearest": {"_count": 1}}}, "Muggle": {"_count": 253, "whatever": {"_count": 1, "that": {"_count": 1}}, "clothes": {"_count": 3, "swapping": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "sweet": {"_count": 1, "Im": {"_count": 1}}, "like": {"_count": 2, "you": {"_count": 2}}, "said": {"_count": 4, "Hagrid": {"_count": 1}, "the": {"_count": 2}, "Morfin": {"_count": 1}}, "money": {"_count": 7, "as": {"_count": 1}, "": {"_count": 2}, "either": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "families": {"_count": 3, "shouldnt": {"_count": 1}, "and": {"_count": 2}}, "family": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "world": {"_count": 9, "everyone": {"_count": 1}, "except": {"_count": 1}, "people": {"_count": 1}, "": {"_count": 4}, "with": {"_count": 1}, "its": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 8}, "!": {"_count": 3}, "?": {"_count": 4}}, "for": {"_count": 3, "ages": {"_count": 1}, "he": {"_count": 1}, "several": {"_count": 1}}, "children": {"_count": 1, "blew": {"_count": 1}}, "chess": {"_count": 1, "except": {"_count": 1}}, "ones": {"_count": 2, "the": {"_count": 1}, "though": {"_count": 1}}, "towns": {"_count": 2, "pulling": {"_count": 1}, "that": {"_count": 1}}, "trick": {"_count": 1, "said": {"_count": 1}}, "Artifacts": {"_count": 7, "Office": {"_count": 7}}, "made": {"_count": 1, "you": {"_count": 1}}, "shop": {"_count": 2, "or": {"_count": 1}, "said": {"_count": 1}}, "woman": {"_count": 1, "bought": {"_count": 1}}, "stuff": {"_count": 2, "": {"_count": 2}}, "would": {"_count": 1, "admit": {"_count": 1}}, "rubbish": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "shops": {"_count": 1, "": {"_count": 1}}, "Protection": {"_count": 3, "Act": {"_count": 3}}, "Owners": {"_count": 1, "to": {"_count": 1}}, "street": {"_count": 2, "on": {"_count": 1}, "behind": {"_count": 1}}, "eye": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "saw": {"_count": 1}}, "camera": {"_count": 1, "and": {"_count": 1}}, "cleaning": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "parentage": {"_count": 2, "believing": {"_count": 1}, "": {"_count": 1}}, "borns": {"_count": 3, "is": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}}, "born": {"_count": 2, "": {"_count": 1}, "Hermione": {"_count": 1}}, "car": {"_count": 1, "": {"_count": 1}}, "orphanage": {"_count": 5, "during": {"_count": 1}, "if": {"_count": 2}, "": {"_count": 2}}, "father": {"_count": 2, "witch": {"_count": 1}, "": {"_count": 1}}, "Studies": {"_count": 15, "is": {"_count": 1}, "What": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 4}, "class": {"_count": 1}, "essay": {"_count": 1}, "and": {"_count": 1}, "next": {"_count": 1}, "teacher": {"_count": 2}, "professor": {"_count": 1}, "which": {"_count": 1}}, "business": {"_count": 1, "all": {"_count": 1}}, "fathers": {"_count": 1, "name": {"_count": 1}}, "who": {"_count": 3, "abandoned": {"_count": 1}, "saw": {"_count": 1}, "used": {"_count": 1}}, "parents": {"_count": 2, "knew": {"_count": 1}, "before": {"_count": 1}}, "hed": {"_count": 1, "better": {"_count": 1}}, "police": {"_count": 1, "why": {"_count": 1}}, "news": {"_count": 3, "": {"_count": 1}, "Neville": {"_count": 1}, "he": {"_count": 1}}, "Prime": {"_count": 5, "Minister": {"_count": 5}}, "London": {"_count": 1, "all": {"_count": 1}}, "Underground": {"_count": 1, "": {"_count": 1}}, "settlement": {"_count": 1, "in": {"_count": 1}}, "standing": {"_count": 1, "right": {"_count": 1}}, "postman": {"_count": 1, "has": {"_count": 1}}, "post": {"_count": 2, "is": {"_count": 1}, "telling": {"_count": 1}}, "clothing": {"_count": 2, "during": {"_count": 1}, "Invisibility": {"_count": 1}}, "fireplaces": {"_count": 1, "arent": {"_count": 1}}, "boy": {"_count": 3, "": {"_count": 1}, "from": {"_count": 1}, "whose": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "attention": {"_count": 2, "": {"_count": 2}}, "transport": {"_count": 1, "but": {"_count": 1}}, "were": {"_count": 1, "to": {"_count": 1}}, "land": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 1, "us": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "women": {"_count": 1, "wear": {"_count": 1}}, "dressing": {"_count": 1, "so": {"_count": 1}}, "Artifact": {"_count": 1, "by": {"_count": 1}}, "Repelling": {"_count": 1, "Charms": {"_count": 1}}, "descent": {"_count": 1, "like": {"_count": 1}}, "child": {"_count": 1, "who": {"_count": 1}}, "killings": {"_count": 2, "back": {"_count": 1}, "of": {"_count": 1}}, "neighbors": {"_count": 1, "heard": {"_count": 1}}, "taxis": {"_count": 1, "to": {"_count": 1}}, "taxi": {"_count": 1, "drivers": {"_count": 1}}, "looks": {"_count": 1, "at": {"_count": 1}}, "lawkeepers": {"_count": 1, "policemen": {"_count": 1}}, "cards": {"_count": 1, "because": {"_count": 1}}, "town": {"_count": 1, "": {"_count": 1}}, "newspapers": {"_count": 1, "unlike": {"_count": 1}}, "and": {"_count": 3, "a": {"_count": 1}, "causing": {"_count": 1}, "wizard": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "obsession": {"_count": 1, "But": {"_count": 1}}, "house": {"_count": 4, "for": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "dress": {"_count": 1, "and": {"_count": 1}}, "perspective": {"_count": 1, "": {"_count": 1}}, "vehicles": {"_count": 1, "sighted": {"_count": 1}}, "childrens": {"_count": 1, "books": {"_count": 1}}, "on": {"_count": 1, "August": {"_count": 1}}, "suburb": {"_count": 1, "and": {"_count": 1}}, "artifacts": {"_count": 1, "home": {"_count": 1}}, "dueling": {"_count": 1, "did": {"_count": 1}}, "nutters": {"_count": 1, "that": {"_count": 1}}, "remedies": {"_count": 2, "": {"_count": 2}}, "wounds": {"_count": 1, "Mrs": {"_count": 1}}, "medicine": {"_count": 1, "havent": {"_count": 1}}, "or": {"_count": 1, "has": {"_count": 1}}, "best": {"_count": 1, "and": {"_count": 1}}, "killer": {"_count": 1, "and": {"_count": 1}}, "Liaison": {"_count": 1, "Office": {"_count": 1}}, "killing": {"_count": 1, "unless": {"_count": 1}}, "society": {"_count": 1, "for": {"_count": 1}}, "dunghill": {"_count": 1, "": {"_count": 1}}, "magazines": {"_count": 1, "said": {"_count": 1}}, "magic": {"_count": 1, "tricks": {"_count": 1}}, "tricks": {"_count": 1, "and": {"_count": 1}}, "marked": {"_count": 1, "playing": {"_count": 1}}, "suits": {"_count": 1, "moved": {"_count": 1}}, "attire": {"_count": 1, "": {"_count": 1}}, "late": {"_count": 1, "last": {"_count": 1}}, "whats": {"_count": 1, "your": {"_count": 1}}, "a": {"_count": 2, "bit": {"_count": 1}, "lesson": {"_count": 1}}, "he": {"_count": 1, "accosted": {"_count": 1}}, "causing": {"_count": 1, "him": {"_count": 1}}, "s": {"_count": 1, "filthy": {"_count": 1}}, "attacks": {"_count": 1, "was": {"_count": 1}}, "Morfin": {"_count": 1, "attacked": {"_count": 1}}, "companion": {"_count": 1, "and": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "whispered": {"_count": 1, "Morfin": {"_count": 1}}, "what": {"_count": 2, "my": {"_count": 1}, "lives": {"_count": 1}}, "authorities": {"_count": 2, "were": {"_count": 1}, "are": {"_count": 1}}, "man": {"_count": 3, "who": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}}, "grandparents": {"_count": 1, "thus": {"_count": 1}}, "then": {"_count": 1, "that": {"_count": 1}}, "could": {"_count": 2, "reach": {"_count": 1}, "have": {"_count": 1}}, "from": {"_count": 1, "what": {"_count": 1}}, "hater": {"_count": 1, "": {"_count": 1}}, "rights": {"_count": 2, "gained": {"_count": 1}, "seem": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "contraptions": {"_count": 1, "": {"_count": 1}}, "schools": {"_count": 1, "and": {"_count": 1}}, "community": {"_count": 1, "": {"_count": 1}}, "school": {"_count": 1, "Ariana": {"_count": 1}}, "motorcycles": {"_count": 1, "and": {"_count": 1}}, "girls": {"_count": 1, "Harry": {"_count": 1}}, "front": {"_count": 1, "door": {"_count": 1}}, "She": {"_count": 1, "was": {"_count": 1}}, "whose": {"_count": 1, "identity": {"_count": 1}}, "trappings": {"_count": 1, "of": {"_count": 1}}, "protection": {"_count": 1, "and": {"_count": 1}}, "slaughter": {"_count": 1, "is": {"_count": 1}}, "friends": {"_count": 1, "and": {"_count": 1}}, "dwellings": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "boys": {"_count": 1, "": {"_count": 1}}, "blood": {"_count": 1, "she": {"_count": 1}}, "torture": {"_count": 1, "and": {"_count": 1}}, "driving": {"_count": 1, "test": {"_count": 1}}}, "whatever": {"_count": 118, "that": {"_count": 2, "was": {"_count": 1}, "snakes": {"_count": 1}}, "everyone": {"_count": 1, "was": {"_count": 1}}, "its": {"_count": 2, "guarding": {"_count": 2}}, "we": {"_count": 1, "want": {"_count": 1}}, "he": {"_count": 15, "told": {"_count": 1}, "did": {"_count": 1}, "fancied": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 4}, "likes": {"_count": 1}, "asked": {"_count": 1}, "said": {"_count": 1}, "reserved": {"_count": 1}, "might": {"_count": 1}, "became": {"_count": 1}}, "hurt": {"_count": 1, "the": {"_count": 1}}, "Peeves": {"_count": 1, "had": {"_count": 1}}, "attacked": {"_count": 1, "her": {"_count": 1}}, "his": {"_count": 3, "broken": {"_count": 1}, "recent": {"_count": 1}, "other": {"_count": 1}}, "Malfoy": {"_count": 1, "did": {"_count": 1}}, "it": {"_count": 24, "was": {"_count": 15}, "is": {"_count": 6}, "thinks": {"_count": 1}, "takes": {"_count": 1}, "had": {"_count": 1}}, "was": {"_count": 3, "inside": {"_count": 1}, "in": {"_count": 1}, "happening": {"_count": 1}}, "happens": {"_count": 3, "Why": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}}, "you": {"_count": 9, "might": {"_count": 1}, "like": {"_count": 3}, "do": {"_count": 3}, "pleasel": {"_count": 1}, "want": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "precautions": {"_count": 1, "we": {"_count": 1}}, "Hagrid": {"_count": 1, "wanted": {"_count": 1}}, "they": {"_count": 6, "threw": {"_count": 1}, "did": {"_count": 1}, "call": {"_count": 1}, "are": {"_count": 1}, "thought": {"_count": 1}, "were": {"_count": 1}}, "she": {"_count": 5, "was": {"_count": 2}, "had": {"_count": 1}, "looked": {"_count": 1}, "could": {"_count": 1}}, "the": {"_count": 4, "weather": {"_count": 1}, "thing": {"_count": 1}, "hell": {"_count": 1}, "Dark": {"_count": 1}}, "theyve": {"_count": 1, "nicked": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "I": {"_count": 2, "like": {"_count": 1}, "could": {"_count": 1}}, "hes": {"_count": 4, "holding": {"_count": 1}, "doing": {"_count": 1}, "up": {"_count": 1}, "left": {"_count": 1}}, "anyone": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 1, "you": {"_count": 1}}, "happened": {"_count": 2, "when": {"_count": 1}, "afterward": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "else": {"_count": 4, "he": {"_count": 1}, "it": {"_count": 2}, "has": {"_count": 1}}, "Kreachers": {"_count": 1, "faults": {"_count": 1}}, "her": {"_count": 1, "name": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "Master": {"_count": 1, "wants": {"_count": 1}}, "Hermione": {"_count": 2, "said": {"_count": 2}}, "youre": {"_count": 1, "doing": {"_count": 1}}, "Dumbledore": {"_count": 1, "may": {"_count": 1}}, "your": {"_count": 1, "name": {"_count": 1}}, "She": {"_count": 1, "faltered": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "after": {"_count": 1}}, "took": {"_count": 1, "his": {"_count": 1}}, "Xenophilius": {"_count": 1, "was": {"_count": 1}}, "schemes": {"_count": 1, "might": {"_count": 1}}}, "rattled": {"_count": 18, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 5, "filthy": {"_count": 1}, "windows": {"_count": 1}, "bars": {"_count": 1}, "rain": {"_count": 1}, "windowpanes": {"_count": 1}}, "and": {"_count": 2, "something": {"_count": 1}, "Aunt": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "them": {"_count": 1, "off": {"_count": 1}}, "open": {"_count": 1, "and": {"_count": 1}}, "onward": {"_count": 1, "speeding": {"_count": 1}}, "along": {"_count": 1, "through": {"_count": 1}}, "in": {"_count": 1, "its": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "away": {"_count": 1, "again": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}}, "set": {"_count": 457, "off": {"_count": 164, "for": {"_count": 23}, "down": {"_count": 9}, "": {"_count": 7}, "again": {"_count": 15}, "in": {"_count": 4}, "drawing": {"_count": 1}, "into": {"_count": 4}, "trying": {"_count": 1}, "together": {"_count": 3}, "back": {"_count": 10}, "up": {"_count": 8}, "around": {"_count": 6}, "toward": {"_count": 8}, "a": {"_count": 2}, "alone": {"_count": 1}, "the": {"_count": 5}, "where": {"_count": 1}, "all": {"_count": 1}, "at": {"_count": 13}, "half": {"_count": 1}, "through": {"_count": 3}, "without": {"_count": 1}, "silently": {"_count": 1}, "along": {"_count": 7}, "across": {"_count": 5}, "to": {"_count": 4}, "with": {"_count": 3}, "any": {"_count": 1}, "downstairs": {"_count": 3}, "once": {"_count": 1}, "said": {"_count": 1}, "briskly": {"_count": 1}, "on": {"_count": 1}, "righ": {"_count": 1}, "after": {"_count": 1}, "what": {"_count": 1}, "immediately": {"_count": 1}, "upstairs": {"_count": 1}, "his": {"_count": 1}, "only": {"_count": 1}, "defenses": {"_count": 1}, "theyll": {"_count": 1}}, "of": {"_count": 37, "traffic": {"_count": 1}, "scales": {"_count": 2}, "stairs": {"_count": 1}, "Chudley": {"_count": 1}, "my": {"_count": 1}, "suspicious": {"_count": 1}, "solid": {"_count": 1}, "steps": {"_count": 1}, "wizards": {"_count": 1}, "passages": {"_count": 1}, "golden": {"_count": 2}, "Gobstones": {"_count": 1}, "drums": {"_count": 1}, "keys": {"_count": 1}, "old": {"_count": 2}, "purple": {"_count": 1}, "oak": {"_count": 1}, "dress": {"_count": 2}, "robes": {"_count": 3}, "shelves": {"_count": 1}, "excellent": {"_count": 1}, "double": {"_count": 1}, "dark": {"_count": 1}, "gallows": {"_count": 1}, "magenta": {"_count": 1}, "iron": {"_count": 1}, "spangled": {"_count": 1}, "amethystcolored": {"_count": 1}, "the": {"_count": 2}, "quiet": {"_count": 1}}, "which": {"_count": 2, "hed": {"_count": 1}, "had": {"_count": 1}}, "a": {"_count": 10, "boa": {"_count": 2}, "better": {"_count": 1}, "task": {"_count": 1}, "course": {"_count": 1}, "snake": {"_count": 1}, "bowl": {"_count": 1}, "record": {"_count": 1}, "tail": {"_count": 1}, "price": {"_count": 1}}, "glass": {"_count": 1, "or": {"_count": 1}}, "brass": {"_count": 1, "scales": {"_count": 1}}, "them": {"_count": 8, "to": {"_count": 1}, "all": {"_count": 1}, "loose": {"_count": 1}, "down": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "cobbled": {"_count": 1}}, "fire": {"_count": 4, "to": {"_count": 4}}, "was": {"_count": 2, "very": {"_count": 1}, "sold": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "by": {"_count": 3, "losing": {"_count": 1}, "a": {"_count": 1}, "being": {"_count": 1}}, "ourselves": {"_count": 1, "against": {"_count": 1}}, "myself": {"_count": 1, "against": {"_count": 1}}, "their": {"_count": 1, "affairs": {"_count": 1}}, "it": {"_count": 9, "on": {"_count": 1}, "free": {"_count": 1}, "down": {"_count": 3}, "resolutely": {"_count": 1}, "back": {"_count": 1}, "off": {"_count": 2}}, "free": {"_count": 3, "sir": {"_count": 1}, "whether": {"_count": 1}, "yet": {"_count": 1}}, "Dobby": {"_count": 6, "free": {"_count": 6}}, "at": {"_count": 7, "a": {"_count": 1}, "the": {"_count": 3}, "intervals": {"_count": 2}, "her": {"_count": 1}}, "for": {"_count": 3, "your": {"_count": 1}, "twelve": {"_count": 1}, "the": {"_count": 1}}, "foot": {"_count": 12, "in": {"_count": 8}, "on": {"_count": 1}, "there": {"_count": 1}, "inside": {"_count": 1}, "But": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 11, "family": {"_count": 1}, "monster": {"_count": 1}, "Serpent": {"_count": 1}, "seal": {"_count": 1}, "teapot": {"_count": 1}, "potion": {"_count": 1}, "book": {"_count": 1}, "pieces": {"_count": 1}, "bottle": {"_count": 1}, "alarm": {"_count": 1}, "mug": {"_count": 1}}, "pixies": {"_count": 1, "loose": {"_count": 1}}, "me": {"_count": 2, "free": {"_count": 1}, "back": {"_count": 1}}, "with": {"_count": 3, "great": {"_count": 1}, "a": {"_count": 2}}, "out": {"_count": 17, "in": {"_count": 2}, "to": {"_count": 9}, "": {"_count": 1}, "for": {"_count": 2}, "upon": {"_count": 1}, "on": {"_count": 2}}, "up": {"_count": 18, "and": {"_count": 1}, "his": {"_count": 2}, "as": {"_count": 1}, "safe": {"_count": 1}, "the": {"_count": 1}, "together": {"_count": 1}, "headquarters": {"_count": 1}, "an": {"_count": 2}, "a": {"_count": 3}, "several": {"_count": 1}, "appointments": {"_count": 1}, "S": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 1}}, "her": {"_count": 4, "an": {"_count": 1}, "back": {"_count": 1}, "off": {"_count": 2}}, "eyes": {"_count": 3, "on": {"_count": 3}}, "down": {"_count": 11, "the": {"_count": 2}, "their": {"_count": 1}, "his": {"_count": 5}, "for": {"_count": 1}, "Professor": {"_count": 1}, "carefully": {"_count": 1}}, "on": {"_count": 7, "a": {"_count": 1}, "the": {"_count": 1}, "top": {"_count": 1}, "either": {"_count": 1}, "me": {"_count": 1}, "course": {"_count": 1}, "shelves": {"_count": 1}}, "No": {"_count": 1, "lets": {"_count": 1}}, "much": {"_count": 3, "store": {"_count": 3}}, "him": {"_count": 8, "free": {"_count": 5}, "on": {"_count": 1}, "though": {"_count": 1}, "upright": {"_count": 1}}, "his": {"_count": 7, "broom": {"_count": 1}, "tiny": {"_count": 1}, "arms": {"_count": 1}, "robes": {"_count": 1}, "jowls": {"_count": 1}, "left": {"_count": 1}, "glass": {"_count": 1}}, "to": {"_count": 11, "work": {"_count": 8}, "searching": {"_count": 1}, "debating": {"_count": 1}, "his": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 5, "elaborate": {"_count": 2}, "niches": {"_count": 1}, "its": {"_count": 1}, "little": {"_count": 1}}, "upon": {"_count": 5, "it": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "by": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 7, "its": {"_count": 1}, "the": {"_count": 5}, "them": {"_count": 1}}, "limit": {"_count": 1, "of": {"_count": 1}}, "yer": {"_count": 1, "mind": {"_count": 1}}, "outside": {"_count": 1, "tearing": {"_count": 1}}, "em": {"_count": 1, "loose": {"_count": 1}}, "high": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "my": {"_count": 1, "sights": {"_count": 1}}, "us": {"_count": 1, "a": {"_count": 1}}, "quill": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 4, "fists": {"_count": 1}, "his": {"_count": 2}, "white": {"_count": 1}}, "tea": {"_count": 1, "in": {"_count": 1}}, "about": {"_count": 2, "telling": {"_count": 1}, "gathering": {"_count": 1}}, "himself": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "purple": {"_count": 1, "pustules": {"_count": 1}}, "an": {"_count": 2, "armed": {"_count": 1}, "example": {"_count": 1}}, "conditions": {"_count": 1, "said": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}}, "Seamus": {"_count": 1, "lines": {"_count": 1}}, "Dawlish": {"_count": 1, "to": {"_count": 1}}, "something": {"_count": 1, "up": {"_count": 1}}, "you": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "store": {"_count": 1, "by": {"_count": 1}}, "other": {"_count": 1, "obstacles": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "atop": {"_count": 1, "her": {"_count": 1}}, "aside": {"_count": 2, "for": {"_count": 1}, "his": {"_count": 1}}, "carefully": {"_count": 1, "upon": {"_count": 1}}, "Gryffindors": {"_count": 1, "apart": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "some": {"_count": 2, "knives": {"_count": 1}, "distance": {"_count": 1}}, "against": {"_count": 1, "yellow": {"_count": 1}}, "forth": {"_count": 1, "to": {"_count": 1}}}, "imagining": {"_count": 23, "things": {"_count": 3, "which": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "school": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 4, "maybe": {"_count": 1}, "or": {"_count": 3}}, "what": {"_count": 2, "Stan": {"_count": 1}, "deadly": {"_count": 1}}, "some": {"_count": 1, "act": {"_count": 1}}, "each": {"_count": 1, "one": {"_count": 1}}, "pain": {"_count": 1, "past": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "Hermione": {"_count": 1, "shut": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "horrors": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 3, "the": {"_count": 1}, "somebody": {"_count": 1}, "he": {"_count": 1}}, "a": {"_count": 1, "serpent": {"_count": 1}}, "blood": {"_count": 1, "pouring": {"_count": 1}}, "sparks": {"_count": 1, "trailing": {"_count": 1}}}, "hoped": {"_count": 70, "before": {"_count": 1, "because": {"_count": 1}}, "that": {"_count": 14, "strangers": {"_count": 1}, "Goyle": {"_count": 1}, "if": {"_count": 1}, "wherever": {"_count": 1}, "Mr": {"_count": 1}, "I": {"_count": 2}, "Hermione": {"_count": 2}, "Lupin": {"_count": 1}, "winning": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}}, "the": {"_count": 3, "roof": {"_count": 1}, "artist": {"_count": 1}, "Ravenclaws": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "youd": {"_count": 3, "only": {"_count": 1}, "drive": {"_count": 1}, "be": {"_count": 1}}, "was": {"_count": 4, "a": {"_count": 3}, "an": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "shed": {"_count": 1, "be": {"_count": 1}}, "school": {"_count": 1, "would": {"_count": 1}}, "she": {"_count": 2, "never": {"_count": 1}, "wouldnt": {"_count": 1}}, "he": {"_count": 1, "wouldnt": {"_count": 1}}, "to": {"_count": 8, "enter": {"_count": 1}, "get": {"_count": 1}, "find": {"_count": 1}, "discredit": {"_count": 1}, "pick": {"_count": 1}, "be": {"_count": 2}, "marry": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "and": {"_count": 2, "Uncle": {"_count": 1}, "believed": {"_count": 1}}, "hed": {"_count": 1, "get": {"_count": 1}}, "they": {"_count": 6, "wouldnt": {"_count": 1}, "would": {"_count": 4}, "had": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "Meaning": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "beyond": {"_count": 1, "hope": {"_count": 1}}, "for": {"_count": 3, "": {"_count": 1}, "some": {"_count": 1}, "it": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "there": {"_count": 1, "would": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "with": {"_count": 1, "all": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "childishly": {"_count": 1, "that": {"_count": 1}}}, "approve": {"_count": 9, "of": {"_count": 4, "imagination": {"_count": 1}, "Mundungus": {"_count": 1}, "what": {"_count": 1}, "that": {"_count": 1}}, "the": {"_count": 1, "use": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "first": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "imagination": {"_count": 18, "": {"_count": 2, ".": {"_count": 2}}, "after": {"_count": 1, "all": {"_count": 1}}, "showing": {"_count": 1, "him": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "or": {"_count": 2, "not": {"_count": 1}, "did": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "however": {"_count": 1, "as": {"_count": 1}}, "zoomed": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "showed": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}, "could": {"_count": 1, "go": {"_count": 1}}, "was": {"_count": 1, "racing": {"_count": 1}}, "shouted": {"_count": 1, "Ron": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}}, "pulled": {"_count": 575, "into": {"_count": 5, "the": {"_count": 1}, "a": {"_count": 3}, "nothingness": {"_count": 1}}, "out": {"_count": 148, "a": {"_count": 34}, "the": {"_count": 27}, "of": {"_count": 15}, "his": {"_count": 41}, "her": {"_count": 10}, "an": {"_count": 2}, "several": {"_count": 1}, "what": {"_count": 2}, "all": {"_count": 1}, "their": {"_count": 1}, "Wormtails": {"_count": 1}, "Moodys": {"_count": 1}, "my": {"_count": 2}, "quill": {"_count": 1}, "two": {"_count": 1}, "parchment": {"_count": 3}, "fistfuls": {"_count": 1}, "Hagrids": {"_count": 1}, "The": {"_count": 1}, "Dumbledores": {"_count": 1}, "three": {"_count": 1}}, "a": {"_count": 37, "slightly": {"_count": 1}, "long": {"_count": 2}, "bag": {"_count": 1}, "wizard": {"_count": 1}, "map": {"_count": 1}, "thick": {"_count": 1}, "heavy": {"_count": 1}, "large": {"_count": 1}, "new": {"_count": 1}, "small": {"_count": 5}, "face": {"_count": 1}, "piece": {"_count": 1}, "plate": {"_count": 1}, "few": {"_count": 2}, "slip": {"_count": 1}, "plug": {"_count": 1}, "table": {"_count": 1}, "beetle": {"_count": 1}, "very": {"_count": 2}, "monocle": {"_count": 1}, "fresh": {"_count": 1}, "parchment": {"_count": 1}, "sheet": {"_count": 1}, "watch": {"_count": 1}, "tub": {"_count": 1}, "skeptical": {"_count": 1}, "card": {"_count": 1}, "short": {"_count": 1}, "torn": {"_count": 1}, "golden": {"_count": 1}}, "an": {"_count": 3, "owl": {"_count": 1}, "old": {"_count": 1}, "arrow": {"_count": 1}}, "him": {"_count": 27, "back": {"_count": 5}, "away": {"_count": 3}, "to": {"_count": 3}, "out": {"_count": 2}, "in": {"_count": 1}, "off": {"_count": 1}, "over": {"_count": 1}, "around": {"_count": 1}, "across": {"_count": 1}, "onto": {"_count": 1}, "into": {"_count": 4}, "upright": {"_count": 1}, "free": {"_count": 1}, "down": {"_count": 1}, "close": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "beneath": {"_count": 1}}, "the": {"_count": 64, "ticket": {"_count": 1}, "door": {"_count": 9}, "cloak": {"_count": 3}, "ring": {"_count": 1}, "handle": {"_count": 1}, "doors": {"_count": 1}, "blankets": {"_count": 1}, "Pocket": {"_count": 1}, "gray": {"_count": 1}, "carriage": {"_count": 1}, "third": {"_count": 1}, "Invisibility": {"_count": 7}, "curtains": {"_count": 1}, "hangings": {"_count": 2}, "handful": {"_count": 1}, "letter": {"_count": 1}, "piece": {"_count": 1}, "carriages": {"_count": 1}, "covers": {"_count": 1}, "back": {"_count": 1}, "parchment": {"_count": 1}, "Extendable": {"_count": 1}, "wand": {"_count": 2}, "newspaper": {"_count": 2}, "neck": {"_count": 1}, "robes": {"_count": 1}, "old": {"_count": 1}, "Marauders": {"_count": 2}, "fake": {"_count": 1}, "stopper": {"_count": 1}, "strings": {"_count": 1}, "chain": {"_count": 1}, "magical": {"_count": 1}, "locket": {"_count": 1}, "sweaty": {"_count": 1}, "pieces": {"_count": 1}, "Deluminator": {"_count": 1}, "sharp": {"_count": 1}, "Horcrux": {"_count": 1}, "Cloak": {"_count": 3}, "mangled": {"_count": 1}, "diadem": {"_count": 1}}, "on": {"_count": 32, "his": {"_count": 16}, "their": {"_count": 8}, "the": {"_count": 3}, "Harrys": {"_count": 1}, "my": {"_count": 1}, "jackets": {"_count": 1}, "a": {"_count": 2}}, "back": {"_count": 10, "his": {"_count": 2}, "into": {"_count": 1}, "the": {"_count": 3}, "that": {"_count": 1}, "The": {"_count": 1}, "and": {"_count": 1}, "an": {"_count": 1}}, "one": {"_count": 4, "of": {"_count": 3}, "toward": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "his": {"_count": 36, "broomstick": {"_count": 1}, "wand": {"_count": 6}, "sweater": {"_count": 1}, "booklist": {"_count": 1}, "pet": {"_count": 1}, "bag": {"_count": 1}, "right": {"_count": 2}, "Firebolt": {"_count": 2}, "head": {"_count": 3}, "fingers": {"_count": 1}, "ruff": {"_count": 1}, "furs": {"_count": 1}, "ankle": {"_count": 1}, "own": {"_count": 1}, "broom": {"_count": 1}, "enormous": {"_count": 1}, "copy": {"_count": 3}, "scarf": {"_count": 1}, "scarlet": {"_count": 1}, "Cloak": {"_count": 1}, "flowery": {"_count": 1}, "rucksack": {"_count": 1}, "glasses": {"_count": 1}, "maroon": {"_count": 1}, "traveling": {"_count": 1}}, "off": {"_count": 39, "the": {"_count": 21}, "Harrys": {"_count": 1}, "their": {"_count": 2}, "his": {"_count": 11}, "another": {"_count": 1}, "Siriuss": {"_count": 1}, "all": {"_count": 1}, "her": {"_count": 1}}, "it": {"_count": 19, "over": {"_count": 1}, "out": {"_count": 8}, "open": {"_count": 3}, "off": {"_count": 2}, "backward": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}, "up": {"_count": 1}, "upward": {"_count": 1}}, "Harry": {"_count": 9, "out": {"_count": 1}, "could": {"_count": 1}, "back": {"_count": 2}, "and": {"_count": 1}, "deeper": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 2}}, "open": {"_count": 17, "the": {"_count": 9}, "one": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 3}, "a": {"_count": 2}, "drawers": {"_count": 1}}, "clean": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 1, "hard": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "hard": {"_count": 3, "": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}}, "Ron": {"_count": 4, "up": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 1}, "behind": {"_count": 1}}, "Harrys": {"_count": 3, "limp": {"_count": 1}, "wand": {"_count": 1}, "leg": {"_count": 1}}, "Millicent": {"_count": 1, "off": {"_count": 1}}, "up": {"_count": 11, "over": {"_count": 2}, "feeling": {"_count": 1}, "three": {"_count": 1}, "a": {"_count": 3}, "robes": {"_count": 1}, "by": {"_count": 1}, "short": {"_count": 1}, "carrots": {"_count": 1}}, "himself": {"_count": 13, "up": {"_count": 6}, "out": {"_count": 2}, "free": {"_count": 3}, "back": {"_count": 1}, "together": {"_count": 1}}, "that": {"_count": 2, "out": {"_count": 2}}, "us": {"_count": 1, "all": {"_count": 1}}, "with": {"_count": 1, "all": {"_count": 1}}, "them": {"_count": 7, "into": {"_count": 1}, "down": {"_count": 1}, "both": {"_count": 1}, "on": {"_count": 2}, "onehanded": {"_count": 1}, "over": {"_count": 1}}, "Malfoys": {"_count": 1, "roots": {"_count": 1}}, "Scabbers": {"_count": 1, "out": {"_count": 1}}, "something": {"_count": 1, "from": {"_count": 1}}, "two": {"_count": 2, "bottles": {"_count": 1}, "of": {"_count": 1}}, "herself": {"_count": 3, "back": {"_count": 1}, "up": {"_count": 1}, "together": {"_count": 1}}, "down": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "every": {"_count": 1}}, "her": {"_count": 15, "robes": {"_count": 1}, "upward": {"_count": 1}, "trunk": {"_count": 1}, "shawls": {"_count": 1}, "back": {"_count": 2}, "wand": {"_count": 1}, "around": {"_count": 1}, "backward": {"_count": 1}, "to": {"_count": 3}, "away": {"_count": 1}, "into": {"_count": 1}, "arm": {"_count": 1}}, "Buckbeaks": {"_count": 1, "rope": {"_count": 1}}, "ahead": {"_count": 1, "by": {"_count": 1}}, "Rons": {"_count": 2, "predictions": {"_count": 1}, "arm": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "Siriuss": {"_count": 1, "reply": {"_count": 1}}, "both": {"_count": 1, "socks": {"_count": 1}}, "Fleurs": {"_count": 1, "sister": {"_count": 1}}, "me": {"_count": 4, "out": {"_count": 1}, "away": {"_count": 1}, "from": {"_count": 1}, "into": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "low": {"_count": 3, "over": {"_count": 3}}, "by": {"_count": 2, "these": {"_count": 1}, "a": {"_count": 1}}, "Crookshanks": {"_count": 1, "back": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "every": {"_count": 1, "dish": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 2, "to": {"_count": 1}, "onto": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "Percy": {"_count": 1}}, "Dudleys": {"_count": 1, "": {"_count": 1}}, "tight": {"_count": 1, "against": {"_count": 1}}, "some": {"_count": 1, "crumpled": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 2, "after": {"_count": 1}, "back": {"_count": 1}}, "Peakes": {"_count": 1, "s": {"_count": 1}}, "toward": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 3, "something": {"_count": 1}, "his": {"_count": 1}, "its": {"_count": 1}}, "aside": {"_count": 1, "the": {"_count": 1}}, "Percy": {"_count": 1, "into": {"_count": 1}}}, "driveway": {"_count": 3, "of": {"_count": 1, "number": {"_count": 1}}, "then": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "led": {"_count": 1}}}, "thing": {"_count": 605, "he": {"_count": 43, "saw": {"_count": 3}, "tried": {"_count": 1}, "felt": {"_count": 1}, "didnt": {"_count": 1}, "said": {"_count": 3}, "knew": {"_count": 6}, "needed": {"_count": 3}, "could": {"_count": 3}, "hated": {"_count": 1}, "added": {"_count": 1}, "ever": {"_count": 2}, "wanted": {"_count": 5}, "really": {"_count": 2}, "was": {"_count": 4}, "had": {"_count": 6}, "does": {"_count": 1}}, "it": {"_count": 5, "would": {"_count": 1}, "was": {"_count": 2}, "could": {"_count": 1}, "lives": {"_count": 1}}, "Harry": {"_count": 11, "liked": {"_count": 1}, "saw": {"_count": 1}, "had": {"_count": 2}, "felt": {"_count": 2}, "could": {"_count": 1}, "Potter": {"_count": 1}, "knew": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "the": {"_count": 8, "Dursleys": {"_count": 1}, "dementor": {"_count": 1}, "following": {"_count": 1}, "staff": {"_count": 1}, "examiner": {"_count": 1}, "other": {"_count": 1}, "Chosen": {"_count": 1}, "room": {"_count": 1}}, "about": {"_count": 10, "all": {"_count": 1}, "Percy": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 1}, "this": {"_count": 1}, "breakfast": {"_count": 1}, "halfbreeds": {"_count": 1}, "growing": {"_count": 1}, "her": {"_count": 1}}, "happened": {"_count": 2, "in": {"_count": 1}, "this": {"_count": 1}}, "was": {"_count": 19, "certain": {"_count": 2}, "in": {"_count": 1}, "taken": {"_count": 1}, "Dudleys": {"_count": 1}, "": {"_count": 1}, "entirely": {"_count": 1}, "Snape": {"_count": 1}, "thrown": {"_count": 1}, "that": {"_count": 2}, "your": {"_count": 1}, "ridiculous": {"_count": 1}, "to": {"_count": 1}, "much": {"_count": 1}, "Harry": {"_count": 1}, "still": {"_count": 1}, "said": {"_count": 1}, "once": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 54, "had": {"_count": 8}, "ever": {"_count": 2}, "killed": {"_count": 1}, "lives": {"_count": 1}, "Fawkes": {"_count": 1}, "Harry": {"_count": 1}, "tested": {"_count": 1}, "bothered": {"_count": 1}, "could": {"_count": 3}, "really": {"_count": 1}, "frightens": {"_count": 1}, "scares": {"_count": 1}, "helps": {"_count": 1}, "was": {"_count": 11}, "made": {"_count": 2}, "Viktor": {"_count": 1}, "lurked": {"_count": 1}, "works": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}, "might": {"_count": 2}, "he": {"_count": 3}, "smashed": {"_count": 1}, "needed": {"_count": 1}, "stopped": {"_count": 1}, "jumped": {"_count": 1}, "Percy": {"_count": 1}, "would": {"_count": 1}, "mattered": {"_count": 1}, "trembled": {"_count": 1}}, "is": {"_count": 24, "the": {"_count": 1}, "I": {"_count": 2}, "arrant": {"_count": 1}, "its": {"_count": 2}, "Tom": {"_count": 1}, "you": {"_count": 1}, "just": {"_count": 1}, "it": {"_count": 2}, "Professor": {"_count": 1}, "to": {"_count": 2}, "exactly": {"_count": 1}, "Harry": {"_count": 2}, "we": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 2}, "whispered": {"_count": 1}}, "noticing": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 18, "the": {"_count": 8}, "his": {"_count": 1}, "with": {"_count": 1}, "Magnolia": {"_count": 1}, "Dervish": {"_count": 1}, "saving": {"_count": 1}, "this": {"_count": 1}, "Dumbledore": {"_count": 1}, "front": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 71, ".": {"_count": 51}, "?": {"_count": 16}, "!": {"_count": 4}}, "when": {"_count": 1, "Seamus": {"_count": 1}}, "Longbottoms": {"_count": 1, "gran": {"_count": 1}}, "like": {"_count": 4, "that": {"_count": 2}, "you": {"_count": 1}, "Christmas": {"_count": 1}}, "arrived": {"_count": 1, "in": {"_count": 1}}, "they": {"_count": 9, "wanted": {"_count": 1}, "saw": {"_count": 3}, "had": {"_count": 2}, "both": {"_count": 1}, "professed": {"_count": 1}, "needed": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "did": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 1, "": {"_count": 1}}, "thatll": {"_count": 1, "lose": {"_count": 1}}, "Hermione": {"_count": 2, "ever": {"_count": 1}, "seemed": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "before": {"_count": 3, "": {"_count": 2}, "we": {"_count": 1}}, "you": {"_count": 19, "saved": {"_count": 1}, "ask": {"_count": 1}, "know": {"_count": 3}, "bandy": {"_count": 1}, "are": {"_count": 2}, "can": {"_count": 1}, "dread": {"_count": 2}, "just": {"_count": 1}, "could": {"_count": 1}, "ever": {"_count": 2}, "ought": {"_count": 1}, "should": {"_count": 1}, "call": {"_count": 1}, "cant": {"_count": 1}}, "to": {"_count": 50, "slay": {"_count": 1}, "want": {"_count": 1}, "have": {"_count": 2}, "call": {"_count": 1}, "tell": {"_count": 1}, "bear": {"_count": 1}, "do": {"_count": 15}, "happen": {"_count": 2}, "Sirius": {"_count": 1}, "having": {"_count": 1}, "say": {"_count": 9}, "it": {"_count": 1}, "dry": {"_count": 1}, "mend": {"_count": 2}, "be": {"_count": 2}, "decide": {"_count": 1}, "carry": {"_count": 1}, "make": {"_count": 1}, "a": {"_count": 2}, "respect": {"_count": 1}, "him": {"_count": 1}, "get": {"_count": 1}, "Mother": {"_count": 1}}, "goes": {"_count": 1, "": {"_count": 1}}, "properly": {"_count": 2, "didnt": {"_count": 1}, "he": {"_count": 1}}, "itself": {"_count": 3, "": {"_count": 1}, "His": {"_count": 1}, "dying": {"_count": 1}}, "and": {"_count": 9, "should": {"_count": 1}, "another": {"_count": 2}, "Im": {"_count": 1}, "he": {"_count": 1}, "avoid": {"_count": 1}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}, "then": {"_count": 1}}, "Voldemort": {"_count": 1, "cannot": {"_count": 1}}, "over": {"_count": 2, "": {"_count": 2}}, "Malfoy": {"_count": 2, "would": {"_count": 1}, "was": {"_count": 1}}, "Write": {"_count": 1, "home": {"_count": 1}}, "yer": {"_count": 1, "wand": {"_count": 1}}, "on": {"_count": 6, "it": {"_count": 2}, "his": {"_count": 1}, "Friday": {"_count": 1}, "Christmas": {"_count": 1}, "Monday": {"_count": 1}}, "hanging": {"_count": 2, "underneath": {"_count": 1}, "around": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "But": {"_count": 1, "Professor": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "lets": {"_count": 1}}, "we": {"_count": 9, "know": {"_count": 4}, "want": {"_count": 2}, "ever": {"_count": 1}, "should": {"_count": 1}, "wanted": {"_count": 1}}, "thats": {"_count": 3, "ever": {"_count": 1}, "got": {"_count": 1}, "glaring": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "too": {"_count": 2, "or": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 9, "Hermione": {"_count": 4}, "Harry": {"_count": 3}, "Ron": {"_count": 1}, "Lavender": {"_count": 1}}, "had": {"_count": 3, "happened": {"_count": 3}}, "bowled": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "Dumbledore": {"_count": 3, "said": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}}, "tomorrow": {"_count": 2, "": {"_count": 2}}, "I": {"_count": 15, "pride": {"_count": 1}, "rremember": {"_count": 1}, "hear": {"_count": 1}, "ever": {"_count": 1}, "hate": {"_count": 2}, "do": {"_count": 2}, "was": {"_count": 1}, "wrote": {"_count": 1}, "knew": {"_count": 2}, "remember": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "heart": {"_count": 1}, "brain": {"_count": 1}}, "at": {"_count": 3, "Colonel": {"_count": 1}, "stake": {"_count": 1}, "me": {"_count": 1}}, "nearly": {"_count": 1, "scalped": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 4, "": {"_count": 1}, "of": {"_count": 1}, "Running": {"_count": 1}, "again": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "shot": {"_count": 1, "out": {"_count": 1}}, "here": {"_count": 1, "he": {"_count": 1}}, "yehll": {"_count": 1, "want": {"_count": 1}}, "yeh": {"_count": 3, "gotta": {"_count": 1}, "do": {"_count": 1}, "know": {"_count": 1}}, "youre": {"_count": 3, "dreading": {"_count": 1}, "hiding": {"_count": 1}, "going": {"_count": 1}}, "Ive": {"_count": 4, "ever": {"_count": 3}, "been": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "hed": {"_count": 2, "ever": {"_count": 1}, "do": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 3}}, "but": {"_count": 3, "ddont": {"_count": 1}, "when": {"_count": 1}, "Aunt": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "anyone": {"_count": 1, "felt": {"_count": 1}}, "a": {"_count": 2, "Hogwarts": {"_count": 1}, "joke": {"_count": 1}}, "of": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "so": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "weve": {"_count": 3, "ever": {"_count": 1}, "got": {"_count": 2}}, "this": {"_count": 3, "mornin": {"_count": 1}, "morning": {"_count": 2}}, "outside": {"_count": 1, "your": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "for": {"_count": 7, "Uncle": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 2}, "which": {"_count": 2}}, "after": {"_count": 1, "another": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 2}, "they": {"_count": 1}}, "skulked": {"_count": 1, "half": {"_count": 1}}, "Wronski": {"_count": 1, "Feint": {"_count": 1}}, "Cedric": {"_count": 1, "had": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "though": {"_count": 3, "Harry": {"_count": 1}, "Unhappy": {"_count": 1}, "he": {"_count": 1}}, "Hagrid": {"_count": 1, "might": {"_count": 1}}, "seemed": {"_count": 2, "very": {"_count": 1}, "almost": {"_count": 1}}, "would": {"_count": 1, "blow": {"_count": 1}}, "shed": {"_count": 1, "do": {"_count": 1}}, "seriously": {"_count": 1, "did": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "not": {"_count": 1, "him": {"_count": 1}}, "inside": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 2}}, "Wormtail": {"_count": 1, "had": {"_count": 1}}, "against": {"_count": 3, "which": {"_count": 3}}, "only": {"_count": 1, "and": {"_count": 1}}, "became": {"_count": 1, "much": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "somewhere": {"_count": 1, "else": {"_count": 1}}, "At": {"_count": 1, "Hogwarts": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "youd": {"_count": 3, "do": {"_count": 2}, "expect": {"_count": 1}}, "hes": {"_count": 1, "interested": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "wizards": {"_count": 1, "have": {"_count": 1}}, "shattered": {"_count": 1, "and": {"_count": 1}}, "seem": {"_count": 1, "worse": {"_count": 1}}, "worrying": {"_count": 1, "him": {"_count": 1}}, "starting": {"_count": 1, "this": {"_count": 1}}, "really": {"_count": 2, "worrying": {"_count": 1}, "freaked": {"_count": 1}}, "He": {"_count": 3, "cannot": {"_count": 3}}, "are": {"_count": 1, "you": {"_count": 1}}, "people": {"_count": 1, "used": {"_count": 1}}, "shes": {"_count": 1, "crying": {"_count": 1}}, "YouKnow": {"_count": 2, "Whos": {"_count": 2}}, "Potter": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 4, "had": {"_count": 1}, "did": {"_count": 1}, "touched": {"_count": 1}, "said": {"_count": 1}}, "within": {"_count": 1, "was": {"_count": 1}}, "wed": {"_count": 1, "want": {"_count": 1}}, "how": {"_count": 2, "did": {"_count": 1}, "many": {"_count": 1}}, "Their": {"_count": 1, "O": {"_count": 1}}, "remained": {"_count": 1, "motionless": {"_count": 1}}, "then": {"_count": 2, "": {"_count": 2}}, "socalled": {"_count": 1, "protective": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "See": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "threatening": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "told": {"_count": 1, "its": {"_count": 1}}, "doesnt": {"_count": 3, "it": {"_count": 2}, "open": {"_count": 1}}, "mattered": {"_count": 1, "This": {"_count": 1}}, "right": {"_count": 1, "then": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "slightly": {"_count": 1, "revolted": {"_count": 1}}, "nicely": {"_count": 1, "said": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "since": {"_count": 1, "Rons": {"_count": 1}}, "You": {"_count": 1, "do": {"_count": 1}}, "Level": {"_count": 1, "one": {"_count": 1}}, "looked": {"_count": 1, "perfect": {"_count": 1}}, "horribly": {"_count": 1, "vivid": {"_count": 1}}, "came": {"_count": 1, "closer": {"_count": 1}}, "off": {"_count": 1, "before": {"_count": 1}}, "its": {"_count": 1, "been": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "starts": {"_count": 1, "with": {"_count": 1}}, "swung": {"_count": 1, "forward": {"_count": 1}}, "very": {"_count": 1, "clear": {"_count": 1}}, "vibrate": {"_count": 1, "violently": {"_count": 1}}, "Right": {"_count": 1, "said": {"_count": 1}}, "above": {"_count": 1, "all": {"_count": 1}}}, "improve": {"_count": 13, "his": {"_count": 3, "mood": {"_count": 1}, "temper": {"_count": 1}, "abysmal": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 1, "everyone": {"_count": 1}}, "were": {"_count": 1, "glinting": {"_count": 1}}, "my": {"_count": 1, "Eenglish": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 1, "when": {"_count": 1}}}, "spotted": {"_count": 93, "that": {"_count": 2, "morning": {"_count": 1}, "hed": {"_count": 1}}, "handkerchief": {"_count": 6, "and": {"_count": 2}, "from": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "throughout": {"_count": 1}}, "Hagrid": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Professor": {"_count": 1, "Quirrell": {"_count": 1}}, "a": {"_count": 5, "notice": {"_count": 1}, "large": {"_count": 1}, "problem": {"_count": 1}, "bloody": {"_count": 1}, "candle": {"_count": 1}}, "Harry": {"_count": 3, "and": {"_count": 2}, "got": {"_count": 1}}, "the": {"_count": 10, "suit": {"_count": 1}, "Whomping": {"_count": 1}, "hanging": {"_count": 1}, "body": {"_count": 1}, "gold": {"_count": 1}, "badge": {"_count": 1}, "red": {"_count": 1}, "sword": {"_count": 1}, "thing": {"_count": 1}, "three": {"_count": 1}}, "some": {"_count": 1, "money": {"_count": 1}}, "them": {"_count": 2, "to": {"_count": 1}, "as": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "their": {"_count": 1, "friend": {"_count": 1}}, "mirror": {"_count": 1, "were": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Justin": {"_count": 1, "and": {"_count": 1}}, "Crabbe": {"_count": 2, "and": {"_count": 2}}, "something": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 2, "doing": {"_count": 1}, "and": {"_count": 1}}, "her": {"_count": 1, "and": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 5, "running": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}, "within": {"_count": 1}, "staring": {"_count": 1}}, "three": {"_count": 1, "onlytoofamiliar": {"_count": 1}}, "it": {"_count": 6, "Harry": {"_count": 1}, "lurking": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}, "at": {"_count": 1}, "but": {"_count": 1}}, "an": {"_count": 2, "officiallooking": {"_count": 1}, "old": {"_count": 1}}, "working": {"_count": 1, "they": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "problem": {"_count": 1}}, "Harrys": {"_count": 1, "scar": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "Hedwig": {"_count": 1, "nestled": {"_count": 1}}, "Ron": {"_count": 5, "who": {"_count": 1}, "and": {"_count": 4}}, "she": {"_count": 1, "said": {"_count": 1}}, "Im": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 2, "Fleur": {"_count": 1}, "Mrs": {"_count": 1}}, "silk": {"_count": 1, "handkerchief": {"_count": 1}}, "Fleurs": {"_count": 1, "sister": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "if": {"_count": 1}}, "anything": {"_count": 1, "else": {"_count": 1}}, "one": {"_count": 1, "lying": {"_count": 1}}, "in": {"_count": 1, "Hogsmeade": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Cormac": {"_count": 1, "McLaggen": {"_count": 1}}, "what": {"_count": 2, "Harry": {"_count": 1}, "looked": {"_count": 1}}, "toadstool": {"_count": 1, "and": {"_count": 1}}, "Kingsley": {"_count": 1, "on": {"_count": 1}}, "Christmas": {"_count": 1, "trees": {"_count": 1}}, "my": {"_count": 1, "pet": {"_count": 1}}, "under": {"_count": 1, "it": {"_count": 1}}, "Ginny": {"_count": 1, "two": {"_count": 1}}}, "sitting": {"_count": 426, "on": {"_count": 53, "his": {"_count": 6}, "a": {"_count": 7}, "the": {"_count": 15}, "high": {"_count": 2}, "some": {"_count": 1}, "it": {"_count": 3}, "for": {"_count": 1}, "Harrys": {"_count": 2}, "shelves": {"_count": 1}, "poufs": {"_count": 1}, "Professor": {"_count": 1}, "carved": {"_count": 1}, "either": {"_count": 2}, "rough": {"_count": 1}, "Rons": {"_count": 1}, "Snape": {"_count": 1}, "my": {"_count": 1}, "Hagrids": {"_count": 1}, "Dumbledores": {"_count": 1}, "top": {"_count": 1}, "ornately": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}}, "as": {"_count": 1, "still": {"_count": 1}}, "back": {"_count": 5, "down": {"_count": 5}}, "astride": {"_count": 2, "it": {"_count": 1}, "an": {"_count": 1}}, "in": {"_count": 69, "it": {"_count": 3}, "the": {"_count": 24}, "a": {"_count": 21}, "an": {"_count": 3}, "front": {"_count": 4}, "one": {"_count": 2}, "his": {"_count": 6}, "two": {"_count": 1}, "her": {"_count": 2}, "chairs": {"_count": 1}, "bed": {"_count": 1}, "roomy": {"_count": 1}}, "next": {"_count": 10, "to": {"_count": 10}}, "there": {"_count": 17, "": {"_count": 2}, "with": {"_count": 2}, "humming": {"_count": 1}, "and": {"_count": 1}, "waiting": {"_count": 1}, "except": {"_count": 1}, "again": {"_count": 1}, "almost": {"_count": 1}, "was": {"_count": 1}, "clipboard": {"_count": 1}, "wearin": {"_count": 1}, "a": {"_count": 1}, "until": {"_count": 1}, "thinking": {"_count": 1}, "like": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "with": {"_count": 24, "the": {"_count": 1}, "his": {"_count": 5}, "her": {"_count": 6}, "Ron": {"_count": 2}, "Fred": {"_count": 1}, "him": {"_count": 3}, "a": {"_count": 1}, "Neville": {"_count": 1}, "Crookshanks": {"_count": 1}, "shoes": {"_count": 1}, "their": {"_count": 2}}, "alone": {"_count": 11, "in": {"_count": 3}, "reading": {"_count": 1}, "at": {"_count": 2}, "underneath": {"_count": 1}, "shifted": {"_count": 1}, "watching": {"_count": 1}, "": {"_count": 1}, "playing": {"_count": 1}}, "outside": {"_count": 3, "with": {"_count": 1}, "Florean": {"_count": 1}, "on": {"_count": 1}}, "at": {"_count": 28, "the": {"_count": 20}, "a": {"_count": 5}, "one": {"_count": 1}, "his": {"_count": 1}, "another": {"_count": 1}}, "comfortably": {"_count": 1, "side": {"_count": 1}}, "puffyeyed": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 24, "and": {"_count": 4}, "in": {"_count": 2}, "so": {"_count": 1}, "putting": {"_count": 1}, "rubbing": {"_count": 1}, "at": {"_count": 1}, "now": {"_count": 2}, "straighter": {"_count": 2}, "again": {"_count": 2}, "there": {"_count": 1}, "a": {"_count": 1}, "hopefully": {"_count": 1}, "straight": {"_count": 3}, "quickly": {"_count": 1}, "much": {"_count": 1}}, "down": {"_count": 35, "next": {"_count": 7}, "and": {"_count": 7}, "in": {"_count": 4}, "on": {"_count": 7}, "at": {"_count": 2}, "opposite": {"_count": 1}, "those": {"_count": 1}, "as": {"_count": 1}, "again": {"_count": 1}, "beside": {"_count": 2}, "": {"_count": 1}, "behind": {"_count": 1}}, "looking": {"_count": 1, "sickened": {"_count": 1}}, "behind": {"_count": 6, "the": {"_count": 2}, "you": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "right": {"_count": 7, "behind": {"_count": 2}, "in": {"_count": 1}, "at": {"_count": 1}, "next": {"_count": 1}, "beside": {"_count": 1}, "now": {"_count": 1}}, "crying": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 7, "the": {"_count": 1}, "laughing": {"_count": 1}, "him": {"_count": 2}, "Slughorn": {"_count": 2}, "Yaxley": {"_count": 1}}, "fast": {"_count": 1, "asleep": {"_count": 1}}, "a": {"_count": 4, "few": {"_count": 2}, "short": {"_count": 2}}, "room": {"_count": 28, "window": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 8}, "with": {"_count": 3}, "wall": {"_count": 1}, "part": {"_count": 1}, "in": {"_count": 1}, "where": {"_count": 3}, "having": {"_count": 1}, "why": {"_count": 1}, "burst": {"_count": 1}, "windows": {"_count": 1}, "the": {"_count": 1}, "just": {"_count": 1}, "floor": {"_count": 1}, "Harry": {"_count": 1}, "is": {"_count": 1}}, "close": {"_count": 2, "by": {"_count": 2}}, "opposite": {"_count": 4, "him": {"_count": 3}, "Harry": {"_count": 1}}, "himself": {"_count": 1, "between": {"_count": 1}}, "beside": {"_count": 10, "Bill": {"_count": 1}, "him": {"_count": 1}, "Mr": {"_count": 1}, "the": {"_count": 3}, "Harry": {"_count": 1}, "Ginny": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}}, "position": {"_count": 7, "": {"_count": 1}, "against": {"_count": 1}, "panting": {"_count": 1}, "hastily": {"_count": 1}, "his": {"_count": 1}, "again": {"_count": 1}, "then": {"_count": 1}}, "together": {"_count": 4, "against": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 2}}, "apart": {"_count": 1, "from": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "smugly": {"_count": 1, "beside": {"_count": 1}}, "Professor": {"_count": 1, "Karkaroff": {"_count": 1}}, "here": {"_count": 9, "on": {"_count": 2}, "he": {"_count": 1}, "all": {"_count": 1}, "they": {"_count": 1}, "trying": {"_count": 1}, "talking": {"_count": 1}, "with": {"_count": 1}, "now": {"_count": 1}}, "ashenfaced": {"_count": 1, "in": {"_count": 1}}, "cross": {"_count": 1, "legged": {"_count": 1}}, "to": {"_count": 2, "tell": {"_count": 1}, "the": {"_count": 1}}, "crosslegged": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "bolt": {"_count": 3, "upright": {"_count": 3}}, "so": {"_count": 2, "far": {"_count": 1}, "low": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "an": {"_count": 1, "important": {"_count": 1}}, "hunched": {"_count": 1, "over": {"_count": 1}}, "not": {"_count": 1, "far": {"_count": 1}}, "safely": {"_count": 1, "in": {"_count": 1}}, "upright": {"_count": 1, "in": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "four": {"_count": 1, "seats": {"_count": 1}}, "Lupin": {"_count": 1, "was": {"_count": 1}}, "very": {"_count": 1, "near": {"_count": 1}}, "sidesaddle": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "you": {"_count": 1}}, "side": {"_count": 2, "by": {"_count": 2}}, "well": {"_count": 1, "back": {"_count": 1}}, "again": {"_count": 1, "in": {"_count": 1}}, "still": {"_count": 1, "just": {"_count": 1}}, "almost": {"_count": 1, "directly": {"_count": 1}}, "rose": {"_count": 1, "gracefully": {"_count": 1}}, "openmouthed": {"_count": 1, "staring": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "O": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}}, "wall": {"_count": 353, "": {"_count": 84, ".": {"_count": 82}, "!": {"_count": 1}, "?": {"_count": 1}}, "outside": {"_count": 1, "was": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 2, "day": {"_count": 2}}, "and": {"_count": 34, "walked": {"_count": 1}, "fell": {"_count": 1}, "wiping": {"_count": 1}, "sinking": {"_count": 1}, "slid": {"_count": 2}, "dashed": {"_count": 1}, "come": {"_count": 1}, "as": {"_count": 1}, "went": {"_count": 1}, "replaced": {"_count": 1}, "listened": {"_count": 1}, "set": {"_count": 1}, "was": {"_count": 2}, "wrote": {"_count": 2}, "the": {"_count": 2}, "handed": {"_count": 1}, "a": {"_count": 2}, "crack": {"_count": 1}, "Phineas": {"_count": 1}, "sprinted": {"_count": 1}, "kicked": {"_count": 1}, "pointed": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "tried": {"_count": 1}, "splintered": {"_count": 1}, "it": {"_count": 1}, "shattered": {"_count": 1}, "steered": {"_count": 1}}, "above": {"_count": 2, "the": {"_count": 2}}, "three": {"_count": 2, "times": {"_count": 2}}, "Hagrid": {"_count": 1, "got": {"_count": 1}}, "to": {"_count": 7, "stop": {"_count": 1}, "the": {"_count": 3}, "Kingsley": {"_count": 1}, "their": {"_count": 1}, "Harrys": {"_count": 1}}, "back": {"_count": 1, "through": {"_count": 1}}, "counting": {"_count": 2, "down": {"_count": 2}}, "opposite": {"_count": 8, "looking": {"_count": 1}, "him": {"_count": 2}, "": {"_count": 1}, "an": {"_count": 1}, "and": {"_count": 2}, "the": {"_count": 1}}, "her": {"_count": 2, "mouth": {"_count": 1}, "wand": {"_count": 1}}, "breathing": {"_count": 2, "deeply": {"_count": 2}}, "facing": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 9, "none": {"_count": 1}, "a": {"_count": 2}, "hidden": {"_count": 1}, "sliding": {"_count": 1}, "now": {"_count": 1}, "rotating": {"_count": 1}, "just": {"_count": 1}, "not": {"_count": 1}}, "had": {"_count": 2, "just": {"_count": 1}, "blasted": {"_count": 1}}, "making": {"_count": 1, "the": {"_count": 1}}, "wiping": {"_count": 1, "sweat": {"_count": 1}}, "Harry": {"_count": 3, "leaned": {"_count": 1}, "actually": {"_count": 1}, "who": {"_count": 1}}, "behind": {"_count": 26, "the": {"_count": 3}, "her": {"_count": 3}, "Filchs": {"_count": 1}, "him": {"_count": 4}, "Lupin": {"_count": 1}, "Snape": {"_count": 1}, "through": {"_count": 1}, "it": {"_count": 2}, "split": {"_count": 1}, "Dumbledores": {"_count": 2}, "them": {"_count": 4}, "which": {"_count": 1}, "Malfoys": {"_count": 1}, "their": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "Durmstrang": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "at": {"_count": 1}}, "by": {"_count": 2, "inches": {"_count": 1}, "Millicent": {"_count": 1}}, "of": {"_count": 20, "the": {"_count": 9}, "spiders": {"_count": 1}, "broken": {"_count": 1}, "a": {"_count": 1}, "books": {"_count": 2}, "Honeydukes": {"_count": 1}, "Hagrid": {"_count": 1}, "watching": {"_count": 1}, "Buckbeak": {"_count": 1}, "rock": {"_count": 1}, "his": {"_count": 1}}, "burst": {"_count": 1, "a": {"_count": 1}}, "listening": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "ahead": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "between": {"_count": 3, "two": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}}, "about": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 4, "Mrs": {"_count": 1}, "Dean": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "bearing": {"_count": 1, "the": {"_count": 1}}, "lit": {"_count": 1, "by": {"_count": 1}}, "as": {"_count": 6, "the": {"_count": 1}, "one": {"_count": 1}, "Mr": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "thud": {"_count": 1, "closed": {"_count": 1}}, "slid": {"_count": 3, "open": {"_count": 1}, "back": {"_count": 1}, "down": {"_count": 1}}, "cracked": {"_count": 1, "open": {"_count": 1}}, "in": {"_count": 4, "Magnolia": {"_count": 1}, "the": {"_count": 2}, "front": {"_count": 1}}, "forever": {"_count": 1, "or": {"_count": 1}}, "were": {"_count": 3, "Special": {"_count": 1}, "hurtling": {"_count": 1}, "swallowed": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 5, "slid": {"_count": 1}, "made": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}}, "looking": {"_count": 1, "horrified": {"_count": 1}}, "around": {"_count": 4, "Harry": {"_count": 1}, "himself": {"_count": 1}, "Gilderoys": {"_count": 1}, "them": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 2, "which": {"_count": 2}}, "heads": {"_count": 1, "together": {"_count": 1}}, "before": {"_count": 1, "Professor": {"_count": 1}}, "but": {"_count": 3, "it": {"_count": 1}, "again": {"_count": 1}, "through": {"_count": 1}}, "folded": {"_count": 1, "her": {"_count": 1}}, "on": {"_count": 3, "what": {"_count": 1}, "the": {"_count": 1}, "either": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 3, "divided": {"_count": 1}, "concealed": {"_count": 1}, "separated": {"_count": 1}}, "they": {"_count": 1, "saw": {"_count": 1}}, "sniggered": {"_count": 1, "again": {"_count": 1}}, "space": {"_count": 1, "available": {"_count": 1}}, "clutching": {"_count": 1, "at": {"_count": 1}}, "sniggering": {"_count": 1, "again": {"_count": 1}}, "just": {"_count": 1, "ahead": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "closed": {"_count": 1, "behind": {"_count": 1}}, "his": {"_count": 2, "magical": {"_count": 1}, "heart": {"_count": 1}}, "captioned": {"_count": 1, "URQUHART": {"_count": 1}}, "wore": {"_count": 1, "Father": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 3, "quill": {"_count": 1}, "solid": {"_count": 1}, "little": {"_count": 1}}, "panting": {"_count": 1, "and": {"_count": 1}}, "immediately": {"_count": 1, "and": {"_count": 1}}, "sped": {"_count": 1, "around": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "the": {"_count": 3, "archway": {"_count": 1}, "Prime": {"_count": 1}, "curses": {"_count": 1}}, "spun": {"_count": 1, "and": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "fully": {"_count": 1, "mended": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "rumbled": {"_count": 1, "to": {"_count": 1}}, "blocking": {"_count": 1, "his": {"_count": 1}}, "beside": {"_count": 4, "the": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 1}}, "well": {"_count": 1, "I": {"_count": 1}}, "revealing": {"_count": 1, "the": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "turning": {"_count": 1, "idly": {"_count": 1}}, "though": {"_count": 1, "its": {"_count": 1}}, "which": {"_count": 2, "opened": {"_count": 2}}, "he": {"_count": 1, "suggested": {"_count": 1}}, "or": {"_count": 1, "provoke": {"_count": 1}}, "apparently": {"_count": 1, "unable": {"_count": 1}}, "irritably": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "at": {"_count": 1}}, "remained": {"_count": 1, "firmly": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "please": {"_count": 1, "I": {"_count": 1}}, "propped": {"_count": 1, "like": {"_count": 1}}, "A": {"_count": 1, "sallowfaced": {"_count": 1}}, "where": {"_count": 3, "it": {"_count": 1}, "Rons": {"_count": 1}, "the": {"_count": 1}}, "erupted": {"_count": 1, "out": {"_count": 1}}, "throwing": {"_count": 1, "odd": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "made": {"_count": 1}}, "protruding": {"_count": 1, "several": {"_count": 1}}, "theyre": {"_count": 1, "still": {"_count": 1}}, "heard": {"_count": 1, "Hermione": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "closely": {"_count": 1, "followed": {"_count": 1}}, "beyond": {"_count": 1, "which": {"_count": 1}}, "He": {"_count": 1, "pointed": {"_count": 1}}, "One": {"_count": 1, "of": {"_count": 1}}, "watching": {"_count": 1, "a": {"_count": 1}}}, "one": {"_count": 2315, "it": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 2}}, "": {"_count": 176, ".": {"_count": 134}, "!": {"_count": 23}, "?": {"_count": 19}}, "You": {"_count": 1, "Know": {"_count": 1}}, "knows": {"_count": 7, "why": {"_count": 2}, "how": {"_count": 2}, "whether": {"_count": 1}, "about": {"_count": 1}, "better": {"_count": 1}}, "myself": {"_count": 2, "above": {"_count": 1}, "said": {"_count": 1}}, "of": {"_count": 524, "them": {"_count": 73}, "her": {"_count": 15}, "you": {"_count": 7}, "your": {"_count": 6}, "the": {"_count": 236}, "his": {"_count": 36}, "Fred": {"_count": 3}, "those": {"_count": 23}, "these": {"_count": 18}, "their": {"_count": 12}, "my": {"_count": 6}, "Harrys": {"_count": 6}, "our": {"_count": 11}, "its": {"_count": 5}, "us": {"_count": 15}, "Freds": {"_count": 1}, "Rons": {"_count": 3}, "whom": {"_count": 2}, "thems": {"_count": 2}, "which": {"_count": 1}, "Lockharts": {"_count": 1}, "Uncle": {"_count": 2}, "Marges": {"_count": 1}, "Fortescue": {"_count": 1}, "that": {"_count": 2}, "Moodys": {"_count": 1}, "mine": {"_count": 3}, "great": {"_count": 1}, "Dobby": {"_count": 1}, "mingled": {"_count": 1}, "Dudleys": {"_count": 2}, "Sirius": {"_count": 1}, "a": {"_count": 1}, "yous": {"_count": 1}, "course": {"_count": 1}, "Dumbledores": {"_count": 1}, "em": {"_count": 1}, "Madam": {"_count": 1}, "Hermiones": {"_count": 3}, "Slytherin": {"_count": 1}, "Daviess": {"_count": 1}, "being": {"_count": 1}, "Nevilles": {"_count": 1}, "all": {"_count": 1}, "Marvolos": {"_count": 1}, "selecting": {"_count": 1}, "Hagrid": {"_count": 1}, "Voldemorts": {"_count": 1}, "sorrowful": {"_count": 1}, "Mr": {"_count": 1}, "Mafaldas": {"_count": 1}, "Perkinss": {"_count": 1}, "me": {"_count": 1}, "three": {"_count": 1}, "Fleurs": {"_count": 1}, "polite": {"_count": 1}}, "from": {"_count": 11, "Mommy": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}, "each": {"_count": 1}, "her": {"_count": 2}, "that": {"_count": 1}, "a": {"_count": 1}}, "who": {"_count": 88, "held": {"_count": 1}, "saw": {"_count": 3}, "can": {"_count": 6}, "knows": {"_count": 3}, "has": {"_count": 3}, "ever": {"_count": 1}, "told": {"_count": 1}, "wanted": {"_count": 3}, "could": {"_count": 2}, "made": {"_count": 1}, "had": {"_count": 14}, "brought": {"_count": 1}, "got": {"_count": 2}, "collapses": {"_count": 1}, "didnt": {"_count": 2}, "knew": {"_count": 1}, "was": {"_count": 6}, "found": {"_count": 2}, "decides": {"_count": 1}, "gets": {"_count": 1}, "stuck": {"_count": 1}, "gave": {"_count": 1}, "might": {"_count": 1}, "reaches": {"_count": 1}, "remains": {"_count": 1}, "": {"_count": 1}, "murdered": {"_count": 1}, "started": {"_count": 1}, "thinks": {"_count": 1}, "actually": {"_count": 1}, "is": {"_count": 1}, "will": {"_count": 1}, "dislikes": {"_count": 1}, "claimed": {"_count": 1}, "scares": {"_count": 1}, "should": {"_count": 1}, "almost": {"_count": 1}, "rises": {"_count": 1}, "would": {"_count": 1}, "realized": {"_count": 3}, "kept": {"_count": 1}, "stole": {"_count": 1}, "submitted": {"_count": 1}, "collapsed": {"_count": 1}, "ends": {"_count": 1}, "said": {"_count": 1}, "needs": {"_count": 1}, "stopped": {"_count": 1}, "always": {"_count": 1}, "keeps": {"_count": 1}, "triumphed": {"_count": 1}}, "ever": {"_count": 5, "did": {"_count": 1}, "in": {"_count": 1}, "lived": {"_count": 1}, "since": {"_count": 2}}, "thing": {"_count": 56, "the": {"_count": 2}, "when": {"_count": 1}, "Voldemort": {"_count": 1}, "you": {"_count": 2}, "and": {"_count": 3}, "on": {"_count": 1}, "last": {"_count": 1}, "from": {"_count": 1}, "I": {"_count": 3}, "left": {"_count": 1}, "to": {"_count": 4}, "he": {"_count": 4}, "": {"_count": 5}, "it": {"_count": 1}, "for": {"_count": 3}, "after": {"_count": 1}, "Cedric": {"_count": 1}, "though": {"_count": 2}, "only": {"_count": 1}, "At": {"_count": 1}, "but": {"_count": 1}, "hes": {"_count": 1}, "worrying": {"_count": 1}, "that": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 2}, "Their": {"_count": 1}, "Malfoy": {"_count": 1}, "mattered": {"_count": 1}, "right": {"_count": 1}, "Dudley": {"_count": 1}, "weve": {"_count": 1}, "hanging": {"_count": 1}, "his": {"_count": 1}, "very": {"_count": 1}, "said": {"_count": 1}}, "and": {"_count": 29, "Harry": {"_count": 1}, "Ill": {"_count": 2}, "Wood": {"_count": 1}, "since": {"_count": 1}, "one": {"_count": 1}, "and": {"_count": 1}, "think": {"_count": 1}, "soon": {"_count": 1}, "a": {"_count": 2}, "returned": {"_count": 1}, "saw": {"_count": 1}, "Dumbledores": {"_count": 1}, "tapped": {"_count": 1}, "Umbridge": {"_count": 1}, "it": {"_count": 2}, "get": {"_count": 1}, "then": {"_count": 2}, "waved": {"_count": 1}, "only": {"_count": 2}, "Mrs": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}, "operated": {"_count": 1}, "Im": {"_count": 1}}, "saw": {"_count": 2, "how": {"_count": 1}, "this": {"_count": 1}}, "second": {"_count": 4, "Piers": {"_count": 1}, "": {"_count": 2}, "hardly": {"_count": 1}}, "hand": {"_count": 39, "and": {"_count": 18}, "": {"_count": 3}, "Ginny": {"_count": 1}, "I": {"_count": 1}, "Tom": {"_count": 1}, "she": {"_count": 1}, "clutched": {"_count": 1}, "still": {"_count": 2}, "on": {"_count": 3}, "pinching": {"_count": 1}, "he": {"_count": 2}, "wand": {"_count": 1}, "grasping": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "for": {"_count": 1}}, "ear": {"_count": 1, "lay": {"_count": 1}}, "in": {"_count": 20, "the": {"_count": 9}, "our": {"_count": 1}, "Gryffindor": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}, "Wimbledon": {"_count": 1}, "Elephant": {"_count": 1}, "their": {"_count": 2}, "return": {"_count": 1}, "her": {"_count": 1}, "which": {"_count": 1}}, "for": {"_count": 19, "Uncle": {"_count": 1}, "visitors": {"_count": 1}, "him": {"_count": 1}, "years": {"_count": 2}, "a": {"_count": 2}, "each": {"_count": 2}, "three": {"_count": 1}, "telling": {"_count": 1}, "someone": {"_count": 1}, "himself": {"_count": 2}, "whom": {"_count": 1}, "you": {"_count": 1}, "free": {"_count": 1}, "me": {"_count": 1}, "": {"_count": 1}}, "where": {"_count": 8, "Dudley": {"_count": 2}, "you": {"_count": 1}, "there": {"_count": 1}, "my": {"_count": 1}, "I": {"_count": 1}, "Luna": {"_count": 1}, "": {"_count": 1}}, "trip": {"_count": 1, "upstairs": {"_count": 1}}, "could": {"_count": 10, "go": {"_count": 1}, "wait": {"_count": 1}, "ever": {"_count": 1}, "say": {"_count": 1}, "hear": {"_count": 1}, "argue": {"_count": 2}, "tell": {"_count": 1}, "have": {"_count": 1}, "see": {"_count": 1}}, "Out": {"_count": 1, "": {"_count": 1}}, "dared": {"_count": 1, "argue": {"_count": 1}}, "somehow": {"_count": 1, "": {"_count": 1}}, "does": {"_count": 5, "": {"_count": 2}, "but": {"_count": 1}, "miss": {"_count": 1}, "not": {"_count": 1}}, "YouKnowWho": {"_count": 3, "was": {"_count": 3}}, "except": {"_count": 1, "you": {"_count": 1}}, "more": {"_count": 32, "word": {"_count": 2}, "owl": {"_count": 1}, "thing": {"_count": 2}, "point": {"_count": 1}, "time": {"_count": 7}, "corridor": {"_count": 1}, "crack": {"_count": 1}, "go": {"_count": 2}, "death": {"_count": 1}, "minute": {"_count": 1}, "lizardlike": {"_count": 1}, "Death": {"_count": 1}, "little": {"_count": 1}, "snowball": {"_count": 1}, "But": {"_count": 1}, "foul": {"_count": 1}, "jet": {"_count": 1}, "than": {"_count": 1}, "day": {"_count": 1}, "dead": {"_count": 1}, "Master": {"_count": 1}, "short": {"_count": 1}, "he": {"_count": 1}}, "last": {"_count": 29, "terrified": {"_count": 1}, "time": {"_count": 1}, "desperate": {"_count": 1}, "checkup": {"_count": 1}, "snort": {"_count": 1}, "year": {"_count": 1}, "cup": {"_count": 1}, "lesson": {"_count": 1}, "Stunning": {"_count": 1}, "thing": {"_count": 3}, "look": {"_count": 2}, "fleeting": {"_count": 1}, "bottle": {"_count": 1}, "paragraph": {"_count": 1}, "deep": {"_count": 1}, "golden": {"_count": 1}, "sweeping": {"_count": 2}, "view": {"_count": 1}, "but": {"_count": 1}, "hope": {"_count": 2}, "burning": {"_count": 1}, "chance": {"_count": 1}, "effort": {"_count": 1}, "piece": {"_count": 1}}, "o": {"_count": 9, "the": {"_count": 5}, "his": {"_count": 1}, "them": {"_count": 3}}, "side": {"_count": 22, "to": {"_count": 1}, "": {"_count": 4}, "a": {"_count": 1}, "of": {"_count": 8}, "whenever": {"_count": 1}, "and": {"_count": 2}, "still": {"_count": 1}, "thats": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}}, "said": {"_count": 33, "Hagrid": {"_count": 1}, "Fred": {"_count": 2}, "Hermione": {"_count": 4}, "Harry": {"_count": 11}, "Neville": {"_count": 1}, "Wood": {"_count": 1}, "anything": {"_count": 2}, "Mr": {"_count": 1}, "Ron": {"_count": 4}, "Sirius": {"_count": 1}, "Moody": {"_count": 1}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}, "Ernie": {"_count": 1}, "Dedalus": {"_count": 1}}, "really": {"_count": 2, "knows": {"_count": 1}, "seems": {"_count": 1}}, "other": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "platform": {"_count": 1, "and": {"_count": 1}}, "next": {"_count": 2, "to": {"_count": 2}}, "another": {"_count": 54, "in": {"_count": 6}, "and": {"_count": 4}, "wondering": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 12}, "to": {"_count": 1}, "their": {"_count": 1}, "stunned": {"_count": 1}, "but": {"_count": 2}, "the": {"_count": 1}, "so": {"_count": 1}, "surprised": {"_count": 1}, "bouncing": {"_count": 1}, "bumping": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "it": {"_count": 1}, "nervously": {"_count": 1}, "by": {"_count": 1}, "almost": {"_count": 1}, "through": {"_count": 1}, "exchanging": {"_count": 1}, "under": {"_count": 1}, "that": {"_count": 1}, "rather": {"_count": 1}, "for": {"_count": 1}, "tried": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "however": {"_count": 1}, "messages": {"_count": 1}, "frozen": {"_count": 1}, "with": {"_count": 1}}, "end": {"_count": 7, "and": {"_count": 1}, "of": {"_count": 6}}, "once": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Ron": {"_count": 4, "wouldnt": {"_count": 1}, "said": {"_count": 2}, "changed": {"_count": 1}}, "she": {"_count": 8, "said": {"_count": 4}, "could": {"_count": 1}, "ordered": {"_count": 1}, "thinks": {"_count": 1}, "pointed": {"_count": 1}}, "at": {"_count": 6, "once": {"_count": 2}, "the": {"_count": 3}, "Hogwarts": {"_count": 1}}, "was": {"_count": 21, "talking": {"_count": 1}, "allowed": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 1}, "sneaking": {"_count": 1}, "with": {"_count": 1}, "coming": {"_count": 1}, "pointing": {"_count": 1}, "very": {"_count": 2}, "from": {"_count": 2}, "telling": {"_count": 1}, "calling": {"_count": 1}, "Ron": {"_count": 1}, "Michael": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "firing": {"_count": 1}, "my": {"_count": 1}, "much": {"_count": 1}}, "shed": {"_count": 1, "need": {"_count": 1}}, "the": {"_count": 14, "ghosts": {"_count": 1}, "bird": {"_count": 1}, "night": {"_count": 1}, "pairs": {"_count": 1}, "Weasley": {"_count": 1}, "Bulgarians": {"_count": 1}, "Cruciatus": {"_count": 1}, "Beauxbatons": {"_count": 1}, "usual": {"_count": 1}, "prophecy": {"_count": 1}, "boys": {"_count": 1}, "Dark": {"_count": 1}, "Patronuses": {"_count": 1}, "Death": {"_count": 1}}, "wanted": {"_count": 2, "Dudley": {"_count": 1}, "him": {"_count": 1}}, "table": {"_count": 1, "roast": {"_count": 1}}, "door": {"_count": 4, "to": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "toe": {"_count": 1, "out": {"_count": 1}}, "taught": {"_count": 1, "by": {"_count": 1}}, "wave": {"_count": 1, "of": {"_count": 1}}, "room": {"_count": 2, "inside": {"_count": 1}, "is": {"_count": 1}}, "though": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "ball": {"_count": 1, "where": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 2}}, "corridor": {"_count": 2, "then": {"_count": 1}, "the": {"_count": 1}}, "Keeper": {"_count": 1, "said": {"_count": 1}}, "can": {"_count": 7, "stand": {"_count": 1}, "possibly": {"_count": 1}, "use": {"_count": 1}, "get": {"_count": 2}, "help": {"_count": 1}, "": {"_count": 1}}, "seems": {"_count": 2, "to": {"_count": 2}}, "great": {"_count": 4, "leap": {"_count": 1}, "link": {"_count": 1}, "flaw": {"_count": 1}, "favor": {"_count": 1}}, "look": {"_count": 5, "at": {"_count": 4}, "of": {"_count": 1}}, "weve": {"_count": 1, "all": {"_count": 1}}, "seemed": {"_count": 3, "to": {"_count": 2}, "very": {"_count": 1}}, "hundred": {"_count": 6, "and": {"_count": 4}, "percent": {"_count": 2}}, "Hagrid": {"_count": 3, "Ive": {"_count": 1}, "ever": {"_count": 1}, "had": {"_count": 1}}, "Potions": {"_count": 1, "class": {"_count": 1}}, "parcel": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 22, "a": {"_count": 4}, "the": {"_count": 8}, "no": {"_count": 1}, "long": {"_count": 1}, "an": {"_count": 1}, "something": {"_count": 1}, "Crouchs": {"_count": 1}, "Hermiones": {"_count": 1}, "Mr": {"_count": 1}, "Sirius": {"_count": 1}, "Hagrid": {"_count": 1}, "chairs": {"_count": 1}}, "high": {"_count": 1, "unbroken": {"_count": 1}}, "else": {"_count": 18, "": {"_count": 1}, "would": {"_count": 2}, "can": {"_count": 2}, "now": {"_count": 1}, "had": {"_count": 1}, "seemed": {"_count": 1}, "cared": {"_count": 1}, "collapsed": {"_count": 1}, "heard": {"_count": 1}, "there": {"_count": 1}, "is": {"_count": 1}, "got": {"_count": 1}, "has": {"_count": 2}, "could": {"_count": 1}, "knows": {"_count": 1}}, "thought": {"_count": 1, "in": {"_count": 1}}, "particularly": {"_count": 2, "wet": {"_count": 1}, "difficult": {"_count": 1}}, "I": {"_count": 11, "ever": {"_count": 1}, "don": {"_count": 1}, "had": {"_count": 1}, "burped": {"_count": 1}, "just": {"_count": 1}, "must": {"_count": 1}, "think": {"_count": 1}, "bought": {"_count": 1}, "was": {"_count": 1}, "procured": {"_count": 1}, "am": {"_count": 1}}, "had": {"_count": 4, "done": {"_count": 1}, "noticed": {"_count": 1}, "a": {"_count": 1}, "ever": {"_count": 1}}, "afternoon": {"_count": 4, "throwing": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}}, "breakfast": {"_count": 1, "time": {"_count": 1}}, "oclock": {"_count": 11, "in": {"_count": 7}, "the": {"_count": 1}, "But": {"_count": 1}, "making": {"_count": 1}, "this": {"_count": 1}}, "night": {"_count": 17, "": {"_count": 4}, "theyd": {"_count": 1}, "we": {"_count": 1}, "a": {"_count": 2}, "when": {"_count": 2}, "in": {"_count": 2}, "on": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "Greyback": {"_count": 1}}, "go": {"_count": 2, "though": {"_count": 1}, "": {"_count": 1}}, "piece": {"_count": 2, "": {"_count": 1}, "bathing": {"_count": 1}}, "takin": {"_count": 1, "risks": {"_count": 1}}, "dead": {"_count": 2, "last": {"_count": 1}, "ones": {"_count": 1}}, "way": {"_count": 7, "an": {"_count": 1}, "to": {"_count": 3}, "or": {"_count": 2}, "in": {"_count": 1}}, "ter": {"_count": 3, "be": {"_count": 1}, "see": {"_count": 1}, "sit": {"_count": 1}}, "step": {"_count": 5, "toward": {"_count": 2}, "down": {"_count": 1}, "further": {"_count": 1}, "inside": {"_count": 1}}, "looked": {"_count": 3, "younger": {"_count": 1}, "it": {"_count": 1}, "twice": {"_count": 1}}, "by": {"_count": 23, "one": {"_count": 21}, "the": {"_count": 2}}, "into": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 1}, "Nevilles": {"_count": 1}}, "probably": {"_count": 1, "silver": {"_count": 1}}, "there": {"_count": 5, "no": {"_count": 1}, "is": {"_count": 1}, "cloak": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}}, "they": {"_count": 9, "had": {"_count": 3}, "made": {"_count": 2}, "moved": {"_count": 1}, "stood": {"_count": 1}, "fell": {"_count": 1}, "were": {"_count": 1}}, "Harry": {"_count": 10, "whispered": {"_count": 1}, "suggested": {"_count": 1}, "": {"_count": 3}, "kicked": {"_count": 1}, "had": {"_count": 3}, "glanced": {"_count": 1}}, "will": {"_count": 7, "get": {"_count": 3}, "mind": {"_count": 1}, "be": {"_count": 1}, "make": {"_count": 1}, "": {"_count": 1}}, "swallow": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "gulp": {"_count": 6, "": {"_count": 5}, "and": {"_count": 1}}, "terrible": {"_count": 1, "moment": {"_count": 1}}, "as": {"_count": 5, "young": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}, "blackened": {"_count": 1}, "part": {"_count": 1}}, "day": {"_count": 22, "": {"_count": 9}, "and": {"_count": 2}, "with": {"_count": 1}, "fear": {"_count": 1}, "off": {"_count": 1}, "hadnt": {"_count": 1}, "be": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "become": {"_count": 1}, "take": {"_count": 1}, "amongst": {"_count": 1}, "a": {"_count": 1}}, "jot": {"_count": 1, "": {"_count": 1}}, "year": {"_count": 5, "old": {"_count": 1}, "ago": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}}, "sound": {"_count": 1, "Harry": {"_count": 1}}, "house": {"_count": 1, "and": {"_count": 1}}, "family": {"_count": 1, "forever": {"_count": 1}}, "man": {"_count": 3, "ended": {"_count": 1}, "flanked": {"_count": 1}, "": {"_count": 1}}, "need": {"_count": 2, "ever": {"_count": 1}, "get": {"_count": 1}}, "guilty": {"_count": 1, "face": {"_count": 1}}, "he": {"_count": 23, "caught": {"_count": 1}, "preferred": {"_count": 1}, "didnt": {"_count": 1}, "remembered": {"_count": 1}, "had": {"_count": 5}, "himself": {"_count": 1}, "patted": {"_count": 1}, "could": {"_count": 1}, "was": {"_count": 3}, "said": {"_count": 1}, "cant": {"_count": 1}, "nearly": {"_count": 1}, "suspected": {"_count": 1}, "panted": {"_count": 1}, "sought": {"_count": 1}, "pointed": {"_count": 1}, "indicated": {"_count": 1}}, "back": {"_count": 2, "through": {"_count": 1}, "and": {"_count": 1}}, "sunny": {"_count": 1, "morning": {"_count": 1}}, "off": {"_count": 1, "\u2018Im": {"_count": 1}}, "hed": {"_count": 2, "just": {"_count": 1}, "thought": {"_count": 1}}, "grate": {"_count": 1, "too": {"_count": 1}}, "gold": {"_count": 1, "Galleon": {"_count": 1}}, "small": {"_count": 5, "Ford": {"_count": 1}, "dingy": {"_count": 1}, "cottage": {"_count": 1}, "unconscious": {"_count": 1}, "taste": {"_count": 1}}, "would": {"_count": 10, "see": {"_count": 1}, "be": {"_count": 2}, "know": {"_count": 1}, "ever": {"_count": 2}, "do": {"_count": 1}, "almost": {"_count": 1}, "have": {"_count": 1}, "like": {"_count": 1}}, "that": {"_count": 31, "hits": {"_count": 1}, "scores": {"_count": 1}, "she": {"_count": 1}, "burned": {"_count": 1}, "he": {"_count": 4}, "had": {"_count": 2}, "matters": {"_count": 1}, "many": {"_count": 1}, "convincing": {"_count": 1}, "suited": {"_count": 1}, "led": {"_count": 1}, "could": {"_count": 1}, "Dudley": {"_count": 1}, "may": {"_count": 1}, "I": {"_count": 1}, "made": {"_count": 1}, "Harry": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}, "Slughorn": {"_count": 1}, "the": {"_count": 1}, "needs": {"_count": 1}, "gives": {"_count": 1}, "hung": {"_count": 1}, "they": {"_count": 1}, "continued": {"_count": 1}, "tells": {"_count": 1}}, "too": {"_count": 4, "": {"_count": 3}, "have": {"_count": 1}}, "person": {"_count": 10, "who": {"_count": 2}, "wasnt": {"_count": 1}, "as": {"_count": 1}, "was": {"_count": 1}, "raised": {"_count": 1}, "within": {"_count": 1}, "whom": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "good": {"_count": 6, "thing": {"_count": 4}, "hex": {"_count": 1}, "squirt": {"_count": 1}}, "before": {"_count": 3, "greenhouse": {"_count": 1}, "": {"_count": 2}}, "is": {"_count": 10, "the": {"_count": 1}, "particularly": {"_count": 1}, "AllKnowing": {"_count": 1}, "unique": {"_count": 1}, "Harry": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "safest": {"_count": 1}, "to": {"_count": 1}}, "on": {"_count": 9, "the": {"_count": 1}, "their": {"_count": 1}, "Thursday": {"_count": 1}, "me": {"_count": 1}, "top": {"_count": 3}, "that": {"_count": 1}, "Krums": {"_count": 1}}, "asked": {"_count": 1, "your": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 1, "sign": {"_count": 1}}, "tonight": {"_count": 1, "and": {"_count": 1}}, "corner": {"_count": 3, "a": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}}, "word": {"_count": 5, "of": {"_count": 4}, "repeated": {"_count": 1}}, "bit": {"_count": 2, "of": {"_count": 2}}, "stormy": {"_count": 1, "Saturday": {"_count": 1}}, "month": {"_count": 2, "into": {"_count": 1}, "beforehand": {"_count": 1}}, "but": {"_count": 7, "he": {"_count": 3}, "your": {"_count": 1}, "three": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 1}}, "wants": {"_count": 3, "to": {"_count": 3}}, "player": {"_count": 1, "like": {"_count": 1}}, "knee": {"_count": 1, "still": {"_count": 1}}, "idea": {"_count": 1, "firmly": {"_count": 1}}, "wall": {"_count": 3, "lit": {"_count": 1}, "and": {"_count": 2}}, "killed": {"_count": 1, "this": {"_count": 1}}, "loud": {"_count": 2, "shriek": {"_count": 1}, "low": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "evening": {"_count": 7, "": {"_count": 1}, "after": {"_count": 2}, "as": {"_count": 2}, "Ron": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 34, "the": {"_count": 16}, "call": {"_count": 1}, "Honeydukes": {"_count": 1}, "catch": {"_count": 1}, "us": {"_count": 1}, "have": {"_count": 1}, "which": {"_count": 1}, "page": {"_count": 1}, "each": {"_count": 1}, "bring": {"_count": 1}, "whom": {"_count": 1}, "rush": {"_count": 1}, "be": {"_count": 1}, "press": {"_count": 1}, "kill": {"_count": 1}, "Harry": {"_count": 1}, "wield": {"_count": 1}, "find": {"_count": 1}, "Ron": {"_count": 1}}, "tiny": {"_count": 2, "little": {"_count": 1}, "twinge": {"_count": 1}}, "Ravenclaw": {"_count": 1, "and": {"_count": 1}}, "Hufflepuff": {"_count": 2, "said": {"_count": 1}, "Ernie": {"_count": 1}}, "dies": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 3, "two": {"_count": 1}, "a": {"_count": 1}, "recently": {"_count": 1}}, "week": {"_count": 2, "from": {"_count": 1}, "into": {"_count": 1}}, "anywhere": {"_count": 1, "near": {"_count": 1}}, "wild": {"_count": 3, "moment": {"_count": 3}}, "nor": {"_count": 1, "had": {"_count": 1}}, "regrets": {"_count": 1, "more": {"_count": 1}}, "stir": {"_count": 2, "": {"_count": 1}, "clockwise": {"_count": 1}}, "attacking": {"_count": 1, "everyone": {"_count": 1}}, "question": {"_count": 1, "Dobby": {"_count": 1}}, "quite": {"_count": 1, "like": {"_count": 1}}, "about": {"_count": 1, "shrinking": {"_count": 1}}, "very": {"_count": 1, "small": {"_count": 1}}, "bleary": {"_count": 1, "eye": {"_count": 1}}, "daughter": {"_count": 1, "all": {"_count": 1}}, "then": {"_count": 1, "she": {"_count": 1}}, "here": {"_count": 5, "She": {"_count": 1}, "this": {"_count": 1}, "said": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "Stan": {"_count": 1, "whispered": {"_count": 1}}, "curse": {"_count": 2, "": {"_count": 1}, "Mr": {"_count": 1}}, "wizards": {"_count": 1, "and": {"_count": 1}}, "unicorn": {"_count": 1, "tailhair": {"_count": 1}}, "anymore": {"_count": 1, "said": {"_count": 1}}, "occupant": {"_count": 1, "a": {"_count": 1}}, "vacancy": {"_count": 1, "isnt": {"_count": 1}}, "screamed": {"_count": 1, "said": {"_count": 1}}, "time": {"_count": 5, "remember": {"_count": 1}, "you": {"_count": 2}, "the": {"_count": 1}, "too": {"_count": 1}}, "enormous": {"_count": 1, "hand": {"_count": 1}}, "student": {"_count": 2, "a": {"_count": 1}, "who": {"_count": 1}}, "nasty": {"_count": 1, "moment": {"_count": 1}}, "cause": {"_count": 1, "it": {"_count": 1}}, "fierce": {"_count": 1, "orange": {"_count": 1}}, "rat": {"_count": 1, "spleen": {"_count": 1}}, "teacher": {"_count": 1, "": {"_count": 1}}, "moved": {"_count": 3, "in": {"_count": 1}, "or": {"_count": 1}, "except": {"_count": 1}}, "Thursday": {"_count": 1, "evening": {"_count": 1}}, "might": {"_count": 4, "not": {"_count": 1}, "have": {"_count": 1}, "just": {"_count": 1}, "be": {"_count": 1}}, "reminding": {"_count": 1, "Ron": {"_count": 1}}, "quick": {"_count": 2, "look": {"_count": 2}}, "cradling": {"_count": 1, "a": {"_count": 1}}, "brave": {"_count": 2, "enough": {"_count": 1}, "little": {"_count": 1}}, "isnt": {"_count": 2, "he": {"_count": 1}, "new": {"_count": 1}}, "dementor": {"_count": 1, "on": {"_count": 1}}, "morning": {"_count": 1, "covered": {"_count": 1}}, "because": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "leads": {"_count": 1, "right": {"_count": 1}}, "outside": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "yourself": {"_count": 1, "wont": {"_count": 1}}, "without": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "likin": {"_count": 1, "me": {"_count": 1}}, "lurking": {"_count": 1, "inside": {"_count": 1}}, "glistening": {"_count": 1, "scabbed": {"_count": 1}}, "doesnt": {"_count": 4, "seem": {"_count": 1}, "she": {"_count": 1}, "know": {"_count": 2}}, "rotting": {"_count": 1, "hand": {"_count": 1}}, "swish": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 3, "grandmother": {"_count": 1}, "classmates": {"_count": 1}, "mother": {"_count": 1}}, "frightened": {"_count": 1, "look": {"_count": 1}}, "commenting": {"_count": 1, "on": {"_count": 1}}, "after": {"_count": 3, "the": {"_count": 2}, "another": {"_count": 1}}, "hour": {"_count": 5, "": {"_count": 2}, "so": {"_count": 1}, "in": {"_count": 2}}, "broad": {"_count": 1, "thumb": {"_count": 1}}, "bound": {"_count": 1, "Crookshanks": {"_count": 1}}, "murder": {"_count": 1, "here": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "shaking": {"_count": 1, "hand": {"_count": 1}}, "reason": {"_count": 1, "the": {"_count": 1}}, "hes": {"_count": 1, "after": {"_count": 1}}, "certain": {"_count": 1, "way": {"_count": 1}}, "or": {"_count": 7, "two": {"_count": 6}, "more": {"_count": 1}}, "hint": {"_count": 1, "reached": {"_count": 1}}, "movement": {"_count": 1, "they": {"_count": 1}}, "arm": {"_count": 7, "to": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}, "around": {"_count": 1}, "was": {"_count": 1}, "over": {"_count": 1}, "but": {"_count": 1}}, "innocent": {"_count": 2, "life": {"_count": 2}}, "came": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "leg": {"_count": 4, "over": {"_count": 1}, "still": {"_count": 1}, "": {"_count": 1}, "gave": {"_count": 1}}, "sweep": {"_count": 1, "of": {"_count": 1}}, "staircase": {"_count": 1, "then": {"_count": 1}}, "wizard": {"_count": 4, "saves": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}}, "glorious": {"_count": 1, "hour": {"_count": 1}}, "each": {"_count": 3, "from": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "foot": {"_count": 7, "forward": {"_count": 1}, "jiggling": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 3}, "the": {"_count": 1}}, "extremely": {"_count": 1, "large": {"_count": 1}}, "Im": {"_count": 1, "talking": {"_count": 1}}, "decent": {"_count": 1, "player": {"_count": 1}}, "place": {"_count": 4, "and": {"_count": 1}, "more": {"_count": 1}, "Vol": {"_count": 1}, "that": {"_count": 1}}, "spot": {"_count": 1, "to": {"_count": 1}}, "stays": {"_count": 1, "on": {"_count": 1}}, "eye": {"_count": 7, "still": {"_count": 2}, "on": {"_count": 3}, "was": {"_count": 1}, "which": {"_count": 1}}, "whos": {"_count": 8, "had": {"_count": 1}, "got": {"_count": 2}, "getting": {"_count": 1}, "supposed": {"_count": 1}, "nervous": {"_count": 1}, "tightened": {"_count": 1}, "going": {"_count": 1}}, "contemptuous": {"_count": 1, "look": {"_count": 1}}, "circuit": {"_count": 1, "of": {"_count": 1}}, "anothers": {"_count": 4, "minds": {"_count": 1}, "shoulders": {"_count": 1}, "new": {"_count": 1}, "gaze": {"_count": 1}}, "all": {"_count": 3, "standing": {"_count": 1}, "these": {"_count": 1}, "facing": {"_count": 1}}, "taking": {"_count": 1, "place": {"_count": 1}}, "fact": {"_count": 1, "Each": {"_count": 1}}, "Ludo": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 1, "What": {"_count": 1}}, "hell": {"_count": 2, "of": {"_count": 2}}, "since": {"_count": 1, "his": {"_count": 1}}, "every": {"_count": 1, "year": {"_count": 1}}, "your": {"_count": 1, "dad": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}, "on": {"_count": 1}}, "known": {"_count": 1, "person": {"_count": 1}}, "spoke": {"_count": 3, "until": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "lying": {"_count": 3, "awake": {"_count": 2}, "on": {"_count": 1}}, "gnarled": {"_count": 2, "finger": {"_count": 1}, "hand": {"_count": 1}}, "seriously": {"_count": 1, "as": {"_count": 1}}, "topic": {"_count": 2, "of": {"_count": 2}}, "either": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "single": {"_count": 4, "person": {"_count": 1}, "thing": {"_count": 1}, "question": {"_count": 1}, "explanation": {"_count": 1}}, "wouldve": {"_count": 1, "seen": {"_count": 1}}, "lunchtime": {"_count": 1, "": {"_count": 1}}, "Fridays": {"_count": 1, "worth": {"_count": 1}}, "which": {"_count": 6, "glowed": {"_count": 1}, "was": {"_count": 2}, "the": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 1}}, "Granger": {"_count": 1, "": {"_count": 1}}, "heavily": {"_count": 1, "penciled": {"_count": 1}}, "usually": {"_count": 1, "sees": {"_count": 1}}, "against": {"_count": 2, "Slytherin": {"_count": 1}, "whom": {"_count": 1}}, "Hermione": {"_count": 1, "Granger": {"_count": 1}}, "a": {"_count": 1, "Swedish": {"_count": 1}}, "fer": {"_count": 1, "each": {"_count": 1}}, "believed": {"_count": 1, "he": {"_count": 1}}, "shoulder": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "himself": {"_count": 2, "though": {"_count": 1}, "": {"_count": 1}}, "moment": {"_count": 5, "he": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "she": {"_count": 1}}, "tied": {"_count": 1, "around": {"_count": 1}}, "gleaming": {"_count": 1, "against": {"_count": 1}}, "skrewt": {"_count": 1, "was": {"_count": 1}}, "cheek": {"_count": 1, "Lavender": {"_count": 1}}, "brief": {"_count": 3, "glimpse": {"_count": 2}, "moment": {"_count": 1}}, "my": {"_count": 2, "mum": {"_count": 1}, "scar": {"_count": 1}}, "yet": {"_count": 2, "said": {"_count": 1}, "now": {"_count": 1}}, "task": {"_count": 1, "whoever": {"_count": 1}}, "around": {"_count": 2, "her": {"_count": 1}, "": {"_count": 1}}, "owl": {"_count": 1, "complaining": {"_count": 1}}, "whose": {"_count": 1, "jet": {"_count": 1}}, "above": {"_count": 2, "it": {"_count": 1}, "him": {"_count": 1}}, "mention": {"_count": 1, "of": {"_count": 1}}, "passing": {"_count": 1, "reference": {"_count": 1}}, "The": {"_count": 1, "mermaid": {"_count": 1}}, "They": {"_count": 1, "scattered": {"_count": 1}}, "minute": {"_count": 3, "outside": {"_count": 1}, "passed": {"_count": 1}, "to": {"_count": 1}}, "letter": {"_count": 1, "after": {"_count": 1}}, "answered": {"_count": 1, "": {"_count": 1}}, "swift": {"_count": 3, "movement": {"_count": 1}, "moment": {"_count": 1}, "fluid": {"_count": 1}}, "direction": {"_count": 1, "and": {"_count": 1}}, "specialist": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "gave": {"_count": 1}}, "while": {"_count": 1, "Cedric": {"_count": 1}}, "horrifying": {"_count": 1, "glimpse": {"_count": 1}}, "alone": {"_count": 1, "had": {"_count": 1}}, "shining": {"_count": 2, "moment": {"_count": 1}, "piece": {"_count": 1}}, "power": {"_count": 1, "remained": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "faithful": {"_count": 1, "Death": {"_count": 1}}, "swipe": {"_count": 1, "cut": {"_count": 1}}, "did": {"_count": 1, "": {"_count": 1}}, "tombstone": {"_count": 1, "stood": {"_count": 1}}, "healthy": {"_count": 2, "one": {"_count": 2}}, "dying": {"_count": 2, "person": {"_count": 2}}, "imprisoned": {"_count": 1, "controlled": {"_count": 1}}, "soft": {"_count": 1, "quavering": {"_count": 1}}, "armed": {"_count": 2, "hug": {"_count": 1}, "squeeze": {"_count": 1}}, "large": {"_count": 1, "fat": {"_count": 1}}, "favor": {"_count": 1, "okay": {"_count": 1}}, "boy": {"_count": 3, "": {"_count": 1}, "not": {"_count": 1}, "managed": {"_count": 1}}, "outburst": {"_count": 1, "years": {"_count": 1}}, "completely": {"_count": 1, "unfamiliar": {"_count": 1}}, "MadEye": {"_count": 1, "said": {"_count": 1}}, "like": {"_count": 3, "him": {"_count": 1}, "a": {"_count": 1}, "Harrys": {"_count": 1}}, "group": {"_count": 1, "hes": {"_count": 1}}, "shes": {"_count": 1, "too": {"_count": 1}}, "beside": {"_count": 1, "it": {"_count": 1}}, "wholl": {"_count": 1, "be": {"_count": 1}}, "heartstopping": {"_count": 1, "moment": {"_count": 1}}, "dish": {"_count": 1, "": {"_count": 1}}, "set": {"_count": 1, "at": {"_count": 1}}, "rather": {"_count": 1, "skinny": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 1}, "and": {"_count": 1}}, "locked": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 2, "far": {"_count": 1}, "it": {"_count": 1}}, "short": {"_count": 4, "": {"_count": 1}, "leg": {"_count": 1}, "said": {"_count": 1}, "step": {"_count": 1}}, "theres": {"_count": 1, "only": {"_count": 1}}, "ages": {"_count": 1, "ago": {"_count": 1}}, "flagon": {"_count": 1, "with": {"_count": 1}}, "\u2018Basics": {"_count": 1, "for": {"_count": 1}}, "watching": {"_count": 1, "Hermione": {"_count": 1}}, "breath": {"_count": 1, "without": {"_count": 1}}, "between": {"_count": 1, "three": {"_count": 1}}, "gigantic": {"_count": 1, "History": {"_count": 1}}, "long": {"_count": 4, "severe": {"_count": 1}, "thin": {"_count": 1}, "series": {"_count": 1}, "fluid": {"_count": 1}}, "its": {"_count": 2, "not": {"_count": 1}, "too": {"_count": 1}}, "looks": {"_count": 3, "very": {"_count": 1}, "okay": {"_count": 1}, "weak": {"_count": 1}}, "type": {"_count": 1, "of": {"_count": 1}}, "Bludger": {"_count": 1, "with": {"_count": 1}}, "two": {"_count": 4, "three": {"_count": 4}}, "up": {"_count": 1, "for": {"_count": 1}}, "goal": {"_count": 1, "he": {"_count": 1}}, "memorable": {"_count": 1, "practice": {"_count": 1}}, "handed": {"_count": 2, "from": {"_count": 1}, "and": {"_count": 1}}, "yelling": {"_count": 1, "and": {"_count": 1}}, "open": {"_count": 2, "eye": {"_count": 1}, "so": {"_count": 1}}, "nigh": {"_count": 1, "an": {"_count": 1}}, "an": {"_count": 2, "get": {"_count": 1}, "we": {"_count": 1}}, "were": {"_count": 1, "sneakin": {"_count": 1}}, "we": {"_count": 2, "found": {"_count": 1}, "know": {"_count": 1}}, "poin": {"_count": 1, "": {"_count": 1}}, "point": {"_count": 2, "Hagrid": {"_count": 1}, "he": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "born": {"_count": 1, "here": {"_count": 1}}, "frame": {"_count": 1, "now": {"_count": 1}}, "finger": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "guttering": {"_count": 1, "candle": {"_count": 1}}, "took": {"_count": 1, "any": {"_count": 1}}, "Voldemorts": {"_count": 1, "trying": {"_count": 1}}, "less": {"_count": 2, "thing": {"_count": 1}, "for": {"_count": 1}}, "clever": {"_count": 1, "enough": {"_count": 1}}, "stepped": {"_count": 1, "through": {"_count": 1}}, "blink": {"_count": 1, "later": {"_count": 1}}, "choice": {"_count": 1, "for": {"_count": 1}}, "big": {"_count": 1, "opportunity": {"_count": 1}}, "explaining": {"_count": 1, "that": {"_count": 1}}, "plus": {"_count": 1, "one": {"_count": 1}}, "equals": {"_count": 1, "two": {"_count": 1}}, "note": {"_count": 1, "during": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 1, "convinced": {"_count": 1}}, "says": {"_count": 1, "youve": {"_count": 1}}, "concerning": {"_count": 1, "a": {"_count": 1}}, "lied": {"_count": 1, "Harry": {"_count": 1}}, "Umbridge": {"_count": 1, "admitted": {"_count": 1}}, "if": {"_count": 3, "Willy": {"_count": 1}, "Slytherin": {"_count": 1}, "he": {"_count": 1}}, "secondyear": {"_count": 1, "girl": {"_count": 1}}, "still": {"_count": 1, "trailing": {"_count": 1}}, "Tuesday": {"_count": 1, "morning": {"_count": 1}}, "lost": {"_count": 1, "one": {"_count": 1}}, "stride": {"_count": 1, "for": {"_count": 1}}, "mistake": {"_count": 2, "isnt": {"_count": 1}, "that": {"_count": 1}}, "surly": {"_count": 1, "voice": {"_count": 1}}, "got": {"_count": 1, "in": {"_count": 1}}, "didnt": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "glance": {"_count": 2, "back": {"_count": 2}}, "Again": {"_count": 1, "he": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "beyond": {"_count": 1, "that": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "couple": {"_count": 1, "were": {"_count": 1}}, "chance": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "for": {"_count": 1}}, "master": {"_count": 1, "for": {"_count": 1}}, "stroke": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "Oh": {"_count": 1, "yes": {"_count": 1}}, "blared": {"_count": 1, "HARRY": {"_count": 1}}, "agitated": {"_count": 1, "Obliviator": {"_count": 1}}, "bore": {"_count": 1, "the": {"_count": 1}}, "upsidedown": {"_count": 1, "look": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "identical": {"_count": 1, "sweeping": {"_count": 1}}, "drink": {"_count": 1, "he": {"_count": 1}}, "simple": {"_count": 1, "Freezing": {"_count": 1}}, "Voldemort": {"_count": 1, "ever": {"_count": 1}}, "No": {"_count": 1, "they": {"_count": 1}}, "lesson": {"_count": 1, "youll": {"_count": 1}}, "serious": {"_count": 1, "mistranslation": {"_count": 1}}, "\u2018Exceeds": {"_count": 1, "Expectations": {"_count": 1}}, "battered": {"_count": 1, "box": {"_count": 1}}, "surreptitiously": {"_count": 1, "and": {"_count": 1}}, "safe": {"_count": 4, "Ill": {"_count": 1}, "": {"_count": 2}, "refuge": {"_count": 1}}, "meant": {"_count": 1, "": {"_count": 1}}, "zooming": {"_count": 1, "around": {"_count": 1}}, "horrible": {"_count": 2, "moment": {"_count": 2}}, "nearest": {"_count": 1, "a": {"_count": 1}}, "ladies": {"_count": 1, "and": {"_count": 1}}, "clockwise": {"_count": 1, "pause": {"_count": 1}}, "elses": {"_count": 1, "potion": {"_count": 1}}, "bottle": {"_count": 1, "of": {"_count": 1}}, "no": {"_count": 1, "ones": {"_count": 1}}, "pointing": {"_count": 1, "back": {"_count": 1}}, "involving": {"_count": 1, "a": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "cramped": {"_count": 1, "word": {"_count": 1}}, "Caractacus": {"_count": 1, "Burke": {"_count": 1}}, "supposedly": {"_count": 1, "connected": {"_count": 1}}, "Chaser": {"_count": 1, "short": {"_count": 1}}, "sudden": {"_count": 1, "glorious": {"_count": 1}}, "potion": {"_count": 1, "from": {"_count": 1}}, "youll": {"_count": 1, "make": {"_count": 1}}, "when": {"_count": 4, "I": {"_count": 1}, "they": {"_count": 1}, "Uncle": {"_count": 1}, "a": {"_count": 1}}, "lazy": {"_count": 2, "flick": {"_count": 1}, "wave": {"_count": 1}}, "put": {"_count": 1, "the": {"_count": 1}}, "Fix": {"_count": 1, "your": {"_count": 1}}, "tomorrow": {"_count": 1, "evening": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "handle": {"_count": 1, "out": {"_count": 1}}, "mind": {"_count": 1, "said": {"_count": 1}}, "ten": {"_count": 1, "years": {"_count": 1}}, "difference": {"_count": 1, "between": {"_count": 1}}, "down": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "tower": {"_count": 1, "the": {"_count": 1}}, "Lupin": {"_count": 1, "told": {"_count": 1}}, "conclusion": {"_count": 1, "in": {"_count": 1}}, "Aragog": {"_count": 1, "the": {"_count": 1}}, "cannot": {"_count": 1, "die": {"_count": 1}}, "Horcrux": {"_count": 6, "be": {"_count": 1}, "what": {"_count": 1}, "short": {"_count": 1}, "": {"_count": 1}, "Yeah": {"_count": 1}, "but": {"_count": 1}}, "giving": {"_count": 1, "instructions": {"_count": 1}}, "Snape": {"_count": 1, "extracted": {"_count": 1}}, "thousand": {"_count": 2, "and": {"_count": 2}}, "toward": {"_count": 1, "him": {"_count": 1}}, "such": {"_count": 1, "evening": {"_count": 1}}, "broken": {"_count": 1, "": {"_count": 1}}, "Seer": {"_count": 1, "to": {"_count": 1}}, "emotion": {"_count": 1, "he": {"_count": 1}}, "condition": {"_count": 1, "that": {"_count": 1}}, "upon": {"_count": 1, "which": {"_count": 1}}, "Montague": {"_count": 1, "got": {"_count": 1}}, "what": {"_count": 1, "would": {"_count": 1}}, "Many": {"_count": 1, "heads": {"_count": 1}}, "heart": {"_count": 1, "stopping": {"_count": 1}}, "particular": {"_count": 1, "issue": {"_count": 1}}, "figures": {"_count": 1, "began": {"_count": 1}}, "legged": {"_count": 1, "his": {"_count": 1}}, "bloke": {"_count": 1, "whos": {"_count": 1}}, "George": {"_count": 1, "or": {"_count": 1}}, "Kingsley": {"_count": 1, "reeled": {"_count": 1}}, "extra": {"_count": 1, "day": {"_count": 1}}, "dont": {"_count": 1, "believe": {"_count": 1}}, "pile": {"_count": 2, "and": {"_count": 1}, "or": {"_count": 1}}, "antidote": {"_count": 1, "and": {"_count": 1}}, "saying": {"_count": 1, "it": {"_count": 1}}, "spiraling": {"_count": 1, "moment": {"_count": 1}}, "final": {"_count": 1, "flourish": {"_count": 1}}, "destined": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "nearly": {"_count": 1}}, "sip": {"_count": 1, "of": {"_count": 1}}, "inert": {"_count": 1, "man": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "facing": {"_count": 1, "him": {"_count": 1}}, "victim": {"_count": 1, "toward": {"_count": 1}}, "close": {"_count": 1, "Wizarding": {"_count": 1}}, "little": {"_count": 1, "thing": {"_count": 1}}, "Dolores": {"_count": 1, "wants": {"_count": 1}}, "labeled": {"_count": 1, "GENTLEMEN": {"_count": 1}}, "Albert": {"_count": 1, "": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "Reg": {"_count": 1, "Cattermole": {"_count": 1}}, "fluid": {"_count": 1, "motion": {"_count": 1}}, "tells": {"_count": 1, "me": {"_count": 1}}, "bickering": {"_count": 1, "and": {"_count": 1}}, "bewildered": {"_count": 1, "moment": {"_count": 1}}, "area": {"_count": 1, "too": {"_count": 1}}, "inexplicable": {"_count": 1, "danger": {"_count": 1}}, "subject": {"_count": 1, "however": {"_count": 1}}, "summer": {"_count": 1, "when": {"_count": 1}}, "trembling": {"_count": 1, "second": {"_count": 1}}, "holding": {"_count": 1, "me": {"_count": 1}}, "felt": {"_count": 1, "intrusively": {"_count": 1}}, "program": {"_count": 1, "he": {"_count": 1}}, "initially": {"_count": 1, "but": {"_count": 1}}, "Xenophilius": {"_count": 1, "had": {"_count": 1}}, "youd": {"_count": 1, "choose": {"_count": 1}}, "maybe": {"_count": 1, "two": {"_count": 1}}, "now": {"_count": 1, "encouraging": {"_count": 1}}, "Griphook": {"_count": 1, "please": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "occasion": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 2, "I": {"_count": 1}, "that": {"_count": 1}}, "indispensable": {"_count": 1, "weapon": {"_count": 1}}, "blustery": {"_count": 1, "April": {"_count": 1}}, "better": {"_count": 1, "I": {"_count": 1}}, "young": {"_count": 1, "girl": {"_count": 1}}, "hidden": {"_count": 1, "behind": {"_count": 1}}, "hammock": {"_count": 1, "and": {"_count": 1}}, "explanation": {"_count": 1, "Voldemort": {"_count": 1}}, "how": {"_count": 1, "are": {"_count": 1}}, "previous": {"_count": 1, "trip": {"_count": 1}}, "Stunned": {"_count": 1, "the": {"_count": 1}}, "mad": {"_count": 1, "second": {"_count": 1}}, "brutal": {"_count": 1, "fluid": {"_count": 1}}, "teetering": {"_count": 1, "second": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}, "being": {"_count": 1, "shown": {"_count": 1}}, "basket": {"_count": 1, "particularly": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "And": {"_count": 1, "Voldys": {"_count": 1}}}, "markings": {"_count": 12, "around": {"_count": 7, "its": {"_count": 2}, "her": {"_count": 2}, "the": {"_count": 2}, "their": {"_count": 1}}, "the": {"_count": 1, "cat": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "things": {"_count": 1}}, "so": {"_count": 1, "you": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}}, "its": {"_count": 1779, "eyes": {"_count": 18, "": {"_count": 4}, "fixed": {"_count": 1}, "narrowed": {"_count": 1}, "were": {"_count": 3}, "to": {"_count": 1}, "widen": {"_count": 1}, "now": {"_count": 1}, "both": {"_count": 1}, "lazily": {"_count": 1}, "again": {"_count": 1}, "onto": {"_count": 1}, "with": {"_count": 1}, "although": {"_count": 1}}, "not": {"_count": 93, "only": {"_count": 2}, "until": {"_count": 1}, "very": {"_count": 2}, "too": {"_count": 2}, "for": {"_count": 5}, "a": {"_count": 6}, "quite": {"_count": 1}, "enough": {"_count": 1}, "funny": {"_count": 1}, "said": {"_count": 3}, "Harry": {"_count": 1}, "much": {"_count": 3}, "terribly": {"_count": 1}, "nearly": {"_count": 1}, "so": {"_count": 5}, "my": {"_count": 2}, "worth": {"_count": 2}, "all": {"_count": 3}, "nightfall": {"_count": 1}, "done": {"_count": 1}, "as": {"_count": 4}, "Him": {"_count": 2}, "your": {"_count": 1}, "that": {"_count": 4}, "drawnout": {"_count": 1}, "spew": {"_count": 1}, "exactly": {"_count": 3}, "in": {"_count": 2}, "like": {"_count": 2}, "surprising": {"_count": 1}, "strong": {"_count": 1}, "his": {"_count": 1}, "just": {"_count": 2}, "true": {"_count": 2}, "the": {"_count": 2}, "": {"_count": 1}, "on": {"_count": 1}, "ideal": {"_count": 1}, "happening": {"_count": 1}, "hygien": {"_count": 1}, "fair": {"_count": 1}, "really": {"_count": 3}, "working": {"_count": 2}, "Harrys": {"_count": 1}, "them": {"_count": 2}, "what": {"_count": 1}, "okay": {"_count": 1}, "at": {"_count": 1}, "where": {"_count": 1}, "here": {"_count": 1}, "any": {"_count": 1}}, "dark": {"_count": 2, "": {"_count": 1}, "tunnel": {"_count": 1}}, "true": {"_count": 16, "": {"_count": 5}, "Harry": {"_count": 1}, "this": {"_count": 1}, "said": {"_count": 2}, "value": {"_count": 1}, "youve": {"_count": 1}, "or": {"_count": 1}, "he": {"_count": 1}, "home": {"_count": 1}, "master": {"_count": 1}, "owner": {"_count": 1}}, "all": {"_count": 41, "very": {"_count": 2}, "on": {"_count": 1}, "dry": {"_count": 1}, "worked": {"_count": 1}, "here": {"_count": 2}, "right": {"_count": 8}, "in": {"_count": 4}, "for": {"_count": 2}, "about": {"_count": 2}, "okay": {"_count": 1}, "over": {"_count": 2}, "been": {"_count": 2}, "the": {"_count": 1}, "fixed": {"_count": 1}, "looking": {"_count": 1}, "important": {"_count": 1}, "just": {"_count": 1}, "perception": {"_count": 1}, "black": {"_count": 1}, "friends": {"_count": 1}, "my": {"_count": 1}, "going": {"_count": 1}, "nonsense": {"_count": 1}, "righ": {"_count": 1}, "youve": {"_count": 1}}, "here": {"_count": 3, "under": {"_count": 1}, "somewhere": {"_count": 1}, "to": {"_count": 1}}, "head": {"_count": 23, "who": {"_count": 1}, "until": {"_count": 1}, "toward": {"_count": 1}, "a": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 3}, "out": {"_count": 2}, "piping": {"_count": 1}, "rolled": {"_count": 1}, "revolving": {"_count": 1}, "to": {"_count": 1}, "under": {"_count": 1}, "around": {"_count": 1}, "back": {"_count": 1}, "sniffing": {"_count": 1}, "hidden": {"_count": 1}}, "body": {"_count": 5, "twice": {"_count": 1}, "coiling": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}, "would": {"_count": 1}}, "beady": {"_count": 1, "eyes": {"_count": 1}}, "tail": {"_count": 8, "at": {"_count": 2}, "on": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "once": {"_count": 1}, "blurred": {"_count": 1}, "thrashing": {"_count": 1}}, "mine": {"_count": 5, "": {"_count": 2}, "for": {"_count": 1}, "now": {"_count": 1}, "I": {"_count": 1}}, "envelope": {"_count": 1, "": {"_count": 1}}, "hinges": {"_count": 5, "and": {"_count": 1}, "": {"_count": 3}, "Snape": {"_count": 1}}, "frame": {"_count": 1, "": {"_count": 1}}, "abou": {"_count": 1, "time": {"_count": 1}}, "beak": {"_count": 9, "went": {"_count": 1}, "": {"_count": 5}, "fiercely": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}}, "what": {"_count": 4, "we": {"_count": 1}, "Black": {"_count": 1}, "Id": {"_count": 1}, "were": {"_count": 1}}, "your": {"_count": 9, "bad": {"_count": 1}, "turn": {"_count": 1}, "dad": {"_count": 1}, "choice": {"_count": 1}, "fault": {"_count": 1}, "things": {"_count": 1}, "duty": {"_count": 2}, "business": {"_count": 1}}, "best": {"_count": 7, "yeh": {"_count": 1}, "if": {"_count": 4}, "this": {"_count": 1}, "we": {"_count": 1}}, "a": {"_count": 90, "great": {"_count": 1}, "crime": {"_count": 1}, "Nimbus": {"_count": 1}, "Sorcerers": {"_count": 1}, "bit": {"_count": 14}, "kid": {"_count": 1}, "warning": {"_count": 1}, "soft": {"_count": 1}, "ghost": {"_count": 1}, "waste": {"_count": 1}, "wonderful": {"_count": 1}, "witch": {"_count": 1}, "real": {"_count": 2}, "start": {"_count": 3}, "matter": {"_count": 2}, "bad": {"_count": 1}, "bathroom": {"_count": 1}, "basilisk": {"_count": 1}, "lunascope": {"_count": 1}, "very": {"_count": 3}, "record": {"_count": 1}, "good": {"_count": 6}, "slight": {"_count": 1}, "map": {"_count": 1}, "trap": {"_count": 1}, "minute": {"_count": 1}, "penalty": {"_count": 1}, "flying": {"_count": 1}, "Gryffindor": {"_count": 1}, "Death": {"_count": 2}, "kind": {"_count": 1}, "stag": {"_count": 1}, "simple": {"_count": 1}, "boggart": {"_count": 1}, "hat": {"_count": 1}, "pity": {"_count": 1}, "nightmare": {"_count": 1}, "dreadful": {"_count": 1}, "possibility": {"_count": 1}, "solution": {"_count": 1}, "question": {"_count": 2}, "patchwork": {"_count": 1}, "difficult": {"_count": 1}, "funny": {"_count": 1}, "mental": {"_count": 1}, "free": {"_count": 1}, "tonic": {"_count": 1}, "clever": {"_count": 1}, "Gurdyroot": {"_count": 1}, "favorite": {"_count": 1}, "Hungarian": {"_count": 1}, "he": {"_count": 1}, "plot": {"_count": 1}, "horrible": {"_count": 1}, "cross": {"_count": 1}, "hex": {"_count": 1}, "fact": {"_count": 1}, "necessary": {"_count": 1}, "symbol": {"_count": 1}, "big": {"_count": 1}, "pile": {"_count": 1}, "trick": {"_count": 1}, "powerful": {"_count": 1}, "Horcrux": {"_count": 1}}, "incredible": {"_count": 1, "yeh": {"_count": 1}}, "that": {"_count": 4, "sad": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 1}, "stupid": {"_count": 1}}, "claw": {"_count": 1, "on": {"_count": 1}}, "burnished": {"_count": 1, "bronze": {"_count": 1}}, "own": {"_count": 19, "way": {"_count": 1}, "": {"_count": 2}, "noble": {"_count": 1}, "club": {"_count": 1}, "What": {"_count": 1}, "mark": {"_count": 1}, "registration": {"_count": 1}, "accord": {"_count": 6}, "tail": {"_count": 1}, "role": {"_count": 1}, "doily": {"_count": 1}, "garden": {"_count": 1}, "before": {"_count": 1}}, "easy": {"_count": 2, "enough": {"_count": 1}, "said": {"_count": 1}}, "horrible": {"_count": 3, "smell": {"_count": 1}, "she": {"_count": 1}, "hairy": {"_count": 1}}, "really": {"_count": 11, "the": {"_count": 1}, "none": {"_count": 1}, "thanks": {"_count": 1}, "hurting": {"_count": 1}, "him": {"_count": 1}, "hard": {"_count": 1}, "good": {"_count": 2}, "difficult": {"_count": 1}, "true": {"_count": 1}, "interesting": {"_count": 1}}, "box": {"_count": 2, "and": {"_count": 1}, "too": {"_count": 1}}, "brother": {"_count": 3, "why": {"_count": 1}, "gave": {"_count": 1}, "": {"_count": 1}}, "cage": {"_count": 1, "on": {"_count": 1}}, "hard": {"_count": 5, "": {"_count": 1}, "to": {"_count": 2}, "but": {"_count": 1}, "bed": {"_count": 1}}, "no": {"_count": 5, "big": {"_count": 1}, "good": {"_count": 3}, "wonder": {"_count": 1}}, "the": {"_count": 39, "very": {"_count": 1}, "best": {"_count": 3}, "most": {"_count": 1}, "only": {"_count": 2}, "Sorting": {"_count": 1}, "cause": {"_count": 1}, "holidays": {"_count": 1}, "first": {"_count": 4}, "password": {"_count": 1}, "champion": {"_count": 1}, "last": {"_count": 3}, "Weasleys": {"_count": 1}, "Potter": {"_count": 1}, "same": {"_count": 1}, "Daily": {"_count": 1}, "weekend": {"_count": 1}, "French": {"_count": 1}, "fifth": {"_count": 1}, "fourth": {"_count": 1}, "kind": {"_count": 1}, "one": {"_count": 1}, "place": {"_count": 1}, "Felix": {"_count": 1}, "mother": {"_count": 1}, "real": {"_count": 3}, "other": {"_count": 1}, "thief": {"_count": 1}, "Christmas": {"_count": 1}, "truth": {"_count": 1}}, "such": {"_count": 3, "big": {"_count": 1}, "a": {"_count": 2}}, "you": {"_count": 13, "is": {"_count": 2}, "Ronan": {"_count": 1}, "said": {"_count": 2}, "No": {"_count": 1}, "she": {"_count": 1}, "isnt": {"_count": 1}, "": {"_count": 3}, "Professor": {"_count": 1}, "Harry": {"_count": 1}}, "windows": {"_count": 5, "sparkling": {"_count": 1}, "glowing": {"_count": 1}, "boarded": {"_count": 1}, "were": {"_count": 1}, "burned": {"_count": 1}}, "song": {"_count": 1, "": {"_count": 1}}, "supposed": {"_count": 7, "to": {"_count": 7}}, "shimmering": {"_count": 1, "fumes": {"_count": 1}}, "feet": {"_count": 8, "I": {"_count": 1}, "watching": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "its": {"_count": 1}, "taking": {"_count": 1}}, "heads": {"_count": 1, "": {"_count": 1}}, "doing": {"_count": 2, "us": {"_count": 1}, "": {"_count": 1}}, "their": {"_count": 4, "job": {"_count": 1}, "kind": {"_count": 1}, "choice": {"_count": 1}, "first": {"_count": 1}}, "so": {"_count": 7, "fast": {"_count": 1}, "important": {"_count": 2}, "good": {"_count": 1}, "beautiful": {"_count": 1}, "obvious": {"_count": 1}, "dangerous": {"_count": 1}}, "too": {"_count": 8, "dark": {"_count": 1}, "well": {"_count": 1}, "risky": {"_count": 2}, "early": {"_count": 2}, "much": {"_count": 1}, "big": {"_count": 1}}, "skin": {"_count": 3, "was": {"_count": 1}, "to": {"_count": 1}, "raw": {"_count": 1}}, "great": {"_count": 8, "lumpy": {"_count": 1}, "wings": {"_count": 1}, "blunt": {"_count": 1}, "bulbous": {"_count": 1}, "for": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "small": {"_count": 2, "bald": {"_count": 1}, "Id": {"_count": 1}}, "arms": {"_count": 6, "were": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "every": {"_count": 1}, "protecting": {"_count": 1}, "with": {"_count": 1}}, "long": {"_count": 11, "ears": {"_count": 1}, "thin": {"_count": 1}, "spindly": {"_count": 1}, "jaws": {"_count": 1}, "neck": {"_count": 1}, "fingers": {"_count": 1}, "snout": {"_count": 1}, "black": {"_count": 1}, "twiglike": {"_count": 1}, "cloak": {"_count": 1}, "incarceration": {"_count": 1}}, "tiny": {"_count": 1, "mind": {"_count": 1}}, "club": {"_count": 3, "as": {"_count": 1}, "with": {"_count": 1}, "again": {"_count": 1}}, "shoulder": {"_count": 1, "but": {"_count": 1}}, "ugly": {"_count": 3, "snout": {"_count": 1}, "triangular": {"_count": 1}, "head": {"_count": 1}}, "nose": {"_count": 2, "and": {"_count": 2}}, "owners": {"_count": 3, "head": {"_count": 1}, "trunk": {"_count": 1}, "pocket": {"_count": 1}}, "face": {"_count": 16, "with": {"_count": 1}, "and": {"_count": 3}, "looked": {"_count": 1}, "pressed": {"_count": 1}, "": {"_count": 3}, "hidden": {"_count": 2}, "which": {"_count": 1}, "no": {"_count": 1}, "cracked": {"_count": 1}, "sunken": {"_count": 1}, "missing": {"_count": 1}}, "just": {"_count": 32, "been": {"_count": 2}, "because": {"_count": 1}, "the": {"_count": 2}, "Dobby": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 6}, "Mr": {"_count": 1}, "outrageous": {"_count": 1}, "your": {"_count": 2}, "what": {"_count": 1}, "coincidence": {"_count": 1}, "memorizing": {"_count": 1}, "Ernie": {"_count": 1}, "an": {"_count": 1}, "youre": {"_count": 1}, "silly": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 2}, "taking": {"_count": 1}, "Crabbe": {"_count": 1}, "something": {"_count": 1}}, "guarding": {"_count": 2, "": {"_count": 2}}, "guardin": {"_count": 1, "thats": {"_count": 1}}, "nearly": {"_count": 3, "Christmas": {"_count": 1}, "time": {"_count": 1}, "nine": {"_count": 1}}, "Locomotor": {"_count": 1, "Mortis": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "against": {"_count": 2, "our": {"_count": 1}, "wizard": {"_count": 1}}, "dangerous": {"_count": 2, "": {"_count": 1}, "what": {"_count": 1}}, "hatched": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 14, "to": {"_count": 4}, "ice": {"_count": 1}, "here": {"_count": 2}, "being": {"_count": 1}, "Harry": {"_count": 1}, "Hagrid": {"_count": 2}, "they": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}}, "skinny": {"_count": 1, "jet": {"_count": 1}}, "snout": {"_count": 1, "": {"_count": 1}}, "nostrils": {"_count": 3, "": {"_count": 1}, "were": {"_count": 1}, "in": {"_count": 1}}, "still": {"_count": 6, "dark": {"_count": 1}, "agony": {"_count": 1}, "July": {"_count": 1}, "only": {"_count": 1}, "worth": {"_count": 1}, "a": {"_count": 1}}, "usual": {"_count": 8, "size": {"_count": 1}, "torpor": {"_count": 1}, "twelve": {"_count": 1}, "volume": {"_count": 1}, "splendid": {"_count": 1}, "spot": {"_count": 1}, "contingent": {"_count": 1}, "appearance": {"_count": 1}}, "about": {"_count": 9, "to": {"_count": 3}, "the": {"_count": 1}, "time": {"_count": 2}, "now": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "funny": {"_count": 5, "that": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "do": {"_count": 1}, "Cattermole": {"_count": 1}}, "very": {"_count": 9, "dangerous": {"_count": 1}, "hard": {"_count": 2}, "small": {"_count": 1}, "exposed": {"_count": 1}, "difficult": {"_count": 1}, "late": {"_count": 1}, "important": {"_count": 1}, "irresponsible": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "moons": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "misery": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 3, "badly": {"_count": 1}, "way": {"_count": 1}, "giant": {"_count": 1}}, "our": {"_count": 4, "fault": {"_count": 2}, "car": {"_count": 1}, "side": {"_count": 1}}, "mane": {"_count": 1, "was": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "front": {"_count": 8, "": {"_count": 2}, "look": {"_count": 1}, "paws": {"_count": 2}, "but": {"_count": 1}, "legs": {"_count": 1}, "AMULETS": {"_count": 1}}, "in": {"_count": 7, "that": {"_count": 1}, "the": {"_count": 2}, "Moaning": {"_count": 1}, "fine": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}}, "happened": {"_count": 3, "before": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "mouth": {"_count": 12, "": {"_count": 1}, "to": {"_count": 1}, "like": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 3}, "the": {"_count": 1}, "wide": {"_count": 3}, "moving": {"_count": 1}}, "only": {"_count": 15, "dying": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 2}, "an": {"_count": 1}, "lines": {"_count": 1}, "the": {"_count": 2}, "just": {"_count": 2}, "because": {"_count": 1}, "you": {"_count": 1}, "natural": {"_count": 1}, "in": {"_count": 1}, "right": {"_count": 1}}, "paws": {"_count": 1, "and": {"_count": 1}}, "knees": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "deep": {"_count": 1, "sleep": {"_count": 1}}, "Devils": {"_count": 1, "Snare": {"_count": 1}}, "called": {"_count": 2, "thats": {"_count": 1}, "the": {"_count": 1}}, "grip": {"_count": 1, "as": {"_count": 1}}, "ceiling": {"_count": 1, "arching": {"_count": 1}}, "massive": {"_count": 2, "legs": {"_count": 1}, "spiders": {"_count": 1}}, "logic": {"_count": 1, "a": {"_count": 1}}, "hidden": {"_count": 3, "": {"_count": 2}, "objects": {"_count": 1}}, "hand": {"_count": 1, "into": {"_count": 1}}, "pocket": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "gone": {"_count": 10, "he": {"_count": 1}, "": {"_count": 6}, "on": {"_count": 1}, "it": {"_count": 2}}, "place": {"_count": 4, "": {"_count": 2}, "next": {"_count": 1}, "was": {"_count": 1}}, "rude": {"_count": 1, "to": {"_count": 1}}, "secret": {"_count": 1, "passageways": {"_count": 1}}, "going": {"_count": 10, "to": {"_count": 10}}, "appeal": {"_count": 1, "and": {"_count": 1}}, "getting": {"_count": 4, "light": {"_count": 1}, "late": {"_count": 1}, "blacker": {"_count": 1}, "dark": {"_count": 1}}, "dull": {"_count": 1, "work": {"_count": 1}}, "horny": {"_count": 2, "little": {"_count": 2}}, "razorsharp": {"_count": 1, "teeth": {"_count": 1}}, "staring": {"_count": 2, "them": {"_count": 1}, "face": {"_count": 1}}, "way": {"_count": 24, "zigzagging": {"_count": 1}, "past": {"_count": 1}, "down": {"_count": 3}, "cleverly": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "back": {"_count": 1}, "through": {"_count": 4}, "up": {"_count": 2}, "too": {"_count": 1}, "blindly": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}, "home": {"_count": 1}, "around": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}}, "wing": {"_count": 3, "": {"_count": 2}, "shatter": {"_count": 1}}, "cushion": {"_count": 1, "": {"_count": 1}}, "wonderful": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "gnarled": {"_count": 1, "boughs": {"_count": 1}}, "roots": {"_count": 5, "creaking": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}}, "tether": {"_count": 1, "": {"_count": 1}}, "rear": {"_count": 1, "lights": {"_count": 1}}, "exhaust": {"_count": 1, "": {"_count": 1}}, "branches": {"_count": 4, "threateningly": {"_count": 1}, "now": {"_count": 1}, "there": {"_count": 1}, "were": {"_count": 1}}, "decision": {"_count": 3, "as": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}}, "clever": {"_count": 1, "arriving": {"_count": 1}}, "five": {"_count": 4, "fourposters": {"_count": 1}, "fourposter": {"_count": 1}, "Galleons": {"_count": 1}, "oclock": {"_count": 1}}, "high": {"_count": 1, "narrow": {"_count": 1}}, "teething": {"_count": 1, "": {"_count": 1}}, "breath": {"_count": 8, "Lockhart": {"_count": 1}, "": {"_count": 4}, "one": {"_count": 1}, "all": {"_count": 1}, "while": {"_count": 1}}, "tongue": {"_count": 2, "out": {"_count": 1}, "fluttering": {"_count": 1}}, "nearest": {"_count": 1, "said": {"_count": 1}}, "jinxed": {"_count": 2, "": {"_count": 2}}, "an": {"_count": 14, "extra": {"_count": 1}, "unfortunate": {"_count": 1}, "expression": {"_count": 1}, "oldfashioned": {"_count": 1}, "excellent": {"_count": 1}, "insult": {"_count": 1}, "awful": {"_count": 2}, "honor": {"_count": 1}, "important": {"_count": 1}, "Abbott": {"_count": 1}, "Erumpent": {"_count": 2}, "extraordinarily": {"_count": 1}}, "escape": {"_count": 1, "into": {"_count": 1}}, "awful": {"_count": 1, "trying": {"_count": 1}}, "time": {"_count": 12, "for": {"_count": 4}, "to": {"_count": 4}, "you": {"_count": 1}, "lets": {"_count": 1}, "we": {"_count": 1}, "Hermione": {"_count": 1}}, "weird": {"_count": 4, "": {"_count": 1}, "said": {"_count": 1}, "music": {"_count": 1}, "RON": {"_count": 1}}, "Filch": {"_count": 1, "he": {"_count": 1}}, "him": {"_count": 5, "Malfoy": {"_count": 1}, "this": {"_count": 1}, "Lupin": {"_count": 1}, "its": {"_count": 1}, "": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 8, "": {"_count": 5}, "going": {"_count": 1}, "that": {"_count": 2}}, "bound": {"_count": 4, "to": {"_count": 4}}, "Malfoy": {"_count": 2, "Ill": {"_count": 1}, "Harry": {"_count": 1}}, "got": {"_count": 14, "bits": {"_count": 1}, "him": {"_count": 1}, "anything": {"_count": 1}, "to": {"_count": 3}, "a": {"_count": 2}, "some": {"_count": 2}, "nothing": {"_count": 1}, "somethin": {"_count": 1}, "your": {"_count": 1}, "something": {"_count": 1}}, "been": {"_count": 20, "opened": {"_count": 1}, "using": {"_count": 1}, "a": {"_count": 3}, "empty": {"_count": 1}, "lousy": {"_count": 1}, "rather": {"_count": 1}, "in": {"_count": 2}, "useful": {"_count": 1}, "very": {"_count": 1}, "all": {"_count": 1}, "cursed": {"_count": 1}, "removed": {"_count": 1}, "nothing": {"_count": 1}, "taken": {"_count": 1}, "months": {"_count": 1}, "like": {"_count": 2}}, "Transfiguration": {"_count": 1, "next": {"_count": 1}}, "potty": {"_count": 1, "wee": {"_count": 1}}, "good": {"_count": 2, "fun": {"_count": 1}, "ter": {"_count": 1}}, "shelf": {"_count": 5, "and": {"_count": 2}, "feeling": {"_count": 1}, "sank": {"_count": 1}, "": {"_count": 1}}, "gagging": {"_count": 1, "noise": {"_count": 1}}, "crash": {"_count": 1, "with": {"_count": 1}}, "bottle": {"_count": 1, "into": {"_count": 1}}, "hoops": {"_count": 1, "his": {"_count": 1}}, "Granger": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "OUT": {"_count": 1, "OF": {"_count": 1}}, "hiding": {"_count": 3, "them": {"_count": 1}, "place": {"_count": 2}}, "shy": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 7, "legs": {"_count": 1}, "lighted": {"_count": 1}, "superb": {"_count": 1}, "shortcuts": {"_count": 1}, "locks": {"_count": 1}, "shoulders": {"_count": 1}, "doors": {"_count": 1}}, "blank": {"_count": 1, "windows": {"_count": 1}}, "headlights": {"_count": 1, "ablaze": {"_count": 1}}, "owner": {"_count": 7, "": {"_count": 4}, "Harry": {"_count": 1}, "had": {"_count": 1}, "a": {"_count": 1}}, "fellows": {"_count": 5, "closed": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "shook": {"_count": 1}, "so": {"_count": 1}}, "load": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 20, "and": {"_count": 1}, "": {"_count": 6}, "in": {"_count": 1}, "unmarked": {"_count": 1}, "to": {"_count": 2}, "legs": {"_count": 1}, "cracked": {"_count": 1}, "blood": {"_count": 1}, "it": {"_count": 2}, "outside": {"_count": 1}, "windswept": {"_count": 1}, "scraped": {"_count": 1}, "expecting": {"_count": 1}}, "horn": {"_count": 2, "screeching": {"_count": 1}, "Mr": {"_count": 1}}, "victims": {"_count": 1, "": {"_count": 1}}, "deadly": {"_count": 1, "and": {"_count": 1}}, "eye": {"_count": 1, "shall": {"_count": 1}}, "my": {"_count": 9, "Memory": {"_count": 1}, "fault": {"_count": 4}, "office": {"_count": 1}, "mums": {"_count": 1}, "stuff": {"_count": 1}, "mess": {"_count": 1}}, "asleep": {"_count": 1, "he": {"_count": 1}}, "pages": {"_count": 3, "so": {"_count": 1}, "at": {"_count": 1}, "searching": {"_count": 1}}, "normal": {"_count": 3, "size": {"_count": 2}, "state": {"_count": 1}}, "depths": {"_count": 6, "": {"_count": 4}, "as": {"_count": 1}, "something": {"_count": 1}}, "heavy": {"_count": 1, "body": {"_count": 1}}, "scaly": {"_count": 2, "nose": {"_count": 1}, "front": {"_count": 1}}, "ruined": {"_count": 2, "eyes": {"_count": 1}, "state": {"_count": 1}}, "handle": {"_count": 3, "glittering": {"_count": 1}, "": {"_count": 1}, "tightly": {"_count": 1}}, "forked": {"_count": 2, "tongue": {"_count": 1}, "tail": {"_count": 1}}, "aim": {"_count": 1, "was": {"_count": 1}}, "beautiful": {"_count": 2, "head": {"_count": 2}}, "burnt": {"_count": 1, "and": {"_count": 1}}, "brain": {"_count": 2, "": {"_count": 2}}, "originator": {"_count": 1, "": {"_count": 1}}, "legs": {"_count": 9, "": {"_count": 1}, "off": {"_count": 2}, "and": {"_count": 1}, "rigidly": {"_count": 1}, "at": {"_count": 1}, "collapsed": {"_count": 1}, "curled": {"_count": 1}, "jerking": {"_count": 1}}, "burden": {"_count": 1, "it": {"_count": 1}}, "feathers": {"_count": 4, "importantly": {"_count": 1}, "sticking": {"_count": 1}, "and": {"_count": 1}, "became": {"_count": 1}}, "wings": {"_count": 11, "and": {"_count": 1}, "": {"_count": 1}, "hopelessly": {"_count": 1}, "irritably": {"_count": 1}, "as": {"_count": 3}, "just": {"_count": 1}, "flutter": {"_count": 1}, "Turning": {"_count": 1}, "beating": {"_count": 1}}, "rubbish": {"_count": 1, "sold": {"_count": 1}}, "point": {"_count": 4, "reflecting": {"_count": 1}, "quivering": {"_count": 1}, "penetrate": {"_count": 1}, "all": {"_count": 1}}, "two": {"_count": 2, "rolls": {"_count": 1}, "arms": {"_count": 1}}, "handsome": {"_count": 1, "green": {"_count": 1}}, "edge": {"_count": 1, "and": {"_count": 1}}, "covers": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "land": {"_count": 1}, "Valentines": {"_count": 1}}, "okay": {"_count": 8, "": {"_count": 3}, "Mr": {"_count": 1}, "if": {"_count": 1}, "I": {"_count": 1}, "sir": {"_count": 1}, "wake": {"_count": 1}}, "uses": {"_count": 4, "": {"_count": 2}, "in": {"_count": 2}}, "hood": {"_count": 5, "": {"_count": 3}, "only": {"_count": 1}, "its": {"_count": 1}}, "black": {"_count": 3, "cloak": {"_count": 1}, "sails": {"_count": 1}, "eyes": {"_count": 1}}, "surroundings": {"_count": 1, "": {"_count": 1}}, "scabbard": {"_count": 1, "and": {"_count": 1}}, "saucer": {"_count": 2, "wait": {"_count": 1}, "": {"_count": 1}}, "spine": {"_count": 1, "and": {"_count": 1}}, "neck": {"_count": 7, "which": {"_count": 1}, "": {"_count": 5}, "the": {"_count": 1}}, "leather": {"_count": 2, "collar": {"_count": 1}, "pouch": {"_count": 1}}, "worth": {"_count": 4, "": {"_count": 1}, "trying": {"_count": 1}, "me": {"_count": 1}, "said": {"_count": 1}}, "sightless": {"_count": 1, "face": {"_count": 1}}, "stiff": {"_count": 1, "arms": {"_count": 1}}, "pincers": {"_count": 2, "menacingly": {"_count": 1}, "once": {"_count": 1}}, "wrong": {"_count": 2, "": {"_count": 1}, "Though": {"_count": 1}}, "come": {"_count": 2, "as": {"_count": 1}, "in": {"_count": 1}}, "cracked": {"_count": 2, "up": {"_count": 1}, "black": {"_count": 1}}, "green": {"_count": 1, "teeth": {"_count": 1}}, "obvious": {"_count": 3, "why": {"_count": 1}, "isnt": {"_count": 1}, "which": {"_count": 1}}, "Hufflepuff": {"_count": 1, "and": {"_count": 1}}, "caved": {"_count": 1, "in": {"_count": 1}}, "Christmas": {"_count": 3, "": {"_count": 1}, "dont": {"_count": 1}, "Eve": {"_count": 1}}, "gotta": {"_count": 2, "go": {"_count": 1}, "be": {"_count": 1}}, "hooded": {"_count": 2, "face": {"_count": 1}, "head": {"_count": 1}}, "cloak": {"_count": 1, "": {"_count": 1}}, "plinth": {"_count": 3, "to": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}}, "harder": {"_count": 2, "if": {"_count": 1}, "in": {"_count": 1}}, "last": {"_count": 10, "and": {"_count": 1}, "word": {"_count": 1}, "message": {"_count": 1}, "contact": {"_count": 1}, "great": {"_count": 1}, "owner": {"_count": 2}, "masters": {"_count": 2}, "master": {"_count": 1}}, "safe": {"_count": 4, "": {"_count": 1}, "to": {"_count": 3}}, "phenomenal": {"_count": 1, "acceleration": {"_count": 1}}, "pinpoint": {"_count": 1, "turning": {"_count": 1}}, "name": {"_count": 1, "faced": {"_count": 1}}, "paces": {"_count": 2, "now": {"_count": 1}, "": {"_count": 1}}, "lonely": {"_count": 1, "landing": {"_count": 1}}, "office": {"_count": 1, "": {"_count": 1}}, "boarded": {"_count": 1, "windows": {"_count": 1}}, "highest": {"_count": 1, "point": {"_count": 1}}, "side": {"_count": 7, "": {"_count": 3}, "street": {"_count": 1}, "its": {"_count": 1}, "as": {"_count": 1}, "blocking": {"_count": 1}}, "Gryffindor": {"_count": 2, "in": {"_count": 2}}, "caught": {"_count": 1, "by": {"_count": 1}}, "delight": {"_count": 1, "OUCH": {"_count": 1}}, "Katie": {"_count": 3, "Bell": {"_count": 3}}, "set": {"_count": 1, "for": {"_count": 1}}, "mind": {"_count": 3, "made": {"_count": 1}, "halfway": {"_count": 1}, "whether": {"_count": 1}}, "scheduled": {"_count": 1, "for": {"_count": 1}}, "flying": {"_count": 1, "away": {"_count": 1}}, "Scabbersl": {"_count": 1, "Ron": {"_count": 1}}, "me": {"_count": 7, "you": {"_count": 1}, "": {"_count": 3}, "Remus": {"_count": 1}, "Harry": {"_count": 1}, "Voldemort": {"_count": 1}}, "Ron": {"_count": 1, "Ron": {"_count": 1}}, "hot": {"_count": 1, "breath": {"_count": 1}}, "leap": {"_count": 1, "had": {"_count": 1}}, "Peter": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 5, "than": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 1}}, "rotting": {"_count": 2, "hands": {"_count": 1}, "scabbed": {"_count": 1}}, "putrid": {"_count": 1, "breath": {"_count": 1}}, "brightness": {"_count": 1, "somebody": {"_count": 1}}, "given": {"_count": 1, "them": {"_count": 1}}, "shout": {"_count": 1, "echoed": {"_count": 1}}, "lower": {"_count": 1, "branches": {"_count": 1}}, "cloud": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 4, "silver": {"_count": 1}, "batlike": {"_count": 1}, "and": {"_count": 1}, "mouth": {"_count": 1}}, "antlered": {"_count": 1, "head": {"_count": 1}}, "mighty": {"_count": 1, "wings": {"_count": 1}}, "tentacles": {"_count": 1, "lazily": {"_count": 1}}, "how": {"_count": 3, "much": {"_count": 1}, "they": {"_count": 2}}, "deepest": {"_count": 1, "its": {"_count": 1}}, "most": {"_count": 1, "impenetrable": {"_count": 1}}, "letter": {"_count": 1, "onto": {"_count": 1}}, "task": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 1, "form": {"_count": 1}}, "roof": {"_count": 1, "and": {"_count": 1}}, "upper": {"_count": 1, "windows": {"_count": 1}}, "hook": {"_count": 1, "by": {"_count": 1}}, "undulating": {"_count": 1, "body": {"_count": 1}}, "diamondpatterned": {"_count": 1, "tail": {"_count": 1}}, "rug": {"_count": 1, "": {"_count": 1}}, "better": {"_count": 2, "if": {"_count": 1}, "when": {"_count": 1}}, "removal": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "hes": {"_count": 1}}, "end": {"_count": 4, "so": {"_count": 1}, "withering": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "rather": {"_count": 2, "difficult": {"_count": 1}, "clever": {"_count": 1}}, "sweet": {"_count": 1, "": {"_count": 1}}, "extremely": {"_count": 2, "busy": {"_count": 1}, "valuable": {"_count": 1}}, "nowhere": {"_count": 1, "near": {"_count": 1}}, "inky": {"_count": 1, "blackness": {"_count": 1}}, "extraordinary": {"_count": 1, "inner": {"_count": 1}}, "thanks": {"_count": 1, "to": {"_count": 1}}, "happening": {"_count": 1, "at": {"_count": 1}}, "hands": {"_count": 1, "": {"_count": 1}}, "fingers": {"_count": 2, "revealing": {"_count": 1}, "": {"_count": 1}}, "approval": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "Mullet": {"_count": 1, "": {"_count": 1}}, "narrow": {"_count": 1, "beam": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "symbol": {"_count": 1}}, "ears": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "\u2018classified": {"_count": 1, "information": {"_count": 1}}, "impossible": {"_count": 1, "to": {"_count": 1}}, "magic": {"_count": 2, "seemed": {"_count": 1}, "what": {"_count": 1}}, "magnificent": {"_count": 1, "marble": {"_count": 1}}, "quite": {"_count": 5, "out": {"_count": 1}, "": {"_count": 1}, "fun": {"_count": 1}, "all": {"_count": 1}, "beside": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 2}}, "smell": {"_count": 1, "toward": {"_count": 1}}, "socket": {"_count": 6, "taking": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 2}, "Tonks": {"_count": 1}}, "them": {"_count": 2, "well": {"_count": 1}, "look": {"_count": 1}}, "visor": {"_count": 1, "as": {"_count": 1}}, "poor": {"_count": 1, "crowd": {"_count": 1}}, "witches": {"_count": 1, "the": {"_count": 1}}, "hind": {"_count": 6, "legs": {"_count": 5}, "leg": {"_count": 1}}, "proper": {"_count": 2, "size": {"_count": 1}, "place": {"_count": 1}}, "power": {"_count": 2, "and": {"_count": 1}, "will": {"_count": 1}}, "effects": {"_count": 2, "": {"_count": 1}, "extremely": {"_count": 1}}, "illegal": {"_count": 4, "Professor": {"_count": 1}, "Ill": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "influence": {"_count": 1, "": {"_count": 1}}, "vast": {"_count": 1, "wheels": {"_count": 1}}, "portholes": {"_count": 1, "looked": {"_count": 1}}, "Krum": {"_count": 1, "tfyfflapier": {"_count": 1}}, "gonna": {"_count": 1, "be": {"_count": 1}}, "Angelina": {"_count": 1, "said": {"_count": 1}}, "tip": {"_count": 7, "Dumbledore": {"_count": 1}, "": {"_count": 3}, "into": {"_count": 1}, "emanated": {"_count": 1}, "sparkling": {"_count": 1}}, "Potter": {"_count": 2, "growled": {"_count": 1}, "": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "always": {"_count": 5, "you": {"_count": 1}, "a": {"_count": 1}, "packed": {"_count": 1}, "bin": {"_count": 1}, "handy": {"_count": 1}}, "wake": {"_count": 1, "he": {"_count": 1}}, "relation": {"_count": 1, "to": {"_count": 1}}, "leg": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "Hagrid": {"_count": 3, "": {"_count": 1}, "doing": {"_count": 1}, "said": {"_count": 1}}, "might": {"_count": 1, "a": {"_count": 1}}, "jaws": {"_count": 2, "stretched": {"_count": 1}, "at": {"_count": 1}}, "wrinkled": {"_count": 1, "black": {"_count": 1}}, "one": {"_count": 3, "fer": {"_count": 1}, "short": {"_count": 1}, "of": {"_count": 1}}, "dragons": {"_count": 1, "Sirius": {"_count": 1}}, "fangs": {"_count": 3, "for": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}}, "previous": {"_count": 6, "occupants": {"_count": 2}, "proportions": {"_count": 1}, "condition": {"_count": 1}, "owner": {"_count": 1}, "master": {"_count": 1}}, "entrance": {"_count": 1, "facing": {"_count": 1}}, "minuscule": {"_count": 1, "fangs": {"_count": 1}}, "collective": {"_count": 1, "breath": {"_count": 1}}, "cementcolored": {"_count": 1, "fellows": {"_count": 1}}, "fullest": {"_count": 1, "extent": {"_count": 1}}, "charmer": {"_count": 1, "": {"_count": 1}}, "fires": {"_count": 1, "and": {"_count": 1}}, "sting": {"_count": 1, "arched": {"_count": 1}}, "crystalline": {"_count": 1, "depths": {"_count": 1}}, "taken": {"_count": 2, "you": {"_count": 2}}, "her": {"_count": 1, "business": {"_count": 1}}, "inhabitants": {"_count": 1, "were": {"_count": 1}}, "grounds": {"_count": 1, "now": {"_count": 1}}, "weakest": {"_count": 1, "point": {"_count": 1}}, "elegant": {"_count": 1, "bun": {"_count": 1}}, "golden": {"_count": 3, "hooves": {"_count": 1}, "light": {"_count": 1}, "doors": {"_count": 1}}, "horned": {"_count": 2, "head": {"_count": 2}}, "January": {"_count": 1, "": {"_count": 1}}, "size": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "weight": {"_count": 2, "Idve": {"_count": 1}, "Im": {"_count": 1}}, "pointed": {"_count": 3, "fangs": {"_count": 2}, "end": {"_count": 1}}, "become": {"_count": 1, "a": {"_count": 1}}, "something": {"_count": 6, "important": {"_count": 1}, "that": {"_count": 1}, "really": {"_count": 1}, "disgusting": {"_count": 1}, "like": {"_count": 1}, "you": {"_count": 1}}, "nights": {"_count": 1, "hunting": {"_count": 1}}, "blackmail": {"_count": 1, "": {"_count": 1}}, "urgent": {"_count": 1, "": {"_count": 1}}, "occupants": {"_count": 1, "were": {"_count": 1}}, "silvery": {"_count": 1, "spots": {"_count": 1}}, "beam": {"_count": 1, "fell": {"_count": 1}}, "rattling": {"_count": 1, "breath": {"_count": 1}}, "robes": {"_count": 2, "": {"_count": 1}, "sucking": {"_count": 1}}, "fleshy": {"_count": 2, "shellless": {"_count": 1}, "nose": {"_count": 1}}, "thin": {"_count": 2, "arms": {"_count": 1}, "blanket": {"_count": 1}}, "frail": {"_count": 2, "body": {"_count": 1}, "legs": {"_count": 1}}, "diamond": {"_count": 1, "sparks": {"_count": 1}}, "drowned": {"_count": 1, "": {"_count": 1}}, "entirety": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "lid": {"_count": 1, "and": {"_count": 1}}, "final": {"_count": 2, "request": {"_count": 1}, "act": {"_count": 1}}, "fatal": {"_count": 1, "kiss": {"_count": 1}}, "yours": {"_count": 1, "dear": {"_count": 1}}, "flower": {"_count": 1, "beds": {"_count": 1}}, "second": {"_count": 1, "week": {"_count": 1}}, "regular": {"_count": 1, "irritation": {"_count": 1}}, "antlers": {"_count": 1, "caught": {"_count": 1}}, "slimy": {"_count": 1, "hands": {"_count": 1}}, "fellow": {"_count": 1, "it": {"_count": 1}}, "hairnet": {"_count": 1, "a": {"_count": 1}}, "cleaning": {"_count": 1, "it": {"_count": 1}}, "lovely": {"_count": 2, "to": {"_count": 2}}, "over": {"_count": 5, "": {"_count": 1}, "yeh": {"_count": 1}, "do": {"_count": 1}, "and": {"_count": 2}}, "lets": {"_count": 1, "hope": {"_count": 1}}, "through": {"_count": 1, "this": {"_count": 1}}, "contents": {"_count": 4, "everywhere": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "seemed": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "much": {"_count": 1}, "simple": {"_count": 1}}, "invisible": {"_count": 1, "occupant": {"_count": 1}}, "some": {"_count": 2, "particularly": {"_count": 1}, "kind": {"_count": 1}}, "fairylike": {"_count": 1, "body": {"_count": 1}}, "four": {"_count": 2, "tiny": {"_count": 1}, "long": {"_count": 1}}, "middle": {"_count": 1, "it": {"_count": 1}}, "twin": {"_count": 1, "unnatural": {"_count": 1}}, "filthy": {"_count": 1, "said": {"_count": 1}}, "fine": {"_count": 2, "said": {"_count": 2}}, "midst": {"_count": 1, "yes": {"_count": 1}}, "down": {"_count": 3, "in": {"_count": 2}, "here": {"_count": 1}}, "nothing": {"_count": 9, "": {"_count": 1}, "its": {"_count": 2}, "to": {"_count": 4}, "like": {"_count": 1}, "dear": {"_count": 1}}, "readers": {"_count": 1, "all": {"_count": 1}}, "dreamy": {"_count": 1, "quality": {"_count": 1}}, "light": {"_count": 5, "he": {"_count": 1}, "up": {"_count": 1}, "was": {"_count": 1}, "dazzled": {"_count": 1}, "swung": {"_count": 1}}, "ever": {"_count": 1, "given": {"_count": 1}}, "advice": {"_count": 1, "is": {"_count": 1}}, "Dumbledore": {"_count": 1, "too": {"_count": 1}}, "driving": {"_count": 1, "me": {"_count": 1}}, "inhabitant": {"_count": 1, "a": {"_count": 1}}, "Potty": {"_count": 1, "Wee": {"_count": 1}}, "sharp": {"_count": 2, "fingers": {"_count": 1}, "beak": {"_count": 1}}, "But": {"_count": 1, "Ron": {"_count": 1}}, "for": {"_count": 3, "Sirius": {"_count": 1}, "other": {"_count": 1}, "sale": {"_count": 1}}, "Io": {"_count": 1, "thats": {"_count": 1}}, "anything": {"_count": 1, "to": {"_count": 1}}, "A": {"_count": 1, "for": {"_count": 1}}, "likel": {"_count": 1, "You": {"_count": 1}}, "rreally": {"_count": 1, "like": {"_count": 1}}, "attention": {"_count": 1, "on": {"_count": 1}}, "fallen": {"_count": 1, "to": {"_count": 1}}, "blocked": {"_count": 1, "said": {"_count": 1}}, "escaping": {"_count": 1, "": {"_count": 1}}, "other": {"_count": 1, "side": {"_count": 1}}, "pretty": {"_count": 1, "basic": {"_count": 1}}, "beneath": {"_count": 1, "you": {"_count": 1}}, "Johnson": {"_count": 1, "Johnson": {"_count": 1}}, "Warrington": {"_count": 2, "with": {"_count": 1}, "again": {"_count": 1}}, "Pucey": {"_count": 1, "in": {"_count": 1}}, "change": {"_count": 1, "of": {"_count": 1}}, "progress": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "cold": {"_count": 1, "out": {"_count": 1}}, "nuthin": {"_count": 2, "": {"_count": 2}}, "dragon": {"_count": 1, "meat": {"_count": 1}}, "bin": {"_count": 2, "a": {"_count": 1}, "me": {"_count": 1}}, "late": {"_count": 1, "he": {"_count": 1}}, "leathery": {"_count": 1, "wings": {"_count": 1}}, "mainly": {"_count": 1, "jus": {"_count": 1}}, "near": {"_count": 1, "me": {"_count": 1}}, "serious": {"_count": 2, "there": {"_count": 1}, "I": {"_count": 1}}, "perch": {"_count": 1, "with": {"_count": 1}}, "spindly": {"_count": 1, "little": {"_count": 1}}, "breakfast": {"_count": 1, "for": {"_count": 1}}, "lucky": {"_count": 1, "you": {"_count": 1}}, "jointed": {"_count": 1, "finger": {"_count": 1}}, "ward": {"_count": 1, "doors": {"_count": 1}}, "probably": {"_count": 5, "no": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 2}, "something": {"_count": 1}}, "excellent": {"_count": 1, "beats": {"_count": 1}}, "I": {"_count": 1, "He": {"_count": 1}}, "residents": {"_count": 1, "": {"_count": 1}}, "Arry": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "decks": {"_count": 1}}, "Ogwarts": {"_count": 1, "stop": {"_count": 1}}, "Voldemorts": {"_count": 1, "thoughts": {"_count": 1}}, "private": {"_count": 1, "He": {"_count": 1}}, "definitely": {"_count": 2, "the": {"_count": 1}, "somewhere": {"_count": 1}}, "bracket": {"_count": 2, "on": {"_count": 1}, "Harry": {"_count": 1}}, "jar": {"_count": 1, "": {"_count": 1}}, "draining": {"_count": 1, "potion": {"_count": 1}}, "never": {"_count": 1, "opened": {"_count": 1}}, "columns": {"_count": 1, "": {"_count": 1}}, "news": {"_count": 1, "to": {"_count": 1}}, "purpose": {"_count": 1, "": {"_count": 1}}, "subject": {"_count": 1, "": {"_count": 1}}, "business": {"_count": 1, "as": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 1}, "there": {"_count": 1}}, "search": {"_count": 1, "for": {"_count": 1}}, "members": {"_count": 1, "": {"_count": 1}}, "done": {"_count": 2, "he": {"_count": 1}, "Master": {"_count": 1}}, "sleep": {"_count": 1, "": {"_count": 1}}, "company": {"_count": 1, "he": {"_count": 1}}, "who": {"_count": 1, "you": {"_count": 1}}, "actually": {"_count": 1, "dried": {"_count": 1}}, "bad": {"_count": 1, "enough": {"_count": 1}}, "stand": {"_count": 1, "and": {"_count": 1}}, "position": {"_count": 1, "an": {"_count": 1}}, "merits": {"_count": 1, "": {"_count": 1}}, "miles": {"_count": 1, "away": {"_count": 1}}, "colorless": {"_count": 1, "said": {"_count": 1}}, "rready": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "hidden": {"_count": 1}}, "actions": {"_count": 1, "\u2018Nearhuman": {"_count": 1}}, "because": {"_count": 2, "of": {"_count": 1}, "youre": {"_count": 1}}, "eager": {"_count": 1, "licking": {"_count": 1}}, "bony": {"_count": 1, "rump": {"_count": 1}}, "wide": {"_count": 2, "wings": {"_count": 1}, "longlashed": {"_count": 1}}, "slipstream": {"_count": 1, "": {"_count": 1}}, "hindquarters": {"_count": 1, "and": {"_count": 1}}, "cool": {"_count": 2, "shining": {"_count": 1}, "said": {"_count": 1}}, "egg": {"_count": 1, "": {"_count": 1}}, "surface": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "gaudy": {"_count": 1, "innards": {"_count": 1}}, "dais": {"_count": 1, "": {"_count": 1}}, "bow": {"_count": 1, "spun": {"_count": 1}}, "chest": {"_count": 2, "as": {"_count": 1}, "before": {"_count": 1}}, "hold": {"_count": 1, "upon": {"_count": 1}}, "pool": {"_count": 1, "slopping": {"_count": 1}}, "full": {"_count": 3, "contents": {"_count": 1}, "power": {"_count": 1}, "of": {"_count": 1}}, "cheapness": {"_count": 1, "has": {"_count": 1}}, "certainly": {"_count": 2, "given": {"_count": 1}, "only": {"_count": 1}}, "bank": {"_count": 1, "sheltered": {"_count": 1}}, "unusual": {"_count": 1, "hell": {"_count": 1}}, "square": {"_count": 1, "by": {"_count": 1}}, "oddson": {"_count": 1, "youll": {"_count": 1}}, "live": {"_count": 1, "and": {"_count": 1}}, "Black": {"_count": 1, "we": {"_count": 1}}, "crisp": {"_count": 1, "official": {"_count": 1}}, "bearings": {"_count": 1, "for": {"_count": 1}}, "toe": {"_count": 1, "": {"_count": 1}}, "stringent": {"_count": 1, "new": {"_count": 1}}, "arrival": {"_count": 1, "three": {"_count": 1}}, "original": {"_count": 2, "position": {"_count": 1}, "places": {"_count": 1}}, "pendulum": {"_count": 1, "lying": {"_count": 1}}, "keys": {"_count": 1, "strewn": {"_count": 1}}, "compensations": {"_count": 1, "and": {"_count": 1}}, "current": {"_count": 1, "position": {"_count": 1}}, "nine": {"_count": 1, "hands": {"_count": 1}}, "Ministry": {"_count": 1, "procedure": {"_count": 1}}, "barely": {"_count": 1, "nine": {"_count": 1}}, "taking": {"_count": 1, "about": {"_count": 1}}, "pallor": {"_count": 1, "still": {"_count": 1}}, "support": {"_count": 1, "staff": {"_count": 1}}, "frequent": {"_count": 1, "bids": {"_count": 1}}, "staff": {"_count": 1, "table": {"_count": 1}}, "ruff": {"_count": 1, "": {"_count": 1}}, "died": {"_count": 1, "said": {"_count": 1}}, "distinctive": {"_count": 1, "motherofpearl": {"_count": 1}}, "clear": {"_count": 1, "youve": {"_count": 1}}, "rim": {"_count": 1, "": {"_count": 1}}, "church": {"_count": 1, "and": {"_count": 1}}, "walls": {"_count": 3, "were": {"_count": 1}, "": {"_count": 1}, "embedded": {"_count": 1}}, "handwritten": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "title": {"_count": 1}, "birthday": {"_count": 1}}, "fascinating": {"_count": 1, "said": {"_count": 1}}, "pathetic": {"_count": 1, "": {"_count": 1}}, "Urquhart": {"_count": 1, "streaking": {"_count": 1}}, "mark": {"_count": 1, "": {"_count": 1}}, "natural": {"_count": 1, "ability": {"_count": 1}}, "form": {"_count": 1, "he": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "unconscious": {"_count": 1, "owner": {"_count": 1}}, "detention": {"_count": 2, "": {"_count": 2}}, "undoubtedly": {"_count": 1, "from": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Quidditch": {"_count": 1, "but": {"_count": 1}}, "gettin": {"_count": 1, "on": {"_count": 1}}, "secrets": {"_count": 1, "than": {"_count": 1}}, "history": {"_count": 1, "not": {"_count": 1}}, "snug": {"_count": 1, "silken": {"_count": 1}}, "red": {"_count": 1, "velvet": {"_count": 1}}, "Mundungus": {"_count": 1, "hes": {"_count": 1}}, "solid": {"_count": 1, "arent": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "mates": {"_count": 1, "to": {"_count": 1}}, "almost": {"_count": 1, "impossible": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "buried": {"_count": 1, "": {"_count": 1}}, "rays": {"_count": 1, "mingled": {"_count": 1}}, "difficult": {"_count": 1, "for": {"_count": 1}}, "part": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "powers": {"_count": 1, "I": {"_count": 1}}, "seriously": {"_count": 1, "complicated": {"_count": 1}}, "blistered": {"_count": 1, "surface": {"_count": 1}}, "skeleton": {"_count": 1, "had": {"_count": 1}}, "landed": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 1, "Dumbledore": {"_count": 1}}, "nature": {"_count": 1, "": {"_count": 1}}, "slippery": {"_count": 1, "surface": {"_count": 1}}, "chain": {"_count": 1, "slithered": {"_count": 1}}, "tribute": {"_count": 1, "of": {"_count": 1}}, "serpents": {"_count": 1, "tongue": {"_count": 1}}, "caster": {"_count": 1, "was": {"_count": 1}}, "pressure": {"_count": 1, "without": {"_count": 1}}, "glass": {"_count": 1, "case": {"_count": 1}}, "consequences": {"_count": 1, "for": {"_count": 1}}, "fact": {"_count": 1, "Dumbledore": {"_count": 1}}, "range": {"_count": 1, "": {"_count": 1}}, "handlebars": {"_count": 1, "now": {"_count": 1}}, "menace": {"_count": 1, "": {"_count": 1}}, "arm": {"_count": 1, "NO": {"_count": 1}}, "leaves": {"_count": 1, "And": {"_count": 1}}, "icy": {"_count": 1, "bite": {"_count": 1}}, "enormous": {"_count": 2, "batlike": {"_count": 1}, "shadow": {"_count": 1}}, "grazing": {"_count": 1, "": {"_count": 1}}, "overgrown": {"_count": 2, "plants": {"_count": 1}, "state": {"_count": 1}}, "wand": {"_count": 1, "and": {"_count": 1}}, "protection": {"_count": 4, "has": {"_count": 1}, "their": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 1}}, "restraining": {"_count": 1, "belt": {"_count": 1}}, "destroyed": {"_count": 1, "": {"_count": 1}}, "incredibly": {"_count": 2, "rare": {"_count": 1}, "dangerous": {"_count": 1}}, "container": {"_count": 1, "its": {"_count": 1}}, "enchanted": {"_count": 2, "body": {"_count": 1}, "cage": {"_count": 1}}, "silver": {"_count": 1, "wings": {"_count": 1}}, "tired": {"_count": 1, "wings": {"_count": 1}}, "Grindelwalds": {"_count": 2, "": {"_count": 1}, "mark": {"_count": 1}}, "existence": {"_count": 1, "by": {"_count": 1}}, "Secret": {"_count": 1, "Keeper": {"_count": 1}}, "waistlength": {"_count": 1, "hair": {"_count": 1}}, "started": {"_count": 1, "opening": {"_count": 1}}, "sockets": {"_count": 1, "solid": {"_count": 1}}, "assistance": {"_count": 1, "and": {"_count": 1}}, "motto": {"_count": 1, "TOU": {"_count": 1}}, "sticky": {"_count": 1, "residue": {"_count": 1}}, "victim": {"_count": 1, "": {"_count": 1}}, "basin": {"_count": 1, "of": {"_count": 1}}, "dead": {"_count": 1, "hand": {"_count": 1}}, "also": {"_count": 1, "another": {"_count": 1}}, "taps": {"_count": 1, "in": {"_count": 1}}, "complexity": {"_count": 1, "its": {"_count": 1}}, "impenetrability": {"_count": 1, "seemed": {"_count": 1}}, "petals": {"_count": 2, "being": {"_count": 1}, "like": {"_count": 1}}, "whereabouts": {"_count": 1, "out": {"_count": 1}}, "descent": {"_count": 1, "": {"_count": 1}}, "serpent": {"_count": 1, "door": {"_count": 1}}, "shadow": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "usually": {"_count": 1, "with": {"_count": 1}}, "site": {"_count": 1, "and": {"_count": 1}}, "disgusting": {"_count": 1, "said": {"_count": 1}}, "center": {"_count": 2, "cleared": {"_count": 1}, "casting": {"_count": 1}}, "case": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "pupil": {"_count": 1, "crossed": {"_count": 1}}, "reflection": {"_count": 1, "wavered": {"_count": 1}}, "broken": {"_count": 2, "like": {"_count": 1}, "chain": {"_count": 1}}, "unfortunate": {"_count": 1, "tolerance": {"_count": 1}}, "its": {"_count": 1, "an": {"_count": 1}}, "\u2018Magic": {"_count": 1, "Is": {"_count": 1}}, "hilt": {"_count": 2, "": {"_count": 2}}, "shortened": {"_count": 1, "chain": {"_count": 1}}, "rubied": {"_count": 2, "hilt": {"_count": 2}}, "punctured": {"_count": 1, "windows": {"_count": 1}}, "annoying": {"_count": 1, "you": {"_count": 1}}, "theirs": {"_count": 1, "and": {"_count": 1}}, "midnight": {"_count": 1, "": {"_count": 1}}, "helped": {"_count": 1, "us": {"_count": 1}}, "tricky": {"_count": 1, "tuning": {"_count": 1}}, "Lupin": {"_count": 1, "Romulus": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "im": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "disarmed": {"_count": 1, "and": {"_count": 1}}, "defenses": {"_count": 1, "being": {"_count": 1}}, "pain": {"_count": 1, "or": {"_count": 1}}, "invitation": {"_count": 1, "": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "allegiance": {"_count": 2, "will": {"_count": 1}, "": {"_count": 1}}, "will": {"_count": 1, "to": {"_count": 1}}, "new": {"_count": 1, "master": {"_count": 1}}, "garden": {"_count": 1, "he": {"_count": 1}}, "genius": {"_count": 1, "said": {"_count": 1}}, "turned": {"_count": 1, "ginger": {"_count": 1}}, "capabilities": {"_count": 1, "in": {"_count": 1}}, "flanks": {"_count": 1, "": {"_count": 1}}, "broad": {"_count": 1, "back": {"_count": 1}}, "underground": {"_count": 1, "prison": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "scarred": {"_count": 1, "snout": {"_count": 1}}, "fill": {"_count": 1, "and": {"_count": 1}}, "folds": {"_count": 1, "but": {"_count": 1}}, "why": {"_count": 1, "you": {"_count": 1}}, "POTTER": {"_count": 1, "": {"_count": 1}}, "expanded": {"_count": 1, "as": {"_count": 1}}, "breast": {"_count": 1, "Minerva": {"_count": 1}}, "loyalties": {"_count": 1, "interrupted": {"_count": 1}}, "towering": {"_count": 1, "walls": {"_count": 1}}, "emeralds": {"_count": 1, "everywhere": {"_count": 1}}, "teeth": {"_count": 1, "into": {"_count": 1}}, "treelike": {"_count": 1, "hairy": {"_count": 1}}, "bellows": {"_count": 1, "echoed": {"_count": 1}}, "thick": {"_count": 1, "trunk": {"_count": 1}}, "protective": {"_count": 1, "sphere": {"_count": 1}}, "rightful": {"_count": 1, "owner": {"_count": 1}}, "huge": {"_count": 1, "protective": {"_count": 1}}, "runic": {"_count": 1, "markings": {"_count": 1}}, "arc": {"_count": 1, "and": {"_count": 1}}, "remaining": {"_count": 1, "lifeblood": {"_count": 1}}, "jagged": {"_count": 1, "crack": {"_count": 1}}, "flickering": {"_count": 1, "light": {"_count": 1}}, "remarkable": {"_count": 1, "effects": {"_count": 1}}, "powerful": {"_count": 1, "said": {"_count": 1}}}, "Shoo": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "loudly": {"_count": 304, "": {"_count": 92, ".": {"_count": 92}}, "sat": {"_count": 1, "up": {"_count": 1}}, "See": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 14, "the": {"_count": 1}, "Uncle": {"_count": 1}, "half": {"_count": 1}, "he": {"_count": 3}, "everyone": {"_count": 1}, "several": {"_count": 1}, "his": {"_count": 1}, "Professor": {"_count": 1}, "people": {"_count": 1}, "passersby": {"_count": 1}, "many": {"_count": 1}, "Lupin": {"_count": 1}}, "with": {"_count": 4, "the": {"_count": 3}, "every": {"_count": 1}}, "about": {"_count": 2, "first": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 37, "he": {"_count": 1}, "Harry": {"_count": 1}, "silence": {"_count": 1}, "become": {"_count": 1}, "looking": {"_count": 1}, "then": {"_count": 2}, "jumping": {"_count": 1}, "picked": {"_count": 1}, "on": {"_count": 1}, "happily": {"_count": 1}, "excitedly": {"_count": 2}, "the": {"_count": 2}, "she": {"_count": 1}, "Ron": {"_count": 1}, "clearly": {"_count": 3}, "plainly": {"_count": 1}, "bustled": {"_count": 1}, "when": {"_count": 1}, "everyone": {"_count": 1}, "approached": {"_count": 1}, "slowly": {"_count": 1}, "Pansy": {"_count": 1}, "joyfully": {"_count": 1}, "frequently": {"_count": 1}, "shifted": {"_count": 1}, "sycophantically": {"_count": 1}, "confidently": {"_count": 1}, "Fawkes": {"_count": 1}, "Krum": {"_count": 1}, "took": {"_count": 1}, "Dumbledores": {"_count": 1}, "in": {"_count": 1}}, "but": {"_count": 8, "Harry": {"_count": 2}, "nobody": {"_count": 1}, "that": {"_count": 1}, "Aunt": {"_count": 1}, "Master": {"_count": 1}, "Sirius": {"_count": 1}, "managed": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "give": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 4, "once": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "Fred": {"_count": 1}}, "waving": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "to": {"_count": 6, "Hagrid": {"_count": 1}, "the": {"_count": 2}, "hear": {"_count": 1}, "be": {"_count": 1}, "Hermione": {"_count": 1}}, "over": {"_count": 7, "the": {"_count": 3}, "Winkys": {"_count": 1}, "another": {"_count": 1}, "her": {"_count": 1}, "Kreachers": {"_count": 1}}, "striding": {"_count": 2, "toward": {"_count": 1}, "out": {"_count": 1}}, "uncomfortably": {"_count": 1, "aware": {"_count": 1}}, "as": {"_count": 22, "his": {"_count": 2}, "Crabbes": {"_count": 1}, "though": {"_count": 2}, "they": {"_count": 2}, "the": {"_count": 3}, "Harry": {"_count": 1}, "more": {"_count": 1}, "he": {"_count": 6}, "Uncle": {"_count": 1}, "Malfoy": {"_count": 1}, "every": {"_count": 1}, "before": {"_count": 1}}, "he": {"_count": 1, "stepped": {"_count": 1}}, "who": {"_count": 2, "he": {"_count": 1}, "was": {"_count": 1}}, "without": {"_count": 1, "bothering": {"_count": 1}}, "pulling": {"_count": 1, "back": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "exiting": {"_count": 1, "through": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "An": {"_count": 1, "someonell": {"_count": 1}}, "than": {"_count": 6, "Dean": {"_count": 1}, "hed": {"_count": 2}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "before": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 4}}, "on": {"_count": 5, "the": {"_count": 4}, "broomstick": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "seizing": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 3, "under": {"_count": 1}, "the": {"_count": 1}, "beside": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 2, "Ron": {"_count": 1}, "stared": {"_count": 1}}, "she": {"_count": 1, "doesnt": {"_count": 1}}, "You": {"_count": 1, "asked": {"_count": 1}}, "If": {"_count": 1, "Scabbers": {"_count": 1}}, "enough": {"_count": 4, "to": {"_count": 2}, "for": {"_count": 2}}, "whats": {"_count": 1, "going": {"_count": 1}}, "until": {"_count": 1, "at": {"_count": 1}}, "think": {"_count": 1, "about": {"_count": 1}}, "though": {"_count": 1, "not": {"_count": 1}}, "so": {"_count": 4, "that": {"_count": 4}}, "Nice": {"_count": 1, "ter": {"_count": 1}}, "interrupting": {"_count": 2, "him": {"_count": 2}}, "his": {"_count": 5, "temper": {"_count": 1}, "fist": {"_count": 1}, "voice": {"_count": 2}, "hands": {"_count": 1}}, "around": {"_count": 5, "the": {"_count": 5}}, "thumping": {"_count": 1, "heart": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "Mrs": {"_count": 1}}, "drowning": {"_count": 1, "out": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "closing": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 3, "anyone": {"_count": 1}, "Harry": {"_count": 2}}, "under": {"_count": 1, "his": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "WEASLEY": {"_count": 1, "WAS": {"_count": 1}}, "cupping": {"_count": 1, "her": {"_count": 1}}, "leaning": {"_count": 1, "back": {"_count": 1}}, "plunging": {"_count": 1, "her": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 1, "Potions": {"_count": 1}}, "considering": {"_count": 1, "that": {"_count": 1}}, "while": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 1, "Bellatrix": {"_count": 1}}, "cutting": {"_count": 1, "across": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "whether": {"_count": 1, "the": {"_count": 1}}, "leaping": {"_count": 1, "to": {"_count": 1}}, "Youll": {"_count": 1, "go": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 1}, "down": {"_count": 1}}, "water": {"_count": 1, "poured": {"_count": 1}}, "patted": {"_count": 1, "her": {"_count": 1}}, "wand": {"_count": 1, "aloft": {"_count": 1}}, "Well": {"_count": 1, "this": {"_count": 1}}, "How": {"_count": 1, "come": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "move": {"_count": 242, "": {"_count": 57, ".": {"_count": 49}, "?": {"_count": 2}, "!": {"_count": 6}}, "on": {"_count": 11, "I": {"_count": 1}, "": {"_count": 4}, "you": {"_count": 2}, "Remus": {"_count": 1}, "before": {"_count": 1}, "well": {"_count": 1}, "to": {"_count": 1}}, "he": {"_count": 5, "whined": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}, "might": {"_count": 1}, "said": {"_count": 1}}, "everything": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 6, "all": {"_count": 4}, "once": {"_count": 2}}, "around": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 3}, "them": {"_count": 1}}, "while": {"_count": 2, "I": {"_count": 1}, "Ron": {"_count": 1}}, "youll": {"_count": 1, "get": {"_count": 1}}, "over": {"_count": 3, "Hermione": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "merely": {"_count": 1}}, "up": {"_count": 3, "into": {"_count": 1}, "the": {"_count": 2}}, "by": {"_count": 1, "Gryffindor": {"_count": 1}}, "along": {"_count": 4, "": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}, "then": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 5, "fear": {"_count": 1}, "laughing": {"_count": 1}, "a": {"_count": 1}, "being": {"_count": 1}, "itself": {"_count": 1}}, "diagonally": {"_count": 1, "four": {"_count": 1}}, "and": {"_count": 7, "shell": {"_count": 1}, "by": {"_count": 1}, "after": {"_count": 1}, "I": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 2}}, "ahead": {"_count": 2, "Another": {"_count": 1}, "and": {"_count": 1}}, "onward": {"_count": 1, "neither": {"_count": 1}}, "a": {"_count": 5, "muscle": {"_count": 3}, "little": {"_count": 2}}, "Dobby": {"_count": 1, "had": {"_count": 1}}, "his": {"_count": 5, "fingers": {"_count": 1}, "arms": {"_count": 1}, "lips": {"_count": 1}, "foot": {"_count": 1}, "feet": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 3, "each": {"_count": 1}, "Siriuss": {"_count": 1}, "the": {"_count": 1}}, "very": {"_count": 1, "quickly": {"_count": 1}}, "the": {"_count": 2, "sink": {"_count": 1}, "other": {"_count": 1}}, "then": {"_count": 2, "hed": {"_count": 1}, "under": {"_count": 1}}, "to": {"_count": 9, "the": {"_count": 2}, "defend": {"_count": 1}, "stop": {"_count": 1}, "escape": {"_count": 1}, "hurt": {"_count": 1}, "Australia": {"_count": 1}, "Godrics": {"_count": 1}, "news": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "so": {"_count": 1, "Lupin": {"_count": 1}}, "among": {"_count": 1, "you": {"_count": 1}}, "Hagrid": {"_count": 1, "continued": {"_count": 1}}, "them": {"_count": 3, "back": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "back": {"_count": 2, "from": {"_count": 1}, "across": {"_count": 1}}, "theyre": {"_count": 1, "going": {"_count": 1}}, "in": {"_count": 4, "": {"_count": 1}, "packs": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "Peter": {"_count": 1, "said": {"_count": 1}}, "or": {"_count": 7, "speak": {"_count": 4}, "send": {"_count": 1}, "guessed": {"_count": 1}, "consult": {"_count": 1}}, "sick": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 2, "hissed": {"_count": 1}, "Potter": {"_count": 1}}, "faster": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "aside": {"_count": 2, "and": {"_count": 1}, "so": {"_count": 1}}, "either": {"_count": 1, "way": {"_count": 1}}, "was": {"_count": 1, "supposed": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "her": {"_count": 3, "eyes": {"_count": 1}, "orange": {"_count": 1}, "shes": {"_count": 1}}, "your": {"_count": 1, "lips": {"_count": 1}}, "through": {"_count": 4, "crowds": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}}, "pity": {"_count": 1, "it": {"_count": 1}}, "too": {"_count": 2, "far": {"_count": 1}, "but": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 2, "inch": {"_count": 2}}, "anything": {"_count": 1, "from": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "forward": {"_count": 1, "then": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "called": {"_count": 1, "the": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "their": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}, "Granger": {"_count": 1, "breathed": {"_count": 1}}, "sideways": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "out": {"_count": 3, "until": {"_count": 1}, "of": {"_count": 2}}, "like": {"_count": 1, "I": {"_count": 1}}, "without": {"_count": 2, "touching": {"_count": 1}, "haste": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "anywhere": {"_count": 1, "": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "farther": {"_count": 1, "into": {"_count": 1}}, "upward": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 1, "lift": {"_count": 1}}, "fast": {"_count": 1, "said": {"_count": 1}}, "took": {"_count": 1, "them": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}, "snow": {"_count": 1, "": {"_count": 1}}, "His": {"_count": 1, "eyes": {"_count": 1}}, "until": {"_count": 1, "Harry": {"_count": 1}}, "dont": {"_count": 1, "they": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "slowly": {"_count": 1}}, "this": {"_count": 1, "scum": {"_count": 1}}, "downstairs": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "started": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "NOW": {"_count": 1, "": {"_count": 1}}}, "stern": {"_count": 19, "look": {"_count": 4, "": {"_count": 3}, "as": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "face": {"_count": 1, "and": {"_count": 1}}, "theyre": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "not": {"_count": 1, "when": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "gaze": {"_count": 1, "she": {"_count": 1}}, "half": {"_count": 1, "amused": {"_count": 1}}}, "Was": {"_count": 111, "this": {"_count": 9, "normal": {"_count": 1}, "why": {"_count": 2}, "prophecy": {"_count": 1}, "all": {"_count": 1}, "spell": {"_count": 1}, "potion": {"_count": 1}, "more": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 24, "imagining": {"_count": 3}, "in": {"_count": 2}, "going": {"_count": 1}, "already": {"_count": 1}, "halfexpecting": {"_count": 1}, "studying": {"_count": 1}, "trying": {"_count": 1}, "killed": {"_count": 1}, "Harry": {"_count": 1}, "lousy": {"_count": 1}, "playing": {"_count": 1}, "about": {"_count": 2}, "really": {"_count": 1}, "after": {"_count": 1}, "truly": {"_count": 1}, "cursing": {"_count": 1}, "aware": {"_count": 1}, "ever": {"_count": 1}, "turning": {"_count": 1}, "leading": {"_count": 1}}, "it": {"_count": 35, "nice": {"_count": 1}, "a": {"_count": 2}, "because": {"_count": 3}, "pity": {"_count": 1}, "okay": {"_count": 1}, "one": {"_count": 2}, "so": {"_count": 1}, "was": {"_count": 2}, "possible": {"_count": 5}, "yer": {"_count": 1}, "worth": {"_count": 1}, "anger": {"_count": 1}, "your": {"_count": 1}, "": {"_count": 2}, "Albus": {"_count": 1}, "his": {"_count": 2}, "male": {"_count": 1}, "true": {"_count": 1}, "likely": {"_count": 2}, "not": {"_count": 1}, "as": {"_count": 1}, "lingering": {"_count": 1}, "only": {"_count": 1}}, "that": {"_count": 9, "the": {"_count": 2}, "your": {"_count": 1}, "you": {"_count": 2}, "true": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 1}, "really": {"_count": 1}}, "the": {"_count": 6, "rock": {"_count": 1}, "Grim": {"_count": 1}, "answer": {"_count": 1}, "man": {"_count": 1}, "snake": {"_count": 1}, "sword": {"_count": 1}}, "giving": {"_count": 1, "you": {"_count": 1}}, "Completely": {"_count": 1, "Pointless": {"_count": 1}}, "inflating": {"_count": 1, "Aunt": {"_count": 1}}, "Binky": {"_count": 1, "an": {"_count": 1}}, "Professor": {"_count": 2, "Flitwick": {"_count": 1}, "McGonagall": {"_count": 1}}, "anyone": {"_count": 1, "except": {"_count": 1}}, "Moody": {"_count": 1, "just": {"_count": 1}}, "Cedric": {"_count": 1, "pulling": {"_count": 1}}, "Hagrid": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "son": {"_count": 1}}, "she": {"_count": 3, "all": {"_count": 1}, "talking": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 5, "a": {"_count": 2}, "": {"_count": 1}, "something": {"_count": 2}}, "muttered": {"_count": 1, "Dudley": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "dat": {"_count": 1, "man": {"_count": 1}}, "I": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "better": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Dumbledore": {"_count": 1, "at": {"_count": 1}}}, "behavior": {"_count": 43, "": {"_count": 12, "?": {"_count": 1}, ".": {"_count": 9}, "!": {"_count": 2}}, "didnt": {"_count": 1, "spend": {"_count": 1}}, "carefully": {"_count": 1, "during": {"_count": 1}}, "while": {"_count": 1, "Lupin": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 4}, "Mr": {"_count": 1}, "these": {"_count": 1}, "their": {"_count": 1}}, "to": {"_count": 2, "Dumbledore": {"_count": 1}, "come": {"_count": 1}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "seriously": {"_count": 1, "undermines": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "we": {"_count": 1, "expect": {"_count": 1}}, "which": {"_count": 1, "casts": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "in": {"_count": 2, "five": {"_count": 1}, "Knockturn": {"_count": 1}}, "that": {"_count": 3, "is": {"_count": 1}, "made": {"_count": 1}, "she": {"_count": 1}}, "like": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 1, "disgusting": {"_count": 1}}, "he": {"_count": 1, "picked": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "souvenirs": {"_count": 1, "if": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}}, "wondered": {"_count": 142, "": {"_count": 6, ".": {"_count": 6}}, "whether": {"_count": 48, "he": {"_count": 12}, "Snape": {"_count": 2}, "Id": {"_count": 1}, "Baddock": {"_count": 1}, "it": {"_count": 10}, "they": {"_count": 4}, "the": {"_count": 2}, "James": {"_count": 1}, "I": {"_count": 1}, "McLaggen": {"_count": 1}, "these": {"_count": 1}, "Dumbledore": {"_count": 1}, "she": {"_count": 3}, "constant": {"_count": 1}, "Dumbledores": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Bathilda": {"_count": 1}, "those": {"_count": 1}, "Bill": {"_count": 1}, "Ron": {"_count": 1}, "as": {"_count": 1}}, "how": {"_count": 12, "you": {"_count": 1}, "it": {"_count": 1}, "angry": {"_count": 1}, "the": {"_count": 1}, "much": {"_count": 1}, "long": {"_count": 2}, "many": {"_count": 3}, "people": {"_count": 1}, "Umbridge": {"_count": 1}}, "aloud": {"_count": 3, "": {"_count": 2}, "whether": {"_count": 1}}, "if": {"_count": 6, "he": {"_count": 2}, "Hagrid": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}, "this": {"_count": 1}}, "who": {"_count": 4, "had": {"_count": 1}, "Dumbledore": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}}, "what": {"_count": 14, "their": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 2}, "was": {"_count": 3}, "Sirius": {"_count": 1}, "you": {"_count": 3}, "his": {"_count": 1}, "Luna": {"_count": 1}, "it": {"_count": 1}}, "miserably": {"_count": 1, "what": {"_count": 1}}, "why": {"_count": 15, "Lockhart": {"_count": 1}, "he": {"_count": 3}, "Dumbledore": {"_count": 2}, "so": {"_count": 1}, "Hagrid": {"_count": 1}, "James": {"_count": 1}, "Sirius": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}}, "where": {"_count": 3, "it": {"_count": 1}, "you": {"_count": 1}, "Dumbledore": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "suddenly": {"_count": 1, "whether": {"_count": 1}}, "vaguely": {"_count": 2, "why": {"_count": 1}, "who": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 3}, "perhaps": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 2}}, "whom": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Hermione": {"_count": 1}}, "anxiously": {"_count": 1, "probing": {"_count": 1}}, "bleakly": {"_count": 1, "whether": {"_count": 1}}, "dully": {"_count": 1, "whether": {"_count": 1}}, "ow": {"_count": 1, "shed": {"_count": 1}}, "occasionally": {"_count": 1, "eyeing": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "fleetingly": {"_count": 1, "what": {"_count": 1}}, "after": {"_count": 1, "we": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "lately": {"_count": 1, "whether": {"_count": 1}}, "was": {"_count": 1, "Malfoy": {"_count": 1}}, "that": {"_count": 1, "too": {"_count": 1}}, "or": {"_count": 1, "had": {"_count": 1}}, "when": {"_count": 1, "was": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}}, "Trying": {"_count": 18, "to": {"_count": 11, "pull": {"_count": 1}, "stay": {"_count": 1}, "answer": {"_count": 1}, "ignore": {"_count": 1}, "ruin": {"_count": 1}, "pretend": {"_count": 1}, "make": {"_count": 1}, "sneak": {"_count": 2}, "find": {"_count": 1}, "get": {"_count": 1}}, "hard": {"_count": 1, "to": {"_count": 1}}, "valiantly": {"_count": 1, "to": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "not": {"_count": 3, "to": {"_count": 3}}, "with": {"_count": 1, "all": {"_count": 1}}}, "pull": {"_count": 83, "himself": {"_count": 10, "together": {"_count": 6}, "onto": {"_count": 1}, "back": {"_count": 2}, "up": {"_count": 1}}, "it": {"_count": 7, "over": {"_count": 1}, "off": {"_count": 2}, "from": {"_count": 1}, "back": {"_count": 1}, "out": {"_count": 1}, "away": {"_count": 1}}, "rugs": {"_count": 1, "from": {"_count": 1}}, "his": {"_count": 5, "broom": {"_count": 1}, "hat": {"_count": 1}, "trapped": {"_count": 1}, "Invisibility": {"_count": 1}, "earsies": {"_count": 1}}, "her": {"_count": 4, "toward": {"_count": 2}, "through": {"_count": 1}, "down": {"_count": 1}}, "Harry": {"_count": 3, "safely": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "the": {"_count": 9, "door": {"_count": 1}, "plant": {"_count": 1}, "bag": {"_count": 1}, "spear": {"_count": 1}, "hangings": {"_count": 2}, "sword": {"_count": 1}, "Invisibility": {"_count": 1}, "crushing": {"_count": 1}}, "free": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "robes": {"_count": 1}}, "Quirrell": {"_count": 1, "off": {"_count": 1}}, "with": {"_count": 1, "Ron": {"_count": 1}}, "out": {"_count": 5, "a": {"_count": 1}, "still": {"_count": 1}, "his": {"_count": 2}, "something": {"_count": 1}}, "up": {"_count": 3, "there": {"_count": 1}, "the": {"_count": 1}, "some": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "meself": {"_count": 1, "together": {"_count": 1}}, "some": {"_count": 1, "amazing": {"_count": 1}}, "themselves": {"_count": 1, "together": {"_count": 1}}, "down": {"_count": 1, "about": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "aside": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 4, "out": {"_count": 1}, "back": {"_count": 2}, "to": {"_count": 1}}, "off": {"_count": 2, "another": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 2, "knife": {"_count": 1}, "fleet": {"_count": 1}}, "that": {"_count": 1, "one": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "back": {"_count": 1, "easily": {"_count": 1}}, "Potter": {"_count": 1, "out": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "yourself": {"_count": 1, "together": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "Voldemorts": {"_count": 1}}, "faces": {"_count": 1, "and": {"_count": 1}}, "them": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "of": {"_count": 1, "Voldemorts": {"_count": 1}}, "Hermione": {"_count": 1, "out": {"_count": 1}}, "herself": {"_count": 2, "together": {"_count": 2}}, "Luna": {"_count": 1, "out": {"_count": 1}}}, "let": {"_count": 602, "himself": {"_count": 4, "into": {"_count": 3}, "float": {"_count": 1}}, "out": {"_count": 115, "a": {"_count": 99}, "of": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "an": {"_count": 5}, "his": {"_count": 3}, "one": {"_count": 1}, "squeaks": {"_count": 1}, "low": {"_count": 1}, "yells": {"_count": 1}, "another": {"_count": 1}}, "it": {"_count": 28, "burn": {"_count": 1}, "in": {"_count": 2}, "slip": {"_count": 4}, "fall": {"_count": 2}, "be": {"_count": 3}, "rot": {"_count": 1}, "out": {"_count": 3}, "happen": {"_count": 4}, "drown": {"_count": 1}, "have": {"_count": 1}, "all": {"_count": 2}, "pass": {"_count": 1}, "stew": {"_count": 1}, "become": {"_count": 1}, "worry": {"_count": 1}}, "him": {"_count": 47, "spoil": {"_count": 1}, "near": {"_count": 1}, "go": {"_count": 6}, "down": {"_count": 2}, "suspend": {"_count": 1}, "join": {"_count": 1}, "deal": {"_count": 1}, "on": {"_count": 1}, "out": {"_count": 2}, "through": {"_count": 1}, "in": {"_count": 2}, "walk": {"_count": 1}, "enter": {"_count": 1}, "die": {"_count": 1}, "": {"_count": 2}, "get": {"_count": 2}, "borrow": {"_count": 1}, "do": {"_count": 2}, "know": {"_count": 1}, "yell": {"_count": 1}, "cheer": {"_count": 1}, "leave": {"_count": 2}, "resign": {"_count": 1}, "fall": {"_count": 1}, "forget": {"_count": 1}, "inside": {"_count": 1}, "up": {"_count": 1}, "try": {"_count": 2}, "possess": {"_count": 1}, "have": {"_count": 1}, "teach": {"_count": 1}, "kill": {"_count": 3}}, "Harry": {"_count": 14, "watch": {"_count": 1}, "buy": {"_count": 1}, "out": {"_count": 1}, "go": {"_count": 1}, "deal": {"_count": 1}, "Potter": {"_count": 3}, "into": {"_count": 1}, "talk": {"_count": 1}, "keep": {"_count": 1}, "use": {"_count": 1}, "pass": {"_count": 1}, "and": {"_count": 1}}, "me": {"_count": 77, "stay": {"_count": 1}, "have": {"_count": 5}, "know": {"_count": 2}, "think": {"_count": 1}, "into": {"_count": 2}, "find": {"_count": 3}, "come": {"_count": 2}, "read": {"_count": 1}, "deal": {"_count": 1}, "rip": {"_count": 1}, "go": {"_count": 5}, "leave": {"_count": 1}, "see": {"_count": 6}, "off": {"_count": 2}, "catch": {"_count": 2}, "fight": {"_count": 1}, "out": {"_count": 3}, "correct": {"_count": 1}, "shrink": {"_count": 2}, "give": {"_count": 1}, "No": {"_count": 1}, "introduce": {"_count": 1}, "acquire": {"_count": 1}, "escape": {"_count": 1}, "make": {"_count": 2}, "get": {"_count": 1}, "resign": {"_count": 1}, "write": {"_count": 1}, "remind": {"_count": 1}, "do": {"_count": 1}, "show": {"_count": 2}, "By": {"_count": 1}, "ask": {"_count": 1}, "carry": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}, "just": {"_count": 1}, "be": {"_count": 1}, "keep": {"_count": 1}, "reassure": {"_count": 1}, "rest": {"_count": 1}, "return": {"_count": 2}, "share": {"_count": 1}, "anywhere": {"_count": 1}, "teach": {"_count": 1}, "finish": {"_count": 1}, "spoil": {"_count": 1}, "try": {"_count": 1}, "prove": {"_count": 1}, "down": {"_count": 1}, "I": {"_count": 1}}, "Professor": {"_count": 3, "Quirrell": {"_count": 1}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}}, "the": {"_count": 21, "other": {"_count": 1}, "material": {"_count": 1}, "old": {"_count": 1}, "troll": {"_count": 1}, "Heir": {"_count": 1}, "rest": {"_count": 1}, "Muggles": {"_count": 1}, "manticore": {"_count": 1}, "Snitch": {"_count": 1}, "dementors": {"_count": 1}, "dragons": {"_count": 1}, "silence": {"_count": 1}, "Death": {"_count": 2}, "subject": {"_count": 1}, "Quaffle": {"_count": 2}, "others": {"_count": 1}, "matter": {"_count": 1}, "Cloak": {"_count": 1}, "Order": {"_count": 1}}, "them": {"_count": 36, "know": {"_count": 2}, "in": {"_count": 4}, "copy": {"_count": 1}, "through": {"_count": 2}, "pass": {"_count": 5}, "see": {"_count": 2}, "watch": {"_count": 1}, "inside": {"_count": 3}, "into": {"_count": 3}, "kill": {"_count": 1}, "do": {"_count": 1}, "": {"_count": 1}, "mop": {"_count": 1}, "play": {"_count": 1}, "try": {"_count": 1}, "out": {"_count": 1}, "all": {"_count": 2}, "starve": {"_count": 1}, "said": {"_count": 1}, "enter": {"_count": 1}, "fall": {"_count": 1}}, "go": {"_count": 49, "": {"_count": 9}, "of": {"_count": 32}, "it": {"_count": 1}, "and": {"_count": 1}, "Mr": {"_count": 1}, "now": {"_count": 2}, "extremely": {"_count": 1}, "very": {"_count": 1}, "with": {"_count": 1}}, "us": {"_count": 25, "sing": {"_count": 1}, "know": {"_count": 2}, "out": {"_count": 1}, "hold": {"_count": 1}, "do": {"_count": 2}, "near": {"_count": 1}, "in": {"_count": 1}, "begin": {"_count": 1}, "": {"_count": 2}, "have": {"_count": 3}, "play": {"_count": 1}, "not": {"_count": 1}, "go": {"_count": 1}, "skip": {"_count": 1}, "assume": {"_count": 1}, "step": {"_count": 1}, "take": {"_count": 1}, "discuss": {"_count": 1}, "Hey": {"_count": 1}, "help": {"_count": 1}}, "that": {"_count": 8, "troll": {"_count": 1}, "happen": {"_count": 1}, "little": {"_count": 1}, "thing": {"_count": 1}, "excuse": {"_count": 1}, "foul": {"_count": 1}, "terrible": {"_count": 1}, "connection": {"_count": 1}}, "off": {"_count": 7, "his": {"_count": 1}, "a": {"_count": 4}, "some": {"_count": 1}, "Garroting": {"_count": 1}}, "her": {"_count": 18, "in": {"_count": 3}, "out": {"_count": 2}, "robes": {"_count": 1}, "throw": {"_count": 1}, "see": {"_count": 1}, "hair": {"_count": 1}, "carry": {"_count": 1}, "get": {"_count": 1}, "play": {"_count": 1}, "do": {"_count": 1}, "be": {"_count": 2}, "precious": {"_count": 1}, "pretend": {"_count": 1}, "talk": {"_count": 1}}, "you": {"_count": 37, "in": {"_count": 2}, "go": {"_count": 1}, "do": {"_count": 1}, "move": {"_count": 1}, "have": {"_count": 3}, "stay": {"_count": 1}, "come": {"_count": 3}, "out": {"_count": 1}, "off": {"_count": 4}, "sleep": {"_count": 1}, "get": {"_count": 2}, "choose": {"_count": 1}, "pass": {"_count": 2}, "walk": {"_count": 1}, "hire": {"_count": 1}, "wander": {"_count": 1}, "know": {"_count": 3}, "into": {"_count": 1}, "down": {"_count": 3}, "and": {"_count": 1}, "see": {"_count": 1}, "You": {"_count": 1}, "Let": {"_count": 1}}, "alone": {"_count": 11, "being": {"_count": 1}, "a": {"_count": 1}, "catch": {"_count": 1}, "doing": {"_count": 1}, "the": {"_count": 2}, "in": {"_count": 1}, "shout": {"_count": 1}, "expulsion": {"_count": 1}, "offered": {"_count": 1}, "talk": {"_count": 1}}, "on": {"_count": 1, "much": {"_count": 1}}, "Voldemort": {"_count": 2, "kill": {"_count": 1}, "play": {"_count": 1}}, "Ron": {"_count": 3, "and": {"_count": 1}, "see": {"_count": 1}, "copy": {"_count": 1}}, "your": {"_count": 2, "mum": {"_count": 1}, "sons": {"_count": 1}}, "Dobby": {"_count": 1, "out": {"_count": 1}}, "Lockharts": {"_count": 1, "voice": {"_count": 1}}, "his": {"_count": 11, "masters": {"_count": 1}, "owl": {"_count": 1}, "fork": {"_count": 1}, "worst": {"_count": 1}, "own": {"_count": 1}, "mind": {"_count": 1}, "son": {"_count": 1}, "wife": {"_count": 1}, "wand": {"_count": 1}, "anger": {"_count": 1}, "gaze": {"_count": 1}}, "Snape": {"_count": 3, "catch": {"_count": 1}, "take": {"_count": 1}, "go": {"_count": 1}}, "slip": {"_count": 8, "to": {"_count": 2}, "that": {"_count": 2}, "a": {"_count": 1}, "when": {"_count": 1}, "in": {"_count": 1}, "ze": {"_count": 1}}, "slime": {"_count": 1, "like": {"_count": 1}}, "loose": {"_count": 2, "a": {"_count": 1}, "on": {"_count": 1}}, "Ginny": {"_count": 1, "come": {"_count": 1}}, "something": {"_count": 3, "slip": {"_count": 3}}, "any": {"_count": 2, "of": {"_count": 2}}, "yeh": {"_count": 2, "ride": {"_count": 1}, "out": {"_count": 1}}, "Black": {"_count": 1, "in": {"_count": 1}}, "Norbert": {"_count": 1, "go": {"_count": 1}}, "a": {"_count": 2, "man": {"_count": 1}, "substitute": {"_count": 1}}, "Malfoy": {"_count": 4, "anywhere": {"_count": 1}, "get": {"_count": 1}, "join": {"_count": 2}}, "Pettigrew": {"_count": 1, "escape": {"_count": 1}}, "Frank": {"_count": 1, "go": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Lee": {"_count": 1, "Jordan": {"_count": 1}}, "themselves": {"_count": 2, "out": {"_count": 1}, "into": {"_count": 1}}, "Percy": {"_count": 1, "hear": {"_count": 1}}, "our": {"_count": 1, "hair": {"_count": 1}}, "this": {"_count": 4, "happen": {"_count": 4}}, "herself": {"_count": 1, "get": {"_count": 1}}, "people": {"_count": 1, "know": {"_count": 1}}, "MadEye": {"_count": 1, "have": {"_count": 1}}, "in": {"_count": 6, "her": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 1}, "two": {"_count": 1}, "those": {"_count": 1}, "that": {"_count": 1}}, "Master": {"_count": 1, "and": {"_count": 1}}, "air": {"_count": 1, "out": {"_count": 1}}, "no": {"_count": 1, "moan": {"_count": 1}}, "fly": {"_count": 1, "the": {"_count": 1}}, "Madam": {"_count": 1, "Marsh": {"_count": 1}}, "ourselves": {"_count": 1, "be": {"_count": 1}}, "Hagrid": {"_count": 1, "down": {"_count": 1}}, "one": {"_count": 1, "more": {"_count": 1}}, "Dumbledore": {"_count": 1, "criticize": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "live": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 3, "and": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "erself": {"_count": 1, "go": {"_count": 1}}, "Slughorn": {"_count": 1, "think": {"_count": 1}}, "anyone": {"_count": 3, "pass": {"_count": 1}, "Are": {"_count": 1}, "else": {"_count": 1}}, "Luna": {"_count": 1, "Lovegood": {"_count": 1}}, "Lavender": {"_count": 1, "hear": {"_count": 1}}, "buy": {"_count": 1, "their": {"_count": 1}}, "anybody": {"_count": 1, "else": {"_count": 1}}, "six": {"_count": 1, "people": {"_count": 1}}, "such": {"_count": 1, "things": {"_count": 1}}, "these": {"_count": 1, "people": {"_count": 1}}, "drop": {"_count": 1, "certain": {"_count": 1}}, "Gellert": {"_count": 1, "know": {"_count": 1}}, "Draco": {"_count": 1, "do": {"_count": 1}}, "James": {"_count": 1, "wind": {"_count": 1}}}, "determined": {"_count": 92, "not": {"_count": 9, "to": {"_count": 9}}, "to": {"_count": 50, "remember": {"_count": 1}, "regain": {"_count": 1}, "detect": {"_count": 1}, "find": {"_count": 2}, "haunt": {"_count": 1}, "beat": {"_count": 2}, "show": {"_count": 2}, "rip": {"_count": 1}, "punish": {"_count": 1}, "start": {"_count": 1}, "crack": {"_count": 1}, "seize": {"_count": 1}, "see": {"_count": 1}, "weed": {"_count": 1}, "do": {"_count": 1}, "keep": {"_count": 3}, "give": {"_count": 2}, "say": {"_count": 1}, "be": {"_count": 1}, "perform": {"_count": 1}, "reach": {"_count": 1}, "repair": {"_count": 1}, "hear": {"_count": 1}, "have": {"_count": 1}, "impress": {"_count": 1}, "ram": {"_count": 1}, "hate": {"_count": 1}, "hide": {"_count": 1}, "accept": {"_count": 1}, "spend": {"_count": 1}, "outshine": {"_count": 1}, "evade": {"_count": 1}, "leave": {"_count": 1}, "protect": {"_count": 1}, "receive": {"_count": 1}, "know": {"_count": 1}, "root": {"_count": 1}, "escape": {"_count": 2}, "make": {"_count": 1}, "possess": {"_count": 1}, "avoid": {"_count": 1}, "fulfill": {"_count": 1}, "touch": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "look": {"_count": 1, "on": {"_count": 1}}, "face": {"_count": 1, "hesitated": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "resignation": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 5, "nobody": {"_count": 1}, "everyone": {"_count": 1}, "Draco": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}, "sweetness": {"_count": 1, "": {"_count": 1}}, "calm": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "air": {"_count": 1, "": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "just": {"_count": 1, "the": {"_count": 1}}, "conversation": {"_count": 1, "with": {"_count": 1}}, "whatever": {"_count": 1, "Hermione": {"_count": 1}}, "support": {"_count": 1, "for": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "indifference": {"_count": 1, "was": {"_count": 1}}, "rulebreaker": {"_count": 1, "delighted": {"_count": 1}}, "by": {"_count": 1, "how": {"_count": 1}}, "of": {"_count": 1, "that": {"_count": 1}}}, "wife": {"_count": 61, "": {"_count": 12, ".": {"_count": 10}, "!": {"_count": 1}, "?": {"_count": 1}}, "Perenelle": {"_count": 1, "six": {"_count": 1}}, "will": {"_count": 1, "die": {"_count": 1}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 4, "coming": {"_count": 1}, "allowed": {"_count": 1}, "tortured": {"_count": 1}, "accused": {"_count": 1}}, "was": {"_count": 2, "mortally": {"_count": 1}, "a": {"_count": 1}}, "all": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "truth": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "told": {"_count": 1, "reporters": {"_count": 1}}, "Mosag": {"_count": 1, "and": {"_count": 1}}, "knows": {"_count": 1, "Im": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "thinks": {"_count": 1, "Im": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "Narcissa": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 7, "children": {"_count": 2}, "son": {"_count": 4}, "my": {"_count": 1}}, "to": {"_count": 3, "take": {"_count": 1}, "Harry": {"_count": 2}}, "past": {"_count": 1, "my": {"_count": 1}}, "dead": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "laid": {"_count": 1, "a": {"_count": 1}}, "children": {"_count": 1, "and": {"_count": 1}}, "know": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 2, "Lucius": {"_count": 1}, "a": {"_count": 1}}, "Merope": {"_count": 1, "and": {"_count": 1}}, "made": {"_count": 1, "an": {"_count": 1}}, "youre": {"_count": 1, "shouting": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "Apolline": {"_count": 1, "": {"_count": 1}}, "Cattermole": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "Well": {"_count": 1, "come": {"_count": 1}}, "in": {"_count": 1, "for": {"_count": 1}}, "his": {"_count": 1, "sons": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}}, "nice": {"_count": 127, "normal": {"_count": 1, "day": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 3, "you": {"_count": 3}}, "to": {"_count": 11, "Harry": {"_count": 1}, "see": {"_count": 4}, "get": {"_count": 1}, "rub": {"_count": 1}, "her": {"_count": 1}, "have": {"_count": 1}, "him": {"_count": 1}, "wear": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 10, "supple": {"_count": 1}, "long": {"_count": 1}, "empty": {"_count": 1}, "extremely": {"_count": 1}, "polite": {"_count": 1}, "cozy": {"_count": 1}, "slowly": {"_count": 1}, "safe": {"_count": 2}, "visible": {"_count": 1}}, "feeling": {"_count": 1, "sitting": {"_count": 1}}, "thirst": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 4, "Wood": {"_count": 1}, "Ginny": {"_count": 1}, "Mr": {"_count": 1}, "Greyback": {"_count": 1}}, "wrist": {"_count": 1, "movement": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "fair": {"_count": 1, "game": {"_count": 1}}, "dive": {"_count": 1, "around": {"_count": 1}}, "play": {"_count": 1, "by": {"_count": 1}}, "long": {"_count": 2, "search": {"_count": 1}, "break": {"_count": 1}}, "of": {"_count": 6, "her": {"_count": 2}, "you": {"_count": 2}, "him": {"_count": 1}, "yeh": {"_count": 1}}, "toffee": {"_count": 1, "dont": {"_count": 1}}, "woman": {"_count": 1, "but": {"_count": 1}}, "you": {"_count": 2, "look": {"_count": 1}, "know": {"_count": 1}}, "Myrtles": {"_count": 1, "looking": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "though": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "shiny": {"_count": 1, "engraved": {"_count": 1}}, "book": {"_count": 1, "": {"_count": 1}}, "sight": {"_count": 1, "youd": {"_count": 1}}, "Bludger": {"_count": 3, "work": {"_count": 1}, "there": {"_count": 1}, "from": {"_count": 1}}, "swerve": {"_count": 2, "around": {"_count": 1}, "Katie": {"_count": 1}}, "place": {"_count": 2, "youve": {"_count": 1}, "just": {"_count": 1}}, "deserted": {"_count": 1, "moor": {"_count": 1}}, "odds": {"_count": 1, "considering": {"_count": 1}}, "family": {"_count": 1, "and": {"_count": 1}}, "little": {"_count": 8, "reunion": {"_count": 1}, "interviews": {"_count": 1}, "cover": {"_count": 1}, "chat": {"_count": 1}, "cave": {"_count": 1}, "Impediment": {"_count": 1}, "climate": {"_count": 1}, "holiday": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 2}, "finished": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 1}, "?": {"_count": 1}}, "simple": {"_count": 1, "spell": {"_count": 1}}, "helping": {"_count": 1, "him": {"_count": 1}}, "change": {"_count": 3, "having": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "young": {"_count": 1, "lad": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "fat": {"_count": 1, "payoff": {"_count": 1}}, "lookout": {"_count": 1, "if": {"_count": 1}}, "comfortable": {"_count": 1, "time": {"_count": 1}}, "indeed": {"_count": 2, "": {"_count": 2}}, "new": {"_count": 1, "set": {"_count": 1}}, "as": {"_count": 1, "your": {"_count": 1}}, "elfsized": {"_count": 1, "bed": {"_count": 1}}, "battle": {"_count": 1, "helmet": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "man": {"_count": 2, "who": {"_count": 1}, "from": {"_count": 1}}, "dear": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "big": {"_count": 2, "photograph": {"_count": 1}, "cave": {"_count": 1}}, "ones": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "sleep": {"_count": 1, "eh": {"_count": 1}}, "lie": {"_count": 1, "down": {"_count": 1}}, "holiday": {"_count": 1, "Harry": {"_count": 1}}, "loud": {"_count": 2, "noise": {"_count": 1}, "after": {"_count": 1}}, "thing": {"_count": 2, "to": {"_count": 2}}, "person": {"_count": 1, "to": {"_count": 1}}, "food": {"_count": 1, "and": {"_count": 1}}, "burial": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "over": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "sharp": {"_count": 1, "QuickQuotes": {"_count": 1}}, "on": {"_count": 1, "my": {"_count": 1}}, "few": {"_count": 1, "years": {"_count": 1}}, "reading": {"_count": 1, "Yeah": {"_count": 1}}}, "She": {"_count": 1252, "told": {"_count": 12, "him": {"_count": 6}, "me": {"_count": 5}, "my": {"_count": 1}}, "too": {"_count": 3, "was": {"_count": 3}}, "looked": {"_count": 80, "distinctly": {"_count": 1}, "more": {"_count": 2}, "irritable": {"_count": 1}, "tense": {"_count": 1}, "as": {"_count": 6}, "dreamily": {"_count": 1}, "petrified": {"_count": 1}, "nervously": {"_count": 2}, "around": {"_count": 6}, "very": {"_count": 3}, "extremely": {"_count": 2}, "at": {"_count": 3}, "over": {"_count": 1}, "down": {"_count": 1}, "slightly": {"_count": 2}, "livid": {"_count": 1}, "wildly": {"_count": 1}, "the": {"_count": 1}, "scared": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "carefully": {"_count": 1}, "mildly": {"_count": 1}, "back": {"_count": 2}, "up": {"_count": 6}, "uneasy": {"_count": 1}, "horrorstruck": {"_count": 1}, "rather": {"_count": 2}, "utterly": {"_count": 1}, "transported": {"_count": 1}, "inquiringly": {"_count": 1}, "alarmed": {"_count": 2}, "a": {"_count": 2}, "all": {"_count": 1}, "scandalized": {"_count": 1}, "too": {"_count": 1}, "terrified": {"_count": 1}, "him": {"_count": 1}, "suddenly": {"_count": 1}, "disoriented": {"_count": 1}, "nervous": {"_count": 1}, "away": {"_count": 1}, "exhausted": {"_count": 1}, "taken": {"_count": 1}, "so": {"_count": 1}, "from": {"_count": 2}, "close": {"_count": 1}, "anguished": {"_count": 1}, "frightening": {"_count": 1}, "flabbergasted": {"_count": 1}, "angry": {"_count": 1}, "affronted": {"_count": 1}}, "jerked": {"_count": 3, "her": {"_count": 3}}, "threw": {"_count": 7, "a": {"_count": 1}, "him": {"_count": 2}, "off": {"_count": 1}, "Numerology": {"_count": 1}, "herself": {"_count": 1}, "Greybacks": {"_count": 1}}, "eyed": {"_count": 2, "his": {"_count": 1}, "him": {"_count": 1}}, "cant": {"_count": 8, "take": {"_count": 1}, "keep": {"_count": 1}, "scare": {"_count": 1}, "said": {"_count": 1}, "get": {"_count": 1}, "change": {"_count": 1}, "complain": {"_count": 1}, "honestly": {"_count": 1}}, "let": {"_count": 5, "Harry": {"_count": 1}, "go": {"_count": 1}, "out": {"_count": 3}}, "clutched": {"_count": 1, "her": {"_count": 1}}, "held": {"_count": 8, "up": {"_count": 4}, "out": {"_count": 2}, "open": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 15, "Uncle": {"_count": 1}, "Ginny": {"_count": 1}, "Ron": {"_count": 3}, "Harry": {"_count": 3}, "the": {"_count": 2}, "her": {"_count": 2}, "Ted": {"_count": 1}, "a": {"_count": 1}, "James": {"_count": 1}}, "stopped": {"_count": 10, "to": {"_count": 1}, "you": {"_count": 1}, "again": {"_count": 1}, "dead": {"_count": 2}, "two": {"_count": 1}, "and": {"_count": 2}, "right": {"_count": 1}, "struggling": {"_count": 1}}, "pointed": {"_count": 11, "at": {"_count": 3}, "to": {"_count": 3}, "into": {"_count": 1}, "her": {"_count": 4}}, "kissed": {"_count": 2, "Percy": {"_count": 1}, "Harry": {"_count": 1}}, "always": {"_count": 1, "forgets": {"_count": 1}}, "hasnt": {"_count": 11, "got": {"_count": 2}, "had": {"_count": 2}, "studied": {"_count": 1}, "been": {"_count": 3}, "gone": {"_count": 1}, "forgiven": {"_count": 1}, "inspected": {"_count": 1}}, "was": {"_count": 200, "already": {"_count": 2}, "a": {"_count": 12}, "torn": {"_count": 1}, "staring": {"_count": 5}, "wearing": {"_count": 11}, "glaring": {"_count": 1}, "stiff": {"_count": 1}, "large": {"_count": 1}, "holding": {"_count": 8}, "rocking": {"_count": 1}, "just": {"_count": 1}, "standing": {"_count": 6}, "the": {"_count": 4}, "very": {"_count": 5}, "entirely": {"_count": 1}, "fumbling": {"_count": 1}, "right": {"_count": 2}, "going": {"_count": 3}, "still": {"_count": 4}, "only": {"_count": 1}, "shorter": {"_count": 1}, "undoubtedly": {"_count": 1}, "white": {"_count": 2}, "usually": {"_count": 1}, "actually": {"_count": 1}, "watching": {"_count": 5}, "carrying": {"_count": 3}, "gazing": {"_count": 2}, "in": {"_count": 2}, "fit": {"_count": 1}, "sitting": {"_count": 7}, "shielding": {"_count": 1}, "half": {"_count": 1}, "moving": {"_count": 2}, "talking": {"_count": 2}, "looking": {"_count": 6}, "evidently": {"_count": 1}, "dressed": {"_count": 1}, "pointing": {"_count": 5}, "at": {"_count": 2}, "leading": {"_count": 1}, "quite": {"_count": 4}, "also": {"_count": 1}, "deep": {"_count": 1}, "one": {"_count": 1}, "certainly": {"_count": 1}, "stroking": {"_count": 1}, "saving": {"_count": 1}, "clutching": {"_count": 3}, "here": {"_count": 2}, "not": {"_count": 6}, "careful": {"_count": 1}, "buried": {"_count": 1}, "my": {"_count": 1}, "Head": {"_count": 1}, "frowning": {"_count": 2}, "regaining": {"_count": 1}, "beaming": {"_count": 1}, "trembling": {"_count": 1}, "rather": {"_count": 1}, "busy": {"_count": 1}, "ignoring": {"_count": 1}, "making": {"_count": 1}, "humming": {"_count": 1}, "soon": {"_count": 1}, "rarin": {"_count": 1}, "simply": {"_count": 1}, "even": {"_count": 1}, "much": {"_count": 1}, "extremely": {"_count": 1}, "waiting": {"_count": 1}, "now": {"_count": 2}, "crying": {"_count": 2}, "poring": {"_count": 1}, "so": {"_count": 3}, "spending": {"_count": 1}, "always": {"_count": 1}, "transferred": {"_count": 1}, "shifting": {"_count": 1}, "halfway": {"_count": 1}, "tall": {"_count": 1}, "distracted": {"_count": 1}, "jogging": {"_count": 1}, "greatly": {"_count": 1}, "twisting": {"_count": 1}, "accompanied": {"_count": 1}, "old": {"_count": 1}, "really": {"_count": 1}, "trying": {"_count": 2}, "an": {"_count": 1}, "gonna": {"_count": 1}, "being": {"_count": 1}, "impeded": {"_count": 1}, "curled": {"_count": 1}, "rubbing": {"_count": 1}, "biting": {"_count": 1}, "back": {"_count": 1}, "barely": {"_count": 1}, "out": {"_count": 1}, "taller": {"_count": 1}, "helping": {"_count": 1}, "never": {"_count": 1}, "supposed": {"_count": 1}, "backing": {"_count": 1}, "crouching": {"_count": 1}}, "had": {"_count": 78, "a": {"_count": 4}, "short": {"_count": 2}, "also": {"_count": 1}, "dark": {"_count": 1}, "started": {"_count": 1}, "to": {"_count": 6}, "the": {"_count": 2}, "put": {"_count": 1}, "been": {"_count": 8}, "slapped": {"_count": 1}, "": {"_count": 1}, "raised": {"_count": 1}, "thrown": {"_count": 1}, "no": {"_count": 2}, "picked": {"_count": 1}, "trodden": {"_count": 1}, "finally": {"_count": 1}, "large": {"_count": 1}, "interviewed": {"_count": 1}, "done": {"_count": 1}, "opened": {"_count": 1}, "fainted": {"_count": 1}, "always": {"_count": 1}, "now": {"_count": 1}, "not": {"_count": 3}, "her": {"_count": 2}, "failed": {"_count": 1}, "let": {"_count": 1}, "almost": {"_count": 1}, "rounded": {"_count": 1}, "tightly": {"_count": 1}, "straggly": {"_count": 1}, "called": {"_count": 1}, "seemed": {"_count": 1}, "pulled": {"_count": 2}, "moved": {"_count": 1}, "given": {"_count": 1}, "long": {"_count": 1}, "forced": {"_count": 1}, "thick": {"_count": 1}, "clearly": {"_count": 1}, "stopped": {"_count": 1}, "abandoned": {"_count": 1}, "knocked": {"_count": 1}, "disappeared": {"_count": 1}, "risen": {"_count": 1}, "still": {"_count": 1}, "difficulty": {"_count": 1}, "bought": {"_count": 1}, "turned": {"_count": 1}, "made": {"_count": 1}, "blasted": {"_count": 1}, "sat": {"_count": 2}, "just": {"_count": 1}, "one": {"_count": 1}}, "sat": {"_count": 9, "down": {"_count": 4}, "back": {"_count": 1}, "up": {"_count": 2}, "beside": {"_count": 1}, "closest": {"_count": 1}}, "said": {"_count": 19, "all": {"_count": 1}, "the": {"_count": 2}, "Okay": {"_count": 1}, "my": {"_count": 1}, "Dumbledores": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}, "nothing": {"_count": 1}, "she": {"_count": 4}, "something": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 1}, "\u2018Oh": {"_count": 1}, "Bathilda": {"_count": 1}}, "pulled": {"_count": 8, "the": {"_count": 1}, "me": {"_count": 1}, "out": {"_count": 4}, "them": {"_count": 1}, "open": {"_count": 1}}, "left": {"_count": 10, "the": {"_count": 4}, "this": {"_count": 1}, "and": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 2}, "closing": {"_count": 1}}, "patrolled": {"_count": 1, "the": {"_count": 1}}, "sometimes": {"_count": 1, "flew": {"_count": 1}}, "turned": {"_count": 27, "to": {"_count": 6}, "and": {"_count": 5}, "abruptly": {"_count": 1}, "left": {"_count": 1}, "around": {"_count": 1}, "her": {"_count": 2}, "red": {"_count": 1}, "lamplike": {"_count": 1}, "away": {"_count": 2}, "into": {"_count": 1}, "sharply": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}, "back": {"_count": 2}, "nose": {"_count": 1}}, "wrenched": {"_count": 3, "open": {"_count": 2}, "her": {"_count": 1}}, "opened": {"_count": 8, "the": {"_count": 5}, "her": {"_count": 2}, "Hagrid": {"_count": 1}}, "followed": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "grabbed": {"_count": 3, "Harrys": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}}, "stood": {"_count": 6, "up": {"_count": 3}, "in": {"_count": 1}, "watching": {"_count": 1}, "panting": {"_count": 1}}, "hadnt": {"_count": 2, "spoken": {"_count": 1}, "looked": {"_count": 1}}, "mustve": {"_count": 1, "noticed": {"_count": 1}}, "doesnt": {"_count": 9, "know": {"_count": 2}, "expect": {"_count": 1}, "trust": {"_count": 1}, "think": {"_count": 1}, "really": {"_count": 1}, "love": {"_count": 1}, "give": {"_count": 1}, "care": {"_count": 1}}, "might": {"_count": 4, "not": {"_count": 2}, "be": {"_count": 1}, "have": {"_count": 1}}, "would": {"_count": 3, "never": {"_count": 1}, "have": {"_count": 2}}, "obviously": {"_count": 2, "makes": {"_count": 1}, "reckons": {"_count": 1}}, "pushed": {"_count": 3, "the": {"_count": 1}, "past": {"_count": 1}, "her": {"_count": 1}}, "bent": {"_count": 5, "down": {"_count": 3}, "and": {"_count": 1}, "toward": {"_count": 1}}, "raised": {"_count": 10, "her": {"_count": 10}}, "landed": {"_count": 3, "on": {"_count": 2}, "in": {"_count": 1}}, "leapt": {"_count": 5, "up": {"_count": 2}, "to": {"_count": 3}}, "struck": {"_count": 1, "Ron": {"_count": 1}}, "took": {"_count": 24, "a": {"_count": 12}, "the": {"_count": 3}, "it": {"_count": 2}, "off": {"_count": 2}, "no": {"_count": 1}, "another": {"_count": 2}, "yet": {"_count": 1}, "one": {"_count": 1}}, "broke": {"_count": 4, "my": {"_count": 1}, "off": {"_count": 2}, "from": {"_count": 1}}, "ruffled": {"_count": 1, "her": {"_count": 1}}, "can": {"_count": 2, "fly": {"_count": 1}, "turn": {"_count": 1}}, "flicked": {"_count": 2, "her": {"_count": 2}}, "never": {"_count": 4, "shuts": {"_count": 1}, "used": {"_count": 1}, "stops": {"_count": 1}, "pretended": {"_count": 1}}, "dived": {"_count": 1, "under": {"_count": 1}}, "nodded": {"_count": 9, "blushing": {"_count": 1}, "": {"_count": 1}, "still": {"_count": 1}, "almost": {"_count": 1}, "impatiently": {"_count": 1}, "again": {"_count": 1}, "slowly": {"_count": 1}, "but": {"_count": 1}, "mopping": {"_count": 1}}, "leered": {"_count": 1, "at": {"_count": 1}}, "ran": {"_count": 4, "down": {"_count": 1}, "her": {"_count": 1}, "back": {"_count": 1}, "forward": {"_count": 1}}, "sounded": {"_count": 8, "breathless": {"_count": 1}, "as": {"_count": 1}, "much": {"_count": 2}, "rather": {"_count": 1}, "odd": {"_count": 1}, "scared": {"_count": 1}, "terrified": {"_count": 1}}, "didnt": {"_count": 20, "want": {"_count": 3}, "often": {"_count": 1}, "have": {"_count": 1}, "do": {"_count": 1}, "run": {"_count": 1}, "seem": {"_count": 2}, "look": {"_count": 3}, "though": {"_count": 1}, "enjoy": {"_count": 1}, "say": {"_count": 2}, "know": {"_count": 1}, "touch": {"_count": 1}, "see": {"_count": 1}, "talk": {"_count": 1}}, "gave": {"_count": 21, "a": {"_count": 4}, "Harry": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 4}, "Ron": {"_count": 2}, "me": {"_count": 2}, "him": {"_count": 3}, "another": {"_count": 1}, "each": {"_count": 1}, "you": {"_count": 1}, "Lupin": {"_count": 1}}, "haunts": {"_count": 2, "one": {"_count": 1}, "a": {"_count": 1}}, "did": {"_count": 15, "Dont": {"_count": 1}, "put": {"_count": 1}, "not": {"_count": 12}, "however": {"_count": 1}}, "continued": {"_count": 6, "to": {"_count": 4}, "in": {"_count": 1}, "however": {"_count": 1}}, "has": {"_count": 4, "been": {"_count": 1}, "no": {"_count": 1}, "let": {"_count": 1}, "just": {"_count": 1}}, "waved": {"_count": 6, "vaguely": {"_count": 1}, "and": {"_count": 1}, "her": {"_count": 3}, "at": {"_count": 1}}, "approached": {"_count": 2, "Lockharts": {"_count": 1}, "their": {"_count": 1}}, "stalked": {"_count": 2, "away": {"_count": 2}}, "used": {"_count": 3, "her": {"_count": 2}, "to": {"_count": 1}}, "nibbled": {"_count": 1, "his": {"_count": 1}}, "walked": {"_count": 7, "away": {"_count": 5}, "back": {"_count": 1}, "very": {"_count": 1}}, "seemed": {"_count": 13, "to": {"_count": 9}, "too": {"_count": 1}, "horribly": {"_count": 1}, "determined": {"_count": 1}, "neither": {"_count": 1}}, "tapped": {"_count": 3, "the": {"_count": 3}}, "rubbed": {"_count": 1, "hard": {"_count": 1}}, "rolled": {"_count": 2, "up": {"_count": 2}}, "climbed": {"_count": 1, "somewhat": {"_count": 1}}, "knew": {"_count": 5, "something": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "that": {"_count": 1}}, "wont": {"_count": 4, "wake": {"_count": 1}, "read": {"_count": 1}, "shes": {"_count": 1}, "accept": {"_count": 1}}, "strangled": {"_count": 1, "the": {"_count": 1}}, "set": {"_count": 2, "the": {"_count": 1}, "out": {"_count": 1}}, "saw": {"_count": 2, "you": {"_count": 1}, "Ron": {"_count": 1}}, "struggled": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "put": {"_count": 3, "too": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "bought": {"_count": 3, "you": {"_count": 1}, "drinks": {"_count": 1}, "me": {"_count": 1}}, "drew": {"_count": 5, "a": {"_count": 2}, "out": {"_count": 1}, "with": {"_count": 1}, "it": {"_count": 1}}, "delighted": {"_count": 1, "in": {"_count": 1}}, "also": {"_count": 2, "kept": {"_count": 1}, "Siriuss": {"_count": 1}}, "burped": {"_count": 1, "richly": {"_count": 1}}, "deserved": {"_count": 3, "it": {"_count": 1}, "what": {"_count": 1}, "her": {"_count": 1}}, "indicated": {"_count": 2, "the": {"_count": 2}}, "went": {"_count": 4, "very": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}, "up": {"_count": 1}}, "finally": {"_count": 1, "lowered": {"_count": 1}}, "settled": {"_count": 2, "herself": {"_count": 2}}, "lowered": {"_count": 2, "her": {"_count": 2}}, "snatched": {"_count": 3, "up": {"_count": 2}, "the": {"_count": 1}}, "regrew": {"_count": 1, "half": {"_count": 1}}, "got": {"_count": 7, "a": {"_count": 1}, "up": {"_count": 2}, "to": {"_count": 2}, "the": {"_count": 1}, "carried": {"_count": 1}}, "paused": {"_count": 3, "again": {"_count": 1}, "looked": {"_count": 1}, "her": {"_count": 1}}, "stared": {"_count": 9, "at": {"_count": 5}, "pointedly": {"_count": 1}, "and": {"_count": 1}, "across": {"_count": 1}, "affronted": {"_count": 1}}, "dropped": {"_count": 7, "Crookshanks": {"_count": 1}, "her": {"_count": 3}, "the": {"_count": 1}, "to": {"_count": 1}, "down": {"_count": 1}}, "examined": {"_count": 1, "it": {"_count": 1}}, "wants": {"_count": 5, "Gryffindor": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 3}}, "er": {"_count": 3, "got": {"_count": 1}, "might": {"_count": 1}, "Did": {"_count": 1}}, "smiled": {"_count": 8, "at": {"_count": 3}, "when": {"_count": 1}, "even": {"_count": 1}, "revealing": {"_count": 1}, "encouragingly": {"_count": 1}, "turned": {"_count": 1}}, "glanced": {"_count": 8, "over": {"_count": 2}, "at": {"_count": 3}, "up": {"_count": 1}, "down": {"_count": 1}, "swiftly": {"_count": 1}}, "slammed": {"_count": 2, "the": {"_count": 1}, "down": {"_count": 1}}, "couldve": {"_count": 2, "done": {"_count": 2}}, "does": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "not": {"_count": 1}}, "says": {"_count": 11, "the": {"_count": 1}, "Ive": {"_count": 1}, "shell": {"_count": 1}, "its": {"_count": 1}, "if": {"_count": 1}, "on": {"_count": 1}, "youll": {"_count": 1}, "there": {"_count": 1}, "your": {"_count": 1}, "she": {"_count": 1}, "you": {"_count": 1}}, "hurried": {"_count": 2, "off": {"_count": 2}}, "made": {"_count": 2, "a": {"_count": 1}, "as": {"_count": 1}}, "straightened": {"_count": 2, "up": {"_count": 2}}, "now": {"_count": 2, "grasped": {"_count": 1}, "passed": {"_count": 1}}, "placed": {"_count": 1, "the": {"_count": 1}}, "checked": {"_count": 2, "her": {"_count": 2}}, "nipped": {"_count": 2, "his": {"_count": 2}}, "reckons": {"_count": 2, "its": {"_count": 1}, "you": {"_count": 1}}, "bustled": {"_count": 3, "out": {"_count": 2}, "back": {"_count": 1}}, "reached": {"_count": 5, "up": {"_count": 2}, "again": {"_count": 1}, "out": {"_count": 1}, "down": {"_count": 1}}, "illuminated": {"_count": 1, "her": {"_count": 1}}, "wouldnt": {"_count": 3, "know": {"_count": 1}, "even": {"_count": 1}, "use": {"_count": 1}}, "caught": {"_count": 6, "sight": {"_count": 1}, "her": {"_count": 2}, "it": {"_count": 1}, "up": {"_count": 1}, "them": {"_count": 1}}, "she": {"_count": 1, "mightve": {"_count": 1}}, "just": {"_count": 5, "picked": {"_count": 1}, "told": {"_count": 1}, "didnt": {"_count": 1}, "said": {"_count": 1}, "made": {"_count": 1}}, "flung": {"_count": 3, "her": {"_count": 1}, "herself": {"_count": 1}, "away": {"_count": 1}}, "tried": {"_count": 3, "to": {"_count": 3}}, "brandished": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "read": {"_count": 2, "out": {"_count": 1}, "it": {"_count": 1}}, "spoke": {"_count": 1, "as": {"_count": 1}}, "noticed": {"_count": 1, "them": {"_count": 1}}, "stands": {"_count": 1, "out": {"_count": 1}}, "hooted": {"_count": 1, "sleepily": {"_count": 1}}, "is": {"_count": 8, "already": {"_count": 1}, "your": {"_count": 1}, "always": {"_count": 1}, "very": {"_count": 1}, "no": {"_count": 1}, "also": {"_count": 1}, "down": {"_count": 1}, "mine": {"_count": 1}}, "thought": {"_count": 2, "he": {"_count": 1}, "Id": {"_count": 1}}, "shot": {"_count": 3, "a": {"_count": 2}, "fire": {"_count": 1}}, "wasnt": {"_count": 5, "the": {"_count": 2}, "wearing": {"_count": 1}, "there": {"_count": 1}, "too": {"_count": 1}}, "must": {"_count": 5, "have": {"_count": 1}, "know": {"_count": 1}, "be": {"_count": 3}}, "kept": {"_count": 3, "her": {"_count": 1}, "herself": {"_count": 1}, "glancing": {"_count": 1}}, "wore": {"_count": 1, "jeweled": {"_count": 1}}, "unsnapped": {"_count": 1, "her": {"_count": 1}}, "cleaned": {"_count": 1, "the": {"_count": 1}}, "seized": {"_count": 5, "Harrys": {"_count": 1}, "his": {"_count": 2}, "Harry": {"_count": 1}, "Dudley": {"_count": 1}}, "buried": {"_count": 2, "her": {"_count": 2}}, "dissolved": {"_count": 1, "yet": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "didn": {"_count": 1, "seem": {"_count": 1}}, "jus": {"_count": 1, "wanted": {"_count": 1}}, "shouldve": {"_count": 1, "interviewed": {"_count": 1}}, "really": {"_count": 1, "thinks": {"_count": 1}}, "slapped": {"_count": 1, "her": {"_count": 1}}, "wasn": {"_count": 1, "really": {"_count": 1}}, "stormed": {"_count": 3, "away": {"_count": 2}, "up": {"_count": 1}}, "led": {"_count": 5, "them": {"_count": 2}, "her": {"_count": 1}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}}, "definitely": {"_count": 2, "arrived": {"_count": 1}, "knows": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "Banished": {"_count": 1, "a": {"_count": 1}}, "died": {"_count": 1, "herself": {"_count": 1}}, "swayed": {"_count": 2, "slightly": {"_count": 1}, "cackling": {"_count": 1}}, "appeared": {"_count": 3, "to": {"_count": 1}, "not": {"_count": 2}}, "thrust": {"_count": 3, "the": {"_count": 1}, "what": {"_count": 1}, "The": {"_count": 1}}, "shrieked": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "marched": {"_count": 2, "back": {"_count": 1}, "toward": {"_count": 1}}, "reported": {"_count": 1, "his": {"_count": 1}}, "unfolded": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "slowly": {"_count": 1, "raised": {"_count": 1}}, "moved": {"_count": 5, "away": {"_count": 1}, "over": {"_count": 1}, "toward": {"_count": 1}, "forward": {"_count": 1}, "so": {"_count": 1}}, "blinked": {"_count": 2, "at": {"_count": 1}, "her": {"_count": 1}}, "merely": {"_count": 3, "smiled": {"_count": 1}, "shook": {"_count": 1}, "scowled": {"_count": 1}}, "repeated": {"_count": 2, "the": {"_count": 2}}, "persuaded": {"_count": 2, "my": {"_count": 2}}, "pitied": {"_count": 1, "me": {"_count": 1}}, "came": {"_count": 5, "to": {"_count": 3}, "up": {"_count": 1}, "back": {"_count": 1}}, "heard": {"_count": 1, "enough": {"_count": 1}}, "confronted": {"_count": 1, "him": {"_count": 1}}, "spent": {"_count": 1, "months": {"_count": 1}}, "started": {"_count": 2, "to": {"_count": 1}, "going": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "hugged": {"_count": 1, "Harry": {"_count": 1}}, "stooped": {"_count": 1, "down": {"_count": 1}}, "sank": {"_count": 1, "into": {"_count": 1}}, "swallowed": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "screwed": {"_count": 1, "up": {"_count": 1}}, "stepped": {"_count": 4, "carefully": {"_count": 1}, "forward": {"_count": 1}, "into": {"_count": 1}, "toward": {"_count": 1}}, "pressed": {"_count": 1, "hard": {"_count": 1}}, "smirked": {"_count": 1, "and": {"_count": 1}}, "certainly": {"_count": 1, "described": {"_count": 1}}, "spotted": {"_count": 1, "the": {"_count": 1}}, "gestured": {"_count": 2, "at": {"_count": 1}, "toward": {"_count": 1}}, "slid": {"_count": 2, "the": {"_count": 1}, "back": {"_count": 1}}, "closed": {"_count": 4, "the": {"_count": 2}, "her": {"_count": 2}}, "retreated": {"_count": 1, "behind": {"_count": 1}}, "laughed": {"_count": 5, "so": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "a": {"_count": 1}}, "works": {"_count": 1, "for": {"_count": 1}}, "believes": {"_count": 1, "the": {"_count": 1}}, "thinks": {"_count": 4, "Im": {"_count": 1}, "hed": {"_count": 1}, "its": {"_count": 1}, "it": {"_count": 1}}, "rapped": {"_count": 1, "the": {"_count": 1}}, "pounded": {"_count": 1, "the": {"_count": 1}}, "handed": {"_count": 2, "him": {"_count": 2}}, "coaxed": {"_count": 1, "it": {"_count": 1}}, "folded": {"_count": 2, "up": {"_count": 1}, "back": {"_count": 1}}, "gets": {"_count": 1, "too": {"_count": 1}}, "needs": {"_count": 1, "the": {"_count": 1}}, "gasped": {"_count": 2, "gazing": {"_count": 1}, "so": {"_count": 1}}, "then": {"_count": 4, "sat": {"_count": 1}, "bustled": {"_count": 1}, "stood": {"_count": 1}, "rapped": {"_count": 1}}, "cornered": {"_count": 1, "him": {"_count": 1}}, "strode": {"_count": 3, "back": {"_count": 1}, "around": {"_count": 1}, "toward": {"_count": 1}}, "rummaged": {"_count": 2, "in": {"_count": 2}}, "knows": {"_count": 4, "": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "her": {"_count": 1}}, "shouldnt": {"_count": 1, "be": {"_count": 1}}, "gulped": {"_count": 1, "dabbed": {"_count": 1}}, "Harry": {"_count": 4, "and": {"_count": 2}, "began": {"_count": 1}, "Ron": {"_count": 1}}, "squeezed": {"_count": 1, "away": {"_count": 1}}, "still": {"_count": 4, "does": {"_count": 1}, "hasnt": {"_count": 1}, "wants": {"_count": 1}, "felt": {"_count": 1}}, "pinned": {"_count": 1, "the": {"_count": 1}}, "giggled": {"_count": 1, "": {"_count": 1}}, "drifted": {"_count": 1, "away": {"_count": 1}}, "fell": {"_count": 2, "silent": {"_count": 1}, "back": {"_count": 1}}, "passed": {"_count": 3, "within": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "shook": {"_count": 5, "her": {"_count": 4}, "his": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "hiccuped": {"_count": 3, "at": {"_count": 1}, "again": {"_count": 1}, "loudly": {"_count": 1}}, "probably": {"_count": 1, "doesnt": {"_count": 1}}, "no": {"_count": 2, "longer": {"_count": 2}}, "glared": {"_count": 2, "up": {"_count": 1}, "around": {"_count": 1}}, "scowled": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 1, "Healer": {"_count": 1}}, "lurked": {"_count": 1, "by": {"_count": 1}}, "gazed": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "hitched": {"_count": 2, "her": {"_count": 1}, "up": {"_count": 1}}, "leaned": {"_count": 3, "forward": {"_count": 3}}, "sold": {"_count": 1, "us": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "sighed": {"_count": 2, "heavily": {"_count": 1}, "deeply": {"_count": 1}}, "hoisted": {"_count": 1, "a": {"_count": 1}}, "towered": {"_count": 1, "over": {"_count": 1}}, "hated": {"_count": 1, "him": {"_count": 1}}, "well": {"_count": 1, "she": {"_count": 1}}, "promised": {"_count": 1, "not": {"_count": 1}}, "clearly": {"_count": 2, "wanted": {"_count": 1}, "felt": {"_count": 1}}, "however": {"_count": 1, "merely": {"_count": 1}}, "keeled": {"_count": 1, "over": {"_count": 1}}, "aimed": {"_count": 1, "a": {"_count": 1}}, "screamed": {"_count": 3, "Cruciol": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "reacted": {"_count": 1, "so": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}, "winced": {"_count": 1, "slightly": {"_count": 1}}, "beckoned": {"_count": 1, "them": {"_count": 1}}, "shrugged": {"_count": 1, "": {"_count": 1}}, "scratched": {"_count": 1, "her": {"_count": 1}}, "hesitated": {"_count": 4, "": {"_count": 1}, "for": {"_count": 1}, "looking": {"_count": 1}, "but": {"_count": 1}}, "crumpled": {"_count": 1, "falling": {"_count": 1}}, "quieted": {"_count": 1, "a": {"_count": 1}}, "rearranged": {"_count": 1, "her": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "said": {"_count": 1}}, "swooped": {"_count": 1, "down": {"_count": 1}}, "keeps": {"_count": 2, "trying": {"_count": 1}, "snogging": {"_count": 1}}, "only": {"_count": 1, "wants": {"_count": 1}}, "swung": {"_count": 1, "her": {"_count": 1}}, "jumped": {"_count": 1, "up": {"_count": 1}}, "gripped": {"_count": 1, "both": {"_count": 1}}, "flapped": {"_count": 1, "her": {"_count": 1}}, "likes": {"_count": 1, "looking": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "watched": {"_count": 1, "them": {"_count": 1}}, "rose": {"_count": 1, "up": {"_count": 1}}, "appears": {"_count": 1, "to": {"_count": 1}}, "could": {"_count": 6, "have": {"_count": 4}, "not": {"_count": 2}}, "invited": {"_count": 1, "Dumbledore": {"_count": 1}}, "squinted": {"_count": 1, "at": {"_count": 1}}, "knocked": {"_count": 2, "twice": {"_count": 1}, "once": {"_count": 1}}, "patted": {"_count": 1, "him": {"_count": 1}}, "snogged": {"_count": 1, "Krum": {"_count": 1}}, "raced": {"_count": 1, "out": {"_count": 1}}, "barely": {"_count": 2, "glanced": {"_count": 1}, "had": {"_count": 1}}, "blushed": {"_count": 1, "": {"_count": 1}}, "tucked": {"_count": 1, "away": {"_count": 1}}, "hooked": {"_count": 1, "the": {"_count": 1}}, "remembered": {"_count": 1, "putting": {"_count": 1}}, "underlines": {"_count": 1, "the": {"_count": 1}}, "covered": {"_count": 1, "her": {"_count": 1}}, "met": {"_count": 1, "Harrys": {"_count": 1}}, "blew": {"_count": 1, "her": {"_count": 1}}, "ignored": {"_count": 1, "this": {"_count": 1}}, "disregarded": {"_count": 1, "this": {"_count": 1}}, "suppressed": {"_count": 1, "a": {"_count": 1}}, "lingered": {"_count": 1, "in": {"_count": 1}}, "cackled": {"_count": 1, "loudly": {"_count": 1}}, "released": {"_count": 1, "Harry": {"_count": 1}}, "therefore": {"_count": 1, "decided": {"_count": 1}}, "faltered": {"_count": 1, "under": {"_count": 1}}, "ought": {"_count": 2, "to": {"_count": 1}, "not": {"_count": 1}}, "coughed": {"_count": 1, "feebly": {"_count": 1}}, "consulted": {"_count": 1, "her": {"_count": 1}}, "cried": {"_count": 1, "harder": {"_count": 1}}, "fumbled": {"_count": 2, "in": {"_count": 1}, "for": {"_count": 1}}, "lunged": {"_count": 1, "for": {"_count": 1}}, "tugged": {"_count": 2, "at": {"_count": 1}, "the": {"_count": 1}}, "smelled": {"_count": 1, "bad": {"_count": 1}}, "peered": {"_count": 1, "at": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "stirred": {"_count": 1, "then": {"_count": 1}}, "punctuated": {"_count": 1, "every": {"_count": 1}}, "beamed": {"_count": 1, "but": {"_count": 1}}, "appealed": {"_count": 1, "to": {"_count": 1}}, "dragged": {"_count": 1, "back": {"_count": 1}}, "cut": {"_count": 1, "Hermione": {"_count": 1}}, "kicked": {"_count": 1, "him": {"_count": 1}}, "backed": {"_count": 1, "out": {"_count": 1}}, "tasted": {"_count": 1, "disgusting": {"_count": 1}}, "liked": {"_count": 1, "me": {"_count": 1}}, "sent": {"_count": 2, "me": {"_count": 1}, "a": {"_count": 1}}, "aint": {"_count": 1, "answering": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "halted": {"_count": 1, "raised": {"_count": 1}}, "consented": {"_count": 1, "to": {"_count": 1}}, "remained": {"_count": 1, "quite": {"_count": 1}}, "concealed": {"_count": 1, "her": {"_count": 1}}}, "told": {"_count": 1074, "him": {"_count": 149, "over": {"_count": 2}, "to": {"_count": 9}, "": {"_count": 21}, "what": {"_count": 6}, "so": {"_count": 5}, "we": {"_count": 1}, "brightly": {"_count": 1}, "about": {"_count": 10}, "how": {"_count": 1}, "on": {"_count": 1}, "I": {"_count": 4}, "after": {"_count": 1}, "Fluffys": {"_count": 1}, "he": {"_count": 7}, "that": {"_count": 18}, "Id": {"_count": 2}, "Filch": {"_count": 1}, "it": {"_count": 3}, "the": {"_count": 7}, "or": {"_count": 1}, "hed": {"_count": 3}, "they": {"_count": 4}, "said": {"_count": 1}, "though": {"_count": 1}, "Ron": {"_count": 1}, "excitedly": {"_count": 1}, "once": {"_count": 1}, "a": {"_count": 2}, "thrusting": {"_count": 1}, "but": {"_count": 1}, "she": {"_count": 2}, "there": {"_count": 1}, "my": {"_count": 2}, "you": {"_count": 2}, "Dumbledore": {"_count": 1}, "if": {"_count": 1}, "softly": {"_count": 1}, "trying": {"_count": 1}, "because": {"_count": 1}, "abou": {"_count": 1}, "its": {"_count": 1}, "and": {"_count": 1}, "Bode": {"_count": 1}, "encouragingly": {"_count": 1}, "Voldemort": {"_count": 1}, "this": {"_count": 1}, "sternly": {"_count": 1}, "at": {"_count": 2}, "from": {"_count": 1}, "flat": {"_count": 1}, "merely": {"_count": 1}, "off": {"_count": 2}, "were": {"_count": 1}, "The": {"_count": 1}, "youd": {"_count": 1}, "where": {"_count": 1}}, "me": {"_count": 163, "she": {"_count": 3}, "they": {"_count": 3}, "there": {"_count": 3}, "I": {"_count": 4}, "all": {"_count": 11}, "about": {"_count": 11}, "": {"_count": 24}, "so": {"_count": 1}, "off": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 18}, "this": {"_count": 3}, "a": {"_count": 2}, "Flitwick": {"_count": 1}, "at": {"_count": 2}, "the": {"_count": 6}, "Id": {"_count": 1}, "too": {"_count": 1}, "what": {"_count": 7}, "said": {"_count": 2}, "then": {"_count": 1}, "shes": {"_count": 1}, "that": {"_count": 8}, "But": {"_count": 1}, "Peter": {"_count": 1}, "Moony": {"_count": 1}, "everything": {"_count": 1}, "if": {"_count": 1}, "not": {"_count": 1}, "Im": {"_count": 1}, "after": {"_count": 1}, "you": {"_count": 5}, "many": {"_count": 1}, "he": {"_count": 6}, "where": {"_count": 1}, "wha": {"_count": 1}, "how": {"_count": 1}, "Merlins": {"_count": 1}, "when": {"_count": 1}, "its": {"_count": 1}, "once": {"_count": 1}, "but": {"_count": 1}, "Bode": {"_count": 1}, "hed": {"_count": 1}, "last": {"_count": 3}, "whats": {"_count": 1}, "Harry": {"_count": 1}, "laughing": {"_count": 1}, "ow": {"_count": 1}, "of": {"_count": 1}, "anything": {"_count": 1}, "abou": {"_count": 1}, "two": {"_count": 1}, "explicitly": {"_count": 1}, "little": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}, "shed": {"_count": 1}, "Lupins": {"_count": 1}, "under": {"_count": 1}}, "her": {"_count": 72, "it": {"_count": 3}, "she": {"_count": 1}, "you": {"_count": 1}, "bracingly": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 2}, "that": {"_count": 3}, "about": {"_count": 3}, "": {"_count": 7}, "all": {"_count": 4}, "to": {"_count": 11}, "not": {"_count": 1}, "and": {"_count": 3}, "looking": {"_count": 1}, "what": {"_count": 3}, "bewildered": {"_count": 1}, "wed": {"_count": 1}, "no": {"_count": 1}, "how": {"_count": 1}, "Ill": {"_count": 1}, "shes": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 1}, "cuttingly": {"_count": 1}, "said": {"_count": 1}, "giving": {"_count": 1}, "handing": {"_count": 1}, "they": {"_count": 1}, "his": {"_count": 1}, "Mr": {"_count": 1}, "differently": {"_count": 1}, "every": {"_count": 1}, "stubbornly": {"_count": 1}, "courteously": {"_count": 1}, "mother": {"_count": 1}, "after": {"_count": 1}, "severely": {"_count": 1}, "quietly": {"_count": 1}, "its": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "pushing": {"_count": 1}}, "you": {"_count": 134, "Id": {"_count": 2}, "hes": {"_count": 2}, "to": {"_count": 7}, "Hermione": {"_count": 2}, "": {"_count": 12}, "youre": {"_count": 1}, "I": {"_count": 9}, "every": {"_count": 1}, "what": {"_count": 3}, "it": {"_count": 2}, "he": {"_count": 4}, "said": {"_count": 7}, "whod": {"_count": 1}, "Ive": {"_count": 2}, "not": {"_count": 9}, "months": {"_count": 1}, "theyd": {"_count": 1}, "Im": {"_count": 2}, "the": {"_count": 3}, "were": {"_count": 1}, "all": {"_count": 3}, "its": {"_count": 1}, "Harry": {"_count": 6}, "she": {"_count": 1}, "that": {"_count": 5}, "shes": {"_count": 2}, "enough": {"_count": 1}, "before": {"_count": 1}, "why": {"_count": 1}, "those": {"_count": 1}, "in": {"_count": 3}, "you": {"_count": 3}, "they": {"_count": 2}, "this": {"_count": 3}, "about": {"_count": 2}, "if": {"_count": 1}, "back": {"_count": 1}, "Hagrid": {"_count": 1}, "there": {"_count": 2}, "five": {"_count": 1}, "then": {"_count": 2}, "everything": {"_count": 3}, "so": {"_count": 2}, "at": {"_count": 3}, "my": {"_count": 1}, "a": {"_count": 2}, "last": {"_count": 2}, "is": {"_count": 1}, "we": {"_count": 2}, "where": {"_count": 1}, "any": {"_count": 1}, "no": {"_count": 1}}, "Harry": {"_count": 74, "": {"_count": 9}, "hed": {"_count": 1}, "not": {"_count": 2}, "we": {"_count": 1}, "as": {"_count": 5}, "and": {"_count": 13}, "he": {"_count": 3}, "that": {"_count": 6}, "they": {"_count": 1}, "to": {"_count": 2}, "quietly": {"_count": 2}, "in": {"_count": 5}, "constantly": {"_count": 1}, "Ron": {"_count": 3}, "Cedric": {"_count": 1}, "it": {"_count": 1}, "about": {"_count": 1}, "quite": {"_count": 1}, "under": {"_count": 1}, "plainly": {"_count": 1}, "ruefully": {"_count": 1}, "her": {"_count": 2}, "how": {"_count": 1}, "pointing": {"_count": 1}, "indignantly": {"_count": 1}, "enthusiastically": {"_count": 1}, "firmly": {"_count": 1}, "out": {"_count": 1}, "blocking": {"_count": 1}, "or": {"_count": 1}, "who": {"_count": 1}, "but": {"_count": 1}, "apologetically": {"_count": 1}}, "his": {"_count": 4, "mother": {"_count": 1}, "reflection": {"_count": 1}, "godfather": {"_count": 1}, "captors": {"_count": 1}}, "yeh": {"_count": 7, "Im": {"_count": 1}, "drop": {"_count": 1}, "See": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 2}, "what": {"_count": 1}}, "himself": {"_count": 21, "firmly": {"_count": 2}, "": {"_count": 5}, "sternly": {"_count": 2}, "diversionary": {"_count": 1}, "as": {"_count": 5}, "trying": {"_count": 1}, "his": {"_count": 2}, "but": {"_count": 1}, "dont": {"_count": 1}, "that": {"_count": 1}}, "Hagrid": {"_count": 9, "about": {"_count": 2}, "who": {"_count": 1}, "all": {"_count": 2}, "": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "Ron": {"_count": 25, "so": {"_count": 1}, "and": {"_count": 11}, "": {"_count": 3}, "as": {"_count": 2}, "exactly": {"_count": 1}, "about": {"_count": 1}, "scribbling": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "not": {"_count": 1}, "Hermione": {"_count": 1}, "but": {"_count": 1}}, "the": {"_count": 43, "first": {"_count": 2}, "turban": {"_count": 1}, "other": {"_count": 3}, "evil": {"_count": 1}, "Dursleys": {"_count": 2}, "silent": {"_count": 2}, "Daily": {"_count": 1}, "crowd": {"_count": 2}, "witch": {"_count": 1}, "class": {"_count": 3}, "team": {"_count": 1}, "headmaster": {"_count": 1}, "only": {"_count": 1}, "eagerly": {"_count": 1}, "elf": {"_count": 1}, "Bulgarian": {"_count": 1}, "truth": {"_count": 2}, "shivering": {"_count": 1}, "Hufflepuffs": {"_count": 1}, "champions": {"_count": 1}, "music": {"_count": 1}, "others": {"_count": 1}, "whole": {"_count": 1}, "Healer": {"_count": 1}, "Minister": {"_count": 1}, "examiner": {"_count": 1}, "wall": {"_count": 1}, "staff": {"_count": 1}, "Death": {"_count": 1}, "sneak": {"_count": 1}, "Wizarding": {"_count": 1}, "waiting": {"_count": 1}, "goblin": {"_count": 1}, "barman": {"_count": 1}}, "us": {"_count": 56, "prefects": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 5}, "about": {"_count": 2}, "so": {"_count": 2}, "all": {"_count": 3}, "it": {"_count": 1}, "how": {"_count": 4}, "to": {"_count": 3}, "where": {"_count": 1}, "his": {"_count": 1}, "Professor": {"_count": 1}, "youd": {"_count": 1}, "did": {"_count": 1}, "remember": {"_count": 1}, "exactly": {"_count": 1}, "whats": {"_count": 2}, "hed": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 1}, "nobody": {"_count": 1}, "last": {"_count": 1}, "said": {"_count": 3}, "ter": {"_count": 1}, "before": {"_count": 1}, "shed": {"_count": 1}, "none": {"_count": 1}, "ttto": {"_count": 1}, "as": {"_count": 1}, "that": {"_count": 3}, "We": {"_count": 1}, "what": {"_count": 1}, "you": {"_count": 2}, "the": {"_count": 2}, "most": {"_count": 1}, "Potter": {"_count": 1}}, "them": {"_count": 94, "had": {"_count": 1}, "what": {"_count": 7}, "that": {"_count": 13}, "to": {"_count": 14}, "everything": {"_count": 3}, "all": {"_count": 7}, "he": {"_count": 3}, "about": {"_count": 7}, "pompously": {"_count": 1}, "hed": {"_count": 1}, "severely": {"_count": 1}, "where": {"_count": 2}, "": {"_count": 8}, "striding": {"_count": 1}, "as": {"_count": 1}, "looking": {"_count": 1}, "miserably": {"_count": 1}, "bending": {"_count": 1}, "my": {"_count": 1}, "not": {"_count": 2}, "importantly": {"_count": 1}, "his": {"_count": 1}, "briskly": {"_count": 1}, "her": {"_count": 1}, "last": {"_count": 1}, "flatly": {"_count": 1}, "it": {"_count": 1}, "repeatedly": {"_count": 1}, "how": {"_count": 1}, "of": {"_count": 2}, "grudgingly": {"_count": 1}, "both": {"_count": 1}, "youd": {"_count": 1}, "the": {"_count": 1}, "quite": {"_count": 1}, "on": {"_count": 1}, "during": {"_count": 1}}, "long": {"_count": 1, "boastful": {"_count": 1}}, "it": {"_count": 2, "hed": {"_count": 1}, "Aberforth": {"_count": 1}}, "Malfoy": {"_count": 2, "hed": {"_count": 1}, "to": {"_count": 1}}, "Wood": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "your": {"_count": 3, "brother": {"_count": 1}, "dad": {"_count": 1}, "friends": {"_count": 1}}, "Hermione": {"_count": 18, "": {"_count": 3}, "she": {"_count": 1}, "exactly": {"_count": 1}, "getting": {"_count": 1}, "as": {"_count": 2}, "if": {"_count": 1}, "who": {"_count": 1}, "quietly": {"_count": 1}, "about": {"_count": 2}, "Harry": {"_count": 1}, "everything": {"_count": 1}, "nervously": {"_count": 1}, "but": {"_count": 1}, "prized": {"_count": 1}}, "Madam": {"_count": 2, "Pomfrey": {"_count": 2}}, "that": {"_count": 8, "stranger": {"_count": 1}, "snake": {"_count": 1}, "the": {"_count": 1}, "Black": {"_count": 1}, "you": {"_count": 2}, "a": {"_count": 1}, "his": {"_count": 1}}, "where": {"_count": 2, "Dumbledore": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 12, "get": {"_count": 1}, "frighten": {"_count": 1}, "practice": {"_count": 1}, "enter": {"_count": 2}, "sit": {"_count": 1}, "say": {"_count": 1}, "give": {"_count": 1}, "come": {"_count": 1}, "seal": {"_count": 1}, "amuse": {"_count": 1}, "place": {"_count": 1}}, "Dumbledore": {"_count": 9, "everything": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 2}, "covered": {"_count": 1}, "Snape": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}, "who": {"_count": 1}}, "Lockhart": {"_count": 1, "yeh": {"_count": 1}}, "Ginny": {"_count": 2, "said": {"_count": 1}, "back": {"_count": 1}}, "dear": {"_count": 1, "old": {"_count": 1}}, "Justin": {"_count": 1, "to": {"_count": 1}}, "our": {"_count": 1, "reporter": {"_count": 1}}, "reporters": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 6, "had": {"_count": 2}, "was": {"_count": 1}, "growled": {"_count": 1}, "would": {"_count": 1}, "might": {"_count": 1}}, "a": {"_count": 4, "disgruntled": {"_count": 1}, "lie": {"_count": 1}, "slightly": {"_count": 1}, "completely": {"_count": 1}}, "Marge": {"_count": 1, "you": {"_count": 1}}, "Fudge": {"_count": 3, "frowning": {"_count": 1}, "that": {"_count": 1}, "mere": {"_count": 1}}, "off": {"_count": 5, "by": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "o": {"_count": 1, "course": {"_count": 1}}, "Professor": {"_count": 5, "McGonagall": {"_count": 3}, "Moody": {"_count": 1}, "Umbridge": {"_count": 1}}, "Crookshanks": {"_count": 1, "suspiciously": {"_count": 1}}, "anyone": {"_count": 2, "about": {"_count": 1}, "who": {"_count": 1}}, "Black": {"_count": 1, "no": {"_count": 1}}, "Lupin": {"_count": 3, "about": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 1}}, "Can": {"_count": 1, "anyone": {"_count": 1}}, "em": {"_count": 3, "": {"_count": 1}, "Buckbeaks": {"_count": 1}, "both": {"_count": 1}}, "everyone": {"_count": 2, "what": {"_count": 1}, "that": {"_count": 1}}, "Mrs": {"_count": 3, "Weasley": {"_count": 3}}, "Macnair": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 3, "the": {"_count": 1}, "sorts": {"_count": 1}, "of": {"_count": 1}}, "nobody": {"_count": 1, "that": {"_count": 1}}, "Mr": {"_count": 4, "Crouch": {"_count": 1}, "Fudge": {"_count": 1}, "Weasley": {"_count": 2}}, "and": {"_count": 3, "hurried": {"_count": 1}, "shown": {"_count": 1}, "keep": {"_count": 1}}, "Sirius": {"_count": 6, "about": {"_count": 1}, "": {"_count": 2}, "last": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "Bagman": {"_count": 1, "he": {"_count": 1}}, "Fleur": {"_count": 3, "and": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 1}}, "Cedric": {"_count": 3, "and": {"_count": 1}, "exactly": {"_count": 1}, "to": {"_count": 1}}, "their": {"_count": 1, "champions": {"_count": 1}}, "Dobby": {"_count": 1, "he": {"_count": 1}}, "Snape": {"_count": 4, "shortly": {"_count": 1}, "that": {"_count": 1}, "ter": {"_count": 1}, "you": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "Moody": {"_count": 1, "but": {"_count": 1}}, "my": {"_count": 2, "father": {"_count": 1}, "family": {"_count": 1}}, "Arthur": {"_count": 2, "Weasley": {"_count": 1}, "and": {"_count": 1}}, "of": {"_count": 2, "Wormtail": {"_count": 1}, "its": {"_count": 1}}, "how": {"_count": 1, "Voldemort": {"_count": 1}}, "not": {"_count": 5, "to": {"_count": 4}, "the": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "Dad": {"_count": 1, "hed": {"_count": 1}}, "what": {"_count": 1, "the": {"_count": 1}}, "Mundungus": {"_count": 2, "we": {"_count": 1}, "who": {"_count": 1}}, "Draco": {"_count": 1, "what": {"_count": 1}}, "evil": {"_count": 1, "nasty": {"_count": 1}}, "Michael": {"_count": 1, "what": {"_count": 1}}, "Umbridge": {"_count": 2, "": {"_count": 1}, "well": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "Rita": {"_count": 1, "coolly": {"_count": 1}}, "Voldemort": {"_count": 3, "how": {"_count": 1}, "about": {"_count": 1}, "we": {"_count": 1}}, "in": {"_count": 1, "five": {"_count": 1}}, "Bellatrix": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "myself": {"_count": 3, "that": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "anybody": {"_count": 1, "that": {"_count": 1}}, "Pansy": {"_count": 1, "who": {"_count": 1}}, "Borgin": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "Cornelius": {"_count": 1, "there": {"_count": 1}}, "Kreacher": {"_count": 6, "": {"_count": 1}, "to": {"_count": 5}}, "even": {"_count": 1, "if": {"_count": 1}}, "its": {"_count": 1, "mates": {"_count": 1}}, "thats": {"_count": 1, "to": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "Daddy": {"_count": 1, "most": {"_count": 1}}, "incredible": {"_count": 1, "stories": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "Bathilda": {"_count": 1, "": {"_count": 1}}, "Grindelwald": {"_count": 1, "he": {"_count": 1}}, "Mum": {"_count": 1, "he": {"_count": 1}}, "Bill": {"_count": 2, "looking": {"_count": 1}, "and": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "YouKnowWho": {"_count": 2, "that": {"_count": 2}}, "everything": {"_count": 1, "that": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 2, "pulling": {"_count": 1}, "": {"_count": 1}}, "Flitwick": {"_count": 1, "or": {"_count": 1}}, "someone": {"_count": 1, "this": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "James": {"_count": 1, "as": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}}, "dinner": {"_count": 138, "all": {"_count": 2, "about": {"_count": 1}, "right": {"_count": 1}}, "and": {"_count": 8, "he": {"_count": 1}, "Uncle": {"_count": 2}, "spent": {"_count": 1}, "tried": {"_count": 1}, "still": {"_count": 1}, "everything": {"_count": 1}, "submerged": {"_count": 1}}, "their": {"_count": 1, "pockets": {"_count": 1}}, "that": {"_count": 4, "evening": {"_count": 1}, "included": {"_count": 1}, "night": {"_count": 1}, "no": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 26}, "?": {"_count": 3}, "!": {"_count": 4}}, "what": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 4, "three": {"_count": 2}, "students": {"_count": 1}, "previous": {"_count": 1}}, "party": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Aunt": {"_count": 1}}, "jackets": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "mints": {"_count": 1, "when": {"_count": 1}}, "table": {"_count": 3, "so": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}}, "Why": {"_count": 1, "shouldnt": {"_count": 1}}, "burn": {"_count": 1, "": {"_count": 1}}, "plate": {"_count": 2, "Snape": {"_count": 1}, "to": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "the": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "everyone": {"_count": 1, "felt": {"_count": 1}}, "not": {"_count": 1, "daring": {"_count": 1}}, "two": {"_count": 1, "hours": {"_count": 1}}, "with": {"_count": 2, "everybody": {"_count": 1}, "me": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "theyre": {"_count": 1}}, "every": {"_count": 1, "night": {"_count": 1}}, "on": {"_count": 5, "a": {"_count": 2}, "Wednesday": {"_count": 1}, "Monday": {"_count": 1}, "the": {"_count": 1}}, "Im": {"_count": 2, "Im": {"_count": 1}, "afraid": {"_count": 1}}, "I": {"_count": 2, "mean": {"_count": 1}, "want": {"_count": 1}}, "but": {"_count": 2, "ate": {"_count": 1}, "Ron": {"_count": 1}}, "now": {"_count": 5, "raised": {"_count": 1}, "everyones": {"_count": 1}, "": {"_count": 2}, "because": {"_count": 1}}, "plates": {"_count": 2, "hit": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "after": {"_count": 1, "Divination": {"_count": 1}}, "nor": {"_count": 1, "was": {"_count": 1}}, "having": {"_count": 1, "finished": {"_count": 1}}, "he": {"_count": 5, "said": {"_count": 1}, "walked": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "told": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "Grimmauld": {"_count": 1}}, "wafted": {"_count": 1, "toward": {"_count": 1}}, "whispered": {"_count": 1, "Barty": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "midnight": {"_count": 1}}, "is": {"_count": 1, "going": {"_count": 1}}, "guest": {"_count": 1, "with": {"_count": 1}}, "He": {"_count": 1, "got": {"_count": 1}}, "without": {"_count": 1, "dropping": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "celebrating": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "they": {"_count": 1, "made": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "till": {"_count": 1, "jus": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}, "roundly": {"_count": 1, "abusing": {"_count": 1}}, "alone": {"_count": 1, "from": {"_count": 1}}, "threw": {"_count": 1, "himself": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "tables": {"_count": 1, "the": {"_count": 1}}, "glinted": {"_count": 1, "in": {"_count": 1}}, "croaked": {"_count": 1, "Kreacher": {"_count": 1}}, "about": {"_count": 1, "four": {"_count": 1}}}, "Next": {"_count": 54, "Doors": {"_count": 1, "problems": {"_count": 1}}, "morning": {"_count": 2, "however": {"_count": 1}, "at": {"_count": 1}}, "moment": {"_count": 13, "thirty": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 3}, "Dudley": {"_count": 1}, "Ludo": {"_count": 1}, "what": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "both": {"_count": 1}}, "second": {"_count": 6, "he": {"_count": 1}, "Quirrell": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 10, "the": {"_count": 2}, "him": {"_count": 5}, "Mrs": {"_count": 1}, "it": {"_count": 1}, "Tonks": {"_count": 1}}, "thing": {"_count": 5, "he": {"_count": 3}, "we": {"_count": 2}}, "term": {"_count": 1, "we": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "came": {"_count": 2, "Professor": {"_count": 1}, "Harry": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "Monday": {"_count": 1, "he": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 2, "theres": {"_count": 1}, "he": {"_count": 1}}, "tell": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}, "door": {"_count": 1, "Roger": {"_count": 1}}, "a": {"_count": 1, "pool": {"_count": 1}}, "week": {"_count": 1, "Albus": {"_count": 1}}, "Mary": {"_count": 1, "Cattermole": {"_count": 1}}}, "Doors": {"_count": 2, "problems": {"_count": 1, "with": {"_count": 1}}, "opened": {"_count": 1, "behind": {"_count": 1}}}, "problems": {"_count": 16, "with": {"_count": 4, "her": {"_count": 1}, "the": {"_count": 1}, "injuries": {"_count": 1}, "a": {"_count": 1}}, "were": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "this": {"_count": 1, "time": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "are": {"_count": 1, "now": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "daughter": {"_count": 38, "and": {"_count": 2, "how": {"_count": 1}, "I": {"_count": 1}}, "is": {"_count": 1, "slaughtered": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 5}, "!": {"_count": 1}, "?": {"_count": 3}}, "had": {"_count": 1, "been": {"_count": 1}}, "was": {"_count": 1, "discovered": {"_count": 1}}, "all": {"_count": 1, "though": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "tightly": {"_count": 1, "by": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "Lucky": {"_count": 1, "the": {"_count": 1}}, "pureblooded": {"_count": 1, "descendant": {"_count": 1}}, "he": {"_count": 2, "tripped": {"_count": 1}, "hoped": {"_count": 1}}, "Merope": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "dutifully": {"_count": 1, "awaiting": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "Gabrielle": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "held": {"_count": 1}}, "go": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "for": {"_count": 3, "years": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 1, "marry": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "right": {"_count": 1, "down": {"_count": 1}}}, "how": {"_count": 1207, "Dudley": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 90, "and": {"_count": 3}, "had": {"_count": 24}, "was": {"_count": 7}, "could": {"_count": 10}, "disappeared": {"_count": 1}, "fixed": {"_count": 1}, "knew": {"_count": 3}, "survived": {"_count": 1}, "hates": {"_count": 1}, "looks": {"_count": 3}, "got": {"_count": 4}, "would": {"_count": 5}, "ever": {"_count": 1}, "couldnt": {"_count": 1}, "hadnt": {"_count": 1}, "no": {"_count": 1}, "felt": {"_count": 5}, "treats": {"_count": 1}, "will": {"_count": 1}, "Dumbledore": {"_count": 1}, "liked": {"_count": 1}, "did": {"_count": 1}, "takes": {"_count": 1}, "died": {"_count": 1}, "gets": {"_count": 1}, "told": {"_count": 1}, "reacted": {"_count": 1}, "came": {"_count": 1}, "reworded": {"_count": 1}, "You": {"_count": 1}, "used": {"_count": 1}, "vos": {"_count": 1}, "looked": {"_count": 1}, "as": {"_count": 1}, "works": {"_count": 1}}, "but": {"_count": 3, "theyre": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "much": {"_count": 90, "better": {"_count": 2}, "time": {"_count": 3}, "yeh": {"_count": 1}, "Harry": {"_count": 1}, "people": {"_count": 1}, "farther": {"_count": 4}, "she": {"_count": 3}, "youve": {"_count": 2}, "were": {"_count": 1}, "you": {"_count": 3}, "would": {"_count": 1}, "gold": {"_count": 1}, "luggage": {"_count": 1}, "being": {"_count": 1}, "the": {"_count": 1}, "longer": {"_count": 4}, "he": {"_count": 9}, "Im": {"_count": 1}, "Aunt": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}, "damage": {"_count": 2}, "to": {"_count": 2}, "they": {"_count": 2}, "trouble": {"_count": 2}, "popular": {"_count": 1}, "mold": {"_count": 1}, "homework": {"_count": 3}, "use": {"_count": 1}, "power": {"_count": 1}, "shabbier": {"_count": 1}, "Umbridge": {"_count": 1}, "Professor": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 1}, "more": {"_count": 3}, "easier": {"_count": 1}, "Snape": {"_count": 1}, "care": {"_count": 2}, "Ive": {"_count": 1}, "I": {"_count": 2}, "was": {"_count": 1}, "it": {"_count": 2}, "wind": {"_count": 1}, "we": {"_count": 2}, "thats": {"_count": 1}, "tyrants": {"_count": 1}, "his": {"_count": 2}, "danger": {"_count": 1}, "information": {"_count": 1}, "truth": {"_count": 1}, "colder": {"_count": 1}, "Muggle": {"_count": 1}, "taller": {"_count": 1}, "help": {"_count": 1}}, "is": {"_count": 5, "the": {"_count": 1}, "it": {"_count": 1}, "Winky": {"_count": 1}, "Lucius": {"_count": 1}, "Harry": {"_count": 1}}, "could": {"_count": 33, "he": {"_count": 8}, "they": {"_count": 3}, "you": {"_count": 6}, "it": {"_count": 6}, "anyone": {"_count": 1}, "Voldemort": {"_count": 1}, "Rita": {"_count": 1}, "I": {"_count": 1}, "Mundungus": {"_count": 1}, "she": {"_count": 1}, "Dumbledore": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 2}}, "it": {"_count": 44, "had": {"_count": 10}, "happened": {"_count": 6}, "is": {"_count": 4}, "worked": {"_count": 1}, "was": {"_count": 4}, "Petrified": {"_count": 1}, "looked": {"_count": 2}, "would": {"_count": 3}, "fell": {"_count": 1}, "began": {"_count": 1}, "used": {"_count": 2}, "must": {"_count": 3}, "came": {"_count": 1}, "feels": {"_count": 1}, "felt": {"_count": 2}, "works": {"_count": 1}, "made": {"_count": 1}}, "you": {"_count": 38, "got": {"_count": 2}, "found": {"_count": 1}, "survived": {"_count": 1}, "died": {"_count": 1}, "might": {"_count": 1}, "can": {"_count": 4}, "saved": {"_count": 2}, "get": {"_count": 1}, "two": {"_count": 2}, "are": {"_count": 2}, "have": {"_count": 1}, "managed": {"_count": 1}, "came": {"_count": 1}, "do": {"_count": 1}, "let": {"_count": 1}, "expect": {"_count": 1}, "stand": {"_count": 2}, "overrode": {"_count": 1}, "knew": {"_count": 1}, "could": {"_count": 1}, "ended": {"_count": 1}, "thought": {"_count": 1}, "treat": {"_count": 1}, "think": {"_count": 1}, "approach": {"_count": 1}, "love": {"_count": 1}, "feel": {"_count": 1}, "want": {"_count": 1}, "skated": {"_count": 1}, "Shut": {"_count": 1}}, "come": {"_count": 22, "Dudley": {"_count": 1}, "nobodys": {"_count": 1}, "you": {"_count": 3}, "he": {"_count": 2}, "youve": {"_count": 1}, "I": {"_count": 3}, "they": {"_count": 1}, "were": {"_count": 1}, "its": {"_count": 1}, "we": {"_count": 1}, "yeh": {"_count": 1}, "": {"_count": 1}, "youre": {"_count": 1}, "these": {"_count": 1}, "the": {"_count": 1}, "hes": {"_count": 1}, "Hermione": {"_count": 1}}, "the": {"_count": 37, "Muggles": {"_count": 1}, "other": {"_count": 2}, "troll": {"_count": 1}, "mirror": {"_count": 1}, "stupid": {"_count": 1}, "idea": {"_count": 1}, "Firebolt": {"_count": 1}, "students": {"_count": 1}, "champions": {"_count": 1}, "goblins": {"_count": 1}, "points": {"_count": 1}, "figures": {"_count": 1}, "shadow": {"_count": 1}, "Durmstrang": {"_count": 1}, "idiot": {"_count": 1}, "cleanings": {"_count": 1}, "new": {"_count": 2}, "rest": {"_count": 2}, "snakelike": {"_count": 1}, "Dursleys": {"_count": 2}, "enchantment": {"_count": 1}, "Riddles": {"_count": 1}, "people": {"_count": 1}, "Death": {"_count": 3}, "necklace": {"_count": 1}, "stone": {"_count": 1}, "hell": {"_count": 2}, "wizards": {"_count": 1}, "elf": {"_count": 1}, "natural": {"_count": 1}}, "ppleased": {"_count": 1, "I": {"_count": 1}}, "many": {"_count": 38, "Galleons": {"_count": 2}, "times": {"_count": 7}, "threeheaded": {"_count": 1}, "ways": {"_count": 1}, "rat": {"_count": 1}, "people": {"_count": 4}, "did": {"_count": 1}, "subjects": {"_count": 1}, "witches": {"_count": 1}, "girls": {"_count": 1}, "will": {"_count": 1}, "Canary": {"_count": 1}, "attacks": {"_count": 1}, "elves": {"_count": 1}, "of": {"_count": 3}, "were": {"_count": 1}, "autographs": {"_count": 1}, "Skiving": {"_count": 1}, "blackmarket": {"_count": 1}, "others": {"_count": 1}, "O": {"_count": 1}, "party": {"_count": 1}, "security": {"_count": 1}, "other": {"_count": 2}, "centaurs": {"_count": 1}}, "little": {"_count": 4, "yeh": {"_count": 1}, "he": {"_count": 2}, "effect": {"_count": 1}}, "to": {"_count": 149, "curse": {"_count": 1}, "do": {"_count": 16}, "How": {"_count": 1}, "get": {"_count": 30}, "take": {"_count": 1}, "bottle": {"_count": 1}, "mount": {"_count": 1}, "block": {"_count": 2}, "use": {"_count": 5}, "break": {"_count": 2}, "make": {"_count": 6}, "calm": {"_count": 1}, "kill": {"_count": 1}, "degnome": {"_count": 1}, "Apparate": {"_count": 2}, "open": {"_count": 5}, "whip": {"_count": 1}, "work": {"_count": 7}, "look": {"_count": 2}, "conjure": {"_count": 1}, "pick": {"_count": 1}, "": {"_count": 3}, "deal": {"_count": 1}, "explain": {"_count": 1}, "translate": {"_count": 1}, "survive": {"_count": 4}, "operate": {"_count": 1}, "breathe": {"_count": 1}, "duel": {"_count": 1}, "become": {"_count": 1}, "talk": {"_count": 1}, "be": {"_count": 1}, "find": {"_count": 1}, "wire": {"_count": 1}, "defend": {"_count": 2}, "tell": {"_count": 1}, "set": {"_count": 1}, "close": {"_count": 2}, "remove": {"_count": 1}, "uuse": {"_count": 1}, "play": {"_count": 1}, "count": {"_count": 1}, "destroy": {"_count": 5}, "repel": {"_count": 1}, "fix": {"_count": 1}, "perform": {"_count": 1}, "tie": {"_count": 1}, "mend": {"_count": 1}, "slip": {"_count": 1}, "act": {"_count": 1}, "mix": {"_count": 1}, "brew": {"_count": 1}, "hit": {"_count": 1}, "call": {"_count": 1}, "reopen": {"_count": 1}, "save": {"_count": 1}, "avoid": {"_count": 2}, "reach": {"_count": 1}, "repair": {"_count": 1}, "drive": {"_count": 2}, "Disarm": {"_count": 1}, "raise": {"_count": 1}, "produce": {"_count": 1}, "treat": {"_count": 1}, "overcome": {"_count": 1}, "finish": {"_count": 1}, "thank": {"_count": 1}, "stop": {"_count": 1}, "value": {"_count": 1}}, "curious": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 11, "curious": {"_count": 1}, "frightening": {"_count": 1}, "behind": {"_count": 1}, "tall": {"_count": 1}, "old": {"_count": 1}, "uncomfortable": {"_count": 1}, "fast": {"_count": 1}, "important": {"_count": 1}, "pleasant": {"_count": 1}, "far": {"_count": 1}, "very": {"_count": 1}}, "these": {"_count": 4, "things": {"_count": 1}, "first": {"_count": 1}, "spells": {"_count": 1}, "stories": {"_count": 1}}, "had": {"_count": 2, "he": {"_count": 2}}, "hungry": {"_count": 3, "he": {"_count": 3}}, "Quirrell": {"_count": 1, "had": {"_count": 1}}, "good": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 2}}, "about": {"_count": 8, "up": {"_count": 1}, "you": {"_count": 1}, "eight": {"_count": 1}, "it": {"_count": 1}, "those": {"_count": 1}, "Monday": {"_count": 1}, "Hagrid": {"_count": 1}, "this": {"_count": 1}}, "dare": {"_count": 9, "you": {"_count": 7}, "anyone": {"_count": 1}, "what": {"_count": 1}}, "hed": {"_count": 4, "have": {"_count": 1}, "got": {"_count": 1}, "found": {"_count": 1}, "felt": {"_count": 1}}, "a": {"_count": 3, "widemouthed": {"_count": 1}, "real": {"_count": 1}, "nice": {"_count": 1}}, "else": {"_count": 5, "were": {"_count": 1}, "was": {"_count": 1}, "dyou": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 1}}, "pleased": {"_count": 1, "Ron": {"_count": 1}}, "loudly": {"_count": 1, "they": {"_count": 1}}, "nearsighted": {"_count": 1, "being": {"_count": 1}}, "long": {"_count": 25, "Potters": {"_count": 1}, "itll": {"_count": 1}, "he": {"_count": 4}, "were": {"_count": 1}, "would": {"_count": 1}, "we": {"_count": 1}, "dyou": {"_count": 2}, "a": {"_count": 1}, "they": {"_count": 1}, "GrubblyPlank": {"_count": 1}, "that": {"_count": 1}, "exactly": {"_count": 1}, "have": {"_count": 1}, "these": {"_count": 1}, "Longbottom": {"_count": 1}, "you": {"_count": 1}, "Hogwarts": {"_count": 1}, "": {"_count": 1}, "dragons": {"_count": 1}, "it": {"_count": 2}}, "I": {"_count": 22, "think": {"_count": 1}, "cannot": {"_count": 1}, "did": {"_count": 2}, "pleaded": {"_count": 1}, "escaped": {"_count": 1}, "was": {"_count": 2}, "how": {"_count": 1}, "regret": {"_count": 1}, "couldnt": {"_count": 1}, "knew": {"_count": 1}, "dress": {"_count": 1}, "should": {"_count": 1}, "want": {"_count": 1}, "got": {"_count": 2}, "learned": {"_count": 1}, "feel": {"_count": 2}, "lay": {"_count": 1}, "know": {"_count": 1}}, "yeh": {"_count": 3, "even": {"_count": 1}, "get": {"_count": 1}, "work": {"_count": 1}}, "ter": {"_count": 3, "recognize": {"_count": 1}, "get": {"_count": 1}, "do": {"_count": 1}}, "fast": {"_count": 5, "do": {"_count": 1}, "you": {"_count": 1}, "Muggle": {"_count": 1}, "dyou": {"_count": 1}, "youre": {"_count": 1}}, "bad": {"_count": 3, "the": {"_count": 1}, "Berthas": {"_count": 1}, "Harry": {"_count": 1}}, "they": {"_count": 29, "were": {"_count": 3}, "had": {"_count": 6}, "managed": {"_count": 2}, "got": {"_count": 2}, "became": {"_count": 1}, "normally": {"_count": 1}, "would": {"_count": 2}, "could": {"_count": 2}, "are": {"_count": 1}, "must": {"_count": 1}, "treat": {"_count": 1}, "came": {"_count": 1}, "knew": {"_count": 1}, "track": {"_count": 1}, "found": {"_count": 1}, "find": {"_count": 1}, "drove": {"_count": 1}, "fascinated": {"_count": 1}}, "pretty": {"_count": 1, "the": {"_count": 1}}, "badly": {"_count": 3, "weve": {"_count": 1}, "he": {"_count": 1}, "wounded": {"_count": 1}}, "deep": {"_count": 1, "this": {"_count": 1}}, "do": {"_count": 22, "we": {"_count": 6}, "you": {"_count": 13}, "they": {"_count": 1}, "I": {"_count": 2}}, "far": {"_count": 10, "Id": {"_count": 1}, "and": {"_count": 1}, "this": {"_count": 1}, "they": {"_count": 3}, "it": {"_count": 1}, "from": {"_count": 1}, "Hogwarts": {"_count": 1}, "back": {"_count": 1}}, "wrong": {"_count": 1, "I": {"_count": 1}}, "can": {"_count": 15, "I": {"_count": 5}, "you": {"_count": 6}, "this": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "crazy": {"_count": 1, "his": {"_count": 1}}, "risky": {"_count": 1, "feasts": {"_count": 1}}, "Harry": {"_count": 7, "felt": {"_count": 2}, "Potter": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "knew": {"_count": 1}}, "did": {"_count": 32, "you": {"_count": 18}, "he": {"_count": 1}, "that": {"_count": 1}, "she": {"_count": 2}, "Snape": {"_count": 1}, "they": {"_count": 3}, "Voldemort": {"_count": 1}, "it": {"_count": 1}, "yeh": {"_count": 1}, "the": {"_count": 2}, "Crabbe": {"_count": 1}}, "important": {"_count": 4, "this": {"_count": 1}, "it": {"_count": 2}, "": {"_count": 1}}, "worried": {"_count": 1, "Ive": {"_count": 1}}, "weird": {"_count": 1, "it": {"_count": 1}}, "things": {"_count": 2, "like": {"_count": 1}, "were": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "would": {"_count": 4, "we": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "bus": {"_count": 1, "stops": {"_count": 1}}, "eight": {"_count": 1, "people": {"_count": 1}}, "thin": {"_count": 2, "her": {"_count": 1}, "you": {"_count": 1}}, "glad": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "useful": {"_count": 3, "itll": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}}, "youve": {"_count": 2, "still": {"_count": 1}, "done": {"_count": 1}}, "well": {"_count": 7, "youve": {"_count": 1}, "the": {"_count": 1}, "theyve": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 3}}, "nice": {"_count": 3, "you": {"_count": 1}, "Myrtles": {"_count": 1}, "said": {"_count": 1}}, "are": {"_count": 25, "you": {"_count": 19}, "the": {"_count": 1}, "we": {"_count": 4}, "they": {"_count": 1}}, "er": {"_count": 1, "nice": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 4}, "?": {"_count": 7}, "!": {"_count": 5}}, "greedy": {"_count": 1, "they": {"_count": 1}}, "bizarre": {"_count": 1, "it": {"_count": 1}}, "Riddle": {"_count": 1, "got": {"_count": 1}}, "foolish": {"_count": 3, "it": {"_count": 2}, "and": {"_count": 1}}, "she": {"_count": 21, "could": {"_count": 1}, "had": {"_count": 3}, "didnt": {"_count": 1}, "was": {"_count": 3}, "felt": {"_count": 2}, "heard": {"_count": 1}, "found": {"_count": 1}, "did": {"_count": 1}, "does": {"_count": 1}, "hated": {"_count": 1}, "dares": {"_count": 1}, "used": {"_count": 1}, "got": {"_count": 1}, "is": {"_count": 1}, "managed": {"_count": 1}, "expects": {"_count": 1}}, "our": {"_count": 1, "family": {"_count": 1}}, "hes": {"_count": 4, "been": {"_count": 3}, "treated": {"_count": 1}}, "Ginny": {"_count": 2, "could": {"_count": 1}, "got": {"_count": 1}}, "her": {"_count": 2, "brothers": {"_count": 1}, "tortoise": {"_count": 1}}, "Riddles": {"_count": 1, "eyes": {"_count": 1}}, "angry": {"_count": 2, "I": {"_count": 1}, "Dumbledore": {"_count": 1}}, "were": {"_count": 9, "going": {"_count": 8}, "not": {"_count": 1}}, "Hermione": {"_count": 5, "had": {"_count": 3}, "what": {"_count": 1}, "would": {"_count": 1}}, "on": {"_count": 5, "earth": {"_count": 5}}, "Lord": {"_count": 3, "Voldemort": {"_count": 3}}, "cold": {"_count": 1, "it": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "happy": {"_count": 3, "Malfoy": {"_count": 1}, "he": {"_count": 2}}, "silly": {"_count": 1, "weve": {"_count": 1}}, "best": {"_count": 8, "to": {"_count": 8}}, "Malfoy": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "we": {"_count": 14, "distinguish": {"_count": 1}, "came": {"_count": 1}, "knows": {"_count": 1}, "travel": {"_count": 1}, "ended": {"_count": 1}, "can": {"_count": 1}, "never": {"_count": 1}, "imagined": {"_count": 1}, "were": {"_count": 2}, "would": {"_count": 1}, "knew": {"_count": 1}, "grew": {"_count": 2}}, "Pettigrew": {"_count": 1, "cornered": {"_count": 1}}, "normal": {"_count": 1, "Black": {"_count": 1}}, "quickly": {"_count": 2, "hell": {"_count": 1}, "your": {"_count": 1}}, "dyeh": {"_count": 1, "explain": {"_count": 1}}, "theyd": {"_count": 1, "ever": {"_count": 1}}, "boring": {"_count": 1, "Scabbers": {"_count": 1}}, "youre": {"_count": 4, "going": {"_count": 2}, "a": {"_count": 1}, "doing": {"_count": 1}}, "Dumbledore": {"_count": 6, "takes": {"_count": 1}, "was": {"_count": 1}, "knew": {"_count": 1}, "destroyed": {"_count": 1}, "died": {"_count": 1}, "sent": {"_count": 1}}, "how": {"_count": 5, "did": {"_count": 1}, "how": {"_count": 1}, "he": {"_count": 2}, "do": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "will": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "strange": {"_count": 2, "this": {"_count": 1}, "it": {"_count": 1}}, "touchy": {"_count": 2, "they": {"_count": 1}, "Myrtle": {"_count": 1}}, "rude": {"_count": 1, "the": {"_count": 1}}, "big": {"_count": 2, "and": {"_count": 1}, "was": {"_count": 1}}, "Sirius": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "does": {"_count": 3, "everyone": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "odd": {"_count": 2, "this": {"_count": 1}, "it": {"_count": 1}}, "that": {"_count": 4, "Mark": {"_count": 1}, "sometimes": {"_count": 1}, "ordinary": {"_count": 1}, "works": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "frightened": {"_count": 2, "shed": {"_count": 1}, "everybody": {"_count": 1}}, "upset": {"_count": 1, "she": {"_count": 1}}, "mean": {"_count": 1, "he": {"_count": 1}}, "dyou": {"_count": 1, "hide": {"_count": 1}}, "old": {"_count": 1, "they": {"_count": 1}}, "his": {"_count": 10, "parents": {"_count": 3}, "interview": {"_count": 1}, "timekeeping": {"_count": 1}, "nose": {"_count": 1}, "son": {"_count": 1}, "greasy": {"_count": 1}, "black": {"_count": 1}, "ideas": {"_count": 1}}, "often": {"_count": 6, "do": {"_count": 1}, "were": {"_count": 2}, "we": {"_count": 1}, "this": {"_count": 1}, "they": {"_count": 1}}, "But": {"_count": 1, "Angelina": {"_count": 1}}, "mistaken": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "my": {"_count": 4, "name": {"_count": 1}, "son": {"_count": 1}, "poor": {"_count": 1}, "mother": {"_count": 1}}, "re": {"_count": 1, "you": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "am": {"_count": 2, "I": {"_count": 2}}, "scarred": {"_count": 1, "the": {"_count": 1}}, "clearly": {"_count": 1, "he": {"_count": 1}}, "wet": {"_count": 1, "the": {"_count": 1}}, "eerie": {"_count": 1, "it": {"_count": 1}}, "all": {"_count": 1, "by": {"_count": 1}}, "shes": {"_count": 3, "doing": {"_count": 1}, "listening": {"_count": 1}, "been": {"_count": 1}}, "ridiculous": {"_count": 1, "She": {"_count": 1}}, "yehve": {"_count": 1, "done": {"_count": 1}}, "tall": {"_count": 1, "Krum": {"_count": 1}}, "its": {"_count": 3, "time": {"_count": 1}, "supposed": {"_count": 1}, "done": {"_count": 1}}, "this": {"_count": 3, "could": {"_count": 1}, "particular": {"_count": 1}, "might": {"_count": 1}}, "Voldemort": {"_count": 6, "had": {"_count": 4}, "learning": {"_count": 1}, "was": {"_count": 1}}, "Cedrics": {"_count": 1, "had": {"_count": 1}}, "Cedric": {"_count": 2, "had": {"_count": 2}}, "disturbed": {"_count": 1, "and": {"_count": 1}}, "Ireland": {"_count": 1, "would": {"_count": 1}}, "soon": {"_count": 2, "was": {"_count": 1}, "Ritas": {"_count": 1}}, "frustrated": {"_count": 1, "and": {"_count": 1}}, "furious": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 6, "he": {"_count": 1}, "I": {"_count": 2}, "Quidditch": {"_count": 1}, "Slughorns": {"_count": 1}, "your": {"_count": 1}}, "hard": {"_count": 7, "and": {"_count": 1}, "it": {"_count": 2}, "you": {"_count": 1}, "or": {"_count": 1}, "he": {"_count": 1}, "Id": {"_count": 1}}, "shed": {"_count": 1, "cry": {"_count": 1}}, "impressive": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 1, "he": {"_count": 1}}, "horrible": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "wonderful": {"_count": 3, "": {"_count": 2}, "his": {"_count": 1}}, "widely": {"_count": 1, "their": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "terrified": {"_count": 1, "he": {"_count": 1}}, "Seamus": {"_count": 1, "and": {"_count": 1}}, "strict": {"_count": 1, "a": {"_count": 1}}, "Luna": {"_count": 1, "had": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "Diggory": {"_count": 1, "got": {"_count": 1}}, "wild": {"_count": 1, "his": {"_count": 1}}, "beautiful": {"_count": 2, "the": {"_count": 1}, "she": {"_count": 1}}, "and": {"_count": 6, "why": {"_count": 4}, "when": {"_count": 2}}, "Umbridge": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 2}}, "close": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "Cho": {"_count": 1, "had": {"_count": 1}}, "Neville": {"_count": 1, "had": {"_count": 1}}, "Colin": {"_count": 1, "Creevey": {"_count": 1}}, "Parvati": {"_count": 1, "Patil": {"_count": 1}}, "right": {"_count": 1, "I": {"_count": 1}}, "their": {"_count": 1, "whole": {"_count": 1}}, "Ron": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "felt": {"_count": 1}}, "Chos": {"_count": 1, "feeling": {"_count": 1}}, "girls": {"_count": 1, "brains": {"_count": 1}}, "absurd": {"_count": 1, "it": {"_count": 1}}, "life": {"_count": 1, "was": {"_count": 1}}, "Dad": {"_count": 1, "is": {"_count": 1}}, "foully": {"_count": 1, "Snape": {"_count": 1}}, "nutty": {"_count": 1, "somebody": {"_count": 1}}, "stupid": {"_count": 1, "they": {"_count": 1}}, "easy": {"_count": 1, "it": {"_count": 1}}, "Harrys": {"_count": 1, "lost": {"_count": 1}}, "people": {"_count": 2, "would": {"_count": 1}, "who": {"_count": 1}}, "ugly": {"_count": 1, "you": {"_count": 1}}, "nearly": {"_count": 1, "four": {"_count": 1}}, "sorry": {"_count": 1, "he": {"_count": 1}}, "terrible": {"_count": 1, "he": {"_count": 1}}, "every": {"_count": 1, "single": {"_count": 1}}, "accurate": {"_count": 1, "the": {"_count": 1}}, "Fudge": {"_count": 1, "would": {"_count": 1}}, "Snape": {"_count": 2, "had": {"_count": 2}}, "quietly": {"_count": 1, "she": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "exactly": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "noisy": {"_count": 1, "the": {"_count": 1}}, "age": {"_count": 1, "thinks": {"_count": 1}}, "brave": {"_count": 1, "he": {"_count": 1}}, "unpleasant": {"_count": 1, "Azkaban": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 2}}, "one": {"_count": 1, "simple": {"_count": 1}}, "airplanes": {"_count": 1, "stay": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "seriously": {"_count": 1, "Borgin": {"_count": 1}}, "dangerous": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "Katie": {"_count": 2, "had": {"_count": 2}}, "difficult": {"_count": 1, "it": {"_count": 1}}, "uncomfortable": {"_count": 1, "it": {"_count": 1}}, "excited": {"_count": 1, "he": {"_count": 1}}, "influential": {"_count": 1, "a": {"_count": 1}}, "anybody": {"_count": 1, "could": {"_count": 1}}, "wed": {"_count": 1, "deal": {"_count": 1}}, "special": {"_count": 1, "he": {"_count": 1}}, "beauiful": {"_count": 1, "they": {"_count": 1}}, "Hagrid": {"_count": 1, "was": {"_count": 1}}, "unusual": {"_count": 1, "you": {"_count": 1}}, "few": {"_count": 1, "wizards": {"_count": 1}}, "faint": {"_count": 1, "his": {"_count": 1}}, "slurred": {"_count": 1, "Dumbledores": {"_count": 1}}, "childish": {"_count": 1, "the": {"_count": 1}}, "brilliant": {"_count": 1, "I": {"_count": 1}}, "appalled": {"_count": 1, "I": {"_count": 1}}, "brakes": {"_count": 1, "work": {"_count": 1}}, "unstable": {"_count": 1, "you": {"_count": 1}}, "strong": {"_count": 1, "they": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "Wizarding": {"_count": 1, "celebrations": {"_count": 1}}, "easily": {"_count": 1, "those": {"_count": 1}}, "Kreacher": {"_count": 1, "had": {"_count": 1}}, "sick": {"_count": 1, "it": {"_count": 1}}, "effective": {"_count": 1, "these": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "tiny": {"_count": 1, "she": {"_count": 1}}, "trusting": {"_count": 1, "thinking": {"_count": 1}}, "violently": {"_count": 1, "he": {"_count": 1}}, "may": {"_count": 2, "I": {"_count": 2}}, "Godelot": {"_count": 1, "died": {"_count": 1}}, "humans": {"_count": 1, "are": {"_count": 1}}, "filthy": {"_count": 1, "her": {"_count": 1}}, "Dobby": {"_count": 1, "knew": {"_count": 1}}, "unwise": {"_count": 1, "it": {"_count": 1}}, "Muggles": {"_count": 1, "are": {"_count": 1}}, "elegant": {"_count": 1, "not": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "great": {"_count": 1, "and": {"_count": 1}}}, "learned": {"_count": 80, "a": {"_count": 3, "new": {"_count": 1}, "lot": {"_count": 1}, "few": {"_count": 1}}, "it": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "from": {"_count": 4, "Uncle": {"_count": 1}, "Voldemort": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "all": {"_count": 2, "our": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "wondering": {"_count": 1}}, "how": {"_count": 5, "to": {"_count": 4}, "": {"_count": 1}}, "that": {"_count": 6, "Curse": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 2}, "bangs": {"_count": 1}, "I": {"_count": 1}}, "about": {"_count": 3, "the": {"_count": 2}, "right": {"_count": 1}}, "the": {"_count": 5, "days": {"_count": 1}, "hard": {"_count": 1}, "names": {"_count": 1}, "difference": {"_count": 1}, "Dark": {"_count": 1}}, "quickly": {"_count": 1, "not": {"_count": 1}}, "by": {"_count": 2, "now": {"_count": 1}, "careful": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "anything": {"_count": 2, "from": {"_count": 1}, "that": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "at": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}, "to": {"_count": 14, "Apparate": {"_count": 1}, "fly": {"_count": 1}, "conjure": {"_count": 1}, "treat": {"_count": 1}, "be": {"_count": 2}, "waterski": {"_count": 1}, "shut": {"_count": 2}, "expect": {"_count": 1}, "feed": {"_count": 1}, "read": {"_count": 1}, "apply": {"_count": 1}, "suppress": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "enough": {"_count": 2, "": {"_count": 2}}, "there": {"_count": 1, "was": {"_count": 1}}, "what": {"_count": 3, "she": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}}, "loads": {"_count": 2, "Your": {"_count": 1}, "with": {"_count": 1}}, "his": {"_count": 1, "lesson": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}, "wizards": {"_count": 1, "study": {"_count": 1}}, "more": {"_count": 1, "from": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "Mermish": {"_count": 1, "": {"_count": 1}}, "publications": {"_count": 1, "such": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "some": {"_count": 1, "respect": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "wandlore": {"_count": 1}}, "control": {"_count": 1, "at": {"_count": 1}}, "secrecy": {"_count": 1, "at": {"_count": 1}}, "nothing": {"_count": 1, "": {"_count": 1}}}, "word": {"_count": 319, "Wont": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "": {"_count": 59, ".": {"_count": 48}, "!": {"_count": 4}, "?": {"_count": 7}}, "to": {"_count": 16, "the": {"_count": 4}, "him": {"_count": 1}, "each": {"_count": 2}, "Molly": {"_count": 1}, "Fudge": {"_count": 2}, "her": {"_count": 2}, "Dumbledore": {"_count": 1}, "anyone": {"_count": 1}, "Harry": {"_count": 1}, "intimate": {"_count": 1}}, "like": {"_count": 1, "Professor": {"_count": 1}}, "desperate": {"_count": 1, "for": {"_count": 1}}, "Hermione": {"_count": 5, "had": {"_count": 2}, "was": {"_count": 2}, "sped": {"_count": 1}}, "of": {"_count": 29, "what": {"_count": 2}, "Woods": {"_count": 1}, "comfort": {"_count": 1}, "it": {"_count": 6}, "Blacks": {"_count": 2}, "Lees": {"_count": 1}, "two": {"_count": 1}, "this": {"_count": 3}, "English": {"_count": 1}, "Gobbledegook": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 2}, "complaint": {"_count": 1}, "the": {"_count": 1}, "thanks": {"_count": 2}, "Crabbes": {"_count": 1}, "their": {"_count": 1}, "commentary": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 27, "Ron": {"_count": 1}, "Miss": {"_count": 1}, "one": {"_count": 1}, "Professor": {"_count": 1}, "Mr": {"_count": 1}, "you": {"_count": 10}, "Harry": {"_count": 2}, "us": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 1}, "Severus": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}, "them": {"_count": 1}, "Mafalda": {"_count": 1}, "a": {"_count": 1}, "rapt": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 3}, "Hermione": {"_count": 1}, "Ted": {"_count": 1}}, "that": {"_count": 8, "he": {"_count": 2}, "Ill": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 1}, "you": {"_count": 2}, "anyone": {"_count": 1}}, "you": {"_count": 4, "dont": {"_count": 1}, "will": {"_count": 2}, "wont": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "however": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 12, "it": {"_count": 8}, "the": {"_count": 1}, "word": {"_count": 2}, "several": {"_count": 1}}, "he": {"_count": 9, "spoke": {"_count": 2}, "tore": {"_count": 1}, "Disapparated": {"_count": 1}, "turned": {"_count": 1}, "said": {"_count": 1}, "uttered": {"_count": 1}, "marched": {"_count": 1}, "puffed": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "against": {"_count": 4, "Hagrids": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "from": {"_count": 3, "any": {"_count": 1}, "The": {"_count": 1}, "anyone": {"_count": 1}}, "in": {"_count": 2, "my": {"_count": 1}, "front": {"_count": 1}}, "alone": {"_count": 1, "is": {"_count": 1}}, "inside": {"_count": 1, "said": {"_count": 1}}, "about": {"_count": 5, "my": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 1}, "him": {"_count": 1}, "any": {"_count": 1}}, "something": {"_count": 1, "ginger": {"_count": 1}}, "they": {"_count": 2, "set": {"_count": 1}, "raised": {"_count": 1}}, "and": {"_count": 11, "the": {"_count": 1}, "screeched": {"_count": 1}, "": {"_count": 1}, "no": {"_count": 1}, "left": {"_count": 1}, "apparently": {"_count": 1}, "interpreted": {"_count": 1}, "before": {"_count": 1}, "limped": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "Quidditch": {"_count": 1, "which": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "we": {"_count": 1, "say": {"_count": 1}}, "broomsticks": {"_count": 1, "in": {"_count": 1}}, "Pig": {"_count": 1, "then": {"_count": 1}}, "the": {"_count": 4, "tone": {"_count": 1}, "Hall": {"_count": 1}, "door": {"_count": 1}, "stinking": {"_count": 1}}, "hes": {"_count": 1, "saying": {"_count": 1}}, "away": {"_count": 1, "like": {"_count": 1}}, "Im": {"_count": 1, "saying": {"_count": 1}}, "Firebolt": {"_count": 1, "on": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 1}, "Hermione": {"_count": 1}}, "are": {"_count": 1, "to": {"_count": 1}}, "champions": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 1, "Karkaroff": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "if": {"_count": 1, "you": {"_count": 1}}, "she": {"_count": 4, "was": {"_count": 1}, "said": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 1}}, "Harry": {"_count": 5, "": {"_count": 3}, "understood": {"_count": 1}, "Potter": {"_count": 1}}, "water": {"_count": 1, "on": {"_count": 1}}, "there": {"_count": 3, "will": {"_count": 1}, "was": {"_count": 2}}, "boy": {"_count": 1, "someone": {"_count": 1}}, "his": {"_count": 1, "exhaustion": {"_count": 1}}, "Snape": {"_count": 2, "had": {"_count": 1}, "said": {"_count": 1}}, "stepping": {"_count": 1, "over": {"_count": 1}}, "owls": {"_count": 1, "doing": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "wizard": {"_count": 1, "": {"_count": 1}}, "start": {"_count": 1, "spraying": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "dogging": {"_count": 1, "been": {"_count": 1}}, "Umbridge": {"_count": 1, "spoke": {"_count": 1}}, "weasel": {"_count": 1, "had": {"_count": 1}}, "all": {"_count": 2, "right": {"_count": 1}, "the": {"_count": 1}}, "closing": {"_count": 1, "the": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 5, "half": {"_count": 1}, "causing": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "sharp": {"_count": 1}}, "SNEAK": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "HEADMISTRESS": {"_count": 1, "also": {"_count": 1}}, "POO": {"_count": 1, "": {"_count": 1}}, "proceeded": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "can": {"_count": 1}}, "Dumbledore": {"_count": 1, "spoke": {"_count": 1}}, "cost": {"_count": 1, "him": {"_count": 1}}, "is": {"_count": 2, "law": {"_count": 1}, "that": {"_count": 1}}, "\u2018fiasco": {"_count": 1, "would": {"_count": 1}}, "echoed": {"_count": 1, "all": {"_count": 1}}, "a": {"_count": 2, "feat": {"_count": 1}, "figure": {"_count": 1}}, "lessons": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "around": {"_count": 1}}, "underneath": {"_count": 1, "the": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "\u2018special": {"_count": 1, "said": {"_count": 1}}, "became": {"_count": 1, "Gryffindor": {"_count": 1}}, "bezoars": {"_count": 1, "": {"_count": 1}}, "forcefully": {"_count": 1, "about": {"_count": 1}}, "slammed": {"_count": 1, "the": {"_count": 1}}, "used": {"_count": 1, "for": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "caught": {"_count": 1, "in": {"_count": 1}}, "\u2018no": {"_count": 1, "and": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "Dedalus": {"_count": 1, "spoke": {"_count": 1}}, "or": {"_count": 1, "or": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "Horcruxes": {"_count": 1, "till": {"_count": 1}}, "kill": {"_count": 1, "the": {"_count": 1}}, "perfect": {"_count": 1, "to": {"_count": 1}}, "might": {"_count": 1, "cause": {"_count": 1}}, "dementors": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "as": {"_count": 1}}, "would": {"_count": 2, "swoop": {"_count": 1}, "not": {"_count": 1}}, "repeated": {"_count": 1, "a": {"_count": 1}}, "one": {"_count": 1, "evening": {"_count": 1}}, "actually": {"_count": 1, "Harry": {"_count": 1}}, "Tonks": {"_count": 1, "sped": {"_count": 1}}, "MudbloocL": {"_count": 1, "": {"_count": 1}}, "Severus": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 1, "eyed": {"_count": 1}}}, "Wont": {"_count": 13, "": {"_count": 1, ".": {"_count": 1}}, "say": {"_count": 1, "no": {"_count": 1}}, "it": {"_count": 1, "be": {"_count": 1}}, "make": {"_count": 1, "no": {"_count": 1}}, "happen": {"_count": 1, "again": {"_count": 1}}, "you": {"_count": 2, "Fred": {"_count": 1}, "sit": {"_count": 1}}, "wont": {"_count": 4, "you": {"_count": 1}, "wont": {"_count": 3}}, "refuse": {"_count": 1, "you": {"_count": 1}}, "they": {"_count": 1, "Neville": {"_count": 1}}}, "act": {"_count": 72, "normally": {"_count": 2, "": {"_count": 2}}, "like": {"_count": 6, "that": {"_count": 1}, "a": {"_count": 4}, "Muggles": {"_count": 1}}, "": {"_count": 11, "!": {"_count": 1}, ".": {"_count": 8}, "?": {"_count": 2}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "as": {"_count": 13, "though": {"_count": 8}, "you": {"_count": 1}, "I": {"_count": 1}, "quickly": {"_count": 1}, "your": {"_count": 1}, "an": {"_count": 1}}, "of": {"_count": 10, "glorious": {"_count": 1}, "pulling": {"_count": 2}, "wiping": {"_count": 1}, "violation": {"_count": 1}, "evil": {"_count": 2}, "kissing": {"_count": 1}, "noble": {"_count": 1}, "penitence": {"_count": 1}}, "if": {"_count": 1, "one": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "who": {"_count": 1}, "history": {"_count": 1}, "think": {"_count": 1}}, "their": {"_count": 1, "age": {"_count": 1}}, "rashly": {"_count": 1, "Sirius": {"_count": 1}}, "more": {"_count": 1, "like": {"_count": 1}}, "the": {"_count": 1, "hero": {"_count": 1}}, "too": {"_count": 1, "fast": {"_count": 1}}, "breathed": {"_count": 1, "Umbridge": {"_count": 1}}, "compared": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "peculiarly": {"_count": 1}, "he": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "naturally": {"_count": 1, "until": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "stupid": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "whispered": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "from": {"_count": 1, "here": {"_count": 1}}, "fast": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "came": {"_count": 1}}, "your": {"_count": 1, "part": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}}, "normally": {"_count": 37, "": {"_count": 6, ".": {"_count": 6}}, "hunt": {"_count": 1, "at": {"_count": 1}}, "pretended": {"_count": 1, "she": {"_count": 1}}, "They": {"_count": 1, "climbed": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}, "just": {"_count": 1, "a": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "ruddy": {"_count": 1, "face": {"_count": 1}}, "have": {"_count": 4, "breakfasted": {"_count": 1}, "meant": {"_count": 1}, "tried": {"_count": 1}, "done": {"_count": 1}}, "bore": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 1, "on": {"_count": 1}}, "they": {"_count": 1, "avoided": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "they": {"_count": 1}}, "were": {"_count": 1, "she": {"_count": 1}}, "deal": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "decorated": {"_count": 1, "with": {"_count": 1}}, "Mum": {"_count": 1, "who": {"_count": 1}}, "kindly": {"_count": 1, "face": {"_count": 1}}, "turn": {"_count": 1, "out": {"_count": 1}}, "walk": {"_count": 1, "to": {"_count": 1}}, "like": {"_count": 1, "Alicia": {"_count": 1}}, "go": {"_count": 1, "in": {"_count": 1}}, "proportioned": {"_count": 1, "outside": {"_count": 1}}, "take": {"_count": 1, "time": {"_count": 1}}, "wear": {"_count": 1, "pajamas": {"_count": 1}}, "occupied": {"_count": 1, "leaving": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}}, "bed": {"_count": 477, "he": {"_count": 7, "went": {"_count": 1}, "said": {"_count": 2}, "had": {"_count": 1}, "caught": {"_count": 1}, "and": {"_count": 1}, "sat": {"_count": 1}}, "": {"_count": 125, ".": {"_count": 115}, "!": {"_count": 7}, "?": {"_count": 3}}, "and": {"_count": 71, "started": {"_count": 3}, "after": {"_count": 1}, "stared": {"_count": 3}, "pulled": {"_count": 4}, "wrapped": {"_count": 1}, "creeping": {"_count": 1}, "into": {"_count": 1}, "bowed": {"_count": 1}, "seized": {"_count": 2}, "You": {"_count": 1}, "a": {"_count": 2}, "tried": {"_count": 1}, "waited": {"_count": 1}, "were": {"_count": 1}, "he": {"_count": 2}, "leaned": {"_count": 1}, "hid": {"_count": 1}, "the": {"_count": 2}, "grabbed": {"_count": 1}, "reached": {"_count": 2}, "disappeared": {"_count": 1}, "they": {"_count": 2}, "stowing": {"_count": 1}, "that": {"_count": 1}, "sank": {"_count": 2}, "led": {"_count": 1}, "sat": {"_count": 2}, "dropped": {"_count": 1}, "listening": {"_count": 1}, "began": {"_count": 2}, "outofbounds": {"_count": 1}, "put": {"_count": 1}, "made": {"_count": 1}, "fell": {"_count": 1}, "extinguished": {"_count": 1}, "saw": {"_count": 1}, "then": {"_count": 2}, "was": {"_count": 1}, "crammed": {"_count": 1}, "Ron": {"_count": 1}, "over": {"_count": 1}, "rolled": {"_count": 1}, "unwrapped": {"_count": 1}, "backed": {"_count": 1}, "examining": {"_count": 1}, "looking": {"_count": 1}, "raising": {"_count": 1}, "attempted": {"_count": 1}, "on": {"_count": 1}, "got": {"_count": 1}, "armchair": {"_count": 1}, "other": {"_count": 1}, "held": {"_count": 1}, "settled": {"_count": 1}}, "for": {"_count": 7, "Dudley": {"_count": 1}, "a": {"_count": 5}, "an": {"_count": 1}}, "next": {"_count": 3, "door": {"_count": 1}, "to": {"_count": 2}}, "reading": {"_count": 3, "late": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "let": {"_count": 1, "us": {"_count": 1}}, "with": {"_count": 13, "a": {"_count": 3}, "his": {"_count": 4}, "white": {"_count": 1}, "dusty": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "spattergroit": {"_count": 1}}, "or": {"_count": 1, "straying": {"_count": 1}}, "looking": {"_count": 1, "forward": {"_count": 1}}, "except": {"_count": 1, "sit": {"_count": 1}}, "was": {"_count": 4, "he": {"_count": 1}, "empty": {"_count": 1}, "waiting": {"_count": 1}, "hanging": {"_count": 1}}, "that": {"_count": 3, "it": {"_count": 1}, "night": {"_count": 1}, "the": {"_count": 1}}, "roaming": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 11, "one": {"_count": 2}, "the": {"_count": 5}, "silence": {"_count": 1}, "high": {"_count": 1}, "Hogsmeade": {"_count": 1}, "Rons": {"_count": 1}}, "all": {"_count": 3, "of": {"_count": 2}, "right": {"_count": 1}}, "exhausted": {"_count": 1, "their": {"_count": 1}}, "Neville": {"_count": 2, "": {"_count": 1}, "whose": {"_count": 1}}, "after": {"_count": 3, "a": {"_count": 1}, "breakfast": {"_count": 1}, "hours": {"_count": 1}}, "had": {"_count": 4, "large": {"_count": 1}, "been": {"_count": 2}, "a": {"_count": 1}}, "where": {"_count": 5, "he": {"_count": 2}, "a": {"_count": 1}, "it": {"_count": 2}}, "Hedwig": {"_count": 1, "had": {"_count": 1}}, "seized": {"_count": 1, "Harrys": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "watching": {"_count": 2, "the": {"_count": 1}, "blurred": {"_count": 1}}, "somehow": {"_count": 1, "even": {"_count": 1}}, "of": {"_count": 3, "straw": {"_count": 1}, "course": {"_count": 1}, "a": {"_count": 1}}, "dear": {"_count": 1, "she": {"_count": 1}}, "before": {"_count": 4, "Snape": {"_count": 1}, "anyone": {"_count": 1}, "everyone": {"_count": 1}, "Bathilda": {"_count": 1}}, "while": {"_count": 2, "Ron": {"_count": 2}}, "his": {"_count": 6, "arm": {"_count": 1}, "eyes": {"_count": 1}, "body": {"_count": 1}, "head": {"_count": 1}, "hands": {"_count": 1}, "wand": {"_count": 1}}, "crosseyed": {"_count": 1, "muttering": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "but": {"_count": 6, "it": {"_count": 1}, "he": {"_count": 1}, "opened": {"_count": 1}, "did": {"_count": 1}, "Ron": {"_count": 1}, "without": {"_count": 1}}, "to": {"_count": 6, "spare": {"_count": 1}, "his": {"_count": 1}, "settle": {"_count": 1}, "look": {"_count": 1}, "get": {"_count": 1}, "broken": {"_count": 1}}, "said": {"_count": 9, "Dumbledore": {"_count": 2}, "Harry": {"_count": 4}, "Mr": {"_count": 1}, "Angelina": {"_count": 1}, "Fudge": {"_count": 1}}, "openmouthed": {"_count": 1, "treading": {"_count": 1}}, "Ron": {"_count": 1, "Dean": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "far": {"_count": 1}, "dejected": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 4}, "once": {"_count": 1}, "this": {"_count": 1}}, "without": {"_count": 4, "bothering": {"_count": 1}, "moving": {"_count": 1}, "undressing": {"_count": 1}, "looking": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "sneaking": {"_count": 1, "off": {"_count": 1}}, "the": {"_count": 7, "blankets": {"_count": 1}, "only": {"_count": 1}, "hangings": {"_count": 1}, "hair": {"_count": 1}, "whole": {"_count": 1}, "package": {"_count": 1}, "walls": {"_count": 1}}, "put": {"_count": 3, "the": {"_count": 1}, "on": {"_count": 1}, "his": {"_count": 1}}, "untied": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "some": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "wrenching": {"_count": 1, "up": {"_count": 1}}, "illuminating": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 3, "behind": {"_count": 1}, "at": {"_count": 1}, "now": {"_count": 1}}, "thrown": {"_count": 1, "backward": {"_count": 1}}, "some": {"_count": 2, "highly": {"_count": 1}, "time": {"_count": 1}}, "shaking": {"_count": 1, "said": {"_count": 1}}, "drew": {"_count": 1, "the": {"_count": 1}}, "making": {"_count": 1, "sure": {"_count": 1}}, "laughing": {"_count": 1, "his": {"_count": 1}}, "knocking": {"_count": 1, "it": {"_count": 1}}, "nursing": {"_count": 1, "his": {"_count": 1}}, "twitched": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 3, "reached": {"_count": 1}, "": {"_count": 1}, "turned": {"_count": 1}}, "not": {"_count": 1, "silenced": {"_count": 1}}, "when": {"_count": 1, "something": {"_count": 1}}, "Hermione": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "snapped": {"_count": 1}}, "Remus": {"_count": 1, "gasped": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 1, "he": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "revealing": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 2, "book": {"_count": 1}, "series": {"_count": 1}}, "hurried": {"_count": 1, "across": {"_count": 1}}, "sounded": {"_count": 1, "cheerful": {"_count": 1}}, "wrenched": {"_count": 1, "up": {"_count": 1}}, "Seamus": {"_count": 1, "had": {"_count": 1}}, "I": {"_count": 2, "could": {"_count": 1}, "think": {"_count": 1}}, "covered": {"_count": 2, "in": {"_count": 2}}, "He": {"_count": 1, "wanted": {"_count": 1}}, "early": {"_count": 4, "pulled": {"_count": 1}, "leaving": {"_count": 1}, "out": {"_count": 1}, "but": {"_count": 1}}, "fuming": {"_count": 1, "for": {"_count": 1}}, "still": {"_count": 2, "looking": {"_count": 1}, "crying": {"_count": 1}}, "which": {"_count": 3, "was": {"_count": 2}, "he": {"_count": 1}}, "on": {"_count": 3, "Boxing": {"_count": 1}, "the": {"_count": 1}, "Christmas": {"_count": 1}}, "Snape": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "Potter": {"_count": 1, "come": {"_count": 1}}, "again": {"_count": 6, "but": {"_count": 1}, "": {"_count": 3}, "gazing": {"_count": 1}, "staring": {"_count": 1}}, "her": {"_count": 1, "hands": {"_count": 1}}, "outside": {"_count": 1, "number": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "stomach": {"_count": 1}}, "onto": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "opposite": {"_count": 5, "the": {"_count": 1}, "in": {"_count": 1}, "staring": {"_count": 1}, "Lockharts": {"_count": 1}, "them": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "talking": {"_count": 1}}, "settled": {"_count": 1, "down": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "hangings": {"_count": 1, "and": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "putting": {"_count": 1, "his": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "covers": {"_count": 2, "and": {"_count": 1}, "higher": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "booked": {"_count": 1, "in": {"_count": 1}}, "willing": {"_count": 1, "himself": {"_count": 1}}, "you": {"_count": 2, "werent": {"_count": 1}, "prat": {"_count": 1}}, "then": {"_count": 1, "threw": {"_count": 1}}, "mate": {"_count": 1, "said": {"_count": 1}}, "strangled": {"_count": 1, "by": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "it": {"_count": 1, "felt": {"_count": 1}}, "wishing": {"_count": 1, "his": {"_count": 1}}, "one": {"_count": 1, "arm": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "yawning": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 1, "out": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "late": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "didnt": {"_count": 1}}, "three": {"_count": 1, "hours": {"_count": 1}}, "screwed": {"_count": 1, "the": {"_count": 1}}, "refusing": {"_count": 1, "meals": {"_count": 1}}, "comforting": {"_count": 1, "himself": {"_count": 1}}, "anyway": {"_count": 1, "said": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "cursing": {"_count": 1, "Snape": {"_count": 1}}, "near": {"_count": 2, "the": {"_count": 2}}, "fully": {"_count": 1, "clothed": {"_count": 1}}, "yawned": {"_count": 1, "Ginny": {"_count": 1}}, "hissing": {"_count": 1, "indignantly": {"_count": 1}}, "skidded": {"_count": 1, "on": {"_count": 1}}, "pointed": {"_count": 1, "it": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "until": {"_count": 1, "late": {"_count": 1}}, "keeping": {"_count": 1, "his": {"_count": 1}}, "The": {"_count": 1, "snake": {"_count": 1}}, "desiring": {"_count": 1, "nothing": {"_count": 1}}, "hasnt": {"_count": 1, "been": {"_count": 1}}, "farthest": {"_count": 1, "from": {"_count": 1}}, "beside": {"_count": 1, "Ron": {"_count": 1}}, "lying": {"_count": 1, "waiting": {"_count": 1}}}, "went": {"_count": 674, "into": {"_count": 24, "the": {"_count": 7}, "dinner": {"_count": 1}, "a": {"_count": 8}, "what": {"_count": 1}, "Hogsmeade": {"_count": 1}, "transports": {"_count": 1}, "Gladrags": {"_count": 1}, "Borgin": {"_count": 1}, "his": {"_count": 1}, "exile": {"_count": 1}, "hiding": {"_count": 1}}, "upstairs": {"_count": 5, "to": {"_count": 5}}, "out": {"_count": 28, "with": {"_count": 2}, "into": {"_count": 3}, "to": {"_count": 3}, "at": {"_count": 3}, "of": {"_count": 4}, "and": {"_count": 2}, "": {"_count": 8}, "onto": {"_count": 2}, "in": {"_count": 1}}, "on": {"_count": 101, "": {"_count": 23}, "and": {"_count": 4}, "feverishly": {"_count": 1}, "the": {"_count": 2}, "Dont": {"_count": 1}, "Remember": {"_count": 1}, "smoothly": {"_count": 1}, "thoughtfully": {"_count": 1}, "hurriedly": {"_count": 1}, "smiling": {"_count": 1}, "what": {"_count": 1}, "quickly": {"_count": 3}, "winking": {"_count": 1}, "her": {"_count": 1}, "we": {"_count": 2}, "more": {"_count": 1}, "resuming": {"_count": 1}, "all": {"_count": 2}, "pressing": {"_count": 1}, "for": {"_count": 2}, "ignoring": {"_count": 1}, "This": {"_count": 1}, "calmly": {"_count": 1}, "so": {"_count": 2}, "as": {"_count": 3}, "that": {"_count": 2}, "going": {"_count": 1}, "he": {"_count": 2}, "hastily": {"_count": 1}, "with": {"_count": 2}, "dropping": {"_count": 1}, "And": {"_count": 2}, "I": {"_count": 6}, "straightening": {"_count": 1}, "in": {"_count": 1}, "talking": {"_count": 1}, "gazing": {"_count": 1}, "down": {"_count": 1}, "holiday": {"_count": 1}, "into": {"_count": 1}, "ruthlessly": {"_count": 1}, "Professor": {"_count": 1}, "Do": {"_count": 1}, "werent": {"_count": 1}, "So": {"_count": 1}, "Dawlish": {"_count": 2}, "tying": {"_count": 1}, "Rita": {"_count": 1}, "bitterly": {"_count": 1}, "addressing": {"_count": 1}, "looking": {"_count": 1}, "lets": {"_count": 1}, "after": {"_count": 1}, "pointing": {"_count": 1}, "Well": {"_count": 1}, "said": {"_count": 1}, "My": {"_count": 1}}, "to": {"_count": 94, "find": {"_count": 2}, "answer": {"_count": 1}, "the": {"_count": 13}, "have": {"_count": 1}, "get": {"_count": 3}, "sleep": {"_count": 2}, "live": {"_count": 1}, "sit": {"_count": 5}, "Ravenclaw": {"_count": 1}, "join": {"_count": 4}, "bed": {"_count": 12}, "tell": {"_count": 1}, "Wood": {"_count": 1}, "help": {"_count": 4}, "look": {"_count": 3}, "visit": {"_count": 1}, "draw": {"_count": 1}, "tip": {"_count": 1}, "Hogwarts": {"_count": 2}, "Hedwigs": {"_count": 1}, "Azkaban": {"_count": 2}, "Flourish": {"_count": 1}, "see": {"_count": 3}, "give": {"_count": 1}, "pieces": {"_count": 1}, "wash": {"_count": 1}, "stand": {"_count": 1}, "pour": {"_count": 1}, "St": {"_count": 1}, "one": {"_count": 1}, "sort": {"_count": 1}, "buy": {"_count": 1}, "rejoin": {"_count": 1}, "fetch": {"_count": 1}, "pat": {"_count": 1}, "meet": {"_count": 1}, "free": {"_count": 1}, "ask": {"_count": 2}, "to": {"_count": 1}, "McGonagall": {"_count": 1}, "speak": {"_count": 1}, "work": {"_count": 1}, "Umbridges": {"_count": 1}, "search": {"_count": 1}, "roll": {"_count": 1}, "retrieve": {"_count": 1}, "keep": {"_count": 1}, "Godrics": {"_count": 1}, "Diagon": {"_count": 1}, "Snapes": {"_count": 1}}, "down": {"_count": 31, "the": {"_count": 10}, "to": {"_count": 17}, "making": {"_count": 1}, "into": {"_count": 1}, "through": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 8, "for": {"_count": 1}, "there": {"_count": 2}, "case": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 1}, "or": {"_count": 1}}, "back": {"_count": 40, "to": {"_count": 25}, "into": {"_count": 3}, "upstairs": {"_count": 3}, "outside": {"_count": 1}, "downstairs": {"_count": 3}, "down": {"_count": 1}, "inside": {"_count": 1}, "over": {"_count": 1}, "an": {"_count": 1}, "for": {"_count": 1}}, "from": {"_count": 2, "red": {"_count": 1}, "one": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 19, "to": {"_count": 10}, "with": {"_count": 2}, "unexpectedly": {"_count": 1}, "into": {"_count": 1}, "target": {"_count": 1}, "an": {"_count": 1}, "for": {"_count": 1}, "several": {"_count": 1}, "on": {"_count": 1}}, "ranting": {"_count": 2, "on": {"_count": 2}}, "and": {"_count": 15, "got": {"_count": 2}, "slouching": {"_count": 1}, "looked": {"_count": 1}, "sat": {"_count": 1}, "ate": {"_count": 1}, "splinched": {"_count": 1}, "called": {"_count": 1}, "banged": {"_count": 1}, "now": {"_count": 1}, "met": {"_count": 1}, "then": {"_count": 1}, "searched": {"_count": 1}, "some": {"_count": 1}, "every": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 33}, "?": {"_count": 1}}, "straight": {"_count": 10, "to": {"_count": 4}, "up": {"_count": 2}, "into": {"_count": 1}, "for": {"_count": 2}, "through": {"_count": 1}}, "rattling": {"_count": 1, "over": {"_count": 1}}, "bad": {"_count": 1, "who": {"_count": 1}}, "outta": {"_count": 1, "fashion": {"_count": 1}}, "rather": {"_count": 3, "dry": {"_count": 1}, "well": {"_count": 1}, "badly": {"_count": 1}}, "pink": {"_count": 5, "": {"_count": 3}, "again": {"_count": 1}, "and": {"_count": 1}}, "looking": {"_count": 4, "for": {"_count": 4}}, "spinning": {"_count": 2, "dangerously": {"_count": 1}, "out": {"_count": 1}}, "slithering": {"_count": 1, "to": {"_count": 1}}, "bright": {"_count": 2, "red": {"_count": 2}}, "people": {"_count": 1, "pointed": {"_count": 1}}, "speeding": {"_count": 1, "in": {"_count": 1}}, "very": {"_count": 8, "still": {"_count": 2}, "quiet": {"_count": 1}, "red": {"_count": 2}, "very": {"_count": 1}, "pink": {"_count": 1}, "badly": {"_count": 1}}, "purple": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "deadly": {"_count": 1, "quiet": {"_count": 1}}, "hungry": {"_count": 1, "when": {"_count": 1}}, "berserk": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "the": {"_count": 4, "flying": {"_count": 1}, "pincers": {"_count": 1}, "passage": {"_count": 1}, "Triwizard": {"_count": 1}}, "all": {"_count": 4, "right": {"_count": 2}, "deep": {"_count": 1}, "sleepy": {"_count": 1}}, "scarlet": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}}, "as": {"_count": 6, "red": {"_count": 1}, "quickly": {"_count": 1}, "brightly": {"_count": 1}, "pink": {"_count": 1}, "everpresent": {"_count": 1}, "far": {"_count": 1}}, "flying": {"_count": 2, "Mr": {"_count": 1}, "across": {"_count": 1}}, "next": {"_count": 4, "Fred": {"_count": 1}, "he": {"_count": 1}, "looking": {"_count": 1}, "be": {"_count": 1}}, "numb": {"_count": 1, "": {"_count": 1}}, "outside": {"_count": 3, "into": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "over": {"_count": 5, "three": {"_count": 1}, "to": {"_count": 3}, "and": {"_count": 1}}, "wild": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "brick": {"_count": 2, "red": {"_count": 2}}, "sailing": {"_count": 1, "past": {"_count": 1}}, "past": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "which": {"_count": 1}}, "for": {"_count": 9, "Filch": {"_count": 1}, "Care": {"_count": 1}, "a": {"_count": 3}, "his": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}, "Gran": {"_count": 1}}, "pinker": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 12, "the": {"_count": 6}, "Harry": {"_count": 3}, "another": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "emerging": {"_count": 1, "next": {"_count": 1}}, "by": {"_count": 4, "with": {"_count": 1}, "and": {"_count": 1}, "Cormac": {"_count": 1}, "": {"_count": 1}}, "up": {"_count": 23, "to": {"_count": 17}, "Harry": {"_count": 1}, "the": {"_count": 3}, "that": {"_count": 1}, "on": {"_count": 1}}, "helped": {"_count": 1, "rather": {"_count": 1}}, "unnoticed": {"_count": 2, "": {"_count": 2}}, "mad": {"_count": 2, "with": {"_count": 1}, "at": {"_count": 1}}, "their": {"_count": 1, "footsteps": {"_count": 1}}, "foggy": {"_count": 1, "": {"_count": 1}}, "whooshing": {"_count": 1, "past": {"_count": 1}}, "scurrying": {"_count": 2, "in": {"_count": 1}, "after": {"_count": 1}}, "even": {"_count": 1, "paler": {"_count": 1}}, "white": {"_count": 1, "Ern": {"_count": 1}}, "wiv": {"_count": 1, "em": {"_count": 1}}, "inside": {"_count": 6, "and": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}, "me": {"_count": 2}, "the": {"_count": 1}}, "downstairs": {"_count": 3, "": {"_count": 2}, "crossed": {"_count": 1}}, "haywire": {"_count": 1, "just": {"_count": 1}}, "deeper": {"_count": 1, "than": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "quiet": {"_count": 8, "to": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}, "though": {"_count": 1}, "after": {"_count": 1}, "in": {"_count": 1}, "an": {"_count": 1}}, "if": {"_count": 1, "possible": {"_count": 1}}, "near": {"_count": 2, "one": {"_count": 1}, "them": {"_count": 1}}, "blank": {"_count": 1, "at": {"_count": 1}}, "after": {"_count": 4, "Black": {"_count": 1}, "Snape": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "furiously": {"_count": 1, "red": {"_count": 1}}, "pale": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "icily": {"_count": 1, "cold": {"_count": 1}}, "they": {"_count": 1, "saw": {"_count": 1}}, "you": {"_count": 1, "didnt": {"_count": 1}}, "smashing": {"_count": 1, "into": {"_count": 1}}, "haring": {"_count": 1, "after": {"_count": 1}}, "every": {"_count": 1, "month": {"_count": 1}}, "right": {"_count": 3, "after": {"_count": 1}, "through": {"_count": 1}, "there": {"_count": 1}}, "restlessly": {"_count": 1, "back": {"_count": 1}}, "wrong": {"_count": 7, "about": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 5, "pink": {"_count": 5}}, "first": {"_count": 3, "they": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "across": {"_count": 1, "to": {"_count": 1}}, "trampling": {"_count": 1, "around": {"_count": 1}}, "ter": {"_count": 1, "fetch": {"_count": 1}}, "red": {"_count": 3, "too": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "rushing": {"_count": 1, "after": {"_count": 1}}, "nervously": {"_count": 1, "to": {"_count": 1}}, "ferreting": {"_count": 1, "around": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "whizzing": {"_count": 2, "resignedly": {"_count": 1}, "past": {"_count": 1}}, "together": {"_count": 1, "down": {"_count": 1}}, "cold": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "slowly": {"_count": 1, "upstairs": {"_count": 1}}, "free": {"_count": 1, "": {"_count": 1}}, "completely": {"_count": 1, "berserk": {"_count": 1}}, "dark": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "He": {"_count": 1, "got": {"_count": 1}}, "regularly": {"_count": 1, "sometimes": {"_count": 1}}, "home": {"_count": 3, "even": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}}, "oddly": {"_count": 1, "still": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}, "quite": {"_count": 2, "well": {"_count": 1}, "unnoticed": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "not": {"_count": 1, "long": {"_count": 1}}, "with": {"_count": 4, "you": {"_count": 1}, "Bertie": {"_count": 1}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}}, "poking": {"_count": 1, "around": {"_count": 1}}, "Snape": {"_count": 1, "whipped": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "unchallenged": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "had": {"_count": 1}}, "well": {"_count": 1, "enough": {"_count": 1}}, "soaring": {"_count": 1, "through": {"_count": 1}}, "Harry": {"_count": 2, "crashed": {"_count": 1}, "felt": {"_count": 1}}, "immediately": {"_count": 1, "into": {"_count": 1}}, "plunging": {"_count": 1, "after": {"_count": 1}}, "black": {"_count": 1, "he": {"_count": 1}}, "sprinting": {"_count": 1, "off": {"_count": 1}}, "mental": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 1, "well": {"_count": 1}}, "limp": {"_count": 1, "": {"_count": 1}}, "ahead": {"_count": 1, "and": {"_count": 1}}, "dry": {"_count": 1, "": {"_count": 1}}, "pitch": {"_count": 1, "black": {"_count": 1}}, "pitchblack": {"_count": 1, "Peruvian": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "loopy": {"_count": 1, "he": {"_count": 1}}, "around": {"_count": 1, "to": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "coil": {"_count": 1, "after": {"_count": 1}}, "she": {"_count": 1, "glanced": {"_count": 1}}, "sneaking": {"_count": 1, "down": {"_count": 1}}}, "living": {"_count": 126, "room": {"_count": 47, "in": {"_count": 1}, "carrying": {"_count": 2}, "which": {"_count": 2}, "": {"_count": 11}, "for": {"_count": 1}, "window": {"_count": 3}, "where": {"_count": 2}, "Harry": {"_count": 1}, "door": {"_count": 5}, "was": {"_count": 3}, "wall": {"_count": 1}, "fire": {"_count": 1}, "and": {"_count": 3}, "walrus": {"_count": 1}, "two": {"_count": 1}, "his": {"_count": 3}, "combined": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 1}, "said": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "Little": {"_count": 1}, "secret": {"_count": 1}, "Albuss": {"_count": 1}}, "on": {"_count": 3, "Halloween": {"_count": 1}, "meals": {"_count": 1}, "rats": {"_count": 1}}, "people": {"_count": 3, "who": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "relatives": {"_count": 4, "": {"_count": 2}, "which": {"_count": 1}, "took": {"_count": 1}}, "creature": {"_count": 4, "in": {"_count": 3}, "had": {"_count": 1}}, "daylights": {"_count": 1, "out": {"_count": 1}}, "soul": {"_count": 3, "": {"_count": 1}, "for": {"_count": 1}, "left": {"_count": 1}}, "only": {"_count": 1, "three": {"_count": 1}}, "so": {"_count": 1, "long": {"_count": 1}}, "proof": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 3, "Sirius": {"_count": 1}, "dead": {"_count": 1}, "Tonks": {"_count": 1}}, "person": {"_count": 1, "to": {"_count": 1}}, "counterpart": {"_count": 1, "of": {"_count": 1}}, "fairies": {"_count": 1, "were": {"_count": 1}}, "replicas": {"_count": 1, "of": {"_count": 1}}, "off": {"_count": 1, "rats": {"_count": 1}}, "but": {"_count": 1, "unable": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Cedric": {"_count": 1, "would": {"_count": 1}}, "fulltime": {"_count": 1, "with": {"_count": 1}}, "here": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "twigs": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 2, "us": {"_count": 1}, "nothing": {"_count": 1}}, "visits": {"_count": 1, "to": {"_count": 1}}, "creatures": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "reminder": {"_count": 1, "of": {"_count": 1}}, "selves": {"_count": 1, "once": {"_count": 1}}, "memory": {"_count": 5, "": {"_count": 5}}, "up": {"_count": 2, "to": {"_count": 2}}, "descendants": {"_count": 1, "what": {"_count": 1}}, "said": {"_count": 1, "Mundungus": {"_count": 1}}, "among": {"_count": 1, "my": {"_count": 1}}, "undetected": {"_count": 1, "in": {"_count": 1}}, "beyond": {"_count": 1, "death": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "son": {"_count": 1, "stood": {"_count": 1}}, "thing": {"_count": 1, "that": {"_count": 1}}, "eye": {"_count": 1, "dark": {"_count": 1}}, "Dumbledores": {"_count": 1, "intentions": {"_count": 1}}, "rough": {"_count": 1, "": {"_count": 1}}, "alone": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 2, "dead": {"_count": 1}, "above": {"_count": 1}}, "body": {"_count": 2, "than": {"_count": 1}, "with": {"_count": 1}}, "bodies": {"_count": 1, "but": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "descendant": {"_count": 1, "who": {"_count": 1}}, "world": {"_count": 1, "than": {"_count": 1}}}, "room": {"_count": 1278, "in": {"_count": 18, "time": {"_count": 1}, "search": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 5}, "three": {"_count": 1}, "one": {"_count": 1}, "this": {"_count": 1}, "which": {"_count": 2}, "Trelawneys": {"_count": 1}, "two": {"_count": 1}, "front": {"_count": 2}, "a": {"_count": 1}}, "carrying": {"_count": 9, "two": {"_count": 1}, "a": {"_count": 6}, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "which": {"_count": 14, "was": {"_count": 8}, "led": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 1}, "served": {"_count": 1}, "Ginny": {"_count": 1}, "irritated": {"_count": 1}}, "held": {"_count": 2, "no": {"_count": 1}, "its": {"_count": 1}}, "": {"_count": 304, ".": {"_count": 293}, "?": {"_count": 7}, "!": {"_count": 4}}, "for": {"_count": 22, "the": {"_count": 5}, "all": {"_count": 1}, "you": {"_count": 1}, "an": {"_count": 1}, "ages": {"_count": 1}, "eleven": {"_count": 1}, "concentration": {"_count": 1}, "ten": {"_count": 1}, "simple": {"_count": 1}, "inspiration": {"_count": 1}, "improvement": {"_count": 1}, "hours": {"_count": 2}, "her": {"_count": 2}, "anybody": {"_count": 1}, "likely": {"_count": 1}, "more": {"_count": 1}}, "that": {"_count": 19, "looked": {"_count": 1}, "made": {"_count": 1}, "night": {"_count": 3}, "was": {"_count": 2}, "morning": {"_count": 1}, "he": {"_count": 2}, "smelled": {"_count": 1}, "had": {"_count": 1}, "a": {"_count": 1}, "kind": {"_count": 1}, "you": {"_count": 1}, "seemed": {"_count": 1}, "evening": {"_count": 1}, "Dumbledore": {"_count": 1}, "need": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "window": {"_count": 7, "": {"_count": 3}, "dropped": {"_count": 1}, "and": {"_count": 2}, "trying": {"_count": 1}}, "bouncing": {"_count": 1, "off": {"_count": 1}}, "with": {"_count": 33, "twin": {"_count": 1}, "his": {"_count": 2}, "its": {"_count": 2}, "Mr": {"_count": 1}, "rough": {"_count": 2}, "the": {"_count": 3}, "a": {"_count": 4}, "bluebellcolored": {"_count": 1}, "him": {"_count": 2}, "Crookshanks": {"_count": 1}, "Buckbeak": {"_count": 1}, "me": {"_count": 1}, "that": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 2}, "nothing": {"_count": 1}, "Slughorn": {"_count": 1}, "an": {"_count": 1}, "Ron": {"_count": 1}, "them": {"_count": 1}, "light": {"_count": 1}, "Dean": {"_count": 1}, "peeling": {"_count": 1}}, "and": {"_count": 84, "made": {"_count": 1}, "collapsed": {"_count": 1}, "hoping": {"_count": 1}, "the": {"_count": 4}, "climbed": {"_count": 1}, "from": {"_count": 1}, "went": {"_count": 3}, "Uncle": {"_count": 1}, "hand": {"_count": 1}, "continued": {"_count": 2}, "ask": {"_count": 1}, "left": {"_count": 2}, "lay": {"_count": 1}, "out": {"_count": 2}, "behind": {"_count": 1}, "pinning": {"_count": 1}, "stared": {"_count": 1}, "broke": {"_count": 1}, "sat": {"_count": 2}, "saw": {"_count": 2}, "landed": {"_count": 3}, "looked": {"_count": 1}, "dropping": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}, "found": {"_count": 1}, "hurried": {"_count": 1}, "there": {"_count": 2}, "every": {"_count": 1}, "making": {"_count": 1}, "lying": {"_count": 1}, "watching": {"_count": 1}, "as": {"_count": 1}, "closed": {"_count": 1}, "attempted": {"_count": 1}, "tell": {"_count": 1}, "had": {"_count": 1}, "set": {"_count": 1}, "into": {"_count": 1}, "pulled": {"_count": 1}, "watch": {"_count": 1}, "at": {"_count": 1}, "focusing": {"_count": 1}, "their": {"_count": 1}, "began": {"_count": 1}, "descending": {"_count": 1}, "felt": {"_count": 1}, "seize": {"_count": 1}, "alighted": {"_count": 1}, "Slughorn": {"_count": 1}, "he": {"_count": 2}, "when": {"_count": 1}, "Mrs": {"_count": 1}, "threw": {"_count": 1}, "led": {"_count": 1}, "only": {"_count": 1}, "along": {"_count": 1}, "I": {"_count": 1}, "through": {"_count": 1}, "downstairs": {"_count": 1}, "follow": {"_count": 1}, "Bill": {"_count": 1}, "still": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}, "she": {"_count": 1}, "workplace": {"_count": 1}, "hit": {"_count": 1}, "a": {"_count": 1}, "show": {"_count": 1}}, "he": {"_count": 18, "cast": {"_count": 1}, "had": {"_count": 2}, "heard": {"_count": 3}, "climbed": {"_count": 1}, "slept": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 2}, "thought": {"_count": 1}, "did": {"_count": 1}, "saw": {"_count": 1}, "found": {"_count": 2}, "wanted": {"_count": 1}, "leaned": {"_count": 1}}, "while": {"_count": 7, "Aunt": {"_count": 1}, "Ron": {"_count": 2}, "he": {"_count": 1}, "Crookshanks": {"_count": 1}, "Harry": {"_count": 1}, "Greyback": {"_count": 1}}, "where": {"_count": 29, "they": {"_count": 3}, "Harry": {"_count": 1}, "he": {"_count": 4}, "Ginny": {"_count": 1}, "Ron": {"_count": 2}, "the": {"_count": 6}, "there": {"_count": 4}, "you": {"_count": 1}, "two": {"_count": 1}, "Professor": {"_count": 1}, "Fred": {"_count": 2}, "unwary": {"_count": 1}, "Mrs": {"_count": 1}, "Snape": {"_count": 1}}, "waiting": {"_count": 3, "for": {"_count": 2}, "to": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 9, "cozy": {"_count": 1}, "long": {"_count": 2}, "door": {"_count": 1}, "very": {"_count": 1}, "positive": {"_count": 1}, "girl": {"_count": 1}, "million": {"_count": 1}, "fiery": {"_count": 1}}, "full": {"_count": 13, "of": {"_count": 13}}, "fire": {"_count": 5, "and": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "assuming": {"_count": 1}}, "inside": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "thats": {"_count": 2, "always": {"_count": 1}, "this": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 1, "them": {"_count": 1}}, "Malfoy": {"_count": 1, "must": {"_count": 1}}, "as": {"_count": 16, "he": {"_count": 3}, "fast": {"_count": 2}, "the": {"_count": 2}, "Harry": {"_count": 2}, "they": {"_count": 1}, "quickly": {"_count": 1}, "though": {"_count": 3}, "high": {"_count": 1}, "if": {"_count": 1}}, "tremble": {"_count": 1, "": {"_count": 1}}, "closely": {"_count": 2, "followed": {"_count": 2}}, "was": {"_count": 74, "packed": {"_count": 2}, "very": {"_count": 4}, "far": {"_count": 1}, "empty": {"_count": 3}, "growing": {"_count": 1}, "really": {"_count": 1}, "almost": {"_count": 3}, "dingy": {"_count": 1}, "a": {"_count": 2}, "always": {"_count": 1}, "making": {"_count": 1}, "watching": {"_count": 2}, "lit": {"_count": 1}, "hotter": {"_count": 1}, "deserted": {"_count": 3}, "flung": {"_count": 1}, "now": {"_count": 1}, "of": {"_count": 1}, "whipped": {"_count": 1}, "bathed": {"_count": 1}, "in": {"_count": 2}, "much": {"_count": 3}, "swelteringly": {"_count": 1}, "dimly": {"_count": 1}, "still": {"_count": 2}, "certainly": {"_count": 1}, "not": {"_count": 1}, "littered": {"_count": 1}, "full": {"_count": 6}, "blurred": {"_count": 1}, "suddenly": {"_count": 2}, "soon": {"_count": 1}, "scarcely": {"_count": 1}, "gazing": {"_count": 1}, "larger": {"_count": 1}, "ringing": {"_count": 1}, "strewn": {"_count": 1}, "decorated": {"_count": 1}, "chilly": {"_count": 1}, "jubilant": {"_count": 1}, "crowded": {"_count": 2}, "there": {"_count": 1}, "elffree": {"_count": 1}, "open": {"_count": 1}, "jampacked": {"_count": 1}, "just": {"_count": 1}, "spacious": {"_count": 1}, "exactly": {"_count": 1}, "perfectly": {"_count": 1}, "lightcolored": {"_count": 1}, "even": {"_count": 1}}, "Harry": {"_count": 15, "and": {"_count": 1}, "caught": {"_count": 1}, "Ron": {"_count": 1}, "saw": {"_count": 2}, "muttered": {"_count": 1}, "cleared": {"_count": 1}, "looked": {"_count": 1}, "returned": {"_count": 1}, "clutching": {"_count": 1}, "found": {"_count": 1}, "turned": {"_count": 1}, "smashed": {"_count": 1}, "walked": {"_count": 1}, "lost": {"_count": 1}}, "some": {"_count": 1, "sparkling": {"_count": 1}}, "his": {"_count": 16, "arms": {"_count": 1}, "Nimbus": {"_count": 1}, "only": {"_count": 1}, "trouser": {"_count": 1}, "face": {"_count": 2}, "bottlebrush": {"_count": 1}, "Uncle": {"_count": 1}, "great": {"_count": 1}, "eyes": {"_count": 1}, "black": {"_count": 1}, "glittering": {"_count": 1}, "reappearance": {"_count": 1}, "bald": {"_count": 1}, "thin": {"_count": 1}, "shaking": {"_count": 1}}, "without": {"_count": 4, "their": {"_count": 1}, "giving": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "again": {"_count": 9, "": {"_count": 1}, "and": {"_count": 2}, "looking": {"_count": 1}, "stopping": {"_count": 1}, "thinking": {"_count": 1}, "his": {"_count": 1}, "she": {"_count": 1}, "raised": {"_count": 1}}, "Wood": {"_count": 1, "had": {"_count": 1}}, "alone": {"_count": 1, "some": {"_count": 1}}, "were": {"_count": 6, "having": {"_count": 1}, "laughing": {"_count": 1}, "no": {"_count": 1}, "listening": {"_count": 2}, "better": {"_count": 1}}, "you": {"_count": 4, "wait": {"_count": 1}, "had": {"_count": 1}, "hear": {"_count": 1}, "might": {"_count": 1}}, "long": {"_count": 1, "after": {"_count": 1}}, "emptied": {"_count": 2, "as": {"_count": 1}, "slowly": {"_count": 1}}, "to": {"_count": 39, "reveal": {"_count": 1}, "Hedwigs": {"_count": 1}, "the": {"_count": 5}, "examine": {"_count": 2}, "last": {"_count": 1}, "clear": {"_count": 1}, "join": {"_count": 1}, "find": {"_count": 2}, "room": {"_count": 2}, "unstick": {"_count": 1}, "pull": {"_count": 1}, "her": {"_count": 1}, "see": {"_count": 1}, "a": {"_count": 1}, "move": {"_count": 2}, "his": {"_count": 1}, "be": {"_count": 1}, "themselves": {"_count": 1}, "put": {"_count": 1}, "sit": {"_count": 1}, "maneuver": {"_count": 1}, "where": {"_count": 1}, "inform": {"_count": 1}, "spread": {"_count": 1}, "become": {"_count": 1}, "endure": {"_count": 1}, "each": {"_count": 1}, "wake": {"_count": 1}, "place": {"_count": 1}, "stretch": {"_count": 1}, "an": {"_count": 1}}, "theyll": {"_count": 1, "get": {"_count": 1}}, "went": {"_count": 6, "very": {"_count": 2}, "deadly": {"_count": 1}, "inside": {"_count": 1}, "quiet": {"_count": 1}, "icily": {"_count": 1}}, "gradually": {"_count": 1, "fell": {"_count": 1}}, "Mrs": {"_count": 3, "Mason": {"_count": 1}, "Weasley": {"_count": 1}, "Tonkss": {"_count": 1}}, "making": {"_count": 4, "no": {"_count": 2}, "obscene": {"_count": 1}, "sure": {"_count": 1}}, "promised": {"_count": 1, "Harry": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 1}, "them": {"_count": 2}}, "if": {"_count": 1, "Hogwarts": {"_count": 1}}, "No": {"_count": 2, "problem": {"_count": 1}, "that": {"_count": 1}}, "collecting": {"_count": 1, "his": {"_count": 1}}, "seemed": {"_count": 4, "to": {"_count": 4}}, "the": {"_count": 17, "rest": {"_count": 1}, "girls": {"_count": 1}, "night": {"_count": 1}, "tunnel": {"_count": 1}, "cold": {"_count": 1}, "arms": {"_count": 1}, "lamps": {"_count": 1}, "ghostly": {"_count": 1}, "doorbell": {"_count": 1}, "only": {"_count": 1}, "plan": {"_count": 1}, "size": {"_count": 1}, "smells": {"_count": 1}, "old": {"_count": 1}, "tall": {"_count": 1}, "snake": {"_count": 1}, "kneeling": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "still": {"_count": 2, "having": {"_count": 1}, "wearing": {"_count": 1}}, "so": {"_count": 6, "long": {"_count": 1}, "as": {"_count": 1}, "we": {"_count": 1}, "that": {"_count": 2}, "much": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "through": {"_count": 7, "the": {"_count": 6}, "that": {"_count": 1}}, "at": {"_count": 21, "Percy": {"_count": 1}, "the": {"_count": 10}, "lunchtimes": {"_count": 1}, "night": {"_count": 1}, "a": {"_count": 2}, "large": {"_count": 3}, "five": {"_count": 1}, "Ron": {"_count": 1}, "all": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "is": {"_count": 4, "": {"_count": 2}, "that": {"_count": 1}, "to": {"_count": 1}}, "but": {"_count": 12, "there": {"_count": 4}, "Harry": {"_count": 2}, "it": {"_count": 1}, "so": {"_count": 1}, "I": {"_count": 1}, "before": {"_count": 1}, "my": {"_count": 1}, "another": {"_count": 1}}, "hurled": {"_count": 1, "themselves": {"_count": 1}}, "listened": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "often": {"_count": 1, "didnt": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "past": {"_count": 1, "Hedwigs": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "barking": {"_count": 1, "madly": {"_count": 1}}, "before": {"_count": 4, "anyone": {"_count": 1}, "breakfast": {"_count": 1}, "realizing": {"_count": 1}, "he": {"_count": 1}}, "here": {"_count": 2, "at": {"_count": 1}, "but": {"_count": 1}}, "pulling": {"_count": 1, "a": {"_count": 1}}, "feeling": {"_count": 1, "as": {"_count": 1}}, "after": {"_count": 4, "dinner": {"_count": 2}, "her": {"_count": 1}, "Mrs": {"_count": 1}}, "deciphering": {"_count": 1, "lopsided": {"_count": 1}}, "one": {"_count": 2, "evening": {"_count": 1}, "afternoon": {"_count": 1}}, "buzzing": {"_count": 1, "excitedly": {"_count": 1}}, "unsmiling": {"_count": 1, "and": {"_count": 1}}, "pinkfaced": {"_count": 1, "from": {"_count": 1}}, "cackling": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "smirking": {"_count": 1}}, "it": {"_count": 7, "was": {"_count": 3}, "sounded": {"_count": 1}, "cast": {"_count": 1}, "exploded": {"_count": 1}, "keeps": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "Crookshanks": {"_count": 1, "s": {"_count": 1}}, "only": {"_count": 4, "once": {"_count": 1}, "half": {"_count": 1}, "he": {"_count": 1}, "when": {"_count": 1}}, "fell": {"_count": 3, "cold": {"_count": 1}, "silent": {"_count": 2}}, "several": {"_count": 1, "tables": {"_count": 1}}, "now": {"_count": 7, "working": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "can": {"_count": 1}, "littered": {"_count": 1}, "and": {"_count": 1}, "discussing": {"_count": 1}}, "Whats": {"_count": 1, "going": {"_count": 1}}, "every": {"_count": 2, "night": {"_count": 1}, "evening": {"_count": 1}}, "once": {"_count": 2, "more": {"_count": 1}, "again": {"_count": 1}}, "pushed": {"_count": 1, "open": {"_count": 1}}, "burst": {"_count": 2, "open": {"_count": 2}}, "staring": {"_count": 1, "at": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "beyond": {"_count": 4, "": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "came": {"_count": 2, "to": {"_count": 1}, "into": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 10, "fighting": {"_count": 1}, "came": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "when": {"_count": 1}, "opened": {"_count": 1}, "which": {"_count": 1}}, "like": {"_count": 4, "a": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}}, "go": {"_count": 1, "back": {"_count": 1}}, "wall": {"_count": 2, "seemed": {"_count": 1}, "though": {"_count": 1}}, "said": {"_count": 6, "Ron": {"_count": 2}, "Hermione": {"_count": 2}, "Harry": {"_count": 2}}, "all": {"_count": 7, "to": {"_count": 1}, "positioned": {"_count": 1}, "proceeds": {"_count": 1}, "he": {"_count": 1}, "ready": {"_count": 1}, "along": {"_count": 1}, "of": {"_count": 1}}, "when": {"_count": 6, "he": {"_count": 3}, "they": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}}, "Ron": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "having": {"_count": 1}, "examined": {"_count": 1}}, "behind": {"_count": 5, "them": {"_count": 3}, "the": {"_count": 1}, "Hagrid": {"_count": 1}}, "muttering": {"_count": 3, "something": {"_count": 1}, "under": {"_count": 1}, "wildly": {"_count": 1}}, "slamming": {"_count": 3, "the": {"_count": 3}}, "looking": {"_count": 8, "as": {"_count": 1}, "flustered": {"_count": 1}, "much": {"_count": 1}, "irritable": {"_count": 1}, "reasonably": {"_count": 1}, "angrier": {"_count": 1}, "most": {"_count": 1}, "out": {"_count": 1}}, "found": {"_count": 1, "a": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "rather": {"_count": 1, "cold": {"_count": 1}}, "singing": {"_count": 2, "the": {"_count": 1}, "God": {"_count": 1}}, "gasped": {"_count": 1, "": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "lined": {"_count": 4, "with": {"_count": 4}}, "by": {"_count": 3, "about": {"_count": 1}, "the": {"_count": 1}, "Hagrid": {"_count": 1}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "leaving": {"_count": 8, "a": {"_count": 2}, "Harry": {"_count": 5}, "nothing": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}}, "not": {"_count": 3, "looking": {"_count": 1}, "even": {"_count": 1}, "daring": {"_count": 1}}, "on": {"_count": 10, "the": {"_count": 9}, "Saturday": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}}, "large": {"_count": 1, "as": {"_count": 1}}, "squealing": {"_count": 1, "Harry": {"_count": 1}}, "Oi": {"_count": 1, "": {"_count": 1}}, "tonight": {"_count": 1, "well": {"_count": 1}}, "looked": {"_count": 4, "strange": {"_count": 1}, "as": {"_count": 2}, "like": {"_count": 1}}, "I": {"_count": 3, "have": {"_count": 1}, "mean": {"_count": 1}, "looked": {"_count": 1}}, "had": {"_count": 5, "vanished": {"_count": 1}, "seen": {"_count": 1}, "remained": {"_count": 1}, "gone": {"_count": 1}, "opened": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "being": {"_count": 1, "quiet": {"_count": 1}}, "pausing": {"_count": 1, "here": {"_count": 1}}, "Professor": {"_count": 4, "Flitwick": {"_count": 2}, "Umbridge": {"_count": 1}, "McGonagall": {"_count": 1}}, "Hermione": {"_count": 1, "told": {"_count": 1}}, "pulled": {"_count": 2, "a": {"_count": 1}, "open": {"_count": 1}}, "she": {"_count": 5, "never": {"_count": 1}, "screamed": {"_count": 1}, "said": {"_count": 1}, "even": {"_count": 1}, "perched": {"_count": 1}}, "whose": {"_count": 1, "windows": {"_count": 1}}, "into": {"_count": 3, "a": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}}, "below": {"_count": 1, "the": {"_count": 1}}, "each": {"_count": 1, "grasping": {"_count": 1}}, "lets": {"_count": 1, "try": {"_count": 1}}, "Fleur": {"_count": 1, "was": {"_count": 1}}, "walrus": {"_count": 1, "mustache": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "grew": {"_count": 1, "steadily": {"_count": 1}}, "then": {"_count": 3, "there": {"_count": 1}, "the": {"_count": 1}, "pulled": {"_count": 1}}, "tomo": {"_count": 1, "AARGH": {"_count": 1}}, "littered": {"_count": 1, "with": {"_count": 1}}, "changed": {"_count": 1, "with": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "closing": {"_count": 2, "the": {"_count": 2}}, "better": {"_count": 1, "": {"_count": 1}}, "sobbing": {"_count": 1, "under": {"_count": 1}}, "took": {"_count": 1, "three": {"_count": 1}}, "hurriedly": {"_count": 1, "to": {"_count": 1}}, "stepped": {"_count": 1, "out": {"_count": 1}}, "panting": {"_count": 1, "": {"_count": 1}}, "wearing": {"_count": 1, "long": {"_count": 1}}, "her": {"_count": 2, "cheeks": {"_count": 1}, "bulging": {"_count": 1}}, "upstairs": {"_count": 2, "": {"_count": 2}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "notice": {"_count": 3, "board": {"_count": 1}, "boards": {"_count": 2}}, "He": {"_count": 1, "only": {"_count": 1}}, "buried": {"_count": 1, "in": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "they": {"_count": 1, "took": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "very": {"_count": 1, "dark": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "just": {"_count": 1}}, "lit": {"_count": 4, "with": {"_count": 2}, "by": {"_count": 1}, "only": {"_count": 1}}, "carried": {"_count": 1, "a": {"_count": 1}}, "indicating": {"_count": 1, "the": {"_count": 1}}, "felt": {"_count": 1, "he": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 1}, "to": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "ter": {"_count": 1, "swing": {"_count": 1}}, "watching": {"_count": 2, "other": {"_count": 1}, "Hermione": {"_count": 1}}, "tears": {"_count": 1, "pouring": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "wishing": {"_count": 1, "he": {"_count": 1}}, "Snape": {"_count": 2, "had": {"_count": 1}, "might": {"_count": 1}}, "well": {"_count": 2, "be": {"_count": 1}, "Ive": {"_count": 1}}, "dodging": {"_count": 1, "George": {"_count": 1}}, "interrupting": {"_count": 1, "Professor": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "dimmed": {"_count": 1, "so": {"_count": 1}}, "gripping": {"_count": 1, "by": {"_count": 1}}, "provided": {"_count": 1, "And": {"_count": 1}}, "cleared": {"_count": 1, "": {"_count": 1}}, "smirking": {"_count": 1, "but": {"_count": 1}}, "holding": {"_count": 1, "open": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "nearby": {"_count": 1, "then": {"_count": 1}}, "leading": {"_count": 1, "back": {"_count": 1}}, "sealing": {"_count": 1, "the": {"_count": 1}}, "Sirius": {"_count": 3, "Lupin": {"_count": 1}, "was": {"_count": 1}, "Black": {"_count": 1}}, "seemingly": {"_count": 1, "immobilized": {"_count": 1}}, "above": {"_count": 3, "the": {"_count": 1}, "seemed": {"_count": 1}, "": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "imperiously": {"_count": 1, "her": {"_count": 1}}, "Petunia": {"_count": 1, "at": {"_count": 1}}, "scrutinizing": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 3, "Fred": {"_count": 1}, "the": {"_count": 2}}, "Dumbledore": {"_count": 1, "interpreting": {"_count": 1}}, "snarling": {"_count": 1, "and": {"_count": 1}}, "already": {"_count": 1, "it": {"_count": 1}}, "speaking": {"_count": 1, "now": {"_count": 1}}, "oh": {"_count": 1, "yes": {"_count": 1}}, "combined": {"_count": 1, "": {"_count": 1}}, "beside": {"_count": 1, "them": {"_count": 1}}, "or": {"_count": 1, "at": {"_count": 1}}, "part": {"_count": 1, "office": {"_count": 1}}, "Seamus": {"_count": 2, "said": {"_count": 1}, "having": {"_count": 1}}, "stood": {"_count": 1, "Ron": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "giggling": {"_count": 1, "": {"_count": 1}}, "arguing": {"_count": 1, "about": {"_count": 1}}, "scooping": {"_count": 1, "up": {"_count": 1}}, "just": {"_count": 2, "in": {"_count": 1}, "lying": {"_count": 1}}, "apparently": {"_count": 1, "lost": {"_count": 1}}, "no": {"_count": 1, "hint": {"_count": 1}}, "allowing": {"_count": 1, "the": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "change": {"_count": 1, "subtly": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "becomes": {"_count": 1, "when": {"_count": 1}}, "simply": {"_count": 1, "did": {"_count": 1}}, "sneaked": {"_count": 1, "up": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "floor": {"_count": 3, "leaning": {"_count": 1}, "": {"_count": 2}}, "supposedly": {"_count": 1, "finishing": {"_count": 1}}, "skidding": {"_count": 1, "to": {"_count": 1}}, "unaccompanied": {"_count": 1, "": {"_count": 1}}, "telling": {"_count": 1, "each": {"_count": 1}}, "would": {"_count": 4, "be": {"_count": 1}, "ever": {"_count": 1}, "not": {"_count": 2}}, "followed": {"_count": 1, "by": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "hesitated": {"_count": 1, "for": {"_count": 1}}, "slid": {"_count": 1, "the": {"_count": 1}}, "opening": {"_count": 1, "empty": {"_count": 1}}, "we": {"_count": 1, "Petunia": {"_count": 1}}, "Its": {"_count": 1, "not": {"_count": 1}}, "yet": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "broken": {"_count": 1, "only": {"_count": 1}}, "stopped": {"_count": 1, "quite": {"_count": 1}}, "having": {"_count": 1, "shouted": {"_count": 1}}, "causing": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "why": {"_count": 1, "dont": {"_count": 1}}, "skidded": {"_count": 1, "to": {"_count": 1}}, "windows": {"_count": 2, "": {"_count": 1}, "before": {"_count": 1}}, "unnoticed": {"_count": 1, "by": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "shouting": {"_count": 1, "as": {"_count": 1}}, "lay": {"_count": 1, "in": {"_count": 1}}, "perched": {"_count": 1, "precariously": {"_count": 1}}, "unseen": {"_count": 1, "by": {"_count": 1}}, "dissolved": {"_count": 1, "momentarily": {"_count": 1}}, "exploding": {"_count": 1, "the": {"_count": 1}}, "somewhat": {"_count": 1, "resembled": {"_count": 1}}, "apart": {"_count": 1, "Fragments": {"_count": 1}}, "The": {"_count": 1, "prisoners": {"_count": 1}}, "dazzled": {"_count": 1, "after": {"_count": 1}}, "overhead": {"_count": 1, "then": {"_count": 1}}, "Bellatrix": {"_count": 1, "looked": {"_count": 1}}, "faced": {"_count": 1, "the": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "kicking": {"_count": 1, "aside": {"_count": 1}}, "reappearing": {"_count": 1, "moments": {"_count": 1}}, "doesnt": {"_count": 1, "really": {"_count": 1}}, "airier": {"_count": 1, "than": {"_count": 1}}, "vanished": {"_count": 1, "from": {"_count": 1}}, "directly": {"_count": 1, "ahead": {"_count": 1}}, "firing": {"_count": 1, "spells": {"_count": 1}}}, "catch": {"_count": 135, "the": {"_count": 16, "last": {"_count": 1}, "key": {"_count": 1}, "Hogwarts": {"_count": 1}, "maniac": {"_count": 1}, "Snitch": {"_count": 6}, "voice": {"_count": 1}, "Quaffle": {"_count": 1}, "voices": {"_count": 1}, "stream": {"_count": 1}, "eye": {"_count": 1}, "smoke": {"_count": 1}}, "him": {"_count": 10, "": {"_count": 3}, "a": {"_count": 1}, "if": {"_count": 1}, "on": {"_count": 1}, "robbing": {"_count": 1}, "wont": {"_count": 1}, "at": {"_count": 2}}, "one": {"_count": 4, "Out": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}}, "me": {"_count": 2, "off": {"_count": 1}, "": {"_count": 1}}, "because": {"_count": 1, "its": {"_count": 1}}, "it": {"_count": 15, "": {"_count": 6}, "he": {"_count": 1}, "but": {"_count": 3}, "only": {"_count": 1}, "yet": {"_count": 1}, "one": {"_count": 1}, "good": {"_count": 1}, "on": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "his": {"_count": 3, "eye": {"_count": 2}, "breath": {"_count": 1}}, "sight": {"_count": 2, "of": {"_count": 2}}, "them": {"_count": 3, "": {"_count": 2}, "off": {"_count": 1}}, "what": {"_count": 1, "they": {"_count": 1}}, "you": {"_count": 10, "he": {"_count": 1}, "made": {"_count": 1}, "": {"_count": 2}, "up": {"_count": 2}, "breaking": {"_count": 1}, "there": {"_count": 1}, "before": {"_count": 1}, "mentioning": {"_count": 1}}, "a": {"_count": 5, "unicorn": {"_count": 1}, "glimpse": {"_count": 2}, "real": {"_count": 1}, "Crumple": {"_count": 1}}, "anythin": {"_count": 1, "now": {"_count": 1}}, "up": {"_count": 14, "on": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 8}, "Cedric": {"_count": 1}, "or": {"_count": 1}, "which": {"_count": 1}}, "Ernies": {"_count": 1, "words": {"_count": 1}}, "Slytherins": {"_count": 1, "heir": {"_count": 1}}, "Scabbers": {"_count": 1, "who": {"_count": 1}}, "Black": {"_count": 6, "": {"_count": 1}, "singlehanded": {"_count": 2}, "soon": {"_count": 1}, "long": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "yeh": {"_count": 2, "walkin": {"_count": 1}, "out": {"_count": 1}}, "that": {"_count": 3, "Neville": {"_count": 1}, "all": {"_count": 1}, "last": {"_count": 1}}, "glimpses": {"_count": 1, "of": {"_count": 1}}, "their": {"_count": 1, "breath": {"_count": 1}}, "every": {"_count": 1, "word": {"_count": 1}}, "fire": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 2, "who": {"_count": 1}, "in": {"_count": 1}}, "noises": {"_count": 1, "outside": {"_count": 1}}, "whoevers": {"_count": 1, "doing": {"_count": 1}}, "Dumbledores": {"_count": 1, "eye": {"_count": 1}}, "on": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "Fudges": {"_count": 1, "eye": {"_count": 1}}, "Professor": {"_count": 1, "Umbridges": {"_count": 1}}, "and": {"_count": 4, "opened": {"_count": 1}, "Wormtail": {"_count": 1}, "took": {"_count": 1}, "GO": {"_count": 1}}, "hold": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "Wormtail": {"_count": 1, "gasped": {"_count": 1}}, "miscreants": {"_count": 1, "but": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "Rons": {"_count": 1, "eye": {"_count": 1}}, "her": {"_count": 1, "but": {"_count": 1}}, "Malfoy": {"_count": 1, "out": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 1, "glimpses": {"_count": 1}}, "snatches": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}}, "report": {"_count": 46, "on": {"_count": 5, "the": {"_count": 3}, "an": {"_count": 1}, "cauldron": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "home": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "it": {"_count": 1}}, "go": {"_count": 1, "Amazed": {"_count": 1}}, "that": {"_count": 2, "the": {"_count": 2}}, "this": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 3, "robbery": {"_count": 1}, "mass": {"_count": 1}, "truth": {"_count": 1}}, "it": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "continued": {"_count": 1, "in": {"_count": 1}}, "Hes": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "to": {"_count": 5, "finish": {"_count": 2}, "his": {"_count": 1}, "her": {"_count": 1}, "me": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "will": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "person": {"_count": 1}}, "anything": {"_count": 1, "about": {"_count": 1}}, "a": {"_count": 1, "word": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "held": {"_count": 1, "our": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "him": {"_count": 1, "hes": {"_count": 1}}, "back": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "inside": {"_count": 1, "while": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "those": {"_count": 1, "deaths": {"_count": 1}}}, "evening": {"_count": 191, "news": {"_count": 1, "And": {"_count": 1}}, "Dudley": {"_count": 1, "paraded": {"_count": 1}}, "when": {"_count": 10, "he": {"_count": 3}, "at": {"_count": 1}, "everyone": {"_count": 1}, "Harry": {"_count": 2}, "Ginny": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "giving": {"_count": 1, "him": {"_count": 1}}, "without": {"_count": 1, "noticing": {"_count": 1}}, "then": {"_count": 1, "youll": {"_count": 1}}, "": {"_count": 42, ".": {"_count": 38}, "?": {"_count": 2}, "!": {"_count": 2}}, "air": {"_count": 3, "had": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "after": {"_count": 6, "evening": {"_count": 2}, "training": {"_count": 1}, "Divination": {"_count": 1}, "dinner": {"_count": 1}, "Hermione": {"_count": 1}}, "they": {"_count": 2, "struggled": {"_count": 1}, "hurried": {"_count": 1}}, "to": {"_count": 6, "you": {"_count": 2}, "discuss": {"_count": 1}, "find": {"_count": 1}, "celebrate": {"_count": 1}, "continue": {"_count": 1}}, "said": {"_count": 2, "Ronan": {"_count": 1}, "the": {"_count": 1}}, "Hagrid": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "of": {"_count": 6, "Harrys": {"_count": 1}, "Marges": {"_count": 1}, "the": {"_count": 3}, "Kreachers": {"_count": 1}}, "pretending": {"_count": 1, "not": {"_count": 1}}, "at": {"_count": 4, "twelve": {"_count": 1}, "the": {"_count": 1}, "school": {"_count": 1}, "your": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "twelve": {"_count": 1}}, "dose": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "before": {"_count": 3, "Saturdays": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "activities": {"_count": 1, "": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "Lucius": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 3, "Harrys": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 5, "left": {"_count": 1}, "who": {"_count": 1}, "felt": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 5, "Harry": {"_count": 1}, "she": {"_count": 2}, "Prime": {"_count": 1}, "he": {"_count": 1}}, "because": {"_count": 2, "I": {"_count": 1}, "of": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "he": {"_count": 6, "said": {"_count": 2}, "was": {"_count": 2}, "knocked": {"_count": 1}, "worked": {"_count": 1}}, "cornering": {"_count": 1, "people": {"_count": 1}}, "dusk": {"_count": 1, "was": {"_count": 1}}, "ladies": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Ron": {"_count": 1, "skulking": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 7, "by": {"_count": 1}, "said": {"_count": 1}, "Good": {"_count": 1}, "that": {"_count": 1}, "told": {"_count": 1}, "got": {"_count": 1}, "she": {"_count": 1}}, "pumpkin": {"_count": 1, "juice": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 2, "warm": {"_count": 1}, "suddenly": {"_count": 1}}, "feast": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "map": {"_count": 1}, "last": {"_count": 1}, "hospital": {"_count": 1}}, "vandalizing": {"_count": 1, "the": {"_count": 1}}, "walks": {"_count": 1, "around": {"_count": 1}}, "sky": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 3}, "detention": {"_count": 1}}, "which": {"_count": 1, "zoomed": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "this": {"_count": 3, "week": {"_count": 2}, "would": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "wont": {"_count": 1, "we": {"_count": 1}}, "since": {"_count": 1, "Tuesday": {"_count": 1}}, "but": {"_count": 3, "Hoopers": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}}, "we": {"_count": 1, "should": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 2}}, "however": {"_count": 1, "even": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "every": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 1, "their": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}, "Horace": {"_count": 1, "said": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "passed": {"_count": 1, "amicably": {"_count": 1}}, "both": {"_count": 1, "obtained": {"_count": 1}}, "parties": {"_count": 1, "determined": {"_count": 1}}, "cocoa": {"_count": 1, "by": {"_count": 1}}, "Tom": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "Rosmerta": {"_count": 1, "good": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "Amycus": {"_count": 1, "said": {"_count": 1}}, "light": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "drew": {"_count": 2, "in": {"_count": 2}}, "using": {"_count": 1, "his": {"_count": 1}}}, "news": {"_count": 142, "And": {"_count": 1, "finally": {"_count": 1}}, "Mr": {"_count": 1, "Dursley": {"_count": 1}}, "": {"_count": 31, ".": {"_count": 24}, "!": {"_count": 4}, "?": {"_count": 3}}, "report": {"_count": 1, "about": {"_count": 1}}, "Vernon": {"_count": 2, "she": {"_count": 1}, "shh": {"_count": 1}}, "over": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 13, "he": {"_count": 2}, "Colin": {"_count": 1}, "books": {"_count": 1}, "she": {"_count": 2}, "Hagrid": {"_count": 1}, "ten": {"_count": 1}, "very": {"_count": 1}, "there": {"_count": 1}, "Snape": {"_count": 1}, "Ron": {"_count": 1}, "Ginny": {"_count": 1}}, "at": {"_count": 2, "ten": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 3, "you": {"_count": 1}, "Gryffindor": {"_count": 1}, "hearing": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "Neville": {"_count": 1, "where": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "today": {"_count": 1, "Lavender": {"_count": 1}}, "o": {"_count": 1, "You": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 11, "the": {"_count": 3}, "Sirius": {"_count": 2}, "Bertha": {"_count": 1}, "his": {"_count": 2}, "Katies": {"_count": 1}, "Dumbledore": {"_count": 2}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "werent": {"_count": 1, "you": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "Wormtail": {"_count": 1, "it": {"_count": 1}}, "about": {"_count": 10, "other": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 3}, "Voldemort": {"_count": 1}, "MadEye": {"_count": 1}, "what": {"_count": 1}}, "meant": {"_count": 1, "something": {"_count": 1}}, "comes": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 2, "blunder": {"_count": 1}, "hurt": {"_count": 1}}, "had": {"_count": 4, "come": {"_count": 1}, "long": {"_count": 1}, "been": {"_count": 1}, "traveled": {"_count": 1}}, "or": {"_count": 1, "shooting": {"_count": 1}}, "Dudley": {"_count": 1, "hasnt": {"_count": 1}}, "reached": {"_count": 1, "Harrys": {"_count": 1}}, "death": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "that": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "tosh": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 2, "those": {"_count": 1}, "other": {"_count": 1}}, "to": {"_count": 2, "me": {"_count": 1}, "you": {"_count": 1}}, "and": {"_count": 3, "that": {"_count": 1}, "must": {"_count": 1}, "you": {"_count": 1}}, "as": {"_count": 2, "Ron": {"_count": 1}, "soon": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}, "wouldnt": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 2}, "could": {"_count": 1}, "had": {"_count": 1}}, "out": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "wringing": {"_count": 1, "Harrys": {"_count": 1}}, "you": {"_count": 2, "could": {"_count": 1}, "wanted": {"_count": 1}}, "shouting": {"_count": 1, "greetings": {"_count": 1}}, "everybody": {"_count": 1, "except": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "really": {"_count": 1, "great": {"_count": 1}}, "till": {"_count": 1, "tomorrow": {"_count": 1}}, "still": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "item": {"_count": 1, "to": {"_count": 1}}, "walking": {"_count": 1, "along": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "Dumbledore": {"_count": 1, "being": {"_count": 1}}, "like": {"_count": 1, "it": {"_count": 1}}, "concerning": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 1, "creeping": {"_count": 1}}}, "finally": {"_count": 183, "birdwatchers": {"_count": 1, "everywhere": {"_count": 1}}, "stopped": {"_count": 4, "him": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}}, "thats": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 4, "might": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 2}}, "": {"_count": 17, ".": {"_count": 17}}, "gone": {"_count": 1, "too": {"_count": 1}}, "Harry": {"_count": 2, "pulled": {"_count": 1}, "": {"_count": 1}}, "tore": {"_count": 1, "his": {"_count": 1}}, "flew": {"_count": 1, "off": {"_count": 1}}, "shouted": {"_count": 1, "GRYFFINDOR": {"_count": 1}}, "I": {"_count": 1, "must": {"_count": 1}}, "managed": {"_count": 5, "to": {"_count": 5}}, "kissing": {"_count": 1, "Professor": {"_count": 1}}, "left": {"_count": 2, "the": {"_count": 1}, "stretching": {"_count": 1}}, "learned": {"_count": 1, "the": {"_count": 1}}, "let": {"_count": 2, "go": {"_count": 1}, "us": {"_count": 1}}, "killing": {"_count": 1, "one": {"_count": 1}}, "got": {"_count": 6, "bored": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}, "all": {"_count": 1}, "them": {"_count": 1}}, "fallen": {"_count": 3, "asleep": {"_count": 3}}, "went": {"_count": 3, "to": {"_count": 2}, "up": {"_count": 1}}, "became": {"_count": 1, "suspicious": {"_count": 1}}, "realized": {"_count": 4, "that": {"_count": 3}, "the": {"_count": 1}}, "lowered": {"_count": 1, "them": {"_count": 1}}, "entered": {"_count": 2, "the": {"_count": 2}}, "see": {"_count": 1, "our": {"_count": 1}}, "winning": {"_count": 2, "the": {"_count": 2}}, "forgotten": {"_count": 1, "their": {"_count": 1}}, "beaten": {"_count": 1, "broomstick": {"_count": 1}}, "taken": {"_count": 1, "off": {"_count": 1}}, "cracked": {"_count": 2, "and": {"_count": 1}, "more": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "achieved": {"_count": 2, "what": {"_count": 1}, "his": {"_count": 1}}, "Ivanova": {"_count": 1, "managed": {"_count": 1}}, "reached": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "dozed": {"_count": 1, "off": {"_count": 1}}, "with": {"_count": 1, "Whitby": {"_count": 1}}, "arriving": {"_count": 1, "at": {"_count": 1}}, "found": {"_count": 3, "a": {"_count": 1}, "out": {"_count": 1}, "at": {"_count": 1}}, "removed": {"_count": 3, "her": {"_count": 2}, "the": {"_count": 1}}, "after": {"_count": 2, "nearly": {"_count": 1}, "a": {"_count": 1}}, "only": {"_count": 1, "one": {"_count": 1}}, "regained": {"_count": 1, "the": {"_count": 1}}, "blushing": {"_count": 1, "furiously": {"_count": 1}}, "given": {"_count": 1, "up": {"_count": 1}}, "they": {"_count": 2, "say": {"_count": 1}, "reached": {"_count": 1}}, "he": {"_count": 4, "felt": {"_count": 1}, "stopped": {"_count": 1}, "was": {"_count": 1}, "saw": {"_count": 1}}, "discarded": {"_count": 1, "his": {"_count": 1}}, "rang": {"_count": 1, "they": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "feel": {"_count": 1, "it": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}, "Bungy": {"_count": 1, "the": {"_count": 1}}, "burst": {"_count": 1, "their": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 2}}, "the": {"_count": 5, "only": {"_count": 1}, "whole": {"_count": 1}, "cold": {"_count": 1}, "silvery": {"_count": 1}, "dragon": {"_count": 1}}, "over": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 4, "swallow": {"_count": 1}, "have": {"_count": 1}, "conclude": {"_count": 1}, "be": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "fixing": {"_count": 1, "the": {"_count": 1}}, "laid": {"_count": 1, "aside": {"_count": 1}}, "a": {"_count": 1, "definite": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "had": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "convinced": {"_count": 1, "Hermione": {"_count": 1}}, "losing": {"_count": 1, "patience": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "filtered": {"_count": 1, "through": {"_count": 1}}, "understanding": {"_count": 1, "what": {"_count": 1}}, "started": {"_count": 1, "work": {"_count": 1}}, "setting": {"_count": 1, "down": {"_count": 1}}, "as": {"_count": 1, "James": {"_count": 1}}, "spoken": {"_count": 1, "aloud": {"_count": 1}}, "gets": {"_count": 1, "through": {"_count": 1}}, "hitting": {"_count": 1, "him": {"_count": 1}}, "one": {"_count": 1, "by": {"_count": 1}}, "been": {"_count": 1, "overcome": {"_count": 1}}, "turning": {"_count": 1, "away": {"_count": 1}}, "puffed": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "bowed": {"_count": 1, "them": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "crammed": {"_count": 1, "into": {"_count": 1}}, "passing": {"_count": 1, "through": {"_count": 1}}, "punched": {"_count": 1, "an": {"_count": 1}}, "Hermione": {"_count": 1, "departed": {"_count": 1}}, "tracked": {"_count": 1, "her": {"_count": 1}}, "falling": {"_count": 1, "into": {"_count": 1}}, "stopping": {"_count": 1, "squarely": {"_count": 1}}, "emptied": {"_count": 1, "the": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "fell": {"_count": 1, "asleep": {"_count": 1}}, "finished": {"_count": 1, "telling": {"_count": 1}}, "pausing": {"_count": 1, "beside": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "crossed": {"_count": 1, "some": {"_count": 1}}, "this": {"_count": 1, "potion": {"_count": 1}}, "Dumbledore": {"_count": 1, "all": {"_count": 1}}, "did": {"_count": 1, "in": {"_count": 1}}, "discovered": {"_count": 1, "the": {"_count": 1}}, "landed": {"_count": 1, "in": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "Bathilda": {"_count": 1, "again": {"_count": 1}}, "walked": {"_count": 1, "to": {"_count": 1}}, "withdrawing": {"_count": 1, "a": {"_count": 1}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "extracting": {"_count": 1, "her": {"_count": 1}}, "swallowed": {"_count": 1, "Polyjuice": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "took": {"_count": 1, "off": {"_count": 1}}, "forming": {"_count": 1, "an": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "hiccuping": {"_count": 1, "herself": {"_count": 1}}, "reaching": {"_count": 1, "the": {"_count": 1}}, "meet": {"_count": 1, "the": {"_count": 1}}}, "birdwatchers": {"_count": 1, "everywhere": {"_count": 1, "have": {"_count": 1}}}, "everywhere": {"_count": 71, "have": {"_count": 1, "reported": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 24, "?": {"_count": 1}, "!": {"_count": 3}, ".": {"_count": 20}}, "and": {"_count": 6, "smirking": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "it": {"_count": 1}, "Mrs": {"_count": 1}}, "Not": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 3, "went": {"_count": 2}, "could": {"_count": 1}}, "would": {"_count": 1, "one": {"_count": 1}}, "as": {"_count": 4, "the": {"_count": 1}, "far": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "they": {"_count": 2, "went": {"_count": 1}, "finds": {"_count": 1}}, "for": {"_count": 1, "her": {"_count": 1}}, "but": {"_count": 3, "Hassan": {"_count": 1}, "at": {"_count": 2}}, "if": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 2, "go": {"_count": 2}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "she": {"_count": 1, "can": {"_count": 1}}, "footsteps": {"_count": 1, "screams": {"_count": 1}}, "Harry": {"_count": 5, "looked": {"_count": 4}, "if": {"_count": 1}}, "then": {"_count": 1, "sprang": {"_count": 1}}, "things": {"_count": 1, "that": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "as": {"_count": 1}}, "draping": {"_count": 1, "the": {"_count": 1}}, "thats": {"_count": 1, "got": {"_count": 1}}, "all": {"_count": 1, "these": {"_count": 1}}, "gangs": {"_count": 1, "trying": {"_count": 1}}, "everyones": {"_count": 1, "talking": {"_count": 1}}, "pulled": {"_count": 1, "from": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "reported": {"_count": 17, "that": {"_count": 5, "the": {"_count": 2}, "you": {"_count": 1}, "hed": {"_count": 1}, "every": {"_count": 1}}, "to": {"_count": 3, "police": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "all": {"_count": 1, "these": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "saying": {"_count": 1}}, "his": {"_count": 1, "trial": {"_count": 1}}, "in": {"_count": 2, "Bethnal": {"_count": 1}, "the": {"_count": 1}}, "sightings": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "nations": {"_count": 1, "owls": {"_count": 1, "have": {"_count": 1}}}, "behaving": {"_count": 7, "very": {"_count": 2, "unusually": {"_count": 1}, "childishly": {"_count": 1}}, "strangely": {"_count": 1, "It": {"_count": 1}}, "so": {"_count": 1, "ferociously": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}}, "unusually": {"_count": 24, "today": {"_count": 1, "": {"_count": 1}}, "grave": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "purple": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 3, "lesson": {"_count": 1}, "knowledge": {"_count": 1}, "meal": {"_count": 1}}, "still": {"_count": 1, "as": {"_count": 1}}, "quiet": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "short": {"_count": 1, "one": {"_count": 1}}, "sharp": {"_count": 1, "point": {"_count": 1}}, "shrewd": {"_count": 1, "expression": {"_count": 1}}, "thick": {"_count": 1, "wand": {"_count": 1}}, "already": {"_count": 1, "full": {"_count": 1}}, "with": {"_count": 1, "permission": {"_count": 1}}, "tired": {"_count": 1, "his": {"_count": 1}}, "large": {"_count": 1, "number": {"_count": 1}}, "talented": {"_count": 1, "and": {"_count": 1}}, "gifted": {"_count": 1, "at": {"_count": 1}}, "highpitched": {"_count": 1, "laugh": {"_count": 1}}, "high": {"_count": 1, "": {"_count": 1}}, "stern": {"_count": 1, "gaze": {"_count": 1}}}, "Although": {"_count": 19, "owls": {"_count": 1, "normally": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "consulted": {"_count": 1}}, "Hagrid": {"_count": 1, "seemed": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "Slytherin": {"_count": 1, "had": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "the": {"_count": 3, "Prophet": {"_count": 1}, "amount": {"_count": 1}, "garden": {"_count": 1}}, "Snape": {"_count": 1, "did": {"_count": 1}}, "Harry": {"_count": 4, "had": {"_count": 1}, "watched": {"_count": 1}, "much": {"_count": 1}, "was": {"_count": 1}}, "rather": {"_count": 1, "touched": {"_count": 1}}, "how": {"_count": 1, "she": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "Lupin": {"_count": 1, "smiled": {"_count": 1}}}, "hunt": {"_count": 11, "at": {"_count": 1, "night": {"_count": 1}}, "activities": {"_count": 1, "such": {"_count": 1}}, "him": {"_count": 2, "down": {"_count": 2}}, "for": {"_count": 2, "Sirius": {"_count": 1}, "the": {"_count": 1}}, "every": {"_count": 1, "night": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "then": {"_count": 1}}, "down": {"_count": 1, "my": {"_count": 1}}, "her": {"_count": 1, "down": {"_count": 1}}}, "night": {"_count": 558, "and": {"_count": 24, "are": {"_count": 1}, "somebodys": {"_count": 1}, "they": {"_count": 2}, "was": {"_count": 1}, "strode": {"_count": 1}, "wondering": {"_count": 1}, "my": {"_count": 1}, "disappearing": {"_count": 1}, "went": {"_count": 1}, "no": {"_count": 1}, "left": {"_count": 1}, "the": {"_count": 1}, "do": {"_count": 1}, "pursue": {"_count": 1}, "set": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}, "dawn": {"_count": 1}, "Master": {"_count": 1}, "Harry": {"_count": 1}, "persisted": {"_count": 1}, "put": {"_count": 1}, "Fred": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 3, "turned": {"_count": 1}, "returned": {"_count": 1}, "had": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "": {"_count": 152, ".": {"_count": 136}, "!": {"_count": 8}, "?": {"_count": 8}}, "when": {"_count": 25, "Mr": {"_count": 2}, "I": {"_count": 5}, "the": {"_count": 3}, "they": {"_count": 1}, "he": {"_count": 4}, "Hagrid": {"_count": 1}, "Harry": {"_count": 2}, "you": {"_count": 2}, "": {"_count": 1}, "Voldemort": {"_count": 1}, "Trelawney": {"_count": 1}, "her": {"_count": 1}, "she": {"_count": 1}}, "imagining": {"_count": 1, "school": {"_count": 1}}, "fell": {"_count": 2, "the": {"_count": 1}, "around": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "he": {"_count": 25, "tried": {"_count": 1}, "hadnt": {"_count": 2}, "found": {"_count": 2}, "mumbled": {"_count": 1}, "gave": {"_count": 1}, "ran": {"_count": 1}, "said": {"_count": 2}, "was": {"_count": 1}, "had": {"_count": 7}, "returned": {"_count": 1}, "died": {"_count": 1}, "heard": {"_count": 1}, "came": {"_count": 1}, "asked": {"_count": 2}, "wanted": {"_count": 1}}, "before": {"_count": 18, "and": {"_count": 3}, "he": {"_count": 3}, "term": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 2}, "last": {"_count": 1}, "his": {"_count": 1}, "we": {"_count": 1}, "sleep": {"_count": 1}, "sleeping": {"_count": 1}, "said": {"_count": 1}, "they": {"_count": 1}}, "my": {"_count": 5, "parents": {"_count": 2}, "office": {"_count": 2}, "name": {"_count": 1}}, "Hedwig": {"_count": 2, "swooping": {"_count": 1}, "he": {"_count": 1}}, "air": {"_count": 20, "": {"_count": 6}, "did": {"_count": 1}, "whipping": {"_count": 1}, "pleasant": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}, "rushed": {"_count": 1}, "on": {"_count": 1}, "their": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}, "ripped": {"_count": 1}, "trying": {"_count": 1}, "around": {"_count": 1}}, "skies": {"_count": 1, "through": {"_count": 1}}, "think": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 4, "really": {"_count": 1}, "turned": {"_count": 1}, "decided": {"_count": 1}, "fallen": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "found": {"_count": 1, "Hermione": {"_count": 1}}, "how": {"_count": 1, "dare": {"_count": 1}}, "let": {"_count": 1, "alone": {"_count": 1}}, "especially": {"_count": 1, "these": {"_count": 1}}, "theyd": {"_count": 1, "ruined": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 16, "studying": {"_count": 1}, "Halloween": {"_count": 2}, "the": {"_count": 7}, "his": {"_count": 2}, "term": {"_count": 1}, "triumph": {"_count": 1}, "Dumbledores": {"_count": 1}, "31": {"_count": 1}}, "they": {"_count": 7, "said": {"_count": 1}, "had": {"_count": 2}, "died": {"_count": 1}, "were": {"_count": 1}, "went": {"_count": 1}, "have": {"_count": 1}}, "theres": {"_count": 1, "all": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "you": {"_count": 5, "won": {"_count": 1}, "were": {"_count": 1}, "cant": {"_count": 1}, "can": {"_count": 1}, "heard": {"_count": 1}}, "Do": {"_count": 1, "I": {"_count": 1}}, "drenched": {"_count": 1, "in": {"_count": 1}}, "we": {"_count": 4, "were": {"_count": 1}, "werent": {"_count": 1}, "heard": {"_count": 1}, "came": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 10, "Ron": {"_count": 2}, "Mrs": {"_count": 1}, "Cedric": {"_count": 1}, "Moody": {"_count": 1}, "Dudley": {"_count": 1}, "Hermione": {"_count": 2}, "Dumbledore": {"_count": 1}, "Kingsley": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 2}, "added": {"_count": 1}}, "like": {"_count": 1, "I": {"_count": 1}}, "after": {"_count": 11, "dinner": {"_count": 2}, "sundown": {"_count": 1}, "wed": {"_count": 1}, "the": {"_count": 1}, "Hedwigs": {"_count": 1}, "Karkus": {"_count": 1}, "Ministry": {"_count": 1}, "theyd": {"_count": 1}, "a": {"_count": 1}, "spending": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "patrolling": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 21, "youve": {"_count": 1}, "Sirius": {"_count": 1}, "Voldemort": {"_count": 4}, "went": {"_count": 1}, "was": {"_count": 1}, "Cedric": {"_count": 1}, "suits": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 3}, "there": {"_count": 1}, "you": {"_count": 1}, "they": {"_count": 1}, "Dumbledore": {"_count": 1}, "MadEye": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "was": {"_count": 8, "a": {"_count": 1}, "ringing": {"_count": 1}, "not": {"_count": 1}, "punctuated": {"_count": 1}, "falling": {"_count": 1}, "full": {"_count": 1}, "mild": {"_count": 1}, "windless": {"_count": 1}}, "Black": {"_count": 1, "escaped": {"_count": 1}}, "Harry": {"_count": 11, "stopped": {"_count": 1}, "": {"_count": 2}, "sneaked": {"_count": 1}, "left": {"_count": 1}, "was": {"_count": 1}, "called": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "quietly": {"_count": 1}, "saw": {"_count": 1}}, "I": {"_count": 11, "left": {"_count": 1}, "see": {"_count": 1}, "got": {"_count": 1}, "still": {"_count": 1}, "lost": {"_count": 1}, "was": {"_count": 3}, "had": {"_count": 1}, "really": {"_count": 1}, "kept": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "hours": {"_count": 1, "in": {"_count": 1}}, "your": {"_count": 2, "needs": {"_count": 1}, "parents": {"_count": 1}}, "knew": {"_count": 1, "it": {"_count": 1}}, "a": {"_count": 3, "week": {"_count": 1}, "fight": {"_count": 1}, "discomfort": {"_count": 1}}, "without": {"_count": 1, "fail": {"_count": 1}}, "for": {"_count": 5, "somebody": {"_count": 1}, "stargazing": {"_count": 1}, "romance": {"_count": 1}, "security": {"_count": 1}, "it": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 3, "I": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "in": {"_count": 16, "Privet": {"_count": 1}, "August": {"_count": 1}, "question": {"_count": 2}, "the": {"_count": 6}, "whispered": {"_count": 1}, "his": {"_count": 1}, "an": {"_count": 1}, "your": {"_count": 1}, "silence": {"_count": 1}, "a": {"_count": 1}}, "first": {"_count": 1, "to": {"_count": 1}}, "Lily": {"_count": 2, "and": {"_count": 1}, "James": {"_count": 1}}, "consorting": {"_count": 1, "with": {"_count": 1}}, "Sirius": {"_count": 2, "told": {"_count": 1}, "escaped": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "the": {"_count": 3, "whole": {"_count": 1}, "Ministry": {"_count": 1}, "lights": {"_count": 1}}, "coming": {"_count": 1, "": {"_count": 1}}, "Wormtail": {"_count": 2, "escaped": {"_count": 1}, "had": {"_count": 1}}, "to": {"_count": 7, "do": {"_count": 1}, "you": {"_count": 2}, "Krum": {"_count": 1}, "them": {"_count": 1}, "relate": {"_count": 1}, "patrol": {"_count": 1}}, "Halloween": {"_count": 1, "the": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "Snapes": {"_count": 1, "dungeon": {"_count": 1}}, "flickering": {"_count": 1, "in": {"_count": 1}}, "then": {"_count": 2, "Hagrid": {"_count": 1}, "said": {"_count": 1}}, "He": {"_count": 3, "grinned": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}}, "once": {"_count": 1, "before": {"_count": 1}}, "explaining": {"_count": 1, "all": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "about": {"_count": 1, "Mr": {"_count": 1}}, "talking": {"_count": 1, "it": {"_count": 1}}, "Avada": {"_count": 1, "KedavraV": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "Hes": {"_count": 1, "dead": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "because": {"_count": 2, "we": {"_count": 1}, "even": {"_count": 1}}, "Record": {"_count": 1, "numbers": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "Diddykins": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 3, "it": {"_count": 1}, "they": {"_count": 2}}, "sounds": {"_count": 1, "through": {"_count": 1}}, "grunted": {"_count": 1, "Moody": {"_count": 1}}, "Ron": {"_count": 1, "explained": {"_count": 1}}, "by": {"_count": 1, "Tonks": {"_count": 1}}, "duty": {"_count": 1, "tomorrow": {"_count": 1}}, "mark": {"_count": 1, "you": {"_count": 1}}, "retorted": {"_count": 1, "Ron": {"_count": 1}}, "cutting": {"_count": 1, "open": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "whenever": {"_count": 1, "you": {"_count": 1}}, "his": {"_count": 1, "hand": {"_count": 1}}, "breeze": {"_count": 2, "rattled": {"_count": 1}, "": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "it": {"_count": 3, "all": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}}, "an": {"_count": 1, "see": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "this": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "dreams": {"_count": 1, "that": {"_count": 1}}, "sky": {"_count": 1, "": {"_count": 1}}, "daringly": {"_count": 1, "Fred": {"_count": 1}}, "mist": {"_count": 1, "was": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "barely": {"_count": 1, "flapping": {"_count": 1}}, "sixteen": {"_count": 1, "years": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "instead": {"_count": 1, "said": {"_count": 1}}, "very": {"_count": 1, "like": {"_count": 1}}, "has": {"_count": 1, "fallen": {"_count": 1}}, "everyone": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 1, "on": {"_count": 1}}, "Merope": {"_count": 1, "shook": {"_count": 1}}, "sir": {"_count": 2, "": {"_count": 2}}, "theyre": {"_count": 1, "getting": {"_count": 1}}, "getting": {"_count": 1, "yourself": {"_count": 1}}, "merely": {"_count": 1, "to": {"_count": 1}}, "sad": {"_count": 1, "night": {"_count": 1}}, "probably": {"_count": 1, "as": {"_count": 1}}, "thinking": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "died": {"_count": 1}}, "gazing": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "watches": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "cold": {"_count": 1}}, "wet": {"_count": 1, "and": {"_count": 1}}, "reached": {"_count": 1, "such": {"_count": 1}}, "which": {"_count": 2, "Hermione": {"_count": 1}, "is": {"_count": 1}}, "another": {"_count": 1, "wizard": {"_count": 1}}, "Greyback": {"_count": 1, "was": {"_count": 1}}, "flying": {"_count": 1, "straight": {"_count": 1}}, "many": {"_count": 1, "times": {"_count": 1}}, "is": {"_count": 1, "out": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}}, "are": {"_count": 1839, "hardly": {"_count": 3, "ever": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "being": {"_count": 9, "downright": {"_count": 1}, "noble": {"_count": 1}, "monitored": {"_count": 2}, "deliberately": {"_count": 1}, "checked": {"_count": 1}, "incautious": {"_count": 1}, "watched": {"_count": 1}, "rounded": {"_count": 1}}, "nothing": {"_count": 5, "next": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}, "nothing": {"_count": 1}, "to": {"_count": 1}}, "flying": {"_count": 2, "around": {"_count": 1}, "every": {"_count": 1}}, "are": {"_count": 2, "that": {"_count": 1}, "you": {"_count": 1}}, "that": {"_count": 2, "theyre": {"_count": 1}, "good": {"_count": 1}}, "less": {"_count": 1, "like": {"_count": 1}}, "you": {"_count": 340, "doing": {"_count": 50}, "": {"_count": 82}, "going": {"_count": 29}, "a": {"_count": 1}, "all": {"_count": 12}, "getting": {"_count": 5}, "supposed": {"_count": 2}, "talking": {"_count": 26}, "looking": {"_count": 2}, "studying": {"_count": 1}, "three": {"_count": 2}, "warning": {"_count": 1}, "starting": {"_count": 1}, "my": {"_count": 2}, "Myrtle": {"_count": 1}, "whispering": {"_count": 1}, "ripping": {"_count": 1}, "okay": {"_count": 5}, "carrying": {"_count": 1}, "saying": {"_count": 6}, "in": {"_count": 1}, "tutting": {"_count": 1}, "up": {"_count": 3}, "two": {"_count": 6}, "sure": {"_count": 8}, "working": {"_count": 1}, "calling": {"_count": 1}, "Potter": {"_count": 2}, "on": {"_count": 3}, "wanting": {"_count": 1}, "feeling": {"_count": 3}, "telling": {"_count": 2}, "best": {"_count": 1}, "dont": {"_count": 1}, "helped": {"_count": 1}, "disturbing": {"_count": 1}, "Dumbledore": {"_count": 1}, "Severus": {"_count": 1}, "Dud": {"_count": 1}, "ddoing": {"_count": 1}, "ddo": {"_count": 1}, "waiting": {"_count": 1}, "ready": {"_count": 1}, "asking": {"_count": 1}, "still": {"_count": 3}, "shouting": {"_count": 1}, "hiding": {"_count": 1}, "good": {"_count": 1}, "down": {"_count": 1}, "planning": {"_count": 2}, "out": {"_count": 2}, "to": {"_count": 2}, "organizing": {"_count": 1}, "meeting": {"_count": 2}, "Hagrid": {"_count": 1}, "Arthur": {"_count": 1}, "Professor": {"_count": 1}, "leaving": {"_count": 1}, "afraid": {"_count": 1}, "so": {"_count": 7}, "not": {"_count": 2}, "whats": {"_count": 2}, "shaking": {"_count": 1}, "Wormtail": {"_count": 1}, "quite": {"_count": 1}, "armed": {"_count": 1}, "human": {"_count": 2}, "grinning": {"_count": 1}, "attacking": {"_count": 1}, "yelling": {"_count": 1}, "there": {"_count": 1}, "here": {"_count": 2}, "ever": {"_count": 1}, "have": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "staring": {"_count": 1}, "both": {"_count": 1}, "trying": {"_count": 1}, "then": {"_count": 1}, "using": {"_count": 2}, "the": {"_count": 1}, "soaking": {"_count": 1}, "mean": {"_count": 1}, "acting": {"_count": 1}, "playing": {"_count": 1}, "today": {"_count": 1}, "compared": {"_count": 1}, "girly": {"_count": 1}, "making": {"_count": 1}, "heading": {"_count": 1}, "tempted": {"_count": 1}}, "breaking": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 72, ".": {"_count": 50}, "?": {"_count": 11}, "!": {"_count": 11}}, "pleased": {"_count": 2, "to": {"_count": 2}}, "still": {"_count": 23, "scared": {"_count": 1}, "very": {"_count": 1}, "working": {"_count": 1}, "plenty": {"_count": 1}, "searching": {"_count": 1}, "hungry": {"_count": 1}, "at": {"_count": 2}, "well": {"_count": 1}, "united": {"_count": 1}, "ready": {"_count": 1}, "here": {"_count": 1}, "worried": {"_count": 1}, "among": {"_count": 1}, "seeing": {"_count": 1}, "a": {"_count": 2}, "hazy": {"_count": 1}, "gettin": {"_count": 1}, "intact": {"_count": 1}, "too": {"_count": 1}, "four": {"_count": 1}, "missing": {"_count": 1}}, "dragons": {"_count": 1, "at": {"_count": 1}}, "Galleons": {"_count": 1, "he": {"_count": 1}}, "your": {"_count": 6, "parents": {"_count": 1}, "brothers": {"_count": 1}, "family": {"_count": 1}, "manners": {"_count": 1}, "views": {"_count": 1}, "legs": {"_count": 1}}, "wizardin": {"_count": 1, "folk": {"_count": 1}}, "Slytherin": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 36, "lot": {"_count": 3}, "bit": {"_count": 4}, "natural": {"_count": 1}, "few": {"_count": 2}, "little": {"_count": 2}, "Hogwarts": {"_count": 1}, "girl": {"_count": 1}, "WickEd": {"_count": 1}, "git": {"_count": 1}, "number": {"_count": 1}, "couple": {"_count": 4}, "sort": {"_count": 1}, "greatgreatgranddaughter": {"_count": 1}, "prefect": {"_count": 1}, "friend": {"_count": 1}, "race": {"_count": 1}, "wizard": {"_count": 1}, "symbol": {"_count": 1}, "liar": {"_count": 1}, "dozen": {"_count": 1}, "very": {"_count": 1}, "clever": {"_count": 1}, "witch": {"_count": 1}, "braver": {"_count": 1}, "remarkably": {"_count": 1}, "pureblood": {"_count": 1}}, "the": {"_count": 52, "same": {"_count": 3}, "Bludgers": {"_count": 1}, "best": {"_count": 3}, "first": {"_count": 2}, "Potter": {"_count": 1}, "Gryffindor": {"_count": 1}, "other": {"_count": 1}, "Ministry": {"_count": 1}, "more": {"_count": 1}, "flobberworms": {"_count": 1}, "Gryffindors": {"_count": 1}, "strongest": {"_count": 1}, "judges": {"_count": 1}, "skrewts": {"_count": 1}, "only": {"_count": 5}, "limit": {"_count": 1}, "properties": {"_count": 1}, "odds": {"_count": 1}, "most": {"_count": 1}, "others": {"_count": 2}, "Dark": {"_count": 1}, "rightful": {"_count": 1}, "kind": {"_count": 1}, "one": {"_count": 2}, "three": {"_count": 1}, "Chosen": {"_count": 1}, "records": {"_count": 1}, "real": {"_count": 1}, "tokens": {"_count": 1}, "thoughts": {"_count": 1}, "Wrackspurt": {"_count": 1}, "Deathly": {"_count": 2}, "Peverells": {"_count": 1}, "ones": {"_count": 2}, "guardians": {"_count": 1}, "Carrows": {"_count": 1}, "better": {"_count": 1}, "worthy": {"_count": 1}, "true": {"_count": 1}}, "quite": {"_count": 9, "the": {"_count": 1}, "unusual": {"_count": 1}, "sure": {"_count": 1}, "right": {"_count": 3}, "wrong": {"_count": 1}, "alone": {"_count": 1}, "": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 40, "like": {"_count": 1}, "": {"_count": 13}, "for": {"_count": 3}, "just": {"_count": 1}, "all": {"_count": 3}, "changing": {"_count": 1}, "doing": {"_count": 1}, "sleeping": {"_count": 1}, "going": {"_count": 3}, "looking": {"_count": 1}, "shouting": {"_count": 1}, "arguing": {"_count": 1}, "expecting": {"_count": 2}, "supposed": {"_count": 2}, "Hagrid": {"_count": 1}, "still": {"_count": 1}, "now": {"_count": 1}, "getting": {"_count": 1}, "bothering": {"_count": 1}, "protected": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 6, "": {"_count": 1}, "that": {"_count": 1}, "fascinating": {"_count": 1}, "books": {"_count": 1}, "jinxes": {"_count": 1}, "Carrows": {"_count": 1}}, "much": {"_count": 2, "better": {"_count": 1}, "more": {"_count": 1}}, "for": {"_count": 2, "myself": {"_count": 1}, "people": {"_count": 1}}, "behaving": {"_count": 1, "very": {"_count": 1}}, "here": {"_count": 17, "your": {"_count": 1}, "to": {"_count": 4}, "on": {"_count": 1}, "": {"_count": 5}, "our": {"_count": 1}, "he": {"_count": 1}, "dont": {"_count": 1}, "Potter": {"_count": 1}, "too": {"_count": 1}, "As": {"_count": 1}}, "called": {"_count": 4, "Gryffindor": {"_count": 1}, "Chasers": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 7, "Hogwarts": {"_count": 1}, "the": {"_count": 1}, "least": {"_count": 1}, "their": {"_count": 1}, "home": {"_count": 1}, "an": {"_count": 1}, "peace": {"_count": 1}}, "waiting": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "ready": {"_count": 7, "for": {"_count": 3}, "you": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "we": {"_count": 1}}, "just": {"_count": 6, "and": {"_count": 1}, "like": {"_count": 1}, "a": {"_count": 1}, "waiting": {"_count": 1}, "people": {"_count": 1}, "walking": {"_count": 1}}, "true": {"_count": 3, "And": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 1}}, "Nitwit": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 26, "fed": {"_count": 2}, "crumpled": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "kinds": {"_count": 1}, "safe": {"_count": 1}, "right": {"_count": 1}, "studying": {"_count": 1}, "packed": {"_count": 1}, "sorts": {"_count": 1}, "colluding": {"_count": 1}, "agreed": {"_count": 1}, "protective": {"_count": 1}, "these": {"_count": 3}, "determined": {"_count": 1}, "facing": {"_count": 1}, "those": {"_count": 1}, "interrelated": {"_count": 1}, "digesting": {"_count": 1}, "aware": {"_count": 1}, "down": {"_count": 1}, "familiar": {"_count": 1}, "supposed": {"_count": 1}}, "or": {"_count": 1, "youll": {"_count": 1}}, "not": {"_count": 58, "": {"_count": 1}, "to": {"_count": 7}, "strong": {"_count": 1}, "permitted": {"_count": 3}, "in": {"_count": 3}, "a": {"_count": 4}, "baseless": {"_count": 1}, "yet": {"_count": 1}, "going": {"_count": 4}, "enjoying": {"_count": 1}, "Siriuss": {"_count": 1}, "playing": {"_count": 1}, "as": {"_count": 1}, "your": {"_count": 1}, "figments": {"_count": 1}, "qualified": {"_count": 1}, "discussing": {"_count": 1}, "etched": {"_count": 1}, "trying": {"_count": 1}, "working": {"_count": 1}, "the": {"_count": 3}, "aware": {"_count": 1}, "yours": {"_count": 1}, "so": {"_count": 2}, "all": {"_count": 1}, "welcome": {"_count": 1}, "unintell": {"_count": 1}, "nearly": {"_count": 1}, "usually": {"_count": 1}, "his": {"_count": 1}, "being": {"_count": 1}, "mad": {"_count": 1}, "too": {"_count": 1}, "tired": {"_count": 1}, "Lord": {"_count": 1}, "leaving": {"_count": 1}, "widely": {"_count": 1}, "used": {"_count": 1}, "dead": {"_count": 1}}, "seven": {"_count": 3, "players": {"_count": 1}, "in": {"_count": 1}, "secret": {"_count": 1}}, "ours": {"_count": 1, "its": {"_count": 1}}, "more": {"_count": 12, "than": {"_count": 2}, "important": {"_count": 2}, "of": {"_count": 4}, "": {"_count": 1}, "kindly": {"_count": 1}, "in": {"_count": 1}, "wizards": {"_count": 1}}, "finishing": {"_count": 1, "the": {"_count": 1}}, "some": {"_count": 4, "things": {"_count": 1}, "other": {"_count": 1}, "wizards": {"_count": 1}, "injuries": {"_count": 1}}, "saints": {"_count": 1, "or": {"_count": 1}}, "always": {"_count": 6, "the": {"_count": 1}, "so": {"_count": 1}, "on": {"_count": 1}, "put": {"_count": 1}, "astonished": {"_count": 1}, "trying": {"_count": 1}}, "ahead": {"_count": 1, "come": {"_count": 1}}, "loads": {"_count": 3, "of": {"_count": 2}, "more": {"_count": 1}}, "dead": {"_count": 4, "let": {"_count": 1}, "bodies": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}}, "wandering": {"_count": 1, "around": {"_count": 1}}, "other": {"_count": 6, "things": {"_count": 1}, "benefits": {"_count": 1}, "ways": {"_count": 4}}, "ages": {"_count": 2, "away": {"_count": 2}}, "yeh": {"_count": 8, "": {"_count": 6}, "Magorian": {"_count": 1}, "that": {"_count": 1}}, "said": {"_count": 20, "Ron": {"_count": 5}, "the": {"_count": 2}, "Mr": {"_count": 3}, "Dumbledore": {"_count": 2}, "Sirius": {"_count": 1}, "Hermione": {"_count": 1}, "Mrs": {"_count": 1}, "Harry": {"_count": 2}, "Hagrid": {"_count": 1}, "Dedalus": {"_count": 1}, "Snape": {"_count": 1}}, "we": {"_count": 75, "going": {"_count": 27}, "Ern": {"_count": 1}, "": {"_count": 17}, "supposed": {"_count": 8}, "carrying": {"_count": 1}, "doing": {"_count": 6}, "in": {"_count": 1}, "walking": {"_count": 1}, "now": {"_count": 1}, "not": {"_count": 1}, "all": {"_count": 2}, "agreed": {"_count": 1}, "on": {"_count": 1}, "talking": {"_count": 1}, "burying": {"_count": 1}, "here": {"_count": 1}, "sure": {"_count": 1}, "losing": {"_count": 1}, "allowed": {"_count": 1}, "exactly": {"_count": 1}}, "coming": {"_count": 8, "to": {"_count": 1}, "aboard": {"_count": 1}, "Potter": {"_count": 1}, "Macnairs": {"_count": 1}, "from": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 2}}, "in": {"_count": 28, "trouble": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 2}, "no": {"_count": 1}, "hiding": {"_count": 1}, "here": {"_count": 1}, "their": {"_count": 1}, "good": {"_count": 1}, "luck": {"_count": 1}, "this": {"_count": 1}, "agreement": {"_count": 1}, "grave": {"_count": 1}, "denial": {"_count": 1}, "my": {"_count": 2}, "uproar": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 3}, "alphabetical": {"_count": 1}, "danger": {"_count": 1}, "": {"_count": 2}, "goblin": {"_count": 1}, "Kings": {"_count": 1}}, "if": {"_count": 1, "yeh": {"_count": 1}}, "well": {"_count": 3, "": {"_count": 1}, "Yours": {"_count": 1}, "enough": {"_count": 1}}, "sworn": {"_count": 1, "not": {"_count": 1}}, "concerned": {"_count": 1, "with": {"_count": 1}}, "an": {"_count": 8, "inch": {"_count": 1}, "awful": {"_count": 2}, "insolent": {"_count": 1}, "unregistered": {"_count": 1}, "excellent": {"_count": 1}, "ancient": {"_count": 1}, "unusual": {"_count": 1}}, "safe": {"_count": 3, "now": {"_count": 1}, "ere": {"_count": 1}, "the": {"_count": 1}}, "right": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "Potter": {"_count": 1}}, "expelled": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "Harry": {"_count": 11, "said": {"_count": 3}, "what": {"_count": 1}, "dear": {"_count": 1}, "James": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}, "chosen": {"_count": 1}, "right": {"_count": 1}}, "hundreds": {"_count": 2, "of": {"_count": 1}, "maybe": {"_count": 1}}, "killers": {"_count": 1, "waiting": {"_count": 1}}, "those": {"_count": 9, "who": {"_count": 2}, "wholl": {"_count": 1}, "things": {"_count": 1}, "horse": {"_count": 1}, "ropes": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "different": {"_count": 2, "size": {"_count": 1}, "er": {"_count": 1}}, "poison": {"_count": 1, "two": {"_count": 1}}, "wine": {"_count": 1, "one": {"_count": 1}}, "sure": {"_count": 3, "which": {"_count": 1}, "it": {"_count": 1}, "of": {"_count": 1}}, "worst": {"_count": 1, "for": {"_count": 1}}, "older": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 17, "be": {"_count": 2}, "happen": {"_count": 1}, "make": {"_count": 1}, "have": {"_count": 1}, "secure": {"_count": 1}, "take": {"_count": 1}, "go": {"_count": 1}, "alert": {"_count": 1}, "give": {"_count": 1}, "rid": {"_count": 1}, "attack": {"_count": 1}, "please": {"_count": 1}, "create": {"_count": 1}, "leave": {"_count": 1}, "finding": {"_count": 1}, "save": {"_count": 1}}, "powers": {"_count": 1, "Dumbledore": {"_count": 1}}, "Muggle": {"_count": 1, "made": {"_count": 1}}, "gnomes": {"_count": 1, "said": {"_count": 1}}, "really": {"_count": 5, "expensive": {"_count": 1}, "rare": {"_count": 1}, "important": {"_count": 1}, "gravy": {"_count": 1}, "dangerous": {"_count": 1}}, "going": {"_count": 23, "to": {"_count": 18}, "out": {"_count": 2}, "": {"_count": 1}, "so": {"_count": 1}, "your": {"_count": 1}}, "rumors": {"_count": 1, "about": {"_count": 1}}, "good": {"_count": 4, "said": {"_count": 1}, "things": {"_count": 1}, "an": {"_count": 1}, "and": {"_count": 1}}, "worth": {"_count": 1, "the": {"_count": 1}}, "allowed": {"_count": 8, "to": {"_count": 8}}, "airplanes": {"_count": 1, "said": {"_count": 1}}, "therefore": {"_count": 3, "her": {"_count": 1}, "much": {"_count": 2}}, "now": {"_count": 16, "": {"_count": 2}, "we": {"_count": 1}, "said": {"_count": 1}, "entering": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "Watch": {"_count": 1}, "nearly": {"_count": 1}, "reaping": {"_count": 1}, "Malfoys": {"_count": 1}, "give": {"_count": 1}, "deemed": {"_count": 1}, "even": {"_count": 1}, "extinct": {"_count": 1}}, "completely": {"_count": 4, "covered": {"_count": 1}, "unaware": {"_count": 1}, "But": {"_count": 1}, "blocked": {"_count": 1}}, "only": {"_count": 5, "seedlings": {"_count": 1}, "two": {"_count": 2}, "as": {"_count": 2}}, "securely": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 13, "course": {"_count": 5}, "age": {"_count": 3}, "the": {"_count": 1}, "predicting": {"_count": 1}, "no": {"_count": 1}, "one": {"_count": 1}, "Wizard": {"_count": 1}}, "four": {"_count": 1, "balls": {"_count": 1}}, "two": {"_count": 2, "Beaters": {"_count": 1}, "fifthyear": {"_count": 1}}, "halfblood": {"_count": 1, "anyway": {"_count": 1}}, "Potter": {"_count": 4, "Weasley": {"_count": 1}, "Snape": {"_count": 1}, "": {"_count": 2}}, "named": {"_count": 1, "after": {"_count": 1}}, "thoroughly": {"_count": 1, "overexcited": {"_count": 1}}, "scum": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 11, "longer": {"_count": 3}, "nearer": {"_count": 1}, "son": {"_count": 1}, "dementors": {"_count": 1}, "footsteps": {"_count": 1}, "portraits": {"_count": 1}, "Wizarding": {"_count": 1}, "trains": {"_count": 1}, "more": {"_count": 1}}, "perhaps": {"_count": 2, "happening": {"_count": 1}, "most": {"_count": 1}}, "planned": {"_count": 1, "in": {"_count": 1}}, "holding": {"_count": 3, "our": {"_count": 1}, "out": {"_count": 1}, "your": {"_count": 1}}, "reborn": {"_count": 1, "from": {"_count": 1}}, "theyre": {"_count": 2, "bound": {"_count": 1}, "titchy": {"_count": 1}}, "Ron": {"_count": 5, "pointed": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 2}}, "he": {"_count": 6, "drawled": {"_count": 1}, "said": {"_count": 5}}, "But": {"_count": 2, "Moaning": {"_count": 1}, "they": {"_count": 1}}, "as": {"_count": 5, "green": {"_count": 2}, "follows": {"_count": 1}, "bad": {"_count": 2}}, "Muggleborn": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 8, "your": {"_count": 1}, "in": {"_count": 1}, "leaving": {"_count": 1}, "covered": {"_count": 1}, "going": {"_count": 1}, "standing": {"_count": 1}, "hurt": {"_count": 1}, "ill": {"_count": 1}}, "loyal": {"_count": 3, "to": {"_count": 3}}, "back": {"_count": 1, "on": {"_count": 1}}, "necessary": {"_count": 1, "": {"_count": 1}}, "nearly": {"_count": 2, "ready": {"_count": 1}, "there": {"_count": 1}}, "most": {"_count": 4, "wondrous": {"_count": 1}, "worthy": {"_count": 1}, "heavily": {"_count": 1}, "honored": {"_count": 1}}, "fixed": {"_count": 1, "with": {"_count": 1}}, "rooster": {"_count": 1, "feathers": {"_count": 1}}, "strange": {"_count": 1, "likenesses": {"_count": 1}}, "far": {"_count": 2, "more": {"_count": 1}, "far": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "bottle": {"_count": 1}}, "traced": {"_count": 1, "back": {"_count": 1}}, "treating": {"_count": 1, "you": {"_count": 1}}, "permitted": {"_count": 2, "to": {"_count": 2}}, "doing": {"_count": 8, "all": {"_count": 1}, "everything": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "least": {"_count": 1}, "at": {"_count": 1}, "Professor": {"_count": 1}}, "eh": {"_count": 1, "Neville": {"_count": 1}}, "extremely": {"_count": 3, "angry": {"_count": 1}, "hard": {"_count": 1}, "difficult": {"_count": 1}}, "prepared": {"_count": 4, "to": {"_count": 3}, "": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "angrier": {"_count": 1, "than": {"_count": 1}}, "rules": {"_count": 1, "said": {"_count": 1}}, "my": {"_count": 2, "books": {"_count": 1}, "children": {"_count": 1}}, "Muggles": {"_count": 2, "": {"_count": 1}, "mate": {"_count": 1}}, "like": {"_count": 3, "wandering": {"_count": 1}, "uge": {"_count": 1}, "animals": {"_count": 1}}, "so": {"_count": 11, "many": {"_count": 2}, "few": {"_count": 1}, "mistrusted": {"_count": 1}, "stupid": {"_count": 1}, "easy": {"_count": 1}, "tactless": {"_count": 1}, "infernally": {"_count": 1}, "sweetly": {"_count": 1}, "often": {"_count": 1}, "like": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 2}, "they": {"_count": 1}}, "already": {"_count": 2, "delicate": {"_count": 1}, "facing": {"_count": 1}}, "stationed": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 4, "us": {"_count": 2}, "Professor": {"_count": 1}, "me": {"_count": 1}}, "yet": {"_count": 1, "unable": {"_count": 1}}, "dreading": {"_count": 2, "it": {"_count": 1}, "something": {"_count": 1}}, "very": {"_count": 16, "rare": {"_count": 1}, "rarely": {"_count": 1}, "strong": {"_count": 1}, "fortunate": {"_count": 1}, "near": {"_count": 1}, "pleased": {"_count": 1}, "sharp": {"_count": 1}, "interesting": {"_count": 1}, "amusing": {"_count": 1}, "kind": {"_count": 2}, "unfortunate": {"_count": 1}, "lucky": {"_count": 1}, "nearly": {"_count": 1}, "few": {"_count": 1}, "famous": {"_count": 1}}, "then": {"_count": 5, "said": {"_count": 3}, "Potter": {"_count": 1}, "here": {"_count": 1}}, "up": {"_count": 4, "to": {"_count": 3}, "said": {"_count": 1}}, "easily": {"_count": 1, "satisfied": {"_count": 1}}, "plenty": {"_count": 3, "of": {"_count": 3}}, "horrors": {"_count": 1, "in": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "supposed": {"_count": 11, "to": {"_count": 11}}, "certain": {"_count": 2, "defenses": {"_count": 1}, "that": {"_count": 1}}, "proud": {"_count": 1, "to": {"_count": 1}}, "reminded": {"_count": 1, "that": {"_count": 1}}, "aware": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "concentrating": {"_count": 2, "with": {"_count": 1}, "on": {"_count": 1}}, "Professor": {"_count": 1, "just": {"_count": 1}}, "sealed": {"_count": 1, "shut": {"_count": 1}}, "lucky": {"_count": 2, "some": {"_count": 1}, "": {"_count": 1}}, "disturbing": {"_count": 1, "the": {"_count": 1}}, "parts": {"_count": 1, "of": {"_count": 1}}, "outofbounds": {"_count": 1, "in": {"_count": 1}}, "millions": {"_count": 1, "of": {"_count": 1}}, "old": {"_count": 2, "friends": {"_count": 1}, "hat": {"_count": 1}}, "walking": {"_count": 1, "down": {"_count": 1}}, "truly": {"_count": 1, "your": {"_count": 1}}, "saying": {"_count": 4, "": {"_count": 2}, "zat": {"_count": 1}, "said": {"_count": 1}}, "suggesting": {"_count": 1, "that": {"_count": 1}}, "able": {"_count": 5, "to": {"_count": 4}, "under": {"_count": 1}}, "pouring": {"_count": 1, "into": {"_count": 1}}, "regretting": {"_count": 1, "that": {"_count": 1}}, "terrified": {"_count": 3, "you": {"_count": 2}, "Mr": {"_count": 1}}, "Diddy": {"_count": 1, "darling": {"_count": 1}}, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}, "setting": {"_count": 2, "up": {"_count": 1}, "too": {"_count": 1}}, "places": {"_count": 1, "Muggles": {"_count": 1}}, "used": {"_count": 2, "to": {"_count": 2}}, "Portkeys": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 6, "": {"_count": 2}, "they": {"_count": 1}, "to": {"_count": 1}, "any": {"_count": 1}, "are": {"_count": 1}}, "look": {"_count": 1, "this": {"_count": 1}}, "others": {"_count": 1, "": {"_count": 1}}, "insisting": {"_count": 1, "we": {"_count": 1}}, "defined": {"_count": 1, "as": {"_count": 1}}, "Ludo": {"_count": 1, "said": {"_count": 1}}, "veel": {"_count": 1, "": {"_count": 1}}, "happy": {"_count": 1, "arent": {"_count": 1}}, "okay": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "least": {"_count": 1, "likely": {"_count": 1}}, "familiar": {"_count": 2, "with": {"_count": 2}}, "Death": {"_count": 4, "Eaters": {"_count": 4}}, "on": {"_count": 15, "the": {"_count": 7}, "their": {"_count": 3}, "Friday": {"_count": 1}, "probation": {"_count": 1}, "holiday": {"_count": 1}, "Voldemorts": {"_count": 1}, "You": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 3}}, "exploding": {"_count": 1, "dustbins": {"_count": 1}}, "full": {"_count": 2, "because": {"_count": 1}, "of": {"_count": 1}}, "houseelves": {"_count": 1, "here": {"_count": 1}}, "under": {"_count": 3, "seventeen": {"_count": 1}, "Dumbledores": {"_count": 1}, "the": {"_count": 1}}, "better": {"_count": 3, "ways": {"_count": 1}, "appreciated": {"_count": 1}, "than": {"_count": 1}}, "small": {"_count": 1, "said": {"_count": 1}}, "preoccupied": {"_count": 1, "my": {"_count": 1}}, "known": {"_count": 2, "as": {"_count": 2}}, "drawing": {"_count": 1, "closer": {"_count": 1}}, "chosen": {"_count": 1, "but": {"_count": 1}}, "changed": {"_count": 1, "your": {"_count": 1}}, "unpaid": {"_count": 1, "and": {"_count": 1}}, "wholeheartedly": {"_count": 1, "prepared": {"_count": 1}}, "sleeping": {"_count": 1, "did": {"_count": 1}}, "talking": {"_count": 6, "about": {"_count": 6}}, "our": {"_count": 3, "er": {"_count": 1}, "natural": {"_count": 1}, "laws": {"_count": 1}}, "bound": {"_count": 2, "to": {"_count": 2}}, "exempted": {"_count": 1, "from": {"_count": 1}}, "fully": {"_count": 1, "functional": {"_count": 1}}, "about": {"_count": 6, "to": {"_count": 6}}, "alone": {"_count": 3, "by": {"_count": 1}, "again": {"_count": 1}, "arent": {"_count": 1}}, "taking": {"_count": 5, "me": {"_count": 1}, "orders": {"_count": 2}, "Remedial": {"_count": 1}, "advantage": {"_count": 1}}, "things": {"_count": 5, "I": {"_count": 1}, "worth": {"_count": 1}, "much": {"_count": 1}, "wizards": {"_count": 1}, "at": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "strong": {"_count": 1, "and": {"_count": 1}}, "Switching": {"_count": 1, "Spells": {"_count": 1}}, "judges": {"_count": 1, "in": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "its": {"_count": 1, "weakest": {"_count": 1}}, "Dobbys": {"_count": 1, "favorite": {"_count": 1}}, "lit": {"_count": 1, "only": {"_count": 1}}, "currently": {"_count": 5, "unknown": {"_count": 1}, "rubbing": {"_count": 1}, "recruiting": {"_count": 1}, "taking": {"_count": 1}, "making": {"_count": 1}}, "any": {"_count": 4, "guide": {"_count": 1}, "concern": {"_count": 1}, "of": {"_count": 1}, "wizard": {"_count": 1}}, "spots": {"_count": 1, "that": {"_count": 1}}, "getting": {"_count": 4, "fishier": {"_count": 1}, "taller": {"_count": 1}, "back": {"_count": 1}, "stuff": {"_count": 1}}, "dying": {"_count": 2, "too": {"_count": 1}, "I": {"_count": 1}}, "Moody": {"_count": 1, "and": {"_count": 1}}, "playing": {"_count": 3, "Harry": {"_count": 1}, "at": {"_count": 2}}, "leading": {"_count": 1, "on": {"_count": 1}}, "attending": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "prejudiced": {"_count": 1, "Cornelius": {"_count": 1}}, "over": {"_count": 2, "you": {"_count": 1}, "age": {"_count": 1}}, "further": {"_count": 1, "accused": {"_count": 1}}, "connected": {"_count": 1, "by": {"_count": 1}}, "insane": {"_count": 1, "": {"_count": 1}}, "often": {"_count": 1, "used": {"_count": 1}}, "historically": {"_count": 1, "associated": {"_count": 1}}, "congregating": {"_count": 1, "in": {"_count": 1}}, "invited": {"_count": 1, "to": {"_count": 1}}, "merciful": {"_count": 1, "thank": {"_count": 1}}, "entombed": {"_count": 1, "in": {"_count": 1}}, "tired": {"_count": 1, "of": {"_count": 1}}, "blind": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 2, "and": {"_count": 1}, "Gaunt": {"_count": 1}}, "er": {"_count": 1, "prepared": {"_count": 1}}, "referring": {"_count": 1, "to": {"_count": 1}}, "merely": {"_count": 2, "repeating": {"_count": 1}, "drifting": {"_count": 1}}, "standing": {"_count": 3, "guard": {"_count": 2}, "by": {"_count": 1}}, "blinded": {"_count": 1, "said": {"_count": 1}}, "against": {"_count": 1, "him": {"_count": 1}}, "united": {"_count": 1, "as": {"_count": 1}}, "divided": {"_count": 1, "": {"_count": 1}}, "identical": {"_count": 1, "and": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "exactly": {"_count": 1, "like": {"_count": 1}}, "dementors": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "leaving": {"_count": 1, "arent": {"_count": 1}}, "upstairs": {"_count": 1, "you": {"_count": 1}}, "following": {"_count": 3, "known": {"_count": 1}, "the": {"_count": 1}, "YouKnow": {"_count": 1}}, "working": {"_count": 1, "on": {"_count": 1}}, "compensations": {"_count": 1, "": {"_count": 1}}, "filthy": {"_count": 1, "what": {"_count": 1}}, "dangers": {"_count": 1, "involved": {"_count": 1}}, "Sirius": {"_count": 1, "said": {"_count": 1}}, "poisonous": {"_count": 1, "": {"_count": 1}}, "Skiving": {"_count": 1, "Snackboxes": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "letting": {"_count": 1, "her": {"_count": 1}}, "related": {"_count": 1, "": {"_count": 1}}, "cousins": {"_count": 1, "by": {"_count": 1}}, "required": {"_count": 3, "to": {"_count": 3}}, "enchanted": {"_count": 1, "windows": {"_count": 1}}, "pulling": {"_count": 1, "the": {"_count": 1}}, "fifteen": {"_count": 1, "years": {"_count": 1}}, "anything": {"_count": 1, "other": {"_count": 1}}, "Dumbledores": {"_count": 2, "favorite": {"_count": 1}, "man": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "finally": {"_count": 1, "over": {"_count": 1}}, "arriving": {"_count": 1, "for": {"_count": 1}}, "misbehaving": {"_count": 1, "": {"_count": 1}}, "denied": {"_count": 1, "me": {"_count": 1}}, "also": {"_count": 2, "delighted": {"_count": 1}, "looking": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 3, "expect": {"_count": 1}, "believe": {"_count": 1}, "gather": {"_count": 1}}, "intending": {"_count": 2, "to": {"_count": 2}}, "too": {"_count": 6, "heavyhanded": {"_count": 1}, "young": {"_count": 1}, "close": {"_count": 1}, "terrified": {"_count": 1}, "small": {"_count": 1}, "dangerous": {"_count": 1}}, "perfectly": {"_count": 1, "clear": {"_count": 1}}, "likely": {"_count": 1, "to": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "starting": {"_count": 1, "Vanishing": {"_count": 1}}, "easier": {"_count": 1, "than": {"_count": 1}}, "bowtruckles": {"_count": 1, "and": {"_count": 1}}, "missing": {"_count": 1, "something": {"_count": 1}}, "losers": {"_count": 3, "Gryffindor": {"_count": 1}, "but": {"_count": 1}, "out": {"_count": 1}}, "surprised": {"_count": 1, "to": {"_count": 1}}, "afraid": {"_count": 2, "to": {"_count": 2}}, "writing": {"_count": 1, "to": {"_count": 1}}, "honestly": {"_count": 1, "the": {"_count": 1}}, "breakable": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 1, "toerags": {"_count": 1}}, "Umbridges": {"_count": 1, "lessons": {"_count": 1}}, "calling": {"_count": 1, "the": {"_count": 1}}, "delighted": {"_count": 1, "to": {"_count": 1}}, "undoubtedly": {"_count": 1, "the": {"_count": 1}}, "normally": {"_count": 1, "like": {"_count": 1}}, "improperly": {"_count": 1, "named": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "run": {"_count": 1, "very": {"_count": 1}}, "behind": {"_count": 2, "on": {"_count": 1}, "Snape": {"_count": 1}}, "heliopaths": {"_count": 1, "": {"_count": 1}}, "prefects": {"_count": 1, "Ernie": {"_count": 1}}, "henceforth": {"_count": 1, "disbanded": {"_count": 1}}, "continuing": {"_count": 1, "with": {"_count": 1}}, "twentyeight": {"_count": 1, "of": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "moste": {"_count": 1, "efficacious": {"_count": 1}}, "around": {"_count": 2, "but": {"_count": 1}, "twenty": {"_count": 1}}, "loving": {"_count": 1, "this": {"_count": 1}}, "s": {"_count": 1, "long": {"_count": 1}}, "three": {"_count": 2, "sets": {"_count": 1}, "of": {"_count": 1}}, "people": {"_count": 2, "who": {"_count": 1}, "in": {"_count": 1}}, "fine": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "nice": {"_count": 1, "did": {"_count": 1}}, "brilliant": {"_count": 1, "but": {"_count": 1}}, "nargles": {"_count": 1, "": {"_count": 1}}, "anyway": {"_count": 1, "because": {"_count": 1}}, "free": {"_count": 2, "to": {"_count": 2}}, "honorbound": {"_count": 1, "to": {"_count": 1}}, "happening": {"_count": 3, "hundreds": {"_count": 1}, "": {"_count": 1}, "are": {"_count": 1}}, "fishy": {"_count": 1, "enough": {"_count": 1}}, "unsure": {"_count": 1, "where": {"_count": 1}}, "outside": {"_count": 1, "Arthur": {"_count": 1}}, "brave": {"_count": 1, "yes": {"_count": 1}}, "absolutely": {"_count": 1, "right": {"_count": 1}}, "Agnes": {"_count": 1, "said": {"_count": 1}}, "clearly": {"_count": 1, "Weasleys": {"_count": 1}}, "guarded": {"_count": 1, "by": {"_count": 1}}, "asleep": {"_count": 1, "for": {"_count": 1}}, "sharing": {"_count": 1, "the": {"_count": 1}}, "gaining": {"_count": 1, "access": {"_count": 1}}, "needed": {"_count": 1, "for": {"_count": 1}}, "making": {"_count": 3, "no": {"_count": 1}, "it": {"_count": 1}, "sense": {"_count": 1}}, "allowing": {"_count": 1, "me": {"_count": 1}}, "many": {"_count": 3, "things": {"_count": 1}, "varied": {"_count": 1}, "similarities": {"_count": 1}}, "unrelated": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "doing": {"_count": 1}}, "liars": {"_count": 1, "hasnt": {"_count": 1}}, "hereby": {"_count": 1, "banned": {"_count": 1}}, "paid": {"_count": 1, "to": {"_count": 1}}, "letters": {"_count": 1, "from": {"_count": 1}}, "telling": {"_count": 2, "the": {"_count": 2}}, "morons": {"_count": 1, "and": {"_count": 1}}, "neither": {"_count": 1, "special": {"_count": 1}}, "lazy": {"_count": 1, "and": {"_count": 1}}, "embarrassing": {"_count": 1, "us": {"_count": 1}}, "unaffected": {"_count": 1, "by": {"_count": 1}}, "sometimes": {"_count": 1, "marked": {"_count": 1}}, "seeing": {"_count": 1, "": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "inappropriate": {"_count": 1, "for": {"_count": 1}}, "foolish": {"_count": 1, "enough": {"_count": 1}}, "supportive": {"_count": 1, "of": {"_count": 1}}, "changing": {"_count": 1, "around": {"_count": 1}}, "Headmistress": {"_count": 1, "": {"_count": 1}}, "listed": {"_count": 1, "below": {"_count": 1}}, "essential": {"_count": 1, "study": {"_count": 1}}, "serious": {"_count": 1, "in": {"_count": 1}}, "raving": {"_count": 1, "said": {"_count": 1}}, "idiots": {"_count": 1, "at": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 3}}, "keeping": {"_count": 2, "going": {"_count": 1}, "in": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "spread": {"_count": 1, "over": {"_count": 1}}, "banned": {"_count": 2, "from": {"_count": 1}, "hand": {"_count": 1}}, "Remembralls": {"_count": 1, "Detachable": {"_count": 1}}, "even": {"_count": 1, "there": {"_count": 1}}, "forcing": {"_count": 1, "me": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "young": {"_count": 1, "said": {"_count": 1}}, "looking": {"_count": 2, "for": {"_count": 2}}, "six": {"_count": 1, "of": {"_count": 1}}, "doors": {"_count": 1, "here": {"_count": 1}}, "wasting": {"_count": 1, "their": {"_count": 1}}, "brains": {"_count": 1, "in": {"_count": 1}}, "ten": {"_count": 1, "of": {"_count": 1}}, "feeling": {"_count": 2, "Harry": {"_count": 2}}, "close": {"_count": 3, "to": {"_count": 3}}, "guilty": {"_count": 1, "if": {"_count": 1}}, "roused": {"_count": 1, "has": {"_count": 1}}, "heavily": {"_count": 1, "protected": {"_count": 1}}, "almost": {"_count": 2, "as": {"_count": 1}, "there": {"_count": 1}}, "forgetting": {"_count": 4, "the": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 1}}, "real": {"_count": 2, "prophecies": {"_count": 1}, "and": {"_count": 1}}, "baffled": {"_count": 1, "you": {"_count": 1}}, "examining": {"_count": 1, "him": {"_count": 1}}, "avoiding": {"_count": 1, "my": {"_count": 1}}, "slower": {"_count": 1, "than": {"_count": 1}}, "imagining": {"_count": 1, "I": {"_count": 1}}, "Luciuss": {"_count": 1, "old": {"_count": 1}}, "unknown": {"_count": 1, "although": {"_count": 1}}, "advised": {"_count": 1, "not": {"_count": 1}}, "agreeable": {"_count": 1, "I": {"_count": 1}}, "flourishing": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 3, "there": {"_count": 1}, "why": {"_count": 1}, "apparently": {"_count": 1}}, "once": {"_count": 2, "again": {"_count": 1}, "more": {"_count": 1}}, "magically": {"_count": 1, "protected": {"_count": 1}}, "corpses": {"_count": 1, "said": {"_count": 1}}, "skyhigh": {"_count": 1, "at": {"_count": 1}}, "safer": {"_count": 1, "than": {"_count": 1}}, "Albus": {"_count": 1, "he": {"_count": 1}}, "worried": {"_count": 1, "and": {"_count": 1}}, "delivered": {"_count": 1, "said": {"_count": 1}}, "She": {"_count": 1, "tapped": {"_count": 1}}, "sweet": {"_count": 1, "beamed": {"_count": 1}}, "desperate": {"_count": 2, "for": {"_count": 2}}, "Verity": {"_count": 1, "Im": {"_count": 1}}, "cool": {"_count": 1, "said": {"_count": 1}}, "\u2018the": {"_count": 3, "Chosen": {"_count": 3}}, "friendly": {"_count": 1, "": {"_count": 1}}, "poisons": {"_count": 1, "without": {"_count": 1}}, "protected": {"_count": 2, "in": {"_count": 2}}, "dividing": {"_count": 1, "classes": {"_count": 1}}, "fighting": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "practicing": {"_count": 1, "nonverbal": {"_count": 1}}, "enjoying": {"_count": 1, "your": {"_count": 1}}, "summoning": {"_count": 1, "my": {"_count": 1}}, "fascinated": {"_count": 1, "by": {"_count": 1}}, "halfbloods": {"_count": 1, "pretending": {"_count": 1}}, "blood": {"_count": 1, "traitors": {"_count": 1}}, "staring": {"_count": 1, "whispered": {"_count": 1}}, "sending": {"_count": 1, "me": {"_count": 1}}, "accepting": {"_count": 1, "your": {"_count": 1}}, "Parselmouths": {"_count": 1, "among": {"_count": 1}}, "deluded": {"_count": 1, "": {"_count": 1}}, "craving": {"_count": 1, "to": {"_count": 1}}, "thank": {"_count": 1, "goodness": {"_count": 1}}, "part": {"_count": 2, "of": {"_count": 2}}, "suspected": {"_count": 1, "of": {"_count": 1}}, "elementary": {"_count": 1, "mistakes": {"_count": 1}}, "placing": {"_count": 1, "your": {"_count": 1}}, "speaking": {"_count": 1, "like": {"_count": 1}}, "something": {"_count": 1, "marvelous": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "normal": {"_count": 1, "": {"_count": 1}}, "dangerous": {"_count": 1, "times": {"_count": 1}}, "sixteen": {"_count": 1, "years": {"_count": 1}}, "seventeen": {"_count": 1, "years": {"_count": 1}}, "eligible": {"_count": 1, "for": {"_count": 1}}, "pretty": {"_count": 1, "rare": {"_count": 1}}, "bein": {"_count": 1, "attacked": {"_count": 1}}, "curious": {"_count": 1, "recollections": {"_count": 1}}, "take": {"_count": 1, "that": {"_count": 1}}, "Tom": {"_count": 1, "dear": {"_count": 1}}, "mistaken": {"_count": 2, "said": {"_count": 1}, "if": {"_count": 1}}, "omniscient": {"_count": 1, "as": {"_count": 1}}, "transparent": {"_count": 3, "he": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "several": {"_count": 1, "reasons": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "correct": {"_count": 1, "Voldemort": {"_count": 1}}, "hopeful": {"_count": 1, "signs": {"_count": 1}}, "destroyed": {"_count": 1, "Voldemort": {"_count": 1}}, "gone": {"_count": 3, "a": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}}, "clever": {"_count": 1, "": {"_count": 1}}, "facing": {"_count": 2, "": {"_count": 1}, "magic": {"_count": 1}}, "underage": {"_count": 1, "and": {"_count": 1}}, "bodies": {"_count": 1, "in": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "manners": {"_count": 1, "replied": {"_count": 1}}, "attacking": {"_count": 1, "even": {"_count": 1}}, "throats": {"_count": 1, "to": {"_count": 1}}, "cursed": {"_count": 1, "wounds": {"_count": 1}}, "unlikely": {"_count": 1, "ever": {"_count": 1}}, "anywhere": {"_count": 1, "else": {"_count": 1}}, "plans": {"_count": 1, "to": {"_count": 1}}, "joined": {"_count": 1, "here": {"_count": 1}}, "considered": {"_count": 1, "a": {"_count": 1}}, "explored": {"_count": 1, "in": {"_count": 1}}, "skyrocketing": {"_count": 1, "around": {"_count": 1}}, "disappearing": {"_count": 1, "and": {"_count": 1}}, "ask": {"_count": 1, "your": {"_count": 1}}, "packed": {"_count": 1, "and": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "youre": {"_count": 1, "with": {"_count": 1}}, "dropping": {"_count": 1, "out": {"_count": 1}}, "abandoning": {"_count": 1, "your": {"_count": 1}}, "nasty": {"_count": 1, "rumors": {"_count": 1}}, "wedding": {"_count": 1, "presents": {"_count": 1}}, "somewhere": {"_count": 1, "more": {"_count": 1}}, "illegal": {"_count": 1, "before": {"_count": 1}}, "important": {"_count": 1, "enough": {"_count": 1}}, "childrens": {"_count": 1, "stories": {"_count": 1}}, "lopsided": {"_count": 1, "": {"_count": 1}}, "gathered": {"_count": 1, "here": {"_count": 1}}, "together": {"_count": 1, "now": {"_count": 1}}, "taken": {"_count": 2, "": {"_count": 2}}, "ways": {"_count": 1, "of": {"_count": 1}}, "buried": {"_count": 1, "Im": {"_count": 1}}, "kind": {"_count": 1, "to": {"_count": 1}}, "examined": {"_count": 1, "by": {"_count": 1}}, "whispering": {"_count": 1, "that": {"_count": 1}}, "scared": {"_count": 1, "to": {"_count": 1}}, "targeted": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 2, "Harry": {"_count": 1}, "enough": {"_count": 1}}, "pictures": {"_count": 1, "of": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "Mary": {"_count": 1, "Elizabeth": {"_count": 1}}, "few": {"_count": 1, "pureblood": {"_count": 1}}, "intruders": {"_count": 1, "inside": {"_count": 1}}, "shaking": {"_count": 1, "": {"_count": 1}}, "spells": {"_count": 1, "that": {"_count": 1}}, "swooping": {"_count": 1, "around": {"_count": 1}}, "ruining": {"_count": 1, "a": {"_count": 1}}, "ignorant": {"_count": 1, "Potter": {"_count": 1}}, "opposed": {"_count": 1, "as": {"_count": 1}}, "risking": {"_count": 1, "our": {"_count": 1}}, "such": {"_count": 1, "things": {"_count": 1}}, "rare": {"_count": 1, "but": {"_count": 1}}, "cast": {"_count": 2, "at": {"_count": 2}}, "opening": {"_count": 1, "your": {"_count": 1}}, "bigger": {"_count": 1, "and": {"_count": 1}}, "Crumple": {"_count": 1, "bang": {"_count": 1}}, "Hermione": {"_count": 1, "agreed": {"_count": 1}}, "frightened": {"_count": 1, "of": {"_count": 1}}, "attributing": {"_count": 1, "the": {"_count": 1}}, "suffering": {"_count": 1, "for": {"_count": 1}}, "unwise": {"_count": 1, "in": {"_count": 1}}, "Romulus": {"_count": 1, "said": {"_count": 1}}, "genuine": {"_count": 1, "we": {"_count": 1}}, "secure": {"_count": 1, "but": {"_count": 1}}, "lying": {"_count": 1, "filthy": {"_count": 1}}, "slaughtered": {"_count": 1, "and": {"_count": 1}}, "complex": {"_count": 1, "": {"_count": 1}}, "legends": {"_count": 1, "though": {"_count": 1}}, "gaps": {"_count": 1, "of": {"_count": 1}}, "learned": {"_count": 1, "in": {"_count": 1}}, "written": {"_count": 1, "accounts": {"_count": 1}}, "largest": {"_count": 1, "and": {"_count": 1}}, "driving": {"_count": 1, "Muriel": {"_count": 1}}, "impostors": {"_count": 1, "in": {"_count": 1}}, "worthless": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "it": {"_count": 1}}, "giving": {"_count": 1, "trouble": {"_count": 1}}, "rather": {"_count": 1, "good": {"_count": 1}}, "capable": {"_count": 1, "while": {"_count": 1}}, "preparing": {"_count": 1, "to": {"_count": 1}}, "futile": {"_count": 1, "": {"_count": 1}}, "kids": {"_count": 1, "of": {"_count": 1}}, "finished": {"_count": 1, "": {"_count": 1}}, "joking": {"_count": 1, "Perce": {"_count": 1}}, "Severus": {"_count": 1, "I": {"_count": 1}}, "Sev": {"_count": 1, "but": {"_count": 1}}, "closeted": {"_count": 1, "together": {"_count": 1}}, "forced": {"_count": 1, "to": {"_count": 1}}, "camping": {"_count": 1, "in": {"_count": 1}}, "best": {"_count": 1, "suited": {"_count": 1}}, "maimed": {"_count": 1, "fewer": {"_count": 1}}, "torn": {"_count": 1, "apart": {"_count": 1}}, "binding": {"_count": 1, "": {"_count": 1}}}, "ever": {"_count": 785, "seen": {"_count": 67, "in": {"_count": 6}, "": {"_count": 19}, "halfhidden": {"_count": 1}, "spiders": {"_count": 1}, "said": {"_count": 1}, "them": {"_count": 2}, "him": {"_count": 9}, "anything": {"_count": 3}, "one": {"_count": 1}, "including": {"_count": 1}, "he": {"_count": 1}, "before": {"_count": 1}, "it": {"_count": 6}, "was": {"_count": 1}, "em": {"_count": 1}, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}, "you": {"_count": 1}, "Dad": {"_count": 1}, "with": {"_count": 1}, "laced": {"_count": 1}, "at": {"_count": 2}, "and": {"_count": 1}, "me": {"_count": 1}, "like": {"_count": 1}, "such": {"_count": 1}, "her": {"_count": 1}}, "been": {"_count": 29, "seen": {"_count": 1}, "in": {"_count": 5}, "so": {"_count": 1}, "afraid": {"_count": 1}, "he": {"_count": 1}, "innocent": {"_count": 1}, "involved": {"_count": 1}, "down": {"_count": 1}, "happy": {"_count": 1}, "less": {"_count": 1}, "fair": {"_count": 1}, "before": {"_count": 3}, "right": {"_count": 1}, "to": {"_count": 2}, "closer": {"_count": 1}, "mistreated": {"_count": 1}, "killed": {"_count": 1}, "faulty": {"_count": 1}, "pushed": {"_count": 1}, "No": {"_count": 1}, "": {"_count": 1}, "top": {"_count": 1}}, "remember": {"_count": 3, "asking": {"_count": 1}, "the": {"_count": 1}, "feeling": {"_count": 1}}, "owned": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "anything": {"_count": 1}}, "since": {"_count": 70, "hed": {"_count": 4}, "he": {"_count": 18}, "I": {"_count": 8}, "Hagrid": {"_count": 1}, "his": {"_count": 3}, "where": {"_count": 1}, "BBill": {"_count": 1}, "they": {"_count": 3}, "": {"_count": 8}, "Tuesday": {"_count": 1}, "Crookshanks": {"_count": 1}, "Rons": {"_count": 1}, "except": {"_count": 1}, "their": {"_count": 1}, "Moodys": {"_count": 1}, "first": {"_count": 1}, "a": {"_count": 1}, "Rita": {"_count": 1}, "that": {"_count": 1}, "my": {"_count": 1}, "Filch": {"_count": 1}, "we": {"_count": 1}, "Hermione": {"_count": 1}, "YouKnowWho": {"_count": 1}, "the": {"_count": 2}, "oh": {"_count": 1}, "Percy": {"_count": 1}, "Dumbledore": {"_count": 1}, "reading": {"_count": 1}, "reaching": {"_count": 1}, "your": {"_count": 1}}, "in": {"_count": 9, "his": {"_count": 2}, "the": {"_count": 2}, "times": {"_count": 1}, "response": {"_count": 1}, "fact": {"_count": 1}, "Herbology": {"_count": 1}, "truth": {"_count": 1}}, "laid": {"_count": 2, "eyes": {"_count": 2}}, "knew": {"_count": 4, "": {"_count": 2}, "sir": {"_count": 1}, "how": {"_count": 1}}, "lived": {"_count": 2, "after": {"_count": 1}, "or": {"_count": 1}}, "remembered": {"_count": 1, "it": {"_count": 1}}, "made": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "had": {"_count": 24, "Albus": {"_count": 1}, "": {"_count": 13}, "a": {"_count": 2}, "wasnt": {"_count": 1}, "said": {"_count": 1}, "such": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "is": {"_count": 1}, "anything": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 2}, "Harrys": {"_count": 1}, "a": {"_count": 1}}, "There": {"_count": 1, "were": {"_count": 1}}, "saw": {"_count": 7, "were": {"_count": 1}, "them": {"_count": 1}, "Kreacher": {"_count": 2}, "Voldemort": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "sold": {"_count": 3, "Mr": {"_count": 1}, "out": {"_count": 1}, "he": {"_count": 1}}, "so": {"_count": 6, "polite": {"_count": 1}, "pleased": {"_count": 1}, "that": {"_count": 1}, "slightly": {"_count": 1}, "pale": {"_count": 1}, "grateful": {"_count": 1}}, "wakes": {"_count": 1, "up": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "killed": {"_count": 1, "anyone": {"_count": 1}}, "": {"_count": 84, ".": {"_count": 82}, "?": {"_count": 1}, "!": {"_count": 1}}, "do": {"_count": 3, "run": {"_count": 1}, "": {"_count": 2}}, "finding": {"_count": 1, "Flamel": {"_count": 1}}, "refereed": {"_count": 1, "a": {"_count": 1}}, "lost": {"_count": 1, "at": {"_count": 1}}, "He": {"_count": 1, "gasped": {"_count": 1}}, "dying": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 3, "him": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}}, "need": {"_count": 3, "an": {"_count": 1}, "to": {"_count": 1}, "someone": {"_count": 1}}, "met": {"_count": 10, "him": {"_count": 2}, "but": {"_count": 1}, "": {"_count": 2}, "or": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "said": {"_count": 1}, "Fenrir": {"_count": 1}}, "failed": {"_count": 1, "to": {"_count": 1}}, "make": {"_count": 2, "up": {"_count": 2}}, "needed": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 7, "want": {"_count": 2}, "had": {"_count": 2}, "would": {"_count": 1}, "dont": {"_count": 1}, "saw": {"_count": 1}}, "afraid": {"_count": 1, "of": {"_count": 1}}, "because": {"_count": 1, "there": {"_count": 1}}, "sent": {"_count": 1, "him": {"_count": 1}}, "was": {"_count": 6, "at": {"_count": 1}, "forgetting": {"_count": 1}, "Severus": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "sitting": {"_count": 1}}, "forget": {"_count": 1, "tonight": {"_count": 1}}, "know": {"_count": 4, "we": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}}, "explain": {"_count": 1, "to": {"_count": 1}}, "likely": {"_count": 1, "to": {"_count": 1}}, "more": {"_count": 5, "meddlesome": {"_count": 1}, "dreadful": {"_count": 1}, "miserably": {"_count": 1}, "unlikely": {"_count": 1}, "powerful": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "worked": {"_count": 2, "in": {"_count": 1}, "for": {"_count": 1}}, "before": {"_count": 17, "": {"_count": 12}, "the": {"_count": 1}, "particularly": {"_count": 1}, "beneath": {"_count": 1}, "closer": {"_count": 1}, "choosing": {"_count": 1}}, "punished": {"_count": 1, "": {"_count": 1}}, "happened": {"_count": 3, "in": {"_count": 1}, "to": {"_count": 2}}, "interrupted": {"_count": 2, "him": {"_count": 1}, "Dumbledore": {"_count": 1}}, "built": {"_count": 1, "so": {"_count": 1}}, "set": {"_count": 1, "foot": {"_count": 1}}, "you": {"_count": 4, "feel": {"_count": 1}, "have": {"_count": 1}, "need": {"_count": 1}, "apply": {"_count": 1}}, "find": {"_count": 2, "out": {"_count": 2}}, "done": {"_count": 7, "it": {"_count": 3}, "Harry": {"_count": 1}, "more": {"_count": 1}, "upon": {"_count": 1}, "compared": {"_count": 1}}, "heard": {"_count": 22, "of": {"_count": 3}, "speak": {"_count": 1}, "say": {"_count": 1}, "him": {"_count": 2}, "And": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "including": {"_count": 1}, "": {"_count": 2}, "Death": {"_count": 1}, "that": {"_count": 1}, "her": {"_count": 1}, "about": {"_count": 2}, "a": {"_count": 1}}, "suspected": {"_count": 1, "you": {"_count": 1}}, "come": {"_count": 5, "up": {"_count": 1}, "to": {"_count": 2}, "off": {"_count": 1}, "across": {"_count": 1}}, "lasted": {"_count": 1, "as": {"_count": 1}}, "felt": {"_count": 5, "": {"_count": 1}, "anything": {"_count": 1}, "in": {"_count": 3}}, "laughed": {"_count": 1, "at": {"_count": 1}}, "managed": {"_count": 2, "to": {"_count": 2}}, "like": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "understood": {"_count": 1, "me": {"_count": 1}}, "have": {"_count": 12, "been": {"_count": 3}, "imagined": {"_count": 2}, "achieved": {"_count": 1}, "the": {"_count": 2}, "thought": {"_count": 1}, "allowed": {"_count": 1}, "dared": {"_count": 1}, "predicted": {"_count": 1}}, "birthday": {"_count": 1, "card": {"_count": 1}}, "given": {"_count": 3, "him": {"_count": 1}, "them": {"_count": 1}, "warnings": {"_count": 1}}, "to": {"_count": 11, "be": {"_count": 1}, "leave": {"_count": 1}, "have": {"_count": 2}, "ensure": {"_count": 1}, "break": {"_count": 1}, "set": {"_count": 1}, "come": {"_count": 1}, "speak": {"_count": 1}, "heal": {"_count": 1}, "trust": {"_count": 1}}, "want": {"_count": 2, "to": {"_count": 1}, "ter": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "be": {"_count": 4, "the": {"_count": 1}, "fit": {"_count": 1}, "mistaken": {"_count": 1}, "yours": {"_count": 1}}, "but": {"_count": 11, "looked": {"_count": 1}, "could": {"_count": 1}, "it": {"_count": 1}, "one": {"_count": 1}, "he": {"_count": 2}, "a": {"_count": 2}, "now": {"_count": 1}, "all": {"_count": 1}, "with": {"_count": 1}}, "bothered": {"_count": 3, "to": {"_count": 2}, "them": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "hear": {"_count": 3, "you": {"_count": 1}, "Ron": {"_count": 1}, "me": {"_count": 1}}, "he": {"_count": 4, "had": {"_count": 1}, "was": {"_count": 1}, "proceeded": {"_count": 1}, "and": {"_count": 1}}, "found": {"_count": 8, "out": {"_count": 3}, "bits": {"_count": 1}, "anything": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "used": {"_count": 2, "this": {"_count": 1}, "a": {"_count": 1}}, "tasted": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "told": {"_count": 4, "him": {"_count": 2}, "you": {"_count": 1}, "Snape": {"_count": 1}}, "mentioned": {"_count": 3, "the": {"_count": 2}, "anything": {"_count": 1}}, "echoing": {"_count": 1, "inside": {"_count": 1}}, "dreamed": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "team": {"_count": 1}, "curtains": {"_count": 1}, "shadow": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}, "closer": {"_count": 4, "": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}}, "meeting": {"_count": 1, "a": {"_count": 1}}, "nearer": {"_count": 2, "": {"_count": 2}}, "played": {"_count": 1, "in": {"_count": 1}}, "taken": {"_count": 4, "and": {"_count": 1}, "a": {"_count": 2}, "it": {"_count": 1}}, "large": {"_count": 1, "tufts": {"_count": 1}}, "gotten": {"_count": 1, "into": {"_count": 1}}, "wonder": {"_count": 1, "why": {"_count": 1}}, "as": {"_count": 6, "he": {"_count": 3}, "though": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}}, "got": {"_count": 4, "wind": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 1}, "it": {"_count": 1}}, "sneak": {"_count": 1, "around": {"_count": 1}}, "existed": {"_count": 1, "": {"_count": 1}}, "use": {"_count": 1, "it": {"_count": 1}}, "thank": {"_count": 1, "GO": {"_count": 1}}, "truly": {"_count": 1, "leave": {"_count": 1}}, "returned": {"_count": 2, "to": {"_count": 2}}, "any": {"_count": 1, "help": {"_count": 1}}, "Harry": {"_count": 3, "needed": {"_count": 1}, "couldnt": {"_count": 1}, "might": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "and": {"_count": 10, "threw": {"_count": 1}, "refused": {"_count": 1}, "they": {"_count": 1}, "slopping": {"_count": 1}, "zoomed": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 2}, "next": {"_count": 1}, "for": {"_count": 1}}, "his": {"_count": 3, "isolation": {"_count": 1}, "features": {"_count": 1}, "shiny": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 3, "to": {"_count": 1}, "Voldemorts": {"_count": 1}, "again": {"_count": 1}}, "leave": {"_count": 1, "the": {"_count": 1}}, "survived": {"_count": 1, "it": {"_count": 1}}, "lower": {"_count": 4, "coming": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 1}}, "saying": {"_count": 1, "in": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "running": {"_count": 1}}, "rushing": {"_count": 1, "past": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "deflect": {"_count": 1, "Professor": {"_count": 1}}, "go": {"_count": 2, "anywhere": {"_count": 1}, "into": {"_count": 1}}, "entaired": {"_count": 1, "into": {"_count": 1}}, "experienced": {"_count": 5, "it": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 1}, "before": {"_count": 1}}, "if": {"_count": 1, "not": {"_count": 1}}, "thought": {"_count": 1, "of": {"_count": 1}}, "written": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "let": {"_count": 4, "his": {"_count": 1}, "me": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "holding": {"_count": 1, "him": {"_count": 1}}, "get": {"_count": 2, "the": {"_count": 1}, "near": {"_count": 1}}, "going": {"_count": 3, "to": {"_count": 3}}, "higher": {"_count": 1, "in": {"_count": 1}}, "moved": {"_count": 3, "just": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}}, "counted": {"_count": 1, "myself": {"_count": 1}}, "screamed": {"_count": 1, "in": {"_count": 1}}, "feared": {"_count": 2, "": {"_count": 1}, "isnt": {"_count": 1}}, "imagined": {"_count": 1, "": {"_count": 1}}, "discover": {"_count": 1, "that": {"_count": 1}}, "known": {"_count": 7, "": {"_count": 3}, "to": {"_count": 1}, "such": {"_count": 1}, "How": {"_count": 1}, "him": {"_count": 1}}, "being": {"_count": 2, "hugged": {"_count": 1}, "in": {"_count": 1}}, "shown": {"_count": 1, "in": {"_count": 1}}, "talk": {"_count": 1, "about": {"_count": 1}}, "kept": {"_count": 1, "you": {"_count": 1}}, "considered": {"_count": 1, "after": {"_count": 1}}, "though": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "brandishing": {"_count": 1, "clawed": {"_count": 1}}, "scared": {"_count": 1, "of": {"_count": 1}}, "important": {"_count": 1, "enough": {"_count": 1}}, "a": {"_count": 3, "family": {"_count": 1}, "cozy": {"_count": 1}, "mouth": {"_count": 1}}, "lie": {"_count": 1, "flat": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "performed": {"_count": 2, "": {"_count": 2}}, "no": {"_count": 1, "its": {"_count": 1}}, "conducted": {"_count": 1, "by": {"_count": 1}}, "questioned": {"_count": 1, "that": {"_count": 1}}, "devised": {"_count": 1, "by": {"_count": 1}}, "really": {"_count": 1, "stopped": {"_count": 1}}, "neglecting": {"_count": 1, "to": {"_count": 1}}, "Hand": {"_count": 1, "Mr": {"_count": 1}}, "practicing": {"_count": 1, "them": {"_count": 1}}, "rude": {"_count": 1, "to": {"_count": 1}}, "fade": {"_count": 1, "entirely": {"_count": 1}}, "stuck": {"_count": 1, "up": {"_count": 1}}, "knitted": {"_count": 1, "he": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "again": {"_count": 5, "she": {"_count": 1}, "": {"_count": 4}}, "sat": {"_count": 1, "through": {"_count": 1}}, "possessed": {"_count": 1, "you": {"_count": 1}}, "feeling": {"_count": 1, "sorrier": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "two": {"_count": 1}}, "stopped": {"_count": 1, "prickling": {"_count": 1}}, "larger": {"_count": 1, "he": {"_count": 1}}, "attended": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "at": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "left": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "tell": {"_count": 2, "you": {"_count": 1}, "them": {"_count": 1}}, "onward": {"_count": 1, "": {"_count": 1}}, "wondered": {"_count": 1, "why": {"_count": 1}}, "taught": {"_count": 3, "you": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}}, "passed": {"_count": 1, "through": {"_count": 1}}, "achieved": {"_count": 1, "": {"_count": 1}}, "feel": {"_count": 2, "cheerful": {"_count": 1}, "curious": {"_count": 1}}, "died": {"_count": 1, "": {"_count": 1}}, "guess": {"_count": 1, "he": {"_count": 1}}, "visited": {"_count": 2, "Borgin": {"_count": 1}, "Gringotts": {"_count": 1}}, "glittering": {"_count": 1, "with": {"_count": 1}}, "telling": {"_count": 1, "him": {"_count": 1}}, "changing": {"_count": 1, "and": {"_count": 1}}, "cast": {"_count": 1, "the": {"_count": 1}}, "lingering": {"_count": 1, "to": {"_count": 1}}, "inhaled": {"_count": 1, "Somehow": {"_count": 1}}, "flown": {"_count": 1, "before": {"_count": 1}}, "encountered": {"_count": 2, "who": {"_count": 1}, "the": {"_count": 1}}, "came": {"_count": 1, "looking": {"_count": 1}}, "cried": {"_count": 1, "you": {"_count": 1}}, "wanted": {"_count": 2, "one": {"_count": 1}, "to": {"_count": 1}}, "paid": {"_count": 1, "attention": {"_count": 1}}, "asked": {"_count": 2, "me": {"_count": 1}, "his": {"_count": 1}}, "guessed": {"_count": 1, "about": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "chucked": {"_count": 1, "anyone": {"_count": 1}}, "flourish": {"_count": 1, "and": {"_count": 1}}, "ever": {"_count": 1, "let": {"_count": 1}}, "succeed": {"_count": 1, "in": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "it": {"_count": 1, "sounded": {"_count": 1}}, "or": {"_count": 1, "would": {"_count": 1}}, "meet": {"_count": 1, "": {"_count": 1}}, "pulling": {"_count": 1, "his": {"_count": 1}}, "gave": {"_count": 1, "more": {"_count": 1}}, "matched": {"_count": 1, "that": {"_count": 1}}, "sell": {"_count": 1, "me": {"_count": 1}}, "ave": {"_count": 1, "Monsieur": {"_count": 1}}, "discuss": {"_count": 1, "codes": {"_count": 1}}, "tried": {"_count": 1, "sticking": {"_count": 1}}, "Quidditch": {"_count": 1, "match": {"_count": 1}}, "discussed": {"_count": 1, "my": {"_count": 1}}, "summoned": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 2, "sure": {"_count": 1}, "so": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}, "demonstrating": {"_count": 1, "even": {"_count": 1}}, "at": {"_count": 1, "houses": {"_count": 1}}, "defeat": {"_count": 1, "Voldemort": {"_count": 1}}, "has": {"_count": 1, "trouble": {"_count": 1}}, "does": {"_count": 1, "the": {"_count": 1}}, "goes": {"_count": 1, "in": {"_count": 1}}, "mentioning": {"_count": 1, "a": {"_count": 1}}, "read": {"_count": 1, "about": {"_count": 1}}, "even": {"_count": 1, "open": {"_count": 1}}, "rebuilt": {"_count": 1, "it": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "shared": {"_count": 1, "with": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "dared": {"_count": 1, "use": {"_count": 1}}, "we": {"_count": 1, "get": {"_count": 1}}, "inside": {"_count": 2, "the": {"_count": 1}, "Gringotts": {"_count": 1}}, "went": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "boarded": {"_count": 1}}, "deeper": {"_count": 1, "into": {"_count": 1}}, "penetrated": {"_count": 1, "within": {"_count": 1}}, "spoken": {"_count": 1, "about": {"_count": 1}}, "dust": {"_count": 1, "filled": {"_count": 1}}, "expected": {"_count": 1, "": {"_count": 1}}, "cost": {"_count": 1, "him": {"_count": 1}}, "stronger": {"_count": 1, "a": {"_count": 1}}, "impenetrable": {"_count": 1, "perfect": {"_count": 1}}, "two": {"_count": 1, "wizards": {"_count": 1}}}, "hundreds": {"_count": 70, "of": {"_count": 60, "sightings": {"_count": 1}, "them": {"_count": 3}, "miles": {"_count": 4}, "voices": {"_count": 1}, "faces": {"_count": 3}, "candles": {"_count": 2}, "books": {"_count": 2}, "narrow": {"_count": 1}, "pearlywhite": {"_count": 1}, "feet": {"_count": 2}, "ghosts": {"_count": 1}, "years": {"_count": 3}, "people": {"_count": 7}, "candlefilled": {"_count": 1}, "squashy": {"_count": 1}, "different": {"_count": 1}, "Galleons": {"_count": 1}, "eyes": {"_count": 2}, "tents": {"_count": 1}, "owls": {"_count": 3}, "carved": {"_count": 1}, "students": {"_count": 5}, "pairs": {"_count": 1}, "actual": {"_count": 1}, "garlands": {"_count": 1}, "witches": {"_count": 1}, "footsteps": {"_count": 1}, "glass": {"_count": 1}, "tiny": {"_count": 1}, "ideas": {"_count": 1}, "underage": {"_count": 1}, "chairs": {"_count": 1}, "heads": {"_count": 1}, "naked": {"_count": 1}, "kids": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 6, "hundreds": {"_count": 6}}, "upon": {"_count": 1, "hundreds": {"_count": 1}}, "maybe": {"_count": 1, "thousands": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "sightings": {"_count": 5, "of": {"_count": 3, "these": {"_count": 1}, "CrumpleHorned": {"_count": 1}, "him": {"_count": 1}}, "had": {"_count": 1, "still": {"_count": 1}}, "suggest": {"_count": 1, "that": {"_count": 1}}}, "birds": {"_count": 33, "flying": {"_count": 1, "in": {"_count": 1}}, "fluttering": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "!": {"_count": 2}}, "soaring": {"_count": 1, "overhead": {"_count": 1}}, "of": {"_count": 3, "all": {"_count": 1}, "prey": {"_count": 1}, "course": {"_count": 1}}, "were": {"_count": 3, "making": {"_count": 1}, "captured": {"_count": 1}, "still": {"_count": 1}}, "golden": {"_count": 1, "claws": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "they": {"_count": 1}}, "hanging": {"_count": 1, "from": {"_count": 1}}, "flew": {"_count": 1, "out": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 2, "the": {"_count": 1}, "speeding": {"_count": 1}}, "nest": {"_count": 1, "from": {"_count": 1}}, "erupting": {"_count": 1, "into": {"_count": 1}}, "circling": {"_count": 1, "her": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "attacked": {"_count": 1, "pecking": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "fluttered": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "squirrels": {"_count": 1}}, "she": {"_count": 1, "set": {"_count": 1}}, "in": {"_count": 1, "bright": {"_count": 1}}, "call": {"_count": 1, "a": {"_count": 1}}, "rose": {"_count": 1, "shrieking": {"_count": 1}}}, "flying": {"_count": 177, "in": {"_count": 11, "every": {"_count": 4}, "all": {"_count": 2}, "close": {"_count": 1}, "panic": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 2}}, "by": {"_count": 1, "daylight": {"_count": 1}}, "around": {"_count": 8, "": {"_count": 1}, "outside": {"_count": 1}, "me": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}, "lately": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "motorcycle": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 7}, "?": {"_count": 1}, "!": {"_count": 3}}, "past": {"_count": 3, "the": {"_count": 2}, "them": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "as": {"_count": 5, "Neville": {"_count": 1}, "he": {"_count": 2}, "fast": {"_count": 1}, "she": {"_count": 1}}, "tips": {"_count": 1, "shed": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 4, "an": {"_count": 1}, "Krum": {"_count": 1}, "flames": {"_count": 1}, "smoke": {"_count": 1}}, "dodges": {"_count": 1, "a": {"_count": 1}}, "balls": {"_count": 1, "and": {"_count": 1}}, "car": {"_count": 7, "": {"_count": 3}, "parked": {"_count": 1}, "Well": {"_count": 1}, "two": {"_count": 1}, "available": {"_count": 1}}, "an": {"_count": 1, "illegal": {"_count": 1}}, "gnomes": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "up": {"_count": 1, "toward": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 2}, "them": {"_count": 1}}, "cars": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "close": {"_count": 1}, "badly": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "yesterday": {"_count": 1, "really": {"_count": 1}}, "straight": {"_count": 2, "at": {"_count": 1}, "up": {"_count": 1}}, "upward": {"_count": 1, "through": {"_count": 1}}, "to": {"_count": 5, "Hogwarts": {"_count": 1}, "collide": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 1}, "Tonkss": {"_count": 1}}, "everywhere": {"_count": 5, "as": {"_count": 1}, "though": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 2}}, "out": {"_count": 4, "of": {"_count": 3}, "at": {"_count": 1}}, "but": {"_count": 2, "something": {"_count": 1}, "not": {"_count": 1}}, "for": {"_count": 2, "Gryffindor": {"_count": 1}, "barely": {"_count": 1}}, "it": {"_count": 2, "he": {"_count": 1}, "felt": {"_count": 1}}, "at": {"_count": 5, "breakneck": {"_count": 1}, "him": {"_count": 1}, "random": {"_count": 1}, "me": {"_count": 1}, "them": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "from": {"_count": 5, "his": {"_count": 2}, "student": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}}, "off": {"_count": 2, "again": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "carpets": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "again": {"_count": 3, "and": {"_count": 1}, "flying": {"_count": 1}, "whether": {"_count": 1}}, "through": {"_count": 7, "the": {"_count": 6}, "wisps": {"_count": 1}}, "overhead": {"_count": 1, "and": {"_count": 1}}, "fantasies": {"_count": 1, "came": {"_count": 1}}, "north": {"_count": 2, "immediately": {"_count": 1}, "": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "horses": {"_count": 1, "that": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "across": {"_count": 5, "the": {"_count": 5}}, "along": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "Ford": {"_count": 1, "Anglia": {"_count": 1}}, "directly": {"_count": 2, "at": {"_count": 2}}, "thisll": {"_count": 1, "disguise": {"_count": 1}}, "dont": {"_count": 1, "stop": {"_count": 1}}, "east": {"_count": 1, "and": {"_count": 1}}, "Muggle": {"_count": 1, "vehicles": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "horse": {"_count": 2, "Cho": {"_count": 1}, "wasnt": {"_count": 1}}, "long": {"_count": 1, "distances": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "that": {"_count": 1, "some": {"_count": 1}}, "heels": {"_count": 1, "at": {"_count": 1}}, "saucers": {"_count": 1, "": {"_count": 1}}, "beside": {"_count": 1, "Hagrids": {"_count": 1}}, "bogeys": {"_count": 1, "attacking": {"_count": 1}}, "than": {"_count": 1, "with": {"_count": 1}}, "forward": {"_count": 1, "in": {"_count": 1}}, "covered": {"_count": 1, "from": {"_count": 1}}, "Bill": {"_count": 1, "waved": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "extremely": {"_count": 1, "well": {"_count": 1}}, "motorbike": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "broom": {"_count": 1, "You": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "as": {"_count": 1}}, "chunks": {"_count": 1, "of": {"_count": 1}}, "flying": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 1, "triumph": {"_count": 1}}, "silver": {"_count": 1, "as": {"_count": 1}}, "ever": {"_count": 1, "deeper": {"_count": 1}}, "spells": {"_count": 1, "Harry": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "alongside": {"_count": 1, "Snape": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}}, "every": {"_count": 525, "direction": {"_count": 25, "since": {"_count": 1}, "as": {"_count": 1}, "for": {"_count": 2}, "like": {"_count": 2}, "and": {"_count": 2}, "gliding": {"_count": 1}, "big": {"_count": 1}, "": {"_count": 8}, "toward": {"_count": 1}, "lying": {"_count": 1}, "deafened": {"_count": 1}, "they": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 1}, "some": {"_count": 1}}, "child": {"_count": 1, "in": {"_count": 1}}, "single": {"_count": 10, "day": {"_count": 1}, "entrance": {"_count": 1}, "one": {"_count": 2}, "voice": {"_count": 1}, "teachers": {"_count": 1}, "person": {"_count": 3}, "goal": {"_count": 1}}, "day": {"_count": 20, "": {"_count": 6}, "after": {"_count": 1}, "in": {"_count": 1}, "not": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 1}, "she": {"_count": 1}, "of": {"_count": 1}, "you": {"_count": 1}, "its": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}, "said": {"_count": 1}}, "syllable": {"_count": 4, "trembled": {"_count": 1}, "that": {"_count": 1}, "rang": {"_count": 1}, "": {"_count": 1}}, "vacation": {"_count": 1, "with": {"_count": 1}}, "kid": {"_count": 1, "in": {"_count": 1}}, "time": {"_count": 67, "theyd": {"_count": 1}, "YouKnow": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 3}, "they": {"_count": 7}, "he": {"_count": 25}, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "a": {"_count": 2}, "she": {"_count": 5}, "we": {"_count": 2}, "shes": {"_count": 1}, "someone": {"_count": 3}, "Percys": {"_count": 1}, "Hermione": {"_count": 2}, "you": {"_count": 3}, "Slughorn": {"_count": 1}, "Harry": {"_count": 1}, "Professor": {"_count": 1}, "while": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 2}, "youve": {"_count": 1}}, "odd": {"_count": 1, "thing": {"_count": 1}}, "morning": {"_count": 5, "askin": {"_count": 1}, "since": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}, "looking": {"_count": 1}}, "ten": {"_count": 1, "years": {"_count": 1}}, "second": {"_count": 4, "": {"_count": 2}, "then": {"_count": 1}, "to": {"_count": 1}}, "now": {"_count": 20, "and": {"_count": 20}}, "wand": {"_count": 3, "Ive": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}}, "color": {"_count": 2, "wound": {"_count": 1}, "a": {"_count": 1}}, "flavor": {"_count": 3, "they": {"_count": 1}, "you": {"_count": 2}}, "Wednesday": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "word": {"_count": 26, "like": {"_count": 1}, "desperate": {"_count": 1}, "": {"_count": 7}, "he": {"_count": 3}, "of": {"_count": 3}, "we": {"_count": 1}, "Umbridge": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "Potter": {"_count": 1}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}, "cost": {"_count": 1}, "Dedalus": {"_count": 1}, "with": {"_count": 2}}, "turn": {"_count": 1, "Harry": {"_count": 1}}, "few": {"_count": 17, "feet": {"_count": 3}, "hours": {"_count": 1}, "seconds": {"_count": 1}, "inches": {"_count": 1}, "days": {"_count": 2}, "pages": {"_count": 1}, "lessons": {"_count": 1}, "minutes": {"_count": 3}, "weeks": {"_count": 1}, "yards": {"_count": 1}, "steps": {"_count": 2}}, "half": {"_count": 3, "hour": {"_count": 2}, "an": {"_count": 1}}, "sigh": {"_count": 1, "of": {"_count": 1}}, "cracking": {"_count": 1, "twig": {"_count": 1}}, "statues": {"_count": 1, "shadow": {"_count": 1}}, "distant": {"_count": 1, "breath": {"_count": 1}}, "page": {"_count": 1, "were": {"_count": 1}}, "flower": {"_count": 1, "bed": {"_count": 1}}, "inch": {"_count": 11, "of": {"_count": 11}}, "meal": {"_count": 1, "": {"_count": 1}}, "exam": {"_count": 3, "snapped": {"_count": 1}, "class": {"_count": 1}, "afterward": {"_count": 1}}, "stride": {"_count": 1, "of": {"_count": 1}}, "blinding": {"_count": 1, "flash": {"_count": 1}}, "one": {"_count": 12, "of": {"_count": 12}}, "student": {"_count": 3, "in": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}}, "pupil": {"_count": 1, "Filch": {"_count": 1}}, "step": {"_count": 10, "they": {"_count": 2}, "he": {"_count": 4}, "the": {"_count": 1}, "Harry": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}}, "face": {"_count": 7, "turned": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "goblet": {"_count": 1, "of": {"_count": 1}}, "evening": {"_count": 5, "": {"_count": 1}, "cornering": {"_count": 1}, "vandalizing": {"_count": 1}, "this": {"_count": 1}, "in": {"_count": 1}}, "class": {"_count": 1, "You": {"_count": 1}}, "night": {"_count": 14, "after": {"_count": 2}, "for": {"_count": 1}, "": {"_count": 5}, "of": {"_count": 1}, "Ron": {"_count": 1}, "before": {"_count": 2}, "dreams": {"_count": 1}, "they": {"_count": 1}}, "chance": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "other": {"_count": 14, "week": {"_count": 1}, "step": {"_count": 3}, "toilet": {"_count": 1}, "wizard": {"_count": 1}, "miserable": {"_count": 1}, "day": {"_count": 3}, "pair": {"_count": 1}, "bit": {"_count": 1}, "feeling": {"_count": 1}, "thought": {"_count": 1}}, "moment": {"_count": 2, "was": {"_count": 1}, "that": {"_count": 1}}, "move": {"_count": 2, "would": {"_count": 1}, "The": {"_count": 1}}, "secret": {"_count": 1, "passage": {"_count": 1}}, "entrance": {"_count": 2, "to": {"_count": 1}, "into": {"_count": 1}}, "person": {"_count": 3, "to": {"_count": 1}, "in": {"_count": 1}, "I": {"_count": 1}}, "painting": {"_count": 1, "in": {"_count": 1}}, "hour": {"_count": 5, "a": {"_count": 1}, "": {"_count": 4}}, "good": {"_count": 1, "feeling": {"_count": 1}}, "happy": {"_count": 1, "memory": {"_count": 1}}, "corner": {"_count": 5, "of": {"_count": 3}, "": {"_count": 1}, "each": {"_count": 1}}, "detail": {"_count": 6, "of": {"_count": 5}, "then": {"_count": 1}}, "bit": {"_count": 7, "of": {"_count": 6}, "as": {"_count": 1}}, "suit": {"_count": 1, "of": {"_count": 1}}, "glorious": {"_count": 1, "inch": {"_count": 1}}, "angle": {"_count": 2, "until": {"_count": 1}, "the": {"_count": 1}}, "Transfiguration": {"_count": 1, "lesson": {"_count": 1}}, "head": {"_count": 2, "turned": {"_count": 1}, "in": {"_count": 1}}, "little": {"_count": 3, "table": {"_count": 1}, "detail": {"_count": 2}}, "piece": {"_count": 1, "of": {"_count": 1}}, "part": {"_count": 3, "of": {"_count": 3}}, "desperate": {"_count": 1, "move": {"_count": 1}}, "month": {"_count": 3, "under": {"_count": 1}, "": {"_count": 1}, "made": {"_count": 1}}, "side": {"_count": 6, "they": {"_count": 1}, "their": {"_count": 1}, "broomsticks": {"_count": 1}, "Hagrid": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "ounce": {"_count": 4, "of": {"_count": 4}}, "subject": {"_count": 1, "": {"_count": 1}}, "meddler": {"_count": 1, "from": {"_count": 1}}, "summer": {"_count": 3, "prior": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "nook": {"_count": 2, "and": {"_count": 2}}, "school": {"_count": 2, "year": {"_count": 1}, "holiday": {"_count": 1}}, "year": {"_count": 3, "said": {"_count": 1}, "Still": {"_count": 1}, "then": {"_count": 1}}, "five": {"_count": 1, "years": {"_count": 1}}, "House": {"_count": 1, "table": {"_count": 1}}, "courtesy": {"_count": 1, "to": {"_count": 1}}, "breed": {"_count": 2, "imaginable": {"_count": 1}, "": {"_count": 1}}, "thought": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "alternate": {"_count": 1, "step": {"_count": 1}}, "right": {"_count": 4, "step": {"_count": 1}, "to": {"_count": 2}, "said": {"_count": 1}}, "picture": {"_count": 1, "lining": {"_count": 1}}, "appearance": {"_count": 3, "of": {"_count": 3}}, "book": {"_count": 1, "he": {"_count": 1}}, "fiber": {"_count": 1, "of": {"_count": 1}}, "surface": {"_count": 3, "Lee": {"_count": 1}, "large": {"_count": 1}, "": {"_count": 1}}, "possible": {"_count": 2, "opportunity": {"_count": 2}}, "retelling": {"_count": 1, "": {"_count": 1}}, "sentence": {"_count": 1, "to": {"_count": 1}}, "effort": {"_count": 2, "not": {"_count": 1}, "": {"_count": 1}}, "nerve": {"_count": 3, "in": {"_count": 2}, "as": {"_count": 1}}, "wall": {"_count": 1, "on": {"_count": 1}}, "available": {"_count": 2, "moment": {"_count": 1}, "surface": {"_count": 1}}, "letter": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "passing": {"_count": 1, "minute": {"_count": 1}}, "shadowy": {"_count": 1, "space": {"_count": 1}}, "spell": {"_count": 1, "that": {"_count": 1}}, "thread": {"_count": 1, "of": {"_count": 1}}, "last": {"_count": 5, "particle": {"_count": 1}, "ounce": {"_count": 1}, "bit": {"_count": 1}, "drop": {"_count": 1}, "man": {"_count": 1}}, "line": {"_count": 3, "of": {"_count": 3}}, "bone": {"_count": 2, "in": {"_count": 1}, "was": {"_count": 1}}, "respect": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "magazine": {"_count": 1, "she": {"_count": 1}}, "lamp": {"_count": 1, "in": {"_count": 1}}, "trace": {"_count": 1, "of": {"_count": 1}}, "security": {"_count": 2, "measure": {"_count": 1}, "person": {"_count": 1}}, "tiny": {"_count": 3, "particle": {"_count": 1}, "detail": {"_count": 2}}, "boil": {"_count": 1, "on": {"_count": 1}}, "so": {"_count": 2, "often": {"_count": 2}}, "test": {"_count": 2, "Actually": {"_count": 1}, "Rosie": {"_count": 1}}, "movement": {"_count": 1, "": {"_count": 1}}, "cushion": {"_count": 1, "was": {"_count": 1}}, "family": {"_count": 1, "member": {"_count": 1}}, "tear": {"_count": 1, "clinging": {"_count": 1}}, "doorway": {"_count": 1, "and": {"_count": 1}}, "likelihood": {"_count": 1, "that": {"_count": 1}}, "aspect": {"_count": 1, "of": {"_count": 1}}, "new": {"_count": 1, "jinx": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "shop": {"_count": 1, "window": {"_count": 1}}, "dish": {"_count": 1, "within": {"_count": 1}}, "Occlumency": {"_count": 1, "lesson": {"_count": 1}}, "occupant": {"_count": 1, "of": {"_count": 1}}, "fire": {"_count": 1, "in": {"_count": 1}}, "sign": {"_count": 3, "of": {"_count": 3}}, "week": {"_count": 1, "": {"_count": 1}}, "free": {"_count": 1, "moment": {"_count": 1}}, "three": {"_count": 1, "of": {"_count": 1}}, "sagging": {"_count": 1, "line": {"_count": 1}}, "tier": {"_count": 1, "until": {"_count": 1}}, "particle": {"_count": 2, "of": {"_count": 2}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "pace": {"_count": 1, "he": {"_count": 1}}, "waking": {"_count": 1, "moment": {"_count": 1}}, "birthday": {"_count": 1, "and": {"_count": 1}}, "minute": {"_count": 2, "or": {"_count": 2}}, "bubble": {"_count": 1, "and": {"_count": 1}}, "seventh": {"_count": 1, "counterclockwise": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "member": {"_count": 2, "of": {"_count": 2}}, "thing": {"_count": 1, "See": {"_count": 1}}, "Potions": {"_count": 2, "class": {"_count": 1}, "lesson": {"_count": 1}}, "use": {"_count": 1, "": {"_count": 1}}, "position": {"_count": 1, "better": {"_count": 1}}, "examination": {"_count": 1, "he": {"_count": 1}}, "variation": {"_count": 1, "of": {"_count": 1}}, "bottle": {"_count": 1, "after": {"_count": 1}}, "prophecy": {"_count": 1, "in": {"_count": 1}}, "Saturday": {"_count": 2, "until": {"_count": 2}}, "bathroom": {"_count": 1, "in": {"_count": 1}}, "breath": {"_count": 1, "seemed": {"_count": 1}}, "limb": {"_count": 1, "his": {"_count": 1}}, "protection": {"_count": 3, "that": {"_count": 1}, "we": {"_count": 1}, "of": {"_count": 1}}, "prize": {"_count": 1, "of": {"_count": 1}}, "twentyfour": {"_count": 1, "hours": {"_count": 1}}, "change": {"_count": 1, "of": {"_count": 1}}, "Orderconnected": {"_count": 1, "house": {"_count": 1}}, "defensive": {"_count": 1, "spell": {"_count": 1}}, "socalled": {"_count": 1, "Muggleborn": {"_count": 1}}, "young": {"_count": 1, "witch": {"_count": 1}}, "witch": {"_count": 1, "and": {"_count": 1}}, "issue": {"_count": 1, "that": {"_count": 1}}, "plant": {"_count": 1, "in": {"_count": 1}}, "blink": {"_count": 1, "of": {"_count": 1}}, "place": {"_count": 1, "that": {"_count": 1}}, "feature": {"_count": 1, "distorted": {"_count": 1}}, "drop": {"_count": 1, "of": {"_count": 1}}, "blister": {"_count": 1, "felt": {"_count": 1}}, "orifice": {"_count": 1, "he": {"_count": 1}}, "Ravenclaw": {"_count": 1, "froze": {"_count": 1}}, "eye": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "combatant": {"_count": 1, "laid": {"_count": 1}}, "Hogwarts": {"_count": 1, "student": {"_count": 1}}, "quarter": {"_count": 1, "as": {"_count": 1}}}, "direction": {"_count": 134, "since": {"_count": 1, "sunrise": {"_count": 1}}, "": {"_count": 40, ".": {"_count": 40}}, "for": {"_count": 3, "a": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "quickly": {"_count": 1}, "quietly": {"_count": 1}}, "of": {"_count": 26, "the": {"_count": 13}, "her": {"_count": 2}, "Adrian": {"_count": 1}, "new": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}, "Hagrid": {"_count": 1}, "Fred": {"_count": 1}, "Hagrids": {"_count": 1}, "Hogwarts": {"_count": 1}, "Harrys": {"_count": 1}, "Nicks": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 3, "Peeves": {"_count": 1}, "saw": {"_count": 1}, "": {"_count": 1}}, "three": {"_count": 1, "drooling": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "might": {"_count": 1}}, "to": {"_count": 1, "go": {"_count": 1}}, "like": {"_count": 2, "rockets": {"_count": 1}, "little": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}, "and": {"_count": 7, "Aunt": {"_count": 1}, "none": {"_count": 1}, "resumed": {"_count": 1}, "remembering": {"_count": 1}, "tried": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "gazing": {"_count": 1, "around": {"_count": 1}}, "warned": {"_count": 1, "him": {"_count": 1}}, "her": {"_count": 1, "hat": {"_count": 1}}, "laughing": {"_count": 1, "and": {"_count": 1}}, "gliding": {"_count": 1, "around": {"_count": 1}}, "big": {"_count": 1, "fat": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "she": {"_count": 1, "had": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "lying": {"_count": 1, "about": {"_count": 1}}, "his": {"_count": 1, "wide": {"_count": 1}}, "before": {"_count": 2, "": {"_count": 1}, "flicking": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 3, "Impediment": {"_count": 1}, "crowd": {"_count": 1}, "original": {"_count": 1}}, "deafened": {"_count": 1, "by": {"_count": 1}}, "followed": {"_count": 1, "his": {"_count": 1}}, "they": {"_count": 2, "do": {"_count": 1}, "would": {"_count": 1}}, "if": {"_count": 1, "its": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "suited": {"_count": 1, "Malfoy": {"_count": 1}}, "jus": {"_count": 1, "tell": {"_count": 1}}, "mid": {"_count": 1, "word": {"_count": 1}}, "once": {"_count": 1, "outside": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "keep": {"_count": 1, "her": {"_count": 1}}, "trailed": {"_count": 1, "by": {"_count": 1}}, "apparently": {"_count": 1, "under": {"_count": 1}}, "from": {"_count": 2, "Lord": {"_count": 1}, "which": {"_count": 1}}, "murmured": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 1, "hastily": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "throwing": {"_count": 1, "bits": {"_count": 1}}, "we": {"_count": 1, "will": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "some": {"_count": 1, "carrying": {"_count": 1}}}, "since": {"_count": 307, "sunrise": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "the": {"_count": 33, "Dursleys": {"_count": 1}, "day": {"_count": 2}, "Quidditch": {"_count": 1}, "fluxweed": {"_count": 1}, "great": {"_count": 1}, "chocolate": {"_count": 1}, "dementor": {"_count": 1}, "legendary": {"_count": 1}, "time": {"_count": 1}, "Riddle": {"_count": 1}, "age": {"_count": 2}, "days": {"_count": 1}, "celebration": {"_count": 1}, "World": {"_count": 1}, "ball": {"_count": 2}, "tragic": {"_count": 1}, "first": {"_count": 2}, "third": {"_count": 1}, "arrival": {"_count": 1}, "founders": {"_count": 1}, "end": {"_count": 1}, "night": {"_count": 2}, "previous": {"_count": 1}, "start": {"_count": 1}, "encounter": {"_count": 1}, "last": {"_count": 1}, "headmaster": {"_count": 1}, "Order": {"_count": 1}}, "hed": {"_count": 9, "really": {"_count": 1}, "been": {"_count": 1}, "lost": {"_count": 1}, "found": {"_count": 3}, "last": {"_count": 1}, "returned": {"_count": 1}, "left": {"_count": 1}}, "he": {"_count": 42, "was": {"_count": 2}, "let": {"_count": 2}, "heard": {"_count": 2}, "had": {"_count": 24}, "started": {"_count": 1}, "arrived": {"_count": 1}, "got": {"_count": 2}, "first": {"_count": 1}, "left": {"_count": 2}, "joined": {"_count": 1}, "sneaked": {"_count": 1}, "regained": {"_count": 1}, "killed": {"_count": 1}, "himself": {"_count": 1}}, "I": {"_count": 28, "was": {"_count": 5}, "made": {"_count": 1}, "last": {"_count": 2}, "brought": {"_count": 1}, "left": {"_count": 5}, "got": {"_count": 5}, "went": {"_count": 1}, "became": {"_count": 1}, "escaped": {"_count": 1}, "found": {"_count": 1}, "knew": {"_count": 1}, "gained": {"_count": 1}, "coerced": {"_count": 1}, "refused": {"_count": 1}, "bled": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 14}, "?": {"_count": 2}, "!": {"_count": 3}}, "382b": {"_count": 1, "": {"_count": 1}}, "Hagrids": {"_count": 1, "note": {"_count": 1}}, "Charlie": {"_count": 1, "left": {"_count": 1}}, "theyd": {"_count": 2, "seen": {"_count": 1}, "gotten": {"_count": 1}}, "Harry": {"_count": 6, "and": {"_count": 1}, "had": {"_count": 4}, "joined": {"_count": 1}}, "you": {"_count": 7, "mentioned": {"_count": 1}, "triumphed": {"_count": 1}, "were": {"_count": 2}, "first": {"_count": 1}, "got": {"_count": 1}, "accosted": {"_count": 1}}, "Hagrid": {"_count": 2, "had": {"_count": 2}}, "last": {"_count": 6, "night": {"_count": 2}, "time": {"_count": 1}, "August": {"_count": 1}, "we": {"_count": 1}, "June": {"_count": 1}}, "his": {"_count": 13, "trip": {"_count": 1}, "last": {"_count": 3}, "first": {"_count": 2}, "own": {"_count": 1}, "return": {"_count": 3}, "talk": {"_count": 1}, "disastrous": {"_count": 1}, "father": {"_count": 1}}, "then": {"_count": 3, "Im": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 1}}, "dawn": {"_count": 1, "he": {"_count": 1}}, "Lockhart": {"_count": 1, "had": {"_count": 1}}, "August": {"_count": 1, "and": {"_count": 1}}, "our": {"_count": 1, "last": {"_count": 1}}, "its": {"_count": 2, "crash": {"_count": 1}, "arrival": {"_count": 1}}, "those": {"_count": 2, "on": {"_count": 1}, "stolen": {"_count": 1}}, "Justin": {"_count": 1, "and": {"_count": 1}}, "where": {"_count": 1, "Hagrid": {"_count": 1}}, "they": {"_count": 12, "had": {"_count": 8}, "were": {"_count": 1}, "would": {"_count": 1}, "started": {"_count": 1}, "tried": {"_count": 1}}, "we": {"_count": 6, "arrived": {"_count": 2}, "came": {"_count": 1}, "got": {"_count": 1}, "last": {"_count": 1}, "met": {"_count": 1}}, "BBill": {"_count": 1, "came": {"_count": 1}}, "five": {"_count": 1, "gettin": {"_count": 1}}, "she": {"_count": 5, "arrived": {"_count": 1}, "left": {"_count": 1}, "had": {"_count": 2}, "married": {"_count": 1}}, "Lupin": {"_count": 1, "already": {"_count": 1}}, "Tuesday": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Christmas": {"_count": 1, "and": {"_count": 1}}, "Crookshanks": {"_count": 1, "had": {"_count": 1}}, "Chris": {"_count": 1, "mas": {"_count": 1}}, "Blacks": {"_count": 1, "second": {"_count": 1}}, "Gryffindors": {"_count": 1, "triumph": {"_count": 1}}, "lost": {"_count": 2, "the": {"_count": 1}, "boy": {"_count": 1}}, "Rons": {"_count": 2, "return": {"_count": 1}, "dad": {"_count": 1}}, "except": {"_count": 1, "when": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "their": {"_count": 6, "very": {"_count": 1}, "own": {"_count": 1}, "last": {"_count": 1}, "private": {"_count": 1}, "arrival": {"_count": 1}, "Sorting": {"_count": 1}}, "Moodys": {"_count": 1, "arrival": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "first": {"_count": 1, "to": {"_count": 1}}, "becoming": {"_count": 1, "champion": {"_count": 1}}, "Saturday": {"_count": 2, "night": {"_count": 1}, "was": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 3, "have": {"_count": 1}, "has": {"_count": 2}}, "a": {"_count": 1, "job": {"_count": 1}}, "Put": {"_count": 1, "it": {"_count": 1}}, "November": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 2, "had": {"_count": 2}}, "shed": {"_count": 1, "had": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Rita": {"_count": 1, "Skeeters": {"_count": 1}}, "before": {"_count": 2, "Azkaban": {"_count": 1}, "Christmas": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "been": {"_count": 2, "dashed": {"_count": 1}, "rushing": {"_count": 1}}, "that": {"_count": 1, "scum": {"_count": 1}}, "my": {"_count": 3, "dear": {"_count": 1}, "first": {"_count": 1}, "last": {"_count": 1}}, "dinner": {"_count": 1, "the": {"_count": 1}}, "Cassandra": {"_count": 1, "to": {"_count": 1}}, "Filch": {"_count": 1, "accused": {"_count": 1}}, "hes": {"_count": 1, "been": {"_count": 1}}, "have": {"_count": 1, "arrived": {"_count": 1}}, "earned": {"_count": 1, "my": {"_count": 1}}, "evaporated": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 1, "certainly": {"_count": 1}}, "Dumbledore": {"_count": 2, "had": {"_count": 2}}, "Umbridge": {"_count": 1, "had": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "Hermione": {"_count": 1, "would": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Voldemort": {"_count": 2, "returned": {"_count": 1}, "was": {"_count": 1}}, "your": {"_count": 2, "extraordinary": {"_count": 1}, "wand": {"_count": 1}}, "Siriuss": {"_count": 1, "death": {"_count": 1}}, "sustained": {"_count": 1, "a": {"_count": 1}}, "seven": {"_count": 1, "oclock": {"_count": 1}}, "Sirius": {"_count": 2, "died": {"_count": 1}, "He": {"_count": 1}}, "Dumbledores": {"_count": 2, "arrival": {"_count": 1}, "death": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "YouKnowWho": {"_count": 1, "came": {"_count": 1}}, "Thats": {"_count": 1, "enough": {"_count": 1}}, "birth": {"_count": 1, "Who": {"_count": 1}}, "September": {"_count": 1, "was": {"_count": 1}}, "oh": {"_count": 1, "no": {"_count": 1}}, "Percy": {"_count": 1, "had": {"_count": 1}}, "leaving": {"_count": 3, "us": {"_count": 1}, "Grimmauld": {"_count": 1}, "the": {"_count": 1}}, "died": {"_count": 1, "its": {"_count": 1}}, "setting": {"_count": 1, "Harry": {"_count": 1}}, "learned": {"_count": 1, "that": {"_count": 1}}, "reading": {"_count": 1, "this": {"_count": 1}}, "reaching": {"_count": 1, "the": {"_count": 1}}, "decided": {"_count": 1, "not": {"_count": 1}}, "disappeared": {"_count": 1, "into": {"_count": 1}}, "Mr": {"_count": 1, "Weasleys": {"_count": 1}}, "accepted": {"_count": 1, "the": {"_count": 1}}, "childhood": {"_count": 1, "": {"_count": 1}}, "Kreacher": {"_count": 1, "had": {"_count": 1}}, "condescended": {"_count": 1, "to": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "escaping": {"_count": 1, "from": {"_count": 1}}, "given": {"_count": 1, "up": {"_count": 1}}}, "sunrise": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "slowly": {"_count": 1, "crept": {"_count": 1}}, "spinning": {"_count": 1, "across": {"_count": 1}}}, "Experts": {"_count": 1, "are": {"_count": 1, "unable": {"_count": 1}}}, "unable": {"_count": 96, "to": {"_count": 95, "explain": {"_count": 1}, "keep": {"_count": 3}, "look": {"_count": 4}, "eat": {"_count": 1}, "talk": {"_count": 1}, "speak": {"_count": 5}, "say": {"_count": 5}, "sit": {"_count": 1}, "hold": {"_count": 2}, "return": {"_count": 1}, "penetrate": {"_count": 1}, "restrain": {"_count": 1}, "find": {"_count": 4}, "move": {"_count": 6}, "stop": {"_count": 3}, "tell": {"_count": 3}, "make": {"_count": 2}, "contain": {"_count": 2}, "account": {"_count": 2}, "proceed": {"_count": 1}, "reach": {"_count": 1}, "banish": {"_count": 1}, "recognize": {"_count": 2}, "settle": {"_count": 1}, "bear": {"_count": 1}, "think": {"_count": 1}, "see": {"_count": 5}, "provide": {"_count": 1}, "believe": {"_count": 2}, "stand": {"_count": 3}, "remember": {"_count": 1}, "revive": {"_count": 1}, "touch": {"_count": 1}, "vent": {"_count": 1}, "recall": {"_count": 1}, "pronounce": {"_count": 1}, "imagine": {"_count": 1}, "locate": {"_count": 1}, "help": {"_count": 2}, "prevent": {"_count": 1}, "perform": {"_count": 1}, "face": {"_count": 1}, "wring": {"_count": 1}, "remove": {"_count": 1}, "Summon": {"_count": 1}, "walk": {"_count": 1}, "read": {"_count": 1}, "take": {"_count": 2}, "loosen": {"_count": 1}, "meet": {"_count": 1}, "appreciate": {"_count": 1}, "grasp": {"_count": 1}, "control": {"_count": 1}, "suppress": {"_count": 1}, "finish": {"_count": 1}, "be": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}}, "explain": {"_count": 104, "why": {"_count": 6, "the": {"_count": 3}, "you": {"_count": 1}, "each": {"_count": 1}, "it": {"_count": 1}}, "everything": {"_count": 6, "to": {"_count": 1}, "back": {"_count": 1}, "that": {"_count": 1}, "dear": {"_count": 1}, "repeated": {"_count": 1}, "just": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "that": {"_count": 4, "he": {"_count": 1}, "hed": {"_count": 1}, "the": {"_count": 1}, "members": {"_count": 1}}, "how": {"_count": 9, "it": {"_count": 1}, "things": {"_count": 1}, "my": {"_count": 1}, "you": {"_count": 1}, "come": {"_count": 1}, "every": {"_count": 1}, "Dobby": {"_count": 1}, "Dumbledore": {"_count": 1}, "Muggles": {"_count": 1}}, "anything": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 3, "rules": {"_count": 1}, "wisdom": {"_count": 1}, "situation": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "this": {"_count": 4, "Hermione": {"_count": 1}, "": {"_count": 2}, "more": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 2}, "Hermione": {"_count": 1}}, "now": {"_count": 2, "look": {"_count": 1}, "said": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 7, "his": {"_count": 1}, "Muggle": {"_count": 1}, "himself": {"_count": 1}, "yeh": {"_count": 1}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "your": {"_count": 1}}, "but": {"_count": 3, "there": {"_count": 1}, "before": {"_count": 1}, "if": {"_count": 1}}, "a": {"_count": 2, "lot": {"_count": 2}}, "even": {"_count": 2, "to": {"_count": 2}}, "when": {"_count": 1, "we": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "ter": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "We": {"_count": 1, "can": {"_count": 1}}, "afterwards": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "is": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 7, "that": {"_count": 1}, "youre": {"_count": 1}, "had": {"_count": 1}, "hed": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "my": {"_count": 1}}, "inside": {"_count": 1, "said": {"_count": 1}}, "later": {"_count": 3, "Harry": {"_count": 1}, "Ive": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 4, "all": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 1}}, "himself": {"_count": 1, "before": {"_count": 1}}, "satisfactorily": {"_count": 2, "": {"_count": 1}, "why": {"_count": 1}}, "about": {"_count": 2, "Umbridge": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 1, "predicament": {"_count": 1}}, "Rons": {"_count": 1, "dad": {"_count": 1}}, "I": {"_count": 1, "tried": {"_count": 1}}, "properly": {"_count": 1, "but": {"_count": 1}}, "ow": {"_count": 1, "zey": {"_count": 1}}, "another": {"_count": 1, "time": {"_count": 1}}, "then": {"_count": 1, "why": {"_count": 1}}, "after": {"_count": 1, "Griphook": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}}, "suddenly": {"_count": 446, "changed": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 4, "silently": {"_count": 1}, "turned": {"_count": 1}, "he": {"_count": 1}, "loudly": {"_count": 1}}, "at": {"_count": 7, "the": {"_count": 3}, "them": {"_count": 1}, "Parvati": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 13, "though": {"_count": 4}, "any": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 4}, "warm": {"_count": 1}, "a": {"_count": 1}}, "Hagrid": {"_count": 1, "let": {"_count": 1}}, "orange": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 48, ".": {"_count": 48}}, "opened": {"_count": 3, "its": {"_count": 1}, "and": {"_count": 2}}, "found": {"_count": 3, "his": {"_count": 1}, "himself": {"_count": 2}}, "anxious": {"_count": 1, "": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "a": {"_count": 5, "loud": {"_count": 1}, "sound": {"_count": 1}, "whole": {"_count": 1}, "high": {"_count": 1}, "flaming": {"_count": 1}}, "gone": {"_count": 3, "completely": {"_count": 1}, "into": {"_count": 2}}, "nodding": {"_count": 1, "toward": {"_count": 1}}, "stern": {"_count": 4, "": {"_count": 2}, "not": {"_count": 1}, "for": {"_count": 1}}, "realized": {"_count": 13, "that": {"_count": 8}, "what": {"_count": 2}, "who": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}}, "he": {"_count": 8, "wasnt": {"_count": 1}, "felt": {"_count": 2}, "found": {"_count": 1}, "didnt": {"_count": 1}, "was": {"_count": 2}, "could": {"_count": 1}}, "pointing": {"_count": 5, "at": {"_count": 3}, "out": {"_count": 1}, "toward": {"_count": 1}}, "became": {"_count": 7, "very": {"_count": 2}, "a": {"_count": 1}, "aware": {"_count": 3}, "clear": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "noticed": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "broke": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "streamed": {"_count": 1, "into": {"_count": 1}}, "glowed": {"_count": 1, "scarlet": {"_count": 1}}, "smiled": {"_count": 2, "": {"_count": 1}, "very": {"_count": 1}}, "awake": {"_count": 1, "as": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 1}, "loose": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 1}, "Bagmans": {"_count": 1}, "Christmas": {"_count": 1}}, "grabbed": {"_count": 3, "Rons": {"_count": 1}, "Harrys": {"_count": 2}}, "out": {"_count": 8, "of": {"_count": 8}}, "decide": {"_count": 1, "to": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 6, "": {"_count": 1}, "Potter": {"_count": 1}, "felt": {"_count": 2}, "found": {"_count": 1}, "knew": {"_count": 1}}, "suspicious": {"_count": 1, "": {"_count": 1}}, "drained": {"_count": 1, "from": {"_count": 1}}, "turned": {"_count": 3, "to": {"_count": 1}, "into": {"_count": 1}, "blank": {"_count": 1}}, "have": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 4, "most": {"_count": 1}, "floor": {"_count": 1}, "Firebolt": {"_count": 1}, "sparks": {"_count": 1}}, "reared": {"_count": 1, "on": {"_count": 1}}, "stopped": {"_count": 5, "": {"_count": 1}, "speaking": {"_count": 2}, "smiling": {"_count": 1}, "laughing": {"_count": 1}}, "around": {"_count": 2, "Harrys": {"_count": 2}}, "jumped": {"_count": 2, "to": {"_count": 1}, "around": {"_count": 1}}, "looked": {"_count": 2, "horrified": {"_count": 1}, "as": {"_count": 1}}, "rang": {"_count": 1, "across": {"_count": 1}}, "flooded": {"_count": 1, "the": {"_count": 1}}, "dashed": {"_count": 1, "at": {"_count": 1}}, "surged": {"_count": 1, "back": {"_count": 1}}, "their": {"_count": 1, "wardrobes": {"_count": 1}}, "sat": {"_count": 2, "bolt": {"_count": 2}}, "shone": {"_count": 1, "with": {"_count": 1}}, "trembling": {"_count": 1, "all": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "food": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 7, "excitement": {"_count": 1}, "life": {"_count": 1}, "the": {"_count": 1}, "Neville": {"_count": 1}, "a": {"_count": 1}, "scarlet": {"_count": 1}, "Harry": {"_count": 1}}, "erupted": {"_count": 1, "": {"_count": 1}}, "pulling": {"_count": 1, "the": {"_count": 1}}, "whizzed": {"_count": 1, "into": {"_count": 1}}, "from": {"_count": 3, "under": {"_count": 1}, "the": {"_count": 2}}, "severe": {"_count": 1, "": {"_count": 1}}, "remembered": {"_count": 6, "the": {"_count": 2}, "why": {"_count": 1}, "urgent": {"_count": 1}, "": {"_count": 1}, "Dumbledore": {"_count": 1}}, "it": {"_count": 5, "had": {"_count": 1}, "seemed": {"_count": 2}, "was": {"_count": 1}, "found": {"_count": 1}}, "withdrew": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "an": {"_count": 1}, "Fudges": {"_count": 1}}, "froze": {"_count": 1, "his": {"_count": 1}}, "clenched": {"_count": 1, "on": {"_count": 1}}, "thick": {"_count": 1, "with": {"_count": 1}}, "wide": {"_count": 1, "awake": {"_count": 1}}, "echoed": {"_count": 1, "behind": {"_count": 1}}, "giving": {"_count": 2, "Harry": {"_count": 1}, "a": {"_count": 1}}, "flung": {"_count": 2, "out": {"_count": 1}, "himself": {"_count": 1}}, "into": {"_count": 3, "focus": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "reached": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 1}, "eyes": {"_count": 1}}, "lifted": {"_count": 2, "enough": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 6, "they": {"_count": 2}, "her": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "year": {"_count": 1}}, "Riddles": {"_count": 1, "outline": {"_count": 1}}, "masklike": {"_count": 1, "": {"_count": 1}}, "understood": {"_count": 4, "": {"_count": 3}, "who": {"_count": 1}}, "looking": {"_count": 7, "around": {"_count": 1}, "awkward": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 1}, "furious": {"_count": 1}, "back": {"_count": 1}, "at": {"_count": 1}}, "sparkled": {"_count": 1, "the": {"_count": 1}}, "shivered": {"_count": 1, "": {"_count": 1}}, "appeared": {"_count": 1, "behind": {"_count": 1}}, "withdrawn": {"_count": 1, "into": {"_count": 1}}, "ravenous": {"_count": 1, "helped": {"_count": 1}}, "frowning": {"_count": 2, "": {"_count": 1}, "your": {"_count": 1}}, "bent": {"_count": 1, "its": {"_count": 1}}, "fully": {"_count": 1, "grown": {"_count": 1}}, "hurrying": {"_count": 1, "forward": {"_count": 1}}, "putting": {"_count": 1, "his": {"_count": 1}}, "feeling": {"_count": 2, "a": {"_count": 1}, "much": {"_count": 1}}, "sharp": {"_count": 1, "voice": {"_count": 1}}, "giggled": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "havent": {"_count": 1}}, "deaf": {"_count": 1, "what": {"_count": 1}}, "they": {"_count": 1, "all": {"_count": 1}}, "realizing": {"_count": 2, "he": {"_count": 1}, "just": {"_count": 1}}, "heard": {"_count": 1, "a": {"_count": 1}}, "stood": {"_count": 3, "on": {"_count": 1}, "up": {"_count": 2}}, "uttered": {"_count": 1, "a": {"_count": 1}}, "whether": {"_count": 2, "Professor": {"_count": 1}, "youd": {"_count": 1}}, "bustling": {"_count": 1, "up": {"_count": 1}}, "caught": {"_count": 1, "sight": {"_count": 1}}, "dripping": {"_count": 1, "in": {"_count": 1}}, "getting": {"_count": 1, "up": {"_count": 1}}, "making": {"_count": 2, "everyone": {"_count": 1}, "Harry": {"_count": 1}}, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "widened": {"_count": 1, "as": {"_count": 1}}, "crossed": {"_count": 1, "to": {"_count": 1}}, "quite": {"_count": 1, "deranged": {"_count": 1}}, "overbright": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 4, "to": {"_count": 2}, "five": {"_count": 1}, "embarrassingly": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "businesslike": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "dim": {"_count": 1, "shadows": {"_count": 1}}, "attached": {"_count": 1, "themselves": {"_count": 1}}, "stuffed": {"_count": 1, "a": {"_count": 1}}, "what": {"_count": 1, "if": {"_count": 1}}, "extinguished": {"_count": 1, "": {"_count": 1}}, "peering": {"_count": 1, "over": {"_count": 1}}, "silent": {"_count": 2, "pub": {"_count": 1}, "at": {"_count": 1}}, "sounded": {"_count": 1, "hoarse": {"_count": 1}}, "run": {"_count": 1, "at": {"_count": 1}}, "reappeared": {"_count": 1, "in": {"_count": 1}}, "checking": {"_count": 1, "her": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "jerked": {"_count": 1, "irresistibly": {"_count": 1}}, "abandoning": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "spotted": {"_count": 2, "Harrys": {"_count": 1}, "Harry": {"_count": 1}}, "whipped": {"_count": 1, "off": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}, "dazzled": {"_count": 1, "by": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "illuminated": {"_count": 1, "as": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "spun": {"_count": 1, "from": {"_count": 1}}, "pressing": {"_count": 1, "her": {"_count": 1}}, "brightly": {"_count": 1, "illuminated": {"_count": 1}}, "gleaming": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "not": {"_count": 2, "smooth": {"_count": 1}, "only": {"_count": 1}}, "dawned": {"_count": 2, "on": {"_count": 1}, "upon": {"_count": 1}}, "red": {"_count": 1, "again": {"_count": 1}}, "vanished": {"_count": 1, "from": {"_count": 1}}, "devoid": {"_count": 1, "of": {"_count": 1}}, "pounding": {"_count": 1, "as": {"_count": 1}}, "furious": {"_count": 1, "": {"_count": 1}}, "serious": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "nervous": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "seeing": {"_count": 1, "her": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "sank": {"_count": 1, "right": {"_count": 1}}, "did": {"_count": 1, "something": {"_count": 1}}, "see": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "alarmed": {"_count": 1, "": {"_count": 1}}, "Crookshanks": {"_count": 1, "hissed": {"_count": 1}}, "felt": {"_count": 3, "a": {"_count": 1}, "sick": {"_count": 1}, "ashamed": {"_count": 1}}, "so": {"_count": 2, "loudly": {"_count": 1}, "tired": {"_count": 1}}, "without": {"_count": 1, "warning": {"_count": 1}}, "leapt": {"_count": 1, "up": {"_count": 1}}, "said": {"_count": 1, "angrily": {"_count": 1}}, "gold": {"_count": 1, "and": {"_count": 1}}, "landing": {"_count": 1, "flat": {"_count": 1}}, "how": {"_count": 1, "very": {"_count": 1}}, "came": {"_count": 1, "over": {"_count": 1}}, "full": {"_count": 5, "of": {"_count": 5}}, "knew": {"_count": 2, "that": {"_count": 1}, "who": {"_count": 1}}, "Harrys": {"_count": 2, "wand": {"_count": 1}, "mind": {"_count": 1}}, "lit": {"_count": 1, "with": {"_count": 1}}, "shaking": {"_count": 1, "again": {"_count": 1}}, "spoke": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "pitchblack": {"_count": 1, "and": {"_count": 1}}, "piercingly": {"_count": 1, "bitingly": {"_count": 1}}, "been": {"_count": 1, "ushered": {"_count": 1}}, "wooden": {"_count": 1, "": {"_count": 1}}, "lost": {"_count": 1, "its": {"_count": 1}}, "alight": {"_count": 1, "with": {"_count": 1}}, "much": {"_count": 1, "stronger": {"_count": 1}}, "tense": {"_count": 2, "alarmed": {"_count": 1}, "": {"_count": 1}}, "remembering": {"_count": 1, "something": {"_count": 1}}, "fearful": {"_count": 1, "": {"_count": 1}}, "sounding": {"_count": 1, "breathless": {"_count": 1}}, "horribly": {"_count": 1, "aware": {"_count": 1}}, "lowered": {"_count": 1, "it": {"_count": 1}}, "pleasant": {"_count": 1, "deeper": {"_count": 1}}, "emerge": {"_count": 1, "from": {"_count": 1}}, "striking": {"_count": 1, "": {"_count": 1}}, "transported": {"_count": 1, "staring": {"_count": 1}}, "loud": {"_count": 1, "and": {"_count": 1}}, "warm": {"_count": 1, "around": {"_count": 1}}, "threw": {"_count": 1, "caution": {"_count": 1}}, "knocking": {"_count": 1, "Pansys": {"_count": 1}}, "brisk": {"_count": 1, "how": {"_count": 1}}, "aggressive": {"_count": 1, "": {"_count": 1}}, "become": {"_count": 2, "Potions": {"_count": 1}, "razorsharp": {"_count": 1}}, "impatient": {"_count": 1, "": {"_count": 1}}, "nudged": {"_count": 1, "Lavender": {"_count": 1}}, "light": {"_count": 1, "and": {"_count": 1}}, "wished": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "freezing": {"_count": 1, "halfway": {"_count": 1}}, "filled": {"_count": 1, "with": {"_count": 1}}, "raised": {"_count": 1, "its": {"_count": 1}}, "raising": {"_count": 1, "a": {"_count": 1}}, "dancing": {"_count": 1, "the": {"_count": 1}}, "savage": {"_count": 1, "what": {"_count": 1}}, "shifty": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 1, "as": {"_count": 1}}, "footsteps": {"_count": 1, "were": {"_count": 1}}, "violent": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "clouds": {"_count": 1}}, "demented": {"_count": 1, "inhuman": {"_count": 1}}, "gazing": {"_count": 1, "down": {"_count": 1}}, "irritated": {"_count": 1, "and": {"_count": 1}}, "dry": {"_count": 1, "He": {"_count": 1}}, "vicelike": {"_count": 1, "upon": {"_count": 1}}, "whitehot": {"_count": 1, "": {"_count": 1}}, "reminded": {"_count": 1, "of": {"_count": 1}}, "festive": {"_count": 1, "atmosphere": {"_count": 1}}, "terrible": {"_count": 1, "in": {"_count": 1}}, "crafty": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "engulfed": {"_count": 1, "in": {"_count": 1}}, "muted": {"_count": 1, "deadened": {"_count": 1}}, "scared": {"_count": 1, "": {"_count": 1}}, "falling": {"_count": 1, "amongst": {"_count": 1}}}, "sleeping": {"_count": 58, "pattern": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 4, "clearly": {"_count": 1}, "on": {"_count": 1}, "picked": {"_count": 1}, "and": {"_count": 1}}, "potion": {"_count": 1, "so": {"_count": 1}}, "in": {"_count": 7, "his": {"_count": 1}, "my": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 3}, "Siriuss": {"_count": 1}}, "dragon": {"_count": 1, "in": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "portraits": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "bags": {"_count": 8, "": {"_count": 2}, "and": {"_count": 3}, "telling": {"_count": 1}, "Ive": {"_count": 1}, "dress": {"_count": 1}}, "outdoors": {"_count": 1, "in": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "under": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "brain": {"_count": 1, "had": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "quarters": {"_count": 1, "was": {"_count": 1}}, "Moody": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "badly": {"_count": 1, "still": {"_count": 1}}, "bird": {"_count": 1, "on": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 2, "deeply": {"_count": 1}, "that": {"_count": 1}}, "creature": {"_count": 1, "who": {"_count": 1}}, "portrait": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "waking": {"_count": 1}}, "that": {"_count": 1, "well": {"_count": 1}}, "with": {"_count": 1, "Fleur": {"_count": 1}}, "snake": {"_count": 1, "who": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "above": {"_count": 1, "": {"_count": 1}}}, "pattern": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 2, "broomsticks": {"_count": 1}, "Snitches": {"_count": 1}}, "and": {"_count": 1, "after": {"_count": 1}}}, "newscaster": {"_count": 1, "allowed": {"_count": 1, "himself": {"_count": 1}}}, "allowed": {"_count": 133, "himself": {"_count": 6, "a": {"_count": 1}, "to": {"_count": 4}, "the": {"_count": 1}}, "and": {"_count": 1, "so": {"_count": 1}}, "to": {"_count": 65, "finish": {"_count": 1}, "eat": {"_count": 1}, "go": {"_count": 2}, "fly": {"_count": 1}, "stay": {"_count": 1}, "speak": {"_count": 2}, "with": {"_count": 1}, "use": {"_count": 10}, "Apparate": {"_count": 1}, "wander": {"_count": 1}, "do": {"_count": 4}, "let": {"_count": 1}, "visit": {"_count": 3}, "come": {"_count": 2}, "walk": {"_count": 1}, "bring": {"_count": 2}, "play": {"_count": 2}, "look": {"_count": 1}, "make": {"_count": 1}, "put": {"_count": 1}, "compete": {"_count": 1}, "fight": {"_count": 1}, "live": {"_count": 1}, "know": {"_count": 1}, "enjoy": {"_count": 1}, "ask": {"_count": 1}, "stop": {"_count": 1}, "keep": {"_count": 1}, "have": {"_count": 1}, "remain": {"_count": 2}, "be": {"_count": 1}, "sleep": {"_count": 1}, "tell": {"_count": 2}, "talk": {"_count": 2}, "dock": {"_count": 1}, "own": {"_count": 1}, "take": {"_count": 1}, "swear": {"_count": 1}, "give": {"_count": 1}, "attend": {"_count": 1}, "connect": {"_count": 1}, "wear": {"_count": 1}, "say": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "at": {"_count": 1}}, "ter": {"_count": 2, "do": {"_count": 1}, "touch": {"_count": 1}}, "in": {"_count": 9, "Yer": {"_count": 1}, "said": {"_count": 1}, "Hogsmeade": {"_count": 1}, "there": {"_count": 1}, "meetings": {"_count": 1}, "the": {"_count": 2}, "our": {"_count": 1}, "to": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "herself": {"_count": 2, "to": {"_count": 2}}, "an": {"_count": 1, "extraordinary": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "before": {"_count": 1}}, "strictly": {"_count": 1, "speaking": {"_count": 1}}, "two": {"_count": 1, "champions": {"_count": 1}}, "a": {"_count": 5, "broom": {"_count": 1}, "deathbed": {"_count": 1}, "wand": {"_count": 1}, "say": {"_count": 1}, "look": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "heard": {"_count": 1}}, "Hermione": {"_count": 1, "to": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "Voldemort": {"_count": 1, "a": {"_count": 1}}, "Dudley": {"_count": 1, "said": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "why": {"_count": 1, "cant": {"_count": 1}}, "you": {"_count": 2, "more": {"_count": 1}, "to": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "him": {"_count": 3, "thirty": {"_count": 1}, "houseroom": {"_count": 1}, "to": {"_count": 1}}, "such": {"_count": 1, "feeble": {"_count": 1}}, "the": {"_count": 3, "separation": {"_count": 1}, "three": {"_count": 1}, "pain": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}, "given": {"_count": 1, "the": {"_count": 1}}, "us": {"_count": 1, "to": {"_count": 1}}, "The": {"_count": 1, "Dumbledore": {"_count": 1}}, "Travers": {"_count": 1, "to": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "other": {"_count": 1}}}, "grin": {"_count": 58, "": {"_count": 13, ".": {"_count": 13}}, "through": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 6, "his": {"_count": 4}, "Harrys": {"_count": 1}, "her": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "Harry": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "breaking": {"_count": 1, "across": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "spread": {"_count": 4, "across": {"_count": 2}, "over": {"_count": 1}, "slowly": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "she": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "faded": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "twisting": {"_count": 1, "his": {"_count": 1}}, "widened": {"_count": 1, "": {"_count": 1}}, "flitted": {"_count": 2, "across": {"_count": 2}}, "forced": {"_count": 1, "or": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "only": {"_count": 1, "reluctantly": {"_count": 1}}, "flashed": {"_count": 1, "across": {"_count": 1}}, "vanished": {"_count": 1, "from": {"_count": 1}}, "curling": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}, "fading": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "spreading": {"_count": 1, "across": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "slide": {"_count": 1, "off": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "was": {"_count": 1, "unfurling": {"_count": 1}}, "sagged": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "turned": {"_count": 1}}}, "Jim": {"_count": 3, "McGuffin": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "McGuffin": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "weather": {"_count": 45, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "for": {"_count": 1, "another": {"_count": 1}}, "turned": {"_count": 1, "very": {"_count": 1}}, "was": {"_count": 6, "getting": {"_count": 2}, "perfect": {"_count": 1}, "doing": {"_count": 1}, "milder": {"_count": 1}, "dismal": {"_count": 1}}, "worsened": {"_count": 1, "steadily": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "even": {"_count": 1, "though": {"_count": 1}}, "vanes": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 2}}, "though": {"_count": 1, "as": {"_count": 1}}, "became": {"_count": 1, "drier": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "were": {"_count": 1, "getting": {"_count": 1}}, "remained": {"_count": 1, "undecided": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "but": {"_count": 1, "theres": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "conditions": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 2}, "I": {"_count": 1}}, "you": {"_count": 1, "must": {"_count": 1}}, "grew": {"_count": 2, "breezier": {"_count": 1}, "colder": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "forecast": {"_count": 1, "": {"_count": 1}}}, "Going": {"_count": 11, "to": {"_count": 10, "be": {"_count": 1}, "kill": {"_count": 1}, "try": {"_count": 2}, "give": {"_count": 1}, "put": {"_count": 1}, "get": {"_count": 1}, "have": {"_count": 1}, "cart": {"_count": 1}, "lob": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}}, "showers": {"_count": 3, "of": {"_count": 2, "owls": {"_count": 1}, "stars": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}}, "tonight": {"_count": 178, "Jim": {"_count": 1, "": {"_count": 1}}, "": {"_count": 68, ".": {"_count": 48}, "!": {"_count": 10}, "?": {"_count": 10}}, "on": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "an": {"_count": 1, "I": {"_count": 1}}, "Ronan": {"_count": 1, "repeated": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "was": {"_count": 1}, "indicated": {"_count": 1}}, "said": {"_count": 9, "Harry": {"_count": 4}, "Hermione": {"_count": 1}, "Black": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}, "Ron": {"_count": 1}}, "and": {"_count": 11, "Im": {"_count": 1}, "nothing": {"_count": 1}, "send": {"_count": 1}, "couldnt": {"_count": 1}, "why": {"_count": 1}, "although": {"_count": 1}, "turned": {"_count": 1}, "Ill": {"_count": 1}, "the": {"_count": 1}, "whom": {"_count": 1}, "still": {"_count": 1}}, "Ron": {"_count": 1, "read": {"_count": 1}}, "too": {"_count": 3, "": {"_count": 3}}, "when": {"_count": 3, "a": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 2}, "a": {"_count": 1}, "his": {"_count": 1}, "robes": {"_count": 1}, "which": {"_count": 1}, "my": {"_count": 1}, "front": {"_count": 1}}, "you": {"_count": 4, "know": {"_count": 3}, "twofaced": {"_count": 1}}, "so": {"_count": 4, "I": {"_count": 1}, "thats": {"_count": 1}, "Bill": {"_count": 1}, "Malfoys": {"_count": 1}}, "I": {"_count": 11, "have": {"_count": 1}, "would": {"_count": 3}, "offered": {"_count": 1}, "know": {"_count": 1}, "cant": {"_count": 1}, "havent": {"_count": 1}, "actually": {"_count": 1}, "thought": {"_count": 1}, "dont": {"_count": 1}}, "youll": {"_count": 1, "see": {"_count": 1}}, "whoever": {"_count": 1, "conjured": {"_count": 1}}, "the": {"_count": 3, "ones": {"_count": 1}, "one": {"_count": 1}, "Prime": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "since": {"_count": 1, "they": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "Barty": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 3, "the": {"_count": 1}, "laughable": {"_count": 1}, "to": {"_count": 1}}, "at": {"_count": 2, "midnight": {"_count": 1}, "nine": {"_count": 1}}, "well": {"_count": 1, "both": {"_count": 1}}, "because": {"_count": 1, "Harry": {"_count": 1}}, "with": {"_count": 1, "Mr": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "He": {"_count": 1, "will": {"_count": 1}}, "our": {"_count": 1, "fake": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "sir": {"_count": 1, "he": {"_count": 1}}, "Dobby": {"_count": 1, "said": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "Tom": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}, "told": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 3, "bring": {"_count": 1}, "do": {"_count": 1}, "hide": {"_count": 1}}, "if": {"_count": 1, "possible": {"_count": 1}}, "seven": {"_count": 1, "oclock": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "unless": {"_count": 1, "we": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "Somewhere": {"_count": 1, "in": {"_count": 1}}, "Dumbledore": {"_count": 1, "went": {"_count": 1}}, "by": {"_count": 1, "Charity": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "does": {"_count": 1, "eet": {"_count": 1}}, "seem": {"_count": 1, "rather": {"_count": 1}}, "Severus": {"_count": 1, "at": {"_count": 1}}}, "Well": {"_count": 1256, "Ted": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 105, "just": {"_count": 3}, "don": {"_count": 3}, "say": {"_count": 1}, "remember": {"_count": 1}, "still": {"_count": 1}, "suppose": {"_count": 7}, "was": {"_count": 4}, "got": {"_count": 1}, "dont": {"_count": 15}, "must": {"_count": 4}, "wont": {"_count": 1}, "hope": {"_count": 3}, "am": {"_count": 1}, "think": {"_count": 16}, "certainly": {"_count": 3}, "can": {"_count": 1}, "know": {"_count": 3}, "told": {"_count": 1}, "thought": {"_count": 4}, "dunno": {"_count": 1}, "had": {"_count": 2}, "did": {"_count": 1}, "wouldnt": {"_count": 1}, "reckon": {"_count": 2}, "gave": {"_count": 1}, "ony": {"_count": 1}, "": {"_count": 1}, "tried": {"_count": 1}, "start": {"_count": 1}, "have": {"_count": 3}, "mean": {"_count": 1}, "always": {"_count": 1}, "shall": {"_count": 1}, "assume": {"_count": 1}, "pity": {"_count": 1}, "cant": {"_count": 2}, "jus": {"_count": 1}, "would": {"_count": 1}, "asked": {"_count": 1}, "cannot": {"_count": 1}, "stayed": {"_count": 1}, "saw": {"_count": 1}, "agree": {"_count": 1}, "take": {"_count": 1}, "need": {"_count": 1}, "confess": {"_count": 1}}, "theyre": {"_count": 12, "not": {"_count": 3}, "easy": {"_count": 1}, "Apparating": {"_count": 1}, "okay": {"_count": 1}, "different": {"_count": 1}, "": {"_count": 2}, "quite": {"_count": 1}, "writing": {"_count": 1}, "friends": {"_count": 1}}, "give": {"_count": 1, "him": {"_count": 1}}, "said": {"_count": 51, "Dumbledore": {"_count": 5}, "Fred": {"_count": 2}, "Professor": {"_count": 1}, "Hermione": {"_count": 10}, "Riddle": {"_count": 1}, "Harry": {"_count": 14}, "Malfoy": {"_count": 1}, "Lupin": {"_count": 4}, "Mr": {"_count": 1}, "Sirius": {"_count": 1}, "Mrs": {"_count": 1}, "Seamus": {"_count": 1}, "": {"_count": 1}, "Angelina": {"_count": 1}, "James": {"_count": 1}, "Ginny": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Slughorn": {"_count": 2}, "squeaked": {"_count": 1}, "indeed": {"_count": 1}}, "get": {"_count": 9, "a": {"_count": 2}, "you": {"_count": 1}, "off": {"_count": 1}, "back": {"_count": 1}, "it": {"_count": 1}, "them": {"_count": 1}, "soaked": {"_count": 1}, "in": {"_count": 1}}, "its": {"_count": 23, "best": {"_count": 1}, "not": {"_count": 6}, "true": {"_count": 1}, "about": {"_count": 1}, "no": {"_count": 1}, "like": {"_count": 2}, "a": {"_count": 3}, "an": {"_count": 1}, "cold": {"_count": 1}, "nothing": {"_count": 1}, "just": {"_count": 3}, "this": {"_count": 1}, "obvious": {"_count": 1}}, "their": {"_count": 2, "main": {"_count": 1}, "brother": {"_count": 1}}, "so": {"_count": 2, "they": {"_count": 1}, "did": {"_count": 1}}, "no": {"_count": 9, "one": {"_count": 1}, "Ron": {"_count": 1}, "but": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 2}, "youre": {"_count": 1}, "said": {"_count": 1}, "sir": {"_count": 1}}, "Ill": {"_count": 8, "see": {"_count": 2}, "ask": {"_count": 1}, "be": {"_count": 1}, "reserve": {"_count": 1}, "": {"_count": 1}, "save": {"_count": 1}, "hear": {"_count": 1}}, "now": {"_count": 20, "Mr": {"_count": 2}, "we": {"_count": 1}, "were": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 2}, "you": {"_count": 1}, "your": {"_count": 1}, "hes": {"_count": 1}, "Im": {"_count": 1}, "I": {"_count": 1}, "dont": {"_count": 1}, "said": {"_count": 2}, "she": {"_count": 1}, "Violent": {"_count": 1}, "this": {"_count": 2}, "Ill": {"_count": 1}}, "well": {"_count": 28, "well": {"_count": 11}, "manage": {"_count": 1}, "": {"_count": 2}, "soon": {"_count": 3}, "if": {"_count": 1}, "just": {"_count": 1}, "have": {"_count": 1}, "take": {"_count": 1}, "then": {"_count": 1}, "said": {"_count": 2}, "find": {"_count": 2}, "Mr": {"_count": 1}, "looks": {"_count": 1}}, "there": {"_count": 13, "you": {"_count": 8}, "are": {"_count": 3}, "might": {"_count": 1}, "they": {"_count": 1}}, "send": {"_count": 2, "you": {"_count": 1}, "a": {"_count": 1}}, "you": {"_count": 41, "cant": {"_count": 7}, "hardly": {"_count": 1}, "see": {"_count": 5}, "can": {"_count": 4}, "havent": {"_count": 2}, "know": {"_count": 5}, "keep": {"_count": 1}, "11": {"_count": 1}, "dont": {"_count": 2}, "seem": {"_count": 1}, "already": {"_count": 1}, "have": {"_count": 2}, "wont": {"_count": 1}, "do": {"_count": 1}, "never": {"_count": 1}, "were": {"_count": 2}, "seemed": {"_count": 1}, "are": {"_count": 1}, "split": {"_count": 1}, "werent": {"_count": 1}}, "if": {"_count": 22, "you": {"_count": 8}, "youre": {"_count": 2}, "either": {"_count": 1}, "theyre": {"_count": 2}, "they": {"_count": 2}, "thats": {"_count": 2}, "he": {"_count": 1}, "she": {"_count": 1}, "its": {"_count": 1}, "anybody": {"_count": 1}, "all": {"_count": 1}}, "done": {"_count": 21, "Ron": {"_count": 3}, "said": {"_count": 4}, "car": {"_count": 1}, "Harry": {"_count": 3}, "everyone": {"_count": 1}, "": {"_count": 5}, "all": {"_count": 1}, "Ha": {"_count": 1}, "he": {"_count": 1}, "Draco": {"_count": 1}}, "my": {"_count": 3, "gran": {"_count": 1}, "father": {"_count": 1}, "uncle": {"_count": 1}}, "": {"_count": 112, "?": {"_count": 25}, ".": {"_count": 86}, "!": {"_count": 1}}, "what": {"_count": 13, "are": {"_count": 1}, "if": {"_count": 2}, "would": {"_count": 1}, "dyou": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}, "will": {"_count": 1}, "does": {"_count": 1}, "can": {"_count": 1}, "do": {"_count": 1}, "Harry": {"_count": 1}, "else": {"_count": 1}}, "meet": {"_count": 3, "you": {"_count": 3}}, "a": {"_count": 2, "seconds": {"_count": 1}, "very": {"_count": 1}}, "thats": {"_count": 28, "it": {"_count": 2}, "something": {"_count": 2}, "an": {"_count": 1}, "all": {"_count": 1}, "okay": {"_count": 2}, "lucky": {"_count": 1}, "good": {"_count": 1}, "what": {"_count": 2}, "no": {"_count": 1}, "news": {"_count": 1}, "a": {"_count": 3}, "nothing": {"_count": 1}, "why": {"_count": 2}, "put": {"_count": 1}, "not": {"_count": 2}, "really": {"_count": 1}, "to": {"_count": 1}, "rubbish": {"_count": 1}, "that": {"_count": 2}}, "in": {"_count": 5, "that": {"_count": 4}, "the": {"_count": 1}}, "they": {"_count": 18, "cant": {"_count": 1}, "did": {"_count": 1}, "do": {"_count": 1}, "most": {"_count": 1}, "can": {"_count": 1}, "hardly": {"_count": 1}, "were": {"_count": 4}, "wouldve": {"_count": 1}, "didnt": {"_count": 1}, "are": {"_count": 1}, "dont": {"_count": 2}, "should": {"_count": 1}, "wouldnt": {"_count": 1}, "keep": {"_count": 1}}, "have": {"_count": 20, "another": {"_count": 1}, "to": {"_count": 12}, "Peeves": {"_count": 1}, "a": {"_count": 4}, "them": {"_count": 1}, "time": {"_count": 1}}, "Ive": {"_count": 11, "bin": {"_count": 2}, "got": {"_count": 1}, "done": {"_count": 1}, "no": {"_count": 1}, "been": {"_count": 1}, "lost": {"_count": 1}, "chosen": {"_count": 1}, "had": {"_count": 2}, "you": {"_count": 1}}, "think": {"_count": 2, "again": {"_count": 1}, "back": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "be": {"_count": 26, "off": {"_count": 2}, "lucky": {"_count": 1}, "shopping": {"_count": 1}, "there": {"_count": 3}, "able": {"_count": 2}, "repotting": {"_count": 1}, "sending": {"_count": 1}, "getting": {"_count": 1}, "needing": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 2}, "at": {"_count": 1}, "okay": {"_count": 1}, "putting": {"_count": 1}, "a": {"_count": 2}, "on": {"_count": 2}, "study": {"_count": 1}, "checking": {"_count": 1}, "starting": {"_count": 1}}, "yeah": {"_count": 10, "how": {"_count": 1}, "said": {"_count": 4}, "more": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "Then": {"_count": 1}}, "just": {"_count": 7, "have": {"_count": 3}, "go": {"_count": 1}, "watch": {"_count": 1}, "be": {"_count": 1}, "take": {"_count": 1}}, "here": {"_count": 4, "goes": {"_count": 2}, "it": {"_count": 1}, "we": {"_count": 1}}, "hurry": {"_count": 2, "up": {"_count": 1}, "off": {"_count": 1}}, "Harry": {"_count": 11, "you": {"_count": 1}, "said": {"_count": 4}, "Id": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}, "stalled": {"_count": 1}, "I": {"_count": 1}, "while": {"_count": 1}}, "Nicolas": {"_count": 1, "and": {"_count": 1}}, "Voldemorts": {"_count": 1, "going": {"_count": 1}}, "of": {"_count": 17, "course": {"_count": 17}}, "Hermione": {"_count": 1, "exploded": {"_count": 1}}, "then": {"_count": 30, "I": {"_count": 5}, "whats": {"_count": 1}, "Pass": {"_count": 1}, "": {"_count": 1}, "Im": {"_count": 1}, "proceed": {"_count": 1}, "you": {"_count": 3}, "the": {"_count": 2}, "why": {"_count": 5}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "youll": {"_count": 1}, "said": {"_count": 3}, "youre": {"_count": 1}, "its": {"_count": 1}, "Ill": {"_count": 1}, "what": {"_count": 1}}, "whoever": {"_count": 1, "owns": {"_count": 1}}, "dear": {"_count": 2, "I": {"_count": 2}}, "that": {"_count": 22, "fits": {"_count": 1}, "can": {"_count": 1}, "thing": {"_count": 1}, "wont": {"_count": 1}, "should": {"_count": 1}, "was": {"_count": 4}, "settles": {"_count": 1}, "wasnt": {"_count": 1}, "makes": {"_count": 1}, "clears": {"_count": 1}, "doesnt": {"_count": 1}, "is": {"_count": 2}, "simplifies": {"_count": 1}, "means": {"_count": 1}, "just": {"_count": 1}, "one": {"_count": 1}, "cant": {"_count": 1}, "could": {"_count": 1}}, "gotta": {"_count": 1, "be": {"_count": 1}}, "all": {"_count": 6, "meet": {"_count": 1}, "right": {"_count": 3}, "our": {"_count": 1}, "I": {"_count": 1}}, "go": {"_count": 7, "and": {"_count": 1}, "up": {"_count": 1}, "on": {"_count": 1}, "down": {"_count": 1}, "straight": {"_count": 1}, "somewhere": {"_count": 1}, "to": {"_count": 1}}, "youre": {"_count": 6, "expelling": {"_count": 1}, "the": {"_count": 1}, "just": {"_count": 1}, "going": {"_count": 1}, "losing": {"_count": 1}, "a": {"_count": 1}}, "we": {"_count": 29, "havent": {"_count": 2}, "wont": {"_count": 1}, "have": {"_count": 1}, "now": {"_count": 1}, "know": {"_count": 3}, "overheard": {"_count": 1}, "think": {"_count": 2}, "set": {"_count": 1}, "waited": {"_count": 1}, "hadn": {"_count": 1}, "were": {"_count": 2}, "cant": {"_count": 3}, "need": {"_count": 1}, "dont": {"_count": 1}, "thought": {"_count": 1}, "followed": {"_count": 1}, "hear": {"_count": 1}, "named": {"_count": 1}, "find": {"_count": 1}, "shall": {"_count": 1}, "do": {"_count": 2}}, "the": {"_count": 19, "Quaffle": {"_count": 1}, "Chamber": {"_count": 1}, "elves": {"_count": 1}, "fats": {"_count": 1}, "Heads": {"_count": 1}, "goblet": {"_count": 1}, "git": {"_count": 1}, "main": {"_count": 1}, "other": {"_count": 1}, "class": {"_count": 1}, "Sorting": {"_count": 1}, "game": {"_count": 1}, "answers": {"_count": 1}, "start": {"_count": 1}, "rumor": {"_count": 1}, "password": {"_count": 1}, "big": {"_count": 1}, "sword": {"_count": 1}, "vault": {"_count": 1}}, "see": {"_count": 15, "about": {"_count": 2}, "each": {"_count": 1}, "": {"_count": 3}, "whos": {"_count": 3}, "you": {"_count": 4}, "said": {"_count": 1}, "if": {"_count": 1}}, "goodbye": {"_count": 4, "": {"_count": 1}, "Harry": {"_count": 2}, "and": {"_count": 1}}, "youve": {"_count": 5, "done": {"_count": 1}, "got": {"_count": 1}, "just": {"_count": 2}, "obviously": {"_count": 1}}, "this": {"_count": 6, "Halloween": {"_count": 1}, "is": {"_count": 3}, "explains": {"_count": 1}, "changes": {"_count": 1}}, "Im": {"_count": 25, "sure": {"_count": 3}, "taking": {"_count": 1}, "afraid": {"_count": 2}, "glad": {"_count": 3}, "not": {"_count": 3}, "a": {"_count": 1}, "": {"_count": 1}, "off": {"_count": 2}, "getting": {"_count": 1}, "finding": {"_count": 1}, "sorry": {"_count": 2}, "terrified": {"_count": 1}, "going": {"_count": 2}, "keeping": {"_count": 1}, "stayin": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "take": {"_count": 7, "separate": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "these": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 28, "wasnt": {"_count": 4}, "didnt": {"_count": 1}, "is": {"_count": 4}, "might": {"_count": 1}, "was": {"_count": 7}, "changes": {"_count": 1}, "wasn": {"_count": 1}, "does": {"_count": 1}, "looks": {"_count": 1}, "doesnt": {"_count": 2}, "seemed": {"_count": 1}, "appears": {"_count": 1}, "worked": {"_count": 1}, "it": {"_count": 1}, "got": {"_count": 1}}, "ha": {"_count": 1, "ha": {"_count": 1}}, "do": {"_count": 3, "I": {"_count": 1}, "it": {"_count": 1}, "better": {"_count": 1}}, "er": {"_count": 4, "if": {"_count": 1}, "hi": {"_count": 1}, "shall": {"_count": 1}, "well": {"_count": 1}}, "leave": {"_count": 3, "it": {"_count": 1}, "my": {"_count": 1}, "you": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "as": {"_count": 10, "to": {"_count": 1}, "we": {"_count": 1}, "everyone": {"_count": 1}, "you": {"_count": 3}, "Im": {"_count": 1}, "long": {"_count": 1}, "the": {"_count": 1}, "regular": {"_count": 1}}, "he": {"_count": 29, "certainly": {"_count": 1}, "should": {"_count": 1}, "wasnt": {"_count": 2}, "needed": {"_count": 1}, "sputtered": {"_count": 1}, "didnt": {"_count": 2}, "did": {"_count": 1}, "hasnt": {"_count": 1}, "said": {"_count": 6}, "turned": {"_count": 1}, "just": {"_count": 1}, "mustnt": {"_count": 1}, "doesnt": {"_count": 1}, "can": {"_count": 1}, "cant": {"_count": 1}, "has": {"_count": 1}, "sighed": {"_count": 1}, "thought": {"_count": 1}, "would": {"_count": 1}, "But": {"_count": 1}, "raised": {"_count": 1}, "he": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Id": {"_count": 7, "better": {"_count": 7}}, "Percys": {"_count": 1, "got": {"_count": 1}}, "Petunia": {"_count": 1, "said": {"_count": 1}}, "really": {"_count": 2, "I": {"_count": 1}, "this": {"_count": 1}}, "third": {"_count": 1, "years": {"_count": 1}}, "Arthur": {"_count": 1, "you": {"_count": 1}}, "look": {"_count": 4, "who": {"_count": 1}, "at": {"_count": 2}, "after": {"_count": 1}}, "tell": {"_count": 8, "Dumbledore": {"_count": 1}, "them": {"_count": 2}, "Professor": {"_count": 1}, "him": {"_count": 3}, "you": {"_count": 1}}, "not": {"_count": 4, "necessarily": {"_count": 1}, "exactly": {"_count": 1}, "Moony": {"_count": 1}, "quite": {"_count": 1}}, "bring": {"_count": 2, "you": {"_count": 1}, "her": {"_count": 1}}, "come": {"_count": 9, "and": {"_count": 1}, "on": {"_count": 5}, "back": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}}, "thank": {"_count": 2, "you": {"_count": 2}}, "risk": {"_count": 1, "it": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "lets": {"_count": 8, "drink": {"_count": 1}, "hope": {"_count": 1}, "get": {"_count": 2}, "check": {"_count": 1}, "not": {"_count": 1}, "try": {"_count": 1}, "see": {"_count": 1}}, "Filch": {"_count": 2, "hasnt": {"_count": 1}, "ran": {"_count": 1}}, "honestly": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 7, "luck": {"_count": 2}, "afternoon": {"_count": 1}, "day": {"_count": 1}, "night": {"_count": 2}, "evening": {"_count": 1}}, "stay": {"_count": 1, "with": {"_count": 1}}, "faking": {"_count": 1, "his": {"_count": 1}}, "hello": {"_count": 2, "Peter": {"_count": 1}, "there": {"_count": 1}}, "Scabbers": {"_count": 1, "I": {"_count": 1}}, "hand": {"_count": 1, "him": {"_count": 1}}, "weve": {"_count": 4, "got": {"_count": 1}, "made": {"_count": 1}, "never": {"_count": 1}, "all": {"_count": 1}}, "run": {"_count": 1, "for": {"_count": 1}}, "need": {"_count": 5, "water": {"_count": 1}, "to": {"_count": 3}, "somebody": {"_count": 1}}, "why": {"_count": 5, "dont": {"_count": 1}, "shouldnt": {"_count": 1}, "didnt": {"_count": 1}, "not": {"_count": 2}}, "bet": {"_count": 1, "thirtyseven": {"_count": 1}}, "add": {"_count": 1, "five": {"_count": 1}}, "theyll": {"_count": 2, "never": {"_count": 1}, "have": {"_count": 1}}, "with": {"_count": 2, "feet": {"_count": 1}, "any": {"_count": 1}}, "hear": {"_count": 1, "anyone": {"_count": 1}}, "theres": {"_count": 9, "a": {"_count": 3}, "no": {"_count": 1}, "loads": {"_count": 1}, "one": {"_count": 1}, "nothin": {"_count": 1}, "something": {"_count": 1}, "her": {"_count": 1}}, "shes": {"_count": 1, "not": {"_count": 1}}, "Mr": {"_count": 4, "Crouch": {"_count": 1}, "Thomas": {"_count": 1}, "Potter": {"_count": 1}, "Gaunt": {"_count": 1}}, "Father": {"_count": 1, "feels": {"_count": 1}}, "nobody": {"_count": 1, "knows": {"_count": 1}}, "move": {"_count": 1, "along": {"_count": 1}}, "at": {"_count": 5, "least": {"_count": 5}}, "bully": {"_count": 1, "for": {"_count": 1}}, "try": {"_count": 2, "that": {"_count": 1}, "Hagrid": {"_count": 1}}, "Barty": {"_count": 1, "knows": {"_count": 1}}, "shall": {"_count": 2, "we": {"_count": 2}}, "borrow": {"_count": 1, "one": {"_count": 1}}, "off": {"_count": 2, "you": {"_count": 2}}, "wed": {"_count": 3, "better": {"_count": 3}}, "jus": {"_count": 1, "lead": {"_count": 1}}, "yeh": {"_count": 1, "mightve": {"_count": 1}}, "youd": {"_count": 3, "better": {"_count": 1}, "need": {"_count": 1}, "deserve": {"_count": 1}}, "Yeah": {"_count": 1, "said": {"_count": 1}}, "bye": {"_count": 1, "said": {"_count": 1}}, "Dumbledore": {"_count": 5, "said": {"_count": 1}, "believes": {"_count": 1}, "knew": {"_count": 1}, "says": {"_count": 1}, "left": {"_count": 1}}, "thanks": {"_count": 1, "said": {"_count": 1}}, "does": {"_count": 2, "anything": {"_count": 1}, "it": {"_count": 1}}, "hes": {"_count": 3, "not": {"_count": 2}, "taken": {"_count": 1}}, "times": {"_count": 2, "like": {"_count": 1}, "ticking": {"_count": 1}}, "maybe": {"_count": 7, "shes": {"_count": 1}, "they": {"_count": 1}, "Snape": {"_count": 1}, "Scrimgeour": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}, "we": {"_count": 1}}, "explain": {"_count": 1, "later": {"_count": 1}}, "Ritas": {"_count": 1, "definitely": {"_count": 1}}, "dont": {"_count": 4, "let": {"_count": 2}, "ask": {"_count": 1}, "bother": {"_count": 1}}, "stop": {"_count": 1, "telling": {"_count": 1}}, "help": {"_count": 2, "him": {"_count": 1}, "me": {"_count": 1}}, "start": {"_count": 2, "with": {"_count": 2}}, "tie": {"_count": 1, "for": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "was": {"_count": 1}}, "fight": {"_count": 1, "": {"_count": 1}}, "second": {"_count": 1, "Diggory": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "apparently": {"_count": 1, "Fudge": {"_count": 1}}, "firstly": {"_count": 1, "he": {"_count": 1}}, "Molly": {"_count": 1, "Im": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "congratulations": {"_count": 1, "said": {"_count": 1}}, "Moody": {"_count": 1, "might": {"_count": 1}}, "II": {"_count": 1, "might": {"_count": 1}}, "teach": {"_count": 3, "just": {"_count": 1}, "those": {"_count": 1}, "all": {"_count": 1}}, "unfortunately": {"_count": 1, "for": {"_count": 1}}, "itd": {"_count": 1, "be": {"_count": 1}}, "were": {"_count": 4, "reading": {"_count": 1}, "not": {"_count": 2}, "N": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "sit": {"_count": 2, "down": {"_count": 2}}, "she": {"_count": 5, "said": {"_count": 2}, "asked": {"_count": 1}, "was": {"_count": 1}, "wasnt": {"_count": 1}}, "learn": {"_count": 1, "Defense": {"_count": 1}}, "once": {"_count": 2, "a": {"_count": 1}, "theyre": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "carry": {"_count": 1, "on": {"_count": 1}}, "better": {"_count": 1, "expelled": {"_count": 1}}, "Sirius": {"_count": 2, "its": {"_count": 1}, "says": {"_count": 1}}, "111": {"_count": 1, "have": {"_count": 1}}, "theyve": {"_count": 1, "forbidden": {"_count": 1}}, "actually": {"_count": 2, "Minerva": {"_count": 1}, "": {"_count": 1}}, "yes": {"_count": 6, "said": {"_count": 3}, "that": {"_count": 1}, "it": {"_count": 1}, "Im": {"_count": 1}}, "Dumbledored": {"_count": 1, "told": {"_count": 1}}, "anyway": {"_count": 3, "said": {"_count": 1}, "he": {"_count": 2}}, "like": {"_count": 2, "I": {"_count": 2}}, "change": {"_count": 1, "o": {"_count": 1}}, "Hagrid": {"_count": 1, "she": {"_count": 1}}, "obviously": {"_count": 2, "shes": {"_count": 1}, "we": {"_count": 1}}, "night": {"_count": 1, "said": {"_count": 1}}, "wait": {"_count": 2, "outside": {"_count": 1}, "up": {"_count": 1}}, "to": {"_count": 1, "tell": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "everyone": {"_count": 1, "had": {"_count": 1}}, "how": {"_count": 4, "about": {"_count": 1}, "have": {"_count": 1}, "did": {"_count": 1}, "can": {"_count": 1}}, "Potter": {"_count": 6, "you": {"_count": 1}, "": {"_count": 2}, "this": {"_count": 1}, "she": {"_count": 1}, "Malfoy": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "one": {"_count": 1}}, "write": {"_count": 1, "it": {"_count": 1}}, "wouldnt": {"_count": 1, "it": {"_count": 1}}, "thatd": {"_count": 1, "explain": {"_count": 1}}, "Minister": {"_count": 1, "Miss": {"_count": 1}}, "usually": {"_count": 1, "when": {"_count": 1}}, "Minerva": {"_count": 1, "said": {"_count": 1}}, "Draco": {"_count": 2, "what": {"_count": 1}, "": {"_count": 1}}, "youll": {"_count": 1, "need": {"_count": 1}}, "angry": {"_count": 1, "doesn": {"_count": 1}}, "o": {"_count": 1, "course": {"_count": 1}}, "halfbrother": {"_count": 1, "amended": {"_count": 1}}, "thas": {"_count": 1, "why": {"_count": 1}}, "save": {"_count": 1, "our": {"_count": 1}}, "spit": {"_count": 1, "out": {"_count": 1}}, "draw": {"_count": 1, "Umbridge": {"_count": 1}}, "gulped": {"_count": 1, "Hermione": {"_count": 1}}, "split": {"_count": 1, "into": {"_count": 1}}, "Ib": {"_count": 1, "going": {"_count": 1}}, "dake": {"_count": 1, "her": {"_count": 1}}, "your": {"_count": 1, "grandmother": {"_count": 1}}, "Flitwicks": {"_count": 1, "got": {"_count": 1}}, "Grawpys": {"_count": 1, "loads": {"_count": 1}}, "Wormtails": {"_count": 1, "here": {"_count": 1}}, "continue": {"_count": 1, "Bellatrix": {"_count": 1}}, "on": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "enjoy": {"_count": 1, "your": {"_count": 1}}, "Mums": {"_count": 1, "going": {"_count": 1}}, "trust": {"_count": 1, "me": {"_count": 1}}, "reallyl": {"_count": 1, "said": {"_count": 1}}, "without": {"_count": 1, "seeing": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "who": {"_count": 2, "cares": {"_count": 1}, "wouldnt": {"_count": 1}}, "whats": {"_count": 2, "so": {"_count": 1}, "your": {"_count": 1}}, "by": {"_count": 1, "turning": {"_count": 1}}, "his": {"_count": 1, "name": {"_count": 1}}, "something": {"_count": 1, "more": {"_count": 1}}, "perhaps": {"_count": 1, "that": {"_count": 1}}, "Kreacher": {"_count": 1, "youre": {"_count": 1}}, "quite": {"_count": 1, "said": {"_count": 1}}, "sir": {"_count": 1, "its": {"_count": 1}}, "drink": {"_count": 1, "the": {"_count": 1}}, "although": {"_count": 1, "I": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "soon": {"_count": 1, "be": {"_count": 1}}, "only": {"_count": 1, "that": {"_count": 1}}, "where": {"_count": 2, "I": {"_count": 1}, "do": {"_count": 1}}, "Yaxley": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "never": {"_count": 2, "be": {"_count": 1}, "get": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "frankly": {"_count": 1, "I": {"_count": 1}}, "MadEye": {"_count": 1, "set": {"_count": 1}}, "guests": {"_count": 1, "arent": {"_count": 1}}, "happy": {"_count": 2, "birthday": {"_count": 2}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "exactly": {"_count": 1, "said": {"_count": 1}}, "worth": {"_count": 1, "a": {"_count": 1}}, "Voldemort": {"_count": 1, "did": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "Kingsley": {"_count": 1, "saved": {"_count": 1}}, "whatever": {"_count": 1, "they": {"_count": 1}}, "sorry": {"_count": 1, "to": {"_count": 1}}, "okay": {"_count": 1, "then": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "follow": {"_count": 1, "just": {"_count": 1}}, "goblins": {"_count": 2, "can": {"_count": 1}, "wont": {"_count": 1}}, "more": {"_count": 1, "of": {"_count": 1}}, "Travers": {"_count": 1, "coughed": {"_count": 1}}, "find": {"_count": 2, "you": {"_count": 1}, "them": {"_count": 1}}, "reasoned": {"_count": 1, "said": {"_count": 1}}, "say": {"_count": 1, "Alecto": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "Grindelwald": {"_count": 1, "fled": {"_count": 1}}}, "Ted": {"_count": 38, "said": {"_count": 2, "the": {"_count": 1}, "And": {"_count": 1}}, "Tonks": {"_count": 9, "so": {"_count": 1}, "Doras": {"_count": 1}, "placing": {"_count": 1}, "looked": {"_count": 1}, "along": {"_count": 1}, "warningly": {"_count": 1}, "sent": {"_count": 1}, "and": {"_count": 1}, "Dirk": {"_count": 1}}, "": {"_count": 17, "!": {"_count": 1}, ".": {"_count": 13}, "?": {"_count": 3}}, "by": {"_count": 1, "the": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "tapping": {"_count": 1, "it": {"_count": 1}}, "exchanged": {"_count": 1, "looks": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "Dean": {"_count": 1}}, "spoke": {"_count": 1, "again": {"_count": 1}}, "hastily": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "Doras": {"_count": 1}}}, "weatherman": {"_count": 1, "I": {"_count": 1, "dont": {"_count": 1}}}, "dont": {"_count": 1494, "know": {"_count": 254, "about": {"_count": 3}, "his": {"_count": 1}, "how": {"_count": 32}, "anything": {"_count": 9}, "what": {"_count": 47}, "said": {"_count": 24}, "any": {"_count": 1}, "sir": {"_count": 3}, "that": {"_count": 6}, "whats": {"_count": 3}, "where": {"_count": 18}, "": {"_count": 28}, "were": {"_count": 1}, "whether": {"_count": 12}, "she": {"_count": 2}, "if": {"_count": 4}, "why": {"_count": 9}, "who": {"_count": 10}, "myself": {"_count": 1}, "the": {"_count": 3}, "Hermione": {"_count": 3}, "Professor": {"_count": 1}, "Harry": {"_count": 4}, "My": {"_count": 1}, "these": {"_count": 1}, "its": {"_count": 2}, "whos": {"_count": 1}, "so": {"_count": 1}, "nothing": {"_count": 1}, "my": {"_count": 1}, "our": {"_count": 1}, "exactly": {"_count": 4}, "Madam": {"_count": 1}, "much": {"_count": 1}, "anyone": {"_count": 2}, "he": {"_count": 2}, "but": {"_count": 2}, "Potter": {"_count": 1}, "is": {"_count": 1}, "exists": {"_count": 1}, "Essence": {"_count": 1}, "Im": {"_count": 1}, "when": {"_count": 1}, "which": {"_count": 1}, "Tom": {"_count": 1}}, "suppose": {"_count": 14, "youre": {"_count": 2}, "Ravenclaw": {"_count": 1}, "you": {"_count": 3}, "youve": {"_count": 1}, "either": {"_count": 1}, "youd": {"_count": 1}, "Ive": {"_count": 1}, "we": {"_count": 1}, "those": {"_count": 1}, "there": {"_count": 1}, "it": {"_count": 1}}, "mean": {"_count": 4, "you": {"_count": 1}, "to": {"_count": 1}, "holding": {"_count": 1}, "hes": {"_count": 1}}, "you": {"_count": 104, "dare": {"_count": 3}, "try": {"_count": 3}, "": {"_count": 31}, "put": {"_count": 1}, "two": {"_count": 1}, "think": {"_count": 7}, "go": {"_count": 2}, "give": {"_count": 1}, "son": {"_count": 1}, "leave": {"_count": 2}, "remember": {"_count": 4}, "apply": {"_count": 1}, "know": {"_count": 2}, "come": {"_count": 5}, "just": {"_count": 2}, "see": {"_count": 7}, "show": {"_count": 1}, "Harry": {"_count": 2}, "get": {"_count": 1}, "take": {"_count": 1}, "use": {"_count": 2}, "three": {"_count": 1}, "shut": {"_count": 1}, "Potter": {"_count": 2}, "Minerva": {"_count": 1}, "tell": {"_count": 1}, "Hermione": {"_count": 1}, "Senior": {"_count": 1}, "talk": {"_count": 2}, "bring": {"_count": 1}, "join": {"_count": 1}, "Blaise": {"_count": 1}, "understand": {"_count": 2}, "ditch": {"_count": 1}, "want": {"_count": 1}, "do": {"_count": 1}, "feel": {"_count": 1}, "that": {"_count": 1}, "reckon": {"_count": 1}, "read": {"_count": 1}, "realize": {"_count": 2}}, "ask": {"_count": 7, "questions": {"_count": 1}, "me": {"_count": 4}, "for": {"_count": 1}, "us": {"_count": 1}}, "cry": {"_count": 2, "Mummy": {"_count": 1}, "please": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 17}, "!": {"_count": 6}, "?": {"_count": 2}}, "said": {"_count": 14, "Harry": {"_count": 8}, "Dumbledore": {"_count": 2}, "Percy": {"_count": 1}, "Hermione": {"_count": 2}, "Ron": {"_count": 1}}, "think": {"_count": 210, "theyre": {"_count": 1}, "I": {"_count": 8}, "they": {"_count": 5}, "Ive": {"_count": 3}, "so": {"_count": 25}, "she": {"_count": 6}, "of": {"_count": 1}, "theyve": {"_count": 2}, "wed": {"_count": 1}, "you": {"_count": 15}, "it": {"_count": 14}, "he": {"_count": 15}, "Im": {"_count": 4}, "getting": {"_count": 1}, "youre": {"_count": 3}, "theres": {"_count": 4}, "That": {"_count": 1}, "Ill": {"_count": 2}, "someone": {"_count": 1}, "": {"_count": 1}, "therell": {"_count": 1}, "Potter": {"_count": 1}, "not": {"_count": 1}, "Egypt": {"_count": 1}, "anything": {"_count": 2}, "Harry": {"_count": 1}, "its": {"_count": 5}, "any": {"_count": 4}, "weve": {"_count": 2}, "anyone": {"_count": 6}, "Malfoy": {"_count": 1}, "we": {"_count": 6}, "much": {"_count": 2}, "theyll": {"_count": 1}, "youve": {"_count": 3}, "there": {"_count": 2}, "teeth": {"_count": 1}, "that": {"_count": 3}, "a": {"_count": 2}, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 2}, "hed": {"_count": 2}, "Krum": {"_count": 1}, "purples": {"_count": 1}, "private": {"_count": 1}, "hell": {"_count": 2}, "thats": {"_count": 1}, "well": {"_count": 2}, "Id": {"_count": 2}, "hes": {"_count": 4}, "Umbridge": {"_count": 1}, "were": {"_count": 7}, "Filch": {"_count": 1}, "Expelliarmus": {"_count": 1}, "Daddy": {"_count": 1}, "Snape": {"_count": 1}, "anybody": {"_count": 1}, "like": {"_count": 1}, "Sirius": {"_count": 1}, "your": {"_count": 1}, "Slughorns": {"_count": 1}, "youd": {"_count": 1}, "many": {"_count": 1}, "even": {"_count": 1}, "thatll": {"_count": 2}, "what": {"_count": 1}, "for": {"_count": 1}, "youll": {"_count": 1}, "too": {"_count": 1}, "the": {"_count": 1}, "Gibbon": {"_count": 1}, "when": {"_count": 1}, "Albus": {"_count": 1}, "Fleur": {"_count": 1}, "Lunas": {"_count": 1}, "important": {"_count": 1}}, "want": {"_count": 136, "Harry": {"_count": 2}, "him": {"_count": 3}, "this": {"_count": 2}, "to": {"_count": 78}, "Slytherin": {"_count": 1}, "everybody": {"_count": 1}, "anything": {"_count": 1}, "you": {"_count": 9}, "said": {"_count": 1}, "more": {"_count": 1}, "me": {"_count": 5}, "a": {"_count": 6}, "any": {"_count": 6}, "the": {"_count": 2}, "it": {"_count": 5}, "sick": {"_count": 1}, "everyone": {"_count": 1}, "them": {"_count": 1}, "that": {"_count": 1}, "anyone": {"_count": 2}, "humans": {"_count": 1}, "": {"_count": 2}, "wands": {"_count": 1}, "my": {"_count": 1}, "trouble": {"_count": 1}, "But": {"_count": 1}}, "get": {"_count": 27, "an": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 10}, "back": {"_count": 1}, "him": {"_count": 1}, "on": {"_count": 2}, "out": {"_count": 2}, "the": {"_count": 1}, "said": {"_count": 1}, "why": {"_count": 3}, "upset": {"_count": 1}, "Outstanding": {"_count": 1}, "all": {"_count": 1}, "lulled": {"_count": 1}}, "really": {"_count": 17, "know": {"_count": 4}, "understand": {"_count": 4}, "need": {"_count": 2}, "want": {"_count": 3}, "see": {"_count": 1}, "talk": {"_count": 1}, "think": {"_count": 1}, "fit": {"_count": 1}}, "talk": {"_count": 5, "to": {"_count": 1}, "about": {"_count": 3}, "rubbish": {"_count": 1}}, "see": {"_count": 18, "why": {"_count": 4}, "it": {"_count": 3}, "whats": {"_count": 1}, "any": {"_count": 1}, "anyone": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}, "each": {"_count": 1}, "where": {"_count": 1}, "how": {"_count": 1}, "that": {"_count": 1}}, "have": {"_count": 25, "to": {"_count": 19}, "": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 3}, "much": {"_count": 1}}, "use": {"_count": 3, "them": {"_count": 1}, "your": {"_count": 1}, "Dark": {"_count": 1}}, "seem": {"_count": 6, "to": {"_count": 6}}, "be": {"_count": 14, "scared": {"_count": 1}, "an": {"_count": 1}, "offended": {"_count": 1}, "dead": {"_count": 2}, "silly": {"_count": 2}, "pathetic": {"_count": 1}, "such": {"_count": 1}, "frightened": {"_count": 1}, "shy": {"_count": 1}, "too": {"_count": 1}, "so": {"_count": 2}}, "like": {"_count": 43, "corned": {"_count": 1}, "the": {"_count": 5}, "it": {"_count": 9}, "spiders": {"_count": 1}, "your": {"_count": 3}, "being": {"_count": 3}, "them": {"_count": 3}, "this": {"_count": 2}, "heights": {"_count": 1}, "people": {"_count": 2}, "him": {"_count": 2}, "to": {"_count": 1}, "Crouch": {"_count": 1}, "dancing": {"_count": 1}, "us": {"_count": 1}, "Snape": {"_count": 1}, "Occlumency": {"_count": 1}, "you": {"_count": 1}, "some": {"_count": 2}, "": {"_count": 1}, "wizards": {"_count": 1}}, "move": {"_count": 4, "at": {"_count": 1}, "": {"_count": 3}}, "feel": {"_count": 2, "like": {"_count": 1}, "guilty": {"_count": 1}}, "believe": {"_count": 37, "it": {"_count": 21}, "him": {"_count": 5}, "this": {"_count": 4}, "a": {"_count": 2}, "me": {"_count": 1}, "any": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "judge": {"_count": 1, "on": {"_count": 1}}, "need": {"_count": 32, "to": {"_count": 8}, "a": {"_count": 4}, "the": {"_count": 2}, "my": {"_count": 1}, "anything": {"_count": 1}, "walls": {"_count": 1}, "such": {"_count": 1}, "help": {"_count": 2}, "thumbscrews": {"_count": 1}, "protection": {"_count": 1}, "it": {"_count": 1}, "another": {"_count": 3}, "But": {"_count": 1}, "you": {"_count": 2}, "your": {"_count": 1}, "me": {"_count": 1}, "any": {"_count": 1}}, "expect": {"_count": 2, "you": {"_count": 1}, "me": {"_count": 1}}, "tell": {"_count": 11, "anyone": {"_count": 2}, "her": {"_count": 2}, "Percy": {"_count": 1}, "your": {"_count": 1}, "Ron": {"_count": 1}, "me": {"_count": 2}, "him": {"_count": 1}, "Hermione": {"_count": 1}}, "give": {"_count": 6, "us": {"_count": 1}, "a": {"_count": 2}, "me": {"_count": 2}, "orders": {"_count": 1}}, "say": {"_count": 9, "please": {"_count": 1}, "so": {"_count": 1}, "that": {"_count": 3}, "": {"_count": 1}, "anything": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}}, "mind": {"_count": 25, "Im": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 2}, "her": {"_count": 1}, "them": {"_count": 1}, "my": {"_count": 1}, "telling": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 3}, "Dumbledore": {"_count": 1}, "sharing": {"_count": 2}, "maroon": {"_count": 1}, "do": {"_count": 1}, "said": {"_count": 1}, "Id": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 2}, "its": {"_count": 1}, "sleeping": {"_count": 1}, "dying": {"_count": 1}}, "stop": {"_count": 4, "now": {"_count": 1}, "": {"_count": 1}, "dont": {"_count": 1}, "doing": {"_count": 1}}, "forget": {"_count": 19, "that": {"_count": 1}, "your": {"_count": 3}, "its": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 2}, "if": {"_count": 1}, "to": {"_count": 4}, "all": {"_count": 1}, "hes": {"_count": 1}, "the": {"_count": 1}, "be": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "we": {"_count": 10, "go": {"_count": 2}, "meet": {"_count": 1}, "": {"_count": 4}, "have": {"_count": 1}, "open": {"_count": 1}, "just": {"_count": 1}}, "go": {"_count": 16, "": {"_count": 2}, "looking": {"_count": 1}, "picking": {"_count": 2}, "to": {"_count": 2}, "giving": {"_count": 1}, "yet": {"_count": 1}, "far": {"_count": 1}, "asking": {"_count": 1}, "Sirius": {"_count": 1}, "holding": {"_count": 1}, "arresting": {"_count": 1}, "around": {"_count": 1}, "messing": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "turn": {"_count": 1}}, "understand": {"_count": 40, "Professor": {"_count": 1}, "who": {"_count": 1}, "said": {"_count": 5}, "": {"_count": 12}, "why": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 3}, "you": {"_count": 4}, "it": {"_count": 1}, "Dont": {"_count": 1}, "last": {"_count": 1}, "there": {"_count": 1}, "about": {"_count": 1}, "though": {"_count": 1}, "sir": {"_count": 1}, "But": {"_count": 1}, "she": {"_count": 1}, "Let": {"_count": 1}, "Harry": {"_count": 1}, "how": {"_count": 1}}, "care": {"_count": 35, "if": {"_count": 4}, "about": {"_count": 5}, "what": {"_count": 6}, "I": {"_count": 1}, "": {"_count": 10}, "do": {"_count": 1}, "how": {"_count": 2}, "it": {"_count": 1}, "its": {"_count": 1}, "said": {"_count": 1}, "whether": {"_count": 1}, "either": {"_count": 1}, "who": {"_count": 1}}, "follow": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 13, "very": {"_count": 2}, "at": {"_count": 3}, "well": {"_count": 1}, "happy": {"_count": 3}, "too": {"_count": 2}, "bright": {"_count": 1}, "like": {"_count": 1}}, "hurry": {"_count": 2, "up": {"_count": 2}}, "hang": {"_count": 2, "around": {"_count": 2}}, "belong": {"_count": 1, "here": {"_count": 1}}, "even": {"_count": 13, "write": {"_count": 1}, "pay": {"_count": 1}, "know": {"_count": 7}, "try": {"_count": 1}, "ask": {"_count": 1}, "deny": {"_count": 2}}, "blame": {"_count": 7, "you": {"_count": 4}, "him": {"_count": 1}, "Fred": {"_count": 1}, "her": {"_count": 1}}, "fuss": {"_count": 1, "said": {"_count": 1}}, "worry": {"_count": 13, "about": {"_count": 4}, "Hagrid": {"_count": 1}, "": {"_count": 5}, "Sirius": {"_count": 1}, "said": {"_count": 1}, "He": {"_count": 1}}, "panic": {"_count": 2, "and": {"_count": 1}, "she": {"_count": 1}}, "pick": {"_count": 2, "up": {"_count": 1}, "fights": {"_count": 1}}, "they": {"_count": 10, "": {"_count": 9}, "just": {"_count": 1}}, "fulfill": {"_count": 1, "their": {"_count": 1}}, "breathe": {"_count": 1, "a": {"_count": 1}}, "legends": {"_count": 1, "always": {"_count": 1}}, "hesitate": {"_count": 2, "to": {"_count": 2}}, "she": {"_count": 2, "wailed": {"_count": 1}, "said": {"_count": 1}}, "chuck": {"_count": 1, "it": {"_count": 1}}, "make": {"_count": 5, "good": {"_count": 1}, "them": {"_count": 1}, "me": {"_count": 3}}, "recall": {"_count": 2, "I": {"_count": 1}, "them": {"_count": 1}}, "hear": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "from": {"_count": 1}}, "fancy": {"_count": 4, "is": {"_count": 1}, "walking": {"_count": 1}, "going": {"_count": 1}, "Healing": {"_count": 1}}, "ever": {"_count": 1, "want": {"_count": 1}}, "send": {"_count": 2, "people": {"_count": 1}, "me": {"_count": 1}}, "doubt": {"_count": 5, "that": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "let": {"_count": 10, "you": {"_count": 1}, "us": {"_count": 2}, "him": {"_count": 1}, "go": {"_count": 1}, "her": {"_count": 1}, "me": {"_count": 3}, "James": {"_count": 1}}, "remember": {"_count": 8, "asking": {"_count": 1}, "ever": {"_count": 1}, "anyone": {"_count": 1}, "telling": {"_count": 1}, "you": {"_count": 2}, "it": {"_count": 1}, "Harry": {"_count": 1}}, "hurt": {"_count": 3, "him": {"_count": 1}, "them": {"_count": 1}, "em": {"_count": 1}}, "pretend": {"_count": 1, "to": {"_count": 1}}, "reckon": {"_count": 21, "Filch": {"_count": 1}, "anyones": {"_count": 1}, "my": {"_count": 1}, "he": {"_count": 2}, "hed": {"_count": 3}, "Sirius": {"_count": 1}, "it": {"_count": 2}, "hell": {"_count": 1}, "YouKnowWho": {"_count": 1}, "theyll": {"_count": 1}, "Ill": {"_count": 2}, "": {"_count": 2}, "YouKnowWhos": {"_count": 1}, "hes": {"_count": 1}, "Kingsley": {"_count": 1}}, "affect": {"_count": 1, "him": {"_count": 1}}, "snapped": {"_count": 1, "Ron": {"_count": 1}}, "I": {"_count": 7, "just": {"_count": 1}, "keep": {"_count": 1}, "didnt": {"_count": 1}, "know": {"_count": 1}, "cared": {"_count": 1}, "say": {"_count": 1}, "": {"_count": 1}}, "deny": {"_count": 1, "it": {"_count": 1}}, "trust": {"_count": 3, "him": {"_count": 1}, "you": {"_count": 2}}, "dare": {"_count": 1, "approach": {"_count": 1}}, "kill": {"_count": 3, "him": {"_count": 2}, "they": {"_count": 1}}, "revive": {"_count": 1, "him": {"_count": 1}}, "come": {"_count": 6, "back": {"_count": 3}, "off": {"_count": 1}, "up": {"_count": 1}, "across": {"_count": 1}}, "set": {"_count": 1, "much": {"_count": 1}}, "mess": {"_count": 1, "around": {"_count": 1}}, "bother": {"_count": 5, "with": {"_count": 1}, "said": {"_count": 1}, "me": {"_count": 1}, "to": {"_count": 1}, "increasing": {"_count": 1}}, "touch": {"_count": 5, "Daddys": {"_count": 1}, "my": {"_count": 1}, "anything": {"_count": 2}, "": {"_count": 1}}, "seriously": {"_count": 1, "think": {"_count": 1}}, "open": {"_count": 5, "a": {"_count": 1}, "it": {"_count": 2}, "letters": {"_count": 1}, "the": {"_count": 1}}, "crease": {"_count": 1, "": {"_count": 1}}, "waste": {"_count": 1, "it": {"_count": 1}}, "take": {"_count": 7, "O": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}, "too": {"_count": 1}, "our": {"_count": 1}, "your": {"_count": 1}}, "miss": {"_count": 1, "him": {"_count": 1}}, "envy": {"_count": 1, "the": {"_count": 1}}, "show": {"_count": 2, "favoritism": {"_count": 1}, "the": {"_count": 1}}, "complain": {"_count": 1, "": {"_count": 1}}, "dance": {"_count": 1, "he": {"_count": 1}}, "You": {"_count": 1, "heard": {"_count": 1}}, "bend": {"_count": 1, "over": {"_count": 1}}, "jokeaboutthingslike": {"_count": 1, "that": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "notice": {"_count": 1, "if": {"_count": 1}}, "exactly": {"_count": 2, "mind": {"_count": 1}, "understand": {"_count": 1}}, "work": {"_count": 2, "around": {"_count": 1}, "on": {"_count": 1}}, "shut": {"_count": 2, "up": {"_count": 2}}, "add": {"_count": 1, "much": {"_count": 1}}, "do": {"_count": 5, "anything": {"_count": 1}, "it": {"_count": 4}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "break": {"_count": 2, "ranks": {"_count": 2}}, "mention": {"_count": 3, "Percy": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "intend": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 2, "hand": {"_count": 1}, "disappear": {"_count": 1}}, "apologize": {"_count": 2, "Sirius": {"_count": 1}, "he": {"_count": 1}}, "normally": {"_count": 2, "walk": {"_count": 1}, "go": {"_count": 1}}, "run": {"_count": 1, "they": {"_count": 1}}, "kiss": {"_count": 1, "you": {"_count": 1}}, "watch": {"_count": 1, "out": {"_count": 1}}, "leave": {"_count": 2, "soon": {"_count": 1}, "on": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "realize": {"_count": 1, "is": {"_count": 1}}, "wish": {"_count": 1, "to": {"_count": 1}}, "support": {"_count": 2, "them": {"_count": 1}, "Puddlemere": {"_count": 1}}, "change": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "laugh": {"_count": 1, "all": {"_count": 1}}, "drift": {"_count": 1, "vaguely": {"_count": 1}}, "learn": {"_count": 2, "anything": {"_count": 1}, "from": {"_count": 1}}, "fly": {"_count": 1, "off": {"_count": 1}}, "offer": {"_count": 1, "the": {"_count": 1}}, "exist": {"_count": 1, "Neville": {"_count": 1}}, "harp": {"_count": 1, "on": {"_count": 1}}, "lose": {"_count": 1, "your": {"_count": 1}}, "hate": {"_count": 1, "her": {"_count": 1}}, "Muggles": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "stand": {"_count": 2, "a": {"_count": 1}, "here": {"_count": 1}}, "prevent": {"_count": 1, "you": {"_count": 1}}, "lie": {"_count": 1, "Harry": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "often": {"_count": 1, "ask": {"_count": 1}}, "much": {"_count": 1, "fancy": {"_count": 1}}, "quite": {"_count": 2, "understand": {"_count": 2}}, "regret": {"_count": 1, "it": {"_count": 1}}, "wake": {"_count": 1, "him": {"_count": 1}}, "moaned": {"_count": 1, "Hermione": {"_count": 1}}, "wonder": {"_count": 1, "youre": {"_count": 1}}, "rrreally": {"_count": 1, "understand": {"_count": 1}}, "attack": {"_count": 1, "us": {"_count": 1}}, "Harry": {"_count": 1, "began": {"_count": 1}}, "well": {"_count": 2, "blustered": {"_count": 1}, "I": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "While": {"_count": 1, "you": {"_count": 1}}, "spot": {"_count": 1, "you": {"_count": 1}}, "personally": {"_count": 1, "fancy": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "dont": {"_count": 2, "": {"_count": 1}, "suppose": {"_count": 1}}, "those": {"_count": 1, "three": {"_count": 1}}, "honestly": {"_count": 1, "its": {"_count": 1}}, "pay": {"_count": 1, "here": {"_count": 1}}, "sell": {"_count": 1, "it": {"_count": 1}}, "people": {"_count": 1, "drink": {"_count": 1}}, "shout": {"_count": 2, "people": {"_count": 1}, "": {"_count": 1}}, "call": {"_count": 1, "Ron": {"_count": 1}}, "drink": {"_count": 1, "it": {"_count": 1}}, "repeat": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "imagine": {"_count": 1, "anyone": {"_count": 1}}, "agree": {"_count": 1, "sir": {"_count": 1}}, "deserve": {"_count": 1, "said": {"_count": 1}}, "start": {"_count": 4, "acting": {"_count": 1}, "snogging": {"_count": 1}, "that": {"_count": 2}}, "yet": {"_count": 1, "know": {"_count": 1}}, "The": {"_count": 1, "Trace": {"_count": 1}}, "cooperate": {"_count": 1, "you": {"_count": 1}}, "turn": {"_count": 2, "up": {"_count": 2}}, "count": {"_count": 2, "Aberforth": {"_count": 1}, "on": {"_count": 1}}, "usually": {"_count": 1, "breed": {"_count": 1}}, "insult": {"_count": 1, "our": {"_count": 1}}, "recognize": {"_count": 1, "either": {"_count": 1}}, "or": {"_count": 1, "had": {"_count": 1}}, "die": {"_count": 2, "dont": {"_count": 1}, "The": {"_count": 1}}, "owe": {"_count": 1, "him": {"_count": 1}}, "though": {"_count": 1, "if": {"_count": 1}}, "despise": {"_count": 1, "you": {"_count": 1}}}, "only": {"_count": 1258, "the": {"_count": 34, "owls": {"_count": 1}, "hat": {"_count": 1}, "Weasley": {"_count": 1}, "tufted": {"_count": 1}, "second": {"_count": 2}, "short": {"_count": 1}, "letter": {"_count": 1}, "dregs": {"_count": 1}, "previous": {"_count": 1}, "redheads": {"_count": 1}, "Death": {"_count": 1}, "howling": {"_count": 1}, "vaguest": {"_count": 1}, "ground": {"_count": 1}, "only": {"_count": 1}, "real": {"_count": 1}, "very": {"_count": 1}, "first": {"_count": 2}, "students": {"_count": 1}, "prospect": {"_count": 1}, "lights": {"_count": 1}, "handy": {"_count": 1}, "other": {"_count": 1}, "murderer": {"_count": 1}, "way": {"_count": 1}, "slightest": {"_count": 1}, "sword": {"_count": 1}, "most": {"_count": 1}, "Forbidden": {"_count": 1}, "force": {"_count": 1}, "honor": {"_count": 1}, "moment": {"_count": 1}}, "lights": {"_count": 1, "left": {"_count": 1}}, "one": {"_count": 111, "You": {"_count": 1}, "who": {"_count": 26}, "YouKnowWho": {"_count": 3}, "taught": {"_count": 1}, "room": {"_count": 1}, "though": {"_count": 1}, "ball": {"_count": 1}, "hand": {"_count": 2}, "thing": {"_count": 11}, "way": {"_count": 4}, "occupant": {"_count": 1}, "vacancy": {"_count": 1}, "year": {"_count": 1}, "rat": {"_count": 1}, "brave": {"_count": 1}, "dementor": {"_count": 1}, "": {"_count": 6}, "murder": {"_count": 1}, "lying": {"_count": 2}, "topic": {"_count": 2}, "in": {"_count": 2}, "either": {"_count": 2}, "skrewt": {"_count": 1}, "whos": {"_count": 2}, "said": {"_count": 2}, "against": {"_count": 1}, "that": {"_count": 4}, "dish": {"_count": 1}, "watching": {"_count": 1}, "clever": {"_count": 1}, "choice": {"_count": 1}, "she": {"_count": 1}, "for": {"_count": 1}, "mistake": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 3}, "Voldemort": {"_count": 1}, "battered": {"_count": 1}, "more": {"_count": 2}, "to": {"_count": 2}, "word": {"_count": 1}, "person": {"_count": 1}, "conclusion": {"_count": 1}, "when": {"_count": 1}, "wizard": {"_count": 1}, "Many": {"_count": 1}, "man": {"_count": 1}, "he": {"_count": 1}, "Death": {"_count": 1}, "chance": {"_count": 1}, "hammock": {"_count": 1}, "left": {"_count": 1}}, "guess": {"_count": 3, "said": {"_count": 2}, "at": {"_count": 1}}, "family": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "thing": {"_count": 24, "Harry": {"_count": 2}, "in": {"_count": 3}, "Hermione": {"_count": 1}, "he": {"_count": 3}, "at": {"_count": 1}, "we": {"_count": 1}, "that": {"_count": 8}, "thats": {"_count": 1}, "really": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "I": {"_count": 1}}, "a": {"_count": 65, "dream": {"_count": 2}, "baby": {"_count": 5}, "reserve": {"_count": 1}, "few": {"_count": 15}, "second": {"_count": 1}, "bit": {"_count": 2}, "matter": {"_count": 7}, "Gryffindor": {"_count": 1}, "boy": {"_count": 1}, "short": {"_count": 3}, "Quidditch": {"_count": 2}, "danger": {"_count": 1}, "fraction": {"_count": 1}, "shape": {"_count": 1}, "little": {"_count": 6}, "piece": {"_count": 1}, "year": {"_count": 1}, "dozen": {"_count": 3}, "table": {"_count": 1}, "pawn": {"_count": 1}, "kind": {"_count": 1}, "game": {"_count": 1}, "slight": {"_count": 1}, "foot": {"_count": 1}, "hundred": {"_count": 1}, "couple": {"_count": 1}, "poor": {"_count": 1}, "tiny": {"_count": 1}, "He": {"_count": 1}}, "visitor": {"_count": 1, "was": {"_count": 1}}, "gibber": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 1, "Harry": {"_count": 1}}, "things": {"_count": 6, "in": {"_count": 1}, "Frank": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 2}, "left": {"_count": 1}}, "two": {"_count": 18, "rooms": {"_count": 1}, "words": {"_count": 2}, "Parselmouths": {"_count": 1}, "sorts": {"_count": 1}, "extra": {"_count": 1}, "skrewts": {"_count": 1}, "large": {"_count": 1}, "other": {"_count": 1}, "humans": {"_count": 1}, "left": {"_count": 2}, "people": {"_count": 1}, "bridesmaids": {"_count": 1}, "empty": {"_count": 1}, "doors": {"_count": 1}, "rows": {"_count": 1}, "members": {"_count": 1}}, "safe": {"_count": 3, "places": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}}, "was": {"_count": 4, "Hagrid": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}, "Travers": {"_count": 1}}, "he": {"_count": 12, "and": {"_count": 1}, "knew": {"_count": 2}, "could": {"_count": 2}, "blew": {"_count": 1}, "had": {"_count": 4}, "would": {"_count": 1}, "kept": {"_count": 1}}, "said": {"_count": 7, "Griphook": {"_count": 1}, "Fudge": {"_count": 1}, "that": {"_count": 2}, "Id": {"_count": 1}, "he": {"_count": 2}}, "ones": {"_count": 20, "with": {"_count": 1}, "making": {"_count": 1}, "left": {"_count": 5}, "who": {"_count": 7}, "around": {"_count": 1}, "to": {"_count": 1}, "hooting": {"_count": 1}, "Ive": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "place": {"_count": 6, "fer": {"_count": 1}, "Ive": {"_count": 2}, "they": {"_count": 1}, "he": {"_count": 2}}, "yesterday": {"_count": 1, "she": {"_count": 1}}, "realized": {"_count": 1, "where": {"_count": 1}}, "Dumbledore": {"_count": 4, "and": {"_count": 1}, "had": {"_count": 2}, "smiling": {"_count": 1}}, "came": {"_count": 4, "in": {"_count": 2}, "out": {"_count": 1}, "into": {"_count": 1}}, "four": {"_count": 2, "people": {"_count": 1}, "of": {"_count": 1}}, "just": {"_count": 49, "realized": {"_count": 5}, "got": {"_count": 7}, "raised": {"_count": 1}, "managing": {"_count": 1}, "noticed": {"_count": 3}, "reached": {"_count": 2}, "started": {"_count": 3}, "joined": {"_count": 1}, "see": {"_count": 1}, "come": {"_count": 1}, "": {"_count": 1}, "spotted": {"_count": 1}, "in": {"_count": 1}, "dawning": {"_count": 1}, "heard": {"_count": 1}, "found": {"_count": 2}, "managed": {"_count": 1}, "stopped": {"_count": 1}, "fallen": {"_count": 1}, "gone": {"_count": 1}, "put": {"_count": 1}, "happened": {"_count": 1}, "told": {"_count": 1}, "remembered": {"_count": 2}, "finished": {"_count": 1}, "arrived": {"_count": 1}, "seen": {"_count": 1}, "died": {"_count": 1}, "closed": {"_count": 1}, "released": {"_count": 1}, "realizing": {"_count": 1}, "beginning": {"_count": 1}}, "because": {"_count": 8, "he": {"_count": 1}, "everyone": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "of": {"_count": 1}, "Voldemort": {"_count": 1}, "its": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "Hermione": {"_count": 3, "Granger": {"_count": 1}, "could": {"_count": 1}, "mastered": {"_count": 1}}, "had": {"_count": 10, "Potions": {"_count": 1}, "odd": {"_count": 1}, "one": {"_count": 2}, "the": {"_count": 1}, "time": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}, "until": {"_count": 1}}, "too": {"_count": 12, "clearly": {"_count": 1}, "easy": {"_count": 1}, "well": {"_count": 6}, "happy": {"_count": 2}, "willing": {"_count": 1}, "likely": {"_count": 1}}, "no": {"_count": 1, "contact": {"_count": 1}}, "die": {"_count": 1, "in": {"_count": 1}}, "care": {"_count": 1, "about": {"_count": 1}}, "reason": {"_count": 3, "they": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}}, "ends": {"_count": 1, "when": {"_count": 1}}, "joking": {"_count": 4, "Professor": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "read": {"_count": 1, "by": {"_count": 1}}, "left": {"_count": 1, "one": {"_count": 1}}, "moonlight": {"_count": 1, "and": {"_count": 1}}, "hope": {"_count": 7, "": {"_count": 1}, "we": {"_count": 2}, "that": {"_count": 3}, "Dumbledore": {"_count": 1}}, "himself": {"_count": 1, "in": {"_count": 1}}, "air": {"_count": 1, "she": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "a": {"_count": 1}, "Defense": {"_count": 1}, "Charing": {"_count": 1}}, "shows": {"_count": 2, "dead": {"_count": 1}, "up": {"_count": 1}}, "see": {"_count": 6, "you": {"_count": 1}, "a": {"_count": 2}, "ten": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 21, "he": {"_count": 7}, "I": {"_count": 3}, "they": {"_count": 3}, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "Ginny": {"_count": 1}, "Moody": {"_count": 1}, "the": {"_count": 1}, "Fudge": {"_count": 1}, "Ron": {"_count": 1}, "his": {"_count": 1}}, "known": {"_count": 2, "maker": {"_count": 1}, "relic": {"_count": 1}}, "Stone": {"_count": 1, "currently": {"_count": 1}}, "Harry": {"_count": 5, "could": {"_count": 4}, "thought": {"_count": 1}}, "wondered": {"_count": 1, "who": {"_count": 1}}, "chance": {"_count": 9, "to": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}, "the": {"_count": 1}}, "got": {"_count": 14, "my": {"_count": 2}, "to": {"_count": 2}, "a": {"_count": 4}, "one": {"_count": 1}, "nine": {"_count": 1}, "teabags": {"_count": 1}, "ploughed": {"_count": 1}, "three": {"_count": 1}, "half": {"_count": 1}}, "used": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "dying": {"_count": 1, "a": {"_count": 1}}, "way": {"_count": 22, "forward": {"_count": 2}, "": {"_count": 2}, "to": {"_count": 6}, "Im": {"_count": 1}, "Ill": {"_count": 1}, "hed": {"_count": 1}, "he": {"_count": 3}, "you": {"_count": 1}, "I": {"_count": 1}, "left": {"_count": 1}, "out": {"_count": 1}, "Nagini": {"_count": 1}, "she": {"_count": 1}}, "nettle": {"_count": 1, "wine": {"_count": 1}}, "enough": {"_count": 2, "there": {"_count": 1}, "left": {"_count": 1}}, "did": {"_count": 2, "my": {"_count": 1}, "they": {"_count": 1}}, "then": {"_count": 3, "that": {"_count": 2}, "could": {"_count": 1}}, "power": {"_count": 1, "and": {"_count": 1}}, "hear": {"_count": 2, "Quirrells": {"_count": 1}, "a": {"_count": 1}}, "have": {"_count": 6, "delayed": {"_count": 1}, "tried": {"_count": 1}, "excited": {"_count": 1}, "died": {"_count": 2}, "understood": {"_count": 1}}, "killed": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "hint": {"_count": 1, "of": {"_count": 1}}, "their": {"_count": 2, "terror": {"_count": 1}, "heads": {"_count": 1}}, "by": {"_count": 19, "the": {"_count": 6}, "using": {"_count": 1}, "their": {"_count": 1}, "Snape": {"_count": 1}, "Madame": {"_count": 1}, "torches": {"_count": 1}, "showing": {"_count": 2}, "his": {"_count": 1}, "copying": {"_count": 1}, "gentle": {"_count": 1}, "firelight": {"_count": 1}, "forcing": {"_count": 1}, "an": {"_count": 1}}, "weapon": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "borrowing": {"_count": 1, "this": {"_count": 1}}, "so": {"_count": 3, "many": {"_count": 1}, "far": {"_count": 1}, "Harry": {"_count": 1}}, "him": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "remaining": {"_count": 4, "chair": {"_count": 1}, "option": {"_count": 1}, "relative": {"_count": 1}, "member": {"_count": 1}}, "seen": {"_count": 4, "Percy": {"_count": 1}, "in": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}}, "be": {"_count": 12, "Dracos": {"_count": 1}, "opened": {"_count": 1}, "freed": {"_count": 1}, "seen": {"_count": 1}, "heard": {"_count": 1}, "an": {"_count": 2}, "three": {"_count": 1}, "gone": {"_count": 1}, "Fleurs": {"_count": 1}, "passed": {"_count": 1}, "one": {"_count": 1}}, "to": {"_count": 34, "the": {"_count": 3}, "disarm": {"_count": 1}, "be": {"_count": 3}, "use": {"_count": 2}, "those": {"_count": 3}, "find": {"_count": 3}, "fourth": {"_count": 1}, "scratch": {"_count": 1}, "make": {"_count": 1}, "bubble": {"_count": 1}, "go": {"_count": 1}, "check": {"_count": 1}, "look": {"_count": 1}, "enumerate": {"_count": 1}, "meet": {"_count": 1}, "regain": {"_count": 1}, "see": {"_count": 1}, "replace": {"_count": 1}, "sneak": {"_count": 1}, "employ": {"_count": 1}, "fall": {"_count": 1}, "me": {"_count": 1}, "stop": {"_count": 1}, "serve": {"_count": 1}, "possess": {"_count": 1}}, "gone": {"_count": 2, "one": {"_count": 1}, "a": {"_count": 1}}, "wanted": {"_count": 6, "to": {"_count": 4}, "Harry": {"_count": 1}, "me": {"_count": 1}}, "five": {"_count": 5, "minutes": {"_count": 3}, "or": {"_count": 1}, "and": {"_count": 1}}, "bother": {"_count": 2, "with": {"_count": 1}, "you": {"_count": 1}}, "his": {"_count": 5, "crimson": {"_count": 1}, "own": {"_count": 1}, "head": {"_count": 2}, "scar": {"_count": 1}}, "ever": {"_count": 11, "worked": {"_count": 1}, "seen": {"_count": 3}, "found": {"_count": 1}, "heard": {"_count": 1}, "a": {"_count": 1}, "taught": {"_count": 1}, "Tom": {"_count": 1}, "saw": {"_count": 2}}, "seedlings": {"_count": 1, "their": {"_count": 1}}, "that": {"_count": 5, "no": {"_count": 1}, "You": {"_count": 1}, "which": {"_count": 2}, "the": {"_count": 1}}, "pixies": {"_count": 1, "Lockhart": {"_count": 1}}, "shook": {"_count": 1, "him": {"_count": 1}}, "person": {"_count": 38, "who": {"_count": 9}, "Lord": {"_count": 1}, "Harry": {"_count": 1}, "whos": {"_count": 1}, "Crabbe": {"_count": 1}, "left": {"_count": 2}, "he": {"_count": 2}, "at": {"_count": 2}, "missing": {"_count": 1}, "in": {"_count": 8}, "to": {"_count": 1}, "apart": {"_count": 1}, "not": {"_count": 2}, "last": {"_count": 1}, "eagerly": {"_count": 1}, "acting": {"_count": 1}, "ever": {"_count": 1}, "disgruntled": {"_count": 1}, "there": {"_count": 1}}, "bringing": {"_count": 1, "up": {"_count": 1}}, "accept": {"_count": 1, "huntsmen": {"_count": 1}}, "need": {"_count": 4, "another": {"_count": 1}, "to": {"_count": 3}}, "ghost": {"_count": 1, "teacher": {"_count": 1}}, "No": {"_count": 1, "one": {"_count": 1}}, "we": {"_count": 3, "could": {"_count": 2}, "had": {"_count": 1}}, "gripping": {"_count": 1, "the": {"_count": 1}}, "knew": {"_count": 5, "": {"_count": 1}, "that": {"_count": 3}, "half": {"_count": 1}}, "stopped": {"_count": 2, "when": {"_count": 1}, "staring": {"_count": 1}}, "half": {"_count": 5, "finished": {"_count": 1}, "of": {"_count": 1}, "listening": {"_count": 2}, "an": {"_count": 1}}, "seconds": {"_count": 2, "Harry": {"_count": 2}}, "Lockhart": {"_count": 1, "shouted": {"_count": 1}}, "sounds": {"_count": 5, "were": {"_count": 4}, "he": {"_count": 1}}, "staying": {"_count": 1, "over": {"_count": 1}}, "were": {"_count": 3, "there": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 1}}, "as": {"_count": 5, "he": {"_count": 1}, "strong": {"_count": 1}, "a": {"_count": 1}, "good": {"_count": 1}, "powerful": {"_count": 1}}, "comfort": {"_count": 1, "was": {"_count": 1}}, "halflistening": {"_count": 1, "": {"_count": 1}}, "yards": {"_count": 1, "from": {"_count": 1}}, "truly": {"_count": 2, "have": {"_count": 2}}, "filling": {"_count": 2, "in": {"_count": 2}}, "been": {"_count": 5, "suspended": {"_count": 1}, "at": {"_count": 1}, "three": {"_count": 1}, "reading": {"_count": 1}, "back": {"_count": 1}}, "once": {"_count": 8, "and": {"_count": 1}, "before": {"_count": 4}, "or": {"_count": 1}, "a": {"_count": 1}, "Griphook": {"_count": 1}}, "Fangs": {"_count": 1, "nose": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "Parselmouth": {"_count": 1, "in": {"_count": 1}}, "there": {"_count": 6, "was": {"_count": 3}, "had": {"_count": 1}, "for": {"_count": 1}, "because": {"_count": 1}}, "times": {"_count": 2, "hed": {"_count": 1}, "Harry": {"_count": 1}}, "of": {"_count": 5, "course": {"_count": 1}, "finding": {"_count": 1}, "overage": {"_count": 1}, "the": {"_count": 2}}, "put": {"_count": 2, "me": {"_count": 1}, "up": {"_count": 1}}, "Dudley": {"_count": 1, "to": {"_count": 1}}, "living": {"_count": 5, "relatives": {"_count": 2}, "creature": {"_count": 1}, "person": {"_count": 1}, "soul": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "part": {"_count": 2, "of": {"_count": 2}}, "last": {"_count": 2, "year": {"_count": 1}, "night": {"_count": 1}}, "passenger": {"_count": 1, "left": {"_count": 1}}, "girl": {"_count": 2, "Ginny": {"_count": 1}, "on": {"_count": 1}}, "entirely": {"_count": 1, "non": {"_count": 1}}, "for": {"_count": 8, "a": {"_count": 2}, "magical": {"_count": 1}, "members": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}}, "assume": {"_count": 4, "by": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 2}}, "time": {"_count": 3, "Harry": {"_count": 1}, "they": {"_count": 1}, "I": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "your": {"_count": 4, "wands": {"_count": 1}, "team": {"_count": 1}, "first": {"_count": 1}, "Phoenix": {"_count": 1}}, "wished": {"_count": 1, "he": {"_count": 1}}, "third": {"_count": 2, "year": {"_count": 2}}, "mildly": {"_count": 1, "interested": {"_count": 1}}, "light": {"_count": 4, "now": {"_count": 1}, "came": {"_count": 2}, "in": {"_count": 1}}, "silent": {"_count": 1, "because": {"_count": 1}}, "my": {"_count": 2, "arm": {"_count": 1}, "ankle": {"_count": 1}}, "remains": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 2, "night": {"_count": 1}, "Voldemort": {"_count": 1}}, "three": {"_count": 6, "years": {"_count": 1}, "other": {"_count": 1}, "schools": {"_count": 1}, "weeks": {"_count": 1}, "patients": {"_count": 1}, "of": {"_count": 1}}, "if": {"_count": 5, "you": {"_count": 1}, "were": {"_count": 2}, "Ron": {"_count": 1}, "the": {"_count": 1}}, "people": {"_count": 10, "who": {"_count": 7}, "watching": {"_count": 1}, "alive": {"_count": 1}, "in": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "hoped": {"_count": 3, "he": {"_count": 1}, "to": {"_count": 1}, "they": {"_count": 1}}, "fifty": {"_count": 1, "points": {"_count": 1}}, "catch": {"_count": 1, "glimpses": {"_count": 1}}, "on": {"_count": 1, "condition": {"_count": 1}}, "Crookshanks": {"_count": 3, "": {"_count": 2}, "Hermiones": {"_count": 1}}, "proved": {"_count": 1, "he": {"_count": 1}}, "seven": {"_count": 4, "Animagi": {"_count": 1}, "and": {"_count": 1}, "oclock": {"_count": 1}, "passages": {"_count": 1}}, "know": {"_count": 5, "how": {"_count": 1}, "about": {"_count": 1}, "one": {"_count": 1}, "flashy": {"_count": 1}, "when": {"_count": 1}}, "sound": {"_count": 10, "apart": {"_count": 2}, "that": {"_count": 1}, "was": {"_count": 4}, "in": {"_count": 2}, "to": {"_count": 1}}, "bearable": {"_count": 1, "but": {"_count": 1}}, "voice": {"_count": 1, "that": {"_count": 1}}, "door": {"_count": 3, "": {"_count": 1}, "behind": {"_count": 1}, "still": {"_count": 1}}, "dream": {"_count": 1, "of": {"_count": 1}}, "made": {"_count": 1, "you": {"_count": 1}}, "halfclosed": {"_count": 1, "his": {"_count": 1}}, "Black": {"_count": 2, "and": {"_count": 1}, "family": {"_count": 1}}, "thin": {"_count": 1, "gray": {"_count": 1}}, "grabbed": {"_count": 1, "the": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 2}}, "Professor": {"_count": 2, "Lupins": {"_count": 1}, "Dumbledore": {"_count": 1}}, "wish": {"_count": 1, "that": {"_count": 1}}, "means": {"_count": 2, "of": {"_count": 2}}, "source": {"_count": 3, "of": {"_count": 3}}, "found": {"_count": 1, "out": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "youve": {"_count": 1, "blocked": {"_count": 1}}, "an": {"_count": 2, "Engorgement": {"_count": 1}, "Acceptable": {"_count": 1}}, "passed": {"_count": 1, "two": {"_count": 1}}, "real": {"_count": 2, "Muggle": {"_count": 1}, "thing": {"_count": 1}}, "high": {"_count": 1, "enough": {"_count": 1}}, "returned": {"_count": 1, "when": {"_count": 1}}, "eighteen": {"_count": 1, "": {"_count": 1}}, "possible": {"_count": 3, "cause": {"_count": 1}, "explanation": {"_count": 1}, "but": {"_count": 1}}, "tricky": {"_count": 1, "part": {"_count": 1}}, "smiled": {"_count": 1, "and": {"_count": 1}}, "class": {"_count": 1, "in": {"_count": 1}}, "briefly": {"_count": 1, "by": {"_count": 1}}, "dimly": {"_count": 1, "aware": {"_count": 1}}, "like": {"_count": 4, "him": {"_count": 3}, "coming": {"_count": 1}}, "done": {"_count": 3, "it": {"_count": 2}, "one": {"_count": 1}}, "singlemalt": {"_count": 1, "whiskey": {"_count": 1}}, "imposed": {"_count": 1, "this": {"_count": 1}}, "fair": {"_count": 1, "Dumbledore": {"_count": 1}}, "with": {"_count": 5, "their": {"_count": 1}, "acceptance": {"_count": 1}, "fright": {"_count": 1}, "difficulty": {"_count": 1}, "the": {"_count": 1}}, "sounded": {"_count": 1, "very": {"_count": 1}}, "good": {"_count": 2, "thing": {"_count": 2}}, "bright": {"_count": 1, "spot": {"_count": 1}}, "allwizard": {"_count": 1, "village": {"_count": 1}}, "champion": {"_count": 2, "who": {"_count": 2}}, "photograph": {"_count": 1, "Harry": {"_count": 1}}, "human": {"_count": 1, "": {"_count": 1}}, "Gryffindors": {"_count": 1, "cheering": {"_count": 1}}, "saying": {"_count": 4, "this": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}, "she": {"_count": 1}}, "ten": {"_count": 3, "skrewts": {"_count": 1}, "feet": {"_count": 1}, "to": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "socks": {"_count": 1, "said": {"_count": 1}}, "accessible": {"_count": 1, "at": {"_count": 1}}, "appear": {"_count": 1, "at": {"_count": 1}}, "Snape": {"_count": 1, "could": {"_count": 1}}, "lets": {"_count": 1, "Snape": {"_count": 1}}, "wed": {"_count": 1, "done": {"_count": 1}}, "bubbles": {"_count": 1, "issued": {"_count": 1}}, "judge": {"_count": 2, "who": {"_count": 1}, "not": {"_count": 1}}, "reluctantly": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "hie": {"_count": 1, "doing": {"_count": 1}}, "sent": {"_count": 1, "Hedwig": {"_count": 1}}, "wearing": {"_count": 1, "out": {"_count": 1}}, "teasing": {"_count": 1, "him": {"_count": 1}}, "correspondent": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "give": {"_count": 1, "you": {"_count": 1}}, "Hogwarts": {"_count": 1, "champion": {"_count": 1}}, "upon": {"_count": 1, "Cedric": {"_count": 1}}, "six": {"_count": 2, "feet": {"_count": 1}, "weeks": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "forcing": {"_count": 1, "myself": {"_count": 1}}, "contact": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "moments": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 2, "Voldemort": {"_count": 1}, "ever": {"_count": 1}}, "feel": {"_count": 1, "safe": {"_count": 1}}, "scattered": {"_count": 1, "memories": {"_count": 1}}, "kind": {"_count": 2, "Harry": {"_count": 1}, "of": {"_count": 1}}, "outlet": {"_count": 1, "he": {"_count": 1}}, "vaguely": {"_count": 2, "aware": {"_count": 1}, "registered": {"_count": 1}}, "Evidently": {"_count": 1, "he": {"_count": 1}}, "youknowwhat": {"_count": 1, "for": {"_count": 1}}, "friend": {"_count": 1, "he": {"_count": 1}}, "finished": {"_count": 2, "Lupin": {"_count": 1}, "all": {"_count": 1}}, "career": {"_count": 1, "hed": {"_count": 1}}, "qualified": {"_count": 1, "a": {"_count": 1}}, "wants": {"_count": 2, "Percy": {"_count": 1}, "me": {"_count": 1}}, "evidence": {"_count": 1, "was": {"_count": 1}}, "useful": {"_count": 1, "thing": {"_count": 1}}, "fifteen": {"_count": 3, "and": {"_count": 1}, "Im": {"_count": 1}, "minutes": {"_count": 1}}, "after": {"_count": 3, "he": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}}, "get": {"_count": 6, "by": {"_count": 3}, "you": {"_count": 2}, "letters": {"_count": 1}}, "new": {"_count": 1, "bit": {"_count": 1}}, "undesirable": {"_count": 1, "things": {"_count": 1}}, "Siriusfree": {"_count": 1, "space": {"_count": 1}}, "jealous": {"_count": 1, "": {"_count": 1}}, "prats": {"_count": 1, "become": {"_count": 1}}, "naught": {"_count": 1, "to": {"_count": 1}}, "Arthur": {"_count": 1, "could": {"_count": 1}}, "Loony": {"_count": 1, "Lovegood": {"_count": 1}}, "recognized": {"_count": 1, "him": {"_count": 1}}, "those": {"_count": 4, "they": {"_count": 1}, "of": {"_count": 2}, "whom": {"_count": 1}}, "pureblood": {"_count": 1, "wizards": {"_count": 1}}, "prevented": {"_count": 1, "from": {"_count": 1}}, "looked": {"_count": 2, "taken": {"_count": 1}, "in": {"_count": 1}}, "pretending": {"_count": 3, "to": {"_count": 3}}, "twentyfour": {"_count": 1, "hours": {"_count": 1}}, "worthwhile": {"_count": 1, "thing": {"_count": 1}}, "asked": {"_count": 2, "her": {"_count": 2}}, "Who": {"_count": 1, "cares": {"_count": 1}}, "bought": {"_count": 1, "them": {"_count": 1}}, "performed": {"_count": 1, "illegal": {"_count": 1}}, "believe": {"_count": 1, "in": {"_count": 1}}, "weirdos": {"_count": 1, "who": {"_count": 1}}, "lines": {"_count": 1, "said": {"_count": 1}}, "bit": {"_count": 2, "of": {"_count": 2}}, "remembered": {"_count": 1, "five": {"_count": 1}}, "halfattached": {"_count": 1, "to": {"_count": 1}}, "Yeah": {"_count": 1, "well": {"_count": 1}}, "this": {"_count": 3, "a": {"_count": 1}, "morning": {"_count": 1}, "that": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "year": {"_count": 1, "we": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "appeared": {"_count": 1, "in": {"_count": 1}}, "teacher": {"_count": 1, "present": {"_count": 1}}, "temporary": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "hadnt": {"_count": 1}}, "open": {"_count": 1, "it": {"_count": 1}}, "enter": {"_count": 2, "said": {"_count": 1}, "unseen": {"_count": 1}}, "danger": {"_count": 1, "with": {"_count": 1}}, "thirty": {"_count": 1, "points": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "occasion": {"_count": 1, "on": {"_count": 1}}, "slightly": {"_count": 2, "marred": {"_count": 1}, "muffled": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "sources": {"_count": 1, "of": {"_count": 1}}, "drinking": {"_count": 1, "to": {"_count": 1}}, "witnessed": {"_count": 1, "and": {"_count": 1}}, "window": {"_count": 1, "was": {"_count": 1}}, "take": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "other": {"_count": 5, "occupied": {"_count": 1}, "sound": {"_count": 1}, "explanation": {"_count": 1}, "people": {"_count": 1}, "thing": {"_count": 1}}, "suppose": {"_count": 2, "gold": {"_count": 1}, "that": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "comforting": {"_count": 1, "it": {"_count": 1}}, "most": {"_count": 1, "unfortunately": {"_count": 1}}, "remedy": {"_count": 1, "is": {"_count": 1}}, "son": {"_count": 4, "would": {"_count": 1}, "": {"_count": 3}}, "Kreacher": {"_count": 1, "for": {"_count": 1}}, "intensified": {"_count": 1, "her": {"_count": 1}}, "question": {"_count": 2, "was": {"_count": 1}, "that": {"_count": 1}}, "let": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "twentytwo": {"_count": 1, "minutes": {"_count": 1}}, "lost": {"_count": 1, "by": {"_count": 1}}, "received": {"_count": 1, "one": {"_count": 1}}, "feeble": {"_count": 1, "wisps": {"_count": 1}}, "glimpses": {"_count": 1, "of": {"_count": 1}}, "students": {"_count": 1, "to": {"_count": 1}}, "teachers": {"_count": 1, "that": {"_count": 1}}, "glass": {"_count": 1, "that": {"_count": 1}}, "fire": {"_count": 1, "that": {"_count": 1}}, "guaranteed": {"_count": 1, "him": {"_count": 1}}, "muttering": {"_count": 1, "a": {"_count": 1}}, "filled": {"_count": 1, "in": {"_count": 1}}, "perform": {"_count": 1, "Legilimency": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "trouble": {"_count": 1, "is": {"_count": 1}}, "fragments": {"_count": 1, "of": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "defense": {"_count": 1, "is": {"_count": 1}}, "heard": {"_count": 1, "": {"_count": 1}}, "pulled": {"_count": 1, "back": {"_count": 1}}, "halfheartedly": {"_count": 2, "to": {"_count": 1}, "when": {"_count": 1}}, "wizards": {"_count": 1, "": {"_count": 1}}, "reveals": {"_count": 1, "him": {"_count": 1}}, "quacking": {"_count": 1, "": {"_count": 1}}, "greedy": {"_count": 1, "and": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "Dumbledores": {"_count": 1, "protection": {"_count": 1}}, "meant": {"_count": 2, "": {"_count": 1}, "do": {"_count": 1}}, "gesture": {"_count": 1, "he": {"_count": 1}}, "concern": {"_count": 1, "is": {"_count": 1}}, "work": {"_count": 1, "parttime": {"_count": 1}}, "she": {"_count": 2, "had": {"_count": 1}, "didnt": {"_count": 1}}, "record": {"_count": 1, "of": {"_count": 1}}, "managed": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "shop": {"_count": 1, "in": {"_count": 1}}, "grudgingly": {"_count": 3, "looked": {"_count": 1}, "made": {"_count": 1}, "with": {"_count": 1}}, "invitees": {"_count": 1, "although": {"_count": 1}}, "gaze": {"_count": 1, "up": {"_count": 1}}, "followed": {"_count": 1, "different": {"_count": 1}}, "regular": {"_count": 1, "correspondent": {"_count": 1}}, "narrowly": {"_count": 2, "escaped": {"_count": 1}, "avoided": {"_count": 1}}, "twice": {"_count": 1, "over": {"_count": 1}}, "Muggleborns": {"_count": 2, "they": {"_count": 1}, "who": {"_count": 1}}, "knows": {"_count": 1, "said": {"_count": 1}}, "gave": {"_count": 1, "her": {"_count": 1}}, "valuable": {"_count": 1, "possession": {"_count": 1}}, "problem": {"_count": 2, "was": {"_count": 1}, "is": {"_count": 1}}, "you": {"_count": 1, "who": {"_count": 1}}, "coldshouldering": {"_count": 1, "Ginny": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "checking": {"_count": 1, "": {"_count": 1}}, "taken": {"_count": 1, "them": {"_count": 1}}, "dont": {"_count": 1, "repeat": {"_count": 1}}, "honest": {"_count": 1, "things": {"_count": 1}}, "March": {"_count": 1, "for": {"_count": 1}}, "accidentally": {"_count": 1, "": {"_count": 1}}, "nowhere": {"_count": 1, "near": {"_count": 1}}, "occupied": {"_count": 1, "bed": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "exist": {"_count": 1, "in": {"_count": 1}}, "here": {"_count": 1, "for": {"_count": 1}}, "split": {"_count": 1, "your": {"_count": 1}}, "explicable": {"_count": 1, "if": {"_count": 1}}, "significant": {"_count": 1, "because": {"_count": 1}}, "handpicked": {"_count": 1, "the": {"_count": 1}}, "protection": {"_count": 1, "that": {"_count": 1}}, "book": {"_count": 1, "left": {"_count": 1}}, "copied": {"_count": 1, "it": {"_count": 1}}, "embarrass": {"_count": 1, "yourself": {"_count": 1}}, "conclude": {"_count": 1, "that": {"_count": 1}}, "move": {"_count": 1, "he": {"_count": 1}}, "rage": {"_count": 1, "and": {"_count": 1}}, "natural": {"_count": 1, "": {"_count": 1}}, "hours": {"_count": 1, "ago": {"_count": 1}}, "won": {"_count": 1, "every": {"_count": 1}}, "personal": {"_count": 1, "question": {"_count": 1}}, "now": {"_count": 4, "therefore": {"_count": 1}, "that": {"_count": 2}, "did": {"_count": 1}}, "break": {"_count": 1, "under": {"_count": 1}}, "yanking": {"_count": 1, "your": {"_count": 1}}, "caught": {"_count": 1, "up": {"_count": 1}}, "explanation": {"_count": 1, "for": {"_count": 1}}, "change": {"_count": 1, "was": {"_count": 1}}, "approached": {"_count": 1, "Slughorn": {"_count": 1}}, "has": {"_count": 1, "one": {"_count": 1}}, "around": {"_count": 1, "a": {"_count": 1}}, "Id": {"_count": 1, "had": {"_count": 1}}, "met": {"_count": 2, "him": {"_count": 2}}, "activated": {"_count": 1, "if": {"_count": 1}}, "Wizarding": {"_count": 1, "photograph": {"_count": 1}}, "rises": {"_count": 1, "about": {"_count": 1}}, "potentially": {"_count": 1, "useful": {"_count": 1}}, "slender": {"_count": 1, "hope": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "set": {"_count": 1, "a": {"_count": 1}}, "daughter": {"_count": 1, "to": {"_count": 1}}, "choose": {"_count": 1, "witches": {"_count": 1}}, "spell": {"_count": 1, "she": {"_count": 1}}, "solid": {"_count": 1, "things": {"_count": 1}}, "persevered": {"_count": 1, "so": {"_count": 1}}, "agreed": {"_count": 2, "to": {"_count": 2}}, "goblinmade": {"_count": 1, "armor": {"_count": 1}}, "achievement": {"_count": 1, "was": {"_count": 1}}, "unexplored": {"_count": 1, "avenue": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "Ron": {"_count": 1, "standing": {"_count": 1}}, "illumination": {"_count": 1, "the": {"_count": 1}}, "bats": {"_count": 1, "would": {"_count": 1}}, "nonmourner": {"_count": 1, "at": {"_count": 1}}, "basis": {"_count": 1, "for": {"_count": 1}}, "true": {"_count": 1, "thing": {"_count": 1}}, "laid": {"_count": 1, "that": {"_count": 1}}, "noise": {"_count": 1, "was": {"_count": 1}}, "called": {"_count": 1, "us": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "Voldemorts": {"_count": 1, "inner": {"_count": 1}}, "emerged": {"_count": 1, "for": {"_count": 1}}, "purple": {"_count": 1, "and": {"_count": 1}}, "cling": {"_count": 1, "to": {"_count": 1}}, "picture": {"_count": 1, "in": {"_count": 1}}, "Stunned": {"_count": 1, "said": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "object": {"_count": 1, "anyone": {"_count": 1}}, "missed": {"_count": 1, "because": {"_count": 1}}, "dementors": {"_count": 1, "could": {"_count": 1}}, "summoned": {"_count": 1, "me": {"_count": 1}}, "Voldemort": {"_count": 1, "but": {"_count": 1}}, "beings": {"_count": 1, "there": {"_count": 1}}, "feared": {"_count": 1, "that": {"_count": 1}}, "dreaded": {"_count": 1, "that": {"_count": 1}}, "lie": {"_count": 1, "there": {"_count": 1}}, "forgot": {"_count": 1, "to": {"_count": 1}}}, "acting": {"_count": 41, "oddly": {"_count": 3, "today": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "Harrys": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "very": {"_count": 2, "oddly": {"_count": 2}}, "a": {"_count": 1, "werewolf": {"_count": 1}}, "through": {"_count": 1, "somebody": {"_count": 1}}, "as": {"_count": 8, "though": {"_count": 6}, "commentator": {"_count": 1}, "an": {"_count": 1}}, "Harry": {"_count": 1, "suspected": {"_count": 1}}, "like": {"_count": 6, "Scabbers": {"_count": 1}, "Im": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 2}, "one": {"_count": 1}}, "without": {"_count": 1, "mercy": {"_count": 1}}, "of": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "the": {"_count": 2, "hero": {"_count": 2}}, "under": {"_count": 1, "the": {"_count": 1}}, "normally": {"_count": 1, "Harry": {"_count": 1}}, "upon": {"_count": 2, "YouKnow": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 4, "them": {"_count": 1}, "Voldemorts": {"_count": 1}, "Dumbledores": {"_count": 2}}, "alone": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "oddly": {"_count": 58, "today": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 1, "summer": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "familiar": {"_count": 2, "": {"_count": 2}}, "squashed": {"_count": 1, "as": {"_count": 1}}, "bright": {"_count": 1, "": {"_count": 1}}, "shaped": {"_count": 3, "hillocks": {"_count": 1}, "log": {"_count": 1}, "balloon": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "slack": {"_count": 1, "and": {"_count": 1}}, "satisfying": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "Lockhart": {"_count": 1}}, "tense": {"_count": 1, "too": {"_count": 1}}, "eerie": {"_count": 1, "noise": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "separate": {"_count": 1, "from": {"_count": 1}}, "husky": {"_count": 1, "voice": {"_count": 1}}, "formal": {"_count": 1, "": {"_count": 1}}, "wide": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 1, "Harrys": {"_count": 1}}, "constrained": {"_count": 1, "voice": {"_count": 1}}, "distorted": {"_count": 2, "by": {"_count": 1}, "and": {"_count": 1}}, "unreal": {"_count": 1, "glitter": {"_count": 1}}, "lumpy": {"_count": 1, "in": {"_count": 1}}, "still": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "ruffled": {"_count": 1, "some": {"_count": 1}}, "distracted": {"_count": 1, "and": {"_count": 1}}, "misty": {"_count": 2, "night": {"_count": 1}, "protuberant": {"_count": 1}}, "cool": {"_count": 1, "and": {"_count": 1}}, "blank": {"_count": 2, "": {"_count": 1}, "eyes": {"_count": 1}}, "sinister": {"_count": 1, "": {"_count": 1}}, "triumphant": {"_count": 1, "glances": {"_count": 1}}, "chilling": {"_count": 1, "sound": {"_count": 1}}, "furtive": {"_count": 1, "look": {"_count": 1}}, "disembodied": {"_count": 1, "his": {"_count": 1}}, "flushed": {"_count": 1, "": {"_count": 1}}, "groggy": {"_count": 1, "and": {"_count": 1}}, "proportioned": {"_count": 1, "his": {"_count": 1}}, "colorless": {"_count": 1, "with": {"_count": 1}}, "clear": {"_count": 1, "all": {"_count": 1}}, "detached": {"_count": 1, "way": {"_count": 1}}, "lonely": {"_count": 1, "without": {"_count": 1}}, "twisted": {"_count": 1, "smile": {"_count": 1}}, "dressed": {"_count": 1, "men": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}, "stiff": {"_count": 1, "": {"_count": 1}}, "relieved": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "impressive": {"_count": 1, "figure": {"_count": 1}}, "disconnected": {"_count": 1, "now": {"_count": 1}}}, "Viewers": {"_count": 1, "as": {"_count": 1, "far": {"_count": 1}}}, "far": {"_count": 355, "apart": {"_count": 1, "as": {"_count": 1}}, "corner": {"_count": 12, "of": {"_count": 5}, "would": {"_count": 1}, "quills": {"_count": 1}, "glinted": {"_count": 1}, "breathless": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "glanced": {"_count": 1}}, "as": {"_count": 60, "Harry": {"_count": 11}, "they": {"_count": 6}, "possible": {"_count": 1}, "werewolves": {"_count": 1}, "he": {"_count": 11}, "this": {"_count": 2}, "Im": {"_count": 2}, "I": {"_count": 10}, "she": {"_count": 2}, "to": {"_count": 3}, "we": {"_count": 2}, "agreeing": {"_count": 1}, "it": {"_count": 3}, "any": {"_count": 1}, "the": {"_count": 2}, "you": {"_count": 1}, "there": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 25}, "?": {"_count": 2}, "!": {"_count": 1}}, "was": {"_count": 2, "unbelievable": {"_count": 1}, "drawing": {"_count": 1}}, "the": {"_count": 3, "best": {"_count": 1}, "most": {"_count": 1}, "hardest": {"_count": 1}}, "left": {"_count": 1, "exploded": {"_count": 1}}, "had": {"_count": 2, "given": {"_count": 1}, "been": {"_count": 1}}, "less": {"_count": 2, "welcome": {"_count": 1}, "attention": {"_count": 1}}, "emptier": {"_count": 1, "than": {"_count": 1}}, "well": {"_count": 1, "catch": {"_count": 1}}, "more": {"_count": 11, "furiously": {"_count": 1}, "interesting": {"_count": 2}, "effectively": {"_count": 1}, "satisfactory": {"_count": 1}, "powerful": {"_count": 1}, "than": {"_count": 1}, "convincing": {"_count": 1}, "sensible": {"_count": 1}, "interested": {"_count": 1}, "crowded": {"_count": 1}}, "away": {"_count": 27, "": {"_count": 8}, "by": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 3}, "from": {"_count": 4}, "in": {"_count": 2}, "above": {"_count": 1}, "and": {"_count": 1}, "talking": {"_count": 1}, "Mum": {"_count": 1}, "intent": {"_count": 1}, "over": {"_count": 1}, "stooping": {"_count": 1}}, "if": {"_count": 1, "its": {"_count": 1}}, "easier": {"_count": 3, "than": {"_count": 1}, "to": {"_count": 2}}, "Id": {"_count": 1, "got": {"_count": 1}}, "west": {"_count": 1, "Fred": {"_count": 1}}, "below": {"_count": 5, "he": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}}, "he": {"_count": 3, "stayed": {"_count": 1}, "held": {"_count": 1}, "has": {"_count": 1}}, "worse": {"_count": 5, "than": {"_count": 2}, "problems": {"_count": 1}, "injuries": {"_count": 1}, "things": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 3}}, "now": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "calmer": {"_count": 1, "tone": {"_count": 1}}, "from": {"_count": 25, "cheerful": {"_count": 1}, "prying": {"_count": 1}, "here": {"_count": 5}, "fun": {"_count": 1}, "needing": {"_count": 1}, "being": {"_count": 1}, "them": {"_count": 1}, "trying": {"_count": 1}, "relieving": {"_count": 1}, "Azkaban": {"_count": 1}, "chilling": {"_count": 1}, "raising": {"_count": 1}, "Snape": {"_count": 1}, "over": {"_count": 1}, "the": {"_count": 3}, "blaming": {"_count": 1}, "Quidditch": {"_count": 1}, "looking": {"_count": 1}, "my": {"_count": 1}}, "Harry": {"_count": 3, "had": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}}, "better": {"_count": 2, "spirits": {"_count": 1}, "present": {"_count": 1}}, "too": {"_count": 14, "runny": {"_count": 1}, "small": {"_count": 1}, "used": {"_count": 1}, "hard": {"_count": 1}, "large": {"_count": 1}, "much": {"_count": 3}, "big": {"_count": 1}, "bulky": {"_count": 1}, "low": {"_count": 1}, "dangerous": {"_count": 1}, "long": {"_count": 1}, "lightly": {"_count": 1}}, "this": {"_count": 4, "year": {"_count": 2}, "owls": {"_count": 1}, "evening": {"_count": 1}}, "sent": {"_count": 1, "me": {"_count": 1}}, "at": {"_count": 1, "your": {"_count": 1}}, "enough": {"_count": 3, "": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}}, "avoided": {"_count": 2, "mentioning": {"_count": 1}, "being": {"_count": 1}}, "and": {"_count": 4, "wide": {"_count": 3}, "fast": {"_count": 1}}, "than": {"_count": 5, "Dobby": {"_count": 1}, "he": {"_count": 1}, "Igor": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 2, "this": {"_count": 1}, "": {"_count": 1}}, "Please": {"_count": 1, "sir": {"_count": 1}}, "it": {"_count": 3, "rolled": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}}, "back": {"_count": 3, "as": {"_count": 1}, "on": {"_count": 1}, "we": {"_count": 1}}, "end": {"_count": 23, "of": {"_count": 22}, "": {"_count": 1}}, "even": {"_count": 1, "including": {"_count": 1}}, "A": {"_count": 1, "third": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "north": {"_count": 1, "said": {"_count": 1}}, "side": {"_count": 3, "of": {"_count": 3}}, "beyond": {"_count": 4, "the": {"_count": 2}, "Ron": {"_count": 1}, "my": {"_count": 1}}, "she": {"_count": 2, "kept": {"_count": 1}, "said": {"_count": 1}}, "however": {"_count": 2, "all": {"_count": 1}, "we": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "removed": {"_count": 2, "from": {"_count": 1}, "as": {"_count": 1}}, "fewer": {"_count": 1, "people": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "though": {"_count": 1, "hasnt": {"_count": 1}}, "except": {"_count": 1, "a": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "ahead": {"_count": 1, "as": {"_count": 1}}, "east": {"_count": 1, "": {"_count": 1}}, "hadnt": {"_count": 1, "he": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "above": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "inside": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 2, "panicked": {"_count": 1}, "said": {"_count": 1}}, "has": {"_count": 2, "been": {"_count": 1}, "he": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "that": {"_count": 3, "many": {"_count": 1}, "he": {"_count": 1}, "day": {"_count": 1}}, "because": {"_count": 1, "its": {"_count": 1}}, "far": {"_count": 3, "away": {"_count": 2}, "worse": {"_count": 1}}, "greater": {"_count": 1, "height": {"_count": 1}}, "they": {"_count": 3, "had": {"_count": 3}}, "outstrips": {"_count": 1, "your": {"_count": 1}}, "my": {"_count": 1, "plan": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "distant": {"_count": 1, "country": {"_count": 1}}, "suggests": {"_count": 1, "that": {"_count": 1}}, "Hogwarts": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 3, "believe": {"_count": 1}, "am": {"_count": 1}, "say": {"_count": 1}}, "been": {"_count": 2, "unable": {"_count": 1}, "disappointed": {"_count": 1}}, "along": {"_count": 1, "": {"_count": 1}}, "failed": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "Tom": {"_count": 1, "Ive": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "just": {"_count": 1, "yet": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "short": {"_count": 1, "of": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "flung": {"_count": 1, "field": {"_count": 1}}, "bank": {"_count": 1, "where": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}, "off": {"_count": 1, "country": {"_count": 1}}}, "apart": {"_count": 145, "as": {"_count": 1, "Kent": {"_count": 1}}, "from": {"_count": 60, "the": {"_count": 12}, "anything": {"_count": 1}, "wanting": {"_count": 1}, "Fluffy": {"_count": 3}, "you": {"_count": 1}, "their": {"_count": 2}, "his": {"_count": 2}, "knowing": {"_count": 1}, "that": {"_count": 2}, "himself": {"_count": 2}, "Malfoy": {"_count": 1}, "Lupins": {"_count": 1}, "my": {"_count": 1}, "Mr": {"_count": 1}, "Potions": {"_count": 1}, "everyone": {"_count": 2}, "Neville": {"_count": 1}, "liking": {"_count": 1}, "thirty": {"_count": 1}, "Peeves": {"_count": 1}, "landing": {"_count": 1}, "Ron": {"_count": 3}, "themselves": {"_count": 2}, "followers": {"_count": 2}, "a": {"_count": 3}, "tha": {"_count": 1}, "Dumbledore": {"_count": 1}, "being": {"_count": 3}, "Hermione": {"_count": 1}, "stabbing": {"_count": 1}, "occasional": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 1}, "panting": {"_count": 1}}, "and": {"_count": 7, "said": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "proud": {"_count": 1}, "a": {"_count": 1}, "looked": {"_count": 1}, "glimmered": {"_count": 1}}, "You": {"_count": 1, "might": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "its": {"_count": 1}, "his": {"_count": 1}}, "puts": {"_count": 1, "spells": {"_count": 1}}, "to": {"_count": 3, "see": {"_count": 1}, "reveal": {"_count": 1}, "stare": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 24}, "!": {"_count": 2}}, "anything": {"_count": 1, "as": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "an": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "Firebolts": {"_count": 1}, "street": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 2}, "his": {"_count": 1}, "more": {"_count": 1}}, "his": {"_count": 1, "expression": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "Moody": {"_count": 1, "was": {"_count": 1}}, "lowering": {"_count": 1, "its": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "pearlywhite": {"_count": 1, "figures": {"_count": 1}}, "glass": {"_count": 1, "flying": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "my": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 2}}, "Ill": {"_count": 1, "thank": {"_count": 1}}, "though": {"_count": 1, "they": {"_count": 1}}, "yeah": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 2, "were": {"_count": 1}, "he": {"_count": 1}}, "now": {"_count": 1, "anyway": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "their": {"_count": 2, "family": {"_count": 1}, "arms": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "weve": {"_count": 1}}, "by": {"_count": 3, "spells": {"_count": 1}, "a": {"_count": 1}, "nothing": {"_count": 1}}, "Fragments": {"_count": 1, "of": {"_count": 1}}, "apparently": {"_count": 1, "unaware": {"_count": 1}}}, "Kent": {"_count": 3, "Yorkshire": {"_count": 1, "and": {"_count": 1}}, "Ill": {"_count": 1, "bet": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Yorkshire": {"_count": 6, "and": {"_count": 2, "Dundee": {"_count": 1}, "Ottery": {"_count": 1}}, "pudding": {"_count": 2, "peas": {"_count": 1}, "": {"_count": 1}}, "puddings": {"_count": 1, "": {"_count": 1}}, "accents": {"_count": 1, "in": {"_count": 1}}}, "Dundee": {"_count": 1, "have": {"_count": 1, "been": {"_count": 1}}}, "phoning": {"_count": 1, "in": {"_count": 1, "to": {"_count": 1}}}, "tell": {"_count": 905, "me": {"_count": 117, "that": {"_count": 3}, "why": {"_count": 5}, "he": {"_count": 4}, "I": {"_count": 4}, "youd": {"_count": 1}, "": {"_count": 13}, "Im": {"_count": 1}, "what": {"_count": 14}, "where": {"_count": 2}, "the": {"_count": 7}, "said": {"_count": 6}, "whats": {"_count": 3}, "anything": {"_count": 5}, "you": {"_count": 8}, "when": {"_count": 3}, "how": {"_count": 4}, "if": {"_count": 2}, "Sirius": {"_count": 1}, "is": {"_count": 1}, "youre": {"_count": 2}, "about": {"_count": 2}, "it": {"_count": 2}, "something": {"_count": 2}, "and": {"_count": 1}, "one": {"_count": 1}, "to": {"_count": 1}, "exactly": {"_count": 3}, "after": {"_count": 1}, "this": {"_count": 1}, "any": {"_count": 1}, "youve": {"_count": 1}, "freely": {"_count": 1}, "theyre": {"_count": 1}, "Harry": {"_count": 1}, "my": {"_count": 1}, "everything": {"_count": 3}, "have": {"_count": 1}, "its": {"_count": 1}, "obviously": {"_count": 1}, "while": {"_count": 1}, "who": {"_count": 1}}, "her": {"_count": 36, "hed": {"_count": 1}, "something": {"_count": 1}, "that": {"_count": 5}, "what": {"_count": 4}, "Ginny": {"_count": 1}, "the": {"_count": 2}, "bedside": {"_count": 1}, "he": {"_count": 1}, "student": {"_count": 1}, "I": {"_count": 4}, "but": {"_count": 1}, "whats": {"_count": 1}, "to": {"_count": 1}, "everything": {"_count": 1}, "if": {"_count": 1}, "YouKnowWho": {"_count": 1}, "said": {"_count": 2}, "any": {"_count": 1}, "": {"_count": 3}, "Peeves": {"_count": 1}, "she": {"_count": 1}, "Rons": {"_count": 1}}, "the": {"_count": 44, "boy": {"_count": 1}, "Dursleys": {"_count": 1}, "Slytherins": {"_count": 1}, "truth": {"_count": 8}, "team": {"_count": 1}, "whole": {"_count": 1}, "Prophet": {"_count": 1}, "Irish": {"_count": 1}, "difference": {"_count": 4}, "room": {"_count": 1}, "headmaster": {"_count": 2}, "tale": {"_count": 2}, "judges": {"_count": 1}, "champions": {"_count": 1}, "story": {"_count": 2}, "others": {"_count": 3}, "elf": {"_count": 1}, "Healers": {"_count": 1}, "public": {"_count": 3}, "world": {"_count": 3}, "Minister": {"_count": 1}, "poltergeist": {"_count": 1}, "Wizarding": {"_count": 1}, "Heads": {"_count": 1}, "Death": {"_count": 1}}, "yeh": {"_count": 20, "but": {"_count": 1}, "mind": {"_count": 1}, "everythin": {"_count": 1}, "the": {"_count": 4}, "that": {"_count": 6}, "anythin": {"_count": 1}, "if": {"_count": 2}, "I": {"_count": 1}, "this": {"_count": 1}, "how": {"_count": 1}, "they": {"_count": 1}}, "it": {"_count": 6, "was": {"_count": 3}, "again": {"_count": 1}, "would": {"_count": 1}, "clearly": {"_count": 1}}, "you": {"_count": 156, "Diggles": {"_count": 1}, "Where": {"_count": 1}, "that": {"_count": 18}, "were": {"_count": 1}, "": {"_count": 22}, "sir": {"_count": 1}, "whos": {"_count": 1}, "to": {"_count": 6}, "how": {"_count": 5}, "we": {"_count": 2}, "the": {"_count": 6}, "Go": {"_count": 1}, "something": {"_count": 4}, "at": {"_count": 1}, "Harry": {"_count": 3}, "before": {"_count": 1}, "once": {"_count": 1}, "he": {"_count": 1}, "Ill": {"_count": 2}, "why": {"_count": 1}, "where": {"_count": 1}, "this": {"_count": 5}, "not": {"_count": 2}, "what": {"_count": 12}, "would": {"_count": 1}, "Ive": {"_count": 1}, "said": {"_count": 4}, "youve": {"_count": 1}, "one": {"_count": 1}, "about": {"_count": 4}, "now": {"_count": 3}, "so": {"_count": 1}, "everything": {"_count": 4}, "anything": {"_count": 1}, "and": {"_count": 2}, "important": {"_count": 1}, "theres": {"_count": 1}, "all": {"_count": 2}, "exactly": {"_count": 1}, "no": {"_count": 1}, "I": {"_count": 5}, "Id": {"_count": 1}, "but": {"_count": 1}, "Ron": {"_count": 1}, "afterward": {"_count": 1}, "a": {"_count": 1}, "then": {"_count": 2}, "Potter": {"_count": 1}, "when": {"_count": 1}, "though": {"_count": 1}, "later": {"_count": 1}, "anyway": {"_count": 1}, "in": {"_count": 2}, "well": {"_count": 1}, "if": {"_count": 1}, "because": {"_count": 1}, "Draco": {"_count": 1}, "thats": {"_count": 2}, "get": {"_count": 1}, "there": {"_count": 1}, "its": {"_count": 1}}, "him": {"_count": 89, "what": {"_count": 7}, "something": {"_count": 2}, "she": {"_count": 1}, "not": {"_count": 2}, "the": {"_count": 1}, "": {"_count": 14}, "much": {"_count": 1}, "Neville": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 2}, "Madam": {"_count": 1}, "to": {"_count": 7}, "where": {"_count": 1}, "its": {"_count": 3}, "Mr": {"_count": 1}, "Shut": {"_count": 1}, "theyd": {"_count": 1}, "off": {"_count": 2}, "youre": {"_count": 1}, "Moodys": {"_count": 1}, "that": {"_count": 12}, "whats": {"_count": 1}, "someones": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 3}, "before": {"_count": 1}, "I": {"_count": 1}, "why": {"_count": 1}, "more": {"_count": 1}, "a": {"_count": 1}, "dont": {"_count": 1}, "after": {"_count": 1}, "then": {"_count": 1}, "about": {"_count": 3}, "so": {"_count": 1}, "snapped": {"_count": 1}, "how": {"_count": 4}, "Im": {"_count": 1}, "we": {"_count": 1}, "were": {"_count": 1}}, "Im": {"_count": 1, "George": {"_count": 1}}, "who": {"_count": 4, "the": {"_count": 1}, "performed": {"_count": 1}, "they": {"_count": 1}, "lived": {"_count": 1}}, "Harry": {"_count": 5, "": {"_count": 2}, "Potter": {"_count": 1}, "to": {"_count": 1}, "felt": {"_count": 1}}, "anyone": {"_count": 21, "whod": {"_count": 1}, "Wood": {"_count": 1}, "would": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 4}, "who": {"_count": 2}, "anything": {"_count": 1}, "said": {"_count": 2}, "whos": {"_count": 1}, "Nevilles": {"_count": 1}, "though": {"_count": 1}, "Mr": {"_count": 1}, "what": {"_count": 1}, "and": {"_count": 1}, "Professor": {"_count": 1}, "except": {"_count": 1}}, "when": {"_count": 2, "you": {"_count": 1}, "a": {"_count": 1}}, "Ron": {"_count": 20, "exactly": {"_count": 1}, "and": {"_count": 7}, "yet": {"_count": 1}, "Maybe": {"_count": 1}, "this": {"_count": 2}, "": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 2}, "though": {"_count": 1}, "anything": {"_count": 1}, "the": {"_count": 1}, "kept": {"_count": 1}}, "Filch": {"_count": 1, "I": {"_count": 1}}, "whether": {"_count": 7, "Ron": {"_count": 1}, "it": {"_count": 1}, "Professor": {"_count": 1}, "youre": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 1}}, "them": {"_count": 49, "off": {"_count": 2}, "but": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 2}, "about": {"_count": 2}, "anything": {"_count": 3}, "what": {"_count": 9}, "I": {"_count": 1}, "all": {"_count": 2}, "apart": {"_count": 2}, "that": {"_count": 5}, "the": {"_count": 1}, "we": {"_count": 1}, "": {"_count": 6}, "this": {"_count": 1}, "when": {"_count": 1}, "any": {"_count": 1}, "said": {"_count": 1}, "sir": {"_count": 1}, "everything": {"_count": 1}, "who": {"_count": 1}, "wed": {"_count": 1}, "without": {"_count": 1}, "its": {"_count": 1}, "how": {"_count": 1}}, "which": {"_count": 7, "nice": {"_count": 1}, "ones": {"_count": 2}, "": {"_count": 1}, "one": {"_count": 3}}, "us": {"_count": 62, "and": {"_count": 1}, "whats": {"_count": 5}, "but": {"_count": 1}, "what": {"_count": 7}, "you": {"_count": 1}, "the": {"_count": 3}, "anything": {"_count": 3}, "this": {"_count": 1}, "": {"_count": 9}, "everything": {"_count": 1}, "who": {"_count": 1}, "something": {"_count": 1}, "we": {"_count": 1}, "hes": {"_count": 1}, "where": {"_count": 2}, "oo": {"_count": 1}, "dont": {"_count": 1}, "to": {"_count": 3}, "about": {"_count": 4}, "said": {"_count": 1}, "then": {"_count": 1}, "its": {"_count": 1}, "much": {"_count": 1}, "exactly": {"_count": 1}, "how": {"_count": 2}, "why": {"_count": 1}, "apart": {"_count": 2}, "in": {"_count": 1}, "Blimey": {"_count": 1}, "from": {"_count": 1}, "please": {"_count": 1}, "whether": {"_count": 1}}, "he": {"_count": 7, "was": {"_count": 5}, "said": {"_count": 1}, "had": {"_count": 1}}, "Hagrid": {"_count": 1, "who": {"_count": 1}}, "such": {"_count": 1, "lies": {"_count": 1}}, "yer": {"_count": 1, "thats": {"_count": 1}}, "Petunia": {"_count": 1, "that": {"_count": 1}}, "his": {"_count": 2, "wife": {"_count": 1}, "master": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 23, "!": {"_count": 1}, ".": {"_count": 20}, "?": {"_count": 2}}, "from": {"_count": 6, "the": {"_count": 3}, "his": {"_count": 2}, "Rons": {"_count": 1}}, "all": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 41, "Riddle": {"_count": 2}, "Uncle": {"_count": 1}, "he": {"_count": 5}, "my": {"_count": 1}, "however": {"_count": 1}, "ten": {"_count": 1}, "something": {"_count": 1}, "most": {"_count": 1}, "this": {"_count": 3}, "it": {"_count": 2}, "everyones": {"_count": 1}, "Montague": {"_count": 1}, "Hagrids": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 3}, "Dumbledore": {"_count": 1}, "Mrs": {"_count": 1}, "Mr": {"_count": 1}, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}, "she": {"_count": 3}, "Scrimgeour": {"_count": 1}, "Voldemort": {"_count": 2}, "Slughorn": {"_count": 1}, "they": {"_count": 1}, "lot": {"_count": 1}, "his": {"_count": 2}}, "a": {"_count": 1, "teacher": {"_count": 1}}, "where": {"_count": 3, "the": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 1}}, "Father": {"_count": 1, "youre": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 1}, "all": {"_count": 1}}, "Madam": {"_count": 2, "Pomfrey": {"_count": 2}}, "Fudge": {"_count": 1, "but": {"_count": 1}}, "Dumbledore": {"_count": 19, "what": {"_count": 3}, "that": {"_count": 1}, "": {"_count": 7}, "everything": {"_count": 1}, "whats": {"_count": 2}, "I": {"_count": 1}, "your": {"_count": 1}, "this": {"_count": 1}, "thanks": {"_count": 1}, "about": {"_count": 1}}, "Professor": {"_count": 5, "Snape": {"_count": 1}, "McGonagall": {"_count": 1}, "Sprout": {"_count": 1}, "Umbridge": {"_count": 1}, "Dumbledore": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 1}, "all": {"_count": 1}}, "someone": {"_count": 4, "": {"_count": 2}, "said": {"_count": 2}}, "So": {"_count": 1, "now": {"_count": 1}}, "on": {"_count": 2, "us": {"_count": 1}, "Hagrid": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 5, "didnt": {"_count": 1}, "exactly": {"_count": 1}, "what": {"_count": 1}, "said": {"_count": 1}, "let": {"_count": 1}}, "Snape": {"_count": 6, "all": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}, "why": {"_count": 2}, "": {"_count": 1}}, "anybody": {"_count": 4, "but": {"_count": 1}, "what": {"_count": 2}, "": {"_count": 1}}, "harmed": {"_count": 1, "at": {"_count": 1}}, "Wormtail": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Sirius": {"_count": 6, "who": {"_count": 1}, "everything": {"_count": 2}, "about": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}}, "these": {"_count": 1, "these": {"_count": 1}}, "your": {"_count": 8, "your": {"_count": 1}, "mother": {"_count": 2}, "grandchildren": {"_count": 1}, "mum": {"_count": 1}, "boss": {"_count": 1}, "Aurors": {"_count": 1}, "students": {"_count": 1}}, "George": {"_count": 1, "not": {"_count": 1}}, "Mrs": {"_count": 3, "Weasley": {"_count": 3}}, "with": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "Percy": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "Cedric": {"_count": 1, "didnt": {"_count": 1}}, "Mum": {"_count": 3, "what": {"_count": 1}, "and": {"_count": 2}}, "hes": {"_count": 1, "been": {"_count": 1}}, "Moody": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "himself": {"_count": 2, "over": {"_count": 1}, "firmly": {"_count": 1}}, "by": {"_count": 4, "the": {"_count": 4}}, "she": {"_count": 2, "had": {"_count": 1}, "wanted": {"_count": 1}}, "Dad": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "what": {"_count": 3, "kind": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "Arthur": {"_count": 1, "Mrs": {"_count": 1}}, "The": {"_count": 1, "whole": {"_count": 1}}, "lies": {"_count": 16, "she": {"_count": 1}, "": {"_count": 11}, "and": {"_count": 2}, "did": {"_count": 1}, "Harry": {"_count": 1}}, "somebody": {"_count": 1, "soon": {"_count": 1}}, "tales": {"_count": 3, "on": {"_count": 2}, "about": {"_count": 1}}, "Umbridge": {"_count": 1, "or": {"_count": 1}}, "Michael": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 2, "it": {"_count": 1}, "Siriuss": {"_count": 1}}, "Katie": {"_count": 1, "and": {"_count": 1}}, "everyone": {"_count": 4, "what": {"_count": 2}, "Voldemort": {"_count": 1}, "Hermione": {"_count": 1}}, "one": {"_count": 2, "end": {"_count": 1}, "potion": {"_count": 1}}, "em": {"_count": 1, "where": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "people": {"_count": 2, "what": {"_count": 1}, "where": {"_count": 1}}, "I": {"_count": 2, "havent": {"_count": 1}, "mean": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "students": {"_count": 1}}, "and": {"_count": 1, "if": {"_count": 1}}, "poor": {"_count": 1, "Kreacher": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Riddle": {"_count": 1, "there": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "whose": {"_count": 2, "hands": {"_count": 2}}, "my": {"_count": 2, "friends": {"_count": 1}, "Mistress": {"_count": 1}}, "Mr": {"_count": 1, "Burke": {"_count": 1}}, "Dobby": {"_count": 1, "when": {"_count": 1}}, "Malfoy": {"_count": 1, "not": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "Slughorn": {"_count": 1, "Harrys": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}, "Tonks": {"_count": 1, "Dora": {"_count": 1}}, "also": {"_count": 1, "Dumbledores": {"_count": 1}}, "Kreacher": {"_count": 1, "what": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "sure": {"_count": 1}}, "kids": {"_count": 1, "to": {"_count": 1}}, "Shh": {"_count": 1, "": {"_count": 1}}, "Griphook": {"_count": 1, "we": {"_count": 1}}}, "instead": {"_count": 178, "of": {"_count": 54, "the": {"_count": 6}, "feeling": {"_count": 1}, "\u2018f": {"_count": 1}, "looking": {"_count": 1}, "that": {"_count": 1}, "stopping": {"_count": 1}, "vanishing": {"_count": 1}, "falling": {"_count": 1}, "us": {"_count": 1}, "killing": {"_count": 1}, "ours": {"_count": 1}, "seizing": {"_count": 1}, "lazing": {"_count": 1}, "me": {"_count": 1}, "Albania": {"_count": 1}, "black": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 2}, "ending": {"_count": 1}, "sending": {"_count": 1}, "covering": {"_count": 1}, "just": {"_count": 1}, "tantalizing": {"_count": 1}, "everything": {"_count": 1}, "at": {"_count": 1}, "turning": {"_count": 1}, "chairs": {"_count": 1}, "leaving": {"_count": 1}, "a": {"_count": 3}, "emerging": {"_count": 1}, "burning": {"_count": 1}, "Draco": {"_count": 1}, "Sneakoscopes": {"_count": 1}, "witchs": {"_count": 1}, "saying": {"_count": 1}, "Tonks": {"_count": 1}, "producing": {"_count": 1}, "in": {"_count": 1}, "hands": {"_count": 2}, "well": {"_count": 1}, "wasting": {"_count": 1}, "Voldemort": {"_count": 1}, "hiding": {"_count": 1}, "crumpling": {"_count": 1}, "asking": {"_count": 1}}, "little": {"_count": 1, "planets": {"_count": 1}}, "was": {"_count": 1, "Who": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Neville": {"_count": 1}}, "": {"_count": 50, ".": {"_count": 42}, "!": {"_count": 3}, "?": {"_count": 5}}, "lifting": {"_count": 1, "its": {"_count": 1}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "Two": {"_count": 1, "among": {"_count": 1}}, "anyway": {"_count": 1, "got": {"_count": 1}}, "he": {"_count": 6, "said": {"_count": 1}, "got": {"_count": 1}, "stared": {"_count": 1}, "sat": {"_count": 1}, "went": {"_count": 1}, "dropped": {"_count": 1}}, "muttering": {"_count": 1, "Pathetic": {"_count": 1}}, "they": {"_count": 1, "threw": {"_count": 1}}, "to": {"_count": 5, "his": {"_count": 1}, "be": {"_count": 1}, "Divination": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "its": {"_count": 1, "Hufflepuff": {"_count": 1}}, "Numbing": {"_count": 1, "swirling": {"_count": 1}}, "around": {"_count": 1, "Rons": {"_count": 1}}, "writhing": {"_count": 1, "imploringly": {"_count": 1}}, "with": {"_count": 4, "fruit": {"_count": 1}, "the": {"_count": 1}, "many": {"_count": 1}, "a": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 1}, "were": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 4, "as": {"_count": 1}, "vanished": {"_count": 1}, "squinted": {"_count": 1}, "Harry": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 1}, "satisfying": {"_count": 1}, "how": {"_count": 1}, "a": {"_count": 1}, "lumps": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "obliterating": {"_count": 1, "everything": {"_count": 1}}, "but": {"_count": 1, "hes": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "been": {"_count": 1, "appointed": {"_count": 1}}, "she": {"_count": 2, "pulled": {"_count": 1}, "stood": {"_count": 1}}, "though": {"_count": 1, "eyes": {"_count": 1}}, "then": {"_count": 1, "I": {"_count": 1}}, "Instead": {"_count": 1, "you": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "gigantic": {"_count": 1}, "dark": {"_count": 1}}, "hes": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "all": {"_count": 1}}, "had": {"_count": 1, "withdrawn": {"_count": 1}}, "exchanging": {"_count": 1, "in": {"_count": 1}}, "This": {"_count": 1, "is": {"_count": 1}}, "ExpelliarmusV": {"_count": 1, "he": {"_count": 1}}, "And": {"_count": 1, "next": {"_count": 1}}, "hurried": {"_count": 1, "footsteps": {"_count": 1}}}, "rain": {"_count": 79, "I": {"_count": 1, "promised": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "crept": {"_count": 1, "down": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "persisted": {"_count": 1}}, "and": {"_count": 3, "wind": {"_count": 1}, "pain": {"_count": 1}, "November": {"_count": 1}}, "outside": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "was": {"_count": 10, "falling": {"_count": 2}, "speckling": {"_count": 1}, "driving": {"_count": 1}, "still": {"_count": 2}, "coming": {"_count": 1}, "now": {"_count": 2}, "pounding": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "drenched": {"_count": 1, "broom": {"_count": 1}}, "falling": {"_count": 1, "on": {"_count": 1}}, "blurring": {"_count": 1, "the": {"_count": 1}}, "thickened": {"_count": 1, "as": {"_count": 1}}, "hammered": {"_count": 1, "the": {"_count": 1}}, "sounded": {"_count": 2, "louder": {"_count": 1}, "even": {"_count": 1}}, "had": {"_count": 2, "cleared": {"_count": 1}, "started": {"_count": 1}}, "could": {"_count": 2, "tarnish": {"_count": 1}, "be": {"_count": 1}}, "all": {"_count": 1, "day": {"_count": 1}}, "fell": {"_count": 1, "harder": {"_count": 1}}, "on": {"_count": 4, "his": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "so": {"_count": 1, "thick": {"_count": 1}}, "gesturing": {"_count": 1, "him": {"_count": 1}}, "whipped": {"_count": 1, "his": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "washed": {"_count": 2, "yard": {"_count": 1}, "window": {"_count": 1}}, "splattering": {"_count": 1, "the": {"_count": 1}}, "became": {"_count": 1, "heavier": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "clattering": {"_count": 1, "and": {"_count": 1}}, "fogging": {"_count": 1, "them": {"_count": 1}}, "off": {"_count": 1, "our": {"_count": 1}}, "were": {"_count": 1, "sweeping": {"_count": 1}}, "pummeling": {"_count": 1, "the": {"_count": 1}}, "He": {"_count": 1, "he": {"_count": 1}}, "lashed": {"_count": 1, "at": {"_count": 1}}, "still": {"_count": 1, "beating": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "needles": {"_count": 1}}, "flecked": {"_count": 1, "windows": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "dampening": {"_count": 1}}, "if": {"_count": 1, "its": {"_count": 1}}, "added": {"_count": 1, "to": {"_count": 1}}, "thundering": {"_count": 1, "on": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}}, "promised": {"_count": 31, "yesterday": {"_count": 1, "theyve": {"_count": 1}}, "storm": {"_count": 1, "blew": {"_count": 1}}, "himself": {"_count": 1, "about": {"_count": 1}}, "Harry": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 3, "be": {"_count": 1}, "put": {"_count": 1}, "tell": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "I": {"_count": 3, "wouldnt": {"_count": 3}}, "her": {"_count": 2, "a": {"_count": 1}, "and": {"_count": 1}}, "a": {"_count": 2, "full": {"_count": 1}, "large": {"_count": 1}}, "not": {"_count": 1, "ter": {"_count": 1}}, "Hagrid": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Id": {"_count": 1, "go": {"_count": 1}}, "and": {"_count": 1, "use": {"_count": 1}}, "Hermione": {"_count": 1, "anything": {"_count": 1}}, "Malfoys": {"_count": 1, "mother": {"_count": 1}}, "Dumbledore": {"_count": 1, "I": {"_count": 1}}, "him": {"_count": 2, "prey": {"_count": 1}, "in": {"_count": 1}}, "you": {"_count": 1, "that": {"_count": 1}}, "my": {"_count": 1, "mother": {"_count": 1}}}, "yesterday": {"_count": 37, "theyve": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 4, "bitterly": {"_count": 1}, "well": {"_count": 1}, "at": {"_count": 1}, "knew": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "": {"_count": 14, "?": {"_count": 1}, ".": {"_count": 11}, "!": {"_count": 2}}, "ter": {"_count": 1, "fix": {"_count": 1}}, "when": {"_count": 2, "we": {"_count": 1}, "I": {"_count": 1}}, "the": {"_count": 1, "small": {"_count": 1}}, "really": {"_count": 1, "excellent": {"_count": 1}}, "afternoon": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "accusing": {"_count": 1}}, "involved": {"_count": 1, "in": {"_count": 1}}, "We": {"_count": 1, "could": {"_count": 1}}, "evening": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 1, "asked": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Hermione": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}}, "theyve": {"_count": 121, "had": {"_count": 3, "a": {"_count": 2}, "much": {"_count": 1}}, "got": {"_count": 38, "this": {"_count": 1}, "anything": {"_count": 1}, "all": {"_count": 2}, "everything": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 4}, "to": {"_count": 7}, "Sirius": {"_count": 1}, "fur": {"_count": 1}, "the": {"_count": 2}, "Ron": {"_count": 1}, "any": {"_count": 1}, "said": {"_count": 1}, "business": {"_count": 1}, "themselves": {"_count": 1}, "worms": {"_count": 1}, "much": {"_count": 1}, "about": {"_count": 1}, "guards": {"_count": 1}, "premises": {"_count": 1}, "deluxe": {"_count": 1}, "firewhisky": {"_count": 1}, "information": {"_count": 1}, "holes": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}, "feelings": {"_count": 1}}, "never": {"_count": 6, "been": {"_count": 2}, "had": {"_count": 2}, "taught": {"_count": 1}, "managed": {"_count": 1}}, "left": {"_count": 1, "anyway": {"_count": 1}}, "been": {"_count": 11, "here": {"_count": 1}, "hurt": {"_count": 1}, "to": {"_count": 1}, "drinking": {"_count": 1}, "biding": {"_count": 1}, "looking": {"_count": 1}, "up": {"_count": 1}, "following": {"_count": 1}, "a": {"_count": 1}, "working": {"_count": 1}, "driven": {"_count": 1}}, "just": {"_count": 2, "been": {"_count": 1}, "made": {"_count": 1}}, "let": {"_count": 2, "it": {"_count": 1}, "in": {"_count": 1}}, "even": {"_count": 2, "ended": {"_count": 1}, "started": {"_count": 1}}, "messed": {"_count": 1, "up": {"_count": 1}}, "ever": {"_count": 2, "had": {"_count": 1}, "been": {"_count": 1}}, "nearly": {"_count": 2, "cleaned": {"_count": 1}, "got": {"_count": 1}}, "stopped": {"_count": 3, "making": {"_count": 1}, "arguing": {"_count": 1}, "Apparition": {"_count": 1}}, "already": {"_count": 2, "decided": {"_count": 1}, "got": {"_count": 1}}, "seen": {"_count": 2, "the": {"_count": 1}, "hes": {"_count": 1}}, "gone": {"_count": 3, "back": {"_count": 1}, "too": {"_count": 1}, "away": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "invented": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "remembered": {"_count": 1}}, "brought": {"_count": 2, "said": {"_count": 1}, "giants": {"_count": 1}}, "changed": {"_count": 2, "the": {"_count": 2}}, "done": {"_count": 3, "the": {"_count": 1}, "to": {"_count": 1}, "something": {"_count": 1}}, "escaped": {"_count": 1, "said": {"_count": 1}}, "finally": {"_count": 1, "found": {"_count": 1}}, "started": {"_count": 1, "killin": {"_count": 1}}, "both": {"_count": 2, "just": {"_count": 1}, "got": {"_count": 1}}, "nicked": {"_count": 1, "and": {"_count": 1}}, "written": {"_count": 1, "decentlength": {"_count": 1}}, "really": {"_count": 1, "said": {"_count": 1}}, "studied": {"_count": 1, "unicorns": {"_count": 1}}, "forbidden": {"_count": 1, "me": {"_count": 1}}, "bin": {"_count": 1, "dyin": {"_count": 1}}, "taken": {"_count": 3, "him": {"_count": 1}, "McGonagall": {"_count": 1}, "refuge": {"_count": 1}}, "read": {"_count": 3, "the": {"_count": 1}, "my": {"_count": 2}}, "named": {"_count": 1, "themselves": {"_count": 1}}, "hurried": {"_count": 1, "into": {"_count": 1}}, "found": {"_count": 1, "Igor": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "generally": {"_count": 1, "got": {"_count": 1}}, "still": {"_count": 1, "got": {"_count": 1}}, "all": {"_count": 1, "got": {"_count": 1}}, "put": {"_count": 2, "up": {"_count": 1}, "a": {"_count": 1}}, "sent": {"_count": 1, "me": {"_count": 1}}, "faced": {"_count": 1, "plenty": {"_count": 1}}, "cast": {"_count": 1, "lately": {"_count": 1}}, "used": {"_count": 1, "you": {"_count": 1}}, "gorn": {"_count": 1, "and": {"_count": 1}}}, "downpour": {"_count": 5, "of": {"_count": 2, "shooting": {"_count": 1}, "rain": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "pursued": {"_count": 1, "them": {"_count": 1}}}, "shooting": {"_count": 37, "stars": {"_count": 3, "": {"_count": 3}}, "out": {"_count": 5, "of": {"_count": 4}, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "underneath": {"_count": 1, "him": {"_count": 1}}, "furtive": {"_count": 1, "glances": {"_count": 1}}, "suspicious": {"_count": 1, "looks": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 1}, "out": {"_count": 1}}, "upward": {"_count": 2, "from": {"_count": 1}, "Ron": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}, "a": {"_count": 3, "repressive": {"_count": 1}, "sideways": {"_count": 1}, "malevolent": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "mushroomshaped": {"_count": 1, "fire": {"_count": 1}}, "nasty": {"_count": 1, "questions": {"_count": 1}}, "in": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 1, "mouths": {"_count": 1}}, "covetous": {"_count": 1, "looks": {"_count": 1}}, "heavy": {"_count": 1, "bolts": {"_count": 1}}, "terrified": {"_count": 1, "glances": {"_count": 1}}, "down": {"_count": 1, "flies": {"_count": 1}}, "puffs": {"_count": 1, "of": {"_count": 1}}, "fifteen": {"_count": 1, "feet": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "curses": {"_count": 1, "after": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "Stunning": {"_count": 1, "Spells": {"_count": 1}}, "jinxes": {"_count": 1, "and": {"_count": 1}}}, "stars": {"_count": 58, "": {"_count": 13, "!": {"_count": 1}, ".": {"_count": 12}}, "all": {"_count": 1, "over": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 9, "the": {"_count": 1}, "moons": {"_count": 1}, "sparks": {"_count": 1}, "another": {"_count": 1}, "streetlamps": {"_count": 1}, "a": {"_count": 1}, "planets": {"_count": 1}, "soon": {"_count": 1}, "below": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "overhead": {"_count": 2, "seemed": {"_count": 1}, "were": {"_count": 1}}, "that": {"_count": 1, "bounced": {"_count": 1}}, "showering": {"_count": 1, "from": {"_count": 1}}, "shone": {"_count": 1, "brightly": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "was": {"_count": 2, "clapping": {"_count": 1}, "what": {"_count": 1}}, "were": {"_count": 4, "starting": {"_count": 1}, "ricocheting": {"_count": 1}, "already": {"_count": 1}, "popping": {"_count": 1}}, "above": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "moon": {"_count": 1}}, "erupted": {"_count": 1, "in": {"_count": 1}}, "emerged": {"_count": 1, "upon": {"_count": 1}}, "progress": {"_count": 1, "through": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "stared": {"_count": 1, "back": {"_count": 1}}, "circling": {"_count": 1, "around": {"_count": 1}}, "fell": {"_count": 1, "upon": {"_count": 1}}, "twinkling": {"_count": 1, "above": {"_count": 1}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "still": {"_count": 1, "glimmering": {"_count": 1}}, "then": {"_count": 1, "turned": {"_count": 1}}, "which": {"_count": 2, "vanished": {"_count": 1}, "were": {"_count": 1}}}, "Perhaps": {"_count": 99, "people": {"_count": 1, "have": {"_count": 1}}, "it": {"_count": 15, "had": {"_count": 2}, "was": {"_count": 10}, "hadnt": {"_count": 1}, "is": {"_count": 1}, "knew": {"_count": 1}}, "they": {"_count": 3, "thought": {"_count": 2}, "were": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "Potter": {"_count": 1}}, "brooms": {"_count": 1, "like": {"_count": 1}}, "he": {"_count": 6, "could": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "thought": {"_count": 1}, "has": {"_count": 1}}, "Snape": {"_count": 2, "had": {"_count": 2}}, "because": {"_count": 3, "it": {"_count": 2}, "he": {"_count": 1}}, "that": {"_count": 4, "was": {"_count": 1}, "will": {"_count": 2}, "lie": {"_count": 1}}, "youre": {"_count": 1, "getting": {"_count": 1}}, "the": {"_count": 7, "Heir": {"_count": 1}, "monster": {"_count": 1}, "dementors": {"_count": 1}, "word": {"_count": 1}, "reason": {"_count": 1}, "horse": {"_count": 1}, "rest": {"_count": 1}}, "hed": {"_count": 1, "finish": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "a": {"_count": 1, "pot": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "if": {"_count": 3, "we": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "we": {"_count": 3, "should": {"_count": 2}, "could": {"_count": 1}}, "longer": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "Amos": {"_count": 1, "is": {"_count": 1}}, "Dumbledore": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 1}}, "she": {"_count": 3, "thought": {"_count": 2}, "could": {"_count": 1}}, "this": {"_count": 2, "way": {"_count": 1}, "will": {"_count": 1}}, "shed": {"_count": 1, "noticed": {"_count": 1}}, "another": {"_count": 1, "little": {"_count": 1}}, "tonight": {"_count": 1, "after": {"_count": 1}}, "Cho": {"_count": 1, "would": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "Malfoy": {"_count": 1, "or": {"_count": 1}}, "you": {"_count": 7, "thought": {"_count": 1}, "disagree": {"_count": 1}, "have": {"_count": 1}, "ought": {"_count": 2}, "already": {"_count": 2}}, "your": {"_count": 2, "sister": {"_count": 1}, "credit": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "youd": {"_count": 2, "like": {"_count": 1}, "better": {"_count": 1}}, "hell": {"_count": 1, "take": {"_count": 1}}, "besotted": {"_count": 1, "as": {"_count": 1}}, "I": {"_count": 2, "shall": {"_count": 1}, "have": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "roused": {"_count": 1, "by": {"_count": 1}}, "Doge": {"_count": 1, "suspected": {"_count": 1}}, "some": {"_count": 2, "less": {"_count": 1}, "tiny": {"_count": 1}}, "just": {"_count": 1, "one": {"_count": 1}}, "deciding": {"_count": 1, "that": {"_count": 1}}, "Hermione": {"_count": 1, "knew": {"_count": 1}}, "youve": {"_count": 1, "seen": {"_count": 1}}, "not": {"_count": 1, "": {"_count": 1}}}, "Bonfire": {"_count": 1, "Night": {"_count": 1, "early": {"_count": 1}}}, "Night": {"_count": 11, "early": {"_count": 1, "its": {"_count": 1}}, "Harry": {"_count": 3, "called": {"_count": 1}, "and": {"_count": 1}, "dear": {"_count": 1}}, "had": {"_count": 1, "fallen": {"_count": 1}}, "grunted": {"_count": 1, "Ron": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "all": {"_count": 1, "": {"_count": 1}}, "Dear": {"_count": 1, "why": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "and": {"_count": 1, "day": {"_count": 1}}}, "early": {"_count": 95, "its": {"_count": 1, "not": {"_count": 1}}, "the": {"_count": 5, "next": {"_count": 4}, "following": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 6}}, "capture": {"_count": 1, "of": {"_count": 1}}, "hours": {"_count": 7, "of": {"_count": 6}, "he": {"_count": 1}}, "wait": {"_count": 1, "until": {"_count": 1}}, "morning": {"_count": 5, "sun": {"_count": 1}, "commuters": {"_count": 1}, "light": {"_count": 1}, "it": {"_count": 1}, "quite": {"_count": 1}}, "on": {"_count": 5, "Saturday": {"_count": 1}, "Thursday": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "Christmas": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "by": {"_count": 1, "Hermione": {"_count": 1}}, "to": {"_count": 5, "think": {"_count": 1}, "send": {"_count": 1}, "go": {"_count": 1}, "meet": {"_count": 1}, "pack": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 5}, "?": {"_count": 3}, "!": {"_count": 1}}, "birthday": {"_count": 1, "present": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "that": {"_count": 2, "it": {"_count": 1}, "morning": {"_count": 1}}, "Im": {"_count": 1, "staying": {"_count": 1}}, "lead": {"_count": 1, "the": {"_count": 1}}, "Portkey": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 4, "everything": {"_count": 1}, "put": {"_count": 1}, "hurried": {"_count": 1}, "moving": {"_count": 1}}, "Brilliant": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}, "tomorrow": {"_count": 1, "for": {"_count": 1}}, "pulled": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 1, "in": {"_count": 1}}, "days": {"_count": 1, "of": {"_count": 1}}, "otherwise": {"_count": 1, "she": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 1}, "then": {"_count": 1}}, "if": {"_count": 1, "youd": {"_count": 1}}, "so": {"_count": 1, "no": {"_count": 1}}, "end": {"_count": 1, "What": {"_count": 1}}, "not": {"_count": 1, "on": {"_count": 1}}, "we": {"_count": 1, "might": {"_count": 1}}, "death": {"_count": 3, "he": {"_count": 1}, "after": {"_count": 1}, "or": {"_count": 1}}, "leaving": {"_count": 1, "Crookshanks": {"_count": 1}}, "Hermione": {"_count": 1, "on": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "memories": {"_count": 1, "he": {"_count": 1}}, "nor": {"_count": 1, "to": {"_count": 1}}, "breakfast": {"_count": 1, "perhaps": {"_count": 1}}, "an": {"_count": 1, "yeh": {"_count": 1}}, "because": {"_count": 3, "of": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "work": {"_count": 1}}, "there": {"_count": 1, "might": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "lunch": {"_count": 1, "": {"_count": 1}}, "losses": {"_count": 1, "endowed": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}}, "week": {"_count": 161, "folks": {"_count": 1, "": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "in": {"_count": 2, "his": {"_count": 1}, "an": {"_count": 1}}, "because": {"_count": 2, "of": {"_count": 1}, "he": {"_count": 1}}, "of": {"_count": 12, "the": {"_count": 6}, "December": {"_count": 1}, "practice": {"_count": 1}, "term": {"_count": 3}, "May": {"_count": 1}}, "they": {"_count": 1, "went": {"_count": 1}}, "": {"_count": 42, ".": {"_count": 31}, "!": {"_count": 4}, "?": {"_count": 7}}, "why": {"_count": 1, "did": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 2}, "loudly": {"_count": 1}, "the": {"_count": 1}, "Angelina": {"_count": 1}}, "later": {"_count": 4, "": {"_count": 1}, "Harry": {"_count": 1}, "however": {"_count": 1}, "once": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "before": {"_count": 6, "making": {"_count": 1}, "the": {"_count": 2}, "we": {"_count": 1}, "term": {"_count": 1}, "another": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "dragged": {"_count": 1, "by": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 2}}, "until": {"_count": 1, "their": {"_count": 1}}, "after": {"_count": 5, "he": {"_count": 1}, "hed": {"_count": 1}, "the": {"_count": 2}, "Fred": {"_count": 1}}, "from": {"_count": 1, "today": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "ago": {"_count": 6, "": {"_count": 2}, "Harry": {"_count": 1}, "a": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 1}}, "Harry": {"_count": 5, "explained": {"_count": 1}, "said": {"_count": 1}, "Potter": {"_count": 2}, "muttered": {"_count": 1}}, "to": {"_count": 3, "do": {"_count": 1}, "go": {"_count": 1}, "act": {"_count": 1}}, "began": {"_count": 1, "and": {"_count": 1}}, "preceding": {"_count": 1, "the": {"_count": 1}}, "already": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 2, "seemed": {"_count": 1}, "was": {"_count": 1}}, "and": {"_count": 6, "one": {"_count": 1}, "weekends": {"_count": 1}, "although": {"_count": 1}, "pose": {"_count": 1}, "all": {"_count": 1}, "decided": {"_count": 1}}, "leading": {"_count": 2, "up": {"_count": 2}}, "has": {"_count": 1, "passed": {"_count": 1}}, "news": {"_count": 1, "comes": {"_count": 1}}, "I": {"_count": 1, "waited": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "though": {"_count": 1}, "to": {"_count": 1}}, "Give": {"_count": 1, "em": {"_count": 1}}, "back": {"_count": 3, "after": {"_count": 1}, "heres": {"_count": 1}, "at": {"_count": 1}}, "one": {"_count": 1, "in": {"_count": 1}}, "starting": {"_count": 1, "tomorrow": {"_count": 1}}, "but": {"_count": 3, "he": {"_count": 2}, "you": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "since": {"_count": 1, "you": {"_count": 1}}, "again": {"_count": 1, "see": {"_count": 1}}, "was": {"_count": 1, "it": {"_count": 1}}, "Ron": {"_count": 1, "also": {"_count": 1}}, "Hang": {"_count": 1, "on": {"_count": 1}}, "sounds": {"_count": 1, "cool": {"_count": 1}}, "for": {"_count": 2, "D": {"_count": 1}, "the": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "even": {"_count": 1, "those": {"_count": 1}}, "an": {"_count": 1, "have": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "or": {"_count": 2, "so": {"_count": 1}, "more": {"_count": 1}}, "Professor": {"_count": 1, "Burbage": {"_count": 1}}, "the": {"_count": 2, "shocking": {"_count": 1}, "only": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "Lovegood": {"_count": 1, "we": {"_count": 1}}, "through": {"_count": 1, "sodden": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}}, "folks": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "can": {"_count": 1214, "promise": {"_count": 3, "a": {"_count": 1}, "that": {"_count": 2}}, "call": {"_count": 4, "him": {"_count": 1}, "us": {"_count": 1}, "it": {"_count": 1}, "Hagrid": {"_count": 1}}, "only": {"_count": 20, "guess": {"_count": 3}, "see": {"_count": 1}, "accept": {"_count": 1}, "be": {"_count": 3}, "dream": {"_count": 1}, "give": {"_count": 1}, "get": {"_count": 4}, "enter": {"_count": 1}, "suppose": {"_count": 1}, "hope": {"_count": 2}, "have": {"_count": 1}, "conclude": {"_count": 1}}, "explain": {"_count": 5, "all": {"_count": 1}, "this": {"_count": 1}, "Harry": {"_count": 1}, "afterwards": {"_count": 1}, "Sirius": {"_count": 1}}, "walk": {"_count": 7, "and": {"_count": 1}, "around": {"_count": 2}, "thanks": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}, "very": {"_count": 1}}, "lids": {"_count": 1, "and": {"_count": 1}}, "come": {"_count": 15, "in": {"_count": 1}, "tonight": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "with": {"_count": 2}, "down": {"_count": 1}, "back": {"_count": 5}}, "but": {"_count": 1, "at": {"_count": 1}}, "you": {"_count": 49, "know": {"_count": 2}, "be": {"_count": 6}, "think": {"_count": 1}, "see": {"_count": 2}, "tell": {"_count": 4}, "stick": {"_count": 1}, "get": {"_count": 1}, "let": {"_count": 2}, "stand": {"_count": 1}, "hear": {"_count": 3}, "": {"_count": 6}, "understand": {"_count": 1}, "read": {"_count": 1}, "show": {"_count": 1}, "just": {"_count": 1}, "take": {"_count": 1}, "remember": {"_count": 3}, "lend": {"_count": 1}, "help": {"_count": 2}, "say": {"_count": 1}, "still": {"_count": 1}, "believe": {"_count": 2}, "Muriel": {"_count": 1}, "side": {"_count": 1}, "possibly": {"_count": 1}, "explain": {"_count": 1}, "ask": {"_count": 1}}, "tell": {"_count": 45, "yeh": {"_count": 2}, "who": {"_count": 1}, "you": {"_count": 8}, "me": {"_count": 10}, "them": {"_count": 1}, "him": {"_count": 2}, "your": {"_count": 1}, "said": {"_count": 1}, "hes": {"_count": 1}, "the": {"_count": 1}, "Mum": {"_count": 1}, "The": {"_count": 1}, "us": {"_count": 4}, "and": {"_count": 1}, "": {"_count": 4}, "one": {"_count": 1}, "Ive": {"_count": 1}, "its": {"_count": 1}, "also": {"_count": 1}, "by": {"_count": 1}, "they": {"_count": 1}}, "help": {"_count": 21, "it": {"_count": 3}, "you": {"_count": 5}, "Dobby": {"_count": 1}, "ourselves": {"_count": 1}, "me": {"_count": 5}, "at": {"_count": 1}, "themselves": {"_count": 1}, "": {"_count": 2}, "some": {"_count": 1}, "us": {"_count": 1}}, "be": {"_count": 53, "a": {"_count": 5}, "": {"_count": 2}, "misleading": {"_count": 1}, "drunk": {"_count": 1}, "broken": {"_count": 1}, "anywhere": {"_count": 1}, "anything": {"_count": 1}, "viewed": {"_count": 1}, "fought": {"_count": 1}, "no": {"_count": 6}, "any": {"_count": 1}, "as": {"_count": 1}, "done": {"_count": 1}, "trusted": {"_count": 1}, "changed": {"_count": 1}, "checked": {"_count": 1}, "moved": {"_count": 1}, "possessing": {"_count": 1}, "unbalanced": {"_count": 1}, "very": {"_count": 1}, "fooled": {"_count": 1}, "useful": {"_count": 1}, "intimidated": {"_count": 1}, "rearranged": {"_count": 1}, "easily": {"_count": 1}, "said": {"_count": 2}, "charming": {"_count": 1}, "just": {"_count": 1}, "fairly": {"_count": 1}, "plotting": {"_count": 1}, "nothing": {"_count": 1}, "served": {"_count": 1}, "of": {"_count": 1}, "generated": {"_count": 1}, "placed": {"_count": 1}, "spared": {"_count": 1}, "sure": {"_count": 2}, "friendship": {"_count": 1}, "troublesome": {"_count": 1}, "friends": {"_count": 1}, "used": {"_count": 1}}, "kip": {"_count": 1, "under": {"_count": 1}}, "trust": {"_count": 5, "me": {"_count": 1}, "any": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 2, "be": {"_count": 2}}, "and": {"_count": 6, "a": {"_count": 2}, "cant": {"_count": 1}, "Im": {"_count": 1}, "Hagrid": {"_count": 1}, "Voldemort": {"_count": 1}}, "": {"_count": 38, ".": {"_count": 27}, "?": {"_count": 4}, "!": {"_count": 7}}, "we": {"_count": 13, "go": {"_count": 1}, "have": {"_count": 1}, "Hermione": {"_count": 1}, "borrow": {"_count": 1}, "do": {"_count": 3}, "with": {"_count": 1}, "move": {"_count": 1}, "take": {"_count": 1}, "say": {"_count": 1}, "": {"_count": 1}, "please": {"_count": 1}}, "they": {"_count": 3, "expect": {"_count": 1}, "boy": {"_count": 1}, "not": {"_count": 1}}, "I": {"_count": 45, "go": {"_count": 2}, "look": {"_count": 1}, "have": {"_count": 8}, "be": {"_count": 2}, "speak": {"_count": 1}, "still": {"_count": 1}, "say": {"_count": 2}, "move": {"_count": 1}, "ever": {"_count": 1}, "": {"_count": 5}, "use": {"_count": 1}, "do": {"_count": 2}, "come": {"_count": 2}, "hate": {"_count": 1}, "get": {"_count": 2}, "think": {"_count": 1}, "ask": {"_count": 2}, "help": {"_count": 2}, "bet": {"_count": 1}, "see": {"_count": 1}, "know": {"_count": 2}, "empty": {"_count": 1}, "forgive": {"_count": 1}, "possibly": {"_count": 1}, "will": {"_count": 1}}, "start": {"_count": 3, "collecting": {"_count": 1}, "doing": {"_count": 1}, "moving": {"_count": 1}}, "get": {"_count": 48, "spinach": {"_count": 1}, "to": {"_count": 1}, "mine": {"_count": 1}, "seven": {"_count": 1}, "all": {"_count": 1}, "something": {"_count": 1}, "it": {"_count": 3}, "back": {"_count": 1}, "her": {"_count": 1}, "away": {"_count": 2}, "a": {"_count": 1}, "through": {"_count": 2}, "in": {"_count": 4}, "you": {"_count": 4}, "MadEye": {"_count": 1}, "": {"_count": 1}, "up": {"_count": 1}, "out": {"_count": 3}, "rid": {"_count": 2}, "them": {"_count": 1}, "food": {"_count": 1}, "off": {"_count": 2}, "his": {"_count": 1}, "past": {"_count": 1}, "around": {"_count": 1}, "Hermione": {"_count": 1}, "us": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}, "if": {"_count": 2}, "him": {"_count": 1}, "along": {"_count": 1}, "inside": {"_count": 1}}, "afford": {"_count": 3, "": {"_count": 1}, "to": {"_count": 2}}, "while": {"_count": 1, "you": {"_count": 1}}, "find": {"_count": 12, "A": {"_count": 1}, "someone": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 2}, "headquarters": {"_count": 1}, "more": {"_count": 1}, "evidence": {"_count": 1}, "out": {"_count": 1}, "him": {"_count": 1}}, "keep": {"_count": 6, "your": {"_count": 2}, "it": {"_count": 2}, "him": {"_count": 1}, "using": {"_count": 1}}, "cap": {"_count": 1, "them": {"_count": 1}}, "control": {"_count": 5, "him": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 1}, "people": {"_count": 1}, "them": {"_count": 1}}, "teach": {"_count": 1, "you": {"_count": 1}}, "turn": {"_count": 5, "very": {"_count": 1}, "out": {"_count": 1}, "himself": {"_count": 1}, "our": {"_count": 1}, "Hermione": {"_count": 1}}, "say": {"_count": 14, "\u2018Quidditch": {"_count": 1}, "theyve": {"_count": 1}, "such": {"_count": 1}, "what": {"_count": 1}, "is": {"_count": 2}, "": {"_count": 1}, "hello": {"_count": 1}, "I": {"_count": 1}, "but": {"_count": 1}, "now": {"_count": 1}, "that": {"_count": 1}, "which": {"_count": 1}, "who": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "me": {"_count": 1}}, "go": {"_count": 23, "on": {"_count": 1}, "up": {"_count": 2}, "and": {"_count": 5}, "first": {"_count": 1}, "down": {"_count": 1}, "this": {"_count": 1}, "horribly": {"_count": 1}, "to": {"_count": 6}, "": {"_count": 1}, "with": {"_count": 1}, "badly": {"_count": 1}, "without": {"_count": 1}, "ahead": {"_count": 1}}, "stand": {"_count": 5, "her": {"_count": 1}, "traveling": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}, "it": {"_count": 1}}, "look": {"_count": 6, "": {"_count": 1}, "after": {"_count": 4}, "for": {"_count": 1}}, "see": {"_count": 42, "them": {"_count": 4}, "something": {"_count": 2}, "Be": {"_count": 1}, "it": {"_count": 1}, "now": {"_count": 2}, "you": {"_count": 1}, "is": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 7}, "right": {"_count": 1}, "through": {"_count": 1}, "where": {"_count": 1}, "her": {"_count": 1}, "Im": {"_count": 1}, "how": {"_count": 3}, "are": {"_count": 1}, "em": {"_count": 1}, "thestrals": {"_count": 1}, "or": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "Hogwarts": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 2}, "why": {"_count": 1}, "their": {"_count": 1}}, "it": {"_count": 10, "": {"_count": 5}, "be": {"_count": 2}, "have": {"_count": 1}, "know": {"_count": 1}, "help": {"_count": 1}}, "make": {"_count": 18, "you": {"_count": 2}, "a": {"_count": 2}, "itself": {"_count": 1}, "that": {"_count": 1}, "good": {"_count": 2}, "it": {"_count": 1}, "up": {"_count": 1}, "some": {"_count": 1}, "things": {"_count": 1}, "animals": {"_count": 1}, "bad": {"_count": 1}, "them": {"_count": 2}, "mistakes": {"_count": 1}, "their": {"_count": 1}}, "never": {"_count": 6, "have": {"_count": 2}, "die": {"_count": 1}, "find": {"_count": 1}, "hope": {"_count": 1}, "thank": {"_count": 1}}, "favor": {"_count": 1, "Hufflepuff": {"_count": 1}}, "take": {"_count": 19, "care": {"_count": 1}, "the": {"_count": 2}, "you": {"_count": 3}, "Dumbledore": {"_count": 1}, "Fang": {"_count": 1}, "any": {"_count": 1}, "it": {"_count": 3}, "him": {"_count": 2}, "off": {"_count": 1}, "up": {"_count": 1}, "humans": {"_count": 1}, "your": {"_count": 1}, "zat": {"_count": 1}}, "meet": {"_count": 1, "you": {"_count": 1}}, "remember": {"_count": 5, "too": {"_count": 1}, "": {"_count": 2}, "her": {"_count": 1}, "what": {"_count": 1}}, "possibly": {"_count": 7, "steal": {"_count": 1}, "have": {"_count": 2}, "work": {"_count": 1}, "imagine": {"_count": 2}, "know": {"_count": 1}}, "pretend": {"_count": 1, "to": {"_count": 1}}, "jump": {"_count": 1, "": {"_count": 1}}, "share": {"_count": 1, "anothers": {"_count": 1}}, "cant": {"_count": 1, "I": {"_count": 1}}, "fly": {"_count": 5, "behind": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "particularly": {"_count": 1}, "went": {"_count": 1}}, "polish": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 3, "be": {"_count": 1}, "": {"_count": 1}, "tell": {"_count": 1}}, "return": {"_count": 2, "to": {"_count": 2}}, "chew": {"_count": 2, "So": {"_count": 1}, "if": {"_count": 1}}, "actually": {"_count": 2, "meet": {"_count": 1}, "do": {"_count": 1}}, "give": {"_count": 14, "you": {"_count": 4}, "him": {"_count": 2}, "yeh": {"_count": 1}, "out": {"_count": 1}, "them": {"_count": 1}, "me": {"_count": 1}, "Mr": {"_count": 1}, "it": {"_count": 2}, "that": {"_count": 1}}, "prove": {"_count": 4, "Ive": {"_count": 1}, "Buckbeak": {"_count": 1}, "theyre": {"_count": 1}, "that": {"_count": 1}}, "befall": {"_count": 1, "you": {"_count": 1}}, "clear": {"_count": 2, "off": {"_count": 1}, "out": {"_count": 1}}, "cure": {"_count": 1, "him": {"_count": 1}}, "hardly": {"_count": 8, "stand": {"_count": 1}, "stroll": {"_count": 1}, "wait": {"_count": 1}, "say": {"_count": 1}, "count": {"_count": 1}, "breathe": {"_count": 1}, "complain": {"_count": 1}, "book": {"_count": 1}}, "do": {"_count": 78, "said": {"_count": 1}, "": {"_count": 15}, "it": {"_count": 12}, "is": {"_count": 2}, "about": {"_count": 3}, "all": {"_count": 2}, "Hagrid": {"_count": 1}, "I": {"_count": 1}, "large": {"_count": 1}, "funny": {"_count": 1}, "to": {"_count": 3}, "magic": {"_count": 4}, "anythin": {"_count": 1}, "mate": {"_count": 1}, "shes": {"_count": 1}, "much": {"_count": 1}, "for": {"_count": 4}, "whatever": {"_count": 1}, "now": {"_count": 1}, "your": {"_count": 1}, "better": {"_count": 2}, "patterns": {"_count": 1}, "She": {"_count": 1}, "where": {"_count": 1}, "a": {"_count": 1}, "joinedup": {"_count": 1}, "nothing": {"_count": 1}, "the": {"_count": 3}, "you": {"_count": 2}, "this": {"_count": 2}, "ten": {"_count": 1}, "Harry": {"_count": 2}, "that": {"_count": 1}, "in": {"_count": 1}, "Disslusion": {"_count": 1}}, "address": {"_count": 1, "the": {"_count": 1}}, "hear": {"_count": 11, "isnt": {"_count": 2}, "Voldemort": {"_count": 1}, "my": {"_count": 1}, "Dumbledore": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 1}, "Kreacher": {"_count": 1}, "them": {"_count": 1}, "someone": {"_count": 1}, "people": {"_count": 1}}, "just": {"_count": 13, "knock": {"_count": 1}, "wait": {"_count": 1}, "ask": {"_count": 1}, "go": {"_count": 1}, "bring": {"_count": 1}, "learn": {"_count": 1}, "get": {"_count": 2}, "sit": {"_count": 1}, "Seamus": {"_count": 1}, "tell": {"_count": 1}, "keep": {"_count": 1}, "poke": {"_count": 1}}, "sometimes": {"_count": 1, "happen": {"_count": 1}}, "mend": {"_count": 3, "bones": {"_count": 1}, "cuts": {"_count": 1}, "anything": {"_count": 1}}, "add": {"_count": 2, "that": {"_count": 1}, "two": {"_count": 1}}, "disguise": {"_count": 2, "itself": {"_count": 1}, "myself": {"_count": 1}}, "sneak": {"_count": 2, "into": {"_count": 1}, "up": {"_count": 1}}, "he": {"_count": 19, "do": {"_count": 3}, "": {"_count": 8}, "think": {"_count": 2}, "let": {"_count": 1}, "when": {"_count": 1}, "have": {"_count": 2}, "come": {"_count": 1}, "be": {"_count": 1}}, "duel": {"_count": 1, "": {"_count": 1}}, "partner": {"_count": 2, "Finnigan": {"_count": 1}, "Miss": {"_count": 1}}, "talk": {"_count": 7, "to": {"_count": 3}, "later": {"_count": 2}, "it": {"_count": 1}, "ter": {"_count": 1}}, "speak": {"_count": 14, "it": {"_count": 1}, "Parseltongue": {"_count": 4}, "of": {"_count": 1}, "Troll": {"_count": 1}, "English": {"_count": 1}, "loads": {"_count": 1}, "freely": {"_count": 1}, "to": {"_count": 3}, "plainly": {"_count": 1}}, "trace": {"_count": 1, "my": {"_count": 1}}, "carry": {"_count": 4, "immensely": {"_count": 1}, "around": {"_count": 1}, "on": {"_count": 1}, "my": {"_count": 1}}, "show": {"_count": 4, "you": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}, "them": {"_count": 1}}, "hold": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "please": {"_count": 2, "": {"_count": 2}}, "can": {"_count": 2, "get": {"_count": 1}, "check": {"_count": 1}}, "imagine": {"_count": 8, "how": {"_count": 3}, "that": {"_count": 1}, "": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 2}}, "think": {"_count": 10, "for": {"_count": 3}, "straight": {"_count": 1}, "of": {"_count": 5}, "and": {"_count": 1}}, "have": {"_count": 27, "some": {"_count": 1}, "it": {"_count": 6}, "a": {"_count": 8}, "happened": {"_count": 1}, "no": {"_count": 1}, "said": {"_count": 1}, "his": {"_count": 1}, "imagined": {"_count": 1}, "one": {"_count": 1}, "them": {"_count": 1}, "been": {"_count": 1}, "dreamed": {"_count": 1}, "your": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 3, "recapture": {"_count": 1}, "make": {"_count": 1}, "round": {"_count": 1}}, "ask": {"_count": 8, "Dad": {"_count": 1}, "Fred": {"_count": 1}, "him": {"_count": 1}, "favors": {"_count": 1}, "them": {"_count": 1}, "out": {"_count": 1}, "Kingsley": {"_count": 1}, "Mr": {"_count": 1}}, "try": {"_count": 5, "this": {"_count": 1}, "out": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 1}}, "break": {"_count": 2, "out": {"_count": 1}, "into": {"_count": 1}}, "suck": {"_count": 1, "in": {"_count": 1}}, "lend": {"_count": 2, "me": {"_count": 1}, "you": {"_count": 1}}, "touch": {"_count": 3, "him": {"_count": 3}}, "skin": {"_count": 1, "Malfoys": {"_count": 1}}, "copy": {"_count": 1, "mine": {"_count": 1}}, "the": {"_count": 1, "dementor": {"_count": 1}}, "use": {"_count": 9, "said": {"_count": 1}, "them": {"_count": 1}, "Ginny": {"_count": 1}, "our": {"_count": 1}, "ingredients": {"_count": 1}, "the": {"_count": 1}, "animals": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "read": {"_count": 3, "it": {"_count": 1}, "so": {"_count": 1}, "minds": {"_count": 1}}, "really": {"_count": 1, "remember": {"_count": 1}}, "leech": {"_count": 1, "all": {"_count": 1}}, "store": {"_count": 1, "him": {"_count": 1}}, "so": {"_count": 1, "the": {"_count": 1}}, "exist": {"_count": 1, "without": {"_count": 1}}, "manage": {"_count": 5, "that": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "Harry": {"_count": 2, "panted": {"_count": 1}, "read": {"_count": 1}}, "become": {"_count": 1, "animals": {"_count": 1}}, "wangle": {"_count": 1, "it": {"_count": 1}}, "escape": {"_count": 2, "on": {"_count": 1}, "together": {"_count": 1}}, "usually": {"_count": 2, "get": {"_count": 1}, "tell": {"_count": 1}}, "always": {"_count": 1, "tell": {"_count": 1}}, "play": {"_count": 3, "games": {"_count": 1}, "Quidditch": {"_count": 1}, "": {"_count": 1}}, "spend": {"_count": 1, "the": {"_count": 1}}, "travel": {"_count": 1, "by": {"_count": 1}}, "put": {"_count": 12, "it": {"_count": 1}, "those": {"_count": 1}, "that": {"_count": 2}, "into": {"_count": 2}, "them": {"_count": 1}, "off": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "repair": {"_count": 1, "your": {"_count": 1}}, "sort": {"_count": 2, "him": {"_count": 1}, "out": {"_count": 1}}, "correct": {"_count": 1, "it": {"_count": 1}}, "all": {"_count": 7, "go": {"_count": 2}, "do": {"_count": 1}, "repose": {"_count": 1}, "work": {"_count": 1}, "stay": {"_count": 1}, "wear": {"_count": 1}}, "lead": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "replay": {"_count": 1, "action": {"_count": 1}}, "if": {"_count": 1, "Harry": {"_count": 1}}, "someone": {"_count": 1, "just": {"_count": 1}}, "handle": {"_count": 1, "this": {"_count": 1}}, "steal": {"_count": 1, "their": {"_count": 1}}, "enchant": {"_count": 1, "a": {"_count": 1}}, "happen": {"_count": 4, "when": {"_count": 1}, "is": {"_count": 1}, "between": {"_count": 1}, "": {"_count": 1}}, "certainly": {"_count": 1, "see": {"_count": 1}}, "burn": {"_count": 1, "sting": {"_count": 1}}, "cope": {"_count": 1, "and": {"_count": 1}}, "perform": {"_count": 1, "the": {"_count": 1}}, "fund": {"_count": 1, "our": {"_count": 1}}, "said": {"_count": 13, "Ron": {"_count": 2}, "Harry": {"_count": 4}, "Mrs": {"_count": 1}, "Dumbledore": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 2}, "Snape": {"_count": 1}, "Fred": {"_count": 1}}, "count": {"_count": 2, "upon": {"_count": 1}, "on": {"_count": 1}}, "muster": {"_count": 2, "": {"_count": 1}, "do": {"_count": 1}}, "borrow": {"_count": 2, "Im": {"_count": 1}, "her": {"_count": 1}}, "barely": {"_count": 3, "remember": {"_count": 1}, "These": {"_count": 1}, "talk": {"_count": 1}}, "shoot": {"_count": 1, "fire": {"_count": 1}}, "deal": {"_count": 2, "with": {"_count": 2}}, "worry": {"_count": 1, "about": {"_count": 1}}, "penetrate": {"_count": 1, "": {"_count": 1}}, "bet": {"_count": 2, "old": {"_count": 1}, "Voldemort": {"_count": 1}}, "Dobby": {"_count": 1, "come": {"_count": 1}}, "mix": {"_count": 1, "them": {"_count": 1}}, "exclusively": {"_count": 2, "reveal": {"_count": 2}}, "still": {"_count": 10, "be": {"_count": 1}, "see": {"_count": 3}, "get": {"_count": 1}, "reach": {"_count": 1}, "call": {"_count": 3}, "use": {"_count": 1}}, "pat": {"_count": 1, "em": {"_count": 1}}, "feel": {"_count": 3, "it": {"_count": 2}, "pain": {"_count": 1}}, "okay": {"_count": 2, "": {"_count": 2}}, "swim": {"_count": 1, "very": {"_count": 1}}, "bring": {"_count": 1, "back": {"_count": 1}}, "scrounge": {"_count": 1, "another": {"_count": 1}}, "guess": {"_count": 1, "what": {"_count": 1}}, "wait": {"_count": 5, "until": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "outside": {"_count": 1}, "upstairs": {"_count": 1}}, "answer": {"_count": 3, "my": {"_count": 1}, "better": {"_count": 1}, "questions": {"_count": 1}}, "there": {"_count": 2, "be": {"_count": 1}, "": {"_count": 1}}, "watch": {"_count": 1, "": {"_count": 1}}, "leave": {"_count": 5, "that": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "withou": {"_count": 1}, "an": {"_count": 1}}, "reawaken": {"_count": 1, "the": {"_count": 1}}, "offer": {"_count": 2, "them": {"_count": 1}, "you": {"_count": 1}}, "persuade": {"_count": 3, "of": {"_count": 1}, "the": {"_count": 1}, "Slughorn": {"_count": 1}}, "for": {"_count": 1, "her": {"_count": 1}}, "fight": {"_count": 2, "it": {"_count": 2}}, "steer": {"_count": 1, "that": {"_count": 1}}, "pay": {"_count": 1, "you": {"_count": 1}}, "beat": {"_count": 2, "up": {"_count": 1}, "himself": {"_count": 1}}, "open": {"_count": 1, "it": {"_count": 1}}, "change": {"_count": 3, "my": {"_count": 1}, "that": {"_count": 1}, "though": {"_count": 1}}, "lose": {"_count": 1, "ourselves": {"_count": 1}}, "stay": {"_count": 10, "where": {"_count": 1}, "but": {"_count": 1}, "with": {"_count": 2}, "here": {"_count": 2}, "behind": {"_count": 1}, "open": {"_count": 1}, "then": {"_count": 1}, "there": {"_count": 1}}, "kill": {"_count": 3, "loads": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}}, "risk": {"_count": 1, "the": {"_count": 1}}, "escort": {"_count": 1, "you": {"_count": 1}}, "work": {"_count": 1, "wonders": {"_count": 1}}, "catch": {"_count": 2, "whoevers": {"_count": 1}, "a": {"_count": 1}}, "Squibs": {"_count": 1, "see": {"_count": 1}}, "summon": {"_count": 1, "him": {"_count": 1}}, "understand": {"_count": 5, "Yeah": {"_count": 1}, "you": {"_count": 1}, "them": {"_count": 1}, "that": {"_count": 1}, "why": {"_count": 1}}, "withstand": {"_count": 1, "most": {"_count": 1}}, "breed": {"_count": 1, "from": {"_count": 1}}, "apply": {"_count": 1, "for": {"_count": 1}}, "choose": {"_count": 1, "what": {"_count": 1}}, "legally": {"_count": 1, "be": {"_count": 1}}, "Dumbledore": {"_count": 1, "have": {"_count": 1}}, "study": {"_count": 1, "them": {"_count": 1}}, "draw": {"_count": 1, "its": {"_count": 1}}, "laugh": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "etch": {"_count": 1, "the": {"_count": 1}}, "spot": {"_count": 2, "yours": {"_count": 1}, "Ravenclaws": {"_count": 1}}, "no": {"_count": 2, "longer": {"_count": 2}}, "build": {"_count": 1, "on": {"_count": 1}}, "accomplish": {"_count": 1, "with": {"_count": 1}}, "lecture": {"_count": 1, "me": {"_count": 1}}, "recognize": {"_count": 1, "crups": {"_count": 1}}, "defend": {"_count": 1, "ourselves": {"_count": 1}}, "produce": {"_count": 5, "a": {"_count": 3}, "some": {"_count": 1}, "magic": {"_count": 1}}, "warn": {"_count": 1, "him": {"_count": 1}}, "practice": {"_count": 3, "Defense": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}}, "refer": {"_count": 1, "to": {"_count": 1}}, "decide": {"_count": 1, "on": {"_count": 1}}, "continue": {"_count": 1, "playing": {"_count": 1}}, "a": {"_count": 1, "beaming": {"_count": 1}}, "learn": {"_count": 2, "Occlumency": {"_count": 1}, "from": {"_count": 1}}, "round": {"_count": 1, "up": {"_count": 1}}, "simply": {"_count": 1, "nod": {"_count": 1}}, "close": {"_count": 1, "your": {"_count": 1}}, "dock": {"_count": 1, "points": {"_count": 1}}, "Im": {"_count": 1, "surprised": {"_count": 1}}, "that": {"_count": 2, "come": {"_count": 1}, "be": {"_count": 1}}, "yeh": {"_count": 1, "come": {"_count": 1}}, "let": {"_count": 2, "ourselves": {"_count": 1}, "me": {"_count": 1}}, "blame": {"_count": 1, "Umbridge": {"_count": 1}}, "save": {"_count": 5, "anything": {"_count": 2}, "him": {"_count": 1}, "your": {"_count": 1}, "goals": {"_count": 1}}, "rescue": {"_count": 1, "Sirius": {"_count": 1}}, "contact": {"_count": 1, "him": {"_count": 1}}, "check": {"_count": 1, "whether": {"_count": 1}}, "join": {"_count": 1, "the": {"_count": 1}}, "discuss": {"_count": 1, "that": {"_count": 1}}, "lift": {"_count": 1, "them": {"_count": 1}}, "live": {"_count": 8, "while": {"_count": 7}, "": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "provide": {"_count": 1, "": {"_count": 1}}, "pop": {"_count": 1, "in": {"_count": 1}}, "fix": {"_count": 4, "your": {"_count": 1}, "up": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}}, "confide": {"_count": 1, "in": {"_count": 1}}, "write": {"_count": 1, "to": {"_count": 1}}, "smell": {"_count": 1, "freshly": {"_count": 1}}, "expel": {"_count": 1, "students": {"_count": 1}}, "But": {"_count": 1, "her": {"_count": 1}}, "stop": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "assist": {"_count": 2, "you": {"_count": 2}}, "enjoy": {"_count": 1, "watching": {"_count": 1}}, "detect": {"_count": 1, "magic": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "strengthen": {"_count": 1, "you": {"_count": 1}}, "obey": {"_count": 1, "anyone": {"_count": 1}}, "gain": {"_count": 1, "from": {"_count": 1}}, "Apparate": {"_count": 4, "though": {"_count": 1}, "now": {"_count": 1}, "us": {"_count": 1}, "and": {"_count": 1}}, "sleep": {"_count": 1, "all": {"_count": 1}}, "discover": {"_count": 2, "but": {"_count": 1}, "what": {"_count": 1}}, "postpone": {"_count": 1, "the": {"_count": 1}}, "drink": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 1, "Voldemorts": {"_count": 1}}, "love": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "rule": {"_count": 1, "out": {"_count": 1}}, "rustle": {"_count": 1, "up": {"_count": 1}}, "avoid": {"_count": 2, "it": {"_count": 2}}, "run": {"_count": 1, "and": {"_count": 1}}, "Before": {"_count": 1, "Harry": {"_count": 1}}, "hide": {"_count": 1, "you": {"_count": 1}}, "send": {"_count": 1, "members": {"_count": 1}}, "protect": {"_count": 1, "him": {"_count": 1}}, "represent": {"_count": 1, "Slytherin": {"_count": 1}}, "arrange": {"_count": 1, "transport": {"_count": 1}}, "Hogwarts": {"_count": 1, "close": {"_count": 1}}, "visit": {"_count": 1, "my": {"_count": 1}}, "throw": {"_count": 1, "at": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "Fly": {"_count": 1, "supplied": {"_count": 1}}, "plan": {"_count": 1, "here": {"_count": 1}}, "Five": {"_count": 1, "days": {"_count": 1}}, "believe": {"_count": 1, "that": {"_count": 1}}, "destroy": {"_count": 3, "you": {"_count": 1}, "it": {"_count": 1}, "Horcruxes": {"_count": 1}}, "flit": {"_count": 1, "in": {"_count": 1}}, "identify": {"_count": 1, "the": {"_count": 1}}, "plant": {"_count": 1, "false": {"_count": 1}}, "finish": {"_count": 1, "the": {"_count": 1}}, "Summon": {"_count": 1, "it": {"_count": 1}}, "transform": {"_count": 1, "it": {"_count": 1}}, "increase": {"_count": 1, "the": {"_count": 1}}, "assure": {"_count": 1, "you": {"_count": 1}}, "now": {"_count": 1, "be": {"_count": 1}}, "explode": {"_count": 1, "at": {"_count": 1}}, "raise": {"_count": 2, "the": {"_count": 2}}, "spare": {"_count": 1, "a": {"_count": 1}}, "move": {"_count": 2, "faster": {"_count": 1}, "downstairs": {"_count": 1}}, "Disapparate": {"_count": 1, "out": {"_count": 1}}, "dispose": {"_count": 1, "of": {"_count": 1}}, "gift": {"_count": 1, "wrap": {"_count": 1}}, "hurt": {"_count": 1, "him": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "push": {"_count": 1, "it": {"_count": 1}}, "punish": {"_count": 2, "them": {"_count": 1}, "you": {"_count": 1}}, "act": {"_count": 1, "from": {"_count": 1}}, "end": {"_count": 2, "it": {"_count": 2}}, "die": {"_count": 2, "as": {"_count": 1}, "at": {"_count": 1}}, "hope": {"_count": 1, "for": {"_count": 1}}, "agree": {"_count": 1, "that": {"_count": 1}}, "threaten": {"_count": 1, "me": {"_count": 1}}, "attend": {"_count": 1, "to": {"_count": 1}}}, "promise": {"_count": 44, "a": {"_count": 1, "wet": {"_count": 1}}, "you": {"_count": 7, "said": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}, "wont": {"_count": 1}}, "he": {"_count": 2, "wouldnt": {"_count": 1}, "had": {"_count": 1}}, "to": {"_count": 6, "go": {"_count": 1}, "stay": {"_count": 1}, "come": {"_count": 1}, "take": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "Hermione": {"_count": 1, "reminded": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 3, "antidementor": {"_count": 1}, "a": {"_count": 1}, "nothing": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "helping": {"_count": 1}}, "yeh": {"_count": 2, "that": {"_count": 1}, "Ive": {"_count": 1}}, "him": {"_count": 1, "youre": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "not": {"_count": 1, "that": {"_count": 1}}, "no": {"_count": 1, "ones": {"_count": 1}}, "that": {"_count": 3, "but": {"_count": 1}, "he": {"_count": 1}, "anybody": {"_count": 1}}, "well": {"_count": 1, "never": {"_count": 1}}, "her": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "me": {"_count": 1, "The": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "goblins": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "wet": {"_count": 57, "night": {"_count": 2, "tonight": {"_count": 1}, "sixteen": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "?": {"_count": 3}}, "and": {"_count": 10, "gasping": {"_count": 1}, "muddy": {"_count": 2}, "looked": {"_count": 1}, "the": {"_count": 1}, "suddenly": {"_count": 1}, "in": {"_count": 1}, "cold": {"_count": 1}, "windy": {"_count": 1}, "completely": {"_count": 1}}, "the": {"_count": 2, "rest": {"_count": 1}, "water": {"_count": 1}}, "as": {"_count": 1, "everything": {"_count": 1}}, "pages": {"_count": 1, "apart": {"_count": 1}}, "touched": {"_count": 1, "Harrys": {"_count": 1}}, "thud": {"_count": 1, "landing": {"_count": 1}}, "floor": {"_count": 4, "": {"_count": 2}, "of": {"_count": 1}, "and": {"_count": 1}}, "walls": {"_count": 1, "looked": {"_count": 1}}, "himself": {"_count": 1, "said": {"_count": 1}}, "wiping": {"_count": 1, "the": {"_count": 1}}, "raspberry": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "suddenly": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "grounds": {"_count": 2, "signaling": {"_count": 1}, "toward": {"_count": 1}}, "hands": {"_count": 1, "and": {"_count": 1}}, "face": {"_count": 2, "sting": {"_count": 1}, "between": {"_count": 1}}, "comb": {"_count": 1, "": {"_count": 1}}, "cheeks": {"_count": 1, "with": {"_count": 1}}, "hair": {"_count": 1, "out": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 2, "sleet": {"_count": 1}, "tears": {"_count": 1}}, "but": {"_count": 1, "still": {"_count": 1}}, "kiss": {"_count": 1, "on": {"_count": 1}}, "tar": {"_count": 1, "in": {"_count": 1}}, "rock": {"_count": 1, "": {"_count": 1}}, "handkerchief": {"_count": 2, "in": {"_count": 1}, "into": {"_count": 1}}, "was": {"_count": 1, "trickling": {"_count": 1}}, "shockingly": {"_count": 1, "scarlet": {"_count": 1}}, "jacket": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "frozen": {"_count": 59, "in": {"_count": 7, "his": {"_count": 3}, "midair": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 2}}, "with": {"_count": 1, "fear": {"_count": 1}}, "": {"_count": 8, "?": {"_count": 1}, ".": {"_count": 7}}, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "hardly": {"_count": 1, "able": {"_count": 1}}, "there": {"_count": 1, "wand": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "our": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "grounds": {"_count": 1, "to": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "iron": {"_count": 1, "with": {"_count": 1}}, "pitch": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "lake": {"_count": 1, "tobogganing": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "quite": {"_count": 1, "unable": {"_count": 1}}, "his": {"_count": 2, "unctuous": {"_count": 1}, "face": {"_count": 1}}, "slush": {"_count": 1, "": {"_count": 1}}, "ground": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "rhododendron": {"_count": 1, "": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "aware": {"_count": 1, "that": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "silence": {"_count": 1, "one": {"_count": 1}}, "lichenspotted": {"_count": 1, "granite": {"_count": 1}}, "road": {"_count": 1, "facing": {"_count": 1}}, "earth": {"_count": 1, "covered": {"_count": 1}}, "pool": {"_count": 3, "its": {"_count": 1}, "": {"_count": 2}}, "air": {"_count": 1, "": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "if": {"_count": 1}}, "fingers": {"_count": 1, "unable": {"_count": 1}}, "and": {"_count": 1, "felt": {"_count": 1}}, "figures": {"_count": 1, "of": {"_count": 1}}, "Harrys": {"_count": 1, "breath": {"_count": 1}}, "steel": {"_count": 1, "like": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}}, "armchair": {"_count": 66, "": {"_count": 8, ".": {"_count": 8}}, "outside": {"_count": 1, "his": {"_count": 1}}, "clutching": {"_count": 1, "Trevor": {"_count": 1}}, "in": {"_count": 6, "front": {"_count": 5}, "his": {"_count": 1}}, "and": {"_count": 14, "said": {"_count": 2}, "he": {"_count": 1}, "pulled": {"_count": 2}, "sprang": {"_count": 1}, "trotted": {"_count": 1}, "sleep": {"_count": 1}, "a": {"_count": 1}, "carried": {"_count": 2}, "lowered": {"_count": 1}, "sat": {"_count": 1}, "wrested": {"_count": 1}}, "next": {"_count": 2, "to": {"_count": 2}}, "his": {"_count": 4, "hands": {"_count": 1}, "porky": {"_count": 1}, "face": {"_count": 1}, "filthy": {"_count": 1}}, "her": {"_count": 2, "glittering": {"_count": 1}, "eyes": {"_count": 1}}, "before": {"_count": 3, "the": {"_count": 3}}, "the": {"_count": 1, "man": {"_count": 1}}, "near": {"_count": 2, "the": {"_count": 2}}, "so": {"_count": 1, "that": {"_count": 1}}, "then": {"_count": 1, "bent": {"_count": 1}}, "appeared": {"_count": 1, "out": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "beside": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "Hermione": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "blinking": {"_count": 1, "up": {"_count": 1}}, "opposite": {"_count": 1, "the": {"_count": 1}}, "nearest": {"_count": 1, "the": {"_count": 1}}, "choosing": {"_count": 1, "not": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "which": {"_count": 1, "yelled": {"_count": 1}}, "there": {"_count": 1, "now": {"_count": 1}}, "one": {"_count": 1, "hand": {"_count": 1}}, "looking": {"_count": 1, "devastated": {"_count": 1}}, "that": {"_count": 1, "Mr": {"_count": 1}}, "frowning": {"_count": 1, "": {"_count": 1}}}, "Shooting": {"_count": 5, "stars": {"_count": 2, "all": {"_count": 1}, "down": {"_count": 1}}, "Star": {"_count": 3, "was": {"_count": 1}, "which": {"_count": 1}, "against": {"_count": 1}}}, "Britain": {"_count": 22, "": {"_count": 6, "?": {"_count": 2}, ".": {"_count": 4}}, "and": {"_count": 6, "Ireland": {"_count": 4}, "massive": {"_count": 1}, "the": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "hasnt": {"_count": 1, "hosted": {"_count": 1}}, "will": {"_count": 1, "they": {"_count": 1}}, "I": {"_count": 1, "believe": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 1, "though": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "whos": {"_count": 1, "managed": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "however": {"_count": 1, "the": {"_count": 1}}}, "Owls": {"_count": 4, "flying": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hooted": {"_count": 1, "to": {"_count": 1}}, "treating": {"_count": 1, "the": {"_count": 1}}}, "Mysterious": {"_count": 1, "people": {"_count": 1, "in": {"_count": 1}}}, "place": {"_count": 542, "": {"_count": 105, "?": {"_count": 20}, ".": {"_count": 79}, "!": {"_count": 6}}, "for": {"_count": 12, "him": {"_count": 2}, "the": {"_count": 2}, "fear": {"_count": 1}, "his": {"_count": 1}, "five": {"_count": 1}, "Christmas": {"_count": 1}, "something": {"_count": 1}, "a": {"_count": 1}, "here": {"_count": 1}, "getting": {"_count": 1}}, "said": {"_count": 9, "Professor": {"_count": 2}, "Cedric": {"_count": 1}, "Sirius": {"_count": 2}, "Harry": {"_count": 1}, "Ron": {"_count": 2}, "Dumbledore": {"_count": 1}}, "you": {"_count": 6, "would": {"_count": 1}, "know": {"_count": 1}, "become": {"_count": 1}, "have": {"_count": 1}, "can": {"_count": 1}, "thought": {"_count": 1}}, "in": {"_count": 30, "the": {"_count": 13}, "a": {"_count": 3}, "his": {"_count": 2}, "one": {"_count": 1}, "which": {"_count": 3}, "Masters": {"_count": 1}, "Azkaban": {"_count": 1}, "Diagon": {"_count": 2}, "magical": {"_count": 1}, "your": {"_count": 1}, "any": {"_count": 1}, "tag": {"_count": 1}}, "it": {"_count": 6, "was": {"_count": 1}, "mustve": {"_count": 1}, "once": {"_count": 1}, "had": {"_count": 2}, "in": {"_count": 1}}, "fer": {"_count": 1, "wands": {"_count": 1}}, "empty": {"_count": 1, "except": {"_count": 1}}, "and": {"_count": 13, "doors": {"_count": 1}, "one": {"_count": 1}, "now": {"_count": 1}, "nobody": {"_count": 2}, "climbed": {"_count": 1}, "reappearing": {"_count": 1}, "saying": {"_count": 1}, "caused": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}, "restore": {"_count": 1}, "these": {"_count": 1}}, "down": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 19, "eleven": {"_count": 1}, "wizard": {"_count": 1}, "the": {"_count": 7}, "a": {"_count": 1}, "Hogwarts": {"_count": 2}, "Halloween": {"_count": 1}, "half": {"_count": 1}, "dusk": {"_count": 1}, "night": {"_count": 1}, "my": {"_count": 2}, "your": {"_count": 1}}, "ter": {"_count": 1, "do": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 11, "three": {"_count": 1}, "that": {"_count": 1}, "residence": {"_count": 3}, "my": {"_count": 1}, "the": {"_count": 1}, "safety": {"_count": 2}, "honor": {"_count": 1}, "wonder": {"_count": 1}}, "I": {"_count": 5, "should": {"_count": 1}, "assume": {"_count": 1}, "dont": {"_count": 1}, "think": {"_count": 1}, "thought": {"_count": 1}}, "Gryffindor": {"_count": 1, "with": {"_count": 1}}, "so": {"_count": 2, "loud": {"_count": 1}, "I": {"_count": 1}}, "on": {"_count": 8, "the": {"_count": 5}, "earth": {"_count": 1}, "April": {"_count": 1}, "November": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 1}, "managed": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 7, "don": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}, "shrugged": {"_count": 1}, "directly": {"_count": 1}, "had": {"_count": 1}, "his": {"_count": 1}}, "the": {"_count": 6, "hat": {"_count": 2}, "following": {"_count": 1}, "cool": {"_count": 1}, "size": {"_count": 1}, "third": {"_count": 1}}, "between": {"_count": 2, "Ron": {"_count": 1}, "the": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "Right": {"_count": 1, "said": {"_count": 1}}, "most": {"_count": 1, "students": {"_count": 1}}, "an": {"_count": 3, "enormous": {"_count": 1}, "we": {"_count": 1}, "order": {"_count": 1}}, "anyone": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 6, "Harry": {"_count": 2}, "he": {"_count": 2}, "MadEye": {"_count": 1}, "we": {"_count": 1}}, "to": {"_count": 21, "hide": {"_count": 5}, "meet": {"_count": 1}, "transform": {"_count": 1}, "brew": {"_count": 1}, "keep": {"_count": 1}, "practice": {"_count": 1}, "have": {"_count": 1}, "a": {"_count": 1}, "ensure": {"_count": 1}, "start": {"_count": 2}, "be": {"_count": 1}, "Disapparate": {"_count": 1}, "see": {"_count": 1}, "put": {"_count": 1}, "lie": {"_count": 1}, "which": {"_count": 1}}, "they": {"_count": 3, "were": {"_count": 2}, "stood": {"_count": 1}}, "catching": {"_count": 1, "snatches": {"_count": 1}}, "can": {"_count": 1, "hold": {"_count": 1}}, "was": {"_count": 8, "looking": {"_count": 1}, "quite": {"_count": 1}, "full": {"_count": 2}, "shabby": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "eerily": {"_count": 1}}, "as": {"_count": 7, "usual": {"_count": 1}, "your": {"_count": 1}, "Chaser": {"_count": 1}, "soon": {"_count": 1}, "headquarters": {"_count": 1}, "a": {"_count": 1}, "she": {"_count": 1}}, "this": {"_count": 6, "isnt": {"_count": 1}, "Monday": {"_count": 1}, "year": {"_count": 3}, "evening": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "hed": {"_count": 2, "ever": {"_count": 1}, "gone": {"_count": 1}}, "dementors": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 4, "going": {"_count": 1}, "haunted": {"_count": 1}, "moderately": {"_count": 1}, "swarming": {"_count": 1}}, "where": {"_count": 72, "Snape": {"_count": 1}, "they": {"_count": 3}, "he": {"_count": 11}, "the": {"_count": 17}, "Harry": {"_count": 5}, "hed": {"_count": 1}, "Voldemort": {"_count": 1}, "Cedrics": {"_count": 1}, "Moodys": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 7}, "Siriuss": {"_count": 1}, "twentyeight": {"_count": 1}, "everything": {"_count": 2}, "Professor": {"_count": 2}, "Grawp": {"_count": 1}, "its": {"_count": 1}, "a": {"_count": 3}, "your": {"_count": 2}, "Malfoy": {"_count": 3}, "Dumbledore": {"_count": 1}, "you": {"_count": 1}, "hundreds": {"_count": 1}, "Bill": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 1}, "Dobby": {"_count": 1}}, "go": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 4, "they": {"_count": 1}, "one": {"_count": 1}, "youre": {"_count": 1}, "we": {"_count": 1}}, "Hermione": {"_count": 2, "has": {"_count": 1}, "had": {"_count": 1}}, "with": {"_count": 4, "his": {"_count": 1}, "Cedric": {"_count": 1}, "eightyfive": {"_count": 1}, "eighty": {"_count": 1}}, "yet": {"_count": 1, "that": {"_count": 1}}, "he": {"_count": 5, "does": {"_count": 1}, "had": {"_count": 4}}, "them": {"_count": 1, "around": {"_count": 1}}, "amid": {"_count": 1, "decorations": {"_count": 1}}, "Fifty": {"_count": 1, "years": {"_count": 1}}, "which": {"_count": 1, "in": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "above": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 5, "Hogwarts": {"_count": 1}, "a": {"_count": 1}, "thousands": {"_count": 1}, "Borgin": {"_count": 1}, "that": {"_count": 1}}, "deep": {"_count": 2, "in": {"_count": 2}}, "though": {"_count": 3, "his": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "a": {"_count": 10, "week": {"_count": 1}, "faithful": {"_count": 1}, "cool": {"_count": 1}, "massive": {"_count": 1}, "growing": {"_count": 1}, "wide": {"_count": 1}, "couple": {"_count": 1}, "Portkey": {"_count": 1}, "finger": {"_count": 1}, "flattish": {"_count": 1}}, "Miss": {"_count": 1, "Fleur": {"_count": 1}}, "far": {"_count": 1, "away": {"_count": 1}}, "next": {"_count": 2, "moment": {"_count": 1}, "week": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "presumably": {"_count": 1, "at": {"_count": 1}}, "then": {"_count": 2, "gone": {"_count": 1}, "gather": {"_count": 1}}, "my": {"_count": 1, "parents": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 1}, "replied": {"_count": 1}, "indicated": {"_count": 1}}, "had": {"_count": 6, "the": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "been": {"_count": 2}, "Tom": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "fit": {"_count": 1, "for": {"_count": 1}}, "\u25a0": {"_count": 1, "I": {"_count": 1}}, "forever": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 7, "says": {"_count": 1}, "hed": {"_count": 1}, "looks": {"_count": 1}, "was": {"_count": 1}, "meant": {"_count": 1}, "they": {"_count": 1}, "Bill": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "we": {"_count": 2, "generally": {"_count": 1}, "havent": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Dobby": {"_count": 1, "had": {"_count": 1}}, "weve": {"_count": 1, "found": {"_count": 1}}, "ruddy": {"_count": 1, "dementors": {"_count": 1}}, "now": {"_count": 1, "seemed": {"_count": 1}}, "all": {"_count": 1, "righ": {"_count": 1}}, "just": {"_count": 1, "up": {"_count": 1}}, "worth": {"_count": 1, "staying": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "upon": {"_count": 1, "probation": {"_count": 1}}, "or": {"_count": 2, "else": {"_count": 1}, "other": {"_count": 1}}, "apart": {"_count": 1, "in": {"_count": 1}}, "until": {"_count": 1, "that": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "sitting": {"_count": 1, "sidesaddle": {"_count": 1}}, "became": {"_count": 1, "so": {"_count": 1}}, "high": {"_count": 1, "as": {"_count": 1}}, "before": {"_count": 1, "them": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "attacking": {"_count": 1, "people": {"_count": 1}}, "by": {"_count": 2, "Harrys": {"_count": 1}, "which": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "are": {"_count": 1, "on": {"_count": 1}}, "yourselves": {"_count": 1, "now": {"_count": 1}}, "held": {"_count": 2, "for": {"_count": 1}, "answers": {"_count": 1}}, "myself": {"_count": 1, "and": {"_count": 1}}, "heavily": {"_count": 1, "supervised": {"_count": 1}}, "Ill": {"_count": 1, "look": {"_count": 1}}, "your": {"_count": 1, "hand": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 2, "todays": {"_count": 1}, "going": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}, "Mollys": {"_count": 1, "Auntie": {"_count": 1}}, "looking": {"_count": 1, "so": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "moments": {"_count": 1, "after": {"_count": 1}}, "fell": {"_count": 1, "into": {"_count": 1}}, "laid": {"_count": 1, "themselves": {"_count": 1}}, "why": {"_count": 1, "are": {"_count": 1}}, "Vol": {"_count": 1, "Oi": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "each": {"_count": 1, "night": {"_count": 1}}, "together": {"_count": 1, "for": {"_count": 1}}, "lighting": {"_count": 1, "candles": {"_count": 1}}, "his": {"_count": 2, "hands": {"_count": 1}, "palm": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "without": {"_count": 1, "being": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "once": {"_count": 1, "he": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "their": {"_count": 1, "feet": {"_count": 1}}, "after": {"_count": 1, "he": {"_count": 1}}, "has": {"_count": 1, "never": {"_count": 1}}, "every": {"_count": 1, "protection": {"_count": 1}}, "perhaps": {"_count": 1, "as": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "Fred": {"_count": 1, "might": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "yourself": {"_count": 1, "Severus": {"_count": 1}}, "There": {"_count": 1, "would": {"_count": 1}}, "scene": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}}, "whisper": {"_count": 94, "a": {"_count": 1, "whisper": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "Its": {"_count": 1, "bewitched": {"_count": 1}}, "but": {"_count": 2, "they": {"_count": 1}, "at": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "to": {"_count": 5, "Harry": {"_count": 2}, "Ron": {"_count": 2}, "me": {"_count": 1}}, "as": {"_count": 7, "if": {"_count": 1}, "Professor": {"_count": 1}, "he": {"_count": 2}, "they": {"_count": 2}, "Harry": {"_count": 1}}, "the": {"_count": 1, "Bloody": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 35, ".": {"_count": 35}}, "and": {"_count": 3, "said": {"_count": 1}, "straightening": {"_count": 1}, "the": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 1}, "low": {"_count": 1}, "we": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "partly": {"_count": 1, "Potter": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "Ron": {"_count": 1, "however": {"_count": 1}}, "that": {"_count": 3, "was": {"_count": 1}, "did": {"_count": 1}, "nevertheless": {"_count": 1}}, "when": {"_count": 1, "two": {"_count": 1}}, "urgently": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 4, "your": {"_count": 1}, "trees": {"_count": 1}, "the": {"_count": 1}, "Severus": {"_count": 1}}, "swept": {"_count": 1, "the": {"_count": 1}}, "Give": {"_count": 1, "him": {"_count": 1}}, "what": {"_count": 1, "Malfoy": {"_count": 1}}, "Some": {"_count": 2, "people": {"_count": 1}, "other": {"_count": 1}}, "loud": {"_count": 1, "enough": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "How": {"_count": 1, "has": {"_count": 1}}, "barely": {"_count": 1, "audible": {"_count": 1}}, "behind": {"_count": 1, "my": {"_count": 1}}, "indicating": {"_count": 1, "Nevilles": {"_count": 1}}, "something": {"_count": 1, "both": {"_count": 1}}, "after": {"_count": 1, "threequarters": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "wondering": {"_count": 1, "wondering": {"_count": 1}}, "close": {"_count": 1, "at": {"_count": 1}}, "was": {"_count": 2, "barely": {"_count": 1}, "for": {"_count": 1}}}, "carrying": {"_count": 157, "two": {"_count": 1, "cups": {"_count": 1}}, "a": {"_count": 48, "long": {"_count": 2}, "large": {"_count": 11}, "very": {"_count": 1}, "stained": {"_count": 1}, "parcel": {"_count": 1}, "letter": {"_count": 2}, "gun": {"_count": 1}, "goblet": {"_count": 1}, "Hurling": {"_count": 1}, "minute": {"_count": 1}, "vast": {"_count": 1}, "tiny": {"_count": 1}, "sheaf": {"_count": 1}, "great": {"_count": 1}, "clutch": {"_count": 1}, "bloodstained": {"_count": 1}, "smoking": {"_count": 1}, "couple": {"_count": 1}, "pile": {"_count": 2}, "squirming": {"_count": 1}, "stool": {"_count": 1}, "stack": {"_count": 1}, "Galleon": {"_count": 1}, "blackened": {"_count": 1}, "wand": {"_count": 2}, "tartan": {"_count": 1}, "heavily": {"_count": 1}, "sack": {"_count": 1}, "necklace": {"_count": 1}, "heavy": {"_count": 1}, "tray": {"_count": 1}, "bottle": {"_count": 1}, "Bedazzling": {"_count": 1}, "body": {"_count": 1}}, "Hagrids": {"_count": 1, "bag": {"_count": 1}}, "him": {"_count": 5, "slowly": {"_count": 1}, "forward": {"_count": 1}, "": {"_count": 1}, "through": {"_count": 1}, "said": {"_count": 1}}, "an": {"_count": 10, "illegal": {"_count": 1}, "owl": {"_count": 2}, "enormous": {"_count": 1}, "ancient": {"_count": 1}, "Irish": {"_count": 1}, "armful": {"_count": 4}}, "his": {"_count": 7, "large": {"_count": 1}, "dinner": {"_count": 1}, "wife": {"_count": 1}, "crossbow": {"_count": 1}, "broomstick": {"_count": 1}, "trunk": {"_count": 1}, "empty": {"_count": 1}}, "tumbled": {"_count": 1, "out": {"_count": 1}}, "messages": {"_count": 1, "to": {"_count": 1}}, "broomsticks": {"_count": 1, "and": {"_count": 1}}, "Ginnys": {"_count": 1, "trunk": {"_count": 1}}, "one": {"_count": 1, "end": {"_count": 1}}, "its": {"_count": 1, "feet": {"_count": 1}}, "their": {"_count": 3, "wands": {"_count": 1}, "trunks": {"_count": 2}}, "presents": {"_count": 1, "for": {"_count": 1}}, "harps": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "made": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "Harrys": {"_count": 4, "trunk": {"_count": 2}, "school": {"_count": 1}, "interview": {"_count": 1}}, "all": {"_count": 2, "these": {"_count": 1}, "the": {"_count": 1}}, "three": {"_count": 1, "foaming": {"_count": 1}}, "Crookshanks": {"_count": 1, "who": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 7, "mail": {"_count": 1}, "largest": {"_count": 1}, "morning": {"_count": 1}, "large": {"_count": 1}, "firebreathing": {"_count": 1}, "Quaffle": {"_count": 1}, "little": {"_count": 1}}, "them": {"_count": 3, "around": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "trays": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 4, "to": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}, "over": {"_count": 1}}, "what": {"_count": 3, "looked": {"_count": 2}, "appeared": {"_count": 1}}, "in": {"_count": 4, "an": {"_count": 1}, "a": {"_count": 1}, "there": {"_count": 1}, "its": {"_count": 1}}, "something": {"_count": 2, "contagious": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 5, "around": {"_count": 1}, "thing": {"_count": 1}, "down": {"_count": 2}, "days": {"_count": 1}}, "spears": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "merpeople": {"_count": 1, "whod": {"_count": 1}}, "some": {"_count": 3, "newspapers": {"_count": 1}, "kind": {"_count": 1}, "deadly": {"_count": 1}}, "her": {"_count": 1, "morning": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}, "letters": {"_count": 1, "from": {"_count": 1}}, "Dudley": {"_count": 1, "home": {"_count": 1}}, "briefcases": {"_count": 1, "": {"_count": 1}}, "tottering": {"_count": 1, "piles": {"_count": 1}}, "voice": {"_count": 2, "that": {"_count": 2}}, "whisper": {"_count": 3, "Some": {"_count": 1}, "": {"_count": 2}}, "large": {"_count": 1, "paper": {"_count": 1}}, "Hedwig": {"_count": 1, "who": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "clearly": {"_count": 1, "to": {"_count": 1}}, "details": {"_count": 1, "of": {"_count": 1}}, "cloaks": {"_count": 1, "scarves": {"_count": 1}}, "Fang": {"_count": 1, "on": {"_count": 1}}, "nothing": {"_count": 1, "except": {"_count": 1}}, "our": {"_count": 1, "school": {"_count": 1}}, "Bill": {"_count": 1, "pulled": {"_count": 1}}, "Griphook": {"_count": 1, "piggyback": {"_count": 1}}, "out": {"_count": 1, "his": {"_count": 1}}, "or": {"_count": 1, "dragging": {"_count": 1}}}, "two": {"_count": 916, "cups": {"_count": 2, "of": {"_count": 2}}, "owls": {"_count": 2, "swooped": {"_count": 1}, "and": {"_count": 1}}, "tiny": {"_count": 1, "pinpricks": {"_count": 1}}, "lemon": {"_count": 1, "drops": {"_count": 1}}, "people": {"_count": 15, "who": {"_count": 3}, "grappling": {"_count": 1}, "appeared": {"_count": 1}, "at": {"_count": 1}, "next": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 2}, "had": {"_count": 1}, "that": {"_count": 1}, "less": {"_count": 1}, "": {"_count": 1}, "arriving": {"_count": 1}}, "": {"_count": 65, ".": {"_count": 58}, "?": {"_count": 3}, "!": {"_count": 4}}, "less": {"_count": 1, "than": {"_count": 1}}, "presents": {"_count": 1, "while": {"_count": 1}}, "streets": {"_count": 1, "away": {"_count": 1}}, "of": {"_count": 55, "his": {"_count": 4}, "us": {"_count": 3}, "them": {"_count": 23}, "the": {"_count": 9}, "you": {"_count": 4}, "Uncle": {"_count": 1}, "its": {"_count": 2}, "my": {"_count": 1}, "our": {"_count": 2}, "her": {"_count": 2}, "whom": {"_count": 2}, "Hogwarts": {"_count": 1}, "which": {"_count": 1}}, "dozen": {"_count": 1, "eggs": {"_count": 1}}, "rooms": {"_count": 1, "": {"_count": 1}}, "minutes": {"_count": 6, "to": {"_count": 2}, "later": {"_count": 1}, "conversation": {"_count": 1}, "before": {"_count": 1}, "Ron": {"_count": 1}}, "seats": {"_count": 5, "and": {"_count": 1}, "away": {"_count": 1}, "along": {"_count": 1}, "with": {"_count": 1}, "that": {"_count": 1}}, "across": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 12, "ice": {"_count": 1}, "gulps": {"_count": 1}, "thumps": {"_count": 1}, "disheveled": {"_count": 1}, "mugs": {"_count": 1}, "slits": {"_count": 1}, "bubbles": {"_count": 1}, "purple": {"_count": 1}, "broomshaped": {"_count": 1}, "glasses": {"_count": 1}, "tears": {"_count": 1}, "ugly": {"_count": 1}}, "Ollivander": {"_count": 1, "wands": {"_count": 1}}, "unicorns": {"_count": 1, "dragons": {"_count": 1}}, "platforms": {"_count": 1, "a": {"_count": 1}}, "boys": {"_count": 9, "gawked": {"_count": 1}, "": {"_count": 3}, "fought": {"_count": 1}, "felt": {"_count": 1}, "in": {"_count": 1}, "aside": {"_count": 1}, "looked": {"_count": 1}}, "compartments": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "had": {"_count": 4, "better": {"_count": 2}, "found": {"_count": 1}, "a": {"_count": 1}}, "locked": {"_count": 1, "doors": {"_count": 1}}, "seconds": {"_count": 3, "later": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "points": {"_count": 1, "for": {"_count": 1}}, "But": {"_count": 1, "Neville": {"_count": 1}}, "weeks": {"_count": 18, "": {"_count": 3}, "after": {"_count": 3}, "and": {"_count": 1}, "she": {"_count": 1}, "with": {"_count": 1}, "earlier": {"_count": 1}, "ago": {"_count": 3}, "beforehand": {"_count": 1}, "a": {"_count": 1}, "till": {"_count": 1}, "persisted": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 5, "Professor": {"_count": 1}, "Wood": {"_count": 1}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}, "Twycross": {"_count": 1}}, "inches": {"_count": 4, "long": {"_count": 1}, "come": {"_count": 1}, "when": {"_count": 1}, "of": {"_count": 1}}, "are": {"_count": 8, "the": {"_count": 1}, "wine": {"_count": 1}, "going": {"_count": 1}, "so": {"_count": 1}, "allowed": {"_count": 1}, "clearly": {"_count": 1}, "": {"_count": 2}}, "identical": {"_count": 1, "balls": {"_count": 1}}, "Beaters": {"_count": 3, "on": {"_count": 2}, "who": {"_count": 1}}, "months": {"_count": 13, "": {"_count": 1}, "with": {"_count": 1}, "there": {"_count": 1}, "ago": {"_count": 4}, "of": {"_count": 1}, "and": {"_count": 1}, "reading": {"_count": 1}, "worth": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}}, "floors": {"_count": 3, "up": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "teams": {"_count": 2, "her": {"_count": 1}, "and": {"_count": 1}}, "Bludgers": {"_count": 1, "two": {"_count": 1}}, "Weasleys": {"_count": 3, "and": {"_count": 1}, "Longbottom": {"_count": 1}, "were": {"_count": 1}}, "clawed": {"_count": 1, "feet": {"_count": 1}}, "because": {"_count": 2, "Quidditch": {"_count": 1}, "theyve": {"_count": 1}}, "about": {"_count": 1, "Snape": {"_count": 1}}, "read": {"_count": 1, "": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "words": {"_count": 4, "Its": {"_count": 1}, "together": {"_count": 2}, "to": {"_count": 1}}, "during": {"_count": 1, "morning": {"_count": 1}}, "agreed": {"_count": 1, "with": {"_count": 1}}, "Quidditch": {"_count": 1, "matches": {"_count": 1}}, "parties": {"_count": 1, "an": {"_count": 1}}, "wait": {"_count": 1, "here": {"_count": 1}}, "were": {"_count": 5, "makin": {"_count": 1}, "all": {"_count": 1}, "thinking": {"_count": 2}, "awake": {"_count": 1}}, "to": {"_count": 7, "pass": {"_count": 1}, "reveal": {"_count": 1}, "an": {"_count": 1}, "one": {"_count": 2}, "four": {"_count": 1}, "the": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "say": {"_count": 1, "is": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 2}}, "followed": {"_count": 1, "him": {"_count": 1}}, "squinted": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 1, "hand": {"_count": 1}}, "squares": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 8, "yelled": {"_count": 1}, "didnt": {"_count": 1}, "said": {"_count": 2}, "may": {"_count": 1}, "pointed": {"_count": 1}, "turned": {"_count": 1}, "remained": {"_count": 1}}, "things": {"_count": 3, "most": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 1}}, "slices": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 2}, "went": {"_count": 1}}, "more": {"_count": 18, "flights": {"_count": 1}, "towering": {"_count": 1}, "figures": {"_count": 1}, "girls": {"_count": 1}, "grindylows": {"_count": 1}, "questions": {"_count": 1}, "bottles": {"_count": 1}, "detentions": {"_count": 1}, "goals": {"_count": 1}, "Ds": {"_count": 1}, "Death": {"_count": 2}, "doors": {"_count": 1}, "things": {"_count": 1}, "memories": {"_count": 1}, "tiny": {"_count": 1}, "books": {"_count": 1}, "floors": {"_count": 1}}, "giant": {"_count": 1, "black": {"_count": 1}}, "doors": {"_count": 2, "down": {"_count": 1}, "": {"_count": 1}}, "again": {"_count": 2, "Are": {"_count": 1}, "": {"_count": 1}}, "come": {"_count": 1, "right": {"_count": 1}}, "the": {"_count": 5, "tip": {"_count": 1}, "same": {"_count": 1}, "door": {"_count": 1}, "headmaster": {"_count": 1}, "photograph": {"_count": 1}}, "sharp": {"_count": 1, "clunks": {"_count": 1}}, "didnt": {"_count": 2, "arrive": {"_count": 1}, "we": {"_count": 1}}, "silver": {"_count": 1, "goblets": {"_count": 1}}, "pixies": {"_count": 1, "at": {"_count": 1}}, "very": {"_count": 3, "small": {"_count": 1}, "nasty": {"_count": 1}, "battered": {"_count": 1}}, "feet": {"_count": 5, "away": {"_count": 2}, "deep": {"_count": 1}, "of": {"_count": 1}, "off": {"_count": 1}}, "windows": {"_count": 2, "shimmering": {"_count": 1}, "out": {"_count": 1}}, "flying": {"_count": 1, "around": {"_count": 1}}, "three": {"_count": 11, "Both": {"_count": 1}, "Pinching": {"_count": 1}, "now": {"_count": 1}, "He": {"_count": 1}, "The": {"_count": 1}, "Legilimensl": {"_count": 1}, "LegilimensV": {"_count": 1}, "the": {"_count": 1}, "four": {"_count": 1}, "But": {"_count": 1}, "They": {"_count": 1}}, "His": {"_count": 1, "spell": {"_count": 1}}, "one": {"_count": 3, "go": {"_count": 1}, "Harry": {"_count": 1}, "He": {"_count": 1}}, "plump": {"_count": 2, "chocolate": {"_count": 1}, "ones": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "hurry": {"_count": 2, "up": {"_count": 1}, "yeh": {"_count": 1}}, "been": {"_count": 2, "pigging": {"_count": 1}, "doing": {"_count": 1}}, "paces": {"_count": 1, "": {"_count": 1}}, "letters": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "Gryffindors": {"_count": 1, "down": {"_count": 1}}, "doin": {"_count": 1, "here": {"_count": 1}}, "missing": {"_count": 2, "from": {"_count": 1}, "fingernails": {"_count": 1}}, "dormitory": {"_count": 1, "doors": {"_count": 1}}, "clutching": {"_count": 1, "him": {"_count": 1}}, "tragically": {"_count": 1, "lost": {"_count": 1}}, "entwined": {"_count": 1, "serpents": {"_count": 1}}, "enormous": {"_count": 4, "gray": {"_count": 1}, "people": {"_count": 1}, "bulging": {"_count": 1}, "piles": {"_count": 1}}, "Parselmouths": {"_count": 1, "to": {"_count": 1}}, "hundred": {"_count": 15, "points": {"_count": 3}, "copies": {"_count": 1}, "owls": {"_count": 1}, "steps": {"_count": 1}, "people": {"_count": 1}, "Portkeys": {"_count": 1}, "": {"_count": 1}, "yards": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 3}, "thousand": {"_count": 1}}, "and": {"_count": 17, "handing": {"_count": 1}, "pulled": {"_count": 1}, "a": {"_count": 4}, "you": {"_count": 1}, "two": {"_count": 2}, "ordering": {"_count": 1}, "all": {"_count": 1}, "go": {"_count": 1}, "connected": {"_count": 1}, "to": {"_count": 1}, "departed": {"_count": 1}, "their": {"_count": 1}, "listened": {"_count": 1}}, "years": {"_count": 23, "at": {"_count": 1}, "": {"_count": 1}, "ago": {"_count": 11}, "old": {"_count": 1}, "hasnt": {"_count": 1}, "so": {"_count": 1}, "of": {"_count": 1}, "previously": {"_count": 1}, "later": {"_count": 2}, "and": {"_count": 1}, "before": {"_count": 2}}, "birthdays": {"_count": 1, "and": {"_count": 1}}, "nights": {"_count": 4, "now": {"_count": 1}, "ago": {"_count": 1}, "of": {"_count": 1}, "there": {"_count": 1}}, "rolls": {"_count": 4, "of": {"_count": 4}}, "oclock": {"_count": 6, "in": {"_count": 2}, "": {"_count": 1}, "on": {"_count": 1}, "tomorrow": {"_count": 1}, "and": {"_count": 1}}, "suddenly": {"_count": 1, "sparkled": {"_count": 1}}, "new": {"_count": 4, "subjects": {"_count": 1}, "teachers": {"_count": 1}, "ones": {"_count": 1}, "Flutterby": {"_count": 1}}, "prefects": {"_count": 1, "": {"_count": 1}}, "Ministry": {"_count": 1, "cars": {"_count": 1}}, "oldfashioned": {"_count": 1, "dark": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "loud": {"_count": 3, "squeals": {"_count": 1}, "cracks": {"_count": 1}, "sickening": {"_count": 1}}, "heavy": {"_count": 1, "black": {"_count": 1}}, "unbeatable": {"_count": 1, "Beaters": {"_count": 1}}, "then": {"_count": 5, "said": {"_count": 2}, "with": {"_count": 1}, "muttered": {"_count": 1}, "Ron": {"_count": 1}}, "laughing": {"_count": 1, "about": {"_count": 1}}, "extremely": {"_count": 1, "nervouslooking": {"_count": 1}}, "hours": {"_count": 9, "later": {"_count": 3}, "on": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}, "just": {"_count": 1}, "I": {"_count": 1}, "many": {"_count": 1}}, "bottles": {"_count": 2, "out": {"_count": 1}, "to": {"_count": 1}}, "pages": {"_count": 1, "to": {"_count": 1}}, "beds": {"_count": 7, "on": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 1}}, "not": {"_count": 1, "talkin": {"_count": 1}}, "doing": {"_count": 4, "here": {"_count": 2}, "": {"_count": 2}}, "exams": {"_count": 1, "at": {"_count": 1}}, "wizards": {"_count": 6, "came": {"_count": 1}, "and": {"_count": 1}, "stepped": {"_count": 1}, "who": {"_count": 1}, "both": {"_count": 1}, "were": {"_count": 1}}, "pairs": {"_count": 2, "of": {"_count": 2}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "THREE": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 3, "matters": {"_count": 1}, "witches": {"_count": 1}, "crystal": {"_count": 1}}, "thirteenyearold": {"_count": 1, "wizards": {"_count": 1}}, "places": {"_count": 1, "at": {"_count": 1}}, "sorts": {"_count": 1, "of": {"_count": 1}}, "days": {"_count": 13, "with": {"_count": 1}, "passed": {"_count": 1}, "Harry": {"_count": 1}, "left": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}, "after": {"_count": 3}, "of": {"_count": 1}, "before": {"_count": 1}, "running": {"_count": 1}}, "men": {"_count": 8, "sat": {"_count": 1}, "but": {"_count": 1}, "a": {"_count": 1}, "appeared": {"_count": 1}, "halted": {"_count": 1}, "took": {"_count": 1}, "trying": {"_count": 1}, "from": {"_count": 1}}, "best": {"_count": 3, "friends": {"_count": 3}}, "redhaired": {"_count": 1, "people": {"_count": 1}}, "eldest": {"_count": 1, "Weasley": {"_count": 1}}, "grinning": {"_count": 1, "at": {"_count": 1}}, "girls": {"_count": 8, "appeared": {"_count": 1}, "and": {"_count": 1}, "were": {"_count": 1}, "pointing": {"_count": 1}, "both": {"_count": 1}, "I": {"_count": 1}, "swinging": {"_count": 1}, "stood": {"_count": 1}}, "battered": {"_count": 1, "old": {"_count": 1}}, "tables": {"_count": 2, "were": {"_count": 1}, "away": {"_count": 1}}, "tents": {"_count": 1, "booked": {"_count": 1}}, "try": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 2, "crouched": {"_count": 1}, "passed": {"_count": 1}}, "rows": {"_count": 5, "here": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 2}, "behind": {"_count": 1}}, "smaller": {"_count": 1, "comets": {"_count": 1}}, "balls": {"_count": 1, "of": {"_count": 1}}, "black": {"_count": 2, "Bludgers": {"_count": 1}, "eyes": {"_count": 1}}, "Seekers": {"_count": 1, "Krum": {"_count": 1}}, "short": {"_count": 1, "blasts": {"_count": 1}}, "panting": {"_count": 1, "wizards": {"_count": 1}}, "wands": {"_count": 9, "Harry": {"_count": 1}, "met": {"_count": 1}, "neither": {"_count": 1}, "the": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 2}, "in": {"_count": 1}}, "up": {"_count": 3, "to": {"_count": 2}, "the": {"_count": 1}}, "piles": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "Neptunes": {"_count": 2, "here": {"_count": 1}, "appear": {"_count": 1}}, "join": {"_count": 1, "three": {"_count": 1}}, "Sickles": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "TRIWIZARD": {"_count": 1, "TOURNAMENT": {"_count": 1}}, "got": {"_count": 2, "any": {"_count": 1}, "the": {"_count": 1}}, "crossed": {"_count": 1, "golden": {"_count": 1}}, "on": {"_count": 3, "either": {"_count": 1}, "our": {"_count": 1}, "Monday": {"_count": 1}}, "extra": {"_count": 1, "people": {"_count": 1}}, "remaining": {"_count": 3, "empty": {"_count": 1}, "Death": {"_count": 2}}, "quivering": {"_count": 1, "with": {"_count": 1}}, "bunches": {"_count": 1, "perhaps": {"_count": 1}}, "champions": {"_count": 3, "or": {"_count": 1}, "": {"_count": 2}}, "bites": {"_count": 1, "at": {"_count": 1}}, "six": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 1, "its": {"_count": 1}}, "whole": {"_count": 2, "years": {"_count": 1}, "weeks": {"_count": 1}}, "house": {"_count": 1, "elves": {"_count": 1}}, "cards": {"_count": 1, "on": {"_count": 1}}, "keep": {"_count": 1, "writing": {"_count": 1}}, "at": {"_count": 6, "dinner": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "once": {"_count": 2}}, "tasks": {"_count": 1, "to": {"_count": 1}}, "butterbeers": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 2, "you": {"_count": 1}, "tell": {"_count": 1}}, "together": {"_count": 1, "as": {"_count": 1}}, "skrewts": {"_count": 1, "left": {"_count": 1}}, "unicorn": {"_count": 1, "foals": {"_count": 1}}, "pints": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "a": {"_count": 1}, "there": {"_count": 1}}, "The": {"_count": 1, "first": {"_count": 1}}, "school": {"_count": 1, "screech": {"_count": 1}}, "ever": {"_count": 1, "going": {"_count": 1}}, "voices": {"_count": 1, "arguing": {"_count": 1}}, "counseled": {"_count": 1, "Moody": {"_count": 1}}, "dark": {"_count": 1, "shapes": {"_count": 1}}, "possibilities": {"_count": 1, "Alastor": {"_count": 1}}, "dementors": {"_count": 6, "": {"_count": 1}, "turned": {"_count": 1}, "singlehandedly": {"_count": 1}, "down": {"_count": 1}, "attacked": {"_count": 1}, "were": {"_count": 1}}, "normal": {"_count": 1, "ones": {"_count": 1}}, "choices": {"_count": 1, "try": {"_count": 1}}, "paths": {"_count": 1, "and": {"_count": 1}}, "spells": {"_count": 1, "combined": {"_count": 1}}, "largest": {"_count": 1, "hooded": {"_count": 1}}, "shadowy": {"_count": 1, "figures": {"_count": 1}}, "stunned": {"_count": 1, "Death": {"_count": 1}}, "stories": {"_count": 1, "make": {"_count": 1}}, "bucketsize": {"_count": 1, "cups": {"_count": 1}}, "made": {"_count": 1, "up": {"_count": 1}}, "shouldnt": {"_count": 1, "be": {"_count": 1}}, "Galleons": {"_count": 1, "to": {"_count": 1}}, "eyes": {"_count": 1, "streaming": {"_count": 1}}, "next": {"_count": 1, "moment": {"_count": 1}}, "A": {"_count": 1, "resounding": {"_count": 1}}, "lives": {"_count": 1, "had": {"_count": 1}}, "lumps": {"_count": 1, "on": {"_count": 1}}, "get": {"_count": 1, "to": {"_count": 1}}, "passed": {"_count": 1, "your": {"_count": 1}}, "just": {"_count": 1, "Apparated": {"_count": 1}}, "doxies": {"_count": 1, "at": {"_count": 1}}, "names": {"_count": 1, "Bellatrix": {"_count": 1}}, "or": {"_count": 4, "there": {"_count": 1}, "three": {"_count": 2}, "a": {"_count": 1}}, "stops": {"_count": 1, "to": {"_count": 1}}, "Department": {"_count": 2, "of": {"_count": 2}}, "illustrations": {"_count": 1, "of": {"_count": 1}}, "last": {"_count": 2, "week": {"_count": 1}, "memories": {"_count": 1}}, "steps": {"_count": 6, "at": {"_count": 4}, "toward": {"_count": 2}}, "elderly": {"_count": 1, "witches": {"_count": 1}}, "deep": {"_count": 1, "breaths": {"_count": 1}}, "chintz": {"_count": 1, "armchairs": {"_count": 1}}, "pieces": {"_count": 1, "of": {"_count": 1}}, "flights": {"_count": 2, "of": {"_count": 2}}, "fifthyear": {"_count": 1, "prefects": {"_count": 1}}, "changes": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "well": {"_count": 1}}, "drops": {"_count": 1, "of": {"_count": 1}}, "misshapen": {"_count": 1, "woolly": {"_count": 1}}, "twiglike": {"_count": 1, "fingers": {"_count": 1}}, "long": {"_count": 1, "deep": {"_count": 1}}, "goodbye": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "Laburnum": {"_count": 1, "Gardens": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "completely": {"_count": 1, "unprotected": {"_count": 1}}, "\u2018Common": {"_count": 1, "Defensive": {"_count": 1}}, "sit": {"_count": 1, "there": {"_count": 1}}, "would": {"_count": 1, "want": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "siding": {"_count": 1}}, "Knuts": {"_count": 1, "Ron": {"_count": 1}}, "teachers": {"_count": 1, "he": {"_count": 1}}, "lines": {"_count": 2, "of": {"_count": 1}, "about": {"_count": 1}}, "advises": {"_count": 1, "Harry": {"_count": 1}}, "blokes": {"_count": 1, "called": {"_count": 1}}, "breathless": {"_count": 1, "desperate": {"_count": 1}}, "He": {"_count": 3, "insulted": {"_count": 1}, "seemed": {"_count": 1}, "held": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "playing": {"_count": 1}}, "jostling": {"_count": 1, "and": {"_count": 1}}, "holdin": {"_count": 1, "me": {"_count": 1}}, "gnarled": {"_count": 1, "yew": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "snakes": {"_count": 1, "both": {"_count": 1}}, "Muggles": {"_count": 1, "have": {"_count": 1}}, "visitors": {"_count": 1, "were": {"_count": 1}}, "later": {"_count": 2, "to": {"_count": 1}, "said": {"_count": 1}}, "old": {"_count": 1, "school": {"_count": 1}}, "chairs": {"_count": 1, "at": {"_count": 1}}, "breakouts": {"_count": 1, "are": {"_count": 1}}, "fresh": {"_count": 1, "cuts": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "they": {"_count": 1}}, "minds": {"_count": 1, "said": {"_count": 1}}, "especially": {"_count": 1, "when": {"_count": 1}}, "Harry": {"_count": 5, "did": {"_count": 2}, "tried": {"_count": 1}, "": {"_count": 1}, "thought": {"_count": 1}}, "wars": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "made": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "Aurors": {"_count": 1, "the": {"_count": 1}}, "Snapes": {"_count": 1, "office": {"_count": 1}}, "aisles": {"_count": 1, "and": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "really": {"_count": 1}}, "wavering": {"_count": 1, "beams": {"_count": 1}}, "ter": {"_count": 1, "help": {"_count": 1}}, "trees": {"_count": 3, "he": {"_count": 1}, "their": {"_count": 1}, "growing": {"_count": 1}}, "successive": {"_count": 1, "weeks": {"_count": 1}}, "massive": {"_count": 1, "swipes": {"_count": 1}}, "most": {"_count": 1, "wanted": {"_count": 1}}, "nifflers": {"_count": 1, "I": {"_count": 1}}, "wandless": {"_count": 1, "teenagers": {"_count": 1}}, "can": {"_count": 1, "go": {"_count": 1}}, "stay": {"_count": 3, "ahead": {"_count": 1}, "here": {"_count": 2}}, "thick": {"_count": 1, "tree": {"_count": 1}}, "humans": {"_count": 1, "in": {"_count": 1}}, "thestrals": {"_count": 1, "watching": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "must": {"_count": 1, "really": {"_count": 1}}, "four": {"_count": 1, "four": {"_count": 1}}, "figures": {"_count": 2, "that": {"_count": 1}, "grew": {"_count": 1}}, "Death": {"_count": 4, "Eaters": {"_count": 4}}, "left": {"_count": 3, "fighting": {"_count": 1}, "in": {"_count": 1}, "hed": {"_count": 1}}, "wizard": {"_count": 1, "boys": {"_count": 1}}, "Crabbe": {"_count": 1, "Goyle": {"_count": 1}}, "universes": {"_count": 1, "the": {"_count": 1}}, "sending": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 2, "art": {"_count": 1}, "apprehensive": {"_count": 1}}, "women": {"_count": 1, "were": {"_count": 1}}, "sisters": {"_count": 1, "": {"_count": 1}}, "spellbooks": {"_count": 1, "and": {"_count": 1}}, "apparently": {"_count": 1, "to": {"_count": 1}}, "lay": {"_count": 1, "off": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "bridesmaids": {"_count": 1, "Ginny": {"_count": 1}}, "grimfaced": {"_count": 1, "bearded": {"_count": 1}}, "scrolls": {"_count": 1, "of": {"_count": 1}}, "empty": {"_count": 1, "seats": {"_count": 1}}, "seventhyear": {"_count": 1, "boys": {"_count": 1}}, "translations": {"_count": 1, "and": {"_count": 1}}, "curtains": {"_count": 1, "of": {"_count": 1}}, "sets": {"_count": 1, "of": {"_count": 1}}, "arms": {"_count": 1, "": {"_count": 1}}, "steep": {"_count": 1, "hills": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "goals": {"_count": 1, "apiece": {"_count": 1}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "nodded": {"_count": 1, "it": {"_count": 1}}, "glasses": {"_count": 1, "that": {"_count": 1}}, "Dumbledores": {"_count": 1, "entered": {"_count": 1}}, "friends": {"_count": 2, "more": {"_count": 1}, "": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "members": {"_count": 2, "of": {"_count": 2}}, "guffawing": {"_count": 1, "witches": {"_count": 1}}, "elves": {"_count": 1, "apart": {"_count": 1}}, "leather": {"_count": 1, "boxes": {"_count": 1}}, "finely": {"_count": 1, "wrought": {"_count": 1}}, "fabulous": {"_count": 1, "trophies": {"_count": 1}}, "paragraphs": {"_count": 1, "on": {"_count": 1}}, "huge": {"_count": 1, "curved": {"_count": 1}}, "mugs": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "felt": {"_count": 1}}, "assuming": {"_count": 1, "again": {"_count": 1}}, "ways": {"_count": 1, "but": {"_count": 1}}, "centuries": {"_count": 1, "": {"_count": 1}}, "children": {"_count": 2, "from": {"_count": 1}, "dressed": {"_count": 1}}, "small": {"_count": 1, "children": {"_count": 1}}, "solid": {"_count": 1, "minutes": {"_count": 1}}, "brooms": {"_count": 1, "had": {"_count": 1}}, "bodies": {"_count": 1, "lying": {"_count": 1}}, "still": {"_count": 1, "cowering": {"_count": 1}}, "broomsticks": {"_count": 1, "up": {"_count": 1}}, "Voldemorts": {"_count": 1, "lipless": {"_count": 1}}, "such": {"_count": 1, "different": {"_count": 1}}, "extraordinary": {"_count": 1, "wizards": {"_count": 1}}, "fully": {"_count": 1, "grown": {"_count": 1}}, "that": {"_count": 1, "attacked": {"_count": 1}}, "cases": {"_count": 1, "skeletal": {"_count": 1}}, "conditions": {"_count": 1, "when": {"_count": 1}}, "keeping": {"_count": 1, "an": {"_count": 1}}, "jets": {"_count": 1, "of": {"_count": 1}}, "Killing": {"_count": 1, "Curses": {"_count": 1}}, "delicate": {"_count": 1, "tables": {"_count": 1}}, "strides": {"_count": 1, "and": {"_count": 1}}, "mightve": {"_count": 1, "killed": {"_count": 1}}, "families": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "newcomers": {"_count": 1, "marched": {"_count": 1}}, "faithful": {"_count": 1, "souls": {"_count": 1}}, "model": {"_count": 1, "phoenixes": {"_count": 1}}, "Ron": {"_count": 2, "said": {"_count": 1}, "broke": {"_count": 1}}, "cappuccinos": {"_count": 1, "As": {"_count": 1}}, "workmen": {"_count": 2, "who": {"_count": 1}, "made": {"_count": 1}}, "gaped": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "thundering": {"_count": 1, "along": {"_count": 1}}, "low": {"_count": 1, "bows": {"_count": 1}}, "cloaked": {"_count": 1, "men": {"_count": 1}}, "before": {"_count": 2, "he": {"_count": 1}, "Xenophilius": {"_count": 1}}, "brothers": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "houses": {"_count": 1, "": {"_count": 1}}, "Unspeakables": {"_count": 1, "complaining": {"_count": 1}}, "find": {"_count": 1, "Umbridge": {"_count": 1}}, "youngest": {"_count": 1, "at": {"_count": 1}}, "teenage": {"_count": 1, "boys": {"_count": 1}}, "a": {"_count": 1, "soakingwet": {"_count": 1}}, "lifts": {"_count": 1, "": {"_count": 1}}, "showed": {"_count": 1, "nothing": {"_count": 1}}, "speakers": {"_count": 1, "one": {"_count": 1}}, "fit": {"_count": 1, "in": {"_count": 1}}, "goblins": {"_count": 2, "roared": {"_count": 1}, "were": {"_count": 1}}, "carry": {"_count": 1, "on": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "young": {"_count": 2, "men": {"_count": 2}}, "oaks": {"_count": 1, "grew": {"_count": 1}}, "grotesque": {"_count": 1, "bubbles": {"_count": 1}}, "looking": {"_count": 1, "toward": {"_count": 1}}, "insisted": {"_count": 1, "on": {"_count": 1}}, "into": {"_count": 1, "action": {"_count": 1}}, "now": {"_count": 1, "mere": {"_count": 1}}, "prisoners": {"_count": 1, "": {"_count": 1}}, "Mudbloods": {"_count": 1, "thats": {"_count": 1}}, "wouldnt": {"_count": 1, "you": {"_count": 1}}, "halves": {"_count": 3, "of": {"_count": 3}}, "barely": {"_count": 1, "connected": {"_count": 1}}, "jugs": {"_count": 1, "of": {"_count": 1}}, "fingers": {"_count": 1, "and": {"_count": 1}}, "handles": {"_count": 1, "otherwise": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "witches": {"_count": 1, "there": {"_count": 1}}, "stone": {"_count": 1, "gargoyles": {"_count": 1}}, "back": {"_count": 1, "through": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "Snape": {"_count": 1, "raised": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "others": {"_count": 1, "": {"_count": 1}}, "Hallows": {"_count": 1, "at": {"_count": 1}}, "giants": {"_count": 1, "crashed": {"_count": 1}}, "fights": {"_count": 1, "Voldemort": {"_count": 1}}, "whose": {"_count": 1, "company": {"_count": 1}}, "headmasters": {"_count": 1, "of": {"_count": 1}}}, "cups": {"_count": 18, "of": {"_count": 4, "tea": {"_count": 3}, "potion": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 3, "swapped": {"_count": 1}, "saucers": {"_count": 1}, "shields": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "for": {"_count": 1, "Harry": {"_count": 1}}, "gleaming": {"_count": 1, "handles": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "lockets": {"_count": 1, "and": {"_count": 1}}, "rolling": {"_count": 1, "in": {"_count": 1}}, "small": {"_count": 1, "and": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}}, "tea": {"_count": 139, "": {"_count": 29, ".": {"_count": 22}, "?": {"_count": 7}}, "through": {"_count": 1, "pursed": {"_count": 1}}, "while": {"_count": 2, "he": {"_count": 1}, "Dobby": {"_count": 1}}, "could": {"_count": 1, "yeh": {"_count": 1}}, "then": {"_count": 2, "eh": {"_count": 1}, "said": {"_count": 1}}, "and": {"_count": 17, "wiped": {"_count": 1}, "offered": {"_count": 3}, "sighed": {"_count": 1}, "fruitcake": {"_count": 1}, "drool": {"_count": 1}, "crumpets": {"_count": 1}, "watched": {"_count": 1}, "whiskey": {"_count": 1}, "were": {"_count": 1}, "did": {"_count": 1}, "dragon": {"_count": 1}, "then": {"_count": 1}, "toast": {"_count": 1}, "Fred": {"_count": 1}, "sympathy": {"_count": 1}}, "with": {"_count": 7, "me": {"_count": 2}, "Hagrid": {"_count": 2}, "his": {"_count": 1}, "Moody": {"_count": 1}, "a": {"_count": 1}}, "cozy": {"_count": 7, "": {"_count": 4}, "for": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "back": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "set": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 8, "it": {"_count": 1}, "his": {"_count": 2}, "front": {"_count": 4}, "her": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "Time": {"_count": 1, "to": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "He": {"_count": 1, "hardly": {"_count": 1}}, "bags": {"_count": 1, "and": {"_count": 1}}, "Percy": {"_count": 1, "choked": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "wiped": {"_count": 1, "her": {"_count": 1}}, "said": {"_count": 2, "Fudge": {"_count": 1}, "Hermione": {"_count": 1}}, "youve": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "which": {"_count": 1}}, "shop": {"_count": 5, "": {"_count": 2}, "that": {"_count": 1}, "he": {"_count": 1}, "how": {"_count": 1}}, "leaves": {"_count": 8, "": {"_count": 3}, "and": {"_count": 2}, "away": {"_count": 1}, "Im": {"_count": 1}, "spell": {"_count": 1}}, "to": {"_count": 1, "drain": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "cart": {"_count": 1, "arrived": {"_count": 1}}, "Weatherby": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "gold": {"_count": 1}}, "towel": {"_count": 7, "draped": {"_count": 1}, "at": {"_count": 1}, "so": {"_count": 1}, "as": {"_count": 1}, "stamped": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}}, "into": {"_count": 2, "which": {"_count": 1}, "the": {"_count": 1}}, "today": {"_count": 1, "as": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "tray": {"_count": 2, "appeared": {"_count": 1}, "which": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "whenever": {"_count": 1, "she": {"_count": 1}}, "anywhere": {"_count": 1, "he": {"_count": 1}}, "trays": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "trailed": {"_count": 1, "away": {"_count": 1}}, "after": {"_count": 1, "your": {"_count": 1}}, "their": {"_count": 1, "letters": {"_count": 1}}, "party": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 1, "Dudleys": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "slice": {"_count": 1}}, "just": {"_count": 1, "us": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "trembling": {"_count": 1, "in": {"_count": 1}}, "next": {"_count": 1, "Friday": {"_count": 1}}}, "cleared": {"_count": 74, "his": {"_count": 32, "throat": {"_count": 31}, "desk": {"_count": 1}}, "Harry": {"_count": 2, "gasped": {"_count": 1}, "saw": {"_count": 1}}, "away": {"_count": 5, "the": {"_count": 2}, "promptly": {"_count": 1}, "his": {"_count": 1}, "Tom": {"_count": 1}}, "the": {"_count": 4, "matter": {"_count": 1}, "sky": {"_count": 1}, "rubbish": {"_count": 1}, "top": {"_count": 1}}, "somewhat": {"_count": 1, "than": {"_count": 1}}, "of": {"_count": 4, "trees": {"_count": 1}, "desks": {"_count": 1}, "all": {"_count": 2}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "my": {"_count": 1, "mind": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 2}}, "her": {"_count": 7, "throat": {"_count": 6}, "plate": {"_count": 1}}, "by": {"_count": 1, "this": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "continue": {"_count": 1}, "do": {"_count": 1}, "reveal": {"_count": 1}}, "a": {"_count": 1, "space": {"_count": 1}}, "as": {"_count": 1, "suddenly": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}}, "throat": {"_count": 131, "nervously": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 19, "made": {"_count": 1}, "said": {"_count": 4}, "then": {"_count": 1}, "the": {"_count": 1}, "continued": {"_count": 1}, "muttered": {"_count": 1}, "on": {"_count": 1}, "read": {"_count": 1}, "felt": {"_count": 1}, "quickly": {"_count": 1}, "tried": {"_count": 1}, "with": {"_count": 1}, "his": {"_count": 1}, "tore": {"_count": 1}, "raised": {"_count": 1}, "feel": {"_count": 1}}, "to": {"_count": 1, "let": {"_count": 1}}, "": {"_count": 50, ".": {"_count": 50}}, "for": {"_count": 1, "silence": {"_count": 1}}, "importantly": {"_count": 1, "and": {"_count": 1}}, "loudly": {"_count": 7, "and": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 3}}, "with": {"_count": 2, "a": {"_count": 1}, "shaking": {"_count": 1}}, "I": {"_count": 1, "then": {"_count": 1}}, "as": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "very": {"_count": 1, "dry": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}, "tight": {"_count": 1, "": {"_count": 1}}, "significantly": {"_count": 2, "and": {"_count": 2}}, "then": {"_count": 3, "gave": {"_count": 1}, "lowered": {"_count": 1}, "said": {"_count": 1}}, "No": {"_count": 1, "he": {"_count": 1}}, "wasnt": {"_count": 1, "working": {"_count": 1}}, "his": {"_count": 2, "feet": {"_count": 1}, "mouth": {"_count": 1}}, "muttered": {"_count": 1, "Sonorus": {"_count": 1}}, "he": {"_count": 1, "coughed": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "obstructed": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "constricted": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "high": {"_count": 1}}, "again": {"_count": 1, "Hem": {"_count": 1}}, "rendered": {"_count": 1, "him": {"_count": 1}}, "fussily": {"_count": 1, "before": {"_count": 1}}, "stand": {"_count": 1, "naked": {"_count": 1}}, "was": {"_count": 2, "painful": {"_count": 1}, "raw": {"_count": 1}}, "but": {"_count": 3, "resisted": {"_count": 1}, "Professor": {"_count": 1}, "it": {"_count": 1}}, "might": {"_count": 1, "tear": {"_count": 1}}, "gruffly": {"_count": 1, "looked": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "blistering": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 1, "moment": {"_count": 1}}, "gulped": {"_count": 1, "then": {"_count": 1}}, "went": {"_count": 1, "dry": {"_count": 1}}, "Petrificus": {"_count": 1, "Totalusl": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "dry": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "opened": {"_count": 1}, "saw": {"_count": 1}}, "constrict": {"_count": 1, "it": {"_count": 1}}, "Then": {"_count": 1, "with": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "completely": {"_count": 1}}}, "nervously": {"_count": 112, "": {"_count": 48, ".": {"_count": 48}}, "tried": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 1}, "its": {"_count": 1}, "a": {"_count": 1}}, "over": {"_count": 8, "his": {"_count": 5}, "her": {"_count": 1}, "their": {"_count": 2}}, "apart": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 10, "though": {"_count": 3}, "the": {"_count": 2}, "Draco": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 2}}, "at": {"_count": 9, "the": {"_count": 4}, "Lockhart": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 2}, "his": {"_count": 1}}, "suppressing": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "they": {"_count": 1}, "she": {"_count": 1}}, "while": {"_count": 1, "Dumbledore": {"_count": 1}}, "rereading": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "flattened": {"_count": 2, "his": {"_count": 2}}, "still": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 1}, "through": {"_count": 1}}, "for": {"_count": 2, "Professor": {"_count": 1}, "some": {"_count": 1}}, "around": {"_count": 2, "if": {"_count": 1}, "and": {"_count": 1}}, "but": {"_count": 1, "Moody": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "avoiding": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 1, "would": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "expectant": {"_count": 1, "as": {"_count": 1}}, "from": {"_count": 1, "foot": {"_count": 1}}, "consulting": {"_count": 1, "a": {"_count": 1}}, "clutching": {"_count": 1, "a": {"_count": 1}}, "apparently": {"_count": 1, "forgetting": {"_count": 1}}, "against": {"_count": 1, "their": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}}, "Er": {"_count": 188, "Petunia": {"_count": 1, "dear": {"_count": 1}}, "yes": {"_count": 11, "Harry": {"_count": 2}, "they": {"_count": 1}, "I": {"_count": 2}, "said": {"_count": 4}, "sorry": {"_count": 1}, "lets": {"_count": 1}}, "no": {"_count": 6, "said": {"_count": 3}, "thanks": {"_count": 1}, "its": {"_count": 1}, "they": {"_count": 1}}, "well": {"_count": 5, "Im": {"_count": 1}, "its": {"_count": 1}, "yes": {"_count": 1}, "": {"_count": 1}, "ghosts": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "I": {"_count": 6, "need": {"_count": 2}, "dont": {"_count": 3}, "don": {"_count": 1}}, "okay": {"_count": 2, "said": {"_count": 2}}, "all": {"_count": 1, "right": {"_count": 1}}, "have": {"_count": 1, "the": {"_count": 1}}, "hello": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 24, "Harry": {"_count": 18}, "Ron": {"_count": 4}, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "Professor": {"_count": 4, "Lockhart": {"_count": 1}, "": {"_count": 1}, "Im": {"_count": 1}, "Moody": {"_count": 1}}, "sorry": {"_count": 1, "to": {"_count": 1}}, "Ill": {"_count": 1, "just": {"_count": 1}}, "arent": {"_count": 1, "there": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 2, "truth": {"_count": 1}, "sixteenth": {"_count": 1}}, "because": {"_count": 1, "there": {"_count": 1}}, "What": {"_count": 1, "": {"_count": 1}}, "shall": {"_count": 1, "I": {"_count": 1}}, "how": {"_count": 2, "are": {"_count": 2}}, "Madam": {"_count": 1, "Hooch": {"_count": 1}}, "not": {"_count": 2, "now": {"_count": 1}, "tomorrow": {"_count": 1}}, "hang": {"_count": 1, "on": {"_count": 1}}, "are": {"_count": 3, "you": {"_count": 3}}, "Mr": {"_count": 1, "Black": {"_count": 1}}, "perhaps": {"_count": 1, "it": {"_count": 1}}, "Snape": {"_count": 1, "told": {"_count": 1}}, "stranger": {"_count": 1, "than": {"_count": 1}}, "why": {"_count": 5, "are": {"_count": 1}, "not": {"_count": 1}, "was": {"_count": 1}, "do": {"_count": 1}, "": {"_count": 1}}, "splinched": {"_count": 1, "": {"_count": 1}}, "yeah": {"_count": 7, "said": {"_count": 2}, "all": {"_count": 1}, "why": {"_count": 1}, "okay": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}}, "is": {"_count": 2, "it": {"_count": 1}, "this": {"_count": 1}}, "what": {"_count": 3, "": {"_count": 2}, "are": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "": {"_count": 39, ".": {"_count": 39}}, "good": {"_count": 3, "said": {"_count": 1}, "to": {"_count": 1}, "morning": {"_count": 1}}, "but": {"_count": 1, "maybe": {"_count": 1}}, "eau": {"_count": 1, "de": {"_count": 1}}, "yeh": {"_count": 1, "might": {"_count": 1}}, "Cho": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "right": {"_count": 4, "said": {"_count": 2}, "thanks": {"_count": 2}}, "Licorice": {"_count": 1, "Wand": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "thanks": {"_count": 2, "very": {"_count": 1}, "said": {"_count": 1}}, "before": {"_count": 1, "we": {"_count": 1}}, "nothing": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "Silenciol": {"_count": 1, "He": {"_count": 1}}, "thestralsl": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "we": {"_count": 1, "dont": {"_count": 1}}, "dyou": {"_count": 1, "want": {"_count": 1}}, "hi": {"_count": 1, "said": {"_count": 1}}, "my": {"_count": 2, "nee": {"_count": 1}, "names": {"_count": 1}}, "Hagrids": {"_count": 1, "said": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "Kreacher": {"_count": 1, "I": {"_count": 1}}, "where": {"_count": 1, "exactly": {"_count": 1}}, "congratulations": {"_count": 1, "": {"_count": 1}}, "began": {"_count": 1, "Harry": {"_count": 1}}, "Im": {"_count": 2, "sorry": {"_count": 1}, "just": {"_count": 1}}, "may": {"_count": 1, "I": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "wohnt": {"_count": 1, "hier": {"_count": 1}}, "whats": {"_count": 2, "happened": {"_count": 1}, "there": {"_count": 1}}, "Phineas": {"_count": 1, "": {"_count": 1}}}, "Petunia": {"_count": 268, "dear": {"_count": 3, "you": {"_count": 1}, "": {"_count": 1}, "Aunt": {"_count": 1}}, "thought": {"_count": 1, "about": {"_count": 1}}, "could": {"_count": 2, "get": {"_count": 1}, "explain": {"_count": 1}}, "was": {"_count": 17, "awake": {"_count": 1}, "how": {"_count": 1}, "saying": {"_count": 1}, "horsefaced": {"_count": 1}, "just": {"_count": 1}, "shrieking": {"_count": 1}, "sipping": {"_count": 1}, "cutting": {"_count": 1}, "compulsively": {"_count": 1}, "nowhere": {"_count": 1}, "sobbing": {"_count": 1}, "ushering": {"_count": 1}, "his": {"_count": 1}, "looking": {"_count": 1}, "near": {"_count": 1}, "breathless": {"_count": 1}, "running": {"_count": 1}}, "often": {"_count": 1, "said": {"_count": 1}}, "obviously": {"_count": 1, "scented": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 25}, "!": {"_count": 5}, "?": {"_count": 3}}, "went": {"_count": 1, "to": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "looking": {"_count": 2, "furiously": {"_count": 1}, "up": {"_count": 1}}, "looked": {"_count": 4, "as": {"_count": 2}, "quite": {"_count": 1}, "both": {"_count": 1}}, "slowly": {"_count": 1, "": {"_count": 1}}, "frantically": {"_count": 1, "and": {"_count": 1}}, "tired": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 17, "sheared": {"_count": 1}, "been": {"_count": 1}, "decided": {"_count": 1}, "to": {"_count": 1}, "rushed": {"_count": 1}, "just": {"_count": 1}, "talked": {"_count": 1}, "managed": {"_count": 1}, "said": {"_count": 1}, "insisted": {"_count": 1}, "seized": {"_count": 1}, "provided": {"_count": 1}, "her": {"_count": 1}, "screamed": {"_count": 1}, "never": {"_count": 1}, "maintained": {"_count": 1}, "whenever": {"_count": 1}}, "hammering": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 1, "cup": {"_count": 1}}, "and": {"_count": 31, "Dudley": {"_count": 14}, "Uncle": {"_count": 10}, "pour": {"_count": 1}, "Harry": {"_count": 1}, "Ill": {"_count": 1}, "their": {"_count": 1}, "I": {"_count": 1}, "me": {"_count": 1}, "she": {"_count": 1}}, "took": {"_count": 2, "Dudley": {"_count": 1}, "it": {"_count": 1}}, "burst": {"_count": 3, "into": {"_count": 3}}, "one": {"_count": 1, "for": {"_count": 1}}, "kept": {"_count": 1, "looking": {"_count": 1}}, "through": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "theyre": {"_count": 1, "not": {"_count": 1}}, "shredded": {"_count": 1, "the": {"_count": 1}}, "didnt": {"_count": 3, "dare": {"_count": 1}, "come": {"_count": 1}, "know": {"_count": 1}}, "suggested": {"_count": 1, "timidly": {"_count": 1}}, "dully": {"_count": 1, "late": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "found": {"_count": 1, "a": {"_count": 1}}, "gave": {"_count": 3, "a": {"_count": 2}, "him": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "knocking": {"_count": 1, "on": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "turning": {"_count": 1, "misty": {"_count": 1}}, "I": {"_count": 2, "never": {"_count": 1}, "have": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "promptly": {"_count": 1, "waiting": {"_count": 1}}, "rapturously": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "ideas": {"_count": 1}}, "knew": {"_count": 1, "he": {"_count": 1}}, "calling": {"_count": 1, "him": {"_count": 1}}, "pointing": {"_count": 1, "to": {"_count": 1}}, "whisked": {"_count": 1, "away": {"_count": 1}}, "that": {"_count": 3, "very": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}}, "dug": {"_count": 1, "some": {"_count": 1}}, "faint": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 2, "say": {"_count": 1}, "simply": {"_count": 1}}, "to": {"_count": 3, "sign": {"_count": 1}, "keep": {"_count": 1}, "Dudley": {"_count": 1}}, "who": {"_count": 5, "was": {"_count": 2}, "had": {"_count": 2}, "let": {"_count": 1}}, "said": {"_count": 4, "Uncle": {"_count": 1}, "Youre": {"_count": 1}, "in": {"_count": 1}, "nothing": {"_count": 1}}, "smoothing": {"_count": 1, "Dudleys": {"_count": 1}}, "snapped": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "hissed": {"_count": 1, "at": {"_count": 1}}, "kissed": {"_count": 1, "or": {"_count": 1}}, "wince": {"_count": 1, "slightly": {"_count": 1}}, "hated": {"_count": 1, "animals": {"_count": 1}}, "Id": {"_count": 1, "write": {"_count": 1}}, "usually": {"_count": 1, "encouraged": {"_count": 1}}, "cooked": {"_count": 1, "a": {"_count": 1}}, "made": {"_count": 1, "coffee": {"_count": 1}}, "she": {"_count": 1, "patted": {"_count": 1}}, "were": {"_count": 1, "looking": {"_count": 1}}, "together": {"_count": 1, "as": {"_count": 1}}, "put": {"_count": 1, "a": {"_count": 1}}, "always": {"_count": 2, "insisted": {"_count": 1}, "wore": {"_count": 1}}, "wailed": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "new": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "set": {"_count": 1, "the": {"_count": 1}}, "wasnt": {"_count": 1, "eating": {"_count": 1}}, "peer": {"_count": 1, "out": {"_count": 1}}, "conversing": {"_count": 1, "in": {"_count": 1}}, "shrieked": {"_count": 2, "and": {"_count": 2}}, "staggered": {"_count": 1, "upright": {"_count": 1}}, "started": {"_count": 2, "chewing": {"_count": 1}, "to": {"_count": 1}}, "from": {"_count": 1, "view": {"_count": 1}}, "hurled": {"_count": 1, "herself": {"_count": 1}}, "screamed": {"_count": 4, "worse": {"_count": 1}, "": {"_count": 1}, "Uncle": {"_count": 1}, "and": {"_count": 1}}, "screaming": {"_count": 1, "and": {"_count": 1}}, "stuck": {"_count": 1, "their": {"_count": 1}}, "unconcernedly": {"_count": 1, "": {"_count": 1}}, "fondly": {"_count": 1, "": {"_count": 1}}, "scream": {"_count": 1, "even": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "his": {"_count": 1}}, "negotiate": {"_count": 1, "a": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 2}}, "talking": {"_count": 1, "in": {"_count": 1}}, "glanced": {"_count": 2, "despairingly": {"_count": 1}, "around": {"_count": 1}}, "instantly": {"_count": 1, "made": {"_count": 1}}, "in": {"_count": 4, "unison": {"_count": 1}, "a": {"_count": 3}}, "exchanged": {"_count": 1, "looks": {"_count": 1}}, "very": {"_count": 1, "whitefaced": {"_count": 1}}, "laid": {"_count": 1, "an": {"_count": 1}}, "clapped": {"_count": 1, "her": {"_count": 1}}, "ignored": {"_count": 2, "him": {"_count": 2}}, "nodded": {"_count": 1, "": {"_count": 1}}, "uttered": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 1}, "hovering": {"_count": 1}, "as": {"_count": 1}}, "beat": {"_count": 1, "him": {"_count": 1}}, "Dursley": {"_count": 1, "The": {"_count": 1}}, "shoved": {"_count": 1, "food": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "whimpered": {"_count": 2, "piteously": {"_count": 1}, "and": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "speaking": {"_count": 1, "for": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "Dudley": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 2, "again": {"_count": 1}, "her": {"_count": 1}}, "fussily": {"_count": 1, "checking": {"_count": 1}}, "froze": {"_count": 1, "where": {"_count": 1}}, "stopped": {"_count": 2, "too": {"_count": 1}, "her": {"_count": 1}}, "ran": {"_count": 1, "forward": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "whose": {"_count": 1, "face": {"_count": 1}}, "sent": {"_count": 1, "me": {"_count": 1}}, "advanced": {"_count": 1, "evidently": {"_count": 1}}, "evidently": {"_count": 1, "did": {"_count": 1}}, "says": {"_count": 2, "youre": {"_count": 1}, "there": {"_count": 1}}, "hiding": {"_count": 1, "behind": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "succeeded": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 1, "relish": {"_count": 1}}, "turned": {"_count": 1, "scarlet": {"_count": 1}}, "gasped": {"_count": 1, "": {"_count": 1}}}, "havent": {"_count": 318, "heard": {"_count": 8, "from": {"_count": 2}, "everything": {"_count": 1}, "anything": {"_count": 2}, "of": {"_count": 2}, "a": {"_count": 1}}, "said": {"_count": 11, "Professor": {"_count": 1}, "Percy": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Mrs": {"_count": 1}, "Hermione": {"_count": 2}, "Fred": {"_count": 1}, "Dudley": {"_count": 1}, "George": {"_count": 1}, "anything": {"_count": 1}}, "blushed": {"_count": 1, "so": {"_count": 1}}, "counted": {"_count": 1, "Auntie": {"_count": 1}}, "introduced": {"_count": 1, "meself": {"_count": 1}}, "got": {"_count": 88, "any": {"_count": 13}, "yeh": {"_count": 1}, "Agrippa": {"_count": 1}, "a": {"_count": 21}, "time": {"_count": 10}, "an": {"_count": 2}, "all": {"_count": 1}, "anywhere": {"_count": 1}, "one": {"_count": 2}, "enough": {"_count": 2}, "it": {"_count": 3}, "as": {"_count": 1}, "ten": {"_count": 1}, "brains": {"_count": 1}, "anything": {"_count": 3}, "him": {"_count": 2}, "long": {"_count": 1}, "anyone": {"_count": 1}, "the": {"_count": 4}, "Pig": {"_count": 1}, "your": {"_count": 1}, "fangs": {"_count": 1}, "to": {"_count": 2}, "authorization": {"_count": 1}, "too": {"_count": 1}, "three": {"_count": 1}, "quite": {"_count": 1}, "much": {"_count": 2}, "another": {"_count": 1}, "uncommon": {"_count": 1}, "wands": {"_count": 2}, "they": {"_count": 1}, "Potter": {"_count": 1}}, "seen": {"_count": 18, "it": {"_count": 2}, "Ron": {"_count": 1}, "her": {"_count": 2}, "a": {"_count": 1}, "one": {"_count": 1}, "before": {"_count": 1}, "anyone": {"_count": 3}, "him": {"_count": 3}, "Healer": {"_count": 1}, "you": {"_count": 2}, "Umbridge": {"_count": 1}}, "been": {"_count": 28, "caught": {"_count": 1}, "fighting": {"_count": 1}, "brooding": {"_count": 1}, "writing": {"_count": 1}, "expelled": {"_count": 1}, "properly": {"_count": 1}, "fired": {"_count": 1}, "Siriuss": {"_count": 1}, "helping": {"_count": 1}, "hiding": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 2}, "mixing": {"_count": 1}, "anywhere": {"_count": 1}, "mugged": {"_count": 1}, "told": {"_count": 1}, "any": {"_count": 1}, "used": {"_count": 1}, "flying": {"_count": 1}, "out": {"_count": 1}, "given": {"_count": 2}, "expecting": {"_count": 1}, "able": {"_count": 1}, "in": {"_count": 1}, "sleeping": {"_count": 1}, "quite": {"_count": 1}}, "we": {"_count": 11, "given": {"_count": 1}, "": {"_count": 8}, "agreed": {"_count": 1}, "looked": {"_count": 1}}, "eaten": {"_count": 1, "for": {"_count": 1}}, "won": {"_count": 1, "since": {"_count": 1}}, "noticed": {"_count": 6, "anythin": {"_count": 1}, "were": {"_count": 1}, "nobody": {"_count": 1}, "Mother": {"_count": 1}, "weve": {"_count": 1}, "the": {"_count": 1}}, "you": {"_count": 25, "been": {"_count": 3}, "": {"_count": 15}, "seen": {"_count": 2}, "Harry": {"_count": 1}, "dear": {"_count": 1}, "ever": {"_count": 1}, "got": {"_count": 1}, "applied": {"_count": 1}}, "sold": {"_count": 1, "me": {"_count": 1}}, "given": {"_count": 3, "me": {"_count": 2}, "them": {"_count": 1}}, "they": {"_count": 6, "": {"_count": 5}, "gloated": {"_count": 1}}, "already": {"_count": 2, "got": {"_count": 1}, "caught": {"_count": 1}}, "invented": {"_count": 1, "a": {"_count": 1}}, "really": {"_count": 3, "got": {"_count": 2}, "thought": {"_count": 1}}, "found": {"_count": 4, "the": {"_count": 1}, "out": {"_count": 1}, "one": {"_count": 1}, "anything": {"_count": 1}}, "Goyle": {"_count": 1, "how": {"_count": 1}}, "learned": {"_count": 2, "anything": {"_count": 1}, "enough": {"_count": 1}}, "all": {"_count": 1, "packed": {"_count": 1}}, "finished": {"_count": 2, "it": {"_count": 1}, "with": {"_count": 1}}, "improved": {"_count": 1, "since": {"_count": 1}}, "caught": {"_count": 2, "him": {"_count": 2}}, "made": {"_count": 2, "you": {"_count": 1}, "em": {"_count": 1}}, "touched": {"_count": 1, "it": {"_count": 1}}, "broken": {"_count": 1, "your": {"_count": 1}}, "poisoned": {"_count": 1, "that": {"_count": 1}}, "covered": {"_count": 1, "them": {"_count": 1}}, "visited": {"_count": 1, "him": {"_count": 1}}, "even": {"_count": 7, "been": {"_count": 1}, "got": {"_count": 2}, "reported": {"_count": 1}, "started": {"_count": 2}, "considered": {"_count": 1}}, "done": {"_count": 8, "it": {"_count": 1}, "any": {"_count": 2}, "their": {"_count": 1}, "anything": {"_count": 4}}, "changed": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 7, "been": {"_count": 1}, "told": {"_count": 1}, "": {"_count": 5}}, "forgotten": {"_count": 7, "that": {"_count": 2}, "what": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "Minister": {"_count": 1}, "about": {"_count": 1}}, "a": {"_count": 1, "hope": {"_count": 1}}, "passed": {"_count": 1, "your": {"_count": 1}}, "told": {"_count": 6, "you": {"_count": 2}, "us": {"_count": 2}, "me": {"_count": 1}, "him": {"_count": 1}}, "came": {"_count": 1, "Nevilles": {"_count": 1}}, "asked": {"_count": 1, "Hagrid": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "any": {"_count": 2, "idea": {"_count": 1}, "powers": {"_count": 1}}, "had": {"_count": 4, "at": {"_count": 1}, "a": {"_count": 1}, "any": {"_count": 2}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "actually": {"_count": 1, "seen": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "put": {"_count": 1, "the": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "packed": {"_count": 1, "my": {"_count": 1}}, "tried": {"_count": 1, "that": {"_count": 1}}, "still": {"_count": 1, "got": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "stopped": {"_count": 1, "taking": {"_count": 1}}, "worked": {"_count": 2, "out": {"_count": 1}, "he": {"_count": 1}}, "played": {"_count": 1, "yet": {"_count": 1}}, "explained": {"_count": 1, "how": {"_count": 1}}, "set": {"_count": 1, "free": {"_count": 1}}, "moved": {"_count": 1, "": {"_count": 1}}, "checked": {"_count": 1, "the": {"_count": 1}}, "mentioned": {"_count": 1, "a": {"_count": 1}}, "used": {"_count": 1, "wands": {"_count": 1}}, "come": {"_count": 2, "recruiting": {"_count": 1}, "back": {"_count": 1}}, "watched": {"_count": 1, "them": {"_count": 1}}, "tested": {"_count": 1, "them": {"_count": 1}}, "ever": {"_count": 1, "chucked": {"_count": 1}}, "slept": {"_count": 1, "Dobby": {"_count": 1}}, "called": {"_count": 1, "a": {"_count": 1}}, "ruled": {"_count": 1, "it": {"_count": 1}}, "just": {"_count": 1, "seen": {"_count": 1}}, "pressed": {"_count": 1, "your": {"_count": 1}}, "handed": {"_count": 1, "you": {"_count": 1}}}, "your": {"_count": 1983, "sister": {"_count": 9, "lately": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 3}, "I": {"_count": 1}, "will": {"_count": 1}, "in": {"_count": 1}, "seem": {"_count": 1}}, "parents": {"_count": 38, "died": {"_count": 2}, "well": {"_count": 1}, "": {"_count": 8}, "if": {"_count": 1}, "were": {"_count": 1}, "will": {"_count": 2}, "one": {"_count": 1}, "are": {"_count": 2}, "and": {"_count": 1}, "house": {"_count": 2}, "appointed": {"_count": 1}, "outside": {"_count": 1}, "at": {"_count": 1}, "decision": {"_count": 1}, "Death": {"_count": 1}, "dont": {"_count": 1}, "not": {"_count": 1}, "Neville": {"_count": 1}, "boy": {"_count": 1}, "nor": {"_count": 1}, "wanted": {"_count": 1}, "graves": {"_count": 1}, "knew": {"_count": 1}, "safely": {"_count": 1}, "arent": {"_count": 1}, "grave": {"_count": 1}, "the": {"_count": 1}}, "hair": {"_count": 13, "": {"_count": 4}, "on": {"_count": 1}, "curl": {"_count": 2}, "Hermown": {"_count": 1}, "tonight": {"_count": 1}, "because": {"_count": 1}, "said": {"_count": 1}, "unless": {"_count": 1}, "if": {"_count": 1}}, "friend": {"_count": 15, "Yvonne": {"_count": 1}, "Ron": {"_count": 2}, "Third": {"_count": 1}, "Nicolas": {"_count": 1}, "could": {"_count": 1}, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 5}, "Dumbledore": {"_count": 1}, "Dobbys": {"_count": 1}}, "special": {"_count": 1, "day": {"_count": 1}}, "head": {"_count": 36, "down": {"_count": 5}, "The": {"_count": 1}, "and": {"_count": 3}, "pull": {"_count": 1}, "but": {"_count": 2}, "cut": {"_count": 1}, "off": {"_count": 2}, "when": {"_count": 1}, "Potter": {"_count": 2}, "have": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 1}, "under": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}, "its": {"_count": 1}, "Im": {"_count": 1}, "dear": {"_count": 2}, "girl": {"_count": 1}, "said": {"_count": 1}, "held": {"_count": 1}, "too": {"_count": 1}, "all": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "Smelting": {"_count": 1, "stick": {"_count": 1}}, "cupboard": {"_count": 1, "I": {"_count": 1}}, "bedroom": {"_count": 4, "he": {"_count": 1}, "while": {"_count": 1}, "Rons": {"_count": 1}, "by": {"_count": 1}}, "owl": {"_count": 3, "by": {"_count": 1}, "Alastors": {"_count": 1}, "sir": {"_count": 1}}, "bad": {"_count": 1, "luck": {"_count": 1}}, "hand": {"_count": 12, "Im": {"_count": 1}, "preening": {"_count": 1}, "": {"_count": 3}, "Amos": {"_count": 1}, "in": {"_count": 1}, "then": {"_count": 1}, "where": {"_count": 1}, "right": {"_count": 1}, "upon": {"_count": 1}, "know": {"_count": 1}}, "teachers": {"_count": 2, "at": {"_count": 1}, "might": {"_count": 1}}, "equipment": {"_count": 1, "I": {"_count": 1}}, "own": {"_count": 43, "broom": {"_count": 2}, "good": {"_count": 1}, "": {"_count": 2}, "life": {"_count": 2}, "I": {"_count": 1}, "fault": {"_count": 2}, "sword": {"_count": 1}, "why": {"_count": 1}, "safety": {"_count": 2}, "bedroom": {"_count": 1}, "way": {"_count": 1}, "hostage": {"_count": 1}, "friend": {"_count": 1}, "after": {"_count": 1}, "without": {"_count": 1}, "choice": {"_count": 1}, "head": {"_count": 2}, "your": {"_count": 1}, "brain": {"_count": 1}, "feet": {"_count": 1}, "picture": {"_count": 1}, "futures": {"_count": 1}, "What": {"_count": 1}, "eyes": {"_count": 1}, "sister": {"_count": 1}, "and": {"_count": 1}, "work": {"_count": 1}, "blood": {"_count": 1}, "business": {"_count": 2}, "kid": {"_count": 1}, "power": {"_count": 1}, "was": {"_count": 1}, "It": {"_count": 1}, "private": {"_count": 1}, "idea": {"_count": 1}, "Harry": {"_count": 1}}, "surname": {"_count": 1, "anyway": {"_count": 1}}, "mothers": {"_count": 17, "eyes": {"_count": 2}, "for": {"_count": 1}, "right": {"_count": 1}, "house": {"_count": 1}, "blood": {"_count": 2}, "quite": {"_count": 1}, "talent": {"_count": 1}, "courage": {"_count": 1}, "genes": {"_count": 1}, "charm": {"_count": 3}, "": {"_count": 1}, "sacrifice": {"_count": 1}, "brains": {"_count": 1}}, "father": {"_count": 57, "favored": {"_count": 1}, "didnt": {"_count": 1}, "first": {"_count": 1}, "happened": {"_count": 1}, "used": {"_count": 1}, "did": {"_count": 2}, "even": {"_count": 1}, "gets": {"_count": 1}, "his": {"_count": 1}, "can": {"_count": 1}, "works": {"_count": 1}, "": {"_count": 5}, "finally": {"_count": 1}, "you": {"_count": 1}, "saved": {"_count": 1}, "Potter": {"_count": 1}, "hadnt": {"_count": 1}, "Harry": {"_count": 2}, "whod": {"_count": 1}, "too": {"_count": 1}, "was": {"_count": 2}, "very": {"_count": 1}, "last": {"_count": 1}, "for": {"_count": 1}, "of": {"_count": 1}, "died": {"_count": 2}, "into": {"_count": 1}, "do": {"_count": 1}, "subdue": {"_count": 1}, "and": {"_count": 5}, "escaped": {"_count": 1}, "Dumbledore": {"_count": 1}, "however": {"_count": 1}, "hears": {"_count": 1}, "than": {"_count": 2}, "whispered": {"_count": 1}, "runs": {"_count": 1}, "wasnt": {"_count": 1}, "on": {"_count": 1}, "I": {"_count": 1}, "doesnt": {"_count": 1}, "have": {"_count": 1}, "with": {"_count": 1}, "would": {"_count": 1}}, "wand": {"_count": 44, "arm": {"_count": 1}, "gave": {"_count": 1}, "and": {"_count": 4}, "got": {"_count": 1}, "hand": {"_count": 1}, "thus": {"_count": 1}, "out": {"_count": 3}, "after": {"_count": 1}, "away": {"_count": 1}, "": {"_count": 6}, "forthwith": {"_count": 1}, "until": {"_count": 1}, "boy": {"_count": 1}, "there": {"_count": 1}, "for": {"_count": 3}, "said": {"_count": 1}, "Potter": {"_count": 1}, "to": {"_count": 1}, "then": {"_count": 1}, "Bellatrix": {"_count": 1}, "at": {"_count": 1}, "Im": {"_count": 1}, "He": {"_count": 1}, "did": {"_count": 1}, "Lucius": {"_count": 1}, "should": {"_count": 1}, "was": {"_count": 1}, "overpowered": {"_count": 1}, "imbibed": {"_count": 1}, "recognized": {"_count": 1}, "beat": {"_count": 1}, "so": {"_count": 1}}, "arm": {"_count": 11, "": {"_count": 8}, "he": {"_count": 1}, "said": {"_count": 1}, "round": {"_count": 1}}, "nose": {"_count": 13, "": {"_count": 2}, "by": {"_count": 1}, "and": {"_count": 3}, "in": {"_count": 1}, "out": {"_count": 1}, "clean": {"_count": 1}, "before": {"_count": 1}, "on": {"_count": 2}, "if": {"_count": 1}}, "family": {"_count": 19, "wizards": {"_count": 1}, "within": {"_count": 1}, "all": {"_count": 2}, "standing": {"_count": 1}, "see": {"_count": 1}, "could": {"_count": 1}, "Petunia": {"_count": 1}, "after": {"_count": 1}, "and": {"_count": 2}, "since": {"_count": 1}, "is": {"_count": 1}, "seem": {"_count": 1}, "this": {"_count": 1}, "so": {"_count": 1}, "course": {"_count": 1}, "tree": {"_count": 1}, "if": {"_count": 1}}, "brothers": {"_count": 7, "in": {"_count": 1}, "have": {"_count": 1}, "Crouchs": {"_count": 1}, "caused": {"_count": 1}, "wedding": {"_count": 2}, "and": {"_count": 1}}, "oldest": {"_count": 1, "brothers": {"_count": 1}}, "Quidditch": {"_count": 4, "team": {"_count": 1}, "match": {"_count": 1}, "field": {"_count": 1}, "players": {"_count": 1}}, "robes": {"_count": 7, "on": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 3}, "away": {"_count": 1}, "all": {"_count": 1}}, "luggage": {"_count": 1, "on": {"_count": 1}}, "toad": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "seats": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "Houses": {"_count": 2, "": {"_count": 1}, "back": {"_count": 1}}, "House": {"_count": 9, "will": {"_count": 1}, "sleep": {"_count": 1}, "dormitory": {"_count": 1}, "common": {"_count": 1}, "points": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "could": {"_count": 1}}, "triumphs": {"_count": 1, "will": {"_count": 1}}, "bowlers": {"_count": 1, "black": {"_count": 1}}, "real": {"_count": 1, "friends": {"_count": 1}}, "name": {"_count": 37, "you": {"_count": 2}, "": {"_count": 5}, "on": {"_count": 2}, "but": {"_count": 1}, "soon": {"_count": 1}, "in": {"_count": 10}, "into": {"_count": 2}, "got": {"_count": 1}, "and": {"_count": 4}, "is": {"_count": 4}, "to": {"_count": 2}, "doing": {"_count": 1}, "my": {"_count": 1}, "Riddle": {"_count": 1}}, "service": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "best": {"_count": 12, "well": {"_count": 1}, "yet": {"_count": 1}, "friends": {"_count": 1}, "": {"_count": 1}, "friend": {"_count": 3}, "and": {"_count": 1}, "chance": {"_count": 1}, "clothes": {"_count": 1}, "mate": {"_count": 2}}, "feet": {"_count": 2, "pelt": {"_count": 1}, "": {"_count": 1}}, "first": {"_count": 14, "week": {"_count": 1}, "time": {"_count": 2}, "training": {"_count": 1}, "day": {"_count": 2}, "cup": {"_count": 1}, "task": {"_count": 1}, "year": {"_count": 2}, "guess": {"_count": 1}, "one": {"_count": 1}, "match": {"_count": 1}, "name": {"_count": 1}}, "information": {"_count": 10, "Potter": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "snarled": {"_count": 1}, "boy": {"_count": 2}, "has": {"_count": 1}, "Elphias": {"_count": 1}, "none": {"_count": 1}}, "cheek": {"_count": 1, "Potter": {"_count": 1}}, "noses": {"_count": 2, "out": {"_count": 1}, "so": {"_count": 1}}, "right": {"_count": 1, "hand": {"_count": 1}}, "broom": {"_count": 8, "called": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 2}, "firmly": {"_count": 1}, "on": {"_count": 1}, "shed": {"_count": 2}}, "brooms": {"_count": 9, "steady": {"_count": 1}, "please": {"_count": 1}, "": {"_count": 5}, "thats": {"_count": 1}, "out": {"_count": 1}}, "neck": {"_count": 10, "Malfoy": {"_count": 1}, "It": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 2}, "thats": {"_count": 1}, "while": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "little": {"_count": 11, "friends": {"_count": 2}, "bit": {"_count": 1}, "elf": {"_count": 1}, "friend": {"_count": 2}, "girl": {"_count": 2}, "jokesll": {"_count": 1}, "Dark": {"_count": 1}, "sidelines": {"_count": 1}}, "business": {"_count": 13, "said": {"_count": 2}, "goes": {"_count": 1}, "": {"_count": 3}, "dealings": {"_count": 1}, "if": {"_count": 1}, "who": {"_count": 2}, "what": {"_count": 2}, "Potter": {"_count": 1}}, "brother": {"_count": 7, "Hermione": {"_count": 1}, "Charlie": {"_count": 1}, "": {"_count": 2}, "wanted": {"_count": 1}, "died": {"_count": 1}, "would": {"_count": 1}}, "problem": {"_count": 2, "said": {"_count": 1}, "isnt": {"_count": 1}}, "voice": {"_count": 12, "down": {"_count": 10}, "": {"_count": 1}, "I": {"_count": 1}}, "eyes": {"_count": 18, "any": {"_count": 1}, "on": {"_count": 1}, "shut": {"_count": 2}, "out": {"_count": 1}, "right": {"_count": 1}, "to": {"_count": 1}, "dear": {"_count": 1}, "open": {"_count": 2}, "back": {"_count": 1}, "again": {"_count": 1}, "will": {"_count": 1}, "peeled": {"_count": 1}, "": {"_count": 4}}, "new": {"_count": 6, "Nimbus": {"_count": 1}, "books": {"_count": 2}, "teacher": {"_count": 1}, "Patronus": {"_count": 1}, "school": {"_count": 1}}, "dormitory": {"_count": 6, "": {"_count": 1}, "she": {"_count": 1}, "was": {"_count": 1}, "at": {"_count": 1}, "all": {"_count": 1}, "Harry": {"_count": 1}}, "strength": {"_count": 1, "said": {"_count": 1}}, "broomstick": {"_count": 4, "muttering": {"_count": 1}, "": {"_count": 1}, "showing": {"_count": 1}, "can": {"_count": 1}}, "familys": {"_count": 2, "used": {"_count": 1}, "Disapparition": {"_count": 1}}, "message": {"_count": 2, "and": {"_count": 1}, "Neville": {"_count": 1}}, "Christmas": {"_count": 2, "present": {"_count": 1}, "": {"_count": 1}}, "mom": {"_count": 1, "and": {"_count": 1}}, "other": {"_count": 2, "brothers": {"_count": 1}, "portrait": {"_count": 1}}, "leg": {"_count": 3, "Hermione": {"_count": 1}, "said": {"_count": 1}, "up": {"_count": 1}}, "enemy": {"_count": 2, "Quirrell": {"_count": 1}, "must": {"_count": 1}}, "loyalties": {"_count": 1, "lie": {"_count": 1}}, "house": {"_count": 11, "": {"_count": 4}, "wouldnt": {"_count": 1}, "and": {"_count": 1}, "youd": {"_count": 1}, "why": {"_count": 1}, "making": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}}, "wrists": {"_count": 1, "from": {"_count": 1}}, "place": {"_count": 6, "ter": {"_count": 1}, "of": {"_count": 3}, "": {"_count": 1}, "at": {"_count": 1}}, "back": {"_count": 3, "": {"_count": 1}, "pocket": {"_count": 1}, "on": {"_count": 1}}, "lips": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "families": {"_count": 4, "alone": {"_count": 1}, "tonight": {"_count": 1}, "have": {"_count": 1}, "Harry": {"_count": 1}}, "bloodiness": {"_count": 1, "Mr": {"_count": 1}}, "choice": {"_count": 6, "we": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}, "he": {"_count": 1}, "Longbottom": {"_count": 1}, "into": {"_count": 1}}, "next": {"_count": 7, "match": {"_count": 1}, "lesson": {"_count": 2}, "Quidditch": {"_count": 1}, "year": {"_count": 1}, "interview": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "pocket": {"_count": 4, "": {"_count": 3}, "when": {"_count": 1}}, "mother": {"_count": 30, "neednt": {"_count": 1}, "": {"_count": 4}, "die": {"_count": 1}, "and": {"_count": 3}, "Tell": {"_count": 1}, "youve": {"_count": 1}, "hears": {"_count": 1}, "Malfoy": {"_count": 1}, "doing": {"_count": 1}, "why": {"_count": 1}, "we": {"_count": 1}, "there": {"_count": 1}, "all": {"_count": 1}, "here": {"_count": 1}, "what": {"_count": 1}, "your": {"_count": 1}, "died": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}, "tonight": {"_count": 1}, "gave": {"_count": 1}, "like": {"_count": 1}, "laid": {"_count": 1}, "Snape": {"_count": 1}}, "friends": {"_count": 15, "and": {"_count": 2}, "Misters": {"_count": 1}, "": {"_count": 4}, "die": {"_count": 1}, "about": {"_count": 1}, "found": {"_count": 1}, "Mr": {"_count": 1}, "Harry": {"_count": 1}, "Crabbe": {"_count": 1}, "to": {"_count": 2}}, "questions": {"_count": 1, "unless": {"_count": 1}}, "mind": {"_count": 37, "for": {"_count": 1}, "I": {"_count": 2}, "": {"_count": 11}, "And": {"_count": 1}, "jumped": {"_count": 1}, "on": {"_count": 2}, "is": {"_count": 1}, "to": {"_count": 5}, "said": {"_count": 1}, "Potter": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "But": {"_count": 1}, "arent": {"_count": 1}, "if": {"_count": 1}, "even": {"_count": 1}, "firmly": {"_count": 1}, "Dumbledore": {"_count": 1}, "closed": {"_count": 1}, "remember": {"_count": 1}, "a": {"_count": 1}}, "very": {"_count": 3, "skin": {"_count": 1}, "best": {"_count": 2}}, "fathers": {"_count": 10, "debt": {"_count": 1}, "memory": {"_count": 1}, "cloak": {"_count": 1}, "old": {"_count": 1}, "son": {"_count": 1}, "coming": {"_count": 1}, "too": {"_count": 1}, "still": {"_count": 1}, "at": {"_count": 1}, "capture": {"_count": 1}}, "heads": {"_count": 2, "are": {"_count": 1}, "together": {"_count": 1}}, "coats": {"_count": 2, "Mr": {"_count": 2}}, "dress": {"_count": 2, "Mrs": {"_count": 1}, "robes": {"_count": 1}}, "aunts": {"_count": 1, "way": {"_count": 1}}, "birthday": {"_count": 5, "sneered": {"_count": 1}, "for": {"_count": 1}, "presents": {"_count": 1}, "Harry": {"_count": 1}, "cake": {"_count": 1}}, "mum": {"_count": 16, "hear": {"_count": 1}, "and": {"_count": 7}, "screaming": {"_count": 1}, "with": {"_count": 1}, "was": {"_count": 1}, "where": {"_count": 1}, "calls": {"_count": 1}, "": {"_count": 1}, "an": {"_count": 1}, "Ron": {"_count": 1}}, "ears": {"_count": 8, "in": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 1}, "Ive": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}, "fall": {"_count": 1}, "and": {"_count": 1}}, "greatness": {"_count": 1, "sir": {"_count": 1}}, "goodness": {"_count": 1, "Dobby": {"_count": 1}}, "world": {"_count": 1, "at": {"_count": 1}}, "part": {"_count": 3, "may": {"_count": 1}, "I": {"_count": 1}, "convincingly": {"_count": 1}}, "holidays": {"_count": 1, "": {"_count": 1}}, "beak": {"_count": 1, "up": {"_count": 1}}, "trunk": {"_count": 5, "you": {"_count": 1}, "Harry": {"_count": 1}, "ready": {"_count": 1}, "and": {"_count": 1}, "packed": {"_count": 1}}, "room": {"_count": 6, "and": {"_count": 1}, "Ron": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}, "yet": {"_count": 1}}, "foot": {"_count": 2, "down": {"_count": 1}, "the": {"_count": 1}}, "dad": {"_count": 20, "know": {"_count": 1}, "do": {"_count": 1}, "this": {"_count": 1}, "how": {"_count": 1}, "works": {"_count": 1}, "catches": {"_count": 1}, "went": {"_count": 1}, "and": {"_count": 2}, "youve": {"_count": 1}, "down": {"_count": 1}, "took": {"_count": 1}, "ever": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 1}, "too": {"_count": 1}, "though": {"_count": 1}, "are": {"_count": 1}, "like": {"_count": 1}}, "mouth": {"_count": 12, "closed": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 6}, "shut": {"_count": 2}, "and": {"_count": 1}, "said": {"_count": 1}}, "autograph": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 2}, "books": {"_count": 1}}, "shed": {"_count": 1, "": {"_count": 1}}, "shirt": {"_count": 1, "in": {"_count": 1}}, "one": {"_count": 2, "off": {"_count": 1}, "last": {"_count": 1}}, "things": {"_count": 8, "then": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "here": {"_count": 1}, "he": {"_count": 1}, "myself": {"_count": 1}, "hes": {"_count": 1}}, "school": {"_count": 6, "things": {"_count": 1}, "list": {"_count": 2}, "holidays": {"_count": 1}, "you": {"_count": 1}, "tonight": {"_count": 1}}, "elbows": {"_count": 1, "tucked": {"_count": 1}}, "manor": {"_count": 1, "": {"_count": 1}}, "glasses": {"_count": 4, "": {"_count": 1}, "quick": {"_count": 1}, "to": {"_count": 2}}, "schoolbooks": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "book": {"_count": 3, "its": {"_count": 1}, "Potter": {"_count": 1}, "Harry": {"_count": 1}}, "children": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}}, "earmuffs": {"_count": 1, "are": {"_count": 1}}, "attention": {"_count": 6, "when": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 2}}, "flying": {"_count": 1, "car": {"_count": 1}}, "forehead": {"_count": 3, "his": {"_count": 1}, "what": {"_count": 1}, "Vernon": {"_count": 1}}, "mommyll": {"_count": 1, "have": {"_count": 1}}, "schoolmates": {"_count": 1, "wont": {"_count": 1}}, "career": {"_count": 1, "isnt": {"_count": 1}}, "face": {"_count": 8, "said": {"_count": 1}, "": {"_count": 4}, "when": {"_count": 1}, "hidden": {"_count": 1}, "then": {"_count": 1}}, "opinion": {"_count": 4, "is": {"_count": 1}, "you": {"_count": 1}, "did": {"_count": 1}, "as": {"_count": 1}}, "worst": {"_count": 1, "fears": {"_count": 1}}, "detentions": {"_count": 3, "this": {"_count": 1}, "as": {"_count": 1}, "said": {"_count": 1}}, "woeful": {"_count": 1, "wandwork": {"_count": 1}}, "fabulous": {"_count": 1, "Kwikspell": {"_count": 1}}, "composition": {"_count": 1, "said": {"_count": 1}}, "bear": {"_count": 1, "and": {"_count": 1}}, "front": {"_count": 1, "door": {"_count": 1}}, "chances": {"_count": 4, "of": {"_count": 2}, "though": {"_count": 1}, "in": {"_count": 1}}, "fault": {"_count": 10, "George": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 2}, "those": {"_count": 1}, "Minerva": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}}, "Bludger": {"_count": 1, "": {"_count": 1}}, "life": {"_count": 13, "hes": {"_count": 1}, "": {"_count": 4}, "hold": {"_count": 1}, "Weasley": {"_count": 1}, "would": {"_count": 1}, "than": {"_count": 1}, "youre": {"_count": 1}, "Harry": {"_count": 1}, "have": {"_count": 1}, "tonight": {"_count": 1}}, "Potions": {"_count": 1, "master": {"_count": 1}}, "partners": {"_count": 1, "": {"_count": 1}}, "charms": {"_count": 1, "to": {"_count": 1}}, "opponents": {"_count": 1, "only": {"_count": 1}}, "bonnet": {"_count": 1, "Harry": {"_count": 1}}, "arms": {"_count": 2, "like": {"_count": 1}, "will": {"_count": 1}}, "pardon": {"_count": 12, "": {"_count": 9}, "miss": {"_count": 1}, "Mr": {"_count": 1}, "Harry": {"_count": 1}}, "dormitories": {"_count": 1, "said": {"_count": 1}}, "attitude": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "picture": {"_count": 2, "Potter": {"_count": 1}, "appears": {"_count": 1}}, "shoes": {"_count": 2, "please": {"_count": 1}, "": {"_count": 1}}, "concerned": {"_count": 1, "teacher": {"_count": 1}}, "pillow": {"_count": 2, "": {"_count": 2}}, "valentines": {"_count": 1, "": {"_count": 1}}, "singing": {"_count": 2, "valentine": {"_count": 1}, "said": {"_count": 1}}, "valentine": {"_count": 1, "much": {"_count": 1}}, "orphanage": {"_count": 1, "": {"_count": 1}}, "strengths": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "er": {"_count": 2, "dyou": {"_count": 1}, "highly": {"_count": 1}}, "touch": {"_count": 2, "": {"_count": 1}, "Potter": {"_count": 1}}, "successor": {"_count": 1, "will": {"_count": 1}}, "education": {"_count": 3, "she": {"_count": 1}, "": {"_count": 2}}, "way": {"_count": 13, "": {"_count": 2}, "was": {"_count": 1}, "through": {"_count": 2}, "down": {"_count": 2}, "clear": {"_count": 1}, "said": {"_count": 1}, "into": {"_count": 1}, "quite": {"_count": 1}, "Ive": {"_count": 1}, "forward": {"_count": 1}}, "books": {"_count": 6, "Books": {"_count": 1}, "back": {"_count": 1}, "while": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 2}}, "common": {"_count": 3, "sense": {"_count": 2}, "room": {"_count": 1}}, "minds": {"_count": 4, "at": {"_count": 1}, "my": {"_count": 1}, "eye": {"_count": 1}, "on": {"_count": 1}}, "memories": {"_count": 3, "": {"_count": 1}, "of": {"_count": 2}}, "trust": {"_count": 1, "Hagrids": {"_count": 1}}, "time": {"_count": 7, "": {"_count": 3}, "now": {"_count": 1}, "submitting": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}}, "past": {"_count": 3, "in": {"_count": 1}, "that": {"_count": 1}, "might": {"_count": 1}}, "powers": {"_count": 4, "when": {"_count": 1}, "intact": {"_count": 1}, "in": {"_count": 1}, "will": {"_count": 1}}, "power": {"_count": 3, "got": {"_count": 1}, "to": {"_count": 2}}, "dear": {"_count": 3, "Mudblood": {"_count": 1}, "mother": {"_count": 1}, "godfathers": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 1}, "Tiberius": {"_count": 1}}, "present": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "aunt": {"_count": 15, "and": {"_count": 12}, "Harry": {"_count": 1}, "Dudley": {"_count": 1}, "said": {"_count": 1}}, "parent": {"_count": 2, "or": {"_count": 2}}, "abnormality": {"_count": 1, "I": {"_count": 1}}, "behavior": {"_count": 3, "carefully": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}}, "ruddy": {"_count": 1, "form": {"_count": 1}}, "tone": {"_count": 1, "boy": {"_count": 1}}, "beatings": {"_count": 1, "in": {"_count": 1}}, "conductor": {"_count": 1, "this": {"_count": 1}}, "ead": {"_count": 1, "": {"_count": 1}}, "tree": {"_count": 1, "": {"_count": 1}}, "vacation": {"_count": 1, "": {"_count": 1}}, "stay": {"_count": 2, "Harry": {"_count": 1}, "here": {"_count": 1}}, "basic": {"_count": 1, "fortunetelling": {"_count": 1}}, "rat": {"_count": 2, "tonic": {"_count": 1}, "": {"_count": 1}}, "word": {"_count": 14, "to": {"_count": 1}, "that": {"_count": 3}, "and": {"_count": 3}, "for": {"_count": 2}, "you": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}, "Severus": {"_count": 1}}, "seat": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "insides": {"_count": 1, "dont": {"_count": 1}}, "schedule": {"_count": 2, "": {"_count": 2}}, "grandmother": {"_count": 5, "well": {"_count": 1}, "": {"_count": 1}, "usually": {"_count": 1}, "is": {"_count": 1}, "learned": {"_count": 1}}, "cup": {"_count": 1, "to": {"_count": 1}}, "partner": {"_count": 1, "to": {"_count": 1}}, "Inner": {"_count": 1, "Eye": {"_count": 1}}, "path": {"_count": 2, "my": {"_count": 1}, "to": {"_count": 1}}, "tea": {"_count": 2, "leaves": {"_count": 1}, "cozy": {"_count": 1}}, "pal": {"_count": 1, "Hagrid": {"_count": 1}}, "ingredients": {"_count": 1, "by": {"_count": 1}}, "bags": {"_count": 1, "": {"_count": 1}}, "wands": {"_count": 8, "": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 2}, "are": {"_count": 1}, "to": {"_count": 1}, "she": {"_count": 1}, "cant": {"_count": 1}}, "grandmothers": {"_count": 1, "clothes": {"_count": 1}}, "nasty": {"_count": 1, "little": {"_count": 1}}, "letter": {"_count": 3, "to": {"_count": 1}, "giving": {"_count": 1}, "had": {"_count": 1}}, "team": {"_count": 1, "members": {"_count": 1}}, "training": {"_count": 1, "sessions": {"_count": 1}}, "detention": {"_count": 4, "": {"_count": 2}, "next": {"_count": 1}, "er": {"_count": 1}}, "needs": {"_count": 1, "greater": {"_count": 1}}, "teeth": {"_count": 2, "chatter": {"_count": 1}, "": {"_count": 1}}, "shopping": {"_count": 1, "well": {"_count": 1}}, "class": {"_count": 2, "we": {"_count": 1}, "I": {"_count": 1}}, "hippogriff": {"_count": 1, "at": {"_count": 1}}, "Nimbus": {"_count": 1, "got": {"_count": 1}}, "might": {"_count": 1, "on": {"_count": 1}}, "happy": {"_count": 1, "memory": {"_count": 1}}, "soul": {"_count": 15, "you": {"_count": 2}, "is": {"_count": 1}, "sucked": {"_count": 1}, "": {"_count": 1}, "once": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 2}, "the": {"_count": 1}, "into": {"_count": 1}, "by": {"_count": 1}, "at": {"_count": 1}, "will": {"_count": 1}}, "brain": {"_count": 4, "and": {"_count": 2}, "a": {"_count": 1}, "go": {"_count": 1}}, "dementor": {"_count": 2, "problem": {"_count": 1}, "essays": {"_count": 1}}, "acceleration": {"_count": 1, "Harry": {"_count": 1}}, "body": {"_count": 6, "has": {"_count": 1}, "really": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "will": {"_count": 1}, "your": {"_count": 1}}, "saintly": {"_count": 1, "father": {"_count": 1}}, "pockets": {"_count": 4, "Potter": {"_count": 1}, "or": {"_count": 1}, "go": {"_count": 1}, "for": {"_count": 1}}, "secret": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "area": {"_count": 1, "of": {"_count": 1}}, "possession": {"_count": 1, "": {"_count": 1}}, "examination": {"_count": 7, "in": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 2}, "papers": {"_count": 1}, "results": {"_count": 1}, "paper": {"_count": 1}}, "vision": {"_count": 1, "watch": {"_count": 1}}, "usual": {"_count": 2, "standard": {"_count": 1}, "form": {"_count": 1}}, "age": {"_count": 4, "Ive": {"_count": 1}, "unless": {"_count": 1}, "group": {"_count": 1}, "to": {"_count": 1}}, "office": {"_count": 12, "Lupin": {"_count": 1}, "surely": {"_count": 1}, "Professor": {"_count": 1}, "": {"_count": 4}, "are": {"_count": 1}, "then": {"_count": 2}, "Dumbledore": {"_count": 1}, "trying": {"_count": 1}}, "potion": {"_count": 5, "tonight": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "called": {"_count": 1}, "label": {"_count": 1}}, "desk": {"_count": 1, "was": {"_count": 1}}, "old": {"_count": 7, "friend": {"_count": 1}, "masters": {"_count": 1}, "protector": {"_count": 1}, "friends": {"_count": 1}, "differences": {"_count": 1}, "colleagues": {"_count": 1}, "school": {"_count": 1}}, "hideout": {"_count": 1, "Severus": {"_count": 1}}, "tongue": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "skin": {"_count": 2, "Professor": {"_count": 1}, "back": {"_count": 1}}, "miserable": {"_count": 1, "life": {"_count": 1}}, "whole": {"_count": 1, "family": {"_count": 1}}, "godfather": {"_count": 6, "": {"_count": 3}, "from": {"_count": 1}, "wasnt": {"_count": 1}, "you": {"_count": 1}}, "guardian": {"_count": 1, "said": {"_count": 1}}, "turn": {"_count": 3, "to": {"_count": 1}, "Potter": {"_count": 1}, "you": {"_count": 1}}, "filthy": {"_count": 2, "hands": {"_count": 1}, "father": {"_count": 1}}, "dads": {"_count": 5, "well": {"_count": 1}, "during": {"_count": 1}, "been": {"_count": 1}, "mate": {"_count": 1}, "in": {"_count": 1}}, "lives": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "Patronus": {"_count": 6, "": {"_count": 3}, "took": {"_count": 1}, "take": {"_count": 1}, "change": {"_count": 1}}, "teacher": {"_count": 3, "so": {"_count": 1}, "and": {"_count": 2}}, "experience": {"_count": 2, "with": {"_count": 1}, "of": {"_count": 1}}, "debt": {"_count": 1, "": {"_count": 1}}, "exam": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "uncles": {"_count": 1, "house": {"_count": 1}}, "clumsy": {"_count": 1, "care": {"_count": 1}}, "reward": {"_count": 1, "Wormtail": {"_count": 1}}, "manners": {"_count": 2, "": {"_count": 1}, "My": {"_count": 1}}, "last": {"_count": 3, "letter": {"_count": 1}, "letters": {"_count": 1}, "answer": {"_count": 1}}, "answer": {"_count": 4, "as": {"_count": 1}, "": {"_count": 1}, "pronto": {"_count": 1}, "by": {"_count": 1}}, "ungrateful": {"_count": 1, "back": {"_count": 1}}, "your": {"_count": 1, "godfather": {"_count": 1}}, "lot": {"_count": 5, "wear": {"_count": 1}, "": {"_count": 1}, "dont": {"_count": 1}, "have": {"_count": 1}, "isnt": {"_count": 1}}, "fireplace": {"_count": 2, "connected": {"_count": 1}, "before": {"_count": 1}}, "cousin": {"_count": 1, "is": {"_count": 1}}, "nephew": {"_count": 2, "till": {"_count": 1}, "is": {"_count": 1}}, "hairs": {"_count": 3, "getting": {"_count": 1}, "boy": {"_count": 1}, "much": {"_count": 1}}, "test": {"_count": 1, "snapped": {"_count": 1}}, "grandchildren": {"_count": 1, "that": {"_count": 1}}, "campsite": {"_count": 1, "": {"_count": 1}}, "change": {"_count": 1, "": {"_count": 1}}, "savings": {"_count": 2, "": {"_count": 2}}, "embargo": {"_count": 1, "on": {"_count": 1}}, "knickers": {"_count": 1, "in": {"_count": 1}}, "daddy": {"_count": 1, "told": {"_count": 1}}, "department": {"_count": 2, "for": {"_count": 1}, "what": {"_count": 1}}, "brains": {"_count": 4, "Ron": {"_count": 2}, "or": {"_count": 1}, "and": {"_count": 1}}, "scar": {"_count": 22, "kept": {"_count": 1}, "is": {"_count": 1}, "hurting": {"_count": 1}, "": {"_count": 7}, "hurt": {"_count": 7}, "hurts": {"_count": 1}, "was": {"_count": 2}, "feeling": {"_count": 1}, "oh": {"_count": 1}}, "vault": {"_count": 5, "for": {"_count": 2}, "": {"_count": 2}, "the": {"_count": 1}}, "socks": {"_count": 1, "": {"_count": 1}}, "list": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "fingers": {"_count": 4, "crossed": {"_count": 1}, "arent": {"_count": 1}, "together": {"_count": 1}, "up": {"_count": 1}}, "wholehearted": {"_count": 1, "support": {"_count": 1}}, "lessons": {"_count": 4, "tomorrow": {"_count": 2}, "now": {"_count": 1}, "": {"_count": 1}}, "dragon": {"_count": 2, "hide": {"_count": 1}, "yet": {"_count": 1}}, "brave": {"_count": 1, "face": {"_count": 1}}, "worries": {"_count": 1, "are": {"_count": 1}}, "birth": {"_count": 2, "": {"_count": 2}}, "mean": {"_count": 1, "stature": {"_count": 1}}, "personal": {"_count": 1, "chart": {"_count": 1}}, "fat": {"_count": 2, "mouth": {"_count": 1}, "bottom": {"_count": 1}}, "Head": {"_count": 2, "of": {"_count": 2}}, "nerves": {"_count": 1, "he": {"_count": 1}}, "throats": {"_count": 1, "": {"_count": 1}}, "quills": {"_count": 1, "": {"_count": 1}}, "magical": {"_count": 2, "education": {"_count": 1}, "power": {"_count": 1}}, "pincushion": {"_count": 1, "Thomas": {"_count": 1}}, "sheets": {"_count": 1, "are": {"_count": 1}}, "fires": {"_count": 1, "lit": {"_count": 1}}, "classrooms": {"_count": 1, "cleaned": {"_count": 1}}, "food": {"_count": 1, "cooked": {"_count": 1}}, "hat": {"_count": 1, "Professor": {"_count": 1}}, "names": {"_count": 1, "in": {"_count": 1}}, "champions": {"_count": 1, "every": {"_count": 1}}, "champion": {"_count": 2, "on": {"_count": 1}, "now": {"_count": 1}}, "Age": {"_count": 1, "Line": {"_count": 1}}, "reasons": {"_count": 1, "": {"_count": 1}}, "daring": {"_count": 1, "he": {"_count": 1}}, "recipes": {"_count": 1, "now": {"_count": 1}}, "antidote": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 1, "and": {"_count": 1}}, "most": {"_count": 2, "important": {"_count": 1}, "faithful": {"_count": 1}}, "description": {"_count": 1, "of": {"_count": 1}}, "ideas": {"_count": 2, "are": {"_count": 1}, "young": {"_count": 1}}, "quill": {"_count": 3, "": {"_count": 1}, "she": {"_count": 1}, "for": {"_count": 1}}, "cloak": {"_count": 3, "for": {"_count": 1}, "please": {"_count": 1}, "": {"_count": 1}}, "eye": {"_count": 4, "I": {"_count": 1}, "Granger": {"_count": 1}, "Hermione": {"_count": 1}, "Ive": {"_count": 1}}, "task": {"_count": 1, "is": {"_count": 1}}, "score": {"_count": 2, "": {"_count": 2}}, "scores": {"_count": 1, "": {"_count": 1}}, "shoulder": {"_count": 1, "": {"_count": 1}}, "surprise": {"_count": 1, "party": {"_count": 1}}, "favorite": {"_count": 2, "lessons": {"_count": 1}, "subject": {"_count": 1}}, "masters": {"_count": 2, "": {"_count": 2}}, "antidotes": {"_count": 1, "": {"_count": 1}}, "sweater": {"_count": 1, "": {"_count": 1}}, "charming": {"_count": 2, "friend": {"_count": 1}, "garden": {"_count": 1}}, "excuses": {"_count": 1, "": {"_count": 1}}, "temporary": {"_count": 1, "Care": {"_count": 1}}, "halfbreed": {"_count": 1, "pal": {"_count": 1}}, "splendid": {"_count": 1, "performance": {"_count": 1}}, "golden": {"_count": 1, "egg": {"_count": 1}}, "resignation": {"_count": 2, "Hagrid": {"_count": 1}, "to": {"_count": 1}}, "bathroom": {"_count": 2, "am": {"_count": 1}, "said": {"_count": 1}}, "help": {"_count": 5, "": {"_count": 3}, "said": {"_count": 2}}, "markings": {"_count": 1, "so": {"_count": 1}}, "Wheezy": {"_count": 1, "Wheezy": {"_count": 1}}, "times": {"_count": 1, "half": {"_count": 1}}, "ostage": {"_count": 1, "": {"_count": 1}}, "support": {"_count": 3, "of": {"_count": 1}, "Ron": {"_count": 1}, "After": {"_count": 1}}, "social": {"_count": 1, "life": {"_count": 1}}, "potions": {"_count": 1, "rather": {"_count": 1}}, "tangled": {"_count": 1, "love": {"_count": 1}}, "already": {"_count": 1, "overlarge": {"_count": 1}}, "fan": {"_count": 1, "club": {"_count": 1}}, "innermost": {"_count": 1, "secrets": {"_count": 1}}, "step": {"_count": 1, "you": {"_count": 1}}, "evening": {"_count": 1, "pumpkin": {"_count": 1}}, "extra": {"_count": 1, "food": {"_count": 1}}, "girlfriend": {"_count": 1, "": {"_count": 1}}, "hands": {"_count": 11, "Hermione": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 2}, "off": {"_count": 3}, "I": {"_count": 1}, "up": {"_count": 1}, "soon": {"_count": 1}}, "Ministry": {"_count": 5, "": {"_count": 1}, "of": {"_count": 1}, "friends": {"_count": 1}, "can": {"_count": 1}, "Apparition": {"_count": 1}}, "talk": {"_count": 1, "of": {"_count": 1}}, "street": {"_count": 2, "this": {"_count": 1}, "": {"_count": 1}}, "cabinet": {"_count": 1, "I": {"_count": 1}}, "case": {"_count": 1, "": {"_count": 1}}, "testimony": {"_count": 1, "before": {"_count": 1}}, "exiled": {"_count": 1, "master": {"_count": 1}}, "son": {"_count": 11, "": {"_count": 6}, "said": {"_count": 1}, "Dudley": {"_count": 1}, "Im": {"_count": 1}, "Morfin": {"_count": 1}, "is": {"_count": 1}}, "thoughts": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "safety": {"_count": 2, "": {"_count": 2}}, "Daily": {"_count": 1, "Prophet": {"_count": 1}}, "goal": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "master": {"_count": 4, "": {"_count": 2}, "Draco": {"_count": 1}, "and": {"_count": 1}}, "foe": {"_count": 1, "": {"_count": 1}}, "loyalty": {"_count": 1, "never": {"_count": 1}}, "energies": {"_count": 1, "have": {"_count": 1}}, "whereabouts": {"_count": 3, "I": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 1}}, "side": {"_count": 7, "immediately": {"_count": 1}, "said": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}, "Harry": {"_count": 1}}, "success": {"_count": 1, "": {"_count": 1}}, "stupidity": {"_count": 2, "": {"_count": 1}, "your": {"_count": 1}}, "idiocy": {"_count": 1, "for": {"_count": 1}}, "courage": {"_count": 1, "one": {"_count": 1}}, "determination": {"_count": 2, "to": {"_count": 2}}, "decisions": {"_count": 1, "but": {"_count": 1}}, "students": {"_count": 5, "without": {"_count": 1}, "things": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}, "Horace": {"_count": 1}}, "staff": {"_count": 1, "are": {"_count": 1}}, "winnings": {"_count": 1, "": {"_count": 1}}, "company": {"_count": 1, "more": {"_count": 1}}, "gold": {"_count": 2, "": {"_count": 1}, "filthy": {"_count": 1}}, "news": {"_count": 1, "from": {"_count": 1}}, "opponent": {"_count": 1, "": {"_count": 1}}, "sleep": {"_count": 4, "": {"_count": 2}, "about": {"_count": 1}, "again": {"_count": 1}}, "boyfriend": {"_count": 1, "": {"_count": 1}}, "watch": {"_count": 1, "": {"_count": 1}}, "airnet": {"_count": 1, "on": {"_count": 1}}, "expulsion": {"_count": 2, "from": {"_count": 1}, "will": {"_count": 1}}, "presence": {"_count": 3, "is": {"_count": 1}, "": {"_count": 1}, "known": {"_count": 1}}, "disciplinary": {"_count": 1, "hearing": {"_count": 1}}, "useless": {"_count": 1, "parents": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "fool": {"_count": 1, "of": {"_count": 1}}, "guard": {"_count": 3, "Potter": {"_count": 1}, "": {"_count": 2}}, "jeans": {"_count": 1, "": {"_count": 1}}, "dulcet": {"_count": 1, "tones": {"_count": 1}}, "anger": {"_count": 2, "like": {"_count": 1}, "discipline": {"_count": 1}}, "Apparation": {"_count": 1, "tests": {"_count": 1}}, "voices": {"_count": 2, "down": {"_count": 2}}, "legs": {"_count": 3, "get": {"_count": 1}, "He": {"_count": 1}, "": {"_count": 1}}, "toads": {"_count": 1, "Will": {"_count": 1}}, "finger": {"_count": 1, "on": {"_count": 1}}, "breakfast": {"_count": 2, "is": {"_count": 1}, "Arry": {"_count": 1}}, "faces": {"_count": 1, "and": {"_count": 1}}, "sons": {"_count": 4, "and": {"_count": 1}, "sent": {"_count": 1}, "been": {"_count": 1}, "attitude": {"_count": 1}}, "Does": {"_count": 1, "it": {"_count": 1}}, "hearing": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "temper": {"_count": 7, "said": {"_count": 1}, "on": {"_count": 1}, "under": {"_count": 1}, "with": {"_count": 3}, "in": {"_count": 1}}, "home": {"_count": 4, "but": {"_count": 1}, "said": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 1}}, "parentage": {"_count": 1, "with": {"_count": 1}}, "story": {"_count": 2, "": {"_count": 1}, "anyway": {"_count": 1}}, "views": {"_count": 3, "are": {"_count": 1}, "ought": {"_count": 1}, "said": {"_count": 1}}, "admirable": {"_count": 1, "haste": {"_count": 1}}, "verdict": {"_count": 1, "": {"_count": 1}}, "lucky": {"_count": 2, "escape": {"_count": 1}, "potion": {"_count": 1}}, "bit": {"_count": 1, "by": {"_count": 1}}, "trunks": {"_count": 2, "": {"_count": 1}, "already": {"_count": 1}}, "drink": {"_count": 1, "": {"_count": 1}}, "position": {"_count": 3, "Ron": {"_count": 1}, "Mr": {"_count": 1}, "said": {"_count": 1}}, "enemys": {"_count": 1, "ears": {"_count": 1}}, "footsteps": {"_count": 1, "in": {"_count": 1}}, "mummy": {"_count": 1, "worrying": {"_count": 1}}, "outgoings": {"_count": 1, "": {"_count": 1}}, "Skiving": {"_count": 1, "Snackboxes": {"_count": 1}}, "fifth": {"_count": 1, "year": {"_count": 1}}, "exams": {"_count": 1, "coming": {"_count": 1}}, "conscience": {"_count": 1, "Hermione": {"_count": 1}}, "memory": {"_count": 1, "or": {"_count": 1}}, "concentration": {"_count": 1, "youre": {"_count": 1}}, "O": {"_count": 6, "": {"_count": 6}}, "efforts": {"_count": 1, "upon": {"_count": 1}}, "fortunes": {"_count": 1, "most": {"_count": 1}}, "teaching": {"_count": 1, "in": {"_count": 1}}, "being": {"_count": 1, "far": {"_count": 1}}, "course": {"_count": 1, "aims": {"_count": 1}}, "reading": {"_count": 1, "": {"_count": 1}}, "rubbish": {"_count": 1, "on": {"_count": 1}}, "futures": {"_count": 1, "for": {"_count": 1}}, "careers": {"_count": 1, "now": {"_count": 1}}, "work": {"_count": 3, "except": {"_count": 1}, "": {"_count": 1}, "private": {"_count": 1}}, "imagination": {"_count": 1, "if": {"_count": 1}}, "punishment": {"_count": 1, "for": {"_count": 1}}, "conversation": {"_count": 1, "": {"_count": 1}}, "bats": {"_count": 1, "and": {"_count": 1}}, "middle": {"_count": 1, "post": {"_count": 1}}, "badge": {"_count": 1, "more": {"_count": 1}}, "future": {"_count": 2, "prospects": {"_count": 1}, "will": {"_count": 1}}, "inspection": {"_count": 4, "": {"_count": 1}, "in": {"_count": 1}, "within": {"_count": 1}, "she": {"_count": 1}}, "dream": {"_count": 2, "diary": {"_count": 1}, "was": {"_count": 1}}, "shouting": {"_count": 1, "matches": {"_count": 1}}, "snails": {"_count": 1, "and": {"_count": 1}}, "inspec": {"_count": 1, "Obviously": {"_count": 1}}, "dinner": {"_count": 1, "": {"_count": 1}}, "pen": {"_count": 1, "pal": {"_count": 1}}, "plate": {"_count": 1, "without": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 2}}, "mixtures": {"_count": 1, "as": {"_count": 1}}, "meeting": {"_count": 1, "places": {"_count": 1}}, "weekend": {"_count": 1, "off": {"_count": 1}}, "idea": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "mail": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "frog": {"_count": 2, "its": {"_count": 1}, "": {"_count": 1}}, "temperaturell": {"_count": 1, "go": {"_count": 1}}, "bed": {"_count": 4, "booked": {"_count": 1}, "mate": {"_count": 1}, "you": {"_count": 1}, "at": {"_count": 1}}, "summer": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 2}}, "cabin": {"_count": 3, "said": {"_count": 1}, "door": {"_count": 1}, "this": {"_count": 1}}, "classes": {"_count": 1, "": {"_count": 1}}, "colleagues": {"_count": 1, "has": {"_count": 1}}, "health": {"_count": 1, "said": {"_count": 1}}, "late": {"_count": 1, "return": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "Firebolt": {"_count": 1, "": {"_count": 1}}, "dressinggown": {"_count": 1, "were": {"_count": 1}}, "portrait": {"_count": 1, "said": {"_count": 1}}, "beds": {"_count": 2, "": {"_count": 1}, "await": {"_count": 1}}, "tiny": {"_count": 1, "little": {"_count": 1}}, "bandages": {"_count": 2, "changed": {"_count": 2}}, "throat": {"_count": 1, "stand": {"_count": 1}}, "visage": {"_count": 1, "young": {"_count": 1}}, "hidey": {"_count": 1, "hole": {"_count": 1}}, "homework": {"_count": 1, "planner": {"_count": 1}}, "defenses": {"_count": 2, "will": {"_count": 1}, "": {"_count": 1}}, "subject": {"_count": 1, "": {"_count": 1}}, "taste": {"_count": 1, "": {"_count": 1}}, "chance": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "date": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "rocker": {"_count": 1, "said": {"_count": 1}}, "interview": {"_count": 1, "it": {"_count": 1}}, "facts": {"_count": 1, "Rookwood": {"_count": 1}}, "Occlumency": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "job": {"_count": 3, "isnt": {"_count": 1}, "to": {"_count": 2}}, "pitiful": {"_count": 1, "performance": {"_count": 1}}, "dismissal": {"_count": 1, "": {"_count": 1}}, "authority": {"_count": 2, "for": {"_count": 1}, "when": {"_count": 1}}, "bravery": {"_count": 1, "said": {"_count": 1}}, "kind": {"_count": 2, "": {"_count": 1}, "Neville": {"_count": 1}}, "evidence": {"_count": 1, "for": {"_count": 1}}, "army": {"_count": 1, "": {"_count": 1}}, "notes": {"_count": 1, "Weasley": {"_count": 1}}, "N": {"_count": 2, "": {"_count": 2}}, "shirts": {"_count": 1, "untucked": {"_count": 1}}, "Basic": {"_count": 1, "Blaze": {"_count": 1}}, "parchment": {"_count": 1, "": {"_count": 1}}, "pants": {"_count": 1, "if": {"_count": 1}}, "enthusiasm": {"_count": 1, "patience": {"_count": 1}}, "Transfiguration": {"_count": 2, "and": {"_count": 1}, "mark": {"_count": 1}}, "Charm": {"_count": 1, "work": {"_count": 1}}, "marks": {"_count": 1, "have": {"_count": 1}}, "end": {"_count": 1, "": {"_count": 1}}, "breath": {"_count": 4, "Hermione": {"_count": 1}, "": {"_count": 2}, "Albus": {"_count": 1}}, "crossbow": {"_count": 1, "the": {"_count": 1}}, "young": {"_count": 1, "Theyre": {"_count": 1}}, "promise": {"_count": 1, "thats": {"_count": 1}}, "journey": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "cauldrons": {"_count": 1, "please": {"_count": 1}}, "papers": {"_count": 1, "said": {"_count": 1}}, "hold": {"_count": 1, "a": {"_count": 1}}, "reference": {"_count": 1, "if": {"_count": 1}}, "dirty": {"_count": 1, "work": {"_count": 1}}, "servants": {"_count": 1, "drive": {"_count": 1}}, "enemies": {"_count": 1, "like": {"_count": 1}}, "bidding": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "laws": {"_count": 1, "we": {"_count": 1}}, "superiority": {"_count": 1, "we": {"_count": 1}}, "boss": {"_count": 2, "will": {"_count": 1}, "that": {"_count": 1}}, "unworthy": {"_count": 1, "lips": {"_count": 1}}, "halfbloods": {"_count": 1, "tongue": {"_count": 1}}, "dreams": {"_count": 2, "": {"_count": 1}, "Ronald": {"_count": 1}}, "race": {"_count": 2, "is": {"_count": 2}}, "sniveling": {"_count": 1, "apologies": {"_count": 1}}, "failure": {"_count": 1, "to": {"_count": 1}}, "greatest": {"_count": 2, "weakness": {"_count": 1}, "strength": {"_count": 1}}, "decision": {"_count": 1, "as": {"_count": 1}}, "men": {"_count": 1, "and": {"_count": 1}}, "Aurors": {"_count": 1, "to": {"_count": 1}}, "fellow": {"_count": 1, "students": {"_count": 1}}, "trip": {"_count": 1, "into": {"_count": 1}}, "aid": {"_count": 1, "at": {"_count": 1}}, "appearance": {"_count": 4, "in": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "after": {"_count": 1}}, "veins": {"_count": 1, "to": {"_count": 1}}, "refuge": {"_count": 1, "": {"_count": 1}}, "struggle": {"_count": 1, "with": {"_count": 1}}, "second": {"_count": 1, "year": {"_count": 1}}, "happiness": {"_count": 1, "than": {"_count": 1}}, "knowing": {"_count": 1, "the": {"_count": 1}}, "peace": {"_count": 1, "of": {"_count": 1}}, "third": {"_count": 1, "year": {"_count": 1}}, "extraordinary": {"_count": 1, "escape": {"_count": 1}}, "cost": {"_count": 1, "and": {"_count": 1}}, "heart": {"_count": 5, "that": {"_count": 1}, "has": {"_count": 1}, "be": {"_count": 2}, "and": {"_count": 1}}, "stuff": {"_count": 3, "": {"_count": 3}}, "I": {"_count": 1, "mean": {"_count": 1}}, "people": {"_count": 3, "were": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}}, "predecessor": {"_count": 1, "": {"_count": 1}}, "responsibility": {"_count": 1, "as": {"_count": 1}}, "security": {"_count": 1, "": {"_count": 1}}, "outer": {"_count": 1, "office": {"_count": 1}}, "protection": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "Junior": {"_count": 1, "Minister": {"_count": 1}}, "servant": {"_count": 3, "": {"_count": 3}}, "mercy": {"_count": 1, "for": {"_count": 1}}, "sacrifice": {"_count": 1, "for": {"_count": 1}}, "true": {"_count": 1, "allegiance": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "ability": {"_count": 2, "protect": {"_count": 1}, "to": {"_count": 1}}, "assistance": {"_count": 1, "in": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "agapanthus": {"_count": 1, "are": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "account": {"_count": 1, "at": {"_count": 1}}, "ownership": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "doorstep": {"_count": 1, "fifteen": {"_count": 1}}, "Invisibility": {"_count": 5, "Cloak": {"_count": 5}}, "Apparition": {"_count": 2, "Test": {"_count": 1}, "Tests": {"_count": 1}}, "considerable": {"_count": 2, "talents": {"_count": 1}, "ingenuity": {"_count": 1}}, "adventure": {"_count": 1, "in": {"_count": 1}}, "owls": {"_count": 1, "before": {"_count": 1}}, "dearest": {"_count": 1, "ambition": {"_count": 1}}, "question": {"_count": 1, "first": {"_count": 1}}, "eggs": {"_count": 1, "while": {"_count": 1}}, "eleven": {"_count": 1, "\u2018Outstanding": {"_count": 1}}, "loser": {"_count": 1, "of": {"_count": 1}}, "pins": {"_count": 1, "woman": {"_count": 1}}, "mate": {"_count": 1, "to": {"_count": 1}}, "full": {"_count": 1, "attention": {"_count": 1}}, "year": {"_count": 1, "of": {"_count": 1}}, "uncle": {"_count": 1, "Marcus": {"_count": 1}}, "Muggle": {"_count": 1, "attire": {"_count": 1}}, "top": {"_count": 1, "priority": {"_count": 1}}, "ambition": {"_count": 1, "to": {"_count": 1}}, "leisure": {"_count": 1, "": {"_count": 1}}, "fullest": {"_count": 1, "attention": {"_count": 1}}, "guts": {"_count": 1, "well": {"_count": 1}}, "copies": {"_count": 1, "of": {"_count": 1}}, "endeavors": {"_count": 1, "tend": {"_count": 1}}, "silver": {"_count": 1, "knife": {"_count": 1}}, "belt": {"_count": 1, "already": {"_count": 1}}, "daughter": {"_count": 3, "": {"_count": 1}, "for": {"_count": 2}}, "ancestors": {"_count": 1, "nor": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "suspicions": {"_count": 2, "Potter": {"_count": 1}, "yes": {"_count": 1}}, "inheritance": {"_count": 1, "with": {"_count": 1}}, "wardrobe": {"_count": 1, "": {"_count": 1}}, "apologies": {"_count": 1, "said": {"_count": 1}}, "magic": {"_count": 2, "to": {"_count": 1}, "through": {"_count": 1}}, "spellbooks": {"_count": 1, "and": {"_count": 1}}, "envelope": {"_count": 1, "said": {"_count": 1}}, "free": {"_count": 1, "evenings": {"_count": 1}}, "party": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "boots": {"_count": 1, "on": {"_count": 1}}, "stupid": {"_count": 1, "socalled": {"_count": 1}}, "eyebrows": {"_count": 1, "is": {"_count": 1}}, "eyebrow": {"_count": 1, "for": {"_count": 1}}, "grandfather": {"_count": 1, "after": {"_count": 1}}, "plan": {"_count": 1, "": {"_count": 1}}, "reliance": {"_count": 1, "in": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "ankle": {"_count": 1, "": {"_count": 1}}, "hero": {"_count": 2, "Dumbledore": {"_count": 1}, "is": {"_count": 1}}, "duty": {"_count": 3, "to": {"_count": 3}}, "words": {"_count": 1, "Hermione": {"_count": 1}}, "uncanny": {"_count": 2, "ability": {"_count": 2}}, "careful": {"_count": 2, "flattery": {"_count": 2}}, "essay": {"_count": 2, "by": {"_count": 2}}, "protective": {"_count": 1, "gloves": {"_count": 1}}, "tests": {"_count": 1, "Twycross": {"_count": 1}}, "hoop": {"_count": 1, "": {"_count": 1}}, "yearning": {"_count": 1, "to": {"_count": 1}}, "hoops": {"_count": 1, "please": {"_count": 1}}, "original": {"_count": 1, "positions": {"_count": 1}}, "destination": {"_count": 1, "and": {"_count": 1}}, "trainers": {"_count": 1, "are": {"_count": 1}}, "compartment": {"_count": 1, "on": {"_count": 1}}, "quest": {"_count": 1, "to": {"_count": 1}}, "excuse": {"_count": 1, "for": {"_count": 1}}, "doings": {"_count": 1, "have": {"_count": 1}}, "famous": {"_count": 1, "pronouncements": {"_count": 1}}, "disposal": {"_count": 1, "": {"_count": 1}}, "return": {"_count": 1, "": {"_count": 1}}, "final": {"_count": 2, "word": {"_count": 1}, "warning": {"_count": 1}}, "crimes": {"_count": 1, "": {"_count": 1}}, "sakes": {"_count": 2, "they": {"_count": 1}, "you": {"_count": 1}}, "bath": {"_count": 1, "once": {"_count": 1}}, "garden": {"_count": 1, "": {"_count": 1}}, "loss": {"_count": 1, "": {"_count": 1}}, "spirit": {"_count": 1, "lingers": {"_count": 1}}, "forest": {"_count": 1, "home": {"_count": 1}}, "manyeyed": {"_count": 1, "descendants": {"_count": 1}}, "human": {"_count": 1, "friends": {"_count": 1}}, "poor": {"_count": 1, "friend": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "death": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "privileged": {"_count": 1, "insight": {"_count": 1}}, "hearts": {"_count": 1, "desire": {"_count": 1}}, "schoolbag": {"_count": 1, "said": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "chest": {"_count": 2, "": {"_count": 2}}, "blood": {"_count": 5, "is": {"_count": 1}, "status": {"_count": 1}, "and": {"_count": 1}, "believing": {"_count": 1}, "": {"_count": 1}}, "energy": {"_count": 1, "sir": {"_count": 1}}, "guards": {"_count": 1, "": {"_count": 1}}, "backup": {"_count": 1, "has": {"_count": 1}}, "orders": {"_count": 3, "he": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 1}}, "grip": {"_count": 1, "then": {"_count": 1}}, "ingenious": {"_count": 1, "coins": {"_count": 1}}, "Phoenix": {"_count": 1, "lot": {"_count": 1}}, "options": {"_count": 1, "Draco": {"_count": 1}}, "unintentional": {"_count": 1, "victims": {"_count": 1}}, "deathbed": {"_count": 2, "then": {"_count": 1}, "with": {"_count": 1}}, "match": {"_count": 1, "you": {"_count": 1}}, "Felix": {"_count": 1, "potion": {"_count": 1}}, "Heads": {"_count": 1, "of": {"_count": 1}}, "funeral": {"_count": 1, "": {"_count": 1}}, "reception": {"_count": 1, "will": {"_count": 1}}, "liberty": {"_count": 1, "Lucius": {"_count": 1}}, "niece": {"_count": 1, "Bellatrix": {"_count": 1}}, "readers": {"_count": 1, "will": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "point": {"_count": 1, "I": {"_count": 1}}, "departure": {"_count": 1, "from": {"_count": 1}}, "shoulders": {"_count": 1, "": {"_count": 1}}, "separate": {"_count": 1, "ways": {"_count": 1}}, "eyesight": {"_count": 1, "really": {"_count": 1}}, "ribs": {"_count": 1, "your": {"_count": 1}}, "tooth": {"_count": 1, "and": {"_count": 1}}, "signature": {"_count": 1, "move": {"_count": 1}}, "two": {"_count": 1, "wands": {"_count": 1}}, "ghoul": {"_count": 1, "isnt": {"_count": 1}}, "uvula": {"_count": 1, "": {"_count": 1}}, "rest": {"_count": 1, "": {"_count": 1}}, "safetys": {"_count": 1, "much": {"_count": 1}}, "fly": {"_count": 1, "by": {"_count": 1}}, "average": {"_count": 1, "book": {"_count": 1}}, "underpants": {"_count": 1, "to": {"_count": 1}}, "insolence": {"_count": 1, "and": {"_count": 1}}, "methods": {"_count": 1, "Minister": {"_count": 1}}, "expression": {"_count": 1, "she": {"_count": 1}}, "chair": {"_count": 1, "Im": {"_count": 1}}, "rucksack": {"_count": 1, "this": {"_count": 1}}, "Trace": {"_count": 1, "on": {"_count": 1}}, "toothbrush": {"_count": 1, "": {"_count": 1}}, "mums": {"_count": 1, "letter": {"_count": 1}}, "fire": {"_count": 1, "its": {"_count": 1}}, "exDefense": {"_count": 1, "Against": {"_count": 1}}, "kid": {"_count": 1, "to": {"_count": 1}}, "wife": {"_count": 2, "Cattermole": {"_count": 1}, "in": {"_count": 1}}, "wifes": {"_count": 1, "Blood": {"_count": 1}}, "every": {"_count": 1, "move": {"_count": 1}}, "arrival": {"_count": 1, "at": {"_count": 1}}, "responses": {"_count": 1, "to": {"_count": 1}}, "husband": {"_count": 1, "youve": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "expectations": {"_count": 1, "": {"_count": 1}}, "spattergroit": {"_count": 1, "and": {"_count": 1}}, "treasure": {"_count": 2, "is": {"_count": 2}}, "bunk": {"_count": 1, "I": {"_count": 1}}, "mistake": {"_count": 1, "at": {"_count": 1}}, "fears": {"_count": 1, "": {"_count": 1}}, "absence": {"_count": 1, "": {"_count": 1}}, "cowardice": {"_count": 1, "your": {"_count": 1}}, "presumption": {"_count": 1, "Presumption": {"_count": 1}}, "trap": {"_count": 2, "shut": {"_count": 2}}, "girl": {"_count": 1, "back": {"_count": 1}}, "devotion": {"_count": 1, "to": {"_count": 1}}, "take": {"_count": 1, "on": {"_count": 1}}, "pretty": {"_count": 1, "little": {"_count": 1}}, "fatherll": {"_count": 1, "reward": {"_count": 1}}, "purpose": {"_count": 1, "": {"_count": 1}}, "destruction": {"_count": 1, "Mr": {"_count": 1}}, "pick": {"_count": 1, "once": {"_count": 1}}, "solution": {"_count": 1, "then": {"_count": 1}}, "generous": {"_count": 1, "hospitality": {"_count": 1}}, "credit": {"_count": 1, "is": {"_count": 1}}, "ah": {"_count": 1, "sympathetic": {"_count": 1}}, "wrapper": {"_count": 1, "then": {"_count": 1}}, "curfew": {"_count": 1, "": {"_count": 1}}, "Cloak": {"_count": 2, "back": {"_count": 1}, "": {"_count": 1}}, "half": {"_count": 1, "mad": {"_count": 1}}, "clever": {"_count": 1, "speeches": {"_count": 1}}, "lookout": {"_count": 1, "isnt": {"_count": 1}}, "urgent": {"_count": 1, "request": {"_count": 1}}, "many": {"_count": 1, "ineptitudes": {"_count": 1}}, "night": {"_count": 1, "to": {"_count": 1}}, "Ravenclaws": {"_count": 1, "in": {"_count": 1}}, "charges": {"_count": 1, "in": {"_count": 1}}, "prefects": {"_count": 1, "But": {"_count": 1}}, "dead": {"_count": 1, "with": {"_count": 1}}, "injured": {"_count": 1, "": {"_count": 1}}, "theory": {"_count": 1, "said": {"_count": 1}}, "precious": {"_count": 1, "little": {"_count": 1}}, "destinies": {"_count": 1, "together": {"_count": 1}}, "enormous": {"_count": 1, "courage": {"_count": 1}}, "sufferings": {"_count": 1, "which": {"_count": 1}}, "tomb": {"_count": 1, "": {"_count": 1}}, "hot": {"_count": 1, "head": {"_count": 1}}, "good": {"_count": 1, "heart": {"_count": 1}}, "fighters": {"_count": 1, "": {"_count": 1}}, "mistakes": {"_count": 1, "Riddle": {"_count": 1}}, "Mudblood": {"_count": 1, "mother": {"_count": 1}}}, "lately": {"_count": 41, "have": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 2, "bet": {"_count": 1}, "noticed": {"_count": 1}}, "": {"_count": 18, "?": {"_count": 8}, ".": {"_count": 8}, "!": {"_count": 2}}, "said": {"_count": 4, "Hermione": {"_count": 1}, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}, "Mr": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "shes": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "many": {"_count": 1, "yawns": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "helped": {"_count": 1, "along": {"_count": 1}}, "that": {"_count": 1, "his": {"_count": 1}}, "because": {"_count": 1, "Mum": {"_count": 1}}, "Ginny": {"_count": 1, "persisted": {"_count": 1}}, "taken": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Remus": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "whether": {"_count": 1, "Snape": {"_count": 1}}, "theyll": {"_count": 1, "see": {"_count": 1}}}, "expected": {"_count": 151, "Mrs": {"_count": 1, "Dursley": {"_count": 1}}, "this": {"_count": 6, "he": {"_count": 1}, "than": {"_count": 1}, "but": {"_count": 2}, "yet": {"_count": 1}, "and": {"_count": 1}}, "always": {"_count": 1, "knew": {"_count": 1}}, "more": {"_count": 3, "marble": {"_count": 1}, "muttering": {"_count": 1}, "people": {"_count": 1}}, "something": {"_count": 5, "like": {"_count": 2}, "of": {"_count": 1}, "much": {"_count": 2}}, "you": {"_count": 4, "to": {"_count": 4}}, "to": {"_count": 21, "run": {"_count": 2}, "feel": {"_count": 1}, "live": {"_count": 1}, "look": {"_count": 1}, "survive": {"_count": 1}, "have": {"_count": 2}, "lie": {"_count": 1}, "react": {"_count": 1}, "go": {"_count": 1}, "hear": {"_count": 2}, "be": {"_count": 1}, "receive": {"_count": 2}, "delight": {"_count": 1}, "find": {"_count": 1}, "die": {"_count": 1}, "appreciate": {"_count": 1}, "encounter": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 2}}, "Hermione": {"_count": 1, "to": {"_count": 1}}, "Voldemort": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 13, "wasnt": {"_count": 1}, "to": {"_count": 7}, "but": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}, "He": {"_count": 1}}, "Ron": {"_count": 3, "but": {"_count": 1}, "to": {"_count": 2}}, "Lupin": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "Lupin": {"_count": 1}}, "better": {"_count": 2, "of": {"_count": 1}, "Lucius": {"_count": 1}}, "that": {"_count": 3, "and": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "Dumbledore": {"_count": 4, "to": {"_count": 4}}, "reassurance": {"_count": 1, "from": {"_count": 1}}, "however": {"_count": 1, "his": {"_count": 1}}, "nothing": {"_count": 2, "less": {"_count": 1}, "else": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "of": {"_count": 4, "you": {"_count": 4}}, "he": {"_count": 2, "found": {"_count": 1}, "strode": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "him": {"_count": 10, "to": {"_count": 10}}, "Dad": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 5, "better": {"_count": 1}, "rather": {"_count": 1}, "snake": {"_count": 1}, "protection": {"_count": 1}, "sixteenyearold": {"_count": 1}}, "them": {"_count": 3, "to": {"_count": 2}, "home": {"_count": 1}}, "the": {"_count": 7, "hearing": {"_count": 1}, "common": {"_count": 1}, "elfs": {"_count": 1}, "day": {"_count": 1}, "trials": {"_count": 1}, "question": {"_count": 1}, "golden": {"_count": 1}}, "before": {"_count": 1, "hed": {"_count": 1}}, "players": {"_count": 1, "who": {"_count": 1}}, "Hedwig": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "for": {"_count": 1}}, "ter": {"_count": 1, "tell": {"_count": 1}}, "her": {"_count": 2, "but": {"_count": 1}, "to": {"_count": 1}}, "in": {"_count": 1, "Professor": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "an": {"_count": 1, "upswing": {"_count": 1}}, "not": {"_count": 1, "only": {"_count": 1}}, "preferential": {"_count": 1, "treatment": {"_count": 1}}, "his": {"_count": 1, "plan": {"_count": 1}}, "anything": {"_count": 2, "better": {"_count": 1}, "less": {"_count": 1}}, "top": {"_count": 1, "grades": {"_count": 1}}, "spectacular": {"_count": 1, "things": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "speeches": {"_count": 1, "probably": {"_count": 1}}, "another": {"_count": 1, "change": {"_count": 1}}, "and": {"_count": 1, "wanted": {"_count": 1}}, "she": {"_count": 1, "jumped": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "Hermiones": {"_count": 1, "anger": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "or": {"_count": 1, "dreamed": {"_count": 1}}}, "shocked": {"_count": 68, "and": {"_count": 3, "angry": {"_count": 1}, "impressed": {"_count": 1}, "reproachful": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 28}}, "to": {"_count": 4, "see": {"_count": 2}, "find": {"_count": 1}, "discover": {"_count": 1}}, "he": {"_count": 1, "stopped": {"_count": 1}}, "that": {"_count": 3, "anyone": {"_count": 1}, "Harry": {"_count": 1}, "Draco": {"_count": 1}}, "Masons": {"_count": 1, "back": {"_count": 1}}, "silence": {"_count": 2, "when": {"_count": 1}, "then": {"_count": 1}}, "look": {"_count": 1, "on": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 3, "how": {"_count": 1}, "his": {"_count": 1}, "first": {"_count": 1}}, "curiosity": {"_count": 1, "and": {"_count": 1}}, "cat": {"_count": 1, "wandering": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "faces": {"_count": 1, "afforded": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "in": {"_count": 1}}, "others": {"_count": 1, "even": {"_count": 1}}, "murmur": {"_count": 1, "around": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "Slughorn": {"_count": 1, "himself": {"_count": 1}}, "than": {"_count": 1, "they": {"_count": 1}}, "pause": {"_count": 1, "": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "even": {"_count": 1}, "turned": {"_count": 1}}, "by": {"_count": 1, "these": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 1, "like": {"_count": 1}}}, "angry": {"_count": 181, "": {"_count": 33, ".": {"_count": 29}, "?": {"_count": 4}}, "and": {"_count": 11, "worried": {"_count": 1}, "scared": {"_count": 2}, "chucked": {"_count": 1}, "offended": {"_count": 1}, "start": {"_count": 1}, "resentful": {"_count": 1}, "embarrassed": {"_count": 1}, "disapproving": {"_count": 1}, "": {"_count": 1}, "frustrated": {"_count": 1}}, "letter": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 5, "could": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}, "felt": {"_count": 1}, "did": {"_count": 1}}, "moved": {"_count": 1, "into": {"_count": 1}}, "red": {"_count": 3, "boils": {"_count": 1}, "patches": {"_count": 1}, "burns": {"_count": 1}}, "goose": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 6, "from": {"_count": 2}, "": {"_count": 2}, "said": {"_count": 1}, "burst": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "with": {"_count": 19, "the": {"_count": 3}, "Dobby": {"_count": 1}, "Harry": {"_count": 2}, "her": {"_count": 2}, "himself": {"_count": 2}, "him": {"_count": 1}, "Umbridge": {"_count": 1}, "me": {"_count": 1}, "Lucius": {"_count": 1}, "Sn": {"_count": 1}, "Snape": {"_count": 2}, "herself": {"_count": 1}, "Dumbledore": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "Harry": {"_count": 1}, "Mum": {"_count": 1}}, "bull": {"_count": 1, "and": {"_count": 1}}, "screech": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 1, "several": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "snake": {"_count": 2, "": {"_count": 2}}, "outburst": {"_count": 3, "from": {"_count": 2}, "but": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "little": {"_count": 2, "eyes": {"_count": 1}, "titter": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 2, "but": {"_count": 1}, "we": {"_count": 1}}, "voices": {"_count": 3, "through": {"_count": 1}, "coming": {"_count": 1}, "growing": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "missed": {"_count": 1}}, "wolverines": {"_count": 1, "": {"_count": 1}}, "veela": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "would": {"_count": 1}}, "bees": {"_count": 1, "was": {"_count": 1}}, "look": {"_count": 3, "at": {"_count": 2}, "in": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "that": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "Snape": {"_count": 1, "Harry": {"_count": 1}}, "outcry": {"_count": 1, "from": {"_count": 1}}, "yet": {"_count": 1, "there": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "but": {"_count": 3, "his": {"_count": 1}, "forced": {"_count": 1}, "Harry": {"_count": 1}}, "his": {"_count": 1, "leg": {"_count": 1}}, "blotches": {"_count": 1, "of": {"_count": 1}}, "wizard": {"_count": 1, "stood": {"_count": 1}}, "at": {"_count": 8, "them": {"_count": 1}, "everybody": {"_count": 1}, "last": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 1}, "Tonks": {"_count": 1}, "how": {"_count": 1}, "me": {"_count": 1}}, "looks": {"_count": 1, "out": {"_count": 1}}, "hed": {"_count": 1, "perform": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "cat": {"_count": 1, "": {"_count": 1}}, "hiss": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 3, "something": {"_count": 1}, "Rons": {"_count": 1}, "all": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "by": {"_count": 1, "saying": {"_count": 1}}, "tears": {"_count": 3, "he": {"_count": 1}, "spilling": {"_count": 1}, "sparkling": {"_count": 1}}, "nor": {"_count": 1, "worried": {"_count": 1}}, "yells": {"_count": 1, "and": {"_count": 1}}, "faces": {"_count": 1, "the": {"_count": 1}}, "weal": {"_count": 1, "there": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "nod": {"_count": 1, "and": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "doesn": {"_count": 1, "cover": {"_count": 1}}, "protests": {"_count": 1, "and": {"_count": 1}}, "muttering": {"_count": 1, "and": {"_count": 1}}, "bowtruckle": {"_count": 1, "flexing": {"_count": 1}}, "desperate": {"_count": 1, "and": {"_count": 1}}, "Narcissa": {"_count": 1, "very": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "repeated": {"_count": 1, "Snape": {"_count": 1}}, "centaurs": {"_count": 1, "\u2018filthy": {"_count": 1}}, "movement": {"_count": 1, "toward": {"_count": 1}}, "drunken": {"_count": 1, "titter": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "retort": {"_count": 1, "": {"_count": 1}}, "go": {"_count": 1, "and": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "purple": {"_count": 1, "blisters": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "color": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 1, "that": {"_count": 1}}, "At": {"_count": 1, "this": {"_count": 1}}, "half": {"_count": 1, "relieved": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "burn": {"_count": 1, "beneath": {"_count": 1}}, "confronting": {"_count": 1, "his": {"_count": 1}}, "burning": {"_count": 1, "scar": {"_count": 1}}, "mutinous": {"_count": 1, "": {"_count": 1}}}, "After": {"_count": 169, "all": {"_count": 18, "they": {"_count": 1}, "hes": {"_count": 1}, "HeWho": {"_count": 1}, "hed": {"_count": 1}, "to": {"_count": 1}, "Mr": {"_count": 1}, "that": {"_count": 1}, "our": {"_count": 2}, "the": {"_count": 2}, "Cornelius": {"_count": 1}, "when": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 1}, "those": {"_count": 1}}, "lunch": {"_count": 1, "they": {"_count": 1}}, "asking": {"_count": 1, "Harry": {"_count": 1}}, "a": {"_count": 59, "minute": {"_count": 10}, "few": {"_count": 16}, "meal": {"_count": 1}, "minutes": {"_count": 1}, "good": {"_count": 1}, "quick": {"_count": 2}, "hurried": {"_count": 2}, "while": {"_count": 10}, "quarter": {"_count": 1}, "long": {"_count": 3}, "pause": {"_count": 1}, "moment": {"_count": 7}, "couple": {"_count": 2}, "slight": {"_count": 1}, "moments": {"_count": 1}}, "burning": {"_count": 1, "all": {"_count": 1}}, "what": {"_count": 7, "seemed": {"_count": 4}, "McGonagall": {"_count": 1}, "felt": {"_count": 1}, "Sirius": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "half": {"_count": 3, "an": {"_count": 3}}, "dinner": {"_count": 4, "the": {"_count": 2}, "everyone": {"_count": 1}, "they": {"_count": 1}}, "you": {"_count": 9, "Harry": {"_count": 4}, "said": {"_count": 2}, "": {"_count": 1}, "left": {"_count": 1}, "have": {"_count": 1}}, "that": {"_count": 5, "they": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}}, "ten": {"_count": 4, "noisy": {"_count": 1}, "minutes": {"_count": 3}}, "breakfast": {"_count": 3, "Harry": {"_count": 1}, "they": {"_count": 1}, "Hermione": {"_count": 1}}, "me": {"_count": 2, "please": {"_count": 1}, "I": {"_count": 1}}, "boggarts": {"_count": 1, "they": {"_count": 1}}, "the": {"_count": 4, "last": {"_count": 1}, "lesson": {"_count": 1}, "darkness": {"_count": 1}, "usual": {"_count": 1}}, "about": {"_count": 4, "a": {"_count": 2}, "twenty": {"_count": 1}, "fifty": {"_count": 1}}, "fifteen": {"_count": 1, "more": {"_count": 1}}, "hed": {"_count": 1, "got": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "several": {"_count": 5, "more": {"_count": 1}, "long": {"_count": 1}, "minutes": {"_count": 1}, "moments": {"_count": 2}}, "youd": {"_count": 1, "watched": {"_count": 1}}, "looking": {"_count": 1, "carefully": {"_count": 1}}, "five": {"_count": 2, "minutes": {"_count": 2}}, "lying": {"_count": 1, "in": {"_count": 1}}, "putting": {"_count": 1, "four": {"_count": 1}}, "Im": {"_count": 1, "gone": {"_count": 1}}, "months": {"_count": 1, "and": {"_count": 1}}, "weve": {"_count": 1, "just": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "break": {"_count": 1, "she": {"_count": 1}}, "two": {"_count": 3, "hours": {"_count": 1}, "days": {"_count": 1}, "nights": {"_count": 1}}, "fixing": {"_count": 1, "the": {"_count": 1}}, "letting": {"_count": 1, "in": {"_count": 1}}, "everything": {"_count": 1, "Fudge": {"_count": 1}}, "Umbridge": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "walks": {"_count": 1}}, "an": {"_count": 2, "hour": {"_count": 1}, "interval": {"_count": 1}}, "glancing": {"_count": 2, "once": {"_count": 1}, "at": {"_count": 1}}, "theyve": {"_count": 1, "read": {"_count": 1}}, "opening": {"_count": 1, "his": {"_count": 1}}, "squinting": {"_count": 1, "at": {"_count": 1}}, "everyones": {"_count": 1, "gone": {"_count": 1}}, "another": {"_count": 2, "quarter": {"_count": 1}, "short": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "their": {"_count": 1, "narrow": {"_count": 1}}, "I": {"_count": 1, "saved": {"_count": 1}}, "one": {"_count": 1, "last": {"_count": 1}}}, "No": {"_count": 974, "she": {"_count": 13, "said": {"_count": 7}, "muttered": {"_count": 1}, "sighed": {"_count": 1}, "probably": {"_count": 1}, "replied": {"_count": 2}, "bludgering": {"_count": 1}}, "thank": {"_count": 2, "you": {"_count": 2}}, "one": {"_count": 54, "knows": {"_count": 5}, "ever": {"_count": 3}, "": {"_count": 2}, "does": {"_count": 1}, "was": {"_count": 2}, "seemed": {"_count": 2}, "could": {"_count": 2}, "would": {"_count": 5}, "asked": {"_count": 1}, "wants": {"_count": 2}, "not": {"_count": 1}, "regrets": {"_count": 1}, "screamed": {"_count": 1}, "made": {"_count": 1}, "said": {"_count": 6}, "else": {"_count": 1}, "in": {"_count": 3}, "can": {"_count": 3}, "there": {"_count": 1}, "moved": {"_count": 2}, "spoke": {"_count": 3}, "yet": {"_count": 1}, "answered": {"_count": 1}, "took": {"_count": 1}, "from": {"_count": 1}, "tells": {"_count": 1}, "had": {"_count": 1}}, "problems": {"_count": 1, "were": {"_count": 1}}, "sir": {"_count": 6, "house": {"_count": 1}, "nor": {"_count": 1}, "it": {"_count": 1}, "said": {"_count": 1}, "Ill": {"_count": 1}, "of": {"_count": 1}}, "thanks": {"_count": 7, "said": {"_count": 6}, "I": {"_count": 1}}, "he": {"_count": 31, "said": {"_count": 13}, "wouldnt": {"_count": 1}, "was": {"_count": 6}, "hissed": {"_count": 1}, "did": {"_count": 2}, "didnt": {"_count": 1}, "hasnt": {"_count": 2}, "couldnt": {"_count": 2}, "cant": {"_count": 1}, "doesnt": {"_count": 1}, "moaned": {"_count": 1}}, "well": {"_count": 3, "ignore": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "post": {"_count": 1, "on": {"_count": 1}}, "arguments": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 181, "Harry": {"_count": 100}, "Ron": {"_count": 19}, "Riddle": {"_count": 1}, "Dudley": {"_count": 1}, "Mr": {"_count": 3}, "Hermione": {"_count": 11}, "Lupin": {"_count": 1}, "Bagman": {"_count": 1}, "Sirius": {"_count": 3}, "Dumbledore": {"_count": 9}, "Moody": {"_count": 2}, "Cedric": {"_count": 1}, "the": {"_count": 2}, "Neville": {"_count": 1}, "Cho": {"_count": 1}, "Ginny": {"_count": 2}, "Hagrid": {"_count": 2}, "Tonks": {"_count": 2}, "Mrs": {"_count": 1}, "a": {"_count": 1}, "Luna": {"_count": 2}, "Snape": {"_count": 3}, "Umbridge": {"_count": 2}, "Fudge": {"_count": 1}, "Aunt": {"_count": 1}, "Myrtle": {"_count": 1}, "Katie": {"_count": 1}, "Bill": {"_count": 1}, "Griphook": {"_count": 1}, "Fleur": {"_count": 1}, "Ollivander": {"_count": 1}, "Seamus": {"_count": 1}, "Voldemort": {"_count": 1}}, "Harry": {"_count": 27, "said": {"_count": 4}, "he": {"_count": 1}, "lied": {"_count": 4}, "I": {"_count": 3}, "whispered": {"_count": 1}, "": {"_count": 1}, "called": {"_count": 1}, "the": {"_count": 1}, "muttered": {"_count": 1}, "its": {"_count": 1}, "Harry": {"_count": 1}, "Potter": {"_count": 2}, "youve": {"_count": 1}, "can": {"_count": 1}, "admitted": {"_count": 1}, "dear": {"_count": 1}, "you": {"_count": 1}, "corrected": {"_count": 1}}, "two": {"_count": 1, "Ollivander": {"_count": 1}}, "no": {"_count": 54, "here": {"_count": 1}, "not": {"_count": 4}, "no": {"_count": 10}, "": {"_count": 2}, "Im": {"_count": 7}, "hes": {"_count": 1}, "you": {"_count": 1}, "its": {"_count": 3}, "Harry": {"_count": 2}, "thats": {"_count": 2}, "Vi": {"_count": 1}, "more": {"_count": 1}, "I": {"_count": 5}, "but": {"_count": 1}, "said": {"_count": 2}, "Ill": {"_count": 2}, "houseelves": {"_count": 1}, "silly": {"_count": 1}, "the": {"_count": 1}, "Filch": {"_count": 1}, "my": {"_count": 1}, "when": {"_count": 1}, "these": {"_count": 1}, "we": {"_count": 1}, "message": {"_count": 1}}, "dont": {"_count": 6, "you": {"_count": 1}, "said": {"_count": 1}, "bother": {"_count": 1}, "open": {"_count": 2}, "honestly": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 2}}, "need": {"_count": 8, "to": {"_count": 5}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 67, "dont": {"_count": 15}, "wont": {"_count": 2}, "havent": {"_count": 4}, "I": {"_count": 1}, "cant": {"_count": 3}, "mean": {"_count": 1}, "wasnt": {"_count": 2}, "think": {"_count": 5}, "how": {"_count": 1}, "would": {"_count": 1}, "wouldnt": {"_count": 3}, "usually": {"_count": 1}, "just": {"_count": 3}, "couldnt": {"_count": 1}, "agree": {"_count": 1}, "reckon": {"_count": 1}, "thought": {"_count": 1}, "was": {"_count": 2}, "wanna": {"_count": 1}, "acquired": {"_count": 1}, "suppose": {"_count": 1}, "am": {"_count": 1}, "had": {"_count": 1}, "will": {"_count": 1}, "didnt": {"_count": 5}, "did": {"_count": 2}, "cannot": {"_count": 1}, "of": {"_count": 1}, "only": {"_count": 1}, "heard": {"_count": 1}, "should": {"_count": 1}, "see": {"_count": 1}}, "moren": {"_count": 1, "four": {"_count": 1}}, "wonder": {"_count": 7, "hes": {"_count": 1}, "Snapes": {"_count": 1}, "you": {"_count": 1}, "they": {"_count": 2}, "he": {"_count": 1}, "tempers": {"_count": 1}}, "sooner": {"_count": 7, "were": {"_count": 1}, "had": {"_count": 6}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 5, "the": {"_count": 1}, "with": {"_count": 1}, "another": {"_count": 1}, "at": {"_count": 1}, "sneaking": {"_count": 1}}, "we": {"_count": 6, "dont": {"_count": 1}, "werent": {"_count": 1}, "gave": {"_count": 1}, "havent": {"_count": 1}, "got": {"_count": 1}, "shouldnt": {"_count": 1}}, "sign": {"_count": 5, "of": {"_count": 5}}, "Im": {"_count": 19, "alone": {"_count": 1}, "not": {"_count": 10}, "sorry": {"_count": 3}, "fine": {"_count": 1}, "just": {"_count": 1}, "very": {"_count": 1}, "afraid": {"_count": 1}, "serious": {"_count": 1}}, "": {"_count": 108, ".": {"_count": 35}, "!": {"_count": 71}, "?": {"_count": 2}}, "Charlie": {"_count": 1, "your": {"_count": 1}}, "more": {"_count": 9, "dragon": {"_count": 1}, "studying": {"_count": 1}, "detective": {"_count": 1}, "has": {"_count": 1}, "do": {"_count": 1}, "is": {"_count": 1}, "pretending": {"_count": 1}, "than": {"_count": 1}, "please": {"_count": 1}}, "were": {"_count": 2, "in": {"_count": 1}, "not": {"_count": 1}}, "listen": {"_count": 5, "get": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "I": {"_count": 1}}, "but": {"_count": 6, "its": {"_count": 1}, "Well": {"_count": 1}, "Professor": {"_count": 1}, "there": {"_count": 1}, "look": {"_count": 1}, "Ron": {"_count": 1}}, "doubt": {"_count": 7, "they": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 2}, "a": {"_count": 1}, "it": {"_count": 1}, "those": {"_count": 1}}, "it": {"_count": 17, "isnt": {"_count": 6}, "was": {"_count": 5}, "ruddy": {"_count": 1}, "won": {"_count": 1}, "doesnt": {"_count": 3}, "did": {"_count": 1}}, "cards": {"_count": 1, "no": {"_count": 1}}, "croaked": {"_count": 1, "Harry": {"_count": 1}}, "problem": {"_count": 12, "said": {"_count": 10}, "Molly": {"_count": 1}, "he": {"_count": 1}}, "note": {"_count": 1, "Car": {"_count": 1}}, "offense": {"_count": 3, "sir": {"_count": 1}, "but": {"_count": 2}}, "Arthur": {"_count": 2, "no": {"_count": 1}, "No": {"_count": 1}}, "idea": {"_count": 22, "Harry": {"_count": 3}, "said": {"_count": 12}, "sit": {"_count": 1}, "who": {"_count": 1}, "ask": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "where": {"_count": 1}, "but": {"_count": 1}}, "ones": {"_count": 15, "lasted": {"_count": 2}, "ever": {"_count": 2}, "died": {"_count": 1}, "going": {"_count": 2}, "making": {"_count": 1}, "tried": {"_count": 2}, "done": {"_count": 1}, "lived": {"_count": 1}, "denying": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}}, "magic": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "can": {"_count": 1}}, "honestly": {"_count": 2, "didnt": {"_count": 1}, "its": {"_count": 1}}, "second": {"_count": 1, "year": {"_count": 1}}, "Hermione": {"_count": 3, "agreed": {"_count": 1}, "muttered": {"_count": 1}, "I": {"_count": 1}}, "its": {"_count": 14, "not": {"_count": 5}, "been": {"_count": 2}, "just": {"_count": 2}, "okay": {"_count": 1}, "a": {"_count": 1}, "company": {"_count": 1}, "the": {"_count": 1}, "because": {"_count": 1}}, "point": {"_count": 6, "denying": {"_count": 1}, "Mr": {"_count": 1}, "pretending": {"_count": 1}, "at": {"_count": 1}, "now": {"_count": 1}, "locking": {"_count": 1}}, "really": {"_count": 3, "I": {"_count": 1}, "": {"_count": 1}, "Molly": {"_count": 1}}, "this": {"_count": 3, "is": {"_count": 2}, "will": {"_count": 1}}, "Fawkes": {"_count": 1, "the": {"_count": 1}}, "student": {"_count": 2, "is": {"_count": 2}}, "Dumbledore": {"_count": 3, "": {"_count": 1}, "I": {"_count": 1}, "repeated": {"_count": 1}}, "afternoon": {"_count": 1, "ever": {"_count": 1}}, "dress": {"_count": 1, "sense": {"_count": 1}}, "Vernon": {"_count": 1, "hiccuped": {"_count": 1}}, "all": {"_count": 1, "in": {"_count": 1}}, "form": {"_count": 2, "no": {"_count": 2}}, "way": {"_count": 10, "Ravenclaw": {"_count": 1}, "": {"_count": 7}, "said": {"_count": 2}}, "broomstick": {"_count": 1, "would": {"_count": 1}}, "lets": {"_count": 2, "visit": {"_count": 1}, "see": {"_count": 1}}, "card": {"_count": 1, "": {"_count": 1}}, "message": {"_count": 1, "of": {"_count": 1}}, "Potter": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "breath": {"_count": 1, "of": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "weeping": {"_count": 1, "Hagrid": {"_count": 1}}, "cats": {"_count": 1, "": {"_count": 1}}, "go": {"_count": 1, "away": {"_count": 1}}, "Ron": {"_count": 2, "said": {"_count": 1}, "admitted": {"_count": 1}}, "hes": {"_count": 7, "not": {"_count": 3}, "off": {"_count": 1}, "just": {"_count": 1}, "busy": {"_count": 1}, "still": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "broken": {"_count": 1, "windows": {"_count": 1}}, "the": {"_count": 3, "thing": {"_count": 1}, "Lovegoods": {"_count": 1}, "diadem": {"_count": 1}}, "matter": {"_count": 7, "how": {"_count": 2}, "where": {"_count": 1}, "Potter": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}, "Bogrod": {"_count": 1}}, "consideration": {"_count": 1, "at": {"_count": 1}}, "ambition": {"_count": 1, "unless": {"_count": 1}}, "Pain": {"_count": 1, "No": {"_count": 1}}, "Stain": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "Harry": {"_count": 1}}, "youre": {"_count": 4, "not": {"_count": 3}, "obviously": {"_count": 1}}, "He": {"_count": 1, "moved": {"_count": 1}}, "nonhuman": {"_count": 1, "creature": {"_count": 1}}, "master": {"_count": 1, "": {"_count": 1}}, "Mum": {"_count": 1, "": {"_count": 1}}, "sound": {"_count": 1, "came": {"_count": 1}}, "that": {"_count": 1, "sounds": {"_count": 1}}, "of": {"_count": 11, "course": {"_count": 11}}, "surprises": {"_count": 1, "there": {"_count": 1}}, "seriously": {"_count": 1, "George": {"_count": 1}}, "longer": {"_count": 1, "shellless": {"_count": 1}}, "respect": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 8, "were": {"_count": 1}, "cant": {"_count": 1}, "dont": {"_count": 2}, "got": {"_count": 1}, "do": {"_count": 1}, "wont": {"_count": 1}, "had": {"_count": 1}}, "don": {"_count": 1, "go": {"_count": 1}}, "excuses": {"_count": 1, "": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "chance": {"_count": 2, "of": {"_count": 1}, "at": {"_count": 1}}, "Ritas": {"_count": 1, "using": {"_count": 1}}, "thats": {"_count": 3, "not": {"_count": 2}, "your": {"_count": 1}}, "my": {"_count": 2, "Lord": {"_count": 2}}, "you": {"_count": 14, "didnt": {"_count": 2}, "see": {"_count": 1}, "can": {"_count": 1}, "will": {"_count": 1}, "know": {"_count": 1}, "go": {"_count": 1}, "dont": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "couldnt": {"_count": 1}, "cant": {"_count": 1}, "shouldnt": {"_count": 1}, "should": {"_count": 1}}, "spell": {"_count": 1, "can": {"_count": 1}}, "yehre": {"_count": 1, "not": {"_count": 1}}, "good": {"_count": 1, "sittin": {"_count": 1}}, "Aunt": {"_count": 1, "Petunias": {"_count": 1}}, "honest": {"_count": 1, "Harry": {"_count": 1}}, "Andromedas": {"_count": 1, "not": {"_count": 1}}, "Weasley": {"_count": 1, "you": {"_count": 1}}, "trouble": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "look": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "new": {"_count": 1, "teacher": {"_count": 1}}, "password": {"_count": 1, "no": {"_count": 1}}, "come": {"_count": 2, "on": {"_count": 2}}, "E": {"_count": 1, "George": {"_count": 1}}, "Student": {"_count": 1, "Organization": {"_count": 1}}, "Professor": {"_count": 5, "": {"_count": 2}, "Dumbledore": {"_count": 1}, "he": {"_count": 2}}, "marks": {"_count": 1, "again": {"_count": 1}}, "Quidditch": {"_count": 2, "practice": {"_count": 2}}, "real": {"_count": 1, "use": {"_count": 1}}, "whats": {"_count": 1, "that": {"_count": 1}}, "Seeker": {"_count": 1, "and": {"_count": 1}}, "cure": {"_count": 1, "at": {"_count": 1}}, "like": {"_count": 1, "all": {"_count": 1}}, "everyones": {"_count": 1, "fine": {"_count": 1}}, "fewer": {"_count": 2, "than": {"_count": 2}}, "sorry": {"_count": 2, "youre": {"_count": 1}, "said": {"_count": 1}}, "get": {"_count": 1, "off": {"_count": 1}}, "Bella": {"_count": 1, "he": {"_count": 1}}, "Nick": {"_count": 1, "please": {"_count": 1}}, "charge": {"_count": 1, "": {"_count": 1}}, "Proudfoot": {"_count": 1, "Savage": {"_count": 1}}, "cloak": {"_count": 1, "": {"_count": 1}}, "invite": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 1, "we": {"_count": 1}}, "sighed": {"_count": 1, "Dumbledore": {"_count": 1}}, "shortcuts": {"_count": 1, "or": {"_count": 1}}, "shes": {"_count": 1, "already": {"_count": 1}}, "nothing": {"_count": 2, "said": {"_count": 1}, "like": {"_count": 1}}, "there": {"_count": 1, "wasnt": {"_count": 1}}, "joy": {"_count": 1, "said": {"_count": 1}}, "youll": {"_count": 1, "go": {"_count": 1}}, "book": {"_count": 1, "would": {"_count": 1}}, "something": {"_count": 1, "much": {"_count": 1}}, "gasped": {"_count": 1, "Harry": {"_count": 1}}, "Muggle": {"_count": 1, "could": {"_count": 1}}, "harm": {"_count": 1, "has": {"_count": 1}}, "Draco": {"_count": 1, "said": {"_count": 1}}, "Unforgivable": {"_count": 1, "Curses": {"_count": 1}}, "charm": {"_count": 1, "will": {"_count": 1}}, "other": {"_count": 2, "headmaster": {"_count": 2}}, "actually": {"_count": 2, "its": {"_count": 1}, "said": {"_count": 1}}, "volunteers": {"_count": 1, "": {"_count": 1}}, "higher": {"_count": 2, "pleasure": {"_count": 2}}, "HEDWIG": {"_count": 1, "": {"_count": 1}}, "NO": {"_count": 1, "": {"_count": 1}}, "Somehow": {"_count": 1, "Harry": {"_count": 1}}, "news": {"_count": 1, "about": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "agreed": {"_count": 2, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "deaths": {"_count": 1, "he": {"_count": 1}}, "choice": {"_count": 1, "": {"_count": 1}}, "wait": {"_count": 1, "a": {"_count": 1}}, "antlers": {"_count": 1, "": {"_count": 1}}, "deal": {"_count": 1, "said": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "snarled": {"_count": 1, "Greyback": {"_count": 1}}, "Without": {"_count": 1, "pausing": {"_count": 1}}, "whispered": {"_count": 1, "Ollivander": {"_count": 1}}, "use": {"_count": 1, "no": {"_count": 1}}, "sword": {"_count": 1, "repeated": {"_count": 1}}, "surely": {"_count": 1, "the": {"_count": 1}}, "kidding": {"_count": 1, "muttered": {"_count": 1}}, "Luna": {"_count": 1, "will": {"_count": 1}}, "never": {"_count": 1, "whispered": {"_count": 1}}, "difference": {"_count": 1, "said": {"_count": 1}}, "Wait": {"_count": 1, "There": {"_count": 1}}}, "sharply": {"_count": 130, "": {"_count": 73, ".": {"_count": 73}}, "out": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "Dont": {"_count": 1, "touch": {"_count": 1}}, "to": {"_count": 6, "face": {"_count": 1}, "Lockhart": {"_count": 1}, "watch": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "Crabbe": {"_count": 1}}, "behind": {"_count": 2, "them": {"_count": 1}, "both": {"_count": 1}}, "as": {"_count": 9, "they": {"_count": 2}, "though": {"_count": 1}, "Aunt": {"_count": 1}, "Ron": {"_count": 2}, "Luna": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 1, "see": {"_count": 1}}, "pointing": {"_count": 4, "his": {"_count": 2}, "into": {"_count": 1}, "toward": {"_count": 1}}, "that": {"_count": 1, "Alicia": {"_count": 1}}, "she": {"_count": 1, "hurtled": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "they": {"_count": 1}, "he": {"_count": 1}, "marched": {"_count": 1}, "when": {"_count": 1}}, "cutting": {"_count": 1, "Bagmans": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "over": {"_count": 1, "breakfast": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "looking": {"_count": 3, "up": {"_count": 1}, "from": {"_count": 1}, "over": {"_count": 1}}, "with": {"_count": 1, "it": {"_count": 1}}, "scattering": {"_count": 1, "a": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "rounding": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "freezing": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "defined": {"_count": 1, "figures": {"_count": 1}}, "because": {"_count": 1, "Ginny": {"_count": 1}}, "also": {"_count": 1, "in": {"_count": 1}}, "heading": {"_count": 1, "now": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "rolled": {"_count": 1}}}, "Why": {"_count": 416, "": {"_count": 66, "?": {"_count": 64}, ".": {"_count": 2}}, "not": {"_count": 24, "": {"_count": 19}, "ask": {"_count": 1}, "sir": {"_count": 1}, "now": {"_count": 1}, "Madam": {"_count": 1}, "try": {"_count": 1}}, "arent": {"_count": 8, "you": {"_count": 6}, "yeh": {"_count": 1}, "Ron": {"_count": 1}}, "were": {"_count": 4, "you": {"_count": 4}}, "would": {"_count": 16, "you": {"_count": 1}, "Snape": {"_count": 1}, "anyone": {"_count": 5}, "I": {"_count": 4}, "a": {"_count": 1}, "your": {"_count": 1}, "Slughorn": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "is": {"_count": 7, "he": {"_count": 1}, "everything": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 3}}, "are": {"_count": 19, "you": {"_count": 12}, "the": {"_count": 1}, "we": {"_count": 2}, "they": {"_count": 3}, "Moody": {"_count": 1}}, "should": {"_count": 6, "he": {"_count": 2}, "I": {"_count": 3}, "e": {"_count": 1}}, "isnt": {"_count": 7, "he": {"_count": 4}, "anyone": {"_count": 1}, "she": {"_count": 1}, "this": {"_count": 1}}, "dont": {"_count": 27, "we": {"_count": 5}, "you": {"_count": 18}, "I": {"_count": 2}, "those": {"_count": 1}, "people": {"_count": 1}}, "didnt": {"_count": 28, "I": {"_count": 4}, "you": {"_count": 11}, "Harry": {"_count": 1}, "we": {"_count": 2}, "the": {"_count": 1}, "they": {"_count": 3}, "he": {"_count": 4}, "Voldemort": {"_count": 1}, "Ron": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 18, "you": {"_count": 12}, "they": {"_count": 2}, "we": {"_count": 2}, "I": {"_count": 1}, "the": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "cant": {"_count": 13, "we": {"_count": 3}, "I": {"_count": 2}, "it": {"_count": 1}, "she": {"_count": 1}, "they": {"_count": 3}, "Dumbledore": {"_count": 1}, "Ogden": {"_count": 1}, "you": {"_count": 1}}, "hadnt": {"_count": 10, "they": {"_count": 2}, "it": {"_count": 1}, "he": {"_count": 4}, "Dumbledore": {"_count": 3}}, "couldnt": {"_count": 10, "we": {"_count": 1}, "weve": {"_count": 1}, "you": {"_count": 2}, "Black": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 4}}, "demanded": {"_count": 1, "Ron": {"_count": 1}}, "on": {"_count": 1, "earth": {"_count": 1}}, "was": {"_count": 11, "he": {"_count": 4}, "Crouch": {"_count": 1}, "she": {"_count": 1}, "everyone": {"_count": 1}, "Dung": {"_count": 1}, "the": {"_count": 1}, "everybody": {"_count": 1}, "it": {"_count": 1}}, "wasnt": {"_count": 3, "he": {"_count": 3}}, "go": {"_count": 1, "up": {"_count": 1}}, "shouldnt": {"_count": 4, "we": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}}, "dyou": {"_count": 3, "wear": {"_count": 1}, "have": {"_count": 1}, "think": {"_count": 1}}, "its": {"_count": 2, "potty": {"_count": 1}, "Potty": {"_count": 1}}, "all": {"_count": 1, "these": {"_count": 1}}, "so": {"_count": 2, "modest": {"_count": 1}, "miserable": {"_count": 1}}, "had": {"_count": 11, "Fudge": {"_count": 1}, "he": {"_count": 4}, "nobody": {"_count": 1}, "Black": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "Dumbledore": {"_count": 1}}, "ask": {"_count": 1, "if": {"_count": 1}}, "did": {"_count": 33, "they": {"_count": 2}, "he": {"_count": 9}, "Snape": {"_count": 2}, "I": {"_count": 2}, "you": {"_count": 9}, "the": {"_count": 2}, "it": {"_count": 2}, "Dumbledore": {"_count": 1}, "nobody": {"_count": 1}, "half": {"_count": 1}, "both": {"_count": 1}, "my": {"_count": 1}}, "wouldn": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 2, "didnt": {"_count": 1}, "": {"_count": 1}}, "Muggles": {"_count": 1, "Need": {"_count": 1}}, "though": {"_count": 3, "": {"_count": 3}}, "else": {"_count": 5, "did": {"_count": 1}, "would": {"_count": 3}, "do": {"_count": 1}}, "doesnt": {"_count": 7, "anyone": {"_count": 1}, "Dobby": {"_count": 1}, "Hagrid": {"_count": 1}, "everyone": {"_count": 1}, "he": {"_count": 1}, "Ginny": {"_count": 1}, "it": {"_count": 1}}, "werent": {"_count": 2, "you": {"_count": 2}}, "he": {"_count": 3, "had": {"_count": 1}, "killed": {"_count": 1}, "knew": {"_count": 1}}, "does": {"_count": 7, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "Firenze": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}, "my": {"_count": 1}}, "has": {"_count": 2, "Mr": {"_count": 1}, "it": {"_count": 1}}, "yes": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "we": {"_count": 1, "ever": {"_count": 1}}, "have": {"_count": 7, "they": {"_count": 1}, "you": {"_count": 6}}, "in": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 7, "was": {"_count": 1}, "cant": {"_count": 1}, "sense": {"_count": 1}, "thought": {"_count": 1}, "have": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}}, "what": {"_count": 3, "happened": {"_count": 1}, "oh": {"_count": 1}, "does": {"_count": 1}}, "whats": {"_count": 2, "all": {"_count": 1}, "wrong": {"_count": 1}}, "could": {"_count": 1, "some": {"_count": 1}}, "Nobody": {"_count": 1, "Listened": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "son": {"_count": 1}}, "where": {"_count": 1, "are": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 1, "she": {"_count": 1}}, "wouldnt": {"_count": 2, "he": {"_count": 2}}, "us": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "exactly": {"_count": 1, "did": {"_count": 1}}, "then": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "hell": {"_count": 1}}, "return": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "hide": {"_count": 1, "me": {"_count": 1}}, "Madam": {"_count": 1, "Lestrange": {"_count": 1}}, "\u2018got": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "even": {"_count": 1, "touch": {"_count": 1}}}, "Funny": {"_count": 16, "stuff": {"_count": 1, "on": {"_count": 1}}, "way": {"_count": 1, "to": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "way": {"_count": 1}}, "you": {"_count": 2, "should": {"_count": 2}}, "goblins": {"_count": 1, "looking": {"_count": 1}}, "place": {"_count": 1, "she": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "how": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "I": {"_count": 1, "never": {"_count": 1}}, "little": {"_count": 1, "chaps": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "ow": {"_count": 1, "they": {"_count": 1}}, "thing": {"_count": 1, "how": {"_count": 1}}}, "stuff": {"_count": 197, "on": {"_count": 3, "the": {"_count": 1}, "my": {"_count": 1}, "them": {"_count": 1}}, "peoples": {"_count": 1, "heads": {"_count": 1}}, "upstairs": {"_count": 1, "now": {"_count": 1}}, "": {"_count": 43, ".": {"_count": 25}, "?": {"_count": 13}, "!": {"_count": 5}}, "one": {"_count": 1, "o": {"_count": 1}}, "fer": {"_count": 3, "school": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}}, "stood": {"_count": 1, "on": {"_count": 1}}, "For": {"_count": 1, "now": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "about": {"_count": 7, "dragons": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 1}, "Crouch": {"_count": 1}, "us": {"_count": 1}, "Dumbledore": {"_count": 1}, "charms": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "shinin": {"_count": 1, "on": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "to": {"_count": 6, "cover": {"_count": 1}, "send": {"_count": 1}, "fit": {"_count": 1}, "class": {"_count": 1}, "do": {"_count": 1}, "Lupin": {"_count": 1}}, "that": {"_count": 3, "wasnt": {"_count": 1}, "Luna": {"_count": 1}, "fullgrown": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "I": {"_count": 5, "could": {"_count": 1}, "said": {"_count": 1}, "shouldnt": {"_count": 1}, "was": {"_count": 2}}, "sounds": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 3, "rubbery": {"_count": 1}, "robes": {"_count": 1}, "Prophets": {"_count": 1}}, "all": {"_count": 1, "theyd": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "you": {"_count": 4, "did": {"_count": 1}, "know": {"_count": 1}, "dont": {"_count": 1}, "can": {"_count": 1}}, "while": {"_count": 1, "shes": {"_count": 1}}, "last": {"_count": 1, "week": {"_count": 1}}, "Im": {"_count": 1, "packed": {"_count": 1}}, "than": {"_count": 1, "Fudge": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 3}}, "at": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 9, "me": {"_count": 1}, "your": {"_count": 1}, "front": {"_count": 1}, "here": {"_count": 2}, "the": {"_count": 1}, "my": {"_count": 2}, "his": {"_count": 1}}, "like": {"_count": 7, "this": {"_count": 2}, "Bodrod": {"_count": 1}, "that": {"_count": 4}}, "he": {"_count": 5, "choked": {"_count": 1}, "added": {"_count": 1}, "did": {"_count": 1}, "can": {"_count": 1}, "said": {"_count": 1}}, "his": {"_count": 1, "fist": {"_count": 1}}, "for": {"_count": 4, "him": {"_count": 1}, "the": {"_count": 1}, "myself": {"_count": 1}, "centuries": {"_count": 1}}, "up": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "your": {"_count": 1, "lot": {"_count": 1}}, "theyve": {"_count": 1, "invented": {"_count": 1}}, "well": {"_count": 1, "all": {"_count": 1}}, "theyll": {"_count": 1, "just": {"_count": 1}}, "Mum": {"_count": 1, "got": {"_count": 1}}, "youd": {"_count": 1, "never": {"_count": 1}}, "Moody": {"_count": 1, "doesnt": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 2, "into": {"_count": 1}, "": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "yehve": {"_count": 1, "never": {"_count": 1}}, "and": {"_count": 3, "try": {"_count": 1}, "packed": {"_count": 1}, "its": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "she": {"_count": 1}, "you": {"_count": 1}}, "Ive": {"_count": 2, "found": {"_count": 1}, "gots": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "she": {"_count": 1, "wrote": {"_count": 1}}, "was": {"_count": 3, "his": {"_count": 1}, "luck": {"_count": 1}, "quite": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "Harrys": {"_count": 1}}, "when": {"_count": 2, "we": {"_count": 1}, "do": {"_count": 1}}, "mustve": {"_count": 1, "counted": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "off": {"_count": 1, "then": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "thats": {"_count": 3, "too": {"_count": 1}, "no": {"_count": 1}, "best": {"_count": 1}}, "bent": {"_count": 1, "low": {"_count": 1}}, "even": {"_count": 1, "he": {"_count": 1}}, "we": {"_count": 1, "ought": {"_count": 1}}, "planned": {"_count": 1, "fer": {"_count": 1}}, "abou": {"_count": 2, "them": {"_count": 1}, "thestrals": {"_count": 1}}, "maybe": {"_count": 1, "even": {"_count": 1}}, "lessons": {"_count": 1, "ter": {"_count": 1}}, "within": {"_count": 1, "began": {"_count": 1}}, "of": {"_count": 1, "Hogwarts": {"_count": 1}}, "can": {"_count": 1, "said": {"_count": 1}}, "youre": {"_count": 1, "nicking": {"_count": 1}}, "Well": {"_count": 1, "said": {"_count": 1}}, "OUT": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "learning": {"_count": 1, "to": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "a": {"_count": 1}}, "very": {"_count": 1, "Dark": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "shes": {"_count": 1, "been": {"_count": 1}}, "Theres": {"_count": 1, "an": {"_count": 1}}, "stuff": {"_count": 1, "I": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "Griphook": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 1, "up": {"_count": 1}}, "Potter": {"_count": 1, "and": {"_count": 1}}}, "mumbled": {"_count": 50, "": {"_count": 18, ".": {"_count": 18}}, "Im": {"_count": 1, "getting": {"_count": 1}}, "Ron": {"_count": 2, "": {"_count": 2}}, "groping": {"_count": 1, "for": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "carefully": {"_count": 1, "not": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 1}, "Diggory": {"_count": 1}}, "looking": {"_count": 2, "scared": {"_count": 1}, "at": {"_count": 1}}, "where": {"_count": 1, "are": {"_count": 1}}, "turning": {"_count": 1, "away": {"_count": 1}}, "sleepily": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "something": {"_count": 2, "about": {"_count": 1}, "indistinct": {"_count": 1}}, "Good": {"_count": 1, "afternoon": {"_count": 1}}, "Harry": {"_count": 6, "and": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}, "who": {"_count": 1}, "a": {"_count": 1}}, "squinting": {"_count": 1, "at": {"_count": 1}}, "apologetically": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "shamefacedly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "drained": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "before": {"_count": 1, "Hermione": {"_count": 1}}}, "funnylooking": {"_count": 1, "people": {"_count": 1, "in": {"_count": 1}}}, "So": {"_count": 662, "": {"_count": 58, "?": {"_count": 16}, ".": {"_count": 36}, "!": {"_count": 6}}, "Ill": {"_count": 4, "have": {"_count": 1}, "say": {"_count": 1}, "go": {"_count": 1}, "meet": {"_count": 1}}, "he": {"_count": 28, "pelts": {"_count": 1}, "knew": {"_count": 1}, "wouldnt": {"_count": 2}, "said": {"_count": 7}, "spoke": {"_count": 1}, "hauled": {"_count": 1}, "finished": {"_count": 1}, "er": {"_count": 1}, "thinks": {"_count": 1}, "did": {"_count": 1}, "can": {"_count": 4}, "told": {"_count": 1}, "could": {"_count": 1}, "wanted": {"_count": 1}, "only": {"_count": 1}, "moved": {"_count": 1}, "never": {"_count": 1}, "asked": {"_count": 1}}, "proud": {"_count": 2, "Mr": {"_count": 1}, "so": {"_count": 1}}, "if": {"_count": 10, "you": {"_count": 3}, "I": {"_count": 1}, "Hufflepuff": {"_count": 1}, "youd": {"_count": 1}, "thats": {"_count": 1}, "youre": {"_count": 1}, "all": {"_count": 1}, "Ron": {"_count": 1}}, "what": {"_count": 46, "is": {"_count": 2}, "do": {"_count": 2}, "are": {"_count": 5}, "if": {"_count": 5}, "on": {"_count": 1}, "happened": {"_count": 5}, "brings": {"_count": 2}, "": {"_count": 8}, "did": {"_count": 2}, "about": {"_count": 2}, "could": {"_count": 1}, "happens": {"_count": 1}, "have": {"_count": 1}, "does": {"_count": 2}, "will": {"_count": 2}, "can": {"_count": 1}, "was": {"_count": 2}, "kept": {"_count": 1}, "part": {"_count": 1}}, "thats": {"_count": 20, "where": {"_count": 1}, "sort": {"_count": 1}, "that": {"_count": 1}, "why": {"_count": 7}, "it": {"_count": 3}, "a": {"_count": 1}, "clause": {"_count": 1}, "the": {"_count": 1}, "tennil": {"_count": 1}, "fifty": {"_count": 1}, "how": {"_count": 1}, "little": {"_count": 1}}, "you": {"_count": 49, "must": {"_count": 2}, "mean": {"_count": 1}, "dont": {"_count": 3}, "never": {"_count": 1}, "can": {"_count": 4}, "have": {"_count": 4}, "11": {"_count": 1}, "see": {"_count": 3}, "like": {"_count": 1}, "think": {"_count": 6}, "took": {"_count": 1}, "admit": {"_count": 1}, "put": {"_count": 1}, "wouldnt": {"_count": 1}, "havent": {"_count": 1}, "know": {"_count": 1}, "want": {"_count": 1}, "couldnt": {"_count": 1}, "going": {"_count": 1}, "actually": {"_count": 1}, "smashed": {"_count": 1}, "came": {"_count": 2}, "will": {"_count": 1}, "persuaded": {"_count": 1}, "just": {"_count": 1}, "decided": {"_count": 1}, "say": {"_count": 1}, "brought": {"_count": 1}, "three": {"_count": 1}, "arent": {"_count": 1}, "you": {"_count": 1}, "cant": {"_count": 1}}, "this": {"_count": 8, "is": {"_count": 5}, "year": {"_count": 1}, "was": {"_count": 1}, "time": {"_count": 1}}, "its": {"_count": 7, "you": {"_count": 1}, "fallen": {"_count": 1}, "breakfast": {"_count": 1}, "news": {"_count": 1}, "for": {"_count": 1}, "true": {"_count": 2}}, "did": {"_count": 11, "the": {"_count": 2}, "I": {"_count": 3}, "Filch": {"_count": 1}, "Goyle": {"_count": 1}, "Harry": {"_count": 2}, "everyone": {"_count": 1}, "you": {"_count": 1}}, "try": {"_count": 1, "me": {"_count": 1}}, "put": {"_count": 2, "me": {"_count": 2}}, "weve": {"_count": 6, "just": {"_count": 1}, "finally": {"_count": 1}, "heard": {"_count": 1}, "expanded": {"_count": 1}, "given": {"_count": 1}, "been": {"_count": 1}}, "where": {"_count": 6, "shall": {"_count": 1}, "were": {"_count": 1}, "is": {"_count": 1}, "are": {"_count": 1}, "next": {"_count": 1}, "do": {"_count": 1}}, "new": {"_count": 1, "Gryffindors": {"_count": 1}}, "teach": {"_count": 1, "us": {"_count": 1}}, "I": {"_count": 27, "suppose": {"_count": 2}, "told": {"_count": 2}, "can": {"_count": 4}, "bet": {"_count": 1}, "unlocked": {"_count": 1}, "decided": {"_count": 1}, "made": {"_count": 1}, "should": {"_count": 2}, "could": {"_count": 1}, "give": {"_count": 1}, "waited": {"_count": 1}, "think": {"_count": 1}, "want": {"_count": 1}, "had": {"_count": 1}, "daresay": {"_count": 1}, "was": {"_count": 1}, "wanted": {"_count": 1}, "arranged": {"_count": 1}, "took": {"_count": 1}, "clicked": {"_count": 1}, "Disapparated": {"_count": 1}}, "think": {"_count": 1, "youve": {"_count": 1}}, "after": {"_count": 3, "that": {"_count": 1}, "many": {"_count": 1}, "E": {"_count": 1}}, "why": {"_count": 12, "did": {"_count": 1}, "dont": {"_count": 2}, "not": {"_count": 1}, "couldnt": {"_count": 1}, "would": {"_count": 2}, "aren": {"_count": 1}, "in": {"_count": 1}, "have": {"_count": 2}, "are": {"_count": 1}}, "Malfoy": {"_count": 1, "jealous": {"_count": 1}}, "the": {"_count": 16, "three": {"_count": 1}, "Stones": {"_count": 1}, "foolish": {"_count": 1}, "first": {"_count": 1}, "boggart": {"_count": 1}, "Daily": {"_count": 1}, "winner": {"_count": 1}, "Ministry": {"_count": 1}, "poison": {"_count": 1}, "poisoner": {"_count": 1}, "other": {"_count": 1}, "things": {"_count": 1}, "Death": {"_count": 1}, "Elder": {"_count": 1}, "boy": {"_count": 1}, "part": {"_count": 1}}, "back": {"_count": 1, "again": {"_count": 1}}, "said": {"_count": 21, "Dumbledore": {"_count": 2}, "Wood": {"_count": 1}, "Hagrid": {"_count": 1}, "Mr": {"_count": 2}, "Cedric": {"_count": 1}, "Ron": {"_count": 2}, "Malfoy": {"_count": 1}, "Fred": {"_count": 1}, "Uncle": {"_count": 1}, "Hermione": {"_count": 1}, "Sirius": {"_count": 1}, "Harry": {"_count": 4}, "Snape": {"_count": 1}, "Slughorn": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "we": {"_count": 13, "were": {"_count": 2}, "wait": {"_count": 1}, "had": {"_count": 1}, "asked": {"_count": 1}, "dont": {"_count": 1}, "bowed": {"_count": 1}, "decided": {"_count": 1}, "kep": {"_count": 1}, "know": {"_count": 1}, "still": {"_count": 1}, "need": {"_count": 1}, "come": {"_count": 1}}, "yeh": {"_count": 2, "wanted": {"_count": 1}, "havent": {"_count": 1}}, "now": {"_count": 4, "they": {"_count": 1}, "youre": {"_count": 1}, "hes": {"_count": 1}, "we": {"_count": 1}}, "me": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 10, "has": {"_count": 1}, "was": {"_count": 2}, "mustve": {"_count": 1}, "doesnt": {"_count": 1}, "went": {"_count": 1}, "must": {"_count": 1}, "seems": {"_count": 1}, "isnt": {"_count": 1}, "all": {"_count": 1}}, "Harry": {"_count": 17, "set": {"_count": 1}, "had": {"_count": 2}, "waved": {"_count": 1}, "said": {"_count": 3}, "just": {"_count": 1}, "got": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}, "put": {"_count": 1}, "thinking": {"_count": 1}, "panted": {"_count": 1}, "Ron": {"_count": 1}, "you": {"_count": 1}, "what": {"_count": 1}}, "all": {"_count": 6, "Ive": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 1}, "we": {"_count": 1}, "these": {"_count": 1}, "in": {"_count": 1}}, "sorry": {"_count": 3, "your": {"_count": 1}, "dozed": {"_count": 1}, "Harry": {"_count": 1}}, "light": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 9, "must": {"_count": 1}, "was": {"_count": 1}, "evening": {"_count": 1}, "meant": {"_count": 1}, "is": {"_count": 1}, "thing": {"_count": 1}, "Peverell": {"_count": 1}, "put": {"_count": 1}, "when": {"_count": 1}}, "useful": {"_count": 1, "to": {"_count": 1}}, "youve": {"_count": 6, "finally": {"_count": 1}, "just": {"_count": 1}, "been": {"_count": 2}, "got": {"_count": 1}, "stopped": {"_count": 1}}, "long": {"_count": 1, "has": {"_count": 1}}, "well": {"_count": 2, "get": {"_count": 1}, "just": {"_count": 1}}, "whats": {"_count": 8, "the": {"_count": 4}, "bothering": {"_count": 1}, "in": {"_count": 1}, "been": {"_count": 1}, "new": {"_count": 1}}, "then": {"_count": 4, "I": {"_count": 3}, "he": {"_count": 1}}, "does": {"_count": 3, "your": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}}, "she": {"_count": 4, "said": {"_count": 2}, "phoned": {"_count": 1}, "can": {"_count": 1}}, "hes": {"_count": 4, "worried": {"_count": 1}, "still": {"_count": 1}, "got": {"_count": 1}, "made": {"_count": 1}}, "Im": {"_count": 2, "taking": {"_count": 1}, "here": {"_count": 1}}, "with": {"_count": 2, "one": {"_count": 1}, "Fang": {"_count": 1}}, "tell": {"_count": 4, "me": {"_count": 4}}, "do": {"_count": 3, "you": {"_count": 1}, "I": {"_count": 2}}, "at": {"_count": 3, "seven": {"_count": 1}, "six": {"_count": 1}, "half": {"_count": 1}}, "clever": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 1, "pressure": {"_count": 1}}, "was": {"_count": 3, "taking": {"_count": 1}, "his": {"_count": 1}, "I": {"_count": 1}}, "there": {"_count": 2, "is": {"_count": 1}, "you": {"_count": 1}}, "noble": {"_count": 1, "": {"_count": 1}}, "valiant": {"_count": 1, "": {"_count": 1}}, "Dobby": {"_count": 2, "stopped": {"_count": 1}, "and": {"_count": 1}}, "anyway": {"_count": 3, "a": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}}, "many": {"_count": 2, "students": {"_count": 1}, "powerful": {"_count": 1}}, "they": {"_count": 9, "followed": {"_count": 1}, "paid": {"_count": 1}, "put": {"_count": 1}, "got": {"_count": 2}, "can": {"_count": 1}, "hurried": {"_count": 1}, "still": {"_count": 1}, "Disapparated": {"_count": 1}}, "Ginny": {"_count": 1, "poured": {"_count": 1}}, "ends": {"_count": 1, "the": {"_count": 1}}, "Hermiones": {"_count": 2, "okay": {"_count": 1}, "here": {"_count": 1}}, "have": {"_count": 6, "you": {"_count": 5}, "I": {"_count": 1}}, "so": {"_count": 3, "this": {"_count": 1}, "Black": {"_count": 1}, "they": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "whyre": {"_count": 1, "we": {"_count": 1}}, "er": {"_count": 3, "dyou": {"_count": 1}, "what": {"_count": 1}, "whats": {"_count": 1}}, "young": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "Black": {"_count": 1, "was": {"_count": 1}}, "McGonagall": {"_count": 1, "reckons": {"_count": 1}}, "how": {"_count": 15, "about": {"_count": 1}, "does": {"_count": 1}, "could": {"_count": 2}, "come": {"_count": 6}, "was": {"_count": 3}, "did": {"_count": 2}}, "Gryffindor": {"_count": 1, "in": {"_count": 1}}, "simple": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "night": {"_count": 1}}, "were": {"_count": 6, "just": {"_count": 1}, "not": {"_count": 1}, "being": {"_count": 1}, "going": {"_count": 2}, "another": {"_count": 1}}, "when": {"_count": 5, "Frank": {"_count": 1}, "Sturgis": {"_count": 1}, "Ive": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "theyre": {"_count": 2, "still": {"_count": 1}, "dead": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "been": {"_count": 1, "keeping": {"_count": 1}}, "far": {"_count": 3, "it": {"_count": 1}, "however": {"_count": 1}, "he": {"_count": 1}}, "go": {"_count": 2, "on": {"_count": 1}, "abroad": {"_count": 1}}, "Durmstrangll": {"_count": 1, "just": {"_count": 1}}, "straight": {"_count": 1, "into": {"_count": 1}}, "youll": {"_count": 2, "understand": {"_count": 1}, "be": {"_count": 1}}, "yer": {"_count": 1, "competin": {"_count": 1}}, "Fleur": {"_count": 1, "was": {"_count": 1}}, "watch": {"_count": 1, "out": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "basically": {"_count": 2, "youre": {"_count": 1}, "he": {"_count": 1}}, "old": {"_count": 1, "Crouch": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "listen": {"_count": 2, "to": {"_count": 1}, "Harry": {"_count": 1}}, "tired": {"_count": 1, "every": {"_count": 1}}, "Bagman": {"_count": 1, "had": {"_count": 1}}, "whove": {"_count": 1, "you": {"_count": 1}}, "would": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "everyone": {"_count": 2, "had": {"_count": 1}, "who": {"_count": 1}}, "whys": {"_count": 1, "Dumbledore": {"_count": 1}}, "youre": {"_count": 6, "trying": {"_count": 1}, "going": {"_count": 1}, "not": {"_count": 2}, "related": {"_count": 1}, "my": {"_count": 1}}, "got": {"_count": 1, "there": {"_count": 1}}, "who": {"_count": 3, "dyou": {"_count": 1}, "did": {"_count": 1}, "do": {"_count": 1}}, "silly": {"_count": 1, "of": {"_count": 1}}, "Hogwarts": {"_count": 1, "worked": {"_count": 1}}, "unless": {"_count": 2, "you": {"_count": 1}, "Miss": {"_count": 1}}, "has": {"_count": 2, "everyone": {"_count": 1}, "all": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "anyone": {"_count": 1, "know": {"_count": 1}}, "whenever": {"_count": 1, "you": {"_count": 1}}, "even": {"_count": 2, "if": {"_count": 2}}, "maybe": {"_count": 1, "he": {"_count": 1}}, "top": {"_count": 1, "grades": {"_count": 1}}, "is": {"_count": 4, "it": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 1}, "Severus": {"_count": 1}}, "dont": {"_count": 2, "harp": {"_count": 1}, "even": {"_count": 1}}, "are": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "thas": {"_count": 1, "what": {"_count": 1}}, "Macnairs": {"_count": 1, "persuaded": {"_count": 1}}, "Potter": {"_count": 5, "says": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}, "some": {"_count": 1}}, "Ive": {"_count": 1, "come": {"_count": 1}}, "She": {"_count": 1, "sat": {"_count": 1}}, "Lupin": {"_count": 1, "took": {"_count": 1}}, "sneered": {"_count": 1, "Fudge": {"_count": 1}}, "Granger": {"_count": 1, "Ill": {"_count": 1}}, "Snape": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "save": {"_count": 1, "your": {"_count": 1}}, "Ron": {"_count": 1, "you": {"_count": 1}}, "be": {"_count": 1, "very": {"_count": 1}}, "which": {"_count": 1, "way": {"_count": 1}}, "Voldemort": {"_count": 6, "never": {"_count": 1}, "stole": {"_count": 1}, "went": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "instead": {"_count": 1}}, "whereve": {"_count": 1, "you": {"_count": 1}}, "much": {"_count": 1, "of": {"_count": 1}}, "um": {"_count": 1, "did": {"_count": 1}}, "modest": {"_count": 1, "so": {"_count": 1}}, "Zabini": {"_count": 1, "said": {"_count": 1}}, "Merope": {"_count": 1, "said": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "shes": {"_count": 2, "found": {"_count": 1}, "my": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "Apparition": {"_count": 1, "said": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "good": {"_count": 1, "luck": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "whens": {"_count": 1, "practice": {"_count": 1}}, "hows": {"_count": 1, "McLaggen": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "theyd": {"_count": 1, "be": {"_count": 1}}, "very": {"_count": 1, "sorry": {"_count": 1}}, "crude": {"_count": 1, "": {"_count": 1}}, "feeble": {"_count": 1, "to": {"_count": 1}}, "poor": {"_count": 1, "Rosmerta": {"_count": 1}}, "let": {"_count": 1, "us": {"_count": 1}}, "these": {"_count": 2, "four": {"_count": 1}, "are": {"_count": 1}}, "thanks": {"_count": 1, "for": {"_count": 1}}, "great": {"_count": 1, "was": {"_count": 1}}, "Mundungus": {"_count": 1, "disappeared": {"_count": 1}}, "your": {"_count": 2, "parents": {"_count": 1}, "wand": {"_count": 1}}, "Kreacher": {"_count": 1, "went": {"_count": 1}}, "Death": {"_count": 3, "Eaters": {"_count": 1}, "crossed": {"_count": 1}, "picked": {"_count": 1}}, "Dirk": {"_count": 1, "Cresswell": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "people": {"_count": 1, "lets": {"_count": 1}}, "close": {"_count": 2, "": {"_count": 2}}, "Id": {"_count": 1, "have": {"_count": 1}}, "au": {"_count": 1, "revoir": {"_count": 1}}, "ow": {"_count": 1, "eez": {"_count": 1}}, "youd": {"_count": 1, "given": {"_count": 1}}}, "maybe": {"_count": 105, "": {"_count": 7, ".": {"_count": 7}}, "even": {"_count": 6, "have": {"_count": 1}, "most": {"_count": 1}, "Patronuses": {"_count": 1}, "Inferi": {"_count": 1}, "letters": {"_count": 1}, "years": {"_count": 1}}, "hoped": {"_count": 1, "that": {"_count": 1}}, "hed": {"_count": 1, "wake": {"_count": 1}}, "he": {"_count": 16, "just": {"_count": 2}, "didnt": {"_count": 2}, "is": {"_count": 1}, "would": {"_count": 2}, "thought": {"_count": 2}, "doesnt": {"_count": 2}, "was": {"_count": 1}, "thinks": {"_count": 2}, "Snape": {"_count": 1}, "isnt": {"_count": 1}}, "Hogwarts": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "chickened": {"_count": 1}}, "not": {"_count": 1, "but": {"_count": 1}}, "it": {"_count": 6, "only": {"_count": 1}, "was": {"_count": 2}, "can": {"_count": 1}, "wouldnt": {"_count": 1}, "wasnt": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "said": {"_count": 7, "a": {"_count": 1}, "Harry": {"_count": 4}, "the": {"_count": 1}, "Mr": {"_count": 1}}, "your": {"_count": 1, "friend": {"_count": 1}}, "youve": {"_count": 2, "got": {"_count": 2}}, "itll": {"_count": 1, "be": {"_count": 1}}, "shes": {"_count": 2, "right": {"_count": 1}, "changed": {"_count": 1}}, "she": {"_count": 2, "went": {"_count": 1}, "sneaked": {"_count": 1}}, "I": {"_count": 5, "imagined": {"_count": 1}, "should": {"_count": 1}, "am": {"_count": 1}, "will": {"_count": 2}}, "half": {"_count": 1, "an": {"_count": 1}}, "curse": {"_count": 1, "scars": {"_count": 1}}, "hell": {"_count": 2, "be": {"_count": 1}, "hang": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 1}, "hasnt": {"_count": 1}}, "but": {"_count": 1, "youve": {"_count": 1}}, "youre": {"_count": 1, "allowed": {"_count": 1}}, "simply": {"_count": 1, "because": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "Moody": {"_count": 1, "thinks": {"_count": 1}}, "thats": {"_count": 1, "why": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "We": {"_count": 1, "cant": {"_count": 1}}, "Dumbledore": {"_count": 1, "doesnt": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "its": {"_count": 3, "just": {"_count": 1}, "a": {"_count": 1}, "something": {"_count": 1}}, "they": {"_count": 1, "didnt": {"_count": 1}}, "the": {"_count": 1, "times": {"_count": 1}}, "them": {"_count": 1, "that": {"_count": 1}}, "Snape": {"_count": 1, "isnt": {"_count": 1}}, "being": {"_count": 1, "an": {"_count": 1}}, "once": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 2, "couple": {"_count": 1}, "few": {"_count": 1}}, "you": {"_count": 3, "didnt": {"_count": 1}, "ought": {"_count": 1}, "know": {"_count": 1}}, "Scrimgeour": {"_count": 1, "will": {"_count": 1}}, "Voldemort": {"_count": 1, "wants": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "go": {"_count": 1, "out": {"_count": 1}}, "thousands": {"_count": 1, "by": {"_count": 1}}, "Im": {"_count": 1, "supposed": {"_count": 1}}, "we": {"_count": 2, "ought": {"_count": 1}, "should": {"_count": 1}}, "that": {"_count": 1, "storys": {"_count": 1}}, "two": {"_count": 1, "He": {"_count": 1}}, "no": {"_count": 1, "time": {"_count": 1}}, "from": {"_count": 1, "breaking": {"_count": 1}}, "years": {"_count": 1, "in": {"_count": 1}}}, "do": {"_count": 2123, "with": {"_count": 137, "": {"_count": 3}, "the": {"_count": 24}, "living": {"_count": 1}, "him": {"_count": 4}, "some": {"_count": 3}, "filling": {"_count": 1}, "a": {"_count": 11}, "it": {"_count": 20}, "us": {"_count": 3}, "work": {"_count": 1}, "Vol": {"_count": 1}, "bewitching": {"_count": 1}, "Muggles": {"_count": 2}, "this": {"_count": 1}, "with": {"_count": 1}, "HeWho": {"_count": 1}, "weakness": {"_count": 1}, "nerves": {"_count": 1}, "anything": {"_count": 2}, "Weasleys": {"_count": 1}, "your": {"_count": 1}, "losing": {"_count": 1}, "entering": {"_count": 1}, "you": {"_count": 5}, "his": {"_count": 2}, "Cedric": {"_count": 1}, "beggars": {"_count": 1}, "these": {"_count": 1}, "Voldemort": {"_count": 1}, "Percy": {"_count": 1}, "one": {"_count": 1}, "moonstones": {"_count": 1}, "our": {"_count": 1}, "what": {"_count": 2}, "Umbridge": {"_count": 2}, "tiredness": {"_count": 1}, "that": {"_count": 2}, "me": {"_count": 4}, "Defense": {"_count": 1}, "her": {"_count": 1}, "magical": {"_count": 1}, "trolls": {"_count": 1}, "them": {"_count": 5}, "himself": {"_count": 1}, "other": {"_count": 1}, "being": {"_count": 1}, "Quidditch": {"_count": 2}, "impersonating": {"_count": 1}, "Horace": {"_count": 1}, "Dumbledore": {"_count": 1}, "either": {"_count": 1}, "firewhisky": {"_count": 1}, "touching": {"_count": 1}, "food": {"_count": 1}, "an": {"_count": 1}, "em": {"_count": 1}, "wands": {"_count": 1}, "fighting": {"_count": 1}}, "something": {"_count": 29, "about": {"_count": 4}, "important": {"_count": 1}, "desperate": {"_count": 2}, "the": {"_count": 2}, "stupid": {"_count": 2}, "": {"_count": 3}, "very": {"_count": 1}, "that": {"_count": 2}, "like": {"_count": 1}, "useful": {"_count": 1}, "worthwhile": {"_count": 1}, "to": {"_count": 1}, "whether": {"_count": 1}, "Stupefy": {"_count": 1}, "real": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "fun": {"_count": 1}, "said": {"_count": 1}, "constructive": {"_count": 1}}, "anything": {"_count": 57, "said": {"_count": 3}, "": {"_count": 9}, "or": {"_count": 1}, "against": {"_count": 2}, "with": {"_count": 2}, "illegal": {"_count": 1}, "like": {"_count": 2}, "else": {"_count": 5}, "he": {"_count": 2}, "to": {"_count": 6}, "Stand": {"_count": 2}, "she": {"_count": 2}, "wrong": {"_count": 3}, "that": {"_count": 3}, "for": {"_count": 2}, "rash": {"_count": 1}, "yet": {"_count": 2}, "unless": {"_count": 1}, "because": {"_count": 1}, "without": {"_count": 1}, "foolish": {"_count": 1}, "insensitive": {"_count": 1}, "I": {"_count": 1}, "about": {"_count": 1}, "once": {"_count": 1}, "more": {"_count": 1}}, "as": {"_count": 12, "he": {"_count": 2}, "well": {"_count": 1}, "Hermione": {"_count": 1}, "long": {"_count": 1}, "Master": {"_count": 1}, "Fred": {"_count": 1}, "I": {"_count": 2}, "youre": {"_count": 2}, "your": {"_count": 1}}, "you": {"_count": 299, "come": {"_count": 1}, "teach": {"_count": 1}, "check": {"_count": 1}, "": {"_count": 56}, "know": {"_count": 34}, "think": {"_count": 52}, "want": {"_count": 18}, "mean": {"_count": 42}, "only": {"_count": 1}, "see": {"_count": 6}, "learn": {"_count": 1}, "reckons": {"_count": 1}, "Professor": {"_count": 1}, "said": {"_count": 1}, "care": {"_count": 2}, "Harry": {"_count": 3}, "conjure": {"_count": 1}, "imagine": {"_count": 2}, "open": {"_count": 1}, "really": {"_count": 6}, "expect": {"_count": 2}, "in": {"_count": 2}, "reckon": {"_count": 3}, "do": {"_count": 8}, "feel": {"_count": 4}, "get": {"_count": 2}, "anything": {"_count": 1}, "understand": {"_count": 6}, "thinks": {"_count": 1}, "Albus": {"_count": 1}, "not": {"_count": 2}, "Ron": {"_count": 1}, "you": {"_count": 1}, "remember": {"_count": 1}, "some": {"_count": 1}, "have": {"_count": 1}, "as": {"_count": 1}, "find": {"_count": 1}, "give": {"_count": 1}, "that": {"_count": 1}, "call": {"_count": 2}, "Dumbledore": {"_count": 1}, "go": {"_count": 1}, "require": {"_count": 1}, "like": {"_count": 2}, "say": {"_count": 2}, "buy": {"_count": 1}, "honestly": {"_count": 1}, "tell": {"_count": 1}, "split": {"_count": 1}, "for": {"_count": 1}, "mind": {"_count": 1}, "destroy": {"_count": 1}, "account": {"_count": 1}, "any": {"_count": 1}, "accept": {"_count": 1}, "two": {"_count": 1}, "Ted": {"_count": 1}, "its": {"_count": 1}, "keep": {"_count": 1}, "maintain": {"_count": 1}, "seek": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "exactly": {"_count": 2, "what": {"_count": 1}, "this": {"_count": 1}}, "": {"_count": 244, ".": {"_count": 136}, "?": {"_count": 77}, "!": {"_count": 31}}, "math": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 249, "": {"_count": 81}, "he": {"_count": 4}, "at": {"_count": 3}, "then": {"_count": 6}, "again": {"_count": 3}, "sir": {"_count": 2}, "I": {"_count": 5}, "tonight": {"_count": 4}, "all": {"_count": 4}, "in": {"_count": 6}, "on": {"_count": 3}, "said": {"_count": 10}, "properly": {"_count": 5}, "Oliver": {"_count": 1}, "not": {"_count": 1}, "your": {"_count": 1}, "Hagrid": {"_count": 1}, "just": {"_count": 2}, "and": {"_count": 6}, "this": {"_count": 1}, "quietly": {"_count": 1}, "myself": {"_count": 4}, "alone": {"_count": 3}, "George": {"_count": 1}, "nice": {"_count": 1}, "under": {"_count": 1}, "no": {"_count": 1}, "for": {"_count": 5}, "without": {"_count": 2}, "if": {"_count": 6}, "or": {"_count": 3}, "carefully": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "soon": {"_count": 3}, "murmured": {"_count": 1}, "it": {"_count": 2}, "now": {"_count": 3}, "anymore": {"_count": 3}, "tell": {"_count": 1}, "do": {"_count": 1}, "another": {"_count": 1}, "last": {"_count": 1}, "ourselves": {"_count": 1}, "outside": {"_count": 1}, "how": {"_count": 1}, "anyway": {"_count": 1}, "she": {"_count": 2}, "because": {"_count": 2}, "Hermione": {"_count": 1}, "so": {"_count": 2}, "its": {"_count": 1}, "please": {"_count": 1}, "yourself": {"_count": 2}, "fine": {"_count": 1}, "before": {"_count": 1}, "first": {"_count": 1}, "tomorrow": {"_count": 2}, "instead": {"_count": 1}, "justice": {"_count": 1}, "okay": {"_count": 1}, "by": {"_count": 1}, "right": {"_count": 1}, "better": {"_count": 2}, "back": {"_count": 1}, "but": {"_count": 4}, "an": {"_count": 1}, "Harry": {"_count": 4}, "with": {"_count": 1}, "somebody": {"_count": 1}, "Im": {"_count": 1}, "my": {"_count": 1}, "snarled": {"_count": 1}, "Ill": {"_count": 1}, "until": {"_count": 1}, "individually": {"_count": 1}, "For": {"_count": 1}, "Reg": {"_count": 1}, "But": {"_count": 1}, "every": {"_count": 1}, "well": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "extremely": {"_count": 1}, "Severus": {"_count": 1}}, "magic": {"_count": 16, "strictly": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 1}, "before": {"_count": 1}, "outside": {"_count": 2}, "too": {"_count": 2}, "out": {"_count": 1}, "inside": {"_count": 1}, "that": {"_count": 1}, "without": {"_count": 1}}, "a": {"_count": 23, "bit": {"_count": 8}, "spell": {"_count": 1}, "stupid": {"_count": 1}, "Memory": {"_count": 1}, "Summoning": {"_count": 1}, "Crouch": {"_count": 1}, "spot": {"_count": 1}, "second": {"_count": 1}, "sponsored": {"_count": 1}, "feeling": {"_count": 1}, "tryout": {"_count": 1}, "Protean": {"_count": 1}, "Weasley": {"_count": 1}, "Dark": {"_count": 1}, "decent": {"_count": 1}, "certain": {"_count": 1}}, "tomorrow": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 68, "": {"_count": 22}, "to": {"_count": 5}, "even": {"_count": 1}, "it": {"_count": 2}, "said": {"_count": 6}, "this": {"_count": 1}, "for": {"_count": 5}, "vampire": {"_count": 1}, "he": {"_count": 1}, "thing": {"_count": 1}, "spell": {"_count": 1}, "again": {"_count": 4}, "then": {"_count": 1}, "Wonky": {"_count": 1}, "Weatherby": {"_count": 1}, "these": {"_count": 1}, "we": {"_count": 1}, "homework": {"_count": 1}, "now": {"_count": 1}, "without": {"_count": 1}, "man": {"_count": 1}, "still": {"_count": 1}, "How": {"_count": 1}, "in": {"_count": 1}, "talking": {"_count": 1}, "every": {"_count": 1}, "job": {"_count": 1}, "Harry": {"_count": 1}, "offered": {"_count": 1}, "Dobby": {"_count": 1}}, "today": {"_count": 2, "gotta": {"_count": 1}, "then": {"_count": 1}}, "important": {"_count": 1, "stuff": {"_count": 1}}, "was": {"_count": 21, "keep": {"_count": 1}, "put": {"_count": 1}, "walk": {"_count": 1}, "give": {"_count": 1}, "magic": {"_count": 1}, "prod": {"_count": 1}, "creep": {"_count": 1}, "get": {"_count": 1}, "follow": {"_count": 1}, "to": {"_count": 3}, "cause": {"_count": 1}, "look": {"_count": 1}, "talk": {"_count": 1}, "grope": {"_count": 1}, "raise": {"_count": 1}, "find": {"_count": 1}, "sitting": {"_count": 1}, "repeat": {"_count": 1}, "hold": {"_count": 1}}, "not": {"_count": 137, "earn": {"_count": 1}, "fulfill": {"_count": 1}, "think": {"_count": 13}, "speak": {"_count": 2}, "name": {"_count": 1}, "harm": {"_count": 1}, "have": {"_count": 3}, "believe": {"_count": 4}, "expect": {"_count": 3}, "understand": {"_count": 6}, "say": {"_count": 1}, "deny": {"_count": 2}, "using": {"_count": 1}, "reveal": {"_count": 1}, "know": {"_count": 15}, "melt": {"_count": 1}, "help": {"_count": 2}, "leave": {"_count": 1}, "consider": {"_count": 1}, "recognize": {"_count": 3}, "forgive": {"_count": 1}, "forget": {"_count": 4}, "want": {"_count": 12}, "stand": {"_count": 1}, "seem": {"_count": 2}, "wish": {"_count": 5}, "approve": {"_count": 1}, "appear": {"_count": 1}, "generally": {"_count": 1}, "usually": {"_count": 1}, "care": {"_count": 3}, "blame": {"_count": 1}, "however": {"_count": 1}, "accept": {"_count": 1}, "touch": {"_count": 1}, "attack": {"_count": 1}, "acknowledge": {"_count": 1}, "seek": {"_count": 1}, "see": {"_count": 2}, "trust": {"_count": 2}, "claim": {"_count": 1}, "interrupted": {"_count": 1}, "mind": {"_count": 1}, "hate": {"_count": 1}, "take": {"_count": 2}, "judge": {"_count": 1}, "even": {"_count": 1}, "imagine": {"_count": 1}, "call": {"_count": 1}, "ask": {"_count": 1}, "value": {"_count": 1}, "advise": {"_count": 1}, "suggest": {"_count": 1}, "need": {"_count": 2}, "remove": {"_count": 1}, "use": {"_count": 1}, "necessarily": {"_count": 1}, "to": {"_count": 1}, "repress": {"_count": 1}, "reply": {"_count": 1}, "stir": {"_count": 1}, "complain": {"_count": 1}, "you": {"_count": 1}, "kill": {"_count": 1}, "argue": {"_count": 1}, "interrupt": {"_count": 1}, "minimize": {"_count": 1}, "require": {"_count": 1}, "or": {"_count": 1}}, "Father": {"_count": 1, "says": {"_count": 1}}, "they": {"_count": 31, "but": {"_count": 1}, "": {"_count": 15}, "sort": {"_count": 1}, "think": {"_count": 3}, "affect": {"_count": 1}, "have": {"_count": 2}, "say": {"_count": 1}, "expect": {"_count": 1}, "do": {"_count": 1}, "want": {"_count": 2}, "come": {"_count": 1}, "er": {"_count": 1}, "DO": {"_count": 1}}, "he": {"_count": 12, "said": {"_count": 6}, "heard": {"_count": 1}, "whispered": {"_count": 1}, "suddenly": {"_count": 1}, "thinks": {"_count": 1}, "had": {"_count": 2}}, "smatter": {"_count": 1, "of": {"_count": 1}}, "like": {"_count": 4, "tapping": {"_count": 1}, "to": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}}, "is": {"_count": 17, "walk": {"_count": 1}, "send": {"_count": 1}, "to": {"_count": 2}, "cause": {"_count": 1}, "make": {"_count": 2}, "open": {"_count": 2}, "force": {"_count": 1}, "call": {"_count": 1}, "point": {"_count": 1}, "read": {"_count": 1}, "Expelliarmus": {"_count": 1}, "ask": {"_count": 1}, "moan": {"_count": 1}, "find": {"_count": 1}}, "its": {"_count": 1, "no": {"_count": 1}}, "your": {"_count": 13, "oldest": {"_count": 1}, "best": {"_count": 2}, "detentions": {"_count": 2}, "bit": {"_count": 1}, "very": {"_count": 1}, "dirty": {"_count": 1}, "detention": {"_count": 2}, "fly": {"_count": 1}, "bidding": {"_count": 1}, "duty": {"_count": 1}}, "now": {"_count": 6, "that": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}, "will": {"_count": 1}, "was": {"_count": 1}, "she": {"_count": 1}}, "we": {"_count": 34, "boys": {"_count": 1}, "do": {"_count": 6}, "have": {"_count": 3}, "know": {"_count": 6}, "prove": {"_count": 1}, "": {"_count": 3}, "want": {"_count": 1}, "open": {"_count": 1}, "really": {"_count": 1}, "gave": {"_count": 1}, "think": {"_count": 1}, "go": {"_count": 3}, "get": {"_count": 4}, "need": {"_count": 1}, "thought": {"_count": 1}}, "when": {"_count": 4, "youre": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 1}}, "hope": {"_count": 6, "they": {"_count": 1}, "youre": {"_count": 1}, "you": {"_count": 1}, "weve": {"_count": 1}, "this": {"_count": 1}, "Ron": {"_count": 1}}, "well": {"_count": 5, "to": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 1}, "theyll": {"_count": 1}, "in": {"_count": 1}}, "think": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "the": {"_count": 54, "rest": {"_count": 1}, "same": {"_count": 9}, "thing": {"_count": 3}, "ironing": {"_count": 1}, "trophy": {"_count": 1}, "actual": {"_count": 1}, "homework": {"_count": 1}, "essay": {"_count": 1}, "Snitch": {"_count": 1}, "seeing": {"_count": 1}, "gardening": {"_count": 1}, "best": {"_count": 1}, "honors": {"_count": 2}, "Cruciatus": {"_count": 1}, "task": {"_count": 3}, "job": {"_count": 2}, "Impediment": {"_count": 1}, "vork": {"_count": 1}, "countercurses": {"_count": 1}, "spells": {"_count": 1}, "dirty": {"_count": 1}, "other": {"_count": 1}, "trick": {"_count": 3}, "girls": {"_count": 1}, "Ministry": {"_count": 1}, "fightin": {"_count": 1}, "N": {"_count": 1}, "wizards": {"_count": 1}, "extra": {"_count": 1}, "practice": {"_count": 1}, "necklace": {"_count": 1}, "Malfoys": {"_count": 1}, "dragonfire": {"_count": 1}, "cooking": {"_count": 1}, "Lovegoods": {"_count": 1}, "fiercest": {"_count": 1}, "better": {"_count": 1}, "bidding": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 5, "being": {"_count": 1}, "training": {"_count": 1}, "you": {"_count": 1}, "overstretching": {"_count": 1}, "me": {"_count": 1}}, "more": {"_count": 7, "than": {"_count": 6}, "buy": {"_count": 1}}, "any": {"_count": 7, "real": {"_count": 1}, "of": {"_count": 2}, "damage": {"_count": 1}, "owls": {"_count": 1}, "more": {"_count": 1}, "last": {"_count": 1}}, "this": {"_count": 24, "Harry": {"_count": 1}, "": {"_count": 6}, "in": {"_count": 1}, "he": {"_count": 2}, "said": {"_count": 2}, "term": {"_count": 1}, "to": {"_count": 1}, "what": {"_count": 1}, "year": {"_count": 2}, "tomorrow": {"_count": 1}, "for": {"_count": 1}, "And": {"_count": 1}, "you": {"_count": 1}, "of": {"_count": 1}, "anymore": {"_count": 1}, "wanted": {"_count": 1}}, "Wood": {"_count": 1, "said": {"_count": 1}}, "all": {"_count": 12, "right": {"_count": 2}, "our": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "sorts": {"_count": 2}, "this": {"_count": 2}, "of": {"_count": 1}, "in": {"_count": 2}}, "but": {"_count": 6, "what": {"_count": 1}, "hes": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "Youre": {"_count": 1}, "took": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "somethin": {"_count": 1, "like": {"_count": 1}}, "nothin": {"_count": 1, "of": {"_count": 1}}, "feel": {"_count": 2, "so": {"_count": 1}, "the": {"_count": 1}}, "what": {"_count": 17, "he": {"_count": 4}, "I": {"_count": 4}, "they": {"_count": 1}, "you": {"_count": 2}, "is": {"_count": 1}, "was": {"_count": 1}, "theyre": {"_count": 1}, "Dumbledore": {"_count": 1}, "must": {"_count": 1}, "youve": {"_count": 1}}, "much": {"_count": 5, "before": {"_count": 1}, "better": {"_count": 1}, "by": {"_count": 1}, "more": {"_count": 2}}, "run": {"_count": 2, "across": {"_count": 1}, "into": {"_count": 1}}, "to": {"_count": 27, "dwell": {"_count": 1}, "me": {"_count": 2}, "make": {"_count": 2}, "the": {"_count": 1}, "those": {"_count": 1}, "stop": {"_count": 2}, "him": {"_count": 3}, "each": {"_count": 1}, "help": {"_count": 1}, "keep": {"_count": 2}, "be": {"_count": 1}, "you": {"_count": 2}, "Dudley": {"_count": 1}, "get": {"_count": 2}, "her": {"_count": 1}, "plan": {"_count": 1}, "oversleep": {"_count": 1}, "a": {"_count": 1}, "Mary": {"_count": 1}}, "know": {"_count": 10, "you": {"_count": 1}, "more": {"_count": 1}, "who": {"_count": 1}, "will": {"_count": 1}, "said": {"_count": 1}, "thats": {"_count": 1}, "why": {"_count": 2}, "that": {"_count": 1}, "a": {"_count": 1}}, "Norwegian": {"_count": 1, "Ridgebacks": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 2}}, "kept": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 15, "": {"_count": 5}, "and": {"_count": 1}, "whats": {"_count": 1}, "said": {"_count": 3}, "Hermione": {"_count": 1}, "Get": {"_count": 1}, "pulled": {"_count": 1}, "Potter": {"_count": 1}, "assured": {"_count": 1}}, "in": {"_count": 10, "the": {"_count": 4}, "Potions": {"_count": 1}, "Binnss": {"_count": 1}, "fact": {"_count": 1}, "there": {"_count": 1}, "here": {"_count": 1}, "return": {"_count": 1}}, "summat": {"_count": 1, "useful": {"_count": 1}}, "tonight": {"_count": 1, "an": {"_count": 1}}, "see": {"_count": 2, "anythin": {"_count": 1}, "something": {"_count": 1}}, "have": {"_count": 5, "a": {"_count": 2}, "that": {"_count": 1}, "feelings": {"_count": 1}, "the": {"_count": 1}}, "believe": {"_count": 3, "he": {"_count": 1}, "me": {"_count": 1}, "that": {"_count": 1}}, "mmagic": {"_count": 1, "he": {"_count": 1}}, "extra": {"_count": 2, "punishments": {"_count": 1}, "work": {"_count": 1}}, "spells": {"_count": 1, "outside": {"_count": 1}}, "at": {"_count": 5, "the": {"_count": 4}, "five": {"_count": 1}}, "Memory": {"_count": 1, "Charms": {"_count": 1}}, "better": {"_count": 11, "than": {"_count": 3}, "this": {"_count": 1}, "to": {"_count": 4}, "without": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 1}}, "because": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "except": {"_count": 2, "wait": {"_count": 1}, "find": {"_count": 1}}, "said": {"_count": 44, "Hagrid": {"_count": 4}, "Ron": {"_count": 4}, "Hermione": {"_count": 4}, "Fudge": {"_count": 3}, "Wood": {"_count": 1}, "Dumbledore": {"_count": 7}, "Professor": {"_count": 2}, "Karkaroff": {"_count": 1}, "Voldemort": {"_count": 1}, "Cho": {"_count": 1}, "Harry": {"_count": 11}, "the": {"_count": 1}, "Ted": {"_count": 1}, "Lupin": {"_count": 1}, "Aberforth": {"_count": 1}, "Voldemorts": {"_count": 1}}, "for": {"_count": 20, "you": {"_count": 2}, "me": {"_count": 2}, "Nearly": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 5}, "Crouch": {"_count": 1}, "wands": {"_count": 1}, "tonight": {"_count": 1}, "others": {"_count": 1}, "now": {"_count": 1}, "em": {"_count": 1}, "distraction": {"_count": 1}, "Kreacher": {"_count": 1}, "Snape": {"_count": 1}}, "him": {"_count": 4, "any": {"_count": 1}, "good": {"_count": 2}, "the": {"_count": 1}}, "break": {"_count": 1, "into": {"_count": 1}}, "Macmillan": {"_count": 1, "": {"_count": 1}}, "want": {"_count": 4, "to": {"_count": 1}, "him": {"_count": 1}, "Hagrid": {"_count": 1}, "freedom": {"_count": 1}}, "I": {"_count": 48, "have": {"_count": 10}, "remember": {"_count": 1}, "need": {"_count": 2}, "": {"_count": 7}, "dont": {"_count": 1}, "look": {"_count": 5}, "reckon": {"_count": 1}, "mean": {"_count": 1}, "said": {"_count": 1}, "but": {"_count": 1}, "know": {"_count": 3}, "was": {"_count": 1}, "make": {"_count": 1}, "think": {"_count": 1}, "come": {"_count": 1}, "believe": {"_count": 1}, "can": {"_count": 1}, "owe": {"_count": 2}, "thought": {"_count": 1}, "care": {"_count": 1}, "stop": {"_count": 1}, "get": {"_count": 1}, "knew": {"_count": 1}, "want": {"_count": 1}, "much": {"_count": 1}}, "everything": {"_count": 4, "onehanded": {"_count": 1}, "youre": {"_count": 1}, "on": {"_count": 1}, "alone": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 2}}, "so": {"_count": 26, "again": {"_count": 2}, "": {"_count": 10}, "a": {"_count": 1}, "Seamus": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 2}, "Sirius": {"_count": 1}, "boys": {"_count": 1}, "three": {"_count": 1}, "in": {"_count": 1}, "politely": {"_count": 1}, "said": {"_count": 1}, "by": {"_count": 1}, "Harry": {"_count": 1}, "will": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 1}, "Potter": {"_count": 1}}, "and": {"_count": 9, "because": {"_count": 1}, "pulled": {"_count": 1}, "tried": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 2}, "then": {"_count": 2}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "seem": {"_count": 3, "to": {"_count": 3}}, "Dobby": {"_count": 1, "said": {"_count": 1}}, "his": {"_count": 8, "homework": {"_count": 2}, "up": {"_count": 1}, "detention": {"_count": 1}, "trial": {"_count": 1}, "bidding": {"_count": 2}, "full": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "about": {"_count": 9, "it": {"_count": 5}, "you": {"_count": 1}, "Crouch": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "nuffink": {"_count": 1, "underwater": {"_count": 1}}, "Malfoys": {"_count": 1, "bidding": {"_count": 1}}, "first": {"_count": 2, "once": {"_count": 1}, "and": {"_count": 1}}, "Severus": {"_count": 2, "said": {"_count": 2}}, "werewolves": {"_count": 1, "yet": {"_count": 1}}, "before": {"_count": 2, "the": {"_count": 1}, "bed": {"_count": 1}}, "beg": {"_count": 1, "you": {"_count": 1}}, "up": {"_count": 4, "his": {"_count": 3}, "to": {"_count": 1}}, "try": {"_count": 3, "and": {"_count": 1}, "said": {"_count": 1}, "not": {"_count": 1}}, "Hagrid": {"_count": 4, "continued": {"_count": 1}, "": {"_count": 2}, "grunted": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "or": {"_count": 2, "whom": {"_count": 1}, "say": {"_count": 1}}, "hours": {"_count": 1, "over": {"_count": 1}}, "if": {"_count": 8, "you": {"_count": 1}, "his": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 2}}, "look": {"_count": 3, "extraordinarily": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "large": {"_count": 1, "groups": {"_count": 1}}, "With": {"_count": 1, "difficulty": {"_count": 1}}, "me": {"_count": 5, "a": {"_count": 2}, "one": {"_count": 1}, "in": {"_count": 2}}, "how": {"_count": 3, "do": {"_count": 1}, "Cedrics": {"_count": 1}, "much": {"_count": 1}}, "hang": {"_count": 1, "around": {"_count": 1}}, "normally": {"_count": 1, "": {"_count": 1}}, "funny": {"_count": 1, "things": {"_count": 1}}, "really": {"_count": 2, "said": {"_count": 1}, "bad": {"_count": 1}}, "whayer": {"_count": 1, "told": {"_count": 1}}, "them": {"_count": 4, "Harry": {"_count": 1}, "things": {"_count": 1}, "a": {"_count": 1}, "wrong": {"_count": 1}}, "realize": {"_count": 2, "that": {"_count": 1}, "dont": {"_count": 1}}, "Karkaroff": {"_count": 1, "as": {"_count": 1}}, "endof": {"_count": 1, "year": {"_count": 1}}, "dont": {"_count": 2, "you": {"_count": 1}, "mention": {"_count": 1}}, "those": {"_count": 2, "first": {"_count": 1}, "hats": {"_count": 1}}, "our": {"_count": 2, "detentions": {"_count": 1}, "bit": {"_count": 1}}, "whatever": {"_count": 9, "it": {"_count": 1}, "I": {"_count": 1}, "anyone": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 1}, "Harry": {"_count": 1}, "Master": {"_count": 1}, "the": {"_count": 1}}, "forty": {"_count": 1, "": {"_count": 1}}, "fight": {"_count": 1, "em": {"_count": 1}}, "their": {"_count": 2, "stuff": {"_count": 1}, "own": {"_count": 1}}, "next": {"_count": 7, "time": {"_count": 1}, "a": {"_count": 1}, "year": {"_count": 1}, "": {"_count": 3}, "about": {"_count": 1}}, "thanks": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "mind": {"_count": 1, "though": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 1}, "something": {"_count": 1}}, "wont": {"_count": 1, "they": {"_count": 1}}, "sneak": {"_count": 1, "up": {"_count": 1}}, "anythin": {"_count": 2, "yeh": {"_count": 1}, "like": {"_count": 1}}, "mate": {"_count": 1, "": {"_count": 1}}, "snore": {"_count": 1, "at": {"_count": 1}}, "shes": {"_count": 1, "losing": {"_count": 1}}, "terrible": {"_count": 1, "things": {"_count": 1}}, "theyre": {"_count": 1, "trying": {"_count": 1}}, "then": {"_count": 3, "": {"_count": 2}, "Harry": {"_count": 1}}, "horrific": {"_count": 1, "things": {"_count": 1}}, "nothing": {"_count": 5, "to": {"_count": 1}, "useful": {"_count": 1}, "we": {"_count": 1}, "more": {"_count": 1}, "but": {"_count": 1}}, "Stun": {"_count": 1, "him": {"_count": 1}}, "battle": {"_count": 2, "": {"_count": 2}}, "where": {"_count": 2, "would": {"_count": 1}, "he": {"_count": 1}}, "Molly": {"_count": 1, "": {"_count": 1}}, "anyway": {"_count": 1, "said": {"_count": 1}}, "expel": {"_count": 1, "me": {"_count": 1}}, "mysterious": {"_count": 1, "work": {"_count": 1}}, "night": {"_count": 1, "duty": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 1}, "much": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 1, "them": {"_count": 1}}, "lines": {"_count": 1, "itll": {"_count": 1}}, "after": {"_count": 2, "Hogwarts": {"_count": 1}, "you": {"_count": 1}}, "Snapes": {"_count": 3, "stuff": {"_count": 1}, "essay": {"_count": 2}}, "yourselves": {"_count": 1, "justice": {"_count": 1}}, "two": {"_count": 1, "more": {"_count": 1}}, "patterns": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 1, "nut": {"_count": 1}}, "She": {"_count": 1, "turned": {"_count": 1}}, "do": {"_count": 3, "you": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 3}}, "theyve": {"_count": 1, "studied": {"_count": 1}}, "stuff": {"_count": 1, "even": {"_count": 1}}, "on": {"_count": 3, "your": {"_count": 2}, "you": {"_count": 1}}, "get": {"_count": 1, "expelled": {"_count": 1}}, "sound": {"_count": 1, "just": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "an": {"_count": 1, "so": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "Dont": {"_count": 1, "blame": {"_count": 1}}, "there": {"_count": 2, "were": {"_count": 1}, "was": {"_count": 1}}, "than": {"_count": 2, "to": {"_count": 1}, "because": {"_count": 1}}, "work": {"_count": 1, "well": {"_count": 1}}, "joinedup": {"_count": 1, "writing": {"_count": 1}}, "things": {"_count": 2, "": {"_count": 1}, "like": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "startling": {"_count": 1, "amounts": {"_count": 1}}, "Occlumency": {"_count": 2, "": {"_count": 1}, "lessons": {"_count": 1}}, "himself": {"_count": 1, "serious": {"_count": 1}}, "lets": {"_count": 2, "hear": {"_count": 1}, "hurry": {"_count": 1}}, "us": {"_count": 3, "during": {"_count": 1}, "in": {"_count": 1}, "if": {"_count": 1}}, "Snivelly": {"_count": 1, "wipe": {"_count": 1}}, "fine": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "cause": {"_count": 1, "a": {"_count": 1}}, "Charms": {"_count": 1, "always": {"_count": 1}}, "ten": {"_count": 1, "on": {"_count": 1}}, "some": {"_count": 4, "lastminute": {"_count": 1}, "cartwheels": {"_count": 1}, "good": {"_count": 1}, "work": {"_count": 1}}, "Thats": {"_count": 1, "funny": {"_count": 1}}, "Bellatrix": {"_count": 1, "said": {"_count": 1}}, "find": {"_count": 1, "dem": {"_count": 1}}, "kill": {"_count": 1, "be": {"_count": 1}}, "\u25a0": {"_count": 1, "It": {"_count": 1}}, "care": {"_count": 2, "said": {"_count": 1}, "that": {"_count": 1}}, "Siriuss": {"_count": 1, "bidding": {"_count": 1}}, "excuse": {"_count": 1, "me": {"_count": 1}}, "need": {"_count": 1, "them": {"_count": 1}}, "Dursley": {"_count": 1, "": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "Narcissa": {"_count": 1, "that": {"_count": 1}}, "love": {"_count": 1, "knitting": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "ere": {"_count": 1, "unless": {"_count": 1}}, "Madam": {"_count": 1, "Malkins": {"_count": 1}}, "fairly": {"_count": 1, "steady": {"_count": 1}}, "likewise": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "you": {"_count": 1}}, "mboy": {"_count": 1, "Im": {"_count": 1}}, "go": {"_count": 1, "back": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 2, "wrong": {"_count": 1}, "more": {"_count": 1}}, "turn": {"_count": 1, "us": {"_count": 1}}, "mine": {"_count": 1, "too": {"_count": 1}}, "either": {"_count": 2, "of": {"_count": 1}, "said": {"_count": 1}}, "therefore": {"_count": 1, "I": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "fly": {"_count": 1, "out": {"_count": 1}}, "spoil": {"_count": 1, "this": {"_count": 1}}, "ballet": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "just": {"_count": 2, "now": {"_count": 1}, "that": {"_count": 1}}, "Professor": {"_count": 1, "Slughorn": {"_count": 1}}, "zat": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "threat": {"_count": 1}}, "alone": {"_count": 1, "now": {"_count": 1}}, "thats": {"_count": 1, "why": {"_count": 1}}, "mumbled": {"_count": 1, "Harry": {"_count": 1}}, "ghouls": {"_count": 1, "normally": {"_count": 1}}, "many": {"_count": 1, "that": {"_count": 1}}, "my": {"_count": 1, "job": {"_count": 1}}, "remember": {"_count": 1, "thanks": {"_count": 1}}, "wizard": {"_count": 1, "wars": {"_count": 1}}, "someone": {"_count": 1, "of": {"_count": 1}}, "perfectly": {"_count": 1, "well": {"_count": 1}}, "yours": {"_count": 1, "Hermione": {"_count": 1}}, "stay": {"_count": 1, "free": {"_count": 1}}, "enjoy": {"_count": 1, "the": {"_count": 1}}, "Griphook": {"_count": 2, "": {"_count": 1}, "told": {"_count": 1}}, "Dragomir": {"_count": 1, "": {"_count": 1}}, "madam": {"_count": 1, "said": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "he": {"_count": 1}}, "What": {"_count": 1, "is": {"_count": 1}}, "Vanished": {"_count": 2, "objects": {"_count": 2}}, "please": {"_count": 1, "explain": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "Disslusion": {"_count": 1, "Charms": {"_count": 1}}, "stopped": {"_count": 1, "clinging": {"_count": 1}}, "A": {"_count": 1, "flask": {"_count": 1}}}, "crowd": {"_count": 291, "": {"_count": 61, ".": {"_count": 61}}, "easily": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 25, "tourists": {"_count": 1}, "confused": {"_count": 1}, "people": {"_count": 4}, "gnomes": {"_count": 1}, "curious": {"_count": 1}, "Gryffindors": {"_count": 1}, "spiders": {"_count": 1}, "sixth": {"_count": 1}, "wizards": {"_count": 1}, "frightened": {"_count": 1}, "students": {"_count": 1}, "Beauxbatons": {"_count": 1}, "merpeople": {"_count": 1}, "Ravenclaws": {"_count": 1}, "greenandsilverclad": {"_count": 1}, "second": {"_count": 1}, "well": {"_count": 1}, "goblins": {"_count": 1}, "dots": {"_count": 1}, "fighters": {"_count": 1}, "completely": {"_count": 1}, "survivors": {"_count": 1}}, "while": {"_count": 1, "cats": {"_count": 1}}, "until": {"_count": 3, "he": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}}, "thronging": {"_count": 3, "the": {"_count": 1}, "toward": {"_count": 1}, "around": {"_count": 1}}, "as": {"_count": 8, "Adrian": {"_count": 1}, "Malfoy": {"_count": 1}, "they": {"_count": 1}, "fourteen": {"_count": 1}, "Flint": {"_count": 1}, "though": {"_count": 2}, "Crouchs": {"_count": 1}}, "gasped": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 14, "on": {"_count": 1}, "cheering": {"_count": 2}, "hidden": {"_count": 1}, "wearing": {"_count": 1}, "making": {"_count": 2}, "all": {"_count": 1}, "jeering": {"_count": 1}, "silenced": {"_count": 1}, "congregating": {"_count": 1}, "thinning": {"_count": 1}, "afraid": {"_count": 1}, "frozen": {"_count": 1}}, "saw": {"_count": 3, "him": {"_count": 1}, "Hagrids": {"_count": 1}, "Chos": {"_count": 1}}, "and": {"_count": 11, "shouted": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "looking": {"_count": 1}, "Mostafas": {"_count": 1}, "back": {"_count": 1}, "knew": {"_count": 1}, "out": {"_count": 1}, "grabbed": {"_count": 1}, "Harry": {"_count": 1}, "charged": {"_count": 1}}, "jostling": {"_count": 1, "outside": {"_count": 1}}, "seemed": {"_count": 3, "to": {"_count": 2}, "even": {"_count": 1}}, "parted": {"_count": 3, "whispering": {"_count": 1}, "to": {"_count": 2}}, "burst": {"_count": 1, "into": {"_count": 1}}, "applauded": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "cheered": {"_count": 2, "and": {"_count": 2}}, "stampeded": {"_count": 1, "backward": {"_count": 1}}, "everyone": {"_count": 1, "laughed": {"_count": 1}}, "howled": {"_count": 2, "with": {"_count": 2}}, "were": {"_count": 2, "turning": {"_count": 1}, "quite": {"_count": 1}}, "his": {"_count": 2, "cold": {"_count": 1}, "eyes": {"_count": 1}}, "thinned": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "made": {"_count": 1, "their": {"_count": 1}}, "to": {"_count": 6, "speed": {"_count": 1}, "see": {"_count": 1}, "try": {"_count": 1}, "turn": {"_count": 1}, "shake": {"_count": 1}, "the": {"_count": 1}}, "jeered": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 3, "knew": {"_count": 1}, "came": {"_count": 1}, "had": {"_count": 1}}, "below": {"_count": 9, "as": {"_count": 1}, "in": {"_count": 1}, "booed": {"_count": 1}, "was": {"_count": 2}, "is": {"_count": 1}, "thundered": {"_count": 1}, "her": {"_count": 1}, "WEASLEY": {"_count": 1}}, "matching": {"_count": 1, "up": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "backed": {"_count": 3, "away": {"_count": 2}, "swiftly": {"_count": 1}}, "by": {"_count": 2, "kicking": {"_count": 1}, "now": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "swarming": {"_count": 2, "across": {"_count": 1}, "up": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 7}, "front": {"_count": 1}}, "toward": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "they": {"_count": 1, "accompanied": {"_count": 1}}, "thundering": {"_count": 1, "toward": {"_count": 1}}, "still": {"_count": 1, "discussing": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 12, "the": {"_count": 4}, "him": {"_count": 2}, "them": {"_count": 2}, "one": {"_count": 1}, "Dumbledore": {"_count": 1}, "Mr": {"_count": 1}, "it": {"_count": 1}}, "dispersed": {"_count": 1, "and": {"_count": 1}}, "watching": {"_count": 2, "": {"_count": 1}, "cheered": {"_count": 1}}, "lives": {"_count": 1, "here": {"_count": 1}}, "an": {"_count": 2, "odd": {"_count": 1}, "no": {"_count": 1}}, "which": {"_count": 3, "slowly": {"_count": 1}, "meant": {"_count": 1}, "was": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "didnt": {"_count": 1, "want": {"_count": 1}}, "oooohed": {"_count": 1, "and": {"_count": 1}}, "many": {"_count": 2, "of": {"_count": 2}}, "pounded": {"_count": 1, "against": {"_count": 1}}, "Krums": {"_count": 1, "nose": {"_count": 1}}, "who": {"_count": 1, "didnt": {"_count": 1}}, "roar": {"_count": 1, "as": {"_count": 1}}, "swelled": {"_count": 1, "": {"_count": 1}}, "beneath": {"_count": 2, "the": {"_count": 2}}, "moving": {"_count": 1, "toward": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "control": {"_count": 1, "at": {"_count": 1}}, "screamed": {"_count": 1, "": {"_count": 1}}, "erupt": {"_count": 1, "into": {"_count": 1}}, "drew": {"_count": 1, "its": {"_count": 1}}, "shrieked": {"_count": 2, "and": {"_count": 2}}, "but": {"_count": 2, "the": {"_count": 1}, "Harper": {"_count": 1}}, "pounding": {"_count": 1, "his": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "parting": {"_count": 1, "to": {"_count": 1}}, "echoed": {"_count": 1, "strangely": {"_count": 1}}, "Harry": {"_count": 4, "saw": {"_count": 1}, "followed": {"_count": 1}, "squinted": {"_count": 1}, "was": {"_count": 1}}, "then": {"_count": 2, "back": {"_count": 1}, "he": {"_count": 1}}, "recoiled": {"_count": 1, "slightly": {"_count": 1}}, "waved": {"_count": 1, "at": {"_count": 1}}, "turn": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "woman": {"_count": 1}}, "clutching": {"_count": 1, "a": {"_count": 1}}, "hurrying": {"_count": 1, "up": {"_count": 1}}, "came": {"_count": 1, "pouring": {"_count": 1}}, "all": {"_count": 2, "yelling": {"_count": 1}, "of": {"_count": 1}}, "are": {"_count": 1, "loving": {"_count": 1}}, "grew": {"_count": 1, "fainter": {"_count": 1}}, "not": {"_count": 2, "one": {"_count": 1}, "even": {"_count": 1}}, "descending": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "squeezed": {"_count": 1, "itself": {"_count": 1}}, "the": {"_count": 1, "panic": {"_count": 1}}, "shouted": {"_count": 1, "They": {"_count": 1}}, "nor": {"_count": 1, "to": {"_count": 1}}, "roared": {"_count": 2, "and": {"_count": 2}}, "laughed": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 1, "difficulty": {"_count": 1}}, "greeted": {"_count": 1, "a": {"_count": 1}}, "realized": {"_count": 1, "what": {"_count": 1}}, "resume": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "directly": {"_count": 1, "behind": {"_count": 1}}, "murmured": {"_count": 1, "behind": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "almost": {"_count": 1}}, "approached": {"_count": 1, "the": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "lining": {"_count": 1, "the": {"_count": 1}}, "whom": {"_count": 1, "Voldemorts": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "stirred": {"_count": 1, "as": {"_count": 1}}}, "sipped": {"_count": 4, "her": {"_count": 1, "tea": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "wine": {"_count": 1}}}, "through": {"_count": 1534, "pursed": {"_count": 1, "lips": {"_count": 1}}, "the": {"_count": 821, "door": {"_count": 46}, "gap": {"_count": 10}, "locked": {"_count": 1}, "glass": {"_count": 6}, "greenhouse": {"_count": 1}, "mail": {"_count": 1}, "sides": {"_count": 1}, "small": {"_count": 1}, "living": {"_count": 1}, "boardedup": {"_count": 1}, "gaps": {"_count": 2}, "air": {"_count": 49}, "open": {"_count": 16}, "little": {"_count": 2}, "bar": {"_count": 2}, "archway": {"_count": 5}, "silver": {"_count": 3}, "gloom": {"_count": 9}, "dusty": {"_count": 3}, "wall": {"_count": 4}, "Leaky": {"_count": 1}, "crowd": {"_count": 23}, "barrier": {"_count": 5}, "trains": {"_count": 1}, "finer": {"_count": 1}, "train": {"_count": 1}, "back": {"_count": 9}, "opposite": {"_count": 1}, "chattering": {"_count": 2}, "hangings": {"_count": 1}, "hole": {"_count": 11}, "portrait": {"_count": 40}, "dark": {"_count": 18}, "hoops": {"_count": 1}, "corridors": {"_count": 6}, "stormy": {"_count": 1}, "branches": {"_count": 3}, "pages": {"_count": 3}, "leaves": {"_count": 2}, "grounds": {"_count": 5}, "dense": {"_count": 3}, "undergrowth": {"_count": 3}, "tangled": {"_count": 1}, "trees": {"_count": 23}, "trapdoor": {"_count": 4}, "whirl": {"_count": 1}, "black": {"_count": 4}, "purple": {"_count": 3}, "gate": {"_count": 3}, "gateway": {"_count": 2}, "schedule": {"_count": 1}, "dining": {"_count": 1}, "bars": {"_count": 10}, "window": {"_count": 20}, "windshield": {"_count": 2}, "garden": {"_count": 2}, "house": {"_count": 6}, "Weasleys": {"_count": 1}, "banks": {"_count": 1}, "sea": {"_count": 1}, "solid": {"_count": 2}, "clouds": {"_count": 2}, "darkness": {"_count": 23}, "racket": {"_count": 1}, "goal": {"_count": 1}, "rest": {"_count": 4}, "quiet": {"_count": 1}, "blackboard": {"_count": 2}, "teeming": {"_count": 1}, "curtain": {"_count": 2}, "cuff": {"_count": 1}, "keyhole": {"_count": 3}, "entire": {"_count": 1}, "fumes": {"_count": 1}, "doors": {"_count": 4}, "stall": {"_count": 1}, "great": {"_count": 1}, "top": {"_count": 1}, "wrong": {"_count": 1}, "blank": {"_count": 1}, "month": {"_count": 1}, "opening": {"_count": 1}, "crack": {"_count": 1}, "front": {"_count": 3}, "megaphone": {"_count": 1}, "castle": {"_count": 7}, "hollow": {"_count": 1}, "forest": {"_count": 7}, "widest": {"_count": 1}, "tower": {"_count": 1}, "moonlight": {"_count": 1}, "odd": {"_count": 1}, "echoing": {"_count": 1}, "sizable": {"_count": 1}, "pipe": {"_count": 1}, "center": {"_count": 3}, "next": {"_count": 1}, "soup": {"_count": 1}, "mill": {"_count": 1}, "wickerwork": {"_count": 1}, "giant": {"_count": 1}, "hall": {"_count": 5}, "school": {"_count": 3}, "common": {"_count": 2}, "deserted": {"_count": 3}, "landscape": {"_count": 2}, "rain": {"_count": 1}, "textbook": {"_count": 1}, "thick": {"_count": 3}, "turbulent": {"_count": 1}, "icy": {"_count": 1}, "mullioned": {"_count": 1}, "tunnel": {"_count": 2}, "empty": {"_count": 3}, "oak": {"_count": 2}, "semidarkness": {"_count": 1}, "Slytherin": {"_count": 2}, "windows": {"_count": 3}, "clutter": {"_count": 1}, "vicious": {"_count": 1}, "floor": {"_count": 4}, "starved": {"_count": 1}, "manacle": {"_count": 1}, "grass": {"_count": 3}, "cloud": {"_count": 2}, "fog": {"_count": 2}, "still": {"_count": 1}, "doorway": {"_count": 2}, "curtains": {"_count": 4}, "net": {"_count": 1}, "boards": {"_count": 1}, "rosebushes": {"_count": 2}, "village": {"_count": 1}, "mist": {"_count": 7}, "gates": {"_count": 6}, "rows": {"_count": 1}, "campsite": {"_count": 1}, "salesmen": {"_count": 1}, "wood": {"_count": 1}, "Omnioculars": {"_count": 1}, "battling": {"_count": 1}, "apparently": {"_count": 1}, "compartment": {"_count": 1}, "double": {"_count": 5}, "Hall": {"_count": 2}, "mass": {"_count": 1}, "entrance": {"_count": 5}, "silent": {"_count": 2}, "first": {"_count": 5}, "pub": {"_count": 2}, "large": {"_count": 1}, "canvas": {"_count": 1}, "ceiling": {"_count": 2}, "Transfiguration": {"_count": 1}, "packed": {"_count": 1}, "students": {"_count": 1}, "crowds": {"_count": 2}, "peaceful": {"_count": 1}, "snow": {"_count": 5}, "frozen": {"_count": 2}, "cold": {"_count": 3}, "water": {"_count": 6}, "trick": {"_count": 1}, "tapestry": {"_count": 1}, "narrow": {"_count": 1}, "eerily": {"_count": 1}, "magazine": {"_count": 1}, "Ministry": {"_count": 1}, "Owlery": {"_count": 1}, "coil": {"_count": 1}, "maze": {"_count": 1}, "clear": {"_count": 1}, "last": {"_count": 1}, "enchanted": {"_count": 1}, "bonds": {"_count": 1}, "graveyard": {"_count": 1}, "frightened": {"_count": 1}, "outer": {"_count": 1}, "ordeal": {"_count": 1}, "Memory": {"_count": 1}, "Triwizard": {"_count": 1}, "screen": {"_count": 1}, "kitchen": {"_count": 6}, "stillopen": {"_count": 1}, "cat": {"_count": 1}, "grimy": {"_count": 2}, "ticket": {"_count": 1}, "earth": {"_count": 2}, "golden": {"_count": 2}, "doorways": {"_count": 1}, "sheaf": {"_count": 1}, "halfmoon": {"_count": 1}, "glasspaneled": {"_count": 1}, "station": {"_count": 1}, "high": {"_count": 4}, "generations": {"_count": 2}, "upper": {"_count": 1}, "haze": {"_count": 1}, "room": {"_count": 5}, "creatures": {"_count": 1}, "groups": {"_count": 1}, "deepening": {"_count": 1}, "stadium": {"_count": 2}, "wind": {"_count": 1}, "other": {"_count": 1}, "thickening": {"_count": 2}, "mountains": {"_count": 1}, "channels": {"_count": 2}, "untouched": {"_count": 1}, "night": {"_count": 7}, "snakes": {"_count": 1}, "message": {"_count": 1}, "crammed": {"_count": 1}, "crowded": {"_count": 1}, "circle": {"_count": 1}, "heavens": {"_count": 1}, "scar": {"_count": 2}, "excited": {"_count": 1}, "Department": {"_count": 1}, "network": {"_count": 1}, "emerald": {"_count": 1}, "papers": {"_count": 1}, "circular": {"_count": 1}, "dappled": {"_count": 1}, "dormitory": {"_count": 1}, "hourglass": {"_count": 1}, "second": {"_count": 1}, "milling": {"_count": 1}, "flames": {"_count": 2}, "topmost": {"_count": 1}, "hills": {"_count": 1}, "gathering": {"_count": 1}, "side": {"_count": 1}, "slits": {"_count": 1}, "surface": {"_count": 2}, "only": {"_count": 1}, "ragged": {"_count": 1}, "ancient": {"_count": 1}, "magical": {"_count": 1}, "dirty": {"_count": 1}, "towns": {"_count": 1}, "creaking": {"_count": 1}, "examination": {"_count": 1}, "fitting": {"_count": 1}, "jumble": {"_count": 1}, "feast": {"_count": 1}, "many": {"_count": 1}, "murky": {"_count": 1}, "hedge": {"_count": 2}, "cool": {"_count": 1}, "gum": {"_count": 1}, "throng": {"_count": 1}, "previous": {"_count": 1}, "restricted": {"_count": 1}, "place": {"_count": 2}, "cramped": {"_count": 1}, "shifting": {"_count": 1}, "class": {"_count": 1}, "alleyways": {"_count": 1}, "thin": {"_count": 1}, "fourth": {"_count": 1}, "cabinets": {"_count": 1}, "fight": {"_count": 2}, "murmuring": {"_count": 1}, "Room": {"_count": 1}, "cursed": {"_count": 1}, "catcalls": {"_count": 1}, "newspapers": {"_count": 1}, "intervening": {"_count": 1}, "skies": {"_count": 1}, "stillcrowded": {"_count": 1}, "messy": {"_count": 1}, "service": {"_count": 1}, "Ariana": {"_count": 1}, "canopy": {"_count": 1}, "drawing": {"_count": 1}, "letter": {"_count": 1}, "veil": {"_count": 2}, "bathroom": {"_count": 1}, "legs": {"_count": 1}, "towering": {"_count": 2}, "corridor": {"_count": 1}, "Atrium": {"_count": 1}, "tents": {"_count": 1}, "dementors": {"_count": 1}, "countryside": {"_count": 2}, "heavy": {"_count": 1}, "heather": {"_count": 1}, "tangles": {"_count": 1}, "glittering": {"_count": 1}, "mokeskin": {"_count": 1}, "ice": {"_count": 1}, "Lovegoods": {"_count": 1}, "centuries": {"_count": 2}, "debris": {"_count": 1}, "whole": {"_count": 1}, "chilly": {"_count": 1}, "infinitesimal": {"_count": 1}, "slit": {"_count": 1}, "sky": {"_count": 1}, "red": {"_count": 1}, "bronze": {"_count": 1}, "labyrinthine": {"_count": 1}, "stone": {"_count": 1}, "handle": {"_count": 1}, "metal": {"_count": 1}, "singed": {"_count": 1}, "boy": {"_count": 1}, "orphanage": {"_count": 1}, "smashed": {"_count": 1}, "tide": {"_count": 1}, "boundary": {"_count": 1}, "trembling": {"_count": 1}, "concealed": {"_count": 1}, "nearest": {"_count": 1}, "dust": {"_count": 2}, "enormous": {"_count": 1}, "billowing": {"_count": 1}, "smoke": {"_count": 1}, "huge": {"_count": 1}, "concealing": {"_count": 1}, "midst": {"_count": 1}, "Willows": {"_count": 1}, "tiny": {"_count": 1}, "paintings": {"_count": 1}, "playground": {"_count": 1}, "floors": {"_count": 1}, "old": {"_count": 1}, "unformed": {"_count": 1}, "ages": {"_count": 1}, "closegrowing": {"_count": 1}, "slowly": {"_count": 1}, "half": {"_count": 1}}, "when": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 102, "mouthful": {"_count": 5}, "hole": {"_count": 1}, "maze": {"_count": 1}, "curtain": {"_count": 1}, "pair": {"_count": 2}, "door": {"_count": 14}, "tapestry": {"_count": 3}, "crowd": {"_count": 2}, "heavy": {"_count": 1}, "particularly": {"_count": 1}, "brightly": {"_count": 1}, "side": {"_count": 1}, "small": {"_count": 2}, "loose": {"_count": 1}, "midair": {"_count": 1}, "crack": {"_count": 1}, "gulp": {"_count": 1}, "misted": {"_count": 1}, "report": {"_count": 1}, "picture": {"_count": 1}, "passage": {"_count": 1}, "forest": {"_count": 1}, "rough": {"_count": 1}, "dreadful": {"_count": 1}, "fiftyfoothigh": {"_count": 1}, "gap": {"_count": 6}, "sizable": {"_count": 1}, "step": {"_count": 1}, "dam": {"_count": 1}, "dragons": {"_count": 1}, "series": {"_count": 1}, "circular": {"_count": 2}, "page": {"_count": 1}, "Divination": {"_count": 1}, "kind": {"_count": 1}, "terrible": {"_count": 1}, "window": {"_count": 2}, "Ministry": {"_count": 1}, "second": {"_count": 3}, "narrow": {"_count": 1}, "wall": {"_count": 1}, "topsecurity": {"_count": 1}, "slit": {"_count": 1}, "longer": {"_count": 1}, "sheet": {"_count": 1}, "cloud": {"_count": 1}, "set": {"_count": 2}, "whispered": {"_count": 1}, "snowy": {"_count": 1}, "bow": {"_count": 1}, "knot": {"_count": 1}, "dive": {"_count": 1}, "pamphlet": {"_count": 1}, "patch": {"_count": 1}, "very": {"_count": 1}, "box": {"_count": 1}, "powerful": {"_count": 1}, "thick": {"_count": 1}, "canopy": {"_count": 1}, "garden": {"_count": 1}, "gigantic": {"_count": 1}, "wreath": {"_count": 1}, "dreary": {"_count": 1}, "handle": {"_count": 1}, "classroom": {"_count": 1}, "solid": {"_count": 1}, "tiny": {"_count": 1}, "haze": {"_count": 1}, "clear": {"_count": 1}, "smashed": {"_count": 1}}, "his": {"_count": 97, "hair": {"_count": 8}, "books": {"_count": 1}, "binoculars": {"_count": 1}, "exams": {"_count": 1}, "good": {"_count": 1}, "glasses": {"_count": 2}, "mouthful": {"_count": 1}, "own": {"_count": 2}, "spectacles": {"_count": 1}, "Potions": {"_count": 1}, "halfmoon": {"_count": 5}, "fingers": {"_count": 6}, "camera": {"_count": 1}, "body": {"_count": 3}, "whole": {"_count": 1}, "sobs": {"_count": 1}, "connections": {"_count": 1}, "Omnioculars": {"_count": 4}, "paces": {"_count": 1}, "curtain": {"_count": 1}, "notes": {"_count": 1}, "gills": {"_count": 1}, "mouth": {"_count": 2}, "filthy": {"_count": 1}, "long": {"_count": 3}, "efforts": {"_count": 1}, "beetleblack": {"_count": 1}, "nephew": {"_count": 1}, "shock": {"_count": 1}, "mismatched": {"_count": 1}, "matted": {"_count": 1}, "steakand": {"_count": 1}, "mind": {"_count": 6}, "one": {"_count": 1}, "veins": {"_count": 4}, "presents": {"_count": 1}, "scar": {"_count": 1}, "puffy": {"_count": 1}, "first": {"_count": 1}, "anger": {"_count": 1}, "stomach": {"_count": 1}, "greasy": {"_count": 1}, "gag": {"_count": 1}, "brain": {"_count": 2}, "copy": {"_count": 2}, "rainwashed": {"_count": 1}, "megaphone": {"_count": 1}, "fist": {"_count": 1}, "defenses": {"_count": 1}, "halfclosed": {"_count": 1}, "chest": {"_count": 1}, "new": {"_count": 1}, "pockets": {"_count": 1}, "puffedup": {"_count": 1}, "swollen": {"_count": 1}, "lightning": {"_count": 1}, "white": {"_count": 1}, "eyelids": {"_count": 1}, "closed": {"_count": 2}, "lashes": {"_count": 1}}, "eyeglasses": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 16, "Harrys": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 2}, "the": {"_count": 4}, "her": {"_count": 1}, "this": {"_count": 3}, "these": {"_count": 1}, "that": {"_count": 2}, "those": {"_count": 1}}, "doorways": {"_count": 2, "hidden": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 58, "Neville": {"_count": 1}, "shut": {"_count": 1}, "holding": {"_count": 1}, "and": {"_count": 9}, "his": {"_count": 3}, "": {"_count": 18}, "a": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 4}, "in": {"_count": 2}, "again": {"_count": 2}, "tearing": {"_count": 1}, "with": {"_count": 2}, "but": {"_count": 1}, "all": {"_count": 2}, "at": {"_count": 1}, "carry": {"_count": 1}, "the": {"_count": 1}, "toward": {"_count": 1}, "sufficiently": {"_count": 1}, "They": {"_count": 1}, "curled": {"_count": 1}, "nearly": {"_count": 1}, "alone": {"_count": 1}}, "one": {"_count": 8, "door": {"_count": 1}, "of": {"_count": 6}, "Fridays": {"_count": 1}}, "another": {"_count": 5, "": {"_count": 1}, "decree": {"_count": 1}, "dozen": {"_count": 1}, "door": {"_count": 1}, "broken": {"_count": 1}}, "their": {"_count": 15, "telescopes": {"_count": 1}, "exam": {"_count": 1}, "scarves": {"_count": 1}, "mouth": {"_count": 1}, "plates": {"_count": 1}, "ranks": {"_count": 1}, "dark": {"_count": 1}, "lunchtimes": {"_count": 1}, "masks": {"_count": 1}, "doors": {"_count": 1}, "fifth": {"_count": 1}, "exams": {"_count": 1}, "circle": {"_count": 1}, "trunks": {"_count": 1}, "frames": {"_count": 1}}, "human": {"_count": 1, "veins": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 22, "!": {"_count": 4}, ".": {"_count": 15}, "?": {"_count": 3}}, "they": {"_count": 1, "got": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "unwrapping": {"_count": 1, "his": {"_count": 1}}, "him": {"_count": 20, "as": {"_count": 2}, "and": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 4}, "listening": {"_count": 1}, "he": {"_count": 2}, "any": {"_count": 1}, "though": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}, "but": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}, "How": {"_count": 1}}, "books": {"_count": 1, "for": {"_count": 1}}, "So": {"_count": 1, "you": {"_count": 1}}, "her": {"_count": 29, "long": {"_count": 1}, "fingers": {"_count": 5}, "hair": {"_count": 3}, "stomach": {"_count": 1}, "head": {"_count": 1}, "megaphone": {"_count": 1}, "velvetcovered": {"_count": 1}, "squarerimmed": {"_count": 1}, "nose": {"_count": 1}, "explanation": {"_count": 1}, "massive": {"_count": 1}, "thick": {"_count": 2}, "hands": {"_count": 1}, "hugely": {"_count": 1}, "lopsided": {"_count": 1}, "window": {"_count": 1}, "usual": {"_count": 1}, "enormous": {"_count": 1}, "square": {"_count": 1}, "magnifying": {"_count": 1}, "teeth": {"_count": 1}, "heavily": {"_count": 1}}, "my": {"_count": 7, "Transfiguration": {"_count": 1}, "books": {"_count": 1}, "mothers": {"_count": 1}, "tongue": {"_count": 1}, "window": {"_count": 1}, "pub": {"_count": 1}, "arrogance": {"_count": 1}}, "that": {"_count": 10, "trapdoor": {"_count": 1}, "gale": {"_count": 1}, "oneeyed": {"_count": 1}, "school": {"_count": 1}, "maze": {"_count": 1}, "new": {"_count": 1}, "dark": {"_count": 1}, "every": {"_count": 1}, "barrier": {"_count": 1}, "front": {"_count": 1}}, "to": {"_count": 8, "the": {"_count": 4}, "us": {"_count": 1}, "Harrys": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "Voldemorts": {"_count": 2, "clutches": {"_count": 1}, "past": {"_count": 1}}, "gritted": {"_count": 13, "teeth": {"_count": 13}}, "Harrys": {"_count": 11, "room": {"_count": 1}, "hair": {"_count": 1}, "dazed": {"_count": 1}, "robes": {"_count": 1}, "chest": {"_count": 2}, "eyelids": {"_count": 1}, "closed": {"_count": 1}, "mouth": {"_count": 1}, "mind": {"_count": 1}, "head": {"_count": 1}}, "using": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 11, "at": {"_count": 1}, "": {"_count": 2}, "door": {"_count": 1}, "before": {"_count": 1}, "school": {"_count": 1}, "afternoon": {"_count": 1}, "said": {"_count": 1}, "about": {"_count": 1}, "interview": {"_count": 1}, "damned": {"_count": 1}}, "them": {"_count": 9, "in": {"_count": 1}, "hardly": {"_count": 1}, "dont": {"_count": 1}, "": {"_count": 4}, "taking": {"_count": 1}, "and": {"_count": 1}}, "an": {"_count": 6, "icy": {"_count": 1}, "exam": {"_count": 1}, "alley": {"_count": 1}, "early": {"_count": 1}, "eyeglass": {"_count": 1}, "upper": {"_count": 1}}, "anyone": {"_count": 1, "said": {"_count": 1}}, "transforming": {"_count": 1, "into": {"_count": 1}}, "clenched": {"_count": 6, "teeth": {"_count": 6}}, "gigantic": {"_count": 1, "puffed": {"_count": 1}}, "with": {"_count": 3, "him": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}}, "nine": {"_count": 1, "generations": {"_count": 1}}, "you": {"_count": 5, "wouldnt": {"_count": 1}, "said": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 2}}, "Myrtles": {"_count": 1, "nose": {"_count": 1}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "itll": {"_count": 1, "take": {"_count": 1}}, "first": {"_count": 3, "": {"_count": 2}, "with": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "somebody": {"_count": 1, "else": {"_count": 1}}, "five": {"_count": 1, "delicious": {"_count": 1}}, "gaps": {"_count": 1, "that": {"_count": 1}}, "coming": {"_count": 1, "through": {"_count": 1}}, "double": {"_count": 1, "Potions": {"_count": 1}}, "twenty": {"_count": 1, "pairs": {"_count": 1}}, "Herbology": {"_count": 1, "even": {"_count": 1}}, "please": {"_count": 1, "came": {"_count": 1}}, "and": {"_count": 8, "Harry": {"_count": 1}, "hoisted": {"_count": 1}, "decided": {"_count": 2}, "through": {"_count": 3}, "too": {"_count": 1}}, "well": {"_count": 1, "its": {"_count": 1}}, "dinner": {"_count": 4, "not": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "Harry": {"_count": 14, "like": {"_count": 3}, "toward": {"_count": 1}, "and": {"_count": 1}, "who": {"_count": 1}, "as": {"_count": 1}, "could": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}, "but": {"_count": 1}, "jangling": {"_count": 1}, "setting": {"_count": 1}, "with": {"_count": 1}}, "thick": {"_count": 2, "white": {"_count": 2}}, "its": {"_count": 3, "paces": {"_count": 2}, "dark": {"_count": 1}}, "Honey": {"_count": 1, "dukes": {"_count": 1}}, "without": {"_count": 1, "help": {"_count": 1}}, "which": {"_count": 29, "they": {"_count": 7}, "the": {"_count": 3}, "Cedric": {"_count": 1}, "Fred": {"_count": 2}, "he": {"_count": 3}, "Harry": {"_count": 2}, "Mrs": {"_count": 2}, "loomed": {"_count": 1}, "sunlight": {"_count": 1}, "new": {"_count": 1}, "night": {"_count": 1}, "Hagrid": {"_count": 1}, "warm": {"_count": 1}, "Malfoys": {"_count": 2}, "Nick": {"_count": 1}}, "our": {"_count": 2, "fingers": {"_count": 1}, "journey": {"_count": 1}}, "Potions": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "doors": {"_count": 1, "into": {"_count": 1}}, "those": {"_count": 2, "trees": {"_count": 1}, "astonishingly": {"_count": 1}}, "Ottery": {"_count": 1, "St": {"_count": 1}}, "solid": {"_count": 1, "wood": {"_count": 1}}, "Unfogging": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 3, "picture": {"_count": 1}, "exam": {"_count": 1}, "particle": {"_count": 1}}, "crowds": {"_count": 1, "in": {"_count": 1}}, "Invisibility": {"_count": 2, "Cloaks": {"_count": 2}}, "each": {"_count": 1, "in": {"_count": 1}}, "some": {"_count": 2, "sort": {"_count": 1}, "of": {"_count": 1}}, "six": {"_count": 3, "floors": {"_count": 1}, "bottles": {"_count": 1}, "more": {"_count": 1}}, "here": {"_count": 7, "before": {"_count": 1}, "": {"_count": 2}, "He": {"_count": 1}, "Rookwood": {"_count": 1}, "my": {"_count": 1}, "he": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "January": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}, "page": {"_count": 1, "after": {"_count": 1}}, "stuff": {"_count": 1, "like": {"_count": 1}}, "something": {"_count": 1, "icycold": {"_count": 1}}, "lunch": {"_count": 1, "did": {"_count": 1}}, "these": {"_count": 1, "tasks": {"_count": 1}}, "enough": {"_count": 2, "tonight": {"_count": 1}, "of": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "various": {"_count": 1, "nearby": {"_count": 1}}, "tiny": {"_count": 1, "narrowed": {"_count": 1}}, "twice": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "three": {"_count": 2, "times": {"_count": 1}, "quarters": {"_count": 1}}, "walls": {"_count": 1, "doors": {"_count": 1}}, "clouds": {"_count": 1, "": {"_count": 1}}, "Little": {"_count": 1, "Whinging": {"_count": 1}}, "slits": {"_count": 2, "in": {"_count": 2}}, "or": {"_count": 1, "a": {"_count": 1}}, "onto": {"_count": 1, "platform": {"_count": 1}}, "much": {"_count": 1, "emptier": {"_count": 1}}, "carefully": {"_count": 3, "said": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "your": {"_count": 3, "examination": {"_count": 1}, "date": {"_count": 1}, "ears": {"_count": 1}}, "Katies": {"_count": 1, "outstretched": {"_count": 1}}, "Charms": {"_count": 1, "but": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 2}}, "within": {"_count": 1, "minutes": {"_count": 1}}, "Umbridges": {"_count": 3, "classes": {"_count": 1}, "new": {"_count": 1}, "screening": {"_count": 1}}, "Rons": {"_count": 1, "central": {"_count": 1}}, "shaking": {"_count": 1, "Harrys": {"_count": 1}}, "Fang": {"_count": 1, "was": {"_count": 1}}, "Hagrids": {"_count": 1, "babbling": {"_count": 1}}, "two": {"_count": 1, "feet": {"_count": 1}}, "bright": {"_count": 1, "dark": {"_count": 1}}, "what": {"_count": 3, "felt": {"_count": 1}, "he": {"_count": 1}, "Michael": {"_count": 1}}, "opening": {"_count": 1, "his": {"_count": 1}}, "heavily": {"_count": 1, "lidded": {"_count": 1}}, "nothing": {"_count": 1, "more": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "Snapes": {"_count": 1, "defenses": {"_count": 1}}, "cold": {"_count": 1, "blackness": {"_count": 1}}, "icy": {"_count": 1, "blackness": {"_count": 1}}, "tightly": {"_count": 1, "gritted": {"_count": 1}}, "several": {"_count": 2, "lowhanging": {"_count": 1}, "times": {"_count": 1}}, "thickly": {"_count": 1, "knotted": {"_count": 1}}, "yer": {"_count": 1, "exams": {"_count": 1}}, "wild": {"_count": 1, "country": {"_count": 1}}, "testing": {"_count": 1, "Draco": {"_count": 1}}, "other": {"_count": 1, "doorways": {"_count": 1}}, "watering": {"_count": 1, "eyes": {"_count": 1}}, "today": {"_count": 1, "Tom": {"_count": 1}}, "boyfriends": {"_count": 1, "a": {"_count": 1}}, "shop": {"_count": 1, "windows": {"_count": 1}}, "hordes": {"_count": 1, "of": {"_count": 1}}, "stretches": {"_count": 1, "of": {"_count": 1}}, "including": {"_count": 1, "Malfoy": {"_count": 1}}, "deserted": {"_count": 1, "corridors": {"_count": 1}}, "whirling": {"_count": 1, "darkness": {"_count": 1}}, "darkness": {"_count": 4, "until": {"_count": 1}, "again": {"_count": 1}, "once": {"_count": 1}, "and": {"_count": 1}}, "rain": {"_count": 1, "flecked": {"_count": 1}}, "October": {"_count": 1, "came": {"_count": 1}}, "swirling": {"_count": 1, "sleet": {"_count": 1}}, "pulling": {"_count": 1, "on": {"_count": 1}}, "plus": {"_count": 1, "Slughorns": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "old": {"_count": 1, "books": {"_count": 1}}, "nothingness": {"_count": 1, "and": {"_count": 1}}, "dark": {"_count": 1, "nothingness": {"_count": 1}}, "oblivion": {"_count": 1, "and": {"_count": 1}}, "looking": {"_count": 1, "increasingly": {"_count": 1}}, "perfectly": {"_count": 1, "well": {"_count": 1}}, "very": {"_count": 1, "red": {"_count": 1}}, "May": {"_count": 1, "and": {"_count": 1}}, "numb": {"_count": 1, "lips": {"_count": 1}}, "chattering": {"_count": 1, "teeth": {"_count": 1}}, "space": {"_count": 2, "it": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Mrs": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "reasoned": {"_count": 1, "discussion": {"_count": 1}}, "but": {"_count": 1, "vanished": {"_count": 1}}, "ter": {"_count": 1, "get": {"_count": 1}}, "The": {"_count": 1, "Tales": {"_count": 1}}, "trembling": {"_count": 1, "lips": {"_count": 1}}, "streaming": {"_count": 1, "eyes": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermoles": {"_count": 1}}, "Gregorovitch": {"_count": 1, "s": {"_count": 1}}, "until": {"_count": 1, "finding": {"_count": 1}}, "sodden": {"_count": 1, "landscapes": {"_count": 1}}, "almost": {"_count": 1, "any": {"_count": 1}}, "history": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "empty": {"_count": 1}}, "Bellatrixs": {"_count": 1, "low": {"_count": 1}}, "wisps": {"_count": 1, "of": {"_count": 1}}, "reeds": {"_count": 1, "and": {"_count": 1}}, "Aberforths": {"_count": 1, "wrinkles": {"_count": 1}}, "lopsided": {"_count": 1, "horn": {"_count": 1}}, "grounds": {"_count": 1, "that": {"_count": 1}}, "shifting": {"_count": 1, "shapes": {"_count": 1}}}, "pursed": {"_count": 9, "lips": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 4, "lips": {"_count": 4}}, "over": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "she": {"_count": 2, "threw": {"_count": 1}, "leaned": {"_count": 1}}}, "lips": {"_count": 94, "": {"_count": 21, ".": {"_count": 21}}, "tightened": {"_count": 1, "as": {"_count": 1}}, "curled": {"_count": 1, "into": {"_count": 1}}, "were": {"_count": 5, "white": {"_count": 1}, "pursed": {"_count": 1}, "shaking": {"_count": 1}, "cold": {"_count": 1}, "an": {"_count": 1}}, "twitched": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 12, "blew": {"_count": 1}, "set": {"_count": 1}, "then": {"_count": 2}, "putting": {"_count": 1}, "gave": {"_count": 1}, "strode": {"_count": 1}, "pointing": {"_count": 1}, "sat": {"_count": 1}, "said": {"_count": 1}, "looking": {"_count": 1}, "whispered": {"_count": 1}}, "looking": {"_count": 1, "like": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "moved": {"_count": 3, "but": {"_count": 1}, "silently": {"_count": 1}, "as": {"_count": 1}}, "but": {"_count": 3, "didnt": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "little": {"_count": 1}}, "then": {"_count": 1, "pointed": {"_count": 1}}, "pursed": {"_count": 2, "over": {"_count": 1}, "she": {"_count": 1}}, "form": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 1, "led": {"_count": 1}}, "in": {"_count": 2, "an": {"_count": 1}, "apparent": {"_count": 1}}, "welcome": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "speaking": {"_count": 1, "only": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "pressed": {"_count": 2, "together": {"_count": 1}, "hard": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}, "moving": {"_count": 2, "soundlessly": {"_count": 2}}, "you": {"_count": 1, "dare": {"_count": 1}}, "to": {"_count": 3, "it": {"_count": 1}, "his": {"_count": 1}, "ask": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "tightly": {"_count": 1, "compressed": {"_count": 1}}, "together": {"_count": 1, "looking": {"_count": 1}}, "frankly": {"_count": 1, "she": {"_count": 1}}, "when": {"_count": 1, "Hermione": {"_count": 1}}, "almost": {"_count": 1, "touched": {"_count": 1}}, "with": {"_count": 1, "boxes": {"_count": 1}}, "the": {"_count": 1, "outline": {"_count": 1}}, "slowly": {"_count": 1, "obscenely": {"_count": 1}}, "parted": {"_count": 1, "evidently": {"_count": 1}}, "move": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "met": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 1, "parted": {"_count": 1}}, "quivered": {"_count": 1, "suspiciously": {"_count": 1}}, "drawn": {"_count": 1, "back": {"_count": 1}}, "trembled": {"_count": 1, "with": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "easily": {"_count": 1, "without": {"_count": 1}}}, "whether": {"_count": 340, "he": {"_count": 76, "dared": {"_count": 2}, "was": {"_count": 20}, "should": {"_count": 5}, "had": {"_count": 9}, "could": {"_count": 10}, "would": {"_count": 7}, "felt": {"_count": 1}, "wanted": {"_count": 5}, "mightnt": {"_count": 1}, "ought": {"_count": 3}, "found": {"_count": 1}, "might": {"_count": 1}, "forgave": {"_count": 1}, "really": {"_count": 1}, "even": {"_count": 1}, "liked": {"_count": 1}, "left": {"_count": 1}, "ever": {"_count": 1}, "is": {"_count": 2}, "lived": {"_count": 1}, "remembered": {"_count": 1}, "knew": {"_count": 1}}, "to": {"_count": 10, "laugh": {"_count": 2}, "slam": {"_count": 1}, "answer": {"_count": 1}, "wait": {"_count": 1}, "smile": {"_count": 1}, "use": {"_count": 1}, "believe": {"_count": 1}, "torture": {"_count": 1}, "the": {"_count": 1}}, "Filch": {"_count": 1, "was": {"_count": 1}}, "Ron": {"_count": 3, "or": {"_count": 2}, "and": {"_count": 1}}, "Snape": {"_count": 5, "was": {"_count": 2}, "would": {"_count": 1}, "did": {"_count": 1}, "sensed": {"_count": 1}}, "theyd": {"_count": 1, "ever": {"_count": 1}}, "it": {"_count": 28, "was": {"_count": 11}, "had": {"_count": 5}, "wanted": {"_count": 1}, "is": {"_count": 1}, "looked": {"_count": 1}, "would": {"_count": 4}, "worked": {"_count": 1}, "has": {"_count": 1}, "hadnt": {"_count": 1}, "might": {"_count": 1}, "will": {"_count": 1}}, "Id": {"_count": 1, "be": {"_count": 1}}, "this": {"_count": 5, "was": {"_count": 1}, "has": {"_count": 1}, "meant": {"_count": 1}, "frail": {"_count": 1}, "is": {"_count": 1}}, "the": {"_count": 22, "Malfoys": {"_count": 1}, "best": {"_count": 1}, "Dursleys": {"_count": 1}, "Muggles": {"_count": 1}, "Invisibility": {"_count": 1}, "substance": {"_count": 1}, "people": {"_count": 2}, "words": {"_count": 1}, "instrument": {"_count": 1}, "enchantments": {"_count": 1}, "two": {"_count": 1}, "conclusions": {"_count": 1}, "map": {"_count": 1}, "shivers": {"_count": 1}, "coast": {"_count": 1}, "world": {"_count": 1}, "Minister": {"_count": 1}, "intensity": {"_count": 1}, "thing": {"_count": 1}, "sword": {"_count": 1}, "elf": {"_count": 1}}, "Justin": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 16, "put": {"_count": 1}, "should": {"_count": 1}, "was": {"_count": 2}, "wish": {"_count": 1}, "can": {"_count": 1}, "could": {"_count": 3}, "liked": {"_count": 1}, "had": {"_count": 1}, "ought": {"_count": 1}, "oughtnt": {"_count": 1}, "might": {"_count": 1}, "live": {"_count": 1}, "cant": {"_count": 1}}, "there": {"_count": 9, "is": {"_count": 2}, "was": {"_count": 3}, "were": {"_count": 2}, "would": {"_count": 1}, "isnt": {"_count": 1}}, "hed": {"_count": 2, "be": {"_count": 1}, "reached": {"_count": 1}}, "they": {"_count": 17, "thought": {"_count": 1}, "could": {"_count": 1}, "were": {"_count": 5}, "hibernate": {"_count": 1}, "believe": {"_count": 1}, "had": {"_count": 4}, "wanted": {"_count": 1}, "would": {"_count": 1}, "might": {"_count": 1}, "ought": {"_count": 1}}, "Hagrid": {"_count": 1, "wanted": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "Harrys": {"_count": 1, "broom": {"_count": 1}}, "Professor": {"_count": 2, "Lupin": {"_count": 1}, "Trelawney": {"_count": 1}}, "Black": {"_count": 1, "had": {"_count": 1}}, "any": {"_count": 5, "of": {"_count": 2}, "Hogwarts": {"_count": 1}, "Care": {"_count": 1}, "owls": {"_count": 1}}, "theyre": {"_count": 1, "used": {"_count": 1}}, "a": {"_count": 5, "book": {"_count": 1}, "boy": {"_count": 1}, "free": {"_count": 1}, "protective": {"_count": 1}, "pulse": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "were": {"_count": 2, "waiting": {"_count": 1}, "doing": {"_count": 1}}, "their": {"_count": 1, "clubs": {"_count": 1}}, "or": {"_count": 15, "not": {"_count": 15}}, "Baddock": {"_count": 1, "knew": {"_count": 1}}, "magical": {"_count": 1, "or": {"_count": 1}}, "youre": {"_count": 2, "seventeen": {"_count": 1}, "you": {"_count": 1}}, "Dumbledore": {"_count": 5, "had": {"_count": 2}, "would": {"_count": 2}, "wanted": {"_count": 1}}, "you": {"_count": 16, "should": {"_count": 1}, "and": {"_count": 1}, "want": {"_count": 1}, "knew": {"_count": 1}, "are": {"_count": 2}, "received": {"_count": 1}, "know": {"_count": 4}, "warned": {"_count": 1}, "noticed": {"_count": 1}, "could": {"_count": 1}, "saw": {"_count": 2}}, "friendly": {"_count": 1, "or": {"_count": 1}}, "Mr": {"_count": 2, "Crouch": {"_count": 1}, "Potter": {"_count": 1}}, "that": {"_count": 1, "hadnt": {"_count": 1}}, "youve": {"_count": 2, "been": {"_count": 2}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "accidentally": {"_count": 1, "or": {"_count": 1}}, "because": {"_count": 2, "they": {"_count": 1}, "of": {"_count": 1}}, "Potter": {"_count": 1, "would": {"_count": 1}}, "Voldemort": {"_count": 2, "had": {"_count": 1}, "won": {"_count": 1}}, "his": {"_count": 2, "spine": {"_count": 1}, "chances": {"_count": 1}}, "she": {"_count": 7, "could": {"_count": 2}, "had": {"_count": 2}, "came": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}}, "youd": {"_count": 2, "been": {"_count": 1}, "thought": {"_count": 1}}, "Extendable": {"_count": 1, "or": {"_count": 1}}, "sorting": {"_count": 1, "May": {"_count": 1}}, "we": {"_count": 2, "were": {"_count": 1}, "turn": {"_count": 1}}, "Oliver": {"_count": 1, "Woods": {"_count": 1}}, "Rons": {"_count": 2, "face": {"_count": 1}, "told": {"_count": 1}}, "students": {"_count": 1, "were": {"_count": 1}}, "Gryffindor": {"_count": 2, "are": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "awake": {"_count": 1, "or": {"_count": 1}}, "James": {"_count": 2, "really": {"_count": 1}, "had": {"_count": 1}}, "Mundungus": {"_count": 1, "has": {"_count": 1}}, "Lupin": {"_count": 1, "had": {"_count": 1}}, "Sirius": {"_count": 3, "really": {"_count": 1}, "is": {"_count": 1}, "was": {"_count": 1}}, "anybody": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 2, "was": {"_count": 1}, "could": {"_count": 1}}, "Neville": {"_count": 1, "or": {"_count": 1}}, "YouKnowWho": {"_count": 1, "would": {"_count": 1}}, "Firenze": {"_count": 1, "the": {"_count": 1}}, "McLaggen": {"_count": 1, "expected": {"_count": 1}}, "if": {"_count": 1, "Professor": {"_count": 1}}, "these": {"_count": 1, "trips": {"_count": 1}}, "even": {"_count": 1, "the": {"_count": 1}}, "constant": {"_count": 1, "disappearances": {"_count": 1}}, "ready": {"_count": 1, "or": {"_count": 1}}, "its": {"_count": 1, "worth": {"_count": 1}}, "your": {"_count": 1, "heart": {"_count": 1}}, "Dumbledores": {"_count": 1, "death": {"_count": 1}}, "Scrimgeour": {"_count": 1, "or": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "fact": {"_count": 1}}, "Skeeter": {"_count": 2, "is": {"_count": 2}}, "No": {"_count": 1, "said": {"_count": 1}}, "For": {"_count": 1, "your": {"_count": 1}}, "Runcorn": {"_count": 1, "was": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermole": {"_count": 1}}, "anyone": {"_count": 1, "else": {"_count": 1}}, "Bathilda": {"_count": 1, "or": {"_count": 1}}, "Grindelwalds": {"_count": 1, "still": {"_count": 1}}, "Griphook": {"_count": 1, "approved": {"_count": 1}}, "those": {"_count": 1, "black": {"_count": 1}}, "Bill": {"_count": 1, "guessed": {"_count": 1}}, "from": {"_count": 1, "delight": {"_count": 1}}, "friends": {"_count": 1, "or": {"_count": 1}}, "friend": {"_count": 1, "or": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Kreacher": {"_count": 1, "might": {"_count": 1}}}, "dared": {"_count": 24, "tell": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 7, "ask": {"_count": 1}, "close": {"_count": 1}, "even": {"_count": 1}, "return": {"_count": 1}, "hope": {"_count": 1}, "do": {"_count": 1}, "touch": {"_count": 1}}, "argue": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 2, "in": {"_count": 1}, "more": {"_count": 1}}, "ask": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 2, "go": {"_count": 1}, "open": {"_count": 1}}, "look": {"_count": 1, "him": {"_count": 1}}, "watch": {"_count": 1, "": {"_count": 1}}, "believe": {"_count": 1, "her": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "he": {"_count": 1, "dares": {"_count": 1}}, "do": {"_count": 1, "it": {"_count": 1}}, "past": {"_count": 1, "more": {"_count": 1}}, "use": {"_count": 2, "it": {"_count": 2}}, "over": {"_count": 1, "the": {"_count": 1}}}, "decided": {"_count": 130, "he": {"_count": 3, "didnt": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}}, "it": {"_count": 5, "must": {"_count": 1}, "was": {"_count": 3}, "would": {"_count": 1}}, "ter": {"_count": 2, "kill": {"_count": 1}, "go": {"_count": 1}}, "to": {"_count": 55, "call": {"_count": 2}, "come": {"_count": 4}, "search": {"_count": 1}, "get": {"_count": 1}, "soften": {"_count": 1}, "show": {"_count": 1}, "leave": {"_count": 1}, "remain": {"_count": 1}, "spend": {"_count": 1}, "uphold": {"_count": 1}, "visit": {"_count": 1}, "mark": {"_count": 1}, "introduce": {"_count": 1}, "pretend": {"_count": 1}, "drop": {"_count": 1}, "break": {"_count": 1}, "age": {"_count": 1}, "go": {"_count": 4}, "do": {"_count": 1}, "use": {"_count": 2}, "award": {"_count": 1}, "return": {"_count": 1}, "ask": {"_count": 1}, "shoulder": {"_count": 1}, "display": {"_count": 1}, "give": {"_count": 2}, "engrave": {"_count": 1}, "teach": {"_count": 1}, "act": {"_count": 1}, "tell": {"_count": 1}, "flee": {"_count": 1}, "check": {"_count": 1}, "start": {"_count": 1}, "try": {"_count": 1}, "imitate": {"_count": 1}, "sit": {"_count": 1}, "forgive": {"_count": 1}, "spring": {"_count": 1}, "put": {"_count": 2}, "let": {"_count": 1}, "uproot": {"_count": 1}, "help": {"_count": 1}, "continue": {"_count": 1}, "befriend": {"_count": 1}, "fight": {"_count": 1}}, "that": {"_count": 12, "as": {"_count": 1}, "they": {"_count": 1}, "now": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 1}, "bursting": {"_count": 1}, "it": {"_count": 1}, "Harrys": {"_count": 1}, "for": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 2}, "Gryffindor": {"_count": 1}, "only": {"_count": 1}}, "where": {"_count": 1, "your": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "wed": {"_count": 2, "better": {"_count": 1}, "go": {"_count": 1}}, "against": {"_count": 4, "it": {"_count": 2}, "trying": {"_count": 1}, "reminding": {"_count": 1}}, "hed": {"_count": 1, "better": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "not": {"_count": 7, "to": {"_count": 7}}, "last": {"_count": 1, "night": {"_count": 1}}, "his": {"_count": 2, "feelings": {"_count": 1}, "best": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 3}}, "the": {"_count": 3, "time": {"_count": 1}, "moment": {"_count": 1}, "sword": {"_count": 1}}, "there": {"_count": 2, "are": {"_count": 1}, "was": {"_count": 1}}, "who": {"_count": 1, "would": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "dementors": {"_count": 1, "would": {"_count": 1}}, "And": {"_count": 1, "never": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "are": {"_count": 1, "inappropriate": {"_count": 1}}, "we": {"_count": 1, "dont": {"_count": 1}}, "Sirius": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "could": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "months": {"_count": 1, "ago": {"_count": 1}}, "Id": {"_count": 1, "better": {"_count": 1}}, "was": {"_count": 1, "made": {"_count": 1}}, "Hogwarts": {"_count": 1, "could": {"_count": 1}}}, "dare": {"_count": 102, "": {"_count": 7, ".": {"_count": 4}, "!": {"_count": 2}, "?": {"_count": 1}}, "let": {"_count": 1, "it": {"_count": 1}}, "ask": {"_count": 1, "where": {"_count": 1}}, "get": {"_count": 2, "friendly": {"_count": 1}, "a": {"_count": 1}}, "try": {"_count": 2, "takin": {"_count": 1}, "and": {"_count": 1}}, "mention": {"_count": 2, "platform": {"_count": 1}, "this": {"_count": 1}}, "you": {"_count": 19, "might": {"_count": 1}, "You": {"_count": 1}, "tell": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 7}, "befoul": {"_count": 1}, "make": {"_count": 1}, "aargh": {"_count": 1}, "suggest": {"_count": 2}, "take": {"_count": 1}, "defy": {"_count": 1}}, "to": {"_count": 2, "try": {"_count": 1}, "step": {"_count": 1}}, "look": {"_count": 5, "at": {"_count": 4}, "directly": {"_count": 1}}, "attack": {"_count": 1, "a": {"_count": 1}}, "Oh": {"_count": 1, "Ron": {"_count": 1}}, "taunt": {"_count": 1, "Dumbledore": {"_count": 1}}, "not": {"_count": 1, "Headmaster": {"_count": 1}}, "go": {"_count": 1, "and": {"_count": 1}}, "call": {"_count": 1, "Hagrid": {"_count": 1}}, "retrieve": {"_count": 1, "his": {"_count": 1}}, "approach": {"_count": 1, "it": {"_count": 1}}, "say": {"_count": 3, "hed": {"_count": 1}, "anything": {"_count": 1}, "": {"_count": 1}}, "refuse": {"_count": 1, "him": {"_count": 1}}, "blame": {"_count": 2, "your": {"_count": 1}, "my": {"_count": 1}}, "insult": {"_count": 1, "my": {"_count": 1}}, "tell": {"_count": 1, "Mum": {"_count": 1}}, "slow": {"_count": 1, "down": {"_count": 1}}, "he": {"_count": 2, "Hagrid": {"_count": 1}, "accuse": {"_count": 1}}, "move": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "disobey": {"_count": 1, "a": {"_count": 1}}, "voice": {"_count": 1, "it": {"_count": 1}}, "believe": {"_count": 1, "his": {"_count": 1}}, "touch": {"_count": 2, "those": {"_count": 1}, "him": {"_count": 1}}, "sleep": {"_count": 1, "": {"_count": 1}}, "speak": {"_count": 5, "more": {"_count": 1}, "his": {"_count": 2}, "to": {"_count": 2}}, "attempt": {"_count": 2, "to": {"_count": 2}}, "shift": {"_count": 1, "positions": {"_count": 1}}, "besmirch": {"_count": 1, "it": {"_count": 1}}, "Did": {"_count": 1, "you": {"_count": 1}}, "anyone": {"_count": 1, "suggest": {"_count": 1}}, "reveal": {"_count": 1, "himself": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "do": {"_count": 2, "magic": {"_count": 1}, "anything": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "make": {"_count": 1, "trouble": {"_count": 1}}, "use": {"_count": 4, "those": {"_count": 1}, "my": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 1}}, "yeh": {"_count": 1, "threaten": {"_count": 1}}, "mess": {"_count": 1, "with": {"_count": 1}}, "pass": {"_count": 1, "through": {"_count": 1}}, "resurface": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "are": {"_count": 1}}, "remain": {"_count": 1, "in": {"_count": 1}}, "open": {"_count": 2, "his": {"_count": 2}}, "by": {"_count": 1, "movement": {"_count": 1}}, "Yes": {"_count": 1, "I": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "too": {"_count": 1, "weak": {"_count": 1}}}, "Instead": {"_count": 38, "he": {"_count": 16, "said": {"_count": 1}, "was": {"_count": 1}, "gave": {"_count": 1}, "read": {"_count": 1}, "contented": {"_count": 1}, "turned": {"_count": 1}, "adopted": {"_count": 1}, "tried": {"_count": 1}, "walked": {"_count": 1}, "heard": {"_count": 1}, "told": {"_count": 1}, "seemed": {"_count": 1}, "smiled": {"_count": 1}, "jeered": {"_count": 1}, "found": {"_count": 1}, "surreptitiously": {"_count": 1}}, "of": {"_count": 11, "roots": {"_count": 1}, "going": {"_count": 2}, "the": {"_count": 1}, "killing": {"_count": 1}, "dancing": {"_count": 1}, "trying": {"_count": 1}, "freezing": {"_count": 1}, "a": {"_count": 1}, "messing": {"_count": 1}, "an": {"_count": 1}}, "echoing": {"_count": 1, "through": {"_count": 1}}, "the": {"_count": 2, "hat": {"_count": 1}, "family": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "they": {"_count": 2, "did": {"_count": 1}, "lowered": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "a": {"_count": 1, "quite": {"_count": 1}}, "you": {"_count": 1, "get": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "two": {"_count": 1, "grimfaced": {"_count": 1}}}, "casually": {"_count": 21, "as": {"_count": 3, "he": {"_count": 2}, "if": {"_count": 1}}, "getting": {"_count": 1, "started": {"_count": 1}}, "he": {"_count": 1, "wouldn": {"_count": 1}}, "heavens": {"_count": 1, "yes": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 5, ".": {"_count": 5}}, "over": {"_count": 1, "Pettigrews": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "by": {"_count": 1, "Slughorn": {"_count": 1}}, "turfing": {"_count": 1, "a": {"_count": 1}}}, "Their": {"_count": 83, "son": {"_count": 2, "hed": {"_count": 1}, "Harry": {"_count": 1}}, "eyes": {"_count": 3, "slid": {"_count": 1}, "were": {"_count": 1}, "met": {"_count": 1}}, "mother": {"_count": 2, "had": {"_count": 1}, "suddenly": {"_count": 1}}, "daring": {"_count": 2, "nerve": {"_count": 2}}, "trunks": {"_count": 3, "had": {"_count": 2}, "arrived": {"_count": 1}}, "teacher": {"_count": 1, "Madam": {"_count": 1}}, "feather": {"_count": 1, "rose": {"_count": 1}}, "peeling": {"_count": 1, "faded": {"_count": 1}}, "ears": {"_count": 1, "seemed": {"_count": 1}}, "very": {"_count": 1, "last": {"_count": 1}}, "first": {"_count": 2, "real": {"_count": 1}, "exam": {"_count": 1}}, "earmuffs": {"_count": 1, "were": {"_count": 1}}, "last": {"_count": 2, "defeat": {"_count": 1}, "evening": {"_count": 1}}, "breath": {"_count": 1, "rose": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloak": {"_count": 1}}, "shadows": {"_count": 1, "on": {"_count": 1}}, "best": {"_count": 1, "man": {"_count": 1}}, "Seeker": {"_count": 1, "Cho": {"_count": 1}}, "bulging": {"_count": 1, "muscles": {"_count": 1}}, "only": {"_count": 1, "chance": {"_count": 1}}, "second": {"_count": 1, "to": {"_count": 1}}, "story": {"_count": 1, "made": {"_count": 1}}, "party": {"_count": 1, "was": {"_count": 1}}, "footsteps": {"_count": 3, "died": {"_count": 1}, "were": {"_count": 1}, "made": {"_count": 1}}, "worst": {"_count": 1, "fear": {"_count": 1}}, "children": {"_count": 1, "might": {"_count": 1}}, "faces": {"_count": 2, "cracked": {"_count": 1}, "only": {"_count": 1}}, "fellow": {"_count": 1, "campers": {"_count": 1}}, "tent": {"_count": 1, "seemed": {"_count": 1}}, "money": {"_count": 1, "bags": {"_count": 1}}, "favorites": {"_count": 1, "from": {"_count": 1}}, "Legal": {"_count": 1, "Status": {"_count": 1}}, "Sickles": {"_count": 1, "had": {"_count": 1}}, "thick": {"_count": 1, "gray": {"_count": 1}}, "English": {"_count": 1, "isnt": {"_count": 1}}, "Solutions": {"_count": 1, "": {"_count": 1}}, "heads": {"_count": 2, "were": {"_count": 2}}, "yellowish": {"_count": 1, "eyes": {"_count": 1}}, "front": {"_count": 1, "paws": {"_count": 1}}, "relentless": {"_count": 1, "staring": {"_count": 1}}, "Derivation": {"_count": 1, "": {"_count": 1}}, "robes": {"_count": 1, "billowed": {"_count": 1}}, "CounterActions": {"_count": 1, "": {"_count": 1}}, "renown": {"_count": 1, "is": {"_count": 1}}, "glass": {"_count": 1, "might": {"_count": 1}}, "exDefense": {"_count": 1, "Against": {"_count": 1}}, "cherub": {"_count": 1, "threw": {"_count": 1}}, "criminal": {"_count": 1, "records": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "teachers": {"_count": 1, "were": {"_count": 1}}, "final": {"_count": 1, "exam": {"_count": 1}}, "long": {"_count": 1, "dark": {"_count": 1}}, "Page": {"_count": 1, "lOOlHarry": {"_count": 1}}, "dormitory": {"_count": 1, "was": {"_count": 1}}, "priority": {"_count": 1, "now": {"_count": 1}}, "blood": {"_count": 1, "is": {"_count": 1}}, "expressions": {"_count": 1, "of": {"_count": 1}}, "escape": {"_count": 1, "from": {"_count": 1}}, "protective": {"_count": 1, "enchantments": {"_count": 1}}, "lips": {"_count": 1, "met": {"_count": 1}}, "determined": {"_count": 1, "indifference": {"_count": 1}}, "lamps": {"_count": 1, "went": {"_count": 1}}, "plans": {"_count": 1, "were": {"_count": 1}}, "entrance": {"_count": 1, "into": {"_count": 1}}, "abandoned": {"_count": 1, "home": {"_count": 1}}, "savior": {"_count": 1, "whom": {"_count": 1}}, "remains": {"_count": 1, "stirred": {"_count": 1}}, "wands": {"_count": 2, "were": {"_count": 1}, "flared": {"_count": 1}}, "split": {"_count": 1, "seconds": {"_count": 1}}}, "Dudleys": {"_count": 72, "age": {"_count": 1, "now": {"_count": 1}}, "birthday": {"_count": 3, "how": {"_count": 1}, "presents": {"_count": 1}, "his": {"_count": 1}}, "favorite": {"_count": 4, "punching": {"_count": 1}, "sport": {"_count": 1}, "form": {"_count": 1}, "things": {"_count": 1}}, "and": {"_count": 1, "Dudley": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "mouth": {"_count": 1, "fell": {"_count": 1}}, "computer": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "best": {"_count": 1, "friend": {"_count": 1}}, "brown": {"_count": 1, "with": {"_count": 1}}, "gang": {"_count": 6, "had": {"_count": 1}, "hated": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}, "he": {"_count": 1}, "came": {"_count": 1}}, "old": {"_count": 2, "things": {"_count": 1}, "clothes": {"_count": 1}}, "second": {"_count": 1, "bedroom": {"_count": 1}}, "firstever": {"_count": 1, "television": {"_count": 1}}, "snores": {"_count": 1, "were": {"_count": 1}}, "watch": {"_count": 1, "which": {"_count": 1}}, "bait": {"_count": 1, "but": {"_count": 1}}, "voice": {"_count": 1, "from": {"_count": 1}}, "fifth": {"_count": 1, "birthday": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "thick": {"_count": 1, "blond": {"_count": 1}}, "piggy": {"_count": 1, "face": {"_count": 1}}, "diet": {"_count": 2, "isnt": {"_count": 1}, "and": {"_count": 1}}, "plate": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "morale": {"_count": 1, "was": {"_count": 1}}, "face": {"_count": 2, "Harry": {"_count": 1}, "as": {"_count": 1}}, "peculiar": {"_count": 1, "behavior": {"_count": 1}}, "tongue": {"_count": 3, "and": {"_count": 1}, "as": {"_count": 1}, "lolling": {"_count": 1}}, "hand": {"_count": 2, "and": {"_count": 2}}, "first": {"_count": 1, "punching": {"_count": 1}}, "friends": {"_count": 1, "saw": {"_count": 1}}, "dilemma": {"_count": 1, "to": {"_count": 1}}, "gangs": {"_count": 1, "voices": {"_count": 1}}, "jaw": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 1, "face": {"_count": 1}}, "heart": {"_count": 1, "": {"_count": 1}}, "terrified": {"_count": 1, "voice": {"_count": 1}}, "footsteps": {"_count": 1, "stopped": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "massive": {"_count": 3, "arms": {"_count": 2}, "leatherclad": {"_count": 1}}, "arm": {"_count": 1, "and": {"_count": 1}}, "weight": {"_count": 1, "": {"_count": 1}}, "bulk": {"_count": 1, "": {"_count": 1}}, "leather": {"_count": 1, "jacket": {"_count": 1}}, "lowfat": {"_count": 1, "snacks": {"_count": 1}}, "forehead": {"_count": 1, "to": {"_count": 1}}, "tail": {"_count": 1, "Marge": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "hands": {"_count": 1, "jerked": {"_count": 1}}, "school": {"_count": 1, "": {"_count": 1}}, "lips": {"_count": 1, "move": {"_count": 1}}}, "age": {"_count": 79, "now": {"_count": 1, "wouldnt": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 15}, "!": {"_count": 2}, "?": {"_count": 1}}, "the": {"_count": 1, "McKinnons": {"_count": 1}}, "had": {"_count": 3, "their": {"_count": 1}, "grown": {"_count": 1}, "its": {"_count": 1}}, "she": {"_count": 2, "turned": {"_count": 1}, "came": {"_count": 1}}, "of": {"_count": 14, "one": {"_count": 2}, "sixteen": {"_count": 1}, "three": {"_count": 1}, "fifteen": {"_count": 2}, "seventeen": {"_count": 3}, "six": {"_count": 1}, "thirteen": {"_count": 1}, "eleven": {"_count": 2}, "dust": {"_count": 1}}, "when": {"_count": 1, "magic": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "and": {"_count": 2, "you": {"_count": 1}, "Im": {"_count": 1}}, "restriction": {"_count": 2, "on": {"_count": 1}, "was": {"_count": 1}}, "that": {"_count": 2, "is": {"_count": 1}, "the": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "themselves": {"_count": 1, "up": {"_count": 1}}, "limiti": {"_count": 1, "She": {"_count": 1}}, "said": {"_count": 3, "Professor": {"_count": 1}, "Mrs": {"_count": 1}, "Harry": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Theyre": {"_count": 1, "still": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "group": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "fall": {"_count": 1}}, "become": {"_count": 1, "Minister": {"_count": 1}}, "thinks": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "short": {"_count": 1}}, "at": {"_count": 1, "seventeen": {"_count": 1}}, "or": {"_count": 2, "will": {"_count": 1}, "Moody": {"_count": 1}}, "next": {"_count": 1, "year": {"_count": 1}}, "ter": {"_count": 1, "go": {"_count": 1}}, "I": {"_count": 1, "never": {"_count": 1}}, "as": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "Ron": {"_count": 1, "leaned": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "which": {"_count": 1}}, "they": {"_count": 1, "got": {"_count": 1}}, "Weh": {"_count": 1, "lebt": {"_count": 1}}, "wish": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "may": {"_count": 1}}}, "wouldnt": {"_count": 383, "he": {"_count": 14, "": {"_count": 5}, "give": {"_count": 2}, "have": {"_count": 4}, "felt": {"_count": 1}, "show": {"_count": 1}, "just": {"_count": 1}}, "be": {"_count": 45, "able": {"_count": 7}, "surprised": {"_count": 3}, "with": {"_count": 1}, "too": {"_count": 2}, "on": {"_count": 1}, "allowed": {"_count": 2}, "sounding": {"_count": 1}, "so": {"_count": 2}, "the": {"_count": 4}, "in": {"_count": 1}, "safe": {"_count": 1}, "much": {"_count": 1}, "staying": {"_count": 1}, "very": {"_count": 1}, "fit": {"_count": 1}, "likely": {"_count": 1}, "thinking": {"_count": 1}, "wearing": {"_count": 1}, "fed": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 1}, "exactly": {"_count": 1}, "that": {"_count": 1}, "giving": {"_count": 1}, "here": {"_count": 2}, "sitting": {"_count": 1}, "having": {"_count": 1}, "happy": {"_count": 1}, "any": {"_count": 1}, "talking": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "fit": {"_count": 3, "Harry": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}}, "fall": {"_count": 1, "back": {"_count": 1}}, "have": {"_count": 66, "been": {"_count": 8}, "cured": {"_count": 1}, "noticed": {"_count": 1}, "let": {"_count": 3}, "lost": {"_count": 1}, "minded": {"_count": 1}, "liked": {"_count": 2}, "put": {"_count": 1}, "got": {"_count": 2}, "taken": {"_count": 1}, "sold": {"_count": 1}, "said": {"_count": 1}, "done": {"_count": 2}, "given": {"_count": 2}, "believed": {"_count": 1}, "confiscated": {"_count": 1}, "to": {"_count": 9}, "wanted": {"_count": 4}, "thought": {"_count": 2}, "fetched": {"_count": 1}, "asked": {"_count": 3}, "cared": {"_count": 1}, "permitted": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}, "bet": {"_count": 1}, "appointed": {"_count": 1}, "come": {"_count": 2}, "a": {"_count": 1}, "had": {"_count": 1}, "seen": {"_count": 1}, "you": {"_count": 1}, "died": {"_count": 1}, "singled": {"_count": 1}, "dreamed": {"_count": 1}, "hidden": {"_count": 1}, "stood": {"_count": 1}, "helped": {"_count": 1}}, "even": {"_count": 6, "know": {"_count": 1}, "tell": {"_count": 1}, "recognize": {"_count": 1}, "be": {"_count": 1}, "brave": {"_count": 1}, "stay": {"_count": 1}}, "let": {"_count": 9, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "go": {"_count": 1}, "Ginny": {"_count": 1}, "him": {"_count": 3}, "her": {"_count": 1}, "you": {"_count": 1}}, "you": {"_count": 12, "": {"_count": 6}, "he": {"_count": 1}, "Weasley": {"_count": 1}, "eh": {"_count": 1}, "say": {"_count": 1}, "stupid": {"_count": 1}, "ginger": {"_count": 1}}, "stay": {"_count": 1, "in": {"_count": 1}}, "bother": {"_count": 1, "": {"_count": 1}}, "know": {"_count": 5, "Chocolate": {"_count": 1}, "the": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 1}}, "touch": {"_count": 2, "which": {"_count": 1}, "a": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "open": {"_count": 2, "unless": {"_count": 1}, "a": {"_count": 1}}, "believe": {"_count": 5, "they": {"_count": 1}, "LIKE": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "how": {"_count": 1}}, "say": {"_count": 4, "nothing": {"_count": 1}, "no": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "refuse": {"_count": 1, "if": {"_count": 1}}, "she": {"_count": 5, "said": {"_count": 1}, "": {"_count": 4}}, "try": {"_count": 1, "and": {"_count": 1}}, "put": {"_count": 3, "anything": {"_count": 1}, "it": {"_count": 2}}, "take": {"_count": 1, "his": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "tell": {"_count": 8, "anyone": {"_count": 4}, "him": {"_count": 1}, "me": {"_count": 2}, "you": {"_count": 1}}, "hear": {"_count": 3, "of": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "help": {"_count": 2, "us": {"_count": 1}, "much": {"_count": 1}}, "budge": {"_count": 1, "not": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 3, "him": {"_count": 1}, "": {"_count": 2}}, "eat": {"_count": 1, "again": {"_count": 1}}, "catch": {"_count": 1, "one": {"_count": 1}}, "lend": {"_count": 1, "him": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "mind": {"_count": 11, "Harry": {"_count": 2}, "dueling": {"_count": 1}, "knowing": {"_count": 1}, "": {"_count": 1}, "giving": {"_count": 1}, "said": {"_count": 1}, "hiding": {"_count": 1}, "if": {"_count": 2}, "so": {"_count": 1}}, "presume": {"_count": 1, "to": {"_count": 1}}, "want": {"_count": 24, "What": {"_count": 1}, "that": {"_count": 3}, "you": {"_count": 3}, "to": {"_count": 12}, "pets": {"_count": 1}, "a": {"_count": 2}, "everyone": {"_count": 1}, "I": {"_count": 1}}, "like": {"_count": 10, "them": {"_count": 1}, "to": {"_count": 3}, "Well": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "you": {"_count": 1}}, "bet": {"_count": 2, "on": {"_count": 2}}, "attack": {"_count": 1, "anyone": {"_count": 1}}, "come": {"_count": 4, "": {"_count": 2}, "near": {"_count": 1}, "back": {"_count": 1}}, "go": {"_count": 4, "around": {"_count": 1}, "amiss": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}}, "it": {"_count": 8, "": {"_count": 5}, "Harry": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}}, "hurt": {"_count": 5, "friends": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "anyone": {"_count": 1}, "foals": {"_count": 1}}, "remember": {"_count": 1, "doing": {"_count": 1}}, "use": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "magic": {"_count": 1}}, "soon": {"_count": 1, "forget": {"_count": 1}}, "read": {"_count": 1, "that": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "dare": {"_count": 1, "Oh": {"_count": 1}}, "fire": {"_count": 1, "him": {"_count": 1}}, "listen": {"_count": 2, "two": {"_count": 1}, "and": {"_count": 1}}, "they": {"_count": 6, "": {"_count": 6}}, "forget": {"_count": 1, "it": {"_count": 1}}, "spend": {"_count": 1, "hundreds": {"_count": 1}}, "close": {"_count": 1, "": {"_count": 1}}, "need": {"_count": 5, "it": {"_count": 1}, "to": {"_count": 2}, "so": {"_count": 1}, "doing": {"_count": 1}}, "shift": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 2, "have": {"_count": 1}, "wouldnt": {"_count": 1}}, "understand": {"_count": 4, "you": {"_count": 1}, "": {"_count": 3}}, "laugh": {"_count": 1, "he": {"_count": 1}}, "miss": {"_count": 2, "it": {"_count": 1}, "him": {"_count": 1}}, "fancy": {"_count": 2, "having": {"_count": 1}, "crossing": {"_count": 1}}, "spot": {"_count": 1, "them": {"_count": 1}}, "look": {"_count": 1, "twice": {"_count": 1}}, "stop": {"_count": 2, "whistling": {"_count": 1}, "Voldemort": {"_count": 1}}, "blunder": {"_count": 1, "on": {"_count": 1}}, "recognize": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 3, "it": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "give": {"_count": 5, "her": {"_count": 1}, "me": {"_count": 2}, "it": {"_count": 1}, "you": {"_count": 1}}, "run": {"_count": 1, "into": {"_count": 1}}, "do": {"_count": 9, "anything": {"_count": 2}, "that": {"_count": 2}, "there": {"_count": 1}, "anymore": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 1}}, "ignore": {"_count": 1, "him": {"_count": 1}}, "care": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "oh": {"_count": 1, "weve": {"_count": 1}}, "risk": {"_count": 1, "everything": {"_count": 1}}, "said": {"_count": 5, "Hermione": {"_count": 1}, "George": {"_count": 1}, "Fred": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "ave": {"_count": 1, "left": {"_count": 1}}, "dance": {"_count": 1, "with": {"_count": 1}}, "expect": {"_count": 2, "anything": {"_count": 1}, "you": {"_count": 1}}, "usually": {"_count": 1, "show": {"_count": 1}}, "mention": {"_count": 1, "it": {"_count": 1}}, "matter": {"_count": 1, "if": {"_count": 1}}, "print": {"_count": 1, "it": {"_count": 1}}, "Something": {"_count": 1, "was": {"_count": 1}}, "There": {"_count": 1, "is": {"_count": 1}}, "waste": {"_count": 1, "his": {"_count": 1}}, "cross": {"_count": 1, "her": {"_count": 1}}, "bank": {"_count": 1, "on": {"_count": 1}}, "reach": {"_count": 1, "too": {"_count": 1}}, "register": {"_count": 1, "and": {"_count": 1}}, "chuck": {"_count": 1, "knives": {"_count": 1}}, "wander": {"_count": 1, "off": {"_count": 1}}, "think": {"_count": 1, "hed": {"_count": 1}}, "would": {"_count": 1, "they": {"_count": 1}}, "seven": {"_count": 1, "": {"_count": 1}}, "damage": {"_count": 1, "your": {"_count": 1}}, "really": {"_count": 1, "help": {"_count": 1}}, "that": {"_count": 1, "be": {"_count": 1}}, "prefer": {"_count": 1, "him": {"_count": 1}}, "those": {"_count": 1, "secluded": {"_count": 1}}}, "suppose": {"_count": 174, "so": {"_count": 9, "said": {"_count": 6}, "": {"_count": 2}, "sir": {"_count": 1}}, "he": {"_count": 6, "really": {"_count": 1}, "was": {"_count": 2}, "knows": {"_count": 1}, "is": {"_count": 1}, "couldve": {"_count": 1}}, "it": {"_count": 8, "was": {"_count": 1}, "spends": {"_count": 1}, "feels": {"_count": 1}, "varies": {"_count": 1}, "is": {"_count": 1}, "could": {"_count": 1}, "matters": {"_count": 1}, "helps": {"_count": 1}}, "youre": {"_count": 3, "going": {"_count": 3}}, "we": {"_count": 6, "could": {"_count": 2}, "can": {"_count": 2}, "should": {"_count": 2}}, "with": {"_count": 1, "with": {"_count": 1}}, "or": {"_count": 1, "maybe": {"_count": 1}}, "": {"_count": 32, "?": {"_count": 14}, ".": {"_count": 16}, "!": {"_count": 2}}, "said": {"_count": 5, "the": {"_count": 1}, "Harry": {"_count": 3}, "Hepzibah": {"_count": 1}}, "they": {"_count": 5, "snapped": {"_count": 1}, "would": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 1}, "wanted": {"_count": 1}}, "Ravenclaw": {"_count": 2, "wouldnt": {"_count": 1}, "would": {"_count": 1}}, "you": {"_count": 20, "get": {"_count": 1}, "added": {"_count": 1}, "and": {"_count": 1}, "think": {"_count": 4}, "just": {"_count": 2}, "are": {"_count": 2}, "will": {"_count": 1}, "might": {"_count": 1}, "could": {"_count": 1}, "want": {"_count": 2}, "do": {"_count": 1}, "like": {"_count": 1}, "wanted": {"_count": 1}, "remember": {"_count": 1}}, "that": {"_count": 5, "hut": {"_count": 1}, "this": {"_count": 1}, "will": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "she": {"_count": 5, "thinks": {"_count": 1}, "took": {"_count": 1}, "cried": {"_count": 1}, "added": {"_count": 1}, "wants": {"_count": 1}}, "thats": {"_count": 2, "written": {"_count": 1}, "true": {"_count": 1}}, "Bane": {"_count": 1, "11": {"_count": 1}}, "its": {"_count": 3, "here": {"_count": 1}, "possible": {"_count": 1}, "not": {"_count": 1}}, "if": {"_count": 3, "they": {"_count": 1}, "youre": {"_count": 1}, "Mum": {"_count": 1}}, "weve": {"_count": 2, "got": {"_count": 2}}, "your": {"_count": 2, "parents": {"_count": 1}, "daddy": {"_count": 1}}, "Dumbledores": {"_count": 1, "trying": {"_count": 1}}, "youve": {"_count": 5, "got": {"_count": 1}, "heard": {"_count": 1}, "been": {"_count": 2}, "forgotten": {"_count": 1}}, "either": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 2, "real": {"_count": 1}, "only": {"_count": 1}}, "there": {"_count": 2, "must": {"_count": 1}, "have": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "taught": {"_count": 1}}, "hes": {"_count": 3, "told": {"_count": 1}, "got": {"_count": 1}, "gotta": {"_count": 1}}, "Here": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 2}}, "I": {"_count": 2, "get": {"_count": 1}, "am": {"_count": 1}}, "youd": {"_count": 3, "like": {"_count": 2}, "better": {"_count": 1}}, "theres": {"_count": 1, "always": {"_count": 1}}, "my": {"_count": 1, "sister": {"_count": 1}}, "not": {"_count": 1, "she": {"_count": 1}}, "well": {"_count": 2, "need": {"_count": 1}, "have": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "thinks": {"_count": 1}}, "No": {"_count": 1, "I": {"_count": 1}}, "were": {"_count": 1, "doing": {"_count": 1}}, "when": {"_count": 1, "youve": {"_count": 1}}, "a": {"_count": 1, "teacher": {"_count": 1}}, "You": {"_count": 1, "misunderstand": {"_count": 1}}, "gold": {"_count": 1, "changed": {"_count": 1}}, "something": {"_count": 1, "in": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "itll": {"_count": 1, "help": {"_count": 1}}, "Im": {"_count": 2, "allowed": {"_count": 1}, "just": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "could": {"_count": 1}}, "everybodys": {"_count": 1, "in": {"_count": 1}}, "ha": {"_count": 1, "ha": {"_count": 1}}, "Ill": {"_count": 1, "just": {"_count": 1}}, "by": {"_count": 1, "its": {"_count": 1}}, "yehd": {"_count": 1, "care": {"_count": 1}}, "whoever": {"_count": 1, "Imperiused": {"_count": 1}}, "those": {"_count": 1, "things": {"_count": 1}}, "She": {"_count": 1, "gasped": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}}, "stiffly": {"_count": 24, "": {"_count": 16, ".": {"_count": 16}}, "but": {"_count": 1, "sandyhaired": {"_count": 1}}, "is": {"_count": 1, "none": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "averting": {"_count": 1, "her": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "Merry": {"_count": 1, "Christmas": {"_count": 1}}, "Mr": {"_count": 1, "Lovegood": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}}, "Whats": {"_count": 281, "his": {"_count": 1, "name": {"_count": 1}}, "this": {"_count": 11, "": {"_count": 5}, "stuff": {"_count": 1}, "Hagrid": {"_count": 1}, "about": {"_count": 1}, "rubbish": {"_count": 1}, "racket": {"_count": 1}, "Potter": {"_count": 1}}, "the": {"_count": 41, "YouKnowWhat": {"_count": 1}, "matter": {"_count": 25}, "good": {"_count": 1}, "new": {"_count": 1}, "holdup": {"_count": 1}, "score": {"_count": 1}, "problem": {"_count": 2}, "time": {"_count": 2}, "point": {"_count": 2}, "betting": {"_count": 1}, "Order": {"_count": 1}, "signal": {"_count": 1}, "joke": {"_count": 1}, "plan": {"_count": 1}}, "your": {"_count": 6, "surname": {"_count": 1}, "Quidditch": {"_count": 1}, "name": {"_count": 2}, "blood": {"_count": 1}, "solution": {"_count": 1}}, "up": {"_count": 27, "": {"_count": 14}, "with": {"_count": 9}, "Myrtle": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "Albert": {"_count": 1}}, "that": {"_count": 48, "": {"_count": 20}, "youve": {"_count": 3}, "dog": {"_count": 1}, "at": {"_count": 1}, "funny": {"_count": 1}, "thing": {"_count": 2}, "supposed": {"_count": 8}, "for": {"_count": 1}, "noise": {"_count": 1}, "youre": {"_count": 2}, "got": {"_count": 2}, "Weasleys": {"_count": 1}, "then": {"_count": 1}, "mean": {"_count": 1}, "an": {"_count": 1}, "on": {"_count": 1}, "matter": {"_count": 1}}, "going": {"_count": 29, "on": {"_count": 26}, "to": {"_count": 1}, "": {"_count": 1}, "no": {"_count": 1}}, "basketball": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 20, "doing": {"_count": 2}, "done": {"_count": 3}, "talking": {"_count": 1}, "up": {"_count": 2}, "been": {"_count": 2}, "playing": {"_count": 1}, "avoiding": {"_count": 1}, "want": {"_count": 2}, "like": {"_count": 1}, "after": {"_count": 2}, "brought": {"_count": 1}, "keeping": {"_count": 1}, "called": {"_count": 1}}, "all": {"_count": 5, "this": {"_count": 3}, "that": {"_count": 1}, "the": {"_count": 1}}, "been": {"_count": 2, "going": {"_count": 1}, "happening": {"_count": 1}}, "happen": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 5, "Howler": {"_count": 1}, "boy": {"_count": 1}, "bummer": {"_count": 1}, "Wheezy": {"_count": 1}, "diedum": {"_count": 1}}, "happening": {"_count": 4, "": {"_count": 3}, "at": {"_count": 1}}, "happened": {"_count": 17, "to": {"_count": 4}, "": {"_count": 10}, "Dobby": {"_count": 1}, "Cissy": {"_count": 1}, "whats": {"_count": 1}}, "bad": {"_count": 1, "": {"_count": 1}}, "wrong": {"_count": 20, "with": {"_count": 12}, "Harry": {"_count": 2}, "": {"_count": 6}}, "Potter": {"_count": 2, "up": {"_count": 1}, "got": {"_count": 1}}, "our": {"_count": 1, "Ginny": {"_count": 1}}, "she": {"_count": 5, "talking": {"_count": 1}, "doing": {"_count": 1}, "got": {"_count": 1}, "like": {"_count": 1}, "done": {"_count": 1}}, "Hogsmeade": {"_count": 1, "like": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "Scabbers": {"_count": 1, "got": {"_count": 1}}, "my": {"_count": 1, "rat": {"_count": 1}}, "Snape": {"_count": 2, "got": {"_count": 1}, "done": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "got": {"_count": 3, "into": {"_count": 2}, "Karkaroff": {"_count": 1}}, "tactless": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "do": {"_count": 1}}, "so": {"_count": 2, "urgent": {"_count": 1}, "special": {"_count": 1}}, "Malfoy": {"_count": 1, "doing": {"_count": 1}}, "cornin": {"_count": 1, "will": {"_count": 1}}, "Dumbledore": {"_count": 3, "asked": {"_count": 1}, "playing": {"_count": 2}}, "more": {"_count": 1, "the": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "Percy": {"_count": 1, "writing": {"_count": 1}}, "an": {"_count": 1, "idea": {"_count": 1}}, "doing": {"_count": 1, "it": {"_count": 1}}, "eating": {"_count": 1, "it": {"_count": 1}}, "ready": {"_count": 2, "": {"_count": 1}, "girl": {"_count": 1}}, "er": {"_count": 1, "going": {"_count": 1}}, "Longbottom": {"_count": 1, "got": {"_count": 1}}, "Voldemort": {"_count": 1, "planning": {"_count": 1}}, "YouKnowWho": {"_count": 1, "doing": {"_count": 1}}, "Nurmengard": {"_count": 1, "": {"_count": 1}}, "obvious": {"_count": 1, "": {"_count": 1}}}, "Howard": {"_count": 1, "isnt": {"_count": 1, "it": {"_count": 1}}}, "isnt": {"_count": 335, "it": {"_count": 129, "": {"_count": 108}, "Dad": {"_count": 1}, "obvious": {"_count": 2}, "Fudge": {"_count": 1}, "that": {"_count": 2}, "Harry": {"_count": 2}, "hide": {"_count": 1}, "boy": {"_count": 1}, "my": {"_count": 1}, "if": {"_count": 1}, "said": {"_count": 1}, "Minerva": {"_count": 1}, "youll": {"_count": 1}, "worth": {"_count": 1}, "the": {"_count": 2}, "an": {"_count": 1}, "with": {"_count": 1}, "Arthur": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "he": {"_count": 38, "": {"_count": 30}, "down": {"_count": 1}, "all": {"_count": 1}, "hes": {"_count": 1}, "he": {"_count": 1}, "out": {"_count": 1}, "sir": {"_count": 1}, "coming": {"_count": 2}}, "something": {"_count": 2, "you": {"_count": 1}, "that": {"_count": 1}}, "everything": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 5, "same": {"_count": 1}, "odd": {"_count": 1}, "librarys": {"_count": 1}, "real": {"_count": 1}, "only": {"_count": 1}}, "soccer": {"_count": 1, "Dean": {"_count": 1}}, "more": {"_count": 1, "": {"_count": 1}}, "safe": {"_count": 2, "she": {"_count": 1}, "enough": {"_count": 1}}, "a": {"_count": 15, "reserve": {"_count": 1}, "great": {"_count": 1}, "good": {"_count": 2}, "bad": {"_count": 1}, "very": {"_count": 1}, "coincidence": {"_count": 1}, "better": {"_count": 1}, "criticism": {"_count": 1}, "lot": {"_count": 1}, "question": {"_count": 1}, "claim": {"_count": 1}, "rune": {"_count": 1}, "game": {"_count": 1}, "Hogwarts": {"_count": 1}}, "magic": {"_count": 1, "its": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 3}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}}, "good": {"_count": 2, "enough": {"_count": 2}}, "sensible": {"_count": 1, "looks": {"_count": 1}}, "anything": {"_count": 2, "Professor": {"_count": 1}, "in": {"_count": 1}}, "supposed": {"_count": 2, "to": {"_count": 2}}, "much": {"_count": 4, "life": {"_count": 1}, "to": {"_count": 1}, "room": {"_count": 1}, "time": {"_count": 1}}, "an": {"_count": 1, "ordinary": {"_count": 1}}, "reliable": {"_count": 1, "because": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "there": {"_count": 4, "": {"_count": 3}, "a": {"_count": 1}}, "enough": {"_count": 3, "time": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "anyone": {"_count": 3, "going": {"_count": 1}, "left": {"_count": 1}, "I": {"_count": 1}}, "going": {"_count": 8, "to": {"_count": 7}, "too": {"_count": 1}}, "widely": {"_count": 1, "known": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "affected": {"_count": 1, "by": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "justice": {"_count": 1, "": {"_count": 1}}, "mad": {"_count": 1, "said": {"_count": 1}}, "funny": {"_count": 1, "Mr": {"_count": 1}}, "using": {"_count": 1, "wands": {"_count": 1}}, "knowing": {"_count": 1, "how": {"_count": 1}}, "": {"_count": 8, "!": {"_count": 6}, ".": {"_count": 2}}, "she": {"_count": 5, "": {"_count": 4}, "leaving": {"_count": 1}}, "my": {"_count": 2, "fault": {"_count": 1}, "masters": {"_count": 1}}, "all": {"_count": 1, "they": {"_count": 1}}, "wanting": {"_count": 1, "too": {"_count": 1}}, "liking": {"_count": 1, "him": {"_count": 1}}, "well": {"_count": 1, "not": {"_count": 1}}, "happening": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "too": {"_count": 1, "good": {"_count": 1}}, "hiding": {"_count": 1, "anymore": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "right": {"_count": 3, "hes": {"_count": 1}, "we": {"_count": 1}, "Harry": {"_count": 1}}, "some": {"_count": 1, "silly": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 2, "here": {"_count": 1}, "the": {"_count": 1}}, "like": {"_count": 2, "last": {"_count": 1}, "wizards": {"_count": 1}}, "split": {"_count": 1, "into": {"_count": 1}}, "one": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "just": {"_count": 1, "some": {"_count": 1}}, "any": {"_count": 3, "Seer": {"_count": 1}, "\u2018in": {"_count": 1}, "chance": {"_count": 1}}, "clothes": {"_count": 1, "said": {"_count": 1}}, "speaking": {"_count": 1, "any": {"_count": 1}}, "really": {"_count": 4, "trying": {"_count": 2}, "the": {"_count": 1}, "part": {"_count": 1}}, "at": {"_count": 1, "home": {"_count": 1}}, "being": {"_count": 2, "guarded": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 2, "weird": {"_count": 1}, "I": {"_count": 1}}, "true": {"_count": 1, "youre": {"_count": 1}}, "exclusive": {"_count": 1, "its": {"_count": 1}}, "this": {"_count": 1, "place": {"_count": 1}}, "shrinking": {"_count": 1, "away": {"_count": 1}}, "doing": {"_count": 1, "stupid": {"_count": 1}}, "Imperturbable": {"_count": 1, "No": {"_count": 1}}, "quite": {"_count": 2, "up": {"_count": 1}, "Sanguini": {"_count": 1}}, "coming": {"_count": 1, "home": {"_count": 1}}, "our": {"_count": 1, "business": {"_count": 1}}, "how": {"_count": 2, "we": {"_count": 1}, "he": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "happy": {"_count": 1, "Firenze": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}, "Lavender": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "seven": {"_count": 2, "the": {"_count": 2}}, "Voldemort": {"_count": 1, "convinced": {"_count": 1}}, "real": {"_count": 2, "I": {"_count": 1}, "take": {"_count": 1}}, "working": {"_count": 2, "for": {"_count": 1}, "properly": {"_count": 1}}, "your": {"_count": 3, "fault": {"_count": 1}, "average": {"_count": 1}, "sister": {"_count": 1}}, "new": {"_count": 1, "like": {"_count": 1}}, "Hermione": {"_count": 1, "with": {"_count": 1}}, "Snapes": {"_count": 1, "": {"_count": 1}}, "living": {"_count": 1, "up": {"_count": 1}}, "love": {"_count": 1, "the": {"_count": 1}}, "practice": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "contradicted": {"_count": 1}}, "empty": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 3, "wizards": {"_count": 1}, "looking": {"_count": 1}, "trying": {"_count": 1}}, "necessary": {"_count": 1, "to": {"_count": 1}}}, "Nasty": {"_count": 7, "common": {"_count": 1, "name": {"_count": 1}}, "temper": {"_count": 1, "hes": {"_count": 1}}, "cut": {"_count": 1, "youve": {"_count": 1}}, "little": {"_count": 2, "shock": {"_count": 1}, "brat": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}}, "common": {"_count": 277, "name": {"_count": 2, "if": {"_count": 1}, "is": {"_count": 1}}, "room": {"_count": 237, "": {"_count": 60}, "a": {"_count": 1}, "that": {"_count": 8}, "and": {"_count": 20}, "was": {"_count": 18}, "where": {"_count": 7}, "were": {"_count": 1}, "long": {"_count": 1}, "waiting": {"_count": 2}, "standing": {"_count": 1}, "still": {"_count": 1}, "his": {"_count": 1}, "right": {"_count": 1}, "while": {"_count": 3}, "is": {"_count": 2}, "but": {"_count": 3}, "hurled": {"_count": 1}, "which": {"_count": 5}, "listened": {"_count": 2}, "often": {"_count": 1}, "unable": {"_count": 1}, "the": {"_count": 4}, "Harry": {"_count": 4}, "after": {"_count": 2}, "one": {"_count": 2}, "he": {"_count": 2}, "pinkfaced": {"_count": 1}, "it": {"_count": 3}, "laden": {"_count": 1}, "with": {"_count": 1}, "only": {"_count": 1}, "several": {"_count": 1}, "now": {"_count": 4}, "fell": {"_count": 1}, "went": {"_count": 1}, "every": {"_count": 2}, "at": {"_count": 2}, "in": {"_count": 1}, "once": {"_count": 2}, "found": {"_count": 1}, "around": {"_count": 1}, "carrying": {"_count": 1}, "by": {"_count": 1}, "fire": {"_count": 3}, "on": {"_count": 2}, "Oi": {"_count": 1}, "tonight": {"_count": 1}, "looked": {"_count": 2}, "being": {"_count": 1}, "Hermione": {"_count": 1}, "pulled": {"_count": 1}, "emptied": {"_count": 1}, "all": {"_count": 1}, "as": {"_count": 1}, "notice": {"_count": 3}, "for": {"_count": 3}, "buried": {"_count": 1}, "began": {"_count": 1}, "to": {"_count": 4}, "they": {"_count": 1}, "did": {"_count": 1}, "people": {"_count": 1}, "trying": {"_count": 1}, "half": {"_count": 1}, "through": {"_count": 2}, "well": {"_count": 1}, "dodging": {"_count": 1}, "leaving": {"_count": 1}, "cleared": {"_count": 1}, "window": {"_count": 1}, "before": {"_count": 1}, "snarling": {"_count": 1}, "or": {"_count": 1}, "about": {"_count": 1}, "Seamus": {"_count": 2}, "arguing": {"_count": 1}, "no": {"_count": 1}, "look": {"_count": 1}, "she": {"_count": 1}, "sneaked": {"_count": 1}, "together": {"_count": 1}, "Ron": {"_count": 1}, "floor": {"_count": 1}, "supposedly": {"_count": 1}, "when": {"_count": 1}, "skidding": {"_count": 1}, "looking": {"_count": 1}, "door": {"_count": 1}}, "mule": {"_count": 2, "": {"_count": 2}}, "knowledge": {"_count": 6, "that": {"_count": 5}, "within": {"_count": 1}}, "people": {"_count": 1, "and": {"_count": 1}}, "gift": {"_count": 1, "": {"_count": 1}}, "rooms": {"_count": 6, "where": {"_count": 1}, "by": {"_count": 1}, "not": {"_count": 1}, "immediately": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "sense": {"_count": 3, "": {"_count": 1}, "snapped": {"_count": 1}, "into": {"_count": 1}}, "Muggle": {"_count": 1, "who": {"_count": 1}}, "Muggleborn": {"_count": 1, "mother": {"_count": 1}}, "or": {"_count": 1, "garden": {"_count": 1}}, "goblin": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "goal": {"_count": 1, "They": {"_count": 1}}, "consent": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "teachers": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "come": {"_count": 1}}, "politeness": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "root": {"_count": 1, "swaying": {"_count": 1}}, "phrase": {"_count": 1, "done": {"_count": 1}}}, "ask": {"_count": 343, "me": {"_count": 41, "": {"_count": 7}, "questions": {"_count": 1}, "theyre": {"_count": 1}, "anymore": {"_count": 1}, "one": {"_count": 1}, "somethin": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 2}, "she": {"_count": 1}, "Myrtle": {"_count": 1}, "he": {"_count": 2}, "said": {"_count": 5}, "all": {"_count": 1}, "to": {"_count": 2}, "Mr": {"_count": 1}, "before": {"_count": 1}, "Fudge": {"_count": 1}, "and": {"_count": 1}, "how": {"_count": 1}, "shes": {"_count": 1}, "again": {"_count": 1}, "Firenze": {"_count": 1}, "hes": {"_count": 2}, "for": {"_count": 1}, "anything": {"_count": 1}, "if": {"_count": 1}, "the": {"_count": 1}}, "questions": {"_count": 8, "": {"_count": 4}, "that": {"_count": 1}, "but": {"_count": 1}, "Aunt": {"_count": 1}, "like": {"_count": 1}}, "a": {"_count": 3, "question": {"_count": 2}, "simple": {"_count": 1}}, "where": {"_count": 3, "they": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 13}, "?": {"_count": 2}, "!": {"_count": 1}}, "someone": {"_count": 3, "": {"_count": 2}, "sooner": {"_count": 1}}, "him": {"_count": 19, "Fred": {"_count": 1}, "": {"_count": 4}, "when": {"_count": 1}, "for": {"_count": 1}, "if": {"_count": 3}, "how": {"_count": 1}, "questions": {"_count": 1}, "something": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "whats": {"_count": 1}, "about": {"_count": 1}, "he": {"_count": 1}}, "who": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 8, "conductor": {"_count": 1}, "Dursleys": {"_count": 1}, "driver": {"_count": 1}, "jury": {"_count": 2}, "question": {"_count": 2}, "crowd": {"_count": 1}}, "Ron": {"_count": 2, "if": {"_count": 1}, "to": {"_count": 1}}, "Snape": {"_count": 1, "if": {"_count": 1}}, "Wood": {"_count": 1, "to": {"_count": 1}}, "Madam": {"_count": 2, "Pince": {"_count": 1}, "Hooch": {"_count": 1}}, "your": {"_count": 3, "parents": {"_count": 1}, "name": {"_count": 1}, "son": {"_count": 1}}, "them": {"_count": 10, "": {"_count": 3}, "to": {"_count": 2}, "how": {"_count": 1}, "please": {"_count": 1}, "questions": {"_count": 1}, "not": {"_count": 1}, "theyll": {"_count": 1}}, "you": {"_count": 57, "not": {"_count": 3}, "something": {"_count": 8}, "as": {"_count": 1}, "to": {"_count": 18}, "three": {"_count": 1}, "if": {"_count": 1}, "Harry": {"_count": 1}, "how": {"_count": 2}, "however": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 3}, "": {"_count": 5}, "what": {"_count": 1}, "about": {"_count": 2}, "and": {"_count": 1}, "The": {"_count": 1}, "for": {"_count": 2}, "said": {"_count": 1}, "your": {"_count": 1}, "again": {"_count": 1}, "therefore": {"_count": 1}, "that": {"_count": 1}}, "Harry": {"_count": 6, "to": {"_count": 1}, "something": {"_count": 1}, "and": {"_count": 1}, "muttered": {"_count": 1}, "when": {"_count": 1}, "why": {"_count": 1}}, "What": {"_count": 1, "are": {"_count": 1}}, "whether": {"_count": 6, "this": {"_count": 1}, "Mr": {"_count": 1}, "he": {"_count": 1}, "Skeeter": {"_count": 2}, "Dumbledore": {"_count": 1}}, "for": {"_count": 20, "a": {"_count": 3}, "an": {"_count": 2}, "it": {"_count": 4}, "help": {"_count": 1}, "the": {"_count": 1}, "permission": {"_count": 1}, "more": {"_count": 1}, "information": {"_count": 1}, "Mr": {"_count": 1}, "your": {"_count": 1}, "or": {"_count": 1}, "forgiveness": {"_count": 1}, "Occlumency": {"_count": 1}, "mercy": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "You": {"_count": 2, "do": {"_count": 1}, "also": {"_count": 1}}, "I": {"_count": 2, "wish": {"_count": 1}, "didnt": {"_count": 1}}, "Malfoy": {"_count": 1, "a": {"_count": 1}}, "no": {"_count": 2, "more": {"_count": 2}}, "Youve": {"_count": 1, "been": {"_count": 1}}, "Professor": {"_count": 3, "Snape": {"_count": 1}, "McGonagall": {"_count": 1}, "Moody": {"_count": 1}}, "Hagrid": {"_count": 2, "about": {"_count": 1}, "for": {"_count": 1}}, "why": {"_count": 5, "he": {"_count": 2}, "I": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "Dad": {"_count": 2, "yourself": {"_count": 1}, "": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "how": {"_count": 4, "Professor": {"_count": 1}, "long": {"_count": 1}, "much": {"_count": 1}, "Dumbledore": {"_count": 1}}, "ourselves": {"_count": 2, "is": {"_count": 1}, "why": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}, "what": {"_count": 7, "had": {"_count": 1}, "that": {"_count": 1}, "these": {"_count": 1}, "": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "without": {"_count": 2, "feeling": {"_count": 1}, "giving": {"_count": 1}}, "their": {"_count": 1, "permission": {"_count": 1}}, "about": {"_count": 2, "Sirius": {"_count": 1}, "whether": {"_count": 1}}, "permission": {"_count": 2, "to": {"_count": 2}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Umbridge": {"_count": 1}, "Slughorn": {"_count": 1}}, "us": {"_count": 3, "to": {"_count": 2}, "he": {"_count": 1}}, "an": {"_count": 1, "older": {"_count": 1}}, "but": {"_count": 2, "working": {"_count": 1}, "I": {"_count": 1}}, "Cho": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "her": {"_count": 10, "": {"_count": 3}, "if": {"_count": 1}, "to": {"_count": 3}, "first": {"_count": 1}, "out": {"_count": 1}, "how": {"_count": 1}}, "and": {"_count": 2, "from": {"_count": 1}, "with": {"_count": 1}}, "Neville": {"_count": 1, "this": {"_count": 1}}, "myself": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "everyone": {"_count": 1, "and": {"_count": 1}}, "anyone": {"_count": 1, "who": {"_count": 1}}, "awkward": {"_count": 1, "questions": {"_count": 1}}, "Alastor": {"_count": 1, "to": {"_count": 1}}, "whatever": {"_count": 1, "he": {"_count": 1}}, "favors": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "attention": {"_count": 1}}, "McGonagall": {"_count": 1, "if": {"_count": 1}}, "something": {"_count": 2, "about": {"_count": 1}, "else": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "directly": {"_count": 1, "in": {"_count": 1}}, "Hermione": {"_count": 2, "if": {"_count": 1}, "how": {"_count": 1}}, "any": {"_count": 1, "questions": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "Loony": {"_count": 1, "": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "No": {"_count": 1, "said": {"_count": 1}}, "Sirius": {"_count": 1, "about": {"_count": 1}}, "only": {"_count": 2, "a": {"_count": 1}, "this": {"_count": 1}}, "Yes": {"_count": 1, "thank": {"_count": 1}}, "Dean": {"_count": 1, "to": {"_count": 1}}, "Sanguini": {"_count": 1, "here": {"_count": 1}}, "out": {"_count": 1, "McLaggen": {"_count": 1}}, "that": {"_count": 3, "once": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "than": {"_count": 1, "Lupin": {"_count": 1}}, "Dumbledore": {"_count": 6, "had": {"_count": 1}, "about": {"_count": 1}, "what": {"_count": 1}, "more": {"_count": 1}, "or": {"_count": 1}, "these": {"_count": 1}}, "away": {"_count": 3, "": {"_count": 3}}, "Firenze": {"_count": 1, "to": {"_count": 1}}, "Sybill": {"_count": 1, "Trelawney": {"_count": 1}}, "before": {"_count": 1, "Hermione": {"_count": 1}}, "it": {"_count": 4, "to": {"_count": 2}, "she": {"_count": 1}, "for": {"_count": 1}}, "Potter": {"_count": 1, "how": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Ginny": {"_count": 1, "out": {"_count": 1}}, "Kingsley": {"_count": 1, "whether": {"_count": 1}}, "Slughorn": {"_count": 1, "how": {"_count": 1}}, "Rons": {"_count": 1, "and": {"_count": 1}}, "impertinent": {"_count": 1, "questions": {"_count": 1}}, "Mr": {"_count": 1, "Lovegood": {"_count": 1}}, "deep": {"_count": 1, "questions": {"_count": 1}}, "people": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "simply": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}}, "Oh": {"_count": 873, "yes": {"_count": 81, "said": {"_count": 24}, "everyones": {"_count": 1}, "": {"_count": 11}, "sir": {"_count": 1}, "they": {"_count": 2}, "he": {"_count": 3}, "Professorhead": {"_count": 1}, "youll": {"_count": 1}, "theyll": {"_count": 1}, "Im": {"_count": 1}, "Winky": {"_count": 1}, "you": {"_count": 3}, "Bagman": {"_count": 1}, "very": {"_count": 1}, "she": {"_count": 5}, "sorry": {"_count": 1}, "I": {"_count": 8}, "Dumbledores": {"_count": 1}, "tiny": {"_count": 1}, "circulations": {"_count": 1}, "didnt": {"_count": 1}, "for": {"_count": 1}, "there": {"_count": 1}, "says": {"_count": 1}, "weve": {"_count": 1}, "Harry": {"_count": 1}, "shes": {"_count": 1}, "moaned": {"_count": 1}, "an": {"_count": 1}, "YouKnow": {"_count": 1}, "if": {"_count": 1}, "theyre": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "": {"_count": 48, ".": {"_count": 42}, "!": {"_count": 6}}, "good": {"_count": 9, "Lord": {"_count": 1}, "said": {"_count": 6}, "hurry": {"_count": 1}, "youve": {"_count": 1}}, "I": {"_count": 41, "see": {"_count": 3}, "thought": {"_count": 1}, "will": {"_count": 1}, "heard": {"_count": 1}, "wouldnt": {"_count": 1}, "had": {"_count": 2}, "am": {"_count": 1}, "cant": {"_count": 2}, "dont": {"_count": 7}, "suppose": {"_count": 1}, "would": {"_count": 1}, "I": {"_count": 1}, "know": {"_count": 1}, "dunno": {"_count": 2}, "shall": {"_count": 1}, "": {"_count": 1}, "saw": {"_count": 1}, "forgot": {"_count": 1}, "expect": {"_count": 1}, "hope": {"_count": 3}, "think": {"_count": 2}, "wish": {"_count": 2}, "quite": {"_count": 1}, "got": {"_count": 1}, "doubt": {"_count": 1}, "love": {"_count": 1}}, "he": {"_count": 13, "said": {"_count": 3}, "does": {"_count": 1}, "is": {"_count": 1}, "hasnt": {"_count": 1}, "seemed": {"_count": 1}, "grunted": {"_count": 1}, "knows": {"_count": 1}, "just": {"_count": 1}, "definitely": {"_count": 1}, "turned": {"_count": 1}, "dreamed": {"_count": 1}}, "my": {"_count": 14, "goodness": {"_count": 3}, "dear": {"_count": 3}, "Hermione": {"_count": 2}, "word": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "gasped": {"_count": 1}, "poor": {"_count": 1}}, "these": {"_count": 1, "peoples": {"_count": 1}}, "she": {"_count": 6, "got": {"_count": 1}, "was": {"_count": 2}, "survived": {"_count": 1}, "has": {"_count": 1}, "said": {"_count": 1}}, "well": {"_count": 22, "I": {"_count": 3}, "done": {"_count": 1}, "if": {"_count": 3}, "": {"_count": 2}, "you": {"_count": 1}, "he": {"_count": 2}, "spotted": {"_count": 1}, "thats": {"_count": 2}, "said": {"_count": 1}, "never": {"_count": 1}, "gotta": {"_count": 1}, "nothing": {"_count": 1}, "in": {"_count": 2}, "lucky": {"_count": 1}}, "yeah": {"_count": 66, "": {"_count": 25}, "youre": {"_count": 1}, "Professor": {"_count": 1}, "and": {"_count": 2}, "She": {"_count": 1}, "pureblood": {"_count": 1}, "said": {"_count": 17}, "I": {"_count": 5}, "you": {"_count": 1}, "Dobby": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}, "\u2018sever": {"_count": 1}, "it": {"_count": 1}, "Im": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "hes": {"_count": 1}, "Auntie": {"_count": 1}, "the": {"_count": 1}, "He": {"_count": 1}}, "said": {"_count": 39, "the": {"_count": 3}, "Harry": {"_count": 9}, "Hagrid": {"_count": 3}, "Riddle": {"_count": 1}, "Hermione": {"_count": 5}, "Ron": {"_count": 11}, "Mr": {"_count": 1}, "George": {"_count": 2}, "Mrs": {"_count": 2}, "Slughorn": {"_count": 2}}, "sorry": {"_count": 4, "said": {"_count": 1}, "Weasley": {"_count": 1}, "Neville": {"_count": 1}, "He": {"_count": 1}}, "no": {"_count": 66, "sir": {"_count": 4}, "said": {"_count": 16}, "oh": {"_count": 3}, "Ron": {"_count": 2}, "Professor": {"_count": 1}, "Peeves": {"_count": 1}, "not": {"_count": 2}, "they": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 7}, "er": {"_count": 1}, "A": {"_count": 1}, "its": {"_count": 2}, "I": {"_count": 3}, "hang": {"_count": 1}, "only": {"_count": 1}, "really": {"_count": 1}, "hes": {"_count": 1}, "shes": {"_count": 1}, "sorry": {"_count": 2}, "this": {"_count": 1}, "no": {"_count": 1}, "Dumbledore": {"_count": 1}, "thank": {"_count": 1}, "need": {"_count": 1}, "she": {"_count": 1}, "squealed": {"_count": 1}, "of": {"_count": 1}, "muttered": {"_count": 1}, "Id": {"_count": 1}, "merely": {"_count": 1}, "doubt": {"_count": 1}, "thanks": {"_count": 1}, "youve": {"_count": 1}}, "bravo": {"_count": 2, "": {"_count": 2}}, "Neville": {"_count": 2, "he": {"_count": 1}, "Im": {"_count": 1}}, "him": {"_count": 1, "said": {"_count": 1}}, "are": {"_count": 5, "you": {"_count": 3}, "we": {"_count": 2}}, "shut": {"_count": 10, "up": {"_count": 10}}, "Mom": {"_count": 1, "can": {"_count": 1}}, "of": {"_count": 6, "course": {"_count": 6}}, "you": {"_count": 10, "wait": {"_count": 1}, "may": {"_count": 1}, "know": {"_count": 3}, "is": {"_count": 1}, "wont": {"_count": 1}, "do": {"_count": 1}, "dont": {"_count": 1}, "want": {"_count": 1}}, "this": {"_count": 10, "is": {"_count": 7}, "doesnt": {"_count": 1}, "could": {"_count": 1}, "explains": {"_count": 1}}, "youre": {"_count": 6, "going": {"_count": 1}, "changing": {"_count": 1}, "so": {"_count": 1}, "like": {"_count": 1}, "sure": {"_count": 1}, "sorry": {"_count": 1}}, "move": {"_count": 1, "over": {"_count": 1}}, "all": {"_count": 12, "right": {"_count": 10}, "sorts": {"_count": 1}, "righ": {"_count": 1}}, "were": {"_count": 2, "not": {"_count": 1}, "going": {"_count": 1}}, "honestly": {"_count": 3, "dont": {"_count": 1}, "": {"_count": 2}}, "we": {"_count": 2, "found": {"_count": 1}, "all": {"_count": 1}}, "come": {"_count": 21, "on": {"_count": 16}, "off": {"_count": 4}, "and": {"_count": 1}}, "its": {"_count": 20, "you": {"_count": 7}, "wonderful": {"_count": 1}, "so": {"_count": 1}, "just": {"_count": 1}, "a": {"_count": 2}, "no": {"_count": 1}, "okay": {"_count": 1}, "easy": {"_count": 1}, "been": {"_count": 2}, "nothing": {"_count": 1}, "fine": {"_count": 1}, "great": {"_count": 1}}, "a": {"_count": 4, "fair": {"_count": 1}, "fine": {"_count": 1}, "little": {"_count": 1}, "likely": {"_count": 1}}, "lets": {"_count": 3, "kick": {"_count": 1}, "get": {"_count": 2}}, "Im": {"_count": 12, "so": {"_count": 4}, "not": {"_count": 2}, "sure": {"_count": 2}, "going": {"_count": 1}, "all": {"_count": 1}, "fine": {"_count": 1}, "Im": {"_count": 1}}, "right": {"_count": 11, "": {"_count": 3}, "here": {"_count": 1}, "said": {"_count": 3}, "sorry": {"_count": 1}, "thanks": {"_count": 1}, "yeah": {"_count": 2}}, "go": {"_count": 3, "on": {"_count": 3}}, "very": {"_count": 12, "well": {"_count": 6}, "funny": {"_count": 2}, "good": {"_count": 2}, "clever": {"_count": 1}, "nice": {"_count": 1}}, "Harry": {"_count": 24, "we": {"_count": 1}, "oh": {"_count": 1}, "": {"_count": 7}, "youd": {"_count": 1}, "Who": {"_count": 1}, "you": {"_count": 2}, "isnt": {"_count": 1}, "this": {"_count": 2}, "Im": {"_count": 2}, "its": {"_count": 2}, "she": {"_count": 2}, "dont": {"_count": 1}, "what": {"_count": 1}}, "it": {"_count": 8, "was": {"_count": 5}, "cant": {"_count": 1}, "could": {"_count": 1}, "would": {"_count": 1}}, "really": {"_count": 5, "": {"_count": 3}, "said": {"_count": 1}, "Professor": {"_count": 1}}, "dear": {"_count": 14, "said": {"_count": 5}, "they": {"_count": 1}, "": {"_count": 6}, "dear": {"_count": 1}, "breathed": {"_count": 1}}, "Mum": {"_count": 1, "And": {"_count": 1}}, "Id": {"_count": 1, "love": {"_count": 1}}, "there": {"_count": 4, "you": {"_count": 2}, "yare": {"_count": 1}, "are": {"_count": 1}}, "hello": {"_count": 15, "there": {"_count": 1}, "Harry": {"_count": 6}, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 1}, "Albus": {"_count": 1}, "Mafalda": {"_count": 1}, "Reg": {"_count": 1}}, "wow": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "look": {"_count": 8, "said": {"_count": 1}, "theyre": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 2}, "your": {"_count": 1}, "theyve": {"_count": 1}, "whispered": {"_count": 1}}, "n": {"_count": 1, "Professor": {"_count": 1}}, "here": {"_count": 2, "we": {"_count": 1}, "she": {"_count": 1}}, "Ron": {"_count": 10, "there": {"_count": 1}, "wake": {"_count": 1}, "dont": {"_count": 1}, "whats": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "please": {"_count": 1}, "said": {"_count": 2}, "how": {"_count": 1}}, "is": {"_count": 2, "that": {"_count": 2}}, "thats": {"_count": 6, "what": {"_count": 1}, "nice": {"_count": 1}, "always": {"_count": 1}, "my": {"_count": 1}, "right": {"_count": 1}, "much": {"_count": 1}}, "Potter": {"_count": 3, "you": {"_count": 3}}, "get": {"_count": 1, "out": {"_count": 1}}, "dont": {"_count": 14, "she": {"_count": 1}, "say": {"_count": 1}, "mind": {"_count": 2}, "give": {"_count": 1}, "go": {"_count": 1}, "lie": {"_count": 1}, "be": {"_count": 2}, "tell": {"_count": 1}, "start": {"_count": 2}, "you": {"_count": 1}, "I": {"_count": 1}}, "now": {"_count": 4, "see": {"_count": 1}, "he": {"_count": 1}, "Severus": {"_count": 1}, "Im": {"_count": 1}}, "that": {"_count": 6, "thats": {"_count": 1}, "said": {"_count": 2}, "wont": {"_count": 1}, "was": {"_count": 1}, "one": {"_count": 1}}, "Mr": {"_count": 2, "Potter": {"_count": 1}, "Burke": {"_count": 1}}, "Ive": {"_count": 4, "got": {"_count": 1}, "always": {"_count": 1}, "just": {"_count": 1}, "been": {"_count": 1}}, "youve": {"_count": 1, "heard": {"_count": 1}}, "and": {"_count": 12, "dear": {"_count": 2}, "well": {"_count": 1}, "Ive": {"_count": 1}, "there": {"_count": 1}, "shes": {"_count": 1}, "fifty": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "Malfoy": {"_count": 1}, "here": {"_count": 1}, "how": {"_count": 1}}, "how": {"_count": 3, "silly": {"_count": 1}, "are": {"_count": 1}, "wonderful": {"_count": 1}}, "tremendously": {"_count": 1, "funny": {"_count": 1}}, "what": {"_count": 2, "rubbish": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 5, "Hermione": {"_count": 1}, "this": {"_count": 1}, "why": {"_count": 1}, "naturally": {"_count": 1}, "it": {"_count": 1}}, "thanks": {"_count": 1, "Hedwig": {"_count": 1}}, "for": {"_count": 7, "goodness": {"_count": 1}, "heavens": {"_count": 6}}, "please": {"_count": 3, "Ron": {"_count": 1}, "said": {"_count": 1}, "call": {"_count": 1}}, "help": {"_count": 1, "help": {"_count": 1}}, "hes": {"_count": 3, "horrible": {"_count": 1}, "not": {"_count": 1}, "very": {"_count": 1}}, "cheer": {"_count": 1, "up": {"_count": 1}}, "Bagmans": {"_count": 1, "likable": {"_count": 1}}, "Berthas": {"_count": 1, "hopeless": {"_count": 1}}, "talk": {"_count": 1, "of": {"_count": 1}}, "details": {"_count": 1, "": {"_count": 1}}, "stood": {"_count": 1, "over": {"_count": 1}}, "thank": {"_count": 3, "goodness": {"_count": 3}}, "boys": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "fathers": {"_count": 1}}, "hurry": {"_count": 2, "up": {"_count": 2}}, "the": {"_count": 4, "usual": {"_count": 1}, "shame": {"_count": 1}, "trouble": {"_count": 1}, "Gurg": {"_count": 1}}, "cmon": {"_count": 1, "Ermyknee": {"_count": 1}}, "Professor": {"_count": 1, "look": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "vairy": {"_count": 1, "funny": {"_count": 1}}, "if": {"_count": 3, "it": {"_count": 1}, "theres": {"_count": 1}, "my": {"_count": 1}}, "bless": {"_count": 1, "him": {"_count": 1}}, "hang": {"_count": 2, "on": {"_count": 2}}, "shell": {"_count": 1, "cheer": {"_count": 1}}, "okay": {"_count": 1, "he": {"_count": 1}}, "Cedric": {"_count": 1, "she": {"_count": 1}}, "did": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "never": {"_count": 2, "mind": {"_count": 1}, "a": {"_count": 1}}, "not": {"_count": 5, "at": {"_count": 1}, "electronic": {"_count": 1}, "again": {"_count": 1}, "quite": {"_count": 1}, "death": {"_count": 1}}, "Ill": {"_count": 2, "get": {"_count": 1}, "take": {"_count": 1}}, "give": {"_count": 2, "it": {"_count": 1}, "them": {"_count": 1}}, "as": {"_count": 2, "if": {"_count": 1}, "long": {"_count": 1}}, "Master": {"_count": 1, "": {"_count": 1}}, "Rita": {"_count": 1, "hasnt": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "Mums": {"_count": 1, "going": {"_count": 1}}, "Alastor": {"_count": 1, "I": {"_count": 1}}, "oh": {"_count": 5, "oh": {"_count": 1}, "right": {"_count": 1}, "yeah": {"_count": 3}}, "Molly": {"_count": 1, "come": {"_count": 1}}, "lighten": {"_count": 1, "up": {"_count": 1}}, "er": {"_count": 2, "thanks": {"_count": 1}, "no": {"_count": 1}}, "know": {"_count": 1, "the": {"_count": 1}}, "forget": {"_count": 2, "it": {"_count": 2}}, "most": {"_count": 1, "think": {"_count": 1}}, "brilliant": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 2, "only": {"_count": 1}, "were": {"_count": 1}}, "yeh": {"_count": 1, "did": {"_count": 1}}, "Hagrid": {"_count": 4, "dont": {"_count": 2}, "why": {"_count": 2}}, "don": {"_count": 1, "you": {"_count": 1}}, "an": {"_count": 1, "here": {"_count": 1}}, "Sirius": {"_count": 1, "Im": {"_count": 1}}, "stop": {"_count": 2, "feeling": {"_count": 1}, "that": {"_count": 1}}, "Gilderoy": {"_count": 1, "youve": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "youll": {"_count": 1, "talk": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "so": {"_count": 1, "thats": {"_count": 1}}, "can": {"_count": 1, "she": {"_count": 1}}, "things": {"_count": 1, "are": {"_count": 1}}, "why": {"_count": 2, "dont": {"_count": 1}, "did": {"_count": 1}}, "hi": {"_count": 3, "said": {"_count": 1}, "Hermione": {"_count": 1}, "Luna": {"_count": 1}}, "damn": {"_count": 2, "whispered": {"_count": 1}, "thatll": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "gosh": {"_count": 1, "I": {"_count": 1}}, "blimey": {"_count": 4, "said": {"_count": 2}, "I": {"_count": 1}, "brace": {"_count": 1}}, "more": {"_count": 1, "of": {"_count": 1}}, "hell": {"_count": 1, "try": {"_count": 1}}, "theyre": {"_count": 1, "in": {"_count": 1}}, "heres": {"_count": 1, "George": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "be": {"_count": 1, "quiet": {"_count": 1}}, "drop": {"_count": 1, "it": {"_count": 1}}, "ello": {"_count": 1, "Arry": {"_count": 1}}, "ha": {"_count": 1, "ha": {"_count": 1}}, "Percy": {"_count": 1, "said": {"_count": 1}}, "Perce": {"_count": 1, "": {"_count": 1}}, "fine": {"_count": 1, "she": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "Dean": {"_count": 1, "was": {"_count": 1}}, "surprise": {"_count": 1, "me": {"_count": 1}}, "groaning": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "something": {"_count": 1, "really": {"_count": 1}}, "surely": {"_count": 1, "not": {"_count": 1}}, "weaker": {"_count": 1, "resistance": {"_count": 1}}, "Bill": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "youve": {"_count": 1}}, "Aberforth": {"_count": 1, "is": {"_count": 1}}, "Rons": {"_count": 1, "mum": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "just": {"_count": 1, "your": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "speak": {"_count": 1, "English": {"_count": 1}}, "remembered": {"_count": 1, "me": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}}, "heart": {"_count": 275, "sinking": {"_count": 3, "horribly": {"_count": 1}, "": {"_count": 2}}, "isnt": {"_count": 1, "in": {"_count": 1}}, "gave": {"_count": 6, "a": {"_count": 6}}, "twanging": {"_count": 1, "like": {"_count": 1}}, "hammered": {"_count": 2, "as": {"_count": 1}, "this": {"_count": 1}}, "of": {"_count": 20, "course": {"_count": 1}, "the": {"_count": 14}, "London": {"_count": 2}, "it": {"_count": 1}, "hearts": {"_count": 1}, "our": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "Their": {"_count": 1, "daring": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 1}, "on": {"_count": 1}, "into": {"_count": 1}}, "sank": {"_count": 17, "faster": {"_count": 1}, "even": {"_count": 1}, "": {"_count": 9}, "he": {"_count": 1}, "at": {"_count": 1}, "like": {"_count": 1}, "right": {"_count": 1}, "how": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 26}, "!": {"_count": 2}, "?": {"_count": 2}}, "Fred": {"_count": 1, "told": {"_count": 1}}, "skipped": {"_count": 4, "": {"_count": 1}, "several": {"_count": 1}, "a": {"_count": 1}, "into": {"_count": 1}}, "racing": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "was": {"_count": 35, "pounding": {"_count": 4}, "hammering": {"_count": 4}, "now": {"_count": 4}, "starting": {"_count": 1}, "pumping": {"_count": 4}, "thumping": {"_count": 2}, "going": {"_count": 1}, "beating": {"_count": 6}, "lightening": {"_count": 1}, "bursting": {"_count": 1}, "still": {"_count": 2}, "racing": {"_count": 2}, "not": {"_count": 1}, "banging": {"_count": 1}, "leaping": {"_count": 1}}, "did": {"_count": 1, "a": {"_count": 1}}, "memorize": {"_count": 1, "the": {"_count": 1}}, "rose": {"_count": 1, "if": {"_count": 1}}, "he": {"_count": 4, "remembered": {"_count": 2}, "heard": {"_count": 1}, "sat": {"_count": 1}}, "thudding": {"_count": 1, "madly": {"_count": 1}}, "leapt": {"_count": 11, "": {"_count": 4}, "you": {"_count": 1}, "and": {"_count": 1}, "if": {"_count": 1}, "as": {"_count": 1}, "Somebody": {"_count": 1}, "So": {"_count": 1}, "at": {"_count": 1}}, "lightened": {"_count": 1, "considerably": {"_count": 1}}, "thumping": {"_count": 5, "very": {"_count": 1}, "wildly": {"_count": 1}, "hard": {"_count": 1}, "horribly": {"_count": 1}, "traitorously": {"_count": 1}}, "doing": {"_count": 2, "a": {"_count": 2}}, "dropped": {"_count": 1, "like": {"_count": 1}}, "seemed": {"_count": 4, "to": {"_count": 4}}, "beating": {"_count": 6, "so": {"_count": 1}, "very": {"_count": 1}, "fast": {"_count": 2}, "rather": {"_count": 2}}, "and": {"_count": 7, "spilled": {"_count": 1}, "steely": {"_count": 1}, "her": {"_count": 1}, "she": {"_count": 1}, "lungs": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "feel": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 1, "worst": {"_count": 1}}, "at": {"_count": 1, "Malfoy": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "are": {"_count": 1, "still": {"_count": 1}}, "lighter": {"_count": 2, "than": {"_count": 2}}, "turn": {"_count": 1, "over": {"_count": 1}}, "banging": {"_count": 1, "against": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "plummeted": {"_count": 1, "had": {"_count": 1}}, "stand": {"_count": 1, "still": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "pumping": {"_count": 2, "fast": {"_count": 1}, "a": {"_count": 1}}, "once": {"_count": 1, "you": {"_count": 1}}, "suddenly": {"_count": 1, "pounding": {"_count": 1}}, "halfway": {"_count": 1, "across": {"_count": 1}}, "felt": {"_count": 1, "lighter": {"_count": 1}}, "rate": {"_count": 2, "returned": {"_count": 1}, "quickened": {"_count": 1}}, "would": {"_count": 2, "give": {"_count": 1}, "never": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 1}, "been": {"_count": 1}}, "attack": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "upon": {"_count": 1, "a": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "from": {"_count": 1, "this": {"_count": 1}}, "hammering": {"_count": 3, "he": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 4, "Harry": {"_count": 1}, "saved": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "pounding": {"_count": 5, "somewhere": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "with": {"_count": 1}, "fiercely": {"_count": 1}}, "shot": {"_count": 1, "upward": {"_count": 1}}, "Hes": {"_count": 1, "not": {"_count": 1}}, "My": {"_count": 1, "mother": {"_count": 1}}, "Kreacher": {"_count": 1, "Sirius": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "which": {"_count": 1, "seemed": {"_count": 1}}, "turned": {"_count": 1, "over": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "lifting": {"_count": 1, "": {"_count": 1}}, "beat": {"_count": 3, "fast": {"_count": 1}, "very": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 3, "saw": {"_count": 2}, "had": {"_count": 1}}, "to": {"_count": 3, "tell": {"_count": 1}, "take": {"_count": 1}, "say": {"_count": 1}}, "lay": {"_count": 1, "beyond": {"_count": 1}}, "swelled": {"_count": 1, "with": {"_count": 1}}, "began": {"_count": 4, "to": {"_count": 4}}, "drummed": {"_count": 1, "madly": {"_count": 1}}, "now": {"_count": 3, "pumping": {"_count": 1}, "hammering": {"_count": 2}}, "filled": {"_count": 1, "with": {"_count": 1}}, "disgorging": {"_count": 1, "him": {"_count": 1}}, "sink": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 2, "has": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 1, "Ron": {"_count": 1}}, "leaping": {"_count": 1, "": {"_count": 1}}, "lift": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "missed": {"_count": 1, "a": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "thundered": {"_count": 1, "unheard": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "stopping": {"_count": 1, "moment": {"_count": 1}}, "wasnt": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "positively": {"_count": 1, "banging": {"_count": 1}}, "be": {"_count": 2, "also": {"_count": 2}}, "still": {"_count": 1, "beating": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "without": {"_count": 1, "need": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}, "skip": {"_count": 1, "and": {"_count": 1}}, "They": {"_count": 1, "have": {"_count": 1}}, "Professor": {"_count": 1, "weve": {"_count": 1}}, "lurched": {"_count": 1, "Snape": {"_count": 1}}, "his": {"_count": 1, "innards": {"_count": 1}}, "failure": {"_count": 1, "": {"_count": 1}}}, "sinking": {"_count": 44, "horribly": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "into": {"_count": 8, "his": {"_count": 1}, "dreams": {"_count": 1}, "a": {"_count": 3}, "shadows": {"_count": 1}, "an": {"_count": 2}}, "behind": {"_count": 2, "the": {"_count": 2}}, "on": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 7, "onto": {"_count": 1}, "into": {"_count": 4}, "in": {"_count": 1}, "out": {"_count": 1}}, "bloodred": {"_count": 1, "below": {"_count": 1}}, "deeper": {"_count": 2, "and": {"_count": 1}, "into": {"_count": 1}}, "waisthigh": {"_count": 1, "into": {"_count": 1}}, "fast": {"_count": 1, "now": {"_count": 1}}, "feeling": {"_count": 5, "of": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 2}, "that": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}, "sensation": {"_count": 1, "in": {"_count": 1}}, "slowly": {"_count": 1, "into": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 1, "low": {"_count": 1}}, "onto": {"_count": 1, "a": {"_count": 1}}, "lower": {"_count": 1, "and": {"_count": 1}}, "heart": {"_count": 1, "Harry": {"_count": 1}}, "its": {"_count": 1, "fangs": {"_count": 1}}, "over": {"_count": 1, "grounds": {"_count": 1}}, "so": {"_count": 1, "low": {"_count": 1}}, "her": {"_count": 1, "arm": {"_count": 1}}}, "horribly": {"_count": 41, "": {"_count": 5, ".": {"_count": 5}}, "like": {"_count": 4, "blood": {"_count": 1}, "whole": {"_count": 1}, "BLOOD": {"_count": 1}, "Weasley": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "wrong": {"_count": 2, "": {"_count": 1}, "one": {"_count": 1}}, "vividly": {"_count": 1, "in": {"_count": 1}}, "familiar": {"_count": 3, "wave": {"_count": 1}, "": {"_count": 1}, "rasping": {"_count": 1}}, "weakened": {"_count": 1, "he": {"_count": 1}}, "pale": {"_count": 1, "and": {"_count": 1}}, "rocking": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 1, "Snape": {"_count": 1}}, "before": {"_count": 1, "continuing": {"_count": 1}}, "flustered": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 2, "menacingly": {"_count": 1}, "that": {"_count": 1}}, "honeyed": {"_count": 1, "voice": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "difficult": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "sickly": {"_count": 1, "ominous": {"_count": 1}}, "aware": {"_count": 1, "of": {"_count": 1}}, "disfigured": {"_count": 1, "by": {"_count": 1}}, "smug": {"_count": 1, "smile": {"_count": 1}}, "the": {"_count": 1, "Slytherins": {"_count": 1}}, "powerless": {"_count": 1, "without": {"_count": 1}}, "gazing": {"_count": 1, "around": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "vivid": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "yet": {"_count": 1}, "vanished": {"_count": 1}}}, "Yes": {"_count": 616, "I": {"_count": 61, "quite": {"_count": 1}, "have": {"_count": 6}, "think": {"_count": 11}, "did": {"_count": 3}, "was": {"_count": 4}, "knew": {"_count": 1}, "know": {"_count": 4}, "do": {"_count": 5}, "remember": {"_count": 1}, "surmised": {"_count": 1}, "thought": {"_count": 3}, "can": {"_count": 3}, "am": {"_count": 6}, "suppose": {"_count": 2}, "would": {"_count": 1}, "received": {"_count": 1}, "daresay": {"_count": 1}, "expect": {"_count": 1}, "speak": {"_count": 1}, "certainly": {"_count": 1}, "took": {"_count": 1}, "I": {"_count": 1}, "dare": {"_count": 2}}, "said": {"_count": 141, "Professor": {"_count": 5}, "Dumbledore": {"_count": 14}, "Harry": {"_count": 71}, "the": {"_count": 2}, "Quirrell": {"_count": 1}, "Riddle": {"_count": 1}, "Fudge": {"_count": 2}, "Neville": {"_count": 3}, "Lupin": {"_count": 2}, "Hermione": {"_count": 18}, "Malfoy": {"_count": 1}, "Mr": {"_count": 2}, "Voldemort": {"_count": 1}, "Crouch": {"_count": 1}, "Sirius": {"_count": 1}, "Mrs": {"_count": 3}, "Luna": {"_count": 3}, "Snape": {"_count": 2}, "Umbridge": {"_count": 2}, "Nearly": {"_count": 1}, "Slughorn": {"_count": 1}, "Ogden": {"_count": 1}, "Ron": {"_count": 1}, "Doge": {"_count": 1}, "Aberforth": {"_count": 1}}, "yes": {"_count": 27, "youre": {"_count": 1}, "its": {"_count": 2}, "": {"_count": 2}, "thats": {"_count": 1}, "well": {"_count": 1}, "I": {"_count": 3}, "yes": {"_count": 3}, "lets": {"_count": 1}, "good": {"_count": 1}, "we": {"_count": 3}, "one": {"_count": 1}, "do": {"_count": 1}, "fine": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 1}, "Im": {"_count": 1}, "she": {"_count": 1}, "shes": {"_count": 1}, "a": {"_count": 1}}, "thats": {"_count": 3, "best": {"_count": 1}, "a": {"_count": 1}, "what": {"_count": 1}}, "exactly": {"_count": 1, "": {"_count": 1}}, "indeed": {"_count": 12, "oh": {"_count": 1}, "said": {"_count": 4}, "dear": {"_count": 1}, "": {"_count": 2}, "most": {"_count": 1}, "we": {"_count": 1}, "a": {"_count": 1}, "cried": {"_count": 1}}, "thirteenandahalf": {"_count": 1, "inches": {"_count": 1}}, "please": {"_count": 4, "Harry": {"_count": 1}, "see": {"_count": 1}, "said": {"_count": 1}, "do": {"_count": 1}}, "trying": {"_count": 1, "on": {"_count": 1}}, "dont": {"_count": 1, "stop": {"_count": 1}}, "": {"_count": 71, "!": {"_count": 10}, "?": {"_count": 13}, ".": {"_count": 48}}, "and": {"_count": 4, "no": {"_count": 1}, "that": {"_count": 1}, "You": {"_count": 1}, "zat": {"_count": 1}}, "thank": {"_count": 4, "you": {"_count": 4}}, "Weasley": {"_count": 1, "from": {"_count": 1}}, "but": {"_count": 27, "not": {"_count": 1}, "he": {"_count": 2}, "but": {"_count": 1}, "you": {"_count": 2}, "": {"_count": 1}, "this": {"_count": 1}, "theres": {"_count": 1}, "even": {"_count": 1}, "And": {"_count": 1}, "Knowing": {"_count": 1}, "Fully": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 3}, "still": {"_count": 2}, "dont": {"_count": 1}, "it": {"_count": 1}, "for": {"_count": 1}, "were": {"_count": 1}, "well": {"_count": 1}, "could": {"_count": 1}, "somehow": {"_count": 1}}, "of": {"_count": 9, "course": {"_count": 9}}, "Severus": {"_count": 2, "does": {"_count": 1}, "": {"_count": 1}}, "Potter": {"_count": 6, "come": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "Potions": {"_count": 1}, "away": {"_count": 1}}, "boy": {"_count": 1, "your": {"_count": 1}}, "sir": {"_count": 21, "": {"_count": 9}, "said": {"_count": 8}, "yes": {"_count": 1}, "I": {"_count": 1}, "Ive": {"_count": 1}, "of": {"_count": 1}}, "him": {"_count": 1, "Quirrell": {"_count": 1}}, "Arthur": {"_count": 1, "cars": {"_count": 1}}, "ladies": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 27, "said": {"_count": 6}, "what": {"_count": 1}, "did": {"_count": 3}, "muttered": {"_count": 1}, "is": {"_count": 5}, "has": {"_count": 1}, "had": {"_count": 2}, "would": {"_count": 1}, "continued": {"_count": 1}, "will": {"_count": 1}, "sounds": {"_count": 1}, "lied": {"_count": 1}, "asked": {"_count": 1}, "destroyed": {"_count": 1}, "breathed": {"_count": 1}}, "nice": {"_count": 1, "isnt": {"_count": 1}}, "perhaps": {"_count": 1, "youd": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "Ill": {"_count": 3, "have": {"_count": 1}, "see": {"_count": 2}}, "hes": {"_count": 7, "all": {"_count": 1}, "quoted": {"_count": 1}, "right": {"_count": 1}, "got": {"_count": 1}, "certainly": {"_count": 1}, "a": {"_count": 1}, "trying": {"_count": 1}}, "Headmaster": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 6, "were": {"_count": 1}, "have": {"_count": 2}, "too": {"_count": 1}, "did": {"_count": 1}, "could": {"_count": 1}}, "Harry": {"_count": 19, "said": {"_count": 6}, "heard": {"_count": 1}, "": {"_count": 3}, "gasped": {"_count": 1}, "muttered": {"_count": 1}, "Potter": {"_count": 2}, "lied": {"_count": 1}, "blessed": {"_count": 1}, "yes": {"_count": 1}, "you": {"_count": 1}, "thought": {"_count": 1}}, "Im": {"_count": 8, "coming": {"_count": 1}, "fine": {"_count": 1}, "starting": {"_count": 1}, "sending": {"_count": 1}, "meeting": {"_count": 1}, "sure": {"_count": 2}, "very": {"_count": 1}}, "my": {"_count": 5, "dear": {"_count": 1}, "son": {"_count": 1}, "Lord": {"_count": 2}, "tiara": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "that": {"_count": 7, "would": {"_count": 1}, "was": {"_count": 4}, "from": {"_count": 1}, "is": {"_count": 1}}, "thought": {"_count": 2, "Harry": {"_count": 2}}, "well": {"_count": 8, "he": {"_count": 1}, "said": {"_count": 3}, "I": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "your": {"_count": 1}}, "its": {"_count": 5, "a": {"_count": 2}, "on": {"_count": 1}, "well": {"_count": 1}, "me": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 2}, "had": {"_count": 1}}, "the": {"_count": 5, "last": {"_count": 1}, "dots": {"_count": 1}, "Ministry": {"_count": 1}, "Dark": {"_count": 2}}, "hed": {"_count": 1, "thought": {"_count": 1}}, "someone": {"_count": 1, "wanted": {"_count": 1}}, "everything": {"_count": 1, "did": {"_count": 1}}, "sometimes": {"_count": 1, "at": {"_count": 1}}, "all": {"_count": 4, "right": {"_count": 3}, "of": {"_count": 1}}, "Professor": {"_count": 6, "that": {"_count": 1}, "said": {"_count": 1}, "Lupin": {"_count": 1}, "Umbridge": {"_count": 1}, "": {"_count": 1}, "Snape": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 2}}, "they": {"_count": 4, "were": {"_count": 1}, "have": {"_count": 1}, "are": {"_count": 1}, "do": {"_count": 1}}, "Master": {"_count": 3, "moaned": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "here": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "Dudley": {"_count": 1, "whispered": {"_count": 1}}, "we": {"_count": 7, "are": {"_count": 1}, "can": {"_count": 1}, "saw": {"_count": 1}, "acquired": {"_count": 1}, "will": {"_count": 1}, "were": {"_count": 1}, "have": {"_count": 1}}, "if": {"_count": 2, "it": {"_count": 1}, "you": {"_count": 1}}, "it": {"_count": 11, "was": {"_count": 3}, "certainly": {"_count": 1}, "is": {"_count": 4}, "hurts": {"_count": 1}, "usually": {"_count": 1}, "must": {"_count": 1}}, "Lavender": {"_count": 1, "thinks": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "these": {"_count": 1, "are": {"_count": 1}}, "came": {"_count": 2, "Malfoys": {"_count": 1}, "Mr": {"_count": 1}}, "those": {"_count": 2, "with": {"_count": 1}, "who": {"_count": 1}}, "Mr": {"_count": 2, "Potter": {"_count": 1}, "Gaunt": {"_count": 1}}, "as": {"_count": 2, "gamekeeper": {"_count": 1}, "I": {"_count": 1}}, "theyve": {"_count": 1, "taken": {"_count": 1}}, "first": {"_count": 1, "floor": {"_count": 1}}, "Nevilles": {"_count": 1, "told": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "Molly": {"_count": 1, "dear": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "do": {"_count": 1, "lets": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "Phineas": {"_count": 1, "said": {"_count": 1}}, "theyre": {"_count": 2, "very": {"_count": 1}, "here": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "three": {"_count": 1, "said": {"_count": 1}}, "alive": {"_count": 1, "said": {"_count": 1}}, "Bellatrix": {"_count": 1, "I": {"_count": 1}}, "something": {"_count": 1, "horrible": {"_count": 1}}, "dragon": {"_count": 1, "repeated": {"_count": 1}}, "Rufus": {"_count": 1, "Scrimgeour": {"_count": 1}}, "dear": {"_count": 1, "Id": {"_count": 1}}, "Ive": {"_count": 2, "already": {"_count": 1}, "been": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "thanks": {"_count": 1, "sir": {"_count": 1}}, "Merope": {"_count": 1, "Riddle": {"_count": 1}}, "Riddle": {"_count": 1, "was": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "just": {"_count": 1, "love": {"_count": 1}}, "comical": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "He": {"_count": 1, "leapt": {"_count": 1}}, "very": {"_count": 1, "neat": {"_count": 1}}, "mmy": {"_count": 1, "Lord": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "good": {"_count": 1, "point": {"_count": 1}}, "Ariana": {"_count": 1, "might": {"_count": 1}}, "Barry": {"_count": 1, "thats": {"_count": 1}}, "Voldemort": {"_count": 1, "is": {"_count": 1}}, "whispered": {"_count": 2, "Ron": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "even": {"_count": 1, "after": {"_count": 1}}, "River": {"_count": 1, "I": {"_count": 1}}, "Daddys": {"_count": 1, "Wrackspurt": {"_count": 1}}, "Peeves": {"_count": 1, "you": {"_count": 1}}, "Tonks": {"_count": 1, "is": {"_count": 1}}, "Dumbledores": {"_count": 1, "dead": {"_count": 1}}}, "agree": {"_count": 37, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 1}, "?": {"_count": 1}}, "sir": {"_count": 2, "said": {"_count": 2}}, "to": {"_count": 2, "suspend": {"_count": 1}, "differ": {"_count": 1}}, "wholeheartedly": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 6, "you": {"_count": 2}, "him": {"_count": 1}, "Filius": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}}, "that": {"_count": 6, "this": {"_count": 1}, "they": {"_count": 1}, "Ariana": {"_count": 1}, "you": {"_count": 2}, "magic": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "we": {"_count": 1, "would": {"_count": 1}}, "given": {"_count": 1, "his": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "weve": {"_count": 1, "gone": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Professor": {"_count": 2}}, "I": {"_count": 3, "have": {"_count": 1}, "just": {"_count": 1}, "think": {"_count": 1}}, "you": {"_count": 1, "need": {"_count": 1}}}, "subject": {"_count": 112, "as": {"_count": 2, "they": {"_count": 1}, "a": {"_count": 1}}, "now": {"_count": 1, "wheres": {"_count": 1}}, "on": {"_count": 3, "purpose": {"_count": 1}, "their": {"_count": 1}, "earth": {"_count": 1}}, "around": {"_count": 1, "to": {"_count": 1}}, "And": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 24, ".": {"_count": 20}, "!": {"_count": 2}, "?": {"_count": 2}}, "was": {"_count": 5, "changed": {"_count": 1}, "closed": {"_count": 1}, "when": {"_count": 1}, "Herbology": {"_count": 1}, "broached": {"_count": 1}}, "is": {"_count": 3, "History": {"_count": 1}, "not": {"_count": 1}, "of": {"_count": 1}}, "between": {"_count": 1, "Slytherin": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 2}, "showed": {"_count": 1}}, "lists": {"_count": 1, "with": {"_count": 1}}, "not": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 3, "pointed": {"_count": 1}, "did": {"_count": 1}, "wanted": {"_count": 1}}, "abruptly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "his": {"_count": 1}, "I": {"_count": 1}, "obviously": {"_count": 1}, "plunged": {"_count": 1}}, "of": {"_count": 21, "Hogsmeade": {"_count": 1}, "Siriuss": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 5}, "this": {"_count": 1}, "giant": {"_count": 1}, "homework": {"_count": 1}, "people": {"_count": 1}, "much": {"_count": 1}, "a": {"_count": 1}, "Bellatrix": {"_count": 1}, "Fred": {"_count": 1}, "Divination": {"_count": 2}, "Ron": {"_count": 1}, "Rons": {"_count": 1}, "Dumbledore": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "but": {"_count": 2, "was": {"_count": 1}, "Dumbledore": {"_count": 1}}, "from": {"_count": 1, "Dumbledore": {"_count": 1}}, "ever": {"_count": 1, "devised": {"_count": 1}}, "only": {"_count": 1, "by": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "above": {"_count": 1, "such": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}, "But": {"_count": 1, "Im": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "with": {"_count": 2, "relief": {"_count": 1}, "her": {"_count": 1}}, "had": {"_count": 2, "already": {"_count": 1}, "suddenly": {"_count": 1}}, "that": {"_count": 2, "makes": {"_count": 1}, "came": {"_count": 1}}, "drop": {"_count": 1, "and": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 3, "he": {"_count": 1}, "far": {"_count": 1}, "we": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "to": {"_count": 1, "O": {"_count": 1}}, "even": {"_count": 1, "amongst": {"_count": 1}}, "Dyou": {"_count": 1, "reckon": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "cropped": {"_count": 1, "up": {"_count": 1}}, "however": {"_count": 1, "Bathilda": {"_count": 1}}}, "upstairs": {"_count": 128, "to": {"_count": 24, "bed": {"_count": 3}, "move": {"_count": 1}, "their": {"_count": 3}, "meet": {"_count": 1}, "his": {"_count": 2}, "Gryffindor": {"_count": 1}, "the": {"_count": 2}, "get": {"_count": 2}, "check": {"_count": 1}, "look": {"_count": 1}, "my": {"_count": 1}, "Martha": {"_count": 1}, "play": {"_count": 1}, "wake": {"_count": 1}, "Rons": {"_count": 1}, "put": {"_count": 1}, "tell": {"_count": 1}}, "and": {"_count": 12, "practice": {"_count": 1}, "to": {"_count": 1}, "threw": {"_count": 1}, "check": {"_count": 1}, "Harry": {"_count": 1}, "get": {"_count": 2}, "along": {"_count": 1}, "ignored": {"_count": 1}, "arrived": {"_count": 1}, "into": {"_count": 1}, "fight": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "when": {"_count": 2, "Uncle": {"_count": 1}, "this": {"_count": 1}}, "window": {"_count": 1, "by": {"_count": 1}}, "barred": {"_count": 1, "by": {"_count": 1}}, "smothering": {"_count": 1, "their": {"_count": 1}}, "with": {"_count": 5, "Ron": {"_count": 2}, "the": {"_count": 2}, "her": {"_count": 1}}, "windows": {"_count": 1, "defrosting": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 24}, "!": {"_count": 2}, "?": {"_count": 3}}, "landing": {"_count": 2, "when": {"_count": 1}, "straining": {"_count": 1}}, "really": {"_count": 1, "quietly": {"_count": 1}}, "bit": {"_count": 1, "tired": {"_count": 1}}, "please": {"_count": 1, "feel": {"_count": 1}}, "corridor": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 3, "Charms": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "toward": {"_count": 2, "Gryffindor": {"_count": 2}}, "Ill": {"_count": 1, "take": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "he": {"_count": 2, "ate": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "again": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 5, "my": {"_count": 2}, "his": {"_count": 1}, "bed": {"_count": 1}, "the": {"_count": 1}}, "lay": {"_count": 1, "awake": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "looking": {"_count": 1, "grim": {"_count": 1}}, "toilet": {"_count": 1, "and": {"_count": 1}}, "corridors": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "somewhere": {"_count": 1, "": {"_count": 1}}, "crying": {"_count": 1, "his": {"_count": 1}}, "stopping": {"_count": 1, "before": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "We": {"_count": 1, "need": {"_count": 1}}, "Ron": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}, "Harry": {"_count": 1, "whispered": {"_count": 1}}, "while": {"_count": 1, "she": {"_count": 1}}, "Kreacher": {"_count": 1, "bowing": {"_count": 1}}, "they": {"_count": 1, "heard": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "in": {"_count": 1}}}, "While": {"_count": 44, "Mrs": {"_count": 1, "Dursley": {"_count": 1}}, "he": {"_count": 5, "drove": {"_count": 1}, "may": {"_count": 1}, "struggled": {"_count": 1}, "tapped": {"_count": 1}, "tried": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "Hagrid": {"_count": 1, "asked": {"_count": 1}}, "they": {"_count": 3, "had": {"_count": 1}, "tucked": {"_count": 1}, "do": {"_count": 1}}, "you": {"_count": 3, "are": {"_count": 1}, "can": {"_count": 1}, "live": {"_count": 1}}, "Ron": {"_count": 2, "told": {"_count": 1}, "kept": {"_count": 1}}, "the": {"_count": 9, "Gryffindor": {"_count": 1}, "Ministry": {"_count": 1}, "bravest": {"_count": 1}, "Prime": {"_count": 1}, "wind": {"_count": 1}, "Elixir": {"_count": 1}, "magical": {"_count": 1}, "knives": {"_count": 1}, "diadem": {"_count": 1}}, "Dudley": {"_count": 1, "lolled": {"_count": 1}}, "Muggles": {"_count": 1, "have": {"_count": 1}}, "still": {"_count": 1, "alive": {"_count": 1}}, "Dumbledore": {"_count": 1, "turns": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "YouKnowWho": {"_count": 1, "knows": {"_count": 1}}, "everyone": {"_count": 1, "around": {"_count": 1}}, "evryones": {"_count": 1, "watchin": {"_count": 1}}, "I": {"_count": 2, "endured": {"_count": 1}, "keep": {"_count": 1}}, "his": {"_count": 1, "will": {"_count": 1}}, "Neville": {"_count": 1, "recited": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "her": {"_count": 1, "radiance": {"_count": 1}}, "she": {"_count": 1, "unlocked": {"_count": 1}}, "Xenophilius": {"_count": 1, "s": {"_count": 1}}}, "bathroom": {"_count": 105, "Mr": {"_count": 1, "Dursley": {"_count": 1}}, "": {"_count": 40, ".": {"_count": 31}, "!": {"_count": 3}, "?": {"_count": 6}}, "and": {"_count": 9, "wanted": {"_count": 1}, "she": {"_count": 1}, "as": {"_count": 1}, "kitchen": {"_count": 1}, "found": {"_count": 1}, "closed": {"_count": 1}, "pass": {"_count": 1}, "bolted": {"_count": 1}, "tiny": {"_count": 1}}, "morning": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 4}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "once": {"_count": 2, "again": {"_count": 1}, "girls": {"_count": 1}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "carefully": {"_count": 1, "checked": {"_count": 1}}, "door": {"_count": 1, "behind": {"_count": 1}}, "walls": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "unaccompanied": {"_count": 1, "by": {"_count": 1}}, "said": {"_count": 6, "Harry": {"_count": 3}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "Ginny": {"_count": 1}}, "the": {"_count": 1, "girls": {"_count": 1}}, "moreover": {"_count": 1, "right": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "hed": {"_count": 1, "probably": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "far": {"_count": 1, "fewer": {"_count": 1}}, "was": {"_count": 2, "and": {"_count": 1}, "laughing": {"_count": 1}}, "echoing": {"_count": 1, "and": {"_count": 1}}, "floor": {"_count": 1, "someone": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "\u2018Are": {"_count": 1, "you": {"_count": 1}}, "again": {"_count": 2, "sometime": {"_count": 1}, "was": {"_count": 1}}, "up": {"_count": 1, "ahead": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "with": {"_count": 2, "it": {"_count": 1}, "Harry": {"_count": 1}}, "itself": {"_count": 1, "McGonagall": {"_count": 1}}, "just": {"_count": 1, "before": {"_count": 1}}, "between": {"_count": 1, "lessons": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "throw": {"_count": 1}, "run": {"_count": 1}}, "he": {"_count": 2, "pressed": {"_count": 1}, "could": {"_count": 1}}, "turning": {"_count": 1, "at": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "without": {"_count": 1, "another": {"_count": 1}}, "beyond": {"_count": 1, "": {"_count": 1}}}, "crept": {"_count": 57, "to": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 3}}, "down": {"_count": 2, "their": {"_count": 1}, "them": {"_count": 1}}, "nearer": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "along": {"_count": 6, "the": {"_count": 4}, "behind": {"_count": 1}, "it": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 5}, "into": {"_count": 1}, "past": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "around": {"_count": 1, "yet": {"_count": 1}}, "downstairs": {"_count": 1, "picked": {"_count": 1}}, "slowly": {"_count": 2, "toward": {"_count": 1}, "and": {"_count": 1}}, "sideways": {"_count": 1, "and": {"_count": 1}}, "silently": {"_count": 1, "around": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "back": {"_count": 5, "to": {"_count": 1}, "downstairs": {"_count": 2}, "under": {"_count": 1}, "into": {"_count": 1}}, "past": {"_count": 2, "them": {"_count": 1}, "still": {"_count": 1}}, "up": {"_count": 2, "behind": {"_count": 2}}, "among": {"_count": 1, "us": {"_count": 1}}, "halfway": {"_count": 1, "across": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "forward": {"_count": 2, "and": {"_count": 1}, "staring": {"_count": 1}}, "hunchbacked": {"_count": 1, "down": {"_count": 1}}, "closer": {"_count": 1, "although": {"_count": 1}}, "upon": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 1, "Harry": {"_count": 1}}, "over": {"_count": 1, "Aberforths": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}}, "bedroom": {"_count": 112, "window": {"_count": 4, "and": {"_count": 1}, "for": {"_count": 1}, "which": {"_count": 1}, "delivering": {"_count": 1}}, "where": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 24}, "?": {"_count": 4}}, "he": {"_count": 5, "wheezed": {"_count": 1}, "couldnt": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "now": {"_count": 1}}, "making": {"_count": 1, "no": {"_count": 1}}, "on": {"_count": 2, "tiptoe": {"_count": 1}, "Privet": {"_count": 1}}, "door": {"_count": 17, "pulled": {"_count": 1}, "so": {"_count": 1}, "close": {"_count": 1}, "had": {"_count": 1}, "shut": {"_count": 1}, "listening": {"_count": 1}, "and": {"_count": 1}, "behind": {"_count": 1}, "in": {"_count": 1}, "flew": {"_count": 2}, "": {"_count": 4}, "pausing": {"_count": 1}, "Do": {"_count": 1}}, "side": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "considered": {"_count": 1}}, "taking": {"_count": 1, "as": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "walls": {"_count": 1, "had": {"_count": 1}}, "floor": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "forgotten": {"_count": 1}}, "was": {"_count": 3, "having": {"_count": 1}, "on": {"_count": 1}, "slightly": {"_count": 1}}, "slippers": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 3, "think": {"_count": 1}, "he": {"_count": 1}, "slamming": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "leaving": {"_count": 1, "it": {"_count": 1}}, "again": {"_count": 1, "furious": {"_count": 1}}, "while": {"_count": 1, "we": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}, "doorknob": {"_count": 1, "which": {"_count": 1}}, "doorway": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "nose": {"_count": 1}}, "looked": {"_count": 1, "if": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 4, "Grimmauld": {"_count": 2}, "Privet": {"_count": 1}, "which": {"_count": 1}}, "Rons": {"_count": 1, "mums": {"_count": 1}}, "more": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}, "curtains": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "fiddled": {"_count": 1}, "made": {"_count": 1}}, "arriving": {"_count": 1, "at": {"_count": 1}}, "one": {"_count": 1, "last": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "his": {"_count": 1, "long": {"_count": 1}}, "ceiling": {"_count": 1, "with": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "e": {"_count": 1, "says": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "single": {"_count": 1}}, "opened": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "peered": {"_count": 62, "down": {"_count": 4, "into": {"_count": 1}, "one": {"_count": 1}, "over": {"_count": 1}, "at": {"_count": 1}}, "at": {"_count": 6, "it": {"_count": 2}, "Hermione": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 2}, "at": {"_count": 1}, "from": {"_count": 1}}, "sternly": {"_count": 1, "over": {"_count": 1}}, "inside": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "it": {"_count": 1}}, "into": {"_count": 7, "the": {"_count": 3}, "Harrys": {"_count": 2}, "their": {"_count": 1}, "windows": {"_count": 1}}, "over": {"_count": 5, "at": {"_count": 1}, "the": {"_count": 4}}, "in": {"_count": 2, "at": {"_count": 1}, "through": {"_count": 1}}, "more": {"_count": 2, "closely": {"_count": 2}}, "goodnaturedly": {"_count": 2, "up": {"_count": 1}, "around": {"_count": 1}}, "keenly": {"_count": 1, "down": {"_count": 1}}, "intently": {"_count": 1, "out": {"_count": 1}}, "interestedly": {"_count": 1, "over": {"_count": 1}}, "around": {"_count": 7, "the": {"_count": 5}, "at": {"_count": 1}, "Snapes": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 6, "the": {"_count": 4}, "her": {"_count": 1}, "a": {"_count": 1}}, "excitedly": {"_count": 1, "around": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "haughtily": {"_count": 1, "up": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "instead": {"_count": 1, "in": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "hopefully": {"_count": 1, "into": {"_count": 1}}}, "front": {"_count": 801, "garden": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "attached": {"_count": 1}}, "of": {"_count": 473, "them": {"_count": 49}, "the": {"_count": 127}, "him": {"_count": 88}, "her": {"_count": 30}, "Malfoy": {"_count": 3}, "Malfoys": {"_count": 1}, "a": {"_count": 15}, "it": {"_count": 6}, "Muggles": {"_count": 1}, "those": {"_count": 1}, "Harry": {"_count": 17}, "Hogwarts": {"_count": 1}, "an": {"_count": 4}, "his": {"_count": 27}, "Percy": {"_count": 1}, "Ginny": {"_count": 2}, "us": {"_count": 3}, "witnesses": {"_count": 1}, "Professor": {"_count": 1}, "their": {"_count": 3}, "other": {"_count": 1}, "Lupin": {"_count": 1}, "Katie": {"_count": 1}, "Pettigrew": {"_count": 1}, "Hagrids": {"_count": 4}, "Ludo": {"_count": 1}, "Mrs": {"_count": 1}, "all": {"_count": 1}, "me": {"_count": 8}, "anyone": {"_count": 1}, "your": {"_count": 3}, "Dumbledore": {"_count": 9}, "hundreds": {"_count": 2}, "each": {"_count": 3}, "Ron": {"_count": 4}, "Moody": {"_count": 1}, "my": {"_count": 2}, "Snape": {"_count": 2}, "Karkaroffs": {"_count": 1}, "Hermione": {"_count": 4}, "Dumbledores": {"_count": 2}, "you": {"_count": 6}, "Harrys": {"_count": 6}, "Dudleys": {"_count": 1}, "Mum": {"_count": 1}, "Neville": {"_count": 1}, "Chos": {"_count": 1}, "Filch": {"_count": 1}, "They": {"_count": 1}, "Sirius": {"_count": 1}, "Umbridges": {"_count": 1}, "Umbridge": {"_count": 2}, "Dolores": {"_count": 1}, "Ogden": {"_count": 1}, "where": {"_count": 1}, "mirrors": {"_count": 1}, "Fred": {"_count": 1}, "Professors": {"_count": 1}, "every": {"_count": 1}, "Dobby": {"_count": 1}, "Lupins": {"_count": 1}, "Aunt": {"_count": 1}, "Death": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Bill": {"_count": 1}, "one": {"_count": 1}, "twenty": {"_count": 1}, "Phineas": {"_count": 1}, "The": {"_count": 1}}, "door": {"_count": 79, "": {"_count": 21}, "to": {"_count": 3}, "it": {"_count": 1}, "aaRRRGH": {"_count": 1}, "in": {"_count": 1}, "lay": {"_count": 1}, "slammed": {"_count": 1}, "opened": {"_count": 3}, "on": {"_count": 1}, "and": {"_count": 8}, "closed": {"_count": 2}, "or": {"_count": 1}, "of": {"_count": 3}, "peered": {"_count": 1}, "so": {"_count": 1}, "open": {"_count": 3}, "magically": {"_count": 1}, "a": {"_count": 2}, "when": {"_count": 2}, "he": {"_count": 1}, "surrounded": {"_count": 1}, "Hagrid": {"_count": 1}, "behind": {"_count": 2}, "said": {"_count": 1}, "was": {"_count": 2}, "very": {"_count": 1}, "had": {"_count": 2}, "which": {"_count": 1}, "slamming": {"_count": 1}, "seemed": {"_count": 1}, "but": {"_count": 1}, "give": {"_count": 1}, "once": {"_count": 1}, "then": {"_count": 2}, "slam": {"_count": 1}, "carefully": {"_count": 1}, "close": {"_count": 1}}, "step": {"_count": 2, "but": {"_count": 1}, "with": {"_count": 1}}, "gardens": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "and": {"_count": 7, "back": {"_count": 2}, "say": {"_count": 1}, "approach": {"_count": 1}, "raised": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}}, "desk": {"_count": 1, "": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "prefects": {"_count": 1}}, "teeth": {"_count": 5, "": {"_count": 1}, "was": {"_count": 2}, "already": {"_count": 1}, "leering": {"_count": 1}}, "to": {"_count": 1, "ask": {"_count": 1}}, "steps": {"_count": 13, "onto": {"_count": 1}, "up": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 2}, "into": {"_count": 2}, "": {"_count": 4}, "where": {"_count": 1}, "to": {"_count": 1}}, "legs": {"_count": 7, "so": {"_count": 1}, "wings": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "struggling": {"_count": 1}}, "seats": {"_count": 2, "were": {"_count": 1}, "with": {"_count": 1}}, "seat": {"_count": 3, "and": {"_count": 1}, "which": {"_count": 1}, "Ron": {"_count": 1}}, "passenger": {"_count": 2, "seat": {"_count": 2}}, "page": {"_count": 28, "": {"_count": 7}, "of": {"_count": 4}, "said": {"_count": 1}, "and": {"_count": 4}, "while": {"_count": 1}, "had": {"_count": 1}, "before": {"_count": 1}, "you": {"_count": 2}, "critically": {"_count": 1}, "clearly": {"_count": 1}, "nine": {"_count": 1}, "but": {"_count": 1}, "with": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}}, "doors": {"_count": 53, "": {"_count": 8}, "on": {"_count": 1}, "and": {"_count": 8}, "squeezed": {"_count": 1}, "ajar": {"_count": 1}, "into": {"_count": 3}, "as": {"_count": 2}, "checking": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 4}, "which": {"_count": 1}, "from": {"_count": 1}, "a": {"_count": 1}, "opened": {"_count": 1}, "stood": {"_count": 2}, "Harry": {"_count": 1}, "the": {"_count": 1}, "looking": {"_count": 1}, "had": {"_count": 2}, "through": {"_count": 1}, "eager": {"_count": 1}, "both": {"_count": 1}, "seemed": {"_count": 1}, "without": {"_count": 1}, "swung": {"_count": 1}, "perhaps": {"_count": 1}, "toward": {"_count": 1}, "their": {"_count": 1}, "in": {"_count": 1}, "burst": {"_count": 1}, "easily": {"_count": 1}}, "were": {"_count": 2, "shaking": {"_count": 1}, "already": {"_count": 1}}, "row": {"_count": 11, "seat": {"_count": 1}, "wearing": {"_count": 1}, "sat": {"_count": 1}, "of": {"_count": 1}, "who": {"_count": 1}, "with": {"_count": 1}, "Mrs": {"_count": 1}, "He": {"_count": 1}, "thats": {"_count": 1}, "shrieked": {"_count": 1}, "the": {"_count": 1}}, "spotted": {"_count": 1, "the": {"_count": 1}}, "o": {"_count": 3, "the": {"_count": 2}, "him": {"_count": 1}}, "two": {"_count": 1, "clutching": {"_count": 1}}, "cover": {"_count": 8, "": {"_count": 4}, "of": {"_count": 4}}, "paw": {"_count": 4, "which": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 2}, "Griphook": {"_count": 1}}, "knees": {"_count": 2, "and": {"_count": 2}}, "first": {"_count": 1, "so": {"_count": 1}}, "also": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 3, "Albus": {"_count": 1}, "unmistakably": {"_count": 1}, "but": {"_count": 1}}, "paws": {"_count": 5, "hit": {"_count": 1}, "upon": {"_count": 1}, "on": {"_count": 2}, "were": {"_count": 1}}, "claws": {"_count": 1, "had": {"_count": 1}}, "pocket": {"_count": 2, "but": {"_count": 1}, "were": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "which": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "three": {"_count": 2, "are": {"_count": 1}, "rows": {"_count": 1}}, "yard": {"_count": 2, "came": {"_count": 1}, "when": {"_count": 1}}, "saw": {"_count": 1, "Dennis": {"_count": 1}}, "gates": {"_count": 1, "": {"_count": 1}}, "nudged": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Bagman": {"_count": 1}}, "but": {"_count": 2, "Rita": {"_count": 1}, "Harry": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "showed": {"_count": 1, "a": {"_count": 1}}, "afraid": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "lawn": {"_count": 1, "stepped": {"_count": 1}}, "straining": {"_count": 1, "as": {"_count": 1}}, "bench": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 1, "as": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 4}}, "oo": {"_count": 1, "got": {"_count": 1}}, "then": {"_count": 1, "leapt": {"_count": 1}}, "for": {"_count": 1, "six": {"_count": 1}}, "desks": {"_count": 1, "got": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "drive": {"_count": 1, "looking": {"_count": 1}}, "gate": {"_count": 1, "Dumbledore": {"_count": 1}}, "path": {"_count": 2, "and": {"_count": 1}, "through": {"_count": 1}}, "AMULETS": {"_count": 1, "Effective": {"_count": 1}}, "announced": {"_count": 1, "that": {"_count": 1}}, "handknitted": {"_count": 1, "by": {"_count": 1}}, "past": {"_count": 1, "Professor": {"_count": 1}}, "Fang": {"_count": 1, "keeping": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "chairs": {"_count": 1}}, "rows": {"_count": 1, "his": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "Ill": {"_count": 1, "do": {"_count": 1}}, "porches": {"_count": 1, "wondering": {"_count": 1}}}, "staring": {"_count": 470, "down": {"_count": 28, "Privet": {"_count": 1}, "at": {"_count": 20}, "the": {"_count": 2}, "into": {"_count": 2}, "onto": {"_count": 1}, "their": {"_count": 1}, "them": {"_count": 1}}, "at": {"_count": 238, "him": {"_count": 31}, "the": {"_count": 75}, "his": {"_count": 13}, "Hagrid": {"_count": 2}, "them": {"_count": 6}, "what": {"_count": 1}, "her": {"_count": 19}, "Harry": {"_count": 20}, "Lockhart": {"_count": 1}, "Hermione": {"_count": 7}, "Harrys": {"_count": 2}, "it": {"_count": 9}, "Uncle": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 4}, "Ron": {"_count": 4}, "Black": {"_count": 2}, "Pettigrew": {"_count": 1}, "Mr": {"_count": 2}, "Malfoy": {"_count": 2}, "Dumbledore": {"_count": 5}, "Moody": {"_count": 1}, "Hagrids": {"_count": 1}, "Snape": {"_count": 3}, "Fleur": {"_count": 1}, "Krums": {"_count": 1}, "each": {"_count": 2}, "Krum": {"_count": 1}, "Cedrics": {"_count": 1}, "Fudge": {"_count": 1}, "Sirius": {"_count": 2}, "everyone": {"_count": 1}, "Professor": {"_count": 1}, "Parvati": {"_count": 1}, "either": {"_count": 1}, "Phineas": {"_count": 1}, "their": {"_count": 1}, "Defensive": {"_count": 1}, "this": {"_count": 2}, "one": {"_count": 2}, "us": {"_count": 1}, "you": {"_count": 1}, "Ginny": {"_count": 1}, "Dudley": {"_count": 1}}, "out": {"_count": 16, "of": {"_count": 8}, "at": {"_count": 4}, "the": {"_count": 1}, "across": {"_count": 1}, "on": {"_count": 1}, "over": {"_count": 1}}, "up": {"_count": 25, "at": {"_count": 23}, "the": {"_count": 1}, "into": {"_count": 1}}, "eyes": {"_count": 2, "Harry": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "around": {"_count": 16, "for": {"_count": 2}, "at": {"_count": 5}, "with": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "the": {"_count": 1}, "impressed": {"_count": 1}, "trying": {"_count": 1}, "into": {"_count": 1}}, "transfixed": {"_count": 3, "at": {"_count": 3}}, "over": {"_count": 7, "their": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 3}, "from": {"_count": 1}, "at": {"_count": 1}}, "absentmindedly": {"_count": 1, "into": {"_count": 1}}, "back": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "from": {"_count": 7, "one": {"_count": 1}, "the": {"_count": 2}, "Scabbers": {"_count": 1}, "Fudge": {"_count": 1}, "Mrs": {"_count": 1}, "Rita": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "glass": {"_count": 1, "eye": {"_count": 1}}, "through": {"_count": 8, "the": {"_count": 6}, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "students": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "morosely": {"_count": 1, "out": {"_count": 1}}, "Slytherin": {"_count": 1, "ghost": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "blankly": {"_count": 5, "at": {"_count": 3}, "around": {"_count": 1}, "upwards": {"_count": 1}}, "shrewdly": {"_count": 1, "back": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "furiously": {"_count": 1, "at": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 15, "the": {"_count": 10}, "his": {"_count": 1}, "one": {"_count": 1}, "its": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}}, "haughtily": {"_count": 1, "at": {"_count": 1}}, "unblinkingly": {"_count": 3, "at": {"_count": 1}, "ahead": {"_count": 1}, "Harry": {"_count": 1}}, "avidly": {"_count": 3, "at": {"_count": 3}}, "in": {"_count": 2, "every": {"_count": 1}, "the": {"_count": 1}}, "after": {"_count": 7, "her": {"_count": 4}, "him": {"_count": 2}, "them": {"_count": 1}}, "resentfully": {"_count": 1, "after": {"_count": 1}}, "petrified": {"_count": 1, "at": {"_count": 1}}, "wildly": {"_count": 3, "around": {"_count": 2}, "over": {"_count": 1}}, "madly": {"_count": 1, "around": {"_count": 1}}, "hopelessly": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 2, "": {"_count": 2}}, "glumly": {"_count": 1, "at": {"_count": 1}}, "terrified": {"_count": 1, "toward": {"_count": 1}}, "eagerly": {"_count": 1, "around": {"_count": 1}}, "openmouthed": {"_count": 1, "at": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "horrorstruck": {"_count": 3, "at": {"_count": 3}}, "curiously": {"_count": 2, "at": {"_count": 2}}, "determinedly": {"_count": 1, "at": {"_count": 1}}, "sinisterly": {"_count": 1, "": {"_count": 1}}, "pointedly": {"_count": 1, "at": {"_count": 1}}, "behind": {"_count": 3, "them": {"_count": 2}, "her": {"_count": 1}}, "blurrily": {"_count": 1, "at": {"_count": 1}}, "menacingly": {"_count": 1, "at": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "hard": {"_count": 2, "at": {"_count": 2}}, "for": {"_count": 1, "the": {"_count": 1}}, "stupidly": {"_count": 1, "at": {"_count": 1}}, "dazedly": {"_count": 1, "into": {"_count": 1}}, "was": {"_count": 1, "starting": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "soppily": {"_count": 1}}, "incredulously": {"_count": 1, "at": {"_count": 1}}, "sideways": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 3, "whispering": {"_count": 1}, "pointing": {"_count": 1}, "muttering": {"_count": 1}}, "fixedly": {"_count": 2, "at": {"_count": 1}, "into": {"_count": 1}}, "straight": {"_count": 3, "ahead": {"_count": 3}}, "once": {"_count": 1, "more": {"_count": 1}}, "apparently": {"_count": 2, "terrified": {"_count": 1}, "entranced": {"_count": 1}}, "intently": {"_count": 1, "at": {"_count": 1}}, "companions": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "seemed": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "coldly": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 1, "through": {"_count": 1}}, "appalled": {"_count": 1, "at": {"_count": 1}}, "idly": {"_count": 1, "at": {"_count": 1}}}, "waiting": {"_count": 229, "for": {"_count": 122, "something": {"_count": 6}, "": {"_count": 5}, "the": {"_count": 17}, "them": {"_count": 22}, "said": {"_count": 1}, "you": {"_count": 5}, "Professor": {"_count": 2}, "Flitwick": {"_count": 1}, "his": {"_count": 4}, "Hermione": {"_count": 2}, "Hermiones": {"_count": 1}, "Crabbe": {"_count": 1}, "Riddle": {"_count": 1}, "him": {"_count": 18}, "an": {"_count": 4}, "this": {"_count": 2}, "any": {"_count": 1}, "us": {"_count": 4}, "Harry": {"_count": 2}, "eight": {"_count": 1}, "your": {"_count": 1}, "more": {"_count": 1}, "someone": {"_count": 1}, "some": {"_count": 1}, "her": {"_count": 2}, "me": {"_count": 2}, "people": {"_count": 1}, "Phineas": {"_count": 1}, "a": {"_count": 4}, "Ron": {"_count": 1}, "Sirius": {"_count": 1}, "Grawps": {"_count": 1}, "\u2018the": {"_count": 1}, "YouKnowWho": {"_count": 1}, "Bill": {"_count": 1}, "Snape": {"_count": 1}, "Then": {"_count": 1}}, "on": {"_count": 3, "a": {"_count": 1}, "tenterhooks": {"_count": 1}, "the": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 24, "be": {"_count": 3}, "welcome": {"_count": 1}, "open": {"_count": 1}, "hear": {"_count": 3}, "bludgeon": {"_count": 1}, "celebrate": {"_count": 1}, "see": {"_count": 5}, "depart": {"_count": 1}, "read": {"_count": 1}, "start": {"_count": 1}, "consult": {"_count": 1}, "surprise": {"_count": 1}, "file": {"_count": 1}, "do": {"_count": 2}, "show": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 21}, "?": {"_count": 2}}, "at": {"_count": 3, "the": {"_count": 3}}, "in": {"_count": 7, "the": {"_count": 6}, "this": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "petrified": {"_count": 1, "for": {"_count": 1}}, "list": {"_count": 2, "": {"_count": 1}, "Hermione": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "outside": {"_count": 8, "the": {"_count": 3}, "each": {"_count": 1}, "my": {"_count": 1}, "Fudges": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "listening": {"_count": 1, "their": {"_count": 1}}, "wizards": {"_count": 1, "the": {"_count": 1}}, "wideeyed": {"_count": 1, "crowd": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "arms": {"_count": 1, "": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "somewhere": {"_count": 1, "above": {"_count": 1}}, "out": {"_count": 3, "there": {"_count": 3}}, "But": {"_count": 1, "some": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "week": {"_count": 1}}, "panting": {"_count": 1, "slightly": {"_count": 1}}, "two": {"_count": 1, "hours": {"_count": 1}}, "trunks": {"_count": 1, "packed": {"_count": 1}}, "the": {"_count": 1, "bezoar": {"_count": 1}}, "beside": {"_count": 2, "the": {"_count": 2}}, "No": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 3, "here": {"_count": 1}, "there": {"_count": 2}}, "Hagrids": {"_count": 1, "arms": {"_count": 1}}, "still": {"_count": 2, "appeared": {"_count": 1}, "holding": {"_count": 1}}, "Muggleborns": {"_count": 1, "who": {"_count": 1}}, "there": {"_count": 1, "alone": {"_count": 1}}, "Everything": {"_count": 1, "was": {"_count": 1}}, "eagerly": {"_count": 1, "for": {"_count": 1}}}, "Could": {"_count": 48, "all": {"_count": 1, "this": {"_count": 1}}, "I": {"_count": 6, "could": {"_count": 1}, "see": {"_count": 1}, "have": {"_count": 3}, "haff": {"_count": 1}}, "do": {"_count": 1, "with": {"_count": 1}}, "you": {"_count": 10, "write": {"_count": 1}, "get": {"_count": 1}, "leave": {"_count": 1}, "take": {"_count": 1}, "see": {"_count": 2}, "possibly": {"_count": 1}, "please": {"_count": 1}, "give": {"_count": 1}, "not": {"_count": 1}}, "there": {"_count": 1, "really": {"_count": 1}}, "Snape": {"_count": 1, "possibly": {"_count": 1}}, "a": {"_count": 1, "werewolf": {"_count": 1}}, "have": {"_count": 1, "kicked": {"_count": 1}}, "be": {"_count": 4, "useful": {"_count": 1}, "anywhere": {"_count": 1}, "anything": {"_count": 1}, "theyll": {"_count": 1}}, "he": {"_count": 5, "be": {"_count": 2}, "perhaps": {"_count": 1}, "have": {"_count": 1}, "know": {"_count": 1}}, "the": {"_count": 3, "basilisk": {"_count": 1}, "old": {"_count": 1}, "Half": {"_count": 1}}, "this": {"_count": 1, "suggestion": {"_count": 1}}, "we": {"_count": 3, "have": {"_count": 2}, "use": {"_count": 1}}, "Moody": {"_count": 1, "possibly": {"_count": 1}}, "Dobby": {"_count": 1, "be": {"_count": 1}}, "it": {"_count": 2, "possibly": {"_count": 1}, "be": {"_count": 1}}, "ony": {"_count": 1, "travel": {"_count": 1}}, "their": {"_count": 1, "friendship": {"_count": 1}}, "Dumbledore": {"_count": 1, "have": {"_count": 1}}, "try": {"_count": 1, "clearing": {"_count": 1}}, "luck": {"_count": 1, "sheer": {"_count": 1}}, "they": {"_count": 1, "sense": {"_count": 1}}}, "related": {"_count": 15, "to": {"_count": 10, "a": {"_count": 1}, "Slytherin": {"_count": 1}, "Aunt": {"_count": 1}, "the": {"_count": 4}, "them": {"_count": 1}, "Hector": {"_count": 1}, "blood": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "subject": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}}, "pair": {"_count": 164, "of": {"_count": 148, "well": {"_count": 1}, "kitchen": {"_count": 1}, "Uncle": {"_count": 3}, "protective": {"_count": 1}, "doors": {"_count": 1}, "goblins": {"_count": 1}, "double": {"_count": 1}, "twin": {"_count": 1}, "galoshes": {"_count": 1}, "them": {"_count": 32}, "human": {"_count": 1}, "binoculars": {"_count": 1}, "thick": {"_count": 3}, "glasses": {"_count": 1}, "bright": {"_count": 1}, "pincenez": {"_count": 1}, "eyeballs": {"_count": 1}, "earmuffs": {"_count": 1}, "lamplike": {"_count": 1}, "pajamas": {"_count": 2}, "empty": {"_count": 2}, "razorsharp": {"_count": 1}, "shining": {"_count": 1}, "white": {"_count": 1}, "great": {"_count": 1}, "pillars": {"_count": 1}, "gleaming": {"_count": 1}, "wheels": {"_count": 1}, "very": {"_count": 1}, "enormous": {"_count": 2}, "heavy": {"_count": 2}, "angry": {"_count": 2}, "magnificent": {"_count": 1}, "feet": {"_count": 3}, "troublemakers": {"_count": 1}, "maroon": {"_count": 2}, "eyes": {"_count": 1}, "you": {"_count": 2}, "people": {"_count": 1}, "strong": {"_count": 1}, "jeans": {"_count": 2}, "legs": {"_count": 2}, "tired": {"_count": 1}, "shabby": {"_count": 1}, "men": {"_count": 1}, "pinstriped": {"_count": 2}, "tweezers": {"_count": 2}, "firstyear": {"_count": 1}, "what": {"_count": 1}, "trolls": {"_count": 1}, "": {"_count": 1}, "socks": {"_count": 3}, "violet": {"_count": 1}, "hands": {"_count": 1}, "gray": {"_count": 1}, "long": {"_count": 1}, "my": {"_count": 1}, "dementors": {"_count": 2}, "prominent": {"_count": 1}, "giant": {"_count": 1}, "beetlebrown": {"_count": 1}, "orange": {"_count": 1}, "shoes": {"_count": 1}, "knitting": {"_count": 1}, "shapeless": {"_count": 1}, "us": {"_count": 2}, "blank": {"_count": 1}, "striped": {"_count": 1}, "drinking": {"_count": 1}, "graying": {"_count": 1}, "opera": {"_count": 1}, "Stunning": {"_count": 1}, "wirerimmed": {"_count": 1}, "trainers": {"_count": 1}, "lilac": {"_count": 1}, "free": {"_count": 1}, "psychedelic": {"_count": 1}, "secateurs": {"_count": 1}, "pants": {"_count": 1}, "Quidditch": {"_count": 1}, "eels": {"_count": 1}, "balledup": {"_count": 1}, "Vanishing": {"_count": 1}, "impressive": {"_count": 1}, "Rons": {"_count": 1}, "pretty": {"_count": 1}, "Fleurs": {"_count": 1}, "stuffed": {"_count": 1}, "burly": {"_count": 1}, "booted": {"_count": 1}, "witches": {"_count": 1}, "glittering": {"_count": 1}, "hobnailed": {"_count": 1}, "wroughtiron": {"_count": 1}, "em": {"_count": 1}, "heavylooking": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 2, "wasnt": {"_count": 1}, "was": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "Longbottom": {"_count": 1, "and": {"_count": 1}}, "Im": {"_count": 1, "talking": {"_count": 1}}, "patterned": {"_count": 1, "with": {"_count": 1}}, "But": {"_count": 1, "at": {"_count": 1}}, "Of": {"_count": 1, "Huffepuff": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "cried": {"_count": 1}}, "I": {"_count": 1, "take": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "well": {"_count": 1001, "he": {"_count": 22, "didnt": {"_count": 1}, "said": {"_count": 8}, "never": {"_count": 1}, "whispered": {"_count": 1}, "was": {"_count": 4}, "passed": {"_count": 1}, "had": {"_count": 1}, "supposed": {"_count": 1}, "would": {"_count": 1}, "always": {"_count": 1}, "doesnt": {"_count": 1}, "joined": {"_count": 1}}, "what": {"_count": 6, "he": {"_count": 1}, "I": {"_count": 1}, "his": {"_count": 1}, "were": {"_count": 1}, "Harry": {"_count": 1}, "might": {"_count": 1}}, "noble": {"_count": 1, "to": {"_count": 1}}, "be": {"_count": 48, "found": {"_count": 1}, "there": {"_count": 1}, "able": {"_count": 14}, "okay": {"_count": 2}, "packing": {"_count": 2}, "thrown": {"_count": 1}, "the": {"_count": 3}, "going": {"_count": 1}, "playing": {"_count": 2}, "out": {"_count": 1}, "seeing": {"_count": 3}, "fine": {"_count": 1}, "hanged": {"_count": 1}, "asked": {"_count": 1}, "very": {"_count": 1}, "some": {"_count": 1}, "overheard": {"_count": 1}, "a": {"_count": 2}, "comfortable": {"_count": 1}, "safer": {"_count": 1}, "joining": {"_count": 1}, "free": {"_count": 1}, "trembling": {"_count": 1}, "hunting": {"_count": 1}, "back": {"_count": 2}, "careful": {"_count": 1}}, "go": {"_count": 13, "and": {"_count": 3}, "back": {"_count": 4}, "upstairs": {"_count": 1}, "around": {"_count": 1}, "up": {"_count": 1}, "now": {"_count": 1}, "with": {"_count": 1}, "somewhere": {"_count": 1}}, "buy": {"_count": 1, "you": {"_count": 1}}, "ignore": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 146, ".": {"_count": 124}, "?": {"_count": 14}, "!": {"_count": 8}}, "they": {"_count": 3, "were": {"_count": 1}, "perform": {"_count": 1}, "are": {"_count": 1}}, "I": {"_count": 37, "was": {"_count": 4}, "thought": {"_count": 2}, "think": {"_count": 6}, "sputtered": {"_count": 1}, "never": {"_count": 2}, "had": {"_count": 1}, "expect": {"_count": 1}, "only": {"_count": 1}, "remember": {"_count": 1}, "know": {"_count": 1}, "Mundungus": {"_count": 1}, "suppose": {"_count": 2}, "hope": {"_count": 1}, "mean": {"_count": 1}, "dont": {"_count": 3}, "came": {"_count": 1}, "can": {"_count": 1}, "followed": {"_count": 1}, "saw": {"_count": 1}, "didnt": {"_count": 1}, "heard": {"_count": 1}, "do": {"_count": 1}, "wont": {"_count": 1}, "couldnt": {"_count": 1}}, "keep": {"_count": 1, "the": {"_count": 1}}, "get": {"_count": 12, "yer": {"_count": 1}, "into": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 4}, "down": {"_count": 1}, "top": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 11, "Id": {"_count": 1}, "youre": {"_count": 2}, "people": {"_count": 1}, "he": {"_count": 1}, "youve": {"_count": 2}, "you": {"_count": 3}, "WonWon": {"_count": 1}}, "Im": {"_count": 6, "righthanded": {"_count": 1}, "very": {"_count": 1}, "not": {"_count": 2}, "a": {"_count": 1}, "hungry": {"_count": 1}}, "find": {"_count": 7, "the": {"_count": 2}, "out": {"_count": 1}, "a": {"_count": 2}, "an": {"_count": 1}, "me": {"_count": 1}}, "well": {"_count": 14, "": {"_count": 5}, "he": {"_count": 1}, "Arthur": {"_count": 1}, "I": {"_count": 2}, "said": {"_count": 1}, "okay": {"_count": 1}, "try": {"_count": 1}, "sneered": {"_count": 1}, "see": {"_count": 1}}, "take": {"_count": 7, "you": {"_count": 1}, "Harold": {"_count": 1}, "Potter": {"_count": 1}, "the": {"_count": 2}, "twenty": {"_count": 1}, "turns": {"_count": 1}}, "have": {"_count": 35, "a": {"_count": 3}, "to": {"_count": 12}, "thought": {"_count": 1}, "another": {"_count": 1}, "exactly": {"_count": 1}, "slipped": {"_count": 1}, "stayed": {"_count": 1}, "thrown": {"_count": 1}, "interrogated": {"_count": 1}, "dinner": {"_count": 1}, "destroyed": {"_count": 1}, "plenty": {"_count": 1}, "tried": {"_count": 1}, "your": {"_count": 1}, "kept": {"_count": 1}, "you": {"_count": 1}, "time": {"_count": 1}, "been": {"_count": 1}, "nothing": {"_count": 1}, "whole": {"_count": 1}, "that": {"_count": 1}, "left": {"_count": 1}}, "send": {"_count": 5, "you": {"_count": 1}, "up": {"_count": 1}, "it": {"_count": 2}, "someone": {"_count": 1}}, "not": {"_count": 5, "all": {"_count": 1}, "to": {"_count": 1}, "have": {"_count": 1}, "well": {"_count": 1}, "health": {"_count": 1}}, "as": {"_count": 26, "the": {"_count": 2}, "he": {"_count": 2}, "your": {"_count": 1}, "Madam": {"_count": 1}, "out": {"_count": 1}, "Cedrics": {"_count": 1}, "I": {"_count": 3}, "Karkaroff": {"_count": 1}, "everything": {"_count": 1}, "funds": {"_count": 1}, "wed": {"_count": 1}, "long": {"_count": 1}, "wet": {"_count": 1}, "me": {"_count": 1}, "anywhere": {"_count": 1}, "anyone": {"_count": 1}, "an": {"_count": 1}, "before": {"_count": 1}, "his": {"_count": 1}, "Hermione": {"_count": 1}, "to": {"_count": 1}, "its": {"_count": 1}}, "to": {"_count": 4, "remember": {"_count": 1}, "take": {"_count": 1}, "tell": {"_count": 1}, "pressure": {"_count": 1}}, "do": {"_count": 9, "the": {"_count": 3}, "it": {"_count": 2}, "this": {"_count": 1}, "excuse": {"_count": 1}, "something": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "how": {"_count": 1}}, "look": {"_count": 2, "Neville": {"_count": 1}, "what": {"_count": 1}}, "see": {"_count": 10, "you": {"_count": 2}, "how": {"_count": 1}, "us": {"_count": 1}, "what": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 2}, "if": {"_count": 1}, "exactly": {"_count": 1}}, "done": {"_count": 10, "": {"_count": 4}, "Slytherin": {"_count": 1}, "for": {"_count": 1}, "mate": {"_count": 1}, "she": {"_count": 1}, "indeed": {"_count": 1}, "thought": {"_count": 1}}, "secret": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 10, "note": {"_count": 1}, "Stone": {"_count": 1}, "plan": {"_count": 1}, "occasion": {"_count": 1}, "only": {"_count": 1}, "dragon": {"_count": 1}, "kind": {"_count": 1}, "more": {"_count": 1}, "idea": {"_count": 1}, "longing": {"_count": 1}}, "catch": {"_count": 1, "them": {"_count": 1}}, "it": {"_count": 7, "shows": {"_count": 1}, "was": {"_count": 3}, "meant": {"_count": 1}, "cant": {"_count": 1}, "went": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "Snape": {"_count": 4, "cut": {"_count": 1}, "": {"_count": 2}, "snapped": {"_count": 1}}, "oiled": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 6, "come": {"_count": 1}, "right": {"_count": 1}, "of": {"_count": 1}, "squeeze": {"_count": 1}, "be": {"_count": 2}}, "behind": {"_count": 1, "the": {"_count": 1}}, "cause": {"_count": 1, "he": {"_count": 1}}, "protected": {"_count": 3, "": {"_count": 1}, "And": {"_count": 1}, "knew": {"_count": 1}}, "Ill": {"_count": 4, "have": {"_count": 1}, "be": {"_count": 1}, "let": {"_count": 1}, "just": {"_count": 1}}, "Baron": {"_count": 1, "Ill": {"_count": 1}}, "just": {"_count": 7, "have": {"_count": 4}, "say": {"_count": 1}, "because": {"_count": 1}, "put": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "on": {"_count": 7, "your": {"_count": 2}, "a": {"_count": 1}, "on": {"_count": 1}, "nonmagical": {"_count": 1}, "my": {"_count": 1}, "those": {"_count": 1}}, "organized": {"_count": 1, "mind": {"_count": 1}}, "she": {"_count": 6, "said": {"_count": 4}, "didnt": {"_count": 1}, "could": {"_count": 1}}, "its": {"_count": 10, "getting": {"_count": 1}, "not": {"_count": 4}, "really": {"_count": 1}, "quite": {"_count": 1}, "in": {"_count": 1}, "harder": {"_count": 1}, "hard": {"_count": 1}}, "manage": {"_count": 1, "said": {"_count": 1}}, "guests": {"_count": 1, "first": {"_count": 1}}, "fall": {"_count": 1, "out": {"_count": 1}}, "think": {"_count": 1, "not": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "for": {"_count": 3, "it": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "remembered": {"_count": 1, "putting": {"_count": 1}}, "theyd": {"_count": 1, "just": {"_count": 1}}, "of": {"_count": 3, "course": {"_count": 2}, "despair": {"_count": 1}}, "both": {"_count": 3, "sign": {"_count": 1}, "at": {"_count": 1}, "have": {"_count": 1}}, "come": {"_count": 7, "a": {"_count": 1}, "and": {"_count": 2}, "too": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 2}}, "youve": {"_count": 4, "read": {"_count": 1}, "put": {"_count": 1}, "seen": {"_count": 1}, "got": {"_count": 1}}, "growled": {"_count": 1, "Hagrid": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "human": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 4, "and": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "in": {"_count": 1}}, "ask": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "hes": {"_count": 7, "the": {"_count": 2}, "a": {"_count": 2}, "always": {"_count": 1}, "bound": {"_count": 1}, "helped": {"_count": 1}}, "in": {"_count": 8, "Slytherin": {"_count": 3}, "exams": {"_count": 1}, "Tuesdays": {"_count": 1}, "Transfiguration": {"_count": 1}, "that": {"_count": 2}}, "card": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 43, "Ron": {"_count": 4}, "Professor": {"_count": 4}, "Lupin": {"_count": 1}, "Madame": {"_count": 1}, "the": {"_count": 4}, "Snape": {"_count": 2}, "Fudge": {"_count": 3}, "Madam": {"_count": 1}, "Tonks": {"_count": 1}, "Mrs": {"_count": 2}, "Harry": {"_count": 7}, "Hermione": {"_count": 4}, "Moody": {"_count": 1}, "Umbridge": {"_count": 1}, "Sirius": {"_count": 1}, "Slughorn": {"_count": 2}, "Dumbledore": {"_count": 1}, "George": {"_count": 1}, "Greyback": {"_count": 1}, "Voldemort": {"_count": 1}}, "know": {"_count": 9, "theyre": {"_count": 1}, "day": {"_count": 1}, "exactly": {"_count": 1}, "I": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 1}, "by": {"_count": 1}, "you": {"_count": 1}, "how": {"_count": 1}}, "close": {"_count": 1, "the": {"_count": 1}}, "He": {"_count": 2, "held": {"_count": 1}, "thrust": {"_count": 1}}, "past": {"_count": 3, "midnight": {"_count": 3}}, "never": {"_count": 5, "mind": {"_count": 4}, "leave": {"_count": 1}}, "tell": {"_count": 3, "her": {"_count": 1}, "you": {"_count": 2}}, "yes": {"_count": 3, "said": {"_count": 2}, "thats": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "Boggart": {"_count": 1}}, "how": {"_count": 2, "to": {"_count": 1}, "could": {"_count": 1}}, "groomed": {"_count": 1, "indeed": {"_count": 1}}, "that": {"_count": 20, "Dudley": {"_count": 2}, "as": {"_count": 1}, "kind": {"_count": 1}, "just": {"_count": 1}, "your": {"_count": 1}, "Uncle": {"_count": 1}, "Percy": {"_count": 1}, "those": {"_count": 1}, "he": {"_count": 2}, "figures": {"_count": 1}, "nobody": {"_count": 1}, "much": {"_count": 1}, "I": {"_count": 1}, "night": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 1}, "wouldve": {"_count": 1}, "it": {"_count": 1}}, "paid": {"_count": 1, "for": {"_count": 1}}, "though": {"_count": 4, "it": {"_count": 1}, "Hermione": {"_count": 1}, "did": {"_count": 1}, "he": {"_count": 1}}, "no": {"_count": 1, "not": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "thanks": {"_count": 2, "Harry": {"_count": 1}, "Dobby": {"_count": 1}}, "made": {"_count": 1, "of": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "call": {"_count": 1, "you": {"_count": 1}}, "Id": {"_count": 1, "better": {"_count": 1}}, "test": {"_count": 1, "Longbottoms": {"_count": 1}}, "everyone": {"_count": 2, "an": {"_count": 1}, "whos": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "Severus": {"_count": 2, "": {"_count": 2}}, "make": {"_count": 1, "it": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "more": {"_count": 1, "innocent": {"_count": 1}}, "before": {"_count": 1, "nightfall": {"_count": 1}}, "you": {"_count": 20, "know": {"_count": 6}, "will": {"_count": 2}, "did": {"_count": 1}, "wouldnt": {"_count": 2}, "get": {"_count": 1}, "can": {"_count": 2}, "resist": {"_count": 1}, "silly": {"_count": 1}, "saw": {"_count": 1}, "seem": {"_count": 1}, "see": {"_count": 1}, "still": {"_count": 1}}, "but": {"_count": 8, "that": {"_count": 2}, "I": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}, "what": {"_count": 1}, "ever": {"_count": 1}, "when": {"_count": 1}}, "Wood": {"_count": 1, "broke": {"_count": 1}}, "beyond": {"_count": 1, "Ordinary": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "sorry": {"_count": 1, "Harry": {"_count": 1}}, "people": {"_count": 1, "can": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "leave": {"_count": 2, "it": {"_count": 1}, "prints": {"_count": 1}}, "highly": {"_count": 1, "exciting": {"_count": 1}}, "served": {"_count": 1, "if": {"_count": 1}}, "dead": {"_count": 1, "she": {"_count": 1}}, "meet": {"_count": 3, "again": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}}, "kept": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 8, "the": {"_count": 2}, "Percy": {"_count": 1}, "your": {"_count": 2}, "this": {"_count": 1}, "these": {"_count": 1}, "Ginny": {"_count": 1}}, "fed": {"_count": 2, "and": {"_count": 1}, "The": {"_count": 1}}, "away": {"_count": 4, "from": {"_count": 4}}, "very": {"_count": 8, "well": {"_count": 8}}, "throw": {"_count": 1, "in": {"_count": 1}}, "coordinated": {"_count": 1, "that": {"_count": 1}}, "informed": {"_count": 3, "about": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "soon": {"_count": 3, "see": {"_count": 1}, "know": {"_count": 1}, "find": {"_count": 1}}, "there": {"_count": 3, "certainly": {"_count": 1}, "have": {"_count": 1}, "was": {"_count": 1}}, "after": {"_count": 2, "dinner": {"_count": 1}, "that": {"_count": 1}}, "Dad": {"_count": 1, "collects": {"_count": 1}}, "known": {"_count": 5, "Bold": {"_count": 1}, "for": {"_count": 1}, "a": {"_count": 1}, "Aurors": {"_count": 1}, "": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "unless": {"_count": 2, "you": {"_count": 2}}, "at": {"_count": 5, "least": {"_count": 2}, "all": {"_count": 1}, "home": {"_count": 1}, "the": {"_count": 1}}, "stuff": {"_count": 1, "it": {"_count": 1}}, "theyve": {"_count": 1, "done": {"_count": 1}}, "hidden": {"_count": 3, "": {"_count": 2}, "he": {"_count": 1}}, "up": {"_count": 3, "to": {"_count": 2}, "said": {"_count": 1}}, "yeh": {"_count": 4, "get": {"_count": 1}, "know": {"_count": 1}, "couldn": {"_count": 1}, "wouldn": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 6, "said": {"_count": 1}, "as": {"_count": 1}, "Harrys": {"_count": 1}, "then": {"_count": 1}, "happy": {"_count": 1}, "like": {"_count": 1}}, "perhaps": {"_count": 1, "Malfoy": {"_count": 1}}, "provided": {"_count": 1, "with": {"_count": 1}}, "jus": {"_count": 2, "settle": {"_count": 1}, "have": {"_count": 1}}, "cared": {"_count": 1, "for": {"_count": 1}}, "without": {"_count": 1, "you": {"_count": 1}}, "Percy": {"_count": 1, "wouldnt": {"_count": 1}}, "whom": {"_count": 1, "hed": {"_count": 1}}, "except": {"_count": 1, "Neville": {"_count": 1}}, "spotted": {"_count": 1, "she": {"_count": 1}}, "earned": {"_count": 1, "quiet": {"_count": 1}}, "thats": {"_count": 6, "his": {"_count": 1}, "all": {"_count": 1}, "better": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 1}, "your": {"_count": 1}}, "like": {"_count": 1, "I": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "covered": {"_count": 1, "before": {"_count": 1}}, "outside": {"_count": 3, "the": {"_count": 3}}, "wishers": {"_count": 2, "must": {"_count": 1}, "": {"_count": 1}}, "lets": {"_count": 1, "just": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "Karkaroff": {"_count": 2, "if": {"_count": 1}, "Crouch": {"_count": 1}}, "or": {"_count": 2, "badly": {"_count": 1}, "not": {"_count": 1}}, "Harry": {"_count": 6, "these": {"_count": 1}, "here": {"_count": 1}, "thought": {"_count": 1}, "": {"_count": 1}, "pressed": {"_count": 1}, "and": {"_count": 1}}, "trained": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "placed": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "Yours": {"_count": 1, "sincerely": {"_count": 1}}, "clear": {"_count": 2, "of": {"_count": 1}, "out": {"_count": 1}}, "shut": {"_count": 1, "of": {"_count": 1}}, "your": {"_count": 3, "name": {"_count": 1}, "father": {"_count": 1}, "safetys": {"_count": 1}}, "theyll": {"_count": 2, "be": {"_count": 1}, "understand": {"_count": 1}}, "YouKnowWho": {"_count": 1, "will": {"_count": 1}}, "practiced": {"_count": 1, "at": {"_count": 1}}, "induct": {"_count": 1, "him": {"_count": 1}}, "tackle": {"_count": 1, "those": {"_count": 1}}, "my": {"_count": 1, "mothers": {"_count": 1}}, "we": {"_count": 5, "need": {"_count": 2}, "are": {"_count": 1}, "weren": {"_count": 1}, "thought": {"_count": 1}}, "need": {"_count": 5, "another": {"_count": 1}, "lookouts": {"_count": 1}, "to": {"_count": 3}}, "snapped": {"_count": 1, "Fudge": {"_count": 1}}, "connected": {"_count": 1, "Lucius": {"_count": 1}}, "even": {"_count": 2, "though": {"_count": 1}, "if": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "because": {"_count": 1, "you": {"_count": 1}}, "crumble": {"_count": 1, "from": {"_count": 1}}, "try": {"_count": 2, "that": {"_count": 1}, "to": {"_count": 1}}, "okay": {"_count": 1, "Ill": {"_count": 1}}, "considering": {"_count": 1, "they": {"_count": 1}}, "use": {"_count": 1, "spells": {"_count": 1}}, "nothing": {"_count": 2, "to": {"_count": 1}, "at": {"_count": 1}}, "took": {"_count": 1, "matters": {"_count": 1}}, "theyre": {"_count": 2, "obviously": {"_count": 1}, "called": {"_count": 1}}, "off": {"_count": 1, "you": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "choose": {"_count": 1, "to": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "now": {"_count": 3, "sir": {"_count": 1}, "youre": {"_count": 1}, "would": {"_count": 1}}, "whereas": {"_count": 1, "Michael": {"_count": 1}}, "Ive": {"_count": 2, "bin": {"_count": 1}, "never": {"_count": 1}}, "a": {"_count": 3, "nightmare": {"_count": 1}, "bit": {"_count": 1}, "heated": {"_count": 1}}, "then": {"_count": 12, "Potter": {"_count": 1}, "Arry": {"_count": 1}, "said": {"_count": 3}, "Harry": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "lets": {"_count": 1}, "youd": {"_count": 1}, "Listen": {"_count": 1}, "together": {"_count": 1}}, "her": {"_count": 1, "cage": {"_count": 1}}, "indeed": {"_count": 1, "thank": {"_count": 1}}, "respected": {"_count": 1, "within": {"_count": 1}}, "Alice": {"_count": 1, "dear": {"_count": 1}}, "Neville": {"_count": 1, "take": {"_count": 1}}, "an": {"_count": 1, "unusual": {"_count": 1}}, "This": {"_count": 1, "woman": {"_count": 1}}, "why": {"_count": 1, "they": {"_count": 1}}, "Potter": {"_count": 5, "said": {"_count": 2}, "I": {"_count": 1}, "you": {"_count": 1}, "here": {"_count": 1}}, "Miss": {"_count": 2, "Edgecombe": {"_count": 1}, "Granger": {"_count": 1}}, "everybody": {"_count": 1, "youre": {"_count": 1}}, "set": {"_count": 1, "it": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "alone": {"_count": 3, "he": {"_count": 1}, "": {"_count": 2}}, "wasn": {"_count": 1, "": {"_count": 1}}, "help": {"_count": 2, "you": {"_count": 2}}, "thas": {"_count": 2, "what": {"_count": 1}, "Dumbledore": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "Levitation": {"_count": 1}}, "enough": {"_count": 3, "Harry": {"_count": 1}, "well": {"_count": 1}, "without": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "sneak": {"_count": 1, "into": {"_count": 1}}, "Mr": {"_count": 2, "Potter": {"_count": 2}}, "blustered": {"_count": 1, "Fudge": {"_count": 1}}, "Dawlish": {"_count": 1, "": {"_count": 1}}, "nourished": {"_count": 1, "as": {"_count": 1}}, "being": {"_count": 1, "": {"_count": 1}}, "hear": {"_count": 1, "about": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "matched": {"_count": 1, "and": {"_count": 1}}, "frankly": {"_count": 1, "Im": {"_count": 1}}, "lose": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "thank": {"_count": 2, "you": {"_count": 2}}, "jump": {"_count": 1, "": {"_count": 1}}, "sneered": {"_count": 1, "Snape": {"_count": 1}}, "wasnt": {"_count": 1, "that": {"_count": 1}}, "worth": {"_count": 2, "memorizing": {"_count": 1}, "the": {"_count": 1}}, "You": {"_count": 1, "did": {"_count": 1}}, "blast": {"_count": 1, "it": {"_count": 1}}, "gotta": {"_count": 1, "scrape": {"_count": 1}}, "thoughtout": {"_count": 1, "at": {"_count": 1}}, "Tom": {"_count": 1, "said": {"_count": 1}}, "Amy": {"_count": 1, "Benson": {"_count": 1}}, "developed": {"_count": 1, "for": {"_count": 1}}, "flatten": {"_count": 1, "Slytherin": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "forget": {"_count": 1, "any": {"_count": 1}}, "passing": {"_count": 1, "over": {"_count": 1}}, "naturally": {"_count": 2, "it": {"_count": 1}, "Rosmerta": {"_count": 1}}, "almost": {"_count": 1, "a": {"_count": 1}}, "arguin": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "resigned": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "ghosts": {"_count": 1, "are": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "something": {"_count": 1, "of": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "carry": {"_count": 1, "on": {"_count": 1}}, "remember": {"_count": 1, "my": {"_count": 1}}, "since": {"_count": 1, "": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "lucky": {"_count": 1, "weve": {"_count": 1}}, "Kreacher": {"_count": 1, "said": {"_count": 1}}, "march": {"_count": 1, "out": {"_count": 1}}, "Splinched": {"_count": 1, "myself": {"_count": 1}}, "Rons": {"_count": 1, "ears": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "move": {"_count": 1, "them": {"_count": 1}}, "than": {"_count": 1, "another": {"_count": 1}}, "let": {"_count": 1, "you": {"_count": 1}}, "wait": {"_count": 1, "till": {"_count": 1}}, "kidnapping": {"_count": 1, "kids": {"_count": 1}}, "foods": {"_count": 1, "one": {"_count": 1}}, "wont": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 1, "they": {"_count": 1}}, "divide": {"_count": 1, "up": {"_count": 1}}, "aimed": {"_count": 1, "jinx": {"_count": 1}}, "disinherit": {"_count": 1, "you": {"_count": 1}}}, "asleep": {"_count": 107, "quickly": {"_count": 1, "but": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 2, "we": {"_count": 1}, "Dumbledores": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 26}, "?": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "night": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "with": {"_count": 3, "her": {"_count": 1}, "one": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 10, "its": {"_count": 1}, "front": {"_count": 1}, "the": {"_count": 3}, "her": {"_count": 2}, "my": {"_count": 1}, "bed": {"_count": 1}, "a": {"_count": 1}}, "almost": {"_count": 4, "at": {"_count": 2}, "as": {"_count": 1}, "immediately": {"_count": 1}}, "again": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "Neville": {"_count": 1, "wasnt": {"_count": 1}}, "but": {"_count": 2, "jerked": {"_count": 1}, "dreaming": {"_count": 1}}, "pull": {"_count": 1, "out": {"_count": 1}}, "then": {"_count": 1, "got": {"_count": 1}}, "he": {"_count": 2, "breathed": {"_count": 1}, "hadnt": {"_count": 1}}, "Harry": {"_count": 1, "got": {"_count": 1}}, "heads": {"_count": 1, "under": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "and": {"_count": 3, "I": {"_count": 1}, "didnt": {"_count": 1}, "then": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "their": {"_count": 2, "dreams": {"_count": 1}, "chests": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "when": {"_count": 4, "I": {"_count": 2}, "Harry": {"_count": 1}, "Lavender": {"_count": 1}}, "though": {"_count": 1, "here": {"_count": 1}}, "thin": {"_count": 1, "and": {"_count": 1}}, "very": {"_count": 1, "long": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "the": {"_count": 1, "evening": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "jus": {"_count": 1, "where": {"_count": 1}}, "not": {"_count": 1, "watching": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "within": {"_count": 1, "minutes": {"_count": 1}}, "for": {"_count": 1, "instance": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "contemplating": {"_count": 1, "hideous": {"_count": 1}}, "to": {"_count": 1, "hear": {"_count": 1}}, "helpless": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "broken": {"_count": 1}}, "snoring": {"_count": 1, "deeply": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "sneaking": {"_count": 1, "off": {"_count": 1}}, "holding": {"_count": 1, "hands": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "slumped": {"_count": 1, "at": {"_count": 1}}, "curled": {"_count": 1, "up": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}}, "quickly": {"_count": 424, "but": {"_count": 6, "Mr": {"_count": 1}, "er": {"_count": 1}, "Colin": {"_count": 1}, "even": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}}, "And": {"_count": 2, "well": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 133, ".": {"_count": 124}, "!": {"_count": 7}, "?": {"_count": 2}}, "found": {"_count": 3, "the": {"_count": 1}, "out": {"_count": 1}, "what": {"_count": 1}}, "around": {"_count": 5, "to": {"_count": 1}, "and": {"_count": 1}, "too": {"_count": 1}, "Mr": {"_count": 1}, "at": {"_count": 1}}, "and": {"_count": 30, "dressed": {"_count": 1}, "following": {"_count": 1}, "pressed": {"_count": 1}, "Harry": {"_count": 2}, "looked": {"_count": 1}, "bellowed": {"_count": 1}, "revive": {"_count": 1}, "quietly": {"_count": 3}, "were": {"_count": 1}, "untied": {"_count": 1}, "felt": {"_count": 1}, "tell": {"_count": 1}, "the": {"_count": 3}, "bounded": {"_count": 1}, "blushed": {"_count": 1}, "stopped": {"_count": 1}, "memorize": {"_count": 1}, "they": {"_count": 1}, "unfolded": {"_count": 1}, "safely": {"_count": 1}, "passing": {"_count": 1}, "attempting": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "calmly": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 2, "they": {"_count": 1}, "that": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "you": {"_count": 1, "know": {"_count": 1}}, "looked": {"_count": 2, "down": {"_count": 1}, "away": {"_count": 1}}, "as": {"_count": 27, "it": {"_count": 3}, "possible": {"_count": 9}, "they": {"_count": 4}, "Harry": {"_count": 1}, "he": {"_count": 4}, "you": {"_count": 3}, "she": {"_count": 1}, "though": {"_count": 1}, "the": {"_count": 1}}, "dropped": {"_count": 1, "the": {"_count": 1}}, "But": {"_count": 2, "people": {"_count": 1}, "Dumbledores": {"_count": 1}}, "getting": {"_count": 1, "over": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 2, "on": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 5, "Harrys": {"_count": 1}, "the": {"_count": 3}, "this": {"_count": 1}}, "to": {"_count": 20, "hide": {"_count": 2}, "see": {"_count": 1}, "avoid": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 2}, "stare": {"_count": 1}, "catch": {"_count": 1}, "him": {"_count": 1}, "make": {"_count": 1}, "Ron": {"_count": 1}, "linger": {"_count": 1}, "prepare": {"_count": 1}, "join": {"_count": 1}, "help": {"_count": 1}, "check": {"_count": 1}, "her": {"_count": 1}}, "than": {"_count": 1, "before": {"_count": 1}}, "behind": {"_count": 5, "them": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 2}}, "enough": {"_count": 4, "": {"_count": 4}}, "looking": {"_count": 8, "at": {"_count": 3}, "hopefully": {"_count": 1}, "frightened": {"_count": 1}, "down": {"_count": 1}, "positively": {"_count": 1}, "much": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "because": {"_count": 3, "it": {"_count": 1}, "thinking": {"_count": 1}, "he": {"_count": 1}}, "Ill": {"_count": 2, "help": {"_count": 1}, "come": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "busied": {"_count": 1, "himself": {"_count": 1}}, "No": {"_count": 1, "offense": {"_count": 1}}, "at": {"_count": 13, "the": {"_count": 4}, "Dumbledore": {"_count": 1}, "Professor": {"_count": 1}, "each": {"_count": 1}, "Harry": {"_count": 1}, "Lupin": {"_count": 1}, "them": {"_count": 1}, "Fudge": {"_count": 1}, "Snape": {"_count": 1}, "Voldemort": {"_count": 1}}, "for": {"_count": 2, "Harrys": {"_count": 1}, "Ron": {"_count": 1}}, "They": {"_count": 1, "dropped": {"_count": 1}}, "or": {"_count": 1, "look": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "picked": {"_count": 1, "it": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 2, "writing": {"_count": 1}, "worst": {"_count": 1}}, "headed": {"_count": 1, "straight": {"_count": 1}}, "stifled": {"_count": 3, "": {"_count": 1}, "sob": {"_count": 1}, "sounds": {"_count": 1}}, "now": {"_count": 4, "there": {"_count": 1}, "": {"_count": 1}, "red": {"_count": 1}, "taking": {"_count": 1}}, "picking": {"_count": 1, "it": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 3, "swear": {"_count": 1}, "didnt": {"_count": 1}, "may": {"_count": 1}}, "flattening": {"_count": 1, "his": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "Ive": {"_count": 1, "already": {"_count": 1}}, "still": {"_count": 1, "that": {"_count": 1}}, "he": {"_count": 8, "knocked": {"_count": 1}, "knew": {"_count": 2}, "soon": {"_count": 1}, "says": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "pretended": {"_count": 1, "to": {"_count": 1}}, "He": {"_count": 1, "turned": {"_count": 1}}, "cast": {"_count": 1, "around": {"_count": 1}}, "took": {"_count": 1, "out": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "hell": {"_count": 1, "rise": {"_count": 1}}, "forcing": {"_count": 1, "his": {"_count": 1}}, "one": {"_count": 1, "swallow": {"_count": 1}}, "pulled": {"_count": 2, "out": {"_count": 1}, "down": {"_count": 1}}, "hid": {"_count": 1, "in": {"_count": 1}}, "wands": {"_count": 1, "out": {"_count": 1}}, "back": {"_count": 3, "out": {"_count": 1}, "up": {"_count": 1}, "at": {"_count": 1}}, "hurrying": {"_count": 1, "over": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "pooled": {"_count": 1, "all": {"_count": 1}}, "focused": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 2, "didnt": {"_count": 1}, "could": {"_count": 1}}, "seizing": {"_count": 2, "Rons": {"_count": 1}, "the": {"_count": 1}}, "Ou": {"_count": 1, "est": {"_count": 1}}, "beckoning": {"_count": 1, "her": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 1}, "Erm": {"_count": 1}, "Snape": {"_count": 1}}, "withdrew": {"_count": 1, "her": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "without": {"_count": 1, "looking": {"_count": 1}}, "seeing": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "next": {"_count": 2, "to": {"_count": 1}, "day": {"_count": 1}}, "in": {"_count": 3, "case": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}}, "Theyre": {"_count": 1, "very": {"_count": 1}}, "became": {"_count": 1, "irritated": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "slapping": {"_count": 1, "his": {"_count": 1}}, "however": {"_count": 1, "and": {"_count": 1}}, "your": {"_count": 1, "mind": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "if": {"_count": 1, "that": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 2}, "not": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "that": {"_count": 4, "Harry": {"_count": 2}, "had": {"_count": 1}, "he": {"_count": 1}}, "wiping": {"_count": 1, "her": {"_count": 1}}, "they": {"_count": 1, "couldnt": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "patches": {"_count": 1, "of": {"_count": 1}}, "pushing": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "saw": {"_count": 1, "Cho": {"_count": 1}}, "Well": {"_count": 1, "tell": {"_count": 1}}, "remembering": {"_count": 1, "Umbridges": {"_count": 1}}, "passing": {"_count": 1, "over": {"_count": 1}}, "You": {"_count": 1, "dont": {"_count": 1}}, "The": {"_count": 1, "Quidditch": {"_count": 1}}, "keen": {"_count": 1, "to": {"_count": 1}}, "intervening": {"_count": 1, "before": {"_count": 1}}, "dont": {"_count": 1, "worry": {"_count": 1}}, "before": {"_count": 4, "anyone": {"_count": 1}, "Hermione": {"_count": 3}}, "mending": {"_count": 1, "Rons": {"_count": 1}}, "Im": {"_count": 1, "with": {"_count": 1}}, "thrust": {"_count": 1, "his": {"_count": 1}}, "Ginny": {"_count": 1, "Weasley": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "too": {"_count": 1, "she": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "reading": {"_count": 1, "its": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "recount": {"_count": 1, "how": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "Lights": {"_count": 1, "popped": {"_count": 1}}, "envisaging": {"_count": 1, "the": {"_count": 1}}, "faced": {"_count": 1, "the": {"_count": 1}}, "forestalling": {"_count": 1, "the": {"_count": 1}}, "sure": {"_count": 1, "that": {"_count": 1}}, "its": {"_count": 1, "how": {"_count": 1}}, "would": {"_count": 1, "they": {"_count": 1}}, "Lily": {"_count": 1, "too": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}}, "lay": {"_count": 240, "awake": {"_count": 9, "turning": {"_count": 1}, "much": {"_count": 1}, "for": {"_count": 5}, "staring": {"_count": 1}, "in": {"_count": 1}}, "silent": {"_count": 1, "and": {"_count": 1}}, "smoothly": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 14, "his": {"_count": 2}, "gleaming": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 3}, "pieces": {"_count": 1}, "teaching": {"_count": 1}, "bed": {"_count": 1}, "friends": {"_count": 1}}, "on": {"_count": 27, "the": {"_count": 18}, "a": {"_count": 1}, "his": {"_count": 4}, "her": {"_count": 1}, "either": {"_count": 1}, "all": {"_count": 1}, "its": {"_count": 1}}, "flat": {"_count": 7, "on": {"_count": 6}, "upon": {"_count": 1}}, "and": {"_count": 8, "watched": {"_count": 1}, "when": {"_count": 1}, "wrote": {"_count": 1}, "returned": {"_count": 1}, "it": {"_count": 1}, "listened": {"_count": 1}, "was": {"_count": 1}, "crouched": {"_count": 1}}, "forgotten": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "facedown": {"_count": 5, "on": {"_count": 3}, "gasping": {"_count": 1}, "listening": {"_count": 1}}, "underneath": {"_count": 1, "the": {"_count": 1}}, "quite": {"_count": 5, "still": {"_count": 4}, "flat": {"_count": 1}}, "there": {"_count": 14, "lost": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 1}, "talking": {"_count": 1}, "with": {"_count": 1}, "crumpled": {"_count": 1}, "in": {"_count": 2}, "unconscious": {"_count": 1}, "beneath": {"_count": 1}, "like": {"_count": 1}, "looking": {"_count": 1}, "staring": {"_count": 1}, "he": {"_count": 1}}, "back": {"_count": 8, "down": {"_count": 4}, "and": {"_count": 1}, "on": {"_count": 3}}, "starving": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 7, "jumble": {"_count": 1}, "small": {"_count": 1}, "wand": {"_count": 1}, "purple": {"_count": 1}, "Quafflesized": {"_count": 1}, "heavy": {"_count": 1}, "false": {"_count": 1}}, "upon": {"_count": 5, "the": {"_count": 3}, "ice": {"_count": 1}, "all": {"_count": 1}}, "smoky": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "across": {"_count": 2, "its": {"_count": 1}, "Freds": {"_count": 1}}, "ripped": {"_count": 1, "on": {"_count": 1}}, "utterly": {"_count": 1, "still": {"_count": 1}}, "down": {"_count": 8, "still": {"_count": 1}, "eyes": {"_count": 1}, "on": {"_count": 2}, "in": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}, "your": {"_count": 1}}, "clenched": {"_count": 1, "on": {"_count": 1}}, "motionless": {"_count": 8, "at": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 3}, "facedown": {"_count": 1}, "and": {"_count": 1}}, "its": {"_count": 1, "beautiful": {"_count": 1}}, "restless": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 3, "magical": {"_count": 1}, "small": {"_count": 1}, "Triwizard": {"_count": 1}}, "listening": {"_count": 3, "to": {"_count": 2}, "with": {"_count": 1}}, "quiet": {"_count": 1, "in": {"_count": 1}}, "curled": {"_count": 6, "in": {"_count": 2}, "up": {"_count": 1}, "on": {"_count": 2}, "uncomfortably": {"_count": 1}}, "still": {"_count": 1, "pretending": {"_count": 1}}, "beyond": {"_count": 2, "": {"_count": 2}}, "Crookshanks": {"_count": 1, "purring": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "thick": {"_count": 1, "upon": {"_count": 1}}, "open": {"_count": 5, "Harry": {"_count": 1}, "revealing": {"_count": 1}, "on": {"_count": 2}, "and": {"_count": 1}}, "scattered": {"_count": 3, "around": {"_count": 1}, "": {"_count": 1}, "amongst": {"_count": 1}}, "staring": {"_count": 2, "up": {"_count": 2}}, "looking": {"_count": 2, "up": {"_count": 1}, "green": {"_count": 1}}, "very": {"_count": 1, "still": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "ahead": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "hands": {"_count": 3, "on": {"_count": 2}, "upon": {"_count": 1}}, "twitching": {"_count": 2, "and": {"_count": 1}, "before": {"_count": 1}}, "aside": {"_count": 1, "your": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "parched": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 1, "bony": {"_count": 1}}, "among": {"_count": 1, "Aunt": {"_count": 1}}, "outside": {"_count": 1, "several": {"_count": 1}}, "crammed": {"_count": 1, "in": {"_count": 1}}, "exhausted": {"_count": 1, "in": {"_count": 1}}, "immobile": {"_count": 1, "as": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}, "abandoned": {"_count": 2, "several": {"_count": 1}, "in": {"_count": 1}}, "off": {"_count": 4, "the": {"_count": 1}, "each": {"_count": 1}, "Snape": {"_count": 1}, "her": {"_count": 1}}, "panting": {"_count": 2, "on": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "sprawled": {"_count": 1, "as": {"_count": 1}}, "sobbing": {"_count": 1, "at": {"_count": 1}}, "higgledypiggledy": {"_count": 1, "among": {"_count": 1}}, "splintered": {"_count": 1, "at": {"_count": 1}}, "deflated": {"_count": 1, "feathers": {"_count": 1}}, "like": {"_count": 1, "powder": {"_count": 1}}, "negligently": {"_count": 1, "upon": {"_count": 1}}, "between": {"_count": 2, "them": {"_count": 1}, "bushes": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}, "halfsubmerged": {"_count": 1, "in": {"_count": 1}}, "wandless": {"_count": 1, "and": {"_count": 1}}, "Higher": {"_count": 1, "and": {"_count": 1}}, "unread": {"_count": 1, "on": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "cold": {"_count": 1}}, "deep": {"_count": 1, "and": {"_count": 1}}, "side": {"_count": 1, "by": {"_count": 1}}, "beneath": {"_count": 1, "snow": {"_count": 1}}, "bones": {"_count": 1, "now": {"_count": 1}}, "yards": {"_count": 1, "away": {"_count": 1}}, "winesodden": {"_count": 1, "upon": {"_count": 1}}, "beside": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "clutched": {"_count": 1, "beneath": {"_count": 1}}, "safe": {"_count": 1, "beneath": {"_count": 1}}, "draped": {"_count": 1, "over": {"_count": 1}}, "dead": {"_count": 2, "that": {"_count": 1}, "upon": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "existed": {"_count": 1, "too": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "shuddering": {"_count": 1, "under": {"_count": 1}}, "whimpering": {"_count": 1, "leading": {"_count": 1}}, "quiescent": {"_count": 1, "his": {"_count": 1}}, "recovering": {"_count": 1, "in": {"_count": 1}}}, "awake": {"_count": 67, "turning": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 4, "it": {"_count": 1}, "worried": {"_count": 1}, "listening": {"_count": 2}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 14}, "?": {"_count": 1}, "!": {"_count": 1}}, "much": {"_count": 1, "later": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 1, "quickly": {"_count": 1}}, "packed": {"_count": 1, "into": {"_count": 1}}, "several": {"_count": 1, "hours": {"_count": 1}}, "he": {"_count": 1, "couldnt": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "for": {"_count": 6, "hours": {"_count": 2}, "what": {"_count": 2}, "a": {"_count": 2}}, "by": {"_count": 2, "now": {"_count": 1}, "Mrs": {"_count": 1}}, "to": {"_count": 3, "ignore": {"_count": 1}, "dwell": {"_count": 1}, "find": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "bed": {"_count": 1}, "his": {"_count": 1}}, "pressed": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "might": {"_count": 1}}, "too": {"_count": 1, "Myrtle": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "swooshing": {"_count": 1, "past": {"_count": 1}}, "but": {"_count": 3, "shook": {"_count": 1}, "none": {"_count": 1}, "they": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "all": {"_count": 2, "night": {"_count": 1}, "of": {"_count": 1}}, "his": {"_count": 1, "penetrating": {"_count": 1}}, "or": {"_count": 1, "asleep": {"_count": 1}}, "very": {"_count": 1, "soon": {"_count": 1}}, "the": {"_count": 1, "image": {"_count": 1}}, "inside": {"_count": 1, "you": {"_count": 1}}, "raising": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "fellow": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "left": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "turning": {"_count": 225, "it": {"_count": 4, "all": {"_count": 1}, "so": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 3}, "onto": {"_count": 1}}, "on": {"_count": 6, "any": {"_count": 1}, "the": {"_count": 3}, "Professor": {"_count": 1}, "her": {"_count": 1}}, "his": {"_count": 18, "back": {"_count": 4}, "blotched": {"_count": 1}, "tiny": {"_count": 1}, "popping": {"_count": 1}, "wand": {"_count": 1}, "sightless": {"_count": 1}, "normal": {"_count": 1}, "quill": {"_count": 1}, "dragon": {"_count": 1}, "head": {"_count": 4}, "bowler": {"_count": 1}, "attention": {"_count": 1}}, "to": {"_count": 43, "stare": {"_count": 2}, "his": {"_count": 2}, "watch": {"_count": 1}, "the": {"_count": 3}, "Black": {"_count": 1}, "Lupin": {"_count": 3}, "face": {"_count": 5}, "look": {"_count": 5}, "go": {"_count": 2}, "Professor": {"_count": 1}, "him": {"_count": 2}, "Snape": {"_count": 1}, "Luna": {"_count": 2}, "beam": {"_count": 1}, "Sirius": {"_count": 1}, "walk": {"_count": 1}, "see": {"_count": 1}, "Harry": {"_count": 3}, "page": {"_count": 1}, "Ron": {"_count": 1}, "it": {"_count": 1}, "Hermione": {"_count": 1}, "glare": {"_count": 1}, "leave": {"_count": 1}}, "teacups": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 11, "page": {"_count": 1}, "pages": {"_count": 4}, "taps": {"_count": 1}, "color": {"_count": 1}, "corner": {"_count": 1}, "fragile": {"_count": 1}, "blackthorn": {"_count": 1}, "Snitch": {"_count": 1}}, "red": {"_count": 3, "": {"_count": 3}}, "something": {"_count": 1, "into": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "of": {"_count": 1}}, "its": {"_count": 1, "ugly": {"_count": 1}}, "a": {"_count": 11, "bit": {"_count": 1}, "beetle": {"_count": 1}, "teapot": {"_count": 1}, "hair": {"_count": 1}, "glazed": {"_count": 1}, "corner": {"_count": 1}, "deaf": {"_count": 1}, "page": {"_count": 3}, "light": {"_count": 1}}, "into": {"_count": 13, "a": {"_count": 5}, "slippers": {"_count": 1}, "the": {"_count": 2}, "Mr": {"_count": 1}, "rubber": {"_count": 1}, "Gryffindor": {"_count": 1}, "Dumbledore": {"_count": 1}, "some": {"_count": 1}}, "misty": {"_count": 1, "eyes": {"_count": 1}}, "your": {"_count": 1, "beak": {"_count": 1}}, "around": {"_count": 4, "": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 2}}, "back": {"_count": 20, "for": {"_count": 1}, "into": {"_count": 3}, "to": {"_count": 16}}, "her": {"_count": 5, "into": {"_count": 1}, "head": {"_count": 2}, "back": {"_count": 2}}, "out": {"_count": 5, "Dark": {"_count": 1}, "to": {"_count": 4}}, "slowly": {"_count": 1, "back": {"_count": 1}}, "up": {"_count": 9, "at": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}, "again": {"_count": 1}, "a": {"_count": 2}, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "Yeah": {"_count": 1}}, "away": {"_count": 11, "": {"_count": 3}, "from": {"_count": 4}, "again": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "quickly": {"_count": 1}}, "and": {"_count": 3, "following": {"_count": 1}, "setting": {"_count": 1}, "glittering": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}, "quickly": {"_count": 3, "eager": {"_count": 1}, "saw": {"_count": 1}, "from": {"_count": 1}}, "paler": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "saw": {"_count": 1}}, "redder": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "right": {"_count": 1, "he": {"_count": 1}}, "round": {"_count": 1, "her": {"_count": 1}}, "sharply": {"_count": 1, "at": {"_count": 1}}, "haughtily": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 2, "found": {"_count": 1}, "saw": {"_count": 1}}, "at": {"_count": 2, "last": {"_count": 1}, "the": {"_count": 1}}, "immediately": {"_count": 1, "to": {"_count": 1}}, "orange": {"_count": 1, "swelled": {"_count": 1}}, "steadily": {"_count": 1, "more": {"_count": 1}}, "from": {"_count": 1, "Hermiones": {"_count": 1}}, "toward": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "idly": {"_count": 1, "on": {"_count": 1}}, "geranium": {"_count": 1, "pink": {"_count": 1}}, "purple": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "maroon": {"_count": 1, "": {"_count": 1}}, "blue": {"_count": 2, "": {"_count": 2}}, "cold": {"_count": 1, "at": {"_count": 1}}, "again": {"_count": 1, "to": {"_count": 1}}, "searching": {"_count": 1, "a": {"_count": 1}}, "point": {"_count": 1, "in": {"_count": 1}}, "radish": {"_count": 1, "colored": {"_count": 1}}, "hurriedly": {"_count": 1, "away": {"_count": 1}}, "ludicrously": {"_count": 1, "from": {"_count": 1}}, "cogs": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "cautiously": {"_count": 1, "on": {"_count": 1}}, "indigo": {"_count": 1, "and": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}}, "His": {"_count": 581, "last": {"_count": 2, "comforting": {"_count": 1}, "fleeting": {"_count": 1}}, "blue": {"_count": 3, "eyes": {"_count": 3}}, "aunt": {"_count": 7, "and": {"_count": 5}, "rapped": {"_count": 1}, "was": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "face": {"_count": 26, "fell": {"_count": 2}, "went": {"_count": 1}, "was": {"_count": 18}, "wasnt": {"_count": 2}, "wore": {"_count": 1}, "felt": {"_count": 1}, "merely": {"_count": 1}}, "heart": {"_count": 28, "hammered": {"_count": 1}, "sank": {"_count": 2}, "skipped": {"_count": 2}, "was": {"_count": 12}, "seemed": {"_count": 2}, "beating": {"_count": 1}, "gave": {"_count": 1}, "plummeted": {"_count": 1}, "shot": {"_count": 1}, "which": {"_count": 1}, "swelled": {"_count": 1}, "drummed": {"_count": 1}, "leapt": {"_count": 1}, "wasnt": {"_count": 1}}, "eyes": {"_count": 45, "fell": {"_count": 5}, "were": {"_count": 19}, "are": {"_count": 2}, "roved": {"_count": 1}, "had": {"_count": 5}, "flashed": {"_count": 1}, "filled": {"_count": 1}, "moved": {"_count": 1}, "flickered": {"_count": 1}, "gazed": {"_count": 1}, "lingered": {"_count": 3}, "rested": {"_count": 1}, "on": {"_count": 1}, "burned": {"_count": 1}, "narrowed": {"_count": 1}, "feasted": {"_count": 1}}, "name": {"_count": 3, "was": {"_count": 3}}, "names": {"_count": 4, "been": {"_count": 1}, "Scabbers": {"_count": 1}, "Remus": {"_count": 1}, "Horace": {"_count": 1}}, "school": {"_count": 3, "books": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "twin": {"_count": 1, "called": {"_count": 1}}, "whole": {"_count": 4, "head": {"_count": 1}, "body": {"_count": 2}, "face": {"_count": 1}}, "classroom": {"_count": 1, "smelled": {"_count": 1}}, "turban": {"_count": 1, "he": {"_count": 1}}, "broomstick": {"_count": 1, "was": {"_count": 1}}, "stomach": {"_count": 7, "twisted": {"_count": 1}, "lurched": {"_count": 1}, "had": {"_count": 1}, "churned": {"_count": 1}, "turned": {"_count": 1}, "was": {"_count": 1}, "gave": {"_count": 1}}, "lessons": {"_count": 1, "too": {"_count": 1}}, "broom": {"_count": 3, "gave": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "next": {"_count": 2, "present": {"_count": 1}, "few": {"_count": 1}}, "fathers": {"_count": 3, "": {"_count": 1}, "definitely": {"_count": 1}, "a": {"_count": 1}}, "panic": {"_count": 1, "fading": {"_count": 1}}, "mother": {"_count": 9, "and": {"_count": 2}, "was": {"_count": 2}, "we": {"_count": 1}, "died": {"_count": 1}, "left": {"_count": 1}, "tottered": {"_count": 1}, "or": {"_count": 1}}, "relief": {"_count": 1, "must": {"_count": 1}}, "legs": {"_count": 6, "sprang": {"_count": 1}, "hit": {"_count": 1}, "were": {"_count": 3}, "jammed": {"_count": 1}}, "exam": {"_count": 1, "results": {"_count": 1}}, "insides": {"_count": 9, "were": {"_count": 3}, "squirmed": {"_count": 1}, "had": {"_count": 1}, "seemed": {"_count": 1}, "clenched": {"_count": 1}, "crawled": {"_count": 1}, "already": {"_count": 1}}, "brain": {"_count": 6, "felt": {"_count": 1}, "seemed": {"_count": 3}, "whirling": {"_count": 1}, "itself": {"_count": 1}}, "boarhound": {"_count": 1, "Fang": {"_count": 1}}, "twinkling": {"_count": 1, "lightblue": {"_count": 1}}, "arm": {"_count": 3, "was": {"_count": 1}, "didnt": {"_count": 1}, "now": {"_count": 1}}, "hat": {"_count": 1, "had": {"_count": 1}}, "spell": {"_count": 3, "hit": {"_count": 1}, "lit": {"_count": 1}, "caused": {"_count": 1}}, "head": {"_count": 13, "was": {"_count": 7}, "drooped": {"_count": 1}, "had": {"_count": 1}, "felt": {"_count": 1}, "fell": {"_count": 1}, "began": {"_count": 1}, "and": {"_count": 1}}, "large": {"_count": 3, "hand": {"_count": 1}, "pointed": {"_count": 1}, "blond": {"_count": 1}}, "nose": {"_count": 3, "was": {"_count": 2}, "wasnt": {"_count": 1}}, "footsteps": {"_count": 3, "receded": {"_count": 1}, "echoed": {"_count": 2}}, "diary": {"_count": 1, "would": {"_count": 1}}, "books": {"_count": 1, "wand": {"_count": 1}}, "hair": {"_count": 7, "is": {"_count": 1}, "wasnt": {"_count": 1}, "was": {"_count": 4}, "flew": {"_count": 1}}, "hands": {"_count": 8, "trembling": {"_count": 1}, "were": {"_count": 5}, "shook": {"_count": 1}, "held": {"_count": 1}}, "cloak": {"_count": 1, "lay": {"_count": 1}}, "voice": {"_count": 31, "trailed": {"_count": 2}, "was": {"_count": 7}, "faded": {"_count": 1}, "sounded": {"_count": 3}, "broke": {"_count": 3}, "shook": {"_count": 3}, "which": {"_count": 1}, "trembled": {"_count": 1}, "echoed": {"_count": 2}, "faltered": {"_count": 1}, "tailed": {"_count": 3}, "had": {"_count": 1}, "quivered": {"_count": 1}, "cracked": {"_count": 1}, "might": {"_count": 1}}, "breathing": {"_count": 3, "slowing": {"_count": 1}, "harsh": {"_count": 1}, "seemed": {"_count": 1}}, "mouth": {"_count": 9, "was": {"_count": 7}, "had": {"_count": 1}, "now": {"_count": 1}}, "words": {"_count": 1, "were": {"_count": 1}}, "lip": {"_count": 1, "was": {"_count": 1}}, "office": {"_count": 2, "had": {"_count": 1}, "isnt": {"_count": 1}}, "long": {"_count": 5, "golden": {"_count": 1}, "silver": {"_count": 1}, "black": {"_count": 1}, "white": {"_count": 1}, "feet": {"_count": 1}}, "memorys": {"_count": 1, "gone": {"_count": 1}}, "ddiary": {"_count": 1, "": {"_count": 1}}, "own": {"_count": 6, "very": {"_count": 1}, "stinking": {"_count": 1}, "cauldron": {"_count": 1}, "face": {"_count": 1}, "silver": {"_count": 1}, "voice": {"_count": 1}}, "great": {"_count": 3, "eyes": {"_count": 1}, "hands": {"_count": 1}, "silver": {"_count": 1}}, "jetblack": {"_count": 1, "hair": {"_count": 1}}, "record": {"_count": 1, "wasnt": {"_count": 1}}, "wand": {"_count": 7, "flew": {"_count": 1}, "was": {"_count": 4}, "began": {"_count": 1}, "he": {"_count": 1}}, "potion": {"_count": 3, "which": {"_count": 1}, "had": {"_count": 1}, "sample": {"_count": 1}}, "first": {"_count": 2, "thought": {"_count": 1}, "choice": {"_count": 1}}, "twisted": {"_count": 1, "smile": {"_count": 1}}, "old": {"_count": 2, "robes": {"_count": 1}, "poster": {"_count": 1}}, "little": {"_count": 2, "ink": {"_count": 1}, "feet": {"_count": 1}}, "master": {"_count": 1, "had": {"_count": 1}}, "bes": {"_count": 1, "friends": {"_count": 1}}, "finest": {"_count": 1, "hour": {"_count": 1}}, "portrait": {"_count": 1, "had": {"_count": 1}}, "pale": {"_count": 3, "face": {"_count": 1}, "pointed": {"_count": 1}, "gooseberry": {"_count": 1}}, "hand": {"_count": 12, "moved": {"_count": 1}, "went": {"_count": 1}, "gripped": {"_count": 1}, "was": {"_count": 4}, "had": {"_count": 1}, "closed": {"_count": 1}, "shook": {"_count": 1}, "jumped": {"_count": 1}, "flew": {"_count": 1}}, "jaw": {"_count": 2, "had": {"_count": 1}, "dropped": {"_count": 1}}, "servant": {"_count": 1, "has": {"_count": 1}}, "normally": {"_count": 1, "ruddy": {"_count": 1}}, "teeth": {"_count": 1, "were": {"_count": 1}}, "yellow": {"_count": 1, "teeth": {"_count": 1}}, "thin": {"_count": 2, "chest": {"_count": 1}, "colorless": {"_count": 1}}, "nerve": {"_count": 1, "had": {"_count": 1}}, "front": {"_count": 1, "paw": {"_count": 1}}, "skin": {"_count": 3, "looked": {"_count": 1}, "was": {"_count": 1}, "appeared": {"_count": 1}}, "lot": {"_count": 1, "arent": {"_count": 1}}, "shoulders": {"_count": 1, "were": {"_count": 1}}, "Patronus": {"_count": 2, "flickered": {"_count": 1}, "is": {"_count": 1}}, "limbs": {"_count": 1, "felt": {"_count": 1}}, "walking": {"_count": 1, "stick": {"_count": 1}}, "powers": {"_count": 2, "gone": {"_count": 1}, "as": {"_count": 1}}, "life": {"_count": 1, "had": {"_count": 1}}, "uncles": {"_count": 1, "eyes": {"_count": 1}}, "dads": {"_count": 1, "got": {"_count": 1}}, "best": {"_count": 2, "suit": {"_count": 1}, "hope": {"_count": 1}}, "brother": {"_count": 1, "Otto": {"_count": 1}}, "feet": {"_count": 5, "left": {"_count": 1}, "slammed": {"_count": 1}, "had": {"_count": 1}, "hit": {"_count": 1}, "met": {"_count": 1}}, "chin": {"_count": 1, "was": {"_count": 1}}, "penfriend": {"_count": 1, "got": {"_count": 1}}, "shoes": {"_count": 1, "were": {"_count": 1}}, "revival": {"_count": 1, "seemed": {"_count": 1}}, "team": {"_count": 2, "members": {"_count": 1}, "was": {"_count": 1}}, "arms": {"_count": 2, "folded": {"_count": 1}, "and": {"_count": 1}}, "dinners": {"_count": 1, "going": {"_count": 1}}, "slave": {"_count": 1, "you": {"_count": 1}}, "small": {"_count": 2, "face": {"_count": 1}, "eyes": {"_count": 1}}, "normal": {"_count": 1, "eye": {"_count": 1}}, "light": {"_count": 2, "blue": {"_count": 1}, "gray": {"_count": 1}}, "preoccupation": {"_count": 1, "lasted": {"_count": 1}}, "and": {"_count": 2, "Rons": {"_count": 1}, "Chos": {"_count": 1}}, "toothbrush": {"_count": 1, "mustache": {"_count": 1}}, "surly": {"_count": 1, "face": {"_count": 1}}, "black": {"_count": 9, "eyes": {"_count": 6}, "hair": {"_count": 3}}, "close": {"_count": 1, "friend": {"_count": 1}}, "yell": {"_count": 1, "had": {"_count": 1}}, "immediate": {"_count": 3, "reaction": {"_count": 1}, "thought": {"_count": 2}}, "magical": {"_count": 3, "eye": {"_count": 3}}, "sodden": {"_count": 1, "robes": {"_count": 1}}, "neat": {"_count": 1, "hair": {"_count": 1}}, "strange": {"_count": 1, "appearance": {"_count": 1}}, "halfmoon": {"_count": 1, "glasses": {"_count": 1}}, "student": {"_count": 1, "has": {"_count": 1}}, "eyelids": {"_count": 1, "began": {"_count": 1}}, "scar": {"_count": 16, "was": {"_count": 9}, "had": {"_count": 2}, "began": {"_count": 1}, "gave": {"_count": 1}, "seared": {"_count": 2}, "burned": {"_count": 1}}, "father": {"_count": 4, "Frank": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "chosen": {"_count": 1, "path": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "filthy": {"_count": 2, "little": {"_count": 1}, "hands": {"_count": 1}}, "injured": {"_count": 2, "leg": {"_count": 1}, "hand": {"_count": 1}}, "sleeve": {"_count": 1, "was": {"_count": 1}}, "lopsided": {"_count": 1, "mouth": {"_count": 1}}, "wooden": {"_count": 2, "leg": {"_count": 2}}, "leg": {"_count": 1, "was": {"_count": 1}}, "hackles": {"_count": 1, "were": {"_count": 1}}, "mothers": {"_count": 1, "face": {"_count": 1}}, "expression": {"_count": 5, "was": {"_count": 4}, "unfathomable": {"_count": 1}}, "death": {"_count": 1, "has": {"_count": 1}}, "smirk": {"_count": 1, "widened": {"_count": 1}}, "jeans": {"_count": 1, "were": {"_count": 1}}, "mind": {"_count": 4, "was": {"_count": 3}, "grappled": {"_count": 1}}, "soul": {"_count": 1, "": {"_count": 1}}, "anger": {"_count": 1, "was": {"_count": 1}}, "owl": {"_count": 1, "Hedwig": {"_count": 1}}, "back": {"_count": 1, "ached": {"_count": 1}}, "room": {"_count": 1, "was": {"_count": 1}}, "lifes": {"_count": 1, "ambition": {"_count": 1}}, "comeback": {"_count": 1, "didnt": {"_count": 1}}, "badge": {"_count": 1, "said": {"_count": 1}}, "lovely": {"_count": 1, "shiny": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "pleasure": {"_count": 1, "in": {"_count": 1}}, "parents": {"_count": 4, "wove": {"_count": 1}, "": {"_count": 1}, "graves": {"_count": 1}, "had": {"_count": 1}}, "fourposter": {"_count": 1, "bed": {"_count": 1}}, "wide": {"_count": 1, "eyes": {"_count": 1}}, "gaze": {"_count": 2, "lingered": {"_count": 1}, "had": {"_count": 1}}, "temper": {"_count": 3, "which": {"_count": 1}, "always": {"_count": 1}, "would": {"_count": 1}}, "spirits": {"_count": 2, "sank": {"_count": 1}, "rose": {"_count": 1}}, "homework": {"_count": 1, "situation": {"_count": 1}}, "Strengthening": {"_count": 1, "Solution": {"_count": 1}}, "restless": {"_count": 1, "night": {"_count": 1}}, "fingertips": {"_count": 1, "were": {"_count": 1}}, "greatest": {"_count": 1, "weakness": {"_count": 1}}, "body": {"_count": 6, "felt": {"_count": 1}, "curved": {"_count": 1}, "and": {"_count": 1}, "appeared": {"_count": 1}, "keeps": {"_count": 1}, "decays": {"_count": 1}}, "forehead": {"_count": 1, "hurt": {"_count": 1}}, "gloom": {"_count": 1, "seeped": {"_count": 1}}, "morning": {"_count": 1, "Potions": {"_count": 1}}, "reflection": {"_count": 1, "grew": {"_count": 1}}, "priority": {"_count": 1, "did": {"_count": 1}}, "attempt": {"_count": 3, "is": {"_count": 3}}, "breath": {"_count": 4, "was": {"_count": 2}, "misted": {"_count": 1}, "came": {"_count": 1}}, "cold": {"_count": 1, "dark": {"_count": 1}}, "appearance": {"_count": 2, "was": {"_count": 2}}, "existence": {"_count": 1, "has": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "left": {"_count": 1, "hand": {"_count": 1}}, "godfathers": {"_count": 2, "dead": {"_count": 2}}, "godfather": {"_count": 1, "": {"_count": 1}}, "comprehension": {"_count": 1, "catching": {"_count": 1}}, "shiny": {"_count": 1, "bald": {"_count": 1}}, "Shield": {"_count": 1, "Charm": {"_count": 1}}, "annoyance": {"_count": 1, "with": {"_count": 1}}, "previous": {"_count": 1, "experiences": {"_count": 1}}, "seats": {"_count": 1, "been": {"_count": 1}}, "walk": {"_count": 1, "instantly": {"_count": 1}}, "sister": {"_count": 1, "didnt": {"_count": 1}}, "enormous": {"_count": 1, "boarhound": {"_count": 1}}, "cheek": {"_count": 1, "earned": {"_count": 1}}, "tone": {"_count": 3, "was": {"_count": 3}}, "shoulder": {"_count": 1, "aching": {"_count": 1}}, "mustache": {"_count": 1, "less": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 2, "hand": {"_count": 2}}, "round": {"_count": 1, "face": {"_count": 1}}, "single": {"_count": 1, "attempt": {"_count": 1}}, "greedy": {"_count": 1, "expression": {"_count": 1}}, "superiors": {"_count": 1, "had": {"_count": 1}}, "features": {"_count": 2, "were": {"_count": 1}, "recall": {"_count": 1}}, "feeling": {"_count": 1, "of": {"_count": 1}}, "pride": {"_count": 1, "his": {"_count": 1}}, "lightheartedness": {"_count": 1, "was": {"_count": 1}}, "thoughts": {"_count": 1, "were": {"_count": 1}}, "grip": {"_count": 1, "on": {"_count": 1}}, "jinx": {"_count": 1, "hit": {"_count": 1}}, "Hand": {"_count": 1, "of": {"_count": 1}}, "scars": {"_count": 1, "were": {"_count": 1}}, "animosity": {"_count": 1, "was": {"_count": 1}}, "red": {"_count": 1, "eyes": {"_count": 1}}, "Muggle": {"_count": 1, "clothing": {"_count": 1}}, "letters": {"_count": 1, "told": {"_count": 1}}, "uncle": {"_count": 1, "began": {"_count": 1}}, "missing": {"_count": 1, "tooth": {"_count": 1}}, "rucksack": {"_count": 1, "lay": {"_count": 1}}, "pugnacious": {"_count": 1, "tone": {"_count": 1}}, "cloud": {"_count": 1, "of": {"_count": 1}}, "companion": {"_count": 1, "unable": {"_count": 1}}, "toy": {"_count": 1, "broomstick": {"_count": 1}}, "hollow": {"_count": 1, "chest": {"_count": 1}}, "puppet": {"_count": 1, "Thicknesse": {"_count": 1}}, "chair": {"_count": 1, "toppled": {"_count": 1}}, "attention": {"_count": 1, "caught": {"_count": 1}}, "golden": {"_count": 1, "hair": {"_count": 1}}, "touch": {"_count": 1, "on": {"_count": 1}}, "white": {"_count": 1, "hand": {"_count": 1}}, "senses": {"_count": 1, "had": {"_count": 1}}, "friend": {"_count": 1, "Grindelwald": {"_count": 1}}, "impulse": {"_count": 1, "to": {"_count": 1}}, "fingers": {"_count": 2, "closed": {"_count": 1}, "moved": {"_count": 1}}, "good": {"_count": 1, "eye": {"_count": 1}}, "Cloak": {"_count": 1, "was": {"_count": 1}}, "gray": {"_count": 1, "eyes": {"_count": 1}}, "true": {"_count": 1, "surroundings": {"_count": 1}}, "rage": {"_count": 1, "was": {"_count": 1}}, "instinct": {"_count": 1, "was": {"_count": 1}}, "deeply": {"_count": 1, "scarred": {"_count": 1}}, "domed": {"_count": 1, "head": {"_count": 1}}, "lips": {"_count": 1, "moved": {"_count": 1}}, "glasses": {"_count": 2, "giving": {"_count": 1}, "flew": {"_count": 1}}, "dark": {"_count": 1, "eyes": {"_count": 1}}, "color": {"_count": 1, "rose": {"_count": 1}}, "fear": {"_count": 1, "infected": {"_count": 1}}, "plan": {"_count": 1, "to": {"_count": 1}}, "job": {"_count": 1, "was": {"_count": 1}}, "will": {"_count": 1, "to": {"_count": 1}}, "nerveless": {"_count": 1, "fingers": {"_count": 1}}, "massive": {"_count": 1, "body": {"_count": 1}}, "surroundings": {"_count": 1, "were": {"_count": 1}}, "cry": {"_count": 1, "was": {"_count": 1}}}, "comforting": {"_count": 11, "thought": {"_count": 1, "before": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "arm": {"_count": 1, "around": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "idea": {"_count": 1, "sleep": {"_count": 1}}, "it": {"_count": 1, "made": {"_count": 1}}, "himself": {"_count": 1, "that": {"_count": 1}}, "whisper": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "wild": {"_count": 1}}}, "come": {"_count": 1050, "near": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 130, "bring": {"_count": 1}, "a": {"_count": 7}, "watch": {"_count": 1}, "tell": {"_count": 2}, "protect": {"_count": 1}, "take": {"_count": 3}, "me": {"_count": 4}, "rest": {"_count": 1}, "meet": {"_count": 1}, "choose": {"_count": 1}, "school": {"_count": 2}, "Hogwarts": {"_count": 2}, "London": {"_count": 1}, "Kings": {"_count": 1}, "the": {"_count": 14}, "another": {"_count": 1}, "give": {"_count": 2}, "Charms": {"_count": 1}, "finish": {"_count": 1}, "try": {"_count": 1}, "live": {"_count": 1}, "search": {"_count": 1}, "stay": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "himself": {"_count": 2}, "life": {"_count": 1}, "pass": {"_count": 2}, "find": {"_count": 3}, "deliver": {"_count": 1}, "feeling": {"_count": 1}, "it": {"_count": 1}, "see": {"_count": 5}, "work": {"_count": 1}, "his": {"_count": 4}, "light": {"_count": 2}, "say": {"_count": 1}, "think": {"_count": 4}, "us": {"_count": 1}, "Little": {"_count": 1}, "him": {"_count": 6}, "nothing": {"_count": 1}, "expect": {"_count": 1}, "hear": {"_count": 1}, "associate": {"_count": 2}, "call": {"_count": 2}, "be": {"_count": 2}, "warn": {"_count": 1}, "join": {"_count": 1}, "number": {"_count": 1}, "investigate": {"_count": 1}, "you": {"_count": 2}, "fetch": {"_count": 3}, "dinner": {"_count": 1}, "having": {"_count": 1}, "offer": {"_count": 2}, "this": {"_count": 2}, "Slughorns": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}, "any": {"_count": 1}, "visit": {"_count": 1}, "Dumbledores": {"_count": 1}, "pay": {"_count": 1}, "force": {"_count": 1}, "compliment": {"_count": 1}, "put": {"_count": 1}, "an": {"_count": 1}, "rescue": {"_count": 2}, "save": {"_count": 1}, "our": {"_count": 1}, "Godrics": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 78, "live": {"_count": 2}, "have": {"_count": 7}, "meet": {"_count": 1}, "fetch": {"_count": 2}, "gone": {"_count": 1}, "finish": {"_count": 1}, "stay": {"_count": 3}, "get": {"_count": 9}, "look": {"_count": 1}, "take": {"_count": 3}, "wait": {"_count": 1}, "sit": {"_count": 2}, "see": {"_count": 10}, "wake": {"_count": 1}, "collect": {"_count": 2}, "help": {"_count": 5}, "Harry": {"_count": 1}, "watch": {"_count": 2}, "join": {"_count": 4}, "visit": {"_count": 1}, "perform": {"_count": 1}, "call": {"_count": 1}, "talk": {"_count": 2}, "tell": {"_count": 1}, "go": {"_count": 3}, "say": {"_count": 1}, "check": {"_count": 1}, "touch": {"_count": 1}, "find": {"_count": 1}, "stir": {"_count": 1}, "after": {"_count": 1}, "pay": {"_count": 1}, "try": {"_count": 1}, "seize": {"_count": 1}, "inspiration": {"_count": 1}, "explain": {"_count": 1}}, "in": {"_count": 43, "handy": {"_count": 3}, "": {"_count": 7}, "to": {"_count": 1}, "the": {"_count": 7}, "come": {"_count": 1}, "thought": {"_count": 1}, "Shining": {"_count": 1}, "hows": {"_count": 1}, "useful": {"_count": 4}, "Neville": {"_count": 1}, "wearing": {"_count": 1}, "many": {"_count": 1}, "for": {"_count": 1}, "make": {"_count": 1}, "through": {"_count": 1}, "here": {"_count": 3}, "well": {"_count": 1}, "then": {"_count": 2}, "so": {"_count": 1}, "sit": {"_count": 1}, "said": {"_count": 1}, "do": {"_count": 1}, "an": {"_count": 1}}, "back": {"_count": 114, "and": {"_count": 7}, "to": {"_count": 17}, "": {"_count": 28}, "for": {"_count": 1}, "here": {"_count": 8}, "Harry": {"_count": 2}, "Dobby": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 1}, "from": {"_count": 4}, "You": {"_count": 1}, "again": {"_count": 3}, "we": {"_count": 1}, "after": {"_count": 2}, "down": {"_count": 1}, "said": {"_count": 3}, "Ive": {"_count": 1}, "his": {"_count": 1}, "isnt": {"_count": 1}, "he": {"_count": 3}, "one": {"_count": 1}, "tomorrow": {"_count": 2}, "with": {"_count": 1}, "next": {"_count": 1}, "into": {"_count": 1}, "without": {"_count": 1}, "because": {"_count": 1}, "right": {"_count": 2}, "as": {"_count": 2}, "I": {"_count": 1}, "repeated": {"_count": 1}, "they": {"_count": 1}, "see": {"_count": 1}, "she": {"_count": 1}, "in": {"_count": 3}, "come": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "ever": {"_count": 1}, "would": {"_count": 1}, "did": {"_count": 1}, "ini": {"_count": 1}}, "": {"_count": 76, "!": {"_count": 12}, ".": {"_count": 51}, "?": {"_count": 13}}, "from": {"_count": 24, "anyway": {"_count": 1}, "Muggle": {"_count": 2}, "Quirrell": {"_count": 1}, "Quirrells": {"_count": 1}, "": {"_count": 8}, "the": {"_count": 3}, "a": {"_count": 1}, "because": {"_count": 1}, "you": {"_count": 1}, "my": {"_count": 1}, "somewhere": {"_count": 1}, "Azkaban": {"_count": 1}, "decent": {"_count": 1}, "who": {"_count": 1}}, "upstairs": {"_count": 2, "and": {"_count": 1}, "when": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "ter": {"_count": 4, "take": {"_count": 1}, "see": {"_count": 2}, "join": {"_count": 1}}, "so": {"_count": 3, "close": {"_count": 2}, "that": {"_count": 1}}, "Percy": {"_count": 1, "gets": {"_count": 1}}, "you": {"_count": 11, "see": {"_count": 1}, "havent": {"_count": 1}, "dint": {"_count": 1}, "knew": {"_count": 1}, "didnt": {"_count": 2}, "fell": {"_count": 1}, "two": {"_count": 1}, "were": {"_count": 1}, "ended": {"_count": 1}, "three": {"_count": 1}}, "straight": {"_count": 4, "back": {"_count": 2}, "to": {"_count": 2}}, "true": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "down": {"_count": 22, "": {"_count": 2}, "here": {"_count": 4}, "and": {"_count": 3}, "their": {"_count": 1}, "while": {"_count": 1}, "to": {"_count": 5}, "onto": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "quickly": {"_count": 1}, "with": {"_count": 2}}, "out": {"_count": 37, "of": {"_count": 17}, "in": {"_count": 1}, "": {"_count": 5}, "to": {"_count": 2}, "weve": {"_count": 1}, "prototype": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 2}, "with": {"_count": 3}, "little": {"_count": 1}, "because": {"_count": 1}, "from": {"_count": 1}, "on": {"_count": 1}}, "bursting": {"_count": 4, "into": {"_count": 1}, "through": {"_count": 1}, "in": {"_count": 1}, "right": {"_count": 1}}, "on": {"_count": 92, "now": {"_count": 11}, "were": {"_count": 4}, "Hagrid": {"_count": 1}, "The": {"_count": 3}, "youve": {"_count": 1}, "no": {"_count": 1}, "said": {"_count": 7}, "Ron": {"_count": 4}, "So": {"_count": 1}, "": {"_count": 21}, "Angelina": {"_count": 2}, "back": {"_count": 1}, "But": {"_count": 1}, "he": {"_count": 2}, "move": {"_count": 1}, "Longbottom": {"_count": 1}, "come": {"_count": 1}, "quick": {"_count": 2}, "Harry": {"_count": 4}, "easy": {"_count": 1}, "theyre": {"_count": 1}, "Lumosl": {"_count": 1}, "Ill": {"_count": 1}, "its": {"_count": 1}, "then": {"_count": 2}, "half": {"_count": 1}, "Hermione": {"_count": 1}, "Imperviusl": {"_count": 1}, "lets": {"_count": 3}, "quickly": {"_count": 1}, "everyone": {"_count": 1}, "cant": {"_count": 1}, "instead": {"_count": 1}, "her": {"_count": 1}, "scoffed": {"_count": 1}, "what": {"_count": 1}, "we": {"_count": 1}, "weve": {"_count": 1}, "think": {"_count": 1}}, "pelting": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "with": {"_count": 39, "me": {"_count": 17}, "big": {"_count": 1}, "a": {"_count": 2}, "you": {"_count": 10}, "us": {"_count": 3}, "yeh": {"_count": 1}, "one": {"_count": 1}, "him": {"_count": 2}, "Mr": {"_count": 1}, "them": {"_count": 1}}, "directly": {"_count": 1, "to": {"_count": 1}}, "tonight": {"_count": 1, "Im": {"_count": 1}}, "round": {"_count": 5, "my": {"_count": 2}, "they": {"_count": 2}, "": {"_count": 1}}, "an": {"_count": 5, "see": {"_count": 2}, "find": {"_count": 1}, "well": {"_count": 1}, "visit": {"_count": 1}}, "quickly": {"_count": 1, "enough": {"_count": 1}}, "Harry": {"_count": 7, "would": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "made": {"_count": 1}, "gets": {"_count": 1}, "stood": {"_count": 1}, "thought": {"_count": 1}}, "up": {"_count": 26, "said": {"_count": 2}, "with": {"_count": 7}, "to": {"_count": 6}, "in": {"_count": 5}, "into": {"_count": 1}, "here": {"_count": 2}, "a": {"_count": 1}, "later": {"_count": 1}, "so": {"_count": 1}}, "anywhere": {"_count": 2, "near": {"_count": 2}}, "off": {"_count": 17, "it": {"_count": 5}, "properly": {"_count": 1}, "patrol": {"_count": 1}, "worse": {"_count": 1}, "": {"_count": 2}, "worst": {"_count": 1}, "Snape": {"_count": 1}, "dyou": {"_count": 1}, "though": {"_count": 1}, "quite": {"_count": 1}, "better": {"_count": 1}, "said": {"_count": 1}}, "across": {"_count": 10, "one": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 1}, "while": {"_count": 1}, "two": {"_count": 1}, "as": {"_count": 1}, "each": {"_count": 1}, "something": {"_count": 1}}, "at": {"_count": 5, "it": {"_count": 1}, "last": {"_count": 2}, "the": {"_count": 1}, "four": {"_count": 1}}, "he": {"_count": 5, "said": {"_count": 1}, "never": {"_count": 2}, "thought": {"_count": 1}, "wished": {"_count": 1}}, "here": {"_count": 20, "": {"_count": 4}, "for": {"_count": 1}, "There": {"_count": 1}, "she": {"_count": 1}, "And": {"_count": 1}, "an": {"_count": 1}, "where": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "tonight": {"_count": 2}, "like": {"_count": 1}, "with": {"_count": 1}, "Mr": {"_count": 1}, "look": {"_count": 1}, "so": {"_count": 1}, "isnt": {"_count": 1}}, "but": {"_count": 7, "come": {"_count": 1}, "Im": {"_count": 1}, "he": {"_count": 2}, "if": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "they": {"_count": 3, "did": {"_count": 1}, "promoted": {"_count": 1}, "like": {"_count": 1}}, "home": {"_count": 9, "for": {"_count": 2}, "": {"_count": 1}, "if": {"_count": 1}, "soon": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "so": {"_count": 1}, "Spare": {"_count": 1}}, "facetoface": {"_count": 8, "with": {"_count": 7}, "It": {"_count": 1}}, "bounding": {"_count": 1, "downstairs": {"_count": 1}}, "cheap": {"_count": 1, "said": {"_count": 1}}, "yeh": {"_count": 2, "never": {"_count": 1}, "were": {"_count": 1}}, "right": {"_count": 1, "after": {"_count": 1}}, "a": {"_count": 7, "time": {"_count": 3}, "bit": {"_count": 1}, "month": {"_count": 1}, "new": {"_count": 1}, "long": {"_count": 1}}, "over": {"_count": 11, "too": {"_count": 1}, "here": {"_count": 5}, "Harry": {"_count": 1}, "Bagman": {"_count": 1}, "to": {"_count": 1}, "so": {"_count": 1}, "all": {"_count": 1}}, "marchin": {"_count": 1, "up": {"_count": 1}}, "much": {"_count": 3, "worse": {"_count": 1}, "earlier": {"_count": 1}, "farther": {"_count": 1}}, "I": {"_count": 8, "havent": {"_count": 1}, "have": {"_count": 1}, "got": {"_count": 1}, "saw": {"_count": 1}, "knew": {"_count": 1}, "want": {"_count": 1}, "dont": {"_count": 1}, "wouldnt": {"_count": 1}}, "My": {"_count": 1, "dear": {"_count": 1}}, "along": {"_count": 11, "ruining": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 3}, "into": {"_count": 1}, "with": {"_count": 1}, "Harry": {"_count": 1}, "today": {"_count": 1}, "no": {"_count": 1}, "any": {"_count": 1}}, "nobodys": {"_count": 1, "noticed": {"_count": 1}}, "amongst": {"_count": 1, "you": {"_count": 1}}, "after": {"_count": 7, "all": {"_count": 1}, "you": {"_count": 2}, "me": {"_count": 3}, "": {"_count": 1}}, "by": {"_count": 5, "my": {"_count": 1}, "": {"_count": 1}, "train": {"_count": 1}, "said": {"_count": 1}, "owl": {"_count": 1}}, "too": {"_count": 6, "Weasley": {"_count": 1}, "said": {"_count": 4}, "": {"_count": 1}}, "forward": {"_count": 2, "": {"_count": 2}}, "this": {"_count": 1, "far": {"_count": 1}}, "until": {"_count": 1, "it": {"_count": 1}}, "youve": {"_count": 4, "got": {"_count": 2}, "been": {"_count": 1}, "landed": {"_count": 1}}, "early": {"_count": 2, "": {"_count": 2}}, "said": {"_count": 5, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hagrid": {"_count": 1}, "Ginny": {"_count": 1}, "Voldemort": {"_count": 1}}, "the": {"_count": 5, "Muggles": {"_count": 1}, "Slytherin": {"_count": 1}, "most": {"_count": 1}, "Ministry": {"_count": 1}, "wrong": {"_count": 1}}, "ere": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 7, "a": {"_count": 6}, "will": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "youre": {"_count": 8, "not": {"_count": 4}, "interested": {"_count": 1}, "here": {"_count": 2}, "in": {"_count": 1}}, "downstairs": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "quietly": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "galloping": {"_count": 1, "across": {"_count": 1}}, "when": {"_count": 4, "you": {"_count": 2}, "we": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 8, "some": {"_count": 1}, "drastic": {"_count": 1}, "us": {"_count": 1}, "Christmas": {"_count": 2}, "Kreacher": {"_count": 1}, "him": {"_count": 1}, "Slytherin": {"_count": 1}}, "turn": {"_count": 1, "my": {"_count": 1}}, "any": {"_count": 2, "closer": {"_count": 2}}, "very": {"_count": 1, "close": {"_count": 1}}, "into": {"_count": 8, "the": {"_count": 3}, "school": {"_count": 1}, "your": {"_count": 1}, "Hogsmeade": {"_count": 2}, "my": {"_count": 1}}, "dashing": {"_count": 2, "out": {"_count": 1}, "back": {"_count": 1}}, "nosing": {"_count": 1, "around": {"_count": 1}}, "darting": {"_count": 1, "inside": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "spilling": {"_count": 1, "out": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "would": {"_count": 1, "come": {"_count": 1}}, "if": {"_count": 2, "theyd": {"_count": 1}, "he": {"_count": 1}}, "via": {"_count": 1, "Greenland": {"_count": 1}}, "of": {"_count": 5, "age": {"_count": 4}, "noble": {"_count": 1}}, "hes": {"_count": 3, "in": {"_count": 1}, "stopped": {"_count": 1}, "up": {"_count": 1}}, "well": {"_count": 1, "": {"_count": 1}}, "flying": {"_count": 2, "out": {"_count": 1}, "at": {"_count": 1}}, "running": {"_count": 6, "into": {"_count": 1}, "when": {"_count": 2}, "": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 1}}, "through": {"_count": 2, "this": {"_count": 1}, "said": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "without": {"_count": 2, "that": {"_count": 1}, "broomsticks": {"_count": 1}}, "its": {"_count": 2, "taken": {"_count": 1}, "their": {"_count": 1}}, "we": {"_count": 2, "got": {"_count": 1}, "didnt": {"_count": 1}}, "edging": {"_count": 1, "down": {"_count": 1}}, "Sturgis": {"_count": 1, "was": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "flooding": {"_count": 1, "out": {"_count": 1}}, "she": {"_count": 1, "married": {"_count": 1}}, "wouldnt": {"_count": 1, "he": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "Think": {"_count": 1, "he": {"_count": 1}}, "Ill": {"_count": 2, "ddo": {"_count": 1}, "bet": {"_count": 1}}, "more": {"_count": 1, "now": {"_count": 1}}, "away": {"_count": 2, "She": {"_count": 1}, "with": {"_count": 1}}, "Voldemort": {"_count": 1, "wants": {"_count": 1}}, "earlier": {"_count": 1, "Potter": {"_count": 1}}, "was": {"_count": 1, "ajar": {"_count": 1}}, "hurtling": {"_count": 1, "inside": {"_count": 1}}, "lunging": {"_count": 1, "out": {"_count": 1}}, "soon": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "hide": {"_count": 1}}, "personally": {"_count": 1, "in": {"_count": 1}}, "or": {"_count": 1, "he": {"_count": 1}}, "recruiting": {"_count": 1, "yet": {"_count": 1}}, "floating": {"_count": 1, "along": {"_count": 1}}, "read": {"_count": 1, "GREAT": {"_count": 1}}, "hurrying": {"_count": 1, "out": {"_count": 1}}, "striding": {"_count": 1, "around": {"_count": 1}}, "Professor": {"_count": 2, "said": {"_count": 1}, "Hagrid": {"_count": 1}}, "trying": {"_count": 1, "his": {"_count": 1}}, "these": {"_count": 1, "girls": {"_count": 1}}, "top": {"_count": 1, "of": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "July": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "second": {"_count": 1, "to": {"_count": 1}}, "then": {"_count": 1, "the": {"_count": 1}}, "tomorrow": {"_count": 1, "if": {"_count": 1}}, "whether": {"_count": 1, "in": {"_count": 1}}, "looking": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "days": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "Hmm": {"_count": 1, "": {"_count": 1}}, "first": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "as": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "there": {"_count": 1}}, "hobbling": {"_count": 1, "into": {"_count": 1}}, "thundering": {"_count": 1, "down": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}}, "near": {"_count": 181, "him": {"_count": 8, "and": {"_count": 1}, "the": {"_count": 1}, "while": {"_count": 1}, "Professor": {"_count": 1}, "as": {"_count": 1}, "so": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "midnight": {"_count": 2, "": {"_count": 2}}, "enough": {"_count": 17, "to": {"_count": 15}, "human": {"_count": 1}, "priceless": {"_count": 1}}, "the": {"_count": 62, "end": {"_count": 2}, "brim": {"_count": 3}, "dog": {"_count": 1}, "top": {"_count": 2}, "kitchens": {"_count": 2}, "third": {"_count": 1}, "ceiling": {"_count": 2}, "entrance": {"_count": 1}, "library": {"_count": 1}, "castle": {"_count": 1}, "statues": {"_count": 1}, "window": {"_count": 1}, "door": {"_count": 4}, "Snitch": {"_count": 1}, "bed": {"_count": 1}, "edge": {"_count": 1}, "lake": {"_count": 2}, "house": {"_count": 1}, "hedge": {"_count": 1}, "hearth": {"_count": 1}, "fence": {"_count": 1}, "fireplace": {"_count": 1}, "fire": {"_count": 2}, "paddock": {"_count": 1}, "judges": {"_count": 1}, "Beauxbatons": {"_count": 1}, "heart": {"_count": 1}, "meetings": {"_count": 1}, "stone": {"_count": 1}, "frayed": {"_count": 1}, "hats": {"_count": 1}, "eyeballs": {"_count": 1}, "very": {"_count": 1}, "chandelier": {"_count": 1}, "forest": {"_count": 1}, "knee": {"_count": 1}, "doors": {"_count": 1}, "shelves": {"_count": 1}, "counter": {"_count": 1}, "colony": {"_count": 1}, "front": {"_count": 1}, "turning": {"_count": 1}, "far": {"_count": 1}, "waters": {"_count": 1}, "foot": {"_count": 1}, "speedometer": {"_count": 1}, "fuel": {"_count": 1}, "washing": {"_count": 1}, "back": {"_count": 1}, "thing": {"_count": 1}, "roots": {"_count": 1}}, "us": {"_count": 3, "in": {"_count": 1}, "wouldnt": {"_count": 1}, "now": {"_count": 1}}, "one": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "their": {"_count": 2, "Charms": {"_count": 1}, "webs": {"_count": 1}}, "here": {"_count": 6, "again": {"_count": 1}, "that": {"_count": 1}, "all": {"_count": 1}, "whispered": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "his": {"_count": 5, "ankles": {"_count": 1}, "head": {"_count": 1}, "temple": {"_count": 1}, "feet": {"_count": 1}, "heart": {"_count": 1}}, "miss": {"_count": 1, "said": {"_count": 1}}, "blackness": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "pointed": {"_count": 1}, "wondered": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 2}, "now": {"_count": 1}}, "a": {"_count": 4, "dementor": {"_count": 2}, "classroom": {"_count": 1}, "Death": {"_count": 1}}, "me": {"_count": 7, "Harry": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 1}, "or": {"_count": 1}, "without": {"_count": 1}, "Ive": {"_count": 1}}, "Katie": {"_count": 1, "Bells": {"_count": 1}}, "and": {"_count": 1, "judging": {"_count": 1}}, "you": {"_count": 4, "would": {"_count": 1}, "now": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}}, "there": {"_count": 1, "again": {"_count": 1}}, "them": {"_count": 7, "": {"_count": 6}, "but": {"_count": 1}}, "misses": {"_count": 1, "many": {"_count": 1}}, "impossible": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 3, "long": {"_count": 1}, "cold": {"_count": 1}, "attractive": {"_count": 1}}, "Muggles": {"_count": 1, "shouldnt": {"_count": 1}}, "beat": {"_count": 1, "it": {"_count": 1}}, "powerful": {"_count": 1, "enough": {"_count": 1}}, "your": {"_count": 2, "office": {"_count": 1}, "goal": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "miracle": {"_count": 1, "": {"_count": 1}}, "Nottingham": {"_count": 1, "": {"_count": 1}}, "Hagrids": {"_count": 1, "cabin": {"_count": 1}}, "Cho": {"_count": 1, "and": {"_count": 1}}, "em": {"_count": 1, "": {"_count": 1}}, "mornin": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "Kirkes": {"_count": 1, "ankle": {"_count": 1}}, "to": {"_count": 2, "him": {"_count": 1}, "entering": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "Grawp": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "also": {"_count": 1}}, "total": {"_count": 2, "darkness": {"_count": 2}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "who": {"_count": 1}}, "Scrivenshafts": {"_count": 1, "but": {"_count": 1}}, "silence": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Muriel": {"_count": 1, "Ron": {"_count": 1}}, "suffocation": {"_count": 1, "Harry": {"_count": 1}}, "starvation": {"_count": 1, "at": {"_count": 1}}, "getting": {"_count": 1, "rid": {"_count": 1}}, "in": {"_count": 1, "other": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}, "future": {"_count": 1, "when": {"_count": 1}}}, "kind": {"_count": 208, "": {"_count": 10, ".": {"_count": 7}, "?": {"_count": 1}, "!": {"_count": 2}}, "of": {"_count": 153, "Muggle": {"_count": 1}, "underground": {"_count": 1}, "public": {"_count": 1}, "ache": {"_count": 1}, "school": {"_count": 1}, "rollercoaster": {"_count": 1}, "twirl": {"_count": 1}, "miserable": {"_count": 1}, "monsters": {"_count": 1}, "quickstep": {"_count": 1}, "thing": {"_count": 8}, "drumroll": {"_count": 2}, "penetrating": {"_count": 1}, "silent": {"_count": 1}, "horrified": {"_count": 3}, "metal": {"_count": 1}, "paddock": {"_count": 1}, "furious": {"_count": 1}, "fudge": {"_count": 1}, "soft": {"_count": 1}, "anti": {"_count": 1}, "positive": {"_count": 1}, "mouth": {"_count": 1}, "pirouette": {"_count": 1}, "remorse": {"_count": 1}, "mistake": {"_count": 1}, "holiday": {"_count": 1}, "thoroughfare": {"_count": 1}, "halfbow": {"_count": 1}, "savage": {"_count": 1}, "misfortune": {"_count": 1}, "shaggy": {"_count": 1}, "thick": {"_count": 1}, "worked": {"_count": 1}, "creatures": {"_count": 2}, "strangled": {"_count": 1}, "enchantment": {"_count": 1}, "mist": {"_count": 1}, "pit": {"_count": 1}, "numbness": {"_count": 1}, "reverse": {"_count": 1}, "muffled": {"_count": 1}, "ripple": {"_count": 1}, "ringing": {"_count": 1}, "voice": {"_count": 2}, "stupor": {"_count": 1}, "flick": {"_count": 1}, "weapon": {"_count": 2}, "wizards": {"_count": 1}, "war": {"_count": 1}, "nonsense": {"_count": 1}, "explanation": {"_count": 1}, "groan": {"_count": 1}, "insect": {"_count": 1}, "petty": {"_count": 1}, "speech": {"_count": 2}, "fervor": {"_count": 1}, "look": {"_count": 2}, "involuntary": {"_count": 1}, "private": {"_count": 1}, "contract": {"_count": 1}, "": {"_count": 5}, "talisman": {"_count": 1}, "dimwitted": {"_count": 1}, "vision": {"_count": 1}, "AARGH": {"_count": 1}, "poison": {"_count": 1}, "den": {"_count": 1}, "connection": {"_count": 1}, "Invisibility": {"_count": 1}, "pained": {"_count": 1}, "aerial": {"_count": 1}, "fee": {"_count": 1}, "painful": {"_count": 1}, "vicious": {"_count": 1}, "meeting": {"_count": 1}, "vindictive": {"_count": 1}, "creature": {"_count": 1}, "fence": {"_count": 1}, "hysterical": {"_count": 1}, "fierce": {"_count": 1}, "beauty": {"_count": 1}, "prophecy": {"_count": 2}, "bow": {"_count": 1}, "frenzied": {"_count": 1}, "electric": {"_count": 1}, "whimper": {"_count": 1}, "wizard": {"_count": 1}, "detached": {"_count": 1}, "man": {"_count": 1}, "you": {"_count": 1}, "chill": {"_count": 1}, "blood": {"_count": 1}, "club": {"_count": 1}, "benefit": {"_count": 1}, "right": {"_count": 1}, "scum": {"_count": 1}, "service": {"_count": 1}, "mission": {"_count": 1}, "magic": {"_count": 2}, "Riddle": {"_count": 1}, "grayish": {"_count": 1}, "nasty": {"_count": 1}, "ability": {"_count": 1}, "vertical": {"_count": 1}, "dark": {"_count": 1}, "pirouetting": {"_count": 1}, "tingling": {"_count": 1}, "quill": {"_count": 1}, "purple": {"_count": 1}, "background": {"_count": 1}, "guide": {"_count": 1}, "passage": {"_count": 1}, "curse": {"_count": 1}, "loophole": {"_count": 1}, "salute": {"_count": 1}, "desperation": {"_count": 1}, "the": {"_count": 1}, "quiet": {"_count": 1}, "home": {"_count": 1}, "panic": {"_count": 1}, "bright": {"_count": 1}, "guardian": {"_count": 1}, "pulsing": {"_count": 1}, "magical": {"_count": 1}, "fury": {"_count": 1}, "bargain": {"_count": 1}, "vacant": {"_count": 1}, "crown": {"_count": 1}, "snowballed": {"_count": 1}, "silence": {"_count": 1}, "bravery": {"_count": 1}}, "werent": {"_count": 1, "they": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "Uncle": {"_count": 1}}, "Or": {"_count": 1, "perhaps": {"_count": 1}}, "have": {"_count": 1, "to": {"_count": 1}}, "thoughtful": {"_count": 1, "and": {"_count": 1}}, "faced": {"_count": 1, "woman": {"_count": 1}}, "regard": {"_count": 1, "him": {"_count": 1}}, "since": {"_count": 1, "you": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "underwent": {"_count": 1, "so": {"_count": 1}}, "as": {"_count": 1, "to": {"_count": 1}}, "enough": {"_count": 2, "to": {"_count": 2}}, "was": {"_count": 1, "pacross": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "master": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "dont": {"_count": 2, "set": {"_count": 1}, "usually": {"_count": 1}}, "face": {"_count": 1, "though": {"_count": 1}}, "nature": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "ter": {"_count": 1, "me": {"_count": 1}}, "and": {"_count": 3, "go": {"_count": 1}, "brave": {"_count": 1}, "fatherly": {"_count": 1}}, "Harry": {"_count": 4, "cared": {"_count": 1}, "used": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 3, "Kreacher": {"_count": 1}, "houseelves": {"_count": 1}, "him": {"_count": 1}}, "words": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "is": {"_count": 1}}, "ever": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "then": {"_count": 1}, "it": {"_count": 1}}, "pretty": {"_count": 1, "face": {"_count": 1}}, "or": {"_count": 1, "generous": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "neither": {"_count": 1, "flame": {"_count": 1}}, "Neville": {"_count": 1, "Longbottom": {"_count": 1}}}, "mixed": {"_count": 16, "up": {"_count": 8, "in": {"_count": 2}, "with": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 2}}, "with": {"_count": 3, "chicken": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "black": {"_count": 1, "currant": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "swearwords": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "up": {"_count": 1}}, "an": {"_count": 1, "antidote": {"_count": 1}}}, "going": {"_count": 1459, "on": {"_count": 161, "he": {"_count": 3}, "": {"_count": 73}, "in": {"_count": 12}, "about": {"_count": 8}, "but": {"_count": 2}, "sometimes": {"_count": 1}, "said": {"_count": 3}, "they": {"_count": 1}, "here": {"_count": 8}, "and": {"_count": 5}, "inside": {"_count": 2}, "came": {"_count": 1}, "Exactly": {"_count": 1}, "from": {"_count": 1}, "we": {"_count": 1}, "howre": {"_count": 1}, "behind": {"_count": 1}, "at": {"_count": 5}, "outside": {"_count": 4}, "with": {"_count": 4}, "doubt": {"_count": 1}, "well": {"_count": 1}, "I": {"_count": 1}, "downstairs": {"_count": 2}, "Harry": {"_count": 2}, "it": {"_count": 1}, "When": {"_count": 1}, "many": {"_count": 1}, "dear": {"_count": 1}, "since": {"_count": 1}, "below": {"_count": 1}, "Ginny": {"_count": 1}, "was": {"_count": 1}, "around": {"_count": 2}, "our": {"_count": 1}, "hes": {"_count": 1}, "between": {"_count": 1}, "upstairs": {"_count": 1}, "lunged": {"_count": 1}, "now": {"_count": 1}, "all": {"_count": 1}}, "to": {"_count": 953, "tell": {"_count": 34}, "believe": {"_count": 2}, "do": {"_count": 58}, "go": {"_count": 35}, "Stonewall": {"_count": 2}, "look": {"_count": 7}, "wait": {"_count": 3}, "fall": {"_count": 3}, "school": {"_count": 2}, "give": {"_count": 12}, "a": {"_count": 2}, "drag": {"_count": 1}, "London": {"_count": 2}, "smash": {"_count": 1}, "but": {"_count": 1}, "fight": {"_count": 4}, "help": {"_count": 9}, "ask": {"_count": 15}, "visit": {"_count": 2}, "be": {"_count": 144}, "use": {"_count": 12}, "win": {"_count": 3}, "get": {"_count": 43}, "stand": {"_count": 2}, "meet": {"_count": 6}, "bed": {"_count": 13}, "teach": {"_count": 4}, "show": {"_count": 3}, "rip": {"_count": 2}, "sc": {"_count": 1}, "Romania": {"_count": 1}, "find": {"_count": 9}, "end": {"_count": 5}, "stop": {"_count": 4}, "play": {"_count": 2}, "stay": {"_count": 4}, "see": {"_count": 20}, "know": {"_count": 4}, "catch": {"_count": 5}, "shoot": {"_count": 2}, "happen": {"_count": 19}, "try": {"_count": 19}, "say": {"_count": 16}, "have": {"_count": 49}, "kill": {"_count": 11}, "Dumbledore": {"_count": 2}, "die": {"_count": 12}, "wake": {"_count": 2}, "de": {"_count": 1}, "afford": {"_count": 1}, "buy": {"_count": 5}, "fit": {"_count": 1}, "miss": {"_count": 7}, "put": {"_count": 6}, "crop": {"_count": 1}, "mess": {"_count": 1}, "chicken": {"_count": 1}, "make": {"_count": 15}, "write": {"_count": 2}, "come": {"_count": 10}, "think": {"_count": 3}, "attack": {"_count": 2}, "to": {"_count": 1}, "explode": {"_count": 2}, "tear": {"_count": 1}, "talk": {"_count": 3}, "waste": {"_count": 2}, "sit": {"_count": 5}, "send": {"_count": 1}, "persuade": {"_count": 1}, "act": {"_count": 1}, "spend": {"_count": 2}, "punish": {"_count": 1}, "worry": {"_count": 1}, "take": {"_count": 12}, "suffer": {"_count": 3}, "work": {"_count": 4}, "lead": {"_count": 1}, "the": {"_count": 12}, "slip": {"_count": 1}, "back": {"_count": 1}, "argue": {"_count": 1}, "Hogsmeade": {"_count": 3}, "haunt": {"_count": 1}, "keep": {"_count": 9}, "hand": {"_count": 1}, "report": {"_count": 3}, "become": {"_count": 3}, "wear": {"_count": 2}, "let": {"_count": 14}, "block": {"_count": 1}, "rise": {"_count": 1}, "execute": {"_count": 1}, "hear": {"_count": 2}, "break": {"_count": 2}, "tie": {"_count": 1}, "leave": {"_count": 3}, "live": {"_count": 5}, "lock": {"_count": 3}, "save": {"_count": 1}, "grab": {"_count": 1}, "sound": {"_count": 1}, "move": {"_count": 1}, "run": {"_count": 2}, "hide": {"_count": 4}, "finish": {"_count": 1}, "set": {"_count": 1}, "them": {"_count": 1}, "watch": {"_count": 3}, "pick": {"_count": 1}, "BANG": {"_count": 1}, "Dobbys": {"_count": 1}, "crash": {"_count": 3}, "sack": {"_count": 1}, "pay": {"_count": 2}, "manage": {"_count": 2}, "want": {"_count": 3}, "enter": {"_count": 3}, "overflow": {"_count": 1}, "decide": {"_count": 1}, "sleep": {"_count": 1}, "split": {"_count": 2}, "last": {"_count": 1}, "poison": {"_count": 1}, "drop": {"_count": 1}, "bother": {"_count": 3}, "turn": {"_count": 2}, "he": {"_count": 1}, "laugh": {"_count": 2}, "need": {"_count": 4}, "shorten": {"_count": 1}, "bring": {"_count": 3}, "Id": {"_count": 1}, "suggest": {"_count": 2}, "like": {"_count": 2}, "pretend": {"_count": 1}, "retrieve": {"_count": 1}, "steal": {"_count": 1}, "pull": {"_count": 2}, "spot": {"_count": 1}, "Snape": {"_count": 1}, "read": {"_count": 1}, "start": {"_count": 4}, "follow": {"_count": 1}, "prove": {"_count": 1}, "burst": {"_count": 1}, "obey": {"_count": 1}, "beg": {"_count": 1}, "admit": {"_count": 1}, "question": {"_count": 1}, "Dont": {"_count": 1}, "cause": {"_count": 1}, "snap": {"_count": 1}, "jinx": {"_count": 1}, "shout": {"_count": 3}, "complain": {"_count": 1}, "fetch": {"_count": 1}, "clear": {"_count": 1}, "convict": {"_count": 1}, "sulk": {"_count": 1}, "jump": {"_count": 1}, "deal": {"_count": 1}, "descend": {"_count": 1}, "share": {"_count": 1}, "scream": {"_count": 1}, "Put": {"_count": 1}, "said": {"_count": 1}, "rain": {"_count": 1}, "Kings": {"_count": 1}, "aim": {"_count": 1}, "learn": {"_count": 1}, "realize": {"_count": 1}, "Wheres": {"_count": 1}, "Is": {"_count": 1}, "harp": {"_count": 1}, "shut": {"_count": 1}, "You": {"_count": 1}, "cope": {"_count": 1}, "resign": {"_count": 1}, "eat": {"_count": 1}, "understand": {"_count": 1}, "walk": {"_count": 1}, "blame": {"_count": 1}, "explain": {"_count": 1}, "react": {"_count": 2}, "collide": {"_count": 1}, "these": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 2}, "smile": {"_count": 1}, "fail": {"_count": 1}, "check": {"_count": 3}, "slit": {"_count": 1}, "ride": {"_count": 1}, "crack": {"_count": 1}, "notice": {"_count": 2}, "emerge": {"_count": 1}, "answer": {"_count": 1}, "offer": {"_count": 1}, "choke": {"_count": 1}, "fancy": {"_count": 1}, "reenter": {"_count": 1}, "care": {"_count": 1}, "throttle": {"_count": 1}, "faint": {"_count": 1}, "refuse": {"_count": 1}, "kick": {"_count": 1}, "Slughorns": {"_count": 1}, "stick": {"_count": 1}, "introduce": {"_count": 1}, "Hagrids": {"_count": 3}, "bury": {"_count": 1}, "knock": {"_count": 1}, "torture": {"_count": 1}, "marry": {"_count": 1}, "Tonkss": {"_count": 1}, "destroy": {"_count": 1}, "cling": {"_count": 1}, "dump": {"_count": 1}, "suffocate": {"_count": 1}, "drown": {"_count": 1}, "open": {"_count": 2}, "bite": {"_count": 1}, "wash": {"_count": 1}, "throw": {"_count": 1}, "overthrow": {"_count": 1}, "pass": {"_count": 1}, "Hermione": {"_count": 1}, "I": {"_count": 1}, "hunt": {"_count": 1}, "demonstrate": {"_count": 1}}, "red": {"_count": 6, "in": {"_count": 2}, "": {"_count": 3}, "again": {"_count": 1}}, "off": {"_count": 4, "to": {"_count": 2}, "course": {"_count": 1}, "in": {"_count": 1}}, "there": {"_count": 6, "too": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "tonight": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 53, ".": {"_count": 26}, "?": {"_count": 22}, "!": {"_count": 5}}, "a": {"_count": 2, "bit": {"_count": 2}}, "he": {"_count": 5, "said": {"_count": 2}, "was": {"_count": 2}, "could": {"_count": 1}}, "even": {"_count": 1, "deeper": {"_count": 1}}, "into": {"_count": 7, "the": {"_count": 2}, "a": {"_count": 1}, "detail": {"_count": 1}, "maintaining": {"_count": 1}, "hiding": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "out": {"_count": 20, "into": {"_count": 1}, "of": {"_count": 1}, "again": {"_count": 1}, "now": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 12}, "together": {"_count": 1}}, "up": {"_count": 11, "to": {"_count": 9}, "the": {"_count": 1}, "there": {"_count": 1}}, "down": {"_count": 9, "the": {"_count": 2}, "and": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 4}, "into": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "they": {"_count": 1, "ripped": {"_count": 1}}, "near": {"_count": 2, "the": {"_count": 1}, "Cho": {"_count": 1}}, "the": {"_count": 5, "other": {"_count": 1}, "wrong": {"_count": 1}, "same": {"_count": 2}, "right": {"_count": 1}}, "when": {"_count": 3, "we": {"_count": 1}, "he": {"_count": 1}, "youve": {"_count": 1}}, "back": {"_count": 23, "to": {"_count": 14}, "I": {"_count": 1}, "upstairs": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "there": {"_count": 1}, "into": {"_count": 1}}, "and": {"_count": 6, "Im": {"_count": 1}, "Hagrid": {"_count": 1}, "bumping": {"_count": 1}, "sent": {"_count": 1}, "why": {"_count": 1}, "Harry": {"_count": 1}}, "in": {"_count": 11, "that": {"_count": 2}, "one": {"_count": 1}, "Professor": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 4}, "there": {"_count": 1}, "opposite": {"_count": 1}}, "through": {"_count": 6, "the": {"_count": 2}, "that": {"_count": 1}, "clouds": {"_count": 1}, "his": {"_count": 1}, "every": {"_count": 1}}, "over": {"_count": 4, "to": {"_count": 1}, "plans": {"_count": 1}, "here": {"_count": 1}, "and": {"_count": 1}}, "I": {"_count": 2, "promise": {"_count": 1}, "can": {"_count": 1}}, "hed": {"_count": 1, "probably": {"_count": 1}}, "frantic": {"_count": 1, "its": {"_count": 1}}, "\u2018Mum": {"_count": 1, "look": {"_count": 1}}, "bald": {"_count": 1, "but": {"_count": 1}}, "And": {"_count": 1, "keep": {"_count": 1}}, "anywhere": {"_count": 5, "": {"_count": 2}, "till": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}}, "The": {"_count": 1, "sooner": {"_count": 1}}, "Hagrid": {"_count": 1, "its": {"_count": 1}}, "said": {"_count": 6, "Harry": {"_count": 2}, "the": {"_count": 1}, "Tonks": {"_count": 1}, "Hermione": {"_count": 1}, "Petunia": {"_count": 1}}, "backward": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 8, "a": {"_count": 3}, "size": {"_count": 1}, "it": {"_count": 1}, "help": {"_count": 2}, "him": {"_count": 1}}, "but": {"_count": 2, "everything": {"_count": 1}, "he": {"_count": 1}}, "somewhere": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "mad": {"_count": 3, "": {"_count": 2}, "or": {"_count": 1}}, "black": {"_count": 1, "the": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 1}}, "pink": {"_count": 1, "again": {"_count": 1}}, "slightly": {"_count": 1, "red": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "berserk": {"_count": 1, "squeaking": {"_count": 1}}, "nearer": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "paler": {"_count": 1}}, "however": {"_count": 1, "so": {"_count": 1}}, "too": {"_count": 4, "well": {"_count": 1}, "far": {"_count": 2}, "Harry": {"_count": 1}}, "theyll": {"_count": 1, "end": {"_count": 1}}, "very": {"_count": 1, "red": {"_count": 1}}, "missing": {"_count": 1, "so": {"_count": 1}}, "around": {"_count": 2, "that": {"_count": 1}, "I": {"_count": 1}}, "ter": {"_count": 3, "see": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}}, "after": {"_count": 4, "him": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 14, "then": {"_count": 1}, "": {"_count": 3}, "Cho": {"_count": 1}, "someone": {"_count": 4}, "with": {"_count": 1}, "Seamus": {"_count": 1}, "your": {"_count": 1}, "Dean": {"_count": 1}, "these": {"_count": 1}}, "downstairs": {"_count": 3, "": {"_count": 3}}, "Mr": {"_count": 1, "Bagman": {"_count": 1}}, "about": {"_count": 4, "his": {"_count": 1}, "things": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "haywire": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "was": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "red": {"_count": 1}, "far": {"_count": 1}}, "rather": {"_count": 1, "red": {"_count": 1}}, "this": {"_count": 2, "way": {"_count": 2}}, "it": {"_count": 1, "hadnt": {"_count": 1}}, "straight": {"_count": 3, "to": {"_count": 1}, "home": {"_count": 1}, "for": {"_count": 1}}, "now": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "home": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "for": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "then": {"_count": 5, "said": {"_count": 1}, "": {"_count": 2}, "George": {"_count": 1}, "I": {"_count": 1}}, "spare": {"_count": 1, "she": {"_count": 1}}, "What": {"_count": 1, "cleaning": {"_count": 1}}, "hack": {"_count": 1, "to": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "if": {"_count": 2, "Ive": {"_count": 1}, "shes": {"_count": 1}}, "ballistic": {"_count": 1, "she": {"_count": 1}}, "downhill": {"_count": 1, "not": {"_count": 1}}, "senile": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "means": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "dyou": {"_count": 1}}, "skiing": {"_count": 1, "with": {"_count": 1}}, "nightmarishly": {"_count": 1, "wrong": {"_count": 1}}, "public": {"_count": 1, "said": {"_count": 1}}, "understand": {"_count": 1, "": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "bad": {"_count": 1}}, "do": {"_count": 3, "do": {"_count": 1}, "find": {"_count": 1}, "kill": {"_count": 1}}, "hunting": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "said": {"_count": 1}}, "strong": {"_count": 1, "then": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "ahead": {"_count": 1, "it": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "boys": {"_count": 2, "or": {"_count": 2}}, "their": {"_count": 1, "different": {"_count": 1}}, "along": {"_count": 1, "any": {"_count": 1}}, "who": {"_count": 1, "hes": {"_count": 1}}, "badly": {"_count": 1, "": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "your": {"_count": 1, "separate": {"_count": 1}}, "till": {"_count": 1, "weve": {"_count": 1}}, "until": {"_count": 1, "I": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "no": {"_count": 1, "Potter": {"_count": 1}}, "personally": {"_count": 1, "": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}}, "yawned": {"_count": 27, "and": {"_count": 2, "turned": {"_count": 1}, "sprang": {"_count": 1}}, "loudly": {"_count": 1, "sat": {"_count": 1}}, "Fred": {"_count": 2, "setting": {"_count": 1}, "": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Ron": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "curled": {"_count": 1, "up": {"_count": 1}}, "very": {"_count": 1, "widely": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "widely": {"_count": 5, "so": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 3}}, "Tonks": {"_count": 1, "": {"_count": 1}}, "hugely": {"_count": 1, "and": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "ostentatiously": {"_count": 1, "": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "pointedly": {"_count": 1, "": {"_count": 1}}}, "turned": {"_count": 1070, "over": {"_count": 22, "it": {"_count": 1}, "trying": {"_count": 1}, "his": {"_count": 3}, "and": {"_count": 2}, "": {"_count": 7}, "Dumbledore": {"_count": 1}, "onto": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 3}, "recently": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 203, "smile": {"_count": 1}, "look": {"_count": 39}, "Griphook": {"_count": 1}, "the": {"_count": 16}, "Hermione": {"_count": 6}, "lead": {"_count": 1}, "their": {"_count": 1}, "face": {"_count": 18}, "Harry": {"_count": 21}, "ice": {"_count": 2}, "Ron": {"_count": 6}, "Hagrid": {"_count": 1}, "go": {"_count": 5}, "collapse": {"_count": 1}, "Professor": {"_count": 3}, "see": {"_count": 12}, "his": {"_count": 9}, "squint": {"_count": 1}, "them": {"_count": 1}, "stare": {"_count": 6}, "Parvati": {"_count": 1}, "Lupin": {"_count": 2}, "a": {"_count": 3}, "marble": {"_count": 1}, "her": {"_count": 2}, "Hedwig": {"_count": 1}, "tell": {"_count": 1}, "talk": {"_count": 2}, "him": {"_count": 3}, "leave": {"_count": 6}, "Professors": {"_count": 1}, "Snape": {"_count": 2}, "Uncle": {"_count": 1}, "follow": {"_count": 1}, "Sirius": {"_count": 1}, "page": {"_count": 1}, "Neville": {"_count": 1}, "red": {"_count": 1}, "join": {"_count": 1}, "watch": {"_count": 2}, "each": {"_count": 2}, "greet": {"_count": 1}, "find": {"_count": 1}, "speak": {"_count": 1}, "McLaggen": {"_count": 2}, "Dumbledore": {"_count": 2}, "open": {"_count": 1}, "Coote": {"_count": 1}, "contemplate": {"_count": 1}, "answer": {"_count": 1}, "snakes": {"_count": 1}, "Ginny": {"_count": 1}, "grimaces": {"_count": 1}, "Aberforth": {"_count": 1}, "stone": {"_count": 1}}, "up": {"_count": 62, "in": {"_count": 13}, "on": {"_count": 4}, "Malfoy": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 6}, "at": {"_count": 3}, "with": {"_count": 3}, "the": {"_count": 1}, "carrying": {"_count": 1}, "looking": {"_count": 1}, "Mr": {"_count": 1}, "just": {"_count": 1}, "to": {"_count": 5}, "halfway": {"_count": 1}, "was": {"_count": 1}, "But": {"_count": 1}, "I": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}, "we": {"_count": 1}, "after": {"_count": 1}, "against": {"_count": 1}, "The": {"_count": 1}, "jammed": {"_count": 1}, "if": {"_count": 1}, "from": {"_count": 1}, "so": {"_count": 1}, "it": {"_count": 1}, "Id": {"_count": 1}, "right": {"_count": 1}}, "toward": {"_count": 13, "the": {"_count": 4}, "Ron": {"_count": 1}, "Harry": {"_count": 3}, "Dumbledore": {"_count": 1}, "him": {"_count": 3}, "it": {"_count": 1}}, "and": {"_count": 66, "walked": {"_count": 9}, "saw": {"_count": 10}, "left": {"_count": 1}, "started": {"_count": 1}, "cantered": {"_count": 1}, "stormed": {"_count": 1}, "turned": {"_count": 1}, "the": {"_count": 1}, "raced": {"_count": 1}, "caught": {"_count": 1}, "whispers": {"_count": 1}, "said": {"_count": 1}, "followed": {"_count": 1}, "some": {"_count": 1}, "led": {"_count": 1}, "sat": {"_count": 1}, "Harry": {"_count": 1}, "set": {"_count": 2}, "began": {"_count": 3}, "disappeared": {"_count": 1}, "flew": {"_count": 1}, "shuffled": {"_count": 3}, "trod": {"_count": 1}, "strode": {"_count": 2}, "swept": {"_count": 1}, "gave": {"_count": 1}, "begun": {"_count": 1}, "gazed": {"_count": 1}, "raised": {"_count": 1}, "was": {"_count": 1}, "stumped": {"_count": 1}, "headed": {"_count": 1}, "though": {"_count": 1}, "climbed": {"_count": 2}, "looked": {"_count": 2}, "limped": {"_count": 1}, "beamed": {"_count": 1}, "shouted": {"_count": 1}, "hobbled": {"_count": 1}, "peered": {"_count": 1}, "ran": {"_count": 1}}, "on": {"_count": 31, "his": {"_count": 9}, "him": {"_count": 2}, "Harry": {"_count": 1}, "her": {"_count": 4}, "the": {"_count": 11}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 1}, "Malfoy": {"_count": 1}}, "the": {"_count": 40, "table": {"_count": 1}, "card": {"_count": 1}, "corner": {"_count": 9}, "key": {"_count": 2}, "binoculars": {"_count": 1}, "khaki": {"_count": 1}, "next": {"_count": 1}, "teacup": {"_count": 1}, "cup": {"_count": 1}, "Firebolt": {"_count": 2}, "hourglass": {"_count": 1}, "volume": {"_count": 1}, "parchment": {"_count": 1}, "piece": {"_count": 1}, "bedroom": {"_count": 1}, "heavy": {"_count": 1}, "runes": {"_count": 1}, "mirror": {"_count": 1}, "Prime": {"_count": 1}, "fire": {"_count": 1}, "doorknob": {"_count": 2}, "book": {"_count": 1}, "locket": {"_count": 1}, "bronze": {"_count": 1}, "orange": {"_count": 1}, "leaves": {"_count": 1}, "pages": {"_count": 2}, "stone": {"_count": 1}}, "right": {"_count": 15, "around": {"_count": 2}, "over": {"_count": 1}, "and": {"_count": 6}, "walked": {"_count": 1}, "down": {"_count": 1}, "into": {"_count": 2}, "past": {"_count": 1}, "at": {"_count": 1}}, "out": {"_count": 38, "shed": {"_count": 1}, "to": {"_count": 25}, "of": {"_count": 2}, "more": {"_count": 2}, "Vernon": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 2}, "differently": {"_count": 1}, "simply": {"_count": 1}, "not": {"_count": 1}, "there": {"_count": 1}}, "it": {"_count": 22, "off": {"_count": 1}, "worked": {"_count": 1}, "upside": {"_count": 6}, "wild": {"_count": 1}, "over": {"_count": 7}, "so": {"_count": 1}, "into": {"_count": 3}, "resolutely": {"_count": 1}, "thrice": {"_count": 1}}, "into": {"_count": 35, "warty": {"_count": 1}, "the": {"_count": 8}, "muddy": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 14}, "though": {"_count": 1}, "his": {"_count": 1}, "Magnolia": {"_count": 1}, "Privet": {"_count": 1}, "Bills": {"_count": 1}, "Hermione": {"_count": 1}, "Slughorn": {"_count": 1}, "Snape": {"_count": 1}, "open": {"_count": 1}, "darkness": {"_count": 1}}, "his": {"_count": 70, "back": {"_count": 18}, "head": {"_count": 16}, "teachers": {"_count": 1}, "broomstick": {"_count": 1}, "helmeted": {"_count": 1}, "friend": {"_count": 1}, "great": {"_count": 1}, "eyes": {"_count": 2}, "Firebolt": {"_count": 2}, "sharp": {"_count": 1}, "ugly": {"_count": 1}, "right": {"_count": 1}, "wand": {"_count": 6}, "Omnioculars": {"_count": 1}, "face": {"_count": 4}, "laugh": {"_count": 1}, "magical": {"_count": 1}, "blue": {"_count": 1}, "attention": {"_count": 3}, "scarlet": {"_count": 1}, "money": {"_count": 1}, "mind": {"_count": 1}, "mask": {"_count": 1}, "huge": {"_count": 1}, "thoughts": {"_count": 1}, "whole": {"_count": 1}}, "this": {"_count": 2, "news": {"_count": 1}, "way": {"_count": 1}}, "back": {"_count": 42, "to": {"_count": 34}, "into": {"_count": 5}, "took": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}}, "around": {"_count": 33, "and": {"_count": 12}, "however": {"_count": 1}, "to": {"_count": 6}, "quickly": {"_count": 1}, "surprised": {"_count": 1}, "in": {"_count": 2}, "seconds": {"_count": 1}, "strode": {"_count": 1}, "": {"_count": 4}, "still": {"_count": 1}, "Hermione": {"_count": 1}, "shaking": {"_count": 1}, "Ron": {"_count": 1}}, "wherever": {"_count": 1, "he": {"_count": 1}}, "slowly": {"_count": 9, "over": {"_count": 1}, "back": {"_count": 1}, "on": {"_count": 4}, "to": {"_count": 1}, "away": {"_count": 2}}, "very": {"_count": 4, "cold": {"_count": 1}, "quickly": {"_count": 1}, "slowly": {"_count": 1}, "pink": {"_count": 1}}, "in": {"_count": 14, "his": {"_count": 4}, "a": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}, "Harrys": {"_count": 1}, "unison": {"_count": 1}, "time": {"_count": 1}, "spite": {"_count": 1}, "silence": {"_count": 1}, "at": {"_count": 1}, "slow": {"_count": 1}}, "a": {"_count": 41, "nasty": {"_count": 3}, "corner": {"_count": 17}, "sick": {"_count": 1}, "vivid": {"_count": 1}, "burning": {"_count": 1}, "slightly": {"_count": 1}, "brighter": {"_count": 1}, "delicate": {"_count": 1}, "pale": {"_count": 1}, "tortured": {"_count": 1}, "page": {"_count": 4}, "sheet": {"_count": 1}, "deeper": {"_count": 1}, "very": {"_count": 1}, "bright": {"_count": 1}, "little": {"_count": 1}, "few": {"_count": 1}, "clear": {"_count": 1}, "horrorstruck": {"_count": 1}, "fiery": {"_count": 1}}, "light": {"_count": 1, "before": {"_count": 1}}, "white": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "her": {"_count": 20, "lamplike": {"_count": 2}, "blank": {"_count": 1}, "over": {"_count": 1}, "back": {"_count": 6}, "long": {"_count": 1}, "pale": {"_count": 1}, "face": {"_count": 3}, "head": {"_count": 1}, "protuberant": {"_count": 1}, "attention": {"_count": 1}, "beautiful": {"_count": 1}, "wand": {"_count": 1}}, "their": {"_count": 4, "backs": {"_count": 3}, "heads": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "emerald": {"_count": 3, "green": {"_count": 3}}, "away": {"_count": 46, "and": {"_count": 5}, "": {"_count": 6}, "from": {"_count": 15}, "to": {"_count": 3}, "smiling": {"_count": 2}, "leaving": {"_count": 1}, "walked": {"_count": 1}, "when": {"_count": 1}, "again": {"_count": 3}, "before": {"_count": 1}, "the": {"_count": 1}, "or": {"_count": 1}, "without": {"_count": 1}, "Harry": {"_count": 1}, "wishing": {"_count": 1}, "lighting": {"_count": 1}, "bitterly": {"_count": 1}, "there": {"_count": 1}}, "suddenly": {"_count": 4, "to": {"_count": 2}, "red": {"_count": 1}, "savage": {"_count": 1}}, "dull": {"_count": 1, "and": {"_count": 1}}, "abruptly": {"_count": 3, "and": {"_count": 2}, "from": {"_count": 1}}, "my": {"_count": 1, "my": {"_count": 1}}, "inside": {"_count": 1, "out": {"_count": 1}}, "speechless": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "another": {"_count": 1}}, "what": {"_count": 1, "had": {"_count": 1}}, "yellow": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 2, "in": {"_count": 1}, "was": {"_count": 1}}, "periwinkle": {"_count": 1, "blue": {"_count": 1}}, "frowning": {"_count": 1, "to": {"_count": 1}}, "sloping": {"_count": 1, "steeply": {"_count": 1}}, "again": {"_count": 7, "": {"_count": 1}, "to": {"_count": 3}, "toward": {"_count": 2}, "and": {"_count": 1}}, "he": {"_count": 2, "saw": {"_count": 1}, "pocketed": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "quickly": {"_count": 6, "to": {"_count": 5}, "": {"_count": 1}}, "Orange": {"_count": 1, "Longbottom": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "into": {"_count": 1}}, "those": {"_count": 1, "at": {"_count": 1}}, "squinting": {"_count": 1, "into": {"_count": 1}}, "intending": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 6, "the": {"_count": 5}, "all": {"_count": 1}}, "halfway": {"_count": 1, "along": {"_count": 1}}, "beaming": {"_count": 2, "to": {"_count": 1}, "broadly": {"_count": 1}}, "more": {"_count": 1, "like": {"_count": 1}}, "traitor": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "tail": {"_count": 2, "and": {"_count": 2}}, "Get": {"_count": 1, "out": {"_count": 1}}, "him": {"_count": 5, "funny": {"_count": 1}, "and": {"_count": 1}, "over": {"_count": 1}, "down": {"_count": 1}, "against": {"_count": 1}}, "gold": {"_count": 1, "and": {"_count": 1}}, "most": {"_count": 1, "cheerfully": {"_count": 1}}, "sharply": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "or": {"_count": 1}}, "Ron": {"_count": 3, "was": {"_count": 1}, "whiter": {"_count": 1}, "clicked": {"_count": 1}}, "inquiringly": {"_count": 1, "to": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "Snape": {"_count": 1, "into": {"_count": 1}}, "rather": {"_count": 1, "pink": {"_count": 1}}, "briefly": {"_count": 1, "red": {"_count": 1}}, "round": {"_count": 1, "": {"_count": 1}}, "red": {"_count": 8, "once": {"_count": 2}, "again": {"_count": 2}, "as": {"_count": 1}, "": {"_count": 3}}, "remarkably": {"_count": 1, "cold": {"_count": 1}}, "silently": {"_count": 1, "and": {"_count": 1}}, "left": {"_count": 8, "at": {"_count": 1}, "and": {"_count": 3}, "marched": {"_count": 1}, "taking": {"_count": 1}, "onto": {"_count": 1}, "streaked": {"_count": 1}}, "down": {"_count": 1, "by": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "curiously": {"_count": 2, "at": {"_count": 1}, "to": {"_count": 1}}, "full": {"_count": 1, "circle": {"_count": 1}}, "earth": {"_count": 1, "Harry": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "spy": {"_count": 2, "for": {"_count": 1}, "against": {"_count": 1}}, "upside": {"_count": 2, "down": {"_count": 2}}, "from": {"_count": 6, "Harry": {"_count": 1}, "Sirius": {"_count": 1}, "Tonks": {"_count": 1}, "turquoise": {"_count": 1}, "Uncle": {"_count": 1}, "faithful": {"_count": 1}}, "instantly": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 1, "else": {"_count": 1}}, "jet": {"_count": 1, "black": {"_count": 1}}, "at": {"_count": 5, "once": {"_count": 3}, "the": {"_count": 2}}, "gravely": {"_count": 1, "to": {"_count": 1}}, "pretty": {"_count": 1, "nasty": {"_count": 1}}, "gracefully": {"_count": 3, "the": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}}, "bubblegum": {"_count": 1, "pink": {"_count": 1}}, "still": {"_count": 1, "grimfaced": {"_count": 1}}, "brick": {"_count": 1, "red": {"_count": 1}}, "icy": {"_count": 1, "cold": {"_count": 1}}, "excitedly": {"_count": 1, "to": {"_count": 1}}, "upon": {"_count": 2, "each": {"_count": 1}, "its": {"_count": 1}}, "an": {"_count": 4, "even": {"_count": 1}, "ugly": {"_count": 2}, "expression": {"_count": 1}}, "almost": {"_count": 1, "at": {"_count": 1}}, "lamplike": {"_count": 1, "yellow": {"_count": 1}}, "miserably": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 6, "one": {"_count": 1}, "Harry": {"_count": 2}, "pale": {"_count": 1}, "those": {"_count": 1}, "he": {"_count": 1}}, "sideways": {"_count": 1, "apparently": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "scarlet": {"_count": 5, "with": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}}, "looked": {"_count": 1, "into": {"_count": 1}}, "squatly": {"_count": 1, "in": {"_count": 1}}, "automatically": {"_count": 2, "toward": {"_count": 1}, "left": {"_count": 1}}, "onto": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "slightly": {"_count": 2, "pink": {"_count": 2}}, "head": {"_count": 1, "over": {"_count": 1}}, "hissing": {"_count": 1, "furiously": {"_count": 1}}, "The": {"_count": 1, "Quibbler": {"_count": 1}}, "another": {"_count": 1, "corner": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "resolutely": {"_count": 1, "away": {"_count": 1}}, "bright": {"_count": 3, "red": {"_count": 3}}, "hopefully": {"_count": 1, "in": {"_count": 1}}, "purple": {"_count": 1, "and": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "smiling": {"_count": 1, "to": {"_count": 1}}, "exactly": {"_count": 1, "the": {"_count": 1}}, "clear": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "palest": {"_count": 1, "pink": {"_count": 1}}, "eagerly": {"_count": 1, "in": {"_count": 1}}, "blank": {"_count": 1, "she": {"_count": 1}}, "its": {"_count": 2, "pages": {"_count": 1}, "ugly": {"_count": 1}}, "pink": {"_count": 3, "it": {"_count": 1}, "": {"_count": 2}}, "just": {"_count": 1, "in": {"_count": 1}}, "faintly": {"_count": 1, "pink": {"_count": 1}}, "seventeen": {"_count": 1, "yet": {"_count": 1}}, "paler": {"_count": 1, "than": {"_count": 1}}, "green": {"_count": 1, "in": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "magically": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "its": {"_count": 1}}, "blonde": {"_count": 1, "for": {"_count": 1}}, "radish": {"_count": 1, "red": {"_count": 1}}, "immediately": {"_count": 1, "right": {"_count": 1}}, "them": {"_count": 1, "scarlet": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "pale": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "if": {"_count": 1, "possible": {"_count": 1}}, "ginger": {"_count": 1, "in": {"_count": 1}}, "instead": {"_count": 1, "to": {"_count": 1}}, "eleven": {"_count": 1, "the": {"_count": 1}}, "inward": {"_count": 1, "and": {"_count": 1}}, "corners": {"_count": 1, "in": {"_count": 1}}, "every": {"_count": 1, "eye": {"_count": 1}}, "hither": {"_count": 1, "and": {"_count": 1}}, "helpless": {"_count": 1, "to": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "nose": {"_count": 1, "in": {"_count": 1}}}, "affect": {"_count": 12, "them": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "whole": {"_count": 1}}, "me": {"_count": 2, "like": {"_count": 1}, "at": {"_count": 1}}, "you": {"_count": 2, "worse": {"_count": 1}, "with": {"_count": 1}}, "him": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 1}}, "the": {"_count": 2, "jobs": {"_count": 1}, "Muggles": {"_count": 1}}}, "How": {"_count": 535, "very": {"_count": 4, "wrong": {"_count": 1}, "touching": {"_count": 2}, "rude": {"_count": 1}}, "did": {"_count": 64, "you": {"_count": 40}, "he": {"_count": 9}, "I": {"_count": 1}, "Ginny": {"_count": 1}, "she": {"_count": 3}, "that": {"_count": 1}, "your": {"_count": 1}, "it": {"_count": 4}, "Katie": {"_count": 1}, "they": {"_count": 2}, "Snape": {"_count": 1}}, "could": {"_count": 43, "you": {"_count": 8}, "a": {"_count": 2}, "he": {"_count": 10}, "they": {"_count": 7}, "it": {"_count": 4}, "Scabbers": {"_count": 1}, "Dumbledore": {"_count": 2}, "Rita": {"_count": 1}, "such": {"_count": 1}, "we": {"_count": 1}, "Hagrid": {"_count": 1}, "Snape": {"_count": 1}, "she": {"_count": 1}, "Voldemort": {"_count": 1}, "Lord": {"_count": 1}, "the": {"_count": 1}}, "often": {"_count": 2, "had": {"_count": 1}, "do": {"_count": 1}}, "nice": {"_count": 3, "to": {"_count": 3}}, "can": {"_count": 32, "they": {"_count": 1}, "you": {"_count": 13}, "it": {"_count": 3}, "she": {"_count": 1}, "I": {"_count": 5}, "he": {"_count": 6}, "Dumbledore": {"_count": 1}, "that": {"_count": 1}, "Hogwarts": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "Avoid": {"_count": 1}}, "come": {"_count": 37, "Percy": {"_count": 1}, "you": {"_count": 6}, "yeh": {"_count": 1}, "I": {"_count": 2}, "youve": {"_count": 2}, "the": {"_count": 1}, "youre": {"_count": 7}, "Fred": {"_count": 1}, "": {"_count": 6}, "hes": {"_count": 2}, "Harry": {"_count": 1}, "Sturgis": {"_count": 1}, "we": {"_count": 1}, "she": {"_count": 1}, "all": {"_count": 1}, "Voldemort": {"_count": 1}, "people": {"_count": 1}, "they": {"_count": 1}}, "do": {"_count": 52, "you": {"_count": 40}, "we": {"_count": 5}, "I": {"_count": 4}, "those": {"_count": 1}, "that": {"_count": 1}, "they": {"_count": 1}}, "exactly": {"_count": 4, "do": {"_count": 1}, "Not": {"_count": 1}, "did": {"_count": 2}}, "will": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "are": {"_count": 37, "you": {"_count": 26}, "we": {"_count": 6}, "yeh": {"_count": 2}, "they": {"_count": 1}, "your": {"_count": 1}, "things": {"_count": 1}}, "many": {"_count": 26, "days": {"_count": 1}, "people": {"_count": 3}, "monsters": {"_count": 1}, "attacks": {"_count": 1}, "times": {"_count": 6}, "members": {"_count": 1}, "subscriptions": {"_count": 1}, "will": {"_count": 1}, "more": {"_count": 2}, "other": {"_count": 2}, "are": {"_count": 1}, "hours": {"_count": 1}, "": {"_count": 1}, "girls": {"_count": 1}, "cloaks": {"_count": 1}, "men": {"_count": 1}, "would": {"_count": 1}}, "long": {"_count": 17, "he": {"_count": 1}, "have": {"_count": 6}, "will": {"_count": 1}, "would": {"_count": 2}, "had": {"_count": 1}, "has": {"_count": 1}, "they": {"_count": 1}, "theyll": {"_count": 1}, "ago": {"_count": 1}, "it": {"_count": 1}, "do": {"_count": 1}}, "he": {"_count": 3, "had": {"_count": 2}, "could": {"_count": 1}}, "much": {"_count": 13, "had": {"_count": 1}, "OUCH": {"_count": 1}, "longer": {"_count": 2}, "power": {"_count": 1}, "more": {"_count": 3}, "further": {"_count": 1}, "time": {"_count": 1}, "did": {"_count": 2}, "do": {"_count": 1}}, "about": {"_count": 13, "it": {"_count": 2}, "\u2018We": {"_count": 1}, "Malfoy": {"_count": 1}, "a": {"_count": 2}, "these": {"_count": 1}, "having": {"_count": 1}, "giving": {"_count": 1}, "\u2018progress": {"_count": 1}, "\u2018pruning": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "they": {"_count": 2, "managed": {"_count": 1}, "fascinated": {"_count": 1}}, "dare": {"_count": 14, "you": {"_count": 11}, "he": {"_count": 2}, "yeh": {"_count": 1}}, "": {"_count": 15, "?": {"_count": 15}}, "does": {"_count": 8, "it": {"_count": 3}, "that": {"_count": 2}, "she": {"_count": 3}}, "touching": {"_count": 2, "": {"_count": 1}, "Snape": {"_count": 1}}, "strange": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "may": {"_count": 1, "I": {"_count": 1}}, "was": {"_count": 14, "it": {"_count": 5}, "I": {"_count": 1}, "your": {"_count": 1}, "she": {"_count": 1}, "detention": {"_count": 1}, "he": {"_count": 2}, "practice": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}}, "thick": {"_count": 3, "can": {"_count": 1}, "would": {"_count": 1}, "are": {"_count": 1}}, "on": {"_count": 6, "earth": {"_count": 6}}, "what": {"_count": 1, "where": {"_count": 1}}, "should": {"_count": 2, "I": {"_count": 2}}, "old": {"_count": 3, "is": {"_count": 2}, "was": {"_count": 1}}, "really": {"_count": 1, "corking": {"_count": 1}}, "dyou": {"_count": 21, "know": {"_count": 12}, "reckon": {"_count": 1}, "mean": {"_count": 1}, "expect": {"_count": 1}, "": {"_count": 1}, "explain": {"_count": 1}, "work": {"_count": 1}, "spell": {"_count": 1}, "think": {"_count": 1}, "feel": {"_count": 1}}, "is": {"_count": 10, "he": {"_count": 5}, "it": {"_count": 2}, "that": {"_count": 1}, "she": {"_count": 2}}, "how": {"_count": 5, "did": {"_count": 1}, "": {"_count": 1}, "nice": {"_count": 1}, "dare": {"_count": 1}, "may": {"_count": 1}}, "extraordinarily": {"_count": 1, "like": {"_count": 1}}, "I": {"_count": 1, "hoped": {"_count": 1}}, "else": {"_count": 3, "did": {"_count": 1}, "could": {"_count": 1}, "will": {"_count": 1}}, "extraordinary": {"_count": 1, "said": {"_count": 1}}, "am": {"_count": 3, "I": {"_count": 3}}, "were": {"_count": 2, "the": {"_count": 2}}, "big": {"_count": 3, "did": {"_count": 1}, "dyou": {"_count": 1}, "are": {"_count": 1}}, "ma": {"_count": 1, "": {"_count": 1}}, "cool": {"_count": 2, "is": {"_count": 1}, "will": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "James": {"_count": 1, "Potter": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "it": {"_count": 1}}, "this": {"_count": 1, "situation": {"_count": 1}}, "would": {"_count": 7, "you": {"_count": 3}, "it": {"_count": 3}, "Voldemort": {"_count": 1}}, "well": {"_count": 1, "I": {"_count": 1}}, "you": {"_count": 6, "felt": {"_count": 1}, "feel": {"_count": 1}, "doin": {"_count": 1}, "took": {"_count": 1}, "dare": {"_count": 1}, "expect": {"_count": 1}}, "lovely": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "had": {"_count": 4, "Dumbledore": {"_count": 1}, "he": {"_count": 2}, "Rita": {"_count": 1}}, "indeed": {"_count": 2, "": {"_count": 1}, "Neither": {"_count": 1}}, "has": {"_count": 2, "that": {"_count": 2}}, "Muggles": {"_count": 1, "can": {"_count": 1}}, "she": {"_count": 2, "got": {"_count": 1}, "can": {"_count": 1}}, "Far": {"_count": 1, "Will": {"_count": 1}}, "the": {"_count": 2, "Tornados": {"_count": 1}, "ruddy": {"_count": 1}}, "soon": {"_count": 3, "centaurs": {"_count": 1}, "Riddle": {"_count": 1}, "would": {"_count": 1}}, "charming": {"_count": 1, "Wormtail": {"_count": 1}}, "important": {"_count": 1, "we": {"_count": 1}}, "goods": {"_count": 1, "this": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "few": {"_count": 1, "wizards": {"_count": 1}}, "wonderful": {"_count": 1, "": {"_count": 1}}, "stupid": {"_count": 1, "they": {"_count": 1}}, "hollow": {"_count": 1, "those": {"_count": 1}}, "despicable": {"_count": 1, "does": {"_count": 1}}, "Grindelwald": {"_count": 1, "found": {"_count": 1}}, "fitting": {"_count": 1, "that": {"_count": 1}}, "quickly": {"_count": 1, "would": {"_count": 1}}, "longs": {"_count": 1, "this": {"_count": 1}}, "howre": {"_count": 1, "we": {"_count": 1}}, "neat": {"_count": 1, "how": {"_count": 1}}}, "wrong": {"_count": 243, "he": {"_count": 4, "was": {"_count": 2}, "said": {"_count": 1}, "thought": {"_count": 1}}, "": {"_count": 54, ".": {"_count": 36}, "!": {"_count": 3}, "?": {"_count": 15}}, "hands": {"_count": 5, "": {"_count": 3}, "he": {"_count": 1}, "and": {"_count": 1}}, "with": {"_count": 49, "not": {"_count": 1}, "his": {"_count": 2}, "them": {"_count": 2}, "everyone": {"_count": 1}, "stopping": {"_count": 1}, "the": {"_count": 6}, "your": {"_count": 2}, "Malfoys": {"_count": 1}, "him": {"_count": 10}, "it": {"_count": 5}, "Lupin": {"_count": 1}, "me": {"_count": 2}, "her": {"_count": 3}, "Hagrid": {"_count": 2}, "that": {"_count": 6}, "a": {"_count": 1}, "this": {"_count": 1}, "Albus": {"_count": 1}, "an": {"_count": 1}}, "sort": {"_count": 2, "": {"_count": 1}, "are": {"_count": 1}}, "side": {"_count": 3, "of": {"_count": 3}}, "did": {"_count": 1, "you": {"_count": 1}}, "for": {"_count": 1, "years": {"_count": 1}}, "Harry": {"_count": 5, "heard": {"_count": 1}, "is": {"_count": 1}, "called": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}}, "an": {"_count": 1, "now": {"_count": 1}}, "I": {"_count": 2, "was": {"_count": 1}, "dont": {"_count": 1}}, "boys": {"_count": 1, "very": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "fireplace": {"_count": 1, "But": {"_count": 1}}, "end": {"_count": 3, "of": {"_count": 3}}, "place": {"_count": 3, "at": {"_count": 3}}, "time": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}, "for": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "everything": {"_count": 1}, "Humphrey": {"_count": 1}}, "way": {"_count": 6, "about": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "up": {"_count": 1}}, "boy": {"_count": 2, "sir": {"_count": 1}, "mark": {"_count": 1}}, "But": {"_count": 1, "Hermione": {"_count": 1}}, "thing": {"_count": 4, "": {"_count": 3}, "to": {"_count": 1}}, "doors": {"_count": 1, "": {"_count": 1}}, "person": {"_count": 5, "said": {"_count": 2}, "the": {"_count": 1}, "": {"_count": 2}}, "right": {"_count": 1, "away": {"_count": 1}}, "his": {"_count": 3, "toad": {"_count": 1}, "reply": {"_count": 1}, "case": {"_count": 1}}, "said": {"_count": 5, "Lupin": {"_count": 2}, "Dumbledore": {"_count": 2}, "Hermione": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 2}}, "bed": {"_count": 1, "not": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "one": {"_count": 2, "reason": {"_count": 1}, "day": {"_count": 1}}, "move": {"_count": 1, "Peter": {"_count": 1}}, "about": {"_count": 4, "the": {"_count": 1}, "O": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 1}}, "111": {"_count": 1, "have": {"_count": 1}}, "however": {"_count": 1, "": {"_count": 1}}, "turning": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 4, "ally": {"_count": 1}, "be": {"_count": 1}, "suggest": {"_count": 2}}, "Mundungus": {"_count": 1, "but": {"_count": 1}}, "station": {"_count": 1, "despite": {"_count": 1}}, "Though": {"_count": 1, "I": {"_count": 1}}, "mumbled": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "footed": {"_count": 1, "": {"_count": 1}}, "ingredient": {"_count": 1, "for": {"_count": 1}}, "certainly": {"_count": 1, "not": {"_count": 1}}, "weight": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Roger": {"_count": 1, "Davies": {"_count": 1}}, "moment": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "Dolores": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "direction": {"_count": 4, "keep": {"_count": 1}, "apparently": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}}, "men": {"_count": 1, "for": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "there": {"_count": 1}, "has": {"_count": 1}}, "than": {"_count": 1, "being": {"_count": 1}}, "on": {"_count": 1, "both": {"_count": 1}}, "we": {"_count": 1, "really": {"_count": 1}}, "something": {"_count": 1, "eerie": {"_count": 1}}, "Harper": {"_count": 1, "had": {"_count": 1}}, "bottle": {"_count": 1, "wouldnt": {"_count": 1}}, "people": {"_count": 1, "into": {"_count": 1}}, "werent": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 3, "Slughorn": {"_count": 1}, "we": {"_count": 1}, "cause": {"_count": 1}}, "Dobby": {"_count": 1, "will": {"_count": 1}}, "places": {"_count": 1, "suggested": {"_count": 1}}, "of": {"_count": 1, "me": {"_count": 1}}, "oh": {"_count": 1, "please": {"_count": 1}}, "hes": {"_count": 1, "bound": {"_count": 1}}, "Lupin": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 2, "didnt": {"_count": 2}}, "Kreacher": {"_count": 1, "failed": {"_count": 1}}, "What": {"_count": 1, "he": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "didnt": {"_count": 1, "we": {"_count": 1}}, "dived": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 1, "wrong": {"_count": 1}}, "it": {"_count": 1, "doesnt": {"_count": 1}}, "reasons": {"_count": 1, "": {"_count": 1}}}, "drifting": {"_count": 27, "into": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "around": {"_count": 2, "a": {"_count": 1}, "lazily": {"_count": 1}}, "about": {"_count": 1, "talking": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "across": {"_count": 4, "it": {"_count": 1}, "the": {"_count": 3}}, "from": {"_count": 1, "Hagrids": {"_count": 1}}, "creepily": {"_count": 1, "along": {"_count": 1}}, "weirdly": {"_count": 2, "ahead": {"_count": 1}, "upward": {"_count": 1}}, "toward": {"_count": 2, "them": {"_count": 2}}, "in": {"_count": 2, "through": {"_count": 2}}, "a": {"_count": 1, "little": {"_count": 1}}, "away": {"_count": 2, "through": {"_count": 1}, "still": {"_count": 1}}, "disconcertingly": {"_count": 1, "through": {"_count": 1}}, "up": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "past": {"_count": 2, "the": {"_count": 2}}, "peacefully": {"_count": 1, "below": {"_count": 1}}}, "sleep": {"_count": 125, "but": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "": {"_count": 48, ".": {"_count": 46}, "?": {"_count": 1}, "!": {"_count": 1}}, "Harry": {"_count": 3, "ticked": {"_count": 1}, "felt": {"_count": 1}, "rolled": {"_count": 1}}, "in": {"_count": 9, "your": {"_count": 1}, "the": {"_count": 4}, "one": {"_count": 1}, "my": {"_count": 1}, "Rons": {"_count": 1}, "Professor": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "all": {"_count": 2, "night": {"_count": 1}, "right": {"_count": 1}}, "Hagrid": {"_count": 1, "suddenly": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 1}, "all": {"_count": 2}, "last": {"_count": 1}}, "Excuse": {"_count": 1, "me": {"_count": 1}}, "with": {"_count": 1, "this": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "even": {"_count": 2, "if": {"_count": 1}, "though": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "until": {"_count": 1, "daybreak": {"_count": 1}}, "Ron": {"_count": 1, "you": {"_count": 1}}, "his": {"_count": 2, "fantasies": {"_count": 1}, "body": {"_count": 1}}, "and": {"_count": 8, "then": {"_count": 1}, "it": {"_count": 1}, "almost": {"_count": 1}, "allowing": {"_count": 1}, "peace": {"_count": 1}, "awake": {"_count": 1}, "his": {"_count": 1}, "snored": {"_count": 1}}, "prevent": {"_count": 1, "himself": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "less": {"_count": 1, "soundly": {"_count": 1}}, "broke": {"_count": 1, "over": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "so": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 2, "George": {"_count": 1}, "Sirius": {"_count": 1}}, "there": {"_count": 1, "but": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "before": {"_count": 1, "dinner": {"_count": 1}}, "waking": {"_count": 1, "much": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "every": {"_count": 1, "night": {"_count": 1}}, "empty": {"_count": 1, "it": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "night": {"_count": 1}, "she": {"_count": 1}}, "during": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "here": {"_count": 1}}, "to": {"_count": 1, "come": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "late": {"_count": 1, "on": {"_count": 1}}, "too": {"_count": 1, "Dobby": {"_count": 1}}, "well": {"_count": 1, "that": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "once": {"_count": 1, "more": {"_count": 1}}, "Harrys": {"_count": 1, "senses": {"_count": 1}}, "looking": {"_count": 1, "forward": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}}, "showing": {"_count": 94, "no": {"_count": 3, "sign": {"_count": 2}, "interest": {"_count": 1}}, "people": {"_count": 2, "in": {"_count": 1}, "who": {"_count": 1}}, "them": {"_count": 9, "": {"_count": 2}, "his": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 4}, "to": {"_count": 1}}, "Slytherin": {"_count": 1, "": {"_count": 1}}, "pointed": {"_count": 2, "fangs": {"_count": 1}, "teeth": {"_count": 1}}, "the": {"_count": 4, "Slytherin": {"_count": 1}, "strain": {"_count": 1}, "class": {"_count": 1}, "door": {"_count": 1}}, "mossy": {"_count": 1, "teeth": {"_count": 1}}, "off": {"_count": 11, "said": {"_count": 1}, "when": {"_count": 2}, "your": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "with": {"_count": 1}, "whenever": {"_count": 1}, "for": {"_count": 2}}, "Professor": {"_count": 1, "Sprout": {"_count": 1}}, "Ginny": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 5, "to": {"_count": 3}, "sneered": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 2, "another": {"_count": 1}, "minute": {"_count": 1}}, "Harry": {"_count": 2, "my": {"_count": 1}, "a": {"_count": 1}}, "every": {"_count": 1, "detail": {"_count": 1}}, "what": {"_count": 1, "animal": {"_count": 1}}, "him": {"_count": 4, "how": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}}, "Mr": {"_count": 1, "Bagman": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 1, "a": {"_count": 1}}, "Parvati": {"_count": 1, "her": {"_count": 1}}, "you": {"_count": 5, "": {"_count": 2}, "the": {"_count": 1}, "something": {"_count": 1}, "all": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "how": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "nerves": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "yes": {"_count": 1}}, "any": {"_count": 1, "sign": {"_count": 1}}, "signs": {"_count": 2, "of": {"_count": 2}}, "moral": {"_count": 1, "fiber": {"_count": 1}}, "Snape": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 3, "equally": {"_count": 2}, "owl": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 2, "small": {"_count": 1}, "his": {"_count": 1}}, "brilliantly": {"_count": 1, "blue": {"_count": 1}}, "us": {"_count": 1, "any": {"_count": 1}}, "then": {"_count": 1, "moving": {"_count": 1}}, "a": {"_count": 2, "picture": {"_count": 1}, "certain": {"_count": 1}}, "up": {"_count": 1, "more": {"_count": 1}}, "wizards": {"_count": 1, "faces": {"_count": 1}}, "in": {"_count": 1, "Ron": {"_count": 1}}, "his": {"_count": 2, "first": {"_count": 1}, "ugly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "much": {"_count": 1, "too": {"_count": 1}}, "Borgin": {"_count": 1, "who": {"_count": 1}}, "Ogden": {"_count": 1, "the": {"_count": 1}}, "less": {"_count": 1, "resolution": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "yellow": {"_count": 1, "halfbrick": {"_count": 1}}, "James": {"_count": 1, "and": {"_count": 1}}}, "sleepiness": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "statue": {"_count": 59, "its": {"_count": 1, "eyes": {"_count": 1}}, "of": {"_count": 14, "Gregory": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 5}, "Boris": {"_count": 2}, "Lachlan": {"_count": 1}, "Wilfred": {"_count": 1}, "black": {"_count": 1}, "three": {"_count": 1}, "white": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "on": {"_count": 2, "the": {"_count": 2}}, "high": {"_count": 1, "as": {"_count": 1}}, "Fawkes": {"_count": 1, "swaying": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}, "and": {"_count": 5, "pushing": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "pulled": {"_count": 1}}, "he": {"_count": 1, "heard": {"_count": 1}}, "a": {"_count": 1, "gigantic": {"_count": 1}}, "were": {"_count": 2, "thick": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "night": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "flung": {"_count": 1, "out": {"_count": 1}}, "thrust": {"_count": 1, "Harry": {"_count": 1}}, "guard": {"_count": 1, "but": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 2}}, "when": {"_count": 1, "Professor": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "land": {"_count": 1}}, "had": {"_count": 2, "turned": {"_count": 1}, "concealed": {"_count": 1}}, "pressed": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "stood": {"_count": 1, "beside": {"_count": 1}}, "in": {"_count": 1, "Ravenclaw": {"_count": 1}}}, "fixed": {"_count": 105, "unblinkingly": {"_count": 3, "on": {"_count": 1}, "upon": {"_count": 2}}, "Dumbledore": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 3, "with": {"_count": 3}}, "on": {"_count": 22, "the": {"_count": 8}, "Harry": {"_count": 5}, "a": {"_count": 2}, "Harrys": {"_count": 1}, "Scabbers": {"_count": 1}, "Dumbledore": {"_count": 1}, "Lavender": {"_count": 1}, "Sirius": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "a": {"_count": 1, "pair": {"_count": 1}}, "it": {"_count": 6, "it": {"_count": 1}, "all": {"_count": 2}, "for": {"_count": 1}, "nice": {"_count": 1}, "at": {"_count": 1}}, "that": {"_count": 1, "Bludger": {"_count": 1}}, "course": {"_count": 1, "there": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "his": {"_count": 3, "cold": {"_count": 1}, "eyes": {"_count": 2}}, "meaningfully": {"_count": 1, "on": {"_count": 1}}, "him": {"_count": 2, "best": {"_count": 1}, "with": {"_count": 1}}, "insolently": {"_count": 1, "on": {"_count": 1}}, "maliciously": {"_count": 1, "on": {"_count": 1}}, "upon": {"_count": 34, "the": {"_count": 10}, "his": {"_count": 3}, "him": {"_count": 2}, "Harrys": {"_count": 3}, "Voldemort": {"_count": 2}, "Harry": {"_count": 2}, "a": {"_count": 1}, "this": {"_count": 1}, "Narcissas": {"_count": 1}, "Arnold": {"_count": 1}, "it": {"_count": 1}, "Voldemorts": {"_count": 1}, "matters": {"_count": 1}, "Fleur": {"_count": 1}, "Mundungus": {"_count": 1}, "something": {"_count": 1}, "Professor": {"_count": 1}, "Nagini": {"_count": 1}}, "her": {"_count": 1, "nose": {"_count": 1}}, "the": {"_count": 3, "clocks": {"_count": 1}, "Prime": {"_count": 1}, "broken": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "directly": {"_count": 1, "upon": {"_count": 1}}, "quivering": {"_count": 1, "upon": {"_count": 1}}, "itself": {"_count": 1, "upon": {"_count": 1}}, "ahead": {"_count": 1, "as": {"_count": 1}}, "intently": {"_count": 1, "upon": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "threateningly": {"_count": 1, "upon": {"_count": 1}}, "resolutely": {"_count": 1, "on": {"_count": 1}}, "down": {"_count": 1, "when": {"_count": 1}}, "alike": {"_count": 1, "upon": {"_count": 1}}, "your": {"_count": 1, "ribs": {"_count": 1}}, "pitilessly": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "blank": {"_count": 1, "and": {"_count": 1}}}, "unblinkingly": {"_count": 11, "on": {"_count": 1, "the": {"_count": 1}}, "upward": {"_count": 1, "then": {"_count": 1}}, "at": {"_count": 3, "Ron": {"_count": 2}, "the": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "upon": {"_count": 2, "Harrys": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "through": {"_count": 1, "those": {"_count": 1}}, "Harry": {"_count": 1, "gazed": {"_count": 1}}}, "quiver": {"_count": 8, "when": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 3, "arrows": {"_count": 2}, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "whatever": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}}, "slammed": {"_count": 76, "on": {"_count": 3, "the": {"_count": 3}}, "the": {"_count": 30, "door": {"_count": 22}, "album": {"_count": 1}, "portrait": {"_count": 1}, "window": {"_count": 1}, "sliding": {"_count": 1}, "kitchen": {"_count": 1}, "compartment": {"_count": 1}, "lid": {"_count": 1}, "dungeon": {"_count": 1}}, "into": {"_count": 7, "a": {"_count": 1}, "the": {"_count": 6}}, "them": {"_count": 1, "down": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "his": {"_count": 4, "foot": {"_count": 1}, "bedroom": {"_count": 1}, "bag": {"_count": 1}, "fist": {"_count": 1}}, "The": {"_count": 1, "Standard": {"_count": 1}}, "him": {"_count": 3, "to": {"_count": 1}, "against": {"_count": 1}, "into": {"_count": 1}}, "shut": {"_count": 4, "Ron": {"_count": 1}, "behind": {"_count": 2}, "and": {"_count": 1}}, "it": {"_count": 4, "so": {"_count": 1}, "shut": {"_count": 2}, "down": {"_count": 1}}, "her": {"_count": 1, "Arithmancy": {"_count": 1}}, "a": {"_count": 2, "large": {"_count": 1}, "copy": {"_count": 1}}, "against": {"_count": 1, "it": {"_count": 1}}, "behind": {"_count": 2, "them": {"_count": 2}}, "down": {"_count": 2, "her": {"_count": 1}, "three": {"_count": 1}}, "backward": {"_count": 1, "into": {"_count": 1}}, "onto": {"_count": 1, "hard": {"_count": 1}}, "hard": {"_count": 1, "onto": {"_count": 1}}, "cellar": {"_count": 1, "door": {"_count": 1}}, "Harrys": {"_count": 1, "glasses": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "nor": {"_count": 143, "when": {"_count": 1, "two": {"_count": 1}}, "as": {"_count": 4, "a": {"_count": 1}, "comfortable": {"_count": 1}, "well": {"_count": 1}, "far": {"_count": 1}}, "that": {"_count": 5, "he": {"_count": 2}, "Fudge": {"_count": 1}, "Azkabans": {"_count": 1}, "it": {"_count": 1}}, "Hermione": {"_count": 14, "showed": {"_count": 1}, "explained": {"_count": 1}, "felt": {"_count": 1}, "spoke": {"_count": 2}, "seemed": {"_count": 1}, "answered": {"_count": 3}, "was": {"_count": 2}, "wished": {"_count": 1}, "could": {"_count": 1}, "smiled": {"_count": 1}}, "did": {"_count": 12, "they": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 5}, "I": {"_count": 1}, "any": {"_count": 2}, "Harry": {"_count": 1}, "anybody": {"_count": 1}}, "giant": {"_count": 1, "holds": {"_count": 1}}, "the": {"_count": 7, "hedge": {"_count": 1}, "startling": {"_count": 1}, "necklace": {"_count": 2}, "fact": {"_count": 1}, "day": {"_count": 1}, "slightly": {"_count": 1}}, "with": {"_count": 2, "me": {"_count": 1}, "ours": {"_count": 1}}, "any": {"_count": 6, "prefects": {"_count": 1}, "hint": {"_count": 1}, "of": {"_count": 1}, "kind": {"_count": 1}, "family": {"_count": 1}, "beast": {"_count": 1}}, "had": {"_count": 3, "Gryffindor": {"_count": 1}, "he": {"_count": 2}}, "hair": {"_count": 1, "of": {"_count": 1}}, "put": {"_count": 2, "it": {"_count": 1}, "poison": {"_count": 1}}, "Percy": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "spoke": {"_count": 2, "": {"_count": 2}}, "late": {"_count": 1, "at": {"_count": 1}}, "was": {"_count": 4, "she": {"_count": 2}, "it": {"_count": 1}, "number": {"_count": 1}}, "thankfully": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "Harry": {"_count": 4, "spoke": {"_count": 2}, "answered": {"_count": 1}, "nor": {"_count": 1}}, "could": {"_count": 2, "he": {"_count": 2}}, "of": {"_count": 2, "the": {"_count": 1}, "anyone": {"_count": 1}}, "green": {"_count": 1, "but": {"_count": 1}}, "cared": {"_count": 4, "": {"_count": 1}, "what": {"_count": 2}, "that": {"_count": 1}}, "are": {"_count": 2, "a": {"_count": 1}, "our": {"_count": 1}}, "Ron": {"_count": 5, "had": {"_count": 2}, "seemed": {"_count": 1}, "was": {"_count": 1}, "bought": {"_count": 1}}, "worried": {"_count": 1, "on": {"_count": 1}}, "does": {"_count": 1, "anyone": {"_count": 1}}, "tail": {"_count": 1, "of": {"_count": 1}}, "liquid": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "important": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "relieved": {"_count": 1, "by": {"_count": 1}}, "Harrys": {"_count": 1, "could": {"_count": 1}}, "to": {"_count": 2, "tell": {"_count": 1}, "get": {"_count": 1}}, "his": {"_count": 2, "advice": {"_count": 1}, "fathers": {"_count": 1}}, "Lupin": {"_count": 1, "spoke": {"_count": 1}}, "died": {"_count": 1, "for": {"_count": 1}}, "see": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 2, "you": {"_count": 2}}, "Nevilles": {"_count": 1, "parents": {"_count": 1}}, "mad": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "true": {"_count": 1, "": {"_count": 1}}, "heard": {"_count": 1, "": {"_count": 1}}, "gas": {"_count": 1, "": {"_count": 1}}, "mine": {"_count": 1, "have": {"_count": 1}}, "Marvolo": {"_count": 1, "nor": {"_count": 1}}, "tolerated": {"_count": 1, "at": {"_count": 1}}, "do": {"_count": 1, "I": {"_count": 1}}, "dislike": {"_count": 1, "Severus": {"_count": 1}}, "giving": {"_count": 1, "any": {"_count": 1}}, "what": {"_count": 1, "Mrs": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "give": {"_count": 1, "direction": {"_count": 1}}, "McLaggen": {"_count": 1, "could": {"_count": 1}}, "can": {"_count": 2, "I": {"_count": 1}, "it": {"_count": 1}}, "were": {"_count": 2, "yer": {"_count": 1}, "there": {"_count": 1}}, "why": {"_count": 1, "it": {"_count": 1}}, "about": {"_count": 1, "any": {"_count": 1}}, "Hestia": {"_count": 1, "seemed": {"_count": 1}}, "by": {"_count": 1, "any": {"_count": 1}}, "Grindelwald": {"_count": 1, "ever": {"_count": 1}}, "Rons": {"_count": 1, "persistent": {"_count": 1}}, "Bogrod": {"_count": 1, "showed": {"_count": 1}}, "how": {"_count": 1, "this": {"_count": 1}}, "denied": {"_count": 1, "it": {"_count": 1}}, "curse": {"_count": 1, "could": {"_count": 1}}, "truly": {"_count": 1, "flesh": {"_count": 1}}, "cold": {"_count": 1, "but": {"_count": 1}}, "tell": {"_count": 1, "whose": {"_count": 1}}}, "swooped": {"_count": 39, "overhead": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 3, "and": {"_count": 2}, "through": {"_count": 1}}, "suddenly": {"_count": 2, "at": {"_count": 1}, "from": {"_count": 1}}, "out": {"_count": 2, "cursing": {"_count": 1}, "again": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "down": {"_count": 10, "at": {"_count": 1}, "upon": {"_count": 5}, "on": {"_count": 3}, "in": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "spiraled": {"_count": 1, "zigzagged": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "past": {"_count": 2, "Harry": {"_count": 1}, "in": {"_count": 1}}, "away": {"_count": 1, "batlike": {"_count": 1}}, "back": {"_count": 2, "out": {"_count": 1}, "into": {"_count": 1}}, "around": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "low": {"_count": 1, "over": {"_count": 1}}, "plunging": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "pulled": {"_count": 1}}, "as": {"_count": 1, "low": {"_count": 1}}}, "In": {"_count": 303, "fact": {"_count": 38, "it": {"_count": 5}, "he": {"_count": 3}, "Harry": {"_count": 3}, "Id": {"_count": 1}, "I": {"_count": 6}, "by": {"_count": 1}, "the": {"_count": 7}, "manylegged": {"_count": 1}, "says": {"_count": 1}, "compared": {"_count": 2}, "for": {"_count": 1}, "unless": {"_count": 1}, "": {"_count": 1}, "being": {"_count": 1}, "his": {"_count": 1}, "bring": {"_count": 1}, "Im": {"_count": 1}, "when": {"_count": 1}}, "his": {"_count": 7, "vast": {"_count": 1}, "anger": {"_count": 1}, "dream": {"_count": 1}, "eagerness": {"_count": 1}, "minds": {"_count": 2}, "desperation": {"_count": 1}}, "the": {"_count": 82, "car": {"_count": 1}, "back": {"_count": 1}, "end": {"_count": 11}, "meantime": {"_count": 9}, "weeks": {"_count": 1}, "very": {"_count": 4}, "few": {"_count": 1}, "lounge": {"_count": 1}, "closet": {"_count": 1}, "field": {"_count": 1}, "blink": {"_count": 1}, "relative": {"_count": 1}, "small": {"_count": 1}, "second": {"_count": 3}, "shock": {"_count": 1}, "corner": {"_count": 2}, "bed": {"_count": 1}, "living": {"_count": 1}, "middle": {"_count": 3}, "ones": {"_count": 1}, "tournament": {"_count": 1}, "Top": {"_count": 1}, "light": {"_count": 1}, "past": {"_count": 2}, "flash": {"_count": 1}, "old": {"_count": 1}, "complete": {"_count": 1}, "days": {"_count": 1}, "impostor": {"_count": 1}, "infinitesimal": {"_count": 1}, "kitchen": {"_count": 1}, "Department": {"_count": 1}, "time": {"_count": 1}, "same": {"_count": 1}, "hang": {"_count": 1}, "immediate": {"_count": 1}, "falling": {"_count": 1}, "dreams": {"_count": 1}, "air": {"_count": 1}, "distance": {"_count": 1}, "summer": {"_count": 1}, "midst": {"_count": 1}, "dim": {"_count": 1}, "silence": {"_count": 2}, "front": {"_count": 1}, "cabinet": {"_count": 1}, "woods": {"_count": 1}, "bag": {"_count": 1}, "": {"_count": 1}, "split": {"_count": 1}, "Pensieve": {"_count": 1}, "darkness": {"_count": 1}, "pitchblackness": {"_count": 1}, "case": {"_count": 1}}, "danger": {"_count": 1, "of": {"_count": 1}}, "me": {"_count": 1, "third": {"_count": 1}}, "front": {"_count": 4, "of": {"_count": 3}, "was": {"_count": 1}}, "here": {"_count": 6, "": {"_count": 4}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "a": {"_count": 28, "low": {"_count": 1}, "great": {"_count": 1}, "matter": {"_count": 4}, "manner": {"_count": 1}, "few": {"_count": 3}, "moment": {"_count": 2}, "lastditch": {"_count": 1}, "desperate": {"_count": 1}, "bizarre": {"_count": 1}, "minute": {"_count": 1}, "Muggle": {"_count": 1}, "surprise": {"_count": 1}, "far": {"_count": 1}, "corner": {"_count": 1}, "brief": {"_count": 1}, "vain": {"_count": 1}, "minutes": {"_count": 1}, "front": {"_count": 1}, "a": {"_count": 1}, "flutter": {"_count": 1}, "list": {"_count": 1}, "distant": {"_count": 1}}, "an": {"_count": 6, "hours": {"_count": 1}, "instant": {"_count": 3}, "almost": {"_count": 1}, "attempt": {"_count": 1}}, "soccer": {"_count": 1, "you": {"_count": 1}}, "stinking": {"_count": 1, "Slytherin": {"_count": 1}}, "Romania": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 7, "night": {"_count": 1}, "hand": {"_count": 1}, "bound": {"_count": 1}, "swift": {"_count": 3}, "spiraling": {"_count": 1}}, "years": {"_count": 1, "to": {"_count": 1}}, "their": {"_count": 3, "nervous": {"_count": 1}, "confusion": {"_count": 1}, "rightful": {"_count": 1}}, "fourth": {"_count": 1, "place": {"_count": 1}}, "that": {"_count": 8, "case": {"_count": 4}, "room": {"_count": 1}, "way": {"_count": 1}, "instant": {"_count": 1}, "magazine": {"_count": 1}}, "Gambol": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "spite": {"_count": 9, "of": {"_count": 9}}, "seconds": {"_count": 3, "he": {"_count": 3}}, "September": {"_count": 2, "of": {"_count": 2}}, "my": {"_count": 6, "day": {"_count": 1}, "fifth": {"_count": 1}, "office": {"_count": 1}, "dream": {"_count": 1}, "bag": {"_count": 1}, "pocket": {"_count": 1}}, "trouble": {"_count": 1, "": {"_count": 1}}, "Flourish": {"_count": 1, "and": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 2, "get": {"_count": 1}, "come": {"_count": 1}}, "Sites": {"_count": 1, "of": {"_count": 1}}, "no": {"_count": 1, "time": {"_count": 1}}, "case": {"_count": 4, "some": {"_count": 1}, "you": {"_count": 2}, "it": {"_count": 1}}, "complete": {"_count": 1, "disarray": {"_count": 1}}, "our": {"_count": 2, "dormitory": {"_count": 1}, "day": {"_count": 1}}, "what": {"_count": 2, "seemed": {"_count": 1}, "way": {"_count": 1}}, "any": {"_count": 11, "case": {"_count": 11}}, "broad": {"_count": 1, "daylight": {"_count": 1}}, "some": {"_count": 1, "trepidation": {"_count": 1}}, "excellent": {"_count": 1, "form": {"_count": 1}}, "Professor": {"_count": 1, "Lockharts": {"_count": 1}}, "tribute": {"_count": 1, "to": {"_count": 1}}, "conversation": {"_count": 1, "with": {"_count": 1}}, "truth": {"_count": 3, "he": {"_count": 2}, "his": {"_count": 1}}, "unison": {"_count": 1, "the": {"_count": 1}}, "second": {"_count": 1, "place": {"_count": 1}}, "reverse": {"_count": 1, "order": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "addition": {"_count": 1, "to": {"_count": 1}}, "your": {"_count": 3, "admirable": {"_count": 1}, "opinion": {"_count": 1}, "mums": {"_count": 1}}, "times": {"_count": 1, "of": {"_count": 1}}, "twos": {"_count": 2, "and": {"_count": 2}}, "her": {"_count": 1, "office": {"_count": 1}}, "St": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 1, "red": {"_count": 1}}, "there": {"_count": 2, "of": {"_count": 1}, "whispered": {"_count": 1}}, "spidery": {"_count": 1, "writing": {"_count": 1}}, "this": {"_count": 3, "case": {"_count": 2}, "Muggle": {"_count": 1}}, "other": {"_count": 4, "words": {"_count": 4}}, "private": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 1, "Malkins": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "both": {"_count": 1, "cases": {"_count": 1}}, "contrast": {"_count": 1, "to": {"_count": 1}}, "silence": {"_count": 3, "Dumbledore": {"_count": 1}, "they": {"_count": 1}, "both": {"_count": 1}}, "Borgin": {"_count": 1, "and": {"_count": 1}}, "its": {"_count": 1, "place": {"_count": 1}}, "fairness": {"_count": 1, "to": {"_count": 1}}, "time": {"_count": 1, "this": {"_count": 1}}, "person": {"_count": 1, "Rita": {"_count": 1}}, "short": {"_count": 2, "Pius": {"_count": 1}, "the": {"_count": 1}}, "desperation": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "which": {"_count": 1, "case": {"_count": 1}}, "general": {"_count": 1, "however": {"_count": 1}}, "living": {"_count": 1, "memory": {"_count": 1}}, "in": {"_count": 1, "return": {"_count": 1}}, "looks": {"_count": 1, "perhaps": {"_count": 1}}, "opening": {"_count": 1, "them": {"_count": 1}}}, "midnight": {"_count": 55, "before": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 18}, "?": {"_count": 2}, "!": {"_count": 1}}, "and": {"_count": 5, "learn": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 2}, "though": {"_count": 1}}, "Ickle": {"_count": 1, "Firsties": {"_count": 1}}, "when": {"_count": 5, "the": {"_count": 1}, "Fred": {"_count": 1}, "Harry": {"_count": 2}, "Professor": {"_count": 1}}, "on": {"_count": 2, "Saturday": {"_count": 2}}, "up": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "me": {"_count": 1}}, "would": {"_count": 1, "mean": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "everyone": {"_count": 1, "gave": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "said": {"_count": 1}}, "where": {"_count": 1, "is": {"_count": 1}}, "Ill": {"_count": 1, "need": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "secret": {"_count": 1, "D": {"_count": 1}}, "much": {"_count": 1, "less": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "blue": {"_count": 2, "witchs": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 1, "need": {"_count": 1}}, "so": {"_count": 2, "youll": {"_count": 1}, "we": {"_count": 1}}, "with": {"_count": 1, "indecent": {"_count": 1}}, "ter": {"_count": 1, "gimme": {"_count": 1}}}, "A": {"_count": 1136, "man": {"_count": 4, "appeared": {"_count": 1}, "was": {"_count": 2}, "stood": {"_count": 1}}, "fine": {"_count": 5, "thing": {"_count": 1}, "example": {"_count": 1}, "wand": {"_count": 1}, "misty": {"_count": 1}, "film": {"_count": 1}}, "what": {"_count": 8, "": {"_count": 7}, "exactly": {"_count": 1}}, "lemon": {"_count": 1, "drop": {"_count": 1}}, "letter": {"_count": 4, "": {"_count": 2}, "perhaps": {"_count": 1}, "lay": {"_count": 1}}, "low": {"_count": 3, "rumbling": {"_count": 1}, "soft": {"_count": 1}, "and": {"_count": 1}}, "breeze": {"_count": 1, "ruffled": {"_count": 1}}, "tiny": {"_count": 6, "man": {"_count": 1}, "wizard": {"_count": 1}, "dot": {"_count": 1}, "boy": {"_count": 1}, "pair": {"_count": 1}, "white": {"_count": 1}}, "wildlooking": {"_count": 1, "old": {"_count": 1}}, "bald": {"_count": 1, "man": {"_count": 1}}, "toothless": {"_count": 1, "old": {"_count": 1}}, "giant": {"_count": 6, "of": {"_count": 1}, "snake": {"_count": 1}, "spider": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "stood": {"_count": 1}}, "braver": {"_count": 1, "man": {"_count": 1}}, "wizard": {"_count": 5, "o": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "whos": {"_count": 1}, "young": {"_count": 1}}, "Muggle": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "scandal": {"_count": 1, "": {"_count": 1}}, "History": {"_count": 24, "of": {"_count": 13}, "": {"_count": 6}, "have": {"_count": 1}, "anyway": {"_count": 1}, "mention": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "Beginners": {"_count": 2, "Guide": {"_count": 2}}, "Guide": {"_count": 4, "to": {"_count": 4}}, "few": {"_count": 58, "old": {"_count": 1}, "people": {"_count": 8}, "embers": {"_count": 1}, "seconds": {"_count": 6}, "feet": {"_count": 1}, "years": {"_count": 2}, "cauldrons": {"_count": 1}, "curious": {"_count": 1}, "of": {"_count": 10}, "sparks": {"_count": 1}, "more": {"_count": 3}, "moments": {"_count": 4}, "seats": {"_count": 2}, "seemed": {"_count": 1}, "had": {"_count": 1}, "hexes": {"_count": 1}, "minutes": {"_count": 4}, "other": {"_count": 1}, "students": {"_count": 1}, "": {"_count": 1}, "rubies": {"_count": 1}, "days": {"_count": 3}, "windows": {"_count": 1}, "large": {"_count": 1}, "Order": {"_count": 1}}, "little": {"_count": 20, "man": {"_count": 1}, "more": {"_count": 1}, "way": {"_count": 3}, "disappointing": {"_count": 1}, "farther": {"_count": 2}, "break": {"_count": 1}, "puzzled": {"_count": 1}, "taken": {"_count": 1}, "less": {"_count": 1}, "tuftyhaired": {"_count": 1}, "puff": {"_count": 1}, "pink": {"_count": 1}, "owl": {"_count": 1}, "extra": {"_count": 1}, "crease": {"_count": 1}, "smile": {"_count": 1}, "later": {"_count": 1}}, "pale": {"_count": 2, "young": {"_count": 1}, "boy": {"_count": 1}}, "plump": {"_count": 2, "woman": {"_count": 1}, "witch": {"_count": 1}}, "treasure": {"_count": 1, "that": {"_count": 1}}, "pair": {"_count": 8, "of": {"_count": 8}}, "lot": {"_count": 6, "of": {"_count": 6}}, "magic": {"_count": 2, "wand": {"_count": 1}, "beyond": {"_count": 1}}, "single": {"_count": 5, "wand": {"_count": 1}, "tear": {"_count": 1}, "dot": {"_count": 1}, "cobweb": {"_count": 1}, "huge": {"_count": 1}}, "tinkling": {"_count": 2, "bell": {"_count": 1}, "doorbell": {"_count": 1}}, "scarlet": {"_count": 1, "steam": {"_count": 1}}, "sign": {"_count": 2, "overhead": {"_count": 1}, "had": {"_count": 1}}, "boy": {"_count": 6, "with": {"_count": 1}, "of": {"_count": 1}, "walked": {"_count": 1}, "in": {"_count": 1}, "like": {"_count": 1}, "was": {"_count": 1}}, "minute": {"_count": 7, "All": {"_count": 1}, "later": {"_count": 4}, "passed": {"_count": 1}, "ago": {"_count": 1}}, "whistle": {"_count": 2, "sounded": {"_count": 1}, "had": {"_count": 1}}, "voice": {"_count": 6, "echoed": {"_count": 1}, "suddenly": {"_count": 1}, "came": {"_count": 1}, "nearby": {"_count": 1}, "issued": {"_count": 1}, "": {"_count": 1}}, "tall": {"_count": 7, "blackhaired": {"_count": 2}, "one": {"_count": 1}, "black": {"_count": 1}, "figure": {"_count": 1}, "skinny": {"_count": 1}, "thin": {"_count": 1}}, "test": {"_count": 1, "": {"_count": 1}}, "ghost": {"_count": 2, "wearing": {"_count": 1}, "as": {"_count": 1}}, "rip": {"_count": 1, "near": {"_count": 1}}, "smarter": {"_count": 1, "hat": {"_count": 1}}, "pinkfaced": {"_count": 1, "girl": {"_count": 1}}, "moments": {"_count": 1, "pause": {"_count": 1}}, "horrible": {"_count": 3, "thought": {"_count": 2}, "half": {"_count": 1}}, "moment": {"_count": 14, "later": {"_count": 14}}, "bundle": {"_count": 1, "of": {"_count": 1}}, "poltergeist": {"_count": 1, "": {"_count": 1}}, "loud": {"_count": 10, "rude": {"_count": 1}, "bang": {"_count": 2}, "ripping": {"_count": 1}, "snap": {"_count": 1}, "snore": {"_count": 1}, "rattling": {"_count": 1}, "echoing": {"_count": 1}, "clanging": {"_count": 1}, "chorus": {"_count": 1}}, "bezoar": {"_count": 2, "is": {"_count": 1}, "would": {"_count": 1}}, "crossbow": {"_count": 1, "and": {"_count": 1}}, "barn": {"_count": 1, "owl": {"_count": 1}}, "lamp": {"_count": 2, "flickered": {"_count": 1}, "flared": {"_count": 1}}, "Nimbus": {"_count": 2, "Two": {"_count": 2}}, "game": {"_count": 1, "of": {"_count": 1}}, "thousand": {"_count": 5, "live": {"_count": 1}, "years": {"_count": 1}, "Galleons": {"_count": 2}, "flecks": {"_count": 1}}, "sudden": {"_count": 8, "slamming": {"_count": 1}, "yelp": {"_count": 1}, "noise": {"_count": 1}, "unpleasant": {"_count": 1}, "silence": {"_count": 1}, "breeze": {"_count": 1}, "sound": {"_count": 1}, "suspicion": {"_count": 1}}, "murmur": {"_count": 2, "ran": {"_count": 1}, "of": {"_count": 1}}, "roar": {"_count": 5, "of": {"_count": 5}}, "Study": {"_count": 2, "of": {"_count": 2}}, "second": {"_count": 18, "very": {"_count": 1}, "later": {"_count": 12}, "scarletrobed": {"_count": 1}, "piece": {"_count": 1}, "shiver": {"_count": 1}, "glance": {"_count": 1}, "tongue": {"_count": 1}}, "note": {"_count": 1, "fell": {"_count": 1}}, "Very": {"_count": 1, "Merry": {"_count": 1}}, "hundred": {"_count": 12, "fat": {"_count": 1}, "and": {"_count": 1}, "or": {"_count": 1}, "steps": {"_count": 1}, "thousand": {"_count": 2}, "horseless": {"_count": 1}, "dementors": {"_count": 4}, "reasons": {"_count": 1}}, "large": {"_count": 22, "black": {"_count": 1}, "plate": {"_count": 1}, "photograph": {"_count": 1}, "witch": {"_count": 1}, "portrait": {"_count": 1}, "group": {"_count": 2}, "dead": {"_count": 2}, "shape": {"_count": 1}, "bottle": {"_count": 1}, "wooden": {"_count": 1}, "crowd": {"_count": 1}, "red": {"_count": 1}, "tawny": {"_count": 1}, "bubble": {"_count": 1}, "P": {"_count": 1}, "sign": {"_count": 1}, "poster": {"_count": 1}, "trunk": {"_count": 1}, "picture": {"_count": 1}, "spider": {"_count": 1}}, "piercing": {"_count": 2, "bloodcurdling": {"_count": 1}, "blue": {"_count": 1}}, "door": {"_count": 4, "stood": {"_count": 1}, "slammed": {"_count": 1}, "to": {"_count": 1}, "opened": {"_count": 1}}, "woman": {"_count": 2, "standing": {"_count": 1}, "spoke": {"_count": 1}}, "stone": {"_count": 2, "that": {"_count": 1}, "taken": {"_count": 1}}, "hooded": {"_count": 2, "figure": {"_count": 2}}, "Dragon": {"_count": 1, "Keepers": {"_count": 1}}, "couple": {"_count": 11, "of": {"_count": 11}}, "light": {"_count": 5, "breeze": {"_count": 1}, "rain": {"_count": 1}, "silver": {"_count": 1}, "night": {"_count": 1}, "layer": {"_count": 1}}, "werewolf": {"_count": 3, "": {"_count": 2}, "is": {"_count": 1}}, "bit": {"_count": 9, "said": {"_count": 1}, "": {"_count": 2}, "more": {"_count": 2}, "of": {"_count": 3}, "lonely": {"_count": 1}}, "movement": {"_count": 2, "in": {"_count": 1}, "behind": {"_count": 1}}, "bush": {"_count": 1, "on": {"_count": 1}}, "centaur": {"_count": 1, "was": {"_count": 1}}, "WITCH": {"_count": 1, "OR": {"_count": 1}}, "soft": {"_count": 2, "rustling": {"_count": 1}, "ticking": {"_count": 1}}, "white": {"_count": 2, "pawn": {"_count": 1}, "hand": {"_count": 1}}, "disgusting": {"_count": 1, "smell": {"_count": 1}}, "foolish": {"_count": 1, "young": {"_count": 1}}, "huge": {"_count": 4, "banner": {"_count": 1}, "groan": {"_count": 1}, "hand": {"_count": 1}, "photograph": {"_count": 1}}, "storm": {"_count": 1, "of": {"_count": 1}}, "wizened": {"_count": 2, "old": {"_count": 1}, "fraillooking": {"_count": 1}}, "loin": {"_count": 1, "of": {"_count": 1}}, "houseelf": {"_count": 2, "must": {"_count": 1}, "": {"_count": 1}}, "plot": {"_count": 2, "to": {"_count": 2}}, "faint": {"_count": 4, "pinkish": {"_count": 1}, "smell": {"_count": 1}, "tinny": {"_count": 1}, "rattling": {"_count": 1}}, "lopsided": {"_count": 2, "sign": {"_count": 2}}, "LEAF": {"_count": 1, "OUT": {"_count": 1}}, "glass": {"_count": 2, "case": {"_count": 2}}, "stooping": {"_count": 2, "man": {"_count": 1}, "figure": {"_count": 1}}, "study": {"_count": 1, "of": {"_count": 1}}, "harassedlooking": {"_count": 2, "wizard": {"_count": 2}}, "long": {"_count": 11, "line": {"_count": 2}, "silvery": {"_count": 1}, "silence": {"_count": 1}, "sheet": {"_count": 1}, "flame": {"_count": 1}, "thin": {"_count": 1}, "looming": {"_count": 1}, "way": {"_count": 1}, "walk": {"_count": 1}, "time": {"_count": 1}}, "short": {"_count": 5, "irritablelooking": {"_count": 1}, "balding": {"_count": 1}, "way": {"_count": 2}, "distance": {"_count": 1}}, "dozen": {"_count": 1, "curious": {"_count": 1}}, "very": {"_count": 9, "small": {"_count": 1}, "tense": {"_count": 1}, "thin": {"_count": 1}, "bad": {"_count": 1}, "old": {"_count": 2}, "pretty": {"_count": 1}, "good": {"_count": 1}, "interesting": {"_count": 1}}, "delicious": {"_count": 1, "smell": {"_count": 1}}, "big": {"_count": 4, "lumpy": {"_count": 1}, "red": {"_count": 1}, "bearded": {"_count": 1}, "mistake": {"_count": 1}}, "split": {"_count": 3, "second": {"_count": 3}}, "ringing": {"_count": 1, "silence": {"_count": 1}}, "picture": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "behind": {"_count": 1}}, "knot": {"_count": 1, "of": {"_count": 1}}, "double": {"_count": 2, "portrait": {"_count": 1}, "line": {"_count": 1}}, "word": {"_count": 1, "to": {"_count": 1}}, "moving": {"_count": 1, "blackandwhite": {"_count": 1}}, "field": {"_count": 1, "invasion": {"_count": 1}}, "highly": {"_count": 3, "polished": {"_count": 2}, "trained": {"_count": 1}}, "Correspondence": {"_count": 1, "Course": {"_count": 1}}, "deathday": {"_count": 1, "party": {"_count": 1}}, "promise": {"_count": 1, "is": {"_count": 1}}, "chandelier": {"_count": 1, "overhead": {"_count": 1}}, "mixture": {"_count": 4, "of": {"_count": 3}, "but": {"_count": 1}}, "rumble": {"_count": 1, "as": {"_count": 1}}, "Squib": {"_count": 2, "is": {"_count": 1}, "eh": {"_count": 1}}, "clock": {"_count": 1, "chimed": {"_count": 1}}, "rift": {"_count": 1, "began": {"_count": 1}}, "tale": {"_count": 1, "told": {"_count": 1}}, "month": {"_count": 4, "": {"_count": 4}}, "whistling": {"_count": 1, "in": {"_count": 1}}, "strange": {"_count": 1, "and": {"_count": 1}}, "ray": {"_count": 2, "of": {"_count": 2}}, "jet": {"_count": 11, "of": {"_count": 11}}, "week": {"_count": 4, "later": {"_count": 1}, "said": {"_count": 1}, "ago": {"_count": 2}}, "haze": {"_count": 2, "of": {"_count": 2}}, "bad": {"_count": 2, "idea": {"_count": 1}, "boy": {"_count": 1}}, "Parselmouth": {"_count": 2, "": {"_count": 1}, "eh": {"_count": 1}}, "boa": {"_count": 1, "constrictor": {"_count": 1}}, "group": {"_count": 6, "of": {"_count": 6}}, "dead": {"_count": 3, "rooster": {"_count": 1}, "slimy": {"_count": 1}, "mouse": {"_count": 1}}, "number": {"_count": 3, "of": {"_count": 3}}, "highpitched": {"_count": 1, "voice": {"_count": 1}}, "fire": {"_count": 5, "was": {"_count": 2}, "sprang": {"_count": 1}, "danced": {"_count": 1}, "burned": {"_count": 1}}, "decent": {"_count": 1, "headmaster": {"_count": 1}}, "great": {"_count": 13, "flood": {"_count": 1}, "big": {"_count": 1}, "reptilian": {"_count": 1}, "swell": {"_count": 1}, "wave": {"_count": 1}, "black": {"_count": 1}, "bold": {"_count": 1}, "tide": {"_count": 1}, "contentment": {"_count": 1}, "collective": {"_count": 1}, "silver": {"_count": 1}, "domed": {"_count": 1}, "number": {"_count": 1}}, "small": {"_count": 14, "thin": {"_count": 1}, "table": {"_count": 1}, "wickerwork": {"_count": 1}, "gillywater": {"_count": 1}, "amount": {"_count": 1}, "and": {"_count": 1}, "shoot": {"_count": 1}, "smudged": {"_count": 1}, "crowd": {"_count": 1}, "boy": {"_count": 1}, "trickle": {"_count": 1}, "woman": {"_count": 1}, "brown": {"_count": 1}, "voice": {"_count": 1}}, "hush": {"_count": 1, "fell": {"_count": 1}}, "story": {"_count": 2, "was": {"_count": 1}, "about": {"_count": 1}}, "silver": {"_count": 4, "prefects": {"_count": 1}, "whistle": {"_count": 1}, "stag": {"_count": 1}, "otter": {"_count": 1}}, "vast": {"_count": 1, "lowslung": {"_count": 1}}, "traveler": {"_count": 1, "gave": {"_count": 1}}, "cell": {"_count": 1, "in": {"_count": 1}}, "student": {"_count": 2, "has": {"_count": 1}, "I": {"_count": 1}}, "girl": {"_count": 3, "has": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}}, "free": {"_count": 1, "rein": {"_count": 1}}, "different": {"_count": 1, "language": {"_count": 1}}, "memory": {"_count": 1, "said": {"_count": 1}}, "smile": {"_count": 1, "curled": {"_count": 1}}, "crimson": {"_count": 1, "bird": {"_count": 1}}, "songbird": {"_count": 1, "and": {"_count": 1}}, "gleaming": {"_count": 1, "silver": {"_count": 1}}, "patch": {"_count": 1, "of": {"_count": 1}}, "pearly": {"_count": 1, "patch": {"_count": 1}}, "suspicious": {"_count": 1, "object": {"_count": 1}}, "clever": {"_count": 4, "plan": {"_count": 2}, "thing": {"_count": 1}, "murder": {"_count": 1}}, "FRIEND": {"_count": 1, "OF": {"_count": 1}}, "delighted": {"_count": 1, "Mr": {"_count": 1}}, "list": {"_count": 1, "of": {"_count": 1}}, "special": {"_count": 2, "hot": {"_count": 1}, "school": {"_count": 1}}, "feeling": {"_count": 3, "of": {"_count": 3}}, "good": {"_count": 2, "thrashing": {"_count": 1}, "first": {"_count": 1}}, "Charm": {"_count": 1, "to": {"_count": 1}}, "no": {"_count": 1, "account": {"_count": 1}}, "funny": {"_count": 1, "prickling": {"_count": 1}}, "look": {"_count": 3, "of": {"_count": 3}}, "gigantic": {"_count": 2, "tortoise": {"_count": 1}, "dragon": {"_count": 1}}, "nice": {"_count": 2, "sight": {"_count": 1}, "little": {"_count": 1}}, "dementor": {"_count": 2, "said": {"_count": 1}, "rose": {"_count": 1}}, "wave": {"_count": 3, "of": {"_count": 3}}, "fat": {"_count": 1, "dapplegray": {"_count": 1}}, "quest": {"_count": 1, "": {"_count": 1}}, "load": {"_count": 1, "of": {"_count": 1}}, "seam": {"_count": 1, "had": {"_count": 1}}, "rotting": {"_count": 1, "glistening": {"_count": 1}}, "bandage": {"_count": 1, "unraveled": {"_count": 1}}, "piece": {"_count": 2, "of": {"_count": 2}}, "likely": {"_count": 3, "story": {"_count": 2}, "tale": {"_count": 1}}, "sickly": {"_count": 1, "green": {"_count": 1}}, "shower": {"_count": 1, "of": {"_count": 1}}, "shrill": {"_count": 2, "voice": {"_count": 1}, "tinny": {"_count": 1}}, "labeled": {"_count": 1, "dot": {"_count": 1}}, "curvy": {"_count": 1, "sort": {"_count": 1}}, "cherry": {"_count": 1, "syrup": {"_count": 1}}, "crater": {"_count": 1, "in": {"_count": 1}}, "hatred": {"_count": 1, "such": {"_count": 1}}, "powerful": {"_count": 3, "and": {"_count": 1}, "one": {"_count": 1}, "emotion": {"_count": 1}}, "Firebolt": {"_count": 4, "": {"_count": 4}}, "a": {"_count": 4, "real": {"_count": 1}, "spy": {"_count": 1}, "Horcrux": {"_count": 1}, "grindylow": {"_count": 1}}, "really": {"_count": 2, "really": {"_count": 1}, "good": {"_count": 1}}, "thought": {"_count": 2, "had": {"_count": 1}, "that": {"_count": 1}}, "beam": {"_count": 2, "of": {"_count": 2}}, "GENTLEMAN": {"_count": 1, "": {"_count": 1}}, "NIGHTMARE": {"_count": 1, "": {"_count": 1}}, "KNIFE": {"_count": 1, "": {"_count": 1}}, "bunch": {"_count": 1, "of": {"_count": 1}}, "poor": {"_count": 1, "way": {"_count": 1}}, "hippogriff": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "mass": {"_count": 2, "of": {"_count": 1}, "breakout": {"_count": 1}}, "boiling": {"_count": 1, "hate": {"_count": 1}}, "livid": {"_count": 1, "bruise": {"_count": 1}}, "whole": {"_count": 2, "street": {"_count": 1}, "crowd": {"_count": 1}}, "FOOL": {"_count": 1, "OF": {"_count": 1}}, "flash": {"_count": 2, "of": {"_count": 2}}, "head": {"_count": 1, "was": {"_count": 1}}, "YEAR": {"_count": 1, "BEFORE": {"_count": 1}}, "cloud": {"_count": 1, "shifted": {"_count": 1}}, "thin": {"_count": 6, "wisp": {"_count": 1}, "golden": {"_count": 1}, "piece": {"_count": 1}, "woman": {"_count": 1}, "pimply": {"_count": 1}, "tongue": {"_count": 1}}, "paralyzing": {"_count": 1, "terror": {"_count": 1}}, "Confundus": {"_count": 1, "Charm": {"_count": 1}}, "street": {"_count": 1, "full": {"_count": 1}}, "blur": {"_count": 1, "of": {"_count": 1}}, "dark": {"_count": 2, "figure": {"_count": 2}}, "real": {"_count": 2, "Patronus": {"_count": 1}, "honor": {"_count": 1}}, "terrified": {"_count": 1, "excitement": {"_count": 1}}, "fourth": {"_count": 1, "stretcher": {"_count": 1}}, "shadow": {"_count": 2, "fell": {"_count": 1}, "of": {"_count": 1}}, "muscle": {"_count": 4, "twitched": {"_count": 2}, "was": {"_count": 2}}, "telephone": {"_count": 1, "Ron": {"_count": 1}}, "team": {"_count": 2, "of": {"_count": 2}}, "slight": {"_count": 3, "pause": {"_count": 1}, "spasm": {"_count": 1}, "cushioning": {"_count": 1}}, "stroke": {"_count": 1, "of": {"_count": 1}}, "skinny": {"_count": 1, "boy": {"_count": 1}}, "weird": {"_count": 1, "thing": {"_count": 1}}, "bag": {"_count": 1, "of": {"_count": 1}}, "report": {"_count": 1, "for": {"_count": 1}}, "creamy": {"_count": 1, "sauce": {"_count": 1}}, "limited": {"_count": 1, "number": {"_count": 1}}, "twenty": {"_count": 1, "Harry": {"_count": 1}}, "map": {"_count": 2, "of": {"_count": 2}}, "Ministry": {"_count": 2, "wizard": {"_count": 1}, "official": {"_count": 1}}, "cloudless": {"_count": 1, "night": {"_count": 1}}, "Galleon": {"_count": 1, "": {"_count": 1}}, "sense": {"_count": 2, "of": {"_count": 2}}, "Broom": {"_count": 1, "for": {"_count": 1}}, "Risk": {"_count": 1, "With": {"_count": 1}}, "rainbow": {"_count": 1, "arced": {"_count": 1}}, "scarletclad": {"_count": 1, "figure": {"_count": 1}}, "mediwizard": {"_count": 1, "came": {"_count": 1}}, "crowd": {"_count": 1, "of": {"_count": 1}}, "huddle": {"_count": 1, "of": {"_count": 1}}, "rustling": {"_count": 1, "noise": {"_count": 1}}, "third": {"_count": 2, "young": {"_count": 1}, "twitch": {"_count": 1}}, "high": {"_count": 1, "ranking": {"_count": 1}}, "sleeve": {"_count": 1, "of": {"_count": 1}}, "gleeful": {"_count": 1, "smile": {"_count": 1}}, "dull": {"_count": 4, "clunk": {"_count": 1}, "pounding": {"_count": 1}, "purple": {"_count": 1}, "flush": {"_count": 1}}, "champion": {"_count": 1, "was": {"_count": 1}}, "crackling": {"_count": 1, "fire": {"_count": 1}}, "booming": {"_count": 1, "bell": {"_count": 1}}, "detailed": {"_count": 1, "analysis": {"_count": 1}}, "Revised": {"_count": 1, "History": {"_count": 1}}, "Highly": {"_count": 1, "Biased": {"_count": 1}}, "snowy": {"_count": 1, "owl": {"_count": 1}}, "Portkey": {"_count": 1, "": {"_count": 1}}, "pleasant": {"_count": 1, "sort": {"_count": 1}}, "terrible": {"_count": 3, "look": {"_count": 1}, "loss": {"_count": 1}, "rasping": {"_count": 1}}, "similarly": {"_count": 1, "enormous": {"_count": 1}}, "buzzing": {"_count": 1, "as": {"_count": 1}}, "handsome": {"_count": 3, "fire": {"_count": 1}, "screech": {"_count": 1}, "manor": {"_count": 1}}, "paunchy": {"_count": 1, "man": {"_count": 1}}, "pause": {"_count": 1, "while": {"_count": 1}}, "slightly": {"_count": 2, "fearful": {"_count": 1}, "stunned": {"_count": 1}}, "curlyhaired": {"_count": 1, "thirdyear": {"_count": 1}}, "set": {"_count": 2, "of": {"_count": 2}}, "gurgling": {"_count": 1, "song": {"_count": 1}}, "grim": {"_count": 2, "smile": {"_count": 1}, "mood": {"_count": 1}}, "cluster": {"_count": 1, "of": {"_count": 1}}, "choir": {"_count": 1, "of": {"_count": 1}}, "conference": {"_count": 1, "before": {"_count": 1}}, "color": {"_count": 1, "photograph": {"_count": 1}}, "further": {"_count": 1, "ten": {"_count": 1}}, "grin": {"_count": 2, "flashed": {"_count": 1}, "spread": {"_count": 1}}, "gray": {"_count": 1, "owl": {"_count": 1}}, "maze": {"_count": 1, "": {"_count": 1}}, "premonition": {"_count": 1, "": {"_count": 1}}, "shallow": {"_count": 1, "stone": {"_count": 1}}, "nerve": {"_count": 1, "was": {"_count": 1}}, "connection": {"_count": 1, "I": {"_count": 1}}, "dream": {"_count": 2, "about": {"_count": 1}, "repeated": {"_count": 1}}, "screech": {"_count": 1, "owl": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "twentyfoothigh": {"_count": 1, "hedge": {"_count": 1}}, "The": {"_count": 1, "skrewt": {"_count": 1}}, "person": {"_count": 2, "in": {"_count": 1}, "can": {"_count": 1}}, "creature": {"_count": 1, "I": {"_count": 1}}, "hill": {"_count": 1, "rose": {"_count": 1}}, "swishing": {"_count": 1, "noise": {"_count": 1}}, "blast": {"_count": 1, "of": {"_count": 1}}, "surge": {"_count": 1, "of": {"_count": 1}}, "streak": {"_count": 3, "of": {"_count": 3}}, "torrent": {"_count": 1, "of": {"_count": 1}}, "thick": {"_count": 2, "glutinous": {"_count": 1}, "band": {"_count": 1}}, "quiet": {"_count": 1, "private": {"_count": 1}}, "witch": {"_count": 1, "in": {"_count": 1}}, "servant": {"_count": 2, "who": {"_count": 2}}, "kind": {"_count": 2, "of": {"_count": 2}}, "Sleeping": {"_count": 1, "Potion": {"_count": 1}}, "panicked": {"_count": 1, "whisper": {"_count": 1}}, "gang": {"_count": 3, "of": {"_count": 3}}, "fist": {"_count": 1, "made": {"_count": 1}}, "towering": {"_count": 2, "hooded": {"_count": 1}, "cliff": {"_count": 1}}, "silvery": {"_count": 2, "wisp": {"_count": 1}, "orb": {"_count": 1}}, "rushing": {"_count": 1, "noise": {"_count": 1}}, "warm": {"_count": 1, "breeze": {"_count": 1}}, "PECK": {"_count": 1, "OF": {"_count": 1}}, "resounding": {"_count": 1, "CRACK": {"_count": 1}}, "dazed": {"_count": 1, "and": {"_count": 1}}, "UNT": {"_count": 1, "AND": {"_count": 1}}, "wand": {"_count": 2, "tip": {"_count": 1}, "was": {"_count": 1}}, "stag": {"_count": 1, "said": {"_count": 1}}, "pink": {"_count": 1, "cheeked": {"_count": 1}}, "surprising": {"_count": 1, "number": {"_count": 1}}, "pungent": {"_count": 1, "smell": {"_count": 1}}, "closer": {"_count": 2, "look": {"_count": 2}}, "blank": {"_count": 2, "stretch": {"_count": 1}, "silence": {"_count": 1}}, "MONTH": {"_count": 1, "": {"_count": 1}}, "REAL": {"_count": 1, "LAUGH": {"_count": 1}}, "deadly": {"_count": 1, "struggle": {"_count": 1}}, "gale": {"_count": 1, "of": {"_count": 1}}, "frisson": {"_count": 1, "had": {"_count": 1}}, "weapons": {"_count": 1, "going": {"_count": 1}}, "HIDEOUT": {"_count": 1, "FOR": {"_count": 1}}, "date": {"_count": 1, "of": {"_count": 1}}, "Wizarding": {"_count": 3, "Genealogy": {"_count": 3}}, "badly": {"_count": 1, "shaven": {"_count": 1}}, "narrow": {"_count": 1, "strip": {"_count": 1}}, "scarletrobed": {"_count": 1, "man": {"_count": 1}}, "photograph": {"_count": 1, "of": {"_count": 1}}, "memo": {"_count": 1, "had": {"_count": 1}}, "regurgitating": {"_count": 1, "toilet": {"_count": 1}}, "stooped": {"_count": 1, "timidlooking": {"_count": 1}}, "cold": {"_count": 2, "male": {"_count": 1}, "smile": {"_count": 1}}, "broad": {"_count": 2, "squarejawed": {"_count": 1}, "hunched": {"_count": 1}}, "corporeal": {"_count": 2, "Patronus": {"_count": 2}}, "dumpy": {"_count": 1, "wizard": {"_count": 1}}, "prefect": {"_count": 2, "": {"_count": 2}}, "SERIOUS": {"_count": 1, "INJURY": {"_count": 1}}, "bearlike": {"_count": 1, "black": {"_count": 1}}, "porters": {"_count": 1, "cap": {"_count": 1}}, "warning": {"_count": 1, "whistle": {"_count": 1}}, "lantern": {"_count": 2, "came": {"_count": 1}, "was": {"_count": 1}}, "House": {"_count": 1, "in": {"_count": 1}}, "balance": {"_count": 1, "then": {"_count": 1}}, "blond": {"_count": 1, "boy": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "Return": {"_count": 1, "to": {"_count": 1}}, "No": {"_count": 1, "E": {"_count": 1}}, "for": {"_count": 1, "\u2018Acceptable": {"_count": 1}}, "T": {"_count": 1, "if": {"_count": 1}}, "": {"_count": 70, ".": {"_count": 70}}, "battered": {"_count": 1, "wooden": {"_count": 1}}, "hand": {"_count": 3, "had": {"_count": 2}, "grabbed": {"_count": 1}}, "confused": {"_count": 1, "tangle": {"_count": 1}}, "Compendium": {"_count": 1, "of": {"_count": 1}}, "BIN": {"_count": 3, "HE": {"_count": 2}, "": {"_count": 1}}, "THING": {"_count": 1, "": {"_count": 1}}, "Bludger": {"_count": 1, "hit": {"_count": 1}}, "branch": {"_count": 2, "of": {"_count": 1}, "over": {"_count": 1}}, "gift": {"_count": 1, "fer": {"_count": 1}}, "VERY": {"_count": 2, "HARRY": {"_count": 1}, "FROSTY": {"_count": 1}}, "tingling": {"_count": 1, "sensation": {"_count": 1}}, "reluctant": {"_count": 1, "grin": {"_count": 1}}, "sallowfaced": {"_count": 2, "wizard": {"_count": 2}}, "serpents": {"_count": 1, "head": {"_count": 1}}, "sweatyfaced": {"_count": 1, "witch": {"_count": 1}}, "CLEAN": {"_count": 1, "CAULDRON": {"_count": 1}}, "QUALIFIED": {"_count": 1, "HEALER": {"_count": 1}}, "massive": {"_count": 1, "one": {"_count": 1}}, "leaden": {"_count": 1, "sensation": {"_count": 1}}, "prize": {"_count": 1, "beyond": {"_count": 1}}, "jumble": {"_count": 1, "of": {"_count": 1}}, "motherly": {"_count": 1, "looking": {"_count": 1}}, "sallowskinned": {"_count": 1, "mournfullooking": {"_count": 1}}, "way": {"_count": 1, "of": {"_count": 1}}, "violently": {"_count": 1, "purple": {"_count": 1}}, "wonderful": {"_count": 1, "wonderful": {"_count": 1}}, "fever": {"_count": 1, "or": {"_count": 1}}, "subheading": {"_count": 1, "\u2018Harry": {"_count": 1}}, "cracked": {"_count": 1, "agespotted": {"_count": 1}}, "face": {"_count": 2, "whiter": {"_count": 1}, "muttered": {"_count": 1}}, "greasyhaired": {"_count": 1, "teenager": {"_count": 1}}, "gorgeous": {"_count": 1, "centaur": {"_count": 1}}, "twinkling": {"_count": 1, "red": {"_count": 1}}, "select": {"_count": 1, "group": {"_count": 1}}, "Floo": {"_count": 1, "Network": {"_count": 1}}, "lovely": {"_count": 1, "person": {"_count": 1}}, "BANG": {"_count": 1, "AT": {"_count": 1}}, "mans": {"_count": 1, "naked": {"_count": 1}}, "quiverful": {"_count": 1, "of": {"_count": 1}}, "weapon": {"_count": 1, "you": {"_count": 1}}, "bearded": {"_count": 1, "centaur": {"_count": 1}}, "chink": {"_count": 2, "of": {"_count": 2}}, "harsh": {"_count": 1, "female": {"_count": 1}}, "sharp": {"_count": 2, "intake": {"_count": 1}, "pain": {"_count": 1}}, "Death": {"_count": 2, "Eater": {"_count": 2}}, "babys": {"_count": 1, "head": {"_count": 1}}, "Harry": {"_count": 1, "Hermione": {"_count": 1}}, "whine": {"_count": 1, "of": {"_count": 1}}, "bubble": {"_count": 1, "of": {"_count": 1}}, "spell": {"_count": 1, "hit": {"_count": 1}}, "brain": {"_count": 1, "addacked": {"_count": 1}}, "figure": {"_count": 1, "rose": {"_count": 1}}, "better": {"_count": 1, "idea": {"_count": 1}}, "much": {"_count": 2, "bigger": {"_count": 1}, "smaller": {"_count": 1}}, "most": {"_count": 2, "peculiar": {"_count": 1}, "gifted": {"_count": 1}}, "sliver": {"_count": 1, "of": {"_count": 1}}, "vivid": {"_count": 1, "image": {"_count": 1}}, "more": {"_count": 1, "decisive": {"_count": 1}}, "scene": {"_count": 1, "of": {"_count": 1}}, "grandfather": {"_count": 1, "clock": {"_count": 1}}, "piano": {"_count": 1, "was": {"_count": 1}}, "tired": {"_count": 1, "old": {"_count": 1}}, "brutal": {"_count": 2, "ending": {"_count": 1}, "triple": {"_count": 1}}, "wise": {"_count": 2, "decision": {"_count": 1}, "and": {"_count": 1}}, "young": {"_count": 4, "witch": {"_count": 2}, "woman": {"_count": 1}, "boy": {"_count": 1}}, "considerable": {"_count": 1, "amount": {"_count": 1}}, "cow": {"_count": 1, "said": {"_count": 1}}, "warmth": {"_count": 1, "was": {"_count": 1}}, "Troll": {"_count": 1, "T": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "seedylooking": {"_count": 1, "little": {"_count": 1}}, "teenage": {"_count": 1, "boy": {"_count": 1}}, "space": {"_count": 1, "cleared": {"_count": 1}}, "beaming": {"_count": 1, "Fred": {"_count": 1}}, "startling": {"_count": 1, "thought": {"_count": 1}}, "Wrackspurt": {"_count": 1, "": {"_count": 1}}, "chance": {"_count": 1, "to": {"_count": 1}}, "fifteen": {"_count": 1, "inch": {"_count": 1}}, "reasonable": {"_count": 1, "amount": {"_count": 1}}, "watery": {"_count": 1, "sun": {"_count": 1}}, "teacher": {"_count": 1, "Potter": {"_count": 1}}, "flush": {"_count": 1, "of": {"_count": 1}}, "Quest": {"_count": 1, "": {"_count": 1}}, "gaggle": {"_count": 1, "of": {"_count": 1}}, "Cauldron": {"_count": 3, "Full": {"_count": 3}}, "SLUGGISH": {"_count": 1, "MEMORY": {"_count": 1}}, "part": {"_count": 2, "of": {"_count": 2}}, "Hogsmeade": {"_count": 1, "branch": {"_count": 1}}, "blinding": {"_count": 1, "sickening": {"_count": 1}}, "hot": {"_count": 1, "prickly": {"_count": 1}}, "badger": {"_count": 1, "murmured": {"_count": 1}}, "worthy": {"_count": 1, "choice": {"_count": 1}}, "job": {"_count": 2, "I": {"_count": 1}, "like": {"_count": 1}}, "meeting": {"_count": 1, "place": {"_count": 1}}, "hideout": {"_count": 1, "": {"_count": 1}}, "storeroom": {"_count": 1, "": {"_count": 1}}, "workshop": {"_count": 1, "": {"_count": 1}}, "fiveyearold": {"_count": 1, "could": {"_count": 1}}, "Horcrux": {"_count": 1, "is": {"_count": 1}}, "corpulent": {"_count": 1, "rednosed": {"_count": 1}}, "mere": {"_count": 2, "memory": {"_count": 2}}, "flame": {"_count": 1, "seemed": {"_count": 1}}, "Pygmy": {"_count": 1, "Puff": {"_count": 1}}, "Thousand": {"_count": 1, "Magical": {"_count": 1}}, "misty": {"_count": 1, "greenish": {"_count": 1}}, "GUAMENTP": {"_count": 1, "": {"_count": 1}}, "slimy": {"_count": 1, "white": {"_count": 1}}, "question": {"_count": 1, "I": {"_count": 1}}, "lumpylooking": {"_count": 1, "man": {"_count": 1}}, "fight": {"_count": 1, "broke": {"_count": 1}}, "decision": {"_count": 1, "should": {"_count": 1}}, "seconds": {"_count": 1, "relief": {"_count": 1}}, "wall": {"_count": 1, "a": {"_count": 1}}, "fairhaired": {"_count": 1, "bigbellied": {"_count": 1}}, "blue": {"_count": 1, "light": {"_count": 1}}, "thestral": {"_count": 1, "had": {"_count": 1}}, "hatch": {"_count": 1, "opened": {"_count": 1}}, "book": {"_count": 1, "": {"_count": 1}}, "desk": {"_count": 1, "stood": {"_count": 1}}, "surprise": {"_count": 1, "apparently": {"_count": 1}}, "Snitch": {"_count": 1, "is": {"_count": 1}}, "host": {"_count": 1, "of": {"_count": 1}}, "chill": {"_count": 1, "that": {"_count": 1}}, "mother": {"_count": 1, "kill": {"_count": 1}}, "coffinside": {"_count": 1, "brawl": {"_count": 1}}, "PLACE": {"_count": 1, "TO": {"_count": 1}}, "doubledecker": {"_count": 1, "bus": {"_count": 1}}, "log": {"_count": 1, "fell": {"_count": 1}}, "shaft": {"_count": 1, "of": {"_count": 1}}, "blackhaired": {"_count": 1, "baby": {"_count": 1}}, "laughing": {"_count": 1, "woman": {"_count": 1}}, "disembodied": {"_count": 1, "female": {"_count": 1}}, "pity": {"_count": 1, "she": {"_count": 1}}, "scream": {"_count": 1, "that": {"_count": 1}}, "black": {"_count": 1, "blindfold": {"_count": 1}}, "heavily": {"_count": 1, "muffled": {"_count": 1}}, "metal": {"_count": 1, "heart": {"_count": 1}}, "copy": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "shame": {"_count": 1, "Gellert": {"_count": 1}}, "bright": {"_count": 1, "silver": {"_count": 1}}, "glint": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "Albus": {"_count": 1}}, "symbol": {"_count": 1, "that": {"_count": 1}}, "castle": {"_count": 1, "to": {"_count": 1}}, "Christmas": {"_count": 1, "surprise": {"_count": 1}}, "cloak": {"_count": 1, "that": {"_count": 1}}, "goblin": {"_count": 1, "by": {"_count": 1}}, "thud": {"_count": 2, "told": {"_count": 1}, "and": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "Mudblood": {"_count": 1, "a": {"_count": 1}}, "stillness": {"_count": 1, "had": {"_count": 1}}, "skeletal": {"_count": 1, "figure": {"_count": 1}}, "crystal": {"_count": 1, "chandelier": {"_count": 1}}, "burst": {"_count": 1, "of": {"_count": 1}}, "FREE": {"_count": 1, "ELF": {"_count": 1}}, "weak": {"_count": 1, "Come": {"_count": 1}}, "rumor": {"_count": 1, "years": {"_count": 1}}, "strong": {"_count": 1, "wind": {"_count": 1}}, "hole": {"_count": 1, "appeared": {"_count": 1}}, "watchful": {"_count": 1, "Death": {"_count": 1}}, "curious": {"_count": 1, "sensation": {"_count": 1}}, "new": {"_count": 1, "wand": {"_count": 1}}, "modicum": {"_count": 1, "of": {"_count": 1}}, "shard": {"_count": 1, "of": {"_count": 1}}, "delicate": {"_count": 1, "looking": {"_count": 1}}, "teenagers": {"_count": 2, "gang": {"_count": 2}}, "bathroom": {"_count": 1, "": {"_count": 1}}, "battle": {"_count": 1, "plan": {"_count": 1}}, "hollow": {"_count": 1, "tree": {"_count": 1}}, "forest": {"_count": 1, "in": {"_count": 1}}, "lonely": {"_count": 1, "place": {"_count": 1}}, "roaring": {"_count": 1, "billowing": {"_count": 1}}, "bloodlike": {"_count": 1, "substance": {"_count": 1}}, "monstrous": {"_count": 1, "spider": {"_count": 1}}, "fistful": {"_count": 1, "of": {"_count": 1}}, "flask": {"_count": 1, "conjured": {"_count": 1}}, "lone": {"_count": 1, "clog": {"_count": 1}}, "whirl": {"_count": 1, "of": {"_count": 1}}, "frightened": {"_count": 1, "teenage": {"_count": 1}}, "swarm": {"_count": 1, "of": {"_count": 1}}, "chilly": {"_count": 1, "breeze": {"_count": 1}}, "wideopen": {"_count": 1, "space": {"_count": 1}}, "desperate": {"_count": 1, "mans": {"_count": 1}}, "redgold": {"_count": 1, "glow": {"_count": 1}}}, "appeared": {"_count": 302, "on": {"_count": 21, "the": {"_count": 15}, "Veronica": {"_count": 1}, "Lupins": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}, "either": {"_count": 1}, "our": {"_count": 1}}, "so": {"_count": 1, "suddenly": {"_count": 1}}, "it": {"_count": 2, "grew": {"_count": 1}, "would": {"_count": 1}}, "in": {"_count": 38, "his": {"_count": 3}, "the": {"_count": 26}, "it": {"_count": 2}, "midair": {"_count": 3}, "front": {"_count": 2}, "Gryffindor": {"_count": 1}, "their": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "floating": {"_count": 1, "cross": {"_count": 1}}, "at": {"_count": 24, "Malfoys": {"_count": 1}, "the": {"_count": 9}, "once": {"_count": 2}, "Harrys": {"_count": 2}, "his": {"_count": 2}, "Hagrids": {"_count": 1}, "Professor": {"_count": 2}, "first": {"_count": 2}, "Georges": {"_count": 1}, "meals": {"_count": 1}, "breakfast": {"_count": 1}}, "suddenly": {"_count": 1, "on": {"_count": 1}}, "out": {"_count": 21, "of": {"_count": 21}}, "she": {"_count": 1, "was": {"_count": 1}}, "from": {"_count": 3, "behind": {"_count": 2}, "the": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "pushing": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 3, "Dudley": {"_count": 1}, "yet": {"_count": 1}, "in": {"_count": 1}}, "holding": {"_count": 2, "a": {"_count": 1}, "Pigwidgeons": {"_count": 1}}, "behind": {"_count": 3, "the": {"_count": 2}, "Harry": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "to": {"_count": 74, "have": {"_count": 19}, "be": {"_count": 47}, "come": {"_count": 1}, "crick": {"_count": 1}, "you": {"_count": 1}, "emanate": {"_count": 1}, "their": {"_count": 1}, "secondguess": {"_count": 1}, "grapple": {"_count": 1}, "take": {"_count": 1}}, "a": {"_count": 2, "second": {"_count": 1}, "short": {"_count": 1}}, "along": {"_count": 1, "one": {"_count": 1}}, "nothing": {"_count": 1, "short": {"_count": 1}}, "looking": {"_count": 1, "tired": {"_count": 1}}, "piping": {"_count": 1, "its": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "carrying": {"_count": 1, "Harrys": {"_count": 1}}, "twice": {"_count": 1, "and": {"_count": 1}}, "upon": {"_count": 5, "it": {"_count": 1}, "the": {"_count": 3}, "her": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 2}}, "followed": {"_count": 1, "closely": {"_count": 1}}, "angry": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "dark": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "the": {"_count": 2, "pupils": {"_count": 1}, "people": {"_count": 1}}, "quite": {"_count": 1, "unembarrassed": {"_count": 1}}, "ten": {"_count": 1, "days": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "which": {"_count": 1, "seemed": {"_count": 1}}, "Hermione": {"_count": 1, "told": {"_count": 1}}, "not": {"_count": 7, "to": {"_count": 7}}, "bringing": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 1, "tried": {"_count": 1}}, "that": {"_count": 3, "one": {"_count": 1}, "young": {"_count": 1}, "Hermione": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "beside": {"_count": 2, "Uncle": {"_count": 1}, "him": {"_count": 1}}, "taken": {"_count": 1, "aback": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 3}, "Phineas": {"_count": 1}}, "there": {"_count": 4, "you": {"_count": 1}, "": {"_count": 1}, "once": {"_count": 1}, "blazing": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "finally": {"_count": 1, "to": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "name": {"_count": 1, "o": {"_count": 1}}, "between": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "blurred": {"_count": 1, "and": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "unsure": {"_count": 1, "how": {"_count": 1}}, "all": {"_count": 1, "clutching": {"_count": 1}}, "around": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 3}}, "more": {"_count": 1, "anxious": {"_count": 1}}, "high": {"_count": 1, "on": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "simply": {"_count": 1, "determined": {"_count": 1}}, "singularly": {"_count": 1, "uninterested": {"_count": 1}}, "alongside": {"_count": 1, "Kreacher": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "yellowish": {"_count": 1, "and": {"_count": 1}}, "spinning": {"_count": 1, "and": {"_count": 1}}, "just": {"_count": 2, "before": {"_count": 1}, "like": {"_count": 1}}, "slightly": {"_count": 1, "blurred": {"_count": 1}}, "panting": {"_count": 1, "a": {"_count": 1}}, "elusive": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "them": {"_count": 1}}, "right": {"_count": 2, "ahead": {"_count": 1}, "outside": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "wary": {"_count": 1}}, "leading": {"_count": 1, "Mr": {"_count": 1}}, "One": {"_count": 1, "of": {"_count": 1}}, "unscathed": {"_count": 1, "": {"_count": 1}}}, "watching": {"_count": 360, "appeared": {"_count": 1, "so": {"_count": 1}}, "him": {"_count": 57, "": {"_count": 22}, "sadly": {"_count": 1}, "out": {"_count": 2}, "almost": {"_count": 1}, "from": {"_count": 1}, "twirling": {"_count": 1}, "hear": {"_count": 1}, "apprehensively": {"_count": 2}, "openmouthed": {"_count": 1}, "closely": {"_count": 4}, "very": {"_count": 1}, "and": {"_count": 1}, "eagerly": {"_count": 1}, "struggle": {"_count": 1}, "with": {"_count": 4}, "her": {"_count": 1}, "for": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 2}, "did": {"_count": 1}, "run": {"_count": 1}, "anxiously": {"_count": 2}, "over": {"_count": 1}, "suspiciously": {"_count": 1}}, "them": {"_count": 21, "all": {"_count": 2}, "weigh": {"_count": 1}, "": {"_count": 3}, "mainly": {"_count": 1}, "very": {"_count": 1}, "sulkily": {"_count": 1}, "do": {"_count": 1}, "that": {"_count": 1}, "out": {"_count": 1}, "with": {"_count": 1}, "sleepily": {"_count": 1}, "it": {"_count": 1}, "hastily": {"_count": 1}, "now": {"_count": 1}, "avidly": {"_count": 1}, "draw": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 18}, "!": {"_count": 1}}, "the": {"_count": 57, "house": {"_count": 3}, "fields": {"_count": 1}, "sun": {"_count": 1}, "Sorting": {"_count": 1}, "door": {"_count": 1}, "passage": {"_count": 1}, "moon": {"_count": 1}, "other": {"_count": 1}, "many": {"_count": 1}, "painting": {"_count": 1}, "Slytherin": {"_count": 1}, "rest": {"_count": 1}, "headmaster": {"_count": 1}, "giant": {"_count": 2}, "dog": {"_count": 1}, "moving": {"_count": 1}, "Chudley": {"_count": 1}, "veela": {"_count": 1}, "glow": {"_count": 1}, "smallest": {"_count": 1}, "scene": {"_count": 1}, "small": {"_count": 1}, "taxi": {"_count": 1}, "people": {"_count": 1}, "water": {"_count": 1}, "goblins": {"_count": 1}, "contents": {"_count": 1}, "Floo": {"_count": 2}, "conversation": {"_count": 2}, "silhouettes": {"_count": 1}, "Chasers": {"_count": 1}, "owls": {"_count": 1}, "progress": {"_count": 1}, "snow": {"_count": 1}, "horse": {"_count": 1}, "clock": {"_count": 1}, "candle": {"_count": 1}, "sky": {"_count": 1}, "emerald": {"_count": 1}, "eagle": {"_count": 1}, "person": {"_count": 1}, "whispered": {"_count": 1}, "new": {"_count": 1}, "Pygmy": {"_count": 1}, "Room": {"_count": 1}, "wizards": {"_count": 1}, "join": {"_count": 1}, "place": {"_count": 1}, "skin": {"_count": 1}, "others": {"_count": 1}, "two": {"_count": 2}}, "a": {"_count": 5, "quiz": {"_count": 1}, "brandnew": {"_count": 1}, "speededup": {"_count": 1}, "tiny": {"_count": 1}, "foot": {"_count": 1}}, "Harry": {"_count": 17, "cut": {"_count": 1}, "closely": {"_count": 4}, "read": {"_count": 1}, "anxiously": {"_count": 2}, "struggle": {"_count": 1}, "sprint": {"_count": 1}, "thoughtfully": {"_count": 1}, "with": {"_count": 3}, "": {"_count": 1}, "kissed": {"_count": 1}, "out": {"_count": 1}}, "he": {"_count": 1, "stretched": {"_count": 1}}, "Ron": {"_count": 8, "and": {"_count": 1}, "think": {"_count": 1}, "bend": {"_count": 1}, "whirled": {"_count": 1}, "over": {"_count": 1}, "critically": {"_count": 1}, "": {"_count": 1}, "fret": {"_count": 1}}, "Seamus": {"_count": 1, "pile": {"_count": 1}}, "terrified": {"_count": 1, "as": {"_count": 1}}, "Dudley": {"_count": 2, "tearing": {"_count": 1}, "riding": {"_count": 1}}, "and": {"_count": 2, "eating": {"_count": 1}, "listening": {"_count": 1}}, "apprehensively": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Mr": {"_count": 1}}, "her": {"_count": 14, "anxiously": {"_count": 1}, "": {"_count": 2}, "lifting": {"_count": 1}, "go": {"_count": 1}, "talk": {"_count": 1}, "and": {"_count": 2}, "beadily": {"_count": 1}, "as": {"_count": 1}, "with": {"_count": 2}, "feet": {"_count": 1}, "silvery": {"_count": 1}}, "Hermione": {"_count": 7, "tearing": {"_count": 1}, "adding": {"_count": 1}, "pass": {"_count": 1}, "": {"_count": 1}, "silently": {"_count": 1}, "light": {"_count": 1}, "examining": {"_count": 1}}, "Snape": {"_count": 3, "baring": {"_count": 1}, "closely": {"_count": 1}, "running": {"_count": 1}}, "it": {"_count": 9, "": {"_count": 2}, "sink": {"_count": 1}, "carefully": {"_count": 1}, "happen": {"_count": 1}, "Harry": {"_count": 1}, "its": {"_count": 1}, "disgorge": {"_count": 1}, "his": {"_count": 1}}, "Harrys": {"_count": 2, "horrified": {"_count": 1}, "stunned": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "Dobby": {"_count": 2, "": {"_count": 2}}, "when": {"_count": 1, "she": {"_count": 1}}, "closely": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "Neville": {"_count": 2, "sweat": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 8, "feet": {"_count": 1}, "aunt": {"_count": 1}, "trunk": {"_count": 1}, "ears": {"_count": 1}, "teacup": {"_count": 1}, "fruitless": {"_count": 1}, "sons": {"_count": 1}, "son": {"_count": 1}}, "Scabbers": {"_count": 2, "struggling": {"_count": 1}, "with": {"_count": 1}}, "Scabberss": {"_count": 1, "every": {"_count": 1}}, "Lupin": {"_count": 2, "very": {"_count": 1}, "both": {"_count": 1}}, "himself": {"_count": 1, "in": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "Hogwarts": {"_count": 1, "disappear": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "in": {"_count": 1, "slow": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "over": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}}, "Moody": {"_count": 1, "with": {"_count": 1}}, "students": {"_count": 2, "Dennis": {"_count": 1}, "": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 2, "darning": {"_count": 1}, "s": {"_count": 1}}, "Fleur": {"_count": 1, "out": {"_count": 1}}, "over": {"_count": 2, "me": {"_count": 1}, "them": {"_count": 1}}, "this": {"_count": 2, "Mr": {"_count": 1}, "irritating": {"_count": 1}}, "Krum": {"_count": 1, "debating": {"_count": 1}}, "with": {"_count": 1, "interest": {"_count": 1}}, "people": {"_count": 1, "and": {"_count": 1}}, "Cho": {"_count": 1, "and": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 3}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "Bagman": {"_count": 1, "very": {"_count": 1}}, "twenty": {"_count": 1, "merpeople": {"_count": 1}}, "now": {"_count": 1, "as": {"_count": 1}}, "crowd": {"_count": 7, "recoiled": {"_count": 1}, "was": {"_count": 2}, "waved": {"_count": 1}, "in": {"_count": 1}, "roared": {"_count": 1}, "stirred": {"_count": 1}}, "Crouchs": {"_count": 1, "son": {"_count": 1}}, "Wormtail": {"_count": 1, "sob": {"_count": 1}}, "Death": {"_count": 2, "Eaters": {"_count": 2}}, "all": {"_count": 1, "the": {"_count": 1}}, "television": {"_count": 1, "with": {"_count": 1}}, "their": {"_count": 4, "expressions": {"_count": 1}, "tiny": {"_count": 1}, "practice": {"_count": 1}, "procession": {"_count": 1}}, "blurred": {"_count": 1, "shadows": {"_count": 1}}, "what": {"_count": 2, "Neville": {"_count": 1}, "was": {"_count": 1}}, "Luna": {"_count": 1, "laughing": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "were": {"_count": 1, "laughing": {"_count": 1}}, "dust": {"_count": 1, "swirl": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 1}, "several": {"_count": 1}}, "Umbridge": {"_count": 1, "covertly": {"_count": 1}}, "your": {"_count": 2, "friends": {"_count": 1}, "every": {"_count": 1}}, "Malfoy": {"_count": 2, "faces": {"_count": 1}, "out": {"_count": 1}}, "as": {"_count": 2, "Fred": {"_count": 1}, "they": {"_count": 1}}, "All": {"_count": 1, "he": {"_count": 1}}, "its": {"_count": 2, "progress": {"_count": 1}, "wings": {"_count": 1}}, "Dumbledore": {"_count": 2, "So": {"_count": 1}, "over": {"_count": 1}}, "other": {"_count": 1, "pairs": {"_count": 1}}, "that": {"_count": 2, "youre": {"_count": 1}, "Potty": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Roger": {"_count": 1, "Davies": {"_count": 1}}, "Rita": {"_count": 1, "balancing": {"_count": 1}}, "made": {"_count": 1, "her": {"_count": 1}}, "hungrily": {"_count": 1, "edging": {"_count": 1}}, "laughed": {"_count": 1, "Snape": {"_count": 1}}, "cheered": {"_count": 1, "": {"_count": 1}}, "uncomprehendingly": {"_count": 1, "as": {"_count": 1}}, "you": {"_count": 4, "lot": {"_count": 1}, "demonstrate": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "coolly": {"_count": 1, "from": {"_count": 1}}, "anxiously": {"_count": 2, "out": {"_count": 1}, "as": {"_count": 1}}, "Ginnys": {"_count": 1, "struggles": {"_count": 1}}, "Grawp": {"_count": 1, "s": {"_count": 1}}, "Mundungus": {"_count": 1, "grab": {"_count": 1}}, "Riddle": {"_count": 1, "intently": {"_count": 1}}, "Slughorn": {"_count": 1, "opening": {"_count": 1}}, "horrified": {"_count": 1, "by": {"_count": 1}}, "resentfully": {"_count": 1, "as": {"_count": 1}}, "these": {"_count": 1, "exchanges": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Xenophilius": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "frozen": {"_count": 1, "and": {"_count": 1}}, "rather": {"_count": 1, "gloomily": {"_count": 1}}, "wizards": {"_count": 1, "scattered": {"_count": 1}}, "Grindelwald": {"_count": 1, "hurting": {"_count": 1}}, "Filch": {"_count": 1, "moving": {"_count": 1}}}, "silently": {"_count": 49, "youd": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "placed": {"_count": 1, "a": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 2}, "Harry": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "wherever": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 3, "they": {"_count": 1}, "began": {"_count": 1}, "swept": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 4, "onto": {"_count": 1}, "Ginnys": {"_count": 1}, "her": {"_count": 2}}, "Harry": {"_count": 1, "dodged": {"_count": 1}}, "around": {"_count": 2, "behind": {"_count": 1}, "Hagrids": {"_count": 1}}, "Black": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "they": {"_count": 1, "usually": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "go": {"_count": 1, "with": {"_count": 1}}, "watchful": {"_count": 1, "crowd": {"_count": 1}}, "revolving": {"_count": 1, "girl": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "before": {"_count": 1, "them": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "jeering": {"_count": 1, "others": {"_count": 1}}, "their": {"_count": 1, "arms": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "mouthing": {"_count": 1, "the": {"_count": 1}}, "staring": {"_count": 1, "students": {"_count": 1}}, "tapping": {"_count": 1, "each": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "daring": {"_count": 1, "any": {"_count": 1}}, "pointing": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "possible": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "popped": {"_count": 15, "out": {"_count": 5, "of": {"_count": 4}, "his": {"_count": 1}}, "the": {"_count": 1, "goldenbrown": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 2}, "the": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}, "flashed": {"_count": 1, "bounced": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "up": {"_count": 1, "on": {"_count": 1}}, "into": {"_count": 1, "my": {"_count": 1}}}, "tail": {"_count": 102, "twitched": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "poking": {"_count": 2, "through": {"_count": 1}, "out": {"_count": 1}}, "feathers": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "feather": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "removed": {"_count": 1, "before": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "of": {"_count": 11, "neat": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 2}, "this": {"_count": 1}, "Lupins": {"_count": 1}, "great": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "hair": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "V": {"_count": 1, "THE": {"_count": 1}}, "less": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}, "thrashed": {"_count": 2, "narrowly": {"_count": 1}, "again": {"_count": 1}}, "whipped": {"_count": 1, "across": {"_count": 1}}, "swung": {"_count": 1, "over": {"_count": 1}}, "he": {"_count": 2, "thought": {"_count": 1}, "said": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 11, "drag": {"_count": 1}, "aimed": {"_count": 1}, "ran": {"_count": 2}, "sped": {"_count": 1}, "was": {"_count": 1}, "Harry": {"_count": 1}, "blinked": {"_count": 1}, "dropping": {"_count": 1}, "disappear": {"_count": 1}, "tell": {"_count": 1}}, "end": {"_count": 1, "you": {"_count": 1}}, "him": {"_count": 2, "shed": {"_count": 1}, "but": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "bobbed": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 2, "stop": {"_count": 1}, "his": {"_count": 1}}, "held": {"_count": 2, "jauntily": {"_count": 1}, "high": {"_count": 1}}, "whip": {"_count": 1, "through": {"_count": 1}}, "had": {"_count": 1, "vanished": {"_count": 1}}, "alight": {"_count": 1, "": {"_count": 1}}, "flailing": {"_count": 1, "helplessly": {"_count": 1}}, "leaving": {"_count": 1, "yardlong": {"_count": 1}}, "came": {"_count": 1, "whipping": {"_count": 1}}, "once": {"_count": 1, "then": {"_count": 1}}, "sweating": {"_count": 1, "in": {"_count": 1}}, "ending": {"_count": 1, "in": {"_count": 1}}, "madly": {"_count": 1, "": {"_count": 1}}, "Marge": {"_count": 1, "bobbing": {"_count": 1}}, "frantically": {"_count": 1, "": {"_count": 1}}, "blurred": {"_count": 1, "people": {"_count": 1}}, "then": {"_count": 1, "bowed": {"_count": 1}}, "since": {"_count": 1, "before": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "as": {"_count": 1}}, "twigs": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 2, "Malfoy": {"_count": 1}, "Slughorn": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "Malfoy": {"_count": 1, "houseelves": {"_count": 1}}, "Bills": {"_count": 1, "voice": {"_count": 1}}, "which": {"_count": 1, "thrashed": {"_count": 1}}, "thrashing": {"_count": 1, "Hermione": {"_count": 1}}}, "twitched": {"_count": 29, "and": {"_count": 4, "its": {"_count": 1}, "they": {"_count": 1}, "jerked": {"_count": 1}, "choked": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "in": {"_count": 3, "a": {"_count": 1}, "Ritas": {"_count": 1}, "his": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 3, "cloak": {"_count": 1}, "hangings": {"_count": 1}, "hawthorn": {"_count": 1}}, "or": {"_count": 1, "shook": {"_count": 1}}, "convulsively": {"_count": 1, "": {"_count": 1}}, "unpleasantly": {"_count": 1, "at": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "aside": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "uncontrollably": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "hers": {"_count": 1}}, "her": {"_count": 1, "essay": {"_count": 1}}, "toward": {"_count": 1, "his": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "narrowed": {"_count": 31, "": {"_count": 9, ".": {"_count": 9}}, "his": {"_count": 2, "wicked": {"_count": 1}, "eyes": {"_count": 1}}, "dangerously": {"_count": 1, "again": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 2}}, "ready": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "he": {"_count": 1, "wasnt": {"_count": 1}}, "maliciously": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "fixed": {"_count": 1}, "her": {"_count": 1}}, "with": {"_count": 1, "suspicion": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "eyes": {"_count": 3, "": {"_count": 2}, "were": {"_count": 1}}, "in": {"_count": 2, "intense": {"_count": 1}, "dislike": {"_count": 1}}, "malevolently": {"_count": 1, "but": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 1, "as": {"_count": 1}}}, "Nothing": {"_count": 116, "like": {"_count": 4, "this": {"_count": 1}, "a": {"_count": 2}, "that": {"_count": 1}}, "nothing": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "my": {"_count": 1}}, "Harry": {"_count": 3, "lied": {"_count": 2}, "said": {"_count": 1}}, "": {"_count": 11, "?": {"_count": 1}, ".": {"_count": 5}, "!": {"_count": 5}}, "thats": {"_count": 1, "why": {"_count": 1}}, "said": {"_count": 20, "Harry": {"_count": 13}, "Hermione": {"_count": 3}, "Lupin": {"_count": 1}, "Ron": {"_count": 2}, "Dumbledore": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "Neville": {"_count": 1, "nothing": {"_count": 1}}, "just": {"_count": 1, "black": {"_count": 1}}, "more": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 7, "worry": {"_count": 5}, "lose": {"_count": 1}, "summon": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "happened": {"_count": 16, "": {"_count": 14}, "except": {"_count": 1}, "but": {"_count": 1}}, "but": {"_count": 3, "that": {"_count": 1}, "deep": {"_count": 1}, "the": {"_count": 1}}, "anyone": {"_count": 1, "said": {"_count": 1}}, "lifethreatening": {"_count": 1, "he": {"_count": 1}}, "changed": {"_count": 1, "when": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "shrugged": {"_count": 1, "Neville": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "whatsoever": {"_count": 4, "occurred": {"_count": 1}, "said": {"_count": 1}, "happened": {"_count": 2}}, "would": {"_count": 2, "ever": {"_count": 1}, "penetrate": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "muttered": {"_count": 1}}, "else": {"_count": 2, "can": {"_count": 1}, "mattered": {"_count": 1}}, "about": {"_count": 2, "any": {"_count": 1}, "you": {"_count": 1}}, "rash": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "flew": {"_count": 1, "out": {"_count": 1}}, "wrong": {"_count": 1, "with": {"_count": 1}}, "on": {"_count": 1, "you": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "remained": {"_count": 1, "of": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "Ive": {"_count": 1}}, "that": {"_count": 2, "made": {"_count": 1}, "even": {"_count": 1}}, "special": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "particular": {"_count": 1}, "the": {"_count": 1}}, "lied": {"_count": 1, "Harry": {"_count": 1}}, "replied": {"_count": 1, "Bill": {"_count": 1}}, "too": {"_count": 1, "big": {"_count": 1}}, "Kreacher": {"_count": 1, "did": {"_count": 1}}, "was": {"_count": 1, "explained": {"_count": 1}}}, "tall": {"_count": 102, "thin": {"_count": 6, "and": {"_count": 2}, "blackhaired": {"_count": 1}, "man": {"_count": 1}, "wizard": {"_count": 2}}, "as": {"_count": 9, "a": {"_count": 2}, "anyone": {"_count": 1}, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 1}, "she": {"_count": 1}, "Albus": {"_count": 1}}, "blackhaired": {"_count": 3, "witch": {"_count": 1}, "boy": {"_count": 1}, "man": {"_count": 1}}, "For": {"_count": 1, "Im": {"_count": 1}}, "kid": {"_count": 1, "with": {"_count": 1}}, "its": {"_count": 2, "skin": {"_count": 1}, "face": {"_count": 1}}, "suit": {"_count": 1, "of": {"_count": 1}}, "witch": {"_count": 1, "gliding": {"_count": 1}}, "goal": {"_count": 1, "posts": {"_count": 1}}, "and": {"_count": 17, "burly": {"_count": 1}, "gangling": {"_count": 1}, "covered": {"_count": 1}, "strapping": {"_count": 1}, "slim": {"_count": 1}, "beautiful": {"_count": 1}, "thin": {"_count": 3}, "lean": {"_count": 1}, "thick": {"_count": 1}, "skeletally": {"_count": 1}, "untidyhaired": {"_count": 1}, "willowy": {"_count": 1}, "emaciated": {"_count": 1}, "from": {"_count": 1}, "handsome": {"_count": 1}}, "wizard": {"_count": 2, "with": {"_count": 1}, "on": {"_count": 1}}, "balding": {"_count": 1, "Mr": {"_count": 1}}, "one": {"_count": 1, "with": {"_count": 1}}, "goodlooking": {"_count": 1, "one": {"_count": 1}}, "black": {"_count": 6, "hooded": {"_count": 2}, "girl": {"_count": 2}, "wizard": {"_count": 1}, "boy": {"_count": 1}}, "fullgrown": {"_count": 1, "man": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "with": {"_count": 1, "long": {"_count": 1}}, "figures": {"_count": 1, "were": {"_count": 1}}, "himself": {"_count": 1, "had": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "fountain": {"_count": 1, "": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "Krum": {"_count": 1, "was": {"_count": 1}}, "oak": {"_count": 1, "": {"_count": 1}}, "hooded": {"_count": 1, "creatures": {"_count": 1}}, "stories": {"_count": 1, "because": {"_count": 1}}, "dark": {"_count": 1, "woman": {"_count": 1}}, "man": {"_count": 2, "with": {"_count": 1}, "who": {"_count": 1}}, "boy": {"_count": 1, "with": {"_count": 1}}, "stone": {"_count": 2, "pillars": {"_count": 2}}, "goalposts": {"_count": 1, "Harry": {"_count": 1}}, "skinny": {"_count": 2, "blond": {"_count": 2}}, "flaming": {"_count": 1, "creatures": {"_count": 1}}, "tweedy": {"_count": 1, "woman": {"_count": 1}}, "hills": {"_count": 1, "then": {"_count": 1}}, "Slytherins": {"_count": 1, "and": {"_count": 1}}, "figure": {"_count": 4, "moving": {"_count": 1}, "in": {"_count": 1}, "crossing": {"_count": 1}, "passing": {"_count": 1}}, "enjoys": {"_count": 1, "ripping": {"_count": 1}}, "form": {"_count": 1, "unfolded": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}, "pillars": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "for": {"_count": 1, "eleven": {"_count": 1}}, "pale": {"_count": 2, "darkhaired": {"_count": 1}, "figure": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "order": {"_count": 1, "and": {"_count": 1}}, "faceless": {"_count": 1, "and": {"_count": 1}}, "dustcolored": {"_count": 1, "and": {"_count": 1}}, "window": {"_count": 1, "obscured": {"_count": 1}}, "youll": {"_count": 1, "need": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "statue": {"_count": 1, "of": {"_count": 1}}, "ghost": {"_count": 1, "who": {"_count": 1}}}, "judging": {"_count": 20, "by": {"_count": 16, "the": {"_count": 14}, "her": {"_count": 1}, "their": {"_count": 1}}, "against": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 1, "tournament": {"_count": 1}}, "from": {"_count": 1, "what": {"_count": 1}}}, "silver": {"_count": 272, "of": {"_count": 2, "his": {"_count": 2}}, "cigarette": {"_count": 3, "lighter": {"_count": 3}}, "Put": {"_count": 1, "Outer": {"_count": 1}}, "fastenings": {"_count": 2, "Please": {"_count": 1}, "of": {"_count": 1}}, "instruments": {"_count": 10, "Harry": {"_count": 1}, "stood": {"_count": 3}, "standing": {"_count": 1}, "whose": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 1}, "whirring": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "doors": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "Sickles": {"_count": 5, "to": {"_count": 1}, "and": {"_count": 3}, "inside": {"_count": 1}}, "unicorn": {"_count": 1, "horns": {"_count": 1}}, "markings": {"_count": 1, "out": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "hair": {"_count": 10, "beard": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 6}, "": {"_count": 1}, "flying": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 10, "pointy": {"_count": 1}, "gold": {"_count": 1}, "bronze": {"_count": 1}, "Hagrids": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 2}, "which": {"_count": 1}, "green": {"_count": 1}}, "wings": {"_count": 3, "": {"_count": 1}, "protruding": {"_count": 1}, "fluttered": {"_count": 1}}, "whistle": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "boats": {"_count": 1, "of": {"_count": 1}}, "Sickle": {"_count": 1, "embedded": {"_count": 1}}, "volume": {"_count": 1, "caught": {"_count": 1}}, "beard": {"_count": 7, "": {"_count": 2}, "and": {"_count": 3}, "gleaming": {"_count": 1}, "fulllength": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 4}}, "like": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "key": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "celebrate": {"_count": 1}}, "became": {"_count": 1, "gold": {"_count": 1}}, "button": {"_count": 1, "on": {"_count": 1}}, "goblets": {"_count": 2, "and": {"_count": 1}, "anyway": {"_count": 1}}, "lettering": {"_count": 1, "on": {"_count": 1}}, "writing": {"_count": 1, "on": {"_count": 1}}, "bloodstains": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "platters": {"_count": 2, "cakes": {"_count": 1}, "of": {"_count": 1}}, "tears": {"_count": 1, "welling": {"_count": 1}}, "sheets": {"_count": 1, "of": {"_count": 1}}, "light": {"_count": 5, "hit": {"_count": 1}, "flashed": {"_count": 1}, "like": {"_count": 1}, "appeared": {"_count": 1}, "shoot": {"_count": 1}}, "contraptions": {"_count": 1, "": {"_count": 1}}, "prefects": {"_count": 1, "badge": {"_count": 1}}, "sword": {"_count": 4, "had": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "its": {"_count": 1}}, "mustache": {"_count": 2, "quivering": {"_count": 1}, "": {"_count": 1}}, "eyebrows": {"_count": 2, "": {"_count": 2}}, "words": {"_count": 1, "stamped": {"_count": 1}}, "TailTwig": {"_count": 1, "Clippers": {"_count": 1}}, "badge": {"_count": 2, "on": {"_count": 1}, "with": {"_count": 1}}, "teapot": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 2, "Cup": {"_count": 2}}, "stuff": {"_count": 1, "at": {"_count": 1}}, "noisemaker": {"_count": 1, "to": {"_count": 1}}, "shadow": {"_count": 1, "came": {"_count": 1}}, "jug": {"_count": 1, "beneath": {"_count": 1}}, "serpent": {"_count": 3, "of": {"_count": 1}, "for": {"_count": 1}, "tails": {"_count": 1}}, "ladder": {"_count": 5, "the": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "first": {"_count": 1}}, "escaped": {"_count": 1, "his": {"_count": 1}}, "mist": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 1}, "leaving": {"_count": 1}, "Professor": {"_count": 1}}, "something": {"_count": 1, "had": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "were": {"_count": 2, "suddenly": {"_count": 1}, "everywhere": {"_count": 1}}, "animal": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 2, "": {"_count": 1}, "seemed": {"_count": 1}}, "upon": {"_count": 1, "their": {"_count": 1}}, "stepladder": {"_count": 1, "led": {"_count": 1}}, "smoke": {"_count": 3, "rings": {"_count": 1}, "feebler": {"_count": 1}, "issued": {"_count": 1}}, "ribbon": {"_count": 1, "shot": {"_count": 1}}, "fruit": {"_count": 1, "bowl": {"_count": 1}}, "tray": {"_count": 1, "laden": {"_count": 1}}, "frost": {"_count": 1, "with": {"_count": 1}}, "when": {"_count": 1, "theyre": {"_count": 1}}, "darts": {"_count": 1, "": {"_count": 1}}, "fish": {"_count": 1, "tails": {"_count": 1}}, "bubble": {"_count": 1, "emerging": {"_count": 1}}, "sun": {"_count": 1, "shining": {"_count": 1}}, "stars": {"_count": 4, "and": {"_count": 2}, "were": {"_count": 1}, "fell": {"_count": 1}}, "platter": {"_count": 1, "of": {"_count": 1}}, "furs": {"_count": 1, "and": {"_count": 1}}, "thought": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "stag": {"_count": 8, "erupted": {"_count": 3}, "faded": {"_count": 1}, "he": {"_count": 1}, "soared": {"_count": 1}, "an": {"_count": 1}, "burst": {"_count": 1}}, "Patronus": {"_count": 2, "": {"_count": 1}, "soar": {"_count": 1}}, "dagger": {"_count": 3, "from": {"_count": 1}, "shaking": {"_count": 1}, "releases": {"_count": 1}}, "hung": {"_count": 1, "shining": {"_count": 1}}, "hand": {"_count": 4, "now": {"_count": 1}, "pulled": {"_count": 1}, "closed": {"_count": 1}, "but": {"_count": 1}}, "antlers": {"_count": 1, "caught": {"_count": 1}}, "door": {"_count": 1, "knocker": {"_count": 1}}, "mate": {"_count": 1, "": {"_count": 1}}, "embossed": {"_count": 1, "with": {"_count": 1}}, "boxes": {"_count": 1, "inscribed": {"_count": 1}}, "snuffbox": {"_count": 1, "within": {"_count": 1}}, "instrument": {"_count": 3, "something": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "frames": {"_count": 1, "all": {"_count": 1}}, "visitors": {"_count": 1, "badge": {"_count": 1}}, "W": {"_count": 1, "on": {"_count": 1}}, "vapor": {"_count": 4, "": {"_count": 1}, "should": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}}, "badges": {"_count": 1, "in": {"_count": 1}}, "crownshaped": {"_count": 1, "badges": {"_count": 1}}, "ringlets": {"_count": 2, "in": {"_count": 1}, "that": {"_count": 1}}, "tube": {"_count": 1, "at": {"_count": 1}}, "streamers": {"_count": 1, "magical": {"_count": 1}}, "otter": {"_count": 2, "was": {"_count": 1}, "burst": {"_count": 1}}, "flash": {"_count": 1, "went": {"_count": 1}}, "I": {"_count": 1, "upon": {"_count": 1}}, "white": {"_count": 3, "contents": {"_count": 1}, "doe": {"_count": 1}, "and": {"_count": 1}}, "figure": {"_count": 1, "53": {"_count": 1}}, "shield": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "cogs": {"_count": 1, "and": {"_count": 1}}, "ink": {"_count": 1, "pot": {"_count": 1}}, "mass": {"_count": 2, "below": {"_count": 1}, "landing": {"_count": 1}}, "wig": {"_count": 2, "who": {"_count": 2}}, "glove": {"_count": 1, "": {"_count": 1}}, "walruslike": {"_count": 1, "mustache": {"_count": 1}}, "picture": {"_count": 1, "frames": {"_count": 1}}, "symbols": {"_count": 1, "on": {"_count": 1}}, "knife": {"_count": 6, "": {"_count": 2}, "of": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}}, "memories": {"_count": 1, "from": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "Bellatrixs": {"_count": 1}}, "thimble": {"_count": 1, "and": {"_count": 1}}, "robes": {"_count": 1, "that": {"_count": 1}}, "surface": {"_count": 1, "landing": {"_count": 1}}, "contents": {"_count": 1, "of": {"_count": 1}}, "thread": {"_count": 1, "of": {"_count": 1}}, "Cup": {"_count": 1, "at": {"_count": 1}}, "outline": {"_count": 1, "of": {"_count": 1}}, "lining": {"_count": 1, "Ive": {"_count": 1}}, "weasel": {"_count": 1, "which": {"_count": 1}}, "trays": {"_count": 1, "of": {"_count": 1}}, "came": {"_count": 1, "falling": {"_count": 1}}, "cat": {"_count": 2, "as": {"_count": 1}, "patrolled": {"_count": 1}}, "magical": {"_count": 1, "instruments": {"_count": 1}}, "creatures": {"_count": 1, "": {"_count": 1}}, "repels": {"_count": 1, "mundane": {"_count": 1}}, "frame": {"_count": 1, "": {"_count": 1}}, "framed": {"_count": 1, "photograph": {"_count": 1}}, "cross": {"_count": 1, "His": {"_count": 1}}, "doe": {"_count": 6, "was": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 2}, "She": {"_count": 1}}, "object": {"_count": 1, "from": {"_count": 1}}, "sliding": {"_count": 1, "over": {"_count": 1}}, "fingers": {"_count": 2, "slackened": {"_count": 1}, "were": {"_count": 1}}, "tool": {"_count": 1, "that": {"_count": 1}}, "hilt": {"_count": 1, "of": {"_count": 1}}, "armor": {"_count": 1, "the": {"_count": 1}}, "flagon": {"_count": 1, "nearby": {"_count": 1}}, "that": {"_count": 1, "bore": {"_count": 1}}, "rope": {"_count": 1, "appeared": {"_count": 1}}, "net": {"_count": 1, "fell": {"_count": 1}}, "cats": {"_count": 1, "with": {"_count": 1}}, "terrier": {"_count": 1, "burst": {"_count": 1}}, "hare": {"_count": 1, "a": {"_count": 1}}, "spark": {"_count": 1, "then": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "blade": {"_count": 1, "could": {"_count": 1}}}, "hair": {"_count": 555, "and": {"_count": 101, "beard": {"_count": 19}, "bright": {"_count": 2}, "a": {"_count": 14}, "rather": {"_count": 2}, "yellow": {"_count": 1}, "his": {"_count": 6}, "her": {"_count": 3}, "looked": {"_count": 1}, "put": {"_count": 1}, "at": {"_count": 1}, "thick": {"_count": 1}, "an": {"_count": 2}, "before": {"_count": 1}, "going": {"_count": 1}, "long": {"_count": 1}, "feeling": {"_count": 1}, "longnosed": {"_count": 1}, "mustache": {"_count": 2}, "rosy": {"_count": 1}, "glasses": {"_count": 3}, "the": {"_count": 3}, "swept": {"_count": 1}, "gray": {"_count": 1}, "goatee": {"_count": 1}, "heavily": {"_count": 2}, "added": {"_count": 1}, "said": {"_count": 1}, "bloodshot": {"_count": 1}, "freckles": {"_count": 1}, "its": {"_count": 1}, "wore": {"_count": 1}, "pointed": {"_count": 1}, "Professor": {"_count": 1}, "astonishingly": {"_count": 1}, "was": {"_count": 1}, "stubble": {"_count": 1}, "eager": {"_count": 1}, "appeared": {"_count": 1}, "large": {"_count": 1}, "wrinkled": {"_count": 1}, "Ron": {"_count": 1}, "pulled": {"_count": 2}, "dark": {"_count": 1}, "whiskers": {"_count": 2}, "hornrimmed": {"_count": 1}, "trembling": {"_count": 1}, "slightly": {"_count": 1}, "wished": {"_count": 1}, "clutching": {"_count": 1}, "clothes": {"_count": 1}, "floorlength": {"_count": 1}, "robes": {"_count": 1}}, "was": {"_count": 62, "drawn": {"_count": 2}, "the": {"_count": 1}, "very": {"_count": 2}, "standing": {"_count": 2}, "creeping": {"_count": 1}, "turning": {"_count": 1}, "reading": {"_count": 1}, "disheveled": {"_count": 2}, "a": {"_count": 3}, "flecked": {"_count": 1}, "carrying": {"_count": 1}, "advancing": {"_count": 1}, "suddenly": {"_count": 1}, "unkempt": {"_count": 1}, "on": {"_count": 2}, "visible": {"_count": 1}, "almost": {"_count": 1}, "short": {"_count": 3}, "set": {"_count": 1}, "coming": {"_count": 1}, "bushy": {"_count": 1}, "concerned": {"_count": 1}, "longer": {"_count": 2}, "dark": {"_count": 1}, "wearing": {"_count": 1}, "withdrawing": {"_count": 1}, "escaping": {"_count": 1}, "blonde": {"_count": 1}, "tomato": {"_count": 1}, "slightly": {"_count": 1}, "matted": {"_count": 2}, "sticking": {"_count": 1}, "lank": {"_count": 2}, "full": {"_count": 1}, "sprouting": {"_count": 1}, "sitting": {"_count": 1}, "growing": {"_count": 1}, "whipped": {"_count": 1}, "her": {"_count": 1}, "darkening": {"_count": 1}, "sleek": {"_count": 1}, "teased": {"_count": 1}, "smoothed": {"_count": 1}, "still": {"_count": 1}, "dirty": {"_count": 1}, "now": {"_count": 1}, "overlong": {"_count": 1}, "untidy": {"_count": 1}, "thicker": {"_count": 1}, "receding": {"_count": 1}}, "over": {"_count": 3, "his": {"_count": 2}, "her": {"_count": 1}}, "": {"_count": 93, "!": {"_count": 5}, ".": {"_count": 87}, "?": {"_count": 1}}, "simply": {"_count": 1, "grew": {"_count": 1}}, "that": {"_count": 8, "lay": {"_count": 1}, "was": {"_count": 2}, "he": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 1}, "fell": {"_count": 1}, "completely": {"_count": 1}}, "so": {"_count": 4, "short": {"_count": 1}, "that": {"_count": 2}, "matted": {"_count": 1}}, "exactly": {"_count": 1, "as": {"_count": 1}}, "fixing": {"_count": 1, "Harry": {"_count": 1}}, "eight": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 20, "of": {"_count": 20}}, "on": {"_count": 7, "": {"_count": 1}, "Harrys": {"_count": 3}, "his": {"_count": 2}, "end": {"_count": 1}}, "beard": {"_count": 1, "and": {"_count": 1}}, "freckles": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 2, "Ron": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 2, "hooked": {"_count": 1}, "pointed": {"_count": 1}}, "net": {"_count": 3, "had": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "as": {"_count": 8, "they": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 2}, "though": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}, "clean": {"_count": 1}}, "in": {"_count": 10, "Potions": {"_count": 1}, "a": {"_count": 4}, "rollers": {"_count": 1}, "which": {"_count": 1}, "passing": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "he": {"_count": 5, "had": {"_count": 1}, "felt": {"_count": 1}, "said": {"_count": 1}, "put": {"_count": 1}, "looked": {"_count": 1}}, "back": {"_count": 4, "from": {"_count": 1}, "for": {"_count": 1}, "quite": {"_count": 1}, "as": {"_count": 1}}, "flying": {"_count": 7, "behind": {"_count": 1}, "": {"_count": 1}, "like": {"_count": 1}, "as": {"_count": 2}, "in": {"_count": 1}, "around": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "shining": {"_count": 1, "under": {"_count": 1}}, "gave": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 3}, "their": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "had": {"_count": 9, "gone": {"_count": 1}, "always": {"_count": 1}, "fallen": {"_count": 1}, "turned": {"_count": 1}, "just": {"_count": 1}, "marched": {"_count": 1}, "been": {"_count": 1}, "grown": {"_count": 1}, "come": {"_count": 1}}, "is": {"_count": 1, "as": {"_count": 1}}, "wasnt": {"_count": 1, "as": {"_count": 1}}, "more": {"_count": 1, "like": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "his": {"_count": 1, "hornrimmed": {"_count": 1}}, "lie": {"_count": 2, "flat": {"_count": 2}}, "plastered": {"_count": 3, "flat": {"_count": 1}, "to": {"_count": 2}}, "blinked": {"_count": 1, "slowly": {"_count": 1}}, "of": {"_count": 4, "him": {"_count": 1}, "Harrys": {"_count": 1}, "Severus": {"_count": 1}, "pure": {"_count": 1}}, "walking": {"_count": 1, "with": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 4, "had": {"_count": 1}, "could": {"_count": 2}, "started": {"_count": 1}}, "clean": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 4, "slimeball": {"_count": 1}, "color": {"_count": 1}, "texture": {"_count": 1}, "hat": {"_count": 1}}, "fly": {"_count": 1, "back": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "hung": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "including": {"_count": 1, "Fred": {"_count": 1}}, "Draco": {"_count": 1, "greatly": {"_count": 1}}, "fan": {"_count": 1, "out": {"_count": 1}}, "angrily": {"_count": 1, "and": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}, "stopped": {"_count": 1, "blowing": {"_count": 1}}, "off": {"_count": 2, "his": {"_count": 1}, "Malfoys": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 2}, "alone": {"_count": 1}}, "then": {"_count": 2, "began": {"_count": 1}, "shrugged": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 2}}, "fell": {"_count": 5, "almost": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}, "below": {"_count": 1}, "in": {"_count": 1}}, "using": {"_count": 1, "large": {"_count": 1}}, "smiling": {"_count": 1, "and": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}, "myself": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 1}, "all": {"_count": 1}, "each": {"_count": 1}, "somebody": {"_count": 1}}, "down": {"_count": 2, "she": {"_count": 1}, "in": {"_count": 1}}, "band": {"_count": 1, "as": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "curl": {"_count": 2, "": {"_count": 2}}, "grow": {"_count": 1, "into": {"_count": 1}}, "made": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "Hermown": {"_count": 1, "ninny": {"_count": 1}}, "near": {"_count": 1, "his": {"_count": 1}}, "seemed": {"_count": 4, "to": {"_count": 4}}, "again": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 3, "earrings": {"_count": 1}, "beard": {"_count": 1}, "that": {"_count": 1}}, "were": {"_count": 2, "missing": {"_count": 1}, "positioned": {"_count": 1}}, "to": {"_count": 3, "make": {"_count": 2}, "stand": {"_count": 1}}, "rippling": {"_count": 3, "in": {"_count": 2}, "down": {"_count": 1}}, "after": {"_count": 1, "wed": {"_count": 1}}, "than": {"_count": 1, "when": {"_count": 1}}, "for": {"_count": 1, "four": {"_count": 1}}, "winked": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "appeared": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "came": {"_count": 2, "charging": {"_count": 1}, "bustling": {"_count": 1}}, "growing": {"_count": 1, "out": {"_count": 1}}, "tonight": {"_count": 1, "too": {"_count": 1}}, "sat": {"_count": 1, "on": {"_count": 1}}, "gleamed": {"_count": 1, "in": {"_count": 1}}, "put": {"_count": 1, "him": {"_count": 1}}, "very": {"_count": 1, "pale": {"_count": 1}}, "tied": {"_count": 3, "in": {"_count": 1}, "back": {"_count": 2}}, "disheveled": {"_count": 1, "he": {"_count": 1}}, "falling": {"_count": 2, "around": {"_count": 1}, "over": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "swinging": {"_count": 2, "forward": {"_count": 1}, "about": {"_count": 1}}, "dry": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "matchin": {"_count": 1}}, "bright": {"_count": 1, "blue": {"_count": 1}}, "which": {"_count": 2, "had": {"_count": 1}, "will": {"_count": 1}}, "chivvying": {"_count": 1, "him": {"_count": 1}}, "while": {"_count": 3, "staring": {"_count": 1}, "she": {"_count": 1}, "tears": {"_count": 1}}, "stuck": {"_count": 2, "up": {"_count": 2}}, "making": {"_count": 1, "it": {"_count": 1}}, "because": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 1}, "nothing": {"_count": 1}, "Ginny": {"_count": 1}, "Ron": {"_count": 1}}, "under": {"_count": 1, "this": {"_count": 1}}, "flat": {"_count": 1, "again": {"_count": 1}}, "visible": {"_count": 1, "right": {"_count": 1}}, "stand": {"_count": 1, "on": {"_count": 1}}, "gleaming": {"_count": 1, "in": {"_count": 1}}, "graying": {"_count": 1, "a": {"_count": 1}}, "parted": {"_count": 1, "in": {"_count": 1}}, "streaming": {"_count": 1, "down": {"_count": 1}}, "around": {"_count": 1, "in": {"_count": 1}}, "streaked": {"_count": 1, "liberally": {"_count": 1}}, "poked": {"_count": 1, "her": {"_count": 1}}, "dancing": {"_count": 1, "behind": {"_count": 1}}, "pushed": {"_count": 1, "her": {"_count": 1}}, "looking": {"_count": 1, "dumbfounded": {"_count": 1}}, "jumped": {"_count": 1, "and": {"_count": 1}}, "wet": {"_count": 1, "with": {"_count": 1}}, "whipping": {"_count": 1, "out": {"_count": 1}}, "disappear": {"_count": 1, "between": {"_count": 1}}, "quite": {"_count": 1, "disconcerting": {"_count": 1}}, "bubbled": {"_count": 1, "sluggishly": {"_count": 1}}, "its": {"_count": 1, "all": {"_count": 1}}, "rainflecked": {"_count": 1, "his": {"_count": 1}}, "nor": {"_count": 1, "the": {"_count": 1}}, "lank": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "miraculously": {"_count": 1, "returned": {"_count": 1}}, "flowing": {"_count": 1, "all": {"_count": 1}}, "hanging": {"_count": 1, "down": {"_count": 1}}, "Kingsley": {"_count": 1, "bald": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "whipped": {"_count": 1, "back": {"_count": 1}}, "zan": {"_count": 1, "you": {"_count": 1}}, "The": {"_count": 1, "door": {"_count": 1}}, "sprouting": {"_count": 1, "copiously": {"_count": 1}}, "pulled": {"_count": 1, "into": {"_count": 1}}, "Apparated": {"_count": 1, "feet": {"_count": 1}}, "bows": {"_count": 1, "and": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}, "turning": {"_count": 1, "redder": {"_count": 1}}, "obscured": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "swirling": {"_count": 1, "like": {"_count": 1}}, "dragged": {"_count": 1, "him": {"_count": 1}}, "reached": {"_count": 1, "his": {"_count": 1}}, "damp": {"_count": 1, "from": {"_count": 1}}, "tangled": {"_count": 1, "by": {"_count": 1}}, "windswept": {"_count": 1, "": {"_count": 1}}, "started": {"_count": 1, "changing": {"_count": 1}}, "plucked": {"_count": 1, "from": {"_count": 1}}, "rippled": {"_count": 1, "behind": {"_count": 1}}, "flew": {"_count": 2, "behind": {"_count": 1}, "as": {"_count": 1}}, "overgrown": {"_count": 1, "his": {"_count": 1}}, "ruffled": {"_count": 1, "their": {"_count": 1}}, "waving": {"_count": 1, "fat": {"_count": 1}}, "like": {"_count": 1, "Hermiones": {"_count": 1}}, "Hello": {"_count": 1, "Minister": {"_count": 1}}, "at": {"_count": 1, "Harrys": {"_count": 1}}, "tickled": {"_count": 1, "his": {"_count": 1}}, "shielded": {"_count": 1, "his": {"_count": 1}}}, "beard": {"_count": 91, "which": {"_count": 1, "were": {"_count": 1}}, "hid": {"_count": 1, "most": {"_count": 1}}, "but": {"_count": 2, "you": {"_count": 1}, "below": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 27}, "?": {"_count": 2}}, "and": {"_count": 11, "Harry": {"_count": 1}, "eyebrows": {"_count": 1}, "mustache": {"_count": 2}, "halfmoon": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "hair": {"_count": 1}, "again": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}}, "twitched": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Thats": {"_count": 1, "er": {"_count": 1}}, "twitching": {"_count": 1, "": {"_count": 1}}, "called": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 3, "fell": {"_count": 1}, "to": {"_count": 1}, "recalled": {"_count": 1}}, "halfmoon": {"_count": 1, "spectacles": {"_count": 1}}, "sopping": {"_count": 1, "wet": {"_count": 1}}, "gleaming": {"_count": 1, "in": {"_count": 1}}, "fulllength": {"_count": 1, "wizards": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "said": {"_count": 3, "Amos": {"_count": 1}, "Mr": {"_count": 2}}, "shining": {"_count": 1, "in": {"_count": 1}}, "looked": {"_count": 1, "slightly": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "Moody": {"_count": 1, "whispered": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "keep": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "or": {"_count": 1, "green": {"_count": 1}}, "no": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "here": {"_count": 1, "here": {"_count": 1}}, "upon": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "were": {"_count": 2, "auburn": {"_count": 1}, "streaked": {"_count": 1}}, "so": {"_count": 1, "overgrown": {"_count": 1}}, "Harry": {"_count": 1, "you": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "flying": {"_count": 1, "behind": {"_count": 1}}, "was": {"_count": 1, "soaking": {"_count": 1}}, "is": {"_count": 1, "in": {"_count": 1}}, "standing": {"_count": 1, "hunchbacked": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "streaming": {"_count": 1, "behind": {"_count": 1}}, "a": {"_count": 1, "trussedup": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "too": {"_count": 1, "long": {"_count": 1}}, "the": {"_count": 1, "piercingly": {"_count": 1}}}, "both": {"_count": 535, "long": {"_count": 2, "enough": {"_count": 1}, "and": {"_count": 1}}, "looked": {"_count": 11, "up": {"_count": 2}, "at": {"_count": 4}, "staggered": {"_count": 1}, "around": {"_count": 1}, "down": {"_count": 1}, "over": {"_count": 1}, "rather": {"_count": 1}}, "angry": {"_count": 2, "and": {"_count": 2}}, "of": {"_count": 94, "them": {"_count": 50}, "you": {"_count": 15}, "yeh": {"_count": 1}, "whom": {"_count": 12}, "his": {"_count": 3}, "us": {"_count": 7}, "Hogwarts": {"_count": 1}, "hers": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "em": {"_count": 1}, "their": {"_count": 1}}, "with": {"_count": 4, "wrinkled": {"_count": 1}, "a": {"_count": 1}, "their": {"_count": 2}}, "Harry": {"_count": 11, "and": {"_count": 11}}, "vaults": {"_count": 1, "": {"_count": 1}}, "shocked": {"_count": 1, "and": {"_count": 1}}, "feet": {"_count": 1, "on": {"_count": 1}}, "hands": {"_count": 13, "and": {"_count": 2}, "around": {"_count": 1}, "off": {"_count": 1}, "held": {"_count": 1}, "clutching": {"_count": 1}, "for": {"_count": 1}, "over": {"_count": 1}, "which": {"_count": 1}, "on": {"_count": 1}, "were": {"_count": 1}, "tied": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 2, "breath": {"_count": 1}, "upper": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 3}, "Dumbledore": {"_count": 1}, "Yes": {"_count": 1}}, "very": {"_count": 2, "brave": {"_count": 1}, "pale": {"_count": 1}}, "his": {"_count": 8, "hands": {"_count": 3}, "kneecaps": {"_count": 1}, "clipboard": {"_count": 1}, "arms": {"_count": 1}, "parents": {"_count": 1}, "theory": {"_count": 1}}, "dentists": {"_count": 1, "said": {"_count": 1}}, "thinking": {"_count": 1, "the": {"_count": 1}}, "brought": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 13, "!": {"_count": 2}, ".": {"_count": 10}, "?": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 3, "and": {"_count": 3}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "abashed": {"_count": 1, "and": {"_count": 1}}, "clutching": {"_count": 4, "stacks": {"_count": 1}, "Cleansweep": {"_count": 1}, "a": {"_count": 2}}, "pretended": {"_count": 1, "not": {"_count": 1}}, "flinched": {"_count": 1, "but": {"_count": 1}}, "backed": {"_count": 1, "into": {"_count": 1}}, "your": {"_count": 2, "families": {"_count": 1}, "parents": {"_count": 1}}, "get": {"_count": 1, "a": {"_count": 1}}, "looking": {"_count": 6, "at": {"_count": 2}, "pale": {"_count": 1}, "extremely": {"_count": 1}, "worried": {"_count": 1}, "positively": {"_count": 1}}, "sign": {"_count": 1, "it": {"_count": 1}}, "do": {"_count": 1, "your": {"_count": 1}}, "Filch": {"_count": 1, "and": {"_count": 1}}, "ends": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "dementors": {"_count": 1}}, "their": {"_count": 2, "wands": {"_count": 1}, "birthday": {"_count": 1}}, "keeled": {"_count": 1, "over": {"_count": 1}}, "jumped": {"_count": 5, "to": {"_count": 1}, "away": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 2}}, "walls": {"_count": 1, "and": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 2}}, "large": {"_count": 1, "mugs": {"_count": 1}}, "pointed": {"_count": 1, "their": {"_count": 1}}, "its": {"_count": 2, "great": {"_count": 1}, "rotting": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "receive": {"_count": 1, "Special": {"_count": 1}}, "asleep": {"_count": 1, "heads": {"_count": 1}}, "awake": {"_count": 1, "": {"_count": 1}}, "abroad": {"_count": 1, "and": {"_count": 1}}, "waving": {"_count": 1, "frantically": {"_count": 1}}, "turned": {"_count": 5, "away": {"_count": 1}, "to": {"_count": 3}, "back": {"_count": 1}}, "wide": {"_count": 1, "and": {"_count": 1}}, "opened": {"_count": 1, "their": {"_count": 1}}, "had": {"_count": 7, "to": {"_count": 2}, "their": {"_count": 2}, "Quidditch": {"_count": 1}, "frozen": {"_count": 1}, "deep": {"_count": 1}}, "Lavender": {"_count": 1, "and": {"_count": 1}}, "staggered": {"_count": 1, "away": {"_count": 1}}, "appearances": {"_count": 1, "had": {"_count": 1}}, "arms": {"_count": 2, "again": {"_count": 1}, "shaking": {"_count": 1}}, "smirking": {"_count": 2, "in": {"_count": 1}, "now": {"_count": 1}}, "excited": {"_count": 1, "and": {"_count": 1}}, "placed": {"_count": 1, "hands": {"_count": 1}}, "boring": {"_count": 1, "and": {"_count": 1}}, "grinned": {"_count": 1, "Snape": {"_count": 1}}, "holding": {"_count": 2, "the": {"_count": 1}, "on": {"_count": 1}}, "shaken": {"_count": 1, "and": {"_count": 1}}, "inside": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "made": {"_count": 2, "furious": {"_count": 1}, "noises": {"_count": 1}}, "stunned": {"_count": 1, "and": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 4, "Ravenclaw": {"_count": 1}, "place": {"_count": 1}, "Order": {"_count": 1}, "wands": {"_count": 1}}, "teams": {"_count": 2, "penalties": {"_count": 1}, "over": {"_count": 1}}, "Bludgers": {"_count": 1, "at": {"_count": 1}}, "Ron": {"_count": 7, "and": {"_count": 7}}, "sets": {"_count": 2, "of": {"_count": 2}}, "mental": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "wands": {"_count": 3, "for": {"_count": 1}, "hit": {"_count": 1}, "the": {"_count": 1}}, "gone": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "Quidditch": {"_count": 1}}, "laughed": {"_count": 2, "although": {"_count": 1}, "and": {"_count": 1}}, "scowling": {"_count": 1, "again": {"_count": 1}}, "be": {"_count": 2, "glad": {"_count": 1}, "outcasts": {"_count": 1}}, "countries": {"_count": 1, "that": {"_count": 1}}, "sides": {"_count": 3, "were": {"_count": 1}, "of": {"_count": 1}, "I": {"_count": 1}}, "twitching": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "such": {"_count": 1}}, "put": {"_count": 3, "their": {"_count": 2}, "your": {"_count": 1}}, "eyes": {"_count": 4, "": {"_count": 2}, "were": {"_count": 1}, "and": {"_count": 1}}, "twins": {"_count": 2, "had": {"_count": 1}, "were": {"_count": 1}}, "comfortable": {"_count": 1, "and": {"_count": 1}}, "go": {"_count": 1, "up": {"_count": 1}}, "talking": {"_count": 1, "very": {"_count": 1}}, "beckoning": {"_count": 1, "frantically": {"_count": 1}}, "stood": {"_count": 3, "and": {"_count": 1}, "there": {"_count": 1}, "up": {"_count": 1}}, "answered": {"_count": 1, "her": {"_count": 1}}, "acted": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "quite": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "have": {"_count": 2, "partners": {"_count": 1}, "portraits": {"_count": 1}}, "just": {"_count": 1, "been": {"_count": 1}}, "whipped": {"_count": 1, "around": {"_count": 1}}, "socks": {"_count": 1, "up": {"_count": 1}}, "wearing": {"_count": 4, "green": {"_count": 1}, "brandnew": {"_count": 1}, "dress": {"_count": 1}, "golden": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 1}, "need": {"_count": 1}, "St": {"_count": 1}, "his": {"_count": 1}}, "stupid": {"_count": 1, "and": {"_count": 1}}, "gave": {"_count": 2, "Harry": {"_count": 2}}, "boys": {"_count": 1, "affections": {"_count": 1}}, "blankets": {"_count": 1, "and": {"_count": 1}}, "worried": {"_count": 1, "and": {"_count": 1}}, "got": {"_count": 2, "a": {"_count": 1}, "here": {"_count": 1}}, "killed": {"_count": 1, "by": {"_count": 1}}, "grateful": {"_count": 1, "because": {"_count": 1}}, "were": {"_count": 6, "narrowed": {"_count": 1}, "smirking": {"_count": 1}, "bandylegged": {"_count": 1}, "childless": {"_count": 1}, "overpowered": {"_count": 1}, "A": {"_count": 1}}, "when": {"_count": 1, "Lord": {"_count": 1}}, "held": {"_count": 1, "a": {"_count": 1}}, "grasped": {"_count": 1, "a": {"_count": 1}}, "damaged": {"_count": 1, "beyond": {"_count": 1}}, "being": {"_count": 1, "raised": {"_count": 1}}, "Stunned": {"_count": 1, "": {"_count": 1}}, "felt": {"_count": 2, "the": {"_count": 1}, "ourselves": {"_count": 1}}, "knew": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "thanked": {"_count": 1, "him": {"_count": 1}}, "bent": {"_count": 1, "low": {"_count": 1}}, "laughing": {"_count": 2, "": {"_count": 1}, "immoderately": {"_count": 1}}, "speaking": {"_count": 1, "in": {"_count": 1}}, "tried": {"_count": 1, "the": {"_count": 1}}, "impatient": {"_count": 1, "and": {"_count": 1}}, "times": {"_count": 3, "he": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}}, "making": {"_count": 1, "loud": {"_count": 1}}, "owls": {"_count": 1, "and": {"_count": 1}}, "screaming": {"_count": 1, "at": {"_count": 1}}, "froze": {"_count": 1, "looking": {"_count": 1}}, "annoyed": {"_count": 1, "and": {"_count": 1}}, "spent": {"_count": 1, "the": {"_count": 1}}, "giggling": {"_count": 1, "and": {"_count": 1}}, "confused": {"_count": 1, "and": {"_count": 1}}, "flew": {"_count": 1, "better": {"_count": 1}}, "really": {"_count": 2, "behind": {"_count": 1}, "young": {"_count": 1}}, "see": {"_count": 1, "it": {"_count": 1}}, "charges": {"_count": 1, "and": {"_count": 1}}, "sat": {"_count": 1, "the": {"_count": 1}}, "directions": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 1, "Malfoy": {"_count": 1}}, "scared": {"_count": 2, "and": {"_count": 2}}, "panting": {"_count": 2, "neither": {"_count": 1}, "excitedly": {"_count": 1}}, "spun": {"_count": 1, "around": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "frowned": {"_count": 1, "in": {"_count": 1}}, "foreign": {"_count": 1, "and": {"_count": 1}}, "coiling": {"_count": 1, "and": {"_count": 1}}, "transform": {"_count": 1, "": {"_count": 1}}, "clapped": {"_count": 1, "their": {"_count": 1}}, "seated": {"_count": 1, "at": {"_count": 1}}, "Sirius": {"_count": 1, "and": {"_count": 1}}, "hat": {"_count": 1, "and": {"_count": 1}}, "orphans": {"_count": 2, "": {"_count": 2}}, "for": {"_count": 1, "a": {"_count": 1}}, "leaving": {"_count": 1, "next": {"_count": 1}}, "started": {"_count": 1, "ripping": {"_count": 1}}, "headless": {"_count": 1, "and": {"_count": 1}}, "crying": {"_count": 1, "silently": {"_count": 1}}, "nearer": {"_count": 1, "Harry": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "surprised": {"_count": 2, "and": {"_count": 2}}, "nostrils": {"_count": 2, "": {"_count": 1}, "He": {"_count": 1}}, "tapped": {"_count": 1, "the": {"_count": 1}}, "blackened": {"_count": 1, "": {"_count": 1}}, "murmured": {"_count": 1, "Lumos": {"_count": 1}}, "Bane": {"_count": 1, "and": {"_count": 1}}, "pushed": {"_count": 1, "with": {"_count": 1}}, "pushing": {"_count": 1, "him": {"_count": 1}}, "instinctively": {"_count": 1, "looked": {"_count": 1}}, "sighed": {"_count": 1, "with": {"_count": 1}}, "gaping": {"_count": 1, "at": {"_count": 1}}, "ankles": {"_count": 1, "": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "drained": {"_count": 1, "of": {"_count": 1}}, "scrambled": {"_count": 1, "to": {"_count": 1}}, "yelled": {"_count": 1, "IMPEDIMENT": {"_count": 1}}, "ducked": {"_count": 1, "again": {"_count": 1}}, "know": {"_count": 7, "that": {"_count": 1}, "he": {"_count": 1}, "how": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 1}, "limited": {"_count": 1}}, "born": {"_count": 1, "at": {"_count": 1}}, "blessing": {"_count": 1, "and": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "frightened": {"_count": 1, "and": {"_count": 1}}, "people": {"_count": 1, "and": {"_count": 1}}, "panicky": {"_count": 1, "and": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "your": {"_count": 1}}, "standing": {"_count": 2, "in": {"_count": 1}, "there": {"_count": 1}}, "bought": {"_count": 1, "large": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "hung": {"_count": 1, "back": {"_count": 1}}, "helping": {"_count": 1, "customers": {"_count": 1}}, "there": {"_count": 2, "too": {"_count": 2}}, "sitting": {"_count": 1, "with": {"_count": 1}}, "an": {"_count": 1, "advantage": {"_count": 1}}, "bewildered": {"_count": 1, "and": {"_count": 1}}, "soaring": {"_count": 1, "weightlessly": {"_count": 1}}, "counts": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "Sluggys": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}, "raw": {"_count": 1, "and": {"_count": 1}}, "rich": {"_count": 1, "in": {"_count": 1}}, "snapped": {"_count": 1, "their": {"_count": 1}}, "feeling": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 1, "day": {"_count": 1}}, "clumsy": {"_count": 1, "and": {"_count": 1}}, "obtained": {"_count": 1, "with": {"_count": 1}}, "done": {"_count": 1, "it": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "nervous": {"_count": 1, "and": {"_count": 1}}, "hurried": {"_count": 1, "off": {"_count": 1}}, "highly": {"_count": 1, "interested": {"_count": 1}}, "hitting": {"_count": 1, "their": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "and": {"_count": 1}}, "leapt": {"_count": 1, "out": {"_count": 1}}, "released": {"_count": 1, "the": {"_count": 1}}, "sulky": {"_count": 1, "and": {"_count": 1}}, "mistress": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 1, "youre": {"_count": 1}}, "cases": {"_count": 1, "somebody": {"_count": 1}}, "luck": {"_count": 1, "then": {"_count": 1}}, "Hermione": {"_count": 2, "and": {"_count": 2}}, "as": {"_count": 1, "they": {"_count": 1}}, "Ernie": {"_count": 1, "and": {"_count": 1}}, "astonished": {"_count": 1, "and": {"_count": 1}}, "satisfyingly": {"_count": 1, "impressed": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "disagrees": {"_count": 1, "": {"_count": 1}}, "safely": {"_count": 1, "jammed": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "hurt": {"_count": 1, "but": {"_count": 1}}, "women": {"_count": 2, "were": {"_count": 2}}, "Ginny": {"_count": 1, "s": {"_count": 1}}, "raised": {"_count": 1, "their": {"_count": 1}}, "charged": {"_count": 1, "by": {"_count": 1}}, "wondering": {"_count": 1, "the": {"_count": 1}}, "pursuers": {"_count": 1, "had": {"_count": 1}}, "Hagrid": {"_count": 1, "and": {"_count": 1}}, "goners": {"_count": 1, "": {"_count": 1}}, "pale": {"_count": 1, "but": {"_count": 1}}, "wanting": {"_count": 2, "him": {"_count": 1}, "to": {"_count": 1}}, "asked": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}, "pleased": {"_count": 1, "and": {"_count": 1}}, "considered": {"_count": 1, "Hermione": {"_count": 1}}, "stiffened": {"_count": 1, "": {"_count": 1}}, "sobbing": {"_count": 1, "quietly": {"_count": 1}}, "lived": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 1, "and": {"_count": 1}}, "lost": {"_count": 1, "loved": {"_count": 1}}, "Umbridge": {"_count": 1, "and": {"_count": 1}}, "end": {"_count": 1, "up": {"_count": 1}}, "sensations": {"_count": 1, "lifted": {"_count": 1}}, "unreasonable": {"_count": 1, "and": {"_count": 1}}, "pieces": {"_count": 1, "hanging": {"_count": 1}}, "such": {"_count": 1, "brilliant": {"_count": 1}}, "windows": {"_count": 1, "Riddles": {"_count": 1}}, "line": {"_count": 1, "and": {"_count": 1}}, "feared": {"_count": 1, "and": {"_count": 1}}, "believed": {"_count": 1, "to": {"_count": 1}}, "fascinating": {"_count": 1, "and": {"_count": 1}}, "ill": {"_count": 1, "tired": {"_count": 1}}, "moved": {"_count": 1, "into": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "cheeks": {"_count": 1, "": {"_count": 1}}, "furtive": {"_count": 1, "and": {"_count": 1}}, "squealed": {"_count": 1, "Congratulations": {"_count": 1}}, "scratching": {"_count": 1, "their": {"_count": 1}}, "now": {"_count": 1, "standing": {"_count": 1}}, "rear": {"_count": 1, "legs": {"_count": 1}}, "pink": {"_count": 1, "in": {"_count": 1}}, "aiming": {"_count": 1, "at": {"_count": 1}}, "grabbed": {"_count": 1, "Hermione": {"_count": 1}}, "masked": {"_count": 1, "and": {"_count": 1}}, "defiant": {"_count": 1, "and": {"_count": 1}}, "whole": {"_count": 1, "and": {"_count": 1}}, "kin": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "long": {"_count": 1000, "enough": {"_count": 16, "to": {"_count": 13}, "": {"_count": 2}, "I": {"_count": 1}}, "robes": {"_count": 2, "a": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 36, "crooked": {"_count": 1}, "thought": {"_count": 1}, "silvery": {"_count": 1}, "hairy": {"_count": 1}, "thin": {"_count": 2}, "hard": {"_count": 3}, "deadly": {"_count": 1}, "if": {"_count": 1}, "lanky": {"_count": 2}, "extremely": {"_count": 1}, "contained": {"_count": 1}, "splendid": {"_count": 1}, "placed": {"_count": 1}, "difficult": {"_count": 1}, "lethallooking": {"_count": 1}, "the": {"_count": 1}, "painful": {"_count": 1}, "dangerous": {"_count": 1}, "we": {"_count": 1}, "threadbare": {"_count": 1}, "happy": {"_count": 1}, "dusty": {"_count": 1}, "faithful": {"_count": 1}, "ornate": {"_count": 1}, "extraordinary": {"_count": 1}, "awkward": {"_count": 1}, "Ron": {"_count": 1}, "wavy": {"_count": 1}, "apparently": {"_count": 1}, "Ill": {"_count": 1}, "who": {"_count": 1}, "youll": {"_count": 1}}, "tangles": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 42, ".": {"_count": 34}, "?": {"_count": 5}, "!": {"_count": 3}}, "as": {"_count": 77, "he": {"_count": 12}, "it": {"_count": 6}, "were": {"_count": 1}, "Quirrell": {"_count": 1}, "your": {"_count": 3}, "Dumbledores": {"_count": 1}, "Ive": {"_count": 1}, "they": {"_count": 7}, "youve": {"_count": 1}, "its": {"_count": 4}, "Justin": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 9}, "the": {"_count": 2}, "necessary": {"_count": 1}, "Hagrid": {"_count": 1}, "I": {"_count": 4}, "we": {"_count": 1}, "this": {"_count": 1}, "Professor": {"_count": 1}, "youre": {"_count": 1}, "weve": {"_count": 1}, "theres": {"_count": 1}, "began": {"_count": 1}, "Gryffindor": {"_count": 1}, "Mr": {"_count": 2}, "Umbridge": {"_count": 1}, "hes": {"_count": 1}, "Harrys": {"_count": 1}, "Shacklebolts": {"_count": 1}, "nobody": {"_count": 1}, "our": {"_count": 1}, "she": {"_count": 1}, "one": {"_count": 1}, "possible": {"_count": 1}}, "time": {"_count": 62, "": {"_count": 17}, "to": {"_count": 6}, "they": {"_count": 1}, "before": {"_count": 1}, "for": {"_count": 2}, "under": {"_count": 1}, "since": {"_count": 2}, "absentmindedly": {"_count": 1}, "after": {"_count": 1}, "Harry": {"_count": 1}, "going": {"_count": 1}, "ago": {"_count": 4}, "afterward": {"_count": 1}, "said": {"_count": 4}, "Kreachers": {"_count": 1}, "until": {"_count": 1}, "neither": {"_count": 1}, "gazing": {"_count": 1}, "however": {"_count": 1}, "looking": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 3}, "rather": {"_count": 1}, "he": {"_count": 1}, "later": {"_count": 2}, "when": {"_count": 1}, "hes": {"_count": 1}, "while": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 1}}, "hours": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "purple": {"_count": 2, "coat": {"_count": 1}, "carpet": {"_count": 1}}, "without": {"_count": 2, "blowing": {"_count": 1}, "winning": {"_count": 1}}, "thin": {"_count": 17, "package": {"_count": 4}, "nose": {"_count": 1}, "jetblack": {"_count": 1}, "beard": {"_count": 1}, "box": {"_count": 1}, "fingers": {"_count": 3}, "shining": {"_count": 1}, "black": {"_count": 1}, "finger": {"_count": 1}, "flame": {"_count": 1}, "Secrecy": {"_count": 1}, "golden": {"_count": 1}}, "shaggy": {"_count": 1, "mane": {"_count": 1}}, "quill": {"_count": 1, "and": {"_count": 1}}, "pipe": {"_count": 1, "": {"_count": 1}}, "fingers": {"_count": 16, "and": {"_count": 3}, "gently": {"_count": 1}, "together": {"_count": 3}, "": {"_count": 3}, "like": {"_count": 1}, "over": {"_count": 1}, "clutched": {"_count": 1}, "under": {"_count": 1}, "kept": {"_count": 1}, "were": {"_count": 1}}, "counter": {"_count": 2, "scribbling": {"_count": 1}, "was": {"_count": 1}}, "black": {"_count": 34, "robes": {"_count": 4}, "cloak": {"_count": 6}, "quill": {"_count": 1}, "snake": {"_count": 1}, "traveling": {"_count": 3}, "shadows": {"_count": 1}, "hooded": {"_count": 1}, "pole": {"_count": 1}, "eyelashes": {"_count": 1}, "matted": {"_count": 1}, "hair": {"_count": 7}, "burn": {"_count": 1}, "tail": {"_count": 3}, "shadow": {"_count": 1}, "manes": {"_count": 1}, "greasy": {"_count": 1}}, "robe": {"_count": 1, "over": {"_count": 1}}, "line": {"_count": 7, "o": {"_count": 1}, "wound": {"_count": 1}, "of": {"_count": 5}}, "swishy": {"_count": 1, "made": {"_count": 1}}, "white": {"_count": 11, "finger": {"_count": 2}, "robes": {"_count": 1}, "hair": {"_count": 1}, "beards": {"_count": 1}, "fingers": {"_count": 3}, "forefinger": {"_count": 1}, "hands": {"_count": 1}, "candyfloss": {"_count": 1}}, "tape": {"_count": 1, "measure": {"_count": 1}}, "nose": {"_count": 4, "": {"_count": 2}, "bright": {"_count": 1}, "moved": {"_count": 1}}, "hairy": {"_count": 2, "leg": {"_count": 1}, "legs": {"_count": 1}}, "Mother": {"_count": 1, "he": {"_count": 1}}, "crooked": {"_count": 5, "nose": {"_count": 5}}, "tables": {"_count": 3, "where": {"_count": 1}, "flew": {"_count": 1}, "were": {"_count": 1}}, "table": {"_count": 3, "where": {"_count": 1}, "also": {"_count": 1}, "at": {"_count": 1}}, "roll": {"_count": 3, "of": {"_count": 3}}, "golden": {"_count": 5, "ribbon": {"_count": 1}, "beak": {"_count": 1}, "tail": {"_count": 2}, "rod": {"_count": 1}}, "boastful": {"_count": 1, "stories": {"_count": 1}}, "gallery": {"_count": 1, "full": {"_count": 1}}, "they": {"_count": 3, "didnt": {"_count": 1}, "had": {"_count": 1}, "all": {"_count": 1}}, "tail": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "arms": {"_count": 2, "like": {"_count": 1}, "outstretched": {"_count": 1}}, "ears": {"_count": 1, "making": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "moleskin": {"_count": 2, "overcoat": {"_count": 2}}, "search": {"_count": 1, "without": {"_count": 1}}, "he": {"_count": 6, "stood": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 2}, "does": {"_count": 1}}, "Potters": {"_count": 1, "going": {"_count": 1}}, "snout": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "after": {"_count": 6, "everyone": {"_count": 1}, "Snape": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "pointed": {"_count": 4, "nose": {"_count": 2}, "ears": {"_count": 1}, "horns": {"_count": 1}}, "teeth": {"_count": 1, "": {"_count": 1}}, "reddish": {"_count": 1, "tail": {"_count": 1}}, "slender": {"_count": 1, "legs": {"_count": 1}}, "that": {"_count": 7, "Harry": {"_count": 3}, "the": {"_count": 1}, "it": {"_count": 1}, "GrubblyPlank": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "creepers": {"_count": 1, "without": {"_count": 1}}, "drink": {"_count": 1, "from": {"_count": 1}}, "have": {"_count": 7, "I": {"_count": 1}, "you": {"_count": 6}}, "day": {"_count": 4, "": {"_count": 2}, "an": {"_count": 1}, "dozed": {"_count": 1}}, "loud": {"_count": 1, "belch": {"_count": 1}}, "silence": {"_count": 11, "from": {"_count": 1}, "": {"_count": 5}, "followed": {"_count": 1}, "broken": {"_count": 2}, "while": {"_count": 1}, "but": {"_count": 1}}, "has": {"_count": 2, "Dobby": {"_count": 1}, "she": {"_count": 1}}, "to": {"_count": 6, "explain": {"_count": 1}, "brood": {"_count": 1}, "find": {"_count": 2}, "get": {"_count": 1}, "give": {"_count": 1}}, "shocked": {"_count": 1, "silence": {"_count": 1}}, "nightdress": {"_count": 1, "who": {"_count": 1}}, "green": {"_count": 6, "robes": {"_count": 3}, "beard": {"_count": 1}, "dress": {"_count": 1}, "gloves": {"_count": 1}}, "gulp": {"_count": 1, "of": {"_count": 1}}, "poker": {"_count": 1, "like": {"_count": 1}}, "nostrils": {"_count": 2, "flaring": {"_count": 1}, "quivering": {"_count": 1}}, "coil": {"_count": 1, "of": {"_count": 1}}, "ter": {"_count": 1, "wait": {"_count": 1}}, "while": {"_count": 3, "to": {"_count": 1}, "before": {"_count": 2}}, "itll": {"_count": 1, "take": {"_count": 1}}, "crowded": {"_count": 1, "tables": {"_count": 1}}, "silver": {"_count": 16, "beard": {"_count": 5}, "mustache": {"_count": 2}, "hair": {"_count": 4}, "ribbon": {"_count": 1}, "ringlets": {"_count": 2}, "wig": {"_count": 1}, "thread": {"_count": 1}}, "low": {"_count": 4, "whistle": {"_count": 1}, "underground": {"_count": 1}, "walls": {"_count": 1}, "hiss": {"_count": 1}}, "House": {"_count": 6, "tables": {"_count": 6}}, "feelers": {"_count": 1, "that": {"_count": 1}}, "poles": {"_count": 1, "with": {"_count": 1}}, "last": {"_count": 13, "jerking": {"_count": 1}, "the": {"_count": 4}, "when": {"_count": 1}, "Harry": {"_count": 3}, "he": {"_count": 2}, "Fred": {"_count": 1}, "": {"_count": 1}}, "talk": {"_count": 2, "": {"_count": 1}, "about": {"_count": 1}}, "fer": {"_count": 1, "a": {"_count": 1}}, "curly": {"_count": 5, "hair": {"_count": 4}, "silver": {"_count": 1}}, "succession": {"_count": 1, "of": {"_count": 1}}, "silvery": {"_count": 4, "thread": {"_count": 1}, "hair": {"_count": 2}, "blonde": {"_count": 1}}, "will": {"_count": 1, "it": {"_count": 1}}, "empty": {"_count": 1, "table": {"_count": 1}}, "bandaged": {"_count": 1, "fingers": {"_count": 1}}, "woolly": {"_count": 1, "dressing": {"_count": 1}}, "dining": {"_count": 1, "tables": {"_count": 1}}, "story": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "lines": {"_count": 2, "of": {"_count": 2}}, "minutes": {"_count": 4, "there": {"_count": 1}, "quivering": {"_count": 1}, "now": {"_count": 1}, "like": {"_count": 1}}, "said": {"_count": 8, "Hermione": {"_count": 1}, "Mr": {"_count": 1}, "Sirius": {"_count": 1}, "Ernie": {"_count": 1}, "Dumbledore": {"_count": 1}, "Voldemort": {"_count": 1}, "Harry": {"_count": 2}}, "gorilla": {"_count": 1, "arms": {"_count": 1}}, "until": {"_count": 1, "were": {"_count": 1}}, "the": {"_count": 1, "dwarfs": {"_count": 1}}, "sweeping": {"_count": 2, "auburn": {"_count": 1}, "movement": {"_count": 1}}, "piercing": {"_count": 1, "scream": {"_count": 1}}, "circular": {"_count": 1, "conversations": {"_count": 1}}, "pause": {"_count": 10, "Hermione": {"_count": 1}, "during": {"_count": 1}, "broken": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "has": {"_count": 1}, "filled": {"_count": 1}, "he": {"_count": 2}}, "shes": {"_count": 1, "only": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "legs": {"_count": 2, "shifting": {"_count": 1}, "off": {"_count": 1}}, "note": {"_count": 1, "sounded": {"_count": 1}}, "hard": {"_count": 2, "slog": {"_count": 1}, "look": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "dimly": {"_count": 1, "lit": {"_count": 1}}, "years": {"_count": 3, "Id": {"_count": 1}, "": {"_count": 2}}, "sharp": {"_count": 2, "golden": {"_count": 1}, "nose": {"_count": 1}}, "poisonous": {"_count": 1, "fang": {"_count": 1}}, "dreadful": {"_count": 1, "piercing": {"_count": 1}}, "dark": {"_count": 10, "pipe": {"_count": 1}, "plait": {"_count": 1}, "corridors": {"_count": 1}, "hair": {"_count": 5}, "curtain": {"_count": 1}, "shadows": {"_count": 1}}, "threatening": {"_count": 1, "finger": {"_count": 1}}, "weeks": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 10, "": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}, "Voldemort": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}, "Grindelwald": {"_count": 1}}, "its": {"_count": 2, "two": {"_count": 1}, "nothing": {"_count": 1}}, "journeys": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "walk": {"_count": 5, "between": {"_count": 1}, "the": {"_count": 1}, "around": {"_count": 2}, "in": {"_count": 1}}, "matted": {"_count": 1, "hair": {"_count": 1}}, "pinstriped": {"_count": 2, "cloak": {"_count": 2}}, "cobbled": {"_count": 1, "street": {"_count": 1}}, "sunny": {"_count": 1, "days": {"_count": 1}}, "bald": {"_count": 2, "tails": {"_count": 1}, "tail": {"_count": 1}}, "gorillaish": {"_count": 1, "arms": {"_count": 1}}, "slow": {"_count": 3, "rattling": {"_count": 1}, "breath": {"_count": 1}, "sigh": {"_count": 1}}, "sloping": {"_count": 1, "drive": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "staircase": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "for": {"_count": 3, "him": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}}, "emerald": {"_count": 2, "earrings": {"_count": 1}, "green": {"_count": 1}}, "chain": {"_count": 1, "and": {"_count": 1}}, "deep": {"_count": 2, "gash": {"_count": 1}, "cuts": {"_count": 1}}, "hair": {"_count": 14, "and": {"_count": 4}, "that": {"_count": 1}, "over": {"_count": 1}, "or": {"_count": 1}, "fell": {"_count": 1}, "in": {"_count": 1}, "tangled": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}, "tickled": {"_count": 1}, "shielded": {"_count": 1}}, "greasy": {"_count": 1, "black": {"_count": 1}}, "paneled": {"_count": 1, "room": {"_count": 1}}, "dress": {"_count": 1, "": {"_count": 1}}, "rattling": {"_count": 1, "breath": {"_count": 1}}, "lacetrimmed": {"_count": 1, "dress": {"_count": 1}}, "wailing": {"_count": 1, "shriek": {"_count": 1}}, "list": {"_count": 5, "peering": {"_count": 1}, "of": {"_count": 3}, "in": {"_count": 1}}, "spindly": {"_count": 1, "fingers": {"_count": 1}}, "were": {"_count": 1, "they": {"_count": 1}}, "sigh": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "Arithmancy": {"_count": 1, "essay": {"_count": 1}}, "ginger": {"_count": 2, "cat": {"_count": 1}, "tail": {"_count": 1}}, "JORDAN": {"_count": 1, "": {"_count": 1}}, "knife": {"_count": 1, "mustve": {"_count": 1}}, "would": {"_count": 4, "it": {"_count": 3}, "never": {"_count": 1}}, "since": {"_count": 13, "lost": {"_count": 1}, "come": {"_count": 1}, "shed": {"_count": 1}, "been": {"_count": 1}, "have": {"_count": 1}, "earned": {"_count": 1}, "evaporated": {"_count": 1}, "died": {"_count": 1}, "learned": {"_count": 1}, "decided": {"_count": 1}, "disappeared": {"_count": 1}, "accepted": {"_count": 1}, "given": {"_count": 1}}, "The": {"_count": 1, "fingers": {"_count": 1}}, "stick": {"_count": 1, "and": {"_count": 1}}, "jaws": {"_count": 1, "Sirius": {"_count": 1}}, "very": {"_count": 1, "fine": {"_count": 1}}, "way": {"_count": 16, "from": {"_count": 4}, "off": {"_count": 1}, "to": {"_count": 2}, "away": {"_count": 5}, "past": {"_count": 1}, "along": {"_count": 1}, "": {"_count": 2}}, "sliver": {"_count": 1, "of": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "spidery": {"_count": 1, "shadows": {"_count": 1}}, "afterward": {"_count": 1, "": {"_count": 1}}, "absences": {"_count": 1, "at": {"_count": 1}}, "had": {"_count": 2, "lifted": {"_count": 1}, "they": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "bright": {"_count": 1}, "that": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "journey": {"_count": 4, "": {"_count": 1}, "What": {"_count": 1}, "an": {"_count": 1}, "Auntie": {"_count": 1}}, "price": {"_count": 1, "lists": {"_count": 1}}, "rows": {"_count": 1, "of": {"_count": 1}}, "flowery": {"_count": 1, "nightgown": {"_count": 1}}, "Quidditch": {"_count": 1, "robes": {"_count": 1}}, "oval": {"_count": 1, "field": {"_count": 1}}, "batlike": {"_count": 1, "ears": {"_count": 1}}, "shrill": {"_count": 1, "whistle": {"_count": 1}}, "scaly": {"_count": 1, "wings": {"_count": 1}}, "woolen": {"_count": 1, "dressing": {"_count": 1}}, "career": {"_count": 1, "that": {"_count": 1}}, "dear": {"_count": 1, "said": {"_count": 1}}, "maroon": {"_count": 1, "velvet": {"_count": 1}}, "procession": {"_count": 1, "of": {"_count": 1}}, "tear": {"_count": 1, "near": {"_count": 1}}, "wild": {"_count": 2, "tangled": {"_count": 1}, "dark": {"_count": 1}}, "staff": {"_count": 3, "shrouded": {"_count": 1}, "table": {"_count": 1}, "his": {"_count": 1}}, "mane": {"_count": 6, "of": {"_count": 6}}, "draught": {"_count": 1, "from": {"_count": 1}}, "crawling": {"_count": 1, "over": {"_count": 1}}, "sleep": {"_count": 3, "in": {"_count": 1}, "": {"_count": 2}}, "sheet": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 4, "": {"_count": 3}, "its": {"_count": 1}}, "flame": {"_count": 1, "shot": {"_count": 1}}, "hand": {"_count": 1, "and": {"_count": 1}}, "Gryffindor": {"_count": 2, "table": {"_count": 2}}, "dyou": {"_count": 2, "reckon": {"_count": 2}}, "yellow": {"_count": 2, "finger": {"_count": 1}, "nails": {"_count": 1}}, "length": {"_count": 1, "of": {"_count": 1}}, "acidgreen": {"_count": 1, "quill": {"_count": 1}}, "sickly": {"_count": 1, "sentences": {"_count": 1}}, "bronzecolored": {"_count": 1, "spikes": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "neck": {"_count": 1, "if": {"_count": 1}}, "or": {"_count": 1, "it": {"_count": 1}}, "spikes": {"_count": 1, "grazed": {"_count": 1}}, "wait": {"_count": 1, "before": {"_count": 1}}, "break": {"_count": 1, "before": {"_count": 1}}, "interview": {"_count": 1, "later": {"_count": 1}}, "wooden": {"_count": 4, "tables": {"_count": 1}, "table": {"_count": 3}}, "however": {"_count": 1, "all": {"_count": 1}}, "mirror": {"_count": 1, "in": {"_count": 1}}, "nails": {"_count": 2, "were": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "bath": {"_count": 1}}, "youll": {"_count": 2, "have": {"_count": 2}}, "gray": {"_count": 2, "nightshirt": {"_count": 1}, "hair": {"_count": 1}}, "snouts": {"_count": 1, "": {"_count": 1}}, "rant": {"_count": 1, "about": {"_count": 1}}, "draw": {"_count": 1, "from": {"_count": 1}}, "ago": {"_count": 11, "": {"_count": 4}, "to": {"_count": 1}, "when": {"_count": 1}, "heard": {"_count": 1}, "they": {"_count": 1}, "did": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}}, "felt": {"_count": 1, "the": {"_count": 1}}, "hands": {"_count": 1, "on": {"_count": 1}}, "been": {"_count": 5, "considered": {"_count": 1}, "rumored": {"_count": 1}, "ready": {"_count": 1}, "Snapes": {"_count": 1}, "contested": {"_count": 1}}, "it": {"_count": 4, "looked": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}, "took": {"_count": 1}}, "sting": {"_count": 1, "was": {"_count": 1}}, "straight": {"_count": 1, "path": {"_count": 1}}, "yellowish": {"_count": 2, "tail": {"_count": 1}, "nails": {"_count": 1}}, "almondshaped": {"_count": 1, "eyes": {"_count": 1}}, "reduced": {"_count": 1, "to": {"_count": 1}}, "hoarse": {"_count": 1, "rattling": {"_count": 1}}, "straggly": {"_count": 2, "ginger": {"_count": 2}}, "when": {"_count": 1, "she": {"_count": 1}}, "replies": {"_count": 1, "": {"_count": 1}}, "grizzled": {"_count": 1, "gray": {"_count": 1}}, "gloomy": {"_count": 1, "hallway": {"_count": 1}}, "motheaten": {"_count": 1, "curtains": {"_count": 1}}, "fleshcolored": {"_count": 2, "string": {"_count": 1}, "strings": {"_count": 1}}, "highceilinged": {"_count": 1, "room": {"_count": 1}}, "mossgreen": {"_count": 1, "velvet": {"_count": 1}}, "unkempt": {"_count": 1, "hair": {"_count": 1}}, "periods": {"_count": 1, "to": {"_count": 1}}, "piece": {"_count": 3, "of": {"_count": 3}}, "Weasley": {"_count": 1, "the": {"_count": 1}}, "midnightblue": {"_count": 1, "robes": {"_count": 1}}, "even": {"_count": 1, "Bagman": {"_count": 1}}, "sticky": {"_count": 1, "tongue": {"_count": 1}}, "package": {"_count": 1, "wrapped": {"_count": 1}}, "overcoat": {"_count": 1, "that": {"_count": 1}}, "shiny": {"_count": 1, "black": {"_count": 1}}, "anticipated": {"_count": 1, "was": {"_count": 1}}, "beard": {"_count": 1, "over": {"_count": 1}}, "GrubblyPlank": {"_count": 1, "would": {"_count": 1}}, "braided": {"_count": 2, "hair": {"_count": 2}}, "winded": {"_count": 1, "explanation": {"_count": 1}}, "essay": {"_count": 2, "on": {"_count": 2}}, "trestle": {"_count": 1, "table": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "exactly": {"_count": 1, "": {"_count": 1}}, "severe": {"_count": 1, "line": {"_count": 1}}, "wriggling": {"_count": 1, "mouse": {"_count": 1}}, "corridors": {"_count": 1, "and": {"_count": 1}}, "plait": {"_count": 3, "down": {"_count": 2}, "Fred": {"_count": 1}}, "blackandgold": {"_count": 1, "quill": {"_count": 1}}, "smooth": {"_count": 1, "stone": {"_count": 1}}, "distances": {"_count": 1, "for": {"_count": 1}}, "memory": {"_count": 1, "": {"_count": 1}}, "added": {"_count": 1, "considerably": {"_count": 1}}, "draft": {"_count": 2, "of": {"_count": 2}}, "moment": {"_count": 7, "": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 1}, "Dumbledore": {"_count": 1}, "of": {"_count": 1}, "he": {"_count": 1}, "into": {"_count": 1}}, "letter": {"_count": 2, "she": {"_count": 1}, "from": {"_count": 1}}, "pierced": {"_count": 1, "their": {"_count": 1}}, "fake": {"_count": 1, "yawn": {"_count": 1}}, "skinny": {"_count": 1, "worms": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}, "lilac": {"_count": 1, "dressing": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "swaying": {"_count": 1, "tentacles": {"_count": 1}}, "kitchen": {"_count": 2, "table": {"_count": 2}}, "distance": {"_count": 1, "": {"_count": 1}}, "life": {"_count": 1, "though": {"_count": 1}}, "run": {"_count": 1, "wont": {"_count": 1}}, "pale": {"_count": 3, "twisted": {"_count": 2}, "face": {"_count": 1}}, "ponytail": {"_count": 1, "": {"_count": 1}}, "article": {"_count": 2, "on": {"_count": 1}, "about": {"_count": 1}}, "cylindrical": {"_count": 1, "package": {"_count": 1}}, "fingered": {"_count": 1, "and": {"_count": 1}}, "palomino": {"_count": 1, "tail": {"_count": 1}}, "series": {"_count": 1, "of": {"_count": 1}}, "these": {"_count": 1, "meetings": {"_count": 1}}, "moments": {"_count": 4, "had": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "tails": {"_count": 1, "of": {"_count": 1}}, "rectangular": {"_count": 2, "room": {"_count": 2}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "see": {"_count": 1, "said": {"_count": 1}}, "broken": {"_count": 1, "bough": {"_count": 1}}, "bough": {"_count": 1, "raised": {"_count": 1}}, "bow": {"_count": 1, "were": {"_count": 1}}, "maybe": {"_count": 1, "hell": {"_count": 1}}, "but": {"_count": 2, "now": {"_count": 1}, "evidently": {"_count": 1}}, "cold": {"_count": 1, "kitchen": {"_count": 1}}, "twiglike": {"_count": 1, "fingers": {"_count": 1}}, "scratches": {"_count": 2, "running": {"_count": 1}, "into": {"_count": 1}}, "chink": {"_count": 1, "of": {"_count": 1}}, "alleys": {"_count": 1, "of": {"_count": 1}}, "Longbottom": {"_count": 1, "lasts": {"_count": 1}}, "colored": {"_count": 1, "tentacles": {"_count": 1}}, "Ill": {"_count": 1, "show": {"_count": 1}}, "fluid": {"_count": 1, "movement": {"_count": 1}}, "yawn": {"_count": 1, "stretching": {"_count": 1}}, "because": {"_count": 1, "you": {"_count": 1}}, "attracted": {"_count": 1, "shall": {"_count": 1}}, "memo": {"_count": 1, "that": {"_count": 1}}, "tiring": {"_count": 1, "and": {"_count": 1}}, "sash": {"_count": 1, "windows": {"_count": 1}}, "campaign": {"_count": 1, "and": {"_count": 1}}, "cloak": {"_count": 2, "rustling": {"_count": 1}, "whispering": {"_count": 1}}, "blonde": {"_count": 4, "hair": {"_count": 4}}, "billowing": {"_count": 1, "cloak": {"_count": 1}}, "experience": {"_count": 1, "had": {"_count": 1}}, "gnarled": {"_count": 1, "feet": {"_count": 1}}, "looming": {"_count": 1, "shadow": {"_count": 1}}, "red": {"_count": 3, "hair": {"_count": 3}}, "spring": {"_count": 1, "protruding": {"_count": 1}}, "you": {"_count": 1, "11": {"_count": 1}}, "beaverskin": {"_count": 1, "coat": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "slanting": {"_count": 1, "eyes": {"_count": 1}}, "misty": {"_count": 1, "stretch": {"_count": 1}}, "nursed": {"_count": 1, "a": {"_count": 1}}, "gap": {"_count": 1, "between": {"_count": 1}}, "suffering": {"_count": 1, "and": {"_count": 1}}, "corridor": {"_count": 1, "": {"_count": 1}}, "clear": {"_count": 1, "calculating": {"_count": 1}}, "prickly": {"_count": 1, "bramblelike": {"_count": 1}}, "hooked": {"_count": 1, "nose": {"_count": 1}}, "highpitched": {"_count": 1, "note": {"_count": 1}}, "lost": {"_count": 1, "battle": {"_count": 1}}, "Hogwarts": {"_count": 1, "can": {"_count": 1}}, "interrogation": {"_count": 1, "from": {"_count": 1}}, "dirtyblonde": {"_count": 1, "hair": {"_count": 1}}, "tunnel": {"_count": 3, "": {"_count": 1}, "painted": {"_count": 1}, "they": {"_count": 1}}, "forefinger": {"_count": 1, "and": {"_count": 1}}, "gone": {"_count": 2, "when": {"_count": 1}, "from": {"_count": 1}}, "narrow": {"_count": 1, "slanted": {"_count": 1}}, "silky": {"_count": 1, "skein": {"_count": 1}}, "explanation": {"_count": 1, "of": {"_count": 1}}, "long": {"_count": 1, "silence": {"_count": 1}}, "pallid": {"_count": 1, "face": {"_count": 1}}, "thereafter": {"_count": 1, "": {"_count": 1}}, "cloaks": {"_count": 3, "flapped": {"_count": 1}, "in": {"_count": 1}, "stood": {"_count": 1}}, "twisted": {"_count": 1, "face": {"_count": 1}}, "full": {"_count": 1, "life": {"_count": 1}}, "haired": {"_count": 1, "Mr": {"_count": 1}}, "skid": {"_count": 1, "that": {"_count": 1}}, "leafgreen": {"_count": 1, "robes": {"_count": 1}}, "searching": {"_count": 1, "look": {"_count": 1}}, "sweetsmelling": {"_count": 1, "hair": {"_count": 1}}, "string": {"_count": 1, "evidently": {"_count": 1}}, "talks": {"_count": 1, "with": {"_count": 1}}, "Ronald": {"_count": 1, "for": {"_count": 1}}, "room": {"_count": 1, "lit": {"_count": 1}}, "velvet": {"_count": 1, "curtains": {"_count": 1}}, "plain": {"_count": 1, "robes": {"_count": 1}}, "theyll": {"_count": 1, "let": {"_count": 1}}, "so": {"_count": 1, "rather": {"_count": 1}}, "months": {"_count": 1, "": {"_count": 1}}, "darkred": {"_count": 1, "hair": {"_count": 1}}, "discussions": {"_count": 1, "now": {"_count": 1}}, "drawnout": {"_count": 1, "scream": {"_count": 1}}, "she": {"_count": 1, "has": {"_count": 1}}, "drive": {"_count": 1, "": {"_count": 1}}, "telescope": {"_count": 1, "he": {"_count": 1}}, "feet": {"_count": 1, "were": {"_count": 1}}, "ones": {"_count": 1, "where": {"_count": 1}}, "finger": {"_count": 1, "at": {"_count": 1}}, "I": {"_count": 1, "must": {"_count": 1}}, "coarse": {"_count": 1, "black": {"_count": 1}}, "Oh": {"_count": 1, "for": {"_count": 1}}, "incarceration": {"_count": 1, "under": {"_count": 1}}, "spines": {"_count": 1, "others": {"_count": 1}}, "dragons": {"_count": 1, "could": {"_count": 1}}, "shadow": {"_count": 1, "": {"_count": 1}}, "stringy": {"_count": 1, "wiregray": {"_count": 1}}, "lit": {"_count": 1, "by": {"_count": 1}}, "unless": {"_count": 1, "we": {"_count": 1}}, "loved": {"_count": 1, "me": {"_count": 1}}, "night": {"_count": 1, "when": {"_count": 1}}, "landing": {"_count": 1, "far": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "game": {"_count": 1, "was": {"_count": 1}}}, "enough": {"_count": 493, "to": {"_count": 163, "tuck": {"_count": 1}, "turn": {"_count": 2}, "say": {"_count": 1}, "make": {"_count": 6}, "hear": {"_count": 3}, "nibble": {"_count": 1}, "come": {"_count": 1}, "wake": {"_count": 1}, "see": {"_count": 4}, "understand": {"_count": 1}, "be": {"_count": 8}, "help": {"_count": 2}, "cover": {"_count": 3}, "drink": {"_count": 2}, "tell": {"_count": 6}, "start": {"_count": 2}, "copy": {"_count": 1}, "do": {"_count": 4}, "name": {"_count": 1}, "let": {"_count": 1}, "sneak": {"_count": 1}, "stand": {"_count": 1}, "squint": {"_count": 1}, "swallow": {"_count": 2}, "land": {"_count": 2}, "frighten": {"_count": 1}, "escape": {"_count": 1}, "pick": {"_count": 1}, "try": {"_count": 1}, "volunteer": {"_count": 1}, "touch": {"_count": 2}, "reduce": {"_count": 1}, "admit": {"_count": 1}, "get": {"_count": 4}, "remind": {"_count": 1}, "hit": {"_count": 1}, "eat": {"_count": 1}, "give": {"_count": 2}, "slip": {"_count": 2}, "rob": {"_count": 1}, "interest": {"_count": 1}, "fit": {"_count": 1}, "conceal": {"_count": 1}, "accommodate": {"_count": 1}, "cook": {"_count": 1}, "know": {"_count": 2}, "read": {"_count": 2}, "spread": {"_count": 2}, "illuminate": {"_count": 1}, "unmask": {"_count": 1}, "quash": {"_count": 1}, "mask": {"_count": 1}, "deal": {"_count": 1}, "earn": {"_count": 1}, "demonstrate": {"_count": 1}, "protect": {"_count": 1}, "act": {"_count": 1}, "describe": {"_count": 1}, "jinx": {"_count": 1}, "block": {"_count": 1}, "drain": {"_count": 1}, "keep": {"_count": 1}, "worry": {"_count": 2}, "take": {"_count": 2}, "return": {"_count": 1}, "stay": {"_count": 1}, "travel": {"_count": 1}, "attempt": {"_count": 2}, "cavort": {"_count": 1}, "guess": {"_count": 1}, "silhouette": {"_count": 1}, "decide": {"_count": 1}, "show": {"_count": 1}, "believe": {"_count": 1}, "hide": {"_count": 1}, "pull": {"_count": 1}, "ensure": {"_count": 1}, "drive": {"_count": 1}, "draw": {"_count": 1}, "carry": {"_count": 2}, "yell": {"_count": 1}, "prevent": {"_count": 2}, "realize": {"_count": 1}, "use": {"_count": 2}, "force": {"_count": 1}, "cope": {"_count": 1}, "snap": {"_count": 1}, "fall": {"_count": 1}, "enter": {"_count": 1}, "Malfoy": {"_count": 1}, "continue": {"_count": 2}, "sell": {"_count": 1}, "remember": {"_count": 1}, "strike": {"_count": 1}, "answer": {"_count": 1}, "investigate": {"_count": 1}, "think": {"_count": 1}, "divide": {"_count": 1}, "find": {"_count": 1}, "pay": {"_count": 1}, "gain": {"_count": 1}, "accept": {"_count": 1}, "pass": {"_count": 1}, "part": {"_count": 1}, "evade": {"_count": 1}, "go": {"_count": 1}, "mention": {"_count": 1}, "check": {"_count": 1}, "Apparate": {"_count": 1}, "explain": {"_count": 1}, "assume": {"_count": 1}, "have": {"_count": 1}, "run": {"_count": 1}, "pretend": {"_count": 1}}, "ice": {"_count": 1, "cream": {"_count": 1}}, "force": {"_count": 1, "to": {"_count": 1}}, "human": {"_count": 3, "left": {"_count": 2}, "There": {"_count": 1}}, "even": {"_count": 2, "for": {"_count": 2}}, "": {"_count": 72, ".": {"_count": 53}, "!": {"_count": 13}, "?": {"_count": 6}}, "fer": {"_count": 3, "a": {"_count": 1}, "me": {"_count": 1}, "one": {"_count": 1}}, "Ginny": {"_count": 1, "now": {"_count": 1}}, "Im": {"_count": 1, "Hermione": {"_count": 1}}, "without": {"_count": 9, "the": {"_count": 2}, "you": {"_count": 3}, "his": {"_count": 1}, "a": {"_count": 1}, "extra": {"_count": 1}, "inventing": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "magic": {"_count": 1, "to": {"_count": 1}}, "space": {"_count": 2, "to": {"_count": 2}}, "his": {"_count": 2, "reflection": {"_count": 1}, "magical": {"_count": 1}}, "socks": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 18, "working": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 4}, "tea": {"_count": 1}, "this": {"_count": 2}, "a": {"_count": 2}, "course": {"_count": 1}, "these": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 1}, "whatever": {"_count": 1}}, "poking": {"_count": 1, "around": {"_count": 1}}, "said": {"_count": 13, "Hagrid": {"_count": 1}, "Mrs": {"_count": 2}, "Mr": {"_count": 1}, "Ron": {"_count": 2}, "Lupin": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 3}, "Fudge": {"_count": 1}, "Hermione": {"_count": 1}}, "about": {"_count": 2, "turnin": {"_count": 1}, "Quidditch": {"_count": 1}}, "there": {"_count": 7, "for": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}, "could": {"_count": 1}, "were": {"_count": 1}, "came": {"_count": 1}, "sat": {"_count": 1}}, "pain": {"_count": 2, "to": {"_count": 1}, "not": {"_count": 1}}, "Elixir": {"_count": 1, "stored": {"_count": 1}}, "questions": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 3, "my": {"_count": 1}, "no": {"_count": 1}, "itself": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 26, "the": {"_count": 3}, "Sir": {"_count": 1}, "three": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 3}, "Harry": {"_count": 2}, "one": {"_count": 1}, "Dumbledore": {"_count": 2}, "me": {"_count": 1}, "everybody": {"_count": 1}, "two": {"_count": 1}, "everyone": {"_count": 1}, "her": {"_count": 1}, "all": {"_count": 2}, "Malfoy": {"_count": 1}, "you": {"_count": 2}, "both": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 2}, "does": {"_count": 1}}, "and": {"_count": 3, "was": {"_count": 1}, "the": {"_count": 1}, "we": {"_count": 1}}, "by": {"_count": 3, "then": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "theyre": {"_count": 1, "in": {"_count": 1}}, "mayhem": {"_count": 1, "to": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "sense": {"_count": 1, "not": {"_count": 1}}, "when": {"_count": 6, "they": {"_count": 3}, "Harry": {"_count": 2}, "he": {"_count": 1}}, "now": {"_count": 3, "said": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}}, "that": {"_count": 6, "hed": {"_count": 1}, "he": {"_count": 2}, "we": {"_count": 1}, "day": {"_count": 1}, "she": {"_count": 1}}, "time": {"_count": 2, "": {"_count": 1}, "without": {"_count": 1}}, "Neville": {"_count": 1, "had": {"_count": 1}}, "unpleasant": {"_count": 1, "experiences": {"_count": 1}}, "on": {"_count": 6, "his": {"_count": 3}, "our": {"_count": 1}, "your": {"_count": 1}, "bridges": {"_count": 1}}, "things": {"_count": 1, "thats": {"_count": 1}}, "watch": {"_count": 1, "on": {"_count": 1}}, "mood": {"_count": 2, "to": {"_count": 1}, "And": {"_count": 1}}, "ter": {"_count": 1, "be": {"_count": 1}}, "damage": {"_count": 2, "this": {"_count": 1}, "to": {"_count": 1}}, "My": {"_count": 1, "dear": {"_count": 1}}, "trouble": {"_count": 2, "already": {"_count": 1}, "for": {"_count": 1}}, "filth": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 4, "few": {"_count": 2}, "moment": {"_count": 1}, "faint": {"_count": 1}}, "moments": {"_count": 2, "later": {"_count": 1}, "after": {"_count": 1}}, "grunted": {"_count": 1, "a": {"_count": 1}}, "stamps": {"_count": 2, "on": {"_count": 2}}, "anyway": {"_count": 1, "": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "food": {"_count": 1, "from": {"_count": 1}}, "work": {"_count": 1, "for": {"_count": 1}}, "brains": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 1}, "hopped": {"_count": 1}, "had": {"_count": 1}}, "abou": {"_count": 1, "me": {"_count": 1}}, "the": {"_count": 5, "Daily": {"_count": 1}, "track": {"_count": 1}, "man": {"_count": 1}, "greenish": {"_count": 1}, "ceiling": {"_count": 1}}, "armadillo": {"_count": 1, "bile": {"_count": 1}}, "hardship": {"_count": 1, "and": {"_count": 1}}, "envelope": {"_count": 1, "": {"_count": 1}}, "times": {"_count": 1, "": {"_count": 1}}, "new": {"_count": 1, "names": {"_count": 1}}, "tonight": {"_count": 1, "He": {"_count": 1}}, "Harry": {"_count": 5, "wished": {"_count": 1}, "spotted": {"_count": 1}, "could": {"_count": 2}, "was": {"_count": 1}}, "OWLS": {"_count": 1, "": {"_count": 1}}, "today": {"_count": 2, "No": {"_count": 1}, "also": {"_count": 1}}, "antijinx": {"_count": 1, "said": {"_count": 1}}, "settle": {"_count": 1, "down": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "And": {"_count": 1, "what": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "here": {"_count": 1, "for": {"_count": 1}}, "chapters": {"_count": 1, "in": {"_count": 1}}, "support": {"_count": 1, "from": {"_count": 1}}, "gold": {"_count": 1, "for": {"_count": 1}}, "attention": {"_count": 1, "as": {"_count": 1}}, "difficulty": {"_count": 1, "seeing": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "found": {"_count": 1}}, "hats": {"_count": 1, "": {"_count": 1}}, "photographs": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "not": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 1, "you": {"_count": 1}}, "nerve": {"_count": 1, "": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "they": {"_count": 1}}, "doing": {"_count": 1, "them": {"_count": 1}}, "Phineas": {"_count": 1, "said": {"_count": 1}}, "smashing": {"_count": 1, "things": {"_count": 1}}, "responsibility": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "someone": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "concerns": {"_count": 1, "at": {"_count": 1}}, "people": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 3, "think": {"_count": 1}, "dont": {"_count": 1}, "had": {"_count": 1}}, "they": {"_count": 2, "now": {"_count": 1}, "trooped": {"_count": 1}}, "how": {"_count": 1, "dangerous": {"_count": 1}}, "pureblood": {"_count": 1, "wizards": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "priceless": {"_count": 1, "": {"_count": 1}}, "chat": {"_count": 1, "over": {"_count": 1}}, "werewolves": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "Percy": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "McLaggen": {"_count": 1, "for": {"_count": 1}}, "large": {"_count": 1, "white": {"_count": 1}}, "life": {"_count": 1, "in": {"_count": 1}}, "too": {"_count": 1, "soon": {"_count": 1}}, "both": {"_count": 1, "to": {"_count": 1}}, "charm": {"_count": 1, "to": {"_count": 1}}, "breath": {"_count": 1, "into": {"_count": 1}}, "nuggets": {"_count": 1, "of": {"_count": 1}}, "word": {"_count": 1, "would": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "Plimpies": {"_count": 2, "to": {"_count": 1}, "soon": {"_count": 1}}, "well": {"_count": 1, "move": {"_count": 1}}, "left": {"_count": 1, "for": {"_count": 1}}, "room": {"_count": 1, "to": {"_count": 1}}, "information": {"_count": 1, "for": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}}, "tuck": {"_count": 2, "into": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}}, "belt": {"_count": 16, "": {"_count": 7, ".": {"_count": 7}}, "and": {"_count": 3, "unlocked": {"_count": 1}, "slapping": {"_count": 1}, "snapped": {"_count": 1}}, "Ron": {"_count": 1, "took": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "a": {"_count": 1, "Bludger": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "robes": {"_count": 470, "a": {"_count": 2, "purple": {"_count": 1}, "slightly": {"_count": 1}}, "black": {"_count": 1, "2": {"_count": 1}}, "shops": {"_count": 1, "selling": {"_count": 1}}, "": {"_count": 111, ".": {"_count": 105}, "!": {"_count": 2}, "?": {"_count": 4}}, "hed": {"_count": 1, "change": {"_count": 1}}, "and": {"_count": 74, "Harry": {"_count": 3}, "pulled": {"_count": 4}, "picked": {"_count": 1}, "putting": {"_count": 1}, "a": {"_count": 4}, "books": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 3}, "waited": {"_count": 1}, "hurried": {"_count": 1}, "wouldnt": {"_count": 1}, "took": {"_count": 2}, "assorted": {"_count": 1}, "pointed": {"_count": 1}, "straightening": {"_count": 1}, "roasting": {"_count": 1}, "Ill": {"_count": 1}, "flung": {"_count": 1}, "showing": {"_count": 1}, "stumbled": {"_count": 1}, "an": {"_count": 1}, "fumbled": {"_count": 1}, "were": {"_count": 1}, "looked": {"_count": 1}, "kicked": {"_count": 1}, "placed": {"_count": 1}, "looking": {"_count": 1}, "say": {"_count": 1}, "screwed": {"_count": 1}, "brims": {"_count": 1}, "she": {"_count": 1}, "put": {"_count": 1}, "threw": {"_count": 1}, "talking": {"_count": 1}, "her": {"_count": 1}, "made": {"_count": 1}, "his": {"_count": 1}, "remove": {"_count": 1}, "left": {"_count": 2}, "slid": {"_count": 1}, "dragged": {"_count": 1}, "gazing": {"_count": 1}, "lifted": {"_count": 1}, "it": {"_count": 1}, "headed": {"_count": 1}, "look": {"_count": 1}, "Rons": {"_count": 1}, "you": {"_count": 1}, "moving": {"_count": 1}, "pack": {"_count": 1}, "uncorking": {"_count": 1}, "waiting": {"_count": 1}, "drawing": {"_count": 1}, "exposing": {"_count": 1}, "shaking": {"_count": 1}, "no": {"_count": 1}, "hoisted": {"_count": 1}, "start": {"_count": 1}, "tapped": {"_count": 1}, "handed": {"_count": 1}, "unidentifiable": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "Charlies": {"_count": 1, "old": {"_count": 1}}, "on": {"_count": 11, "Ive": {"_count": 1}, "the": {"_count": 5}, "back": {"_count": 1}, "fire": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}, "Rons": {"_count": 1}}, "stood": {"_count": 1, "there": {"_count": 1}}, "stained": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "whipped": {"_count": 3, "out": {"_count": 3}}, "had": {"_count": 3, "barely": {"_count": 1}, "got": {"_count": 1}, "perhaps": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "quickly": {"_count": 1, "to": {"_count": 1}}, "Slytherin": {"_count": 1, "would": {"_count": 1}}, "up": {"_count": 4, "over": {"_count": 2}, "in": {"_count": 1}, "past": {"_count": 1}}, "cauldron": {"_count": 2, "and": {"_count": 1}, "parchment": {"_count": 1}}, "which": {"_count": 5, "were": {"_count": 3}, "began": {"_count": 1}, "she": {"_count": 1}}, "carrying": {"_count": 1, "broomsticks": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 2}, "varying": {"_count": 1}, "thick": {"_count": 1}, "spangled": {"_count": 1}, "return": {"_count": 1}}, "of": {"_count": 19, "forget": {"_count": 1}, "aquamarine": {"_count": 1}, "turquoise": {"_count": 1}, "palest": {"_count": 1}, "deep": {"_count": 1}, "black": {"_count": 3}, "pure": {"_count": 1}, "a": {"_count": 1}, "shocking": {"_count": 1}, "bright": {"_count": 2}, "silvergray": {"_count": 1}, "pale": {"_count": 1}, "red": {"_count": 1}, "an": {"_count": 1}, "Magical": {"_count": 1}, "midnight": {"_count": 1}}, "rippling": {"_count": 1, "in": {"_count": 1}}, "grasped": {"_count": 1, "one": {"_count": 1}}, "swirling": {"_count": 2, "behind": {"_count": 1}, "around": {"_count": 1}}, "straight": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 17, "walking": {"_count": 2}, "now": {"_count": 1}, "patched": {"_count": 1}, "hanging": {"_count": 1}, "zooming": {"_count": 1}, "stretched": {"_count": 1}, "badly": {"_count": 1}, "torn": {"_count": 2}, "ripped": {"_count": 3}, "shining": {"_count": 1}, "more": {"_count": 1}, "soaked": {"_count": 1}, "damp": {"_count": 1}}, "pulled": {"_count": 3, "out": {"_count": 1}, "up": {"_count": 1}, "on": {"_count": 1}}, "tightly": {"_count": 1, "around": {"_count": 1}}, "then": {"_count": 3, "sat": {"_count": 1}, "to": {"_count": 1}, "heart": {"_count": 1}}, "was": {"_count": 2, "what": {"_count": 1}, "dangling": {"_count": 1}}, "bulging": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 2, "she": {"_count": 1}, "they": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 5}}, "ripped": {"_count": 2, "as": {"_count": 1}, "clambered": {"_count": 1}}, "as": {"_count": 8, "he": {"_count": 5}, "she": {"_count": 1}, "though": {"_count": 2}}, "fall": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 4, "their": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "his": {"_count": 2}}, "to": {"_count": 7, "match": {"_count": 1}, "stop": {"_count": 3}, "which": {"_count": 1}, "find": {"_count": 1}, "whether": {"_count": 1}}, "snagging": {"_count": 1, "on": {"_count": 1}}, "nothing": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "where": {"_count": 2, "two": {"_count": 1}, "it": {"_count": 1}}, "his": {"_count": 2, "vision": {"_count": 1}, "mind": {"_count": 1}}, "that": {"_count": 16, "had": {"_count": 8}, "will": {"_count": 1}, "Harry": {"_count": 1}, "blended": {"_count": 1}, "glittered": {"_count": 1}, "clashed": {"_count": 1}, "were": {"_count": 1}, "flowed": {"_count": 1}, "tried": {"_count": 1}}, "billowing": {"_count": 3, "behind": {"_count": 3}}, "Malfoy": {"_count": 1, "would": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "removed": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 4, "whipped": {"_count": 1}, "had": {"_count": 1}, "got": {"_count": 1}, "rejoined": {"_count": 1}}, "swishing": {"_count": 2, "then": {"_count": 1}, "behind": {"_count": 1}}, "without": {"_count": 3, "Snape": {"_count": 1}, "you": {"_count": 1}, "being": {"_count": 1}}, "an": {"_count": 2, "I": {"_count": 1}, "Order": {"_count": 1}}, "pulling": {"_count": 1, "from": {"_count": 1}}, "not": {"_count": 2, "a": {"_count": 1}, "looking": {"_count": 1}}, "with": {"_count": 7, "her": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 2}, "blood": {"_count": 1}, "a": {"_count": 1}, "large": {"_count": 1}}, "shining": {"_count": 1, "with": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "summer": {"_count": 1}}, "for": {"_count": 6, "formal": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "cleaning": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}}, "theyre": {"_count": 1, "on": {"_count": 1}}, "didnt": {"_count": 1, "have": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "embroidered": {"_count": 2, "with": {"_count": 2}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "jumped": {"_count": 1, "down": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 2, "disgusting": {"_count": 1}, "": {"_count": 1}}, "waited": {"_count": 1, "until": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "today": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "looked": {"_count": 3, "more": {"_count": 1}, "up": {"_count": 1}, "uncomfortably": {"_count": 1}}, "Harry": {"_count": 2, "didnt": {"_count": 1}, "distinctly": {"_count": 1}}, "made": {"_count": 1, "of": {"_count": 1}}, "weighed": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 4, "same": {"_count": 1}, "creaking": {"_count": 1}, "tiny": {"_count": 1}, "slight": {"_count": 1}}, "reaching": {"_count": 2, "for": {"_count": 2}}, "dragging": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 5, "it": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 3}}, "cast": {"_count": 1, "a": {"_count": 1}}, "became": {"_count": 1, "more": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "backing": {"_count": 1}}, "Stupefy": {"_count": 1, "There": {"_count": 1}}, "sucking": {"_count": 1, "on": {"_count": 1}}, "into": {"_count": 3, "two": {"_count": 1}, "jeans": {"_count": 1}, "the": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Moody": {"_count": 1, "pulled": {"_count": 1}}, "scattered": {"_count": 1, "with": {"_count": 1}}, "stuffed": {"_count": 1, "them": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "fit": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 2, "want": {"_count": 1}, "wont": {"_count": 1}}, "Neville": {"_count": 1, "struggled": {"_count": 1}}, "shouldered": {"_count": 1, "their": {"_count": 1}}, "billowed": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 1, "attempted": {"_count": 1}}, "damp": {"_count": 1, "to": {"_count": 1}}, "walked": {"_count": 1, "in": {"_count": 1}}, "somewhere": {"_count": 1, "near": {"_count": 1}}, "right": {"_count": 1, "up": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "just": {"_count": 1, "beneath": {"_count": 1}}, "falling": {"_count": 1, "over": {"_count": 1}}, "frequently": {"_count": 1, "entangling": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "drawing": {"_count": 1, "nearer": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "tore": {"_count": 1, "all": {"_count": 1}}, "two": {"_count": 1, "spellbooks": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "detract": {"_count": 1}}, "who": {"_count": 2, "lined": {"_count": 1}, "could": {"_count": 1}}, "reappearing": {"_count": 1, "at": {"_count": 1}}, "hanging": {"_count": 1, "off": {"_count": 1}}, "swooshing": {"_count": 1, "in": {"_count": 1}}, "gleaming": {"_count": 1, "": {"_count": 1}}, "burst": {"_count": 1, "through": {"_count": 1}}, "withdrew": {"_count": 1, "a": {"_count": 1}}, "felt": {"_count": 1, "hot": {"_count": 1}}, "Kreacher": {"_count": 1, "had": {"_count": 1}}, "remained": {"_count": 1, "quite": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "about": {"_count": 1, "them": {"_count": 1}}, "sopping": {"_count": 1, "wet": {"_count": 1}}, "drew": {"_count": 1, "out": {"_count": 1}}, "telling": {"_count": 1, "me": {"_count": 1}}, "apparently": {"_count": 1, "in": {"_count": 1}}, "slackened": {"_count": 1, "": {"_count": 1}}, "loading": {"_count": 1, "trunks": {"_count": 1}}, "whipping": {"_count": 1, "around": {"_count": 1}}, "appeared": {"_count": 1, "a": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "swung": {"_count": 1, "it": {"_count": 1}}, "beamed": {"_count": 1, "at": {"_count": 1}}}, "purple": {"_count": 108, "cloak": {"_count": 1, "that": {"_count": 1}}, "face": {"_count": 8, "right": {"_count": 1}, "weve": {"_count": 1}, "": {"_count": 2}, "stretching": {"_count": 1}, "came": {"_count": 1}, "crumpled": {"_count": 1}, "he": {"_count": 1}}, "coat": {"_count": 1, "had": {"_count": 1}}, "wax": {"_count": 1, "seal": {"_count": 1}}, "cushion": {"_count": 1, "in": {"_count": 1}}, "sky": {"_count": 1, "": {"_count": 1}}, "turban": {"_count": 1, "": {"_count": 1}}, "firecrackers": {"_count": 1, "exploding": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "flames": {"_count": 1, "": {"_count": 1}}, "fire": {"_count": 2, "": {"_count": 1}, "while": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 5}}, "smoke": {"_count": 2, "with": {"_count": 1}, "which": {"_count": 1}}, "envelope": {"_count": 1, "with": {"_count": 1}}, "crystal": {"_count": 1, "and": {"_count": 1}}, "bubbles": {"_count": 1, "were": {"_count": 1}}, "megaphone": {"_count": 1, "": {"_count": 1}}, "boots": {"_count": 1, "": {"_count": 1}}, "fist": {"_count": 1, "that": {"_count": 1}}, "bus": {"_count": 1, "which": {"_count": 1}}, "uniform": {"_count": 2, "leapt": {"_count": 2}}, "toads": {"_count": 1, "sat": {"_count": 1}}, "sleeping": {"_count": 1, "bags": {"_count": 1}}, "writing": {"_count": 1, "paper": {"_count": 1}}, "recede": {"_count": 1, "blotchily": {"_count": 1}}, "slimy": {"_count": 1, "thing": {"_count": 1}}, "shadows": {"_count": 2, "under": {"_count": 2}}, "lettering": {"_count": 2, "flashed": {"_count": 1}, "across": {"_count": 1}}, "clouds": {"_count": 2, "were": {"_count": 1}, "hovering": {"_count": 1}}, "silk": {"_count": 2, "and": {"_count": 1}, "sack": {"_count": 1}}, "liquid": {"_count": 2, "that": {"_count": 1}, "in": {"_count": 1}}, "collar": {"_count": 1, "today": {"_count": 1}}, "with": {"_count": 2, "large": {"_count": 1}, "concentration": {"_count": 1}}, "Dumbledore": {"_count": 1, "rose": {"_count": 1}}, "potion": {"_count": 1, "and": {"_count": 1}}, "hands": {"_count": 1, "reached": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "temple": {"_count": 1, "was": {"_count": 1}}, "half": {"_count": 1, "\u2018": {"_count": 1}}, "end": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "robes": {"_count": 1, "that": {"_count": 1}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "hat": {"_count": 1, "shaped": {"_count": 1}}, "sweets": {"_count": 1, "into": {"_count": 1}}, "patches": {"_count": 1, "on": {"_count": 1}}, "from": {"_count": 1, "out": {"_count": 1}}, "examine": {"_count": 1, "it": {"_count": 1}}, "flushed": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "Saturday": {"_count": 1}}, "flush": {"_count": 1, "was": {"_count": 1}}, "tripledecker": {"_count": 1, "bus": {"_count": 1}}, "pustules": {"_count": 1, "that": {"_count": 1}}, "bat": {"_count": 1, "that": {"_count": 1}}, "lump": {"_count": 1, "was": {"_count": 1}}, "littered": {"_count": 1, "with": {"_count": 1}}, "flame": {"_count": 1, "": {"_count": 1}}, "Tshirt": {"_count": 1, "bearing": {"_count": 1}}, "leaflet": {"_count": 1, "emblazoned": {"_count": 1}}, "black": {"_count": 1, "eye": {"_count": 1}}, "posters": {"_count": 1, "carried": {"_count": 1}}, "like": {"_count": 1, "those": {"_count": 1}}, "all": {"_count": 1, "rolling": {"_count": 1}}, "Pygmy": {"_count": 1, "Puff": {"_count": 1}}, "and": {"_count": 3, "began": {"_count": 1}, "gold": {"_count": 1}, "hairy": {"_count": 1}}, "though": {"_count": 1, "according": {"_count": 1}}, "dumpling": {"_count": 1, "at": {"_count": 1}}, "velvet": {"_count": 1, "spangled": {"_count": 1}}, "color": {"_count": 1, "highly": {"_count": 1}}, "button": {"_count": 2, "near": {"_count": 1}, "beside": {"_count": 1}}, "blisters": {"_count": 1, "": {"_count": 1}}, "lanterns": {"_count": 1, "all": {"_count": 1}}, "carpet": {"_count": 1, "": {"_count": 1}}, "porkpie": {"_count": 1, "hat": {"_count": 1}}, "light": {"_count": 1, "Hermione": {"_count": 1}}, "moors": {"_count": 1, "gorsecovered": {"_count": 1}}, "as": {"_count": 1, "beetroot": {"_count": 1}}, "walls": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}}, "swept": {"_count": 85, "the": {"_count": 14, "ground": {"_count": 1}, "Sorting": {"_count": 1}, "clearing": {"_count": 1}, "dead": {"_count": 1}, "Hall": {"_count": 1}, "Great": {"_count": 1}, "alleyway": {"_count": 1}, "last": {"_count": 1}, "four": {"_count": 1}, "hat": {"_count": 1}, "pinkfeathered": {"_count": 1}, "room": {"_count": 2}, "scene": {"_count": 1}}, "around": {"_count": 2, "in": {"_count": 1}, "her": {"_count": 1}}, "from": {"_count": 8, "the": {"_count": 6}, "his": {"_count": 2}}, "out": {"_count": 5, "of": {"_count": 4}, "into": {"_count": 1}}, "him": {"_count": 2, "down": {"_count": 1}, "and": {"_count": 1}}, "past": {"_count": 8, "them": {"_count": 2}, "Harry": {"_count": 2}, "Ludo": {"_count": 1}, "him": {"_count": 1}, "squeaking": {"_count": 1}, "give": {"_count": 1}}, "off": {"_count": 6, "his": {"_count": 1}, "around": {"_count": 1}, "toward": {"_count": 2}, "along": {"_count": 1}, "through": {"_count": 1}}, "back": {"_count": 3, "onto": {"_count": 1}, "into": {"_count": 1}, "across": {"_count": 1}}, "over": {"_count": 13, "to": {"_count": 4}, "Harry": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 3}, "the": {"_count": 3}, "Mr": {"_count": 1}}, "away": {"_count": 4, "into": {"_count": 1}, "from": {"_count": 1}, "her": {"_count": 1}, "toward": {"_count": 1}}, "into": {"_count": 2, "Mrs": {"_count": 1}, "the": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 2, "students": {"_count": 1}, "belled": {"_count": 1}}, "up": {"_count": 3, "between": {"_count": 1}, "the": {"_count": 2}}, "downstairs": {"_count": 1, "and": {"_count": 1}}, "wordlessly": {"_count": 1, "after": {"_count": 1}}, "by": {"_count": 1, "he": {"_count": 1}}, "her": {"_count": 1, "long": {"_count": 1}}, "among": {"_count": 1, "them": {"_count": 1}}, "Harrys": {"_count": 1, "body": {"_count": 1}}, "through": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "across": {"_count": 1, "them": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "forward": {"_count": 1, "Ron": {"_count": 1}}}, "highheeled": {"_count": 4, "buckled": {"_count": 1, "boots": {"_count": 1}}, "black": {"_count": 1, "shoe": {"_count": 1}}, "fluffy": {"_count": 1, "slippers": {"_count": 1}}, "boots": {"_count": 1, "he": {"_count": 1}}}, "buckled": {"_count": 12, "boots": {"_count": 1, "": {"_count": 1}}, "tightly": {"_count": 1, "around": {"_count": 1}}, "as": {"_count": 2, "something": {"_count": 1}, "though": {"_count": 1}}, "under": {"_count": 1, "its": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "kettle": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "shoes": {"_count": 1, "found": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "agony": {"_count": 1}}, "and": {"_count": 1, "hanging": {"_count": 1}}}, "boots": {"_count": 19, "": {"_count": 5, ".": {"_count": 5}}, "was": {"_count": 1, "unwelcome": {"_count": 1}}, "were": {"_count": 1, "like": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "rusty": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "that": {"_count": 2, "lay": {"_count": 1}, "usually": {"_count": 1}}, "oh": {"_count": 1, "my": {"_count": 1}}, "up": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "kissed": {"_count": 1}}, "bearing": {"_count": 1, "a": {"_count": 1}}, "marched": {"_count": 1, "close": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "blue": {"_count": 147, "eyes": {"_count": 32, "were": {"_count": 4}, "and": {"_count": 5}, "like": {"_count": 1}, "": {"_count": 4}, "off": {"_count": 1}, "moved": {"_count": 1}, "short": {"_count": 1}, "twinkled": {"_count": 1}, "widening": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "just": {"_count": 1}, "staring": {"_count": 1}, "gleaming": {"_count": 1}, "widened": {"_count": 1}, "swept": {"_count": 1}, "looked": {"_count": 1}, "that": {"_count": 1}, "of": {"_count": 1}, "gave": {"_count": 1}, "pierced": {"_count": 1}, "behind": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "fire": {"_count": 1, "that": {"_count": 1}}, "flames": {"_count": 4, "shot": {"_count": 1}, "on": {"_count": 1}, "around": {"_count": 1}, "that": {"_count": 1}}, "sweaters": {"_count": 1, "one": {"_count": 1}}, "smoke": {"_count": 1, "while": {"_count": 1}}, "and": {"_count": 10, "there": {"_count": 1}, "about": {"_count": 1}, "flowers": {"_count": 1}, "he": {"_count": 1}, "when": {"_count": 1}, "trembled": {"_count": 1}, "streaked": {"_count": 1}, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "mottled": {"_count": 1}}, "sky": {"_count": 14, "a": {"_count": 2}, "": {"_count": 4}, "toward": {"_count": 2}, "he": {"_count": 1}, "again": {"_count": 1}, "beyond": {"_count": 1}, "overhead": {"_count": 1}, "were": {"_count": 1}, "in": {"_count": 1}}, "wings": {"_count": 2, "the": {"_count": 1}, "was": {"_count": 1}}, "that": {"_count": 2, "exactly": {"_count": 1}, "was": {"_count": 1}}, "stars": {"_count": 1, "that": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "casting": {"_count": 1, "a": {"_count": 1}}, "spotlight": {"_count": 1, "": {"_count": 1}}, "ceiling": {"_count": 2, "": {"_count": 2}}, "to": {"_count": 2, "cold": {"_count": 1}, "a": {"_count": 1}}, "patterned": {"_count": 1, "ones": {"_count": 1}}, "ones": {"_count": 2, "then": {"_count": 1}, "as": {"_count": 1}}, "were": {"_count": 1, "already": {"_count": 1}}, "with": {"_count": 2, "stubble": {"_count": 1}, "a": {"_count": 1}}, "eye": {"_count": 6, "was": {"_count": 2}, "quivered": {"_count": 1}, "upon": {"_count": 1}, "staring": {"_count": 1}, "had": {"_count": 1}}, "robes": {"_count": 7, "jumped": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "nothing": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}}, "white": {"_count": 1, "flames": {"_count": 1}}, "carriage": {"_count": 1, "in": {"_count": 1}}, "hat": {"_count": 1, "which": {"_count": 1}}, "Beauxbatons": {"_count": 1, "carriage": {"_count": 1}}, "bubbles": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "magical": {"_count": 1}}, "badge": {"_count": 1, "emblazoned": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "light": {"_count": 7, "then": {"_count": 1}, "down": {"_count": 1}, "again": {"_count": 1}, "from": {"_count": 1}, "had": {"_count": 1}, "of": {"_count": 1}, "came": {"_count": 1}}, "gaze": {"_count": 1, "moved": {"_count": 1}}, "liquid": {"_count": 1, "into": {"_count": 1}}, "their": {"_count": 1, "cool": {"_count": 1}}, "streaks": {"_count": 1, "burned": {"_count": 1}}, "lines": {"_count": 1, "from": {"_count": 1}}, "candle": {"_count": 1, "flames": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "witchs": {"_count": 1, "hat": {"_count": 1}}, "but": {"_count": 1, "next": {"_count": 1}}, "there": {"_count": 1, "for": {"_count": 1}}, "magical": {"_count": 1, "eye": {"_count": 1}}, "haze": {"_count": 1, "of": {"_count": 1}}, "gaslight": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "watered": {"_count": 1}}, "iris": {"_count": 1, "had": {"_count": 1}}, "pajamas": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "carpet": {"_count": 1, "was": {"_count": 1}}, "Dumbledores": {"_count": 1, "eye": {"_count": 1}}, "shot": {"_count": 1, "with": {"_count": 1}}, "neither": {"_count": 1, "gas": {"_count": 1}}}, "bright": {"_count": 154, "and": {"_count": 9, "sparkling": {"_count": 1}, "cold": {"_count": 2}, "cheerful": {"_count": 1}, "sunny": {"_count": 1}, "cheery": {"_count": 1}, "blue": {"_count": 1}, "talented": {"_count": 1}, "clean": {"_count": 1}}, "green": {"_count": 8, "eyes": {"_count": 3}, "and": {"_count": 1}, "flames": {"_count": 1}, "fire": {"_count": 1}, "eye": {"_count": 2}}, "powders": {"_count": 1, "lined": {"_count": 1}}, "red": {"_count": 14, "ball": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "eraser": {"_count": 1}, "hair": {"_count": 3}, "and": {"_count": 3}, "eyes": {"_count": 1}, "sparks": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 1}}, "gold": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "rim": {"_count": 1}}, "blue": {"_count": 19, "fire": {"_count": 1}, "sky": {"_count": 4}, "wings": {"_count": 1}, "eyes": {"_count": 6}, "casting": {"_count": 1}, "liquid": {"_count": 1}, "magical": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "iris": {"_count": 1}, "flames": {"_count": 1}}, "but": {"_count": 2, "clouds": {"_count": 1}, "windy": {"_count": 1}}, "tonight": {"_count": 3, "": {"_count": 1}, "Ronan": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "white": {"_count": 3, "was": {"_count": 1}, "hair": {"_count": 1}, "flash": {"_count": 1}}, "birds": {"_count": 1, "fluttering": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "brown": {"_count": 2, "eyes": {"_count": 2}}, "orange": {"_count": 4, "robes": {"_count": 2}, "party": {"_count": 1}, "lights": {"_count": 1}}, "sunlight": {"_count": 8, "": {"_count": 3}, "with": {"_count": 1}, "perhaps": {"_count": 1}, "of": {"_count": 1}, "a": {"_count": 1}, "discernible": {"_count": 1}}, "endless": {"_count": 1, "blue": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 3, "patches": {"_count": 1}, "again": {"_count": 1}, "Lupin": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "fact": {"_count": 1}}, "poisonous": {"_count": 1, "green": {"_count": 1}}, "sunshine": {"_count": 1, "outside": {"_count": 1}}, "compartment": {"_count": 1, "": {"_count": 1}}, "spotlight": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "acid": {"_count": 1, "green": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "that": {"_count": 2, "could": {"_count": 1}, "it": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "moonlight": {"_count": 1}}, "summers": {"_count": 1, "day": {"_count": 1}}, "purple": {"_count": 3, "fire": {"_count": 1}, "with": {"_count": 1}, "Tshirt": {"_count": 1}}, "yellow": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "robes": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "blueywhiteness": {"_count": 1, "of": {"_count": 1}}, "light": {"_count": 6, "": {"_count": 2}, "turned": {"_count": 1}, "over": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}}, "spot": {"_count": 1, "on": {"_count": 1}}, "badges": {"_count": 1, "a": {"_count": 1}}, "turquoise": {"_count": 2, "": {"_count": 1}, "hair": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "daylight": {"_count": 1, "": {"_count": 1}}, "chilly": {"_count": 1, "grounds": {"_count": 1}}, "whitish": {"_count": 1, "silver": {"_count": 1}}, "deep": {"_count": 1, "gold": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}, "sky": {"_count": 1, "": {"_count": 1}}, "side": {"_count": 2, "at": {"_count": 1}, "is": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "dark": {"_count": 1, "eyes": {"_count": 1}}, "pinkandorange": {"_count": 1, "leaflet": {"_count": 1}}, "idea": {"_count": 1, "occurring": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "bubblegumpink": {"_count": 1, "hair": {"_count": 1}}, "silver": {"_count": 3, "glove": {"_count": 1}, "weasel": {"_count": 1}, "light": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "interest": {"_count": 2, "": {"_count": 1}, "perhaps": {"_count": 1}}, "boiling": {"_count": 1, "scarlet": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "black": {"_count": 1, "eyes": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "lights": {"_count": 1, "in": {"_count": 1}}, "primary": {"_count": 1, "colors": {"_count": 1}}, "cloudy": {"_count": 1, "sky": {"_count": 1}}, "flat": {"_count": 1, "white": {"_count": 1}}, "tapestry": {"_count": 1, "hangings": {"_count": 1}}, "mist": {"_count": 2, "though": {"_count": 1}, "was": {"_count": 1}}}, "sparkling": {"_count": 26, "behind": {"_count": 1, "halfmoon": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "clean": {"_count": 2, "as": {"_count": 1}, "Albus": {"_count": 1}}, "with": {"_count": 4, "tiny": {"_count": 1}, "tears": {"_count": 2}, "multicolored": {"_count": 1}}, "twenty": {"_count": 1, "feet": {"_count": 1}}, "maliciously": {"_count": 1, "": {"_count": 1}}, "hourglass": {"_count": 1, "hanging": {"_count": 1}}, "bright": {"_count": 1, "blueywhiteness": {"_count": 1}}, "silver": {"_count": 1, "frost": {"_count": 1}}, "walls": {"_count": 1, "of": {"_count": 1}}, "jets": {"_count": 1, "of": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "clouds": {"_count": 1, "beautiful": {"_count": 1}}, "lake": {"_count": 1, "the": {"_count": 1}}, "current": {"_count": 1, "inside": {"_count": 1}}, "and": {"_count": 1, "glittering": {"_count": 1}}, "snowy": {"_count": 1, "hillside": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "necklace": {"_count": 1, "and": {"_count": 1}}, "ceiling": {"_count": 1, "": {"_count": 1}}}, "behind": {"_count": 1109, "halfmoon": {"_count": 2, "spectacles": {"_count": 2}}, "with": {"_count": 5, "Mrs": {"_count": 1}, "Ron": {"_count": 2}, "his": {"_count": 1}, "a": {"_count": 1}}, "their": {"_count": 12, "backs": {"_count": 1}, "hands": {"_count": 4}, "cauldron": {"_count": 1}, "captains": {"_count": 1}, "square": {"_count": 1}, "books": {"_count": 1}, "telescopes": {"_count": 1}, "benches": {"_count": 1}, "heads": {"_count": 1}}, "the": {"_count": 155, "big": {"_count": 1}, "bar": {"_count": 7}, "counter": {"_count": 6}, "castle": {"_count": 1}, "statue": {"_count": 3}, "tree": {"_count": 4}, "locked": {"_count": 1}, "black": {"_count": 1}, "mirror": {"_count": 2}, "times": {"_count": 2}, "High": {"_count": 1}, "bars": {"_count": 1}, "six": {"_count": 1}, "bookshelves": {"_count": 2}, "door": {"_count": 8}, "desk": {"_count": 13}, "attacks": {"_count": 1}, "large": {"_count": 2}, "others": {"_count": 1}, "rockfall": {"_count": 1}, "rocks": {"_count": 1}, "sword": {"_count": 1}, "driver": {"_count": 1}, "glass": {"_count": 1}, "crowd": {"_count": 1}, "creatures": {"_count": 1}, "wing": {"_count": 2}, "oneeyed": {"_count": 1}, "Forbidden": {"_count": 1}, "shifting": {"_count": 1}, "bush": {"_count": 2}, "mornings": {"_count": 1}, "mustache": {"_count": 1}, "Dursleys": {"_count": 1}, "electric": {"_count": 1}, "dark": {"_count": 1}, "trees": {"_count": 2}, "thick": {"_count": 1}, "teachers": {"_count": 4}, "party": {"_count": 1}, "staff": {"_count": 3}, "halfmoon": {"_count": 1}, "velvetcovered": {"_count": 1}, "rudeness": {"_count": 1}, "reindeer": {"_count": 1}, "ears": {"_count": 3}, "muscles": {"_count": 1}, "stone": {"_count": 1}, "curtain": {"_count": 2}, "greenhouses": {"_count": 1}, "steam": {"_count": 1}, "yew": {"_count": 1}, "marble": {"_count": 1}, "headstone": {"_count": 1}, "angel": {"_count": 1}, "spectacles": {"_count": 1}, "baseboard": {"_count": 1}, "vandalism": {"_count": 1}, "rest": {"_count": 1}, "Slytherin": {"_count": 1}, "nearest": {"_count": 1}, "snakes": {"_count": 1}, "suit": {"_count": 1}, "centaur": {"_count": 1}, "veil": {"_count": 4}, "doors": {"_count": 1}, "brain": {"_count": 1}, "dais": {"_count": 1}, "Fountain": {"_count": 1}, "statues": {"_count": 1}, "fountain": {"_count": 2}, "golden": {"_count": 1}, "centaurs": {"_count": 1}, "anger": {"_count": 1}, "oneeared": {"_count": 1}, "silver": {"_count": 1}, "sofa": {"_count": 1}, "wreck": {"_count": 1}, "kitchen": {"_count": 1}, "rack": {"_count": 1}, "clothes": {"_count": 2}, "gargoyle": {"_count": 2}, "cage": {"_count": 1}, "crack": {"_count": 1}, "Muggle": {"_count": 1}, "navel": {"_count": 1}, "latter": {"_count": 1}, "little": {"_count": 1}, "shed": {"_count": 1}, "question": {"_count": 1}, "tuning": {"_count": 1}, "blank": {"_count": 1}, "headmasters": {"_count": 3}, "bushes": {"_count": 1}, "Death": {"_count": 1}, "skirts": {"_count": 1}, "half": {"_count": 1}}, "Harry": {"_count": 44, "made": {"_count": 2}, "and": {"_count": 3}, "": {"_count": 19}, "as": {"_count": 2}, "making": {"_count": 1}, "keen": {"_count": 1}, "because": {"_count": 1}, "Ron": {"_count": 1}, "leaving": {"_count": 1}, "all": {"_count": 1}, "with": {"_count": 1}, "an": {"_count": 1}, "who": {"_count": 1}, "evidently": {"_count": 1}, "knew": {"_count": 1}, "deciding": {"_count": 1}, "on": {"_count": 1}, "but": {"_count": 1}, "exploded": {"_count": 1}, "wands": {"_count": 1}, "from": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 62, "paper": {"_count": 1}, "mother": {"_count": 2}, "reflection": {"_count": 1}, "back": {"_count": 13}, "desk": {"_count": 14}, "cauldron": {"_count": 2}, "legs": {"_count": 1}, "glasses": {"_count": 4}, "tree": {"_count": 1}, "parents": {"_count": 1}, "navel": {"_count": 5}, "scrubby": {"_count": 1}, "bushy": {"_count": 1}, "cabin": {"_count": 1}, "hornrimmed": {"_count": 1}, "words": {"_count": 1}, "Daily": {"_count": 1}, "visor": {"_count": 1}, "towel": {"_count": 1}, "book": {"_count": 1}, "statue": {"_count": 1}, "hand": {"_count": 2}, "wirerimmed": {"_count": 1}, "handkerchief": {"_count": 2}, "head": {"_count": 1}, "beard": {"_count": 1}}, "them": {"_count": 192, "": {"_count": 79}, "and": {"_count": 27}, "then": {"_count": 2}, "in": {"_count": 3}, "replaced": {"_count": 1}, "hes": {"_count": 1}, "signaling": {"_count": 1}, "wearing": {"_count": 1}, "half": {"_count": 1}, "dashed": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 4}, "looking": {"_count": 3}, "they": {"_count": 4}, "like": {"_count": 2}, "Harry": {"_count": 3}, "without": {"_count": 1}, "that": {"_count": 2}, "announced": {"_count": 2}, "opened": {"_count": 1}, "rose": {"_count": 1}, "after": {"_count": 1}, "went": {"_count": 1}, "the": {"_count": 5}, "vapor": {"_count": 1}, "turning": {"_count": 1}, "could": {"_count": 1}, "as": {"_count": 5}, "due": {"_count": 1}, "which": {"_count": 1}, "than": {"_count": 2}, "their": {"_count": 1}, "a": {"_count": 3}, "Colloportus": {"_count": 1}, "both": {"_count": 1}, "whispered": {"_count": 1}, "you": {"_count": 1}, "nearly": {"_count": 1}, "burst": {"_count": 1}, "among": {"_count": 1}, "before": {"_count": 1}, "called": {"_count": 1}, "merely": {"_count": 1}, "Now": {"_count": 1}, "CALL": {"_count": 1}, "her": {"_count": 2}, "swallowed": {"_count": 1}, "who": {"_count": 1}, "stooping": {"_count": 1}, "ran": {"_count": 1}, "said": {"_count": 1}, "Fleur": {"_count": 1}, "The": {"_count": 1}, "into": {"_count": 1}, "All": {"_count": 1}, "grew": {"_count": 1}, "continued": {"_count": 1}, "whimpered": {"_count": 1}, "barely": {"_count": 1}, "jerked": {"_count": 1}}, "him": {"_count": 233, "": {"_count": 107}, "and": {"_count": 34}, "screamed": {"_count": 1}, "she": {"_count": 1}, "were": {"_count": 1}, "galloping": {"_count": 1}, "followed": {"_count": 1}, "not": {"_count": 1}, "in": {"_count": 3}, "split": {"_count": 1}, "made": {"_count": 2}, "forgetting": {"_count": 1}, "Harry": {"_count": 2}, "talking": {"_count": 1}, "for": {"_count": 1}, "Hedwigs": {"_count": 1}, "Snape": {"_count": 1}, "he": {"_count": 5}, "but": {"_count": 4}, "on": {"_count": 2}, "quake": {"_count": 1}, "bearing": {"_count": 1}, "Hagrid": {"_count": 1}, "even": {"_count": 1}, "Voldemorts": {"_count": 1}, "taking": {"_count": 1}, "whose": {"_count": 1}, "did": {"_count": 1}, "more": {"_count": 1}, "that": {"_count": 1}, "instinctively": {"_count": 1}, "Lupin": {"_count": 1}, "of": {"_count": 1}, "some": {"_count": 1}, "rattling": {"_count": 1}, "said": {"_count": 2}, "his": {"_count": 2}, "had": {"_count": 1}, "was": {"_count": 2}, "again": {"_count": 1}, "very": {"_count": 1}, "at": {"_count": 3}, "with": {"_count": 2}, "each": {"_count": 1}, "gazing": {"_count": 1}, "set": {"_count": 1}, "told": {"_count": 1}, "bellowed": {"_count": 1}, "tiny": {"_count": 1}, "flew": {"_count": 1}, "gave": {"_count": 2}, "the": {"_count": 2}, "her": {"_count": 1}, "just": {"_count": 1}, "there": {"_count": 1}, "what": {"_count": 1}, "so": {"_count": 2}, "slipped": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 3}, "where": {"_count": 1}, "unawares": {"_count": 1}, "yelled": {"_count": 1}, "To": {"_count": 1}, "Fang": {"_count": 1}, "both": {"_count": 1}, "slightly": {"_count": 1}, "nothing": {"_count": 1}, "closed": {"_count": 1}, "still": {"_count": 1}, "shoulder": {"_count": 1}}, "": {"_count": 32, ".": {"_count": 29}, "!": {"_count": 2}, "?": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "a": {"_count": 57, "long": {"_count": 1}, "boy": {"_count": 1}, "large": {"_count": 4}, "towering": {"_count": 1}, "trestle": {"_count": 1}, "nearby": {"_count": 2}, "suit": {"_count": 4}, "pillar": {"_count": 1}, "diary": {"_count": 1}, "thick": {"_count": 1}, "statue": {"_count": 4}, "Hagridsized": {"_count": 1}, "tottering": {"_count": 1}, "tree": {"_count": 5}, "wide": {"_count": 1}, "clump": {"_count": 2}, "mountain": {"_count": 1}, "pair": {"_count": 2}, "tapestry": {"_count": 3}, "painting": {"_count": 1}, "tall": {"_count": 1}, "marble": {"_count": 1}, "dustbin": {"_count": 1}, "single": {"_count": 1}, "small": {"_count": 1}, "tangle": {"_count": 1}, "puff": {"_count": 1}, "bookshelf": {"_count": 1}, "rack": {"_count": 1}, "cluttered": {"_count": 1}, "low": {"_count": 1}, "veil": {"_count": 1}, "desk": {"_count": 1}, "cloud": {"_count": 1}, "bin": {"_count": 1}, "balustrade": {"_count": 1}, "sofa": {"_count": 1}, "lot": {"_count": 1}, "threelegged": {"_count": 1}}, "it": {"_count": 36, "": {"_count": 15}, "Harry": {"_count": 1}, "a": {"_count": 2}, "all": {"_count": 1}, "leaving": {"_count": 1}, "peering": {"_count": 1}, "you": {"_count": 1}, "Ill": {"_count": 1}, "just": {"_count": 1}, "not": {"_count": 1}, "split": {"_count": 1}, "that": {"_count": 1}, "listening": {"_count": 1}, "watching": {"_count": 1}, "slid": {"_count": 1}, "Voldemort": {"_count": 1}, "his": {"_count": 1}, "its": {"_count": 1}, "led": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}}, "sliding": {"_count": 1, "panels": {"_count": 1}}, "you": {"_count": 12, "invisible": {"_count": 1}, "Oooooooh": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 6}, "before": {"_count": 1}, "Potter": {"_count": 1}, "he": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "her": {"_count": 81, "": {"_count": 30}, "Ron": {"_count": 1}, "desk": {"_count": 5}, "and": {"_count": 7}, "as": {"_count": 3}, "tree": {"_count": 1}, "hands": {"_count": 1}, "square": {"_count": 1}, "students": {"_count": 1}, "Hagrid": {"_count": 1}, "one": {"_count": 1}, "jeweled": {"_count": 1}, "net": {"_count": 1}, "curtains": {"_count": 1}, "opened": {"_count": 1}, "back": {"_count": 2}, "at": {"_count": 1}, "left": {"_count": 1}, "glasses": {"_count": 2}, "with": {"_count": 2}, "was": {"_count": 1}, "looking": {"_count": 2}, "tottering": {"_count": 1}, "enormous": {"_count": 1}, "had": {"_count": 1}, "ear": {"_count": 1}, "he": {"_count": 2}, "all": {"_count": 1}, "before": {"_count": 1}, "Hermione": {"_count": 1}, "hand": {"_count": 1}, "book": {"_count": 1}, "her": {"_count": 1}, "under": {"_count": 1}, "brothers": {"_count": 1}}, "me": {"_count": 4, "now": {"_count": 1}, "": {"_count": 3}}, "Ronan": {"_count": 1, "made": {"_count": 1}}, "Neville": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 6, "armchair": {"_count": 2}, "oil": {"_count": 1}, "enormous": {"_count": 1}, "overstuffed": {"_count": 1}, "oak": {"_count": 1}}, "Two": {"_count": 1, "of": {"_count": 1}}, "Quirrell": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 4, "": {"_count": 2}, "said": {"_count": 1}, "the": {"_count": 1}}, "Snape": {"_count": 8, "s": {"_count": 4}, "slid": {"_count": 1}, "and": {"_count": 1}, "itll": {"_count": 1}, "as": {"_count": 1}}, "Colin": {"_count": 1, "flanked": {"_count": 1}}, "here": {"_count": 2, "Harry": {"_count": 1}, "behind": {"_count": 1}}, "Hagrid": {"_count": 3, "s": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}}, "Filchs": {"_count": 1, "desk": {"_count": 1}}, "lank": {"_count": 1, "hair": {"_count": 1}}, "my": {"_count": 4, "back": {"_count": 4}}, "to": {"_count": 3, "scrape": {"_count": 1}, "help": {"_count": 1}, "get": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "statues": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 1, "attacks": {"_count": 1}}, "Lee": {"_count": 2, "but": {"_count": 1}, "Jordan": {"_count": 1}}, "Malfoy": {"_count": 3, "Harry": {"_count": 1}, "Crabbe": {"_count": 1}, "who": {"_count": 1}}, "Aunt": {"_count": 1, "Marges": {"_count": 1}}, "which": {"_count": 12, "lay": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 4}, "an": {"_count": 1}, "he": {"_count": 2}, "Snape": {"_count": 2}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Mr": {"_count": 1}, "Snape": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "he": {"_count": 1, "wouldnt": {"_count": 1}}, "again": {"_count": 1, "Harry": {"_count": 1}}, "Wood": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 7, "": {"_count": 1}, "and": {"_count": 4}, "Harry": {"_count": 1}, "Professor": {"_count": 1}}, "Hagrids": {"_count": 1, "pumpkin": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 4, "": {"_count": 1}, "s": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "its": {"_count": 1, "cloud": {"_count": 1}}, "this": {"_count": 3, "bush": {"_count": 1}, "and": {"_count": 1}, "even": {"_count": 1}}, "Hermione": {"_count": 5, "": {"_count": 2}, "his": {"_count": 2}, "as": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 3}}, "very": {"_count": 1, "behind": {"_count": 1}}, "on": {"_count": 3, "dealing": {"_count": 1}, "homework": {"_count": 2}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "bookshelves": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 2, "also": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 8, "were": {"_count": 1}, "listened": {"_count": 1}, "then": {"_count": 1}, "the": {"_count": 1}, "saw": {"_count": 1}, "Ill": {"_count": 1}, "had": {"_count": 1}, "half": {"_count": 1}}, "some": {"_count": 1, "bookshelves": {"_count": 1}}, "\u2018I": {"_count": 1, "read": {"_count": 1}}, "Krum": {"_count": 1, "in": {"_count": 1}}, "Fudges": {"_count": 1, "back": {"_count": 1}}, "headstones": {"_count": 1, "feeling": {"_count": 1}}, "those": {"_count": 2, "who": {"_count": 1}, "regurgitating": {"_count": 1}}, "wrought": {"_count": 1, "golden": {"_count": 1}}, "Perkinss": {"_count": 1, "desk": {"_count": 1}}, "Rons": {"_count": 1, "back": {"_count": 1}}, "The": {"_count": 1, "Quibbler": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "Crookshanks": {"_count": 1, "s": {"_count": 1}}, "that": {"_count": 5, "big": {"_count": 1}, "curtain": {"_count": 1}, "old": {"_count": 1}, "cabinet": {"_count": 1}, "stuff": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 1}, "Bane": {"_count": 1}}, "yeh": {"_count": 1, "": {"_count": 1}}, "Goyle": {"_count": 1, "was": {"_count": 1}}, "split": {"_count": 1, "open": {"_count": 1}}, "Dumbledores": {"_count": 2, "desk": {"_count": 2}}, "Umbridge": {"_count": 2, "had": {"_count": 1}, "Yaxley": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "muttered": {"_count": 1, "incantations": {"_count": 1}}, "Parvati": {"_count": 1, "Patil": {"_count": 1}}, "Millicent": {"_count": 1, "Bulstrode": {"_count": 1}}, "there": {"_count": 1, "he": {"_count": 1}}, "another": {"_count": 1, "desk": {"_count": 1}}, "pinioning": {"_count": 1, "his": {"_count": 1}}, "Voldemort": {"_count": 1, "and": {"_count": 1}}, "your": {"_count": 1, "eyes": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "Narcissa": {"_count": 1, "": {"_count": 1}}, "Fleur": {"_count": 1, "": {"_count": 1}}, "Slughorns": {"_count": 1, "back": {"_count": 1}}, "Slughorn": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "Ogden": {"_count": 1, "who": {"_count": 1}}, "everybody": {"_count": 1, "else": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 2, "an": {"_count": 1}, "a": {"_count": 1}}, "after": {"_count": 1, "every": {"_count": 1}}, "Hufflepuff": {"_count": 1, "and": {"_count": 1}}, "Malfoys": {"_count": 1, "ear": {"_count": 1}}, "thin": {"_count": 1, "fleshless": {"_count": 1}}, "whenever": {"_count": 1, "they": {"_count": 1}}, "clouds": {"_count": 1, "the": {"_count": 1}}, "And": {"_count": 2, "then": {"_count": 1}, "his": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "pulled": {"_count": 1, "the": {"_count": 1}}, "Kendra": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "Malfoy": {"_count": 1}}, "Arianas": {"_count": 2, "portrait": {"_count": 2}}, "sprinted": {"_count": 1, "for": {"_count": 1}}, "Voldemorts": {"_count": 1, "head": {"_count": 1}}, "kneeling": {"_count": 1, "beside": {"_count": 1}}}, "halfmoon": {"_count": 24, "spectacles": {"_count": 18, "and": {"_count": 4}, "his": {"_count": 1}, "": {"_count": 8}, "as": {"_count": 1}, "at": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "glasses": {"_count": 6, "": {"_count": 2}, "had": {"_count": 1}, "shining": {"_count": 1}, "glittered": {"_count": 1}, "with": {"_count": 1}}}, "spectacles": {"_count": 52, "and": {"_count": 7, "his": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 2}, "giving": {"_count": 1}, "did": {"_count": 1}, "put": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 22}}, "his": {"_count": 1, "long": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 2}, "she": {"_count": 2}}, "that": {"_count": 1, "rested": {"_count": 1}}, "flashing": {"_count": 2, "alarmingly": {"_count": 1}, "": {"_count": 1}}, "perched": {"_count": 3, "halfway": {"_count": 1}, "upon": {"_count": 1}, "on": {"_count": 1}}, "were": {"_count": 1, "perched": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "gave": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "askew": {"_count": 1, "Fred": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "crooked": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "nose": {"_count": 302, "was": {"_count": 25, "very": {"_count": 1}, "still": {"_count": 1}, "nearly": {"_count": 1}, "unusually": {"_count": 1}, "barely": {"_count": 1}, "also": {"_count": 1}, "bleeding": {"_count": 2}, "squashed": {"_count": 1}, "rising": {"_count": 1}, "missing": {"_count": 1}, "particularly": {"_count": 1}, "dead": {"_count": 1}, "a": {"_count": 1}, "squinting": {"_count": 1}, "large": {"_count": 1}, "intact": {"_count": 1}, "roughly": {"_count": 1}, "splattered": {"_count": 1}, "slightly": {"_count": 1}, "touching": {"_count": 1}, "gently": {"_count": 1}, "stubby": {"_count": 1}, "standing": {"_count": 1}, "striding": {"_count": 1}}, "in": {"_count": 9, "reply": {"_count": 1}, "the": {"_count": 3}, "Voyages": {"_count": 1}, "it": {"_count": 1}, "disgust": {"_count": 1}, "his": {"_count": 1}, "apparent": {"_count": 1}}, "": {"_count": 70, ".": {"_count": 66}, "?": {"_count": 3}, "!": {"_count": 1}}, "pressed": {"_count": 3, "against": {"_count": 3}}, "with": {"_count": 11, "a": {"_count": 2}, "the": {"_count": 2}, "his": {"_count": 4}, "Filch": {"_count": 1}, "Mundungus": {"_count": 1}, "loud": {"_count": 1}}, "to": {"_count": 9, "nose": {"_count": 6}, "open": {"_count": 1}, "Dumbledore": {"_count": 1}, "raucous": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 37, "flowing": {"_count": 1}, "sallow": {"_count": 1}, "screech": {"_count": 1}, "sent": {"_count": 1}, "Harrys": {"_count": 1}, "Ron": {"_count": 1}, "looked": {"_count": 1}, "greasy": {"_count": 1}, "leaning": {"_count": 1}, "said": {"_count": 1}, "his": {"_count": 1}, "small": {"_count": 1}, "thick": {"_count": 3}, "sniffed": {"_count": 1}, "hung": {"_count": 1}, "she": {"_count": 1}, "her": {"_count": 1}, "cheeks": {"_count": 1}, "the": {"_count": 1}, "blood": {"_count": 1}, "wore": {"_count": 1}, "he": {"_count": 1}, "settled": {"_count": 1}, "long": {"_count": 1}, "its": {"_count": 1}, "you": {"_count": 2}, "halfmoon": {"_count": 1}, "mouth": {"_count": 1}, "wiped": {"_count": 1}, "hiccuped": {"_count": 1}, "robes": {"_count": 1}, "bloodshot": {"_count": 1}, "shot": {"_count": 1}, "heavy": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "suggested": {"_count": 1}}, "only": {"_count": 1, "joking": {"_count": 1}}, "on": {"_count": 9, "the": {"_count": 3}, "a": {"_count": 2}, "this": {"_count": 1}, "us": {"_count": 1}, "his": {"_count": 2}}, "touched": {"_count": 2, "the": {"_count": 2}}, "that": {"_count": 3, "he": {"_count": 1}, "was": {"_count": 1}, "Mundungus": {"_count": 1}}, "but": {"_count": 2, "for": {"_count": 1}, "Shes": {"_count": 1}}, "of": {"_count": 6, "the": {"_count": 2}, "that": {"_count": 1}, "his": {"_count": 1}, "Draco": {"_count": 1}, "someone": {"_count": 1}}, "at": {"_count": 10, "them": {"_count": 1}, "the": {"_count": 3}, "its": {"_count": 1}, "Colin": {"_count": 1}, "it": {"_count": 1}, "Neville": {"_count": 1}, "Uncle": {"_count": 1}, "Harry": {"_count": 1}}, "Filch": {"_count": 1, "squinted": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 2, "drank": {"_count": 1}, "moved": {"_count": 1}}, "or": {"_count": 2, "something": {"_count": 1}, "weve": {"_count": 1}}, "knowingly": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 5, "the": {"_count": 1}, "he": {"_count": 3}, "they": {"_count": 1}}, "moved": {"_count": 2, "his": {"_count": 1}, "back": {"_count": 1}}, "has": {"_count": 1, "gone": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 2}, "if": {"_count": 1}, "my": {"_count": 1}}, "flat": {"_count": 1, "against": {"_count": 1}}, "smashed": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "exact": {"_count": 1}, "batlike": {"_count": 1}}, "looked": {"_count": 3, "broken": {"_count": 1}, "deeper": {"_count": 1}, "livid": {"_count": 1}}, "Snape": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "dark": {"_count": 1, "hair": {"_count": 1}}, "where": {"_count": 1, "great": {"_count": 1}}, "dribbling": {"_count": 1, "all": {"_count": 1}}, "is": {"_count": 1, "offcenter": {"_count": 1}}, "heavily": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "an": {"_count": 1}}, "hair": {"_count": 1, "grow": {"_count": 1}}, "wasnt": {"_count": 1, "broken": {"_count": 1}}, "threatening": {"_count": 1, "to": {"_count": 1}}, "became": {"_count": 1, "whole": {"_count": 1}}, "into": {"_count": 2, "my": {"_count": 1}, "the": {"_count": 1}}, "clean": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "bright": {"_count": 1, "red": {"_count": 1}}, "between": {"_count": 1, "mouthfuls": {"_count": 1}}, "swelled": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 1, "back": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "evidently": {"_count": 1, "he": {"_count": 1}}, "uncharacteristically": {"_count": 1, "brisk": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "whom": {"_count": 1, "Harry": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "brushed": {"_count": 1, "the": {"_count": 1}}, "doing": {"_count": 1, "the": {"_count": 1}}, "bloody": {"_count": 1, "George": {"_count": 1}}, "even": {"_count": 2, "though": {"_count": 1}, "once": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "barely": {"_count": 1, "half": {"_count": 1}}, "led": {"_count": 1, "the": {"_count": 1}}, "flare": {"_count": 1, "": {"_count": 1}}, "inches": {"_count": 2, "from": {"_count": 2}}, "had": {"_count": 2, "likewise": {"_count": 1}, "been": {"_count": 1}}, "absently": {"_count": 1, "with": {"_count": 1}}, "hopefully": {"_count": 1, "at": {"_count": 1}}, "giant": {"_count": 1, "bats": {"_count": 1}}, "break": {"_count": 1, "blood": {"_count": 1}}, "flow": {"_count": 1, "hot": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "felt": {"_count": 1, "very": {"_count": 1}}, "looking": {"_count": 2, "": {"_count": 1}, "peaceful": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "searched": {"_count": 1}}, "while": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "Hermione": {"_count": 1, "however": {"_count": 1}}, "hard": {"_count": 1, "on": {"_count": 1}}, "illuminated": {"_count": 1, "unflatteringly": {"_count": 1}}, "got": {"_count": 1, "broken": {"_count": 1}}, "pointedly": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 1, "inch": {"_count": 1}}, "scanning": {"_count": 1, "an": {"_count": 1}}, "redrimmed": {"_count": 1, "eyes": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "formally": {"_count": 1, "composed": {"_count": 1}}, "buried": {"_count": 2, "in": {"_count": 2}}, "detected": {"_count": 1, "underneath": {"_count": 1}}, "noisily": {"_count": 1, "on": {"_count": 1}}, "slid": {"_count": 1, "straight": {"_count": 1}}, "He": {"_count": 1, "felt": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "Everything": {"_count": 1, "was": {"_count": 1}}}, "crooked": {"_count": 31, "as": {"_count": 1, "though": {"_count": 1}}, "nose": {"_count": 19, "and": {"_count": 4}, "at": {"_count": 3}, "was": {"_count": 1}, "": {"_count": 6}, "of": {"_count": 1}, "inches": {"_count": 1}, "looking": {"_count": 1}, "He": {"_count": 1}, "Everything": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "over": {"_count": 1, "it": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "silhouette": {"_count": 1, "of": {"_count": 1}}, "rocky": {"_count": 1, "and": {"_count": 1}}, "house": {"_count": 1, "Harry": {"_count": 1}}, "little": {"_count": 1, "house": {"_count": 1}}, "cobbled": {"_count": 2, "street": {"_count": 2}}, "nosed": {"_count": 1, "profile": {"_count": 1}}}, "broken": {"_count": 174, "at": {"_count": 2, "least": {"_count": 1}, "last": {"_count": 1}}, "the": {"_count": 7, "silence": {"_count": 1}, "Decree": {"_count": 1}, "rules": {"_count": 1}, "monotony": {"_count": 1}, "two": {"_count": 1}, "greatest": {"_count": 1}, "surface": {"_count": 1}}, "her": {"_count": 3, "leg": {"_count": 3}}, "glasses": {"_count": 4, "and": {"_count": 1}, "up": {"_count": 1}, "Draco": {"_count": 1}, "to": {"_count": 1}}, "his": {"_count": 3, "new": {"_count": 1}, "Hand": {"_count": 1}, "toe": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 9}, "?": {"_count": 2}}, "your": {"_count": 3, "neck": {"_count": 1}, "word": {"_count": 1}, "first": {"_count": 1}}, "jaws": {"_count": 1, "but": {"_count": 1}}, "any": {"_count": 2, "rules": {"_count": 1}, "school": {"_count": 1}}, "out": {"_count": 5, "over": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}, "under": {"_count": 1}, "too": {"_count": 1}}, "only": {"_count": 9, "by": {"_count": 9}}, "wands": {"_count": 1, "lopsided": {"_count": 1}}, "wand": {"_count": 6, "": {"_count": 2}, "Hagrid": {"_count": 1}, "had": {"_count": 1}, "out": {"_count": 1}, "upon": {"_count": 1}}, "glass": {"_count": 3, "": {"_count": 1}, "upon": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 6, "it": {"_count": 1}, "a": {"_count": 1}, "disturbed": {"_count": 1}, "damaged": {"_count": 1}, "before": {"_count": 1}, "useless": {"_count": 1}}, "rock": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "and": {"_count": 1}, "midair": {"_count": 1}}, "wizard": {"_count": 1, "law": {"_count": 1}}, "down": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 8, "the": {"_count": 1}, "a": {"_count": 2}, "Sirius": {"_count": 1}, "Lockharts": {"_count": 1}, "occasional": {"_count": 1}, "odd": {"_count": 1}, "Fleur": {"_count": 1}}, "into": {"_count": 10, "": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 2}, "his": {"_count": 1}, "Snapes": {"_count": 1}, "pieces": {"_count": 1}, "Dumbledores": {"_count": 1}}, "Harry": {"_count": 1, "tried": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "Dumbledores": {"_count": 1}}, "leg": {"_count": 3, "": {"_count": 2}, "out": {"_count": 1}}, "branch": {"_count": 1, "from": {"_count": 1}}, "windows": {"_count": 3, "": {"_count": 1}, "glimmering": {"_count": 1}, "until": {"_count": 1}}, "d": {"_count": 1, "aaRRRRRGH": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "not": {"_count": 1, "by": {"_count": 1}}, "or": {"_count": 2, "Thats": {"_count": 1}, "whole": {"_count": 1}}, "teeth": {"_count": 3, "tangled": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "free": {"_count": 3, "of": {"_count": 2}, "from": {"_count": 1}}, "window": {"_count": 3, "in": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "they": {"_count": 1, "thought": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "will": {"_count": 1}}, "Sneakoscopes": {"_count": 1, "some": {"_count": 1}}, "gate": {"_count": 1, "": {"_count": 1}}, "quill": {"_count": 1, "and": {"_count": 1}}, "pieces": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "ribs": {"_count": 1, "": {"_count": 1}}, "shards": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "away": {"_count": 3, "from": {"_count": 3}}, "bough": {"_count": 1, "from": {"_count": 1}}, "nose": {"_count": 1, "and": {"_count": 1}}, "fragments": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "heard": {"_count": 1}}, "ankle": {"_count": 1, "on": {"_count": 1}}, "appalled": {"_count": 1, "at": {"_count": 1}}, "mirror": {"_count": 4, "But": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "almost": {"_count": 1, "immediately": {"_count": 1}}, "quills": {"_count": 1, "that": {"_count": 1}}, "objects": {"_count": 1, "and": {"_count": 1}}, "object": {"_count": 1, "it": {"_count": 1}}, "Wizarding": {"_count": 2, "law": {"_count": 2}}, "Harrys": {"_count": 1, "nose": {"_count": 1}}, "Dumbledore": {"_count": 1, "was": {"_count": 1}}, "scales": {"_count": 1, "with": {"_count": 1}}, "Vanishing": {"_count": 2, "Cabinet": {"_count": 2}}, "one": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "Everyone": {"_count": 1, "roused": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "china": {"_count": 2, "table": {"_count": 1}, "and": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "veins": {"_count": 1, "and": {"_count": 1}}, "dressing": {"_count": 1, "table": {"_count": 1}}, "though": {"_count": 1, "they": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "chain": {"_count": 1, "in": {"_count": 1}}, "Horcrux": {"_count": 1, "": {"_count": 1}}, "locket": {"_count": 1, "into": {"_count": 1}}, "printing": {"_count": 1, "press": {"_count": 1}}, "furniture": {"_count": 2, "rained": {"_count": 1}, "and": {"_count": 1}}, "halves": {"_count": 1, "of": {"_count": 1}}, "beyond": {"_count": 1, "repair": {"_count": 1}}, "you": {"_count": 1, "heard": {"_count": 1}}, "nearly": {"_count": 1, "two": {"_count": 1}}, "trunks": {"_count": 1, "of": {"_count": 1}}, "ring": {"_count": 1, "and": {"_count": 1}}, "wont": {"_count": 1, "it": {"_count": 1}}}, "least": {"_count": 221, "twice": {"_count": 5, "": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "in": {"_count": 1}}, "five": {"_count": 2, "times": {"_count": 1}, "minutes": {"_count": 1}}, "he": {"_count": 10, "got": {"_count": 1}, "wouldnt": {"_count": 1}, "was": {"_count": 2}, "never": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 2}, "managed": {"_count": 1}, "strolled": {"_count": 1}}, "was": {"_count": 2, "Piers": {"_count": 1}, "how": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 9}, "?": {"_count": 2}, "!": {"_count": 1}}, "they": {"_count": 6, "didnt": {"_count": 2}, "used": {"_count": 1}, "contained": {"_count": 1}, "seemed": {"_count": 1}, "were": {"_count": 1}}, "ten": {"_count": 2, "others": {"_count": 1}, "years": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "Hermiones": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 13, "dozen": {"_count": 4}, "hundred": {"_count": 5}, "week": {"_count": 1}, "foot": {"_count": 2}, "quarter": {"_count": 1}}, "half": {"_count": 4, "an": {"_count": 3}, "the": {"_count": 1}}, "favorite": {"_count": 11, "teacher": {"_count": 3}, "student": {"_count": 1}, "people": {"_count": 2}, "person": {"_count": 1}, "subject": {"_count": 1}, "thing": {"_count": 1}, "class": {"_count": 1}, "classes": {"_count": 1}}, "the": {"_count": 4, "Howler": {"_count": 1}, "staff": {"_count": 1}, "skrewts": {"_count": 1}, "class": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "Lockhart": {"_count": 1, "did": {"_count": 1}}, "thought": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 2, "hour": {"_count": 1}, "E": {"_count": 1}}, "Hogwarts": {"_count": 1, "can": {"_count": 1}}, "took": {"_count": 1, "very": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "drier": {"_count": 1, "and": {"_count": 1}}, "meet": {"_count": 1, "Ron": {"_count": 1}}, "I": {"_count": 6, "can": {"_count": 2}, "think": {"_count": 1}, "shall": {"_count": 1}, "moved": {"_count": 1}, "didnt": {"_count": 1}}, "said": {"_count": 1, "Madam": {"_count": 1}}, "twenty": {"_count": 3, "small": {"_count": 1}, "minutes": {"_count": 1}, "lifts": {"_count": 1}}, "helpful": {"_count": 1, "words": {"_count": 1}}, "of": {"_count": 7, "Harrys": {"_count": 1}, "everyone": {"_count": 1}, "Rons": {"_count": 1}, "all": {"_count": 3}, "which": {"_count": 1}}, "once": {"_count": 1, "and": {"_count": 1}}, "two": {"_count": 2, "hundred": {"_count": 2}}, "you": {"_count": 4, "know": {"_count": 2}, "will": {"_count": 1}, "can": {"_count": 1}}, "three": {"_count": 4, "hundred": {"_count": 1}, "times": {"_count": 3}}, "felt": {"_count": 1, "extremely": {"_count": 1}}, "as": {"_count": 4, "long": {"_count": 1}, "inattentive": {"_count": 1}, "rightfully": {"_count": 1}, "well": {"_count": 1}}, "for": {"_count": 1, "leading": {"_count": 1}}, "keeping": {"_count": 1, "it": {"_count": 1}}, "twelve": {"_count": 1, "feet": {"_count": 1}}, "get": {"_count": 1, "more": {"_count": 1}}, "another": {"_count": 1, "hour": {"_count": 1}}, "likely": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 2, "normal": {"_count": 1}, "first": {"_count": 1}}, "Im": {"_count": 1, "forewarned": {"_count": 1}}, "its": {"_count": 3, "a": {"_count": 1}, "all": {"_count": 1}, "only": {"_count": 1}}, "thirty": {"_count": 3, "wizards": {"_count": 1}, "to": {"_count": 1}, "hooded": {"_count": 1}}, "had": {"_count": 2, "volunteered": {"_count": 1}, "nothing": {"_count": 1}}, "we": {"_count": 6, "didnt": {"_count": 1}, "can": {"_count": 1}, "got": {"_count": 1}, "know": {"_count": 1}, "should": {"_count": 1}, "cant": {"_count": 1}}, "Bagmans": {"_count": 1, "got": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "expected": {"_count": 2, "it": {"_count": 2}}, "one": {"_count": 10, "owl": {"_count": 1}, "man": {"_count": 1}, "of": {"_count": 3}, "student": {"_count": 1}, "serious": {"_count": 1}, "Horcrux": {"_count": 1}, "close": {"_count": 1}, "occasion": {"_count": 1}}, "your": {"_count": 1, "fingers": {"_count": 1}}, "it": {"_count": 2, "had": {"_count": 1}, "said": {"_count": 1}}, "well": {"_count": 1, "get": {"_count": 1}}, "at": {"_count": 1, "first": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "resisted": {"_count": 1, "the": {"_count": 1}}, "warm": {"_count": 1, "in": {"_count": 1}}, "youve": {"_count": 2, "been": {"_count": 1}, "known": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}, "pleasant": {"_count": 1, "of": {"_count": 1}}, "six": {"_count": 1, "inches": {"_count": 1}}, "expecting": {"_count": 1, "it": {"_count": 1}}, "explained": {"_count": 1, "why": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "see": {"_count": 1, "what": {"_count": 1}}, "blue": {"_count": 1, "rather": {"_count": 1}}, "appear": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 1, "youll": {"_count": 1}}, "until": {"_count": 5, "we": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "they": {"_count": 1}}, "most": {"_count": 1, "minds": {"_count": 1}}, "discussing": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "achieve": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}}, "Diggory": {"_count": 1, "was": {"_count": 1}}, "because": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "my": {"_count": 1, "happiness": {"_count": 1}}, "four": {"_count": 1, "feet": {"_count": 1}}, "sixteen": {"_count": 1, "feet": {"_count": 1}}, "and": {"_count": 1, "which": {"_count": 1}}, "confident": {"_count": 1, "that": {"_count": 1}}, "YouKnowWho": {"_count": 1, "never": {"_count": 1}}, "everyone": {"_count": 1, "knows": {"_count": 1}}, "escaped": {"_count": 1, "the": {"_count": 1}}, "grudgingly": {"_count": 1, "allowed": {"_count": 1}}, "shes": {"_count": 1, "a": {"_count": 1}}, "stop": {"_count": 1, "him": {"_count": 1}}, "every": {"_count": 1, "summer": {"_count": 1}}, "amusing": {"_count": 1, "comments": {"_count": 1}}, "agreed": {"_count": 1, "on": {"_count": 1}}, "were": {"_count": 1, "sorry": {"_count": 1}}, "contact": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "airborne": {"_count": 1}}, "Stun": {"_count": 1, "if": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "eight": {"_count": 1, "oclock": {"_count": 1}}, "surprised": {"_count": 1, "by": {"_count": 1}}, "Harry": {"_count": 1, "what": {"_count": 1}}, "protected": {"_count": 1, "from": {"_count": 1}}, "taught": {"_count": 1, "Harry": {"_count": 1}}, "not": {"_count": 1, "in": {"_count": 1}}, "hes": {"_count": 1, "still": {"_count": 1}}, "goblins": {"_count": 1, "I": {"_count": 1}}, "secure": {"_count": 1, "of": {"_count": 1}}, "find": {"_count": 1, "out": {"_count": 1}}, "shell": {"_count": 1, "be": {"_count": 1}}, "extraordinary": {"_count": 1, "": {"_count": 1}}}, "mans": {"_count": 55, "name": {"_count": 1, "was": {"_count": 1}}, "face": {"_count": 3, "": {"_count": 1}, "into": {"_count": 1}, "as": {"_count": 1}}, "wheezing": {"_count": 1, "waffle": {"_count": 1}}, "head": {"_count": 3, "where": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 1}}, "voice": {"_count": 9, "shouting": {"_count": 1}, "spoke": {"_count": 1}, "changed": {"_count": 1}, "jeering": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 4}}, "leg": {"_count": 1, "": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "eyes": {"_count": 3, "that": {"_count": 1}, "moved": {"_count": 1}, "traveled": {"_count": 1}}, "like": {"_count": 1, "take": {"_count": 1}}, "arms": {"_count": 1, "with": {"_count": 1}}, "chest": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "mouth": {"_count": 1, "open": {"_count": 1}}, "eyelids": {"_count": 2, "flickered": {"_count": 2}}, "greatest": {"_count": 3, "treasure": {"_count": 2}, "treasureV": {"_count": 1}}, "twin": {"_count": 1, "ought": {"_count": 1}}, "scent": {"_count": 1, "on": {"_count": 1}}, "flesh": {"_count": 1, "feeling": {"_count": 1}}, "naked": {"_count": 1, "torso": {"_count": 1}}, "heels": {"_count": 1, "disappeared": {"_count": 1}}, "side": {"_count": 1, "but": {"_count": 1}}, "free": {"_count": 1, "hand": {"_count": 1}}, "mistakes": {"_count": 1, "": {"_count": 1}}, "mistake": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "fight": {"_count": 1, "": {"_count": 1}}, "digestive": {"_count": 1, "system": {"_count": 1}}, "finished": {"_count": 1, "why": {"_count": 1}}, "thigh": {"_count": 1, "its": {"_count": 1}}, "sock": {"_count": 1, "that": {"_count": 1}}, "final": {"_count": 1, "act": {"_count": 1}}, "scowling": {"_count": 1, "slightly": {"_count": 1}}, "desperate": {"_count": 1, "screams": {"_count": 1}}, "screams": {"_count": 1, "subsided": {"_count": 1}}, "pupils": {"_count": 1, "were": {"_count": 1}}, "small": {"_count": 1, "watery": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "dream": {"_count": 1, "": {"_count": 1}}}, "Albus": {"_count": 168, "Dumbledore": {"_count": 76, "": {"_count": 25}, "didnt": {"_count": 1}, "had": {"_count": 2}, "swam": {"_count": 1}, "is": {"_count": 2}, "happened": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 2}, "to": {"_count": 2}, "got": {"_count": 1}, "stood": {"_count": 1}, "eccentric": {"_count": 1}, "surely": {"_count": 1}, "will": {"_count": 1}, "sitting": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 4}, "should": {"_count": 1}, "Professor": {"_count": 1}, "dementors": {"_count": 1}, "once": {"_count": 2}, "who": {"_count": 2}, "as": {"_count": 1}, "Firenze": {"_count": 1}, "newly": {"_count": 2}, "pages": {"_count": 1}, "Though": {"_count": 1}, "said": {"_count": 1}, "P": {"_count": 1}, "s": {"_count": 2}, "at": {"_count": 2}, "by": {"_count": 1}, "would": {"_count": 1}, "spoke": {"_count": 1}, "arm": {"_count": 1}, "shortly": {"_count": 1}, "sent": {"_count": 1}, "appear": {"_count": 1}, "smiled": {"_count": 1}, "nor": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 11}, "?": {"_count": 4}, "!": {"_count": 3}}, "Dumbled": {"_count": 1, "I": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "said": {"_count": 2, "Fudge": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 8, "only": {"_count": 1}, "I": {"_count": 2}, "Aberforth": {"_count": 3}, "suddenly": {"_count": 1}, "Rose": {"_count": 1}}, "Dumbledores": {"_count": 4, "nose": {"_count": 1}, "that": {"_count": 1}, "will": {"_count": 1}, "life": {"_count": 1}}, "Percival": {"_count": 3, "Wulfric": {"_count": 2}, "holding": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "you": {"_count": 2, "gave": {"_count": 1}, "know": {"_count": 1}}, "had": {"_count": 3, "arrived": {"_count": 1}, "drawn": {"_count": 1}, "inherited": {"_count": 1}}, "never": {"_count": 2, "attempted": {"_count": 1}, "spoke": {"_count": 1}}, "too": {"_count": 1, "was": {"_count": 1}}, "would": {"_count": 1, "attest": {"_count": 1}}, "preferred": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "head": {"_count": 1}}, "accompanying": {"_count": 1, "me": {"_count": 1}}, "describing": {"_count": 1, "perhaps": {"_count": 1}}, "was": {"_count": 7, "more": {"_count": 1}, "heartbroken": {"_count": 1}, "fussed": {"_count": 1}, "beside": {"_count": 1}, "working": {"_count": 1}, "trying": {"_count": 1}, "free": {"_count": 1}}, "while": {"_count": 1, "Ariana": {"_count": 1}}, "s": {"_count": 5, "nose": {"_count": 2}, "fault": {"_count": 1}, "trunk": {"_count": 1}, "face": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "looked": {"_count": 1, "several": {"_count": 1}}, "doing": {"_count": 1, "if": {"_count": 1}}, "at": {"_count": 2, "Hog": {"_count": 1}, "least": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "Astonished": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "wanted": {"_count": 1, "a": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "settled": {"_count": 1, "down": {"_count": 1}}, "asked": {"_count": 1, "his": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "winced": {"_count": 1, "but": {"_count": 1}}, "anxiously": {"_count": 1, "peering": {"_count": 1}}, "sounding": {"_count": 1, "immensely": {"_count": 1}}, "resembled": {"_count": 1, "Harry": {"_count": 1}}, "goodbye": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "reveal": {"_count": 1}}, "Severus": {"_count": 1, "Harry": {"_count": 1}}, "jumped": {"_count": 1, "into": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Rose": {"_count": 1, "Hugo": {"_count": 1}}}, "Dumbledore": {"_count": 3003, "": {"_count": 546, ".": {"_count": 457}, "?": {"_count": 44}, "!": {"_count": 45}}, "didnt": {"_count": 13, "seem": {"_count": 1}, "realize": {"_count": 1}, "answer": {"_count": 1}, "say": {"_count": 2}, "move": {"_count": 1}, "make": {"_count": 1}, "even": {"_count": 1}, "want": {"_count": 3}, "tell": {"_count": 1}, "give": {"_count": 1}}, "slipped": {"_count": 1, "the": {"_count": 1}}, "gently": {"_count": 7, "": {"_count": 5}, "is": {"_count": 1}, "yes": {"_count": 1}}, "here": {"_count": 1, "as": {"_count": 1}}, "who": {"_count": 41, "was": {"_count": 8}, "smiled": {"_count": 1}, "swapped": {"_count": 1}, "bent": {"_count": 1}, "gave": {"_count": 2}, "stood": {"_count": 1}, "after": {"_count": 1}, "doesnt": {"_count": 1}, "helped": {"_count": 1}, "appointed": {"_count": 1}, "insisted": {"_count": 1}, "sends": {"_count": 1}, "continued": {"_count": 1}, "turned": {"_count": 1}, "had": {"_count": 7}, "paused": {"_count": 1}, "by": {"_count": 1}, "made": {"_count": 1}, "looked": {"_count": 2}, "still": {"_count": 1}, "sounded": {"_count": 1}, "gestured": {"_count": 1}, "incredibly": {"_count": 1}, "went": {"_count": 1}, "forgave": {"_count": 1}, "ever": {"_count": 1}}, "calmly": {"_count": 24, "": {"_count": 18}, "because": {"_count": 1}, "and": {"_count": 1}, "Im": {"_count": 1}, "as": {"_count": 2}, "putting": {"_count": 1}}, "and": {"_count": 98, "said": {"_count": 3}, "Professor": {"_count": 3}, "Morgana": {"_count": 1}, "off": {"_count": 1}, "see": {"_count": 1}, "Harry": {"_count": 14}, "he": {"_count": 9}, "Hagrid": {"_count": 2}, "as": {"_count": 1}, "there": {"_count": 2}, "his": {"_count": 5}, "took": {"_count": 1}, "that": {"_count": 2}, "Moody": {"_count": 1}, "tell": {"_count": 1}, "Ludo": {"_count": 1}, "Bagman": {"_count": 1}, "you": {"_count": 2}, "I": {"_count": 2}, "it": {"_count": 1}, "what": {"_count": 3}, "the": {"_count": 4}, "whispered": {"_count": 1}, "hes": {"_count": 1}, "so": {"_count": 1}, "they": {"_count": 1}, "stayed": {"_count": 1}, "McGonagall": {"_count": 1}, "for": {"_count": 1}, "Voldemorts": {"_count": 1}, "stared": {"_count": 1}, "break": {"_count": 1}, "walking": {"_count": 1}, "waited": {"_count": 1}, "saw": {"_count": 1}, "not": {"_count": 1}, "Slughorn": {"_count": 1}, "looking": {"_count": 1}, "she": {"_count": 1}, "was": {"_count": 1}, "all": {"_count": 1}, "why": {"_count": 1}, "Fawkes": {"_count": 1}, "Snapes": {"_count": 1}, "a": {"_count": 2}, "now": {"_count": 1}, "heaved": {"_count": 1}, "be": {"_count": 1}, "Grindelwald": {"_count": 2}, "of": {"_count": 3}, "rightly": {"_count": 1}, "Flitwick": {"_count": 2}, "persuade": {"_count": 1}, "pulled": {"_count": 1}}, "with": {"_count": 14, "such": {"_count": 1}, "owls": {"_count": 1}, "a": {"_count": 7}, "his": {"_count": 2}, "great": {"_count": 1}, "an": {"_count": 2}}, "told": {"_count": 32, "her": {"_count": 3}, "me": {"_count": 9}, "them": {"_count": 3}, "you": {"_count": 5}, "Dobby": {"_count": 1}, "Moody": {"_count": 1}, "the": {"_count": 1}, "us": {"_count": 4}, "him": {"_count": 4}, "Harry": {"_count": 1}}, "however": {"_count": 4, "was": {"_count": 1}, "looked": {"_count": 1}, "seemed": {"_count": 1}, "and": {"_count": 1}}, "bowed": {"_count": 2, "his": {"_count": 2}}, "reached": {"_count": 6, "out": {"_count": 3}, "across": {"_count": 1}, "inside": {"_count": 1}, "the": {"_count": 1}}, "nodded": {"_count": 7, "glumly": {"_count": 1}, "and": {"_count": 1}, "still": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 2}, "his": {"_count": 1}}, "gave": {"_count": 13, "a": {"_count": 3}, "his": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 4}, "Dobby": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "though": {"_count": 5, "because": {"_count": 1}, "his": {"_count": 1}, "very": {"_count": 1}, "tall": {"_count": 1}, "in": {"_count": 1}}, "you": {"_count": 8, "cant": {"_count": 1}, "think": {"_count": 1}, "know": {"_count": 3}, "with": {"_count": 1}, "you": {"_count": 1}, "see": {"_count": 1}}, "firmly": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "looking": {"_count": 12, "very": {"_count": 1}, "thoughtfully": {"_count": 1}, "at": {"_count": 1}, "between": {"_count": 1}, "around": {"_count": 2}, "up": {"_count": 2}, "down": {"_count": 1}, "amused": {"_count": 1}, "unusually": {"_count": 1}, "furious": {"_count": 1}}, "sounding": {"_count": 4, "relieved": {"_count": 1}, "quite": {"_count": 1}, "rather": {"_count": 1}, "impatient": {"_count": 1}}, "sir": {"_count": 5, "said": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}, "and": {"_count": 1}}, "took": {"_count": 11, "Harry": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 1}, "us": {"_count": 1}, "your": {"_count": 1}, "no": {"_count": 1}, "me": {"_count": 1}, "from": {"_count": 1}, "too": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}}, "stepped": {"_count": 4, "over": {"_count": 1}, "into": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 1}}, "finally": {"_count": 2, "thats": {"_count": 1}, "turning": {"_count": 1}}, "nodding": {"_count": 8, "to": {"_count": 1}, "": {"_count": 6}, "and": {"_count": 1}}, "turned": {"_count": 12, "and": {"_count": 1}, "to": {"_count": 5}, "gravely": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 2}, "back": {"_count": 1}, "a": {"_count": 1}}, "left": {"_count": 17, "fer": {"_count": 1}, "ten": {"_count": 1}, "the": {"_count": 4}, "me": {"_count": 3}, "you": {"_count": 4}, "us": {"_count": 3}, "Hogwarts": {"_count": 1}}, "leave": {"_count": 2, "it": {"_count": 1}, "you": {"_count": 1}}, "Given": {"_count": 1, "Harry": {"_count": 1}}, "ter": {"_count": 1, "want": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "fer": {"_count": 1, "Minister": {"_count": 1}}, "said": {"_count": 69, "Hagrid": {"_count": 2}, "Harry": {"_count": 8}, "Hermione": {"_count": 2}, "cheerfully": {"_count": 1}, "Please": {"_count": 1}, "to": {"_count": 6}, "Malfoy": {"_count": 1}, "thoughtfully": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 2}, "Professor": {"_count": 1}, "Karkaroff": {"_count": 2}, "": {"_count": 4}, "you": {"_count": 1}, "we": {"_count": 3}, "Did": {"_count": 1}, "lighting": {"_count": 1}, "a": {"_count": 2}, "stay": {"_count": 1}, "in": {"_count": 2}, "And": {"_count": 1}, "gently": {"_count": 2}, "Fudge": {"_count": 1}, "George": {"_count": 1}, "I": {"_count": 1}, "Lupin": {"_count": 1}, "no": {"_count": 1}, "Moody": {"_count": 1}, "at": {"_count": 1}, "it": {"_count": 1}, "So": {"_count": 1}, "something": {"_count": 1}, "now": {"_count": 1}, "three": {"_count": 1}, "Firenze": {"_count": 1}, "calmly": {"_count": 1}, "Dumbledore": {"_count": 1}, "turning": {"_count": 1}, "our": {"_count": 1}, "Id": {"_count": 1}, "nothing": {"_count": 2}, "Tonks": {"_count": 1}, "quietly": {"_count": 1}, "fear": {"_count": 1}}, "is": {"_count": 18, "particularly": {"_count": 1}, "a": {"_count": 2}, "dont": {"_count": 1}, "the": {"_count": 1}, "Fleur": {"_count": 1}, "her": {"_count": 1}, "Lord": {"_count": 1}, "being": {"_count": 1}, "an": {"_count": 1}, "then": {"_count": 1}, "growing": {"_count": 1}, "known": {"_count": 1}, "so": {"_count": 1}, "dead": {"_count": 3}, "gone": {"_count": 1}}, "enjoys": {"_count": 1, "chamber": {"_count": 1}}, "s": {"_count": 119, "face": {"_count": 10}, "twinkling": {"_count": 1}, "long": {"_count": 5}, "pet": {"_count": 1}, "been": {"_count": 1}, "shoulder": {"_count": 1}, "headmaster": {"_count": 2}, "back": {"_count": 3}, "gonna": {"_count": 1}, "not": {"_count": 2}, "mouth": {"_count": 3}, "trying": {"_count": 1}, "lefthand": {"_count": 1}, "insistence": {"_count": 1}, "empty": {"_count": 1}, "Have": {"_count": 1}, "nose": {"_count": 1}, "brilliant": {"_count": 1}, "": {"_count": 4}, "office": {"_count": 9}, "sunlit": {"_count": 1}, "light": {"_count": 1}, "wrist": {"_count": 1}, "eyes": {"_count": 1}, "voice": {"_count": 3}, "orders": {"_count": 2}, "an": {"_count": 1}, "fingers": {"_count": 1}, "desk": {"_count": 2}, "words": {"_count": 2}, "letter": {"_count": 1}, "though": {"_count": 1}, "wand": {"_count": 4}, "most": {"_count": 1}, "chin": {"_count": 1}, "injured": {"_count": 1}, "right": {"_count": 1}, "now": {"_count": 1}, "eccentric": {"_count": 1}, "eye": {"_count": 1}, "hands": {"_count": 1}, "bright": {"_count": 1}, "tendency": {"_count": 1}, "head": {"_count": 1}, "detailed": {"_count": 1}, "hand": {"_count": 1}, "protection": {"_count": 1}, "waiting": {"_count": 1}, "wake": {"_count": 1}, "buckled": {"_count": 1}, "clenched": {"_count": 1}, "insane": {"_count": 1}, "open": {"_count": 1}, "breathing": {"_count": 1}, "extreme": {"_count": 1}, "uninjured": {"_count": 1}, "Army": {"_count": 1}, "spell": {"_count": 1}, "body": {"_count": 2}, "death": {"_count": 1}, "inexcusable": {"_count": 1}, "idea": {"_count": 1}, "childhood": {"_count": 1}, "mysterious": {"_count": 1}, "brother": {"_count": 1}, "many": {"_count": 1}, "study": {"_count": 1}, "to": {"_count": 1}, "mother": {"_count": 1}, "family": {"_count": 1}, "mothers": {"_count": 1}, "fans": {"_count": 1}, "ideas": {"_count": 1}, "familiar": {"_count": 1}, "crooked": {"_count": 1}, "throat": {"_count": 1}, "eyelids": {"_count": 1}, "tone": {"_count": 1}, "cursed": {"_count": 1}, "last": {"_count": 1}}, "sidled": {"_count": 1, "back": {"_count": 1}}, "himself": {"_count": 4, "was": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}, "never": {"_count": 1}}, "had": {"_count": 155, "gotten": {"_count": 3}, "swapped": {"_count": 1}, "convinced": {"_count": 1}, "trusted": {"_count": 2}, "given": {"_count": 3}, "booked": {"_count": 1}, "arrived": {"_count": 1}, "not": {"_count": 8}, "told": {"_count": 13}, "turned": {"_count": 1}, "come": {"_count": 1}, "said": {"_count": 10}, "believed": {"_count": 2}, "noticed": {"_count": 1}, "finished": {"_count": 2}, "straightened": {"_count": 1}, "bought": {"_count": 1}, "put": {"_count": 1}, "stopped": {"_count": 3}, "meant": {"_count": 1}, "returned": {"_count": 2}, "Stunned": {"_count": 1}, "spoken": {"_count": 1}, "sorted": {"_count": 1}, "predicted": {"_count": 1}, "even": {"_count": 1}, "been": {"_count": 8}, "stood": {"_count": 1}, "obviously": {"_count": 1}, "never": {"_count": 6}, "warned": {"_count": 3}, "ter": {"_count": 1}, "conjured": {"_count": 1}, "probably": {"_count": 1}, "overcome": {"_count": 1}, "left": {"_count": 10}, "made": {"_count": 1}, "gone": {"_count": 1}, "most": {"_count": 1}, "drawn": {"_count": 1}, "won": {"_count": 1}, "all": {"_count": 1}, "strode": {"_count": 1}, "cleared": {"_count": 1}, "indeed": {"_count": 1}, "landed": {"_count": 1}, "set": {"_count": 2}, "argued": {"_count": 1}, "asked": {"_count": 2}, "gestured": {"_count": 1}, "walked": {"_count": 1}, "already": {"_count": 2}, "wordlessly": {"_count": 1}, "placed": {"_count": 1}, "weakened": {"_count": 1}, "really": {"_count": 2}, "died": {"_count": 5}, "learned": {"_count": 1}, "discussed": {"_count": 1}, "taken": {"_count": 2}, "an": {"_count": 1}, "confided": {"_count": 1}, "acted": {"_count": 1}, "fallen": {"_count": 2}, "both": {"_count": 1}, "a": {"_count": 1}, "shown": {"_count": 1}, "had": {"_count": 1}, "chosen": {"_count": 1}, "caught": {"_count": 1}, "at": {"_count": 1}, "managed": {"_count": 1}, "written": {"_count": 1}, "replaced": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 2}, "wanted": {"_count": 1}, "foreseen": {"_count": 1}, "known": {"_count": 2}, "passed": {"_count": 1}, "overestimated": {"_count": 1}, "ever": {"_count": 1}}, "got": {"_count": 11, "to": {"_count": 8}, "there": {"_count": 1}, "up": {"_count": 2}}, "conducted": {"_count": 1, "their": {"_count": 1}}, "will": {"_count": 11, "be": {"_count": 3}, "tell": {"_count": 1}, "have": {"_count": 1}, "want": {"_count": 1}, "let": {"_count": 1}, "need": {"_count": 1}, "stop": {"_count": 1}, "soon": {"_count": 1}, "I": {"_count": 1}}, "was": {"_count": 114, "keeping": {"_count": 1}, "right": {"_count": 3}, "watching": {"_count": 1}, "so": {"_count": 1}, "looking": {"_count": 1}, "now": {"_count": 4}, "giving": {"_count": 1}, "backing": {"_count": 1}, "standing": {"_count": 8}, "the": {"_count": 6}, "there": {"_count": 1}, "really": {"_count": 1}, "pacing": {"_count": 1}, "just": {"_count": 1}, "still": {"_count": 1}, "though": {"_count": 1}, "waltzing": {"_count": 1}, "dancing": {"_count": 1}, "a": {"_count": 2}, "crouching": {"_count": 1}, "in": {"_count": 1}, "sitting": {"_count": 3}, "getting": {"_count": 1}, "gazing": {"_count": 1}, "crouched": {"_count": 1}, "going": {"_count": 4}, "asking": {"_count": 1}, "afraid": {"_count": 1}, "trying": {"_count": 3}, "heading": {"_count": 1}, "able": {"_count": 1}, "striding": {"_count": 1}, "not": {"_count": 4}, "having": {"_count": 2}, "bound": {"_count": 1}, "speaking": {"_count": 1}, "too": {"_count": 1}, "talking": {"_count": 1}, "cracked": {"_count": 1}, "relyin": {"_count": 1}, "entertaining": {"_count": 1}, "referring": {"_count": 1}, "smiling": {"_count": 4}, "on": {"_count": 2}, "about": {"_count": 1}, "leaving": {"_count": 1}, "already": {"_count": 3}, "reminding": {"_count": 1}, "for": {"_count": 1}, "showing": {"_count": 1}, "rather": {"_count": 1}, "humming": {"_count": 1}, "collecting": {"_count": 1}, "planning": {"_count": 1}, "at": {"_count": 1}, "scheduled": {"_count": 1}, "waiting": {"_count": 1}, "undoing": {"_count": 1}, "pleading": {"_count": 1}, "blasted": {"_count": 1}, "ill": {"_count": 1}, "slumbering": {"_count": 1}, "dead": {"_count": 2}, "never": {"_count": 1}, "wearing": {"_count": 1}, "simply": {"_count": 1}, "white": {"_count": 1}, "sure": {"_count": 1}, "very": {"_count": 1}, "involved": {"_count": 1}, "staring": {"_count": 1}, "certain": {"_count": 1}, "alive": {"_count": 1}, "young": {"_count": 1}, "walking": {"_count": 1}, "chuckling": {"_count": 1}, "being": {"_count": 1}, "pulling": {"_count": 1}}, "to": {"_count": 29, "guard": {"_count": 1}, "keep": {"_count": 1}, "come": {"_count": 1}, "let": {"_count": 2}, "Cornelius": {"_count": 1}, "tell": {"_count": 1}, "pull": {"_count": 1}, "Madam": {"_count": 1}, "ask": {"_count": 1}, "help": {"_count": 1}, "discuss": {"_count": 1}, "say": {"_count": 1}, "give": {"_count": 3}, "bite": {"_count": 1}, "think": {"_count": 1}, "talk": {"_count": 1}, "sit": {"_count": 1}, "disassociate": {"_count": 1}, "McGonagall": {"_count": 1}, "know": {"_count": 1}, "elfmade": {"_count": 1}, "speak": {"_count": 1}, "have": {"_count": 2}, "hesitate": {"_count": 1}, "accept": {"_count": 1}}, "an": {"_count": 3, "Nicolas": {"_count": 1}, "I": {"_count": 1}, "anyone": {"_count": 1}}, "slipping": {"_count": 1, "off": {"_count": 1}}, "quietly": {"_count": 31, "": {"_count": 25}, "so": {"_count": 1}, "but": {"_count": 1}, "peering": {"_count": 2}, "and": {"_count": 1}, "holding": {"_count": 1}}, "smiled": {"_count": 18, "": {"_count": 6}, "at": {"_count": 8}, "happily": {"_count": 1}, "his": {"_count": 1}, "drew": {"_count": 1}, "dolefully": {"_count": 1}}, "might": {"_count": 14, "not": {"_count": 2}, "have": {"_count": 8}, "stop": {"_count": 1}, "be": {"_count": 2}, "know": {"_count": 1}}, "again": {"_count": 5, "he": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}}, "at": {"_count": 11, "any": {"_count": 1}, "once": {"_count": 2}, "all": {"_count": 1}, "last": {"_count": 2}, "Harrys": {"_count": 1}, "the": {"_count": 3}, "Hogwarts": {"_count": 1}}, "ll": {"_count": 1, "think": {"_count": 1}}, "around": {"_count": 1, "YouKnowWho": {"_count": 1}}, "down": {"_count": 1, "": {"_count": 1}}, "believes": {"_count": 5, "us": {"_count": 1}, "that": {"_count": 1}, "yer": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "lived": {"_count": 2, "nor": {"_count": 1}, "": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 4}, "": {"_count": 1}}, "turns": {"_count": 3, "up": {"_count": 2}, "a": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 8, "need": {"_count": 1}, "heard": {"_count": 1}, "have": {"_count": 1}, "wanted": {"_count": 1}, "cant": {"_count": 1}, "are": {"_count": 1}, "knew": {"_count": 1}, "thought": {"_count": 1}}, "watching": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "he": {"_count": 19, "invented": {"_count": 1}, "said": {"_count": 4}, "wont": {"_count": 1}, "shook": {"_count": 1}, "turned": {"_count": 1}, "tried": {"_count": 1}, "had": {"_count": 2}, "should": {"_count": 1}, "ought": {"_count": 1}, "just": {"_count": 1}, "muttered": {"_count": 1}, "hadnt": {"_count": 1}, "was": {"_count": 2}, "looked": {"_count": 1}}, "swam": {"_count": 1, "into": {"_count": 1}}, "beaming": {"_count": 6, "": {"_count": 4}, "once": {"_count": 1}, "around": {"_count": 1}}, "hummed": {"_count": 1, "a": {"_count": 1}}, "sighed": {"_count": 6, "": {"_count": 2}, "very": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 1}, "looking": {"_count": 1}}, "now": {"_count": 12, "became": {"_count": 1}, "took": {"_count": 1}, "peering": {"_count": 1}, "": {"_count": 2}, "looking": {"_count": 1}, "swooped": {"_count": 1}, "turning": {"_count": 1}, "sounding": {"_count": 1}, "things": {"_count": 1}, "passing": {"_count": 1}, "with": {"_count": 1}}, "dreamily": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 18, "": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 8}, "front": {"_count": 1}, "disbelief": {"_count": 1}, "surprise": {"_count": 1}, "Harrys": {"_count": 1}, "answer": {"_count": 1}}, "thinks": {"_count": 6, "that": {"_count": 1}, "Fudge": {"_count": 1}, "you": {"_count": 1}, "youve": {"_count": 1}, "very": {"_count": 1}, "Im": {"_count": 1}}, "when": {"_count": 11, "we": {"_count": 1}, "I": {"_count": 2}, "Harry": {"_count": 2}, "Sirius": {"_count": 1}, "Uncle": {"_count": 1}, "he": {"_count": 2}, "hes": {"_count": 1}, "she": {"_count": 1}}, "says": {"_count": 14, "you": {"_count": 1}, "he": {"_count": 3}, "we": {"_count": 1}, "is": {"_count": 1}, "hes": {"_count": 2}, "its": {"_count": 1}, "\u2018Stay": {"_count": 1}, "his": {"_count": 1}, "people": {"_count": 1}, "Veritaserum": {"_count": 1}, "": {"_count": 1}}, "arrived": {"_count": 1, "moments": {"_count": 1}}, "raised": {"_count": 15, "his": {"_count": 14}, "the": {"_count": 1}}, "smiling": {"_count": 24, "": {"_count": 10}, "serenely": {"_count": 2}, "at": {"_count": 3}, "around": {"_count": 2}, "in": {"_count": 1}, "slightly": {"_count": 2}, "pleasantly": {"_count": 1}, "I": {"_count": 1}, "faintly": {"_count": 1}, "still": {"_count": 1}}, "called": {"_count": 3, "over": {"_count": 1}, "out": {"_count": 1}, "happily": {"_count": 1}}, "for": {"_count": 17, "one": {"_count": 1}, "Potters": {"_count": 1}, "asking": {"_count": 1}, "headquarters": {"_count": 1}, "help": {"_count": 2}, "a": {"_count": 3}, "appointing": {"_count": 1}, "years": {"_count": 1}, "his": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "Christmas": {"_count": 2}}, "doesnt": {"_count": 8, "": {"_count": 1}, "want": {"_count": 5}, "think": {"_count": 1}, "choose": {"_count": 1}}, "already": {"_count": 1, "knows": {"_count": 1}}, "so": {"_count": 7, "he": {"_count": 1}, "did": {"_count": 1}, "convinced": {"_count": 1}, "well": {"_count": 2}, "Merope": {"_count": 1}, "its": {"_count": 1}}, "the": {"_count": 16, "headmaster": {"_count": 2}, "candlelight": {"_count": 1}, "Minister": {"_count": 1}, "mans": {"_count": 1}, "moment": {"_count": 1}, "boy": {"_count": 2}, "very": {"_count": 1}, "wizard": {"_count": 1}, "mess": {"_count": 1}, "Death": {"_count": 1}, "flames": {"_count": 1}, "condition": {"_count": 1}, "fact": {"_count": 1}, "phoenix": {"_count": 1}}, "everything": {"_count": 2, "except": {"_count": 1}, "to": {"_count": 1}}, "would": {"_count": 42, "see": {"_count": 1}, "know": {"_count": 2}, "be": {"_count": 3}, "like": {"_count": 2}, "kick": {"_count": 1}, "have": {"_count": 15}, "probably": {"_count": 1}, "just": {"_count": 1}, "want": {"_count": 1}, "I": {"_count": 1}, "permit": {"_count": 1}, "no": {"_count": 1}, "make": {"_count": 1}, "not": {"_count": 4}, "indeed": {"_count": 1}, "say": {"_count": 1}, "teach": {"_count": 1}, "return": {"_count": 1}, "insist": {"_count": 1}, "come": {"_count": 1}, "never": {"_count": 1}}, "asked": {"_count": 6, "no": {"_count": 1}, "him": {"_count": 1}, "quietly": {"_count": 2}, "you": {"_count": 1}, "": {"_count": 1}}, "these": {"_count": 2, "boys": {"_count": 1}, "questions": {"_count": 1}}, "obviously": {"_count": 2, "thought": {"_count": 1}, "thinks": {"_count": 1}}, "laid": {"_count": 1, "Mrs": {"_count": 1}}, "believed": {"_count": 5, "Filch": {"_count": 1}, "that": {"_count": 2}, "Snape": {"_count": 1}, "him": {"_count": 1}}, "straightened": {"_count": 2, "up": {"_count": 2}}, "Ah": {"_count": 2, "": {"_count": 1}, "well": {"_count": 1}}, "patiently": {"_count": 2, "": {"_count": 2}}, "But": {"_count": 1, "maybe": {"_count": 1}}, "couldnt": {"_count": 4, "began": {"_count": 1}, "cure": {"_count": 1}, "get": {"_count": 1}, "keep": {"_count": 1}}, "bending": {"_count": 2, "over": {"_count": 2}}, "leaned": {"_count": 2, "forward": {"_count": 1}, "back": {"_count": 1}}, "that": {"_count": 17, "the": {"_count": 2}, "angry": {"_count": 1}, "Black": {"_count": 1}, "you": {"_count": 1}, "Sirius": {"_count": 1}, "he": {"_count": 3}, "Dumbledore": {"_count": 1}, "under": {"_count": 1}, "took": {"_count": 1}, "is": {"_count": 1}, "Merope": {"_count": 1}, "evening": {"_count": 1}, "had": {"_count": 1}, "if": {"_count": 1}}, "his": {"_count": 16, "eyes": {"_count": 5}, "silver": {"_count": 1}, "voice": {"_count": 4}, "chest": {"_count": 1}, "wand": {"_count": 2}, "expression": {"_count": 1}, "eyebrows": {"_count": 1}, "supposed": {"_count": 1}}, "has": {"_count": 11, "granted": {"_count": 1}, "failed": {"_count": 1}, "only": {"_count": 1}, "consistently": {"_count": 1}, "kindly": {"_count": 1}, "of": {"_count": 1}, "never": {"_count": 1}, "been": {"_count": 2}, "most": {"_count": 1}, "discussed": {"_count": 1}}, "came": {"_count": 4, "in": {"_count": 2}, "striding": {"_count": 1}, "sweeping": {"_count": 1}}, "seating": {"_count": 1, "himself": {"_count": 1}}, "settled": {"_count": 1, "himself": {"_count": 1}}, "could": {"_count": 13, "speak": {"_count": 2}, "solve": {"_count": 1}, "shake": {"_count": 1}, "make": {"_count": 1}, "use": {"_count": 1}, "be": {"_count": 1}, "perform": {"_count": 1}, "have": {"_count": 1}, "reply": {"_count": 1}, "hear": {"_count": 1}, "not": {"_count": 2}}, "tried": {"_count": 1, "to": {"_count": 1}}, "loudly": {"_count": 4, "": {"_count": 2}, "over": {"_count": 2}}, "brushed": {"_count": 1, "rooster": {"_count": 1}}, "considered": {"_count": 3, "him": {"_count": 2}, "Voldemort": {"_count": 1}}, "led": {"_count": 2, "them": {"_count": 1}, "Harry": {"_count": 1}}, "His": {"_count": 1, "footsteps": {"_count": 1}}, "giving": {"_count": 1, "Riddle": {"_count": 1}}, "frowning": {"_count": 2, "at": {"_count": 1}, "a": {"_count": 1}}, "answered": {"_count": 1, "it": {"_count": 1}}, "suspended": {"_count": 2, "no": {"_count": 1}, "broken": {"_count": 1}}, "cant": {"_count": 1, "stop": {"_count": 1}}, "sharply": {"_count": 8, "": {"_count": 6}, "and": {"_count": 1}, "looking": {"_count": 1}}, "speaking": {"_count": 3, "very": {"_count": 2}, "to": {"_count": 1}}, "gone": {"_count": 3, "fear": {"_count": 1}, "said": {"_count": 1}, "whispered": {"_count": 1}}, "always": {"_count": 4, "said": {"_count": 2}, "valued": {"_count": 1}, "had": {"_count": 1}}, "seemed": {"_count": 9, "to": {"_count": 5}, "oblivious": {"_count": 1}, "worried": {"_count": 1}, "much": {"_count": 1}, "satisfied": {"_count": 1}}, "never": {"_count": 8, "seemed": {"_count": 1}, "applied": {"_count": 1}, "told": {"_count": 4}, "envisaged": {"_count": 1}, "talked": {"_count": 1}}, "saw": {"_count": 2, "right": {"_count": 1}, "through": {"_count": 1}}, "sends": {"_count": 1, "his": {"_count": 1}}, "can": {"_count": 3, "give": {"_count": 1}, "clear": {"_count": 1}, "make": {"_count": 1}}, "interrupted": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "went": {"_count": 14, "on": {"_count": 12}, "during": {"_count": 1}, "home": {"_count": 1}}, "added": {"_count": 4, "": {"_count": 1}, "this": {"_count": 1}, "with": {"_count": 2}}, "addressed": {"_count": 1, "him": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "shaking": {"_count": 3, "his": {"_count": 1}, "back": {"_count": 2}}, "crossed": {"_count": 1, "to": {"_count": 1}}, "eyes": {"_count": 1, "twinkling": {"_count": 1}}, "watched": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "simply": {"_count": 9, "": {"_count": 8}, "I": {"_count": 1}}, "pulled": {"_count": 5, "open": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "pleasantly": {"_count": 8, "": {"_count": 5}, "he": {"_count": 1}, "but": {"_count": 2}}, "announcing": {"_count": 1, "that": {"_count": 1}}, "isnt": {"_count": 1, "fond": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "cleared": {"_count": 5, "his": {"_count": 5}}, "not": {"_count": 3, "being": {"_count": 1}, "do": {"_count": 1}, "Horcruxes": {"_count": 1}}, "continued": {"_count": 12, "and": {"_count": 2}, "as": {"_count": 1}, "none": {"_count": 1}, "": {"_count": 1}, "does": {"_count": 1}, "The": {"_count": 1}, "there": {"_count": 1}, "Tryouts": {"_count": 1}, "to": {"_count": 2}, "not": {"_count": 1}}, "paused": {"_count": 5, "again": {"_count": 1}, "about": {"_count": 1}, "and": {"_count": 2}, "for": {"_count": 1}}, "started": {"_count": 2, "speaking": {"_count": 1}, "to": {"_count": 1}}, "what": {"_count": 8, "really": {"_count": 1}, "about": {"_count": 1}, "you": {"_count": 2}, "that": {"_count": 1}, "": {"_count": 3}}, "from": {"_count": 4, "between": {"_count": 1}, "the": {"_count": 1}, "Voldemorts": {"_count": 1}, "himself": {"_count": 1}}, "sent": {"_count": 4, "all": {"_count": 1}, "you": {"_count": 1}, "Gellert": {"_count": 1}, "him": {"_count": 1}}, "closing": {"_count": 2, "the": {"_count": 2}}, "coldly": {"_count": 2, "": {"_count": 2}}, "how": {"_count": 3, "very": {"_count": 1}, "do": {"_count": 1}, "odd": {"_count": 1}}, "wont": {"_count": 5, "let": {"_count": 1}, "be": {"_count": 2}, "explain": {"_count": 1}, "always": {"_count": 1}}, "remained": {"_count": 3, "worried": {"_count": 1}, "standing": {"_count": 1}, "as": {"_count": 1}}, "knew": {"_count": 12, "hed": {"_count": 1}, "about": {"_count": 2}, "at": {"_count": 1}, "an": {"_count": 1}, "nothing": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}}, "Hagrid": {"_count": 2, "Mr": {"_count": 1}, "": {"_count": 1}}, "McGonagall": {"_count": 1, "Snape": {"_count": 1}}, "as": {"_count": 23, "Harry": {"_count": 2}, "Filch": {"_count": 1}, "they": {"_count": 2}, "the": {"_count": 4}, "an": {"_count": 1}, "though": {"_count": 4}, "if": {"_count": 1}, "Ron": {"_count": 1}, "Umbridge": {"_count": 1}, "Head": {"_count": 1}, "casually": {"_count": 1}, "he": {"_count": 2}, "much": {"_count": 1}, "good": {"_count": 1}}, "enthusiastically": {"_count": 1, "offering": {"_count": 1}}, "standing": {"_count": 5, "up": {"_count": 3}, "before": {"_count": 1}, "beside": {"_count": 1}}, "indicating": {"_count": 3, "that": {"_count": 1}, "the": {"_count": 2}}, "about": {"_count": 4, "this": {"_count": 2}, "something": {"_count": 1}, "his": {"_count": 1}}, "stood": {"_count": 15, "waiting": {"_count": 1}, "up": {"_count": 8}, "there": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "aside": {"_count": 1}, "blocking": {"_count": 1}, "a": {"_count": 1}}, "Hes": {"_count": 1, "tried": {"_count": 1}}, "catch": {"_count": 1, "yeh": {"_count": 1}}, "hired": {"_count": 2, "you": {"_count": 1}, "him": {"_count": 1}}, "became": {"_count": 1, "Headmaster": {"_count": 1}}, "encouraged": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 3, "year": {"_count": 1}, "determined": {"_count": 1}, "this": {"_count": 1}}, "takes": {"_count": 2, "this": {"_count": 1}, "you": {"_count": 1}}, "Sirius": {"_count": 2, "Black": {"_count": 1}, "I": {"_count": 1}}, "surveying": {"_count": 3, "Snape": {"_count": 1}, "her": {"_count": 1}, "Harry": {"_count": 1}}, "abruptly": {"_count": 1, "": {"_count": 1}}, "111": {"_count": 1, "see": {"_count": 1}}, "repeated": {"_count": 4, "": {"_count": 3}, "firmly": {"_count": 1}}, "held": {"_count": 2, "up": {"_count": 1}, "Harrys": {"_count": 1}}, "slowly": {"_count": 3, "and": {"_count": 1}, "his": {"_count": 1}, "looking": {"_count": 1}}, "wants": {"_count": 5, "us": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 2}}, "just": {"_count": 3, "said": {"_count": 1}, "as": {"_count": 2}}, "if": {"_count": 8, "were": {"_count": 1}, "you": {"_count": 4}, "only": {"_count": 1}, "thats": {"_count": 1}, "he": {"_count": 1}}, "Fudge": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 10, "sounding": {"_count": 1}, "looking": {"_count": 1}, "in": {"_count": 1}, "smiling": {"_count": 3}, "closing": {"_count": 1}, "more": {"_count": 1}, "staring": {"_count": 1}, "showed": {"_count": 1}}, "Macnair": {"_count": 1, "Fudge": {"_count": 1}}, "locks": {"_count": 3, "the": {"_count": 3}}, "backed": {"_count": 1, "out": {"_count": 1}}, "looked": {"_count": 12, "up": {"_count": 1}, "mildly": {"_count": 1}, "as": {"_count": 1}, "very": {"_count": 2}, "down": {"_count": 1}, "from": {"_count": 1}, "sad": {"_count": 1}, "at": {"_count": 1}, "around": {"_count": 1}, "weary": {"_count": 1}, "directly": {"_count": 1}}, "beamed": {"_count": 4, "at": {"_count": 3}, "": {"_count": 1}}, "alone": {"_count": 3, "looked": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}}, "whose": {"_count": 2, "eyes": {"_count": 1}, "wand": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "soberly": {"_count": 1, "": {"_count": 1}}, "yesterday": {"_count": 1, "when": {"_count": 1}}, "take": {"_count": 1, "this": {"_count": 1}}, "wouldnt": {"_count": 6, "laugh": {"_count": 1}, "have": {"_count": 3}, "ignore": {"_count": 1}, "come": {"_count": 1}}, "softly": {"_count": 8, "": {"_count": 5}, "how": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}}, "Sorry": {"_count": 1, "to": {"_count": 1}}, "apparently": {"_count": 3, "too": {"_count": 1}, "to": {"_count": 1}, "satisfied": {"_count": 1}}, "shook": {"_count": 5, "it": {"_count": 1}, "his": {"_count": 4}}, "brightly": {"_count": 2, "into": {"_count": 1}, "pointing": {"_count": 1}}, "chuckled": {"_count": 3, "appreciatively": {"_count": 1}, "": {"_count": 2}}, "where": {"_count": 1, "was": {"_count": 1}}, "or": {"_count": 5, "else": {"_count": 1}, "Voldemort": {"_count": 1}, "anything": {"_count": 1}, "the": {"_count": 1}, "Grindelwald": {"_count": 1}}, "spoke": {"_count": 8, "again": {"_count": 2}, "Harry": {"_count": 1}, "wondering": {"_count": 1}, "": {"_count": 2}, "however": {"_count": 1}, "to": {"_count": 1}}, "sat": {"_count": 5, "down": {"_count": 4}, "without": {"_count": 1}}, "knows": {"_count": 4, "youre": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "about": {"_count": 1}}, "be": {"_count": 1, "in": {"_count": 1}}, "theyre": {"_count": 1, "saying": {"_count": 1}}, "extending": {"_count": 1, "a": {"_count": 1}}, "also": {"_count": 2, "bowing": {"_count": 1}, "standing": {"_count": 1}}, "replied": {"_count": 2, "": {"_count": 1}, "quietly": {"_count": 1}}, "but": {"_count": 20, "his": {"_count": 1}, "no": {"_count": 2}, "I": {"_count": 4}, "he": {"_count": 4}, "Ive": {"_count": 1}, "within": {"_count": 1}, "the": {"_count": 1}, "missed": {"_count": 1}, "making": {"_count": 1}, "as": {"_count": 1}, "Dumbledore": {"_count": 1}, "there": {"_count": 1}, "it": {"_count": 1}}, "Professor": {"_count": 2, "Karkaroff": {"_count": 1}, "Snape": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "closed": {"_count": 5, "the": {"_count": 2}, "his": {"_count": 3}}, "I": {"_count": 14, "will": {"_count": 1}, "must": {"_count": 1}, "mean": {"_count": 2}, "cant": {"_count": 1}, "am": {"_count": 2}, "became": {"_count": 1}, "give": {"_count": 1}, "think": {"_count": 1}, "wouldnt": {"_count": 1}, "want": {"_count": 1}, "can": {"_count": 1}, "daresay": {"_count": 1}}, "coming": {"_count": 1, "out": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}, "suddenly": {"_count": 1, "stopped": {"_count": 1}}, "stared": {"_count": 2, "at": {"_count": 1}, "for": {"_count": 1}}, "feeling": {"_count": 1, "the": {"_count": 1}}, "followed": {"_count": 2, "closely": {"_count": 1}, "": {"_count": 1}}, "ignoring": {"_count": 2, "Snape": {"_count": 1}, "the": {"_count": 1}}, "politely": {"_count": 6, "Dumbledore": {"_count": 1}, "": {"_count": 3}, "as": {"_count": 1}, "and": {"_count": 1}}, "warningly": {"_count": 1, "": {"_count": 1}}, "waited": {"_count": 3, "but": {"_count": 1}, "a": {"_count": 1}, "until": {"_count": 1}}, "read": {"_count": 1, "out": {"_count": 1}}, "taking": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "photos": {"_count": 1, "": {"_count": 1}}, "wanted": {"_count": 16, "an": {"_count": 1}, "you": {"_count": 4}, "us": {"_count": 3}, "me": {"_count": 2}, "to": {"_count": 2}, "a": {"_count": 1}, "him": {"_count": 3}}, "offered": {"_count": 1, "Dobby": {"_count": 1}}, "paying": {"_count": 1, "you": {"_count": 1}}, "very": {"_count": 3, "much": {"_count": 1}, "quietly": {"_count": 2}}, "amicably": {"_count": 1, "": {"_count": 1}}, "eccentric": {"_count": 1, "Headmaster": {"_count": 1}}, "employs": {"_count": 1, "to": {"_count": 1}}, "surely": {"_count": 2, "has": {"_count": 1}, "Lord": {"_count": 1}}, "banned": {"_count": 1, "her": {"_count": 1}}, "magicked": {"_count": 1, "the": {"_count": 1}}, "twiddling": {"_count": 1, "his": {"_count": 1}}, "happens": {"_count": 1, "to": {"_count": 1}}, "trusts": {"_count": 8, "you": {"_count": 1}, "Snape": {"_count": 2}, "where": {"_count": 1}, "him": {"_count": 2}, "Severus": {"_count": 1}, "Hagrid": {"_count": 1}}, "only": {"_count": 2, "lets": {"_count": 1}, "looked": {"_count": 1}}, "are": {"_count": 2, "the": {"_count": 1}, "liars": {"_count": 1}}, "confirming": {"_count": 1, "the": {"_count": 1}}, "Ill": {"_count": 2, "be": {"_count": 1}, "take": {"_count": 1}}, "did": {"_count": 25, "nothing": {"_count": 1}, "not": {"_count": 21}, "warn": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "leading": {"_count": 1, "the": {"_count": 1}}, "hurried": {"_count": 1, "forward": {"_count": 1}}, "bent": {"_count": 4, "over": {"_count": 2}, "down": {"_count": 2}}, "swiftly": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 3, "a": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 1}}, "nor": {"_count": 6, "Harry": {"_count": 3}, "the": {"_count": 1}, "Grindelwald": {"_count": 1}, "of": {"_count": 1}}, "began": {"_count": 4, "but": {"_count": 1}, "to": {"_count": 3}}, "shouted": {"_count": 1, "his": {"_count": 1}}, "known": {"_count": 1, "that": {"_count": 1}}, "d": {"_count": 1, "do": {"_count": 1}}, "more": {"_count": 3, "worried": {"_count": 1}, "kindly": {"_count": 1}, "about": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "Im": {"_count": 3, "afraid": {"_count": 1}, "really": {"_count": 1}, "not": {"_count": 1}}, "none": {"_count": 1, "at": {"_count": 1}}, "come": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "then": {"_count": 6, "around": {"_count": 1}, "in": {"_count": 1}, "got": {"_count": 1}, "tell": {"_count": 1}, "waved": {"_count": 1}, "his": {"_count": 1}}, "sitting": {"_count": 4, "next": {"_count": 1}, "down": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "Karkaroff": {"_count": 1, "looked": {"_count": 1}}, "made": {"_count": 5, "a": {"_count": 1}, "sure": {"_count": 1}, "us": {"_count": 2}, "eye": {"_count": 1}}, "behind": {"_count": 4, "Harry": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}}, "were": {"_count": 10, "still": {"_count": 1}, "seeing": {"_count": 1}, "advancing": {"_count": 1}, "now": {"_count": 1}, "standing": {"_count": 2}, "shivering": {"_count": 1}, "alone": {"_count": 1}, "doing": {"_count": 1}, "strolling": {"_count": 1}}, "on": {"_count": 5, "his": {"_count": 3}, "the": {"_count": 1}, "many": {"_count": 1}}, "drew": {"_count": 4, "his": {"_count": 2}, "up": {"_count": 1}, "himself": {"_count": 1}}, "placed": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "sadly": {"_count": 2, "looking": {"_count": 1}, "": {"_count": 1}}, "prodding": {"_count": 1, "the": {"_count": 1}}, "merely": {"_count": 5, "said": {"_count": 1}, "looked": {"_count": 1}, "chuckled": {"_count": 1}, "smiled": {"_count": 2}}, "promptly": {"_count": 1, "": {"_count": 1}}, "stopped": {"_count": 3, "pacing": {"_count": 1}, "talking": {"_count": 1}, "dead": {"_count": 1}}, "extracting": {"_count": 1, "thoughts": {"_count": 1}}, "heavily": {"_count": 5, "": {"_count": 5}}, "glanced": {"_count": 4, "down": {"_count": 1}, "around": {"_count": 2}, "up": {"_count": 1}}, "reckons": {"_count": 3, "You": {"_count": 1}, "Voldemort": {"_count": 2}}, "Headmaster": {"_count": 1, "of": {"_count": 1}}, "should": {"_count": 1, "surely": {"_count": 1}}, "rose": {"_count": 3, "to": {"_count": 2}, "and": {"_count": 1}}, "long": {"_count": 1, "ago": {"_count": 1}}, "invoked": {"_count": 1, "an": {"_count": 1}}, "hes": {"_count": 1, "dead": {"_count": 1}}, "Diggorys": {"_count": 1, "parents": {"_count": 1}}, "Amos": {"_count": 1, "Diggorys": {"_count": 1}}, "curtly": {"_count": 1, "": {"_count": 1}}, "walked": {"_count": 7, "over": {"_count": 1}, "around": {"_count": 2}, "back": {"_count": 1}, "into": {"_count": 1}, "right": {"_count": 1}, "through": {"_count": 1}}, "climbed": {"_count": 1, "into": {"_count": 1}}, "covered": {"_count": 1, "Moody": {"_count": 1}}, "a": {"_count": 6, "small": {"_count": 1}, "fortified": {"_count": 1}, "favor": {"_count": 1}, "long": {"_count": 1}, "little": {"_count": 1}, "potion": {"_count": 1}}, "Snape": {"_count": 2, "and": {"_count": 1}, "had": {"_count": 1}}, "forced": {"_count": 1, "the": {"_count": 1}}, "knelt": {"_count": 1, "before": {"_count": 1}}, "quickly": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "joined": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "gripped": {"_count": 1, "his": {"_count": 1}}, "pushed": {"_count": 3, "it": {"_count": 1}, "open": {"_count": 1}, "back": {"_count": 1}}, "which": {"_count": 1, "retained": {"_count": 1}}, "moved": {"_count": 4, "between": {"_count": 1}, "carefully": {"_count": 1}, "away": {"_count": 1}, "closer": {"_count": 1}}, "finds": {"_count": 1, "out": {"_count": 1}}, "steadily": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "coolly": {"_count": 1, "": {"_count": 1}}, "pressed": {"_count": 1, "on": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "pulling": {"_count": 2, "up": {"_count": 1}, "from": {"_count": 1}}, "turning": {"_count": 3, "to": {"_count": 2}, "toward": {"_count": 1}}, "stepping": {"_count": 1, "between": {"_count": 1}}, "transformed": {"_count": 1, "again": {"_count": 1}}, "disappeared": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 3, "going": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "have": {"_count": 8, "forgotten": {"_count": 1}, "to": {"_count": 1}, "let": {"_count": 3}, "been": {"_count": 1}, "missed": {"_count": 1}, "you": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "hears": {"_count": 2, "about": {"_count": 1}, "I": {"_count": 1}}, "whats": {"_count": 2, "happened": {"_count": 1}, "going": {"_count": 1}}, "murders": {"_count": 1, "him": {"_count": 1}}, "explaining": {"_count": 1, "everything": {"_count": 1}}, "intended": {"_count": 3, "to": {"_count": 2}, "next": {"_count": 1}}, "dementors": {"_count": 1, "were": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "been": {"_count": 1, "so": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "feels": {"_count": 1, "": {"_count": 1}}, "keeps": {"_count": 1, "reminding": {"_count": 1}}, "must": {"_count": 4, "have": {"_count": 3}, "know": {"_count": 1}}, "reckon": {"_count": 1, "hes": {"_count": 1}}, "locked": {"_count": 1, "up": {"_count": 1}}, "whether": {"_count": 1, "I": {"_count": 1}}, "tell": {"_count": 1, "you": {"_count": 1}}, "cheerfully": {"_count": 4, "": {"_count": 4}}, "lightly": {"_count": 3, "": {"_count": 3}}, "she": {"_count": 1, "said": {"_count": 1}}, "inclined": {"_count": 1, "his": {"_count": 1}}, "mildly": {"_count": 3, "": {"_count": 3}}, "courteously": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "while": {"_count": 2, "trying": {"_count": 1}, "his": {"_count": 1}}, "inclining": {"_count": 2, "his": {"_count": 2}}, "her": {"_count": 1, "face": {"_count": 1}}, "seeking": {"_count": 1, "reassurance": {"_count": 1}}, "briskly": {"_count": 2, "springing": {"_count": 1}, "": {"_count": 1}}, "ought": {"_count": 2, "to": {"_count": 2}}, "beside": {"_count": 1, "me": {"_count": 1}}, "clapped": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "suffered": {"_count": 1, "like": {"_count": 1}}, "getting": {"_count": 1, "in": {"_count": 1}}, "playing": {"_count": 2, "at": {"_count": 2}}, "say": {"_count": 1, "it": {"_count": 1}}, "your": {"_count": 1, "scar": {"_count": 1}}, "cares": {"_count": 1, "about": {"_count": 1}}, "may": {"_count": 2, "not": {"_count": 1}, "have": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "Rita": {"_count": 1}}, "arrested": {"_count": 1, "on": {"_count": 1}}, "once": {"_count": 3, "Supreme": {"_count": 1}, "Im": {"_count": 1}, "dreamed": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "anyway": {"_count": 2, "Umbridge": {"_count": 1}, "": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "So": {"_count": 1, "you": {"_count": 1}}, "asks": {"_count": 1, "the": {"_count": 1}}, "heard": {"_count": 1, "hed": {"_count": 1}}, "Potter": {"_count": 1, "has": {"_count": 1}}, "understand": {"_count": 1, "he": {"_count": 1}}, "whitefaced": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 1}, "ought": {"_count": 1}, "seemed": {"_count": 1}}, "over": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 1}, "breakfast": {"_count": 1}}, "through": {"_count": 3, "bright": {"_count": 1}, "the": {"_count": 2}}, "replaced": {"_count": 1, "the": {"_count": 1}}, "marched": {"_count": 1, "over": {"_count": 1}}, "Floo": {"_count": 1, "powder": {"_count": 1}}, "catching": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "seems": {"_count": 1, "almost": {"_count": 1}}, "its": {"_count": 2, "probably": {"_count": 1}, "Secret": {"_count": 1}}, "thanks": {"_count": 1, "for": {"_count": 1}}, "teach": {"_count": 1, "Harry": {"_count": 1}}, "think": {"_count": 1, "I": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "guessing": {"_count": 1, "or": {"_count": 1}}, "warned": {"_count": 1, "me": {"_count": 1}}, "appeared": {"_count": 2, "in": {"_count": 1}, "beside": {"_count": 1}}, "happily": {"_count": 3, "to": {"_count": 1}, "seconds": {"_count": 1}, "and": {"_count": 1}}, "gravely": {"_count": 3, "inclining": {"_count": 1}, "": {"_count": 2}}, "go": {"_count": 1, "on": {"_count": 1}}, "raising": {"_count": 4, "his": {"_count": 4}}, "apologetically": {"_count": 2, "Im": {"_count": 1}, "": {"_count": 1}}, "kindly": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "cut": {"_count": 3, "him": {"_count": 1}, "across": {"_count": 2}}, "seized": {"_count": 1, "Harrys": {"_count": 1}}, "released": {"_count": 1, "Harry": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "sacrificed": {"_count": 1, "himself": {"_count": 1}}, "Firenze": {"_count": 1, "has": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "hasnt": {"_count": 1, "he": {"_count": 1}}, "ever": {"_count": 3, "taught": {"_count": 1}, "telling": {"_count": 1}, "mentioning": {"_count": 1}}, "sped": {"_count": 1, "down": {"_count": 1}}, "whipped": {"_count": 1, "around": {"_count": 1}}, "advanced": {"_count": 1, "on": {"_count": 1}}, "flicked": {"_count": 2, "his": {"_count": 2}}, "opened": {"_count": 3, "his": {"_count": 3}}, "brandished": {"_count": 1, "his": {"_count": 1}}, "bellowed": {"_count": 1, "Stay": {"_count": 1}}, "sounded": {"_count": 1, "frightened": {"_count": 1}}, "kill": {"_count": 1, "the": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "surveyed": {"_count": 2, "him": {"_count": 2}}, "serenely": {"_count": 2, "": {"_count": 1}, "shaking": {"_count": 1}}, "clearly": {"_count": 2, "": {"_count": 2}}, "hardly": {"_count": 1, "breathing": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "corrected": {"_count": 4, "him": {"_count": 2}, "himself": {"_count": 1}, "Harry": {"_count": 1}}, "resumed": {"_count": 1, "that": {"_count": 1}}, "heaved": {"_count": 2, "a": {"_count": 2}}, "criticize": {"_count": 1, "Sirius": {"_count": 1}}, "agree": {"_count": 1, "with": {"_count": 1}}, "lowered": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "except": {"_count": 1, "that": {"_count": 1}}, "hesitantly": {"_count": 1, "": {"_count": 1}}, "newly": {"_count": 2, "reinstated": {"_count": 2}}, "pages": {"_count": 1, "six": {"_count": 1}}, "against": {"_count": 2, "his": {"_count": 2}}, "wishes": {"_count": 1, "he": {"_count": 1}}, "twice": {"_count": 1, "a": {"_count": 1}}, "thought": {"_count": 4, "I": {"_count": 2}, "so": {"_count": 1}, "he": {"_count": 1}}, "close": {"_count": 1, "at": {"_count": 1}}, "Though": {"_count": 1, "he": {"_count": 1}}, "peering": {"_count": 1, "down": {"_count": 1}}, "finished": {"_count": 3, "the": {"_count": 2}, "kindly": {"_count": 1}}, "passed": {"_count": 1, "him": {"_count": 1}}, "suggested": {"_count": 1, "shrewdly": {"_count": 1}}, "ignored": {"_count": 2, "him": {"_count": 2}}, "waved": {"_count": 1, "his": {"_count": 1}}, "vaguely": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "around": {"_count": 1}}, "swooped": {"_count": 1, "plunging": {"_count": 1}}, "straightening": {"_count": 1, "up": {"_count": 1}}, "moving": {"_count": 1, "forward": {"_count": 1}}, "wear": {"_count": 1, "before": {"_count": 1}}, "balefully": {"_count": 1, "for": {"_count": 1}}, "strode": {"_count": 2, "from": {"_count": 1}, "away": {"_count": 1}}, "reentered": {"_count": 1, "the": {"_count": 1}}, "fasten": {"_count": 1, "his": {"_count": 1}}, "relieving": {"_count": 1, "Harry": {"_count": 1}}, "pointed": {"_count": 4, "toward": {"_count": 2}, "his": {"_count": 2}}, "illuminated": {"_count": 1, "the": {"_count": 1}}, "understood": {"_count": 1, "that": {"_count": 1}}, "airily": {"_count": 1, "": {"_count": 1}}, "pushing": {"_count": 1, "open": {"_count": 1}}, "approached": {"_count": 3, "the": {"_count": 3}}, "knocked": {"_count": 1, "three": {"_count": 1}}, "bringing": {"_count": 1, "Harry": {"_count": 1}}, "ushering": {"_count": 1, "Harry": {"_count": 1}}, "send": {"_count": 1, "messages": {"_count": 1}}, "attacked": {"_count": 1, "last": {"_count": 1}}, "bewitched": {"_count": 1, "them": {"_count": 1}}, "mentioned": {"_count": 1, "Voldemort": {"_count": 1}}, "interpreting": {"_count": 1, "them": {"_count": 1}}, "uses": {"_count": 1, "that": {"_count": 1}}, "innit": {"_count": 1, "": {"_count": 1}}, "fixed": {"_count": 1, "it": {"_count": 1}}, "P": {"_count": 1, "": {"_count": 1}}, "placidly": {"_count": 3, "": {"_count": 1}, "beside": {"_count": 1}, "but": {"_count": 1}}, "tipped": {"_count": 1, "the": {"_count": 1}}, "gesturing": {"_count": 2, "toward": {"_count": 1}, "Harry": {"_count": 1}}, "landed": {"_count": 2, "beside": {"_count": 2}}, "lengthened": {"_count": 1, "his": {"_count": 1}}, "indicated": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "lit": {"_count": 1, "extra": {"_count": 1}}, "reseating": {"_count": 2, "himself": {"_count": 2}}, "after": {"_count": 3, "a": {"_count": 3}}, "agreed": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 1, "their": {"_count": 1}}, "forgotten": {"_count": 1, "the": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "quellingly": {"_count": 1, "": {"_count": 1}}, "withdrawing": {"_count": 1, "a": {"_count": 1}}, "poured": {"_count": 1, "the": {"_count": 1}}, "perhaps": {"_count": 1, "she": {"_count": 1}}, "holding": {"_count": 1, "out": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "waving": {"_count": 2, "his": {"_count": 2}}, "rising": {"_count": 2, "too": {"_count": 1}, "out": {"_count": 1}}, "walking": {"_count": 1, "forward": {"_count": 1}}, "drawing": {"_count": 1, "a": {"_count": 1}}, "handed": {"_count": 1, "Riddle": {"_count": 1}}, "landing": {"_count": 1, "beside": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "listened": {"_count": 1, "to": {"_count": 1}}, "placing": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "angry": {"_count": 1, "with": {"_count": 1}}, "Divination": {"_count": 1, "is": {"_count": 1}}, "eventually": {"_count": 1, "peering": {"_count": 1}}, "valued": {"_count": 1, "his": {"_count": 1}}, "tapped": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "grasped": {"_count": 1, "Harry": {"_count": 1}}, "resuming": {"_count": 1, "his": {"_count": 1}}, "emptied": {"_count": 1, "the": {"_count": 1}}, "easily": {"_count": 2, "": {"_count": 2}}, "delicately": {"_count": 1, "": {"_count": 1}}, "set": {"_count": 3, "down": {"_count": 1}, "off": {"_count": 1}, "out": {"_count": 1}}, "needs": {"_count": 1, "information": {"_count": 1}}, "returned": {"_count": 2, "to": {"_count": 2}}, "because": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "bowing": {"_count": 1, "his": {"_count": 1}}, "striding": {"_count": 2, "up": {"_count": 1}, "along": {"_count": 1}}, "chooses": {"_count": 1, "to": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "glancing": {"_count": 1, "around": {"_count": 1}}, "beckoned": {"_count": 1, "Harry": {"_count": 1}}, "hampered": {"_count": 1, "slightly": {"_count": 1}}, "slid": {"_count": 2, "from": {"_count": 1}, "a": {"_count": 1}}, "putting": {"_count": 1, "his": {"_count": 1}}, "expected": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "stopping": {"_count": 1, "so": {"_count": 1}}, "meant": {"_count": 1, "this": {"_count": 1}}, "worked": {"_count": 1, "but": {"_count": 1}}, "withdrew": {"_count": 1, "his": {"_count": 1}}, "peered": {"_count": 1, "more": {"_count": 1}}, "lifted": {"_count": 1, "it": {"_count": 1}}, "plunged": {"_count": 1, "the": {"_count": 1}}, "drank": {"_count": 5, "three": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}}, "panted": {"_count": 1, "and": {"_count": 1}}, "frightened": {"_count": 1, "like": {"_count": 1}}, "screamed": {"_count": 1, "the": {"_count": 1}}, "obeyed": {"_count": 1, "him": {"_count": 1}}, "drained": {"_count": 1, "the": {"_count": 1}}, "gulped": {"_count": 1, "at": {"_count": 1}}, "no": {"_count": 1, "youre": {"_count": 1}}, "groaned": {"_count": 1, "and": {"_count": 1}}, "scooped": {"_count": 1, "the": {"_count": 1}}, "faintly": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "staggered": {"_count": 1, "against": {"_count": 1}}, "off": {"_count": 1, "balance": {"_count": 1}}, "weakly": {"_count": 1, "though": {"_count": 1}}, "sank": {"_count": 1, "onto": {"_count": 1}}, "kicked": {"_count": 1, "off": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "like": {"_count": 3, "a": {"_count": 1}, "MadEye": {"_count": 1}, "light": {"_count": 1}}, "muttering": {"_count": 1, "in": {"_count": 1}}, "clutching": {"_count": 1, "at": {"_count": 1}}, "conversationally": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "and": {"_count": 1}}, "cornered": {"_count": 1, "": {"_count": 1}}, "wandless": {"_count": 1, "Dumbledore": {"_count": 1}}, "rasped": {"_count": 1, "Greyback": {"_count": 1}}, "slumped": {"_count": 1, "against": {"_count": 1}}, "squarely": {"_count": 1, "in": {"_count": 1}}, "won": {"_count": 1, "be": {"_count": 1}}, "wha": {"_count": 1, "Harry": {"_count": 1}}, "don": {"_count": 1, "be": {"_count": 1}}, "musta": {"_count": 1, "told": {"_count": 1}}, "lay": {"_count": 1, "and": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "owes": {"_count": 1, "him": {"_count": 1}}, "swore": {"_count": 1, "he": {"_count": 1}}, "dead": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "helpfully": {"_count": 1, "offered": {"_count": 1}}, "crouching": {"_count": 1, "at": {"_count": 1}}, "died": {"_count": 8, "": {"_count": 3}, "over": {"_count": 1}, "he": {"_count": 1}, "knew": {"_count": 1}, "were": {"_count": 1}, "someone": {"_count": 1}}, "cannot": {"_count": 2, "return": {"_count": 1}, "come": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "quite": {"_count": 1, "well": {"_count": 1}}, "carried": {"_count": 1, "to": {"_count": 1}}, "really": {"_count": 2, "meet": {"_count": 1}, "had": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "\u2018borrowed": {"_count": 1, "his": {"_count": 1}}, "fell": {"_count": 1, "jumped": {"_count": 1}}, "needed": {"_count": 1, "work": {"_count": 1}}, "their": {"_count": 1, "SecretKeeper": {"_count": 1}}, "removed": {"_count": 2, "them": {"_count": 1}, "it": {"_count": 1}}, "destroyed": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "Ronald": {"_count": 1, "": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "desired": {"_count": 1, "": {"_count": 1}}, "invented": {"_count": 1, "it": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "defeated": {"_count": 1, "": {"_count": 1}}, "kept": {"_count": 1, "that": {"_count": 1}}, "truly": {"_count": 1, "left": {"_count": 1}}, "visited": {"_count": 1, "their": {"_count": 1}}, "actually": {"_count": 1, "cared": {"_count": 1}}, "Harrys": {"_count": 1, "extremities": {"_count": 1}}, "introduced": {"_count": 1, "them": {"_count": 1}}, "taken": {"_count": 1, "Jamess": {"_count": 1}}, "That": {"_count": 1, "Dumbledore": {"_count": 1}}, "Elf": {"_count": 1, "magic": {"_count": 1}}, "family": {"_count": 3, "left": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "Forget": {"_count": 1, "Dumbledore": {"_count": 1}}, "scratching": {"_count": 1, "his": {"_count": 1}}, "much": {"_count": 1, "good": {"_count": 1}}, "explained": {"_count": 2, "more": {"_count": 1}, "it": {"_count": 1}}, "used": {"_count": 1, "it": {"_count": 1}}, "trusted": {"_count": 1, "Snape": {"_count": 1}}, "entrusted": {"_count": 1, "it": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "both": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 2, "what": {"_count": 1}, "course": {"_count": 1}}, "arm": {"_count": 1, "in": {"_count": 1}}, "broke": {"_count": 2, "over": {"_count": 1}, "": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "appear": {"_count": 1, "busy": {"_count": 1}}, "blame": {"_count": 1, "Albus": {"_count": 1}}, "delayed": {"_count": 1, "for": {"_count": 1}}, "wrote": {"_count": 1, "said": {"_count": 1}}, "being": {"_count": 1, "pals": {"_count": 1}}, "under": {"_count": 1, "Harrys": {"_count": 1}}, "Grindelwald": {"_count": 1, "and": {"_count": 1}}, "do": {"_count": 1, "with": {"_count": 1}}, "borrowed": {"_count": 1, "the": {"_count": 1}}, "usually": {"_count": 1, "let": {"_count": 1}}, "crashed": {"_count": 1, "over": {"_count": 1}}, "explain": {"_count": 1, "how": {"_count": 1}}, "cared": {"_count": 1, "about": {"_count": 1}}, "whimpering": {"_count": 1, "pleading": {"_count": 1}}, "loved": {"_count": 1, "Harry": {"_count": 1}}, "loyal": {"_count": 1, "to": {"_count": 1}}, "keeping": {"_count": 1, "his": {"_count": 1}}, "Apparating": {"_count": 1, "had": {"_count": 1}}, "without": {"_count": 1, "raising": {"_count": 1}}, "sagged": {"_count": 1, "sideways": {"_count": 1}}, "grimaced": {"_count": 1, "": {"_count": 1}}, "almost": {"_count": 1, "it": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "keep": {"_count": 1, "a": {"_count": 1}}, "matteroffactly": {"_count": 1, "": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "stated": {"_count": 1, "it": {"_count": 1}}, "gradually": {"_count": 1, "regained": {"_count": 1}}, "dabbed": {"_count": 1, "his": {"_count": 1}}, "patted": {"_count": 1, "Harrys": {"_count": 1}}}, "where": {"_count": 1107, "everything": {"_count": 3, "from": {"_count": 1}, "seemed": {"_count": 1}, "is": {"_count": 1}}, "he": {"_count": 183, "sat": {"_count": 7}, "slept": {"_count": 1}, "was": {"_count": 51}, "could": {"_count": 3}, "sleeps": {"_count": 1}, "found": {"_count": 2}, "stood": {"_count": 11}, "lay": {"_count": 6}, "and": {"_count": 6}, "is": {"_count": 16}, "had": {"_count": 33}, "busied": {"_count": 1}, "didnt": {"_count": 1}, "liked": {"_count": 1}, "wants": {"_count": 1}, "meant": {"_count": 1}, "belonged": {"_count": 1}, "would": {"_count": 1}, "Transfigured": {"_count": 1}, "comes": {"_count": 1}, "stopped": {"_count": 1}, "Disapparated": {"_count": 1}, "went": {"_count": 2}, "hid": {"_count": 1}, "fell": {"_count": 1}, "slid": {"_count": 1}, "fluttered": {"_count": 1}, "has": {"_count": 1}, "picked": {"_count": 1}, "Harry": {"_count": 1}, "bought": {"_count": 1}, "saw": {"_count": 2}, "collided": {"_count": 1}, "wanted": {"_count": 2}, "might": {"_count": 2}, "now": {"_count": 1}, "still": {"_count": 1}, "goes": {"_count": 1}, "kept": {"_count": 1}, "slammed": {"_count": 1}, "flung": {"_count": 1}, "crouched": {"_count": 2}, "landed": {"_count": 1}, "thought": {"_count": 1}, "deposited": {"_count": 1}, "got": {"_count": 1}, "Ron": {"_count": 1}, "dashed": {"_count": 1}, "boasted": {"_count": 1}, "lived": {"_count": 1}, "prayed": {"_count": 1}, "belongs": {"_count": 1}}, "did": {"_count": 5, "you": {"_count": 2}, "the": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 13, "?": {"_count": 6}, ".": {"_count": 7}}, "the": {"_count": 155, "only": {"_count": 1}, "letter": {"_count": 1}, "shelves": {"_count": 1}, "barrier": {"_count": 1}, "rest": {"_count": 2}, "teachers": {"_count": 2}, "moonlight": {"_count": 1}, "grubby": {"_count": 1}, "Halloween": {"_count": 1}, "photographer": {"_count": 1}, "old": {"_count": 1}, "secret": {"_count": 1}, "magical": {"_count": 1}, "attack": {"_count": 1}, "Slytherin": {"_count": 1}, "enchanted": {"_count": 1}, "Chamber": {"_count": 2}, "voice": {"_count": 1}, "spiders": {"_count": 1}, "fire": {"_count": 1}, "entrance": {"_count": 2}, "messages": {"_count": 1}, "serpents": {"_count": 1}, "last": {"_count": 2}, "class": {"_count": 1}, "first": {"_count": 2}, "real": {"_count": 1}, "hippogriff": {"_count": 1}, "security": {"_count": 2}, "ropes": {"_count": 1}, "window": {"_count": 2}, "door": {"_count": 2}, "intruders": {"_count": 1}, "snake": {"_count": 1}, "Bulgarian": {"_count": 1}, "Snitch": {"_count": 1}, "two": {"_count": 1}, "Portkeys": {"_count": 1}, "number": {"_count": 1}, "Durmstrang": {"_count": 2}, "dragons": {"_count": 2}, "five": {"_count": 1}, "judges": {"_count": 2}, "Beauxbatons": {"_count": 1}, "huge": {"_count": 1}, "water": {"_count": 1}, "ground": {"_count": 1}, "delicious": {"_count": 1}, "cup": {"_count": 1}, "Death": {"_count": 1}, "missing": {"_count": 1}, "golden": {"_count": 2}, "heart": {"_count": 1}, "tapestry": {"_count": 1}, "monocle": {"_count": 1}, "entire": {"_count": 1}, "twins": {"_count": 1}, "boggart": {"_count": 1}, "Hogwarts": {"_count": 1}, "trees": {"_count": 2}, "group": {"_count": 1}, "wizard": {"_count": 2}, "giants": {"_count": 1}, "second": {"_count": 1}, "dummy": {"_count": 1}, "tearoom": {"_count": 1}, "pair": {"_count": 1}, "Dark": {"_count": 2}, "atmosphere": {"_count": 1}, "giant": {"_count": 1}, "front": {"_count": 1}, "ugly": {"_count": 1}, "overflowing": {"_count": 1}, "brains": {"_count": 3}, "tiny": {"_count": 1}, "stone": {"_count": 2}, "archway": {"_count": 2}, "goblin": {"_count": 1}, "remains": {"_count": 1}, "fullgrown": {"_count": 1}, "Dursleys": {"_count": 1}, "Weasleys": {"_count": 1}, "dustbins": {"_count": 1}, "scarlet": {"_count": 1}, "others": {"_count": 2}, "house": {"_count": 1}, "handsome": {"_count": 1}, "Sorting": {"_count": 1}, "Room": {"_count": 1}, "ink": {"_count": 1}, "book": {"_count": 1}, "match": {"_count": 1}, "lone": {"_count": 1}, "Hogs": {"_count": 1}, "Mark": {"_count": 2}, "various": {"_count": 1}, "dumbstruck": {"_count": 1}, "YouKnowWhats": {"_count": 1}, "Patronus": {"_count": 2}, "large": {"_count": 1}, "Seeker": {"_count": 1}, "locket": {"_count": 3}, "blood": {"_count": 1}, "tent": {"_count": 1}, "great": {"_count": 1}, "cottages": {"_count": 1}, "curse": {"_count": 1}, "Boy": {"_count": 1}, "child": {"_count": 1}, "Elder": {"_count": 1}, "common": {"_count": 1}, "shattered": {"_count": 1}, "vaults": {"_count": 1}, "Fidelius": {"_count": 1}, "snowywhite": {"_count": 1}, "dragon": {"_count": 1}, "fountain": {"_count": 1}, "diadem": {"_count": 2}, "Horcrux": {"_count": 2}, "wall": {"_count": 1}, "castle": {"_count": 1}, "Slytherins": {"_count": 1}, "dead": {"_count": 1}, "monstrous": {"_count": 1}, "flayed": {"_count": 1}, "small": {"_count": 1}, "Killing": {"_count": 1}, "spells": {"_count": 1}}, "all": {"_count": 4, "the": {"_count": 2}, "your": {"_count": 1}, "of": {"_count": 1}}, "Dudley": {"_count": 3, "slept": {"_count": 1}, "kept": {"_count": 1}, "sat": {"_count": 1}}, "they": {"_count": 78, "were": {"_count": 21}, "clambered": {"_count": 1}, "learned": {"_count": 1}, "are": {"_count": 3}, "slammed": {"_count": 1}, "could": {"_count": 5}, "sat": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 7}, "stood": {"_count": 7}, "would": {"_count": 1}, "too": {"_count": 1}, "should": {"_count": 1}, "will": {"_count": 1}, "knew": {"_count": 1}, "found": {"_count": 2}, "got": {"_count": 1}, "smashed": {"_count": 1}, "spent": {"_count": 1}, "ate": {"_count": 1}, "ares": {"_count": 1}, "was": {"_count": 1}, "belong": {"_count": 1}, "grudgingly": {"_count": 1}, "swirled": {"_count": 1}, "tell": {"_count": 1}, "get": {"_count": 1}, "slipped": {"_count": 1}, "stopped": {"_count": 1}, "laid": {"_count": 1}, "must": {"_count": 1}, "held": {"_count": 1}, "might": {"_count": 2}, "dreaded": {"_count": 1}, "pitched": {"_count": 1}, "joined": {"_count": 2}, "dangled": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "yer": {"_count": 1, "parents": {"_count": 1}}, "you": {"_count": 49, "was": {"_count": 1}, "bought": {"_count": 1}, "could": {"_count": 1}, "want": {"_count": 1}, "came": {"_count": 1}, "been": {"_count": 1}, "are": {"_count": 12}, "come": {"_count": 1}, "belong": {"_count": 3}, "see": {"_count": 1}, "Ron": {"_count": 2}, "will": {"_count": 2}, "got": {"_count": 3}, "learned": {"_count": 1}, "tripped": {"_count": 1}, "were": {"_count": 7}, "dont": {"_count": 1}, "had": {"_count": 1}, "have": {"_count": 1}, "get": {"_count": 4}, "go": {"_count": 2}, "went": {"_count": 1}}, "to": {"_count": 22, "go": {"_count": 8}, "run": {"_count": 1}, "find": {"_count": 3}, "begin": {"_count": 4}, "hold": {"_count": 1}, "come": {"_count": 2}, "meet": {"_count": 1}, "draw": {"_count": 1}, "look": {"_count": 1}}, "there": {"_count": 17, "was": {"_count": 11}, "were": {"_count": 5}, "is": {"_count": 1}}, "huge": {"_count": 1, "stalactites": {"_count": 1}}, "half": {"_count": 2, "hidden": {"_count": 1}, "of": {"_count": 1}}, "his": {"_count": 16, "mother": {"_count": 2}, "new": {"_count": 1}, "fellow": {"_count": 1}, "feet": {"_count": 1}, "hair": {"_count": 1}, "office": {"_count": 1}, "own": {"_count": 1}, "robes": {"_count": 1}, "loyalty": {"_count": 1}, "body": {"_count": 1}, "mummy": {"_count": 1}, "ancestors": {"_count": 1}, "friends": {"_count": 1}, "rage": {"_count": 1}, "head": {"_count": 1}}, "YouKnowWho": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 44, "was": {"_count": 9}, "broke": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 7}, "had": {"_count": 4}, "sat": {"_count": 2}, "stood": {"_count": 4}, "went": {"_count": 2}, "tried": {"_count": 1}, "Potter": {"_count": 3}, "and": {"_count": 5}, "knew": {"_count": 1}, "crouched": {"_count": 1}, "now": {"_count": 1}, "could": {"_count": 1}, "saw": {"_count": 1}}, "shall": {"_count": 1, "I": {"_count": 1}}, "anything": {"_count": 1, "was": {"_count": 1}}, "would": {"_count": 3, "you": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "hed": {"_count": 7, "be": {"_count": 1}, "been": {"_count": 1}, "gone": {"_count": 1}, "have": {"_count": 1}, "got": {"_count": 1}, "seen": {"_count": 1}, "tried": {"_count": 1}}, "Snape": {"_count": 9, "stood": {"_count": 3}, "had": {"_count": 2}, "went": {"_count": 1}, "sat": {"_count": 1}, "is": {"_count": 1}, "was": {"_count": 1}}, "their": {"_count": 3, "breath": {"_count": 1}, "Heads": {"_count": 1}, "living": {"_count": 1}}, "Professor": {"_count": 7, "McGonagall": {"_count": 2}, "Dumbledore": {"_count": 1}, "Trelawney": {"_count": 3}, "Flitwick": {"_count": 1}}, "it": {"_count": 66, "lay": {"_count": 1}, "had": {"_count": 16}, "is": {"_count": 14}, "keeps": {"_count": 2}, "stood": {"_count": 2}, "was": {"_count": 9}, "began": {"_count": 1}, "remained": {"_count": 1}, "would": {"_count": 1}, "will": {"_count": 1}, "yawned": {"_count": 1}, "clashed": {"_count": 1}, "struck": {"_count": 1}, "held": {"_count": 1}, "said": {"_count": 1}, "swirled": {"_count": 1}, "shattered": {"_count": 1}, "came": {"_count": 3}, "joined": {"_count": 2}, "coiled": {"_count": 1}, "resolved": {"_count": 1}, "solidified": {"_count": 1}, "rested": {"_count": 1}, "vanishes": {"_count": 1}, "fell": {"_count": 1}}, "I": {"_count": 23, "am": {"_count": 7}, "leave": {"_count": 1}, "was": {"_count": 3}, "got": {"_count": 2}, "went": {"_count": 2}, "live": {"_count": 1}, "think": {"_count": 1}, "believe": {"_count": 1}, "tell": {"_count": 1}, "used": {"_count": 1}, "needed": {"_count": 1}, "had": {"_count": 1}, "hid": {"_count": 1}}, "your": {"_count": 4, "loyalties": {"_count": 1}, "mothers": {"_count": 1}, "nephew": {"_count": 1}, "parents": {"_count": 1}}, "have": {"_count": 5, "you": {"_count": 4}, "those": {"_count": 1}}, "Hermione": {"_count": 6, "was": {"_count": 2}, "had": {"_count": 3}, "pointed": {"_count": 1}}, "Dumbledore": {"_count": 11, "lived": {"_count": 2}, "stood": {"_count": 1}, "went": {"_count": 1}, "and": {"_count": 2}, "is": {"_count": 1}, "Malfoy": {"_count": 1}, "lay": {"_count": 1}, "had": {"_count": 2}}, "is": {"_count": 11, "it": {"_count": 5}, "dear": {"_count": 1}, "he": {"_count": 3}, "Nymphadora": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "its": {"_count": 4, "hidden": {"_count": 2}, "got": {"_count": 1}, "landed": {"_count": 1}}, "Quirrell": {"_count": 1, "had": {"_count": 1}}, "Im": {"_count": 3, "going": {"_count": 1}, "supposed": {"_count": 1}, "standing": {"_count": 1}}, "Voldemort": {"_count": 10, "was": {"_count": 7}, "had": {"_count": 2}, "is": {"_count": 1}}, "youre": {"_count": 9, "going": {"_count": 4}, "facing": {"_count": 1}, "sleeping": {"_count": 1}, "sticking": {"_count": 1}, "putting": {"_count": 1}, "from": {"_count": 1}}, "Gilderoy": {"_count": 1, "Lockhart": {"_count": 1}}, "Ginny": {"_count": 1, "was": {"_count": 1}}, "flames": {"_count": 1, "suddenly": {"_count": 1}}, "Rons": {"_count": 3, "mood": {"_count": 1}, "head": {"_count": 1}, "enormous": {"_count": 1}}, "we": {"_count": 16, "can": {"_count": 3}, "think": {"_count": 1}, "was": {"_count": 2}, "wanted": {"_count": 1}, "went": {"_count": 1}, "stick": {"_count": 1}, "were": {"_count": 2}, "sent": {"_count": 1}, "left": {"_count": 1}, "know": {"_count": 1}, "are": {"_count": 1}, "meet": {"_count": 1}}, "people": {"_count": 2, "sat": {"_count": 1}, "had": {"_count": 1}}, "she": {"_count": 19, "had": {"_count": 5}, "is": {"_count": 3}, "bred": {"_count": 1}, "was": {"_count": 3}, "comes": {"_count": 1}, "lay": {"_count": 2}, "thrashed": {"_count": 1}, "ignored": {"_count": 1}, "sat": {"_count": 1}, "revolved": {"_count": 1}}, "Filch": {"_count": 2, "has": {"_count": 1}, "the": {"_count": 1}}, "around": {"_count": 1, "twenty": {"_count": 1}}, "Ron": {"_count": 12, "and": {"_count": 6}, "was": {"_count": 1}, "slept": {"_count": 1}, "could": {"_count": 1}, "stood": {"_count": 2}, "made": {"_count": 1}}, "were": {"_count": 10, "going": {"_count": 6}, "you": {"_count": 2}, "headed": {"_count": 1}, "making": {"_count": 1}}, "Adrian": {"_count": 1, "Pucey": {"_count": 1}}, "Justin": {"_count": 1, "might": {"_count": 1}}, "lessons": {"_count": 1, "were": {"_count": 1}}, "so": {"_count": 2, "many": {"_count": 1}, "recently": {"_count": 1}}, "theyd": {"_count": 1, "locked": {"_count": 1}}, "Mrs": {"_count": 2, "Norris": {"_count": 1}, "Weasley": {"_count": 1}}, "Myrtle": {"_count": 1, "was": {"_count": 1}}, "things": {"_count": 1, "were": {"_count": 1}}, "Hagrid": {"_count": 4, "still": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}}, "watchful": {"_count": 1, "sentries": {"_count": 1}}, "youve": {"_count": 4, "gone": {"_count": 3}, "been": {"_count": 1}}, "was": {"_count": 4, "Ginny": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "two": {"_count": 2, "enormous": {"_count": 1}, "men": {"_count": 1}}, "Voldemorts": {"_count": 2, "curse": {"_count": 1}, "father": {"_count": 1}}, "our": {"_count": 3, "eldest": {"_count": 1}, "voices": {"_count": 2}}, "that": {"_count": 3, "maniacs": {"_count": 1}, "evil": {"_count": 1}, "was": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "a": {"_count": 33, "large": {"_count": 4}, "small": {"_count": 3}, "particularly": {"_count": 1}, "wide": {"_count": 1}, "lot": {"_count": 1}, "cobwebby": {"_count": 1}, "door": {"_count": 1}, "shallow": {"_count": 1}, "couple": {"_count": 1}, "man": {"_count": 1}, "lock": {"_count": 1}, "line": {"_count": 1}, "dim": {"_count": 1}, "gaggle": {"_count": 1}, "single": {"_count": 1}, "camp": {"_count": 1}, "rubyencrusted": {"_count": 1}, "series": {"_count": 1}, "number": {"_count": 1}, "portrait": {"_count": 1}, "group": {"_count": 1}, "dozen": {"_count": 1}, "great": {"_count": 1}, "hard": {"_count": 1}, "most": {"_count": 1}, "bright": {"_count": 1}, "wand": {"_count": 1}, "suit": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "at": {"_count": 3, "least": {"_count": 2}, "the": {"_count": 1}}, "most": {"_count": 3, "of": {"_count": 3}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "Fred": {"_count": 5, "and": {"_count": 3}, "George": {"_count": 1}, "had": {"_count": 1}}, "Malfoy": {"_count": 6, "was": {"_count": 2}, "had": {"_count": 2}, "keeps": {"_count": 2}}, "many": {"_count": 1, "of": {"_count": 1}}, "this": {"_count": 4, "story": {"_count": 1}, "letter": {"_count": 1}, "Room": {"_count": 1}, "necklace": {"_count": 1}}, "Scabbers": {"_count": 1, "had": {"_count": 1}}, "hes": {"_count": 8, "concerned": {"_count": 1}, "sleeping": {"_count": 2}, "gone": {"_count": 1}, "going": {"_count": 1}, "actually": {"_count": 1}, "been": {"_count": 1}, "doing": {"_count": 1}}, "Sirius": {"_count": 9, "and": {"_count": 1}, "is": {"_count": 4}, "was": {"_count": 1}, "had": {"_count": 3}}, "Pettigrew": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 3, "case": {"_count": 1}, "Hogwarts": {"_count": 2}}, "Harrys": {"_count": 2, "bedroom": {"_count": 1}, "moonstone": {"_count": 1}}, "do": {"_count": 5, "you": {"_count": 4}, "they": {"_count": 1}}, "are": {"_count": 16, "you": {"_count": 8}, "the": {"_count": 2}, "we": {"_count": 2}, "Mr": {"_count": 1}, "they": {"_count": 2}, "these": {"_count": 1}}, "each": {"_count": 1, "family": {"_count": 1}}, "everyone": {"_count": 3, "was": {"_count": 3}}, "exactly": {"_count": 3, "are": {"_count": 2}, "Voldemort": {"_count": 1}}, "great": {"_count": 1, "ugly": {"_count": 1}}, "four": {"_count": 1, "of": {"_count": 1}}, "Cedric": {"_count": 1, "had": {"_count": 1}}, "had": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "shes": {"_count": 2, "got": {"_count": 2}}, "anyone": {"_count": 1, "could": {"_count": 1}}, "sunk": {"_count": 1, "in": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}, "Barty": {"_count": 2, "Crouch": {"_count": 2}}, "Wormtail": {"_count": 1, "had": {"_count": 1}}, "other": {"_count": 2, "humans": {"_count": 1}, "people": {"_count": 1}}, "small": {"_count": 1, "animals": {"_count": 1}}, "Cedrics": {"_count": 1, "body": {"_count": 1}}, "Wormtails": {"_count": 1, "dagger": {"_count": 1}}, "Moodys": {"_count": 1, "face": {"_count": 1}}, "Winky": {"_count": 1, "and": {"_count": 1}}, "Karkaroff": {"_count": 1, "was": {"_count": 1}}, "Siriuss": {"_count": 3, "right": {"_count": 1}, "head": {"_count": 1}, "hair": {"_count": 1}}, "didja": {"_count": 1, "get": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "returned": {"_count": 2, "coins": {"_count": 2}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "unwary": {"_count": 1, "elves": {"_count": 1}}, "wed": {"_count": 2, "spoken": {"_count": 1}, "been": {"_count": 1}}, "twentyeight": {"_count": 1, "people": {"_count": 1}}, "various": {"_count": 1, "people": {"_count": 1}}, "Olympes": {"_count": 1, "school": {"_count": 1}}, "students": {"_count": 2, "were": {"_count": 2}}, "yeh": {"_count": 1, "want": {"_count": 1}}, "St": {"_count": 1, "": {"_count": 1}}, "rows": {"_count": 1, "of": {"_count": 1}}, "Kreacher": {"_count": 4, "curled": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "served": {"_count": 1}}, "dyou": {"_count": 1, "want": {"_count": 1}}, "my": {"_count": 3, "cousin": {"_count": 1}, "talents": {"_count": 1}, "mum": {"_count": 1}}, "dinner": {"_count": 1, "was": {"_count": 1}}, "Umbridge": {"_count": 1, "had": {"_count": 1}}, "Umbridges": {"_count": 2, "office": {"_count": 2}}, "Grawp": {"_count": 1, "lay": {"_count": 1}}, "jets": {"_count": 1, "from": {"_count": 1}}, "nothing": {"_count": 1, "was": {"_count": 1}}, "Nevilles": {"_count": 1, "hand": {"_count": 1}}, "Neville": {"_count": 2, "was": {"_count": 1}, "now": {"_count": 1}}, "Tonks": {"_count": 1, "lay": {"_count": 1}}, "who": {"_count": 1, "are": {"_count": 1}}, "Bellatrix": {"_count": 1, "had": {"_count": 1}}, "MadEye": {"_count": 1, "was": {"_count": 1}}, "something": {"_count": 1, "darkly": {"_count": 1}}, "her": {"_count": 3, "mouth": {"_count": 1}, "neck": {"_count": 1}, "parents": {"_count": 1}}, "those": {"_count": 1, "brains": {"_count": 1}}, "Mundungus": {"_count": 1, "had": {"_count": 1}}, "re": {"_count": 1, "you": {"_count": 1}}, "youd": {"_count": 1, "got": {"_count": 1}}, "has": {"_count": 1, "it": {"_count": 1}}, "thankfully": {"_count": 1, "neither": {"_count": 1}}, "Malfoys": {"_count": 1, "going": {"_count": 1}}, "Dobby": {"_count": 2, "had": {"_count": 1}, "s": {"_count": 1}}, "Slughorn": {"_count": 1, "came": {"_count": 1}}, "eight": {"_count": 1, "milky": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "will": {"_count": 2, "you": {"_count": 2}}, "Narcissa": {"_count": 1, "sat": {"_count": 1}}, "laughing": {"_count": 1, "and": {"_count": 1}}, "Georges": {"_count": 1, "ear": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "everybody": {"_count": 1, "sat": {"_count": 1}}, "seconds": {"_count": 1, "before": {"_count": 1}}, "Bill": {"_count": 2, "and": {"_count": 2}}, "Luna": {"_count": 1, "sat": {"_count": 1}}, "theyll": {"_count": 2, "expect": {"_count": 1}, "have": {"_count": 1}}, "else": {"_count": 1, "is": {"_count": 1}}, "Master": {"_count": 1, "Reguluss": {"_count": 1}}, "queues": {"_count": 1, "were": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "sleet": {"_count": 1, "pounded": {"_count": 1}}, "snow": {"_count": 1, "half": {"_count": 1}}, "Bowman": {"_count": 1, "Wright": {"_count": 1}}, "Bathilda": {"_count": 1, "lived": {"_count": 1}}, "but": {"_count": 2, "Mum": {"_count": 1}, "Im": {"_count": 1}}, "Griphook": {"_count": 1, "was": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Professors": {"_count": 1, "McGonagall": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "everyones": {"_count": 1, "been": {"_count": 1}}, "bursts": {"_count": 1, "of": {"_count": 1}}, "dwell": {"_count": 1, "the": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "James": {"_count": 1, "Sirius": {"_count": 1}}}, "unwelcome": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "badly": {"_count": 1}}, "was": {"_count": 1, "out": {"_count": 1}}, "thoughts": {"_count": 1, "slunk": {"_count": 1}}, "conclusion": {"_count": 1, "when": {"_count": 1}}}, "busy": {"_count": 96, "rummaging": {"_count": 1, "in": {"_count": 1}}, "writing": {"_count": 1, "rude": {"_count": 1}}, "with": {"_count": 9, "its": {"_count": 1}, "the": {"_count": 2}, "their": {"_count": 1}, "schoolwork": {"_count": 1}, "": {"_count": 1}, "her": {"_count": 1}, "decanters": {"_count": 1}, "preparations": {"_count": 1}}, "what": {"_count": 1, "with": {"_count": 1}}, "looking": {"_count": 1, "over": {"_count": 1}}, "getting": {"_count": 1, "away": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 2, "five": {"_count": 1}, "sleep": {"_count": 1}}, "at": {"_count": 8, "the": {"_count": 5}, "ze": {"_count": 1}, "work": {"_count": 1}, "Rons": {"_count": 1}}, "heaving": {"_count": 1, "all": {"_count": 1}}, "feeling": {"_count": 1, "sorry": {"_count": 1}}, "in": {"_count": 3, "our": {"_count": 1}, "letting": {"_count": 1}, "the": {"_count": 1}}, "talking": {"_count": 1, "then": {"_count": 1}}, "Barty": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "Winky": {"_count": 1}, "Mrs": {"_count": 1}, "Slughorn": {"_count": 1}}, "Ludo": {"_count": 1, "said": {"_count": 1}}, "road": {"_count": 1, "and": {"_count": 1}}, "Hag": {"_count": 1, "Hermione": {"_count": 1}}, "very": {"_count": 1, "difficult": {"_count": 1}}, "building": {"_count": 1, "a": {"_count": 1}}, "screwing": {"_count": 1, "up": {"_count": 1}}, "staring": {"_count": 3, "at": {"_count": 3}}, "to": {"_count": 4, "Harry": {"_count": 1}, "linger": {"_count": 1}, "come": {"_count": 1}, "call": {"_count": 1}}, "cheering": {"_count": 1, "Harry": {"_count": 1}}, "seeing": {"_count": 1, "whether": {"_count": 1}}, "Potter": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "checking": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "now": {"_count": 1, "weve": {"_count": 1}}, "day": {"_count": 1, "tomorrow": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "cooing": {"_count": 1, "over": {"_count": 1}}, "preventing": {"_count": 1, "the": {"_count": 1}}, "swapping": {"_count": 1, "Chocolate": {"_count": 1}}, "putting": {"_count": 1, "copies": {"_count": 1}}, "keeping": {"_count": 1, "an": {"_count": 1}}, "dwelling": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 1, "Hermione": {"_count": 1}}, "town": {"_count": 1, "then": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "Gryffindor": {"_count": 1, "common": {"_count": 1}}, "watching": {"_count": 1, "Hagrid": {"_count": 1}}, "and": {"_count": 2, "tense": {"_count": 1}, "you": {"_count": 1}}, "smearing": {"_count": 1, "ink": {"_count": 1}}, "relentless": {"_count": 1, "ticking": {"_count": 1}}, "man": {"_count": 1, "so": {"_count": 1}}, "digesting": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "detention": {"_count": 1}}, "describing": {"_count": 1, "each": {"_count": 1}}, "nobody": {"_count": 1, "was": {"_count": 1}}, "time": {"_count": 1, "while": {"_count": 1}}, "being": {"_count": 1, "grumpy": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "unwrapping": {"_count": 1, "presents": {"_count": 1}}, "saving": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "got": {"_count": 1}}, "collecting": {"_count": 1, "wood": {"_count": 1}}, "plotting": {"_count": 1, "his": {"_count": 1}}, "undoing": {"_count": 1, "the": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "rummaging": {"_count": 18, "in": {"_count": 11, "his": {"_count": 5}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "it": {"_count": 1}, "her": {"_count": 1}}, "for": {"_count": 2, "quills": {"_count": 1}, "something": {"_count": 1}}, "around": {"_count": 1, "under": {"_count": 1}}, "anxiously": {"_count": 1, "in": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "other": {"_count": 1113, "end": {"_count": 19, "of": {"_count": 12}, "": {"_count": 4}, "in": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}}, "two": {"_count": 61, "": {"_count": 15}, "had": {"_count": 1}, "because": {"_count": 1}, "about": {"_count": 1}, "during": {"_count": 1}, "agreed": {"_count": 1}, "stared": {"_count": 1}, "followed": {"_count": 1}, "squinted": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 3}, "TRIWIZARD": {"_count": 1}, "quivering": {"_count": 1}, "shadowy": {"_count": 1}, "as": {"_count": 1}, "goodbye": {"_count": 1}, "looked": {"_count": 1}, "completely": {"_count": 1}, "advises": {"_count": 1}, "jostling": {"_count": 1}, "when": {"_count": 1}, "in": {"_count": 2}, "nodded": {"_count": 1}, "for": {"_count": 1}, "an": {"_count": 1}, "out": {"_count": 1}, "were": {"_count": 2}, "gaped": {"_count": 1}, "seemed": {"_count": 1}, "up": {"_count": 1}, "thundering": {"_count": 1}, "could": {"_count": 1}, "at": {"_count": 1}, "showed": {"_count": 1}, "insisted": {"_count": 1}, "into": {"_count": 1}, "now": {"_count": 1}, "prisoners": {"_count": 1}, "then": {"_count": 1}, "but": {"_count": 1}, "beneath": {"_count": 1}, "back": {"_count": 1}}, "hand": {"_count": 58, "hed": {"_count": 1}, "was": {"_count": 5}, "favored": {"_count": 1}, "Malfoys": {"_count": 1}, "clapped": {"_count": 1}, "greeted": {"_count": 1}, "big": {"_count": 1}, "Harry": {"_count": 2}, "I": {"_count": 1}, "Ginny": {"_count": 1}, "and": {"_count": 3}, "wanted": {"_count": 1}, "the": {"_count": 2}, "there": {"_count": 1}, "she": {"_count": 1}, "collided": {"_count": 1}, "punching": {"_count": 1}, "their": {"_count": 2}, "had": {"_count": 3}, "allowing": {"_count": 1}, "looked": {"_count": 3}, "": {"_count": 3}, "beamed": {"_count": 1}, "he": {"_count": 3}, "nobody": {"_count": 1}, "Its": {"_count": 1}, "successfully": {"_count": 1}, "they": {"_count": 2}, "sang": {"_count": 1}, "kept": {"_count": 1}, "know": {"_count": 1}, "thought": {"_count": 1}, "a": {"_count": 1}, "knew": {"_count": 1}, "did": {"_count": 1}, "inside": {"_count": 1}, "but": {"_count": 1}, "refused": {"_count": 1}, "it": {"_count": 1}, "even": {"_count": 1}}, "day": {"_count": 13, "and": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 5}, "for": {"_count": 1}, "No": {"_count": 1}, "even": {"_count": 1}, "Arthur": {"_count": 1}, "How": {"_count": 1}, "\u2018Where": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "relatives": {"_count": 1, "he": {"_count": 1}}, "seeming": {"_count": 1, "to": {"_count": 1}}, "darkly": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 4, "if": {"_count": 1}, "though": {"_count": 3}}, "little": {"_count": 2, "shops": {"_count": 2}}, "not": {"_count": 3, "sounding": {"_count": 1}, "near": {"_count": 1}, "knowing": {"_count": 1}}, "sort": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "": {"_count": 132, ".": {"_count": 128}, "!": {"_count": 2}, "?": {"_count": 2}}, "twin": {"_count": 3, "": {"_count": 2}, "did": {"_count": 1}}, "strange": {"_count": 1, "things": {"_count": 1}}, "boys": {"_count": 3, "": {"_count": 1}, "laughed": {"_count": 2}}, "side": {"_count": 110, "its": {"_count": 1}, "Percy": {"_count": 1}, "of": {"_count": 71}, "": {"_count": 10}, "in": {"_count": 1}, "Mr": {"_count": 1}, "and": {"_count": 5}, "the": {"_count": 1}, "was": {"_count": 2}, "while": {"_count": 1}, "crossed": {"_count": 1}, "a": {"_count": 2}, "but": {"_count": 1}, "Ginny": {"_count": 1}, "blood": {"_count": 1}, "where": {"_count": 1}, "any": {"_count": 1}, "can": {"_count": 1}, "because": {"_count": 1}, "have": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 2}, "It": {"_count": 1}}, "students": {"_count": 8, "with": {"_count": 1}, "two": {"_count": 1}, "and": {"_count": 1}, "walking": {"_count": 1}, "surged": {"_count": 1}, "went": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}}, "teachers": {"_count": 19, "smiles": {"_count": 1}, "listening": {"_count": 1}, "had": {"_count": 1}, "thought": {"_count": 1}, "": {"_count": 4}, "were": {"_count": 1}, "did": {"_count": 3}, "in": {"_count": 1}, "Aha": {"_count": 1}, "the": {"_count": 1}, "none": {"_count": 1}, "wont": {"_count": 1}, "have": {"_count": 1}, "are": {"_count": 1}}, "and": {"_count": 31, "Harry": {"_count": 3}, "try": {"_count": 2}, "knocking": {"_count": 1}, "pretending": {"_count": 1}, "started": {"_count": 1}, "bowed": {"_count": 1}, "when": {"_count": 2}, "shook": {"_count": 2}, "devoted": {"_count": 1}, "grasped": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}, "Divided": {"_count": 1}, "Vickys": {"_count": 1}, "felt": {"_count": 1}, "helped": {"_count": 1}, "ordered": {"_count": 1}, "to": {"_count": 1}, "tapped": {"_count": 1}, "I": {"_count": 1}, "by": {"_count": 1}, "said": {"_count": 1}, "there": {"_count": 1}, "now": {"_count": 1}, "began": {"_count": 1}, "for": {"_count": 1}}, "school": {"_count": 1, "owls": {"_count": 1}}, "Gryffindors": {"_count": 4, "hurried": {"_count": 1}, "": {"_count": 2}, "where": {"_count": 1}}, "Slytherins": {"_count": 4, "joined": {"_count": 1}, "cheered": {"_count": 1}, "had": {"_count": 1}, "we": {"_count": 1}}, "three": {"_count": 6, "to": {"_count": 1}, "wheeled": {"_count": 1}, "one": {"_count": 1}, "looked": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "team": {"_count": 3, "from": {"_count": 1}, "": {"_count": 2}}, "teams": {"_count": 2, "Seeker": {"_count": 1}, "have": {"_count": 1}}, "way": {"_count": 19, "slipped": {"_count": 1}, "mouth": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 2}, "disentangling": {"_count": 1}, "": {"_count": 6}, "you": {"_count": 1}, "thank": {"_count": 1}, "back": {"_count": 1}, "they": {"_count": 1}, "round": {"_count": 2}, "said": {"_count": 1}}, "they": {"_count": 3, "all": {"_count": 1}, "crisscrossed": {"_count": 1}, "stowed": {"_count": 1}}, "a": {"_count": 6, "G": {"_count": 1}, "thick": {"_count": 1}, "handsome": {"_count": 1}, "year": {"_count": 1}, "sea": {"_count": 1}, "filthy": {"_count": 1}}, "people": {"_count": 28, "in": {"_count": 1}, "didnt": {"_count": 1}, "": {"_count": 6}, "have": {"_count": 1}, "called": {"_count": 1}, "all": {"_count": 1}, "about": {"_count": 1}, "into": {"_count": 1}, "wouldnt": {"_count": 1}, "had": {"_count": 1}, "who": {"_count": 1}, "do": {"_count": 1}, "to": {"_count": 1}, "anything": {"_count": 1}, "on": {"_count": 1}, "awake": {"_count": 1}, "cant": {"_count": 1}, "were": {"_count": 3}, "within": {"_count": 1}, "relax": {"_count": 1}, "being": {"_count": 1}}, "pairs": {"_count": 3, "of": {"_count": 1}, "trying": {"_count": 1}, "at": {"_count": 1}}, "noses": {"_count": 1, "like": {"_count": 1}}, "brothers": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "than": {"_count": 33, "Albus": {"_count": 2}, "Lord": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 3}, "breaking": {"_count": 1}, "Rubeus": {"_count": 1}, "swirling": {"_count": 1}, "Dobby": {"_count": 1}, "the": {"_count": 4}, "YouKnowWho": {"_count": 1}, "him": {"_count": 1}, "Dudley": {"_count": 2}, "Harry": {"_count": 3}, "bilge": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 2}, "Rita": {"_count": 1}, "Professor": {"_count": 1}, "\u2018Outstanding": {"_count": 1}, "usual": {"_count": 1}, "guard": {"_count": 1}, "Runcorn": {"_count": 1}, "yourself": {"_count": 1}}, "things": {"_count": 8, "guarding": {"_count": 1}, "Id": {"_count": 1}, "even": {"_count": 1}, "he": {"_count": 1}, "or": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "around": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "stupid": {"_count": 1, "first": {"_count": 1}}, "very": {"_count": 2, "scared": {"_count": 1}, "much": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 1}, "the": {"_count": 1}, "once": {"_count": 1}}, "choice": {"_count": 1, "": {"_count": 1}}, "knight": {"_count": 1, "was": {"_count": 1}}, "voices": {"_count": 1, "maybe": {"_count": 1}}, "ways": {"_count": 5, "of": {"_count": 3}, "he": {"_count": 1}, "in": {"_count": 1}}, "prefects": {"_count": 1, "My": {"_count": 1}}, "Harry": {"_count": 12, "heard": {"_count": 2}, "and": {"_count": 1}, "stood": {"_count": 1}, "watched": {"_count": 1}, "said": {"_count": 1}, "convinced": {"_count": 1}, "Harry": {"_count": 1}, "leapt": {"_count": 1}, "wanted": {"_count": 1}, "knew": {"_count": 1}, "felt": {"_count": 1}}, "but": {"_count": 5, "he": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "otherwise": {"_count": 1}, "they": {"_count": 1}}, "whitefaced": {"_count": 1, "": {"_count": 1}}, "second": {"_count": 1, "year": {"_count": 1}}, "balls": {"_count": 1, "for": {"_count": 1}}, "ghosts": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "founders": {"_count": 3, "knew": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "I": {"_count": 1, "put": {"_count": 1}}, "threatening": {"_count": 1, "stares": {"_count": 1}}, "Bludger": {"_count": 1, "from": {"_count": 1}}, "protective": {"_count": 1, "devices": {"_count": 1}}, "Gryffindor": {"_count": 1, "boys": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "powers": {"_count": 1, "Potters": {"_count": 1}}, "what": {"_count": 3, "terrible": {"_count": 1}, "was": {"_count": 1}, "if": {"_count": 1}}, "books": {"_count": 1, "were": {"_count": 1}}, "monster": {"_count": 1, "that": {"_count": 1}}, "teacher": {"_count": 1, "in": {"_count": 1}}, "monsters": {"_count": 1, "didnt": {"_count": 1}}, "on": {"_count": 3, "their": {"_count": 1}, "the": {"_count": 1}, "principle": {"_count": 1}}, "reason": {"_count": 1, "": {"_count": 1}}, "week": {"_count": 1, "trying": {"_count": 1}}, "eleven": {"_count": 1, "governors": {"_count": 1}}, "by": {"_count": 2, "magic": {"_count": 1}, "Bill": {"_count": 1}}, "time": {"_count": 3, "of": {"_count": 1}, "this": {"_count": 1}, "because": {"_count": 1}}, "best": {"_count": 2, "friend": {"_count": 2}}, "was": {"_count": 9, "an": {"_count": 1}, "tall": {"_count": 1}, "clearly": {"_count": 1}, "large": {"_count": 1}, "covered": {"_count": 1}, "a": {"_count": 1}, "backing": {"_count": 1}, "that": {"_count": 1}, "Neville": {"_count": 1}}, "dogs": {"_count": 1, "Marge": {"_count": 1}}, "the": {"_count": 5, "magical": {"_count": 1}, "temptation": {"_count": 1}, "remnants": {"_count": 1}, "boundless": {"_count": 1}, "old": {"_count": 1}}, "er": {"_count": 2, "very": {"_count": 1}, "charges": {"_count": 1}}, "guests": {"_count": 1, "funny": {"_count": 1}}, "players": {"_count": 3, "face": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "locked": {"_count": 1, "together": {"_count": 1}}, "direction": {"_count": 3, "as": {"_count": 1}, "down": {"_count": 1}, "trailed": {"_count": 1}}, "in": {"_count": 9, "a": {"_count": 1}, "midair": {"_count": 1}, "the": {"_count": 5}, "public": {"_count": 1}, "cages": {"_count": 1}}, "Snape": {"_count": 1, "wouldnt": {"_count": 1}}, "benefits": {"_count": 1, "too": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "classes": {"_count": 1, "": {"_count": 1}}, "peoples": {"_count": 6, "pets": {"_count": 1}, "business": {"_count": 1}, "only": {"_count": 1}, "memories": {"_count": 1}, "company": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 10, "the": {"_count": 1}, "what": {"_count": 1}, "a": {"_count": 4}, "neither": {"_count": 1}, "almost": {"_count": 1}, "more": {"_count": 1}, "several": {"_count": 1}}, "ear": {"_count": 1, "": {"_count": 1}}, "pictures": {"_count": 1, "wanted": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 3, "Harry": {"_count": 1}, "evening": {"_count": 1}, "Death": {"_count": 1}}, "behind": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "broom": {"_count": 1, "he": {"_count": 1}}, "Beater": {"_count": 1, "Bole": {"_count": 1}}, "clutching": {"_count": 1, "their": {"_count": 1}}, "They": {"_count": 1, "had": {"_count": 1}}, "then": {"_count": 7, "followed": {"_count": 1}, "Harry": {"_count": 1}, "ducked": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "leaving": {"_count": 1}}, "headmaster": {"_count": 3, "would": {"_count": 1}, "or": {"_count": 2}}, "rats": {"_count": 1, "": {"_count": 1}}, "student": {"_count": 2, "": {"_count": 1}, "would": {"_count": 1}}, "men": {"_count": 2, "see": {"_count": 1}, "by": {"_count": 1}}, "bank": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 6, "he": {"_count": 1}, "": {"_count": 3}, "Prime": {"_count": 1}, "until": {"_count": 1}}, "reaching": {"_count": 1, "out": {"_count": 1}}, "word": {"_count": 1, "for": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "each": {"_count": 2, "attempting": {"_count": 1}, "scarlet": {"_count": 1}}, "departments": {"_count": 1, "too": {"_count": 1}}, "countries": {"_count": 1, "": {"_count": 1}}, "Hogwarts": {"_count": 3, "students": {"_count": 1}, "champion": {"_count": 1}, "wrongdoers": {"_count": 1}}, "wizarding": {"_count": 2, "schools": {"_count": 2}}, "takers": {"_count": 1, "": {"_count": 1}}, "words": {"_count": 10, "they": {"_count": 3}, "I": {"_count": 1}, "it": {"_count": 1}, "at": {"_count": 1}, "finish": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "Ministry": {"_count": 5, "wizards": {"_count": 2}, "members": {"_count": 1}, "departments": {"_count": 1}, "workers": {"_count": 1}}, "step": {"_count": 3, "": {"_count": 3}}, "one": {"_count": 8, "was": {"_count": 1}, "rather": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "George": {"_count": 1}, "and": {"_count": 1}, "safe": {"_count": 1}, "how": {"_count": 1}}, "voice": {"_count": 1, "a": {"_count": 1}}, "first": {"_count": 2, "years": {"_count": 2}}, "Durmstrang": {"_count": 2, "boys": {"_count": 1}, "students": {"_count": 1}}, "Slytherin": {"_count": 1, "girls": {"_count": 1}}, "champions": {"_count": 13, "were": {"_count": 3}, "said": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 2}, "sir": {"_count": 1}, "merpeople": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "tasks": {"_count": 1, "are": {"_count": 1}}, "elves": {"_count": 2, "will": {"_count": 1}, "and": {"_count": 1}}, "presents": {"_count": 1, "were": {"_count": 1}}, "staff": {"_count": 2, "tables": {"_count": 1}, "members": {"_count": 1}}, "tables": {"_count": 1, "had": {"_count": 1}}, "tightly": {"_count": 1, "in": {"_count": 1}}, "though": {"_count": 1, "oddly": {"_count": 1}}, "extreme": {"_count": 1, "where": {"_count": 1}}, "heads": {"_count": 1, "see": {"_count": 1}}, "toilet": {"_count": 1, "in": {"_count": 1}}, "perhaps": {"_count": 2, "yet": {"_count": 1}, "": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "stuff": {"_count": 2, "on": {"_count": 1}, "bent": {"_count": 1}}, "wizard": {"_count": 4, "on": {"_count": 1}, "": {"_count": 1}, "has": {"_count": 1}, "although": {"_count": 1}}, "supporters": {"_count": 1, "": {"_count": 1}}, "occasions": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "matters": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "havent": {"_count": 1}}, "arm": {"_count": 2, "Wormtail": {"_count": 1}, "": {"_count": 1}}, "humans": {"_count": 1, "were": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 2, "a": {"_count": 1}, "driving": {"_count": 1}}, "Death": {"_count": 4, "Eaters": {"_count": 4}}, "ingredients": {"_count": 1, "were": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 4, "regurgitate": {"_count": 1}, "read": {"_count": 1}, "Harrys": {"_count": 1}, "Luna": {"_count": 1}}, "such": {"_count": 1, "forms": {"_count": 1}}, "with": {"_count": 4, "the": {"_count": 3}, "their": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "miserable": {"_count": 2, "feeling": {"_count": 1}, "subject": {"_count": 1}}, "world": {"_count": 1, "the": {"_count": 1}}, "large": {"_count": 1, "round": {"_count": 1}}, "portraits": {"_count": 2, "awoke": {"_count": 1}, "with": {"_count": 1}}, "plans": {"_count": 2, "too": {"_count": 1}, "": {"_count": 1}}, "members": {"_count": 4, "of": {"_count": 4}}, "telling": {"_count": 1, "him": {"_count": 1}}, "reasons": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "creatures": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "happy": {"_count": 1, "faces": {"_count": 1}}, "articles": {"_count": 1, "inside": {"_count": 1}}, "Houses": {"_count": 1, "eyeing": {"_count": 1}}, "glumly": {"_count": 1, "": {"_count": 1}}, "night": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "queries": {"_count": 1, "we": {"_count": 1}}, "commitments": {"_count": 1, "": {"_count": 1}}, "leg": {"_count": 1, "her": {"_count": 1}}, "bit": {"_count": 2, "of": {"_count": 1}, "as": {"_count": 1}}, "pub": {"_count": 1, "you": {"_count": 1}}, "thing": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 1}, "often": {"_count": 1}}, "gargoyle": {"_count": 1, "in": {"_count": 1}}, "post": {"_count": 1, "owls": {"_count": 1}}, "idiots": {"_count": 1, "arent": {"_count": 1}}, "explanation": {"_count": 3, "": {"_count": 1}, "available": {"_count": 1}, "imagined": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 2}, "long": {"_count": 1}}, "houseelves": {"_count": 4, "": {"_count": 2}, "when": {"_count": 1}, "could": {"_count": 1}}, "times": {"_count": 1, "merely": {"_count": 1}}, "pair": {"_count": 1, "in": {"_count": 1}}, "Rons": {"_count": 1, "ears": {"_count": 1}}, "her": {"_count": 2, "broom": {"_count": 1}, "innumerable": {"_count": 1}}, "an": {"_count": 3, "now": {"_count": 1}, "the": {"_count": 1}, "thats": {"_count": 1}}, "every": {"_count": 2, "few": {"_count": 1}, "so": {"_count": 1}}, "giants": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 2, "wanted": {"_count": 1}, "surprised": {"_count": 1}}, "Viktors": {"_count": 1, "do": {"_count": 1}}, "headmasters": {"_count": 1, "and": {"_count": 1}}, "important": {"_count": 1, "Wizarding": {"_count": 1}}, "Weasley": {"_count": 1, "children": {"_count": 1}}, "portrait": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "occupied": {"_count": 1, "bed": {"_count": 1}}, "wizards": {"_count": 3, "entirely": {"_count": 1}, "leaving": {"_count": 1}, "to": {"_count": 1}}, "Order": {"_count": 3, "member": {"_count": 1}, "members": {"_count": 2}}, "suggested": {"_count": 1, "Hermione": {"_count": 1}}, "Sirius": {"_count": 1, "looking": {"_count": 1}}, "Weasleys": {"_count": 4, "froze": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}, "no": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "sound": {"_count": 1, "was": {"_count": 1}}, "options": {"_count": 1, "does": {"_count": 1}}, "rubbish": {"_count": 1, "and": {"_count": 1}}, "shortly": {"_count": 1, "afterward": {"_count": 1}}, "girls": {"_count": 2, "right": {"_count": 1}, "let": {"_count": 1}}, "dreams": {"_count": 1, "about": {"_count": 1}}, "looking": {"_count": 2, "utterly": {"_count": 1}, "around": {"_count": 1}}, "centaurs": {"_count": 5, "banished": {"_count": 1}, "are": {"_count": 1}, "Ve": {"_count": 1}, "charged": {"_count": 1}, "wont": {"_count": 1}}, "cause": {"_count": 1, "but": {"_count": 1}}, "fifth": {"_count": 1, "years": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "of": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "sounded": {"_count": 1}}, "startled": {"_count": 1, "but": {"_count": 1}}, "living": {"_count": 2, "creature": {"_count": 2}}, "ends": {"_count": 2, "of": {"_count": 1}, "out": {"_count": 1}}, "grasping": {"_count": 1, "his": {"_count": 1}}, "their": {"_count": 1, "smiles": {"_count": 1}}, "thestrals": {"_count": 1, "standing": {"_count": 1}}, "doors": {"_count": 1, "than": {"_count": 1}}, "labels": {"_count": 1, "on": {"_count": 1}}, "children": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "doorways": {"_count": 1, "and": {"_count": 1}}, "statues": {"_count": 1, "sprang": {"_count": 1}}, "painting": {"_count": 1, "in": {"_count": 1}}, "survives": {"_count": 9, "": {"_count": 7}, "said": {"_count": 1}, "and": {"_count": 1}}, "nor": {"_count": 1, "that": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "wrenched": {"_count": 1, "it": {"_count": 1}}, "woman": {"_count": 1, "Bella": {"_count": 1}}, "building": {"_count": 1, "DO": {"_count": 1}}, "means": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "made": {"_count": 1}}, "makers": {"_count": 1, "said": {"_count": 1}}, "drawing": {"_count": 1, "all": {"_count": 1}}, "without": {"_count": 1, "speaking": {"_count": 1}}, "will": {"_count": 1, "attempt": {"_count": 1}}, "penalties": {"_count": 1, "in": {"_count": 1}}, "Hogsmeade": {"_count": 1, "pub": {"_count": 1}}, "Hermione": {"_count": 1, "shuffled": {"_count": 1}}, "let": {"_count": 1, "alone": {"_count": 1}}, "before": {"_count": 3, "the": {"_count": 1}, "raising": {"_count": 1}, "theyve": {"_count": 1}}, "subjects": {"_count": 1, "youre": {"_count": 1}}, "long": {"_count": 1, "and": {"_count": 1}}, "Wizarding": {"_count": 1, "rooms": {"_count": 1}}, "sixth": {"_count": 1, "years": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "poor": {"_count": 1, "souls": {"_count": 1}}, "memory": {"_count": 1, "before": {"_count": 1}}, "searching": {"_count": 1, "through": {"_count": 1}}, "evenin": {"_count": 1, "an": {"_count": 1}}, "egged": {"_count": 1, "on": {"_count": 1}}, "other": {"_count": 1, "things": {"_count": 1}}, "moving": {"_count": 1, "across": {"_count": 1}}, "places": {"_count": 1, "": {"_count": 1}}, "spiders": {"_count": 1, "won": {"_count": 1}}, "singing": {"_count": 1, "a": {"_count": 1}}, "rummaging": {"_count": 1, "in": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "Horcruxes": {"_count": 6, "": {"_count": 2}, "out": {"_count": 1}, "and": {"_count": 2}, "must": {"_count": 1}}, "ambition": {"_count": 1, "finding": {"_count": 1}}, "forbidden": {"_count": 1, "items": {"_count": 1}}, "obstacles": {"_count": 1, "ahead": {"_count": 1}}, "attempting": {"_count": 1, "blindly": {"_count": 1}}, "discomfort": {"_count": 1, "from": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "bodies": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "perfectly": {"_count": 1, "and": {"_count": 1}}, "famous": {"_count": 1, "achievements": {"_count": 1}}, "sack": {"_count": 1, "": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "packages": {"_count": 1, "contained": {"_count": 1}}, "personal": {"_count": 1, "effects": {"_count": 1}}, "faults": {"_count": 1, "might": {"_count": 1}}, "pavement": {"_count": 1, "was": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "purpose": {"_count": 1, "or": {"_count": 1}}, "LADIES": {"_count": 1, "": {"_count": 1}}, "concerns": {"_count": 1, "fled": {"_count": 1}}, "leads": {"_count": 1, "they": {"_count": 1}}, "silent": {"_count": 1, "but": {"_count": 1}}, "listening": {"_count": 1, "as": {"_count": 1}}, "damn": {"_count": 1, "thing": {"_count": 1}}, "clearly": {"_count": 1, "for": {"_count": 1}}, "stories": {"_count": 2, "have": {"_count": 1}, "about": {"_count": 1}}, "ideas": {"_count": 1, "": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "feeling": {"_count": 2, "": {"_count": 1}, "their": {"_count": 1}}, "pursuits": {"_count": 1, "": {"_count": 1}}, "sinister": {"_count": 1, "movements": {"_count": 1}}, "of": {"_count": 3, "them": {"_count": 3}}, "today": {"_count": 1, "than": {"_count": 1}}, "believers": {"_count": 1, "in": {"_count": 1}}, "cloaks": {"_count": 1, "and": {"_count": 1}}, "astonished": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "safe": {"_count": 1, "Keep": {"_count": 1}}, "prisoners": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "then": {"_count": 1}}, "sizing": {"_count": 1, "each": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "magical": {"_count": 2, "beings": {"_count": 1}, "races": {"_count": 1}}, "wand": {"_count": 2, "the": {"_count": 1}, "didnt": {"_count": 1}}, "wandmakers": {"_count": 1, "have": {"_count": 1}}, "ancient": {"_count": 1, "goblinmade": {"_count": 1}}, "inhabitants": {"_count": 1, "of": {"_count": 1}}, "goblins": {"_count": 1, "had": {"_count": 1}}, "unknown": {"_count": 1, "Horcrux": {"_count": 1}}, "objects": {"_count": 1, "which": {"_count": 1}}, "worthless": {"_count": 1, "nameless": {"_count": 1}}, "Heads": {"_count": 1, "of": {"_count": 1}}, "thought": {"_count": 1, "from": {"_count": 1}}, "parts": {"_count": 1, "of": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "Transfigured": {"_count": 1, "and": {"_count": 1}}, "sign": {"_count": 1, "of": {"_count": 1}}, "crosslegged": {"_count": 1, "on": {"_count": 1}}, "held": {"_count": 2, "it": {"_count": 1}, "apart": {"_count": 1}}, "hooded": {"_count": 1, "Death": {"_count": 1}}, "drinking": {"_count": 1, "kneeling": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "senses": {"_count": 1, "to": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 1, "wolves": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}, "women": {"_count": 1, "and": {"_count": 1}}}, "end": {"_count": 559, "of": {"_count": 362, "the": {"_count": 180}, "an": {"_count": 3}, "a": {"_count": 15}, "his": {"_count": 39}, "Blackpool": {"_count": 1}, "Professor": {"_count": 2}, "Potions": {"_count": 2}, "practice": {"_count": 1}, "their": {"_count": 5}, "last": {"_count": 10}, "its": {"_count": 2}, "Rons": {"_count": 3}, "what": {"_count": 1}, "Harrys": {"_count": 5}, "it": {"_count": 10}, "Hogwarts": {"_count": 1}, "this": {"_count": 7}, "November": {"_count": 1}, "Christmas": {"_count": 1}, "class": {"_count": 4}, "Ron": {"_count": 1}, "one": {"_count": 3}, "Snapes": {"_count": 2}, "Buckbeaks": {"_count": 1}, "term": {"_count": 9}, "July": {"_count": 5}, "Moodys": {"_count": 1}, "her": {"_count": 9}, "road": {"_count": 1}, "every": {"_count": 2}, "Wormtail": {"_count": 1}, "Voldemorts": {"_count": 2}, "my": {"_count": 2}, "meetings": {"_count": 1}, "Wisteria": {"_count": 1}, "each": {"_count": 2}, "September": {"_count": 1}, "dinner": {"_count": 1}, "that": {"_count": 2}, "Charms": {"_count": 1}, "solid": {"_count": 1}, "your": {"_count": 1}, "which": {"_count": 2}, "row": {"_count": 2}, "Umbridges": {"_count": 2}, "exams": {"_count": 1}, "Bellatrix": {"_count": 1}, "Privet": {"_count": 2}, "Nevilles": {"_count": 1}, "our": {"_count": 1}, "Dumbledores": {"_count": 1}, "sixteen": {"_count": 1}, "Mrs": {"_count": 1}, "Hermione": {"_count": 1}, "Lunas": {"_count": 1}, "another": {"_count": 1}, "Voldemort": {"_count": 1}}, "all": {"_count": 1, "bent": {"_count": 1}}, "But": {"_count": 2, "at": {"_count": 1}, "if": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 3, "guard": {"_count": 1}, "lake": {"_count": 1}, "end": {"_count": 1}}, "and": {"_count": 15, "twice": {"_count": 1}, "a": {"_count": 1}, "walked": {"_count": 1}, "shuddered": {"_count": 1}, "he": {"_count": 1}, "Lee": {"_count": 1}, "then": {"_count": 1}, "waved": {"_count": 1}, "through": {"_count": 1}, "flew": {"_count": 1}, "took": {"_count": 1}, "is": {"_count": 1}, "within": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "off": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 50, ".": {"_count": 45}, "!": {"_count": 1}, "?": {"_count": 4}}, "nearest": {"_count": 1, "him": {"_count": 1}}, "with": {"_count": 3, "him": {"_count": 1}, "our": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 7, "the": {"_count": 3}, "their": {"_count": 1}, "Professor": {"_count": 1}, "end": {"_count": 2}}, "up": {"_count": 20, "as": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 6}, "having": {"_count": 1}, "with": {"_count": 2}, "Head": {"_count": 1}, "killing": {"_count": 1}, "dead": {"_count": 1}, "the": {"_count": 1}, "married": {"_count": 1}, "richer": {"_count": 1}, "when": {"_count": 1}}, "Hermione": {"_count": 1, "agreed": {"_count": 1}}, "Hagrid": {"_count": 1, "agreed": {"_count": 1}}, "as": {"_count": 7, "your": {"_count": 2}, "you": {"_count": 1}, "though": {"_count": 1}, "soon": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "ofyear": {"_count": 1, "feast": {"_count": 1}}, "was": {"_count": 1, "Hagrid": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "stall": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "toilet": {"_count": 2, "": {"_count": 2}}, "here": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 3, "decided": {"_count": 1}, "managed": {"_count": 1}, "settled": {"_count": 1}}, "he": {"_count": 6, "chose": {"_count": 1}, "gave": {"_count": 1}, "turned": {"_count": 1}, "annoyed": {"_count": 1}, "managed": {"_count": 1}, "didnt": {"_count": 1}}, "irritated": {"_count": 1, "Harry": {"_count": 1}}, "yet": {"_count": 1, "dreaded": {"_count": 1}}, "RiddikulusV": {"_count": 1, "shouted": {"_count": 1}}, "a": {"_count": 3, "boy": {"_count": 1}, "right": {"_count": 1}, "black": {"_count": 1}}, "you": {"_count": 1, "often": {"_count": 1}}, "it": {"_count": 8, "worked": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 1}, "mattered": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "He": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}, "bed": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 5, "Fudge": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "James": {"_count": 1}}, "exploded": {"_count": 1, "": {"_count": 1}}, "writes": {"_count": 1, "Rita": {"_count": 1}}, "because": {"_count": 2, "of": {"_count": 1}, "he": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "Feeling": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 3, "raised": {"_count": 1}, "murder": {"_count": 1}, "the": {"_count": 1}}, "withering": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "something": {"_count": 1}}, "furthest": {"_count": 1, "from": {"_count": 1}}, "his": {"_count": 1, "glasses": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}, "Harry": {"_count": 1, "tried": {"_count": 1}}, "leaving": {"_count": 1, "a": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}, "What": {"_count": 1, "with": {"_count": 1}}, "I": {"_count": 4, "fear": {"_count": 1}, "think": {"_count": 2}, "got": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "Ron": {"_count": 2, "had": {"_count": 1}, "snapped": {"_count": 1}}, "coupled": {"_count": 1, "with": {"_count": 1}}, "officially": {"_count": 1, "before": {"_count": 1}}, "beds": {"_count": 1, "must": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "found": {"_count": 1, "an": {"_count": 1}}, "on": {"_count": 1, "Saturday": {"_count": 1}}, "her": {"_count": 1, "glasses": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "killing": {"_count": 1}}, "ofterm": {"_count": 1, "feast": {"_count": 1}}, "something": {"_count": 1, "thats": {"_count": 1}}, "conceded": {"_count": 1, "George": {"_count": 1}}, "why": {"_count": 1, "not": {"_count": 1}}, "has": {"_count": 1, "issued": {"_count": 1}}, "its": {"_count": 1, "all": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}}, "amuse": {"_count": 3, "him": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}}, "chuckled": {"_count": 26, "and": {"_count": 2, "muttered": {"_count": 1}, "both": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "at": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "darkly": {"_count": 1, "": {"_count": 1}}, "happily": {"_count": 1, "over": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "trollishly": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "softly": {"_count": 1, "": {"_count": 1}}, "appreciatively": {"_count": 1, "": {"_count": 1}}, "Dean": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "comfortably": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}}, "muttered": {"_count": 332, "I": {"_count": 5, "should": {"_count": 1}, "want": {"_count": 1}, "think": {"_count": 1}, "poked": {"_count": 1}, "havent": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "turning": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 2, "Quirrell": {"_count": 1}, "McGonagall": {"_count": 1}}, "": {"_count": 52, ".": {"_count": 52}}, "that": {"_count": 1, "hed": {"_count": 1}}, "to": {"_count": 35, "Percy": {"_count": 1}, "Harry": {"_count": 14}, "the": {"_count": 1}, "Ron": {"_count": 7}, "his": {"_count": 1}, "Mr": {"_count": 2}, "Sirius": {"_count": 1}, "Mrs": {"_count": 2}, "her": {"_count": 1}, "him": {"_count": 1}, "Cho": {"_count": 1}, "Ginny": {"_count": 1}, "Hermione": {"_count": 1}, "himself": {"_count": 1}}, "Ive": {"_count": 1, "heard": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "angrily": {"_count": 3, "as": {"_count": 1}, "glaring": {"_count": 1}, "sloshing": {"_count": 1}}, "desperately": {"_count": 2, "": {"_count": 1}, "shaking": {"_count": 1}}, "as": {"_count": 13, "Ron": {"_count": 1}, "Lee": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 3}, "Percy": {"_count": 1}, "Harry": {"_count": 1}, "Professor": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}}, "in": {"_count": 4, "Harrys": {"_count": 3}, "what": {"_count": 1}}, "something": {"_count": 11, "and": {"_count": 2}, "so": {"_count": 1}, "in": {"_count": 1}, "about": {"_count": 6}, "to": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 2, "": {"_count": 2}}, "things": {"_count": 1, "like": {"_count": 1}}, "vaguely": {"_count": 1, "about": {"_count": 1}}, "aloud": {"_count": 1, "in": {"_count": 1}}, "furiously": {"_count": 2, "great": {"_count": 1}, "Master": {"_count": 1}}, "his": {"_count": 2, "teeth": {"_count": 1}, "ears": {"_count": 1}}, "Ron": {"_count": 9, "": {"_count": 4}, "as": {"_count": 2}, "picking": {"_count": 1}, "pointing": {"_count": 1}, "disengaging": {"_count": 1}}, "George": {"_count": 2, "Weasley": {"_count": 1}, "as": {"_count": 1}}, "Malfoy": {"_count": 1, "so": {"_count": 1}}, "Harry": {"_count": 16, "": {"_count": 3}, "as": {"_count": 2}, "not": {"_count": 1}, "grinning": {"_count": 1}, "thinking": {"_count": 1}, "sparing": {"_count": 1}, "awkwardly": {"_count": 1}, "to": {"_count": 1}, "still": {"_count": 1}, "his": {"_count": 1}, "tugging": {"_count": 1}, "every": {"_count": 1}, "embarrassed": {"_count": 1}}, "now": {"_count": 1, "piling": {"_count": 1}}, "sprinting": {"_count": 1, "to": {"_count": 1}}, "wildly": {"_count": 1, "someone": {"_count": 1}}, "and": {"_count": 5, "a": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "shook": {"_count": 1}, "he": {"_count": 1}}, "Not": {"_count": 1, "now": {"_count": 1}}, "Showoffs": {"_count": 1, "": {"_count": 1}}, "hello": {"_count": 1, "without": {"_count": 1}}, "under": {"_count": 5, "his": {"_count": 5}}, "resentfully": {"_count": 1, "to": {"_count": 1}}, "embarrassed": {"_count": 1, "": {"_count": 1}}, "pushing": {"_count": 2, "back": {"_count": 1}, "the": {"_count": 1}}, "Lumos": {"_count": 3, "and": {"_count": 2}, "A": {"_count": 1}}, "Mischief": {"_count": 2, "managed": {"_count": 2}}, "shrugging": {"_count": 1, "": {"_count": 1}}, "running": {"_count": 1, "a": {"_count": 1}}, "sitting": {"_count": 1, "up": {"_count": 1}}, "biting": {"_count": 1, "off": {"_count": 1}}, "Dissendium": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 2, "out": {"_count": 1}, "the": {"_count": 1}}, "casting": {"_count": 1, "a": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "thickly": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 4, "at": {"_count": 2}, "into": {"_count": 1}, "about": {"_count": 1}}, "Pettigrew": {"_count": 1, "his": {"_count": 1}}, "Ferula": {"_count": 1, "": {"_count": 1}}, "Mobilicorpus": {"_count": 1, "": {"_count": 1}}, "grabbing": {"_count": 1, "Hermiones": {"_count": 1}}, "indistinctly": {"_count": 1, "as": {"_count": 1}}, "Mr": {"_count": 4, "Weasley": {"_count": 3}, "Diggory": {"_count": 1}}, "pulling": {"_count": 1, "a": {"_count": 1}}, "distractedly": {"_count": 2, "In": {"_count": 1}, "releasing": {"_count": 1}}, "Quietus": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 4, "": {"_count": 1}, "tugging": {"_count": 1}, "feverishly": {"_count": 1}, "turned": {"_count": 1}}, "again": {"_count": 2, "now": {"_count": 1}, "mopping": {"_count": 1}}, "ReparoV": {"_count": 1, "and": {"_count": 1}}, "Seamus": {"_count": 1, "": {"_count": 1}}, "Imperio": {"_count": 1, "The": {"_count": 1}}, "CrucioV": {"_count": 1, "At": {"_count": 1}}, "squeezing": {"_count": 1, "Harrys": {"_count": 1}}, "OrchideousV": {"_count": 1, "and": {"_count": 1}}, "Nice": {"_count": 1, "cloak": {"_count": 1}}, "sleepily": {"_count": 1, "without": {"_count": 1}}, "so": {"_count": 1, "only": {"_count": 1}}, "Dean": {"_count": 2, "": {"_count": 2}}, "climbing": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 3, "password": {"_count": 1}, "countercurse": {"_count": 1}, "plan": {"_count": 1}}, "groping": {"_count": 1, "in": {"_count": 1}}, "finally": {"_count": 3, "they": {"_count": 1}, "": {"_count": 2}}, "odd": {"_count": 1, "stuffs": {"_count": 1}}, "more": {"_count": 2, "to": {"_count": 2}}, "moving": {"_count": 2, "aside": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 6, "Karkaroff": {"_count": 1}, "all": {"_count": 1}, "Ron": {"_count": 1}, "it": {"_count": 1}, "Uncle": {"_count": 1}, "Krum": {"_count": 1}}, "pacing": {"_count": 1, "up": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "Renneruate": {"_count": 1, "": {"_count": 1}}, "putting": {"_count": 1, "a": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "dryly": {"_count": 1, "to": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 1}, "glancing": {"_count": 1}}, "Sonorus": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "while": {"_count": 1, "Fred": {"_count": 1}}, "frantically": {"_count": 1, "his": {"_count": 1}}, "Dudley": {"_count": 2, "unexpectedly": {"_count": 1}, "": {"_count": 1}}, "Tonks": {"_count": 2, "": {"_count": 1}, "menacingly": {"_count": 1}}, "raising": {"_count": 1, "what": {"_count": 1}}, "thrusting": {"_count": 1, "a": {"_count": 1}}, "Evanescol": {"_count": 1, "and": {"_count": 1}}, "Mundungus": {"_count": 1, "polishing": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "frowning": {"_count": 1, "with": {"_count": 1}}, "faster": {"_count": 1, "and": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "irritably": {"_count": 1, "but": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Drop": {"_count": 1, "it": {"_count": 1}}, "no": {"_count": 2, "surely": {"_count": 1}, "ones": {"_count": 1}}, "hoisting": {"_count": 1, "his": {"_count": 1}}, "writing": {"_count": 1, "the": {"_count": 1}}, "wearily": {"_count": 1, "turning": {"_count": 1}}, "speaking": {"_count": 1, "to": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}, "sinking": {"_count": 1, "onto": {"_count": 1}}, "splashing": {"_count": 1, "boiling": {"_count": 1}}, "Umbridge": {"_count": 3, "loudly": {"_count": 1}, "scribbling": {"_count": 1}, "making": {"_count": 1}}, "Sirius": {"_count": 1, "counting": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "Alohomora": {"_count": 1, "": {"_count": 1}}, "hating": {"_count": 1, "Snape": {"_count": 1}}, "incantations": {"_count": 1, "and": {"_count": 1}}, "reproaches": {"_count": 1, "and": {"_count": 1}}, "hurrying": {"_count": 1, "to": {"_count": 1}}, "Portus": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 1, "pulling": {"_count": 1}}, "Preposterous": {"_count": 1, "but": {"_count": 1}}, "grudgingly": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "JellyLegs": {"_count": 1, "Jinx": {"_count": 1}}, "a": {"_count": 2, "hasty": {"_count": 1}, "tall": {"_count": 1}}, "Riddle": {"_count": 1, "": {"_count": 1}}, "She": {"_count": 1, "didnt": {"_count": 1}}, "MuffliatoV": {"_count": 1, "so": {"_count": 1}}, "awkwardly": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "slumping": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "Dirk": {"_count": 2, "Cresswell": {"_count": 1}, "": {"_count": 1}}, "Tergeo": {"_count": 1, "The": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "conversation": {"_count": 1, "in": {"_count": 1}}, "Imperiol": {"_count": 1, "once": {"_count": 1}}, "Aberforth": {"_count": 1, "taking": {"_count": 1}}, "crouching": {"_count": 1, "down": {"_count": 1}}}, "known": {"_count": 188, "": {"_count": 20, ".": {"_count": 14}, "!": {"_count": 3}, "?": {"_count": 3}}, "as": {"_count": 15, "Harry": {"_count": 1}, "the": {"_count": 6}, "Muggles": {"_count": 1}, "Death": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 1}, "Captain": {"_count": 1}, "Moony": {"_count": 1}, "Tonks": {"_count": 1}}, "it": {"_count": 13, "was": {"_count": 5}, "for": {"_count": 2}, "meaning": {"_count": 1}, "all": {"_count": 2}, "would": {"_count": 1}, "deep": {"_count": 1}, "had": {"_count": 1}}, "that": {"_count": 12, "the": {"_count": 3}, "Hagrid": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}, "Harry": {"_count": 2}, "it": {"_count": 2}}, "about": {"_count": 5, "this": {"_count": 1}, "wands": {"_count": 1}, "the": {"_count": 2}, "them": {"_count": 1}}, "who": {"_count": 2, "yeh": {"_count": 1}, "lived": {"_count": 1}}, "what": {"_count": 4, "that": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}, "Ariana": {"_count": 1}}, "to": {"_count": 15, "vanish": {"_count": 1}, "wizardkind": {"_count": 1}, "befriend": {"_count": 1}, "be": {"_count": 5}, "act": {"_count": 1}, "Wizardkind": {"_count": 1}, "have": {"_count": 2}, "ctd": {"_count": 1}, "print": {"_count": 1}, "himself": {"_count": 1}}, "your": {"_count": 1, "family": {"_count": 1}}, "maker": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "also": {"_count": 1, "as": {"_count": 1}}, "all": {"_count": 4, "along": {"_count": 4}}, "there": {"_count": 4, "was": {"_count": 4}}, "before": {"_count": 4, "was": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "then": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "hed": {"_count": 2, "have": {"_count": 1}, "been": {"_count": 1}}, "any": {"_count": 1, "Hogwarts": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "Bold": {"_count": 1, "Gryffindor": {"_count": 1}}, "person": {"_count": 1, "has": {"_count": 1}}, "the": {"_count": 2, "Triwizard": {"_count": 1}, "prefect": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "better": {"_count": 2, "the": {"_count": 1}, "than": {"_count": 1}}, "Alastor": {"_count": 2, "Moody": {"_count": 2}}, "for": {"_count": 5, "it": {"_count": 1}, "a": {"_count": 2}, "years": {"_count": 1}, "some": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}, "by": {"_count": 2, "her": {"_count": 1}, "us": {"_count": 1}}, "he": {"_count": 6, "was": {"_count": 1}, "could": {"_count": 1}, "couldnt": {"_count": 1}, "held": {"_count": 1}, "must": {"_count": 1}, "possessed": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "whats": {"_count": 1, "been": {"_count": 1}}, "this": {"_count": 3, "office": {"_count": 1}, "time": {"_count": 1}, "why": {"_count": 1}}, "Percy": {"_count": 1, "for": {"_count": 1}}, "kids": {"_count": 1, "like": {"_count": 1}}, "carried": {"_count": 1, "it": {"_count": 1}}, "a": {"_count": 3, "few": {"_count": 1}, "long": {"_count": 1}, "spell": {"_count": 1}}, "where": {"_count": 3, "to": {"_count": 2}, "you": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}, "enemy": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "died": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Muggle": {"_count": 1, "killer": {"_count": 1}}, "them": {"_count": 1, "so": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "Aurors": {"_count": 1, "had": {"_count": 1}}, "shouldnt": {"_count": 1, "you": {"_count": 1}}, "Hagrid": {"_count": 1, "to": {"_count": 1}}, "Ginny": {"_count": 1, "for": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "how": {"_count": 4, "to": {"_count": 3}, "and": {"_count": 1}}, "relic": {"_count": 1, "of": {"_count": 1}}, "then": {"_count": 1, "what": {"_count": 1}}, "his": {"_count": 2, "team": {"_count": 1}, "middle": {"_count": 1}}, "magic": {"_count": 1, "said": {"_count": 1}}, "him": {"_count": 5, "": {"_count": 1}, "at": {"_count": 1}, "venerable": {"_count": 1}, "Fred": {"_count": 1}, "to": {"_count": 1}}, "anything": {"_count": 2, "about": {"_count": 1}, "she": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "exactly": {"_count": 1, "how": {"_count": 1}}, "Bathilda": {"_count": 1, "Bagshot": {"_count": 1}}, "since": {"_count": 1, "childhood": {"_count": 1}}, "youd": {"_count": 2, "want": {"_count": 1}, "always": {"_count": 1}}, "only": {"_count": 2, "to": {"_count": 2}}, "here": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "Grindelwald": {"_count": 1}}, "Id": {"_count": 1, "run": {"_count": 1}}, "How": {"_count": 1, "was": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}}, "inside": {"_count": 656, "pocket": {"_count": 14, "": {"_count": 2}, "of": {"_count": 8}, "and": {"_count": 2}, "a": {"_count": 1}, "another": {"_count": 1}}, "his": {"_count": 81, "cloak": {"_count": 7}, "blankets": {"_count": 1}, "overcoat": {"_count": 1}, "coat": {"_count": 2}, "pockets": {"_count": 1}, "jacket": {"_count": 7}, "doublet": {"_count": 1}, "own": {"_count": 6}, "chest": {"_count": 5}, "very": {"_count": 1}, "robes": {"_count": 25}, "head": {"_count": 15}, "birthday": {"_count": 1}, "heart": {"_count": 1}, "bag": {"_count": 1}, "mothers": {"_count": 1}, "hoop": {"_count": 1}, "regenerated": {"_count": 1}, "bedroom": {"_count": 1}, "mouth": {"_count": 1}, "new": {"_count": 1}}, "Harrys": {"_count": 8, "blankets": {"_count": 1}, "head": {"_count": 6}, "brain": {"_count": 1}}, "its": {"_count": 1, "envelope": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 134, "car": {"_count": 2}, "hut": {"_count": 1}, "stadium": {"_count": 1}, "box": {"_count": 3}, "crate": {"_count": 2}, "room": {"_count": 8}, "mirror": {"_count": 1}, "back": {"_count": 1}, "Slytherin": {"_count": 1}, "common": {"_count": 2}, "Chamber": {"_count": 1}, "walls": {"_count": 1}, "statues": {"_count": 1}, "hat": {"_count": 1}, "wardrobe": {"_count": 1}, "Leaky": {"_count": 1}, "pub": {"_count": 1}, "front": {"_count": 3}, "corridors": {"_count": 1}, "grounds": {"_count": 1}, "castle": {"_count": 9}, "chosen": {"_count": 1}, "cabin": {"_count": 3}, "socks": {"_count": 1}, "Tshirt": {"_count": 1}, "dormitory": {"_count": 1}, "envelope": {"_count": 1}, "blocked": {"_count": 1}, "chimney": {"_count": 1}, "tent": {"_count": 8}, "cavernous": {"_count": 1}, "Hogwarts": {"_count": 1}, "carved": {"_count": 1}, "goblet": {"_count": 1}, "bag": {"_count": 1}, "egg": {"_count": 1}, "school": {"_count": 3}, "armor": {"_count": 1}, "golden": {"_count": 1}, "pocket": {"_count": 1}, "time": {"_count": 1}, "office": {"_count": 2}, "basin": {"_count": 3}, "cabinet": {"_count": 1}, "Ministry": {"_count": 5}, "door": {"_count": 3}, "bundle": {"_count": 1}, "cauldron": {"_count": 1}, "trunk": {"_count": 1}, "dementors": {"_count": 1}, "waistband": {"_count": 1}, "broken": {"_count": 1}, "telephone": {"_count": 1}, "courtroom": {"_count": 1}, "station": {"_count": 1}, "magazine": {"_count": 1}, "carriages": {"_count": 1}, "carriage": {"_count": 1}, "enormous": {"_count": 1}, "snake": {"_count": 1}, "snakes": {"_count": 1}, "circular": {"_count": 1}, "chest": {"_count": 1}, "dumpster": {"_count": 1}, "jar": {"_count": 1}, "grate": {"_count": 1}, "Pensieve": {"_count": 1}, "buildings": {"_count": 1}, "pillowcase": {"_count": 1}, "helmets": {"_count": 1}, "Room": {"_count": 2}, "locket": {"_count": 2}, "first": {"_count": 1}, "pouch": {"_count": 1}, "tiny": {"_count": 2}, "Fidelius": {"_count": 1}, "house": {"_count": 1}, "beaded": {"_count": 2}, "little": {"_count": 1}, "church": {"_count": 1}, "glow": {"_count": 1}, "celllike": {"_count": 1}, "cellar": {"_count": 1}, "Lestranges": {"_count": 1}, "vault": {"_count": 3}, "wand": {"_count": 1}}, "was": {"_count": 2, "horrible": {"_count": 1}, "a": {"_count": 1}}, "him": {"_count": 52, "": {"_count": 19}, "had": {"_count": 1}, "half": {"_count": 1}, "he": {"_count": 2}, "Harry": {"_count": 1}, "just": {"_count": 1}, "at": {"_count": 2}, "instead": {"_count": 1}, "so": {"_count": 3}, "and": {"_count": 1}, "a": {"_count": 4}, "might": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 1}, "like": {"_count": 2}, "the": {"_count": 2}, "that": {"_count": 2}, "was": {"_count": 2}, "not": {"_count": 1}, "He": {"_count": 1}, "felt": {"_count": 1}, "it": {"_count": 1}, "Harrys": {"_count": 1}}, "": {"_count": 73, ".": {"_count": 68}, "?": {"_count": 4}, "!": {"_count": 1}}, "this": {"_count": 5, "top": {"_count": 1}, "castle": {"_count": 1}, "house": {"_count": 2}, "school": {"_count": 1}}, "poked": {"_count": 1, "out": {"_count": 1}}, "first": {"_count": 1, "and": {"_count": 1}}, "them": {"_count": 5, "you": {"_count": 1}, "and": {"_count": 1}, "than": {"_count": 1}, "peered": {"_count": 1}, "hooted": {"_count": 1}}, "of": {"_count": 23, "the": {"_count": 10}, "his": {"_count": 8}, "tents": {"_count": 1}, "her": {"_count": 1}, "skulls": {"_count": 1}, "my": {"_count": 1}, "Harrys": {"_count": 1}}, "and": {"_count": 22, "several": {"_count": 1}, "still": {"_count": 1}, "found": {"_count": 1}, "a": {"_count": 1}, "just": {"_count": 1}, "out": {"_count": 1}, "squeezed": {"_count": 1}, "tipped": {"_count": 1}, "shut": {"_count": 1}, "outside": {"_count": 1}, "slid": {"_count": 1}, "threw": {"_count": 1}, "warm": {"_count": 1}, "returned": {"_count": 1}, "stay": {"_count": 1}, "dont": {"_count": 1}, "closed": {"_count": 1}, "leaning": {"_count": 1}, "the": {"_count": 1}, "have": {"_count": 1}, "slammed": {"_count": 1}, "despite": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "exploded": {"_count": 1, "a": {"_count": 1}}, "before": {"_count": 2, "shutting": {"_count": 1}, "Dumbledore": {"_count": 1}}, "a": {"_count": 14, "funny": {"_count": 1}, "single": {"_count": 1}, "memory": {"_count": 2}, "neighbors": {"_count": 1}, "few": {"_count": 1}, "blackwalled": {"_count": 1}, "toilet": {"_count": 1}, "pair": {"_count": 1}, "cloak": {"_count": 1}, "vast": {"_count": 1}, "giant": {"_count": 1}, "ruined": {"_count": 1}, "hollow": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 10, "cage": {"_count": 1}, "fist": {"_count": 1}, "schoolbag": {"_count": 1}, "Or": {"_count": 1}, "study": {"_count": 1}, "robes": {"_count": 3}, "": {"_count": 2}}, "closed": {"_count": 1, "the": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "it": {"_count": 67, "and": {"_count": 5}, "": {"_count": 28}, "but": {"_count": 3}, "listening": {"_count": 1}, "didnt": {"_count": 1}, "got": {"_count": 1}, "snapped": {"_count": 1}, "all": {"_count": 1}, "she": {"_count": 1}, "Im": {"_count": 1}, "seemed": {"_count": 1}, "as": {"_count": 1}, "none": {"_count": 1}, "with": {"_count": 2}, "though": {"_count": 1}, "too": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 3}, "or": {"_count": 1}, "was": {"_count": 2}, "he": {"_count": 1}, "depends": {"_count": 1}, "can": {"_count": 1}, "before": {"_count": 1}, "this": {"_count": 1}, "were": {"_count": 1}, "that": {"_count": 1}, "where": {"_count": 1}, "He": {"_count": 1}, "is": {"_count": 1}}, "leaving": {"_count": 1, "Hermione": {"_count": 1}}, "when": {"_count": 1, "Lockharts": {"_count": 1}}, "Filchs": {"_count": 1, "office": {"_count": 1}}, "all": {"_count": 2, "looked": {"_count": 1}, "looking": {"_count": 1}}, "out": {"_count": 2, "and": {"_count": 1}, "And": {"_count": 1}}, "my": {"_count": 5, "memory": {"_count": 1}, "I": {"_count": 1}, "head": {"_count": 2}, "vault": {"_count": 1}}, "somebody": {"_count": 1, "elses": {"_count": 1}}, "your": {"_count": 7, "er": {"_count": 1}, "mind": {"_count": 1}, "head": {"_count": 4}, "vault": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 3}}, "theres": {"_count": 1, "nothing": {"_count": 1}}, "seemed": {"_count": 1, "very": {"_count": 1}}, "Honeydukes": {"_count": 1, "": {"_count": 1}}, "North": {"_count": 1, "Tower": {"_count": 1}}, "tight": {"_count": 1, "bags": {"_count": 1}}, "help": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 3, "own": {"_count": 1}, "school": {"_count": 1}, "various": {"_count": 1}}, "said": {"_count": 4, "Dissendium": {"_count": 1}, "Dear": {"_count": 1}, "Ron": {"_count": 1}, "Bill": {"_count": 1}}, "every": {"_count": 1, "suit": {"_count": 1}}, "Mr": {"_count": 1, "Filchs": {"_count": 1}}, "Zonkos": {"_count": 1, "yet": {"_count": 1}}, "Scabbers": {"_count": 1, "the": {"_count": 1}}, "Azkaban": {"_count": 1, "": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "Hagrids": {"_count": 3, "cabin": {"_count": 2}, "house": {"_count": 1}}, "No": {"_count": 1, "I": {"_count": 1}}, "Ill": {"_count": 1, "lock": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "number": {"_count": 3, "four": {"_count": 1}, "twelve": {"_count": 2}}, "soared": {"_count": 1, "across": {"_count": 1}}, "or": {"_count": 1, "itll": {"_count": 1}}, "an": {"_count": 2, "enclosure": {"_count": 1}, "adult": {"_count": 1}}, "to": {"_count": 2, "Fleur": {"_count": 1}, "defend": {"_count": 1}}, "Hermione": {"_count": 1, "followed": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 2}}, "information": {"_count": 3, "on": {"_count": 3}}, "bolted": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "found": {"_count": 1}, "could": {"_count": 1}}, "Dumbledores": {"_count": 3, "office": {"_count": 1}, "Pensieve": {"_count": 2}}, "began": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "before": {"_count": 1}}, "hadnt": {"_count": 1, "even": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "landed": {"_count": 1, "upon": {"_count": 1}}, "Hogwarts": {"_count": 5, "thought": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "castle": {"_count": 1}, "Castle": {"_count": 1}}, "hooting": {"_count": 1, "dolefully": {"_count": 1}}, "over": {"_count": 1, "break": {"_count": 1}}, "pockets": {"_count": 1, "of": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "Professor": {"_count": 1}}, "me": {"_count": 7, "like": {"_count": 1}, "You": {"_count": 1}, "listening": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "that": {"_count": 4, "snake": {"_count": 1}, "cavernous": {"_count": 1}, "book": {"_count": 1}, "it": {"_count": 1}}, "Harry": {"_count": 5, "knew": {"_count": 1}, "": {"_count": 1}, "seemed": {"_count": 1}, "burst": {"_count": 1}, "and": {"_count": 1}}, "keeping": {"_count": 1, "a": {"_count": 1}}, "while": {"_count": 2, "Harry": {"_count": 1}, "theyre": {"_count": 1}}, "still": {"_count": 1, "holding": {"_count": 1}}, "traipsing": {"_count": 1, "back": {"_count": 1}}, "suits": {"_count": 2, "of": {"_count": 2}}, "now": {"_count": 1, "hammering": {"_count": 1}}, "you": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "wasnt": {"_count": 1, "she": {"_count": 1}}, "gratefully": {"_count": 1, "": {"_count": 1}}, "pages": {"_count": 1, "": {"_count": 1}}, "whenever": {"_count": 1, "somebody": {"_count": 1}}, "again": {"_count": 1, "the": {"_count": 1}}, "What": {"_count": 1, "has": {"_count": 1}}, "as": {"_count": 1, "people": {"_count": 1}}, "but": {"_count": 1, "for": {"_count": 1}}, "which": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "without": {"_count": 1, "being": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "Bathildas": {"_count": 1, "house": {"_count": 1}}, "wiping": {"_count": 1, "out": {"_count": 1}}, "wand": {"_count": 1, "held": {"_count": 1}}, "Gringotts": {"_count": 1, "said": {"_count": 1}}, "Ravenclaw": {"_count": 2, "Tower": {"_count": 2}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}}, "pocket": {"_count": 196, "": {"_count": 56, ".": {"_count": 48}, "?": {"_count": 5}, "!": {"_count": 3}}, "and": {"_count": 49, "examined": {"_count": 1}, "said": {"_count": 2}, "a": {"_count": 1}, "pulled": {"_count": 3}, "as": {"_count": 1}, "started": {"_count": 1}, "unraveling": {"_count": 1}, "gave": {"_count": 1}, "showing": {"_count": 2}, "began": {"_count": 1}, "consulted": {"_count": 1}, "placed": {"_count": 1}, "straightened": {"_count": 1}, "he": {"_count": 1}, "stuck": {"_count": 1}, "went": {"_count": 1}, "Hermione": {"_count": 1}, "drew": {"_count": 4}, "the": {"_count": 2}, "starting": {"_count": 1}, "dashed": {"_count": 1}, "unfolding": {"_count": 1}, "cut": {"_count": 1}, "all": {"_count": 1}, "dropping": {"_count": 1}, "took": {"_count": 1}, "before": {"_count": 1}, "glanced": {"_count": 1}, "handed": {"_count": 1}, "throw": {"_count": 1}, "marched": {"_count": 1}, "his": {"_count": 1}, "slammed": {"_count": 1}, "followed": {"_count": 1}, "threw": {"_count": 1}, "withdrew": {"_count": 1}, "put": {"_count": 1}, "without": {"_count": 1}, "clicked": {"_count": 1}, "handing": {"_count": 1}, "reached": {"_count": 1}}, "of": {"_count": 27, "his": {"_count": 20}, "gold": {"_count": 1}, "her": {"_count": 2}, "Hermione": {"_count": 1}, "which": {"_count": 1}, "another": {"_count": 1}, "the": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 2, "scrambled": {"_count": 1}, "said": {"_count": 1}}, "was": {"_count": 1, "clamoring": {"_count": 1}}, "before": {"_count": 1, "helping": {"_count": 1}}, "money": {"_count": 3, "for": {"_count": 1}, "if": {"_count": 1}, "all": {"_count": 1}}, "STOP": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "getting": {"_count": 1}}, "trembled": {"_count": 1, "and": {"_count": 1}}, "quivered": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "sniff": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 4, "the": {"_count": 1}, "Scabbers": {"_count": 1}, "an": {"_count": 1}, "it": {"_count": 1}}, "he": {"_count": 5, "had": {"_count": 1}, "made": {"_count": 1}, "turned": {"_count": 1}, "pulled": {"_count": 2}}, "watch": {"_count": 3, "dangling": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 1}}, "untied": {"_count": 1, "it": {"_count": 1}}, "then": {"_count": 3, "gave": {"_count": 1}, "tore": {"_count": 1}, "taking": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "set": {"_count": 1, "it": {"_count": 1}}, "speared": {"_count": 1, "a": {"_count": 1}}, "bearing": {"_count": 1, "the": {"_count": 1}}, "stuffed": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 6, "a": {"_count": 3}, "the": {"_count": 2}, "her": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 2, "list": {"_count": 1}, "two": {"_count": 1}}, "Harry": {"_count": 2, "saw": {"_count": 1}, "moved": {"_count": 1}}, "anything": {"_count": 1, "you": {"_count": 1}}, "feeling": {"_count": 1, "an": {"_count": 1}}, "a": {"_count": 3, "crystal": {"_count": 1}, "small": {"_count": 1}, "locket": {"_count": 1}}, "pointed": {"_count": 1, "it": {"_count": 1}}, "another": {"_count": 1, "crystal": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "Lilys": {"_count": 1}}, "This": {"_count": 1, "particularly": {"_count": 1}}, "an": {"_count": 1, "odd": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "knelt": {"_count": 1, "down": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "restoring": {"_count": 1, "the": {"_count": 1}}, "revealing": {"_count": 1, "Dobby": {"_count": 1}}}, "cigarette": {"_count": 5, "lighter": {"_count": 3, "": {"_count": 1}, "into": {"_count": 1}, "but": {"_count": 1}}, "burn": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "lighter": {"_count": 12, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "than": {"_count": 4, "it": {"_count": 2}, "they": {"_count": 1}, "air": {"_count": 1}}, "owing": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 1, "went": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}}, "flicked": {"_count": 25, "it": {"_count": 2, "open": {"_count": 2}}, "but": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 3, "wand": {"_count": 3}}, "the": {"_count": 1, "envelope": {"_count": 1}}, "through": {"_count": 5, "the": {"_count": 4}, "it": {"_count": 1}}, "a": {"_count": 1, "light": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 9, "wand": {"_count": 8}, "own": {"_count": 1}}, "past": {"_count": 1, "": {"_count": 1}}}, "open": {"_count": 685, "held": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 7, "horror": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 3}}, "the": {"_count": 86, "yellow": {"_count": 1}, "bill": {"_count": 1}, "portrait": {"_count": 2}, "letter": {"_count": 2}, "parcel": {"_count": 1}, "key": {"_count": 1}, "next": {"_count": 1}, "door": {"_count": 27}, "Chamber": {"_count": 2}, "halves": {"_count": 1}, "envelope": {"_count": 5}, "front": {"_count": 2}, "compartment": {"_count": 2}, "gate": {"_count": 1}, "witchs": {"_count": 1}, "Fat": {"_count": 1}, "closet": {"_count": 1}, "window": {"_count": 1}, "ball": {"_count": 1}, "cabinet": {"_count": 1}, "robes": {"_count": 1}, "Lestranges": {"_count": 1}, "lid": {"_count": 1}, "wrapper": {"_count": 1}, "curtains": {"_count": 1}, "rusty": {"_count": 1}, "scroll": {"_count": 1}, "doors": {"_count": 2}, "kitchen": {"_count": 1}, "newspaper": {"_count": 1}, "head": {"_count": 1}, "one": {"_count": 1}, "broom": {"_count": 1}, "train": {"_count": 1}, "gates": {"_count": 1}, "parchment": {"_count": 1}, "wardrobe": {"_count": 1}, "tapestry": {"_count": 2}, "topmost": {"_count": 1}, "box": {"_count": 1}, "back": {"_count": 1}, "knee": {"_count": 1}, "gray": {"_count": 1}, "concealed": {"_count": 1}, "drawers": {"_count": 1}, "glass": {"_count": 1}, "Snitch": {"_count": 1}, "tomb": {"_count": 1}, "locket": {"_count": 1}}, "with": {"_count": 13, "one": {"_count": 1}, "terror": {"_count": 1}, "an": {"_count": 1}, "such": {"_count": 1}, "a": {"_count": 6}, "you": {"_count": 1}, "the": {"_count": 1}, "loud": {"_count": 1}}, "and": {"_count": 84, "closed": {"_count": 1}, "the": {"_count": 4}, "they": {"_count": 6}, "revolting": {"_count": 1}, "Fred": {"_count": 1}, "Hermione": {"_count": 2}, "sprinted": {"_count": 1}, "Harry": {"_count": 3}, "there": {"_count": 4}, "in": {"_count": 1}, "read": {"_count": 3}, "pulled": {"_count": 2}, "then": {"_count": 2}, "he": {"_count": 6}, "glassy": {"_count": 1}, "sun": {"_count": 1}, "stood": {"_count": 1}, "slept": {"_count": 1}, "lay": {"_count": 1}, "dashed": {"_count": 1}, "grabbed": {"_count": 1}, "peered": {"_count": 1}, "gasped": {"_count": 1}, "went": {"_count": 1}, "climbed": {"_count": 2}, "nearly": {"_count": 1}, "pushed": {"_count": 1}, "began": {"_count": 1}, "I": {"_count": 1}, "poured": {"_count": 1}, "Mr": {"_count": 2}, "empty": {"_count": 2}, "Professor": {"_count": 1}, "his": {"_count": 2}, "close": {"_count": 2}, "Hagrids": {"_count": 1}, "Luna": {"_count": 1}, "Mrs": {"_count": 1}, "she": {"_count": 2}, "hurried": {"_count": 1}, "disappeared": {"_count": 1}, "Draco": {"_count": 1}, "flew": {"_count": 1}, "by": {"_count": 1}, "a": {"_count": 2}, "three": {"_count": 2}, "five": {"_count": 1}, "looked": {"_count": 1}, "muscled": {"_count": 1}, "breathed": {"_count": 1}, "somebody": {"_count": 1}, "screams": {"_count": 1}, "more": {"_count": 1}}, "my": {"_count": 2, "eyes": {"_count": 1}, "trunk": {"_count": 1}}, "his": {"_count": 24, "eyes": {"_count": 8}, "door": {"_count": 1}, "mouth": {"_count": 3}, "bag": {"_count": 3}, "trunk": {"_count": 3}, "own": {"_count": 1}, "wand": {"_count": 2}, "bedroom": {"_count": 2}, "jaw": {"_count": 1}}, "": {"_count": 142, ".": {"_count": 134}, "?": {"_count": 4}, "!": {"_count": 4}}, "window": {"_count": 19, "": {"_count": 6}, "as": {"_count": 3}, "cuffing": {"_count": 1}, "into": {"_count": 1}, "Vernon": {"_count": 1}, "and": {"_count": 4}, "through": {"_count": 1}, "of": {"_count": 1}, "which": {"_count": 1}}, "for": {"_count": 10, "them": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 5}, "traces": {"_count": 1}, "that": {"_count": 1}}, "door": {"_count": 13, "": {"_count": 3}, "mouths": {"_count": 1}, "somehow": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 2}, "and": {"_count": 1}, "two": {"_count": 1}, "of": {"_count": 1}, "leading": {"_count": 1}}, "a": {"_count": 17, "bag": {"_count": 1}, "book": {"_count": 2}, "drawer": {"_count": 2}, "cackle": {"_count": 1}, "joke": {"_count": 2}, "Howler": {"_count": 1}, "number": {"_count": 1}, "door": {"_count": 3}, "window": {"_count": 1}, "Snitch": {"_count": 1}, "ring": {"_count": 1}, "buckle": {"_count": 1}}, "again": {"_count": 19, "": {"_count": 6}, "and": {"_count": 8}, "she": {"_count": 1}, "youre": {"_count": 1}, "they": {"_count": 1}, "as": {"_count": 1}, "admitting": {"_count": 1}}, "yet": {"_count": 3, "again": {"_count": 3}}, "at": {"_count": 15, "once": {"_count": 3}, "that": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 8}, "his": {"_count": 1}, "Bruises": {"_count": 1}}, "on": {"_count": 11, "to": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 6}, "either": {"_count": 1}, "Rons": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "fire": {"_count": 1, "and": {"_count": 1}}, "doors": {"_count": 2, "and": {"_count": 1}, "anything": {"_count": 1}}, "they": {"_count": 2, "piled": {"_count": 1}, "have": {"_count": 1}}, "to": {"_count": 6, "him": {"_count": 1}, "us": {"_count": 1}, "reveal": {"_count": 3}, "admit": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Professor": {"_count": 1}}, "trapdoor": {"_count": 1, "its": {"_count": 1}}, "as": {"_count": 6, "the": {"_count": 2}, "he": {"_count": 2}, "she": {"_count": 1}, "quietly": {"_count": 1}}, "Hermiones": {"_count": 2, "letter": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 6, "the": {"_count": 1}, "Hermione": {"_count": 1}, "whatever": {"_count": 1}, "Harry": {"_count": 1}, "Dudley": {"_count": 1}, "James": {"_count": 1}}, "she": {"_count": 1, "rose": {"_count": 1}}, "against": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "it": {"_count": 26, "Ron": {"_count": 1}, "until": {"_count": 1}, "Just": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 2}, "": {"_count": 10}, "under": {"_count": 1}, "underwater": {"_count": 1}, "if": {"_count": 1}, "just": {"_count": 1}, "in": {"_count": 1}, "looked": {"_count": 1}, "by": {"_count": 1}, "now": {"_count": 2}, "said": {"_count": 1}}, "makes": {"_count": 1, "you": {"_count": 1}}, "gazing": {"_count": 1, "out": {"_count": 1}}, "rain": {"_count": 1, "was": {"_count": 1}}, "once": {"_count": 3, "more": {"_count": 2}, "he": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 7, "saw": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}, "thought": {"_count": 1}, "could": {"_count": 1}, "toppled": {"_count": 1}, "Hermione": {"_count": 1}}, "Fang": {"_count": 1, "went": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 1}, "were": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "so": {"_count": 2, "violently": {"_count": 1}, "that": {"_count": 1}}, "facing": {"_count": 1, "his": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "before": {"_count": 1, "Lupin": {"_count": 1}}, "yer": {"_count": 1, "books": {"_count": 1}}, "our": {"_count": 1, "books": {"_count": 1}}, "their": {"_count": 2, "books": {"_count": 1}, "eyes": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 3, "reflecting": {"_count": 1}, "": {"_count": 2}}, "much": {"_count": 1, "closer": {"_count": 1}}, "Arithmancy": {"_count": 1, "book": {"_count": 1}}, "behind": {"_count": 4, "them": {"_count": 2}, "him": {"_count": 1}, "Harry": {"_count": 1}}, "ground": {"_count": 2, "darkness": {"_count": 1}, "and": {"_count": 1}}, "leading": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "saw": {"_count": 1}}, "front": {"_count": 5, "doors": {"_count": 5}}, "by": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "Aberforth": {"_count": 1}}, "sky": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "drawer": {"_count": 1, "lets": {"_count": 1}}, "four": {"_count": 1, "balls": {"_count": 1}}, "causing": {"_count": 1, "the": {"_count": 1}}, "windows": {"_count": 1, "carrying": {"_count": 1}}, "wooden": {"_count": 1, "crates": {"_count": 1}}, "your": {"_count": 4, "ears": {"_count": 1}, "mind": {"_count": 1}, "books": {"_count": 2}}, "climbed": {"_count": 1, "out": {"_count": 1}}, "fanged": {"_count": 1, "mouths": {"_count": 1}}, "until": {"_count": 1, "you": {"_count": 1}}, "only": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "particularly": {"_count": 1, "when": {"_count": 1}}, "her": {"_count": 2, "crocodileskin": {"_count": 1}, "office": {"_count": 1}}, "egg": {"_count": 1, "in": {"_count": 1}}, "crates": {"_count": 1, "at": {"_count": 1}}, "em": {"_count": 1, "if": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "gray": {"_count": 1, "eyes": {"_count": 1}}, "hostility": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "revealing": {"_count": 2, "a": {"_count": 2}}, "wardrobe": {"_count": 1, "to": {"_count": 1}}, "fast": {"_count": 1, "asleep": {"_count": 1}}, "area": {"_count": 2, "divided": {"_count": 1}, "beyond": {"_count": 1}}, "showing": {"_count": 2, "Harry": {"_count": 1}, "yellow": {"_count": 1}}, "gaping": {"_count": 1, "at": {"_count": 1}}, "country": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "any": {"_count": 2, "book": {"_count": 1}, "lock": {"_count": 1}}, "mouths": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "night": {"_count": 1}}, "Sirius": {"_count": 1, "is": {"_count": 1}}, "automatically": {"_count": 1, "to": {"_count": 1}}, "wide": {"_count": 1, "enough": {"_count": 1}}, "littering": {"_count": 1, "the": {"_count": 1}}, "eye": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "place": {"_count": 1}}, "doorway": {"_count": 3, "onto": {"_count": 1}, "": {"_count": 1}, "filling": {"_count": 1}}, "Im": {"_count": 1, "sick": {"_count": 1}}, "Harrys": {"_count": 1, "mind": {"_count": 1}}, "this": {"_count": 2, "one": {"_count": 1}, "thing": {"_count": 1}}, "envelopes": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "mouth": {"_count": 3, "to": {"_count": 1}, "": {"_count": 2}}, "easily": {"_count": 1, "": {"_count": 1}}, "arms": {"_count": 1, "though": {"_count": 1}}, "warfare": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "air": {"_count": 1, "Glad": {"_count": 1}}, "hard": {"_count": 1, "Zabini": {"_count": 1}}, "like": {"_count": 1, "gargoyles": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "letters": {"_count": 1, "": {"_count": 1}}, "releasing": {"_count": 1, "what": {"_count": 1}}, "Malfoy": {"_count": 2, "was": {"_count": 1}, "marched": {"_count": 1}}, "wrongdoing": {"_count": 1, "although": {"_count": 1}}, "doodling": {"_count": 1, "absently": {"_count": 1}}, "potion": {"_count": 1, "kit": {"_count": 1}}, "making": {"_count": 2, "them": {"_count": 2}}, "if": {"_count": 1, "kids": {"_count": 1}}, "from": {"_count": 2, "inside": {"_count": 1}, "head": {"_count": 1}}, "request": {"_count": 1, "for": {"_count": 1}}, "whether": {"_count": 1, "the": {"_count": 1}}, "flung": {"_count": 1, "himself": {"_count": 1}}, "eyes": {"_count": 1, "misted": {"_count": 1}}, "two": {"_count": 1, "brooms": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "secret": {"_count": 1, "that": {"_count": 1}}, "wound": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "drains": {"_count": 1, "": {"_count": 1}}, "drawers": {"_count": 1, "shook": {"_count": 1}}, "about": {"_count": 1, "why": {"_count": 1}}, "rebellion": {"_count": 1, "Remaining": {"_count": 1}}, "space": {"_count": 1, "where": {"_count": 1}}, "Rons": {"_count": 1, "shirt": {"_count": 1}}, "flesh": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "Dumbledore": {"_count": 1}}, "Reguluss": {"_count": 1, "bedroom": {"_count": 1}}, "till": {"_count": 1, "as": {"_count": 1}}, "A": {"_count": 1, "History": {"_count": 1}}, "cast": {"_count": 1, "aside": {"_count": 1}}, "using": {"_count": 1, "Parseltongue": {"_count": 1}}, "sea": {"_count": 1, "he": {"_count": 1}}, "Ron": {"_count": 1, "Hermione": {"_count": 1}}}, "held": {"_count": 259, "it": {"_count": 33, "up": {"_count": 11}, "high": {"_count": 2}, "at": {"_count": 2}, "as": {"_count": 2}, "close": {"_count": 3}, "open": {"_count": 2}, "in": {"_count": 2}, "out": {"_count": 4}, "to": {"_count": 1}, "suspended": {"_count": 1}, "all": {"_count": 1}, "steady": {"_count": 1}, "tight": {"_count": 1}}, "no": {"_count": 1, "sign": {"_count": 1}}, "together": {"_count": 2, "with": {"_count": 2}}, "peoples": {"_count": 1, "arms": {"_count": 1}}, "a": {"_count": 9, "parrot": {"_count": 1}, "beautiful": {"_count": 1}, "withered": {"_count": 1}, "ghosts": {"_count": 1}, "magnificent": {"_count": 1}, "hand": {"_count": 1}, "portion": {"_count": 1}, "funeral": {"_count": 1}, "lantern": {"_count": 1}}, "up": {"_count": 46, "a": {"_count": 11}, "his": {"_count": 10}, "by": {"_count": 3}, "the": {"_count": 10}, "two": {"_count": 1}, "with": {"_count": 1}, "only": {"_count": 1}, "three": {"_count": 1}, "our": {"_count": 1}, "ten": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 2}, "on": {"_count": 1}, "at": {"_count": 1}, "her": {"_count": 1}}, "out": {"_count": 51, "an": {"_count": 2}, "his": {"_count": 19}, "their": {"_count": 1}, "the": {"_count": 6}, "a": {"_count": 7}, "in": {"_count": 4}, "to": {"_count": 1}, "Scabbers": {"_count": 1}, "by": {"_count": 1}, "for": {"_count": 1}, "her": {"_count": 5}, "before": {"_count": 1}, "as": {"_count": 1}, "The": {"_count": 1}}, "in": {"_count": 13, "its": {"_count": 1}, "the": {"_count": 4}, "Azkaban": {"_count": 1}, "front": {"_count": 2}, "place": {"_count": 1}, "class": {"_count": 1}, "whispers": {"_count": 1}, "his": {"_count": 2}}, "the": {"_count": 14, "door": {"_count": 1}, "broom": {"_count": 1}, "note": {"_count": 1}, "receiver": {"_count": 1}, "paper": {"_count": 1}, "wand": {"_count": 2}, "magical": {"_count": 1}, "Mimbulus": {"_count": 1}, "mirror": {"_count": 1}, "trials": {"_count": 1}, "answer": {"_count": 1}, "book": {"_count": 1}, "Quidditch": {"_count": 1}}, "him": {"_count": 14, "back": {"_count": 6}, "up": {"_count": 1}, "out": {"_count": 1}, "exactly": {"_count": 1}, "still": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}, "fast": {"_count": 1}}, "herself": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 2, "by": {"_count": 1}, "for": {"_count": 1}}, "its": {"_count": 3, "breath": {"_count": 3}}, "wide": {"_count": 1, "so": {"_count": 1}}, "his": {"_count": 10, "bearded": {"_count": 1}, "head": {"_count": 1}, "Firebolt": {"_count": 1}, "wand": {"_count": 2}, "breath": {"_count": 3}, "arms": {"_count": 1}, "tongue": {"_count": 1}}, "back": {"_count": 2, "in": {"_count": 1}, "by": {"_count": 1}}, "high": {"_count": 11, "": {"_count": 3}, "in": {"_count": 3}, "a": {"_count": 1}, "and": {"_count": 2}, "once": {"_count": 1}, "as": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 3, "back": {"_count": 1}, "up": {"_count": 1}, "tight": {"_count": 1}}, "tight": {"_count": 4, "in": {"_count": 1}, "over": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}}, "tightly": {"_count": 1, "before": {"_count": 1}}, "jauntily": {"_count": 1, "high": {"_count": 1}}, "frog": {"_count": 1, "spawn": {"_count": 1}}, "for": {"_count": 3, "over": {"_count": 1}, "so": {"_count": 1}, "him": {"_count": 1}}, "true": {"_count": 1, "for": {"_count": 1}}, "me": {"_count": 1, "up": {"_count": 1}}, "Harrys": {"_count": 1, "gaze": {"_count": 1}}, "her": {"_count": 3, "hand": {"_count": 2}, "back": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "our": {"_count": 1, "investigation": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "open": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "loosely": {"_count": 2, "at": {"_count": 1}, "in": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "fast": {"_count": 2, "by": {"_count": 1}, "in": {"_count": 1}}, "within": {"_count": 1, "that": {"_count": 1}}, "aloft": {"_count": 3, "like": {"_count": 1}, "": {"_count": 2}}, "answers": {"_count": 2, "for": {"_count": 1}, "convinced": {"_count": 1}}, "hostage": {"_count": 1, "by": {"_count": 1}}, "ready": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "slackly": {"_count": 1, "in": {"_count": 1}}, "students": {"_count": 1, "ransom": {"_count": 1}}, "apart": {"_count": 1, "by": {"_count": 1}}}, "air": {"_count": 540, "and": {"_count": 86, "clicked": {"_count": 1}, "landed": {"_count": 5}, "off": {"_count": 1}, "a": {"_count": 5}, "streaked": {"_count": 1}, "then": {"_count": 3}, "every": {"_count": 1}, "floated": {"_count": 2}, "wrapped": {"_count": 1}, "burst": {"_count": 1}, "heard": {"_count": 1}, "fell": {"_count": 3}, "its": {"_count": 1}, "the": {"_count": 3}, "woke": {"_count": 1}, "he": {"_count": 1}, "Black": {"_count": 1}, "back": {"_count": 2}, "out": {"_count": 1}, "whoop": {"_count": 1}, "zoomed": {"_count": 1}, "from": {"_count": 1}, "borne": {"_count": 1}, "stalking": {"_count": 1}, "held": {"_count": 1}, "knocked": {"_count": 1}, "pointed": {"_count": 1}, "slammed": {"_count": 1}, "one": {"_count": 1}, "soared": {"_count": 1}, "Harry": {"_count": 2}, "resettled": {"_count": 1}, "like": {"_count": 1}, "flew": {"_count": 1}, "clicking": {"_count": 1}, "talking": {"_count": 1}, "revealed": {"_count": 1}, "proceeded": {"_count": 1}, "into": {"_count": 1}, "looking": {"_count": 1}, "landing": {"_count": 1}, "dragged": {"_count": 1}, "tipped": {"_count": 1}, "vanished": {"_count": 1}, "opened": {"_count": 1}, "glided": {"_count": 1}, "waving": {"_count": 1}, "returned": {"_count": 1}, "sprinted": {"_count": 1}, "grass": {"_count": 1}, "it": {"_count": 2}, "made": {"_count": 1}, "his": {"_count": 1}, "Hermione": {"_count": 1}, "settled": {"_count": 1}, "most": {"_count": 1}, "was": {"_count": 1}, "green": {"_count": 1}, "snaked": {"_count": 1}, "for": {"_count": 1}, "Hagrid": {"_count": 1}, "through": {"_count": 1}, "all": {"_count": 1}, "caused": {"_count": 1}, "before": {"_count": 1}, "drifted": {"_count": 1}, "marched": {"_count": 1}, "taunted": {"_count": 1}}, "rifle": {"_count": 1, "which": {"_count": 1}}, "hed": {"_count": 1, "trodden": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "to": {"_count": 5, "point": {"_count": 1}, "try": {"_count": 1}, "deflect": {"_count": 1}, "hang": {"_count": 1}, "join": {"_count": 1}}, "rushed": {"_count": 4, "past": {"_count": 2}, "through": {"_count": 2}}, "became": {"_count": 1, "colder": {"_count": 1}}, "on": {"_count": 6, "broomsticks": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 34, "great": {"_count": 1}, "summer": {"_count": 1}, "one": {"_count": 3}, "vindictive": {"_count": 1}, "Father": {"_count": 1}, "impatience": {"_count": 1}, "enormous": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 4}, "getting": {"_count": 1}, "trying": {"_count": 1}, "explaining": {"_count": 1}, "neglect": {"_count": 1}, "being": {"_count": 1}, "awful": {"_count": 1}, "smugness": {"_count": 1}, "exhaustion": {"_count": 1}, "bemusement": {"_count": 1}, "delighted": {"_count": 1}, "forcing": {"_count": 1}, "triumphant": {"_count": 1}, "clutching": {"_count": 1}, "mystery": {"_count": 1}, "unkemptness": {"_count": 1}, "interest": {"_count": 1}, "hardly": {"_count": 1}, "nervous": {"_count": 1}, "wholehearted": {"_count": 1}, "having": {"_count": 1}}, "": {"_count": 116, ".": {"_count": 114}, "!": {"_count": 1}, "?": {"_count": 1}}, "several": {"_count": 1, "people": {"_count": 1}}, "Dead": {"_count": 1, "flies": {"_count": 1}}, "being": {"_count": 1, "let": {"_count": 1}}, "clutching": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 19, "it": {"_count": 2}, "everyone": {"_count": 1}, "she": {"_count": 3}, "they": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}, "though": {"_count": 6}, "the": {"_count": 2}, "if": {"_count": 1}, "Voldemort": {"_count": 1}}, "it": {"_count": 4, "zoomed": {"_count": 1}, "landed": {"_count": 1}, "was": {"_count": 1}, "could": {"_count": 1}}, "Wood": {"_count": 1, "throwing": {"_count": 1}}, "turned": {"_count": 2, "slowly": {"_count": 1}, "over": {"_count": 1}}, "but": {"_count": 4, "it": {"_count": 2}, "Harry": {"_count": 1}, "they": {"_count": 1}}, "with": {"_count": 5, "howls": {"_count": 1}, "the": {"_count": 2}, "Tonks": {"_count": 1}, "his": {"_count": 1}}, "Harry": {"_count": 6, "was": {"_count": 1}, "felt": {"_count": 2}, "pushed": {"_count": 1}, "hesitated": {"_count": 1}, "thought": {"_count": 1}}, "behind": {"_count": 3, "him": {"_count": 3}}, "she": {"_count": 1, "and": {"_count": 1}}, "Snape": {"_count": 1, "turned": {"_count": 1}}, "had": {"_count": 3, "never": {"_count": 1}, "blown": {"_count": 1}, "to": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 13, "shock": {"_count": 1}, "front": {"_count": 4}, "its": {"_count": 1}, "the": {"_count": 2}, "triumph": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 2}, "celebration": {"_count": 1}}, "again": {"_count": 12, "": {"_count": 6}, "Harry": {"_count": 1}, "and": {"_count": 3}, "with": {"_count": 1}, "so": {"_count": 1}}, "soaring": {"_count": 1, "into": {"_count": 1}}, "whipping": {"_count": 2, "his": {"_count": 2}}, "was": {"_count": 18, "soon": {"_count": 1}, "suddenly": {"_count": 4}, "whipping": {"_count": 1}, "very": {"_count": 1}, "warm": {"_count": 1}, "perfumed": {"_count": 1}, "thick": {"_count": 1}, "making": {"_count": 1}, "full": {"_count": 2}, "slapping": {"_count": 1}, "fluttering": {"_count": 1}, "soothing": {"_count": 1}, "rent": {"_count": 1}, "thrust": {"_count": 1}}, "then": {"_count": 2, "we": {"_count": 1}, "crashed": {"_count": 1}}, "whipped": {"_count": 1, "his": {"_count": 1}}, "toward": {"_count": 5, "them": {"_count": 4}, "the": {"_count": 1}}, "like": {"_count": 9, "missiles": {"_count": 1}, "a": {"_count": 4}, "breaking": {"_count": 1}, "battle": {"_count": 1}, "so": {"_count": 1}, "the": {"_count": 1}}, "emitting": {"_count": 1, "loud": {"_count": 1}}, "so": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "which": {"_count": 4, "she": {"_count": 2}, "he": {"_count": 1}, "hovered": {"_count": 1}}, "Ron": {"_count": 1, "caught": {"_count": 1}}, "writing": {"_count": 1, "three": {"_count": 1}}, "pleasant": {"_count": 1, "on": {"_count": 1}}, "making": {"_count": 1, "apoplectic": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 5, "its": {"_count": 1}, "ze": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "the": {"_count": 8, "werewolf": {"_count": 1}, "scarlet": {"_count": 1}, "stands": {"_count": 1}, "dungeon": {"_count": 1}, "window": {"_count": 1}, "iron": {"_count": 1}, "diadem": {"_count": 1}, "falling": {"_count": 1}}, "staring": {"_count": 1, "in": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "around": {"_count": 4, "them": {"_count": 3}, "her": {"_count": 1}}, "blocking": {"_count": 1, "him": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "drifted": {"_count": 1, "in": {"_count": 1}}, "indeed": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 4, "Hagrid": {"_count": 1}, "anybody": {"_count": 1}, "him": {"_count": 1}, "Hermiones": {"_count": 1}}, "that": {"_count": 6, "missed": {"_count": 1}, "he": {"_count": 1}, "day": {"_count": 1}, "showed": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}}, "soon": {"_count": 1, "Pettigrew": {"_count": 1}}, "buffeted": {"_count": 1, "this": {"_count": 1}}, "at": {"_count": 4, "Georges": {"_count": 1}, "Wormtails": {"_count": 1}, "the": {"_count": 2}}, "chasing": {"_count": 1, "what": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "mingling": {"_count": 1, "with": {"_count": 1}}, "itself": {"_count": 2, "seemed": {"_count": 1}, "quivering": {"_count": 1}}, "after": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 1}, "Zabini": {"_count": 1}}, "while": {"_count": 1, "Troy": {"_count": 1}}, "clearly": {"_count": 1, "telling": {"_count": 1}}, "his": {"_count": 2, "fist": {"_count": 1}, "robes": {"_count": 1}}, "surrounding": {"_count": 1, "them": {"_count": 1}}, "whenever": {"_count": 1, "they": {"_count": 1}}, "when": {"_count": 3, "Harry": {"_count": 1}, "James": {"_count": 1}, "will": {"_count": 1}}, "fell": {"_count": 1, "with": {"_count": 1}}, "its": {"_count": 1, "legs": {"_count": 1}}, "including": {"_count": 1, "Rons": {"_count": 1}}, "instantaneously": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 4, "a": {"_count": 1}, "me": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}}, "vanishing": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "charred": {"_count": 1}}, "slipped": {"_count": 1, "through": {"_count": 1}}, "ricocheting": {"_count": 1, "off": {"_count": 1}}, "were": {"_count": 2, "only": {"_count": 1}, "exceedingly": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 2, "wands": {"_count": 1}, "blank": {"_count": 1}}, "for": {"_count": 1, "once": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "once": {"_count": 2, "more": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "passages": {"_count": 1, "and": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "he": {"_count": 2, "straightened": {"_count": 1}, "set": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "streamed": {"_count": 1, "out": {"_count": 1}}, "straightbacked": {"_count": 1, "and": {"_count": 1}}, "finding": {"_count": 1, "it": {"_count": 1}}, "above": {"_count": 2, "her": {"_count": 1}, "them": {"_count": 1}}, "onto": {"_count": 1, "them": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "might": {"_count": 1, "do": {"_count": 1}}, "wafted": {"_count": 1, "over": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "one": {"_count": 1, "handed": {"_count": 1}}, "wriggling": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 1}, "about": {"_count": 1}}, "unnoticed": {"_count": 1, "by": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "pushed": {"_count": 1, "one": {"_count": 1}}, "gave": {"_count": 1, "Harry": {"_count": 1}}, "flew": {"_count": 1, "toward": {"_count": 1}}, "Glad": {"_count": 1, "hes": {"_count": 1}}, "Ah": {"_count": 1, "Harry": {"_count": 1}}, "not": {"_count": 1, "as": {"_count": 1}}, "everyone": {"_count": 1, "lets": {"_count": 1}}, "looking": {"_count": 1, "rather": {"_count": 1}}, "higher": {"_count": 1, "than": {"_count": 1}}, "hopefully": {"_count": 1, "": {"_count": 1}}, "extending": {"_count": 1, "from": {"_count": 1}}, "six": {"_count": 1, "or": {"_count": 1}}, "ripped": {"_count": 1, "at": {"_count": 1}}, "None": {"_count": 1, "of": {"_count": 1}}, "unbidden": {"_count": 1, "unwelcome": {"_count": 1}}, "fast": {"_count": 1, "his": {"_count": 1}}, "completely": {"_count": 1, "out": {"_count": 1}}, "hurtling": {"_count": 1, "straight": {"_count": 1}}, "leaving": {"_count": 1, "Fleurs": {"_count": 1}}, "His": {"_count": 2, "hollow": {"_count": 1}, "glasses": {"_count": 1}}, "right": {"_count": 1, "beside": {"_count": 1}}, "shimmering": {"_count": 1, "between": {"_count": 1}}, "hit": {"_count": 1, "them": {"_count": 1}}, "It": {"_count": 2, "was": {"_count": 1}, "climbed": {"_count": 1}}, "stinging": {"_count": 1, "their": {"_count": 1}}, "filled": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "smacking": {"_count": 1, "Harry": {"_count": 1}}, "squawking": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "closing": {"_count": 1, "in": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "missing": {"_count": 1, "by": {"_count": 1}}, "exploded": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "The": {"_count": 1, "fighters": {"_count": 1}}, "flicker": {"_count": 1, "feebly": {"_count": 1}}, "quite": {"_count": 1, "literally": {"_count": 1}}, "staying": {"_count": 1, "up": {"_count": 1}}, "gleaming": {"_count": 1, "in": {"_count": 1}}}, "clicked": {"_count": 40, "it": {"_count": 6, "": {"_count": 3}, "again": {"_count": 1}, "once": {"_count": 1}, "Their": {"_count": 1}}, "the": {"_count": 9, "PutOuter": {"_count": 1}, "spider": {"_count": 2}, "unlighter": {"_count": 1}, "Deluminator": {"_count": 5}}, "on": {"_count": 2, "upstairs": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "Ron": {"_count": 1}}, "open": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 7, "pincers": {"_count": 2}, "fingers": {"_count": 3}, "tongue": {"_count": 1}, "razorsharp": {"_count": 1}}, "Aragog": {"_count": 1, "fretfully": {"_count": 1}}, "her": {"_count": 6, "beak": {"_count": 5}, "bony": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 2, "midair": {"_count": 1}, "a": {"_count": 1}}, "shut": {"_count": 1, "behind": {"_count": 1}}}, "nearest": {"_count": 97, "street": {"_count": 1, "lamp": {"_count": 1}}, "parcel": {"_count": 1, "": {"_count": 1}}, "shop": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 3, "sat": {"_count": 1}, "backed": {"_count": 1}, "": {"_count": 1}}, "them": {"_count": 5, "I": {"_count": 1}, "": {"_count": 3}, "Father": {"_count": 1}}, "and": {"_count": 2, "had": {"_count": 1}, "shrank": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Headmaster": {"_count": 1, "just": {"_count": 1}}, "stairs": {"_count": 1, "along": {"_count": 1}}, "pillar": {"_count": 2, "watching": {"_count": 1}, "": {"_count": 1}}, "window": {"_count": 6, "reflected": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 2}, "across": {"_count": 1}}, "the": {"_count": 9, "door": {"_count": 2}, "doors": {"_count": 2}, "receiver": {"_count": 1}, "fire": {"_count": 1}, "Slytherin": {"_count": 1}, "Ravenclaw": {"_count": 1}, "back": {"_count": 1}}, "keyhole": {"_count": 1, "with": {"_count": 1}}, "tureen": {"_count": 1, "": {"_count": 1}}, "book": {"_count": 1, "and": {"_count": 1}}, "well": {"_count": 1, "get": {"_count": 1}}, "dementor": {"_count": 2, "seemed": {"_count": 1}, "had": {"_count": 1}}, "tree": {"_count": 3, "then": {"_count": 1}, "": {"_count": 1}, "landing": {"_count": 1}}, "one": {"_count": 5, "to": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "which": {"_count": 1}, "when": {"_count": 1}}, "entrance": {"_count": 1, "which": {"_count": 1}}, "to": {"_count": 5, "them": {"_count": 3}, "him": {"_count": 1}, "Harry": {"_count": 1}}, "thing": {"_count": 1, "to": {"_count": 1}}, "table": {"_count": 1, "and": {"_count": 1}}, "staircase": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 1, "town": {"_count": 1}}, "barn": {"_count": 1, "owl": {"_count": 1}}, "streetlamp": {"_count": 1, "went": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "cubicle": {"_count": 1, "read": {"_count": 1}}, "unoccupied": {"_count": 1, "coach": {"_count": 1}}, "plate": {"_count": 1, "of": {"_count": 1}}, "flight": {"_count": 1, "of": {"_count": 1}}, "greenhouse": {"_count": 1, "opened": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "armchair": {"_count": 1, "and": {"_count": 1}}, "cushion": {"_count": 1, "and": {"_count": 1}}, "row": {"_count": 1, "of": {"_count": 1}}, "bench": {"_count": 1, "looking": {"_count": 1}}, "shelter": {"_count": 1, "they": {"_count": 1}}, "chair": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "looked": {"_count": 1}}, "lamppost": {"_count": 1, "which": {"_count": 1}}, "vase": {"_count": 1, "of": {"_count": 1}}, "ones": {"_count": 1, "shining": {"_count": 1}}, "thestral": {"_count": 1, "placed": {"_count": 1}}, "down": {"_count": 1, "button": {"_count": 1}}, "torches": {"_count": 1, "flickering": {"_count": 1}}, "Death": {"_count": 2, "Eater": {"_count": 2}}, "Harry": {"_count": 1, "IN": {"_count": 1}}, "realized": {"_count": 1, "he": {"_count": 1}}, "classroom": {"_count": 1, "and": {"_count": 1}}, "apothecary": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "goldcolored": {"_count": 1}}, "little": {"_count": 1, "table": {"_count": 1}}, "boulder": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "froze": {"_count": 1}}, "trees": {"_count": 1, "and": {"_count": 1}}, "grave": {"_count": 1, "": {"_count": 1}}, "side": {"_count": 1, "street": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "pile": {"_count": 1, "of": {"_count": 1}}}, "lamp": {"_count": 49, "went": {"_count": 2, "out": {"_count": 2}}, "flickered": {"_count": 2, "into": {"_count": 1}, "on": {"_count": 1}}, "came": {"_count": 1, "bobbing": {"_count": 1}}, "coming": {"_count": 1, "out": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "read": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "down": {"_count": 1, "carefully": {"_count": 1}}, "which": {"_count": 1, "went": {"_count": 1}}, "flared": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 5, "leading": {"_count": 1}, "started": {"_count": 1}, "rolled": {"_count": 1}, "Morfin": {"_count": 1}, "Nevilles": {"_count": 1}}, "bobbing": {"_count": 2, "away": {"_count": 1}, "in": {"_count": 1}}, "up": {"_count": 1, "high": {"_count": 1}}, "dangling": {"_count": 2, "from": {"_count": 2}}, "rattle": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "outside": {"_count": 1, "the": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 2, "gold": {"_count": 1}, "some": {"_count": 1}}, "he": {"_count": 1, "opened": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 4}}, "as": {"_count": 1, "the": {"_count": 1}}, "hung": {"_count": 1, "from": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "lit": {"_count": 1, "corridors": {"_count": 1}}, "stood": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "squealing": {"_count": 1, "Stick": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "flew": {"_count": 1, "back": {"_count": 1}}}, "pop": {"_count": 30, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 7, "a": {"_count": 3}, "staring": {"_count": 1}, "Trevor": {"_count": 1}, "Ludo": {"_count": 1}, "the": {"_count": 1}}, "up": {"_count": 4, "as": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 1}, "any": {"_count": 1}}, "for": {"_count": 1, "days": {"_count": 1}}, "Not": {"_count": 1, "exactly": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}}, "with": {"_count": 1, "excitement": {"_count": 1}}, "a": {"_count": 1, "slim": {"_count": 1}}, "another": {"_count": 1, "hooded": {"_count": 1}}, "into": {"_count": 2, "existence": {"_count": 1}, "sight": {"_count": 1}}, "the": {"_count": 1, "question": {"_count": 1}}, "as": {"_count": 2, "Kingsley": {"_count": 1}, "she": {"_count": 1}}, "music": {"_count": 1, "as": {"_count": 1}}}, "flickered": {"_count": 26, "into": {"_count": 2, "darkness": {"_count": 1}, "life": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 2, "again": {"_count": 1}, "on": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "toward": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 3, "went": {"_count": 1}, "died": {"_count": 1}, "flashed": {"_count": 1}}, "in": {"_count": 1, "Blacks": {"_count": 1}}, "over": {"_count": 2, "Ron": {"_count": 1}, "Freds": {"_count": 1}}, "from": {"_count": 1, "Mr": {"_count": 1}}, "very": {"_count": 1, "slightly": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}, "past": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "oddly": {"_count": 1, "before": {"_count": 1}}, "Harrys": {"_count": 1, "heart": {"_count": 1}}, "feebly": {"_count": 1, "between": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}}, "darkness": {"_count": 222, "": {"_count": 74, ".": {"_count": 74}}, "this": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 6, "a": {"_count": 4}, "his": {"_count": 1}, "the": {"_count": 1}}, "its": {"_count": 1, "rear": {"_count": 1}}, "their": {"_count": 1, "footsteps": {"_count": 1}}, "became": {"_count": 1, "complete": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "that": {"_count": 1, "both": {"_count": 1}}, "suddenly": {"_count": 1, "lifted": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "casting": {"_count": 1, "long": {"_count": 1}}, "they": {"_count": 4, "walked": {"_count": 1}, "watched": {"_count": 1}, "fear": {"_count": 1}, "trailed": {"_count": 1}}, "scattering": {"_count": 2, "bushes": {"_count": 1}, "before": {"_count": 1}}, "within": {"_count": 1, "has": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 2}, "Hagrid": {"_count": 1}, "if": {"_count": 1}}, "while": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 3, "fumbled": {"_count": 1}, "had": {"_count": 1}, "caught": {"_count": 1}}, "was": {"_count": 4, "settling": {"_count": 1}, "definitely": {"_count": 1}, "somehow": {"_count": 1}, "clearly": {"_count": 1}}, "Crookshanks": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "every": {"_count": 1}}, "falling": {"_count": 1, "thickly": {"_count": 1}}, "from": {"_count": 2, "every": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 1, "wasnt": {"_count": 1}}, "spread": {"_count": 1, "like": {"_count": 1}}, "Harrys": {"_count": 2, "eyes": {"_count": 1}, "face": {"_count": 1}}, "Stop": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "Fred": {"_count": 1}}, "a": {"_count": 2, "muffled": {"_count": 1}, "phoenix": {"_count": 1}}, "making": {"_count": 2, "him": {"_count": 1}, "all": {"_count": 1}}, "like": {"_count": 1, "fiery": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "and": {"_count": 17, "then": {"_count": 2}, "he": {"_count": 2}, "as": {"_count": 1}, "held": {"_count": 1}, "landed": {"_count": 1}, "out": {"_count": 1}, "now": {"_count": 1}, "felt": {"_count": 1}, "the": {"_count": 3}, "near": {"_count": 1}, "joined": {"_count": 1}, "seconds": {"_count": 1}, "made": {"_count": 1}}, "so": {"_count": 2, "close": {"_count": 1}, "it": {"_count": 1}}, "forests": {"_count": 1, "of": {"_count": 1}}, "swallowed": {"_count": 1, "him": {"_count": 1}}, "Harry": {"_count": 2, "felt": {"_count": 1}, "saw": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "pressed": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "outside": {"_count": 2, "": {"_count": 1}, "even": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "which": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "closed": {"_count": 1, "over": {"_count": 1}}, "fell": {"_count": 3, "and": {"_count": 2}, "extinguishing": {"_count": 1}}, "the": {"_count": 4, "strange": {"_count": 1}, "long": {"_count": 1}, "third": {"_count": 1}, "wind": {"_count": 1}}, "to": {"_count": 6, "open": {"_count": 1}, "shield": {"_count": 1}, "make": {"_count": 1}, "wrestle": {"_count": 1}, "stand": {"_count": 1}, "recover": {"_count": 1}}, "looking": {"_count": 1, "down": {"_count": 1}}, "once": {"_count": 5, "more": {"_count": 4}, "again": {"_count": 1}}, "right": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "an": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "breathing": {"_count": 1, "in": {"_count": 1}}, "nothing": {"_count": 1, "more": {"_count": 1}}, "fire": {"_count": 1, "erupted": {"_count": 1}}, "complete": {"_count": 1, "but": {"_count": 1}}, "all": {"_count": 2, "we": {"_count": 1}, "around": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "any": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "drawing": {"_count": 1, "closer": {"_count": 1}}, "It": {"_count": 1, "grew": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 2}, "its": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "nothing": {"_count": 1}}, "those": {"_count": 1, "red": {"_count": 1}}, "Nagini": {"_count": 1, "had": {"_count": 1}}, "drew": {"_count": 1, "in": {"_count": 1}}, "deepened": {"_count": 1, "with": {"_count": 1}}, "had": {"_count": 2, "swallowed": {"_count": 1}, "lightened": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "everything": {"_count": 1}}, "listening": {"_count": 2, "to": {"_count": 2}}, "ideas": {"_count": 1, "both": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "their": {"_count": 1}}, "Caterwauling": {"_count": 1, "Charms": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "swirling": {"_count": 1, "figures": {"_count": 1}}, "traveling": {"_count": 1, "deeper": {"_count": 1}}, "directly": {"_count": 1, "at": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}}, "Twelve": {"_count": 8, "times": {"_count": 1, "he": {"_count": 1}}, "feet": {"_count": 2, "tall": {"_count": 2}}, "years": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "FailSafe": {"_count": 2, "Ways": {"_count": 2}}, "andthreequarter": {"_count": 1, "inches": {"_count": 1}}}, "times": {"_count": 227, "he": {"_count": 12, "clicked": {"_count": 1}, "even": {"_count": 1}, "made": {"_count": 1}, "wasnt": {"_count": 1}, "had": {"_count": 2}, "merely": {"_count": 1}, "passed": {"_count": 1}, "walked": {"_count": 2}, "saw": {"_count": 1}, "jerked": {"_count": 1}}, "as": {"_count": 5, "wide": {"_count": 1}, "broad": {"_count": 2}, "it": {"_count": 1}, "many": {"_count": 1}}, "bigger": {"_count": 1, "than": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 3}}, "Dumbledore": {"_count": 2, "is": {"_count": 1}, "went": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "": {"_count": 36, ".": {"_count": 33}, "?": {"_count": 3}}, "a": {"_count": 11, "week": {"_count": 5}, "day": {"_count": 5}, "dog": {"_count": 1}}, "without": {"_count": 2, "anyone": {"_count": 1}, "taking": {"_count": 1}}, "in": {"_count": 15, "our": {"_count": 1}, "length": {"_count": 1}, "a": {"_count": 5}, "the": {"_count": 3}, "detention": {"_count": 1}, "various": {"_count": 1}, "quick": {"_count": 1}, "which": {"_count": 1}, "golden": {"_count": 1}}, "said": {"_count": 4, "Dumbledore": {"_count": 2}, "Tonks": {"_count": 1}, "Lupin": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 2}}, "and": {"_count": 9, "then": {"_count": 1}, "no": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 1}, "Harry": {"_count": 1}, "finally": {"_count": 1}, "certain": {"_count": 1}}, "you": {"_count": 2, "can": {"_count": 1}, "heard": {"_count": 1}}, "already": {"_count": 3, "said": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}}, "louder": {"_count": 1, "than": {"_count": 1}}, "but": {"_count": 3, "with": {"_count": 1}, "not": {"_count": 1}, "some": {"_count": 1}}, "flown": {"_count": 1, "hasnt": {"_count": 1}}, "so": {"_count": 5, "unlucky": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}, "far": {"_count": 1}, "without": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Why": {"_count": 1, "cant": {"_count": 1}}, "do": {"_count": 4, "I": {"_count": 4}}, "before": {"_count": 11, "had": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "acting": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "but": {"_count": 2}}, "we": {"_count": 1, "were": {"_count": 1}}, "hed": {"_count": 1, "ever": {"_count": 1}}, "I": {"_count": 7, "couldve": {"_count": 1}, "had": {"_count": 1}, "saw": {"_count": 1}, "can": {"_count": 1}, "came": {"_count": 1}, "told": {"_count": 1}, "have": {"_count": 1}}, "their": {"_count": 1, "natural": {"_count": 1}}, "worse": {"_count": 3, "": {"_count": 2}, "when": {"_count": 1}}, "made": {"_count": 1, "an": {"_count": 1}}, "its": {"_count": 1, "usual": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "to": {"_count": 5, "check": {"_count": 1}, "nick": {"_count": 1}, "buy": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 4, "my": {"_count": 1}, "great": {"_count": 1}, "old": {"_count": 1}, "their": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "having": {"_count": 1, "defense": {"_count": 1}}, "had": {"_count": 1, "I": {"_count": 1}}, "have": {"_count": 3, "I": {"_count": 1}, "you": {"_count": 2}}, "Kevin": {"_count": 1, "": {"_count": 1}}, "Carpets": {"_count": 1, "are": {"_count": 1}}, "ahead": {"_count": 1, "for": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "upon": {"_count": 2, "the": {"_count": 1}, "Professor": {"_count": 1}}, "Filch": {"_count": 1, "the": {"_count": 1}}, "half": {"_count": 1, "gone": {"_count": 1}}, "your": {"_count": 1, "picture": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "is": {"_count": 1, "none": {"_count": 1}}, "when": {"_count": 6, "I": {"_count": 2}, "it": {"_count": 1}, "your": {"_count": 1}, "Malfoy": {"_count": 1}, "she": {"_count": 1}}, "that": {"_count": 1, "day": {"_count": 1}}, "too": {"_count": 1, "big": {"_count": 1}}, "Kreacher": {"_count": 1, "sidled": {"_count": 1}}, "more": {"_count": 2, "though": {"_count": 1}, "than": {"_count": 1}}, "funnier": {"_count": 1, "than": {"_count": 1}}, "firstly": {"_count": 1, "in": {"_count": 1}}, "counterclockwise": {"_count": 1, "allow": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "come": {"_count": 1, "when": {"_count": 1}}, "ticking": {"_count": 1, "on": {"_count": 1}}, "concentrating": {"_count": 1, "hard": {"_count": 1}}, "merely": {"_count": 1, "causing": {"_count": 1}}, "Well": {"_count": 1, "if": {"_count": 1}}, "inside": {"_count": 1, "because": {"_count": 1}}, "plunging": {"_count": 1, "his": {"_count": 1}}, "sake": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "this": {"_count": 1}}, "his": {"_count": 2, "breathing": {"_count": 1}, "guts": {"_count": 1}}, "innit": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "Malfoy": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "tighter": {"_count": 1, "and": {"_count": 1}}, "rip": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "should": {"_count": 1}}, "the": {"_count": 1, "wizard": {"_count": 1}}, "they": {"_count": 2, "stopped": {"_count": 1}, "fell": {"_count": 1}}, "Hermione": {"_count": 1, "seemed": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "PutOuter": {"_count": 3, "until": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "stolen": {"_count": 1}}}, "lights": {"_count": 66, "left": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 9}, "!": {"_count": 2}}, "of": {"_count": 3, "passing": {"_count": 1}, "Muggle": {"_count": 1}, "Hagrid": {"_count": 1}}, "blazing": {"_count": 1, "angrily": {"_count": 1}}, "shone": {"_count": 2, "from": {"_count": 2}}, "had": {"_count": 1, "come": {"_count": 1}}, "are": {"_count": 1, "going": {"_count": 1}}, "that": {"_count": 2, "turned": {"_count": 1}, "glistened": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "growing": {"_count": 2, "slowly": {"_count": 1}, "nearer": {"_count": 1}}, "glimmering": {"_count": 1, "in": {"_count": 1}}, "shining": {"_count": 2, "from": {"_count": 1}, "in": {"_count": 1}}, "shimmering": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 6}}, "he": {"_count": 3, "said": {"_count": 1}, "had": {"_count": 2}}, "meaning": {"_count": 1, "hundreds": {"_count": 1}}, "the": {"_count": 2, "fires": {"_count": 1}, "outlines": {"_count": 1}}, "popped": {"_count": 1, "in": {"_count": 1}}, "might": {"_count": 1, "belong": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 4, "in": {"_count": 2}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "shivered": {"_count": 1, "on": {"_count": 1}}, "flickered": {"_count": 1, "back": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "were": {"_count": 2, "growing": {"_count": 1}, "popping": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "burst": {"_count": 1, "in": {"_count": 1}}, "glinting": {"_count": 1, "in": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "I": {"_count": 1, "spose": {"_count": 1}}, "kept": {"_count": 1, "flashing": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "green": {"_count": 1}}, "whisked": {"_count": 1, "back": {"_count": 1}}, "no": {"_count": 1, "sound": {"_count": 1}}}, "whole": {"_count": 352, "street": {"_count": 3, "were": {"_count": 1}, "full": {"_count": 1}, "to": {"_count": 1}}, "house": {"_count": 2, "smelled": {"_count": 1}, "Ron": {"_count": 1}}, "year": {"_count": 4, "before": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "We": {"_count": 1}}, "life": {"_count": 6, "had": {"_count": 2}, "more": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "shack": {"_count": 1, "shivered": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}, "damp": {"_count": 1, "hut": {"_count": 1}}, "hut": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 26, "the": {"_count": 7}, "Hogwarts": {"_count": 2}, "London": {"_count": 1}, "Gryffindor": {"_count": 5}, "Charms": {"_count": 1}, "breakfast": {"_count": 1}, "Harrys": {"_count": 2}, "Little": {"_count": 1}, "Sunday": {"_count": 1}, "his": {"_count": 2}, "break": {"_count": 1}, "Rons": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "school": {"_count": 17, "": {"_count": 2}, "seemed": {"_count": 2}, "knows": {"_count": 1}, "started": {"_count": 1}, "was": {"_count": 2}, "turned": {"_count": 1}, "all": {"_count": 1}, "does": {"_count": 1}, "waited": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}, "what": {"_count": 1}, "that": {"_count": 1}, "like": {"_count": 1}}, "hall": {"_count": 4, "burst": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}}, "minute": {"_count": 2, "before": {"_count": 2}}, "head": {"_count": 3, "swung": {"_count": 1}, "was": {"_count": 2}}, "class": {"_count": 16, "was": {"_count": 7}, "held": {"_count": 1}, "": {"_count": 2}, "jumped": {"_count": 1}, "had": {"_count": 2}, "stared": {"_count": 1}, "seemed": {"_count": 1}, "looked": {"_count": 1}}, "castle": {"_count": 4, "": {"_count": 1}, "will": {"_count": 1}, "he": {"_count": 1}, "shook": {"_count": 1}}, "space": {"_count": 1, "between": {"_count": 1}}, "room": {"_count": 8, "tremble": {"_count": 1}, "": {"_count": 2}, "gasped": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 2}, "stood": {"_count": 1}}, "crowd": {"_count": 5, "gasped": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 3}}, "schools": {"_count": 3, "out": {"_count": 1}, "talking": {"_count": 1}, "going": {"_count": 1}}, "night": {"_count": 1, "of": {"_count": 1}}, "wonderful": {"_count": 1, "week": {"_count": 1}}, "body": {"_count": 12, "rigid": {"_count": 1}, "went": {"_count": 1}, "sort": {"_count": 1}, "and": {"_count": 1}, "began": {"_count": 1}, "shaking": {"_count": 1}, "": {"_count": 1}, "revealed": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "to": {"_count": 1}}, "attention": {"_count": 2, "to": {"_count": 1}, "was": {"_count": 1}}, "summer": {"_count": 1, "ahead": {"_count": 1}}, "kitchen": {"_count": 1, "Mrs": {"_count": 1}}, "story": {"_count": 8, "had": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 2}, "but": {"_count": 1}, "would": {"_count": 1}}, "thing": {"_count": 23, "over": {"_count": 2}, "is": {"_count": 1}, "was": {"_count": 3}, "as": {"_count": 1}, "seemed": {"_count": 1}, "would": {"_count": 1}, "shattered": {"_count": 1}, "seem": {"_count": 1}, "had": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}, "nicely": {"_count": 1}, "to": {"_count": 1}, "Level": {"_count": 1}, "horribly": {"_count": 1}, "starts": {"_count": 1}, "": {"_count": 1}, "swung": {"_count": 1}, "with": {"_count": 1}}, "human": {"_count": 1, "fingernails": {"_count": 1}}, "lot": {"_count": 9, "into": {"_count": 1}, "of": {"_count": 6}, "at": {"_count": 1}, "blew": {"_count": 1}}, "booklist": {"_count": 1, "": {"_count": 1}}, "family": {"_count": 11, "everyone": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 5}, "follow": {"_count": 1}, "are": {"_count": 1}, "itll": {"_count": 1}, "have": {"_count": 1}}, "minutes": {"_count": 2, "trying": {"_count": 1}, "checking": {"_count": 1}}, "new": {"_count": 4, "training": {"_count": 1}, "light": {"_count": 1}, "vista": {"_count": 1}, "person": {"_count": 1}}, "Slytherin": {"_count": 1, "team": {"_count": 1}}, "things": {"_count": 1, "weird": {"_count": 1}}, "library": {"_count": 1, "before": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "future": {"_count": 1, "she": {"_count": 1}}, "business": {"_count": 1, "was": {"_count": 1}}, "point": {"_count": 6, "of": {"_count": 4}, "you": {"_count": 1}, "he": {"_count": 1}}, "mystery": {"_count": 1, "might": {"_count": 1}}, "affair": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "aspect": {"_count": 1, "changed": {"_count": 1}}, "tunnel": {"_count": 1, "caved": {"_count": 1}}, "fascinating": {"_count": 1, "history": {"_count": 1}}, "years": {"_count": 2, "to": {"_count": 1}, "sir": {"_count": 1}}, "lined": {"_count": 1, "with": {"_count": 1}}, "weight": {"_count": 1, "behind": {"_count": 1}}, "hour": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "farmhouse": {"_count": 1, "had": {"_count": 1}}, "bunch": {"_count": 4, "of": {"_count": 4}}, "common": {"_count": 3, "room": {"_count": 3}}, "team": {"_count": 7, "splashed": {"_count": 1}, "was": {"_count": 2}, "there": {"_count": 1}, "and": {"_count": 1}, "please": {"_count": 1}, "would": {"_count": 1}}, "pub": {"_count": 2, "Hagrid": {"_count": 1}, "had": {"_count": 1}}, "village": {"_count": 3, "twice": {"_count": 1}, "seemed": {"_count": 1}, "": {"_count": 1}}, "countrys": {"_count": 1, "on": {"_count": 1}}, "weeks": {"_count": 2, "my": {"_count": 1}, "after": {"_count": 1}}, "House": {"_count": 3, "stayed": {"_count": 1}, "to": {"_count": 1}, "would": {"_count": 1}}, "classs": {"_count": 1, "amazement": {"_count": 1}}, "face": {"_count": 6, "was": {"_count": 3}, "sopping": {"_count": 1}, "seemed": {"_count": 1}, "contorted": {"_count": 1}}, "brain": {"_count": 1, "in": {"_count": 1}}, "Black": {"_count": 2, "affair": {"_count": 1}, "family": {"_count": 1}}, "months": {"_count": 1, "before": {"_count": 1}}, "Weasley": {"_count": 2, "family": {"_count": 2}}, "Ministrys": {"_count": 3, "been": {"_count": 1}, "going": {"_count": 1}, "looking": {"_count": 1}}, "stadium": {"_count": 1, "gave": {"_count": 1}}, "Ministry": {"_count": 4, "of": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}}, "Hall": {"_count": 4, "the": {"_count": 1}, "to": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "Harry": {"_count": 3, "had": {"_count": 1}, "thought": {"_count": 2}}, "load": {"_count": 1, "of": {"_count": 1}}, "tournaments": {"_count": 1, "supposed": {"_count": 1}}, "weekends": {"_count": 1, "though": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 7, "healthy": {"_count": 1}, "started": {"_count": 1}, "untarnished": {"_count": 1}, "undamaged": {"_count": 1}, "latched": {"_count": 1}, "white": {"_count": 1}, "completely": {"_count": 1}}, "circle": {"_count": 1, "were": {"_count": 1}}, "being": {"_count": 1, "concentrated": {"_count": 1}}, "days": {"_count": 1, "": {"_count": 1}}, "contents": {"_count": 1, "into": {"_count": 1}}, "sad": {"_count": 1, "sorry": {"_count": 1}}, "week": {"_count": 2, "since": {"_count": 1}, "through": {"_count": 1}}, "Wizengamot": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "book": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "you": {"_count": 1}}, "group": {"_count": 2, "seemed": {"_count": 1}, "fell": {"_count": 1}}, "race": {"_count": 1, "is": {"_count": 1}}, "herd": {"_count": 1, "of": {"_count": 1}}, "area": {"_count": 2, "but": {"_count": 1}, "of": {"_count": 1}}, "day": {"_count": 2, "with": {"_count": 2}}, "tearoom": {"_count": 1, "was": {"_count": 1}}, "place": {"_count": 4, "seemed": {"_count": 1}, "was": {"_count": 3}}, "host": {"_count": 1, "of": {"_count": 1}}, "stock": {"_count": 2, "were": {"_count": 1}, "of": {"_count": 1}}, "was": {"_count": 1, "grateful": {"_count": 1}}, "Inquisitorial": {"_count": 1, "Squad": {"_count": 1}}, "pint": {"_count": 1, "for": {"_count": 1}}, "weekend": {"_count": 1, "in": {"_count": 1}}, "fiasco": {"_count": 1, "by": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "subjects": {"_count": 1, "useless": {"_count": 1}}, "shining": {"_count": 1, "minute": {"_count": 1}}, "Wizarding": {"_count": 4, "community": {"_count": 2}, "world": {"_count": 1}, "population": {"_count": 1}}, "term": {"_count": 1, "of": {"_count": 1}}, "world": {"_count": 2, "who": {"_count": 1}, "for": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "owl": {"_count": 1, "tremble": {"_count": 1}}, "valley": {"_count": 1, "laid": {"_count": 1}}, "match": {"_count": 1, "was": {"_count": 1}}, "You": {"_count": 1, "considered": {"_count": 1}}, "that": {"_count": 1, "shouldnt": {"_count": 1}}, "variety": {"_count": 1, "of": {"_count": 1}}, "unicorn": {"_count": 1, "tail": {"_count": 1}}, "collection": {"_count": 1, "of": {"_count": 1}}, "men": {"_count": 1, "do": {"_count": 1}}, "PotterDumbledore": {"_count": 2, "relationship": {"_count": 2}}, "hand": {"_count": 1, "onto": {"_count": 1}}, "journey": {"_count": 1, "seemed": {"_count": 1}}, "wide": {"_count": 1, "world": {"_count": 1}}, "Order": {"_count": 1, "at": {"_count": 1}}, "crowds": {"_count": 1, "of": {"_count": 1}}, "stash": {"_count": 1, "of": {"_count": 1}}, "pile": {"_count": 1, "of": {"_count": 1}}, "dungeon": {"_count": 1, "as": {"_count": 1}}, "And": {"_count": 1, "now": {"_count": 1}}, "hog": {"_count": 1, "and": {"_count": 1}}, "scandalous": {"_count": 1, "story": {"_count": 1}}, "truth": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "burnished": {"_count": 1}}, "familys": {"_count": 1, "here": {"_count": 1}}, "dear": {"_count": 1, "boy": {"_count": 1}}}, "pinpricks": {"_count": 3, "in": {"_count": 1, "the": {"_count": 1}}, "below": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "light": {"_count": 1}}}, "distance": {"_count": 74, "which": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "jumping": {"_count": 1, "up": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "Gringotts": {"_count": 1, "Bank": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 2, "good": {"_count": 1}, "huge": {"_count": 1}}, "to": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 5, "the": {"_count": 2}, "saw": {"_count": 1}, "realizing": {"_count": 1}, "heard": {"_count": 1}}, "he": {"_count": 2, "heard": {"_count": 1}, "could": {"_count": 1}}, "then": {"_count": 1, "slid": {"_count": 1}}, "from": {"_count": 8, "Mr": {"_count": 1}, "the": {"_count": 2}, "them": {"_count": 1}, "Professor": {"_count": 1}, "Yaxley": {"_count": 1}, "Greyback": {"_count": 1}, "each": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "away": {"_count": 12, "into": {"_count": 1}, "Draco": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 5}, "wet": {"_count": 1}, "under": {"_count": 2}, "heads": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 3, "himself": {"_count": 1}, "herself": {"_count": 1}, "them": {"_count": 1}}, "of": {"_count": 1, "Dudley": {"_count": 1}}, "Harry": {"_count": 2, "could": {"_count": 1}, "had": {"_count": 1}}, "the": {"_count": 1, "definite": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "teaching": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 1, "as": {"_count": 1}}, "finally": {"_count": 1, "passing": {"_count": 1}}, "that": {"_count": 1, "momentarily": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "great": {"_count": 1}}, "imagining": {"_count": 1, "that": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}}, "beadyeyed": {"_count": 1, "Mrs": {"_count": 1, "Dursley": {"_count": 1}}}, "able": {"_count": 395, "to": {"_count": 376, "see": {"_count": 31}, "explain": {"_count": 3}, "watch": {"_count": 2}, "think": {"_count": 3}, "steal": {"_count": 1}, "kick": {"_count": 1}, "stop": {"_count": 2}, "afford": {"_count": 3}, "do": {"_count": 14}, "clamber": {"_count": 1}, "tell": {"_count": 9}, "get": {"_count": 22}, "read": {"_count": 5}, "show": {"_count": 3}, "find": {"_count": 15}, "use": {"_count": 5}, "hold": {"_count": 4}, "breathe": {"_count": 3}, "come": {"_count": 2}, "pull": {"_count": 2}, "create": {"_count": 2}, "make": {"_count": 9}, "pick": {"_count": 1}, "work": {"_count": 1}, "follow": {"_count": 3}, "mend": {"_count": 1}, "raise": {"_count": 1}, "provide": {"_count": 1}, "cure": {"_count": 1}, "open": {"_count": 1}, "unseal": {"_count": 1}, "climb": {"_count": 2}, "er": {"_count": 1}, "wont": {"_count": 1}, "certainly": {"_count": 1}, "look": {"_count": 3}, "talk": {"_count": 5}, "stay": {"_count": 1}, "revive": {"_count": 2}, "believe": {"_count": 2}, "tackle": {"_count": 1}, "charm": {"_count": 1}, "lead": {"_count": 2}, "prove": {"_count": 2}, "squash": {"_count": 1}, "drag": {"_count": 1}, "sleep": {"_count": 2}, "visit": {"_count": 1}, "teach": {"_count": 1}, "go": {"_count": 7}, "move": {"_count": 2}, "deal": {"_count": 1}, "fight": {"_count": 2}, "buy": {"_count": 1}, "practice": {"_count": 1}, "produce": {"_count": 2}, "keep": {"_count": 6}, "curl": {"_count": 1}, "save": {"_count": 5}, "tap": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}, "confide": {"_count": 1}, "speak": {"_count": 1}, "let": {"_count": 1}, "sort": {"_count": 2}, "Where": {"_count": 1}, "take": {"_count": 5}, "cope": {"_count": 3}, "handle": {"_count": 1}, "cross": {"_count": 1}, "answer": {"_count": 3}, "pay": {"_count": 1}, "fool": {"_count": 1}, "hurt": {"_count": 1}, "resist": {"_count": 4}, "hear": {"_count": 5}, "pluck": {"_count": 1}, "ensure": {"_count": 1}, "blast": {"_count": 1}, "inhabit": {"_count": 1}, "curse": {"_count": 1}, "question": {"_count": 1}, "hide": {"_count": 1}, "walk": {"_count": 1}, "recall": {"_count": 1}, "fall": {"_count": 1}, "sneak": {"_count": 1}, "Ron": {"_count": 1}, "exercise": {"_count": 2}, "remember": {"_count": 1}, "sell": {"_count": 1}, "give": {"_count": 6}, "perform": {"_count": 1}, "guess": {"_count": 2}, "attend": {"_count": 1}, "put": {"_count": 2}, "leave": {"_count": 2}, "start": {"_count": 2}, "defend": {"_count": 1}, "feel": {"_count": 1}, "understand": {"_count": 2}, "spend": {"_count": 1}, "Stun": {"_count": 1}, "help": {"_count": 3}, "allow": {"_count": 1}, "worm": {"_count": 1}, "fit": {"_count": 1}, "but": {"_count": 1}, "shut": {"_count": 1}, "access": {"_count": 1}, "scrape": {"_count": 1}, "remove": {"_count": 1}, "shift": {"_count": 1}, "this": {"_count": 1}, "rid": {"_count": 2}, "empty": {"_count": 1}, "shout": {"_count": 1}, "guarantee": {"_count": 1}, "concoct": {"_count": 1}, "round": {"_count": 1}, "bank": {"_count": 1}, "ssort": {"_count": 1}, "to": {"_count": 1}, "fly": {"_count": 2}, "cover": {"_count": 1}, "betray": {"_count": 1}, "pretend": {"_count": 1}, "say": {"_count": 1}, "pass": {"_count": 4}, "remain": {"_count": 1}, "face": {"_count": 2}, "solve": {"_count": 1}, "change": {"_count": 1}, "push": {"_count": 1}, "lend": {"_count": 1}, "discover": {"_count": 1}, "persuade": {"_count": 1}, "bring": {"_count": 2}, "wriggle": {"_count": 1}, "deny": {"_count": 1}, "write": {"_count": 1}, "Apparate": {"_count": 2}, "vanish": {"_count": 1}, "secure": {"_count": 1}, "penetrate": {"_count": 2}, "prepare": {"_count": 1}, "lay": {"_count": 1}, "slip": {"_count": 3}, "extract": {"_count": 1}, "set": {"_count": 1}, "enjoy": {"_count": 1}, "demonstrate": {"_count": 1}, "catch": {"_count": 1}, "convert": {"_count": 1}, "tear": {"_count": 1}, "prevent": {"_count": 1}, "play": {"_count": 1}, "sail": {"_count": 1}, "touch": {"_count": 1}, "poison": {"_count": 1}, "Disapparate": {"_count": 4}, "contemplate": {"_count": 1}, "send": {"_count": 1}, "delay": {"_count": 1}, "totter": {"_count": 1}, "flit": {"_count": 1}, "protect": {"_count": 1}, "feed": {"_count": 1}, "stomach": {"_count": 1}, "said": {"_count": 1}, "possess": {"_count": 1}, "channel": {"_count": 1}, "snatch": {"_count": 1}, "release": {"_count": 1}, "transform": {"_count": 1}, "break": {"_count": 1}, "": {"_count": 1}, "kill": {"_count": 1}, "distinguish": {"_count": 1}, "choose": {"_count": 1}}, "ter": {"_count": 9, "GET": {"_count": 1}, "open": {"_count": 1}, "raise": {"_count": 1}, "stop": {"_count": 1}, "march": {"_count": 1}, "Harry": {"_count": 1}, "help": {"_count": 1}, "take": {"_count": 1}, "blend": {"_count": 1}}, "players": {"_count": 1, "": {"_count": 1}}, "headmistress": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 1, "certain": {"_count": 1}}, "Ah": {"_count": 1, "you": {"_count": 1}}, "Oh": {"_count": 1, "more": {"_count": 1}}, "certainly": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 1, "too": {"_count": 1}}, "who": {"_count": 1, "might": {"_count": 1}}, "wizard": {"_count": 1, "who": {"_count": 1}}, "But": {"_count": 1, "somebody": {"_count": 1}}}, "pavement": {"_count": 24, "": {"_count": 9, ".": {"_count": 9}}, "just": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "beside": {"_count": 1, "them": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "Privet": {"_count": 1}}, "rose": {"_count": 2, "up": {"_count": 2}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "and": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "then": {"_count": 1, "with": {"_count": 1}}, "drawing": {"_count": 1, "many": {"_count": 1}}, "was": {"_count": 1, "yelling": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "slipped": {"_count": 130, "the": {"_count": 6, "Put": {"_count": 1}, "diary": {"_count": 1}, "Marauders": {"_count": 1}, "tiny": {"_count": 1}, "purse": {"_count": 1}, "silver": {"_count": 1}}, "off": {"_count": 13, "fer": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 3}, "its": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 2}, "Rons": {"_count": 1}}, "a": {"_count": 4, "long": {"_count": 1}, "loop": {"_count": 1}, "little": {"_count": 1}, "hand": {"_count": 1}}, "down": {"_count": 8, "a": {"_count": 2}, "over": {"_count": 1}, "into": {"_count": 1}, "from": {"_count": 1}, "his": {"_count": 2}, "below": {"_count": 1}}, "out": {"_count": 13, "of": {"_count": 11}, "into": {"_count": 1}, "while": {"_count": 1}}, "under": {"_count": 2, "Filchs": {"_count": 1}, "his": {"_count": 1}}, "his": {"_count": 6, "wand": {"_count": 3}, "hand": {"_count": 2}, "Galleon": {"_count": 1}}, "back": {"_count": 3, "down": {"_count": 1}, "inside": {"_count": 1}, "among": {"_count": 1}}, "into": {"_count": 7, "a": {"_count": 2}, "the": {"_count": 3}, "actual": {"_count": 1}, "said": {"_count": 1}}, "through": {"_count": 9, "Voldemorts": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 2}, "our": {"_count": 1}, "Snape": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}}, "inside": {"_count": 2, "closed": {"_count": 1}, "bolted": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 3, "into": {"_count": 1}, "inside": {"_count": 1}, "carefully": {"_count": 1}}, "vanishing": {"_count": 1, "one": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 4}, "his": {"_count": 1}, "a": {"_count": 1}}, "by": {"_count": 1, "Harry": {"_count": 1}}, "from": {"_count": 8, "the": {"_count": 1}, "his": {"_count": 3}, "under": {"_count": 1}, "Harrys": {"_count": 1}, "beneath": {"_count": 1}, "between": {"_count": 1}}, "between": {"_count": 1, "Rons": {"_count": 1}}, "past": {"_count": 3, "them": {"_count": 1}, "her": {"_count": 1}, "up": {"_count": 1}}, "up": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 7, "slid": {"_count": 2}, "his": {"_count": 1}, "by": {"_count": 1}, "fell": {"_count": 1}, "they": {"_count": 1}, "staggered": {"_count": 1}}, "him": {"_count": 2, "a": {"_count": 2}}, "in": {"_count": 2, "through": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 1, "snatched": {"_count": 1}}, "several": {"_count": 1, "notches": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "sideways": {"_count": 3, "off": {"_count": 1}, "on": {"_count": 1}, "clutching": {"_count": 1}}, "quietly": {"_count": 1, "off": {"_count": 1}}, "slightly": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 1, "hands": {"_count": 1}}, "as": {"_count": 1, "Malfoy": {"_count": 1}}, "gratefully": {"_count": 1, "back": {"_count": 1}}, "upstairs": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "onto": {"_count": 1, "Harrys": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "lower": {"_count": 1, "in": {"_count": 1}}, "outside": {"_count": 1, "Harry": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "Put": {"_count": 19, "Outer": {"_count": 2, "back": {"_count": 1}, "": {"_count": 1}}, "your": {"_count": 2, "foot": {"_count": 1}, "arm": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 4, "here": {"_count": 1}, "this": {"_count": 1}, "away": {"_count": 2}}, "him": {"_count": 1, "into": {"_count": 1}}, "them": {"_count": 1, "together": {"_count": 1}}, "a": {"_count": 1, "big": {"_count": 1}}, "us": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "that": {"_count": 2, "away": {"_count": 1}, "wand": {"_count": 1}}, "those": {"_count": 1, "away": {"_count": 1}}, "out": {"_count": 1, "lights": {"_count": 1}}, "the": {"_count": 1, "Cloak": {"_count": 1}}}, "Outer": {"_count": 2, "back": {"_count": 1, "inside": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "moment": {"_count": 882, "he": {"_count": 92, "spoke": {"_count": 1}, "left": {"_count": 2}, "was": {"_count": 12}, "saw": {"_count": 4}, "could": {"_count": 5}, "thought": {"_count": 8}, "had": {"_count": 19}, "really": {"_count": 1}, "told": {"_count": 1}, "has": {"_count": 1}, "appeared": {"_count": 1}, "got": {"_count": 3}, "walked": {"_count": 1}, "hated": {"_count": 1}, "seemed": {"_count": 1}, "entered": {"_count": 2}, "took": {"_count": 1}, "became": {"_count": 1}, "reached": {"_count": 1}, "jumped": {"_count": 1}, "couldnt": {"_count": 1}, "considered": {"_count": 1}, "closed": {"_count": 1}, "wanted": {"_count": 1}, "realized": {"_count": 1}, "quite": {"_count": 1}, "felt": {"_count": 2}, "would": {"_count": 1}, "allowed": {"_count": 1}, "set": {"_count": 1}, "becomes": {"_count": 1}, "blinked": {"_count": 1}, "said": {"_count": 5}, "merely": {"_count": 1}, "looked": {"_count": 1}, "toppled": {"_count": 1}, "began": {"_count": 1}, "touched": {"_count": 1}, "Ron": {"_count": 1}, "knew": {"_count": 1}}, "for": {"_count": 7, "lemon": {"_count": 1}, "me": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "desperate": {"_count": 1}, "weeks": {"_count": 1}, "a": {"_count": 1}}, "people": {"_count": 1, "meeting": {"_count": 1}}, "but": {"_count": 4, "not": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "then": {"_count": 1}}, "": {"_count": 120, ".": {"_count": 105}, "?": {"_count": 9}, "!": {"_count": 6}}, "the": {"_count": 45, "telephone": {"_count": 1}, "boat": {"_count": 1}, "blood": {"_count": 1}, "lock": {"_count": 1}, "door": {"_count": 4}, "cover": {"_count": 1}, "wineglass": {"_count": 1}, "headmaster": {"_count": 1}, "whole": {"_count": 1}, "note": {"_count": 1}, "whistle": {"_count": 1}, "article": {"_count": 1}, "dungeon": {"_count": 1}, "deadened": {"_count": 1}, "Dursleys": {"_count": 1}, "magical": {"_count": 1}, "great": {"_count": 1}, "carriage": {"_count": 1}, "class": {"_count": 1}, "window": {"_count": 1}, "kettle": {"_count": 1}, "Network": {"_count": 1}, "only": {"_count": 1}, "streetlamp": {"_count": 1}, "goblins": {"_count": 1}, "bell": {"_count": 1}, "cars": {"_count": 1}, "four": {"_count": 1}, "room": {"_count": 1}, "strange": {"_count": 1}, "man": {"_count": 1}, "pastille": {"_count": 1}, "lift": {"_count": 1}, "golden": {"_count": 1}, "Minister": {"_count": 1}, "doors": {"_count": 1}, "printing": {"_count": 1}, "Room": {"_count": 1}, "Ravenclaws": {"_count": 1}, "heavy": {"_count": 1}, "creatures": {"_count": 1}, "people": {"_count": 1}}, "later": {"_count": 33, "Dudleys": {"_count": 1}, "the": {"_count": 4}, "they": {"_count": 4}, "Professor": {"_count": 2}, "Hedwig": {"_count": 1}, "he": {"_count": 3}, "a": {"_count": 2}, "Fred": {"_count": 1}, "his": {"_count": 2}, "Madam": {"_count": 1}, "with": {"_count": 2}, "and": {"_count": 1}, "however": {"_count": 1}, "Percy": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "an": {"_count": 1}, "but": {"_count": 1}, "Harry": {"_count": 1}, "Bill": {"_count": 1}, "Xenophilius": {"_count": 1}}, "it": {"_count": 14, "didnt": {"_count": 1}, "looked": {"_count": 2}, "had": {"_count": 1}, "opened": {"_count": 2}, "felt": {"_count": 1}, "couldnt": {"_count": 1}, "seemed": {"_count": 3}, "made": {"_count": 1}, "parted": {"_count": 1}, "was": {"_count": 1}}, "of": {"_count": 25, "his": {"_count": 3}, "fun": {"_count": 1}, "hushed": {"_count": 1}, "telling": {"_count": 1}, "the": {"_count": 3}, "panic": {"_count": 1}, "your": {"_count": 2}, "birth": {"_count": 1}, "my": {"_count": 1}, "farewell": {"_count": 1}, "entering": {"_count": 1}, "blinding": {"_count": 1}, "terror": {"_count": 1}, "parting": {"_count": 1}, "total": {"_count": 1}, "inadequacy": {"_count": 1}, "weakness": {"_count": 1}, "pity": {"_count": 1}, "astonishment": {"_count": 1}, "departure": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 3}}, "thirty": {"_count": 1, "or": {"_count": 1}}, "Hagrid": {"_count": 3, "leapt": {"_count": 1}, "was": {"_count": 2}}, "Harry": {"_count": 46, "found": {"_count": 3}, "looked": {"_count": 1}, "hung": {"_count": 1}, "thought": {"_count": 10}, "was": {"_count": 3}, "Potter": {"_count": 1}, "Lupin": {"_count": 1}, "felt": {"_count": 2}, "saw": {"_count": 3}, "had": {"_count": 8}, "considered": {"_count": 2}, "opened": {"_count": 1}, "didnt": {"_count": 1}, "fully": {"_count": 1}, "let": {"_count": 1}, "snarled": {"_count": 1}, "drained": {"_count": 1}, "knew": {"_count": 1}, "imagined": {"_count": 1}, "deduced": {"_count": 1}, "wondered": {"_count": 1}, "could": {"_count": 1}}, "a": {"_count": 10, "group": {"_count": 1}, "heavy": {"_count": 1}, "strangled": {"_count": 1}, "wizard": {"_count": 1}, "blast": {"_count": 1}, "voice": {"_count": 1}, "tongue": {"_count": 1}, "hero": {"_count": 1}, "screech": {"_count": 1}, "loud": {"_count": 1}}, "on": {"_count": 11, "Nevilles": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 6}, "Harry": {"_count": 1}, "Malfoy": {"_count": 1}, "Mrs": {"_count": 1}}, "they": {"_count": 29, "arrived": {"_count": 1}, "sat": {"_count": 1}, "know": {"_count": 1}, "start": {"_count": 1}, "had": {"_count": 4}, "found": {"_count": 1}, "disappeared": {"_count": 1}, "saw": {"_count": 3}, "were": {"_count": 5}, "entered": {"_count": 1}, "reached": {"_count": 2}, "stared": {"_count": 1}, "set": {"_count": 1}, "delayed": {"_count": 1}, "are": {"_count": 1}, "made": {"_count": 1}, "simply": {"_count": 1}, "understood": {"_count": 1}, "crossed": {"_count": 1}}, "was": {"_count": 3, "that": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}}, "said": {"_count": 8, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}, "Bill": {"_count": 1}, "Sirius": {"_count": 2}, "Hermione": {"_count": 2}, "Hagrid": {"_count": 1}}, "Neville": {"_count": 2, "toppled": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 28, "made": {"_count": 1}, "Harry": {"_count": 2}, "I": {"_count": 1}, "by": {"_count": 1}, "then": {"_count": 12}, "spun": {"_count": 1}, "Mr": {"_count": 1}, "not": {"_count": 1}, "looked": {"_count": 1}, "Hedwig": {"_count": 1}, "we": {"_count": 1}, "attack": {"_count": 1}, "wiped": {"_count": 1}, "nodded": {"_count": 1}, "that": {"_count": 1}, "three": {"_count": 1}}, "you": {"_count": 12, "stop": {"_count": 1}, "were": {"_count": 1}, "have": {"_count": 1}, "two": {"_count": 1}, "left": {"_count": 1}, "expected": {"_count": 1}, "all": {"_count": 1}, "turn": {"_count": 2}, "get": {"_count": 1}, "started": {"_count": 1}, "threatened": {"_count": 1}}, "Hermione": {"_count": 5, "began": {"_count": 1}, "appeared": {"_count": 1}, "goggled": {"_count": 1}, "got": {"_count": 1}, "gave": {"_count": 1}}, "she": {"_count": 14, "had": {"_count": 4}, "saw": {"_count": 2}, "entered": {"_count": 1}, "was": {"_count": 2}, "looked": {"_count": 2}, "said": {"_count": 1}, "cant": {"_count": 1}, "drew": {"_count": 1}}, "there": {"_count": 15, "I": {"_count": 1}, "was": {"_count": 10}, "is": {"_count": 1}, "came": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "because": {"_count": 4, "Harry": {"_count": 1}, "Ginny": {"_count": 1}, "Im": {"_count": 1}, "Sirius": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "something": {"_count": 2, "hit": {"_count": 1}, "large": {"_count": 1}}, "his": {"_count": 9, "eyes": {"_count": 2}, "head": {"_count": 1}, "thestral": {"_count": 1}, "knees": {"_count": 1}, "stomach": {"_count": 1}, "heart": {"_count": 1}, "worst": {"_count": 1}, "ears": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 22, "regain": {"_count": 1}, "try": {"_count": 1}, "say": {"_count": 1}, "do": {"_count": 1}, "avenge": {"_count": 1}, "remember": {"_count": 1}, "penetrate": {"_count": 1}, "empty": {"_count": 1}, "confess": {"_count": 1}, "decide": {"_count": 2}, "appear": {"_count": 1}, "worry": {"_count": 1}, "moan": {"_count": 1}, "discuss": {"_count": 1}, "cast": {"_count": 1}, "destroy": {"_count": 1}, "report": {"_count": 1}, "acclimatize": {"_count": 1}, "antagonize": {"_count": 1}, "meet": {"_count": 1}, "circle": {"_count": 1}}, "had": {"_count": 7, "stopped": {"_count": 1}, "passed": {"_count": 1}, "come": {"_count": 1}, "been": {"_count": 1}, "popped": {"_count": 1}, "zoomed": {"_count": 1}, "he": {"_count": 1}}, "students": {"_count": 1, "were": {"_count": 1}}, "Dumbledore": {"_count": 4, "was": {"_count": 1}, "said": {"_count": 2}, "brandished": {"_count": 1}}, "Hedwig": {"_count": 1, "swooped": {"_count": 1}}, "both": {"_count": 2, "of": {"_count": 1}, "pursuers": {"_count": 1}}, "their": {"_count": 1, "acne": {"_count": 1}}, "that": {"_count": 22, "hed": {"_count": 1}, "those": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 4}, "that": {"_count": 1}, "Alicia": {"_count": 1}, "the": {"_count": 3}, "Harry": {"_count": 2}, "McLaggen": {"_count": 1}, "Ron": {"_count": 1}, "she": {"_count": 1}, "you": {"_count": 1}, "Dumbledore": {"_count": 2}, "they": {"_count": 2}}, "when": {"_count": 20, "Ron": {"_count": 2}, "he": {"_count": 5}, "hed": {"_count": 1}, "Voldemorts": {"_count": 1}, "Cedric": {"_count": 1}, "you": {"_count": 3}, "Hedwig": {"_count": 1}, "nobody": {"_count": 1}, "his": {"_count": 1}, "Mrs": {"_count": 1}, "it": {"_count": 1}, "Rons": {"_count": 1}, "danger": {"_count": 1}}, "Ron": {"_count": 2, "swore": {"_count": 1}, "beamed": {"_count": 1}}, "which": {"_count": 3, "was": {"_count": 2}, "as": {"_count": 1}}, "Percy": {"_count": 1, "Weasley": {"_count": 1}}, "has": {"_count": 2, "come": {"_count": 2}}, "if": {"_count": 1, "you": {"_count": 1}}, "then": {"_count": 41, "walked": {"_count": 2}, "said": {"_count": 10}, "to": {"_count": 2}, "sighed": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 3}, "sniffed": {"_count": 1}, "throwing": {"_count": 1}, "turned": {"_count": 2}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "followed": {"_count": 1}, "back": {"_count": 1}, "flung": {"_count": 1}, "hurled": {"_count": 1}, "muttered": {"_count": 1}, "pulled": {"_count": 2}, "Ron": {"_count": 1}, "rounded": {"_count": 1}, "set": {"_count": 1}, "asked": {"_count": 1}, "continued": {"_count": 1}, "swayed": {"_count": 1}, "addressed": {"_count": 1}}, "thinking": {"_count": 1, "hard": {"_count": 1}}, "as": {"_count": 12, "they": {"_count": 1}, "though": {"_count": 8}, "Harry": {"_count": 2}, "the": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 1}, "Weasleys": {"_count": 1}}, "Snape": {"_count": 1, "called": {"_count": 1}}, "now": {"_count": 6, "to": {"_count": 1}, "WHAT": {"_count": 1}, "that": {"_count": 1}, "Come": {"_count": 1}, "Filch": {"_count": 1}, "Theres": {"_count": 1}}, "Crookshanks": {"_count": 1, "leapt": {"_count": 1}}, "please": {"_count": 2, "": {"_count": 1}, "Macnair": {"_count": 1}}, "watching": {"_count": 2, "the": {"_count": 1}, "dust": {"_count": 1}}, "or": {"_count": 23, "two": {"_count": 23}}, "another": {"_count": 1, "flash": {"_count": 1}}, "staring": {"_count": 1, "into": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 4}, "all": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Great": {"_count": 1, "": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "all": {"_count": 3, "three": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}}, "though": {"_count": 2, "is": {"_count": 1}, "said": {"_count": 1}}, "persuaded": {"_count": 1, "them": {"_count": 1}}, "Scabbers": {"_count": 1, "was": {"_count": 1}}, "Pettigrew": {"_count": 1, "was": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "Sure": {"_count": 1, "enough": {"_count": 1}}, "too": {"_count": 1, "soon": {"_count": 1}}, "before": {"_count": 11, "hed": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}, "disappearing": {"_count": 1}, "walking": {"_count": 1}, "saying": {"_count": 1}, "managing": {"_count": 1}}, "Back": {"_count": 1, "to": {"_count": 1}}, "theyll": {"_count": 1, "find": {"_count": 1}}, "wizards": {"_count": 1, "are": {"_count": 1}}, "picturing": {"_count": 1, "Dumbledore": {"_count": 1}}, "Rons": {"_count": 1, "red": {"_count": 1}}, "Dudley": {"_count": 1, "came": {"_count": 1}}, "however": {"_count": 1, "a": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "what": {"_count": 1, "seemed": {"_count": 1}}, "Bill": {"_count": 1, "Charlie": {"_count": 1}}, "Moody": {"_count": 1, "smiled": {"_count": 1}}, "with": {"_count": 7, "something": {"_count": 1}, "apparent": {"_count": 1}, "disgust": {"_count": 1}, "a": {"_count": 2}, "so": {"_count": 1}, "the": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "we": {"_count": 4, "get": {"_count": 1}, "told": {"_count": 1}, "took": {"_count": 1}, "appeared": {"_count": 1}}, "Wand": {"_count": 1, "weighing": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "twittering": {"_count": 1, "away": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "quivering": {"_count": 1, "all": {"_count": 1}}, "Parvati": {"_count": 1, "had": {"_count": 1}}, "Professor": {"_count": 2, "Grubbly": {"_count": 1}, "Umbridge": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 1}, "what": {"_count": 1}, "Azkaban": {"_count": 1}, "the": {"_count": 2}}, "nobody": {"_count": 1, "moved": {"_count": 1}}, "Buckbeak": {"_count": 1, "bent": {"_count": 1}}, "without": {"_count": 2, "trying": {"_count": 1}, "We": {"_count": 1}}, "looking": {"_count": 2, "around": {"_count": 1}, "as": {"_count": 1}}, "Cedric": {"_count": 1, "looked": {"_count": 1}}, "anyway": {"_count": 1, "he": {"_count": 1}}, "shed": {"_count": 1, "gone": {"_count": 1}}, "our": {"_count": 1, "testers": {"_count": 1}}, "raising": {"_count": 1, "her": {"_count": 1}}, "I": {"_count": 7, "saw": {"_count": 3}, "hand": {"_count": 1}, "dont": {"_count": 1}, "see": {"_count": 1}, "thought": {"_count": 1}}, "just": {"_count": 2, "so": {"_count": 1}, "keep": {"_count": 1}}, "Wilhelmina": {"_count": 1, "": {"_count": 1}}, "extremely": {"_count": 1, "shocked": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "each": {"_count": 1}}, "longer": {"_count": 1, "": {"_count": 1}}, "thanks": {"_count": 1, "said": {"_count": 1}}, "apparently": {"_count": 1, "to": {"_count": 1}}, "snarled": {"_count": 1, "Snape": {"_count": 1}}, "after": {"_count": 1, "Snapes": {"_count": 1}}, "Ill": {"_count": 1, "do": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 2, "his": {"_count": 2}}, "seemed": {"_count": 2, "unable": {"_count": 2}}, "opened": {"_count": 1, "them": {"_count": 1}}, "so": {"_count": 3, "youll": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}}, "devoted": {"_count": 1, "to": {"_count": 1}}, "Grawp": {"_count": 1, "caught": {"_count": 1}}, "shaking": {"_count": 1, "back": {"_count": 1}}, "hes": {"_count": 1, "just": {"_count": 1}}, "peered": {"_count": 1, "round": {"_count": 1}}, "could": {"_count": 1, "wait": {"_count": 1}}, "onward": {"_count": 1, "": {"_count": 1}}, "working": {"_count": 1, "very": {"_count": 1}}, "upon": {"_count": 1, "Harrys": {"_count": 1}}, "Slughorn": {"_count": 1, "was": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "man": {"_count": 1, "and": {"_count": 1}}, "made": {"_count": 2, "no": {"_count": 1}, "it": {"_count": 1}}, "wasted": {"_count": 1, "and": {"_count": 1}}, "irresolute": {"_count": 1, "then": {"_count": 1}}, "wondering": {"_count": 1, "how": {"_count": 1}}, "whether": {"_count": 2, "he": {"_count": 2}}, "Dobby": {"_count": 1, "sank": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "marshaling": {"_count": 1, "his": {"_count": 1}}, "an": {"_count": 1, "arched": {"_count": 1}}, "Harrys": {"_count": 1, "imagination": {"_count": 1}}, "excited": {"_count": 1, "elevenyearolds": {"_count": 1}}, "brow": {"_count": 1, "wrinkled": {"_count": 1}}, "perhaps": {"_count": 1, "wondering": {"_count": 1}}, "Runcorn": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "laughing": {"_count": 1, "He": {"_count": 1}}, "ago": {"_count": 1, "had": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "Dracos": {"_count": 1, "shaking": {"_count": 1}}, "anyone": {"_count": 1, "entered": {"_count": 1}}, "testing": {"_count": 1, "its": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "madam": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 1, "finger": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "Severus": {"_count": 1, "is": {"_count": 1}}, "will": {"_count": 1, "present": {"_count": 1}}, "not": {"_count": 1, "until": {"_count": 1}}, "suspended": {"_count": 1, "and": {"_count": 1}}}, "spoke": {"_count": 227, "to": {"_count": 22, "it": {"_count": 2}, "Harry": {"_count": 3}, "anybody": {"_count": 1}, "Black": {"_count": 1}, "the": {"_count": 4}, "them": {"_count": 4}, "me": {"_count": 1}, "him": {"_count": 2}, "Kreacher": {"_count": 1}, "each": {"_count": 2}, "Ollivander": {"_count": 1}}, "": {"_count": 48, ".": {"_count": 48}}, "about": {"_count": 3, "Harry": {"_count": 1}, "them": {"_count": 1}, "Ariana": {"_count": 1}}, "and": {"_count": 11, "caught": {"_count": 1}, "everyone": {"_count": 1}, "tucking": {"_count": 1}, "starting": {"_count": 1}, "half": {"_count": 1}, "finally": {"_count": 1}, "Snape": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "Harrys": {"_count": 1}}, "his": {"_count": 4, "every": {"_count": 1}, "voice": {"_count": 2}, "scar": {"_count": 1}}, "much": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 20, "barely": {"_count": 1}, "limericks": {"_count": 1}, "a": {"_count": 11}, "the": {"_count": 2}, "Hermiones": {"_count": 1}, "what": {"_count": 1}, "its": {"_count": 1}, "Parseltongue": {"_count": 2}}, "from": {"_count": 7, "the": {"_count": 3}, "under": {"_count": 1}, "high": {"_count": 1}, "over": {"_count": 1}, "behind": {"_count": 1}}, "first": {"_count": 2, "": {"_count": 2}}, "angrily": {"_count": 1, "to": {"_count": 1}}, "though": {"_count": 2, "Quirrell": {"_count": 1}, "judging": {"_count": 1}}, "again": {"_count": 21, "": {"_count": 11}, "in": {"_count": 1}, "and": {"_count": 2}, "until": {"_count": 1}, "did": {"_count": 1}, "it": {"_count": 2}, "he": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 1}}, "ill": {"_count": 1, "of": {"_count": 1}}, "instead": {"_count": 1, "to": {"_count": 1}}, "making": {"_count": 1, "it": {"_count": 1}}, "they": {"_count": 2, "turned": {"_count": 1}, "heard": {"_count": 1}}, "a": {"_count": 3, "different": {"_count": 1}, "truer": {"_count": 1}, "moment": {"_count": 1}}, "was": {"_count": 1, "you": {"_count": 1}}, "politely": {"_count": 1, "but": {"_count": 1}}, "quietly": {"_count": 1, "so": {"_count": 1}}, "it": {"_count": 6, "was": {"_count": 5}, "used": {"_count": 1}}, "Riddles": {"_count": 1, "eyes": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "so": {"_count": 2, "dejectedly": {"_count": 1}, "close": {"_count": 1}}, "quite": {"_count": 2, "rationally": {"_count": 1}, "calmly": {"_count": 1}}, "as": {"_count": 6, "they": {"_count": 2}, "it": {"_count": 1}, "though": {"_count": 2}, "if": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "words": {"_count": 1}, "last": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "Harry": {"_count": 4, "was": {"_count": 1}, "heard": {"_count": 1}, "": {"_count": 1}, "sensed": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "her": {"_count": 2, "voice": {"_count": 2}}, "for": {"_count": 6, "a": {"_count": 6}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "visions": {"_count": 1, "of": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "went": {"_count": 1}, "saw": {"_count": 1}}, "wearing": {"_count": 1, "her": {"_count": 1}}, "during": {"_count": 1, "D": {"_count": 1}}, "very": {"_count": 3, "near": {"_count": 1}, "highly": {"_count": 1}, "clearly": {"_count": 1}}, "somebody": {"_count": 1, "else": {"_count": 1}}, "dat": {"_count": 1, "was": {"_count": 1}}, "wondering": {"_count": 1, "where": {"_count": 1}}, "today": {"_count": 1, "of": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "exclusively": {"_count": 1, "of": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "nobody": {"_count": 1, "moved": {"_count": 1}}, "up": {"_count": 1, "evidently": {"_count": 1}}, "with": {"_count": 3, "Mr": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 2, "Harry": {"_count": 1}, "she": {"_count": 1}}, "causing": {"_count": 1, "Hermione": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "pulled": {"_count": 1}}, "Seamuss": {"_count": 1, "face": {"_count": 1}}}, "Fancy": {"_count": 7, "seeing": {"_count": 1, "you": {"_count": 1}}, "a": {"_count": 3, "flutter": {"_count": 1}, "gillywater": {"_count": 1}, "drink": {"_count": 1}}, "entering": {"_count": 1, "": {"_count": 1}}, "giving": {"_count": 1, "us": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "seeing": {"_count": 128, "you": {"_count": 8, "here": {"_count": 1}, "soon": {"_count": 1}, "all": {"_count": 4}, "quite": {"_count": 1}, "Fred": {"_count": 1}}, "them": {"_count": 4, "again": {"_count": 1}, "alone": {"_count": 1}, "followed": {"_count": 1}, "zoom": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "Harrys": {"_count": 2, "puzzled": {"_count": 1}, "blank": {"_count": 1}}, "Freds": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 4, "pair": {"_count": 1}, "gigantic": {"_count": 1}, "lot": {"_count": 1}, "way": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "?": {"_count": 2}}, "death": {"_count": 1, "omens": {"_count": 1}}, "their": {"_count": 2, "children": {"_count": 1}, "stricken": {"_count": 1}}, "Harry": {"_count": 3, "Ron": {"_count": 1}, "open": {"_count": 1}, "about": {"_count": 1}}, "something": {"_count": 3, "that": {"_count": 2}, "beyond": {"_count": 1}}, "things": {"_count": 4, "like": {"_count": 1}, "said": {"_count": 1}, "across": {"_count": 1}, "from": {"_count": 1}}, "us": {"_count": 2, "all": {"_count": 1}, "before": {"_count": 1}}, "the": {"_count": 20, "outcome": {"_count": 1}, "skrewts": {"_count": 1}, "Slytherins": {"_count": 1}, "walls": {"_count": 1}, "anxiety": {"_count": 1}, "looks": {"_count": 1}, "look": {"_count": 1}, "one": {"_count": 1}, "Quidditch": {"_count": 1}, "attack": {"_count": 1}, "future": {"_count": 1}, "present": {"_count": 1}, "memory": {"_count": 1}, "snake": {"_count": 1}, "office": {"_count": 1}, "expression": {"_count": 1}, "smug": {"_count": 1}, "dementors": {"_count": 1}, "joke": {"_count": 1}, "ghost": {"_count": 1}}, "him": {"_count": 7, "": {"_count": 2}, "here": {"_count": 2}, "plainly": {"_count": 1}, "looking": {"_count": 1}, "play": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "YouKnowWho": {"_count": 1, "back": {"_count": 1}}, "it": {"_count": 4, "at": {"_count": 1}, "written": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "horrible": {"_count": 1, "visions": {"_count": 1}}, "Hagrid": {"_count": 4, "put": {"_count": 1}, "under": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}}, "bonfires": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "my": {"_count": 1, "master": {"_count": 1}}, "her": {"_count": 2, "in": {"_count": 1}, "kissing": {"_count": 1}}, "whether": {"_count": 1, "you": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 1, "through": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 11, "hes": {"_count": 1}, "Podmore": {"_count": 1}, "you": {"_count": 1}, "Seamus": {"_count": 1}, "he": {"_count": 1}, "youre": {"_count": 2}, "Harry": {"_count": 1}, "theyve": {"_count": 1}, "they": {"_count": 1}, "your": {"_count": 1}}, "Michael": {"_count": 1, "she": {"_count": 1}}, "Angelinas": {"_count": 1, "burning": {"_count": 1}}, "whom": {"_count": 1, "it": {"_count": 1}}, "how": {"_count": 4, "we": {"_count": 1}, "far": {"_count": 1}, "he": {"_count": 1}, "much": {"_count": 1}}, "hurt": {"_count": 1, "You": {"_count": 1}}, "these": {"_count": 1, "things": {"_count": 1}}, "his": {"_count": 1, "dead": {"_count": 1}}, "Malfoys": {"_count": 1, "mothers": {"_count": 1}}, "rather": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 2, "it": {"_count": 1}, "they": {"_count": 1}}, "what": {"_count": 1, "this": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "each": {"_count": 2, "other": {"_count": 2}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "stuff": {"_count": 1, "in": {"_count": 1}}, "someone": {"_count": 1, "": {"_count": 1}}, "James": {"_count": 1, "and": {"_count": 1}}, "absolute": {"_count": 1, "proof": {"_count": 1}}}, "here": {"_count": 1308, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 379, ".": {"_count": 197}, "?": {"_count": 106}, "!": {"_count": 76}}, "as": {"_count": 9, "though": {"_count": 1}, "well": {"_count": 2}, "my": {"_count": 1}, "a": {"_count": 2}, "I": {"_count": 1}, "Im": {"_count": 1}, "you": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 1}, "Floo": {"_count": 1}, "now": {"_count": 1}}, "of": {"_count": 3, "all": {"_count": 2}, "course": {"_count": 1}}, "Dumbledore": {"_count": 5, "": {"_count": 2}, "said": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}}, "Hagrid": {"_count": 6, "wed": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "stooped": {"_count": 1}}, "under": {"_count": 2, "this": {"_count": 1}, "false": {"_count": 1}}, "Harry": {"_count": 27, "put": {"_count": 1}, "called": {"_count": 1}, "Potter": {"_count": 1}, "doesnt": {"_count": 1}, "hissed": {"_count": 2}, "said": {"_count": 4}, "he": {"_count": 1}, "looked": {"_count": 1}, "whispered": {"_count": 1}, "": {"_count": 9}, "had": {"_count": 1}, "flicked": {"_count": 1}, "thought": {"_count": 1}, "told": {"_count": 1}, "muttered": {"_count": 1}}, "I": {"_count": 15, "come": {"_count": 1}, "mighta": {"_count": 1}, "need": {"_count": 1}, "want": {"_count": 3}, "mean": {"_count": 1}, "bet": {"_count": 1}, "can": {"_count": 1}, "I": {"_count": 1}, "have": {"_count": 1}, "think": {"_count": 1}, "was": {"_count": 1}, "cant": {"_count": 1}, "am": {"_count": 1}}, "it": {"_count": 4, "was": {"_count": 2}, "is": {"_count": 1}, "had": {"_count": 1}}, "was": {"_count": 10, "broken": {"_count": 1}, "ever": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 2}, "black": {"_count": 1}, "my": {"_count": 1}, "possible": {"_count": 1}, "another": {"_count": 1}, "final": {"_count": 1}}, "without": {"_count": 4, "it": {"_count": 1}, "information": {"_count": 1}, "good": {"_count": 1}, "revealing": {"_count": 1}}, "in": {"_count": 49, "five": {"_count": 1}, "a": {"_count": 7}, "your": {"_count": 3}, "the": {"_count": 15}, "person": {"_count": 1}, "no": {"_count": 1}, "Egypt": {"_count": 1}, "this": {"_count": 3}, "as": {"_count": 1}, "front": {"_count": 2}, "my": {"_count": 3}, "Privet": {"_count": 1}, "Little": {"_count": 1}, "Aunt": {"_count": 1}, "London": {"_count": 1}, "an": {"_count": 1}, "yer": {"_count": 1}, "our": {"_count": 1}, "about": {"_count": 2}, "her": {"_count": 1}, "these": {"_count": 1}}, "boy": {"_count": 3, "he": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "we": {"_count": 10, "go": {"_count": 3}, "are": {"_count": 3}, "have": {"_count": 1}, "need": {"_count": 2}, "want": {"_count": 1}}, "somewhere": {"_count": 10, "said": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 6}, "too": {"_count": 1}}, "from": {"_count": 4, "Professor": {"_count": 2}, "Experimental": {"_count": 1}, "Transylvania": {"_count": 1}}, "another": {"_count": 1, "young": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "herself": {"_count": 1, "buying": {"_count": 1}}, "ebony": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 61, "there": {"_count": 19}, "wait": {"_count": 2}, "people": {"_count": 1}, "make": {"_count": 1}, "then": {"_count": 1}, "tried": {"_count": 1}, "now": {"_count": 4}, "watch": {"_count": 1}, "watching": {"_count": 1}, "if": {"_count": 1}, "Harry": {"_count": 2}, "greet": {"_count": 1}, "allow": {"_count": 1}, "facing": {"_count": 1}, "live": {"_count": 2}, "their": {"_count": 1}, "sit": {"_count": 1}, "explain": {"_count": 1}, "he": {"_count": 3}, "made": {"_count": 1}, "hand": {"_count": 1}, "start": {"_count": 1}, "I": {"_count": 1}, "relax": {"_count": 1}, "not": {"_count": 1}, "asking": {"_count": 1}, "had": {"_count": 1}, "let": {"_count": 1}, "pull": {"_count": 1}, "part": {"_count": 1}, "we": {"_count": 1}, "keep": {"_count": 1}, "well": {"_count": 1}, "crumble": {"_count": 1}, "look": {"_count": 1}}, "because": {"_count": 10, "people": {"_count": 1}, "he": {"_count": 1}, "hes": {"_count": 2}, "they": {"_count": 2}, "we": {"_count": 1}, "of": {"_count": 2}, "the": {"_count": 1}}, "but": {"_count": 9, "Professor": {"_count": 1}, "Id": {"_count": 1}, "if": {"_count": 1}, "I": {"_count": 1}, "Kreacher": {"_count": 1}, "were": {"_count": 1}, "who": {"_count": 1}, "under": {"_count": 1}, "shes": {"_count": 1}}, "your": {"_count": 1, "House": {"_count": 1}}, "so": {"_count": 5, "that": {"_count": 1}, "early": {"_count": 1}, "I": {"_count": 2}, "long": {"_count": 1}}, "they": {"_count": 8, "are": {"_count": 1}, "thought": {"_count": 1}, "put": {"_count": 1}, "dont": {"_count": 1}, "would": {"_count": 1}, "moved": {"_count": 1}, "come": {"_count": 1}, "cant": {"_count": 1}}, "than": {"_count": 4, "up": {"_count": 1}, "at": {"_count": 1}, "we": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 46, "learn": {"_count": 1}, "save": {"_count": 3}, "be": {"_count": 1}, "break": {"_count": 1}, "visit": {"_count": 1}, "wait": {"_count": 1}, "protect": {"_count": 1}, "do": {"_count": 1}, "hurt": {"_count": 1}, "kill": {"_count": 2}, "bring": {"_count": 1}, "teach": {"_count": 2}, "see": {"_count": 6}, "look": {"_count": 1}, "keep": {"_count": 1}, "rot": {"_count": 1}, "search": {"_count": 1}, "die": {"_count": 1}, "Grimmauld": {"_count": 2}, "escort": {"_count": 1}, "examine": {"_count": 1}, "tell": {"_count": 1}, "help": {"_count": 1}, "spy": {"_count": 1}, "criticize": {"_count": 1}, "stay": {"_count": 1}, "watch": {"_count": 1}, "explain": {"_count": 1}, "avenge": {"_count": 1}, "assist": {"_count": 1}, "persuade": {"_count": 1}, "discuss": {"_count": 1}, "try": {"_count": 1}, "give": {"_count": 1}, "the": {"_count": 1}, "get": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "Malfoy": {"_count": 2, "said": {"_count": 1}, "if": {"_count": 1}}, "for": {"_count": 31, "hours": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 4}, "today": {"_count": 1}, "tonight": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 2}, "me": {"_count": 3}, "ten": {"_count": 1}, "one": {"_count": 2}, "you": {"_count": 2}, "": {"_count": 2}, "Christmas": {"_count": 1}, "Sirius": {"_count": 1}, "my": {"_count": 1}, "only": {"_count": 1}, "create": {"_count": 1}, "your": {"_count": 1}, "now": {"_count": 1}, "weeks": {"_count": 1}, "nothing": {"_count": 1}, "nearly": {"_count": 1}}, "alone": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 6, "Ive": {"_count": 1}, "shouldn": {"_count": 1}, "night": {"_count": 1}, "his": {"_count": 1}, "I": {"_count": 1}, "Im": {"_count": 1}}, "Miss": {"_count": 2, "Grangers": {"_count": 1}, "Parkinson": {"_count": 1}}, "she": {"_count": 10, "was": {"_count": 1}, "said": {"_count": 5}, "pulled": {"_count": 1}, "is": {"_count": 1}, "whispered": {"_count": 2}}, "Ive": {"_count": 4, "told": {"_count": 1}, "wondered": {"_count": 1}, "got": {"_count": 2}}, "he": {"_count": 34, "had": {"_count": 2}, "stood": {"_count": 1}, "said": {"_count": 11}, "turned": {"_count": 1}, "comes": {"_count": 2}, "was": {"_count": 3}, "is": {"_count": 3}, "told": {"_count": 1}, "couldnt": {"_count": 1}, "gestured": {"_count": 1}, "came": {"_count": 1}, "thought": {"_count": 1}, "jumped": {"_count": 1}, "kept": {"_count": 1}, "added": {"_count": 1}, "glanced": {"_count": 1}, "tries": {"_count": 1}, "touched": {"_count": 1}}, "just": {"_count": 5, "here": {"_count": 1}, "for": {"_count": 1}, "a": {"_count": 1}, "now": {"_count": 2}}, "yes": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 10, "night": {"_count": 3}, "right": {"_count": 1}, "the": {"_count": 2}, "year": {"_count": 1}, "alone": {"_count": 2}, "afternoon": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "students": {"_count": 1, "aren": {"_count": 1}}, "fer": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 50, "Hermione": {"_count": 5}, "Ron": {"_count": 5}, "Malfoy": {"_count": 1}, "Harry": {"_count": 16}, "Seamus": {"_count": 1}, "George": {"_count": 1}, "Mr": {"_count": 2}, "Bill": {"_count": 2}, "Voldemort": {"_count": 3}, "Mrs": {"_count": 3}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "Fred": {"_count": 1}, "Hagrid": {"_count": 1}, "a": {"_count": 1}, "Moody": {"_count": 1}, "Lupin": {"_count": 1}, "Ted": {"_count": 1}, "Dean": {"_count": 1}, "Flitwick": {"_count": 1}, "Dolohov": {"_count": 1}}, "how": {"_count": 2, "ter": {"_count": 1}, "good": {"_count": 1}}, "heard": {"_count": 1, "the": {"_count": 1}}, "telling": {"_count": 2, "you": {"_count": 1}, "me": {"_count": 1}}, "a": {"_count": 7, "moment": {"_count": 4}, "short": {"_count": 1}, "week": {"_count": 1}, "cave": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 5, "Ill": {"_count": 1}, "sulking": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}}, "tonight": {"_count": 12, "and": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 3}, "expecting": {"_count": 1}, "Tom": {"_count": 1}, "to": {"_count": 1}, "surrounded": {"_count": 1}, "so": {"_count": 1}, "too": {"_count": 1}, "by": {"_count": 1}}, "Peeves": {"_count": 1, "croaked": {"_count": 1}}, "goes": {"_count": 3, "": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}}, "really": {"_count": 1, "said": {"_count": 1}}, "forevermore": {"_count": 1, "To": {"_count": 1}}, "forever": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "on": {"_count": 14, "this": {"_count": 2}, "the": {"_count": 4}, "Ministry": {"_count": 1}, "an": {"_count": 1}, "perches": {"_count": 1}, "my": {"_count": 2}, "his": {"_count": 1}, "Dumbledores": {"_count": 1}, "in": {"_count": 1}}, "Potter": {"_count": 10, "": {"_count": 7}, "said": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}}, "Quirrell": {"_count": 1, "repeated": {"_count": 1}}, "you": {"_count": 14, "know": {"_count": 4}, "lot": {"_count": 1}, "are": {"_count": 2}, "were": {"_count": 1}, "go": {"_count": 1}, "said": {"_count": 1}, "worthless": {"_count": 1}, "need": {"_count": 1}, "asked": {"_count": 1}, "wont": {"_count": 1}}, "needs": {"_count": 1, "awarding": {"_count": 1}}, "soon": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 4, "said": {"_count": 1}, "": {"_count": 1}, "Snape": {"_count": 1}, "weve": {"_count": 1}}, "the": {"_count": 7, "better": {"_count": 1}, "babble": {"_count": 1}, "dementors": {"_count": 1}, "Burrow": {"_count": 1}, "previous": {"_count": 1}, "purplecarpeted": {"_count": 1}, "elf": {"_count": 1}}, "Ron": {"_count": 4, "said": {"_count": 1}, "told": {"_count": 1}, "and": {"_count": 1}, "hes": {"_count": 1}}, "stepped": {"_count": 1, "into": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "is": {"_count": 6, "an": {"_count": 1}, "she": {"_count": 1}, "your": {"_count": 1}, "pretty": {"_count": 1}, "what": {"_count": 1}, "now": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "are": {"_count": 8, "still": {"_count": 1}, "loyal": {"_count": 3}, "you": {"_count": 1}, "the": {"_count": 3}}, "compost": {"_count": 1, "in": {"_count": 1}}, "instead": {"_count": 2, "": {"_count": 2}}, "isnt": {"_count": 4, "it": {"_count": 4}}, "nearly": {"_count": 2, "four": {"_count": 1}, "a": {"_count": 1}}, "Come": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 2, "everyones": {"_count": 1}, "I": {"_count": 1}}, "now": {"_count": 7, "that": {"_count": 1}, "": {"_count": 4}, "itll": {"_count": 1}, "and": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "you": {"_count": 1}}, "can": {"_count": 1, "do": {"_count": 1}}, "if": {"_count": 15, "I": {"_count": 1}, "it": {"_count": 3}, "you": {"_count": 5}, "he": {"_count": 2}, "his": {"_count": 1}, "some": {"_count": 1}, "ever": {"_count": 1}, "Umbridge": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "tomorrow": {"_count": 2, "": {"_count": 1}, "until": {"_count": 1}}, "Fudge": {"_count": 2, "he": {"_count": 1}, "youve": {"_count": 1}}, "Lucius": {"_count": 1, "said": {"_count": 1}}, "boys": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "at": {"_count": 21, "once": {"_count": 2}, "the": {"_count": 4}, "ONCE": {"_count": 1}, "this": {"_count": 1}, "Hogwarts": {"_count": 4}, "my": {"_count": 1}, "any": {"_count": 2}, "five": {"_count": 1}, "all": {"_count": 2}, "last": {"_count": 2}, "Potterwatch": {"_count": 1}}, "Mr": {"_count": 4, "Malfoy": {"_count": 1}, "Weasley": {"_count": 1}, "Potter": {"_count": 2}}, "too": {"_count": 7, "": {"_count": 5}, "thats": {"_count": 1}, "said": {"_count": 1}}, "She": {"_count": 2, "jerked": {"_count": 1}, "raised": {"_count": 1}}, "before": {"_count": 6, "dark": {"_count": 1}, "him": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "This": {"_count": 1}}, "Hermione": {"_count": 6, "ran": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "whispered": {"_count": 1}, "told": {"_count": 1}, "were": {"_count": 1}}, "first": {"_count": 1, "and": {"_count": 1}}, "They": {"_count": 2, "huddled": {"_count": 1}, "could": {"_count": 1}}, "this": {"_count": 4, "one": {"_count": 1}, "early": {"_count": 1}, "morning": {"_count": 1}, "evening": {"_count": 1}}, "ooh": {"_count": 1, "they": {"_count": 1}}, "with": {"_count": 19, "Weasley": {"_count": 1}, "Buckbeak": {"_count": 1}, "us": {"_count": 2}, "the": {"_count": 2}, "him": {"_count": 2}, "Cedric": {"_count": 1}, "whom": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}, "Hagrid": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 2}, "all": {"_count": 1}, "me": {"_count": 1}, "Dumbledore": {"_count": 1}}, "had": {"_count": 5, "a": {"_count": 1}, "not": {"_count": 1}, "the": {"_count": 2}, "become": {"_count": 1}}, "wouldnt": {"_count": 1, "you": {"_count": 1}}, "only": {"_count": 2, "once": {"_count": 1}, "because": {"_count": 1}}, "plainer": {"_count": 1, "than": {"_count": 1}}, "come": {"_count": 2, "the": {"_count": 1}, "more": {"_count": 1}}, "anyway": {"_count": 4, "": {"_count": 4}}, "There": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 3, "the": {"_count": 1}, "heavy": {"_count": 1}, "Bill": {"_count": 1}}, "Sirius": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "played": {"_count": 1, "a": {"_count": 1}}, "biding": {"_count": 1, "their": {"_count": 1}}, "until": {"_count": 4, "Im": {"_count": 1}, "I": {"_count": 2}, "at": {"_count": 1}}, "And": {"_count": 2, "then": {"_count": 1}, "you": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "behind": {"_count": 1, "this": {"_count": 1}}, "Snape": {"_count": 2, "be": {"_count": 1}, "": {"_count": 1}}, "knowing": {"_count": 1, "as": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "Arthur": {"_count": 2, "": {"_count": 2}}, "son": {"_count": 2, "weve": {"_count": 1}, "said": {"_count": 1}}, "NOW": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 2, "moment": {"_count": 1}, "second": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "you": {"_count": 1}}, "Thank": {"_count": 1, "you": {"_count": 1}}, "an": {"_count": 1, "help": {"_count": 1}}, "later": {"_count": 1, "to": {"_count": 1}}, "thought": {"_count": 1, "it": {"_count": 1}}, "Charlie": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 6, "going": {"_count": 1}, "too": {"_count": 1}, "as": {"_count": 1}, "probably": {"_count": 1}, "not": {"_count": 1}, "only": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "comes": {"_count": 3, "Mr": {"_count": 1}, "another": {"_count": 1}, "Slytherin": {"_count": 1}}, "Ill": {"_count": 2, "do": {"_count": 1}, "go": {"_count": 1}}, "absorbed": {"_count": 1, "in": {"_count": 1}}, "wide": {"_count": 1, "open": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "please": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "representing": {"_count": 1, "him": {"_count": 1}}, "youre": {"_count": 1, "just": {"_count": 1}}, "anymore": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Bagman": {"_count": 1, "gave": {"_count": 1}}, "who": {"_count": 2, "know": {"_count": 1}, "had": {"_count": 1}}, "hes": {"_count": 1, "down": {"_count": 1}}, "quicker": {"_count": 1, "": {"_count": 1}}, "Headmaster": {"_count": 1, "": {"_count": 1}}, "wondering": {"_count": 1, "if": {"_count": 1}}, "could": {"_count": 1, "they": {"_count": 1}}, "has": {"_count": 1, "paid": {"_count": 1}}, "Voldemort": {"_count": 1, "moved": {"_count": 1}}, "where": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 1}, "this": {"_count": 1}}, "theyre": {"_count": 2, "in": {"_count": 1}, "not": {"_count": 1}}, "Girls": {"_count": 1, "were": {"_count": 1}}, "undisturbed": {"_count": 1, "for": {"_count": 1}}, "Moody": {"_count": 1, "whispered": {"_count": 1}}, "Harrys": {"_count": 2, "here": {"_count": 1}, "imagination": {"_count": 1}}, "CRASH": {"_count": 1, "": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "Kreacher": {"_count": 1, "doesnt": {"_count": 1}}, "either": {"_count": 1, "look": {"_count": 1}}, "down": {"_count": 1, "here": {"_count": 1}}, "panted": {"_count": 1, "Mr": {"_count": 1}}, "surely": {"_count": 1, "": {"_count": 1}}, "otherwise": {"_count": 1, "the": {"_count": 1}}, "Neville": {"_count": 1, "mumbled": {"_count": 1}}, "then": {"_count": 5, "": {"_count": 2}, "Dumbledore": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 1}}, "though": {"_count": 3, "said": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "shes": {"_count": 1, "given": {"_count": 1}}, "No": {"_count": 2, "look": {"_count": 1}, "more": {"_count": 1}}, "about": {"_count": 5, "life": {"_count": 1}, "now": {"_count": 1}, "Morfin": {"_count": 1}, "navy": {"_count": 1}, "a": {"_count": 1}}, "forming": {"_count": 1, "some": {"_count": 1}}, "whatever": {"_count": 1, "you": {"_count": 1}}, "alive": {"_count": 1, "like": {"_count": 1}}, "theres": {"_count": 1, "nothing": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "remember": {"_count": 1, "George": {"_count": 1}}, "today": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "He": {"_count": 2, "thrust": {"_count": 1}, "glanced": {"_count": 1}}, "grunted": {"_count": 1, "Moody": {"_count": 1}}, "our": {"_count": 1, "Welcome": {"_count": 1}}, "same": {"_count": 1, "time": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "sixteen": {"_count": 1, "years": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "Snivellus": {"_count": 1, "I": {"_count": 1}}, "Is": {"_count": 1, "that": {"_count": 1}}, "Grawp": {"_count": 1, "": {"_count": 1}}, "muttered": {"_count": 1, "Hermione": {"_count": 1}}, "Ronan": {"_count": 1, "replied": {"_count": 1}}, "boasting": {"_count": 1, "that": {"_count": 1}}, "unasked": {"_count": 1, "they": {"_count": 1}}, "giant": {"_count": 1, "": {"_count": 1}}, "mate": {"_count": 1, "said": {"_count": 1}}, "whispered": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "Rookwood": {"_count": 1, "over": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "ha": {"_count": 1, "ha": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "nor": {"_count": 3, "there": {"_count": 3}}, "talking": {"_count": 1, "to": {"_count": 1}}, "however": {"_count": 1, "unwelcome": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "quick": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "Trevor": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 2, "she": {"_count": 1}, "said": {"_count": 1}}, "or": {"_count": 4, "": {"_count": 1}, "Apparate": {"_count": 1}, "Im": {"_count": 1}, "dyou": {"_count": 1}}, "sniffed": {"_count": 1, "Hermione": {"_count": 1}}, "theyll": {"_count": 1, "do": {"_count": 1}}, "following": {"_count": 1, "a": {"_count": 1}}, "although": {"_count": 1, "I": {"_count": 1}}, "whos": {"_count": 1, "not": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "added": {"_count": 1, "Worple": {"_count": 1}}, "not": {"_count": 1, "in": {"_count": 1}}, "look": {"_count": 2, "what": {"_count": 1}, "properly": {"_count": 1}}, "yet": {"_count": 1, "said": {"_count": 1}}, "overnight": {"_count": 1, "said": {"_count": 1}}, "early": {"_count": 1, "enough": {"_count": 1}}, "Hokey": {"_count": 1, "": {"_count": 1}}, "crying": {"_count": 1, "": {"_count": 1}}, "precisely": {"_count": 1, "said": {"_count": 1}}, "Make": {"_count": 1, "it": {"_count": 1}}, "invited": {"_count": 1, "you": {"_count": 1}}, "spreadeagled": {"_count": 1, "broken": {"_count": 1}}, "within": {"_count": 2, "seconds": {"_count": 1}, "sight": {"_count": 1}}, "my": {"_count": 1, "aunt": {"_count": 1}}, "Hedwig": {"_count": 1, "Harry": {"_count": 1}}, "safely": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "Thicknesse": {"_count": 1, "is": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "But": {"_count": 1, "why": {"_count": 1}}, "four": {"_count": 1, "days": {"_count": 1}}, "making": {"_count": 1, "volau": {"_count": 1}}, "disguised": {"_count": 1, "": {"_count": 1}}, "except": {"_count": 1, "us": {"_count": 1}}, "last": {"_count": 2, "weekend": {"_count": 1}, "time": {"_count": 1}}, "three": {"_count": 1, "days": {"_count": 1}}, "after": {"_count": 2, "the": {"_count": 1}, "weeks": {"_count": 1}}, "Runcorn": {"_count": 1, "": {"_count": 1}}, "casting": {"_count": 1, "their": {"_count": 1}}, "Mafalda": {"_count": 1, "pass": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "into": {"_count": 1, "yours": {"_count": 1}}, "well": {"_count": 1, "I": {"_count": 1}}, "once": {"_count": 1, "with": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "trap": {"_count": 1, "us": {"_count": 1}}, "As": {"_count": 1, "she": {"_count": 1}}, "knew": {"_count": 1, "what": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}}, "Professor": {"_count": 2017, "McGonagall": {"_count": 596, "": {"_count": 107}, "sniffed": {"_count": 1}, "irritably": {"_count": 2}, "coldly": {"_count": 2}, "flinched": {"_count": 1}, "sounding": {"_count": 1}, "shot": {"_count": 1}, "had": {"_count": 20}, "gasped": {"_count": 2}, "pulled": {"_count": 3}, "jumping": {"_count": 2}, "faintly": {"_count": 1}, "opened": {"_count": 2}, "grudgingly": {"_count": 1}, "bent": {"_count": 1}, "youll": {"_count": 1}, "whispered": {"_count": 1}, "blinked": {"_count": 1}, "Professor": {"_count": 2}, "said": {"_count": 12}, "blew": {"_count": 2}, "across": {"_count": 1}, "showed": {"_count": 2}, "would": {"_count": 3}, "told": {"_count": 12}, "led": {"_count": 2}, "silently": {"_count": 1}, "now": {"_count": 3}, "jerked": {"_count": 1}, "rolled": {"_count": 1}, "was": {"_count": 33}, "Snape": {"_count": 1}, "who": {"_count": 14}, "didnt": {"_count": 3}, "stopped": {"_count": 2}, "and": {"_count": 19}, "pointed": {"_count": 1}, "slammed": {"_count": 1}, "crisply": {"_count": 4}, "explained": {"_count": 2}, "peered": {"_count": 2}, "for": {"_count": 3}, "with": {"_count": 7}, "they": {"_count": 1}, "staring": {"_count": 1}, "turned": {"_count": 7}, "on": {"_count": 2}, "he": {"_count": 2}, "in": {"_count": 10}, "appeared": {"_count": 2}, "breathing": {"_count": 1}, "says": {"_count": 2}, "watched": {"_count": 2}, "carrying": {"_count": 1}, "repeated": {"_count": 1}, "a": {"_count": 4}, "head": {"_count": 2}, "angry": {"_count": 1}, "is": {"_count": 1}, "to": {"_count": 4}, "gave": {"_count": 3}, "raised": {"_count": 1}, "wasnt": {"_count": 1}, "raising": {"_count": 2}, "sharply": {"_count": 7}, "hurried": {"_count": 1}, "swept": {"_count": 1}, "eagerly": {"_count": 1}, "asked": {"_count": 3}, "stared": {"_count": 4}, "telling": {"_count": 1}, "came": {"_count": 7}, "conjured": {"_count": 1}, "alone": {"_count": 1}, "curtly": {"_count": 3}, "stepped": {"_count": 1}, "rapped": {"_count": 2}, "sometimes": {"_count": 1}, "so": {"_count": 1}, "called": {"_count": 4}, "without": {"_count": 1}, "ignored": {"_count": 4}, "back": {"_count": 2}, "pushed": {"_count": 2}, "heavily": {"_count": 1}, "restored": {"_count": 1}, "scowl": {"_count": 1}, "made": {"_count": 3}, "thinks": {"_count": 1}, "both": {"_count": 2}, "blow": {"_count": 1}, "arrived": {"_count": 1}, "whose": {"_count": 1}, "weakly": {"_count": 2}, "prompted": {"_count": 2}, "I": {"_count": 2}, "meant": {"_count": 1}, "standing": {"_count": 3}, "Transfiguration": {"_count": 1}, "ushered": {"_count": 1}, "motioned": {"_count": 1}, "strode": {"_count": 1}, "shooed": {"_count": 1}, "turning": {"_count": 5}, "suddenly": {"_count": 3}, "fixing": {"_count": 1}, "broke": {"_count": 1}, "after": {"_count": 2}, "when": {"_count": 1}, "looked": {"_count": 6}, "please": {"_count": 1}, "summoned": {"_count": 1}, "seemed": {"_count": 1}, "considered": {"_count": 1}, "stood": {"_count": 4}, "arent": {"_count": 1}, "exasperatedly": {"_count": 1}, "darkly": {"_count": 1}, "impatiently": {"_count": 2}, "poked": {"_count": 1}, "her": {"_count": 4}, "tartly": {"_count": 3}, "dryly": {"_count": 2}, "beadily": {"_count": 1}, "but": {"_count": 1}, "quite": {"_count": 1}, "agrees": {"_count": 1}, "about": {"_count": 4}, "halfway": {"_count": 1}, "tried": {"_count": 1}, "up": {"_count": 1}, "this": {"_count": 1}, "Deputy": {"_count": 1}, "straightening": {"_count": 2}, "passed": {"_count": 1}, "picked": {"_count": 2}, "that": {"_count": 1}, "cleared": {"_count": 1}, "than": {"_count": 1}, "the": {"_count": 1}, "running": {"_count": 1}, "barked": {"_count": 1}, "snapped": {"_count": 1}, "closed": {"_count": 4}, "angrily": {"_count": 1}, "as": {"_count": 4}, "continued": {"_count": 2}, "went": {"_count": 2}, "waited": {"_count": 1}, "firmly": {"_count": 1}, "Madame": {"_count": 1}, "held": {"_count": 1}, "looking": {"_count": 6}, "stopping": {"_count": 1}, "lose": {"_count": 1}, "fumed": {"_count": 1}, "struggled": {"_count": 1}, "cried": {"_count": 1}, "nodded": {"_count": 2}, "placed": {"_count": 1}, "lowered": {"_count": 1}, "dear": {"_count": 1}, "emerged": {"_count": 1}, "took": {"_count": 1}, "rounding": {"_count": 1}, "sat": {"_count": 1}, "set": {"_count": 1}, "flatly": {"_count": 1}, "eyed": {"_count": 1}, "grimly": {"_count": 1}, "marched": {"_count": 1}, "addressed": {"_count": 1}, "around": {"_count": 1}, "finally": {"_count": 1}, "brusquely": {"_count": 1}, "however": {"_count": 1}, "cared": {"_count": 1}, "slamming": {"_count": 1}, "violently": {"_count": 1}, "she": {"_count": 1}, "past": {"_count": 1}, "if": {"_count": 1}, "got": {"_count": 2}, "pausing": {"_count": 1}, "all": {"_count": 1}, "were": {"_count": 1}, "played": {"_count": 1}, "alongside": {"_count": 1}, "harshly": {"_count": 1}, "loudly": {"_count": 2}, "crouched": {"_count": 1}, "getting": {"_count": 1}, "scornfully": {"_count": 1}, "sardonically": {"_count": 1}, "saying": {"_count": 1}, "remembering": {"_count": 1}, "tersely": {"_count": 1}, "extracting": {"_count": 1}, "through": {"_count": 1}, "haughtily": {"_count": 1}, "still": {"_count": 1}, "perseverance": {"_count": 1}, "even": {"_count": 1}, "superbly": {"_count": 1}, "continuing": {"_count": 1}, "walking": {"_count": 1}, "pronounced": {"_count": 1}, "shrugging": {"_count": 1}, "thrusting": {"_count": 1}, "sank": {"_count": 1}, "at": {"_count": 1}, "Head": {"_count": 1}, "needed": {"_count": 1}, "tapped": {"_count": 1}, "consulting": {"_count": 1}, "did": {"_count": 2}, "upstairs": {"_count": 1}, "how": {"_count": 1}, "not": {"_count": 1}, "tell": {"_count": 1}, "Forgot": {"_count": 1}, "into": {"_count": 2}, "entered": {"_count": 1}, "distractedly": {"_count": 2}, "glared": {"_count": 1}, "incredulously": {"_count": 1}, "kindly": {"_count": 1}, "glancing": {"_count": 1}, "losing": {"_count": 1}, "whether": {"_count": 1}, "his": {"_count": 1}, "clutching": {"_count": 1}, "Voldemorts": {"_count": 1}, "rose": {"_count": 1}, "waved": {"_count": 1}, "Harry": {"_count": 1}, "moved": {"_count": 1}, "pointing": {"_count": 1}, "beckoning": {"_count": 1}, "hurrying": {"_count": 1}, "dropped": {"_count": 1}, "then": {"_count": 1}, "could": {"_count": 1}}, "Ive": {"_count": 3, "never": {"_count": 1}, "just": {"_count": 1}, "got": {"_count": 1}}, "surely": {"_count": 1, "a": {"_count": 1}}, "McGonagalls": {"_count": 44, "voice": {"_count": 7}, "wake": {"_count": 1}, "study": {"_count": 1}, "nostrils": {"_count": 2}, "hand": {"_count": 2}, "classes": {"_count": 1}, "shadowy": {"_count": 1}, "cheek": {"_count": 1}, "permission": {"_count": 1}, "office": {"_count": 6}, "desk": {"_count": 4}, "Transfiguration": {"_count": 1}, "severe": {"_count": 1}, "reach": {"_count": 1}, "": {"_count": 1}, "irritated": {"_count": 1}, "mouth": {"_count": 1}, "dark": {"_count": 1}, "long": {"_count": 1}, "beady": {"_count": 1}, "shoulder": {"_count": 1}, "face": {"_count": 1}, "eyes": {"_count": 1}, "reaction": {"_count": 1}, "all": {"_count": 1}, "descent": {"_count": 2}, "tartan": {"_count": 1}}, "Dumbledore": {"_count": 125, "sir": {"_count": 5}, "Given": {"_count": 1}, "said": {"_count": 7}, "enjoys": {"_count": 1}, "": {"_count": 22}, "got": {"_count": 1}, "and": {"_count": 5}, "will": {"_count": 3}, "an": {"_count": 1}, "left": {"_count": 1}, "is": {"_count": 2}, "in": {"_count": 1}, "says": {"_count": 3}, "didnt": {"_count": 1}, "the": {"_count": 2}, "these": {"_count": 1}, "obviously": {"_count": 1}, "has": {"_count": 3}, "was": {"_count": 6}, "Ron": {"_count": 1}, "he": {"_count": 1}, "though": {"_count": 1}, "started": {"_count": 1}, "sent": {"_count": 1}, "told": {"_count": 3}, "paused": {"_count": 1}, "closing": {"_count": 1}, "came": {"_count": 1}, "how": {"_count": 1}, "that": {"_count": 3}, "about": {"_count": 1}, "Sirius": {"_count": 1}, "managed": {"_count": 1}, "yesterday": {"_count": 1}, "Sorry": {"_count": 1}, "had": {"_count": 3}, "knew": {"_count": 1}, "Professor": {"_count": 1}, "coming": {"_count": 1}, "who": {"_count": 3}, "followed": {"_count": 1}, "ignoring": {"_count": 1}, "believes": {"_count": 1}, "gave": {"_count": 1}, "took": {"_count": 1}, "offered": {"_count": 1}, "paying": {"_count": 1}, "very": {"_count": 1}, "doesnt": {"_count": 1}, "she": {"_count": 1}, "sitting": {"_count": 1}, "rose": {"_count": 1}, "knows": {"_count": 1}, "Potter": {"_count": 1}, "think": {"_count": 1}, "want": {"_count": 1}, "wouldnt": {"_count": 1}, "guessing": {"_count": 1}, "please": {"_count": 1}, "might": {"_count": 1}, "Im": {"_count": 1}, "returned": {"_count": 1}, "when": {"_count": 1}, "were": {"_count": 1}, "never": {"_count": 1}, "always": {"_count": 1}, "so": {"_count": 1}, "used": {"_count": 1}, "cared": {"_count": 1}}, "Quirrell": {"_count": 19, "": {"_count": 4}, "will": {"_count": 1}, "grasping": {"_count": 1}, "as": {"_count": 1}, "keep": {"_count": 1}, "was": {"_count": 1}, "Mr": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 1}, "who": {"_count": 2}, "came": {"_count": 1}, "headfirst": {"_count": 1}, "an": {"_count": 1}, "is": {"_count": 1}, "did": {"_count": 1}}, "Vindictus": {"_count": 1, "Viridian": {"_count": 1}}, "Snape": {"_count": 93, "": {"_count": 16}, "disliked": {"_count": 1}, "said": {"_count": 6}, "about": {"_count": 1}, "Harry": {"_count": 4}, "couldnt": {"_count": 1}, "but": {"_count": 1}, "if": {"_count": 1}, "to": {"_count": 1}, "teach": {"_count": 1}, "who": {"_count": 2}, "the": {"_count": 1}, "idly": {"_count": 1}, "cut": {"_count": 1}, "made": {"_count": 3}, "was": {"_count": 7}, "stepped": {"_count": 1}, "has": {"_count": 4}, "there": {"_count": 1}, "we": {"_count": 1}, "and": {"_count": 4}, "is": {"_count": 1}, "good": {"_count": 1}, "sat": {"_count": 1}, "it": {"_count": 1}, "drifting": {"_count": 1}, "discovered": {"_count": 2}, "he": {"_count": 1}, "so": {"_count": 2}, "would": {"_count": 1}, "dear": {"_count": 2}, "tells": {"_count": 1}, "sir": {"_count": 1}, "absolutely": {"_count": 1}, "that": {"_count": 2}, "found": {"_count": 1}, "grew": {"_count": 1}, "requested": {"_count": 1}, "intended": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}, "from": {"_count": 1}, "meanwhile": {"_count": 1}, "at": {"_count": 1}, "knows": {"_count": 1}, "knew": {"_count": 1}, "felt": {"_count": 1}, "whom": {"_count": 1}, "Well": {"_count": 1}, "sent": {"_count": 1}, "Let": {"_count": 1}}, "Quirrells": {"_count": 2, "turban": {"_count": 1}, "head": {"_count": 1}}, "Sprout": {"_count": 66, "where": {"_count": 2}, "Professor": {"_count": 1}, "say": {"_count": 1}, "": {"_count": 14}, "was": {"_count": 3}, "the": {"_count": 2}, "who": {"_count": 3}, "took": {"_count": 2}, "put": {"_count": 1}, "dusted": {"_count": 1}, "had": {"_count": 4}, "wanted": {"_count": 1}, "very": {"_count": 1}, "set": {"_count": 1}, "escorted": {"_count": 1}, "has": {"_count": 1}, "clapped": {"_count": 1}, "as": {"_count": 3}, "showing": {"_count": 1}, "told": {"_count": 3}, "and": {"_count": 1}, "stoppering": {"_count": 1}, "shaking": {"_count": 1}, "seemed": {"_count": 1}, "Ludo": {"_count": 1}, "said": {"_count": 1}, "started": {"_count": 1}, "gave": {"_count": 1}, "were": {"_count": 1}, "awarded": {"_count": 1}, "came": {"_count": 1}, "ushered": {"_count": 1}, "will": {"_count": 1}, "briskly": {"_count": 1}, "warmly": {"_count": 1}, "headed": {"_count": 1}, "completed": {"_count": 1}, "Head": {"_count": 1}, "already": {"_count": 1}}, "Binns": {"_count": 35, "had": {"_count": 3}, "told": {"_count": 1}, "who": {"_count": 2}, "opened": {"_count": 1}, "glancing": {"_count": 1}, "blinked": {"_count": 1}, "was": {"_count": 1}, "slowly": {"_count": 1}, "s": {"_count": 2}, "paused": {"_count": 1}, "looked": {"_count": 1}, "in": {"_count": 3}, "shuffling": {"_count": 1}, "": {"_count": 2}, "where": {"_count": 1}, "asked": {"_count": 1}, "desk": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}, "has": {"_count": 1}, "with": {"_count": 1}, "their": {"_count": 1}, "floating": {"_count": 1}, "crouched": {"_count": 1}, "said": {"_count": 1}, "raised": {"_count": 1}, "clearly": {"_count": 1}, "mentioned": {"_count": 1}}, "Flitwick": {"_count": 79, "the": {"_count": 4}, "could": {"_count": 2}, "appeared": {"_count": 1}, "beaming": {"_count": 1}, "announced": {"_count": 1}, "put": {"_count": 1}, "perched": {"_count": 1}, "clapping": {"_count": 1}, "were": {"_count": 2}, "who": {"_count": 3}, "had": {"_count": 5}, "Professor": {"_count": 1}, "called": {"_count": 2}, "you": {"_count": 1}, "Im": {"_count": 1}, "squarely": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 4}, "knows": {"_count": 1}, "buried": {"_count": 1}, "let": {"_count": 2}, "burst": {"_count": 1}, "": {"_count": 7}, "brought": {"_count": 1}, "smacking": {"_count": 1}, "whose": {"_count": 1}, "cleared": {"_count": 1}, "will": {"_count": 1}, "believes": {"_count": 1}, "reprovingly": {"_count": 1}, "angry": {"_count": 1}, "hinted": {"_count": 1}, "did": {"_count": 1}, "came": {"_count": 3}, "gave": {"_count": 1}, "for": {"_count": 1}, "went": {"_count": 2}, "squeakily": {"_count": 1}, "whether": {"_count": 1}, "pressed": {"_count": 1}, "bringing": {"_count": 1}, "in": {"_count": 2}, "was": {"_count": 2}, "he": {"_count": 1}, "beneath": {"_count": 1}, "has": {"_count": 1}, "flat": {"_count": 1}, "reproachfully": {"_count": 1}, "reemerging": {"_count": 1}, "are": {"_count": 1}, "says": {"_count": 1}, "There": {"_count": 1}}, "": {"_count": 71, ".": {"_count": 20}, "?": {"_count": 33}, "!": {"_count": 18}}, "Be": {"_count": 1, "quiet": {"_count": 1}}, "a": {"_count": 1, "Nimbus": {"_count": 1}}, "M": {"_count": 3, "": {"_count": 3}}, "said": {"_count": 21, "Malfoy": {"_count": 2}, "a": {"_count": 1}, "Harry": {"_count": 12}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 2}, "Filch": {"_count": 2}, "Parvati": {"_count": 1}}, "Dumbledores": {"_count": 10, "chair": {"_count": 1}, "wand": {"_count": 1}, "instructions": {"_count": 1}, "": {"_count": 1}, "got": {"_count": 1}, "phoenix": {"_count": 1}, "orders": {"_count": 1}, "death": {"_count": 1}, "murder": {"_count": 1}, "portrait": {"_count": 1}}, "Slytherins": {"_count": 1, "score": {"_count": 1}}, "Snapes": {"_count": 6, "classes": {"_count": 1}, "very": {"_count": 1}, "essay": {"_count": 1}, "version": {"_count": 1}, "timely": {"_count": 1}, "school": {"_count": 1}}, "if": {"_count": 1, "anyone": {"_count": 1}}, "please": {"_count": 1, "You": {"_count": 1}}, "its": {"_count": 2, "about": {"_count": 1}, "all": {"_count": 1}}, "I": {"_count": 6, "think": {"_count": 1}, "wanted": {"_count": 1}, "I": {"_count": 2}, "vood": {"_count": 1}, "was": {"_count": 1}}, "Potter": {"_count": 1, "I": {"_count": 1}}, "Severus": {"_count": 2, "Snape": {"_count": 2}}, "we": {"_count": 1, "couldnt": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "Sprouts": {"_count": 6, "arms": {"_count": 1}, "scowl": {"_count": 1}, "eyebrows": {"_count": 1}, "preferred": {"_count": 1}, "head": {"_count": 1}, "got": {"_count": 1}}, "see": {"_count": 1, "Harry": {"_count": 1}}, "S": {"_count": 1, "": {"_count": 1}}, "Lockhart": {"_count": 13, "back": {"_count": 1}, "answer": {"_count": 1}, "requested": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "He": {"_count": 1}, "Am": {"_count": 1}, "up": {"_count": 1}, "would": {"_count": 1}, "himself": {"_count": 1}}, "cant": {"_count": 1, "I": {"_count": 1}}, "piped": {"_count": 1, "up": {"_count": 1}}, "could": {"_count": 2, "you": {"_count": 2}}, "Sinistra": {"_count": 8, "of": {"_count": 2}, "s": {"_count": 3}, "who": {"_count": 1}, "the": {"_count": 1}, "Europas": {"_count": 1}}, "Harry": {"_count": 10, "gasped": {"_count": 2}, "went": {"_count": 1}, "interrupted": {"_count": 1}, "said": {"_count": 4}, "mumbled": {"_count": 1}, "hurried": {"_count": 1}}, "Gilderoy": {"_count": 1, "Lockhart": {"_count": 1}}, "Flitwicks": {"_count": 10, "class": {"_count": 2}, "classroom": {"_count": 2}, "office": {"_count": 1}, "squeaky": {"_count": 1}, "mentioned": {"_count": 1}, "head": {"_count": 1}, "outstretched": {"_count": 1}, "lyin": {"_count": 1}}, "Dippet": {"_count": 8, "ashamed": {"_count": 1}, "": {"_count": 1}, "asked": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 1}, "expected": {"_count": 1}}, "weve": {"_count": 3, "got": {"_count": 2}, "just": {"_count": 1}}, "he": {"_count": 7, "started": {"_count": 1}, "added": {"_count": 2}, "panted": {"_count": 1}, "just": {"_count": 1}, "told": {"_count": 1}, "choked": {"_count": 1}}, "R": {"_count": 2, "": {"_count": 2}}, "Lupins": {"_count": 10, "pallid": {"_count": 1}, "presence": {"_count": 1}, "words": {"_count": 1}, "wand": {"_count": 1}, "frightened": {"_count": 1}, "robes": {"_count": 1}, "name": {"_count": 1}, "lack": {"_count": 1}, "a": {"_count": 1}, "departure": {"_count": 1}}, "Lupin": {"_count": 119, "": {"_count": 21}, "stirred": {"_count": 1}, "cautiously": {"_count": 1}, "gave": {"_count": 4}, "be": {"_count": 1}, "was": {"_count": 6}, "slept": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 3}, "appeared": {"_count": 2}, "watching": {"_count": 1}, "crumpled": {"_count": 1}, "stepped": {"_count": 1}, "had": {"_count": 7}, "knew": {"_count": 1}, "an": {"_count": 1}, "sent": {"_count": 1}, "who": {"_count": 5}, "clapped": {"_count": 1}, "looked": {"_count": 2}, "died": {"_count": 1}, "wasnt": {"_count": 1}, "when": {"_count": 1}, "out": {"_count": 1}, "putting": {"_count": 1}, "with": {"_count": 1}, "opening": {"_count": 1}, "came": {"_count": 2}, "beckoning": {"_count": 1}, "went": {"_count": 1}, "calmly": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 2}, "choosing": {"_count": 1}, "cheerfully": {"_count": 1}, "however": {"_count": 1}, "now": {"_count": 1}, "shouted": {"_count": 1}, "suddenly": {"_count": 1}, "as": {"_count": 2}, "passed": {"_count": 1}, "looking": {"_count": 1}, "you": {"_count": 1}, "took": {"_count": 1}, "I": {"_count": 1}, "has": {"_count": 1}, "hasnt": {"_count": 1}, "gets": {"_count": 1}, "smiled": {"_count": 1}, "covering": {"_count": 1}, "sharply": {"_count": 1}, "will": {"_count": 1}, "is": {"_count": 2}, "said": {"_count": 1}, "turned": {"_count": 2}, "continued": {"_count": 1}, "forcing": {"_count": 1}, "sternly": {"_count": 1}, "lowered": {"_count": 1}, "could": {"_count": 1}, "can": {"_count": 1}, "on": {"_count": 1}, "from": {"_count": 1}, "go": {"_count": 1}, "about": {"_count": 1}, "would": {"_count": 1}, "their": {"_count": 1}, "even": {"_count": 1}, "taught": {"_count": 1}, "piped": {"_count": 1}, "in": {"_count": 1}, "thought": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "Kettleburn": {"_count": 2, "our": {"_count": 1}, "said": {"_count": 1}}, "Trelawney": {"_count": 180, "moved": {"_count": 1}, "who": {"_count": 9}, "": {"_count": 13}, "delicately": {"_count": 1}, "went": {"_count": 3}, "the": {"_count": 1}, "continued": {"_count": 1}, "seemed": {"_count": 4}, "swept": {"_count": 2}, "had": {"_count": 5}, "cried": {"_count": 1}, "gazed": {"_count": 1}, "whirled": {"_count": 1}, "was": {"_count": 13}, "stared": {"_count": 1}, "chose": {"_count": 1}, "sank": {"_count": 2}, "surveyed": {"_count": 1}, "in": {"_count": 9}, "packed": {"_count": 1}, "faintly": {"_count": 1}, "She": {"_count": 1}, "said": {"_count": 3}, "even": {"_count": 1}, "gliding": {"_count": 1}, "however": {"_count": 1}, "hesitated": {"_count": 1}, "ignored": {"_count": 1}, "gave": {"_count": 3}, "behaved": {"_count": 1}, "looked": {"_count": 2}, "made": {"_count": 1}, "sitting": {"_count": 3}, "rustled": {"_count": 1}, "as": {"_count": 2}, "whispered": {"_count": 1}, "breathed": {"_count": 1}, "raised": {"_count": 1}, "stood": {"_count": 1}, "Ive": {"_count": 1}, "could": {"_count": 1}, "really": {"_count": 2}, "sat": {"_count": 2}, "prompted": {"_count": 1}, "scribbling": {"_count": 1}, "urged": {"_count": 1}, "sighed": {"_count": 1}, "didnt": {"_count": 1}, "spoke": {"_count": 1}, "make": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "bless": {"_count": 1}, "kept": {"_count": 1}, "lived": {"_count": 1}, "right": {"_count": 1}, "were": {"_count": 1}, "know": {"_count": 1}, "a": {"_count": 1}, "sounding": {"_count": 1}, "peering": {"_count": 1}, "heard": {"_count": 1}, "told": {"_count": 2}, "should": {"_count": 1}, "nodding": {"_count": 1}, "bent": {"_count": 1}, "began": {"_count": 2}, "looking": {"_count": 2}, "If": {"_count": 1}, "considered": {"_count": 1}, "or": {"_count": 2}, "set": {"_count": 1}, "nodded": {"_count": 1}, "pulled": {"_count": 1}, "scowled": {"_count": 1}, "shortly": {"_count": 1}, "holding": {"_count": 1}, "clutching": {"_count": 1}, "suddenly": {"_count": 1}, "pointed": {"_count": 1}, "finished": {"_count": 1}, "standing": {"_count": 1}, "perhaps": {"_count": 1}, "slammed": {"_count": 1}, "loudly": {"_count": 1}, "flounced": {"_count": 1}, "leaping": {"_count": 1}, "and": {"_count": 3}, "might": {"_count": 1}, "broke": {"_count": 1}, "tears": {"_count": 1}, "sink": {"_count": 1}, "shuddered": {"_count": 1}, "is": {"_count": 1}, "continue": {"_count": 1}, "did": {"_count": 1}, "dissolving": {"_count": 1}, "are": {"_count": 1}, "appeared": {"_count": 1}, "focusing": {"_count": 1}, "with": {"_count": 3}, "still": {"_count": 1}, "sprawled": {"_count": 1}, "to": {"_count": 1}, "drawing": {"_count": 1}, "glaring": {"_count": 1}, "sniffily": {"_count": 1}, "drew": {"_count": 1}, "again": {"_count": 1}, "that": {"_count": 1}, "from": {"_count": 1}}, "Trelawneys": {"_count": 36, "chair": {"_count": 2}, "huge": {"_count": 1}, "ladder": {"_count": 1}, "classroom": {"_count": 3}, "stifling": {"_count": 1}, "enormous": {"_count": 1}, "tower": {"_count": 1}, "room": {"_count": 3}, "voice": {"_count": 2}, "conversation": {"_count": 1}, "head": {"_count": 2}, "words": {"_count": 2}, "prediction": {"_count": 2}, "rambling": {"_count": 1}, "mystical": {"_count": 1}, "predictions": {"_count": 1}, "fire": {"_count": 1}, "habit": {"_count": 1}, "seat": {"_count": 1}, "shoulder": {"_count": 1}, "increasingly": {"_count": 1}, "other": {"_count": 2}, "luggage": {"_count": 1}, "Inner": {"_count": 1}, "continual": {"_count": 1}, "prophecy": {"_count": 1}}, "drawled": {"_count": 1, "Malfoy": {"_count": 1}}, "Boggart": {"_count": 1, "Snape": {"_count": 1}}, "my": {"_count": 2, "aunt": {"_count": 2}}, "You": {"_count": 1, "cant": {"_count": 1}}, "Vector": {"_count": 7, "that": {"_count": 1}, "didnt": {"_count": 1}, "said": {"_count": 1}, "Its": {"_count": 1}, "I": {"_count": 1}, "who": {"_count": 1}, "about": {"_count": 1}}, "just": {"_count": 2, "giving": {"_count": 1}, "drink": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "sorry": {"_count": 2, "": {"_count": 2}}, "walked": {"_count": 1, "to": {"_count": 1}}, "Blacks": {"_count": 1, "telling": {"_count": 1}}, "Dumbledorel": {"_count": 1, "And": {"_count": 1}}, "Moody": {"_count": 26, "": {"_count": 10}, "was": {"_count": 1}, "limping": {"_count": 1}, "lent": {"_count": 1}, "Im": {"_count": 1}, "had": {"_count": 1}, "considers": {"_count": 1}, "and": {"_count": 1}, "looked": {"_count": 1}, "this": {"_count": 1}, "dyou": {"_count": 1}, "in": {"_count": 1}, "something": {"_count": 1}, "No": {"_count": 1}, "said": {"_count": 1}, "leaving": {"_count": 1}, "Professor": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "Moodys": {"_count": 2, "book": {"_count": 1}, "office": {"_count": 1}}, "Karkaroff": {"_count": 14, "Dumbledore": {"_count": 1}, "and": {"_count": 3}, "spun": {"_count": 1}, "swept": {"_count": 1}, "to": {"_count": 1}, "Madame": {"_count": 3}, "": {"_count": 2}, "came": {"_count": 1}, "said": {"_count": 1}}, "Karkaroffs": {"_count": 2, "other": {"_count": 1}, "chair": {"_count": 1}}, "Im": {"_count": 5, "supposed": {"_count": 1}, "ready": {"_count": 1}, "really": {"_count": 1}, "acting": {"_count": 1}, "sorry": {"_count": 1}}, "Lockharts": {"_count": 2, "day": {"_count": 1}, "memory": {"_count": 1}}, "GrubblyPlank": {"_count": 38, "she": {"_count": 1}, "shortly": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 4}, "acted": {"_count": 1}, "throwing": {"_count": 1}, "was": {"_count": 2}, "told": {"_count": 1}, "continued": {"_count": 1}, "could": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "who": {"_count": 2}, "stood": {"_count": 1}, "once": {"_count": 1}, "sharply": {"_count": 1}, "repressively": {"_count": 1}, "hands": {"_count": 1}, "breezily": {"_count": 1}, "heartily": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "appeared": {"_count": 1}, "stuck": {"_count": 1}, "her": {"_count": 1}, "pulled": {"_count": 1}, "gruffly": {"_count": 1}, "handed": {"_count": 1}, "says": {"_count": 1}, "had": {"_count": 1}}, "Grubbly": {"_count": 5, "Plank": {"_count": 4}, "Planks": {"_count": 1}}, "GrubblyPlanks": {"_count": 2, "voice": {"_count": 1}, "side": {"_count": 1}}, "Filch": {"_count": 1, "whispered": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "when": {"_count": 1}}, "but": {"_count": 2, "Filch": {"_count": 1}, "if": {"_count": 1}}, "Umbridge": {"_count": 168, "our": {"_count": 1}, "": {"_count": 28}, "said": {"_count": 2}, "as": {"_count": 2}, "simpered": {"_count": 1}, "cleared": {"_count": 1}, "paused": {"_count": 1}, "but": {"_count": 1}, "did": {"_count": 2}, "that": {"_count": 3}, "already": {"_count": 1}, "was": {"_count": 14}, "they": {"_count": 2}, "sweetly": {"_count": 2}, "opened": {"_count": 1}, "turning": {"_count": 1}, "or": {"_count": 1}, "rang": {"_count": 1}, "left": {"_count": 2}, "with": {"_count": 4}, "who": {"_count": 5}, "seemed": {"_count": 1}, "showing": {"_count": 1}, "raised": {"_count": 3}, "in": {"_count": 7}, "repeated": {"_count": 1}, "smiling": {"_count": 3}, "promptly": {"_count": 1}, "talked": {"_count": 1}, "turned": {"_count": 2}, "dismissively": {"_count": 1}, "looked": {"_count": 2}, "however": {"_count": 1}, "stood": {"_count": 3}, "triumphantly": {"_count": 1}, "sat": {"_count": 1}, "pulled": {"_count": 1}, "holding": {"_count": 1}, "spoke": {"_count": 1}, "look": {"_count": 1}, "is": {"_count": 1}, "now": {"_count": 2}, "has": {"_count": 2}, "emerging": {"_count": 1}, "and": {"_count": 4}, "grasped": {"_count": 1}, "sitting": {"_count": 2}, "making": {"_count": 2}, "made": {"_count": 2}, "very": {"_count": 1}, "softly": {"_count": 2}, "had": {"_count": 3}, "blinked": {"_count": 1}, "forgetting": {"_count": 1}, "smoothly": {"_count": 1}, "muttered": {"_count": 1}, "employing": {"_count": 1}, "how": {"_count": 1}, "approach": {"_count": 1}, "asked": {"_count": 2}, "dropping": {"_count": 1}, "scribbling": {"_count": 1}, "returning": {"_count": 1}, "set": {"_count": 1}, "spent": {"_count": 2}, "scribbled": {"_count": 1}, "moved": {"_count": 1}, "again": {"_count": 1}, "wont": {"_count": 1}, "smiled": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "seized": {"_count": 1}, "sir": {"_count": 1}, "gave": {"_count": 3}, "pointing": {"_count": 1}, "swinging": {"_count": 1}, "looking": {"_count": 1}, "its": {"_count": 1}, "harshly": {"_count": 1}, "I": {"_count": 1}, "fake": {"_count": 1}, "without": {"_count": 1}, "ran": {"_count": 1}}, "Umbridges": {"_count": 14, "three": {"_count": 1}, "eye": {"_count": 1}, "pouchy": {"_count": 1}, "face": {"_count": 1}, "note": {"_count": 1}, "office": {"_count": 2}, "toadlike": {"_count": 1}, "eyebrows": {"_count": 2}, "class": {"_count": 1}, "robes": {"_count": 1}, "door": {"_count": 1}, "smile": {"_count": 1}}, "couldnt": {"_count": 1, "you": {"_count": 1}}, "hes": {"_count": 1, "gone": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}, "whether": {"_count": 1, "you": {"_count": 1}}, "Hagrid": {"_count": 4, "": {"_count": 1}, "does": {"_count": 1}, "when": {"_count": 1}, "would": {"_count": 1}}, "Hagrids": {"_count": 1, "very": {"_count": 1}}, "is": {"_count": 1, "there": {"_count": 1}}, "whos": {"_count": 1, "insulting": {"_count": 1}}, "adds": {"_count": 1, "a": {"_count": 1}}, "should": {"_count": 1, "you": {"_count": 1}}, "PROFESSOR": {"_count": 1, "": {"_count": 1}}, "Marchbanks": {"_count": 12, "Im": {"_count": 1}, "must": {"_count": 1}, "seemed": {"_count": 1}, "not": {"_count": 1}, "who": {"_count": 1}, "said": {"_count": 1}, "would": {"_count": 1}, "gave": {"_count": 1}, "came": {"_count": 1}, "moved": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "Tofty": {"_count": 11, "is": {"_count": 1}, "consulting": {"_count": 1}, "smiled": {"_count": 1}, "who": {"_count": 3}, "clapped": {"_count": 1}, "gave": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "anxiously": {"_count": 1}}, "Marchbankss": {"_count": 1, "eyes": {"_count": 1}}, "Toftys": {"_count": 1, "voice": {"_count": 1}}, "why": {"_count": 1, "couldnt": {"_count": 1}}, "what": {"_count": 1, "happened": {"_count": 1}}, "Slughorn": {"_count": 30, "but": {"_count": 1}, "": {"_count": 4}, "want": {"_count": 1}, "Slughorn": {"_count": 1}, "however": {"_count": 1}, "will": {"_count": 1}, "that": {"_count": 1}, "appeared": {"_count": 1}, "who": {"_count": 1}, "only": {"_count": 1}, "wheezed": {"_count": 1}, "has": {"_count": 1}, "to": {"_count": 1}, "is": {"_count": 1}, "by": {"_count": 1}, "about": {"_count": 2}, "in": {"_count": 2}, "amongst": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}, "met": {"_count": 1}, "tears": {"_count": 1}, "explained": {"_count": 1}, "says": {"_count": 1}, "panting": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "H": {"_count": 1, "": {"_count": 1}}, "can": {"_count": 2, "I": {"_count": 1}, "you": {"_count": 1}}, "were": {"_count": 2, "starting": {"_count": 1}, "you": {"_count": 1}}, "Slughorns": {"_count": 2, "party": {"_count": 1}, "memory": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "Merrythought": {"_count": 2, "is": {"_count": 2}}, "by": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 1, "dont": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "how": {"_count": 1, "the": {"_count": 1}}, "Burbage": {"_count": 3, "taught": {"_count": 1}, "wrote": {"_count": 1}, "a": {"_count": 1}}, "Black": {"_count": 4, "": {"_count": 1}, "said": {"_count": 2}, "is": {"_count": 1}}, "Bagshot": {"_count": 1, "doesnt": {"_count": 1}}, "Carrow": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "theres": {"_count": 1, "something": {"_count": 1}}, "Longbottom": {"_count": 1, "isnt": {"_count": 1}}}, "McGonagall": {"_count": 681, "": {"_count": 119, ".": {"_count": 108}, "!": {"_count": 5}, "?": {"_count": 6}}, "sniffed": {"_count": 1, "angrily": {"_count": 1}}, "irritably": {"_count": 2, "": {"_count": 2}}, "coldly": {"_count": 3, "as": {"_count": 1}, "unless": {"_count": 1}, "they": {"_count": 1}}, "flinched": {"_count": 1, "but": {"_count": 1}}, "sounding": {"_count": 1, "half": {"_count": 1}}, "shot": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 22, "reached": {"_count": 1}, "returned": {"_count": 1}, "come": {"_count": 2}, "seen": {"_count": 1}, "expected": {"_count": 1}, "a": {"_count": 1}, "given": {"_count": 2}, "got": {"_count": 1}, "instead": {"_count": 1}, "set": {"_count": 1}, "quite": {"_count": 1}, "said": {"_count": 1}, "broken": {"_count": 1}, "just": {"_count": 1}, "never": {"_count": 1}, "reprimanded": {"_count": 1}, "left": {"_count": 1}, "risen": {"_count": 1}, "taken": {"_count": 1}, "replaced": {"_count": 1}}, "gasped": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "pulled": {"_count": 3, "out": {"_count": 1}, "herself": {"_count": 1}, "her": {"_count": 1}}, "jumping": {"_count": 2, "to": {"_count": 1}, "up": {"_count": 1}}, "faintly": {"_count": 2, "sitting": {"_count": 1}, "falling": {"_count": 1}}, "opened": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "grudgingly": {"_count": 1, "but": {"_count": 1}}, "bent": {"_count": 1, "forward": {"_count": 1}}, "youll": {"_count": 1, "wake": {"_count": 1}}, "whispered": {"_count": 1, "patting": {"_count": 1}}, "blinked": {"_count": 1, "furiously": {"_count": 1}}, "Professor": {"_count": 2, "Dumbledore": {"_count": 1}, "Moody": {"_count": 1}}, "said": {"_count": 13, "Dumbledore": {"_count": 1}, "Hagrid": {"_count": 1}, "coldly": {"_count": 1}, "sharply": {"_count": 2}, "weve": {"_count": 1}, "Professor": {"_count": 1}, "": {"_count": 1}, "Moody": {"_count": 1}, "looking": {"_count": 1}, "Shoo": {"_count": 1}, "to": {"_count": 1}, "Evans": {"_count": 1}}, "blew": {"_count": 2, "her": {"_count": 2}}, "Deputy": {"_count": 3, "Headmistress": {"_count": 3}}, "across": {"_count": 1, "the": {"_count": 1}}, "showed": {"_count": 2, "the": {"_count": 2}}, "would": {"_count": 5, "come": {"_count": 1}, "accept": {"_count": 1}, "not": {"_count": 2}, "go": {"_count": 1}}, "told": {"_count": 12, "the": {"_count": 3}, "Wood": {"_count": 1}, "me": {"_count": 3}, "Harry": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 2}}, "led": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "silently": {"_count": 1, "placed": {"_count": 1}}, "now": {"_count": 3, "stepped": {"_count": 1}, "placed": {"_count": 1}, "dabbing": {"_count": 1}}, "jerked": {"_count": 1, "it": {"_count": 1}}, "rolled": {"_count": 1, "up": {"_count": 1}}, "was": {"_count": 35, "talking": {"_count": 1}, "again": {"_count": 1}, "head": {"_count": 2}, "running": {"_count": 1}, "almost": {"_count": 1}, "sweeping": {"_count": 1}, "looking": {"_count": 2}, "out": {"_count": 1}, "moving": {"_count": 1}, "walking": {"_count": 1}, "bent": {"_count": 1}, "shouting": {"_count": 1}, "still": {"_count": 1}, "telling": {"_count": 1}, "mad": {"_count": 1}, "back": {"_count": 1}, "so": {"_count": 1}, "sobbing": {"_count": 1}, "presumably": {"_count": 1}, "leading": {"_count": 1}, "now": {"_count": 2}, "coming": {"_count": 1}, "hurrying": {"_count": 2}, "right": {"_count": 2}, "Snape": {"_count": 1}, "gazing": {"_count": 1}, "gone": {"_count": 1}, "directly": {"_count": 1}, "thrown": {"_count": 1}, "saying": {"_count": 1}}, "favored": {"_count": 1, "us": {"_count": 1}}, "Snape": {"_count": 3, "had": {"_count": 1}, "Sprout": {"_count": 1}, "Flitwick": {"_count": 1}}, "who": {"_count": 14, "could": {"_count": 1}, "accompanied": {"_count": 1}, "was": {"_count": 8}, "had": {"_count": 3}, "staggered": {"_count": 1}}, "didnt": {"_count": 3, "say": {"_count": 1}, "object": {"_count": 1}, "even": {"_count": 1}}, "stopped": {"_count": 2, "outside": {"_count": 1}, "it": {"_count": 1}}, "and": {"_count": 32, "they": {"_count": 1}, "Professor": {"_count": 5}, "Snape": {"_count": 4}, "Peeves": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "Flitwick": {"_count": 4}, "she": {"_count": 2}, "Moody": {"_count": 1}, "I": {"_count": 2}, "approaching": {"_count": 1}, "Dumbledore": {"_count": 1}, "Kingsley": {"_count": 1}, "a": {"_count": 2}, "Madam": {"_count": 1}, "Lupin": {"_count": 1}, "Harry": {"_count": 1}, "handed": {"_count": 1}, "between": {"_count": 1}}, "pointed": {"_count": 1, "them": {"_count": 1}}, "slammed": {"_count": 1, "the": {"_count": 1}}, "crisply": {"_count": 4, "": {"_count": 3}, "also": {"_count": 1}}, "explained": {"_count": 2, "": {"_count": 1}, "why": {"_count": 1}}, "peered": {"_count": 2, "sternly": {"_count": 1}, "at": {"_count": 1}}, "for": {"_count": 4, "knowing": {"_count": 1}, "": {"_count": 1}, "news": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 3, "had": {"_count": 2}, "and": {"_count": 1}}, "meant": {"_count": 2, "": {"_count": 1}, "deal": {"_count": 1}}, "with": {"_count": 7, "cold": {"_count": 1}, "an": {"_count": 3}, "her": {"_count": 1}, "a": {"_count": 1}, "awful": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "turned": {"_count": 7, "to": {"_count": 1}, "up": {"_count": 2}, "on": {"_count": 1}, "back": {"_count": 2}, "next": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "our": {"_count": 1}}, "he": {"_count": 2, "ticked": {"_count": 1}, "hadnt": {"_count": 1}}, "in": {"_count": 10, "a": {"_count": 7}, "silence": {"_count": 2}, "cold": {"_count": 1}}, "appeared": {"_count": 2, "she": {"_count": 1}, "a": {"_count": 1}}, "breathing": {"_count": 1, "heavily": {"_count": 1}}, "says": {"_count": 3, "thats": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "watched": {"_count": 2, "them": {"_count": 1}, "": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "repeated": {"_count": 1, "as": {"_count": 1}}, "transfigured": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 4, "bespectacled": {"_count": 1}, "lot": {"_count": 1}, "very": {"_count": 1}, "hint": {"_count": 1}}, "head": {"_count": 2, "of": {"_count": 2}}, "angry": {"_count": 1, "on": {"_count": 1}}, "is": {"_count": 1, "obvious": {"_count": 1}}, "to": {"_count": 7, "decide": {"_count": 1}, "the": {"_count": 1}, "ask": {"_count": 1}, "be": {"_count": 1}, "St": {"_count": 1}, "Madam": {"_count": 1}, "give": {"_count": 1}}, "gave": {"_count": 3, "him": {"_count": 2}, "a": {"_count": 1}}, "raised": {"_count": 1, "her": {"_count": 1}}, "wasnt": {"_count": 1, "pleased": {"_count": 1}}, "raising": {"_count": 2, "her": {"_count": 2}}, "sharply": {"_count": 7, "I": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 1}, "rounding": {"_count": 1}}, "hurried": {"_count": 1, "past": {"_count": 1}}, "swept": {"_count": 1, "back": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 3, "urgently": {"_count": 1}, "curtly": {"_count": 1}, "a": {"_count": 1}}, "stared": {"_count": 4, "at": {"_count": 2}, "anxiously": {"_count": 1}, "deliberately": {"_count": 1}}, "telling": {"_count": 1, "Professor": {"_count": 1}}, "came": {"_count": 7, "around": {"_count": 1}, "running": {"_count": 1}, "half": {"_count": 1}, "back": {"_count": 1}, "walking": {"_count": 1}, "sweeping": {"_count": 1}, "hurrying": {"_count": 1}}, "conjured": {"_count": 1, "a": {"_count": 1}}, "alone": {"_count": 1, "together": {"_count": 1}}, "curtly": {"_count": 3, "": {"_count": 2}, "just": {"_count": 1}}, "stepped": {"_count": 1, "onto": {"_count": 1}}, "rapped": {"_count": 2, "on": {"_count": 1}, "three": {"_count": 1}}, "sometimes": {"_count": 1, "had": {"_count": 1}}, "so": {"_count": 1, "while": {"_count": 1}}, "called": {"_count": 4, "through": {"_count": 1}, "above": {"_count": 1}, "him": {"_count": 1}, "Snape": {"_count": 1}}, "without": {"_count": 1, "getting": {"_count": 1}}, "ignored": {"_count": 4, "him": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 2}}, "back": {"_count": 2, "into": {"_count": 1}, "down": {"_count": 1}}, "pushed": {"_count": 2, "the": {"_count": 2}}, "heavily": {"_count": 1, "": {"_count": 1}}, "wont": {"_count": 1, "last": {"_count": 1}}, "restored": {"_count": 1, "it": {"_count": 1}}, "scowl": {"_count": 1, "even": {"_count": 1}}, "made": {"_count": 3, "another": {"_count": 1}, "me": {"_count": 1}, "an": {"_count": 1}}, "thinks": {"_count": 1, "all": {"_count": 1}}, "both": {"_count": 2, "looked": {"_count": 1}, "spent": {"_count": 1}}, "blow": {"_count": 1, "her": {"_count": 1}}, "arrived": {"_count": 1, "": {"_count": 1}}, "whose": {"_count": 1, "nostrils": {"_count": 1}}, "weakly": {"_count": 2, "": {"_count": 2}}, "prompted": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "I": {"_count": 3, "think": {"_count": 1}, "want": {"_count": 1}, "hear": {"_count": 1}}, "standing": {"_count": 3, "up": {"_count": 3}}, "or": {"_count": 2, "someone": {"_count": 1}, "Flitwick": {"_count": 1}}, "will": {"_count": 1, "say": {"_count": 1}}, "Transfiguration": {"_count": 1, "teacher": {"_count": 1}}, "ushered": {"_count": 1, "Harry": {"_count": 1}}, "motioned": {"_count": 1, "Harry": {"_count": 1}}, "strode": {"_count": 1, "off": {"_count": 1}}, "shooed": {"_count": 1, "them": {"_count": 1}}, "turning": {"_count": 5, "back": {"_count": 1}, "round": {"_count": 1}, "her": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}}, "suddenly": {"_count": 3, "frowning": {"_count": 1}, "": {"_count": 1}, "gazing": {"_count": 1}}, "fixing": {"_count": 1, "Harry": {"_count": 1}}, "broke": {"_count": 1, "off": {"_count": 1}}, "if": {"_count": 3, "you": {"_count": 3}}, "go": {"_count": 1, "on": {"_count": 1}}, "after": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 6, "over": {"_count": 1}, "down": {"_count": 2}, "suspiciously": {"_count": 1}, "around": {"_count": 1}, "slightly": {"_count": 1}}, "Lupin": {"_count": 1, "and": {"_count": 1}}, "please": {"_count": 1, "go": {"_count": 1}}, "summoned": {"_count": 1, "Harry": {"_count": 1}}, "seemed": {"_count": 1, "very": {"_count": 1}}, "considered": {"_count": 1, "him": {"_count": 1}}, "stood": {"_count": 4, "up": {"_count": 2}, "rigidly": {"_count": 1}, "facing": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "exasperatedly": {"_count": 1, "": {"_count": 1}}, "darkly": {"_count": 1, "": {"_count": 1}}, "impatiently": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "poked": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 4, "eyebrows": {"_count": 1}, "eyes": {"_count": 1}, "dark": {"_count": 1}, "teeth": {"_count": 1}}, "tartly": {"_count": 3, "": {"_count": 3}}, "dryly": {"_count": 2, "": {"_count": 1}, "we": {"_count": 1}}, "beadily": {"_count": 1, "walking": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "quite": {"_count": 1, "kindly": {"_count": 1}}, "agrees": {"_count": 1, "with": {"_count": 1}}, "reckons": {"_count": 1, "he": {"_count": 1}}, "still": {"_count": 2, "wants": {"_count": 1}, "refusing": {"_count": 1}}, "about": {"_count": 4, "the": {"_count": 2}, "that": {"_count": 1}, "to": {"_count": 1}}, "halfway": {"_count": 1, "up": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "on": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "straightening": {"_count": 2, "her": {"_count": 2}}, "passed": {"_count": 1, "the": {"_count": 1}}, "picked": {"_count": 2, "up": {"_count": 2}}, "that": {"_count": 1, "he": {"_count": 1}}, "cleared": {"_count": 1, "her": {"_count": 1}}, "than": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 1, "books": {"_count": 1}}, "running": {"_count": 1, "down": {"_count": 1}}, "barked": {"_count": 1, "at": {"_count": 1}}, "how": {"_count": 2, "the": {"_count": 1}, "Katie": {"_count": 1}}, "snapped": {"_count": 1, "at": {"_count": 1}}, "closed": {"_count": 4, "the": {"_count": 2}, "her": {"_count": 2}}, "angrily": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 4, "he": {"_count": 1}, "Hermione": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}}, "continued": {"_count": 2, "and": {"_count": 1}, "briskly": {"_count": 1}}, "went": {"_count": 2, "on": {"_count": 1}, "straight": {"_count": 1}}, "waited": {"_count": 1, "until": {"_count": 1}}, "firmly": {"_count": 1, "": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "wants": {"_count": 1, "you": {"_count": 1}}, "held": {"_count": 1, "him": {"_count": 1}}, "looking": {"_count": 6, "back": {"_count": 1}, "very": {"_count": 1}, "up": {"_count": 1}, "alarmed": {"_count": 1}, "surprised": {"_count": 1}, "helplessly": {"_count": 1}}, "found": {"_count": 1, "these": {"_count": 1}}, "stopping": {"_count": 1, "dead": {"_count": 1}}, "were": {"_count": 3, "still": {"_count": 1}, "deep": {"_count": 1}, "talking": {"_count": 1}}, "lose": {"_count": 1, "control": {"_count": 1}}, "fumed": {"_count": 1, "": {"_count": 1}}, "struggled": {"_count": 1, "to": {"_count": 1}}, "cried": {"_count": 1, "": {"_count": 1}}, "nodded": {"_count": 2, "and": {"_count": 1}, "Harry": {"_count": 1}}, "placed": {"_count": 1, "the": {"_count": 1}}, "lowered": {"_count": 1, "her": {"_count": 1}}, "dear": {"_count": 1, "said": {"_count": 1}}, "clutched": {"_count": 1, "tight": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "took": {"_count": 1, "it": {"_count": 1}}, "rounding": {"_count": 1, "on": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "set": {"_count": 1, "down": {"_count": 1}}, "flatly": {"_count": 1, "": {"_count": 1}}, "eyed": {"_count": 1, "him": {"_count": 1}}, "grimly": {"_count": 1, "without": {"_count": 1}}, "work": {"_count": 1, "out": {"_count": 1}}, "GrubblyPlank": {"_count": 1, "and": {"_count": 1}}, "say": {"_count": 1, "something": {"_count": 1}}, "inspected": {"_count": 1, "said": {"_count": 1}}, "marched": {"_count": 1, "into": {"_count": 1}}, "addressed": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "finally": {"_count": 1, "told": {"_count": 1}}, "brusquely": {"_count": 1, "snapping": {"_count": 1}}, "might": {"_count": 1, "let": {"_count": 1}}, "however": {"_count": 1, "looked": {"_count": 1}}, "cared": {"_count": 1, "about": {"_count": 1}}, "slamming": {"_count": 1, "a": {"_count": 1}}, "violently": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "continued": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "pausing": {"_count": 1, "at": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "Flitwick": {"_count": 3, "and": {"_count": 3}}, "played": {"_count": 1, "the": {"_count": 1}}, "alongside": {"_count": 1, "her": {"_count": 1}}, "harshly": {"_count": 1, "": {"_count": 1}}, "widened": {"_count": 1, "her": {"_count": 1}}, "loudly": {"_count": 2, "plunging": {"_count": 1}, "from": {"_count": 1}}, "crouched": {"_count": 1, "beside": {"_count": 1}}, "getting": {"_count": 1, "up": {"_count": 1}}, "scornfully": {"_count": 1, "": {"_count": 1}}, "sardonically": {"_count": 1, "as": {"_count": 1}}, "saying": {"_count": 1, "that": {"_count": 1}}, "remembering": {"_count": 1, "only": {"_count": 1}}, "tersely": {"_count": 1, "": {"_count": 1}}, "extracting": {"_count": 1, "a": {"_count": 1}}, "through": {"_count": 1, "tightly": {"_count": 1}}, "haughtily": {"_count": 1, "": {"_count": 1}}, "perseverance": {"_count": 1, "and": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "superbly": {"_count": 1, "disdainful": {"_count": 1}}, "continuing": {"_count": 1, "to": {"_count": 1}}, "walking": {"_count": 1, "right": {"_count": 1}}, "pronounced": {"_count": 1, "the": {"_count": 1}}, "face": {"_count": 1, "on": {"_count": 1}}, "shrugging": {"_count": 1, "off": {"_count": 1}}, "thrusting": {"_count": 1, "her": {"_count": 1}}, "sank": {"_count": 1, "back": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Head": {"_count": 1, "of": {"_count": 1}}, "needed": {"_count": 1, "first": {"_count": 1}}, "tapped": {"_count": 1, "a": {"_count": 1}}, "consulting": {"_count": 1, "her": {"_count": 1}}, "did": {"_count": 2, "mention": {"_count": 1}, "not": {"_count": 1}}, "upstairs": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 1, "unkindly": {"_count": 1}}, "nevertheless": {"_count": 1, "he": {"_count": 1}}, "tell": {"_count": 1, "you": {"_count": 1}}, "Forgot": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 2, "Lunas": {"_count": 1}, "the": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "distractedly": {"_count": 2, "": {"_count": 2}}, "glared": {"_count": 1, "at": {"_count": 1}}, "incredulously": {"_count": 1, "but": {"_count": 1}}, "kindly": {"_count": 1, "and": {"_count": 1}}, "glancing": {"_count": 1, "out": {"_count": 1}}, "losing": {"_count": 1, "a": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "gushed": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "clutching": {"_count": 1, "her": {"_count": 1}}, "Voldemorts": {"_count": 1, "on": {"_count": 1}}, "rose": {"_count": 1, "to": {"_count": 1}}, "waved": {"_count": 1, "her": {"_count": 1}}, "too": {"_count": 1, "seemed": {"_count": 1}}, "moved": {"_count": 1, "faster": {"_count": 1}}, "blasted": {"_count": 1, "to": {"_count": 1}}, "cry": {"_count": 1, "Coward": {"_count": 1}}, "bitterly": {"_count": 1, "": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "beckoning": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "and": {"_count": 1}}, "are": {"_count": 1, "going": {"_count": 1}}, "hurrying": {"_count": 1, "up": {"_count": 1}}, "dropped": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "hurried": {"_count": 1}}, "could": {"_count": 1, "make": {"_count": 1}}, "Slughorn": {"_count": 1, "and": {"_count": 1}}, "Kingsley": {"_count": 1, "and": {"_count": 1}}}, "smiling": {"_count": 177, "at": {"_count": 20, "a": {"_count": 1}, "him": {"_count": 5}, "her": {"_count": 5}, "Harry": {"_count": 4}, "the": {"_count": 2}, "both": {"_count": 1}, "Cedric": {"_count": 1}, "Ron": {"_count": 1}}, "lady": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 54, ".": {"_count": 54}}, "and": {"_count": 9, "saw": {"_count": 1}, "also": {"_count": 1}, "leading": {"_count": 1}, "bowing": {"_count": 1}, "said": {"_count": 1}, "waving": {"_count": 4}}, "witch": {"_count": 1, "dressed": {"_count": 1}}, "dimpled": {"_count": 1, "woman": {"_count": 1}}, "around": {"_count": 5, "at": {"_count": 4}, "the": {"_count": 1}}, "but": {"_count": 2, "crying": {"_count": 1}, "watching": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "the": {"_count": 1, "very": {"_count": 1}}, "in": {"_count": 7, "a": {"_count": 3}, "the": {"_count": 1}, "sinisterly": {"_count": 1}, "approval": {"_count": 1}, "spite": {"_count": 1}}, "still": {"_count": 5, "more": {"_count": 5}}, "widely": {"_count": 5, "at": {"_count": 1}, "as": {"_count": 2}, "and": {"_count": 2}}, "if": {"_count": 1, "Snape": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "cold": {"_count": 1}}, "broadly": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}}, "pleasantly": {"_count": 3, "how": {"_count": 1}, "": {"_count": 2}}, "serenely": {"_count": 4, "the": {"_count": 1}, "": {"_count": 1}, "beside": {"_count": 1}, "up": {"_count": 1}}, "jovially": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 4, "he": {"_count": 4}}, "again": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "good": {"_count": 1}}, "slightly": {"_count": 8, "leaned": {"_count": 1}, "": {"_count": 3}, "what": {"_count": 1}, "she": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}}, "his": {"_count": 2, "teeth": {"_count": 1}, "stomach": {"_count": 1}}, "down": {"_count": 2, "at": {"_count": 2}}, "It": {"_count": 1, "was": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "nervously": {"_count": 1}}, "toothily": {"_count": 1, "and": {"_count": 1}}, "awkwardly": {"_count": 1, "well": {"_count": 1}}, "so": {"_count": 1, "widely": {"_count": 1}}, "sweetly": {"_count": 2, "over": {"_count": 1}, "": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "to": {"_count": 4, "herself": {"_count": 1}, "look": {"_count": 1}, "a": {"_count": 1}, "himself": {"_count": 1}}, "her": {"_count": 2, "wide": {"_count": 1}, "sickly": {"_count": 1}}, "having": {"_count": 1, "located": {"_count": 1}}, "warmly": {"_count": 1, "at": {"_count": 1}}, "expectantly": {"_count": 1, "at": {"_count": 1}}, "grimly": {"_count": 1, "and": {"_count": 1}}, "reminiscently": {"_count": 1, "": {"_count": 1}}, "gently": {"_count": 1, "too": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "Bellatrixs": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "brimming": {"_count": 1, "with": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "faintly": {"_count": 1, "": {"_count": 1}}, "wistfully": {"_count": 1, "out": {"_count": 1}}, "for": {"_count": 1, "what": {"_count": 1}}, "lazily": {"_count": 1, "up": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}}, "rather": {"_count": 455, "severelooking": {"_count": 1, "woman": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 7, "though": {"_count": 3}, "Hermione": {"_count": 1}, "he": {"_count": 2}, "a": {"_count": 1}}, "be": {"_count": 8, "back": {"_count": 1}, "here": {"_count": 1}, "stuck": {"_count": 1}, "anywhere": {"_count": 1}, "doing": {"_count": 1}, "tragically": {"_count": 1}, "the": {"_count": 1}, "brawny": {"_count": 1}}, "quiet": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}}, "ill": {"_count": 2, "but": {"_count": 1}, "he": {"_count": 1}}, "wicked": {"_count": 1, "grin": {"_count": 1}}, "ruffledlooking": {"_count": 1, "owl": {"_count": 1}}, "not": {"_count": 6, "think": {"_count": 1}, "risk": {"_count": 1}, "witness": {"_count": 1}, "be": {"_count": 1}, "say": {"_count": 1}, "come": {"_count": 1}}, "nasty": {"_count": 1, "grin": {"_count": 1}}, "bendy": {"_count": 1, "wasnt": {"_count": 1}}, "dry": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 2, "front": {"_count": 2}}, "closer": {"_count": 1, "together": {"_count": 1}}, "a": {"_count": 12, "lot": {"_count": 6}, "determined": {"_count": 1}, "hurry": {"_count": 2}, "meal": {"_count": 1}, "good": {"_count": 1}, "business": {"_count": 1}}, "fixed": {"_count": 1, "": {"_count": 1}}, "attractive": {"_count": 1, "too": {"_count": 1}}, "you": {"_count": 4, "were": {"_count": 1}, "messed": {"_count": 1}, "set": {"_count": 1}, "helped": {"_count": 1}}, "bravely": {"_count": 1, "Harry": {"_count": 1}}, "detest": {"_count": 1, "each": {"_count": 1}}, "lost": {"_count": 2, "my": {"_count": 1}, "their": {"_count": 1}}, "cramped": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 4, "": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "harder": {"_count": 3, "than": {"_count": 3}}, "go": {"_count": 2, "to": {"_count": 1}, "alone": {"_count": 1}}, "face": {"_count": 1, "Slytherins": {"_count": 1}}, "than": {"_count": 64, "gloomy": {"_count": 1}, "visit": {"_count": 1}, "believing": {"_count": 1}, "heard": {"_count": 2}, "tell": {"_count": 1}, "his": {"_count": 2}, "search": {"_count": 1}, "skill": {"_count": 1}, "fear": {"_count": 1}, "talked": {"_count": 1}, "Hogwarts": {"_count": 1}, "sailed": {"_count": 1}, "increasing": {"_count": 1}, "join": {"_count": 1}, "stand": {"_count": 1}, "on": {"_count": 2}, "capture": {"_count": 1}, "come": {"_count": 1}, "him": {"_count": 1}, "renounce": {"_count": 1}, "a": {"_count": 1}, "spines": {"_count": 1}, "at": {"_count": 1}, "what": {"_count": 1}, "following": {"_count": 1}, "by": {"_count": 1}, "pink": {"_count": 1}, "critical": {"_count": 1}, "sitting": {"_count": 1}, "anyone": {"_count": 1}, "Dean": {"_count": 1}, "easier": {"_count": 1}, "whirring": {"_count": 1}, "from": {"_count": 1}, "robes": {"_count": 1}, "strengthening": {"_count": 1}, "hostile": {"_count": 1}, "accusatory": {"_count": 1}, "look": {"_count": 1}, "the": {"_count": 1}, "revolted": {"_count": 1}, "hilarity": {"_count": 1}, "put": {"_count": 1}, "finding": {"_count": 1}, "because": {"_count": 1}, "those": {"_count": 1}, "later": {"_count": 1}, "through": {"_count": 1}, "Harry": {"_count": 1}, "in": {"_count": 1}, "distinctly": {"_count": 1}, "risk": {"_count": 1}, "suffer": {"_count": 1}, "people": {"_count": 1}, "staying": {"_count": 1}, "let": {"_count": 1}, "to": {"_count": 2}, "face": {"_count": 2}, "Voldemort": {"_count": 1}}, "Crabbes": {"_count": 1, "face": {"_count": 1}}, "odd": {"_count": 1, "about": {"_count": 1}}, "stay": {"_count": 1, "at": {"_count": 1}}, "clipped": {"_count": 1, "tones": {"_count": 1}}, "reluctantly": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "busy": {"_count": 1, "at": {"_count": 1}}, "small": {"_count": 2, "and": {"_count": 1}, "voice": {"_count": 1}}, "thicker": {"_count": 1, "than": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "live": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 15, "an": {"_count": 3}, "marbles": {"_count": 1}, "being": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 3}, "that": {"_count": 1}, "Uncle": {"_count": 1}, "sitting": {"_count": 1}, "the": {"_count": 2}, "Mrs": {"_count": 1}}, "avoid": {"_count": 1, "": {"_count": 1}}, "giggly": {"_count": 1, "": {"_count": 1}}, "unenthusiastic": {"_count": 1, "applause": {"_count": 1}}, "attached": {"_count": 1, "to": {"_count": 1}}, "wildly": {"_count": 2, "as": {"_count": 2}}, "good": {"_count": 2, "and": {"_count": 1}, "at": {"_count": 1}}, "frail": {"_count": 1, "and": {"_count": 1}}, "sharp": {"_count": 1, "with": {"_count": 1}}, "moldylooking": {"_count": 1, "tailcoat": {"_count": 1}}, "enjoying": {"_count": 4, "the": {"_count": 1}, "himself": {"_count": 2}, "herself": {"_count": 1}}, "heavily": {"_count": 1, "as": {"_count": 1}}, "flattered": {"_count": 1, "": {"_count": 1}}, "pale": {"_count": 6, "": {"_count": 1}, "and": {"_count": 3}, "but": {"_count": 1}, "she": {"_count": 1}}, "high": {"_count": 1, "opinion": {"_count": 1}}, "have": {"_count": 10, "done": {"_count": 1}, "him": {"_count": 1}, "another": {"_count": 1}, "taken": {"_count": 1}, "the": {"_count": 1}, "jumped": {"_count": 1}, "her": {"_count": 1}, "Tonks": {"_count": 1}, "been": {"_count": 1}, "them": {"_count": 1}}, "difficult": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "more": {"_count": 7, "empty": {"_count": 1}, "impressive": {"_count": 1}, "aggressively": {"_count": 1}, "difficult": {"_count": 1}, "than": {"_count": 2}, "useful": {"_count": 1}}, "red": {"_count": 3, "": {"_count": 3}}, "cold": {"_count": 1, "and": {"_count": 1}}, "learn": {"_count": 1, "the": {"_count": 1}}, "eat": {"_count": 1, "bubotuber": {"_count": 1}}, "surprised": {"_count": 2, "because": {"_count": 1}, "to": {"_count": 1}}, "beaky": {"_count": 1, "nose": {"_count": 1}}, "weak": {"_count": 2, "chin": {"_count": 1}, "and": {"_count": 1}}, "yellow": {"_count": 1, "and": {"_count": 1}}, "excited": {"_count": 2, "": {"_count": 1}, "others": {"_count": 1}}, "hear": {"_count": 1, "it": {"_count": 1}}, "unpleasantly": {"_count": 1, "when": {"_count": 1}}, "temperamental": {"_count": 1, "wands": {"_count": 1}}, "shaky": {"_count": 1, "sort": {"_count": 1}}, "hard": {"_count": 1, "as": {"_count": 1}}, "guiltily": {"_count": 1, "": {"_count": 1}}, "work": {"_count": 1, "for": {"_count": 1}}, "hurt": {"_count": 1, "and": {"_count": 1}}, "sooner": {"_count": 1, "than": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "pleased": {"_count": 6, "all": {"_count": 1}, "with": {"_count": 4}, "that": {"_count": 1}}, "ugly": {"_count": 2, "wreath": {"_count": 1}, "plant": {"_count": 1}}, "nervously": {"_count": 1, "it": {"_count": 1}}, "magnificent": {"_count": 1, "collection": {"_count": 1}}, "flat": {"_count": 1, "now": {"_count": 1}}, "menacing": {"_count": 1, "": {"_count": 1}}, "slyly": {"_count": 1, "but": {"_count": 1}}, "tetchy": {"_count": 1, "mood": {"_count": 1}}, "poor": {"_count": 1, "ventriloquist": {"_count": 1}}, "unfortunate": {"_count": 1, "happened": {"_count": 1}}, "hastily": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "had": {"_count": 1}}, "thinner": {"_count": 1, "and": {"_count": 1}}, "snoutlike": {"_count": 2, "nose": {"_count": 1}, "": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "breathlessly": {"_count": 1, "": {"_count": 1}}, "itd": {"_count": 1, "never": {"_count": 1}}, "peculiar": {"_count": 1, "as": {"_count": 1}}, "nobody": {"_count": 1, "needed": {"_count": 1}}, "different": {"_count": 2, "from": {"_count": 1}, "senses": {"_count": 1}}, "shabbylooking": {"_count": 1, "offices": {"_count": 1}}, "threateningly": {"_count": 1, "but": {"_count": 1}}, "sick": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "skinny": {"_count": 1, "No": {"_count": 1}}, "aggressively": {"_count": 1, "Thats": {"_count": 1}}, "squat": {"_count": 1, "with": {"_count": 1}}, "anxious": {"_count": 1, "but": {"_count": 1}}, "startled": {"_count": 2, "at": {"_count": 1}, "that": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "sinister": {"_count": 1, "look": {"_count": 1}}, "bad": {"_count": 1, "cartoon": {"_count": 1}}, "taken": {"_count": 2, "aback": {"_count": 2}}, "fast": {"_count": 4, "": {"_count": 2}, "considering": {"_count": 1}, "as": {"_count": 1}}, "gazed": {"_count": 1, "sleepily": {"_count": 1}}, "disrupted": {"_count": 1, "and": {"_count": 1}}, "special": {"_count": 1, "one": {"_count": 1}}, "feeble": {"_count": 1, "rays": {"_count": 1}}, "coolly": {"_count": 2, "": {"_count": 1}, "half": {"_count": 1}}, "impressed": {"_count": 2, "and": {"_count": 1}, "his": {"_count": 1}}, "broader": {"_count": 1, "in": {"_count": 1}}, "thats": {"_count": 1, "exactly": {"_count": 1}}, "keep": {"_count": 1, "that": {"_count": 1}}, "aggressive": {"_count": 1, "voice": {"_count": 1}}, "rudely": {"_count": 1, "": {"_count": 1}}, "important": {"_count": 1, "were": {"_count": 1}}, "hesitant": {"_count": 1, "about": {"_count": 1}}, "reproachful": {"_count": 1, "look": {"_count": 1}}, "pityingly": {"_count": 1, "and": {"_count": 1}}, "disheveled": {"_count": 1, "": {"_count": 1}}, "admired": {"_count": 1, "Professor": {"_count": 1}}, "miserable": {"_count": 1, "": {"_count": 1}}, "grateful": {"_count": 1, "that": {"_count": 1}}, "sourly": {"_count": 1, "and": {"_count": 1}}, "confused": {"_count": 1, "and": {"_count": 1}}, "disconcerted": {"_count": 1, "": {"_count": 1}}, "scared": {"_count": 2, "": {"_count": 2}}, "study": {"_count": 1, "knarls": {"_count": 1}}, "hoarsely": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "worried": {"_count": 1, "": {"_count": 1}}, "angrily": {"_count": 1, "what": {"_count": 1}}, "dingy": {"_count": 1, "as": {"_count": 1}}, "viciouslooking": {"_count": 1, "wizard": {"_count": 1}}, "unusual": {"_count": 1, "kind": {"_count": 1}}, "uneasy": {"_count": 1, "": {"_count": 1}}, "larger": {"_count": 1, "pile": {"_count": 1}}, "sheepish": {"_count": 1, "expression": {"_count": 1}}, "frightened": {"_count": 3, "and": {"_count": 1}, "voice": {"_count": 1}, "": {"_count": 1}}, "wistfully": {"_count": 1, "at": {"_count": 1}}, "battered": {"_count": 1, "peacockfeather": {"_count": 1}}, "alarming": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 2, "known": {"_count": 1}, "his": {"_count": 1}}, "hopelessly": {"_count": 1, "and": {"_count": 1}}, "bony": {"_count": 1, "nose": {"_count": 1}}, "taller": {"_count": 1, "than": {"_count": 1}}, "menacingly": {"_count": 1, "": {"_count": 1}}, "embarrassed": {"_count": 1, "": {"_count": 1}}, "bouncy": {"_count": 1, "way": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "stupid": {"_count": 2, "then": {"_count": 1}, "ugly": {"_count": 1}}, "clever": {"_count": 1, "to": {"_count": 1}}, "badly": {"_count": 3, "": {"_count": 1}, "bumped": {"_count": 1}, "wrong": {"_count": 1}}, "snappishly": {"_count": 1, "": {"_count": 1}}, "forbidding": {"_count": 1, "": {"_count": 1}}, "higher": {"_count": 2, "when": {"_count": 1}, "value": {"_count": 1}}, "keen": {"_count": 1, "to": {"_count": 1}}, "spend": {"_count": 1, "the": {"_count": 1}}, "depressed": {"_count": 1, "he": {"_count": 1}}, "leave": {"_count": 1, "the": {"_count": 1}}, "nervous": {"_count": 2, "": {"_count": 2}}, "to": {"_count": 1, "impress": {"_count": 1}}, "thought": {"_count": 7, "Kingsley": {"_count": 1}, "he": {"_count": 3}, "": {"_count": 1}, "hed": {"_count": 1}, "some": {"_count": 1}}, "foolish": {"_count": 1, "": {"_count": 1}}, "haughty": {"_count": 1, "and": {"_count": 1}}, "ominous": {"_count": 1, "": {"_count": 1}}, "better": {"_count": 1, "by": {"_count": 1}}, "rude": {"_count": 2, "you": {"_count": 1}, "called": {"_count": 1}}, "bored": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "interesting": {"_count": 1, "day": {"_count": 1}}, "disapproving": {"_count": 1, "and": {"_count": 1}}, "upset": {"_count": 1, "": {"_count": 1}}, "painfully": {"_count": 1, "": {"_count": 1}}, "horrible": {"_count": 3, "said": {"_count": 1}, "sight": {"_count": 1}, "crunchy": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "fine": {"_count": 1, "antique": {"_count": 1}}, "stern": {"_count": 1, "look": {"_count": 1}}, "resented": {"_count": 1, "being": {"_count": 1}}, "felt": {"_count": 1, "for": {"_count": 1}}, "that": {"_count": 1, "door": {"_count": 1}}, "amused": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "ravaged": {"_count": 1, "face": {"_count": 1}}, "horsey": {"_count": 1, "face": {"_count": 1}}, "heightened": {"_count": 1, "Harrys": {"_count": 1}}, "clumsily": {"_count": 1, "made": {"_count": 1}}, "tiring": {"_count": 1, "existence": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "cross": {"_count": 1, "": {"_count": 1}}, "gloomy": {"_count": 1, "birthday": {"_count": 1}}, "stunnedlooking": {"_count": 1, "people": {"_count": 1}}, "splendid": {"_count": 1, "picture": {"_count": 1}}, "die": {"_count": 1, "than": {"_count": 1}}, "pompous": {"_count": 1, "manner": {"_count": 1}}, "cleverer": {"_count": 1, "than": {"_count": 1}}, "cautiously": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "bloody": {"_count": 1, "knife": {"_count": 1}}, "differently": {"_count": 1, "": {"_count": 1}}, "heavy": {"_count": 1, "face": {"_count": 1}}, "grumpy": {"_count": 2, "expression": {"_count": 1}, "determined": {"_count": 1}}, "doubted": {"_count": 1, "he": {"_count": 1}}, "think": {"_count": 3, "he": {"_count": 1}, "said": {"_count": 1}, "an": {"_count": 1}}, "grim": {"_count": 2, "square": {"_count": 1}, "laugh": {"_count": 1}}, "I": {"_count": 1, "hooked": {"_count": 1}}, "hungry": {"_count": 1, "look": {"_count": 1}}, "hairy": {"_count": 1, "feet": {"_count": 1}}, "shocked": {"_count": 1, "": {"_count": 1}}, "stiffly": {"_count": 1, "Merry": {"_count": 1}}, "paler": {"_count": 1, "than": {"_count": 1}}, "watery": {"_count": 1, "and": {"_count": 1}}, "gormless": {"_count": 1, "having": {"_count": 1}}, "annoyed": {"_count": 1, "": {"_count": 1}}, "blearyeyed": {"_count": 1, "": {"_count": 1}}, "glum": {"_count": 1, "": {"_count": 1}}, "grubby": {"_count": 1, "scroll": {"_count": 1}}, "tired": {"_count": 1, "": {"_count": 1}}, "ostentatiously": {"_count": 1, "showing": {"_count": 1}}, "jealous": {"_count": 1, "watching": {"_count": 1}}, "knowing": {"_count": 1, "look": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "dull": {"_count": 1, "story": {"_count": 1}}, "hysterically": {"_count": 1, "and": {"_count": 1}}, "uncouth": {"_count": 1, "barman": {"_count": 1}}, "louder": {"_count": 1, "than": {"_count": 1}}, "lower": {"_count": 1, "than": {"_count": 1}}, "agitated": {"_count": 1, "voice": {"_count": 1}}, "touched": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 2, "Death": {"_count": 1}, "cloudy": {"_count": 1}}, "pointless": {"_count": 1, "if": {"_count": 1}}, "unnerving": {"_count": 1, "return": {"_count": 1}}, "fierce": {"_count": 1, "look": {"_count": 1}}, "slimy": {"_count": 1, "and": {"_count": 1}}, "forlorn": {"_count": 1, "without": {"_count": 1}}, "unhappy": {"_count": 1, "": {"_count": 1}}, "feebly": {"_count": 1, "and": {"_count": 1}}, "hurriedly": {"_count": 1, "and": {"_count": 1}}, "uncomfortable": {"_count": 1, "": {"_count": 1}}, "deaf": {"_count": 1, "old": {"_count": 1}}, "rapidly": {"_count": 2, "as": {"_count": 1}, "then": {"_count": 1}}, "carrying": {"_count": 1, "whisper": {"_count": 1}}, "highpitched": {"_count": 1, "wheezy": {"_count": 1}}, "crossly": {"_count": 1, "": {"_count": 1}}, "less": {"_count": 1, "handsome": {"_count": 1}}, "alarmed": {"_count": 1, "the": {"_count": 1}}, "frightening": {"_count": 2, "this": {"_count": 1}, "": {"_count": 1}}, "dour": {"_count": 1, "": {"_count": 1}}, "mousy": {"_count": 1, "wife": {"_count": 1}}, "unnecessarily": {"_count": 1, "holding": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "pungent": {"_count": 1, "smell": {"_count": 1}}, "bettergroomed": {"_count": 1, "in": {"_count": 1}}, "gloomily": {"_count": 1, "": {"_count": 1}}, "timidly": {"_count": 1, "": {"_count": 1}}, "fiercely": {"_count": 1, "No": {"_count": 1}}, "flushed": {"_count": 1, "and": {"_count": 1}}}, "severelooking": {"_count": 1, "woman": {"_count": 1, "who": {"_count": 1}}}, "woman": {"_count": 171, "who": {"_count": 14, "was": {"_count": 2}, "looked": {"_count": 3}, "had": {"_count": 3}, "I": {"_count": 1}, "lived": {"_count": 1}, "seemed": {"_count": 1}, "sulked": {"_count": 1}, "gave": {"_count": 1}, "greatly": {"_count": 1}}, "had": {"_count": 3, "she": {"_count": 1}, "better": {"_count": 1}, "woken": {"_count": 1}}, "dressed": {"_count": 1, "all": {"_count": 1}}, "stared": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 14, "the": {"_count": 3}, "floorlength": {"_count": 1}, "a": {"_count": 3}, "enormous": {"_count": 1}, "thick": {"_count": 1}, "long": {"_count": 2}, "heavylidded": {"_count": 1}, "irongray": {"_count": 1}, "pointed": {"_count": 1}}, "outside": {"_count": 1, "an": {"_count": 1}}, "said": {"_count": 5, "": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "in": {"_count": 1}, "Dumbledore": {"_count": 1}}, "you": {"_count": 1, "call": {"_count": 1}}, "": {"_count": 32, ".": {"_count": 15}, "?": {"_count": 6}, "!": {"_count": 11}}, "sigh": {"_count": 1, "": {"_count": 1}}, "slid": {"_count": 1, "back": {"_count": 1}}, "didnt": {"_count": 1, "have": {"_count": 1}}, "eleven": {"_count": 1, "silver": {"_count": 1}}, "in": {"_count": 8, "a": {"_count": 4}, "the": {"_count": 2}, "his": {"_count": 1}, "long": {"_count": 1}}, "standing": {"_count": 1, "right": {"_count": 1}}, "but": {"_count": 3, "very": {"_count": 1}, "they": {"_count": 1}, "at": {"_count": 1}}, "bought": {"_count": 1, "it": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 5, "screaming": {"_count": 1}, "the": {"_count": 1}, "drooling": {"_count": 1}, "standing": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "Harry": {"_count": 1, "supposed": {"_count": 1}}, "wrote": {"_count": 2, "": {"_count": 1}, "about": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "thought": {"_count": 1}}, "now": {"_count": 1, "at": {"_count": 1}}, "buzzing": {"_count": 1, "around": {"_count": 1}}, "so": {"_count": 1, "large": {"_count": 1}}, "find": {"_count": 1, "out": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "do": {"_count": 1, "this": {"_count": 1}}, "making": {"_count": 1, "things": {"_count": 1}}, "is": {"_count": 1, "": {"_count": 1}}, "swept": {"_count": 1, "out": {"_count": 1}}, "to": {"_count": 2, "risk": {"_count": 1}, "his": {"_count": 1}}, "asked": {"_count": 1, "MadEye": {"_count": 1}}, "rolled": {"_count": 1, "her": {"_count": 1}}, "were": {"_count": 1, "standing": {"_count": 1}}, "greeted": {"_count": 1, "them": {"_count": 1}}, "sitting": {"_count": 1, "next": {"_count": 1}}, "obviously": {"_count": 1, "did": {"_count": 1}}, "all": {"_count": 1, "in": {"_count": 1}}, "heavily": {"_count": 1, "draped": {"_count": 1}}, "teach": {"_count": 1, "us": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "an": {"_count": 1, "knowin": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "whose": {"_count": 2, "trial": {"_count": 1}, "entire": {"_count": 1}}, "handing": {"_count": 1, "her": {"_count": 1}}, "Kreachers": {"_count": 1, "got": {"_count": 1}}, "up": {"_count": 1, "front": {"_count": 1}}, "recommends": {"_count": 1, "you": {"_count": 1}}, "while": {"_count": 1, "a": {"_count": 1}}, "screamed": {"_count": 2, "from": {"_count": 1}, "again": {"_count": 1}}, "still": {"_count": 1, "laughed": {"_count": 1}}, "stepped": {"_count": 1, "forward": {"_count": 1}}, "and": {"_count": 4, "Disapparated": {"_count": 1}, "at": {"_count": 1}, "she": {"_count": 1}, "child": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}, "named": {"_count": 1, "Narcissa": {"_count": 1}}, "Bella": {"_count": 1, "followed": {"_count": 1}}, "of": {"_count": 1, "such": {"_count": 1}}, "made": {"_count": 1, "you": {"_count": 1}}, "came": {"_count": 1, "scurrying": {"_count": 1}}, "whom": {"_count": 1, "you": {"_count": 1}}, "drifted": {"_count": 1, "serenely": {"_count": 1}}, "showed": {"_count": 1, "him": {"_count": 1}}, "gave": {"_count": 1, "an": {"_count": 1}}, "descended": {"_count": 1, "the": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "shouted": {"_count": 1, "Theyve": {"_count": 1}}, "or": {"_count": 2, "vulture": {"_count": 1}, "child": {"_count": 1}}, "simply": {"_count": 1, "terrifying": {"_count": 1}}, "whispered": {"_count": 1, "Doge": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "like": {"_count": 1, "Muriel": {"_count": 1}}, "stood": {"_count": 2, "there": {"_count": 1}, "up": {"_count": 1}}, "I": {"_count": 1, "married": {"_count": 1}}, "chained": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "beckoned": {"_count": 1, "again": {"_count": 1}}, "twist": {"_count": 1, "and": {"_count": 1}}, "would": {"_count": 1, "take": {"_count": 1}}, "spoke": {"_count": 1, "and": {"_count": 1}}, "laughing": {"_count": 1, "nearby": {"_count": 1}}}, "square": {"_count": 57, "glasses": {"_count": 1, "exactly": {"_count": 1}}, "the": {"_count": 1, "white": {"_count": 1}}, "and": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "June": {"_count": 1}}, "houses": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "with": {"_count": 1}}, "spectacles": {"_count": 6, "": {"_count": 3}, "at": {"_count": 1}, "as": {"_count": 1}, "flashing": {"_count": 1}}, "meals": {"_count": 1, "": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "very": {"_count": 1, "worn": {"_count": 1}}, "table": {"_count": 1, "by": {"_count": 1}}, "inch": {"_count": 1, "on": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "owners": {"_count": 1, "who": {"_count": 1}}, "gardens": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 3, "extinguished": {"_count": 1}, "now": {"_count": 1}, "revealed": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "beyond": {"_count": 1, "glowed": {"_count": 1}}, "thinks": {"_count": 1, "itll": {"_count": 1}}, "silver": {"_count": 1, "badge": {"_count": 1}}, "on": {"_count": 1, "Rons": {"_count": 1}}, "mirror": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "Rons": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "envelope": {"_count": 1, "": {"_count": 1}}, "package": {"_count": 1, "": {"_count": 1}}, "building": {"_count": 1, "surrounded": {"_count": 1}}, "of": {"_count": 2, "apparently": {"_count": 1}, "unkempt": {"_count": 1}}, "hole": {"_count": 1, "along": {"_count": 1}}, "parcel": {"_count": 1, "she": {"_count": 1}}, "outside": {"_count": 3, "number": {"_count": 1}, "and": {"_count": 1}, "We": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "however": {"_count": 1, "she": {"_count": 1}}}, "glasses": {"_count": 195, "exactly": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 42, ".": {"_count": 38}, "?": {"_count": 3}, "!": {"_count": 1}}, "and": {"_count": 28, "saying": {"_count": 1}, "nobody": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}, "put": {"_count": 3}, "ran": {"_count": 1}, "add": {"_count": 1}, "lay": {"_count": 1}, "wiped": {"_count": 1}, "got": {"_count": 1}, "a": {"_count": 1}, "wiping": {"_count": 1}, "squinting": {"_count": 1}, "polished": {"_count": 1}, "climbed": {"_count": 2}, "cleaned": {"_count": 1}, "hitched": {"_count": 1}, "said": {"_count": 3}, "she": {"_count": 1}, "unsticking": {"_count": 1}, "he": {"_count": 1}, "looked": {"_count": 1}, "flattened": {"_count": 1}}, "held": {"_count": 1, "together": {"_count": 1}}, "dangling": {"_count": 2, "from": {"_count": 1}, "off": {"_count": 1}}, "of": {"_count": 4, "sherry": {"_count": 1}, "some": {"_count": 1}, "bloodred": {"_count": 1}, "Percy": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 1}, "been": {"_count": 1}}, "flashed": {"_count": 1, "furiously": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "askew": {"_count": 7, "": {"_count": 2}, "as": {"_count": 1}, "clutching": {"_count": 1}, "a": {"_count": 1}, "blood": {"_count": 1}, "and": {"_count": 1}}, "off": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 4, "saw": {"_count": 1}, "slumped": {"_count": 1}, "hadnt": {"_count": 1}, "must": {"_count": 1}}, "snap": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "to": {"_count": 3, "his": {"_count": 1}, "Cedric": {"_count": 1}, "stop": {"_count": 1}}, "on": {"_count": 4, "straight": {"_count": 1}, "his": {"_count": 2}, "as": {"_count": 1}}, "gave": {"_count": 1, "them": {"_count": 1}}, "slip": {"_count": 1, "to": {"_count": 1}}, "kept": {"_count": 1, "sliding": {"_count": 1}}, "shining": {"_count": 1, "brightly": {"_count": 1}}, "glinting": {"_count": 2, "ominously": {"_count": 1}, "in": {"_count": 1}}, "as": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "hissed": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 6, "clouding": {"_count": 1}, "bright": {"_count": 1}, "fixed": {"_count": 1}, "lopsided": {"_count": 1}, "askew": {"_count": 1}, "a": {"_count": 1}}, "flashing": {"_count": 1, "in": {"_count": 1}}, "nodded": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 5, "on": {"_count": 3}, "onto": {"_count": 2}}, "magnified": {"_count": 1, "her": {"_count": 1}}, "quick": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 3, "were": {"_count": 1}, "then": {"_count": 1}, "had": {"_count": 1}}, "put": {"_count": 2, "them": {"_count": 1}, "on": {"_count": 1}}, "fell": {"_count": 2, "off": {"_count": 2}}, "that": {"_count": 4, "they": {"_count": 1}, "made": {"_count": 1}, "reduced": {"_count": 1}, "had": {"_count": 1}}, "is": {"_count": 1, "being": {"_count": 1}}, "from": {"_count": 3, "tables": {"_count": 1}, "his": {"_count": 1}, "inside": {"_count": 1}}, "well": {"_count": 1, "covered": {"_count": 1}}, "twinkling": {"_count": 1, "it": {"_count": 1}}, "blinking": {"_count": 1, "in": {"_count": 1}}, "glittered": {"_count": 1, "in": {"_count": 1}}, "she": {"_count": 1, "wears": {"_count": 1}}, "looked": {"_count": 2, "around": {"_count": 1}, "back": {"_count": 1}}, "with": {"_count": 4, "his": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}}, "hugely": {"_count": 1, "magnifying": {"_count": 1}}, "angrily": {"_count": 1, "she": {"_count": 1}}, "muttering": {"_count": 1, "what": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "perched": {"_count": 1, "lopsidedly": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "slipped": {"_count": 1, "down": {"_count": 1}}, "gone": {"_count": 1, "shivering": {"_count": 1}}, "lying": {"_count": 1, "at": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "upon": {"_count": 1, "a": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "appeared": {"_count": 1, "in": {"_count": 1}}, "completely": {"_count": 1, "a": {"_count": 1}}, "bounced": {"_count": 1, "up": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 2, "Hermione": {"_count": 1}, "recognized": {"_count": 1}}, "greeted": {"_count": 1, "them": {"_count": 1}}, "splattered": {"_count": 1, "with": {"_count": 1}}, "by": {"_count": 1, "mistake": {"_count": 1}}, "straight": {"_count": 1, "": {"_count": 1}}, "theres": {"_count": 1, "six": {"_count": 1}}, "stuffing": {"_count": 1, "their": {"_count": 1}}, "soaring": {"_count": 1, "through": {"_count": 1}}, "Rons": {"_count": 1, "face": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "woman": {"_count": 1}}, "making": {"_count": 1, "puffs": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "momentarily": {"_count": 1, "opaque": {"_count": 1}}, "They": {"_count": 1, "shone": {"_count": 1}}, "giving": {"_count": 1, "his": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "flew": {"_count": 1, "off": {"_count": 1}}}, "exactly": {"_count": 239, "the": {"_count": 31, "shape": {"_count": 1}, "same": {"_count": 17}, "right": {"_count": 5}, "sort": {"_count": 2}, "kind": {"_count": 1}, "moment": {"_count": 1}, "sound": {"_count": 1}, "wrong": {"_count": 1}, "Fountain": {"_count": 1}, "shade": {"_count": 1}}, "as": {"_count": 15, "it": {"_count": 2}, "he": {"_count": 3}, "possible": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 4}, "she": {"_count": 1}, "Harrys": {"_count": 1}, "Voldemort": {"_count": 1}, "MadEye": {"_count": 1}}, "what": {"_count": 49, "hed": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 9}, "I": {"_count": 1}, "happened": {"_count": 4}, "was": {"_count": 5}, "had": {"_count": 4}, "they": {"_count": 3}, "Harry": {"_count": 1}, "Ive": {"_count": 1}, "Dumbledore": {"_count": 2}, "we": {"_count": 1}, "Mrs": {"_count": 1}, "hes": {"_count": 2}, "Seamus": {"_count": 1}, "The": {"_count": 1}, "the": {"_count": 1}, "makes": {"_count": 1}, "it": {"_count": 1}, "Little": {"_count": 1}, "our": {"_count": 1}, "Hermione": {"_count": 2}, "those": {"_count": 1}, "you": {"_count": 2}, "Xenophilius": {"_count": 1}}, "fun": {"_count": 1, "last": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 2}, "?": {"_count": 7}}, "do": {"_count": 2, "they": {"_count": 1}, "you": {"_count": 1}}, "starved": {"_count": 1, "Harry": {"_count": 1}}, "how": {"_count": 17, "to": {"_count": 3}, "he": {"_count": 3}, "they": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 2}, "horrible": {"_count": 1}, "Diggory": {"_count": 1}, "Snape": {"_count": 1}, "much": {"_count": 1}, "we": {"_count": 1}, "dangerous": {"_count": 1}, "filthy": {"_count": 1}}, "like": {"_count": 15, "Muggle": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 2}, "Harry": {"_count": 1}, "Dobby": {"_count": 1}, "trying": {"_count": 1}, "that": {"_count": 1}, "Moody": {"_count": 1}, "those": {"_count": 1}, "James": {"_count": 1}, "every": {"_count": 1}, "Umbridges": {"_count": 1}, "this": {"_count": 1}}, "recent": {"_count": 1, "if": {"_count": 1}}, "pretty": {"_count": 1, "Harry": {"_count": 1}}, "a": {"_count": 3, "secret": {"_count": 1}, "year": {"_count": 1}, "homework": {"_count": 1}}, "Not": {"_count": 1, "now": {"_count": 1}}, "matched": {"_count": 1, "his": {"_count": 1}}, "one": {"_count": 1, "year": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "did": {"_count": 7, "you": {"_count": 4}, "it": {"_count": 1}, "Aberforth": {"_count": 1}, "I": {"_count": 1}}, "were": {"_count": 2, "they": {"_count": 1}, "you": {"_count": 1}}, "Hagrids": {"_count": 1, "problem": {"_count": 1}}, "had": {"_count": 1, "Professor": {"_count": 1}}, "clean": {"_count": 1, "either": {"_count": 1}}, "where": {"_count": 22, "Harry": {"_count": 1}, "the": {"_count": 1}, "we": {"_count": 1}, "Malfoy": {"_count": 1}, "he": {"_count": 5}, "to": {"_count": 1}, "Siriuss": {"_count": 2}, "this": {"_count": 1}, "Umbridge": {"_count": 1}, "": {"_count": 1}, "Snape": {"_count": 1}, "but": {"_count": 2}, "it": {"_count": 1}, "were": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}}, "equal": {"_count": 1, "pieces": {"_count": 1}}, "relaxing": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "hundred": {"_count": 1}}, "ten": {"_count": 2, "minutes": {"_count": 1}, "a": {"_count": 1}}, "are": {"_count": 7, "you": {"_count": 3}, "we": {"_count": 3}, "they": {"_count": 1}}, "halfway": {"_count": 1, "between": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "spellbound": {"_count": 1, "though": {"_count": 1}}, "hard": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "back": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "difficult": {"_count": 2, "is": {"_count": 1}, "to": {"_count": 1}}, "straining": {"_count": 1, "yourself": {"_count": 1}}, "mind": {"_count": 1, "breaking": {"_count": 1}}, "who": {"_count": 3, "we": {"_count": 1}, "they": {"_count": 1}, "did": {"_count": 1}}, "yes": {"_count": 1, "but": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "why": {"_count": 7, "whispering": {"_count": 1}, "we": {"_count": 1}, "Ginny": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}, "hes": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 1, "said": {"_count": 1}}, "pays": {"_count": 1, "people": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "young": {"_count": 1, "is": {"_count": 1}}, "your": {"_count": 1, "own": {"_count": 1}}, "hiding": {"_count": 1, "it": {"_count": 1}}, "understand": {"_count": 1, "what": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "broadminded": {"_count": 1, "when": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 2}, "Harry": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "new": {"_count": 1, "is": {"_count": 1}}, "fluffy": {"_count": 1, "little": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "been": {"_count": 1, "a": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}}, "shape": {"_count": 40, "of": {"_count": 12, "the": {"_count": 2}, "a": {"_count": 5}, "whatever": {"_count": 1}, "Lord": {"_count": 1}, "what": {"_count": 1}, "Ginny": {"_count": 1}, "an": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 4}}, "but": {"_count": 1, "then": {"_count": 1}}, "it": {"_count": 2, "should": {"_count": 1}, "is": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 5, "the": {"_count": 1}, "waited": {"_count": 1}, "size": {"_count": 1}, "murmured": {"_count": 1}, "color": {"_count": 1}}, "had": {"_count": 1, "appeared": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "skimmed": {"_count": 1, "over": {"_count": 1}}, "the": {"_count": 1, "pupils": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "moving": {"_count": 1, "upon": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "knew": {"_count": 1}}, "moved": {"_count": 1, "close": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "flying": {"_count": 1, "through": {"_count": 1}}}, "emerald": {"_count": 23, "one": {"_count": 1, "": {"_count": 1}}, "green": {"_count": 8, "ink": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 3}, "lay": {"_count": 1}, "again": {"_count": 1}, "robes": {"_count": 1}}, "eyes": {"_count": 1, "seemed": {"_count": 1}}, "velvet": {"_count": 1, "": {"_count": 1}}, "earrings": {"_count": 1, "": {"_count": 1}}, "stars": {"_count": 1, "with": {"_count": 1}}, "fire": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "flames": {"_count": 3, "flicker": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "crimson": {"_count": 1, "and": {"_count": 1}}, "liquid": {"_count": 2, "emitting": {"_count": 1}, "evidently": {"_count": 1}}, "and": {"_count": 1, "silver": {"_count": 1}}, "pajamas": {"_count": 1, "": {"_count": 1}}}, "Her": {"_count": 144, "black": {"_count": 1, "hair": {"_count": 1}}, "lips": {"_count": 4, "tightened": {"_count": 1}, "were": {"_count": 1}, "moved": {"_count": 1}, "quivered": {"_count": 1}}, "eyes": {"_count": 20, "lingered": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 7}, "started": {"_count": 1}, "found": {"_count": 1}, "widened": {"_count": 1}, "ranged": {"_count": 1}, "zoomed": {"_count": 1}, "traveled": {"_count": 1}, "sped": {"_count": 1}, "like": {"_count": 1}, "flew": {"_count": 1}, "sparkled": {"_count": 1}, "met": {"_count": 1}}, "shrieks": {"_count": 1, "followed": {"_count": 1}}, "mouth": {"_count": 2, "looked": {"_count": 1}, "opened": {"_count": 1}}, "words": {"_count": 1, "were": {"_count": 1}}, "fellow": {"_count": 1, "Chasers": {"_count": 1}}, "Pepperup": {"_count": 1, "Potion": {"_count": 1}}, "face": {"_count": 14, "was": {"_count": 4}, "relaxed": {"_count": 1}, "fell": {"_count": 2}, "had": {"_count": 2}, "close": {"_count": 1}, "Harry": {"_count": 1}, "flooded": {"_count": 1}, "glazed": {"_count": 1}, "streaked": {"_count": 1}}, "spirits": {"_count": 1, "were": {"_count": 1}}, "bemused": {"_count": 1, "eyes": {"_count": 1}}, "huge": {"_count": 1, "face": {"_count": 1}}, "great": {"_count": 5, "red": {"_count": 1}, "brown": {"_count": 1}, "eyes": {"_count": 1}, "blue": {"_count": 1}, "beaconlike": {"_count": 1}}, "arms": {"_count": 3, "were": {"_count": 3}}, "wide": {"_count": 1, "eyes": {"_count": 1}}, "expression": {"_count": 4, "was": {"_count": 2}, "became": {"_count": 1}, "did": {"_count": 1}}, "scolding": {"_count": 1, "carried": {"_count": 1}}, "dark": {"_count": 2, "brown": {"_count": 1}, "hair": {"_count": 1}}, "giant": {"_count": 1, "eyes": {"_count": 1}}, "voice": {"_count": 7, "dropped": {"_count": 1}, "exploded": {"_count": 1}, "shook": {"_count": 1}, "was": {"_count": 2}, "trailed": {"_count": 1}, "rose": {"_count": 1}}, "hair": {"_count": 9, "was": {"_count": 8}, "had": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "head": {"_count": 1, "swayed": {"_count": 1}}, "jaws": {"_count": 1, "opened": {"_count": 1}}, "gold": {"_count": 1, "teeth": {"_count": 1}}, "acnes": {"_count": 1, "loads": {"_count": 1}}, "nose": {"_count": 1, "is": {"_count": 1}}, "reaction": {"_count": 1, "was": {"_count": 1}}, "clothes": {"_count": 2, "were": {"_count": 1}, "are": {"_count": 1}}, "enormous": {"_count": 1, "pupils": {"_count": 1}}, "bottom": {"_count": 1, "lip": {"_count": 1}}, "hands": {"_count": 3, "were": {"_count": 1}, "found": {"_count": 1}, "shook": {"_count": 1}}, "attitude": {"_count": 1, "toward": {"_count": 1}}, "scream": {"_count": 1, "seemed": {"_count": 1}}, "hand": {"_count": 1, "nudged": {"_count": 1}}, "grizzled": {"_count": 1, "gray": {"_count": 1}}, "large": {"_count": 1, "pale": {"_count": 1}}, "husband": {"_count": 1, "a": {"_count": 1}}, "normally": {"_count": 1, "kindly": {"_count": 1}}, "prominent": {"_count": 1, "eyes": {"_count": 1}}, "tone": {"_count": 2, "of": {"_count": 1}, "was": {"_count": 1}}, "bulging": {"_count": 1, "eyes": {"_count": 1}}, "friend": {"_count": 2, "who": {"_count": 1}, "Marietta": {"_count": 1}}, "curlyhaired": {"_count": 1, "friends": {"_count": 1}}, "parents": {"_count": 1, "have": {"_count": 1}}, "pale": {"_count": 2, "doughy": {"_count": 1}, "eyes": {"_count": 1}}, "Hagrid": {"_count": 1, "hesitated": {"_count": 1}}, "wand": {"_count": 2, "fell": {"_count": 1}, "slashed": {"_count": 1}}, "blood": {"_count": 1, "became": {"_count": 1}}, "usually": {"_count": 1, "neat": {"_count": 1}}, "footsteps": {"_count": 1, "echoed": {"_count": 1}}, "stillhooded": {"_count": 1, "sister": {"_count": 1}}, "amber": {"_count": 1, "eyes": {"_count": 1}}, "rather": {"_count": 1, "horsey": {"_count": 1}}, "potion": {"_count": 1, "already": {"_count": 1}}, "father": {"_count": 1, "picked": {"_count": 1}}, "family": {"_count": 1, "owns": {"_count": 1}}, "halffinished": {"_count": 1, "antidote": {"_count": 1}}, "big": {"_count": 1, "dark": {"_count": 1}}, "imitations": {"_count": 1, "of": {"_count": 1}}, "name": {"_count": 1, "was": {"_count": 1}}, "bony": {"_count": 1, "hand": {"_count": 1}}, "slightly": {"_count": 1, "narrowed": {"_count": 1}}, "nine": {"_count": 1, "hundredpage": {"_count": 1}}, "future": {"_count": 1, "was": {"_count": 1}}, "beaky": {"_count": 1, "nose": {"_count": 1}}, "health": {"_count": 1, "was": {"_count": 1}}, "arm": {"_count": 1, "curved": {"_count": 1}}, "office": {"_count": 1, "must": {"_count": 1}}, "stoop": {"_count": 1, "her": {"_count": 1}}, "very": {"_count": 1, "existence": {"_count": 1}}, "presence": {"_count": 1, "had": {"_count": 1}}, "fingers": {"_count": 1, "sketched": {"_count": 1}}, "dislike": {"_count": 1, "of": {"_count": 1}}, "composure": {"_count": 1, "was": {"_count": 1}}, "boy": {"_count": 1, "survives": {"_count": 1}}, "son": {"_count": 1, "lives": {"_count": 1}}}, "black": {"_count": 492, "hair": {"_count": 39, "was": {"_count": 5}, "and": {"_count": 9}, "a": {"_count": 1}, "": {"_count": 12}, "Harry": {"_count": 1}, "came": {"_count": 1}, "rippling": {"_count": 2}, "parted": {"_count": 1}, "pushed": {"_count": 1}, "stuck": {"_count": 1}, "reached": {"_count": 1}, "plucked": {"_count": 1}, "rippled": {"_count": 1}, "hung": {"_count": 1}, "flying": {"_count": 1}}, "shoes": {"_count": 1, "pacing": {"_count": 1}}, "beetles": {"_count": 1, "under": {"_count": 1}}, "overcoat": {"_count": 1, "he": {"_count": 1}}, "coat": {"_count": 1, "and": {"_count": 1}}, "2": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "day": {"_count": 1}}, "silver": {"_count": 1, "fastenings": {"_count": 1}}, "robes": {"_count": 17, "": {"_count": 5}, "rippling": {"_count": 1}, "billowing": {"_count": 2}, "swishing": {"_count": 1}, "an": {"_count": 1}, "and": {"_count": 2}, "that": {"_count": 1}, "from": {"_count": 1}, "burst": {"_count": 1}, "had": {"_count": 1}, "loading": {"_count": 1}}, "beetle": {"_count": 1, "eyes": {"_count": 1}}, "Hogwarts": {"_count": 2, "robes": {"_count": 1}, "hats": {"_count": 1}}, "mark": {"_count": 1, "on": {"_count": 1}}, "lake": {"_count": 6, "": {"_count": 3}, "so": {"_count": 1}, "teeming": {"_count": 1}, "seemed": {"_count": 1}}, "ceiling": {"_count": 4, "dotted": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}}, "Your": {"_count": 1, "top": {"_count": 1}}, "inside": {"_count": 2, "of": {"_count": 2}}, "like": {"_count": 1, "Hagrid": {"_count": 1}}, "cloak": {"_count": 12, "watching": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 3}, "billowing": {"_count": 2}, "flecked": {"_count": 1}, "threw": {"_count": 1}}, "boarhound": {"_count": 2, "": {"_count": 1}, "Fang": {"_count": 1}}, "shadows": {"_count": 3, "": {"_count": 1}, "through": {"_count": 1}, "across": {"_count": 1}}, "and": {"_count": 16, "slightly": {"_count": 1}, "silver": {"_count": 1}, "silent": {"_count": 1}, "smoky": {"_count": 1}, "cloudy": {"_count": 1}, "who": {"_count": 1}, "the": {"_count": 2}, "burned": {"_count": 1}, "white": {"_count": 2}, "shiny": {"_count": 1}, "faceless": {"_count": 1}, "gold": {"_count": 2}, "forbidding": {"_count": 1}}, "ball": {"_count": 1, "rose": {"_count": 1}}, "clouds": {"_count": 1, "making": {"_count": 1}}, "eye": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}}, "egg": {"_count": 1, "": {"_count": 1}}, "umbrella": {"_count": 1, "": {"_count": 1}}, "trees": {"_count": 2, "": {"_count": 2}}, "eyes": {"_count": 44, "": {"_count": 5}, "glittering": {"_count": 4}, "glinted": {"_count": 1}, "narrowing": {"_count": 1}, "glittered": {"_count": 4}, "flicked": {"_count": 1}, "flashing": {"_count": 1}, "bulging": {"_count": 1}, "were": {"_count": 5}, "beaming": {"_count": 1}, "boring": {"_count": 1}, "sweeping": {"_count": 1}, "and": {"_count": 1}, "swept": {"_count": 2}, "narrowed": {"_count": 2}, "fixed": {"_count": 2}, "roved": {"_count": 2}, "hoping": {"_count": 1}, "gleaming": {"_count": 1}, "saw": {"_count": 1}, "wide": {"_count": 1}, "had": {"_count": 1}, "widened": {"_count": 1}, "found": {"_count": 1}, "eager": {"_count": 1}, "on": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "chessmen": {"_count": 1, "which": {"_count": 1}}, "stone": {"_count": 5, "": {"_count": 2}, "that": {"_count": 1}, "dominated": {"_count": 1}, "with": {"_count": 1}}, "knight": {"_count": 2, "and": {"_count": 1}, "nodded": {"_count": 1}}, "pieces": {"_count": 2, "": {"_count": 2}}, "players": {"_count": 1, "slumped": {"_count": 1}}, "ones": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "flames": {"_count": 3, "shot": {"_count": 1}, "": {"_count": 1}, "licking": {"_count": 1}}, "fire": {"_count": 2, "and": {"_count": 1}, "toward": {"_count": 1}}, "mustache": {"_count": 4, "Aunt": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "rippled": {"_count": 1}}, "Cs": {"_count": 1, "and": {"_count": 1}}, "cabinet": {"_count": 4, "to": {"_count": 1}, "behind": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}}, "spiders": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "camera": {"_count": 3, "that": {"_count": 2}, "jumped": {"_count": 1}}, "glassy": {"_count": 1, "surface": {"_count": 1}}, "lawns": {"_count": 1, "losing": {"_count": 1}}, "quill": {"_count": 4, "into": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "beside": {"_count": 1}}, "but": {"_count": 3, "inside": {"_count": 1}, "you": {"_count": 1}, "after": {"_count": 1}}, "velvet": {"_count": 8, "drapes": {"_count": 1}, "": {"_count": 1}, "trimmed": {"_count": 1}, "with": {"_count": 1}, "bow": {"_count": 4}}, "candles": {"_count": 2, "": {"_count": 2}}, "Bludger": {"_count": 1, "came": {"_count": 1}}, "remains": {"_count": 1, "of": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "snake": {"_count": 1, "shot": {"_count": 1}}, "garden": {"_count": 1, "hose": {"_count": 1}}, "smoke": {"_count": 6, "": {"_count": 3}, "issuing": {"_count": 1}, "billowed": {"_count": 1}, "hardly": {"_count": 1}}, "hovercraft": {"_count": 1, "": {"_count": 1}}, "head": {"_count": 3, "and": {"_count": 2}, "grazing": {"_count": 1}}, "fur": {"_count": 1, "": {"_count": 1}}, "cover": {"_count": 1, "and": {"_count": 1}}, "legs": {"_count": 1, "a": {"_count": 1}}, "traveling": {"_count": 7, "cloak": {"_count": 7}}, "grass": {"_count": 1, "we": {"_count": 1}}, "pincers": {"_count": 1, "": {"_count": 1}}, "hairy": {"_count": 1, "gigantic": {"_count": 1}}, "of": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "shapes": {"_count": 2, "shifted": {"_count": 1}, "on": {"_count": 1}}, "heads": {"_count": 1, "": {"_count": 1}}, "tunnel": {"_count": 1, "": {"_count": 1}}, "diary": {"_count": 1, "Harry": {"_count": 1}}, "hole": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Chamber": {"_count": 1}}, "book": {"_count": 1, "with": {"_count": 1}}, "leather": {"_count": 2, "case": {"_count": 1}, "": {"_count": 1}}, "alleyway": {"_count": 1, "": {"_count": 1}}, "thing": {"_count": 1, "said": {"_count": 1}}, "dog": {"_count": 23, "large": {"_count": 1}, "anywhere": {"_count": 1}, "clearly": {"_count": 1}, "moving": {"_count": 1}, "which": {"_count": 2}, "sniffed": {"_count": 1}, "before": {"_count": 1}, "sitting": {"_count": 1}, "and": {"_count": 3}, "entered": {"_count": 1}, "that": {"_count": 1}, "came": {"_count": 2}, "looked": {"_count": 1}, "had": {"_count": 1}, "beside": {"_count": 1}, "gave": {"_count": 1}, "reared": {"_count": 1}, "was": {"_count": 1}, "so": {"_count": 1}}, "rats": {"_count": 2, "that": {"_count": 1}, "who": {"_count": 1}}, "spectacles": {"_count": 1, "out": {"_count": 1}}, "window": {"_count": 2, "": {"_count": 2}}, "outline": {"_count": 2, "of": {"_count": 2}}, "hats": {"_count": 1, "each": {"_count": 1}}, "beard": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "upon": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "balls": {"_count": 1, "that": {"_count": 1}}, "Pepper": {"_count": 2, "Imps": {"_count": 2}}, "figures": {"_count": 3, "": {"_count": 1}, "stood": {"_count": 1}, "was": {"_count": 1}}, "school": {"_count": 1, "robes": {"_count": 1}}, "hooded": {"_count": 3, "dementors": {"_count": 1}, "robes": {"_count": 1}, "figures": {"_count": 1}}, "mass": {"_count": 2, "around": {"_count": 1}, "rose": {"_count": 1}}, "surface": {"_count": 3, "of": {"_count": 2}, "glittering": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "currant": {"_count": 1, "ice": {"_count": 1}}, "tuffets": {"_count": 1, "of": {"_count": 1}}, "eyebrows": {"_count": 4, "": {"_count": 3}, "until": {"_count": 1}}, "Bludgers": {"_count": 1, "and": {"_count": 1}}, "sky": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "circus": {"_count": 1, "tent": {"_count": 1}}, "giant": {"_count": 1, "slugs": {"_count": 1}}, "badger": {"_count": 2, "for": {"_count": 1}, "of": {"_count": 1}}, "shape": {"_count": 3, "skimmed": {"_count": 1}, "moving": {"_count": 1}, "upon": {"_count": 1}}, "shoe": {"_count": 1, "emerging": {"_count": 1}}, "liquidlooking": {"_count": 1, "eyes": {"_count": 1}}, "satin": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "pole": {"_count": 1, "began": {"_count": 1}}, "pudding": {"_count": 1, "": {"_count": 1}}, "girl": {"_count": 2, "who": {"_count": 1}, "with": {"_count": 1}}, "eyelashes": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 4, "more": {"_count": 1}, "with": {"_count": 1}, "Harry": {"_count": 1}, "set": {"_count": 1}}, "dragon": {"_count": 3, "with": {"_count": 1}, "was": {"_count": 1}, "skin": {"_count": 1}}, "eyelid": {"_count": 1, "": {"_count": 1}}, "matted": {"_count": 1, "hair": {"_count": 1}}, "lizard": {"_count": 1, "thrashing": {"_count": 1}}, "leathery": {"_count": 2, "wings": {"_count": 2}}, "sails": {"_count": 1, "billowing": {"_count": 1}}, "Too": {"_count": 1, "late": {"_count": 1}}, "Harry": {"_count": 1, "recited": {"_count": 1}}, "weed": {"_count": 1, "wide": {"_count": 1}}, "mud": {"_count": 1, "now": {"_count": 1}}, "creatures": {"_count": 1, "with": {"_count": 1}}, "trunk": {"_count": 2, "to": {"_count": 1}, "illuminating": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "body": {"_count": 1, "but": {"_count": 1}}, "material": {"_count": 1, "from": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "drapes": {"_count": 1, "on": {"_count": 1}}, "ink": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 2, "standing": {"_count": 1}, "who": {"_count": 1}}, "paint": {"_count": 1, "was": {"_count": 1}}, "cap": {"_count": 1, "was": {"_count": 1}}, "pipe": {"_count": 1, "": {"_count": 1}}, "burn": {"_count": 1, "on": {"_count": 1}}, "liquid": {"_count": 2, "with": {"_count": 1}, "standing": {"_count": 1}}, "eggs": {"_count": 1, "at": {"_count": 1}}, "pods": {"_count": 1, "": {"_count": 1}}, "coats": {"_count": 1, "clinging": {"_count": 1}}, "speck": {"_count": 1, "and": {"_count": 1}}, "wings": {"_count": 1, "spread": {"_count": 1}}, "D": {"_count": 1, "scrawled": {"_count": 1}}, "veil": {"_count": 3, "that": {"_count": 2}, "": {"_count": 1}}, "letters": {"_count": 1, "and": {"_count": 1}}, "moving": {"_count": 1, "dots": {"_count": 1}}, "snowflecked": {"_count": 1, "window": {"_count": 1}}, "or": {"_count": 2, "purple": {"_count": 1}, "brown": {"_count": 1}}, "space": {"_count": 1, "between": {"_count": 1}}, "winged": {"_count": 2, "horse": {"_count": 1}, "horses": {"_count": 1}}, "tail": {"_count": 3, "then": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "horse": {"_count": 1, "appeared": {"_count": 1}}, "bangs": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 2, "ever": {"_count": 1}, "the": {"_count": 1}}, "eyebrow": {"_count": 1, "as": {"_count": 1}}, "door": {"_count": 14, "past": {"_count": 1}, "but": {"_count": 2}, "at": {"_count": 1}, "": {"_count": 4}, "was": {"_count": 1}, "and": {"_count": 2}, "swung": {"_count": 1}, "that": {"_count": 1}, "which": {"_count": 1}}, "bun": {"_count": 1, "squeezing": {"_count": 1}}, "shadow": {"_count": 1, "was": {"_count": 1}}, "centaur": {"_count": 1, "whom": {"_count": 1}}, "manes": {"_count": 1, "and": {"_count": 1}}, "including": {"_count": 1, "the": {"_count": 1}}, "doors": {"_count": 1, "were": {"_count": 1}}, "walls": {"_count": 1, "interspersed": {"_count": 1}}, "curtain": {"_count": 1, "or": {"_count": 1}}, "hallway": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "room": {"_count": 1, "toward": {"_count": 1}}, "hall": {"_count": 1, "and": {"_count": 1}}, "water": {"_count": 7, "and": {"_count": 1}, "": {"_count": 3}, "as": {"_count": 1}, "away": {"_count": 1}, "The": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "specks": {"_count": 1, "were": {"_count": 1}}, "E": {"_count": 1, "": {"_count": 1}}, "bearded": {"_count": 1, "form": {"_count": 1}}, "horntype": {"_count": 1, "objects": {"_count": 1}}, "boy": {"_count": 1, "with": {"_count": 1}}, "greasy": {"_count": 1, "hair": {"_count": 1}}, "cauldron": {"_count": 1, "standing": {"_count": 1}}, "currantcolored": {"_count": 1, "liquid": {"_count": 1}}, "stove": {"_count": 1, "and": {"_count": 1}}, "stoned": {"_count": 1, "ring": {"_count": 1}}, "ring": {"_count": 1, "he": {"_count": 1}}, "dots": {"_count": 2, "that": {"_count": 1}, "upon": {"_count": 1}}, "suit": {"_count": 2, "his": {"_count": 1}, "and": {"_count": 1}}, "armband": {"_count": 1, "out": {"_count": 1}}, "cravat": {"_count": 1, "": {"_count": 1}}, "star": {"_count": 1, "strewn": {"_count": 1}}, "withered": {"_count": 1, "hand": {"_count": 1}}, "wall": {"_count": 1, "of": {"_count": 1}}, "glass": {"_count": 1, "The": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "huddled": {"_count": 1, "mass": {"_count": 1}}, "perhaps": {"_count": 1, "or": {"_count": 1}}, "fringe": {"_count": 1, "had": {"_count": 1}}, "droned": {"_count": 1, "on": {"_count": 1}}, "had": {"_count": 1, "stopped": {"_count": 1}}, "sidecar": {"_count": 1, "attached": {"_count": 1}}, "broadshouldered": {"_count": 1, "Hagrid": {"_count": 1}}, "thestral": {"_count": 1, "by": {"_count": 1}}, "ropes": {"_count": 1, "flew": {"_count": 1}}, "marble": {"_count": 1, "floor": {"_count": 1}}, "basin": {"_count": 1, "with": {"_count": 1}}, "hairs": {"_count": 1, "but": {"_count": 1}}, "railings": {"_count": 1, "flanking": {"_count": 1}}, "blindfold": {"_count": 1, "appeared": {"_count": 1}}, "boundary": {"_count": 1, "of": {"_count": 1}}, "shawl": {"_count": 1, "revealing": {"_count": 1}}, "trunks": {"_count": 1, "": {"_count": 1}}, "cylinder": {"_count": 1, "with": {"_count": 1}}, "fortress": {"_count": 1, "No": {"_count": 1}}, "rock": {"_count": 1, "not": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "mountains": {"_count": 1, "beyond": {"_count": 1}}, "cloaks": {"_count": 1, "and": {"_count": 1}}, "serpent": {"_count": 1, "that": {"_count": 1}}, "boot": {"_count": 1, "trembling": {"_count": 1}}}, "drawn": {"_count": 48, "into": {"_count": 2, "a": {"_count": 2}}, "the": {"_count": 3, "curtains": {"_count": 2}, "red": {"_count": 1}}, "many": {"_count": 1, "lines": {"_count": 1}}, "around": {"_count": 2, "Harrys": {"_count": 1}, "two": {"_count": 1}}, "right": {"_count": 3, "over": {"_count": 1}, "back": {"_count": 1}, "up": {"_count": 1}}, "up": {"_count": 3, "for": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}}, "back": {"_count": 5, "in": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}, "his": {"_count": 1}, "into": {"_count": 1}}, "herself": {"_count": 2, "up": {"_count": 2}}, "and": {"_count": 2, "they": {"_count": 2}}, "out": {"_count": 1, "a": {"_count": 1}}, "himself": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "that": {"_count": 1}}, "a": {"_count": 1, "Snitch": {"_count": 1}}, "his": {"_count": 3, "own": {"_count": 1}, "wand": {"_count": 2}}, "even": {"_count": 1, "ill": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "level": {"_count": 1, "with": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "them": {"_count": 1}}, "upward": {"_count": 1, "to": {"_count": 1}}, "more": {"_count": 1, "attention": {"_count": 1}}, "it": {"_count": 1, "there": {"_count": 1}}, "Hermione": {"_count": 1, "to": {"_count": 1}}, "heading": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "blood": {"_count": 1, "biting": {"_count": 1}}}, "tight": {"_count": 103, "bun": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "her": {"_count": 1}, "looked": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 12}, "!": {"_count": 1}}, "corners": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "around": {"_count": 4, "him": {"_count": 1}, "the": {"_count": 1}, "Rons": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 10, "his": {"_count": 2}, "speak": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 2}, "my": {"_count": 1}}, "he": {"_count": 3, "tripped": {"_count": 1}, "felt": {"_count": 1}, "was": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "though": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "embrace": {"_count": 2, "": {"_count": 2}}, "onearmed": {"_count": 1, "hug": {"_count": 1}}, "then": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "bags": {"_count": 1, "or": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "in": {"_count": 6, "his": {"_count": 3}, "her": {"_count": 2}, "the": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}}, "hold": {"_count": 2, "on": {"_count": 2}}, "shut": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "then": {"_count": 1}}, "circle": {"_count": 1, "as": {"_count": 1}}, "hug": {"_count": 1, "that": {"_count": 1}}, "corner": {"_count": 1, "a": {"_count": 1}}, "tense": {"_count": 1, "knot": {"_count": 1}}, "cords": {"_count": 1, "around": {"_count": 1}}, "on": {"_count": 2, "Harrys": {"_count": 1}, "Hermione": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 3, "be": {"_count": 1}, "safe": {"_count": 1}, "slipped": {"_count": 1}}, "spot": {"_count": 1, "once": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "fit": {"_count": 1, "Harry": {"_count": 1}}, "holes": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 2, "her": {"_count": 1}, "your": {"_count": 1}}, "with": {"_count": 1, "pain": {"_count": 1}}, "circles": {"_count": 1, "until": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "grip": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "against": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "rubber": {"_count": 1, "tube": {"_count": 1}}, "obstruction": {"_count": 1, "in": {"_count": 1}}, "security": {"_count": 1, "measures": {"_count": 1}}, "satin": {"_count": 1, "slippers": {"_count": 1}}, "schedule": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "now": {"_count": 1, "Ron": {"_count": 1}}, "spots": {"_count": 1, "with": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Again": {"_count": 1, "he": {"_count": 1}}, "she": {"_count": 1, "whispered": {"_count": 1}}, "swollen": {"_count": 1, "and": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}, "dizzying": {"_count": 1, "circles": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "distinctly": {"_count": 37, "ruffled": {"_count": 1, "": {"_count": 1}}, "hot": {"_count": 1, "in": {"_count": 1}}, "disgruntled": {"_count": 1, "not": {"_count": 1}}, "heard": {"_count": 8, "Professor": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 2}, "others": {"_count": 1}, "a": {"_count": 1}, "Phineas": {"_count": 1}}, "saw": {"_count": 5, "his": {"_count": 1}, "her": {"_count": 2}, "Malfoy": {"_count": 1}, "six": {"_count": 1}}, "the": {"_count": 2, "hulking": {"_count": 1}, "worse": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "roundshouldered": {"_count": 1, "": {"_count": 1}}, "unfair": {"_count": 1, "as": {"_count": 1}}, "odd": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "Dumbledores": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "he": {"_count": 1, "heard": {"_count": 1}}, "shabby": {"_count": 1, "corridor": {"_count": 1}}, "aggrieved": {"_count": 1, "": {"_count": 1}}, "colder": {"_count": 1, "": {"_count": 1}}, "unrested": {"_count": 1, "": {"_count": 1}}, "careworn": {"_count": 1, "": {"_count": 1}}, "awkward": {"_count": 1, "as": {"_count": 1}}, "hear": {"_count": 1, "the": {"_count": 1}}, "disheveled": {"_count": 1, "rather": {"_count": 1}}, "grayish": {"_count": 1, "tinge": {"_count": 1}}, "hairy": {"_count": 1, "and": {"_count": 1}}, "remembered": {"_count": 1, "his": {"_count": 1}}, "unlovable": {"_count": 1, "object": {"_count": 1}}}, "ruffled": {"_count": 18, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "neat": {"_count": 1}}, "Dudleys": {"_count": 1, "hair": {"_count": 1}}, "her": {"_count": 1, "feathers": {"_count": 1}}, "its": {"_count": 1, "feathers": {"_count": 1}}, "his": {"_count": 4, "hair": {"_count": 3}, "large": {"_count": 1}}, "like": {"_count": 1, "water": {"_count": 1}}, "some": {"_count": 1, "were": {"_count": 1}}, "flattened": {"_count": 1, "look": {"_count": 1}}, "hair": {"_count": 1, "seemed": {"_count": 1}}, "Vincent": {"_count": 1, "Crabbe": {"_count": 1}}, "folds": {"_count": 1, "of": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "hands": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "asked": {"_count": 1093, "": {"_count": 108, ".": {"_count": 105}, "!": {"_count": 1}, "?": {"_count": 2}}, "Hagrid": {"_count": 5, "": {"_count": 1}, "to": {"_count": 1}, "pausing": {"_count": 1}, "brightly": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 150, "what": {"_count": 1}, "in": {"_count": 4}, "": {"_count": 68}, "who": {"_count": 8}, "curiously": {"_count": 1}, "grabbing": {"_count": 1}, "loudly": {"_count": 2}, "pointing": {"_count": 1}, "quite": {"_count": 1}, "holding": {"_count": 1}, "while": {"_count": 1}, "as": {"_count": 4}, "and": {"_count": 3}, "to": {"_count": 1}, "quietly": {"_count": 2}, "but": {"_count": 1}, "quickly": {"_count": 3}, "grumpily": {"_count": 1}, "confused": {"_count": 1}, "frowning": {"_count": 1}, "desperately": {"_count": 2}, "staring": {"_count": 1}, "angrily": {"_count": 2}, "eagerly": {"_count": 1}, "following": {"_count": 1}, "seriously": {"_count": 1}, "horrified": {"_count": 1}, "trembling": {"_count": 1}, "though": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 2}, "handing": {"_count": 1}, "taking": {"_count": 2}, "trying": {"_count": 1}, "sitting": {"_count": 1}, "watching": {"_count": 1}, "turning": {"_count": 2}, "prodding": {"_count": 1}, "hoping": {"_count": 1}, "now": {"_count": 1}, "nervously": {"_count": 1}, "more": {"_count": 1}, "hesitantly": {"_count": 1}, "How": {"_count": 1}, "feeling": {"_count": 1}, "ignoring": {"_count": 1}, "heavily": {"_count": 1}, "flatly": {"_count": 1}, "excitement": {"_count": 1}, "jubilantly": {"_count": 1}, "with": {"_count": 1}, "urgently": {"_count": 1}, "after": {"_count": 1}, "excitedly": {"_count": 1}, "rubbing": {"_count": 1}, "looking": {"_count": 1}, "had": {"_count": 1}, "a": {"_count": 1}, "startled": {"_count": 1}}, "Aunt": {"_count": 4, "Petunia": {"_count": 4}}, "what": {"_count": 8, "hed": {"_count": 1}, "I": {"_count": 1}, "she": {"_count": 2}, "was": {"_count": 2}, "had": {"_count": 1}, "car": {"_count": 1}}, "urgently": {"_count": 2, "": {"_count": 2}}, "for": {"_count": 17, "all": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 4}, "directions": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}, "our": {"_count": 1}, "dramatic": {"_count": 1}, "advice": {"_count": 1}, "help": {"_count": 1}, "something": {"_count": 1}, "one": {"_count": 1}, "identification": {"_count": 1}}, "looking": {"_count": 8, "around": {"_count": 3}, "at": {"_count": 2}, "Zacharias": {"_count": 1}, "bewildered": {"_count": 1}, "from": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 22, "he": {"_count": 4}, "they": {"_count": 8}, "Harry": {"_count": 3}, "Bagman": {"_count": 1}, "Dobby": {"_count": 1}, "Ron": {"_count": 2}, "her": {"_count": 1}, "Dumbledore": {"_count": 1}, "well": {"_count": 1}}, "the": {"_count": 26, "man": {"_count": 1}, "other": {"_count": 3}, "headmaster": {"_count": 1}, "cat": {"_count": 1}, "students": {"_count": 1}, "irritable": {"_count": 1}, "question": {"_count": 1}, "ghost": {"_count": 1}, "Minister": {"_count": 1}, "Heads": {"_count": 1}, "Prime": {"_count": 2}, "room": {"_count": 1}, "same": {"_count": 1}, "matron": {"_count": 1}, "taller": {"_count": 1}, "new": {"_count": 1}, "first": {"_count": 1}, "third": {"_count": 1}, "others": {"_count": 1}, "wandmaker": {"_count": 1}, "goblin": {"_count": 1}, "boy": {"_count": 1}, "gargoyle": {"_count": 1}}, "trying": {"_count": 6, "to": {"_count": 6}}, "how": {"_count": 5, "to": {"_count": 1}, "he": {"_count": 1}, "Dad": {"_count": 1}, "wed": {"_count": 1}, "Harry": {"_count": 1}}, "pointing": {"_count": 5, "at": {"_count": 5}}, "Ron": {"_count": 85, "holding": {"_count": 1}, "": {"_count": 39}, "as": {"_count": 6}, "and": {"_count": 4}, "quietly": {"_count": 2}, "sitting": {"_count": 1}, "blankly": {"_count": 1}, "nodding": {"_count": 1}, "looking": {"_count": 4}, "taking": {"_count": 1}, "sounding": {"_count": 1}, "who": {"_count": 1}, "in": {"_count": 3}, "incredulously": {"_count": 3}, "eagerly": {"_count": 1}, "but": {"_count": 3}, "pulling": {"_count": 1}, "propping": {"_count": 1}, "while": {"_count": 1}, "nervously": {"_count": 1}, "hurrying": {"_count": 1}, "panting": {"_count": 1}, "anxiously": {"_count": 1}, "through": {"_count": 1}, "angrily": {"_count": 1}, "furiously": {"_count": 1}, "hopefully": {"_count": 1}, "edging": {"_count": 1}, "now": {"_count": 1}}, "Percy": {"_count": 5, "uncertainly": {"_count": 1}, "": {"_count": 2}, "if": {"_count": 1}, "in": {"_count": 1}}, "Seamus": {"_count": 3, "with": {"_count": 1}, "eagerly": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 2, "Nearly": {"_count": 1}, "Harry": {"_count": 1}}, "by": {"_count": 2, "Mr": {"_count": 1}, "somebody": {"_count": 1}}, "politely": {"_count": 2, "or": {"_count": 1}, "but": {"_count": 1}}, "eagerly": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "excitedly": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "shrilly": {"_count": 1, "": {"_count": 1}}, "hoping": {"_count": 1, "he": {"_count": 1}}, "sticking": {"_count": 1, "his": {"_count": 1}}, "me": {"_count": 30, "to": {"_count": 12}, "what": {"_count": 1}, "that": {"_count": 1}, "many": {"_count": 1}, "when": {"_count": 1}, "one": {"_count": 2}, "right": {"_count": 1}, "whether": {"_count": 2}, "for": {"_count": 2}, "out": {"_count": 2}, "questions": {"_count": 1}, "the": {"_count": 1}, "each": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 35, "leading": {"_count": 1}, "": {"_count": 11}, "to": {"_count": 6}, "standing": {"_count": 1}, "grinning": {"_count": 1}, "a": {"_count": 1}, "how": {"_count": 1}, "as": {"_count": 2}, "if": {"_count": 2}, "wideeyed": {"_count": 1}, "why": {"_count": 2}, "about": {"_count": 1}, "in": {"_count": 1}, "where": {"_count": 1}, "one": {"_count": 1}, "so": {"_count": 1}, "You": {"_count": 1}}, "Dumbledore": {"_count": 27, "to": {"_count": 4}, "whether": {"_count": 1}, "and": {"_count": 3}, "calmly": {"_count": 1}, "looking": {"_count": 2}, "politely": {"_count": 1}, "loudly": {"_count": 1}, "": {"_count": 10}, "gently": {"_count": 1}, "delicately": {"_count": 1}, "his": {"_count": 1}, "heavily": {"_count": 1}}, "if": {"_count": 4, "he": {"_count": 1}, "Id": {"_count": 1}, "she": {"_count": 2}}, "Hermione": {"_count": 76, "": {"_count": 31}, "how": {"_count": 1}, "keenly": {"_count": 1}, "fiercely": {"_count": 1}, "now": {"_count": 1}, "five": {"_count": 1}, "skeptically": {"_count": 1}, "as": {"_count": 3}, "when": {"_count": 1}, "rather": {"_count": 1}, "looking": {"_count": 1}, "anxiously": {"_count": 2}, "quietly": {"_count": 1}, "sounding": {"_count": 1}, "tentatively": {"_count": 1}, "briskly": {"_count": 1}, "trying": {"_count": 1}, "in": {"_count": 2}, "peering": {"_count": 1}, "curiously": {"_count": 1}, "who": {"_count": 3}, "at": {"_count": 1}, "but": {"_count": 1}, "sympathetically": {"_count": 1}, "still": {"_count": 2}, "desperately": {"_count": 1}, "giving": {"_count": 1}, "ignoring": {"_count": 1}, "making": {"_count": 1}, "bending": {"_count": 1}, "cringing": {"_count": 1}, "an": {"_count": 1}, "furiously": {"_count": 1}, "sternly": {"_count": 1}, "raising": {"_count": 1}, "and": {"_count": 1}, "her": {"_count": 1}, "surprised": {"_count": 1}, "breathlessly": {"_count": 1}}, "a": {"_count": 6, "bit": {"_count": 1}, "third": {"_count": 1}, "quizzical": {"_count": 1}, "question": {"_count": 2}, "new": {"_count": 1}}, "to": {"_count": 15, "sit": {"_count": 1}, "try": {"_count": 1}, "step": {"_count": 1}, "be": {"_count": 1}, "the": {"_count": 1}, "dance": {"_count": 1}, "worship": {"_count": 1}, "do": {"_count": 1}, "see": {"_count": 1}, "attend": {"_count": 1}, "leave": {"_count": 1}, "give": {"_count": 2}, "Apparate": {"_count": 1}, "borrow": {"_count": 1}}, "George": {"_count": 5, "": {"_count": 5}}, "you": {"_count": 16, "to": {"_count": 9}, "whether": {"_count": 1}, "said": {"_count": 1}, "what": {"_count": 2}, "who": {"_count": 1}, "must": {"_count": 1}, "sooner": {"_count": 1}}, "Ginny": {"_count": 15, "": {"_count": 5}, "who": {"_count": 2}, "quietly": {"_count": 1}, "looking": {"_count": 2}, "her": {"_count": 1}, "vaguely": {"_count": 1}, "scornfully": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 1}}, "no": {"_count": 1, "questions": {"_count": 1}}, "tripping": {"_count": 2, "down": {"_count": 1}, "on": {"_count": 1}}, "your": {"_count": 1, "opinion": {"_count": 1}}, "scratching": {"_count": 1, "Fangs": {"_count": 1}}, "Flint": {"_count": 1, "and": {"_count": 1}}, "Wood": {"_count": 1, "": {"_count": 1}}, "curiously": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "breathlessly": {"_count": 3, "": {"_count": 2}, "from": {"_count": 1}}, "them": {"_count": 11, "sitting": {"_count": 1}, "Password": {"_count": 1}, "quietly": {"_count": 1}, "after": {"_count": 1}, "unhappily": {"_count": 1}, "to": {"_count": 3}, "coldly": {"_count": 1}, "": {"_count": 2}}, "dully": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 40, "and": {"_count": 1}, "if": {"_count": 2}, "not": {"_count": 1}, "": {"_count": 11}, "grinning": {"_count": 1}, "how": {"_count": 1}, "to": {"_count": 3}, "hastily": {"_count": 1}, "astonished": {"_count": 1}, "straightening": {"_count": 1}, "what": {"_count": 1}, "while": {"_count": 1}, "quill": {"_count": 1}, "tone": {"_count": 1}, "quietly": {"_count": 1}, "out": {"_count": 2}, "pulling": {"_count": 1}, "voice": {"_count": 1}, "pointedly": {"_count": 1}, "frowning": {"_count": 1}, "thickly": {"_count": 1}, "slightly": {"_count": 1}, "soupspoon": {"_count": 1}, "partly": {"_count": 1}, "pushing": {"_count": 1}, "the": {"_count": 1}}, "Myrtle": {"_count": 1, "then": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "slowly": {"_count": 3, "": {"_count": 3}}, "not": {"_count": 1, "to": {"_count": 1}}, "Dad": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "Fred": {"_count": 14, "as": {"_count": 1}, "": {"_count": 7}, "looking": {"_count": 3}, "pulling": {"_count": 1}, "indicating": {"_count": 1}, "squinting": {"_count": 1}}, "again": {"_count": 4, "in": {"_count": 1}, "looking": {"_count": 1}, "to": {"_count": 1}, "Where": {"_count": 1}}, "awkwardly": {"_count": 2, "nodding": {"_count": 1}, "": {"_count": 1}}, "nervously": {"_count": 2, "": {"_count": 2}}, "Lupin": {"_count": 5, "": {"_count": 3}, "tensely": {"_count": 1}, "as": {"_count": 1}}, "timidly": {"_count": 1, "as": {"_count": 1}}, "Snape": {"_count": 10, "": {"_count": 4}, "coolly": {"_count": 1}, "sharply": {"_count": 1}, "to": {"_count": 1}, "does": {"_count": 1}, "his": {"_count": 1}, "quite": {"_count": 1}}, "us": {"_count": 3, "a": {"_count": 1}, "to": {"_count": 2}}, "frowning": {"_count": 1, "slightly": {"_count": 1}}, "watching": {"_count": 1, "her": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "Potter": {"_count": 1, "to": {"_count": 1}}, "fiercely": {"_count": 1, "sitting": {"_count": 1}}, "Black": {"_count": 1, "thunderstruck": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "anxiously": {"_count": 2, "": {"_count": 2}}, "startled": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 5, "Weasley": {"_count": 5}}, "Malfoy": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "McGonagall": {"_count": 1, "how": {"_count": 1}}, "in": {"_count": 7, "a": {"_count": 5}, "amazement": {"_count": 1}, "astonishment": {"_count": 1}}, "calmly": {"_count": 1, "": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "that": {"_count": 2, "if": {"_count": 1}, "to": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "beaming": {"_count": 1, "still": {"_count": 1}}, "after": {"_count": 2, "she": {"_count": 1}, "a": {"_count": 1}}, "kindly": {"_count": 1, "": {"_count": 1}}, "tentatively": {"_count": 4, "": {"_count": 3}, "her": {"_count": 1}}, "Cho": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "sleepily": {"_count": 1, "": {"_count": 1}}, "mournfully": {"_count": 1, "as": {"_count": 1}}, "Professor": {"_count": 12, "McGonagall": {"_count": 5}, "Umbridge": {"_count": 3}, "Flitwick": {"_count": 1}, "should": {"_count": 1}, "Slughorn": {"_count": 2}}, "quietly": {"_count": 9, "": {"_count": 7}, "still": {"_count": 1}, "and": {"_count": 1}}, "without": {"_count": 2, "preamble": {"_count": 1}, "caring": {"_count": 1}}, "shakily": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "last": {"_count": 2}}, "more": {"_count": 2, "urgently": {"_count": 1}, "money": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 3}}, "his": {"_count": 8, "grin": {"_count": 1}, "opinion": {"_count": 1}, "voice": {"_count": 1}, "friend": {"_count": 1}, "black": {"_count": 1}, "mind": {"_count": 1}, "headmaster": {"_count": 1}, "parents": {"_count": 1}}, "Mrs": {"_count": 6, "Figg": {"_count": 1}, "Weasley": {"_count": 4}, "Cole": {"_count": 1}}, "MadEye": {"_count": 2, "interestedly": {"_count": 1}, "where": {"_count": 1}}, "hopefully": {"_count": 2, "": {"_count": 2}}, "Moody": {"_count": 1, "": {"_count": 1}}, "apprehensively": {"_count": 3, "but": {"_count": 1}, "": {"_count": 2}}, "but": {"_count": 3, "Lupin": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}}, "still": {"_count": 2, "trying": {"_count": 1}, "more": {"_count": 1}}, "bewildered": {"_count": 1, "as": {"_count": 1}}, "Sirius": {"_count": 3, "": {"_count": 1}, "aggressively": {"_count": 1}, "as": {"_count": 1}}, "perplexedly": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "swiftly": {"_count": 1, "": {"_count": 1}}, "surprised": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "Fudge": {"_count": 1, "icily": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "jumping": {"_count": 1, "down": {"_count": 1}}, "thumping": {"_count": 1, "Hermione": {"_count": 1}}, "shoving": {"_count": 1, "on": {"_count": 1}}, "Luna": {"_count": 6, "eagerly": {"_count": 1}, "who": {"_count": 1}, "sympathetically": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}}, "rather": {"_count": 1, "more": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "wrenching": {"_count": 1, "open": {"_count": 1}}, "Neville": {"_count": 7, "looking": {"_count": 2}, "nervously": {"_count": 1}, "": {"_count": 3}, "who": {"_count": 1}}, "Umbridge": {"_count": 6, "": {"_count": 2}, "cutting": {"_count": 1}, "impatiently": {"_count": 1}, "sharply": {"_count": 1}, "with": {"_count": 1}}, "Parvati": {"_count": 3, "timidly": {"_count": 1}, "smirking": {"_count": 1}, "wideeyed": {"_count": 1}}, "Dean": {"_count": 3, "from": {"_count": 1}, "eagerly": {"_count": 1}, "": {"_count": 1}}, "peering": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "himself": {"_count": 2, "": {"_count": 1}, "walking": {"_count": 1}}, "angrily": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "out": {"_count": 1, "Cho": {"_count": 1}}, "abruptly": {"_count": 4, "": {"_count": 3}, "as": {"_count": 1}}, "eyeing": {"_count": 2, "Snape": {"_count": 1}, "Harry": {"_count": 1}}, "unsure": {"_count": 1, "whether": {"_count": 1}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "it": {"_count": 2, "languidly": {"_count": 1}, "Severus": {"_count": 1}}, "grabbing": {"_count": 1, "the": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 1}, "from": {"_count": 1}}, "Whats": {"_count": 1, "he": {"_count": 1}}, "ourselves": {"_count": 1, "of": {"_count": 1}}, "curtly": {"_count": 1, "without": {"_count": 1}}, "miserably": {"_count": 1, "": {"_count": 1}}, "Angelina": {"_count": 1, "Johnson": {"_count": 1}}, "interestedly": {"_count": 1, "": {"_count": 1}}, "sounding": {"_count": 1, "unnerved": {"_count": 1}}, "Kreacher": {"_count": 2, "if": {"_count": 1}, "to": {"_count": 1}}, "myself": {"_count": 1, "why": {"_count": 1}}, "So": {"_count": 2, "has": {"_count": 1}, "if": {"_count": 1}}, "striding": {"_count": 1, "over": {"_count": 1}}, "Bella": {"_count": 1, "in": {"_count": 1}}, "settling": {"_count": 1, "himself": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "aghast": {"_count": 1, "as": {"_count": 1}}, "Slughorn": {"_count": 5, "at": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 1}, "about": {"_count": 1}}, "something": {"_count": 1, "else": {"_count": 1}}, "happily": {"_count": 1, "as": {"_count": 1}}, "eventually": {"_count": 2, "holding": {"_count": 1}, "": {"_count": 1}}, "Bill": {"_count": 3, "who": {"_count": 1}, "": {"_count": 2}}, "pausing": {"_count": 1, "beside": {"_count": 1}}, "twice": {"_count": 1, "but": {"_count": 1}}, "Zabini": {"_count": 1, "scathingly": {"_count": 1}}, "once": {"_count": 1, "they": {"_count": 1}}, "Michael": {"_count": 1, "Corner": {"_count": 1}}, "suddenly": {"_count": 1, "aggressive": {"_count": 1}}, "ignoring": {"_count": 2, "Rons": {"_count": 1}, "the": {"_count": 1}}, "Borgin": {"_count": 1, "about": {"_count": 1}}, "disregarding": {"_count": 1, "a": {"_count": 1}}, "Riddle": {"_count": 1, "looking": {"_count": 1}}, "Was": {"_count": 1, "my": {"_count": 1}}, "smirking": {"_count": 1, "": {"_count": 1}}, "Loony": {"_count": 1, "to": {"_count": 1}}, "McLaggen": {"_count": 1, "forcing": {"_count": 1}}, "through": {"_count": 1, "gritted": {"_count": 1}}, "whether": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "ter": {"_count": 1, "look": {"_count": 1}}, "Filch": {"_count": 1, "obnoxiously": {"_count": 1}}, "this": {"_count": 1, "question": {"_count": 1}}, "batting": {"_count": 1, "her": {"_count": 1}}, "Sir": {"_count": 1, "is": {"_count": 1}}, "How": {"_count": 1, "come": {"_count": 1}}, "Voldemort": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "stroking": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "There": {"_count": 1, "are": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "Hedwig": {"_count": 1, "who": {"_count": 1}}, "Kingsley": {"_count": 1, "": {"_count": 1}}, "turning": {"_count": 2, "to": {"_count": 1}, "his": {"_count": 1}}, "close": {"_count": 1, "enough": {"_count": 1}}, "limping": {"_count": 1, "back": {"_count": 1}}, "following": {"_count": 1, "Ron": {"_count": 1}}, "regarding": {"_count": 1, "Hermione": {"_count": 1}}, "Scrimgeour": {"_count": 4, "": {"_count": 3}, "ignoring": {"_count": 1}}, "suspiciously": {"_count": 2, "": {"_count": 2}}, "brightly": {"_count": 1, "": {"_count": 1}}, "Krum": {"_count": 3, "momentarily": {"_count": 1}, "": {"_count": 1}, "suspiciously": {"_count": 1}}, "Muriel": {"_count": 1, "": {"_count": 1}}, "Bathilda": {"_count": 1, "Bagshot": {"_count": 1}}, "advancing": {"_count": 1, "on": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "remembering": {"_count": 1, "how": {"_count": 1}}, "Mundungus": {"_count": 1, "": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "Ted": {"_count": 2, "": {"_count": 1}, "quickly": {"_count": 1}}, "Dirk": {"_count": 2, "": {"_count": 2}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "from": {"_count": 1, "me": {"_count": 1}}, "so": {"_count": 1, "surprised": {"_count": 1}}, "incredulously": {"_count": 1, "": {"_count": 1}}, "stiffly": {"_count": 1, "Mr": {"_count": 1}}, "coldly": {"_count": 1, "his": {"_count": 1}}, "Lee": {"_count": 3, "": {"_count": 3}}, "softly": {"_count": 1, "his": {"_count": 1}}, "Greyback": {"_count": 1, "": {"_count": 1}}, "Dobby": {"_count": 1, "who": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}, "whispered": {"_count": 1, "Ollivander": {"_count": 1}}, "questions": {"_count": 1, "although": {"_count": 1}}, "Travers": {"_count": 1, "": {"_count": 1}}, "walking": {"_count": 1, "across": {"_count": 1}}, "weakly": {"_count": 1, "and": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "Albus": {"_count": 1, "anxiously": {"_count": 1}}, "Teddy": {"_count": 1, "what": {"_count": 1}}}, "My": {"_count": 306, "dear": {"_count": 37, "Professor": {"_count": 3}, "Friar": {"_count": 1}, "boy": {"_count": 18}, "friends": {"_count": 1}, "man": {"_count": 1}, "young": {"_count": 1}, "": {"_count": 2}, "Madame": {"_count": 2}, "you": {"_count": 1}, "woman": {"_count": 1}, "old": {"_count": 1}, "Prime": {"_count": 2}, "Horace": {"_count": 1}, "Sybill": {"_count": 1}, "Hagrid": {"_count": 1}}, "world": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 3, "mom": {"_count": 1}, "uncle": {"_count": 1}, "Lord": {"_count": 1}}, "fathers": {"_count": 3, "next": {"_count": 1}, "bone": {"_count": 1}, "the": {"_count": 1}}, "aunt": {"_count": 2, "and": {"_count": 1}, "found": {"_count": 1}}, "dad": {"_count": 10, "says": {"_count": 1}, "doesnt": {"_count": 1}, "didnt": {"_count": 1}, "too": {"_count": 1}, "thinks": {"_count": 1}, "said": {"_count": 1}, "used": {"_count": 2}, "died": {"_count": 1}, "left": {"_count": 1}}, "father": {"_count": 17, "told": {"_count": 1}, "lived": {"_count": 1}, "smuggled": {"_count": 1}, "had": {"_count": 3}, "arrived": {"_count": 1}, "led": {"_count": 1}, "answered": {"_count": 1}, "was": {"_count": 3}, "escaped": {"_count": 1}, "put": {"_count": 1}, "says": {"_count": 1}, "used": {"_count": 1}, "died": {"_count": 1}}, "old": {"_count": 1, "House": {"_count": 1}}, "brothers": {"_count": 3, "told": {"_count": 1}, "starting": {"_count": 1}, "Crouchs": {"_count": 1}}, "Great": {"_count": 1, "Uncle": {"_count": 1}}, "mom": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 14, "is": {"_count": 11}, "was": {"_count": 1}, "": {"_count": 2}}, "scar": {"_count": 3, "keeps": {"_count": 1}, "hurt": {"_count": 1}, "hurts": {"_count": 1}}, "mistake": {"_count": 2, "my": {"_count": 1}, "Moody": {"_count": 1}}, "brain": {"_count": 1, "surprises": {"_count": 1}}, "brother": {"_count": 5, "you": {"_count": 1}, "Charlie": {"_count": 1}, "Ron": {"_count": 1}, "Dennis": {"_count": 1}, "Albus": {"_count": 1}}, "youngest": {"_count": 1, "brother": {"_count": 1}}, "perfect": {"_count": 1, "little": {"_count": 1}}, "friend": {"_count": 1, "Ron": {"_count": 1}}, "sister": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "wand": {"_count": 4, "said": {"_count": 1}, "": {"_count": 1}, "acted": {"_count": 1}, "of": {"_count": 1}}, "gran": {"_count": 3, "sent": {"_count": 2}, "says": {"_count": 1}}, "dads": {"_count": 2, "a": {"_count": 1}, "Muggleborn": {"_count": 1}}, "muscles": {"_count": 1, "have": {"_count": 1}}, "wife": {"_count": 5, "used": {"_count": 1}, "thinks": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "should": {"_count": 1}}, "late": {"_count": 1, "lamented": {"_count": 1}}, "cat": {"_count": 3, "": {"_count": 2}, "has": {"_count": 1}}, "office": {"_count": 5, "is": {"_count": 2}, "": {"_count": 3}}, "subject": {"_count": 1, "is": {"_count": 1}}, "life": {"_count": 1, "was": {"_count": 1}}, "friendly": {"_count": 1, "cardcarrying": {"_count": 1}}, "mother": {"_count": 10, "died": {"_count": 2}, "a": {"_count": 1}, "saved": {"_count": 1}, "didnt": {"_count": 1}, "cant": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 2}, "they": {"_count": 1}}, "sons": {"_count": 1, "and": {"_count": 1}}, "books": {"_count": 1, "wouldnt": {"_count": 1}}, "whole": {"_count": 4, "body": {"_count": 1}, "family": {"_count": 2}, "familys": {"_count": 1}}, "diary": {"_count": 1, "": {"_count": 1}}, "common": {"_count": 1, "Muggleborn": {"_count": 1}}, "Head": {"_count": 2, "Boy": {"_count": 1}, "of": {"_count": 1}}, "turn": {"_count": 1, "": {"_count": 1}}, "Lord": {"_count": 47, "": {"_count": 18}, "if": {"_count": 1}, "said": {"_count": 3}, "may": {"_count": 1}, "I": {"_count": 7}, "it": {"_count": 1}, "Liar": {"_count": 2}, "Bertha": {"_count": 1}, "he": {"_count": 1}, "yes": {"_count": 1}, "gasped": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}, "Yaxley": {"_count": 1}, "knows": {"_count": 2}, "there": {"_count": 1}, "let": {"_count": 2}, "The": {"_count": 1}, "Bellatrix": {"_count": 1}}, "dears": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "said": {"_count": 1}}, "boy": {"_count": 1, "you": {"_count": 1}}, "mum": {"_count": 2, "": {"_count": 1}, "told": {"_count": 1}}, "parents": {"_count": 4, "tried": {"_count": 1}, "dont": {"_count": 1}, "are": {"_count": 2}}, "transformations": {"_count": 1, "in": {"_count": 1}}, "body": {"_count": 1, "was": {"_count": 1}}, "God": {"_count": 4, "said": {"_count": 1}, "my": {"_count": 1}, "Diggory": {"_count": 1}, "what": {"_count": 1}}, "friends": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "apologies": {"_count": 3, "Poppy": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}}, "memory": {"_count": 1, "is": {"_count": 1}}, "devotion": {"_count": 1, "to": {"_count": 1}}, "Bulgarian": {"_count": 1, "opposite": {"_count": 1}}, "inner": {"_count": 1, "eye": {"_count": 1}}, "best": {"_count": 1, "to": {"_count": 1}}, "pupils": {"_count": 1, "said": {"_count": 1}}, "steeds": {"_count": 1, "require": {"_count": 1}}, "bag": {"_count": 1, "just": {"_count": 1}}, "second": {"_count": 1, "piece": {"_count": 1}}, "poor": {"_count": 1, "Mr": {"_count": 1}}, "master": {"_count": 9, "isnt": {"_count": 1}, "is": {"_count": 1}, "came": {"_count": 1}, "had": {"_count": 1}, "conceived": {"_count": 1}, "forced": {"_count": 1}, "decided": {"_count": 1}, "guessed": {"_count": 1}, "sent": {"_count": 1}}, "own": {"_count": 1, "brother": {"_count": 1}}, "sweet": {"_count": 2, "": {"_count": 1}, "old": {"_count": 1}}, "true": {"_count": 1, "family": {"_count": 1}}, "curse": {"_count": 1, "was": {"_count": 1}}, "mind": {"_count": 1, "was": {"_count": 1}}, "masters": {"_count": 1, "plan": {"_count": 1}}, "wands": {"_count": 1, "feather": {"_count": 1}}, "mums": {"_count": 3, "got": {"_count": 1}, "full": {"_count": 1}, "one": {"_count": 1}}, "greatuncle": {"_count": 1, "Algie": {"_count": 1}}, "grans": {"_count": 2, "always": {"_count": 1}, "going": {"_count": 1}}, "family": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "greatgreatgrandson": {"_count": 1, "has": {"_count": 1}}, "husband": {"_count": 1, "Arthur": {"_count": 1}}, "son": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "Draco": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "herd": {"_count": 1, "has": {"_count": 1}}, "Inquisitorial": {"_count": 1, "Squad": {"_count": 1}}, "greatest": {"_count": 1, "strength": {"_count": 1}}, "answer": {"_count": 2, "is": {"_count": 1}, "has": {"_count": 1}}, "conscience": {"_count": 1, "was": {"_count": 1}}, "only": {"_count": 2, "defense": {"_count": 1}, "son": {"_count": 1}}, "our": {"_count": 1, "one": {"_count": 1}}, "fault": {"_count": 2, "": {"_count": 2}}, "information": {"_count": 1, "has": {"_count": 1}}, "orders": {"_count": 1, "were": {"_count": 1}}, "grandson": {"_count": 1, "Neville": {"_count": 1}}, "left": {"_count": 1, "if": {"_count": 1}}, "last": {"_count": 1, "bottle": {"_count": 1}}, "mothers": {"_count": 2, "eyes": {"_count": 1}, "diadem": {"_count": 1}}, "grandmother": {"_count": 1, "thinks": {"_count": 1}}, "daughter": {"_count": 1, "pureblooded": {"_count": 1}}, "drink": {"_count": 1, "": {"_count": 1}}, "Life": {"_count": 1, "Amongst": {"_count": 1}}, "Sweetheart": {"_count": 1, "Nice": {"_count": 1}}, "thoughts": {"_count": 1, "precisely": {"_count": 1}}, "knife": {"_count": 1, "": {"_count": 1}}, "options": {"_count": 1, "": {"_count": 1}}, "source": {"_count": 1, "told": {"_count": 1}}, "jobs": {"_count": 1, "ter": {"_count": 1}}, "kind": {"_count": 1, "dont": {"_count": 1}}, "Patronus": {"_count": 1, "is": {"_count": 1}}, "word": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "Severus": {"_count": 1}}, "pocket": {"_count": 1, "": {"_count": 1}}, "birthday": {"_count": 1, "seven": {"_count": 1}}, "children": {"_count": 1, "": {"_count": 1}}, "favorite": {"_count": 1, "kind": {"_count": 1}}, "instructions": {"_count": 1, "to": {"_count": 1}}, "concern": {"_count": 1, "at": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}}, "Ive": {"_count": 801, "never": {"_count": 51, "seen": {"_count": 16}, "asked": {"_count": 1}, "even": {"_count": 4}, "heard": {"_count": 5}, "been": {"_count": 3}, "watched": {"_count": 1}, "flown": {"_count": 1}, "spoken": {"_count": 1}, "yet": {"_count": 1}, "had": {"_count": 2}, "used": {"_count": 1}, "met": {"_count": 1}, "come": {"_count": 1}, "so": {"_count": 1}, "mastered": {"_count": 1}, "quite": {"_count": 1}, "done": {"_count": 2}, "really": {"_count": 2}, "known": {"_count": 1}, "checked": {"_count": 1}, "mixed": {"_count": 1}, "shown": {"_count": 1}, "made": {"_count": 1}, "Stunned": {"_count": 1}}, "come": {"_count": 4, "to": {"_count": 2}, "for": {"_count": 1}, "back": {"_count": 1}}, "been": {"_count": 123, "watching": {"_count": 2}, "asking": {"_count": 1}, "out": {"_count": 1}, "thinking": {"_count": 8}, "": {"_count": 2}, "really": {"_count": 2}, "sitting": {"_count": 1}, "wanting": {"_count": 6}, "more": {"_count": 1}, "telling": {"_count": 4}, "up": {"_count": 2}, "looking": {"_count": 7}, "hearing": {"_count": 3}, "getting": {"_count": 2}, "bitten": {"_count": 1}, "feeling": {"_count": 2}, "doing": {"_count": 5}, "combing": {"_count": 1}, "covering": {"_count": 1}, "alone": {"_count": 1}, "waiting": {"_count": 2}, "living": {"_count": 3}, "using": {"_count": 2}, "turning": {"_count": 1}, "so": {"_count": 1}, "putting": {"_count": 2}, "researching": {"_count": 2}, "keeping": {"_count": 1}, "trying": {"_count": 11}, "promoted": {"_count": 1}, "working": {"_count": 2}, "stealing": {"_count": 1}, "a": {"_count": 2}, "checking": {"_count": 2}, "flicking": {"_count": 1}, "able": {"_count": 2}, "stuck": {"_count": 1}, "meaning": {"_count": 2}, "made": {"_count": 1}, "wondering": {"_count": 4}, "sent": {"_count": 1}, "suspecting": {"_count": 1}, "saying": {"_count": 1}, "given": {"_count": 1}, "there": {"_count": 1}, "away": {"_count": 1}, "dreaming": {"_count": 1}, "levitating": {"_count": 1}, "Youve": {"_count": 1}, "having": {"_count": 1}, "writing": {"_count": 2}, "on": {"_count": 1}, "told": {"_count": 2}, "offered": {"_count": 1}, "underground": {"_count": 1}, "right": {"_count": 1}, "stupid": {"_count": 1}, "better": {"_count": 1}, "hoping": {"_count": 1}, "packing": {"_count": 1}, "practicing": {"_count": 1}, "wearing": {"_count": 1}, "straight": {"_count": 1}, "seeing": {"_count": 1}}, "written": {"_count": 2, "them": {"_count": 1}, "for": {"_count": 1}}, "got": {"_count": 208, "him": {"_count": 1}, "yeh": {"_count": 2}, "a": {"_count": 41}, "Bills": {"_count": 1}, "loads": {"_count": 5}, "about": {"_count": 3}, "Morgana": {"_count": 1}, "it": {"_count": 9}, "the": {"_count": 14}, "some": {"_count": 3}, "to": {"_count": 55}, "well": {"_count": 1}, "friends": {"_count": 1}, "news": {"_count": 2}, "with": {"_count": 1}, "here": {"_count": 1}, "this": {"_count": 2}, "paint": {"_count": 1}, "her": {"_count": 2}, "something": {"_count": 5}, "Colonel": {"_count": 1}, "is": {"_count": 1}, "Scabbers": {"_count": 1}, "no": {"_count": 5}, "all": {"_count": 4}, "photos": {"_count": 1}, "them": {"_count": 2}, "his": {"_count": 2}, "two": {"_count": 1}, "an": {"_count": 2}, "one": {"_count": 4}, "you": {"_count": 5}, "em": {"_count": 1}, "my": {"_count": 2}, "till": {"_count": 1}, "people": {"_count": 1}, "for": {"_count": 1}, "permission": {"_count": 1}, "really": {"_count": 1}, "enough": {"_count": 2}, "any": {"_count": 1}, "Arithmancy": {"_count": 1}, "Fred": {"_count": 1}, "that": {"_count": 1}, "McLaggen": {"_count": 1}, "er": {"_count": 1}, "Firenze": {"_count": 1}, "other": {"_count": 1}, "butterbeer": {"_count": 1}, "wine": {"_count": 1}, "backup": {"_count": 1}, "things": {"_count": 1}, "nothing": {"_count": 1}, "smaller": {"_count": 1}, "time": {"_count": 1}, "clothes": {"_count": 1}, "so": {"_count": 1}, "gold": {"_count": 1}}, "finished": {"_count": 1, "": {"_count": 1}}, "already": {"_count": 20, "got": {"_count": 6}, "caught": {"_count": 1}, "taken": {"_count": 1}, "had": {"_count": 1}, "finished": {"_count": 1}, "heard": {"_count": 1}, "said": {"_count": 1}, "told": {"_count": 5}, "read": {"_count": 1}, "agreed": {"_count": 1}, "dug": {"_count": 1}}, "read": {"_count": 11, "those": {"_count": 1}, "all": {"_count": 2}, "his": {"_count": 1}, "about": {"_count": 3}, "its": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}}, "seen": {"_count": 22, "you": {"_count": 3}, "those": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 3}, "yeh": {"_count": 1}, "them": {"_count": 3}, "in": {"_count": 1}, "this": {"_count": 1}, "today": {"_count": 1}, "him": {"_count": 2}, "her": {"_count": 1}, "noses": {"_count": 1}, "that": {"_count": 1}, "my": {"_count": 1}, "what": {"_count": 1}}, "ggot": {"_count": 1, "to": {"_count": 1}}, "also": {"_count": 2, "got": {"_count": 1}, "modified": {"_count": 1}}, "heard": {"_count": 25, "of": {"_count": 5}, "Ive": {"_count": 1}, "Snape": {"_count": 1}, "Dad": {"_count": 2}, "youve": {"_count": 1}, "you": {"_count": 2}, "them": {"_count": 1}, "enough": {"_count": 1}, "hes": {"_count": 1}, "": {"_count": 1}, "since": {"_count": 1}, "its": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "loads": {"_count": 1}, "rumors": {"_count": 1}, "said": {"_count": 1}, "stuff": {"_count": 1}, "yeah": {"_count": 1}}, "still": {"_count": 5, "got": {"_count": 5}}, "ever": {"_count": 22, "sold": {"_count": 1}, "met": {"_count": 5}, "been": {"_count": 1}, "seen": {"_count": 8}, "done": {"_count": 1}, "heard": {"_count": 3}, "felt": {"_count": 1}, "known": {"_count": 1}, "read": {"_count": 1}}, "lost": {"_count": 7, "my": {"_count": 3}, "him": {"_count": 1}, "Your": {"_count": 1}, "the": {"_count": 1}, "most": {"_count": 1}}, "tried": {"_count": 3, "a": {"_count": 1}, "to": {"_count": 1}, "everything": {"_count": 1}}, "learned": {"_count": 6, "all": {"_count": 1}, "that": {"_count": 1}, "more": {"_count": 1}, "not": {"_count": 1}, "is": {"_count": 1}, "a": {"_count": 1}}, "just": {"_count": 45, "been": {"_count": 11}, "thought": {"_count": 3}, "got": {"_count": 4}, "remembered": {"_count": 3}, "seen": {"_count": 6}, "understood": {"_count": 1}, "taken": {"_count": 1}, "met": {"_count": 1}, "found": {"_count": 2}, "finished": {"_count": 1}, "realized": {"_count": 3}, "washed": {"_count": 1}, "noticed": {"_count": 1}, "sent": {"_count": 1}, "told": {"_count": 1}, "recognized": {"_count": 1}, "said": {"_count": 1}, "escaped": {"_count": 1}, "left": {"_count": 1}, "had": {"_count": 1}}, "introduced": {"_count": 1, "myself": {"_count": 1}}, "found": {"_count": 11, "you": {"_count": 1}, "him": {"_count": 3}, "Flamel": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 3}, "a": {"_count": 1}, "it": {"_count": 1}}, "told": {"_count": 27, "yeh": {"_count": 2}, "her": {"_count": 3}, "the": {"_count": 2}, "Mr": {"_count": 1}, "him": {"_count": 2}, "you": {"_count": 14}, "them": {"_count": 2}, "thats": {"_count": 1}}, "forgotten": {"_count": 2, "someone": {"_count": 1}, "Hedwig": {"_count": 1}}, "bin": {"_count": 13, "doin": {"_count": 1}, "growin": {"_count": 1}, "givin": {"_count": 1}, "expectin": {"_count": 1}, "behavin": {"_count": 1}, "an": {"_count": 1}, "eh": {"_count": 1}, "keepin": {"_count": 1}, "bringin": {"_count": 1}, "savin": {"_count": 1}, "tryin": {"_count": 1}, "thinkin": {"_count": 1}, "yeh": {"_count": 1}}, "decided": {"_count": 5, "to": {"_count": 3}, "there": {"_count": 1}, "I": {"_count": 1}}, "packed": {"_count": 2, "his": {"_count": 1}, "my": {"_count": 1}}, "jus": {"_count": 2, "bin": {"_count": 2}}, "only": {"_count": 8, "just": {"_count": 3}, "got": {"_count": 2}, "ever": {"_count": 2}, "done": {"_count": 1}}, "won": {"_count": 1, "the": {"_count": 1}}, "rather": {"_count": 1, "lost": {"_count": 1}}, "met": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "asked": {"_count": 2, "you": {"_count": 1}, "Dumbledore": {"_count": 1}}, "done": {"_count": 16, "in": {"_count": 1}, "everything": {"_count": 1}, "with": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 4}, "": {"_count": 3}, "more": {"_count": 1}, "all": {"_count": 1}, "done": {"_count": 1}, "to": {"_count": 1}, "what": {"_count": 1}}, "lived": {"_count": 1, "you": {"_count": 1}}, "had": {"_count": 30, "it": {"_count": 2}, "loads": {"_count": 1}, "enough": {"_count": 6}, "a": {"_count": 7}, "an": {"_count": 2}, "words": {"_count": 1}, "more": {"_count": 2}, "to": {"_count": 2}, "worse": {"_count": 1}, "Quidditch": {"_count": 1}, "access": {"_count": 2}, "the": {"_count": 1}, "since": {"_count": 1}, "hundreds": {"_count": 1}}, "used": {"_count": 2, "countless": {"_count": 1}, "it": {"_count": 1}}, "filled": {"_count": 1, "these": {"_count": 1}}, "noticed": {"_count": 2, "him": {"_count": 1}, "said": {"_count": 1}}, "waited": {"_count": 3, "a": {"_count": 1}, "too": {"_count": 1}, "twelve": {"_count": 1}}, "always": {"_count": 8, "been": {"_count": 1}, "thought": {"_count": 3}, "wanted": {"_count": 3}, "loved": {"_count": 1}}, "looked": {"_count": 3, "forward": {"_count": 1}, "it": {"_count": 1}, "up": {"_count": 1}}, "bbeen": {"_count": 2, "writing": {"_count": 1}, "here": {"_count": 1}}, "rewritten": {"_count": 1, "my": {"_count": 1}}, "made": {"_count": 6, "you": {"_count": 1}, "things": {"_count": 1}, "my": {"_count": 2}, "her": {"_count": 1}, "excuses": {"_count": 1}}, "fixed": {"_count": 3, "it": {"_count": 2}, "your": {"_count": 1}}, "even": {"_count": 1, "met": {"_count": 1}}, "thought": {"_count": 4, "the": {"_count": 1}, "about": {"_count": 1}, "it": {"_count": 1}, "when": {"_count": 1}}, "not": {"_count": 1, "bin": {"_count": 1}}, "booked": {"_count": 1, "two": {"_count": 1}}, "spent": {"_count": 1, "ages": {"_count": 1}}, "handed": {"_count": 1, "it": {"_count": 1}}, "offered": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "killed": {"_count": 2, "about": {"_count": 1}, "you": {"_count": 1}}, "invented": {"_count": 1, "a": {"_count": 1}}, "left": {"_count": 2, "young": {"_count": 1}, "a": {"_count": 1}}, "broken": {"_count": 1, "into": {"_count": 1}}, "gone": {"_count": 2, "mad": {"_count": 1}, "away": {"_count": 1}}, "promised": {"_count": 1, "to": {"_count": 1}}, "Ive": {"_count": 2, "never": {"_count": 1}, "come": {"_count": 1}}, "no": {"_count": 6, "idea": {"_count": 5}, "use": {"_count": 1}}, "taken": {"_count": 3, "a": {"_count": 2}, "out": {"_count": 1}}, "wondered": {"_count": 1, "why": {"_count": 1}}, "buried": {"_count": 1, "some": {"_count": 1}}, "given": {"_count": 4, "you": {"_count": 1}, "my": {"_count": 1}, "him": {"_count": 1}, "up": {"_count": 1}}, "kept": {"_count": 1, "quiet": {"_count": 1}}, "put": {"_count": 2, "an": {"_count": 1}, "a": {"_count": 1}}, "ggone": {"_count": 1, "blind": {"_count": 1}}, "changed": {"_count": 3, "my": {"_count": 3}}, "really": {"_count": 2, "got": {"_count": 1}, "no": {"_count": 1}}, "tripped": {"_count": 1, "over": {"_count": 1}}, "ironed": {"_count": 1, "your": {"_count": 1}}, "bbbeen": {"_count": 1, "up": {"_count": 1}}, "definitely": {"_count": 1, "done": {"_count": 1}}, "caused": {"_count": 1, "too": {"_count": 1}}, "sent": {"_count": 2, "them": {"_count": 1}, "a": {"_count": 1}}, "supported": {"_count": 1, "them": {"_count": 1}}, "said": {"_count": 6, "I": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 1}, "all": {"_count": 2}}, "spoken": {"_count": 1, "to": {"_count": 1}}, "double": {"_count": 1, "and": {"_count": 1}}, "sworn": {"_count": 1, "to": {"_count": 1}}, "become": {"_count": 1, "accustomed": {"_count": 1}}, "whos": {"_count": 1, "said": {"_count": 1}}, "gots": {"_count": 1, "much": {"_count": 1}}, "warned": {"_count": 1, "you": {"_count": 1}}, "dreamed": {"_count": 1, "about": {"_count": 1}}, "brought": {"_count": 2, "some": {"_count": 1}, "and": {"_count": 1}}, "chosen": {"_count": 2, "Dean": {"_count": 1}, "mine": {"_count": 1}}, "listened": {"_count": 1, "already": {"_count": 1}}, "failed": {"_count": 1, "everything": {"_count": 1}}, "watched": {"_count": 1, "you": {"_count": 1}}, "prepared": {"_count": 1, "a": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "toldjer": {"_count": 1, "Id": {"_count": 1}}, "checked": {"_count": 1, "": {"_count": 1}}, "cast": {"_count": 1, "a": {"_count": 1}}, "Stunned": {"_count": 1, "her": {"_count": 1}}, "cleaned": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "worked": {"_count": 1, "for": {"_count": 1}}, "known": {"_count": 1, "it": {"_count": 1}}}, "sit": {"_count": 131, "so": {"_count": 1, "stiffly": {"_count": 1}}, "on": {"_count": 10, "the": {"_count": 6}, "this": {"_count": 1}, "Crookshanks": {"_count": 1}, "a": {"_count": 2}}, "down": {"_count": 55, "at": {"_count": 2}, "": {"_count": 21}, "by": {"_count": 1}, "on": {"_count": 4}, "There": {"_count": 1}, "Not": {"_count": 1}, "and": {"_count": 2}, "again": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "then": {"_count": 1}, "next": {"_count": 1}, "shall": {"_count": 1}, "opposite": {"_count": 1}, "have": {"_count": 1}, "she": {"_count": 1}, "all": {"_count": 1}, "said": {"_count": 1}, "sit": {"_count": 1}, "Id": {"_count": 1}, "in": {"_count": 1}, "too": {"_count": 1}, "Ill": {"_count": 1}, "calmly": {"_count": 1}, "Minister": {"_count": 1}, "But": {"_count": 1}, "Harry": {"_count": 1}, "Fred": {"_count": 1}, "somewhere": {"_count": 1}, "upon": {"_count": 1}}, "next": {"_count": 4, "to": {"_count": 4}}, "and": {"_count": 1, "watch": {"_count": 1}}, "with": {"_count": 6, "Harry": {"_count": 1}, "us": {"_count": 1}, "them": {"_count": 2}, "Dean": {"_count": 1}, "her": {"_count": 1}}, "in": {"_count": 8, "and": {"_count": 1}, "the": {"_count": 4}, "": {"_count": 1}, "silence": {"_count": 1}, "your": {"_count": 1}}, "up": {"_count": 8, "but": {"_count": 2}, "here": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 1}}, "there": {"_count": 8, "any": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "invisible": {"_count": 1}, "grinning": {"_count": 1}, "acting": {"_count": 1}, "and": {"_count": 2}}, "here": {"_count": 6, "and": {"_count": 3}, "undisturbed": {"_count": 1}, "all": {"_count": 1}, "beneath": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "muttering": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 2, "here": {"_count": 2}}, "for": {"_count": 1, "two": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "home": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "while": {"_count": 1, "everyone": {"_count": 1}}, "quietly": {"_count": 1, "for": {"_count": 1}}, "still": {"_count": 1, "He": {"_count": 1}}, "tight": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 2, "examination": {"_count": 1}, "theory": {"_count": 1}}, "rather": {"_count": 1, "like": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "crouched": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "beside": {"_count": 2, "number": {"_count": 1}, "Michael": {"_count": 1}}, "alone": {"_count": 1, "in": {"_count": 1}}}, "Youd": {"_count": 64, "be": {"_count": 5, "stiff": {"_count": 1}, "surprised": {"_count": 3}, "a": {"_count": 1}}, "think": {"_count": 8, "theyd": {"_count": 3}, "we": {"_count": 1}, "I": {"_count": 1}, "a": {"_count": 1}, "people": {"_count": 1}, "if": {"_count": 1}}, "like": {"_count": 2, "one": {"_count": 1}, "it": {"_count": 1}}, "better": {"_count": 37, "hurry": {"_count": 4}, "get": {"_count": 15}, "open": {"_count": 1}, "hope": {"_count": 2}, "go": {"_count": 3}, "take": {"_count": 3}, "be": {"_count": 2}, "hold": {"_count": 1}, "put": {"_count": 3}, "stop": {"_count": 1}, "stay": {"_count": 1}, "come": {"_count": 1}}, "never": {"_count": 1, "know": {"_count": 1}}, "have": {"_count": 5, "gone": {"_count": 1}, "thought": {"_count": 2}, "died": {"_count": 1}, "to": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "get": {"_count": 1, "expelled": {"_count": 1}}, "need": {"_count": 2, "more": {"_count": 1}, "top": {"_count": 1}}, "do": {"_count": 1, "better": {"_count": 1}}, "cancel": {"_count": 1, "out": {"_count": 1}}}, "stiff": {"_count": 24, "if": {"_count": 1, "youd": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 3}}, "and": {"_count": 5, "frozen": {"_count": 1}, "swollen": {"_count": 1}, "cold": {"_count": 1}, "painful": {"_count": 1}, "solemn": {"_count": 1}}, "cat": {"_count": 1, "hanging": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "arms": {"_count": 1, "rising": {"_count": 1}}, "but": {"_count": 1, "pleased": {"_count": 1}}, "leg": {"_count": 1, "and": {"_count": 1}}, "upright": {"_count": 1, "elderly": {"_count": 1}}, "with": {"_count": 2, "excitement": {"_count": 1}, "emotion": {"_count": 1}}, "ruff": {"_count": 1, "at": {"_count": 1}}, "turban": {"_count": 1, "of": {"_count": 1}}, "nod": {"_count": 2, "her": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}}, "brick": {"_count": 22, "wall": {"_count": 4, "all": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "erupted": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "red": {"_count": 3, "": {"_count": 3}}, "from": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "remark": {"_count": 1}}, "fireplace": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "color": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "had": {"_count": 2, "dropped": {"_count": 1}, "slid": {"_count": 1}}, "department": {"_count": 1, "store": {"_count": 1}}, "houses": {"_count": 2, "their": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}}, "All": {"_count": 411, "day": {"_count": 2, "": {"_count": 1}, "long": {"_count": 1}}, "this": {"_count": 7, "You": {"_count": 1}, "year": {"_count": 1}, "time": {"_count": 1}, "press": {"_count": 1}, "new": {"_count": 1}, "snow": {"_count": 1}, "long": {"_count": 1}}, "right": {"_count": 105, "thirtyseven": {"_count": 1}, "then": {"_count": 9}, "Voldemort": {"_count": 1}, "Harry": {"_count": 7}, "well": {"_count": 2}, "Percy": {"_count": 1}, "dear": {"_count": 2}, "keep": {"_count": 1}, "I": {"_count": 3}, "there": {"_count": 3}, "but": {"_count": 2}, "please": {"_count": 1}, "all": {"_count": 13}, "": {"_count": 12}, "said": {"_count": 9}, "if": {"_count": 3}, "he": {"_count": 4}, "Ive": {"_count": 1}, "Im": {"_count": 2}, "the": {"_count": 1}, "go": {"_count": 1}, "Hagrid": {"_count": 2}, "Hermione": {"_count": 1}, "Ill": {"_count": 2}, "Ron": {"_count": 2}, "squirti": {"_count": 1}, "Arthur": {"_count": 1}, "lads": {"_count": 1}, "called": {"_count": 1}, "everyone": {"_count": 1}, "on": {"_count": 1}, "Fudge": {"_count": 1}, "lets": {"_count": 2}, "Snivellus": {"_count": 1}, "Evans": {"_count": 1}, "whispered": {"_count": 1}, "she": {"_count": 1}, "darling": {"_count": 1}, "breathed": {"_count": 1}, "even": {"_count": 1}, "were": {"_count": 1}, "we": {"_count": 1}, "leaders": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "anyone": {"_count": 1, "knows": {"_count": 1}}, "students": {"_count": 4, "should": {"_count": 1}, "are": {"_count": 1}, "will": {"_count": 1}, "to": {"_count": 1}}, "Sizes": {"_count": 1, "Copper": {"_count": 1}}, "yours": {"_count": 1, "smiled": {"_count": 1}}, "Harrys": {"_count": 2, "it": {"_count": 1}, "spellbooks": {"_count": 1}}, "Occasions": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}}, "the": {"_count": 47, "kids": {"_count": 1}, "same": {"_count": 8}, "studying": {"_count": 1}, "other": {"_count": 2}, "copies": {"_count": 1}, "pockets": {"_count": 1}, "time": {"_count": 2}, "best": {"_count": 1}, "villagers": {"_count": 1}, "curtains": {"_count": 2}, "Family": {"_count": 1}, "fourth": {"_count": 1}, "Durmstrang": {"_count": 1}, "champions": {"_count": 2}, "judges": {"_count": 1}, "goodlooking": {"_count": 1}, "clues": {"_count": 1}, "breath": {"_count": 1}, "feelings": {"_count": 1}, "air": {"_count": 1}, "tttime": {"_count": 1}, "while": {"_count": 1}, "facts": {"_count": 1}, "fifth": {"_count": 1}, "windows": {"_count": 1}, "hands": {"_count": 1}, "owls": {"_count": 1}, "details": {"_count": 1}, "subjects": {"_count": 1}, "Heads": {"_count": 1}, "better": {"_count": 1}, "happy": {"_count": 1}, "jobs": {"_count": 1}, "reasons": {"_count": 1}, "old": {"_count": 1}, "others": {"_count": 1}}, "those": {"_count": 13, "people": {"_count": 1}, "raids": {"_count": 1}, "times": {"_count": 4}, "substitutes": {"_count": 1}, "that": {"_count": 1}, "poor": {"_count": 1}, "": {"_count": 1}, "closest": {"_count": 1}, "hints": {"_count": 1}, "visits": {"_count": 1}}, "three": {"_count": 24, "of": {"_count": 21}, "Dursleys": {"_count": 1}, "looked": {"_count": 1}, "glasses": {"_count": 1}}, "you": {"_count": 4, "have": {"_count": 3}, "desire": {"_count": 1}}, "summer": {"_count": 1, "Oh": {"_count": 1}}, "Neville": {"_count": 1, "cared": {"_count": 1}}, "they": {"_count": 5, "really": {"_count": 1}, "could": {"_count": 2}, "needed": {"_count": 1}, "want": {"_count": 1}}, "my": {"_count": 1, "family": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 2}}, "all": {"_count": 1, "three": {"_count": 1}}, "Harry": {"_count": 4, "could": {"_count": 2}, "knew": {"_count": 2}}, "fer": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 9, "got": {"_count": 1}, "ask": {"_count": 1}, "saw": {"_count": 1}, "have": {"_count": 1}, "know": {"_count": 2}, "could": {"_count": 1}, "can": {"_count": 1}, "am": {"_count": 1}}, "he": {"_count": 17, "could": {"_count": 3}, "knew": {"_count": 6}, "did": {"_count": 1}, "had": {"_count": 3}, "and": {"_count": 1}, "felt": {"_count": 1}, "wanted": {"_count": 2}}, "weve": {"_count": 1, "got": {"_count": 1}}, "that": {"_count": 16, "business": {"_count": 1}, "junk": {"_count": 1}, "excitement": {"_count": 1}, "could": {"_count": 2}, "is": {"_count": 1}, "mattered": {"_count": 1}, "would": {"_count": 1}, "unfixed": {"_count": 1}, "day": {"_count": 2}, "disturbed": {"_count": 1}, "had": {"_count": 1}, "appeared": {"_count": 1}, "time": {"_count": 1}, "\u2018right": {"_count": 1}}, "seven": {"_count": 1, "of": {"_count": 1}}, "wed": {"_count": 1, "need": {"_count": 1}}, "melted": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 6, "order": {"_count": 1}, "all": {"_count": 3}, "favor": {"_count": 1}, "good": {"_count": 1}}, "righ": {"_count": 11, "Harry": {"_count": 4}, "you": {"_count": 2}, "": {"_count": 1}, "they": {"_count": 1}, "Grawpy": {"_count": 1}, "come": {"_count": 1}, "Ron": {"_count": 1}}, "his": {"_count": 2, "other": {"_count": 1}, "excitement": {"_count": 1}}, "further": {"_count": 1, "Quidditch": {"_count": 1}}, "teachers": {"_count": 1, "return": {"_count": 1}}, "too": {"_count": 3, "soon": {"_count": 2}, "young": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 1}, "had": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 1}, "I": {"_count": 1}}, "down": {"_count": 1, "ter": {"_count": 1}}, "cats": {"_count": 1, "chase": {"_count": 1}}, "around": {"_count": 8, "them": {"_count": 2}, "him": {"_count": 3}, "Harry": {"_count": 1}, "the": {"_count": 2}}, "well": {"_count": 1, "here": {"_count": 1}}, "searched": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 28, "you": {"_count": 2}, "them": {"_count": 20}, "the": {"_count": 3}, "a": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 2, "did": {"_count": 1}, "needs": {"_count": 1}}, "usual": {"_count": 1, "pursuits": {"_count": 1}}, "five": {"_count": 1, "of": {"_count": 1}}, "unconscious": {"_count": 1, "by": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "Frank": {"_count": 1, "had": {"_count": 1}}, "through": {"_count": 1, "our": {"_count": 1}}, "these": {"_count": 5, "yours": {"_count": 1}, "years": {"_count": 1}, "absences": {"_count": 1}, "scars": {"_count": 1}, "centuries": {"_count": 1}}, "was": {"_count": 7, "quiet": {"_count": 2}, "echoing": {"_count": 1}, "ashes": {"_count": 1}, "silent": {"_count": 1}, "hushed": {"_count": 1}, "well": {"_count": 1}}, "four": {"_count": 5, "of": {"_count": 5}}, "clear": {"_count": 1, "": {"_count": 1}}, "Ye": {"_count": 1, "Faithful": {"_count": 1}}, "dark": {"_count": 1, "Dudley": {"_count": 1}}, "thanks": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 2, "fully": {"_count": 1}, "jumbled": {"_count": 1}}, "proceeds": {"_count": 1, "from": {"_count": 1}}, "eyes": {"_count": 1, "were": {"_count": 1}}, "okay": {"_count": 1, "he": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "teammates": {"_count": 1}}, "we": {"_count": 1, "do": {"_count": 1}}, "Dumbledore": {"_count": 1, "told": {"_count": 1}}, "Student": {"_count": 1, "Organizations": {"_count": 1}}, "been": {"_count": 1, "talking": {"_count": 1}}, "channels": {"_count": 1, "of": {"_count": 1}}, "fifth": {"_count": 1, "years": {"_count": 1}}, "agreed": {"_count": 1, "to": {"_count": 1}}, "six": {"_count": 1, "of": {"_count": 1}}, "exstudents": {"_count": 1, "all": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "sorts": {"_count": 1, "breathed": {"_count": 1}}, "new": {"_count": 1, "wizards": {"_count": 1}}, "thought": {"_count": 1, "of": {"_count": 1}}, "academic": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "quiet": {"_count": 1}}, "lessons": {"_count": 1, "were": {"_count": 1}}, "faces": {"_count": 1, "turned": {"_count": 1}}, "Ill": {"_count": 1, "say": {"_count": 1}}, "done": {"_count": 1, "in": {"_count": 1}}, "Lupins": {"_count": 1, "frustration": {"_count": 1}}, "most": {"_count": 1, "suspicious": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "movements": {"_count": 1, "are": {"_count": 1}}, "Time": {"_count": 1, "he": {"_count": 1}}, "except": {"_count": 1, "": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "goblinmade": {"_count": 1, "objects": {"_count": 1}}}, "dozen": {"_count": 72, "feasts": {"_count": 1, "and": {"_count": 1}}, "eggs": {"_count": 1, "that": {"_count": 1}}, "paces": {"_count": 1, "when": {"_count": 1}}, "bacon": {"_count": 1, "sandwiches": {"_count": 1}}, "times": {"_count": 3, "already": {"_count": 1}, "without": {"_count": 1}, "": {"_count": 1}}, "curious": {"_count": 1, "people": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "them": {"_count": 2}}, "ghost": {"_count": 1, "horses": {"_count": 1}}, "frostcovered": {"_count": 1, "Christmas": {"_count": 1}}, "surlylooking": {"_count": 1, "dwarfs": {"_count": 1}}, "brass": {"_count": 1, "bedsteads": {"_count": 1}}, "Muggles": {"_count": 1, "what": {"_count": 1}}, "large": {"_count": 1, "and": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "Dungbombs": {"_count": 1, "in": {"_count": 1}}, "homebaked": {"_count": 1, "mince": {"_count": 1}}, "rolls": {"_count": 1, "of": {"_count": 1}}, "winged": {"_count": 1, "horses": {"_count": 1}}, "boys": {"_count": 2, "and": {"_count": 1}, "were": {"_count": 1}}, "pairs": {"_count": 1, "of": {"_count": 1}}, "wizards": {"_count": 1, "at": {"_count": 1}}, "or": {"_count": 1, "so": {"_count": 1}}, "people": {"_count": 3, "": {"_count": 2}, "progressing": {"_count": 1}}, "mermen": {"_count": 1, "were": {"_count": 1}}, "chicken": {"_count": 1, "legs": {"_count": 1}}, "house": {"_count": 1, "elves": {"_count": 1}}, "cakes": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "steps": {"_count": 1, "when": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "others": {"_count": 2, "including": {"_count": 1}, "all": {"_count": 1}}, "empty": {"_count": 1, "seats": {"_count": 1}}, "black": {"_count": 1, "figures": {"_count": 1}}, "knitted": {"_count": 1, "hats": {"_count": 1}}, "bottles": {"_count": 1, "came": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "decrees": {"_count": 1, "in": {"_count": 1}}, "hedgehogs": {"_count": 1, "the": {"_count": 1}}, "figures": {"_count": 1, "walking": {"_count": 1}}, "badges": {"_count": 1, "slid": {"_count": 1}}, "doors": {"_count": 1, "here": {"_count": 1}}, "surrounding": {"_count": 1, "them": {"_count": 1}}, "lit": {"_count": 1, "wand": {"_count": 1}}, "cars": {"_count": 1, "into": {"_count": 1}}, "seventh": {"_count": 1, "years": {"_count": 1}}, "goals": {"_count": 1, "most": {"_count": 1}}, "girls": {"_count": 1, "in": {"_count": 1}}, "different": {"_count": 2, "love": {"_count": 1}, "houses": {"_count": 1}}, "shriveled": {"_count": 1, "brown": {"_count": 1}}, "things": {"_count": 1, "There": {"_count": 1}}, "detentions": {"_count": 1, "": {"_count": 1}}, "giant": {"_count": 1, "winged": {"_count": 1}}, "eggcupsized": {"_count": 1, "glasses": {"_count": 1}}, "places": {"_count": 1, "you": {"_count": 1}}, "more": {"_count": 1, "people": {"_count": 1}}, "men": {"_count": 1, "in": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "pamphletmakers": {"_count": 1, "Though": {"_count": 1}}, "were": {"_count": 1, "missing": {"_count": 1}}, "wands": {"_count": 1, "pointing": {"_count": 1}}, "cloaked": {"_count": 1, "and": {"_count": 1}}, "students": {"_count": 1, "remained": {"_count": 1}}}, "feasts": {"_count": 4, "and": {"_count": 1, "parties": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "already": {"_count": 1, "started": {"_count": 1}}, "but": {"_count": 1, "never": {"_count": 1}}}, "parties": {"_count": 11, "on": {"_count": 1, "my": {"_count": 1}}, "an": {"_count": 1, "follow": {"_count": 1}}, "and": {"_count": 1, "friends": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "Ron": {"_count": 1}}, "are": {"_count": 1, "unwise": {"_count": 1}}}, "sniffed": {"_count": 21, "angrily": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "or": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "madly": {"_count": 1, "in": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "loudly": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Harrys": {"_count": 1, "bag": {"_count": 1}}, "enthusiastically": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "slitlike": {"_count": 1}}, "walked": {"_count": 1, "around": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "interestedly": {"_count": 1, "as": {"_count": 1}}, "Ernies": {"_count": 1, "potion": {"_count": 1}}, "Tonks": {"_count": 1, "": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}}, "everyones": {"_count": 29, "celebrating": {"_count": 1, "all": {"_count": 1}}, "saying": {"_count": 1, "": {"_count": 1}}, "attention": {"_count": 3, "was": {"_count": 2}, "its": {"_count": 1}}, "minds": {"_count": 1, "by": {"_count": 1}}, "at": {"_count": 1, "dinner": {"_count": 1}}, "gone": {"_count": 2, "said": {"_count": 1}, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "delight": {"_count": 1, "except": {"_count": 1}}, "heads": {"_count": 1, "turned": {"_count": 1}}, "surprise": {"_count": 1, "and": {"_count": 1}}, "got": {"_count": 1, "it": {"_count": 1}}, "faces": {"_count": 1, "he": {"_count": 1}}, "favorite": {"_count": 1, "champion": {"_count": 1}}, "dying": {"_count": 1, "to": {"_count": 1}}, "plates": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "was": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 2}}, "fine": {"_count": 1, "gasped": {"_count": 1}}, "schoolbooks": {"_count": 1, "": {"_count": 1}}, "relatives": {"_count": 1, "to": {"_count": 1}}, "morale": {"_count": 1, "": {"_count": 1}}, "awfully": {"_count": 1, "hungry": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "meeting": {"_count": 1, "in": {"_count": 1}}, "been": {"_count": 1, "hiding": {"_count": 1}}}, "impatiently": {"_count": 97, "": {"_count": 59, ".": {"_count": 59}}, "and": {"_count": 4, "tell": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "weve": {"_count": 1}}, "but": {"_count": 8, "thats": {"_count": 1}, "come": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "how": {"_count": 1}, "next": {"_count": 1}, "Harry": {"_count": 1}, "jokes": {"_count": 1}}, "as": {"_count": 2, "Harry": {"_count": 1}, "another": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "brushing": {"_count": 1, "Harry": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "lets": {"_count": 1, "say": {"_count": 1}}, "rearranging": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "vanished": {"_count": 1}}, "without": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Mariettas": {"_count": 1}}, "the": {"_count": 1, "dementors": {"_count": 1}}, "moving": {"_count": 1, "around": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "indicating": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "Alicia": {"_count": 1}}, "swinging": {"_count": 1, "herself": {"_count": 1}}, "wincing": {"_count": 1, "as": {"_count": 1}}, "just": {"_count": 1, "take": {"_count": 1}}, "gesturing": {"_count": 1, "at": {"_count": 1}}, "when": {"_count": 1, "Nick": {"_count": 1}}, "not": {"_count": 1, "taking": {"_count": 1}}, "slamming": {"_count": 1, "the": {"_count": 1}}, "clicking": {"_count": 1, "her": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "theyd": {"_count": 119, "be": {"_count": 13, "a": {"_count": 1}, "sucked": {"_count": 1}, "running": {"_count": 1}, "free": {"_count": 1}, "stuck": {"_count": 1}, "able": {"_count": 2}, "even": {"_count": 1}, "together": {"_count": 1}, "very": {"_count": 1}, "quite": {"_count": 1}, "solid": {"_count": 1}, "expecting": {"_count": 1}}, "left": {"_count": 2, "Uncle": {"_count": 1}, "behind": {"_count": 1}}, "never": {"_count": 5, "been": {"_count": 1}, "given": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}, "go": {"_count": 1}}, "try": {"_count": 1, "again": {"_count": 1}}, "come": {"_count": 3, "to": {"_count": 1}, "onto": {"_count": 1}, "": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "have": {"_count": 10, "had": {"_count": 1}, "learned": {"_count": 1}, "ter": {"_count": 1}, "to": {"_count": 1}, "wanted": {"_count": 2}, "thought": {"_count": 1}, "followed": {"_count": 1}, "sent": {"_count": 1}, "more": {"_count": 1}}, "heard": {"_count": 1, "footsteps": {"_count": 1}}, "been": {"_count": 5, "bewitched": {"_count": 1}, "too": {"_count": 1}, "inventing": {"_count": 1}, "shortlisted": {"_count": 1}, "arguing": {"_count": 1}}, "seen": {"_count": 2, "him": {"_count": 1}, "on": {"_count": 1}}, "just": {"_count": 7, "chained": {"_count": 1}, "see": {"_count": 1}, "be": {"_count": 2}, "climbed": {"_count": 1}, "listen": {"_count": 1}, "gone": {"_count": 1}}, "better": {"_count": 1, "not": {"_count": 1}}, "found": {"_count": 2, "nothing": {"_count": 1}, "out": {"_count": 1}}, "stolen": {"_count": 1, "his": {"_count": 1}}, "knock": {"_count": 1, "right": {"_count": 1}}, "gotten": {"_count": 1, "back": {"_count": 1}}, "do": {"_count": 1, "with": {"_count": 1}}, "ever": {"_count": 3, "see": {"_count": 1}, "make": {"_count": 1}, "been": {"_count": 1}}, "thought": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "had": {"_count": 4, "in": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}}, "stepped": {"_count": 1, "out": {"_count": 1}}, "rigged": {"_count": 1, "up": {"_count": 1}}, "ruined": {"_count": 1, "any": {"_count": 1}}, "done": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "lost": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "met": {"_count": 1, "": {"_count": 1}}, "locked": {"_count": 1, "Crabbe": {"_count": 1}}, "accidentally": {"_count": 1, "asked": {"_count": 1}}, "avoided": {"_count": 1, "detention": {"_count": 1}}, "taken": {"_count": 2, "their": {"_count": 1}, "my": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "walked": {"_count": 1, "in": {"_count": 1}}, "overheard": {"_count": 1, "because": {"_count": 1}}, "sent": {"_count": 1, "it": {"_count": 1}}, "finished": {"_count": 1, "": {"_count": 1}}, "use": {"_count": 1, "a": {"_count": 1}}, "changed": {"_count": 2, "the": {"_count": 2}}, "really": {"_count": 1, "gone": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "caught": {"_count": 1, "someone": {"_count": 1}}, "bring": {"_count": 1, "out": {"_count": 1}}, "hurry": {"_count": 1, "up": {"_count": 1}}, "feel": {"_count": 1, "if": {"_count": 1}}, "tell": {"_count": 1, "someone": {"_count": 1}}, "murdered": {"_count": 1, "you": {"_count": 1}}, "forgotten": {"_count": 1, "they": {"_count": 1}}, "lay": {"_count": 1, "off": {"_count": 1}}, "bin": {"_count": 1, "in": {"_count": 1}}, "woken": {"_count": 1, "up": {"_count": 1}}, "explode": {"_count": 1, "": {"_count": 1}}, "lived": {"_count": 1, "life": {"_count": 1}}, "searched": {"_count": 1, "the": {"_count": 1}}, "ve": {"_count": 2, "kicked": {"_count": 1}, "bin": {"_count": 1}}, "stop": {"_count": 1, "singing": {"_count": 1}}, "drag": {"_count": 1, "you": {"_count": 1}}, "normally": {"_count": 1, "take": {"_count": 1}}, "lit": {"_count": 1, "the": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "love": {"_count": 1, "to": {"_count": 1}}, "gone": {"_count": 2, "into": {"_count": 1}, "": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "know": {"_count": 1, "for": {"_count": 1}}, "spent": {"_count": 1, "all": {"_count": 1}}, "find": {"_count": 1, "him": {"_count": 1}}, "chained": {"_count": 1, "up": {"_count": 1}}, "quite": {"_count": 1, "like": {"_count": 1}}}, "careful": {"_count": 80, "but": {"_count": 1, "no": {"_count": 1}}, "to": {"_count": 10, "walk": {"_count": 1}, "let": {"_count": 1}, "keep": {"_count": 2}, "swim": {"_count": 1}, "drink": {"_count": 1}, "tread": {"_count": 1}, "give": {"_count": 1}, "avoid": {"_count": 1}, "phrase": {"_count": 1}}, "not": {"_count": 10, "to": {"_count": 10}}, "with": {"_count": 2, "those": {"_count": 1}, "his": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Ronan": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 2, "Snape": {"_count": 1}, "Ron": {"_count": 1}}, "well": {"_count": 1, "have": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "drawin": {"_count": 1}}, "Weasley": {"_count": 1, "sneered": {"_count": 1}}, "footstep": {"_count": 1, "echoed": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 10}, "!": {"_count": 3}}, "theres": {"_count": 1, "a": {"_count": 1}}, "about": {"_count": 2, "how": {"_count": 2}}, "aim": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "turned": {"_count": 1}}, "and": {"_count": 2, "dont": {"_count": 1}, "not": {"_count": 1}}, "because": {"_count": 1, "doxies": {"_count": 1}}, "hes": {"_count": 1, "been": {"_count": 1}}, "Harry": {"_count": 2, "warned": {"_count": 1}, "theyre": {"_count": 1}}, "what": {"_count": 4, "you": {"_count": 3}, "we": {"_count": 1}}, "instruction": {"_count": 1, "": {"_count": 1}}, "cause": {"_count": 1, "Olympe": {"_count": 1}}, "eye": {"_count": 1, "around": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "when": {"_count": 1, "handling": {"_count": 1}}, "Umbridge": {"_count": 1, "has": {"_count": 1}}, "Blaise": {"_count": 1, "": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "flattery": {"_count": 3, "of": {"_count": 2}, "none": {"_count": 1}}, "or": {"_count": 1, "Dont": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "observation": {"_count": 1, "which": {"_count": 1}}, "scouting": {"_count": 1, "trips": {"_count": 1}}, "they": {"_count": 1, "may": {"_count": 1}}}, "somethings": {"_count": 8, "going": {"_count": 1, "on": {"_count": 1}}, "got": {"_count": 1, "Neville": {"_count": 1}}, "acreeping": {"_count": 1, "around": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "attacked": {"_count": 1, "her": {"_count": 1}}, "coming": {"_count": 1, "": {"_count": 1}}, "gone": {"_count": 1, "wrong": {"_count": 1}}}, "dark": {"_count": 505, "livingroom": {"_count": 1, "window": {"_count": 1}}, "": {"_count": 36, ".": {"_count": 32}, "?": {"_count": 4}}, "cupboard": {"_count": 2, "but": {"_count": 1}, "much": {"_count": 1}}, "in": {"_count": 3, "there": {"_count": 1}, "the": {"_count": 1}, "here": {"_count": 1}}, "hall": {"_count": 2, "toward": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 40, "shabby": {"_count": 1}, "full": {"_count": 1}, "silence": {"_count": 1}, "the": {"_count": 5}, "empty": {"_count": 2}, "deserted": {"_count": 2}, "pulling": {"_count": 1}, "dingy": {"_count": 1}, "sallowskinned": {"_count": 1}, "beady": {"_count": 2}, "Ron": {"_count": 1}, "to": {"_count": 1}, "icy": {"_count": 1}, "broken": {"_count": 1}, "creepy": {"_count": 1}, "overgrown": {"_count": 1}, "difficult": {"_count": 2}, "see": {"_count": 1}, "cold": {"_count": 1}, "cool": {"_count": 1}, "stared": {"_count": 1}, "building": {"_count": 1}, "being": {"_count": 1}, "winding": {"_count": 1}, "twisting": {"_count": 1}, "handsome": {"_count": 1}, "calling": {"_count": 1}, "stormy": {"_count": 1}, "silent": {"_count": 1}, "scattered": {"_count": 1}, "tarry": {"_count": 1}, "Fawkes": {"_count": 1}}, "shop": {"_count": 2, "with": {"_count": 1}, "fronts": {"_count": 1}}, "bottom": {"_count": 1, "but": {"_count": 1}}, "green": {"_count": 4, "hills": {"_count": 1}, "cars": {"_count": 1}, "hair": {"_count": 1}, "robes": {"_count": 1}}, "platform": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "outside": {"_count": 1}}, "on": {"_count": 1, "either": {"_count": 1}}, "tunnel": {"_count": 5, "which": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}}, "eyes": {"_count": 14, "and": {"_count": 1}, "darting": {"_count": 1}, "lingered": {"_count": 1}, "": {"_count": 3}, "glittering": {"_count": 1}, "bored": {"_count": 1}, "were": {"_count": 2}, "a": {"_count": 1}, "high": {"_count": 1}, "causing": {"_count": 1}, "fixed": {"_count": 1}}, "tunnels": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 2, "might": {"_count": 1}, "could": {"_count": 1}}, "stain": {"_count": 2, "on": {"_count": 1}, "was": {"_count": 1}}, "he": {"_count": 3, "didnt": {"_count": 1}, "remembered": {"_count": 1}, "had": {"_count": 1}}, "shapes": {"_count": 4, "of": {"_count": 1}, "emerged": {"_count": 1}, "on": {"_count": 1}, "they": {"_count": 1}}, "red": {"_count": 7, "hair": {"_count": 4}, "plant": {"_count": 1}, "scarves": {"_count": 1}, "velvet": {"_count": 1}}, "passageways": {"_count": 1, "for": {"_count": 1}}, "now": {"_count": 2, "but": {"_count": 1}, "the": {"_count": 1}}, "window": {"_count": 5, "": {"_count": 2}, "Harry": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}}, "cloudy": {"_count": 1, "night": {"_count": 1}}, "corridors": {"_count": 3, "": {"_count": 1}, "these": {"_count": 1}, "all": {"_count": 1}}, "outlines": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 3, "warn": {"_count": 1}, "see": {"_count": 1}, "make": {"_count": 1}}, "grounds": {"_count": 11, "": {"_count": 4}, "in": {"_count": 1}, "as": {"_count": 1}, "sliding": {"_count": 1}, "He": {"_count": 1}, "outside": {"_count": 1}, "toward": {"_count": 1}, "and": {"_count": 1}}, "Fang": {"_count": 1, "at": {"_count": 1}}, "path": {"_count": 3, "but": {"_count": 1}, "deeper": {"_count": 1}, "without": {"_count": 1}}, "trees": {"_count": 10, "": {"_count": 5}, "Fang": {"_count": 1}, "behind": {"_count": 1}, "like": {"_count": 1}, "folded": {"_count": 1}, "a": {"_count": 1}}, "leaves": {"_count": 1, "": {"_count": 1}}, "common": {"_count": 1, "room": {"_count": 1}}, "dormitory": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "they": {"_count": 2, "couldnt": {"_count": 1}, "saw": {"_count": 1}}, "fire": {"_count": 1, "then": {"_count": 1}}, "looks": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "landing": {"_count": 2, "": {"_count": 2}}, "patchwork": {"_count": 1, "of": {"_count": 1}}, "narrow": {"_count": 1, "street": {"_count": 1}}, "horizon": {"_count": 1, "high": {"_count": 1}}, "stone": {"_count": 5, "wall": {"_count": 1}, "tunnel": {"_count": 1}, "dimly": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "greenhouses": {"_count": 1, "then": {"_count": 1}}, "damp": {"_count": 1, "compost": {"_count": 1}}, "sky": {"_count": 5, "and": {"_count": 2}, "from": {"_count": 1}, "here": {"_count": 1}, "beyond": {"_count": 1}}, "ceiling": {"_count": 4, "how": {"_count": 1}, "": {"_count": 3}}, "shadow": {"_count": 4, "beneath": {"_count": 1}, "moved": {"_count": 1}, "that": {"_count": 1}, "around": {"_count": 1}}, "doorway": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "torches": {"_count": 1}}, "mud": {"_count": 1, "bubbling": {"_count": 1}}, "murky": {"_count": 1, "brown": {"_count": 1}}, "entrance": {"_count": 1, "hall": {"_count": 1}}, "as": {"_count": 4, "a": {"_count": 1}, "you": {"_count": 1}, "twilight": {"_count": 1}, "dusk": {"_count": 1}}, "outline": {"_count": 4, "of": {"_count": 4}}, "passage": {"_count": 2, "": {"_count": 1}, "outside": {"_count": 1}}, "Ron": {"_count": 1, "Ron": {"_count": 1}}, "wooden": {"_count": 1, "chairs": {"_count": 1}}, "corridor": {"_count": 11, "where": {"_count": 1}, "": {"_count": 3}, "floor": {"_count": 1}, "Harry": {"_count": 2}, "some": {"_count": 1}, "to": {"_count": 1}, "behind": {"_count": 1}, "in": {"_count": 1}}, "slide": {"_count": 1, "": {"_count": 1}}, "slimy": {"_count": 1, "walls": {"_count": 1}}, "that": {"_count": 3, "they": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}}, "bend": {"_count": 1, "in": {"_count": 1}}, "Chamber": {"_count": 2, "rang": {"_count": 1}, "wall": {"_count": 1}}, "blood": {"_count": 1, "spattered": {"_count": 1}}, "pipe": {"_count": 1, "": {"_count": 1}}, "deserted": {"_count": 2, "corridor": {"_count": 1}, "lane": {"_count": 1}}, "house": {"_count": 1, "was": {"_count": 1}}, "room": {"_count": 6, "past": {"_count": 1}, "whose": {"_count": 1}, "Harry": {"_count": 1}, "thats": {"_count": 1}, "into": {"_count": 1}, "full": {"_count": 1}}, "space": {"_count": 1, "under": {"_count": 1}}, "hints": {"_count": 1, "about": {"_count": 1}}, "quiet": {"_count": 1, "street": {"_count": 1}}, "street": {"_count": 5, "a": {"_count": 1}, "and": {"_count": 1}, "toward": {"_count": 1}, "thronged": {"_count": 1}, "leading": {"_count": 1}}, "Muggle": {"_count": 2, "world": {"_count": 1}, "suits": {"_count": 1}}, "each": {"_count": 1, "night": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "look": {"_count": 5, "and": {"_count": 2}, "": {"_count": 2}, "at": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 2}, "then": {"_count": 1}}, "enclosed": {"_count": 1, "spaces": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "shadows": {"_count": 8, "beneath": {"_count": 2}, "of": {"_count": 2}, "rippled": {"_count": 1}, "under": {"_count": 2}, "again": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "thoughts": {"_count": 1, "about": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "EXPECTO": {"_count": 1, "PATRONUM": {"_count": 1}}, "Harry": {"_count": 3, "Ron": {"_count": 1}, "saw": {"_count": 1}, "we": {"_count": 1}}, "shape": {"_count": 3, "": {"_count": 1}, "ahead": {"_count": 1}, "he": {"_count": 1}}, "sockets": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "arts": {"_count": 1, "he": {"_count": 1}}, "powers": {"_count": 1, "the": {"_count": 1}}, "hospital": {"_count": 1, "wing": {"_count": 1}}, "ward": {"_count": 2, "to": {"_count": 1}, "dissolved": {"_count": 1}}, "figure": {"_count": 4, "was": {"_count": 1}, "hurtled": {"_count": 1}, "fall": {"_count": 1}, "came": {"_count": 1}}, "air": {"_count": 2, "": {"_count": 2}}, "passageway": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}}, "neatly": {"_count": 1, "parted": {"_count": 1}}, "outside": {"_count": 2, "": {"_count": 2}}, "yard": {"_count": 3, "after": {"_count": 1}, "Ginny": {"_count": 1}, "the": {"_count": 1}}, "dank": {"_count": 1, "lane": {"_count": 1}}, "wood": {"_count": 3, "on": {"_count": 1}, "floor": {"_count": 1}, "and": {"_count": 1}}, "brown": {"_count": 1, "eyes": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "ghosts": {"_count": 1, "": {"_count": 1}}, "glass": {"_count": 2, "": {"_count": 2}}, "gray": {"_count": 3, "hair": {"_count": 2}, "steam": {"_count": 1}}, "hair": {"_count": 13, "": {"_count": 1}, "and": {"_count": 5}, "out": {"_count": 2}, "falling": {"_count": 1}, "that": {"_count": 1}, "fell": {"_count": 2}, "was": {"_count": 1}}, "canopy": {"_count": 1, "of": {"_count": 1}}, "London": {"_count": 1, "street": {"_count": 1}}, "skies": {"_count": 1, "": {"_count": 1}}, "plait": {"_count": 1, "braided": {"_count": 1}}, "head": {"_count": 2, "as": {"_count": 1}, "was": {"_count": 1}}, "slanting": {"_count": 1, "eyes": {"_count": 1}}, "water": {"_count": 9, "toward": {"_count": 1}, "underfoot": {"_count": 1}, "was": {"_count": 1}, "some": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "men": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "foggy": {"_count": 1, "landscape": {"_count": 1}}, "windows": {"_count": 1, "Harry": {"_count": 1}}, "rustling": {"_count": 1, "treetops": {"_count": 1}}, "predictions": {"_count": 1, "that": {"_count": 1}}, "lawn": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "whirlpool": {"_count": 1, "And": {"_count": 1}}, "solid": {"_count": 1, "stone": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "starspangled": {"_count": 1, "heavens": {"_count": 1}}, "raw": {"_count": 1, "reddish": {"_count": 1}}, "graveyard": {"_count": 2, "": {"_count": 1}, "while": {"_count": 1}}, "figures": {"_count": 1, "crossing": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "Dudley": {"_count": 1, "said": {"_count": 1}}, "bedroom": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "pointing": {"_count": 1}}, "upstairs": {"_count": 1, "landing": {"_count": 1}}, "twinkling": {"_count": 1, "eyes": {"_count": 1}}, "greens": {"_count": 1, "and": {"_count": 1}}, "staircase": {"_count": 1, "passing": {"_count": 1}}, "wardrobe": {"_count": 1, "and": {"_count": 1}}, "greasyhaired": {"_count": 1, "head": {"_count": 1}}, "knot": {"_count": 1, "of": {"_count": 1}}, "woman": {"_count": 2, "with": {"_count": 1}, "halfway": {"_count": 1}}, "door": {"_count": 1, "with": {"_count": 1}}, "wall": {"_count": 1, "her": {"_count": 1}}, "rainwashed": {"_count": 1, "road": {"_count": 1}}, "interior": {"_count": 1, "": {"_count": 1}}, "eyebrows": {"_count": 2, "had": {"_count": 1}, "contracting": {"_count": 1}}, "haired": {"_count": 1, "girl": {"_count": 1}}, "curtain": {"_count": 2, "of": {"_count": 1}, "the": {"_count": 1}}, "one": {"_count": 1, "said": {"_count": 1}}, "fer": {"_count": 1, "our": {"_count": 1}}, "caves": {"_count": 1, "looking": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "cold": {"_count": 3, "stone": {"_count": 1}, "eyes": {"_count": 2}}, "yet": {"_count": 1, "he": {"_count": 1}}, "pantry": {"_count": 1, "and": {"_count": 1}}, "heavylidded": {"_count": 1, "woman": {"_count": 1}}, "lake": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "curtained": {"_count": 1, "room": {"_count": 1}}, "velvet": {"_count": 1, "of": {"_count": 1}}, "holes": {"_count": 1, "beneath": {"_count": 1}}, "dangerous": {"_count": 1, "night": {"_count": 1}}, "leaflet": {"_count": 1, "from": {"_count": 1}}, "heart": {"_count": 1, "of": {"_count": 1}}, "soggy": {"_count": 1, "stranger": {"_count": 1}}, "ground": {"_count": 3, "on": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "was": {"_count": 2, "haunting": {"_count": 1}, "trickling": {"_count": 1}}, "blue": {"_count": 2, "ceiling": {"_count": 1}, "sky": {"_count": 1}}, "circular": {"_count": 2, "room": {"_count": 2}}, "within": {"_count": 1, "as": {"_count": 1}}, "corner": {"_count": 1, "into": {"_count": 1}}, "cluttered": {"_count": 1, "office": {"_count": 1}}, "smoke": {"_count": 1, "the": {"_count": 1}}, "rippling": {"_count": 1, "faceless": {"_count": 1}}, "hole": {"_count": 2, "where": {"_count": 1}, "in": {"_count": 1}}, "padded": {"_count": 1, "cell": {"_count": 1}}, "musty": {"_count": 1, "rooms": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "robes": {"_count": 2, "billowing": {"_count": 1}, "gleaming": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "cool": {"_count": 1, "shadows": {"_count": 1}}, "bookshelves": {"_count": 1, "": {"_count": 1}}, "glamour": {"_count": 1, "within": {"_count": 1}}, "what": {"_count": 1, "happened": {"_count": 1}}, "nothingness": {"_count": 1, "and": {"_count": 1}}, "alley": {"_count": 1, "were": {"_count": 1}}, "pit": {"_count": 1, "": {"_count": 1}}, "portents": {"_count": 1, "I": {"_count": 1}}, "rock": {"_count": 1, "water": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "slit": {"_count": 1, "in": {"_count": 1}}, "glistening": {"_count": 1, "drops": {"_count": 1}}, "bank": {"_count": 1, "was": {"_count": 1}}, "mirror": {"_count": 1, "": {"_count": 1}}, "waters": {"_count": 2, "": {"_count": 2}}, "High": {"_count": 1, "Street": {"_count": 1}}, "twisting": {"_count": 1, "lane": {"_count": 1}}, "grass": {"_count": 1, "clutching": {"_count": 1}}, "metal": {"_count": 1, "were": {"_count": 1}}, "garden": {"_count": 3, "beyond": {"_count": 1}, "": {"_count": 1}, "where": {"_count": 1}}, "back": {"_count": 1, "garden": {"_count": 1}}, "mass": {"_count": 3, "on": {"_count": 1}, "did": {"_count": 1}, "that": {"_count": 1}}, "then": {"_count": 1, "even": {"_count": 1}}, "curtains": {"_count": 1, "concealed": {"_count": 1}}, "Seeker": {"_count": 1, "who": {"_count": 1}}, "He": {"_count": 1, "tried": {"_count": 1}}, "branches": {"_count": 1, "high": {"_count": 1}}, "canvas": {"_count": 2, "ceiling": {"_count": 1}, "roof": {"_count": 1}}, "river": {"_count": 1, "beside": {"_count": 1}}, "wet": {"_count": 1, "and": {"_count": 1}}, "tracks": {"_count": 1, "into": {"_count": 1}}, "church": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "ivy": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "fetid": {"_count": 1, "room": {"_count": 1}}, "foulsmelling": {"_count": 1, "room": {"_count": 1}}, "gardens": {"_count": 1, "over": {"_count": 1}}, "hedge": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "plays": {"_count": 1}}, "ice": {"_count": 1, "rocked": {"_count": 1}}, "forest": {"_count": 1, "with": {"_count": 1}}, "I": {"_count": 1, "knew": {"_count": 1}}, "wand": {"_count": 1, "out": {"_count": 1}}, "for": {"_count": 1, "Greyback": {"_count": 1}}, "purple": {"_count": 1, "walls": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "The": {"_count": 1, "sun": {"_count": 1}}, "track": {"_count": 1, "at": {"_count": 1}}, "cloud": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "ones": {"_count": 1}}, "woodpaneled": {"_count": 1, "and": {"_count": 1}}, "earth": {"_count": 1, "soaring": {"_count": 1}}, "wound": {"_count": 1, "in": {"_count": 1}}, "night": {"_count": 2, "Harry": {"_count": 1}, "He": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "pair": {"_count": 1, "seemed": {"_count": 1}}, "enchanted": {"_count": 1, "ceiling": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "coat": {"_count": 1, "buttoned": {"_count": 1}}}, "livingroom": {"_count": 1, "window": {"_count": 1, "": {"_count": 1}}}, "Flocks": {"_count": 1, "of": {"_count": 1, "owls": {"_count": 1}}}, "theyre": {"_count": 302, "not": {"_count": 27, "completely": {"_count": 1}, "like": {"_count": 1}, "bad": {"_count": 1}, "in": {"_count": 2}, "wanted": {"_count": 1}, "too": {"_count": 1}, "theyre": {"_count": 1}, "very": {"_count": 2}, "corned": {"_count": 1}, "now": {"_count": 1}, "useful": {"_count": 1}, "native": {"_count": 1}, "simple": {"_count": 1}, "worth": {"_count": 1}, "bringing": {"_count": 1}, "my": {"_count": 1}, "real": {"_count": 1}, "technically": {"_count": 1}, "that": {"_count": 1}, "meant": {"_count": 1}, "happy": {"_count": 1}, "going": {"_count": 1}, "far": {"_count": 1}, "exactly": {"_count": 1}, "as": {"_count": 1}}, "saying": {"_count": 4, "she": {"_count": 1}, "that": {"_count": 1}, "hes": {"_count": 1}, "": {"_count": 1}}, "dead": {"_count": 4, "": {"_count": 2}, "useful": {"_count": 1}, "clever": {"_count": 1}}, "here": {"_count": 7, "": {"_count": 2}, "to": {"_count": 1}, "in": {"_count": 1}, "theyre": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "watching": {"_count": 2, "the": {"_count": 1}, "over": {"_count": 1}}, "famous": {"_count": 1, "": {"_count": 1}}, "mad": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 8, "funny": {"_count": 1}, "rare": {"_count": 1}, "": {"_count": 1}, "going": {"_count": 1}, "really": {"_count": 1}, "good": {"_count": 1}, "So": {"_count": 1}, "called": {"_count": 1}}, "bare": {"_count": 1, "and": {"_count": 1}}, "doing": {"_count": 11, "keeping": {"_count": 1}, "me": {"_count": 1}, "it": {"_count": 3}, "": {"_count": 2}, "annoying": {"_count": 1}, "with": {"_count": 1}, "something": {"_count": 1}, "at": {"_count": 1}}, "like": {"_count": 5, "a": {"_count": 1}, "trolls": {"_count": 2}, "the": {"_count": 1}, "in": {"_count": 1}}, "supposed": {"_count": 2, "to": {"_count": 2}}, "both": {"_count": 1, "dentists": {"_count": 1}}, "lovely": {"_count": 1, "and": {"_count": 1}}, "friends": {"_count": 2, "and": {"_count": 1}, "arent": {"_count": 1}}, "off": {"_count": 2, "": {"_count": 2}}, "ever": {"_count": 1, "needed": {"_count": 1}}, "powerful": {"_count": 1, "magic": {"_count": 1}}, "good": {"_count": 1, "enough": {"_count": 1}}, "skills": {"_count": 1, "worth": {"_count": 1}}, "getting": {"_count": 3, "completely": {"_count": 1}, "desperate": {"_count": 1}, "smaller": {"_count": 1}}, "funny": {"_count": 1, "": {"_count": 1}}, "paying": {"_count": 1, "you": {"_count": 1}}, "only": {"_count": 4, "pixies": {"_count": 1}, "jealous": {"_count": 1}, "activated": {"_count": 1}, "looking": {"_count": 1}}, "three": {"_count": 1, "long": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "what": {"_count": 1, "people": {"_count": 1}}, "easy": {"_count": 1, "enough": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 2}, "Azkaban": {"_count": 1}, "": {"_count": 1}, "Diagon": {"_count": 1}, "Dumbledores": {"_count": 1}}, "Malfoys": {"_count": 1, "best": {"_count": 1}}, "bound": {"_count": 3, "to": {"_count": 3}}, "asleep": {"_count": 1, "pull": {"_count": 1}}, "fully": {"_count": 1, "mature": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "made": {"_count": 1, "out": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}, "going": {"_count": 13, "to": {"_count": 11}, "theyll": {"_count": 1}, "": {"_count": 1}}, "favorites": {"_count": 1, "for": {"_count": 1}}, "there": {"_count": 2, "to": {"_count": 1}, "said": {"_count": 1}}, "proud": {"_count": 1, "said": {"_count": 1}}, "Muggles": {"_count": 1, "they": {"_count": 1}}, "all": {"_count": 12, "trapped": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "disappointed": {"_count": 1}, "called": {"_count": 1}, "busy": {"_count": 1}, "convinced": {"_count": 1}, "spiked": {"_count": 1}, "prepared": {"_count": 1}, "dangerous": {"_count": 1}, "right": {"_count": 1}, "really": {"_count": 1}}, "for": {"_count": 2, "vampires": {"_count": 1}, "and": {"_count": 1}}, "great": {"_count": 2, "": {"_count": 1}, "novelties": {"_count": 1}}, "coming": {"_count": 6, "up": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "round": {"_count": 1}, "with": {"_count": 1}, "I": {"_count": 1}}, "scared": {"_count": 1, "": {"_count": 1}}, "used": {"_count": 2, "to": {"_count": 1}, "defensively": {"_count": 1}}, "to": {"_count": 1, "pick": {"_count": 1}}, "late": {"_count": 1, "": {"_count": 1}}, "wasting": {"_count": 1, "them": {"_count": 1}}, "Apparating": {"_count": 1, "arent": {"_count": 1}}, "still": {"_count": 3, "in": {"_count": 1}, "alive": {"_count": 1}, "operating": {"_count": 1}}, "using": {"_count": 2, "as": {"_count": 1}, "the": {"_count": 1}}, "Unspeakables": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 3, "": {"_count": 1}, "Muggles": {"_count": 1}, "Harry": {"_count": 1}}, "moving": {"_count": 1, "this": {"_count": 1}}, "too": {"_count": 1, "lazy": {"_count": 1}}, "kids": {"_count": 1, "Barty": {"_count": 1}}, "on": {"_count": 2, "your": {"_count": 1}, "their": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "identical": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 4, "males": {"_count": 1}, "creatures": {"_count": 1}, "Chocolate": {"_count": 1}, "same": {"_count": 1}}, "shockingly": {"_count": 1, "underrepresented": {"_count": 1}}, "handsome": {"_count": 1, "": {"_count": 1}}, "happy": {"_count": 1, "": {"_count": 1}}, "uneducated": {"_count": 1, "and": {"_count": 1}}, "any": {"_count": 1, "bigger": {"_count": 1}}, "upstairs": {"_count": 1, "in": {"_count": 1}}, "havin": {"_count": 1, "fun": {"_count": 1}}, "your": {"_count": 1, "most": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 4}}, "different": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "dentists": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "just": {"_count": 2, "vicious": {"_count": 1}, "jumping": {"_count": 1}}, "about": {"_count": 1, "twenty": {"_count": 1}}, "looking": {"_count": 2, "for": {"_count": 2}}, "quite": {"_count": 2, "capable": {"_count": 1}, "right": {"_count": 1}}, "abou": {"_count": 1, "two": {"_count": 1}}, "full": {"_count": 1, "grown": {"_count": 1}}, "babies": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "married": {"_count": 1}, "Class": {"_count": 1}}, "obsessed": {"_count": 1, "with": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "from": {"_count": 1, "you": {"_count": 1}}, "born": {"_count": 1, "not": {"_count": 1}}, "having": {"_count": 1, "said": {"_count": 1}}, "writing": {"_count": 1, "about": {"_count": 1}}, "biding": {"_count": 1, "their": {"_count": 1}}, "offered": {"_count": 2, "said": {"_count": 1}, "freedoms": {"_count": 1}}, "legally": {"_count": 1, "adults": {"_count": 1}}, "calling": {"_count": 3, "Dumbledores": {"_count": 1}, "you": {"_count": 2}}, "talking": {"_count": 1, "about": {"_count": 1}}, "immobilized": {"_count": 1, "just": {"_count": 1}}, "called": {"_count": 3, "you": {"_count": 1}, "stitches": {"_count": 1}, "": {"_count": 1}}, "flummoxed": {"_count": 1, "": {"_count": 1}}, "thrilled": {"_count": 1, "she": {"_count": 1}}, "superior": {"_count": 1, "to": {"_count": 1}}, "titchy": {"_count": 1, "": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "alive": {"_count": 1, "arent": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "testing": {"_count": 1, "stuff": {"_count": 1}}, "always": {"_count": 2, "guessing": {"_count": 1}, "patrolling": {"_count": 1}}, "definitely": {"_count": 1, "allowed": {"_count": 1}}, "obviously": {"_count": 1, "interested": {"_count": 1}}, "proven": {"_count": 1, "to": {"_count": 1}}, "singing": {"_count": 1, "": {"_count": 1}}, "dyin": {"_count": 1, "out": {"_count": 1}}, "somethin": {"_count": 1, "really": {"_count": 1}}, "trained": {"_count": 3, "are": {"_count": 1}, "said": {"_count": 1}, "It": {"_count": 1}}, "tamed": {"_count": 1, "like": {"_count": 1}}, "dangerous": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "cheeky": {"_count": 1, "little": {"_count": 1}}, "Healers": {"_count": 1, "": {"_count": 1}}, "eating": {"_count": 1, "my": {"_count": 1}}, "given": {"_count": 1, "clothes": {"_count": 1}}, "tied": {"_count": 1, "to": {"_count": 1}}, "pathetic": {"_count": 1, "even": {"_count": 1}}, "receiving": {"_count": 1, "stolen": {"_count": 1}}, "angry": {"_count": 1, "because": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "probably": {"_count": 2, "the": {"_count": 1}, "watching": {"_count": 1}}, "REAL": {"_count": 1, "Hermione": {"_count": 1}}, "very": {"_count": 4, "good": {"_count": 2}, "complimentary": {"_count": 1}, "admirable": {"_count": 1}}, "brains": {"_count": 1, "look": {"_count": 1}}, "breeding": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 3, "busy": {"_count": 1}, "sweet": {"_count": 1}, "careless": {"_count": 1}}, "rushing": {"_count": 1, "all": {"_count": 1}}, "warm": {"_count": 1, "Harry": {"_count": 1}}, "playing": {"_count": 1, "at": {"_count": 1}}, "gettin": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "best": {"_count": 1, "when": {"_count": 1}}, "fresh": {"_count": 1, "": {"_count": 1}}, "er": {"_count": 1, "really": {"_count": 1}}, "making": {"_count": 1, "some": {"_count": 1}}, "kept": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 1, "even": {"_count": 1}}, "easily": {"_count": 1, "upset": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "caused": {"_count": 1, "by": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "arriving": {"_count": 1, "at": {"_count": 1}}, "convinced": {"_count": 1, "theyre": {"_count": 1}}, "tight": {"_count": 1, "": {"_count": 1}}, "staking": {"_count": 1, "out": {"_count": 1}}, "lucky": {"_count": 1, "": {"_count": 1}}, "hoping": {"_count": 1, "well": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "raided": {"_count": 1, "and": {"_count": 1}}, "telling": {"_count": 1, "the": {"_count": 1}}, "rubies": {"_count": 1, "thats": {"_count": 1}}, "scum": {"_count": 1, "": {"_count": 1}}, "loyal": {"_count": 1, "to": {"_count": 1}}, "barricading": {"_count": 1, "the": {"_count": 1}}, "imprisoning": {"_count": 1, "traitors": {"_count": 1}}, "arguing": {"_count": 1, "said": {"_count": 1}}, "busy": {"_count": 1, "and": {"_count": 1}}, "real": {"_count": 1, "": {"_count": 1}}}, "completely": {"_count": 176, "stupid": {"_count": 1, "": {"_count": 1}}, "hidden": {"_count": 5, "by": {"_count": 2}, "beneath": {"_count": 2}, "their": {"_count": 1}}, "still": {"_count": 2, "and": {"_count": 1}, "water": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "invisible": {"_count": 6, "": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 2}, "without": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 20}}, "lost": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "and": {"_count": 4, "pulled": {"_count": 1}, "blissfully": {"_count": 1}, "was": {"_count": 1}, "undeniably": {"_count": 1}}, "covered": {"_count": 3, "said": {"_count": 1}, "in": {"_count": 1}, "his": {"_count": 1}}, "now": {"_count": 1, "although": {"_count": 1}}, "severed": {"_count": 1, "": {"_count": 1}}, "thrown": {"_count": 2, "by": {"_count": 2}}, "blank": {"_count": 2, "": {"_count": 1}, "uncomprehending": {"_count": 1}}, "stripped": {"_count": 1, "": {"_count": 1}}, "forgotten": {"_count": 7, "about": {"_count": 1}, "that": {"_count": 2}, "to": {"_count": 2}, "the": {"_count": 2}}, "ignored": {"_count": 3, "his": {"_count": 2}, "he": {"_count": 1}}, "different": {"_count": 4, "street": {"_count": 1}, "conditions": {"_count": 1}, "something": {"_count": 1}, "voice": {"_count": 1}}, "useless": {"_count": 2, "": {"_count": 1}, "if": {"_count": 1}}, "black": {"_count": 1, "window": {"_count": 1}}, "the": {"_count": 2, "silhouette": {"_count": 1}, "wrong": {"_count": 1}}, "blocked": {"_count": 2, "": {"_count": 2}}, "empty": {"_count": 8, "except": {"_count": 1}, "but": {"_count": 1}, "whenever": {"_count": 1}, "": {"_count": 3}, "now": {"_count": 1}, "even": {"_count": 1}}, "devoid": {"_count": 1, "of": {"_count": 1}}, "winded": {"_count": 1, "": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "bewildered": {"_count": 1, "": {"_count": 1}}, "seized": {"_count": 1, "a": {"_count": 1}}, "unimpressed": {"_count": 1, "by": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "bald": {"_count": 1, "but": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "had": {"_count": 1}}, "exhausted": {"_count": 1, "": {"_count": 1}}, "unperturbed": {"_count": 1, "by": {"_count": 1}}, "stationary": {"_count": 2, "soccer": {"_count": 1}, "": {"_count": 1}}, "silent": {"_count": 4, "and": {"_count": 2}, "": {"_count": 1}, "watchful": {"_count": 1}}, "normal": {"_count": 1, "": {"_count": 1}}, "fine": {"_count": 1, "by": {"_count": 1}}, "upon": {"_count": 1, "Madame": {"_count": 1}}, "astonished": {"_count": 1, "and": {"_count": 1}}, "horrible": {"_count": 1, "": {"_count": 1}}, "distracted": {"_count": 2, "by": {"_count": 2}}, "ignoring": {"_count": 1, "her": {"_count": 1}}, "missed": {"_count": 1, "the": {"_count": 1}}, "clear": {"_count": 2, "potion": {"_count": 1}, "liquid": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "unaware": {"_count": 2, "that": {"_count": 1}, "anythings": {"_count": 1}}, "unrecognizable": {"_count": 1, "": {"_count": 1}}, "deserted": {"_count": 5, "": {"_count": 3}, "again": {"_count": 1}, "but": {"_count": 1}}, "insane": {"_count": 2, "now": {"_count": 1}, "not": {"_count": 1}}, "cut": {"_count": 1, "off": {"_count": 1}}, "convinced": {"_count": 1, "": {"_count": 1}}, "nonplussed": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 1, "cover": {"_count": 1}}, "unfamiliar": {"_count": 1, "a": {"_count": 1}}, "forgetting": {"_count": 1, "about": {"_count": 1}}, "obscured": {"_count": 2, "by": {"_count": 1}, "with": {"_count": 1}}, "berserk": {"_count": 1, "": {"_count": 1}}, "naked": {"_count": 1, "": {"_count": 1}}, "flown": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 2, "if": {"_count": 1}, "Voldemort": {"_count": 1}}, "by": {"_count": 1, "surprise": {"_count": 1}}, "about": {"_count": 1, "prefects": {"_count": 1}}, "fleshless": {"_count": 1, "their": {"_count": 1}}, "unprotected": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "he": {"_count": 2, "stared": {"_count": 1}, "had": {"_count": 1}}, "addled": {"_count": 1, "you": {"_count": 1}}, "undermine": {"_count": 1, "the": {"_count": 1}}, "covering": {"_count": 1, "him": {"_count": 1}}, "right": {"_count": 2, "finally": {"_count": 1}, "but": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "during": {"_count": 1, "tealeaf": {"_count": 1}}, "cured": {"_count": 1, "three": {"_count": 1}}, "a": {"_count": 1, "difficult": {"_count": 1}}, "relaxed": {"_count": 1, "": {"_count": 1}}, "undamaged": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "ran": {"_count": 1}, "sped": {"_count": 1}}, "healthy": {"_count": 1, "and": {"_count": 1}}, "than": {"_count": 1, "you": {"_count": 1}}, "But": {"_count": 1, "I": {"_count": 1}}, "emptying": {"_count": 1, "his": {"_count": 1}}, "throw": {"_count": 1, "away": {"_count": 1}}, "cuckoo": {"_count": 1, "Im": {"_count": 1}}, "open": {"_count": 1, "about": {"_count": 1}}, "dry": {"_count": 2, "within": {"_count": 1}, "but": {"_count": 1}}, "bloodless": {"_count": 1, "": {"_count": 1}}, "bemused": {"_count": 1, "Mrs": {"_count": 1}}, "leaving": {"_count": 1, "behind": {"_count": 1}}, "unexpected": {"_count": 1, "": {"_count": 1}}, "ridiculous": {"_count": 1, "": {"_count": 1}}, "sure": {"_count": 1, "its": {"_count": 1}}, "escape": {"_count": 1, "proof": {"_count": 1}}, "fake": {"_count": 1, "identity": {"_count": 1}}, "herself": {"_count": 1, "Ron": {"_count": 1}}, "your": {"_count": 1, "own": {"_count": 1}}}, "bound": {"_count": 78, "to": {"_count": 43, "notice": {"_count": 1}, "be": {"_count": 6}, "serve": {"_count": 1}, "go": {"_count": 2}, "eat": {"_count": 1}, "her": {"_count": 1}, "catch": {"_count": 1}, "compete": {"_count": 1}, "tell": {"_count": 2}, "Mr": {"_count": 1}, "have": {"_count": 4}, "find": {"_count": 2}, "the": {"_count": 1}, "come": {"_count": 3}, "write": {"_count": 1}, "get": {"_count": 3}, "clear": {"_count": 1}, "pick": {"_count": 1}, "rouse": {"_count": 1}, "give": {"_count": 1}, "take": {"_count": 1}, "hurt": {"_count": 1}, "crack": {"_count": 1}, "report": {"_count": 1}, "reach": {"_count": 1}, "wonder": {"_count": 1}, "attract": {"_count": 1}, "target": {"_count": 1}}, "in": {"_count": 4, "leather": {"_count": 1}, "old": {"_count": 1}, "ropes": {"_count": 1}, "faded": {"_count": 1}}, "tightly": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "shut": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "Crookshanks": {"_count": 1, "sprang": {"_count": 1}}, "Lupin": {"_count": 1, "flew": {"_count": 1}}, "and": {"_count": 4, "gagged": {"_count": 2}, "tortured": {"_count": 1}, "trussed": {"_count": 1}}, "him": {"_count": 2, "to": {"_count": 2}}, "Karkaroff": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "tightly": {"_count": 1}}, "ter": {"_count": 1, "be": {"_count": 1}}, "by": {"_count": 5, "invisible": {"_count": 1}, "his": {"_count": 1}, "pain": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "itself": {"_count": 1, "thickly": {"_count": 1}}, "Ron": {"_count": 1, "head": {"_count": 1}}, "her": {"_count": 1, "there": {"_count": 1}}, "his": {"_count": 1, "limbs": {"_count": 1}}, "the": {"_count": 1, "son": {"_count": 1}}, "prisoners": {"_count": 1, "to": {"_count": 1}}, "bodies": {"_count": 1, "tied": {"_count": 1}}}, "notice": {"_count": 115, "something": {"_count": 1, "": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 10}, "?": {"_count": 2}, "!": {"_count": 1}}, "how": {"_count": 1, "much": {"_count": 1}}, "pinned": {"_count": 1, "up": {"_count": 1}}, "of": {"_count": 7, "course": {"_count": 1}, "execution": {"_count": 1}, "Wormtail": {"_count": 1}, "Siriuss": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "Muggles": {"_count": 1}}, "the": {"_count": 8, "pipe": {"_count": 1}, "whining": {"_count": 1}, "abnormally": {"_count": 1}, "lantern": {"_count": 1}, "markings": {"_count": 1}, "restlessness": {"_count": 1}, "addition": {"_count": 1}, "shadow": {"_count": 1}}, "if": {"_count": 5, "you": {"_count": 2}, "a": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}}, "Malfoy": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "members": {"_count": 1}}, "board": {"_count": 11, "reading": {"_count": 1}, "": {"_count": 4}, "where": {"_count": 1}, "so": {"_count": 1}, "since": {"_count": 1}, "yesterday": {"_count": 1}, "upon": {"_count": 1}, "that": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "taking": {"_count": 1}}, "that": {"_count": 10, "the": {"_count": 1}, "had": {"_count": 1}, "I": {"_count": 1}, "Crouch": {"_count": 1}, "his": {"_count": 1}, "despite": {"_count": 1}, "theyd": {"_count": 1}, "your": {"_count": 1}, "something": {"_count": 1}, "when": {"_count": 1}}, "it": {"_count": 1, "too": {"_count": 1}}, "nuffink": {"_count": 1, "they": {"_count": 1}}, "they": {"_count": 2, "havent": {"_count": 1}, "dont": {"_count": 1}}, "pasted": {"_count": 1, "on": {"_count": 1}}, "dementors": {"_count": 1, "will": {"_count": 1}}, "immediately": {"_count": 1, "that": {"_count": 1}}, "anything": {"_count": 3, "else": {"_count": 1}, "": {"_count": 1}, "strange": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "anyone": {"_count": 1, "took": {"_count": 1}}, "Ron": {"_count": 1, "doesnt": {"_count": 1}}, "what": {"_count": 2, "she": {"_count": 1}, "Harry": {"_count": 1}}, "whatsoever": {"_count": 1, "of": {"_count": 1}}, "some": {"_count": 1, "chance": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "arms": {"_count": 1, "tight": {"_count": 1}}, "him": {"_count": 1, "as": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "again": {"_count": 1}}, "scare": {"_count": 1, "her": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "decided": {"_count": 1}}, "much": {"_count": 1, "around": {"_count": 1}}, "boards": {"_count": 4, "the": {"_count": 1}, "but": {"_count": 1}, "overnight": {"_count": 1}, "that": {"_count": 1}}, "Harrys": {"_count": 1, "tone": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "us": {"_count": 2, "goin": {"_count": 1}, "he": {"_count": 1}}, "these": {"_count": 1, "suspicious": {"_count": 1}}, "this": {"_count": 1, "Harry": {"_count": 1}}, "Barnabas": {"_count": 1, "Cuffe": {"_count": 1}}, "Goyle": {"_count": 1, "reaching": {"_count": 1}}, "them": {"_count": 2, "or": {"_count": 1}, "Her": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "which": {"_count": 1, "for": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "though": {"_count": 1, "occasionally": {"_count": 1}}, "as": {"_count": 1, "Hermione": {"_count": 1}}, "a": {"_count": 1, "carpetmuffled": {"_count": 1}}, "Im": {"_count": 1, "always": {"_count": 1}}, "she": {"_count": 1, "took": {"_count": 1}}, "even": {"_count": 1, "through": {"_count": 1}}, "our": {"_count": 1, "feet": {"_count": 1}}}, "Ill": {"_count": 546, "bet": {"_count": 15, "that": {"_count": 1}, "Percys": {"_count": 1}, "you": {"_count": 5}, "he": {"_count": 2}, "anything": {"_count": 2}, "she": {"_count": 1}, "Dumbledore": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "have": {"_count": 37, "thirty": {"_count": 1}, "to": {"_count": 13}, "the": {"_count": 1}, "you": {"_count": 5}, "a": {"_count": 5}, "Mr": {"_count": 1}, "one": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 3}, "her": {"_count": 1}, "this": {"_count": 1}, "five": {"_count": 1}, "another": {"_count": 1}, "less": {"_count": 1}, "\u2018power": {"_count": 1}}, "take": {"_count": 21, "them": {"_count": 3}, "over": {"_count": 1}, "another": {"_count": 1}, "Ginny": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}, "you": {"_count": 3}, "Harry": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 1}, "his": {"_count": 1}, "some": {"_count": 1}, "first": {"_count": 1}}, "be": {"_count": 72, "at": {"_count": 3}, "in": {"_count": 6}, "back": {"_count": 6}, "far": {"_count": 1}, "safe": {"_count": 1}, "waiting": {"_count": 1}, "able": {"_count": 10}, "allowed": {"_count": 2}, "off": {"_count": 4}, "a": {"_count": 2}, "up": {"_count": 1}, "studying": {"_count": 1}, "leaving": {"_count": 1}, "beside": {"_count": 1}, "glad": {"_count": 2}, "teaching": {"_count": 1}, "takin": {"_count": 1}, "really": {"_count": 1}, "happy": {"_count": 1}, "quicker": {"_count": 1}, "havin": {"_count": 1}, "very": {"_count": 1}, "no": {"_count": 1}, "late": {"_count": 3}, "accepting": {"_count": 1}, "dogging": {"_count": 1}, "quite": {"_count": 1}, "her": {"_count": 1}, "seeinyeh": {"_count": 1}, "surprised": {"_count": 2}, "sorry": {"_count": 1}, "careful": {"_count": 1}, "having": {"_count": 1}, "seventeen": {"_count": 1}, "playing": {"_count": 1}, "reporting": {"_count": 1}, "fine": {"_count": 1}, "with": {"_count": 1}, "gone": {"_count": 2}, "": {"_count": 1}, "needing": {"_count": 1}}, "tell": {"_count": 24, "yeh": {"_count": 4}, "him": {"_count": 2}, "Father": {"_count": 1}, "Professor": {"_count": 1}, "So": {"_count": 1}, "you": {"_count": 11}, "Michael": {"_count": 1}, "her": {"_count": 1}, "Tonks": {"_count": 1}, "everyone": {"_count": 1}}, "bully": {"_count": 1, "father": {"_count": 1}}, "smuggle": {"_count": 1, "it": {"_count": 1}}, "see": {"_count": 21, "you": {"_count": 15}, "where": {"_count": 1}, "to": {"_count": 1}, "Sirius": {"_count": 1}, "Fudge": {"_count": 1}, "yeh": {"_count": 1}, "yer": {"_count": 1}}, "get": {"_count": 27, "yer": {"_count": 2}, "him": {"_count": 3}, "rid": {"_count": 1}, "Scabberss": {"_count": 1}, "the": {"_count": 3}, "your": {"_count": 2}, "us": {"_count": 2}, "my": {"_count": 1}, "her": {"_count": 2}, "Dumbledore": {"_count": 3}, "them": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "show": {"_count": 8, "you": {"_count": 5}, "them": {"_count": 1}, "her": {"_count": 1}, "yeh": {"_count": 1}}, "eat": {"_count": 3, "myself": {"_count": 1}, "my": {"_count": 1}, "Buckbeak": {"_count": 1}}, "kill": {"_count": 3, "Fred": {"_count": 1}, "you": {"_count": 2}}, "leave": {"_count": 5, "it": {"_count": 1}, "you": {"_count": 2}, "Fang": {"_count": 1}, "a": {"_count": 1}}, "knock": {"_count": 3, "you": {"_count": 1}, "something": {"_count": 1}, "off": {"_count": 1}}, "never": {"_count": 10, "rest": {"_count": 1}, "remember": {"_count": 1}, "drink": {"_count": 1}, "forgive": {"_count": 1}, "get": {"_count": 1}, "know": {"_count": 1}, "understand": {"_count": 1}, "lay": {"_count": 1}, "see": {"_count": 1}, "never": {"_count": 1}}, "come": {"_count": 18, "back": {"_count": 3}, "My": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 3}, "with": {"_count": 3}, "quietly": {"_count": 1}, "off": {"_count": 1}, "but": {"_count": 1}, "Ill": {"_count": 1}, "of": {"_count": 1}, "down": {"_count": 1}}, "go": {"_count": 29, "to": {"_count": 4}, "and": {"_count": 11}, "straight": {"_count": 1}, "now": {"_count": 2}, "on": {"_count": 1}, "through": {"_count": 1}, "an": {"_count": 1}, "starkers": {"_count": 1}, "first": {"_count": 2}, "take": {"_count": 1}, "with": {"_count": 1}, "further": {"_count": 1}, "back": {"_count": 1}, "under": {"_count": 1}}, "use": {"_count": 1, "the": {"_count": 1}}, "Ill": {"_count": 3, "fight": {"_count": 1}, "be": {"_count": 1}, "need": {"_count": 1}}, "fight": {"_count": 1, "you": {"_count": 1}}, "not": {"_count": 1, "bother": {"_count": 1}}, "run": {"_count": 1, "": {"_count": 1}}, "try": {"_count": 9, "and": {"_count": 5}, "Harry": {"_count": 1}, "you": {"_count": 1}, "out": {"_count": 1}, "said": {"_count": 1}}, "send": {"_count": 4, "you": {"_count": 1}, "this": {"_count": 1}, "Bill": {"_count": 1}, "a": {"_count": 1}}, "need": {"_count": 9, "something": {"_count": 1}, "help": {"_count": 1}, "to": {"_count": 3}, "a": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "all": {"_count": 1}}, "announce": {"_count": 1, "dinner": {"_count": 1}}, "bring": {"_count": 2, "the": {"_count": 1}, "up": {"_count": 1}}, "help": {"_count": 2, "Ron": {"_count": 1}, "": {"_count": 1}}, "expect": {"_count": 1, "you": {"_count": 1}}, "buy": {"_count": 1, "my": {"_count": 1}}, "ask": {"_count": 4, "you": {"_count": 1}, "Madam": {"_count": 1}, "Dad": {"_count": 1}, "her": {"_count": 1}}, "let": {"_count": 9, "you": {"_count": 6}, "yeh": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "sign": {"_count": 3, "one": {"_count": 1}, "your": {"_count": 1}, "": {"_count": 1}}, "Argus": {"_count": 1, "": {"_count": 1}}, "make": {"_count": 10, "it": {"_count": 2}, "tea": {"_count": 1}, "her": {"_count": 2}, "Goyle": {"_count": 1}, "sure": {"_count": 3}, "some": {"_count": 1}}, "write": {"_count": 6, "to": {"_count": 3}, "him": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}}, "keep": {"_count": 3, "it": {"_count": 1}, "watch": {"_count": 1}, "my": {"_count": 1}}, "swear": {"_count": 1, "it": {"_count": 1}}, "wait": {"_count": 3, "outside": {"_count": 1}, "here": {"_count": 1}, "for": {"_count": 1}}, "just": {"_count": 19, "have": {"_count": 4}, "go": {"_count": 3}, "He": {"_count": 1}, "change": {"_count": 1}, "bet": {"_count": 1}, "hang": {"_count": 1}, "I": {"_count": 1}, "show": {"_count": 1}, "say": {"_count": 1}, "clear": {"_count": 1}, "leave": {"_count": 1}, "take": {"_count": 1}, "borrow": {"_count": 1}, "lie": {"_count": 1}}, "explain": {"_count": 9, "when": {"_count": 1}, "": {"_count": 2}, "everything": {"_count": 1}, "inside": {"_count": 1}, "later": {"_count": 2}, "it": {"_count": 1}, "another": {"_count": 1}}, "remember": {"_count": 1, "where": {"_count": 1}}, "act": {"_count": 1, "like": {"_count": 1}}, "say": {"_count": 4, "goodbye": {"_count": 2}, "this": {"_count": 1}, "is": {"_count": 1}}, "manage": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 27, "it": {"_count": 18}, "anything": {"_count": 3}, "that": {"_count": 3}, "if": {"_count": 1}, "the": {"_count": 1}, "Potter": {"_count": 1}}, "give": {"_count": 9, "you": {"_count": 6}, "her": {"_count": 1}, "it": {"_count": 1}, "Slughorn": {"_count": 1}}, "call": {"_count": 5, "the": {"_count": 1}, "you": {"_count": 2}, "about": {"_count": 1}, "him": {"_count": 1}}, "speak": {"_count": 3, "to": {"_count": 3}}, "look": {"_count": 6, "after": {"_count": 2}, "it": {"_count": 1}, "through": {"_count": 1}, "for": {"_count": 1}, "she": {"_count": 1}}, "hold": {"_count": 2, "him": {"_count": 2}}, "sit": {"_count": 2, "over": {"_count": 1}, "here": {"_count": 1}}, "drag": {"_count": 1, "the": {"_count": 1}}, "understand": {"_count": 2, "of": {"_count": 1}, "if": {"_count": 1}}, "lock": {"_count": 1, "you": {"_count": 1}}, "meet": {"_count": 4, "you": {"_count": 4}}, "fix": {"_count": 1, "it": {"_count": 1}}, "light": {"_count": 1, "a": {"_count": 1}}, "sort": {"_count": 2, "this": {"_count": 1}, "out": {"_count": 1}}, "find": {"_count": 3, "your": {"_count": 1}, "him": {"_count": 1}, "Mum": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "lose": {"_count": 1, "a": {"_count": 1}}, "win": {"_count": 1, "my": {"_count": 1}}, "swap": {"_count": 1, "any": {"_count": 1}}, "catch": {"_count": 2, "you": {"_count": 2}}, "burn": {"_count": 1, "that": {"_count": 1}}, "bear": {"_count": 2, "that": {"_count": 2}}, "talk": {"_count": 2, "to": {"_count": 2}}, "breathe": {"_count": 1, "freely": {"_count": 1}}, "walk": {"_count": 1, "to": {"_count": 1}}, "reserve": {"_count": 1, "judgment": {"_count": 1}}, "hex": {"_count": 2, "you": {"_count": 2}}, "ttell": {"_count": 1, "Dad": {"_count": 1}}, "hhit": {"_count": 1, "you": {"_count": 1}}, "hear": {"_count": 2, "what": {"_count": 1}, "them": {"_count": 1}}, "join": {"_count": 2, "I": {"_count": 1}, "you": {"_count": 1}}, "cover": {"_count": 1, "for": {"_count": 1}}, "put": {"_count": 2, "in": {"_count": 1}, "a": {"_count": 1}}, "drop": {"_count": 1, "you": {"_count": 1}}, "sponsor": {"_count": 1, "you": {"_count": 1}}, "still": {"_count": 1, "be": {"_count": 1}}, "carry": {"_count": 2, "that": {"_count": 1}, "her": {"_count": 1}}, "offer": {"_count": 1, "to": {"_count": 1}}, "know": {"_count": 2, "youre": {"_count": 1}, "the": {"_count": 1}}, "behave": {"_count": 1, "myself": {"_count": 1}}, "skive": {"_count": 1, "off": {"_count": 1}}, "pretend": {"_count": 1, "to": {"_count": 1}}, "wake": {"_count": 2, "up": {"_count": 1}, "him": {"_count": 1}}, "plan": {"_count": 1, "his": {"_count": 1}}, "save": {"_count": 1, "it": {"_count": 1}}, "ggo": {"_count": 1, "Dumbledore": {"_count": 1}}, "admit": {"_count": 1, "he": {"_count": 1}}, "ddo": {"_count": 1, "whatever": {"_count": 1}}, "only": {"_count": 1, "bother": {"_count": 1}}, "stand": {"_count": 1, "guard": {"_count": 1}}, "thank": {"_count": 2, "you": {"_count": 2}}, "jinx": {"_count": 1, "your": {"_count": 1}}, "decide": {"_count": 1, "that": {"_count": 1}}, "play": {"_count": 1, "tomorrow": {"_count": 1}}, "boil": {"_count": 1, "you": {"_count": 1}}, "introduce": {"_count": 1, "you": {"_count": 1}}, "want": {"_count": 1, "regular": {"_count": 1}}, "think": {"_count": 1, "youre": {"_count": 1}}, "change": {"_count": 1, "my": {"_count": 1}}, "prove": {"_count": 1, "who": {"_count": 1}}, "invite": {"_count": 1, "Remus": {"_count": 1}}, "pack": {"_count": 1, "these": {"_count": 1}}, "teach": {"_count": 1, "you": {"_count": 1}}, "stay": {"_count": 1, "here": {"_count": 1}}, "spit": {"_count": 1, "it": {"_count": 1}}, "finish": {"_count": 1, "the": {"_count": 1}}, "always": {"_count": 1, "remember": {"_count": 1}}, "Cruciate": {"_count": 1, "the": {"_count": 1}}, "break": {"_count": 1, "the": {"_count": 1}}, "distract": {"_count": 1, "them": {"_count": 1}}}, "bet": {"_count": 102, "that": {"_count": 3, "was": {"_count": 1}, "the": {"_count": 1}, "bloke": {"_count": 1}}, "Im": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 14, "added": {"_count": 1}, "knew": {"_count": 1}, "expected": {"_count": 1}, "asked": {"_count": 1}, "thought": {"_count": 1}, "would": {"_count": 2}, "dve": {"_count": 1}, "leapt": {"_count": 1}, "gets": {"_count": 1}, "wishes": {"_count": 1}, "feels": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 1}}, "thats": {"_count": 2, "all": {"_count": 1}, "why": {"_count": 1}}, "my": {"_count": 3, "broomstick": {"_count": 1}, "life": {"_count": 1}, "parents": {"_count": 1}}, "she": {"_count": 3, "heard": {"_count": 1}, "just": {"_count": 1}, "has": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 3}}, "theres": {"_count": 1, "a": {"_count": 1}}, "youll": {"_count": 1, "think": {"_count": 1}}, "the": {"_count": 3, "Ministry": {"_count": 1}, "Dursleysd": {"_count": 1}, "Lestranges": {"_count": 1}}, "I": {"_count": 2, "can": {"_count": 1}, "know": {"_count": 1}}, "its": {"_count": 4, "a": {"_count": 2}, "weird": {"_count": 1}, "just": {"_count": 1}}, "there": {"_count": 2, "arent": {"_count": 1}, "has": {"_count": 1}}, "on": {"_count": 5, "that": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 2}, "it": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 12, "anything": {"_count": 5}, "Mrs": {"_count": 1}, "just": {"_count": 1}, "have": {"_count": 1}, "wish": {"_count": 1}, "can": {"_count": 1}, "havent": {"_count": 1}, "had": {"_count": 1}}, "Dumbledore": {"_count": 3, "saw": {"_count": 1}, "turns": {"_count": 1}, "knew": {"_count": 1}}, "hes": {"_count": 2, "learning": {"_count": 1}, "all": {"_count": 1}}, "Percys": {"_count": 1, "really": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "hell": {"_count": 1, "get": {"_count": 1}}, "it": {"_count": 4, "was": {"_count": 3}, "sneaked": {"_count": 1}}, "they": {"_count": 3, "come": {"_count": 1}, "are": {"_count": 1}, "11": {"_count": 1}}, "everything": {"_count": 2, "he": {"_count": 1}, "thats": {"_count": 1}}, "thirtyseven": {"_count": 1, "Galleons": {"_count": 1}}, "theyd": {"_count": 1, "be": {"_count": 1}}, "Sirius": {"_count": 1, "ll": {"_count": 1}}, "we": {"_count": 2, "could": {"_count": 1}, "had": {"_count": 1}}, "Krum": {"_count": 1, "can": {"_count": 1}}, "any": {"_count": 1, "baby": {"_count": 1}}, "shes": {"_count": 1, "coming": {"_count": 1}}, "old": {"_count": 1, "Karkaroff": {"_count": 1}}, "shed": {"_count": 3, "work": {"_count": 1}, "know": {"_count": 1}, "been": {"_count": 1}}, "hed": {"_count": 1, "do": {"_count": 1}}, "anything": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "Voldemort": {"_count": 2, "will": {"_count": 1}, "got": {"_count": 1}}, "Oh": {"_count": 1, "I": {"_count": 1}}, "theyre": {"_count": 1, "testing": {"_count": 1}}, "Snape": {"_count": 1, "gives": {"_count": 1}}, "perhaps": {"_count": 1, "not": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "Dedalus": {"_count": 21, "Diggle": {"_count": 8, "": {"_count": 2}, "looking": {"_count": 1}, "Weve": {"_count": 1}, "dropped": {"_count": 1}, "on": {"_count": 1}, "are": {"_count": 1}, "who": {"_count": 1}}, "Diggles": {"_count": 2, "top": {"_count": 1}, "house": {"_count": 1}}, "to": {"_count": 1, "cope": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "happily": {"_count": 1, "striding": {"_count": 1}}, "pulling": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "spoke": {"_count": 1, "": {"_count": 1}}, "nor": {"_count": 1, "Hestia": {"_count": 1}}, "continued": {"_count": 1, "will": {"_count": 1}}, "nodding": {"_count": 1, "at": {"_count": 1}}, "murmured": {"_count": 1, "Hestia": {"_count": 1}}, "probably": {"_count": 1, "told": {"_count": 1}}}, "Diggle": {"_count": 10, "": {"_count": 2, ".": {"_count": 2}}, "looking": {"_count": 1, "around": {"_count": 1}}, "Weve": {"_count": 1, "met": {"_count": 1}}, "dropping": {"_count": 1, "his": {"_count": 1}}, "dropped": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "more": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "brightly": {"_count": 1, "waving": {"_count": 1}}}, "sense": {"_count": 128, "": {"_count": 19, ".": {"_count": 16}, "?": {"_count": 1}, "!": {"_count": 2}}, "to": {"_count": 6, "Dumbledore": {"_count": 1}, "keep": {"_count": 1}, "slam": {"_count": 1}, "the": {"_count": 1}, "deliver": {"_count": 1}, "know": {"_count": 1}}, "of": {"_count": 61, "humor": {"_count": 5}, "foreboding": {"_count": 2}, "self": {"_count": 1}, "direction": {"_count": 1}, "excitement": {"_count": 1}, "security": {"_count": 4}, "power": {"_count": 2}, "complete": {"_count": 1}, "gratitude": {"_count": 1}, "numb": {"_count": 1}, "responsibility": {"_count": 1}, "dread": {"_count": 1}, "loss": {"_count": 1}, "deep": {"_count": 1}, "himself": {"_count": 1}, "grumbling": {"_count": 1}, "mounting": {"_count": 1}, "fun": {"_count": 1}, "when": {"_count": 1}, "unease": {"_count": 1}, "how": {"_count": 1}, "dreadful": {"_count": 1}, "fear": {"_count": 1}, "outrage": {"_count": 1}, "dawning": {"_count": 1}, "embarrassment": {"_count": 1}, "letdown": {"_count": 1}, "selfimportance": {"_count": 1}, "infinite": {"_count": 1}, "humiliation": {"_count": 1}, "where": {"_count": 1}, "unreality": {"_count": 1}, "anticlimax": {"_count": 1}, "jittery": {"_count": 1}, "emerging": {"_count": 1}, "former": {"_count": 1}, "despair": {"_count": 1}, "being": {"_count": 1}, "caution": {"_count": 1}, "whatever": {"_count": 1}, "purpose": {"_count": 4}, "it": {"_count": 2}, "calmly": {"_count": 1}, "heady": {"_count": 1}, "panic": {"_count": 1}, "hopelessness": {"_count": 1}, "fury": {"_count": 1}, "touch": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 3}}, "it": {"_count": 3, "could": {"_count": 1}, "they": {"_count": 1}, "made": {"_count": 1}}, "not": {"_count": 3, "to": {"_count": 3}}, "whatsoever": {"_count": 2, "": {"_count": 2}}, "in": {"_count": 1, "them": {"_count": 1}}, "animal": {"_count": 1, "emotions": {"_count": 1}}, "said": {"_count": 3, "Wormtail": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "somebody": {"_count": 1, "standing": {"_count": 1}}, "for": {"_count": 2, "them": {"_count": 1}, "all": {"_count": 1}}, "he": {"_count": 1, "flung": {"_count": 1}}, "they": {"_count": 1, "explain": {"_count": 1}}, "snapped": {"_count": 1, "Professor": {"_count": 1}}, "the": {"_count": 1, "stares": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 2, "he": {"_count": 1}, "I": {"_count": 1}}, "were": {"_count": 1, "keepin": {"_count": 1}}, "offunV": {"_count": 1, "Youd": {"_count": 1}}, "and": {"_count": 1, "weve": {"_count": 1}}, "that": {"_count": 3, "here": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "coupled": {"_count": 1, "with": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "excitement": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "them": {"_count": 1, "suggested": {"_count": 1}}, "freedom": {"_count": 1, "and": {"_count": 1}}, "fear": {"_count": 1, "in": {"_count": 1}}, "Perce": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "and": {"_count": 1}}}, "cant": {"_count": 646, "blame": {"_count": 6, "them": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 1}, "the": {"_count": 1}}, "believe": {"_count": 25, "it": {"_count": 6}, "Im": {"_count": 1}, "youre": {"_count": 1}, "its": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 5}, "I": {"_count": 1}, "you": {"_count": 1}, "no": {"_count": 1}, "him": {"_count": 1}, "how": {"_count": 2}, "youve": {"_count": 1}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}, "we": {"_count": 1}}, "mean": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 15}, "!": {"_count": 4}, "?": {"_count": 1}}, "pretend": {"_count": 5, "hes": {"_count": 1}, "I": {"_count": 2}, "that": {"_count": 1}, "anymore": {"_count": 1}}, "stand": {"_count": 11, "it": {"_count": 5}, "much": {"_count": 1}, "another": {"_count": 2}, "around": {"_count": 1}, "what": {"_count": 1}, "waiting": {"_count": 1}}, "take": {"_count": 5, "him": {"_count": 1}, "care": {"_count": 1}, "all": {"_count": 1}, "me": {"_count": 1}, "her": {"_count": 1}}, "deliver": {"_count": 1, "them": {"_count": 1}}, "go": {"_count": 15, "off": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}, "giving": {"_count": 1}, "saying": {"_count": 1}, "tearing": {"_count": 1}, "around": {"_count": 1}, "up": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 2}, "home": {"_count": 1}, "thats": {"_count": 1}}, "tell": {"_count": 16, "yeh": {"_count": 1}, "you": {"_count": 8}, "which": {"_count": 1}, "me": {"_count": 3}, "whether": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}}, "spell": {"_count": 1, "it": {"_count": 1}}, "have": {"_count": 33, "their": {"_count": 1}, "": {"_count": 3}, "met": {"_count": 1}, "been": {"_count": 6}, "it": {"_count": 1}, "too": {"_count": 1}, "that": {"_count": 3}, "gone": {"_count": 1}, "a": {"_count": 1}, "done": {"_count": 3}, "left": {"_count": 3}, "you": {"_count": 1}, "expected": {"_count": 1}, "someone": {"_count": 1}, "Disapparated": {"_count": 1}, "had": {"_count": 2}, "brought": {"_count": 1}, "betrayed": {"_count": 1}, "said": {"_count": 1}}, "even": {"_count": 4, "remember": {"_count": 1}, "run": {"_count": 1}, "perform": {"_count": 1}, "make": {"_count": 1}}, "I": {"_count": 9, "go": {"_count": 2}, "": {"_count": 2}, "just": {"_count": 1}, "drink": {"_count": 1}, "cant": {"_count": 3}}, "remember": {"_count": 10, "it": {"_count": 1}, "how": {"_count": 2}, "said": {"_count": 1}, "what": {"_count": 3}, "all": {"_count": 1}, "his": {"_count": 1}, "enjoying": {"_count": 1}}, "expect": {"_count": 3, "him": {"_count": 1}, "mothers": {"_count": 1}, "it": {"_count": 1}}, "talk": {"_count": 2, "": {"_count": 1}, "freely": {"_count": 1}}, "see": {"_count": 35, "So": {"_count": 1}, "anything": {"_count": 1}, "you": {"_count": 3}, "where": {"_count": 2}, "them": {"_count": 1}, "Lupin": {"_count": 1}, "whats": {"_count": 2}, "any": {"_count": 2}, "the": {"_count": 2}, "Mr": {"_count": 1}, "a": {"_count": 3}, "him": {"_count": 2}, "dementors": {"_count": 1}, "old": {"_count": 1}, "Madam": {"_count": 1}, "no": {"_count": 1}, "how": {"_count": 2}, "unless": {"_count": 1}, "properly": {"_count": 1}, "why": {"_count": 1}, "her": {"_count": 1}, "anyone": {"_count": 1}, "Voldemort": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}}, "bend": {"_count": 1, "the": {"_count": 1}}, "share": {"_count": 1, "without": {"_count": 1}}, "find": {"_count": 9, "him": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 3}, "us": {"_count": 1}, "out": {"_count": 1}}, "you": {"_count": 17, "see": {"_count": 4}, "": {"_count": 10}, "do": {"_count": 1}, "find": {"_count": 1}, "tell": {"_count": 1}}, "be": {"_count": 41, "far": {"_count": 1}, "here": {"_count": 1}, "Harry": {"_count": 2}, "all": {"_count": 1}, "the": {"_count": 2}, "any": {"_count": 1}, "expected": {"_count": 1}, "worse": {"_count": 2}, "there": {"_count": 1}, "getting": {"_count": 1}, "Pettigrew": {"_count": 1}, "true": {"_count": 1}, "near": {"_count": 2}, "right": {"_count": 2}, "that": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 1}, "trusted": {"_count": 1}, "anything": {"_count": 2}, "fun": {"_count": 1}, "allowed": {"_count": 1}, "killed": {"_count": 1}, "long": {"_count": 1}, "pleased": {"_count": 1}, "B": {"_count": 1}, "thinking": {"_count": 1}, "up": {"_count": 1}, "involved": {"_count": 1}, "together": {"_count": 1}, "sure": {"_count": 2}, "a": {"_count": 1}, "what": {"_count": 1}}, "said": {"_count": 12, "Harry": {"_count": 3}, "Hagrid": {"_count": 1}, "Ron": {"_count": 4}, "Ginny": {"_count": 1}, "Professor": {"_count": 1}, "Malfoy": {"_count": 2}}, "play": {"_count": 3, "at": {"_count": 1}, "like": {"_count": 1}, "to": {"_count": 1}}, "tame": {"_count": 1, "dragons": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "read": {"_count": 1}, "": {"_count": 1}}, "keep": {"_count": 4, "him": {"_count": 1}, "writing": {"_count": 1}, "getting": {"_count": 1}, "the": {"_count": 1}}, "jus": {"_count": 1, "dump": {"_count": 1}}, "handle": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "Dont": {"_count": 1, "tell": {"_count": 1}}, "do": {"_count": 26, "Potter": {"_count": 1}, "better": {"_count": 1}, "this": {"_count": 3}, "it": {"_count": 10}, "that": {"_count": 2}, "night": {"_count": 1}, "much": {"_count": 1}, "anything": {"_count": 5}, "things": {"_count": 1}, "a": {"_count": 1}}, "win": {"_count": 1, "at": {"_count": 1}}, "afford": {"_count": 5, "to": {"_count": 3}, "you": {"_count": 1}, "a": {"_count": 1}}, "breathe": {"_count": 2, "": {"_count": 2}}, "use": {"_count": 5, "it": {"_count": 1}, "you": {"_count": 1}, "their": {"_count": 1}, "magic": {"_count": 2}}, "control": {"_count": 1, "that": {"_count": 1}}, "think": {"_count": 5, "who": {"_count": 1}, "why": {"_count": 2}, "what": {"_count": 1}, "of": {"_count": 1}}, "Dobby": {"_count": 2, "gave": {"_count": 1}, "mustnt": {"_count": 1}}, "magic": {"_count": 2, "myself": {"_count": 1}, "me": {"_count": 1}}, "get": {"_count": 17, "out": {"_count": 2}, "back": {"_count": 1}, "through": {"_count": 1}, "them": {"_count": 1}, "any": {"_count": 2}, "it": {"_count": 2}, "enough": {"_count": 1}, "round": {"_count": 1}, "the": {"_count": 1}, "Slughorn": {"_count": 1}, "in": {"_count": 3}, "at": {"_count": 1}}, "usually": {"_count": 1, "use": {"_count": 1}}, "we": {"_count": 7, "get": {"_count": 1}, "Apparate": {"_count": 1}, "use": {"_count": 1}, "just": {"_count": 1}, "have": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 1}}, "start": {"_count": 1, "flying": {"_count": 1}}, "Miss": {"_count": 1, "Pennyfeather": {"_count": 1}}, "let": {"_count": 7, "Harry": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "sir": {"_count": 1, "Dobby": {"_count": 1}}, "prove": {"_count": 3, "it": {"_count": 3}}, "burst": {"_count": 1, "in": {"_count": 1}}, "hurt": {"_count": 5, "you": {"_count": 1}, "it": {"_count": 1}, "This": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}}, "feel": {"_count": 2, "it": {"_count": 1}, "all": {"_count": 1}}, "stop": {"_count": 6, "them": {"_count": 1}, "the": {"_count": 1}, "Fred": {"_count": 1}, "you": {"_count": 1}, "thinking": {"_count": 1}, "Professor": {"_count": 1}}, "follow": {"_count": 1, "them": {"_count": 1}}, "say": {"_count": 9, "it": {"_count": 3}, "everything": {"_count": 1}, "much": {"_count": 1}, "I": {"_count": 1}, "Im": {"_count": 1}, "anything": {"_count": 1}, "fairer": {"_count": 1}}, "all": {"_count": 6, "have": {"_count": 1}, "be": {"_count": 2}, "go": {"_count": 1}, "leave": {"_count": 1}, "fit": {"_count": 1}}, "just": {"_count": 6, "Apparate": {"_count": 1}, "ignore": {"_count": 1}, "sit": {"_count": 1}, "put": {"_count": 1}, "rely": {"_count": 1}, "go": {"_count": 1}}, "give": {"_count": 4, "up": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 2}}, "know": {"_count": 3, "that": {"_count": 2}, "youre": {"_count": 1}}, "ride": {"_count": 1, "that": {"_count": 1}}, "bring": {"_count": 2, "a": {"_count": 1}, "himself": {"_count": 1}}, "attach": {"_count": 1, "an": {"_count": 1}}, "Harry": {"_count": 6, "": {"_count": 1}, "panted": {"_count": 1}, "youre": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "Im": {"_count": 1}}, "work": {"_count": 5, "I": {"_count": 1}, "out": {"_count": 4}}, "concentrate": {"_count": 2, "she": {"_count": 1}, "now": {"_count": 1}}, "commentate": {"_count": 1, "in": {"_count": 1}}, "possibly": {"_count": 3, "execute": {"_count": 1}, "Yeah": {"_count": 1}, "want": {"_count": 1}}, "Well": {"_count": 3, "tell": {"_count": 2}, "frankly": {"_count": 1}}, "kill": {"_count": 3, "him": {"_count": 3}}, "bear": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "hold": {"_count": 1, "him": {"_count": 1}}, "it": {"_count": 2, "be": {"_count": 1}, "wait": {"_count": 1}}, "imagine": {"_count": 3, "": {"_count": 1}, "why": {"_count": 1}, "any": {"_count": 1}}, "mend": {"_count": 1, "bones": {"_count": 1}}, "risk": {"_count": 1, "it": {"_count": 1}}, "miss": {"_count": 2, "the": {"_count": 1}, "what": {"_count": 1}}, "penetrate": {"_count": 1, "but": {"_count": 1}}, "resist": {"_count": 2, "showing": {"_count": 2}}, "walk": {"_count": 2, "around": {"_count": 1}, "into": {"_count": 1}}, "understand": {"_count": 5, "a": {"_count": 2}, "it": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 1}}, "spare": {"_count": 1, "anyone": {"_count": 1}}, "spot": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 3, "run": {"_count": 1}, "said": {"_count": 1}, "answered": {"_count": 1}}, "justify": {"_count": 1, "taking": {"_count": 1}}, "avoid": {"_count": 1, "us": {"_count": 1}}, "Apparate": {"_count": 4, "inside": {"_count": 1}, "Ive": {"_count": 1}, "or": {"_count": 1}, "anywhere": {"_count": 1}}, "leave": {"_count": 6, "your": {"_count": 1}, "unless": {"_count": 2}, "him": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}}, "stay": {"_count": 5, "long": {"_count": 3}, "here": {"_count": 2}}, "still": {"_count": 1, "spot": {"_count": 1}}, "help": {"_count": 8, "thinking": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 1}, "but": {"_count": 1}, "us": {"_count": 1}, "it": {"_count": 1}}, "manage": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "wait": {"_count": 13, "to": {"_count": 11}, "for": {"_count": 1}, "": {"_count": 1}}, "snapped": {"_count": 1, "Hermione": {"_count": 1}}, "come": {"_count": 8, "with": {"_count": 1}, "over": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}, "back": {"_count": 2}, "off": {"_count": 1}, "Professor": {"_count": 1}}, "deny": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "scare": {"_count": 1, "me": {"_count": 1}}, "abuse": {"_count": 1, "it": {"_count": 1}}, "slip": {"_count": 1, "off": {"_count": 1}}, "Disapparate": {"_count": 2, "on": {"_count": 2}}, "rule": {"_count": 1, "out": {"_count": 1}}, "aim": {"_count": 1, "too": {"_count": 1}}, "seriously": {"_count": 1, "believe": {"_count": 1}}, "transform": {"_count": 1, "": {"_count": 1}}, "break": {"_count": 2, "the": {"_count": 1}, "an": {"_count": 1}}, "pull": {"_count": 1, "that": {"_count": 1}}, "expel": {"_count": 1, "you": {"_count": 1}}, "theres": {"_count": 1, "provision": {"_count": 1}}, "make": {"_count": 3, "contact": {"_count": 1}, "anything": {"_count": 1}, "it": {"_count": 1}}, "carry": {"_count": 1, "out": {"_count": 1}}, "boss": {"_count": 1, "us": {"_count": 1}}, "throw": {"_count": 1, "it": {"_count": 1}}, "set": {"_count": 2, "him": {"_count": 2}}, "and": {"_count": 1, "I": {"_count": 1}}, "promise": {"_count": 2, "no": {"_count": 1}, "that": {"_count": 1}}, "call": {"_count": 2, "them": {"_count": 1}, "that": {"_count": 1}}, "advertise": {"_count": 1, "for": {"_count": 1}}, "they": {"_count": 5, "give": {"_count": 1}, "take": {"_count": 1}, "protect": {"_count": 1}, "": {"_count": 1}, "help": {"_count": 1}}, "test": {"_count": 1, "your": {"_count": 1}}, "put": {"_count": 2, "something": {"_count": 1}, "it": {"_count": 1}}, "guarantee": {"_count": 2, "owls": {"_count": 1}, "it": {"_count": 1}}, "its": {"_count": 1, "gone": {"_count": 1}}, "Viktor": {"_count": 1, "always": {"_count": 1}}, "really": {"_count": 3, "do": {"_count": 1}, "think": {"_count": 1}, "afford": {"_count": 1}}, "skive": {"_count": 1, "off": {"_count": 1}}, "theyre": {"_count": 1, "not": {"_count": 1}}, "send": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 2, "nice": {"_count": 1}, "can": {"_count": 1}}, "aaRGH": {"_count": 1, "get": {"_count": 1}}, "Dumbledore": {"_count": 1, "teach": {"_count": 1}}, "close": {"_count": 1, "his": {"_count": 1}}, "trust": {"_count": 4, "Dumbledore": {"_count": 1}, "anyone": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 1}}, "contradict": {"_count": 1, "you": {"_count": 1}}, "admit": {"_count": 1, "theyve": {"_count": 1}}, "inside": {"_count": 1, "this": {"_count": 1}}, "dock": {"_count": 1, "points": {"_count": 1}}, "sprout": {"_count": 1, "wings": {"_count": 1}}, "fly": {"_count": 1, "said": {"_count": 1}}, "hear": {"_count": 1, "you": {"_count": 1}}, "possess": {"_count": 1, "people": {"_count": 1}}, "land": {"_count": 1, "my": {"_count": 1}}, "honestly": {"_count": 2, "think": {"_count": 2}}, "shut": {"_count": 1, "myself": {"_count": 1}}, "check": {"_count": 1, "": {"_count": 1}}, "change": {"_count": 1, "her": {"_count": 1}}, "breed": {"_count": 1, "them": {"_count": 1}}, "cure": {"_count": 1, "": {"_count": 1}}, "Ogden": {"_count": 1, "": {"_count": 1}}, "complain": {"_count": 3, "it": {"_count": 1}, "he": {"_count": 1}, "again": {"_count": 1}}, "Professor": {"_count": 1, "Ive": {"_count": 1}}, "evade": {"_count": 1, "me": {"_count": 1}}, "kid": {"_count": 1, "me": {"_count": 1}}, "fault": {"_count": 1, "you": {"_count": 1}}, "visit": {"_count": 1, "other": {"_count": 1}}, "face": {"_count": 1, "it": {"_count": 1}}, "withdraw": {"_count": 1, "it": {"_count": 1}}, "dont": {"_count": 1, "make": {"_count": 1}}, "dance": {"_count": 2, "forever": {"_count": 1}, "anymore": {"_count": 1}}, "detect": {"_count": 1, "because": {"_count": 1}}, "split": {"_count": 1, "himself": {"_count": 1}}, "hide": {"_count": 1, "my": {"_count": 1}}, "once": {"_count": 1, "the": {"_count": 1}}, "repair": {"_count": 2, "itself": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "bit": {"_count": 1}}, "exist": {"_count": 2, "without": {"_count": 1}, "Ron": {"_count": 1}}, "happen": {"_count": 1, "shes": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "confirm": {"_count": 1, "this": {"_count": 1}}, "Remus": {"_count": 1, "Im": {"_count": 1}}, "y": {"_count": 1, "oh": {"_count": 1}}, "produce": {"_count": 1, "food": {"_count": 1}}, "rebuild": {"_count": 1, "it": {"_count": 1}}, "explain": {"_count": 1, "it": {"_count": 1}}, "ask": {"_count": 1, "Dumbledore": {"_count": 1}}, "blimey": {"_count": 1, "": {"_count": 1}}, "want": {"_count": 1, "You": {"_count": 1}}, "He": {"_count": 1, "can": {"_count": 1}}, "wear": {"_count": 1, "it": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "move": {"_count": 1, "her": {"_count": 1}}, "order": {"_count": 1, "them": {"_count": 1}}, "torture": {"_count": 1, "them": {"_count": 1}}, "touch": {"_count": 1, "them": {"_count": 1}}}, "gently": {"_count": 59, "": {"_count": 18, ".": {"_count": 18}}, "on": {"_count": 6, "the": {"_count": 4}, "a": {"_count": 1}, "Harrys": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 2}, "something": {"_count": 1}}, "with": {"_count": 3, "one": {"_count": 1}, "the": {"_count": 2}}, "onto": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "their": {"_count": 2}}, "prodding": {"_count": 1, "and": {"_count": 1}}, "is": {"_count": 1, "how": {"_count": 1}}, "away": {"_count": 1, "leaving": {"_count": 1}}, "looking": {"_count": 1, "down": {"_count": 1}}, "lifted": {"_count": 1, "one": {"_count": 1}}, "somewhere": {"_count": 1, "behind": {"_count": 1}}, "too": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "by": {"_count": 1, "putting": {"_count": 1}}, "but": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "its": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "through": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "dripping": {"_count": 1, "blood": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "rippling": {"_count": 1, "veil": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "through": {"_count": 1, "May": {"_count": 1}}, "released": {"_count": 1, "himself": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "But": {"_count": 1, "thats": {"_count": 1}}}, "Weve": {"_count": 157, "had": {"_count": 5, "precious": {"_count": 1}, "a": {"_count": 1}, "Sprouts": {"_count": 1}, "plenty": {"_count": 1}, "time": {"_count": 1}}, "no": {"_count": 1, "business": {"_count": 1}}, "come": {"_count": 5, "ter": {"_count": 1}, "to": {"_count": 3}, "this": {"_count": 1}}, "never": {"_count": 4, "blown": {"_count": 1}, "been": {"_count": 3}}, "already": {"_count": 3, "told": {"_count": 1}, "bought": {"_count": 1}, "got": {"_count": 1}}, "eaten": {"_count": 1, "all": {"_count": 1}}, "got": {"_count": 64, "to": {"_count": 33}, "lessons": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "three": {"_count": 1}, "two": {"_count": 2}, "our": {"_count": 2}, "about": {"_count": 4}, "exactly": {"_count": 1}, "a": {"_count": 5}, "food": {"_count": 1}, "wizards": {"_count": 1}, "Bludgers": {"_count": 1}, "another": {"_count": 1}, "D": {"_count": 1}, "exams": {"_count": 1}, "Ministry": {"_count": 1}, "Quidditch": {"_count": 1}, "Aurors": {"_count": 1}, "him": {"_count": 1}, "orders": {"_count": 1}, "Potter": {"_count": 1}, "this": {"_count": 1}}, "just": {"_count": 3, "got": {"_count": 1}, "developed": {"_count": 1}, "been": {"_count": 1}}, "won": {"_count": 4, "": {"_count": 2}, "the": {"_count": 2}}, "heard": {"_count": 1, "said": {"_count": 1}}, "only": {"_count": 3, "used": {"_count": 1}, "looked": {"_count": 1}, "got": {"_count": 1}}, "been": {"_count": 21, "here": {"_count": 2}, "improving": {"_count": 1}, "having": {"_count": 1}, "hearing": {"_count": 1}, "working": {"_count": 1}, "really": {"_count": 1}, "told": {"_count": 2}, "decontaminating": {"_count": 1}, "trying": {"_count": 2}, "wanting": {"_count": 1}, "in": {"_count": 1}, "terrified": {"_count": 1}, "walking": {"_count": 1}, "down": {"_count": 1}, "through": {"_count": 1}, "betrayed": {"_count": 1}, "over": {"_count": 1}, "Disapparating": {"_count": 1}}, "trained": {"_count": 1, "harder": {"_count": 1}}, "decided": {"_count": 1, "this": {"_count": 1}}, "still": {"_count": 2, "got": {"_count": 2}}, "forgotten": {"_count": 2, "the": {"_count": 1}, "someone": {"_count": 1}}, "lost": {"_count": 1, "the": {"_count": 1}}, "used": {"_count": 1, "it": {"_count": 1}}, "checked": {"_count": 1, "for": {"_count": 1}}, "met": {"_count": 2, "he": {"_count": 1}, "before": {"_count": 1}}, "gone": {"_count": 2, "back": {"_count": 1}, "down": {"_count": 1}}, "done": {"_count": 2, "dangerous": {"_count": 1}, "all": {"_count": 1}}, "seen": {"_count": 3, "him": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "taken": {"_count": 2, "what": {"_count": 2}}, "given": {"_count": 1, "up": {"_count": 1}}, "set": {"_count": 1, "up": {"_count": 1}}, "told": {"_count": 3, "you": {"_count": 1}, "them": {"_count": 1}, "Bill": {"_count": 1}}, "managed": {"_count": 2, "to": {"_count": 2}}, "said": {"_count": 1, "enough": {"_count": 1}}, "all": {"_count": 2, "got": {"_count": 2}}, "received": {"_count": 1, "information": {"_count": 1}}, "asked": {"_count": 1, "but": {"_count": 1}}, "always": {"_count": 1, "known": {"_count": 1}}, "tried": {"_count": 1, "the": {"_count": 1}}, "missed": {"_count": 1, "you": {"_count": 1}}, "bin": {"_count": 1, "tergether": {"_count": 1}}, "risked": {"_count": 1, "a": {"_count": 1}}, "leaked": {"_count": 1, "a": {"_count": 1}}, "caught": {"_count": 2, "Potter": {"_count": 1}, "Harry": {"_count": 1}}, "captured": {"_count": 1, "Harry": {"_count": 1}}, "named": {"_count": 1, "him": {"_count": 1}}}, "precious": {"_count": 19, "little": {"_count": 2, "to": {"_count": 1}, "Death": {"_count": 1}}, "stones": {"_count": 1, "through": {"_count": 1}}, "pumpkins": {"_count": 1, "": {"_count": 1}}, "sixty": {"_count": 1, "minutes": {"_count": 1}}, "dogs": {"_count": 1, "but": {"_count": 1}}, "Potters": {"_count": 1, "delicate": {"_count": 1}}, "few": {"_count": 1, "wizards": {"_count": 1}}, "books": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "if": {"_count": 1, "Lucius": {"_count": 1}}, "son": {"_count": 1, "out": {"_count": 1}}, "Potter": {"_count": 1, "obviously": {"_count": 1}}, "fragment": {"_count": 1, "of": {"_count": 1}}, "soul": {"_count": 1, "": {"_count": 1}}, "gems": {"_count": 1, "glittered": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "Horcrux": {"_count": 1, "had": {"_count": 1}}, "To": {"_count": 1, "think": {"_count": 1}}}, "celebrate": {"_count": 10, "for": {"_count": 1, "eleven": {"_count": 1}}, "Slytherin": {"_count": 1, "s": {"_count": 1}}, "the": {"_count": 2, "day": {"_count": 1}, "union": {"_count": 1}}, "with": {"_count": 2, "you": {"_count": 1}, "us": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Mr": {"_count": 1, "Weasleys": {"_count": 1}}, "your": {"_count": 1, "birthday": {"_count": 1}}, "even": {"_count": 1, "in": {"_count": 1}}}, "eleven": {"_count": 56, "years": {"_count": 7, "": {"_count": 1}, "I": {"_count": 1}, "before": {"_count": 1}, "arrived": {"_count": 1}, "old": {"_count": 3}}, "every": {"_count": 1, "day": {"_count": 1}}, "in": {"_count": 1, "ten": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "inches": {"_count": 2, "nice": {"_count": 1}, "long": {"_count": 1}}, "oclock": {"_count": 12, "he": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 4}, "the": {"_count": 1}, "tonight": {"_count": 1}, "that": {"_count": 1}, "approached": {"_count": 1}, "they": {"_count": 1}, "behind": {"_count": 1}}, "silver": {"_count": 1, "Sickles": {"_count": 1}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "the": {"_count": 3, "match": {"_count": 1}, "Gryffindor": {"_count": 1}, "most": {"_count": 1}}, "governors": {"_count": 1, "contacted": {"_count": 1}}, "on": {"_count": 2, "it": {"_count": 1}, "our": {"_count": 1}}, "people": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "evening": {"_count": 1}}, "he": {"_count": 2, "looked": {"_count": 1}, "nodded": {"_count": 1}}, "and": {"_count": 4, "thirteen": {"_count": 3}, "you": {"_count": 1}}, "thudded": {"_count": 1, "on": {"_count": 1}}, "Hermione": {"_count": 1, "wandered": {"_count": 1}}, "Sickles": {"_count": 1, "each": {"_count": 1}}, "now": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 1, "situated": {"_count": 1}}, "to": {"_count": 2, "receive": {"_count": 1}, "sit": {"_count": 1}}, "p": {"_count": 1, "": {"_count": 1}}, "\u2018Outstanding": {"_count": 1, "O": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "tomorrow": {"_count": 1, "morning": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}}, "irritably": {"_count": 49, "": {"_count": 24, ".": {"_count": 24}}, "try": {"_count": 1, "an": {"_count": 1}}, "turning": {"_count": 2, "back": {"_count": 1}, "a": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "correctly": {"_count": 1, "interpreting": {"_count": 1}}, "as": {"_count": 3, "Viktor": {"_count": 1}, "the": {"_count": 1}, "though": {"_count": 1}}, "after": {"_count": 2, "them": {"_count": 1}, "crossing": {"_count": 1}}, "but": {"_count": 2, "a": {"_count": 1}, "only": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "now": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "thrusting": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "ought": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "while": {"_count": 1, "his": {"_count": 1}}, "rounding": {"_count": 1, "on": {"_count": 1}}, "half": {"_count": 1, "proudly": {"_count": 1}}, "jerking": {"_count": 1, "his": {"_count": 1}}, "overhearing": {"_count": 1, "Harry": {"_count": 1}}}, "lose": {"_count": 58, "our": {"_count": 1, "heads": {"_count": 1}}, "it": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "if": {"_count": 1}}, "House": {"_count": 1, "points": {"_count": 1}}, "Gryffindor": {"_count": 1, "if": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 2}}, "him": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "us": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 8, "lead": {"_count": 1}, "House": {"_count": 1}, "case": {"_count": 1}, "Cup": {"_count": 1}, "will": {"_count": 1}, "opportunity": {"_count": 1}, "upcoming": {"_count": 1}, "next": {"_count": 1}}, "and": {"_count": 2, "everything": {"_count": 1}, "we": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "his": {"_count": 5, "head": {"_count": 2}, "Wheezy": {"_count": 1}, "temper": {"_count": 1}, "wand": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "you": {"_count": 2, "again": {"_count": 1}, "as": {"_count": 1}}, "a": {"_count": 2, "point": {"_count": 1}, "bet": {"_count": 1}}, "my": {"_count": 1, "voice": {"_count": 1}}, "by": {"_count": 1, "at": {"_count": 1}}, "another": {"_count": 1, "match": {"_count": 1}}, "this": {"_count": 2, "game": {"_count": 1}, "match": {"_count": 1}}, "control": {"_count": 3, "like": {"_count": 2}, "before": {"_count": 1}}, "face": {"_count": 1, "in": {"_count": 1}}, "ourselves": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "jobs": {"_count": 1}}, "your": {"_count": 3, "temper": {"_count": 3}}, "them": {"_count": 1, "forever": {"_count": 1}}, "confidence": {"_count": 1, "when": {"_count": 1}}, "to": {"_count": 1, "Hufflepuff": {"_count": 1}}, "now": {"_count": 1, "is": {"_count": 1}}, "her": {"_count": 1, "nerve": {"_count": 1}}, "what": {"_count": 1, "little": {"_count": 1}}, "me": {"_count": 1, "job": {"_count": 1}}, "height": {"_count": 1, "In": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "sight": {"_count": 1, "now": {"_count": 1}}}, "heads": {"_count": 179, "": {"_count": 41, ".": {"_count": 40}, "?": {"_count": 1}}, "down": {"_count": 3, "the": {"_count": 1}, "on": {"_count": 1}, "through": {"_count": 1}}, "both": {"_count": 2, "of": {"_count": 1}, "staring": {"_count": 1}}, "of": {"_count": 22, "the": {"_count": 11}, "some": {"_count": 2}, "what": {"_count": 1}, "Beauxbatons": {"_count": 1}, "a": {"_count": 1}, "many": {"_count": 1}, "Kreachers": {"_count": 1}, "screaming": {"_count": 1}, "Bill": {"_count": 1}, "Harry": {"_count": 1}, "Voldemorts": {"_count": 1}}, "he": {"_count": 2, "wailed": {"_count": 1}, "saw": {"_count": 1}}, "and": {"_count": 22, "the": {"_count": 1}, "then": {"_count": 1}, "two": {"_count": 1}, "pointed": {"_count": 1}, "off": {"_count": 1}, "stuff": {"_count": 1}, "flexing": {"_count": 1}, "seats": {"_count": 1}, "long": {"_count": 1}, "looking": {"_count": 1}, "rolled": {"_count": 1}, "laughing": {"_count": 1}, "even": {"_count": 1}, "were": {"_count": 1}, "stared": {"_count": 1}, "could": {"_count": 1}, "with": {"_count": 1}, "Phineas": {"_count": 1}, "hands": {"_count": 1}, "a": {"_count": 1}, "waited": {"_count": 1}, "shoulders": {"_count": 1}}, "could": {"_count": 1, "do": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "him": {"_count": 1}}, "together": {"_count": 11, "to": {"_count": 3}, "no": {"_count": 1}, "quills": {"_count": 1}, "during": {"_count": 1}, "at": {"_count": 1}, "whispering": {"_count": 1}, "later": {"_count": 1}, "and": {"_count": 2}}, "are": {"_count": 1, "all": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "have": {"_count": 1, "parted": {"_count": 1}}, "not": {"_count": 1, "taking": {"_count": 1}}, "were": {"_count": 9, "close": {"_count": 1}, "sticking": {"_count": 1}, "hooded": {"_count": 1}, "lolling": {"_count": 1}, "emerging": {"_count": 1}, "dragonish": {"_count": 1}, "turning": {"_count": 1}, "still": {"_count": 1}, "suddenly": {"_count": 1}}, "inclined": {"_count": 1, "toward": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "their": {"_count": 1}}, "turned": {"_count": 11, "toward": {"_count": 1}, "those": {"_count": 1}, "in": {"_count": 5}, "and": {"_count": 2}, "from": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 2}, "still": {"_count": 1}}, "bowed": {"_count": 2, "against": {"_count": 2}}, "incapable": {"_count": 1, "of": {"_count": 1}}, "looking": {"_count": 2, "apprehensive": {"_count": 1}, "blank": {"_count": 1}}, "to": {"_count": 3, "read": {"_count": 1}, "the": {"_count": 1}, "frown": {"_count": 1}}, "cackling": {"_count": 1, "and": {"_count": 1}}, "banged": {"_count": 1, "together": {"_count": 1}}, "bent": {"_count": 2, "over": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 4, "their": {"_count": 1}, "the": {"_count": 3}}, "or": {"_count": 1, "eyes": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "their": {"_count": 1}, "invisible": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "mounted": {"_count": 1, "on": {"_count": 1}}, "belonged": {"_count": 1, "to": {"_count": 1}}, "glad": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 1, "at": {"_count": 1}}, "they": {"_count": 2, "revealed": {"_count": 1}, "would": {"_count": 1}}, "been": {"_count": 1, "thatched": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "which": {"_count": 1, "shone": {"_count": 1}}, "throwing": {"_count": 1, "back": {"_count": 1}}, "lolling": {"_count": 1, "back": {"_count": 1}}, "as": {"_count": 2, "their": {"_count": 1}, "he": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "whether": {"_count": 1, "a": {"_count": 1}}, "like": {"_count": 1, "fluffy": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "moaned": {"_count": 1}}, "screaming": {"_count": 1, "with": {"_count": 1}}, "The": {"_count": 1, "dementors": {"_count": 1}}, "frantically": {"_count": 1, "looking": {"_count": 1}}}, "downright": {"_count": 9, "careless": {"_count": 1, "out": {"_count": 1}}, "lie": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "scared": {"_count": 1, "": {"_count": 1}}, "alarmed": {"_count": 1, "when": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "alarming": {"_count": 1, "in": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}, "unpleasant": {"_count": 1, "": {"_count": 1}}}, "careless": {"_count": 8, "out": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "his": {"_count": 1}}, "way": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "so": {"_count": 1}}, "remember": {"_count": 1, "that": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}}, "streets": {"_count": 9, "in": {"_count": 1, "broad": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "before": {"_count": 1}}, "of": {"_count": 1, "Hogsmeade": {"_count": 1}}, "scavenging": {"_count": 1, "newspapers": {"_count": 1}}, "so": {"_count": 1, "often": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "linked": {"_count": 1}}, "were": {"_count": 1, "almost": {"_count": 1}}}, "swapping": {"_count": 4, "rumors": {"_count": 1, "": {"_count": 1}}, "Chocolate": {"_count": 2, "Frog": {"_count": 2}}, "tales": {"_count": 1, "of": {"_count": 1}}}, "rumors": {"_count": 35, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "that": {"_count": 9, "are": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "several": {"_count": 1}, "have": {"_count": 2}, "YouKnowWho": {"_count": 1}, "he": {"_count": 2}}, "about": {"_count": 4, "Malfoys": {"_count": 1}, "a": {"_count": 1}, "Albus": {"_count": 1}, "him": {"_count": 1}}, "someone": {"_count": 1, "said": {"_count": 1}}, "now": {"_count": 1, "shes": {"_count": 1}}, "flying": {"_count": 1, "around": {"_count": 1}}, "of": {"_count": 2, "critical": {"_count": 1}, "a": {"_count": 1}}, "have": {"_count": 2, "reached": {"_count": 1}, "been": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "years": {"_count": 1}}, "this": {"_count": 1, "summer": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "still": {"_count": 1, "circulating": {"_count": 1}}, "going": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 1, "mental": {"_count": 1}}, "circulating": {"_count": 1, "about": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "weve": {"_count": 1, "been": {"_count": 1}}}, "threw": {"_count": 206, "a": {"_count": 9, "sharp": {"_count": 1}, "dirty": {"_count": 1}, "metal": {"_count": 1}, "loud": {"_count": 1}, "disgruntled": {"_count": 1}, "very": {"_count": 1}, "Galleon": {"_count": 1}, "pinch": {"_count": 1}, "few": {"_count": 1}}, "them": {"_count": 6, "into": {"_count": 3}, "out": {"_count": 1}, "onto": {"_count": 1}, "over": {"_count": 1}}, "him": {"_count": 15, "into": {"_count": 1}, "back": {"_count": 2}, "yelping": {"_count": 1}, "off": {"_count": 1}, "backward": {"_count": 1}, "bodily": {"_count": 1}, "a": {"_count": 5}, "The": {"_count": 1}, "from": {"_count": 1}, "another": {"_count": 1}}, "it": {"_count": 34, "into": {"_count": 5}, "to": {"_count": 2}, "as": {"_count": 1}, "at": {"_count": 2}, "out": {"_count": 2}, "back": {"_count": 4}, "aside": {"_count": 2}, "and": {"_count": 1}, "down": {"_count": 1}, "open": {"_count": 2}, "onto": {"_count": 1}, "very": {"_count": 1}, "Professor": {"_count": 1}, "in": {"_count": 1}, "hard": {"_count": 1}, "over": {"_count": 6}, "with": {"_count": 1}}, "the": {"_count": 37, "owl": {"_count": 1}, "glass": {"_count": 1}, "chalk": {"_count": 1}, "cloak": {"_count": 4}, "powder": {"_count": 1}, "new": {"_count": 1}, "last": {"_count": 2}, "Invisibility": {"_count": 5}, "receiver": {"_count": 1}, "toffees": {"_count": 1}, "egg": {"_count": 1}, "magazine": {"_count": 1}, "box": {"_count": 1}, "bag": {"_count": 3}, "Quaffle": {"_count": 2}, "pieces": {"_count": 1}, "next": {"_count": 1}, "Gryffindor": {"_count": 1}, "steak": {"_count": 1}, "copy": {"_count": 1}, "door": {"_count": 1}, "book": {"_count": 1}, "package": {"_count": 1}, "scales": {"_count": 1}, "rest": {"_count": 1}, "locket": {"_count": 1}}, "his": {"_count": 12, "wand": {"_count": 3}, "cloak": {"_count": 1}, "whole": {"_count": 1}, "arms": {"_count": 2}, "last": {"_count": 1}, "ingredients": {"_count": 1}, "books": {"_count": 1}, "long": {"_count": 1}, "new": {"_count": 1}}, "her": {"_count": 7, "arms": {"_count": 3}, "bag": {"_count": 1}, "book": {"_count": 1}, "hands": {"_count": 1}, "hand": {"_count": 1}}, "their": {"_count": 1, "shoulders": {"_count": 1}}, "sausages": {"_count": 1, "into": {"_count": 1}}, "apples": {"_count": 1, "for": {"_count": 1}}, "an": {"_count": 1, "arm": {"_count": 1}}, "this": {"_count": 2, "Snape": {"_count": 1}, "egg": {"_count": 1}}, "himself": {"_count": 21, "flat": {"_count": 2}, "forward": {"_count": 2}, "under": {"_count": 1}, "into": {"_count": 3}, "onto": {"_count": 1}, "toward": {"_count": 1}, "in": {"_count": 1}, "behind": {"_count": 1}, "around": {"_count": 1}, "down": {"_count": 1}, "facedown": {"_count": 1}, "face": {"_count": 1}, "sideways": {"_count": 1}, "back": {"_count": 2}, "out": {"_count": 1}, "to": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "you": {"_count": 2, "off": {"_count": 1}, "out": {"_count": 1}}, "something": {"_count": 2, "down": {"_count": 1}, "into": {"_count": 1}}, "each": {"_count": 1, "back": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "herself": {"_count": 7, "on": {"_count": 1}, "into": {"_count": 4}, "down": {"_count": 1}, "aside": {"_count": 1}}, "out": {"_count": 3, "his": {"_count": 2}, "an": {"_count": 1}}, "Fred": {"_count": 1, "an": {"_count": 1}}, "back": {"_count": 7, "her": {"_count": 3}, "his": {"_count": 3}, "the": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "out": {"_count": 1}}, "Dobby": {"_count": 1, "a": {"_count": 1}}, "caution": {"_count": 2, "to": {"_count": 2}}, "Witch": {"_count": 1, "Weekly": {"_count": 1}}, "aside": {"_count": 2, "the": {"_count": 2}}, "open": {"_count": 2, "the": {"_count": 2}}, "Owl": {"_count": 1, "Treats": {"_count": 1}}, "on": {"_count": 1, "an": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "another": {"_count": 1, "handful": {"_count": 1}}, "themselves": {"_count": 2, "down": {"_count": 1}, "into": {"_count": 1}}, "Harry": {"_count": 2, "from": {"_count": 1}, "a": {"_count": 1}}, "Ron": {"_count": 1, "a": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "that": {"_count": 1, "too": {"_count": 1}}, "me": {"_count": 1, "out": {"_count": 1}}, "off": {"_count": 2, "her": {"_count": 2}}, "Dumbledore": {"_count": 1, "a": {"_count": 1}}, "away": {"_count": 2, "the": {"_count": 2}}, "Numerology": {"_count": 1, "and": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 2, "each": {"_count": 1}, "to": {"_count": 1}}, "Hermione": {"_count": 1, "many": {"_count": 1}}, "Greybacks": {"_count": 1, "wand": {"_count": 1}}, "others": {"_count": 1, "behind": {"_count": 1}}}, "sharp": {"_count": 83, "sideways": {"_count": 1, "glance": {"_count": 1}}, "look": {"_count": 5, "at": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}}, "tap": {"_count": 1, "on": {"_count": 1}}, "turn": {"_count": 1, "and": {"_count": 1}}, "squeal": {"_count": 1, "and": {"_count": 1}}, "little": {"_count": 3, "teeth": {"_count": 1}, "fists": {"_count": 1}, "horns": {"_count": 1}}, "voice": {"_count": 4, "": {"_count": 2}, "Somebody": {"_count": 1}, "spoke": {"_count": 1}}, "hot": {"_count": 1, "pain": {"_count": 1}}, "about": {"_count": 1, "face": {"_count": 1}}, "beaks": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "eyes": {"_count": 4, "": {"_count": 1}, "were": {"_count": 1}, "falling": {"_count": 1}, "darting": {"_count": 1}}, "clunks": {"_count": 1, "the": {"_count": 1}}, "slap": {"_count": 1, "to": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "intake": {"_count": 3, "of": {"_count": 3}}, "golden": {"_count": 1, "beak": {"_count": 1}}, "head": {"_count": 3, "and": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "pain": {"_count": 5, "in": {"_count": 3}, "again": {"_count": 1}, "rose": {"_count": 1}}, "snap": {"_count": 2, "": {"_count": 2}}, "painful": {"_count": 1, "gasps": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "blast": {"_count": 1, "on": {"_count": 1}}, "cruelbeaked": {"_count": 1, "bird": {"_count": 1}}, "bursts": {"_count": 1, "": {"_count": 1}}, "relief": {"_count": 2, "and": {"_count": 1}, "against": {"_count": 1}}, "shock": {"_count": 1, "We": {"_count": 1}}, "upswing": {"_count": 1, "in": {"_count": 1}}, "profile": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 1, "Potter": {"_count": 1}}, "as": {"_count": 2, "photographs": {"_count": 1}, "reality": {"_count": 1}}, "teeth": {"_count": 1, "bared": {"_count": 1}}, "prod": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 3, "not": {"_count": 1}, "clear": {"_count": 2}}, "fingers": {"_count": 1, "leaving": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "quill": {"_count": 1}}, "jab": {"_count": 1, "": {"_count": 1}}, "beak": {"_count": 1, "but": {"_count": 1}}, "poke": {"_count": 1, "": {"_count": 1}}, "nose": {"_count": 2, "flare": {"_count": 1}, "was": {"_count": 1}}, "edge": {"_count": 2, "of": {"_count": 1}, "that": {"_count": 1}}, "blow": {"_count": 1, "to": {"_count": 1}}, "woman": {"_count": 1, "": {"_count": 1}}, "Tom": {"_count": 2, "said": {"_count": 1}, "you": {"_count": 1}}, "QuickQuotes": {"_count": 1, "Quill": {"_count": 1}}, "rap": {"_count": 1, "on": {"_count": 1}}, "gulps": {"_count": 1, "of": {"_count": 1}}, "detail": {"_count": 1, "even": {"_count": 1}}, "blade": {"_count": 1, "from": {"_count": 1}}}, "sideways": {"_count": 107, "glance": {"_count": 3, "at": {"_count": 3}}, "look": {"_count": 2, "at": {"_count": 2}}, "looks": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "off": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "into": {"_count": 6, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "Gregory": {"_count": 1}}, "Next": {"_count": 1, "thing": {"_count": 1}}, "at": {"_count": 27, "Harry": {"_count": 4}, "the": {"_count": 1}, "Ron": {"_count": 3}, "Pettigrews": {"_count": 1}, "her": {"_count": 1}, "Cedric": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 1}, "Dudley": {"_count": 1}, "Dumbledore": {"_count": 4}, "Hermione": {"_count": 5}, "Luna": {"_count": 1}, "Sirius": {"_count": 1}, "Tonks": {"_count": 1}, "his": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "he": {"_count": 2, "realized": {"_count": 1}, "stared": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "and": {"_count": 9, "fell": {"_count": 2}, "then": {"_count": 1}, "landed": {"_count": 1}, "lay": {"_count": 2}, "grabbed": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "one": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "they": {"_count": 1}, "Neville": {"_count": 1}}, "to": {"_count": 7, "manage": {"_count": 1}, "see": {"_count": 1}, "try": {"_count": 1}, "glare": {"_count": 1}, "look": {"_count": 1}, "repeat": {"_count": 1}, "avoid": {"_count": 1}}, "from": {"_count": 1, "room": {"_count": 1}}, "so": {"_count": 4, "he": {"_count": 1}, "that": {"_count": 2}, "as": {"_count": 1}}, "flattening": {"_count": 1, "a": {"_count": 1}}, "onto": {"_count": 5, "the": {"_count": 2}, "his": {"_count": 2}, "her": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "apparently": {"_count": 1, "looking": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "squeezing": {"_count": 1, "it": {"_count": 1}}, "clutching": {"_count": 1, "her": {"_count": 1}}, "feeling": {"_count": 1, "around": {"_count": 1}}, "thought": {"_count": 1, "Levicorpus": {"_count": 1}}, "unconscious": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "narrowly": {"_count": 1, "avoiding": {"_count": 1}}, "shoving": {"_count": 1, "Ron": {"_count": 1}}, "tied": {"_count": 1, "backto": {"_count": 1}}, "silently": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}}, "glance": {"_count": 71, "at": {"_count": 35, "Dumbledore": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 8}, "Ron": {"_count": 4}, "Harry": {"_count": 4}, "Ginny": {"_count": 1}, "Malfoy": {"_count": 1}, "him": {"_count": 2}, "Black": {"_count": 1}, "his": {"_count": 1}, "Fred": {"_count": 2}, "Professor": {"_count": 1}, "Umbridges": {"_count": 1}, "Hagrid": {"_count": 1}, "Snape": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 2}, "Harrys": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "why": {"_count": 1, "it": {"_count": 1}}, "what": {"_count": 1, "Filch": {"_count": 1}}, "that": {"_count": 1, "this": {"_count": 1}}, "edgily": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "Professor": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 4, "be": {"_count": 3}, "spare": {"_count": 1}}, "toward": {"_count": 4, "the": {"_count": 2}, "Professor": {"_count": 1}, "Aunt": {"_count": 1}}, "the": {"_count": 1, "corridor": {"_count": 1}}, "she": {"_count": 2, "threw": {"_count": 1}, "shot": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 1}, "and": {"_count": 2}}, "and": {"_count": 4, "made": {"_count": 1}, "plunged": {"_count": 1}, "picking": {"_count": 1}, "the": {"_count": 1}}, "back": {"_count": 3, "at": {"_count": 2}, "wondering": {"_count": 1}}, "showed": {"_count": 1, "him": {"_count": 1}}, "before": {"_count": 1, "peering": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 1, "however": {"_count": 1}}}, "fine": {"_count": 151, "thing": {"_count": 1, "it": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 25}, "!": {"_count": 8}}, "day": {"_count": 2, "theyd": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 18, "Harry": {"_count": 6}, "Ron": {"_count": 1}, "Madam": {"_count": 1}, "Mr": {"_count": 3}, "Hagrid": {"_count": 2}, "the": {"_count": 1}, "Hermione": {"_count": 2}, "Luna": {"_count": 1}, "Lily": {"_count": 1}}, "Molly": {"_count": 1, "dont": {"_count": 1}}, "taste": {"_count": 1, "sir": {"_count": 1}}, "thanks": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "example": {"_count": 1, "to": {"_count": 1}}, "gold": {"_count": 3, "lettering": {"_count": 1}, "chain": {"_count": 1}, "spikes": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 2}, "shrugged": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "by": {"_count": 3, "him": {"_count": 1}, "me": {"_count": 1}, "yourself": {"_count": 1}}, "so": {"_count": 1, "whats": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 3}, "told": {"_count": 1}}, "if": {"_count": 1, "that": {"_count": 1}}, "young": {"_count": 1, "yeomen": {"_count": 1}}, "old": {"_count": 2, "broom": {"_count": 1}, "house": {"_count": 1}}, "and": {"_count": 2, "breezy": {"_count": 1}, "I": {"_count": 1}}, "Hermione": {"_count": 1, "told": {"_count": 1}}, "its": {"_count": 2, "flying": {"_count": 1}, "your": {"_count": 1}}, "summers": {"_count": 1, "morning": {"_count": 1}}, "weather": {"_count": 1, "even": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}, "way": {"_count": 1, "to": {"_count": 1}}, "thread": {"_count": 1, "of": {"_count": 1}}, "Neville": {"_count": 1, "gabbled": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "silk": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "yours": {"_count": 1}}, "but": {"_count": 3, "I": {"_count": 1}, "he": {"_count": 1}, "Im": {"_count": 1}}, "working": {"_count": 1, "order": {"_count": 1}}, "male": {"_count": 1, "unicorn": {"_count": 1}}, "condition": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 1, "maker": {"_count": 1}}, "indeed": {"_count": 1, "Hermione": {"_count": 1}}, "after": {"_count": 1, "hes": {"_count": 1}}, "streams": {"_count": 1, "of": {"_count": 1}}, "powder": {"_count": 1, "but": {"_count": 1}}, "trickle": {"_count": 1, "of": {"_count": 1}}, "person": {"_count": 1, "who": {"_count": 1}}, "lied": {"_count": 2, "Harry": {"_count": 2}}, "misty": {"_count": 1, "drizzle": {"_count": 1}}, "Potty": {"_count": 1, "friend": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "welldressed": {"_count": 1, "woman": {"_count": 1}}, "in": {"_count": 1, "fact": {"_count": 1}}, "people": {"_count": 2, "fine": {"_count": 1}, "": {"_count": 1}}, "distinctions": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 1, "minute": {"_count": 1}}, "gasped": {"_count": 1, "Harry": {"_count": 1}}, "Headmaster": {"_count": 1, "she": {"_count": 1}}, "catch": {"_count": 1, "and": {"_count": 1}}, "clear": {"_count": 1, "day": {"_count": 1}}, "warm": {"_count": 1, "day": {"_count": 1}}, "journey": {"_count": 1, "was": {"_count": 1}}, "weve": {"_count": 1, "made": {"_count": 1}}, "remember": {"_count": 1, "she": {"_count": 1}}, "sir": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 1}, "told": {"_count": 1}, "assured": {"_count": 1}}, "marble": {"_count": 1, "fireplace": {"_count": 1}}, "antique": {"_count": 1, "rug": {"_count": 1}}, "Gesture": {"_count": 1, "": {"_count": 1}}, "glowing": {"_count": 1, "chain": {"_count": 1}}, "with": {"_count": 3, "me": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "the": {"_count": 1, "dungeon": {"_count": 1}}, "spirit": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "filigree": {"_count": 1, "clasp": {"_count": 1}}, "bones": {"_count": 1, "of": {"_count": 1}}, "spring": {"_count": 1, "day": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "son": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 1, "understand": {"_count": 1}}, "woman": {"_count": 1, "whispered": {"_count": 1}}, "film": {"_count": 1, "of": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "me": {"_count": 1, "but": {"_count": 1}}, "powdering": {"_count": 1, "of": {"_count": 1}}, "golden": {"_count": 1, "chains": {"_count": 1}}}, "YouKnowWho": {"_count": 129, "seems": {"_count": 1, "to": {"_count": 1}}, "has": {"_count": 2, "gone": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 12}, "?": {"_count": 5}, "!": {"_count": 2}}, "was": {"_count": 10, "afraid": {"_count": 1}, "one": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 2}, "ever": {"_count": 2}, "angry": {"_count": 1}, "bound": {"_count": 1}, "not": {"_count": 1}}, "killed": {"_count": 1, "em": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "wont": {"_count": 1, "touch": {"_count": 1}}, "Call": {"_count": 1, "him": {"_count": 1}}, "disappeared": {"_count": 1, "said": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 2, "to": {"_count": 1}, "again": {"_count": 1}}, "and": {"_count": 6, "hes": {"_count": 1}, "he": {"_count": 2}, "his": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}}, "had": {"_count": 3, "a": {"_count": 1}, "got": {"_count": 1}, "returned": {"_count": 1}}, "could": {"_count": 1, "search": {"_count": 1}}, "informed": {"_count": 1, "of": {"_count": 1}}, "met": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 2, "cared": {"_count": 1}, "grabbed": {"_count": 1}}, "is": {"_count": 6, "he": {"_count": 1}, "": {"_count": 2}, "operating": {"_count": 1}, "as": {"_count": 1}, "interested": {"_count": 1}}, "alone": {"_count": 1, "and": {"_count": 1}}, "how": {"_count": 1, "come": {"_count": 1}}, "lost": {"_count": 1, "power": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "said": {"_count": 3, "Mr": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "really": {"_count": 1, "has": {"_count": 1}}, "came": {"_count": 3, "back": {"_count": 2}, "": {"_count": 1}}, "knows": {"_count": 1, "Dumbledores": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 2}}, "Well": {"_count": 1, "you": {"_count": 1}}, "s": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "Listen": {"_count": 1}}, "finished": {"_count": 1, "Neville": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "didn": {"_count": 1, "mean": {"_count": 1}}, "with": {"_count": 1, "us": {"_count": 1}}, "hasnt": {"_count": 1, "ever": {"_count": 1}}, "got": {"_count": 1, "Sirius": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "never": {"_count": 1, "found": {"_count": 1}}, "odd": {"_count": 1, "things": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}, "would": {"_count": 6, "let": {"_count": 1}, "allow": {"_count": 1}, "or": {"_count": 1}, "have": {"_count": 1}, "want": {"_count": 1}, "find": {"_count": 1}}, "getting": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "come": {"_count": 1}}, "were": {"_count": 2, "dealing": {"_count": 1}, "talking": {"_count": 1}}, "out": {"_count": 1, "there": {"_count": 1}}, "cant": {"_count": 1, "split": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "went": {"_count": 1, "straight": {"_count": 1}}, "acted": {"_count": 1, "exactly": {"_count": 1}}, "come": {"_count": 1, "flying": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "doing": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "asked": {"_count": 1, "Dumbledore": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 2, "imagine": {"_count": 1}, "heard": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "arrived": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "up": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "thats": {"_count": 1, "still": {"_count": 1}}, "realized": {"_count": 1, "my": {"_count": 1}}, "that": {"_count": 2, "Gregorovitch": {"_count": 2}}, "trying": {"_count": 1, "to": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "Then": {"_count": 1, "let": {"_count": 1}}, "indefinitely": {"_count": 1, "": {"_count": 1}}}, "seems": {"_count": 99, "to": {"_count": 43, "have": {"_count": 20}, "be": {"_count": 8}, "clean": {"_count": 1}, "think": {"_count": 3}, "know": {"_count": 2}, "clear": {"_count": 1}, "me": {"_count": 4}, "love": {"_count": 2}, "harbor": {"_count": 1}, "you": {"_count": 1}}, "so": {"_count": 4, "said": {"_count": 2}, "nice": {"_count": 1}, "": {"_count": 1}}, "only": {"_count": 1, "yesterday": {"_count": 1}}, "incredible": {"_count": 4, "but": {"_count": 1}, "that": {"_count": 3}}, "a": {"_count": 2, "losing": {"_count": 1}, "bit": {"_count": 1}}, "very": {"_count": 3, "pleased": {"_count": 1}, "woolly": {"_count": 1}, "unlikely": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "almost": {"_count": 3, "impossible": {"_count": 1}, "to": {"_count": 1}, "foolish": {"_count": 1}}, "aware": {"_count": 1, "himself": {"_count": 1}}, "quite": {"_count": 2, "unbalanced": {"_count": 1}, "relieved": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 2}}, "harsh": {"_count": 1, "maybe": {"_count": 1}}, "ter": {"_count": 1, "happen": {"_count": 1}}, "in": {"_count": 1, "no": {"_count": 1}}, "he": {"_count": 1, "has": {"_count": 1}}, "that": {"_count": 7, "hes": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}, "Sirius": {"_count": 1}, "he": {"_count": 1}, "once": {"_count": 1}, "Kendra": {"_count": 1}}, "strangely": {"_count": 1, "reluctant": {"_count": 1}}, "fairly": {"_count": 1, "advanced": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "satisfactory": {"_count": 1, "as": {"_count": 1}}, "glad": {"_count": 1, "of": {"_count": 1}}, "Draco": {"_count": 1, "will": {"_count": 1}}, "little": {"_count": 1, "doubt": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "perfectly": {"_count": 1, "in": {"_count": 1}}, "mad": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "awful": {"_count": 1}}, "replied": {"_count": 1, "Lupin": {"_count": 1}}, "clear": {"_count": 1, "therefore": {"_count": 1}}, "its": {"_count": 1, "there": {"_count": 1}}, "is": {"_count": 1, "ensuring": {"_count": 1}}, "altogether": {"_count": 1, "more": {"_count": 1}}, "calm": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "huge": {"_count": 1}}}, "disappeared": {"_count": 120, "at": {"_count": 2, "last": {"_count": 1}, "once": {"_count": 1}}, "": {"_count": 22, "?": {"_count": 3}, ".": {"_count": 19}}, "off": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 8, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "everything": {"_count": 1}, "George": {"_count": 1}, "he": {"_count": 2}, "Kreacher": {"_count": 1}, "now": {"_count": 1}}, "when": {"_count": 1, "someone": {"_count": 1}}, "from": {"_count": 13, "view": {"_count": 8}, "sight": {"_count": 1}, "Harrys": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "Slughorns": {"_count": 1}}, "then": {"_count": 1, "peered": {"_count": 1}}, "into": {"_count": 19, "the": {"_count": 15}, "a": {"_count": 1}, "their": {"_count": 1}, "her": {"_count": 2}}, "under": {"_count": 1, "a": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "after": {"_count": 1, "leaving": {"_count": 1}}, "up": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "if": {"_count": 1, "we": {"_count": 1}}, "behind": {"_count": 6, "the": {"_count": 2}, "it": {"_count": 3}, "his": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "once": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "tree": {"_count": 1}, "Ministry": {"_count": 1}}, "through": {"_count": 7, "the": {"_count": 5}, "a": {"_count": 1}, "it": {"_count": 1}}, "in": {"_count": 2, "Albania": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 2, "he": {"_count": 1}, "while": {"_count": 1}}, "Ron": {"_count": 1, "stood": {"_count": 1}}, "probably": {"_count": 1, "into": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "arent": {"_count": 1, "there": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 1, "summer": {"_count": 1}}, "Dumbledore": {"_count": 1, "turned": {"_count": 1}}, "down": {"_count": 4, "the": {"_count": 4}}, "he": {"_count": 2, "said": {"_count": 1}, "saw": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "she": {"_count": 1, "jumps": {"_count": 1}}, "followed": {"_count": 1, "closely": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}}, "us": {"_count": 1032, "all": {"_count": 33, "": {"_count": 5}, "a": {"_count": 2}, "into": {"_count": 1}, "this": {"_count": 1}, "in": {"_count": 1}, "off": {"_count": 2}, "separately": {"_count": 1}, "about": {"_count": 2}, "it": {"_count": 1}, "that": {"_count": 2}, "Dumbledores": {"_count": 1}, "to": {"_count": 4}, "by": {"_count": 1}, "thats": {"_count": 1}, "up": {"_count": 1}, "so": {"_count": 1}, "think": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}, "mate": {"_count": 1}, "Id": {"_count": 1}}, "": {"_count": 202, ".": {"_count": 104}, "?": {"_count": 62}, "!": {"_count": 36}}, "muttered": {"_count": 1, "Uncle": {"_count": 1}}, "his": {"_count": 2, "boat": {"_count": 1}, "dad": {"_count": 1}}, "some": {"_count": 8, "rations": {"_count": 1}, "protection": {"_count": 1}, "handson": {"_count": 1}, "water": {"_count": 1}, "programs": {"_count": 1}, "firewhisky": {"_count": 1}, "answers": {"_count": 1}, "really": {"_count": 1}}, "a": {"_count": 31, "cup": {"_count": 1}, "look": {"_count": 1}, "reason": {"_count": 1}, "hint": {"_count": 2}, "sweater": {"_count": 1}, "letter": {"_count": 1}, "biting": {"_count": 1}, "match": {"_count": 1}, "question": {"_count": 1}, "fast": {"_count": 1}, "favor": {"_count": 1}, "sec": {"_count": 1}, "moment": {"_count": 1}, "bit": {"_count": 3}, "tour": {"_count": 1}, "single": {"_count": 1}, "footandahalflong": {"_count": 1}, "teacher": {"_count": 1}, "place": {"_count": 1}, "little": {"_count": 1}, "new": {"_count": 1}, "shout": {"_count": 1}, "full": {"_count": 1}, "big": {"_count": 1}, "hand": {"_count": 1}, "mission": {"_count": 1}, "few": {"_count": 1}, "job": {"_count": 1}}, "reckon": {"_count": 1, "hes": {"_count": 1}}, "is": {"_count": 11, "Gringotts": {"_count": 1}, "gone": {"_count": 1}, "hiding": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}, "killed": {"_count": 1}, "an": {"_count": 1}, "supposed": {"_count": 1}, "going": {"_count": 1}, "it": {"_count": 1}, "about": {"_count": 1}}, "in": {"_count": 29, "the": {"_count": 4}, "there": {"_count": 1}, "turn": {"_count": 1}, "Care": {"_count": 1}, "and": {"_count": 2}, "this": {"_count": 2}, "person": {"_count": 1}, "leprechaun": {"_count": 1}, "on": {"_count": 1}, "detention": {"_count": 2}, "Hogsmeade": {"_count": 2}, "our": {"_count": 4}, "": {"_count": 2}, "class": {"_count": 1}, "are": {"_count": 1}, "Tottenham": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}}, "are": {"_count": 3, "you": {"_count": 1}, "killers": {"_count": 1}, "here": {"_count": 1}}, "said": {"_count": 36, "Ron": {"_count": 8}, "Harry": {"_count": 9}, "Fred": {"_count": 1}, "Dumbledore": {"_count": 2}, "George": {"_count": 1}, "Hermione": {"_count": 6}, "Hagrid": {"_count": 2}, "Firenze": {"_count": 1}, "Neville": {"_count": 1}, "Luna": {"_count": 1}, "Ginny": {"_count": 1}, "Lupin": {"_count": 1}, "one": {"_count": 1}, "Snape": {"_count": 1}}, "into": {"_count": 4, "Houses": {"_count": 1}, "that": {"_count": 1}, "Azkaban": {"_count": 1}, "a": {"_count": 1}}, "win": {"_count": 2, "the": {"_count": 2}}, "prefects": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "sing": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 5, "please": {"_count": 1}, "important": {"_count": 1}, "": {"_count": 1}, "dull": {"_count": 1}, "cursed": {"_count": 1}}, "things": {"_count": 1, "worth": {"_count": 1}}, "an": {"_count": 2, "answer": {"_count": 1}, "they": {"_count": 1}}, "not": {"_count": 3, "to": {"_count": 1}, "play": {"_count": 1}, "deprive": {"_count": 1}}, "Ill": {"_count": 1, "tell": {"_count": 1}}, "caught": {"_count": 1, "Ill": {"_count": 1}}, "about": {"_count": 14, "and": {"_count": 1}, "sixty": {"_count": 1}, "it": {"_count": 2}, "uni": {"_count": 1}, "goblin": {"_count": 1}, "the": {"_count": 3}, "being": {"_count": 1}, "your": {"_count": 1}, "six": {"_count": 1}, "you": {"_count": 1}, "Hogwarts": {"_count": 1}}, "thrown": {"_count": 1, "out": {"_count": 1}}, "away": {"_count": 1, "Peeves": {"_count": 1}}, "so": {"_count": 4, "much": {"_count": 2}, "you": {"_count": 1}, "when": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 3}, "said": {"_count": 1}, "There": {"_count": 1}}, "and": {"_count": 20, "save": {"_count": 1}, "Norbert": {"_count": 1}, "will": {"_count": 1}, "weve": {"_count": 1}, "Hagrid": {"_count": 1}, "you": {"_count": 1}, "none": {"_count": 1}, "nobody": {"_count": 1}, "only": {"_count": 1}, "I": {"_count": 2}, "and": {"_count": 1}, "old": {"_count": 1}, "who": {"_count": 1}, "theres": {"_count": 1}, "so": {"_count": 1}, "then": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 1}, "have": {"_count": 1}}, "the": {"_count": 19, "trouble": {"_count": 1}, "match": {"_count": 1}, "new": {"_count": 1}, "whole": {"_count": 1}, "next": {"_count": 1}, "dementors": {"_count": 1}, "slip": {"_count": 1}, "thestrals": {"_count": 1}, "prophecy": {"_count": 2}, "opportunity": {"_count": 1}, "only": {"_count": 1}, "family": {"_count": 1}, "hair": {"_count": 1}, "right": {"_count": 1}, "sword": {"_count": 1}, "truth": {"_count": 1}, "possibility": {"_count": 1}, "door": {"_count": 1}}, "what": {"_count": 14, "we": {"_count": 1}, "to": {"_count": 1}, "sort": {"_count": 1}, "happened": {"_count": 3}, "youve": {"_count": 2}, "may": {"_count": 1}, "shes": {"_count": 1}, "its": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}, "Dumbledore": {"_count": 1}}, "nothing": {"_count": 1, "more": {"_count": 1}}, "neither": {"_count": 1, "knowledge": {"_count": 1}}, "if": {"_count": 13, "were": {"_count": 2}, "his": {"_count": 1}, "Filch": {"_count": 1}, "we": {"_count": 3}, "you": {"_count": 2}, "one": {"_count": 1}, "youre": {"_count": 1}, "he": {"_count": 1}, "hes": {"_count": 1}}, "whats": {"_count": 10, "guarding": {"_count": 1}, "going": {"_count": 2}, "happening": {"_count": 2}, "happened": {"_count": 2}, "inside": {"_count": 1}, "in": {"_count": 2}}, "but": {"_count": 4, "you": {"_count": 1}, "we": {"_count": 1}, "that": {"_count": 2}}, "up": {"_count": 6, "": {"_count": 2}, "if": {"_count": 1}, "in": {"_count": 1}, "fer": {"_count": 1}, "thanks": {"_count": 1}}, "first": {"_count": 2, "": {"_count": 2}}, "finds": {"_count": 1, "the": {"_count": 1}}, "has": {"_count": 4, "got": {"_count": 2}, "ever": {"_count": 1}, "to": {"_count": 1}}, "will": {"_count": 6, "help": {"_count": 1}, "be": {"_count": 2}, "get": {"_count": 1}, "come": {"_count": 1}, "certainly": {"_count": 1}}, "seven": {"_count": 1, "will": {"_count": 1}}, "safely": {"_count": 1, "through": {"_count": 1}}, "back": {"_count": 4, "through": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 2}, "": {"_count": 1}}, "he": {"_count": 11, "said": {"_count": 3}, "just": {"_count": 1}, "began": {"_count": 1}, "will": {"_count": 1}, "cant": {"_count": 1}, "told": {"_count": 1}, "whispered": {"_count": 1}, "threw": {"_count": 1}, "kept": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "these": {"_count": 3, "said": {"_count": 1}, "again": {"_count": 1}, "things": {"_count": 1}}, "you": {"_count": 6, "werent": {"_count": 1}, "know": {"_count": 1}, "mean": {"_count": 1}, "ave": {"_count": 1}, "were": {"_count": 1}, "never": {"_count": 1}}, "for": {"_count": 12, "breakfast": {"_count": 1}, "something": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}, "my": {"_count": 1}, "instance": {"_count": 1}, "a": {"_count": 2}, "Christmas": {"_count": 1}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "than": {"_count": 1, "we": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "showing": {"_count": 1, "off": {"_count": 1}}, "new": {"_count": 1, "moves": {"_count": 1}}, "Wood": {"_count": 1, "": {"_count": 1}}, "know": {"_count": 3, "it": {"_count": 1}, "wont": {"_count": 1}, "why": {"_count": 1}}, "anything": {"_count": 5, "about": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}}, "this": {"_count": 3, "much": {"_count": 1}, "summer": {"_count": 1}, "but": {"_count": 1}}, "to": {"_count": 61, "break": {"_count": 1}, "the": {"_count": 4}, "talk": {"_count": 1}, "go": {"_count": 5}, "do": {"_count": 9}, "change": {"_count": 1}, "take": {"_count": 1}, "ask": {"_count": 1}, "see": {"_count": 1}, "stay": {"_count": 1}, "consider": {"_count": 1}, "donate": {"_count": 1}, "socialize": {"_count": 1}, "understand": {"_count": 1}, "him": {"_count": 1}, "have": {"_count": 2}, "forgive": {"_count": 1}, "stop": {"_count": 1}, "come": {"_count": 2}, "be": {"_count": 5}, "clean": {"_count": 1}, "turn": {"_count": 1}, "teach": {"_count": 1}, "": {"_count": 1}, "answer": {"_count": 1}, "leave": {"_count": 4}, "start": {"_count": 1}, "Gwenog": {"_count": 1}, "call": {"_count": 1}, "enter": {"_count": 1}, "raise": {"_count": 1}, "learn": {"_count": 1}, "to": {"_count": 1}, "cooperate": {"_count": 1}, "work": {"_count": 1}, "power": {"_count": 1}, "said": {"_count": 1}}, "who": {"_count": 11, "thought": {"_count": 1}, "or": {"_count": 1}, "know": {"_count": 1}, "were": {"_count": 3}, "had": {"_count": 1}, "remained": {"_count": 1}, "understand": {"_count": 1}, "have": {"_count": 1}, "study": {"_count": 1}}, "such": {"_count": 3, "a": {"_count": 1}, "good": {"_count": 1}, "amusing": {"_count": 1}}, "from": {"_count": 4, "getting": {"_count": 1}, "using": {"_count": 2}, "which": {"_count": 1}}, "can": {"_count": 3, "sneak": {"_count": 1}, "only": {"_count": 1}, "go": {"_count": 1}}, "while": {"_count": 1, "were": {"_count": 1}}, "everything": {"_count": 1, "where": {"_count": 1}}, "it": {"_count": 4, "was": {"_count": 2}, "wont": {"_count": 1}, "seemed": {"_count": 1}}, "have": {"_count": 7, "you": {"_count": 1}, "voted": {"_count": 1}, "seen": {"_count": 1}, "hers": {"_count": 1}, "no": {"_count": 1}, "our": {"_count": 1}, "never": {"_count": 1}}, "soon": {"_count": 1, "enough": {"_count": 1}}, "we": {"_count": 6, "wont": {"_count": 1}, "were": {"_count": 1}, "need": {"_count": 2}, "dont": {"_count": 1}, "are": {"_count": 1}}, "here": {"_count": 8, "sir": {"_count": 1}, "he": {"_count": 1}, "making": {"_count": 1}, "": {"_count": 1}, "instead": {"_count": 1}, "to": {"_count": 2}, "trap": {"_count": 1}}, "that": {"_count": 13, "one": {"_count": 1}, "Mr": {"_count": 1}, "the": {"_count": 2}, "in": {"_count": 1}, "he": {"_count": 1}, "greatly": {"_count": 1}, "Deluminator": {"_count": 1}, "": {"_count": 1}, "YouKnowWho": {"_count": 1}, "her": {"_count": 1}, "caught": {"_count": 1}, "11": {"_count": 1}}, "after": {"_count": 2, "all": {"_count": 1}, "that": {"_count": 1}}, "must": {"_count": 1, "sometimes": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 1, "all": {"_count": 1}}, "hes": {"_count": 1, "no": {"_count": 1}}, "where": {"_count": 5, "that": {"_count": 1}, "the": {"_count": 2}, "our": {"_count": 2}}, "down": {"_count": 2, "dincha": {"_count": 1}, "he": {"_count": 1}}, "oo": {"_count": 1, "you": {"_count": 1}}, "tomorrow": {"_count": 2, "": {"_count": 2}}, "I": {"_count": 8, "must": {"_count": 1}, "am": {"_count": 1}, "shouted": {"_count": 1}, "expect": {"_count": 1}, "meant": {"_count": 1}, "might": {"_count": 1}, "mean": {"_count": 1}, "theenk": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "forever": {"_count": 3, "": {"_count": 3}}, "because": {"_count": 2, "hes": {"_count": 1}, "Bill": {"_count": 1}}, "books": {"_count": 1, "that": {"_count": 1}}, "most": {"_count": 4, "": {"_count": 1}, "fears": {"_count": 1}, "said": {"_count": 1}, "Ministry": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 4, "to": {"_count": 1}, "one": {"_count": 1}, "remember": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 5, "the": {"_count": 1}, "our": {"_count": 1}, "Secrecy": {"_count": 1}, "these": {"_count": 1}, "food": {"_count": 1}}, "more": {"_count": 3, "than": {"_count": 2}, "time": {"_count": 1}}, "how": {"_count": 8, "Pettigrew": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 3}, "ter": {"_count": 1}, "long": {"_count": 1}, "you": {"_count": 1}}, "as": {"_count": 6, "witnesses": {"_count": 1}, "we": {"_count": 2}, "the": {"_count": 1}, "if": {"_count": 1}, "much": {"_count": 1}}, "dont": {"_count": 1, "snapped": {"_count": 1}}, "once": {"_count": 3, "": {"_count": 1}, "more": {"_count": 1}, "before": {"_count": 1}}, "too": {"_count": 3, "": {"_count": 3}}, "Severus": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "till": {"_count": 1, "we": {"_count": 1}}, "Harry": {"_count": 8, "hissed": {"_count": 1}, "said": {"_count": 2}, "muttered": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 1}, "knew": {"_count": 1}, "told": {"_count": 1}}, "The": {"_count": 2, "rat": {"_count": 1}, "firelight": {"_count": 1}}, "now": {"_count": 2, "that": {"_count": 1}, "can": {"_count": 1}}, "expelled": {"_count": 1, "": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "going": {"_count": 1, "down": {"_count": 1}}, "Hagrids": {"_count": 1, "back": {"_count": 1}}, "before": {"_count": 3, "Dumbledore": {"_count": 1}, "we": {"_count": 1}, "N": {"_count": 1}}, "next": {"_count": 1, "year": {"_count": 1}}, "your": {"_count": 3, "answer": {"_count": 2}, "take": {"_count": 1}}, "tickets": {"_count": 1, "for": {"_count": 1}}, "Dad": {"_count": 1, "maybe": {"_count": 1}}, "were": {"_count": 3, "expecting": {"_count": 1}, "dueling": {"_count": 1}, "sort": {"_count": 1}}, "tonight": {"_count": 2, "whoever": {"_count": 1}, "": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "giving": {"_count": 2, "our": {"_count": 1}, "away": {"_count": 1}}, "any": {"_count": 4, "at": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "further": {"_count": 1}}, "Professor": {"_count": 1, "Vector": {"_count": 1}}, "wins": {"_count": 1, "said": {"_count": 1}}, "youd": {"_count": 1, "entered": {"_count": 1}}, "wouldnt": {"_count": 3, "it": {"_count": 1}, "they": {"_count": 2}}, "she": {"_count": 2, "stared": {"_count": 1}, "did": {"_count": 1}}, "on": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "did": {"_count": 4, "he": {"_count": 2}, "you": {"_count": 1}, "it": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "drown": {"_count": 1, "": {"_count": 1}}, "exactly": {"_count": 2, "what": {"_count": 1}, "how": {"_count": 1}}, "both": {"_count": 2, "blankets": {"_count": 1}, "back": {"_count": 1}}, "why": {"_count": 2, "dont": {"_count": 1}, "hes": {"_count": 1}}, "visiting": {"_count": 1, "them": {"_count": 1}}, "hold": {"_count": 1, "you": {"_count": 1}}, "Karkaroff": {"_count": 1, "said": {"_count": 1}}, "hear": {"_count": 1, "them": {"_count": 1}}, "at": {"_count": 6, "great": {"_count": 1}, "all": {"_count": 1}, "this": {"_count": 1}, "Hogwarts": {"_count": 2}, "such": {"_count": 1}}, "beyond": {"_count": 1, "any": {"_count": 1}}, "suffered": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}, "be": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 3, "broken": {"_count": 1}, "putting": {"_count": 1}, "that": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 2}}, "only": {"_count": 1, "feel": {"_count": 1}}, "sleep": {"_count": 1, "less": {"_count": 1}}, "do": {"_count": 3, "the": {"_count": 1}, "magic": {"_count": 1}, "your": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "later": {"_count": 1, "in": {"_count": 1}}, "names": {"_count": 1, "": {"_count": 1}}, "darling": {"_count": 1, "whispered": {"_count": 1}}, "its": {"_count": 1, "safe": {"_count": 1}}, "swear": {"_count": 3, "we": {"_count": 1}, "not": {"_count": 2}}, "half": {"_count": 1, "to": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "hed": {"_count": 1, "been": {"_count": 1}}, "rather": {"_count": 2, "than": {"_count": 1}, "a": {"_count": 1}}, "Fred": {"_count": 1, "began": {"_count": 1}}, "much": {"_count": 2, "we": {"_count": 1}, "further": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "begin": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "believe": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 2, "up": {"_count": 1}, "for": {"_count": 1}}, "cars": {"_count": 1, "from": {"_count": 1}}, "alone": {"_count": 2, "": {"_count": 2}}, "another": {"_count": 1, "Frog": {"_count": 1}}, "Feeding": {"_count": 1, "on": {"_count": 1}}, "quite": {"_count": 1, "downhearted": {"_count": 1}}, "move": {"_count": 1, "forward": {"_count": 1}}, "leaving": {"_count": 1, "school": {"_count": 1}}, "no": {"_count": 2, "questions": {"_count": 2}}, "saw": {"_count": 1, "what": {"_count": 1}}, "nobody": {"_count": 1, "wants": {"_count": 1}}, "write": {"_count": 1, "lines": {"_count": 1}}, "use": {"_count": 1, "magic": {"_count": 1}}, "think": {"_count": 1, "he": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "Hermiones": {"_count": 1, "voice": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "details": {"_count": 1, "he": {"_count": 1}}, "trained": {"_count": 1, "in": {"_count": 1}}, "against": {"_count": 3, "the": {"_count": 1}, "YouKnowWho": {"_count": 1}, "one": {"_count": 1}}, "doing": {"_count": 1, "jinxes": {"_count": 1}}, "play": {"_count": 1, "anymore": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "great": {"_count": 1, "advice": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "abou": {"_count": 1, "a": {"_count": 1}}, "YouKnowWho": {"_count": 1, "was": {"_count": 1}}, "ter": {"_count": 3, "be": {"_count": 1}, "do": {"_count": 1}, "take": {"_count": 1}}, "pass": {"_count": 1, "an": {"_count": 1}}, "usin": {"_count": 1, "it": {"_count": 1}}, "tha": {"_count": 1, "migh": {"_count": 1}}, "lookin": {"_count": 1, "all": {"_count": 1}}, "cloaks": {"_count": 1, "or": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 1, "it": {"_count": 1}}, "suggesting": {"_count": 1, "that": {"_count": 1}}, "police": {"_count": 1, "the": {"_count": 1}}, "during": {"_count": 1, "break": {"_count": 1}}, "shed": {"_count": 1, "jinxed": {"_count": 1}}, "feel": {"_count": 1, "ashamed": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "goin": {"_count": 1, "": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "ttto": {"_count": 1, "do": {"_count": 1}}, "heard": {"_count": 1, "she": {"_count": 1}}, "But": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "go": {"_count": 4, "back": {"_count": 1}, "": {"_count": 2}, "well": {"_count": 1}}, "pretty": {"_count": 1, "talking": {"_count": 1}}, "cant": {"_count": 1, "sprout": {"_count": 1}}, "actually": {"_count": 1, "said": {"_count": 1}}, "knowing": {"_count": 1, "which": {"_count": 1}}, "skip": {"_count": 1, "off": {"_count": 1}}, "Potter": {"_count": 2, "said": {"_count": 1}, "might": {"_count": 1}}, "totally": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 2, "said": {"_count": 2}}, "drinks": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "ran": {"_count": 1, "dangers": {"_count": 1}}, "Snape": {"_count": 1, "caught": {"_count": 1}}, "of": {"_count": 1, "He": {"_count": 1}}, "assume": {"_count": 1, "that": {"_count": 1}}, "step": {"_count": 1, "out": {"_count": 1}}, "entry": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 4, "live": {"_count": 1}, "fit": {"_count": 1}, "break": {"_count": 1}, "conceal": {"_count": 1}}, "our": {"_count": 1, "startup": {"_count": 1}}, "therefore": {"_count": 1, "say": {"_count": 1}}, "expressed": {"_count": 1, "": {"_count": 1}}, "loads": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "D": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "which": {"_count": 1, "should": {"_count": 1}}, "nowhere": {"_count": 1, "said": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "need": {"_count": 1, "protecting": {"_count": 1}}, "believes": {"_count": 1, "that": {"_count": 1}}, "say": {"_count": 1, "that": {"_count": 1}}, "mind": {"_count": 1, "before": {"_count": 1}}, "speak": {"_count": 1, "openly": {"_count": 1}}, "ask": {"_count": 1, "Potter": {"_count": 1}}, "transparent": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "take": {"_count": 1, "the": {"_count": 1}}, "walk": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "discuss": {"_count": 1, "your": {"_count": 1}}, "screeched": {"_count": 1, "the": {"_count": 1}}, "They": {"_count": 1, "had": {"_count": 1}}, "We": {"_count": 1, "checked": {"_count": 1}}, "almost": {"_count": 1, "immediately": {"_count": 1}}, "attacked": {"_count": 1, "them": {"_count": 1}}, "couldve": {"_count": 1, "guessed": {"_count": 1}}, "nor": {"_count": 1, "any": {"_count": 1}}, "until": {"_count": 1, "only": {"_count": 1}}, "neatly": {"_count": 1, "to": {"_count": 1}}, "fly": {"_count": 1, "off": {"_count": 1}}, "wont": {"_count": 1, "be": {"_count": 1}}, "really": {"_count": 1, "fancy": {"_count": 1}}, "getting": {"_count": 1, "a": {"_count": 1}}, "apart": {"_count": 2, "when": {"_count": 1}, "now": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "A": {"_count": 1, "muscle": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "dropped": {"_count": 1}}, "didnt": {"_count": 1, "they": {"_count": 1}}, "complaining": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "together": {"_count": 2, "or": {"_count": 1}, "he": {"_count": 1}}, "upstairs": {"_count": 1, "Harry": {"_count": 1}}, "turn": {"_count": 1, "out": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "never": {"_count": 1, "even": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "wherever": {"_count": 1, "else": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "Disapparated": {"_count": 1, "said": {"_count": 1}}, "Blimey": {"_count": 1, "Hermione": {"_count": 1}}, "spat": {"_count": 1, "Yaxley": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "whoever": {"_count": 1, "they": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "please": {"_count": 1, "when": {"_count": 1}}, "responsibilities": {"_count": 1, "over": {"_count": 1}}, "by": {"_count": 1, "about": {"_count": 1}}, "secret": {"_count": 1, "signs": {"_count": 1}}, "Questers": {"_count": 1, "believe": {"_count": 1}}, "Crumple": {"_count": 1, "Horned": {"_count": 1}}, "hurt": {"_count": 1, "you": {"_count": 1}}, "proof": {"_count": 1, "there": {"_count": 1}}, "well": {"_count": 3, "see": {"_count": 1}, "wait": {"_count": 1}, "now": {"_count": 1}}, "talking": {"_count": 2, "until": {"_count": 1}, "": {"_count": 1}}, "quickly": {"_count": 1, "its": {"_count": 1}}, "Hey": {"_count": 1, "": {"_count": 1}}, "get": {"_count": 2, "these": {"_count": 1}, "into": {"_count": 1}}, "whether": {"_count": 1, "the": {"_count": 1}}, "hanging": {"_count": 1, "": {"_count": 1}}, "whispered": {"_count": 1, "Harry": {"_count": 1}}, "What": {"_count": 1, "about": {"_count": 1}}, "stays": {"_count": 1, "in": {"_count": 1}}, "help": {"_count": 1, "": {"_count": 1}}, "overthrow": {"_count": 1, "YouKnowWho": {"_count": 1}}, "within": {"_count": 1, "this": {"_count": 1}}, "called": {"_count": 1, "Fred": {"_count": 1}}, "Fang": {"_count": 1, "an": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "Al": {"_count": 1, "": {"_count": 1}}}, "really": {"_count": 845, "has": {"_count": 4, "gone": {"_count": 1}, "been": {"_count": 1}, "returned": {"_count": 1}, "left": {"_count": 1}}, "showed": {"_count": 1, "how": {"_count": 1}}, "was": {"_count": 17, "because": {"_count": 1}, "a": {"_count": 2}, "him": {"_count": 1}, "": {"_count": 4}, "an": {"_count": 2}, "by": {"_count": 1}, "not": {"_count": 1}, "rather": {"_count": 1}, "Hermione": {"_count": 1}, "very": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}}, "crying": {"_count": 1, "it": {"_count": 1}}, "cried": {"_count": 1, "but": {"_count": 1}}, "annoying": {"_count": 3, "": {"_count": 1}, "if": {"_count": 1}, "but": {"_count": 1}}, "getting": {"_count": 2, "a": {"_count": 1}, "stronger": {"_count": 1}}, "know": {"_count": 9, "who": {"_count": 1}, "are": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 4}, "much": {"_count": 1}}, "a": {"_count": 4, "wizard": {"_count": 1}, "tune": {"_count": 1}, "hurricane": {"_count": 1}, "loss": {"_count": 1}}, "be": {"_count": 5, "piles": {"_count": 1}, "the": {"_count": 1}, "better": {"_count": 1}, "kinder": {"_count": 1}, "part": {"_count": 1}}, "shops": {"_count": 1, "that": {"_count": 1}}, "extraordinary": {"_count": 1, "had": {"_count": 1}}, "knows": {"_count": 3, "until": {"_count": 1}, "me": {"_count": 1}, "his": {"_count": 1}}, "dont": {"_count": 13, "think": {"_count": 4}, "look": {"_count": 1}, "like": {"_count": 1}, "": {"_count": 1}, "blame": {"_count": 1}, "want": {"_count": 2}, "believe": {"_count": 1}, "know": {"_count": 2}}, "looking": {"_count": 3, "forward": {"_count": 3}}, "the": {"_count": 5, "wand": {"_count": 1}, "maternal": {"_count": 1}, "best": {"_count": 1}, "usual": {"_count": 1}, "Elder": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 2, "like": {"_count": 1}, "hed": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "apart": {"_count": 1}}, "got": {"_count": 8, "you": {"_count": 1}, "to": {"_count": 2}, "me": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "an": {"_count": 1}}, "good": {"_count": 34, "marks": {"_count": 1}, "if": {"_count": 1}, "at": {"_count": 3}, "stuff": {"_count": 2}, "student": {"_count": 1}, "impression": {"_count": 1}, "actor": {"_count": 1}, "plan": {"_count": 1}, "one": {"_count": 3}, "lesson": {"_count": 2}, "about": {"_count": 1}, "": {"_count": 4}, "that": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 2}, "because": {"_count": 1}, "wasnt": {"_count": 1}, "bit": {"_count": 1}, "hex": {"_count": 1}, "day": {"_count": 1}, "Quidditch": {"_count": 1}, "story": {"_count": 1}, "of": {"_count": 1}, "question": {"_count": 1}}, "funny": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "frogs": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 39, "?": {"_count": 10}, ".": {"_count": 24}, "!": {"_count": 5}}, "even": {"_count": 1, "a": {"_count": 1}}, "wanted": {"_count": 21, "even": {"_count": 1}, "now": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 12}, "and": {"_count": 1}, "the": {"_count": 1}, "any": {"_count": 1}, "that": {"_count": 2}, "him": {"_count": 1}}, "pleased": {"_count": 7, "Gran": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 1}, "I": {"_count": 1}, "though": {"_count": 1}}, "doors": {"_count": 1, "at": {"_count": 1}}, "been": {"_count": 2, "looking": {"_count": 1}, "there": {"_count": 1}}, "understand": {"_count": 8, "the": {"_count": 1}, "Quidditch": {"_count": 1}, "": {"_count": 2}, "about": {"_count": 1}, "how": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "hate": {"_count": 3, "me": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}}, "very": {"_count": 5, "selfish": {"_count": 1}, "handsome": {"_count": 1}, "straightforward": {"_count": 1}, "busy": {"_count": 1}, "irritating": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "valuable": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "dangerous": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "thanks": {"_count": 1, "to": {"_count": 1}}, "are": {"_count": 3, "a": {"_count": 1}, "\u2018the": {"_count": 1}, "Death": {"_count": 1}}, "fallen": {"_count": 1, "and": {"_count": 1}}, "stupid": {"_count": 4, "said": {"_count": 1}, "now": {"_count": 1}, "if": {"_count": 1}, "thing": {"_count": 1}}, "lucky": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "hurting": {"_count": 2, "him": {"_count": 2}}, "belting": {"_count": 1, "along": {"_count": 1}}, "flying": {"_count": 1, "dodges": {"_count": 1}}, "needed": {"_count": 4, "was": {"_count": 1}, "to": {"_count": 2}, "a": {"_count": 1}}, "nice": {"_count": 8, "of": {"_count": 2}, "": {"_count": 1}, "helping": {"_count": 1}, "you": {"_count": 1}, "place": {"_count": 1}, "little": {"_count": 1}, "food": {"_count": 1}}, "rare": {"_count": 3, "and": {"_count": 1}, "theyre": {"_count": 1}, "said": {"_count": 1}}, "once": {"_count": 1, "belonged": {"_count": 1}}, "did": {"_count": 7, "fall": {"_count": 1}, "said": {"_count": 1}, "Hermione": {"_count": 1}, "take": {"_count": 1}, "seem": {"_count": 1}, "manage": {"_count": 1}, "walk": {"_count": 1}}, "wipe": {"_count": 1, "the": {"_count": 1}}, "done": {"_count": 3, "something": {"_count": 1}, "magic": {"_count": 1}, "is": {"_count": 1}}, "fine": {"_count": 1, "day": {"_count": 1}}, "bit": {"_count": 1, "me": {"_count": 1}}, "horrible": {"_count": 3, "or": {"_count": 1}, "to": {"_count": 1}, "trick": {"_count": 1}}, "cant": {"_count": 2, "afford": {"_count": 1}, "spare": {"_count": 1}}, "really": {"_count": 10, "sorry": {"_count": 3}, "careful": {"_count": 1}, "happy": {"_count": 1}, "hard": {"_count": 1}, "rare": {"_count": 1}, "good": {"_count": 1}, "unlucky": {"_count": 1}, "miserable": {"_count": 1}}, "sorry": {"_count": 20, "about": {"_count": 3}, "and": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 7}, "said": {"_count": 1}, "Harry": {"_count": 2}, "to": {"_count": 2}, "I": {"_count": 1}, "hed": {"_count": 1}, "that": {"_count": 1}}, "said": {"_count": 18, "Ron": {"_count": 4}, "Mr": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 3}, "is": {"_count": 1}, "very": {"_count": 1}, "Hagrid": {"_count": 1}, "Cho": {"_count": 1}, "Neville": {"_count": 2}, "Harry": {"_count": 3}}, "is": {"_count": 12, "like": {"_count": 1}, "a": {"_count": 3}, "extraordinary": {"_count": 1}, "time": {"_count": 1}, "going": {"_count": 1}, "awful": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}, "YouKnowWho": {"_count": 1}, "the": {"_count": 1}}, "not": {"_count": 3, "such": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}}, "happened": {"_count": 14, "": {"_count": 5}, "with": {"_count": 1}, "They": {"_count": 2}, "but": {"_count": 1}, "weve": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}}, "worried": {"_count": 4, "when": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "by": {"_count": 1}}, "quietly": {"_count": 1, "said": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "dizzy": {"_count": 1, "so": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "how": {"_count": 2, "many": {"_count": 1}, "the": {"_count": 1}}, "expensive": {"_count": 2, "": {"_count": 2}}, "want": {"_count": 17, "to": {"_count": 12}, "an": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}}, "have": {"_count": 3, "points": {"_count": 1}, "entered": {"_count": 1}, "fought": {"_count": 1}}, "deserted": {"_count": 1, "": {"_count": 1}}, "boring": {"_count": 1, "Harry": {"_count": 1}}, "think": {"_count": 25, "will": {"_count": 1}, "theres": {"_count": 1}, "hes": {"_count": 1}, "anyone": {"_count": 1}, "so": {"_count": 1}, "the": {"_count": 1}, "youve": {"_count": 1}, "this": {"_count": 2}, "you": {"_count": 1}, "Id": {"_count": 2}, "I": {"_count": 4}, "Umbridge": {"_count": 1}, "that": {"_count": 2}, "of": {"_count": 1}, "wed": {"_count": 1}, "it": {"_count": 1}, "youll": {"_count": 1}, "well": {"_count": 1}, "she": {"_count": 1}}, "bad": {"_count": 6, "because": {"_count": 2}, "thing": {"_count": 1}, "said": {"_count": 1}, "mood": {"_count": 1}, "stuff": {"_count": 1}}, "rude": {"_count": 1, "of": {"_count": 1}}, "foul": {"_count": 1, "name": {"_count": 1}}, "upset": {"_count": 2, "Hermione": {"_count": 1}, "about": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "thick": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 2, "said": {"_count": 1}, "McGonagall": {"_count": 1}}, "spectacular": {"_count": 1, "your": {"_count": 1}}, "excellent": {"_count": 3, "": {"_count": 1}, "sugar": {"_count": 1}, "for": {"_count": 1}}, "powerful": {"_count": 2, "Dark": {"_count": 1}, "wizard": {"_count": 1}}, "him": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "I": {"_count": 4, "dont": {"_count": 1}, "had": {"_count": 1}, "mean": {"_count": 1}, "prefer": {"_count": 1}}, "divine": {"_count": 1, "The": {"_count": 1}}, "Id": {"_count": 1, "just": {"_count": 1}}, "should": {"_count": 2, "go": {"_count": 1}, "be": {"_count": 1}}, "never": {"_count": 1, "you": {"_count": 1}}, "jealous": {"_count": 1, "the": {"_count": 1}}, "hope": {"_count": 4, "you": {"_count": 3}, "Professor": {"_count": 1}}, "blow": {"_count": 1, "up": {"_count": 1}}, "corking": {"_count": 1, "to": {"_count": 1}}, "sure": {"_count": 2, "that": {"_count": 1}, "why": {"_count": 1}}, "quite": {"_count": 2, "pleased": {"_count": 1}, "cuddly": {"_count": 1}}, "careful": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 4, "to": {"_count": 4}}, "calm": {"_count": 1, "for": {"_count": 1}}, "Hagrid": {"_count": 1, "stopped": {"_count": 1}}, "finishes": {"_count": 1, "a": {"_count": 1}}, "liked": {"_count": 2, "Care": {"_count": 1}, "horses": {"_count": 1}}, "warms": {"_count": 1, "you": {"_count": 1}}, "expect": {"_count": 2, "Black": {"_count": 1}, "James": {"_count": 1}}, "angry": {"_count": 8, "Hermione": {"_count": 1}, "and": {"_count": 1}, "about": {"_count": 1}, "or": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "But": {"_count": 1}, "at": {"_count": 1}}, "behind": {"_count": 2, "he": {"_count": 1}, "on": {"_count": 1}}, "love": {"_count": 1, "those": {"_count": 1}}, "need": {"_count": 9, "it": {"_count": 1}, "to": {"_count": 3}, "N": {"_count": 1}, "is": {"_count": 1}, "help": {"_count": 1}, "Legilimency": {"_count": 1}, "a": {"_count": 1}}, "didnt": {"_count": 6, "know": {"_count": 1}, "want": {"_count": 5}}, "hard": {"_count": 3, "to": {"_count": 2}, "on": {"_count": 1}}, "remember": {"_count": 1, "who": {"_count": 1}}, "happy": {"_count": 3, "memory": {"_count": 1}, "": {"_count": 2}}, "hoped": {"_count": 2, "she": {"_count": 1}, "that": {"_count": 1}}, "putting": {"_count": 1, "it": {"_count": 1}}, "noticeable": {"_count": 1, "in": {"_count": 1}}, "well": {"_count": 8, "but": {"_count": 1}, "though": {"_count": 1}, "hes": {"_count": 1}, "You": {"_count": 1}, "today": {"_count": 1}, "": {"_count": 1}, "Kreacher": {"_count": 1}, "kidnapping": {"_count": 1}}, "like": {"_count": 5, "them": {"_count": 1}, "you": {"_count": 2}, "to": {"_count": 1}, "Hogwarts": {"_count": 1}}, "enoughs": {"_count": 1, "enough": {"_count": 1}}, "wish": {"_count": 1, "I": {"_count": 1}}, "seen": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "believe": {"_count": 3, "what": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "no": {"_count": 3, "idea": {"_count": 2}, "more": {"_count": 1}}, "watching": {"_count": 1, "Buckbeak": {"_count": 1}}, "close": {"_count": 3, "": {"_count": 2}, "up": {"_count": 1}}, "gone": {"_count": 3, "then": {"_count": 1}, "over": {"_count": 1}, "": {"_count": 1}}, "serious": {"_count": 3, "": {"_count": 1}, "going": {"_count": 1}, "thing": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "puppy": {"_count": 1, "fat": {"_count": 1}}, "full": {"_count": 1, "dont": {"_count": 1}}, "listening": {"_count": 3, "with": {"_count": 1}, "": {"_count": 2}}, "intended": {"_count": 1, "to": {"_count": 1}}, "thought": {"_count": 8, "much": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 2}, "Dumbledore": {"_count": 2}, "for": {"_count": 1}}, "grumpy": {"_count": 1, "said": {"_count": 1}}, "young": {"_count": 4, "too": {"_count": 1}, "and": {"_count": 2}, "when": {"_count": 1}}, "roared": {"_count": 1, "flags": {"_count": 1}}, "flew": {"_count": 1, "and": {"_count": 1}}, "loud": {"_count": 1, "hand": {"_count": 1}}, "unexpected": {"_count": 1, "twist": {"_count": 1}}, "sick": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 6, "Death": {"_count": 1}, "": {"_count": 1}, "astonishingly": {"_count": 1}, "not": {"_count": 1}, "outside": {"_count": 1}, "going": {"_count": 1}}, "risen": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 3}, "trouble": {"_count": 1}, "it": {"_count": 1}, "return": {"_count": 1}}, "paranoid": {"_count": 1, "in": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "excited": {"_count": 2, "": {"_count": 1}, "thought": {"_count": 1}}, "control": {"_count": 1, "Peeves": {"_count": 1}}, "that": {"_count": 4, "porky": {"_count": 1}, "Professor": {"_count": 1}, "That": {"_count": 1}, "it": {"_count": 1}}, "hurt": {"_count": 2, "Malfoy": {"_count": 1}, "when": {"_count": 1}}, "seeing": {"_count": 3, "it": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "busy": {"_count": 3, "Hag": {"_count": 1}, "now": {"_count": 1}, "at": {"_count": 1}}, "suit": {"_count": 1, "Hagrid": {"_count": 1}}, "couldnt": {"_count": 2, "think": {"_count": 1}, "care": {"_count": 1}}, "an": {"_count": 3, "idle": {"_count": 1}, "option": {"_count": 1}, "want": {"_count": 1}}, "seriously": {"_count": 1, "considered": {"_count": 1}}, "famous": {"_count": 1, "hes": {"_count": 1}}, "surprised": {"_count": 2, "if": {"_count": 1}, "thought": {"_count": 1}}, "witty": {"_count": 1, "": {"_count": 1}}, "amazing": {"_count": 1, "said": {"_count": 1}}, "annoyed": {"_count": 1, "now": {"_count": 1}}, "enjoying": {"_count": 1, "all": {"_count": 1}}, "havent": {"_count": 2, "got": {"_count": 2}}, "Quidditch": {"_count": 1, "he": {"_count": 1}}, "dragons": {"_count": 1, "": {"_count": 1}}, "impressed": {"_count": 1, "with": {"_count": 1}}, "aren": {"_count": 1, "you": {"_count": 1}}, "thinks": {"_count": 1, "a": {"_count": 1}}, "ought": {"_count": 3, "to": {"_count": 3}}, "rather": {"_count": 1, "magnificent": {"_count": 1}}, "expected": {"_count": 1, "that": {"_count": 1}}, "miss": {"_count": 2, "you": {"_count": 1}, "it": {"_count": 1}}, "would": {"_count": 1, "": {"_count": 1}}, "ugly": {"_count": 1, "says": {"_count": 1}}, "clever": {"_count": 1, "Dark": {"_count": 1}}, "ill": {"_count": 4, "": {"_count": 2}, "said": {"_count": 1}, "or": {"_count": 1}}, "ambitious": {"_count": 1, "you": {"_count": 1}}, "knew": {"_count": 3, "what": {"_count": 2}, "it": {"_count": 1}}, "But": {"_count": 1, "something": {"_count": 1}}, "weak": {"_count": 1, "I": {"_count": 1}}, "mean": {"_count": 2, "it": {"_count": 2}}, "happen": {"_count": 1, "": {"_count": 1}}, "stopped": {"_count": 2, "supporting": {"_count": 1}, "working": {"_count": 1}}, "trusts": {"_count": 1, "Snape": {"_count": 1}}, "get": {"_count": 1, "down": {"_count": 1}}, "nervous": {"_count": 1, "now": {"_count": 1}}, "who": {"_count": 1, "gave": {"_count": 1}}, "fun": {"_count": 1, "to": {"_count": 1}}, "belonged": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 2, "color": {"_count": 1}, "thing": {"_count": 1}}, "useful": {"_count": 2, "": {"_count": 1}, "Oh": {"_count": 1}}, "fancied": {"_count": 2, "finding": {"_count": 1}, "herself": {"_count": 1}}, "big": {"_count": 1, "story": {"_count": 1}}, "going": {"_count": 4, "to": {"_count": 2}, "back": {"_count": 1}, "out": {"_count": 1}}, "shouldnt": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "doing": {"_count": 2, "nothing": {"_count": 1}, "so": {"_count": 1}}, "old": {"_count": 1, "he": {"_count": 1}}, "waging": {"_count": 1, "war": {"_count": 1}}, "amused": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "much": {"_count": 1}}, "hoping": {"_count": 1, "youd": {"_count": 1}}, "Unexpected": {"_count": 1, "said": {"_count": 1}}, "nasty": {"_count": 2, "": {"_count": 1}, "turns": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "tough": {"_count": 2, "": {"_count": 2}}, "important": {"_count": 7, "affect": {"_count": 1}, "possibly": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 1}}, "unfair": {"_count": 1, "said": {"_count": 1}}, "slow": {"_count": 1, "knitter": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "cool": {"_count": 1, "if": {"_count": 1}}, "glad": {"_count": 2, "its": {"_count": 1}, "youre": {"_count": 1}}, "brave": {"_count": 3, "standing": {"_count": 2}, "": {"_count": 1}}, "delightful": {"_count": 1, "woman": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "happening": {"_count": 1, "at": {"_count": 1}}, "can": {"_count": 1, "defend": {"_count": 1}}, "noisy": {"_count": 1, "": {"_count": 1}}, "study": {"_count": 1, "it": {"_count": 1}}, "true": {"_count": 3, "": {"_count": 2}, "theyve": {"_count": 1}}, "do": {"_count": 7, "any": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "need": {"_count": 1}, "lets": {"_count": 1}, "": {"_count": 2}}, "interested": {"_count": 1, "in": {"_count": 1}}, "registered": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "shifty": {"_count": 1, "look": {"_count": 1}}, "regret": {"_count": 1, "it": {"_count": 1}}, "suspicious": {"_count": 1, "sit": {"_count": 1}}, "see": {"_count": 1, "how": {"_count": 1}}, "concentrating": {"_count": 1, "his": {"_count": 1}}, "saw": {"_count": 1, "it": {"_count": 1}}, "frustrated": {"_count": 1, "at": {"_count": 1}}, "help": {"_count": 2, "visibility": {"_count": 1}, "us": {"_count": 1}}, "worrying": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "s": {"_count": 1, "posed": {"_count": 1}}, "special": {"_count": 1, "": {"_count": 1}}, "unlucky": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "annoy": {"_count": 1, "them": {"_count": 1}}, "wasnt": {"_count": 2, "a": {"_count": 1}, "anything": {"_count": 1}}, "looked": {"_count": 1, "forward": {"_count": 1}}, "too": {"_count": 2, "confined": {"_count": 1}, "far": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "prophecy": {"_count": 1, "youre": {"_count": 1}}, "thinking": {"_count": 4, "he": {"_count": 1}, "about": {"_count": 2}, "with": {"_count": 1}}, "unusual": {"_count": 1, "Ron": {"_count": 1}}, "great": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "stup": {"_count": 1, "Hi": {"_count": 1}}, "just": {"_count": 1, "seen": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "swapped": {"_count": 1, "sides": {"_count": 1}}, "doesnt": {"_count": 1, "want": {"_count": 1}}, "had": {"_count": 5, "run": {"_count": 1}, "sprinted": {"_count": 1}, "come": {"_count": 1}, "a": {"_count": 1}, "written": {"_count": 1}}, "scary": {"_count": 1, "": {"_count": 1}}, "mustnt": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 1, "for": {"_count": 1}}, "miserable": {"_count": 2, "too": {"_count": 1}, "actually": {"_count": 1}}, "loathed": {"_count": 1, "them": {"_count": 1}}, "deserved": {"_count": 1, "it": {"_count": 1}}, "down": {"_count": 2, "lately": {"_count": 1}, "": {"_count": 1}}, "look": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "we": {"_count": 1, "dont": {"_count": 1}}, "gives": {"_count": 1, "your": {"_count": 1}}, "peering": {"_count": 1, "over": {"_count": 1}}, "smell": {"_count": 1, "": {"_count": 1}}, "meaning": {"_count": 1, "to": {"_count": 1}}, "taken": {"_count": 1, "Sirius": {"_count": 1}}, "go": {"_count": 1, "and": {"_count": 1}}, "understood": {"_count": 3, "what": {"_count": 2}, "his": {"_count": 1}}, "started": {"_count": 2, "yet": {"_count": 1}, "to": {"_count": 1}}, "sulky": {"_count": 1, "so": {"_count": 1}}, "all": {"_count": 1, "I": {"_count": 1}}, "telling": {"_count": 1, "me": {"_count": 1}}, "Molly": {"_count": 1, "": {"_count": 1}}, "gravy": {"_count": 1, "with": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 1}, "makes": {"_count": 1}}, "happens": {"_count": 1, "when": {"_count": 1}}, "depressed": {"_count": 1, "": {"_count": 1}}, "listen": {"_count": 1, "": {"_count": 1}}, "cute": {"_count": 1, "": {"_count": 1}}, "come": {"_count": 3, "on": {"_count": 1}, "back": {"_count": 1}, "by": {"_count": 1}}, "isnt": {"_count": 1, "good": {"_count": 1}}, "comes": {"_count": 1, "down": {"_count": 1}}, "tell": {"_count": 1, "him": {"_count": 1}}, "create": {"_count": 1, "love": {"_count": 1}}, "does": {"_count": 1, "seem": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "try": {"_count": 1, "said": {"_count": 1}}, "So": {"_count": 1, "why": {"_count": 1}}, "obvious": {"_count": 1, "he": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "interesting": {"_count": 1, "and": {"_count": 1}}, "freaked": {"_count": 1, "them": {"_count": 1}}, "talk": {"_count": 1, "much": {"_count": 1}}, "matter": {"_count": 2, "whether": {"_count": 1}, "": {"_count": 1}}, "trust": {"_count": 1, "him": {"_count": 1}}, "advanced": {"_count": 1, "Dark": {"_count": 1}}, "why": {"_count": 1, "she": {"_count": 1}}, "harsh": {"_count": 1, "": {"_count": 1}}, "silly": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 1, "up": {"_count": 1}}, "meet": {"_count": 1, "his": {"_count": 1}}, "feel": {"_count": 2, "that": {"_count": 1}, "what": {"_count": 1}}, "take": {"_count": 1, "full": {"_count": 1}}, "soon": {"_count": 1, "Harry": {"_count": 1}}, "must": {"_count": 2, "be": {"_count": 1}, "get": {"_count": 1}}, "fancy": {"_count": 1, "it": {"_count": 1}}, "amusing": {"_count": 1, "": {"_count": 1}}, "Enough": {"_count": 1, "messing": {"_count": 1}}, "called": {"_count": 1, "Wendell": {"_count": 1}}, "contagious": {"_count": 1, "so": {"_count": 1}}, "awful": {"_count": 1, "full": {"_count": 1}}, "foolproof": {"_count": 1, "ways": {"_count": 1}}, "cut": {"_count": 1, "up": {"_count": 1}}, "falling": {"_count": 1, "outside": {"_count": 1}}, "lived": {"_count": 1, "that": {"_count": 1}}, "killed": {"_count": 1, "him": {"_count": 1}}, "tried": {"_count": 1, "": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "cared": {"_count": 1, "": {"_count": 1}}, "Oh": {"_count": 1, "youre": {"_count": 1}}, "puts": {"_count": 1, "our": {"_count": 1}}, "early": {"_count": 2, "on": {"_count": 1}, "because": {"_count": 1}}, "understanding": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "truly": {"_count": 2}}, "defeated": {"_count": 1, "Loxias": {"_count": 1}}, "means": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}, "existed": {"_count": 1, "and": {"_count": 1}}, "ave": {"_count": 1, "caught": {"_count": 1}}, "knowing": {"_count": 1, "what": {"_count": 1}}, "only": {"_count": 1, "enough": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "Hermione": {"_count": 1, "he": {"_count": 1}}, "wizards": {"_count": 1, "": {"_count": 1}}, "stammered": {"_count": 1, "Hermione": {"_count": 1}}, "fit": {"_count": 1, "Itll": {"_count": 1}}, "gets": {"_count": 1, "this": {"_count": 1}}, "hungry": {"_count": 1, "and": {"_count": 1}}, "afford": {"_count": 1, "to": {"_count": 1}}, "ungrateful": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "fetching": {"_count": 1, "them": {"_count": 1}}, "yours": {"_count": 1, "": {"_count": 1}}}, "certainly": {"_count": 103, "seems": {"_count": 2, "so": {"_count": 2}}, "wouldnt": {"_count": 1, "fit": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "did": {"_count": 4, "talk": {"_count": 1}, "said": {"_count": 1}, "have": {"_count": 1}, "": {"_count": 1}}, "scared": {"_count": 1, "them": {"_count": 1}}, "will": {"_count": 3, "said": {"_count": 1}, "be": {"_count": 1}, "": {"_count": 1}}, "nothing": {"_count": 1, "like": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "not": {"_count": 12, "angry": {"_count": 1}, "presume": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}, "this": {"_count": 1}, "troubling": {"_count": 1}, "going": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 1}, "telling": {"_count": 1}, "been": {"_count": 1}, "done": {"_count": 1}}, "remember": {"_count": 1, "you": {"_count": 1}}, "kept": {"_count": 1, "an": {"_count": 1}}, "expelled": {"_count": 1, "from": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "looked": {"_count": 2, "as": {"_count": 1}, "unhappy": {"_count": 1}}, "do": {"_count": 2, "said": {"_count": 1}, "know": {"_count": 1}}, "believe": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Mr": {"_count": 1}}, "didnt": {"_count": 1, "authorize": {"_count": 1}}, "dont": {"_count": 2, "want": {"_count": 1}, "said": {"_count": 1}}, "wasnt": {"_count": 2, "the": {"_count": 1}, "going": {"_count": 1}}, "had": {"_count": 3, "": {"_count": 1}, "been": {"_count": 1}, "those": {"_count": 1}}, "wont": {"_count": 1, "be": {"_count": 1}}, "see": {"_count": 1, "why": {"_count": 1}}, "thought": {"_count": 1, "so": {"_count": 1}}, "isnt": {"_count": 1, "": {"_count": 1}}, "werent": {"_count": 1, "every": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "caught": {"_count": 1, "Harrys": {"_count": 1}}, "how": {"_count": 1, "Harry": {"_count": 1}}, "talking": {"_count": 1, "now": {"_count": 1}}, "would": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "telling": {"_count": 1, "anybody": {"_count": 1}}, "never": {"_count": 2, "missed": {"_count": 1}, "happened": {"_count": 1}}, "clever": {"_count": 1, "and": {"_count": 1}}, "underground": {"_count": 1, "more": {"_count": 1}}, "known": {"_count": 1, "to": {"_count": 1}}, "Crouch": {"_count": 1, "may": {"_count": 1}}, "much": {"_count": 2, "messier": {"_count": 1}, "better": {"_count": 1}}, "described": {"_count": 1, "the": {"_count": 1}}, "seem": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 2, "illuminating": {"_count": 1}, "so": {"_count": 1}}, "be": {"_count": 2, "saying": {"_count": 1}, "unable": {"_count": 1}}, "wiped": {"_count": 1, "the": {"_count": 1}}, "cannot": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "give": {"_count": 1, "him": {"_count": 1}}, "an": {"_count": 2, "improvement": {"_count": 1}, "open": {"_count": 1}}, "are": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 1, "enough": {"_count": 1}}, "given": {"_count": 1, "them": {"_count": 1}}, "dirty": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "helped": {"_count": 1, "dispose": {"_count": 1}}, "planted": {"_count": 1, "by": {"_count": 1}}, "hope": {"_count": 1, "that": {"_count": 1}}, "expect": {"_count": 1, "you": {"_count": 1}}, "intrigued": {"_count": 1, "by": {"_count": 1}}, "seen": {"_count": 1, "something": {"_count": 1}}, "alone": {"_count": 1, "tonight": {"_count": 1}}, "act": {"_count": 1, "as": {"_count": 1}}, "performed": {"_count": 1, "secondbest": {"_count": 1}}, "have": {"_count": 2, "been": {"_count": 1}, "understood": {"_count": 1}}, "likes": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "cordial": {"_count": 1}}, "quick": {"_count": 1, "off": {"_count": 1}}, "suggested": {"_count": 1, "that": {"_count": 1}}, "attack": {"_count": 1, "you": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "We": {"_count": 765, "have": {"_count": 38, "much": {"_count": 2}, "received": {"_count": 2}, "a": {"_count": 4}, "said": {"_count": 2}, "to": {"_count": 6}, "decided": {"_count": 1}, "never": {"_count": 1}, "worked": {"_count": 1}, "already": {"_count": 2}, "heard": {"_count": 2}, "the": {"_count": 2}, "no": {"_count": 3}, "had": {"_count": 1}, "strict": {"_count": 1}, "hours": {"_count": 1}, "corresponded": {"_count": 1}, "however": {"_count": 1}, "an": {"_count": 1}, "discussed": {"_count": 1}, "also": {"_count": 1}, "instructions": {"_count": 1}, "protected": {"_count": 1}}, "can": {"_count": 28, "only": {"_count": 1}, "actually": {"_count": 1}, "fly": {"_count": 1}, "add": {"_count": 1}, "take": {"_count": 3}, "tell": {"_count": 1}, "talk": {"_count": 2}, "do": {"_count": 2}, "explain": {"_count": 1}, "all": {"_count": 2}, "leave": {"_count": 1}, "fight": {"_count": 2}, "practice": {"_count": 1}, "still": {"_count": 1}, "discuss": {"_count": 1}, "": {"_count": 1}, "arrange": {"_count": 1}, "put": {"_count": 1}, "hardly": {"_count": 1}, "just": {"_count": 1}, "give": {"_count": 1}, "push": {"_count": 1}}, "may": {"_count": 3, "never": {"_count": 1}, "as": {"_count": 2}}, "could": {"_count": 21, "phone": {"_count": 1}, "all": {"_count": 2}, "lock": {"_count": 1}, "send": {"_count": 1}, "change": {"_count": 1}, "get": {"_count": 1}, "go": {"_count": 3}, "have": {"_count": 3}, "offer": {"_count": 1}, "feature": {"_count": 1}, "curtsy": {"_count": 1}, "order": {"_count": 1}, "try": {"_count": 2}, "arrange": {"_count": 1}, "do": {"_count": 1}}, "are": {"_count": 39, "pleased": {"_count": 2}, "no": {"_count": 1}, "doing": {"_count": 1}, "going": {"_count": 2}, "still": {"_count": 1}, "not": {"_count": 3}, "leaving": {"_count": 1}, "here": {"_count": 2}, "familiar": {"_count": 1}, "very": {"_count": 1}, "continuing": {"_count": 1}, "honorbound": {"_count": 1}, "just": {"_count": 1}, "however": {"_count": 1}, "": {"_count": 3}, "a": {"_count": 1}, "an": {"_count": 1}, "currently": {"_count": 1}, "also": {"_count": 1}, "about": {"_count": 1}, "at": {"_count": 1}, "attempting": {"_count": 1}, "holding": {"_count": 1}, "most": {"_count": 1}, "gathered": {"_count": 1}, "talking": {"_count": 2}, "the": {"_count": 1}, "almost": {"_count": 1}, "Sev": {"_count": 1}, "part": {"_count": 1}, "in": {"_count": 1}}, "await": {"_count": 1, "your": {"_count": 1}}, "swore": {"_count": 1, "when": {"_count": 1}}, "use": {"_count": 1, "unicorn": {"_count": 1}}, "will": {"_count": 12, "be": {"_count": 5}, "return": {"_count": 1}, "practice": {"_count": 1}, "Master": {"_count": 1}, "see": {"_count": 1}, "need": {"_count": 1}, "not": {"_count": 1}, "fight": {"_count": 1}}, "got": {"_count": 9, "Potter": {"_count": 2}, "up": {"_count": 1}, "as": {"_count": 1}, "them": {"_count": 1}, "so": {"_count": 1}, "the": {"_count": 1}, "away": {"_count": 1}, "your": {"_count": 1}}, "havent": {"_count": 19, "won": {"_count": 1}, "got": {"_count": 9}, "seen": {"_count": 1}, "visited": {"_count": 1}, "even": {"_count": 2}, "been": {"_count": 1}, "done": {"_count": 2}, "wanted": {"_count": 1}, "come": {"_count": 1}}, "wont": {"_count": 6, "practice": {"_count": 1}, "bother": {"_count": 1}, "be": {"_count": 2}, "need": {"_count": 2}}, "should": {"_count": 14, "have": {"_count": 4}, "all": {"_count": 1}, "be": {"_count": 1}, "search": {"_count": 1}, "get": {"_count": 2}, "probably": {"_count": 1}, "try": {"_count": 1}, "put": {"_count": 1}, "go": {"_count": 1}, "close": {"_count": 1}}, "know": {"_count": 29, "Olivers": {"_count": 1}, "the": {"_count": 2}, "T": {"_count": 1}, "hes": {"_count": 2}, "youre": {"_count": 4}, "what": {"_count": 2}, "some": {"_count": 2}, "Harry": {"_count": 1}, "about": {"_count": 2}, "you": {"_count": 1}, "where": {"_count": 1}, "that": {"_count": 1}, "whats": {"_count": 1}, "I": {"_count": 1}, "everything": {"_count": 1}, "theyve": {"_count": 1}, "only": {"_count": 1}, "your": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}, "Stan": {"_count": 1}}, "dont": {"_count": 32, "want": {"_count": 8}, "need": {"_count": 2}, "have": {"_count": 2}, "send": {"_count": 1}, "know": {"_count": 8}, "really": {"_count": 2}, "reckon": {"_count": 1}, "take": {"_count": 1}, "break": {"_count": 1}, "care": {"_count": 2}, "rrreally": {"_count": 1}, "yet": {"_count": 1}, "mind": {"_count": 1}, "even": {"_count": 1}}, "think": {"_count": 14, "he": {"_count": 2}, "itll": {"_count": 1}, "we": {"_count": 2}, "youre": {"_count": 1}, "hes": {"_count": 1}, "hed": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 2}, "HeWhoMustNotBe": {"_count": 1}}, "just": {"_count": 9, "want": {"_count": 1}, "met": {"_count": 1}, "heard": {"_count": 1}, "havent": {"_count": 1}, "had": {"_count": 2}, "cant": {"_count": 1}, "let": {"_count": 1}, "need": {"_count": 1}}, "mustve": {"_count": 1, "been": {"_count": 1}}, "received": {"_count": 1, "your": {"_count": 1}}, "won": {"_count": 7, "": {"_count": 5}, "though": {"_count": 1}, "take": {"_count": 1}}, "were": {"_count": 44, "wondering": {"_count": 1}, "Harry": {"_count": 1}, "twenty": {"_count": 1}, "all": {"_count": 5}, "we": {"_count": 1}, "going": {"_count": 2}, "playing": {"_count": 1}, "friends": {"_count": 1}, "just": {"_count": 5}, "young": {"_count": 1}, "in": {"_count": 3}, "walking": {"_count": 1}, "under": {"_count": 1}, "both": {"_count": 1}, "about": {"_count": 1}, "hopeful": {"_count": 1}, "more": {"_count": 1}, "on": {"_count": 1}, "watching": {"_count": 1}, "to": {"_count": 1}, "lucky": {"_count": 1}, "havin": {"_count": 1}, "the": {"_count": 1}, "thinking": {"_count": 1}, "surrounded": {"_count": 1}, "hundreds": {"_count": 1}, "so": {"_count": 1}, "better": {"_count": 1}, "there": {"_count": 1}, "taught": {"_count": 1}, "glad": {"_count": 1}, "talking": {"_count": 2}}, "only": {"_count": 6, "wondered": {"_count": 1}, "need": {"_count": 2}, "sent": {"_count": 1}, "came": {"_count": 1}, "met": {"_count": 1}}, "wondered": {"_count": 5, "who": {"_count": 1}, "after": {"_count": 1}, "whether": {"_count": 1}, "said": {"_count": 1}, "what": {"_count": 1}}, "cant": {"_count": 28, "go": {"_count": 1}, "said": {"_count": 2}, "get": {"_count": 1}, "be": {"_count": 2}, "bring": {"_count": 1}, "resist": {"_count": 1}, "prove": {"_count": 1}, "have": {"_count": 1}, "rule": {"_count": 1}, "say": {"_count": 1}, "let": {"_count": 2}, "set": {"_count": 1}, "do": {"_count": 1}, "send": {"_count": 1}, "Harry": {"_count": 1}, "wait": {"_count": 1}, "expect": {"_count": 1}, "hide": {"_count": 1}, "worry": {"_count": 1}, "all": {"_count": 1}, "leave": {"_count": 1}, "tell": {"_count": 1}, "just": {"_count": 1}, "thank": {"_count": 1}, "order": {"_count": 1}}, "might": {"_count": 3, "have": {"_count": 3}}, "want": {"_count": 6, "to": {"_count": 6}}, "had": {"_count": 18, "to": {"_count": 6}, "Black": {"_count": 1}, "him": {"_count": 1}, "prepared": {"_count": 1}, "two": {"_count": 2}, "ter": {"_count": 3}, "lots": {"_count": 1}, "our": {"_count": 1}, "a": {"_count": 1}, "better": {"_count": 1}}, "must": {"_count": 20, "be": {"_count": 6}, "have": {"_count": 2}, "build": {"_count": 1}, "keep": {"_count": 1}, "win": {"_count": 1}, "follow": {"_count": 2}, "do": {"_count": 1}, "try": {"_count": 1}, "agree": {"_count": 1}, "consult": {"_count": 1}, "decide": {"_count": 1}, "stress": {"_count": 1}, "alert": {"_count": 1}}, "would": {"_count": 2, "also": {"_count": 1}, "of": {"_count": 1}}, "hoped": {"_count": 1, "youd": {"_count": 1}}, "need": {"_count": 40, "to": {"_count": 27}, "time": {"_count": 1}, "more": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 4}, "somewhere": {"_count": 1}, "ter": {"_count": 1}, "him": {"_count": 2}, "some": {"_count": 1}, "your": {"_count": 1}}, "meet": {"_count": 1, "again": {"_count": 1}}, "werent": {"_count": 6, "hungry": {"_count": 1}, "there": {"_count": 1}, "trying": {"_count": 1}, "talking": {"_count": 1}, "saying": {"_count": 1}, "having": {"_count": 1}}, "wanted": {"_count": 7, "to": {"_count": 7}}, "houseelves": {"_count": 1, "were": {"_count": 1}}, "dve": {"_count": 1, "come": {"_count": 1}}, "already": {"_count": 3, "know": {"_count": 1}, "knew": {"_count": 2}}, "saw": {"_count": 9, "what": {"_count": 1}, "him": {"_count": 5}, "Uranus": {"_count": 1}, "Malfoy": {"_count": 1}, "it": {"_count": 1}}, "still": {"_count": 2, "need": {"_count": 1}, "hadnt": {"_count": 1}}, "separate": {"_count": 1, "it": {"_count": 1}}, "always": {"_count": 2, "knew": {"_count": 2}}, "keep": {"_count": 2, "all": {"_count": 1}, "trying": {"_count": 1}}, "shall": {"_count": 14, "all": {"_count": 1}, "have": {"_count": 1}, "start": {"_count": 1}, "see": {"_count": 2}, "be": {"_count": 3}, "try": {"_count": 1}, "arrange": {"_count": 1}, "trespass": {"_count": 1}, "never": {"_count": 1}, "secure": {"_count": 1}, "meet": {"_count": 1}}, "do": {"_count": 14, "not": {"_count": 9}, "like": {"_count": 1}, "in": {"_count": 1}, "try": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "even": {"_count": 1, "look": {"_count": 1}}, "ad": {"_count": 1, "im": {"_count": 1}}, "went": {"_count": 5, "to": {"_count": 1}, "back": {"_count": 1}, "up": {"_count": 1}, "with": {"_count": 1}, "into": {"_count": 1}}, "tried": {"_count": 3, "to": {"_count": 2}, "everything": {"_count": 1}}, "thought": {"_count": 17, "Azkaban": {"_count": 1}, "youd": {"_count": 1}, "they": {"_count": 2}, "if": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 5}, "Dumbledore": {"_count": 3}, "wed": {"_count": 1}, "Hermione": {"_count": 1}}, "shouldve": {"_count": 1, "known": {"_count": 1}}, "shouldnt": {"_count": 4, "have": {"_count": 3}, "be": {"_count": 1}}, "mustnt": {"_count": 3, "relax": {"_count": 1}, "be": {"_count": 1}, "I": {"_count": 1}}, "told": {"_count": 4, "you": {"_count": 3}, "Dumbledore": {"_count": 1}}, "didnt": {"_count": 15, "lose": {"_count": 1}, "give": {"_count": 1}, "do": {"_count": 2}, "have": {"_count": 1}, "hear": {"_count": 3}, "expect": {"_count": 1}, "know": {"_count": 3}, "face": {"_count": 1}, "hate": {"_count": 1}, "kill": {"_count": 1}}, "lost": {"_count": 5, "by": {"_count": 1}, "Im": {"_count": 1}, "them": {"_count": 1}, "Moodys": {"_count": 1}, "Luna": {"_count": 1}}, "heard": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "bequeath": {"_count": 1, "it": {"_count": 1}}, "let": {"_count": 1, "off": {"_count": 1}}, "used": {"_count": 4, "it": {"_count": 1}, "to": {"_count": 2}, "my": {"_count": 1}}, "owe": {"_count": 1, "them": {"_count": 1}}, "all": {"_count": 15, "know": {"_count": 6}, "need": {"_count": 1}, "hate": {"_count": 1}, "did": {"_count": 1}, "ready": {"_count": 1}, "like": {"_count": 1}, "wondered": {"_count": 1}, "wanted": {"_count": 1}, "ran": {"_count": 1}, "thought": {"_count": 1}}, "did": {"_count": 9, "Animagi": {"_count": 1}, "it": {"_count": 4}, "mate": {"_count": 1}, "": {"_count": 1}, "like": {"_count": 1}, "desire": {"_count": 1}}, "laughed": {"_count": 2, "about": {"_count": 1}, "at": {"_count": 1}}, "attacked": {"_count": 3, "a": {"_count": 2}, "each": {"_count": 1}}, "weve": {"_count": 1, "been": {"_count": 1}}, "er": {"_count": 2, "have": {"_count": 1}, "we": {"_count": 1}}, "came": {"_count": 2, "back": {"_count": 1}, "very": {"_count": 1}}, "mightve": {"_count": 1, "had": {"_count": 1}}, "sent": {"_count": 3, "it": {"_count": 1}, "an": {"_count": 1}, "messages": {"_count": 1}}, "spent": {"_count": 2, "six": {"_count": 1}, "two": {"_count": 1}}, "live": {"_count": 1, "just": {"_count": 1}}, "agreed": {"_count": 2, "not": {"_count": 1}, "I": {"_count": 1}}, "found": {"_count": 3, "Barty": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}, "held": {"_count": 1, "a": {"_count": 1}}, "give": {"_count": 1, "detentions": {"_count": 1}}, "start": {"_count": 1, "by": {"_count": 1}}, "ave": {"_count": 2, "all": {"_count": 1}, "none": {"_count": 1}}, "keeps": {"_count": 1, "their": {"_count": 1}}, "upholds": {"_count": 1, "the": {"_count": 1}}, "cannot": {"_count": 2, "sing": {"_count": 1}, "live": {"_count": 1}}, "award": {"_count": 2, "her": {"_count": 1}, "him": {"_count": 1}}, "therefore": {"_count": 1, "award": {"_count": 1}}, "is": {"_count": 2, "sorry": {"_count": 1}, "hoping": {"_count": 1}}, "has": {"_count": 1, "your": {"_count": 1}}, "couldve": {"_count": 2, "tried": {"_count": 1}, "had": {"_count": 1}}, "seemply": {"_count": 1, "ave": {"_count": 1}}, "helped": {"_count": 1, "Ron": {"_count": 1}}, "alone": {"_count": 2, "were": {"_count": 1}, "tried": {"_count": 1}}, "never": {"_count": 3, "thought": {"_count": 1}, "said": {"_count": 1}, "heard": {"_count": 1}}, "both": {"_count": 7, "got": {"_count": 1}, "felt": {"_count": 1}, "knew": {"_count": 1}, "know": {"_count": 4}}, "bow": {"_count": 1, "to": {"_count": 1}}, "took": {"_count": 4, "on": {"_count": 1}, "him": {"_count": 1}, "away": {"_count": 1}, "her": {"_count": 1}}, "journeyed": {"_count": 1, "to": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "kept": {"_count": 1, "trying": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "ought": {"_count": 4, "to": {"_count": 4}}, "knew": {"_count": 2, "youd": {"_count": 1}, "nobody": {"_count": 1}}, "take": {"_count": 3, "it": {"_count": 1}, "one": {"_count": 1}, "no": {"_count": 1}}, "put": {"_count": 1, "advertisements": {"_count": 1}}, "gave": {"_count": 1, "Percy": {"_count": 1}}, "ghosts": {"_count": 1, "though": {"_count": 1}}, "believe": {"_count": 3, "Harry": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}, "seriously": {"_count": 1, "debated": {"_count": 1}}, "get": {"_count": 1, "career": {"_count": 1}}, "once": {"_count": 1, "hid": {"_count": 1}}, "guessed": {"_count": 1, "said": {"_count": 1}}, "jus": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 3, "pretendin": {"_count": 1}, "told": {"_count": 1}, "hiding": {"_count": 1}}, "chanced": {"_count": 1, "a": {"_count": 1}}, "didn": {"_count": 2, "dare": {"_count": 1}, "leave": {"_count": 1}}, "wen": {"_count": 1, "down": {"_count": 1}}, "Slytherins": {"_count": 1, "are": {"_count": 1}}, "find": {"_count": 2, "ourselves": {"_count": 1}, "it": {"_count": 1}}, "begin": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "watch": {"_count": 1, "the": {"_count": 1}}, "needed": {"_count": 1, "evidence": {"_count": 1}}, "recognized": {"_count": 1, "Harrys": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "jjjust": {"_count": 1, "did": {"_count": 1}}, "consider": {"_count": 1, "that": {"_count": 1}}, "wizards": {"_count": 2, "have": {"_count": 1}, "triumphant": {"_count": 1}}, "discussed": {"_count": 1, "your": {"_count": 1}}, "entered": {"_count": 1, "your": {"_count": 1}}, "urge": {"_count": 1, "the": {"_count": 1}}, "promise": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "turn": {"_count": 1, "left": {"_count": 1}}, "hadnt": {"_count": 1, "got": {"_count": 1}}, "discuss": {"_count": 1, "our": {"_count": 1}}, "sat": {"_count": 1, "our": {"_count": 1}}, "really": {"_count": 2, "havent": {"_count": 1}, "must": {"_count": 1}}, "met": {"_count": 1, "on": {"_count": 1}}, "couldnt": {"_count": 2, "have": {"_count": 1}, "": {"_count": 1}}, "smashed": {"_count": 1, "the": {"_count": 1}}, "danced": {"_count": 1, "to": {"_count": 1}}, "split": {"_count": 1, "up": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "decided": {"_count": 2, "to": {"_count": 1}, "not": {"_count": 1}}, "arrived": {"_count": 1, "back": {"_count": 1}}, "checked": {"_count": 1, "the": {"_count": 1}}, "hung": {"_count": 1, "around": {"_count": 1}}, "now": {"_count": 1, "have": {"_count": 1}}, "Narcissa": {"_count": 1, "and": {"_count": 1}}, "hope": {"_count": 1, "theyll": {"_count": 1}}, "call": {"_count": 1, "her": {"_count": 1}}, "we": {"_count": 2, "thought": {"_count": 1}, "cant": {"_count": 1}}, "woke": {"_count": 1, "up": {"_count": 1}}, "search": {"_count": 1, "manually": {"_count": 1}}, "threw": {"_count": 1, "it": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}, "seize": {"_count": 1, "control": {"_count": 1}}, "talked": {"_count": 1, "ourselves": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}, "like": {"_count": 1, "to": {"_count": 1}}, "borrowed": {"_count": 1, "it": {"_count": 1}}, "protest": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 1, "your": {"_count": 1}}, "tell": {"_count": 1, "Griphook": {"_count": 1}}, "switch": {"_count": 1, "them": {"_count": 1}}, "moved": {"_count": 1, "house": {"_count": 1}}, "ung": {"_count": 1, "back": {"_count": 1}}, "bring": {"_count": 1, "you": {"_count": 1}}, "duel": {"_count": 1, "on": {"_count": 1}}, "wrote": {"_count": 1, "to": {"_count": 1}}}, "thankful": {"_count": 5, "for": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 4, "he": {"_count": 1}, "Professor": {"_count": 1}, "they": {"_count": 1}, "Ron": {"_count": 1}}}, "Would": {"_count": 58, "you": {"_count": 19, "care": {"_count": 1}, "mind": {"_count": 3}, "please": {"_count": 1}, "be": {"_count": 1}, "like": {"_count": 8}, "call": {"_count": 2}, "say": {"_count": 2}, "look": {"_count": 1}}, "it": {"_count": 5, "be": {"_count": 2}, "kill": {"_count": 1}, "have": {"_count": 1}, "hurt": {"_count": 1}}, "someone": {"_count": 1, "be": {"_count": 1}}, "they": {"_count": 2, "be": {"_count": 1}, "pull": {"_count": 1}}, "anyone": {"_count": 3, "believe": {"_count": 2}, "like": {"_count": 1}}, "he": {"_count": 11, "be": {"_count": 5}, "": {"_count": 1}, "have": {"_count": 2}, "come": {"_count": 1}, "tell": {"_count": 1}, "confiscate": {"_count": 1}}, "we": {"_count": 1, "get": {"_count": 1}}, "Malfoy": {"_count": 1, "believe": {"_count": 1}}, "Sirius": {"_count": 1, "have": {"_count": 1}}, "always": {"_count": 1, "be": {"_count": 1}}, "Moody": {"_count": 1, "go": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Umbridges": {"_count": 1, "notice": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "yeh": {"_count": 1, "mind": {"_count": 1}}, "Nevilles": {"_count": 1, "mother": {"_count": 1}}, "there": {"_count": 1, "then": {"_count": 1}}, "Dumbledore": {"_count": 1, "have": {"_count": 1}}, "Gregorovitch": {"_count": 1, "know": {"_count": 1}}, "James": {"_count": 1, "have": {"_count": 1}}, "the": {"_count": 1, "elf": {"_count": 1}}, "I": {"_count": 1, "": {"_count": 1}}}, "care": {"_count": 183, "for": {"_count": 9, "a": {"_count": 1}, "my": {"_count": 1}, "clothes": {"_count": 1}, "Notts": {"_count": 1}, "him": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "Ariana": {"_count": 1}}, "of": {"_count": 18, "yer": {"_count": 1}, "all": {"_count": 1}, "him": {"_count": 3}, "doubleended": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "creatures": {"_count": 1}, "any": {"_count": 1}, "myself": {"_count": 1}, "yerself": {"_count": 1}, "yourself": {"_count": 2}, "the": {"_count": 1}, "everyday": {"_count": 1}, "Miss": {"_count": 1}, "Apparently": {"_count": 1}}, "about": {"_count": 23, "Gryffindor": {"_count": 1}, "yourselves": {"_count": 1}, "Ginny": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}, "that": {"_count": 2}, "attacking": {"_count": 1}, "exam": {"_count": 1}, "making": {"_count": 1}, "Quidditch": {"_count": 1}, "getting": {"_count": 1}, "staying": {"_count": 1}, "seeing": {"_count": 1}, "being": {"_count": 1}, "anything": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 1}, "me": {"_count": 1}, "school": {"_count": 1}, "killing": {"_count": 1}, "Hogwarts": {"_count": 1}}, "if": {"_count": 11, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}, "my": {"_count": 1}, "numbers": {"_count": 1}, "its": {"_count": 1}, "Im": {"_count": 1}}, "GO": {"_count": 1, "": {"_count": 1}}, "": {"_count": 33, "?": {"_count": 4}, ".": {"_count": 25}, "!": {"_count": 4}}, "what": {"_count": 16, "this": {"_count": 1}, "sort": {"_count": 1}, "Fudge": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 2}, "that": {"_count": 1}, "Moody": {"_count": 1}, "you": {"_count": 1}, "happened": {"_count": 1}, "provocation": {"_count": 1}, "happens": {"_count": 3}, "hes": {"_count": 1}, "theyre": {"_count": 1}}, "sir": {"_count": 1, "for": {"_count": 1}}, "that": {"_count": 4, "Draco": {"_count": 1}, "Snapes": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}}, "he": {"_count": 6, "was": {"_count": 4}, "wouldnt": {"_count": 1}, "shows": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "how": {"_count": 10, "I": {"_count": 1}, "much": {"_count": 1}, "frightened": {"_count": 1}, "many": {"_count": 4}, "you": {"_count": 1}, "nutty": {"_count": 1}, "he": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "not": {"_count": 3, "to": {"_count": 2}, "until": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "whether": {"_count": 3, "their": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}}, "to": {"_count": 4, "sit": {"_count": 1}, "stop": {"_count": 1}, "bang": {"_count": 1}, "tread": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "cos": {"_count": 1, "theyll": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 5, "Myrtle": {"_count": 1}, "Mrs": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 2}}, "nor": {"_count": 1, "would": {"_count": 1}}, "very": {"_count": 2, "much": {"_count": 2}}, "it": {"_count": 1, "could": {"_count": 1}}, "less": {"_count": 2, "what": {"_count": 1}, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 1, "yeh": {"_count": 1}}, "Slughorns": {"_count": 1, "memory": {"_count": 1}}, "favoring": {"_count": 1, "objects": {"_count": 1}}, "either": {"_count": 1, "I": {"_count": 1}}, "Big": {"_count": 1, "D": {"_count": 1}}, "much": {"_count": 1, "that": {"_count": 1}}, "theyre": {"_count": 1, "going": {"_count": 1}}, "the": {"_count": 1, "memory": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "who": {"_count": 1, "we": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 1, "about": {"_count": 1}}, "and": {"_count": 1, "caution": {"_count": 1}}}, "lemon": {"_count": 10, "drop": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "drops": {"_count": 2, "": {"_count": 1}, "seemed": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "!": {"_count": 1}, "?": {"_count": 1}}, "ice": {"_count": 1, "pop": {"_count": 1}}, "meringue": {"_count": 1, "pie": {"_count": 1}}}, "drop": {"_count": 69, "": {"_count": 8, "?": {"_count": 1}, ".": {"_count": 6}, "!": {"_count": 1}}, "and": {"_count": 3, "did": {"_count": 1}, "kept": {"_count": 1}, "then": {"_count": 1}}, "wastepaper": {"_count": 1, "baskets": {"_count": 1}}, "it": {"_count": 8, "": {"_count": 2}, "there": {"_count": 1}, "into": {"_count": 1}, "will": {"_count": 1}, "in": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "the": {"_count": 2, "crate": {"_count": 1}, "first": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 7, "magical": {"_count": 2}, "his": {"_count": 2}, "hot": {"_count": 1}, "rain": {"_count": 1}, "pity": {"_count": 1}}, "off": {"_count": 3, "their": {"_count": 1}, "his": {"_count": 1}, "again": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "his": {"_count": 2, "books": {"_count": 1}, "gaze": {"_count": 1}}, "dead": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "a": {"_count": 3, "couple": {"_count": 1}, "bag": {"_count": 1}, "little": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "your": {"_count": 1, "name": {"_count": 1}}, "each": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 1}, "popularity": {"_count": 1}, "on": {"_count": 1}, "said": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 2, "off": {"_count": 2}}, "whatever": {"_count": 1, "he": {"_count": 1}}, "Dolores": {"_count": 2, "": {"_count": 2}}, "back": {"_count": 1, "in": {"_count": 1}}, "one": {"_count": 1, "surreptitiously": {"_count": 1}}, "by": {"_count": 2, "and": {"_count": 1}, "a": {"_count": 1}}, "Augusta": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "black": {"_count": 1, "and": {"_count": 1}}, "certain": {"_count": 1, "snippets": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "mud": {"_count": 1, "upon": {"_count": 1}}, "was": {"_count": 1, "greater": {"_count": 1}}}, "Theyre": {"_count": 142, "a": {"_count": 5, "kind": {"_count": 1}, "bunch": {"_count": 1}, "bit": {"_count": 2}, "lot": {"_count": 1}}, "saying": {"_count": 2, "he": {"_count": 1}, "all": {"_count": 1}}, "the": {"_count": 2, "only": {"_count": 1}, "Montgomery": {"_count": 1}}, "dead": {"_count": 4, "said": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "helpful": {"_count": 1}}, "just": {"_count": 2, "not": {"_count": 1}, "building": {"_count": 1}}, "not": {"_count": 18, "really": {"_count": 1}, "throwing": {"_count": 1}, "birds": {"_count": 1}, "girls": {"_count": 1}, "": {"_count": 1}, "stopping": {"_count": 1}, "like": {"_count": 1}, "letting": {"_count": 1}, "giving": {"_count": 1}, "made": {"_count": 1}, "supposed": {"_count": 1}, "his": {"_count": 1}, "normal": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "still": {"_count": 1}, "back": {"_count": 1}, "arguing": {"_count": 1}}, "in": {"_count": 5, "here": {"_count": 1}, "a": {"_count": 1}, "Azkaban": {"_count": 1}, "Australia": {"_count": 1}, "charge": {"_count": 1}}, "very": {"_count": 3, "important": {"_count": 1}, "interesting": {"_count": 1}, "clever": {"_count": 1}}, "rare": {"_count": 2, "them": {"_count": 2}}, "deep": {"_count": 1, "mind": {"_count": 1}}, "keys": {"_count": 1, "Winged": {"_count": 1}}, "ruinin": {"_count": 1, "the": {"_count": 1}}, "called": {"_count": 1, "Bludgers": {"_count": 1}}, "startin": {"_count": 1, "ter": {"_count": 1}}, "starting": {"_count": 1, "a": {"_count": 1}}, "probably": {"_count": 1, "still": {"_count": 1}}, "talking": {"_count": 2, "about": {"_count": 2}}, "here": {"_count": 1, "he": {"_count": 1}}, "horrible": {"_count": 1, "things": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "guarding": {"_count": 1, "every": {"_count": 1}}, "getting": {"_count": 1, "hungry": {"_count": 1}}, "excellent": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "and": {"_count": 1}}, "bringing": {"_count": 1, "the": {"_count": 1}}, "going": {"_count": 4, "to": {"_count": 4}}, "cornin": {"_count": 1, "": {"_count": 1}}, "late": {"_count": 1, "": {"_count": 1}}, "objects": {"_count": 1, "that": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "enough": {"_count": 1}}, "having": {"_count": 2, "their": {"_count": 1}, "a": {"_count": 1}}, "working": {"_count": 2, "him": {"_count": 1}, "to": {"_count": 1}}, "all": {"_count": 7, "like": {"_count": 2}, "": {"_count": 1}, "hoping": {"_count": 1}, "right": {"_count": 2}, "about": {"_count": 1}}, "gettin": {"_count": 1, "massive": {"_count": 1}}, "only": {"_count": 1, "socks": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "supposed": {"_count": 3, "to": {"_count": 3}}, "making": {"_count": 1, "it": {"_count": 1}}, "jus": {"_count": 1, "nutters": {"_count": 1}}, "good": {"_count": 1, "nifflers": {"_count": 1}}, "hedges": {"_count": 1, "": {"_count": 1}}, "enormous": {"_count": 1, "I": {"_count": 1}}, "heading": {"_count": 1, "off": {"_count": 1}}, "really": {"_count": 4, "useful": {"_count": 1}, "cute": {"_count": 1}, "excellent": {"_count": 1}, "sorry": {"_count": 1}}, "always": {"_count": 1, "talking": {"_count": 1}}, "still": {"_count": 3, "in": {"_count": 1}, "at": {"_count": 1}, "looking": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "doubleended": {"_count": 1, "colorcoded": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "hats": {"_count": 1, "for": {"_count": 1}}, "tree": {"_count": 1, "guardians": {"_count": 1}}, "disappearing": {"_count": 1, "like": {"_count": 1}}, "spirits": {"_count": 1, "of": {"_count": 1}}, "quite": {"_count": 1, "within": {"_count": 1}}, "throbbing": {"_count": 1, "like": {"_count": 1}}, "two": {"_count": 1, "blokes": {"_count": 1}}, "sure": {"_count": 1, "theyll": {"_count": 1}}, "freckles": {"_count": 1, "": {"_count": 1}}, "complete": {"_count": 1, "rubbish": {"_count": 1}}, "so": {"_count": 1, "pretty": {"_count": 1}}, "brains": {"_count": 1, "": {"_count": 1}}, "raking": {"_count": 1, "in": {"_count": 1}}, "definitely": {"_count": 1, "owls": {"_count": 1}}, "fairly": {"_count": 1, "cuddly": {"_count": 1}}, "even": {"_count": 2, "staring": {"_count": 1}, "quite": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "friends": {"_count": 1, "of": {"_count": 1}}, "invisible": {"_count": 1, "": {"_count": 1}}, "playing": {"_count": 1, "Harper": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "using": {"_count": 1, "knives": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "stupid": {"_count": 1, "enough": {"_count": 1}}, "through": {"_count": 1, "here": {"_count": 1}}, "watching": {"_count": 1, "your": {"_count": 1}}, "frightened": {"_count": 1, "they": {"_count": 1}}, "okay": {"_count": 1, "though": {"_count": 1}}, "everywhere": {"_count": 1, "gangs": {"_count": 1}}, "normally": {"_count": 1, "something": {"_count": 1}}, "Snatchers": {"_count": 1, "theyre": {"_count": 1}}, "locked": {"_count": 1, "Greyback": {"_count": 1}}, "Imperiused": {"_count": 1, "he": {"_count": 1}}, "pleased": {"_count": 1, "": {"_count": 1}}, "evacuating": {"_count": 1, "the": {"_count": 1}}, "protected": {"_count": 1, "from": {"_count": 1}}, "gentle": {"_count": 1, "things": {"_count": 1}}}, "sweet": {"_count": 29, "Im": {"_count": 1, "rather": {"_count": 1}}, "tea": {"_count": 1, "while": {"_count": 1}}, "they": {"_count": 1, "might": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "of": {"_count": 1, "you": {"_count": 1}}, "His": {"_count": 1, "eyes": {"_count": 1}}, "Snape": {"_count": 1, "breathed": {"_count": 1}}, "perfume": {"_count": 1, "spreading": {"_count": 1}}, "old": {"_count": 1, "mother": {"_count": 1}}, "little": {"_count": 1, "owl": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 3}}, "smile": {"_count": 1, "": {"_count": 1}}, "girlish": {"_count": 1, "voice": {"_count": 1}}, "fashion": {"_count": 1, "": {"_count": 1}}, "wrappers": {"_count": 1, "littered": {"_count": 1}}, "beamed": {"_count": 1, "Mrs": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "togezzer": {"_count": 1, "": {"_count": 1}}, "Dudders": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "us": {"_count": 1}}, "and": {"_count": 1, "scared": {"_count": 1}}}, "Im": {"_count": 1306, "rather": {"_count": 3, "fond": {"_count": 1}, "busy": {"_count": 1}, "attached": {"_count": 1}}, "not": {"_count": 210, "saying": {"_count": 3}, "going": {"_count": 21}, "having": {"_count": 5}, "sure": {"_count": 16}, "picked": {"_count": 1}, "sayin": {"_count": 3}, "Fred": {"_count": 1}, "trying": {"_count": 6}, "": {"_count": 8}, "hungry": {"_count": 3}, "brave": {"_count": 2}, "promisin": {"_count": 1}, "ill": {"_count": 1}, "as": {"_count": 2}, "there": {"_count": 3}, "pleased": {"_count": 1}, "even": {"_count": 1}, "on": {"_count": 2}, "buying": {"_count": 2}, "said": {"_count": 8}, "Muggleborn": {"_count": 1}, "back": {"_count": 1}, "myself": {"_count": 1}, "taking": {"_count": 2}, "your": {"_count": 2}, "delicate": {"_count": 1}, "worth": {"_count": 1}, "thinking": {"_count": 1}, "blamin": {"_count": 1}, "Hermione": {"_count": 1}, "doing": {"_count": 5}, "distressed": {"_count": 1}, "putting": {"_count": 1}, "wearing": {"_count": 2}, "supposed": {"_count": 4}, "here": {"_count": 1}, "stupid": {"_count": 3}, "telling": {"_count": 3}, "running": {"_count": 1}, "enjoying": {"_count": 2}, "asking": {"_count": 2}, "ashamed": {"_count": 3}, "meeting": {"_count": 1}, "the": {"_count": 3}, "really": {"_count": 2}, "allowed": {"_count": 5}, "barging": {"_count": 1}, "dancing": {"_count": 1}, "in": {"_count": 2}, "entirely": {"_count": 1}, "botherin": {"_count": 1}, "expecting": {"_count": 1}, "worried": {"_count": 1}, "complaining": {"_count": 2}, "worrying": {"_count": 1}, "too": {"_count": 1}, "spposed": {"_count": 1}, "talking": {"_count": 5}, "a": {"_count": 3}, "expelled": {"_count": 1}, "lying": {"_count": 2}, "better": {"_count": 1}, "Percy": {"_count": 1}, "bothering": {"_count": 2}, "Im": {"_count": 1}, "laughing": {"_count": 1}, "bad": {"_count": 1}, "giving": {"_count": 2}, "youve": {"_count": 1}, "wasting": {"_count": 1}, "feeling": {"_count": 1}, "making": {"_count": 2}, "complimentin": {"_count": 1}, "scared": {"_count": 1}, "mad": {"_count": 2}, "proud": {"_count": 1}, "just": {"_count": 1}, "that": {"_count": 1}, "staying": {"_count": 1}, "playing": {"_count": 1}, "invited": {"_count": 1}, "alone": {"_count": 1}, "fussed": {"_count": 1}, "likely": {"_count": 1}, "surrounded": {"_count": 1}, "selling": {"_count": 1}, "defending": {"_count": 1}, "dropping": {"_count": 1}, "upset": {"_count": 2}, "afraid": {"_count": 1}, "hurt": {"_count": 1}, "coming": {"_count": 1}, "messing": {"_count": 1}, "retorted": {"_count": 1}, "surprised": {"_count": 1}, "being": {"_count": 1}, "at": {"_count": 1}, "interested": {"_count": 2}, "deaf": {"_count": 1}, "killing": {"_count": 1}}, "warning": {"_count": 9, "you": {"_count": 9}}, "dyeing": {"_count": 1, "some": {"_count": 1}}, "armed": {"_count": 2, "": {"_count": 2}}, "sorry": {"_count": 97, "but": {"_count": 10}, "to": {"_count": 8}, "Hagrid": {"_count": 1}, "Harry": {"_count": 10}, "he": {"_count": 6}, "theres": {"_count": 1}, "I": {"_count": 10}, "Lavender": {"_count": 1}, "Potter": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 18}, "lads": {"_count": 1}, "theyve": {"_count": 1}, "Ron": {"_count": 2}, "no": {"_count": 1}, "she": {"_count": 1}, "cried": {"_count": 1}, "everyone": {"_count": 1}, "Grawp": {"_count": 1}, "you": {"_count": 3}, "Longbottom": {"_count": 2}, "Ive": {"_count": 1}, "sir": {"_count": 1}, "Demelza": {"_count": 1}, "dears": {"_count": 1}, "the": {"_count": 1}, "Im": {"_count": 4}, "moaned": {"_count": 1}, "said": {"_count": 2}, "Ill": {"_count": 1}, "Dad": {"_count": 1}, "Tuney": {"_count": 1}, "He": {"_count": 1}}, "Keeper": {"_count": 3, "of": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 40, "what": {"_count": 2}, "a": {"_count": 1}, "Thinking": {"_count": 1}, "prefect": {"_count": 1}, "match": {"_count": 1}, "Im": {"_count": 1}, "Filch": {"_count": 1}, "Squib": {"_count": 3}, "Ravenclaw": {"_count": 1}, "dragon": {"_count": 1}, "vampire": {"_count": 1}, "member": {"_count": 1}, "goner": {"_count": 1}, "girl": {"_count": 2}, "lot": {"_count": 1}, "student": {"_count": 1}, "Metamorphmagus": {"_count": 1}, "mad": {"_count": 1}, "flobberworm": {"_count": 1}, "resident": {"_count": 1}, "liar": {"_count": 1}, "lying": {"_count": 1}, "really": {"_count": 1}, "clever": {"_count": 1}, "nutter": {"_count": 1}, "bit": {"_count": 1}, "busy": {"_count": 1}, "teacher": {"_count": 1}, "free": {"_count": 1}, "ruddy": {"_count": 1}, "waste": {"_count": 1}, "fool": {"_count": 1}, "hundred": {"_count": 1}, "Mudblood": {"_count": 1}, "witch": {"_count": 1}, "wizard": {"_count": 1}}, "the": {"_count": 16, "right": {"_count": 1}, "sixth": {"_count": 1}, "worst": {"_count": 1}, "Hogwarts": {"_count": 1}, "new": {"_count": 1}, "one": {"_count": 6}, "last": {"_count": 1}, "weapon": {"_count": 1}, "only": {"_count": 1}, "best": {"_count": 1}, "Captain": {"_count": 1}}, "er": {"_count": 1, "not": {"_count": 1}}, "getting": {"_count": 14, "up": {"_count": 1}, "too": {"_count": 1}, "there": {"_count": 2}, "everyone": {"_count": 1}, "his": {"_count": 1}, "out": {"_count": 1}, "sick": {"_count": 2}, "better": {"_count": 1}, "used": {"_count": 1}, "bored": {"_count": 1}, "an": {"_count": 1}, "my": {"_count": 1}}, "on": {"_count": 8, "Hogwarts": {"_count": 1}, "holiday": {"_count": 1}, "the": {"_count": 2}, "probation": {"_count": 1}, "firstname": {"_count": 1}, "it": {"_count": 1}, "your": {"_count": 1}}, "meeting": {"_count": 3, "you": {"_count": 1}, "Hermione": {"_count": 1}, "Cormac": {"_count": 1}}, "just": {"_count": 25, "so": {"_count": 2}, "going": {"_count": 5}, "too": {"_count": 1}, "HARRY": {"_count": 1}, "off": {"_count": 1}, "glad": {"_count": 2}, "thinking": {"_count": 1}, "telling": {"_count": 1}, "tttoo": {"_count": 1}, "thrilled": {"_count": 1}, "ssso": {"_count": 1}, "passing": {"_count": 1}, "getting": {"_count": 1}, "trying": {"_count": 2}, "chucking": {"_count": 1}, "saying": {"_count": 1}, "waiting": {"_count": 1}, "as": {"_count": 1}}, "all": {"_count": 6, "of": {"_count": 2}, "right": {"_count": 4}}, "gonna": {"_count": 1, "be": {"_count": 1}}, "going": {"_count": 115, "to": {"_count": 92}, "back": {"_count": 2}, "out": {"_count": 1}, "through": {"_count": 1}, "I": {"_count": 1}, "down": {"_count": 2}, "mad": {"_count": 2}, "Harry": {"_count": 1}, "up": {"_count": 1}, "for": {"_count": 3}, "with": {"_count": 4}, "Im": {"_count": 1}, "": {"_count": 1}, "straight": {"_count": 1}, "this": {"_count": 1}, "understand": {"_count": 1}}, "in": {"_count": 15, "Hufflepuff": {"_count": 1}, "Gryffindor": {"_count": 4}, "I": {"_count": 1}, "a": {"_count": 1}, "no": {"_count": 1}, "serious": {"_count": 1}, "trouble": {"_count": 1}, "rather": {"_count": 1}, "detention": {"_count": 1}, "Im": {"_count": 1}, "Dumbledores": {"_count": 1}, "Slytherin": {"_count": 1}}, "righthanded": {"_count": 1, "said": {"_count": 1}}, "special": {"_count": 1, "he": {"_count": 1}}, "famous": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "George": {"_count": 3, "said": {"_count": 2}, "": {"_count": 1}}, "up": {"_count": 5, "front": {"_count": 1}, "to": {"_count": 3}, "here": {"_count": 1}}, "missing": {"_count": 1, "Agrippa": {"_count": 1}}, "Hermione": {"_count": 1, "Granger": {"_count": 1}}, "Ron": {"_count": 2, "Weasley": {"_count": 1}, "remember": {"_count": 1}}, "pretty": {"_count": 5, "But": {"_count": 1}, "sure": {"_count": 2}, "tired": {"_count": 1}, "confident": {"_count": 1}}, "halfandhalf": {"_count": 1, "said": {"_count": 1}}, "particularly": {"_count": 1, "interested": {"_count": 1}}, "his": {"_count": 5, "second": {"_count": 1}, "godfather": {"_count": 2}, "Head": {"_count": 1}, "best": {"_count": 1}}, "coming": {"_count": 8, "with": {"_count": 1}, "Penny": {"_count": 1}, "go": {"_count": 1}, "to": {"_count": 2}, "up": {"_count": 1}, "said": {"_count": 2}}, "very": {"_count": 12, "disappointed": {"_count": 1}, "pleased": {"_count": 1}, "glad": {"_count": 3}, "sorry": {"_count": 3}, "much": {"_count": 1}, "happy": {"_count": 1}, "well": {"_count": 2}}, "with": {"_count": 2, "Harry": {"_count": 1}, "you": {"_count": 1}}, "sure": {"_count": 97, "so": {"_count": 1}, "it": {"_count": 7}, "Firenze": {"_count": 1}, "none": {"_count": 1}, "no": {"_count": 1}, "Ive": {"_count": 2}, "my": {"_count": 2}, "": {"_count": 7}, "youll": {"_count": 7}, "you": {"_count": 8}, "of": {"_count": 2}, "its": {"_count": 2}, "if": {"_count": 2}, "Harryd": {"_count": 1}, "he": {"_count": 6}, "Professor": {"_count": 2}, "Dumbledore": {"_count": 2}, "that": {"_count": 3}, "Mr": {"_count": 2}, "theyd": {"_count": 3}, "theyre": {"_count": 2}, "Sirius": {"_count": 2}, "would": {"_count": 1}, "I": {"_count": 2}, "well": {"_count": 1}, "shes": {"_count": 1}, "hed": {"_count": 3}, "Hagrids": {"_count": 1}, "they": {"_count": 1}, "we": {"_count": 4}, "Ernie": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}, "Ill": {"_count": 1}, "said": {"_count": 3}, "Rita": {"_count": 1}, "shed": {"_count": 1}, "were": {"_count": 1}, "\u2018Miss": {"_count": 1}, "James": {"_count": 1}, "thats": {"_count": 1}, "theres": {"_count": 1}, "this": {"_count": 2}, "hes": {"_count": 1}}, "tellin": {"_count": 1, "yeh": {"_count": 1}}, "sayin": {"_count": 2, "nothin": {"_count": 1}, "": {"_count": 1}}, "away": {"_count": 2, "wont": {"_count": 1}, "": {"_count": 1}}, "freezing": {"_count": 1, "said": {"_count": 1}}, "alone": {"_count": 1, "but": {"_count": 1}}, "different": {"_count": 1, "I": {"_count": 1}}, "Head": {"_count": 3, "Boy": {"_count": 2}, "of": {"_count": 1}}, "wearing": {"_count": 2, "the": {"_count": 1}, "my": {"_count": 1}}, "holding": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Quidditch": {"_count": 1, "captain": {"_count": 1}}, "serious": {"_count": 6, "Harry": {"_count": 1}, "": {"_count": 3}, "Hermione": {"_count": 1}, "you": {"_count": 1}}, "worth": {"_count": 1, "twelve": {"_count": 1}}, "waiting": {"_count": 4, "": {"_count": 1}, "for": {"_count": 3}}, "boiling": {"_count": 1, "": {"_count": 1}}, "disgusted": {"_count": 1, "said": {"_count": 1}}, "much": {"_count": 5, "mistaken": {"_count": 5}}, "glad": {"_count": 11, "weve": {"_count": 1}, "we": {"_count": 2}, "you": {"_count": 3}, "someone": {"_count": 1}, "he": {"_count": 1}, "thats": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}}, "fine": {"_count": 23, "said": {"_count": 9}, "thanks": {"_count": 2}, "go": {"_count": 1}, "he": {"_count": 2}, "Neville": {"_count": 1}, "": {"_count": 5}, "lied": {"_count": 1}, "sir": {"_count": 1}, "Harry": {"_count": 1}}, "talking": {"_count": 14, "about": {"_count": 9}, "": {"_count": 1}, "to": {"_count": 4}}, "so": {"_count": 17, "worried": {"_count": 1}, "sorry": {"_count": 10}, "glad": {"_count": 2}, "proud": {"_count": 1}, "grateful": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 1}}, "never": {"_count": 3, "going": {"_count": 1}, "stocking": {"_count": 1}, "wearing": {"_count": 1}}, "ready": {"_count": 3, "": {"_count": 2}, "now": {"_count": 1}}, "really": {"_count": 20, "really": {"_count": 3}, "sorry": {"_count": 9}, "jealous": {"_count": 1}, "good": {"_count": 1}, "glad": {"_count": 2}, "stup": {"_count": 1}, "going": {"_count": 1}, "well": {"_count": 1}, "Oh": {"_count": 1}}, "trying": {"_count": 21, "to": {"_count": 16}, "said": {"_count": 2}, "Im": {"_count": 1}, "": {"_count": 1}, "something": {"_count": 1}}, "no": {"_count": 5, "match": {"_count": 1}, "good": {"_count": 1}, "expert": {"_count": 1}, "great": {"_count": 1}, "use": {"_count": 1}}, "presenting": {"_count": 1, "it": {"_count": 1}}, "afraid": {"_count": 50, "Ive": {"_count": 1}, "we": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 5}, "not": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 5}, "no": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 12}, "its": {"_count": 1}, "it": {"_count": 3}, "you": {"_count": 4}, "MUNDUNGUS": {"_count": 1}, "said": {"_count": 1}, "youll": {"_count": 1}, "Dumbledore": {"_count": 1}, "youre": {"_count": 1}, "to": {"_count": 2}, "this": {"_count": 1}, "Im": {"_count": 1}, "so": {"_count": 1}, "those": {"_count": 1}}, "calling": {"_count": 1, "him": {"_count": 1}}, "off": {"_count": 7, "into": {"_count": 1}, "": {"_count": 1}, "Mr": {"_count": 1}, "to": {"_count": 4}}, "locking": {"_count": 1, "you": {"_count": 1}}, "dead": {"_count": 3, "said": {"_count": 1}, "clumsy": {"_count": 1}, "too": {"_count": 1}}, "tired": {"_count": 2, "yawned": {"_count": 1}, "": {"_count": 1}}, "right": {"_count": 3, "underneath": {"_count": 1}, "behind": {"_count": 1}, "though": {"_count": 1}}, "staying": {"_count": 8, "with": {"_count": 1}, "at": {"_count": 1}, "out": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 3}, "here": {"_count": 1}}, "better": {"_count": 2, "at": {"_count": 2}}, "Im": {"_count": 8, "Colin": {"_count": 1}, "in": {"_count": 1}, "starving": {"_count": 1}, "not": {"_count": 1}, "hiding": {"_count": 1}, "fine": {"_count": 1}, "sorry": {"_count": 2}}, "Colin": {"_count": 1, "Creevey": {"_count": 1}}, "taking": {"_count": 6, "loads": {"_count": 1}, "more": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "myself": {"_count": 1}, "Fleur": {"_count": 1}}, "surprised": {"_count": 10, "you": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 2}, "so": {"_count": 1}, "your": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "ony": {"_count": 1, "jokin": {"_count": 1}}, "only": {"_count": 3, "joking": {"_count": 1}, "checking": {"_count": 1}, "yanking": {"_count": 1}}, "still": {"_count": 8, "eight": {"_count": 1}, "not": {"_count": 3}, "riding": {"_count": 1}, "being": {"_count": 1}, "Minister": {"_count": 1}, "betterlooking": {"_count": 1}}, "Slytherins": {"_count": 1, "heir": {"_count": 1}}, "that": {"_count": 1, "Im": {"_count": 1}}, "Already": {"_count": 1, "dead": {"_count": 1}}, "drinking": {"_count": 1, "nothing": {"_count": 1}}, "about": {"_count": 4, "to": {"_count": 4}}, "almost": {"_count": 2, "a": {"_count": 1}, "certain": {"_count": 1}}, "through": {"_count": 1, "with": {"_count": 1}}, "looking": {"_count": 6, "for": {"_count": 3}, "forward": {"_count": 2}, "at": {"_count": 1}}, "telling": {"_count": 10, "you": {"_count": 9}, "it": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "cornin": {"_count": 4, "said": {"_count": 1}, "Harry": {"_count": 2}, "": {"_count": 1}}, "quite": {"_count": 5, "surprised": {"_count": 2}, "sure": {"_count": 2}, "as": {"_count": 1}}, "starving": {"_count": 12, "Ive": {"_count": 1}, "": {"_count": 6}, "she": {"_count": 1}, "arent": {"_count": 1}, "said": {"_count": 3}}, "astounded": {"_count": 1, "Professor": {"_count": 1}}, "here": {"_count": 17, "": {"_count": 7}, "on": {"_count": 2}, "to": {"_count": 3}, "representing": {"_count": 1}, "mate": {"_count": 1}, "about": {"_count": 1}, "Make": {"_count": 1}, "But": {"_count": 1}}, "okay": {"_count": 5, "this": {"_count": 1}, "said": {"_count": 2}, "mainly": {"_count": 1}, "Ive": {"_count": 1}}, "losing": {"_count": 2, "my": {"_count": 1}, "track": {"_count": 1}}, "pale": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 2, "him": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "supposed": {"_count": 15, "to": {"_count": 15}}, "normal": {"_count": 1, "and": {"_count": 1}}, "saying": {"_count": 3, "nothing": {"_count": 1}, "anyway": {"_count": 1}, "now": {"_count": 1}}, "pickling": {"_count": 1, "some": {"_count": 1}}, "amazed": {"_count": 1, "Harry": {"_count": 1}}, "packed": {"_count": 1, "Harry": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "obviously": {"_count": 1, "pleased": {"_count": 1}}, "dying": {"_count": 2, "": {"_count": 1}, "look": {"_count": 1}}, "allowed": {"_count": 4, "to": {"_count": 4}}, "takinyer": {"_count": 1, "all": {"_count": 1}}, "nearly": {"_count": 3, "out": {"_count": 1}, "there": {"_count": 1}, "done": {"_count": 1}}, "impressed": {"_count": 2, "": {"_count": 2}}, "late": {"_count": 1, "Professor": {"_count": 1}}, "skiving": {"_count": 1, "off": {"_count": 1}}, "their": {"_count": 2, "brother": {"_count": 1}, "target": {"_count": 1}}, "scared": {"_count": 3, "o": {"_count": 1}, "Im": {"_count": 1}, "at": {"_count": 1}}, "betting": {"_count": 1, "it": {"_count": 1}}, "working": {"_count": 2, "on": {"_count": 1}, "for": {"_count": 1}}, "letting": {"_count": 1, "the": {"_count": 1}}, "jus": {"_count": 1, "gonna": {"_count": 1}}, "leaving": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "starting": {"_count": 7, "to": {"_count": 7}}, "grateful": {"_count": 1, "": {"_count": 1}}, "trustworthy": {"_count": 1, "AND": {"_count": 1}}, "Moony": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 2, "blame": {"_count": 1}, "wait": {"_count": 1}}, "doing": {"_count": 10, "it": {"_count": 5}, "Crabbe": {"_count": 1}, "": {"_count": 2}, "trust": {"_count": 1}, "My": {"_count": 1}}, "also": {"_count": 2, "I": {"_count": 1}, "a": {"_count": 1}}, "your": {"_count": 4, "godfather": {"_count": 1}, "son": {"_count": 2}, "brother": {"_count": 1}}, "satisfied": {"_count": 1, "youre": {"_count": 1}}, "proud": {"_count": 2, "of": {"_count": 2}}, "happy": {"_count": 1, "": {"_count": 1}}, "concerned": {"_count": 2, "he": {"_count": 1}, "theyre": {"_count": 1}}, "mad": {"_count": 2, "but": {"_count": 1}, "wanting": {"_count": 1}}, "keeping": {"_count": 5, "an": {"_count": 3}, "it": {"_count": 1}, "you": {"_count": 1}}, "commentating": {"_count": 2, "": {"_count": 2}}, "mentioned": {"_count": 1, "said": {"_count": 1}}, "soak": {"_count": 1, "ARRGH": {"_count": 1}}, "forewarned": {"_count": 1, "Ron": {"_count": 1}}, "flying": {"_count": 1, "north": {"_count": 1}}, "back": {"_count": 3, "in": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "guessing": {"_count": 4, "they": {"_count": 1}, "you": {"_count": 1}, "your": {"_count": 1}, "its": {"_count": 1}}, "For": {"_count": 1, "a": {"_count": 1}}, "standing": {"_count": 2, "said": {"_count": 1}, "here": {"_count": 1}}, "already": {"_count": 2, "going": {"_count": 1}, "being": {"_count": 1}}, "now": {"_count": 1, "Mr": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "threatening": {"_count": 1, "them": {"_count": 1}}, "willing": {"_count": 1, "to": {"_count": 1}}, "honored": {"_count": 1, "said": {"_count": 1}}, "hiding": {"_count": 3, "nothing": {"_count": 1}, "from": {"_count": 1}, "thats": {"_count": 1}}, "nothing": {"_count": 1, "nothing": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 4, "Animagus": {"_count": 1}, "irresponsible": {"_count": 1}, "old": {"_count": 2}}, "onto": {"_count": 1, "it": {"_count": 1}}, "aching": {"_count": 1, "all": {"_count": 1}}, "aware": {"_count": 2, "of": {"_count": 2}}, "throwing": {"_count": 1, "it": {"_count": 1}}, "sitting": {"_count": 1, "here": {"_count": 1}}, "youre": {"_count": 1, "really": {"_count": 1}}, "sat": {"_count": 1, "on": {"_count": 1}}, "perfectly": {"_count": 1, "clear": {"_count": 1}}, "escorting": {"_count": 1, "a": {"_count": 1}}, "good": {"_count": 1, "at": {"_count": 1}}, "covering": {"_count": 1, "for": {"_count": 1}}, "nobody": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 1, "But": {"_count": 1}}, "actually": {"_count": 1, "going": {"_count": 1}}, "banking": {"_count": 1, "on": {"_count": 1}}, "absolutely": {"_count": 1, "exhausted": {"_count": 1}}, "writing": {"_count": 1, "because": {"_count": 1}}, "ever": {"_count": 1, "rude": {"_count": 1}}, "having": {"_count": 3, "my": {"_count": 1}, "to": {"_count": 1}, "lessons": {"_count": 1}}, "Susan": {"_count": 1, "Bones": {"_count": 1}}, "feeling": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "rubbish": {"_count": 1, "croaked": {"_count": 1}}, "lousy": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "supporting": {"_count": 1, "Gryffindor": {"_count": 1}}, "tellinyeh": {"_count": 1, "Im": {"_count": 1}}, "dealin": {"_count": 1, "with": {"_count": 1}}, "probably": {"_count": 1, "the": {"_count": 1}}, "goin": {"_count": 2, "ter": {"_count": 2}}, "giving": {"_count": 1, "him": {"_count": 1}}, "saving": {"_count": 1, "said": {"_count": 1}}, "being": {"_count": 1, "possessed": {"_count": 1}}, "sharing": {"_count": 1, "": {"_count": 1}}, "finding": {"_count": 1, "that": {"_count": 1}}, "sick": {"_count": 2, "of": {"_count": 2}}, "grand": {"_count": 1, "Harry": {"_count": 1}}, "asking": {"_count": 3, "whether": {"_count": 1}, "about": {"_count": 1}, "the": {"_count": 1}}, "bored": {"_count": 1, "said": {"_count": 1}}, "terribly": {"_count": 1, "sorry": {"_count": 1}}, "fifteen": {"_count": 1, "": {"_count": 1}}, "abou": {"_count": 1, "ter": {"_count": 1}}, "outta": {"_count": 1, "here": {"_count": 1}}, "gone": {"_count": 2, "": {"_count": 2}}, "begging": {"_count": 1, "you": {"_count": 1}}, "three": {"_count": 1, "years": {"_count": 1}}, "wheres": {"_count": 1, "Voldemort": {"_count": 1}}, "terrified": {"_count": 1, "now": {"_count": 1}}, "prejudiced": {"_count": 1, "": {"_count": 1}}, "Romilda": {"_count": 1, "Romilda": {"_count": 1}}, "qualified": {"_count": 1, "": {"_count": 1}}, "sending": {"_count": 1, "word": {"_count": 1}}, "stationed": {"_count": 1, "in": {"_count": 1}}, "thinkin": {"_count": 1, "o": {"_count": 1}}, "Muggleborn": {"_count": 1, "you": {"_count": 1}}, "assuming": {"_count": 1, "this": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "tall": {"_count": 1, "said": {"_count": 1}}, "lonely": {"_count": 1, "or": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "jiggered": {"_count": 1, "if": {"_count": 1}}, "used": {"_count": 2, "to": {"_count": 2}}, "pathetic": {"_count": 1, "": {"_count": 1}}, "definitely": {"_count": 2, "not": {"_count": 2}}, "seventeen": {"_count": 4, "Im": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 1}}, "Morfin": {"_count": 1, "aint": {"_count": 1}}, "forbidding": {"_count": 1, "you": {"_count": 1}}, "planning": {"_count": 1, "on": {"_count": 1}}, "He": {"_count": 1, "did": {"_count": 1}}, "capable": {"_count": 1, "of": {"_count": 1}}, "stayin": {"_count": 1, "said": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "ideous": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "really": {"_count": 1}}, "Ted": {"_count": 1, "by": {"_count": 1}}, "holy": {"_count": 1, "": {"_count": 1}}, "worried": {"_count": 1, "for": {"_count": 1}}, "seriously": {"_count": 1, "ill": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "Harry": {"_count": 1}}, "enclosing": {"_count": 1, "a": {"_count": 1}}, "Reg": {"_count": 1, "Cattermole": {"_count": 1}}, "halfblood": {"_count": 2, "Im": {"_count": 1}, "I": {"_count": 1}}, "behind": {"_count": 1, "you": {"_count": 1}}, "always": {"_count": 1, "the": {"_count": 1}}, "great": {"_count": 1, "": {"_count": 1}}, "descended": {"_count": 1, "from": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "pleased": {"_count": 1, "to": {"_count": 1}}, "SecretKeeper": {"_count": 1, "here": {"_count": 1}}, "hunted": {"_count": 1, "quite": {"_count": 1}}, "hungry": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "age": {"_count": 1}}, "my": {"_count": 1, "parents": {"_count": 1}}, "acting": {"_count": 1, "on": {"_count": 1}}, "searching": {"_count": 1, "the": {"_count": 1}}, "attacking": {"_count": 1, "Horcruxes": {"_count": 1}}, "resigning": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "Horcruxes": {"_count": 1}}, "Draco": {"_count": 2, "Malfoy": {"_count": 1}, "Im": {"_count": 1}}, "there": {"_count": 2, "no": {"_count": 1}, "Ill": {"_count": 1}}, "putting": {"_count": 1, "the": {"_count": 1}}, "extremely": {"_count": 1, "famous": {"_count": 1}}}, "fond": {"_count": 22, "of": {"_count": 20, "": {"_count": 1}, "them": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 2}, "each": {"_count": 1}, "the": {"_count": 1}, "bossing": {"_count": 1}, "her": {"_count": 2}, "his": {"_count": 2}, "power": {"_count": 1}, "muttering": {"_count": 1}, "everyone": {"_count": 1}, "Voldemort": {"_count": 1}, "Bill": {"_count": 1}, "all": {"_count": 1}, "brooms": {"_count": 1}, "or": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "if": {"_count": 1, "bloodshot": {"_count": 1}}}, "coldly": {"_count": 86, "as": {"_count": 6, "though": {"_count": 1}, "Cedric": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 2}, "ever": {"_count": 1}}, "": {"_count": 50, ".": {"_count": 50}}, "theyre": {"_count": 1, "here": {"_count": 1}}, "and": {"_count": 10, "Mr": {"_count": 1}, "Hermione": {"_count": 1}, "indeed": {"_count": 1}, "a": {"_count": 1}, "leaning": {"_count": 1}, "Pansy": {"_count": 1}, "Harry": {"_count": 1}, "appraisingly": {"_count": 1}, "I": {"_count": 1}, "though": {"_count": 1}}, "still": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 2}}, "unless": {"_count": 1, "a": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "looking": {"_count": 1, "over": {"_count": 1}}, "at": {"_count": 1, "Hermione": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "shutting": {"_count": 1, "the": {"_count": 1}}, "indifferent": {"_count": 1, "voice": {"_count": 1}}, "his": {"_count": 2, "smile": {"_count": 1}, "mind": {"_count": 1}}, "because": {"_count": 1, "you": {"_count": 1}}, "they": {"_count": 1, "mean": {"_count": 1}}, "You": {"_count": 1, "are": {"_count": 1}}, "surprised": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}}, "drops": {"_count": 29, "": {"_count": 2, ".": {"_count": 2}}, "seemed": {"_count": 1, "not": {"_count": 1}}, "beat": {"_count": 1, "on": {"_count": 1}}, "fall": {"_count": 1, "onto": {"_count": 1}}, "of": {"_count": 8, "this": {"_count": 1}, "Aging": {"_count": 1}, "syrup": {"_count": 1}, "blood": {"_count": 2}, "water": {"_count": 1}, "murtlap": {"_count": 1}, "the": {"_count": 1}}, "down": {"_count": 1, "Trevors": {"_count": 1}}, "on": {"_count": 2, "top": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 3, "Quaffle": {"_count": 3}}, "would": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 1, "too": {"_count": 1}}, "were": {"_count": 1, "leaping": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 1}, "most": {"_count": 1}}}, "surely": {"_count": 81, "a": {"_count": 1, "sensible": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 5}, ".": {"_count": 1}}, "the": {"_count": 2, "only": {"_count": 1}, "rest": {"_count": 1}}, "acts": {"_count": 1, "of": {"_count": 1}}, "seconds": {"_count": 1, "away": {"_count": 1}}, "they": {"_count": 2, "werent": {"_count": 1}, "can": {"_count": 1}}, "it": {"_count": 2, "wasnt": {"_count": 1}, "meant": {"_count": 1}}, "you": {"_count": 4, "already": {"_count": 1}, "have": {"_count": 1}, "know": {"_count": 1}, "realized": {"_count": 1}}, "not": {"_count": 4, "dangerous": {"_count": 1}, "another": {"_count": 1}, "": {"_count": 2}}, "dont": {"_count": 2, "believe": {"_count": 1}, "wish": {"_count": 1}}, "kill": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "you": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "have": {"_count": 5, "let": {"_count": 1}, "been": {"_count": 1}, "realized": {"_count": 1}, "earned": {"_count": 1}, "reached": {"_count": 1}}, "dreaming": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 1, "a": {"_count": 1}}, "doesnt": {"_count": 1, "think": {"_count": 1}}, "live": {"_count": 1, "right": {"_count": 1}}, "wasnt": {"_count": 1, "Hogwarts": {"_count": 1}}, "consider": {"_count": 1, "whether": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "splitting": {"_count": 1, "along": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "arent": {"_count": 1, "expecting": {"_count": 1}}, "past": {"_count": 1, "midnight": {"_count": 1}}, "love": {"_count": 1, "this": {"_count": 1}}, "be": {"_count": 2, "much": {"_count": 1}, "easy": {"_count": 1}}, "only": {"_count": 2, "a": {"_count": 1}, "one": {"_count": 1}}, "relieve": {"_count": 1, "some": {"_count": 1}}, "would": {"_count": 1, "check": {"_count": 1}}, "one": {"_count": 1, "thing": {"_count": 1}}, "sir": {"_count": 1, "he": {"_count": 1}}, "best": {"_count": 1, "to": {"_count": 1}}, "come": {"_count": 1, "around": {"_count": 1}}, "werewolves": {"_count": 1, "dont": {"_count": 1}}, "an": {"_count": 1, "exhilarating": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "die": {"_count": 1, "of": {"_count": 1}}, "Bill": {"_count": 1, "wont": {"_count": 1}}, "Snape": {"_count": 1, "will": {"_count": 1}}, "he": {"_count": 2, "wouldnt": {"_count": 1}, "would": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "people": {"_count": 1, "realize": {"_count": 1}}, "or": {"_count": 1, "dust": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "Deaths": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "safe": {"_count": 1}}, "impossible": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 1, "her": {"_count": 1}}, "dying": {"_count": 1, "or": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "as": {"_count": 2, "I": {"_count": 1}, "the": {"_count": 1}}}, "sensible": {"_count": 12, "person": {"_count": 1, "like": {"_count": 1}}, "looks": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "line": {"_count": 1, "than": {"_count": 1}}, "like": {"_count": 1, "Arithmancy": {"_count": 1}}, "word": {"_count": 1, "out": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "course": {"_count": 1, "of": {"_count": 1}}, "too": {"_count": 1, "unless": {"_count": 1}}, "she": {"_count": 1, "at": {"_count": 1}}}, "person": {"_count": 204, "like": {"_count": 1, "yourself": {"_count": 1}}, "ter": {"_count": 1, "tell": {"_count": 1}}, "called": {"_count": 1, "but": {"_count": 1}}, "a": {"_count": 1, "burly": {"_count": 1}}, "eat": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 13, "do": {"_count": 1}, "ask": {"_count": 1}, "tackle": {"_count": 1}, "hide": {"_count": 1}, "have": {"_count": 1}, "get": {"_count": 1}, "touch": {"_count": 1}, "relive": {"_count": 1}, "try": {"_count": 1}, "pass": {"_count": 1}, "me": {"_count": 1}, "person": {"_count": 1}, "die": {"_count": 1}}, "who": {"_count": 35, "loved": {"_count": 1}, "didnt": {"_count": 1}, "looked": {"_count": 1}, "opened": {"_count": 2}, "hadnt": {"_count": 1}, "seemed": {"_count": 2}, "has": {"_count": 2}, "would": {"_count": 3}, "had": {"_count": 3}, "conjured": {"_count": 1}, "did": {"_count": 2}, "could": {"_count": 1}, "lives": {"_count": 1}, "should": {"_count": 1}, "exemplified": {"_count": 1}, "thinks": {"_count": 1}, "was": {"_count": 3}, "made": {"_count": 1}, "does": {"_count": 1}, "might": {"_count": 1}, "sits": {"_count": 1}, "reached": {"_count": 2}, "stole": {"_count": 1}, "possessed": {"_count": 1}}, "marked": {"_count": 1, "by": {"_count": 1}}, "Harry": {"_count": 4, "wanted": {"_count": 1}, "had": {"_count": 3}}, "said": {"_count": 3, "George": {"_count": 1}, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}}, "is": {"_count": 1, "expelled": {"_count": 1}}, "whos": {"_count": 2, "behind": {"_count": 1}, "ever": {"_count": 1}}, "he": {"_count": 6, "said": {"_count": 2}, "would": {"_count": 1}, "had": {"_count": 1}, "wanted": {"_count": 1}, "knew": {"_count": 1}}, "whod": {"_count": 2, "opened": {"_count": 1}, "go": {"_count": 1}}, "was": {"_count": 3, "caught": {"_count": 1}, "being": {"_count": 1}, "panting": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "however": {"_count": 1, "seemed": {"_count": 1}}, "the": {"_count": 1, "Heir": {"_count": 1}}, "or": {"_count": 3, "a": {"_count": 1}, "SecretKeeper": {"_count": 1}, "persons": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 2}, "met": {"_count": 1}}, "I": {"_count": 4, "was": {"_count": 1}, "could": {"_count": 2}, "thought": {"_count": 1}}, "as": {"_count": 2, "last": {"_count": 1}, "large": {"_count": 1}}, "in": {"_count": 17, "a": {"_count": 1}, "the": {"_count": 8}, "this": {"_count": 2}, "there": {"_count": 1}, "disguise": {"_count": 1}, "Divination": {"_count": 1}, "Britain": {"_count": 1}, "sight": {"_count": 1}, "Godrics": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 18}, "?": {"_count": 3}, "!": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "my": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "this": {"_count": 1}}, "wasnt": {"_count": 1, "joining": {"_count": 1}}, "wrote": {"_count": 1, "down": {"_count": 1}}, "Crabbe": {"_count": 1, "could": {"_count": 1}}, "climbed": {"_count": 1, "back": {"_count": 1}}, "left": {"_count": 2, "to": {"_count": 1}, "outdoors": {"_count": 1}}, "ten": {"_count": 1, "years": {"_count": 1}}, "hed": {"_count": 1, "seen": {"_count": 1}}, "at": {"_count": 5, "Hogwarts": {"_count": 3}, "this": {"_count": 1}, "a": {"_count": 1}}, "missing": {"_count": 1, "was": {"_count": 1}}, "had": {"_count": 2, "declared": {"_count": 1}, "been": {"_count": 1}}, "has": {"_count": 3, "ever": {"_count": 1}, "the": {"_count": 1}, "concealed": {"_count": 1}}, "well": {"_count": 1, "have": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 2, "discussed": {"_count": 1}, "thought": {"_count": 1}}, "raised": {"_count": 1, "their": {"_count": 1}}, "entering": {"_count": 1, "Azkaban": {"_count": 1}}, "leaving": {"_count": 1, "it": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "within": {"_count": 3, "number": {"_count": 1}, "the": {"_count": 2}}, "not": {"_count": 2, "given": {"_count": 1}, "wearing": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "Zacharias": {"_count": 1, "had": {"_count": 1}}, "can": {"_count": 2, "only": {"_count": 1}, "still": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "cries": {"_count": 1, "while": {"_count": 1}}, "cant": {"_count": 1, "feel": {"_count": 1}}, "bled": {"_count": 1, "when": {"_count": 1}}, "ever": {"_count": 2, "to": {"_count": 1}, "known": {"_count": 1}}, "eagerly": {"_count": 1, "awaiting": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "shakes": {"_count": 1, "their": {"_count": 1}}, "really": {"_count": 1, "said": {"_count": 1}}, "acting": {"_count": 1, "oddly": {"_count": 1}}, "now": {"_count": 1, "sprinting": {"_count": 1}}, "there": {"_count": 2, "sure": {"_count": 1}, "except": {"_count": 1}}, "Sirius": {"_count": 1, "cared": {"_count": 1}}, "whom": {"_count": 1, "you": {"_count": 1}}, "Im": {"_count": 1, "asking": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "whereas": {"_count": 1, "shes": {"_count": 1}}, "firstly": {"_count": 1, "because": {"_count": 1}}, "disgruntled": {"_count": 1, "by": {"_count": 1}}, "behind": {"_count": 1, "this": {"_count": 1}}, "meandered": {"_count": 1, "around": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "Wizards": {"_count": 1}}, "of": {"_count": 1, "Bathilda": {"_count": 1}}, "tied": {"_count": 1, "to": {"_count": 1}}, "Riddle": {"_count": 1, "wormed": {"_count": 1}}, "could": {"_count": 1, "possibly": {"_count": 1}}}, "call": {"_count": 176, "him": {"_count": 24, "by": {"_count": 2}, "Norbert": {"_count": 1}, "off": {"_count": 1}, "": {"_count": 3}, "a": {"_count": 3}, "Vicky": {"_count": 1}, "Vickyl": {"_count": 1}, "my": {"_count": 1}, "back": {"_count": 3}, "if": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}, "Professor": {"_count": 1}, "\u2018Prince": {"_count": 1}, "I": {"_count": 1}, "YouKnowWho": {"_count": 1}, "Harry": {"_count": 1}}, "nonmagic": {"_count": 1, "folk": {"_count": 1}}, "her": {"_count": 8, "Hedwig": {"_count": 1}, "Aunt": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}, "that": {"_count": 1}, "Norberta": {"_count": 1}, "\u2018Mudblood": {"_count": 1}, "and": {"_count": 1}}, "yourself": {"_count": 2, "our": {"_count": 1}, "Ron": {"_count": 1}}, "your": {"_count": 1, "name": {"_count": 1}}, "me": {"_count": 16, "Sir": {"_count": 1}, "an": {"_count": 1}, "behind": {"_count": 1}, "Dobby": {"_count": 1}, "Snuffles": {"_count": 1}, "Nymphadora": {"_count": 1}, "\u2018sir": {"_count": 3}, "\u2018Loony": {"_count": 1}, "Tom": {"_count": 1}, "said": {"_count": 1}, "Potter": {"_count": 1}, "Elphias": {"_count": 1}, "Mudblood": {"_count": 1}, "cowardly": {"_count": 1}}, "and": {"_count": 2, "when": {"_count": 1}, "like": {"_count": 1}}, "Filch": {"_count": 2, "that": {"_count": 1}, "I": {"_count": 1}}, "it": {"_count": 12, "emptying": {"_count": 1}, "off": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "when": {"_count": 2}, "": {"_count": 2}, "home": {"_count": 1}, "said": {"_count": 1}, "\u2018greatness": {"_count": 1}}, "the": {"_count": 13, "perfect": {"_count": 1}, "Chamber": {"_count": 1}, "hot": {"_count": 1}, "next": {"_count": 1}, "dementors": {"_count": 1}, "headmaster": {"_count": 2}, "Fred": {"_count": 1}, "people": {"_count": 1}, "Dark": {"_count": 3}, "Resurrection": {"_count": 1}}, "timeout": {"_count": 1, "and": {"_count": 1}}, "comforting": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 3, "for": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "pure": {"_count": 1, "blood": {"_count": 1}}, "someone": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 4, "a": {"_count": 1}, "house": {"_count": 1}, "": {"_count": 1}, "place": {"_count": 1}}, "unavoidable": {"_count": 1, "got": {"_count": 1}}, "from": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 3, "your": {"_count": 1}, "order": {"_count": 1}, "our": {"_count": 1}}, "Neville": {"_count": 1, "Minister": {"_count": 1}}, "upon": {"_count": 1, "Sir": {"_count": 1}}, "you": {"_count": 9, "muttered": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 2}, "a": {"_count": 1}, "see": {"_count": 1}, "these": {"_count": 2}, "Mudblood": {"_count": 1}}, "Hagrid": {"_count": 2, "pathetic": {"_count": 1}, "harmless": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "anyone": {"_count": 2, "dumpy": {"_count": 1}, "\u2018blood": {"_count": 1}}, "normal": {"_count": 2, "": {"_count": 1}, "though": {"_count": 1}}, "out": {"_count": 3, "your": {"_count": 1}, "names": {"_count": 1}, "to": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "if": {"_count": 1}}, "after": {"_count": 1, "them": {"_count": 1}}, "a": {"_count": 4, "school": {"_count": 1}, "second": {"_count": 1}, "horde": {"_count": 1}, "soft": {"_count": 1}}, "of": {"_count": 3, "Firs": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 1}}, "them": {"_count": 5, "midgets": {"_count": 1}, "that": {"_count": 2}, "you": {"_count": 1}, "all": {"_count": 1}}, "that": {"_count": 2, "Defense": {"_count": 1}, "Sectumsempra": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "Alicia": {"_count": 1, "and": {"_count": 1}}, "earlier": {"_count": 1, "an": {"_count": 1}}, "anyway": {"_count": 1, "cause": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "merely": {"_count": 1}, "": {"_count": 1}}, "Voldemort": {"_count": 1, "the": {"_count": 1}}, "fortunetelling": {"_count": 1, "": {"_count": 1}}, "em": {"_count": 1, "friendly": {"_count": 1}}, "home": {"_count": 1, "the": {"_count": 1}}, "Potter": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "number": {"_count": 1}}, "trials": {"_count": 1, "": {"_count": 1}}, "foolproof": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "a": {"_count": 1}}, "getting": {"_count": 1, "poisoned": {"_count": 1}}, "themselves": {"_count": 1, "or": {"_count": 1}}, "\u2018usual": {"_count": 1, "evil": {"_count": 1}}, "Liar": {"_count": 1, "said": {"_count": 1}}, "im": {"_count": 1, "off": {"_count": 1}}, "Hermione": {"_count": 1, "simple": {"_count": 1}}, "back": {"_count": 2, "Then": {"_count": 1}, "yet": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "this": {"_count": 1}}, "continued": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "of": {"_count": 1}}}, "trying": {"_count": 701, "to": {"_count": 635, "persuade": {"_count": 7}, "force": {"_count": 8}, "disturb": {"_count": 1}, "snatch": {"_count": 1}, "be": {"_count": 5}, "do": {"_count": 15}, "knock": {"_count": 3}, "find": {"_count": 29}, "catch": {"_count": 12}, "speak": {"_count": 3}, "get": {"_count": 62}, "imagine": {"_count": 4}, "look": {"_count": 5}, "keep": {"_count": 22}, "take": {"_count": 5}, "concentrate": {"_count": 3}, "open": {"_count": 2}, "break": {"_count": 6}, "turn": {"_count": 1}, "make": {"_count": 30}, "remember": {"_count": 9}, "sneer": {"_count": 1}, "stop": {"_count": 11}, "pull": {"_count": 6}, "buck": {"_count": 1}, "steal": {"_count": 4}, "earn": {"_count": 2}, "see": {"_count": 14}, "reason": {"_count": 1}, "ignore": {"_count": 6}, "convince": {"_count": 6}, "save": {"_count": 7}, "protect": {"_count": 5}, "send": {"_count": 1}, "heave": {"_count": 1}, "decide": {"_count": 9}, "say": {"_count": 7}, "cheer": {"_count": 1}, "give": {"_count": 3}, "sleep": {"_count": 1}, "hold": {"_count": 4}, "hit": {"_count": 1}, "squash": {"_count": 2}, "grab": {"_count": 1}, "have": {"_count": 1}, "listen": {"_count": 4}, "learn": {"_count": 2}, "put": {"_count": 2}, "read": {"_count": 5}, "signal": {"_count": 1}, "avoid": {"_count": 4}, "sneak": {"_count": 3}, "restore": {"_count": 1}, "strangle": {"_count": 2}, "hush": {"_count": 1}, "poke": {"_count": 1}, "escape": {"_count": 1}, "pick": {"_count": 1}, "fit": {"_count": 2}, "move": {"_count": 1}, "tell": {"_count": 9}, "finish": {"_count": 3}, "inject": {"_count": 2}, "raise": {"_count": 1}, "explain": {"_count": 2}, "suck": {"_count": 1}, "peer": {"_count": 1}, "repair": {"_count": 1}, "attack": {"_count": 4}, "to": {"_count": 2}, "block": {"_count": 2}, "wrongfoot": {"_count": 1}, "drown": {"_count": 2}, "rejoin": {"_count": 1}, "go": {"_count": 1}, "kick": {"_count": 2}, "sound": {"_count": 13}, "recall": {"_count": 1}, "help": {"_count": 10}, "pretend": {"_count": 3}, "defend": {"_count": 3}, "wipe": {"_count": 3}, "rub": {"_count": 1}, "stare": {"_count": 1}, "provoke": {"_count": 2}, "trip": {"_count": 1}, "bully": {"_count": 1}, "cram": {"_count": 2}, "sink": {"_count": 1}, "follow": {"_count": 1}, "wrench": {"_count": 1}, "push": {"_count": 6}, "throw": {"_count": 3}, "restrain": {"_count": 3}, "will": {"_count": 1}, "think": {"_count": 5}, "blot": {"_count": 1}, "reach": {"_count": 2}, "count": {"_count": 1}, "hear": {"_count": 3}, "clear": {"_count": 5}, "master": {"_count": 3}, "fight": {"_count": 2}, "work": {"_count": 3}, "standardize": {"_count": 1}, "smuggle": {"_count": 2}, "pack": {"_count": 1}, "sit": {"_count": 1}, "cadge": {"_count": 1}, "rescue": {"_count": 1}, "sort": {"_count": 3}, "evade": {"_count": 1}, "enter": {"_count": 1}, "discern": {"_count": 2}, "bewitch": {"_count": 2}, "improve": {"_count": 1}, "kill": {"_count": 5}, "attract": {"_count": 1}, "curse": {"_count": 1}, "rope": {"_count": 1}, "dance": {"_count": 1}, "teach": {"_count": 2}, "hurt": {"_count": 1}, "lick": {"_count": 2}, "sniff": {"_count": 1}, "prove": {"_count": 1}, "hie": {"_count": 1}, "engage": {"_count": 1}, "deliver": {"_count": 1}, "quash": {"_count": 1}, "jinx": {"_count": 1}, "talk": {"_count": 3}, "shove": {"_count": 1}, "mop": {"_count": 1}, "free": {"_count": 2}, "pry": {"_count": 1}, "butt": {"_count": 1}, "focus": {"_count": 1}, "lis": {"_count": 1}, "tear": {"_count": 1}, "gather": {"_count": 1}, "watch": {"_count": 1}, "discredit": {"_count": 1}, "recruit": {"_count": 2}, "repel": {"_count": 1}, "cover": {"_count": 2}, "smile": {"_count": 3}, "reconcile": {"_count": 1}, "retrieve": {"_count": 3}, "grin": {"_count": 1}, "interfere": {"_count": 1}, "trick": {"_count": 1}, "conceal": {"_count": 3}, "detect": {"_count": 1}, "arrange": {"_count": 1}, "weasel": {"_count": 1}, "actively": {"_count": 1}, "pass": {"_count": 2}, "rid": {"_count": 3}, "correct": {"_count": 1}, "deny": {"_count": 1}, "crush": {"_count": 2}, "suppress": {"_count": 2}, "deflect": {"_count": 1}, "use": {"_count": 3}, "sew": {"_count": 1}, "appear": {"_count": 1}, "iron": {"_count": 1}, "muster": {"_count": 1}, "settle": {"_count": 1}, "build": {"_count": 1}, "guess": {"_count": 1}, "stamp": {"_count": 2}, "well": {"_count": 1}, "sever": {"_count": 1}, "tend": {"_count": 1}, "soften": {"_count": 1}, "fend": {"_count": 1}, "modify": {"_count": 1}, "resist": {"_count": 2}, "detach": {"_count": 1}, "scrape": {"_count": 1}, "chat": {"_count": 1}, "tug": {"_count": 1}, "quiet": {"_count": 1}, "displace": {"_count": 1}, "bridge": {"_count": 1}, "shake": {"_count": 1}, "gatecrash": {"_count": 1}, "bump": {"_count": 1}, "gauge": {"_count": 1}, "set": {"_count": 1}, "wheedle": {"_count": 1}, "locate": {"_count": 1}, "hide": {"_count": 1}, "mend": {"_count": 1}, "digest": {"_count": 1}, "capture": {"_count": 1}, "upset": {"_count": 1}, "assist": {"_count": 1}, "close": {"_count": 1}, "continue": {"_count": 1}, "crawl": {"_count": 1}, "summon": {"_count": 1}, "feel": {"_count": 1}, "determine": {"_count": 1}, "steady": {"_count": 1}, "regain": {"_count": 1}, "bring": {"_count": 3}, "worm": {"_count": 1}, "prise": {"_count": 1}, "shift": {"_count": 1}, "Disapparate": {"_count": 1}, "procure": {"_count": 1}, "recreate": {"_count": 1}, "spare": {"_count": 1}, "whip": {"_count": 1}, "stand": {"_count": 1}, "soothe": {"_count": 1}, "duplicate": {"_count": 1}, "bat": {"_count": 1}, "distract": {"_count": 1}, "climb": {"_count": 1}, "seize": {"_count": 1}, "staunch": {"_count": 1}, "show": {"_count": 1}, "comfort": {"_count": 1}, "come": {"_count": 1}, "hug": {"_count": 1}}, "not": {"_count": 21, "to": {"_count": 21}}, "hard": {"_count": 7, "not": {"_count": 5}, "to": {"_count": 2}}, "on": {"_count": 3, "the": {"_count": 3}}, "the": {"_count": 1, "fudge": {"_count": 1}}, "Harry": {"_count": 2, "because": {"_count": 1}, "but": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "failing": {"_count": 2}}, "it": {"_count": 2, "again": {"_count": 1}, "out": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 2}, "!": {"_count": 4}}, "desperately": {"_count": 3, "to": {"_count": 3}}, "all": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "what": {"_count": 1}}, "in": {"_count": 3, "between": {"_count": 1}, "distancing": {"_count": 1}, "turn": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Neville": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "so": {"_count": 2, "hard": {"_count": 2}}, "different": {"_count": 1, "means": {"_count": 1}}, "his": {"_count": 1, "utmost": {"_count": 1}}, "Im": {"_count": 1, "trying": {"_count": 1}}, "with": {"_count": 1, "increasing": {"_count": 1}}, "something": {"_count": 1, "up": {"_count": 1}}, "everything": {"_count": 1, "even": {"_count": 1}}}, "persuade": {"_count": 49, "people": {"_count": 2, "to": {"_count": 2}}, "em": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "to": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "a": {"_count": 3, "frantically": {"_count": 1}, "bowtruckle": {"_count": 1}, "few": {"_count": 1}}, "her": {"_count": 5, "to": {"_count": 4}, "that": {"_count": 1}}, "others": {"_count": 1, "to": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "an": {"_count": 2, "older": {"_count": 1}, "old": {"_count": 1}}, "Ron": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 3, "to": {"_count": 2}, "as": {"_count": 1}}, "the": {"_count": 4, "Transylvanians": {"_count": 1}, "twins": {"_count": 1}, "boy": {"_count": 1}, "Dark": {"_count": 1}}, "him": {"_count": 9, "to": {"_count": 5}, "Dumbledore": {"_count": 1}, "hell": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "you": {"_count": 2, "to": {"_count": 2}}, "of": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "Yeah": {"_count": 1}}, "some": {"_count": 1, "o": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Peeves": {"_count": 1, "to": {"_count": 1}}, "Hagrid": {"_count": 1, "out": {"_count": 1}}, "me": {"_count": 1, "is": {"_count": 1}}, "this": {"_count": 1, "old": {"_count": 1}}, "to": {"_count": 1, "talk": {"_count": 1}}, "Professor": {"_count": 1, "Slughorn": {"_count": 1}}, "Slughorn": {"_count": 3, "to": {"_count": 1}, "where": {"_count": 1}, "said": {"_count": 1}}}, "proper": {"_count": 33, "name": {"_count": 3, "Voldemort": {"_count": 1}, "for": {"_count": 1}, "is": {"_count": 1}}, "birthday": {"_count": 1, "presents": {"_count": 1}}, "duels": {"_count": 1, "you": {"_count": 1}}, "family": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 2, "": {"_count": 1}, "feeling": {"_count": 1}}, "sized": {"_count": 1, "man": {"_count": 1}}, "Patronus": {"_count": 1, "if": {"_count": 1}}, "garments": {"_count": 1, "": {"_count": 1}}, "size": {"_count": 1, "": {"_count": 1}}, "creatures": {"_count": 1, "like": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "clothes": {"_count": 1, "you": {"_count": 1}}, "wizarding": {"_count": 1, "pride": {"_count": 1}}, "news": {"_count": 1, "as": {"_count": 1}}, "place": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "handling": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "who": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "planning": {"_count": 1, "": {"_count": 1}}, "conversation": {"_count": 1, "with": {"_count": 1}}, "speech": {"_count": 1, "for": {"_count": 1}}, "look": {"_count": 1, "then": {"_count": 1}}, "security": {"_count": 1, "if": {"_count": 1}}, "sendoff": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "haircut": {"_count": 1, "": {"_count": 1}}, "pride": {"_count": 1, "he": {"_count": 1}}, "respect": {"_count": 1, "so": {"_count": 1}}, "hideout": {"_count": 1, "as": {"_count": 1}}}, "Voldemort": {"_count": 992, "": {"_count": 135, ".": {"_count": 114}, "?": {"_count": 21}}, "was": {"_count": 68, "frightened": {"_count": 1}, "now": {"_count": 2}, "after": {"_count": 1}, "laughing": {"_count": 1}, "once": {"_count": 1}, "acting": {"_count": 1}, "laughable": {"_count": 1}, "at": {"_count": 3}, "supposed": {"_count": 2}, "rumored": {"_count": 1}, "powerful": {"_count": 1}, "certainly": {"_count": 1}, "right": {"_count": 1}, "ready": {"_count": 1}, "there": {"_count": 1}, "giving": {"_count": 1}, "back": {"_count": 5}, "doing": {"_count": 3}, "getting": {"_count": 2}, "feeling": {"_count": 3}, "near": {"_count": 1}, "an": {"_count": 1}, "up": {"_count": 1}, "forced": {"_count": 1}, "visible": {"_count": 1}, "as": {"_count": 1}, "close": {"_count": 1}, "gone": {"_count": 1}, "weak": {"_count": 1}, "last": {"_count": 1}, "gazing": {"_count": 1}, "working": {"_count": 1}, "I": {"_count": 1}, "no": {"_count": 1}, "sent": {"_count": 1}, "not": {"_count": 3}, "still": {"_count": 1}, "evil": {"_count": 1}, "flying": {"_count": 2}, "he": {"_count": 1}, "but": {"_count": 2}, "looking": {"_count": 1}, "thinking": {"_count": 1}, "dwelling": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}, "wary": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}, "dead": {"_count": 1}}, "had": {"_count": 83, "powers": {"_count": 1}, "fled": {"_count": 2}, "ever": {"_count": 2}, "looked": {"_count": 1}, "been": {"_count": 11}, "then": {"_count": 1}, "killed": {"_count": 1}, "advanced": {"_count": 1}, "murdered": {"_count": 2}, "not": {"_count": 3}, "risen": {"_count": 1}, "emerged": {"_count": 1}, "untied": {"_count": 1}, "seemed": {"_count": 2}, "caught": {"_count": 1}, "returned": {"_count": 4}, "the": {"_count": 1}, "once": {"_count": 2}, "yet": {"_count": 1}, "moved": {"_count": 1}, "appeared": {"_count": 1}, "decided": {"_count": 2}, "Sirius": {"_count": 1}, "tried": {"_count": 1}, "left": {"_count": 1}, "planted": {"_count": 1}, "chosen": {"_count": 1}, "probably": {"_count": 1}, "done": {"_count": 2}, "asked": {"_count": 1}, "penetrated": {"_count": 1}, "committed": {"_count": 1}, "entered": {"_count": 1}, "turned": {"_count": 1}, "split": {"_count": 1}, "succeeded": {"_count": 1}, "told": {"_count": 1}, "never": {"_count": 2}, "interpreted": {"_count": 1}, "fallen": {"_count": 1}, "planned": {"_count": 1}, "gone": {"_count": 1}, "vanished": {"_count": 1}, "pursued": {"_count": 2}, "tested": {"_count": 1}, "said": {"_count": 1}, "hidden": {"_count": 1}, "lived": {"_count": 1}, "all": {"_count": 1}, "known": {"_count": 1}, "given": {"_count": 1}, "taken": {"_count": 1}, "just": {"_count": 1}, "stationed": {"_count": 1}, "managed": {"_count": 1}, "needed": {"_count": 1}, "reentered": {"_count": 1}, "frozen": {"_count": 1}, "raised": {"_count": 1}}, "turned": {"_count": 4, "up": {"_count": 1}, "his": {"_count": 2}, "back": {"_count": 1}}, "Ron": {"_count": 2, "gasped": {"_count": 1}, "be": {"_count": 1}}, "without": {"_count": 1, "worrying": {"_count": 1}}, "could": {"_count": 9, "hear": {"_count": 1}, "still": {"_count": 1}, "not": {"_count": 1}, "have": {"_count": 2}, "stick": {"_count": 1}, "only": {"_count": 1}, "be": {"_count": 2}}, "kill": {"_count": 1, "me": {"_count": 1}}, "will": {"_count": 11, "be": {"_count": 2}, "provide": {"_count": 1}, "persuade": {"_count": 1}, "know": {"_count": 1}, "have": {"_count": 2}, "not": {"_count": 1}, "target": {"_count": 1}, "spare": {"_count": 1}, "seem": {"_count": 1}}, "to": {"_count": 19, "come": {"_count": 1}, "find": {"_count": 2}, "materialize": {"_count": 1}, "full": {"_count": 1}, "return": {"_count": 1}, "Uncle": {"_count": 1}, "kill": {"_count": 1}, "try": {"_count": 1}, "dictate": {"_count": 1}, "talk": {"_count": 1}, "mark": {"_count": 1}, "track": {"_count": 1}, "get": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}, "speak": {"_count": 1}, "Harry": {"_count": 1}}, "certainly": {"_count": 1, "scared": {"_count": 1}}, "under": {"_count": 1, "that": {"_count": 1}}, "killed": {"_count": 5, "my": {"_count": 2}, "her": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}}, "on": {"_count": 2, "my": {"_count": 1}, "his": {"_count": 1}}, "showed": {"_count": 2, "me": {"_count": 1}, "his": {"_count": 1}}, "screamed": {"_count": 3, "SEIZE": {"_count": 1}, "No": {"_count": 1}, "": {"_count": 1}}, "again": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "Harry": {"_count": 5, "": {"_count": 1}, "would": {"_count": 2}, "thought": {"_count": 1}, "saw": {"_count": 1}}, "said": {"_count": 15, "that": {"_count": 1}, "Riddle": {"_count": 1}, "Harry": {"_count": 5}, "Black": {"_count": 1}, "softly": {"_count": 1}, "raising": {"_count": 1}, "Dumbledore": {"_count": 3}, "Hermione": {"_count": 1}, "": {"_count": 1}}, "cannot": {"_count": 2, "understand": {"_count": 1}, "die": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "were": {"_count": 5, "talking": {"_count": 1}, "both": {"_count": 1}, "Im": {"_count": 1}, "united": {"_count": 1}, "sharing": {"_count": 1}}, "whose": {"_count": 4, "name": {"_count": 1}, "face": {"_count": 1}, "eyes": {"_count": 1}, "Horcruxes": {"_count": 1}}, "himself": {"_count": 12, "": {"_count": 3}, "to": {"_count": 1}, "biding": {"_count": 1}, "would": {"_count": 2}, "created": {"_count": 1}, "singled": {"_count": 1}, "Sectum": {"_count": 1}, "must": {"_count": 1}, "because": {"_count": 1}}, "might": {"_count": 3, "be": {"_count": 1}, "try": {"_count": 1}, "realize": {"_count": 1}}, "even": {"_count": 2, "other": {"_count": 1}, "without": {"_count": 1}}, "Heir": {"_count": 1, "of": {"_count": 1}}, "got": {"_count": 3, "you": {"_count": 1}, "a": {"_count": 1}, "all": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 6, "was": {"_count": 1}, "saw": {"_count": 1}, "must": {"_count": 1}, "knew": {"_count": 1}, "can": {"_count": 1}, "would": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "no": {"_count": 1}, "another": {"_count": 1}}, "who": {"_count": 13, "is": {"_count": 1}, "had": {"_count": 4}, "looked": {"_count": 1}, "vanished": {"_count": 1}, "of": {"_count": 1}, "held": {"_count": 1}, "stood": {"_count": 1}, "never": {"_count": 1}, "seemed": {"_count": 1}, "has": {"_count": 1}}, "put": {"_count": 2, "a": {"_count": 1}, "on": {"_count": 1}}, "three": {"_count": 3, "times": {"_count": 3}}, "can": {"_count": 4, "he": {"_count": 1}, "offer": {"_count": 1}, "plant": {"_count": 1}, "use": {"_count": 1}}, "a": {"_count": 7, "Voldemort": {"_count": 1}, "horrible": {"_count": 1}, "deputy": {"_count": 1}, "grin": {"_count": 1}, "second": {"_count": 1}, "goblet": {"_count": 1}, "hundred": {"_count": 1}}, "returned": {"_count": 6, "to": {"_count": 4}, "said": {"_count": 1}, "": {"_count": 1}}, "s": {"_count": 14, "name": {"_count": 1}, "wand": {"_count": 1}, "most": {"_count": 1}, "back": {"_count": 1}, "about": {"_count": 1}, "knowledge": {"_count": 1}, "attack": {"_count": 1}, "expression": {"_count": 2}, "fury": {"_count": 2}, "fault": {"_count": 1}, "surge": {"_count": 1}, "voice": {"_count": 1}}, "and": {"_count": 55, "Voldemorts": {"_count": 1}, "Malfoyd": {"_count": 1}, "Wormtail": {"_count": 1}, "return": {"_count": 1}, "kissed": {"_count": 1}, "the": {"_count": 6}, "upon": {"_count": 1}, "he": {"_count": 3}, "for": {"_count": 1}, "so": {"_count": 1}, "Sirius": {"_count": 2}, "me": {"_count": 1}, "waved": {"_count": 1}, "speaking": {"_count": 1}, "they": {"_count": 1}, "his": {"_count": 4}, "began": {"_count": 1}, "convinced": {"_count": 1}, "not": {"_count": 1}, "seeing": {"_count": 1}, "I": {"_count": 1}, "how": {"_count": 1}, "Snape": {"_count": 2}, "away": {"_count": 1}, "though": {"_count": 1}, "if": {"_count": 1}, "then": {"_count": 1}, "Harry": {"_count": 6}, "Snapes": {"_count": 1}, "a": {"_count": 1}, "might": {"_count": 1}, "there": {"_count": 3}, "Hagrid": {"_count": 1}, "with": {"_count": 1}, "saw": {"_count": 1}, "like": {"_count": 1}}, "murdering": {"_count": 2, "my": {"_count": 1}, "a": {"_count": 1}}, "when": {"_count": 1, "this": {"_count": 1}}, "after": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "Lupin": {"_count": 1, "looked": {"_count": 1}}, "killing": {"_count": 1, "me": {"_count": 1}}, "that": {"_count": 2, "being": {"_count": 1}, "Harry": {"_count": 1}}, "teach": {"_count": 1, "me": {"_count": 1}}, "went": {"_count": 2, "to": {"_count": 1}, "off": {"_count": 1}}, "met": {"_count": 1, "his": {"_count": 1}}, "would": {"_count": 16, "be": {"_count": 2}, "hear": {"_count": 1}, "have": {"_count": 5}, "prefer": {"_count": 1}, "hunt": {"_count": 1}, "never": {"_count": 1}, "not": {"_count": 1}, "feel": {"_count": 1}, "expect": {"_count": 1}, "know": {"_count": 1}, "spare": {"_count": 1}}, "you": {"_count": 3, "could": {"_count": 1}, "see": {"_count": 1}, "must": {"_count": 1}}, "didnt": {"_count": 2, "kill": {"_count": 1}, "I": {"_count": 1}}, "comes": {"_count": 1, "back": {"_count": 1}}, "back": {"_count": 2, "to": {"_count": 1}, "at": {"_count": 1}}, "wants": {"_count": 6, "his": {"_count": 1}, "something": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}}, "yet": {"_count": 2, "": {"_count": 1}, "must": {"_count": 1}}, "Muggle": {"_count": 1, "for": {"_count": 1}}, "couldnt": {"_count": 2, "be": {"_count": 1}, "just": {"_count": 1}}, "lurking": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 11, "most": {"_count": 1}, "slitlike": {"_count": 1}, "snake": {"_count": 1}, "happiest": {"_count": 1}, "Dark": {"_count": 1}, "information": {"_count": 1}, "HalfBlood": {"_count": 1}, "very": {"_count": 1}, "idea": {"_count": 1}, "Slytherin": {"_count": 1}, "correct": {"_count": 1}}, "rising": {"_count": 2, "again": {"_count": 1}, "from": {"_count": 1}}, "have": {"_count": 6, "ensured": {"_count": 1}, "got": {"_count": 1}, "wanted": {"_count": 1}, "made": {"_count": 1}, "for": {"_count": 1}, "journeyed": {"_count": 1}}, "is": {"_count": 14, "it": {"_count": 1}, "near": {"_count": 1}, "really": {"_count": 1}, "close": {"_count": 1}, "waiting": {"_count": 1}, "the": {"_count": 1}, "using": {"_count": 1}, "now": {"_count": 1}, "no": {"_count": 1}, "not": {"_count": 1}, "playing": {"_count": 1}, "because": {"_count": 1}, "merciful": {"_count": 1}, "revolving": {"_count": 1}}, "unless": {"_count": 1, "he": {"_count": 1}}, "supporter": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "disappeared": {"_count": 1, "it": {"_count": 1}}, "fell": {"_count": 2, "": {"_count": 1}, "backward": {"_count": 1}}, "getting": {"_count": 1, "stronger": {"_count": 1}}, "accusing": {"_count": 1, "Wormtail": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 4, "away": {"_count": 1}, "coldly": {"_count": 1}, "up": {"_count": 2}}, "slipped": {"_count": 1, "one": {"_count": 1}}, "lazily": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "laughed": {"_count": 3, "again": {"_count": 2}, "softly": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "examined": {"_count": 1, "it": {"_count": 1}}, "removed": {"_count": 1, "his": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "stood": {"_count": 3, "in": {"_count": 1}, "up": {"_count": 2}}, "however": {"_count": 4, "did": {"_count": 1}, "stayed": {"_count": 1}, "he": {"_count": 1}, "seemed": {"_count": 1}}, "quietly": {"_count": 7, "": {"_count": 4}, "as": {"_count": 1}, "and": {"_count": 2}}, "they": {"_count": 1, "must": {"_count": 1}}, "ignored": {"_count": 1, "them": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "raised": {"_count": 10, "his": {"_count": 7}, "one": {"_count": 1}, "Lucius": {"_count": 1}, "the": {"_count": 1}}, "softly": {"_count": 7, "": {"_count": 3}, "his": {"_count": 1}, "and": {"_count": 2}, "staring": {"_count": 1}}, "coolly": {"_count": 1, "watching": {"_count": 1}}, "rewards": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 3, "approached": {"_count": 1}, "": {"_count": 2}}, "moved": {"_count": 4, "on": {"_count": 2}, "slowly": {"_count": 1}, "forward": {"_count": 1}}, "let": {"_count": 1, "the": {"_count": 1}}, "continued": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "took": {"_count": 2, "no": {"_count": 1}, "it": {"_count": 1}}, "smiled": {"_count": 3, "his": {"_count": 1}, "mechanically": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "of": {"_count": 3, "his": {"_count": 1}, "course": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "bending": {"_count": 1, "a": {"_count": 1}}, "play": {"_count": 1, "with": {"_count": 1}}, "draw": {"_count": 1, "nearer": {"_count": 1}}, "cried": {"_count": 2, "Avada": {"_count": 1}, "like": {"_count": 1}}, "for": {"_count": 4, "instructions": {"_count": 1}, "good": {"_count": 1}, "mere": {"_count": 1}, "his": {"_count": 1}}, "splintered": {"_count": 1, "though": {"_count": 1}}, "crisscrossing": {"_count": 1, "all": {"_count": 1}}, "shrieked": {"_count": 1, "to": {"_count": 1}}, "shouted": {"_count": 1, "to": {"_count": 1}}, "changed": {"_count": 1, "too": {"_count": 1}}, "his": {"_count": 6, "ears": {"_count": 1}, "face": {"_count": 1}, "scarlet": {"_count": 1}, "head": {"_count": 1}, "voice": {"_count": 1}, "snakes": {"_count": 1}}, "shielding": {"_count": 1, "Harry": {"_count": 1}}, "scream": {"_count": 2, "": {"_count": 1}, "Mine": {"_count": 1}}, "but": {"_count": 6, "Cedric": {"_count": 1}, "himself": {"_count": 1}, "before": {"_count": 1}, "still": {"_count": 2}, "when": {"_count": 1}}, "ask": {"_count": 1, "you": {"_count": 1}}, "has": {"_count": 19, "overcome": {"_count": 1}, "been": {"_count": 1}, "returned": {"_count": 5}, "not": {"_count": 2}, "already": {"_count": 1}, "finally": {"_count": 1}, "never": {"_count": 3}, "promised": {"_count": 1}, "threatened": {"_count": 1}, "seemed": {"_count": 1}, "recruited": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 1}, "great": {"_count": 1}, "once": {"_count": 2}, "all": {"_count": 2}}, "learning": {"_count": 1, "of": {"_count": 1}}, "come": {"_count": 2, "back": {"_count": 2}}, "only": {"_count": 2, "when": {"_count": 1}, "caught": {"_count": 1}}, "as": {"_count": 3, "Dumbledore": {"_count": 1}, "though": {"_count": 1}, "possible": {"_count": 1}}, "being": {"_count": 3, "back": {"_count": 3}}, "not": {"_count": 2, "that": {"_count": 1}, "have": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "cant": {"_count": 1, "carry": {"_count": 1}}, "its": {"_count": 1, "hard": {"_count": 1}}, "doesnt": {"_count": 3, "march": {"_count": 1}, "care": {"_count": 1}, "need": {"_count": 1}}, "in": {"_count": 4, "person": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 2}}, "her": {"_count": 1, "pride": {"_count": 1}}, "tortured": {"_count": 1, "him": {"_count": 1}}, "moves": {"_count": 1, "into": {"_count": 1}}, "return": {"_count": 1, "to": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "hadnt": {"_count": 1, "needed": {"_count": 1}}, "murders": {"_count": 1, "someone": {"_count": 1}}, "wherever": {"_count": 1, "he": {"_count": 1}}, "wanted": {"_count": 4, "done": {"_count": 1}, "nor": {"_count": 1}, "Slughorn": {"_count": 1}, "him": {"_count": 1}}, "touches": {"_count": 1, "one": {"_count": 1}}, "really": {"_count": 2, "wants": {"_count": 1}, "wanted": {"_count": 1}}, "staring": {"_count": 2, "out": {"_count": 1}, "around": {"_count": 1}}, "burst": {"_count": 1, "out": {"_count": 1}}, "made": {"_count": 3, "me": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "somehow": {"_count": 1, "transported": {"_count": 1}}, "stop": {"_count": 1, "whimpering": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "lowered": {"_count": 1, "his": {"_count": 1}}, "get": {"_count": 1, "into": {"_count": 1}}, "used": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "knows": {"_count": 4, "you": {"_count": 1}, "its": {"_count": 1}, "how": {"_count": 1}, "and": {"_count": 1}}, "decided": {"_count": 1, "Sirius": {"_count": 1}}, "dangerously": {"_count": 1, "": {"_count": 1}}, "paid": {"_count": 1, "no": {"_count": 1}}, "shield": {"_count": 1, "and": {"_count": 1}}, "vanished": {"_count": 3, "": {"_count": 2}, "shortly": {"_count": 1}}, "reappeared": {"_count": 1, "standing": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 1}, "this": {"_count": 1}}, "where": {"_count": 1, "who": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "awake": {"_count": 1, "inside": {"_count": 1}}, "from": {"_count": 2, "that": {"_count": 1}, "taking": {"_count": 1}}, "what": {"_count": 2, "we": {"_count": 1}, "appears": {"_count": 1}}, "knew": {"_count": 10, "already": {"_count": 1}, "of": {"_count": 1}, "no": {"_count": 2}, "that": {"_count": 4}, "about": {"_count": 1}, "where": {"_count": 1}}, "while": {"_count": 2, "in": {"_count": 1}, "shes": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}, "expects": {"_count": 1, "we": {"_count": 1}}, "tried": {"_count": 3, "to": {"_count": 3}}, "never": {"_count": 2, "knew": {"_count": 2}}, "because": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "walking": {"_count": 1, "past": {"_count": 1}}, "ever": {"_count": 1, "feared": {"_count": 1}}, "too": {"_count": 2, "if": {"_count": 1}, "collapsed": {"_count": 1}}, "sent": {"_count": 1, "his": {"_count": 1}}, "well": {"_count": 1, "we": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 3}}, "just": {"_count": 1, "as": {"_count": 1}}, "chosen": {"_count": 1, "Neville": {"_count": 1}}, "brought": {"_count": 1, "up": {"_count": 1}}, "behind": {"_count": 1, "which": {"_count": 1}}, "did": {"_count": 9, "not": {"_count": 6}, "until": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "stole": {"_count": 1, "Morfins": {"_count": 1}}, "Stupefied": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 2, "wanted": {"_count": 1}, "welcome": {"_count": 1}}, "left": {"_count": 1, "Hogwarts": {"_count": 1}}, "first": {"_count": 1, "approached": {"_count": 1}}, "envisaged": {"_count": 1, "spending": {"_count": 1}}, "stretched": {"_count": 1, "out": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "reached": {"_count": 1, "out": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "modified": {"_count": 1, "her": {"_count": 1}}, "inclined": {"_count": 1, "his": {"_count": 1}}, "sneered": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "murdered": {"_count": 1, "him": {"_count": 1}}, "What": {"_count": 1, "he": {"_count": 1}}, "regarded": {"_count": 1, "this": {"_count": 1}}, "likes": {"_count": 1, "to": {"_count": 1}}, "than": {"_count": 1, "anyone": {"_count": 1}}, "must": {"_count": 3, "attack": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}}, "use": {"_count": 1, "tin": {"_count": 1}}, "liked": {"_count": 1, "to": {"_count": 1}}, "considered": {"_count": 1, "it": {"_count": 1}}, "know": {"_count": 1, "when": {"_count": 1}}, "discovered": {"_count": 1, "that": {"_count": 1}}, "singled": {"_count": 1, "you": {"_count": 1}}, "should": {"_count": 2, "have": {"_count": 1}, "read": {"_count": 1}}, "continues": {"_count": 1, "to": {"_count": 1}}, "hunting": {"_count": 1, "after": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "convinced": {"_count": 1, "that": {"_count": 1}}, "fails": {"_count": 1, "to": {"_count": 1}}, "needed": {"_count": 3, "to": {"_count": 2}, "an": {"_count": 1}}, "believes": {"_count": 2, "that": {"_count": 1}, "you": {"_count": 1}}, "realized": {"_count": 1, "that": {"_count": 1}}, "hunt": {"_count": 1, "down": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}, "uses": {"_count": 1, "people": {"_count": 1}}, "indicating": {"_count": 1, "the": {"_count": 1}}, "spoke": {"_count": 2, "first": {"_count": 1}, "in": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "called": {"_count": 1, "down": {"_count": 1}}, "apprehensively": {"_count": 1, "each": {"_count": 1}}, "looking": {"_count": 3, "again": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}}, "stroked": {"_count": 1, "the": {"_count": 1}}, "stroking": {"_count": 2, "the": {"_count": 2}}, "before": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "preparing": {"_count": 1, "to": {"_count": 1}}, "Easy": {"_count": 1, "now": {"_count": 1}}, "caught": {"_count": 2, "up": {"_count": 2}}, "we": {"_count": 2, "were": {"_count": 1}, "go": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "crucial": {"_count": 1, "information": {"_count": 1}}, "finds": {"_count": 1, "out": {"_count": 1}}, "Ollivander": {"_count": 1, "": {"_count": 1}}, "torturing": {"_count": 1, "Ollivander": {"_count": 1}}, "attacked": {"_count": 1, "me": {"_count": 1}}, "moving": {"_count": 1, "beyond": {"_count": 1}}, "attempting": {"_count": 1, "it": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "chased": {"_count": 1, "me": {"_count": 1}}, "more": {"_count": 1, "threatening": {"_count": 1}}, "down": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "wouldnt": {"_count": 1, "he": {"_count": 1}}, "through": {"_count": 1, "them": {"_count": 1}}, "declare": {"_count": 1, "himself": {"_count": 1}}, "free": {"_count": 1, "to": {"_count": 1}}, "planning": {"_count": 1, "for": {"_count": 1}}, "are": {"_count": 1, "behind": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "sought": {"_count": 4, "him": {"_count": 1}, "a": {"_count": 1}, "grandeur": {"_count": 1}, "the": {"_count": 1}}, "or": {"_count": 2, "his": {"_count": 1}, "arent": {"_count": 1}}, "Gregorovitch": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 2, "somehow": {"_count": 1}, "to": {"_count": 1}}, "searching": {"_count": 1, "now": {"_count": 1}}, "flying": {"_count": 1, "through": {"_count": 1}}, "punishing": {"_count": 1, "those": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "breaking": {"_count": 1, "open": {"_count": 1}}, "chose": {"_count": 1, "to": {"_count": 1}}, "sailing": {"_count": 1, "fast": {"_count": 1}}, "leapt": {"_count": 1, "from": {"_count": 1}}, "thought": {"_count": 1, "Id": {"_count": 1}}, "feared": {"_count": 1, "that": {"_count": 1}}, "defeating": {"_count": 1, "Voldemort": {"_count": 1}}, "finished": {"_count": 1, "youve": {"_count": 1}}, "dropped": {"_count": 1, "his": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "halted": {"_count": 1, "and": {"_count": 1}}, "swiped": {"_count": 1, "the": {"_count": 1}}, "coldly": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "swept": {"_count": 1, "from": {"_count": 1}}, "ringing": {"_count": 1, "in": {"_count": 1}}, "foresees": {"_count": 1, "a": {"_count": 1}}, "fears": {"_count": 1, "that": {"_count": 1}}, "stops": {"_count": 1, "sending": {"_count": 1}}, "lives": {"_count": 1, "inside": {"_count": 1}}, "remains": {"_count": 1, "attached": {"_count": 1}}, "disheveled": {"_count": 1, "her": {"_count": 1}}, "tilted": {"_count": 1, "his": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "doubled": {"_count": 1, "the": {"_count": 1}}, "proceeded": {"_count": 1, "to": {"_count": 1}}, "going": {"_count": 1, "after": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "suspected": {"_count": 1, "that": {"_count": 1}}, "won": {"_count": 1, "": {"_count": 1}}, "striding": {"_count": 1, "in": {"_count": 1}}, "standing": {"_count": 1, "a": {"_count": 1}}, "broke": {"_count": 1, "off": {"_count": 1}}, "throwing": {"_count": 1, "the": {"_count": 1}}, "asked": {"_count": 1, "Neville": {"_count": 1}}, "wave": {"_count": 1, "his": {"_count": 1}}, "stared": {"_count": 1, "around": {"_count": 1}}, "hissed": {"_count": 1, "": {"_count": 1}}, "hurled": {"_count": 1, "the": {"_count": 1}}, "But": {"_count": 1, "it": {"_count": 1}}}, "flinched": {"_count": 12, "but": {"_count": 2, "Dumbledore": {"_count": 1}, "she": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 3}}, "as": {"_count": 3, "though": {"_count": 2}, "the": {"_count": 1}}, "like": {"_count": 1, "most": {"_count": 1}}, "looking": {"_count": 1, "terrified": {"_count": 1}}, "winced": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "made": {"_count": 1}}}, "unsticking": {"_count": 2, "two": {"_count": 1, "lemon": {"_count": 1}}, "his": {"_count": 1, "cheek": {"_count": 1}}}, "gets": {"_count": 65, "so": {"_count": 1, "confusing": {"_count": 1}}, "me": {"_count": 1, "ter": {"_count": 1}}, "drunk": {"_count": 1, "tries": {"_count": 1}}, "new": {"_count": 1, "robes": {"_count": 1}}, "scared": {"_count": 1, "when": {"_count": 1}}, "lonely": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 3, "trouble": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}}, "hold": {"_count": 3, "of": {"_count": 3}}, "back": {"_count": 2, "": {"_count": 1}, "shes": {"_count": 1}}, "enough": {"_count": 1, "dont": {"_count": 1}}, "home": {"_count": 1, "we": {"_count": 1}}, "the": {"_count": 7, "Snitch": {"_count": 2}, "Quaffle": {"_count": 1}, "Horntail": {"_count": 1}, "points": {"_count": 1}, "socks": {"_count": 1}, "facts": {"_count": 1}}, "them": {"_count": 1, "five": {"_count": 1}}, "better": {"_count": 2, "soon": {"_count": 1}, "": {"_count": 1}}, "too": {"_count": 2, "near": {"_count": 1}, "worked": {"_count": 1}}, "out": {"_count": 3, "HE": {"_count": 1}, "of": {"_count": 1}, "yeh": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}, "people": {"_count": 1, "fawning": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "nasty": {"_count": 1, "Extinguishing": {"_count": 1}}, "a": {"_count": 2, "Galleon": {"_count": 1}, "good": {"_count": 1}}, "his": {"_count": 1, "questions": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "confused": {"_count": 1, "about": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "through": {"_count": 1}}, "sacked": {"_count": 1, "immediately": {"_count": 1}}, "visitors": {"_count": 1, "poor": {"_count": 1}}, "cold": {"_count": 1, "wont": {"_count": 1}}, "through": {"_count": 2, "Umbridges": {"_count": 1}, "twice": {"_count": 1}}, "chucked": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "us": {"_count": 1, "any": {"_count": 1}}, "put": {"_count": 1, "under": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 1}, "then": {"_count": 1}, "right": {"_count": 1}}, "carried": {"_count": 1, "away": {"_count": 1}}, "injured": {"_count": 1, "said": {"_count": 1}}, "here": {"_count": 2, "though": {"_count": 1}, "she": {"_count": 1}}, "going": {"_count": 1, "": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}, "stolen": {"_count": 1, "Oh": {"_count": 1}}, "bored": {"_count": 1, "of": {"_count": 1}}, "low": {"_count": 1, "enough": {"_count": 1}}, "this": {"_count": 1, "room": {"_count": 1}}}, "confusing": {"_count": 5, "if": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 1, "the": {"_count": 1}}, "dates": {"_count": 1, "": {"_count": 1}}}, "we": {"_count": 2054, "keep": {"_count": 3, "saying": {"_count": 1}, "going": {"_count": 1}, "this": {"_count": 1}}, "was": {"_count": 9, "flyin": {"_count": 1}, "before": {"_count": 1}, "all": {"_count": 1}, "goin": {"_count": 2}, "headin": {"_count": 1}, "bein": {"_count": 1}, "going": {"_count": 1}, "around": {"_count": 1}}, "could": {"_count": 44, "take": {"_count": 1}, "play": {"_count": 1}, "hear": {"_count": 3}, "go": {"_count": 1}, "carry": {"_count": 1}, "have": {"_count": 6}, "think": {"_count": 2}, "all": {"_count": 2}, "save": {"_count": 1}, "get": {"_count": 2}, "be": {"_count": 1}, "do": {"_count": 5}, "squash": {"_count": 1}, "turn": {"_count": 1}, "see": {"_count": 1}, "just": {"_count": 1}, "avoid": {"_count": 1}, "wake": {"_count": 1}, "feel": {"_count": 1}, "come": {"_count": 1}, "continue": {"_count": 1}, "still": {"_count": 2}, "said": {"_count": 1}, "help": {"_count": 1}, "try": {"_count": 1}, "send": {"_count": 1}, "overpower": {"_count": 1}, "probably": {"_count": 1}, "scarper": {"_count": 1}}, "do": {"_count": 45, "Vernon": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 14}, "Harry": {"_count": 1}, "have": {"_count": 1}, "seem": {"_count": 1}, "all": {"_count": 2}, "not": {"_count": 4}, "anyway": {"_count": 1}, "Snapes": {"_count": 1}, "is": {"_count": 1}, "about": {"_count": 1}, "it": {"_count": 4}, "get": {"_count": 1}, "come": {"_count": 1}, "something": {"_count": 1}, "fairly": {"_count": 1}, "anything": {"_count": 2}, "run": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "Griphook": {"_count": 1}, "will": {"_count": 1}, "look": {"_count": 1}}, "write": {"_count": 1, "back": {"_count": 1}}, "dont": {"_count": 52, "want": {"_count": 7}, "feel": {"_count": 1}, "mind": {"_count": 2}, "reckon": {"_count": 1}, "revive": {"_count": 1}, "see": {"_count": 2}, "get": {"_count": 1}, "recall": {"_count": 1}, "know": {"_count": 9}, "": {"_count": 3}, "take": {"_count": 2}, "have": {"_count": 3}, "kiss": {"_count": 1}, "leave": {"_count": 1}, "think": {"_count": 2}, "learn": {"_count": 1}, "offer": {"_count": 1}, "care": {"_count": 2}, "need": {"_count": 4}, "go": {"_count": 1}, "stand": {"_count": 1}, "hear": {"_count": 1}, "really": {"_count": 2}, "or": {"_count": 1}, "look": {"_count": 1}}, "wont": {"_count": 15, "do": {"_count": 1}, "we": {"_count": 1}, "let": {"_count": 1}, "fit": {"_count": 1}, "find": {"_count": 1}, "laugh": {"_count": 1}, "have": {"_count": 2}, "know": {"_count": 2}, "get": {"_count": 2}, "ask": {"_count": 1}, "be": {"_count": 2}}, "swear": {"_count": 1, "when": {"_count": 1}}, "took": {"_count": 10, "him": {"_count": 2}, "the": {"_count": 2}, "certain": {"_count": 1}, "But": {"_count": 1}, "": {"_count": 1}, "her": {"_count": 1}, "off": {"_count": 1}, "to": {"_count": 1}}, "think": {"_count": 12, "it": {"_count": 2}, "there": {"_count": 1}, "theyre": {"_count": 1}, "she": {"_count": 1}, "hes": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}, "of": {"_count": 1}, "Potter": {"_count": 1}}, "call": {"_count": 8, "nonmagic": {"_count": 1}, "it": {"_count": 2}, "someone": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 2}}, "knew": {"_count": 10, "": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "where": {"_count": 1}, "about": {"_count": 1}, "would": {"_count": 1}, "didnt": {"_count": 1}, "and": {"_count": 1}}, "got": {"_count": 35, "landed": {"_count": 1}, "today": {"_count": 1}, "separated": {"_count": 1}, "this": {"_count": 1}, "into": {"_count": 3}, "now": {"_count": 1}, "them": {"_count": 1}, "in": {"_count": 1}, "enough": {"_count": 1}, "a": {"_count": 3}, "here": {"_count": 1}, "away": {"_count": 1}, "ask": {"_count": 1}, "inter": {"_count": 1}, "near": {"_count": 1}, "nearer": {"_count": 2}, "right": {"_count": 1}, "back": {"_count": 2}, "out": {"_count": 2}, "on": {"_count": 1}, "wind": {"_count": 1}, "there": {"_count": 2}, "you": {"_count": 1}, "to": {"_count": 1}, "some": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "go": {"_count": 46, "": {"_count": 8}, "more": {"_count": 1}, "to": {"_count": 2}, "down": {"_count": 5}, "and": {"_count": 5}, "said": {"_count": 3}, "straight": {"_count": 2}, "for": {"_count": 2}, "up": {"_count": 3}, "then": {"_count": 3}, "charging": {"_count": 1}, "from": {"_count": 2}, "in": {"_count": 1}, "again": {"_count": 2}, "any": {"_count": 1}, "there": {"_count": 1}, "on": {"_count": 1}, "along": {"_count": 1}, "out": {"_count": 1}, "Harry": {"_count": 1}}, "buy": {"_count": 2, "all": {"_count": 1}, "you": {"_count": 1}}, "gotta": {"_count": 1, "get": {"_count": 1}}, "must": {"_count": 12, "expect": {"_count": 1}, "ask": {"_count": 2}, "register": {"_count": 1}, "make": {"_count": 1}, "unite": {"_count": 1}, "remember": {"_count": 1}, "now": {"_count": 1}, "still": {"_count": 1}, "resign": {"_count": 1}, "use": {"_count": 1}, "have": {"_count": 1}}, "had": {"_count": 32, "no": {"_count": 3}, "a": {"_count": 2}, "to": {"_count": 8}, "Headmaster": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "caught": {"_count": 1}, "with": {"_count": 1}, "never": {"_count": 1}, "ter": {"_count": 2}, "abou": {"_count": 1}, "time": {"_count": 1}, "Norbert": {"_count": 1}, "close": {"_count": 1}, "known": {"_count": 1}, "more": {"_count": 1}, "from": {"_count": 1}, "all": {"_count": 1}, "started": {"_count": 1}, "least": {"_count": 1}, "half": {"_count": 1}}, "just": {"_count": 25, "met": {"_count": 1}, "do": {"_count": 1}, "strap": {"_count": 1}, "run": {"_count": 1}, "saw": {"_count": 1}, "havent": {"_count": 2}, "need": {"_count": 2}, "Ron": {"_count": 1}, "ignore": {"_count": 1}, "wrote": {"_count": 1}, "get": {"_count": 1}, "Your": {"_count": 1}, "": {"_count": 2}, "ask": {"_count": 1}, "have": {"_count": 1}, "want": {"_count": 1}, "Apparate": {"_count": 1}, "heard": {"_count": 1}, "let": {"_count": 1}, "go": {"_count": 1}, "had": {"_count": 1}, "invite": {"_count": 1}}, "introduce": {"_count": 1, "ourselves": {"_count": 1}}, "never": {"_count": 14, "talk": {"_count": 1}, "had": {"_count": 1}, "laid": {"_count": 1}, "asked": {"_count": 1}, "found": {"_count": 2}, "thought": {"_count": 1}, "use": {"_count": 1}, "speaks": {"_count": 1}, "knew": {"_count": 1}, "let": {"_count": 1}, "even": {"_count": 1}, "know": {"_count": 1}, "discussed": {"_count": 1}}, "havent": {"_count": 30, "seen": {"_count": 4}, "got": {"_count": 14}, "been": {"_count": 2}, "covered": {"_count": 1}, "done": {"_count": 1}, "had": {"_count": 1}, "Hermione": {"_count": 1}, "worked": {"_count": 1}, "played": {"_count": 1}, "used": {"_count": 1}, "forgotten": {"_count": 1}, "heard": {"_count": 2}}, "boys": {"_count": 2, "": {"_count": 2}}, "help": {"_count": 1, "you": {"_count": 1}}, "even": {"_count": 1, "get": {"_count": 1}}, "change": {"_count": 2, "": {"_count": 1}, "back": {"_count": 1}}, "are": {"_count": 91, "ready": {"_count": 1}, "all": {"_count": 7}, "": {"_count": 7}, "in": {"_count": 3}, "sworn": {"_count": 1}, "holding": {"_count": 1}, "But": {"_count": 2}, "now": {"_count": 5}, "sure": {"_count": 1}, "certain": {"_count": 1}, "lucky": {"_count": 1}, "walking": {"_count": 1}, "going": {"_count": 2}, "look": {"_count": 1}, "to": {"_count": 4}, "not": {"_count": 3}, "attending": {"_count": 1}, "only": {"_count": 1}, "united": {"_count": 1}, "divided": {"_count": 1}, "away": {"_count": 1}, "said": {"_count": 6}, "also": {"_count": 1}, "is": {"_count": 1}, "starting": {"_count": 1}, "delighted": {"_count": 1}, "prefects": {"_count": 1}, "here": {"_count": 2}, "seeing": {"_count": 1}, "he": {"_count": 1}, "supposed": {"_count": 2}, "alone": {"_count": 1}, "on": {"_count": 1}, "but": {"_count": 1}, "once": {"_count": 1}, "friendly": {"_count": 1}, "protected": {"_count": 1}, "practicing": {"_count": 1}, "looking": {"_count": 1}, "of": {"_count": 1}, "closer": {"_count": 1}, "right": {"_count": 1}, "required": {"_count": 1}, "facing": {"_count": 2}, "very": {"_count": 1}, "quite": {"_count": 1}, "anywhere": {"_count": 1}, "at": {"_count": 1}, "joined": {"_count": 1}, "somewhere": {"_count": 1}, "being": {"_count": 1}, "opposed": {"_count": 1}, "risking": {"_count": 1}, "fighting": {"_count": 1}, "the": {"_count": 1}, "mistaken": {"_count": 1}, "capable": {"_count": 1}, "talking": {"_count": 1}}, "ought": {"_count": 23, "to": {"_count": 22}, "not": {"_count": 1}}, "given": {"_count": 1, "Peeves": {"_count": 1}}, "begin": {"_count": 4, "our": {"_count": 1}, "": {"_count": 2}, "todays": {"_count": 1}}, "be": {"_count": 5, "old": {"_count": 1}, "here": {"_count": 1}, "the": {"_count": 1}, "Apparating": {"_count": 1}, "too": {"_count": 1}}, "were": {"_count": 112, "there": {"_count": 3}, "on": {"_count": 2}, "right": {"_count": 2}, "sure": {"_count": 1}, "dashing": {"_count": 1}, "going": {"_count": 9}, "steamrollered": {"_count": 1}, "saying": {"_count": 1}, "leaving": {"_count": 3}, "awake": {"_count": 1}, "tired": {"_count": 1}, "stuck": {"_count": 2}, "just": {"_count": 6}, "in": {"_count": 8}, "Ron": {"_count": 1}, "reading": {"_count": 1}, "really": {"_count": 1}, "forbidden": {"_count": 1}, "up": {"_count": 4}, "to": {"_count": 5}, "running": {"_count": 2}, "all": {"_count": 3}, "standing": {"_count": 1}, "too": {"_count": 2}, "The": {"_count": 1}, "last": {"_count": 1}, "outnumbered": {"_count": 1}, "followed": {"_count": 1}, "youre": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 2}, "two": {"_count": 1}, "getting": {"_count": 2}, "dealing": {"_count": 1}, "sometimes": {"_count": 1}, "always": {"_count": 1}, "older": {"_count": 1}, "er": {"_count": 1}, "told": {"_count": 1}, "kind": {"_count": 1}, "arguing": {"_count": 1}, "eighteen": {"_count": 1}, "setting": {"_count": 1}, "discussing": {"_count": 1}, "asked": {"_count": 1}, "using": {"_count": 1}, "not": {"_count": 1}, "caught": {"_count": 1}, "rudely": {"_count": 1}, "glad": {"_count": 1}, "losing": {"_count": 1}, "fighting": {"_count": 1}, "sitting": {"_count": 1}, "chased": {"_count": 1}, "both": {"_count": 1}, "moving": {"_count": 2}, "little": {"_count": 1}, "here": {"_count": 2}, "terrified": {"_count": 1}, "supposed": {"_count": 3}, "stopping": {"_count": 1}, "looking": {"_count": 1}, "communicating": {"_count": 1}, "still": {"_count": 1}, "after": {"_count": 1}, "protecting": {"_count": 1}, "making": {"_count": 1}, "evenly": {"_count": 1}}, "cant": {"_count": 38, "bend": {"_count": 1}, "find": {"_count": 2}, "win": {"_count": 1}, "follow": {"_count": 1}, "prove": {"_count": 1}, "afford": {"_count": 2}, "Well": {"_count": 2}, "have": {"_count": 4}, "resist": {"_count": 1}, "throw": {"_count": 1}, "leave": {"_count": 1}, "tell": {"_count": 2}, "set": {"_count": 1}, "trust": {"_count": 2}, "do": {"_count": 2}, "all": {"_count": 1}, "see": {"_count": 1}, "breed": {"_count": 1}, "": {"_count": 3}, "just": {"_count": 1}, "be": {"_count": 1}, "stay": {"_count": 1}, "ask": {"_count": 1}, "say": {"_count": 1}, "He": {"_count": 1}, "wear": {"_count": 1}, "really": {"_count": 1}}, "need": {"_count": 60, "a": {"_count": 4}, "to": {"_count": 32}, "is": {"_count": 1}, "him": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 2}, "our": {"_count": 1}, "from": {"_count": 1}, "partners": {"_count": 1}, "one": {"_count": 1}, "you": {"_count": 2}, "here": {"_count": 1}, "team": {"_count": 1}, "three": {"_count": 1}, "transport": {"_count": 1}, "in": {"_count": 1}, "already": {"_count": 1}, "the": {"_count": 3}, "Bogrod": {"_count": 1}, "them": {"_count": 2}}, "found": {"_count": 8, "in": {"_count": 1}, "out": {"_count": 4}, "Karkus": {"_count": 1}, "three": {"_count": 1}, "it": {"_count": 1}}, "dragged": {"_count": 1, "her": {"_count": 1}}, "might": {"_count": 22, "lose": {"_count": 1}, "overtake": {"_count": 1}, "stand": {"_count": 1}, "get": {"_count": 2}, "well": {"_count": 1}, "meet": {"_count": 1}, "as": {"_count": 1}, "be": {"_count": 3}, "try": {"_count": 1}, "have": {"_count": 3}, "call": {"_count": 2}, "accidentally": {"_count": 1}, "make": {"_count": 1}, "hit": {"_count": 1}, "avoid": {"_count": 1}, "never": {"_count": 1}}, "did": {"_count": 10, "save": {"_count": 1}, "": {"_count": 3}, "try": {"_count": 1}, "what": {"_count": 1}, "said": {"_count": 1}, "wha": {"_count": 1}, "your": {"_count": 1}, "is": {"_count": 1}}, "hadnt": {"_count": 3, "locked": {"_count": 1}, "married": {"_count": 1}, "had": {"_count": 1}}, "saw": {"_count": 17, "him": {"_count": 3}, "an": {"_count": 1}, "Pettigrew": {"_count": 1}, "whats": {"_count": 1}, "Mr": {"_count": 1}, "Malfoy": {"_count": 1}, "it": {"_count": 2}, "wasn": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "Uranus": {"_count": 1}, "a": {"_count": 1}, "YouKnowWho": {"_count": 1}, "that": {"_count": 1}}, "continue": {"_count": 2, "play": {"_count": 1}, "to": {"_count": 1}}, "should": {"_count": 54, "be": {"_count": 4}, "have": {"_count": 3}, "run": {"_count": 1}, "aim": {"_count": 1}, "go": {"_count": 6}, "wake": {"_count": 1}, "leave": {"_count": 1}, "make": {"_count": 2}, "tell": {"_count": 2}, "think": {"_count": 2}, "start": {"_count": 1}, "hear": {"_count": 1}, "do": {"_count": 4}, "exercise": {"_count": 1}, "send": {"_count": 1}, "tackle": {"_count": 1}, "just": {"_count": 4}, "all": {"_count": 2}, "get": {"_count": 2}, "come": {"_count": 1}, "talk": {"_count": 1}, "take": {"_count": 2}, "not": {"_count": 1}, "wait": {"_count": 1}, "stick": {"_count": 1}, "move": {"_count": 1}, "put": {"_count": 1}, "know": {"_count": 1}, "": {"_count": 1}, "keep": {"_count": 1}, "vote": {"_count": 1}, "forget": {"_count": 1}}, "can": {"_count": 115, "afford": {"_count": 1}, "go": {"_count": 6}, "return": {"_count": 1}, "get": {"_count": 9}, "help": {"_count": 1}, "find": {"_count": 5}, "tell": {"_count": 2}, "take": {"_count": 4}, "to": {"_count": 3}, "ask": {"_count": 2}, "Harry": {"_count": 1}, "do": {"_count": 9}, "just": {"_count": 7}, "": {"_count": 3}, "have": {"_count": 3}, "deal": {"_count": 2}, "worry": {"_count": 1}, "exclusively": {"_count": 1}, "turn": {"_count": 1}, "persuade": {"_count": 1}, "lose": {"_count": 1}, "risk": {"_count": 1}, "hear": {"_count": 1}, "catch": {"_count": 2}, "trust": {"_count": 2}, "give": {"_count": 2}, "see": {"_count": 1}, "actually": {"_count": 1}, "etch": {"_count": 1}, "all": {"_count": 2}, "build": {"_count": 1}, "talk": {"_count": 1}, "warn": {"_count": 1}, "refer": {"_count": 1}, "decide": {"_count": 1}, "start": {"_count": 1}, "produce": {"_count": 1}, "let": {"_count": 1}, "rescue": {"_count": 1}, "contact": {"_count": 1}, "use": {"_count": 1}, "Mrs": {"_count": 1}, "put": {"_count": 2}, "pop": {"_count": 1}, "walk": {"_count": 1}, "lend": {"_count": 1}, "enjoy": {"_count": 1}, "be": {"_count": 2}, "only": {"_count": 1}, "fix": {"_count": 1}, "drink": {"_count": 1}, "rule": {"_count": 1}, "speak": {"_count": 1}, "hide": {"_count": 1}, "protect": {"_count": 1}, "throw": {"_count": 1}, "plan": {"_count": 1}, "learn": {"_count": 1}, "muster": {"_count": 1}, "destroy": {"_count": 1}, "spare": {"_count": 1}, "dispose": {"_count": 1}, "said": {"_count": 1}, "hold": {"_count": 1}, "hope": {"_count": 1}, "agree": {"_count": 1}}, "know": {"_count": 57, "were": {"_count": 1}, "what": {"_count": 5}, "which": {"_count": 1}, "how": {"_count": 2}, "who": {"_count": 2}, "you": {"_count": 2}, "Filch": {"_count": 1}, "Creevey": {"_count": 1}, "Millicent": {"_count": 1}, "": {"_count": 5}, "where": {"_count": 3}, "for": {"_count": 2}, "it": {"_count": 2}, "youre": {"_count": 1}, "the": {"_count": 2}, "anyway": {"_count": 1}, "quite": {"_count": 1}, "they": {"_count": 1}, "about": {"_count": 2}, "that": {"_count": 3}, "thank": {"_count": 1}, "said": {"_count": 4}, "definitely": {"_count": 1}, "Hagrid": {"_count": 1}, "dead": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 2}, "died": {"_count": 1}, "our": {"_count": 1}, "exactly": {"_count": 1}, "roughly": {"_count": 1}, "dementors": {"_count": 1}, "well": {"_count": 1}, "shes": {"_count": 1}}, "want": {"_count": 20, "": {"_count": 2}, "to": {"_count": 14}, "just": {"_count": 1}, "him": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 1}}, "play": {"_count": 2, "a": {"_count": 1}, "them": {"_count": 1}}, "allowed": {"_count": 2, "to": {"_count": 2}}, "couldnt": {"_count": 11, "find": {"_count": 2}, "get": {"_count": 1}, "help": {"_count": 1}, "tell": {"_count": 1}, "have": {"_count": 2}, "fit": {"_count": 1}, "see": {"_count": 2}, "just": {"_count": 1}}, "win": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "Weasley": {"_count": 1}}, "ever": {"_count": 10, "need": {"_count": 2}, "explain": {"_count": 1}, "heard": {"_count": 1}, "kept": {"_count": 1}, "Hand": {"_count": 1}, "come": {"_count": 1}, "made": {"_count": 1}, "got": {"_count": 1}, "found": {"_count": 1}}, "wanted": {"_count": 15, "to": {"_count": 10}, "": {"_count": 1}, "two": {"_count": 1}, "ter": {"_count": 2}, "you": {"_count": 1}}, "have": {"_count": 80, "a": {"_count": 10}, "got": {"_count": 2}, "to": {"_count": 12}, "here": {"_count": 1}, "met": {"_count": 1}, "dealt": {"_count": 1}, "finished": {"_count": 1}, "accepted": {"_count": 1}, "another": {"_count": 2}, "no": {"_count": 2}, "asked": {"_count": 1}, "said": {"_count": 5}, "you": {"_count": 1}, "reached": {"_count": 2}, "therefore": {"_count": 1}, "almost": {"_count": 1}, "rarely": {"_count": 1}, "Crabbe": {"_count": 1}, "six": {"_count": 1}, "worked": {"_count": 1}, "ever": {"_count": 1}, "tried": {"_count": 1}, "": {"_count": 2}, "an": {"_count": 1}, "been": {"_count": 2}, "your": {"_count": 1}, "guests": {"_count": 1}, "clarified": {"_count": 1}, "decided": {"_count": 1}, "trespassed": {"_count": 1}, "reason": {"_count": 1}, "just": {"_count": 3}, "put": {"_count": 1}, "all": {"_count": 1}, "experienced": {"_count": 1}, "seen": {"_count": 1}, "achieved": {"_count": 1}, "that": {"_count": 1}, "entered": {"_count": 1}, "in": {"_count": 1}, "nothing": {"_count": 1}, "never": {"_count": 1}, "done": {"_count": 1}, "infiltrated": {"_count": 1}, "such": {"_count": 1}, "picked": {"_count": 1}, "the": {"_count": 1}, "very": {"_count": 1}}, "going": {"_count": 43, "to": {"_count": 33}, "": {"_count": 5}, "this": {"_count": 1}, "anyway": {"_count": 1}, "up": {"_count": 1}, "sir": {"_count": 1}, "or": {"_count": 1}}, "owe": {"_count": 1, "you": {"_count": 1}}, "try": {"_count": 3, "anything": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 1}}, "hate": {"_count": 1, "him": {"_count": 1}}, "made": {"_count": 5, "it": {"_count": 2}, "like": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}}, "heard": {"_count": 16, "earlier": {"_count": 1}, "Professor": {"_count": 1}, "yesterday": {"_count": 1}, "doing": {"_count": 1}, "hes": {"_count": 1}, "them": {"_count": 1}, "Barry": {"_count": 1}, "Hagrid": {"_count": 1}, "and": {"_count": 1}, "your": {"_count": 1}, "Dumbledore": {"_count": 1}, "footsteps": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "began": {"_count": 1}, "\u2018Snow": {"_count": 1}}, "not": {"_count": 5, "read": {"_count": 1}, "": {"_count": 1}, "jealously": {"_count": 1}, "right": {"_count": 1}, "notice": {"_count": 1}}, "thought": {"_count": 20, "Snape": {"_count": 2}, "it": {"_count": 2}, "wed": {"_count": 3}, "Peeves": {"_count": 1}, "at": {"_count": 1}, "they": {"_count": 1}, "might": {"_count": 1}, "we": {"_count": 3}, "itd": {"_count": 1}, "he": {"_count": 2}, "Shield": {"_count": 1}, "our": {"_count": 1}, "you": {"_count": 1}}, "find": {"_count": 11, "out": {"_count": 5}, "him": {"_count": 1}, "practices": {"_count": 2}, "we": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "Hermione": {"_count": 1, "gasped": {"_count": 1}}, "get": {"_count": 36, "caught": {"_count": 1}, "through": {"_count": 2}, "a": {"_count": 4}, "out": {"_count": 6}, "on": {"_count": 2}, "anyone": {"_count": 1}, "the": {"_count": 1}, "together": {"_count": 2}, "our": {"_count": 1}, "back": {"_count": 4}, "there": {"_count": 2}, "in": {"_count": 2}, "practicing": {"_count": 1}, "any": {"_count": 1}, "going": {"_count": 2}, "to": {"_count": 1}, "hold": {"_count": 1}, "into": {"_count": 1}, "inside": {"_count": 1}}, "cross": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "er": {"_count": 2, "have": {"_count": 1}, "didnt": {"_count": 1}}, "didnt": {"_count": 18, "have": {"_count": 1}, "enchant": {"_count": 1}, "get": {"_count": 1}, "know": {"_count": 1}, "think": {"_count": 1}, "youve": {"_count": 1}, "recognize": {"_count": 1}, "want": {"_count": 2}, "expect": {"_count": 1}, "realize": {"_count": 4}, "": {"_count": 1}, "dare": {"_count": 1}, "whispered": {"_count": 1}, "like": {"_count": 1}}, "give": {"_count": 3, "you": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 76, "?": {"_count": 71}, ".": {"_count": 5}}, "met": {"_count": 11, "him": {"_count": 1}, "Draco": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "your": {"_count": 1}, "im": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "Harry": {"_count": 1}}, "saved": {"_count": 1, "the": {"_count": 1}}, "sink": {"_count": 1, "our": {"_count": 1}}, "all": {"_count": 25, "know": {"_count": 7}, "hate": {"_count": 1}, "want": {"_count": 1}, "were": {"_count": 1}, "standing": {"_count": 1}, "Kreacher": {"_count": 1}, "come": {"_count": 1}, "ought": {"_count": 2}, "signed": {"_count": 1}, "have": {"_count": 1}, "Sirius": {"_count": 1}, "got": {"_count": 1}, "like": {"_count": 1}, "think": {"_count": 1}, "went": {"_count": 1}, "packed": {"_count": 1}, "understand": {"_count": 1}, "put": {"_count": 1}}, "kept": {"_count": 2, "him": {"_count": 1}, "our": {"_count": 1}}, "feel": {"_count": 4, "theyre": {"_count": 1}, "youre": {"_count": 1}, "is": {"_count": 1}, "our": {"_count": 1}}, "came": {"_count": 8, "to": {"_count": 2}, "here": {"_count": 1}, "back": {"_count": 3}, "in": {"_count": 2}}, "flew": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "meet": {"_count": 7, "in": {"_count": 1}, "again": {"_count": 3}, "": {"_count": 1}, "this": {"_count": 1}, "resistance": {"_count": 1}}, "fly": {"_count": 1, "above": {"_count": 1}}, "hurry": {"_count": 1, "well": {"_count": 1}}, "couldve": {"_count": 5, "hit": {"_count": 1}, "gone": {"_count": 2}, "asked": {"_count": 1}, "stopped": {"_count": 1}}, "Ron": {"_count": 2, "blurted": {"_count": 1}, "Hermione": {"_count": 1}}, "actually": {"_count": 1, "get": {"_count": 1}}, "train": {"_count": 1, "harder": {"_count": 1}}, "doing": {"_count": 8, "Professor": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "here": {"_count": 2}, "talking": {"_count": 1}, "to": {"_count": 1}, "now": {"_count": 1}}, "move": {"_count": 3, "": {"_count": 2}, "fast": {"_count": 1}}, "SHH": {"_count": 1, "": {"_count": 1}}, "prove": {"_count": 1, "it": {"_count": 1}}, "werent": {"_count": 11, "going": {"_count": 1}, "in": {"_count": 2}, "starting": {"_count": 1}, "": {"_count": 1}, "copying": {"_count": 1}, "determined": {"_count": 1}, "close": {"_count": 1}, "Dont": {"_count": 1}, "coming": {"_count": 1}, "supposed": {"_count": 1}}, "needed": {"_count": 5, "He": {"_count": 1}, "a": {"_count": 1}, "Dumbledores": {"_count": 1}, "to": {"_count": 2}}, "add": {"_count": 2, "those": {"_count": 1}, "another": {"_count": 1}}, "stop": {"_count": 1, "now": {"_count": 1}}, "dregs": {"_count": 1, "of": {"_count": 1}}, "decided": {"_count": 4, "to": {"_count": 1}, "wed": {"_count": 2}, "last": {"_count": 1}}, "will": {"_count": 28, "cast": {"_count": 1}, "be": {"_count": 7}, "leave": {"_count": 1}, "feed": {"_count": 1}, "kill": {"_count": 1}, "continue": {"_count": 2}, "have": {"_count": 2}, "wait": {"_count": 1}, "recall": {"_count": 1}, "linger": {"_count": 1}, "give": {"_count": 1}, "build": {"_count": 1}, "always": {"_count": 1}, "start": {"_count": 1}, "simply": {"_count": 1}, "not": {"_count": 1}, "Im": {"_count": 1}, "only": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}}, "also": {"_count": 3, "need": {"_count": 1}, "know": {"_count": 1}, "had": {"_count": 1}}, "turn": {"_count": 4, "into": {"_count": 1}, "instead": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 1}}, "still": {"_count": 6, "havent": {"_count": 2}, "want": {"_count": 1}, "learned": {"_count": 1}, "dont": {"_count": 1}, "doing": {"_count": 1}}, "look": {"_count": 2, "at": {"_count": 1}, "upon": {"_count": 1}}, "spiders": {"_count": 1, "fear": {"_count": 1}}, "teachers": {"_count": 2, "have": {"_count": 1}, "are": {"_count": 1}}, "arrived": {"_count": 5, "here": {"_count": 2}, "downstairs": {"_count": 1}, "werent": {"_count": 1}, "at": {"_count": 1}}, "truly": {"_count": 1, "are": {"_count": 1}}, "Ern": {"_count": 2, "": {"_count": 2}}, "beg": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "bought": {"_count": 1, "two": {"_count": 1}}, "went": {"_count": 5, "to": {"_count": 2}, "you": {"_count": 1}, "wrong": {"_count": 1}, "back": {"_count": 1}}, "said": {"_count": 4, "we": {"_count": 1}, "Dumbledore": {"_count": 1}, "wed": {"_count": 2}}, "caught": {"_count": 2, "him": {"_count": 2}}, "getting": {"_count": 2, "to": {"_count": 1}, "wherever": {"_count": 1}}, "stopping": {"_count": 1, "": {"_count": 1}}, "shall": {"_count": 36, "find": {"_count": 2}, "progress": {"_count": 2}, "discuss": {"_count": 1}, "be": {"_count": 10}, "see": {"_count": 7}, "know": {"_count": 2}, "meet": {"_count": 1}, "resume": {"_count": 1}, "have": {"_count": 1}, "not": {"_count": 2}, "say": {"_count": 1}, "we": {"_count": 1}, "therefore": {"_count": 1}, "cut": {"_count": 1}, "end": {"_count": 1}, "all": {"_count": 1}, "build": {"_count": 1}}, "supposed": {"_count": 12, "to": {"_count": 12}}, "open": {"_count": 2, "our": {"_count": 1}, "it": {"_count": 1}}, "guess": {"_count": 1, "": {"_count": 1}}, "hurried": {"_count": 1, "we": {"_count": 1}}, "proceed": {"_count": 3, "": {"_count": 1}, "if": {"_count": 1}, "to": {"_count": 1}}, "fought": {"_count": 1, "the": {"_count": 1}}, "played": {"_count": 3, "them": {"_count": 1}, "Hufflepuff": {"_count": 1}, "against": {"_count": 1}}, "distinguish": {"_count": 1, "between": {"_count": 1}}, "beat": {"_count": 1, "Ravenclaw": {"_count": 1}}, "who": {"_count": 2, "found": {"_count": 1}, "lost": {"_count": 1}}, "wiped": {"_count": 1, "their": {"_count": 1}}, "hope": {"_count": 2, "to": {"_count": 1}, "hell": {"_count": 1}}, "ask": {"_count": 2, "you": {"_count": 1}, "them": {"_count": 1}}, "lose": {"_count": 5, "this": {"_count": 2}, "them": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}}, "won": {"_count": 5, "and": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "thats": {"_count": 1}}, "carrying": {"_count": 1, "on": {"_count": 1}}, "shouldve": {"_count": 1, "helped": {"_count": 1}}, "shouldntve": {"_count": 1, "done": {"_count": 1}}, "finish": {"_count": 1, "our": {"_count": 1}}, "only": {"_count": 2, "had": {"_count": 1}, "ever": {"_count": 1}}, "sat": {"_count": 2, "down": {"_count": 2}}, "offered": {"_count": 1, "you": {"_count": 1}}, "kill": {"_count": 1, "him": {"_count": 1}}, "would": {"_count": 18, "": {"_count": 2}, "have": {"_count": 3}, "of": {"_count": 1}, "fail": {"_count": 1}, "emerge": {"_count": 1}, "expect": {"_count": 1}, "meet": {"_count": 1}, "do": {"_count": 1}, "prefer": {"_count": 1}, "be": {"_count": 1}, "tell": {"_count": 1}, "like": {"_count": 1}, "never": {"_count": 1}, "urge": {"_count": 1}, "die": {"_count": 1}}, "manage": {"_count": 1, "that": {"_count": 1}}, "steal": {"_count": 1, "him": {"_count": 1}}, "we": {"_count": 1, "just": {"_count": 1}}, "wait": {"_count": 5, "until": {"_count": 2}, "": {"_count": 1}, "for": {"_count": 1}, "Ron": {"_count": 1}}, "mustnt": {"_count": 2, "be": {"_count": 1}, "fight": {"_count": 1}}, "come": {"_count": 7, "back": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "facetoface": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}, "ter": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "called": {"_count": 1, "him": {"_count": 1}}, "loved": {"_count": 1, "ever": {"_count": 1}}, "knows": {"_count": 1, "he": {"_count": 1}}, "retire": {"_count": 1, "Wormtail": {"_count": 1}}, "say": {"_count": 6, "": {"_count": 2}, "a": {"_count": 2}, "something": {"_count": 1}, "goodbye": {"_count": 1}}, "pretend": {"_count": 1, "to": {"_count": 1}}, "wouldnt": {"_count": 6, "be": {"_count": 2}, "have": {"_count": 1}, "want": {"_count": 1}, "oh": {"_count": 1}, "need": {"_count": 1}}, "gave": {"_count": 4, "it": {"_count": 1}, "him": {"_count": 1}, "em": {"_count": 1}, "chase": {"_count": 1}}, "Apparate": {"_count": 1, "too": {"_count": 1}}, "walking": {"_count": 1, "to": {"_count": 1}}, "travel": {"_count": 1, "at": {"_count": 1}}, "use": {"_count": 3, "Portkeys": {"_count": 1}, "the": {"_count": 1}, "if": {"_count": 1}}, "Ced": {"_count": 1, "": {"_count": 1}}, "show": {"_count": 1, "our": {"_count": 1}}, "really": {"_count": 13, "cant": {"_count": 1}, "miss": {"_count": 1}, "did": {"_count": 1}, "dont": {"_count": 1}, "ought": {"_count": 1}, "need": {"_count": 4}, "can": {"_count": 1}, "wanted": {"_count": 2}, "ave": {"_count": 1}}, "don": {"_count": 1, "drown": {"_count": 1}}, "take": {"_count": 6, "and": {"_count": 1}, "these": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}}, "bring": {"_count": 3, "in": {"_count": 1}, "back": {"_count": 2}}, "now": {"_count": 2, "have": {"_count": 1}, "then": {"_count": 1}}, "crack": {"_count": 1, "on": {"_count": 1}}, "start": {"_count": 5, "": {"_count": 1}, "that": {"_count": 1}, "II": {"_count": 1}, "using": {"_count": 1}, "I": {"_count": 1}}, "put": {"_count": 4, "them": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 1}, "on": {"_count": 1}}, "hexed": {"_count": 1, "Within": {"_count": 1}}, "is": {"_count": 4, "free": {"_count": 2}, "already": {"_count": 1}, "getting": {"_count": 1}}, "likes": {"_count": 1, "sir": {"_count": 1}}, "expect": {"_count": 1, "from": {"_count": 1}}, "borrow": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "discussed": {"_count": 2, "is": {"_count": 1}, "said": {"_count": 1}}, "alone": {"_count": 1, "know": {"_count": 1}}, "ave": {"_count": 2, "ice": {"_count": 1}, "choirs": {"_count": 1}}, "eat": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 4, "him": {"_count": 1}, "Mr": {"_count": 1}, "you": {"_count": 2}}, "its": {"_count": 1, "a": {"_count": 1}}, "stayed": {"_count": 2, "behind": {"_count": 1}, "put": {"_count": 1}}, "mightve": {"_count": 1, "got": {"_count": 1}}, "wake": {"_count": 1, "him": {"_count": 1}}, "kidnap": {"_count": 1, "Mrs": {"_count": 1}}, "wrap": {"_count": 1, "up": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "decide": {"_count": 1, "Not": {"_count": 1}}, "pronounce": {"_count": 1, "judgment": {"_count": 1}}, "may": {"_count": 2, "pass": {"_count": 1}, "still": {"_count": 1}}, "leave": {"_count": 3, "him": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 1}}, "crave": {"_count": 1, "to": {"_count": 1}}, "duel": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "dueled": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "remain": {"_count": 2, "Cornelius": {"_count": 1}, "safe": {"_count": 1}}, "asked": {"_count": 2, "for": {"_count": 1}, "ourselves": {"_count": 1}}, "see": {"_count": 3, "you": {"_count": 1}, "what": {"_count": 2}}, "regret": {"_count": 2, "to": {"_count": 2}}, "throw": {"_count": 1, "him": {"_count": 1}}, "die": {"_count": 1, "in": {"_count": 1}}, "wrote": {"_count": 1, "he": {"_count": 1}}, "wondered": {"_count": 1, "said": {"_count": 1}}, "let": {"_count": 2, "it": {"_count": 2}}, "both": {"_count": 8, "tried": {"_count": 1}, "sat": {"_count": 1}, "transform": {"_count": 1}, "know": {"_count": 3}, "felt": {"_count": 1}, "had": {"_count": 1}}, "arrive": {"_count": 1, "in": {"_count": 1}}, "underground": {"_count": 1, "": {"_count": 1}}, "overheard": {"_count": 1, "Mum": {"_count": 1}}, "Molly": {"_count": 1, "": {"_count": 1}}, "belong": {"_count": 1, "to": {"_count": 1}}, "liked": {"_count": 3, "her": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}}, "hear": {"_count": 5, "anyone": {"_count": 1}, "from": {"_count": 3}, "that": {"_count": 1}}, "probably": {"_count": 1, "should": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "exceeded": {"_count": 1, "expectations": {"_count": 1}}, "finished": {"_count": 1, "chapter": {"_count": 1}}, "with": {"_count": 1, "that": {"_count": 1}}, "tell": {"_count": 1, "anyone": {"_count": 1}}, "parade": {"_count": 1, "what": {"_count": 1}}, "well": {"_count": 1, "took": {"_count": 1}}, "stick": {"_count": 2, "this": {"_count": 1}, "out": {"_count": 1}}, "agreed": {"_count": 4, "we": {"_count": 1}, "jus": {"_count": 1}, "there": {"_count": 1}, "wed": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Seers": {"_count": 1, "have": {"_count": 1}}, "generally": {"_count": 1, "display": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "managed": {"_count": 1, "ter": {"_count": 1}}, "reached": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "started": {"_count": 3, "trekkin": {"_count": 1}, "off": {"_count": 1}, "keeping": {"_count": 1}}, "didn": {"_count": 1, "want": {"_count": 1}}, "waited": {"_count": 1, "till": {"_count": 1}}, "wen": {"_count": 3, "down": {"_count": 1}, "not": {"_count": 1}, "through": {"_count": 1}}, "bowed": {"_count": 2, "an": {"_count": 1}, "outta": {"_count": 1}}, "presented": {"_count": 1, "him": {"_count": 1}}, "talked": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 7, "that": {"_count": 1}, "the": {"_count": 1}, "last": {"_count": 1}, "off": {"_count": 1}, "we": {"_count": 1}, "really": {"_count": 1}, "so": {"_count": 1}}, "hadn": {"_count": 2, "bargained": {"_count": 1}, "gone": {"_count": 1}}, "couldn": {"_count": 2, "no": {"_count": 1}, "persuade": {"_count": 1}}, "soon": {"_count": 1, "found": {"_count": 1}}, "crept": {"_count": 1, "outta": {"_count": 1}}, "kep": {"_count": 1, "goin": {"_count": 1}}, "meant": {"_count": 1, "ter": {"_count": 1}}, "definitely": {"_count": 2, "werent": {"_count": 1}, "injured": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "recognize": {"_count": 1, "yet": {"_count": 1}}, "on": {"_count": 1, "now": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "send": {"_count": 1, "a": {"_count": 1}}, "forced": {"_count": 1, "him": {"_count": 1}}, "sent": {"_count": 1, "him": {"_count": 1}}, "reckon": {"_count": 1, "a": {"_count": 1}}, "used": {"_count": 2, "our": {"_count": 1}, "his": {"_count": 1}}, "answered": {"_count": 1, "ourselves": {"_count": 1}}, "weren": {"_count": 1, "goin": {"_count": 1}}, "lit": {"_count": 1, "our": {"_count": 1}}, "bes": {"_count": 1, "jus": {"_count": 1}}, "ge": {"_count": 1, "there": {"_count": 1}}, "split": {"_count": 2, "up": {"_count": 2}}, "warned": {"_count": 1, "you": {"_count": 1}}, "promised": {"_count": 1, "said": {"_count": 1}}, "care": {"_count": 1, "what": {"_count": 1}}, "watched": {"_count": 1, "through": {"_count": 1}}, "force": {"_count": 1, "entry": {"_count": 1}}, "cccant": {"_count": 1, "find": {"_count": 1}}, "arent": {"_count": 2, "Ministry": {"_count": 1}, "doing": {"_count": 1}}, "hoped": {"_count": 1, "youd": {"_count": 1}}, "human": {"_count": 1, "girl": {"_count": 1}}, "There": {"_count": 1, "are": {"_count": 1}}, "torture": {"_count": 1, "the": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "adopted": {"_count": 1, "twelve": {"_count": 1}}, "destroyed": {"_count": 1, "tonight": {"_count": 1}}, "entered": {"_count": 1, "your": {"_count": 1}}, "fools": {"_count": 1, "who": {"_count": 1}}, "report": {"_count": 1, "the": {"_count": 1}}, "happen": {"_count": 1, "to": {"_count": 1}}, "suspect": {"_count": 1, "giant": {"_count": 1}}, "speak": {"_count": 2, "": {"_count": 2}}, "remove": {"_count": 1, "him": {"_count": 1}}, "battled": {"_count": 1, "to": {"_count": 1}}, "assume": {"_count": 1, "that": {"_count": 1}}, "leaving": {"_count": 1, "sir": {"_count": 1}}, "ourselves": {"_count": 1, "have": {"_count": 1}}, "offer": {"_count": 1, "fellow": {"_count": 1}}, "part": {"_count": 4, "": {"_count": 3}, "I": {"_count": 1}}, "but": {"_count": 1, "do": {"_count": 1}}, "fail": {"_count": 1, "": {"_count": 1}}, "ad": {"_count": 1, "a": {"_count": 1}}, "followed": {"_count": 2, "Draco": {"_count": 1}, "him": {"_count": 1}}, "raided": {"_count": 1, "his": {"_count": 1}}, "passed": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "Hagrid": {"_count": 1}}, "visited": {"_count": 1, "Professor": {"_count": 1}}, "hated": {"_count": 1, "his": {"_count": 1}}, "cannot": {"_count": 4, "point": {"_count": 1}, "touch": {"_count": 1}, "guarantee": {"_count": 1}, "enter": {"_count": 1}}, "acquired": {"_count": 1, "it": {"_count": 1}}, "named": {"_count": 1, "him": {"_count": 1}}, "teach": {"_count": 1, "you": {"_count": 1}}, "shouldnt": {"_count": 2, "": {"_count": 1}, "miss": {"_count": 1}}, "share": {"_count": 1, "classes": {"_count": 1}}, "werewolves": {"_count": 1, "deserve": {"_count": 1}}, "appreciate": {"_count": 1, "you": {"_count": 1}}, "straightened": {"_count": 1, "that": {"_count": 1}}, "argued": {"_count": 1, "": {"_count": 1}}, "press": {"_count": 2, "on": {"_count": 2}}, "secure": {"_count": 1, "the": {"_count": 1}}, "accept": {"_count": 2, "Golpalotts": {"_count": 1}, "this": {"_count": 1}}, "imagined": {"_count": 1, "handing": {"_count": 1}}, "pictured": {"_count": 1, "the": {"_count": 1}}, "lost": {"_count": 1, "by": {"_count": 1}}, "burying": {"_count": 1, "him": {"_count": 1}}, "make": {"_count": 2, "some": {"_count": 1}, "the": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "walk": {"_count": 1, "on": {"_count": 1}}, "fear": {"_count": 1, "when": {"_count": 1}}, "patrolled": {"_count": 1, "": {"_count": 1}}, "hit": {"_count": 1, "each": {"_count": 1}}, "intended": {"_count": 1, "to": {"_count": 1}}, "Petunia": {"_count": 1, "Dudley": {"_count": 1}}, "last": {"_count": 1, "watched": {"_count": 1}}, "talk": {"_count": 2, "you": {"_count": 1}, "to": {"_count": 1}}, "run": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}, "broke": {"_count": 2, "out": {"_count": 1}, "into": {"_count": 1}}, "appeared": {"_count": 1, "and": {"_count": 1}}, "miss": {"_count": 1, "it": {"_count": 1}}, "three": {"_count": 1, "dont": {"_count": 1}}, "wreck": {"_count": 1, "the": {"_count": 1}}, "join": {"_count": 1, "you": {"_count": 1}}, "killed": {"_count": 1, "them": {"_count": 1}}, "end": {"_count": 1, "it": {"_count": 1}}, "ran": {"_count": 1, "into": {"_count": 1}}, "skulk": {"_count": 1, "around": {"_count": 1}}, "spend": {"_count": 1, "another": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "Disapparated": {"_count": 1, "Yaxley": {"_count": 1}}, "sure": {"_count": 1, "its": {"_count": 1}}, "work": {"_count": 1, "out": {"_count": 1}}, "please": {"_count": 1, "get": {"_count": 1}}, "build": {"_count": 1, "": {"_count": 1}}, "surely": {"_count": 1, "will": {"_count": 1}}, "looked": {"_count": 1, "": {"_count": 1}}, "inform": {"_count": 1, "our": {"_count": 1}}, "believe": {"_count": 1, "on": {"_count": 1}}, "suggest": {"_count": 1, "that": {"_count": 1}}, "curse": {"_count": 1, "": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "summon": {"_count": 1, "the": {"_count": 1}}, "been": {"_count": 1, "wasting": {"_count": 1}}, "losing": {"_count": 1, "height": {"_count": 1}}, "jump": {"_count": 1, "when": {"_count": 1}}, "ttried": {"_count": 1, "tto": {"_count": 1}}, "grew": {"_count": 2, "up": {"_count": 2}}, "dropped": {"_count": 1, "those": {"_count": 1}}, "heading": {"_count": 1, "straight": {"_count": 1}}, "establish": {"_count": 1, "basic": {"_count": 1}}, "reinforce": {"_count": 1, "it": {"_count": 1}}, "goin": {"_count": 1, "": {"_count": 1}}, "Sort": {"_count": 1, "too": {"_count": 1}}, "exactly": {"_count": 1, "": {"_count": 1}}, "revert": {"_count": 1, "to": {"_count": 1}}, "bashed": {"_count": 1, "them": {"_count": 1}}}, "keep": {"_count": 468, "saying": {"_count": 2, "YouKnowWho": {"_count": 1}, "that": {"_count": 1}}, "their": {"_count": 6, "gold": {"_count": 1}, "voices": {"_count": 1}, "children": {"_count": 1}, "families": {"_count": 1}, "mission": {"_count": 1}, "word": {"_count": 1}}, "safe": {"_count": 2, "cept": {"_count": 1}, "come": {"_count": 1}}, "it": {"_count": 31, "from": {"_count": 1}, "in": {"_count": 5}, "a": {"_count": 1}, "said": {"_count": 1}, "out": {"_count": 2}, "safe": {"_count": 1}, "she": {"_count": 1}, "like": {"_count": 1}, "": {"_count": 3}, "there": {"_count": 1}, "down": {"_count": 2}, "to": {"_count": 1}, "going": {"_count": 1}, "wrapped": {"_count": 1}, "if": {"_count": 1}, "nice": {"_count": 2}, "quiet": {"_count": 1}, "healthy": {"_count": 1}, "hidden": {"_count": 1}, "concealed": {"_count": 1}, "off": {"_count": 1}, "up": {"_count": 1}}, "up": {"_count": 25, "did": {"_count": 1}, "with": {"_count": 13}, "": {"_count": 8}, "said": {"_count": 1}, "Dudleys": {"_count": 1}, "now": {"_count": 1}}, "close": {"_count": 3, "behind": {"_count": 2}, "on": {"_count": 1}}, "Harry": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "the": {"_count": 18, "rest": {"_count": 1}, "Bludgers": {"_count": 1}, "fear": {"_count": 1}, "school": {"_count": 1}, "name": {"_count": 1}, "prisoners": {"_count": 1}, "fire": {"_count": 1}, "real": {"_count": 1}, "rain": {"_count": 1}, "timing": {"_count": 1}, "conversation": {"_count": 1}, "peace": {"_count": 1}, "Death": {"_count": 1}, "objects": {"_count": 1}, "plea": {"_count": 1}, "secret": {"_count": 1}, "Cloak": {"_count": 1}, "Elder": {"_count": 1}}, "me": {"_count": 9, "mouth": {"_count": 1}, "company": {"_count": 1}, "posted": {"_count": 1}, "in": {"_count": 2}, "too": {"_count": 1}, "there": {"_count": 2}, "": {"_count": 1}}, "forgettin": {"_count": 1, "how": {"_count": 1}}, "things": {"_count": 1, "friendly": {"_count": 1}}, "your": {"_count": 25, "hair": {"_count": 1}, "bowlers": {"_count": 1}, "noses": {"_count": 1}, "eyes": {"_count": 2}, "mouth": {"_count": 3}, "elbows": {"_count": 1}, "wand": {"_count": 2}, "minds": {"_count": 1}, "nose": {"_count": 1}, "mind": {"_count": 1}, "voice": {"_count": 3}, "voices": {"_count": 2}, "head": {"_count": 2}, "temper": {"_count": 1}, "Invisibility": {"_count": 1}, "work": {"_count": 1}, "trap": {"_count": 1}}, "his": {"_count": 34, "eyes": {"_count": 2}, "feet": {"_count": 1}, "head": {"_count": 1}, "voice": {"_count": 12}, "face": {"_count": 4}, "mind": {"_count": 4}, "abnormally": {"_count": 1}, "arms": {"_count": 1}, "expression": {"_count": 1}, "own": {"_count": 1}, "room": {"_count": 1}, "secrets": {"_count": 1}, "wand": {"_count": 1}, "thoughts": {"_count": 1}, "cover": {"_count": 1}, "temper": {"_count": 1}}, "looking": {"_count": 6, "straight": {"_count": 1}, "while": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}, "out": {"_count": 1}}, "a": {"_count": 25, "hold": {"_count": 2}, "closer": {"_count": 1}, "stack": {"_count": 1}, "civil": {"_count": 1}, "close": {"_count": 3}, "straight": {"_count": 1}, "tight": {"_count": 1}, "werewolf": {"_count": 1}, "lookout": {"_count": 5}, "clear": {"_count": 1}, "cool": {"_count": 2}, "watch": {"_count": 1}, "note": {"_count": 2}, "secret": {"_count": 1}, "Defense": {"_count": 1}, "few": {"_count": 1}}, "bringing": {"_count": 1, "on": {"_count": 1}}, "eye": {"_count": 1, "contact": {"_count": 1}}, "running": {"_count": 5, "into": {"_count": 1}, "": {"_count": 1}, "arms": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "this": {"_count": 5, "private": {"_count": 1}, "wand": {"_count": 1}, "owl": {"_count": 1}, "said": {"_count": 1}, "up": {"_count": 1}}, "putting": {"_count": 2, "spells": {"_count": 1}, "one": {"_count": 1}}, "him": {"_count": 26, "forever": {"_count": 1}, "asleep": {"_count": 1}, "in": {"_count": 4}, "over": {"_count": 1}, "company": {"_count": 2}, "up": {"_count": 1}, "happy": {"_count": 1}, "posted": {"_count": 1}, "here": {"_count": 1}, "alive": {"_count": 2}, "": {"_count": 2}, "upstairs": {"_count": 1}, "away": {"_count": 1}, "tied": {"_count": 1}, "moving": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}, "from": {"_count": 1}, "Ron": {"_count": 1}, "out": {"_count": 1}}, "em": {"_count": 2, "well": {"_count": 1}, "here": {"_count": 1}}, "ter": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 13, "alive": {"_count": 4}, "": {"_count": 1}, "informed": {"_count": 1}, "posted": {"_count": 2}, "from": {"_count": 1}, "in": {"_count": 1}, "warm": {"_count": 1}, "calm": {"_count": 1}, "know": {"_count": 1}}, "visiting": {"_count": 1, "them": {"_count": 1}}, "an": {"_count": 14, "eye": {"_count": 14}}, "Quirrell": {"_count": 2, "talking": {"_count": 1}, "from": {"_count": 1}}, "hold": {"_count": 2, "of": {"_count": 1}, "on": {"_count": 1}}, "losing": {"_count": 1, "it": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 2, "busy": {"_count": 1}, "in": {"_count": 1}}, "my": {"_count": 7, "head": {"_count": 1}, "mouth": {"_count": 2}, "mind": {"_count": 1}, "powers": {"_count": 1}, "fingers": {"_count": 1}, "word": {"_count": 1}}, "all": {"_count": 2, "our": {"_count": 1}, "the": {"_count": 1}}, "her": {"_count": 15, "word": {"_count": 1}, "voice": {"_count": 1}, "quiet": {"_count": 1}, "mouth": {"_count": 1}, "quill": {"_count": 1}, "big": {"_count": 1}, "eyes": {"_count": 1}, "away": {"_count": 1}, "close": {"_count": 1}, "jewelry": {"_count": 1}, "limbs": {"_count": 1}, "head": {"_count": 1}, "safe": {"_count": 1}, "calm": {"_count": 1}, "": {"_count": 1}}, "Hagrid": {"_count": 2, "and": {"_count": 1}, "or": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "banging": {"_count": 2, "loudly": {"_count": 1}, "on": {"_count": 1}}, "reminding": {"_count": 1, "himself": {"_count": 1}}, "that": {"_count": 6, "cat": {"_count": 1}, "quiet": {"_count": 2}, "information": {"_count": 1}, "one": {"_count": 2}}, "our": {"_count": 3, "focus": {"_count": 1}, "spirits": {"_count": 1}, "eyes": {"_count": 1}}, "them": {"_count": 11, "at": {"_count": 1}, "alive": {"_count": 2}, "healthy": {"_count": 1}, "said": {"_count": 1}, "reading": {"_count": 1}, "safely": {"_count": 1}, "safe": {"_count": 2}, "": {"_count": 1}, "moving": {"_count": 1}}, "himself": {"_count": 3, "standing": {"_count": 1}, "out": {"_count": 1}, "present": {"_count": 1}}, "famous": {"_count": 1, "Harry": {"_count": 1}}, "Scabbers": {"_count": 1, "in": {"_count": 1}}, "themselves": {"_count": 3, "hidden": {"_count": 1}, "out": {"_count": 1}, "concealed": {"_count": 1}}, "still": {"_count": 1, "Ron": {"_count": 1}}, "out": {"_count": 8, "of": {"_count": 5}, "younger": {"_count": 1}, "Vol": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "telling": {"_count": 3, "you": {"_count": 2}, "them": {"_count": 1}}, "in": {"_count": 2, "touch": {"_count": 2}}, "smooth": {"_count": 1, "": {"_count": 1}}, "water": {"_count": 1, "in": {"_count": 1}}, "thundering": {"_count": 1, "up": {"_count": 1}}, "on": {"_count": 2, "top": {"_count": 1}, "the": {"_count": 1}}, "moving": {"_count": 2, "shall": {"_count": 1}, "said": {"_count": 1}}, "sending": {"_count": 2, "Howlers": {"_count": 1}, "me": {"_count": 1}}, "foreign": {"_count": 1, "wizards": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "changing": {"_count": 3, "owls": {"_count": 2}, "locations": {"_count": 1}}, "quiet": {"_count": 3, "an": {"_count": 1}, "": {"_count": 2}}, "yerself": {"_count": 1, "covered": {"_count": 1}}, "practicing": {"_count": 1, "but": {"_count": 1}}, "writing": {"_count": 2, "about": {"_count": 1}, "to": {"_count": 1}}, "those": {"_count": 1, "fangs": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "gabbling": {"_count": 1, "in": {"_count": 1}}, "going": {"_count": 8, "was": {"_count": 1}, "he": {"_count": 1}, "on": {"_count": 1}, "now": {"_count": 1}, "off": {"_count": 1}, "until": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "swimming": {"_count": 1, "his": {"_count": 1}}, "everything": {"_count": 1, "hidden": {"_count": 1}}, "Dobby": {"_count": 1, "out": {"_count": 1}}, "missing": {"_count": 2, "the": {"_count": 1}, "each": {"_count": 1}}, "getting": {"_count": 1, "hit": {"_count": 1}}, "Mr": {"_count": 1, "Crouchs": {"_count": 1}}, "silent": {"_count": 2, "get": {"_count": 1}, "or": {"_count": 1}}, "watch": {"_count": 8, "over": {"_count": 1}, "I": {"_count": 1}, "for": {"_count": 2}, "on": {"_count": 1}, "outside": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "talking": {"_count": 8, "yet": {"_count": 1}, "but": {"_count": 1}, "about": {"_count": 2}, "": {"_count": 2}, "to": {"_count": 1}, "though": {"_count": 1}}, "Rita": {"_count": 1, "quiet": {"_count": 1}}, "walking": {"_count": 1, "": {"_count": 1}}, "flying": {"_count": 3, "dont": {"_count": 1}, "east": {"_count": 1}, "": {"_count": 1}}, "climbing": {"_count": 1, "theres": {"_count": 1}}, "shouting": {"_count": 1, "": {"_count": 1}}, "normal": {"_count": 1, "conversation": {"_count": 1}}, "slipping": {"_count": 1, "in": {"_count": 1}}, "eating": {"_count": 1, "his": {"_count": 1}}, "calling": {"_count": 1, "in": {"_count": 1}}, "examining": {"_count": 1, "his": {"_count": 1}}, "pace": {"_count": 1, "with": {"_count": 1}}, "bleeding": {"_count": 1, "till": {"_count": 1}}, "track": {"_count": 2, "sometimes": {"_count": 1}, "of": {"_count": 1}}, "healing": {"_count": 1, "as": {"_count": 1}}, "shifting": {"_count": 1, "around": {"_count": 1}}, "playing": {"_count": 1, "wont": {"_count": 1}}, "calm": {"_count": 1, "though": {"_count": 1}}, "taking": {"_count": 2, "a": {"_count": 1}, "essence": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "together": {"_count": 1, "now": {"_count": 1}}, "Sirius": {"_count": 2, "locked": {"_count": 1}, "alive": {"_count": 1}}, "students": {"_count": 1, "away": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "quiet": {"_count": 1}}, "rereading": {"_count": 1, "Dumbledore": {"_count": 1}}, "using": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "asking": {"_count": 2, "questions": {"_count": 1}, "Harry": {"_count": 1}}, "something": {"_count": 2, "else": {"_count": 1}, "that": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 3}}, "ya": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "these": {"_count": 1, "things": {"_count": 1}}, "Slughorn": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "it": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "drinking": {"_count": 4, "even": {"_count": 1}, "": {"_count": 2}, "remember": {"_count": 1}}, "fighting": {"_count": 3, "for": {"_count": 1}, "even": {"_count": 1}, "Harry": {"_count": 1}}, "hushed": {"_count": 1, "up": {"_count": 1}}, "either": {"_count": 1, "of": {"_count": 1}}, "George": {"_count": 1, "on": {"_count": 1}}, "fear": {"_count": 1, "at": {"_count": 1}}, "groping": {"_count": 1, "her": {"_count": 1}}, "Phineas": {"_count": 1, "Nigelluss": {"_count": 1}}, "thinking": {"_count": 1, "it": {"_count": 1}}, "Dumbledore": {"_count": 1, "on": {"_count": 1}}, "any": {"_count": 1, "trace": {"_count": 1}}, "us": {"_count": 3, "talking": {"_count": 2}, "here": {"_count": 1}}, "resisting": {"_count": 1, "": {"_count": 1}}, "Bogrod": {"_count": 1, "from": {"_count": 1}}, "Lily": {"_count": 1, "Potters": {"_count": 1}}, "Ignotuss": {"_count": 1, "present": {"_count": 1}}}, "frightened": {"_count": 93, "of": {"_count": 15, "saying": {"_count": 1}, "": {"_count": 1}, "being": {"_count": 1}, "catching": {"_count": 1}, "him": {"_count": 2}, "Black": {"_count": 1}, "crystal": {"_count": 1}, "heights": {"_count": 1}, "nasty": {"_count": 1}, "pillows": {"_count": 1}, "hurting": {"_count": 1}, "slipping": {"_count": 1}, "death": {"_count": 1}, "dirtying": {"_count": 1}}, "squeak": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 3, "she": {"_count": 1}, "he": {"_count": 1}, "nodded": {"_count": 1}}, "look": {"_count": 6, "and": {"_count": 2}, "at": {"_count": 3}, "from": {"_count": 1}}, "it": {"_count": 1, "might": {"_count": 1}}, "he": {"_count": 2, "might": {"_count": 2}}, "the": {"_count": 3, "Committee": {"_count": 1}, "floor": {"_count": 1}, "balding": {"_count": 1}}, "squeaking": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "death": {"_count": 1}}, "": {"_count": 17, "!": {"_count": 2}, ".": {"_count": 14}, "?": {"_count": 1}}, "shed": {"_count": 1, "been": {"_count": 1}}, "looking": {"_count": 1, "witches": {"_count": 1}}, "than": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "beyond": {"_count": 1, "his": {"_count": 1}}, "yells": {"_count": 1, "of": {"_count": 1}}, "crowd": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "every": {"_count": 1}}, "every": {"_count": 1, "face": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "ever": {"_count": 1}}, "two": {"_count": 1, "elderly": {"_count": 1}}, "and": {"_count": 4, "stole": {"_count": 1}, "pulling": {"_count": 1}, "embarrassed": {"_count": 1}, "Ron": {"_count": 1}}, "into": {"_count": 1, "believing": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "voice": {"_count": 2, "er": {"_count": 1}, "Your": {"_count": 1}}, "yet": {"_count": 1, "determined": {"_count": 1}}, "everybody": {"_count": 1, "is": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "Harry": {"_count": 2, "beyond": {"_count": 1}, "much": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "old": {"_count": 1, "elf": {"_count": 1}}, "or": {"_count": 1, "theyd": {"_count": 1}}, "they": {"_count": 1, "think": {"_count": 1}}, "Oh": {"_count": 1, "come": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "tones": {"_count": 1, "had": {"_count": 1}}, "Bill": {"_count": 1, "jumped": {"_count": 1}}, "began": {"_count": 1, "scampering": {"_count": 1}}, "perhaps": {"_count": 1, "than": {"_count": 1}}, "teenage": {"_count": 1, "boy": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "Voldemorts": {"_count": 243, "name": {"_count": 9, "": {"_count": 5}, "and": {"_count": 1}, "but": {"_count": 1}, "Rita": {"_count": 1}, "spoken": {"_count": 1}}, "power": {"_count": 1, "somehow": {"_count": 1}}, "waiting": {"_count": 1, "in": {"_count": 1}}, "coming": {"_count": 2, "back": {"_count": 2}}, "yells": {"_count": 1, "of": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "attack": {"_count": 1, "but": {"_count": 1}}, "powers": {"_count": 2, "had": {"_count": 1}, "were": {"_count": 1}}, "clutches": {"_count": 1, "for": {"_count": 1}}, "old": {"_count": 2, "school": {"_count": 1}, "supporters": {"_count": 1}}, "curse": {"_count": 2, "instead": {"_count": 1}, "hit": {"_count": 1}}, "righthand": {"_count": 1, "man": {"_count": 1}}, "laughter": {"_count": 1, "before": {"_count": 1}}, "inner": {"_count": 2, "circle": {"_count": 2}}, "supporters": {"_count": 5, "ended": {"_count": 1}, "were": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "been": {"_count": 1, "in": {"_count": 1}}, "servant": {"_count": 1, "was": {"_count": 1}}, "wrath": {"_count": 2, "My": {"_count": 1}, "": {"_count": 1}}, "chair": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "followers": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "supporter": {"_count": 1, "whom": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 1}, ".": {"_count": 5}, "!": {"_count": 1}}, "mark": {"_count": 1, "had": {"_count": 1}}, "signs": {"_count": 1, "up": {"_count": 1}}, "wand": {"_count": 15, "was": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 4}, "began": {"_count": 1}, "tip": {"_count": 1}, "as": {"_count": 1}, "fell": {"_count": 1}, "were": {"_count": 1}, "share": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}}, "powerful": {"_count": 1, "now": {"_count": 1}}, "voice": {"_count": 6, "had": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 2}, "shook": {"_count": 1}}, "downfall": {"_count": 1, "and": {"_count": 1}}, "ascent": {"_count": 1, "to": {"_count": 1}}, "father": {"_count": 5, "grew": {"_count": 1}, "looking": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "whereabouts": {"_count": 1, "after": {"_count": 1}}, "fall": {"_count": 1, "from": {"_count": 1}}, "feet": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "red": {"_count": 3, "eyes": {"_count": 3}}, "lipless": {"_count": 2, "mouth": {"_count": 2}}, "soft": {"_count": 1, "cold": {"_count": 1}}, "long": {"_count": 2, "white": {"_count": 1}, "forefinger": {"_count": 1}}, "dead": {"_count": 1, "victims": {"_count": 1}}, "victims": {"_count": 1, "did": {"_count": 1}}, "scream": {"_count": 2, "of": {"_count": 2}}, "back": {"_count": 5, "Harry": {"_count": 1}, "said": {"_count": 1}, "would": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "speech": {"_count": 1, "to": {"_count": 1}}, "wands": {"_count": 1, "he": {"_count": 1}}, "rebirth": {"_count": 1, "": {"_count": 1}}, "return": {"_count": 4, "such": {"_count": 1}, "we": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "gift": {"_count": 1, "for": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "orders": {"_count": 2, "more": {"_count": 1}, "just": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "anger": {"_count": 2, "would": {"_count": 1}, "throbbed": {"_count": 1}}, "possessing": {"_count": 1, "me": {"_count": 1}}, "thoughts": {"_count": 9, "Im": {"_count": 1}, "or": {"_count": 1}, "because": {"_count": 1}, "to": {"_count": 1}, "had": {"_count": 1}, "pulling": {"_count": 1}, "It": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 1}}, "snake": {"_count": 2, "": {"_count": 1}, "Neville": {"_count": 1}}, "worst": {"_count": 1, "supporters": {"_count": 1}}, "ranks": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "crimes": {"_count": 1}}, "reign": {"_count": 1, "of": {"_count": 1}}, "mood": {"_count": 1, "and": {"_count": 1}}, "capable": {"_count": 1, "of": {"_count": 1}}, "gratitude": {"_count": 1, "Rookwood": {"_count": 1}}, "got": {"_count": 6, "Sirius": {"_count": 3}, "him": {"_count": 1}, "Ollivander": {"_count": 1}, "the": {"_count": 1}}, "jubilation": {"_count": 1, "or": {"_count": 1}}, "duel": {"_count": 1, "": {"_count": 1}}, "trick": {"_count": 1, "if": {"_count": 1}}, "presence": {"_count": 1, "even": {"_count": 1}}, "aim": {"_count": 1, "in": {"_count": 1}}, "assaults": {"_count": 1, "on": {"_count": 1}}, "instructions": {"_count": 1, "had": {"_count": 1}}, "information": {"_count": 1, "about": {"_count": 1}}, "just": {"_count": 1, "a": {"_count": 1}}, "getting": {"_count": 2, "so": {"_count": 1}, "nearer": {"_count": 1}}, "mind": {"_count": 9, "": {"_count": 4}, "without": {"_count": 1}, "as": {"_count": 1}, "had": {"_count": 1}, "again": {"_count": 1}, "that": {"_count": 1}}, "grandfather": {"_count": 1, "yes": {"_count": 1}}, "mother": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 4, "": {"_count": 2}, "life": {"_count": 1}, "to": {"_count": 1}}, "secrets": {"_count": 1, "": {"_count": 1}}, "beginnings": {"_count": 1, "at": {"_count": 1}}, "side": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 4, "moved": {"_count": 1}, "flashed": {"_count": 1}, "": {"_count": 1}, "flash": {"_count": 1}}, "complete": {"_count": 1, "lack": {"_count": 1}}, "lamp": {"_count": 1, "and": {"_count": 1}}, "first": {"_count": 1, "choice": {"_count": 1}}, "handsome": {"_count": 1, "features": {"_count": 1}}, "face": {"_count": 3, "as": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 1}}, "chosen": {"_count": 1, "name": {"_count": 1}}, "hand": {"_count": 3, "had": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}}, "soul": {"_count": 5, "": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "maimed": {"_count": 1}, "was": {"_count": 1}}, "imagination": {"_count": 1, "": {"_count": 1}}, "mystique": {"_count": 1, "I": {"_count": 1}}, "sayso": {"_count": 1, "and": {"_count": 1}}, "world": {"_count": 1, "which": {"_count": 1}}, "Horcruxes": {"_count": 1, "and": {"_count": 1}}, "employ": {"_count": 1, "on": {"_count": 1}}, "obstacles": {"_count": 1, "that": {"_count": 1}}, "boat": {"_count": 1, "": {"_count": 1}}, "mistake": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "shattered": {"_count": 1, "soul": {"_count": 1}}, "shoulders": {"_count": 1, "its": {"_count": 1}}, "job": {"_count": 1, "": {"_count": 1}}, "Killing": {"_count": 1, "Curse": {"_count": 1}}, "keeping": {"_count": 1, "a": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "taken": {"_count": 1, "over": {"_count": 1}}, "press": {"_count": 1, "clippings": {"_count": 1}}, "white": {"_count": 1, "snakelike": {"_count": 1}}, "fury": {"_count": 2, "but": {"_count": 1}, "broke": {"_count": 1}}, "high": {"_count": 1, "screams": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "rage": {"_count": 1, "His": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "attacking": {"_count": 1, "because": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "sibilant": {"_count": 1, "sigh": {"_count": 1}}, "tone": {"_count": 1, "was": {"_count": 1}}, "impatience": {"_count": 1, "in": {"_count": 1}}, "intention": {"_count": 1, "became": {"_count": 1}}, "good": {"_count": 1, "books": {"_count": 1}}, "remaining": {"_count": 1, "links": {"_count": 1}}, "path": {"_count": 1, "and": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "last": {"_count": 1}}, "own": {"_count": 1, "deadly": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "victory": {"_count": 1, "": {"_count": 1}}, "command": {"_count": 1, "because": {"_count": 1}}, "Silencing": {"_count": 1, "Charms": {"_count": 1}}, "giants": {"_count": 2, "They": {"_count": 1}, "thestrals": {"_count": 1}}, "mouth": {"_count": 1, "was": {"_count": 1}}, "wouldbe": {"_count": 1, "victims": {"_count": 1}}, "nostrils": {"_count": 1, "flare": {"_count": 1}}, "chest": {"_count": 1, "rose": {"_count": 1}}, "was": {"_count": 1, "suddenly": {"_count": 1}}, "green": {"_count": 1, "jet": {"_count": 1}}, "body": {"_count": 1, "and": {"_count": 1}}}, "sounding": {"_count": 86, "half": {"_count": 1, "exasperated": {"_count": 1}}, "relieved": {"_count": 3, "": {"_count": 1}, "heres": {"_count": 1}, "that": {"_count": 1}}, "sorry": {"_count": 1, "at": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "both": {"_count": 3, "shocked": {"_count": 1}, "stunned": {"_count": 1}, "scared": {"_count": 1}}, "so": {"_count": 1, "delighted": {"_count": 1}}, "quite": {"_count": 1, "delighted": {"_count": 1}}, "stunned": {"_count": 2, "": {"_count": 2}}, "almost": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 2, "usual": {"_count": 1}, "though": {"_count": 1}}, "desperate": {"_count": 2, "": {"_count": 2}}, "worried": {"_count": 3, "": {"_count": 3}}, "surprised": {"_count": 2, "": {"_count": 2}}, "slightly": {"_count": 7, "hysterical": {"_count": 1}, "nervous": {"_count": 1}, "anxious": {"_count": 2}, "guilty": {"_count": 1}, "weary": {"_count": 1}, "harassed": {"_count": 1}}, "puzzled": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "like": {"_count": 1}}, "amused": {"_count": 2, "": {"_count": 2}}, "thoroughly": {"_count": 4, "relieved": {"_count": 1}, "confused": {"_count": 1}, "exasperated": {"_count": 1}, "unconvinced": {"_count": 1}}, "outraged": {"_count": 1, "": {"_count": 1}}, "highly": {"_count": 1, "disbelieving": {"_count": 1}}, "thunderstruck": {"_count": 1, "": {"_count": 1}}, "revolted": {"_count": 2, "": {"_count": 2}}, "definitely": {"_count": 1, "irritated": {"_count": 1}}, "much": {"_count": 2, "more": {"_count": 1}, "angrier": {"_count": 1}}, "exasperated": {"_count": 1, "and": {"_count": 1}}, "hearty": {"_count": 1, "": {"_count": 1}}, "reassured": {"_count": 1, "but": {"_count": 1}}, "amazed": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "people": {"_count": 1}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "apprehensive": {"_count": 1, "": {"_count": 1}}, "squeamish": {"_count": 1, "": {"_count": 1}}, "tearful": {"_count": 1, "again": {"_count": 1}}, "aggravated": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "little": {"_count": 2}}, "breathless": {"_count": 1, "": {"_count": 1}}, "aghast": {"_count": 1, "": {"_count": 1}}, "cold": {"_count": 1, "and": {"_count": 1}}, "awestruck": {"_count": 1, "at": {"_count": 1}}, "scared": {"_count": 1, "": {"_count": 1}}, "callously": {"_count": 1, "amused": {"_count": 1}}, "shocked": {"_count": 3, "": {"_count": 3}}, "close": {"_count": 1, "to": {"_count": 1}}, "unnerved": {"_count": 1, "": {"_count": 1}}, "perplexed": {"_count": 1, "": {"_count": 1}}, "maliciously": {"_count": 1, "delighted": {"_count": 1}}, "bitter": {"_count": 1, "for": {"_count": 1}}, "resigned": {"_count": 1, "": {"_count": 1}}, "startled": {"_count": 1, "": {"_count": 1}}, "cheerful": {"_count": 1, "and": {"_count": 1}}, "rather": {"_count": 2, "tired": {"_count": 1}, "amused": {"_count": 1}}, "annoyed": {"_count": 1, "": {"_count": 1}}, "impatient": {"_count": 1, "now": {"_count": 1}}, "profoundly": {"_count": 1, "relieved": {"_count": 1}}, "confused": {"_count": 1, "": {"_count": 1}}, "awed": {"_count": 1, "terrified": {"_count": 1}}, "unexpectedly": {"_count": 1, "rancorous": {"_count": 1}}, "frightened": {"_count": 1, "": {"_count": 1}}, "mildly": {"_count": 1, "interested": {"_count": 1}}, "immensely": {"_count": 1, "relieved": {"_count": 1}}}, "exasperated": {"_count": 18, "half": {"_count": 1, "admiring": {"_count": 1}}, "Harry": {"_count": 1, "sounded": {"_count": 1}}, "as": {"_count": 2, "one": {"_count": 1}, "Hermione": {"_count": 1}}, "looks": {"_count": 2, "but": {"_count": 1}, "they": {"_count": 1}}, "voice": {"_count": 4, "but": {"_count": 2}, "as": {"_count": 1}, "there": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 2, "she": {"_count": 1}, "angry": {"_count": 1}}, "youll": {"_count": 1, "read": {"_count": 1}}, "The": {"_count": 1, "expression": {"_count": 1}}}, "admiring": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "whoop": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 2, "cloak": {"_count": 1}, "brooms": {"_count": 1}}, "it": {"_count": 1, "from": {"_count": 1}}, "her": {"_count": 1, "spellwork": {"_count": 1}}, "looks": {"_count": 2, "": {"_count": 2}}, "Deaths": {"_count": 1, "gifts": {"_count": 1}}}, "youre": {"_count": 599, "different": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 12, "only": {"_count": 1}, "Gryffindor": {"_count": 1}, "best": {"_count": 2}, "Minister": {"_count": 1}, "underdog": {"_count": 1}, "one": {"_count": 2}, "door": {"_count": 1}, "the": {"_count": 1}, "new": {"_count": 1}, "Captain": {"_count": 1}}, "too": {"_count": 7, "well": {"_count": 1}, "young": {"_count": 2}, "immature": {"_count": 1}, "gutless": {"_count": 1}, "He": {"_count": 1}, "late": {"_count": 1}}, "going": {"_count": 51, "to": {"_count": 41}, "and": {"_count": 1}, "And": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 3}, "back": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}}, "here": {"_count": 14, "of": {"_count": 1}, "": {"_count": 6}, "Harry": {"_count": 3}, "unless": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}, "Potter": {"_count": 1}}, "right": {"_count": 13, "of": {"_count": 1}, "said": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 5}, "Shacklebolt": {"_count": 1}, "Hermione": {"_count": 1}, "she": {"_count": 1}}, "really": {"_count": 5, "getting": {"_count": 1}, "famous": {"_count": 1}, "up": {"_count": 1}, "lucky": {"_count": 1}, "depressed": {"_count": 1}}, "well": {"_count": 2, "": {"_count": 2}}, "nervous": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 18, "Modern": {"_count": 1}, "enough": {"_count": 1}, "the": {"_count": 3}, "there": {"_count": 3}, "luck": {"_count": 1}, "bed": {"_count": 1}, "class": {"_count": 1}, "a": {"_count": 2}, "said": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 1}, "here": {"_count": 1}, "hiding": {"_count": 1}}, "a": {"_count": 23, "bit": {"_count": 2}, "great": {"_count": 1}, "wonderful": {"_count": 1}, "useful": {"_count": 1}, "girl": {"_count": 1}, "big": {"_count": 1}, "witch": {"_count": 2}, "Squib": {"_count": 1}, "good": {"_count": 1}, "standing": {"_count": 1}, "nutcase": {"_count": 1}, "lifesaver": {"_count": 1}, "real": {"_count": 1}, "Mudblood": {"_count": 1}, "prefect": {"_count": 1}, "werewolf": {"_count": 1}, "waste": {"_count": 1}, "bunch": {"_count": 1}, "genius": {"_count": 1}, "Muggle": {"_count": 1}, "kid": {"_count": 1}}, "very": {"_count": 4, "nervous": {"_count": 1}, "good": {"_count": 1}, "confused": {"_count": 1}, "pretty": {"_count": 1}}, "sure": {"_count": 6, "better": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}, "theyre": {"_count": 1}, "dear": {"_count": 1}, "are": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "training": {"_count": 1, "hard": {"_count": 1}}, "back": {"_count": 6, "on": {"_count": 2}, "to": {"_count": 1}, "so": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}}, "my": {"_count": 5, "second": {"_count": 1}, "Captain": {"_count": 1}, "best": {"_count": 2}, "sisterinlaw": {"_count": 1}}, "caught": {"_count": 1, "and": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 1}, "my": {"_count": 1}, "about": {"_count": 1}, "probation": {"_count": 1}, "form": {"_count": 2}}, "so": {"_count": 8, "But": {"_count": 1}, "clever": {"_count": 1}, "good": {"_count": 1}, "narrowminded": {"_count": 1}, "naive": {"_count": 1}, "talented": {"_count": 1}, "tired": {"_count": 1}, "angry": {"_count": 1}}, "pleased": {"_count": 1, "with": {"_count": 1}}, "not": {"_count": 74, "hurt": {"_count": 1}, "family": {"_count": 1}, "sitting": {"_count": 1}, "to": {"_count": 2}, "supposed": {"_count": 3}, "scared": {"_count": 1}, "said": {"_count": 4}, "dangerous": {"_count": 1}, "missing": {"_count": 1}, "going": {"_count": 7}, "of": {"_count": 2}, "": {"_count": 4}, "exactly": {"_count": 1}, "feeling": {"_count": 1}, "allowed": {"_count": 2}, "endangering": {"_count": 1}, "bringing": {"_count": 1}, "in": {"_count": 4}, "the": {"_count": 3}, "covered": {"_count": 1}, "sure": {"_count": 1}, "giving": {"_count": 1}, "covering": {"_count": 1}, "good": {"_count": 1}, "a": {"_count": 3}, "well": {"_count": 1}, "seeing": {"_count": 1}, "watching": {"_count": 2}, "telling": {"_count": 1}, "she": {"_count": 1}, "at": {"_count": 4}, "coming": {"_count": 1}, "involved": {"_count": 1}, "They": {"_count": 1}, "aware": {"_count": 1}, "either": {"_count": 1}, "resigning": {"_count": 1}, "careful": {"_count": 1}, "\u2018the": {"_count": 1}, "dead": {"_count": 1}, "leaving": {"_count": 1}, "thinking": {"_count": 2}, "even": {"_count": 1}, "down": {"_count": 1}, "sorry": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "thinking": {"_count": 7, "about": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 2}, "said": {"_count": 2}, "of": {"_count": 1}}, "ill": {"_count": 1, "said": {"_count": 1}}, "up": {"_count": 6, "to": {"_count": 4}, "against": {"_count": 2}}, "harder": {"_count": 1, "to": {"_count": 1}}, "doing": {"_count": 23, "": {"_count": 13}, "if": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 1}, "you": {"_count": 1}, "is": {"_count": 1}, "anything": {"_count": 1}, "a": {"_count": 1}, "what": {"_count": 1}, "Im": {"_count": 1}, "in": {"_count": 1}}, "there": {"_count": 3, "even": {"_count": 1}, "\u2018I": {"_count": 1}, "this": {"_count": 1}}, "invisible": {"_count": 1, "forgive": {"_count": 1}}, "eating": {"_count": 1, "": {"_count": 1}}, "Mugglesl": {"_count": 1, "said": {"_count": 1}}, "changing": {"_count": 2, "Muggle": {"_count": 1}, "into": {"_count": 1}}, "surprised": {"_count": 1, "to": {"_count": 1}}, "expelling": {"_count": 1, "us": {"_count": 1}}, "bleeding": {"_count": 1, "": {"_count": 1}}, "older": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "Granger": {"_count": 1}}, "setting": {"_count": 1, "yourself": {"_count": 1}}, "quite": {"_count": 4, "there": {"_count": 1}, "quite": {"_count": 1}, "right": {"_count": 2}}, "being": {"_count": 5, "a": {"_count": 1}, "disciplined": {"_count": 1}, "tracked": {"_count": 1}, "separated": {"_count": 1}, "really": {"_count": 1}}, "getting": {"_count": 4, "a": {"_count": 1}, "ideas": {"_count": 1}, "all": {"_count": 1}, "warmer": {"_count": 1}}, "But": {"_count": 1, "Colin": {"_count": 1}}, "talking": {"_count": 14, "about": {"_count": 10}, "to": {"_count": 3}, "sense": {"_count": 1}}, "playing": {"_count": 2, "at": {"_count": 2}}, "his": {"_count": 2, "greatgreatgreatgreat": {"_count": 1}, "best": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "wasting": {"_count": 2, "time": {"_count": 1}, "your": {"_count": 1}}, "at": {"_count": 3, "it": {"_count": 3}}, "losing": {"_count": 2, "your": {"_count": 2}}, "running": {"_count": 1, "away": {"_count": 1}}, "hiding": {"_count": 2, "these": {"_count": 1}, "": {"_count": 1}}, "foul": {"_count": 1, "Riddles": {"_count": 1}}, "much": {"_count": 1, "too": {"_count": 1}}, "all": {"_count": 10, "right": {"_count": 5}, "in": {"_count": 1}, "going": {"_count": 1}, "holding": {"_count": 1}, "honorable": {"_count": 1}, "aiming": {"_count": 1}}, "safe": {"_count": 3, "and": {"_count": 1}, "Thatll": {"_count": 1}, "it": {"_count": 1}}, "worrying": {"_count": 1, "about": {"_count": 1}}, "to": {"_count": 4, "be": {"_count": 1}, "come": {"_count": 2}, "go": {"_count": 1}}, "forgetting": {"_count": 1, "Albus": {"_count": 1}}, "dealing": {"_count": 2, "with": {"_count": 2}}, "sucking": {"_count": 1, "them": {"_count": 1}}, "okay": {"_count": 6, "Harry": {"_count": 2}, "and": {"_count": 1}, "the": {"_count": 1}, "here": {"_count": 1}, "Ron": {"_count": 1}}, "good": {"_count": 3, "Hermione": {"_count": 1}, "when": {"_count": 1}, "on": {"_count": 1}}, "putting": {"_count": 3, "it": {"_count": 1}, "your": {"_count": 1}, "too": {"_count": 1}}, "embarrassing": {"_count": 1, "us": {"_count": 1}}, "dreading": {"_count": 1, "it": {"_count": 1}}, "worried": {"_count": 2, "Oliver": {"_count": 1}, "": {"_count": 1}}, "still": {"_count": 7, "the": {"_count": 1}, "on": {"_count": 1}, "swallowing": {"_count": 1}, "here": {"_count": 1}, "not": {"_count": 1}, "wearing": {"_count": 1}, "reading": {"_count": 1}}, "dining": {"_count": 1, "with": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 4}}, "cracking": {"_count": 1, "up": {"_count": 1}}, "wearing": {"_count": 2, "an": {"_count": 1}, "anyway": {"_count": 1}}, "helping": {"_count": 1, "your": {"_count": 1}}, "making": {"_count": 3, "a": {"_count": 1}, "it": {"_count": 1}, "your": {"_count": 1}}, "dead": {"_count": 5, "or": {"_count": 1}, "snapped": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}}, "awake": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "what": {"_count": 1}}, "supposed": {"_count": 11, "to": {"_count": 11}}, "gone": {"_count": 1, "": {"_count": 1}}, "calling": {"_count": 2, "me": {"_count": 1}, "gruesome": {"_count": 1}}, "planning": {"_count": 5, "more": {"_count": 1}, "is": {"_count": 1}, "on": {"_count": 1}, "something": {"_count": 1}, "to": {"_count": 1}}, "writing": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 4, "to": {"_count": 3}, "a": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "strangling": {"_count": 1, "us": {"_count": 1}}, "ruining": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "very": {"_count": 1}}, "facing": {"_count": 1, "it": {"_count": 1}}, "secretary": {"_count": 1, "so": {"_count": 1}}, "allowed": {"_count": 1, "to": {"_count": 1}}, "laughing": {"_count": 1, "it": {"_count": 1}}, "seventeen": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "obliged": {"_count": 1, "": {"_count": 1}}, "bothering": {"_count": 1, "to": {"_count": 1}}, "famous": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "Dumbledore": {"_count": 1}}, "lucky": {"_count": 2, "": {"_count": 1}, "Evans": {"_count": 1}}, "concentrating": {"_count": 1, "really": {"_count": 1}}, "first": {"_count": 1, "just": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "just": {"_count": 7, "being": {"_count": 1}, "some": {"_count": 1}, "cleverer": {"_count": 1}, "an": {"_count": 1}, "going": {"_count": 2}, "getting": {"_count": 1}}, "searching": {"_count": 1, "ponder": {"_count": 1}}, "seen": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 3, "look": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "blackmailing": {"_count": 1, "someone": {"_count": 1}}, "Stunned": {"_count": 1, "you": {"_count": 1}}, "mad": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "kidding": {"_count": 1, "Ron": {"_count": 1}}, "lying": {"_count": 3, "said": {"_count": 1}, "MASTER": {"_count": 1}, "to": {"_count": 1}}, "sleeping": {"_count": 1, "": {"_count": 1}}, "interfering": {"_count": 1, "with": {"_count": 1}}, "this": {"_count": 1, "deluded": {"_count": 1}}, "expelled": {"_count": 2, "then": {"_count": 1}, "obviously": {"_count": 1}}, "complaining": {"_count": 1, "about": {"_count": 1}}, "telling": {"_count": 2, "people": {"_count": 1}, "the": {"_count": 1}}, "only": {"_count": 2, "going": {"_count": 1}, "here": {"_count": 1}}, "you": {"_count": 1, "or": {"_count": 1}}, "packing": {"_count": 1, "": {"_count": 1}}, "growing": {"_count": 1, "": {"_count": 1}}, "terrified": {"_count": 1, "of": {"_count": 1}}, "covering": {"_count": 1, "them": {"_count": 1}}, "therel": {"_count": 1, "She": {"_count": 1}}, "sending": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "really": {"_count": 1}}, "passing": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "agreeing": {"_count": 1, "not": {"_count": 1}}, "squashing": {"_count": 1, "your": {"_count": 1}}, "moving": {"_count": 2, "your": {"_count": 1}, "through": {"_count": 1}}, "reading": {"_count": 1, "YouKnowWhos": {"_count": 1}}, "counting": {"_count": 1, "the": {"_count": 1}}, "carrying": {"_count": 1, "them": {"_count": 1}}, "ready": {"_count": 1, "she": {"_count": 1}}, "coming": {"_count": 2, "too": {"_count": 1}, "to": {"_count": 1}}, "blaming": {"_count": 1, "yourself": {"_count": 1}}, "seeing": {"_count": 1, "the": {"_count": 1}}, "taking": {"_count": 5, "it": {"_count": 2}, "her": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "using": {"_count": 1, "these": {"_count": 1}}, "cured": {"_count": 1, "": {"_count": 1}}, "ugly": {"_count": 1, "said": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "off": {"_count": 2, "your": {"_count": 1}, "doing": {"_count": 1}}, "barking": {"_count": 1, "said": {"_count": 1}}, "wrong": {"_count": 1, "there": {"_count": 1}}, "free": {"_count": 2, "to": {"_count": 2}}, "bored": {"_count": 1, "you": {"_count": 1}}, "funny": {"_count": 1, "she": {"_count": 1}}, "absolutely": {"_count": 1, "sure": {"_count": 1}}, "averaging": {"_count": 1, "\u2018Acceptable": {"_count": 1}}, "prepared": {"_count": 3, "to": {"_count": 3}}, "shocked": {"_count": 1, "Potter": {"_count": 1}}, "including": {"_count": 1, "yourself": {"_count": 1}}, "bedder": {"_count": 1, "at": {"_count": 1}}, "saying": {"_count": 3, "said": {"_count": 1}, "Wakanda": {"_count": 1}, "": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "cutting": {"_count": 1, "it": {"_count": 1}}, "suggesting": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 1, "": {"_count": 1}}, "late": {"_count": 1, "MetamorphMedals": {"_count": 1}}, "sticking": {"_count": 1, "that": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "nicking": {"_count": 1, "": {"_count": 1}}, "giving": {"_count": 1, "the": {"_count": 1}}, "already": {"_count": 1, "dead": {"_count": 1}}, "keeping": {"_count": 1, "up": {"_count": 1}}, "holding": {"_count": 2, "Potter": {"_count": 2}}, "interested": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "isnt": {"_count": 1}}, "winning": {"_count": 1, "the": {"_count": 1}}, "underage": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 2, "your": {"_count": 1}, "James": {"_count": 1}}, "forbidden": {"_count": 2, "to": {"_count": 2}}, "after": {"_count": 1, "Tom": {"_count": 1}}, "asking": {"_count": 2, "a": {"_count": 1}, "me": {"_count": 1}}, "angry": {"_count": 1, "go": {"_count": 1}}, "never": {"_count": 1, "going": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "dressed": {"_count": 1, "theres": {"_count": 1}}, "with": {"_count": 3, "Remus": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}}, "shouting": {"_count": 1, "at": {"_count": 1}}, "aiming": {"_count": 1, "at": {"_count": 1}}, "married": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "a": {"_count": 1}}, "white": {"_count": 1, "as": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 1}, "stress": {"_count": 1}}, "falling": {"_count": 1, "asleep": {"_count": 1}}, "obviously": {"_count": 1, "exhausted": {"_count": 1}}, "sorry": {"_count": 1, "": {"_count": 1}}, "hard": {"_count": 1, "enough": {"_count": 1}}, "think": {"_count": 1, "Well": {"_count": 1}}, "related": {"_count": 1, "to": {"_count": 1}}, "happy": {"_count": 1, "now": {"_count": 1}}, "fighting": {"_count": 1, "too": {"_count": 1}}, "tired": {"_count": 1, "arent": {"_count": 1}}, "eleven": {"_count": 1, "he": {"_count": 1}}, "Muggleborn": {"_count": 1, "so": {"_count": 1}}, "neither": {"_count": 1, "": {"_count": 1}}, "hanging": {"_count": 1, "round": {"_count": 1}}}, "Everyone": {"_count": 97, "knows": {"_count": 4, "youre": {"_count": 1}, "thats": {"_count": 1}, "that": {"_count": 1}, "youve": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 11, "looking": {"_count": 3}, "silent": {"_count": 1}, "eating": {"_count": 1}, "staring": {"_count": 4}, "laughing": {"_count": 1}, "trying": {"_count": 1}}, "says": {"_count": 3, "Hufflepuff": {"_count": 1}, "so": {"_count": 1}, "I": {"_count": 1}}, "thinks": {"_count": 2, "Im": {"_count": 1}, "hes": {"_count": 1}}, "starts": {"_count": 1, "at": {"_count": 1}}, "expects": {"_count": 1, "me": {"_count": 1}}, "in": {"_count": 7, "": {"_count": 1}, "the": {"_count": 4}, "this": {"_count": 1}, "heres": {"_count": 1}}, "here": {"_count": 4, "": {"_count": 3}, "seemed": {"_count": 1}}, "pick": {"_count": 1, "their": {"_count": 1}}, "from": {"_count": 2, "wizarding": {"_count": 1}, "the": {"_count": 1}}, "stand": {"_count": 1, "by": {"_count": 1}}, "stopped": {"_count": 1, "talking": {"_count": 1}}, "see": {"_count": 1, "here": {"_count": 1}}, "stared": {"_count": 3, "as": {"_count": 1}, "at": {"_count": 2}}, "fell": {"_count": 1, "over": {"_count": 1}}, "take": {"_count": 1, "a": {"_count": 1}}, "traipsed": {"_count": 1, "back": {"_count": 1}}, "filed": {"_count": 1, "out": {"_count": 1}}, "line": {"_count": 1, "up": {"_count": 1}}, "thought": {"_count": 5, "was": {"_count": 1}, "you": {"_count": 1}, "Sirius": {"_count": 1}, "it": {"_count": 2}}, "looked": {"_count": 3, "up": {"_count": 1}, "quickly": {"_count": 1}, "at": {"_count": 1}}, "except": {"_count": 1, "Percy": {"_count": 1}}, "got": {"_count": 1, "quiet": {"_count": 1}}, "went": {"_count": 1, "quiet": {"_count": 1}}, "had": {"_count": 2, "got": {"_count": 1}, "woken": {"_count": 1}}, "gather": {"_count": 2, "round": {"_count": 2}}, "drew": {"_count": 1, "back": {"_count": 1}}, "ready": {"_count": 3, "": {"_count": 2}, "please": {"_count": 1}}, "back": {"_count": 2, "now": {"_count": 1}, "upstairs": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "sat": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "laughed": {"_count": 2, "even": {"_count": 1}, "but": {"_count": 1}}, "wears": {"_count": 1, "them": {"_count": 1}}, "else": {"_count": 2, "seemed": {"_count": 1}, "was": {"_count": 1}}, "watched": {"_count": 2, "waiting": {"_count": 1}, "him": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "believed": {"_count": 1, "her": {"_count": 1}}, "seems": {"_count": 1, "quite": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}, "heard": {"_count": 1, "about": {"_count": 1}}, "lowered": {"_count": 1, "their": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "kept": {"_count": 1, "glancing": {"_count": 1}}, "would": {"_count": 1, "know": {"_count": 1}}, "roused": {"_count": 1, "themselves": {"_count": 1}}, "heres": {"_count": 1, "overage": {"_count": 1}}, "exclaimed": {"_count": 1, "over": {"_count": 1}}, "underage": {"_count": 1, "will": {"_count": 1}}, "who": {"_count": 1, "heard": {"_count": 1}}}, "knows": {"_count": 183, "youre": {"_count": 4, "the": {"_count": 2}, "here": {"_count": 1}, "not": {"_count": 1}}, "why": {"_count": 2, "or": {"_count": 1}, "you": {"_count": 1}}, "nothin": {"_count": 1, "abou": {"_count": 1}}, "his": {"_count": 5, "name": {"_count": 1}, "mommy": {"_count": 1}, "household": {"_count": 1}, "remedies": {"_count": 1}, "stuff": {"_count": 1}}, "Who": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 5, "can": {"_count": 1}, "said": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "hes": {"_count": 3, "after": {"_count": 1}, "friendly": {"_count": 1}, "got": {"_count": 1}}, "that": {"_count": 11, "": {"_count": 5}, "no": {"_count": 1}, "said": {"_count": 1}, "dont": {"_count": 1}, "allowing": {"_count": 1}, "Im": {"_count": 1}, "he": {"_count": 1}}, "I": {"_count": 5, "forget": {"_count": 1}, "could": {"_count": 1}, "exist": {"_count": 1}, "speak": {"_count": 1}, "seek": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "enough": {"_count": 1, "magic": {"_count": 1}}, "how": {"_count": 11, "to": {"_count": 6}, "he": {"_count": 2}, "mean": {"_count": 1}, "close": {"_count": 1}, "many": {"_count": 1}}, "except": {"_count": 1, "me": {"_count": 1}}, "me": {"_count": 2, "now": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 10}, "?": {"_count": 6}, "!": {"_count": 2}}, "more": {"_count": 2, "or": {"_count": 1}, "about": {"_count": 1}}, "it": {"_count": 5, "sir": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 1}, "cant": {"_count": 1}}, "Im": {"_count": 6, "a": {"_count": 2}, "almost": {"_count": 1}, "up": {"_count": 1}, "attacking": {"_count": 1}, "after": {"_count": 1}}, "what": {"_count": 10, "might": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "they": {"_count": 1}, "were": {"_count": 1}, "scumbags": {"_count": 1}, "it": {"_count": 1}, "youre": {"_count": 1}, "hes": {"_count": 1}}, "a": {"_count": 1, "tiny": {"_count": 1}}, "thats": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 3, "about": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "our": {"_count": 1, "password": {"_count": 1}}, "about": {"_count": 8, "all": {"_count": 1}, "Harry": {"_count": 1}, "these": {"_count": 1}, "four": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}, "dont": {"_count": 1}, "his": {"_count": 1}}, "if": {"_count": 1, "my": {"_count": 1}}, "Id": {"_count": 1, "like": {"_count": 1}}, "the": {"_count": 6, "answer": {"_count": 1}, "headmaster": {"_count": 1}, "rule": {"_count": 1}, "position": {"_count": 1}, "perfect": {"_count": 1}, "full": {"_count": 1}}, "yehve": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 6, "are": {"_count": 2}, "dont": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "exist": {"_count": 1}}, "where": {"_count": 5, "it": {"_count": 2}, "hes": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}}, "Dobby": {"_count": 1, "too": {"_count": 1}}, "muttered": {"_count": 1, "Mr": {"_count": 1}}, "she": {"_count": 3, "didnt": {"_count": 1}, "nearly": {"_count": 1}, "was": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "everything": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 4, "wants": {"_count": 1}, "you": {"_count": 2}, "the": {"_count": 1}}, "man": {"_count": 1, "said": {"_count": 1}}, "him": {"_count": 1, "will": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Karkaroff": {"_count": 1, "pretty": {"_count": 1}}, "protected": {"_count": 1, "in": {"_count": 1}}, "full": {"_count": 1, "well": {"_count": 1}}, "Dumbledores": {"_count": 2, "much": {"_count": 1}, "out": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "too": {"_count": 2, "much": {"_count": 2}}, "better": {"_count": 2, "and": {"_count": 1}, "than": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "Mr": {"_count": 1, "Filch": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "not": {"_count": 4, "to": {"_count": 1}, "": {"_count": 1}, "But": {"_count": 1}, "it": {"_count": 1}}, "when": {"_count": 1, "somebody": {"_count": 1}}, "and": {"_count": 3, "that": {"_count": 1}, "hes": {"_count": 1}, "understands": {"_count": 1}}, "its": {"_count": 1, "gone": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 2, "bin": {"_count": 1}, "been": {"_count": 1}}, "your": {"_count": 1, "dad": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "securitys": {"_count": 1, "a": {"_count": 1}}, "nothing": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 1, "stuff": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "theyve": {"_count": 1, "been": {"_count": 1}}}, "Know": {"_count": 29, "oh": {"_count": 1, "all": {"_count": 1}}, "what": {"_count": 4, "House": {"_count": 1}, "": {"_count": 1}, "youre": {"_count": 1}, "it": {"_count": 1}}, "who": {"_count": 3, "he": {"_count": 2}, "you": {"_count": 1}}, "youre": {"_count": 1, "there": {"_count": 1}}, "only": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "Worst": {"_count": 1}}, "Whos": {"_count": 8, "attack": {"_count": 1}, "supporters": {"_count": 1}, "getting": {"_count": 1}, "back": {"_count": 1}, "possessing": {"_count": 1}, "side": {"_count": 1}, "grandfather": {"_count": 1}, "won": {"_count": 1}}, "I": {"_count": 1, "shouldn": {"_count": 1}}, "Who": {"_count": 4, "was": {"_count": 1}, "": {"_count": 1}, "will": {"_count": 1}, "can": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "how": {"_count": 2, "much": {"_count": 1}, "to": {"_count": 1}}}, "oh": {"_count": 113, "all": {"_count": 5, "right": {"_count": 5}}, "no": {"_count": 15, "it": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 2}, "Ive": {"_count": 2}, "its": {"_count": 1}, "oh": {"_count": 1}, "that": {"_count": 1}, "Flint": {"_count": 1}, "not": {"_count": 1}, "I": {"_count": 1}, "here": {"_count": 1}}, "yeah": {"_count": 9, "an": {"_count": 1}, "said": {"_count": 2}, "Keeper": {"_count": 1}, "we": {"_count": 2}, "": {"_count": 3}}, "very": {"_count": 2, "good": {"_count": 2}}, "please": {"_count": 2, "": {"_count": 1}, "make": {"_count": 1}}, "my": {"_count": 7, "goodness": {"_count": 1}, "dear": {"_count": 1}, "word": {"_count": 1}, "poor": {"_count": 3}, "God": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 3}, "!": {"_count": 6}}, "Harry": {"_count": 5, "be": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "look": {"_count": 1}}, "what": {"_count": 4, "have": {"_count": 1}, "is": {"_count": 1}, "would": {"_count": 2}}, "Shut": {"_count": 1, "up": {"_count": 1}}, "I": {"_count": 3, "really": {"_count": 1}, "say": {"_count": 1}, "dont": {"_count": 1}}, "come": {"_count": 3, "on": {"_count": 3}}, "shut": {"_count": 1, "up": {"_count": 1}}, "Gabrielle": {"_count": 1, "I": {"_count": 1}}, "but": {"_count": 1, "of": {"_count": 1}}, "how": {"_count": 2, "ridiculous": {"_count": 1}, "shed": {"_count": 1}}, "just": {"_count": 1, "open": {"_count": 1}}, "whats": {"_count": 1, "Dumbledore": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "the": {"_count": 1, "shame": {"_count": 1}}, "if": {"_count": 1, "my": {"_count": 1}}, "yes": {"_count": 9, "he": {"_count": 3}, "": {"_count": 2}, "Bellatrix": {"_count": 1}, "Kreacher": {"_count": 1}, "and": {"_count": 1}, "hes": {"_count": 1}}, "dear": {"_count": 1, "whats": {"_count": 1}}, "Ronnie": {"_count": 1, "Fred": {"_count": 1}}, "oh": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "always": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "for": {"_count": 3, "heavens": {"_count": 3}}, "dont": {"_count": 1, "be": {"_count": 1}}, "look": {"_count": 2, "this": {"_count": 1}, "hes": {"_count": 1}}, "right": {"_count": 1, "said": {"_count": 1}}, "sorry": {"_count": 3, "Marietta": {"_count": 1}, "Malfoy": {"_count": 1}, "Runcorn": {"_count": 1}}, "who": {"_count": 1, "cares": {"_count": 1}}, "Hagrid": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "tha": {"_count": 1, "was": {"_count": 1}}, "its": {"_count": 3, "not": {"_count": 1}, "so": {"_count": 1}, "all": {"_count": 1}}, "Mrs": {"_count": 1, "Longbottom": {"_count": 1}}, "get": {"_count": 1, "a": {"_count": 1}}, "Id": {"_count": 1, "love": {"_count": 1}}, "Severus": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "many": {"_count": 1, "years": {"_count": 1}}, "wheres": {"_count": 1, "my": {"_count": 1}}}, "flatter": {"_count": 3, "me": {"_count": 1, "said": {"_count": 1}}, "myself": {"_count": 1, "I": {"_count": 1}}, "box": {"_count": 1, "in": {"_count": 1}}}, "calmly": {"_count": 79, "": {"_count": 41, ".": {"_count": 40}, "?": {"_count": 1}}, "but": {"_count": 2, "pulling": {"_count": 1}, "you": {"_count": 1}}, "as": {"_count": 5, "though": {"_count": 3}, "he": {"_count": 1}, "Fudge": {"_count": 1}}, "because": {"_count": 2, "Lord": {"_count": 1}, "a": {"_count": 1}}, "up": {"_count": 1, "into": {"_count": 1}}, "Divination": {"_count": 1, "is": {"_count": 1}}, "and": {"_count": 3, "Peevess": {"_count": 1}, "yet": {"_count": 1}, "do": {"_count": 1}}, "bothering": {"_count": 1, "you": {"_count": 1}}, "bouncing": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "from": {"_count": 1}}, "folding": {"_count": 1, "up": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}, "Theres": {"_count": 1, "nothing": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "Lord": {"_count": 1}}, "I": {"_count": 2, "told": {"_count": 1}, "shall": {"_count": 1}}, "Spread": {"_count": 1, "out": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 1, "human": {"_count": 1}}, "the": {"_count": 1, "slaughter": {"_count": 1}}, "counting": {"_count": 1, "": {"_count": 1}}, "continuing": {"_count": 1, "to": {"_count": 1}}, "leaning": {"_count": 1, "forward": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}, "putting": {"_count": 1, "his": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "euphoric": {"_count": 1, "purpose": {"_count": 1}}, "into": {"_count": 1, "Deaths": {"_count": 1}}}, "powers": {"_count": 56, "I": {"_count": 3, "will": {"_count": 1}, "smoothed": {"_count": 1}, "am": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 9}, "?": {"_count": 1}, "!": {"_count": 2}}, "had": {"_count": 2, "been": {"_count": 1}, "led": {"_count": 1}}, "rival": {"_count": 1, "those": {"_count": 1}}, "Dumbledore": {"_count": 1, "doesnt": {"_count": 1}}, "no": {"_count": 1, "decent": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Potters": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 5, "they": {"_count": 1}, "went": {"_count": 1}, "my": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "were": {"_count": 1, "destroyed": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 3, "Lord": {"_count": 1}, "deduction": {"_count": 1}, "concentration": {"_count": 1}}, "to": {"_count": 3, "you": {"_count": 1}, "kill": {"_count": 1}, "inspect": {"_count": 1}}, "does": {"_count": 1, "he": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "hasnt": {"_count": 1}}, "the": {"_count": 1, "rest": {"_count": 1}}, "gone": {"_count": 1, "his": {"_count": 1}}, "powers": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 2, "you": {"_count": 2}}, "intact": {"_count": 1, "such": {"_count": 1}}, "are": {"_count": 1, "needed": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "can": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "its": {"_count": 1, "supposed": {"_count": 1}}, "attributed": {"_count": 1, "to": {"_count": 1}}, "remain": {"_count": 1, "intact": {"_count": 1}}, "will": {"_count": 1, "register": {"_count": 1}}}, "will": {"_count": 1309, "never": {"_count": 14, "have": {"_count": 2}, "understand": {"_count": 1}, "get": {"_count": 1}, "forget": {"_count": 2}, "set": {"_count": 1}, "say": {"_count": 1}, "employ": {"_count": 1}, "rest": {"_count": 1}, "ever": {"_count": 1}, "know": {"_count": 1}, "touch": {"_count": 1}, "realizing": {"_count": 1}}, "be": {"_count": 333, "able": {"_count": 31}, "books": {"_count": 1}, "one": {"_count": 2}, "enough": {"_count": 2}, "reaching": {"_count": 1}, "taken": {"_count": 5}, "sorted": {"_count": 1}, "something": {"_count": 2}, "a": {"_count": 9}, "held": {"_count": 2}, "informed": {"_count": 1}, "moved": {"_count": 1}, "to": {"_count": 3}, "quicker": {"_count": 1}, "back": {"_count": 3}, "expelled": {"_count": 4}, "in": {"_count": 13}, "most": {"_count": 2}, "": {"_count": 3}, "here": {"_count": 6}, "an": {"_count": 4}, "signing": {"_count": 1}, "taking": {"_count": 5}, "writing": {"_count": 1}, "for": {"_count": 3}, "polishing": {"_count": 1}, "helping": {"_count": 1}, "my": {"_count": 1}, "coming": {"_count": 2}, "very": {"_count": 3}, "painful": {"_count": 1}, "aiming": {"_count": 2}, "useless": {"_count": 1}, "roving": {"_count": 1}, "safer": {"_count": 1}, "escorted": {"_count": 1}, "no": {"_count": 11}, "closed": {"_count": 1}, "\u2018It": {"_count": 1}, "ready": {"_count": 2}, "all": {"_count": 3}, "waking": {"_count": 1}, "proud": {"_count": 1}, "spending": {"_count": 2}, "your": {"_count": 3}, "now": {"_count": 1}, "pleased": {"_count": 5}, "keeping": {"_count": 1}, "sleeping": {"_count": 1}, "perfectly": {"_count": 2}, "filled": {"_count": 1}, "covering": {"_count": 1}, "devoted": {"_count": 1}, "disrupted": {"_count": 1}, "dying": {"_count": 1}, "forced": {"_count": 1}, "fifty": {"_count": 1}, "sucked": {"_count": 1}, "patrolling": {"_count": 1}, "lifted": {"_count": 2}, "the": {"_count": 4}, "after": {"_count": 1}, "best": {"_count": 3}, "performing": {"_count": 1}, "too": {"_count": 2}, "worse": {"_count": 1}, "better": {"_count": 2}, "performed": {"_count": 1}, "on": {"_count": 1}, "obsessed": {"_count": 1}, "effective": {"_count": 1}, "punished": {"_count": 2}, "rumors": {"_count": 1}, "starting": {"_count": 1}, "arriving": {"_count": 5}, "allowed": {"_count": 2}, "said": {"_count": 1}, "delighted": {"_count": 5}, "well": {"_count": 1}, "attended": {"_count": 1}, "both": {"_count": 1}, "officially": {"_count": 1}, "following": {"_count": 2}, "joining": {"_count": 1}, "three": {"_count": 1}, "marked": {"_count": 1}, "chosen": {"_count": 1}, "placed": {"_count": 2}, "freely": {"_count": 1}, "drawing": {"_count": 1}, "receiving": {"_count": 2}, "Viktor": {"_count": 1}, "selecting": {"_count": 1}, "checking": {"_count": 1}, "open": {"_count": 1}, "worn": {"_count": 1}, "relaxing": {"_count": 1}, "gone": {"_count": 1}, "up": {"_count": 1}, "missed": {"_count": 1}, "notified": {"_count": 1}, "sending": {"_count": 1}, "there": {"_count": 1}, "obstacles": {"_count": 1}, "spells": {"_count": 1}, "attending": {"_count": 1}, "twelve": {"_count": 1}, "returned": {"_count": 1}, "put": {"_count": 1}, "asking": {"_count": 1}, "brave": {"_count": 1}, "foolish": {"_count": 1}, "honored": {"_count": 4}, "killed": {"_count": 1}, "left": {"_count": 3}, "quick": {"_count": 1}, "his": {"_count": 1}, "with": {"_count": 1}, "remaining": {"_count": 1}, "hardpressed": {"_count": 1}, "remembered": {"_count": 1}, "horrified": {"_count": 1}, "welcomed": {"_count": 1}, "okay": {"_count": 1}, "calling": {"_count": 2}, "fine": {"_count": 1}, "given": {"_count": 2}, "making": {"_count": 1}, "stagnation": {"_count": 1}, "retained": {"_count": 1}, "sitting": {"_count": 1}, "mixing": {"_count": 1}, "learning": {"_count": 1}, "more": {"_count": 2}, "during": {"_count": 1}, "prohibited": {"_count": 1}, "tested": {"_count": 1}, "only": {"_count": 1}, "I": {"_count": 2}, "glad": {"_count": 1}, "detention": {"_count": 1}, "ruined": {"_count": 1}, "plenty": {"_count": 1}, "good": {"_count": 2}, "low": {"_count": 1}, "wondering": {"_count": 1}, "formally": {"_count": 1}, "required": {"_count": 1}, "me": {"_count": 1}, "playing": {"_count": 1}, "sent": {"_count": 1}, "under": {"_count": 1}, "born": {"_count": 1}, "delivered": {"_count": 1}, "reunited": {"_count": 1}, "retribution": {"_count": 1}, "Aurors": {"_count": 1}, "much": {"_count": 1}, "lucky": {"_count": 1}, "sorry": {"_count": 1}, "important": {"_count": 1}, "expecting": {"_count": 1}, "wasting": {"_count": 1}, "little": {"_count": 1}, "almost": {"_count": 1}, "exceedingly": {"_count": 1}, "dead": {"_count": 1}, "mortal": {"_count": 1}, "lovely": {"_count": 1}, "satisfied": {"_count": 1}, "used": {"_count": 1}, "mine": {"_count": 2}, "shocks": {"_count": 1}, "seven": {"_count": 1}, "as": {"_count": 1}, "traveling": {"_count": 1}, "next": {"_count": 1}, "disguised": {"_count": 1}, "like": {"_count": 1}, "subjected": {"_count": 1}, "this": {"_count": 2}, "possible": {"_count": 1}, "\u2018MadEye": {"_count": 1}, "forgiv": {"_count": 1}, "pretty": {"_count": 1}, "overseen": {"_count": 1}, "rewarded": {"_count": 1}, "if": {"_count": 1}, "safe": {"_count": 1}, "nice": {"_count": 1}, "slaughtered": {"_count": 1}, "you": {"_count": 1}, "broken": {"_count": 1}}, "know": {"_count": 12, "his": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 2}, "by": {"_count": 1}, "exactly": {"_count": 1}, "all": {"_count": 1}, "several": {"_count": 1}, "unless": {"_count": 1}, "we": {"_count": 1}, "what": {"_count": 1}, "why": {"_count": 1}}, "require": {"_count": 1, "1": {"_count": 1}}, "have": {"_count": 61, "someone": {"_count": 1}, "classes": {"_count": 1}, "but": {"_count": 1}, "me": {"_count": 1}, "to": {"_count": 20}, "them": {"_count": 2}, "no": {"_count": 1}, "a": {"_count": 5}, "it": {"_count": 1}, "changed": {"_count": 1}, "led": {"_count": 1}, "rejoined": {"_count": 1}, "your": {"_count": 2}, "the": {"_count": 2}, "thought": {"_count": 1}, "time": {"_count": 1}, "told": {"_count": 2}, "powers": {"_count": 1}, "seen": {"_count": 3}, "power": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}, "noticed": {"_count": 1}, "improved": {"_count": 1}, "gathered": {"_count": 1}, "been": {"_count": 1}, "sealed": {"_count": 1}, "revealed": {"_count": 1}, "Harry": {"_count": 1}, "come": {"_count": 1}, "arranged": {"_count": 1}, "gained": {"_count": 1}}, "do": {"_count": 36, "he": {"_count": 3}, "Macmillan": {"_count": 1}, "": {"_count": 4}, "Severus": {"_count": 1}, "it": {"_count": 2}, "With": {"_count": 1}, "what": {"_count": 1}, "wont": {"_count": 1}, "the": {"_count": 1}, "better": {"_count": 1}, "said": {"_count": 4}, "to": {"_count": 1}, "your": {"_count": 2}, "she": {"_count": 1}, "Harry": {"_count": 3}, "for": {"_count": 1}, "whatever": {"_count": 2}, "so": {"_count": 1}, "as": {"_count": 1}, "all": {"_count": 2}, "in": {"_count": 1}, "madam": {"_count": 1}}, "take": {"_count": 20, "them": {"_count": 2}, "place": {"_count": 9}, "Harry": {"_count": 2}, "him": {"_count": 1}, "your": {"_count": 1}, "these": {"_count": 1}, "uncommon": {"_count": 1}, "Hogwarts": {"_count": 1}, "over": {"_count": 1}, "groups": {"_count": 1}}, "begin": {"_count": 2, "shortly": {"_count": 1}, "on": {"_count": 1}}, "earn": {"_count": 1, "your": {"_count": 1}}, "lose": {"_count": 2, "House": {"_count": 1}, "my": {"_count": 1}}, "tell": {"_count": 5, "you": {"_count": 3}, "me": {"_count": 1}, "your": {"_count": 1}}, "put": {"_count": 4, "on": {"_count": 2}, "the": {"_count": 1}, "up": {"_count": 1}}, "help": {"_count": 4, "you": {"_count": 3}, "protect": {"_count": 1}}, "learn": {"_count": 1, "at": {"_count": 1}}, "leave": {"_count": 8, "and": {"_count": 1}, "from": {"_count": 2}, "us": {"_count": 2}, "the": {"_count": 2}, "you": {"_count": 1}}, "hardly": {"_count": 1, "believe": {"_count": 1}}, "really": {"_count": 2, "understand": {"_count": 1}, "regret": {"_count": 1}}, "save": {"_count": 3, "you": {"_count": 2}, "tedious": {"_count": 1}}, "meet": {"_count": 2, "you": {"_count": 1}, "your": {"_count": 1}}, "notice": {"_count": 2, "if": {"_count": 1}, "said": {"_count": 1}}, "you": {"_count": 56, "learn": {"_count": 1}, "please": {"_count": 4}, "": {"_count": 21}, "Harry": {"_count": 1}, "listen": {"_count": 1}, "in": {"_count": 1}, "while": {"_count": 1}, "shut": {"_count": 2}, "go": {"_count": 3}, "give": {"_count": 2}, "move": {"_count": 1}, "not": {"_count": 1}, "have": {"_count": 1}, "come": {"_count": 2}, "tell": {"_count": 1}, "ever": {"_count": 1}, "swear": {"_count": 1}, "to": {"_count": 1}, "carry": {"_count": 1}, "be": {"_count": 2}, "find": {"_count": 1}, "get": {"_count": 1}, "theres": {"_count": 1}, "stop": {"_count": 1}, "pay": {"_count": 1}, "do": {"_count": 1}, "lot": {"_count": 1}}, "keep": {"_count": 4, "looking": {"_count": 1}, "you": {"_count": 2}, "out": {"_count": 1}}, "give": {"_count": 15, "us": {"_count": 2}, "you": {"_count": 6}, "them": {"_count": 2}, "your": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}, "me": {"_count": 1}}, "now": {"_count": 3, "be": {"_count": 2}, "divide": {"_count": 1}}, "insist": {"_count": 1, "on": {"_count": 1}}, "transform": {"_count": 1, "any": {"_count": 1}}, "make": {"_count": 27, "the": {"_count": 4}, "all": {"_count": 1}, "sure": {"_count": 3}, "much": {"_count": 2}, "everything": {"_count": 2}, "you": {"_count": 2}, "your": {"_count": 2}, "no": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 2}, "quite": {"_count": 1}, "any": {"_count": 1}, "a": {"_count": 3}, "him": {"_count": 1}, "zings": {"_count": 1}}, "think": {"_count": 4, "Im": {"_count": 1}, "youre": {"_count": 1}, "Hagrid": {"_count": 1}, "any": {"_count": 1}}, "receive": {"_count": 6, "detentions": {"_count": 1}, "information": {"_count": 1}, "full": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}, "private": {"_count": 1}}, "bring": {"_count": 2, "you": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "mean": {"_count": 3, "you": {"_count": 1}, "a": {"_count": 2}}, "play": {"_count": 3, "Quidditch": {"_count": 1}, "": {"_count": 1}, "no": {"_count": 1}}, "get": {"_count": 11, "a": {"_count": 3}, "us": {"_count": 4}, "you": {"_count": 1}, "some": {"_count": 1}, "far": {"_count": 1}, "the": {"_count": 1}}, "personally": {"_count": 2, "make": {"_count": 1}, "be": {"_count": 1}}, "it": {"_count": 14, "cover": {"_count": 1}, "take": {"_count": 1}, "do": {"_count": 1}, "be": {"_count": 3}, "": {"_count": 6}, "Potter": {"_count": 1}, "really": {"_count": 1}}, "sir": {"_count": 1, "I": {"_count": 1}}, "said": {"_count": 19, "Peeves": {"_count": 1}, "Harry": {"_count": 6}, "Uncle": {"_count": 1}, "Lockhart": {"_count": 1}, "Lupin": {"_count": 1}, "Ron": {"_count": 3}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 3}, "Hermione": {"_count": 2}}, "let": {"_count": 5, "you": {"_count": 3}, "us": {"_count": 1}, "me": {"_count": 1}}, "transport": {"_count": 1, "the": {"_count": 1}}, "always": {"_count": 7, "find": {"_count": 1}, "be": {"_count": 5}, "choose": {"_count": 1}}, "we": {"_count": 5, "wont": {"_count": 1}, "find": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}, "need": {"_count": 1}}, "die": {"_count": 2, "wont": {"_count": 1}, "": {"_count": 1}}, "merely": {"_count": 1, "take": {"_count": 1}}, "lead": {"_count": 2, "them": {"_count": 1}, "you": {"_count": 1}}, "serve": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 77, "return": {"_count": 2}, "snapped": {"_count": 1}, "take": {"_count": 4}, "help": {"_count": 1}, "breathe": {"_count": 1}, "be": {"_count": 14}, "interrupt": {"_count": 1}, "convince": {"_count": 1}, "want": {"_count": 1}, "go": {"_count": 2}, "know": {"_count": 1}, "said": {"_count": 2}, "fit": {"_count": 1}, "tolerate": {"_count": 2}, "judge": {"_count": 1}, "pretend": {"_count": 1}, "work": {"_count": 1}, "remain": {"_count": 1}, "believe": {"_count": 1}, "slow": {"_count": 1}, "let": {"_count": 2}, "turn": {"_count": 1}, "hesitate": {"_count": 1}, "allow": {"_count": 2}, "tell": {"_count": 2}, "need": {"_count": 2}, "remember": {"_count": 1}, "come": {"_count": 3}, "permit": {"_count": 1}, "stand": {"_count": 1}, "care": {"_count": 1}, "stop": {"_count": 1}, "": {"_count": 3}, "pester": {"_count": 1}, "underestimate": {"_count": 1}, "insult": {"_count": 1}, "banish": {"_count": 1}, "use": {"_count": 1}, "object": {"_count": 1}, "have": {"_count": 1}, "wish": {"_count": 1}, "love": {"_count": 1}, "do": {"_count": 2}, "calm": {"_count": 1}, "bring": {"_count": 1}, "win": {"_count": 1}, "begrudge": {"_count": 1}, "try": {"_count": 1}}, "amount": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "fact": {"_count": 1}}, "go": {"_count": 6, "hungry": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}, "straight": {"_count": 1}}, "they": {"_count": 5, "get": {"_count": 1}, "learn": {"_count": 1}, "": {"_count": 2}, "do": {"_count": 1}}, "wait": {"_count": 5, "here": {"_count": 2}, "": {"_count": 1}, "while": {"_count": 1}, "for": {"_count": 1}}, "both": {"_count": 3, "get": {"_count": 1}, "do": {"_count": 1}, "receive": {"_count": 1}}, "eat": {"_count": 1, "in": {"_count": 1}}, "knock": {"_count": 1, "you": {"_count": 1}}, "attract": {"_count": 1, "your": {"_count": 1}}, "appreciate": {"_count": 1, "that": {"_count": 1}}, "revive": {"_count": 2, "Mrs": {"_count": 1}, "your": {"_count": 1}}, "return": {"_count": 9, "if": {"_count": 1}, "to": {"_count": 3}, "their": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "them": {"_count": 1}, "and": {"_count": 1}}, "remember": {"_count": 11, "me": {"_count": 2}, "you": {"_count": 1}, "Minister": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 2}, "how": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "your": {"_count": 1}}, "mind": {"_count": 1, "me": {"_count": 1}}, "cast": {"_count": 1, "our": {"_count": 1}}, "want": {"_count": 6, "to": {"_count": 4}, "their": {"_count": 1}, "it": {"_count": 1}}, "escort": {"_count": 1, "you": {"_count": 1}}, "find": {"_count": 21, "that": {"_count": 5}, "uses": {"_count": 1}, "me": {"_count": 2}, "unless": {"_count": 1}, "himself": {"_count": 1}, "a": {"_count": 2}, "everything": {"_count": 1}, "on": {"_count": 1}, "your": {"_count": 1}, "yourself": {"_count": 1}, "several": {"_count": 1}, "it": {"_count": 3}, "some": {"_count": 1}}, "only": {"_count": 5, "truly": {"_count": 2}, "know": {"_count": 1}, "be": {"_count": 1}, "break": {"_count": 1}}, "also": {"_count": 2, "find": {"_count": 1}, "be": {"_count": 1}}, "manage": {"_count": 1, "to": {"_count": 1}}, "therefore": {"_count": 3, "take": {"_count": 1}, "be": {"_count": 1}, "call": {"_count": 1}}, "end": {"_count": 2, "with": {"_count": 1}, "half": {"_count": 1}}, "inform": {"_count": 2, "Professor": {"_count": 1}, "the": {"_count": 1}}, "lie": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 32, ".": {"_count": 25}, "!": {"_count": 5}, "?": {"_count": 2}}, "announce": {"_count": 1, "today": {"_count": 1}}, "if": {"_count": 4, "she": {"_count": 1}, "you": {"_count": 3}}, "Ripper": {"_count": 1, "take": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 6, "when": {"_count": 2}, "it": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 1}, "what": {"_count": 1}}, "all": {"_count": 11, "be": {"_count": 1}, "enjoy": {"_count": 1}, "extend": {"_count": 1}, "look": {"_count": 1}, "have": {"_count": 3}, "turn": {"_count": 1}, "awake": {"_count": 1}, "open": {"_count": 1}, "die": {"_count": 1}}, "happen": {"_count": 9, "on": {"_count": 2}, "tonight": {"_count": 1}, "to": {"_count": 4}, "when": {"_count": 1}, "within": {"_count": 1}}, "fill": {"_count": 1, "it": {"_count": 1}}, "interpret": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "animals": {"_count": 1}}, "excuse": {"_count": 2, "me": {"_count": 2}}, "feed": {"_count": 2, "a": {"_count": 1}, "on": {"_count": 1}}, "encourage": {"_count": 1, "you": {"_count": 1}}, "shrink": {"_count": 1, "to": {"_count": 1}}, "need": {"_count": 16, "only": {"_count": 1}, "to": {"_count": 10}, "feeding": {"_count": 1}, "all": {"_count": 1}, "said": {"_count": 1}, "more": {"_count": 1}, "your": {"_count": 1}}, "perform": {"_count": 1, "it": {"_count": 1}}, "frighten": {"_count": 2, "us": {"_count": 1}, "the": {"_count": 1}}, "immediately": {"_count": 1, "become": {"_count": 1}}, "practice": {"_count": 1, "the": {"_count": 1}}, "assume": {"_count": 1, "the": {"_count": 1}}, "raise": {"_count": 2, "your": {"_count": 1}, "suspicion": {"_count": 1}}, "cross": {"_count": 1, "the": {"_count": 1}}, "come": {"_count": 18, "as": {"_count": 1}, "at": {"_count": 1}, "upstairs": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "an": {"_count": 1}, "in": {"_count": 1}, "here": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 3}, "after": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}}, "each": {"_count": 2, "write": {"_count": 1}, "select": {"_count": 1}}, "catch": {"_count": 2, "Black": {"_count": 1}, "him": {"_count": 1}}, "strip": {"_count": 1, "it": {"_count": 1}}, "turn": {"_count": 2, "into": {"_count": 1}, "seventeen": {"_count": 1}}, "work": {"_count": 2, "only": {"_count": 1}, "on": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "concern": {"_count": 1, "the": {"_count": 1}}, "See": {"_count": 1, "before": {"_count": 1}}, "break": {"_count": 3, "free": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "rise": {"_count": 3, "again": {"_count": 3}}, "set": {"_count": 3, "out": {"_count": 1}, "up": {"_count": 1}, "me": {"_count": 1}}, "damage": {"_count": 1, "that": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "kill": {"_count": 4, "you": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 1}}, "count": {"_count": 2, "for": {"_count": 1}, "Harry": {"_count": 1}}, "that": {"_count": 1, "help": {"_count": 1}}, "start": {"_count": 5, "arriving": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}}, "milk": {"_count": 1, "her": {"_count": 1}}, "use": {"_count": 1, "no": {"_count": 1}}, "allow": {"_count": 2, "you": {"_count": 1}, "us": {"_count": 1}}, "face": {"_count": 4, "you": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "score": {"_count": 1, "first": {"_count": 1}}, "win": {"_count": 3, "but": {"_count": 1}, "the": {"_count": 1}, "little": {"_count": 1}}, "he": {"_count": 6, "listen": {"_count": 1}, "": {"_count": 3}, "glanced": {"_count": 1}, "not": {"_count": 1}}, "precede": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 1}, "added": {"_count": 1}, "be": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "forgive": {"_count": 3, "me": {"_count": 2}, "this": {"_count": 1}}, "decide": {"_count": 1, "which": {"_count": 1}}, "still": {"_count": 2, "be": {"_count": 1}, "work": {"_count": 1}}, "collect": {"_count": 2, "the": {"_count": 2}}, "indeed": {"_count": 2, "come": {"_count": 2}}, "affect": {"_count": 1, "you": {"_count": 1}}, "thanks": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}, "judge": {"_count": 1, "the": {"_count": 1}}, "test": {"_count": 1, "the": {"_count": 1}}, "stand": {"_count": 4, "a": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}}, "contribute": {"_count": 1, "in": {"_count": 1}}, "just": {"_count": 2, "have": {"_count": 1}, "to": {"_count": 1}}, "agree": {"_count": 1, "that": {"_count": 1}}, "continue": {"_count": 4, "adding": {"_count": 1}, "work": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}}, "most": {"_count": 1, "certainly": {"_count": 1}}, "hurt": {"_count": 1, "me": {"_count": 1}}, "how": {"_count": 1, "Rita": {"_count": 1}}, "enable": {"_count": 1, "you": {"_count": 1}}, "see": {"_count": 7, "that": {"_count": 1}, "how": {"_count": 1}, "all": {"_count": 1}, "each": {"_count": 1}, "you": {"_count": 1}, "from": {"_count": 1}, "what": {"_count": 1}}, "pay": {"_count": 3, "Dobby": {"_count": 1}, "": {"_count": 2}}, "care": {"_count": 1, "cos": {"_count": 1}}, "join": {"_count": 4, "me": {"_count": 2}, "us": {"_count": 1}, "him": {"_count": 1}}, "miss": {"_count": 1, "most": {"_count": 1}}, "to": {"_count": 3, "live": {"_count": 2}, "its": {"_count": 1}}, "persuade": {"_count": 2, "her": {"_count": 1}, "them": {"_count": 1}}, "please": {"_count": 2, "keep": {"_count": 1}, "raise": {"_count": 1}}, "enter": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "dim": {"_count": 1, "the": {"_count": 1}}, "reward": {"_count": 2, "us": {"_count": 1}, "me": {"_count": 1}}, "renew": {"_count": 1, "your": {"_count": 1}}, "recall": {"_count": 1, "the": {"_count": 1}}, "provide": {"_count": 1, "": {"_count": 1}}, "Master": {"_count": 1, "": {"_count": 1}}, "linger": {"_count": 1, "for": {"_count": 1}}, "stay": {"_count": 3, "Minerva": {"_count": 1}, "here": {"_count": 1}, "for": {"_count": 1}}, "undoubtedly": {"_count": 4, "want": {"_count": 1}, "try": {"_count": 1}, "be": {"_count": 1}, "fascinate": {"_count": 1}}, "force": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}}, "explain": {"_count": 3, "it": {"_count": 1}, "everything": {"_count": 1}, "": {"_count": 1}}, "step": {"_count": 1, "up": {"_count": 1}}, "destabilize": {"_count": 1, "everything": {"_count": 1}}, "carry": {"_count": 2, "you": {"_count": 1}, "on": {"_count": 1}}, "consent": {"_count": 2, "to": {"_count": 2}}, "look": {"_count": 2, "after": {"_count": 1}, "very": {"_count": 1}}, "settle": {"_count": 1, "in": {"_count": 1}}, "shake": {"_count": 1, "hands": {"_count": 1}}, "contact": {"_count": 2, "you": {"_count": 1}, "has": {"_count": 1}}, "talk": {"_count": 1, "she": {"_count": 1}}, "believe": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 2}, "closed": {"_count": 1}}, "paralyze": {"_count": 1, "them": {"_count": 1}}, "build": {"_count": 1, "and": {"_count": 1}}, "prove": {"_count": 1, "how": {"_count": 1}}, "cease": {"_count": 2, "studying": {"_count": 1}, "to": {"_count": 1}}, "certainly": {"_count": 3, "be": {"_count": 2}, "attack": {"_count": 1}}, "kindly": {"_count": 2, "continue": {"_count": 1}, "tell": {"_count": 1}}, "write": {"_count": 2, "to": {"_count": 1}, "me": {"_count": 1}}, "gouge": {"_count": 1, "out": {"_count": 1}}, "I": {"_count": 5, "have": {"_count": 1}, "": {"_count": 1}, "hope": {"_count": 1}, "think": {"_count": 2}}, "open": {"_count": 2, "their": {"_count": 1}, "only": {"_count": 1}}, "realize": {"_count": 1, "how": {"_count": 1}}, "stop": {"_count": 2, "at": {"_count": 1}, "you": {"_count": 1}}, "confine": {"_count": 1, "your": {"_count": 1}}, "sometimes": {"_count": 1, "go": {"_count": 1}}, "clean": {"_count": 1, "Gryffindor": {"_count": 1}}, "change": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "grow": {"_count": 1, "hot": {"_count": 1}}, "henceforth": {"_count": 1, "have": {"_count": 1}}, "send": {"_count": 1, "news": {"_count": 1}}, "remind": {"_count": 1, "you": {"_count": 1}}, "expect": {"_count": 3, "you": {"_count": 2}, "pain": {"_count": 1}}, "curse": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 4, "examined": {"_count": 1}, "examine": {"_count": 1}, "resentment": {"_count": 1}, "be": {"_count": 1}}, "penetrate": {"_count": 1, "your": {"_count": 1}}, "read": {"_count": 1, "your": {"_count": 1}}, "prefer": {"_count": 1, "lodgings": {"_count": 1}}, "a": {"_count": 1, "statement": {"_count": 1}}, "Minerva": {"_count": 1, "": {"_count": 1}}, "soon": {"_count": 4, "wish": {"_count": 1}, "be": {"_count": 2}, "have": {"_count": 1}}, "understand": {"_count": 6, "why": {"_count": 1}, "whispered": {"_count": 1}, "that": {"_count": 1}, "when": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "assist": {"_count": 1, "you": {"_count": 1}}, "sit": {"_count": 2, "the": {"_count": 1}, "down": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 1}, "particularly": {"_count": 1}}, "reflect": {"_count": 1, "upon": {"_count": 1}}, "track": {"_count": 1, "him": {"_count": 1}}, "sort": {"_count": 1, "her": {"_count": 1}}, "fetch": {"_count": 1, "it": {"_count": 1}}, "shortly": {"_count": 1, "be": {"_count": 1}}, "remain": {"_count": 1, "here": {"_count": 1}}, "bleed": {"_count": 1, "to": {"_count": 1}}, "mark": {"_count": 1, "him": {"_count": 1}}, "simply": {"_count": 2, "have": {"_count": 1}, "cause": {"_count": 1}}, "telephone": {"_count": 1, "tomorrow": {"_count": 1}}, "fail": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "was": {"_count": 1, "discovered": {"_count": 1}}, "makes": {"_count": 1, "it": {"_count": 1}}, "hold": {"_count": 1, "now": {"_count": 1}}, "arrive": {"_count": 1, "on": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "ensure": {"_count": 1, "that": {"_count": 1}}, "grunted": {"_count": 1, "Slughorn": {"_count": 1}}, "grasp": {"_count": 1, "my": {"_count": 1}}, "fall": {"_count": 1, "for": {"_count": 1}}, "attempt": {"_count": 2, "to": {"_count": 2}}, "attend": {"_count": 1, "a": {"_count": 1}}, "favor": {"_count": 1, "me": {"_count": 1}}, "probably": {"_count": 3, "be": {"_count": 2}, "have": {"_count": 1}}, "address": {"_count": 1, "me": {"_count": 1}}, "punish": {"_count": 1, "lawbreakers": {"_count": 1}}, "hear": {"_count": 1, "many": {"_count": 1}}, "Im": {"_count": 1, "taking": {"_count": 1}}, "matter": {"_count": 1, "enormously": {"_count": 1}}, "by": {"_count": 1, "an": {"_count": 1}}, "protect": {"_count": 1, "from": {"_count": 1}}, "shut": {"_count": 1, "Kreachers": {"_count": 1}}, "throw": {"_count": 1, "himself": {"_count": 1}}, "become": {"_count": 1, "of": {"_count": 1}}, "pretend": {"_count": 1, "he": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "decay": {"_count": 1, "your": {"_count": 1}}, "hazard": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "be": {"_count": 1}}, "obey": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "think": {"_count": 1}}, "at": {"_count": 1, "some": {"_count": 1}}, "register": {"_count": 1, "compared": {"_count": 1}}, "prevent": {"_count": 1, "me": {"_count": 1}}, "describe": {"_count": 1, "the": {"_count": 1}}, "benefit": {"_count": 2, "generations": {"_count": 1}, "everyone": {"_count": 1}}, "the": {"_count": 3, "wisdom": {"_count": 1}, "Death": {"_count": 1}, "Dark": {"_count": 1}}, "target": {"_count": 1, "you": {"_count": 1}}, "torture": {"_count": 1, "and": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "once": {"_count": 1, "shes": {"_count": 1}}, "survive": {"_count": 1, "untouched": {"_count": 1}}, "ever": {"_count": 1, "ave": {"_count": 1}}, "That": {"_count": 1, "law": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "why": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 2, "they": {"_count": 1}, "to": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "your": {"_count": 2, "heart": {"_count": 2}}, "bleat": {"_count": 1, "that": {"_count": 1}}, "under": {"_count": 1, "these": {"_count": 1}}, "hide": {"_count": 1, "one": {"_count": 1}}, "marry": {"_count": 1, "Muggles": {"_count": 1}}, "ave": {"_count": 1, "to": {"_count": 1}}, "usually": {"_count": 1, "bend": {"_count": 1}}, "consider": {"_count": 1, "it": {"_count": 1}}, "follow": {"_count": 1, "me": {"_count": 1}}, "his": {"_count": 1, "befuddled": {"_count": 1}}, "retreat": {"_count": 1, "and": {"_count": 1}}, "burn": {"_count": 1, "and": {"_count": 1}}, "eventually": {"_count": 1, "be": {"_count": 1}}, "organize": {"_count": 1, "your": {"_count": 1}}, "fight": {"_count": 1, "": {"_count": 1}}, "hate": {"_count": 1, "watching": {"_count": 1}}, "spare": {"_count": 1, "her": {"_count": 1}}, "spread": {"_count": 1, "eventually": {"_count": 1}}, "present": {"_count": 2, "itself": {"_count": 1}, "it": {"_count": 1}}, "harm": {"_count": 1, "your": {"_count": 1}}, "finish": {"_count": 1, "bottom": {"_count": 1}}, "seem": {"_count": 1, "to": {"_count": 1}}, "truly": {"_count": 1, "mean": {"_count": 1}}, "suggest": {"_count": 1, "to": {"_count": 1}}, "forget": {"_count": 1, "that": {"_count": 1}}, "every": {"_count": 1, "member": {"_count": 1}}, "live": {"_count": 1, "and": {"_count": 1}}, "suffice": {"_count": 1, "for": {"_count": 1}}, "share": {"_count": 1, "a": {"_count": 1}}}, "Only": {"_count": 96, "because": {"_count": 3, "youre": {"_count": 2}, "he": {"_count": 1}}, "the": {"_count": 9, "photographs": {"_count": 1}, "sea": {"_count": 1}, "Transfiguration": {"_count": 1}, "houseelfs": {"_count": 1}, "people": {"_count": 1}, "previous": {"_count": 1}, "edge": {"_count": 1}, "goblin": {"_count": 1}, "difference": {"_count": 1}}, "I": {"_count": 2, "got": {"_count": 1}, "cant": {"_count": 1}}, "joking": {"_count": 2, "I": {"_count": 1}, "Mom": {"_count": 1}}, "dont": {"_count": 1, "tell": {"_count": 1}}, "Ron": {"_count": 1, "stood": {"_count": 1}}, "one": {"_count": 11, "who": {"_count": 1}, "thing": {"_count": 2}, "person": {"_count": 1}, "door": {"_count": 1}, "out": {"_count": 1}, "known": {"_count": 1}, "power": {"_count": 1}, "couple": {"_count": 1}, "boy": {"_count": 1}, "wand": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "came": {"_count": 1, "out": {"_count": 1}}, "a": {"_count": 8, "really": {"_count": 1}, "true": {"_count": 2}, "dull": {"_count": 1}, "week": {"_count": 2}, "Quidditch": {"_count": 1}, "little": {"_count": 1}}, "last": {"_count": 2, "summer": {"_count": 1}, "year": {"_count": 1}}, "those": {"_count": 2, "who": {"_count": 1}, "skilled": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "if": {"_count": 6, "were": {"_count": 1}, "you": {"_count": 4}, "we": {"_count": 1}}, "innocent": {"_count": 1, "lives": {"_count": 1}}, "after": {"_count": 1, "Dudley": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "just": {"_count": 1, "eighteen": {"_count": 1}}, "students": {"_count": 1, "who": {"_count": 1}}, "you": {"_count": 3, "said": {"_count": 1}, "wriggled": {"_count": 1}, "can": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "thing": {"_count": 4, "is": {"_count": 2}, "we": {"_count": 1}, "was": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "bubbles": {"_count": 1, "flew": {"_count": 1}}, "said": {"_count": 1, "Bagman": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "weve": {"_count": 1, "had": {"_count": 1}}, "Dad": {"_count": 1, "wasnt": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "Fred": {"_count": 1}}, "two": {"_count": 1, "new": {"_count": 1}}, "Rons": {"_count": 1, "brother": {"_count": 1}}, "lets": {"_count": 1, "make": {"_count": 1}}, "once": {"_count": 2, "said": {"_count": 1}, "weve": {"_count": 1}}, "Harry": {"_count": 2, "and": {"_count": 1}, "Hagrid": {"_count": 1}}, "it": {"_count": 1, "wouldnt": {"_count": 1}}, "Muggles": {"_count": 1, "talk": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "four": {"_count": 1, "exams": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "sixteen": {"_count": 1, "minutes": {"_count": 1}}, "failed": {"_count": 1, "Divination": {"_count": 1}}, "Tom": {"_count": 1, "the": {"_count": 1}}, "time": {"_count": 1, "Ive": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "by": {"_count": 1, "drinking": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "they": {"_count": 1, "cant": {"_count": 1}}, "trouble": {"_count": 1, "is": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}}, "noble": {"_count": 22, "to": {"_count": 1, "use": {"_count": 1}}, "history": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "heart": {"_count": 1, "and": {"_count": 1}}, "art": {"_count": 1, "of": {"_count": 1}}, "thing": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "as": {"_count": 1, "selfless": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "sport": {"_count": 1, "as": {"_count": 1}}, "house": {"_count": 1, "of": {"_count": 1}}, "school": {"_count": 1, "Thought": {"_count": 1}}, "blood": {"_count": 1, "that": {"_count": 1}}, "profession": {"_count": 1, "of": {"_count": 1}}, "reason": {"_count": 1, "isnt": {"_count": 1}}, "selfsacrifice": {"_count": 1, "": {"_count": 1}}, "phoenixfeather": {"_count": 1, "wand": {"_count": 1}}, "stock": {"_count": 1, "": {"_count": 1}}, "ancestor": {"_count": 1, "Salazar": {"_count": 1}}}, "use": {"_count": 312, "them": {"_count": 10, "": {"_count": 4}, "said": {"_count": 1}, "then": {"_count": 1}, "when": {"_count": 1}, "again": {"_count": 1}, "consciously": {"_count": 1}, "brooms": {"_count": 1}}, "magic": {"_count": 26, "now": {"_count": 1}, "in": {"_count": 2}, "over": {"_count": 1}, "at": {"_count": 2}, "outside": {"_count": 6}, "if": {"_count": 1}, "": {"_count": 4}, "theyre": {"_count": 1}, "to": {"_count": 2}, "an": {"_count": 1}, "but": {"_count": 2}, "weve": {"_count": 1}, "and": {"_count": 1}, "near": {"_count": 1}}, "unicorn": {"_count": 1, "hairs": {"_count": 1}}, "any": {"_count": 4, "means": {"_count": 1}, "wizard": {"_count": 1}, "counterjinx": {"_count": 1}, "curses": {"_count": 1}}, "on": {"_count": 3, "him": {"_count": 1}, "Fluffy": {"_count": 1}, "Malfoy": {"_count": 1}}, "the": {"_count": 44, "Curse": {"_count": 1}, "Mirror": {"_count": 1}, "Invisibility": {"_count": 3}, "proper": {"_count": 1}, "bathroom": {"_count": 2}, "Polyjuice": {"_count": 1}, "cane": {"_count": 1}, "library": {"_count": 1}, "House": {"_count": 1}, "information": {"_count": 2}, "fire": {"_count": 1}, "Cruciatus": {"_count": 1}, "prefects": {"_count": 2}, "Restricted": {"_count": 1}, "map": {"_count": 1}, "Pensieve": {"_count": 1}, "empty": {"_count": 1}, "FourPoint": {"_count": 1}, "spider": {"_count": 1}, "spells": {"_count": 1}, "students": {"_count": 1}, "Sloth": {"_count": 1}, "extra": {"_count": 1}, "name": {"_count": 1}, "fellytone": {"_count": 1}, "spell": {"_count": 1}, "time": {"_count": 1}, "cloak": {"_count": 1}, "Felix": {"_count": 1}, "damage": {"_count": 1}, "only": {"_count": 1}, "dragonfire": {"_count": 1}, "sleeping": {"_count": 1}, "Floo": {"_count": 1}, "sword": {"_count": 1}, "word": {"_count": 1}, "Dark": {"_count": 1}, "common": {"_count": 1}, "Resurrection": {"_count": 1}}, "your": {"_count": 6, "eyes": {"_count": 1}, "common": {"_count": 2}, "wand": {"_count": 2}, "bathroom": {"_count": 1}}, "it": {"_count": 34, "alone": {"_count": 1}, "on": {"_count": 4}, "would": {"_count": 1}, "": {"_count": 6}, "without": {"_count": 1}, "to": {"_count": 4}, "for": {"_count": 2}, "against": {"_count": 1}, "in": {"_count": 2}, "before": {"_count": 1}, "outside": {"_count": 1}, "was": {"_count": 1}, "if": {"_count": 1}, "all": {"_count": 1}, "well": {"_count": 1}, "Harry": {"_count": 2}, "fer": {"_count": 1}, "safely": {"_count": 1}, "its": {"_count": 1}, "because": {"_count": 1}}, "of": {"_count": 33, "cool": {"_count": 1}, "being": {"_count": 1}, "extreme": {"_count": 1}, "a": {"_count": 4}, "both": {"_count": 1}, "elbows": {"_count": 1}, "any": {"_count": 1}, "axle": {"_count": 1}, "this": {"_count": 2}, "the": {"_count": 6}, "its": {"_count": 1}, "an": {"_count": 1}, "hosepipes": {"_count": 1}, "magic": {"_count": 2}, "whichever": {"_count": 1}, "his": {"_count": 2}, "magical": {"_count": 1}, "moonstones": {"_count": 1}, "defensive": {"_count": 1}, "you": {"_count": 1}, "broomsticks": {"_count": 1}, "nonverbal": {"_count": 1}}, "real": {"_count": 1, "Quidditch": {"_count": 1}}, "Galleons": {"_count": 1, "Sickles": {"_count": 1}}, "Dark": {"_count": 4, "Magic": {"_count": 4}}, "to": {"_count": 10, "you": {"_count": 2}, "kill": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 2}, "anyone": {"_count": 1}, "which": {"_count": 1}}, "his": {"_count": 6, "own": {"_count": 1}, "hands": {"_count": 1}, "wand": {"_count": 1}, "webbed": {"_count": 1}, "thing": {"_count": 1}, "word": {"_count": 1}}, "my": {"_count": 2, "filthy": {"_count": 1}, "own": {"_count": 1}}, "Fawkes": {"_count": 1, "or": {"_count": 1}}, "a": {"_count": 17, "telephone": {"_count": 2}, "weak": {"_count": 1}, "fellytone": {"_count": 1}, "wand": {"_count": 3}, "QuickQuotes": {"_count": 1}, "nice": {"_count": 1}, "school": {"_count": 1}, "number": {"_count": 1}, "defensive": {"_count": 1}, "Shield": {"_count": 1}, "Portkey": {"_count": 1}, "Hover": {"_count": 1}, "Severing": {"_count": 1}, "Supersensory": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 2, "that": {"_count": 2}}, "": {"_count": 15, ".": {"_count": 9}, "?": {"_count": 5}, "!": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "its": {"_count": 1, "last": {"_count": 1}}, "this": {"_count": 5, "week": {"_count": 1}, "old": {"_count": 1}, "bathroom": {"_count": 1}, "one": {"_count": 2}}, "against": {"_count": 2, "ghosts": {"_count": 1}, "the": {"_count": 1}}, "Neville": {"_count": 1, "instead": {"_count": 1}}, "him": {"_count": 4, "as": {"_count": 1}, "to": {"_count": 1}, "again": {"_count": 1}, "but": {"_count": 1}}, "they": {"_count": 1, "said": {"_count": 1}}, "another": {"_count": 3, "witch": {"_count": 1}, "wizard": {"_count": 1}, "guinea": {"_count": 1}}, "no": {"_count": 2, "other": {"_count": 1}, "use": {"_count": 1}}, "Muggle": {"_count": 1, "transport": {"_count": 1}}, "Portkeys": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 2}, "you": {"_count": 1}, "owls": {"_count": 1}}, "Transfiguration": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "trying": {"_count": 1}}, "Hedwig": {"_count": 2, "keep": {"_count": 1}, "again": {"_count": 1}}, "you": {"_count": 3, "Harry": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 2}}, "here": {"_count": 1, "of": {"_count": 1}}, "their": {"_count": 2, "voices": {"_count": 1}, "names": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "electricity": {"_count": 1, "computers": {"_count": 1}}, "Dobby": {"_count": 1, "Harry": {"_count": 1}}, "if": {"_count": 2, "I": {"_count": 1}, "we": {"_count": 1}}, "would": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "every": {"_count": 1, "ounce": {"_count": 1}}, "gillyweed": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "began": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "four": {"_count": 1, "years": {"_count": 1}}, "owls": {"_count": 1, "but": {"_count": 1}}, "force": {"_count": 1, "if": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "spells": {"_count": 1, "against": {"_count": 1}}, "thats": {"_count": 1, "why": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "our": {"_count": 2, "products": {"_count": 1}, "special": {"_count": 1}}, "Sirius": {"_count": 2, "to": {"_count": 2}}, "Umbridges": {"_count": 1, "fire": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "others": {"_count": 1, "to": {"_count": 1}}, "once": {"_count": 1, "before": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "ingredients": {"_count": 1, "from": {"_count": 1}}, "those": {"_count": 1, "precise": {"_count": 1}}, "in": {"_count": 2, "Potions": {"_count": 1}, "this": {"_count": 1}}, "Veritaserum": {"_count": 1, "or": {"_count": 1}}, "Legilimency": {"_count": 1, "": {"_count": 1}}, "Voldemorts": {"_count": 1, "chosen": {"_count": 1}}, "tin": {"_count": 1, "cans": {"_count": 1}}, "animals": {"_count": 1, "as": {"_count": 1}}, "an": {"_count": 2, "Unforgivable": {"_count": 2}}, "that": {"_count": 4, "offensive": {"_count": 1}, "": {"_count": 1}, "connection": {"_count": 1}, "word": {"_count": 1}}, "decoys": {"_count": 2, "": {"_count": 2}}, "only": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "Occlumency": {"_count": 2, "": {"_count": 2}}, "forcing": {"_count": 1, "the": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}}, "Its": {"_count": 805, "lucky": {"_count": 1, "its": {"_count": 1}}, "its": {"_count": 2, "true": {"_count": 1}, "got": {"_count": 1}}, "just": {"_count": 25, "astounding": {"_count": 1}, "a": {"_count": 4}, "lucky": {"_count": 2}, "lying": {"_count": 1}, "that": {"_count": 4}, "an": {"_count": 2}, "": {"_count": 1}, "bigotry": {"_count": 1}, "playing": {"_count": 1}, "getting": {"_count": 1}, "been": {"_count": 1}, "so": {"_count": 2}, "I": {"_count": 1}, "hard": {"_count": 1}, "because": {"_count": 1}, "you": {"_count": 1}}, "the": {"_count": 35, "best": {"_count": 3}, "Seekers": {"_count": 1}, "girls": {"_count": 1}, "full": {"_count": 1}, "only": {"_count": 5}, "same": {"_count": 2}, "crack": {"_count": 1}, "fastest": {"_count": 1}, "Azkaban": {"_count": 1}, "first": {"_count": 1}, "nearest": {"_count": 1}, "fate": {"_count": 1}, "Quidditch": {"_count": 1}, "Dark": {"_count": 1}, "custard": {"_count": 1}, "property": {"_count": 1}, "people": {"_count": 1}, "Society": {"_count": 1}, "way": {"_count": 3}, "right": {"_count": 1}, "Potter": {"_count": 1}, "password": {"_count": 1}, "most": {"_count": 1}, "thing": {"_count": 1}, "real": {"_count": 1}, "day": {"_count": 1}}, "Monday": {"_count": 1, "he": {"_count": 1}}, "not": {"_count": 84, "been": {"_count": 1}, "funny": {"_count": 3}, "any": {"_count": 1}, "my": {"_count": 6}, "just": {"_count": 3}, "exactly": {"_count": 1}, "easy": {"_count": 2}, "that": {"_count": 5}, "poison": {"_count": 1}, "a": {"_count": 13}, "much": {"_count": 2}, "as": {"_count": 5}, "possible": {"_count": 1}, "safe": {"_count": 1}, "all": {"_count": 1}, "over": {"_count": 2}, "fair": {"_count": 2}, "said": {"_count": 2}, "true": {"_count": 1}, "schoolwork": {"_count": 1}, "like": {"_count": 6}, "very": {"_count": 1}, "\u2018spew": {"_count": 1}, "down": {"_count": 1}, "our": {"_count": 2}, "weird": {"_count": 1}, "Cho": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}, "ours": {"_count": 1}, "Quidditch": {"_count": 1}, "evryone": {"_count": 1}, "your": {"_count": 2}, "rreally": {"_count": 1}, "their": {"_count": 1}, "me": {"_count": 1}, "here": {"_count": 1}, "about": {"_count": 1}, "stealing": {"_count": 1}, "so": {"_count": 1}, "yorn": {"_count": 1}, "hurting": {"_count": 1}, "right": {"_count": 1}}, "them": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "Potters": {"_count": 1}}, "an": {"_count": 4, "outrage": {"_count": 1}, "Invisibility": {"_count": 1}, "occupational": {"_count": 1}, "insult": {"_count": 1}}, "gettin": {"_count": 1, "late": {"_count": 1}}, "a": {"_count": 56, "famous": {"_count": 1}, "Remembrall": {"_count": 1}, "bit": {"_count": 6}, "simple": {"_count": 4}, "disgusting": {"_count": 1}, "shame": {"_count": 2}, "Revealer": {"_count": 1}, "lot": {"_count": 2}, "firstrate": {"_count": 1}, "shapeshifter": {"_count": 1}, "wrench": {"_count": 1}, "maniac": {"_count": 1}, "letter": {"_count": 1}, "sport": {"_count": 1}, "bummer": {"_count": 1}, "dragon": {"_count": 2}, "mast": {"_count": 1}, "girls": {"_count": 1}, "potion": {"_count": 1}, "secret": {"_count": 1}, "lifetime": {"_count": 1}, "matter": {"_count": 2}, "pain": {"_count": 1}, "figure": {"_count": 1}, "brilliant": {"_count": 1}, "difficult": {"_count": 1}, "wonder": {"_count": 1}, "big": {"_count": 1}, "thought": {"_count": 1}, "great": {"_count": 1}, "banned": {"_count": 1}, "nice": {"_count": 1}, "change": {"_count": 1}, "fake": {"_count": 1}, "cat": {"_count": 1}, "Class": {"_count": 1}, "fairy": {"_count": 1}, "damn": {"_count": 1}, "Quest": {"_count": 1}, "copy": {"_count": 1}, "boy": {"_count": 1}, "goat": {"_count": 1}, "proper": {"_count": 1}, "kind": {"_count": 1}}, "about": {"_count": 10, "the": {"_count": 2}, "to": {"_count": 1}, "winning": {"_count": 1}, "me": {"_count": 1}, "keeping": {"_count": 1}, "preparing": {"_count": 1}, "making": {"_count": 1}, "Malfoy": {"_count": 1}, "Voldemort": {"_count": 1}}, "our": {"_count": 2, "sport": {"_count": 1}, "dad": {"_count": 1}}, "like": {"_count": 9, "like": {"_count": 1}, "having": {"_count": 1}, "some": {"_count": 1}, "Hagrid": {"_count": 1}, "losing": {"_count": 1}, "going": {"_count": 1}, "being": {"_count": 1}, "theyre": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 3, "my": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "really": {"_count": 6, "there": {"_count": 1}, "very": {"_count": 1}, "not": {"_count": 1}, "really": {"_count": 1}, "good": {"_count": 1}, "important": {"_count": 1}}, "been": {"_count": 26, "all": {"_count": 1}, "outoforder": {"_count": 1}, "here": {"_count": 1}, "a": {"_count": 5}, "bedlam": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}, "over": {"_count": 1}, "getting": {"_count": 1}, "in": {"_count": 1}, "awful": {"_count": 1}, "great": {"_count": 1}, "hurting": {"_count": 1}, "like": {"_count": 2}, "called": {"_count": 2}, "decided": {"_count": 1}, "inked": {"_count": 1}, "done": {"_count": 1}, "": {"_count": 1}, "coming": {"_count": 1}}, "bewitched": {"_count": 2, "to": {"_count": 1}, "said": {"_count": 1}}, "odd": {"_count": 2, "because": {"_count": 1}, "isnt": {"_count": 1}}, "that": {"_count": 7, "stupid": {"_count": 2}, "voice": {"_count": 1}, "Ravenclaw": {"_count": 1}, "Umbridge": {"_count": 1}, "mark": {"_count": 1}, "Mudblood": {"_count": 1}}, "for": {"_count": 4, "your": {"_count": 1}, "the": {"_count": 1}, "some": {"_count": 1}, "our": {"_count": 1}}, "obviously": {"_count": 1, "guarding": {"_count": 1}}, "either": {"_count": 3, "really": {"_count": 1}, "foxes": {"_count": 1}, "a": {"_count": 1}}, "very": {"_count": 11, "hard": {"_count": 2}, "boring": {"_count": 1}, "lucky": {"_count": 1}, "bad": {"_count": 1}, "nice": {"_count": 1}, "simple": {"_count": 2}, "good": {"_count": 1}, "kind": {"_count": 1}, "characterbuilding": {"_count": 1}}, "Winggardium": {"_count": 1, "Leviosa": {"_count": 1}}, "no": {"_count": 10, "wonder": {"_count": 2}, "good": {"_count": 3}, "use": {"_count": 1}, "ones": {"_count": 1}, "go": {"_count": 1}, "laughing": {"_count": 1}, "trouble": {"_count": 1}}, "mean": {"_count": 1, "little": {"_count": 1}}, "time": {"_count": 8, "": {"_count": 2}, "said": {"_count": 2}, "you": {"_count": 3}, "to": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "nothin": {"_count": 1, "to": {"_count": 1}}, "here": {"_count": 2, "just": {"_count": 1}, "at": {"_count": 1}}, "people": {"_count": 2, "they": {"_count": 1}, "like": {"_count": 1}}, "hard": {"_count": 1, "to": {"_count": 1}}, "hatching": {"_count": 1, "": {"_count": 1}}, "nearly": {"_count": 8, "out": {"_count": 1}, "time": {"_count": 1}, "eleven": {"_count": 2}, "break": {"_count": 1}, "lunchtime": {"_count": 1}, "Christmas": {"_count": 1}, "morning": {"_count": 1}}, "spiny": {"_count": 1, "wings": {"_count": 1}}, "Hedwig": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 7, "late": {"_count": 5}, "crowded": {"_count": 1}, "dangerous": {"_count": 1}}, "all": {"_count": 44, "right": {"_count": 21}, "my": {"_count": 3}, "thats": {"_count": 1}, "to": {"_count": 1}, "over": {"_count": 1}, "Malfoy": {"_count": 1}, "Ive": {"_count": 1}, "in": {"_count": 1}, "happening": {"_count": 1}, "your": {"_count": 1}, "this": {"_count": 1}, "about": {"_count": 2}, "so": {"_count": 1}, "a": {"_count": 2}, "righ": {"_count": 2}, "rright": {"_count": 1}, "I": {"_count": 1}, "down": {"_count": 1}, "part": {"_count": 1}}, "one": {"_count": 5, "oclock": {"_count": 1}, "of": {"_count": 2}, "extra": {"_count": 1}, "thing": {"_count": 1}}, "long": {"_count": 2, "slender": {"_count": 1}, "sting": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "tonight": {"_count": 1, "said": {"_count": 1}}, "obvious": {"_count": 6, "said": {"_count": 1}, "isnt": {"_count": 3}, "": {"_count": 1}, "what": {"_count": 1}}, "okay": {"_count": 24, "": {"_count": 7}, "Hermione": {"_count": 2}, "Scabbers": {"_count": 1}, "Beaky": {"_count": 2}, "you": {"_count": 1}, "he": {"_count": 4}, "said": {"_count": 3}, "for": {"_count": 1}, "we": {"_count": 1}, "Ive": {"_count": 1}, "everythings": {"_count": 1}}, "almost": {"_count": 3, "like": {"_count": 1}, "as": {"_count": 2}}, "Dads": {"_count": 1, "we": {"_count": 1}}, "wonderful": {"_count": 1, "said": {"_count": 1}}, "Magid": {"_count": 1, "And": {"_count": 1}}, "your": {"_count": 7, "own": {"_count": 1}, "friend": {"_count": 1}, "responsibility": {"_count": 1}, "son": {"_count": 1}, "family": {"_count": 1}, "eye": {"_count": 1}, "one": {"_count": 1}}, "gone": {"_count": 2, "said": {"_count": 1}, "wrong": {"_count": 1}}, "faulty": {"_count": 1, "Both": {"_count": 1}}, "probably": {"_count": 2, "just": {"_count": 1}, "full": {"_count": 1}}, "never": {"_count": 5, "been": {"_count": 2}, "too": {"_count": 1}, "open": {"_count": 1}, "occurred": {"_count": 1}}, "trunk": {"_count": 1, "was": {"_count": 1}}, "\u2018wattlebird": {"_count": 1, "said": {"_count": 1}}, "amazing": {"_count": 3, "here": {"_count": 2}, "isnt": {"_count": 1}}, "part": {"_count": 2, "of": {"_count": 2}}, "ridiculous": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 8, "a": {"_count": 3}, "Defense": {"_count": 1}, "fair": {"_count": 1}, "teachers": {"_count": 1}, "my": {"_count": 1}, "Muggleborns": {"_count": 1}}, "nice": {"_count": 1, "to": {"_count": 1}}, "going": {"_count": 6, "to": {"_count": 6}}, "me": {"_count": 5, "he": {"_count": 3}, "home": {"_count": 1}, "": {"_count": 1}}, "nothing": {"_count": 8, "he": {"_count": 2}, "really": {"_count": 1}, "Molly": {"_count": 1}, "to": {"_count": 2}, "nothing": {"_count": 1}, "like": {"_count": 1}}, "eyes": {"_count": 3, "were": {"_count": 3}}, "because": {"_count": 4, "hes": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}, "youre": {"_count": 1}}, "ready": {"_count": 1, "": {"_count": 1}}, "Crabbe": {"_count": 1, "isnt": {"_count": 1}}, "awful": {"_count": 1, "They": {"_count": 1}}, "over": {"_count": 7, "there": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "innit": {"_count": 1}, "time": {"_count": 1}}, "happening": {"_count": 1, "again": {"_count": 1}}, "already": {"_count": 1, "heard": {"_count": 1}}, "methods": {"_count": 1, "of": {"_count": 1}}, "damn": {"_count": 1, "good": {"_count": 1}}, "normally": {"_count": 2, "just": {"_count": 1}, "Mum": {"_count": 1}}, "enough": {"_count": 2, "to": {"_count": 2}}, "my": {"_count": 13, "birthday": {"_count": 1}, "rat": {"_count": 1}, "favorite": {"_count": 1}, "fault": {"_count": 2}, "job": {"_count": 2}, "business": {"_count": 1}, "name": {"_count": 1}, "friend": {"_count": 1}, "owl": {"_count": 1}, "house": {"_count": 1}, "fathers": {"_count": 1}}, "late": {"_count": 1, "Molly": {"_count": 1}}, "coming": {"_count": 2, "from": {"_count": 1}, "back": {"_count": 1}}, "this": {"_count": 2, "sweetshop": {"_count": 1}, "joke": {"_count": 1}}, "face": {"_count": 1, "was": {"_count": 1}}, "what": {"_count": 11, "I": {"_count": 1}, "my": {"_count": 2}, "dementors": {"_count": 1}, "YouKnow": {"_count": 1}, "they": {"_count": 1}, "Idve": {"_count": 1}, "he": {"_count": 1}, "everyones": {"_count": 1}, "people": {"_count": 1}, "you": {"_count": 1}}, "polite": {"_count": 1, "see": {"_count": 1}}, "killed": {"_count": 1, "me": {"_count": 1}}, "still": {"_count": 3, "quite": {"_count": 1}, "a": {"_count": 1}, "raining": {"_count": 1}}, "Malfoys": {"_count": 1, "problem": {"_count": 1}}, "always": {"_count": 2, "best": {"_count": 1}, "been": {"_count": 1}}, "confused": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 5, "rabbit": {"_count": 1}, "Ron": {"_count": 2}, "thing": {"_count": 1}, "said": {"_count": 1}}, "handle": {"_count": 1, "glittered": {"_count": 1}}, "stress": {"_count": 1, "": {"_count": 1}}, "getting": {"_count": 1, "worse": {"_count": 1}}, "him": {"_count": 6, "Go": {"_count": 1}, "": {"_count": 3}, "Ive": {"_count": 1}, "down": {"_count": 1}}, "But": {"_count": 2, "exactly": {"_count": 1}, "to": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}, "from": {"_count": 3, "Hagrid": {"_count": 1}, "Sirius": {"_count": 1}, "Lavender": {"_count": 1}}, "us": {"_count": 5, "Harry": {"_count": 1}, "": {"_count": 1}, "Neville": {"_count": 1}, "we": {"_count": 1}, "whats": {"_count": 1}}, "bad": {"_count": 3, "enough": {"_count": 3}}, "Scabbers": {"_count": 1, "he": {"_count": 1}}, "marked": {"_count": 1, "on": {"_count": 1}}, "so": {"_count": 4, "much": {"_count": 2}, "brave": {"_count": 1}, "unfair": {"_count": 1}}, "called": {"_count": 1, "a": {"_count": 1}}, "empty": {"_count": 1, "now": {"_count": 1}}, "hooves": {"_count": 1, "made": {"_count": 1}}, "upstairs": {"_count": 1, "said": {"_count": 1}}, "proper": {"_count": 1, "name": {"_count": 1}}, "got": {"_count": 14, "to": {"_count": 9}, "something": {"_count": 1}, "an": {"_count": 1}, "my": {"_count": 1}, "nothing": {"_count": 1}, "a": {"_count": 1}}, "classified": {"_count": 1, "information": {"_count": 1}}, "voice": {"_count": 2, "was": {"_count": 2}}, "timeout": {"_count": 1, "": {"_count": 1}}, "slavery": {"_count": 1, "thats": {"_count": 1}}, "but": {"_count": 1, "blimey": {"_count": 1}}, "disgusting": {"_count": 1, "the": {"_count": 1}}, "weird": {"_count": 3, "isnt": {"_count": 2}, "being": {"_count": 1}}, "end": {"_count": 1, "exploded": {"_count": 1}}, "SPEW": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "Potions": {"_count": 1, "last": {"_count": 1}}, "French": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 4, "their": {"_count": 1}, "fine": {"_count": 1}, "the": {"_count": 2}}, "down": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 2, "problem": {"_count": 1}, "birthday": {"_count": 1}}, "back": {"_count": 1, "ends": {"_count": 1}}, "extrasensitive": {"_count": 1, "picks": {"_count": 1}}, "marks": {"_count": 1, "out": {"_count": 1}}, "Mr": {"_count": 2, "Crouch": {"_count": 2}}, "Christmas": {"_count": 2, "Hermione": {"_count": 1}, "and": {"_count": 1}}, "hot": {"_count": 1, "isnt": {"_count": 1}}, "Peeves": {"_count": 1, "Professor": {"_count": 1}}, "mine": {"_count": 2, "": {"_count": 1}, "mustve": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "possible": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "more": {"_count": 3, "likely": {"_count": 1}, "like": {"_count": 1}, "the": {"_count": 1}}, "half": {"_count": 1, "past": {"_count": 1}}, "oh": {"_count": 1, "how": {"_count": 1}}, "leprechaun": {"_count": 1, "gold": {"_count": 1}}, "rubbish": {"_count": 1, "said": {"_count": 1}}, "narrow": {"_count": 1, "beam": {"_count": 1}}, "great": {"_count": 2, "being": {"_count": 1}, "spiked": {"_count": 1}}, "thick": {"_count": 1, "armor": {"_count": 1}}, "head": {"_count": 1, "however": {"_count": 1}}, "arms": {"_count": 1, "and": {"_count": 1}}, "Arthurs": {"_count": 1, "fondness": {"_count": 1}}, "you": {"_count": 7, "": {"_count": 1}, "said": {"_count": 1}, "lot": {"_count": 1}, "two": {"_count": 1}, "who": {"_count": 1}, "theyre": {"_count": 1}, "Mr": {"_count": 1}}, "addressed": {"_count": 2, "to": {"_count": 2}}, "taken": {"_count": 1, "a": {"_count": 1}}, "Tonks": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "paint": {"_count": 1}}, "worth": {"_count": 1, "the": {"_count": 1}}, "quite": {"_count": 4, "nasty": {"_count": 1}, "all": {"_count": 1}, "easy": {"_count": 1}, "straightforward": {"_count": 1}}, "proving": {"_count": 1, "tricky": {"_count": 1}}, "Doxycide": {"_count": 1, "": {"_count": 1}}, "skin": {"_count": 1, "seemed": {"_count": 1}}, "ideal": {"_count": 1, "for": {"_count": 1}}, "Unplottable": {"_count": 1, "so": {"_count": 1}}, "I": {"_count": 1, "want": {"_count": 1}}, "headquarters": {"_count": 1, "to": {"_count": 1}}, "Ron": {"_count": 1, "not": {"_count": 1}}, "right": {"_count": 1, "there": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 2}}, "best": {"_count": 1, "to": {"_count": 1}}, "stressful": {"_count": 1, "this": {"_count": 1}}, "outrageous": {"_count": 1, "": {"_count": 1}}, "urgent": {"_count": 4, "apparently": {"_count": 1}, "": {"_count": 3}}, "fantastic": {"_count": 1, "": {"_count": 1}}, "bizarre": {"_count": 1, "said": {"_count": 1}}, "normal": {"_count": 1, "to": {"_count": 1}}, "good": {"_count": 4, "isnt": {"_count": 2}, "Dad": {"_count": 1}, "youre": {"_count": 1}}, "fortyten": {"_count": 1, "forty": {"_count": 1}}, "nuthin": {"_count": 1, "its": {"_count": 1}}, "s": {"_count": 1, "posed": {"_count": 1}}, "jus": {"_count": 1, "that": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 1}, "I": {"_count": 1}}, "often": {"_count": 1, "infested": {"_count": 1}}, "Rons": {"_count": 1, "dad": {"_count": 1}}, "these": {"_count": 1, "ouch": {"_count": 1}}, "two": {"_count": 1, "weeks": {"_count": 1}}, "Use": {"_count": 2, "Against": {"_count": 2}}, "Harry": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "lessons": {"_count": 1, "with": {"_count": 1}}, "funny": {"_count": 1, "isnt": {"_count": 1}}, "none": {"_count": 4, "of": {"_count": 4}}, "against": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "Easter": {"_count": 1, "eggs": {"_count": 1}}, "supposed": {"_count": 2, "to": {"_count": 2}}, "McGonagall": {"_count": 1, "": {"_count": 1}}, "mes": {"_count": 1, "been": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "through": {"_count": 1, "here": {"_count": 1}}, "something": {"_count": 2, "to": {"_count": 2}}, "Longbottom": {"_count": 1, "isnt": {"_count": 1}}, "owner": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "had": {"_count": 1, "rather": {"_count": 1}}, "addled": {"_count": 1, "his": {"_count": 1}}, "lid": {"_count": 1, "was": {"_count": 1}}, "pathetic": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "survivors": {"_count": 1, "guilt": {"_count": 1}}, "rude": {"_count": 1, "to": {"_count": 1}}, "high": {"_count": 1, "time": {"_count": 1}}, "Veritaserum": {"_count": 1, "a": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "Amortentia": {"_count": 1, "": {"_count": 1}}, "liquid": {"_count": 1, "luck": {"_count": 1}}, "five": {"_count": 1, "to": {"_count": 1}}, "yeh": {"_count": 1, "lot": {"_count": 1}}, "Dumbledores": {"_count": 2, "next": {"_count": 1}, "business": {"_count": 1}}, "Leanne": {"_count": 1, "isnt": {"_count": 1}}, "tomorrow": {"_count": 1, "night": {"_count": 1}}, "left": {"_count": 1, "me": {"_count": 1}}, "mainly": {"_count": 1, "": {"_count": 1}}, "fine": {"_count": 3, "he": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}}, "taking": {"_count": 1, "longer": {"_count": 1}}, "terrible": {"_count": 1, "growled": {"_count": 1}}, "Cadwallader": {"_count": 1, "": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "true": {"_count": 1, "then": {"_count": 1}}, "dead": {"_count": 1, "useful": {"_count": 1}}, "natural": {"_count": 1, "to": {"_count": 1}}, "McGonagalls": {"_count": 1, "orders": {"_count": 1}}, "different": {"_count": 1, "said": {"_count": 1}}, "certainly": {"_count": 1, "an": {"_count": 1}}, "metal": {"_count": 1, "connections": {"_count": 1}}, "utter": {"_count": 1, "nonsense": {"_count": 1}}, "keeping": {"_count": 1, "a": {"_count": 1}}, "dreadful": {"_count": 1, "that": {"_count": 1}}, "pure": {"_count": 1, "gold": {"_count": 1}}, "traditional": {"_count": 1, "to": {"_count": 1}}, "binding": {"_count": 1, "was": {"_count": 1}}, "better": {"_count": 1, "like": {"_count": 1}}, "ggone": {"_count": 1, "": {"_count": 1}}, "impossible": {"_count": 2, "to": {"_count": 2}}, "mental": {"_count": 1, "if": {"_count": 1}}, "horrible": {"_count": 1, "isnt": {"_count": 1}}, "pink": {"_count": 1, "cover": {"_count": 1}}, "brilliant": {"_count": 1, "": {"_count": 1}}, "spine": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "simple": {"_count": 1}}, "theirs": {"_count": 1, "said": {"_count": 1}}, "infallible": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 3, "I": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "important": {"_count": 1, "": {"_count": 1}}, "protection": {"_count": 1, "was": {"_count": 1}}, "history": {"_count": 1, "is": {"_count": 1}}, "Travers": {"_count": 1, "hissed": {"_count": 1}}, "beam": {"_count": 1, "fell": {"_count": 1}}, "there": {"_count": 1, "its": {"_count": 1}}, "everywhere": {"_count": 1, "everyones": {"_count": 1}}, "ugly": {"_count": 1, "stone": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "somewhere": {"_count": 1, "here": {"_count": 1}}, "real": {"_count": 1, "for": {"_count": 1}}, "beats": {"_count": 1, "were": {"_count": 1}}, "backfired": {"_count": 1, "on": {"_count": 1}}, "power": {"_count": 1, "is": {"_count": 1}}}, "lucky": {"_count": 84, "its": {"_count": 1, "dark": {"_count": 1}}, "that": {"_count": 5, "Aunt": {"_count": 1}, "Harry": {"_count": 2}, "your": {"_count": 1}, "Ginnys": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 8}, "!": {"_count": 3}}, "because": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 5, "werent": {"_count": 1}, "were": {"_count": 1}, "did": {"_count": 1}, "thought": {"_count": 1}, "think": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}, "ter": {"_count": 1, "catch": {"_count": 1}}, "I": {"_count": 4, "got": {"_count": 1}, "did": {"_count": 1}, "put": {"_count": 1}, "suppose": {"_count": 1}}, "Harry": {"_count": 1, "doesnt": {"_count": 1}}, "once": {"_count": 1, "wasnt": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "Malfoys": {"_count": 1}, "last": {"_count": 1}}, "to": {"_count": 6, "be": {"_count": 2}, "escape": {"_count": 1}, "have": {"_count": 1}, "get": {"_count": 1}, "collect": {"_count": 1}}, "chance": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "even": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 4, "picked": {"_count": 1}, "was": {"_count": 1}, "missed": {"_count": 1}, "hasnt": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "saw": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "Rita": {"_count": 1, "hasnt": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "guesswork": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "perhaps": {"_count": 1, "that": {"_count": 1}}, "their": {"_count": 1, "voices": {"_count": 1}}, "there": {"_count": 1, "would": {"_count": 1}}, "the": {"_count": 2, "Dursleys": {"_count": 1}, "weathers": {"_count": 1}}, "mistake": {"_count": 1, "I": {"_count": 1}}, "escape": {"_count": 1, "Potter": {"_count": 1}}, "ever": {"_count": 1, "to": {"_count": 1}}, "well": {"_count": 1, "be": {"_count": 1}}, "though": {"_count": 1, "do": {"_count": 1}}, "she": {"_count": 1, "shrugged": {"_count": 1}}, "Evans": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "everything": {"_count": 1}}, "day": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "sometimes": {"_count": 1, "I": {"_count": 1}}, "potion": {"_count": 4, "at": {"_count": 1}, "": {"_count": 2}, "Felix": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "e": {"_count": 1, "is": {"_count": 1}}, "number": {"_count": 1, "agree": {"_count": 1}}, "hell": {"_count": 1, "have": {"_count": 1}}, "He": {"_count": 1, "vanished": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}}, "blushed": {"_count": 9, "so": {"_count": 2, "much": {"_count": 1}, "deeply": {"_count": 1}}, "her": {"_count": 1, "top": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "scarlet": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "kept": {"_count": 1}}}, "Madam": {"_count": 330, "Pomfrey": {"_count": 148, "told": {"_count": 2}, "mended": {"_count": 1}, "says": {"_count": 6}, "would": {"_count": 3}, "he": {"_count": 2}, "came": {"_count": 7}, "Hermione": {"_count": 1}, "will": {"_count": 5}, "however": {"_count": 1}, "the": {"_count": 5}, "": {"_count": 14}, "bustled": {"_count": 1}, "as": {"_count": 1}, "wasnt": {"_count": 1}, "grimly": {"_count": 2}, "was": {"_count": 8}, "retreated": {"_count": 1}, "whispered": {"_count": 2}, "who": {"_count": 7}, "wonderingly": {"_count": 1}, "clapped": {"_count": 1}, "never": {"_count": 1}, "took": {"_count": 1}, "couldnt": {"_count": 1}, "sweeping": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}, "let": {"_count": 1}, "is": {"_count": 2}, "ignoring": {"_count": 1}, "clucked": {"_count": 1}, "absentmindedly": {"_count": 1}, "approvingly": {"_count": 1}, "can": {"_count": 2}, "fixed": {"_count": 2}, "shut": {"_count": 1}, "insisted": {"_count": 1}, "said": {"_count": 1}, "one": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 2}, "now": {"_count": 1}, "soothingly": {"_count": 1}, "anxiously": {"_count": 1}, "angrily": {"_count": 1}, "suddenly": {"_count": 1}, "hysterically": {"_count": 1}, "They": {"_count": 1}, "pursed": {"_count": 1}, "stood": {"_count": 1}, "they": {"_count": 1}, "in": {"_count": 1}, "have": {"_count": 1}, "bristling": {"_count": 1}, "hurried": {"_count": 1}, "happy": {"_count": 1}, "before": {"_count": 1}, "standing": {"_count": 1}, "examined": {"_count": 1}, "to": {"_count": 5}, "fussing": {"_count": 1}, "had": {"_count": 3}, "began": {"_count": 1}, "gave": {"_count": 1}, "staring": {"_count": 1}, "led": {"_count": 1}, "giving": {"_count": 1}, "looking": {"_count": 1}, "Hagrid": {"_count": 1}, "after": {"_count": 1}, "cure": {"_count": 1}, "sadly": {"_count": 1}, "thoughts": {"_count": 1}, "poking": {"_count": 1}, "wouldve": {"_count": 1}, "Harry": {"_count": 1}, "but": {"_count": 1}, "turned": {"_count": 1}, "hurrying": {"_count": 1}, "reminded": {"_count": 1}, "bustling": {"_count": 1}, "pushing": {"_count": 1}, "and": {"_count": 3}, "burst": {"_count": 1}, "pressed": {"_count": 1}}, "Malkins": {"_count": 13, "Robes": {"_count": 2}, "shop": {"_count": 1}, "": {"_count": 3}, "robe": {"_count": 1}, "and": {"_count": 2}, "first": {"_count": 1}, "said": {"_count": 1}, "feet": {"_count": 1}, "with": {"_count": 1}}, "Malkin": {"_count": 11, "was": {"_count": 1}, "stood": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "scurrying": {"_count": 1}, "sharply": {"_count": 1}, "squealed": {"_count": 1}, "dithered": {"_count": 1}, "snatching": {"_count": 1}, "tried": {"_count": 1}, "of": {"_count": 1}}, "Hooch": {"_count": 41, "": {"_count": 8}, "arrived": {"_count": 1}, "at": {"_count": 1}, "then": {"_count": 1}, "was": {"_count": 5}, "who": {"_count": 3}, "told": {"_count": 1}, "gave": {"_count": 1}, "spoke": {"_count": 1}, "the": {"_count": 2}, "had": {"_count": 2}, "released": {"_count": 1}, "to": {"_count": 2}, "put": {"_count": 1}, "and": {"_count": 1}, "awoke": {"_count": 1}, "said": {"_count": 1}, "zooming": {"_count": 1}, "blew": {"_count": 1}, "awarded": {"_count": 1}, "screeched": {"_count": 1}, "as": {"_count": 2}, "placed": {"_count": 1}, "but": {"_count": 1}}, "Hoochs": {"_count": 12, "lips": {"_count": 1}, "whistle": {"_count": 7}, "office": {"_count": 1}, "mouth": {"_count": 1}, "shrill": {"_count": 1}, "back": {"_count": 1}}, "Pince": {"_count": 18, "the": {"_count": 2}, "where": {"_count": 1}, "breathing": {"_count": 1}, "": {"_count": 1}, "held": {"_count": 1}, "now": {"_count": 1}, "who": {"_count": 1}, "for": {"_count": 1}, "had": {"_count": 1}, "being": {"_count": 1}, "swept": {"_count": 1}, "was": {"_count": 2}, "prowled": {"_count": 1}, "appeared": {"_count": 1}, "were": {"_count": 1}, "standing": {"_count": 1}}, "Pomfreys": {"_count": 8, "fussing": {"_count": 1}, "view": {"_count": 1}, "arm": {"_count": 1}, "footsteps": {"_count": 1}, "words": {"_count": 1}, "office": {"_count": 2}, "care": {"_count": 1}}, "Z": {"_count": 1, "": {"_count": 1}}, "Marsh": {"_count": 5, "Stan": {"_count": 1}, "said": {"_count": 1}, "clamped": {"_count": 1}, "off": {"_count": 1}, "out": {"_count": 1}}, "Rosmerta": {"_count": 27, "said": {"_count": 2}, "": {"_count": 10}, "a": {"_count": 1}, "thoughtfully": {"_count": 1}, "her": {"_count": 1}, "with": {"_count": 1}, "breathless": {"_count": 1}, "let": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 2}, "for": {"_count": 1}, "didnt": {"_count": 1}, "forcibly": {"_count": 1}, "scurrying": {"_count": 1}, "can": {"_count": 1}}, "Rosmertas": {"_count": 3, "voice": {"_count": 1}, "finest": {"_count": 1}, "under": {"_count": 1}}, "Rosemertas": {"_count": 1, "glittering": {"_count": 1}}, "Bones": {"_count": 22, "": {"_count": 4}, "staring": {"_count": 1}, "after": {"_count": 1}, "said": {"_count": 2}, "at": {"_count": 1}, "sharply": {"_count": 1}, "narrowing": {"_count": 1}, "impatiently": {"_count": 1}, "coolly": {"_count": 1}, "eyes": {"_count": 1}, "looked": {"_count": 1}, "in": {"_count": 1}, "who": {"_count": 1}, "s": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "do": {"_count": 1}, "look": {"_count": 1}}, "Boness": {"_count": 1, "wanting": {"_count": 1}}, "Marchbanks": {"_count": 2, "": {"_count": 1}, "alleged": {"_count": 1}}, "Pinces": {"_count": 1, "shoes": {"_count": 1}}, "Puddifoots": {"_count": 4, "": {"_count": 1}, "Tea": {"_count": 3}}, "Puddifoot": {"_count": 1, "a": {"_count": 1}}, "Edgecombe": {"_count": 1, "from": {"_count": 1}}, "Umbridge": {"_count": 1, "said": {"_count": 1}}, "please": {"_count": 1, "Narcissa": {"_count": 1}}, "Severus": {"_count": 1, "said": {"_count": 1}}, "Lestrange": {"_count": 6, "murmured": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "wishes": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}}, "Pomfrey": {"_count": 148, "told": {"_count": 2, "me": {"_count": 1}, "them": {"_count": 1}}, "mended": {"_count": 1, "it": {"_count": 1}}, "says": {"_count": 6, "hell": {"_count": 2}, "shell": {"_count": 1}, "shes": {"_count": 1}, "he": {"_count": 1}, "theyll": {"_count": 1}}, "would": {"_count": 3, "she": {"_count": 1}, "you": {"_count": 1}, "not": {"_count": 1}}, "he": {"_count": 2, "wanted": {"_count": 1}, "said": {"_count": 1}}, "came": {"_count": 7, "over": {"_count": 2}, "around": {"_count": 1}, "storming": {"_count": 1}, "bustling": {"_count": 1}, "striding": {"_count": 1}, "out": {"_count": 1}}, "Hermione": {"_count": 1, "suggested": {"_count": 1}}, "will": {"_count": 5, "have": {"_count": 1}, "be": {"_count": 2}, "need": {"_count": 1}, "sort": {"_count": 1}}, "however": {"_count": 1, "felt": {"_count": 1}}, "the": {"_count": 5, "nurse": {"_count": 3}, "Hogwarts": {"_count": 1}, "matron": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 12}, "?": {"_count": 2}}, "bustled": {"_count": 1, "over": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "wasnt": {"_count": 1, "at": {"_count": 1}}, "grimly": {"_count": 2, "throwing": {"_count": 1}, "": {"_count": 1}}, "was": {"_count": 8, "holding": {"_count": 1}, "pleased": {"_count": 1}, "bending": {"_count": 1}, "nowhere": {"_count": 1}, "staring": {"_count": 1}, "standing": {"_count": 1}, "curled": {"_count": 1}, "dabbing": {"_count": 1}}, "retreated": {"_count": 1, "leaving": {"_count": 1}}, "whispered": {"_count": 2, "Dumbledore": {"_count": 1}, "to": {"_count": 1}}, "who": {"_count": 7, "was": {"_count": 2}, "left": {"_count": 1}, "had": {"_count": 2}, "seemed": {"_count": 2}}, "wonderingly": {"_count": 1, "": {"_count": 1}}, "clapped": {"_count": 1, "a": {"_count": 1}}, "never": {"_count": 1, "asks": {"_count": 1}}, "took": {"_count": 1, "out": {"_count": 1}}, "couldnt": {"_count": 1, "hear": {"_count": 1}}, "sweeping": {"_count": 1, "over": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "let": {"_count": 1, "them": {"_count": 1}}, "is": {"_count": 2, "still": {"_count": 1}, "patching": {"_count": 1}}, "ignoring": {"_count": 1, "this": {"_count": 1}}, "clucked": {"_count": 1, "disapprovingly": {"_count": 1}}, "absentmindedly": {"_count": 1, "now": {"_count": 1}}, "approvingly": {"_count": 1, "": {"_count": 1}}, "can": {"_count": 2, "mend": {"_count": 2}}, "fixed": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "shut": {"_count": 1, "the": {"_count": 1}}, "insisted": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "one": {"_count": 1, "evening": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "with": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "now": {"_count": 1, "came": {"_count": 1}}, "soothingly": {"_count": 1, "its": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "stuffed": {"_count": 1}}, "hysterically": {"_count": 1, "": {"_count": 1}}, "They": {"_count": 1, "need": {"_count": 1}}, "pursed": {"_count": 1, "her": {"_count": 1}}, "stood": {"_count": 1, "over": {"_count": 1}}, "they": {"_count": 1, "heard": {"_count": 1}}, "in": {"_count": 1, "alarm": {"_count": 1}}, "have": {"_count": 1, "these": {"_count": 1}}, "bristling": {"_count": 1, "": {"_count": 1}}, "hurried": {"_count": 1, "to": {"_count": 1}}, "happy": {"_count": 1, "said": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "standing": {"_count": 1, "at": {"_count": 1}}, "examined": {"_count": 1, "Harrys": {"_count": 1}}, "to": {"_count": 5, "get": {"_count": 1}, "clean": {"_count": 1}, "come": {"_count": 1}, "give": {"_count": 1}, "Hermione": {"_count": 1}}, "fussing": {"_count": 1, "over": {"_count": 1}}, "had": {"_count": 3, "gone": {"_count": 1}, "not": {"_count": 1}, "only": {"_count": 1}}, "began": {"_count": 1, "herding": {"_count": 1}}, "gave": {"_count": 1, "us": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "led": {"_count": 1, "Harry": {"_count": 1}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "looking": {"_count": 1, "startled": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "after": {"_count": 1, "she": {"_count": 1}}, "cure": {"_count": 1, "him": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "thoughts": {"_count": 1, "could": {"_count": 1}}, "poking": {"_count": 1, "her": {"_count": 1}}, "wouldve": {"_count": 1, "done": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "were": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "hurrying": {"_count": 1, "out": {"_count": 1}}, "reminded": {"_count": 1, "them": {"_count": 1}}, "bustling": {"_count": 1, "up": {"_count": 1}}, "pushing": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 3, "now": {"_count": 1}, "began": {"_count": 1}, "a": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "pressed": {"_count": 1, "her": {"_count": 1}}}, "liked": {"_count": 98, "my": {"_count": 2, "new": {"_count": 1}, "nose": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 18, "complain": {"_count": 1}, "disagree": {"_count": 1}, "be": {"_count": 2}, "eat": {"_count": 1}, "go": {"_count": 2}, "have": {"_count": 3}, "discuss": {"_count": 1}, "cross": {"_count": 1}, "reply": {"_count": 1}, "think": {"_count": 1}, "collect": {"_count": 2}, "take": {"_count": 1}, "": {"_count": 1}}, "killin": {"_count": 1, "by": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}, "him": {"_count": 6, "": {"_count": 2}, "a": {"_count": 1}, "much": {"_count": 2}, "hey": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hardly": {"_count": 1, "any": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}, "it": {"_count": 6, "there": {"_count": 1}, "best": {"_count": 1}, "": {"_count": 1}, "even": {"_count": 1}, "very": {"_count": 1}, "in": {"_count": 1}}, "everything": {"_count": 1, "neat": {"_count": 1}}, "Harry": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 1, "Oliver": {"_count": 1}}, "your": {"_count": 1, "valentine": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "big": {"_count": 1, "friends": {"_count": 1}}, "the": {"_count": 8, "Dursleys": {"_count": 1}, "noise": {"_count": 1}, "idea": {"_count": 3}, "set": {"_count": 1}, "D": {"_count": 1}, "stupid": {"_count": 1}}, "them": {"_count": 3, "they": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "this": {"_count": 1, "clock": {"_count": 1}}, "nothing": {"_count": 2, "better": {"_count": 2}}, "Hermione": {"_count": 1, "very": {"_count": 1}}, "Ron": {"_count": 1, "to": {"_count": 1}}, "being": {"_count": 1, "back": {"_count": 1}}, "Diggory": {"_count": 1, "said": {"_count": 1}}, "Percy": {"_count": 1, "least": {"_count": 1}}, "his": {"_count": 1, "little": {"_count": 1}}, "best": {"_count": 1, "of": {"_count": 1}}, "Scabbers": {"_count": 1, "Mum": {"_count": 1}}, "Cho": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "her": {"_count": 7, "": {"_count": 4}, "for": {"_count": 1}, "better": {"_count": 1}, "didnt": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "tove": {"_count": 1, "seen": {"_count": 1}}, "Cedric": {"_count": 1, "and": {"_count": 1}}, "Angelina": {"_count": 1, "for": {"_count": 1}}, "horses": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 4, "": {"_count": 2}, "she": {"_count": 1}, "best": {"_count": 1}}, "perhaps": {"_count": 1, "yet": {"_count": 1}}, "Slughorn": {"_count": 1, "or": {"_count": 1}}, "despite": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 2, "Aragog": {"_count": 1}, "elf": {"_count": 1}}, "most": {"_count": 1, "about": {"_count": 1}}, "books": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 1, "included": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "Scrimgeour": {"_count": 1, "much": {"_count": 1}}, "Ollivander": {"_count": 1, "": {"_count": 1}}}, "earmuffs": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "were": {"_count": 2, "lying": {"_count": 1}, "back": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "are": {"_count": 1, "securely": {"_count": 1}}, "and": {"_count": 1, "carrying": {"_count": 1}}}, "shot": {"_count": 163, "a": {"_count": 17, "sharp": {"_count": 1}, "look": {"_count": 1}, "nasty": {"_count": 1}, "nervous": {"_count": 1}, "very": {"_count": 1}, "number": {"_count": 1}, "shower": {"_count": 1}, "slightly": {"_count": 1}, "malevolent": {"_count": 1}, "furtive": {"_count": 1}, "hex": {"_count": 1}, "curse": {"_count": 1}, "spell": {"_count": 1}, "Stunning": {"_count": 2}, "full": {"_count": 1}, "BodyBind": {"_count": 1}}, "Harry": {"_count": 4, "a": {"_count": 2}, "Ron": {"_count": 1}, "another": {"_count": 1}}, "from": {"_count": 15, "the": {"_count": 9}, "her": {"_count": 1}, "between": {"_count": 1}, "Lupins": {"_count": 1}, "both": {"_count": 1}, "Demelza": {"_count": 1}, "his": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 3}}, "into": {"_count": 6, "the": {"_count": 6}}, "out": {"_count": 21, "of": {"_count": 17}, "": {"_count": 1}, "onto": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}}, "toward": {"_count": 4, "Malfoy": {"_count": 1}, "the": {"_count": 3}}, "at": {"_count": 13, "Wood": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 1}, "it": {"_count": 1}, "Krum": {"_count": 1}, "Hermione": {"_count": 2}, "Ron": {"_count": 1}, "him": {"_count": 3}, "Ginny": {"_count": 1}, "whatever": {"_count": 1}}, "up": {"_count": 4, "in": {"_count": 1}, "through": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}}, "suddenly": {"_count": 3, "toward": {"_count": 1}, "at": {"_count": 1}, "into": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "straight": {"_count": 6, "into": {"_count": 2}, "through": {"_count": 2}, "for": {"_count": 1}, "at": {"_count": 1}}, "backward": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "every": {"_count": 1}}, "after": {"_count": 2, "her": {"_count": 1}, "them": {"_count": 1}}, "him": {"_count": 7, "a": {"_count": 7}}, "off": {"_count": 4, "through": {"_count": 1}, "under": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}, "with": {"_count": 2, "gold": {"_count": 2}}, "They": {"_count": 1, "all": {"_count": 1}}, "beneath": {"_count": 1, "an": {"_count": 1}}, "directly": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 2, "Gryffindor": {"_count": 1}, "Slytherin": {"_count": 1}}, "through": {"_count": 7, "him": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 3}, "Harry": {"_count": 1}}, "strangled": {"_count": 1, "suffocated": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 5, "Ogdens": {"_count": 1}, "him": {"_count": 3}, "people": {"_count": 1}}, "high": {"_count": 1, "into": {"_count": 1}}, "fire": {"_count": 1, "into": {"_count": 1}}, "back": {"_count": 4, "": {"_count": 1}, "inside": {"_count": 1}, "Ron": {"_count": 1}, "Aberforth": {"_count": 1}}, "Stunning": {"_count": 1, "Spells": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "upward": {"_count": 3, "into": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}}, "them": {"_count": 1, "filthy": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "glowering": {"_count": 1, "looks": {"_count": 1}}, "their": {"_count": 1, "own": {"_count": 1}}, "Dumbledore": {"_count": 1, "over": {"_count": 1}}, "right": {"_count": 1, "past": {"_count": 1}}, "forward": {"_count": 1, "like": {"_count": 1}}, "another": {"_count": 1, "blocking": {"_count": 1}}, "past": {"_count": 2, "them": {"_count": 1}, "Harry": {"_count": 1}}, "more": {"_count": 1, "flames": {"_count": 1}}, "Ron": {"_count": 1, "a": {"_count": 1}}, "bolts": {"_count": 1, "at": {"_count": 1}}, "red": {"_count": 1, "sparks": {"_count": 1}}, "but": {"_count": 1, "fought": {"_count": 1}}, "so": {"_count": 1, "close": {"_count": 1}}}, "About": {"_count": 41, "why": {"_count": 1, "hes": {"_count": 1}}, "what": {"_count": 3, "finally": {"_count": 1}, "happened": {"_count": 2}}, "once": {"_count": 2, "a": {"_count": 1}, "every": {"_count": 1}}, "our": {"_count": 1, "world": {"_count": 1}}, "a": {"_count": 3, "hundred": {"_count": 2}, "quarter": {"_count": 1}}, "twenty": {"_count": 3, "ghosts": {"_count": 1}, "pairs": {"_count": 1}, "purpleandgilt": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "how": {"_count": 3, "you": {"_count": 1}, "Ireland": {"_count": 1}, "hes": {"_count": 1}}, "time": {"_count": 7, "too": {"_count": 2}, "said": {"_count": 1}, "": {"_count": 2}, "thought": {"_count": 1}, "I": {"_count": 1}}, "two": {"_count": 1, "hundred": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "twice": {"_count": 1, "as": {"_count": 1}}, "Hagrid": {"_count": 1, "being": {"_count": 1}}, "t": {"_count": 1, "": {"_count": 1}}, "Crouch": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 3, "hat": {"_count": 1}, "kids": {"_count": 1}, "best": {"_count": 1}}, "YouKnowWho": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "what": {"_count": 1}}, "Siri": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "oclock": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}}, "hes": {"_count": 709, "disappeared": {"_count": 1, "": {"_count": 1}}, "gone": {"_count": 15, "": {"_count": 2}, "back": {"_count": 1}, "Pettigrew": {"_count": 1}, "Musta": {"_count": 1}, "missing": {"_count": 1}, "said": {"_count": 1}, "round": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 2}, "a": {"_count": 1}, "for": {"_count": 1}, "away": {"_count": 1}, "home": {"_count": 1}}, "done": {"_count": 9, "": {"_count": 3}, "He": {"_count": 1}, "Ron": {"_count": 1}, "something": {"_count": 2}, "most": {"_count": 1}, "it": {"_count": 1}}, "killed": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "older": {"_count": 3, "": {"_count": 1}, "isnt": {"_count": 1}, "now": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 49, "careless": {"_count": 1}, "sitting": {"_count": 1}, "going": {"_count": 4}, "really": {"_count": 2}, "very": {"_count": 1}, "about": {"_count": 1}, "dead": {"_count": 3}, "stupid": {"_count": 1}, "coming": {"_count": 2}, "said": {"_count": 1}, "unbalanced": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 2}, "": {"_count": 3}, "dangerous": {"_count": 2}, "here": {"_count": 4}, "in": {"_count": 2}, "right": {"_count": 2}, "turned": {"_count": 1}, "back": {"_count": 2}, "fabulous": {"_count": 1}, "perfectly": {"_count": 1}, "had": {"_count": 1}, "fightin": {"_count": 1}, "there": {"_count": 1}, "gettin": {"_count": 1}, "Minister": {"_count": 1}, "afraid": {"_count": 1}, "even": {"_count": 2}, "my": {"_count": 1}}, "still": {"_count": 14, "out": {"_count": 2}, "alive": {"_count": 2}, "going": {"_count": 1}, "fine": {"_count": 1}, "in": {"_count": 2}, "at": {"_count": 1}, "got": {"_count": 2}, "Hes": {"_count": 1}, "fighting": {"_count": 1}, "stuck": {"_count": 1}}, "usually": {"_count": 1, "tremblin": {"_count": 1}}, "a": {"_count": 40, "sort": {"_count": 1}, "prefect": {"_count": 4}, "coward": {"_count": 1}, "couple": {"_count": 1}, "brainless": {"_count": 1}, "Parselmouth": {"_count": 1}, "werewolf": {"_count": 1}, "rat": {"_count": 2}, "Muggle": {"_count": 1}, "great": {"_count": 2}, "genius": {"_count": 1}, "complete": {"_count": 1}, "really": {"_count": 2}, "good": {"_count": 1}, "different": {"_count": 1}, "right": {"_count": 1}, "bit": {"_count": 3}, "murderer": {"_count": 1}, "madman": {"_count": 1}, "grouchy": {"_count": 1}, "teapot": {"_count": 1}, "centaur": {"_count": 1}, "halfblood": {"_count": 1}, "wizard": {"_count": 1}, "tiny": {"_count": 1}, "friend": {"_count": 1}, "prat": {"_count": 1}, "vampire": {"_count": 1}, "very": {"_count": 1}, "a": {"_count": 1}, "git": {"_count": 1}, "wellknown": {"_count": 1}}, "brilliant": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "grown": {"_count": 2, "up": {"_count": 1}, "a": {"_count": 1}}, "useless": {"_count": 1, "he": {"_count": 1}}, "so": {"_count": 8, "bothered": {"_count": 1}, "smart": {"_count": 1}, "popular": {"_count": 1}, "arrogant": {"_count": 1}, "small": {"_count": 1}, "happy": {"_count": 1}, "wellconnected": {"_count": 1}, "tall": {"_count": 1}}, "been": {"_count": 40, "knocked": {"_count": 1}, "controlling": {"_count": 1}, "w": {"_count": 1}, "getting": {"_count": 2}, "offcolor": {"_count": 1}, "helping": {"_count": 2}, "losing": {"_count": 1}, "sleeping": {"_count": 1}, "talking": {"_count": 1}, "teaching": {"_count": 2}, "able": {"_count": 1}, "through": {"_count": 1}, "having": {"_count": 1}, "feeding": {"_count": 1}, "wiped": {"_count": 1}, "asking": {"_count": 1}, "very": {"_count": 1}, "messing": {"_count": 1}, "on": {"_count": 1}, "cooped": {"_count": 1}, "hoping": {"_count": 1}, "trying": {"_count": 1}, "working": {"_count": 2}, "covered": {"_count": 1}, "in": {"_count": 2}, "really": {"_count": 1}, "branded": {"_count": 1}, "to": {"_count": 1}, "here": {"_count": 1}, "sneaking": {"_count": 1}, "disappearing": {"_count": 1}, "arrested": {"_count": 1}, "bitten": {"_count": 1}, "putting": {"_count": 1}, "Kissed": {"_count": 1}}, "the": {"_count": 13, "Slytherin": {"_count": 1}, "one": {"_count": 3}, "Bulgarian": {"_count": 1}, "clever": {"_count": 1}, "editor": {"_count": 1}, "only": {"_count": 1}, "worlds": {"_count": 1}, "size": {"_count": 1}, "best": {"_count": 1}, "father": {"_count": 1}, "real": {"_count": 1}}, "looking": {"_count": 1, "so": {"_count": 1}}, "after": {"_count": 7, "Quirrells": {"_count": 1}, "whatever": {"_count": 1}, "me": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 2}, "Gregorovitch": {"_count": 1}}, "found": {"_count": 2, "a": {"_count": 2}}, "chickened": {"_count": 1, "out": {"_count": 1}}, "going": {"_count": 24, "to": {"_count": 22}, "a": {"_count": 1}, "who": {"_count": 1}}, "blocked": {"_count": 1, "by": {"_count": 1}}, "doing": {"_count": 14, "Hagrid": {"_count": 1}, "Shut": {"_count": 1}, "this": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 7}, "does": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}}, "mine": {"_count": 1, "bought": {"_count": 1}}, "six": {"_count": 1, "hundred": {"_count": 1}}, "runnin": {"_count": 1, "back": {"_count": 1}}, "only": {"_count": 7, "a": {"_count": 3}, "human": {"_count": 1}, "saying": {"_count": 1}, "had": {"_count": 1}, "just": {"_count": 1}}, "got": {"_count": 40, "a": {"_count": 6}, "Dumbledore": {"_count": 1}, "Hermiones": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 2}, "time": {"_count": 1}, "thirty": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 6}, "his": {"_count": 2}, "lumbago": {"_count": 1}, "her": {"_count": 1}, "MadEye": {"_count": 1}, "ages": {"_count": 1}, "I": {"_count": 1}, "enough": {"_count": 1}, "other": {"_count": 1}, "left": {"_count": 1}, "an": {"_count": 1}, "style": {"_count": 1}, "you": {"_count": 2}, "support": {"_count": 1}, "ten": {"_count": 1}, "hundreds": {"_count": 1}, "them": {"_count": 1}, "something": {"_count": 1}}, "too": {"_count": 4, "friendly": {"_count": 1}, "thick": {"_count": 1}, "soft": {"_count": 1}, "sore": {"_count": 1}}, "here": {"_count": 5, "in": {"_count": 1}, "Harrys": {"_count": 1}, "its": {"_count": 1}, "": {"_count": 1}, "Hokey": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 2}, ".": {"_count": 4}}, "in": {"_count": 11, "London": {"_count": 1}, "Gryffindor": {"_count": 1}, "the": {"_count": 5}, "big": {"_count": 1}, "": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}}, "always": {"_count": 10, "banging": {"_count": 1}, "boasting": {"_count": 1}, "shunted": {"_count": 1}, "thought": {"_count": 1}, "talking": {"_count": 1}, "moaning": {"_count": 1}, "popping": {"_count": 1}, "been": {"_count": 1}, "interested": {"_count": 1}, "asleep": {"_count": 1}}, "famous": {"_count": 3, "": {"_count": 3}}, "worried": {"_count": 2, "said": {"_count": 1}, "growled": {"_count": 1}}, "very": {"_count": 4, "ambitious": {"_count": 1}, "well": {"_count": 1}, "good": {"_count": 1}, "busy": {"_count": 1}}, "written": {"_count": 1, "almost": {"_count": 1}}, "ill": {"_count": 6, "": {"_count": 5}, "Every": {"_count": 1}}, "left": {"_count": 4, "said": {"_count": 1}, "the": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 7, "internationally": {"_count": 1}, "old": {"_count": 1}, "Animagus": {"_count": 2}, "Obliviator": {"_count": 1}, "international": {"_count": 1}, "idiot": {"_count": 1}}, "made": {"_count": 5, "to": {"_count": 1}, "friends": {"_count": 1}, "me": {"_count": 1}, "sure": {"_count": 1}, "himself": {"_count": 1}}, "pureblood": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "expelled": {"_count": 1, "": {"_count": 1}}, "saying": {"_count": 4, "said": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 1}}, "told": {"_count": 4, "dear": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}}, "all": {"_count": 8, "right": {"_count": 3}, "clammy": {"_count": 1}, "excited": {"_count": 1}, "for": {"_count": 1}, "righd": {"_count": 1}, "interesting": {"_count": 1}}, "off": {"_count": 3, "to": {"_count": 1}, "delivering": {"_count": 1}, "up": {"_count": 1}}, "bursting": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 12, "to": {"_count": 10}, "there": {"_count": 1}, "at": {"_count": 1}}, "Slytherins": {"_count": 1, "heir": {"_count": 1}}, "really": {"_count": 9, "divine": {"_count": 1}, "up": {"_count": 1}, "busy": {"_count": 1}, "": {"_count": 1}, "frustrated": {"_count": 1}, "come": {"_count": 1}, "done": {"_count": 1}, "looking": {"_count": 1}, "angry": {"_count": 1}}, "learning": {"_count": 1, "loads": {"_count": 1}}, "no": {"_count": 1, "good": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "back": {"_count": 11, "in": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 4}, "or": {"_count": 1}, "especially": {"_count": 1}, "they": {"_count": 1}, "hes": {"_count": 1}, "its": {"_count": 1}}, "happy": {"_count": 1, "not": {"_count": 1}}, "fine": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 4, "Hogwarts": {"_count": 1}, "your": {"_count": 1}, "headquarters": {"_count": 1}, "Grimmauld": {"_count": 1}}, "had": {"_count": 10, "twelve": {"_count": 1}, "those": {"_count": 1}, "it": {"_count": 2}, "people": {"_count": 1}, "done": {"_count": 1}, "them": {"_count": 4}}, "accusing": {"_count": 1, "me": {"_count": 1}}, "hungry": {"_count": 1, "when": {"_count": 1}}, "breathing": {"_count": 1, "whispered": {"_count": 1}}, "okay": {"_count": 2, "": {"_count": 1}, "But": {"_count": 1}}, "sayin": {"_count": 1, "its": {"_count": 1}}, "complained": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 11, "an": {"_count": 1}, "too": {"_count": 1}, "been": {"_count": 1}, "turned": {"_count": 1}, "making": {"_count": 1}, "sad": {"_count": 1}, "shut": {"_count": 1}, "sore": {"_count": 1}, "trying": {"_count": 1}, "finishing": {"_count": 1}, "eaten": {"_count": 1}}, "lost": {"_count": 2, "track": {"_count": 1}, "the": {"_count": 1}}, "trying": {"_count": 6, "to": {"_count": 6}}, "mad": {"_count": 2, "Minister": {"_count": 1}, "SHUT": {"_count": 1}}, "broken": {"_count": 3, "out": {"_count": 2}, "his": {"_count": 1}}, "dangerous": {"_count": 2, "Malfoys": {"_count": 1}, "": {"_count": 1}}, "heard": {"_count": 1, "a": {"_count": 1}}, "seeing": {"_count": 2, "things": {"_count": 1}, "them": {"_count": 1}}, "like": {"_count": 3, "": {"_count": 2}, "utterly": {"_count": 1}}, "ever": {"_count": 3, "had": {"_count": 2}, "taken": {"_count": 1}}, "supposed": {"_count": 4, "to": {"_count": 4}}, "working": {"_count": 2, "for": {"_count": 1}, "on": {"_count": 1}}, "half": {"_count": 2, "dead": {"_count": 1}, "giant": {"_count": 1}}, "concerned": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 2, "Fudge": {"_count": 1}, "before": {"_count": 1}}, "planted": {"_count": 1, "in": {"_count": 1}}, "tied": {"_count": 2, "outside": {"_count": 1}, "up": {"_count": 1}}, "horrible": {"_count": 1, "whispered": {"_count": 1}}, "resigned": {"_count": 1, "doesnt": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 1}, "our": {"_count": 1}, "my": {"_count": 1}}, "sleeping": {"_count": 2, "Ron": {"_count": 1}, "said": {"_count": 1}}, "being": {"_count": 2, "stupid": {"_count": 1}, "selfish": {"_count": 1}}, "Pig": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 2}}, "tired": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 4, "": {"_count": 2}, "Harry": {"_count": 1}, "Im": {"_count": 1}}, "about": {"_count": 2, "to": {"_count": 1}, "as": {"_count": 1}}, "sitting": {"_count": 1, "right": {"_count": 1}}, "reading": {"_count": 1, "the": {"_count": 1}}, "handsome": {"_count": 1, "said": {"_count": 1}}, "hiding": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 4, "of": {"_count": 3}, "himself": {"_count": 1}}, "asking": {"_count": 2, "for": {"_count": 1}, "What": {"_count": 1}}, "welcome": {"_count": 1, "to": {"_count": 1}}, "faced": {"_count": 1, "this": {"_count": 1}}, "much": {"_count": 1, "too": {"_count": 1}}, "showing": {"_count": 1, "and": {"_count": 1}}, "earned": {"_count": 1, "a": {"_count": 1}}, "getting": {"_count": 4, "on": {"_count": 1}, "stronger": {"_count": 2}, "old": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "hoping": {"_count": 1, "youll": {"_count": 1}}, "righ": {"_count": 1, "o": {"_count": 1}}, "definitely": {"_count": 1, "doing": {"_count": 1}}, "giving": {"_count": 1, "him": {"_count": 1}}, "caught": {"_count": 1, "": {"_count": 1}}, "dying": {"_count": 1, "said": {"_count": 1}}, "taken": {"_count": 2, "a": {"_count": 1}, "said": {"_count": 1}}, "seen": {"_count": 2, "its": {"_count": 1}, "Crouch": {"_count": 1}}, "quoted": {"_count": 1, "in": {"_count": 1}}, "stopped": {"_count": 2, "turning": {"_count": 1}, "killing": {"_count": 1}}, "hes": {"_count": 2, "out": {"_count": 1}, "with": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 3}, "there": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "bin": {"_count": 2, "lately": {"_count": 1}, "in": {"_count": 1}}, "asleep": {"_count": 1, "": {"_count": 1}}, "somewhere": {"_count": 2, "in": {"_count": 1}, "abroad": {"_count": 1}}, "using": {"_count": 3, "a": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "dead": {"_count": 4, "": {"_count": 4}}, "injured": {"_count": 1, "Dumbledore": {"_count": 1}}, "coming": {"_count": 2, "over": {"_count": 1}, "now": {"_count": 1}}, "freezing": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "known": {"_count": 1}}, "trustworthy": {"_count": 1, "": {"_count": 1}}, "listening": {"_count": 1, "next": {"_count": 1}}, "sending": {"_count": 1, "dismembers": {"_count": 1}}, "holding": {"_count": 1, "and": {"_count": 1}}, "friendly": {"_count": 1, "with": {"_count": 1}}, "also": {"_count": 1, "very": {"_count": 1}}, "dealt": {"_count": 1, "with": {"_count": 1}}, "planning": {"_count": 1, "": {"_count": 1}}, "never": {"_count": 5, "quite": {"_count": 1}, "snogged": {"_count": 1}, "had": {"_count": 1}, "been": {"_count": 1}, "mentioned": {"_count": 1}}, "become": {"_count": 1, "fond": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "come": {"_count": 2, "back": {"_count": 1}, "out": {"_count": 1}}, "interested": {"_count": 2, "in": {"_count": 2}}, "concentrating": {"_count": 1, "on": {"_count": 1}}, "Dont": {"_count": 1, "kid": {"_count": 1}}, "quite": {"_count": 2, "right": {"_count": 2}}, "touched": {"_count": 1, "in": {"_count": 1}}, "our": {"_count": 2, "financial": {"_count": 1}, "dad": {"_count": 1}}, "telling": {"_count": 2, "the": {"_count": 1}, "us": {"_count": 1}}, "losing": {"_count": 1, "his": {"_count": 1}}, "returned": {"_count": 1, "": {"_count": 1}}, "barking": {"_count": 1, "the": {"_count": 1}}, "kidding": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "best": {"_count": 1}}, "properly": {"_count": 1, "alive": {"_count": 1}}, "that": {"_count": 2, "bloke": {"_count": 1}, "son": {"_count": 1}}, "afraid": {"_count": 1, "Dumbledores": {"_count": 1}}, "hurt": {"_count": 1, "or": {"_count": 1}}, "given": {"_count": 1, "her": {"_count": 1}}, "marking": {"_count": 1, "to": {"_count": 1}}, "keen": {"_count": 1, "to": {"_count": 1}}, "pleased": {"_count": 2, "too": {"_count": 1}, "said": {"_count": 1}}, "heading": {"_count": 1, "straight": {"_count": 1}}, "avoiding": {"_count": 1, "us": {"_count": 1}}, "my": {"_count": 2, "special": {"_count": 1}, "brother": {"_count": 1}}, "bleeding": {"_count": 1, "like": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "alive": {"_count": 4, "and": {"_count": 1}, "": {"_count": 3}}, "facing": {"_count": 1, "and": {"_count": 1}}, "possessing": {"_count": 1, "me": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "visiting": {"_count": 1, "tonight": {"_count": 1}}, "delighted": {"_count": 1, "his": {"_count": 1}}, "spent": {"_count": 1, "a": {"_count": 1}}, "actually": {"_count": 2, "trying": {"_count": 1}, "been": {"_count": 1}}, "delusional": {"_count": 1, "": {"_count": 1}}, "published": {"_count": 1, "in": {"_count": 1}}, "talkin": {"_count": 1, "abou": {"_count": 1}}, "said": {"_count": 1, "his": {"_count": 1}}, "scored": {"_count": 1, "": {"_count": 1}}, "willin": {"_count": 1, "": {"_count": 1}}, "harmless": {"_count": 1, "": {"_count": 1}}, "gettin": {"_count": 2, "better": {"_count": 2}}, "d": {"_count": 1, "HE": {"_count": 1}}, "roped": {"_count": 1, "it": {"_count": 1}}, "better": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "treated": {"_count": 1, "when": {"_count": 1}}, "certainly": {"_count": 2, "got": {"_count": 1}, "seen": {"_count": 1}}, "chosen": {"_count": 1, "Draco": {"_count": 1}}, "good": {"_count": 1, "": {"_count": 1}}, "brought": {"_count": 2, "you": {"_count": 1}, "a": {"_count": 1}}, "already": {"_count": 2, "reserved": {"_count": 1}, "got": {"_count": 1}}, "replaced": {"_count": 1, "his": {"_count": 1}}, "busy": {"_count": 2, "said": {"_count": 1}, "I": {"_count": 1}}, "waving": {"_count": 1, "at": {"_count": 1}}, "dyin": {"_count": 1, "": {"_count": 1}}, "stealing": {"_count": 1, "Harry": {"_count": 1}}, "cornin": {"_count": 1, "on": {"_count": 1}}, "sided": {"_count": 1, "with": {"_count": 1}}, "joined": {"_count": 1, "up": {"_count": 1}}, "won": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 1, "best": {"_count": 1}}, "bound": {"_count": 2, "to": {"_count": 2}}, "something": {"_count": 1, "special": {"_count": 1}}, "eating": {"_count": 1, "her": {"_count": 1}}, "helped": {"_count": 2, "me": {"_count": 1}, "us": {"_count": 1}}, "acting": {"_count": 2, "on": {"_count": 1}, "like": {"_count": 1}}, "He": {"_count": 1, "broke": {"_count": 1}}, "playing": {"_count": 1, "them": {"_count": 1}}, "meeting": {"_count": 1, "and": {"_count": 1}}, "shown": {"_count": 1, "them": {"_count": 1}}, "sensitive": {"_count": 1, "people": {"_count": 1}}, "more": {"_count": 1, "concerned": {"_count": 1}}, "hinting": {"_count": 1, "now": {"_count": 1}}, "fixed": {"_count": 1, "it": {"_count": 1}}, "put": {"_count": 1, "extra": {"_count": 1}}, "gotta": {"_count": 1, "keep": {"_count": 1}}, "behind": {"_count": 1, "it": {"_count": 1}}, "taking": {"_count": 1, "over": {"_count": 1}}, "abroad": {"_count": 1, "": {"_count": 1}}, "probably": {"_count": 1, "killed": {"_count": 1}}, "most": {"_count": 1, "dangerous": {"_count": 1}}, "pretty": {"_count": 1, "tall": {"_count": 1}}, "comingl": {"_count": 1, "As": {"_count": 1}}, "tried": {"_count": 1, "everything": {"_count": 1}}, "lying": {"_count": 2, "in": {"_count": 1}, "Harry": {"_count": 1}}, "identified": {"_count": 1, "most": {"_count": 1}}, "Harry": {"_count": 1, "remembered": {"_count": 1}}, "seriously": {"_count": 1, "angry": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "keeping": {"_count": 1, "Nagini": {"_count": 1}}, "expecting": {"_count": 1, "": {"_count": 1}}, "creepy": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "Longbottom": {"_count": 1}}}, "reached": {"_count": 411, "the": {"_count": 204, "point": {"_count": 1}, "rock": {"_count": 1}, "station": {"_count": 1}, "dividing": {"_count": 1}, "cliff": {"_count": 1}, "portrait": {"_count": 7}, "end": {"_count": 13}, "top": {"_count": 7}, "corner": {"_count": 2}, "shed": {"_count": 1}, "corridor": {"_count": 4}, "unicorn": {"_count": 1}, "door": {"_count": 12}, "staircase": {"_count": 1}, "upstairs": {"_count": 1}, "landing": {"_count": 2}, "highway": {"_count": 1}, "passage": {"_count": 1}, "changing": {"_count": 1}, "entrance": {"_count": 10}, "oak": {"_count": 2}, "ridge": {"_count": 1}, "edge": {"_count": 6}, "safety": {"_count": 1}, "hall": {"_count": 3}, "teachers": {"_count": 1}, "classroom": {"_count": 1}, "shelf": {"_count": 1}, "welllit": {"_count": 1}, "dormitory": {"_count": 2}, "stone": {"_count": 5}, "inside": {"_count": 1}, "castle": {"_count": 4}, "hinkypunk": {"_count": 1}, "trunk": {"_count": 1}, "other": {"_count": 2}, "gap": {"_count": 1}, "dark": {"_count": 1}, "lakeshore": {"_count": 1}, "opposite": {"_count": 1}, "trees": {"_count": 2}, "bottom": {"_count": 9}, "very": {"_count": 3}, "campfire": {"_count": 1}, "Minister": {"_count": 1}, "tents": {"_count": 1}, "first": {"_count": 3}, "Great": {"_count": 1}, "front": {"_count": 4}, "right": {"_count": 1}, "table": {"_count": 3}, "mouth": {"_count": 1}, "statue": {"_count": 1}, "place": {"_count": 3}, "largest": {"_count": 1}, "Triwizard": {"_count": 1}, "part": {"_count": 2}, "swings": {"_count": 1}, "desk": {"_count": 1}, "second": {"_count": 2}, "ninthlevel": {"_count": 1}, "pavement": {"_count": 2}, "foot": {"_count": 2}, "firstfloor": {"_count": 1}, "soothing": {"_count": 1}, "Orders": {"_count": 1}, "greenhouses": {"_count": 1}, "wooden": {"_count": 1}, "highly": {"_count": 1}, "black": {"_count": 1}, "peace": {"_count": 1}, "fresh": {"_count": 1}, "polished": {"_count": 1}, "seventh": {"_count": 2}, "dungeons": {"_count": 1}, "stairs": {"_count": 1}, "cool": {"_count": 1}, "dais": {"_count": 1}, "floor": {"_count": 1}, "ground": {"_count": 2}, "number": {"_count": 1}, "wall": {"_count": 1}, "paper": {"_count": 1}, "spot": {"_count": 2}, "Fat": {"_count": 2}, "staff": {"_count": 1}, "person": {"_count": 1}, "seat": {"_count": 1}, "High": {"_count": 1}, "boulder": {"_count": 1}, "bank": {"_count": 3}, "grounds": {"_count": 1}, "hospital": {"_count": 1}, "living": {"_count": 2}, "sanctuary": {"_count": 1}, "seclusion": {"_count": 1}, "fence": {"_count": 1}, "topmost": {"_count": 1}, "bottommost": {"_count": 1}, "Atrium": {"_count": 1}, "grave": {"_count": 1}, "dressing": {"_count": 1}, "next": {"_count": 1}, "drawing": {"_count": 1}, "island": {"_count": 1}, "wand": {"_count": 1}, "barrier": {"_count": 1}}, "out": {"_count": 25, "and": {"_count": 6}, "a": {"_count": 8}, "toward": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 3}, "seized": {"_count": 1}, "his": {"_count": 1}, "straightened": {"_count": 1}, "groping": {"_count": 1}, "from": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "for": {"_count": 17, "a": {"_count": 1}, "the": {"_count": 6}, "their": {"_count": 1}, "his": {"_count": 7}, "Hagrids": {"_count": 1}, "her": {"_count": 1}}, "a": {"_count": 24, "snowy": {"_count": 1}, "kind": {"_count": 1}, "fork": {"_count": 2}, "door": {"_count": 3}, "decision": {"_count": 1}, "level": {"_count": 2}, "large": {"_count": 1}, "quiet": {"_count": 1}, "dark": {"_count": 1}, "second": {"_count": 1}, "right": {"_count": 1}, "parting": {"_count": 1}, "street": {"_count": 1}, "dead": {"_count": 1}, "place": {"_count": 1}, "small": {"_count": 1}, "corridor": {"_count": 1}, "new": {"_count": 1}, "river": {"_count": 1}, "pillar": {"_count": 1}}, "Kings": {"_count": 3, "Cross": {"_count": 3}}, "inside": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "Harrys": {"_count": 4, "name": {"_count": 1}, "ears": {"_count": 3}}, "into": {"_count": 5, "the": {"_count": 3}, "Ginnys": {"_count": 1}, "his": {"_count": 1}}, "Professor": {"_count": 2, "Dumbledores": {"_count": 1}, "Flitwicks": {"_count": 1}}, "his": {"_count": 10, "nostrils": {"_count": 1}, "vault": {"_count": 1}, "wand": {"_count": 1}, "thirteenth": {"_count": 1}, "ears": {"_count": 1}, "belt": {"_count": 1}, "navel": {"_count": 1}, "cabin": {"_count": 1}, "destination": {"_count": 1}, "shoulders": {"_count": 1}}, "another": {"_count": 1, "door": {"_count": 1}}, "up": {"_count": 10, "and": {"_count": 5}, "to": {"_count": 4}, "pulled": {"_count": 1}}, "London": {"_count": 1, "than": {"_count": 1}}, "an": {"_count": 4, "alltime": {"_count": 1}, "unspoken": {"_count": 1}, "understanding": {"_count": 1}, "alarming": {"_count": 1}}, "by": {"_count": 1, "means": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 2}, "their": {"_count": 1}}, "Lockharts": {"_count": 1, "classroom": {"_count": 1}}, "forward": {"_count": 2, "picked": {"_count": 1}, "and": {"_count": 1}}, "their": {"_count": 11, "full": {"_count": 1}, "ears": {"_count": 3}, "familiar": {"_count": 1}, "own": {"_count": 1}, "nostrils": {"_count": 1}, "Defense": {"_count": 1}, "side": {"_count": 1}, "decision": {"_count": 1}, "table": {"_count": 1}}, "it": {"_count": 7, "she": {"_count": 1}, "": {"_count": 2}, "Hermione": {"_count": 1}, "they": {"_count": 2}, "wishing": {"_count": 1}}, "absently": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 4, "and": {"_count": 1}, "last": {"_count": 1}, "even": {"_count": 1}, "from": {"_count": 1}}, "him": {"_count": 6, "before": {"_count": 1}, "": {"_count": 2}, "holding": {"_count": 1}, "Bill": {"_count": 1}, "through": {"_count": 1}}, "Hagrids": {"_count": 3, "house": {"_count": 1}, "hut": {"_count": 1}, "cabin": {"_count": 1}}, "such": {"_count": 3, "a": {"_count": 3}}, "across": {"_count": 2, "to": {"_count": 1}, "Ron": {"_count": 1}}, "underneath": {"_count": 1, "his": {"_count": 1}}, "them": {"_count": 6, "and": {"_count": 2}, "": {"_count": 1}, "Dudley": {"_count": 1}, "from": {"_count": 1}, "he": {"_count": 1}}, "howling": {"_count": 1, "point": {"_count": 1}}, "down": {"_count": 2, "for": {"_count": 1}, "beside": {"_count": 1}}, "Hogsmeade": {"_count": 2, "or": {"_count": 1}, "and": {"_count": 1}}, "open": {"_count": 1, "ground": {"_count": 1}}, "roughly": {"_count": 1, "the": {"_count": 1}}, "Hogwarts": {"_count": 1, "Castle": {"_count": 1}}, "Dumbledore": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "s": {"_count": 1}}, "again": {"_count": 2, "into": {"_count": 2}}, "me": {"_count": 2, "here": {"_count": 1}, "since": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "our": {"_count": 1, "decision": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "waterskiing": {"_count": 1, "budgerigars": {"_count": 1}}, "number": {"_count": 2, "four": {"_count": 1}, "ninetyseven": {"_count": 1}}, "past": {"_count": 1, "Harry": {"_count": 1}}, "Gryffindors": {"_count": 1, "Ginny": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 3, "a": {"_count": 1}, "": {"_count": 2}}, "Filch": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "Umbridges": {"_count": 1, "door": {"_count": 1}}, "in": {"_count": 1, "time": {"_count": 1}}, "compartment": {"_count": 1, "C": {"_count": 1}}, "your": {"_count": 1, "old": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "this": {"_count": 5, "island": {"_count": 2}, "unwelcome": {"_count": 1}, "uneasy": {"_count": 1}, "conclusion": {"_count": 1}}, "right": {"_count": 1, "down": {"_count": 1}}, "my": {"_count": 1, "decision": {"_count": 1}}, "instinctively": {"_count": 1, "for": {"_count": 1}}, "what": {"_count": 1, "appeared": {"_count": 1}}}, "anxious": {"_count": 68, "to": {"_count": 4, "discuss": {"_count": 1}, "see": {"_count": 1}, "meet": {"_count": 1}, "give": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "crowd": {"_count": 1, "of": {"_count": 1}}, "expression": {"_count": 1, "and": {"_count": 1}}, "look": {"_count": 3, "at": {"_count": 2}, "as": {"_count": 1}}, "than": {"_count": 2, "Percy": {"_count": 1}, "unkind": {"_count": 1}}, "but": {"_count": 2, "Harry": {"_count": 1}, "before": {"_count": 1}}, "inquiries": {"_count": 1, "about": {"_count": 1}}, "about": {"_count": 3, "how": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "himself": {"_count": 1, "now": {"_count": 1}}, "shouts": {"_count": 1, "and": {"_count": 1}}, "indeed": {"_count": 1, "bounced": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 3}}, "as": {"_count": 3, "Hermione": {"_count": 1}, "he": {"_count": 1}, "Professor": {"_count": 1}}, "and": {"_count": 4, "hushed": {"_count": 1}, "somehow": {"_count": 1}, "checking": {"_count": 1}, "a": {"_count": 1}}, "if": {"_count": 1, "anything": {"_count": 1}}, "hand": {"_count": 1, "on": {"_count": 1}}, "looks": {"_count": 2, "in": {"_count": 1}, "over": {"_count": 1}}, "twisted": {"_count": 1, "feeling": {"_count": 1}}, "tone": {"_count": 1, "Dyou": {"_count": 1}}, "parents": {"_count": 2, "who": {"_count": 1}, "were": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "glances": {"_count": 1, "but": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "expressions": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "sinking": {"_count": 1}}}, "discuss": {"_count": 48, "the": {"_count": 9, "real": {"_count": 1}, "murders": {"_count": 1}, "matter": {"_count": 4}, "running": {"_count": 1}, "thing": {"_count": 1}, "match": {"_count": 1}}, "his": {"_count": 3, "career": {"_count": 1}, "scar": {"_count": 1}, "theory": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "tactics": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 1, "watched": {"_count": 1}}, "with": {"_count": 5, "you": {"_count": 2}, "Lee": {"_count": 1}, "Rufus": {"_count": 1}, "him": {"_count": 1}}, "when": {"_count": 1, "topics": {"_count": 1}}, "elf": {"_count": 1, "rights": {"_count": 1}}, "their": {"_count": 2, "argument": {"_count": 1}, "future": {"_count": 1}}, "it": {"_count": 4, "in": {"_count": 1}, "would": {"_count": 1}, "said": {"_count": 1}, "They": {"_count": 1}}, "what": {"_count": 3, "had": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "and": {"_count": 1, "least": {"_count": 1}}, "that": {"_count": 1, "after": {"_count": 1}}, "your": {"_count": 2, "security": {"_count": 1}, "options": {"_count": 1}}, "first": {"_count": 1, "said": {"_count": 1}}, "Sirius": {"_count": 1, "it": {"_count": 1}}, "Siriuss": {"_count": 1, "death": {"_count": 1}}, "our": {"_count": 1, "options": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "this": {"_count": 2, "new": {"_count": 1}, "Griphook": {"_count": 1}}, "Ron": {"_count": 2, "which": {"_count": 1}, "at": {"_count": 1}}, "codes": {"_count": 1, "or": {"_count": 1}}, "whether": {"_count": 1, "they": {"_count": 1}}}, "real": {"_count": 217, "reason": {"_count": 4, "she": {"_count": 1}, "Ginny": {"_count": 1}, "that": {"_count": 1}, "youre": {"_count": 1}}, "air": {"_count": 1, "rifle": {"_count": 1}}, "live": {"_count": 1, "rather": {"_count": 1}}, "mystry": {"_count": 1, "of": {"_count": 1}}, "spell": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 2, "Those": {"_count": 1}, "and": {"_count": 1}}, "wizards": {"_count": 1, "": {"_count": 1}}, "damage": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 3, "even": {"_count": 1}, "was": {"_count": 1}, "not": {"_count": 1}}, "shock": {"_count": 3, "when": {"_count": 1}, "came": {"_count": 1}, "Dont": {"_count": 1}}, "pocket": {"_count": 1, "": {"_count": 1}}, "present": {"_count": 1, "let": {"_count": 1}}, "Quidditch": {"_count": 1, "balls": {"_count": 1}}, "Lockhart": {"_count": 2, "was": {"_count": 1}, "lit": {"_count": 1}}, "magical": {"_count": 1, "me": {"_count": 1}}, "emergency": {"_count": 1, "section": {"_count": 1}}, "thing": {"_count": 7, "": {"_count": 4}, "in": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "panic": {"_count": 1, "": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "snake": {"_count": 1, "": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 6}, "?": {"_count": 4}, "!": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "you": {"_count": 1, "I": {"_count": 1}}, "loyalty": {"_count": 1, "down": {"_count": 1}}, "witch": {"_count": 1, "or": {"_count": 1}}, "problem": {"_count": 1, "for": {"_count": 1}}, "Muggle": {"_count": 2, "hed": {"_count": 1}, "for": {"_count": 1}}, "Neville": {"_count": 2, "Longbottom": {"_count": 2}}, "treat": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "injury": {"_count": 1, "snarled": {"_count": 1}}, "fluttering": {"_count": 1, "fairies": {"_count": 1}}, "Harry": {"_count": 6, "was": {"_count": 1}, "Potter": {"_count": 1}, "thought": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "who": {"_count": 1}}, "wand": {"_count": 2, "and": {"_count": 2}}, "Firebolt": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "dementor": {"_count": 3, "into": {"_count": 1}, "": {"_count": 2}}, "humans": {"_count": 1, "can": {"_count": 1}}, "prediction": {"_count": 2, "": {"_count": 2}}, "Patronus": {"_count": 1, "": {"_count": 1}}, "pleasure": {"_count": 1, "teaching": {"_count": 1}}, "predictions": {"_count": 1, "up": {"_count": 1}}, "breakfast": {"_count": 1, "when": {"_count": 1}}, "post": {"_count": 1, "owl": {"_count": 1}}, "practical": {"_count": 1, "joker": {"_count": 1}}, "trouble": {"_count": 4, "": {"_count": 1}, "stringing": {"_count": 1}, "finding": {"_count": 1}, "and": {"_count": 1}}, "Muggles": {"_count": 1, "camp": {"_count": 1}}, "mess": {"_count": 2, "": {"_count": 2}}, "Krum": {"_count": 1, "the": {"_count": 1}}, "culprit": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 9, "": {"_count": 6}, "who": {"_count": 1}, "where": {"_count": 1}, "Griphook": {"_count": 1}}, "stroke": {"_count": 1, "of": {"_count": 1}}, "strength": {"_count": 1, "of": {"_count": 1}}, "But": {"_count": 1, "Dumbledore": {"_count": 1}}, "first": {"_count": 1, "name": {"_count": 1}}, "intention": {"_count": 1, "however": {"_count": 1}}, "eggs": {"_count": 1, "they": {"_count": 1}}, "idiot": {"_count": 1, "if": {"_count": 1}}, "hooting": {"_count": 1, "golden": {"_count": 1}}, "help": {"_count": 1, "mind": {"_count": 1}}, "job": {"_count": 1, "mastering": {"_count": 1}}, "rival": {"_count": 1, "You": {"_count": 1}}, "blow": {"_count": 1, "to": {"_count": 1}}, "note": {"_count": 1, "of": {"_count": 1}}, "wizard": {"_count": 1, "then": {"_count": 1}}, "Moody": {"_count": 3, "would": {"_count": 1}, "close": {"_count": 1}, "lying": {"_count": 1}}, "MadEye": {"_count": 2, "Moody": {"_count": 2}}, "eye": {"_count": 1, "replaced": {"_count": 1}}, "Potter": {"_count": 1, "would": {"_count": 1}}, "asset": {"_count": 1, "too": {"_count": 1}}, "need": {"_count": 3, "Hagrids": {"_count": 1}, "for": {"_count": 1}, "of": {"_count": 1}}, "fans": {"_count": 1, "theyre": {"_count": 1}}, "world": {"_count": 3, "": {"_count": 1}, "she": {"_count": 1}, "dyou": {"_count": 1}}, "hope": {"_count": 1, "of": {"_count": 1}}, "whiner": {"_count": 1, "hes": {"_count": 1}}, "training": {"_count": 1, "session": {"_count": 1}}, "responsibility": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 4, "him": {"_count": 4}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "spells": {"_count": 1, "You": {"_count": 1}}, "old": {"_count": 1, "fraud": {"_count": 1}}, "use": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "conviction": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "duel": {"_count": 1, "situation": {"_count": 1}}, "Galleons": {"_count": 2, "thats": {"_count": 1}, "to": {"_count": 1}}, "desperation": {"_count": 1, "in": {"_count": 1}}, "Hagrid": {"_count": 1, "knew": {"_count": 1}}, "I": {"_count": 2, "didnt": {"_count": 1}, "swear": {"_count": 1}}, "chunk": {"_count": 1, "out": {"_count": 1}}, "improvement": {"_count": 1, "in": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "prat": {"_count": 1, "why": {"_count": 1}}, "hero": {"_count": 1, "shes": {"_count": 1}}, "mayhem": {"_count": 1, "said": {"_count": 1}}, "importance": {"_count": 2, "to": {"_count": 1}, "but": {"_count": 1}}, "temper": {"_count": 1, "before": {"_count": 1}}, "tears": {"_count": 1, "sliding": {"_count": 1}}, "scream": {"_count": 1, "ran": {"_count": 1}}, "if": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "prophecies": {"_count": 1, "": {"_count": 1}}, "fight": {"_count": 1, "": {"_count": 1}}, "flair": {"_count": 1, "for": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "money": {"_count": 1, "pocket": {"_count": 1}}, "effort": {"_count": 1, "to": {"_count": 1}}, "doss": {"_count": 1, "I": {"_count": 1}}, "fairies": {"_count": 1, "were": {"_count": 1}}, "magic": {"_count": 1, "": {"_count": 1}}, "memory": {"_count": 2, "in": {"_count": 1}, "which": {"_count": 1}}, "stones": {"_count": 1, "": {"_count": 1}}, "potionmaker": {"_count": 1, "needs": {"_count": 1}}, "harm": {"_count": 1, "done": {"_count": 1}}, "treasure": {"_count": 1, "like": {"_count": 1}}, "princes": {"_count": 1, "in": {"_count": 1}}, "take": {"_count": 1, "this": {"_count": 1}}, "Mark": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "inescapable": {"_count": 1}, "Ive": {"_count": 1}}, "Horcrux": {"_count": 3, "and": {"_count": 2}, "had": {"_count": 1}}, "purpose": {"_count": 1, "of": {"_count": 1}}, "locket": {"_count": 2, "": {"_count": 1}, "arent": {"_count": 1}}, "comfort": {"_count": 1, "to": {"_count": 1}}, "charmer": {"_count": 1, "said": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Mafalda": {"_count": 1, "Harry": {"_count": 1}}, "Reg": {"_count": 2, "Cattermole": {"_count": 2}}, "home": {"_count": 1, "the": {"_count": 1}}, "sword": {"_count": 3, "for": {"_count": 1}, "last": {"_count": 1}, "": {"_count": 1}}, "plan": {"_count": 2, "": {"_count": 1}, "He": {"_count": 1}}, "Bathilda": {"_count": 1, "was": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "Hermione": {"_count": 1, "She": {"_count": 1}}, "what": {"_count": 1, "about": {"_count": 1}}, "knack": {"_count": 1, "for": {"_count": 1}}, "symbol": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 1, "maintained": {"_count": 1}}, "danger": {"_count": 2, "": {"_count": 1}, "are": {"_count": 1}}, "honor": {"_count": 1, "": {"_count": 1}}, "Bellatrix": {"_count": 1, "Lestrange": {"_count": 1}}, "tunnel": {"_count": 1, "was": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "for": {"_count": 1, "us": {"_count": 1}}, "anger": {"_count": 1, "flared": {"_count": 1}}}, "cold": {"_count": 320, "hard": {"_count": 2, "wall": {"_count": 1}, "ground": {"_count": 1}}, "tinned": {"_count": 1, "tomatoes": {"_count": 1}}, "outside": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "cruel": {"_count": 3, "laugh": {"_count": 1}, "voice": {"_count": 1}, "sense": {"_count": 1}}, "an": {"_count": 1, "I": {"_count": 1}}, "air": {"_count": 5, "rushed": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "night": {"_count": 8, "air": {"_count": 7}, "in": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 33, "empty": {"_count": 3}, "gloomy": {"_count": 1}, "sharp": {"_count": 1}, "bruised": {"_count": 1}, "a": {"_count": 1}, "white": {"_count": 1}, "satisfied": {"_count": 1}, "exhausted": {"_count": 1}, "stiff": {"_count": 1}, "dark": {"_count": 2}, "nerves": {"_count": 1}, "drafty": {"_count": 1}, "shrewd": {"_count": 1}, "toward": {"_count": 1}, "my": {"_count": 1}, "this": {"_count": 1}, "unconcerned": {"_count": 1}, "all": {"_count": 1}, "miserable": {"_count": 1}, "almost": {"_count": 1}, "numb": {"_count": 2}, "rainy": {"_count": 1}, "distant": {"_count": 1}, "hard": {"_count": 1}, "darkness": {"_count": 1}, "the": {"_count": 1}, "tight": {"_count": 1}, "fierce": {"_count": 1}, "clear": {"_count": 1}}, "eyes": {"_count": 7, "": {"_count": 1}, "were": {"_count": 1}, "alive": {"_count": 1}, "upon": {"_count": 1}, "dont": {"_count": 1}, "and": {"_count": 1}, "narrowing": {"_count": 1}}, "pie": {"_count": 1, "": {"_count": 1}}, "wall": {"_count": 1, "and": {"_count": 1}}, "fury": {"_count": 4, "in": {"_count": 2}, "turning": {"_count": 1}, "And": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 29}}, "drawl": {"_count": 1, "from": {"_count": 1}}, "wet": {"_count": 3, "and": {"_count": 1}, "grounds": {"_count": 1}, "night": {"_count": 1}}, "Harry": {"_count": 1, "spotted": {"_count": 1}}, "but": {"_count": 7, "Madam": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 1}, "they": {"_count": 1}, "fury": {"_count": 1}, "simply": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "Arcus": {"_count": 1}}, "sweat": {"_count": 4, "wondering": {"_count": 1}, "on": {"_count": 2}, "trickling": {"_count": 1}}, "hands": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "stone": {"_count": 5, "and": {"_count": 1}, "floor": {"_count": 3}, "": {"_count": 1}}, "gray": {"_count": 6, "eyes": {"_count": 3}, "ones": {"_count": 1}, "light": {"_count": 1}, "dawn": {"_count": 1}}, "barrier": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 41, "right": {"_count": 1}, "from": {"_count": 2}, "of": {"_count": 1}, "": {"_count": 14}, "now": {"_count": 1}, "softly": {"_count": 1}, "silkily": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 3}, "beyond": {"_count": 1}, "switched": {"_count": 1}, "very": {"_count": 1}, "barely": {"_count": 1}, "you": {"_count": 1}, "perhaps": {"_count": 1}, "say": {"_count": 2}, "again": {"_count": 1}, "drawing": {"_count": 1}, "came": {"_count": 1}, "that": {"_count": 1}, "empty": {"_count": 1}, "Hold": {"_count": 1}, "spoke": {"_count": 1}, "valiantly": {"_count": 1}}, "breeze": {"_count": 2, "stood": {"_count": 1}, "on": {"_count": 1}}, "passageway": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "murderous": {"_count": 1, "voice": {"_count": 1}}, "Snitch": {"_count": 1, "but": {"_count": 1}}, "a": {"_count": 1, "look": {"_count": 1}}, "drawling": {"_count": 3, "voice": {"_count": 3}}, "yet": {"_count": 1, "her": {"_count": 1}}, "laugh": {"_count": 1, "that": {"_count": 1}}, "steely": {"_count": 1, "gray": {"_count": 1}}, "swept": {"_count": 2, "over": {"_count": 2}}, "went": {"_count": 1, "deeper": {"_count": 1}}, "it": {"_count": 1, "got": {"_count": 1}}, "sickness": {"_count": 1, "threatened": {"_count": 1}}, "so": {"_count": 1, "penetrating": {"_count": 1}}, "wind": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 2, "wetter": {"_count": 1}, "air": {"_count": 1}}, "damp": {"_count": 1, "earth": {"_count": 1}}, "look": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "broke": {"_count": 1, "over": {"_count": 1}}, "weather": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 3, "at": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}}, "without": {"_count": 1, "realizing": {"_count": 1}}, "penetrating": {"_count": 1, "his": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 4, "ebbing": {"_count": 1}, "so": {"_count": 1}, "agony": {"_count": 1}, "biting": {"_count": 1}}, "as": {"_count": 7, "a": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}, "ever": {"_count": 1}, "frozen": {"_count": 1}, "he": {"_count": 1}, "death": {"_count": 1}}, "high": {"_count": 1, "voice": {"_count": 1}}, "curt": {"_count": 1, "voice": {"_count": 1}}, "anger": {"_count": 1, "in": {"_count": 1}}, "because": {"_count": 1, "theyve": {"_count": 1}}, "water": {"_count": 4, "over": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 2}}, "clear": {"_count": 4, "evening": {"_count": 1}, "air": {"_count": 1}, "voice": {"_count": 2}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "black": {"_count": 5, "eyes": {"_count": 4}, "marble": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "the": {"_count": 1}}, "November": {"_count": 1, "afternoon": {"_count": 1}}, "he": {"_count": 4, "felt": {"_count": 1}, "sneezed": {"_count": 1}, "was": {"_count": 1}, "caught": {"_count": 1}}, "highpitched": {"_count": 1, "voice": {"_count": 1}}, "draining": {"_count": 1, "power": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "mirthless": {"_count": 1, "laugh": {"_count": 1}}, "tip": {"_count": 1, "of": {"_count": 1}}, "handle": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "twenty": {"_count": 1}}, "plunging": {"_count": 1, "sensation": {"_count": 1}}, "that": {"_count": 2, "filled": {"_count": 1}, "reached": {"_count": 1}}, "trickles": {"_count": 1, "seemed": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "trickled": {"_count": 1, "down": {"_count": 1}}, "male": {"_count": 1, "voice": {"_count": 1}}, "Ron": {"_count": 1, "dead": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "sunlit": {"_count": 1, "day": {"_count": 1}}, "had": {"_count": 1, "he": {"_count": 1}}, "sneering": {"_count": 1, "voice": {"_count": 1}}, "out": {"_count": 1, "there": {"_count": 1}}, "And": {"_count": 1, "theyre": {"_count": 1}}, "metal": {"_count": 2, "bars": {"_count": 1}, "did": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "heavy": {"_count": 1, "drops": {"_count": 1}}, "dregs": {"_count": 1, "of": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "blackness": {"_count": 1, "spinning": {"_count": 1}}, "now": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "floor": {"_count": 1, "of": {"_count": 1}}, "office": {"_count": 1, "floor": {"_count": 1}}, "kitchen": {"_count": 1, "of": {"_count": 1}}, "dark": {"_count": 1, "eyes": {"_count": 1}}, "his": {"_count": 2, "legs": {"_count": 1}, "wand": {"_count": 1}}, "surrounding": {"_count": 1, "air": {"_count": 1}}, "fists": {"_count": 1, "on": {"_count": 1}}, "windowpane": {"_count": 1, "his": {"_count": 1}}, "custard": {"_count": 1, "and": {"_count": 1}}, "pheasant": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 2, "and": {"_count": 1}, "curved": {"_count": 1}}, "snowing": {"_count": 1, "you": {"_count": 1}}, "hand": {"_count": 1, "were": {"_count": 1}}, "dreary": {"_count": 1, "wetness": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "disappointment": {"_count": 1, "was": {"_count": 1}}, "kept": {"_count": 1, "them": {"_count": 1}}, "watery": {"_count": 1, "space": {"_count": 1}}, "salt": {"_count": 1, "spray": {"_count": 1}}, "lump": {"_count": 1, "of": {"_count": 1}}, "chain": {"_count": 1, "of": {"_count": 1}}, "locket": {"_count": 1, "in": {"_count": 1}}, "tea": {"_count": 2, "that": {"_count": 1}, "on": {"_count": 1}}, "draft": {"_count": 1, "had": {"_count": 1}}, "appraising": {"_count": 1, "look": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "ripples": {"_count": 1, "from": {"_count": 1}}, "merciless": {"_count": 1, "voice": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "choked": {"_count": 1, "his": {"_count": 1}}, "snide": {"_count": 1, "voice": {"_count": 1}}, "simply": {"_count": 1, "to": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 1, "light": {"_count": 1}}, "flat": {"_count": 1, "light": {"_count": 1}}, "rock": {"_count": 1, "": {"_count": 1}}, "separated": {"_count": 1, "from": {"_count": 1}}, "unfriendly": {"_count": 1, "look": {"_count": 1}}, "earth": {"_count": 1, "subsuming": {"_count": 1}}, "salty": {"_count": 1, "wind": {"_count": 1}}, "begin": {"_count": 1, "to": {"_count": 1}}, "window": {"_count": 1, "these": {"_count": 1}}, "undulated": {"_count": 1, "over": {"_count": 1}}, "hatred": {"_count": 1, "in": {"_count": 1}}}, "hard": {"_count": 451, "wall": {"_count": 1, "all": {"_count": 1}}, "work": {"_count": 11, "": {"_count": 3}, "and": {"_count": 1}, "but": {"_count": 1}, "pretending": {"_count": 1}, "they": {"_count": 1}, "before": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}, "hes": {"_count": 1}}, "on": {"_count": 40, "the": {"_count": 22}, "me": {"_count": 1}, "an": {"_count": 1}, "January": {"_count": 1}, "him": {"_count": 1}, "your": {"_count": 2}, "how": {"_count": 1}, "it": {"_count": 2}, "learning": {"_count": 1}, "Wood": {"_count": 1}, "what": {"_count": 2}, "his": {"_count": 2}, "bringing": {"_count": 1}, "her": {"_count": 1}, "Harrys": {"_count": 1}}, "ter": {"_count": 3, "explain": {"_count": 1}, "follow": {"_count": 1}, "squeeze": {"_count": 1}}, "": {"_count": 38, ".": {"_count": 36}, "!": {"_count": 1}, "?": {"_count": 1}}, "not": {"_count": 11, "to": {"_count": 11}}, "to": {"_count": 79, "believe": {"_count": 3}, "remember": {"_count": 1}, "catch": {"_count": 3}, "tell": {"_count": 8}, "know": {"_count": 1}, "relax": {"_count": 1}, "stop": {"_count": 1}, "follow": {"_count": 1}, "protect": {"_count": 1}, "convict": {"_count": 1}, "explain": {"_count": 1}, "bear": {"_count": 1}, "look": {"_count": 1}, "prove": {"_count": 1}, "make": {"_count": 3}, "see": {"_count": 2}, "fill": {"_count": 1}, "convince": {"_count": 2}, "keep": {"_count": 8}, "return": {"_count": 1}, "imagine": {"_count": 2}, "come": {"_count": 1}, "his": {"_count": 1}, "control": {"_count": 1}, "say": {"_count": 4}, "think": {"_count": 3}, "move": {"_count": 1}, "miss": {"_count": 1}, "concentrate": {"_count": 3}, "aim": {"_count": 1}, "conceal": {"_count": 1}, "reinstate": {"_count": 1}, "that": {"_count": 1}, "Fred": {"_count": 1}, "decide": {"_count": 1}, "improve": {"_count": 1}, "be": {"_count": 2}, "ignore": {"_count": 1}, "Stun": {"_count": 1}, "sympathize": {"_count": 1}, "argue": {"_count": 1}, "forgo": {"_count": 1}, "kill": {"_count": 1}, "avoid": {"_count": 1}, "understand": {"_count": 1}, "judge": {"_count": 1}, "find": {"_count": 1}, "read": {"_count": 1}}, "said": {"_count": 2, "Madam": {"_count": 1}, "Hermione": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 6, "the": {"_count": 2}, "my": {"_count": 1}, "her": {"_count": 1}, "Malfoys": {"_count": 1}, "his": {"_count": 1}}, "Potter": {"_count": 1, "or": {"_count": 1}}, "as": {"_count": 31, "he": {"_count": 14}, "they": {"_count": 4}, "ever": {"_count": 1}, "though": {"_count": 4}, "possible": {"_count": 1}, "she": {"_count": 2}, "we": {"_count": 1}, "hailstones": {"_count": 1}, "you": {"_count": 1}, "steel": {"_count": 1}, "walking": {"_count": 1}}, "in": {"_count": 21, "the": {"_count": 18}, "his": {"_count": 1}, "both": {"_count": 1}, "front": {"_count": 1}}, "it": {"_count": 4, "was": {"_count": 1}, "had": {"_count": 1}, "is": {"_count": 1}, "seemed": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}, "his": {"_count": 5, "ears": {"_count": 1}, "magical": {"_count": 1}, "wand": {"_count": 1}, "round": {"_count": 1}, "hands": {"_count": 1}}, "job": {"_count": 1, "shaking": {"_count": 1}}, "knocked": {"_count": 1, "his": {"_count": 1}}, "toward": {"_count": 1, "Malfoy": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 2}, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "he": {"_count": 7, "felt": {"_count": 1}, "was": {"_count": 1}, "could": {"_count": 1}, "sank": {"_count": 1}, "said": {"_count": 1}, "pushed": {"_count": 1}, "stared": {"_count": 1}}, "itll": {"_count": 1, "stop": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 20, "looked": {"_count": 2}, "said": {"_count": 1}, "heavy": {"_count": 1}, "zoomed": {"_count": 1}, "decided": {"_count": 1}, "opened": {"_count": 1}, "fast": {"_count": 5}, "bitter": {"_count": 1}, "he": {"_count": 1}, "viciously": {"_count": 1}, "deliberately": {"_count": 1}, "pointless": {"_count": 1}, "slippery": {"_count": 1}, "landed": {"_count": 1}, "then": {"_count": 1}}, "for": {"_count": 6, "noises": {"_count": 1}, "the": {"_count": 3}, "several": {"_count": 1}, "her": {"_count": 1}}, "about": {"_count": 3, "everything": {"_count": 1}, "ways": {"_count": 1}, "the": {"_count": 1}}, "enough": {"_count": 7, "trying": {"_count": 1}, "": {"_count": 3}, "there": {"_count": 1}, "And": {"_count": 1}, "to": {"_count": 1}}, "picturing": {"_count": 1, "the": {"_count": 1}}, "slog": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 11, "the": {"_count": 5}, "Mr": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "Fudge": {"_count": 1}, "him": {"_count": 1}, "Nevilles": {"_count": 1}}, "that": {"_count": 19, "the": {"_count": 2}, "he": {"_count": 3}, "one": {"_count": 1}, "a": {"_count": 1}, "bits": {"_count": 1}, "her": {"_count": 2}, "it": {"_count": 3}, "his": {"_count": 4}, "Hermione": {"_count": 1}, "there": {"_count": 1}}, "onto": {"_count": 3, "the": {"_count": 2}, "what": {"_count": 1}}, "beneath": {"_count": 1, "it": {"_count": 1}}, "time": {"_count": 3, "": {"_count": 2}, "youll": {"_count": 1}}, "Harry": {"_count": 3, "among": {"_count": 1}, "wanted": {"_count": 1}, "said": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "thatll": {"_count": 1}}, "Ron": {"_count": 1, "swayed": {"_count": 1}}, "pinch": {"_count": 2, "": {"_count": 2}}, "war": {"_count": 1, "Frank": {"_count": 1}}, "surface": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "frowning": {"_count": 1, "trying": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "around": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "behind": {"_count": 2, "them": {"_count": 1}, "his": {"_count": 1}}, "workers": {"_count": 1, "were": {"_count": 1}}, "through": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "training": {"_count": 1, "session": {"_count": 1}}, "way": {"_count": 4, "when": {"_count": 1}, "that": {"_count": 1}, "Im": {"_count": 1}, "": {"_count": 1}}, "poke": {"_count": 1, "in": {"_count": 1}}, "ground": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "frost": {"_count": 1}, "beneath": {"_count": 1}}, "squealing": {"_count": 1, "Bad": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 2, "Myrtle": {"_count": 1}, "staring": {"_count": 1}}, "with": {"_count": 6, "his": {"_count": 3}, "the": {"_count": 1}, "Harrys": {"_count": 1}, "a": {"_count": 1}}, "finally": {"_count": 1, "he": {"_count": 1}}, "looking": {"_count": 1, "very": {"_count": 1}}, "too": {"_count": 1, "but": {"_count": 1}}, "spilling": {"_count": 1, "more": {"_count": 1}}, "tofind": {"_count": 1, "word": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "worker": {"_count": 1, "he": {"_count": 1}}, "earth": {"_count": 1, "but": {"_count": 1}}, "dieting": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "all": {"_count": 1}}, "left": {"_count": 1, "theres": {"_count": 1}}, "put": {"_count": 3, "to": {"_count": 3}}, "turned": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "effort": {"_count": 1, "how": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "frosts": {"_count": 1, "every": {"_count": 1}}, "but": {"_count": 2, "weve": {"_count": 1}, "thoroughly": {"_count": 1}}, "all": {"_count": 2, "right": {"_count": 1}, "day": {"_count": 1}}, "clear": {"_count": 1, "voice": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "lump": {"_count": 1, "rise": {"_count": 1}}, "fury": {"_count": 1, "that": {"_count": 1}}, "stone": {"_count": 1, "floor": {"_count": 1}}, "deeply": {"_count": 1, "lined": {"_count": 1}}, "neither": {"_count": 1, "was": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "Zabini": {"_count": 1, "still": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "wooden": {"_count": 2, "chair": {"_count": 1}, "benches": {"_count": 1}}, "Im": {"_count": 1, "his": {"_count": 1}}, "or": {"_count": 1, "otherwise": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "blazing": {"_count": 2, "look": {"_count": 2}}, "a": {"_count": 1, "searing": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "knot": {"_count": 1, "in": {"_count": 1}}, "core": {"_count": 1, "of": {"_count": 1}}, "together": {"_count": 1, "looking": {"_count": 1}}, "fact": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "forgot": {"_count": 1}}, "bed": {"_count": 1, "and": {"_count": 1}}, "cold": {"_count": 1, "earth": {"_count": 1}}, "Id": {"_count": 1, "find": {"_count": 1}}, "plunging": {"_count": 1, "like": {"_count": 1}}, "kicks": {"_count": 1, "to": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}}, "neither": {"_count": 94, "as": {"_count": 3, "a": {"_count": 1}, "happy": {"_count": 1}, "large": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "of": {"_count": 22, "them": {"_count": 11}, "you": {"_count": 4}, "which": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 2}, "us": {"_count": 2}, "whom": {"_count": 1}}, "knowledge": {"_count": 1, "or": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "is": {"_count": 1, "your": {"_count": 1}}, "Dudley": {"_count": 1, "nor": {"_count": 1}}, "Filch": {"_count": 1, "nor": {"_count": 1}}, "Ron": {"_count": 4, "nor": {"_count": 4}}, "do": {"_count": 1, "I": {"_count": 1}}, "family": {"_count": 1, "stayed": {"_count": 1}}, "lived": {"_count": 1, "there": {"_count": 1}}, "requirement": {"_count": 1, "": {"_count": 1}}, "moved": {"_count": 2, "nor": {"_count": 2}}, "red": {"_count": 1, "nor": {"_count": 1}}, "had": {"_count": 1, "forgotten": {"_count": 1}}, "noticed": {"_count": 1, "nor": {"_count": 1}}, "he": {"_count": 1, "nor": {"_count": 1}}, "knew": {"_count": 3, "nor": {"_count": 3}}, "angry": {"_count": 1, "nor": {"_count": 1}}, "saying": {"_count": 1, "a": {"_count": 1}}, "reappeared": {"_count": 1, "one": {"_count": 1}}, "head": {"_count": 1, "nor": {"_count": 1}}, "gas": {"_count": 2, "nor": {"_count": 2}}, "special": {"_count": 1, "nor": {"_count": 1}}, "perturbed": {"_count": 1, "by": {"_count": 1}}, "apparently": {"_count": 1, "did": {"_count": 1}}, "Jamess": {"_count": 1, "nor": {"_count": 1}}, "did": {"_count": 1, "Lily": {"_count": 1}}, "Harry": {"_count": 3, "nor": {"_count": 3}}, "his": {"_count": 1, "opinion": {"_count": 1}}, "Sirius": {"_count": 1, "nor": {"_count": 1}}, "was": {"_count": 1, "keen": {"_count": 1}}, "done": {"_count": 1, "as": {"_count": 1}}, "can": {"_count": 1, "live": {"_count": 1}}, "your": {"_count": 2, "parents": {"_count": 1}, "ancestors": {"_count": 1}}, "a": {"_count": 1, "liar": {"_count": 1}}, "here": {"_count": 3, "nor": {"_count": 3}}, "fair": {"_count": 1, "nor": {"_count": 1}}, "the": {"_count": 2, "disturbing": {"_count": 1}, "poison": {"_count": 1}}, "seen": {"_count": 1, "nor": {"_count": 1}}, "liquid": {"_count": 1, "nor": {"_count": 1}}, "taught": {"_count": 1, "nor": {"_count": 1}}, "like": {"_count": 1, "nor": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "eyes": {"_count": 1, "nor": {"_count": 1}}, "Lavender": {"_count": 1, "nor": {"_count": 1}}, "Dedalus": {"_count": 1, "nor": {"_count": 1}}, "could": {"_count": 2, "erode": {"_count": 1}, "survive": {"_count": 1}}, "Travers": {"_count": 1, "nor": {"_count": 1}}, "confirmed": {"_count": 1, "nor": {"_count": 1}}, "flame": {"_count": 1, "nor": {"_count": 1}}, "ghost": {"_count": 1, "nor": {"_count": 1}}, "warm": {"_count": 1, "nor": {"_count": 1}}}, "piercing": {"_count": 20, "stare": {"_count": 2, "as": {"_count": 1}, "while": {"_count": 1}}, "look": {"_count": 4, "": {"_count": 2}, "but": {"_count": 1}, "Dumbledore": {"_count": 1}}, "bloodcurdling": {"_count": 1, "shriek": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "scream": {"_count": 2, "unheard": {"_count": 1}, "": {"_count": 1}}, "cold": {"_count": 1, "broke": {"_count": 1}}, "pain": {"_count": 1, "on": {"_count": 1}}, "every": {"_count": 1, "inch": {"_count": 1}}, "shriek": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "arm": {"_count": 1}}, "gaze": {"_count": 1, "": {"_count": 1}}, "screams": {"_count": 1, "had": {"_count": 1}}, "blue": {"_count": 1, "eye": {"_count": 1}}, "accuracy": {"_count": 1, "how": {"_count": 1}}, "brilliant": {"_count": 1, "blue": {"_count": 1}}}, "plain": {"_count": 29, "that": {"_count": 7, "whatever": {"_count": 1}, "Hermione": {"_count": 1}, "nobody": {"_count": 1}, "the": {"_count": 1}, "Angelina": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "work": {"_count": 1, "robes": {"_count": 1}}, "pointed": {"_count": 1, "hat": {"_count": 1}}, "view": {"_count": 2, "of": {"_count": 2}}, "but": {"_count": 1, "ambitious": {"_count": 1}}, "black": {"_count": 9, "one": {"_count": 1}, "door": {"_count": 7}, "robes": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "water": {"_count": 1, "boiling": {"_count": 1}}, "pale": {"_count": 1, "rather": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "expanse": {"_count": 1, "of": {"_count": 1}}, "The": {"_count": 1, "only": {"_count": 1}}}, "everyone": {"_count": 316, "was": {"_count": 23, "saying": {"_count": 2}, "rather": {"_count": 1}, "now": {"_count": 2}, "just": {"_count": 1}, "convinced": {"_count": 1}, "ready": {"_count": 1}, "too": {"_count": 1}, "taking": {"_count": 1}, "applauding": {"_count": 1}, "enjoying": {"_count": 1}, "having": {"_count": 1}, "gone": {"_count": 1}, "standing": {"_count": 1}, "staring": {"_count": 1}, "still": {"_count": 1}, "wearing": {"_count": 1}, "eager": {"_count": 1}, "looking": {"_count": 1}, "shuffling": {"_count": 1}, "talking": {"_count": 1}, "fleeing": {"_count": 1}}, "elses": {"_count": 3, "when": {"_count": 1}, "worries": {"_count": 1}, "": {"_count": 1}}, "got": {"_count": 3, "hit": {"_count": 1}, "used": {"_count": 1}, "a": {"_count": 1}}, "does": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 28, "our": {"_count": 1}, "the": {"_count": 24}, "their": {"_count": 1}, "sight": {"_count": 1}, "even": {"_count": 1}}, "d": {"_count": 2, "be": {"_count": 1}, "know": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 9}, "?": {"_count": 6}, "!": {"_count": 3}}, "follows": {"_count": 1, "Quidditch": {"_count": 1}}, "thinks": {"_count": 4, "theyre": {"_count": 1}, "hes": {"_count": 1}, "Im": {"_count": 1}, "": {"_count": 1}}, "gets": {"_count": 1, "scared": {"_count": 1}}, "else": {"_count": 55, "looked": {"_count": 1}, "": {"_count": 10}, "to": {"_count": 4}, "was": {"_count": 9}, "had": {"_count": 5}, "because": {"_count": 1}, "in": {"_count": 4}, "wants": {"_count": 1}, "he": {"_count": 1}, "glad": {"_count": 1}, "and": {"_count": 2}, "looking": {"_count": 1}, "into": {"_count": 1}, "stood": {"_count": 1}, "safe": {"_count": 1}, "knows": {"_count": 1}, "has": {"_count": 1}, "by": {"_count": 2}, "went": {"_count": 1}, "knew": {"_count": 1}, "march": {"_count": 1}, "might": {"_count": 1}, "here": {"_count": 1}, "does": {"_count": 1}, "is": {"_count": 1}, "alone": {"_count": 1}}, "watching": {"_count": 5, "": {"_count": 4}, "him": {"_count": 1}}, "had": {"_count": 15, "eaten": {"_count": 1}, "really": {"_count": 1}, "been": {"_count": 1}, "taken": {"_count": 1}, "thought": {"_count": 1}, "left": {"_count": 1}, "once": {"_count": 1}, "known": {"_count": 1}, "a": {"_count": 2}, "copied": {"_count": 1}, "settled": {"_count": 1}, "boarded": {"_count": 1}, "returned": {"_count": 1}, "pudding": {"_count": 1}}, "knows": {"_count": 12, "hes": {"_count": 1}, "that": {"_count": 7}, "Im": {"_count": 1}, "muttered": {"_count": 1}, "what": {"_count": 1}, "theyve": {"_count": 1}}, "who": {"_count": 8, "does": {"_count": 1}, "read": {"_count": 1}, "was": {"_count": 1}, "thinks": {"_count": 1}, "had": {"_count": 1}, "goes": {"_count": 1}, "thought": {"_count": 1}, "could": {"_count": 1}}, "said": {"_count": 6, "was": {"_count": 1}, "Mr": {"_count": 1}, "Angelina": {"_count": 1}, "Hermione": {"_count": 2}, "Ron": {"_count": 1}}, "except": {"_count": 7, "Malfoy": {"_count": 2}, "Hermione": {"_count": 2}, "Moody": {"_count": 1}, "Ginny": {"_count": 1}, "Fleur": {"_count": 1}}, "to": {"_count": 5, "look": {"_count": 1}, "follow": {"_count": 1}, "hear": {"_count": 1}, "know": {"_count": 1}, "miss": {"_count": 1}}, "shouted": {"_count": 2, "": {"_count": 1}, "Moody": {"_count": 1}}, "looking": {"_count": 2, "forward": {"_count": 1}, "at": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "felt": {"_count": 2, "too": {"_count": 1}, "very": {"_count": 1}}, "says": {"_count": 1, "Dumbledores": {"_count": 1}}, "hates": {"_count": 1, "him": {"_count": 1}}, "shuffled": {"_count": 1, "forward": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "went": {"_count": 3, "wild": {"_count": 1}, "home": {"_count": 2}}, "laughed": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "see": {"_count": 2, "me": {"_count": 1}, "that": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "finds": {"_count": 1, "out": {"_count": 1}}, "thought": {"_count": 4, "that": {"_count": 1}, "they": {"_count": 2}, "he": {"_count": 1}}, "a": {"_count": 3, "favor": {"_count": 1}, "boost": {"_count": 1}, "lift": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "Tom": {"_count": 1, "Harrys": {"_count": 1}}, "hed": {"_count": 1, "ever": {"_count": 1}}, "kept": {"_count": 1, "talking": {"_count": 1}}, "making": {"_count": 1, "all": {"_count": 1}}, "could": {"_count": 2, "see": {"_count": 1}, "hear": {"_count": 1}}, "looked": {"_count": 2, "wildly": {"_count": 1}, "around": {"_count": 1}}, "an": {"_count": 1, "excellent": {"_count": 1}}, "gathered": {"_count": 2, "up": {"_count": 1}, "in": {"_count": 1}}, "lets": {"_count": 2, "go": {"_count": 2}}, "start": {"_count": 1, "": {"_count": 1}}, "applauded": {"_count": 1, "again": {"_count": 1}}, "what": {"_count": 4, "you": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}, "to": {"_count": 1}}, "within": {"_count": 1, "twenty": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "Hagrid": {"_count": 1}}, "around": {"_count": 3, "": {"_count": 1}, "him": {"_count": 2}}, "get": {"_count": 1, "there": {"_count": 1}}, "go": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "uptight": {"_count": 1}}, "off": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "whos": {"_count": 2, "read": {"_count": 1}, "serious": {"_count": 1}}, "jumped": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "turned": {"_count": 2, "to": {"_count": 2}}, "but": {"_count": 1, "himself": {"_count": 1}}, "packed": {"_count": 1, "their": {"_count": 1}}, "gave": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 3, "anyone": {"_count": 1}, "potion": {"_count": 1}, "those": {"_count": 1}}, "treating": {"_count": 1, "him": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "knew": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "settled": {"_count": 1, "down": {"_count": 1}}, "dashed": {"_count": 1, "over": {"_count": 1}}, "drank": {"_count": 1, "to": {"_count": 1}}, "reacts": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "through": {"_count": 1, "their": {"_count": 1}}, "listen": {"_count": 2, "closely": {"_count": 1}, "up": {"_count": 1}}, "I": {"_count": 2, "havent": {"_count": 1}, "think": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "passed": {"_count": 1}}, "since": {"_count": 1, "you": {"_count": 1}}, "should": {"_count": 2, "enjoy": {"_count": 1}, "be": {"_count": 1}}, "more": {"_count": 1, "food": {"_count": 1}}, "Dumbledore": {"_count": 1, "warned": {"_count": 1}}, "you": {"_count": 1, "and": {"_count": 1}}, "can": {"_count": 1, "come": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "Molly": {"_count": 1, "it": {"_count": 1}}, "sees": {"_count": 1, "you": {"_count": 1}}, "drew": {"_count": 1, "their": {"_count": 1}}, "with": {"_count": 1, "droplets": {"_count": 1}}, "once": {"_count": 1, "they": {"_count": 1}}, "youre": {"_count": 1, "winning": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}, "Fear": {"_count": 1, "stirred": {"_count": 1}}, "though": {"_count": 1, "nobody": {"_count": 1}}, "sleepy": {"_count": 1, "": {"_count": 1}}, "okay": {"_count": 2, "": {"_count": 2}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "from": {"_count": 1, "Magical": {"_count": 1}}, "captured": {"_count": 1, "": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "its": {"_count": 1, "their": {"_count": 1}}, "hope": {"_count": 1, "": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "my": {"_count": 1}}}, "believe": {"_count": 336, "it": {"_count": 61, "until": {"_count": 1}, "": {"_count": 26}, "was": {"_count": 2}, "hes": {"_count": 1}, "when": {"_count": 3}, "he": {"_count": 5}, "either": {"_count": 2}, "outstrips": {"_count": 1}, "Im": {"_count": 1}, "I": {"_count": 2}, "its": {"_count": 1}, "they": {"_count": 1}, "had": {"_count": 2}, "hurts": {"_count": 1}, "said": {"_count": 3}, "e": {"_count": 1}, "in": {"_count": 1}, "wheres": {"_count": 1}, "still": {"_count": 1}, "but": {"_count": 1}, "to": {"_count": 2}, "repeated": {"_count": 1}, "of": {"_count": 1}}, "his": {"_count": 11, "luck": {"_count": 1}, "eyes": {"_count": 3}, "ears": {"_count": 5}, "masters": {"_count": 1}, "tiny": {"_count": 1}}, "him": {"_count": 19, "": {"_count": 11}, "or": {"_count": 2}, "if": {"_count": 1}, "do": {"_count": 1}, "only": {"_count": 1}, "said": {"_count": 2}, "you": {"_count": 1}}, "Im": {"_count": 2, "meeting": {"_count": 1}, "not": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 1}, "were": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "this": {"_count": 14, "is": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 5}, "but": {"_count": 1}, "was": {"_count": 1}, "snarled": {"_count": 1}, "fabled": {"_count": 1}, "said": {"_count": 2}}, "youre": {"_count": 1, "going": {"_count": 1}}, "anyone": {"_count": 1, "could": {"_count": 1}}, "your": {"_count": 2, "friends": {"_count": 1}, "father": {"_count": 1}}, "he": {"_count": 14, "worked": {"_count": 1}, "hadnt": {"_count": 1}, "has": {"_count": 2}, "was": {"_count": 4}, "used": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 2}, "scarcely": {"_count": 1}, "thinks": {"_count": 1}}, "LIKE": {"_count": 1, "CARS": {"_count": 1}}, "our": {"_count": 2, "luck": {"_count": 2}}, "you": {"_count": 14, "have": {"_count": 1}, "live": {"_count": 1}, "capable": {"_count": 1}, "might": {"_count": 1}, "he": {"_count": 1}, "didnt": {"_count": 1}, "fought": {"_count": 1}, "one": {"_count": 1}, "Potter": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "witnessed": {"_count": 1}, "said": {"_count": 1}, "are": {"_count": 1}}, "before": {"_count": 1, "now": {"_count": 1}}, "I": {"_count": 6, "am": {"_count": 1}, "told": {"_count": 1}, "missed": {"_count": 1}, "didnt": {"_count": 1}, "was": {"_count": 1}, "could": {"_count": 1}}, "me": {"_count": 8, "dont": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "lads": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "anything": {"_count": 2, "said": {"_count": 1}, "of": {"_count": 1}}, "": {"_count": 20, "?": {"_count": 8}, ".": {"_count": 12}}, "its": {"_count": 4, "him": {"_count": 1}, "happened": {"_count": 1}, "a": {"_count": 1}, "called": {"_count": 1}}, "that": {"_count": 53, "theyd": {"_count": 1}, "hed": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 8}, "rubbish": {"_count": 1}, "Lord": {"_count": 3}, "Voldemort": {"_count": 4}, "your": {"_count": 3}, "Lucius": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 4}, "Harry": {"_count": 2}, "her": {"_count": 1}, "Merope": {"_count": 1}, "she": {"_count": 2}, "necklace": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 2}, "they": {"_count": 3}, "Dumbledore": {"_count": 3}, "Malfoy": {"_count": 1}, "his": {"_count": 1}, "Potter": {"_count": 1}, "Hermione": {"_count": 1}, "we": {"_count": 1}, "Kreacher": {"_count": 1}, "story": {"_count": 1}}, "the": {"_count": 8, "curses": {"_count": 1}, "dementors": {"_count": 2}, "noise": {"_count": 1}, "best": {"_count": 1}, "Prophet": {"_count": 1}, "orphans": {"_count": 1}, "Muggle": {"_count": 1}}, "a": {"_count": 6, "single": {"_count": 1}, "word": {"_count": 4}, "Muggle": {"_count": 1}}, "what": {"_count": 9, "he": {"_count": 5}, "she": {"_count": 1}, "hed": {"_count": 1}, "had": {"_count": 1}, "I": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 2, "eyes": {"_count": 1}, "plan": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 2}}, "theres": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "can": {"_count": 1}}, "no": {"_count": 1, "ones": {"_count": 1}}, "yeh": {"_count": 1, "an": {"_count": 1}}, "how": {"_count": 5, "happy": {"_count": 1}, "fast": {"_count": 1}, "much": {"_count": 1}, "easy": {"_count": 1}, "many": {"_count": 1}}, "half": {"_count": 2, "of": {"_count": 2}}, "as": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "Neville": {"_count": 1, "visits": {"_count": 1}}, "their": {"_count": 2, "eyes": {"_count": 1}, "ears": {"_count": 1}}, "has": {"_count": 1, "left": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 1}, "he": {"_count": 1}, "broke": {"_count": 1}}, "hes": {"_count": 2, "back": {"_count": 1}, "that": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "to": {"_count": 1, "be": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "examination": {"_count": 1, "passes": {"_count": 1}}, "HeWhoMust": {"_count": 1, "NotBeNamed": {"_count": 1}}, "in": {"_count": 4, "things": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}}, "her": {"_count": 5, "ears": {"_count": 1}, "yet": {"_count": 1}, "eyes": {"_count": 3}}, "she": {"_count": 1, "wanted": {"_count": 1}}, "YouKnow": {"_count": 2, "Whos": {"_count": 2}}, "others": {"_count": 1, "to": {"_count": 1}}, "learned": {"_count": 1, "wizards": {"_count": 1}}, "Dumbledore": {"_count": 3, "has": {"_count": 1}, "to": {"_count": 1}, "would": {"_count": 1}}, "any": {"_count": 2, "House": {"_count": 1}, "other": {"_count": 1}}, "complete": {"_count": 1, "novices": {"_count": 1}}, "youve": {"_count": 1, "wriggled": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "Hagrid": {"_count": 1, "at": {"_count": 1}}, "thats": {"_count": 1, "important": {"_count": 1}}, "more": {"_count": 1, "attached": {"_count": 1}}, "from": {"_count": 1, "what": {"_count": 1}}, "without": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "": {"_count": 1}}, "ill": {"_count": 1, "of": {"_count": 1}}, "He": {"_count": 1, "wanted": {"_count": 1}}, "actually": {"_count": 1, "because": {"_count": 1}}, "Snape": {"_count": 1, "killed": {"_count": 1}}, "these": {"_count": 3, "days": {"_count": 1}, "things": {"_count": 1}, "objects": {"_count": 1}}, "we": {"_count": 1, "got": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Gregorovitch": {"_count": 1, "himself": {"_count": 1}}, "both": {"_count": 1, "said": {"_count": 1}}, "everything": {"_count": 1, "he": {"_count": 1}}}, "true": {"_count": 175, "": {"_count": 40, ".": {"_count": 19}, "?": {"_count": 19}, "!": {"_count": 2}}, "And": {"_count": 1, "unafraid": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "Harry": {"_count": 4, "chortled": {"_count": 1}, "threw": {"_count": 1}, "thought": {"_count": 1}, "how": {"_count": 1}}, "that": {"_count": 14, "Harry": {"_count": 2}, "going": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 2}, "two": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 1}, "Professor": {"_count": 2}, "they": {"_count": 1}, "Dumbledore": {"_count": 1}}, "because": {"_count": 2, "Neville": {"_count": 1}, "he": {"_count": 1}}, "it": {"_count": 2, "couldnt": {"_count": 1}, "was": {"_count": 1}}, "story": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 2, "havent": {"_count": 1}, "know": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "Ill": {"_count": 1, "eat": {"_count": 1}}, "heir": {"_count": 2, "arrived": {"_count": 1}, "no": {"_count": 1}}, "muttered": {"_count": 1, "George": {"_count": 1}}, "Riddle": {"_count": 1, "opened": {"_count": 1}}, "Gryffindor": {"_count": 2, "could": {"_count": 2}}, "said": {"_count": 11, "Aunt": {"_count": 1}, "Harry": {"_count": 4}, "Hermione": {"_count": 3}, "the": {"_count": 1}, "Neville": {"_count": 1}, "Dumbledore": {"_count": 1}}, "identity": {"_count": 4, "to": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}, "before": {"_count": 1}}, "wolf": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "colors": {"_count": 2, "as": {"_count": 1}, "who": {"_count": 1}}, "hes": {"_count": 1, "mad": {"_count": 1}}, "Patronus": {"_count": 2, "does": {"_count": 1}, "at": {"_count": 1}}, "Seer": {"_count": 1, "she": {"_count": 1}}, "smile": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 2, "Krum": {"_count": 1}, "all": {"_count": 1}}, "but": {"_count": 7, "the": {"_count": 1}, "Harry": {"_count": 2}, "he": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "though": {"_count": 2, "only": {"_count": 1}, "he": {"_count": 1}}, "he": {"_count": 4, "was": {"_count": 2}, "didnt": {"_count": 1}, "could": {"_count": 1}}, "family": {"_count": 1, "returns": {"_count": 1}}, "rebirth": {"_count": 1, "": {"_count": 1}}, "thats": {"_count": 1, "that": {"_count": 1}}, "account": {"_count": 1, "of": {"_count": 1}}, "this": {"_count": 1, "years": {"_count": 1}}, "reason": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "meeting": {"_count": 1}}, "interrupted": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "fathers": {"_count": 1}}, "however": {"_count": 2, "that": {"_count": 2}}, "friend": {"_count": 1, "and": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "youre": {"_count": 1, "lying": {"_count": 1}}, "loyalty": {"_count": 1, "to": {"_count": 1}}, "allegiance": {"_count": 1, "he": {"_count": 1}}, "godson": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "fact": {"_count": 1}}, "of": {"_count": 1, "hundreds": {"_count": 1}}, "memory": {"_count": 4, "is": {"_count": 1}, "Harry": {"_count": 1}, "from": {"_count": 1}, "but": {"_count": 1}}, "value": {"_count": 1, "There": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "although": {"_count": 1, "his": {"_count": 1}}, "fear": {"_count": 1, "was": {"_count": 1}}, "destination": {"_count": 1, "": {"_count": 1}}, "werewolf": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 1, "say": {"_count": 1}}, "blood": {"_count": 1, "remain": {"_count": 1}}, "within": {"_count": 1, "hours": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "or": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "mans": {"_count": 1}}, "and": {"_count": 2, "their": {"_count": 1}, "Bellatrix": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "Cloak": {"_count": 1, "of": {"_count": 1}}, "thing": {"_count": 1, "he": {"_count": 1}}, "sword": {"_count": 1, "": {"_count": 1}}, "surroundings": {"_count": 1, "vanished": {"_count": 1}}, "possession": {"_count": 1, "of": {"_count": 1}}, "master": {"_count": 9, "of": {"_count": 6}, "": {"_count": 2}, "does": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "home": {"_count": 1, "and": {"_count": 1}}, "destiny": {"_count": 1, "a": {"_count": 1}}, "magic": {"_count": 1, "of": {"_count": 1}}, "owner": {"_count": 1, "": {"_count": 1}}}, "choosing": {"_count": 13, "another": {"_count": 1, "lemon": {"_count": 1}}, "precisely": {"_count": 1, "those": {"_count": 1}}, "his": {"_count": 1, "words": {"_count": 1}}, "to": {"_count": 3, "ignore": {"_count": 1}, "watch": {"_count": 1}, "break": {"_count": 1}}, "a": {"_count": 1, "baked": {"_count": 1}}, "bowtruckles": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "words": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "those": {"_count": 1, "who": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}}, "answer": {"_count": 241, "": {"_count": 77, ".": {"_count": 70}, "!": {"_count": 6}, "?": {"_count": 1}}, "it": {"_count": 4, "while": {"_count": 1}, "blowing": {"_count": 1}, "truthfully": {"_count": 1}, "seems": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Madam": {"_count": 1, "Malkin": {"_count": 1}}, "back": {"_count": 4, "with": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}, "Dumbledored": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "I": {"_count": 1}}, "as": {"_count": 2, "soon": {"_count": 1}, "quickly": {"_count": 1}}, "to": {"_count": 18, "that": {"_count": 1}, "his": {"_count": 2}, "them": {"_count": 1}, "anything": {"_count": 1}, "this": {"_count": 2}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "said": {"_count": 1}, "Harrys": {"_count": 2}, "Mrs": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "several": {"_count": 1}}, "a": {"_count": 5, "teachers": {"_count": 1}, "question": {"_count": 3}, "tall": {"_count": 1}}, "immediately": {"_count": 4, "": {"_count": 3}, "he": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "Harrys": {"_count": 1, "question": {"_count": 1}}, "your": {"_count": 1, "questions": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "fan": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 4, "question": {"_count": 2}, "at": {"_count": 1}, "my": {"_count": 1}}, "hed": {"_count": 1, "expected": {"_count": 1}}, "Crookshanks": {"_count": 1, "sprang": {"_count": 1}}, "before": {"_count": 2, "pulling": {"_count": 1}, "Dumbledore": {"_count": 1}}, "he": {"_count": 7, "sat": {"_count": 1}, "stood": {"_count": 1}, "turned": {"_count": 1}, "was": {"_count": 3}, "did": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "two": {"_count": 1, "wizards": {"_count": 1}}, "pronto": {"_count": 1, "and": {"_count": 1}}, "Daily": {"_count": 1, "Prophet": {"_count": 1}}, "was": {"_count": 7, "too": {"_count": 1}, "going": {"_count": 1}, "almost": {"_count": 1}, "yes": {"_count": 2}, "clearly": {"_count": 1}, "dangling": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "them": {"_count": 1, "he": {"_count": 1}}, "yet": {"_count": 1, "said": {"_count": 1}}, "from": {"_count": 1, "Percy": {"_count": 1}}, "charges": {"_count": 1, "relating": {"_count": 1}}, "my": {"_count": 2, "riddle": {"_count": 1}, "call": {"_count": 1}}, "me": {"_count": 2, "this": {"_count": 2}}, "myself": {"_count": 2, "whispered": {"_count": 1}, "perhaps": {"_count": 1}}, "no": {"_count": 4, "": {"_count": 4}}, "and": {"_count": 3, "certainly": {"_count": 1}, "his": {"_count": 1}, "she": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "but": {"_count": 8, "the": {"_count": 1}, "flung": {"_count": 1}, "cast": {"_count": 1}, "with": {"_count": 1}, "Harry": {"_count": 1}, "pretended": {"_count": 1}, "merely": {"_count": 1}, "stood": {"_count": 1}}, "The": {"_count": 2, "Quibblers": {"_count": 1}, "end": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "Listen": {"_count": 1, "Ive": {"_count": 1}}, "questions": {"_count": 3, "and": {"_count": 1}, "about": {"_count": 1}, "on": {"_count": 1}}, "well": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 5, "question": {"_count": 1}, "summons": {"_count": 1}, "charges": {"_count": 1}, "rest": {"_count": 1}, "answer": {"_count": 1}}, "at": {"_count": 3, "once": {"_count": 3}}, "she": {"_count": 4, "strolled": {"_count": 1}, "finished": {"_count": 1}, "spread": {"_count": 1}, "merely": {"_count": 1}}, "Hagrid": {"_count": 1, "pointed": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "fortunately": {"_count": 1, "they": {"_count": 1}}, "this": {"_count": 1, "quickly": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "case": {"_count": 1}, "front": {"_count": 1}}, "her": {"_count": 2, "questions": {"_count": 1}, "": {"_count": 1}}, "completely": {"_count": 1, "right": {"_count": 1}}, "nicely": {"_count": 1, "": {"_count": 1}}, "except": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 2, "that": {"_count": 2}}, "you": {"_count": 3, "": {"_count": 1}, "oh": {"_count": 1}, "I": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Nick": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "return": {"_count": 1}}, "Slughorn": {"_count": 2, "he": {"_count": 1}, "was": {"_count": 1}}, "copied": {"_count": 1, "almost": {"_count": 1}}, "came": {"_count": 2, "to": {"_count": 1}, "so": {"_count": 1}}, "has": {"_count": 1, "not": {"_count": 1}}, "even": {"_count": 1, "before": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "whether": {"_count": 1}}, "ready": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "their": {"_count": 1, "mother": {"_count": 1}}, "Ron": {"_count": 1, "groaned": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 1, "closed": {"_count": 1}}, "sometimes": {"_count": 1, "youve": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "rose": {"_count": 1, "to": {"_count": 1}}}, "pressed": {"_count": 97, "on": {"_count": 13, "is": {"_count": 2}, "through": {"_count": 1}, "eagerly": {"_count": 1}, "his": {"_count": 1}, "loudly": {"_count": 2}, "I": {"_count": 1}, "a": {"_count": 1}, "stubbornly": {"_count": 1}, "without": {"_count": 1}, "remorselessly": {"_count": 1}, "as": {"_count": 1}}, "against": {"_count": 16, "the": {"_count": 12}, "a": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 2}}, "his": {"_count": 16, "nose": {"_count": 2}, "ear": {"_count": 5}, "paw": {"_count": 1}, "badge": {"_count": 2}, "long": {"_count": 1}, "eye": {"_count": 1}, "shaking": {"_count": 1}, "mouth": {"_count": 2}, "hands": {"_count": 1}}, "their": {"_count": 3, "ears": {"_count": 1}, "badges": {"_count": 1}, "faces": {"_count": 1}}, "flat": {"_count": 2, "against": {"_count": 2}}, "a": {"_count": 7, "tiny": {"_count": 1}, "finger": {"_count": 1}, "whitehot": {"_count": 1}, "bottle": {"_count": 1}, "box": {"_count": 1}, "filthy": {"_count": 1}, "stubby": {"_count": 1}}, "over": {"_count": 4, "his": {"_count": 3}, "her": {"_count": 1}}, "Unfogging": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 8, "playbyplay": {"_count": 1}, "replay": {"_count": 1}, "button": {"_count": 1}, "towel": {"_count": 1}, "nearest": {"_count": 1}, "whole": {"_count": 1}, "Extendable": {"_count": 1}, "golden": {"_count": 1}}, "in": {"_count": 3, "upon": {"_count": 2}, "around": {"_count": 1}}, "hard": {"_count": 3, "against": {"_count": 1}, "on": {"_count": 1}, "together": {"_count": 1}}, "upon": {"_count": 2, "his": {"_count": 1}, "him": {"_count": 1}}, "into": {"_count": 2, "grass": {"_count": 1}, "the": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "herself": {"_count": 1, "closer": {"_count": 1}}, "together": {"_count": 3, "so": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}, "her": {"_count": 5, "lips": {"_count": 3}, "fingers": {"_count": 1}, "finger": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "your": {"_count": 1, "little": {"_count": 1}}, "back": {"_count": 1, "against": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}}, "is": {"_count": 2851, "that": {"_count": 75, "last": {"_count": 1}, "Lily": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 7}, "all": {"_count": 1}, "": {"_count": 7}, "their": {"_count": 2}, "Fang": {"_count": 1}, "true": {"_count": 1}, "it": {"_count": 4}, "I": {"_count": 1}, "in": {"_count": 1}, "what": {"_count": 1}, "supposed": {"_count": 2}, "a": {"_count": 2}, "right": {"_count": 2}, "hes": {"_count": 1}, "the": {"_count": 4}, "note": {"_count": 1}, "Sirius": {"_count": 2}, "this": {"_count": 1}, "these": {"_count": 1}, "Fudge": {"_count": 1}, "fair": {"_count": 1}, "correct": {"_count": 1}, "shes": {"_count": 1}, "we": {"_count": 1}, "your": {"_count": 2}, "most": {"_count": 1}, "my": {"_count": 1}, "he": {"_count": 5}, "why": {"_count": 1}, "er": {"_count": 1}, "Morfin": {"_count": 1}, "not": {"_count": 1}, "You": {"_count": 1}, "there": {"_count": 2}, "whatever": {"_count": 1}, "man": {"_count": 1}, "those": {"_count": 1}, "Dumbledore": {"_count": 1}, "nobodys": {"_count": 1}, "she": {"_count": 1}, "youre": {"_count": 1}, "which": {"_count": 1}, "Professor": {"_count": 1}}, "the": {"_count": 122, "boy": {"_count": 1}, "real": {"_count": 4}, "safest": {"_count": 2}, "thing": {"_count": 2}, "difference": {"_count": 1}, "end": {"_count": 3}, "Seeker": {"_count": 1}, "Golden": {"_count": 2}, "best": {"_count": 6}, "only": {"_count": 5}, "Sorcerers": {"_count": 1}, "second": {"_count": 2}, "Potter": {"_count": 1}, "key": {"_count": 1}, "Stone": {"_count": 1}, "greatest": {"_count": 1}, "one": {"_count": 2}, "most": {"_count": 3}, "bones": {"_count": 1}, "final": {"_count": 1}, "answer": {"_count": 1}, "last": {"_count": 3}, "secret": {"_count": 1}, "Firebolt": {"_count": 1}, "happiest": {"_count": 1}, "reason": {"_count": 2}, "behavior": {"_count": 1}, "window": {"_count": 1}, "weirdest": {"_count": 1}, "beast": {"_count": 2}, "decision": {"_count": 1}, "village": {"_count": 1}, "death": {"_count": 1}, "point": {"_count": 3}, "latest": {"_count": 1}, "law": {"_count": 1}, "task": {"_count": 1}, "case": {"_count": 1}, "stronger": {"_count": 1}, "first": {"_count": 3}, "same": {"_count": 2}, "four": {"_count": 1}, "view": {"_count": 1}, "truth": {"_count": 2}, "time": {"_count": 1}, "place": {"_count": 3}, "worst": {"_count": 1}, "ability": {"_count": 1}, "phrase": {"_count": 1}, "right": {"_count": 1}, "weapon": {"_count": 1}, "power": {"_count": 1}, "other": {"_count": 1}, "hippogriff": {"_count": 1}, "charming": {"_count": 1}, "advantage": {"_count": 1}, "very": {"_count": 1}, "Property": {"_count": 1}, "matron": {"_count": 1}, "party": {"_count": 1}, "biography": {"_count": 1}, "man": {"_count": 2}, "possibility": {"_count": 1}, "imprint": {"_count": 1}, "boys": {"_count": 1}, "poor": {"_count": 1}, "word": {"_count": 1}, "copy": {"_count": 1}, "unknown": {"_count": 1}, "complete": {"_count": 1}, "way": {"_count": 1}, "Minister": {"_count": 1}, "age": {"_count": 1}, "inside": {"_count": 1}, "sixth": {"_count": 1}, "crucial": {"_count": 1}, "horn": {"_count": 1}, "Hallow": {"_count": 1}, "Mudblood": {"_count": 1}, "strongest": {"_count": 1}, "Elder": {"_count": 1}, "price": {"_count": 1}, "maker": {"_count": 1}, "wand": {"_count": 2}, "sort": {"_count": 1}, "Dark": {"_count": 1}, "question": {"_count": 1}}, "a": {"_count": 196, "perfect": {"_count": 1}, "very": {"_count": 8}, "bit": {"_count": 7}, "stone": {"_count": 1}, "wizards": {"_count": 2}, "time": {"_count": 2}, "monstrous": {"_count": 1}, "dragon": {"_count": 1}, "great": {"_count": 3}, "complete": {"_count": 1}, "beautiful": {"_count": 1}, "houseelf": {"_count": 2}, "load": {"_count": 1}, "plot": {"_count": 3}, "danger": {"_count": 2}, "serious": {"_count": 1}, "lousy": {"_count": 1}, "gnome": {"_count": 1}, "powerful": {"_count": 1}, "large": {"_count": 1}, "promise": {"_count": 1}, "myth": {"_count": 1}, "girls": {"_count": 1}, "good": {"_count": 5}, "nasty": {"_count": 1}, "Chamber": {"_count": 1}, "diversion": {"_count": 1}, "little": {"_count": 5}, "serpent": {"_count": 1}, "phoenix": {"_count": 1}, "morale": {"_count": 1}, "soft": {"_count": 2}, "matter": {"_count": 2}, "Pocket": {"_count": 1}, "Gift": {"_count": 1}, "useful": {"_count": 2}, "boggart": {"_count": 3}, "pushover": {"_count": 1}, "pleasant": {"_count": 1}, "kind": {"_count": 3}, "huge": {"_count": 2}, "law": {"_count": 1}, "particularly": {"_count": 1}, "rat": {"_count": 1}, "onceinalifetime": {"_count": 1}, "five": {"_count": 1}, "moldering": {"_count": 1}, "measure": {"_count": 1}, "sure": {"_count": 1}, "chance": {"_count": 2}, "Gregorovitch": {"_count": 1}, "strange": {"_count": 1}, "Hungarian": {"_count": 1}, "way": {"_count": 1}, "free": {"_count": 3}, "disgraced": {"_count": 1}, "bad": {"_count": 3}, "really": {"_count": 2}, "dinosaur": {"_count": 1}, "Triwizard": {"_count": 1}, "Death": {"_count": 1}, "stench": {"_count": 1}, "disappointment": {"_count": 1}, "virtue": {"_count": 1}, "hospital": {"_count": 1}, "much": {"_count": 1}, "second": {"_count": 1}, "false": {"_count": 1}, "most": {"_count": 3}, "lie": {"_count": 2}, "first": {"_count": 1}, "school": {"_count": 3}, "further": {"_count": 1}, "room": {"_count": 2}, "sign": {"_count": 1}, "headmasters": {"_count": 1}, "superb": {"_count": 1}, "complex": {"_count": 2}, "human": {"_count": 1}, "terrible": {"_count": 2}, "friend": {"_count": 1}, "trick": {"_count": 1}, "place": {"_count": 1}, "pity": {"_count": 1}, "twoway": {"_count": 1}, "wizard": {"_count": 1}, "man": {"_count": 2}, "betrayal": {"_count": 1}, "long": {"_count": 1}, "simple": {"_count": 2}, "thrilling": {"_count": 1}, "big": {"_count": 2}, "blanket": {"_count": 1}, "former": {"_count": 1}, "question": {"_count": 2}, "banned": {"_count": 1}, "summons": {"_count": 1}, "bully": {"_count": 1}, "Ministry": {"_count": 1}, "fund": {"_count": 1}, "train": {"_count": 1}, "genuine": {"_count": 1}, "threat": {"_count": 1}, "new": {"_count": 1}, "joke": {"_count": 1}, "soul": {"_count": 1}, "stronghold": {"_count": 1}, "more": {"_count": 1}, "corpse": {"_count": 1}, "spell": {"_count": 1}, "gift": {"_count": 1}, "village": {"_count": 1}, "pair": {"_count": 1}, "strong": {"_count": 1}, "start": {"_count": 1}, "biographers": {"_count": 1}, "valuable": {"_count": 1}, "dreadful": {"_count": 1}, "masterstroke": {"_count": 1}, "couple": {"_count": 1}, "copy": {"_count": 1}, "stag": {"_count": 1}, "lynx": {"_count": 1}, "shy": {"_count": 1}, "childrens": {"_count": 1}, "true": {"_count": 1}, "story": {"_count": 1}, "Wizarding": {"_count": 1}, "Dudley": {"_count": 1}, "fake": {"_count": 2}, "lost": {"_count": 1}, "belief": {"_count": 1}, "goat": {"_count": 1}, "diadem": {"_count": 1}, "service": {"_count": 1}, "loss": {"_count": 1}, "miracle": {"_count": 1}, "job": {"_count": 1}, "truth": {"_count": 1}, "curious": {"_count": 1}}, "boring": {"_count": 1, "Dudley": {"_count": 1}}, "one": {"_count": 12, "of": {"_count": 10}, "thing": {"_count": 2}}, "difficult": {"_count": 3, "": {"_count": 1}, "sir": {"_count": 1}, "to": {"_count": 1}}, "why": {"_count": 13, "YouKnow": {"_count": 1}, "you": {"_count": 2}, "did": {"_count": 1}, "Dumbledore": {"_count": 1}, "they": {"_count": 1}, "I": {"_count": 2}, "youre": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 2}, "": {"_count": 1}}, "he": {"_count": 57, "turned": {"_count": 1}, "with": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 31}, "Sirius": {"_count": 1}, "consulted": {"_count": 1}, "doing": {"_count": 3}, "really": {"_count": 1}, "said": {"_count": 3}, "anyway": {"_count": 1}, "then": {"_count": 1}, "to": {"_count": 1}, "wants": {"_count": 1}, "did": {"_count": 1}, "when": {"_count": 1}, "going": {"_count": 1}, "using": {"_count": 1}, "and": {"_count": 1}, "hiding": {"_count": 1}, "a": {"_count": 1}, "was": {"_count": 1}, "dead": {"_count": 1}, "now": {"_count": 1}}, "Gringotts": {"_count": 1, "": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 59, "keep": {"_count": 1}, "move": {"_count": 2}, "come": {"_count": 1}, "stay": {"_count": 1}, "find": {"_count": 1}, "rid": {"_count": 1}, "get": {"_count": 4}, "repeat": {"_count": 1}, "see": {"_count": 1}, "leave": {"_count": 2}, "use": {"_count": 4}, "decide": {"_count": 1}, "break": {"_count": 1}, "milk": {"_count": 1}, "elves": {"_count": 1}, "say": {"_count": 8}, "you": {"_count": 1}, "be": {"_count": 5}, "compete": {"_count": 1}, "collect": {"_count": 1}, "fuss": {"_count": 1}, "retrieve": {"_count": 1}, "ensure": {"_count": 1}, "remove": {"_count": 1}, "send": {"_count": 1}, "have": {"_count": 1}, "try": {"_count": 1}, "punish": {"_count": 1}, "await": {"_count": 1}, "clean": {"_count": 1}, "seize": {"_count": 1}, "practice": {"_count": 1}, "take": {"_count": 1}, "blame": {"_count": 1}, "talk": {"_count": 1}, "Hogwarts": {"_count": 1}, "maintain": {"_count": 1}, "consult": {"_count": 1}, "stop": {"_count": 1}, "speak": {"_count": 1}}, "it": {"_count": 174, "said": {"_count": 2}, "": {"_count": 103}, "Harry": {"_count": 5}, "not": {"_count": 1}, "Dobby": {"_count": 1}, "that": {"_count": 7}, "Professor": {"_count": 2}, "Draco": {"_count": 1}, "something": {"_count": 2}, "good": {"_count": 1}, "Hermione": {"_count": 1}, "Vernon": {"_count": 1}, "my": {"_count": 1}, "just": {"_count": 1}, "with": {"_count": 2}, "Albus": {"_count": 1}, "you": {"_count": 2}, "went": {"_count": 1}, "then": {"_count": 4}, "son": {"_count": 1}, "Diddy": {"_count": 1}, "when": {"_count": 1}, "nice": {"_count": 1}, "this": {"_count": 2}, "really": {"_count": 1}, "Potter": {"_count": 2}, "true": {"_count": 4}, "Hagrid": {"_count": 1}, "up": {"_count": 1}, "now": {"_count": 3}, "Mr": {"_count": 2}, "important": {"_count": 1}, "youre": {"_count": 1}, "protected": {"_count": 1}, "about": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "is": {"_count": 2}, "but": {"_count": 1}, "George": {"_count": 1}, "Wormtail": {"_count": 1}, "working": {"_count": 1}, "helps": {"_count": 1}, "eh": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 45, "can": {"_count": 1}, "school": {"_count": 1}, "rat": {"_count": 1}, "Lupin": {"_count": 1}, "": {"_count": 18}, "woman": {"_count": 1}, "rubbish": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 1}, "thing": {"_count": 1}, "place": {"_count": 2}, "person": {"_count": 2}, "supposed": {"_count": 1}, "last": {"_count": 1}, "is": {"_count": 1}, "I": {"_count": 1}, "we": {"_count": 1}, "book": {"_count": 1}, "by": {"_count": 1}, "boat": {"_count": 1}, "what": {"_count": 1}, "about": {"_count": 1}, "man": {"_count": 1}, "Shell": {"_count": 1}}, "Quidditch": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 23, "wand": {"_count": 1}, "friend": {"_count": 2}, "singing": {"_count": 1}, "turn": {"_count": 1}, "cousin": {"_count": 1}, "story": {"_count": 1}, "teacher": {"_count": 1}, "punishment": {"_count": 1}, "chance": {"_count": 1}, "evidence": {"_count": 1}, "enthusiasm": {"_count": 1}, "greatest": {"_count": 1}, "trunk": {"_count": 1}, "safety": {"_count": 1}, "dearest": {"_count": 1}, "schedule": {"_count": 1}, "plan": {"_count": 1}, "final": {"_count": 2}, "copy": {"_count": 1}, "signature": {"_count": 1}, "choice": {"_count": 1}}, "in": {"_count": 30, "your": {"_count": 4}, "the": {"_count": 8}, "here": {"_count": 1}, "any": {"_count": 1}, "there": {"_count": 2}, "his": {"_count": 1}, "Tibet": {"_count": 1}, "yet": {"_count": 1}, "order": {"_count": 1}, "danger": {"_count": 1}, "accordance": {"_count": 4}, "History": {"_count": 1}, "jail": {"_count": 1}, "even": {"_count": 1}, "for": {"_count": 1}, "sympathy": {"_count": 1}}, "very": {"_count": 30, "curious": {"_count": 1}, "important": {"_count": 2}, "serious": {"_count": 1}, "little": {"_count": 2}, "easy": {"_count": 1}, "painful": {"_count": 1}, "sweet": {"_count": 1}, "busy": {"_count": 2}, "lucky": {"_count": 2}, "difficult": {"_count": 1}, "kind": {"_count": 1}, "great": {"_count": 2}, "limited": {"_count": 1}, "dangerous": {"_count": 1}, "supportive": {"_count": 1}, "like": {"_count": 1}, "pleased": {"_count": 1}, "brave": {"_count": 1}, "valuable": {"_count": 2}, "angry": {"_count": 1}, "nosy": {"_count": 1}, "early": {"_count": 1}, "fond": {"_count": 1}, "nicelooking": {"_count": 1}}, "no": {"_count": 41, "platform": {"_count": 1}, "good": {"_count": 2}, "evidence": {"_count": 1}, "Chamber": {"_count": 1}, "need": {"_count": 6}, "mean": {"_count": 1}, "use": {"_count": 1}, "ordinary": {"_count": 1}, "Dumbledore": {"_count": 1}, "loss": {"_count": 1}, "hope": {"_count": 2}, "guarantee": {"_count": 1}, "law": {"_count": 1}, "reason": {"_count": 2}, "longer": {"_count": 3}, "infringement": {"_count": 1}, "cowardly": {"_count": 1}, "doubt": {"_count": 3}, "shame": {"_count": 1}, "point": {"_count": 1}, "way": {"_count": 1}, "question": {"_count": 2}, "more": {"_count": 1}, "different": {"_count": 1}, "cure": {"_count": 1}, "niece": {"_count": 1}, "halting": {"_count": 1}, "help": {"_count": 1}}, "I": {"_count": 13, "dont": {"_count": 2}, "was": {"_count": 1}, "would": {"_count": 1}, "suppose": {"_count": 1}, "Dumbledore": {"_count": 1}, "think": {"_count": 1}, "should": {"_count": 1}, "missed": {"_count": 1}, "never": {"_count": 1}, "must": {"_count": 1}, "Remus": {"_count": 1}, "said": {"_count": 1}}, "walk": {"_count": 1, "straight": {"_count": 1}}, "said": {"_count": 26, "the": {"_count": 2}, "Ron": {"_count": 7}, "Hermione": {"_count": 3}, "Malfoy": {"_count": 2}, "Harry": {"_count": 6}, "Lupin": {"_count": 1}, "Bagman": {"_count": 1}, "Fudge": {"_count": 1}, "Fred": {"_count": 1}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}}, "safe": {"_count": 8, "with": {"_count": 1}, "": {"_count": 2}, "there": {"_count": 1}, "to": {"_count": 2}, "isnt": {"_count": 1}, "at": {"_count": 1}}, "": {"_count": 138, "?": {"_count": 33}, ".": {"_count": 79}, "!": {"_count": 26}}, "full": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "Ron": {"_count": 6, "our": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 2}, "added": {"_count": 1}, "please": {"_count": 1}}, "Dumbledore": {"_count": 5, "": {"_count": 1}, "told": {"_count": 1}, "locked": {"_count": 1}, "up": {"_count": 1}, "angry": {"_count": 1}}, "particularly": {"_count": 3, "famous": {"_count": 2}, "complex": {"_count": 1}}, "Ive": {"_count": 3, "heard": {"_count": 2}, "been": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "Goyle": {"_count": 1, "said": {"_count": 1}}, "awarded": {"_count": 1, "the": {"_count": 1}}, "forbidden": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 6, "of": {"_count": 4}, "if": {"_count": 1}, "Potter": {"_count": 1}}, "some": {"_count": 4, "of": {"_count": 1}, "food": {"_count": 1}, "map": {"_count": 1}, "sort": {"_count": 1}}, "little": {"_count": 3, "foolish": {"_count": 1}, "time": {"_count": 1}, "chance": {"_count": 1}}, "magic": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "known": {"_count": 5, "as": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 3}}, "at": {"_count": 12, "Quidditch": {"_count": 1}, "Hogwarts": {"_count": 3}, "stake": {"_count": 1}, "the": {"_count": 3}, "large": {"_count": 1}, "a": {"_count": 1}, "home": {"_count": 1}, "once": {"_count": 1}}, "Oliver": {"_count": 1, "Wood": {"_count": 1}}, "going": {"_count": 30, "to": {"_count": 25}, "too": {"_count": 1}, "on": {"_count": 2}, "said": {"_count": 1}, "": {"_count": 1}}, "send": {"_count": 1, "sparks": {"_count": 1}}, "locked": {"_count": 2, "Harry": {"_count": 1}, "in": {"_count": 1}}, "easy": {"_count": 3, "enough": {"_count": 1}, "remember": {"_count": 1}, "to": {"_count": 1}}, "caught": {"_count": 3, "so": {"_count": 1}, "": {"_count": 1}, "youll": {"_count": 1}}, "three": {"_count": 2, "months": {"_count": 1}, "hours": {"_count": 1}}, "taken": {"_count": 1, "immediately": {"_count": 1}}, "and": {"_count": 10, "rather": {"_count": 1}, "how": {"_count": 5}, "tell": {"_count": 1}, "enable": {"_count": 1}, "you": {"_count": 1}, "crossed": {"_count": 1}}, "there": {"_count": 21, "": {"_count": 9}, "any": {"_count": 2}, "anything": {"_count": 3}, "enough": {"_count": 1}, "and": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "will": {"_count": 2}}, "against": {"_count": 3, "Hogwarts": {"_count": 1}, "nature": {"_count": 1}, "our": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "money": {"_count": 1, "": {"_count": 1}}, "theyre": {"_count": 3, "really": {"_count": 1}, "proud": {"_count": 1}, "alive": {"_count": 1}}, "try": {"_count": 1, "it": {"_count": 1}}, "time": {"_count": 20, "it": {"_count": 1}, "to": {"_count": 4}, "for": {"_count": 9}, "somebody": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "now": {"_count": 1}}, "better": {"_count": 4, "than": {"_count": 1}, "she": {"_count": 1}, "prepared": {"_count": 1}, "": {"_count": 1}}, "real": {"_count": 4, "or": {"_count": 2}, "isnt": {"_count": 2}}, "concerned": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "ages": {"_count": 1, "ago": {"_count": 1}}, "they": {"_count": 3, "mustnt": {"_count": 1}, "saying": {"_count": 1}, "aren": {"_count": 1}}, "servant": {"_count": 1, "stuff": {"_count": 1}}, "Harry": {"_count": 15, "Potter": {"_count": 6}, "Potters": {"_count": 1}, "Kreacher": {"_count": 1}, "Im": {"_count": 1}, "so": {"_count": 1}, "said": {"_count": 1}, "supposed": {"_count": 1}, "Grawp": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "Ronan": {"_count": 1, "you": {"_count": 1}}, "bright": {"_count": 4, "tonight": {"_count": 3}, "yellow": {"_count": 1}}, "now": {"_count": 16, "": {"_count": 6}, "teaching": {"_count": 1}, "no": {"_count": 1}, "responding": {"_count": 1}, "aware": {"_count": 1}, "employing": {"_count": 1}, "closed": {"_count": 1}, "an": {"_count": 1}, "so": {"_count": 1}, "compulsory": {"_count": 1}, "going": {"_count": 1}}, "not": {"_count": 120, "safe": {"_count": 2}, "our": {"_count": 1}, "prudent": {"_count": 1}, "being": {"_count": 1}, "a": {"_count": 15}, "who": {"_count": 1}, "in": {"_count": 3}, "enough": {"_count": 1}, "allowed": {"_count": 1}, "having": {"_count": 1}, "here": {"_count": 1}, "sure": {"_count": 2}, "paid": {"_count": 1}, "supposed": {"_count": 2}, "liking": {"_count": 1}, "doing": {"_count": 3}, "knowing": {"_count": 3}, "making": {"_count": 1}, "I": {"_count": 2}, "the": {"_count": 7}, "to": {"_count": 2}, "yet": {"_count": 2}, "sunk": {"_count": 1}, "insulting": {"_count": 2}, "bound": {"_count": 1}, "wanting": {"_count": 1}, "saying": {"_count": 1}, "as": {"_count": 3}, "only": {"_count": 2}, "nosy": {"_count": 1}, "an": {"_count": 3}, "Alastor": {"_count": 1}, "fit": {"_count": 1}, "for": {"_count": 2}, "relevant": {"_count": 1}, "it": {"_count": 1}, "permitted": {"_count": 1}, "up": {"_count": 5}, "therefore": {"_count": 1}, "but": {"_count": 1}, "confiding": {"_count": 1}, "strictly": {"_count": 1}, "performing": {"_count": 1}, "possible": {"_count": 1}, "working": {"_count": 4}, "good": {"_count": 1}, "lying": {"_count": 1}, "SecretKeeper": {"_count": 1}, "sorry": {"_count": 1}, "angry": {"_count": 1}, "necessarily": {"_count": 1}, "tolerated": {"_count": 1}, "like": {"_count": 2}, "very": {"_count": 1}, "quite": {"_count": 1}, "said": {"_count": 3}, "difficult": {"_count": 1}, "alive": {"_count": 1}, "large": {"_count": 1}, "secretly": {"_count": 1}, "nearly": {"_count": 1}, "true": {"_count": 1}, "discovered": {"_count": 1}, "touched": {"_count": 1}, "pleased": {"_count": 1}, "about": {"_count": 1}, "completely": {"_count": 1}, "welcome": {"_count": 1}, "my": {"_count": 1}, "real": {"_count": 1}, "love": {"_count": 1}}, "Firenze": {"_count": 3, "he": {"_count": 1}, "agreed": {"_count": 1}, "said": {"_count": 1}}, "lurking": {"_count": 1, "in": {"_count": 1}}, "used": {"_count": 4, "for": {"_count": 1}, "to": {"_count": 3}}, "because": {"_count": 4, "it": {"_count": 1}, "she": {"_count": 1}, "of": {"_count": 1}, "hell": {"_count": 1}}, "hidden": {"_count": 6, "in": {"_count": 2}, "inside": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "where": {"_count": 7, "I": {"_count": 3}, "we": {"_count": 1}, "you": {"_count": 1}, "were": {"_count": 2}}, "Snape": {"_count": 1, "to": {"_count": 1}}, "important": {"_count": 6, "": {"_count": 4}, "too": {"_count": 1}, "Harry": {"_count": 1}}, "more": {"_count": 11, "important": {"_count": 2}, "commonly": {"_count": 1}, "time": {"_count": 1}, "than": {"_count": 1}, "complex": {"_count": 1}, "said": {"_count": 1}, "powerful": {"_count": 1}, "I": {"_count": 1}, "disturbing": {"_count": 1}, "likely": {"_count": 1}}, "its": {"_count": 6, "Devils": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}, "thanks": {"_count": 1}, "been": {"_count": 1}, "no": {"_count": 1}}, "here": {"_count": 15, "on": {"_count": 1}, "plainer": {"_count": 1}, "": {"_count": 6}, "hes": {"_count": 1}, "at": {"_count": 1}, "And": {"_count": 1}, "for": {"_count": 1}, "said": {"_count": 2}, "he": {"_count": 1}}, "which": {"_count": 1, "arent": {"_count": 1}}, "with": {"_count": 6, "me": {"_count": 1}, "the": {"_count": 1}, "great": {"_count": 2}, "almost": {"_count": 1}, "him": {"_count": 1}}, "only": {"_count": 11, "power": {"_count": 1}, "a": {"_count": 2}, "wanting": {"_count": 1}, "accessible": {"_count": 1}, "one": {"_count": 4}, "significant": {"_count": 1}, "as": {"_count": 1}}, "like": {"_count": 4, "going": {"_count": 1}, "that": {"_count": 1}, "fighting": {"_count": 1}, "me": {"_count": 1}}, "but": {"_count": 6, "the": {"_count": 2}, "it": {"_count": 1}, "he": {"_count": 1}, "its": {"_count": 1}, "every": {"_count": 1}}, "humans": {"_count": 1, "do": {"_count": 1}}, "still": {"_count": 20, "out": {"_count": 1}, "treated": {"_count": 1}, "awake": {"_count": 1}, "eluding": {"_count": 1}, "determined": {"_count": 1}, "Harry": {"_count": 1}, "hurting": {"_count": 1}, "drinking": {"_count": 1}, "alive": {"_count": 4}, "here": {"_count": 1}, "too": {"_count": 1}, "there": {"_count": 1}, "keen": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 2}, "intact": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "delayed": {"_count": 1, "again": {"_count": 1}}, "love": {"_count": 1, "": {"_count": 1}}, "gone": {"_count": 5, "will": {"_count": 1}, "said": {"_count": 1}, "forever": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "even": {"_count": 4, "more": {"_count": 2}, "now": {"_count": 1}, "if": {"_count": 1}}, "Voldemort": {"_count": 3, "were": {"_count": 2}, "s": {"_count": 1}}, "Mom": {"_count": 1, "there": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "possible": {"_count": 7, "to": {"_count": 1}, "of": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 1}, "say": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}}, "sang": {"_count": 1, "Dudley": {"_count": 1}}, "Dudley": {"_count": 1, "repeated": {"_count": 1}}, "always": {"_count": 5, "having": {"_count": 1}, "equipped": {"_count": 1}, "there": {"_count": 1}, "so": {"_count": 1}, "knocking": {"_count": 1}}, "humble": {"_count": 1, "and": {"_count": 1}}, "valiant": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 14, "great": {"_count": 1}, "important": {"_count": 1}, "good": {"_count": 2}, "late": {"_count": 3}, "young": {"_count": 2}, "eavy": {"_count": 1}, "trivial": {"_count": 1}, "dangerous": {"_count": 1}, "much": {"_count": 1}, "frail": {"_count": 1}}, "dont": {"_count": 3, "you": {"_count": 2}, "be": {"_count": 1}}, "marvelous": {"_count": 1, "she": {"_count": 1}}, "what": {"_count": 21, "you": {"_count": 2}, "Dumbledore": {"_count": 1}, "Blacks": {"_count": 1}, "is": {"_count": 1}, "Krum": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 3}, "Im": {"_count": 1}, "school": {"_count": 1}, "I": {"_count": 4}, "he": {"_count": 3}, "theyve": {"_count": 1}, "will": {"_count": 1}}, "for": {"_count": 10, "her": {"_count": 1}, "the": {"_count": 4}, "you": {"_count": 1}, "nutters": {"_count": 1}, "Muggles": {"_count": 1}, "him": {"_count": 1}, "that": {"_count": 1}}, "okay": {"_count": 3, "and": {"_count": 1}, "Harry": {"_count": 1}, "except": {"_count": 1}}, "all": {"_count": 15, "right": {"_count": 1}, "your": {"_count": 1}, "because": {"_count": 1}, "this": {"_count": 1}, "you": {"_count": 1}, "about": {"_count": 1}, "well": {"_count": 1}, "my": {"_count": 3}, "He": {"_count": 1}, "top": {"_count": 1}, "to": {"_count": 1}, "hypothetical": {"_count": 1}, "we": {"_count": 1}}, "conducting": {"_count": 1, "more": {"_count": 1}}, "behind": {"_count": 2, "it": {"_count": 2}}, "fit": {"_count": 1, "for": {"_count": 1}}, "counting": {"_count": 1, "for": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "an": {"_count": 31, "Invisibility": {"_count": 1}, "answer": {"_count": 1}, "allnew": {"_count": 1}, "Order": {"_count": 1}, "ancient": {"_count": 1}, "omen": {"_count": 1}, "international": {"_count": 1}, "ugly": {"_count": 1}, "old": {"_count": 3}, "important": {"_count": 2}, "expression": {"_count": 1}, "insult": {"_count": 1}, "unregistered": {"_count": 1}, "exciting": {"_count": 1}, "Animagus": {"_count": 1}, "extremely": {"_count": 2}, "order": {"_count": 1}, "O": {"_count": 1}, "examination": {"_count": 1}, "issue": {"_count": 1}, "attack": {"_count": 1}, "act": {"_count": 2}, "not": {"_count": 1}, "odd": {"_count": 1}, "argument": {"_count": 1}, "honor": {"_count": 1}}, "obvious": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 12, "said": {"_count": 1}, "": {"_count": 9}, "there": {"_count": 1}, "Harry": {"_count": 1}}, "also": {"_count": 10, "in": {"_count": 1}, "however": {"_count": 1}, "my": {"_count": 1}, "true": {"_count": 1}, "perhaps": {"_count": 1}, "known": {"_count": 1}, "the": {"_count": 1}, "possible": {"_count": 2}, "a": {"_count": 1}}, "fatal": {"_count": 3, "to": {"_count": 3}}, "Gilderoy": {"_count": 4, "Lockharts": {"_count": 4}}, "lilac": {"_count": 1, "": {"_count": 1}}, "Miss": {"_count": 2, "Hermione": {"_count": 1}, "Granger": {"_count": 1}}, "my": {"_count": 30, "job": {"_count": 2}, "great": {"_count": 1}, "good": {"_count": 1}, "past": {"_count": 1}, "patient": {"_count": 1}, "son": {"_count": 1}, "very": {"_count": 1}, "belief": {"_count": 4}, "decision": {"_count": 1}, "friend": {"_count": 1}, "understanding": {"_count": 1}, "unfortunate": {"_count": 1}, "wish": {"_count": 3}, "fault": {"_count": 1}, "favorite": {"_count": 3}, "conclusion": {"_count": 1}, "first": {"_count": 1}, "mercy": {"_count": 1}, "business": {"_count": 1}, "choice": {"_count": 1}, "last": {"_count": 1}, "house": {"_count": 1}}, "our": {"_count": 19, "practice": {"_count": 1}, "choices": {"_count": 1}, "driver": {"_count": 1}, "last": {"_count": 1}, "King": {"_count": 12}, "longterm": {"_count": 1}, "lesson": {"_count": 1}, "cousin": {"_count": 1}}, "Muggleborn": {"_count": 4, "you": {"_count": 1}, "shell": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 15, "celebrity": {"_count": 1}, "dark": {"_count": 1}, "good": {"_count": 4}, "sane": {"_count": 1}, "well": {"_count": 1}, "it": {"_count": 1}, "yet": {"_count": 1}, "you": {"_count": 1}, "Professor": {"_count": 1}, "nothing": {"_count": 1}, "powerful": {"_count": 1}, "they": {"_count": 1}}, "something": {"_count": 9, "you": {"_count": 2}, "here": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}, "that": {"_count": 1}, "trying": {"_count": 1}, "different": {"_count": 1}, "else": {"_count": 1}}, "nearest": {"_count": 1, "Headmaster": {"_count": 1}}, "ready": {"_count": 7, "to": {"_count": 5}, "": {"_count": 1}, "Master": {"_count": 1}}, "someone": {"_count": 2, "who": {"_count": 2}}, "she": {"_count": 20, "": {"_count": 13}, "spotted": {"_count": 1}, "coming": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}, "here": {"_count": 1}, "doing": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "such": {"_count": 4, "a": {"_count": 3}, "that": {"_count": 1}}, "uncertain": {"_count": 1, "by": {"_count": 1}}, "arrant": {"_count": 1, "nonsense": {"_count": 1}}, "believed": {"_count": 3, "to": {"_count": 1}, "that": {"_count": 2}}, "funny": {"_count": 1, "": {"_count": 1}}, "far": {"_count": 3, "worse": {"_count": 1}, "more": {"_count": 1}, "too": {"_count": 1}}, "if": {"_count": 5, "it": {"_count": 1}, "youre": {"_count": 1}, "Harry": {"_count": 1}, "youll": {"_count": 1}, "we": {"_count": 1}}, "insane": {"_count": 4, "said": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}, "Were": {"_count": 1}}, "careful": {"_count": 1, "not": {"_count": 1}}, "open": {"_count": 3, "once": {"_count": 1}, "yer": {"_count": 1}, "a": {"_count": 1}}, "indeed": {"_count": 3, "open": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}}, "how": {"_count": 7, "": {"_count": 1}, "Lord": {"_count": 1}, "often": {"_count": 1}, "it": {"_count": 1}, "were": {"_count": 1}, "long": {"_count": 1}, "do": {"_count": 1}}, "cause": {"_count": 2, "enough": {"_count": 1}, "we": {"_count": 1}}, "expelled": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 2, "": {"_count": 1}, "wizards": {"_count": 1}}, "Potter": {"_count": 4, "then": {"_count": 1}, "": {"_count": 2}, "before": {"_count": 1}}, "anything": {"_count": 3, "youd": {"_count": 1}, "like": {"_count": 1}, "to": {"_count": 1}}, "make": {"_count": 2, "sure": {"_count": 2}}, "unbelievable": {"_count": 1, "said": {"_count": 1}}, "none": {"_count": 5, "of": {"_count": 2}, "more": {"_count": 1}, "other": {"_count": 2}}, "clearly": {"_count": 1, "unfit": {"_count": 1}}, "fifty": {"_count": 1, "years": {"_count": 1}}, "Tom": {"_count": 3, "Riddle": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "slaughtered": {"_count": 1, "": {"_count": 1}}, "likely": {"_count": 5, "that": {"_count": 1}, "to": {"_count": 4}}, "till": {"_count": 1, "theyre": {"_count": 1}}, "born": {"_count": 2, "from": {"_count": 1}, "but": {"_count": 1}}, "their": {"_count": 1, "mortal": {"_count": 1}}, "called": {"_count": 5, "said": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "Albus": {"_count": 3, "Dumbledore": {"_count": 3}}, "nothing": {"_count": 17, "special": {"_count": 1}, "to": {"_count": 4}, "more": {"_count": 1}, "she": {"_count": 1}, "waiting": {"_count": 1}, "wrong": {"_count": 1}, "so": {"_count": 1}, "worse": {"_count": 1}, "Dumbledore": {"_count": 1}, "compared": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}, "Dark": {"_count": 1}}, "dying": {"_count": 1, "thought": {"_count": 1}}, "him": {"_count": 1, "coming": {"_count": 1}}, "or": {"_count": 3, "where": {"_count": 1}, "who": {"_count": 1}, "visited": {"_count": 1}}, "just": {"_count": 16, "like": {"_count": 1}, "no": {"_count": 1}, "on": {"_count": 1}, "picking": {"_count": 1}, "one": {"_count": 1}, "to": {"_count": 2}, "a": {"_count": 1}, "as": {"_count": 2}, "just": {"_count": 1}, "someone": {"_count": 1}, "silly": {"_count": 1}, "the": {"_count": 2}, "evil": {"_count": 1}}, "currently": {"_count": 7, "in": {"_count": 3}, "deep": {"_count": 1}, "hiding": {"_count": 1}, "publishing": {"_count": 1}, "under": {"_count": 1}}, "free": {"_count": 4, "": {"_count": 1}, "to": {"_count": 2}, "Potter": {"_count": 1}}, "greater": {"_count": 1, "by": {"_count": 1}}, "enclosed": {"_count": 1, "": {"_count": 1}}, "warned": {"_count": 2, "that": {"_count": 1}, "about": {"_count": 1}}, "armed": {"_count": 1, "and": {"_count": 1}}, "whats": {"_count": 1, "needed": {"_count": 1}}, "Stan": {"_count": 1, "Shunpike": {"_count": 1}}, "Neville": {"_count": 2, "Longbottom": {"_count": 2}}, "mad": {"_count": 5, "": {"_count": 1}, "said": {"_count": 2}, "Ron": {"_count": 1}, "theres": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "name": {"_count": 1, "for": {"_count": 1}}, "wand": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "ead": {"_count": 1, "off": {"_count": 1}}, "chances": {"_count": 1, "against": {"_count": 1}}, "aunt": {"_count": 1, "": {"_count": 1}}, "Ern": {"_count": 1, "": {"_count": 1}}, "scar": {"_count": 2, "": {"_count": 2}}, "Scabbers": {"_count": 1, "": {"_count": 1}}, "deranged": {"_count": 1, "Molly": {"_count": 1}}, "right": {"_count": 10, "": {"_count": 3}, "outside": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 2}, "youve": {"_count": 1}, "he": {"_count": 1}, "how": {"_count": 1}}, "coming": {"_count": 7, "": {"_count": 2}, "precisely": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}, "for": {"_count": 1}}, "asleep": {"_count": 1, "": {"_count": 1}}, "hiding": {"_count": 1, "Sirius": {"_count": 1}}, "presently": {"_count": 1, "playing": {"_count": 1}}, "yet": {"_count": 1, "to": {"_count": 1}}, "Professor": {"_count": 7, "Trelawney": {"_count": 1}, "": {"_count": 1}, "Dumbledore": {"_count": 3}, "GrubblyPlank": {"_count": 1}, "said": {"_count": 1}}, "kinder": {"_count": 1, "not": {"_count": 1}}, "her": {"_count": 3, "favorite": {"_count": 1}, "master": {"_count": 2}}, "hissing": {"_count": 1, "instructions": {"_count": 1}}, "alone": {"_count": 1, "but": {"_count": 1}}, "simple": {"_count": 1, "yet": {"_count": 1}}, "laughter": {"_count": 1, "": {"_count": 1}}, "force": {"_count": 1, "it": {"_count": 1}}, "successful": {"_count": 1, "the": {"_count": 1}}, "Wood": {"_count": 2, "went": {"_count": 1}, "": {"_count": 1}}, "fear": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 7, "to": {"_count": 7}}, "feeling": {"_count": 3, "too": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 1}}, "hardly": {"_count": 1, "overtaxing": {"_count": 1}}, "incorrect": {"_count": 1, "the": {"_count": 1}}, "making": {"_count": 4, "me": {"_count": 1}, "them": {"_count": 1}, "fools": {"_count": 1}, "much": {"_count": 1}}, "enough": {"_count": 4, "to": {"_count": 2}, "said": {"_count": 1}, "that": {"_count": 1}}, "set": {"_count": 2, "on": {"_count": 1}, "still": {"_count": 1}}, "left": {"_count": 1, "with": {"_count": 1}}, "therefore": {"_count": 3, "advisable": {"_count": 1}, "blinkered": {"_count": 1}, "upon": {"_count": 1}}, "up": {"_count": 7, "there": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 4}, "he": {"_count": 1}}, "henceforth": {"_count": 1, "impossible": {"_count": 1}}, "his": {"_count": 7, "er": {"_count": 1}, "mother": {"_count": 1}, "wish": {"_count": 1}, "symbol": {"_count": 1}, "Masters": {"_count": 1}, "she": {"_count": 1}, "father": {"_count": 1}}, "everyone": {"_count": 2, "": {"_count": 2}}, "you": {"_count": 10, "mustnt": {"_count": 1}, "who": {"_count": 1}, "doing": {"_count": 1}, "saying": {"_count": 1}, "see": {"_count": 1}, "": {"_count": 2}, "are": {"_count": 1}, "wont": {"_count": 1}, "can": {"_count": 1}}, "supposed": {"_count": 11, "to": {"_count": 11}}, "Hermione": {"_count": 6, "he": {"_count": 1}, "friend": {"_count": 1}, "": {"_count": 1}, "see": {"_count": 1}, "choked": {"_count": 1}, "said": {"_count": 1}}, "dear": {"_count": 1, "Professor": {"_count": 1}}, "ill": {"_count": 1, "again": {"_count": 1}}, "AllKnowing": {"_count": 1, "": {"_count": 1}}, "short": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "waiting": {"_count": 4, "outside": {"_count": 1}, "for": {"_count": 2}, "": {"_count": 1}}, "jinxfree": {"_count": 1, "": {"_count": 1}}, "highly": {"_count": 4, "advanced": {"_count": 1}, "unlikely": {"_count": 1}, "relevant": {"_count": 1}, "skilled": {"_count": 1}}, "unique": {"_count": 1, "to": {"_count": 1}}, "ridiculously": {"_count": 1, "advanced": {"_count": 1}}, "good": {"_count": 1, "said": {"_count": 1}}, "weve": {"_count": 1, "done": {"_count": 1}}, "playing": {"_count": 2, "as": {"_count": 1}, "a": {"_count": 1}}, "brilliant": {"_count": 2, "": {"_count": 2}}, "flying": {"_count": 1, "for": {"_count": 1}}, "really": {"_count": 11, "noticeable": {"_count": 1}, "sick": {"_count": 1}, "starting": {"_count": 1}, "getting": {"_count": 1}, "nice": {"_count": 1}, "important": {"_count": 3}, "unusual": {"_count": 1}, "funny": {"_count": 1}, "true": {"_count": 1}}, "getting": {"_count": 13, "ridiculous": {"_count": 2}, "up": {"_count": 1}, "out": {"_count": 1}, "along": {"_count": 1}, "stupid": {"_count": 1}, "through": {"_count": 1}, "your": {"_count": 1}, "in": {"_count": 1}, "us": {"_count": 1}, "late": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}}, "uncanny": {"_count": 1, "": {"_count": 1}}, "plainly": {"_count": 1, "full": {"_count": 1}}, "merely": {"_count": 5, "a": {"_count": 1}, "that": {"_count": 1}, "used": {"_count": 1}, "the": {"_count": 1}, "punishment": {"_count": 1}}, "stupid": {"_count": 3, "kept": {"_count": 1}, "lumos": {"_count": 1}, "Apparition": {"_count": 1}}, "haunted": {"_count": 1, "": {"_count": 1}}, "Padfoot": {"_count": 2, "": {"_count": 2}}, "Wormtail": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "call": {"_count": 1, "the": {"_count": 1}}, "Blacks": {"_count": 1, "story": {"_count": 1}}, "disturbed": {"_count": 1, "in": {"_count": 1}}, "human": {"_count": 2, "again": {"_count": 1}, "nonsense": {"_count": 1}}, "weird": {"_count": 4, "The": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 2}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "living": {"_count": 2, "proof": {"_count": 1}, "through": {"_count": 1}}, "alive": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "Nagini": {"_count": 1, "": {"_count": 1}}, "moderately": {"_count": 1, "comfortable": {"_count": 1}}, "true": {"_count": 13, "": {"_count": 4}, "said": {"_count": 1}, "that": {"_count": 3}, "however": {"_count": 2}, "but": {"_count": 3}}, "so": {"_count": 8, "well": {"_count": 1}, "stupid": {"_count": 1}, "creepy": {"_count": 1}, "cool": {"_count": 1}, "fond": {"_count": 1}, "it": {"_count": 1}, "partial": {"_count": 1}, "much": {"_count": 1}}, "needed": {"_count": 1, "is": {"_count": 1}}, "clear": {"_count": 7, "": {"_count": 3}, "to": {"_count": 2}, "before": {"_count": 1}, "from": {"_count": 1}}, "decided": {"_count": 1, "": {"_count": 1}}, "exactly": {"_count": 6, "where": {"_count": 1}, "what": {"_count": 2}, "why": {"_count": 2}, "going": {"_count": 1}}, "please": {"_count": 1, "I": {"_count": 1}}, "Mr": {"_count": 3, "Weasley": {"_count": 1}, "Slinkhard": {"_count": 1}, "Dumberton": {"_count": 1}}, "imposed": {"_count": 1, "we": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 8, "the": {"_count": 2}, "course": {"_count": 2}, "wand": {"_count": 1}, "great": {"_count": 1}, "Dumbledores": {"_count": 1}, "you": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "about": {"_count": 11, "a": {"_count": 1}, "to": {"_count": 7}, "said": {"_count": 1}, "truth": {"_count": 1}, "precisely": {"_count": 1}}, "litter": {"_count": 1, "": {"_count": 1}}, "Amos": {"_count": 1, "Diggory": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "Fred": {"_count": 1, "no": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "point": {"_count": 1, "and": {"_count": 1}}, "Winky": {"_count": 2, "sir": {"_count": 1}, "": {"_count": 1}}, "surely": {"_count": 1, "Harry": {"_count": 1}}, "setting": {"_count": 1, "him": {"_count": 1}}, "wanting": {"_count": 1, "paying": {"_count": 1}}, "unbecoming": {"_count": 1, "to": {"_count": 1}}, "told": {"_count": 3, "": {"_count": 3}}, "wishing": {"_count": 1, "she": {"_count": 1}}, "back": {"_count": 9, "in": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "at": {"_count": 1}}, "The": {"_count": 1, "Bulgarian": {"_count": 1}}, "actually": {"_count": 3, "attempting": {"_count": 1}, "Stubby": {"_count": 1}, "sir": {"_count": 1}}, "brought": {"_count": 1, "into": {"_count": 1}}, "urgent": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}}, "summoned": {"_count": 1, "missy": {"_count": 1}}, "permitted": {"_count": 1, "to": {"_count": 1}}, "suggesting": {"_count": 1, "said": {"_count": 1}}, "finding": {"_count": 1, "it": {"_count": 1}}, "seeing": {"_count": 3, "no": {"_count": 1}, "my": {"_count": 1}, "him": {"_count": 1}}, "due": {"_count": 3, "to": {"_count": 2}, "more": {"_count": 1}}, "quite": {"_count": 8, "right": {"_count": 2}, "shallow": {"_count": 1}, "sure": {"_count": 1}, "encouraging": {"_count": 1}, "wrong": {"_count": 2}, "ah": {"_count": 1}}, "everything": {"_count": 3, "I": {"_count": 1}, "all": {"_count": 2}}, "MadEye": {"_count": 1, "": {"_count": 1}}, "Dennis": {"_count": 1, "": {"_count": 1}}, "outofbounds": {"_count": 1, "to": {"_count": 1}}, "ripe": {"_count": 1, "for": {"_count": 1}}, "necessary": {"_count": 6, "given": {"_count": 1}, "to": {"_count": 2}, "work": {"_count": 1}, "and": {"_count": 1}, "otherwise": {"_count": 1}}, "selected": {"_count": 1, "": {"_count": 1}}, "late": {"_count": 2, "and": {"_count": 1}, "then": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "being": {"_count": 10, "born": {"_count": 1}, "free": {"_count": 1}, "subjected": {"_count": 1}, "watched": {"_count": 1}, "tortured": {"_count": 2}, "searched": {"_count": 1}, "taken": {"_count": 1}, "fooled": {"_count": 1}, "reestablished": {"_count": 1}}, "Uranus": {"_count": 1, "my": {"_count": 1}}, "obliged": {"_count": 1, "to": {"_count": 1}}, "already": {"_count": 3, "tending": {"_count": 1}, "making": {"_count": 1}, "livid": {"_count": 1}}, "cant": {"_count": 1, "see": {"_count": 1}}, "theyve": {"_count": 2, "started": {"_count": 1}, "got": {"_count": 1}}, "almost": {"_count": 1, "ready": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "Cedric": {"_count": 2, "Diggory": {"_count": 2}}, "amazing": {"_count": 1, "said": {"_count": 1}}, "ze": {"_count": 2, "meaning": {"_count": 1}, "only": {"_count": 1}}, "allowed": {"_count": 2, "two": {"_count": 1}, "to": {"_count": 1}}, "most": {"_count": 10, "injust": {"_count": 1}, "irregular": {"_count": 1}, "relaxed": {"_count": 1}, "likely": {"_count": 1}, "pleasant": {"_count": 1}, "important": {"_count": 1}, "unusual": {"_count": 1}, "excited": {"_count": 1}, "easily": {"_count": 1}, "underhanded": {"_count": 1}}, "lying": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "zere": {"_count": 1, "of": {"_count": 1}}, "though": {"_count": 2, "of": {"_count": 1}, "I": {"_count": 1}}, "designed": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "who": {"_count": 2, "did": {"_count": 1}, "was": {"_count": 1}}, "finished": {"_count": 4, "": {"_count": 3}, "Harry": {"_count": 1}}, "Rita": {"_count": 3, "Skeeter": {"_count": 3}}, "nice": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "never": {"_count": 2, "quite": {"_count": 1}, "safe": {"_count": 1}}, "intercepted": {"_count": 1, "we": {"_count": 1}}, "rarely": {"_count": 1, "seen": {"_count": 1}}, "dragons": {"_count": 1, "": {"_count": 1}}, "play": {"_count": 1, "to": {"_count": 1}}, "quickest": {"_count": 1, "to": {"_count": 1}}, "heavy": {"_count": 2, "said": {"_count": 1}, "on": {"_count": 1}}, "ony": {"_count": 1, "me": {"_count": 1}}, "Hagridll": {"_count": 1, "have": {"_count": 1}}, "Dobby": {"_count": 2, "sir": {"_count": 1}, "knows": {"_count": 1}}, "properly": {"_count": 1, "ashamed": {"_count": 1}}, "having": {"_count": 2, "trouble": {"_count": 1}, "visions": {"_count": 1}}, "proud": {"_count": 1, "to": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "needing": {"_count": 3, "me": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}}, "looking": {"_count": 2, "after": {"_count": 1}, "for": {"_count": 1}}, "doing": {"_count": 6, "it": {"_count": 2}, "with": {"_count": 1}, "so": {"_count": 2}, "inside": {"_count": 1}}, "telling": {"_count": 1, "Winky": {"_count": 1}}, "without": {"_count": 1, "that": {"_count": 1}}, "approaching": {"_count": 1, "a": {"_count": 1}}, "traditional": {"_count": 1, "said": {"_count": 1}}, "expected": {"_count": 1, "of": {"_count": 1}}, "offcenter": {"_count": 1, "said": {"_count": 1}}, "around": {"_count": 1, "and": {"_count": 1}}, "sorry": {"_count": 2, "sir": {"_count": 1}, "you": {"_count": 1}}, "giving": {"_count": 2, "you": {"_count": 1}, "Dobby": {"_count": 1}}, "buying": {"_count": 1, "the": {"_count": 1}}, "seemply": {"_count": 1, "superb": {"_count": 1}}, "Hermownninny": {"_count": 1, "": {"_count": 1}}, "chilly": {"_count": 1, "she": {"_count": 1}}, "indisposed": {"_count": 1, "said": {"_count": 1}}, "reputed": {"_count": 1, "to": {"_count": 1}}, "unaware": {"_count": 1, "of": {"_count": 1}}, "unimportant": {"_count": 2, "said": {"_count": 1}, "sir": {"_count": 1}}, "Potters": {"_count": 1, "egg": {"_count": 1}}, "evidence": {"_count": 1, "of": {"_count": 1}}, "fortyfive": {"_count": 1, "points": {"_count": 1}}, "swarming": {"_count": 1, "with": {"_count": 1}}, "openly": {"_count": 1, "smitten": {"_count": 1}}, "impressed": {"_count": 1, "with": {"_count": 1}}, "Veritaserum": {"_count": 1, "a": {"_count": 1}}, "controlled": {"_count": 2, "by": {"_count": 1}, "or": {"_count": 1}}, "suffering": {"_count": 1, "from": {"_count": 1}}, "mostly": {"_count": 1, "stuff": {"_count": 1}}, "obsessed": {"_count": 1, "with": {"_count": 1}}, "pining": {"_count": 1, "Harry": {"_count": 1}}, "stopped": {"_count": 1, "hie": {"_count": 1}}, "hie": {"_count": 2, "trusting": {"_count": 1}, "nosing": {"_count": 1}}, "brave": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "nosing": {"_count": 1, "hie": {"_count": 1}}, "hoping": {"_count": 1, "you": {"_count": 1}}, "work": {"_count": 2, "to": {"_count": 2}}, "taking": {"_count": 4, "a": {"_count": 2}, "an": {"_count": 1}, "care": {"_count": 1}}, "sending": {"_count": 1, "in": {"_count": 1}}, "providing": {"_count": 1, "a": {"_count": 1}}, "between": {"_count": 2, "you": {"_count": 1}, "Harry": {"_count": 1}}, "wrong": {"_count": 3, "with": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "He": {"_count": 1, "is": {"_count": 1}}, "busy": {"_count": 2, "Potter": {"_count": 2}}, "essential": {"_count": 4, "that": {"_count": 3}, "": {"_count": 1}}, "underage": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 6, "could": {"_count": 1}, "used": {"_count": 1}, "all": {"_count": 1}, "believe": {"_count": 1}, "never": {"_count": 1}, "cant": {"_count": 1}}, "somebody": {"_count": 3, "highly": {"_count": 1}, "else": {"_count": 1}, "out": {"_count": 1}}, "placed": {"_count": 1, "most": {"_count": 1}}, "dead": {"_count": 15, "": {"_count": 10}, "said": {"_count": 1}, "you": {"_count": 1}, "Lucius": {"_count": 1}, "by": {"_count": 1}, "Voldemort": {"_count": 1}}, "near": {"_count": 2, "you": {"_count": 1}, "enough": {"_count": 1}}, "unstable": {"_count": 1, "and": {"_count": 1}}, "often": {"_count": 2, "heard": {"_count": 1}, "essential": {"_count": 1}}, "simply": {"_count": 3, "a": {"_count": 1}, "Stunned": {"_count": 1}, "my": {"_count": 1}}, "past": {"_count": 2, "me": {"_count": 1}, "": {"_count": 1}}, "beautiful": {"_count": 1, "": {"_count": 1}}, "broken": {"_count": 2, "open": {"_count": 1}, "we": {"_count": 1}}, "Lucius": {"_count": 2, "said": {"_count": 1}, "Malfoy": {"_count": 1}}, "old": {"_count": 1, "magic": {"_count": 1}}, "under": {"_count": 4, "the": {"_count": 3}, "strict": {"_count": 1}}, "mine": {"_count": 4, "": {"_count": 4}}, "uneven": {"_count": 1, "": {"_count": 1}}, "killed": {"_count": 5, "him": {"_count": 2}, "Masters": {"_count": 1}, "Is": {"_count": 1}, "": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "frightened": {"_count": 2, "of": {"_count": 2}}, "returned": {"_count": 1, "to": {"_count": 1}}, "sleep": {"_count": 1, "and": {"_count": 1}}, "extremely": {"_count": 1, "well": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 1}, "Voldemorts": {"_count": 1}}, "well": {"_count": 2, "placed": {"_count": 1}, "worth": {"_count": 1}}, "much": {"_count": 8, "that": {"_count": 1}, "more": {"_count": 5}, "much": {"_count": 1}, "warmer": {"_count": 1}}, "generally": {"_count": 1, "preferable": {"_count": 1}}, "forcing": {"_count": 1, "them": {"_count": 1}}, "mental": {"_count": 1, "Fred": {"_count": 1}}, "night": {"_count": 1, "Diddykins": {"_count": 1}}, "required": {"_count": 1, "at": {"_count": 1}}, "Alastor": {"_count": 1, "Moody": {"_count": 1}}, "Nymphadora": {"_count": 2, "Dont": {"_count": 1}, "": {"_count": 1}}, "Kingsley": {"_count": 1, "Shacklebolt": {"_count": 1}}, "Galleons": {"_count": 1, "little": {"_count": 1}}, "Fudge": {"_count": 1, "suspects": {"_count": 1}}, "useless": {"_count": 1, "": {"_count": 1}}, "own": {"_count": 1, "toads": {"_count": 1}}, "thanks": {"_count": 1, "Molly": {"_count": 1}}, "staying": {"_count": 2, "at": {"_count": 2}}, "comprised": {"_count": 1, "only": {"_count": 1}}, "Dumbledores": {"_count": 1, "probably": {"_count": 1}}, "talking": {"_count": 2, "to": {"_count": 2}}, "cleaning": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "plotting": {"_count": 1, "against": {"_count": 1}}, "located": {"_count": 2, "at": {"_count": 2}}, "on": {"_count": 3, "the": {"_count": 3}}, "\u2018firearms": {"_count": 1, "said": {"_count": 1}}, "Perkins": {"_count": 1, "": {"_count": 1}}, "upheld": {"_count": 1, "you": {"_count": 1}}, "meeting": {"_count": 1, "Death": {"_count": 1}}, "acting": {"_count": 1, "of": {"_count": 1}}, "mans": {"_count": 3, "greatest": {"_count": 3}}, "purest": {"_count": 1, "": {"_count": 1}}, "surest": {"_count": 1, "": {"_count": 1}}, "lovely": {"_count": 1, "to": {"_count": 1}}, "utterly": {"_count": 1, "worthless": {"_count": 1}}, "school": {"_count": 1, "Mr": {"_count": 1}}, "NOT": {"_count": 2, "a": {"_count": 1}, "excellent": {"_count": 1}}, "alarming": {"_count": 1, "you": {"_count": 1}}, "reporting": {"_count": 1, "": {"_count": 1}}, "For": {"_count": 1, "heavens": {"_count": 1}}, "wise": {"_count": 2, "to": {"_count": 1}, "Minerva": {"_count": 1}}, "planning": {"_count": 2, "an": {"_count": 1}, "something": {"_count": 1}}, "youre": {"_count": 2, "sending": {"_count": 1}, "planning": {"_count": 1}}, "Ganymede": {"_count": 1, "not": {"_count": 1}}, "blowing": {"_count": 1, "and": {"_count": 1}}, "troubling": {"_count": 1, "you": {"_count": 1}}, "encountering": {"_count": 1, "very": {"_count": 1}}, "\u2018We": {"_count": 1, "promise": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "scared": {"_count": 1, "well": {"_count": 1}}, "keeping": {"_count": 2, "an": {"_count": 1}, "watch": {"_count": 1}}, "causing": {"_count": 1, "Professor": {"_count": 1}}, "during": {"_count": 1, "Hogsmeade": {"_count": 1}}, "innocent": {"_count": 1, "until": {"_count": 1}}, "shorter": {"_count": 1, "than": {"_count": 1}}, "oh": {"_count": 1, "look": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "rather": {"_count": 1, "important": {"_count": 1}}, "hereby": {"_count": 1, "defined": {"_count": 1}}, "advisable": {"_count": 1, "to": {"_count": 1}}, "relevant": {"_count": 1, "": {"_count": 1}}, "alas": {"_count": 1, "our": {"_count": 1}}, "organize": {"_count": 1, "an": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "desirous": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "wonderful": {"_count": 2, "theres": {"_count": 1}, "": {"_count": 1}}, "Expelliarmus": {"_count": 1, "you": {"_count": 1}}, "abou": {"_count": 1, "finished": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "determined": {"_count": 4, "to": {"_count": 3}, "that": {"_count": 1}}, "pretty": {"_count": 4, "rare": {"_count": 1}, "low": {"_count": 1}, "well": {"_count": 1}, "suspicious": {"_count": 1}}, "hes": {"_count": 1, "bleeding": {"_count": 1}}, "found": {"_count": 1, "by": {"_count": 1}}, "Fawkess": {"_count": 1, "warning": {"_count": 1}}, "precisely": {"_count": 1, "why": {"_count": 1}}, "Kreachers": {"_count": 1, "bedroom": {"_count": 1}}, "absolutely": {"_count": 1, "wonderful": {"_count": 1}}, "blaming": {"_count": 1, "the": {"_count": 1}}, "leaning": {"_count": 1, "on": {"_count": 1}}, "published": {"_count": 1, "in": {"_count": 1}}, "ask": {"_count": 2, "the": {"_count": 1}, "me": {"_count": 1}}, "whispered": {"_count": 2, "Hermione": {"_count": 2}}, "saying": {"_count": 1, "to": {"_count": 1}}, "small": {"_count": 1, "wonder": {"_count": 1}}, "mmy": {"_count": 1, "hhome": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "written": {"_count": 1, "for": {"_count": 1}}, "impersonal": {"_count": 1, "and": {"_count": 1}}, "Madam": {"_count": 1, "Edgecombe": {"_count": 1}}, "using": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "opening": {"_count": 1, "and": {"_count": 1}}, "observing": {"_count": 1, "all": {"_count": 1}}, "excellent": {"_count": 1, "": {"_count": 1}}, "producin": {"_count": 1, "good": {"_count": 1}}, "Hermy": {"_count": 1, "Grawp": {"_count": 1}}, "peddling": {"_count": 1, "our": {"_count": 1}}, "waning": {"_count": 1, "": {"_count": 1}}, "nobody": {"_count": 1, "in": {"_count": 1}}, "shrieking": {"_count": 1, "her": {"_count": 1}}, "awful": {"_count": 2, "I": {"_count": 1}, "said": {"_count": 1}}, "nearly": {"_count": 2, "over": {"_count": 1}, "time": {"_count": 1}}, "trapped": {"_count": 1, "Ive": {"_count": 1}}, "smashing": {"_count": 1, "up": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "deemed": {"_count": 1, "to": {"_count": 1}}, "nearing": {"_count": 1, "manhood": {"_count": 1}}, "bizarre": {"_count": 1, "": {"_count": 1}}, "run": {"_count": 1, "drawled": {"_count": 1}}, "done": {"_count": 3, "shall": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "below": {"_count": 1, "Voldemort": {"_count": 1}}, "patching": {"_count": 1, "everybody": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "disguised": {"_count": 1, "and": {"_count": 1}}, "perhaps": {"_count": 4, "more": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "Godrics": {"_count": 1}}, "kept": {"_count": 1, "locked": {"_count": 1}}, "active": {"_count": 1, "once": {"_count": 1}}, "operating": {"_count": 1, "amongst": {"_count": 1}}, "happy": {"_count": 1, "is": {"_count": 1}}, "neither": {"_count": 2, "here": {"_count": 1}, "taught": {"_count": 1}}, "booming": {"_count": 1, "and": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 1}, "more": {"_count": 1}}, "walking": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "at": {"_count": 1}}, "bursting": {"_count": 1, "to": {"_count": 1}}, "mistaken": {"_count": 1, "": {"_count": 1}}, "pleased": {"_count": 1, "that": {"_count": 1}}, "easily": {"_count": 2, "answered": {"_count": 1}, "remedied": {"_count": 1}}, "satisfied": {"_count": 1, "with": {"_count": 1}}, "mediocre": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "growing": {"_count": 1, "old": {"_count": 1}}, "law": {"_count": 1, "": {"_count": 1}}, "granting": {"_count": 1, "him": {"_count": 1}}, "sixteen": {"_count": 1, "and": {"_count": 1}}, "vengeance": {"_count": 1, "for": {"_count": 1}}, "angry": {"_count": 1, "Narcissa": {"_count": 1}}, "unknown": {"_count": 1, "although": {"_count": 1}}, "rife": {"_count": 1, "that": {"_count": 1}}, "convenient": {"_count": 1, "to": {"_count": 1}}, "calling": {"_count": 1, "at": {"_count": 1}}, "unwise": {"_count": 1, "to": {"_count": 1}}, "generous": {"_count": 1, "said": {"_count": 1}}, "nevertheless": {"_count": 1, "possible": {"_count": 1}}, "fraught": {"_count": 1, "with": {"_count": 1}}, "showing": {"_count": 1, "a": {"_count": 1}}, "yours": {"_count": 2, "now": {"_count": 1}, "forever": {"_count": 1}}, "able": {"_count": 1, "certainly": {"_count": 1}}, "raspberry": {"_count": 1, "": {"_count": 1}}, "devastating": {"_count": 1, "": {"_count": 1}}, "family": {"_count": 1, "properly": {"_count": 1}}, "okaylooking": {"_count": 1, "when": {"_count": 1}}, "Mother": {"_count": 1, "a": {"_count": 1}}, "extraordinary": {"_count": 1, "magic": {"_count": 1}}, "cool": {"_count": 1, "": {"_count": 1}}, "Cormac": {"_count": 1, "McLaggen": {"_count": 1}}, "Marcus": {"_count": 1, "Belby": {"_count": 1}}, "widely": {"_count": 1, "known": {"_count": 1}}, "Transfiguration": {"_count": 1, "": {"_count": 1}}, "perfectly": {"_count": 2, "happy": {"_count": 1}, "possible": {"_count": 1}}, "severed": {"_count": 1, "sprouts": {"_count": 1}}, "unfixed": {"_count": 1, "mutating": {"_count": 1}}, "impossible": {"_count": 3, "to": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "probably": {"_count": 2, "the": {"_count": 1}, "true": {"_count": 1}}, "private": {"_count": 1, "property": {"_count": 1}}, "guesswork": {"_count": 1, "said": {"_count": 1}}, "safer": {"_count": 2, "than": {"_count": 1}, "there": {"_count": 1}}, "away": {"_count": 1, "until": {"_count": 1}}, "will": {"_count": 1, "not": {"_count": 1}}, "unusual": {"_count": 1, "said": {"_count": 1}}, "another": {"_count": 1, "party": {"_count": 1}}, "nerves": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "our": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "Filch": {"_count": 1, "is": {"_count": 1}}, "crucial": {"_count": 1, "to": {"_count": 1}}, "faulty": {"_count": 1, "Lavender": {"_count": 1}}, "arriving": {"_count": 1, "tonight": {"_count": 1}}, "hard": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "absent": {"_count": 1, "from": {"_count": 1}}, "bound": {"_count": 2, "to": {"_count": 2}}, "understandable": {"_count": 1, "of": {"_count": 1}}, "Marvolo": {"_count": 1, "": {"_count": 1}}, "buried": {"_count": 2, "beside": {"_count": 1}, "in": {"_count": 1}}, "retiring": {"_count": 2, "": {"_count": 2}}, "ashamed": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "Wilkie": {"_count": 1, "Twycross": {"_count": 1}}, "usually": {"_count": 2, "impossible": {"_count": 1}, "with": {"_count": 1}}, "insufficiently": {"_count": 1, "determined": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 4, "here": {"_count": 1}, "at": {"_count": 2}, "beyond": {"_count": 1}}, "filthy": {"_count": 1, "friend": {"_count": 1}}, "teaching": {"_count": 1, "then": {"_count": 1}}, "turning": {"_count": 1, "out": {"_count": 1}}, "long": {"_count": 1, "gone": {"_count": 1}}, "illegal": {"_count": 1, "Yeah": {"_count": 1}}, "breaking": {"_count": 1, "no": {"_count": 1}}, "speaking": {"_count": 1, "to": {"_count": 1}}, "quick": {"_count": 1, "hide": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "upset": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "spectacular": {"_count": 1, "news": {"_count": 1}}, "attacked": {"_count": 1, "or": {"_count": 1}}, "inadvisable": {"_count": 1, "to": {"_count": 1}}, "obviously": {"_count": 1, "a": {"_count": 1}}, "destroyed": {"_count": 2, "sir": {"_count": 1}, "": {"_count": 1}}, "sure": {"_count": 2, "to": {"_count": 1}, "Voldemort": {"_count": 1}}, "untarnished": {"_count": 1, "and": {"_count": 1}}, "records": {"_count": 1, "of": {"_count": 1}}, "natural": {"_count": 1, "to": {"_count": 1}}, "concealed": {"_count": 1, "": {"_count": 1}}, "unavoidable": {"_count": 1, "said": {"_count": 1}}, "worth": {"_count": 2, "more": {"_count": 1}, "the": {"_count": 1}}, "foolish": {"_count": 1, "and": {"_count": 1}}, "putting": {"_count": 1, "up": {"_count": 1}}, "zat": {"_count": 1, "my": {"_count": 1}}, "horrible": {"_count": 1, "": {"_count": 1}}, "fitting": {"_count": 1, "": {"_count": 1}}, "marrying": {"_count": 1, "me": {"_count": 1}}, "admirable": {"_count": 1, "of": {"_count": 1}}, "certain": {"_count": 1, "said": {"_count": 1}}, "eschewing": {"_count": 1, "any": {"_count": 1}}, "says": {"_count": 1, "Professor": {"_count": 1}}, "second": {"_count": 1, "nature": {"_count": 1}}, "referring": {"_count": 1, "to": {"_count": 1}}, "soon": {"_count": 1, "to": {"_count": 1}}, "protecting": {"_count": 1, "the": {"_count": 1}}, "goodbye": {"_count": 1, "then": {"_count": 1}}, "YouKnowWho": {"_count": 3, "were": {"_count": 2}, "thats": {"_count": 1}}, "different": {"_count": 2, "pretending": {"_count": 1}, "Hermione": {"_count": 1}}, "nor": {"_count": 1, "that": {"_count": 1}}, "moan": {"_count": 1, "and": {"_count": 1}}, "released": {"_count": 1, "not": {"_count": 1}}, "enormously": {"_count": 1, "beneficial": {"_count": 1}}, "Xenophilius": {"_count": 1, "Lovegood": {"_count": 1}}, "Grindelvalds": {"_count": 1, "sign": {"_count": 1}}, "Gregorovitch": {"_count": 1, "these": {"_count": 1}}, "undertaking": {"_count": 1, "a": {"_count": 1}}, "happening": {"_count": 2, "Ron": {"_count": 1}, "inside": {"_count": 1}}, "fine": {"_count": 1, "thank": {"_count": 1}}, "disgusted": {"_count": 1, "by": {"_count": 1}}, "raining": {"_count": 1, "said": {"_count": 1}}, "ten": {"_count": 1, "times": {"_count": 1}}, "pure": {"_count": 1, "said": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "printing": {"_count": 1, "all": {"_count": 1}}, "whether": {"_count": 1, "anyone": {"_count": 1}}, "Godric": {"_count": 1, "Gryffindors": {"_count": 1}}, "named": {"_count": 1, "after": {"_count": 1}}, "death": {"_count": 4, "": {"_count": 3}, "Harry": {"_count": 1}}, "ensuring": {"_count": 1, "the": {"_count": 1}}, "justly": {"_count": 1, "famous": {"_count": 1}}, "find": {"_count": 1, "the": {"_count": 1}}, "trackable": {"_count": 1, "quickandeasy": {"_count": 1}}, "endless": {"_count": 1, "evidence": {"_count": 1}}, "splattered": {"_count": 2, "across": {"_count": 2}}, "conclusive": {"_count": 1, "proof": {"_count": 1}}, "best": {"_count": 1, "which": {"_count": 1}}, "Natures": {"_count": 1, "Nobility": {"_count": 1}}, "listening": {"_count": 1, "or": {"_count": 1}}, "becoming": {"_count": 2, "little": {"_count": 1}, "darker": {"_count": 1}}, "affecting": {"_count": 1, "the": {"_count": 1}}, "rumored": {"_count": 1, "to": {"_count": 1}}, "proving": {"_count": 1, "just": {"_count": 1}}, "creating": {"_count": 2, "a": {"_count": 1}, "more": {"_count": 1}}, "people": {"_count": 1, "dont": {"_count": 1}}, "maybe": {"_count": 1, "he": {"_count": 1}}, "home": {"_count": 1, "for": {"_count": 1}}, "Granger": {"_count": 1, "": {"_count": 1}}, "graver": {"_count": 1, "than": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "completely": {"_count": 1, "escape": {"_count": 1}}, "immaterial": {"_count": 1, "": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "incredibly": {"_count": 1, "rare": {"_count": 1}}, "bloody": {"_count": 1, "but": {"_count": 1}}, "despicable": {"_count": 1, "": {"_count": 1}}, "Travers": {"_count": 1, "": {"_count": 1}}, "Dragomir": {"_count": 1, "Despard": {"_count": 1}}, "partially": {"_count": 1, "blind": {"_count": 1}}, "safest": {"_count": 1, "because": {"_count": 1}}, "Wait": {"_count": 1, "wait": {"_count": 1}}, "war": {"_count": 1, "": {"_count": 1}}, "worse": {"_count": 1, "": {"_count": 1}}, "compulsory": {"_count": 1, "for": {"_count": 1}}, "lost": {"_count": 2, "Luna": {"_count": 1}, "": {"_count": 1}}, "threatened": {"_count": 1, "": {"_count": 1}}, "unlikely": {"_count": 1, "to": {"_count": 1}}, "ghostly": {"_count": 1, "services": {"_count": 1}}, "correct": {"_count": 1, "": {"_count": 1}}, "crumbling": {"_count": 1, "and": {"_count": 1}}, "merciful": {"_count": 1, "": {"_count": 1}}, "modest": {"_count": 1, "likable": {"_count": 1}}, "panicking": {"_count": 1, "he": {"_count": 1}}, "revolving": {"_count": 1, "around": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "involved": {"_count": 1, "I": {"_count": 1}}, "incapable": {"_count": 1, "of": {"_count": 1}}, "cannot": {"_count": 1, "bear": {"_count": 1}}, "touching": {"_count": 1, "Severus": {"_count": 1}}, "whole": {"_count": 1, "and": {"_count": 1}}, "beyond": {"_count": 1, "either": {"_count": 1}}, "unprecedented": {"_count": 1, "and": {"_count": 1}}, "won": {"_count": 1, "": {"_count": 1}}, "truly": {"_count": 1, "mine": {"_count": 1}}}, "Godrics": {"_count": 54, "Hollow": {"_count": 54, "": {"_count": 21}, "Harry": {"_count": 1}, "first": {"_count": 1}, "Id": {"_count": 1}, "of": {"_count": 1}, "Rons": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 3}, "was": {"_count": 2}, "even": {"_count": 1}, "is": {"_count": 1}, "Godric": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "held": {"_count": 1}, "at": {"_count": 2}, "for": {"_count": 1}, "who": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 3}, "had": {"_count": 1}, "Ron": {"_count": 2}, "said": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 1}, "would": {"_count": 1}, "as": {"_count": 1}}}, "Hollow": {"_count": 54, "": {"_count": 21, ".": {"_count": 15}, "?": {"_count": 6}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "first": {"_count": 1, "Harry": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "of": {"_count": 1, "graves": {"_count": 1}}, "Rons": {"_count": 1, "Auntie": {"_count": 1}}, "but": {"_count": 1, "Im": {"_count": 1}}, "the": {"_count": 3, "village": {"_count": 1}, "West": {"_count": 1}, "following": {"_count": 1}}, "was": {"_count": 2, "home": {"_count": 1}, "the": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "is": {"_count": 1, "Godric": {"_count": 1}}, "Godric": {"_count": 1, "Gryffindor": {"_count": 1}}, "that": {"_count": 1, "but": {"_count": 1}}, "to": {"_count": 1, "wait": {"_count": 1}}, "held": {"_count": 1, "answers": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "that": {"_count": 1}}, "for": {"_count": 1, "many": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 3, "that": {"_count": 1}, "lets": {"_count": 1}, "the": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "Ron": {"_count": 2, "was": {"_count": 1}, "added": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}}, "find": {"_count": 638, "the": {"_count": 51, "Potters": {"_count": 1}, "house": {"_count": 1}, "softest": {"_count": 1}, "perfect": {"_count": 1}, "words": {"_count": 1}, "mirror": {"_count": 1}, "poor": {"_count": 1}, "Stone": {"_count": 2}, "story": {"_count": 1}, "dormitory": {"_count": 2}, "spiders": {"_count": 1}, "right": {"_count": 4}, "three": {"_count": 1}, "room": {"_count": 2}, "market": {"_count": 1}, "others": {"_count": 3}, "news": {"_count": 1}, "merpeople": {"_count": 1}, "castle": {"_count": 1}, "Bloody": {"_count": 1}, "article": {"_count": 1}, "Snitch": {"_count": 2}, "snake": {"_count": 1}, "other": {"_count": 4}, "way": {"_count": 1}, "giant": {"_count": 1}, "little": {"_count": 1}, "correct": {"_count": 1}, "boat": {"_count": 1}, "anomaly": {"_count": 1}, "ingredients": {"_count": 1}, "tent": {"_count": 1}, "name": {"_count": 1}, "first": {"_count": 1}, "diadem": {"_count": 2}, "boy": {"_count": 2}, "one": {"_count": 1}}, "two": {"_count": 1, "people": {"_count": 1}}, "their": {"_count": 6, "nephew": {"_count": 1}, "kind": {"_count": 1}, "way": {"_count": 4}}, "his": {"_count": 11, "hair": {"_count": 1}, "way": {"_count": 2}, "Quidditch": {"_count": 1}, "symptoms": {"_count": 1}, "Wheezy": {"_count": 1}, "feet": {"_count": 1}, "daughter": {"_count": 1}, "new": {"_count": 1}, "Gaunt": {"_count": 1}, "friends": {"_count": 1}}, "someone": {"_count": 5, "to": {"_count": 2}, "somewhere": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}}, "enclosed": {"_count": 1, "a": {"_count": 1}}, "anyway": {"_count": 1, "YouKnowWho": {"_count": 1}}, "yer": {"_count": 1, "way": {"_count": 1}}, "out": {"_count": 127, "how": {"_count": 13}, "some": {"_count": 2}, "that": {"_count": 4}, "": {"_count": 11}, "who": {"_count": 7}, "for": {"_count": 3}, "what": {"_count": 22}, "about": {"_count": 8}, "if": {"_count": 2}, "whether": {"_count": 6}, "where": {"_count": 8}, "unless": {"_count": 1}, "more": {"_count": 7}, "everything": {"_count": 2}, "said": {"_count": 3}, "youre": {"_count": 1}, "after": {"_count": 1}, "whats": {"_count": 2}, "soon": {"_count": 2}, "this": {"_count": 1}, "anyway": {"_count": 1}, "exactly": {"_count": 1}, "its": {"_count": 1}, "something": {"_count": 1}, "wont": {"_count": 1}, "our": {"_count": 1}, "hes": {"_count": 1}, "in": {"_count": 1}, "youve": {"_count": 1}, "why": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "by": {"_count": 1}, "am": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "then": {"_count": 1}, "isnt": {"_count": 1}, "I": {"_count": 1}, "stuff": {"_count": 1}, "easily": {"_count": 1}}, "me": {"_count": 16, "": {"_count": 8}, "a": {"_count": 2}, "there": {"_count": 1}, "Lucius": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "they": {"_count": 1}, "almost": {"_count": 1}}, "A": {"_count": 1, "smarter": {"_count": 1}}, "them": {"_count": 18, "there": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 4}, "not": {"_count": 1}, "all": {"_count": 1}, "at": {"_count": 1}, "again": {"_count": 2}, "waiting": {"_count": 1}, "less": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}}, "how": {"_count": 1, "about": {"_count": 1}}, "of": {"_count": 1, "Oliver": {"_count": 1}}, "itself": {"_count": 1, "covered": {"_count": 1}}, "him": {"_count": 29, "anywhere": {"_count": 1}, "but": {"_count": 1}, "alive": {"_count": 1}, "": {"_count": 10}, "Harrys": {"_count": 1}, "all": {"_count": 1}, "here": {"_count": 1}, "paround": {"_count": 1}, "after": {"_count": 1}, "upstairs": {"_count": 1}, "suitable": {"_count": 1}, "ttto": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 2}, "lying": {"_count": 1}, "quick": {"_count": 1}, "my": {"_count": 1}, "an": {"_count": 1}}, "Flamel": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "anything": {"_count": 4, "": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}}, "a": {"_count": 57, "thick": {"_count": 1}, "way": {"_count": 12}, "flying": {"_count": 1}, "new": {"_count": 2}, "teacher": {"_count": 1}, "wizard": {"_count": 1}, "rat": {"_count": 1}, "nice": {"_count": 1}, "bit": {"_count": 1}, "partner": {"_count": 1}, "table": {"_count": 1}, "story": {"_count": 1}, "suitable": {"_count": 1}, "weak": {"_count": 1}, "big": {"_count": 1}, "large": {"_count": 1}, "houseelf": {"_count": 1}, "safer": {"_count": 1}, "compartment": {"_count": 2}, "seat": {"_count": 1}, "disheveled": {"_count": 1}, "night": {"_count": 1}, "rule": {"_count": 1}, "place": {"_count": 3}, "good": {"_count": 1}, "stack": {"_count": 1}, "shred": {"_count": 2}, "portrait": {"_count": 1}, "use": {"_count": 1}, "decent": {"_count": 1}, "free": {"_count": 1}, "bulging": {"_count": 1}, "school": {"_count": 1}, "group": {"_count": 1}, "woman": {"_count": 1}, "book": {"_count": 1}, "young": {"_count": 1}, "counterargument": {"_count": 1}, "chapter": {"_count": 1}, "quiet": {"_count": 1}, "founders": {"_count": 1}}, "an": {"_count": 7, "empty": {"_count": 1}, "almost": {"_count": 1}, "insult": {"_count": 1}, "alternative": {"_count": 1}, "antidote": {"_count": 2}, "opening": {"_count": 1}}, "Ron": {"_count": 9, "in": {"_count": 1}, "and": {"_count": 4}, "already": {"_count": 1}, "": {"_count": 1}, "facetoface": {"_count": 1}, "to": {"_count": 1}}, "you": {"_count": 14, "to": {"_count": 2}, "well": {"_count": 1}, "": {"_count": 3}, "can": {"_count": 1}, "a": {"_count": 1}, "till": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 2}, "ave": {"_count": 1}, "so": {"_count": 1}}, "yeh": {"_count": 2, "so": {"_count": 1}, "here": {"_count": 1}}, "One": {"_count": 1, "among": {"_count": 1}}, "some": {"_count": 3, "on": {"_count": 1}, "way": {"_count": 1}, "familiar": {"_count": 1}}, "it": {"_count": 33, "hard": {"_count": 2}, "but": {"_count": 1}, "when": {"_count": 1}, "would": {"_count": 1}, "amusing": {"_count": 1}, "funny": {"_count": 1}, "makes": {"_count": 1}, "interesting": {"_count": 1}, "later": {"_count": 1}, "much": {"_count": 1}, "full": {"_count": 1}, "accidentally": {"_count": 1}, "in": {"_count": 2}, "the": {"_count": 1}, "useful": {"_count": 1}, "far": {"_count": 1}, "both": {"_count": 1}, "natural": {"_count": 1}, "": {"_count": 2}, "knowing": {"_count": 1}, "entertaining": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 2}, "said": {"_count": 1}, "here": {"_count": 1}, "impossible": {"_count": 1}, "fast": {"_count": 2}, "strange": {"_count": 1}}, "Harry": {"_count": 3, "rigid": {"_count": 1}, "began": {"_count": 1}, "said": {"_count": 1}}, "that": {"_count": 28, "he": {"_count": 4}, "hard": {"_count": 1}, "I": {"_count": 1}, "help": {"_count": 1}, "cheers": {"_count": 1}, "Madam": {"_count": 1}, "descending": {"_count": 1}, "the": {"_count": 2}, "heads": {"_count": 1}, "she": {"_count": 1}, "Rons": {"_count": 1}, "my": {"_count": 1}, "very": {"_count": 2}, "interesting": {"_count": 1}, "Hermione": {"_count": 1}, "what": {"_count": 1}, "similar": {"_count": 1}, "when": {"_count": 1}, "this": {"_count": 1}, "ugly": {"_count": 1}, "all": {"_count": 1}, "added": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "?": {"_count": 1}, "!": {"_count": 1}}, "Mr": {"_count": 1, "and": {"_count": 1}}, "yourselves": {"_count": 1, "facing": {"_count": 1}}, "anyone": {"_count": 3, "fer": {"_count": 1}, "so": {"_count": 1}, "prepared": {"_count": 1}}, "Justin": {"_count": 1, "if": {"_count": 1}}, "much": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "Riddles": {"_count": 1, "name": {"_count": 1}}, "all": {"_count": 2, "twelve": {"_count": 1}, "three": {"_count": 1}}, "theres": {"_count": 1, "nothing": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "himself": {"_count": 10, "locked": {"_count": 1}, "trying": {"_count": 1}, "back": {"_count": 1}, "or": {"_count": 1}, "facing": {"_count": 1}, "looking": {"_count": 1}, "alone": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "famous": {"_count": 1}}, "this": {"_count": 6, "useful": {"_count": 1}, "easier": {"_count": 1}, "subject": {"_count": 1}, "very": {"_count": 1}, "spot": {"_count": 1}, "sword": {"_count": 1}}, "our": {"_count": 1, "goal": {"_count": 1}}, "her": {"_count": 6, "classroom": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "copy": {"_count": 1}, "in": {"_count": 1}, "son": {"_count": 1}}, "amusing": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 5, "problem": {"_count": 1}, "Keeper": {"_count": 1}, "one": {"_count": 1}, "lonely": {"_count": 1}, "compartment": {"_count": 1}}, "unless": {"_count": 2, "of": {"_count": 1}, "you": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "something": {"_count": 9, "to": {"_count": 3}, "wrong": {"_count": 1}, "soon": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}, "useful": {"_count": 1}, "probably": {"_count": 1}}, "they": {"_count": 1, "develop": {"_count": 1}}, "Penelope": {"_count": 1, "excuse": {"_count": 1}}, "paid": {"_count": 1, "work": {"_count": 1}}, "Scabbers": {"_count": 1, "in": {"_count": 1}}, "uses": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 6, "he": {"_count": 1}, "I": {"_count": 1}, "kill": {"_count": 1}, "grip": {"_count": 1}, "destroy": {"_count": 1}, "it": {"_count": 1}}, "excuses": {"_count": 1, "for": {"_count": 1}}, "words": {"_count": 5, "to": {"_count": 3}, "important": {"_count": 1}, "that": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "your": {"_count": 2, "campsite": {"_count": 1}, "mixtures": {"_count": 1}}, "yourself": {"_count": 3, "a": {"_count": 1}, "in": {"_count": 1}, "easy": {"_count": 1}}, "was": {"_count": 2, "his": {"_count": 1}, "this": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "inside": {"_count": 2, "": {"_count": 2}}, "seats": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "Neville": {"_count": 1, "there": {"_count": 1}}, "Hermione": {"_count": 4, "locating": {"_count": 1}, "and": {"_count": 2}, "sitting": {"_count": 1}}, "on": {"_count": 2, "dragons": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "so": {"_count": 1}}, "work": {"_count": 2, "": {"_count": 1}, "together": {"_count": 1}}, "one": {"_count": 4, "another": {"_count": 1}, "said": {"_count": 1}, "Umbridge": {"_count": 1}, "": {"_count": 1}}, "us": {"_count": 8, "": {"_count": 6}, "for": {"_count": 1}, "tonight": {"_count": 1}}, "Vicky": {"_count": 1, "hell": {"_count": 1}}, "my": {"_count": 2, "body": {"_count": 1}, "own": {"_count": 1}}, "including": {"_count": 1, "a": {"_count": 1}}, "Voldemort": {"_count": 2, "and": {"_count": 2}}, "em": {"_count": 1, "down": {"_count": 1}}, "treasure": {"_count": 1, "": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "more": {"_count": 3, "words": {"_count": 1}, "thestrals": {"_count": 1}, "butterbeers": {"_count": 1}}, "headquarters": {"_count": 1, "unless": {"_count": 1}}, "practices": {"_count": 2, "that": {"_count": 2}}, "everything": {"_count": 3, "you": {"_count": 2}, "Youre": {"_count": 1}}, "nothing": {"_count": 1, "to": {"_count": 1}}, "themselves": {"_count": 2, "lying": {"_count": 1}, "in": {"_count": 1}}, "Hogwarts": {"_count": 1, "": {"_count": 1}}, "Asiatic": {"_count": 1, "antivenoms": {"_count": 1}}, "coins": {"_count": 1, "": {"_count": 1}}, "somewhere": {"_count": 2, "said": {"_count": 1}, "for": {"_count": 1}}, "Professor": {"_count": 2, "GrubblyPlank": {"_count": 1}, "Slughorn": {"_count": 1}}, "meaning": {"_count": 1, "in": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}, "rhymes": {"_count": 1, "for": {"_count": 1}}, "we": {"_count": 2, "havent": {"_count": 1}, "appreciate": {"_count": 1}}, "ter": {"_count": 1, "be": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Umbridge": {"_count": 1}}, "myself": {"_count": 1, "somewhere": {"_count": 1}}, "Sirius": {"_count": 1, "and": {"_count": 1}}, "Snape": {"_count": 3, "staring": {"_count": 1}, "till": {"_count": 1}, "": {"_count": 1}}, "ourselves": {"_count": 1, "most": {"_count": 1}}, "intimidating": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 1, "wrong": {"_count": 1}}, "Umbridge": {"_count": 2, "and": {"_count": 1}, "Ill": {"_count": 1}}, "dem": {"_count": 1, "wid": {"_count": 1}}, "Dumbledores": {"_count": 1, "crooked": {"_count": 1}}, "several": {"_count": 1, "escaped": {"_count": 1}}, "funny": {"_count": 1, "said": {"_count": 1}}, "anywhere": {"_count": 1, "": {"_count": 1}}, "Fleur": {"_count": 1, "sitting": {"_count": 1}}, "many": {"_count": 2, "": {"_count": 1}, "memories": {"_count": 1}}, "what": {"_count": 2, "he": {"_count": 2}}, "time": {"_count": 1, "to": {"_count": 1}}, "called": {"_count": 1, "Demelza": {"_count": 1}}, "McLaggens": {"_count": 1, "red": {"_count": 1}}, "these": {"_count": 1, "charms": {"_count": 1}}, "Dark": {"_count": 1, "Magic": {"_count": 1}}, "Celestina": {"_count": 1, "very": {"_count": 1}}, "Scrimgeour": {"_count": 1, "s": {"_count": 1}}, "Malfoy": {"_count": 2, "said": {"_count": 1}, "anywhere": {"_count": 1}}, "useful": {"_count": 1, "": {"_count": 1}}, "McLaggen": {"_count": 1, "and": {"_count": 1}}, "evidence": {"_count": 2, "about": {"_count": 1}, "that": {"_count": 1}}, "Slughorn": {"_count": 1, "and": {"_count": 1}}, "solace": {"_count": 1, "for": {"_count": 1}}, "Dumbledore": {"_count": 1, "when": {"_count": 1}}, "herself": {"_count": 1, "alone": {"_count": 1}}, "before": {"_count": 1, "theyre": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "Horcruxes": {"_count": 1, "": {"_count": 1}}, "Kreacher": {"_count": 1, "in": {"_count": 1}}, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}, "sustenance": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "Bathildas": {"_count": 1, "house": {"_count": 1}}, "Order": {"_count": 1, "members": {"_count": 1}}, "But": {"_count": 1, "Ron": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}}, "rumor": {"_count": 15, "is": {"_count": 3, "that": {"_count": 3}}, "and": {"_count": 1, "suspicion": {"_count": 1}}, "about": {"_count": 1, "her": {"_count": 1}}, "admitted": {"_count": 1, "Madam": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "going": {"_count": 1, "around": {"_count": 1}}, "flew": {"_count": 1, "around": {"_count": 1}}, "has": {"_count": 1, "it": {"_count": 1}}, "someone": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "whispered": {"_count": 1, "Ollivander": {"_count": 1}}, "years": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "cant": {"_count": 1}}}, "Lily": {"_count": 109, "and": {"_count": 23, "James": {"_count": 15}, "it": {"_count": 1}, "Sirius": {"_count": 1}, "Snape": {"_count": 1}, "she": {"_count": 1}, "their": {"_count": 1}, "Albus": {"_count": 1}, "Hugo": {"_count": 2}}, "an": {"_count": 6, "James": {"_count": 4}, "Jamess": {"_count": 2}}, "this": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 16}, "!": {"_count": 2}}, "at": {"_count": 1, "once": {"_count": 1}}, "take": {"_count": 2, "Harry": {"_count": 2}}, "Potter": {"_count": 2, "told": {"_count": 1}, "had": {"_count": 1}}, "repeated": {"_count": 1, "": {"_count": 1}}, "whose": {"_count": 1, "furious": {"_count": 1}}, "shouted": {"_count": 2, "": {"_count": 1}, "rounding": {"_count": 1}}, "blinked": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 2, "Whats": {"_count": 1}, "": {"_count": 1}}, "had": {"_count": 7, "intervened": {"_count": 1}, "died": {"_count": 1}, "described": {"_count": 1}, "once": {"_count": 1}, "picked": {"_count": 2}, "reached": {"_count": 1}}, "was": {"_count": 3, "around": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "Evans": {"_count": 4, "": {"_count": 3}, "if": {"_count": 1}}, "James": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "gets": {"_count": 1}}, "alive": {"_count": 1, "for": {"_count": 1}}, "dont": {"_count": 1, "do": {"_count": 1}}, "still": {"_count": 1, "giggling": {"_count": 1}}, "waited": {"_count": 1, "until": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "though": {"_count": 1, "clearly": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "obeyed": {"_count": 1, "her": {"_count": 1}}, "whispered": {"_count": 1, "": {"_count": 1}}, "relaxing": {"_count": 1, "It": {"_count": 1}}, "surprise": {"_count": 1, "and": {"_count": 1}}, "screamed": {"_count": 1, "The": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "After": {"_count": 1, "one": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "glanced": {"_count": 1, "toward": {"_count": 1}}, "gave": {"_count": 1, "herself": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "too": {"_count": 1, "busy": {"_count": 1}}, "or": {"_count": 1, "Snape": {"_count": 1}}, "sat": {"_count": 1, "up": {"_count": 1}}, "took": {"_count": 1, "off": {"_count": 1}}, "to": {"_count": 1, "where": {"_count": 1}}, "joined": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "Evanss": {"_count": 1, "eyes": {"_count": 1}}, "cast": {"_count": 1, "her": {"_count": 1}}, "Potters": {"_count": 1, "son": {"_count": 1}}, "Snape": {"_count": 1, "took": {"_count": 1}}, "laughed": {"_count": 2, "throwing": {"_count": 1}, "": {"_count": 1}}, "ecstatically": {"_count": 1, "": {"_count": 1}}}, "James": {"_count": 171, "Potter": {"_count": 19, "are": {"_count": 1}, "": {"_count": 3}, "had": {"_count": 2}, "told": {"_count": 1}, "insisted": {"_count": 1}, "blossomed": {"_count": 1}, "resident": {"_count": 1}, "of": {"_count": 1}, "has": {"_count": 1}, "he": {"_count": 1}, "lost": {"_count": 1}, "did": {"_count": 1}, "fell": {"_count": 1}, "saved": {"_count": 1}, "fancies": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 19}, "?": {"_count": 2}}, "dead": {"_count": 1, "an": {"_count": 1}}, "Potters": {"_count": 2, "son": {"_count": 1}, "an": {"_count": 1}}, "married": {"_count": 1, "Lily": {"_count": 1}}, "and": {"_count": 29, "Lily": {"_count": 5}, "Sirius": {"_count": 9}, "now": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 2}, "Wormtail": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 2}, "Snape": {"_count": 1}, "I": {"_count": 2}, "you": {"_count": 1}, "their": {"_count": 1}, "Lupin": {"_count": 1}}, "were": {"_count": 1, "staying": {"_count": 1}}, "Sirius": {"_count": 4, "": {"_count": 2}, "Lupin": {"_count": 2}}, "disappearing": {"_count": 1, "under": {"_count": 1}}, "transformed": {"_count": 1, "into": {"_count": 1}}, "was": {"_count": 7, "Prongs": {"_count": 1}, "still": {"_count": 1}, "everything": {"_count": 1}, "a": {"_count": 1}, "dead": {"_count": 1}, "chasing": {"_count": 1}, "exactly": {"_count": 1}}, "to": {"_count": 5, "change": {"_count": 1}, "Voldemort": {"_count": 1}, "Snape": {"_count": 1}, "take": {"_count": 1}, "Sirius": {"_count": 1}}, "died": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "made": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "would": {"_count": 4, "have": {"_count": 4}}, "stood": {"_count": 2, "up": {"_count": 2}}, "yawned": {"_count": 1, "hugely": {"_count": 1}}, "the": {"_count": 1, "thumbsup": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "looked": {"_count": 1}}, "in": {"_count": 1, "tones": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "farther": {"_count": 1}}, "casually": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 2, "a": {"_count": 2}}, "didnt": {"_count": 2, "tell": {"_count": 1}, "take": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "grinned": {"_count": 1, "": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "shouted": {"_count": 2, "ExpelliarmusV": {"_count": 1}, "after": {"_count": 1}}, "glancing": {"_count": 1, "over": {"_count": 1}}, "with": {"_count": 2, "an": {"_count": 1}, "every": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}, "appearing": {"_count": 1, "to": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "whirled": {"_count": 1, "about": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "sighed": {"_count": 1, "deeply": {"_count": 1}}, "roared": {"_count": 2, "at": {"_count": 1}, "with": {"_count": 1}}, "trying": {"_count": 1, "and": {"_count": 1}}, "really": {"_count": 1, "did": {"_count": 1}}, "replied": {"_count": 1, "Its": {"_count": 1}}, "started": {"_count": 1, "it": {"_count": 1}}, "disturbed": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 7, "forced": {"_count": 1}, "deflated": {"_count": 1}, "been": {"_count": 1}, "hoisted": {"_count": 1}, "showed": {"_count": 1}, "already": {"_count": 1}, "reappeared": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "whatever": {"_count": 1, "else": {"_count": 1}}, "so": {"_count": 1, "you": {"_count": 1}}, "as": {"_count": 2, "your": {"_count": 1}, "she": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "buried": {"_count": 1, "close": {"_count": 1}}, "thought": {"_count": 1, "it": {"_count": 1}}, "is": {"_count": 1, "getting": {"_count": 1}}, "have": {"_count": 1, "backed": {"_count": 1}}, "lay": {"_count": 1, "bones": {"_count": 1}}, "came": {"_count": 1, "sprinting": {"_count": 1}}, "asked": {"_count": 1, "the": {"_count": 1}}, "lifted": {"_count": 1, "an": {"_count": 1}}, "turned": {"_count": 1, "on": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "put": {"_count": 1, "their": {"_count": 1}}, "give": {"_count": 1, "it": {"_count": 1}}, "grinning": {"_count": 1, "at": {"_count": 1}}, "caught": {"_count": 1, "his": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "says": {"_count": 1, "most": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "added": {"_count": 1, "as": {"_count": 1}}, "enthusiastically": {"_count": 1, "": {"_count": 1}}, "rolled": {"_count": 1, "his": {"_count": 1}}, "merely": {"_count": 1, "laughed": {"_count": 1}}, "wind": {"_count": 1, "you": {"_count": 1}}}, "bowed": {"_count": 56, "his": {"_count": 6, "head": {"_count": 4}, "great": {"_count": 2}}, "to": {"_count": 5, "him": {"_count": 1}, "me": {"_count": 1}, "each": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "though": {"_count": 1}}, "them": {"_count": 4, "through": {"_count": 1}, "from": {"_count": 1}, "inside": {"_count": 1}, "out": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 2, "low": {"_count": 2}}, "into": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "Dumbledore": {"_count": 1, "out": {"_count": 1}}, "himself": {"_count": 1, "out": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "its": {"_count": 2, "antlered": {"_count": 1}, "head": {"_count": 1}}, "very": {"_count": 1, "low": {"_count": 1}}, "low": {"_count": 6, "to": {"_count": 2}, "over": {"_count": 1}, "and": {"_count": 1}, "muttering": {"_count": 1}, "": {"_count": 1}}, "delightedly": {"_count": 1, "and": {"_count": 1}}, "beaming": {"_count": 1, "": {"_count": 1}}, "clumsily": {"_count": 1, "muttering": {"_count": 1}}, "Elphias": {"_count": 1, "Doge": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "looking": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "put": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "her": {"_count": 1}, "set": {"_count": 1}, "his": {"_count": 1}}, "obediently": {"_count": 2, "until": {"_count": 1}, "over": {"_count": 1}}, "deeply": {"_count": 1, "again": {"_count": 1}}, "docile": {"_count": 1, "almost": {"_count": 1}}, "down": {"_count": 1, "with": {"_count": 1}}}, "gasped": {"_count": 141, "": {"_count": 42, ".": {"_count": 42}}, "the": {"_count": 4, "glass": {"_count": 1}, "man": {"_count": 1}, "elf": {"_count": 1}, "balding": {"_count": 1}}, "Harry": {"_count": 9, "": {"_count": 6}, "clapped": {"_count": 1}, "whose": {"_count": 1}, "the": {"_count": 1}}, "clutching": {"_count": 2, "at": {"_count": 1}, "his": {"_count": 1}}, "Troll": {"_count": 1, "in": {"_count": 1}}, "Snape": {"_count": 1, "look": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "wrestling": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 2, "all": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 10, "fell": {"_count": 1}, "Colin": {"_count": 1}, "then": {"_count": 1}, "started": {"_count": 1}, "Parvati": {"_count": 1}, "applauded": {"_count": 1}, "gulped": {"_count": 1}, "grimaced": {"_count": 1}, "Harrys": {"_count": 1}, "so": {"_count": 1}}, "dabbing": {"_count": 1, "his": {"_count": 1}}, "staring": {"_count": 1, "through": {"_count": 1}}, "Ron": {"_count": 2, "coming": {"_count": 1}, "as": {"_count": 1}}, "tears": {"_count": 1, "now": {"_count": 1}}, "careening": {"_count": 1, "out": {"_count": 1}}, "skidding": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 13, "": {"_count": 9}, "looking": {"_count": 2}, "who": {"_count": 1}, "and": {"_count": 1}}, "Madam": {"_count": 1, "Rosmerta": {"_count": 1}}, "as": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 3}, "though": {"_count": 1}}, "pointing": {"_count": 2, "into": {"_count": 1}, "frantically": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "Get": {"_count": 1, "away": {"_count": 1}}, "Pettigrew": {"_count": 5, "and": {"_count": 2}, "nodding": {"_count": 1}, "": {"_count": 2}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "massaging": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "like": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "for": {"_count": 4, "breath": {"_count": 3}, "a": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "fighting": {"_count": 1, "now": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "her": {"_count": 1, "mug": {"_count": 1}}, "sitting": {"_count": 1, "up": {"_count": 1}}, "Rookwood": {"_count": 1, "his": {"_count": 1}}, "both": {"_count": 1, "hands": {"_count": 1}}, "STUPEFY": {"_count": 1, "The": {"_count": 1}}, "Fudge": {"_count": 1, "apparently": {"_count": 1}}, "Narcissa": {"_count": 1, "seemed": {"_count": 1}}, "You": {"_count": 1, "could": {"_count": 1}}, "Belby": {"_count": 1, "his": {"_count": 1}}, "including": {"_count": 1, "Hermione": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "so": {"_count": 1, "dramatically": {"_count": 1}}, "pinned": {"_count": 1, "to": {"_count": 1}}, "Slughorn": {"_count": 1, "let": {"_count": 1}}}, "patted": {"_count": 27, "her": {"_count": 8, "on": {"_count": 4}, "great": {"_count": 1}, "very": {"_count": 1}, "shoulder": {"_count": 1}, "hair": {"_count": 1}}, "his": {"_count": 2, "arm": {"_count": 1}, "cheek": {"_count": 1}}, "the": {"_count": 5, "dashboard": {"_count": 1}, "beak": {"_count": 1}, "first": {"_count": 1}, "nearest": {"_count": 1}, "shoulder": {"_count": 1}}, "Aunt": {"_count": 1, "Petunias": {"_count": 1}}, "Harry": {"_count": 2, "wordlessly": {"_count": 1}, "on": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Hagrids": {"_count": 1, "shoulder": {"_count": 1}}, "him": {"_count": 3, "on": {"_count": 1}, "consolingly": {"_count": 1}, "painfully": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}, "Hagrid": {"_count": 1, "hard": {"_count": 1}}, "Snape": {"_count": 1, "on": {"_count": 1}}, "Harrys": {"_count": 1, "hand": {"_count": 1}}}, "shoulder": {"_count": 295, "": {"_count": 99, ".": {"_count": 99}}, "and": {"_count": 43, "making": {"_count": 1}, "saw": {"_count": 4}, "looked": {"_count": 1}, "he": {"_count": 1}, "spread": {"_count": 1}, "tears": {"_count": 1}, "his": {"_count": 1}, "felt": {"_count": 1}, "Harry": {"_count": 2}, "shook": {"_count": 1}, "almost": {"_count": 1}, "went": {"_count": 1}, "held": {"_count": 2}, "jerked": {"_count": 1}, "made": {"_count": 2}, "helped": {"_count": 1}, "she": {"_count": 2}, "left": {"_count": 2}, "hurried": {"_count": 3}, "smiling": {"_count": 1}, "turning": {"_count": 1}, "fitted": {"_count": 1}, "hit": {"_count": 1}, "sent": {"_count": 1}, "yelled": {"_count": 1}, "Dudley": {"_count": 1}, "grasped": {"_count": 1}, "was": {"_count": 1}, "Crookshanks": {"_count": 1}, "gave": {"_count": 1}, "pushing": {"_count": 1}, "dropped": {"_count": 1}, "saying": {"_count": 1}}, "to": {"_count": 19, "finger": {"_count": 1}, "floor": {"_count": 1}, "read": {"_count": 1}, "shoulder": {"_count": 4}, "check": {"_count": 3}, "see": {"_count": 4}, "prevent": {"_count": 2}, "another": {"_count": 1}, "steady": {"_count": 1}, "where": {"_count": 1}}, "jus": {"_count": 1, "round": {"_count": 1}}, "as": {"_count": 14, "if": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 6}, "Winky": {"_count": 1}, "though": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}}, "but": {"_count": 8, "it": {"_count": 1}, "still": {"_count": 1}, "thought": {"_count": 1}, "Dumbledore": {"_count": 1}, "this": {"_count": 2}, "as": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 14, "the": {"_count": 7}, "Crabbe": {"_count": 1}, "random": {"_count": 1}, "Harry": {"_count": 2}, "a": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}}, "sneering": {"_count": 1, "in": {"_count": 1}}, "facing": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 7, "could": {"_count": 1}, "saw": {"_count": 4}, "for": {"_count": 1}, "seized": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "gently": {"_count": 2, "": {"_count": 2}}, "just": {"_count": 2, "as": {"_count": 2}}, "theyve": {"_count": 1, "messed": {"_count": 1}}, "height": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "turned": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "support": {"_count": 1}}, "Hermione": {"_count": 1, "rushing": {"_count": 1}}, "following": {"_count": 1, "something": {"_count": 1}}, "was": {"_count": 3, "Scabbers": {"_count": 1}, "now": {"_count": 1}, "trembling": {"_count": 1}}, "wands": {"_count": 2, "raised": {"_count": 1}, "pointing": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "carrying": {"_count": 1, "what": {"_count": 1}}, "folded": {"_count": 1, "her": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "muttered": {"_count": 1, "something": {"_count": 1}}, "ripping": {"_count": 1, "his": {"_count": 1}}, "talking": {"_count": 1, "furiously": {"_count": 1}}, "with": {"_count": 3, "her": {"_count": 1}, "what": {"_count": 1}, "such": {"_count": 1}}, "Hello": {"_count": 1, "Professor": {"_count": 1}}, "so": {"_count": 4, "that": {"_count": 2}, "as": {"_count": 1}, "frequently": {"_count": 1}}, "again": {"_count": 3, "so": {"_count": 1}, "at": {"_count": 1}, "then": {"_count": 1}}, "a": {"_count": 2, "quick": {"_count": 1}, "loaf": {"_count": 1}}, "the": {"_count": 3, "small": {"_count": 1}, "babyheaded": {"_count": 1}, "statue": {"_count": 1}}, "straps": {"_count": 1, "of": {"_count": 1}}, "foggy": {"_count": 1, "shapes": {"_count": 1}}, "moving": {"_count": 1, "closer": {"_count": 1}}, "kissed": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 3, "large": {"_count": 1}, "heart": {"_count": 1}, "magical": {"_count": 1}}, "he": {"_count": 4, "steered": {"_count": 1}, "set": {"_count": 1}, "heard": {"_count": 1}, "saw": {"_count": 1}}, "in": {"_count": 2, "warning": {"_count": 1}, "a": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "some": {"_count": 1, "real": {"_count": 1}}, "making": {"_count": 1, "notes": {"_count": 1}}, "smoking": {"_count": 1, "a": {"_count": 1}}, "knocking": {"_count": 1, "him": {"_count": 1}}, "blades": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "his": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Chos": {"_count": 1, "curlyhaired": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "Its": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "aching": {"_count": 1, "Harry": {"_count": 1}}, "Ill": {"_count": 1, "do": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "having": {"_count": 1, "only": {"_count": 1}}, "tears": {"_count": 1, "dripping": {"_count": 1}}, "gazing": {"_count": 1, "upward": {"_count": 1}}, "Ron": {"_count": 2, "gave": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 1, "Its": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "released": {"_count": 1, "him": {"_count": 1}}, "There": {"_count": 1, "would": {"_count": 1}}}, "heavily": {"_count": 109, "": {"_count": 29, ".": {"_count": 29}}, "and": {"_count": 2, "grabbed": {"_count": 1}, "sitting": {"_count": 1}}, "through": {"_count": 1, "her": {"_count": 1}}, "resigned": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "frowning": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 1}, "Flitwicks": {"_count": 1}}, "bade": {"_count": 1, "Riddle": {"_count": 1}}, "on": {"_count": 5, "his": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 2}}, "perfumed": {"_count": 4, "smoke": {"_count": 1}, "purple": {"_count": 1}, "fumes": {"_count": 1}, "tower": {"_count": 1}}, "guarded": {"_count": 3, "in": {"_count": 1}, "house": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 4, "she": {"_count": 1}, "they": {"_count": 1}, "Ron": {"_count": 1}, "though": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "him": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "Dumbledore": {"_count": 1}}, "scarred": {"_count": 2, "face": {"_count": 1}, "and": {"_count": 1}}, "punished": {"_count": 1, "by": {"_count": 1}}, "bandaged": {"_count": 4, "hand": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "penciled": {"_count": 2, "eyebrow": {"_count": 1}, "eyebrows": {"_count": 1}}, "than": {"_count": 2, "ever": {"_count": 1}, "usual": {"_count": 1}}, "armed": {"_count": 1, "merpeople": {"_count": 1}}, "stained": {"_count": 1, "blouse": {"_count": 1}}, "Hagrid": {"_count": 1, "gave": {"_count": 1}}, "hooded": {"_count": 1, "eyes": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "laden": {"_count": 3, "arms": {"_count": 1}, "dinner": {"_count": 1}, "breakfast": {"_count": 1}}, "graffittied": {"_count": 1, "wall": {"_count": 1}}, "mustached": {"_count": 1, "wizard": {"_count": 1}}, "patched": {"_count": 2, "and": {"_count": 1}, "jeans": {"_count": 1}}, "dripping": {"_count": 1, "balcony": {"_count": 1}}, "draped": {"_count": 1, "in": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "veiled": {"_count": 1, "witch": {"_count": 1}}, "muffled": {"_count": 2, "against": {"_count": 1}, "figure": {"_count": 1}}, "chained": {"_count": 1, "and": {"_count": 1}}, "disguised": {"_count": 1, "as": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "lidded": {"_count": 5, "eyes": {"_count": 5}}, "bruised": {"_count": 1, "as": {"_count": 1}}, "protected": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "Mrs": {"_count": 1}}, "that": {"_count": 2, "she": {"_count": 1}, "his": {"_count": 1}}, "supervised": {"_count": 1, "in": {"_count": 1}}, "corrected": {"_count": 1, "HalfBlood": {"_count": 1}}, "slumping": {"_count": 1, "back": {"_count": 1}}, "graffitied": {"_count": 1, "fire": {"_count": 1}}, "His": {"_count": 1, "eyes": {"_count": 1}}}, "McGonagalls": {"_count": 53, "voice": {"_count": 7, "trembled": {"_count": 1}, "magically": {"_count": 1}, "": {"_count": 2}, "called": {"_count": 1}, "drowned": {"_count": 1}, "through": {"_count": 1}}, "wake": {"_count": 1, "as": {"_count": 1}}, "study": {"_count": 1, "on": {"_count": 1}}, "nostrils": {"_count": 2, "flared": {"_count": 1}, "": {"_count": 1}}, "giant": {"_count": 1, "chess": {"_count": 1}}, "hand": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "classes": {"_count": 1, "were": {"_count": 1}}, "shadowy": {"_count": 1, "face": {"_count": 1}}, "cheek": {"_count": 1, "": {"_count": 1}}, "permission": {"_count": 1, "to": {"_count": 1}}, "office": {"_count": 7, "": {"_count": 2}, "first": {"_count": 1}, "when": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "desk": {"_count": 4, "picked": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "Nevilles": {"_count": 1}}, "Transfiguration": {"_count": 1, "lesson": {"_count": 1}}, "severe": {"_count": 1, "voice": {"_count": 1}}, "reach": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "irritated": {"_count": 1, "voice": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "mouth": {"_count": 1, "was": {"_count": 1}}, "dark": {"_count": 1, "eyebrows": {"_count": 1}}, "got": {"_count": 1, "over": {"_count": 1}}, "Inanimatus": {"_count": 1, "Conjurus": {"_count": 1}}, "long": {"_count": 1, "essay": {"_count": 1}}, "beady": {"_count": 1, "squareframed": {"_count": 1}}, "shoulder": {"_count": 1, "smoking": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "flew": {"_count": 1}}, "reaction": {"_count": 1, "if": {"_count": 1}}, "furious": {"_count": 1, "declaration": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "descent": {"_count": 2, "from": {"_count": 2}}, "orders": {"_count": 1, "said": {"_count": 1}}, "tartan": {"_count": 1, "dressing": {"_count": 1}}, "despair": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "wanted": {"_count": 1}}}, "trembled": {"_count": 32, "as": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "with": {"_count": 5, "rage": {"_count": 1}, "quiet": {"_count": 1}, "fury": {"_count": 1}, "the": {"_count": 2}}, "and": {"_count": 8, "she": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "shook": {"_count": 1}, "broke": {"_count": 1}, "creaked": {"_count": 1}, "Ron": {"_count": 1}, "choked": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "ready": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "violently": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "glowing": {"_count": 1, "with": {"_count": 1}}, "alarmingly": {"_count": 1, "": {"_count": 1}}, "noisily": {"_count": 1, "against": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}}, "Thats": {"_count": 353, "not": {"_count": 24, "all": {"_count": 1}, "ages": {"_count": 1}, "the": {"_count": 6}, "a": {"_count": 2}, "funny": {"_count": 3}, "very": {"_count": 1}, "how": {"_count": 1}, "on": {"_count": 1}, "too": {"_count": 1}, "what": {"_count": 3}, "Dumbledores": {"_count": 1}, "information": {"_count": 1}, "fair": {"_count": 1}, "saying": {"_count": 1}}, "two": {"_count": 2, "less": {"_count": 1}, "Gryffindors": {"_count": 1}}, "mine": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 30, "yeh": {"_count": 1}, "we": {"_count": 2}, "I": {"_count": 4}, "yer": {"_count": 1}, "Malfoy": {"_count": 1}, "made": {"_count": 1}, "youre": {"_count": 2}, "Ive": {"_count": 2}, "you": {"_count": 3}, "Im": {"_count": 1}, "Krum": {"_count": 1}, "Cedric": {"_count": 1}, "my": {"_count": 1}, "were": {"_count": 1}, "one": {"_count": 1}, "they": {"_count": 2}, "she": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "hes": {"_count": 1}, "Dumbledore": {"_count": 1}}, "better": {"_count": 4, "said": {"_count": 1}, "he": {"_count": 1}, "panted": {"_count": 1}, "Harry": {"_count": 1}}, "the": {"_count": 23, "biggest": {"_count": 1}, "House": {"_count": 1}, "main": {"_count": 1}, "ticket": {"_count": 1}, "thing": {"_count": 1}, "spirit": {"_count": 1}, "rule": {"_count": 1}, "post": {"_count": 1}, "first": {"_count": 1}, "day": {"_count": 1}, "mark": {"_count": 1}, "whole": {"_count": 1}, "second": {"_count": 1}, "worst": {"_count": 1}, "bell": {"_count": 1}, "stupidest": {"_count": 1}, "trouble": {"_count": 1}, "one": {"_count": 2}, "individual": {"_count": 1}, "way": {"_count": 1}, "Portkey": {"_count": 1}, "er": {"_count": 1}}, "Hagrid": {"_count": 2, "said": {"_count": 1}, "breaking": {"_count": 1}}, "you": {"_count": 3, "done": {"_count": 1}, "": {"_count": 2}}, "it": {"_count": 10, "": {"_count": 2}, "really": {"_count": 1}, "make": {"_count": 1}, "said": {"_count": 1}, "isnt": {"_count": 2}, "he": {"_count": 1}, "though": {"_count": 1}, "grub": {"_count": 1}}, "another": {"_count": 1, "point": {"_count": 1}}, "enough": {"_count": 11, "Mr": {"_count": 1}, "Peeves": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 4}, "settle": {"_count": 1}, "Fred": {"_count": 1}, "said": {"_count": 1}, "Phineas": {"_count": 1}}, "your": {"_count": 4, "problem": {"_count": 2}, "parents": {"_count": 1}, "ghoul": {"_count": 1}}, "a": {"_count": 19, "broomstick": {"_count": 1}, "difficult": {"_count": 1}, "girls": {"_count": 2}, "good": {"_count": 3}, "brilliant": {"_count": 1}, "phoenix": {"_count": 1}, "sort": {"_count": 1}, "bit": {"_count": 2}, "Howler": {"_count": 1}, "bright": {"_count": 1}, "majority": {"_count": 1}, "very": {"_count": 1}, "problem": {"_count": 1}, "basilisk": {"_count": 1}, "horrible": {"_count": 1}}, "why": {"_count": 26, "you": {"_count": 2}, "Seekers": {"_count": 1}, "yer": {"_count": 1}, "we": {"_count": 2}, "the": {"_count": 1}, "weve": {"_count": 1}, "they": {"_count": 1}, "Ive": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 5}, "Slytherins": {"_count": 1}, "youve": {"_count": 1}, "Gryffindors": {"_count": 1}, "its": {"_count": 1}, "hes": {"_count": 1}, "I": {"_count": 4}, "Im": {"_count": 1}}, "where": {"_count": 9, "he": {"_count": 2}, "Filch": {"_count": 1}, "I": {"_count": 1}, "all": {"_count": 2}, "hes": {"_count": 2}, "youre": {"_count": 1}}, "top": {"_count": 1, "secret": {"_count": 1}}, "friendly": {"_count": 1, "said": {"_count": 1}}, "really": {"_count": 2, "nice": {"_count": 1}, "Unexpected": {"_count": 1}}, "exactly": {"_count": 4, "the": {"_count": 1}, "Hagrids": {"_count": 1}, "what": {"_count": 2}}, "er": {"_count": 1, "": {"_count": 1}}, "unicorn": {"_count": 1, "blood": {"_count": 1}}, "just": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 1}}, "chess": {"_count": 1, "": {"_count": 1}}, "hardly": {"_count": 2, "one": {"_count": 1}, "the": {"_count": 1}}, "very": {"_count": 3, "sweet": {"_count": 1}, "very": {"_count": 1}, "odd": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtles": {"_count": 1}}, "because": {"_count": 6, "hes": {"_count": 2}, "theyre": {"_count": 1}, "there": {"_count": 1}, "its": {"_count": 1}, "he": {"_count": 1}}, "probably": {"_count": 1, "why": {"_count": 1}}, "how": {"_count": 4, "he": {"_count": 1}, "hes": {"_count": 1}, "shes": {"_count": 1}, "I": {"_count": 1}}, "Filch": {"_count": 1, "Harry": {"_count": 1}}, "Dads": {"_count": 1, "boss": {"_count": 1}}, "all": {"_count": 13, "Im": {"_count": 1}, "I": {"_count": 3}, "your": {"_count": 1}, "right": {"_count": 2}, "you": {"_count": 1}, "anyone": {"_count": 1}, "very": {"_count": 2}, "there": {"_count": 1}, "then": {"_count": 1}}, "clever": {"_count": 1, "of": {"_count": 1}}, "right": {"_count": 40, "said": {"_count": 23}, "Gilderoy": {"_count": 1}, "sneered": {"_count": 1}, "": {"_count": 8}, "Harry": {"_count": 2}, "I": {"_count": 1}, "thats": {"_count": 1}, "isnt": {"_count": 1}, "Smith": {"_count": 1}, "rasped": {"_count": 1}}, "who": {"_count": 1, "he": {"_count": 1}}, "obvious": {"_count": 1, "whispered": {"_count": 1}}, "south": {"_count": 1, "look": {"_count": 1}}, "Madam": {"_count": 1, "Rosmerta": {"_count": 1}}, "my": {"_count": 8, "boy": {"_count": 1}, "son": {"_count": 1}, "wand": {"_count": 2}, "business": {"_count": 1}, "point": {"_count": 1}, "final": {"_count": 1}, "nickname": {"_count": 1}}, "weird": {"_count": 1, "said": {"_count": 1}}, "convenient": {"_count": 2, "snorted": {"_count": 1}, "": {"_count": 1}}, "true": {"_count": 3, "said": {"_count": 3}}, "going": {"_count": 1, "to": {"_count": 1}}, "wonderful": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 2, "enough": {"_count": 1}, "said": {"_count": 1}}, "no": {"_count": 2, "reason": {"_count": 2}}, "whats": {"_count": 2, "normal": {"_count": 1}, "causing": {"_count": 1}}, "if": {"_count": 2, "theyre": {"_count": 1}, "he": {"_count": 1}}, "him": {"_count": 4, "thats": {"_count": 1}, "MadEye": {"_count": 1}, "isnt": {"_count": 1}, "its": {"_count": 1}}, "sick": {"_count": 1, "Ron": {"_count": 1}}, "for": {"_count": 3, "you": {"_count": 1}, "Quidditch": {"_count": 1}, "everyone": {"_count": 1}}, "when": {"_count": 2, "I": {"_count": 1}, "they": {"_count": 1}}, "some": {"_count": 1, "nerve": {"_count": 1}}, "okay": {"_count": 1, "said": {"_count": 1}}, "more": {"_count": 1, "what": {"_count": 1}}, "twice": {"_count": 1, "youve": {"_count": 1}}, "Fudges": {"_count": 1, "voice": {"_count": 1}}, "Dumbledores": {"_count": 2, "plan": {"_count": 1}, "brother": {"_count": 1}}, "never": {"_count": 2, "youre": {"_count": 1}, "unicorn": {"_count": 1}}, "everyone": {"_count": 1, "in": {"_count": 1}}, "Marlene": {"_count": 1, "McKinnon": {"_count": 1}}, "Frank": {"_count": 1, "and": {"_count": 1}}, "Edgar": {"_count": 1, "Bones": {"_count": 1}}, "Dorcas": {"_count": 1, "Meadowes": {"_count": 1}}, "before": {"_count": 1, "she": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "quite": {"_count": 2, "all": {"_count": 1}, "enough": {"_count": 1}}, "cause": {"_count": 1, "you": {"_count": 1}}, "definitely": {"_count": 1, "Percys": {"_count": 1}}, "an": {"_count": 2, "idea": {"_count": 1}, "understatement": {"_count": 1}}, "always": {"_count": 1, "packed": {"_count": 1}}, "great": {"_count": 4, "news": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "wholl": {"_count": 1, "be": {"_count": 1}}, "funny": {"_count": 1, "said": {"_count": 1}}, "stupid": {"_count": 1, "said": {"_count": 1}}, "already": {"_count": 1, "Harrys": {"_count": 1}}, "three": {"_count": 1, "Galleons": {"_count": 1}}, "from": {"_count": 1, "my": {"_count": 1}}, "neither": {"_count": 1, "here": {"_count": 1}}, "me": {"_count": 1, "outsmarted": {"_count": 1}}, "as": {"_count": 2, "bad": {"_count": 1}, "much": {"_count": 1}}, "only": {"_count": 1, "March": {"_count": 1}}, "settled": {"_count": 1, "then": {"_count": 1}}, "decided": {"_count": 1, "then": {"_count": 1}}, "awful": {"_count": 1, "": {"_count": 1}}, "brilliant": {"_count": 1, "congrat": {"_count": 1}}, "Voldemorts": {"_count": 1, "job": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "our": {"_count": 1, "present": {"_count": 1}}, "Xenophilius": {"_count": 1, "Lovegood": {"_count": 1}}, "her": {"_count": 2, "he": {"_count": 1}, "over": {"_count": 1}}, "Dolohov": {"_count": 1, "said": {"_count": 1}}, "their": {"_count": 1, "pretext": {"_count": 1}}, "certainly": {"_count": 1, "part": {"_count": 1}}, "thats": {"_count": 2, "not": {"_count": 1}, "pretty": {"_count": 1}}, "mental": {"_count": 1, "we": {"_count": 1}}, "that": {"_count": 1, "problem": {"_count": 1}}, "important": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "interesting": {"_count": 1, "": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}}, "kill": {"_count": 242, "the": {"_count": 15, "Potters": {"_count": 1}, "whole": {"_count": 1}, "cat": {"_count": 1}, "others": {"_count": 1}, "boy": {"_count": 1}, "other": {"_count": 2}, "Riddles": {"_count": 1}, "person": {"_count": 2}, "figure": {"_count": 1}, "snake": {"_count": 3}, "previous": {"_count": 1}}, "that": {"_count": 3, "little": {"_count": 1}, "girl": {"_count": 1}, "that": {"_count": 1}}, "Harry": {"_count": 11, "Potter": {"_count": 3}, "": {"_count": 3}, "youll": {"_count": 1}, "Two": {"_count": 1}, "before": {"_count": 2}, "rather": {"_count": 1}}, "a": {"_count": 4, "little": {"_count": 1}, "student": {"_count": 1}, "basilisk": {"_count": 1}, "wizard": {"_count": 1}}, "Lily": {"_count": 1, "an": {"_count": 1}}, "you": {"_count": 41, "too": {"_count": 1}, "": {"_count": 15}, "tonight": {"_count": 1}, "and": {"_count": 1}, "sir": {"_count": 1}, "until": {"_count": 1}, "we": {"_count": 1}, "Potter": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 4}, "you": {"_count": 1}, "seems": {"_count": 1}, "as": {"_count": 2}, "backfired": {"_count": 1}, "because": {"_count": 1}, "fifteen": {"_count": 1}, "Voldemort": {"_count": 1}, "My": {"_count": 1}, "like": {"_count": 1}, "On": {"_count": 1}, "Regulus": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 1}}, "em": {"_count": 1, "no": {"_count": 1}}, "Fred": {"_count": 1, "he": {"_count": 1}}, "me": {"_count": 46, "": {"_count": 21}, "in": {"_count": 1}, "instead": {"_count": 2}, "Harry": {"_count": 1}, "Remus": {"_count": 1}, "again": {"_count": 1}, "too": {"_count": 2}, "Ron": {"_count": 1}, "Dad": {"_count": 1}, "whispered": {"_count": 1}, "because": {"_count": 1}, "Dumbledore": {"_count": 1}, "as": {"_count": 1}, "for": {"_count": 2}, "all": {"_count": 1}, "Draco": {"_count": 2}, "you": {"_count": 1}, "himself": {"_count": 1}, "just": {"_count": 1}, "or": {"_count": 1}, "said": {"_count": 1}, "Id": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 31, "fool": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 15}, "Go": {"_count": 2}, "like": {"_count": 1}, "together": {"_count": 1}, "he": {"_count": 2}, "But": {"_count": 1}, "and": {"_count": 2}, "could": {"_count": 1}, "or": {"_count": 2}, "when": {"_count": 1}}, "yet": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 10}, "?": {"_count": 1}, "!": {"_count": 1}}, "someone": {"_count": 2, "": {"_count": 1}, "else": {"_count": 1}}, "myself": {"_count": 2, "": {"_count": 2}}, "of": {"_count": 1, "course": {"_count": 1}}, "anyone": {"_count": 2, "": {"_count": 1}, "do": {"_count": 1}}, "anybody": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 2, "other": {"_count": 2}}, "werewolves": {"_count": 1, "": {"_count": 1}}, "Black": {"_count": 3, "or": {"_count": 1}, "": {"_count": 2}}, "us": {"_count": 9, "too": {"_count": 1}, "all": {"_count": 3}, "": {"_count": 3}, "if": {"_count": 1}, "did": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "and": {"_count": 2, "torture": {"_count": 2}}, "her": {"_count": 5, "instead": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "own": {"_count": 1}, "and": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "Cedric": {"_count": 2, "": {"_count": 2}}, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "half": {"_count": 1, "breeds": {"_count": 1}}, "yeh": {"_count": 1, "jus": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "whoever": {"_count": 2, "touches": {"_count": 1}, "it": {"_count": 1}}, "them": {"_count": 5, "all": {"_count": 2}, "There": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "be": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "Voldemort": {"_count": 3, "": {"_count": 1}, "must": {"_count": 1}, "would": {"_count": 1}}, "Harrys": {"_count": 1, "parents": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "grandparents": {"_count": 1}, "The": {"_count": 1}}, "they": {"_count": 1, "just": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "by": {"_count": 1, "murdering": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "my": {"_count": 1, "whole": {"_count": 1}}, "yer": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "don": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "Voldemort": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "if": {"_count": 1, "hes": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "wiped": {"_count": 1, "all": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "power": {"_count": 148, "somehow": {"_count": 1, "broke": {"_count": 1}}, "cause": {"_count": 1, "he": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "and": {"_count": 14, "excellent": {"_count": 1}, "those": {"_count": 1}, "incredibly": {"_count": 1}, "told": {"_count": 1}, "to": {"_count": 3}, "I": {"_count": 1}, "strength": {"_count": 1}, "influence": {"_count": 1}, "rightness": {"_count": 1}, "yes": {"_count": 1}, "qualities": {"_count": 1}, "his": {"_count": 1}}, "of": {"_count": 14, "liquids": {"_count": 1}, "the": {"_count": 3}, "Binns": {"_count": 1}, "speech": {"_count": 2}, "obsessive": {"_count": 1}, "a": {"_count": 1}, "certain": {"_count": 1}, "innocence": {"_count": 1}, "wands": {"_count": 1}, "that": {"_count": 1}, "your": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "who": {"_count": 1, "has": {"_count": 1}}, "it": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 17}, "!": {"_count": 3}, "?": {"_count": 1}}, "that": {"_count": 6, "seemed": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "Voldemort": {"_count": 1}, "crossed": {"_count": 1}, "he": {"_count": 1}}, "was": {"_count": 2, "broken": {"_count": 1}, "my": {"_count": 1}}, "could": {"_count": 2, "harm": {"_count": 1}, "exist": {"_count": 1}}, "to": {"_count": 29, "release": {"_count": 1}, "make": {"_count": 2}, "influence": {"_count": 1}, "prepare": {"_count": 1}, "turn": {"_count": 1}, "expel": {"_count": 1}, "hand": {"_count": 1}, "inspect": {"_count": 2}, "strip": {"_count": 1}, "alter": {"_count": 1}, "do": {"_count": 1}, "dock": {"_count": 1}, "whip": {"_count": 1}, "vanquish": {"_count": 2}, "you": {"_count": 1}, "kill": {"_count": 1}, "match": {"_count": 1}, "confiscate": {"_count": 1}, "suck": {"_count": 1}, "perform": {"_count": 1}, "recall": {"_count": 2}, "bring": {"_count": 1}, "contain": {"_count": 1}, "protect": {"_count": 1}, "stop": {"_count": 1}}, "got": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 3, "me": {"_count": 1}, "the": {"_count": 2}}, "ter": {"_count": 1, "overrule": {"_count": 1}}, "were": {"_count": 2, "you": {"_count": 1}, "done": {"_count": 1}}, "steadily": {"_count": 1, "for": {"_count": 1}}, "thereby": {"_count": 1, "driving": {"_count": 1}}, "only": {"_count": 1, "too": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}}, "just": {"_count": 1, "when": {"_count": 1}}, "remained": {"_count": 1, "to": {"_count": 1}}, "thirteen": {"_count": 1, "years": {"_count": 1}}, "by": {"_count": 2, "killing": {"_count": 1}, "theft": {"_count": 1}}, "radiated": {"_count": 1, "from": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "did": {"_count": 1, "Dumbledore": {"_count": 1}}, "instead": {"_count": 1, "but": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 2, "George": {"_count": 1}, "Harry": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "McGonagalls": {"_count": 1, "got": {"_count": 1}}, "the": {"_count": 1, "Dark": {"_count": 1}}, "held": {"_count": 1, "within": {"_count": 1}}, "took": {"_count": 1, "you": {"_count": 1}}, "also": {"_count": 1, "saved": {"_count": 1}}, "three": {"_count": 1, "years": {"_count": 1}}, "as": {"_count": 2, "prefect": {"_count": 1}, "he": {"_count": 1}}, "which": {"_count": 1, "some": {"_count": 1}}, "until": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 1, "Voldemorts": {"_count": 1}}, "not": {"_count": 1, "the": {"_count": 1}}, "beyond": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "illegally": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "are": {"_count": 2, "not": {"_count": 1}, "those": {"_count": 1}}, "gives": {"_count": 1, "us": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "Dumbledore": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "understanding": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "is": {"_count": 1, "mine": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "somehow": {"_count": 82, "broke": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "found": {"_count": 1, "himself": {"_count": 1}}, "even": {"_count": 2, "though": {"_count": 1}, "hungrier": {"_count": 1}}, "turned": {"_count": 1, "his": {"_count": 1}}, "managed": {"_count": 3, "to": {"_count": 3}}, "what": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "this": {"_count": 1, "is": {"_count": 1}}, "survived": {"_count": 1, "a": {"_count": 1}}, "nobody": {"_count": 1, "understood": {"_count": 1}}, "they": {"_count": 2, "still": {"_count": 1}, "seemed": {"_count": 1}}, "connected": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 1, "stopped": {"_count": 1}}, "managing": {"_count": 1, "to": {"_count": 1}}, "wormed": {"_count": 1, "his": {"_count": 1}}, "didnt": {"_count": 1, "want": {"_count": 1}}, "diminished": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "sharpened": {"_count": 1, "each": {"_count": 1}}, "maybe": {"_count": 1, "simply": {"_count": 1}}, "much": {"_count": 4, "more": {"_count": 3}, "younger": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "looked": {"_count": 1, "quite": {"_count": 1}}, "or": {"_count": 1, "maybe": {"_count": 1}}, "thought": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 1, "correct": {"_count": 1}}, "Harry": {"_count": 2, "thought": {"_count": 1}, "could": {"_count": 1}}, "struck": {"_count": 1, "anew": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "fiercer": {"_count": 1, "gaunter": {"_count": 1}}, "he": {"_count": 3, "never": {"_count": 1}, "seemed": {"_count": 1}, "did": {"_count": 1}}, "become": {"_count": 1, "fused": {"_count": 1}}, "denser": {"_count": 2, "than": {"_count": 2}}, "soothed": {"_count": 1, "to": {"_count": 1}}, "transported": {"_count": 1, "me": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "discrediting": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "foreseen": {"_count": 1, "the": {"_count": 1}}, "hoodwinked": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 3, "idea": {"_count": 1}, "break": {"_count": 1}, "simple": {"_count": 1}}, "Belby": {"_count": 1, "was": {"_count": 1}}, "rougher": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "Slughorn": {"_count": 1}}, "being": {"_count": 1, "happy": {"_count": 1}}, "less": {"_count": 1, "human": {"_count": 1}}, "cause": {"_count": 1, "Ron": {"_count": 1}}, "get": {"_count": 1, "Dumbledore": {"_count": 1}}, "force": {"_count": 1, "him": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "have": {"_count": 1, "learned": {"_count": 1}}, "people": {"_count": 1, "never": {"_count": 1}}, "at": {"_count": 1, "odds": {"_count": 1}}, "know": {"_count": 1, "he": {"_count": 1}}, "closer": {"_count": 1, "than": {"_count": 1}}, "we": {"_count": 1, "never": {"_count": 1}}}, "broke": {"_count": 177, "and": {"_count": 6, "thats": {"_count": 1}, "made": {"_count": 1}, "hissed": {"_count": 1}, "swung": {"_count": 1}, "chunks": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 37, "a": {"_count": 18}, "song": {"_count": 3}, "applause": {"_count": 4}, "the": {"_count": 4}, "your": {"_count": 1}, "Snapes": {"_count": 1}, "petrified": {"_count": 1}, "hysterical": {"_count": 1}, "conversation": {"_count": 1}, "sobs": {"_count": 1}, "gentle": {"_count": 1}, "Gringotts": {"_count": 1}}, "out": {"_count": 15, "like": {"_count": 1}, "from": {"_count": 1}, "again": {"_count": 2}, "in": {"_count": 2}, "of": {"_count": 4}, "though": {"_count": 1}, "we": {"_count": 1}, "at": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}}, "their": {"_count": 1, "teeth": {"_count": 1}}, "his": {"_count": 6, "nose": {"_count": 1}, "teeth": {"_count": 1}, "neck": {"_count": 1}, "toy": {"_count": 1}, "mothers": {"_count": 1}, "wand": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "": {"_count": 1}, "Harrys": {"_count": 1}}, "my": {"_count": 2, "eye": {"_count": 1}, "Mistresss": {"_count": 1}}, "over": {"_count": 5, "them": {"_count": 1}, "him": {"_count": 3}, "Harry": {"_count": 1}}, "off": {"_count": 33, "shuddering": {"_count": 1}, "": {"_count": 7}, "and": {"_count": 1}, "looking": {"_count": 4}, "with": {"_count": 1}, "they": {"_count": 1}, "still": {"_count": 1}, "abruptly": {"_count": 1}, "shrugging": {"_count": 1}, "their": {"_count": 1}, "because": {"_count": 1}, "in": {"_count": 2}, "at": {"_count": 1}, "feeling": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "cleared": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 3}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "your": {"_count": 1, "arm": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "apart": {"_count": 11, "Dudley": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}, "all": {"_count": 1}, "their": {"_count": 1}, "when": {"_count": 1}}, "the": {"_count": 15, "law": {"_count": 1}, "bubbly": {"_count": 1}, "cage": {"_count": 1}, "silence": {"_count": 4}, "sleepy": {"_count": 1}, "International": {"_count": 1}, "cool": {"_count": 1}, "tension": {"_count": 1}, "otherwise": {"_count": 1}, "surface": {"_count": 1}, "curse": {"_count": 1}, "moonlight": {"_count": 1}}, "away": {"_count": 4, "from": {"_count": 3}, "and": {"_count": 1}}, "down": {"_count": 2, "completely": {"_count": 1}, "in": {"_count": 1}}, "free": {"_count": 3, "of": {"_count": 3}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "Snapes": {"_count": 1}}, "a": {"_count": 1, "mug": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "cleanly": {"_count": 1, "in": {"_count": 1}}, "Nevilles": {"_count": 1, "wand": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "open": {"_count": 1}}, "step": {"_count": 1, "In": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 1, "dustfigure": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "across": {"_count": 1, "her": {"_count": 1}}, "A": {"_count": 1, "burst": {"_count": 1}}, "mine": {"_count": 1, "theyll": {"_count": 1}}, "open": {"_count": 3, "with": {"_count": 2}, "": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "ranks": {"_count": 1, "shouting": {"_count": 1}}, "around": {"_count": 1, "Harry": {"_count": 1}}}, "nodded": {"_count": 174, "glumly": {"_count": 1, "": {"_count": 1}}, "vigorously": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "": {"_count": 55, ".": {"_count": 55}}, "mutely": {"_count": 1, "": {"_count": 1}}, "silently": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "but": {"_count": 9, "he": {"_count": 1}, "stopped": {"_count": 1}, "even": {"_count": 1}, "others": {"_count": 1}, "did": {"_count": 3}, "still": {"_count": 1}, "seemed": {"_count": 1}}, "and": {"_count": 18, "Dobbys": {"_count": 1}, "gestured": {"_count": 1}, "they": {"_count": 2}, "stood": {"_count": 1}, "left": {"_count": 2}, "tried": {"_count": 1}, "Angelina": {"_count": 1}, "the": {"_count": 1}, "moved": {"_count": 2}, "he": {"_count": 1}, "turned": {"_count": 1}, "got": {"_count": 1}, "beckoned": {"_count": 1}, "looked": {"_count": 1}, "sighed": {"_count": 1}}, "encouragingly": {"_count": 2, "followed": {"_count": 1}, "its": {"_count": 1}}, "blushing": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "Percys": {"_count": 1}, "agreement": {"_count": 1}}, "bravely": {"_count": 1, "and": {"_count": 1}}, "fervently": {"_count": 2, "but": {"_count": 1}, "at": {"_count": 1}}, "not": {"_count": 1, "taking": {"_count": 1}}, "at": {"_count": 6, "Dobby": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 2}}, "curtly": {"_count": 6, "behind": {"_count": 1}, "and": {"_count": 3}, "but": {"_count": 1}, "then": {"_count": 1}}, "to": {"_count": 4, "Harry": {"_count": 2}, "Dumbledore": {"_count": 1}, "them": {"_count": 1}}, "beaming": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 2, "Professor": {"_count": 1}, "an": {"_count": 1}}, "grimly": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 5, "and": {"_count": 1}, "": {"_count": 4}}, "so": {"_count": 1, "that": {"_count": 1}}, "pointedly": {"_count": 1, "at": {"_count": 1}}, "sneeringly": {"_count": 1, "to": {"_count": 1}}, "nervously": {"_count": 1, "but": {"_count": 1}}, "once": {"_count": 1, "to": {"_count": 1}}, "feeling": {"_count": 1, "as": {"_count": 1}}, "politely": {"_count": 1, "like": {"_count": 1}}, "hesitated": {"_count": 1, "for": {"_count": 1}}, "Dedalus": {"_count": 1, "Diggle": {"_count": 1}}, "still": {"_count": 3, "unable": {"_count": 1}, "gazing": {"_count": 1}, "more": {"_count": 1}}, "hardly": {"_count": 1, "aware": {"_count": 1}}, "the": {"_count": 1, "witch": {"_count": 1}}, "each": {"_count": 1, "reaching": {"_count": 1}}, "clustering": {"_count": 1, "around": {"_count": 1}}, "here": {"_count": 1, "was": {"_count": 1}}, "without": {"_count": 1, "any": {"_count": 1}}, "apparently": {"_count": 1, "still": {"_count": 1}}, "then": {"_count": 2, "tried": {"_count": 1}, "remembered": {"_count": 1}}, "almost": {"_count": 1, "imperceptibly": {"_count": 1}}, "his": {"_count": 6, "eyes": {"_count": 1}, "mouth": {"_count": 1}, "appreciation": {"_count": 1}, "ears": {"_count": 1}, "approval": {"_count": 1}, "satisfaction": {"_count": 1}}, "gloomily": {"_count": 1, "and": {"_count": 1}}, "briefly": {"_count": 1, "seized": {"_count": 1}}, "looking": {"_count": 3, "scared": {"_count": 1}, "sour": {"_count": 1}, "down": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "impatiently": {"_count": 1, "not": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "impressively": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}, "tear": {"_count": 1, "tracks": {"_count": 1}}, "mopping": {"_count": 2, "her": {"_count": 2}}, "slowly": {"_count": 2, "solemnly": {"_count": 1}, "": {"_count": 1}}, "gravely": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "importantly": {"_count": 1, "and": {"_count": 1}}, "encouragement": {"_count": 1, "": {"_count": 1}}, "covertly": {"_count": 1, "to": {"_count": 1}}}, "glumly": {"_count": 14, "": {"_count": 5, ".": {"_count": 5}}, "at": {"_count": 2, "the": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "staring": {"_count": 1, "up": {"_count": 1}}, "tipping": {"_count": 1, "lamb": {"_count": 1}}, "as": {"_count": 2, "Fred": {"_count": 1}, "they": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}}, "faltered": {"_count": 9, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "as": {"_count": 3, "sparks": {"_count": 1}, "Dumbledore": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "they": {"_count": 1, "did": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "became": {"_count": 1}}}, "done": {"_count": 527, "": {"_count": 89, ".": {"_count": 56}, "!": {"_count": 14}, "?": {"_count": 19}}, "anything": {"_count": 17, "except": {"_count": 1}, "wrong": {"_count": 2}, "to": {"_count": 5}, "about": {"_count": 3}, "than": {"_count": 1}, "have": {"_count": 1}, "": {"_count": 1}, "anything": {"_count": 1}, "said": {"_count": 1}, "important": {"_count": 1}}, "before": {"_count": 4, "he": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "if": {"_count": 5, "he": {"_count": 1}, "Olympe": {"_count": 1}, "theyd": {"_count": 1}, "Id": {"_count": 1}, "we": {"_count": 1}}, "my": {"_count": 2, "dear": {"_count": 1}, "utmost": {"_count": 1}}, "so": {"_count": 15, "because": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "much": {"_count": 1}, "far": {"_count": 4}, "either": {"_count": 1}, "more": {"_count": 1}, "many": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "it": {"_count": 71, "": {"_count": 30}, "properly": {"_count": 1}, "for": {"_count": 2}, "the": {"_count": 1}, "hed": {"_count": 1}, "then": {"_count": 1}, "a": {"_count": 1}, "myself": {"_count": 1}, "before": {"_count": 3}, "wrong": {"_count": 1}, "in": {"_count": 3}, "either": {"_count": 1}, "He": {"_count": 1}, "leaving": {"_count": 1}, "to": {"_count": 2}, "how": {"_count": 2}, "last": {"_count": 1}, "on": {"_count": 2}, "about": {"_count": 1}, "he": {"_count": 1}, "now": {"_count": 1}, "years": {"_count": 1}, "though": {"_count": 1}, "because": {"_count": 2}, "so": {"_count": 1}, "once": {"_count": 1}, "and": {"_count": 1}, "dont": {"_count": 1}, "when": {"_count": 1}, "sorry": {"_count": 1}, "Professor": {"_count": 1}, "okay": {"_count": 1}, "more": {"_count": 1}}, "peering": {"_count": 1, "about": {"_count": 1}}, "Ron": {"_count": 4, "excellent": {"_count": 1}, "muttered": {"_count": 1}, "": {"_count": 1}, "snapped": {"_count": 1}}, "said": {"_count": 9, "George": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 3}, "Rons": {"_count": 1}, "Hermione": {"_count": 2}, "Ron": {"_count": 1}}, "for": {"_count": 6, "": {"_count": 2}, "him": {"_count": 2}, "fun": {"_count": 1}, "fighting": {"_count": 1}}, "a": {"_count": 15, "large": {"_count": 1}, "couple": {"_count": 1}, "good": {"_count": 1}, "very": {"_count": 3}, "runner": {"_count": 1}, "deal": {"_count": 1}, "slowmotion": {"_count": 1}, "poor": {"_count": 1}, "kind": {"_count": 1}, "bit": {"_count": 1}, "lot": {"_count": 1}, "Memory": {"_count": 1}, "bunk": {"_count": 1}}, "her": {"_count": 1, "job": {"_count": 1}}, "to": {"_count": 18, "get": {"_count": 1}, "him": {"_count": 3}, "a": {"_count": 1}, "it": {"_count": 1}, "my": {"_count": 3}, "deserve": {"_count": 1}, "you": {"_count": 2}, "offend": {"_count": 2}, "your": {"_count": 2}, "her": {"_count": 1}, "other": {"_count": 1}}, "that": {"_count": 17, "Neville": {"_count": 1}, "one": {"_count": 1}, "said": {"_count": 1}, "Weatherby": {"_count": 1}, "I": {"_count": 1}, "kindly": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 3}, "was": {"_count": 1}, "would": {"_count": 1}, "Sirius": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "night": {"_count": 1}, "Harry": {"_count": 1}}, "something": {"_count": 10, "to": {"_count": 3}, "wrong": {"_count": 1}, "before": {"_count": 1}, "with": {"_count": 1}, "terrible": {"_count": 1}, "serious": {"_count": 1}, "important": {"_count": 1}, "strange": {"_count": 1}}, "some": {"_count": 1, "antiDark": {"_count": 1}}, "the": {"_count": 19, "guarding": {"_count": 1}, "last": {"_count": 1}, "dungeons": {"_count": 1}, "trick": {"_count": 2}, "same": {"_count": 4}, "right": {"_count": 3}, "tasks": {"_count": 1}, "latter": {"_count": 1}, "time": {"_count": 1}, "Slytherins": {"_count": 1}, "damage": {"_count": 1}, "first": {"_count": 1}, "little": {"_count": 1}}, "ages": {"_count": 1, "ago": {"_count": 1}}, "enough": {"_count": 3, "poking": {"_count": 1}, "damage": {"_count": 1}, "today": {"_count": 1}}, "yer": {"_count": 1, "bit": {"_count": 1}}, "wrong": {"_count": 1, "an": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "Slytherin": {"_count": 1, "said": {"_count": 1}}, "magic": {"_count": 4, "but": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 1}, "outside": {"_count": 1}}, "in": {"_count": 12, "three": {"_count": 1}, "more": {"_count": 1}, "his": {"_count": 2}, "hes": {"_count": 1}, "the": {"_count": 4}, "any": {"_count": 1}, "years": {"_count": 1}, "Godrics": {"_count": 1}}, "better": {"_count": 1, "to": {"_count": 1}}, "carefully": {"_count": 1, "so": {"_count": 1}}, "car": {"_count": 1, "The": {"_count": 1}}, "with": {"_count": 12, "the": {"_count": 2}, "them": {"_count": 2}, "a": {"_count": 3}, "it": {"_count": 2}, "Umbridge": {"_count": 1}, "regard": {"_count": 1}, "any": {"_count": 1}}, "one": {"_count": 3, "good": {"_count": 1}, "task": {"_count": 1}, "thing": {"_count": 1}}, "nothing": {"_count": 3, "more": {"_count": 1}, "whatsoever": {"_count": 1}, "nothing": {"_count": 1}}, "He": {"_count": 1, "says": {"_count": 1}}, "and": {"_count": 9, "it": {"_count": 1}, "masters": {"_count": 1}, "retraced": {"_count": 1}, "its": {"_count": 1}, "not": {"_count": 1}, "became": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}}, "this": {"_count": 6, "said": {"_count": 1}, "year": {"_count": 1}, "time": {"_count": 2}, "before": {"_count": 2}}, "four": {"_count": 1, "feet": {"_count": 1}}, "on": {"_count": 10, "countless": {"_count": 1}, "the": {"_count": 6}, "Dumbledores": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 7, "Hermione": {"_count": 1}, "hooted": {"_count": 1}, "when": {"_count": 1}, "Ron": {"_count": 1}, "even": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}}, "Youre": {"_count": 1, "killing": {"_count": 1}}, "well": {"_count": 5, "in": {"_count": 2}, "to": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 1}}, "they": {"_count": 1, "sprinted": {"_count": 1}}, "everything": {"_count": 3, "right": {"_count": 1}, "we": {"_count": 1}, "in": {"_count": 1}}, "everyone": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "all": {"_count": 6, "those": {"_count": 1}, "of": {"_count": 1}, "term": {"_count": 1}, "right": {"_count": 2}, "that": {"_count": 1}}, "Ginny": {"_count": 1, "said": {"_count": 1}}, "serious": {"_count": 1, "magic": {"_count": 1}}, "without": {"_count": 3, "everyone": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "Harry": {"_count": 5, "": {"_count": 3}, "said": {"_count": 2}}, "flobberworms": {"_count": 1, "or": {"_count": 1}}, "any": {"_count": 4, "such": {"_count": 1}, "of": {"_count": 1}, "practicing": {"_count": 1}, "damage": {"_count": 1}}, "boggarts": {"_count": 1, "Red": {"_count": 1}}, "moren": {"_count": 1, "enough": {"_count": 1}}, "went": {"_count": 1, "after": {"_count": 1}}, "murder": {"_count": 1, "and": {"_count": 1}}, "properly": {"_count": 1, "it": {"_count": 1}}, "things": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 2, "very": {"_count": 1}, "best": {"_count": 1}}, "dangerous": {"_count": 1, "stuff": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "homework": {"_count": 1}}, "or": {"_count": 2, "where": {"_count": 1}, "that": {"_count": 1}}, "an": {"_count": 3, "even": {"_count": 1}, "I": {"_count": 1}, "honest": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 4}, "Hogwarts": {"_count": 2}}, "human": {"_count": 1, "Transfiguration": {"_count": 1}}, "except": {"_count": 1, "": {"_count": 1}}, "ter": {"_count": 1, "your": {"_count": 1}}, "as": {"_count": 5, "though": {"_count": 1}, "Sirius": {"_count": 1}, "much": {"_count": 1}, "Voldemort": {"_count": 1}, "the": {"_count": 1}}, "dropped": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 3, "his": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "he": {"_count": 5, "said": {"_count": 2}, "croaked": {"_count": 1}, "used": {"_count": 1}, "was": {"_count": 1}}, "shook": {"_count": 1, "Harrys": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "more": {"_count": 4, "Harry": {"_count": 1}, "than": {"_count": 2}, "": {"_count": 1}}, "mate": {"_count": 1, "": {"_count": 1}}, "persisted": {"_count": 1, "Kingsley": {"_count": 1}}, "I": {"_count": 1, "wasnt": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "How": {"_count": 1, "dyou": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}, "then": {"_count": 1, "not": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 2}, "night": {"_count": 1}}, "after": {"_count": 1, "seeing": {"_count": 1}}, "quiet": {"_count": 1, "it": {"_count": 1}}, "two": {"_count": 1, "minutes": {"_count": 1}}, "nothin": {"_count": 1, "except": {"_count": 1}}, "reasonably": {"_count": 1, "well": {"_count": 1}}, "done": {"_count": 1, "as": {"_count": 1}}, "Occlumency": {"_count": 1, "properly": {"_count": 1}}, "of": {"_count": 3, "course": {"_count": 2}, "late": {"_count": 1}}, "Ha": {"_count": 1, "But": {"_count": 1}}, "shall": {"_count": 1, "I": {"_count": 1}}, "is": {"_count": 2, "done": {"_count": 1}, "to": {"_count": 1}}, "been": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Master": {"_count": 1, "of": {"_count": 1}}, "its": {"_count": 1, "probably": {"_count": 1}}, "she": {"_count": 1, "called": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "suspended": {"_count": 1, "comically": {"_count": 1}}, "yourself": {"_count": 1, "you": {"_count": 1}}, "could": {"_count": 1, "I": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "much": {"_count": 2, "since": {"_count": 2}}, "brilliantly": {"_count": 1, "Dobby": {"_count": 1}}, "great": {"_count": 1, "damage": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "barely": {"_count": 1, "aware": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "Draco": {"_count": 1, "well": {"_count": 1}}, "yes": {"_count": 1, "they": {"_count": 1}}, "what": {"_count": 2, "hed": {"_count": 1}, "my": {"_count": 1}}, "while": {"_count": 2, "he": {"_count": 1}, "Ive": {"_count": 1}}, "Im": {"_count": 1, "just": {"_count": 1}}, "Scrimgeour": {"_count": 1, "looked": {"_count": 1}}, "lemme": {"_count": 1, "go": {"_count": 1}}, "really": {"_count": 1, "well": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "gathered": {"_count": 1, "all": {"_count": 1}}, "compared": {"_count": 1, "with": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "wandmaker": {"_count": 1}}, "about": {"_count": 1, "Professor": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}}, "killed": {"_count": 181, "": {"_count": 26, ".": {"_count": 17}, "?": {"_count": 6}, "!": {"_count": 3}}, "em": {"_count": 2, "": {"_count": 2}}, "some": {"_count": 1, "o": {"_count": 1}}, "or": {"_count": 1, "worse": {"_count": 1}}, "anyone": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 9, "parents": {"_count": 3}, "mother": {"_count": 1}, "father": {"_count": 2}, "parentsV": {"_count": 1}, "mum": {"_count": 1}, "sister": {"_count": 1}}, "your": {"_count": 2, "father": {"_count": 2}}, "you": {"_count": 9, "": {"_count": 4}, "wouldnt": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}, "Albus": {"_count": 1}, "I": {"_count": 1}}, "his": {"_count": 4, "parents": {"_count": 1}, "father": {"_count": 3}}, "her": {"_count": 5, "": {"_count": 2}, "probably": {"_count": 1}, "personally": {"_count": 1}, "whole": {"_count": 1}}, "this": {"_count": 2, "term": {"_count": 1}, "time": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "their": {"_count": 1, "daughter": {"_count": 1}}, "someone": {"_count": 1, "Ron": {"_count": 1}}, "was": {"_count": 2, "discovered": {"_count": 1}, "your": {"_count": 1}}, "and": {"_count": 4, "wanted": {"_count": 1}, "seemed": {"_count": 1}, "Im": {"_count": 1}, "the": {"_count": 1}}, "Harrys": {"_count": 2, "parents": {"_count": 1}, "father": {"_count": 1}}, "in": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 2}, "front": {"_count": 1}}, "me": {"_count": 6, "": {"_count": 2}, "about": {"_count": 1}, "Sirius": {"_count": 1}, "Severus": {"_count": 1}, "with": {"_count": 1}}, "by": {"_count": 9, "a": {"_count": 2}, "Aurors": {"_count": 3}, "an": {"_count": 1}, "Voldemort": {"_count": 1}, "You": {"_count": 1}, "his": {"_count": 1}}, "all": {"_count": 1, "them": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "him": {"_count": 18, "twelve": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 2}, "she": {"_count": 1}, "at": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}, "if": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}, "apparently": {"_count": 1}, "without": {"_count": 1}}, "Peter": {"_count": 1, "said": {"_count": 1}}, "everyone": {"_count": 1, "within": {"_count": 1}}, "them": {"_count": 4, "he": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "itd": {"_count": 1}}, "Lily": {"_count": 2, "and": {"_count": 1}, "Evans": {"_count": 1}}, "the": {"_count": 7, "Riddles": {"_count": 2}, "basilisk": {"_count": 1}, "Muggles": {"_count": 1}, "real": {"_count": 1}, "cat": {"_count": 1}, "boy": {"_count": 1}}, "Bertha": {"_count": 1, "because": {"_count": 1}}, "a": {"_count": 2, "woman": {"_count": 1}, "few": {"_count": 1}}, "though": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "about": {"_count": 1, "ninety": {"_count": 1}}, "said": {"_count": 2, "Mr": {"_count": 1}, "Malfoy": {"_count": 1}}, "it": {"_count": 1, "just": {"_count": 1}}, "if": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "innocent": {"_count": 1, "people": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "Cedric": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "Masters": {"_count": 1, "son": {"_count": 1}}, "those": {"_count": 1, "people": {"_count": 1}}, "Is": {"_count": 1, "that": {"_count": 1}}, "two": {"_count": 1, "weeks": {"_count": 1}}, "whos": {"_count": 1, "gggoing": {"_count": 1}}, "during": {"_count": 1, "a": {"_count": 1}}, "thirteen": {"_count": 1, "people": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "we": {"_count": 1, "crept": {"_count": 1}}, "trying": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 1, "people": {"_count": 1}}, "well": {"_count": 1, "unless": {"_count": 1}}, "Sirius": {"_count": 2, "": {"_count": 2}}, "not": {"_count": 1, "for": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "but": {"_count": 1, "everything": {"_count": 1}}, "Dumbledore": {"_count": 4, "said": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}}, "Stan": {"_count": 1, "Shunpike": {"_count": 1}}, "one": {"_count": 1, "Kingsley": {"_count": 1}}, "MadEye": {"_count": 1, "Moody": {"_count": 1}}, "many": {"_count": 1, "people": {"_count": 1}}, "Kendra": {"_count": 1, "in": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "himself": {"_count": 1, "so": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "accidentally": {"_count": 1, "by": {"_count": 1}}, "its": {"_count": 1, "last": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "while": {"_count": 2, "trying": {"_count": 2}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "Arent": {"_count": 1, "you": {"_count": 1}}}, "astounding": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "stop": {"_count": 334, "him": {"_count": 51, "": {"_count": 8}, "he": {"_count": 4}, "growled": {"_count": 1}, "from": {"_count": 15}, "Dobby": {"_count": 1}, "screamed": {"_count": 1}, "heading": {"_count": 1}, "Ron": {"_count": 1}, "escaping": {"_count": 1}, "Mother": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 2}, "regaining": {"_count": 1}, "before": {"_count": 1}, "being": {"_count": 1}, "getting": {"_count": 1}, "singeing": {"_count": 1}, "had": {"_count": 1}, "doing": {"_count": 1}, "simply": {"_count": 1}, "stealing": {"_count": 1}, "but": {"_count": 1}, "shouting": {"_count": 1}, "running": {"_count": 1}, "would": {"_count": 1}, "falling": {"_count": 1}}, "there": {"_count": 3, "": {"_count": 2}, "because": {"_count": 1}}, "to": {"_count": 9, "eat": {"_count": 1}, "that": {"_count": 1}, "this": {"_count": 1}, "say": {"_count": 1}, "chat": {"_count": 1}, "think": {"_count": 1}, "it": {"_count": 3}}, "fer": {"_count": 2, "us": {"_count": 1}, "a": {"_count": 1}}, "himself": {"_count": 27, "": {"_count": 10}, "from": {"_count": 6}, "imitating": {"_count": 1}, "he": {"_count": 2}, "youre": {"_count": 1}, "thats": {"_count": 1}, "where": {"_count": 1}, "making": {"_count": 1}, "showing": {"_count": 1}, "but": {"_count": 1}, "dwelling": {"_count": 1}, "reacting": {"_count": 1}}, "his": {"_count": 3, "knees": {"_count": 1}, "eyes": {"_count": 1}, "relentless": {"_count": 1}}, "talking": {"_count": 3, "to": {"_count": 1}, "behind": {"_count": 1}, "about": {"_count": 1}}, "stammering": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 9, "dont": {"_count": 1}, "then": {"_count": 1}, "look": {"_count": 1}, "watch": {"_count": 1}, "think": {"_count": 2}, "Ill": {"_count": 1}, "soon": {"_count": 1}, "say": {"_count": 1}}, "the": {"_count": 15, "cart": {"_count": 1}, "other": {"_count": 1}, "plant": {"_count": 1}, "boy": {"_count": 1}, "Bludger": {"_count": 1}, "dog": {"_count": 1}, "owls": {"_count": 1}, "rain": {"_count": 2}, "Gryffindor": {"_count": 1}, "trembling": {"_count": 1}, "Dark": {"_count": 1}, "Death": {"_count": 1}, "three": {"_count": 1}, "little": {"_count": 1}}, "you": {"_count": 14, "and": {"_count": 1}, "coming": {"_count": 1}, "it": {"_count": 1}, "eating": {"_count": 1}, "Harry": {"_count": 1}, "having": {"_count": 2}, "Ill": {"_count": 1}, "": {"_count": 3}, "getting": {"_count": 1}, "from": {"_count": 1}, "dying": {"_count": 1}}, "running": {"_count": 1, "until": {"_count": 1}}, "now": {"_count": 3, "said": {"_count": 1}, "well": {"_count": 1}, "before": {"_count": 1}}, "it": {"_count": 13, "from": {"_count": 2}, "": {"_count": 5}, "Ron": {"_count": 1}, "come": {"_count": 1}, "raining": {"_count": 1}, "so": {"_count": 1}, "really": {"_count": 1}, "at": {"_count": 1}}, "a": {"_count": 2, "high": {"_count": 1}, "station": {"_count": 1}}, "messing": {"_count": 1, "around": {"_count": 1}}, "Muggles": {"_count": 1, "from": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "saying": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "me": {"_count": 8, "": {"_count": 2}, "from": {"_count": 1}, "stalking": {"_count": 1}, "eventually": {"_count": 1}, "taking": {"_count": 1}, "then": {"_count": 1}, "I": {"_count": 1}}, "playing": {"_count": 1, "said": {"_count": 1}}, "Snape": {"_count": 2, "or": {"_count": 1}, "failing": {"_count": 1}}, "Gryffindor": {"_count": 1, "from": {"_count": 1}}, "her": {"_count": 6, "from": {"_count": 2}, "she": {"_count": 1}, "when": {"_count": 1}, "goggling": {"_count": 1}, "then": {"_count": 1}}, "Harry": {"_count": 4, "from": {"_count": 1}, "writing": {"_count": 1}, "and": {"_count": 1}, "demolishing": {"_count": 1}}, "them": {"_count": 11, "from": {"_count": 2}, "making": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}, "going": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "boiling": {"_count": 1}, "someone": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 12}, "!": {"_count": 3}}, "questioning": {"_count": 1, "Harry": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 2}, "leaping": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "bleeding": {"_count": 1, "in": {"_count": 1}}, "soon": {"_count": 1, "": {"_count": 1}}, "reading": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 1, "attacks": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 2}, "midday": {"_count": 1}, "nothing": {"_count": 1}}, "any": {"_count": 1, "creaking": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "trusting": {"_count": 1, "her": {"_count": 1}}, "laughing": {"_count": 1, "with": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "worrying": {"_count": 2, "Crookshanks": {"_count": 1}, "": {"_count": 1}}, "then": {"_count": 1, "move": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "clapping": {"_count": 1, "and": {"_count": 1}}, "people": {"_count": 3, "entering": {"_count": 1}, "joining": {"_count": 1}, "from": {"_count": 1}}, "Crookshanks": {"_count": 1, "from": {"_count": 1}}, "badgering": {"_count": 1, "me": {"_count": 1}}, "us": {"_count": 5, "tomorrow": {"_count": 1}, "giving": {"_count": 1}, "Harry": {"_count": 1}, "knowing": {"_count": 1}, "": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "Voldemort": {"_count": 4, "killing": {"_count": 1}, "only": {"_count": 1}, "said": {"_count": 1}, "going": {"_count": 1}}, "anyone": {"_count": 1, "coming": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "Ron": {"_count": 1, "from": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "celebrating": {"_count": 1, "": {"_count": 1}}, "herself": {"_count": 3, "from": {"_count": 1}, "giggling": {"_count": 1}, "": {"_count": 1}}, "those": {"_count": 1, "who": {"_count": 1}}, "students": {"_count": 1, "resorting": {"_count": 1}}, "shielding": {"_count": 1, "her": {"_count": 1}}, "Hermione": {"_count": 2, "from": {"_count": 1}, "pestering": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "whistling": {"_count": 1, "": {"_count": 1}}, "work": {"_count": 1, "Im": {"_count": 1}}, "crying": {"_count": 1, "but": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "themselves": {"_count": 1, "": {"_count": 1}}, "eating": {"_count": 1, "in": {"_count": 1}}, "telling": {"_count": 3, "people": {"_count": 1}, "Harry": {"_count": 1}, "me": {"_count": 1}}, "Crouch": {"_count": 1, "from": {"_count": 1}}, "dead": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "heart": {"_count": 1, "hammering": {"_count": 1}}, "just": {"_count": 1, "short": {"_count": 1}}, "hurting": {"_count": 1, "if": {"_count": 1}}, "dont": {"_count": 1, "break": {"_count": 1}}, "using": {"_count": 1, "them": {"_count": 1}}, "Mum": {"_count": 1, "binning": {"_count": 1}}, "your": {"_count": 1, "mummy": {"_count": 1}}, "this": {"_count": 2, "kind": {"_count": 1}, "": {"_count": 1}}, "arguing": {"_count": 1, "all": {"_count": 1}}, "biting": {"_count": 1, "my": {"_count": 1}}, "doing": {"_count": 2, "it": {"_count": 1}, "this": {"_count": 1}}, "STOP": {"_count": 1, "": {"_count": 1}}, "Olympe": {"_count": 1, "jumpin": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "prickling": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "all": {"_count": 1}}, "after": {"_count": 1, "this": {"_count": 1}}, "whimpering": {"_count": 1, "Ron": {"_count": 1}}, "acting": {"_count": 1, "like": {"_count": 1}}, "until": {"_count": 1, "youre": {"_count": 1}}, "giving": {"_count": 2, "you": {"_count": 1}, "him": {"_count": 1}}, "for": {"_count": 1, "minutes": {"_count": 1}}, "singing": {"_count": 1, "that": {"_count": 1}}, "troll": {"_count": 1, "hunting": {"_count": 1}}, "stop": {"_count": 2, "But": {"_count": 1}, "": {"_count": 1}}, "But": {"_count": 1, "the": {"_count": 1}}, "pretending": {"_count": 2, "that": {"_count": 1}, "to": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "sayin": {"_count": 1, "tha": {"_count": 1}}, "working": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "puzzling": {"_count": 1, "over": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "that": {"_count": 1, "Ron": {"_count": 1}}, "harping": {"_count": 1, "on": {"_count": 1}}, "Professor": {"_count": 2, "said": {"_count": 1}, "Harry": {"_count": 1}}, "make": {"_count": 2, "it": {"_count": 2}}, "moaned": {"_count": 1, "Dumbledore": {"_count": 1}}, "lied": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 2, "know": {"_count": 1}, "want": {"_count": 1}}, "he": {"_count": 1, "walked": {"_count": 1}}, "Bill": {"_count": 1, "loving": {"_count": 1}}, "following": {"_count": 1, "his": {"_count": 1}}, "seeing": {"_count": 2, "each": {"_count": 1}, "stuff": {"_count": 1}}, "wizards": {"_count": 1, "passing": {"_count": 1}}, "but": {"_count": 1, "Mundungus": {"_count": 1}}, "yelling": {"_count": 1, "we": {"_count": 1}}, "looking": {"_count": 1, "": {"_count": 1}}}, "heaven": {"_count": 1, "did": {"_count": 1, "Harry": {"_count": 1}}}, "survive": {"_count": 22, "": {"_count": 9, "?": {"_count": 4}, "!": {"_count": 1}, ".": {"_count": 4}}, "but": {"_count": 1, "it": {"_count": 1}}, "without": {"_count": 2, "you": {"_count": 1}, "oxygen": {"_count": 1}}, "the": {"_count": 1, "summer": {"_count": 1}}, "underwater": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "hunt": {"_count": 1}}, "untouched": {"_count": 1, "said": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}}, "guess": {"_count": 34, "said": {"_count": 2, "Dumbledore": {"_count": 2}}, "what": {"_count": 10, "": {"_count": 5}, "he": {"_count": 1}, "exactly": {"_count": 1}, "were": {"_count": 1}, "creatures": {"_count": 1}, "hes": {"_count": 1}}, "because": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "hes": {"_count": 1, "been": {"_count": 1}}, "they": {"_count": 1, "belonged": {"_count": 1}}, "is": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 1, "closer": {"_count": 1}}, "who": {"_count": 3, "he": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "having": {"_count": 1}}, "I": {"_count": 1, "let": {"_count": 1}}, "whos": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "subject": {"_count": 1}}, "youve": {"_count": 1, "been": {"_count": 1}}, "he": {"_count": 1, "is": {"_count": 1}}, "at": {"_count": 2, "what": {"_count": 1}, "male": {"_count": 1}}, "how": {"_count": 1, "Harry": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}}, "may": {"_count": 144, "never": {"_count": 2, "know": {"_count": 1}, "return": {"_count": 1}}, "as": {"_count": 2, "well": {"_count": 2}}, "also": {"_count": 1, "bring": {"_count": 1}}, "not": {"_count": 11, "think": {"_count": 1}, "have": {"_count": 4}, "even": {"_count": 1}, "look": {"_count": 1}, "be": {"_count": 3}, "take": {"_count": 1}}, "change": {"_count": 1, "my": {"_count": 1}}, "go": {"_count": 9, "": {"_count": 6}, "Dumbledore": {"_count": 1}, "Tom": {"_count": 1}, "back": {"_count": 1}}, "fighting": {"_count": 1, "is": {"_count": 1}}, "ask": {"_count": 1, "me": {"_count": 1}}, "only": {"_count": 2, "have": {"_count": 1}, "appear": {"_count": 1}}, "lead": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 8, "be": {"_count": 1}, "thank": {"_count": 1}, "ask": {"_count": 2}, "offer": {"_count": 1}, "help": {"_count": 2}, "not": {"_count": 1}}, "indeed": {"_count": 1, "be": {"_count": 1}}, "well": {"_count": 9, "come": {"_count": 1}, "be": {"_count": 4}, "choose": {"_count": 1}, "have": {"_count": 2}, "ask": {"_count": 1}}, "find": {"_count": 1, "yourselves": {"_count": 1}}, "however": {"_count": 1, "Harry": {"_count": 1}}, "have": {"_count": 22, "simply": {"_count": 1}, "misunderstood": {"_count": 1}, "heard": {"_count": 1}, "believed": {"_count": 1}, "been": {"_count": 4}, "allowed": {"_count": 1}, "Seen": {"_count": 1}, "appeared": {"_count": 1}, "taken": {"_count": 1}, "murdered": {"_count": 1}, "contributed": {"_count": 1}, "felt": {"_count": 1}, "done": {"_count": 1}, "found": {"_count": 1}, "decided": {"_count": 1}, "seen": {"_count": 1}, "said": {"_count": 1}, "defeated": {"_count": 1}, "escaped": {"_count": 1}}, "leave": {"_count": 3, "": {"_count": 2}, "for": {"_count": 1}}, "visit": {"_count": 1, "Miss": {"_count": 1}}, "reach": {"_count": 1, "gigantic": {"_count": 1}}, "come": {"_count": 2, "when": {"_count": 1}, "to": {"_count": 1}}, "rest": {"_count": 1, "assured": {"_count": 1}}, "be": {"_count": 26, "deciphered": {"_count": 1}, "wrong": {"_count": 1}, "used": {"_count": 1}, "that": {"_count": 1}, "very": {"_count": 1}, "moving": {"_count": 1}, "sought": {"_count": 1}, "being": {"_count": 1}, "happening": {"_count": 1}, "planning": {"_count": 2}, "Harry": {"_count": 1}, "glimpsed": {"_count": 1}, "able": {"_count": 2}, "as": {"_count": 1}, "ready": {"_count": 1}, "close": {"_count": 1}, "damaged": {"_count": 1}, "a": {"_count": 1}, "entirely": {"_count": 1}, "forced": {"_count": 1}, "seen": {"_count": 1}, "yours": {"_count": 1}, "simply": {"_count": 1}, "finished": {"_count": 1}}, "seem": {"_count": 1, "the": {"_count": 1}}, "invite": {"_count": 1, "a": {"_count": 1}}, "lose": {"_count": 1, "the": {"_count": 1}}, "pass": {"_count": 1, "judgment": {"_count": 1}}, "they": {"_count": 1, "rot": {"_count": 1}}, "do": {"_count": 2, "so": {"_count": 1}, "whatever": {"_count": 1}}, "still": {"_count": 1, "be": {"_count": 1}}, "retain": {"_count": 1, "your": {"_count": 1}}, "he": {"_count": 1, "found": {"_count": 1}}, "very": {"_count": 1, "probably": {"_count": 1}}, "influence": {"_count": 1, "your": {"_count": 1}}, "soon": {"_count": 1, "be": {"_count": 1}}, "exist": {"_count": 1, "without": {"_count": 1}}, "already": {"_count": 1, "know": {"_count": 1}}, "feel": {"_count": 1, "secure": {"_count": 1}}, "use": {"_count": 1, "your": {"_count": 1}}, "take": {"_count": 1, "ten": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "stay": {"_count": 3, "Firenze": {"_count": 1}, "Draco": {"_count": 1}, "said": {"_count": 1}}, "begin": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "spare": {"_count": 1, "your": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "perhaps": {"_count": 1, "have": {"_count": 1}}, "now": {"_count": 1, "be": {"_count": 1}}, "know": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "even": {"_count": 1, "be": {"_count": 1}}, "present": {"_count": 1, "itself": {"_count": 1}}, "wear": {"_count": 1, "that": {"_count": 1}}, "commune": {"_count": 1, "with": {"_count": 1}}, "call": {"_count": 1, "me": {"_count": 1}}, "ensure": {"_count": 1, "that": {"_count": 1}}}, "lace": {"_count": 11, "handkerchief": {"_count": 1, "and": {"_count": 1}}, "frill": {"_count": 1, "at": {"_count": 1}}, "cuffs": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "them": {"_count": 1}, "his": {"_count": 1}}, "cuff": {"_count": 2, "very": {"_count": 1}, "in": {"_count": 1}}, "beside": {"_count": 1, "which": {"_count": 1}}, "covered": {"_count": 1, "table": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "box": {"_count": 1, "full": {"_count": 1}}}, "handkerchief": {"_count": 39, "and": {"_count": 8, "dabbed": {"_count": 1}, "burying": {"_count": 1}, "blew": {"_count": 2}, "peering": {"_count": 1}, "looked": {"_count": 1}, "sniffed": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "to": {"_count": 3, "her": {"_count": 2}, "Hermione": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}, "of": {"_count": 1, "Hermione": {"_count": 1}}, "from": {"_count": 4, "her": {"_count": 1}, "within": {"_count": 1}, "the": {"_count": 2}}, "but": {"_count": 1, "I": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "mopping": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "throughout": {"_count": 1, "this": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "She": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "dabbed": {"_count": 5, "at": {"_count": 3, "her": {"_count": 3}}, "essence": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}}, "beneath": {"_count": 217, "her": {"_count": 7, "spectacles": {"_count": 1}, "fingers": {"_count": 1}, "broom": {"_count": 1}, "green": {"_count": 1}, "cloak": {"_count": 1}, "eyelids": {"_count": 1}, "blankets": {"_count": 1}}, "all": {"_count": 1, "Dudleys": {"_count": 1}}, "them": {"_count": 10, "": {"_count": 5}, "a": {"_count": 1}, "horrible": {"_count": 1}, "buried": {"_count": 1}, "if": {"_count": 1}, "its": {"_count": 1}}, "our": {"_count": 3, "floors": {"_count": 2}, "anguish": {"_count": 1}}, "him": {"_count": 14, "obviously": {"_count": 1}, "hear": {"_count": 1}, "": {"_count": 6}, "were": {"_count": 2}, "clamped": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 2}}, "the": {"_count": 80, "tallest": {"_count": 1}, "clouds": {"_count": 3}, "canopy": {"_count": 1}, "enchanted": {"_count": 1}, "clicking": {"_count": 1}, "cloak": {"_count": 7}, "hood": {"_count": 3}, "Invisibility": {"_count": 9}, "first": {"_count": 1}, "window": {"_count": 1}, "Willows": {"_count": 1}, "highly": {"_count": 1}, "Roberts": {"_count": 2}, "skull": {"_count": 1}, "quantity": {"_count": 1}, "surface": {"_count": 4}, "four": {"_count": 1}, "foamy": {"_count": 1}, "water": {"_count": 2}, "Dark": {"_count": 1}, "glass": {"_count": 1}, "banner": {"_count": 1}, "robes": {"_count": 1}, "Foe": {"_count": 1}, "headline": {"_count": 1}, "counter": {"_count": 1}, "elbows": {"_count": 1}, "thick": {"_count": 1}, "dusty": {"_count": 1}, "golden": {"_count": 1}, "alterations": {"_count": 1}, "rolledup": {"_count": 1}, "shining": {"_count": 1}, "table": {"_count": 3}, "Cloak": {"_count": 5}, "raised": {"_count": 1}, "brilliant": {"_count": 1}, "nearly": {"_count": 1}, "curtained": {"_count": 1}, "tablecloth": {"_count": 1}, "chandelier": {"_count": 1}, "cottage": {"_count": 1}, "look": {"_count": 1}, "rising": {"_count": 1}, "reddening": {"_count": 1}, "portrait": {"_count": 1}, "blueandgold": {"_count": 1}, "dark": {"_count": 1}, "beech": {"_count": 1}, "high": {"_count": 1}, "distant": {"_count": 1}}, "it": {"_count": 15, "": {"_count": 9}, "all": {"_count": 1}, "with": {"_count": 1}, "just": {"_count": 1}, "his": {"_count": 1}, "read": {"_count": 1}, "dropping": {"_count": 1}}, "a": {"_count": 19, "toad": {"_count": 1}, "black": {"_count": 1}, "sea": {"_count": 1}, "clear": {"_count": 1}, "spangled": {"_count": 1}, "wizard": {"_count": 1}, "pockmarked": {"_count": 1}, "nice": {"_count": 1}, "summer": {"_count": 1}, "handsome": {"_count": 1}, "canopy": {"_count": 1}, "headline": {"_count": 1}, "rock": {"_count": 1}, "heap": {"_count": 1}, "blanket": {"_count": 1}, "window": {"_count": 1}, "cliff": {"_count": 1}, "glass": {"_count": 1}, "mountain": {"_count": 1}}, "this": {"_count": 1, "a": {"_count": 1}}, "its": {"_count": 5, "hood": {"_count": 1}, "wrinkled": {"_count": 1}, "lid": {"_count": 1}, "robes": {"_count": 1}, "thin": {"_count": 1}}, "his": {"_count": 32, "long": {"_count": 1}, "eyes": {"_count": 2}, "feet": {"_count": 4}, "fingers": {"_count": 4}, "pajama": {"_count": 1}, "gaze": {"_count": 1}, "head": {"_count": 1}, "jaws": {"_count": 1}, "usual": {"_count": 1}, "prefects": {"_count": 1}, "marble": {"_count": 1}, "shock": {"_count": 1}, "cloak": {"_count": 3}, "knees": {"_count": 1}, "notice": {"_count": 1}, "traveling": {"_count": 1}, "robes": {"_count": 4}, "emeraldgreen": {"_count": 1}, "cheek": {"_count": 1}, "shirt": {"_count": 1}}, "beds": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 3, "old": {"_count": 1}, "ugly": {"_count": 1}, "immense": {"_count": 1}}, "Diggory": {"_count": 1, "who": {"_count": 1}}, "Madam": {"_count": 1, "Pomfreys": {"_count": 1}}, "caught": {"_count": 1, "it": {"_count": 1}}, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "wind": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "its": {"_count": 1}}, "ominously": {"_count": 1, "gray": {"_count": 1}}, "what": {"_count": 2, "seemed": {"_count": 1}, "looked": {"_count": 1}}, "you": {"_count": 1, "you": {"_count": 1}}, "their": {"_count": 8, "hoods": {"_count": 2}, "robes": {"_count": 1}, "feet": {"_count": 4}, "cloaks": {"_count": 1}}, "each": {"_count": 1, "glass": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "snow": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "wide": {"_count": 1}}, "whiteblond": {"_count": 1, "hair": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cloaks": {"_count": 1, "and": {"_count": 1}}, "Bellatrixs": {"_count": 1, "outstretched": {"_count": 1}}}, "great": {"_count": 604, "sniff": {"_count": 3, "as": {"_count": 2}, "and": {"_count": 1}}, "shaggy": {"_count": 5, "head": {"_count": 4}, "beaverskin": {"_count": 1}}, "relief": {"_count": 4, "Harry": {"_count": 1}, "he": {"_count": 2}, "Hagrid": {"_count": 1}}, "snake": {"_count": 9, "was": {"_count": 1}, "which": {"_count": 1}, "disliking": {"_count": 1}, "swayed": {"_count": 1}, "pouring": {"_count": 1}, "slithered": {"_count": 1}, "wrapped": {"_count": 1}, "Nagini": {"_count": 2}}, "tufts": {"_count": 1, "out": {"_count": 1}}, "lump": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "prune": {"_count": 1, "said": {"_count": 1}}, "puddin": {"_count": 1, "of": {"_count": 1}}, "Muggle": {"_count": 2, "like": {"_count": 2}}, "mystry": {"_count": 1, "parts": {"_count": 1}}, "hand": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "scraping": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "things": {"_count": 3, "from": {"_count": 1}, "terrible": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 13}, "!": {"_count": 4}}, "time": {"_count": 3, "at": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}}, "surprise": {"_count": 13, "": {"_count": 2}, "both": {"_count": 1}, "felt": {"_count": 1}, "Hermione": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "flew": {"_count": 1}, "Dumbledore": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "however": {"_count": 1}}, "leap": {"_count": 5, "of": {"_count": 4}, "Harry": {"_count": 1}}, "clattering": {"_count": 2, "outside": {"_count": 1}, "and": {"_count": 1}}, "black": {"_count": 19, "lake": {"_count": 4}, "dog": {"_count": 8}, "leathery": {"_count": 1}, "winged": {"_count": 1}, "dragon": {"_count": 1}, "mustache": {"_count": 1}, "thestral": {"_count": 1}, "cylinder": {"_count": 1}, "serpent": {"_count": 1}}, "castle": {"_count": 1, "overhead": {"_count": 1}}, "honor": {"_count": 2, "": {"_count": 2}}, "you": {"_count": 2, "know": {"_count": 2}}, "interest": {"_count": 8, "": {"_count": 4}, "over": {"_count": 1}, "and": {"_count": 2}, "looking": {"_count": 1}}, "with": {"_count": 1, "animals": {"_count": 1}}, "delight": {"_count": 1, "just": {"_count": 1}}, "lumpy": {"_count": 1, "body": {"_count": 1}}, "running": {"_count": 1, "jump": {"_count": 1}}, "rush": {"_count": 5, "of": {"_count": 5}}, "crunching": {"_count": 1, "noise": {"_count": 1}}, "wizard": {"_count": 12, "Potter": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 2}, "for": {"_count": 1}, "Barty": {"_count": 1}, "": {"_count": 2}, "oh": {"_count": 1}, "would": {"_count": 1}, "Godric": {"_count": 1}}, "help": {"_count": 1, "snarled": {"_count": 1}}, "sigh": {"_count": 7, "and": {"_count": 3}, "which": {"_count": 1}, "cast": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "adventure": {"_count": 2, "": {"_count": 2}}, "caution": {"_count": 1, "": {"_count": 1}}, "tears": {"_count": 2, "leaking": {"_count": 1}, "splashed": {"_count": 1}}, "deal": {"_count": 42, "of": {"_count": 24}, "to": {"_count": 5}, "about": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 3}, "from": {"_count": 2}, "more": {"_count": 1}, "over": {"_count": 1}, "Bellatrix": {"_count": 1}, "for": {"_count": 1}}, "eyes": {"_count": 4, "fixed": {"_count": 2}, "loomed": {"_count": 1}, "shining": {"_count": 1}}, "too": {"_count": 1, "good": {"_count": 1}}, "bulldog": {"_count": 1, "all": {"_count": 1}}, "circles": {"_count": 1, "like": {"_count": 1}}, "bristling": {"_count": 1, "beard": {"_count": 1}}, "marble": {"_count": 1, "hall": {"_count": 1}}, "pleasure": {"_count": 5, "and": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 1}}, "city": {"_count": 1, "alive": {"_count": 1}}, "arc": {"_count": 1, "soaring": {"_count": 1}}, "oak": {"_count": 2, "front": {"_count": 2}}, "shuddering": {"_count": 4, "breath": {"_count": 3}, "gasp": {"_count": 1}}, "bitterness": {"_count": 1, "on": {"_count": 1}}, "sizzling": {"_count": 1, "dragon": {"_count": 1}}, "BANG": {"_count": 1, "": {"_count": 1}}, "height": {"_count": 1, "": {"_count": 1}}, "maggoty": {"_count": 1, "haggis": {"_count": 1}}, "sorrow": {"_count": 1, "": {"_count": 1}}, "cat": {"_count": 1, "lover": {"_count": 1}}, "Hermione": {"_count": 1, "emerged": {"_count": 1}}, "big": {"_count": 4, "filthy": {"_count": 1}, "yellow": {"_count": 1}, "castle": {"_count": 1}, "dragon": {"_count": 1}}, "flood": {"_count": 1, "of": {"_count": 1}}, "wash": {"_count": 1, "of": {"_count": 1}}, "echoing": {"_count": 2, "bark": {"_count": 1}, "clanking": {"_count": 1}}, "chunks": {"_count": 2, "of": {"_count": 2}}, "glinting": {"_count": 1, "emeralds": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "oaf": {"_count": 1, "Hagrid": {"_count": 1}}, "wings": {"_count": 2, "Harry": {"_count": 1}, "rising": {"_count": 1}}, "Slytherin": {"_count": 1, "himself": {"_count": 1}}, "blunt": {"_count": 1, "head": {"_count": 1}}, "bulbous": {"_count": 1, "yellow": {"_count": 1}}, "steadying": {"_count": 1, "gasps": {"_count": 1}}, "hurry": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "annoyance": {"_count": 1, "to": {"_count": 1}}, "purple": {"_count": 2, "face": {"_count": 2}}, "gloom": {"_count": 1, "in": {"_count": 1}}, "ruddy": {"_count": 1, "face": {"_count": 1}}, "tweed": {"_count": 1, "stomach": {"_count": 1}}, "red": {"_count": 1, "face": {"_count": 1}}, "enjoyment": {"_count": 1, "": {"_count": 1}}, "fat": {"_count": 1, "Chocoballs": {"_count": 1}}, "scramble": {"_count": 1, "to": {"_count": 1}}, "energy": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 2, "Dumbledore": {"_count": 1}, "": {"_count": 1}}, "sharp": {"_count": 1, "head": {"_count": 1}}, "ugly": {"_count": 3, "brute": {"_count": 1}, "boils": {"_count": 1}, "boulderlike": {"_count": 1}}, "fear": {"_count": 1, "of": {"_count": 1}}, "shout": {"_count": 3, "of": {"_count": 2}, "went": {"_count": 1}}, "Ha": {"_count": 1, "": {"_count": 1}}, "difficulty": {"_count": 8, "pulled": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "it": {"_count": 1}, "trembled": {"_count": 1}, "with": {"_count": 1}}, "success": {"_count": 3, "with": {"_count": 2}, "of": {"_count": 1}}, "curly": {"_count": 1, "green": {"_count": 1}}, "slash": {"_count": 1, "across": {"_count": 1}}, "wail": {"_count": 1, "and": {"_count": 1}}, "whoop": {"_count": 2, "of": {"_count": 2}}, "stack": {"_count": 1, "of": {"_count": 1}}, "Ooooooh": {"_count": 1, "of": {"_count": 1}}, "long": {"_count": 1, "knife": {"_count": 1}}, "care": {"_count": 1, "not": {"_count": 1}}, "hairy": {"_count": 1, "moron": {"_count": 1}}, "tug": {"_count": 1, "then": {"_count": 1}}, "contentment": {"_count": 2, "": {"_count": 1}, "stole": {"_count": 1}}, "hands": {"_count": 1, "were": {"_count": 1}}, "yellow": {"_count": 2, "eyes": {"_count": 2}}, "friends": {"_count": 1, "": {"_count": 1}}, "risk": {"_count": 1, "to": {"_count": 1}}, "shape": {"_count": 1, "of": {"_count": 1}}, "trouble": {"_count": 2, "": {"_count": 1}, "keeping": {"_count": 1}}, "dislike": {"_count": 5, "of": {"_count": 1}, "": {"_count": 3}, "on": {"_count": 1}}, "mustached": {"_count": 1, "face": {"_count": 1}}, "slimy": {"_count": 1, "python": {"_count": 1}}, "bullying": {"_count": 1, "git": {"_count": 1}}, "fang": {"_count": 1, "on": {"_count": 1}}, "gold": {"_count": 1, "coins": {"_count": 1}}, "believer": {"_count": 1, "in": {"_count": 1}}, "shakes": {"_count": 2, "at": {"_count": 2}}, "excited": {"_count": 1, "Edam": {"_count": 1}}, "greenand": {"_count": 1, "gold": {"_count": 1}}, "shimmering": {"_count": 1, "shamrock": {"_count": 1}}, "shamrock": {"_count": 1, "dissolved": {"_count": 1}}, "glittering": {"_count": 1, "shamrock": {"_count": 1}}, "wave": {"_count": 6, "of": {"_count": 5}, "toward": {"_count": 1}}, "jumbo": {"_count": 1, "jet": {"_count": 1}}, "change": {"_count": 1, "had": {"_count": 1}}, "Beater": {"_count": 1, "though": {"_count": 1}}, "brown": {"_count": 2, "eyes": {"_count": 2}}, "number": {"_count": 7, "of": {"_count": 7}}, "lurch": {"_count": 1, "the": {"_count": 1}}, "ambition": {"_count": 1, "": {"_count": 1}}, "incident": {"_count": 1, "unless": {"_count": 1}}, "distance": {"_count": 2, "it": {"_count": 1}, "away": {"_count": 1}}, "bubbles": {"_count": 1, "were": {"_count": 1}}, "sloshing": {"_count": 1, "noise": {"_count": 1}}, "concentration": {"_count": 1, "": {"_count": 1}}, "wooden": {"_count": 1, "chest": {"_count": 1}}, "breath": {"_count": 5, "and": {"_count": 4}, "": {"_count": 1}}, "excitement": {"_count": 1, "suddenly": {"_count": 1}}, "sweeping": {"_count": 1, "wave": {"_count": 1}}, "danger": {"_count": 3, "of": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}}, "tension": {"_count": 1, "and": {"_count": 1}}, "dollops": {"_count": 1, "so": {"_count": 1}}, "jet": {"_count": 1, "of": {"_count": 1}}, "brick": {"_count": 1, "fireplace": {"_count": 1}}, "liking": {"_count": 3, "to": {"_count": 1}, "for": {"_count": 2}}, "prat": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 7, "Harry": {"_count": 4}, "Ron": {"_count": 1}, "Tonks": {"_count": 1}, "Neville": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "multicolored": {"_count": 1, "swarms": {"_count": 1}}, "irongray": {"_count": 1, "mass": {"_count": 1}}, "gulp": {"_count": 3, "of": {"_count": 3}}, "stream": {"_count": 1, "of": {"_count": 1}}, "spout": {"_count": 1, "of": {"_count": 1}}, "effect": {"_count": 1, "Bagman": {"_count": 1}}, "bite": {"_count": 1, "of": {"_count": 1}}, "silver": {"_count": 3, "platter": {"_count": 1}, "cross": {"_count": 1}, "eyes": {"_count": 1}}, "frustration": {"_count": 1, "as": {"_count": 1}}, "personal": {"_count": 3, "risk": {"_count": 2}, "wrong": {"_count": 1}}, "gasp": {"_count": 1, "and": {"_count": 1}}, "pressure": {"_count": 1, "to": {"_count": 1}}, "being": {"_count": 1, "back": {"_count": 1}}, "clawed": {"_count": 1, "paws": {"_count": 1}}, "stone": {"_count": 4, "belly": {"_count": 1}, "ball": {"_count": 1}, "pit": {"_count": 1}, "cauldron": {"_count": 1}}, "grayish": {"_count": 1, "something": {"_count": 1}}, "splintering": {"_count": 1, "and": {"_count": 1}}, "clumps": {"_count": 1, "of": {"_count": 1}}, "invisible": {"_count": 1, "wall": {"_count": 1}}, "jolt": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "tragic": {"_count": 1, "hero": {"_count": 1}}, "variety": {"_count": 1, "of": {"_count": 1}}, "jangling": {"_count": 1, "and": {"_count": 1}}, "resemblance": {"_count": 1, "to": {"_count": 1}}, "mounds": {"_count": 1, "of": {"_count": 1}}, "meeting": {"_count": 1, "all": {"_count": 1}}, "cunning": {"_count": 1, "just": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "oafs": {"_count": 1, "got": {"_count": 1}}, "retaliatory": {"_count": 1, "swipe": {"_count": 1}}, "white": {"_count": 2, "wings": {"_count": 1}, "marquee": {"_count": 1}}, "reptilian": {"_count": 1, "winged": {"_count": 1}}, "circle": {"_count": 1, "and": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}, "Voldemort": {"_count": 1, "supporter": {"_count": 1}}, "teacher": {"_count": 1, "said": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "smugness": {"_count": 1, "": {"_count": 1}}, "advice": {"_count": 1, "": {"_count": 1}}, "swell": {"_count": 1, "of": {"_count": 1}}, "roll": {"_count": 1, "o": {"_count": 1}}, "mother": {"_count": 1, "": {"_count": 1}}, "load": {"_count": 1, "o": {"_count": 1}}, "distaste": {"_count": 1, "on": {"_count": 1}}, "gulps": {"_count": 1, "of": {"_count": 1}}, "serpent": {"_count": 2, "got": {"_count": 1}, "floated": {"_count": 1}}, "Christmas": {"_count": 1, "tree": {"_count": 1}}, "news": {"_count": 1, "really": {"_count": 1}}, "trepidation": {"_count": 2, "what": {"_count": 1}, "as": {"_count": 1}}, "good": {"_count": 1, "looks": {"_count": 1}}, "swig": {"_count": 1, "from": {"_count": 1}}, "bold": {"_count": 1, "headline": {"_count": 1}}, "gusto": {"_count": 1, "by": {"_count": 1}}, "ring": {"_count": 2, "some": {"_count": 2}}, "tides": {"_count": 1, "of": {"_count": 1}}, "service": {"_count": 1, "said": {"_count": 1}}, "astonishment": {"_count": 1, "Dobby": {"_count": 1}}, "round": {"_count": 1, "blue": {"_count": 1}}, "grease": {"_count": 1, "marks": {"_count": 1}}, "overreaction": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "roar": {"_count": 4, "rose": {"_count": 1}, "from": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}}, "struggle": {"_count": 1, "to": {"_count": 1}}, "mound": {"_count": 1, "of": {"_count": 1}}, "earthen": {"_count": 1, "mound": {"_count": 1}}, "trunk": {"_count": 1, "in": {"_count": 1}}, "tide": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "you": {"_count": 1}}, "pain": {"_count": 1, "at": {"_count": 1}}, "halfbreed": {"_count": 1, "oaf": {"_count": 1}}, "insult": {"_count": 1, "human": {"_count": 1}}, "throb": {"_count": 1, "and": {"_count": 1}}, "flapping": {"_count": 1, "things": {"_count": 1}}, "leathery": {"_count": 1, "wings": {"_count": 1}}, "rumbling": {"_count": 2, "noise": {"_count": 1}, "and": {"_count": 1}}, "redgold": {"_count": 1, "blur": {"_count": 1}}, "weakness": {"_count": 1, "for": {"_count": 1}}, "fists": {"_count": 1, "still": {"_count": 1}}, "shock": {"_count": 2, "": {"_count": 2}}, "heavens": {"_count": 1, "above": {"_count": 1}}, "silent": {"_count": 1, "space": {"_count": 1}}, "esteem": {"_count": 1, "": {"_count": 1}}, "effort": {"_count": 3, "that": {"_count": 1}, "Hermione": {"_count": 1}, "suceeded": {"_count": 1}}, "regret": {"_count": 2, "that": {"_count": 2}}, "sense": {"_count": 2, "of": {"_count": 2}}, "deep": {"_count": 2, "breath": {"_count": 1}, "ripples": {"_count": 1}}, "Dark": {"_count": 1, "wizard": {"_count": 1}}, "value": {"_count": 1, "to": {"_count": 1}}, "treachery": {"_count": 1, "to": {"_count": 1}}, "lungfuls": {"_count": 1, "of": {"_count": 1}}, "witch": {"_count": 1, "": {"_count": 1}}, "swollen": {"_count": 1, "spider": {"_count": 1}}, "blue": {"_count": 1, "eyes": {"_count": 1}}, "agitation": {"_count": 1, "while": {"_count": 1}}, "novelties": {"_count": 1, "": {"_count": 1}}, "velvetcovered": {"_count": 1, "belly": {"_count": 1}}, "silvery": {"_count": 1, "mustache": {"_count": 1}}, "belly": {"_count": 1, "": {"_count": 1}}, "oaken": {"_count": 1, "front": {"_count": 1}}, "beaconlike": {"_count": 1, "eyes": {"_count": 1}}, "walrus": {"_count": 1, "mustache": {"_count": 1}}, "disappointment": {"_count": 1, "Cormac": {"_count": 1}}, "gray": {"_count": 1, "hippogriff": {"_count": 1}}, "snort": {"_count": 1, "": {"_count": 1}}, "thinkers": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "remarkable": {"_count": 1}, "sincere": {"_count": 1}}, "bearing": {"_count": 1, "on": {"_count": 1}}, "team": {"_count": 1, "": {"_count": 1}}, "grunting": {"_count": 1, "snore": {"_count": 1}}, "for": {"_count": 1, "us": {"_count": 1}}, "swipe": {"_count": 1, "for": {"_count": 1}}, "bunches": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "youll": {"_count": 1}}, "vogue": {"_count": 1, "during": {"_count": 1}}, "importance": {"_count": 2, "": {"_count": 2}}, "indignation": {"_count": 1, "on": {"_count": 1}}, "scrambling": {"_count": 1, "and": {"_count": 1}}, "bang": {"_count": 1, "and": {"_count": 1}}, "shudder": {"_count": 3, "a": {"_count": 1}, "but": {"_count": 1}, "looked": {"_count": 1}}, "example": {"_count": 1, "": {"_count": 1}}, "satisfaction": {"_count": 1, "Kreacher": {"_count": 1}}, "power": {"_count": 1, "and": {"_count": 1}}, "pull": {"_count": 1, "toward": {"_count": 1}}, "sadness": {"_count": 1, "filled": {"_count": 1}}, "orblike": {"_count": 1, "eyes": {"_count": 1}}, "vat": {"_count": 1, "of": {"_count": 1}}, "anticipation": {"_count": 1, "over": {"_count": 1}}, "feeling": {"_count": 1, "when": {"_count": 1}}, "sob": {"_count": 1, "": {"_count": 1}}, "spotted": {"_count": 1, "handkerchief": {"_count": 1}}, "damage": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "splash": {"_count": 1, "his": {"_count": 1}}, "achievements": {"_count": 1, "remains": {"_count": 1}}, "Nor": {"_count": 1, "am": {"_count": 1}}, "school": {"_count": 1, "put": {"_count": 1}}, "rattling": {"_count": 2, "gasp": {"_count": 1}, "breaths": {"_count": 1}}, "rag": {"_count": 1, "doll": {"_count": 1}}, "job": {"_count": 1, "youre": {"_count": 1}}, "humanity": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "his": {"_count": 1}}, "net": {"_count": 1, "burst": {"_count": 1}}, "magnet": {"_count": 1, "saw": {"_count": 1}}, "dark": {"_count": 2, "mass": {"_count": 1}, "cloud": {"_count": 1}}, "transparent": {"_count": 1, "bubble": {"_count": 1}}, "link": {"_count": 1, "with": {"_count": 1}}, "old": {"_count": 1, "life": {"_count": 1}}, "crash": {"_count": 1, "from": {"_count": 1}}, "skeletal": {"_count": 1, "thestral": {"_count": 1}}, "opportunity": {"_count": 1, "to": {"_count": 1}}, "creaking": {"_count": 1, "of": {"_count": 1}}, "Seeker": {"_count": 1, "thats": {"_count": 1}}, "collective": {"_count": 1, "sigh": {"_count": 1}}, "applause": {"_count": 1, "after": {"_count": 1}}, "isnt": {"_count": 1, "she": {"_count": 1}}, "blond": {"_count": 3, "Death": {"_count": 2}, "Rowle": {"_count": 1}}, "cloud": {"_count": 1, "of": {"_count": 1}}, "thanks": {"_count": 1, "he": {"_count": 1}}, "Quidditch": {"_count": 1, "player": {"_count": 1}}, "bloodshot": {"_count": 1, "eyes": {"_count": 1}}, "rasps": {"_count": 1, "now": {"_count": 1}}, "pale": {"_count": 1, "eyes": {"_count": 1}}, "Atrium": {"_count": 1, "seemed": {"_count": 1}}, "overhanging": {"_count": 1, "forehead": {"_count": 1}}, "chunk": {"_count": 1, "of": {"_count": 1}}, "work": {"_count": 1, "of": {"_count": 1}}, "new": {"_count": 2, "friendship": {"_count": 1}, "vistas": {"_count": 1}}, "slanting": {"_count": 1, "shafts": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "age": {"_count": 1, "that": {"_count": 1}}, "Wizarding": {"_count": 1, "secret": {"_count": 1}}, "sunken": {"_count": 1, "eyes": {"_count": 1}}, "gilded": {"_count": 1, "thing": {"_count": 1}}, "glassy": {"_count": 1, "orbs": {"_count": 1}}, "domed": {"_count": 2, "head": {"_count": 1}, "glass": {"_count": 1}}, "act": {"_count": 1, "": {"_count": 1}}, "slumbering": {"_count": 1, "creature": {"_count": 1}}, "bronze": {"_count": 1, "doors": {"_count": 1}}, "spiked": {"_count": 1, "wings": {"_count": 1}}, "clatter": {"_count": 2, "the": {"_count": 1}, "of": {"_count": 1}}, "cascade": {"_count": 1, "of": {"_count": 1}}, "crawling": {"_count": 1, "snarling": {"_count": 1}}, "lumps": {"_count": 1, "of": {"_count": 1}}, "spiraling": {"_count": 1, "circles": {"_count": 1}}, "complexity": {"_count": 1, "": {"_count": 1}}, "thump": {"_count": 1, "Someone": {"_count": 1}}, "cheer": {"_count": 1, "erupted": {"_count": 1}}, "respect": {"_count": 1, "for": {"_count": 1}}, "boarhound": {"_count": 1, "had": {"_count": 1}}, "curved": {"_count": 1, "fangs": {"_count": 1}}, "flaming": {"_count": 1, "chimaera": {"_count": 1}}, "cavalcade": {"_count": 1, "of": {"_count": 1}}, "heaving": {"_count": 1, "breaths": {"_count": 1}}, "thick": {"_count": 1, "snake": {"_count": 1}}, "Wheeeeeeeeeeee": {"_count": 1, "and": {"_count": 1}}, "scurrying": {"_count": 1, "a": {"_count": 1}}, "tree": {"_count": 1, "first": {"_count": 1}}, "flaw": {"_count": 1, "": {"_count": 1}}, "favor": {"_count": 1, "of": {"_count": 1}}, "bearded": {"_count": 1, "face": {"_count": 1}}, "Room": {"_count": 1, "of": {"_count": 1}}, "snakes": {"_count": 1, "head": {"_count": 1}}, "winged": {"_count": 1, "creatures": {"_count": 1}}, "love": {"_count": 1, "Oh": {"_count": 1}}, "sooty": {"_count": 1, "station": {"_count": 1}}}, "sniff": {"_count": 12, "as": {"_count": 2, "he": {"_count": 1}, "though": {"_count": 1}}, "at": {"_count": 1, "something": {"_count": 1}}, "hopefully": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "of": {"_count": 1, "disapproval": {"_count": 1}}, "Harry": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 2, "hastily": {"_count": 1}, "patted": {"_count": 1}}}, "took": {"_count": 714, "a": {"_count": 157, "golden": {"_count": 1}, "letter": {"_count": 1}, "few": {"_count": 6}, "swig": {"_count": 3}, "gulp": {"_count": 2}, "year": {"_count": 1}, "little": {"_count": 4}, "long": {"_count": 8}, "step": {"_count": 13}, "great": {"_count": 12}, "different": {"_count": 2}, "while": {"_count": 3}, "minute": {"_count": 1}, "deep": {"_count": 38}, "surprisingly": {"_count": 1}, "flowerpot": {"_count": 1}, "pinch": {"_count": 3}, "large": {"_count": 5}, "moment": {"_count": 4}, "very": {"_count": 2}, "bite": {"_count": 2}, "definite": {"_count": 1}, "detour": {"_count": 1}, "quick": {"_count": 1}, "gobletful": {"_count": 1}, "fourth": {"_count": 1}, "firmer": {"_count": 1}, "small": {"_count": 2}, "piece": {"_count": 2}, "jam": {"_count": 1}, "wrong": {"_count": 1}, "right": {"_count": 1}, "left": {"_count": 2}, "draft": {"_count": 1}, "quill": {"_count": 1}, "couple": {"_count": 3}, "seat": {"_count": 1}, "real": {"_count": 1}, "sandwich": {"_count": 1}, "horrified": {"_count": 1}, "shaky": {"_count": 1}, "greater": {"_count": 1}, "table": {"_count": 1}, "risk": {"_count": 1}, "Bludger": {"_count": 1}, "fancy": {"_count": 2}, "gloomier": {"_count": 1}, "ferocious": {"_count": 1}, "carefully": {"_count": 1}, "bunch": {"_count": 1}, "look": {"_count": 1}, "cold": {"_count": 1}, "running": {"_count": 1}, "sip": {"_count": 1}, "short": {"_count": 1}, "hairpin": {"_count": 1}, "backseat": {"_count": 1}, "bow": {"_count": 1}, "part": {"_count": 1}}, "Harry": {"_count": 11, "in": {"_count": 1}, "one": {"_count": 1}, "several": {"_count": 1}, "by": {"_count": 3}, "aback": {"_count": 1}, "completely": {"_count": 1}, "much": {"_count": 1}, "only": {"_count": 1}, "a": {"_count": 1}}, "out": {"_count": 41, "the": {"_count": 8}, "his": {"_count": 13}, "a": {"_count": 9}, "her": {"_count": 3}, "is": {"_count": 1}, "their": {"_count": 3}, "parchment": {"_count": 1}, "plates": {"_count": 1}, "all": {"_count": 1}, "of": {"_count": 1}}, "him": {"_count": 17, "and": {"_count": 1}, "in": {"_count": 2}, "as": {"_count": 1}, "outside": {"_count": 1}, "": {"_count": 3}, "a": {"_count": 3}, "into": {"_count": 1}, "magic": {"_count": 1}, "two": {"_count": 1}, "several": {"_count": 1}, "to": {"_count": 1}, "by": {"_count": 1}}, "Dudley": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 41, "curiously": {"_count": 1}, "": {"_count": 4}, "home": {"_count": 1}, "out": {"_count": 3}, "off": {"_count": 2}, "reluctantly": {"_count": 1}, "in": {"_count": 4}, "from": {"_count": 7}, "he": {"_count": 1}, "without": {"_count": 1}, "up": {"_count": 1}, "instead": {"_count": 1}, "as": {"_count": 3}, "and": {"_count": 6}, "to": {"_count": 1}, "into": {"_count": 1}, "I": {"_count": 1}, "a": {"_count": 1}, "not": {"_count": 1}}, "both": {"_count": 2, "Harry": {"_count": 1}, "hands": {"_count": 1}}, "care": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "off": {"_count": 48, "his": {"_count": 13}, "their": {"_count": 1}, "the": {"_count": 12}, "": {"_count": 2}, "for": {"_count": 3}, "one": {"_count": 1}, "through": {"_count": 2}, "into": {"_count": 3}, "streaking": {"_count": 1}, "again": {"_count": 3}, "so": {"_count": 1}, "back": {"_count": 1}, "immediately": {"_count": 1}, "after": {"_count": 2}, "they": {"_count": 1}, "and": {"_count": 1}}, "up": {"_count": 9, "two": {"_count": 2}, "the": {"_count": 4}, "his": {"_count": 1}, "an": {"_count": 1}, "with": {"_count": 1}}, "the": {"_count": 90, "parchment": {"_count": 2}, "wand": {"_count": 9}, "Sorting": {"_count": 1}, "roll": {"_count": 1}, "left": {"_count": 2}, "right": {"_count": 3}, "toast": {"_count": 1}, "car": {"_count": 1}, "picture": {"_count": 1}, "hat": {"_count": 1}, "job": {"_count": 1}, "diary": {"_count": 1}, "chocolate": {"_count": 1}, "tankard": {"_count": 1}, "weight": {"_count": 1}, "platter": {"_count": 1}, "Firebolt": {"_count": 1}, "end": {"_count": 2}, "map": {"_count": 2}, "order": {"_count": 1}, "stairs": {"_count": 1}, "letter": {"_count": 1}, "hint": {"_count": 1}, "opportunity": {"_count": 2}, "newspaper": {"_count": 3}, "same": {"_count": 1}, "finger": {"_count": 1}, "goblet": {"_count": 1}, "glass": {"_count": 1}, "last": {"_count": 1}, "badge": {"_count": 1}, "photograph": {"_count": 1}, "students": {"_count": 1}, "seat": {"_count": 4}, "rest": {"_count": 1}, "case": {"_count": 1}, "Portkey": {"_count": 1}, "piece": {"_count": 1}, "chance": {"_count": 1}, "edge": {"_count": 1}, "blast": {"_count": 1}, "lead": {"_count": 2}, "remaining": {"_count": 1}, "scroll": {"_count": 1}, "necklace": {"_count": 1}, "spiral": {"_count": 1}, "boxed": {"_count": 1}, "blame": {"_count": 1}, "small": {"_count": 1}, "note": {"_count": 1}, "bottle": {"_count": 1}, "blow": {"_count": 1}, "nastysmelling": {"_count": 1}, "rectangular": {"_count": 1}, "square": {"_count": 1}, "first": {"_count": 3}, "matches": {"_count": 1}, "second": {"_count": 1}, "idea": {"_count": 1}, "chair": {"_count": 1}, "sword": {"_count": 2}, "Elder": {"_count": 1}, "offensive": {"_count": 1}, "weapon": {"_count": 1}, "page": {"_count": 1}, "trolley": {"_count": 1}}, "almost": {"_count": 1, "ten": {"_count": 1}}, "anything": {"_count": 1, "thats": {"_count": 1}}, "place": {"_count": 8, "down": {"_count": 1}, "in": {"_count": 4}, "amid": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}}, "several": {"_count": 10, "purple": {"_count": 1}, "deep": {"_count": 2}, "staggering": {"_count": 1}, "hasty": {"_count": 1}, "paces": {"_count": 1}, "large": {"_count": 1}, "minutes": {"_count": 1}, "steps": {"_count": 2}}, "one": {"_count": 13, "look": {"_count": 4}, "quick": {"_count": 1}, "frightened": {"_count": 1}, "": {"_count": 2}, "glance": {"_count": 2}, "at": {"_count": 1}, "of": {"_count": 2}}, "perhaps": {"_count": 1, "thirty": {"_count": 1}}, "to": {"_count": 10, "find": {"_count": 1}, "staring": {"_count": 1}, "give": {"_count": 1}, "be": {"_count": 1}, "volunteering": {"_count": 1}, "the": {"_count": 1}, "bringing": {"_count": 1}, "each": {"_count": 1}, "eliminate": {"_count": 1}, "mean": {"_count": 1}}, "hes": {"_count": 1, "going": {"_count": 1}}, "them": {"_count": 14, "down": {"_count": 1}, "off": {"_count": 1}, "nearly": {"_count": 2}, "so": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}, "most": {"_count": 1}, "twenty": {"_count": 1}, "no": {"_count": 1}, "a": {"_count": 2}, "within": {"_count": 1}, "and": {"_count": 1}}, "flight": {"_count": 7, "again": {"_count": 2}, "": {"_count": 2}, "in": {"_count": 1}, "clearly": {"_count": 1}, "when": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "its": {"_count": 1, "place": {"_count": 1}}, "quite": {"_count": 2, "a": {"_count": 2}}, "an": {"_count": 5, "ordinary": {"_count": 1}, "enormous": {"_count": 1}, "uncertain": {"_count": 1}, "unnecessarily": {"_count": 1}, "unnatural": {"_count": 1}}, "turns": {"_count": 1, "riding": {"_count": 1}}, "Harrys": {"_count": 1, "glasses": {"_count": 1}}, "another": {"_count": 17, "huge": {"_count": 1}, "sip": {"_count": 2}, "gulp": {"_count": 1}, "long": {"_count": 2}, "great": {"_count": 2}, "deep": {"_count": 2}, "fortifying": {"_count": 1}, "generous": {"_count": 1}, "swig": {"_count": 2}, "hour": {"_count": 1}, "large": {"_count": 1}, "step": {"_count": 1}}, "his": {"_count": 18, "and": {"_count": 1}, "remaining": {"_count": 1}, "face": {"_count": 1}, "small": {"_count": 1}, "glasses": {"_count": 1}, "eyes": {"_count": 1}, "place": {"_count": 1}, "leg": {"_count": 1}, "seat": {"_count": 1}, "revenge": {"_count": 1}, "brain": {"_count": 1}, "time": {"_count": 2}, "wand": {"_count": 1}, "usual": {"_count": 1}, "hand": {"_count": 1}, "fancy": {"_count": 1}, "chance": {"_count": 1}}, "nearly": {"_count": 1, "twenty": {"_count": 1}}, "aim": {"_count": 5, "and": {"_count": 1}, "again": {"_count": 2}, "at": {"_count": 2}}, "charge": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "very": {"_count": 2, "seriously": {"_count": 1}, "little": {"_count": 1}}, "nobodys": {"_count": 1, "advice": {"_count": 1}}, "their": {"_count": 15, "usual": {"_count": 2}, "teacups": {"_count": 1}, "seats": {"_count": 2}, "departure": {"_count": 1}, "copies": {"_count": 1}, "three": {"_count": 1}, "beers": {"_count": 1}, "leave": {"_count": 1}, "work": {"_count": 1}, "places": {"_count": 3}, "allotted": {"_count": 1}}, "hold": {"_count": 7, "of": {"_count": 7}}, "huge": {"_count": 1, "pleasure": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "Dumbledores": {"_count": 1}, "everything": {"_count": 1}}, "theirs": {"_count": 1, "out": {"_count": 1}}, "Hermiones": {"_count": 1, "copy": {"_count": 1}}, "Malfoys": {"_count": 1, "shrivelfig": {"_count": 1}}, "this": {"_count": 5, "class": {"_count": 1}, "view": {"_count": 1}, "one": {"_count": 1}, "wand": {"_count": 2}}, "notes": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "ages": {"_count": 1, "but": {"_count": 1}}, "advantage": {"_count": 5, "of": {"_count": 5}}, "Gryffindors": {"_count": 1, "penalty": {"_count": 1}}, "certain": {"_count": 1, "precautions": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "refuge": {"_count": 2, "in": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "sharp": {"_count": 1}}, "me": {"_count": 6, "into": {"_count": 1}, "home": {"_count": 1}, "down": {"_count": 1}, "very": {"_count": 1}, "along": {"_count": 1}, "from": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "might": {"_count": 1}}, "careful": {"_count": 1, "aim": {"_count": 1}}, "marks": {"_count": 2, "off": {"_count": 2}}, "us": {"_count": 1, "on": {"_count": 1}}, "Padmas": {"_count": 1, "vacated": {"_count": 1}}, "for": {"_count": 5, "granted": {"_count": 1}, "their": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}, "an": {"_count": 1}}, "But": {"_count": 1, "past": {"_count": 1}}, "three": {"_count": 2, "more": {"_count": 1}, "days": {"_count": 1}}, "Diggory": {"_count": 1, "much": {"_count": 1}}, "Siriuss": {"_count": 1, "food": {"_count": 1}}, "no": {"_count": 5, "notice": {"_count": 5}}, "that": {"_count": 4, "for": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}, "wand": {"_count": 1}}, "not": {"_count": 1, "the": {"_count": 1}}, "long": {"_count": 1, "ago": {"_count": 1}}, "possession": {"_count": 1, "of": {"_count": 1}}, "stuff": {"_count": 1, "from": {"_count": 1}}, "your": {"_count": 4, "idiocy": {"_count": 1}, "time": {"_count": 1}, "blood": {"_count": 2}}, "you": {"_count": 6, "I": {"_count": 1}, "two": {"_count": 1}, "Dumbledore": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "upstairs": {"_count": 1}}, "on": {"_count": 1, "each": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "fright": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 2, "much": {"_count": 1}, "the": {"_count": 1}}, "most": {"_count": 2, "of": {"_count": 2}}, "absolutely": {"_count": 1, "no": {"_count": 1}}, "two": {"_count": 3, "deep": {"_count": 1}, "steps": {"_count": 1}, "massive": {"_count": 1}}, "from": {"_count": 5, "her": {"_count": 1}, "inside": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "five": {"_count": 1, "Death": {"_count": 1}}, "her": {"_count": 7, "seat": {"_count": 1}, "clipboard": {"_count": 1}, "some": {"_count": 1}, "second": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 1}, "place": {"_count": 1}}, "matters": {"_count": 2, "into": {"_count": 1}, "out": {"_count": 1}}, "Hedwig": {"_count": 1, "from": {"_count": 1}}, "pity": {"_count": 1, "on": {"_count": 1}}, "seats": {"_count": 1, "on": {"_count": 1}}, "any": {"_count": 1, "notice": {"_count": 1}}, "over": {"_count": 3, "": {"_count": 1}, "from": {"_count": 1}, "the": {"_count": 1}}, "toward": {"_count": 1, "Snapes": {"_count": 1}}, "deep": {"_count": 2, "breaths": {"_count": 2}}, "hers": {"_count": 1, "off": {"_count": 1}}, "centaurs": {"_count": 1, "years": {"_count": 1}}, "so": {"_count": 2, "long": {"_count": 1}, "little": {"_count": 1}}, "particular": {"_count": 1, "pleasure": {"_count": 1}}, "Ginny": {"_count": 1, "down": {"_count": 1}}, "my": {"_count": 4, "last": {"_count": 1}, "Luna": {"_count": 2}, "blood": {"_count": 1}}, "Sirius": {"_count": 1, "at": {"_count": 1}}, "responsibility": {"_count": 1, "for": {"_count": 1}}, "away": {"_count": 1, "everything": {"_count": 1}}, "even": {"_count": 1, "longer": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}, "yet": {"_count": 1, "another": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "back": {"_count": 2, "the": {"_count": 2}}, "rucksacks": {"_count": 1, "and": {"_count": 1}}, "offense": {"_count": 1, "because": {"_count": 1}}, "Kreacher": {"_count": 1, "with": {"_count": 1}}, "little": {"_count": 2, "notice": {"_count": 1}, "imagination": {"_count": 1}}, "numbness": {"_count": 1, "seemed": {"_count": 1}}, "Ancient": {"_count": 1, "Runes": {"_count": 1}}, "first": {"_count": 1, "watch": {"_count": 1}}, "of": {"_count": 1, "him": {"_count": 1}}, "Bellatrixs": {"_count": 1, "wand": {"_count": 1}}, "great": {"_count": 1, "heaving": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "golden": {"_count": 212, "watch": {"_count": 1, "from": {"_count": 1}}, "key": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "plates": {"_count": 9, "and": {"_count": 4}, "as": {"_count": 2}, "had": {"_count": 1}, "returned": {"_count": 1}, "but": {"_count": 1}}, "ribbon": {"_count": 1, "flew": {"_count": 1}}, "poles": {"_count": 2, "with": {"_count": 2}}, "bubbles": {"_count": 1, "blossoming": {"_count": 1}}, "hair": {"_count": 3, "shining": {"_count": 1}, "fell": {"_count": 1}, "": {"_count": 1}}, "stage": {"_count": 1, "had": {"_count": 1}}, "perch": {"_count": 2, "behind": {"_count": 1}, "beside": {"_count": 1}}, "wings": {"_count": 1, "and": {"_count": 1}}, "tail": {"_count": 3, "as": {"_count": 1}, "feathers": {"_count": 1}, "": {"_count": 1}}, "talons": {"_count": 1, "which": {"_count": 1}}, "beak": {"_count": 2, "and": {"_count": 1}, "sank": {"_count": 1}}, "claws": {"_count": 1, "squeeze": {"_count": 1}}, "glow": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "moon": {"_count": 1, "and": {"_count": 1}}, "title": {"_count": 2, "The": {"_count": 1}, "MUDBLOODS": {"_count": 1}}, "platters": {"_count": 1, "Dumbledore": {"_count": 1}}, "stars": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "registration": {"_count": 1, "number": {"_count": 1}}, "glimmer": {"_count": 1, "Harry": {"_count": 1}}, "ball": {"_count": 6, "was": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}, "will": {"_count": 1}, "would": {"_count": 1}}, "sunlight": {"_count": 1, "was": {"_count": 1}}, "goal": {"_count": 1, "posts": {"_count": 1}}, "light": {"_count": 9, "which": {"_count": 1}, "": {"_count": 2}, "remained": {"_count": 1}, "illuminated": {"_count": 1}, "hit": {"_count": 1}, "in": {"_count": 1}, "onto": {"_count": 1}, "sparkled": {"_count": 1}}, "rain": {"_count": 1, "seemed": {"_count": 1}}, "cup": {"_count": 6, "into": {"_count": 1}, "with": {"_count": 1}, "sparkled": {"_count": 1}, "skewered": {"_count": 1}, "was": {"_count": 1}, "Alone": {"_count": 1}}, "hands": {"_count": 1, "and": {"_count": 1}}, "plate": {"_count": 1, "": {"_count": 1}}, "goblet": {"_count": 1, "": {"_count": 1}}, "horses": {"_count": 1, "tossed": {"_count": 1}}, "wands": {"_count": 2, "each": {"_count": 1}, "": {"_count": 1}}, "steps": {"_count": 2, "": {"_count": 2}}, "line": {"_count": 1, "had": {"_count": 1}}, "circle": {"_count": 1, "as": {"_count": 1}}, "television": {"_count": 1, "aerial": {"_count": 1}}, "aerial": {"_count": 1, "": {"_count": 1}}, "egg": {"_count": 13, "Harry": {"_count": 1}, "": {"_count": 4}, "And": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}, "upstairs": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "still": {"_count": 1}, "fell": {"_count": 1}}, "eggs": {"_count": 1, "youre": {"_count": 1}}, "owls": {"_count": 1, "and": {"_count": 1}}, "hooves": {"_count": 1, "and": {"_count": 1}}, "taps": {"_count": 1, "stood": {"_count": 1}}, "mist": {"_count": 2, "floating": {"_count": 1}, "which": {"_count": 1}}, "thread": {"_count": 6, "connecting": {"_count": 1}, "remained": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}, "broke": {"_count": 1}, "with": {"_count": 1}}, "domeshaped": {"_count": 1, "web": {"_count": 1}}, "dome": {"_count": 1, "": {"_count": 1}}, "web": {"_count": 3, "and": {"_count": 1}, "while": {"_count": 1}, "how": {"_count": 1}}, "beam": {"_count": 1, "of": {"_count": 1}}, "ring": {"_count": 1, "bearing": {"_count": 1}}, "symbols": {"_count": 2, "that": {"_count": 1}, "continued": {"_count": 1}}, "statues": {"_count": 2, "larger": {"_count": 1}, "in": {"_count": 1}}, "gates": {"_count": 6, "at": {"_count": 2}, "toward": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}}, "rod": {"_count": 1, "thin": {"_count": 1}}, "instrument": {"_count": 1, "and": {"_count": 1}}, "grilles": {"_count": 7, "": {"_count": 1}, "slid": {"_count": 3}, "housing": {"_count": 1}, "clanged": {"_count": 1}, "as": {"_count": 1}}, "grille": {"_count": 2, "slid": {"_count": 1}, "before": {"_count": 1}}, "fountain": {"_count": 4, "before": {"_count": 1}, "where": {"_count": 1}, "again": {"_count": 1}, "had": {"_count": 1}}, "chair": {"_count": 1, "at": {"_count": 1}}, "squares": {"_count": 1, "of": {"_count": 1}}, "baubles": {"_count": 1, "from": {"_count": 1}}, "head": {"_count": 2, "with": {"_count": 1}, "of": {"_count": 1}}, "feather": {"_count": 1, "that": {"_count": 1}}, "phoenix": {"_count": 1, "tail": {"_count": 1}}, "cherubs": {"_count": 1, "that": {"_count": 1}}, "letters": {"_count": 2, "spelled": {"_count": 1}, "upon": {"_count": 1}}, "lights": {"_count": 1, "that": {"_count": 1}}, "chains": {"_count": 2, "from": {"_count": 1}, "wove": {"_count": 1}}, "wizards": {"_count": 3, "head": {"_count": 3}}, "statue": {"_count": 1, "of": {"_count": 1}}, "centaur": {"_count": 1, "cantered": {"_count": 1}}, "rubble": {"_count": 1, "on": {"_count": 1}}, "post": {"_count": 1, "where": {"_count": 1}}, "buttons": {"_count": 2, "on": {"_count": 2}}, "liquid": {"_count": 1, "into": {"_count": 1}}, "potion": {"_count": 3, "and": {"_count": 1}, "looking": {"_count": 1}, "down": {"_count": 1}}, "birds": {"_count": 1, "continued": {"_count": 1}}, "bullets": {"_count": 1, "toward": {"_count": 1}}, "lamp": {"_count": 1, "dangling": {"_count": 1}}, "necklace": {"_count": 1, "": {"_count": 1}}, "clock": {"_count": 2, "standing": {"_count": 2}}, "locket": {"_count": 3, "": {"_count": 1}, "lying": {"_count": 1}, "lay": {"_count": 1}}, "bottle": {"_count": 1, "had": {"_count": 1}}, "frame": {"_count": 1, "over": {"_count": 1}}, "day": {"_count": 1, "of": {"_count": 1}}, "fire": {"_count": 1, "through": {"_count": 1}}, "bulrushes": {"_count": 1, "": {"_count": 1}}, "flag": {"_count": 1, "on": {"_count": 1}}, "evening": {"_count": 1, "light": {"_count": 1}}, "sphere": {"_count": 1, "but": {"_count": 1}}, "surface": {"_count": 1, "where": {"_count": 1}}, "chairs": {"_count": 2, "set": {"_count": 1}, "and": {"_count": 1}}, "balloons": {"_count": 3, "over": {"_count": 1}, "": {"_count": 1}, "overhead": {"_count": 1}}, "matchsticks": {"_count": 1, "": {"_count": 1}}, "chain": {"_count": 3, "around": {"_count": 1}, "over": {"_count": 1}, "of": {"_count": 1}}, "dresses": {"_count": 1, "looked": {"_count": 1}}, "bells": {"_count": 1, "flew": {"_count": 1}}, "jacketed": {"_count": 1, "band": {"_count": 1}}, "pillars": {"_count": 1, "and": {"_count": 1}}, "lanterns": {"_count": 1, "the": {"_count": 1}}, "coins": {"_count": 2, "all": {"_count": 1}, "and": {"_count": 1}}, "token": {"_count": 1, "into": {"_count": 1}}, "door": {"_count": 1, "had": {"_count": 1}}, "doors": {"_count": 3, "hit": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}}, "streetlights": {"_count": 1, "indicated": {"_count": 1}}, "flames": {"_count": 2, "at": {"_count": 1}, "that": {"_count": 1}}, "ear": {"_count": 1, "trumpets": {"_count": 1}}, "ink": {"_count": 1, "friends": {"_count": 1}}, "Snitch": {"_count": 1, "": {"_count": 1}}, "rods": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Probe": {"_count": 1, "and": {"_count": 1}}, "ccup": {"_count": 1, "mmy": {"_count": 1}}, "coin": {"_count": 1, "and": {"_count": 1}}, "box": {"_count": 1, "lay": {"_count": 1}}, "metal": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "an": {"_count": 1}}}, "watch": {"_count": 240, "from": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 50, ".": {"_count": 46}, "!": {"_count": 3}, "?": {"_count": 1}}, "what": {"_count": 3, "he": {"_count": 1}, "happens": {"_count": 1}, "was": {"_count": 1}}, "television": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "he": {"_count": 1}}, "Hagrid": {"_count": 1, "until": {"_count": 1}}, "the": {"_count": 29, "redhaired": {"_count": 1}, "game": {"_count": 1}, "path": {"_count": 1}, "match": {"_count": 3}, "Quidditch": {"_count": 3}, "other": {"_count": 1}, "tournament": {"_count": 1}, "first": {"_count": 1}, "prefects": {"_count": 1}, "second": {"_count": 2}, "final": {"_count": 1}, "approaching": {"_count": 1}, "Muggle": {"_count": 1}, "sixth": {"_count": 1}, "corner": {"_count": 1}, "others": {"_count": 1}, "kitchen": {"_count": 1}, "skies": {"_count": 1}, "foursome": {"_count": 1}, "eggs": {"_count": 1}, "top": {"_count": 1}, "selection": {"_count": 1}, "dancers": {"_count": 1}, "sun": {"_count": 1}}, "out": {"_count": 10, "for": {"_count": 8}, "": {"_count": 1}, "of": {"_count": 1}}, "and": {"_count": 12, "then": {"_count": 4}, "added": {"_count": 1}, "his": {"_count": 1}, "looked": {"_count": 1}, "received": {"_count": 1}, "hurriedly": {"_count": 1}, "saw": {"_count": 1}, "tucking": {"_count": 1}, "told": {"_count": 1}}, "Percy": {"_count": 1, "chase": {"_count": 1}}, "as": {"_count": 4, "Harry": {"_count": 1}, "another": {"_count": 1}, "Dumbledore": {"_count": 1}, "she": {"_count": 1}}, "on": {"_count": 8, "me": {"_count": 2}, "him": {"_count": 1}, "those": {"_count": 1}, "you": {"_count": 1}, "James": {"_count": 1}, "it": {"_count": 1}, "Godrics": {"_count": 1}}, "us": {"_count": 1, "first": {"_count": 1}}, "my": {"_count": 1, "sister": {"_count": 1}}, "our": {"_count": 2, "step": {"_count": 2}}, "him": {"_count": 9, "hoping": {"_count": 1}, "better": {"_count": 1}, "long": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "kill": {"_count": 1}, "when": {"_count": 1}, "fail": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "he": {"_count": 3, "tugged": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 1}}, "you": {"_count": 2, "die": {"_count": 1}, "Harry": {"_count": 1}}, "closely": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "youre": {"_count": 1}}, "his": {"_count": 3, "mind": {"_count": 1}, "eyes": {"_count": 1}, "face": {"_count": 1}}, "Flint": {"_count": 1, "still": {"_count": 1}}, "with": {"_count": 3, "an": {"_count": 1}, "twelve": {"_count": 1}, "odd": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "do": {"_count": 1}}, "Harry": {"_count": 6, "knew": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 1}, "play": {"_count": 1}}, "than": {"_count": 1, "tears": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "dangling": {"_count": 1, "from": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "for": {"_count": 5, "signs": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "possible": {"_count": 1}}, "two": {"_count": 1, "": {"_count": 1}}, "wore": {"_count": 1, "a": {"_count": 1}}, "while": {"_count": 2, "they": {"_count": 1}, "we": {"_count": 1}}, "at": {"_count": 2, "normal": {"_count": 1}, "midnight": {"_count": 1}}, "Krum": {"_count": 1, "land": {"_count": 1}}, "your": {"_count": 4, "mouth": {"_count": 2}, "step": {"_count": 1}, "little": {"_count": 1}}, "a": {"_count": 2, "bit": {"_count": 1}, "glance": {"_count": 1}}, "every": {"_count": 2, "now": {"_count": 1}, "minute": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 1}, "would": {"_count": 1}, "climb": {"_count": 1}}, "Neville": {"_count": 1, "who": {"_count": 1}}, "in": {"_count": 1, "silence": {"_count": 1}}, "their": {"_count": 1, "chess": {"_count": 1}}, "Cho": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "then": {"_count": 1, "remembered": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}, "having": {"_count": 1, "finally": {"_count": 1}}, "over": {"_count": 8, "Harry": {"_count": 1}, "my": {"_count": 2}, "first": {"_count": 1}, "him": {"_count": 1}, "every": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}}, "Dudleys": {"_count": 1, "dilemma": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "yourself": {"_count": 1, "Potter": {"_count": 1}}, "Hermiones": {"_count": 1, "mute": {"_count": 1}}, "wizard": {"_count": 1, "Eric": {"_count": 1}}, "her": {"_count": 2, "said": {"_count": 1}, "running": {"_count": 1}}, "strap": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "now": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "match": {"_count": 1}}, "Fudges": {"_count": 1, "blood": {"_count": 1}}, "phase": {"_count": 1, "one": {"_count": 1}}, "Umbridge": {"_count": 1, "struggle": {"_count": 1}}, "em": {"_count": 1, "kill": {"_count": 1}}, "its": {"_count": 1, "progress": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "how": {"_count": 1, "that": {"_count": 1}}, "Dumbledore": {"_count": 1, "bending": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "outside": {"_count": 2, "itll": {"_count": 1}, "the": {"_count": 1}}, "Snape": {"_count": 1, "too": {"_count": 1}}, "will": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "if": {"_count": 2, "they": {"_count": 1}, "youre": {"_count": 1}}, "very": {"_count": 1, "like": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "neglect": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "reentering": {"_count": 1}}, "them": {"_count": 1, "for": {"_count": 1}}, "Ginnys": {"_count": 1, "dot": {"_count": 1}}, "Slughorn": {"_count": 1, "splutter": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}}, "examined": {"_count": 40, "it": {"_count": 11, "": {"_count": 4}, "carefully": {"_count": 3}, "minutely": {"_count": 1}, "beneath": {"_count": 1}, "closely": {"_count": 1}, "with": {"_count": 1}}, "silver": {"_count": 1, "unicorn": {"_count": 1}}, "the": {"_count": 10, "lock": {"_count": 1}, "signature": {"_count": 1}, "Firebolt": {"_count": 1}, "bodies": {"_count": 1}, "lightningbolt": {"_count": 1}, "Marauders": {"_count": 1}, "jagged": {"_count": 1}, "Deluminator": {"_count": 1}, "picture": {"_count": 1}, "pool": {"_count": 1}}, "every": {"_count": 2, "inch": {"_count": 2}}, "their": {"_count": 1, "new": {"_count": 1}}, "an": {"_count": 1, "odd": {"_count": 1}}, "by": {"_count": 2, "Mr": {"_count": 1}, "the": {"_count": 1}}, "Goyle": {"_count": 1, "whose": {"_count": 1}}, "Harrys": {"_count": 1, "shoulder": {"_count": 1}}, "a": {"_count": 1, "long": {"_count": 1}}, "at": {"_count": 1, "leisure": {"_count": 1}}, "himself": {"_count": 1, "it": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "his": {"_count": 1, "Deluminator": {"_count": 1}}, "like": {"_count": 1, "I": {"_count": 1}}, "its": {"_count": 1, "punctured": {"_count": 1}}, "and": {"_count": 1, "given": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}}, "odd": {"_count": 174, "watch": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "thought": {"_count": 1}}, "thing": {"_count": 4, "that": {"_count": 1}, "was": {"_count": 2}, "is": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "because": {"_count": 1, "he": {"_count": 1}}, "angles": {"_count": 2, "": {"_count": 1}, "where": {"_count": 1}}, "moments": {"_count": 2, "between": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 3, "here": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "question": {"_count": 2, "": {"_count": 2}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "twisted": {"_count": 1, "smile": {"_count": 1}}, "things": {"_count": 6, "happen": {"_count": 1}, "going": {"_count": 1}, "like": {"_count": 1}, "kept": {"_count": 1}, "have": {"_count": 1}, "": {"_count": 1}}, "ferrets": {"_count": 1, "but": {"_count": 1}}, "stuff": {"_count": 1, "I": {"_count": 1}}, "about": {"_count": 3, "Riddles": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "looking": {"_count": 1, "man": {"_count": 1}}, "and": {"_count": 2, "she": {"_count": 1}, "how": {"_count": 1}}, "greenish": {"_count": 1, "gloom": {"_count": 1}}, "red": {"_count": 1, "gleam": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "expression": {"_count": 4, "on": {"_count": 2}, "in": {"_count": 1}, "as": {"_count": 1}}, "gulping": {"_count": 1, "noise": {"_count": 1}}, "was": {"_count": 2, "happening": {"_count": 2}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "place": {"_count": 2, "to": {"_count": 1}, "some": {"_count": 1}}, "closed": {"_count": 1, "expression": {"_count": 1}}, "ringing": {"_count": 1, "in": {"_count": 1}}, "shiver": {"_count": 1, "passed": {"_count": 1}}, "she": {"_count": 1, "told": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "this": {"_count": 1, "would": {"_count": 1}}, "echoing": {"_count": 1, "bang": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}, "rattling": {"_count": 1, "noise": {"_count": 1}}, "places": {"_count": 1, "and": {"_count": 1}}, "clunking": {"_count": 1, "noise": {"_count": 1}}, "sort": {"_count": 2, "of": {"_count": 2}}, "next": {"_count": 1, "to": {"_count": 1}}, "hairstyle": {"_count": 1, "had": {"_count": 1}}, "elf": {"_count": 1, "whod": {"_count": 1}}, "quality": {"_count": 1, "in": {"_count": 1}}, "strained": {"_count": 1, "sort": {"_count": 1}}, "fringe": {"_count": 1, "of": {"_count": 1}}, "objects": {"_count": 1, "that": {"_count": 1}}, "socks": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "a": {"_count": 1, "moment": {"_count": 1}}, "ones": {"_count": 1, "and": {"_count": 1}}, "stuffs": {"_count": 1, "been": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "carrying": {"_count": 1, "the": {"_count": 1}}, "carvings": {"_count": 1, "around": {"_count": 1}}, "dreamy": {"_count": 1, "expression": {"_count": 1}}, "golden": {"_count": 1, "mist": {"_count": 1}}, "moment": {"_count": 1, "": {"_count": 1}}, "laugh": {"_count": 1, "": {"_count": 1}}, "shuddering": {"_count": 1, "gasp": {"_count": 1}}, "to": {"_count": 4, "be": {"_count": 2}, "hear": {"_count": 1}, "order": {"_count": 1}}, "hissing": {"_count": 1, "noises": {"_count": 1}}, "feeling": {"_count": 4, "of": {"_count": 1}, "in": {"_count": 2}, "rose": {"_count": 1}}, "assortment": {"_count": 1, "of": {"_count": 1}}, "creeping": {"_count": 1, "sensation": {"_count": 1}}, "how": {"_count": 1, "widely": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "unsettled": {"_count": 1, "sort": {"_count": 1}}, "sick": {"_count": 1, "empty": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "yelp": {"_count": 1, "that": {"_count": 1}}, "angle": {"_count": 1, "": {"_count": 1}}, "words": {"_count": 1, "spluttered": {"_count": 1}}, "as": {"_count": 2, "seeing": {"_count": 1}, "ever": {"_count": 1}}, "shrieking": {"_count": 1, "cry": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "blue": {"_count": 1, "light": {"_count": 1}}, "taste": {"_count": 1, "in": {"_count": 1}}, "onthespot": {"_count": 1, "jig": {"_count": 1}}, "complaints": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "mechanical": {"_count": 2, "clicking": {"_count": 2}}, "sound": {"_count": 1, "he": {"_count": 1}}, "little": {"_count": 1, "whimpers": {"_count": 1}}, "squelching": {"_count": 1, "noise": {"_count": 1}}, "absence": {"_count": 1, "over": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "crooning": {"_count": 1, "noises": {"_count": 1}}, "way": {"_count": 1, "of": {"_count": 1}}, "chill": {"_count": 1, "that": {"_count": 1}}, "comment": {"_count": 1, "to": {"_count": 1}}, "really": {"_count": 1, "seeing": {"_count": 1}}, "accidents": {"_count": 1, "even": {"_count": 1}}, "formation": {"_count": 1, "of": {"_count": 1}}, "smells": {"_count": 1, "": {"_count": 1}}, "combination": {"_count": 1, "of": {"_count": 1}}, "markings": {"_count": 1, "around": {"_count": 1}}, "device": {"_count": 1, "that": {"_count": 1}}, "decision": {"_count": 1, "to": {"_count": 1}}, "rolling": {"_count": 1, "gait": {"_count": 1}}, "coincidence": {"_count": 1, "helped": {"_count": 1}}, "mixture": {"_count": 1, "of": {"_count": 1}}, "happened": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "other": {"_count": 1}}, "symbols": {"_count": 1, "around": {"_count": 1}}, "the": {"_count": 1, "room": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}, "lopsided": {"_count": 1, "leer": {"_count": 1}}, "case": {"_count": 1, "possibly": {"_count": 1}}, "movement": {"_count": 1, "as": {"_count": 1}}, "stiff": {"_count": 1, "nod": {"_count": 1}}, "like": {"_count": 1, "trying": {"_count": 1}}, "tremulous": {"_count": 1, "look": {"_count": 1}}, "empty": {"_count": 1, "feeling": {"_count": 1}}, "Tonks": {"_count": 1, "beside": {"_count": 1}}, "symbol": {"_count": 1, "rather": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "enough": {"_count": 1, "in": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "shadows": {"_count": 1, "up": {"_count": 1}}, "object": {"_count": 1, "with": {"_count": 1}}, "rustlings": {"_count": 1, "and": {"_count": 1}}, "behavior": {"_count": 1, "to": {"_count": 1}}, "plants": {"_count": 1, "including": {"_count": 1}}, "sensation": {"_count": 1, "that": {"_count": 1}}, "wizard": {"_count": 1, "": {"_count": 1}}, "phenomenon": {"_count": 1, "by": {"_count": 1}}, "smocklike": {"_count": 1, "shirt": {"_count": 1}}, "smock": {"_count": 1, "looked": {"_count": 1}}, "clothes": {"_count": 1, "he": {"_count": 1}}, "clicking": {"_count": 1, "noise": {"_count": 1}}, "thumping": {"_count": 1, "and": {"_count": 1}}, "one": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "twelve": {"_count": 108, "hands": {"_count": 2, "but": {"_count": 1}, "from": {"_count": 1}}, "balls": {"_count": 1, "of": {"_count": 1}}, "letters": {"_count": 1, "arrived": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "uses": {"_count": 4, "of": {"_count": 4}}, "feet": {"_count": 5, "twenty": {"_count": 1}, "long": {"_count": 1}, "before": {"_count": 1}, "onto": {"_count": 1}, "into": {"_count": 1}}, "towering": {"_count": 1, "Christmas": {"_count": 1}}, "of": {"_count": 5, "Malfoy": {"_count": 1}, "you": {"_count": 1}, "us": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "Sorcerers": {"_count": 1, "Stones": {"_count": 1}}, "percent": {"_count": 2, "on": {"_count": 2}}, "points": {"_count": 1, "in": {"_count": 1}}, "minutes": {"_count": 1, "past": {"_count": 1}}, "times": {"_count": 1, "and": {"_count": 1}}, "O": {"_count": 2, "": {"_count": 2}}, "too": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "my": {"_count": 1}}, "signatures": {"_count": 1, "on": {"_count": 1}}, "years": {"_count": 13, "of": {"_count": 1}, "ago": {"_count": 3}, "alone": {"_count": 1}, "in": {"_count": 2}, "that": {"_count": 1}, "": {"_count": 2}, "Im": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 1}}, "dogs": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 4, "ajar": {"_count": 1}, "shrinking": {"_count": 1}, "after": {"_count": 1}, "visible": {"_count": 1}}, "Christmas": {"_count": 4, "trees": {"_count": 4}}, "stood": {"_count": 1, "in": {"_count": 1}}, "inches": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}}, "oclock": {"_count": 1, "the": {"_count": 1}}, "seats": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "hours": {"_count": 6, "for": {"_count": 1}, "and": {"_count": 1}, "luck": {"_count": 1}, "worth": {"_count": 1}, "or": {"_count": 1}, "of": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Grimmauld": {"_count": 18, "Place": {"_count": 18}}, "scrolls": {"_count": 1, "at": {"_count": 1}}, "months": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "which": {"_count": 1, "vanished": {"_count": 1}}, "innocent": {"_count": 1, "Muggles": {"_count": 1}}, "slammed": {"_count": 1, "shut": {"_count": 1}}, "and": {"_count": 3, "to": {"_count": 1}, "at": {"_count": 1}, "they": {"_count": 1}}, "children": {"_count": 1, "": {"_count": 1}}, "Galleons": {"_count": 1, "": {"_count": 1}}, "weeks": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "one": {"_count": 1}}, "for": {"_count": 1, "full": {"_count": 1}}, "secure": {"_count": 1, "houses": {"_count": 1}}, "full": {"_count": 1, "glasses": {"_count": 1}}, "were": {"_count": 1, "never": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "hands": {"_count": 599, "but": {"_count": 3, "no": {"_count": 1}, "hadnt": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 3, "size": {"_count": 1}, "details": {"_count": 1}, "pain": {"_count": 1}}, "together": {"_count": 17, "": {"_count": 5}, "very": {"_count": 1}, "and": {"_count": 7}, "with": {"_count": 1}, "cant": {"_count": 1}, "only": {"_count": 1}, "as": {"_count": 1}}, "now": {"_count": 2, "they": {"_count": 1}, "that": {"_count": 1}}, "bent": {"_count": 1, "it": {"_count": 1}}, "clasped": {"_count": 4, "over": {"_count": 1}, "in": {"_count": 2}, "neatly": {"_count": 1}}, "on": {"_count": 32, "summat": {"_count": 1}, "some": {"_count": 2}, "her": {"_count": 2}, "his": {"_count": 3}, "the": {"_count": 6}, "Scabbers": {"_count": 1}, "Buckbeaks": {"_count": 1}, "Harry": {"_count": 1}, "deck": {"_count": 1}, "MadEye": {"_count": 1}, "either": {"_count": 2}, "you": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 3}, "this": {"_count": 1}, "those": {"_count": 1}, "stout": {"_count": 1}, "hips": {"_count": 1}, "them": {"_count": 1}}, "with": {"_count": 18, "everyone": {"_count": 1}, "Terry": {"_count": 1}, "the": {"_count": 6}, "him": {"_count": 1}, "Dumbledore": {"_count": 1}, "a": {"_count": 2}, "people": {"_count": 1}, "their": {"_count": 1}, "both": {"_count": 2}, "Fred": {"_count": 1}, "Fleur": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "fine": {"_count": 1}}, "": {"_count": 110, ".": {"_count": 108}, "!": {"_count": 2}}, "and": {"_count": 63, "feet": {"_count": 4}, "it": {"_count": 1}, "knees": {"_count": 10}, "bolted": {"_count": 1}, "Mr": {"_count": 2}, "looked": {"_count": 2}, "through": {"_count": 1}, "ran": {"_count": 1}, "ladles": {"_count": 1}, "petrified": {"_count": 1}, "her": {"_count": 1}, "backed": {"_count": 1}, "turned": {"_count": 1}, "lowered": {"_count": 1}, "which": {"_count": 1}, "came": {"_count": 1}, "his": {"_count": 1}, "each": {"_count": 1}, "everyone": {"_count": 1}, "was": {"_count": 2}, "opened": {"_count": 1}, "gills": {"_count": 1}, "faces": {"_count": 2}, "began": {"_count": 1}, "flexed": {"_count": 1}, "the": {"_count": 2}, "tugged": {"_count": 1}, "waved": {"_count": 1}, "scuttled": {"_count": 1}, "hit": {"_count": 1}, "surveyed": {"_count": 2}, "read": {"_count": 1}, "pulled": {"_count": 1}, "shooting": {"_count": 1}, "soared": {"_count": 1}, "said": {"_count": 1}, "forearms": {"_count": 1}, "ladled": {"_count": 1}, "Harry": {"_count": 1}, "Disapparated": {"_count": 1}, "something": {"_count": 1}, "he": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}}, "though": {"_count": 2, "I": {"_count": 1}, "this": {"_count": 1}}, "smoother": {"_count": 1, "than": {"_count": 1}}, "to": {"_count": 18, "his": {"_count": 2}, "her": {"_count": 4}, "shield": {"_count": 2}, "their": {"_count": 1}, "stop": {"_count": 1}, "perform": {"_count": 1}, "Dumbledore": {"_count": 1}, "one": {"_count": 1}, "propel": {"_count": 1}, "look": {"_count": 1}, "show": {"_count": 1}, "try": {"_count": 1}, "shoulder": {"_count": 1}}, "pressed": {"_count": 2, "flat": {"_count": 1}, "over": {"_count": 1}}, "once": {"_count": 2, "and": {"_count": 1}, "more": {"_count": 1}}, "around": {"_count": 2, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "my": {"_count": 1, "hands": {"_count": 1}}, "over": {"_count": 25, "his": {"_count": 13}, "her": {"_count": 8}, "the": {"_count": 2}, "their": {"_count": 2}}, "were": {"_count": 29, "slapping": {"_count": 1}, "twisting": {"_count": 2}, "stuck": {"_count": 1}, "pressed": {"_count": 1}, "encrusted": {"_count": 1}, "freezing": {"_count": 1}, "shaking": {"_count": 4}, "numb": {"_count": 2}, "currently": {"_count": 1}, "clenched": {"_count": 2}, "very": {"_count": 1}, "like": {"_count": 1}, "balled": {"_count": 1}, "growing": {"_count": 1}, "trembling": {"_count": 1}, "once": {"_count": 1}, "whose": {"_count": 1}, "whole": {"_count": 1}, "emerging": {"_count": 1}, "folded": {"_count": 1}, "sweating": {"_count": 1}, "both": {"_count": 1}, "seizing": {"_count": 1}}, "gave": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "which": {"_count": 6, "they": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 3}, "began": {"_count": 1}}, "afterward": {"_count": 1, "he": {"_count": 1}}, "whereas": {"_count": 1, "Snape": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "trembling": {"_count": 2, "slightly": {"_count": 1}, "to": {"_count": 1}}, "Hurry": {"_count": 1, "up": {"_count": 1}}, "outstretched": {"_count": 6, "feeling": {"_count": 1}, "": {"_count": 2}, "it": {"_count": 1}, "toward": {"_count": 1}, "his": {"_count": 1}}, "The": {"_count": 2, "basilisk": {"_count": 1}, "point": {"_count": 1}}, "flooding": {"_count": 1, "the": {"_count": 1}}, "clench": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 1}, "can": {"_count": 1}}, "of": {"_count": 6, "his": {"_count": 1}, "Hagrid": {"_count": 1}, "Lord": {"_count": 1}, "one": {"_count": 2}, "which": {"_count": 1}}, "shook": {"_count": 6, "and": {"_count": 1}, "as": {"_count": 1}, "so": {"_count": 1}, "slightly": {"_count": 2}, "": {"_count": 1}}, "whereabouts": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 4, "a": {"_count": 4}}, "his": {"_count": 3, "wide": {"_count": 1}, "brain": {"_count": 1}, "head": {"_count": 1}}, "off": {"_count": 8, "": {"_count": 1}, "his": {"_count": 2}, "him": {"_count": 1}, "it": {"_count": 1}, "me": {"_count": 2}, "This": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "itching": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 12, "they": {"_count": 1}, "though": {"_count": 3}, "he": {"_count": 3}, "she": {"_count": 2}, "the": {"_count": 2}, "heavy": {"_count": 1}}, "Diggory": {"_count": 1, "smiled": {"_count": 1}}, "slipped": {"_count": 1, "on": {"_count": 1}}, "gripping": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "inviting": {"_count": 1, "Harry": {"_count": 1}}, "before": {"_count": 2, "takeoff": {"_count": 1}, "going": {"_count": 1}}, "Madam": {"_count": 1, "Hooch": {"_count": 1}}, "slipping": {"_count": 1, "on": {"_count": 1}}, "clean": {"_count": 1, "on": {"_count": 1}}, "Alicia": {"_count": 1, "seized": {"_count": 1}}, "thinking": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "fighting": {"_count": 1, "back": {"_count": 1}}, "held": {"_count": 2, "tight": {"_count": 1}, "fast": {"_count": 1}}, "high": {"_count": 1, "in": {"_count": 1}}, "grabbed": {"_count": 1, "him": {"_count": 1}}, "fastened": {"_count": 1, "over": {"_count": 1}}, "clutching": {"_count": 5, "his": {"_count": 1}, "a": {"_count": 1}, "either": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "suddenly": {"_count": 1, "attached": {"_count": 1}}, "blocking": {"_count": 1, "out": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "beneath": {"_count": 1, "him": {"_count": 1}}, "tighten": {"_count": 2, "still": {"_count": 1}, "momentarily": {"_count": 1}}, "very": {"_count": 1, "slightly": {"_count": 1}}, "in": {"_count": 10, "his": {"_count": 5}, "the": {"_count": 4}, "front": {"_count": 1}}, "rose": {"_count": 1, "tentatively": {"_count": 1}}, "carelessly": {"_count": 1, "behind": {"_count": 1}}, "behind": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "nearly": {"_count": 1, "gored": {"_count": 1}}, "placed": {"_count": 1, "one": {"_count": 1}}, "he": {"_count": 4, "located": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}, "grasped": {"_count": 1}}, "Come": {"_count": 1, "seek": {"_count": 1}}, "still": {"_count": 6, "outstretched": {"_count": 1}, "tight": {"_count": 2}, "held": {"_count": 1}, "raised": {"_count": 1}, "covered": {"_count": 1}}, "incriminated": {"_count": 1, "not": {"_count": 1}}, "seized": {"_count": 2, "him": {"_count": 2}}, "Witch": {"_count": 1, "Weekly": {"_count": 1}}, "pushing": {"_count": 1, "in": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "clamped": {"_count": 1, "over": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "theres": {"_count": 1, "got": {"_count": 1}}, "reached": {"_count": 1, "through": {"_count": 1}}, "could": {"_count": 2, "resume": {"_count": 1}, "have": {"_count": 1}}, "had": {"_count": 3, "curled": {"_count": 1}, "been": {"_count": 1}, "long": {"_count": 1}}, "flying": {"_count": 1, "over": {"_count": 1}}, "slid": {"_count": 1, "from": {"_count": 1}}, "prizing": {"_count": 1, "them": {"_count": 1}}, "found": {"_count": 1, "Dudleys": {"_count": 1}}, "clumsy": {"_count": 1, "with": {"_count": 1}}, "too": {"_count": 2, "bore": {"_count": 1}, "": {"_count": 1}}, "are": {"_count": 2, "filthy": {"_count": 1}, "shaking": {"_count": 1}}, "deep": {"_count": 3, "in": {"_count": 3}}, "all": {"_count": 3, "round": {"_count": 2}, "the": {"_count": 1}}, "was": {"_count": 2, "clenched": {"_count": 1}, "now": {"_count": 1}}, "welcome": {"_count": 1, "back": {"_count": 1}}, "this": {"_count": 1, "subject": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "up": {"_count": 3, "too": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}}, "splayed": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 1, "their": {"_count": 1}}, "forming": {"_count": 1, "fists": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "pressing": {"_count": 1, "down": {"_count": 1}}, "even": {"_count": 1, "Zacharias": {"_count": 1}}, "ordered": {"_count": 1, "the": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "whether": {"_count": 1, "awake": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "You": {"_count": 1, "were": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "still": {"_count": 1}}, "hard": {"_count": 1, "over": {"_count": 1}}, "full": {"_count": 2, "of": {"_count": 2}}, "apparently": {"_count": 1, "poised": {"_count": 1}}, "shaking": {"_count": 3, "": {"_count": 2}, "so": {"_count": 1}}, "desperate": {"_count": 1, "to": {"_count": 1}}, "agitatedly": {"_count": 1, "": {"_count": 1}}, "enthusiastically": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 1}, "murder": {"_count": 1}, "Hermione": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "while": {"_count": 1, "all": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 2}}, "well": {"_count": 1, "he": {"_count": 1}}, "more": {"_count": 1, "tightly": {"_count": 1}}, "flew": {"_count": 1, "to": {"_count": 1}}, "swooped": {"_count": 1, "down": {"_count": 1}}, "breaking": {"_count": 1, "off": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "curled": {"_count": 3, "in": {"_count": 2}, "into": {"_count": 1}}, "upon": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "wide": {"_count": 1, "as": {"_count": 1}}, "each": {"_count": 1, "inscribed": {"_count": 1}}, "hysterically": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "thin": {"_count": 1}, "his": {"_count": 1}}, "perhaps": {"_count": 2, "he": {"_count": 1}, "in": {"_count": 1}}, "closed": {"_count": 2, "around": {"_count": 1}, "convulsively": {"_count": 1}}, "fly": {"_count": 1, "off": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "lay": {"_count": 1}, "lifted": {"_count": 1}}, "finally": {"_count": 1, "pulling": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "scrabbling": {"_count": 1, "at": {"_count": 1}}, "pulled": {"_count": 1, "him": {"_count": 1}}, "clawing": {"_count": 1, "at": {"_count": 1}}, "Mr": {"_count": 1, "and": {"_count": 1}}, "jerked": {"_count": 1, "upward": {"_count": 1}}, "sank": {"_count": 1, "into": {"_count": 1}}, "then": {"_count": 1, "feeling": {"_count": 1}}, "tied": {"_count": 1, "behind": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "dead": {"_count": 1, "hands": {"_count": 1}}, "came": {"_count": 1, "out": {"_count": 1}}, "leapt": {"_count": 1, "to": {"_count": 1}}, "washed": {"_count": 1, "before": {"_count": 1}}, "a": {"_count": 1, "tent": {"_count": 1}}, "looking": {"_count": 1, "a": {"_count": 1}}, "shadowing": {"_count": 1, "their": {"_count": 1}}, "half": {"_count": 1, "expecting": {"_count": 1}}, "dragged": {"_count": 1, "Harry": {"_count": 1}}, "away": {"_count": 1, "in": {"_count": 1}}, "covering": {"_count": 1, "his": {"_count": 1}}, "impervious": {"_count": 1, "to": {"_count": 1}}, "soon": {"_count": 1, "too": {"_count": 1}}, "linked": {"_count": 1, "in": {"_count": 1}}, "regrow": {"_count": 1, "we": {"_count": 1}}, "shaken": {"_count": 1, "by": {"_count": 1}}, "He": {"_count": 1, "looked": {"_count": 1}}, "folded": {"_count": 1, "over": {"_count": 1}}, "saw": {"_count": 1, "Walden": {"_count": 1}}, "empty": {"_count": 1, "the": {"_count": 1}}, "witness": {"_count": 1, "their": {"_count": 1}}, "they": {"_count": 1, "danced": {"_count": 1}}}, "numbers": {"_count": 15, "instead": {"_count": 1, "little": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "his": {"_count": 1}}, "on": {"_count": 2, "Muggle": {"_count": 1}, "his": {"_count": 1}}, "making": {"_count": 1, "difficulties": {"_count": 1}}, "refer": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 2, "stranded": {"_count": 1}, "nameless": {"_count": 1}}, "eleven": {"_count": 2, "and": {"_count": 2}}, "will": {"_count": 1, "change": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "overcome": {"_count": 1, "by": {"_count": 1}}}, "planets": {"_count": 12, "were": {"_count": 1, "moving": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "not": {"_count": 1, "let": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "say": {"_count": 1, "is": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 2}, "their": {"_count": 1}}, "at": {"_count": 1, "their": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "moving": {"_count": 249, "around": {"_count": 19, "the": {"_count": 5}, "and": {"_count": 2}, "it": {"_count": 2}, "him": {"_count": 1}, "them": {"_count": 1}, "inside": {"_count": 2}, "in": {"_count": 2}, "Ron": {"_count": 1}, "her": {"_count": 1}, "nearby": {"_count": 1}, "trying": {"_count": 1}}, "toward": {"_count": 11, "them": {"_count": 3}, "Harry": {"_count": 1}, "the": {"_count": 6}, "Dumbledore": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "there": {"_count": 1}}, "inside": {"_count": 1, "a": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 16, "!": {"_count": 1}, ".": {"_count": 15}}, "his": {"_count": 8, "lips": {"_count": 5}, "prefects": {"_count": 1}, "free": {"_count": 1}, "wand": {"_count": 1}}, "the": {"_count": 3, "wizard": {"_count": 1}, "man": {"_count": 1}, "tip": {"_count": 1}}, "back": {"_count": 3, "to": {"_count": 1}, "into": {"_count": 1}, "toward": {"_count": 1}}, "along": {"_count": 7, "the": {"_count": 4}, "a": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 1}}, "blackandwhite": {"_count": 2, "Lockhart": {"_count": 1}, "photographs": {"_count": 1}}, "a": {"_count": 5, "halfplucked": {"_count": 1}, "great": {"_count": 1}, "little": {"_count": 1}, "muscle": {"_count": 1}, "candle": {"_count": 1}}, "faces": {"_count": 1, "of": {"_count": 1}}, "away": {"_count": 6, "moving": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 3}, "to": {"_count": 1}}, "upward": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "Millicent": {"_count": 1, "had": {"_count": 1}}, "smoothly": {"_count": 1, "upward": {"_count": 1}}, "spiral": {"_count": 5, "staircase": {"_count": 4}, "stone": {"_count": 1}}, "quickly": {"_count": 3, "headed": {"_count": 1}, "along": {"_count": 1}, "through": {"_count": 1}}, "yet": {"_count": 1, "closer": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Hermione": {"_count": 1}}, "in": {"_count": 12, "an": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 3}, "front": {"_count": 1}, "them": {"_count": 1}, "and": {"_count": 1}}, "over": {"_count": 4, "there": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "closer": {"_count": 5, "his": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "overhead": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "face": {"_count": 1}}, "photograph": {"_count": 2, "and": {"_count": 1}, "yellowed": {"_count": 1}}, "model": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "from": {"_count": 2, "face": {"_count": 1}, "fireplace": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "": {"_count": 2}}, "swiftly": {"_count": 1, "away": {"_count": 1}}, "stealthily": {"_count": 1, "across": {"_count": 1}}, "downstairs": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}, "fast": {"_count": 1, "toward": {"_count": 1}}, "clouds": {"_count": 1, "reflected": {"_count": 1}}, "and": {"_count": 5, "listened": {"_count": 1}, "Harry": {"_count": 1}, "changing": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 4, "all": {"_count": 1}, "the": {"_count": 2}, "in": {"_count": 1}}, "so": {"_count": 5, "fast": {"_count": 4}, "slowly": {"_count": 1}}, "across": {"_count": 5, "the": {"_count": 3}, "to": {"_count": 2}}, "together": {"_count": 1, "with": {"_count": 1}}, "this": {"_count": 1, "way": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "one": {"_count": 1, "by": {"_count": 1}}, "ceaselessly": {"_count": 2, "without": {"_count": 1}, "the": {"_count": 1}}, "steadily": {"_count": 1, "down": {"_count": 1}}, "without": {"_count": 1, "squeaking": {"_count": 1}}, "everything": {"_count": 1, "was": {"_count": 1}}, "watching": {"_count": 1, "Harry": {"_count": 1}}, "munching": {"_count": 1, "their": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "such": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "aside": {"_count": 1, "slightly": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "picture": {"_count": 1, "on": {"_count": 1}}, "staircase": {"_count": 1, "and": {"_count": 1}}, "forward": {"_count": 4, "": {"_count": 2}, "to": {"_count": 2}}, "beyond": {"_count": 2, "the": {"_count": 1}, "usual": {"_count": 1}}, "stickman": {"_count": 1, "soon": {"_count": 1}}, "your": {"_count": 1, "wand": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "dots": {"_count": 1, "labeled": {"_count": 1}}, "slowly": {"_count": 4, "and": {"_count": 1}, "up": {"_count": 1}, "toward": {"_count": 1}, "possibly": {"_count": 1}}, "gingerly": {"_count": 1, "which": {"_count": 1}}, "continuously": {"_count": 1, "upward": {"_count": 1}}, "stairs": {"_count": 1, "the": {"_count": 1}}, "color": {"_count": 1, "illustrations": {"_count": 1}}, "slightly": {"_count": 1, "to": {"_count": 1}}, "stone": {"_count": 1, "staircase": {"_count": 1}}, "between": {"_count": 2, "the": {"_count": 2}}, "except": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "soundlessly": {"_count": 3, "Seamus": {"_count": 1}, "undoubtedly": {"_count": 1}, "": {"_count": 1}}, "pictures": {"_count": 1, "in": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "people": {"_count": 1, "out": {"_count": 1}}, "restlessly": {"_count": 1, "on": {"_count": 1}}, "rapidly": {"_count": 1, "": {"_count": 1}}, "images": {"_count": 1, "flew": {"_count": 1}}, "occupants": {"_count": 1, "": {"_count": 1}}, "intently": {"_count": 1, "about": {"_count": 1}}, "through": {"_count": 3, "boyfriends": {"_count": 1}, "the": {"_count": 2}}, "with": {"_count": 2, "deliberation": {"_count": 1}, "them": {"_count": 1}}, "stars": {"_count": 1, "instead": {"_count": 1}}, "carefully": {"_count": 1, "around": {"_count": 1}}, "half": {"_count": 1, "as": {"_count": 1}}, "very": {"_count": 1, "slowly": {"_count": 1}}, "deeper": {"_count": 1, "into": {"_count": 1}}, "you": {"_count": 1, "tonight": {"_count": 1}}, "flares": {"_count": 1, "of": {"_count": 1}}, "tonight": {"_count": 1, "said": {"_count": 1}}, "target": {"_count": 1, "from": {"_count": 1}}, "Arry": {"_count": 1, "tonight": {"_count": 1}}, "against": {"_count": 1, "Muggleborns": {"_count": 1}}, "It": {"_count": 1, "gazed": {"_count": 1}}, "him": {"_count": 1, "was": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "inexorably": {"_count": 1, "toward": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "gradually": {"_count": 1, "closer": {"_count": 1}}, "statues": {"_count": 1, "stampeded": {"_count": 1}}, "not": {"_count": 1, "far": {"_count": 1}}, "sideways": {"_count": 1, "both": {"_count": 1}}}, "Hagrids": {"_count": 228, "late": {"_count": 1, "": {"_count": 1}}, "bringing": {"_count": 1, "him": {"_count": 1}}, "shoulders": {"_count": 1, "shook": {"_count": 1}}, "face": {"_count": 5, "": {"_count": 1}, "was": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 2}}, "story": {"_count": 2, "came": {"_count": 1}, "": {"_count": 1}}, "big": {"_count": 1, "hairy": {"_count": 1}}, "lamp": {"_count": 1, "coming": {"_count": 1}}, "note": {"_count": 2, "something": {"_count": 1}, "was": {"_count": 1}}, "assistant": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 1, "": {"_count": 1}}, "jacket": {"_count": 1, "for": {"_count": 1}}, "hut": {"_count": 11, "with": {"_count": 1}, "helping": {"_count": 1}, "": {"_count": 3}, "swathed": {"_count": 1}, "on": {"_count": 1}, "they": {"_count": 1}, "clearly": {"_count": 1}, "is": {"_count": 1}, "loomed": {"_count": 1}}, "must": {"_count": 1, "seem": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "return": {"_count": 1, "": {"_count": 1}}, "flute": {"_count": 1, "to": {"_count": 1}}, "grip": {"_count": 1, "he": {"_count": 1}}, "waist": {"_count": 1, "and": {"_count": 1}}, "its": {"_count": 1, "nearest": {"_count": 1}}, "house": {"_count": 10, "when": {"_count": 1}, "sad": {"_count": 1}, "tail": {"_count": 1}, "": {"_count": 3}, "they": {"_count": 1}, "where": {"_count": 1}, "letters": {"_count": 1}, "was": {"_count": 1}}, "front": {"_count": 7, "door": {"_count": 6}, "garden": {"_count": 1}}, "treacle": {"_count": 1, "toffee": {"_count": 1}}, "flowery": {"_count": 1, "pink": {"_count": 1}}, "old": {"_count": 1, "school": {"_count": 1}}, "pumpkins": {"_count": 1, "swelled": {"_count": 1}}, "vast": {"_count": 1, "pumpkins": {"_count": 1}}, "records": {"_count": 1, "against": {"_count": 1}}, "hint": {"_count": 1, "about": {"_count": 1}}, "table": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "trouble": {"_count": 1}}, "been": {"_count": 2, "setting": {"_count": 1}, "in": {"_count": 1}}, "cabin": {"_count": 31, "to": {"_count": 1}, "looked": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 14}, "on": {"_count": 2}, "comprised": {"_count": 1}, "while": {"_count": 1}, "would": {"_count": 1}, "however": {"_count": 1}, "by": {"_count": 1}, "if": {"_count": 1}, "through": {"_count": 1}, "yet": {"_count": 1}, "door": {"_count": 1}}, "problem": {"_count": 1, "": {"_count": 1}}, "roosters": {"_count": 1, "were": {"_count": 1}}, "my": {"_count": 1, "friend": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "card": {"_count": 2, "": {"_count": 1}, "up": {"_count": 1}}, "window": {"_count": 3, "Harry": {"_count": 1}, "staring": {"_count": 1}, "to": {"_count": 1}}, "lap": {"_count": 1, "": {"_count": 1}}, "weight": {"_count": 1, "was": {"_count": 1}}, "sobs": {"_count": 1, "redoubled": {"_count": 1}}, "usual": {"_count": 1, "standards": {"_count": 1}}, "massive": {"_count": 2, "forearm": {"_count": 1}, "fist": {"_count": 1}}, "though": {"_count": 1, "far": {"_count": 1}}, "patchwork": {"_count": 1, "quilt": {"_count": 1}}, "wardrobe": {"_count": 1, "door": {"_count": 1}}, "cooking": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "pillow": {"_count": 1, "": {"_count": 1}}, "trouble": {"_count": 1, "with": {"_count": 1}}, "just": {"_count": 3, "sent": {"_count": 1}, "shown": {"_count": 1}, "before": {"_count": 1}}, "pumpkin": {"_count": 2, "patch": {"_count": 2}}, "garden": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "": {"_count": 10, "!": {"_count": 2}, ".": {"_count": 8}}, "three": {"_count": 1, "hours": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "back": {"_count": 4, "door": {"_count": 3}, "": {"_count": 1}}, "door": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}}, "moleskin": {"_count": 1, "overcoat": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "odd": {"_count": 1, "hairstyle": {"_count": 1}}, "real": {"_count": 1, "intention": {"_count": 1}}, "beetleblack": {"_count": 1, "eyes": {"_count": 1}}, "words": {"_count": 1, "": {"_count": 1}}, "wild": {"_count": 1, "black": {"_count": 1}}, "next": {"_count": 1, "words": {"_count": 1}}, "deep": {"_count": 1, "voice": {"_count": 1}}, "crinkled": {"_count": 1, "black": {"_count": 1}}, "shoulder": {"_count": 2, "": {"_count": 1}, "looking": {"_count": 1}}, "whiskery": {"_count": 1, "face": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "crestfallen": {"_count": 1, "disbelieving": {"_count": 1}}, "chimney": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "advice": {"_count": 1, "and": {"_count": 1}}, "mum": {"_count": 1, "": {"_count": 1}}, "BlastEnded": {"_count": 1, "Skrewts": {"_count": 1}}, "chest": {"_count": 1, "swelled": {"_count": 1}}, "size": {"_count": 1, "made": {"_count": 1}}, "absence": {"_count": 1, "": {"_count": 1}}, "fine": {"_count": 2, "": {"_count": 1}, "son": {"_count": 1}}, "tough": {"_count": 1, "hell": {"_count": 1}}, "very": {"_count": 1, "extended": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}, "voice": {"_count": 1, "was": {"_count": 1}}, "head": {"_count": 1, "appeared": {"_count": 1}}, "hair": {"_count": 1, "was": {"_count": 1}}, "fingers": {"_count": 1, "slipped": {"_count": 1}}, "unobscured": {"_count": 2, "eye": {"_count": 2}}, "bloodstained": {"_count": 1, "face": {"_count": 1}}, "babbling": {"_count": 1, "": {"_count": 1}}, "discolored": {"_count": 1, "and": {"_count": 1}}, "reappearance": {"_count": 1, "at": {"_count": 1}}, "enormous": {"_count": 2, "hand": {"_count": 1}, "bearded": {"_count": 1}}, "on": {"_count": 1, "Tuesday": {"_count": 1}}, "some": {"_count": 1, "kind": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "nose": {"_count": 1, "was": {"_count": 1}}, "row": {"_count": 1, "were": {"_count": 1}}, "fruitless": {"_count": 1, "attempts": {"_count": 1}}, "totally": {"_count": 1, "pointless": {"_count": 1}}, "windows": {"_count": 1, "and": {"_count": 1}}, "little": {"_count": 1, "brother": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "elbow": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "other": {"_count": 1, "side": {"_count": 1}}, "halfbrother": {"_count": 1, "a": {"_count": 1}}, "eye": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 1, "past": {"_count": 1}}, "and": {"_count": 1, "Filchs": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "mug": {"_count": 1, "and": {"_count": 1}}, "heavy": {"_count": 1, "snores": {"_count": 1}}, "rumbling": {"_count": 1, "snores": {"_count": 1}}, "immense": {"_count": 1, "strength": {"_count": 1}}, "yells": {"_count": 1, "and": {"_count": 1}}, "huge": {"_count": 1, "hairy": {"_count": 1}}, "cheek": {"_count": 1, "from": {"_count": 1}}, "hand": {"_count": 1, "on": {"_count": 1}}, "arms": {"_count": 1, "": {"_count": 1}}, "chair": {"_count": 1, "was": {"_count": 1}}, "eyes": {"_count": 1, "were": {"_count": 1}}, "motorbike": {"_count": 1, "": {"_count": 1}}, "legs": {"_count": 1, "and": {"_count": 1}}, "mokeskin": {"_count": 1, "purse": {"_count": 1}}, "purse": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 1, "an": {"_count": 1}}, "pouch": {"_count": 3, "around": {"_count": 1}, "back": {"_count": 1}, "from": {"_count": 1}}, "spirit": {"_count": 1, "we": {"_count": 1}}, "lead": {"_count": 1, "": {"_count": 1}}, "unexpected": {"_count": 1, "bellow": {"_count": 1}}, "yell": {"_count": 1, "came": {"_count": 1}}, "invited": {"_count": 1, "you": {"_count": 1}}}, "late": {"_count": 155, "": {"_count": 30, ".": {"_count": 27}, "!": {"_count": 1}, "?": {"_count": 2}}, "that": {"_count": 7, "afternoon": {"_count": 2}, "the": {"_count": 1}, "evening": {"_count": 1}, "he": {"_count": 1}, "Professor": {"_count": 1}, "night": {"_count": 1}}, "and": {"_count": 6, "weve": {"_count": 1}, "tempers": {"_count": 1}, "if": {"_count": 1}, "I": {"_count": 2}, "sure": {"_count": 1}}, "they": {"_count": 1, "plunged": {"_count": 1}}, "afternoon": {"_count": 6, "sun": {"_count": 2}, "sunshine": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}, "when": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "for": {"_count": 12, "class": {"_count": 1}, "your": {"_count": 2}, "Defense": {"_count": 1}, "Sirius": {"_count": 1}, "Binns": {"_count": 1}, "the": {"_count": 2}, "Dumbledore": {"_count": 2}, "Transfiguration": {"_count": 1}, "that": {"_count": 1}}, "maybe": {"_count": 1, "hes": {"_count": 1}}, "to": {"_count": 3, "change": {"_count": 1}, "repair": {"_count": 1}, "save": {"_count": 1}}, "arriving": {"_count": 1, "at": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "CRUNCH": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "one": {"_count": 2, "stormy": {"_count": 1}, "night": {"_count": 1}}, "was": {"_count": 2, "lying": {"_count": 1}, "a": {"_count": 1}}, "lamented": {"_count": 1, "lords": {"_count": 1}}, "Harry": {"_count": 6, "and": {"_count": 1}, "thought": {"_count": 1}, "We": {"_count": 1}, "": {"_count": 2}, "half": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "Lockhart": {"_count": 1, "was": {"_count": 1}}, "Molly": {"_count": 1, "wed": {"_count": 1}}, "Crookshanks": {"_count": 1, "leapt": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "on": {"_count": 5, "Thursday": {"_count": 1}, "Boxing": {"_count": 1}, "Sunday": {"_count": 2}, "a": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "boys": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 5, "rat": {"_count": 1}, "dog": {"_count": 1}, "bells": {"_count": 1}, "egg": {"_count": 1}, "envelope": {"_count": 1}}, "Sirius": {"_count": 1, "will": {"_count": 1}}, "you": {"_count": 1, "understand": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "realizing": {"_count": 1}}, "he": {"_count": 3, "wont": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 8, "the": {"_count": 1}, "George": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 2}, "Hermione": {"_count": 1}, "Yaxley": {"_count": 1}}, "at": {"_count": 3, "night": {"_count": 3}}, "teens": {"_count": 2, "had": {"_count": 1}, "who": {"_count": 1}}, "its": {"_count": 2, "gone": {"_count": 2}}, "Dobby": {"_count": 1, "Harry": {"_count": 1}}, "father": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 1, "Potter": {"_count": 1}}, "Im": {"_count": 1, "covering": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "again": {"_count": 1, "she": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "return": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 3, "thanks": {"_count": 1}, "now": {"_count": 1}, "you": {"_count": 1}}, "last": {"_count": 4, "night": {"_count": 4}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "Umbridge": {"_count": 1, "pointed": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "MetamorphMedals": {"_count": 1, "": {"_count": 1}}, "There": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "WonWon": {"_count": 1, "": {"_count": 1}}, "thisll": {"_count": 1, "mean": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "pleasure": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "Mr": {"_count": 1, "Magical": {"_count": 1}}, "Stupefyl": {"_count": 1, "Yaxley": {"_count": 1}}, "hour": {"_count": 1, "": {"_count": 1}}}, "Id": {"_count": 375, "be": {"_count": 24, "here": {"_count": 1}, "seeing": {"_count": 1}, "careful": {"_count": 1}, "dead": {"_count": 2}, "glad": {"_count": 2}, "meeting": {"_count": 1}, "expelled": {"_count": 1}, "out": {"_count": 1}, "happier": {"_count": 1}, "worried": {"_count": 1}, "very": {"_count": 1}, "a": {"_count": 1}, "kicked": {"_count": 1}, "furious": {"_count": 1}, "stuck": {"_count": 1}, "more": {"_count": 1}, "fit": {"_count": 1}, "able": {"_count": 1}, "annoyed": {"_count": 1}, "ever": {"_count": 1}, "pretty": {"_count": 1}, "quite": {"_count": 1}}, "best": {"_count": 1, "get": {"_count": 1}}, "not": {"_count": 1, "say": {"_count": 1}}, "say": {"_count": 14, "once": {"_count": 1}, "": {"_count": 2}, "hed": {"_count": 1}, "I": {"_count": 1}, "itd": {"_count": 1}, "Through": {"_count": 1}, "shed": {"_count": 1}, "Transfigure": {"_count": 1}, "hello": {"_count": 1}, "she": {"_count": 1}, "youre": {"_count": 1}, "that": {"_count": 1}, "Ill": {"_count": 1}}, "like": {"_count": 35, "ter": {"_count": 2}, "a": {"_count": 5}, "to": {"_count": 19}, "this": {"_count": 1}, "you": {"_count": 4}, "Dont": {"_count": 1}, "something": {"_count": 1}, "that": {"_count": 1}, "nothing": {"_count": 1}}, "leave": {"_count": 6, "wouldnt": {"_count": 2}, "a": {"_count": 1}, "that": {"_count": 1}, "righ": {"_count": 1}, "Dumbledore": {"_count": 1}}, "known": {"_count": 2, "what": {"_count": 1}, "that": {"_count": 1}}, "had": {"_count": 6, "three": {"_count": 1}, "me": {"_count": 1}, "enough": {"_count": 2}, "a": {"_count": 1}, "this": {"_count": 1}}, "have": {"_count": 41, "thought": {"_count": 8}, "found": {"_count": 1}, "got": {"_count": 1}, "managed": {"_count": 1}, "died": {"_count": 1}, "done": {"_count": 2}, "chosen": {"_count": 1}, "said": {"_count": 3}, "told": {"_count": 1}, "known": {"_count": 2}, "seen": {"_count": 1}, "welcomed": {"_count": 1}, "minded": {"_count": 1}, "been": {"_count": 2}, "felt": {"_count": 1}, "stopped": {"_count": 1}, "to": {"_count": 6}, "liked": {"_count": 1}, "noticed": {"_count": 1}, "that": {"_count": 1}, "expected": {"_count": 1}, "time": {"_count": 1}, "looked": {"_count": 1}, "stayed": {"_count": 1}}, "brought": {"_count": 1, "a": {"_count": 1}}, "lose": {"_count": 1, "it": {"_count": 1}}, "take": {"_count": 6, "you": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "him": {"_count": 1}, "tips": {"_count": 1}, "it": {"_count": 1}}, "bet": {"_count": 3, "my": {"_count": 2}, "everything": {"_count": 1}}, "give": {"_count": 1, "anuthinq": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "always": {"_count": 1, "really": {"_count": 1}}, "better": {"_count": 35, "go": {"_count": 11}, "do": {"_count": 1}, "teach": {"_count": 1}, "get": {"_count": 7}, "be": {"_count": 3}, "kick": {"_count": 1}, "put": {"_count": 1}, "hurry": {"_count": 2}, "change": {"_count": 1}, "not": {"_count": 1}, "stay": {"_count": 1}, "fill": {"_count": 1}, "pass": {"_count": 1}, "said": {"_count": 1}, "take": {"_count": 1}, "run": {"_count": 1}}, "got": {"_count": 5, "": {"_count": 1}, "ter": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}}, "love": {"_count": 10, "to": {"_count": 5}, "Harry": {"_count": 1}, "yeh": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "some": {"_count": 1}}, "been": {"_count": 6, "cornered": {"_count": 1}, "a": {"_count": 1}, "doing": {"_count": 1}, "possessed": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 1}}, "never": {"_count": 12, "read": {"_count": 1}, "have": {"_count": 6}, "sell": {"_count": 1}, "be": {"_count": 1}, "ever": {"_count": 1}, "help": {"_count": 1}, "seen": {"_count": 1}}, "swap": {"_count": 1, "anytime": {"_count": 1}}, "apply": {"_count": 1, "but": {"_count": 1}}, "see": {"_count": 1, "the": {"_count": 1}}, "sprouted": {"_count": 1, "whiskers": {"_count": 1}}, "still": {"_count": 2, "be": {"_count": 1}, "rather": {"_count": 1}}, "much": {"_count": 4, "rather": {"_count": 4}}, "recommend": {"_count": 1, "Divination": {"_count": 1}}, "light": {"_count": 1, "mine": {"_count": 1}}, "just": {"_count": 5, "rather": {"_count": 1}, "been": {"_count": 1}, "started": {"_count": 1}, "invite": {"_count": 1}, "like": {"_count": 1}}, "done": {"_count": 5, "all": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "if": {"_count": 1}, "but": {"_count": 1}}, "hidden": {"_count": 1, "because": {"_count": 1}}, "spent": {"_count": 1, "searching": {"_count": 1}}, "Id": {"_count": 2, "have": {"_count": 1}, "think": {"_count": 1}}, "write": {"_count": 1, "if": {"_count": 1}}, "blow": {"_count": 1, "meself": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "hate": {"_count": 1, "to": {"_count": 1}}, "want": {"_count": 6, "revenge": {"_count": 2}, "to": {"_count": 2}, "him": {"_count": 1}, "some": {"_count": 1}}, "hunt": {"_count": 2, "him": {"_count": 2}}, "meet": {"_count": 3, "a": {"_count": 1}, "Dean": {"_count": 2}}, "given": {"_count": 1, "Harry": {"_count": 1}}, "finished": {"_count": 2, "with": {"_count": 2}}, "jus": {"_count": 1, "die": {"_count": 1}}, "said": {"_count": 1, "something": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "failed": {"_count": 1, "everything": {"_count": 1}}, "betrayed": {"_count": 2, "his": {"_count": 1}, "Lily": {"_count": 1}}, "led": {"_count": 1, "others": {"_count": 1}}, "guess": {"_count": 1, "hes": {"_count": 1}}, "arranged": {"_count": 1, "to": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "think": {"_count": 2, "Id": {"_count": 1}, "there": {"_count": 1}}, "gone": {"_count": 1, "mad": {"_count": 1}}, "already": {"_count": 4, "done": {"_count": 1}, "let": {"_count": 1}, "know": {"_count": 1}, "taken": {"_count": 1}}, "watch": {"_count": 1, "out": {"_count": 1}}, "send": {"_count": 1, "this": {"_count": 1}}, "pay": {"_count": 1, "five": {"_count": 1}}, "seen": {"_count": 2, "that": {"_count": 1}, "him": {"_count": 1}}, "get": {"_count": 5, "so": {"_count": 1}, "for": {"_count": 1}, "off": {"_count": 1}, "in": {"_count": 1}, "my": {"_count": 1}}, "live": {"_count": 1, "ter": {"_count": 1}}, "rather": {"_count": 11, "like": {"_count": 1}, "go": {"_count": 1}, "itd": {"_count": 1}, "nobody": {"_count": 1}, "but": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 2}, "that": {"_count": 1}, "not": {"_count": 1}, "you": {"_count": 1}}, "tell": {"_count": 3, "her": {"_count": 1}, "him": {"_count": 2}}, "dropped": {"_count": 1, "dead": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}, "congratulate": {"_count": 1, "you": {"_count": 1}}, "offer": {"_count": 1, "": {"_count": 1}}, "try": {"_count": 3, "putting": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}}, "draw": {"_count": 1, "attention": {"_count": 1}}, "imagine": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "probably": {"_count": 1, "say": {"_count": 1}}, "flay": {"_count": 1, "him": {"_count": 1}}, "stationed": {"_count": 1, "Mr": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}, "feel": {"_count": 6, "a": {"_count": 1}, "sorry": {"_count": 1}, "if": {"_count": 1}, "right": {"_count": 1}, "the": {"_count": 1}, "so": {"_count": 1}}, "forgotten": {"_count": 5, "he": {"_count": 2}, "Wood": {"_count": 1}, "": {"_count": 2}}, "really": {"_count": 1, "like": {"_count": 1}}, "booked": {"_count": 1, "the": {"_count": 1}}, "gotten": {"_count": 1, "an": {"_count": 1}}, "put": {"_count": 1, "him": {"_count": 1}}, "opened": {"_count": 1, "me": {"_count": 1}}, "heard": {"_count": 2, "something": {"_count": 1}, "you": {"_count": 1}}, "find": {"_count": 2, "myself": {"_count": 1}, "that": {"_count": 1}}, "certainly": {"_count": 1, "give": {"_count": 1}}, "prefer": {"_count": 1, "it": {"_count": 1}}, "made": {"_count": 1, "you": {"_count": 1}}, "wash": {"_count": 1, "your": {"_count": 1}}, "NEVER": {"_count": 1, "call": {"_count": 1}}, "resign": {"_count": 1, "in": {"_count": 1}}, "wasted": {"_count": 1, "time": {"_count": 1}}, "know": {"_count": 1, "": {"_count": 1}}, "go": {"_count": 4, "down": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}}, "only": {"_count": 1, "just": {"_count": 1}}, "do": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "your": {"_count": 1}}, "check": {"_count": 1, "": {"_count": 1}}, "chosen": {"_count": 1, "him": {"_count": 1}}, "stoop": {"_count": 1, "that": {"_count": 1}}, "worked": {"_count": 1, "that": {"_count": 1}}, "wear": {"_count": 1, "": {"_count": 1}}, "followed": {"_count": 1, "him": {"_count": 1}}, "shown": {"_count": 1, "it": {"_count": 1}}, "ask": {"_count": 1, "It": {"_count": 1}}, "die": {"_count": 1, "in": {"_count": 1}}, "asked": {"_count": 1, "you": {"_count": 1}}, "even": {"_count": 1, "say": {"_count": 1}}, "come": {"_count": 1, "and": {"_count": 1}}, "sooner": {"_count": 1, "be": {"_count": 1}}, "used": {"_count": 1, "Avada": {"_count": 1}}, "paid": {"_count": 1, "him": {"_count": 1}}, "agree": {"_count": 1, "with": {"_count": 1}}, "enjoy": {"_count": 1, "it": {"_count": 1}}, "er": {"_count": 1, "like": {"_count": 1}}, "sometimes": {"_count": 1, "hear": {"_count": 1}}, "hear": {"_count": 2, "straight": {"_count": 1}, "myself": {"_count": 1}}, "Disapparated": {"_count": 1, "but": {"_count": 1}}, "run": {"_count": 1, "out": {"_count": 1}}, "walked": {"_count": 1, "out": {"_count": 1}}, "understood": {"_count": 1, "Dumbledore": {"_count": 1}}, "let": {"_count": 1, "them": {"_count": 1}}, "advise": {"_count": 1, "you": {"_count": 1}}}, "places": {"_count": 61, "": {"_count": 13, "?": {"_count": 1}, ".": {"_count": 12}}, "left": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 6, "something": {"_count": 1}, "when": {"_count": 1}, "no": {"_count": 1}, "declined": {"_count": 1}, "there": {"_count": 1}, "approached": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "once": {"_count": 1}}, "besides": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "glory": {"_count": 1}}, "Potter": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 2, "it": {"_count": 1}, "nobody": {"_count": 1}}, "including": {"_count": 1, "the": {"_count": 1}}, "Muggles": {"_count": 1, "cant": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "front": {"_count": 1}, "which": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "nevertheless": {"_count": 1, "the": {"_count": 1}}, "more": {"_count": 1, "carefully": {"_count": 1}}, "was": {"_count": 1, "probably": {"_count": 1}}, "a": {"_count": 1, "rather": {"_count": 1}}, "their": {"_count": 1, "riders": {"_count": 1}}, "nearby": {"_count": 1, "she": {"_count": 1}}, "ornaments": {"_count": 1, "reformed": {"_count": 1}}, "where": {"_count": 2, "her": {"_count": 1}, "Ron": {"_count": 1}}, "awaiting": {"_count": 1, "Professor": {"_count": 1}}, "around": {"_count": 1, "one": {"_count": 1}}, "having": {"_count": 1, "always": {"_count": 1}}, "suggested": {"_count": 1, "Dumbledore": {"_count": 1}}, "of": {"_count": 1, "your": {"_count": 1}}, "he": {"_count": 3, "once": {"_count": 1}, "saw": {"_count": 1}, "must": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}, "with": {"_count": 1, "Hermione": {"_count": 1}}, "important": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "dismal": {"_count": 1}}, "is": {"_count": 1, "perhaps": {"_count": 1}}, "simply": {"_count": 1, "Harry": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "hes": {"_count": 1, "done": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "bring": {"_count": 117, "Harry": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 1, "owl": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 8, "back": {"_count": 1}, "lots": {"_count": 1}, "up": {"_count": 2}, "what": {"_count": 1}, "to": {"_count": 1}, "Potter": {"_count": 1}, "his": {"_count": 1}}, "the": {"_count": 10, "subject": {"_count": 1}, "kettle": {"_count": 1}, "Triwizard": {"_count": 1}, "conversation": {"_count": 1}, "end": {"_count": 1}, "ball": {"_count": 1}, "ragged": {"_count": 1}, "wizards": {"_count": 1}, "place": {"_count": 1}, "satisfaction": {"_count": 1}}, "himself": {"_count": 9, "to": {"_count": 9}}, "YouKnowWho": {"_count": 1, "back": {"_count": 1}}, "him": {"_count": 18, "in": {"_count": 1}, "back": {"_count": 5}, "a": {"_count": 2}, "here": {"_count": 2}, "up": {"_count": 1}, "news": {"_count": 1}, "Hermione": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 2}, "along": {"_count": 1}, "down": {"_count": 1}}, "a": {"_count": 2, "real": {"_count": 1}, "bit": {"_count": 1}}, "them": {"_count": 4, "back": {"_count": 1}, "within": {"_count": 1}, "inside": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Peter": {"_count": 1, "to": {"_count": 1}}, "food": {"_count": 1, "I": {"_count": 1}}, "home": {"_count": 1, "plenty": {"_count": 1}}, "creatures": {"_count": 1, "from": {"_count": 1}}, "out": {"_count": 2, "the": {"_count": 2}}, "cloaks": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "this": {"_count": 1}}, "letters": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 3, "for": {"_count": 1}, "along": {"_count": 2}}, "was": {"_count": 2, "in": {"_count": 1}, "falling": {"_count": 1}}, "back": {"_count": 5, "the": {"_count": 2}, "some": {"_count": 1}, "IN": {"_count": 1}, "from": {"_count": 1}}, "me": {"_count": 2, "that": {"_count": 1}, "down": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 2}, "some": {"_count": 1}}, "protection": {"_count": 1, "with": {"_count": 1}}, "about": {"_count": 2, "their": {"_count": 1}, "a": {"_count": 1}}, "it": {"_count": 4, "up": {"_count": 2}, "into": {"_count": 1}, "out": {"_count": 1}}, "our": {"_count": 1, "own": {"_count": 1}}, "something": {"_count": 1, "home": {"_count": 1}}, "anything": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "sorts": {"_count": 1}}, "off": {"_count": 3, "unnoticed": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}}, "every": {"_count": 1, "aspect": {"_count": 1}}, "your": {"_count": 2, "crossbow": {"_count": 1}, "Invisibility": {"_count": 1}}, "Ron": {"_count": 1, "back": {"_count": 1}}, "myself": {"_count": 1, "to": {"_count": 1}}, "us": {"_count": 2, "drinks": {"_count": 1}, "Dumbledore": {"_count": 1}}, "its": {"_count": 1, "large": {"_count": 1}}, "protective": {"_count": 1, "gloves": {"_count": 1}}, "guests": {"_count": 2, "said": {"_count": 1}, "so": {"_count": 1}}, "love": {"_count": 1, "potions": {"_count": 1}}, "that": {"_count": 1, "stupid": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 1, "while": {"_count": 1}}, "some": {"_count": 2, "bottles": {"_count": 1}, "pictures": {"_count": 1}}, "Scrimgeour": {"_count": 1, "down": {"_count": 1}}, "Voldemort": {"_count": 2, "down": {"_count": 2}}, "people": {"_count": 1, "back": {"_count": 1}}, "through": {"_count": 1, "more": {"_count": 1}}}, "aunt": {"_count": 56, "and": {"_count": 38, "uncle": {"_count": 29}, "I": {"_count": 1}, "uncles": {"_count": 7}, "cousins": {"_count": 1}}, "rapped": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 1, "back": {"_count": 1}}, "snapped": {"_count": 1, "through": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "Harry": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "uncles": {"_count": 1}}, "found": {"_count": 1, "him": {"_count": 1}}, "utterly": {"_count": 1, "bewildered": {"_count": 1}}, "Dudley": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "Gods": {"_count": 1}}, "squat": {"_count": 1, "with": {"_count": 1}}, "knows": {"_count": 1, "this": {"_count": 1}}, "wearing": {"_count": 1, "rubber": {"_count": 1}}, "uncle": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Fleur": {"_count": 1}}}, "uncle": {"_count": 56, "": {"_count": 7, ".": {"_count": 4}, "?": {"_count": 2}, "!": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 2}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "never": {"_count": 1, "spoke": {"_count": 1}}, "furious": {"_count": 1, "with": {"_count": 1}}, "about": {"_count": 1, "getting": {"_count": 1}}, "stared": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "cousin": {"_count": 3}, "felt": {"_count": 1}}, "so": {"_count": 1, "who": {"_count": 1}}, "spraying": {"_count": 1, "spit": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "put": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "let": {"_count": 1, "you": {"_count": 1}}, "surveying": {"_count": 1, "a": {"_count": 1}}, "didnt": {"_count": 1, "sign": {"_count": 1}}, "Bilius": {"_count": 1, "saw": {"_count": 1}}, "er": {"_count": 1, "forgot": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "said": {"_count": 2, "Black": {"_count": 1}, "Harry": {"_count": 1}}, "looked": {"_count": 1, "vaguely": {"_count": 1}}, "could": {"_count": 2, "stop": {"_count": 1}, "not": {"_count": 1}}, "suddenly": {"_count": 1, "spoke": {"_count": 1}}, "exchanged": {"_count": 1, "looks": {"_count": 1}}, "later": {"_count": 1, "and": {"_count": 1}}, "came": {"_count": 1, "galumphing": {"_count": 1}}, "entered": {"_count": 1, "his": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "aunt": {"_count": 1, "and": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "before": {"_count": 1, "letting": {"_count": 1}}, "whenever": {"_count": 1, "possible": {"_count": 1}}, "Marcus": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 1, "he": {"_count": 1}}, "took": {"_count": 1, "his": {"_count": 1}}, "would": {"_count": 1, "do": {"_count": 1}}, "was": {"_count": 2, "calling": {"_count": 1}, "attempting": {"_count": 1}}, "bellowed": {"_count": 1, "BOY": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "this": {"_count": 1}}, "now": {"_count": 1, "pointing": {"_count": 1}}, "are": {"_count": 1, "going": {"_count": 1}}, "of": {"_count": 1, "Rons": {"_count": 1}}}, "family": {"_count": 254, "he": {"_count": 3, "has": {"_count": 1}, "murdered": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 46, ".": {"_count": 36}, "!": {"_count": 6}, "?": {"_count": 4}}, "in": {"_count": 5, "his": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "turn": {"_count": 1}, "strictest": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "have": {"_count": 4, "been": {"_count": 2}, "always": {"_count": 1}, "anything": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "wizards": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 8, "go": {"_count": 2}, "take": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "hide": {"_count": 1}, "which": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Ginny": {"_count": 1}}, "within": {"_count": 1, "Hogwarts": {"_count": 1}}, "thought": {"_count": 1, "I": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 1}, "ages": {"_count": 1}, "years": {"_count": 1}, "centuries": {"_count": 1}}, "all": {"_count": 3, "the": {"_count": 1}, "giving": {"_count": 1}, "sleep": {"_count": 1}}, "anymore": {"_count": 2, "just": {"_count": 1}, "": {"_count": 1}}, "standing": {"_count": 1, "around": {"_count": 1}}, "are": {"_count": 2, "dead": {"_count": 1}, "blood": {"_count": 1}}, "And": {"_count": 1, "it": {"_count": 1}}, "see": {"_count": 1, "them": {"_count": 1}}, "was": {"_count": 8, "incredible": {"_count": 1}, "a": {"_count": 2}, "rolling": {"_count": 1}, "coming": {"_count": 1}, "larger": {"_count": 1}, "left": {"_count": 1}, "Bathilda": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Dobby": {"_count": 1, "serves": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 2, "never": {"_count": 1}, "be": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "before": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 6, "theyll": {"_count": 1}, "settle": {"_count": 1}, "your": {"_count": 2}, "Dumbledore": {"_count": 1}, "relocate": {"_count": 1}}, "servant": {"_count": 1, "to": {"_count": 1}}, "beat": {"_count": 1, "you": {"_count": 1}}, "could": {"_count": 1, "sink": {"_count": 1}}, "everyone": {"_count": 1, "knows": {"_count": 1}}, "who": {"_count": 3, "think": {"_count": 1}, "lived": {"_count": 1}, "would": {"_count": 1}}, "joke": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "hasnt": {"_count": 1}, "couldnt": {"_count": 1}}, "is": {"_count": 3, "careful": {"_count": 1}, "there": {"_count": 1}, "disgusted": {"_count": 1}}, "after": {"_count": 2, "all": {"_count": 2}}, "back": {"_count": 1, "through": {"_count": 1}}, "ghoul": {"_count": 1, "on": {"_count": 1}}, "has": {"_count": 1, "grown": {"_count": 1}}, "of": {"_count": 6, "number": {"_count": 1}, "wizards": {"_count": 1}, "Muggles": {"_count": 1}, "good": {"_count": 1}, "five": {"_count": 1}, "four": {"_count": 1}}, "a": {"_count": 1, "week": {"_count": 1}}, "Petunia": {"_count": 1, "she": {"_count": 1}}, "owl": {"_count": 2, "": {"_count": 1}, "Errol": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "had": {"_count": 6, "lived": {"_count": 1}, "gone": {"_count": 1}, "been": {"_count": 2}, "realized": {"_count": 1}, "indeed": {"_count": 1}}, "stayed": {"_count": 1, "long": {"_count": 1}}, "knowing": {"_count": 1, "that": {"_count": 1}}, "follow": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 4, "all": {"_count": 2}, "": {"_count": 1}, "safe": {"_count": 1}}, "vehicle": {"_count": 1, "said": {"_count": 1}}, "fall": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "member": {"_count": 4, "might": {"_count": 1}, "you": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}}, "name": {"_count": 2, "": {"_count": 1}, "dishonored": {"_count": 1}}, "honor": {"_count": 1, "": {"_count": 1}}, "shouldnt": {"_count": 1, "he": {"_count": 1}}, "no": {"_count": 1, "family": {"_count": 1}}, "history": {"_count": 1, "": {"_count": 1}}, "returns": {"_count": 1, "": {"_count": 1}}, "donations": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "old": {"_count": 1}}, "crest": {"_count": 4, "": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "Kreacher": {"_count": 1, "must": {"_count": 1}}, "tree": {"_count": 7, "dating": {"_count": 1}, "which": {"_count": 1}, "from": {"_count": 1}, "on": {"_count": 1}, "so": {"_count": 1}, "didnt": {"_count": 1}, "examined": {"_count": 1}}, "tradition": {"_count": 2, "of": {"_count": 1}, "decreed": {"_count": 1}}, "produced": {"_count": 1, "someone": {"_count": 1}}, "asks": {"_count": 1, "him": {"_count": 1}}, "stood": {"_count": 1, "beside": {"_count": 1}}, "row": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "ties": {"_count": 1, "to": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "since": {"_count": 1, "Cassandra": {"_count": 1}}, "members": {"_count": 5, "and": {"_count": 1}, "to": {"_count": 2}, "are": {"_count": 1}, "SideAlongApparition": {"_count": 1}}, "Sirius": {"_count": 1, "knows": {"_count": 1}}, "grief": {"_count": 1, "waiting": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "photographs": {"_count": 1, "that": {"_count": 1}}, "plus": {"_count": 1, "Hermione": {"_count": 1}}, "not": {"_count": 1, "have": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "so": {"_count": 2, "as": {"_count": 1}, "in": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "friend": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "thats": {"_count": 1, "how": {"_count": 1}}, "noted": {"_count": 1, "for": {"_count": 1}}, "gold": {"_count": 1, "was": {"_count": 1}}, "heirlooms": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "owns": {"_count": 1, "a": {"_count": 1}}, "home": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "this": {"_count": 2, "must": {"_count": 1}, "week": {"_count": 1}}, "the": {"_count": 1, "woman": {"_count": 1}}, "does": {"_count": 1, "seem": {"_count": 1}}, "knew": {"_count": 1, "I": {"_count": 1}}, "seem": {"_count": 1, "less": {"_count": 1}}, "trees": {"_count": 1, "become": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "itll": {"_count": 1, "look": {"_count": 1}}, "by": {"_count": 1, "this": {"_count": 1}}, "peering": {"_count": 1, "in": {"_count": 1}}, "rate": {"_count": 1, "theyre": {"_count": 1}}, "course": {"_count": 1, "youre": {"_count": 1}}, "Regulus": {"_count": 1, "had": {"_count": 1}}, "heirloom": {"_count": 2, "for": {"_count": 1}, "she": {"_count": 1}}, "group": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 2, "to": {"_count": 2}}, "looked": {"_count": 1, "quite": {"_count": 1}}, "previously": {"_count": 1, "Undesirable": {"_count": 1}}, "or": {"_count": 1, "of": {"_count": 1}}, "\u2018the": {"_count": 1, "Weasleys": {"_count": 1}}, "once": {"_count": 1, "his": {"_count": 1}}, "represented": {"_count": 1, "in": {"_count": 1}}, "lived": {"_count": 1, "on": {"_count": 1}}, "line": {"_count": 1, "on": {"_count": 1}}, "Bathilda": {"_count": 1, "Bagshot": {"_count": 1}}, "know": {"_count": 1, "I": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "dont": {"_count": 1, "apologize": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "surrounded": {"_count": 1, "him": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "bobbed": {"_count": 1, "across": {"_count": 1}}, "wove": {"_count": 1, "its": {"_count": 1}}, "emerged": {"_count": 1, "onto": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}}, "mean": {"_count": 564, "you": {"_count": 14, "cant": {"_count": 1}, "can": {"_count": 3}, "know": {"_count": 1}, "are": {"_count": 1}, "saw": {"_count": 2}, "dreamed": {"_count": 1}, "didnt": {"_count": 1}, "might": {"_count": 1}, "dont": {"_count": 1}, "have": {"_count": 1}, "could": {"_count": 1}}, "the": {"_count": 19, "people": {"_count": 1}, "night": {"_count": 1}, "Stones": {"_count": 1}, "ony": {"_count": 1}, "rest": {"_count": 1}, "appeals": {"_count": 1}, "cabinet": {"_count": 1}, "stupid": {"_count": 1}, "fire": {"_count": 1}, "number": {"_count": 1}, "Prophet": {"_count": 1}, "shock": {"_count": 1}, "one": {"_count": 2}, "Order": {"_count": 1}, "Minister": {"_count": 1}, "death": {"_count": 1}, "Weasleys": {"_count": 1}, "end": {"_count": 1}}, "your": {"_count": 4, "bedroom": {"_count": 1}, "Bludger": {"_count": 1}, "Prime": {"_count": 1}, "brother": {"_count": 1}}, "ter": {"_count": 1, "tell": {"_count": 1}}, "": {"_count": 124, ".": {"_count": 39}, "?": {"_count": 83}, "!": {"_count": 2}}, "theyre": {"_count": 6, "famous": {"_count": 1}, "like": {"_count": 1}, "not": {"_count": 2}, "different": {"_count": 1}, "going": {"_count": 1}}, "they": {"_count": 5, "await": {"_count": 1}, "were": {"_count": 1}, "cant": {"_count": 1}, "wouldnt": {"_count": 1}, "can": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "yes": {"_count": 2, "I": {"_count": 1}, "youre": {"_count": 1}}, "I": {"_count": 25, "got": {"_count": 1}, "wont": {"_count": 1}, "think": {"_count": 2}, "know": {"_count": 2}, "remember": {"_count": 1}, "just": {"_count": 4}, "knew": {"_count": 1}, "dont": {"_count": 1}, "cant": {"_count": 5}, "was": {"_count": 1}, "want": {"_count": 1}, "told": {"_count": 1}, "could": {"_count": 1}, "might": {"_count": 1}, "am": {"_count": 1}, "hate": {"_count": 1}}, "every": {"_count": 1, "flavor": {"_count": 1}}, "its": {"_count": 9, "the": {"_count": 2}, "extremely": {"_count": 1}, "happening": {"_count": 1}, "quite": {"_count": 1}, "really": {"_count": 1}, "always": {"_count": 1}, "almost": {"_count": 1}, "gone": {"_count": 1}}, "YouKnowWho": {"_count": 2, "was": {"_count": 1}, "Call": {"_count": 1}}, "it": {"_count": 15, "": {"_count": 5}, "would": {"_count": 1}, "I": {"_count": 1}, "Ill": {"_count": 1}, "they": {"_count": 1}, "was": {"_count": 1}, "really": {"_count": 1}, "to": {"_count": 2}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "youre": {"_count": 7, "my": {"_count": 1}, "running": {"_count": 1}, "not": {"_count": 3}, "on": {"_count": 1}, "a": {"_count": 1}}, "little": {"_count": 2, "eyes": {"_count": 2}}, "once": {"_count": 2, "shes": {"_count": 1}, "your": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "he": {"_count": 24, "told": {"_count": 1}, "was": {"_count": 6}, "hasnt": {"_count": 4}, "faltered": {"_count": 1}, "wasnt": {"_count": 1}, "cant": {"_count": 2}, "is": {"_count": 2}, "said": {"_count": 1}, "knew": {"_count": 1}, "never": {"_count": 1}, "added": {"_count": 1}, "drones": {"_count": 1}, "lives": {"_count": 1}, "wanted": {"_count": 1}}, "Harry": {"_count": 3, "croaked": {"_count": 1}, "had": {"_count": 1}, "shook": {"_count": 1}}, "to": {"_count": 30, "say": {"_count": 12}, "offend": {"_count": 2}, "butt": {"_count": 1}, "RRiddle": {"_count": 1}, "said": {"_count": 1}, "did": {"_count": 1}, "him": {"_count": 1}, "concentrate": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "do": {"_count": 2}, "": {"_count": 1}, "tell": {"_count": 1}, "produce": {"_count": 1}, "be": {"_count": 1}, "an": {"_count": 1}, "call": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "WHAT": {"_count": 1, "HAVE": {"_count": 1}}, "theres": {"_count": 2, "Dumbledore": {"_count": 1}, "only": {"_count": 1}}, "hes": {"_count": 10, "written": {"_count": 1}, "properly": {"_count": 1}, "been": {"_count": 1}, "a": {"_count": 1}, "spent": {"_count": 1}, "": {"_count": 1}, "won": {"_count": 1}, "sensitive": {"_count": 1}, "at": {"_count": 1}, "dead": {"_count": 1}}, "youd": {"_count": 1, "never": {"_count": 1}}, "everyone": {"_count": 1, "hates": {"_count": 1}}, "a": {"_count": 12, "few": {"_count": 1}, "bit": {"_count": 1}, "really": {"_count": 1}, "dogll": {"_count": 1}, "reporter": {"_count": 1}, "lot": {"_count": 3}, "\u2018savingpeoplething": {"_count": 1}, "Death": {"_count": 1}, "wizard": {"_count": 1}, "couple": {"_count": 1}}, "nobody": {"_count": 1, "wishes": {"_count": 1}}, "by": {"_count": 7, "the": {"_count": 1}, "Mr": {"_count": 1}, "wizard": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 1}, "shaking": {"_count": 1}, "zat": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "thats": {"_count": 2, "only": {"_count": 1}, "just": {"_count": 1}}, "itd": {"_count": 1, "just": {"_count": 1}}, "something": {"_count": 2, "to": {"_count": 1}, "about": {"_count": 1}}, "that": {"_count": 16, "this": {"_count": 1}, "you": {"_count": 3}, "she": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 3}, "Dumbledore": {"_count": 1}, "someone": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 1}}, "all": {"_count": 9, "these": {"_count": 2}, "theyve": {"_count": 1}, "right": {"_count": 4}, "of": {"_count": 1}, "righ": {"_count": 1}}, "we": {"_count": 8, "teachers": {"_count": 1}, "havent": {"_count": 1}, "all": {"_count": 2}, "can": {"_count": 1}, "soon": {"_count": 1}, "ought": {"_count": 1}, "should": {"_count": 1}}, "she": {"_count": 7, "was": {"_count": 2}, "wont": {"_count": 1}, "hasnt": {"_count": 1}, "had": {"_count": 1}, "knows": {"_count": 1}, "gave": {"_count": 1}}, "well": {"_count": 3, "all": {"_count": 1}, "if": {"_count": 1}, "your": {"_count": 1}}, "come": {"_count": 2, "on": {"_count": 2}}, "Im": {"_count": 4, "Im": {"_count": 1}, "not": {"_count": 3}}, "runty": {"_count": 1, "look": {"_count": 1}}, "Harrys": {"_count": 1, "got": {"_count": 1}}, "theyve": {"_count": 2, "got": {"_count": 1}, "already": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "Binky": {"_count": 1, "didnt": {"_count": 1}}, "will": {"_count": 1, "it": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 1}, "this": {"_count": 1}}, "at": {"_count": 2, "least": {"_count": 1}, "all": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 2}}, "Sirius": {"_count": 1, "muttered": {"_count": 1}}, "what": {"_count": 7, "he": {"_count": 1}, "was": {"_count": 2}, "do": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}, "about": {"_count": 1}}, "The": {"_count": 2, "yelping": {"_count": 1}, "Prime": {"_count": 1}}, "and": {"_count": 2, "You": {"_count": 1}, "well": {"_count": 1}}, "finger": {"_count": 1, "he": {"_count": 1}}, "Black": {"_count": 1, "escapin": {"_count": 1}}, "when": {"_count": 6, "I": {"_count": 1}, "youre": {"_count": 1}, "you": {"_count": 2}, "has": {"_count": 1}, "Ive": {"_count": 1}}, "\u2018the": {"_count": 1, "normal": {"_count": 1}}, "feat": {"_count": 1, "Ludo": {"_count": 1}}, "how": {"_count": 1, "do": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "stature": {"_count": 1, "": {"_count": 1}}, "lesson": {"_count": 1, "whats": {"_count": 1}}, "congratulations": {"_count": 1, "": {"_count": 1}}, "\u2018not": {"_count": 1, "really": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "cutting": {"_count": 1, "his": {"_count": 1}}, "Bagman": {"_count": 1, "continued": {"_count": 1}}, "only": {"_count": 2, "one": {"_count": 2}}, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "Lupin": {"_count": 1}}, "who": {"_count": 2, "would": {"_count": 1}, "": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "Agrid": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 7, "Hermione": {"_count": 2}, "Malfoy": {"_count": 1}, "Sirius": {"_count": 1}, "Mrs": {"_count": 1}, "Dumbledore": {"_count": 1}, "Luna": {"_count": 1}}, "my": {"_count": 2, "mum": {"_count": 1}, "Lord": {"_count": 1}}, "pack": {"_count": 1, "of": {"_count": 1}}, "Remus": {"_count": 1, "said": {"_count": 1}}, "What": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 4, "youre": {"_count": 1}, "I": {"_count": 1}, "its": {"_count": 1}, "you": {"_count": 1}}, "trouble": {"_count": 1, "like": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "She": {"_count": 1, "turned": {"_count": 1}}, "prefect": {"_count": 1, "is": {"_count": 1}}, "draw": {"_count": 1, "attention": {"_count": 1}}, "do": {"_count": 1, "we": {"_count": 1}}, "sent": {"_count": 1, "": {"_count": 1}}, "maybe": {"_count": 1, "this": {"_count": 1}}, "like": {"_count": 1, "when": {"_count": 1}}, "were": {"_count": 3, "talking": {"_count": 1}, "using": {"_count": 1}, "here": {"_count": 1}}, "really": {"_count": 1, "study": {"_count": 1}}, "learning": {"_count": 1, "how": {"_count": 1}}, "Dumbledore": {"_count": 1, "believes": {"_count": 1}}, "Michael": {"_count": 2, "Corner": {"_count": 2}}, "whos": {"_count": 1, "taking": {"_count": 1}}, "number": {"_count": 1, "twelve": {"_count": 1}}, "shes": {"_count": 2, "never": {"_count": 1}, "quite": {"_count": 1}}, "another": {"_count": 1, "couple": {"_count": 1}}, "\u2018living": {"_count": 1, "through": {"_count": 1}}, "Exnellimellius": {"_count": 1, "I": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "nothing": {"_count": 2, "good": {"_count": 1}, "Albert": {"_count": 1}}, "George": {"_count": 1, "Weasley": {"_count": 1}}, "bad": {"_count": 1, "Bells": {"_count": 1}}, "\u2018help": {"_count": 1, "": {"_count": 1}}, "attacked": {"_count": 1, "by": {"_count": 1}}, "\u2018at": {"_count": 1, "one": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "placing": {"_count": 1, "himself": {"_count": 1}}, "obviously": {"_count": 1, "its": {"_count": 1}}, "\u2018no": {"_count": 2, "": {"_count": 2}}, "\u2018tried": {"_count": 1, "": {"_count": 1}}, "missing": {"_count": 1, "most": {"_count": 1}}, "James": {"_count": 1, "didnt": {"_count": 1}}, "weve": {"_count": 1, "won": {"_count": 1}}, "Umbridge": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "kids": {"_count": 1, "": {"_count": 1}}, "Id": {"_count": 1, "already": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "\u2018in": {"_count": 1, "there": {"_count": 1}}, "them": {"_count": 2, "Potter": {"_count": 2}}, "is": {"_count": 1, "alive": {"_count": 1}}, "\u2018gone": {"_count": 2, "on": {"_count": 2}}, "him": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "cousin": {"_count": 1}}, "next": {"_count": 1, "summer": {"_count": 1}}, "Tonks": {"_count": 1, "is": {"_count": 1}}, "Fleur": {"_count": 2, "Id": {"_count": 1}, "and": {"_count": 1}}, "yeh": {"_count": 1, "should": {"_count": 1}}, "Him": {"_count": 1, "": {"_count": 1}}, "think": {"_count": 1, "about": {"_count": 1}}, "Witherwings": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "nonverbal": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 2, "Ginny": {"_count": 1}, "forget": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "anybody": {"_count": 1, "who": {"_count": 1}}, "No": {"_count": 1, "no": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "why": {"_count": 1, "mention": {"_count": 1}}, "detention": {"_count": 1, "": {"_count": 1}}, "Smith": {"_count": 1, "": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "wheres": {"_count": 1, "he": {"_count": 1}}, "\u2018something": {"_count": 1, "amusing": {"_count": 1}}, "would": {"_count": 1, "one": {"_count": 1}}, "for": {"_count": 1, "instance": {"_count": 1}}, "Well": {"_count": 1, "if": {"_count": 1}}, "then": {"_count": 1, "whats": {"_count": 1}}, "Greyback": {"_count": 1, "being": {"_count": 1}}, "\u2018e": {"_count": 1, "was": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "Goyle": {"_count": 1, "s": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "much": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "it": {"_count": 1}}, "close": {"_count": 1, "emotionally": {"_count": 1}}, "locked": {"_count": 1, "in": {"_count": 1}}, "whats": {"_count": 1, "the": {"_count": 1}}, "Cattermole": {"_count": 1, "s": {"_count": 1}}, "thanks": {"_count": 1, "Arthur": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "unlike": {"_count": 1, "himself": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "defeating": {"_count": 1, "death": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "\u2018get": {"_count": 1, "out": {"_count": 1}}, "revolution": {"_count": 1, "": {"_count": 1}}, "\u2018got": {"_count": 1, "Potter": {"_count": 1}}, "\u2018Must": {"_count": 1, "mean": {"_count": 1}}, "an": {"_count": 1, "easier": {"_count": 1}}, "\u2018invincible": {"_count": 1, "": {"_count": 1}}}, "live": {"_count": 112, "here": {"_count": 9, "": {"_count": 5}, "wouldnt": {"_count": 1}, "with": {"_count": 1}, "only": {"_count": 1}, "and": {"_count": 1}}, "with": {"_count": 20, "Muggles": {"_count": 2}, "I": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 4}, "your": {"_count": 1}, "you": {"_count": 2}, "Sirius": {"_count": 2}, "my": {"_count": 2}, "him": {"_count": 2}, "that": {"_count": 1}, "Bellatrix": {"_count": 1}, "us": {"_count": 1}}, "rather": {"_count": 1, "ruffledlooking": {"_count": 1}}, "up": {"_count": 4, "to": {"_count": 4}}, "bats": {"_count": 4, "fluttered": {"_count": 1}, "Hagrids": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}}, "white": {"_count": 1, "mice": {"_count": 1}}, "remember": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 10, "a": {"_count": 3}, "the": {"_count": 1}, "an": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 1}, "wandtrees": {"_count": 1}, "trees": {"_count": 1}, "something": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "creatures": {"_count": 1, "to": {"_count": 1}}, "snakes": {"_count": 1, "doubled": {"_count": 1}}, "many": {"_count": 1, "hundreds": {"_count": 1}}, "longer": {"_count": 1, "than": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Madam": {"_count": 1}}, "just": {"_count": 2, "on": {"_count": 1}, "over": {"_count": 1}}, "peacocks": {"_count": 1, "tethered": {"_count": 1}}, "": {"_count": 6, "!": {"_count": 1}, ".": {"_count": 5}}, "ter": {"_count": 1, "see": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 3, "tell": {"_count": 1}, "a": {"_count": 1}, "see": {"_count": 1}}, "off": {"_count": 1, "rats": {"_count": 1}}, "there": {"_count": 3, "alone": {"_count": 1}, "however": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 2, "number": {"_count": 1}, "Hogwarts": {"_count": 1}}, "under": {"_count": 1, "their": {"_count": 1}}, "bunched": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 2, "good": {"_count": 1}, "happier": {"_count": 1}}, "together": {"_count": 2, "giants": {"_count": 1}, "again": {"_count": 1}}, "fairies": {"_count": 1, "blocked": {"_count": 1}}, "eagle": {"_count": 1, "perched": {"_count": 1}}, "while": {"_count": 8, "the": {"_count": 8}}, "and": {"_count": 2, "let": {"_count": 1}, "be": {"_count": 1}}, "adder": {"_count": 1, "between": {"_count": 1}}, "among": {"_count": 1, "wizards": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "die": {"_count": 1}}, "down": {"_count": 2, "here": {"_count": 1}, "Spinners": {"_count": 1}}, "for": {"_count": 1, "years": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 2, "it": {"_count": 1}, "love": {"_count": 1}}, "now": {"_count": 1, "everyone": {"_count": 1}}, "Severus": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 1, "a": {"_count": 1}}, "neither": {"_count": 1, "could": {"_count": 1}}, "had": {"_count": 1, "always": {"_count": 1}}}, "cried": {"_count": 150, "Professor": {"_count": 13, "McGonagall": {"_count": 5}, "Flitwick": {"_count": 1}, "Trelawney": {"_count": 3}, "Lupin": {"_count": 1}, "Sprout": {"_count": 1}, "Tofty": {"_count": 1}, "Umbridge": {"_count": 1}}, "but": {"_count": 3, "he": {"_count": 1}, "there": {"_count": 1}, "Lupin": {"_count": 1}}, "flinging": {"_count": 1, "her": {"_count": 1}}, "Dedalus": {"_count": 1, "Diggle": {"_count": 1}}, "Oh": {"_count": 1, "bravo": {"_count": 1}}, "Neville": {"_count": 2, "blissfully": {"_count": 1}, "his": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 2}}, "Hermione": {"_count": 20, "": {"_count": 7}, "but": {"_count": 1}, "and": {"_count": 1}, "happily": {"_count": 1}, "leaping": {"_count": 1}, "as": {"_count": 2}, "clapping": {"_count": 1}, "again": {"_count": 1}, "pointing": {"_count": 2}, "in": {"_count": 2}, "who": {"_count": 1}}, "pointing": {"_count": 2, "it": {"_count": 1}, "dramatically": {"_count": 1}}, "wringing": {"_count": 1, "her": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Harry": {"_count": 2, "grabbing": {"_count": 1}, "quickly": {"_count": 1}}, "the": {"_count": 8, "assistant": {"_count": 1}, "manager": {"_count": 1}, "witch": {"_count": 1}, "knight": {"_count": 1}, "Burrow": {"_count": 1}, "goblin": {"_count": 1}, "Sorting": {"_count": 1}, "portrait": {"_count": 1}}, "shrilly": {"_count": 1, "": {"_count": 1}}, "ExpelliarmusV": {"_count": 1, "There": {"_count": 1}}, "beaming": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 4, "became": {"_count": 1}, "her": {"_count": 1}, "for": {"_count": 1}, "an": {"_count": 1}}, "Fudge": {"_count": 2, "waving": {"_count": 1}, "now": {"_count": 1}}, "when": {"_count": 2, "we": {"_count": 1}, "he": {"_count": 1}}, "Mrs": {"_count": 4, "Weasley": {"_count": 3}, "Figg": {"_count": 1}}, "On": {"_count": 1, "foot": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "Parvati": {"_count": 1, "": {"_count": 1}}, "Sir": {"_count": 1, "Cadogan": {"_count": 1}}, "a": {"_count": 3, "fair": {"_count": 1}, "fraillooking": {"_count": 1}, "voice": {"_count": 1}}, "several": {"_count": 1, "people": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "Bagman": {"_count": 3, "": {"_count": 1}, "excitedly": {"_count": 1}, "and": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "harder": {"_count": 2, "than": {"_count": 2}}, "": {"_count": 8, ".": {"_count": 8}}, "Karkaroff": {"_count": 1, "looking": {"_count": 1}}, "Expecto": {"_count": 1, "Patronum": {"_count": 1}}, "Avada": {"_count": 1, "KedavraV": {"_count": 1}}, "Tonks": {"_count": 1, "waving": {"_count": 1}}, "suddenly": {"_count": 1, "making": {"_count": 1}}, "Lee": {"_count": 1, "valiantly": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 2}}, "Legilimens": {"_count": 1, "He": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "Umbridge": {"_count": 2, "": {"_count": 1}, "raising": {"_count": 1}}, "Dawlish": {"_count": 1, "and": {"_count": 1}}, "did": {"_count": 1, "she": {"_count": 1}}, "Number": {"_count": 1, "twelve": {"_count": 1}}, "Cruc": {"_count": 1, "NO": {"_count": 1}}, "EXPELLIARMUS": {"_count": 1, "Both": {"_count": 1}}, "Lupin": {"_count": 1, "but": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "Relashiol": {"_count": 1, "Gaunt": {"_count": 1}}, "Slughorn": {"_count": 2, "dramatically": {"_count": 1}, "a": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "Dobby": {"_count": 1, "in": {"_count": 1}}, "Peeves": {"_count": 1, "happily": {"_count": 1}}, "Hepzibah": {"_count": 1, "and": {"_count": 1}}, "Katie": {"_count": 1, "": {"_count": 1}}, "Cruci": {"_count": 1, "SECTUMSEMPRAl": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "Stupefy": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 3, "she": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "Fleur": {"_count": 1, "rushing": {"_count": 1}}, "out": {"_count": 2, "": {"_count": 1}, "together": {"_count": 1}}, "all": {"_count": 2, "evening": {"_count": 1}, "this": {"_count": 1}}, "for": {"_count": 3, "Master": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}, "Obscuro": {"_count": 1, "A": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "aloud": {"_count": 2, "Marvolo": {"_count": 1}, "Its": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "Protego": {"_count": 1, "They": {"_count": 1}}, "Finite": {"_count": 1, "": {"_count": 1}}, "Gryffindoii": {"_count": 1, "Harry": {"_count": 1}}, "Voldemort": {"_count": 1, "and": {"_count": 1}}, "Oooh": {"_count": 1, "look": {"_count": 1}}}, "jumping": {"_count": 38, "to": {"_count": 6, "her": {"_count": 2}, "conclusions": {"_count": 1}, "his": {"_count": 3}}, "up": {"_count": 16, "so": {"_count": 1}, "and": {"_count": 8}, "": {"_count": 2}, "wed": {"_count": 1}, "Hagrid": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 2}}, "on": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}}, "out": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 1, "hundred": {"_count": 1}}, "backward": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "the": {"_count": 2, "result": {"_count": 1}, "last": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "down": {"_count": 5, "beside": {"_count": 1}, "Rons": {"_count": 1}, "onto": {"_count": 1}, "from": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 1, "Lupins": {"_count": 1}}}, "feet": {"_count": 748, "and": {"_count": 102, "pointing": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 3}, "then": {"_count": 1}, "ran": {"_count": 1}, "came": {"_count": 1}, "she": {"_count": 2}, "positively": {"_count": 1}, "Hedwigs": {"_count": 1}, "followed": {"_count": 3}, "tried": {"_count": 2}, "shouted": {"_count": 1}, "slowly": {"_count": 2}, "broke": {"_count": 1}, "strode": {"_count": 2}, "faced": {"_count": 1}, "slammed": {"_count": 3}, "everything": {"_count": 1}, "stick": {"_count": 1}, "was": {"_count": 3}, "peered": {"_count": 1}, "swarmed": {"_count": 1}, "Fang": {"_count": 1}, "taken": {"_count": 1}, "swept": {"_count": 1}, "said": {"_count": 1}, "brushing": {"_count": 1}, "walked": {"_count": 4}, "set": {"_count": 1}, "Dumbledore": {"_count": 1}, "stormed": {"_count": 1}, "bowed": {"_count": 1}, "they": {"_count": 2}, "theirs": {"_count": 1}, "stretched": {"_count": 1}, "turned": {"_count": 3}, "going": {"_count": 1}, "widening": {"_count": 2}, "throwing": {"_count": 1}, "jeering": {"_count": 1}, "began": {"_count": 1}, "trying": {"_count": 1}, "ogling": {"_count": 1}, "start": {"_count": 1}, "on": {"_count": 1}, "knocked": {"_count": 1}, "says": {"_count": 1}, "looked": {"_count": 1}, "were": {"_count": 1}, "making": {"_count": 1}, "did": {"_count": 1}, "the": {"_count": 4}, "charged": {"_count": 1}, "looking": {"_count": 2}, "after": {"_count": 1}, "pulling": {"_count": 1}, "ankles": {"_count": 1}, "held": {"_count": 1}, "picking": {"_count": 1}, "bent": {"_count": 1}, "stretching": {"_count": 1}, "performing": {"_count": 1}, "plunged": {"_count": 1}, "seized": {"_count": 1}, "sprinted": {"_count": 1}, "stood": {"_count": 1}, "headed": {"_count": 1}, "rammed": {"_count": 1}, "drew": {"_count": 1}, "scanned": {"_count": 1}, "robes": {"_count": 1}, "holding": {"_count": 1}, "Harrys": {"_count": 1}, "he": {"_count": 1}, "fallen": {"_count": 1}, "pulled": {"_count": 1}, "knew": {"_count": 1}, "through": {"_count": 1}, "nearer": {"_count": 1}}, "in": {"_count": 11, "their": {"_count": 1}, "front": {"_count": 2}, "length": {"_count": 1}, "what": {"_count": 1}, "diameter": {"_count": 1}, "the": {"_count": 3}, "shock": {"_count": 1}, "no": {"_count": 1}}, "": {"_count": 162, ".": {"_count": 159}, "?": {"_count": 2}, "!": {"_count": 1}}, "so": {"_count": 3, "happy": {"_count": 1}, "that": {"_count": 1}, "often": {"_count": 1}}, "but": {"_count": 15, "Rons": {"_count": 1}, "they": {"_count": 1}, "decided": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "Ginny": {"_count": 2}, "she": {"_count": 1}, "seemed": {"_count": 1}, "did": {"_count": 1}, "many": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "appeared": {"_count": 1}, "to": {"_count": 1}}, "again": {"_count": 21, "": {"_count": 7}, "staring": {"_count": 1}, "and": {"_count": 3}, "it": {"_count": 1}, "youre": {"_count": 1}, "breathless": {"_count": 1}, "furious": {"_count": 1}, "I": {"_count": 1}, "grinning": {"_count": 1}, "why": {"_count": 1}, "pale": {"_count": 1}, "he": {"_count": 1}, "is": {"_count": 1}}, "pelt": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 16, "they": {"_count": 2}, "he": {"_count": 3}, "the": {"_count": 4}, "far": {"_count": 1}, "though": {"_count": 1}, "Snape": {"_count": 1}, "Kreacher": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "Neville": {"_count": 1}}, "twenty": {"_count": 1, "feet": {"_count": 1}}, "trembling": {"_count": 2, "": {"_count": 2}}, "I": {"_count": 3, "dont": {"_count": 1}, "was": {"_count": 1}, "cant": {"_count": 1}}, "high": {"_count": 5, "": {"_count": 2}, "right": {"_count": 1}, "that": {"_count": 1}, "its": {"_count": 1}}, "above": {"_count": 14, "their": {"_count": 1}, "the": {"_count": 9}, "her": {"_count": 1}, "him": {"_count": 2}, "them": {"_count": 1}}, "tall": {"_count": 8, "its": {"_count": 2}, "and": {"_count": 2}, "": {"_count": 2}, "judging": {"_count": 1}, "enjoys": {"_count": 1}}, "from": {"_count": 24, "Hermione": {"_count": 1}, "him": {"_count": 5}, "his": {"_count": 1}, "them": {"_count": 6}, "the": {"_count": 4}, "an": {"_count": 1}, "Cedric": {"_count": 1}, "Smith": {"_count": 1}, "it": {"_count": 3}, "each": {"_count": 1}}, "at": {"_count": 8, "last": {"_count": 2}, "wandpoint": {"_count": 1}, "the": {"_count": 4}, "once": {"_count": 1}}, "watching": {"_count": 1, "terrified": {"_count": 1}}, "of": {"_count": 12, "snow": {"_count": 2}, "Hagrids": {"_count": 1}, "long": {"_count": 1}, "a": {"_count": 2}, "himself": {"_count": 1}, "white": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "space": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 2}}, "were": {"_count": 11, "dead": {"_count": 1}, "agony": {"_count": 1}, "hidden": {"_count": 2}, "dangling": {"_count": 1}, "freezing": {"_count": 1}, "carrying": {"_count": 1}, "slipping": {"_count": 1}, "glued": {"_count": 1}, "halfway": {"_count": 1}, "dirty": {"_count": 1}}, "away": {"_count": 35, "and": {"_count": 2}, "": {"_count": 6}, "from": {"_count": 12}, "then": {"_count": 1}, "Then": {"_count": 1}, "on": {"_count": 1}, "making": {"_count": 1}, "nothing": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 1}, "gouging": {"_count": 1}, "where": {"_count": 1}, "before": {"_count": 1}, "now": {"_count": 1}, "into": {"_count": 1}, "but": {"_count": 1}, "swooping": {"_count": 1}, "when": {"_count": 1}}, "wandering": {"_count": 1, "along": {"_count": 1}}, "landing": {"_count": 1, "on": {"_count": 1}}, "caught": {"_count": 1, "Quirrell": {"_count": 1}}, "veins": {"_count": 1, "throbbing": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "he": {"_count": 7, "grasped": {"_count": 1}, "felt": {"_count": 1}, "pulled": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 1}, "expected": {"_count": 1}, "advanced": {"_count": 1}}, "into": {"_count": 10, "the": {"_count": 9}, "tight": {"_count": 1}}, "holding": {"_count": 1, "his": {"_count": 1}}, "behind": {"_count": 4, "them": {"_count": 2}, "him": {"_count": 2}}, "climbing": {"_count": 2, "the": {"_count": 1}, "into": {"_count": 1}}, "seven": {"_count": 1, "inches": {"_count": 1}}, "He": {"_count": 1, "flew": {"_count": 1}}, "stopped": {"_count": 1, "dancing": {"_count": 1}}, "his": {"_count": 7, "breathing": {"_count": 1}, "shaggy": {"_count": 1}, "hand": {"_count": 1}, "wand": {"_count": 2}, "own": {"_count": 1}, "voice": {"_count": 1}}, "hit": {"_count": 7, "the": {"_count": 4}, "solid": {"_count": 2}, "firm": {"_count": 1}}, "slipping": {"_count": 2, "around": {"_count": 1}, "and": {"_count": 1}}, "numb": {"_count": 1, "from": {"_count": 1}}, "looking": {"_count": 4, "after": {"_count": 1}, "terrified": {"_count": 1}, "around": {"_count": 1}, "exasperated": {"_count": 1}}, "a": {"_count": 3, "little": {"_count": 1}, "blaze": {"_count": 1}, "disinterred": {"_count": 1}}, "long": {"_count": 6, "at": {"_count": 1}, "": {"_count": 2}, "before": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}}, "then": {"_count": 2, "he": {"_count": 1}, "landed": {"_count": 1}}, "stood": {"_count": 1, "on": {"_count": 1}}, "facedown": {"_count": 1, "lay": {"_count": 1}}, "ready": {"_count": 1, "": {"_count": 1}}, "closely": {"_count": 1, "followed": {"_count": 1}}, "111": {"_count": 1, "be": {"_count": 1}}, "stuck": {"_count": 1, "out": {"_count": 1}}, "too": {"_count": 8, "in": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 1}, "long": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 1}, "surprising": {"_count": 1}}, "its": {"_count": 2, "stiff": {"_count": 1}, "face": {"_count": 1}}, "it": {"_count": 1, "became": {"_count": 1}}, "turned": {"_count": 1, "it": {"_count": 1}}, "very": {"_count": 2, "cold": {"_count": 1}, "cautiously": {"_count": 1}}, "was": {"_count": 3, "coming": {"_count": 1}, "he": {"_count": 1}, "looking": {"_count": 1}}, "move": {"_count": 1, "toward": {"_count": 1}}, "wearing": {"_count": 1, "sparkly": {"_count": 1}}, "though": {"_count": 3, "for": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}}, "below": {"_count": 6, "did": {"_count": 1}, "": {"_count": 1}, "apparently": {"_count": 1}, "them": {"_count": 1}, "where": {"_count": 1}, "everybody": {"_count": 1}}, "to": {"_count": 10, "the": {"_count": 4}, "face": {"_count": 1}, "get": {"_count": 1}, "support": {"_count": 1}, "avoid": {"_count": 1}, "slide": {"_count": 1}, "their": {"_count": 1}}, "reappeared": {"_count": 1, "on": {"_count": 1}}, "thundering": {"_count": 1, "along": {"_count": 1}}, "Ron": {"_count": 2, "put": {"_count": 2}}, "dangling": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "retreating": {"_count": 1, "": {"_count": 1}}, "stretched": {"_count": 1, "and": {"_count": 1}}, "smiling": {"_count": 2, "and": {"_count": 1}, "brimming": {"_count": 1}}, "pattered": {"_count": 1, "very": {"_count": 1}}, "found": {"_count": 3, "level": {"_count": 1}, "pavement": {"_count": 1}, "warm": {"_count": 1}}, "left": {"_count": 5, "the": {"_count": 5}}, "slammed": {"_count": 2, "into": {"_count": 1}, "onto": {"_count": 1}}, "waving": {"_count": 1, "and": {"_count": 1}}, "swigging": {"_count": 1, "down": {"_count": 1}}, "carrying": {"_count": 1, "trays": {"_count": 1}}, "tossed": {"_count": 1, "their": {"_count": 1}}, "that": {"_count": 1, "size": {"_count": 1}}, "than": {"_count": 1, "on": {"_count": 1}}, "sending": {"_count": 2, "a": {"_count": 1}, "books": {"_count": 1}}, "said": {"_count": 3, "See": {"_count": 1}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}}, "wincing": {"_count": 1, "": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 2, "it": {"_count": 1}, "him": {"_count": 1}}, "shook": {"_count": 1, "back": {"_count": 1}}, "screaming": {"_count": 1, "and": {"_count": 1}}, "trod": {"_count": 1, "on": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "hiding": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 4, "managing": {"_count": 1}, "coming": {"_count": 1}, "he": {"_count": 1}, "being": {"_count": 1}}, "all": {"_count": 2, "except": {"_count": 1}, "three": {"_count": 1}}, "yawning": {"_count": 1, "and": {"_count": 1}}, "apart": {"_count": 2, "they": {"_count": 1}, "and": {"_count": 1}}, "barely": {"_count": 1, "touched": {"_count": 1}}, "farther": {"_count": 1, "away": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "propelled": {"_count": 1, "him": {"_count": 1}}, "deep": {"_count": 1, "like": {"_count": 1}}, "Harry": {"_count": 5, "had": {"_count": 2}, "retreated": {"_count": 1}, "saw": {"_count": 1}, "could": {"_count": 1}}, "rubbing": {"_count": 2, "his": {"_count": 2}}, "still": {"_count": 4, "in": {"_count": 1}, "staring": {"_count": 1}, "looking": {"_count": 1}, "rubbing": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "had": {"_count": 1, "left": {"_count": 1}}, "slam": {"_count": 1, "into": {"_count": 1}}, "cracked": {"_count": 1, "": {"_count": 1}}, "reached": {"_count": 2, "up": {"_count": 1}, "their": {"_count": 1}}, "lift": {"_count": 1, "from": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "she": {"_count": 1, "looked": {"_count": 1}}, "carried": {"_count": 1, "him": {"_count": 1}}, "or": {"_count": 1, "face": {"_count": 1}}, "dragging": {"_count": 1, "along": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 8, "moment": {"_count": 1}, "color": {"_count": 1}, "Atrium": {"_count": 1}, "telescope": {"_count": 1}, "Invisibility": {"_count": 1}, "great": {"_count": 1}, "horned": {"_count": 1}, "flask": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "talking": {"_count": 1, "and": {"_count": 1}}, "remembering": {"_count": 1, "what": {"_count": 1}}, "once": {"_count": 3, "more": {"_count": 3}}, "staring": {"_count": 1, "at": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "while": {"_count": 1, "concealing": {"_count": 1}}, "her": {"_count": 2, "beads": {"_count": 1}, "hair": {"_count": 1}}, "allowing": {"_count": 1, "his": {"_count": 1}}, "taking": {"_count": 2, "his": {"_count": 1}, "out": {"_count": 1}}, "looked": {"_count": 1, "far": {"_count": 1}}, "showing": {"_count": 1, "then": {"_count": 1}}, "an": {"_count": 2, "the": {"_count": 1}, "we": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "grumbling": {"_count": 1, "and": {"_count": 1}}, "feeling": {"_count": 1, "nervous": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "hard": {"_count": 1, "on": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "slowly": {"_count": 1, "brushing": {"_count": 1}}, "stuffed": {"_count": 1, "his": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "now": {"_count": 1, "watching": {"_count": 1}}, "wand": {"_count": 1, "up": {"_count": 1}}, "taller": {"_count": 1, "than": {"_count": 1}}, "large": {"_count": 1, "as": {"_count": 1}}, "up": {"_count": 4, "the": {"_count": 1}, "on": {"_count": 2}, "": {"_count": 1}}, "landed": {"_count": 1, "hard": {"_count": 1}}, "which": {"_count": 2, "were": {"_count": 1}, "he": {"_count": 1}}, "moving": {"_count": 1, "rapidly": {"_count": 1}}, "stiff": {"_count": 1, "as": {"_count": 1}}, "kicked": {"_count": 1, "it": {"_count": 1}}, "sobbing": {"_count": 1, "and": {"_count": 1}}, "seized": {"_count": 1, "his": {"_count": 1}}, "off": {"_count": 2, "the": {"_count": 2}}, "giving": {"_count": 1, "himself": {"_count": 1}}, "leave": {"_count": 2, "the": {"_count": 2}}, "right": {"_count": 1, "in": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "masked": {"_count": 1, "by": {"_count": 1}}, "clattering": {"_count": 1, "and": {"_count": 1}}, "resting": {"_count": 2, "upon": {"_count": 2}}, "quickly": {"_count": 1, "": {"_count": 1}}, "uneasily": {"_count": 1, "": {"_count": 1}}, "immediately": {"_count": 1, "toward": {"_count": 1}}, "dragged": {"_count": 1, "": {"_count": 1}}, "slide": {"_count": 1, "a": {"_count": 1}}, "met": {"_count": 1, "something": {"_count": 1}}, "momentarily": {"_count": 1, "left": {"_count": 1}}, "sorting": {"_count": 1, "books": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "cringing": {"_count": 1, "away": {"_count": 1}}, "His": {"_count": 1, "chair": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "parted": {"_count": 1, "company": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "by": {"_count": 2, "Greyback": {"_count": 1}, "the": {"_count": 1}}, "drew": {"_count": 1, "out": {"_count": 1}}, "knelt": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 1, "at": {"_count": 1}}, "touched": {"_count": 1, "road": {"_count": 1}}, "walked": {"_count": 1, "around": {"_count": 1}}, "appeared": {"_count": 1, "out": {"_count": 1}}, "pointed": {"_count": 1, "her": {"_count": 1}}, "one": {"_count": 1, "Stunned": {"_count": 1}}, "flattened": {"_count": 1, "into": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "unarmed": {"_count": 1, "and": {"_count": 1}}, "Hidden": {"_count": 1, "beneath": {"_count": 1}}, "became": {"_count": 1, "hot": {"_count": 1}}}, "pointing": {"_count": 286, "at": {"_count": 115, "number": {"_count": 1}, "what": {"_count": 1}, "perfectly": {"_count": 1}, "two": {"_count": 1}, "Harrys": {"_count": 3}, "the": {"_count": 40}, "them": {"_count": 1}, "his": {"_count": 5}, "Ron": {"_count": 3}, "a": {"_count": 12}, "it": {"_count": 4}, "not": {"_count": 1}, "Professor": {"_count": 2}, "him": {"_count": 4}, "Blacks": {"_count": 1}, "Lupin": {"_count": 1}, "Black": {"_count": 3}, "Pettigrew": {"_count": 1}, "Harry": {"_count": 5}, "Pigwidgeons": {"_count": 1}, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}, "Wormtail": {"_count": 1}, "Fudge": {"_count": 1}, "an": {"_count": 2}, "himself": {"_count": 1}, "Seamus": {"_count": 1}, "her": {"_count": 2}, "mortal": {"_count": 3}, "Hagrid": {"_count": 1}, "one": {"_count": 1}, "Neville": {"_count": 1}, "Malfoy": {"_count": 1}, "Dumbledores": {"_count": 1}, "Luna": {"_count": 1}, "Ginny": {"_count": 1}, "Reguluss": {"_count": 1}, "Mr": {"_count": 1}, "you": {"_count": 1}, "Snapes": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 15, "a": {"_count": 5}, "two": {"_count": 2}, "something": {"_count": 1}, "the": {"_count": 6}, "work": {"_count": 1}}, "up": {"_count": 6, "at": {"_count": 5}, "a": {"_count": 1}}, "them": {"_count": 3, "in": {"_count": 1}, "into": {"_count": 1}, "out": {"_count": 1}}, "it": {"_count": 4, "at": {"_count": 2}, "over": {"_count": 1}, "directly": {"_count": 1}}, "down": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 2}}, "crashed": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "along": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 7, "that": {"_count": 4}, "his": {"_count": 1}, "of": {"_count": 1}, "Hedwig": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 2}, "one": {"_count": 1}}, "his": {"_count": 28, "finger": {"_count": 1}, "wand": {"_count": 23}, "own": {"_count": 3}, "thumb": {"_count": 1}}, "and": {"_count": 3, "hissing": {"_count": 1}, "laughing": {"_count": 1}, "there": {"_count": 1}}, "vaguely": {"_count": 1, "toward": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "first": {"_count": 2, "to": {"_count": 1}, "at": {"_count": 1}}, "uncertainly": {"_count": 1, "into": {"_count": 1}}, "toward": {"_count": 10, "the": {"_count": 5}, "Moody": {"_count": 1}, "a": {"_count": 3}, "it": {"_count": 1}}, "a": {"_count": 3, "shaking": {"_count": 1}, "stubby": {"_count": 1}, "sausage": {"_count": 1}}, "into": {"_count": 6, "the": {"_count": 5}, "each": {"_count": 1}}, "Rons": {"_count": 1, "wand": {"_count": 1}}, "straight": {"_count": 4, "at": {"_count": 2}, "upward": {"_count": 1}, "up": {"_count": 1}}, "directly": {"_count": 7, "at": {"_count": 7}}, "her": {"_count": 12, "wand": {"_count": 10}, "shaking": {"_count": 2}}, "right": {"_count": 3, "at": {"_count": 3}}, "over": {"_count": 2, "the": {"_count": 1}, "Rons": {"_count": 1}}, "the": {"_count": 3, "wands": {"_count": 1}, "wand": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}, "him": {"_count": 1, "out": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "unnecessarily": {"_count": 1, "at": {"_count": 1}}, "silently": {"_count": 1, "at": {"_count": 1}}, "Slytherins": {"_count": 1, "": {"_count": 1}}, "upward": {"_count": 2, "at": {"_count": 1}, "toward": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "uselessly": {"_count": 1, "at": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 2, "the": {"_count": 1}, "over": {"_count": 1}}, "after": {"_count": 1, "Ogden": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "dramatically": {"_count": 1, "at": {"_count": 1}}, "suddenly": {"_count": 1, "at": {"_count": 1}}, "warningly": {"_count": 1, "at": {"_count": 1}}, "frantically": {"_count": 1, "from": {"_count": 1}}, "like": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "suspended": {"_count": 1}}, "firstly": {"_count": 1, "at": {"_count": 1}}, "inward": {"_count": 1, "at": {"_count": 1}}, "Wormtails": {"_count": 1, "wand": {"_count": 1}}, "finger": {"_count": 1, "and": {"_count": 1}}, "Dracos": {"_count": 1, "wand": {"_count": 1}}}, "less": {"_count": 169, "like": {"_count": 7, "us": {"_count": 1}, "a": {"_count": 2}, "plants": {"_count": 1}, "your": {"_count": 2}, "Tom": {"_count": 1}}, "than": {"_count": 33, "last": {"_count": 1}, "twelve": {"_count": 2}, "the": {"_count": 5}, "fond": {"_count": 1}, "fortyseven": {"_count": 1}, "criminal": {"_count": 1}, "vicious": {"_count": 1}, "five": {"_count": 1}, "But": {"_count": 1}, "spirit": {"_count": 2}, "once": {"_count": 1}, "happy": {"_count": 2}, "twentyfour": {"_count": 1}, "his": {"_count": 2}, "eight": {"_count": 1}, "half": {"_count": 1}, "Horcruxes": {"_count": 1}, "three": {"_count": 1}, "some": {"_count": 1}, "Potter": {"_count": 1}, "ghost": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "an": {"_count": 1}, "I": {"_count": 1}}, "and": {"_count": 3, "less": {"_count": 1}, "furfree": {"_count": 1}, "evil": {"_count": 1}}, "every": {"_count": 1, "second": {"_count": 1}}, "welcome": {"_count": 2, "turned": {"_count": 1}, "to": {"_count": 1}}, "time": {"_count": 1, "than": {"_count": 1}}, "everything": {"_count": 1, "that": {"_count": 1}}, "everywhere": {"_count": 1, "Not": {"_count": 1}}, "thin": {"_count": 1, "anyway": {"_count": 1}}, "able": {"_count": 1, "players": {"_count": 1}}, "hassle": {"_count": 1, "if": {"_count": 1}}, "frightening": {"_count": 1, "": {"_count": 1}}, "likely": {"_count": 4, "to": {"_count": 3}, "that": {"_count": 1}}, "misty": {"_count": 1, "": {"_count": 1}}, "fun": {"_count": 1, "Professor": {"_count": 1}}, "dangerous": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "so": {"_count": 1, "while": {"_count": 1}}, "less": {"_count": 1, "human": {"_count": 1}}, "human": {"_count": 4, "less": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}}, "complex": {"_count": 1, "when": {"_count": 1}}, "coordinated": {"_count": 1, "on": {"_count": 1}}, "impressive": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 1, "same": {"_count": 1}}, "preoccupied": {"_count": 1, "Harry": {"_count": 1}}, "amused": {"_count": 1, "when": {"_count": 1}}, "worried": {"_count": 1, "than": {"_count": 1}}, "what": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "laughter": {"_count": 1, "and": {"_count": 1}}, "easy": {"_count": 1, "to": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "lucky": {"_count": 1, "he": {"_count": 1}}, "frivolous": {"_count": 1, "had": {"_count": 1}}, "stupid": {"_count": 1, "than": {"_count": 1}}, "crowded": {"_count": 3, "now": {"_count": 1}, "than": {"_count": 1}, "room": {"_count": 1}}, "you": {"_count": 1, "lot": {"_count": 1}}, "lined": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "recent": {"_count": 1, "victims": {"_count": 1}}, "stubborn": {"_count": 1, "": {"_count": 1}}, "soundly": {"_count": 1, "in": {"_count": 1}}, "noisy": {"_count": 1, "than": {"_count": 1}}, "painful": {"_count": 1, "to": {"_count": 1}}, "calmly": {"_count": 1, "": {"_count": 1}}, "unpleasant": {"_count": 1, "for": {"_count": 1}}, "gloomy": {"_count": 1, "than": {"_count": 1}}, "imposing": {"_count": 1, "the": {"_count": 1}}, "ugly": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 2, "everybody": {"_count": 1}, "fear": {"_count": 1}}, "gray": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "person": {"_count": 1}}, "sympathetic": {"_count": 1, "toward": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "anxious": {"_count": 1, "": {"_count": 1}}, "trustworthy": {"_count": 1, "than": {"_count": 1}}, "focused": {"_count": 1, "upon": {"_count": 1}}, "obviously": {"_count": 1, "partisan": {"_count": 1}}, "authority": {"_count": 1, "than": {"_count": 1}}, "attention": {"_count": 1, "on": {"_count": 1}}, "quiet": {"_count": 1, "than": {"_count": 1}}, "thing": {"_count": 1, "to": {"_count": 1}}, "funny": {"_count": 1, "in": {"_count": 1}}, "enjoyable": {"_count": 1, "tasks": {"_count": 1}}, "of": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "chance": {"_count": 1, "of": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "his": {"_count": 1, "instinct": {"_count": 1}}, "effective": {"_count": 1, "than": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "colorful": {"_count": 1, "than": {"_count": 1}}, "breakfast": {"_count": 1, "": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "pressure": {"_count": 1, "on": {"_count": 1}}, "massive": {"_count": 1, "than": {"_count": 1}}, "because": {"_count": 2, "of": {"_count": 2}}, "interested": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "impressed": {"_count": 1, "by": {"_count": 1}}, "talk": {"_count": 1, "a": {"_count": 1}}, "cozy": {"_count": 1, "spot": {"_count": 1}}, "peaceable": {"_count": 1, "": {"_count": 1}}, "valuable": {"_count": 1, "said": {"_count": 1}}, "resolution": {"_count": 1, "than": {"_count": 1}}, "light": {"_count": 1, "hearted": {"_count": 1}}, "fact": {"_count": 1, "than": {"_count": 1}}, "pronounced": {"_count": 1, "Her": {"_count": 1}}, "for": {"_count": 2, "us": {"_count": 1}, "myself": {"_count": 1}}, "I": {"_count": 2, "can": {"_count": 1}, "think": {"_count": 1}}, "hair": {"_count": 1, "zan": {"_count": 1}}, "gifted": {"_count": 1, "Order": {"_count": 1}}, "handsome": {"_count": 1, "than": {"_count": 1}}, "mess": {"_count": 1, "to": {"_count": 1}}, "sense": {"_count": 1, "it": {"_count": 1}}, "noise": {"_count": 1, "than": {"_count": 1}}, "powerful": {"_count": 2, "than": {"_count": 2}}, "easily": {"_count": 1, "definable": {"_count": 1}}, "joyful": {"_count": 1, "it": {"_count": 1}}, "important": {"_count": 1, "to": {"_count": 1}}, "regretted": {"_count": 1, "Muggles": {"_count": 1}}, "that": {"_count": 1, "Bill": {"_count": 1}}, "suspicious": {"_count": 1, "": {"_count": 1}}, "certainty": {"_count": 1, "": {"_count": 1}}, "pleased": {"_count": 1, "to": {"_count": 1}}, "whats": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "now": {"_count": 1}}, "peculiar": {"_count": 1, "in": {"_count": 1}}, "since": {"_count": 1, "his": {"_count": 1}}, "shabby": {"_count": 1, "and": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}}, "kicking": {"_count": 8, "his": {"_count": 1, "mother": {"_count": 1}}, "peoples": {"_count": 1, "shins": {"_count": 1}}, "Lockharts": {"_count": 1, "trunk": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "nearby": {"_count": 1}}, "and": {"_count": 1, "writhing": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "aside": {"_count": 1, "the": {"_count": 1}}}, "mother": {"_count": 267, "all": {"_count": 3, "the": {"_count": 2}, "right": {"_count": 1}}, "": {"_count": 47, ".": {"_count": 41}, "?": {"_count": 3}, "!": {"_count": 3}}, "and": {"_count": 33, "father": {"_count": 19}, "thrown": {"_count": 1}, "his": {"_count": 2}, "oh": {"_count": 1}, "hugged": {"_count": 1}, "fathers": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}, "sister": {"_count": 2}, "me": {"_count": 1}, "caring": {"_count": 1}, "my": {"_count": 1}, "broke": {"_count": 1}}, "would": {"_count": 3, "give": {"_count": 1}, "have": {"_count": 1}, "pop": {"_count": 1}}, "I": {"_count": 3, "dont": {"_count": 1}, "would": {"_count": 1}, "could": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "craved": {"_count": 1}}, "had": {"_count": 14, "just": {"_count": 2}, "rubbed": {"_count": 1}, "been": {"_count": 4}, "died": {"_count": 2}, "called": {"_count": 1}, "come": {"_count": 1}, "a": {"_count": 2}, "taught": {"_count": 1}}, "fondly": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "became": {"_count": 1}}, "said": {"_count": 5, "and": {"_count": 1}, "Hagrid": {"_count": 1}, "Ron": {"_count": 2}, "Draco": {"_count": 1}}, "waving": {"_count": 1, "and": {"_count": 1}}, "disappear": {"_count": 1, "as": {"_count": 1}}, "neednt": {"_count": 1, "have": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "died": {"_count": 11, "to": {"_count": 6}, "just": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "unless": {"_count": 1}, "and": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "soon": {"_count": 1, "Harry": {"_count": 1}}, "die": {"_count": 1, "of": {"_count": 1}}, "alight": {"_count": 1, "with": {"_count": 1}}, "got": {"_count": 1, "back": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "year": {"_count": 1}, "slip": {"_count": 1}}, "was": {"_count": 16, "ill": {"_count": 1}, "screaming": {"_count": 1}, "occupied": {"_count": 1}, "blonde": {"_count": 1}, "a": {"_count": 5}, "not": {"_count": 1}, "Muggleborn": {"_count": 1}, "one": {"_count": 1}, "worth": {"_count": 1}, "called": {"_count": 1}, "friendly": {"_count": 1}, "killed": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "Tell": {"_count": 1, "me": {"_count": 1}}, "roused": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "they": {"_count": 1}}, "came": {"_count": 1, "hurrying": {"_count": 1}}, "Dont": {"_count": 1, "be": {"_count": 1}}, "youve": {"_count": 1, "been": {"_count": 1}}, "hears": {"_count": 1, "whats": {"_count": 1}}, "wont": {"_count": 1, "say": {"_count": 1}}, "likes": {"_count": 1, "him": {"_count": 1}}, "could": {"_count": 1, "do": {"_count": 1}}, "really": {"_count": 1, "that": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "doing": {"_count": 1}}, "or": {"_count": 3, "yer": {"_count": 1}, "someone": {"_count": 1}, "of": {"_count": 1}}, "we": {"_count": 2, "can": {"_count": 1}, "liked": {"_count": 1}}, "like": {"_count": 5, "the": {"_count": 1}, "daughter": {"_count": 1}, "that": {"_count": 2}, "a": {"_count": 1}}, "where": {"_count": 1, "anyone": {"_count": 1}}, "by": {"_count": 1, "nightfall": {"_count": 1}}, "killed": {"_count": 1, "innocent": {"_count": 1}}, "with": {"_count": 1, "amazement": {"_count": 1}}, "a": {"_count": 1, "witch": {"_count": 1}}, "left": {"_count": 2, "upon": {"_count": 1}, "in": {"_count": 1}}, "once": {"_count": 1, "gave": {"_count": 1}}, "to": {"_count": 8, "die": {"_count": 2}, "start": {"_count": 1}, "join": {"_count": 1}, "protect": {"_count": 1}, "plant": {"_count": 1}, "daughter": {"_count": 1}, "kiss": {"_count": 1}}, "saved": {"_count": 1, "me": {"_count": 1}}, "in": {"_count": 3, "case": {"_count": 1}, "question": {"_count": 1}, "exchange": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "his": {"_count": 3, "mouth": {"_count": 1}, "father": {"_count": 2}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "doing": {"_count": 2, "here": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "could": {"_count": 1}}, "didnt": {"_count": 1, "have": {"_count": 1}}, "blasted": {"_count": 1, "me": {"_count": 1}}, "Andromeda": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "grunting": {"_count": 1, "in": {"_count": 1}}, "pushed": {"_count": 1, "him": {"_count": 1}}, "why": {"_count": 1, "dont": {"_count": 1}}, "snapped": {"_count": 1, "Seamus": {"_count": 1}}, "shell": {"_count": 1, "weasel": {"_count": 1}}, "see": {"_count": 1, "Talk": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "He": {"_count": 1}}, "dropped": {"_count": 1, "an": {"_count": 1}}, "tottered": {"_count": 1, "away": {"_count": 1}}, "were": {"_count": 1, "waving": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "Minister": {"_count": 1, "she": {"_count": 1}}, "took": {"_count": 1, "up": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "that": {"_count": 1, "hung": {"_count": 1}}, "Slughorn": {"_count": 1, "added": {"_count": 1}}, "hoisted": {"_count": 1, "the": {"_count": 1}}, "understand": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "died": {"_count": 1}}, "not": {"_count": 1, "Rons": {"_count": 1}}, "from": {"_count": 1, "what": {"_count": 1}}, "Your": {"_count": 1, "mother": {"_count": 1}}, "cant": {"_count": 2, "have": {"_count": 1}, "produce": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "Of": {"_count": 1, "course": {"_count": 1}}, "tonight": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "home": {"_count": 1, "they": {"_count": 1}}, "Muggle": {"_count": 1, "father": {"_count": 1}}, "Kendra": {"_count": 2, "died": {"_count": 1}, "had": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "gave": {"_count": 2, "you": {"_count": 1}, "up": {"_count": 1}}, "might": {"_count": 1, "put": {"_count": 1}}, "kill": {"_count": 1, "her": {"_count": 1}}, "entered": {"_count": 1, "saying": {"_count": 1}}, "confessed": {"_count": 1, "sneered": {"_count": 1}}, "stood": {"_count": 1, "watching": {"_count": 1}}, "lessons": {"_count": 1, "growled": {"_count": 1}}, "looked": {"_count": 1, "after": {"_count": 1}}, "wasnt": {"_count": 1, "as": {"_count": 1}}, "they": {"_count": 1, "say": {"_count": 1}}, "fell": {"_count": 1, "ill": {"_count": 1}}, "walk": {"_count": 1, "forward": {"_count": 1}}, "smiled": {"_count": 1, "at": {"_count": 1}}, "laid": {"_count": 1, "upon": {"_count": 1}}, "did": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}}, "sweets": {"_count": 27, "": {"_count": 6, ".": {"_count": 6}}, "or": {"_count": 1, "perhaps": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 3, "joined": {"_count": 1}, "bottles": {"_count": 1}, "cakes": {"_count": 1}}, "from": {"_count": 1, "home": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}, "fell": {"_count": 1, "into": {"_count": 1}}, "managed": {"_count": 1, "second": {"_count": 1}}, "imaginable": {"_count": 1, "": {"_count": 1}}, "Droobles": {"_count": 1, "Best": {"_count": 1}}, "the": {"_count": 1, "three": {"_count": 1}}, "had": {"_count": 1, "spilled": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "including": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "empty": {"_count": 1, "ink": {"_count": 1}}, "Quidditch": {"_count": 1, "tickets": {"_count": 1}}}, "best": {"_count": 322, "place": {"_count": 1, "for": {"_count": 1}}, "get": {"_count": 1, "this": {"_count": 1}}, "friend": {"_count": 23, "Piers": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "": {"_count": 6}, "Ron": {"_count": 1}, "Dean": {"_count": 1}, "Lee": {"_count": 1}, "and": {"_count": 3}, "back": {"_count": 1}, "in": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 1}, "plotting": {"_count": 1}}, "morning": {"_count": 1, "hed": {"_count": 1}}, "not": {"_count": 7, "to": {"_count": 7}}, "": {"_count": 13, ".": {"_count": 11}, "!": {"_count": 2}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "witches": {"_count": 1, "an": {"_count": 1}}, "left": {"_count": 2, "alone": {"_count": 2}}, "if": {"_count": 10, "I": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 2}, "left": {"_count": 1}, "we": {"_count": 4}, "they": {"_count": 1}}, "I": {"_count": 3, "ever": {"_count": 1}, "hear": {"_count": 1}, "could": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "birthday": {"_count": 1, "of": {"_count": 1}}, "school": {"_count": 1, "of": {"_count": 1}}, "game": {"_count": 1, "in": {"_count": 1}}, "well": {"_count": 1, "do": {"_count": 1}}, "team": {"_count": 3, "Gryffindors": {"_count": 1}, "": {"_count": 1}, "Hogwarts": {"_count": 1}}, "Christmas": {"_count": 2, "hed": {"_count": 1}, "day": {"_count": 1}}, "of": {"_count": 14, "all": {"_count": 2}, "everything": {"_count": 1}, "times": {"_count": 2}, "us": {"_count": 1}, "hearing": {"_count": 1}, "people": {"_count": 1}, "your": {"_count": 1}, "evenings": {"_count": 1}, "friends": {"_count": 1}, "which": {"_count": 1}, "chums": {"_count": 1}, "you": {"_count": 1}}, "thing": {"_count": 6, "will": {"_count": 1}, "to": {"_count": 2}, "that": {"_count": 2}, "you": {"_count": 1}}, "teachers": {"_count": 1, "if": {"_count": 1}}, "he": {"_count": 7, "said": {"_count": 1}, "could": {"_count": 5}, "The": {"_count": 1}}, "evening": {"_count": 1, "of": {"_count": 1}}, "grades": {"_count": 1, "of": {"_count": 1}}, "friends": {"_count": 14, "Ron": {"_count": 2}, "is": {"_count": 3}, "hell": {"_count": 1}, "was": {"_count": 2}, "at": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}, "were": {"_count": 1}, "sister": {"_count": 1}}, "spell": {"_count": 1, "to": {"_count": 1}}, "Have": {"_count": 1, "you": {"_count": 1}}, "house": {"_count": 1, "Ive": {"_count": 1}}, "broom": {"_count": 3, "Rons": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "one": {"_count": 4, "there": {"_count": 1}, "": {"_count": 2}, "so": {"_count": 1}}, "man": {"_count": 7, "for": {"_count": 2}, "when": {"_count": 1}, "": {"_count": 1}, "won": {"_count": 1}, "at": {"_count": 1}, "once": {"_count": 1}}, "wishes": {"_count": 2, "Sir": {"_count": 1}, "Yours": {"_count": 1}}, "student": {"_count": 2, "of": {"_count": 2}}, "plan": {"_count": 1, "weve": {"_count": 1}}, "yet": {"_count": 1, "Id": {"_count": 1}}, "to": {"_count": 26, "look": {"_count": 1}, "disperse": {"_count": 1}, "get": {"_count": 4}, "disrupt": {"_count": 1}, "have": {"_count": 1}, "act": {"_count": 1}, "accept": {"_count": 1}, "phrase": {"_count": 1}, "leave": {"_count": 1}, "Ron": {"_count": 1}, "hide": {"_count": 1}, "know": {"_count": 1}, "pretend": {"_count": 1}, "attack": {"_count": 1}, "smash": {"_count": 1}, "embark": {"_count": 1}, "lull": {"_count": 1}, "impress": {"_count": 1}, "be": {"_count": 1}, "wear": {"_count": 1}, "undermine": {"_count": 1}, "continue": {"_count": 1}, "do": {"_count": 1}}, "teacher": {"_count": 1, "here": {"_count": 1}}, "story": {"_count": 1, "youve": {"_count": 1}}, "weapons": {"_count": 1, "Dumbledore": {"_count": 1}}, "bit": {"_count": 2, "was": {"_count": 1}, "is": {"_count": 1}}, "Hagrid": {"_count": 1, "It": {"_count": 1}}, "families": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 4, "know": {"_count": 1}, "arrive": {"_count": 1}, "ever": {"_count": 1}, "can": {"_count": 1}}, "suited": {"_count": 2, "to": {"_count": 2}}, "robes": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "could": {"_count": 1}, "got": {"_count": 1}}, "Defense": {"_count": 3, "Against": {"_count": 3}}, "ruddy": {"_count": 1, "team": {"_count": 1}}, "chairs": {"_count": 1, "by": {"_count": 1}}, "Seeker": {"_count": 1, "weve": {"_count": 1}}, "chance": {"_count": 6, "was": {"_count": 2}, "is": {"_count": 1}, "of": {"_count": 1}, "yet": {"_count": 1}, "weve": {"_count": 1}}, "started": {"_count": 1, "avoiding": {"_count": 1}}, "chocolate": {"_count": 1, "": {"_count": 1}}, "practice": {"_count": 1, "ever": {"_count": 1}}, "moves": {"_count": 2, "faultlessly": {"_count": 1}, "twice": {"_count": 1}}, "Patronus": {"_count": 1, "": {"_count": 1}}, "times": {"_count": 1, "of": {"_count": 1}}, "part": {"_count": 3, "of": {"_count": 3}}, "men": {"_count": 1, "in": {"_count": 1}}, "sport": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 1, "wasnt": {"_count": 1}}, "way": {"_count": 7, "to": {"_count": 6}, "of": {"_count": 1}}, "for": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "suit": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "racing": {"_count": 1, "brooms": {"_count": 1}}, "Beater": {"_count": 1, "the": {"_count": 1}}, "places": {"_count": 1, "": {"_count": 1}}, "quill": {"_count": 1, "reduced": {"_count": 1}}, "For": {"_count": 1, "Hufflepuff": {"_count": 1}}, "from": {"_count": 1, "each": {"_count": 1}}, "moment": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "subject": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "job": {"_count": 1, "in": {"_count": 1}}, "Seekers": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 5, "very": {"_count": 1}, "nobody": {"_count": 1}, "Fred": {"_count": 1}, "if": {"_count": 1}, "horrible": {"_count": 1}}, "Auror": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 4, "": {"_count": 2}, "flying": {"_count": 1}, "magic": {"_count": 1}}, "you": {"_count": 4, "know": {"_count": 1}, "can": {"_count": 1}, "could": {"_count": 1}, "are": {"_count": 1}}, "after": {"_count": 1, "you": {"_count": 1}}, "this": {"_count": 1, "Christmas": {"_count": 1}}, "looking": {"_count": 1, "girls": {"_count": 1}}, "interests": {"_count": 6, "at": {"_count": 5}, "well": {"_count": 1}}, "things": {"_count": 2, "about": {"_count": 2}}, "Rita": {"_count": 1, "can": {"_count": 1}}, "in": {"_count": 8, "some": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}, "our": {"_count": 2}}, "when": {"_count": 2, "he": {"_count": 1}, "theyre": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Lupin": {"_count": 1}, "Slughorn": {"_count": 1}}, "clothes": {"_count": 1, "for": {"_count": 1}}, "whether": {"_count": 1, "to": {"_count": 1}}, "wizards": {"_count": 1, "cannot": {"_count": 1}}, "magic": {"_count": 1, "school": {"_count": 1}}, "into": {"_count": 1, "my": {"_count": 1}}, "hat": {"_count": 1, "Harry": {"_count": 1}}, "mate": {"_count": 4, "but": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 1}}, "lessons": {"_count": 1, "in": {"_count": 1}}, "fires": {"_count": 1, "an": {"_count": 1}}, "seats": {"_count": 1, "by": {"_count": 1}}, "viewed": {"_count": 1, "at": {"_count": 1}}, "experts": {"_count": 1, "were": {"_count": 1}}, "that": {"_count": 2, "we": {"_count": 1}, "can": {"_count": 1}}, "position": {"_count": 1, "to": {"_count": 1}}, "hope": {"_count": 3, "was": {"_count": 1}, "we": {"_count": 1}, "to": {"_count": 1}}, "however": {"_count": 1, "will": {"_count": 1}}, "advantage": {"_count": 1, "when": {"_count": 1}}, "pals": {"_count": 1, "if": {"_count": 1}}, "policy": {"_count": 1, "when": {"_count": 1}}, "Keeper": {"_count": 1, "I": {"_count": 1}}, "kiss": {"_count": 1, "hes": {"_count": 1}}, "goal": {"_count": 1, "scorer": {"_count": 1}}, "potionmaker": {"_count": 2, "hed": {"_count": 1}, "in": {"_count": 1}}, "known": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "efforts": {"_count": 2, "in": {"_count": 1}, "into": {"_count": 1}}, "terms": {"_count": 1, "who": {"_count": 1}}, "Quidditch": {"_count": 1, "practices": {"_count": 1}}, "source": {"_count": 1, "of": {"_count": 1}}, "replied": {"_count": 1, "Severus": {"_count": 1}}, "laid": {"_count": 1, "plans": {"_count": 1}}, "loved": {"_count": 1, "of": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "although": {"_count": 1, "I": {"_count": 1}}, "but": {"_count": 1, "were": {"_count": 1}}, "with": {"_count": 1, "it": {"_count": 1}}, "disguises": {"_count": 1, "possible": {"_count": 1}}, "always": {"_count": 1, "eternally": {"_count": 1}}, "which": {"_count": 1, "one": {"_count": 1}}, "results": {"_count": 1, "however": {"_count": 1}}, "protected": {"_count": 1, "": {"_count": 1}}, "home": {"_count": 1, "he": {"_count": 1}}, "lieutenant": {"_count": 1, "exploded": {"_count": 1}}}, "firmly": {"_count": 112, "": {"_count": 58, ".": {"_count": 58}}, "and": {"_count": 7, "pulled": {"_count": 1}, "Snape": {"_count": 1}, "grasping": {"_count": 1}, "clearly": {"_count": 1}, "she": {"_count": 1}, "Ive": {"_count": 1}, "swayed": {"_count": 1}}, "lodged": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 3, "Ernie": {"_count": 1}, "his": {"_count": 1}, "was": {"_count": 1}}, "in": {"_count": 2, "one": {"_count": 1}, "place": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "on": {"_count": 3, "either": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 1}}, "around": {"_count": 2, "his": {"_count": 2}}, "to": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "from": {"_count": 2, "behind": {"_count": 1}, "his": {"_count": 1}}, "Just": {"_count": 1, "as": {"_count": 1}}, "Im": {"_count": 1, "quite": {"_count": 1}}, "snatching": {"_count": 1, "up": {"_count": 1}}, "rubbing": {"_count": 1, "the": {"_count": 1}}, "fully": {"_count": 1, "aware": {"_count": 1}}, "getting": {"_count": 1, "to": {"_count": 1}}, "between": {"_count": 1, "her": {"_count": 1}}, "passing": {"_count": 1, "him": {"_count": 1}}, "back": {"_count": 3, "on": {"_count": 1}, "to": {"_count": 1}, "onto": {"_count": 1}}, "handing": {"_count": 1, "the": {"_count": 1}}, "planted": {"_count": 1, "upon": {"_count": 1}}, "again": {"_count": 1, "inscribing": {"_count": 1}}, "shut": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "closed": {"_count": 1, "against": {"_count": 1}}, "waving": {"_count": 1, "away": {"_count": 1}}, "Reparo": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "late": {"_count": 1, "on": {"_count": 1}}, "doorless": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "youve": {"_count": 1}}, "grabbing": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "above": {"_count": 1, "mine": {"_count": 1}}, "for": {"_count": 1, "payment": {"_count": 1}}, "turned": {"_count": 1, "her": {"_count": 1}}, "you": {"_count": 1, "and": {"_count": 1}}}, "written": {"_count": 77, "them": {"_count": 2, "a": {"_count": 1}, "out": {"_count": 1}}, "about": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 9, "him": {"_count": 3}, "Harry": {"_count": 1}, "Sirius": {"_count": 3}, "the": {"_count": 1}, "me": {"_count": 1}}, "in": {"_count": 10, "emerald": {"_count": 1}, "gold": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "invisible": {"_count": 1}}, "on": {"_count": 10, "the": {"_count": 5}, "it": {"_count": 3}, "": {"_count": 2}}, "only": {"_count": 1, "two": {"_count": 1}}, "papers": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "almost": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "upon": {"_count": 2, "it": {"_count": 2}}, "Tears": {"_count": 1, "fill": {"_count": 1}}, "by": {"_count": 1, "him": {"_count": 1}}, "anything": {"_count": 1, "at": {"_count": 1}}, "very": {"_count": 1, "hastily": {"_count": 1}}, "decentlength": {"_count": 1, "answers": {"_count": 1}}, "warning": {"_count": 1, "from": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "title": {"_count": 1}}, "a": {"_count": 4, "single": {"_count": 1}, "date": {"_count": 1}, "book": {"_count": 1}, "biography": {"_count": 1}}, "his": {"_count": 1, "essays": {"_count": 1}}, "down": {"_count": 1, "like": {"_count": 1}}, "for": {"_count": 2, "you": {"_count": 1}, "those": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "hardly": {"_count": 1, "anything": {"_count": 1}}, "confession": {"_count": 1, "from": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "exam": {"_count": 2, "next": {"_count": 1}, "difficult": {"_count": 1}}, "questions": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 2, "already": {"_count": 1}, "too": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "\u2018try": {"_count": 1, "this": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "had": {"_count": 1}}, "To": {"_count": 1, "be": {"_count": 1}}, "Grindelwald": {"_count": 1, "with": {"_count": 1}}, "those": {"_count": 1, "words": {"_count": 1}}, "accounts": {"_count": 1, "some": {"_count": 1}}}, "letter": {"_count": 254, "": {"_count": 42, ".": {"_count": 33}, "?": {"_count": 6}, "!": {"_count": 3}}, "out": {"_count": 3, "of": {"_count": 3}}, "beside": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 19, "Harrys": {"_count": 1}, "him": {"_count": 1}, "under": {"_count": 1}, "Hogwarts": {"_count": 3}, "home": {"_count": 1}, "Sirius": {"_count": 1}, "my": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 3}, "an": {"_count": 1}, "anyway": {"_count": 1}, "a": {"_count": 1}, "Albus": {"_count": 1}, "Dumbledore": {"_count": 1}, "Lily": {"_count": 1}}, "for": {"_count": 5, "Harry": {"_count": 1}, "me": {"_count": 1}, "you": {"_count": 1}, "every": {"_count": 1}, "instance": {"_count": 1}}, "addressed": {"_count": 3, "so": {"_count": 1}, "to": {"_count": 2}}, "H": {"_count": 2, "": {"_count": 2}}, "bombs": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 3, "was": {"_count": 2}, "had": {"_count": 1}}, "open": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "to": {"_count": 16, "read": {"_count": 1}, "get": {"_count": 1}, "anyone": {"_count": 1}, "Sirius": {"_count": 2}, "the": {"_count": 2}, "Harry": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "Percy": {"_count": 1}, "Ron": {"_count": 1}, "clasp": {"_count": 1}, "Dumbledore": {"_count": 1}, "discuss": {"_count": 1}, "Grindelwald": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 2}, "had": {"_count": 1}, "clapped": {"_count": 1}}, "back": {"_count": 2, "inside": {"_count": 1}, "out": {"_count": 1}}, "than": {"_count": 1, "up": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "half": {"_count": 1}}, "clutched": {"_count": 2, "in": {"_count": 2}}, "so": {"_count": 2, "they": {"_count": 1}, "often": {"_count": 1}}, "but": {"_count": 6, "Uncle": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 1}, "Aunt": {"_count": 2}}, "writer": {"_count": 1, "was": {"_count": 1}}, "Dumbledore": {"_count": 1, "left": {"_count": 1}}, "and": {"_count": 13, "read": {"_count": 2}, "gulped": {"_count": 1}, "a": {"_count": 2}, "unfolded": {"_count": 1}, "shouted": {"_count": 1}, "began": {"_count": 1}, "slipped": {"_count": 1}, "put": {"_count": 1}, "then": {"_count": 1}, "continued": {"_count": 1}, "the": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "said": {"_count": 2}}, "here": {"_count": 1, "from": {"_count": 1}}, "carefully": {"_count": 1, "": {"_count": 1}}, "imagine": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "yer": {"_count": 1}, "a": {"_count": 1}}, "P": {"_count": 1, "on": {"_count": 1}}, "since": {"_count": 1, "Hagrids": {"_count": 1}}, "on": {"_count": 4, "top": {"_count": 1}, "yours": {"_count": 1}, "Mrs": {"_count": 1}, "the": {"_count": 1}}, "first": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "Id": {"_count": 1, "be": {"_count": 1}}, "was": {"_count": 9, "in": {"_count": 1}, "very": {"_count": 1}, "almost": {"_count": 1}, "enclosed": {"_count": 1}, "short": {"_count": 1}, "attached": {"_count": 1}, "an": {"_count": 1}, "here": {"_count": 1}, "gone": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "the": {"_count": 2, "owl": {"_count": 1}, "shard": {"_count": 1}}, "by": {"_count": 4, "owl": {"_count": 1}, "candlelight": {"_count": 1}, "brown": {"_count": 1}, "Muggle": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "a": {"_count": 1}, "though": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "you": {"_count": 3, "sent": {"_count": 1}, "stupid": {"_count": 1}, "and": {"_count": 1}}, "bearing": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 1, "week": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 2}}, "aside": {"_count": 1, "and": {"_count": 1}}, "lying": {"_count": 1, "open": {"_count": 1}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "perhaps": {"_count": 1, "written": {"_count": 1}}, "that": {"_count": 3, "was": {"_count": 1}, "whatever": {"_count": 1}, "Dumbledore": {"_count": 1}}, "onto": {"_count": 1, "Harrys": {"_count": 1}}, "had": {"_count": 3, "come": {"_count": 1}, "to": {"_count": 1}, "been": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 3}, "but": {"_count": 1}}, "at": {"_count": 4, "his": {"_count": 1}, "Harry": {"_count": 2}, "all": {"_count": 1}}, "I": {"_count": 2, "dont": {"_count": 1}, "left": {"_count": 1}}, "Were": {"_count": 1, "coming": {"_count": 1}}, "finished": {"_count": 1, "he": {"_count": 1}}, "Dear": {"_count": 1, "Sirius": {"_count": 1}}, "after": {"_count": 2, "all": {"_count": 1}, "another": {"_count": 1}}, "off": {"_count": 1, "its": {"_count": 1}}, "its": {"_count": 1, "too": {"_count": 1}}, "telling": {"_count": 2, "him": {"_count": 1}, "your": {"_count": 1}}, "attached": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "tied": {"_count": 3, "it": {"_count": 1}, "to": {"_count": 2}}, "thinking": {"_count": 1, "": {"_count": 1}}, "giving": {"_count": 1, "me": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 2, "twice": {"_count": 1}, "three": {"_count": 1}}, "of": {"_count": 1, "approximately": {"_count": 1}}, "It": {"_count": 1, "contained": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "now": {"_count": 1, "curling": {"_count": 1}}, "without": {"_count": 1, "resorting": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 2, "as": {"_count": 1}, "either": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "into": {"_count": 2, "Georges": {"_count": 1}, "her": {"_count": 1}}, "lay": {"_count": 1, "open": {"_count": 1}}, "box": {"_count": 1, "shut": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "finally": {"_count": 1, "gets": {"_count": 1}}, "might": {"_count": 2, "have": {"_count": 1}, "turn": {"_count": 1}}, "explaining": {"_count": 1, "about": {"_count": 1}}, "arrived": {"_count": 1, "Harry": {"_count": 1}}, "requesting": {"_count": 1, "an": {"_count": 1}}, "S": {"_count": 2, "inlaid": {"_count": 1}, "imagining": {"_count": 1}}, "kept": {"_count": 1, "by": {"_count": 1}}, "may": {"_count": 1, "be": {"_count": 1}}, "constitutes": {"_count": 1, "proof": {"_count": 1}}, "Ron": {"_count": 1, "at": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}}, "repeated": {"_count": 161, "Professor": {"_count": 2, "McGonagall": {"_count": 2}}, "as": {"_count": 3, "Wood": {"_count": 1}, "though": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 2}, "she": {"_count": 1}}, "while": {"_count": 1, "Hagrid": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 25}}, "coming": {"_count": 2, "right": {"_count": 1}, "to": {"_count": 1}}, "blankly": {"_count": 2, "": {"_count": 2}}, "suspiciously": {"_count": 1, "trying": {"_count": 1}}, "faintly": {"_count": 1, "": {"_count": 1}}, "hopefully": {"_count": 1, "as": {"_count": 1}}, "Dumbledores": {"_count": 1, "final": {"_count": 1}}, "all": {"_count": 1, "her": {"_count": 1}}, "frowning": {"_count": 2, "": {"_count": 2}}, "looking": {"_count": 3, "significantly": {"_count": 1}, "around": {"_count": 1}, "awed": {"_count": 1}}, "Ron": {"_count": 7, "as": {"_count": 1}, "with": {"_count": 1}, "breathlessly": {"_count": 1}, "and": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 2}}, "under": {"_count": 1, "his": {"_count": 1}}, "mildly": {"_count": 1, "": {"_count": 1}}, "swinging": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "furious": {"_count": 1}, "thousand": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 4}, "disgust": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 1}, "Diggory": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "bewildered": {"_count": 1, "": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 3, "": {"_count": 2}, "his": {"_count": 1}}, "shaking": {"_count": 1, "with": {"_count": 1}}, "pounding": {"_count": 1, "his": {"_count": 1}}, "firmly": {"_count": 2, "": {"_count": 2}}, "dully": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 12, "poem": {"_count": 1}, "next": {"_count": 1}, "shadowy": {"_count": 1}, "drawling": {"_count": 1}, "Prime": {"_count": 2}, "wizard": {"_count": 1}, "word": {"_count": 1}, "words": {"_count": 1}, "argument": {"_count": 1}, "gesture": {"_count": 1}, "goblin": {"_count": 1}}, "Mundungus": {"_count": 1, "aghast": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "Madam": {"_count": 1, "Bones": {"_count": 1}}, "screeches": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "impatiently": {"_count": 1, "indicating": {"_count": 1}}, "horrified": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "red": {"_count": 1}, "spell": {"_count": 1}}, "Harry": {"_count": 14, "incredulously": {"_count": 2}, "weakly": {"_count": 1}, "sitting": {"_count": 1}, "shocked": {"_count": 1}, "": {"_count": 7}, "I": {"_count": 1}, "The": {"_count": 1}}, "checking": {"_count": 1, "her": {"_count": 1}}, "hazily": {"_count": 1, "": {"_count": 1}}, "coolly": {"_count": 1, "": {"_count": 1}}, "clearly": {"_count": 1, "thinking": {"_count": 1}}, "Lockhart": {"_count": 1, "looking": {"_count": 1}}, "Umbridge": {"_count": 2, "her": {"_count": 1}, "with": {"_count": 1}}, "Snape": {"_count": 5, "": {"_count": 3}, "sardonically": {"_count": 1}, "quietly": {"_count": 1}}, "Magorian": {"_count": 1, "as": {"_count": 1}}, "still": {"_count": 1, "gazing": {"_count": 1}}, "glumly": {"_count": 1, "": {"_count": 1}}, "Bellatrix": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "Dumbledore": {"_count": 3, "when": {"_count": 1}, "gravely": {"_count": 1}, "calmly": {"_count": 1}}, "Nick": {"_count": 1, "quietly": {"_count": 1}}, "wonderingly": {"_count": 1, "": {"_count": 1}}, "angrily": {"_count": 2, "": {"_count": 2}}, "Riddle": {"_count": 1, "": {"_count": 1}}, "stunned": {"_count": 1, "": {"_count": 1}}, "uncertainly": {"_count": 1, "": {"_count": 1}}, "tearing": {"_count": 1, "his": {"_count": 1}}, "McGonagall": {"_count": 1, "faintly": {"_count": 1}}, "Voldemort": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "Hestia": {"_count": 1, "her": {"_count": 1}}, "stupidly": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "George": {"_count": 1, "opening": {"_count": 1}}, "again": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "by": {"_count": 1, "Albus": {"_count": 1}}, "Greyback": {"_count": 1, "and": {"_count": 1}}, "Grey": {"_count": 1, "back": {"_count": 1}}, "brandishing": {"_count": 1, "it": {"_count": 1}}, "Aberforth": {"_count": 1, "ominously": {"_count": 1}}, "Helena": {"_count": 1, "Ravenclaw": {"_count": 1}}}, "faintly": {"_count": 37, "sitting": {"_count": 1, "back": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "annoyed": {"_count": 1, "": {"_count": 1}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "firelight": {"_count": 1}}, "green": {"_count": 1, "witch": {"_count": 1}}, "of": {"_count": 1, "mold": {"_count": 1}}, "fair": {"_count": 1, "fortune": {"_count": 1}}, "and": {"_count": 2, "stopped": {"_count": 1}, "now": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "sinister": {"_count": 1, "tinkling": {"_count": 1}}, "she": {"_count": 1, "climbed": {"_count": 1}}, "but": {"_count": 2, "Professor": {"_count": 1}, "clearly": {"_count": 1}}, "unsettled": {"_count": 1, "": {"_count": 1}}, "puzzled": {"_count": 1, "then": {"_count": 1}}, "still": {"_count": 1, "looking": {"_count": 1}}, "sick": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "from": {"_count": 1}}, "staring": {"_count": 1, "into": {"_count": 1}}, "moving": {"_count": 1, "his": {"_count": 1}}, "embarrassed": {"_count": 1, "and": {"_count": 1}}, "pink": {"_count": 1, "but": {"_count": 1}}, "falling": {"_count": 1, "into": {"_count": 1}}, "gold": {"_count": 1, "as": {"_count": 1}}, "Oh": {"_count": 1, "dont": {"_count": 1}}}, "Really": {"_count": 56, "Dumbledore": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 20, "?": {"_count": 18}, ".": {"_count": 1}, "!": {"_count": 1}}, "break": {"_count": 1, "your": {"_count": 1}}, "Severus": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "what": {"_count": 2, "has": {"_count": 1}, "nonsense": {"_count": 1}}, "witty": {"_count": 1, "giving": {"_count": 1}}, "upset": {"_count": 1, "she": {"_count": 1}}, "theyll": {"_count": 1, "wake": {"_count": 1}}, "Bill": {"_count": 1, "what": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "great": {"_count": 2, "": {"_count": 2}}, "romantic": {"_count": 1, "date": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "lovely": {"_count": 1, "": {"_count": 1}}, "get": {"_count": 1, "to": {"_count": 1}}, "superb": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "if": {"_count": 1}}, "cold": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "pleased": {"_count": 1, "": {"_count": 1}}, "easy": {"_count": 1, "he": {"_count": 1}}, "smart": {"_count": 1, "plan": {"_count": 1}}, "soon": {"_count": 1, "Harry": {"_count": 1}}, "advanced": {"_count": 1, "defensive": {"_count": 1}}, "you": {"_count": 1, "shouldnt": {"_count": 1}}, "stumped": {"_count": 1, "this": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "brilliant": {"_count": 2, "": {"_count": 2}}, "excellent": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Muriel": {"_count": 1, "how": {"_count": 1}}, "gives": {"_count": 1, "a": {"_count": 1}}}, "These": {"_count": 45, "people": {"_count": 2, "will": {"_count": 1}, "are": {"_count": 1}}, "tables": {"_count": 1, "were": {"_count": 1}}, "two": {"_count": 1, "are": {"_count": 1}}, "were": {"_count": 5, "the": {"_count": 1}, "long": {"_count": 1}, "so": {"_count": 1}, "rather": {"_count": 1}, "taken": {"_count": 1}}, "fantastic": {"_count": 1, "party": {"_count": 1}}, "birds": {"_count": 1, "": {"_count": 1}}, "words": {"_count": 8, "too": {"_count": 1}, "jolted": {"_count": 1}, "had": {"_count": 1}, "seemed": {"_count": 2}, "were": {"_count": 1}, "did": {"_count": 1}, "came": {"_count": 1}}, "days": {"_count": 2, "they": {"_count": 1}, "I": {"_count": 1}}, "names": {"_count": 1, "are": {"_count": 1}}, "disappearances": {"_count": 1, "seem": {"_count": 1}}, "deaths": {"_count": 1, "were": {"_count": 1}}, "furious": {"_count": 1, "thoughts": {"_count": 1}}, "demembers": {"_count": 1, "guard": {"_count": 1}}, "differences": {"_count": 1, "caused": {"_count": 1}}, "are": {"_count": 6, "easier": {"_count": 1}, "nice": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 2}, "dangerous": {"_count": 1}}, "things": {"_count": 1, "often": {"_count": 1}}, "plantes": {"_count": 1, "are": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "measures": {"_count": 1, "have": {"_count": 1}}, "pictures": {"_count": 1, "he": {"_count": 1}}, "girls": {"_count": 1, "are": {"_count": 1}}, "dreadful": {"_count": 1, "things": {"_count": 1}}, "accidents": {"_count": 1, "arent": {"_count": 1}}, "formed": {"_count": 1, "the": {"_count": 1}}, "frequent": {"_count": 1, "forays": {"_count": 1}}, "connections": {"_count": 1, "are": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}}, "understand": {"_count": 274, "him": {"_count": 6, "": {"_count": 4}, "while": {"_count": 1}, "Im": {"_count": 1}}, "them": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "Muggle": {"_count": 1, "money": {"_count": 1}}, "the": {"_count": 13, "beauty": {"_count": 1}, "trouble": {"_count": 1}, "steps": {"_count": 1}, "Hufflepuffs": {"_count": 1}, "mystery": {"_count": 1}, "position": {"_count": 1}, "students": {"_count": 1}, "principles": {"_count": 1}, "term": {"_count": 1}, "snakelike": {"_count": 1}, "incomparable": {"_count": 1}, "conversation": {"_count": 1}, "word": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "": {"_count": 61, ".": {"_count": 38}, "?": {"_count": 19}, "!": {"_count": 4}}, "why": {"_count": 23, "they": {"_count": 2}, "it": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 3}, "should": {"_count": 1}, "Uncle": {"_count": 1}, "but": {"_count": 2}, "he": {"_count": 2}, "she": {"_count": 2}, "his": {"_count": 1}, "soon": {"_count": 1}, "an": {"_count": 1}, "Sirius": {"_count": 1}, "hed": {"_count": 1}, "youd": {"_count": 1}, "Ron": {"_count": 1}}, "Professor": {"_count": 2, "": {"_count": 1}, "Hagrid": {"_count": 1}}, "who": {"_count": 1, "Can": {"_count": 1}}, "said": {"_count": 13, "Harry": {"_count": 6}, "Rita": {"_count": 1}, "Karkaroff": {"_count": 1}, "Dumbledore": {"_count": 2}, "Hagrid": {"_count": 1}, "Phineas": {"_count": 1}, "Lupin": {"_count": 1}}, "later": {"_count": 1, "Neville": {"_count": 1}}, "it": {"_count": 10, "is": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "either": {"_count": 1}, "they": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "this": {"_count": 4, "but": {"_count": 1}, "any": {"_count": 1}, "Had": {"_count": 1}, "": {"_count": 1}}, "sir": {"_count": 2, "of": {"_count": 1}, "said": {"_count": 1}}, "how": {"_count": 14, "he": {"_count": 3}, "Harry": {"_count": 1}, "Chos": {"_count": 1}, "they": {"_count": 2}, "you": {"_count": 2}, "the": {"_count": 1}, "that": {"_count": 1}, "unusual": {"_count": 1}, "it": {"_count": 1}, "we": {"_count": 1}}, "Quidditch": {"_count": 2, "said": {"_count": 1}, "snapped": {"_count": 1}}, "what": {"_count": 19, "you": {"_count": 2}, "Snape": {"_count": 1}, "Lupin": {"_count": 1}, "Dumbledore": {"_count": 1}, "was": {"_count": 4}, "dreadful": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 2}, "had": {"_count": 1}, "youre": {"_count": 2}, "a": {"_count": 1}, "Ive": {"_count": 1}, "these": {"_count": 1}}, "Parseltongue": {"_count": 1, "": {"_count": 1}}, "pleading": {"_count": 1, "or": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "Longbottom": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "wrong": {"_count": 1}}, "about": {"_count": 3, "about": {"_count": 1}, "Quidditch": {"_count": 1}, "Gringotts": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "I": {"_count": 2, "do": {"_count": 1}, "just": {"_count": 1}}, "that": {"_count": 12, "thing": {"_count": 1}, "": {"_count": 2}, "you": {"_count": 1}, "cant": {"_count": 1}, "I": {"_count": 1}, "there": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "Voldemort": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "a": {"_count": 5, "lot": {"_count": 1}, "word": {"_count": 4}}, "weve": {"_count": 1, "got": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "me": {"_count": 9, "": {"_count": 8}, "Harry": {"_count": 1}}, "you": {"_count": 6, "might": {"_count": 1}, "Moody": {"_count": 1}, "said": {"_count": 2}, "of": {"_count": 1}, "Kreacher": {"_count": 1}}, "if": {"_count": 2, "we": {"_count": 1}, "you": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "we": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "nobody": {"_count": 1}, "is": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "we": {"_count": 1, "did": {"_count": 1}}, "and": {"_count": 2, "least": {"_count": 1}, "none": {"_count": 1}}, "Dont": {"_count": 1, "you": {"_count": 1}}, "Yeah": {"_count": 1, "no": {"_count": 1}}, "in": {"_count": 2, "an": {"_count": 1}, "due": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "therefore": {"_count": 1, "why": {"_count": 1}}, "where": {"_count": 2, "they": {"_count": 1}, "Voldemort": {"_count": 1}}, "very": {"_count": 1, "little": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "normal": {"_count": 1, "English": {"_count": 1}}, "he": {"_count": 3, "felt": {"_count": 1}, "said": {"_count": 1}, "could": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "fine": {"_count": 1, "distinctions": {"_count": 1}}, "whispered": {"_count": 1, "Dumbledore": {"_count": 1}}, "my": {"_count": 2, "note": {"_count": 1}, "poor": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "more": {"_count": 1, "that": {"_count": 1}}, "people": {"_count": 1, "hid": {"_count": 1}}, "by": {"_count": 1, "that": {"_count": 1}}, "Hogwarts": {"_count": 1, "business": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "with": {"_count": 1, "James": {"_count": 1}}, "though": {"_count": 1, "just": {"_count": 1}}, "their": {"_count": 1, "pallid": {"_count": 1}}, "those": {"_count": 1, "things": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "better": {"_count": 1, "now": {"_count": 1}}, "popkin": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "whispered": {"_count": 1}}, "But": {"_count": 1, "there": {"_count": 1}}, "Harrys": {"_count": 1, "need": {"_count": 1}}, "Let": {"_count": 1, "go": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "these": {"_count": 1, "matters": {"_count": 1}}, "unless": {"_count": 1, "they": {"_count": 1}}, "murmured": {"_count": 1, "Mundungus": {"_count": 1}}, "now": {"_count": 1, "deluded": {"_count": 1}}}, "Hell": {"_count": 42, "be": {"_count": 20, "famous": {"_count": 1}, "with": {"_count": 1}, "back": {"_count": 1}, "all": {"_count": 6}, "fine": {"_count": 2}, "sacked": {"_count": 1}, "sick": {"_count": 1}, "in": {"_count": 1}, "delighted": {"_count": 1}, "okay": {"_count": 1}, "telling": {"_count": 1}, "here": {"_count": 1}, "dropping": {"_count": 1}, "easier": {"_count": 1}}, "have": {"_count": 4, "that": {"_count": 1}, "company": {"_count": 1}, "had": {"_count": 1}, "yer": {"_count": 1}}, "turn": {"_count": 1, "up": {"_count": 1}}, "flatten": {"_count": 1, "it": {"_count": 1}}, "lend": {"_count": 1, "you": {"_count": 1}}, "live": {"_count": 1, "said": {"_count": 1}}, "probably": {"_count": 1, "come": {"_count": 1}}, "accept": {"_count": 1, "anyone": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "never": {"_count": 2, "keep": {"_count": 1}, "have": {"_count": 1}}, "come": {"_count": 1, "round": {"_count": 1}}, "know": {"_count": 3, "whos": {"_count": 1}, "hell": {"_count": 1}, "wont": {"_count": 1}}, "find": {"_count": 1, "it": {"_count": 1}}, "give": {"_count": 1, "you": {"_count": 1}}, "kill": {"_count": 2, "me": {"_count": 1}, "my": {"_count": 1}}, "try": {"_count": 1, "and": {"_count": 1}}}, "famous": {"_count": 79, "a": {"_count": 1, "legend": {"_count": 1}}, "not": {"_count": 1, "knowing": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 10}, "!": {"_count": 2}}, "were": {"_count": 1, "they": {"_count": 1}}, "Harry": {"_count": 10, "": {"_count": 1}, "Potter": {"_count": 9}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "place": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "and": {"_count": 3, "I": {"_count": 1}, "youre": {"_count": 1}, "wants": {"_count": 1}}, "for": {"_count": 7, "": {"_count": 2}, "his": {"_count": 2}, "having": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "witches": {"_count": 2, "and": {"_count": 2}}, "games": {"_count": 1, "hed": {"_count": 1}}, "name": {"_count": 1, "any": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "Hogwarts": {"_count": 1, "Sorting": {"_count": 1}}, "wizard": {"_count": 1, "already": {"_count": 1}}, "than": {"_count": 1, "him": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 2}}, "good": {"_count": 1, "great": {"_count": 1}}, "capture": {"_count": 1, "of": {"_count": 1}}, "cases": {"_count": 1, "of": {"_count": 1}}, "murderer": {"_count": 1, "was": {"_count": 1}}, "players": {"_count": 1, "which": {"_count": 1}}, "hes": {"_count": 1, "always": {"_count": 1}}, "musical": {"_count": 1, "group": {"_count": 1}}, "wizards": {"_count": 1, "that": {"_count": 1}}, "International": {"_count": 1, "Quidditch": {"_count": 1}}, "Parselmouth": {"_count": 1, "of": {"_count": 1}}, "Auror": {"_count": 1, "": {"_count": 1}}, "actresss": {"_count": 1, "divorce": {"_count": 1}}, "husband": {"_count": 1, "as": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "Healers": {"_count": 1, "and": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "very": {"_count": 1, "gifted": {"_count": 1}}, "the": {"_count": 1, "successful": {"_count": 1}}, "expupils": {"_count": 1, "a": {"_count": 1}}, "liontopped": {"_count": 1, "hat": {"_count": 1}}, "founder": {"_count": 1, "of": {"_count": 1}}, "pronouncements": {"_count": 1, "that": {"_count": 1}}, "ancestor": {"_count": 1, "": {"_count": 1}}, "achievements": {"_count": 1, "": {"_count": 1}}, "defeat": {"_count": 1, "of": {"_count": 1}}, "Quidditch": {"_count": 1, "player": {"_count": 1}}, "In": {"_count": 1, "a": {"_count": 1}}, "even": {"_count": 1, "then": {"_count": 1}}, "or": {"_count": 1, "done": {"_count": 1}}, "attentionseeking": {"_count": 1, "and": {"_count": 1}}}, "legend": {"_count": 14, "I": {"_count": 1, "wouldnt": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "which": {"_count": 1}}, "sealed": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 2, "it": {"_count": 1}, "might": {"_count": 1}}, "HAVE": {"_count": 1, "A": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "THE": {"_count": 1, "WEIRD": {"_count": 1}}, "says": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "that": {"_count": 1}}}, "surprised": {"_count": 131, "if": {"_count": 14, "today": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "steam": {"_count": 1}, "he": {"_count": 3}, "that": {"_count": 1}, "I": {"_count": 1}, "shes": {"_count": 1}, "Uncle": {"_count": 1}, "all": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 27}}, "that": {"_count": 10, "the": {"_count": 3}, "Harry": {"_count": 3}, "Mr": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 24, "see": {"_count": 15}, "find": {"_count": 4}, "hear": {"_count": 3}, "run": {"_count": 1}, "know": {"_count": 1}}, "at": {"_count": 7, "the": {"_count": 2}, "her": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 2}, "what": {"_count": 1}}, "as": {"_count": 2, "I": {"_count": 1}, "anyone": {"_count": 1}}, "you": {"_count": 2, "havent": {"_count": 1}, "have": {"_count": 1}}, "the": {"_count": 2, "Daily": {"_count": 1}, "Mudbloods": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "George": {"_count": 1}}, "how": {"_count": 2, "well": {"_count": 1}, "many": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 1}, "stayed": {"_count": 1}, "promptly": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "all": {"_count": 1}}, "Harry": {"_count": 2, "so": {"_count": 1}, "nodded": {"_count": 1}}, "but": {"_count": 3, "gratified": {"_count": 1}, "followed": {"_count": 1}, "pleased": {"_count": 1}}, "what": {"_count": 1, "Kreacher": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "look": {"_count": 2, "": {"_count": 2}}, "his": {"_count": 1, "only": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "Derrick": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 2, "many": {"_count": 2}}, "and": {"_count": 3, "pleased": {"_count": 1}, "disappointed": {"_count": 1}, "a": {"_count": 1}}, "your": {"_count": 1, "broomstick": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Fred": {"_count": 1, "didnt": {"_count": 1}}, "therefore": {"_count": 1, "to": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "by": {"_count": 2, "what": {"_count": 1}, "this": {"_count": 1}}, "for": {"_count": 1, "he": {"_count": 1}}, "they": {"_count": 1, "dont": {"_count": 1}}, "The": {"_count": 1, "firewhisky": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 1, "in": {"_count": 1}}, "she": {"_count": 1, "forgot": {"_count": 1}}, "half": {"_count": 1, "amused": {"_count": 1}}}, "Day": {"_count": 19, "in": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 10, "!": {"_count": 2}, ".": {"_count": 6}, "?": {"_count": 2}}, "finishing": {"_count": 1, "at": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "cleaning": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "spent": {"_count": 1, "entirely": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "future": {"_count": 37, "there": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 1}, ".": {"_count": 5}}, "she": {"_count": 1, "told": {"_count": 1}}, "so": {"_count": 1, "Id": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "Hogsmeade": {"_count": 1, "visits": {"_count": 1}}, "selves": {"_count": 1, "by": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "and": {"_count": 2, "Dad": {"_count": 1}, "one": {"_count": 1}}, "prospects": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "risk": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "youre": {"_count": 1, "seeing": {"_count": 1}}, "didnt": {"_count": 1, "it": {"_count": 1}}, "may": {"_count": 1, "be": {"_count": 1}}, "careers": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "in": {"_count": 1}}, "which": {"_count": 1, "have": {"_count": 1}}, "reference": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "meetings": {"_count": 1, "": {"_count": 1}}, "Hogwarts": {"_count": 1, "student": {"_count": 1}}, "career": {"_count": 1, "seemed": {"_count": 1}}, "Harrys": {"_count": 1, "plans": {"_count": 1}}, "was": {"_count": 2, "so": {"_count": 1}, "free": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "books": {"_count": 249, "written": {"_count": 1, "about": {"_count": 1}}, "back": {"_count": 7, "": {"_count": 1}, "into": {"_count": 4}, "in": {"_count": 1}, "toward": {"_count": 1}}, "": {"_count": 42, ".": {"_count": 34}, "!": {"_count": 2}, "?": {"_count": 6}}, "and": {"_count": 37, "equipment": {"_count": 1}, "wands": {"_count": 1}, "broomsticks": {"_count": 1}, "mothers": {"_count": 1}, "started": {"_count": 1}, "he": {"_count": 1}, "papers": {"_count": 3}, "threw": {"_count": 1}, "hidden": {"_count": 1}, "birthday": {"_count": 1}, "stuff": {"_count": 1}, "closed": {"_count": 1}, "everybody": {"_count": 1}, "charts": {"_count": 1}, "quills": {"_count": 1}, "Ron": {"_count": 1}, "ingredients": {"_count": 1}, "throwing": {"_count": 1}, "a": {"_count": 1}, "belongings": {"_count": 1}, "carrying": {"_count": 1}, "began": {"_count": 1}, "pockets": {"_count": 1}, "clothes": {"_count": 2}, "looking": {"_count": 1}, "robes": {"_count": 2}, "school": {"_count": 1}, "organizing": {"_count": 1}, "hurried": {"_count": 1}, "examined": {"_count": 1}, "small": {"_count": 1}, "on": {"_count": 1}, "counting": {"_count": 1}}, "an": {"_count": 3, "that": {"_count": 1}, "he": {"_count": 1}, "an": {"_count": 1}}, "but": {"_count": 2, "then": {"_count": 1}, "Hermione": {"_count": 1}}, "quills": {"_count": 4, "and": {"_count": 2}, "several": {"_count": 1}, "scratching": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 1}, "his": {"_count": 1}, "front": {"_count": 1}, "surprise": {"_count": 1}, "preparation": {"_count": 1}, "that": {"_count": 1}}, "as": {"_count": 8, "large": {"_count": 1}, "usual": {"_count": 1}, "though": {"_count": 1}, "she": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "long": {"_count": 1}}, "the": {"_count": 4, "size": {"_count": 1}, "Ministrys": {"_count": 1}, "back": {"_count": 1}, "photograph": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 2, "nothing": {"_count": 1}, "titles": {"_count": 1}}, "were": {"_count": 3, "very": {"_count": 1}, "drenched": {"_count": 1}, "jumbled": {"_count": 1}}, "by": {"_count": 2, "heart": {"_count": 2}}, "for": {"_count": 7, "background": {"_count": 1}, "Flamels": {"_count": 1}, "ten": {"_count": 1}, "a": {"_count": 2}, "next": {"_count": 1}, "Arithmancy": {"_count": 1}}, "to": {"_count": 7, "see": {"_count": 1}, "them": {"_count": 1}, "their": {"_count": 2}, "chapter": {"_count": 1}, "page": {"_count": 2}}, "at": {"_count": 3, "the": {"_count": 1}, "Myrtle": {"_count": 1}, "pages": {"_count": 1}}, "are": {"_count": 2, "not": {"_count": 1}, "really": {"_count": 1}}, "already": {"_count": 1, "and": {"_count": 1}}, "thousands": {"_count": 1, "of": {"_count": 1}}, "containing": {"_count": 1, "powerful": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "shrieks": {"_count": 1, "still": {"_count": 1}}, "so": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "surrounding": {"_count": 1, "them": {"_count": 1}}, "she": {"_count": 5, "was": {"_count": 1}, "had": {"_count": 2}, "usually": {"_count": 1}, "said": {"_count": 1}}, "there": {"_count": 1, "might": {"_count": 1}}, "hed": {"_count": 1, "need": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "now": {"_count": 2, "": {"_count": 1}, "most": {"_count": 1}}, "into": {"_count": 5, "the": {"_count": 2}, "his": {"_count": 3}}, "a": {"_count": 1, "very": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "well": {"_count": 1, "done": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "onto": {"_count": 3, "Hermiones": {"_count": 1}, "his": {"_count": 1}, "one": {"_count": 1}}, "wand": {"_count": 1, "parchment": {"_count": 1}}, "his": {"_count": 2, "attempts": {"_count": 1}, "ripped": {"_count": 1}}, "Books": {"_count": 1, "can": {"_count": 1}}, "wouldnt": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "how": {"_count": 1, "Riddles": {"_count": 1}}, "Mum": {"_count": 1, "got": {"_count": 1}}, "on": {"_count": 7, "Georges": {"_count": 1}, "the": {"_count": 1}, "merpeople": {"_count": 1}, "famous": {"_count": 1}, "each": {"_count": 1}, "shelves": {"_count": 1}, "Horcruxes": {"_count": 1}}, "grappled": {"_count": 1, "with": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "He": {"_count": 1, "pointed": {"_count": 1}}, "How": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 4, "try": {"_count": 1}, "might": {"_count": 2}, "had": {"_count": 1}}, "aside": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "wouldnt": {"_count": 1}}, "Arithmancy": {"_count": 1, "charts": {"_count": 1}}, "spilling": {"_count": 1, "out": {"_count": 1}}, "causing": {"_count": 1, "them": {"_count": 1}}, "not": {"_count": 1, "entirely": {"_count": 1}}, "about": {"_count": 1, "YouKnow": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "spilled": {"_count": 1, "out": {"_count": 1}}, "debating": {"_count": 1, "exactly": {"_count": 1}}, "parchment": {"_count": 1, "and": {"_count": 1}}, "books": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 3, "hexes": {"_count": 1}, "Wizarding": {"_count": 2}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "he": {"_count": 3, "owned": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}}, "while": {"_count": 2, "youre": {"_count": 1}, "the": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "away": {"_count": 2, "but": {"_count": 1}, "Ron": {"_count": 1}}, "strewn": {"_count": 1, "across": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 2}, "Snape": {"_count": 1}}, "had": {"_count": 2, "finally": {"_count": 1}, "been": {"_count": 1}}, "leaping": {"_count": 1, "off": {"_count": 1}}, "entitled": {"_count": 1, "Practical": {"_count": 1}}, "bag": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "Dursley": {"_count": 1, "growled": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "repaired": {"_count": 1, "themselves": {"_count": 1}}, "boxes": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "any": {"_count": 1}}, "here": {"_count": 1, "theyll": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "shelves": {"_count": 1, "of": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "anyway": {"_count": 2, "": {"_count": 2}}, "even": {"_count": 1, "if": {"_count": 1}}, "flying": {"_count": 1, "in": {"_count": 1}}, "stood": {"_count": 1, "on": {"_count": 1}}, "woolly": {"_count": 1, "sleeves": {"_count": 1}}, "weapons": {"_count": 1, "broomsticks": {"_count": 1}}}, "world": {"_count": 181, "will": {"_count": 1, "know": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "": {"_count": 45, ".": {"_count": 32}, "?": {"_count": 5}, "!": {"_count": 8}}, "knows": {"_count": 2, "his": {"_count": 1}, "Who": {"_count": 1}}, "how": {"_count": 1, "come": {"_count": 1}}, "fer": {"_count": 1, "anything": {"_count": 1}}, "everyone": {"_count": 1, "follows": {"_count": 1}}, "except": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 6, "do": {"_count": 1}, "believe": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}, "know": {"_count": 1}, "be": {"_count": 1}}, "people": {"_count": 1, "just": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "here": {"_count": 1}}, "And": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 6, "something": {"_count": 1}, "a": {"_count": 2}, "so": {"_count": 1}, "us": {"_count": 1}, "anything": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 5, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "last": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}}, "six": {"_count": 1, "tall": {"_count": 1}}, "that": {"_count": 5, "even": {"_count": 1}, "he": {"_count": 2}, "report": {"_count": 1}, "I": {"_count": 1}}, "the": {"_count": 5, "photograph": {"_count": 1}, "Weasleys": {"_count": 1}, "one": {"_count": 1}, "truth": {"_count": 1}, "Burrow": {"_count": 1}}, "of": {"_count": 5, "evil": {"_count": 1}, "modern": {"_count": 1}, "Privet": {"_count": 1}, "academic": {"_count": 1}, "earrelated": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 2}, "Professor": {"_count": 1}, "Ginny": {"_count": 1}}, "is": {"_count": 2, "Albus": {"_count": 1}, "impressed": {"_count": 1}}, "highly": {"_count": 1, "dangerous": {"_count": 1}}, "and": {"_count": 9, "spent": {"_count": 1}, "every": {"_count": 1}, "he": {"_count": 1}, "finding": {"_count": 1}, "Mrs": {"_count": 1}, "his": {"_count": 1}, "listening": {"_count": 1}, "test": {"_count": 1}, "led": {"_count": 1}}, "with": {"_count": 2, "absolutely": {"_count": 1}, "little": {"_count": 1}}, "Harry": {"_count": 3, "felt": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 1}, "split": {"_count": 1}}, "injuries": {"_count": 1, "then": {"_count": 1}}, "couldnt": {"_count": 1, "distract": {"_count": 1}}, "knew": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "hated": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "Firebolt": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "though": {"_count": 2}}, "was": {"_count": 5, "that": {"_count": 1}, "magic": {"_count": 1}, "you": {"_count": 1}, "clamoring": {"_count": 1}, "rent": {"_count": 1}}, "Thats": {"_count": 1, "because": {"_count": 1}}, "record": {"_count": 1, "bet": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "turned": {"_count": 1, "upside": {"_count": 1}}, "righted": {"_count": 1, "itself": {"_count": 1}}, "you": {"_count": 1, "present": {"_count": 1}}, "we": {"_count": 3, "have": {"_count": 1}, "come": {"_count": 1}, "shall": {"_count": 1}}, "reduced": {"_count": 1, "to": {"_count": 1}}, "beyond": {"_count": 1, "": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "she": {"_count": 3, "inhabited": {"_count": 1}, "said": {"_count": 1}, "did": {"_count": 1}}, "in": {"_count": 3, "which": {"_count": 3}}, "going": {"_count": 1, "to": {"_count": 1}}, "thought": {"_count": 1, "Sirius": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "who": {"_count": 2, "still": {"_count": 1}, "know": {"_count": 1}}, "would": {"_count": 1, "believe": {"_count": 1}}, "has": {"_count": 3, "ever": {"_count": 1}, "had": {"_count": 1}, "supported": {"_count": 1}}, "they": {"_count": 1, "abide": {"_count": 1}}, "hidden": {"_count": 1, "buried": {"_count": 1}}, "which": {"_count": 1, "incidentally": {"_count": 1}}, "anyway": {"_count": 1, "if": {"_count": 1}}, "had": {"_count": 2, "gone": {"_count": 1}, "ended": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "together": {"_count": 1, "visiting": {"_count": 1}}, "are": {"_count": 1, "considered": {"_count": 1}}, "rest": {"_count": 1, "upon": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "Voldemort": {"_count": 1, "attacked": {"_count": 1}}, "Ginny": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "against": {"_count": 1, "me": {"_count": 1}}, "sees": {"_count": 1, "creatures": {"_count": 1}}, "were": {"_count": 1, "Rons": {"_count": 1}}, "Bathilda": {"_count": 1, "puts": {"_count": 1}}, "during": {"_count": 1, "his": {"_count": 1}}, "resolved": {"_count": 1, "itself": {"_count": 1}}, "than": {"_count": 1, "dying": {"_count": 1}}}, "Exactly": {"_count": 33, "said": {"_count": 15, "Dumbledore": {"_count": 3}, "Uncle": {"_count": 1}, "Wood": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 5}, "Hermione": {"_count": 3}, "Xenophilius": {"_count": 1}}, "why": {"_count": 1, "Dudley": {"_count": 1}}, "what": {"_count": 6, "he": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}, "Hagrid": {"_count": 1}, "Kreachers": {"_count": 1}, "claim": {"_count": 1}}, "": {"_count": 6, "!": {"_count": 4}, ".": {"_count": 2}}, "who": {"_count": 1, "or": {"_count": 1}}, "the": {"_count": 2, "opposite": {"_count": 1}, "attitude": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "hes": {"_count": 1, "the": {"_count": 1}}}, "seriously": {"_count": 87, "over": {"_count": 1, "the": {"_count": 1}}, "doubted": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 27, "?": {"_count": 2}, ".": {"_count": 24}, "!": {"_count": 1}}, "considered": {"_count": 3, "putting": {"_count": 1}, "entering": {"_count": 1}, "for": {"_count": 1}}, "evil": {"_count": 1, "wizard": {"_count": 1}}, "wrong": {"_count": 2, "But": {"_count": 1}, "with": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "hadnt": {"_count": 1, "bothered": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "undermines": {"_count": 1, "wizardMuggle": {"_count": 1}}, "endanger": {"_count": 1, "Yeah": {"_count": 1}}, "think": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "George": {"_count": 1, "Im": {"_count": 1}}, "So": {"_count": 1, "yer": {"_count": 1}}, "whoever": {"_count": 1, "put": {"_count": 1}}, "displeased": {"_count": 1, "if": {"_count": 1}}, "concerned": {"_count": 1, "I": {"_count": 1}}, "Yeh": {"_count": 1, "know": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 2, "want": {"_count": 1}, "mean": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "Harry": {"_count": 2}}, "believe": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 2, "Tonks": {"_count": 1}, "Hermione": {"_count": 1}}, "ill": {"_count": 3, "mind": {"_count": 1}, "with": {"_count": 1}, "Ministry": {"_count": 1}}, "alarmed": {"_count": 1, "now": {"_count": 1}}, "debated": {"_count": 1, "whether": {"_count": 1}}, "youre": {"_count": 1, "both": {"_count": 1}}, "cool": {"_count": 1, "bit": {"_count": 1}}, "his": {"_count": 2, "ears": {"_count": 1}, "manner": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "consider": {"_count": 1, "putting": {"_count": 1}}, "considering": {"_count": 2, "admitting": {"_count": 1}, "attempting": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "injured": {"_count": 1, "": {"_count": 1}}, "damage": {"_count": 1, "the": {"_count": 1}}, "affronted": {"_count": 1, "when": {"_count": 1}}, "if": {"_count": 1, "hes": {"_count": 1}}, "or": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "scared": {"_count": 1, "Borgin": {"_count": 1}}, "Borgin": {"_count": 1, "took": {"_count": 1}}, "so": {"_count": 1, "it": {"_count": 1}}, "annoyed": {"_count": 1, "leave": {"_count": 1}}, "complicated": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "angry": {"_count": 1, "and": {"_count": 1}}}, "top": {"_count": 411, "of": {"_count": 297, "his": {"_count": 52}, "a": {"_count": 20}, "the": {"_count": 136}, "Hagrid": {"_count": 1}, "everything": {"_count": 2}, "it": {"_count": 10}, "all": {"_count": 1}, "him": {"_count": 3}, "my": {"_count": 2}, "Rons": {"_count": 1}, "every": {"_count": 1}, "her": {"_count": 17}, "Harrys": {"_count": 6}, "North": {"_count": 3}, "Buckbeaks": {"_count": 1}, "Trevor": {"_count": 1}, "Hagrids": {"_count": 3}, "Hedwigs": {"_count": 1}, "Dudley": {"_count": 2}, "things": {"_count": 2}, "some": {"_count": 1}, "Stoatshead": {"_count": 1}, "The": {"_count": 2}, "West": {"_count": 1}, "one": {"_count": 2}, "Hermione": {"_count": 2}, "Uncle": {"_count": 1}, "Quidditch": {"_count": 1}, "an": {"_count": 2}, "which": {"_count": 2}, "Mr": {"_count": 1}, "their": {"_count": 3}, "Percy": {"_count": 1}, "somebodys": {"_count": 1}, "Magical": {"_count": 1}, "memories": {"_count": 1}, "Mariettas": {"_count": 1}, "Professor": {"_count": 1}, "whose": {"_count": 1}, "them": {"_count": 1}, "Ginnys": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "yeh": {"_count": 1}, "er": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "hat": {"_count": 9, "had": {"_count": 1}, "was": {"_count": 3}, "fell": {"_count": 1}, "lopsided": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "security": {"_count": 1, "vault": {"_count": 1}}, "hats": {"_count": 1, "sleek": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "like": {"_count": 1, "a": {"_count": 1}}, "row": {"_count": 1, "": {"_count": 1}}, "secret": {"_count": 5, "that": {"_count": 2}, "one": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 1}}, "parcel": {"_count": 1, "": {"_count": 1}}, "Erised": {"_count": 1, "stra": {"_count": 1}}, "branches": {"_count": 2, "of": {"_count": 2}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 5, "at": {"_count": 1}, "Professor": {"_count": 1}, "he": {"_count": 1}, "sat": {"_count": 1}, "whipped": {"_count": 1}}, "in": {"_count": 4, "everything": {"_count": 1}, "their": {"_count": 1}, "large": {"_count": 1}, "anything": {"_count": 1}}, "layer": {"_count": 1, "of": {"_count": 1}}, "fell": {"_count": 1, "out": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "pocket": {"_count": 1, "": {"_count": 1}}, "CATCH": {"_count": 1, "THAT": {"_count": 1}}, "great": {"_count": 1, "curly": {"_count": 1}}, "left": {"_count": 1, "corner": {"_count": 1}}, "grades": {"_count": 4, "": {"_count": 1}, "O": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}}, "bunk": {"_count": 1, "above": {"_count": 1}}, "sixty": {"_count": 1, "feet": {"_count": 1}}, "people": {"_count": 2, "at": {"_count": 2}}, "table": {"_count": 10, "turned": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "Professor": {"_count": 2}, "didnt": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}}, "speed": {"_count": 6, "again": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 1}, "next": {"_count": 1}, "": {"_count": 1}, "GolpalottsThird": {"_count": 1}}, "marks": {"_count": 3, "for": {"_count": 1}, "in": {"_count": 2}}, "piece": {"_count": 1, "of": {"_count": 1}}, "students": {"_count": 2, "in": {"_count": 2}}, "Harry": {"_count": 1, "recognized": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "job": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "experts": {"_count": 1, "at": {"_count": 1}}, "step": {"_count": 5, "and": {"_count": 2}, "outside": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 1}}, "wall": {"_count": 1, "of": {"_count": 1}}, "grade": {"_count": 2, "not": {"_count": 1}, "security": {"_count": 1}}, "Chaser": {"_count": 1, "Ladislaw": {"_count": 1}}, "deck": {"_count": 1, "where": {"_count": 1}}, "he": {"_count": 2, "found": {"_count": 1}, "hurried": {"_count": 1}}, "to": {"_count": 2, "bottom": {"_count": 2}}, "back": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "Defense": {"_count": 1}}, "quality": {"_count": 1, "highly": {"_count": 1}}, "priority": {"_count": 1, "is": {"_count": 1}}, "targets": {"_count": 1, "": {"_count": 1}}, "levels": {"_count": 1, "want": {"_count": 1}}, "was": {"_count": 2, "disappearing": {"_count": 1}, "level": {"_count": 1}}, "nor": {"_count": 1, "the": {"_count": 1}}, "floor": {"_count": 2, "when": {"_count": 1}, "had": {"_count": 1}}, "spot": {"_count": 1, "only": {"_count": 1}}, "garden": {"_count": 1, "and": {"_count": 1}}, "third": {"_count": 1, "crumbled": {"_count": 1}}}, "turn": {"_count": 230, "any": {"_count": 2, "boys": {"_count": 1}, "moment": {"_count": 1}}, "and": {"_count": 12, "drive": {"_count": 1}, "walk": {"_count": 1}, "found": {"_count": 1}, "put": {"_count": 1}, "took": {"_count": 1}, "saw": {"_count": 1}, "thrown": {"_count": 1}, "fell": {"_count": 1}, "the": {"_count": 1}, "frowning": {"_count": 1}, "horror": {"_count": 1}, "murmured": {"_count": 1}}, "him": {"_count": 4, "into": {"_count": 1}, "yellow": {"_count": 1}, "over": {"_count": 2}}, "": {"_count": 16, ".": {"_count": 14}, "?": {"_count": 1}, "!": {"_count": 1}}, "up": {"_count": 40, "said": {"_count": 2}, "for": {"_count": 6}, "months": {"_count": 1}, "at": {"_count": 4}, "in": {"_count": 3}, "again": {"_count": 2}, "all": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 8}, "I": {"_count": 1}, "does": {"_count": 1}, "to": {"_count": 1}, "here": {"_count": 2}, "so": {"_count": 1}, "anyway": {"_count": 1}, "Potter": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "my": {"_count": 1}}, "it": {"_count": 6, "into": {"_count": 2}, "": {"_count": 3}, "onto": {"_count": 1}}, "very": {"_count": 1, "nasty": {"_count": 1}}, "Harry": {"_count": 2, "expected": {"_count": 1}, "into": {"_count": 1}}, "out": {"_count": 12, "better": {"_count": 1}, "to": {"_count": 3}, "okay": {"_count": 1}, "harmless": {"_count": 1}, "our": {"_count": 1}, "their": {"_count": 1}, "not": {"_count": 1}, "the": {"_count": 2}, "that": {"_count": 1}}, "back": {"_count": 5, "toward": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}, "if": {"_count": 1}}, "a": {"_count": 8, "mouse": {"_count": 1}, "houseelf": {"_count": 1}, "hedgehog": {"_count": 1}, "nasty": {"_count": 1}, "school": {"_count": 1}, "fairly": {"_count": 1}, "little": {"_count": 1}, "blind": {"_count": 1}}, "them": {"_count": 4, "all": {"_count": 2}, "in": {"_count": 1}, "against": {"_count": 1}}, "Alley": {"_count": 1, "when": {"_count": 1}}, "to": {"_count": 16, "wide": {"_count": 1}, "All": {"_count": 1}, "listen": {"_count": 1}, "demonstrate": {"_count": 1}, "look": {"_count": 1}, "page": {"_count": 4}, "Keep": {"_count": 1}, "Sirius": {"_count": 1}, "flush": {"_count": 1}, "laugh": {"_count": 1}, "prise": {"_count": 1}, "wear": {"_count": 1}, "regular": {"_count": 1}}, "into": {"_count": 14, "Crabbe": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 10}, "kumquats": {"_count": 1}, "any": {"_count": 1}}, "you": {"_count": 8, "in": {"_count": 3}, "normal": {"_count": 1}, "into": {"_count": 2}, "tell": {"_count": 1}, "against": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "around": {"_count": 5, "": {"_count": 1}, "go": {"_count": 1}, "they": {"_count": 1}, "nice": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "the": {"_count": 4, "cup": {"_count": 1}, "chair": {"_count": 1}, "corner": {"_count": 1}, "lights": {"_count": 1}}, "gasped": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 1, "around": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "left": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "in": {"_count": 3, "early": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "over": {"_count": 2, "a": {"_count": 2}}, "Changs": {"_count": 1, "Comet": {"_count": 1}}, "forgive": {"_count": 1, "me": {"_count": 1}}, "sideways": {"_count": 1, "to": {"_count": 1}}, "my": {"_count": 2, "chair": {"_count": 1}, "inventions": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "nasty": {"_count": 1, "": {"_count": 1}}, "innocent": {"_count": 1, "occasions": {"_count": 1}}, "Hermione": {"_count": 2, "whispering": {"_count": 1}, "pulled": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "silver": {"_count": 1, "when": {"_count": 1}}, "himself": {"_count": 1, "into": {"_count": 1}}, "our": {"_count": 1, "attention": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 1}, "back": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "guard": {"_count": 1}, "the": {"_count": 1}}, "Kreacher": {"_count": 1, "away": {"_count": 1}}, "kept": {"_count": 1, "flashing": {"_count": 1}}, "away": {"_count": 4, "from": {"_count": 2}, "making": {"_count": 1}, "when": {"_count": 1}}, "red": {"_count": 1, "from": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "suddenly": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "their": {"_count": 1, "backs": {"_count": 1}}, "knarls": {"_count": 1, "highly": {"_count": 1}}, "apparently": {"_count": 1, "trying": {"_count": 1}}, "STUBEFYl": {"_count": 1, "": {"_count": 1}}, "eighteen": {"_count": 1, "until": {"_count": 1}}, "your": {"_count": 2, "considerable": {"_count": 1}, "back": {"_count": 1}}, "next": {"_count": 1, "This": {"_count": 1}}, "that": {"_count": 1, "all": {"_count": 1}}, "blue": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 1, "in": {"_count": 1}}, "seventeen": {"_count": 4, "on": {"_count": 1}, "in": {"_count": 1}, "youll": {"_count": 1}, "": {"_count": 1}}, "warned": {"_count": 1, "him": {"_count": 1}}, "her": {"_count": 1, "into": {"_count": 1}}, "vinegar": {"_count": 1, "into": {"_count": 1}}, "tail": {"_count": 1, "and": {"_count": 1}}, "instead": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "saw": {"_count": 1, "an": {"_count": 1}}, "again": {"_count": 1, "so": {"_count": 1}}, "of": {"_count": 1, "events": {"_count": 1}}, "but": {"_count": 1, "Ron": {"_count": 1}}, "Petunia": {"_count": 1, "hiding": {"_count": 1}}}, "boys": {"_count": 158, "head": {"_count": 3, "": {"_count": 1}, "drew": {"_count": 1}, "in": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "our": {"_count": 1}}, "wore": {"_count": 1, "maroon": {"_count": 1}}, "of": {"_count": 1, "about": {"_count": 1}}, "all": {"_count": 1, "with": {"_count": 1}}, "mother": {"_count": 2, "": {"_count": 1}, "waving": {"_count": 1}}, "gawked": {"_count": 1, "at": {"_count": 1}}, "clambered": {"_count": 1, "onto": {"_count": 1}}, "entered": {"_count": 2, "and": {"_count": 2}}, "": {"_count": 18, ".": {"_count": 11}, "?": {"_count": 3}, "!": {"_count": 4}}, "through": {"_count": 1, "another": {"_count": 1}}, "a": {"_count": 1, "natural": {"_count": 1}}, "fought": {"_count": 1, "to": {"_count": 1}}, "felt": {"_count": 1, "it": {"_count": 1}}, "very": {"_count": 1, "wrong": {"_count": 1}}, "have": {"_count": 1, "flouted": {"_count": 1}}, "punishments": {"_count": 1, "Severus": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "pointed": {"_count": 1, "out": {"_count": 1}}, "but": {"_count": 2, "Ill": {"_count": 1}, "that": {"_count": 1}}, "case": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}, "divided": {"_count": 1, "toward": {"_count": 1}}, "dormitories": {"_count": 8, "": {"_count": 4}, "he": {"_count": 1}, "and": {"_count": 1}, "behind": {"_count": 1}, "leaving": {"_count": 1}}, "staircase": {"_count": 4, "again": {"_count": 1}, "": {"_count": 3}}, "beds": {"_count": 1, "": {"_count": 1}}, "four": {"_count": 1, "of": {"_count": 1}}, "shoulder": {"_count": 1, "": {"_count": 1}}, "bedside": {"_count": 1, "table": {"_count": 1}}, "tormented": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 3, "gone": {"_count": 1}, "broken": {"_count": 1}, "all": {"_count": 1}}, "back": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 2, "Hermione": {"_count": 1}, "did": {"_count": 1}}, "though": {"_count": 2, "without": {"_count": 1}, "they": {"_count": 1}}, "yells": {"_count": 1, "You": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 6, "Harry": {"_count": 1}, "girls": {"_count": 3}, "Hermione": {"_count": 1}, "I": {"_count": 1}}, "yelled": {"_count": 1, "Mr": {"_count": 1}}, "tent": {"_count": 2, "fully": {"_count": 1}, "": {"_count": 1}}, "story": {"_count": 1, "Amos": {"_count": 1}}, "said": {"_count": 2, "Mr": {"_count": 1}, "Mrs": {"_count": 1}}, "heads": {"_count": 1, "turned": {"_count": 1}}, "hopefully": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 2, "in": {"_count": 1}, "was": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "passed": {"_count": 1, "them": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "standing": {"_count": 1, "near": {"_count": 1}}, "the": {"_count": 1, "girls": {"_count": 1}}, "could": {"_count": 2, "hear": {"_count": 1}, "do": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "affections": {"_count": 1, "": {"_count": 1}}, "interest": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "companions": {"_count": 1}}, "future": {"_count": 1, "": {"_count": 1}}, "protection": {"_count": 1, "as": {"_count": 1}}, "pocket": {"_count": 1, "": {"_count": 1}}, "stopped": {"_count": 1, "trying": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "know": {"_count": 1, "thats": {"_count": 1}}, "hearing": {"_count": 1, "theyve": {"_count": 1}}, "imagination": {"_count": 1, "is": {"_count": 1}}, "stairs": {"_count": 2, "leaving": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 3, "less": {"_count": 1}, "sitting": {"_count": 1}, "talking": {"_count": 1}}, "dormitory": {"_count": 4, "Harry": {"_count": 1}, "to": {"_count": 1}, "after": {"_count": 1}, "": {"_count": 1}}, "seeing": {"_count": 1, "things": {"_count": 1}}, "can": {"_count": 1, "understand": {"_count": 1}}, "bathroom": {"_count": 4, "up": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "both": {"_count": 2, "born": {"_count": 1}, "laughing": {"_count": 1}}, "wouldnt": {"_count": 1, "do": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "her": {"_count": 1}}, "father": {"_count": 1, "for": {"_count": 1}}, "surname": {"_count": 1, "was": {"_count": 1}}, "care": {"_count": 1, "about": {"_count": 1}}, "laughed": {"_count": 2, "and": {"_count": 2}}, "tittered": {"_count": 2, "something": {"_count": 1}, "again": {"_count": 1}}, "or": {"_count": 2, "well": {"_count": 2}}, "filed": {"_count": 2, "out": {"_count": 2}}, "sitting": {"_count": 1, "around": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "squeaked": {"_count": 1, "Professor": {"_count": 1}}, "aside": {"_count": 1, "as": {"_count": 1}}, "best": {"_count": 1, "interests": {"_count": 1}}, "looked": {"_count": 1, "very": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 1}, "He": {"_count": 1}}, "smile": {"_count": 1, "falter": {"_count": 1}}, "took": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 1, "got": {"_count": 1}}, "yes": {"_count": 1, "but": {"_count": 1}}, "last": {"_count": 1, "escape": {"_count": 1}}, "sharing": {"_count": 1, "the": {"_count": 1}}, "soul": {"_count": 1, "is": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "Famous": {"_count": 7, "before": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "something": {"_count": 1}}, "Witches": {"_count": 1, "and": {"_count": 1}}, "Wizard": {"_count": 1, "card": {"_count": 1}}, "Harry": {"_count": 3, "Potter": {"_count": 3}}}, "talk": {"_count": 293, "": {"_count": 17, "!": {"_count": 1}, ".": {"_count": 16}}, "to": {"_count": 129, "you": {"_count": 22}, "me": {"_count": 12}, "their": {"_count": 1}, "one": {"_count": 1}, "them": {"_count": 8}, "him": {"_count": 18}, "Professor": {"_count": 1}, "Moaning": {"_count": 1}, "snakes": {"_count": 6}, "": {"_count": 1}, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "each": {"_count": 5}, "her": {"_count": 10}, "MadEye": {"_count": 1}, "us": {"_count": 2}, "Ron": {"_count": 5}, "Harry": {"_count": 2}, "Sirius": {"_count": 8}, "someone": {"_count": 2}, "Cedric": {"_count": 1}, "anybody": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 1}, "was": {"_count": 1}, "Percy": {"_count": 1}, "any": {"_count": 1}, "Hermione": {"_count": 1}, "said": {"_count": 1}, "somebody": {"_count": 1}, "anyone": {"_count": 1}, "he": {"_count": 1}, "my": {"_count": 1}, "and": {"_count": 1}, "your": {"_count": 1}, "Madame": {"_count": 1}, "Rita": {"_count": 1}, "wouldnt": {"_count": 1}, "Mr": {"_count": 1}, "first": {"_count": 1}, "Griphook": {"_count": 1}}, "rubbish": {"_count": 2, "said": {"_count": 1}, "snapped": {"_count": 1}}, "about": {"_count": 47, "him": {"_count": 4}, "flying": {"_count": 1}, "even": {"_count": 1}, "showing": {"_count": 1}, "that": {"_count": 2}, "with": {"_count": 1}, "Grunnings": {"_count": 1}, "what": {"_count": 3}, "his": {"_count": 3}, "Bludgers": {"_count": 1}, "important": {"_count": 1}, "you": {"_count": 2}, "things": {"_count": 1}, "Hermione": {"_count": 1}, "Voldemort": {"_count": 1}, "it": {"_count": 5}, "her": {"_count": 1}, "Cedric": {"_count": 5}, "": {"_count": 1}, "something": {"_count": 2}, "the": {"_count": 3}, "copying": {"_count": 1}, "how": {"_count": 1}, "Sirius": {"_count": 2}, "Quidditch": {"_count": 1}, "wands": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}, "much": {"_count": 6, "they": {"_count": 1}, "": {"_count": 1}, "during": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "gigantic": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Karkaroff": {"_count": 1}}, "broke": {"_count": 1, "out": {"_count": 1}}, "with": {"_count": 4, "you": {"_count": 1}, "Viktor": {"_count": 1}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 7, "wellfed": {"_count": 1}, "little": {"_count": 1}, "the": {"_count": 1}, "closer": {"_count": 1}, "\u2018mind": {"_count": 1}, "Quidditch": {"_count": 1}, "living": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "later": {"_count": 3, "Were": {"_count": 1}, "Karkaroff": {"_count": 1}, "hours": {"_count": 1}}, "now": {"_count": 3, "said": {"_count": 2}, "while": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "laughter": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 3, "it": {"_count": 1}, "taking": {"_count": 1}, "\u2018For": {"_count": 1}}, "sensibly": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "yawning": {"_count": 1}}, "buried": {"_count": 1, "herself": {"_count": 1}}, "on": {"_count": 2, "all": {"_count": 1}, "that": {"_count": 1}}, "burst": {"_count": 1, "forth": {"_count": 1}}, "facetoface": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "into": {"_count": 1}}, "let": {"_count": 1, "alone": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "because": {"_count": 1, "Madame": {"_count": 1}}, "ter": {"_count": 3, "me": {"_count": 1}, "him": {"_count": 1}, "people": {"_count": 1}}, "abou": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "into": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 4, "laughter": {"_count": 3}, "everything": {"_count": 1}}, "freely": {"_count": 2, "in": {"_count": 2}}, "in": {"_count": 4, "the": {"_count": 1}, "front": {"_count": 2}, "yours": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "it": {"_count": 1, "over": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}, "louder": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "among": {"_count": 1, "themselves": {"_count": 1}}, "him": {"_count": 1, "out": {"_count": 1}}, "over": {"_count": 2, "any": {"_count": 1}, "the": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "hold": {"_count": 1}}, "her": {"_count": 1, "round": {"_count": 1}}, "anymore": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}, "still": {"_count": 1, "issuing": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "beforehand": {"_count": 1, "": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "afternoon": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "tactics": {"_count": 1, "with": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 1, "through": {"_count": 1}}, "or": {"_count": 1, "swift": {"_count": 1}}, "nodding": {"_count": 1, "and": {"_count": 1}}, "fast": {"_count": 1, "to": {"_count": 1}}}, "wont": {"_count": 349, "even": {"_count": 3, "remember": {"_count": 1}, "listen": {"_count": 1}, "be": {"_count": 1}}, "blow": {"_count": 1, "up": {"_count": 1}}, "let": {"_count": 19, "him": {"_count": 3}, "you": {"_count": 3}, "me": {"_count": 2}, "any": {"_count": 1}, "them": {"_count": 6}, "us": {"_count": 2}, "Harry": {"_count": 1}, "this": {"_count": 1}}, "do": {"_count": 9, "anything": {"_count": 2}, "it": {"_count": 4}, "now": {"_count": 1}, "mboy": {"_count": 1}, "the": {"_count": 1}}, "stop": {"_count": 2, "him": {"_count": 2}}, "know": {"_count": 7, "himself": {"_count": 1}, "what": {"_count": 1}, "whats": {"_count": 2}, "when": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}}, "pay": {"_count": 1, "for": {"_count": 1}}, "be": {"_count": 60, "": {"_count": 4}, "easy": {"_count": 1}, "any": {"_count": 3}, "anyone": {"_count": 1}, "long": {"_count": 5}, "needing": {"_count": 1}, "the": {"_count": 2}, "in": {"_count": 4}, "a": {"_count": 3}, "able": {"_count": 10}, "there": {"_count": 1}, "said": {"_count": 1}, "big": {"_count": 1}, "getting": {"_count": 1}, "too": {"_count": 1}, "complaining": {"_count": 1}, "riskfree": {"_count": 1}, "at": {"_count": 1}, "sorry": {"_count": 1}, "seeing": {"_count": 1}, "sitting": {"_count": 1}, "here": {"_count": 1}, "expecting": {"_count": 1}, "some": {"_count": 1}, "flying": {"_count": 1}, "bothering": {"_count": 1}, "if": {"_count": 1}, "like": {"_count": 1}, "forgetting": {"_count": 1}, "lying": {"_count": 1}, "so": {"_count": 1}, "interested": {"_count": 1}, "that": {"_count": 1}, "happy": {"_count": 1}, "killing": {"_count": 1}, "going": {"_count": 1}}, "help": {"_count": 2, "you": {"_count": 1}, "her": {"_count": 1}}, "practice": {"_count": 1, "with": {"_count": 1}}, "you": {"_count": 22, "": {"_count": 17}, "eh": {"_count": 1}, "Harry": {"_count": 2}, "Minerva": {"_count": 1}, "Luna": {"_count": 1}}, "yeh": {"_count": 1, "": {"_count": 1}}, "touch": {"_count": 1, "you": {"_count": 1}}, "blame": {"_count": 1, "you": {"_count": 1}}, "need": {"_count": 6, "it": {"_count": 2}, "them": {"_count": 1}, "ink": {"_count": 1}, "to": {"_count": 2}}, "we": {"_count": 5, "": {"_count": 5}}, "they": {"_count": 8, "": {"_count": 7}, "notice": {"_count": 1}}, "go": {"_count": 4, "back": {"_count": 1}, "looking": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}}, "come": {"_count": 6, "cheap": {"_count": 1}, "until": {"_count": 1}, "back": {"_count": 3}, "with": {"_count": 1}}, "have": {"_count": 12, "long": {"_count": 1}, "this": {"_count": 1}, "much": {"_count": 1}, "tried": {"_count": 1}, "to": {"_count": 4}, "a": {"_count": 2}, "time": {"_count": 1}, "it": {"_count": 1}}, "kill": {"_count": 4, "yet": {"_count": 1}, "you": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 1}}, "think": {"_count": 1, "youre": {"_count": 1}}, "said": {"_count": 6, "Hermione": {"_count": 2}, "Harry": {"_count": 1}, "Ron": {"_count": 3}}, "leave": {"_count": 2, "Harry": {"_count": 1}, "us": {"_count": 1}}, "fit": {"_count": 1, "": {"_count": 1}}, "tell": {"_count": 8, "me": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "Mr": {"_count": 1}, "them": {"_count": 1}, "anyone": {"_count": 1}, "us": {"_count": 1}}, "find": {"_count": 3, "out": {"_count": 1}, "anything": {"_count": 1}, "Snape": {"_count": 1}}, "say": {"_count": 8, "any": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "no": {"_count": 1}, "how": {"_count": 1}, "anything": {"_count": 1}, "a": {"_count": 1}, "\u2018I": {"_count": 1}}, "like": {"_count": 4, "it": {"_count": 2}, "that": {"_count": 1}, "this": {"_count": 1}}, "want": {"_count": 4, "the": {"_count": 1}, "one": {"_count": 1}, "us": {"_count": 1}, "too": {"_count": 1}}, "last": {"_count": 1, "long": {"_count": 1}}, "matter": {"_count": 3, "that": {"_count": 2}, "if": {"_count": 1}}, "laugh": {"_count": 1, "": {"_count": 1}}, "wake": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "tease": {"_count": 1, "him": {"_count": 1}}, "I": {"_count": 5, "": {"_count": 3}, "cant": {"_count": 1}, "mean": {"_count": 1}}, "make": {"_count": 2, "Aunt": {"_count": 1}, "the": {"_count": 1}}, "deny": {"_count": 3, "that": {"_count": 3}}, "snapped": {"_count": 1, "Ron": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "bring": {"_count": 1, "them": {"_count": 1}}, "turn": {"_count": 1, "up": {"_count": 1}}, "hear": {"_count": 1, "a": {"_count": 1}}, "forget": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "stay": {"_count": 3, "put": {"_count": 2}, "on": {"_count": 1}}, "hurt": {"_count": 6, "him": {"_count": 2}, "to": {"_count": 1}, "you": {"_count": 1}, "your": {"_count": 1}, "me": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 1}, "!": {"_count": 5}, "?": {"_count": 1}}, "answer": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "get": {"_count": 5, "them": {"_count": 1}, "decent": {"_count": 1}, "violent": {"_count": 1}, "anything": {"_count": 1}, "a": {"_count": 1}}, "talk": {"_count": 2, "to": {"_count": 2}}, "reignite": {"_count": 1, "until": {"_count": 1}}, "mind": {"_count": 2, "Harry": {"_count": 1}, "helping": {"_count": 1}}, "believe": {"_count": 1, "this": {"_count": 1}}, "ask": {"_count": 1, "you": {"_count": 1}}, "stray": {"_count": 1, "outof": {"_count": 1}}, "give": {"_count": 2, "up": {"_count": 1}, "me": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "take": {"_count": 4, "orders": {"_count": 1}, "no": {"_count": 1}, "him": {"_count": 1}, "long": {"_count": 1}}, "abuse": {"_count": 1, "it": {"_count": 1}}, "it": {"_count": 7, "": {"_count": 6}, "be": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "bother": {"_count": 4, "telling": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "myself": {"_count": 1}}, "look": {"_count": 3, "at": {"_count": 2}, "the": {"_count": 1}}, "just": {"_count": 1, "let": {"_count": 1}}, "print": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "speak": {"_count": 1, "I": {"_count": 1}}, "activate": {"_count": 1, "the": {"_count": 1}}, "work": {"_count": 5, "which": {"_count": 1}, "on": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}}, "she": {"_count": 1, "": {"_count": 1}}, "shes": {"_count": 1, "got": {"_count": 1}}, "try": {"_count": 1, "and": {"_count": 1}}, "care": {"_count": 2, "if": {"_count": 1}, "about": {"_count": 1}}, "explain": {"_count": 1, "properly": {"_count": 1}}, "pretend": {"_count": 1, "that": {"_count": 1}}, "budge": {"_count": 2, "": {"_count": 1}, "Mrs": {"_count": 1}}, "he": {"_count": 3, "": {"_count": 3}}, "succeed": {"_count": 1, "": {"_count": 1}}, "Kreacher": {"_count": 3, "wont": {"_count": 2}, "is": {"_count": 1}}, "wont": {"_count": 10, "wont": {"_count": 4}, "As": {"_count": 1}, "Kreacher": {"_count": 1}, "You": {"_count": 1}, "Harry": {"_count": 1}, "WONT": {"_count": 1}, "look": {"_count": 1}}, "As": {"_count": 1, "you": {"_count": 1}}, "You": {"_count": 1, "would": {"_count": 1}}, "Harry": {"_count": 1, "stared": {"_count": 1}}, "WONT": {"_count": 1, "": {"_count": 1}}, "write": {"_count": 1, "to": {"_count": 1}}, "see": {"_count": 1, "much": {"_count": 1}}, "dear": {"_count": 1, "well": {"_count": 1}}, "always": {"_count": 1, "be": {"_count": 1}}, "lie": {"_count": 1, "she": {"_count": 1}}, "that": {"_count": 1, "seem": {"_count": 1}}, "or": {"_count": 1, "Dobby": {"_count": 1}}, "keep": {"_count": 1, "the": {"_count": 1}}, "blast": {"_count": 1, "people": {"_count": 1}}, "accept": {"_count": 2, "were": {"_count": 1}, "Snape": {"_count": 1}}, "happen": {"_count": 1, "again": {"_count": 1}}, "stand": {"_count": 1, "for": {"_count": 1}}, "share": {"_count": 1, "any": {"_count": 1}}, "actually": {"_count": 1, "kill": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "permit": {"_count": 1, "it": {"_count": 1}}}, "remember": {"_count": 289, "": {"_count": 63, "!": {"_count": 2}, ".": {"_count": 20}, "?": {"_count": 41}}, "the": {"_count": 14, "dream": {"_count": 2}, "new": {"_count": 1}, "Snitch": {"_count": 1}, "ingredients": {"_count": 1}, "conversation": {"_count": 1}, "name": {"_count": 1}, "many": {"_count": 1}, "Ministry": {"_count": 1}, "events": {"_count": 1}, "last": {"_count": 1}, "dreams": {"_count": 1}, "whole": {"_count": 1}, "shape": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "asking": {"_count": 4, "his": {"_count": 1}, "you": {"_count": 2}, "me": {"_count": 1}}, "ever": {"_count": 6, "since": {"_count": 1}, "meeting": {"_count": 1}, "saying": {"_count": 1}, "wanting": {"_count": 1}, "feeling": {"_count": 1}, "before": {"_count": 1}}, "being": {"_count": 3, "in": {"_count": 1}, "this": {"_count": 1}, "for": {"_count": 1}}, "his": {"_count": 2, "parents": {"_count": 1}, "name": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "her": {"_count": 1}}, "left": {"_count": 1, "right": {"_count": 1}}, "every": {"_count": 2, "wand": {"_count": 1}, "detail": {"_count": 1}}, "what": {"_count": 17, "Im": {"_count": 1}, "hed": {"_count": 1}, "I": {"_count": 2}, "came": {"_count": 1}, "Voldemort": {"_count": 1}, "Professor": {"_count": 1}, "she": {"_count": 1}, "happened": {"_count": 1}, "Dumbledore": {"_count": 1}, "your": {"_count": 1}, "Id": {"_count": 1}, "the": {"_count": 1}, "form": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 1}}, "him": {"_count": 5, "saying": {"_count": 1}, "when": {"_count": 1}, "at": {"_count": 1}, "offering": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 17, "": {"_count": 5}, "all": {"_count": 1}, "too": {"_count": 1}, "well": {"_count": 2}, "so": {"_count": 1}, "as": {"_count": 1}, "ever": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}, "clear": {"_count": 1}, "Harry": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "that": {"_count": 14, "as": {"_count": 1}, "": {"_count": 3}, "any": {"_count": 1}, "she": {"_count": 2}, "bet": {"_count": 1}, "Black": {"_count": 1}, "you": {"_count": 2}, "it": {"_count": 1}, "idiot": {"_count": 1}, "poisonous": {"_count": 1}}, "to": {"_count": 4, "jump": {"_count": 1}, "tell": {"_count": 2}, "place": {"_count": 1}}, "where": {"_count": 4, "anything": {"_count": 1}, "Im": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}}, "everything": {"_count": 3, "in": {"_count": 1}, "youve": {"_count": 1}, "weve": {"_count": 1}}, "how": {"_count": 10, "to": {"_count": 5}, "he": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "excited": {"_count": 1}, "Hermione": {"_count": 1}}, "swish": {"_count": 1, "and": {"_count": 1}}, "feeling": {"_count": 1, "happier": {"_count": 1}}, "this": {"_count": 3, "Ron": {"_count": 1}, "one": {"_count": 1}, "both": {"_count": 1}}, "too": {"_count": 2, "well": {"_count": 1}, "": {"_count": 1}}, "something": {"_count": 3, "very": {"_count": 2}, "": {"_count": 1}}, "said": {"_count": 5, "Hermione": {"_count": 1}, "little": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}, "Voldemort": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "long": {"_count": 1}, "he": {"_count": 1}}, "me": {"_count": 5, "forever": {"_count": 1}, "my": {"_count": 1}, "telling": {"_count": 1}, "by": {"_count": 1}, "when": {"_count": 1}}, "Hagrid": {"_count": 1, "advising": {"_count": 1}}, "you": {"_count": 5, "saying": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 1}, "rushing": {"_count": 1}, "changing": {"_count": 1}}, "doing": {"_count": 1, "it": {"_count": 1}}, "seeing": {"_count": 1, "a": {"_count": 1}}, "telling": {"_count": 2, "you": {"_count": 2}}, "page": {"_count": 1, "twelve": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 3, "tea": {"_count": 1}, "parents": {"_count": 1}, "touch": {"_count": 1}}, "Mum": {"_count": 1, "walloping": {"_count": 1}}, "who": {"_count": 3, "his": {"_count": 1}, "yeh": {"_count": 1}, "gave": {"_count": 1}}, "Sirius": {"_count": 2, "was": {"_count": 1}, "ever": {"_count": 1}}, "them": {"_count": 3, "coming": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}}, "anything": {"_count": 3, "shed": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "when": {"_count": 6, "he": {"_count": 2}, "Charlie": {"_count": 1}, "well": {"_count": 1}, "Dumbledore": {"_count": 1}, "Apparating": {"_count": 1}}, "wizards": {"_count": 1, "are": {"_count": 1}}, "my": {"_count": 4, "grandfather": {"_count": 1}, "dreams": {"_count": 1}, "seester": {"_count": 1}, "first": {"_count": 1}}, "all": {"_count": 3, "of": {"_count": 1}, "the": {"_count": 2}}, "anyone": {"_count": 1, "telling": {"_count": 1}}, "why": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "her": {"_count": 3, "too": {"_count": 1}, "at": {"_count": 1}, "much": {"_count": 1}}, "only": {"_count": 1, "forcing": {"_count": 1}}, "of": {"_count": 2, "Voldemorts": {"_count": 1}, "their": {"_count": 1}}, "stuff": {"_count": 1, "like": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Hermione": {"_count": 1, "ever": {"_count": 1}}, "Tread": {"_count": 1, "carefully": {"_count": 1}}, "Moody": {"_count": 1, "told": {"_count": 1}}, "dreaming": {"_count": 1, "anything": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "Dumbledores": {"_count": 1, "friendly": {"_count": 1}}, "er": {"_count": 1, "where": {"_count": 1}}, "or": {"_count": 1, "feel": {"_count": 1}}, "knowing": {"_count": 1, "that": {"_count": 1}}, "Minister": {"_count": 1, "that": {"_count": 1}}, "Where": {"_count": 1, "will": {"_count": 1}}, "Norbert": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "got": {"_count": 1}, "said": {"_count": 1}}, "names": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 2, "saying": {"_count": 1}, "": {"_count": 1}}, "rightly": {"_count": 1, "you": {"_count": 1}}, "dear": {"_count": 1, "Gwenog": {"_count": 1}}, "I": {"_count": 4, "am": {"_count": 1}, "hope": {"_count": 1}, "was": {"_count": 1}, "dont": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "enjoying": {"_count": 1, "commentary": {"_count": 1}}, "correctly": {"_count": 1, "you": {"_count": 1}}, "nothing": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 1, "walking": {"_count": 1}}, "interviewing": {"_count": 1, "him": {"_count": 1}}, "those": {"_count": 1, "times": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "thanks": {"_count": 1, "said": {"_count": 1}}, "Dumbledore": {"_count": 1, "ever": {"_count": 1}}, "whose": {"_count": 1, "wands": {"_count": 1}}, "wrenching": {"_count": 1, "them": {"_count": 1}}, "Harry": {"_count": 3, "began": {"_count": 1}, "Potter": {"_count": 1}, "": {"_count": 1}}}, "Cant": {"_count": 67, "you": {"_count": 14, "see": {"_count": 2}, "tell": {"_count": 1}, "": {"_count": 2}, "shut": {"_count": 1}, "give": {"_count": 2}, "think": {"_count": 1}, "two": {"_count": 1}, "help": {"_count": 1}, "fix": {"_count": 1}, "even": {"_count": 1}, "bring": {"_count": 1}}, "Tom": {"_count": 1, "Im": {"_count": 1}}, "tell": {"_count": 1, "yeh": {"_count": 1}}, "stay": {"_count": 1, "long": {"_count": 1}}, "get": {"_count": 2, "rid": {"_count": 1}, "another": {"_count": 1}}, "a": {"_count": 1, "person": {"_count": 1}}, "have": {"_count": 3, "Hagrid": {"_count": 1}, "you": {"_count": 1}, "done": {"_count": 1}}, "nothing": {"_count": 1, "interfere": {"_count": 1}}, "Harry": {"_count": 1, "sorry": {"_count": 1}}, "be": {"_count": 6, "too": {"_count": 1}, "much": {"_count": 1}, "said": {"_count": 1}, "long": {"_count": 1}, "anything": {"_count": 1}, "done": {"_count": 1}}, "anyone": {"_count": 2, "help": {"_count": 1}, "else": {"_count": 1}}, "I": {"_count": 2, "": {"_count": 1}, "Potter": {"_count": 1}}, "even": {"_count": 2, "go": {"_count": 1}, "drive": {"_count": 1}}, "hear": {"_count": 2, "a": {"_count": 1}, "properly": {"_count": 1}}, "hurt": {"_count": 1, "to": {"_count": 1}}, "go": {"_count": 1, "in": {"_count": 1}}, "do": {"_count": 2, "nuffink": {"_count": 1}, "it": {"_count": 1}}, "we": {"_count": 4, "get": {"_count": 1}, "kidnap": {"_count": 1}, "just": {"_count": 1}, "call": {"_count": 1}}, "wait": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "houseelves": {"_count": 1, "speak": {"_count": 1}}, "steal": {"_count": 1, "too": {"_count": 1}}, "see": {"_count": 3, "why": {"_count": 1}, "how": {"_count": 1}, "anyone": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "forget": {"_count": 1, "it": {"_count": 1}}, "think": {"_count": 2, "what": {"_count": 1}, "of": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "it": {"_count": 2, "wait": {"_count": 1}, "": {"_count": 1}}, "move": {"_count": 1, "like": {"_count": 1}}, "just": {"_count": 1, "walk": {"_count": 1}}, "the": {"_count": 1, "Order": {"_count": 1}}, "they": {"_count": 1, "at": {"_count": 1}}, "carry": {"_count": 1, "a": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}}, "hell": {"_count": 107, "be": {"_count": 31, "growing": {"_count": 1}, "grateful": {"_count": 2}, "under": {"_count": 1}, "looking": {"_count": 1}, "all": {"_count": 5}, "a": {"_count": 2}, "back": {"_count": 4}, "in": {"_count": 1}, "able": {"_count": 4}, "telling": {"_count": 1}, "wondering": {"_count": 1}, "made": {"_count": 1}, "okay": {"_count": 2}, "delighted": {"_count": 1}, "there": {"_count": 1}, "fit": {"_count": 1}, "nothing": {"_count": 1}, "planning": {"_count": 1}}, "think": {"_count": 3, "": {"_count": 1}, "were": {"_count": 2}}, "have": {"_count": 7, "a": {"_count": 1}, "loads": {"_count": 1}, "to": {"_count": 1}, "swallowed": {"_count": 1}, "transported": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "go": {"_count": 2, "straight": {"_count": 1}, "back": {"_count": 1}}, "leave": {"_count": 1, "you": {"_count": 1}}, "already": {"_count": 1, "have": {"_count": 1}}, "chuck": {"_count": 1, "you": {"_count": 1}}, "tell": {"_count": 3, "them": {"_count": 1}, "you": {"_count": 2}}, "know": {"_count": 6, "how": {"_count": 1}, "": {"_count": 1}, "your": {"_count": 1}, "yeh": {"_count": 1}, "what": {"_count": 1}, "soon": {"_count": 1}}, "rise": {"_count": 1, "again": {"_count": 1}}, "get": {"_count": 1, "off": {"_count": 1}}, "like": {"_count": 1, "": {"_count": 1}}, "stand": {"_count": 1, "a": {"_count": 1}}, "cry": {"_count": 1, "when": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 3, "a": {"_count": 2}, "an": {"_count": 1}}, "choose": {"_count": 1, "the": {"_count": 1}}, "believe": {"_count": 1, "Im": {"_count": 1}}, "eat": {"_count": 1, "their": {"_count": 1}}, "dyou": {"_count": 1, "think": {"_count": 1}}, "probably": {"_count": 2, "be": {"_count": 2}}, "But": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 1, "pay": {"_count": 1}}, "are": {"_count": 4, "dementors": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 2}}, "turn": {"_count": 1, "into": {"_count": 1}}, "risk": {"_count": 1, "it": {"_count": 1}}, "change": {"_count": 1, "the": {"_count": 1}}, "drop": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "us": {"_count": 1}}, "recover": {"_count": 1, "said": {"_count": 1}}, "understand": {"_count": 1, "more": {"_count": 1}}, "hang": {"_count": 1, "on": {"_count": 1}}, "end": {"_count": 1, "by": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "try": {"_count": 1, "Im": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "teach": {"_count": 1, "you": {"_count": 1}}, "nail": {"_count": 1, "you": {"_count": 1}}, "take": {"_count": 1, "you": {"_count": 1}}, "just": {"_count": 1, "fall": {"_count": 1}}, "make": {"_count": 1, "double": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "find": {"_count": 2, "out": {"_count": 2}}, "kill": {"_count": 2, "me": {"_count": 2}}, "was": {"_count": 2, "Snape": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "panted": {"_count": 1, "Ron": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "do": {"_count": 1, "said": {"_count": 1}}, "check": {"_count": 1, "that": {"_count": 1}}, "crush": {"_count": 1, "half": {"_count": 1}}, "freezes": {"_count": 1, "over": {"_count": 1}}}, "growing": {"_count": 87, "up": {"_count": 2, "away": {"_count": 1}, "with": {"_count": 1}}, "dark": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "louder": {"_count": 15, "and": {"_count": 6}, "": {"_count": 2}, "again": {"_count": 1}, "with": {"_count": 3}, "but": {"_count": 1}, "from": {"_count": 2}}, "there": {"_count": 1, "in": {"_count": 1}}, "right": {"_count": 1, "out": {"_count": 1}}, "fainter": {"_count": 6, "": {"_count": 2}, "still": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 1}}, "them": {"_count": 1, "back": {"_count": 1}}, "dread": {"_count": 1, "that": {"_count": 1}}, "list": {"_count": 1, "": {"_count": 1}}, "hoarse": {"_count": 1, "from": {"_count": 1}}, "larger": {"_count": 6, "every": {"_count": 1}, "all": {"_count": 2}, "through": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "to": {"_count": 1, "dread": {"_count": 1}}, "restless": {"_count": 1, "for": {"_count": 1}}, "ever": {"_count": 2, "closer": {"_count": 1}, "larger": {"_count": 1}}, "tree": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 1, "larger": {"_count": 1}}, "brighter": {"_count": 2, "and": {"_count": 1}, "A": {"_count": 1}}, "steadier": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 1, "who": {"_count": 1}}, "tired": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "maze": {"_count": 1, "": {"_count": 1}}, "darker": {"_count": 1, "with": {"_count": 1}}, "quite": {"_count": 1, "sentimental": {"_count": 1}}, "stronger": {"_count": 4, "": {"_count": 1}, "for": {"_count": 1}, "I": {"_count": 1}, "every": {"_count": 1}}, "clearer": {"_count": 2, "all": {"_count": 1}, "and": {"_count": 1}}, "more": {"_count": 3, "insistent": {"_count": 1}, "distant": {"_count": 1}, "muffled": {"_count": 1}}, "numb": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "uneasy": {"_count": 1, "about": {"_count": 1}}, "so": {"_count": 1, "thick": {"_count": 1}}, "whiter": {"_count": 1, "threatening": {"_count": 1}}, "hot": {"_count": 1, "and": {"_count": 1}}, "steadily": {"_count": 1, "redder": {"_count": 1}}, "rather": {"_count": 1, "red": {"_count": 1}}, "balder": {"_count": 1, "and": {"_count": 1}}, "lighter": {"_count": 1, "as": {"_count": 1}}, "old": {"_count": 1, "": {"_count": 1}}, "number": {"_count": 1, "of": {"_count": 1}}, "bushier": {"_count": 1, "and": {"_count": 1}}, "nearby": {"_count": 1, "blocking": {"_count": 1}}, "brambles": {"_count": 1, "on": {"_count": 1}}, "nearer": {"_count": 1, "and": {"_count": 1}}, "throng": {"_count": 1, "on": {"_count": 1}}, "close": {"_count": 1, "together": {"_count": 1}}, "deafening": {"_count": 1, "it": {"_count": 1}}, "bigger": {"_count": 1, "and": {"_count": 1}}}, "ready": {"_count": 184, "to": {"_count": 74, "take": {"_count": 4}, "leave": {"_count": 5}, "buy": {"_count": 1}, "start": {"_count": 1}, "use": {"_count": 1}, "fire": {"_count": 1}, "fling": {"_count": 1}, "tell": {"_count": 1}, "be": {"_count": 1}, "talk": {"_count": 1}, "knock": {"_count": 1}, "kill": {"_count": 1}, "strike": {"_count": 7}, "pounce": {"_count": 1}, "die": {"_count": 2}, "clamp": {"_count": 1}, "close": {"_count": 1}, "welcome": {"_count": 1}, "declare": {"_count": 1}, "try": {"_count": 1}, "perform": {"_count": 1}, "bet": {"_count": 1}, "go": {"_count": 4}, "hand": {"_count": 1}, "make": {"_count": 1}, "attack": {"_count": 2}, "run": {"_count": 1}, "risk": {"_count": 1}, "face": {"_count": 2}, "answer": {"_count": 1}, "distract": {"_count": 1}, "accept": {"_count": 1}, "exchange": {"_count": 1}, "roll": {"_count": 1}, "join": {"_count": 1}, "poke": {"_count": 1}, "return": {"_count": 1}, "fight": {"_count": 3}, "fly": {"_count": 1}, "see": {"_count": 1}, "pass": {"_count": 1}, "believe": {"_count": 1}, "lash": {"_count": 1}, "release": {"_count": 1}, "respond": {"_count": 1}, "grab": {"_count": 1}, "cast": {"_count": 1}, "defend": {"_count": 1}, "wrestle": {"_count": 1}, "serve": {"_count": 1}, "duel": {"_count": 1}, "jump": {"_count": 1}, "give": {"_count": 1}}, "for": {"_count": 29, "the": {"_count": 9}, "you": {"_count": 3}, "repotting": {"_count": 1}, "cutting": {"_count": 1}, "a": {"_count": 3}, "when": {"_count": 2}, "your": {"_count": 1}, "departure": {"_count": 1}, "him": {"_count": 1}, "bed": {"_count": 1}, "this": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 2}, "them": {"_count": 1}, "us": {"_count": 1}}, "mind": {"_count": 1, "Where": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 1}, "about": {"_count": 1}, "two": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}}, "": {"_count": 37, "!": {"_count": 3}, ".": {"_count": 27}, "?": {"_count": 7}}, "you": {"_count": 1, "will": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "and": {"_count": 5, "er": {"_count": 1}, "everyone": {"_count": 1}, "they": {"_count": 1}, "swept": {"_count": 1}, "for": {"_count": 1}}, "but": {"_count": 2, "Here": {"_count": 1}, "shell": {"_count": 1}}, "by": {"_count": 1, "Tuesday": {"_count": 1}}, "Potted": {"_count": 1, "as": {"_count": 1}}, "ter": {"_count": 1, "set": {"_count": 1}}, "Master": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "automatically": {"_count": 1, "all": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "we": {"_count": 1, "will": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "he": {"_count": 1}}, "tonight": {"_count": 1, "if": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "Coote": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "hurtled": {"_count": 1, "around": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "please": {"_count": 1, "I": {"_count": 1}}}, "take": {"_count": 693, "it": {"_count": 80, "": {"_count": 14}, "and": {"_count": 5}, "even": {"_count": 1}, "in": {"_count": 6}, "from": {"_count": 2}, "apart": {"_count": 1}, "on": {"_count": 1}, "like": {"_count": 2}, "off": {"_count": 6}, "for": {"_count": 4}, "Harry": {"_count": 2}, "then": {"_count": 2}, "at": {"_count": 1}, "together": {"_count": 2}, "as": {"_count": 1}, "But": {"_count": 1}, "Im": {"_count": 1}, "or": {"_count": 2}, "when": {"_count": 1}, "badly": {"_count": 1}, "very": {"_count": 1}, "into": {"_count": 2}, "Dilys": {"_count": 1}, "whatever": {"_count": 1}, "now": {"_count": 1}, "seriously": {"_count": 1}, "he": {"_count": 1}, "are": {"_count": 1}, "up": {"_count": 3}, "with": {"_count": 2}, "you": {"_count": 2}, "said": {"_count": 1}, "who": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 2}, "personally": {"_count": 1}, "youre": {"_count": 1}, "out": {"_count": 1}}, "him": {"_count": 32, "": {"_count": 4}, "to": {"_count": 5}, "away": {"_count": 2}, "back": {"_count": 3}, "up": {"_count": 1}, "like": {"_count": 1}, "seriously": {"_count": 2}, "down": {"_count": 1}, "northwest": {"_count": 1}, "No": {"_count": 1}, "off": {"_count": 2}, "turns": {"_count": 1}, "from": {"_count": 1}, "outside": {"_count": 1}, "out": {"_count": 1}, "along": {"_count": 1}, "straight": {"_count": 1}, "there": {"_count": 1}, "long": {"_count": 1}, "on": {"_count": 1}}, "a": {"_count": 53, "sharp": {"_count": 1}, "school": {"_count": 1}, "genius": {"_count": 1}, "lot": {"_count": 1}, "step": {"_count": 1}, "pair": {"_count": 1}, "look": {"_count": 1}, "break": {"_count": 1}, "bit": {"_count": 3}, "room": {"_count": 1}, "moment": {"_count": 2}, "more": {"_count": 1}, "bath": {"_count": 3}, "round": {"_count": 1}, "leaf": {"_count": 1}, "good": {"_count": 1}, "turn": {"_count": 2}, "sip": {"_count": 3}, "spray": {"_count": 1}, "few": {"_count": 4}, "bite": {"_count": 2}, "drink": {"_count": 2}, "chunk": {"_count": 1}, "small": {"_count": 1}, "Transfiguration": {"_count": 1}, "napkin": {"_count": 1}, "stroll": {"_count": 1}, "mouthful": {"_count": 1}, "gulp": {"_count": 1}, "last": {"_count": 2}, "sandwich": {"_count": 1}, "couple": {"_count": 2}, "Grand": {"_count": 1}, "surprisingly": {"_count": 1}, "witchs": {"_count": 1}, "lead": {"_count": 1}, "long": {"_count": 1}, "great": {"_count": 1}}, "them": {"_count": 18, "said": {"_count": 1}, "from": {"_count": 1}, "down": {"_count": 1}, "home": {"_count": 1}, "all": {"_count": 2}, "into": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 1}, "out": {"_count": 2}, "through": {"_count": 1}, "off": {"_count": 1}, "and": {"_count": 1}, "they": {"_count": 1}, "to": {"_count": 2}, "take": {"_count": 1}}, "his": {"_count": 20, "eyes": {"_count": 5}, "mind": {"_count": 2}, "Nimbus": {"_count": 1}, "cloak": {"_count": 1}, "motorbike": {"_count": 1}, "N": {"_count": 1}, "potion": {"_count": 1}, "word": {"_count": 1}, "silence": {"_count": 1}, "things": {"_count": 2}, "place": {"_count": 1}, "help": {"_count": 1}, "Wheezy": {"_count": 1}, "secret": {"_count": 1}}, "the": {"_count": 73, "yellowish": {"_count": 1}, "train": {"_count": 1}, "Quaffle": {"_count": 2}, "Norwegian": {"_count": 1}, "cloak": {"_count": 1}, "place": {"_count": 2}, "note": {"_count": 2}, "shape": {"_count": 1}, "consequences": {"_count": 1}, "penalty": {"_count": 1}, "Slytherin": {"_count": 1}, "gold": {"_count": 1}, "tension": {"_count": 1}, "boy": {"_count": 2}, "plates": {"_count": 1}, "test": {"_count": 3}, "bestlooking": {"_count": 1}, "egg": {"_count": 1}, "Care": {"_count": 1}, "Marauders": {"_count": 1}, "left": {"_count": 2}, "cup": {"_count": 3}, "lead": {"_count": 1}, "first": {"_count": 1}, "word": {"_count": 1}, "necessary": {"_count": 1}, "steps": {"_count": 1}, "rest": {"_count": 2}, "thousandGalleon": {"_count": 1}, "badge": {"_count": 1}, "lessons": {"_count": 1}, "secret": {"_count": 1}, "morning": {"_count": 1}, "bandages": {"_count": 1}, "liver": {"_count": 1}, "advice": {"_count": 1}, "mickey": {"_count": 1}, "letter": {"_count": 1}, "best": {"_count": 1}, "badges": {"_count": 1}, "smallest": {"_count": 1}, "prophecy": {"_count": 1}, "job": {"_count": 1}, "iodine": {"_count": 1}, "actual": {"_count": 1}, "locket": {"_count": 1}, "trouble": {"_count": 1}, "safety": {"_count": 1}, "plunge": {"_count": 1}, "Horcrux": {"_count": 1}, "then": {"_count": 1}, "risk": {"_count": 1}, "Invisibility": {"_count": 1}, "new": {"_count": 1}, "day": {"_count": 1}, "potion": {"_count": 1}, "sword": {"_count": 2}, "blackthorn": {"_count": 1}, "stone": {"_count": 1}, "credit": {"_count": 1}, "lot": {"_count": 1}, "Cloak": {"_count": 1}}, "on": {"_count": 13, "the": {"_count": 6}, "Crabbe": {"_count": 1}, "this": {"_count": 1}, "Voldemort": {"_count": 1}, "tha": {"_count": 1}, "Riddle": {"_count": 1}, "Dawlish": {"_count": 1}, "it": {"_count": 1}}, "heed": {"_count": 1, "Of": {"_count": 1}}, "but": {"_count": 1, "do": {"_count": 1}}, "some": {"_count": 5, "money": {"_count": 1}, "again": {"_count": 1}, "smoothing": {"_count": 1}, "getting": {"_count": 1}, "Felix": {"_count": 1}}, "you": {"_count": 32, "down": {"_count": 2}, "to": {"_count": 4}, "on": {"_count": 1}, "through": {"_count": 1}, "Jiggery": {"_count": 1}, "home": {"_count": 2}, "away": {"_count": 2}, "up": {"_count": 2}, "inside": {"_count": 1}, "all": {"_count": 1}, "anywhere": {"_count": 1}, "back": {"_count": 1}, "only": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "entirely": {"_count": 1}, "ages": {"_count": 1}, "straight": {"_count": 1}, "seriously": {"_count": 1}, "off": {"_count": 1}, "with": {"_count": 1}, "you": {"_count": 1}, "next": {"_count": 1}, "out": {"_count": 1}}, "Rons": {"_count": 2, "mind": {"_count": 2}}, "your": {"_count": 16, "seats": {"_count": 1}, "coats": {"_count": 2}, "book": {"_count": 1}, "head": {"_count": 1}, "potion": {"_count": 1}, "word": {"_count": 2}, "bag": {"_count": 1}, "own": {"_count": 1}, "robes": {"_count": 1}, "things": {"_count": 1}, "tests": {"_count": 1}, "pick": {"_count": 1}, "charges": {"_count": 1}, "orders": {"_count": 1}}, "place": {"_count": 19, "in": {"_count": 1}, "at": {"_count": 5}, "as": {"_count": 1}, "on": {"_count": 5}, "this": {"_count": 1}, "if": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}, "until": {"_count": 1}, "heavily": {"_count": 1}}, "care": {"_count": 10, "of": {"_count": 7}, "GO": {"_count": 1}, "wont": {"_count": 1}, "said": {"_count": 1}}, "this": {"_count": 18, "boy": {"_count": 1}, "cheerful": {"_count": 1}, "to": {"_count": 2}, "Potter": {"_count": 1}, "back": {"_count": 1}, "so": {"_count": 1}, "he": {"_count": 2}, "Fred": {"_count": 1}, "box": {"_count": 1}, "class": {"_count": 1}, "eggcup": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 1}, "Hermione": {"_count": 1}, "thing": {"_count": 1}}, "over": {"_count": 11, "if": {"_count": 1}, "from": {"_count": 3}, "": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}, "keep": {"_count": 1}, "the": {"_count": 3}}, "Filch": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 5, "more": {"_count": 3}, "points": {"_count": 1}, "crap": {"_count": 1}}, "sides": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}}, "another": {"_count": 7, "fifty": {"_count": 1}, "Astronomy": {"_count": 1}, "five": {"_count": 1}, "bite": {"_count": 1}, "ten": {"_count": 1}, "swig": {"_count": 1}, "gulp": {"_count": 1}}, "that": {"_count": 13, "bishop": {"_count": 1}, "seat": {"_count": 1}, "gum": {"_count": 1}, "banshee": {"_count": 1}, "cat": {"_count": 1}, "ridiculous": {"_count": 1}, "song": {"_count": 2}, "attitude": {"_count": 1}, "lying": {"_count": 1}, "tone": {"_count": 2}, "away": {"_count": 1}}, "me": {"_count": 9, "that": {"_count": 1}, "kill": {"_count": 2}, "on": {"_count": 1}, "like": {"_count": 1}, "by": {"_count": 1}, "weight": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 1}}, "someone": {"_count": 1, "else": {"_count": 1}}, "Mrs": {"_count": 1, "Mason": {"_count": 1}}, "too": {"_count": 2, "long": {"_count": 2}}, "Dobby": {"_count": 1, "seriously": {"_count": 1}}, "three": {"_count": 1, "steps": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "Dark": {"_count": 1, "Magic": {"_count": 1}}, "to": {"_count": 3, "make": {"_count": 1}, "ensure": {"_count": 1}, "Kingsley": {"_count": 1}}, "what": {"_count": 4, "we": {"_count": 2}, "else": {"_count": 1}, "might": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "separate": {"_count": 1, "stalls": {"_count": 1}}, "my": {"_count": 9, "word": {"_count": 2}, "answer": {"_count": 1}, "lot": {"_count": 1}, "quill": {"_count": 1}, "body": {"_count": 1}, "hat": {"_count": 1}, "leave": {"_count": 1}, "curse": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Fang": {"_count": 2, "with": {"_count": 1}, "he": {"_count": 1}}, "ages": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, "?": {"_count": 7}, ".": {"_count": 1}}, "into": {"_count": 1, "account": {"_count": 1}}, "out": {"_count": 6, "his": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "their": {"_count": 1}, "your": {"_count": 2}}, "down": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "all": {"_count": 8, "the": {"_count": 1}, "weekend": {"_count": 1}, "his": {"_count": 1}, "those": {"_count": 1}, "morning": {"_count": 1}, "appropriate": {"_count": 1}, "night": {"_count": 1}, "warmth": {"_count": 1}}, "us": {"_count": 2, "ten": {"_count": 1}, "leaving": {"_count": 1}}, "fifty": {"_count": 1, "points": {"_count": 1}}, "no": {"_count": 5, "time": {"_count": 1}, "risks": {"_count": 1}, "for": {"_count": 1}, "sides": {"_count": 1}, "interest": {"_count": 1}}, "Malfoy": {"_count": 1, "s": {"_count": 1}}, "more": {"_count": 3, "than": {"_count": 2}, "zan": {"_count": 1}}, "Harry": {"_count": 10, "and": {"_count": 3}, "to": {"_count": 1}, "Potter": {"_count": 1}, "back": {"_count": 1}, "Dumbledore": {"_count": 1}, "upstairs": {"_count": 1}, "along": {"_count": 1}, "wont": {"_count": 1}}, "second": {"_count": 1, "place": {"_count": 1}}, "Sirius": {"_count": 2, "Black": {"_count": 1}, "an": {"_count": 1}}, "their": {"_count": 5, "O": {"_count": 1}, "leave": {"_count": 1}, "turn": {"_count": 1}, "usual": {"_count": 1}, "bedroom": {"_count": 1}}, "even": {"_count": 2, "one": {"_count": 1}, "more": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "every": {"_count": 1, "single": {"_count": 1}}, "Winky": {"_count": 1, "into": {"_count": 1}}, "an": {"_count": 2, "old": {"_count": 1}, "order": {"_count": 1}}, "notes": {"_count": 4, "": {"_count": 2}, "instead": {"_count": 1}, "for": {"_count": 1}}, "and": {"_count": 2, "it": {"_count": 1}, "at": {"_count": 1}}, "hours": {"_count": 1, "": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 2, "their": {"_count": 1}, "": {"_count": 1}}, "freedom": {"_count": 1, "but": {"_count": 1}}, "much": {"_count": 2, "longer": {"_count": 1}, "more": {"_count": 1}}, "photographs": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 14, "your": {"_count": 2}, "she": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 5}, "Snivellys": {"_count": 1}, "Snapes": {"_count": 1}}, "clothes": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 2, "upstairs": {"_count": 1}, "what": {"_count": 1}}, "weeks": {"_count": 2, "to": {"_count": 1}, "I": {"_count": 1}}, "these": {"_count": 7, "two": {"_count": 3}, "seats": {"_count": 1}, "up": {"_count": 1}, "anyway": {"_count": 1}, "away": {"_count": 1}}, "in": {"_count": 10, "a": {"_count": 1}, "any": {"_count": 2}, "what": {"_count": 2}, "the": {"_count": 2}, "their": {"_count": 2}, "Harry": {"_count": 1}}, "up": {"_count": 4, "the": {"_count": 3}, "arms": {"_count": 1}}, "advantage": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 3, "much": {"_count": 1}, "many": {"_count": 2}}, "baths": {"_count": 1, "": {"_count": 1}}, "flight": {"_count": 1, "again": {"_count": 1}}, "Ron": {"_count": 1, "to": {"_count": 1}}, "longer": {"_count": 1, "strides": {"_count": 1}}, "long": {"_count": 3, "": {"_count": 1}, "said": {"_count": 2}}, "from": {"_count": 2, "you": {"_count": 1}, "her": {"_count": 1}}, "Harrys": {"_count": 5, "word": {"_count": 1}, "interview": {"_count": 1}, "suspicions": {"_count": 1}, "hand": {"_count": 1}, "place": {"_count": 1}}, "her": {"_count": 8, "back": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 1}, "O": {"_count": 1}, "gaze": {"_count": 1}, "if": {"_count": 1}, "with": {"_count": 1}}, "hes": {"_count": 1, "still": {"_count": 1}}, "someones": {"_count": 1, "eye": {"_count": 1}}, "orders": {"_count": 1, "from": {"_count": 1}}, "em": {"_count": 1, "quick": {"_count": 1}}, "S": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "the": {"_count": 1}}, "time": {"_count": 3, "to": {"_count": 1}, "over": {"_count": 2}}, "five": {"_count": 1, "points": {"_count": 1}}, "points": {"_count": 1, "as": {"_count": 1}}, "many": {"_count": 1, "more": {"_count": 1}}, "Umbridge": {"_count": 1, "to": {"_count": 1}}, "lessons": {"_count": 1, "from": {"_count": 1}}, "part": {"_count": 3, "in": {"_count": 3}}, "risks": {"_count": 2, "Last": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 3, "each": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "tha": {"_count": 1, "job": {"_count": 1}}, "Occlumency": {"_count": 1, "lessons": {"_count": 1}}, "those": {"_count": 1, "seats": {"_count": 1}}, "Remedial": {"_count": 1, "Potions": {"_count": 1}}, "hold": {"_count": 2, "of": {"_count": 2}}, "ten": {"_count": 3, "years": {"_count": 1}, "different": {"_count": 1}, "from": {"_count": 1}}, "exams": {"_count": 1, "and": {"_count": 1}}, "Snape": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "Jack": {"_count": 1, "Sloper": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "students": {"_count": 1, "who": {"_count": 1}}, "Harold": {"_count": 1, "Dingles": {"_count": 1}}, "Hagrid": {"_count": 1, "off": {"_count": 1}}, "Potter": {"_count": 1, "too": {"_count": 1}}, "its": {"_count": 1, "bearings": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "private": {"_count": 1, "lessons": {"_count": 1}}, "bites": {"_count": 1, "of": {"_count": 1}}, "cheek": {"_count": 1, "from": {"_count": 1}}, "twenty": {"_count": 1, "wellearned": {"_count": 1}}, "Slughorn": {"_count": 1, "s": {"_count": 1}}, "matters": {"_count": 1, "into": {"_count": 1}}, "credit": {"_count": 1, "at": {"_count": 1}}, "uncommon": {"_count": 1, "skill": {"_count": 1}}, "dittany": {"_count": 1, "immediately": {"_count": 1}}, "moren": {"_count": 1, "that": {"_count": 1}}, "by": {"_count": 1, "far": {"_count": 1}}, "full": {"_count": 2, "credit": {"_count": 1}, "possession": {"_count": 1}}, "with": {"_count": 1, "us": {"_count": 1}}, "Hogwarts": {"_count": 1, "A": {"_count": 1}}, "Fleur": {"_count": 1, "Isabelle": {"_count": 1}}, "our": {"_count": 1, "eyes": {"_count": 1}}, "responsibility": {"_count": 1, "for": {"_count": 1}}, "turns": {"_count": 1, "wearing": {"_count": 1}}, "tips": {"_count": 1, "from": {"_count": 1}}, "refuge": {"_count": 1, "inside": {"_count": 1}}, "first": {"_count": 1, "watch": {"_count": 1}}, "Voldemort": {"_count": 1, "to": {"_count": 1}}, "humans": {"_count": 1, "with": {"_count": 1}}, "charge": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "anything": {"_count": 1, "for": {"_count": 1}}, "true": {"_count": 1, "possession": {"_count": 1}}, "zat": {"_count": 1, "room": {"_count": 1}}, "Nagini": {"_count": 1, "with": {"_count": 1}}, "everything": {"_count": 1, "in": {"_count": 1}}, "groups": {"_count": 2, "of": {"_count": 1}, "into": {"_count": 1}}, "anothers": {"_count": 1, "wand": {"_count": 1}}, "kindly": {"_count": 1, "to": {"_count": 1}}, "together": {"_count": 1, "and": {"_count": 1}}}, "opened": {"_count": 434, "her": {"_count": 23, "mouth": {"_count": 13}, "heart": {"_count": 1}, "enormous": {"_count": 1}, "bag": {"_count": 2}, "hump": {"_count": 1}, "eyes": {"_count": 1}, "handbag": {"_count": 1}, "copy": {"_count": 1}, "crocodile": {"_count": 1}, "paper": {"_count": 1}}, "the": {"_count": 65, "front": {"_count": 3}, "letter": {"_count": 1}, "door": {"_count": 21}, "crate": {"_count": 1}, "trunk": {"_count": 2}, "cage": {"_count": 1}, "book": {"_count": 3}, "back": {"_count": 1}, "Chamber": {"_count": 9}, "last": {"_count": 3}, "tiniest": {"_count": 1}, "envelope": {"_count": 1}, "classroom": {"_count": 2}, "Fat": {"_count": 1}, "library": {"_count": 1}, "telephone": {"_count": 1}, "drawingroom": {"_count": 1}, "magazine": {"_count": 1}, "paper": {"_count": 2}, "gate": {"_count": 1}, "kitchen": {"_count": 1}, "newspaper": {"_count": 1}, "box": {"_count": 1}, "lid": {"_count": 1}, "throttle": {"_count": 1}, "old": {"_count": 1}, "beaded": {"_count": 2}}, "its": {"_count": 7, "beady": {"_count": 1}, "mouth": {"_count": 5}, "pincers": {"_count": 1}}, "his": {"_count": 118, "newspaper": {"_count": 1}, "eyes": {"_count": 53}, "mouth": {"_count": 46}, "notes": {"_count": 1}, "trunk": {"_count": 2}, "wardrobe": {"_count": 2}, "desk": {"_count": 1}, "stinging": {"_count": 1}, "letter": {"_count": 1}, "books": {"_count": 1}, "schoolbag": {"_count": 1}, "copy": {"_count": 2}, "Dream": {"_count": 1}, "beak": {"_count": 1}, "mind": {"_count": 1}, "streaming": {"_count": 1}, "own": {"_count": 1}, "lips": {"_count": 1}}, "it": {"_count": 37, "with": {"_count": 1}, "excitedly": {"_count": 1}, "curiously": {"_count": 1}, "": {"_count": 10}, "last": {"_count": 1}, "eagerly": {"_count": 1}, "and": {"_count": 4}, "was": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}, "pushed": {"_count": 1}, "the": {"_count": 1}, "since": {"_count": 1}, "again": {"_count": 2}, "an": {"_count": 1}, "to": {"_count": 2}, "once": {"_count": 1}, "for": {"_count": 1}, "Hermes": {"_count": 1}, "very": {"_count": 1}, "he": {"_count": 1}, "tentatively": {"_count": 1}, "you": {"_count": 1}}, "suddenly": {"_count": 1, "onto": {"_count": 1}}, "wide": {"_count": 11, "like": {"_count": 3}, "as": {"_count": 2}, "enough": {"_count": 1}, "GRYFFINDOR": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}}, "gloatingly": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 6, "window": {"_count": 1}, "Mudblood": {"_count": 1}, "drawer": {"_count": 1}, "little": {"_count": 1}, "page": {"_count": 1}, "crack": {"_count": 1}}, "them": {"_count": 5, "again": {"_count": 3}, "the": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 19}, "!": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "instead": {"_count": 1}}, "by": {"_count": 2, "Slytherins": {"_count": 1}, "a": {"_count": 1}}, "Moste": {"_count": 1, "Potente": {"_count": 1}}, "before": {"_count": 4, "": {"_count": 4}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "glimpsed": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "silently": {"_count": 1, "and": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "fifty": {"_count": 1, "years": {"_count": 1}}, "and": {"_count": 41, "the": {"_count": 5}, "Ron": {"_count": 1}, "a": {"_count": 5}, "someone": {"_count": 1}, "in": {"_count": 1}, "Hermione": {"_count": 3}, "Harry": {"_count": 1}, "she": {"_count": 1}, "silence": {"_count": 1}, "everyone": {"_count": 1}, "Snape": {"_count": 1}, "three": {"_count": 1}, "Ludo": {"_count": 1}, "Cedric": {"_count": 1}, "Dumbledore": {"_count": 1}, "four": {"_count": 1}, "some": {"_count": 1}, "began": {"_count": 1}, "he": {"_count": 2}, "then": {"_count": 1}, "pushed": {"_count": 1}, "there": {"_count": 2}, "Slughorns": {"_count": 1}, "Hagrid": {"_count": 1}, "Mr": {"_count": 2}, "his": {"_count": 1}, "closed": {"_count": 1}, "Griphook": {"_count": 1}}, "one": {"_count": 2, "bleary": {"_count": 1}, "of": {"_count": 1}}, "then": {"_count": 1, "set": {"_count": 1}}, "for": {"_count": 3, "him": {"_count": 2}, "the": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "surprise": {"_count": 1}, "shock": {"_count": 1}, "front": {"_count": 1}}, "their": {"_count": 8, "books": {"_count": 3}, "bags": {"_count": 1}, "mouths": {"_count": 2}, "eyes": {"_count": 2}}, "dramatically": {"_count": 1, "you": {"_count": 1}}, "again": {"_count": 15, "": {"_count": 7}, "there": {"_count": 1}, "and": {"_count": 6}, "more": {"_count": 1}}, "behind": {"_count": 5, "them": {"_count": 2}, "him": {"_count": 2}, "Harry": {"_count": 1}}, "of": {"_count": 2, "its": {"_count": 2}}, "my": {"_count": 1, "door": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 1}, "will": {"_count": 1}, "his": {"_count": 1}, "once": {"_count": 2}, "that": {"_count": 1}}, "almost": {"_count": 1, "knocked": {"_count": 1}}, "Harrys": {"_count": 2, "present": {"_count": 1}, "gift": {"_count": 1}}, "Krums": {"_count": 1, "fan": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "Mundungus": {"_count": 1, "heaved": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "me": {"_count": 1, "mouth": {"_count": 1}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "up": {"_count": 4, "a": {"_count": 1}, "at": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "Dean": {"_count": 1, "and": {"_count": 1}}, "directly": {"_count": 1, "below": {"_count": 1}}, "onto": {"_count": 4, "cool": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}}, "as": {"_count": 1, "she": {"_count": 1}}, "that": {"_count": 1, "package": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "perhaps": {"_count": 1, "due": {"_count": 1}}, "right": {"_count": 1, "over": {"_count": 1}}, "He": {"_count": 1, "saw": {"_count": 1}}, "A": {"_count": 1, "laughing": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "he": {"_count": 1, "stepped": {"_count": 1}}, "to": {"_count": 2, "show": {"_count": 1}, "admit": {"_count": 1}}, "knocking": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "mouth": {"_count": 441, "changed": {"_count": 1, "her": {"_count": 1}}, "fell": {"_count": 16, "open": {"_count": 16}}, "and": {"_count": 44, "what": {"_count": 1}, "the": {"_count": 3}, "immediately": {"_count": 1}, "its": {"_count": 1}, "throat": {"_count": 2}, "tottered": {"_count": 1}, "great": {"_count": 1}, "headed": {"_count": 1}, "closed": {"_count": 1}, "let": {"_count": 1}, "turned": {"_count": 1}, "waded": {"_count": 1}, "nose": {"_count": 2}, "his": {"_count": 3}, "he": {"_count": 2}, "looking": {"_count": 1}, "throwing": {"_count": 1}, "instead": {"_count": 1}, "spoke": {"_count": 1}, "speaking": {"_count": 1}, "taking": {"_count": 1}, "swallowing": {"_count": 1}, "yet": {"_count": 1}, "blew": {"_count": 1}, "a": {"_count": 1}, "tell": {"_count": 1}, "chin": {"_count": 1}, "burst": {"_count": 1}, "still": {"_count": 1}, "saying": {"_count": 1}, "swallowed": {"_count": 1}, "knocked": {"_count": 1}, "tipped": {"_count": 1}, "Ron": {"_count": 1}, "sat": {"_count": 1}, "spat": {"_count": 1}, "belched": {"_count": 1}}, "with": {"_count": 10, "the": {"_count": 2}, "his": {"_count": 5}, "trembling": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}}, "was": {"_count": 27, "open": {"_count": 4}, "stretched": {"_count": 1}, "still": {"_count": 1}, "the": {"_count": 1}, "slightly": {"_count": 2}, "curving": {"_count": 1}, "fully": {"_count": 1}, "a": {"_count": 1}, "hanging": {"_count": 1}, "full": {"_count": 2}, "smiling": {"_count": 1}, "twitching": {"_count": 1}, "so": {"_count": 1}, "packed": {"_count": 1}, "as": {"_count": 1}, "exceptionally": {"_count": 1}, "very": {"_count": 2}, "triumphant": {"_count": 1}, "gaping": {"_count": 1}, "dry": {"_count": 1}, "suddenly": {"_count": 1}}, "shut": {"_count": 11, "said": {"_count": 1}, "But": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 2}, "could": {"_count": 1}, "very": {"_count": 1}, "about": {"_count": 1}, "tight": {"_count": 1}, "and": {"_count": 1}, "its": {"_count": 1}}, "went": {"_count": 1, "rather": {"_count": 1}}, "appeared": {"_count": 1, "floating": {"_count": 1}}, "to": {"_count": 40, "argue": {"_count": 4}, "stop": {"_count": 4}, "say": {"_count": 5}, "speak": {"_count": 8}, "respond": {"_count": 1}, "stifle": {"_count": 2}, "Harrys": {"_count": 1}, "reply": {"_count": 1}, "ask": {"_count": 2}, "retaliate": {"_count": 1}, "retort": {"_count": 2}, "disarm": {"_count": 1}, "indicate": {"_count": 1}, "try": {"_count": 1}, "shriek": {"_count": 1}, "resist": {"_count": 1}, "Morfin": {"_count": 1}, "the": {"_count": 1}, "shout": {"_count": 1}, "answer": {"_count": 1}}, "but": {"_count": 13, "hed": {"_count": 1}, "he": {"_count": 3}, "no": {"_count": 1}, "froze": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "Black": {"_count": 1}, "Snape": {"_count": 1}, "Malfoy": {"_count": 1}, "closed": {"_count": 1}}, "": {"_count": 83, ".": {"_count": 78}, "!": {"_count": 4}, "?": {"_count": 1}}, "perhaps": {"_count": 1, "to": {"_count": 1}}, "open": {"_count": 7, "": {"_count": 4}, "with": {"_count": 1}, "yet": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 8, "though": {"_count": 5}, "Harry": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "Mr": {"_count": 1, "Dursley": {"_count": 1}}, "closed": {"_count": 3, "while": {"_count": 1}, "it": {"_count": 2}}, "could": {"_count": 1, "go": {"_count": 1}}, "looked": {"_count": 2, "less": {"_count": 1}, "like": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "held": {"_count": 1, "wide": {"_count": 1}}, "hanging": {"_count": 6, "open": {"_count": 5}, "wide": {"_count": 1}}, "when": {"_count": 6, "a": {"_count": 1}, "he": {"_count": 1}, "Ludo": {"_count": 1}, "the": {"_count": 2}, "she": {"_count": 1}}, "on": {"_count": 4, "his": {"_count": 2}, "the": {"_count": 2}}, "had": {"_count": 9, "gone": {"_count": 3}, "become": {"_count": 2}, "fallen": {"_count": 1}, "opened": {"_count": 1}, "touched": {"_count": 1}, "stopped": {"_count": 1}}, "wide": {"_count": 9, "and": {"_count": 4}, "open": {"_count": 3}, "": {"_count": 1}, "again": {"_count": 1}}, "opening": {"_count": 1, "wider": {"_count": 1}}, "stretching": {"_count": 1, "wide": {"_count": 1}}, "But": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 5}, "a": {"_count": 1}, "our": {"_count": 1}}, "in": {"_count": 2, "horror": {"_count": 1}, "a": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}}, "stretched": {"_count": 3, "too": {"_count": 1}, "in": {"_count": 2}}, "slightly": {"_count": 7, "open": {"_count": 5}, "drier": {"_count": 1}, "ajar": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 2}, "full": {"_count": 1}}, "form": {"_count": 1, "the": {"_count": 1}}, "thinned": {"_count": 1, "and": {"_count": 1}}, "clenched": {"_count": 1, "tight": {"_count": 1}}, "under": {"_count": 1, "there": {"_count": 1}}, "curled": {"_count": 1, "into": {"_count": 1}}, "sagging": {"_count": 3, "": {"_count": 2}, "open": {"_count": 1}}, "wrists": {"_count": 1, "and": {"_count": 1}}, "hung": {"_count": 1, "open": {"_count": 1}}, "he": {"_count": 2, "choked": {"_count": 1}, "looked": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "unsurprisingly": {"_count": 1, "Dudley": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "full": {"_count": 2, "of": {"_count": 2}}, "twitched": {"_count": 4, "": {"_count": 3}, "slightly": {"_count": 1}}, "apparently": {"_count": 1, "thinking": {"_count": 1}}, "bulging": {"_count": 1, "with": {"_count": 1}}, "furiously": {"_count": 3, "": {"_count": 2}, "mouthed": {"_count": 1}}, "sucked": {"_count": 1, "it": {"_count": 1}}, "uncertainly": {"_count": 1, "": {"_count": 1}}, "opened": {"_count": 4, "in": {"_count": 2}, "wide": {"_count": 2}}, "into": {"_count": 1, "his": {"_count": 1}}, "if": {"_count": 1, "Snape": {"_count": 1}}, "curling": {"_count": 2, "into": {"_count": 2}}, "revealed": {"_count": 1, "a": {"_count": 1}}, "before": {"_count": 2, "he": {"_count": 2}}, "which": {"_count": 2, "looked": {"_count": 1}, "he": {"_count": 1}}, "then": {"_count": 1, "without": {"_count": 1}}, "the": {"_count": 3, "image": {"_count": 1}, "water": {"_count": 1}, "only": {"_count": 1}}, "they": {"_count": 1, "echoed": {"_count": 1}}, "curl": {"_count": 1, "into": {"_count": 1}}, "leered": {"_count": 1, "more": {"_count": 1}}, "Harry": {"_count": 2, "plunged": {"_count": 1}, "looked": {"_count": 1}}, "at": {"_count": 2, "last": {"_count": 1}, "once": {"_count": 1}}, "yet": {"_count": 2, "again": {"_count": 1}, "he": {"_count": 1}}, "halfopen": {"_count": 1, "clearly": {"_count": 1}}, "ignited": {"_count": 1, "the": {"_count": 1}}, "What": {"_count": 1, "are": {"_count": 1}}, "tightened": {"_count": 1, "slightly": {"_count": 1}}, "very": {"_count": 1, "thin": {"_count": 1}}, "stupidly": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "puzzled": {"_count": 1}}, "Snape": {"_count": 1, "insisted": {"_count": 1}}, "lifting": {"_count": 1, "his": {"_count": 1}}, "twitching": {"_count": 1, "": {"_count": 1}}, "Pretty": {"_count": 1, "girl": {"_count": 1}}, "tightly": {"_count": 1, "closed": {"_count": 1}}, "same": {"_count": 1, "eyebrows": {"_count": 1}}, "said": {"_count": 1, "James": {"_count": 1}}, "It": {"_count": 1, "unscrews": {"_count": 1}}, "lopsided": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "high": {"_count": 1}}, "even": {"_count": 2, "wider": {"_count": 1}, "as": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "moving": {"_count": 1, "but": {"_count": 1}}, "twisted": {"_count": 1, "as": {"_count": 1}}, "gaping": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "still": {"_count": 1, "working": {"_count": 1}}, "now": {"_count": 1, "full": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "organ": {"_count": 4, "among": {"_count": 1}, "or": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "half": {"_count": 1, "open": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "agape": {"_count": 1, "his": {"_count": 1}}, "contorted": {"_count": 1, "involuntarily": {"_count": 1}}, "hot": {"_count": 1, "greedy": {"_count": 1}}, "trembled": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "curved": {"_count": 1, "into": {"_count": 1}}, "once": {"_count": 1, "or": {"_count": 1}}, "pointed": {"_count": 1, "his": {"_count": 1}}, "however": {"_count": 1, "his": {"_count": 1}}, "She": {"_count": 1, "seemed": {"_count": 1}}, "He": {"_count": 2, "dropped": {"_count": 1}, "could": {"_count": 1}}, "she": {"_count": 1, "leapt": {"_count": 1}}, "bone": {"_count": 1, "dry": {"_count": 1}}, "muffling": {"_count": 1, "his": {"_count": 1}}, "bleeding": {"_count": 1, "utterly": {"_count": 1}}, "move": {"_count": 1, "and": {"_count": 1}}, "lolling": {"_count": 1, "open": {"_count": 1}}}, "swallowed": {"_count": 67, "and": {"_count": 6, "then": {"_count": 2}, "looked": {"_count": 1}, "took": {"_count": 1}, "waited": {"_count": 1}, "cast": {"_count": 1}}, "a": {"_count": 12, "lemon": {"_count": 1}, "lot": {"_count": 2}, "bottle": {"_count": 2}, "considerable": {"_count": 1}, "mouthful": {"_count": 1}, "particularly": {"_count": 1}, "Blood": {"_count": 1}, "large": {"_count": 1}, "love": {"_count": 1}, "fish": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 12}, "!": {"_count": 1}}, "it": {"_count": 3, "Flint": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "now": {"_count": 1, "what": {"_count": 1}}, "the": {"_count": 3, "textbook": {"_count": 1}, "jet": {"_count": 1}, "fake": {"_count": 1}}, "live": {"_count": 1, "snakes": {"_count": 1}}, "hard": {"_count": 2, "and": {"_count": 1}, "turned": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "his": {"_count": 5, "mouthful": {"_count": 3}, "ticket": {"_count": 1}, "voice": {"_count": 1}}, "knowing": {"_count": 1, "how": {"_count": 1}}, "her": {"_count": 2, "last": {"_count": 1}, "whole": {"_count": 1}}, "him": {"_count": 3, "and": {"_count": 1}, "from": {"_count": 1}, "once": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "by": {"_count": 5, "the": {"_count": 4}, "darkness": {"_count": 1}}, "up": {"_count": 1, "by": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "all": {"_count": 1}}, "too": {"_count": 1, "fast": {"_count": 1}}, "love": {"_count": 1, "potion": {"_count": 1}}, "Harry": {"_count": 1, "whole": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "then": {"_count": 1, "still": {"_count": 1}}}, "course": {"_count": 608, "": {"_count": 82, ".": {"_count": 67}, "?": {"_count": 4}, "!": {"_count": 11}}, "it": {"_count": 19, "involved": {"_count": 1}, "was": {"_count": 3}, "would": {"_count": 2}, "could": {"_count": 2}, "isnt": {"_count": 1}, "lives": {"_count": 1}, "wasnt": {"_count": 2}, "had": {"_count": 2}, "became": {"_count": 1}, "is": {"_count": 3}, "doesnt": {"_count": 1}}, "he": {"_count": 34, "was": {"_count": 6}, "has": {"_count": 2}, "thought": {"_count": 1}, "said": {"_count": 3}, "had": {"_count": 3}, "knows": {"_count": 1}, "does": {"_count": 1}, "isnt": {"_count": 2}, "doesnt": {"_count": 2}, "hasnt": {"_count": 1}, "uses": {"_count": 1}, "wanted": {"_count": 1}, "might": {"_count": 1}, "can": {"_count": 1}, "wasnt": {"_count": 1}, "muttered": {"_count": 1}, "answered": {"_count": 1}, "vos": {"_count": 1}, "did": {"_count": 1}, "added": {"_count": 1}, "came": {"_count": 1}, "told": {"_count": 1}}, "his": {"_count": 4, "birthdays": {"_count": 1}, "hopes": {"_count": 1}, "friend": {"_count": 1}, "long": {"_count": 1}}, "said": {"_count": 39, "Hagrid": {"_count": 2}, "Quirrell": {"_count": 1}, "Mr": {"_count": 3}, "Harry": {"_count": 6}, "Professor": {"_count": 3}, "Black": {"_count": 1}, "Percy": {"_count": 1}, "Amos": {"_count": 1}, "Nearly": {"_count": 1}, "Dumbledore": {"_count": 2}, "Moody": {"_count": 2}, "Hermione": {"_count": 3}, "Sirius": {"_count": 1}, "Malfoy": {"_count": 1}, "McGonagall": {"_count": 1}, "Umbridge": {"_count": 1}, "Fudge": {"_count": 1}, "Slughorn": {"_count": 3}, "Riddle": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Ron": {"_count": 1}, "Doge": {"_count": 1}, "Kingsley": {"_count": 1}}, "we": {"_count": 11, "knew": {"_count": 1}, "wiped": {"_count": 1}, "just": {"_count": 1}, "have": {"_count": 1}, "still": {"_count": 1}, "are": {"_count": 1}, "Seers": {"_count": 1}, "can": {"_count": 1}, "didnt": {"_count": 1}, "both": {"_count": 1}, "dont": {"_count": 1}}, "I": {"_count": 57, "knew": {"_count": 4}, "mean": {"_count": 1}, "just": {"_count": 1}, "got": {"_count": 1}, "cant": {"_count": 1}, "didnt": {"_count": 4}, "am": {"_count": 6}, "reckon": {"_count": 1}, "remembered": {"_count": 1}, "know": {"_count": 3}, "realize": {"_count": 1}, "dont": {"_count": 3}, "wont": {"_count": 1}, "did": {"_count": 2}, "have": {"_count": 2}, "thought": {"_count": 1}, "want": {"_count": 1}, "havent": {"_count": 3}, "will": {"_count": 1}, "heard": {"_count": 1}, "do": {"_count": 6}, "shall": {"_count": 1}, "w": {"_count": 1}, "understood": {"_count": 1}, "had": {"_count": 1}, "wouldnt": {"_count": 2}, "daresay": {"_count": 1}, "hope": {"_count": 1}, "ruddy": {"_count": 1}, "can": {"_count": 1}, "could": {"_count": 1}, "how": {"_count": 1}}, "not": {"_count": 29, "said": {"_count": 14}, "but": {"_count": 1}, "": {"_count": 7}, "mumbled": {"_count": 1}, "Snape": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}, "hasnt": {"_count": 1}}, "but": {"_count": 21, "hed": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 2}, "its": {"_count": 1}, "theres": {"_count": 1}, "I": {"_count": 3}, "we": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}, "Hagrids": {"_count": 1}, "mostly": {"_count": 1}, "fine": {"_count": 1}, "what": {"_count": 1}, "then": {"_count": 1}, "if": {"_count": 2}, "she": {"_count": 1}}, "you": {"_count": 22, "will": {"_count": 1}, "wouldnt": {"_count": 1}, "missed": {"_count": 1}, "may": {"_count": 1}, "havent": {"_count": 1}, "can": {"_count": 3}, "are": {"_count": 2}, "care": {"_count": 1}, "dont": {"_count": 1}, "werent": {"_count": 2}, "would": {"_count": 2}, "did": {"_count": 1}, "taught": {"_count": 1}, "couldnt": {"_count": 1}, "ave": {"_count": 1}, "must": {"_count": 1}, "were": {"_count": 1}}, "Harry": {"_count": 5, "swung": {"_count": 1}, "holding": {"_count": 1}, "however": {"_count": 1}, "Potter": {"_count": 1}, "it": {"_count": 1}}, "books": {"_count": 2, "by": {"_count": 2}}, "its": {"_count": 7, "supposed": {"_count": 1}, "very": {"_count": 1}, "not": {"_count": 3}, "advice": {"_count": 1}, "difficult": {"_count": 1}}, "nothing": {"_count": 1, "at": {"_count": 1}}, "someone": {"_count": 1, "downstairs": {"_count": 1}}, "the": {"_count": 13, "Golden": {"_count": 1}, "Elixir": {"_count": 1}, "famous": {"_count": 1}, "SecretKeeper": {"_count": 1}, "mind": {"_count": 1}, "ideal": {"_count": 1}, "Prophet": {"_count": 1}, "other": {"_count": 1}, "great": {"_count": 1}, "opening": {"_count": 1}, "Ministry": {"_count": 1}, "brothers": {"_count": 1}, "manner": {"_count": 1}}, "there": {"_count": 10, "was": {"_count": 2}, "are": {"_count": 2}, "could": {"_count": 1}, "is": {"_count": 2}, "isnt": {"_count": 1}, "had": {"_count": 2}}, "lie": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 19, "was": {"_count": 1}, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "I": {"_count": 2}, "books": {"_count": 1}, "Dumbledore": {"_count": 1}, "they": {"_count": 1}, "Albus": {"_count": 1}, "Professor": {"_count": 1}, "might": {"_count": 1}, "Sirius": {"_count": 1}, "made": {"_count": 1}, "assuming": {"_count": 1}, "would": {"_count": 2}, "is": {"_count": 1}, "you": {"_count": 1}, "nothing": {"_count": 1}}, "had": {"_count": 6, "the": {"_count": 1}, "stolen": {"_count": 1}, "you": {"_count": 1}, "endured": {"_count": 1}, "been": {"_count": 1}, "rebuffed": {"_count": 1}}, "How": {"_count": 1, "can": {"_count": 1}}, "without": {"_count": 1, "the": {"_count": 1}}, "schedules": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 1}}, "Mother": {"_count": 1, "was": {"_count": 1}}, "Its": {"_count": 1, "about": {"_count": 1}}, "and": {"_count": 4, "I": {"_count": 1}, "you": {"_count": 1}, "Ginny": {"_count": 1}, "long": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 4, "bit": {"_count": 1}, "chance": {"_count": 1}, "lot": {"_count": 1}, "close": {"_count": 1}}, "Dobby": {"_count": 1, "is": {"_count": 1}}, "Justins": {"_count": 1, "been": {"_count": 1}}, "hes": {"_count": 4, "got": {"_count": 1}, "a": {"_count": 1}, "going": {"_count": 1}, "very": {"_count": 1}}, "everyone": {"_count": 3, "thought": {"_count": 1}, "knows": {"_count": 1}, "was": {"_count": 1}}, "step": {"_count": 1, "aside": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "she": {"_count": 14, "said": {"_count": 4}, "didnt": {"_count": 1}, "isnt": {"_count": 1}, "went": {"_count": 1}, "doesnt": {"_count": 1}, "had": {"_count": 2}, "added": {"_count": 2}, "would": {"_count": 1}, "breathed": {"_count": 1}}, "have": {"_count": 2, "heard": {"_count": 1}, "brought": {"_count": 1}}, "youre": {"_count": 3, "not": {"_count": 2}, "worried": {"_count": 1}}, "schedule": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "if": {"_count": 8, "it": {"_count": 2}, "you": {"_count": 3}, "I": {"_count": 1}, "its": {"_count": 1}, "she": {"_count": 1}}, "exceptionally": {"_count": 1, "bright": {"_count": 1}}, "they": {"_count": 16, "were": {"_count": 3}, "like": {"_count": 1}, "didnt": {"_count": 3}, "are": {"_count": 2}, "would": {"_count": 1}, "can": {"_count": 1}, "couldnt": {"_count": 1}, "want": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}, "dont": {"_count": 1}}, "working": {"_count": 1, "tirelessly": {"_count": 1}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "Black": {"_count": 1, "was": {"_count": 1}}, "Im": {"_count": 5, "no": {"_count": 1}, "not": {"_count": 2}, "glad": {"_count": 1}, "sure": {"_count": 1}}, "avoiding": {"_count": 1, "it": {"_count": 1}}, "outside": {"_count": 1, "in": {"_count": 1}}, "your": {"_count": 2, "father": {"_count": 1}, "examination": {"_count": 1}}, "Snape": {"_count": 1, "tried": {"_count": 1}}, "Lupin": {"_count": 1, "breathed": {"_count": 1}}, "Potter": {"_count": 1, "has": {"_count": 1}}, "Professor": {"_count": 2, "said": {"_count": 1}, "Umbridge": {"_count": 1}}, "be": {"_count": 6, "glad": {"_count": 1}, "supporting": {"_count": 1}, "essential": {"_count": 1}, "ready": {"_count": 1}, "informing": {"_count": 1}, "orrible": {"_count": 1}}, "moving": {"_count": 1, "but": {"_count": 1}}, "of": {"_count": 13, "events": {"_count": 1}, "which": {"_count": 1}, "defensive": {"_count": 1}, "his": {"_count": 3}, "Shock": {"_count": 1}, "action": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}, "Apparition": {"_count": 1}, "course": {"_count": 1}}, "people": {"_count": 2, "panicked": {"_count": 1}, "were": {"_count": 1}}, "was": {"_count": 5, "still": {"_count": 2}, "ill": {"_count": 1}, "up": {"_count": 1}, "you": {"_count": 1}}, "vanished": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 3, "that": {"_count": 1}, "the": {"_count": 1}, "us": {"_count": 1}}, "arrived": {"_count": 1, "they": {"_count": 1}}, "their": {"_count": 1, "ability": {"_count": 1}}, "e": {"_count": 1, "is": {"_count": 1}}, "youve": {"_count": 2, "looked": {"_count": 1}, "got": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 3, "no": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "jus": {"_count": 1, "after": {"_count": 1}}, "an": {"_count": 1, "activity": {"_count": 1}}, "yehre": {"_count": 1, "all": {"_count": 1}}, "banned": {"_count": 1, "at": {"_count": 1}}, "Sirius": {"_count": 2, "muttered": {"_count": 1}, "said": {"_count": 1}}, "hed": {"_count": 1, "want": {"_count": 1}}, "with": {"_count": 2, "Sirius": {"_count": 1}, "intensive": {"_count": 1}}, "as": {"_count": 2, "long": {"_count": 1}, "Potter": {"_count": 1}}, "my": {"_count": 2, "Lord": {"_count": 2}}, "being": {"_count": 1, "my": {"_count": 1}}, "to": {"_count": 4, "keep": {"_count": 1}, "see": {"_count": 1}, "you": {"_count": 1}, "become": {"_count": 1}}, "about": {"_count": 1, "Harry": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "anytime": {"_count": 1, "the": {"_count": 1}}, "theyre": {"_count": 1, "flummoxed": {"_count": 1}}, "these": {"_count": 1, "particular": {"_count": 1}}, "looks": {"_count": 1, "exactly": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "been": {"_count": 1, "following": {"_count": 1}}, "aims": {"_count": 4, "she": {"_count": 1}, "said": {"_count": 1}, "are": {"_count": 1}, "still": {"_count": 1}}, "shes": {"_count": 2, "here": {"_count": 1}, "been": {"_count": 1}}, "Ill": {"_count": 1, "sign": {"_count": 1}}, "still": {"_count": 1, "in": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "thatll": {"_count": 1, "be": {"_count": 1}}, "forbidden": {"_count": 1, "from": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "wed": {"_count": 1, "have": {"_count": 1}}, "well": {"_count": 4, "used": {"_count": 1}, "come": {"_count": 1}, "help": {"_count": 1}, "Im": {"_count": 1}}, "dreamed": {"_count": 1, "anything": {"_count": 1}}, "nobody": {"_count": 2, "said": {"_count": 1}, "apart": {"_count": 1}}, "take": {"_count": 1, "place": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 3, "his": {"_count": 1}, "Harry": {"_count": 1}, "history": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "passed": {"_count": 1, "your": {"_count": 1}}, "another": {"_count": 1, "Muggleborn": {"_count": 1}}, "captains": {"_count": 1, "the": {"_count": 1}}, "Zabini": {"_count": 1, "did": {"_count": 1}}, "one": {"_count": 2, "doesnt": {"_count": 2}}, "Captain": {"_count": 1, "of": {"_count": 1}}, "Malfoy": {"_count": 1, "would": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "Coote": {"_count": 1, "isnt": {"_count": 1}}, "natural": {"_count": 1, "after": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "Burke": {"_count": 1, "knows": {"_count": 1}}, "proves": {"_count": 1, "nothing": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "existence": {"_count": 1, "in": {"_count": 1}}, "never": {"_count": 1, "guessing": {"_count": 1}}, "Lucius": {"_count": 1, "did": {"_count": 1}}, "this": {"_count": 1, "puts": {"_count": 1}}, "deeply": {"_count": 1, "impressed": {"_count": 1}}, "secretly": {"_count": 1, "fears": {"_count": 1}}, "think": {"_count": 1, "to": {"_count": 1}}, "devastated": {"_count": 1, "he": {"_count": 1}}, "Dumbledore": {"_count": 2, "is": {"_count": 1}, "and": {"_count": 1}}, "Ron": {"_count": 1, "but": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "James": {"_count": 1, "thought": {"_count": 1}}, "Voldemort": {"_count": 1, "would": {"_count": 1}}, "nearly": {"_count": 1, "every": {"_count": 1}}, "make": {"_count": 1, "imprisoning": {"_count": 1}}, "You": {"_count": 1, "realize": {"_count": 1}}, "Dora": {"_count": 1, "quite": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "something": {"_count": 1, "will": {"_count": 1}}, "how": {"_count": 1, "can": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "running": {"_count": 1, "at": {"_count": 1}}}, "getting": {"_count": 328, "here": {"_count": 1, "Dumbledore": {"_count": 1}}, "a": {"_count": 14, "bit": {"_count": 6}, "little": {"_count": 3}, "firmer": {"_count": 1}, "beard": {"_count": 1}, "bad": {"_count": 1}, "better": {"_count": 1}, "smart": {"_count": 1}}, "mixed": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 10, "": {"_count": 2}, "and": {"_count": 3}, "every": {"_count": 1}, "to": {"_count": 1}, "thinking": {"_count": 1}, "from": {"_count": 1}, "with": {"_count": 1}}, "there": {"_count": 6, "in": {"_count": 1}, "": {"_count": 3}, "Sirius": {"_count": 1}, "too": {"_count": 1}}, "me": {"_count": 2, "one": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 36, "Kings": {"_count": 2}, "his": {"_count": 19}, "her": {"_count": 7}, "Hogwarts": {"_count": 1}, "know": {"_count": 2}, "share": {"_count": 1}, "their": {"_count": 2}, "the": {"_count": 1}, "me": {"_count": 1}}, "proper": {"_count": 1, "birthday": {"_count": 1}}, "away": {"_count": 4, "from": {"_count": 2}, "": {"_count": 2}}, "dark": {"_count": 2, "": {"_count": 1}, "already": {"_count": 1}}, "the": {"_count": 13, "loudest": {"_count": 1}, "train": {"_count": 1}, "real": {"_count": 1}, "truth": {"_count": 1}, "support": {"_count": 1}, "better": {"_count": 1}, "Daily": {"_count": 1}, "worst": {"_count": 1}, "chant": {"_count": 1}, "exit": {"_count": 1}, "credit": {"_count": 1}, "memory": {"_count": 1}, "date": {"_count": 1}}, "rid": {"_count": 7, "of": {"_count": 7}}, "lost": {"_count": 1, "once": {"_count": 1}}, "on": {"_count": 11, "the": {"_count": 2}, "with": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 1}, "fine": {"_count": 1}}, "started": {"_count": 2, "at": {"_count": 1}, "on": {"_count": 1}}, "nearer": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "Scabbers": {"_count": 1}}, "over": {"_count": 1, "that": {"_count": 1}}, "back": {"_count": 6, "at": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 1}, "said": {"_count": 1}, "some": {"_count": 1}, "onto": {"_count": 1}}, "warm": {"_count": 1, "when": {"_count": 1}}, "Malfoy": {"_count": 1, "expelled": {"_count": 1}}, "them": {"_count": 3, "to": {"_count": 1}, "into": {"_count": 1}, "all": {"_count": 1}}, "redder": {"_count": 1, "and": {"_count": 1}}, "paler": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "him": {"_count": 1, "here": {"_count": 1}}, "thicker": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 5, "worried": {"_count": 1}, "paranoid": {"_count": 1}, "out": {"_count": 1}, "good": {"_count": 1}, "hungry": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}, "completely": {"_count": 1, "out": {"_count": 1}}, "too": {"_count": 2, "quiet": {"_count": 1}, "old": {"_count": 1}}, "along": {"_count": 5, "without": {"_count": 1}, "perfectly": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "fine": {"_count": 1}}, "much": {"_count": 1, "much": {"_count": 1}}, "onto": {"_count": 2, "platform": {"_count": 2}}, "your": {"_count": 2, "head": {"_count": 1}, "father": {"_count": 1}}, "hit": {"_count": 2, "fortyfive": {"_count": 1}, "by": {"_count": 1}}, "hold": {"_count": 2, "of": {"_count": 2}}, "into": {"_count": 8, "bed": {"_count": 3}, "the": {"_count": 2}, "trouble": {"_count": 2}, "and": {"_count": 1}}, "unsteadily": {"_count": 1, "to": {"_count": 1}}, "ideas": {"_count": 1, "he": {"_count": 1}}, "all": {"_count": 3, "the": {"_count": 1}, "those": {"_count": 1}, "these": {"_count": 1}}, "his": {"_count": 5, "comeuppance": {"_count": 1}, "name": {"_count": 1}, "autograph": {"_count": 1}, "fingers": {"_count": 1}, "skull": {"_count": 1}}, "desperate": {"_count": 2, "they": {"_count": 1}, "": {"_count": 1}}, "riskier": {"_count": 1, "and": {"_count": 1}}, "better": {"_count": 7, "or": {"_count": 1}, "at": {"_count": 2}, "I": {"_count": 1}, "it": {"_count": 1}, "could": {"_count": 1}, "all": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "ready": {"_count": 5, "to": {"_count": 2}, "": {"_count": 2}, "for": {"_count": 1}}, "exams": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "getting": {"_count": 1, "ready": {"_count": 1}}, "very": {"_count": 3, "good": {"_count": 1}, "nervous": {"_count": 1}, "far": {"_count": 1}}, "it": {"_count": 2, "delivered": {"_count": 1}, "all": {"_count": 1}}, "heavily": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 1, "owl": {"_count": 1}}, "inside": {"_count": 5, "seemed": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}, "without": {"_count": 1}}, "slower": {"_count": 1, "and": {"_count": 1}}, "dizzier": {"_count": 1, "and": {"_count": 1}}, "called": {"_count": 1, "off": {"_count": 1}}, "colder": {"_count": 1, "and": {"_count": 1}}, "harder": {"_count": 1, "and": {"_count": 1}}, "darker": {"_count": 1, "as": {"_count": 1}}, "more": {"_count": 5, "and": {"_count": 2}, "followers": {"_count": 1}, "paranoid": {"_count": 1}, "firewhisky": {"_count": 1}}, "hungry": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 6, "through": {"_count": 1}, "trouble": {"_count": 2}, "touch": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 1}}, "stone": {"_count": 1, "cold": {"_count": 1}}, "worse": {"_count": 5, "Harry": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "the": {"_count": 1}}, "late": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "through": {"_count": 4, "all": {"_count": 1}, "six": {"_count": 1}, "that": {"_count": 1}, "any": {"_count": 1}}, "ridiculous": {"_count": 2, "": {"_count": 2}}, "sick": {"_count": 4, "of": {"_count": 4}}, "closer": {"_count": 1, "": {"_count": 1}}, "jumpy": {"_count": 1, "about": {"_count": 1}}, "silly": {"_count": 1, "dear": {"_count": 1}}, "everyone": {"_count": 1, "elses": {"_count": 1}}, "suspicious": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "anything": {"_count": 1, "for": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 4}, "": {"_count": 2}, "today": {"_count": 1}}, "trampled": {"_count": 1, "by": {"_count": 1}}, "any": {"_count": 1, "nearer": {"_count": 1}}, "paid": {"_count": 1, "": {"_count": 1}}, "fewer": {"_count": 1, "and": {"_count": 1}}, "stupid": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 2, "the": {"_count": 1}, "dragons": {"_count": 1}}, "clearer": {"_count": 1, "and": {"_count": 1}}, "help": {"_count": 1, "": {"_count": 1}}, "short": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 3, "much": {"_count": 1}, "good": {"_count": 1}, "powerful": {"_count": 1}}, "fishier": {"_count": 1, "": {"_count": 1}}, "worried": {"_count": 1, "": {"_count": 1}}, "stronger": {"_count": 7, "": {"_count": 3}, "again": {"_count": 3}, "It": {"_count": 1}}, "herself": {"_count": 1, "lost": {"_count": 1}}, "Harry": {"_count": 1, "through": {"_count": 1}}, "near": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "taller": {"_count": 1, "and": {"_count": 1}}, "money": {"_count": 1, "off": {"_count": 1}}, "quite": {"_count": 1, "quite": {"_count": 1}}, "wherever": {"_count": 1, "were": {"_count": 1}}, "stuff": {"_count": 2, "to": {"_count": 1}, "into": {"_count": 1}}, "old": {"_count": 1, "and": {"_count": 1}}, "blacker": {"_count": 1, "every": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "that": {"_count": 2, "for": {"_count": 1}, "memory": {"_count": 1}}, "married": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "now": {"_count": 1, "are": {"_count": 1}}, "marked": {"_count": 1, "down": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}, "slowly": {"_count": 1, "to": {"_count": 1}}, "used": {"_count": 2, "to": {"_count": 2}}, "himself": {"_count": 1, "a": {"_count": 1}}, "yourself": {"_count": 2, "seen": {"_count": 1}, "caught": {"_count": 1}}, "bored": {"_count": 1, "walking": {"_count": 1}}, "wearily": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "wind": {"_count": 1, "of": {"_count": 1}}, "massive": {"_count": 1, "orders": {"_count": 1}}, "free": {"_count": 1, "time": {"_count": 1}}, "us": {"_count": 1, "nowhere": {"_count": 1}}, "another": {"_count": 1, "word": {"_count": 1}}, "angry": {"_count": 1, "again": {"_count": 1}}, "anywhere": {"_count": 1, "but": {"_count": 1}}, "Fleur": {"_count": 1, "for": {"_count": 1}}, "poisoned": {"_count": 1, "being": {"_count": 1}}, "shot": {"_count": 1, "of": {"_count": 1}}, "smaller": {"_count": 1, "he": {"_count": 1}}, "hurt": {"_count": 2, "": {"_count": 1}, "while": {"_count": 1}}, "my": {"_count": 1, "Invisibility": {"_count": 1}}, "students": {"_count": 1, "home": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "together": {"_count": 1, "and": {"_count": 1}}, "edgy": {"_count": 1, "": {"_count": 1}}, "warmer": {"_count": 1, "said": {"_count": 1}}, "carried": {"_count": 1, "away": {"_count": 1}}, "pretty": {"_count": 1, "big": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}}, "hiding": {"_count": 125, "Harry": {"_count": 2, "underneath": {"_count": 1}, "couldnt": {"_count": 1}}, "a": {"_count": 1, "snigger": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 12}, "?": {"_count": 2}, "!": {"_count": 1}}, "his": {"_count": 1, "glee": {"_count": 1}}, "something": {"_count": 3, "behind": {"_count": 1}, "but": {"_count": 1}, "indecent": {"_count": 1}}, "behind": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 2}}, "an": {"_count": 1, "illegal": {"_count": 1}}, "place": {"_count": 12, "examining": {"_count": 1}, "and": {"_count": 2}, "hed": {"_count": 1}, "": {"_count": 1}, "under": {"_count": 1}, "far": {"_count": 1}, "for": {"_count": 2}, "even": {"_count": 1}, "perhaps": {"_count": 1}, "had": {"_count": 1}}, "them": {"_count": 3, "in": {"_count": 1}, "very": {"_count": 1}, "from": {"_count": 1}}, "down": {"_count": 1, "her": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 4}, "flower": {"_count": 1}, "London": {"_count": 1}, "a": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "it": {"_count": 2, "from": {"_count": 1}, "was": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "from": {"_count": 1}}, "her": {"_count": 5, "": {"_count": 2}, "from": {"_count": 1}, "face": {"_count": 1}, "flew": {"_count": 1}}, "from": {"_count": 7, "me": {"_count": 1}, "Voldemorts": {"_count": 1}, "Fred": {"_count": 1}, "us": {"_count": 1}, "everyone": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}}, "for": {"_count": 4, "fifteen": {"_count": 1}, "some": {"_count": 1}, "a": {"_count": 1}, "good": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "fire": {"_count": 1}}, "filling": {"_count": 1, "in": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 2, "else": {"_count": 1}, "at": {"_count": 1}}, "nothing": {"_count": 1, "Moody": {"_count": 1}}, "wouldnt": {"_count": 1, "she": {"_count": 1}}, "by": {"_count": 2, "those": {"_count": 1}, "being": {"_count": 1}}, "under": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "scar": {"_count": 1}, "Bill": {"_count": 1}}, "their": {"_count": 2, "surprise": {"_count": 1}, "faces": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "upstairs": {"_count": 1, "somewhere": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 2, "in": {"_count": 1}, "here": {"_count": 1}}, "places": {"_count": 8, "was": {"_count": 1}, "nearby": {"_count": 1}, "having": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 2}, "this": {"_count": 1}, "it": {"_count": 1}}, "just": {"_count": 1, "behind": {"_count": 1}}, "simply": {"_count": 1, "lurking": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 1, "some": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "using": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "taught": {"_count": 1}}, "thats": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "rule": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "somewhere": {"_count": 1, "": {"_count": 1}}, "save": {"_count": 1, "yourself": {"_count": 1}}, "stuff": {"_count": 1, "for": {"_count": 1}}, "Ariana": {"_count": 1, "but": {"_count": 1}}}, "underneath": {"_count": 41, "it": {"_count": 5, "": {"_count": 3}, "themselves": {"_count": 1}, "examining": {"_count": 1}}, "them": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "the": {"_count": 14, "castle": {"_count": 1}, "dog": {"_count": 1}, "kettle": {"_count": 1}, "ghoul": {"_count": 1}, "first": {"_count": 1}, "mud": {"_count": 1}, "trapdoor": {"_count": 1}, "pipes": {"_count": 1}, "spell": {"_count": 1}, "mistletoe": {"_count": 1}, "bench": {"_count": 1}, "Invisibility": {"_count": 1}, "dank": {"_count": 1}, "tablecloth": {"_count": 1}}, "him": {"_count": 3, "holding": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "his": {"_count": 3, "pillow": {"_count": 1}, "robes": {"_count": 1}, "trainers": {"_count": 1}}, "nine": {"_count": 1, "oclock": {"_count": 1}}, "that": {"_count": 1, "Arithmancy": {"_count": 1}}, "Moodys": {"_count": 1, "unconscious": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "beak": {"_count": 1}}, "Peeves": {"_count": 1, "who": {"_count": 1}}, "a": {"_count": 1, "frozen": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "shawls": {"_count": 1}}, "this": {"_count": 1, "singular": {"_count": 1}}}, "bringing": {"_count": 54, "him": {"_count": 6, "": {"_count": 1}, "packages": {"_count": 1}, "gasping": {"_count": 1}, "in": {"_count": 1}, "out": {"_count": 1}, "this": {"_count": 1}}, "back": {"_count": 2, "dead": {"_count": 1}, "memories": {"_count": 1}}, "on": {"_count": 1, "substitutes": {"_count": 1}}, "up": {"_count": 7, "the": {"_count": 6}, "two": {"_count": 1}}, "a": {"_count": 1, "strong": {"_count": 1}}, "them": {"_count": 2, "to": {"_count": 1}, "back": {"_count": 1}}, "out": {"_count": 4, "a": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "Phineas": {"_count": 1}}, "the": {"_count": 3, "executioner": {"_count": 1}, "thief": {"_count": 1}, "action": {"_count": 1}}, "it": {"_count": 3, "about": {"_count": 1}, "down": {"_count": 1}, "up": {"_count": 1}}, "their": {"_count": 1, "lead": {"_count": 1}}, "her": {"_count": 2, "Hagrid": {"_count": 1}, "with": {"_count": 1}}, "now": {"_count": 1, "Karkaroffs": {"_count": 1}}, "Harry": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "out": {"_count": 1}}, "you": {"_count": 2, "news": {"_count": 1}, "up": {"_count": 1}}, "me": {"_count": 1, "news": {"_count": 1}}, "trouble": {"_count": 1, "down": {"_count": 1}}, "letters": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 5, "it": {"_count": 3}, "him": {"_count": 1}, "her": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "your": {"_count": 1, "Transfiguration": {"_count": 1}}, "highly": {"_count": 1, "dangerous": {"_count": 1}}, "Luna": {"_count": 1, "just": {"_count": 1}}, "other": {"_count": 1, "Death": {"_count": 1}}, "someone": {"_count": 1, "back": {"_count": 1}}, "down": {"_count": 1, "Fenrir": {"_count": 1}}}, "wise": {"_count": 17, "to": {"_count": 4, "trust": {"_count": 1}, "what": {"_count": 1}, "have": {"_count": 1}, "wait": {"_count": 1}}, "old": {"_count": 2, "Ravenclaw": {"_count": 1}, "face": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "move": {"_count": 1, "wasnt": {"_count": 1}}, "decision": {"_count": 1, "on": {"_count": 1}}, "little": {"_count": 1, "gnomes": {"_count": 1}}, "words": {"_count": 1, "Rapier": {"_count": 1}}, "Minerva": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "courageous": {"_count": 1}}}, "trust": {"_count": 84, "Hagrid": {"_count": 3, "with": {"_count": 2}, "and": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}, "didnt": {"_count": 1, "dare": {"_count": 1}}, "me": {"_count": 13, "see": {"_count": 1}, "": {"_count": 6}, "said": {"_count": 1}, "this": {"_count": 1}, "blindly": {"_count": 1}, "even": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "him": {"_count": 8, "at": {"_count": 1}, "hes": {"_count": 1}, "havent": {"_count": 1}, "The": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}, "sir": {"_count": 1}}, "you": {"_count": 6, "are": {"_count": 1}, "remember": {"_count": 1}, "both": {"_count": 1}, "Snape": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "Hagrids": {"_count": 1, "my": {"_count": 1}}, "anything": {"_count": 2, "that": {"_count": 2}}, "yeh": {"_count": 1, "if": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "has": {"_count": 1, "meant": {"_count": 1}}, "": {"_count": 12, "?": {"_count": 5}, ".": {"_count": 7}}, "anyone": {"_count": 2, "anymore": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 5, "your": {"_count": 1}, "you": {"_count": 2}, "cowardly": {"_count": 1}, "I": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 2}}, "each": {"_count": 2, "other": {"_count": 2}}, "us": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "hes": {"_count": 1}}, "How": {"_count": 1, "do": {"_count": 1}}, "his": {"_count": 1, "judgment": {"_count": 1}}, "Dumbledore": {"_count": 1, "we": {"_count": 1}}, "Severus": {"_count": 3, "Snape": {"_count": 2}, "": {"_count": 1}}, "therefore": {"_count": 1, "in": {"_count": 1}}, "Dumbledores": {"_count": 1, "judgment": {"_count": 1}}, "people": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "lots": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 2, "me": {"_count": 1}, "Snape": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "are": {"_count": 1}}, "Death": {"_count": 1, "": {"_count": 1}}, "Bellatrix": {"_count": 1, "and": {"_count": 1}}}, "Hagrid": {"_count": 1804, "with": {"_count": 13, "something": {"_count": 1}, "my": {"_count": 1}, "some": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 6}, "his": {"_count": 3}}, "said": {"_count": 78, "Dumbledore": {"_count": 6}, "Harry": {"_count": 13}, "": {"_count": 3}, "his": {"_count": 1}, "Snape": {"_count": 1}, "Hermione": {"_count": 13}, "Ron": {"_count": 4}, "Filch": {"_count": 1}, "Ronan": {"_count": 1}, "with": {"_count": 1}, "Fudge": {"_count": 2}, "Mr": {"_count": 2}, "uncertainly": {"_count": 1}, "angrily": {"_count": 1}, "so": {"_count": 1}, "sitting": {"_count": 1}, "to": {"_count": 1}, "grinning": {"_count": 1}, "happily": {"_count": 1}, "loudly": {"_count": 1}, "Charlie": {"_count": 2}, "an": {"_count": 1}, "eagerly": {"_count": 1}, "when": {"_count": 1}, "its": {"_count": 1}, "staring": {"_count": 1}, "Sirius": {"_count": 1}, "in": {"_count": 1}, "sounding": {"_count": 1}, "smiling": {"_count": 1}, "they": {"_count": 1}, "abruptly": {"_count": 1}, "beaming": {"_count": 1}, "a": {"_count": 1}, "Magorian": {"_count": 2}, "importantly": {"_count": 1}, "confidently": {"_count": 1}, "Professor": {"_count": 1}, "All": {"_count": 1}, "you": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "": {"_count": 273, ".": {"_count": 183}, "!": {"_count": 37}, "?": {"_count": 53}}, "let": {"_count": 4, "out": {"_count": 4}}, "taking": {"_count": 1, "out": {"_count": 1}}, "or": {"_count": 5, "well": {"_count": 1}, "just": {"_count": 1}, "decide": {"_count": 1}, "whether": {"_count": 1}, "Slughorn": {"_count": 1}}, "gingerly": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 20, "a": {"_count": 7}, "relief": {"_count": 1}, "his": {"_count": 2}, "because": {"_count": 1}, "trouble": {"_count": 1}, "the": {"_count": 5}, "there": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 1}}, "swung": {"_count": 1, "himself": {"_count": 1}}, "Keeper": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 16, "said": {"_count": 4}, "might": {"_count": 1}, "doubted": {"_count": 1}, "was": {"_count": 2}, "noticed": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}, "felt": {"_count": 1}, "could": {"_count": 1}, "killed": {"_count": 1}, "repeated": {"_count": 1}, "ran": {"_count": 1}}, "looked": {"_count": 20, "shocked": {"_count": 2}, "as": {"_count": 1}, "at": {"_count": 3}, "down": {"_count": 1}, "furious": {"_count": 1}, "around": {"_count": 1}, "very": {"_count": 1}, "too": {"_count": 1}, "outraged": {"_count": 1}, "over": {"_count": 1}, "sideways": {"_count": 1}, "stumped": {"_count": 1}, "up": {"_count": 2}, "thoroughly": {"_count": 1}, "a": {"_count": 1}, "stunned": {"_count": 1}}, "turning": {"_count": 5, "to": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 1}, "his": {"_count": 1}, "back": {"_count": 1}}, "thundered": {"_count": 1, "": {"_count": 1}}, "simply": {"_count": 3, "waved": {"_count": 1}, "loved": {"_count": 1}, "looked": {"_count": 1}}, "stared": {"_count": 4, "wildly": {"_count": 1}, "at": {"_count": 3}}, "ran": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}}, "now": {"_count": 7, "gave": {"_count": 1}, "listen": {"_count": 1}, "": {"_count": 2}, "bent": {"_count": 1}, "stood": {"_count": 1}, "thrown": {"_count": 1}}, "spoke": {"_count": 1, "his": {"_count": 1}}, "sitting": {"_count": 2, "back": {"_count": 1}, "himself": {"_count": 1}}, "clapping": {"_count": 3, "a": {"_count": 2}, "his": {"_count": 1}}, "Hagrid": {"_count": 1, "rolled": {"_count": 1}}, "rolled": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 9, "at": {"_count": 1}, "we": {"_count": 1}, "have": {"_count": 1}, "he": {"_count": 1}, "Hermione": {"_count": 1}, "were": {"_count": 1}, "with": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "grunted": {"_count": 6, "": {"_count": 3}, "into": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "its": {"_count": 5, "what": {"_count": 1}, "in": {"_count": 1}, "Transfiguration": {"_count": 1}, "us": {"_count": 2}}, "jumping": {"_count": 1, "up": {"_count": 1}}, "gulped": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "shuddered": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 4, "pulled": {"_count": 1}, "looked": {"_count": 1}, "stood": {"_count": 1}, "said": {"_count": 1}}, "was": {"_count": 86, "watching": {"_count": 1}, "positively": {"_count": 1}, "so": {"_count": 3}, "beaming": {"_count": 2}, "standing": {"_count": 6}, "drinking": {"_count": 1}, "behind": {"_count": 1}, "looking": {"_count": 2}, "about": {"_count": 1}, "squinting": {"_count": 1}, "fuming": {"_count": 1}, "the": {"_count": 1}, "sitting": {"_count": 5}, "there": {"_count": 1}, "wading": {"_count": 1}, "bustling": {"_count": 1}, "laughing": {"_count": 1}, "kicked": {"_count": 1}, "no": {"_count": 1}, "miles": {"_count": 1}, "only": {"_count": 2}, "arrested": {"_count": 1}, "innocent": {"_count": 1}, "expelled": {"_count": 1}, "one": {"_count": 1}, "wiping": {"_count": 1}, "waiting": {"_count": 1}, "going": {"_count": 2}, "wrestling": {"_count": 1}, "already": {"_count": 1}, "not": {"_count": 3}, "adding": {"_count": 1}, "delighted": {"_count": 1}, "wearing": {"_count": 1}, "saying": {"_count": 1}, "trudging": {"_count": 1}, "seated": {"_count": 1}, "leading": {"_count": 1}, "soon": {"_count": 1}, "still": {"_count": 4}, "a": {"_count": 2}, "trying": {"_count": 1}, "likely": {"_count": 1}, "in": {"_count": 1}, "once": {"_count": 1}, "his": {"_count": 1}, "carrying": {"_count": 1}, "now": {"_count": 1}, "putting": {"_count": 2}, "unhappy": {"_count": 1}, "bent": {"_count": 1}, "making": {"_count": 1}, "late": {"_count": 2}, "wrongly": {"_count": 1}, "able": {"_count": 1}, "walking": {"_count": 1}, "heading": {"_count": 1}, "causing": {"_count": 1}, "surely": {"_count": 1}, "bound": {"_count": 1}, "silenced": {"_count": 1}, "struggling": {"_count": 1}, "forced": {"_count": 1}}, "and": {"_count": 53, "his": {"_count": 5}, "slammed": {"_count": 1}, "Harry": {"_count": 4}, "he": {"_count": 9}, "itll": {"_count": 1}, "my": {"_count": 1}, "walked": {"_count": 1}, "train": {"_count": 1}, "see": {"_count": 1}, "Buckbeak": {"_count": 1}, "set": {"_count": 1}, "Sirius": {"_count": 2}, "Moody": {"_count": 1}, "Madame": {"_count": 1}, "Rita": {"_count": 1}, "get": {"_count": 1}, "I": {"_count": 1}, "Professor": {"_count": 1}, "Fang": {"_count": 2}, "the": {"_count": 4}, "tell": {"_count": 1}, "delusional": {"_count": 1}, "a": {"_count": 2}, "said": {"_count": 1}, "then": {"_count": 1}, "we": {"_count": 1}, "Buck": {"_count": 1}, "Slughorn": {"_count": 2}, "Grawp": {"_count": 1}, "me": {"_count": 1}, "Kingsley": {"_count": 1}}, "leapt": {"_count": 2, "from": {"_count": 1}, "to": {"_count": 1}}, "breathing": {"_count": 1, "heavily": {"_count": 1}}, "chuckled": {"_count": 1, "": {"_count": 1}}, "smiling": {"_count": 1, "and": {"_count": 1}}, "seized": {"_count": 5, "his": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "loudly": {"_count": 5, "": {"_count": 3}, "over": {"_count": 1}, "staring": {"_count": 1}}, "came": {"_count": 6, "to": {"_count": 1}, "striding": {"_count": 2}, "back": {"_count": 1}, "panting": {"_count": 1}, "after": {"_count": 1}}, "s": {"_count": 75, "heavy": {"_count": 1}, "coat": {"_count": 2}, "but": {"_count": 1}, "warmth": {"_count": 1}, "voice": {"_count": 1}, "big": {"_count": 1}, "binoculars": {"_count": 1}, "always": {"_count": 1}, "beard": {"_count": 1}, "chest": {"_count": 1}, "going": {"_count": 1}, "darkened": {"_count": 1}, "hut": {"_count": 2}, "arm": {"_count": 1}, "enormous": {"_count": 2}, "house": {"_count": 2}, "eyes": {"_count": 1}, "arrest": {"_count": 1}, "Harry": {"_count": 1}, "goodness": {"_count": 1}, "face": {"_count": 6}, "name": {"_count": 1}, "first": {"_count": 2}, "beetleblack": {"_count": 2}, "story": {"_count": 1}, "cabin": {"_count": 8}, "knee": {"_count": 1}, "hand": {"_count": 1}, "cupboard": {"_count": 1}, "words": {"_count": 1}, "cooking": {"_count": 1}, "moleskin": {"_count": 2}, "small": {"_count": 1}, "smile": {"_count": 1}, "fingers": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "garden": {"_count": 1}, "halfgiant": {"_count": 1}, "own": {"_count": 1}, "miserable": {"_count": 1}, "Care": {"_count": 1}, "fate": {"_count": 1}, "cupboards": {"_count": 1}, "profile": {"_count": 1}, "monster": {"_count": 1}, "fists": {"_count": 1}, "huge": {"_count": 1}, "delighted": {"_count": 1}, "bucket": {"_count": 1}, "crinkled": {"_count": 1}, "moan": {"_count": 1}, "broad": {"_count": 1}, "jacket": {"_count": 1}, "arms": {"_count": 2}}, "himself": {"_count": 3, "was": {"_count": 1}, "sidled": {"_count": 1}, "twice": {"_count": 1}}, "who": {"_count": 40, "didnt": {"_count": 2}, "was": {"_count": 11}, "had": {"_count": 11}, "caught": {"_count": 1}, "hadnt": {"_count": 1}, "opened": {"_count": 1}, "emerged": {"_count": 1}, "has": {"_count": 1}, "seemed": {"_count": 1}, "came": {"_count": 1}, "sounded": {"_count": 1}, "both": {"_count": 1}, "gave": {"_count": 1}, "want": {"_count": 1}, "admits": {"_count": 1}, "stood": {"_count": 1}, "went": {"_count": 1}, "simply": {"_count": 1}, "did": {"_count": 1}}, "sleepily": {"_count": 1, "": {"_count": 1}}, "yawned": {"_count": 1, "loudly": {"_count": 1}}, "standing": {"_count": 2, "up": {"_count": 1}, "beside": {"_count": 1}}, "drew": {"_count": 2, "himself": {"_count": 1}, "his": {"_count": 1}}, "out": {"_count": 6, "onto": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 2}, "but": {"_count": 1}, "in": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "pulled": {"_count": 2, "out": {"_count": 2}}, "unfolding": {"_count": 1, "his": {"_count": 1}}, "read": {"_count": 1, "his": {"_count": 1}}, "muttered": {"_count": 5, "turning": {"_count": 1}, "": {"_count": 2}, "moving": {"_count": 1}, "Harry": {"_count": 1}}, "folded": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 11, "they": {"_count": 2}, "the": {"_count": 1}, "Harry": {"_count": 2}, "though": {"_count": 1}, "everyone": {"_count": 1}, "several": {"_count": 1}, "he": {"_count": 3}}, "twice": {"_count": 1, "as": {"_count": 1}}, "took": {"_count": 3, "up": {"_count": 1}, "the": {"_count": 1}, "two": {"_count": 1}}, "seemed": {"_count": 7, "to": {"_count": 6}, "quite": {"_count": 1}}, "had": {"_count": 76, "told": {"_count": 2}, "steered": {"_count": 2}, "crammed": {"_count": 1}, "bought": {"_count": 1}, "gone": {"_count": 3}, "given": {"_count": 8}, "changed": {"_count": 1}, "emptied": {"_count": 1}, "let": {"_count": 1}, "obviously": {"_count": 1}, "Norbert": {"_count": 1}, "sent": {"_count": 2}, "an": {"_count": 1}, "heard": {"_count": 1}, "been": {"_count": 6}, "left": {"_count": 1}, "opened": {"_count": 1}, "never": {"_count": 3}, "the": {"_count": 1}, "said": {"_count": 4}, "once": {"_count": 2}, "provided": {"_count": 1}, "appeared": {"_count": 2}, "found": {"_count": 1}, "proposed": {"_count": 1}, "made": {"_count": 1}, "just": {"_count": 1}, "his": {"_count": 1}, "managed": {"_count": 1}, "some": {"_count": 1}, "broken": {"_count": 1}, "a": {"_count": 1}, "brought": {"_count": 1}, "shown": {"_count": 2}, "failed": {"_count": 1}, "not": {"_count": 1}, "already": {"_count": 4}, "stepped": {"_count": 1}, "hidden": {"_count": 1}, "turned": {"_count": 1}, "finished": {"_count": 1}, "come": {"_count": 2}, "emerged": {"_count": 1}, "reached": {"_count": 1}, "honored": {"_count": 1}, "taken": {"_count": 2}}, "coming": {"_count": 2, "to": {"_count": 2}}, "hadnt": {"_count": 3, "pointed": {"_count": 1}, "been": {"_count": 1}, "managed": {"_count": 1}}, "could": {"_count": 6, "see": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}, "not": {"_count": 2}, "easily": {"_count": 1}}, "they": {"_count": 1, "waved": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "led": {"_count": 2, "them": {"_count": 1}, "Madame": {"_count": 1}}, "grinned": {"_count": 1, "at": {"_count": 1}}, "meanwhile": {"_count": 1, "was": {"_count": 1}}, "an": {"_count": 2, "archway": {"_count": 1}, "mind": {"_count": 1}}, "to": {"_count": 17, "Diagon": {"_count": 1}, "a": {"_count": 2}, "look": {"_count": 1}, "criticize": {"_count": 1}, "go": {"_count": 1}, "let": {"_count": 1}, "gain": {"_count": 1}, "possess": {"_count": 1}, "join": {"_count": 1}, "buy": {"_count": 1}, "enjoy": {"_count": 1}, "Fleur": {"_count": 1}, "get": {"_count": 1}, "present": {"_count": 1}, "the": {"_count": 1}, "Slughorn": {"_count": 1}}, "quietly": {"_count": 6, "as": {"_count": 1}, "": {"_count": 4}, "glancing": {"_count": 1}}, "at": {"_count": 6, "last": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 2}, "first": {"_count": 1}, "my": {"_count": 1}}, "importantly": {"_count": 1, "throwing": {"_count": 1}}, "I": {"_count": 10, "will": {"_count": 1}, "hope": {"_count": 1}, "yehve": {"_count": 1}, "never": {"_count": 1}, "could": {"_count": 1}, "cant": {"_count": 1}, "need": {"_count": 1}, "knew": {"_count": 1}, "revere": {"_count": 1}, "shouldnta": {"_count": 1}}, "mysteriously": {"_count": 2, "": {"_count": 2}}, "over": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "got": {"_count": 4, "out": {"_count": 1}, "up": {"_count": 2}, "the": {"_count": 1}}, "helped": {"_count": 2, "Harry": {"_count": 2}}, "groaned": {"_count": 1, "and": {"_count": 1}}, "picked": {"_count": 1, "it": {"_count": 1}}, "nodding": {"_count": 5, "toward": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 2}, "wisely": {"_count": 1}}, "whats": {"_count": 4, "Quidditch": {"_count": 1}, "that": {"_count": 3}}, "about": {"_count": 4, "the": {"_count": 1}, "Snapes": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 1}}, "darkly": {"_count": 3, "": {"_count": 3}}, "almost": {"_count": 2, "had": {"_count": 1}, "lifting": {"_count": 1}}, "wouldnt": {"_count": 4, "let": {"_count": 1}, "spot": {"_count": 1}, "miss": {"_count": 1}, "blunder": {"_count": 1}}, "asked": {"_count": 6, "the": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "Madame": {"_count": 1}, "Rita": {"_count": 1}, "him": {"_count": 1}}, "checked": {"_count": 2, "Harrys": {"_count": 1}, "that": {"_count": 1}}, "gruffly": {"_count": 7, "": {"_count": 3}, "brushing": {"_count": 1}, "worth": {"_count": 1}, "forcing": {"_count": 1}, "and": {"_count": 1}}, "sat": {"_count": 2, "on": {"_count": 1}, "down": {"_count": 1}}, "must": {"_count": 3, "have": {"_count": 3}}, "shuffling": {"_count": 1, "his": {"_count": 1}}, "quickly": {"_count": 2, "": {"_count": 1}, "intervening": {"_count": 1}}, "a": {"_count": 10, "piercing": {"_count": 1}, "slight": {"_count": 1}, "burn": {"_count": 1}, "vast": {"_count": 1}, "man": {"_count": 1}, "moron": {"_count": 1}, "fleeting": {"_count": 1}, "few": {"_count": 1}, "little": {"_count": 2}}, "whooped": {"_count": 1, "and": {"_count": 1}}, "made": {"_count": 4, "their": {"_count": 1}, "them": {"_count": 1}, "to": {"_count": 1}, "frantic": {"_count": 1}}, "tapped": {"_count": 1, "him": {"_count": 1}}, "leaned": {"_count": 4, "across": {"_count": 1}, "upon": {"_count": 1}, "toward": {"_count": 1}, "low": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "told": {"_count": 9, "me": {"_count": 2}, "that": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 1}}, "down": {"_count": 4, "what": {"_count": 1}, "Knockturn": {"_count": 1}, "": {"_count": 2}}, "called": {"_count": 6, "over": {"_count": 1}, "pointing": {"_count": 1}, "Who": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}, "happily": {"_count": 1}}, "raised": {"_count": 3, "a": {"_count": 1}, "his": {"_count": 2}}, "Harry": {"_count": 3, "borrowed": {"_count": 1}, "said": {"_count": 1}, "muttered": {"_count": 1}}, "lived": {"_count": 1, "in": {"_count": 1}}, "letting": {"_count": 2, "go": {"_count": 2}}, "Fang": {"_count": 1, "was": {"_count": 1}}, "glancing": {"_count": 2, "at": {"_count": 1}, "up": {"_count": 1}}, "all": {"_count": 4, "about": {"_count": 2}, "the": {"_count": 1}, "three": {"_count": 1}}, "call": {"_count": 2, "Filch": {"_count": 1}, "again": {"_count": 1}}, "like": {"_count": 1, "Ron": {"_count": 1}}, "didnt": {"_count": 5, "quite": {"_count": 1}, "seem": {"_count": 1}, "have": {"_count": 1}, "pursue": {"_count": 1}, "answer": {"_count": 1}}, "definitely": {"_count": 1, "didnt": {"_count": 1}}, "collected": {"_count": 1, "that": {"_count": 1}}, "know": {"_count": 1, "something": {"_count": 1}}, "expelled": {"_count": 1, "but": {"_count": 1}}, "enough": {"_count": 1, "space": {"_count": 1}}, "patting": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "raising": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "however": {"_count": 3, "was": {"_count": 1}, "considers": {"_count": 1}, "walked": {"_count": 1}}, "mumbled": {"_count": 1, "": {"_count": 1}}, "dropped": {"_count": 2, "the": {"_count": 2}}, "again": {"_count": 6, "": {"_count": 3}, "Harry": {"_count": 1}, "to": {"_count": 1}, "had": {"_count": 1}}, "Ive": {"_count": 2, "read": {"_count": 1}, "got": {"_count": 1}}, "hotly": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 2, "they": {"_count": 1}, "his": {"_count": 1}}, "want": {"_count": 2, "any": {"_count": 1}, "me": {"_count": 1}}, "sticking": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 12, "last": {"_count": 1}, "Hogwarts": {"_count": 5}, "rooster": {"_count": 1}, "name": {"_count": 1}, "Care": {"_count": 1}, "corners": {"_count": 1}, "sack": {"_count": 1}, "previous": {"_count": 1}}, "following": {"_count": 1, "them": {"_count": 1}}, "flatly": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 23, "disgruntled": {"_count": 1}, "at": {"_count": 1}, "imploringly": {"_count": 1}, "crestfallen": {"_count": 1}, "surprised": {"_count": 1}, "genuinely": {"_count": 1}, "extremely": {"_count": 1}, "down": {"_count": 1}, "concerned": {"_count": 1}, "outraged": {"_count": 1}, "uncomfortable": {"_count": 1}, "genially": {"_count": 1}, "a": {"_count": 2}, "startled": {"_count": 1}, "over": {"_count": 1}, "anxious": {"_count": 1}, "up": {"_count": 2}, "rather": {"_count": 1}, "both": {"_count": 2}, "around": {"_count": 1}}, "getting": {"_count": 1, "redder": {"_count": 1}}, "shuffled": {"_count": 3, "into": {"_count": 1}, "off": {"_count": 1}, "his": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "frowned": {"_count": 1, "at": {"_count": 1}}, "you": {"_count": 8, "might": {"_count": 1}, "live": {"_count": 1}, "sign": {"_count": 1}, "know": {"_count": 1}, "told": {"_count": 1}, "pass": {"_count": 1}, "were": {"_count": 1}, "havent": {"_count": 1}}, "proudly": {"_count": 7, "": {"_count": 2}, "making": {"_count": 1}, "so": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "throwing": {"_count": 1}}, "can": {"_count": 1, "we": {"_count": 1}}, "fiddling": {"_count": 1, "nervously": {"_count": 1}}, "pulling": {"_count": 2, "a": {"_count": 1}, "on": {"_count": 1}}, "wasnt": {"_count": 7, "listening": {"_count": 2}, "supposed": {"_count": 1}, "a": {"_count": 1}, "there": {"_count": 1}, "quite": {"_count": 1}, "talking": {"_count": 1}}, "if": {"_count": 3, "anyone": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}}, "greeted": {"_count": 1, "them": {"_count": 1}}, "murmured": {"_count": 1, "": {"_count": 1}}, "bit": {"_count": 2, "his": {"_count": 1}, "o": {"_count": 1}}, "agreed": {"_count": 1, "that": {"_count": 1}}, "goes": {"_count": 1, "on": {"_count": 1}}, "when": {"_count": 9, "the": {"_count": 2}, "I": {"_count": 1}, "hed": {"_count": 1}, "Rita": {"_count": 1}, "he": {"_count": 3}, "you": {"_count": 1}}, "sobbed": {"_count": 2, "as": {"_count": 1}, "blindly": {"_count": 1}}, "it": {"_count": 3, "wouldnt": {"_count": 1}, "was": {"_count": 1}, "transpired": {"_count": 1}}, "frowning": {"_count": 4, "at": {"_count": 1}, "as": {"_count": 1}, "slightly": {"_count": 1}, "": {"_count": 1}}, "fiercely": {"_count": 2, "": {"_count": 2}}, "growled": {"_count": 5, "": {"_count": 3}, "patting": {"_count": 1}, "as": {"_count": 1}}, "furiously": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "see": {"_count": 1, "that": {"_count": 1}}, "whispered": {"_count": 6, "": {"_count": 2}, "but": {"_count": 1}, "opening": {"_count": 1}, "and": {"_count": 1}, "back": {"_count": 1}}, "grimly": {"_count": 4, "": {"_count": 3}, "stomping": {"_count": 1}}, "watched": {"_count": 1, "him": {"_count": 1}}, "raise": {"_count": 1, "his": {"_count": 1}}, "grumpily": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "irritably": {"_count": 1, "try": {"_count": 1}}, "shouted": {"_count": 5, "": {"_count": 3}, "as": {"_count": 1}, "apologies": {"_count": 1}}, "added": {"_count": 3, "in": {"_count": 1}, "hastily": {"_count": 1}, "sharply": {"_count": 1}}, "puffing": {"_count": 1, "along": {"_count": 1}}, "hurried": {"_count": 2, "off": {"_count": 1}, "over": {"_count": 1}}, "lets": {"_count": 1, "Dumbledore": {"_count": 1}}, "would": {"_count": 15, "never": {"_count": 4}, "clear": {"_count": 1}, "like": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}, "hate": {"_count": 1}, "hurry": {"_count": 1}, "it": {"_count": 1}, "not": {"_count": 1}, "say": {"_count": 1}, "probably": {"_count": 1}, "find": {"_count": 1}}, "wants": {"_count": 2, "more": {"_count": 1}, "us": {"_count": 1}}, "dont": {"_count": 3, "you": {"_count": 1}, "its": {"_count": 1}, "moaned": {"_count": 1}}, "casually": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "drunk": {"_count": 1, "": {"_count": 1}}, "sidled": {"_count": 2, "through": {"_count": 1}, "into": {"_count": 1}}, "shaking": {"_count": 5, "with": {"_count": 1}, "his": {"_count": 4}}, "hed": {"_count": 1, "have": {"_count": 1}}, "we": {"_count": 5, "saved": {"_count": 1}, "shouldve": {"_count": 1}, "cant": {"_count": 2}, "hadn": {"_count": 1}}, "wiped": {"_count": 1, "his": {"_count": 1}}, "gave": {"_count": 9, "a": {"_count": 5}, "him": {"_count": 1}, "Karkaroff": {"_count": 1}, "the": {"_count": 1}, "another": {"_count": 1}}, "understood": {"_count": 1, "": {"_count": 1}}, "Oh": {"_count": 1, "its": {"_count": 1}}, "huge": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 3, "Saturday": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}}, "appeared": {"_count": 1, "at": {"_count": 1}}, "moving": {"_count": 1, "a": {"_count": 1}}, "offering": {"_count": 1, "them": {"_count": 1}}, "jerking": {"_count": 1, "his": {"_count": 1}}, "Ron": {"_count": 3, "dived": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "abruptly": {"_count": 2, "as": {"_count": 1}, "just": {"_count": 1}}, "his": {"_count": 4, "eyes": {"_count": 1}, "smile": {"_count": 1}, "voice": {"_count": 1}, "beetleblack": {"_count": 1}}, "happily": {"_count": 6, "": {"_count": 5}, "looking": {"_count": 1}}, "roared": {"_count": 4, "pulling": {"_count": 1}, "happily": {"_count": 1}, "": {"_count": 1}, "Reasonable": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "burst": {"_count": 1, "in": {"_count": 1}}, "urgently": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 2, "ranting": {"_count": 1}, "quiet": {"_count": 1}}, "booming": {"_count": 1, "more": {"_count": 1}}, "opened": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "unless": {"_count": 1, "there": {"_count": 1}}, "without": {"_count": 2, "anyone": {"_count": 1}, "Rita": {"_count": 1}}, "flung": {"_count": 2, "it": {"_count": 1}, "backward": {"_count": 1}}, "has": {"_count": 8, "my": {"_count": 1}, "never": {"_count": 1}, "been": {"_count": 2}, "maimed": {"_count": 1}, "no": {"_count": 1}, "troubles": {"_count": 1}, "recently": {"_count": 1}}, "away": {"_count": 1, "will": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "more": {"_count": 1, "a": {"_count": 1}}, "making": {"_count": 2, "Fang": {"_count": 1}, "his": {"_count": 1}}, "stood": {"_count": 3, "his": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 1}}, "visible": {"_count": 1, "from": {"_count": 1}}, "advising": {"_count": 1, "him": {"_count": 1}}, "is": {"_count": 6, "my": {"_count": 1}, "not": {"_count": 1}, "reputed": {"_count": 1}, "providing": {"_count": 1}, "": {"_count": 1}, "upset": {"_count": 1}}, "still": {"_count": 5, "visits": {"_count": 1}, "gazing": {"_count": 1}, "twisting": {"_count": 1}, "squinting": {"_count": 1}, "struggling": {"_count": 1}}, "never": {"_count": 2, "opened": {"_count": 1}, "showed": {"_count": 1}}, "couldnt": {"_count": 3, "possibly": {"_count": 1}, "see": {"_count": 2}}, "It": {"_count": 1, "struck": {"_count": 1}}, "thought": {"_count": 2, "a": {"_count": 1}, "he": {"_count": 1}}, "wanted": {"_count": 3, "help": {"_count": 1}, "him": {"_count": 1}, "to": {"_count": 1}}, "yelled": {"_count": 3, "over": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}}, "wiping": {"_count": 4, "his": {"_count": 4}}, "entered": {"_count": 1, "the": {"_count": 1}}, "strolled": {"_count": 1, "off": {"_count": 1}}, "reached": {"_count": 2, "them": {"_count": 1}, "out": {"_count": 1}}, "meant": {"_count": 1, "": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "continued": {"_count": 4, "": {"_count": 1}, "to": {"_count": 1}, "doggedly": {"_count": 1}, "in": {"_count": 1}}, "sounding": {"_count": 3, "worried": {"_count": 1}, "desperate": {"_count": 1}, "close": {"_count": 1}}, "ecstatic": {"_count": 1, "": {"_count": 1}}, "slapping": {"_count": 1, "the": {"_count": 1}}, "untied": {"_count": 1, "the": {"_count": 1}}, "lifted": {"_count": 1, "Malfoy": {"_count": 1}}, "headed": {"_count": 1, "away": {"_count": 1}}, "miserably": {"_count": 2, "taking": {"_count": 1}, "": {"_count": 1}}, "dully": {"_count": 1, "but": {"_count": 1}}, "well": {"_count": 1, "back": {"_count": 1}}, "heaved": {"_count": 1, "himself": {"_count": 1}}, "stopped": {"_count": 3, "dead": {"_count": 1}, "talking": {"_count": 1}, "in": {"_count": 1}}, "strode": {"_count": 1, "over": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "fired": {"_count": 1, "": {"_count": 1}}, "sent": {"_count": 1, "him": {"_count": 1}}, "please": {"_count": 2, "": {"_count": 1}, "tell": {"_count": 1}}, "Im": {"_count": 1, "his": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "are": {"_count": 2, "you": {"_count": 2}}, "being": {"_count": 3, "at": {"_count": 1}, "halfgiant": {"_count": 1}, "sacked": {"_count": 1}}, "under": {"_count": 2, "an": {"_count": 1}, "normal": {"_count": 1}}, "allowed": {"_count": 1, "himself": {"_count": 1}}, "what": {"_count": 3, "is": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "Further": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 3, "not": {"_count": 1}, "eh": {"_count": 1}, "a": {"_count": 1}}, "so": {"_count": 2, "miserable": {"_count": 1}, "its": {"_count": 1}}, "howled": {"_count": 1, "still": {"_count": 1}}, "blew": {"_count": 1, "his": {"_count": 1}}, "stroking": {"_count": 1, "Fang": {"_count": 1}}, "gloomily": {"_count": 2, "": {"_count": 2}}, "talk": {"_count": 3, "about": {"_count": 2}, "to": {"_count": 1}}, "snorted": {"_count": 1, "": {"_count": 1}}, "win": {"_count": 1, "his": {"_count": 1}}, "He": {"_count": 1, "probably": {"_count": 1}}, "opening": {"_count": 1, "the": {"_count": 1}}, "poured": {"_count": 2, "them": {"_count": 1}, "water": {"_count": 1}}, "waving": {"_count": 2, "Harrys": {"_count": 1}, "an": {"_count": 1}}, "wisely": {"_count": 1, "": {"_count": 1}}, "walked": {"_count": 2, "them": {"_count": 1}, "in": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "lost": {"_count": 1, "his": {"_count": 1}}, "They": {"_count": 1, "cant": {"_count": 1}}, "sadly": {"_count": 5, "as": {"_count": 1}, "": {"_count": 2}, "eighty": {"_count": 1}, "still": {"_count": 1}}, "turned": {"_count": 3, "around": {"_count": 2}, "and": {"_count": 1}}, "pathetic": {"_count": 1, "you": {"_count": 1}}, "plastered": {"_count": 1, "with": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "presided": {"_count": 1, "over": {"_count": 1}}, "keeps": {"_count": 1, "his": {"_count": 1}}, "Weve": {"_count": 1, "got": {"_count": 1}}, "shut": {"_count": 1, "the": {"_count": 1}}, "spilling": {"_count": 1, "milk": {"_count": 1}}, "swallowed": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 3, "began": {"_count": 1}, "turned": {"_count": 1}, "said": {"_count": 1}}, "shook": {"_count": 3, "his": {"_count": 3}}, "bustling": {"_count": 1, "around": {"_count": 1}}, "softly": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "set": {"_count": 4, "him": {"_count": 2}, "tea": {"_count": 1}, "off": {"_count": 1}}, "breaking": {"_count": 1, "the": {"_count": 1}}, "croaked": {"_count": 2, "": {"_count": 2}}, "perhaps": {"_count": 3, "it": {"_count": 1}, "he": {"_count": 1}, "been": {"_count": 1}}, "huskily": {"_count": 1, "": {"_count": 1}}, "meander": {"_count": 1, "tipsily": {"_count": 1}}, "mopping": {"_count": 3, "his": {"_count": 2}, "up": {"_count": 1}}, "gazing": {"_count": 2, "happily": {"_count": 1}, "at": {"_count": 1}}, "bellowed": {"_count": 2, "back": {"_count": 1}, "": {"_count": 1}}, "of": {"_count": 4, "course": {"_count": 3}, "this": {"_count": 1}}, "clapped": {"_count": 1, "along": {"_count": 1}}, "pointed": {"_count": 3, "down": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}}, "enthusiastically": {"_count": 2, "Lavender": {"_count": 1}, "scooping": {"_count": 1}}, "put": {"_count": 3, "down": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "sacked": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 2, "woman": {"_count": 1}, "is": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 2}}, "wont": {"_count": 1, "be": {"_count": 1}}, "yet": {"_count": 1, "said": {"_count": 1}}, "apparently": {"_count": 1, "lost": {"_count": 1}}, "missed": {"_count": 1, "the": {"_count": 1}}, "started": {"_count": 2, "to": {"_count": 2}}, "though": {"_count": 4, "they": {"_count": 1}, "his": {"_count": 2}, "he": {"_count": 1}}, "tell": {"_count": 2, "them": {"_count": 1}, "us": {"_count": 1}}, "darning": {"_count": 1, "his": {"_count": 1}}, "putting": {"_count": 1, "away": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "proceeded": {"_count": 1, "to": {"_count": 1}}, "demonstrating": {"_count": 1, "": {"_count": 1}}, "sighed": {"_count": 2, "suddenly": {"_count": 1}, "deeply": {"_count": 1}}, "beaming": {"_count": 3, "at": {"_count": 2}, "down": {"_count": 1}}, "offered": {"_count": 1, "her": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 1}, "being": {"_count": 1}}, "Charlie": {"_count": 1, "said": {"_count": 1}}, "hurrying": {"_count": 1, "to": {"_count": 1}}, "hoarsely": {"_count": 4, "": {"_count": 2}, "shaking": {"_count": 1}, "from": {"_count": 1}}, "launched": {"_count": 2, "himself": {"_count": 2}}, "beamed": {"_count": 1, "at": {"_count": 1}}, "might": {"_count": 5, "do": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 2}, "get": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "were": {"_count": 3, "cutting": {"_count": 1}, "not": {"_count": 1}, "third": {"_count": 1}}, "speak": {"_count": 1, "": {"_count": 1}}, "blankly": {"_count": 2, "": {"_count": 2}}, "used": {"_count": 2, "his": {"_count": 1}, "for": {"_count": 1}}, "back": {"_count": 1, "of": {"_count": 1}}, "did": {"_count": 4, "care": {"_count": 1}, "not": {"_count": 2}, "well": {"_count": 1}}, "You": {"_count": 1, "dont": {"_count": 1}}, "isnt": {"_count": 1, "hiding": {"_count": 1}}, "thats": {"_count": 1, "enough": {"_count": 1}}, "get": {"_count": 1, "out": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "croakily": {"_count": 2, "": {"_count": 2}}, "look": {"_count": 1, "what": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 4, "he": {"_count": 3}, "all": {"_count": 1}}, "knew": {"_count": 2, "quite": {"_count": 1}, "about": {"_count": 1}}, "digging": {"_count": 2, "energetically": {"_count": 1}, "until": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "gently": {"_count": 1, "looking": {"_count": 1}}, "heaving": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "snarled": {"_count": 1, "as": {"_count": 1}}, "no": {"_count": 2, "Dumbledore": {"_count": 1}, "dont": {"_count": 1}}, "removed": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "repeated": {"_count": 1}}, "harmless": {"_count": 1, "with": {"_count": 1}}, "kept": {"_count": 2, "glancing": {"_count": 1}, "a": {"_count": 1}}, "Professor": {"_count": 1, "Moody": {"_count": 1}}, "into": {"_count": 4, "showing": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}}, "airily": {"_count": 1, "fetching": {"_count": 1}}, "flinched": {"_count": 1, "at": {"_count": 1}}, "helping": {"_count": 1, "Madame": {"_count": 1}}, "telling": {"_count": 1, "Madame": {"_count": 1}}, "cant": {"_count": 1, "have": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "mentioning": {"_count": 1, "this": {"_count": 1}}, "hastily": {"_count": 3, "staring": {"_count": 1}, "shutting": {"_count": 1}, "removed": {"_count": 1}}, "firmly": {"_count": 2, "": {"_count": 2}}, "straightening": {"_count": 1, "up": {"_count": 1}}, "youve": {"_count": 2, "been": {"_count": 1}, "got": {"_count": 1}}, "repressively": {"_count": 1, "": {"_count": 1}}, "catching": {"_count": 1, "the": {"_count": 1}}, "fixing": {"_count": 1, "her": {"_count": 1}}, "glared": {"_count": 2, "at": {"_count": 2}}, "unhelpfully": {"_count": 1, "": {"_count": 1}}, "choked": {"_count": 1, "in": {"_count": 1}}, "coughed": {"_count": 1, "and": {"_count": 1}}, "cagily": {"_count": 1, "": {"_count": 1}}, "paused": {"_count": 1, "for": {"_count": 1}}, "baldly": {"_count": 1, "": {"_count": 1}}, "shrugging": {"_count": 4, "but": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 1}}, "imperturbably": {"_count": 1, "Dumbledore": {"_count": 1}}, "heavily": {"_count": 3, "": {"_count": 3}}, "indignantly": {"_count": 3, "who": {"_count": 1}, "": {"_count": 2}}, "patiently": {"_count": 2, "": {"_count": 2}}, "gazed": {"_count": 2, "mistyeyed": {"_count": 1}, "at": {"_count": 1}}, "shrugged": {"_count": 1, "his": {"_count": 1}}, "emphatically": {"_count": 1, "": {"_count": 1}}, "hide": {"_count": 1, "our": {"_count": 1}}, "pushed": {"_count": 1, "him": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "theres": {"_count": 1, "not": {"_count": 1}}, "stoutly": {"_count": 1, "": {"_count": 1}}, "tugging": {"_count": 1, "nervously": {"_count": 1}}, "repeated": {"_count": 1, "clearly": {"_count": 1}}, "attempting": {"_count": 3, "an": {"_count": 1}, "to": {"_count": 2}}, "echoed": {"_count": 1, "blankly": {"_count": 1}}, "teach": {"_count": 1, "us": {"_count": 1}}, "merely": {"_count": 2, "yawned": {"_count": 1}, "chuckled": {"_count": 1}}, "scowling": {"_count": 2, "and": {"_count": 1}, "did": {"_count": 1}}, "angrily": {"_count": 2, "": {"_count": 2}}, "leading": {"_count": 1, "the": {"_count": 1}}, "deposited": {"_count": 1, "his": {"_count": 1}}, "encouragingly": {"_count": 1, "": {"_count": 1}}, "nodded": {"_count": 3, "at": {"_count": 1}, "and": {"_count": 1}, "turned": {"_count": 1}}, "chuckling": {"_count": 1, "thas": {"_count": 1}}, "solemnly": {"_count": 1, "ten": {"_count": 1}}, "brightly": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "throwing": {"_count": 1, "an": {"_count": 1}}, "clearly": {"_count": 1, "struggling": {"_count": 1}}, "theyre": {"_count": 1, "really": {"_count": 1}}, "jumped": {"_count": 1, "and": {"_count": 1}}, "dismissively": {"_count": 2, "": {"_count": 1}, "They": {"_count": 1}}, "breed": {"_count": 1, "you": {"_count": 1}}, "myself": {"_count": 1, "but": {"_count": 1}}, "whatre": {"_count": 1, "you": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "staggered": {"_count": 2, "to": {"_count": 2}}, "pausing": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "distractedly": {"_count": 1, "": {"_count": 1}}, "why": {"_count": 4, "are": {"_count": 1}, "did": {"_count": 1}, "on": {"_count": 1}, "is": {"_count": 1}}, "stepped": {"_count": 1, "unexpectedly": {"_count": 1}}, "marched": {"_count": 1, "as": {"_count": 1}}, "overrode": {"_count": 1, "them": {"_count": 1}}, "threw": {"_count": 2, "out": {"_count": 1}, "his": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "tears": {"_count": 1, "now": {"_count": 1}}, "anxiously": {"_count": 2, "": {"_count": 2}}, "twisting": {"_count": 1, "his": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "hopefully": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "hastening": {"_count": 1, "over": {"_count": 1}}, "hesitated": {"_count": 1, "": {"_count": 1}}, "yelling": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "thickly": {"_count": 1, "getting": {"_count": 1}}, "shouldered": {"_count": 1, "his": {"_count": 1}}, "even": {"_count": 1, "with": {"_count": 1}}, "warily": {"_count": 1, "": {"_count": 1}}, "testily": {"_count": 1, "": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "scathingly": {"_count": 1, "": {"_count": 1}}, "moved": {"_count": 2, "forward": {"_count": 1}, "dreamlike": {"_count": 1}}, "hasnt": {"_count": 1, "been": {"_count": 1}}, "doing": {"_count": 1, "it": {"_count": 1}}, "chucked": {"_count": 1, "out": {"_count": 1}}, "watching": {"_count": 1, "anxiously": {"_count": 1}}, "leaping": {"_count": 1, "at": {"_count": 1}}, "running": {"_count": 1, "fullpelt": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "sprinting": {"_count": 1, "away": {"_count": 1}}, "says": {"_count": 2, "theyre": {"_count": 1}, "you": {"_count": 1}}, "lures": {"_count": 1, "thestrals": {"_count": 1}}, "broke": {"_count": 1, "off": {"_count": 1}}, "bowed": {"_count": 1, "his": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "soothingly": {"_count": 1, "waving": {"_count": 1}}, "stopping": {"_count": 1, "outside": {"_count": 1}}, "unconcerned": {"_count": 1, "": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "although": {"_count": 1, "like": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "glowering": {"_count": 1, "down": {"_count": 1}}, "finished": {"_count": 1, "blowing": {"_count": 1}}, "waved": {"_count": 1, "them": {"_count": 1}}, "someones": {"_count": 1, "hurt": {"_count": 1}}, "bending": {"_count": 1, "lower": {"_count": 1}}, "feeding": {"_count": 1, "Buckbeak": {"_count": 1}}, "makes": {"_count": 1, "six": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "lowering": {"_count": 1, "his": {"_count": 1}}, "twisted": {"_count": 1, "his": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "firing": {"_count": 1, "up": {"_count": 1}}, "Look": {"_count": 1, "at": {"_count": 1}}, "expects": {"_count": 1, "us": {"_count": 1}}, "ll": {"_count": 1, "have": {"_count": 1}}, "ever": {"_count": 1, "got": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "drank": {"_count": 1, "deeply": {"_count": 1}}, "morosely": {"_count": 1, "": {"_count": 1}}, "thrown": {"_count": 1, "out": {"_count": 1}}, "indifferently": {"_count": 1, "": {"_count": 1}}, "becoming": {"_count": 1, "expansive": {"_count": 1}}, "slopping": {"_count": 1, "some": {"_count": 1}}, "became": {"_count": 1, "tearful": {"_count": 1}}, "slumping": {"_count": 1, "low": {"_count": 1}}, "twitched": {"_count": 1, "in": {"_count": 1}}, "illuminated": {"_count": 1, "by": {"_count": 1}}, "roughly": {"_count": 1, "": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "fat": {"_count": 1, "tears": {"_count": 1}}, "hard": {"_count": 1, "on": {"_count": 1}}, "whose": {"_count": 1, "howls": {"_count": 1}}, "smashing": {"_count": 1, "down": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "quite": {"_count": 1, "oblivious": {"_count": 1}}, "kicked": {"_count": 1, "the": {"_count": 1}}, "blasted": {"_count": 1, "through": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "TURN": {"_count": 1, "AROUND": {"_count": 1}}, "swerved": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "slamming": {"_count": 1, "a": {"_count": 1}}, "Accio": {"_count": 1, "Hagridl": {"_count": 1}}, "spreadeagled": {"_count": 1, "on": {"_count": 1}}, "squeezed": {"_count": 1, "through": {"_count": 1}}, "only": {"_count": 1, "just": {"_count": 1}}, "hurtled": {"_count": 1, "away": {"_count": 1}}, "George": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "hiccuping": {"_count": 1, "from": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "several": {"_count": 1, "tables": {"_count": 1}}, "chortled": {"_count": 1, "": {"_count": 1}}, "rummaged": {"_count": 1, "in": {"_count": 1}}, "thanks": {"_count": 1, "": {"_count": 1}}, "hows": {"_count": 1, "it": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "stooped": {"_count": 1, "down": {"_count": 1}}, "where": {"_count": 1, "have": {"_count": 1}}, "pounding": {"_count": 1, "along": {"_count": 1}}, "pounded": {"_count": 1, "off": {"_count": 1}}, "vanished": {"_count": 1, "amongst": {"_count": 1}}, "buried": {"_count": 1, "in": {"_count": 1}}, "cradled": {"_count": 1, "Harry": {"_count": 1}}, "stumbled": {"_count": 1, "forward": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}}, "life": {"_count": 326, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Slughorn": {"_count": 1}, "Lupin": {"_count": 1}}, "with": {"_count": 5, "a": {"_count": 2}, "the": {"_count": 1}, "Muggles": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 94, ".": {"_count": 80}, "!": {"_count": 8}, "?": {"_count": 6}}, "he": {"_count": 6, "wouldnt": {"_count": 1}, "wanted": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "came": {"_count": 1}}, "had": {"_count": 5, "written": {"_count": 1}, "such": {"_count": 1}, "taken": {"_count": 1}, "been": {"_count": 1}, "definitely": {"_count": 1}}, "a": {"_count": 3, "high": {"_count": 1}, "person": {"_count": 1}, "limb": {"_count": 1}}, "being": {"_count": 1, "clouted": {"_count": 1}}, "more": {"_count": 1, "money": {"_count": 1}}, "and": {"_count": 24, "yet": {"_count": 1}, "join": {"_count": 1}, "hopped": {"_count": 1}, "that": {"_count": 1}, "my": {"_count": 1}, "jump": {"_count": 1}, "jumped": {"_count": 1}, "bind": {"_count": 1}, "it": {"_count": 2}, "leapt": {"_count": 1}, "death": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 2}, "head": {"_count": 1}, "dreams": {"_count": 1}, "before": {"_count": 1}, "soul": {"_count": 2}, "Hagrid": {"_count": 1}, "used": {"_count": 1}, "light": {"_count": 1}}, "until": {"_count": 2, "a": {"_count": 1}, "then": {"_count": 1}}, "chasin": {"_count": 1, "yer": {"_count": 1}}, "because": {"_count": 1, "his": {"_count": 1}}, "any": {"_count": 1, "second": {"_count": 1}}, "in": {"_count": 12, "Devon": {"_count": 1}, "the": {"_count": 6}, "Azkaban": {"_count": 2}, "all": {"_count": 1}, "Harrys": {"_count": 1}, "them": {"_count": 1}}, "Ron": {"_count": 1, "sighed": {"_count": 1}}, "depended": {"_count": 2, "on": {"_count": 2}}, "from": {"_count": 3, "the": {"_count": 2}, "those": {"_count": 1}}, "awaiting": {"_count": 1, "their": {"_count": 1}}, "as": {"_count": 4, "you": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "I": {"_count": 1}}, "would": {"_count": 3, "be": {"_count": 2}, "not": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 8, "Privet": {"_count": 1}, "Rons": {"_count": 1}, "number": {"_count": 1}, "once": {"_count": 2}, "Hogwarts": {"_count": 3}}, "on": {"_count": 4, "Privet": {"_count": 1}, "forcing": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "was": {"_count": 6, "nothing": {"_count": 1}, "dwindling": {"_count": 1}, "wiped": {"_count": 1}, "going": {"_count": 1}, "almost": {"_count": 1}, "devoted": {"_count": 1}}, "to": {"_count": 7, "the": {"_count": 1}, "you": {"_count": 1}, "becoming": {"_count": 1}, "return": {"_count": 1}, "bite": {"_count": 1}, "save": {"_count": 1}, "care": {"_count": 1}}, "has": {"_count": 2, "improved": {"_count": 1}, "now": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "hes": {"_count": 1, "going": {"_count": 1}}, "Harry": {"_count": 4, "was": {"_count": 1}, "fully": {"_count": 1}, "sent": {"_count": 1}, "": {"_count": 1}}, "left": {"_count": 1, "in": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 2}, "before": {"_count": 1}}, "that": {"_count": 3, "it": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}}, "spying": {"_count": 1, "on": {"_count": 1}}, "buoy": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 4, "he": {"_count": 2}, "each": {"_count": 1}, "you": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "all": {"_count": 2, "along": {"_count": 2}}, "looking": {"_count": 1, "over": {"_count": 1}}, "her": {"_count": 1, "attempts": {"_count": 1}}, "line": {"_count": 1, "she": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "hold": {"_count": 1, "your": {"_count": 1}}, "telling": {"_count": 1, "Voldemort": {"_count": 1}}, "tonight": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "standing": {"_count": 1, "behind": {"_count": 1}}, "it": {"_count": 2, "creates": {"_count": 1}, "must": {"_count": 1}}, "almost": {"_count": 1, "extinguished": {"_count": 1}}, "campaigning": {"_count": 1, "against": {"_count": 1}}, "those": {"_count": 1, "cakes": {"_count": 1}}, "the": {"_count": 5, "Dursleys": {"_count": 1}, "dueling": {"_count": 1}, "sensation": {"_count": 1}, "prophecy": {"_count": 1}, "Triwizard": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "sentence": {"_count": 2, "in": {"_count": 2}}, "became": {"_count": 1, "even": {"_count": 1}}, "story": {"_count": 1, "of": {"_count": 1}}, "let": {"_count": 1, "alone": {"_count": 1}}, "asked": {"_count": 1, "him": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "but": {"_count": 1}}, "already": {"_count": 1, "littered": {"_count": 1}}, "undoubtedly": {"_count": 1, "is": {"_count": 1}}, "were": {"_count": 2, "Death": {"_count": 1}, "exhilarating": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "term": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "phoenix": {"_count": 1, "song": {"_count": 1}}, "knocking": {"_count": 1, "two": {"_count": 1}}, "of": {"_count": 4, "imprisonment": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}}, "hell": {"_count": 1, "But": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "threatening": {"_count": 2, "situations": {"_count": 2}}, "while": {"_count": 2, "Im": {"_count": 1}, "he": {"_count": 1}}, "imprisonment": {"_count": 1, "in": {"_count": 1}}, "after": {"_count": 2, "being": {"_count": 1}, "school": {"_count": 1}}, "within": {"_count": 1, "Hagrids": {"_count": 1}}, "difficult": {"_count": 1, "for": {"_count": 1}}, "last": {"_count": 1, "June": {"_count": 1}}, "if": {"_count": 2, "anyones": {"_count": 1}, "you": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "woulda": {"_count": 1, "bin": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "difficult": {"_count": 1}, "that": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "than": {"_count": 2, "yours": {"_count": 1}, "the": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "must": {"_count": 1, "include": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "then": {"_count": 1, "I": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "by": {"_count": 1, "which": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "these": {"_count": 1, "last": {"_count": 1}}, "maybe": {"_count": 1, "go": {"_count": 1}}, "will": {"_count": 1, "set": {"_count": 1}}, "which": {"_count": 1, "I": {"_count": 1}}, "youre": {"_count": 1, "talking": {"_count": 1}}, "It": {"_count": 1, "roared": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "belt": {"_count": 1, "": {"_count": 1}}, "casting": {"_count": 1, "flickering": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}, "its": {"_count": 1, "reflection": {"_count": 1}}, "inches": {"_count": 1, "from": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "worth": {"_count": 1}}, "I": {"_count": 1, "do": {"_count": 1}}, "Imperiol": {"_count": 1, "A": {"_count": 1}}, "not": {"_count": 1, "his": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "span": {"_count": 1, "had": {"_count": 1}}, "toward": {"_count": 1, "Voldemort": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}}, "grudgingly": {"_count": 17, "but": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "remained": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "followed": {"_count": 1}}, "furiously": {"_count": 1, "unwillingly": {"_count": 1}}, "allowed": {"_count": 1, "him": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "started": {"_count": 1, "Snapes": {"_count": 1}}, "as": {"_count": 1, "Ogden": {"_count": 1}}, "made": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "pretend": {"_count": 50, "hes": {"_count": 1, "not": {"_count": 1}}, "sobs": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 12, "be": {"_count": 7}, "shriek": {"_count": 1}, "see": {"_count": 1}, "ask": {"_count": 1}, "you": {"_count": 1}, "find": {"_count": 1}}, "these": {"_count": 1, "stone": {"_count": 1}}, "that": {"_count": 10, "Crookshanks": {"_count": 1}, "he": {"_count": 1}, "Cedric": {"_count": 1}, "wasnt": {"_count": 1}, "the": {"_count": 1}, "Amelia": {"_count": 1}, "my": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "this": {"_count": 1, "isnt": {"_count": 1}}, "it": {"_count": 3, "didnt": {"_count": 1}, "hasnt": {"_count": 1}, "does": {"_count": 1}}, "they": {"_count": 1, "just": {"_count": 1}}, "I": {"_count": 2, "wasnt": {"_count": 1}, "havent": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "any": {"_count": 1, "longer": {"_count": 1}}, "hed": {"_count": 1, "been": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 1}, "was": {"_count": 1}, "cannot": {"_count": 1}}, "not": {"_count": 3, "to": {"_count": 3}}, "you": {"_count": 1, "didnt": {"_count": 1}}, "youve": {"_count": 2, "got": {"_count": 2}}, "now": {"_count": 1, "that": {"_count": 1}}, "Runcorn": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 1, "Mrs": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}}, "does": {"_count": 261, "tend": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 38, "said": {"_count": 1}, "mean": {"_count": 3}, "work": {"_count": 2}, "Harry": {"_count": 1}, "matter": {"_count": 6}, "But": {"_count": 1}, "resemble": {"_count": 1}, "say": {"_count": 2}, "feel": {"_count": 3}, "": {"_count": 7}, "its": {"_count": 1}, "have": {"_count": 2}, "all": {"_count": 1}, "at": {"_count": 1}, "hurt": {"_count": 1}, "really": {"_count": 2}, "just": {"_count": 1}, "wrong": {"_count": 1}, "Dumbledore": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 14}, "?": {"_count": 4}, "!": {"_count": 5}}, "but": {"_count": 1, "somethin": {"_count": 1}}, "a": {"_count": 4, "Ministry": {"_count": 1}, "Patronus": {"_count": 1}, "zoological": {"_count": 1}, "few": {"_count": 1}}, "he": {"_count": 25, "know": {"_count": 1}, "": {"_count": 9}, "have": {"_count": 3}, "need": {"_count": 2}, "think": {"_count": 2}, "want": {"_count": 3}, "knows": {"_count": 1}, "mean": {"_count": 1}, "go": {"_count": 1}, "look": {"_count": 1}, "keep": {"_count": 1}}, "look": {"_count": 2, "good": {"_count": 1}, "like": {"_count": 1}}, "miss": {"_count": 1, "it": {"_count": 1}}, "not": {"_count": 54, "wish": {"_count": 3}, "do": {"_count": 2}, "forgive": {"_count": 2}, "have": {"_count": 2}, "rest": {"_count": 1}, "exist": {"_count": 3}, "yet": {"_count": 1}, "parade": {"_count": 1}, "said": {"_count": 1}, "insist": {"_count": 1}, "See": {"_count": 1}, "include": {"_count": 1}, "present": {"_count": 1}, "return": {"_count": 1}, "care": {"_count": 1}, "mind": {"_count": 1}, "seem": {"_count": 3}, "matter": {"_count": 2}, "tell": {"_count": 2}, "sound": {"_count": 1}, "complain": {"_count": 1}, "mean": {"_count": 3}, "underestimate": {"_count": 1}, "usually": {"_count": 1}, "know": {"_count": 2}, "advance": {"_count": 1}, "feel": {"_count": 1}, "disgust": {"_count": 1}, "explain": {"_count": 1}, "make": {"_count": 1}, "desire": {"_count": 1}, "require": {"_count": 1}, "resemble": {"_count": 1}, "want": {"_count": 1}, "need": {"_count": 2}, "expect": {"_count": 1}, "value": {"_count": 1}, "seek": {"_count": 1}, "love": {"_count": 1}}, "though": {"_count": 1, "why": {"_count": 1}}, "seem": {"_count": 5, "the": {"_count": 1}, "to": {"_count": 3}, "really": {"_count": 1}}, "said": {"_count": 8, "Quirrell": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 2}, "Hermione": {"_count": 1}, "Tonks": {"_count": 1}, "Nearly": {"_count": 1}, "Dumbledore": {"_count": 1}}, "this": {"_count": 4, "mirror": {"_count": 1}, "mean": {"_count": 1}, "tunnel": {"_count": 1}, "time": {"_count": 1}}, "have": {"_count": 2, "to": {"_count": 1}, "an": {"_count": 1}}, "your": {"_count": 3, "dad": {"_count": 2}, "Patronus": {"_count": 1}}, "remember": {"_count": 1, "that": {"_count": 1}}, "sound": {"_count": 1, "like": {"_count": 1}}, "she": {"_count": 11, "understand": {"_count": 1}, "mean": {"_count": 1}, "": {"_count": 2}, "Ron": {"_count": 1}, "see": {"_count": 1}, "always": {"_count": 1}, "work": {"_count": 1}, "thinks": {"_count": 1}, "feel": {"_count": 1}, "know": {"_count": 1}}, "when": {"_count": 1, "shes": {"_count": 1}}, "anything": {"_count": 2, "penetrate": {"_count": 1}, "in": {"_count": 1}}, "that": {"_count": 16, "work": {"_count": 2}, "mean": {"_count": 7}, "stand": {"_count": 1}, "matter": {"_count": 1}, "grumbled": {"_count": 1}, "involve": {"_count": 1}, "stop": {"_count": 1}, "make": {"_count": 1}, "already": {"_count": 1}}, "whenever": {"_count": 1, "someones": {"_count": 1}}, "do": {"_count": 1, "that": {"_count": 1}}, "my": {"_count": 2, "evidence": {"_count": 1}, "room": {"_count": 1}}, "everyone": {"_count": 1, "get": {"_count": 1}}, "what": {"_count": 4, "they": {"_count": 1}, "she": {"_count": 1}, "youre": {"_count": 1}, "he": {"_count": 1}}, "MadEye": {"_count": 1, "say": {"_count": 1}}, "Hogwarts": {"_count": 1, "A": {"_count": 1}}, "Hagrid": {"_count": 1, "want": {"_count": 1}}, "the": {"_count": 4, "trick": {"_count": 1}, "whole": {"_count": 1}, "cook": {"_count": 1}, "Peverell": {"_count": 1}}, "NOT": {"_count": 1, "mean": {"_count": 1}}, "and": {"_count": 1, "not": {"_count": 1}}, "drink": {"_count": 1, "except": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "Dumbledore": {"_count": 1, "reckon": {"_count": 1}}, "or": {"_count": 1, "does": {"_count": 1}}, "at": {"_count": 1, "school": {"_count": 1}}, "show": {"_count": 1, "up": {"_count": 1}}, "come": {"_count": 1, "in": {"_count": 1}}, "count": {"_count": 1, "": {"_count": 1}}, "anyone": {"_count": 2, "else": {"_count": 1}, "know": {"_count": 1}}, "Professor": {"_count": 2, "Dumbledore": {"_count": 2}}, "want": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "that": {"_count": 1}}, "catch": {"_count": 1, "you": {"_count": 1}}, "say": {"_count": 1, "that": {"_count": 1}}, "Firenze": {"_count": 1, "leaving": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "take": {"_count": 1, "some": {"_count": 1}}, "Id": {"_count": 1, "much": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "best": {"_count": 1, "however": {"_count": 1}}, "help": {"_count": 1, "": {"_count": 1}}, "indeed": {"_count": 2, "extend": {"_count": 1}, "know": {"_count": 1}}, "is": {"_count": 1, "ask": {"_count": 1}}, "reopen": {"_count": 1, "said": {"_count": 1}}, "Skeeter": {"_count": 1, "deny": {"_count": 1}}, "eet": {"_count": 1, "": {"_count": 1}}, "complicate": {"_count": 1, "organizing": {"_count": 1}}, "turn": {"_count": 1, "out": {"_count": 1}}, "Voldemort": {"_count": 1, "Hermione": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "e": {"_count": 1, "look": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "fall": {"_count": 1, "into": {"_count": 1}}, "set": {"_count": 1, "out": {"_count": 1}}, "Voldemorts": {"_count": 1, "one": {"_count": 1}}}, "tend": {"_count": 8, "to": {"_count": 7, "what": {"_count": 1}, "him": {"_count": 1}, "succeed": {"_count": 1}, "be": {"_count": 1}, "counterbalance": {"_count": 1}, "end": {"_count": 1}, "give": {"_count": 1}}, "the": {"_count": 1, "garden": {"_count": 1}}}, "low": {"_count": 226, "rumbling": {"_count": 4, "sound": {"_count": 1}, "growls": {"_count": 1}, "voice": {"_count": 1}, "snore": {"_count": 1}}, "garden": {"_count": 2, "wall": {"_count": 2}}, "hissing": {"_count": 1, "voice": {"_count": 1}}, "rolls": {"_count": 1, "of": {"_count": 1}}, "worried": {"_count": 1, "voice": {"_count": 1}}, "buzz": {"_count": 1, "of": {"_count": 1}}, "soft": {"_count": 2, "hooting": {"_count": 1}, "musical": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 2}, "his": {"_count": 4}, "their": {"_count": 1}, "one": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "voice": {"_count": 49, "": {"_count": 27}, "to": {"_count": 3}, "I": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 5}, "what": {"_count": 1}, "fury": {"_count": 1}, "helping": {"_count": 1}, "also": {"_count": 1}, "It": {"_count": 1}, "Give": {"_count": 1}, "Youre": {"_count": 1}, "moving": {"_count": 1}, "Ron": {"_count": 1}, "grateful": {"_count": 1}, "Dumbledore": {"_count": 1}, "that": {"_count": 1}}, "black": {"_count": 1, "clouds": {"_count": 1}}, "grunting": {"_count": 1, "and": {"_count": 1}}, "whisper": {"_count": 2, "Harry": {"_count": 1}, "of": {"_count": 1}}, "that": {"_count": 6, "the": {"_count": 1}, "his": {"_count": 2}, "only": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}}, "Arthur": {"_count": 1, "she": {"_count": 1}}, "over": {"_count": 21, "the": {"_count": 7}, "his": {"_count": 6}, "her": {"_count": 2}, "him": {"_count": 3}, "Dudley": {"_count": 1}, "their": {"_count": 1}, "Hepzibah": {"_count": 1}}, "woolly": {"_count": 1, "clouds": {"_count": 1}}, "despairing": {"_count": 1, "groan": {"_count": 1}}, "whistle": {"_count": 2, "": {"_count": 2}}, "so": {"_count": 2, "as": {"_count": 1}, "that": {"_count": 1}}, "ceiling": {"_count": 4, "": {"_count": 3}, "searching": {"_count": 1}}, "and": {"_count": 13, "walked": {"_count": 1}, "cowardly": {"_count": 1}, "very": {"_count": 1}, "gravelly": {"_count": 1}, "retreated": {"_count": 1}, "worried": {"_count": 1}, "anxious": {"_count": 1}, "one": {"_count": 1}, "indignant": {"_count": 1}, "deadly": {"_count": 1}, "addressed": {"_count": 1}, "whispering": {"_count": 1}, "fierce": {"_count": 1}}, "profile": {"_count": 1, "for": {"_count": 1}}, "on": {"_count": 5, "his": {"_count": 2}, "the": {"_count": 1}, "spine": {"_count": 1}, "golden": {"_count": 1}}, "rasp": {"_count": 1, "of": {"_count": 1}}, "underground": {"_count": 1, "room": {"_count": 1}}, "faint": {"_count": 1, "hiss": {"_count": 1}}, "wall": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "serious": {"_count": 1, "voice": {"_count": 1}}, "sneering": {"_count": 2, "laugh": {"_count": 1}, "voice": {"_count": 1}}, "armchair": {"_count": 1, "and": {"_count": 1}}, "earthy": {"_count": 1, "passageway": {"_count": 1}}, "rumble": {"_count": 1, "": {"_count": 1}}, "excited": {"_count": 1, "mutter": {"_count": 1}}, "throbbing": {"_count": 1, "moans": {"_count": 1}}, "as": {"_count": 6, "possible": {"_count": 2}, "that": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 2}}, "he": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 9, "the": {"_count": 2}, "him": {"_count": 1}, "catch": {"_count": 1}, "decipher": {"_count": 1}, "retrieve": {"_count": 1}, "avoid": {"_count": 2}, "Harry": {"_count": 1}}, "tunnel": {"_count": 1, "": {"_count": 1}}, "moan": {"_count": 2, "and": {"_count": 1}, "from": {"_count": 1}}, "awed": {"_count": 1, "voice": {"_count": 1}}, "voices": {"_count": 6, "": {"_count": 2}, "they": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}, "Time": {"_count": 1}}, "giving": {"_count": 1, "the": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "wooden": {"_count": 1, "stool": {"_count": 1}}, "soothing": {"_count": 1, "voice": {"_count": 1}}, "Harry": {"_count": 1, "supposed": {"_count": 1}}, "walls": {"_count": 1, "all": {"_count": 1}}, "hiss": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 3, "Lupins": {"_count": 1}, "the": {"_count": 2}}, "grumble": {"_count": 1, "of": {"_count": 1}}, "gvoice": {"_count": 1, "": {"_count": 1}}, "cloud": {"_count": 1, "ahead": {"_count": 1}}, "bow": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "are": {"_count": 1}}, "grunt": {"_count": 1, "and": {"_count": 1}}, "hoot": {"_count": 1, "she": {"_count": 1}}, "furious": {"_count": 1, "voice": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "Harry": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "urgent": {"_count": 1, "whispers": {"_count": 1}}, "dangerous": {"_count": 1, "voice": {"_count": 1}}, "ran": {"_count": 1, "to": {"_count": 1}}, "scribbling": {"_count": 1, "on": {"_count": 1}}, "roar": {"_count": 1, "it": {"_count": 1}}, "standards": {"_count": 1, "in": {"_count": 1}}, "hisses": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "musical": {"_count": 1, "cry": {"_count": 1}}, "table": {"_count": 1, "and": {"_count": 1}}, "marks": {"_count": 1, "on": {"_count": 1}}, "stone": {"_count": 1, "wall": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "growing": {"_count": 1, "brambles": {"_count": 1}}, "door": {"_count": 1, "frame": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "cut": {"_count": 1, "": {"_count": 1}}, "muttering": {"_count": 1, "to": {"_count": 1}}, "bows": {"_count": 1, "to": {"_count": 1}}, "groan": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "food": {"_count": 1, "supplies": {"_count": 1}}, "level": {"_count": 1, "of": {"_count": 1}}, "blow": {"_count": 1, "he": {"_count": 1}}, "hills": {"_count": 1, "appeared": {"_count": 1}}, "fierce": {"_count": 1, "voice": {"_count": 1}}, "chair": {"_count": 1, "drumming": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "Voldemorts": {"_count": 1}}, "undisturbed": {"_count": 1, "for": {"_count": 1}}}, "rumbling": {"_count": 26, "sound": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 1, "hunger": {"_count": 1}}, "growls": {"_count": 1, "met": {"_count": 1}}, "mind": {"_count": 1, "spinning": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 1}, "behind": {"_count": 1}}, "noise": {"_count": 2, "and": {"_count": 2}}, "of": {"_count": 3, "hundreds": {"_count": 1}, "feet": {"_count": 1}, "students": {"_count": 1}}, "overhead": {"_count": 1, "the": {"_count": 1}}, "growl": {"_count": 1, "Harry": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "splashing": {"_count": 1}, "sucking": {"_count": 1}, "once": {"_count": 1}}, "voice": {"_count": 2, "Cedric": {"_count": 1}, "Hermy": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "sounded": {"_count": 1}}, "stopped": {"_count": 1, "and": {"_count": 1}}, "snore": {"_count": 1, "from": {"_count": 1}}, "snores": {"_count": 1, "filled": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "road": {"_count": 1, "toward": {"_count": 1}}}, "sound": {"_count": 306, "had": {"_count": 3, "broken": {"_count": 1}, "changed": {"_count": 1}, "seemed": {"_count": 1}}, "of": {"_count": 118, "the": {"_count": 31}, "Dudley": {"_count": 1}, "Peeves": {"_count": 1}, "Filch": {"_count": 2}, "more": {"_count": 1}, "that": {"_count": 2}, "thirty": {"_count": 1}, "hundreds": {"_count": 2}, "it": {"_count": 9}, "slowly": {"_count": 1}, "his": {"_count": 8}, "Madam": {"_count": 1}, "five": {"_count": 1}, "heavy": {"_count": 1}, "her": {"_count": 1}, "Scabberss": {"_count": 1}, "savaging": {"_count": 1}, "a": {"_count": 3}, "footsteps": {"_count": 2}, "ripping": {"_count": 1}, "an": {"_count": 1}, "people": {"_count": 1}, "scurrying": {"_count": 1}, "voices": {"_count": 3}, "racing": {"_count": 1}, "thunderous": {"_count": 1}, "hope": {"_count": 1}, "their": {"_count": 7}, "breaking": {"_count": 2}, "something": {"_count": 1}, "Snapes": {"_count": 1}, "scratching": {"_count": 1}, "vomit": {"_count": 1}, "Voldemorts": {"_count": 2}, "deep": {"_count": 1}, "laughter": {"_count": 1}, "hooves": {"_count": 1}, "movement": {"_count": 3}, "Wormtail": {"_count": 1}, "shattering": {"_count": 1}, "Smiths": {"_count": 1}, "Rons": {"_count": 2}, "wrenching": {"_count": 1}, "Fred": {"_count": 1}, "running": {"_count": 1}, "pattering": {"_count": 1}, "flushing": {"_count": 1}, "steady": {"_count": 1}, "dislodged": {"_count": 1}, "knuckles": {"_count": 1}, "clanking": {"_count": 1}, "chewing": {"_count": 1}, "Dumbledore": {"_count": 1}, "Fang": {"_count": 1}}, "and": {"_count": 10, "smell": {"_count": 1}, "youll": {"_count": 1}, "Harry": {"_count": 1}, "Frank": {"_count": 1}, "Fred": {"_count": 1}, "both": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "it": {"_count": 1}}, "like": {"_count": 25, "a": {"_count": 5}, "the": {"_count": 2}, "Hermione": {"_count": 1}, "hooves": {"_count": 1}, "Percy": {"_count": 1}, "more": {"_count": 1}, "anyones": {"_count": 1}, "theres": {"_count": 1}, "an": {"_count": 1}, "hes": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "Molly": {"_count": 1}, "Im": {"_count": 1}, "Peeves": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "Hagrid": {"_count": 1}, "Lucius": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "faded": {"_count": 1, "away": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 22}, "!": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "Harry": {"_count": 2, "crossed": {"_count": 1}, "recognized": {"_count": 1}}, "too": {"_count": 1, "rude": {"_count": 1}}, "almost": {"_count": 1, "human": {"_count": 1}}, "from": {"_count": 5, "the": {"_count": 3}, "downstairs": {"_count": 1}, "within": {"_count": 1}}, "as": {"_count": 13, "though": {"_count": 12}, "boring": {"_count": 1}}, "overhead": {"_count": 1, "and": {"_count": 1}}, "filled": {"_count": 4, "the": {"_count": 4}}, "completely": {"_count": 2, "": {"_count": 1}, "convinced": {"_count": 1}}, "strangely": {"_count": 1, "magnified": {"_count": 1}}, "now": {"_count": 1, "except": {"_count": 1}}, "very": {"_count": 4, "farfetched": {"_count": 1}, "melodramatic": {"_count": 1}, "enthusiastic": {"_count": 1}, "tolerant": {"_count": 1}}, "was": {"_count": 7, "echoed": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 4}, "more": {"_count": 1}}, "came": {"_count": 8, "out": {"_count": 7}, "from": {"_count": 1}}, "they": {"_count": 1, "heard": {"_count": 1}}, "right": {"_count": 1, "above": {"_count": 1}}, "so": {"_count": 1, "disappointed": {"_count": 1}}, "convincing": {"_count": 1, "wont": {"_count": 1}}, "then": {"_count": 2, "closed": {"_count": 1}, "leapt": {"_count": 1}}, "throughout": {"_count": 1, "the": {"_count": 1}}, "innocently": {"_count": 1, "curious": {"_count": 1}}, "Muffled": {"_count": 1, "footsteps": {"_count": 1}}, "apart": {"_count": 3, "from": {"_count": 3}}, "except": {"_count": 1, "Pettigrew": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "erupted": {"_count": 1, "behind": {"_count": 1}}, "that": {"_count": 4, "was": {"_count": 1}, "of": {"_count": 1}, "Snape": {"_count": 1}, "echoed": {"_count": 1}}, "anything": {"_count": 1, "like": {"_count": 1}}, "echoed": {"_count": 1, "dismally": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "threatening": {"_count": 1}}, "disdainful": {"_count": 1, "as": {"_count": 1}}, "reminded": {"_count": 1, "him": {"_count": 1}}, "anxious": {"_count": 1, "if": {"_count": 1}}, "would": {"_count": 1, "attract": {"_count": 1}}, "We": {"_count": 1, "cannot": {"_count": 1}}, "a": {"_count": 2, "bit": {"_count": 1}, "lot": {"_count": 1}}, "often": {"_count": 2, "heard": {"_count": 2}}, "nor": {"_count": 1, "could": {"_count": 1}}, "must": {"_count": 1, "carry": {"_count": 1}}, "he": {"_count": 2, "connected": {"_count": 1}, "heard": {"_count": 1}}, "deafened": {"_count": 1, "and": {"_count": 1}}, "Dobby": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "the": {"_count": 1, "silver": {"_count": 1}}, "much": {"_count": 1, "like": {"_count": 1}}, "unconcerned": {"_count": 1, "": {"_count": 1}}, "highly": {"_count": 1, "ungrateful": {"_count": 1}}, "to": {"_count": 3, "them": {"_count": 1}, "the": {"_count": 1}, "break": {"_count": 1}}, "more": {"_count": 2, "polite": {"_count": 1}, "acceptable": {"_count": 1}}, "greeted": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "escaped": {"_count": 1, "his": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "casual": {"_count": 4, "yeah": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "braver": {"_count": 1, "than": {"_count": 1}}, "even": {"_count": 1, "a": {"_count": 1}}, "interested": {"_count": 1, "rather": {"_count": 1}}, "angry": {"_count": 1, "but": {"_count": 1}}, "argumentative": {"_count": 1, "it": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "frightened": {"_count": 1, "Harry": {"_count": 1}}, "confident": {"_count": 1, "that": {"_count": 1}}, "were": {"_count": 1, "extinguished": {"_count": 1}}, "Ron": {"_count": 1, "looked": {"_count": 1}}, "robustly": {"_count": 1, "sane": {"_count": 1}}, "went": {"_count": 1, "through": {"_count": 1}}, "walked": {"_count": 1, "James": {"_count": 1}}, "afraid": {"_count": 1, "": {"_count": 1}}}, "silence": {"_count": 306, "around": {"_count": 4, "them": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 23, "here": {"_count": 1}, "the": {"_count": 10}, "which": {"_count": 9}, "her": {"_count": 1}, "their": {"_count": 1}, "memory": {"_count": 1}}, "": {"_count": 88, ".": {"_count": 87}, "!": {"_count": 1}}, "followed": {"_count": 6, "this": {"_count": 2}, "Hagrid": {"_count": 1}, "these": {"_count": 2}, "his": {"_count": 1}}, "the": {"_count": 4, "book": {"_count": 1}, "dog": {"_count": 1}, "depths": {"_count": 1}, "shock": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "for": {"_count": 13, "so": {"_count": 1}, "assent": {"_count": 1}, "a": {"_count": 7}, "him": {"_count": 1}, "another": {"_count": 2}, "what": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 3, "Ron": {"_count": 1}, "inside": {"_count": 1}, "the": {"_count": 1}}, "broken": {"_count": 6, "only": {"_count": 4}, "by": {"_count": 2}}, "fell": {"_count": 19, "downstairs": {"_count": 1}, "": {"_count": 8}, "among": {"_count": 1}, "over": {"_count": 2}, "again": {"_count": 2}, "immediately": {"_count": 1}, "between": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "abruptly": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 9, "they": {"_count": 2}, "he": {"_count": 2}, "Harry": {"_count": 2}, "Hagrid": {"_count": 1}, "icy": {"_count": 1}, "she": {"_count": 1}}, "that": {"_count": 6, "filled": {"_count": 1}, "had": {"_count": 1}, "fell": {"_count": 1}, "greeted": {"_count": 1}, "stretched": {"_count": 1}, "presses": {"_count": 1}}, "and": {"_count": 10, "called": {"_count": 1}, "ordered": {"_count": 1}, "then": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 3}, "know": {"_count": 1}, "Hermione": {"_count": 1}, "walked": {"_count": 1}}, "deep": {"_count": 1, "as": {"_count": 1}}, "He": {"_count": 1, "told": {"_count": 1}}, "then": {"_count": 6, "set": {"_count": 1}, "Why": {"_count": 1}, "Hermiones": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "Ginny": {"_count": 1}}, "everyone": {"_count": 1, "except": {"_count": 1}}, "was": {"_count": 9, "falling": {"_count": 1}, "rent": {"_count": 1}, "broken": {"_count": 3}, "absolute": {"_count": 1}, "that": {"_count": 1}, "shattered": {"_count": 1}, "forced": {"_count": 1}}, "until": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "both": {"_count": 2, "inside": {"_count": 1}, "raised": {"_count": 1}}, "once": {"_count": 2, "more": {"_count": 2}}, "while": {"_count": 4, "Mr": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 2}}, "too": {"_count": 1, "sleepy": {"_count": 1}}, "which": {"_count": 3, "was": {"_count": 2}, "fell": {"_count": 1}}, "so": {"_count": 2, "absolute": {"_count": 1}, "stiff": {"_count": 1}}, "without": {"_count": 1, "interruption": {"_count": 1}}, "him": {"_count": 1, "his": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "their": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 2}, "maintain": {"_count": 1}, "eat": {"_count": 1}}, "pressing": {"_count": 1, "harder": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "staring": {"_count": 1}}, "hie": {"_count": 1, "people": {"_count": 1}}, "past": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 6, "he": {"_count": 2}, "for": {"_count": 2}, "it": {"_count": 1}, "Felix": {"_count": 1}}, "spiral": {"_count": 1, "horribly": {"_count": 1}}, "now": {"_count": 1, "except": {"_count": 1}}, "lay": {"_count": 1, "over": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "spiraled": {"_count": 1, "horribly": {"_count": 1}}, "Fudge": {"_count": 1, "was": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "greeted": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "Dean": {"_count": 1, "Seamus": {"_count": 1}}, "between": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "than": {"_count": 2, "just": {"_count": 1}, "he": {"_count": 1}}, "Harry": {"_count": 4, "drinking": {"_count": 1}, "had": {"_count": 1}, "knew": {"_count": 1}, "imagined": {"_count": 1}}, "within": {"_count": 2, "the": {"_count": 2}}, "she": {"_count": 1, "said": {"_count": 1}}, "everybody": {"_count": 1, "gazing": {"_count": 1}}, "Snape": {"_count": 1, "turned": {"_count": 1}}, "stretched": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 2, "silence": {"_count": 1}, "look": {"_count": 1}}, "Tonks": {"_count": 1, "s": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "each": {"_count": 1, "absorbed": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "oppressive": {"_count": 1, "unnerving": {"_count": 1}}, "frowning": {"_count": 1, "slightly": {"_count": 1}}, "Dumbledore": {"_count": 1, "drank": {"_count": 1}}, "they": {"_count": 2, "ascended": {"_count": 1}, "followed": {"_count": 1}}, "came": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "watching": {"_count": 1, "them": {"_count": 1}}, "during": {"_count": 1, "which": {"_count": 1}}, "pressed": {"_count": 1, "upon": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "The": {"_count": 1, "surface": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 1, "are": {"_count": 1}}, "it": {"_count": 1, "sounded": {"_count": 1}}, "swallowed": {"_count": 1, "them": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "only": {"_count": 1, "dementors": {"_count": 1}}, "Harrys": {"_count": 1, "gaze": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}}, "grew": {"_count": 59, "steadily": {"_count": 5, "louder": {"_count": 2}, "more": {"_count": 1}, "darker": {"_count": 1}, "blacker": {"_count": 1}}, "that": {"_count": 1, "way": {"_count": 1}}, "up": {"_count": 6, "in": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 3}, "with": {"_count": 1}}, "wider": {"_count": 2, "and": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "stronger": {"_count": 1, "and": {"_count": 1}}, "powerful": {"_count": 1, "far": {"_count": 1}}, "hungrier": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "louder": {"_count": 12, "and": {"_count": 6}, "": {"_count": 1}, "as": {"_count": 2}, "around": {"_count": 1}, "something": {"_count": 1}, "Ive": {"_count": 1}}, "so": {"_count": 2, "hot": {"_count": 1}, "closely": {"_count": 1}}, "fainter": {"_count": 2, "and": {"_count": 2}}, "out": {"_count": 3, "of": {"_count": 3}}, "faint": {"_count": 1, "became": {"_count": 1}}, "larger": {"_count": 2, "and": {"_count": 2}}, "brighter": {"_count": 1, "": {"_count": 1}}, "breezier": {"_count": 1, "brighter": {"_count": 1}}, "four": {"_count": 1, "very": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "pinker": {"_count": 1, "under": {"_count": 1}}, "paler": {"_count": 1, "": {"_count": 1}}, "worried": {"_count": 1, "that": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "rosier": {"_count": 1, "still": {"_count": 1}}, "accustomed": {"_count": 1, "to": {"_count": 1}}, "colder": {"_count": 1, "and": {"_count": 1}}, "close": {"_count": 1, "together": {"_count": 1}}, "slightly": {"_count": 1, "larger": {"_count": 1}}, "until": {"_count": 1, "only": {"_count": 1}}, "suddenly": {"_count": 1, "muted": {"_count": 1}}, "closely": {"_count": 1, "together": {"_count": 1}}, "rigid": {"_count": 1, "and": {"_count": 1}}}, "steadily": {"_count": 33, "louder": {"_count": 2, "as": {"_count": 2}}, "darker": {"_count": 3, "": {"_count": 1}, "around": {"_count": 1}, "slowly": {"_count": 1}}, "at": {"_count": 1, "Riddle": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "north": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "eleven": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "more": {"_count": 2, "tragic": {"_count": 1}, "purple": {"_count": 1}}, "nearer": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "through": {"_count": 1, "his": {"_count": 1}}, "dirtier": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "blacker": {"_count": 1, "": {"_count": 1}}, "prior": {"_count": 1, "to": {"_count": 1}}, "depriving": {"_count": 1, "him": {"_count": 1}}, "redder": {"_count": 1, "she": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 1, "Slughorn": {"_count": 1}}, "he": {"_count": 1, "however": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}}, "louder": {"_count": 82, "as": {"_count": 7, "they": {"_count": 2}, "the": {"_count": 2}, "he": {"_count": 2}, "Harry": {"_count": 1}}, "and": {"_count": 22, "louder": {"_count": 13}, "suddenly": {"_count": 1}, "harder": {"_count": 1}, "softer": {"_count": 1}, "then": {"_count": 1}, "more": {"_count": 1}, "erupted": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "than": {"_count": 14, "all": {"_count": 1}, "usual": {"_count": 1}, "ever": {"_count": 5}, "anything": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "he": {"_count": 1}, "both": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "in": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "time": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "round": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "shriek": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 3, "every": {"_count": 3}}, "still": {"_count": 1, "you": {"_count": 1}}, "WEASLEY": {"_count": 1, "WAS": {"_count": 1}}, "but": {"_count": 3, "it": {"_count": 1}, "no": {"_count": 1}, "before": {"_count": 1}}, "to": {"_count": 1, "tell": {"_count": 1}}, "without": {"_count": 1, "really": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "behind": {"_count": 1}}, "pop": {"_count": 1, "another": {"_count": 1}}, "must": {"_count": 1, "therefore": {"_count": 1}}, "by": {"_count": 1, "far": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "something": {"_count": 1, "heavy": {"_count": 1}}, "drowning": {"_count": 1, "the": {"_count": 1}}, "voice": {"_count": 2, "flicking": {"_count": 1}, "than": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}}, "headlight": {"_count": 1, "it": {"_count": 1, "swelled": {"_count": 1}}}, "swelled": {"_count": 23, "to": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "at": {"_count": 1, "these": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 2}}, "in": {"_count": 3, "a": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "importantly": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "indignantly": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "happiness": {"_count": 1}, "fury": {"_count": 1}}, "shockingly": {"_count": 1, "and": {"_count": 1}}, "ominously": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 1, "what": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "roar": {"_count": 58, "as": {"_count": 2, "they": {"_count": 1}, "Ludo": {"_count": 1}}, "it": {"_count": 3, "rose": {"_count": 1}, "was": {"_count": 1}, "reared": {"_count": 1}}, "of": {"_count": 27, "rage": {"_count": 3}, "sound": {"_count": 4}, "noise": {"_count": 1}, "laughter": {"_count": 2}, "fury": {"_count": 2}, "applause": {"_count": 1}, "the": {"_count": 5}, "exasperation": {"_count": 1}, "apparent": {"_count": 1}, "frustration": {"_count": 1}, "approval": {"_count": 1}, "Luna": {"_count": 1}, "celebration": {"_count": 1}, "anger": {"_count": 1}, "delight": {"_count": 2}}, "the": {"_count": 1, "fire": {"_count": 1}}, "from": {"_count": 5, "the": {"_count": 4}, "somewhere": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "that": {"_count": 4, "echoed": {"_count": 2}, "could": {"_count": 1}, "made": {"_count": 1}}, "a": {"_count": 1, "witch": {"_count": 1}}, "rose": {"_count": 1, "from": {"_count": 1}}, "Leave": {"_count": 1, "Nott": {"_count": 1}}, "with": {"_count": 1, "laughter": {"_count": 1}}, "dragon": {"_count": 1, "fire": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 1, "retreated": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "a": {"_count": 2}, "an": {"_count": 1}}, "ROOKWOOD": {"_count": 1, "": {"_count": 1}}}, "huge": {"_count": 128, "motorcycle": {"_count": 1, "fell": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "seemed": {"_count": 1}}, "Dudley": {"_count": 1, "tantrum": {"_count": 1}}, "pretend": {"_count": 1, "sobs": {"_count": 1}}, "poisonous": {"_count": 1, "cobras": {"_count": 1}}, "boots": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "joke": {"_count": 1, "that": {"_count": 1}}, "stalactites": {"_count": 1, "and": {"_count": 1}}, "heavy": {"_count": 2, "trunk": {"_count": 1}, "trolls": {"_count": 1}}, "oak": {"_count": 1, "front": {"_count": 1}}, "pile": {"_count": 2, "of": {"_count": 2}}, "was": {"_count": 1, "moving": {"_count": 1}}, "wooden": {"_count": 1, "club": {"_count": 1}}, "hairy": {"_count": 2, "face": {"_count": 2}}, "black": {"_count": 2, "egg": {"_count": 1}, "hole": {"_count": 1}}, "compared": {"_count": 1, "to": {"_count": 1}}, "chessboard": {"_count": 1, "behind": {"_count": 1}}, "banner": {"_count": 1, "showing": {"_count": 1}}, "Slytherin": {"_count": 1, "serpent": {"_count": 1}}, "order": {"_count": 1, "from": {"_count": 1}}, "eyes": {"_count": 4, "blinked": {"_count": 1}, "to": {"_count": 1}, "opened": {"_count": 1}, "darted": {"_count": 1}}, "mound": {"_count": 1, "of": {"_count": 1}}, "barn": {"_count": 2, "owl": {"_count": 2}}, "and": {"_count": 4, "hairy": {"_count": 1}, "curved": {"_count": 1}, "orange": {"_count": 1}, "horned": {"_count": 1}}, "bite": {"_count": 1, "": {"_count": 1}}, "hall": {"_count": 1, "shaking": {"_count": 1}}, "heave": {"_count": 1, "and": {"_count": 1}}, "treat": {"_count": 1, "": {"_count": 1}}, "fan": {"_count": 1, "of": {"_count": 1}}, "jump": {"_count": 1, "and": {"_count": 1}}, "fake": {"_count": 2, "jump": {"_count": 1}, "sigh": {"_count": 1}}, "rumble": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "feet": {"_count": 1, "hit": {"_count": 1}}, "shoes": {"_count": 1, "and": {"_count": 1}}, "boy": {"_count": 2, "who": {"_count": 1}, "leapt": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "tug": {"_count": 1, "retrieved": {"_count": 1}}, "form": {"_count": 1, "of": {"_count": 1}}, "bound": {"_count": 1, "as": {"_count": 1}}, "pleasure": {"_count": 1, "in": {"_count": 1}}, "face": {"_count": 2, "was": {"_count": 1}, "which": {"_count": 1}}, "swig": {"_count": 1, "of": {"_count": 1}}, "array": {"_count": 1, "of": {"_count": 1}}, "gulp": {"_count": 1, "of": {"_count": 1}}, "advantage": {"_count": 2, "over": {"_count": 1}, "Kingsley": {"_count": 1}}, "crimson": {"_count": 1, "handbag": {"_count": 1}}, "silver": {"_count": 2, "Quidditch": {"_count": 1}, "shadow": {"_count": 1}}, "achievement": {"_count": 1, "": {"_count": 1}}, "flat": {"_count": 1, "foot": {"_count": 1}}, "glasses": {"_count": 1, "": {"_count": 1}}, "jolt": {"_count": 1, "of": {"_count": 1}}, "burst": {"_count": 1, "of": {"_count": 1}}, "effort": {"_count": 5, "he": {"_count": 2}, "of": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}}, "electric": {"_count": 1, "shock": {"_count": 1}}, "bang": {"_count": 2, "and": {"_count": 2}}, "yawn": {"_count": 1, "": {"_count": 1}}, "occasion": {"_count": 1, "like": {"_count": 1}}, "blackboard": {"_count": 1, "opposite": {"_count": 1}}, "groan": {"_count": 1, "rose": {"_count": 1}}, "horses": {"_count": 1, "snorting": {"_count": 1}}, "hands": {"_count": 1, "": {"_count": 1}}, "granitegray": {"_count": 1, "eggs": {"_count": 1}}, "spurt": {"_count": 1, "of": {"_count": 1}}, "green": {"_count": 1, "pear": {"_count": 1}}, "personal": {"_count": 1, "shock": {"_count": 1}}, "Beauxbatons": {"_count": 1, "horses": {"_count": 1}}, "leap": {"_count": 1, "every": {"_count": 1}}, "snake": {"_count": 4, "": {"_count": 3}, "emerged": {"_count": 1}}, "invisible": {"_count": 1, "hand": {"_count": 1}}, "sprawling": {"_count": 1, "crisscrossing": {"_count": 1}}, "numbers": {"_count": 1, "at": {"_count": 1}}, "tray": {"_count": 1, "loaded": {"_count": 1}}, "plate": {"_count": 1, "of": {"_count": 1}}, "gasp": {"_count": 1, "and": {"_count": 1}}, "shadows": {"_count": 1, "": {"_count": 1}}, "boulder": {"_count": 1, "of": {"_count": 1}}, "round": {"_count": 1, "head": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "empty": {"_count": 1, "chair": {"_count": 1}}, "head": {"_count": 1, "toward": {"_count": 1}}, "bloodshot": {"_count": 1, "eyes": {"_count": 1}}, "curved": {"_count": 1, "pincers": {"_count": 1}}, "with": {"_count": 1, "fear": {"_count": 1}}, "blond": {"_count": 2, "Death": {"_count": 1}, "one": {"_count": 1}}, "Death": {"_count": 3, "Eater": {"_count": 2}, "Eaters": {"_count": 1}}, "frame": {"_count": 1, "trembling": {"_count": 1}}, "hand": {"_count": 1, "seized": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "photograph": {"_count": 1, "of": {"_count": 1}}, "news": {"_count": 1, "Dumbledore": {"_count": 1}}, "shiny": {"_count": 1, "and": {"_count": 1}}, "batlike": {"_count": 1, "shape": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "bangs": {"_count": 1, "shook": {"_count": 1}}, "hole": {"_count": 1, "in": {"_count": 1}}, "protective": {"_count": 1, "sphere": {"_count": 1}}, "chimney": {"_count": 1, "dominated": {"_count": 1}}}, "motorcycle": {"_count": 11, "fell": {"_count": 1, "out": {"_count": 1}}, "was": {"_count": 1, "huge": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "kicked": {"_count": 1}}, "in": {"_count": 1, "it": {"_count": 1}}, "overtook": {"_count": 1, "them": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "which": {"_count": 1, "creaked": {"_count": 1}}, "maintenance": {"_count": 1, "manual": {"_count": 1}}}, "landed": {"_count": 116, "on": {"_count": 27, "the": {"_count": 15}, "something": {"_count": 1}, "Harrys": {"_count": 2}, "his": {"_count": 3}, "": {"_count": 1}, "cold": {"_count": 1}, "Rons": {"_count": 1}, "Buckbeak": {"_count": 1}, "either": {"_count": 1}, "Seamuss": {"_count": 1}}, "flat": {"_count": 3, "on": {"_count": 3}}, "with": {"_count": 12, "you": {"_count": 1}, "a": {"_count": 11}}, "next": {"_count": 4, "to": {"_count": 4}}, "noiselessly": {"_count": 1, "in": {"_count": 1}}, "sprawled": {"_count": 1, "next": {"_count": 1}}, "the": {"_count": 1, "plant": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "smoothly": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "spreadeagled": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "ran": {"_count": 1}}, "heavily": {"_count": 1, "on": {"_count": 1}}, "hard": {"_count": 3, "in": {"_count": 1}, "on": {"_count": 2}}, "splaylegged": {"_count": 1, "on": {"_count": 1}}, "facedown": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 16, "front": {"_count": 5}, "the": {"_count": 5}, "a": {"_count": 4}, "Horace": {"_count": 1}, "Voldemorts": {"_count": 1}}, "too": {"_count": 1, "bouncing": {"_count": 1}}, "painfully": {"_count": 1, "ten": {"_count": 1}}, "neatly": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "lightly": {"_count": 3, "on": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}}, "gently": {"_count": 1, "on": {"_count": 1}}, "point": {"_count": 1, "down": {"_count": 1}}, "yourself": {"_count": 1, "in": {"_count": 1}}, "perilously": {"_count": 1, "close": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "last": {"_count": 1}}, "upon": {"_count": 3, "Rons": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}}, "himself": {"_count": 2, "in": {"_count": 2}}, "close": {"_count": 1, "by": {"_count": 1}}, "here": {"_count": 2, "in": {"_count": 1}, "nearly": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "short": {"_count": 1}, "few": {"_count": 1}}, "twenty": {"_count": 1, "feet": {"_count": 1}}, "open": {"_count": 1, "on": {"_count": 1}}, "beside": {"_count": 4, "him": {"_count": 2}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "squarely": {"_count": 1, "on": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "badly": {"_count": 1, "on": {"_count": 1}}, "seized": {"_count": 1, "the": {"_count": 1}}}, "astride": {"_count": 4, "it": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "the": {"_count": 1, "motorcycle": {"_count": 1}}, "him": {"_count": 1, "Harry": {"_count": 1}}}, "simply": {"_count": 144, "too": {"_count": 1, "big": {"_count": 1}}, "grew": {"_count": 1, "that": {"_count": 1}}, "waved": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "melted": {"_count": 1, "away": {"_count": 1}}, "open": {"_count": 1, "on": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "no": {"_count": 2, "way": {"_count": 1}, "escaping": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 19}}, "been": {"_count": 3, "in": {"_count": 1}, "lost": {"_count": 1}, "too": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "called": {"_count": 1, "at": {"_count": 1}}, "loved": {"_count": 2, "me": {"_count": 1}, "monstrous": {"_count": 1}}, "love": {"_count": 1, "to": {"_count": 1}}, "be": {"_count": 1, "outlawed": {"_count": 1}}, "turned": {"_count": 2, "his": {"_count": 1}, "back": {"_count": 1}}, "sat": {"_count": 2, "admiring": {"_count": 1}, "there": {"_count": 1}}, "beamed": {"_count": 1, "as": {"_count": 1}}, "spotted": {"_count": 1, "a": {"_count": 1}}, "refused": {"_count": 2, "to": {"_count": 2}}, "looked": {"_count": 6, "dumbstruck": {"_count": 1}, "at": {"_count": 3}, "like": {"_count": 1}, "amazed": {"_count": 1}}, "seen": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 6, "he": {"_count": 3}, "Sirius": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}}, "wanted": {"_count": 1, "the": {"_count": 1}}, "dipped": {"_count": 1, "his": {"_count": 1}}, "furious": {"_count": 1, "but": {"_count": 1}}, "ask": {"_count": 1, "Hagrid": {"_count": 1}}, "have": {"_count": 2, "too": {"_count": 1}, "to": {"_count": 1}}, "siphons": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "chance": {"_count": 1}, "lifesize": {"_count": 1}}, "Stunned": {"_count": 1, "Winky": {"_count": 1}}, "overreacting": {"_count": 1, "to": {"_count": 1}}, "taken": {"_count": 1, "on": {"_count": 1}}, "stirring": {"_count": 1, "up": {"_count": 1}}, "watched": {"_count": 1, "him": {"_count": 1}}, "rolling": {"_count": 1, "up": {"_count": 1}}, "said": {"_count": 2, "The": {"_count": 1}, "Its": {"_count": 1}}, "begs": {"_count": 1, "them": {"_count": 1}}, "standing": {"_count": 1, "there": {"_count": 1}}, "my": {"_count": 2, "good": {"_count": 1}, "mother": {"_count": 1}}, "bounces": {"_count": 1, "off": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "nod": {"_count": 1, "or": {"_count": 1}}, "speeding": {"_count": 1, "away": {"_count": 1}}, "could": {"_count": 3, "not": {"_count": 3}}, "going": {"_count": 2, "back": {"_count": 2}}, "learn": {"_count": 1, "to": {"_count": 1}}, "stared": {"_count": 2, "at": {"_count": 2}}, "skipped": {"_count": 1, "question": {"_count": 1}}, "lurking": {"_count": 1, "out": {"_count": 1}}, "resolved": {"_count": 1, "to": {"_count": 1}}, "walking": {"_count": 1, "out": {"_count": 1}}, "I": {"_count": 1, "shall": {"_count": 1}}, "cause": {"_count": 1, "a": {"_count": 1}}, "dumbfounded": {"_count": 1, "": {"_count": 1}}, "lay": {"_count": 1, "there": {"_count": 1}}, "never": {"_count": 1, "learned": {"_count": 1}}, "weird": {"_count": 1, "that": {"_count": 1}}, "gaped": {"_count": 1, "": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "delighted": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "pretending": {"_count": 1, "": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "bounded": {"_count": 1, "to": {"_count": 1}}, "amused": {"_count": 1, "because": {"_count": 1}}, "vanished": {"_count": 2, "from": {"_count": 1}, "leaving": {"_count": 1}}, "by": {"_count": 1, "looking": {"_count": 1}}, "stood": {"_count": 2, "there": {"_count": 2}}, "knew": {"_count": 1, "that": {"_count": 1}}, "odd": {"_count": 1, "like": {"_count": 1}}, "conjured": {"_count": 1, "a": {"_count": 1}}, "radiant": {"_count": 1, "": {"_count": 1}}, "bemused": {"_count": 1, "": {"_count": 1}}, "choose": {"_count": 1, "not": {"_count": 1}}, "terrifying": {"_count": 1, "": {"_count": 1}}, "cant": {"_count": 2, "dance": {"_count": 1}, "go": {"_count": 1}}, "knock": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 6, "break": {"_count": 1}, "stare": {"_count": 1}, "hold": {"_count": 1}, "look": {"_count": 1}, "drift": {"_count": 1}, "trust": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}, "uses": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "hung": {"_count": 1, "there": {"_count": 1}}, "created": {"_count": 1, "a": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "practice": {"_count": 1, "": {"_count": 1}}, "listened": {"_count": 1, "hard": {"_count": 1}}, "spell": {"_count": 1, "practice": {"_count": 1}}, "staring": {"_count": 1, "down": {"_count": 1}}, "there": {"_count": 1, "a": {"_count": 1}}, "gifted": {"_count": 1, "dangerous": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}}, "wild": {"_count": 64, "long": {"_count": 1, "tangles": {"_count": 1}}, "tangled": {"_count": 2, "beard": {"_count": 1}, "black": {"_count": 1}}, "shadowy": {"_count": 1, "face": {"_count": 1}}, "cart": {"_count": 1, "ride": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "beard": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "jerk": {"_count": 1, "and": {"_count": 1}}, "eyes": {"_count": 1, "looked": {"_count": 1}}, "ones": {"_count": 1, "in": {"_count": 1}}, "dragons": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 4}}, "coverup": {"_count": 1, "stories": {"_count": 1}}, "rumors": {"_count": 1, "": {"_count": 1}}, "snatch": {"_count": 1, "he": {"_count": 1}}, "look": {"_count": 2, "in": {"_count": 1}, "about": {"_count": 1}}, "moment": {"_count": 3, "Harry": {"_count": 3}}, "swing": {"_count": 1, "made": {"_count": 1}}, "escape": {"_count": 1, "over": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "howling": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "excitement": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "half": {"_count": 1, "formed": {"_count": 1}}, "applause": {"_count": 1, "from": {"_count": 1}}, "moor": {"_count": 1, "Fair": {"_count": 1}}, "eyebrows": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "beard": {"_count": 1}}, "dark": {"_count": 1, "green": {"_count": 1}}, "greenhaired": {"_count": 1, "heads": {"_count": 1}}, "and": {"_count": 1, "ferociouslooking": {"_count": 1}}, "countryside": {"_count": 1, "around": {"_count": 1}}, "blustery": {"_count": 1, "evening": {"_count": 1}}, "boars": {"_count": 1, "severed": {"_count": 1}}, "his": {"_count": 1, "story": {"_count": 1}}, "stuff": {"_count": 1, "to": {"_count": 1}}, "laughter": {"_count": 1, "was": {"_count": 1}}, "motions": {"_count": 1, "with": {"_count": 1}}, "little": {"_count": 1, "laugh": {"_count": 1}}, "country": {"_count": 1, "an": {"_count": 1}}, "neighing": {"_count": 1, "laughter": {"_count": 1}}, "happiness": {"_count": 2, "upon": {"_count": 1}, "it": {"_count": 1}}, "The": {"_count": 1, "little": {"_count": 1}}, "yelping": {"_count": 1, "of": {"_count": 1}}, "faces": {"_count": 1, "of": {"_count": 1}}, "low": {"_count": 1, "growing": {"_count": 1}}, "hair": {"_count": 1, "and": {"_count": 1}}, "mushrooms": {"_count": 1, "that": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "young": {"_count": 1, "brother": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "hilltop": {"_count": 1, "": {"_count": 1}}}, "tangles": {"_count": 4, "of": {"_count": 4, "bushy": {"_count": 1}, "blankets": {"_count": 1}, "dried": {"_count": 1}, "nettles": {"_count": 1}}}, "bushy": {"_count": 26, "black": {"_count": 1, "hair": {"_count": 1}}, "eyebrows": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}}, "brown": {"_count": 4, "hair": {"_count": 4}}, "mustache": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 2, "his": {"_count": 1}, "Dumbledore": {"_count": 1}}, "tail": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "head": {"_count": 1, "down": {"_count": 1}}, "beard": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 1, "sleek": {"_count": 1}}, "again": {"_count": 1, "she": {"_count": 1}}, "hair": {"_count": 5, "": {"_count": 1}, "Hermione": {"_count": 1}, "seemed": {"_count": 1}, "tied": {"_count": 1}, "obscured": {"_count": 1}}, "crowns": {"_count": 1, "of": {"_count": 1}}, "gray": {"_count": 1, "hair": {"_count": 1}}}, "hid": {"_count": 28, "most": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "wide": {"_count": 1}}, "and": {"_count": 1, "watched": {"_count": 1}}, "quickly": {"_count": 1, "behind": {"_count": 1}}, "themselves": {"_count": 1, "inside": {"_count": 1}}, "the": {"_count": 4, "pipe": {"_count": 1}, "lot": {"_count": 1}, "Sorcerers": {"_count": 1}, "diadem": {"_count": 1}}, "them": {"_count": 2, "under": {"_count": 1}, "from": {"_count": 1}}, "her": {"_count": 2, "face": {"_count": 1}, "eyes": {"_count": 1}}, "it": {"_count": 5, "in": {"_count": 3}, "protected": {"_count": 1}, "exactly": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "behind": {"_count": 3, "Uncle": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}}, "their": {"_count": 1, "confusion": {"_count": 1}}, "from": {"_count": 1, "Filch": {"_count": 1}}, "after": {"_count": 1, "every": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "even": {"_count": 1}}, "my": {"_count": 1, "old": {"_count": 1}}}, "size": {"_count": 77, "of": {"_count": 52, "trash": {"_count": 1}, "postage": {"_count": 1}, "a": {"_count": 32}, "the": {"_count": 2}, "tennis": {"_count": 1}, "bullets": {"_count": 1}, "garden": {"_count": 1}, "carthorses": {"_count": 1}, "eggs": {"_count": 1}, "paving": {"_count": 1}, "their": {"_count": 1}, "hubcaps": {"_count": 1}, "side": {"_count": 1}, "an": {"_count": 2}, "her": {"_count": 2}, "footballs": {"_count": 1}, "dragon": {"_count": 1}, "halfbricks": {"_count": 1}}, "2": {"_count": 1, "1": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Neither": {"_count": 1, "dwarf": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}, "and": {"_count": 6, "live": {"_count": 1}, "she": {"_count": 1}, "weight": {"_count": 1}, "shape": {"_count": 2}, "was": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "hard": {"_count": 1, "not": {"_count": 1}}, "as": {"_count": 1, "Hogwarts": {"_count": 1}}, "Harry": {"_count": 1, "turned": {"_count": 1}}, "is": {"_count": 1, "no": {"_count": 1}}, "was": {"_count": 1, "thumping": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "o": {"_count": 1, "me": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "by": {"_count": 1, "her": {"_count": 1}}, "were": {"_count": 1, "pursuing": {"_count": 1}}}, "trash": {"_count": 7, "can": {"_count": 4, "lids": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "cans": {"_count": 2, "outside": {"_count": 1}, "jumped": {"_count": 1}}, "bin": {"_count": 1, "and": {"_count": 1}}}, "lids": {"_count": 5, "and": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "reddish": {"_count": 1}}}, "leather": {"_count": 30, "boots": {"_count": 1, "were": {"_count": 1}}, "pouch": {"_count": 4, "tied": {"_count": 1}, "on": {"_count": 1}, "took": {"_count": 1}, "which": {"_count": 1}}, "books": {"_count": 1, "the": {"_count": 1}}, "bag": {"_count": 4, "": {"_count": 1}, "that": {"_count": 1}, "still": {"_count": 1}, "of": {"_count": 1}}, "case": {"_count": 2, "with": {"_count": 1}, "aside": {"_count": 1}}, "collar": {"_count": 2, "around": {"_count": 1}, "": {"_count": 1}}, "vest": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "of": {"_count": 1}}, "belt": {"_count": 1, "": {"_count": 1}}, "straps": {"_count": 1, "around": {"_count": 1}}, "jacket": {"_count": 2, "": {"_count": 2}}, "thong": {"_count": 1, "and": {"_count": 1}}, "gloves": {"_count": 1, "that": {"_count": 1}}, "armchair": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "threadbare": {"_count": 1}}, "moneypouch": {"_count": 1, "from": {"_count": 1}}, "boxes": {"_count": 1, "one": {"_count": 1}}, "that": {"_count": 1, "surrounded": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "spines": {"_count": 1, "of": {"_count": 1}}, "strap": {"_count": 1, "that": {"_count": 1}}}, "baby": {"_count": 54, "dolphins": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 2, "fast": {"_count": 1}, "sitting": {"_count": 1}}, "and": {"_count": 3, "now": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}}, "angel": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "you": {"_count": 1}}, "dragon": {"_count": 4, "flopped": {"_count": 1}, "Hagrid": {"_count": 1}, "Norbert": {"_count": 1}, "with": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "banged": {"_count": 1, "its": {"_count": 1}}, "popped": {"_count": 1, "out": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 12, "!": {"_count": 4}, ".": {"_count": 4}, "?": {"_count": 4}}, "cowering": {"_count": 1, "on": {"_count": 1}}, "of": {"_count": 1, "theirs": {"_count": 1}}, "unicorns": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 2, "close": {"_count": 1}, "zooming": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "woke": {"_count": 1, "up": {"_count": 1}}, "Potter": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "headed": {"_count": 1, "Death": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "voice": {"_count": 1, "now": {"_count": 1}}, "Fawkes": {"_count": 2, "croaking": {"_count": 1}, "made": {"_count": 1}}, "bird": {"_count": 1, "you": {"_count": 1}}, "believing": {"_count": 1, "he": {"_count": 1}}, "who": {"_count": 1, "would": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "zooming": {"_count": 1, "in": {"_count": 1}}, "Ariana": {"_count": 1, "was": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "dolphins": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "vast": {"_count": 46, "muscular": {"_count": 1, "arms": {"_count": 1}}, "marble": {"_count": 2, "hall": {"_count": 2}}, "castle": {"_count": 1, "with": {"_count": 1}}, "echoing": {"_count": 1, "entrance": {"_count": 1}}, "pumpkins": {"_count": 1, "had": {"_count": 1}}, "lowslung": {"_count": 1, "hairy": {"_count": 1}}, "hollow": {"_count": 1, "a": {"_count": 1}}, "bloody": {"_count": 1, "eye": {"_count": 1}}, "life": {"_count": 1, "buoy": {"_count": 1}}, "cage": {"_count": 1, "of": {"_count": 1}}, "hands": {"_count": 1, "of": {"_count": 1}}, "chattering": {"_count": 1, "crowd": {"_count": 1}}, "golden": {"_count": 1, "cup": {"_count": 1}}, "green": {"_count": 1, "and": {"_count": 1}}, "invisible": {"_count": 1, "something": {"_count": 1}}, "wheels": {"_count": 1, "while": {"_count": 1}}, "box": {"_count": 1, "of": {"_count": 1}}, "expanses": {"_count": 1, "of": {"_count": 1}}, "maze": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "starry": {"_count": 1, "sky": {"_count": 1}}, "black": {"_count": 1, "leathery": {"_count": 1}}, "orblike": {"_count": 1, "eyes": {"_count": 1}}, "bed": {"_count": 1, "in": {"_count": 1}}, "mossy": {"_count": 1, "boulder": {"_count": 1}}, "forehead": {"_count": 1, "": {"_count": 1}}, "collection": {"_count": 1, "of": {"_count": 1}}, "number": {"_count": 1, "of": {"_count": 1}}, "flagged": {"_count": 1, "entrance": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}, "tent": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "chamber": {"_count": 1, "across": {"_count": 1}}, "lasso": {"_count": 1, "encircling": {"_count": 1}}, "outline": {"_count": 1, "of": {"_count": 1}}, "spotted": {"_count": 1, "handkerchief": {"_count": 1}}, "circle": {"_count": 1, "in": {"_count": 1}}, "batches": {"_count": 1, "of": {"_count": 1}}, "majority": {"_count": 1, "of": {"_count": 1}}, "sculpture": {"_count": 1, "of": {"_count": 1}}, "quantities": {"_count": 1, "of": {"_count": 1}}, "silent": {"_count": 1, "ocean": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "foot": {"_count": 1, "had": {"_count": 1}}, "web": {"_count": 1, "were": {"_count": 1}}}, "muscular": {"_count": 5, "arms": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "one": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cousin": {"_count": 1, "in": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}}, "arms": {"_count": 298, "he": {"_count": 3, "was": {"_count": 1}, "felt": {"_count": 1}, "could": {"_count": 1}}, "and": {"_count": 45, "turned": {"_count": 1}, "the": {"_count": 2}, "legs": {"_count": 12}, "slammed": {"_count": 1}, "sprinted": {"_count": 1}, "pulled": {"_count": 2}, "Neville": {"_count": 1}, "had": {"_count": 1}, "made": {"_count": 1}, "hands": {"_count": 1}, "frowned": {"_count": 2}, "dived": {"_count": 1}, "her": {"_count": 1}, "torso": {"_count": 1}, "stalked": {"_count": 1}, "stared": {"_count": 1}, "said": {"_count": 1}, "how": {"_count": 1}, "Hermione": {"_count": 1}, "stormed": {"_count": 1}, "ran": {"_count": 1}, "wearing": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 1}, "raised": {"_count": 1}, "joining": {"_count": 1}, "shrieking": {"_count": 1}, "their": {"_count": 1}, "sent": {"_count": 1}, "firmly": {"_count": 1}, "Harry": {"_count": 1}}, "around": {"_count": 24, "him": {"_count": 5}, "the": {"_count": 2}, "Harrys": {"_count": 2}, "Rons": {"_count": 2}, "her": {"_count": 3}, "and": {"_count": 1}, "Mr": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 2}, "Dudley": {"_count": 1}, "each": {"_count": 4}}, "": {"_count": 55, ".": {"_count": 53}, "?": {"_count": 2}}, "behind": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "a": {"_count": 1, "lion": {"_count": 1}}, "over": {"_count": 14, "their": {"_count": 4}, "his": {"_count": 6}, "her": {"_count": 3}, "the": {"_count": 1}}, "opened": {"_count": 3, "wide": {"_count": 3}}, "like": {"_count": 4, "a": {"_count": 1}, "clubs": {"_count": 1}, "that": {"_count": 1}, "ropes": {"_count": 1}}, "were": {"_count": 9, "so": {"_count": 1}, "too": {"_count": 1}, "full": {"_count": 1}, "clamped": {"_count": 1}, "folded": {"_count": 2}, "muscular": {"_count": 1}, "crossed": {"_count": 1}, "wrapped": {"_count": 1}}, "pinned": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 4, "she": {"_count": 1}, "couldnt": {"_count": 1}, "scrambled": {"_count": 1}, "Kingsley": {"_count": 1}}, "snapped": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "strongly": {"_count": 1}}, "length": {"_count": 5, "as": {"_count": 2}, "so": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "from": {"_count": 1}}, "hurried": {"_count": 1, "to": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "rising": {"_count": 1, "RiddikulusV": {"_count": 1}}, "to": {"_count": 6, "free": {"_count": 1}, "the": {"_count": 1}, "join": {"_count": 1}, "his": {"_count": 1}, "regain": {"_count": 1}, "Harry": {"_count": 1}}, "still": {"_count": 3, "injured": {"_count": 1}, "around": {"_count": 2}}, "again": {"_count": 1, "by": {"_count": 1}}, "outstretched": {"_count": 5, "like": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "folded": {"_count": 8, "to": {"_count": 1}, "he": {"_count": 1}, "clicking": {"_count": 1}, "once": {"_count": 1}, "staring": {"_count": 1}, "glaring": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}}, "where": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "slightly": {"_count": 1, "while": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 1}, "her": {"_count": 1}, "mock": {"_count": 1}, "a": {"_count": 3}, "front": {"_count": 1}}, "wheeled": {"_count": 1, "him": {"_count": 1}}, "raised": {"_count": 2, "in": {"_count": 2}}, "full": {"_count": 4, "of": {"_count": 4}}, "lion": {"_count": 1, "eagle": {"_count": 1}}, "two": {"_count": 1, "crossed": {"_count": 1}}, "crossed": {"_count": 2, "and": {"_count": 2}}, "lifted": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 11, "it": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 2}, "her": {"_count": 2}, "which": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}}, "with": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "binding": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 3, "now": {"_count": 1}, "closed": {"_count": 1}, "were": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}, "put": {"_count": 1, "them": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "shaking": {"_count": 3, "now": {"_count": 1}, "madly": {"_count": 1}, "": {"_count": 1}}, "clamped": {"_count": 1, "over": {"_count": 1}}, "every": {"_count": 1, "trace": {"_count": 1}}, "tight": {"_count": 1, "around": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "tiny": {"_count": 1}}, "stretched": {"_count": 1, "wide": {"_count": 1}}, "working": {"_count": 1, "madly": {"_count": 1}}, "closing": {"_count": 1, "in": {"_count": 1}}, "together": {"_count": 1, "he": {"_count": 1}}, "wide": {"_count": 4, "to": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 1}}, "hopefully": {"_count": 1, "": {"_count": 1}}, "legs": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "if": {"_count": 1}}, "wrapped": {"_count": 3, "around": {"_count": 1}, "in": {"_count": 1}, "tightly": {"_count": 1}}, "knocking": {"_count": 1, "him": {"_count": 1}}, "trembling": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "tensed": {"_count": 1, "on": {"_count": 1}}, "flailed": {"_count": 1, "dangerously": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "protecting": {"_count": 1, "Harry": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "though": {"_count": 1, "as": {"_count": 1}}, "reach": {"_count": 1, "of": {"_count": 1}}, "held": {"_count": 1, "aloft": {"_count": 1}}, "overlong": {"_count": 1, "which": {"_count": 1}}, "engraved": {"_count": 1, "on": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "enclose": {"_count": 1, "him": {"_count": 1}}, "cold": {"_count": 1, "as": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "trembled": {"_count": 1, "with": {"_count": 1}}, "powerfully": {"_count": 1, "built": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "because": {"_count": 1, "as": {"_count": 1}}, "beat": {"_count": 1, "time": {"_count": 1}}, "it": {"_count": 1, "happened": {"_count": 1}}, "against": {"_count": 1, "us": {"_count": 1}}, "great": {"_count": 1, "curved": {"_count": 1}}, "He": {"_count": 1, "heard": {"_count": 1}}, "will": {"_count": 1, "he": {"_count": 1}}, "splayed": {"_count": 1, "the": {"_count": 1}}}, "holding": {"_count": 312, "a": {"_count": 37, "bundle": {"_count": 1}, "rifle": {"_count": 1}, "long": {"_count": 2}, "huge": {"_count": 1}, "mattress": {"_count": 1}, "pair": {"_count": 2}, "tray": {"_count": 2}, "party": {"_count": 1}, "large": {"_count": 6}, "handful": {"_count": 1}, "dustpan": {"_count": 1}, "letter": {"_count": 2}, "moldylooking": {"_count": 1}, "wand": {"_count": 1}, "bedsheet": {"_count": 1}, "tin": {"_count": 1}, "sealed": {"_count": 1}, "copy": {"_count": 2}, "small": {"_count": 2}, "struggling": {"_count": 1}, "shaking": {"_count": 1}, "tape": {"_count": 1}, "roll": {"_count": 1}, "familiar": {"_count": 1}, "book": {"_count": 1}, "shattered": {"_count": 1}}, "up": {"_count": 34, "their": {"_count": 1}, "a": {"_count": 12}, "Harrys": {"_count": 2}, "the": {"_count": 10}, "an": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 2}, "something": {"_count": 1}, "Rons": {"_count": 1}, "both": {"_count": 1}, "Bellatrixs": {"_count": 1}, "her": {"_count": 1}}, "them": {"_count": 5, "up": {"_count": 2}, "inside": {"_count": 1}, "over": {"_count": 1}, "off": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "more": {"_count": 1, "money": {"_count": 1}}, "her": {"_count": 16, "hand": {"_count": 3}, "cloak": {"_count": 1}, "head": {"_count": 2}, "pestle": {"_count": 1}, "mothers": {"_count": 1}, "lit": {"_count": 1}, "wand": {"_count": 1}, "ribs": {"_count": 1}, "whistle": {"_count": 1}, "so": {"_count": 1}, "hands": {"_count": 1}, "ankle": {"_count": 1}, "short": {"_count": 1}}, "out": {"_count": 35, "his": {"_count": 18}, "the": {"_count": 2}, "a": {"_count": 8}, "one": {"_count": 1}, "for": {"_count": 1}, "her": {"_count": 1}, "both": {"_count": 1}, "what": {"_count": 1}, "Harrys": {"_count": 1}, "two": {"_count": 1}}, "his": {"_count": 23, "robes": {"_count": 1}, "breath": {"_count": 4}, "broken": {"_count": 1}, "camera": {"_count": 1}, "wand": {"_count": 7}, "limegreen": {"_count": 1}, "hand": {"_count": 1}, "trunk": {"_count": 1}, "lit": {"_count": 1}, "small": {"_count": 1}, "daughter": {"_count": 1}, "cup": {"_count": 1}, "Secrecy": {"_count": 1}, "broomstick": {"_count": 1}}, "on": {"_count": 7, "for": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 4}, "when": {"_count": 1}}, "the": {"_count": 35, "House": {"_count": 1}, "Quidditch": {"_count": 1}, "receiver": {"_count": 2}, "Firebolt": {"_count": 1}, "chain": {"_count": 1}, "Snitch": {"_count": 2}, "wand": {"_count": 2}, "skrewt": {"_count": 1}, "other": {"_count": 1}, "Triwizard": {"_count": 2}, "lit": {"_count": 1}, "mouthpiece": {"_count": 1}, "threat": {"_count": 1}, "map": {"_count": 1}, "struggling": {"_count": 1}, "teacup": {"_count": 1}, "door": {"_count": 1}, "Invisibility": {"_count": 1}, "unmarked": {"_count": 1}, "pulsating": {"_count": 1}, "onionlike": {"_count": 1}, "cup": {"_count": 1}, "thirteenth": {"_count": 1}, "old": {"_count": 1}, "miraculous": {"_count": 1}, "wizards": {"_count": 1}, "sword": {"_count": 2}, "locket": {"_count": 1}, "snake": {"_count": 1}, "fighters": {"_count": 1}}, "tight": {"_count": 4, "to": {"_count": 4}}, "Ginnys": {"_count": 1, "old": {"_count": 1}}, "my": {"_count": 1, "neck": {"_count": 1}}, "Sir": {"_count": 1, "Patricks": {"_count": 1}}, "your": {"_count": 2, "bear": {"_count": 1}, "brothers": {"_count": 1}}, "our": {"_count": 1, "wands": {"_count": 1}}, "what": {"_count": 2, "looked": {"_count": 2}}, "their": {"_count": 3, "robes": {"_count": 1}, "breath": {"_count": 2}}, "exploded": {"_count": 1, "in": {"_count": 1}}, "its": {"_count": 4, "breath": {"_count": 2}, "arms": {"_count": 1}, "bow": {"_count": 1}}, "it": {"_count": 14, "as": {"_count": 2}, "before": {"_count": 1}, "up": {"_count": 4}, "flat": {"_count": 1}, "": {"_count": 1}, "threateningly": {"_count": 1}, "said": {"_count": 1}, "open": {"_count": 1}, "steady": {"_count": 1}, "for": {"_count": 1}}, "this": {"_count": 1, "great": {"_count": 1}}, "onto": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "Scabbers": {"_count": 2, "close": {"_count": 1}, "tightly": {"_count": 1}}, "him": {"_count": 10, "Harry": {"_count": 1}, "back": {"_count": 2}, "at": {"_count": 1}, "away": {"_count": 1}, "was": {"_count": 1}, "off": {"_count": 1}, "paralyzed": {"_count": 1}, "he": {"_count": 1}, "up": {"_count": 1}}, "Harry": {"_count": 6, "very": {"_count": 1}, "loosened": {"_count": 1}, "tightening": {"_count": 1}, "so": {"_count": 2}, "thudded": {"_count": 1}}, "one": {"_count": 3, "Ludo": {"_count": 1}, "of": {"_count": 1}, "up": {"_count": 1}}, "Harrys": {"_count": 2, "wand": {"_count": 2}}, "you": {"_count": 2, "will": {"_count": 1}, "hostage": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "who": {"_count": 1}}, "herself": {"_count": 1, "differently": {"_count": 1}}, "something": {"_count": 2, "tight": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 2, "Mum": {"_count": 1}, "responded": {"_count": 1}}, "Pigwidgeons": {"_count": 1, "cage": {"_count": 1}}, "court": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "each": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 2, "back": {"_count": 1}, "in": {"_count": 1}}, "hands": {"_count": 5, "": {"_count": 3}, "with": {"_count": 1}, "Mr": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "that": {"_count": 1, "against": {"_count": 1}}, "trials": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "bottles": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "them": {"_count": 1}}, "Katie": {"_count": 1, "tugged": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "Stan": {"_count": 1, "Shunpike": {"_count": 1}}, "an": {"_count": 1, "oldfashioned": {"_count": 1}}, "two": {"_count": 1, "enormous": {"_count": 1}}, "us": {"_count": 1, "here": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "newborn": {"_count": 1, "Ariana": {"_count": 1}}, "of": {"_count": 1, "what": {"_count": 1}}, "Hermiones": {"_count": 1, "wand": {"_count": 1}}, "mine": {"_count": 1, "and": {"_count": 1}}, "Lilys": {"_count": 1, "letter": {"_count": 1}}, "Gryffindors": {"_count": 1, "sword": {"_count": 1}}, "Bellatrixs": {"_count": 1, "": {"_count": 1}}, "aside": {"_count": 1, "said": {"_count": 1}}, "tightly": {"_count": 1, "to": {"_count": 1}}, "daggers": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "bundle": {"_count": 15, "of": {"_count": 10, "blankets": {"_count": 3}, "walking": {"_count": 1}, "chicken": {"_count": 1}, "robes": {"_count": 3}, "laughs": {"_count": 1}, "slippery": {"_count": 1}}, "Hagrids": {"_count": 1, "shoulders": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "lit": {"_count": 1, "his": {"_count": 1}}, "opened": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}}, "blankets": {"_count": 27, "": {"_count": 9, ".": {"_count": 9}}, "and": {"_count": 7, "then": {"_count": 2}, "bending": {"_count": 1}, "closing": {"_count": 1}, "shook": {"_count": 1}, "assured": {"_count": 1}, "did": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "waking": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "which": {"_count": 1}}, "back": {"_count": 1, "onto": {"_count": 1}}, "drawn": {"_count": 1, "right": {"_count": 1}}, "by": {"_count": 1, "flashlight": {"_count": 1}}, "were": {"_count": 1, "piled": {"_count": 1}}, "his": {"_count": 1, "legs": {"_count": 1}}, "off": {"_count": 1, "Rons": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}}, "relieved": {"_count": 52, "": {"_count": 9, ".": {"_count": 9}}, "to": {"_count": 12, "see": {"_count": 5}, "have": {"_count": 1}, "find": {"_count": 2}, "hear": {"_count": 3}, "get": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "or": {"_count": 1, "puzzled": {"_count": 1}}, "this": {"_count": 1, "owl": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 2}}, "stood": {"_count": 1, "up": {"_count": 1}}, "that": {"_count": 8, "she": {"_count": 2}, "Moody": {"_count": 1}, "something": {"_count": 1}, "Harry": {"_count": 2}, "nothing": {"_count": 1}, "Dudley": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "watched": {"_count": 1}}, "the": {"_count": 1, "bareness": {"_count": 1}}, "me": {"_count": 1, "so": {"_count": 1}}, "though": {"_count": 1, "considering": {"_count": 1}}, "heres": {"_count": 1, "Alas": {"_count": 1}}, "at": {"_count": 3, "Harrys": {"_count": 1}, "finally": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 1, "youre": {"_count": 1}}, "murmurings": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "a": {"_count": 1}}, "by": {"_count": 1, "her": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "his": {"_count": 1, "feelings": {"_count": 1}}, "Hermione": {"_count": 1, "sprang": {"_count": 1}}}, "Borrowed": {"_count": 3, "it": {"_count": 2, "Professor": {"_count": 1}, "from": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}}, "giant": {"_count": 147, "climbing": {"_count": 1, "carefully": {"_count": 1}}, "elastic": {"_count": 1, "band": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 2}}, "squeezed": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 8}, "?": {"_count": 2}, "!": {"_count": 2}}, "he": {"_count": 1, "reached": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "chuckled": {"_count": 2, "": {"_count": 1}, "darkly": {"_count": 1}}, "sat": {"_count": 1, "back": {"_count": 1}}, "was": {"_count": 1, "working": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "called": {"_count": 1, "Hagrid": {"_count": 1}}, "tarantula": {"_count": 1, "down": {"_count": 1}}, "hourglasses": {"_count": 4, "that": {"_count": 1}, "set": {"_count": 1}, "stood": {"_count": 1}, "on": {"_count": 1}}, "threeheaded": {"_count": 3, "dog": {"_count": 3}}, "squid": {"_count": 13, "which": {"_count": 1}, "": {"_count": 6}, "propel": {"_count": 1}, "waving": {"_count": 1}, "Dennis": {"_count": 1}, "said": {"_count": 2}, "did": {"_count": 1}}, "heads": {"_count": 1, "": {"_count": 1}}, "holds": {"_count": 1, "death": {"_count": 1}}, "chess": {"_count": 1, "set": {"_count": 1}}, "black": {"_count": 1, "Cs": {"_count": 1}}, "drain": {"_count": 1, "": {"_count": 1}}, "clock": {"_count": 1, "with": {"_count": 1}}, "umbrellasized": {"_count": 1, "flowers": {"_count": 1}}, "serpent": {"_count": 2, "": {"_count": 1}, "uncoiling": {"_count": 1}}, "snake": {"_count": 3, "": {"_count": 2}, "skin": {"_count": 1}}, "face": {"_count": 1, "above": {"_count": 1}}, "toes": {"_count": 1, "": {"_count": 1}}, "spiders": {"_count": 3, "buy": {"_count": 1}, "and": {"_count": 1}, "were": {"_count": 1}}, "oak": {"_count": 1, "front": {"_count": 1}}, "spectral": {"_count": 1, "dog": {"_count": 1}}, "forefinger": {"_count": 1, "down": {"_count": 1}}, "eagles": {"_count": 1, "with": {"_count": 1}}, "spider": {"_count": 4, "six": {"_count": 1}, "": {"_count": 1}, "hes": {"_count": 1}, "Aragog": {"_count": 1}}, "rabbit": {"_count": 1, "than": {"_count": 1}}, "rubber": {"_count": 1, "mouse": {"_count": 1}}, "slug": {"_count": 1, "which": {"_count": 1}}, "hand": {"_count": 2, "which": {"_count": 1}, "had": {"_count": 1}}, "eyes": {"_count": 1, "flickered": {"_count": 1}}, "sea": {"_count": 1, "monster": {"_count": 1}}, "slugs": {"_count": 1, "protruding": {"_count": 1}}, "plug": {"_count": 1, "had": {"_count": 1}}, "scorpions": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "winged": {"_count": 2, "horses": {"_count": 1}, "palominos": {"_count": 1}}, "fruit": {"_count": 1, "bowl": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "because": {"_count": 1, "theyre": {"_count": 1}}, "communities": {"_count": 1, "still": {"_count": 1}}, "eagle": {"_count": 1, "Buckbeaks": {"_count": 1}}, "blood": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "scorpion": {"_count": 1, "than": {"_count": 1}}, "horses": {"_count": 1, "into": {"_count": 1}}, "bloke": {"_count": 1, "said": {"_count": 1}}, "birds": {"_count": 1, "of": {"_count": 1}}, "bats": {"_count": 2, "": {"_count": 1}, "ears": {"_count": 1}}, "wars": {"_count": 4, "": {"_count": 2}, "Snape": {"_count": 1}, "and": {"_count": 1}}, "scissors": {"_count": 1, "wearing": {"_count": 1}}, "marshmallow": {"_count": 1, "or": {"_count": 1}}, "bird": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "Rubeus": {"_count": 1, "Hagrid": {"_count": 1}}, "toad": {"_count": 1, "and": {"_count": 1}}, "camp": {"_count": 1, "": {"_count": 1}}, "soapsuds": {"_count": 1, "": {"_count": 1}}, "head": {"_count": 1, "gazed": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "ony": {"_count": 1, "sixteen": {"_count": 1}}, "who": {"_count": 1, "doesnt": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "within": {"_count": 1, "their": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "had": {"_count": 1, "only": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "theyre": {"_count": 1, "like": {"_count": 1}}, "hourglass": {"_count": 1, "": {"_count": 1}}, "appeared": {"_count": 1, "in": {"_count": 1}}, "whose": {"_count": 1, "huge": {"_count": 1}}, "peppering": {"_count": 1, "his": {"_count": 1}}, "were": {"_count": 1, "growing": {"_count": 1}}, "flying": {"_count": 1, "bogeys": {"_count": 1}}, "taking": {"_count": 1, "up": {"_count": 1}}, "involvement": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "been": {"_count": 1}}, "admonitory": {"_count": 1, "finger": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "grubs": {"_count": 3, "said": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "serpents": {"_count": 1, "of": {"_count": 1}}, "Gryffindor": {"_count": 1, "hourglass": {"_count": 1}}, "Grawp": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "beachballsized": {"_count": 1, "Snitch": {"_count": 1}}, "Snitch": {"_count": 1, "cake": {"_count": 1}}, "rook": {"_count": 1, "": {"_count": 1}}, "pepper": {"_count": 1, "pot": {"_count": 1}}, "meandering": {"_count": 1, "past": {"_count": 1}}, "stood": {"_count": 1, "before": {"_count": 1}}, "now": {"_count": 1, "trying": {"_count": 1}}, "came": {"_count": 1, "lurching": {"_count": 1}}, "swung": {"_count": 1, "its": {"_count": 1}}}, "climbing": {"_count": 30, "carefully": {"_count": 1, "off": {"_count": 1}}, "school": {"_count": 1, "buildings": {"_count": 1}}, "down": {"_count": 1, "well": {"_count": 1}}, "into": {"_count": 3, "an": {"_count": 1}, "the": {"_count": 2}}, "the": {"_count": 9, "stairs": {"_count": 4}, "stone": {"_count": 1}, "steps": {"_count": 2}, "ladder": {"_count": 1}, "side": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 4}}, "toward": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "at": {"_count": 1}}, "back": {"_count": 2, "inside": {"_count": 1}, "out": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "theres": {"_count": 1, "some": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "Dumbledores": {"_count": 1, "hat": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "so": {"_count": 1, "steeply": {"_count": 1}}}, "carefully": {"_count": 140, "off": {"_count": 3, "the": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "and": {"_count": 9, "bit": {"_count": 1}, "the": {"_count": 1}, "saw": {"_count": 1}, "then": {"_count": 1}, "quietly": {"_count": 1}, "sealing": {"_count": 1}, "come": {"_count": 1}, "tucked": {"_count": 1}, "we": {"_count": 1}}, "shutting": {"_count": 1, "it": {"_count": 1}}, "over": {"_count": 5, "the": {"_count": 4}, "one": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 2}, "top": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "along": {"_count": 1, "one": {"_count": 1}}, "cause": {"_count": 1, "its": {"_count": 1}}, "at": {"_count": 3, "Harry": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 1}}, "around": {"_count": 4, "her": {"_count": 1}, "there": {"_count": 1}, "Dolores": {"_count": 1}, "the": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 1, "clearly": {"_count": 1}}, "looking": {"_count": 1, "anywhere": {"_count": 1}}, "into": {"_count": 5, "her": {"_count": 2}, "the": {"_count": 3}}, "he": {"_count": 6, "raised": {"_count": 1}, "unscrewed": {"_count": 1}, "edged": {"_count": 2}, "saw": {"_count": 1}, "climbed": {"_count": 1}}, "checked": {"_count": 1, "that": {"_count": 1}}, "If": {"_count": 1, "anyone": {"_count": 1}}, "back": {"_count": 3, "across": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 1}}, "not": {"_count": 1, "looking": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "during": {"_count": 1, "Marges": {"_count": 1}}, "watched": {"_count": 1, "until": {"_count": 1}}, "past": {"_count": 1, "Professor": {"_count": 1}}, "shredding": {"_count": 1, "his": {"_count": 1}}, "tucked": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 1, "handle": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}, "avoiding": {"_count": 2, "their": {"_count": 1}, "catching": {"_count": 1}}, "turning": {"_count": 1, "it": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "inside": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "at": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "got": {"_count": 1}, "": {"_count": 1}}, "gradually": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "concealed": {"_count": 1, "from": {"_count": 1}}, "ignoring": {"_count": 1, "Wormtails": {"_count": 1}}, "planned": {"_count": 1, "": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "closing": {"_count": 1, "the": {"_count": 1}}, "light": {"_count": 1, "polite": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "behind": {"_count": 3, "her": {"_count": 1}, "him": {"_count": 2}}, "in": {"_count": 4, "a": {"_count": 1}, "an": {"_count": 1}, "front": {"_count": 1}, "Dumbledores": {"_count": 1}}, "away": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "evaluate": {"_count": 1, "the": {"_count": 1}}, "avoided": {"_count": 1, "looking": {"_count": 1}}, "spotted": {"_count": 1, "Harry": {"_count": 1}}, "structured": {"_count": 1, "theorycentered": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Sirius": {"_count": 1}}, "controlled": {"_count": 2, "examination": {"_count": 1}, "but": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "particularly": {"_count": 1, "the": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "marked": {"_count": 1, "her": {"_count": 1}}, "for": {"_count": 1, "signs": {"_count": 1}}, "upon": {"_count": 5, "his": {"_count": 1}, "the": {"_count": 3}, "Dobbys": {"_count": 1}}, "removed": {"_count": 1, "it": {"_count": 1}}, "ruffled": {"_count": 1, "hair": {"_count": 1}}, "tended": {"_count": 1, "front": {"_count": 1}}, "covered": {"_count": 1, "the": {"_count": 1}}, "since": {"_count": 1, "September": {"_count": 1}}, "that": {"_count": 1, "Neville": {"_count": 1}}, "measured": {"_count": 1, "gulp": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "before": {"_count": 2, "speaking": {"_count": 1}, "the": {"_count": 1}}, "concocting": {"_count": 1, "with": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}}, "Young": {"_count": 5, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "Percy": {"_count": 1, "his": {"_count": 1}}, "Master": {"_count": 1, "he": {"_count": 1}}, "people": {"_count": 1, "are": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}}, "Sirius": {"_count": 996, "Black": {"_count": 69, "lent": {"_count": 1}, "he": {"_count": 1}, "possibly": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 22}, "personally": {"_count": 1}, "staring": {"_count": 1}, "was": {"_count": 3}, "had": {"_count": 3}, "cant": {"_count": 1}, "escaped": {"_count": 4}, "under": {"_count": 1}, "hasnt": {"_count": 1}, "for": {"_count": 1}, "I": {"_count": 2}, "turns": {"_count": 2}, "and": {"_count": 1}, "blasting": {"_count": 1}, "plainly": {"_count": 1}, "lurkin": {"_count": 1}, "Harry": {"_count": 2}, "as": {"_count": 1}, "Filch": {"_count": 1}, "nearly": {"_count": 1}, "seriously": {"_count": 1}, "suddenly": {"_count": 1}, "his": {"_count": 1}, "For": {"_count": 1}, "showed": {"_count": 1}, "has": {"_count": 1}, "may": {"_count": 1}, "is": {"_count": 2}, "notorious": {"_count": 1}, "a": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 1}, "though": {"_count": 1}}, "Blacks": {"_count": 3, "mad": {"_count": 1}, "been": {"_count": 1}, "innocent": {"_count": 1}}, "": {"_count": 157, "!": {"_count": 17}, "?": {"_count": 24}, ".": {"_count": 116}}, "get": {"_count": 1, "into": {"_count": 1}}, "said": {"_count": 19, "Lupin": {"_count": 3}, "hastily": {"_count": 2}, "a": {"_count": 1}, "Harry": {"_count": 1}, "getting": {"_count": 1}, "Stuff": {"_count": 1}, "Like": {"_count": 1}, "Mrs": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}, "Did": {"_count": 1}, "Kreacher": {"_count": 1}, "he": {"_count": 2}, "Petrificus": {"_count": 1}}, "NO": {"_count": 1, "": {"_count": 1}}, "killed": {"_count": 1, "Peter": {"_count": 1}}, "here": {"_count": 2, "were": {"_count": 1}, "played": {"_count": 1}}, "Im": {"_count": 2, "getting": {"_count": 1}, "so": {"_count": 1}}, "and": {"_count": 52, "James": {"_count": 3}, "found": {"_count": 1}, "get": {"_count": 1}, "Buckbeak": {"_count": 1}, "Professor": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 3}, "Im": {"_count": 1}, "promise": {"_count": 1}, "saw": {"_count": 1}, "Snape": {"_count": 6}, "which": {"_count": 1}, "Mundungus": {"_count": 2}, "said": {"_count": 1}, "more": {"_count": 1}, "its": {"_count": 1}, "Lupin": {"_count": 8}, "Kingsley": {"_count": 1}, "a": {"_count": 1}, "Filch": {"_count": 1}, "when": {"_count": 1}, "just": {"_count": 1}, "that": {"_count": 1}, "thank": {"_count": 1}, "begged": {"_count": 1}, "by": {"_count": 1}, "Wormtail": {"_count": 1}, "then": {"_count": 1}, "his": {"_count": 1}, "Dolohov": {"_count": 1}, "Bellatrix": {"_count": 1}, "how": {"_count": 1}, "Severus": {"_count": 1}}, "is": {"_count": 23, "Padfoot": {"_count": 1}, "not": {"_count": 1}, "locked": {"_count": 1}, "": {"_count": 4}, "right": {"_count": 3}, "waiting": {"_count": 1}, "in": {"_count": 1}, "going": {"_count": 1}, "innocent": {"_count": 1}, "just": {"_count": 1}, "dead": {"_count": 1}, "trapped": {"_count": 1}, "being": {"_count": 2}, "at": {"_count": 1}, "still": {"_count": 1}, "here": {"_count": 2}}, "was": {"_count": 55, "an": {"_count": 1}, "getting": {"_count": 1}, "on": {"_count": 2}, "going": {"_count": 2}, "innocent": {"_count": 2}, "definitely": {"_count": 1}, "his": {"_count": 1}, "Sirius": {"_count": 1}, "much": {"_count": 2}, "all": {"_count": 1}, "wearing": {"_count": 1}, "sending": {"_count": 1}, "standing": {"_count": 2}, "not": {"_count": 6}, "right": {"_count": 1}, "staring": {"_count": 1}, "gone": {"_count": 1}, "hiding": {"_count": 2}, "probably": {"_count": 1}, "in": {"_count": 3}, "becoming": {"_count": 1}, "hurrying": {"_count": 1}, "trying": {"_count": 1}, "a": {"_count": 3}, "giving": {"_count": 1}, "lounging": {"_count": 1}, "the": {"_count": 3}, "looking": {"_count": 1}, "like": {"_count": 1}, "dead": {"_count": 2}, "alive": {"_count": 1}, "there": {"_count": 1}, "at": {"_count": 1}, "upstairs": {"_count": 1}, "repugnant": {"_count": 1}, "horrible": {"_count": 1}, "tall": {"_count": 1}}, "thought": {"_count": 2, "it": {"_count": 1}, "she": {"_count": 1}}, "had": {"_count": 61, "done": {"_count": 1}, "turned": {"_count": 1}, "been": {"_count": 14}, "offered": {"_count": 1}, "had": {"_count": 1}, "gone": {"_count": 3}, "escaped": {"_count": 1}, "suggested": {"_count": 3}, "said": {"_count": 1}, "told": {"_count": 3}, "ever": {"_count": 1}, "bought": {"_count": 2}, "to": {"_count": 1}, "obviously": {"_count": 1}, "come": {"_count": 1}, "put": {"_count": 1}, "just": {"_count": 1}, "maintained": {"_count": 1}, "not": {"_count": 1}, "thrown": {"_count": 1}, "beckoned": {"_count": 1}, "given": {"_count": 4}, "never": {"_count": 2}, "neither": {"_count": 1}, "only": {"_count": 1}, "risked": {"_count": 1}, "died": {"_count": 2}, "vanished": {"_count": 1}, "appeared": {"_count": 1}, "hated": {"_count": 1}, "collapsed": {"_count": 1}, "such": {"_count": 1}, "plastered": {"_count": 1}, "left": {"_count": 1}, "taken": {"_count": 1}, "sought": {"_count": 1}}, "thats": {"_count": 1, "a": {"_count": 1}}, "betrayed": {"_count": 1, "your": {"_count": 1}}, "tracked": {"_count": 1, "Peter": {"_count": 1}}, "muttered": {"_count": 3, "Pettigrew": {"_count": 1}, "pacing": {"_count": 1}, "": {"_count": 1}}, "its": {"_count": 2, "me": {"_count": 1}, "just": {"_count": 1}}, "have": {"_count": 3, "told": {"_count": 1}, "gotten": {"_count": 1}, "got": {"_count": 1}}, "Sirius": {"_count": 4, "what": {"_count": 1}, "would": {"_count": 2}, "was": {"_count": 1}}, "what": {"_count": 1, "could": {"_count": 1}}, "I": {"_count": 9, "was": {"_count": 1}, "want": {"_count": 1}, "reckon": {"_count": 1}, "need": {"_count": 1}, "havent": {"_count": 1}, "": {"_count": 1}, "wanted": {"_count": 1}, "expect": {"_count": 1}, "went": {"_count": 1}}, "disappeared": {"_count": 1, "from": {"_count": 1}}, "hes": {"_count": 3, "gone": {"_count": 1}, "But": {"_count": 1}, "not": {"_count": 1}}, "Harry": {"_count": 6, "muttered": {"_count": 2}, "looked": {"_count": 2}, "thought": {"_count": 1}, "repeated": {"_count": 1}}, "But": {"_count": 1, "Dumbledore": {"_count": 1}}, "murder": {"_count": 1, "Pettigrew": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "find": {"_count": 1}}, "are": {"_count": 3, "old": {"_count": 1}, "even": {"_count": 1}, "you": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "played": {"_count": 1, "on": {"_count": 1}}, "has": {"_count": 3, "not": {"_count": 1}, "gone": {"_count": 1}, "been": {"_count": 1}}, "locked": {"_count": 2, "up": {"_count": 2}}, "can": {"_count": 2, "escape": {"_count": 1}, "you": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "were": {"_count": 6, "not": {"_count": 1}, "acting": {"_count": 1}, "crushed": {"_count": 1}, "both": {"_count": 1}, "the": {"_count": 1}, "gone": {"_count": 1}}, "as": {"_count": 7, "they": {"_count": 3}, "he": {"_count": 1}, "much": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "told": {"_count": 7, "me": {"_count": 4}, "you": {"_count": 2}, "Harry": {"_count": 1}}, "Buckbeak": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 20, "freedom": {"_count": 1}, "be": {"_count": 3}, "tell": {"_count": 2}, "whom": {"_count": 1}, "stay": {"_count": 1}, "Mrs": {"_count": 1}, "go": {"_count": 1}, "leave": {"_count": 1}, "stop": {"_count": 1}, "join": {"_count": 1}, "get": {"_count": 2}, "think": {"_count": 1}, "hate": {"_count": 1}, "her": {"_count": 1}, "Voldemort": {"_count": 2}}, "from": {"_count": 3, "now": {"_count": 1}, "telling": {"_count": 1}, "his": {"_count": 1}}, "all": {"_count": 3, "the": {"_count": 1}, "about": {"_count": 1}, "alone": {"_count": 1}}, "then": {"_count": 1, "paused": {"_count": 1}}, "straight": {"_count": 1, "away": {"_count": 1}}, "at": {"_count": 9, "Hogwarts": {"_count": 1}, "least": {"_count": 1}, "last": {"_count": 1}, "once": {"_count": 2}, "his": {"_count": 2}, "all": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 4, "Harry": {"_count": 1}, "was": {"_count": 1}, "Tonks": {"_count": 1}, "Dumbledore": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "never": {"_count": 2, "said": {"_count": 1}, "cared": {"_count": 1}}, "Thanks": {"_count": 1, "for": {"_count": 1}}, "would": {"_count": 10, "think": {"_count": 1}, "rather": {"_count": 1}, "you": {"_count": 1}, "find": {"_count": 1}, "have": {"_count": 2}, "pick": {"_count": 1}, "not": {"_count": 3}}, "who": {"_count": 6, "would": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 3}}, "for": {"_count": 3, "me": {"_count": 1}, "another": {"_count": 1}, "support": {"_count": 1}}, "the": {"_count": 3, "enchanted": {"_count": 1}, "second": {"_count": 1}, "secret": {"_count": 1}}, "escape": {"_count": 2, "from": {"_count": 1}, "right": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 3, "leaving": {"_count": 1}, "getting": {"_count": 1}, "I": {"_count": 1}}, "about": {"_count": 6, "my": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 1}, "staying": {"_count": 1}, "remaining": {"_count": 1}}, "ll": {"_count": 1, "know": {"_count": 1}}, "hadnt": {"_count": 1, "even": {"_count": 1}}, "came": {"_count": 2, "back": {"_count": 1}, "to": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "cornered": {"_count": 1, "by": {"_count": 1}}, "Why": {"_count": 1, "dyou": {"_count": 1}}, "managing": {"_count": 1, "to": {"_count": 1}}, "You": {"_count": 2, "told": {"_count": 1}, "are": {"_count": 1}}, "Hedwig": {"_count": 1, "was": {"_count": 1}}, "THE": {"_count": 1, "HUNGARIAN": {"_count": 1}}, "saying": {"_count": 1, "that": {"_count": 1}}, "very": {"_count": 1, "fine": {"_count": 1}}, "got": {"_count": 1, "privacy": {"_count": 1}}, "how": {"_count": 2, "re": {"_count": 1}, "are": {"_count": 1}}, "looked": {"_count": 8, "different": {"_count": 1}, "at": {"_count": 2}, "up": {"_count": 1}, "out": {"_count": 1}, "slightly": {"_count": 1}, "around": {"_count": 1}, "desperately": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "bitterly": {"_count": 3, "": {"_count": 3}}, "because": {"_count": 1, "he": {"_count": 1}}, "hesitated": {"_count": 1, "": {"_count": 1}}, "grimly": {"_count": 2, "": {"_count": 1}, "Ill": {"_count": 1}}, "slowly": {"_count": 2, "I": {"_count": 2}}, "speaking": {"_count": 1, "very": {"_count": 1}}, "a": {"_count": 6, "letter": {"_count": 1}, "blowbyblow": {"_count": 1}, "handy": {"_count": 1}, "full": {"_count": 1}, "dangerous": {"_count": 1}, "fatal": {"_count": 1}}, "He": {"_count": 2, "sounds": {"_count": 1}, "saw": {"_count": 1}}, "with": {"_count": 5, "the": {"_count": 1}, "Moody": {"_count": 1}, "a": {"_count": 2}, "such": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 2}, "Harry": {"_count": 1}, "right": {"_count": 1}}, "led": {"_count": 1, "them": {"_count": 1}}, "higher": {"_count": 1, "up": {"_count": 1}}, "slipped": {"_count": 1, "out": {"_count": 1}}, "opening": {"_count": 1, "it": {"_count": 1}}, "gnawing": {"_count": 1, "on": {"_count": 1}}, "shrugging": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "casting": {"_count": 2, "Hermione": {"_count": 1}, "a": {"_count": 1}}, "however": {"_count": 1, "looked": {"_count": 1}}, "paced": {"_count": 1, "all": {"_count": 1}}, "his": {"_count": 4, "brow": {"_count": 1}, "voice": {"_count": 1}, "face": {"_count": 1}, "Firebolt": {"_count": 1}}, "still": {"_count": 2, "pacing": {"_count": 1}, "stuffing": {"_count": 1}}, "frowning": {"_count": 3, "more": {"_count": 1}, "": {"_count": 2}}, "looking": {"_count": 7, "thoughtful": {"_count": 1}, "thoughtfully": {"_count": 1}, "frankly": {"_count": 1}, "surprised": {"_count": 1}, "slightly": {"_count": 1}, "livid": {"_count": 1}, "back": {"_count": 1}}, "held": {"_count": 2, "up": {"_count": 2}}, "shook": {"_count": 2, "his": {"_count": 2}}, "taking": {"_count": 2, "another": {"_count": 1}, "mad": {"_count": 1}}, "smiled": {"_count": 3, "grimly": {"_count": 1}, "bitterly": {"_count": 1}, "sadly": {"_count": 1}}, "throwing": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "let": {"_count": 3, "out": {"_count": 3}}, "dully": {"_count": 1, "": {"_count": 1}}, "threw": {"_count": 1, "aside": {"_count": 1}}, "nodding": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "added": {"_count": 2, "and": {"_count": 1}, "Whens": {"_count": 1}}, "stared": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "lapsed": {"_count": 1, "into": {"_count": 1}}, "gesturing": {"_count": 1, "to": {"_count": 1}}, "heaved": {"_count": 2, "an": {"_count": 1}, "another": {"_count": 1}}, "scowled": {"_count": 1, "at": {"_count": 1}}, "see": {"_count": 1, "if": {"_count": 1}}, "after": {"_count": 1, "last": {"_count": 1}}, "telling": {"_count": 2, "him": {"_count": 2}}, "sent": {"_count": 1, "their": {"_count": 1}}, "Whos": {"_count": 1, "he": {"_count": 1}}, "everything": {"_count": 2, "Barty": {"_count": 1}, "that": {"_count": 1}}, "harshly": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 8, "Dumbledore": {"_count": 1}, "who": {"_count": 1}, "before": {"_count": 1}, "it": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}, "Lupin": {"_count": 1}, "Ron": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "broke": {"_count": 1, "the": {"_count": 1}}, "sharply": {"_count": 3, "": {"_count": 3}}, "nodded": {"_count": 1, "and": {"_count": 1}}, "may": {"_count": 1, "I": {"_count": 1}}, "g": {"_count": 1, ".": {"_count": 1}}, "whose": {"_count": 2, "face": {"_count": 1}, "cheerfulness": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "grasped": {"_count": 1, "his": {"_count": 1}}, "advised": {"_count": 1, "he": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 2, "international": {"_count": 1}, "age": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}, "scratched": {"_count": 1, "him": {"_count": 1}}, "uttered": {"_count": 1, "Dumbledores": {"_count": 1}}, "sarcastically": {"_count": 1, "": {"_count": 1}}, "waving": {"_count": 1, "a": {"_count": 1}}, "surveying": {"_count": 1, "it": {"_count": 1}}, "mate": {"_count": 1, "didnt": {"_count": 1}}, "indifferently": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 7, "an": {"_count": 1}, "the": {"_count": 4}, "it": {"_count": 1}, "dislike": {"_count": 1}}, "pushing": {"_count": 2, "away": {"_count": 1}, "him": {"_count": 1}}, "calmly": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 1, "politely": {"_count": 1}}, "impatiently": {"_count": 5, "": {"_count": 5}}, "coldly": {"_count": 2, "": {"_count": 2}}, "which": {"_count": 1, "is": {"_count": 1}}, "loudly": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "leaning": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "sit": {"_count": 1, "down": {"_count": 1}}, "sank": {"_count": 1, "slowly": {"_count": 1}}, "spoke": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "as": {"_count": 1}}, "Bill": {"_count": 1, "Mundungus": {"_count": 1}}, "restlessly": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 4, "hes": {"_count": 1}, "badly": {"_count": 1}, "raw": {"_count": 1}, "his": {"_count": 1}}, "halfshrugged": {"_count": 1, "but": {"_count": 1}}, "mentioned": {"_count": 1, "": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "exasperatedly": {"_count": 1, "hurrying": {"_count": 1}}, "walking": {"_count": 1, "down": {"_count": 1}}, "Kreacher": {"_count": 2, "flung": {"_count": 1}, "": {"_count": 1}}, "snapped": {"_count": 1, "": {"_count": 1}}, "irritably": {"_count": 1, "and": {"_count": 1}}, "curtly": {"_count": 1, "": {"_count": 1}}, "walked": {"_count": 1, "across": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "jabbed": {"_count": 1, "a": {"_count": 1}}, "testily": {"_count": 1, "": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "mimed": {"_count": 1, "blasting": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "mumbled": {"_count": 1, "at": {"_count": 1}}, "gave": {"_count": 2, "a": {"_count": 1}, "me": {"_count": 1}}, "gloomily": {"_count": 1, "": {"_count": 1}}, "sustained": {"_count": 1, "a": {"_count": 1}}, "seized": {"_count": 1, "it": {"_count": 1}}, "contemptuously": {"_count": 1, "throwing": {"_count": 1}}, "wrested": {"_count": 1, "a": {"_count": 1}}, "names": {"_count": 1, "Harry": {"_count": 1}}, "went": {"_count": 2, "as": {"_count": 1}, "quite": {"_count": 1}}, "ignoring": {"_count": 1, "Hermiones": {"_count": 1}}, "through": {"_count": 2, "clenched": {"_count": 1}, "the": {"_count": 1}}, "stabbed": {"_count": 1, "moodily": {"_count": 1}}, "Lupin": {"_count": 6, "and": {"_count": 4}, "Tonks": {"_count": 1}, "Moody": {"_count": 1}}, "abruptly": {"_count": 2, "": {"_count": 2}}, "being": {"_count": 2, "best": {"_count": 1}, "tortured": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "knows": {"_count": 2, "it": {"_count": 1}, "not": {"_count": 1}}, "gets": {"_count": 1, "confused": {"_count": 1}}, "seemed": {"_count": 5, "to": {"_count": 3}, "satisfied": {"_count": 1}, "a": {"_count": 1}}, "escaped": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 3, "he": {"_count": 1}, "hes": {"_count": 1}, "we": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "scaring": {"_count": 1, "a": {"_count": 1}}, "wagged": {"_count": 1, "his": {"_count": 1}}, "if": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "been": {"_count": 1, "a": {"_count": 1}}, "might": {"_count": 3, "really": {"_count": 1}, "throw": {"_count": 1}, "be": {"_count": 1}}, "coming": {"_count": 1, "with": {"_count": 1}}, "should": {"_count": 1, "not": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "smiling": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "interrupted": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 2, "rather": {"_count": 1}, "": {"_count": 1}}, "well": {"_count": 1, "he": {"_count": 1}}, "hastily": {"_count": 1, "itll": {"_count": 1}}, "didnt": {"_count": 2, "you": {"_count": 1}, "have": {"_count": 1}}, "grinning": {"_count": 2, "theyre": {"_count": 1}, "still": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "made": {"_count": 1}}, "isnt": {"_count": 2, "one": {"_count": 1}, "at": {"_count": 1}}, "listens": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 4, "would": {"_count": 2}, "muttered": {"_count": 1}, "just": {"_count": 1}}, "agrees": {"_count": 1, "with": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "says": {"_count": 2, "Madame": {"_count": 1}, "its": {"_count": 1}}, "alone": {"_count": 1, "in": {"_count": 1}}, "angrily": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "encouragingly": {"_count": 1, "come": {"_count": 1}}, "suggested": {"_count": 1, "once": {"_count": 1}}, "counting": {"_count": 1, "the": {"_count": 1}}, "followed": {"_count": 1, "": {"_count": 1}}, "steadily": {"_count": 1, "": {"_count": 1}}, "firmly": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 2, "being": {"_count": 1}, "saw": {"_count": 1}}, "tramping": {"_count": 1, "past": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "facing": {"_count": 1, "Snape": {"_count": 1}}, "louder": {"_count": 1, "than": {"_count": 1}}, "letting": {"_count": 1, "his": {"_count": 1}}, "aggressively": {"_count": 1, "": {"_count": 1}}, "sitting": {"_count": 1, "up": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "proudly": {"_count": 1, "": {"_count": 1}}, "pushed": {"_count": 1, "his": {"_count": 1}}, "appeared": {"_count": 2, "not": {"_count": 1}, "out": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "dont": {"_count": 1, "Are": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "glared": {"_count": 1, "after": {"_count": 1}}, "clapping": {"_count": 1, "Harry": {"_count": 1}}, "included": {"_count": 1, "want": {"_count": 1}}, "she": {"_count": 1, "retained": {"_count": 1}}, "give": {"_count": 1, "James": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "finally": {"_count": 1, "as": {"_count": 1}}, "snorted": {"_count": 1, "": {"_count": 1}}, "advanced": {"_count": 1, "on": {"_count": 1}}, "viciously": {"_count": 1, "": {"_count": 1}}, "coolly": {"_count": 1, "": {"_count": 1}}, "briskly": {"_count": 1, "turning": {"_count": 1}}, "James": {"_count": 1, "and": {"_count": 1}}, "eyed": {"_count": 1, "it": {"_count": 1}}, "could": {"_count": 1, "possibly": {"_count": 1}}, "urgently": {"_count": 1, "sweeping": {"_count": 1}}, "nor": {"_count": 1, "Lupin": {"_count": 1}}, "placatingly": {"_count": 1, "James": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "affectionately": {"_count": 1, "": {"_count": 1}}, "bracingly": {"_count": 1, "": {"_count": 1}}, "frowned": {"_count": 1, "at": {"_count": 1}}, "causing": {"_count": 1, "Harry": {"_count": 1}}, "forcefully": {"_count": 1, "and": {"_count": 1}}, "glancing": {"_count": 1, "behind": {"_count": 1}}, "wanted": {"_count": 1, "Harry": {"_count": 1}}, "mightve": {"_count": 1, "cracked": {"_count": 1}}, "really": {"_count": 2, "has": {"_count": 1}, "was": {"_count": 1}}, "Hes": {"_count": 1, "not": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "they": {"_count": 1}}, "11": {"_count": 1, "probably": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "Dont": {"_count": 1, "go": {"_count": 1}}, "captured": {"_count": 1, "bound": {"_count": 1}}, "into": {"_count": 1, "view": {"_count": 1}}, "anywhere": {"_count": 1, "nor": {"_count": 1}}, "dueling": {"_count": 1, "with": {"_count": 1}}, "hurtled": {"_count": 1, "out": {"_count": 1}}, "forcing": {"_count": 1, "Harrys": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "yelled": {"_count": 1, "dashing": {"_count": 1}}, "duck": {"_count": 1, "Bellatrixs": {"_count": 1}}, "did": {"_count": 6, "not": {"_count": 4}, "nothing": {"_count": 1}, "when": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "now": {"_count": 1, "for": {"_count": 1}}, "died": {"_count": 3, "said": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "wouldnt": {"_count": 3, "Sirius": {"_count": 1}, "Something": {"_count": 1}, "have": {"_count": 1}}, "wasnt": {"_count": 1, "there": {"_count": 1}}, "apparently": {"_count": 1, "shouted": {"_count": 1}}, "trapped": {"_count": 1, "in": {"_count": 1}}, "remain": {"_count": 1, "behind": {"_count": 1}}, "cared": {"_count": 1, "most": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "took": {"_count": 1, "me": {"_count": 1}}, "like": {"_count": 2, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "alive": {"_count": 1, "said": {"_count": 1}}, "learned": {"_count": 1, "what": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "longer": {"_count": 1, "n": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "wont": {"_count": 1, "care": {"_count": 1}}, "pearly": {"_count": 1, "white": {"_count": 1}}, "also": {"_count": 1, "left": {"_count": 1}}, "pits": {"_count": 1, "dark": {"_count": 1}}, "knew": {"_count": 1, "what": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "crouching": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "represented": {"_count": 1, "much": {"_count": 1}}, "barely": {"_count": 1, "knew": {"_count": 1}}, "rushing": {"_count": 1, "off": {"_count": 1}}, "carelessly": {"_count": 1, "handsome": {"_count": 1}}, "ran": {"_count": 1, "away": {"_count": 1}}, "left": {"_count": 1, "you": {"_count": 1}}, "falling": {"_count": 1, "through": {"_count": 1}}, "grinned": {"_count": 1, "": {"_count": 1}}, "imitated": {"_count": 1, "her": {"_count": 1}}, "move": {"_count": 1, "up": {"_count": 1}}, "stopped": {"_count": 1, "too": {"_count": 1}}}, "Black": {"_count": 371, "lent": {"_count": 1, "it": {"_count": 1}}, "Forest": {"_count": 2, "and": {"_count": 1}, "at": {"_count": 1}}, "boy": {"_count": 1, "even": {"_count": 1}}, "is": {"_count": 8, "armed": {"_count": 1}, "mad": {"_count": 1}, "carrying": {"_count": 1}, "deranged": {"_count": 1}, "a": {"_count": 1}, "actually": {"_count": 1}, "very": {"_count": 1}, "whether": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "couldnt": {"_count": 1}}, "possibly": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 8, "the": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 1}, "without": {"_count": 1}, "abruptly": {"_count": 1}, "Nick": {"_count": 1}, "Hermione": {"_count": 2}}, "murdered": {"_count": 2, "thirteen": {"_count": 1}, "all": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "with": {"_count": 5, "his": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "Lucius": {"_count": 1}, "er": {"_count": 1}}, "woz": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 22, "a": {"_count": 2}, "after": {"_count": 1}, "caught": {"_count": 1}, "the": {"_count": 2}, "best": {"_count": 1}, "planning": {"_count": 1}, "tired": {"_count": 1}, "quicker": {"_count": 1}, "taken": {"_count": 1}, "at": {"_count": 1}, "working": {"_count": 1}, "sprawled": {"_count": 1}, "going": {"_count": 1}, "frowning": {"_count": 1}, "making": {"_count": 1}, "bleeding": {"_count": 1}, "in": {"_count": 1}, "still": {"_count": 1}, "gone": {"_count": 1}, "able": {"_count": 1}}, "": {"_count": 67, ".": {"_count": 45}, "?": {"_count": 12}, "!": {"_count": 10}}, "in": {"_count": 6, "the": {"_count": 3}, "without": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}}, "took": {"_count": 1, "out": {"_count": 1}}, "did": {"_count": 3, "then": {"_count": 1}, "know": {"_count": 1}, "a": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "personally": {"_count": 1, "I": {"_count": 1}}, "staring": {"_count": 2, "up": {"_count": 2}}, "than": {"_count": 2, "inventing": {"_count": 1}, "he": {"_count": 1}}, "can": {"_count": 1, "break": {"_count": 1}}, "escaped": {"_count": 5, "": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}}, "lost": {"_count": 1, "everything": {"_count": 1}}, "you": {"_count": 2, "sometimes": {"_count": 1}, "mean": {"_count": 1}}, "had": {"_count": 13, "murdered": {"_count": 1}, "shown": {"_count": 1}, "been": {"_count": 3}, "finished": {"_count": 1}, "proved": {"_count": 1}, "bellowed": {"_count": 1}, "escaped": {"_count": 1}, "already": {"_count": 1}, "brandished": {"_count": 1}, "bewitched": {"_count": 1}, "done": {"_count": 1}}, "as": {"_count": 7, "Voldemorts": {"_count": 1}, "well": {"_count": 1}, "Lupin": {"_count": 1}, "badly": {"_count": 1}, "though": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}}, "cant": {"_count": 1, "be": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "my": {"_count": 1}}, "wouldnt": {"_count": 1, "dare": {"_count": 1}}, "under": {"_count": 1, "our": {"_count": 1}}, "hasnt": {"_count": 1, "got": {"_count": 1}}, "singlehanded": {"_count": 2, "Potter": {"_count": 1}, "": {"_count": 1}}, "soon": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "linger": {"_count": 1}, "escape": {"_count": 1}}, "could": {"_count": 2, "have": {"_count": 1}, "turn": {"_count": 1}}, "enter": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 3, "know": {"_count": 2}, "suppose": {"_count": 1}}, "have": {"_count": 1, "hidden": {"_count": 1}}, "must": {"_count": 2, "have": {"_count": 2}}, "try": {"_count": 1, "and": {"_count": 1}}, "turns": {"_count": 2, "up": {"_count": 2}}, "and": {"_count": 27, "James": {"_count": 1}, "Potter": {"_count": 3}, "hell": {"_count": 1}, "his": {"_count": 1}, "Crookshanks": {"_count": 1}, "then": {"_count": 1}, "turned": {"_count": 1}, "Lupin": {"_count": 6}, "frowning": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 2}, "only": {"_count": 1}, "began": {"_count": 1}, "Hermione": {"_count": 1}, "purple": {"_count": 1}, "its": {"_count": 1}, "Mrs": {"_count": 1}, "clear": {"_count": 1}}, "beyond": {"_count": 1, "all": {"_count": 1}}, "turned": {"_count": 2, "out": {"_count": 1}, "right": {"_count": 1}}, "would": {"_count": 1, "die": {"_count": 1}}, "betrayed": {"_count": 1, "them": {"_count": 1}}, "no": {"_count": 1, "Dumbledore": {"_count": 1}}, "argued": {"_count": 1, "but": {"_count": 1}}, "knew": {"_count": 1, "he": {"_count": 1}}, "himself": {"_count": 2, "": {"_count": 1}, "crumpled": {"_count": 1}}, "before": {"_count": 1, "little": {"_count": 1}}, "once": {"_count": 1, "he": {"_count": 1}}, "standing": {"_count": 1, "there": {"_count": 1}}, "seemed": {"_count": 1, "": {"_count": 1}}, "long": {"_count": 1, "before": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "blasting": {"_count": 1, "Peter": {"_count": 1}}, "isnt": {"_count": 1, "affected": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "wants": {"_count": 1, "": {"_count": 1}}, "Ive": {"_count": 1, "never": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "plainly": {"_count": 1, "wasnt": {"_count": 1}}, "lurkin": {"_count": 1, "around": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 1}, "turned": {"_count": 1}, "Potters": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "betraying": {"_count": 1, "his": {"_count": 1}}, "Filch": {"_count": 1, "was": {"_count": 1}}, "having": {"_count": 1, "got": {"_count": 1}}, "nearly": {"_count": 2, "stabbed": {"_count": 1}, "did": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "situation": {"_count": 1, "I": {"_count": 1}}, "caught": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "didnt": {"_count": 2, "raise": {"_count": 1}, "seem": {"_count": 1}}, "it": {"_count": 1, "could": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "stared": {"_count": 1, "up": {"_count": 1}}, "blinked": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "wasnt": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 3, "a": {"_count": 2}, "you": {"_count": 1}}, "who": {"_count": 7, "still": {"_count": 1}, "suddenly": {"_count": 1}, "was": {"_count": 4}, "shook": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "intently": {"_count": 1}}, "something": {"_count": 2, "none": {"_count": 1}, "that": {"_count": 1}}, "nodded": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "get": {"_count": 1, "into": {"_count": 1}}, "how": {"_count": 1, "did": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "whose": {"_count": 1, "face": {"_count": 1}}, "lunged": {"_count": 1, "at": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "stopped": {"_count": 2, "struggling": {"_count": 1}, "dead": {"_count": 1}}, "savagely": {"_count": 1, "still": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "harshly": {"_count": 2, "taking": {"_count": 1}, "": {"_count": 1}}, "leapt": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "started": {"_count": 3, "toward": {"_count": 1}, "to": {"_count": 1}, "screaming": {"_count": 1}}, "snarled": {"_count": 2, "": {"_count": 2}}, "why": {"_count": 1, "didnt": {"_count": 1}}, "now": {"_count": 1, "get": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "put": {"_count": 1, "one": {"_count": 1}}, "thunderstruck": {"_count": 1, "": {"_count": 1}}, "hoarsely": {"_count": 1, "": {"_count": 1}}, "hissed": {"_count": 1, "so": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "jumped": {"_count": 1, "at": {"_count": 1}}, "kicked": {"_count": 1, "out": {"_count": 1}}, "his": {"_count": 3, "own": {"_count": 1}, "parents": {"_count": 1}, "chin": {"_count": 1}}, "nudging": {"_count": 1, "Pettigrew": {"_count": 1}}, "conjured": {"_count": 1, "heavy": {"_count": 1}}, "stiffly": {"_count": 1, "": {"_count": 1}}, "mean": {"_count": 1, "what": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "saw": {"_count": 1, "Snape": {"_count": 1}}, "froze": {"_count": 1, "": {"_count": 1}}, "whispered": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "naturally": {"_count": 1, "conjured": {"_count": 1}}, "For": {"_count": 1, "heavens": {"_count": 1}}, "showed": {"_count": 1, "he": {"_count": 1}}, "onto": {"_count": 1, "them": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "weakly": {"_count": 1, "staring": {"_count": 1}}, "placed": {"_count": 1, "a": {"_count": 1}}, "wheeled": {"_count": 1, "Buckbeak": {"_count": 1}}, "affair": {"_count": 1, "has": {"_count": 1}}, "cornered": {"_count": 1, "and": {"_count": 1}}, "escapin": {"_count": 1, "again": {"_count": 1}}, "left": {"_count": 1, "so": {"_count": 1}}, "family": {"_count": 10, "crest": {"_count": 3}, "tree": {"_count": 2}, "to": {"_count": 1}, "member": {"_count": 1}, "tradition": {"_count": 1}, "had": {"_count": 1}, "heirloom": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "crest": {"_count": 2, "from": {"_count": 1}, "and": {"_count": 1}}, "might": {"_count": 1, "still": {"_count": 1}}, "As": {"_count": 1, "Hes": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "may": {"_count": 2, "not": {"_count": 2}}, "notorious": {"_count": 1, "mass": {"_count": 1}}, "hair": {"_count": 1, "an": {"_count": 1}}, "Im": {"_count": 1, "his": {"_count": 1}}, "getting": {"_count": 1, "yourself": {"_count": 1}}, "shapes": {"_count": 1, "were": {"_count": 1}}, "a": {"_count": 1, "a": {"_count": 1}}, "we": {"_count": 1, "ought": {"_count": 1}}, "though": {"_count": 1, "I": {"_count": 1}}, "Siriuss": {"_count": 2, "greatgreatgrandfather": {"_count": 2}}, "heirlooms": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "curtains": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "Excitement": {"_count": 1, "trickled": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "At": {"_count": 1, "the": {"_count": 1}}, "instead": {"_count": 1, "with": {"_count": 1}}, "bouncing": {"_count": 1, "on": {"_count": 1}}}, "lent": {"_count": 9, "it": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 5, "Quidditch": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "me": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "another": {"_count": 1}}, "you": {"_count": 1, "theirs": {"_count": 1}}}, "destroyed": {"_count": 38, "but": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "They": {"_count": 1, "didn": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 1}, "!": {"_count": 1}}, "the": {"_count": 5, "instant": {"_count": 1}, "last": {"_count": 1}, "diary": {"_count": 1}, "bit": {"_count": 1}, "ring": {"_count": 1}}, "and": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "Dudleys": {"_count": 1, "tail": {"_count": 1}}, "Riddle": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "picture": {"_count": 1}}, "tonight": {"_count": 1, "told": {"_count": 1}}, "one": {"_count": 2, "cannot": {"_count": 1}, "of": {"_count": 1}}, "another": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "Voldemort": {"_count": 1, "could": {"_count": 1}}, "Aberforth": {"_count": 1, "in": {"_count": 1}}, "cafe": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 3, "since": {"_count": 1}, "": {"_count": 2}}, "is": {"_count": 4, "death": {"_count": 4}}, "Kendra": {"_count": 1, "to": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 1, "what": {"_count": 1}}}, "started": {"_count": 410, "swarmin": {"_count": 1, "around": {"_count": 1}}, "looking": {"_count": 3, "for": {"_count": 1}, "frantically": {"_count": 1}, "wherever": {"_count": 1}}, "running": {"_count": 2, "for": {"_count": 1}, "as": {"_count": 1}}, "and": {"_count": 6, "Dudley": {"_count": 1}, "looked": {"_count": 2}, "Harry": {"_count": 1}, "accepted": {"_count": 1}, "Nevilles": {"_count": 1}}, "to": {"_count": 125, "rain": {"_count": 5}, "speak": {"_count": 4}, "get": {"_count": 4}, "walk": {"_count": 3}, "shove": {"_count": 1}, "pop": {"_count": 1}, "vibrate": {"_count": 1}, "drift": {"_count": 1}, "run": {"_count": 4}, "roll": {"_count": 2}, "spread": {"_count": 1}, "learn": {"_count": 1}, "twist": {"_count": 1}, "direct": {"_count": 1}, "pick": {"_count": 2}, "swing": {"_count": 1}, "haggle": {"_count": 1}, "ask": {"_count": 1}, "laugh": {"_count": 10}, "sink": {"_count": 2}, "go": {"_count": 2}, "clap": {"_count": 2}, "make": {"_count": 4}, "tell": {"_count": 1}, "scribble": {"_count": 2}, "growl": {"_count": 1}, "say": {"_count": 4}, "expand": {"_count": 1}, "think": {"_count": 1}, "move": {"_count": 2}, "slow": {"_count": 1}, "explain": {"_count": 1}, "appreciate": {"_count": 1}, "plan": {"_count": 1}, "giggle": {"_count": 1}, "fall": {"_count": 4}, "sweep": {"_count": 1}, "climb": {"_count": 6}, "pace": {"_count": 1}, "interrupt": {"_count": 1}, "strain": {"_count": 1}, "scream": {"_count": 2}, "feel": {"_count": 1}, "dance": {"_count": 3}, "limp": {"_count": 1}, "shudder": {"_count": 1}, "scuttle": {"_count": 1}, "edge": {"_count": 1}, "try": {"_count": 2}, "wend": {"_count": 1}, "shiver": {"_count": 1}, "jog": {"_count": 1}, "shrink": {"_count": 1}, "hurry": {"_count": 1}, "rise": {"_count": 1}, "read": {"_count": 2}, "dress": {"_count": 2}, "wear": {"_count": 1}, "smoke": {"_count": 1}, "vanish": {"_count": 1}, "spin": {"_count": 1}, "stare": {"_count": 1}, "turn": {"_count": 1}, "shake": {"_count": 1}, "cry": {"_count": 2}, "suspect": {"_count": 1}, "have": {"_count": 1}, "rummage": {"_count": 1}, "remove": {"_count": 1}, "pour": {"_count": 1}, "dig": {"_count": 1}, "writhe": {"_count": 1}, "eat": {"_count": 1}}, "near": {"_count": 1, "midnight": {"_count": 1}}, "lookin": {"_count": 1, "fer": {"_count": 1}}, "emptying": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "throwing": {"_count": 2, "themselves": {"_count": 1}, "Peppermint": {"_count": 1}}, "but": {"_count": 3, "soon": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "talking": {"_count": 2, "about": {"_count": 1}, "loudly": {"_count": 1}}, "the": {"_count": 4, "class": {"_count": 1}, "family": {"_count": 1}, "D": {"_count": 1}, "rumbling": {"_count": 1}}, "licking": {"_count": 1, "his": {"_count": 1}}, "coming": {"_count": 2, "back": {"_count": 1}, "down": {"_count": 1}}, "at": {"_count": 9, "last": {"_count": 1}, "once": {"_count": 1}, "Harrys": {"_count": 1}, "Hogwarts": {"_count": 4}, "the": {"_count": 2}}, "toward": {"_count": 4, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}, "but": {"_count": 1}, "Snape": {"_count": 1}}, "handing": {"_count": 2, "out": {"_count": 1}, "him": {"_count": 1}}, "pulling": {"_count": 1, "them": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "teaching": {"_count": 1, "Harry": {"_count": 1}}, "moaning": {"_count": 1, "that": {"_count": 1}}, "having": {"_count": 1, "nightmares": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "brought": {"_count": 1}}, "again": {"_count": 8, "": {"_count": 3}, "after": {"_count": 1}, "the": {"_count": 1}, "except": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "flicking": {"_count": 1, "frantically": {"_count": 1}}, "telling": {"_count": 2, "people": {"_count": 1}, "them": {"_count": 1}}, "drawing": {"_count": 1, "up": {"_count": 1}}, "studying": {"_count": 2, "a": {"_count": 1}, "Occlumency": {"_count": 1}}, "making": {"_count": 4, "study": {"_count": 1}, "furious": {"_count": 1}, "noises": {"_count": 1}, "suggestions": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 16}, "?": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "banging": {"_count": 2, "his": {"_count": 2}}, "beating": {"_count": 1, "himself": {"_count": 1}}, "scrubbing": {"_count": 1, "the": {"_count": 1}}, "cutting": {"_count": 2, "Harry": {"_count": 1}, "up": {"_count": 1}}, "walking": {"_count": 6, "away": {"_count": 2}, "up": {"_count": 1}, "round": {"_count": 1}, "briskly": {"_count": 1}, "backward": {"_count": 1}}, "next": {"_count": 2, "morning": {"_count": 2}}, "up": {"_count": 8, "the": {"_count": 5}, "another": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "so": {"_count": 1, "so": {"_count": 1}}, "pushing": {"_count": 2, "their": {"_count": 1}, "one": {"_count": 1}}, "his": {"_count": 2, "porridge": {"_count": 1}, "lunch": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "jabbering": {"_count": 1, "and": {"_count": 1}}, "training": {"_count": 2, "yet": {"_count": 1}, "sessions": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 3, "game": {"_count": 2}, "fire": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "on": {"_count": 11, "what": {"_count": 2}, "the": {"_count": 2}, "two": {"_count": 1}, "him": {"_count": 1}, "toast": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "some": {"_count": 1}, "Peakes": {"_count": 1}}, "writhing": {"_count": 1, "as": {"_count": 1}}, "everything": {"_count": 1, "stopped": {"_count": 1}}, "taking": {"_count": 2, "pictures": {"_count": 1}, "the": {"_count": 1}}, "singing": {"_count": 1, "causing": {"_count": 1}}, "stuffing": {"_count": 1, "everything": {"_count": 1}}, "wishing": {"_count": 1, "he": {"_count": 1}}, "howling": {"_count": 1, "scratching": {"_count": 1}}, "whistling": {"_count": 1, "loudly": {"_count": 1}}, "voicing": {"_count": 1, "the": {"_count": 1}}, "skipping": {"_count": 1, "again": {"_count": 1}}, "twitching": {"_count": 1, "And": {"_count": 1}}, "speaking": {"_count": 1, "again": {"_count": 1}}, "too": {"_count": 1, "big": {"_count": 1}}, "using": {"_count": 1, "hushed": {"_count": 1}}, "work": {"_count": 5, "": {"_count": 2}, "the": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}}, "threatening": {"_count": 1, "us": {"_count": 1}}, "turning": {"_count": 2, "the": {"_count": 1}, "up": {"_count": 1}}, "avoiding": {"_count": 1, "the": {"_count": 1}}, "juggling": {"_count": 1, "butterbeer": {"_count": 1}}, "shifting": {"_count": 1, "heaps": {"_count": 1}}, "forward": {"_count": 4, "but": {"_count": 2}, "and": {"_count": 1}, "excitedly": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "opening": {"_count": 2, "his": {"_count": 1}, "again": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "chewing": {"_count": 1, "her": {"_count": 1}}, "off": {"_count": 2, "upstairs": {"_count": 1}, "with": {"_count": 1}}, "skating": {"_count": 1, "across": {"_count": 1}}, "yet": {"_count": 2, "": {"_count": 1}, "sighed": {"_count": 1}}, "cooking": {"_count": 1, "eggs": {"_count": 1}}, "testing": {"_count": 1, "them": {"_count": 1}}, "gabbling": {"_count": 1, "loudly": {"_count": 1}}, "chasing": {"_count": 1, "through": {"_count": 1}}, "shouting": {"_count": 2, "at": {"_count": 2}}, "unwrapping": {"_count": 1, "the": {"_count": 1}}, "jinxing": {"_count": 1, "everything": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 2}, "said": {"_count": 1}, "all": {"_count": 1}, "was": {"_count": 1}}, "killin": {"_count": 1, "each": {"_count": 1}}, "whispering": {"_count": 1, "in": {"_count": 1}}, "yelling": {"_count": 1, "at": {"_count": 1}}, "chucking": {"_count": 1, "chairs": {"_count": 1}}, "pacing": {"_count": 3, "around": {"_count": 1}, "up": {"_count": 2}}, "tugging": {"_count": 1, "it": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "edging": {"_count": 1, "away": {"_count": 1}}, "doing": {"_count": 1, "it": {"_count": 1}}, "school": {"_count": 2, "": {"_count": 2}}, "screeching": {"_count": 1, "animatedly": {"_count": 1}}, "applauding": {"_count": 1, "hard": {"_count": 1}}, "unpacking": {"_count": 1, "the": {"_count": 1}}, "slicing": {"_count": 1, "them": {"_count": 1}}, "ordering": {"_count": 1, "very": {"_count": 1}}, "feeling": {"_count": 1, "a": {"_count": 1}}, "asking": {"_count": 1, "how": {"_count": 1}}, "serving": {"_count": 1, "themselves": {"_count": 1}}, "explaining": {"_count": 1, "about": {"_count": 1}}, "spinning": {"_count": 1, "in": {"_count": 1}}, "dealing": {"_count": 1, "out": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "unloading": {"_count": 1, "dinner": {"_count": 1}}, "requesting": {"_count": 1, "their": {"_count": 1}}, "shooting": {"_count": 1, "their": {"_count": 1}}, "fussing": {"_count": 2, "with": {"_count": 1}, "about": {"_count": 1}}, "breathing": {"_count": 1, "fire": {"_count": 1}}, "sorting": {"_count": 1, "the": {"_count": 1}}, "hurrying": {"_count": 1, "onto": {"_count": 1}}, "The": {"_count": 1, "founders": {"_count": 1}}, "believing": {"_count": 1, "every": {"_count": 1}}, "fighting": {"_count": 1, "among": {"_count": 1}}, "winning": {"_count": 1, "the": {"_count": 1}}, "scribbling": {"_count": 1, "hunched": {"_count": 1}}, "their": {"_count": 1, "lesson": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "passing": {"_count": 1, "up": {"_count": 1}}, "circling": {"_count": 1, "the": {"_count": 1}}, "barking": {"_count": 1, "frantically": {"_count": 1}}, "trekkin": {"_count": 1, "up": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "practicing": {"_count": 1, "Stunning": {"_count": 1}}, "screaming": {"_count": 2, "again": {"_count": 1}, "pleading": {"_count": 1}}, "signing": {"_count": 1, "them": {"_count": 1}}, "badly": {"_count": 1, "enough": {"_count": 1}}, "kissing": {"_count": 1, "over": {"_count": 1}}, "ripping": {"_count": 1, "open": {"_count": 1}}, "being": {"_count": 1, "horrible": {"_count": 1}}, "playing": {"_count": 1, "with": {"_count": 1}}, "going": {"_count": 3, "out": {"_count": 3}}, "sendin": {"_count": 1, "me": {"_count": 1}}, "applying": {"_count": 1, "copious": {"_count": 1}}, "ranting": {"_count": 1, "about": {"_count": 1}}, "snatching": {"_count": 1, "anything": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "selling": {"_count": 1, "MetamorphMedals": {"_count": 1}}, "bullying": {"_count": 1, "the": {"_count": 1}}, "pudding": {"_count": 1, "": {"_count": 1}}, "Snapes": {"_count": 1, "homework": {"_count": 1}}, "peeling": {"_count": 1, "his": {"_count": 1}}, "discussing": {"_count": 1, "what": {"_count": 1}}, "here": {"_count": 1, "myself": {"_count": 1}}, "calling": {"_count": 1, "Lavender": {"_count": 1}}, "snoring": {"_count": 1, "": {"_count": 1}}, "gathering": {"_count": 1, "up": {"_count": 1}}, "rumbling": {"_count": 1, "when": {"_count": 1}}, "Harry": {"_count": 1, "lay": {"_count": 1}}, "keeping": {"_count": 1, "watch": {"_count": 1}}, "there": {"_count": 1, "all": {"_count": 1}}, "wolf": {"_count": 1, "whistling": {"_count": 1}}, "we": {"_count": 1, "want": {"_count": 1}}, "moving": {"_count": 1, "against": {"_count": 1}}, "wearing": {"_count": 1, "glasses": {"_count": 1}}, "vomiting": {"_count": 1, "so": {"_count": 1}}, "its": {"_count": 1, "descent": {"_count": 1}}, "bringing": {"_count": 1, "out": {"_count": 1}}, "punching": {"_count": 1, "every": {"_count": 1}}, "binding": {"_count": 1, "him": {"_count": 1}}, "angrily": {"_count": 1, "Hermione": {"_count": 1}}, "changing": {"_count": 1, "color": {"_count": 1}}, "casting": {"_count": 1, "the": {"_count": 1}}, "muttering": {"_count": 1, "incantations": {"_count": 1}}, "hunting": {"_count": 1, "down": {"_count": 1}}}, "swarmin": {"_count": 1, "around": {"_count": 1, "": {"_count": 1}}}, "flyin": {"_count": 2, "over": {"_count": 1, "Bristol": {"_count": 1}}, "motorbike": {"_count": 1, "he": {"_count": 1}}}, "Bristol": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bent": {"_count": 135, "forward": {"_count": 5, "over": {"_count": 1}, "fumbled": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "took": {"_count": 1}}, "his": {"_count": 9, "great": {"_count": 1}, "face": {"_count": 2}, "knees": {"_count": 3}, "ear": {"_count": 1}, "scaly": {"_count": 1}, "head": {"_count": 1}}, "because": {"_count": 1, "Dudley": {"_count": 1}}, "down": {"_count": 39, "picked": {"_count": 2}, "over": {"_count": 3}, "and": {"_count": 14}, "to": {"_count": 5}, "behind": {"_count": 1}, "just": {"_count": 1}, "a": {"_count": 1}, "quickly": {"_count": 1}, "tapped": {"_count": 1}, "recognized": {"_count": 1}, "ducked": {"_count": 1}, "Harry": {"_count": 1}, "on": {"_count": 1}, "kissed": {"_count": 1}, "slid": {"_count": 1}, "pulled": {"_count": 1}, "scooped": {"_count": 2}, "his": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}, "double": {"_count": 7, "wheezing": {"_count": 1}, "with": {"_count": 1}, "listening": {"_count": 1}, "as": {"_count": 1}, "against": {"_count": 1}, "to": {"_count": 1}, "clutching": {"_count": 1}}, "over": {"_count": 25, "the": {"_count": 8}, "Justin": {"_count": 1}, "his": {"_count": 2}, "it": {"_count": 1}, "her": {"_count": 4}, "trying": {"_count": 1}, "a": {"_count": 2}, "hands": {"_count": 1}, "Krum": {"_count": 2}, "him": {"_count": 2}, "to": {"_count": 1}}, "and": {"_count": 5, "pulled": {"_count": 1}, "eyes": {"_count": 1}, "picked": {"_count": 1}, "peered": {"_count": 1}, "snatched": {"_count": 1}}, "wing": {"_count": 1, "as": {"_count": 1}}, "low": {"_count": 7, "over": {"_count": 5}, "scribbling": {"_count": 1}, "to": {"_count": 1}}, "almost": {"_count": 3, "double": {"_count": 2}, "as": {"_count": 1}}, "closer": {"_count": 4, "and": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 2}}, "to": {"_count": 3, "pick": {"_count": 1}, "correct": {"_count": 1}, "light": {"_count": 1}}, "its": {"_count": 1, "scaly": {"_count": 1}}, "twigs": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "low": {"_count": 2}}, "in": {"_count": 1, "upon": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 1}, "little": {"_count": 1}}, "the": {"_count": 1, "wrong": {"_count": 1}}, "lower": {"_count": 1, "over": {"_count": 1}}, "heads": {"_count": 1, "which": {"_count": 1}}, "as": {"_count": 1, "low": {"_count": 1}}, "bizarrely": {"_count": 1, "to": {"_count": 1}}, "horrible": {"_count": 1, "injuries": {"_count": 1}}, "but": {"_count": 1, "Ron": {"_count": 1}}, "toward": {"_count": 1, "Malfoy": {"_count": 1}}, "tail": {"_count": 1, "twigs": {"_count": 1}}, "swiftly": {"_count": 1, "over": {"_count": 1}}, "back": {"_count": 1, "over": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "card": {"_count": 1, "into": {"_count": 1}}, "coat": {"_count": 1, "hanger": {"_count": 1}}, "upon": {"_count": 1, "Harry": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "at": {"_count": 1}}}, "forward": {"_count": 463, "over": {"_count": 7, "the": {"_count": 3}, "Rons": {"_count": 1}, "a": {"_count": 2}, "it": {"_count": 1}}, "very": {"_count": 1, "nervously": {"_count": 1}}, "eagerly": {"_count": 2, "expecting": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 89, "": {"_count": 2}, "reveal": {"_count": 4}, "was": {"_count": 1}, "because": {"_count": 1}, "learning": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 4}, "getting": {"_count": 3}, "place": {"_count": 1}, "see": {"_count": 5}, "pick": {"_count": 3}, "coming": {"_count": 1}, "his": {"_count": 1}, "look": {"_count": 3}, "admit": {"_count": 5}, "let": {"_count": 2}, "take": {"_count": 4}, "stop": {"_count": 1}, "informing": {"_count": 1}, "eh": {"_count": 1}, "watch": {"_count": 2}, "it": {"_count": 4}, "Moodys": {"_count": 1}, "speak": {"_count": 1}, "seeing": {"_count": 2}, "this": {"_count": 1}, "their": {"_count": 1}, "subdue": {"_count": 1}, "being": {"_count": 1}, "Care": {"_count": 1}, "try": {"_count": 2}, "meeting": {"_count": 1}, "pat": {"_count": 1}, "but": {"_count": 1}, "help": {"_count": 4}, "greet": {"_count": 1}, "listen": {"_count": 1}, "hide": {"_count": 1}, "collect": {"_count": 1}, "were": {"_count": 1}, "returning": {"_count": 1}, "now": {"_count": 1}, "continue": {"_count": 1}, "make": {"_count": 1}, "stroke": {"_count": 1}, "asking": {"_count": 1}, "that": {"_count": 1}, "is": {"_count": 1}, "where": {"_count": 1}, "exchange": {"_count": 1}, "embrace": {"_count": 1}, "escaping": {"_count": 1}}, "on": {"_count": 14, "his": {"_count": 6}, "the": {"_count": 3}, "her": {"_count": 2}, "top": {"_count": 1}, "its": {"_count": 1}, "trembling": {"_count": 1}}, "but": {"_count": 9, "before": {"_count": 1}, "too": {"_count": 1}, "there": {"_count": 1}, "Black": {"_count": 1}, "his": {"_count": 2}, "Ron": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "holding": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "whispers": {"_count": 1, "suddenly": {"_count": 1}}, "slightly": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 66, "snatching": {"_count": 1}, "grasped": {"_count": 2}, "pointed": {"_count": 1}, "shook": {"_count": 1}, "Neville": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 2}, "vanished": {"_count": 1}, "wrenched": {"_count": 1}, "pulled": {"_count": 1}, "spoke": {"_count": 1}, "managed": {"_count": 1}, "sank": {"_count": 1}, "its": {"_count": 1}, "staring": {"_count": 1}, "seized": {"_count": 5}, "began": {"_count": 2}, "walked": {"_count": 1}, "labored": {"_count": 1}, "dragging": {"_count": 1}, "stroke": {"_count": 1}, "squatted": {"_count": 1}, "pitched": {"_count": 1}, "lay": {"_count": 1}, "Lucius": {"_count": 1}, "turned": {"_count": 1}, "tried": {"_count": 1}, "wrenching": {"_count": 1}, "put": {"_count": 1}, "Ron": {"_count": 1}, "Tonks": {"_count": 1}, "Umbridge": {"_count": 1}, "Harry": {"_count": 1}, "disappeared": {"_count": 1}, "peered": {"_count": 1}, "hugging": {"_count": 1}, "knocked": {"_count": 1}, "gazing": {"_count": 1}, "Mr": {"_count": 1}, "bowed": {"_count": 1}, "holding": {"_count": 1}, "sat": {"_count": 1}, "putting": {"_count": 1}, "gave": {"_count": 1}, "helped": {"_count": 1}, "pushed": {"_count": 1}, "embraced": {"_count": 1}, "wrung": {"_count": 1}, "stooped": {"_count": 1}, "passed": {"_count": 1}, "Moodys": {"_count": 1}, "held": {"_count": 1}, "hugged": {"_count": 1}, "started": {"_count": 1}, "took": {"_count": 2}, "backward": {"_count": 1}, "now": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 63, ".": {"_count": 63}}, "two": {"_count": 1, "squares": {"_count": 1}}, "he": {"_count": 5, "braced": {"_count": 1}, "stretched": {"_count": 1}, "seized": {"_count": 1}, "worked": {"_count": 1}, "tipped": {"_count": 1}}, "toward": {"_count": 9, "the": {"_count": 4}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 2}, "Harrys": {"_count": 1}}, "the": {"_count": 4, "fire": {"_count": 1}, "window": {"_count": 1}, "chattering": {"_count": 1}, "moment": {"_count": 1}}, "onto": {"_count": 9, "cold": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 5}, "Harry": {"_count": 1}, "his": {"_count": 1}}, "seized": {"_count": 3, "Harrys": {"_count": 1}, "Pettigrews": {"_count": 1}, "the": {"_count": 1}}, "cautiously": {"_count": 1, "until": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "their": {"_count": 1}, "final": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 6, "head": {"_count": 1}, "wand": {"_count": 1}, "face": {"_count": 2}, "long": {"_count": 1}, "hand": {"_count": 1}}, "as": {"_count": 11, "though": {"_count": 4}, "the": {"_count": 2}, "they": {"_count": 1}, "Percys": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "silently": {"_count": 1}}, "waved": {"_count": 1, "his": {"_count": 1}}, "any": {"_count": 1, "sign": {"_count": 1}}, "around": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "between": {"_count": 2, "the": {"_count": 2}}, "they": {"_count": 1, "stepped": {"_count": 1}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "past": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "looking": {"_count": 5, "determined": {"_count": 1}, "around": {"_count": 1}, "disgusted": {"_count": 1}, "back": {"_count": 1}, "hopeful": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "drawing": {"_count": 1, "its": {"_count": 1}}, "grabbed": {"_count": 1, "hold": {"_count": 1}}, "took": {"_count": 2, "both": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 4, "like": {"_count": 1}, "hit": {"_count": 1}, "glimpsed": {"_count": 1}, "was": {"_count": 1}}, "headfirst": {"_count": 1, "and": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "placing": {"_count": 1, "himself": {"_count": 1}}, "into": {"_count": 17, "the": {"_count": 14}, "a": {"_count": 1}, "one": {"_count": 1}, "that": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "in": {"_count": 11, "a": {"_count": 5}, "his": {"_count": 3}, "turn": {"_count": 1}, "her": {"_count": 1}, "alphabetical": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 2}, "a": {"_count": 1}}, "visibly": {"_count": 1, "trembling": {"_count": 1}}, "tripping": {"_count": 1, "over": {"_count": 1}}, "their": {"_count": 1, "names": {"_count": 1}}, "several": {"_count": 2, "inches": {"_count": 1}, "yards": {"_count": 1}}, "a": {"_count": 10, "few": {"_count": 4}, "pleading": {"_count": 1}, "little": {"_count": 5}}, "fumbled": {"_count": 1, "for": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "arm": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 1}, "behind": {"_count": 1}}, "off": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "so": {"_count": 5, "that": {"_count": 5}}, "breaking": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "so": {"_count": 1}}, "clutching": {"_count": 1, "her": {"_count": 1}}, "she": {"_count": 2, "snatched": {"_count": 1}, "hit": {"_count": 1}}, "most": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "into": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "pulled": {"_count": 1, "open": {"_count": 1}}, "through": {"_count": 4, "what": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}}, "Cho": {"_count": 1, "took": {"_count": 1}}, "class": {"_count": 1, "by": {"_count": 1}}, "least": {"_count": 1, "and": {"_count": 1}}, "covered": {"_count": 1, "by": {"_count": 1}}, "leading": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "facedown": {"_count": 1, "onto": {"_count": 1}}, "Neville": {"_count": 1, "tottering": {"_count": 1}}, "seizing": {"_count": 1, "the": {"_count": 1}}, "imperiously": {"_count": 1, "and": {"_count": 1}}, "quietly": {"_count": 1, "and": {"_count": 1}}, "sidestepped": {"_count": 1, "Romilda": {"_count": 1}}, "turned": {"_count": 1, "gracefully": {"_count": 1}}, "grumpily": {"_count": 1, "to": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "screaming": {"_count": 1, "again": {"_count": 1}}, "glancing": {"_count": 2, "around": {"_count": 1}, "up": {"_count": 1}}, "narrowly": {"_count": 1, "avoiding": {"_count": 1}}, "until": {"_count": 2, "he": {"_count": 2}}, "too": {"_count": 2, "looking": {"_count": 1}, "and": {"_count": 1}}, "conjuring": {"_count": 1, "a": {"_count": 1}}, "those": {"_count": 1, "of": {"_count": 1}}, "like": {"_count": 3, "a": {"_count": 3}}, "propelled": {"_count": 1, "by": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "excitedly": {"_count": 1, "as": {"_count": 1}}, "unhampered": {"_count": 1, "the": {"_count": 1}}, "rather": {"_count": 1, "cautiously": {"_count": 1}}, "Ron": {"_count": 1, "by": {"_count": 1}}, "is": {"_count": 2, "to": {"_count": 1}, "clear": {"_count": 1}}, "pushed": {"_count": 1, "Fred": {"_count": 1}}, "whether": {"_count": 1, "friends": {"_count": 1}}, "was": {"_count": 1, "to": {"_count": 1}}, "revealing": {"_count": 1, "a": {"_count": 1}}, "forcing": {"_count": 1, "his": {"_count": 1}}, "right": {"_count": 1, "beside": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "gathering": {"_count": 1, "speed": {"_count": 1}}}, "Inside": {"_count": 27, "just": {"_count": 1, "visible": {"_count": 1}}, "was": {"_count": 6, "a": {"_count": 5}, "what": {"_count": 1}}, "were": {"_count": 5, "mounds": {"_count": 1}, "four": {"_count": 1}, "about": {"_count": 1}, "a": {"_count": 1}, "half": {"_count": 1}}, "the": {"_count": 6, "castle": {"_count": 2}, "room": {"_count": 1}, "shop": {"_count": 1}, "tent": {"_count": 2}}, "this": {"_count": 1, "too": {"_count": 1}}, "please": {"_count": 1, "said": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "mmy": {"_count": 1, "head": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "my": {"_count": 1, "head": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "visible": {"_count": 66, "was": {"_count": 1, "a": {"_count": 1}}, "sign": {"_count": 1, "": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 1}, "everyone": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 1}}, "because": {"_count": 2, "of": {"_count": 1}, "they": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 3}}, "": {"_count": 6, ".": {"_count": 6}}, "from": {"_count": 4, "the": {"_count": 2}, "this": {"_count": 1}, "their": {"_count": 1}}, "and": {"_count": 1, "Harrys": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "places": {"_count": 1}, "your": {"_count": 1}}, "through": {"_count": 8, "his": {"_count": 1}, "the": {"_count": 4}, "it": {"_count": 2}, "her": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "only": {"_count": 2, "for": {"_count": 1}, "as": {"_count": 1}}, "behind": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "beneath": {"_count": 2, "Madam": {"_count": 1}, "its": {"_count": 1}}, "even": {"_count": 1, "by": {"_count": 1}}, "heads": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "on": {"_count": 2, "a": {"_count": 1}, "top": {"_count": 1}}, "beyond": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "glaring": {"_count": 1, "into": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "between": {"_count": 4, "the": {"_count": 2}, "Aunt": {"_count": 1}, "his": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}, "right": {"_count": 1, "to": {"_count": 1}}, "means": {"_count": 1, "of": {"_count": 1}}, "damage": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}, "almost": {"_count": 1, "directly": {"_count": 1}}, "poking": {"_count": 1, "out": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}}, "fast": {"_count": 245, "asleep": {"_count": 17, "": {"_count": 6}, "with": {"_count": 1}, "but": {"_count": 1}, "Harry": {"_count": 1}, "next": {"_count": 1}, "her": {"_count": 1}, "on": {"_count": 1}, "their": {"_count": 1}, "thin": {"_count": 1}, "when": {"_count": 1}, "in": {"_count": 1}, "curled": {"_count": 1}}, "": {"_count": 31, ".": {"_count": 28}, "?": {"_count": 1}, "!": {"_count": 2}}, "as": {"_count": 45, "possible": {"_count": 2}, "he": {"_count": 23}, "his": {"_count": 2}, "they": {"_count": 9}, "a": {"_count": 3}, "it": {"_count": 1}, "we": {"_count": 1}, "though": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "ever": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "enough": {"_count": 4, "": {"_count": 2}, "said": {"_count": 1}, "he": {"_count": 1}}, "about": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 16, "difficult": {"_count": 2}, "shallow": {"_count": 2}, "the": {"_count": 1}, "furious": {"_count": 1}, "then": {"_count": 1}, "his": {"_count": 1}, "looking": {"_count": 1}, "fight": {"_count": 1}, "her": {"_count": 1}, "curtains": {"_count": 1}, "heat": {"_count": 1}, "so": {"_count": 1}, "terrified": {"_count": 1}, "hard": {"_count": 1}}, "he": {"_count": 15, "turned": {"_count": 1}, "knew": {"_count": 1}, "almost": {"_count": 1}, "cricked": {"_count": 1}, "tried": {"_count": 1}, "snatched": {"_count": 1}, "appeared": {"_count": 1}, "was": {"_count": 1}, "tripped": {"_count": 1}, "felt": {"_count": 1}, "barely": {"_count": 1}, "stood": {"_count": 1}, "had": {"_count": 1}, "caught": {"_count": 1}, "pressed": {"_count": 1}}, "do": {"_count": 1, "Norwegian": {"_count": 1}}, "the": {"_count": 1, "roaring": {"_count": 1}}, "something": {"_count": 1, "told": {"_count": 1}}, "said": {"_count": 2, "You": {"_count": 1}, "Harry": {"_count": 1}}, "leaving": {"_count": 1, "childhood": {"_count": 1}}, "it": {"_count": 9, "hurt": {"_count": 1}, "was": {"_count": 4}, "made": {"_count": 1}, "felt": {"_count": 1}, "actually": {"_count": 1}, "seemed": {"_count": 1}}, "Harry": {"_count": 3, "stood": {"_count": 1}, "heard": {"_count": 1}, "looked": {"_count": 1}}, "weighing": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 1}, "French": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "you": {"_count": 1, "want": {"_count": 1}}, "swerve": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 2, "his": {"_count": 1}, "now": {"_count": 1}}, "forward": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "both": {"_count": 2, "excited": {"_count": 1}, "times": {"_count": 1}}, "kickoff": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 4, "the": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}}, "toward": {"_count": 1, "you": {"_count": 1}}, "backward": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 1, "post": {"_count": 1}}, "from": {"_count": 1, "excitement": {"_count": 1}}, "that": {"_count": 21, "they": {"_count": 3}, "Bagman": {"_count": 1}, "it": {"_count": 4}, "Harry": {"_count": 6}, "he": {"_count": 4}, "her": {"_count": 1}, "the": {"_count": 2}}, "completely": {"_count": 1, "unperturbed": {"_count": 1}}, "his": {"_count": 4, "brow": {"_count": 1}, "flipperlike": {"_count": 1}, "eyes": {"_count": 1}, "scar": {"_count": 1}}, "becoming": {"_count": 1, "a": {"_count": 1}}, "PEEVES": {"_count": 1, "": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}, "Cedric": {"_count": 1, "was": {"_count": 1}}, "breathing": {"_count": 2, "from": {"_count": 1}, "her": {"_count": 1}}, "wheezy": {"_count": 1, "breathing": {"_count": 1}}, "fighting": {"_count": 1, "to": {"_count": 1}}, "after": {"_count": 1, "its": {"_count": 1}}, "Mistress": {"_count": 1, "would": {"_count": 1}}, "walk": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 1, "growing": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "by": {"_count": 1}}, "feverish": {"_count": 1, "way": {"_count": 1}}, "with": {"_count": 4, "excitement": {"_count": 2}, "anger": {"_count": 1}, "one": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "indeed": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Snitch": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "Harry": {"_count": 1}}, "owl": {"_count": 1, "we": {"_count": 1}}, "to": {"_count": 2, "give": {"_count": 1}, "get": {"_count": 1}}, "The": {"_count": 1, "thestral": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "growing": {"_count": 1, "balder": {"_count": 1}}, "considering": {"_count": 1, "that": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "turned": {"_count": 1, "purple": {"_count": 1}}, "blurring": {"_count": 1, "Harrys": {"_count": 1}}, "or": {"_count": 1, "Ill": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "Apparently": {"_count": 1, "Moaning": {"_count": 1}}, "Harrys": {"_count": 1, "heart": {"_count": 1}}, "into": {"_count": 1, "both": {"_count": 1}}, "Your": {"_count": 1, "Holeyness": {"_count": 1}}, "Actually": {"_count": 1, "Harry": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "If": {"_count": 1, "Voldemort": {"_count": 1}}, "never": {"_count": 1, "had": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "Then": {"_count": 1, "his": {"_count": 1}}}, "Under": {"_count": 13, "a": {"_count": 2, "tuft": {"_count": 1}, "large": {"_count": 1}}, "his": {"_count": 1, "arm": {"_count": 1}}, "the": {"_count": 5, "lake": {"_count": 1}, "pretext": {"_count": 1}, "influence": {"_count": 1}, "terms": {"_count": 1}, "mistletoe": {"_count": 1}}, "their": {"_count": 1, "influence": {"_count": 1}}, "that": {"_count": 1, "cloak": {"_count": 1}}, "cover": {"_count": 2, "of": {"_count": 2}}, "where": {"_count": 1, "the": {"_count": 1}}}, "tuft": {"_count": 4, "of": {"_count": 3, "jetblack": {"_count": 1}, "grass": {"_count": 1}, "bright": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "jetblack": {"_count": 8, "hair": {"_count": 4, "over": {"_count": 1}, "that": {"_count": 1}, "however": {"_count": 1}, "pulled": {"_count": 1}}, "tapers": {"_count": 1, "all": {"_count": 1}}, "dog": {"_count": 1, "": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}}, "forehead": {"_count": 128, "they": {"_count": 1, "could": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 44, ".": {"_count": 42}, "?": {"_count": 2}}, "with": {"_count": 8, "enough": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 3}, "Advanced": {"_count": 1}, "the": {"_count": 1}}, "which": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "was": {"_count": 4, "a": {"_count": 1}, "subsiding": {"_count": 1}, "still": {"_count": 1}, "prickling": {"_count": 1}}, "on": {"_count": 4, "his": {"_count": 3}, "the": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 1}, "nerves": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 14, "Ron": {"_count": 1}, "their": {"_count": 1}, "Voldemort": {"_count": 1}, "bounced": {"_count": 1}, "he": {"_count": 2}, "rubbed": {"_count": 1}, "the": {"_count": 1}, "wiping": {"_count": 1}, "thinking": {"_count": 1}, "closed": {"_count": 1}, "said": {"_count": 1}, "startling": {"_count": 1}, "streaked": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "furrowed": {"_count": 1, "": {"_count": 1}}, "clearly": {"_count": 1, "visible": {"_count": 1}}, "where": {"_count": 2, "Voldemorts": {"_count": 1}, "he": {"_count": 1}}, "wrinkled": {"_count": 1, "with": {"_count": 1}}, "an": {"_count": 1, "his": {"_count": 1}}, "reddening": {"_count": 1, "over": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 4, "it": {"_count": 1}, "they": {"_count": 1}, "seemed": {"_count": 1}, "never": {"_count": 1}}, "everywhere": {"_count": 1, "I": {"_count": 1}}, "seared": {"_count": 3, "with": {"_count": 3}}, "relic": {"_count": 1, "of": {"_count": 1}}, "has": {"_count": 1, "not": {"_count": 1}}, "prickled": {"_count": 2, "uncomfortably": {"_count": 1}, "but": {"_count": 1}}, "to": {"_count": 1, "feel": {"_count": 1}}, "or": {"_count": 1, "well": {"_count": 1}}, "burned": {"_count": 3, "so": {"_count": 1}, "like": {"_count": 1}, "savagely": {"_count": 1}}, "pressed": {"_count": 1, "against": {"_count": 1}}, "had": {"_count": 1, "seared": {"_count": 1}}, "hurt": {"_count": 1, "terribly": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "throbbing": {"_count": 2, "horribly": {"_count": 1}, "": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "felt": {"_count": 1, "as": {"_count": 1}}, "what": {"_count": 1, "it": {"_count": 1}}, "smirking": {"_count": 1, "as": {"_count": 1}}, "gleamed": {"_count": 1, "with": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "shadowed": {"_count": 1, "his": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "pierced": {"_count": 1, "him": {"_count": 1}}}, "curiously": {"_count": 49, "shaped": {"_count": 1, "cut": {"_count": 1}}, "and": {"_count": 1, "read": {"_count": 1}}, "at": {"_count": 10, "Harry": {"_count": 3}, "the": {"_count": 4}, "Ron": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "out": {"_count": 1, "of": {"_count": 1}}, "around": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 2, "Ron": {"_count": 1}, "between": {"_count": 1}}, "after": {"_count": 1, "Winky": {"_count": 1}}, "rigid": {"_count": 1, "curls": {"_count": 1}}, "flat": {"_count": 1, "like": {"_count": 1}}, "weak": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "stared": {"_count": 1}}, "to": {"_count": 1, "watch": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "over": {"_count": 1, "Riddles": {"_count": 1}}, "mirrored": {"_count": 1, "on": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "blank": {"_count": 1, "Snape": {"_count": 1}}}, "shaped": {"_count": 21, "cut": {"_count": 1, "like": {"_count": 1}}, "like": {"_count": 11, "a": {"_count": 7}, "toads": {"_count": 1}, "serpents": {"_count": 1}, "Dobbys": {"_count": 1}, "an": {"_count": 1}}, "packages": {"_count": 1, "with": {"_count": 1}}, "bottles": {"_count": 1, "standing": {"_count": 1}}, "hillocks": {"_count": 1, "had": {"_count": 1}}, "nose": {"_count": 1, "the": {"_count": 1}}, "log": {"_count": 1, "or": {"_count": 1}}, "balloon": {"_count": 1, "": {"_count": 1}}, "bruise": {"_count": 1, "on": {"_count": 1}}, "hourglasses": {"_count": 1, "": {"_count": 1}}, "clouds": {"_count": 1, "and": {"_count": 1}}}, "cut": {"_count": 114, "like": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 6, "hair": {"_count": 1}, "way": {"_count": 1}, "pocket": {"_count": 1}, "chicken": {"_count": 1}, "cheek": {"_count": 1}, "robes": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "up": {"_count": 7, "his": {"_count": 2}, "Malfoys": {"_count": 1}, "these": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "wooden": {"_count": 1, "flute": {"_count": 1}}, "in": {"_count": 8, "": {"_count": 3}, "Professor": {"_count": 2}, "Im": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "had": {"_count": 2, "turned": {"_count": 1}, "healed": {"_count": 1}}, "him": {"_count": 4, "off": {"_count": 3}, "free": {"_count": 1}}, "off": {"_count": 8, "from": {"_count": 2}, "his": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "instantly": {"_count": 1}, "in": {"_count": 1}, "by": {"_count": 1}}, "it": {"_count": 3, "out": {"_count": 1}, "off": {"_count": 2}}, "lip": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "short": {"_count": 2, "however": {"_count": 1}, "as": {"_count": 1}}, "open": {"_count": 1, "makes": {"_count": 1}}, "roots": {"_count": 1, "across": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "air": {"_count": 1}, "skin": {"_count": 1}}, "her": {"_count": 1, "across": {"_count": 1}}, "into": {"_count": 9, "them": {"_count": 1}, "his": {"_count": 5}, "the": {"_count": 3}}, "youve": {"_count": 1, "got": {"_count": 1}}, "a": {"_count": 1, "wide": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "said": {"_count": 1, "Well": {"_count": 1}}, "out": {"_count": 3, "": {"_count": 1}, "of": {"_count": 2}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "across": {"_count": 9, "one": {"_count": 1}, "him": {"_count": 5}, "her": {"_count": 1}, "Luna": {"_count": 1}, "Ron": {"_count": 1}}, "some": {"_count": 1, "more": {"_count": 1}}, "Cho": {"_count": 1, "free": {"_count": 1}}, "Hermione": {"_count": 2, "free": {"_count": 2}}, "so": {"_count": 1, "that": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "them": {"_count": 1}}, "would": {"_count": 1, "remain": {"_count": 1}}, "its": {"_count": 1, "nothing": {"_count": 1}}, "dug": {"_count": 1, "deeper": {"_count": 1}}, "hand": {"_count": 1, "as": {"_count": 1}}, "deepened": {"_count": 1, "with": {"_count": 1}}, "people": {"_count": 1, "up": {"_count": 1}}, "himself": {"_count": 2, "off": {"_count": 1}, "seeing": {"_count": 1}}, "right": {"_count": 1, "across": {"_count": 1}}, "deals": {"_count": 1, "with": {"_count": 1}}, "suit": {"_count": 1, "of": {"_count": 1}}, "thumb": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "under": {"_count": 1, "one": {"_count": 1}}, "away": {"_count": 1, "the": {"_count": 1}}, "finger": {"_count": 1, "slipping": {"_count": 1}}, "or": {"_count": 1, "bottles": {"_count": 1}}, "tightly": {"_count": 1, "into": {"_count": 1}}, "around": {"_count": 1, "Harrys": {"_count": 1}}, "firewood": {"_count": 1, "ang": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "Bellatrix": {"_count": 1, "had": {"_count": 1}}, "hair": {"_count": 1, "and": {"_count": 1}}}, "bolt": {"_count": 20, "of": {"_count": 5, "lightning": {"_count": 4}, "light": {"_count": 1}}, "upright": {"_count": 12, "staring": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "Peeves": {"_count": 1}, "listening": {"_count": 1}, "in": {"_count": 2}, "his": {"_count": 2}, "looking": {"_count": 1}, "he": {"_count": 1}}, "something": {"_count": 1, "down": {"_count": 1}}, "was": {"_count": 1, "drawn": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}}, "lightning": {"_count": 31, "": {"_count": 5, ".": {"_count": 5}}, "scar": {"_count": 15, "on": {"_count": 8}, "": {"_count": 4}, "and": {"_count": 2}, "by": {"_count": 1}}, "came": {"_count": 1, "the": {"_count": 1}}, "illuminated": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "Grim": {"_count": 1}}, "was": {"_count": 1, "burning": {"_count": 1}}, "flashed": {"_count": 1, "across": {"_count": 1}}, "that": {"_count": 1, "flashed": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "thrown": {"_count": 1}}, "bolt": {"_count": 1, "must": {"_count": 1}}, "rods": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "Snape": {"_count": 1}}}, "Is": {"_count": 174, "that": {"_count": 46, "where": {"_count": 2}, "all": {"_count": 4}, "you": {"_count": 6}, "true": {"_count": 1}, "your": {"_count": 3}, "the": {"_count": 2}, "clear": {"_count": 1}, "supposed": {"_count": 1}, "a": {"_count": 4}, "right": {"_count": 2}, "aftershave": {"_count": 1}, "what": {"_count": 4}, "was": {"_count": 1}, "picture": {"_count": 1}, "likely": {"_count": 1}, "normal": {"_count": 2}, "correct": {"_count": 1}, "Kreacher": {"_count": 1}, "why": {"_count": 3}, "them": {"_count": 1}, "like": {"_count": 1}, "blood": {"_count": 1}, "it": {"_count": 1}, "possible": {"_count": 1}}, "he": {"_count": 17, "always": {"_count": 1}, "really": {"_count": 2}, "a": {"_count": 1}, "ill": {"_count": 1}, "mad": {"_count": 2}, "locked": {"_count": 1}, "okay": {"_count": 1}, "here": {"_count": 1}, "any": {"_count": 1}, "safe": {"_count": 1}, "": {"_count": 2}, "talking": {"_count": 1}, "dead": {"_count": 1}, "in": {"_count": 1}}, "it": {"_count": 42, "true": {"_count": 9}, "dead": {"_count": 1}, "easy": {"_count": 1}, "Hagrid": {"_count": 1}, "something": {"_count": 1}, "awful": {"_count": 1}, "okay": {"_count": 2}, "time": {"_count": 1}, "called": {"_count": 1}, "to": {"_count": 1}, "Harry": {"_count": 2}, "a": {"_count": 1}, "Cho": {"_count": 1}, "in": {"_count": 1}, "Dad": {"_count": 1}, "that": {"_count": 1}, "very": {"_count": 1}, "those": {"_count": 1}, "just": {"_count": 1}, "definite": {"_count": 1}, "already": {"_count": 1}, "the": {"_count": 2}, "Potter": {"_count": 1}, "valuable": {"_count": 1}, "": {"_count": 3}, "possible": {"_count": 2}, "my": {"_count": 1}, "love": {"_count": 1}}, "this": {"_count": 17, "your": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 3}, "it": {"_count": 2}, "supposed": {"_count": 1}, "true": {"_count": 1}, "what": {"_count": 1}, "just": {"_count": 1}, "necklace": {"_count": 1}, "Siriuss": {"_count": 1}, "still": {"_count": 1}, "the": {"_count": 1}, "remorse": {"_count": 1}, "real": {"_count": 1}}, "Lockhart": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 10, "anything": {"_count": 3}, "a": {"_count": 3}, "any": {"_count": 2}, "is": {"_count": 1}, "such": {"_count": 1}}, "Coming": {"_count": 1, "": {"_count": 1}}, "Longbottom": {"_count": 1, "telling": {"_count": 1}}, "your": {"_count": 1, "grandmother": {"_count": 1}}, "a": {"_count": 1, "schoolboy": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "she": {"_count": 5, "alive": {"_count": 1}, "urt": {"_count": 1}, "training": {"_count": 1}, "coming": {"_count": 1}, "strict": {"_count": 1}}, "his": {"_count": 2, "ickle": {"_count": 1}, "mind": {"_count": 1}}, "anyone": {"_count": 1, "going": {"_count": 1}}, "Bill": {"_count": 1, "here": {"_count": 1}}, "what": {"_count": 1, "true": {"_count": 1}}, "Hedwig": {"_count": 1, "okay": {"_count": 1}}, "Our": {"_count": 10, "King": {"_count": 10}}, "Arthur": {"_count": 1, "seriously": {"_count": 1}}, "Mum": {"_count": 1, "here": {"_count": 1}}, "Firenze": {"_count": 1, "staying": {"_count": 1}}, "Serious": {"_count": 1, "Black": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Tonks": {"_count": 1, "going": {"_count": 1}}, "Hermione": {"_count": 2, "really": {"_count": 1}, "Granger": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "my": {"_count": 1, "return": {"_count": 1}}, "everything": {"_count": 1, "as": {"_count": 1}}, "everyone": {"_count": 2, "okay": {"_count": 2}}, "Might": {"_count": 1, "all": {"_count": 1}}, "Draco": {"_count": 1, "alive": {"_count": 1}}}, "whispered": {"_count": 448, "Professor": {"_count": 6, "McGonagall": {"_count": 4}, "Trelawney": {"_count": 2}}, "patting": {"_count": 1, "Hagrid": {"_count": 1}}, "something": {"_count": 7, "that": {"_count": 1}, "in": {"_count": 3}, "to": {"_count": 1}, "undoubtedly": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 8, "old": {"_count": 1}, "second": {"_count": 1}, "figure": {"_count": 1}, "moment": {"_count": 1}, "Fat": {"_count": 1}, "voice": {"_count": 1}, "little": {"_count": 1}, "girl": {"_count": 1}}, "to": {"_count": 28, "Harry": {"_count": 12}, "the": {"_count": 3}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 6}, "one": {"_count": 1}, "his": {"_count": 2}, "Lavender": {"_count": 1}, "Greyback": {"_count": 1}, "Ron": {"_count": 1}}, "and": {"_count": 10, "pointed": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 3}, "then": {"_count": 2}, "he": {"_count": 2}, "Ron": {"_count": 1}}, "": {"_count": 109, ".": {"_count": 109}}, "Alohomora": {"_count": 1, "The": {"_count": 1}}, "a": {"_count": 3, "few": {"_count": 1}, "witch": {"_count": 1}, "mortified": {"_count": 1}}, "Ill": {"_count": 1, "come": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "dramatically": {"_count": 1, "is": {"_count": 1}}, "although": {"_count": 1, "that": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "Hermione": {"_count": 40, "": {"_count": 20}, "at": {"_count": 1}, "taking": {"_count": 1}, "her": {"_count": 2}, "who": {"_count": 1}, "horrified": {"_count": 1}, "desperately": {"_count": 1}, "gleefully": {"_count": 1}, "raising": {"_count": 1}, "as": {"_count": 2}, "squinting": {"_count": 1}, "more": {"_count": 1}, "terror": {"_count": 1}, "clearly": {"_count": 1}, "grabbing": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}, "tears": {"_count": 1}, "pulling": {"_count": 1}}, "urgently": {"_count": 7, "": {"_count": 3}, "Hes": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}, "in": {"_count": 1}}, "in": {"_count": 7, "Harrys": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "his": {"_count": 2}, "Hermiones": {"_count": 1}}, "Ron": {"_count": 14, "": {"_count": 7}, "as": {"_count": 2}, "fearfully": {"_count": 1}, "reeling": {"_count": 1}, "who": {"_count": 1}, "but": {"_count": 1}, "tugging": {"_count": 1}}, "as": {"_count": 5, "they": {"_count": 2}, "Moody": {"_count": 1}, "he": {"_count": 1}, "Umbridge": {"_count": 1}}, "I": {"_count": 5, "didnt": {"_count": 1}, "shall": {"_count": 1}, "think": {"_count": 1}, "dont": {"_count": 1}, "am": {"_count": 1}}, "frantically": {"_count": 3, "please": {"_count": 1}, "": {"_count": 1}, "dancing": {"_count": 1}}, "Dobby": {"_count": 1, "suddenly": {"_count": 1}}, "George": {"_count": 2, "": {"_count": 1}, "wiping": {"_count": 1}}, "back": {"_count": 7, "as": {"_count": 1}, "watching": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 2}, "his": {"_count": 1}, "Muffliato": {"_count": 1}}, "Look": {"_count": 1, "out": {"_count": 1}}, "miserably": {"_count": 2, "": {"_count": 2}}, "Dumbledore": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Madam": {"_count": 4, "Pomfrey": {"_count": 1}, "Rosmerta": {"_count": 3}}, "ecstatically": {"_count": 1, "as": {"_count": 1}}, "shifting": {"_count": 1, "his": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "unzipping": {"_count": 1, "the": {"_count": 1}}, "shoving": {"_count": 1, "Harrys": {"_count": 1}}, "But": {"_count": 1, "what": {"_count": 1}}, "Oooh": {"_count": 1, "no": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}, "tapping": {"_count": 1, "the": {"_count": 1}}, "Mobiliarbus": {"_count": 1, "The": {"_count": 1}}, "orders": {"_count": 1, "and": {"_count": 1}}, "lowering": {"_count": 1, "her": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "your": {"_count": 1}}, "uncertainly": {"_count": 1, "": {"_count": 1}}, "together": {"_count": 1, "and": {"_count": 1}}, "Pettigrew": {"_count": 1, "shuffling": {"_count": 1}}, "expecto": {"_count": 1, "expecto": {"_count": 1}}, "his": {"_count": 5, "eyes": {"_count": 3}, "gleaming": {"_count": 1}, "fathers": {"_count": 1}}, "lifting": {"_count": 2, "the": {"_count": 2}}, "that": {"_count": 1, "were": {"_count": 1}}, "Harry": {"_count": 9, "looking": {"_count": 1}, "shocked": {"_count": 1}, "": {"_count": 4}, "convinced": {"_count": 1}, "his": {"_count": 1}, "darting": {"_count": 1}}, "moving": {"_count": 2, "away": {"_count": 1}, "toward": {"_count": 1}}, "He": {"_count": 2, "is": {"_count": 1}, "said": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 2, "pressing": {"_count": 1}, "": {"_count": 1}}, "looking": {"_count": 2, "alarmed": {"_count": 1}, "up": {"_count": 1}}, "bristling": {"_count": 1, "at": {"_count": 1}}, "two": {"_count": 1, "seats": {"_count": 1}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "Thanks": {"_count": 1, "": {"_count": 1}}, "opening": {"_count": 1, "the": {"_count": 1}}, "Moody": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "malevolently": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "installments": {"_count": 1, "for": {"_count": 1}}, "fifteen": {"_count": 1, "minutes": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "Crouch": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "to": {"_count": 1}}, "Voldemort": {"_count": 1, "they": {"_count": 1}}, "halting": {"_count": 1, "before": {"_count": 1}}, "words": {"_count": 1, "of": {"_count": 1}}, "Winky": {"_count": 1, "tears": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "Fudge": {"_count": 1, "still": {"_count": 1}}, "behind": {"_count": 1, "their": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 2}}, "still": {"_count": 1, "trembling": {"_count": 1}}, "pulling": {"_count": 1, "him": {"_count": 1}}, "distractedly": {"_count": 1, "": {"_count": 1}}, "meeting": {"_count": 1, "them": {"_count": 1}}, "keeping": {"_count": 1, "a": {"_count": 1}}, "Fred": {"_count": 1, "who": {"_count": 1}}, "hes": {"_count": 1, "not": {"_count": 1}}, "indicating": {"_count": 1, "the": {"_count": 1}}, "conversations": {"_count": 1, "": {"_count": 1}}, "conversation": {"_count": 3, "Mrs": {"_count": 1}, "when": {"_count": 1}, "as": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "quietly": {"_count": 1}}, "bending": {"_count": 2, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "imploringly": {"_count": 1, "to": {"_count": 1}}, "discussion": {"_count": 1, "about": {"_count": 1}}, "Why": {"_count": 1, "doesnt": {"_count": 1}}, "Mrs": {"_count": 6, "Weasley": {"_count": 6}}, "Ginny": {"_count": 3, "": {"_count": 1}, "jumping": {"_count": 1}, "in": {"_count": 1}}, "Snape": {"_count": 3, "": {"_count": 2}, "with": {"_count": 1}}, "was": {"_count": 1, "called": {"_count": 1}}, "stamping": {"_count": 1, "again": {"_count": 1}}, "admonitions": {"_count": 1, "that": {"_count": 1}}, "can": {"_count": 1, "yeh": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "Good": {"_count": 1, "one": {"_count": 1}}, "hoarsely": {"_count": 1, "peering": {"_count": 1}}, "Bellatrix": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 2, "who": {"_count": 1}, "happily": {"_count": 1}}, "hugging": {"_count": 1, "him": {"_count": 1}}, "tears": {"_count": 1, "sliding": {"_count": 1}}, "Narcissa": {"_count": 1, "Snapes": {"_count": 1}}, "come": {"_count": 1, "downstairs": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "No": {"_count": 1, "dont": {"_count": 1}}, "Did": {"_count": 1, "you": {"_count": 1}}, "Morfin": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "Seamus": {"_count": 1, "and": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "argument": {"_count": 1, "": {"_count": 1}}, "Hepzibah": {"_count": 1, "and": {"_count": 1}}, "plans": {"_count": 1, "for": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "difficulty": {"_count": 1}}, "Tonks": {"_count": 2, "": {"_count": 2}}, "Shh": {"_count": 1, "": {"_count": 1}}, "McGonagall": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Malfoy": {"_count": 2, "": {"_count": 2}}, "waving": {"_count": 1, "her": {"_count": 1}}, "after": {"_count": 1, "Dumbledore": {"_count": 1}}, "Doge": {"_count": 2, "miserably": {"_count": 1}, "": {"_count": 1}}, "pointing": {"_count": 2, "toward": {"_count": 1}, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Lumos": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 3, "Hermiones": {"_count": 1}, "the": {"_count": 2}}, "gazing": {"_count": 1, "into": {"_count": 1}}, "Couldnt": {"_count": 1, "you": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "Xenophilius": {"_count": 1, "": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "Greyback": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "could": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "Ollivander": {"_count": 3, "": {"_count": 3}}, "Griphook": {"_count": 2, "in": {"_count": 2}}, "for": {"_count": 1, "the": {"_count": 1}}, "Levicorpus": {"_count": 1, "": {"_count": 1}}, "Expecto": {"_count": 1, "Patronum": {"_count": 1}}, "watching": {"_count": 1, "Filch": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "Lily": {"_count": 2, "": {"_count": 1}, "ecstatically": {"_count": 1}}, "Petunia": {"_count": 1, "that": {"_count": 1}}}, "scar": {"_count": 276, "forever": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 39, "his": {"_count": 23}, "Harrys": {"_count": 12}, "your": {"_count": 1}, "Goyle": {"_count": 1}, "fire": {"_count": 2}}, "": {"_count": 46, ".": {"_count": 35}, "?": {"_count": 7}, "!": {"_count": 4}}, "were": {"_count": 2, "on": {"_count": 1}, "famous": {"_count": 1}}, "that": {"_count": 3, "stood": {"_count": 1}, "made": {"_count": 1}, "has": {"_count": 1}}, "keeps": {"_count": 1, "hurting": {"_count": 1}}, "his": {"_count": 3, "head": {"_count": 1}, "eyes": {"_count": 1}, "sudden": {"_count": 1}}, "was": {"_count": 31, "almost": {"_count": 1}, "the": {"_count": 2}, "still": {"_count": 10}, "hurting": {"_count": 3}, "prickling": {"_count": 1}, "aching": {"_count": 1}, "throbbing": {"_count": 1}, "hidden": {"_count": 1}, "on": {"_count": 1}, "giving": {"_count": 1}, "burning": {"_count": 2}, "building": {"_count": 1}, "reaching": {"_count": 1}, "becoming": {"_count": 1}, "starting": {"_count": 1}, "exquisitely": {"_count": 1}, "bursting": {"_count": 1}, "blinding": {"_count": 1}}, "no": {"_count": 1, "visible": {"_count": 1}}, "and": {"_count": 5, "somehow": {"_count": 1}, "his": {"_count": 1}, "started": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 1, "across": {"_count": 1}}, "while": {"_count": 1, "Lord": {"_count": 1}}, "shaped": {"_count": 1, "like": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 4}}, "of": {"_count": 1, "his": {"_count": 1}}, "had": {"_count": 9, "hurt": {"_count": 3}, "prickled": {"_count": 1}, "burned": {"_count": 1}, "begun": {"_count": 2}, "been": {"_count": 1}, "not": {"_count": 1}}, "hurting": {"_count": 10, "him": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 2}, "I": {"_count": 1}, "and": {"_count": 3}, "Voldemort": {"_count": 1}, "had": {"_count": 1}}, "hurt": {"_count": 13, "": {"_count": 4}, "this": {"_count": 1}, "again": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 2}, "when": {"_count": 1}, "downstairs": {"_count": 1}}, "felt": {"_count": 2, "perfectly": {"_count": 1}, "as": {"_count": 1}}, "burning": {"_count": 2, "": {"_count": 1}, "almost": {"_count": 1}}, "kept": {"_count": 2, "hurting": {"_count": 1}, "prickling": {"_count": 1}}, "hurts": {"_count": 2, "and": {"_count": 1}, "both": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 2, "the": {"_count": 1}, "still": {"_count": 1}}, "twinged": {"_count": 1, "": {"_count": 1}}, "souvenir": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 3, "if": {"_count": 1}, "more": {"_count": 1}, "wide": {"_count": 1}}, "exploded": {"_count": 1, "with": {"_count": 1}}, "reached": {"_count": 1, "such": {"_count": 1}}, "seared": {"_count": 8, "with": {"_count": 2}, "again": {"_count": 2}, "and": {"_count": 2}, "more": {"_count": 2}}, "began": {"_count": 3, "to": {"_count": 2}, "prickling": {"_count": 1}}, "burned": {"_count": 7, "dully": {"_count": 1}, "whitehot": {"_count": 1}, "in": {"_count": 1}, "worse": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "savagely": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}, "wasnt": {"_count": 1, "hurting": {"_count": 1}}, "upon": {"_count": 2, "his": {"_count": 1}, "your": {"_count": 1}}, "acting": {"_count": 1, "as": {"_count": 1}}, "sometimes": {"_count": 1, "eh": {"_count": 1}}, "it": {"_count": 3, "must": {"_count": 1}, "bore": {"_count": 1}, "wasnt": {"_count": 1}}, "prickle": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "prickling": {"_count": 4, "to": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 2}}, "feeling": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 1, "hurt": {"_count": 1}}, "would": {"_count": 2, "stop": {"_count": 1}, "burn": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 2}}, "still": {"_count": 5, "throbbing": {"_count": 1}, "prickling": {"_count": 3}, "tingling": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "hardly": {"_count": 1, "ever": {"_count": 1}}, "searing": {"_count": 1, "with": {"_count": 1}}, "subsided": {"_count": 1, "and": {"_count": 1}}, "gave": {"_count": 4, "another": {"_count": 4}}, "sear": {"_count": 1, "as": {"_count": 1}}, "burst": {"_count": 2, "open": {"_count": 2}}, "always": {"_count": 1, "hurt": {"_count": 1}}, "oh": {"_count": 1, "yes": {"_count": 1}}, "he": {"_count": 3, "did": {"_count": 1}, "too": {"_count": 1}, "could": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "forced": {"_count": 1, "his": {"_count": 1}}, "pulsed": {"_count": 1, "like": {"_count": 1}}, "continued": {"_count": 2, "to": {"_count": 2}}, "peaked": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "prickled": {"_count": 4, "painfully": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 1}}, "The": {"_count": 1, "snake": {"_count": 1}}, "by": {"_count": 1, "listening": {"_count": 1}}, "to": {"_count": 1, "overcome": {"_count": 1}}, "threatened": {"_count": 1, "to": {"_count": 1}}, "stretched": {"_count": 1, "tight": {"_count": 1}}, "pulse": {"_count": 1, "angrily": {"_count": 1}}, "absently": {"_count": 1, "": {"_count": 1}}, "throbbed": {"_count": 3, "but": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "became": {"_count": 1, "more": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "scorched": {"_count": 1, "again": {"_count": 1}}}, "forever": {"_count": 48, "": {"_count": 27, ".": {"_count": 20}, "?": {"_count": 5}, "!": {"_count": 2}}, "but": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "deaths": {"_count": 1, "better": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "far": {"_count": 1}}, "or": {"_count": 1, "hed": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "asking": {"_count": 1, "Dumbledore": {"_count": 1}}, "to": {"_count": 1, "return": {"_count": 1}}, "like": {"_count": 1, "one": {"_count": 1}}, "than": {"_count": 1, "stay": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "irrevocably": {"_count": 1}, "that": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "assumed": {"_count": 1, "the": {"_count": 1}}, "pretty": {"_count": 1, "Impedimenta": {"_count": 1}}, "the": {"_count": 1, "illusion": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "until": {"_count": 1, "you": {"_count": 1}}}, "Couldnt": {"_count": 24, "you": {"_count": 5, "do": {"_count": 1}, "see": {"_count": 3}, "tell": {"_count": 1}}, "make": {"_count": 1, "us": {"_count": 1}}, "hold": {"_count": 1, "these": {"_count": 1}}, "have": {"_count": 4, "put": {"_count": 1}, "a": {"_count": 1}, "been": {"_count": 2}}, "see": {"_count": 1, "a": {"_count": 1}}, "move": {"_count": 1, "either": {"_count": 1}}, "do": {"_count": 1, "me": {"_count": 1}}, "someone": {"_count": 1, "have": {"_count": 1}}, "remember": {"_count": 1, "all": {"_count": 1}}, "tell": {"_count": 1, "you": {"_count": 1}}, "Percy": {"_count": 1, "do": {"_count": 1}}, "resist": {"_count": 1, "": {"_count": 1}}, "get": {"_count": 1, "past": {"_count": 1}}, "believe": {"_count": 1, "it": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "we": {"_count": 1, "make": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Scars": {"_count": 1, "can": {"_count": 1, "come": {"_count": 1}}}, "handy": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "wherever": {"_count": 1, "you": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "wood": {"_count": 1, "theyre": {"_count": 1}}, "penknife": {"_count": 1, "with": {"_count": 1}}, "hints": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}}, "myself": {"_count": 139, "above": {"_count": 1, "my": {"_count": 1}}, "on": {"_count": 3, "Dumbledores": {"_count": 1}, "a": {"_count": 1}, "its": {"_count": 1}}, "thanks": {"_count": 1, "he": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "": {"_count": 34, "?": {"_count": 3}, ".": {"_count": 26}, "!": {"_count": 5}}, "holding": {"_count": 2, "a": {"_count": 2}}, "against": {"_count": 2, "what": {"_count": 1}, "mortal": {"_count": 1}}, "shaking": {"_count": 1, "hands": {"_count": 1}}, "out": {"_count": 2, "because": {"_count": 1}, "in": {"_count": 1}}, "for": {"_count": 1, "giving": {"_count": 1}}, "have": {"_count": 1, "done": {"_count": 1}}, "I": {"_count": 3, "know": {"_count": 1}, "could": {"_count": 1}, "go": {"_count": 1}}, "Harry": {"_count": 2, "Ive": {"_count": 1}, "Potter": {"_count": 1}}, "a": {"_count": 1, "new": {"_count": 1}}, "fifty": {"_count": 1, "years": {"_count": 1}}, "an": {"_count": 1, "early": {"_count": 1}}, "said": {"_count": 7, "George": {"_count": 3}, "Professor": {"_count": 1}, "Tonks": {"_count": 2}, "Dumbledore": {"_count": 1}}, "will": {"_count": 1, "lose": {"_count": 1}}, "abandoning": {"_count": 1, "my": {"_count": 1}}, "until": {"_count": 1, "I": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "that": {"_count": 2, "Sirius": {"_count": 1}, "I": {"_count": 1}}, "gave": {"_count": 1, "evidence": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "most": {"_count": 1, "effectively": {"_count": 1}}, "but": {"_count": 3, "in": {"_count": 1}, "how": {"_count": 1}, "I": {"_count": 1}}, "Professor": {"_count": 1, "Karkaroff": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "once": {"_count": 1, "Ive": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 2}}, "before": {"_count": 2, "it": {"_count": 1}, "you": {"_count": 1}}, "in": {"_count": 4, "a": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}, "mortal": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "I": {"_count": 1}}, "among": {"_count": 1, "them": {"_count": 1}}, "upon": {"_count": 1, "him": {"_count": 1}}, "whispered": {"_count": 1, "Voldemort": {"_count": 1}}, "perhaps": {"_count": 1, "they": {"_count": 1}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "sleeplessly": {"_count": 1, "endlessly": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 1}, "alive": {"_count": 1}, "Ron": {"_count": 1}}, "to": {"_count": 4, "him": {"_count": 2}, "know": {"_count": 1}, "add": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "Of": {"_count": 1, "course": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 2}, "my": {"_count": 1}}, "later": {"_count": 1, "beamed": {"_count": 1}}, "very": {"_count": 1, "lucky": {"_count": 1}}, "somewhere": {"_count": 1, "and": {"_count": 1}}, "plain": {"_count": 1, "": {"_count": 1}}, "singlehanded": {"_count": 1, "do": {"_count": 1}}, "now": {"_count": 1, "Ive": {"_count": 1}}, "justice": {"_count": 1, "on": {"_count": 1}}, "from": {"_count": 1, "you": {"_count": 1}}, "having": {"_count": 1, "those": {"_count": 1}}, "though": {"_count": 1, "I": {"_count": 1}}, "realized": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "much": {"_count": 1}}, "why": {"_count": 1, "I": {"_count": 1}}, "away": {"_count": 1, "or": {"_count": 1}}, "No": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "people": {"_count": 1, "are": {"_count": 1}}, "no": {"_count": 1, "Ive": {"_count": 1}}, "funnily": {"_count": 1, "enough": {"_count": 1}}, "there": {"_count": 1, "can": {"_count": 1}}, "rather": {"_count": 1, "thought": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "about": {"_count": 1, "them": {"_count": 1}}, "say": {"_count": 1, "it": {"_count": 1}}, "any": {"_count": 1, "treasure": {"_count": 1}}, "cleverer": {"_count": 1, "more": {"_count": 1}}, "than": {"_count": 1, "for": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "tonight": {"_count": 1, "and": {"_count": 1}}}, "above": {"_count": 225, "my": {"_count": 1, "left": {"_count": 1}}, "the": {"_count": 43, "trash": {"_count": 2}, "tables": {"_count": 1}, "ground": {"_count": 9}, "clouds": {"_count": 1}, "tank": {"_count": 1}, "forest": {"_count": 1}, "game": {"_count": 1}, "field": {"_count": 1}, "rest": {"_count": 3}, "grass": {"_count": 1}, "crowd": {"_count": 2}, "water": {"_count": 2}, "lawn": {"_count": 1}, "noise": {"_count": 1}, "lake": {"_count": 1}, "others": {"_count": 1}, "windows": {"_count": 1}, "smooth": {"_count": 1}, "elbow": {"_count": 2}, "confiscated": {"_count": 1}, "bar": {"_count": 1}, "surface": {"_count": 1}, "wrestling": {"_count": 1}, "intriguing": {"_count": 1}, "school": {"_count": 1}, "Astronomy": {"_count": 1}, "thunder": {"_count": 1}, "picture": {"_count": 1}, "gleeful": {"_count": 1}}, "his": {"_count": 20, "head": {"_count": 9}, "knees": {"_count": 1}, "ankles": {"_count": 1}, "elbow": {"_count": 1}, "station": {"_count": 1}, "knee": {"_count": 1}, "chair": {"_count": 1}, "beaming": {"_count": 1}, "tangled": {"_count": 1}, "": {"_count": 2}, "own": {"_count": 1}}, "their": {"_count": 2, "heads": {"_count": 2}}, "flashing": {"_count": 1, "Potter": {"_count": 1}}, "them": {"_count": 32, "Harry": {"_count": 1}, "": {"_count": 10}, "he": {"_count": 1}, "and": {"_count": 3}, "floating": {"_count": 1}, "were": {"_count": 1}, "it": {"_count": 1}, "Peeves": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "shifted": {"_count": 1}, "echoed": {"_count": 1}, "the": {"_count": 1}, "singing": {"_count": 1}, "two": {"_count": 1}, "framed": {"_count": 1}, "glinting": {"_count": 1}, "as": {"_count": 3}, "tantalizingly": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "lit": {"_count": 1, "a": {"_count": 1}}, "Hermione": {"_count": 1, "stay": {"_count": 1}}, "him": {"_count": 34, "": {"_count": 14}, "gasped": {"_count": 1}, "was": {"_count": 2}, "in": {"_count": 2}, "and": {"_count": 5}, "Hermione": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "though": {"_count": 1}, "saw": {"_count": 1}, "that": {"_count": 1}, "thinking": {"_count": 1}, "yells": {"_count": 1}, "across": {"_count": 1}, "lay": {"_count": 1}}, "all": {"_count": 11, "the": {"_count": 1}, "others": {"_count": 4}, "": {"_count": 1}, "to": {"_count": 1}, "Rons": {"_count": 1}, "make": {"_count": 1}, "that": {"_count": 1}, "those": {"_count": 1}}, "and": {"_count": 5, "growing": {"_count": 1}, "a": {"_count": 1}, "below": {"_count": 2}, "the": {"_count": 1}}, "her": {"_count": 4, "stopping": {"_count": 1}, "come": {"_count": 1}, "that": {"_count": 1}, "tightly": {"_count": 1}}, "Malfoys": {"_count": 1, "left": {"_count": 1}}, "reached": {"_count": 1, "their": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 17}, "?": {"_count": 1}}, "Lynch": {"_count": 1, "who": {"_count": 1}}, "Ron": {"_count": 1, "lay": {"_count": 1}}, "Harry": {"_count": 3, "recognized": {"_count": 1}, "": {"_count": 1}, "blocking": {"_count": 1}}, "anyone": {"_count": 1, "elses": {"_count": 1}}, "were": {"_count": 1, "permitted": {"_count": 1}}, "your": {"_count": 1, "dad": {"_count": 1}}, "it": {"_count": 6, "with": {"_count": 1}, "": {"_count": 3}, "doesnt": {"_count": 1}, "was": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "although": {"_count": 1, "you": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "such": {"_count": 2, "petty": {"_count": 1}, "sordid": {"_count": 1}}, "water": {"_count": 1, "clearly": {"_count": 1}}, "was": {"_count": 1, "almost": {"_count": 1}}, "Krum": {"_count": 1, "marking": {"_count": 1}}, "cautiously": {"_count": 1, "lowering": {"_count": 1}}, "a": {"_count": 4, "cavernous": {"_count": 1}, "whisper": {"_count": 1}, "rail": {"_count": 1}, "highnecked": {"_count": 1}}, "first": {"_count": 1, "year": {"_count": 1}}, "wonderfully": {"_count": 1, "warm": {"_count": 1}}, "Dumbledores": {"_count": 1, "regime": {"_count": 1}}, "is": {"_count": 4, "in": {"_count": 4}}, "actually": {"_count": 1, "we": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 1}, "suggesting": {"_count": 1}}, "Nevilles": {"_count": 1, "right": {"_count": 1}}, "he": {"_count": 1, "seized": {"_count": 1}}, "Dumbledore": {"_count": 1, "just": {"_count": 1}}, "now": {"_count": 1, "had": {"_count": 1}}, "have": {"_count": 1, "I": {"_count": 1}}, "came": {"_count": 1, "Bellatrixs": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "hung": {"_count": 1}}, "this": {"_count": 1, "din": {"_count": 1}}}, "knee": {"_count": 27, "that": {"_count": 1, "is": {"_count": 1}}, "to": {"_count": 1, "armpit": {"_count": 1}}, "and": {"_count": 3, "drooled": {"_count": 1}, "tried": {"_count": 1}, "drooling": {"_count": 1}}, "let": {"_count": 1, "it": {"_count": 1}}, "still": {"_count": 1, "crooked": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "!": {"_count": 1}}, "looped": {"_count": 1, "her": {"_count": 1}}, "hooting": {"_count": 1, "softly": {"_count": 1}}, "suck": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "couldnt": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "I": {"_count": 1, "believe": {"_count": 1}}, "a": {"_count": 2, "fussy": {"_count": 1}, "sharp": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "perfect": {"_count": 40, "map": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "Duddys": {"_count": 1}}, "place": {"_count": 2, "": {"_count": 1}, "sir": {"_count": 1}}, "match": {"_count": 1, "here": {"_count": 1}}, "way": {"_count": 2, "Malfoy": {"_count": 1}, "for": {"_count": 1}}, "end": {"_count": 1, "to": {"_count": 1}}, "little": {"_count": 1, "gentleman": {"_count": 1}}, "moment": {"_count": 1, "for": {"_count": 1}}, "coat": {"_count": 1, "buttons": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "moving": {"_count": 1, "model": {"_count": 1}}, "to": {"_count": 2, "miss": {"_count": 1}, "each": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "plan": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "health": {"_count": 1, "apart": {"_count": 1}}, "weather": {"_count": 1, "": {"_count": 1}}, "condition": {"_count": 1, "": {"_count": 1}}, "model": {"_count": 1, "of": {"_count": 1}}, "Summoning": {"_count": 1, "Charm": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "sense": {"_count": 1, "said": {"_count": 1}}, "boggart": {"_count": 1, "banishing": {"_count": 1}}, "night": {"_count": 1, "for": {"_count": 1}}, "days": {"_count": 1, "": {"_count": 1}}, "potion": {"_count": 1, "from": {"_count": 1}}, "liberty": {"_count": 1, "to": {"_count": 1}}, "obviously": {"_count": 1, "said": {"_count": 1}}, "breaststroke": {"_count": 1, "toward": {"_count": 1}}, "opportunity": {"_count": 1, "to": {"_count": 1}}, "pristine": {"_count": 1, "": {"_count": 1}}, "comical": {"_count": 1, "O": {"_count": 1}}, "grave": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "every": {"_count": 1}}, "circle": {"_count": 1, "maintaining": {"_count": 1}}}, "London": {"_count": 69, "Underground": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 5, "buy": {"_count": 1}, "get": {"_count": 1}, "try": {"_count": 1}, "mean": {"_count": 1}, "be": {"_count": 1}}, "an": {"_count": 1, "buy": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "five": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 19, "?": {"_count": 7}, ".": {"_count": 12}}, "before": {"_count": 1, "": {"_count": 1}}, "tomorrow": {"_count": 1, "anyway": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "than": {"_count": 2, "it": {"_count": 1}, "tell": {"_count": 1}}, "next": {"_count": 1, "Wednesday": {"_count": 1}}, "was": {"_count": 3, "a": {"_count": 1}, "soon": {"_count": 1}, "as": {"_count": 1}}, "lay": {"_count": 1, "smoky": {"_count": 1}}, "convinced": {"_count": 1, "they": {"_count": 1}}, "Ron": {"_count": 1, "PS": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "on": {"_count": 2, "that": {"_count": 1}, "my": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "Paris": {"_count": 1, "Hogsmeade": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}, "street": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "swept": {"_count": 1, "from": {"_count": 1}}, "Hermione": {"_count": 1, "read": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "gleefully": {"_count": 1, "laughing": {"_count": 1}}, "and": {"_count": 4, "in": {"_count": 2}, "back": {"_count": 1}, "hidden": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "expecting": {"_count": 1, "the": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Arabella": {"_count": 1, "Figg": {"_count": 1}}, "preparing": {"_count": 1, "to": {"_count": 1}}, "unfurling": {"_count": 1, "below": {"_count": 1}}}, "Underground": {"_count": 10, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "complained": {"_count": 1}}, "laden": {"_count": 1, "as": {"_count": 1}}, "Really": {"_count": 1, "": {"_count": 1}}, "station": {"_count": 1, "they": {"_count": 1}}, "train": {"_count": 1, "that": {"_count": 1}}, "map": {"_count": 1, "above": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}}, "give": {"_count": 434, "him": {"_count": 42, "here": {"_count": 1}, "anything": {"_count": 2}, "a": {"_count": 7}, "": {"_count": 1}, "back": {"_count": 3}, "the": {"_count": 4}, "to": {"_count": 1}, "permission": {"_count": 1}, "my": {"_count": 1}, "any": {"_count": 1}, "away": {"_count": 2}, "punishments": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 2}, "some": {"_count": 1}, "something": {"_count": 1}, "room": {"_count": 1}, "their": {"_count": 1}, "English": {"_count": 1}, "more": {"_count": 2}, "when": {"_count": 1}, "an": {"_count": 2}, "your": {"_count": 1}, "inside": {"_count": 1}, "before": {"_count": 1}, "love": {"_count": 1}}, "up": {"_count": 14, "": {"_count": 3}, "that": {"_count": 1}, "Potions": {"_count": 2}, "yet": {"_count": 1}, "on": {"_count": 1}, "all": {"_count": 1}, "hope": {"_count": 1}, "his": {"_count": 2}, "after": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 3, "without": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 30, "a": {"_count": 9}, "to": {"_count": 10}, "two": {"_count": 1}, "an": {"_count": 2}, "away": {"_count": 1}, "till": {"_count": 1}, "up": {"_count": 3}, "": {"_count": 2}, "here": {"_count": 1}}, "you": {"_count": 61, "": {"_count": 4}, "these": {"_count": 1}, "Pulling": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 11}, "permission": {"_count": 2}, "sufficient": {"_count": 1}, "excellent": {"_count": 1}, "Dimitrov": {"_count": 1}, "some": {"_count": 5}, "ideas": {"_count": 1}, "fair": {"_count": 1}, "information": {"_count": 1}, "my": {"_count": 1}, "time": {"_count": 1}, "another": {"_count": 1}, "their": {"_count": 1}, "details": {"_count": 2}, "undercover": {"_count": 1}, "something": {"_count": 3}, "detention": {"_count": 1}, "more": {"_count": 1}, "all": {"_count": 1}, "rather": {"_count": 1}, "this": {"_count": 4}, "one": {"_count": 1}, "full": {"_count": 1}, "warning": {"_count": 1}, "orders": {"_count": 1}, "an": {"_count": 2}, "at": {"_count": 1}, "ze": {"_count": 1}, "that": {"_count": 1}, "away": {"_count": 1}, "to": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "us": {"_count": 31, "away": {"_count": 1}, "a": {"_count": 12}, "neither": {"_count": 1}, "some": {"_count": 3}, "these": {"_count": 1}, "homework": {"_count": 1}, "about": {"_count": 1}, "next": {"_count": 1}, "all": {"_count": 1}, "any": {"_count": 2}, "details": {"_count": 1}, "the": {"_count": 3}, "what": {"_count": 2}, "your": {"_count": 1}}, "way": {"_count": 3, "walked": {"_count": 1}, "": {"_count": 1}, "completely": {"_count": 1}}, "Hagrid": {"_count": 1, "enough": {"_count": 1}}, "anuthinq": {"_count": 1, "for": {"_count": 1}}, "me": {"_count": 47, "a": {"_count": 8}, "that": {"_count": 4}, "the": {"_count": 16}, "my": {"_count": 1}, "your": {"_count": 2}, "Peter": {"_count": 1}, "two": {"_count": 1}, "occasional": {"_count": 1}, "freedom": {"_count": 1}, "any": {"_count": 3}, "some": {"_count": 1}, "another": {"_count": 1}, "warnings": {"_count": 1}, "": {"_count": 1}, "free": {"_count": 1}, "lines": {"_count": 1}, "permission": {"_count": 1}, "Luna": {"_count": 1}, "in": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "now": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 6, "a": {"_count": 3}, "detention": {"_count": 1}, "Potter": {"_count": 1}, "no": {"_count": 1}}, "them": {"_count": 18, "credit": {"_count": 2}, "room": {"_count": 1}, "further": {"_count": 1}, "no": {"_count": 1}, "so": {"_count": 1}, "their": {"_count": 2}, "to": {"_count": 3}, "a": {"_count": 1}, "here": {"_count": 1}, "up": {"_count": 1}, "time": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "away": {"_count": 1}}, "out": {"_count": 5, "a": {"_count": 2}, "your": {"_count": 1}, "punishments": {"_count": 1}, "books": {"_count": 1}}, "his": {"_count": 5, "beetle": {"_count": 1}, "son": {"_count": 1}, "own": {"_count": 1}, "name": {"_count": 1}, "views": {"_count": 1}}, "Colin": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 28, "Slytherin": {"_count": 1}, "Bludger": {"_count": 1}, "enclosed": {"_count": 1}, "Fat": {"_count": 1}, "marks": {"_count": 1}, "school": {"_count": 3}, "berk": {"_count": 1}, "occupants": {"_count": 1}, "Slytherins": {"_count": 1}, "trolls": {"_count": 1}, "victim": {"_count": 1}, "order": {"_count": 2}, "Malfoys": {"_count": 1}, "necklace": {"_count": 1}, "right": {"_count": 1}, "impression": {"_count": 1}, "command": {"_count": 1}, "reasons": {"_count": 1}, "place": {"_count": 1}, "door": {"_count": 1}, "sword": {"_count": 1}, "game": {"_count": 1}, "word": {"_count": 1}, "boy": {"_count": 1}, "dangerous": {"_count": 1}}, "all": {"_count": 1, "those": {"_count": 1}}, "a": {"_count": 20, "strangled": {"_count": 1}, "damn": {"_count": 3}, "tremendous": {"_count": 1}, "small": {"_count": 1}, "shudder": {"_count": 1}, "dementor": {"_count": 1}, "little": {"_count": 1}, "giant": {"_count": 1}, "firsthand": {"_count": 1}, "sick": {"_count": 1}, "I": {"_count": 1}, "terrible": {"_count": 1}, "fair": {"_count": 1}, "nasty": {"_count": 1}, "wizard": {"_count": 1}, "low": {"_count": 1}, "rats": {"_count": 1}, "professor": {"_count": 1}}, "that": {"_count": 6, "diary": {"_count": 1}, "Muggle": {"_count": 1}, "to": {"_count": 2}, "graffitied": {"_count": 1}, "bottle": {"_count": 1}}, "Ron": {"_count": 4, "the": {"_count": 1}, "a": {"_count": 3}}, "your": {"_count": 3, "cup": {"_count": 1}, "wholehearted": {"_count": 1}, "champions": {"_count": 1}}, "my": {"_count": 3, "third": {"_count": 1}, "mum": {"_count": 1}, "mother": {"_count": 1}}, "permission": {"_count": 1, "": {"_count": 1}}, "em": {"_count": 3, "a": {"_count": 3}}, "Scabbers": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 13, "a": {"_count": 2}, "the": {"_count": 3}, "loads": {"_count": 1}, "big": {"_count": 1}, "away": {"_count": 1}, "something": {"_count": 2}, "back": {"_count": 2}, "my": {"_count": 1}}, "their": {"_count": 7, "right": {"_count": 1}, "explanations": {"_count": 1}, "jinxes": {"_count": 1}, "opinions": {"_count": 1}, "health": {"_count": 1}, "names": {"_count": 1}, "houseelves": {"_count": 1}}, "himself": {"_count": 5, "thinking": {"_count": 2}, "something": {"_count": 1}, "a": {"_count": 1}, "away": {"_count": 1}}, "Ireland": {"_count": 1, "new": {"_count": 1}}, "any": {"_count": 4, "more": {"_count": 2}, "of": {"_count": 1}, "definite": {"_count": 1}}, "detentions": {"_count": 1, "Moody": {"_count": 1}}, "Ogwarts": {"_count": 1, "two": {"_count": 1}}, "our": {"_count": 1, "champions": {"_count": 1}}, "anything": {"_count": 2, "to": {"_count": 2}}, "yourself": {"_count": 1, "extra": {"_count": 1}}, "an": {"_count": 4, "interview": {"_count": 1}, "exhibition": {"_count": 1}, "opinion": {"_count": 1}, "excuse": {"_count": 1}}, "back": {"_count": 2, "whatever": {"_count": 1}, "my": {"_count": 1}}, "Cedric": {"_count": 1, "a": {"_count": 1}}, "Dobby": {"_count": 1, "his": {"_count": 1}}, "this": {"_count": 2, "information": {"_count": 1}, "matter": {"_count": 1}}, "testimony": {"_count": 1, "Cornelius": {"_count": 1}}, "evidence": {"_count": 2, "about": {"_count": 1}, "if": {"_count": 1}}, "yeh": {"_count": 2, "no": {"_count": 1}, "anythin": {"_count": 1}}, "to": {"_count": 3, "strike": {"_count": 1}, "Sirius": {"_count": 1}, "fight": {"_count": 1}}, "Stubby": {"_count": 1, "alias": {"_count": 1}}, "several": {"_count": 1, "warnings": {"_count": 1}}, "Snape": {"_count": 1, "an": {"_count": 1}}, "Umbridge": {"_count": 1, "the": {"_count": 1}}, "ter": {"_count": 1, "Karkus": {"_count": 1}}, "Cho": {"_count": 1, "his": {"_count": 1}}, "service": {"_count": 1, "to": {"_count": 1}}, "Ginny": {"_count": 1, "a": {"_count": 1}}, "orders": {"_count": 2, "here": {"_count": 1}, "in": {"_count": 1}}, "extra": {"_count": 1, "lessons": {"_count": 1}}, "James": {"_count": 1, "the": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "neither": {"_count": 1, "his": {"_count": 1}}, "satisfactory": {"_count": 1, "answers": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "full": {"_count": 1, "rein": {"_count": 1}}, "Slughorn": {"_count": 1, "back": {"_count": 1}}, "everyone": {"_count": 2, "a": {"_count": 2}}, "direction": {"_count": 1, "": {"_count": 1}}, "Crack": {"_count": 1, "": {"_count": 1}}, "im": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "take": {"_count": 1}}, "chase": {"_count": 1, "again": {"_count": 1}}, "MadEye": {"_count": 1, "the": {"_count": 1}}, "Dudley": {"_count": 1, "a": {"_count": 1}}, "away": {"_count": 3, "": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "Rowle": {"_count": 1, "another": {"_count": 1}}, "ourselves": {"_count": 1, "away": {"_count": 1}}, "better": {"_count": 1, "cover": {"_count": 1}}, "Voldemort": {"_count": 2, "what": {"_count": 1}, "the": {"_count": 1}}, "Potter": {"_count": 1, "the": {"_count": 1}}, "Neville": {"_count": 1, "our": {"_count": 1}}}, "wed": {"_count": 117, "better": {"_count": 30, "get": {"_count": 11}, "go": {"_count": 6}, "stay": {"_count": 1}, "head": {"_count": 1}, "check": {"_count": 2}, "be": {"_count": 1}, "leave": {"_count": 1}, "knock": {"_count": 1}, "do": {"_count": 3}, "not": {"_count": 1}, "take": {"_count": 1}, "start": {"_count": 1}}, "stamp": {"_count": 2, "out": {"_count": 1}, "it": {"_count": 1}}, "put": {"_count": 1, "a": {"_count": 1}}, "keep": {"_count": 1, "this": {"_count": 1}}, "be": {"_count": 6, "copying": {"_count": 1}, "hearing": {"_count": 1}, "able": {"_count": 1}, "in": {"_count": 1}, "staying": {"_count": 1}, "dead": {"_count": 1}}, "done": {"_count": 3, "that": {"_count": 1}, "human": {"_count": 1}, "Fred": {"_count": 1}}, "let": {"_count": 1, "you": {"_count": 1}}, "come": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "had": {"_count": 2, "it": {"_count": 1}, "our": {"_count": 1}}, "start": {"_count": 1, "today": {"_count": 1}}, "need": {"_count": 2, "to": {"_count": 1}, "would": {"_count": 1}}, "want": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "sneak": {"_count": 1, "into": {"_count": 1}}, "all": {"_count": 4, "like": {"_count": 2}, "gone": {"_count": 1}, "have": {"_count": 1}}, "seen": {"_count": 3, "the": {"_count": 2}, "what": {"_count": 1}}, "gone": {"_count": 1, "down": {"_count": 1}}, "say": {"_count": 2, "anything": {"_count": 1}, "a": {"_count": 1}}, "get": {"_count": 2, "there": {"_count": 1}, "into": {"_count": 1}}, "got": {"_count": 1, "near": {"_count": 1}}, "make": {"_count": 1, "a": {"_count": 1}}, "jus": {"_count": 1, "try": {"_count": 1}}, "been": {"_count": 5, "friends": {"_count": 1}, "dueling": {"_count": 1}, "running": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "care": {"_count": 2, "about": {"_count": 1}, "what": {"_count": 1}}, "have": {"_count": 6, "some": {"_count": 1}, "a": {"_count": 1}, "messed": {"_count": 1}, "been": {"_count": 1}, "achieved": {"_count": 1}, "everything": {"_count": 1}}, "see": {"_count": 1, "what": {"_count": 1}}, "do": {"_count": 2, "let": {"_count": 1}, "without": {"_count": 1}}, "cover": {"_count": 1, "porlocks": {"_count": 1}}, "spoken": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 1, "friendly": {"_count": 1}}, "meant": {"_count": 1, "ter": {"_count": 1}}, "used": {"_count": 1, "magic": {"_count": 1}}, "go": {"_count": 3, "pokin": {"_count": 1}, "an": {"_count": 1}, "with": {"_count": 1}}, "bin": {"_count": 1, "hidin": {"_count": 1}}, "try": {"_count": 1, "only": {"_count": 1}}, "hoped": {"_count": 1, "Meaning": {"_count": 1}}, "settled": {"_count": 2, "that": {"_count": 1}, "this": {"_count": 1}}, "treat": {"_count": 1, "ourselves": {"_count": 1}}, "just": {"_count": 1, "have": {"_count": 1}}, "continue": {"_count": 1, "Care": {"_count": 1}}, "stayed": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 2, "No": {"_count": 1}, "to": {"_count": 1}}, "both": {"_count": 1, "done": {"_count": 1}}, "deal": {"_count": 1, "with": {"_count": 1}}, "reached": {"_count": 1, "a": {"_count": 1}}, "even": {"_count": 1, "seen": {"_count": 1}}, "missed": {"_count": 1, "our": {"_count": 1}}, "leave": {"_count": 1, "school": {"_count": 1}}, "cast": {"_count": 1, "against": {"_count": 1}}, "help": {"_count": 1, "I": {"_count": 1}}, "never": {"_count": 1, "imagined": {"_count": 1}}, "heard": {"_count": 1, "somebody": {"_count": 1}}, "give": {"_count": 1, "her": {"_count": 1}}, "stolen": {"_count": 1, "it": {"_count": 1}}}, "shaggy": {"_count": 18, "head": {"_count": 9, "over": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}, "to": {"_count": 1}, "behind": {"_count": 1}, "as": {"_count": 1}, "rolled": {"_count": 1}}, "mane": {"_count": 1, "of": {"_count": 1}}, "black": {"_count": 6, "head": {"_count": 2}, "dog": {"_count": 4}}, "matted": {"_count": 1, "fur": {"_count": 1}}, "beaverskin": {"_count": 1, "coat": {"_count": 1}}}, "scratchy": {"_count": 2, "whiskery": {"_count": 1, "kiss": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "whiskery": {"_count": 2, "kiss": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "as": {"_count": 1}}}, "Then": {"_count": 575, "suddenly": {"_count": 1, "Hagrid": {"_count": 1}}, "he": {"_count": 141, "looked": {"_count": 7}, "ran": {"_count": 2}, "shouted": {"_count": 1}, "came": {"_count": 2}, "flew": {"_count": 1}, "noticed": {"_count": 1}, "rounded": {"_count": 3}, "said": {"_count": 16}, "turned": {"_count": 12}, "remembered": {"_count": 5}, "could": {"_count": 3}, "choked": {"_count": 1}, "crossed": {"_count": 1}, "went": {"_count": 4}, "ripped": {"_count": 2}, "leapt": {"_count": 1}, "saw": {"_count": 7}, "felt": {"_count": 3}, "thought": {"_count": 1}, "realized": {"_count": 3}, "pulled": {"_count": 1}, "waved": {"_count": 1}, "forced": {"_count": 1}, "heard": {"_count": 6}, "started": {"_count": 1}, "lunged": {"_count": 1}, "stood": {"_count": 1}, "seized": {"_count": 1}, "took": {"_count": 2}, "whirled": {"_count": 1}, "magicked": {"_count": 1}, "should": {"_count": 1}, "dreamed": {"_count": 1}, "hurried": {"_count": 1}, "and": {"_count": 1}, "placed": {"_count": 3}, "stopped": {"_count": 1}, "snapped": {"_count": 1}, "got": {"_count": 1}, "appeared": {"_count": 1}, "held": {"_count": 2}, "crept": {"_count": 1}, "wondered": {"_count": 1}, "grinned": {"_count": 1}, "spotted": {"_count": 1}, "picked": {"_count": 2}, "staggered": {"_count": 1}, "did": {"_count": 1}, "pointed": {"_count": 1}, "raised": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 2}, "gave": {"_count": 1}, "would": {"_count": 1}, "reminded": {"_count": 1}, "undressed": {"_count": 1}, "seemed": {"_count": 1}, "shrugged": {"_count": 1}, "blinked": {"_count": 1}, "returned": {"_count": 2}, "threw": {"_count": 2}, "found": {"_count": 1}, "scrambled": {"_count": 1}, "sped": {"_count": 1}, "gazed": {"_count": 1}, "tramped": {"_count": 1}, "pushed": {"_count": 1}, "climbed": {"_count": 1}, "hoped": {"_count": 1}, "burst": {"_count": 1}, "lay": {"_count": 1}, "set": {"_count": 1}}, "SMASH": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 31, "met": {"_count": 1}, "turned": {"_count": 3}, "changed": {"_count": 1}, "suddenly": {"_count": 1}, "walked": {"_count": 1}, "gave": {"_count": 1}, "lowered": {"_count": 1}, "ran": {"_count": 1}, "opened": {"_count": 1}, "gulped": {"_count": 1}, "leapt": {"_count": 1}, "spread": {"_count": 1}, "insisted": {"_count": 1}, "said": {"_count": 5}, "burst": {"_count": 1}, "spoke": {"_count": 1}, "shook": {"_count": 1}, "hoisted": {"_count": 1}, "stood": {"_count": 1}, "pushed": {"_count": 1}, "was": {"_count": 1}, "closed": {"_count": 1}, "drew": {"_count": 1}, "dropped": {"_count": 1}, "looked": {"_count": 1}}, "there": {"_count": 14, "was": {"_count": 10}, "were": {"_count": 4}}, "Im": {"_count": 1, "going": {"_count": 1}}, "they": {"_count": 15, "visited": {"_count": 2}, "clambered": {"_count": 1}, "heard": {"_count": 2}, "raised": {"_count": 1}, "joined": {"_count": 1}, "saw": {"_count": 3}, "named": {"_count": 1}, "returned": {"_count": 1}, "turned": {"_count": 2}, "Disapparated": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "a": {"_count": 25, "lamp": {"_count": 1}, "noise": {"_count": 2}, "small": {"_count": 3}, "sudden": {"_count": 1}, "pain": {"_count": 1}, "strange": {"_count": 1}, "conductor": {"_count": 1}, "Bludger": {"_count": 1}, "long": {"_count": 1}, "pair": {"_count": 1}, "man": {"_count": 1}, "burst": {"_count": 1}, "voice": {"_count": 3}, "woman": {"_count": 1}, "powerful": {"_count": 1}, "heavy": {"_count": 1}, "panting": {"_count": 1}, "figure": {"_count": 1}, "number": {"_count": 1}, "blinding": {"_count": 1}}, "something": {"_count": 3, "happened": {"_count": 1}, "clunked": {"_count": 1}, "closed": {"_count": 1}}, "the": {"_count": 29, "hat": {"_count": 1}, "whole": {"_count": 2}, "Dursleys": {"_count": 1}, "door": {"_count": 1}, "second": {"_count": 1}, "front": {"_count": 1}, "memory": {"_count": 1}, "bell": {"_count": 1}, "Death": {"_count": 1}, "whispering": {"_count": 1}, "rip": {"_count": 1}, "sound": {"_count": 2}, "lane": {"_count": 1}, "handshake": {"_count": 1}, "poisoner": {"_count": 1}, "sidecar": {"_count": 1}, "scar": {"_count": 1}, "crowd": {"_count": 1}, "Patronuss": {"_count": 1}, "dust": {"_count": 1}, "young": {"_count": 1}, "little": {"_count": 1}, "sight": {"_count": 1}, "child": {"_count": 1}, "worst": {"_count": 1}, "Hufflepuffs": {"_count": 1}, "answer": {"_count": 1}}, "Hagrid": {"_count": 2, "s": {"_count": 1}, "said": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Hermione": {"_count": 7, "had": {"_count": 1}, "raised": {"_count": 1}, "spoke": {"_count": 1}, "opened": {"_count": 1}, "said": {"_count": 1}, "shrieked": {"_count": 1}, "walked": {"_count": 1}}, "hed": {"_count": 1, "realized": {"_count": 1}}, "cold": {"_count": 1, "wet": {"_count": 1}}, "during": {"_count": 1, "one": {"_count": 1}}, "one": {"_count": 5, "breakfast": {"_count": 1}, "of": {"_count": 2}, "by": {"_count": 1}, "brave": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "kill": {"_count": 1, "him": {"_count": 1}}, "who": {"_count": 1, "does": {"_count": 1}}, "without": {"_count": 7, "warning": {"_count": 5}, "the": {"_count": 1}, "thinking": {"_count": 1}}, "Harry": {"_count": 8, "Potter": {"_count": 1}, "realized": {"_count": 1}, "turned": {"_count": 2}, "saw": {"_count": 2}, "heard": {"_count": 1}, "and": {"_count": 1}}, "Dobby": {"_count": 1, "must": {"_count": 1}}, "Ron": {"_count": 6, "you": {"_count": 1}, "said": {"_count": 3}, "pushed": {"_count": 1}, "voiced": {"_count": 1}}, "it": {"_count": 8, "was": {"_count": 3}, "flickered": {"_count": 1}, "came": {"_count": 1}, "could": {"_count": 1}, "raised": {"_count": 1}, "might": {"_count": 1}}, "dented": {"_count": 1, "scratched": {"_count": 1}}, "Dumbledore": {"_count": 5, "said": {"_count": 2}, "leaned": {"_count": 1}, "pulled": {"_count": 1}, "bent": {"_count": 1}}, "someone": {"_count": 1, "shouted": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 2}}, "with": {"_count": 16, "a": {"_count": 11}, "an": {"_count": 2}, "one": {"_count": 1}, "the": {"_count": 1}, "Mrs": {"_count": 1}}, "you": {"_count": 19, "noticed": {"_count": 1}, "should": {"_count": 2}, "might": {"_count": 1}, "get": {"_count": 1}, "will": {"_count": 3}, "have": {"_count": 1}, "would": {"_count": 1}, "ought": {"_count": 2}, "could": {"_count": 1}, "just": {"_count": 1}, "can": {"_count": 2}, "were": {"_count": 1}, "told": {"_count": 1}, "neednt": {"_count": 1}}, "still": {"_count": 1, "stunned": {"_count": 1}}, "her": {"_count": 3, "hand": {"_count": 1}, "eyes": {"_count": 2}}, "at": {"_count": 7, "last": {"_count": 2}, "their": {"_count": 1}, "long": {"_count": 2}, "half": {"_count": 1}, "halfpast": {"_count": 1}}, "as": {"_count": 13, "though": {"_count": 3}, "he": {"_count": 3}, "the": {"_count": 2}, "she": {"_count": 2}, "they": {"_count": 2}, "Charlie": {"_count": 1}}, "well": {"_count": 2, "be": {"_count": 1}, "help": {"_count": 1}}, "when": {"_count": 5, "the": {"_count": 2}, "at": {"_count": 1}, "Ron": {"_count": 1}, "she": {"_count": 1}}, "Fang": {"_count": 1, "suddenly": {"_count": 1}}, "we": {"_count": 9, "can": {"_count": 2}, "wait": {"_count": 1}, "heard": {"_count": 1}, "are": {"_count": 1}, "should": {"_count": 1}, "shall": {"_count": 1}, "have": {"_count": 1}, "got": {"_count": 1}}, "Professor": {"_count": 4, "McGonagall": {"_count": 2}, "McGonagalls": {"_count": 1}, "Toftys": {"_count": 1}}, "I": {"_count": 13, "had": {"_count": 2}, "asked": {"_count": 1}, "shouldve": {"_count": 1}, "packed": {"_count": 1}, "need": {"_count": 1}, "think": {"_count": 1}, "expect": {"_count": 1}, "couldve": {"_count": 1}, "am": {"_count": 1}, "wish": {"_count": 1}, "can": {"_count": 1}, "have": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "came": {"_count": 5, "a": {"_count": 1}, "hurried": {"_count": 1}, "Astronomy": {"_count": 1}, "the": {"_count": 1}, "hooves": {"_count": 1}}, "feeling": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "sit": {"_count": 1, "down": {"_count": 1}}, "RiddikulusV": {"_count": 1, "bellowed": {"_count": 1}}, "Was": {"_count": 1, "Binky": {"_count": 1}}, "quite": {"_count": 4, "suddenly": {"_count": 3}, "abruptly": {"_count": 1}}, "Madam": {"_count": 1, "Rosmerta": {"_count": 1}}, "Harrys": {"_count": 2, "thoughts": {"_count": 1}, "foot": {"_count": 1}}, "spotting": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "let": {"_count": 2, "me": {"_count": 1}, "us": {"_count": 1}}, "Fine": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "WHOOSH": {"_count": 1}}, "Wood": {"_count": 1, "was": {"_count": 1}}, "after": {"_count": 3, "a": {"_count": 1}, "about": {"_count": 1}, "two": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "Lupin": {"_count": 3, "spoke": {"_count": 1}, "strode": {"_count": 1}, "said": {"_count": 1}}, "very": {"_count": 3, "slowly": {"_count": 3}}, "ignoring": {"_count": 1, "Black": {"_count": 1}}, "its": {"_count": 2, "time": {"_count": 1}, "Grindelwalds": {"_count": 1}}, "before": {"_count": 3, "I": {"_count": 1}, "either": {"_count": 1}, "Harrys": {"_count": 1}}, "his": {"_count": 3, "limbs": {"_count": 1}, "face": {"_count": 1}, "hood": {"_count": 1}}, "Here": {"_count": 1, "comes": {"_count": 1}}, "wand": {"_count": 1, "held": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "just": {"_count": 2, "when": {"_count": 1}, "as": {"_count": 1}}, "two": {"_count": 3, "girls": {"_count": 1}, "dementors": {"_count": 1}, "of": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "slowly": {"_count": 2, "as": {"_count": 1}, "but": {"_count": 1}}, "Bill": {"_count": 1, "removing": {"_count": 1}}, "youd": {"_count": 2, "be": {"_count": 1}, "both": {"_count": 1}}, "George": {"_count": 1, "looked": {"_count": 1}}, "checking": {"_count": 1, "that": {"_count": 1}}, "hes": {"_count": 1, "hoping": {"_count": 1}}, "flee": {"_count": 1, "said": {"_count": 1}}, "Moody": {"_count": 1, "closed": {"_count": 1}}, "Snape": {"_count": 5, "slowly": {"_count": 1}, "said": {"_count": 2}, "told": {"_count": 1}, "spoke": {"_count": 1}}, "Maze": {"_count": 1, "grunted": {"_count": 1}}, "Mr": {"_count": 2, "Krum": {"_count": 1}, "Crouchs": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}, "Cedric": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Wormtail": {"_count": 1, "resumed": {"_count": 1}}, "Dumbledores": {"_count": 1, "face": {"_count": 1}}, "Potter": {"_count": 1, "came": {"_count": 1}}, "go": {"_count": 2, "down": {"_count": 1}, "Potter": {"_count": 1}}, "good": {"_count": 1, "luck": {"_count": 1}}, "why": {"_count": 3, "": {"_count": 1}, "not": {"_count": 1}, "asked": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "undoubtedly": {"_count": 1, "the": {"_count": 1}}, "youre": {"_count": 1, "mad": {"_count": 1}}, "divide": {"_count": 1, "into": {"_count": 1}}, "seeing": {"_count": 1, "their": {"_count": 1}}, "Ill": {"_count": 2, "go": {"_count": 1}, "have": {"_count": 1}}, "shell": {"_count": 2, "be": {"_count": 2}}, "YouKnowWho": {"_count": 1, "hasnt": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "Wednesday": {"_count": 1}, "Harrys": {"_count": 1}}, "prove": {"_count": 1, "it": {"_count": 1}}, "leaning": {"_count": 1, "forward": {"_count": 1}}, "give": {"_count": 1, "him": {"_count": 1}}, "consider": {"_count": 1, "a": {"_count": 1}}, "Umbridge": {"_count": 2, "came": {"_count": 1}, "raised": {"_count": 1}}, "somebody": {"_count": 2, "coughed": {"_count": 1}, "screamed": {"_count": 1}}, "tomorrow": {"_count": 1, "he": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "if": {"_count": 3, "you": {"_count": 1}, "I": {"_count": 1}, "youre": {"_count": 1}}, "three": {"_count": 1, "years": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "heaving": {"_count": 1, "his": {"_count": 1}}, "Horace": {"_count": 1, "we": {"_count": 1}}, "six": {"_count": 1, "feet": {"_count": 1}}, "Percy": {"_count": 1, "said": {"_count": 1}}, "Slughorn": {"_count": 1, "s": {"_count": 1}}, "Slughorns": {"_count": 1, "voice": {"_count": 1}}, "Cadwallader": {"_count": 1, "scored": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "several": {"_count": 2, "people": {"_count": 2}}, "take": {"_count": 1, "off": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "another": {"_count": 2, "voice": {"_count": 1}, "white": {"_count": 1}}, "thats": {"_count": 1, "whatll": {"_count": 1}}, "Ginny": {"_count": 2, "nudged": {"_count": 1}, "Neville": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Dudley": {"_count": 1, "held": {"_count": 1}}, "attend": {"_count": 1, "to": {"_count": 1}}, "Mary": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "object": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "Ted": {"_count": 1, "said": {"_count": 1}}, "GO": {"_count": 1, "": {"_count": 1}}, "Hermiones": {"_count": 1, "voice": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "what": {"_count": 2, "happened": {"_count": 1}, "do": {"_count": 1}}, "111": {"_count": 1, "need": {"_count": 1}}, "shake": {"_count": 1, "said": {"_count": 1}}, "Griphook": {"_count": 1, "relinquished": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "my": {"_count": 1, "mother": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "more": {"_count": 1, "curses": {"_count": 1}}, "Neville": {"_count": 1, "nearly": {"_count": 1}}, "explain": {"_count": 1, "": {"_count": 1}}}, "howl": {"_count": 18, "like": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "exactly": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "began": {"_count": 1}}, "of": {"_count": 10, "wind": {"_count": 2}, "misery": {"_count": 1}, "fury": {"_count": 1}, "pain": {"_count": 3}, "rage": {"_count": 2}, "shock": {"_count": 1}}, "its": {"_count": 1, "nostrils": {"_count": 1}}, "Voldemort": {"_count": 1, "removed": {"_count": 1}}, "with": {"_count": 1, "pain": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wounded": {"_count": 8, "dog": {"_count": 1, "": {"_count": 1}}, "hippo": {"_count": 1, "Uncle": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "animal": {"_count": 2, "": {"_count": 2}}, "a": {"_count": 1, "man": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}}, "dog": {"_count": 109, "": {"_count": 21, ".": {"_count": 19}, "!": {"_count": 1}, "?": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "pain": {"_count": 1}}, "biscuits": {"_count": 3, "over": {"_count": 1}, "back": {"_count": 1}, "for": {"_count": 1}}, "a": {"_count": 1, "dog": {"_count": 1}}, "that": {"_count": 5, "filled": {"_count": 1}, "had": {"_count": 1}, "haunts": {"_count": 1}, "was": {"_count": 1}, "has": {"_count": 1}}, "needs": {"_count": 1, "exercise": {"_count": 1}}, "was": {"_count": 3, "guarding": {"_count": 2}, "bounding": {"_count": 1}}, "had": {"_count": 6, "been": {"_count": 1}, "vanished": {"_count": 2}, "made": {"_count": 1}, "bounded": {"_count": 1}, "appeared": {"_count": 1}}, "and": {"_count": 5, "the": {"_count": 1}, "drenching": {"_count": 1}, "walked": {"_count": 1}, "ran": {"_count": 1}, "told": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "Halloween": {"_count": 1}}, "guarding": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "Halloween": {"_count": 1}, "the": {"_count": 1}}, "an": {"_count": 1, "you": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 1}, "Hermione": {"_count": 1}}, "growled": {"_count": 1, "and": {"_count": 1}}, "didnt": {"_count": 1, "even": {"_count": 1}}, "hed": {"_count": 2, "christened": {"_count": 1}, "seen": {"_count": 1}}, "greeting": {"_count": 1, "its": {"_count": 1}}, "large": {"_count": 1, "as": {"_count": 1}}, "anywhere": {"_count": 1, "have": {"_count": 1}}, "clearly": {"_count": 1, "imprinted": {"_count": 1}}, "moving": {"_count": 1, "stealthily": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "sprang": {"_count": 1, "back": {"_count": 1}}, "dragging": {"_count": 1, "Ron": {"_count": 1}}, "from": {"_count": 1, "pulling": {"_count": 1}}, "can": {"_count": 1, "get": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "Ron": {"_count": 1, "moaned": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "realized": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "bounded": {"_count": 1, "forward": {"_count": 1}}, "seized": {"_count": 1, "it": {"_count": 1}}, "pulling": {"_count": 1, "Ron": {"_count": 1}}, "off": {"_count": 1, "a": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "sniffed": {"_count": 1, "Harrys": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "entered": {"_count": 1, "and": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "came": {"_count": 2, "around": {"_count": 1}, "bounding": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "followed": {"_count": 1, "her": {"_count": 1}}, "beside": {"_count": 1, "Harry": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "reared": {"_count": 1, "onto": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "stand": {"_count": 1, "fast": {"_count": 1}}, "disguise": {"_count": 1, "at": {"_count": 1}}, "started": {"_count": 1, "barking": {"_count": 1}}, "belong": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "stuck": {"_count": 1, "in": {"_count": 1}}, "hair": {"_count": 1, "he": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}}, "Shhh": {"_count": 4, "": {"_count": 3, "!": {"_count": 3}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}}, "hissed": {"_count": 92, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "at": {"_count": 7, "her": {"_count": 1}, "Harry": {"_count": 2}, "Malfoy": {"_count": 1}, "Sirius": {"_count": 1}, "Hermione": {"_count": 1}, "him": {"_count": 1}}, "Ron": {"_count": 1, "pulling": {"_count": 1}}, "springing": {"_count": 1, "up": {"_count": 1}}, "Harry": {"_count": 1, "stuffing": {"_count": 1}}, "evilly": {"_count": 1, "brandishing": {"_count": 1}}, "to": {"_count": 3, "Ron": {"_count": 1}, "Filch": {"_count": 1}, "Hermione": {"_count": 1}}, "showing": {"_count": 1, "them": {"_count": 1}}, "in": {"_count": 4, "outrage": {"_count": 1}, "her": {"_count": 1}, "Harrys": {"_count": 1}, "Rons": {"_count": 1}}, "dragging": {"_count": 1, "Ron": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "loudly": {"_count": 3, "like": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 3, "frothed": {"_count": 1}, "turned": {"_count": 1}, "booed": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "gritted": {"_count": 1}}, "but": {"_count": 2, "Harry": {"_count": 1}, "Bagman": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "Professor": {"_count": 1}}, "Hermione": {"_count": 3, "pointing": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "What": {"_count": 1, "did": {"_count": 1}}, "clamping": {"_count": 1, "his": {"_count": 1}}, "Ive": {"_count": 1, "waited": {"_count": 1}}, "Snape": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "so": {"_count": 1, "venomously": {"_count": 1}}, "the": {"_count": 2, "second": {"_count": 1}, "goblin": {"_count": 1}}, "slightly": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 2, "face": {"_count": 1}, "fathomless": {"_count": 1}}, "Malcolm": {"_count": 1, "Baddock": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "It": {"_count": 1, "might": {"_count": 1}}, "swerving": {"_count": 1, "tantalizingly": {"_count": 1}}, "hurrying": {"_count": 1, "up": {"_count": 1}}, "watching": {"_count": 1, "Fred": {"_count": 1}}, "letting": {"_count": 1, "go": {"_count": 1}}, "angrily": {"_count": 3, "as": {"_count": 2}, "but": {"_count": 1}}, "it": {"_count": 1, "sent": {"_count": 1}}, "softly": {"_count": 2, "": {"_count": 2}}, "words": {"_count": 1, "Harry": {"_count": 1}}, "Did": {"_count": 1, "you": {"_count": 1}}, "Im": {"_count": 1, "trying": {"_count": 1}}, "menacingly": {"_count": 1, "and": {"_count": 1}}, "faintly": {"_count": 1, "but": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "You": {"_count": 1, "should": {"_count": 1}}, "from": {"_count": 1, "out": {"_count": 1}}}, "youll": {"_count": 171, "wake": {"_count": 1, "the": {"_count": 1}}, "be": {"_count": 56, "in": {"_count": 4}, "right": {"_count": 1}, "needin": {"_count": 1}, "just": {"_count": 1}, "out": {"_count": 1}, "joining": {"_count": 1}, "able": {"_count": 14}, "enjoying": {"_count": 1}, "caught": {"_count": 1}, "let": {"_count": 1}, "sticking": {"_count": 1}, "very": {"_count": 1}, "late": {"_count": 4}, "needing": {"_count": 1}, "staying": {"_count": 1}, "up": {"_count": 1}, "betting": {"_count": 1}, "made": {"_count": 1}, "wanting": {"_count": 1}, "cleared": {"_count": 1}, "better": {"_count": 1}, "a": {"_count": 1}, "begging": {"_count": 1}, "okay": {"_count": 2}, "expelled": {"_count": 1}, "where": {"_count": 1}, "having": {"_count": 1}, "alone": {"_count": 1}, "sorting": {"_count": 1}, "brilliant": {"_count": 1}, "all": {"_count": 1}, "using": {"_count": 1}, "pretty": {"_count": 1}, "otherwise": {"_count": 1}, "going": {"_count": 2}}, "crash": {"_count": 1, "into": {"_count": 1}}, "go": {"_count": 2, "the": {"_count": 1}, "far": {"_count": 1}}, "make": {"_count": 2, "a": {"_count": 1}, "too": {"_count": 1}}, "get": {"_count": 6, "us": {"_count": 2}, "caughty": {"_count": 1}, "into": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "lose": {"_count": 3, "Gryffindor": {"_count": 1}, "all": {"_count": 2}}, "think": {"_count": 1, "twice": {"_count": 1}}, "all": {"_count": 1, "come": {"_count": 1}}, "meet": {"_count": 1, "the": {"_count": 1}}, "wish": {"_count": 1, "youd": {"_count": 1}}, "find": {"_count": 7, "that": {"_count": 2}, "": {"_count": 1}, "all": {"_count": 1}, "someone": {"_count": 1}, "anywhere": {"_count": 1}, "everything": {"_count": 1}}, "need": {"_count": 7, "to": {"_count": 6}, "bigger": {"_count": 1}}, "believe": {"_count": 3, "it": {"_count": 2}, "me": {"_count": 1}}, "still": {"_count": 3, "have": {"_count": 1}, "get": {"_count": 1}, "think": {"_count": 1}}, "keep": {"_count": 2, "a": {"_count": 1}, "bleeding": {"_count": 1}}, "feel": {"_count": 2, "differently": {"_count": 1}, "better": {"_count": 1}}, "understand": {"_count": 4, "": {"_count": 2}, "why": {"_count": 1}, "if": {"_count": 1}}, "follow": {"_count": 1, "me": {"_count": 1}}, "have": {"_count": 17, "to": {"_count": 11}, "your": {"_count": 1}, "time": {"_count": 1}, "plenty": {"_count": 1}, "me": {"_count": 1}, "us": {"_count": 1}, "it": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "see": {"_count": 5, "": {"_count": 1}, "in": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "is": {"_count": 1}}, "both": {"_count": 1, "be": {"_count": 1}}, "just": {"_count": 7, "make": {"_count": 1}, "give": {"_count": 1}, "tiptoe": {"_count": 1}, "let": {"_count": 1}, "end": {"_count": 1}, "have": {"_count": 1}, "follow": {"_count": 1}}, "help": {"_count": 1, "him": {"_count": 1}}, "sorely": {"_count": 2, "miss": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "agree": {"_count": 1, "given": {"_count": 1}}, "excuse": {"_count": 1, "us": {"_count": 1}}, "show": {"_count": 1, "him": {"_count": 1}}, "always": {"_count": 1, "be": {"_count": 1}}, "take": {"_count": 1, "em": {"_count": 1}}, "come": {"_count": 2, "up": {"_count": 1}, "with": {"_count": 1}}, "notice": {"_count": 1, "I": {"_count": 1}}, "read": {"_count": 1, "Hogwarts": {"_count": 1}}, "pay": {"_count": 3, "every": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}}, "know": {"_count": 4, "hes": {"_count": 1}, "that": {"_count": 1}, "sooner": {"_count": 1}, "all": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "write": {"_count": 1, "more": {"_count": 1}}, "also": {"_count": 1, "find": {"_count": 1}}, "appear": {"_count": 1, "in": {"_count": 1}}, "never": {"_count": 1, "see": {"_count": 1}}, "dazzle": {"_count": 1, "us": {"_count": 1}}, "look": {"_count": 1, "after": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "appreciate": {"_count": 1, "it": {"_count": 1}}, "like": {"_count": 2, "this": {"_count": 2}}, "pass": {"_count": 1, "next": {"_count": 1}}, "only": {"_count": 1, "embarrass": {"_count": 1}}, "do": {"_count": 1, "perfectly": {"_count": 1}}, "permit": {"_count": 1, "Minerva": {"_count": 1}}, "back": {"_count": 1, "me": {"_count": 1}}}, "wake": {"_count": 86, "the": {"_count": 5, "Muggles": {"_count": 1}, "Dursleys": {"_count": 1}, "whole": {"_count": 1}, "other": {"_count": 1}, "tips": {"_count": 1}}, "you": {"_count": 3, "up": {"_count": 3}}, "Dudley": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 29, "": {"_count": 8}, "the": {"_count": 1}, "as": {"_count": 1}, "Im": {"_count": 1}, "snapped": {"_count": 1}, "Harry": {"_count": 1}, "Madam": {"_count": 1}, "and": {"_count": 5}, "in": {"_count": 1}, "sir": {"_count": 1}, "tomorrow": {"_count": 3}, "again": {"_count": 1}, "wake": {"_count": 2}, "Rennervatel": {"_count": 1}, "half": {"_count": 1}}, "as": {"_count": 3, "she": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "him": {"_count": 8, "": {"_count": 1}, "up": {"_count": 3}, "at": {"_count": 1}, "if": {"_count": 1}, "before": {"_count": 1}, "really": {"_count": 1}}, "Neville": {"_count": 1, "Dean": {"_count": 1}}, "everyone": {"_count": 1, "at": {"_count": 1}}, "her": {"_count": 2, "up": {"_count": 2}}, "said": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 9, "?": {"_count": 1}, ".": {"_count": 8}}, "everybody": {"_count": 1, "up": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "jogging": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "checking": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "anything": {"_count": 1, "up": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "looking": {"_count": 1, "rather": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "limping": {"_count": 1, "slightly": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "Severus": {"_count": 1, "said": {"_count": 1}}, "every": {"_count": 1, "morning": {"_count": 1}}, "Hermione": {"_count": 2, "and": {"_count": 2}}, "and": {"_count": 2, "discuss": {"_count": 1}, "the": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "your": {"_count": 1, "students": {"_count": 1}}}, "Sssorry": {"_count": 1, "sobbed": {"_count": 1, "Hagrid": {"_count": 1}}}, "sobbed": {"_count": 42, "Hagrid": {"_count": 4, "taking": {"_count": 1}, "": {"_count": 3}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Lavender": {"_count": 1, "": {"_count": 1}}, "unrestrainedly": {"_count": 1, "into": {"_count": 1}}, "over": {"_count": 2, "Mr": {"_count": 1}, "Kreachers": {"_count": 1}}, "Winky": {"_count": 2, "through": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "most": {"_count": 1}}, "pointing": {"_count": 1, "her": {"_count": 1}}, "harder": {"_count": 4, "than": {"_count": 4}}, "again": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "Bellatrix": {"_count": 1, "flinging": {"_count": 1}}, "Narcissa": {"_count": 1, "": {"_count": 1}}, "Leanne": {"_count": 2, "": {"_count": 1}, "pointing": {"_count": 1}}, "into": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 2}}, "Mrs": {"_count": 2, "Weasley": {"_count": 1}, "Cattermole": {"_count": 1}}, "Xenophilius": {"_count": 2, "": {"_count": 2}}, "blindly": {"_count": 1, "nobody": {"_count": 1}}, "unashamedly": {"_count": 1, "Dexter": {"_count": 1}}}, "taking": {"_count": 301, "out": {"_count": 12, "a": {"_count": 2}, "that": {"_count": 1}, "his": {"_count": 4}, "the": {"_count": 2}, "your": {"_count": 1}, "her": {"_count": 1}, "books": {"_count": 1}}, "all": {"_count": 2, "sorts": {"_count": 1}, "the": {"_count": 1}}, "down": {"_count": 2, "boxes": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 47, "large": {"_count": 3}, "lot": {"_count": 1}, "swipe": {"_count": 1}, "step": {"_count": 6}, "roll": {"_count": 1}, "grateful": {"_count": 1}, "tentative": {"_count": 1}, "deep": {"_count": 3}, "huge": {"_count": 2}, "sip": {"_count": 3}, "personal": {"_count": 1}, "welldeserved": {"_count": 1}, "swig": {"_count": 2}, "Knut": {"_count": 1}, "longer": {"_count": 1}, "flatfooted": {"_count": 1}, "seat": {"_count": 3}, "lively": {"_count": 1}, "Portkey": {"_count": 1}, "BloodReplenishing": {"_count": 1}, "few": {"_count": 1}, "stroll": {"_count": 1}, "bath": {"_count": 1}, "piece": {"_count": 1}, "minuscule": {"_count": 1}, "moody": {"_count": 1}, "defensive": {"_count": 1}, "bit": {"_count": 1}, "fair": {"_count": 1}, "ridiculous": {"_count": 1}, "short": {"_count": 1}, "closer": {"_count": 1}}, "the": {"_count": 40, "toadless": {"_count": 1}, "roll": {"_count": 1}, "cauldron": {"_count": 1}, "limp": {"_count": 1}, "Grangers": {"_count": 1}, "note": {"_count": 2}, "SkeleGro": {"_count": 1}, "diary": {"_count": 1}, "shortest": {"_count": 1}, "seats": {"_count": 1}, "news": {"_count": 1}, "Cauldron": {"_count": 1}, "lid": {"_count": 1}, "Invisibility": {"_count": 1}, "saucepan": {"_count": 1}, "box": {"_count": 1}, "slip": {"_count": 1}, "kids": {"_count": 1}, "quill": {"_count": 1}, "egg": {"_count": 1}, "librarys": {"_count": 1}, "letter": {"_count": 1}, "mickey": {"_count": 2}, "bench": {"_count": 1}, "parchment": {"_count": 1}, "combined": {"_count": 1}, "lift": {"_count": 1}, "path": {"_count": 1}, "Daily": {"_count": 1}, "bezoar": {"_count": 1}, "boxes": {"_count": 1}, "test": {"_count": 2}, "time": {"_count": 1}, "Horcrux": {"_count": 1}, "job": {"_count": 1}, "Snitch": {"_count": 1}, "Hallow": {"_count": 1}}, "Harry": {"_count": 2, "through": {"_count": 1}, "": {"_count": 1}}, "them": {"_count": 1, "right": {"_count": 1}}, "points": {"_count": 2, "off": {"_count": 1}, "from": {"_count": 1}}, "him": {"_count": 6, "to": {"_count": 1}, "up": {"_count": 1}, "back": {"_count": 1}, "seriously": {"_count": 1}, "away": {"_count": 1}, "once": {"_count": 1}}, "his": {"_count": 12, "eyes": {"_count": 5}, "car": {"_count": 1}, "pulse": {"_count": 1}, "place": {"_count": 1}, "seat": {"_count": 1}, "cloak": {"_count": 1}, "wand": {"_count": 1}, "watering": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "photographs": {"_count": 1, "with": {"_count": 1}}, "up": {"_count": 5, "the": {"_count": 1}, "even": {"_count": 1}, "much": {"_count": 1}, "residence": {"_count": 1}, "a": {"_count": 1}}, "one": {"_count": 3, "too": {"_count": 1}, "stride": {"_count": 1}, "of": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "picture": {"_count": 1, "after": {"_count": 1}}, "pictures": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "with": {"_count": 1}}, "in": {"_count": 16, "his": {"_count": 1}, "every": {"_count": 4}, "the": {"_count": 7}, "more": {"_count": 1}, "a": {"_count": 2}, "Dumbledore": {"_count": 1}}, "some": {"_count": 2, "by": {"_count": 1}, "for": {"_count": 1}}, "students": {"_count": 1, "of": {"_count": 1}}, "turns": {"_count": 2, "covering": {"_count": 1}, "to": {"_count": 1}}, "their": {"_count": 7, "eyes": {"_count": 1}, "places": {"_count": 1}, "seats": {"_count": 1}, "lead": {"_count": 1}, "O": {"_count": 1}, "tests": {"_count": 1}, "Apparition": {"_count": 1}}, "place": {"_count": 5, "catching": {"_count": 1}, "above": {"_count": 1}, "at": {"_count": 1}, "deep": {"_count": 1}, "before": {"_count": 1}}, "Polyjuice": {"_count": 2, "Potion": {"_count": 1}, "to": {"_count": 1}}, "off": {"_count": 5, "his": {"_count": 4}, "the": {"_count": 1}}, "Hagrid": {"_count": 2, "away": {"_count": 1}, "": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "exams": {"_count": 1, "with": {"_count": 1}}, "credit": {"_count": 1, "for": {"_count": 1}}, "great": {"_count": 1, "steadying": {"_count": 1}}, "Professor": {"_count": 1, "Lockhart": {"_count": 1}}, "you": {"_count": 3, "he": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 2, "long": {"_count": 1}, "little": {"_count": 1}}, "more": {"_count": 4, "new": {"_count": 1}, "subjects": {"_count": 2}, "time": {"_count": 1}}, "an": {"_count": 4, "automatic": {"_count": 1}, "extra": {"_count": 1}, "awful": {"_count": 1}, "inordinate": {"_count": 1}}, "advantage": {"_count": 3, "of": {"_count": 3}}, "even": {"_count": 2, "himself": {"_count": 1}, "now": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Hufflepuff": {"_count": 1, "very": {"_count": 1}}, "deep": {"_count": 3, "calming": {"_count": 1}, "breaths": {"_count": 1}, "sharp": {"_count": 1}}, "good": {"_count": 1, "care": {"_count": 1}}, "over": {"_count": 3, "everywhere": {"_count": 1}, "the": {"_count": 2}}, "flight": {"_count": 1, "it": {"_count": 1}}, "full": {"_count": 1, "advantage": {"_count": 1}}, "effect": {"_count": 1, "but": {"_count": 1}}, "another": {"_count": 5, "brave": {"_count": 1}, "sip": {"_count": 1}, "great": {"_count": 1}, "": {"_count": 1}, "swig": {"_count": 1}}, "notes": {"_count": 2, "on": {"_count": 1}, "at": {"_count": 1}}, "me": {"_count": 1, "Agrid": {"_count": 1}}, "risks": {"_count": 1, "this": {"_count": 1}}, "care": {"_count": 6, "of": {"_count": 2}, "to": {"_count": 3}, "not": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "egg": {"_count": 1}}, "her": {"_count": 7, "usual": {"_count": 1}, "eyes": {"_count": 2}, "hand": {"_count": 1}, "he": {"_count": 1}, "things": {"_count": 1}, "Harry": {"_count": 1}}, "heart": {"_count": 1, "from": {"_count": 1}}, "for": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 2, "seriously": {"_count": 1}, "sensible": {"_count": 1}}, "away": {"_count": 1, "his": {"_count": 1}}, "Ginny": {"_count": 1, "upstairs": {"_count": 1}}, "mad": {"_count": 1, "orders": {"_count": 1}}, "two": {"_count": 2, "steps": {"_count": 2}}, "orders": {"_count": 4, "from": {"_count": 3}, "only": {"_count": 1}}, "it": {"_count": 13, "out": {"_count": 2}, "in": {"_count": 5}, "a": {"_count": 1}, "back": {"_count": 2}, "and": {"_count": 1}, "from": {"_count": 1}, "personally": {"_count": 1}}, "Care": {"_count": 2, "of": {"_count": 2}}, "anything": {"_count": 1, "badly": {"_count": 1}}, "advance": {"_count": 1, "orders": {"_count": 1}}, "Harrys": {"_count": 2, "arm": {"_count": 1}, "presents": {"_count": 1}}, "Fred": {"_count": 1, "by": {"_count": 1}}, "something": {"_count": 1, "from": {"_count": 1}}, "everything": {"_count": 1, "she": {"_count": 1}}, "Lockharts": {"_count": 1, "arm": {"_count": 1}}, "Remedial": {"_count": 1, "Potions": {"_count": 1}}, "aim": {"_count": 1, "between": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "your": {"_count": 1, "life": {"_count": 1}}, "direction": {"_count": 1, "from": {"_count": 1}}, "office": {"_count": 1, "": {"_count": 1}}, "possession": {"_count": 1, "of": {"_count": 1}}, "about": {"_count": 1, "five": {"_count": 1}}, "Stan": {"_count": 1, "seriously": {"_count": 1}}, "note": {"_count": 1, "of": {"_count": 1}}, "myself": {"_count": 1, "off": {"_count": 1}}, "Luna": {"_count": 2, "Lovegood": {"_count": 1}, "to": {"_count": 1}}, "longer": {"_count": 1, "than": {"_count": 1}}, "essence": {"_count": 1, "of": {"_count": 1}}, "Weasley": {"_count": 1, "up": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "Dudleys": {"_count": 1, "hand": {"_count": 1}}, "Fleur": {"_count": 1, "on": {"_count": 1}}, "charge": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "risks": {"_count": 1}}, "matters": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 1, "dragging": {"_count": 1}}}, "burying": {"_count": 6, "his": {"_count": 1, "face": {"_count": 1}}, "him": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "a": {"_count": 1, "giant": {"_count": 1}}, "the": {"_count": 1, "elf": {"_count": 1}}}, "cc": {"_count": 1, "cant": {"_count": 1, "stand": {"_count": 1}}}, "stand": {"_count": 170, "it": {"_count": 12, "Lily": {"_count": 1}, "if": {"_count": 1}, "I": {"_count": 2}, "a": {"_count": 1}, "its": {"_count": 1}, "\u25a0": {"_count": 1}, "": {"_count": 2}, "A": {"_count": 1}, "no": {"_count": 1}, "The": {"_count": 1}}, "back": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "between": {"_count": 4, "platforms": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}, "Fred": {"_count": 1}}, "on": {"_count": 6, "a": {"_count": 1}, "end": {"_count": 3}, "elf": {"_count": 1}, "student": {"_count": 1}}, "by": {"_count": 5, "a": {"_count": 1}, "what": {"_count": 1}, "all": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}}, "out": {"_count": 1, "here": {"_count": 1}}, "her": {"_count": 2, "he": {"_count": 1}, "gratitude": {"_count": 1}}, "where": {"_count": 2, "Snape": {"_count": 1}, "I": {"_count": 1}}, "up": {"_count": 19, "to": {"_count": 6}, "on": {"_count": 1}, "after": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "an": {"_count": 1}, "but": {"_count": 2}, "for": {"_count": 1}, "at": {"_count": 1}}, "next": {"_count": 4, "to": {"_count": 4}}, "in": {"_count": 6, "front": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 3}, "our": {"_count": 1}}, "at": {"_count": 2, "either": {"_count": 2}}, "thus": {"_count": 1, "In": {"_count": 1}}, "him": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 4, "shame": {"_count": 1}, "sound": {"_count": 1}, "stink": {"_count": 1}, "bickering": {"_count": 1}}, "a": {"_count": 7, "cauldron": {"_count": 1}, "chance": {"_count": 5}, "good": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "another": {"_count": 4, "two": {"_count": 1}, "year": {"_count": 1}, "full": {"_count": 1}, "moment": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 9}, "!": {"_count": 1}, "?": {"_count": 2}}, "guard": {"_count": 5, "over": {"_count": 3}, "here": {"_count": 1}, "outside": {"_count": 1}}, "aside": {"_count": 3, "now": {"_count": 2}, "so": {"_count": 1}}, "two": {"_count": 1, "weeks": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "still": {"_count": 2, "": {"_count": 2}}, "this": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "there": {"_count": 3, "in": {"_count": 1}, "looking": {"_count": 1}, "twirling": {"_count": 1}}, "for": {"_count": 6, "this": {"_count": 2}, "": {"_count": 3}, "Dumbledores": {"_count": 1}}, "watching": {"_count": 1, "Aunt": {"_count": 1}}, "about": {"_count": 1, "elf": {"_count": 1}}, "far": {"_count": 1, "enough": {"_count": 1}}, "whatever": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 5, "watch": {"_count": 1}, "raise": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}, "look": {"_count": 1}}, "accused": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 3, "look": {"_count": 1}, "risk": {"_count": 1}, "discuss": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "": {"_count": 1}}, "here": {"_count": 3, "said": {"_count": 1}, "waiting": {"_count": 1}, "in": {"_count": 1}}, "united": {"_count": 1, "there": {"_count": 1}}, "around": {"_count": 3, "": {"_count": 1}, "chatting": {"_count": 1}, "gossiping": {"_count": 1}}, "that": {"_count": 1, "looked": {"_count": 1}}, "thats": {"_count": 1, "the": {"_count": 1}}, "traveling": {"_count": 1, "without": {"_count": 1}}, "together": {"_count": 1, "be": {"_count": 1}}, "fast": {"_count": 1, "and": {"_count": 1}}, "naked": {"_count": 1, "by": {"_count": 1}}, "no": {"_count": 1, "chance": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "but": {"_count": 1, "fell": {"_count": 1}}, "wizard": {"_count": 1, "invasions": {"_count": 1}}, "lets": {"_count": 1, "get": {"_count": 1}}, "being": {"_count": 1, "Harry": {"_count": 1}}, "behind": {"_count": 1, "Narcissa": {"_count": 1}}, "of": {"_count": 1, "card": {"_count": 1}}, "alongside": {"_count": 1, "the": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "seeing": {"_count": 1, "the": {"_count": 1}}, "beside": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "lying": {"_count": 1, "there": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "waiting": {"_count": 1, "there": {"_count": 1}}, "not": {"_count": 1, "knowing": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}}, "poor": {"_count": 90, "little": {"_count": 5, "Harry": {"_count": 1}, "girl": {"_count": 1}, "thing": {"_count": 1}, "things": {"_count": 1}, "Ariana": {"_count": 1}}, "toilets": {"_count": 1, "never": {"_count": 1}}, "boy": {"_count": 2, "isnt": {"_count": 1}, "": {"_count": 1}}, "thing": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "creature": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "Myrtle": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Dobby": {"_count": 1, "stammered": {"_count": 1}}, "people": {"_count": 2, "in": {"_count": 1}, "you": {"_count": 1}}, "Petrified": {"_count": 1, "peoples": {"_count": 1}}, "but": {"_count": 1, "brilliant": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "old": {"_count": 5, "Ripper": {"_count": 1}, "dear": {"_count": 1}, "Bertha": {"_count": 1}, "Kreacher": {"_count": 1}, "mans": {"_count": 1}}, "Scabbers": {"_count": 1, "eh": {"_count": 1}}, "dear": {"_count": 1, "boy": {"_count": 1}}, "mother": {"_count": 1, "": {"_count": 1}}, "fellow": {"_count": 2, "is": {"_count": 1}, "hes": {"_count": 1}}, "Professor": {"_count": 2, "Lupin": {"_count": 1}, "McGonagall": {"_count": 1}}, "way": {"_count": 1, "to": {"_count": 1}}, "Hagrids": {"_count": 1, "trouble": {"_count": 1}}, "Muggles": {"_count": 1, "though": {"_count": 1}}, "Eloise": {"_count": 1, "Midgen": {"_count": 1}}, "crowd": {"_count": 1, "control": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "master": {"_count": 1, "no": {"_count": 1}}, "man": {"_count": 1, "hes": {"_count": 1}}, "ickle": {"_count": 1, "goblins": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "ventriloquist": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 1, "though": {"_count": 1}}, "Mistress": {"_count": 3, "if": {"_count": 1}, "what": {"_count": 2}}, "things": {"_count": 1, "keep": {"_count": 1}}, "bloke": {"_count": 1, "": {"_count": 1}}, "job": {"_count": 2, "but": {"_count": 1}, "indeed": {"_count": 1}}, "even": {"_count": 1, "with": {"_count": 1}}, "elves": {"_count": 1, "I": {"_count": 1}}, "Sturgis": {"_count": 1, "": {"_count": 1}}, "chap": {"_count": 1, "": {"_count": 1}}, "puffedup": {"_count": 1, "popinjay": {"_count": 1}}, "lamb": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "results": {"_count": 1, "in": {"_count": 1}}, "Hannah": {"_count": 1, "Abbott": {"_count": 1}}, "Kreacher": {"_count": 2, "where": {"_count": 1}, "who": {"_count": 1}}, "lookout": {"_count": 1, "for": {"_count": 1}}, "brokendown": {"_count": 1, "old": {"_count": 1}}, "repayment": {"_count": 1, "if": {"_count": 1}}, "girl": {"_count": 1, "but": {"_count": 1}}, "heart": {"_count": 1, "where": {"_count": 1}}, "souls": {"_count": 1, "who": {"_count": 1}}, "Morfin": {"_count": 1, "Gaunt": {"_count": 1}}, "Kreachers": {"_count": 1, "mistress": {"_count": 1}}, "assistant": {"_count": 1, "madam": {"_count": 1}}, "besotted": {"_count": 1, "old": {"_count": 1}}, "beasts": {"_count": 1, "well": {"_count": 1}}, "friend": {"_count": 1, "Rupert": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "Rosmerta": {"_count": 1, "was": {"_count": 1}}, "health": {"_count": 1, "for": {"_count": 1}}, "owl": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 1, "permit": {"_count": 1}}, "leadership": {"_count": 1, "": {"_count": 1}}, "Albus": {"_count": 1, "who": {"_count": 1}}, "sister": {"_count": 1, "wouldnt": {"_count": 1}}, "recommendation": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "boy": {"_count": 1}}, "stick": {"_count": 1, "of": {"_count": 1}}, "father": {"_count": 1, "sought": {"_count": 1}}}, "ter": {"_count": 371, "live": {"_count": 4, "with": {"_count": 1}, "as": {"_count": 1}, "bunched": {"_count": 1}, "together": {"_count": 1}}, "summat": {"_count": 1, "stronger": {"_count": 1}}, "tell": {"_count": 11, "me": {"_count": 1}, "yeh": {"_count": 8}, "her": {"_count": 1}, "anyone": {"_count": 1}}, "see": {"_count": 16, "a": {"_count": 1}, "yeh": {"_count": 4}, "me": {"_count": 3}, "him": {"_count": 1}, "what": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 1}, "em": {"_count": 2}, "you": {"_count": 1}, "old": {"_count": 1}}, "Hogwarts": {"_count": 3, "not": {"_count": 1}, "": {"_count": 1}, "hasn": {"_count": 1}}, "trust": {"_count": 1, "didnt": {"_count": 1}}, "Dumbledore": {"_count": 1, "ter": {"_count": 1}}, "want": {"_count": 1, "anythin": {"_count": 1}}, "do": {"_count": 23, "with": {"_count": 5}, "": {"_count": 2}, "magic": {"_count": 1}, "a": {"_count": 1}, "tomorrow": {"_count": 1}, "today": {"_count": 1}, "important": {"_count": 1}, "that": {"_count": 1}, "would": {"_count": 1}, "is": {"_count": 1}, "it": {"_count": 6}, "which": {"_count": 1}, "we": {"_count": 1}}, "yer": {"_count": 1, "house": {"_count": 1}}, "make": {"_count": 6, "a": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 1}, "sure": {"_count": 1}}, "kill": {"_count": 3, "em": {"_count": 1}, "you": {"_count": 1}, "Buckbeak": {"_count": 1}}, "this": {"_count": 1, "lot": {"_count": 1}}, "ours": {"_count": 1, "": {"_count": 1}}, "go": {"_count": 19, "a": {"_count": 1}, "ter": {"_count": 2}, "": {"_count": 2}, "first": {"_count": 1}, "back": {"_count": 3}, "sneakin": {"_count": 1}, "down": {"_count": 1}, "Assuming": {"_count": 1}, "o": {"_count": 1}, "on": {"_count": 1}, "away": {"_count": 1}, "He": {"_count": 1}, "near": {"_count": 1}, "readin": {"_count": 1}, "with": {"_count": 1}}, "the": {"_count": 13, "finest": {"_count": 1}, "school": {"_count": 3}, "castle": {"_count": 3}, "path": {"_count": 1}, "core": {"_count": 1}, "Dark": {"_count": 1}, "Gurg": {"_count": 1}, "Order": {"_count": 1}, "day": {"_count": 1}}, "turn": {"_count": 1, "him": {"_count": 1}}, "anyone": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "follow": {"_count": 3, "yeh": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "take": {"_count": 7, "on": {"_count": 1}, "some": {"_count": 1}, "it": {"_count": 2}, "his": {"_count": 1}, "away": {"_count": 1}, "him": {"_count": 1}}, "town": {"_count": 1, "get": {"_count": 1}}, "London": {"_count": 2, "an": {"_count": 1}, "together": {"_count": 1}}, "try": {"_count": 6, "an": {"_count": 4}, "em": {"_count": 1}, "": {"_count": 1}}, "keep": {"_count": 3, "safe": {"_count": 1}, "together": {"_count": 1}, "him": {"_count": 1}}, "use": {"_count": 4, "magic": {"_count": 3}, "this": {"_count": 1}}, "row": {"_count": 1, "though": {"_count": 1}}, "er": {"_count": 1, "speed": {"_count": 1}}, "get": {"_count": 16, "out": {"_count": 1}, "yer": {"_count": 1}, "some": {"_count": 1}, "rid": {"_count": 2}, "started": {"_count": 1}, "past": {"_count": 1}, "Harry": {"_count": 1}, "back": {"_count": 1}, "me": {"_count": 1}, "on": {"_count": 1}, "ter": {"_count": 1}, "there": {"_count": 1}, "you": {"_count": 2}, "yeh": {"_count": 1}}, "buy": {"_count": 1, "": {"_count": 1}}, "meet": {"_count": 2, "yeh": {"_count": 2}}, "explain": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "that": {"_count": 1, "level": {"_count": 1}}, "introduce": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 2}, "!": {"_count": 1}}, "know": {"_count": 4, "": {"_count": 2}, "he": {"_count": 1}, "its": {"_count": 1}}, "steal": {"_count": 2, "it": {"_count": 1}, "any": {"_count": 1}}, "be": {"_count": 22, "honest": {"_count": 2}, "hurt": {"_count": 1}, "sure": {"_count": 1}, "gettin": {"_count": 2}, "with": {"_count": 2}, "alone": {"_count": 1}, "pureblood": {"_count": 1}, "ashamed": {"_count": 1}, "fine": {"_count": 1}, "careful": {"_count": 1}, "after": {"_count": 1}, "very": {"_count": 1}, "brought": {"_count": 1}, "quite": {"_count": 1}, "able": {"_count": 1}, "creepin": {"_count": 1}, "rude": {"_count": 1}, "well": {"_count": 1}, "back": {"_count": 1}}, "recognize": {"_count": 1, "diffrent": {"_count": 1}}, "stay": {"_count": 3, "at": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}}, "pay": {"_count": 2, "fer": {"_count": 1}, "em": {"_count": 1}}, "put": {"_count": 5, "it": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}, "their": {"_count": 1}, "yerself": {"_count": 1}}, "catch": {"_count": 2, "a": {"_count": 1}, "anythin": {"_count": 1}}, "GET": {"_count": 1, "BEHIND": {"_count": 1}}, "any": {"_count": 1, "old": {"_count": 1}}, "sleep": {"_count": 1, "Hagrid": {"_count": 1}}, "fix": {"_count": 1, "it": {"_count": 1}}, "all": {"_count": 2, "yer": {"_count": 1}, "wizards": {"_count": 1}}, "me": {"_count": 9, "": {"_count": 1}, "what": {"_count": 1}, "Hagrid": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}, "abou": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}}, "wait": {"_count": 1, "Hagrid": {"_count": 1}}, "bad": {"_count": 1, "blood": {"_count": 1}}, "find": {"_count": 4, "anyone": {"_count": 1}, "out": {"_count": 1}, "ter": {"_count": 1}, "him": {"_count": 1}}, "think": {"_count": 2, "its": {"_count": 1}, "they": {"_count": 1}}, "curse": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "school": {"_count": 2, "if": {"_count": 1}, "an": {"_count": 1}}, "pick": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 2, "signed": {"_count": 1}, "hippogriff": {"_count": 1}}, "him": {"_count": 3, "seconds": {"_count": 1}, "where": {"_count": 1}, "a": {"_count": 1}}, "threaten": {"_count": 1, "an": {"_count": 1}}, "feed": {"_count": 3, "Fang": {"_count": 1}, "him": {"_count": 1}, "ter": {"_count": 1}}, "you": {"_count": 6, "three": {"_count": 1}, "doesn": {"_count": 1}, "lot": {"_count": 1}, "might": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}}, "open": {"_count": 1, "their": {"_count": 1}}, "stroke": {"_count": 1, "em": {"_count": 1}}, "come": {"_count": 6, "a": {"_count": 1}, "an": {"_count": 2}, "back": {"_count": 2}, "said": {"_count": 1}}, "touch": {"_count": 1, "him": {"_count": 1}}, "blink": {"_count": 1, "": {"_count": 1}}, "ride": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "aunt": {"_count": 1}}, "trace": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 3, "ter": {"_count": 1}, "their": {"_count": 1}, "liked": {"_count": 1}}, "run": {"_count": 2, "fer": {"_count": 1}, "us": {"_count": 1}}, "sea": {"_count": 1, "": {"_count": 1}}, "Black": {"_count": 1, "before": {"_count": 1}}, "pieces": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 2, "Norbert": {"_count": 1}, "me": {"_count": 1}}, "hope": {"_count": 1, "Id": {"_count": 1}}, "Azkaban": {"_count": 1, "": {"_count": 1}}, "discuss": {"_count": 1, "with": {"_count": 1}}, "visit": {"_count": 2, "me": {"_count": 1}, "yeh": {"_count": 1}}, "help": {"_count": 5, "me": {"_count": 2}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 1}}, "overrule": {"_count": 1, "the": {"_count": 1}}, "ter": {"_count": 1, "be": {"_count": 1}}, "miss": {"_count": 1, "this": {"_count": 1}}, "raise": {"_count": 1, "em": {"_count": 1}}, "suck": {"_count": 1, "blood": {"_count": 1}}, "say": {"_count": 4, "": {"_count": 2}, "\u2018theres": {"_count": 1}, "didn": {"_count": 1}}, "spoil": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "look": {"_count": 4, "after": {"_count": 2}, "like": {"_count": 1}, "inter": {"_count": 1}}, "happen": {"_count": 2, "ter": {"_count": 1}, "": {"_count": 1}}, "show": {"_count": 1, "yeh": {"_count": 1}}, "talk": {"_count": 2, "about": {"_count": 1}, "abou": {"_count": 1}}, "fetch": {"_count": 1, "yeh": {"_count": 1}}, "win": {"_count": 3, "I": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}}, "spot": {"_count": 1, "than": {"_count": 1}}, "set": {"_count": 1, "em": {"_count": 1}}, "your": {"_count": 1, "hands": {"_count": 1}}, "stop": {"_count": 1, "him": {"_count": 1}}, "eat": {"_count": 1, "": {"_count": 1}}, "mountaineerin": {"_count": 1, "accidents": {"_count": 1}}, "fer": {"_count": 1, "humans": {"_count": 1}}, "give": {"_count": 5, "the": {"_count": 1}, "up": {"_count": 1}, "ter": {"_count": 1}, "em": {"_count": 1}, "im": {"_count": 1}}, "lay": {"_count": 1, "off": {"_count": 1}}, "them": {"_count": 1, "already": {"_count": 1}}, "ourselves": {"_count": 1, "as": {"_count": 1}}, "stick": {"_count": 1, "together": {"_count": 1}}, "hold": {"_count": 1, "our": {"_count": 1}}, "Karkuss": {"_count": 1, "feet": {"_count": 1}}, "test": {"_count": 1, "out": {"_count": 1}}, "spend": {"_count": 1, "that": {"_count": 1}}, "listen": {"_count": 2, "to": {"_count": 1}, "but": {"_count": 1}}, "Karkus": {"_count": 1, "": {"_count": 1}}, "leg": {"_count": 1, "it": {"_count": 1}}, "march": {"_count": 1, "inter": {"_count": 1}}, "rethink": {"_count": 1, "a": {"_count": 1}}, "tangle": {"_count": 1, "with": {"_count": 1}}, "attack": {"_count": 1, "em": {"_count": 1}}, "swing": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "Fang": {"_count": 1, "said": {"_count": 1}}, "call": {"_count": 1, "earlier": {"_count": 1}}, "wipe": {"_count": 1, "yer": {"_count": 1}}, "train": {"_count": 1, "em": {"_count": 1}}, "Harry": {"_count": 1, "he": {"_count": 1}}, "Apparate": {"_count": 1, "an": {"_count": 1}}, "Gryffindor": {"_count": 1, "": {"_count": 1}}, "prepare": {"_count": 1, "couple": {"_count": 1}}, "death": {"_count": 1, "They": {"_count": 1}}, "bring": {"_count": 1, "him": {"_count": 1}}, "teach": {"_count": 2, "him": {"_count": 1}, "em": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "people": {"_count": 1, "hell": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "GRAWPY": {"_count": 1, "NO": {"_count": 1}}, "blend": {"_count": 1, "in": {"_count": 1}}, "sit": {"_count": 1, "around": {"_count": 1}}, "send": {"_count": 1, "a": {"_count": 1}}, "Buck": {"_count": 1, "I": {"_count": 1}}, "break": {"_count": 1, "down": {"_count": 1}}, "Aragog": {"_count": 1, "": {"_count": 1}}, "squeeze": {"_count": 1, "me": {"_count": 1}}, "dinner": {"_count": 1, "till": {"_count": 1}}, "hurt": {"_count": 1, "him": {"_count": 1}}, "Hagrid": {"_count": 1, "why": {"_count": 1}}, "lose": {"_count": 1, "me": {"_count": 1}}, "draw": {"_count": 1, "attention": {"_count": 1}}, "block": {"_count": 1, "it": {"_count": 1}}, "finish": {"_count": 1, "me": {"_count": 1}}, "twigs": {"_count": 1, "poor": {"_count": 1}}, "decide": {"_count": 1, "": {"_count": 1}}, "repair": {"_count": 1, "it": {"_count": 1}}, "write": {"_count": 1, "fer": {"_count": 1}}, "fight": {"_count": 1, "": {"_count": 1}}, "gimme": {"_count": 1, "Potter": {"_count": 1}}, "join": {"_count": 1, "in": {"_count": 1}}}, "sad": {"_count": 23, "but": {"_count": 1, "get": {"_count": 1}}, "knew": {"_count": 1, "yer": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "limp": {"_count": 1, "remainder": {"_count": 1}}, "and": {"_count": 3, "sorrylooking": {"_count": 1}, "tired": {"_count": 1}, "cold": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "day": {"_count": 1, "indeed": {"_count": 1}}, "sorry": {"_count": 1, "tale": {"_count": 1}}, "But": {"_count": 1, "Peevesy": {"_count": 1}}, "little": {"_count": 2, "disbelieving": {"_count": 1}, "smile": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "memories": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "chuckle": {"_count": 1, "": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "song": {"_count": 1, "about": {"_count": 1}}, "business": {"_count": 1, "though": {"_count": 1}}, "occasion": {"_count": 1, "I": {"_count": 1}}}, "grip": {"_count": 78, "on": {"_count": 24, "yourself": {"_count": 4}, "her": {"_count": 2}, "herself": {"_count": 1}, "Harrys": {"_count": 3}, "Buckbeaks": {"_count": 1}, "his": {"_count": 4}, "it": {"_count": 1}, "Trevor": {"_count": 1}, "himself": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 5}}, "as": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 2, "beckoned": {"_count": 1}, "added": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 19}}, "instead": {"_count": 1, "of": {"_count": 1}}, "Harrys": {"_count": 1, "shoulder": {"_count": 1}}, "it": {"_count": 1, "sped": {"_count": 1}}, "so": {"_count": 1, "tight": {"_count": 1}}, "tightening": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 10, "dug": {"_count": 1}, "smacked": {"_count": 1}, "she": {"_count": 1}, "swam": {"_count": 1}, "leapt": {"_count": 1}, "landed": {"_count": 1}, "turned": {"_count": 1}, "rearing": {"_count": 1}, "I": {"_count": 1}, "was": {"_count": 1}}, "upon": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "Rons": {"_count": 1}}, "staring": {"_count": 1, "behind": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "Kreacher": {"_count": 1, "actually": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "tightly": {"_count": 1, "before": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "looking": {"_count": 1, "furious": {"_count": 1}}, "too": {"_count": 1, "hard": {"_count": 1}}, "something": {"_count": 1, "invisible": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "pointed": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 1, "enchantments": {"_count": 1}}, "each": {"_count": 1, "others": {"_count": 1}}}, "patting": {"_count": 31, "Hagrid": {"_count": 1, "gingerly": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "his": {"_count": 5, "crossbow": {"_count": 1}, "leg": {"_count": 1}, "beak": {"_count": 1}, "arm": {"_count": 1}, "mother": {"_count": 1}}, "her": {"_count": 9, "hair": {"_count": 1}, "on": {"_count": 5}, "firmly": {"_count": 1}, "vaguely": {"_count": 1}, "clumsily": {"_count": 1}}, "him": {"_count": 2, "on": {"_count": 2}}, "Harry": {"_count": 2, "genially": {"_count": 1}, "shakily": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 4, "parchment": {"_count": 1}, "heading": {"_count": 1}, "ground": {"_count": 1}, "locket": {"_count": 1}}, "Rons": {"_count": 1, "arm": {"_count": 1}}, "Harrys": {"_count": 1, "shoulder": {"_count": 1}}, "Hermione": {"_count": 1, "gently": {"_count": 1}}, "Neville": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "gingerly": {"_count": 14, "on": {"_count": 3, "the": {"_count": 3}}, "to": {"_count": 3, "his": {"_count": 2}, "reveal": {"_count": 1}}, "and": {"_count": 1, "sniffing": {"_count": 1}}, "it": {"_count": 1, "shook": {"_count": 1}}, "which": {"_count": 1, "made": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "she": {"_count": 1, "picked": {"_count": 1}}}, "arm": {"_count": 352, "as": {"_count": 11, "Dumbledore": {"_count": 1}, "he": {"_count": 2}, "though": {"_count": 5}, "tightly": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 82, ".": {"_count": 75}, "?": {"_count": 6}, "!": {"_count": 1}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "around": {"_count": 21, "him": {"_count": 1}, "her": {"_count": 6}, "his": {"_count": 6}, "Lavenders": {"_count": 1}, "Fleurs": {"_count": 1}, "the": {"_count": 1}, "Nevilles": {"_count": 1}, "Ginnys": {"_count": 1}, "Hermione": {"_count": 1}, "Hermiones": {"_count": 1}, "Rons": {"_count": 1}}, "which": {"_count": 3, "Fred": {"_count": 1}, "was": {"_count": 1}, "felt": {"_count": 1}}, "supporting": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 61, "streaked": {"_count": 1}, "he": {"_count": 2}, "hung": {"_count": 1}, "legholes": {"_count": 1}, "pulled": {"_count": 5}, "bringing": {"_count": 1}, "fingers": {"_count": 1}, "it": {"_count": 2}, "leg": {"_count": 1}, "heaved": {"_count": 2}, "still": {"_count": 1}, "ran": {"_count": 1}, "heard": {"_count": 1}, "dragged": {"_count": 3}, "caught": {"_count": 1}, "marched": {"_count": 1}, "led": {"_count": 2}, "they": {"_count": 2}, "started": {"_count": 1}, "catching": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "blood": {"_count": 1}, "helped": {"_count": 1}, "wheeled": {"_count": 1}, "slowing": {"_count": 1}, "said": {"_count": 1}, "beaming": {"_count": 1}, "holding": {"_count": 1}, "swinging": {"_count": 1}, "attempting": {"_count": 1}, "attempted": {"_count": 1}, "halting": {"_count": 1}, "took": {"_count": 1}, "held": {"_count": 1}, "missed": {"_count": 1}, "frogmarched": {"_count": 1}, "seemed": {"_count": 1}, "a": {"_count": 1}, "shook": {"_count": 1}, "Harry": {"_count": 1}, "hurried": {"_count": 1}, "turned": {"_count": 1}, "Hermione": {"_count": 1}, "knew": {"_count": 1}, "backed": {"_count": 1}, "forced": {"_count": 1}, "together": {"_count": 1}, "screamed": {"_count": 1}, "hit": {"_count": 1}}, "raised": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 18, "stop": {"_count": 4}, "an": {"_count": 1}, "hold": {"_count": 1}, "make": {"_count": 2}, "break": {"_count": 1}, "yours": {"_count": 1}, "Rons": {"_count": 1}, "restrain": {"_count": 1}, "check": {"_count": 1}, "drink": {"_count": 1}, "one": {"_count": 1}, "give": {"_count": 1}, "signal": {"_count": 1}, "put": {"_count": 1}}, "wrenched": {"_count": 1, "from": {"_count": 1}}, "you": {"_count": 2, "against": {"_count": 2}}, "Harry": {"_count": 4, "recognized": {"_count": 1}, "threw": {"_count": 1}, "felt": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "Malfoys": {"_count": 1}}, "from": {"_count": 4, "which": {"_count": 2}, "Lupins": {"_count": 1}, "around": {"_count": 1}}, "break": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 5, "slid": {"_count": 1}, "carried": {"_count": 1}, "hissed": {"_count": 1}, "forced": {"_count": 1}, "could": {"_count": 1}}, "dangling": {"_count": 1, "useless": {"_count": 1}}, "was": {"_count": 6, "hanging": {"_count": 1}, "being": {"_count": 1}, "feeling": {"_count": 1}, "so": {"_count": 1}, "out": {"_count": 1}, "pressed": {"_count": 1}}, "but": {"_count": 5, "his": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "even": {"_count": 1}}, "didnt": {"_count": 1, "hurt": {"_count": 1}}, "into": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "flapped": {"_count": 1, "pointlessly": {"_count": 1}}, "now": {"_count": 1, "felt": {"_count": 1}}, "reboned": {"_count": 1, "but": {"_count": 1}}, "for": {"_count": 1, "silence": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "blood": {"_count": 1, "splattered": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "Weasley": {"_count": 1, "cut": {"_count": 1}}, "in": {"_count": 11, "arm": {"_count": 5}, "im": {"_count": 1}, "a": {"_count": 2}, "them": {"_count": 1}, "cheery": {"_count": 1}, "it": {"_count": 1}}, "with": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 2}, "Parvati": {"_count": 1}}, "of": {"_count": 7, "Harrys": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 1}, "Hermiones": {"_count": 1}, "Ginnys": {"_count": 1}, "Lord": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 5}}, "painfully": {"_count": 1, "hard": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 1}, "pulled": {"_count": 1}, "and": {"_count": 1}}, "under": {"_count": 2, "his": {"_count": 2}}, "rose": {"_count": 1, "but": {"_count": 1}}, "chained": {"_count": 1, "to": {"_count": 1}}, "once": {"_count": 2, "and": {"_count": 1}, "this": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "his": {"_count": 1, "broomstick": {"_count": 1}}, "the": {"_count": 1, "Bulgarian": {"_count": 1}}, "Ron": {"_count": 2, "gave": {"_count": 1}, "Nevilles": {"_count": 1}}, "sympathetically": {"_count": 1, "": {"_count": 1}}, "yourself": {"_count": 1, "for": {"_count": 1}}, "below": {"_count": 1, "the": {"_count": 1}}, "gasping": {"_count": 1, "and": {"_count": 1}}, "scrambled": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "Stand": {"_count": 1, "aside": {"_count": 1}}, "then": {"_count": 1, "looked": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Hedwig": {"_count": 1, "took": {"_count": 1}}, "where": {"_count": 3, "it": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "tired": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 1, "drew": {"_count": 1}}, "extended": {"_count": 1, "too": {"_count": 1}}, "until": {"_count": 1, "she": {"_count": 1}}, "twelve": {"_count": 1, "inches": {"_count": 1}}, "closed": {"_count": 1, "with": {"_count": 1}}, "so": {"_count": 5, "tightly": {"_count": 4}, "that": {"_count": 1}}, "descended": {"_count": 1, "from": {"_count": 1}}, "tightly": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "bent": {"_count": 2, "bizarrely": {"_count": 1}, "out": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 2}}, "still": {"_count": 2, "raised": {"_count": 1}, "around": {"_count": 1}}, "came": {"_count": 1, "out": {"_count": 1}}, "round": {"_count": 1, "my": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "nevertheless": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "its": {"_count": 1}}, "very": {"_count": 1, "tightly": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "twist": {"_count": 1, "away": {"_count": 1}}, "a": {"_count": 2, "hard": {"_count": 1}, "feeling": {"_count": 1}}, "Malfoy": {"_count": 1, "had": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "pointing": {"_count": 2, "after": {"_count": 1}, "at": {"_count": 1}}, "bravely": {"_count": 1, "into": {"_count": 1}}, "free": {"_count": 1, "clutching": {"_count": 1}}, "punching": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "pulling": {"_count": 1, "him": {"_count": 1}}, "not": {"_count": 1, "holding": {"_count": 1}}, "It": {"_count": 1, "released": {"_count": 1}}, "His": {"_count": 1, "Hand": {"_count": 1}}, "upward": {"_count": 1, "to": {"_count": 1}}, "NO": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}, "curved": {"_count": 1, "to": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "waved": {"_count": 1, "vaguely": {"_count": 1}}, "mangled": {"_count": 1, "and": {"_count": 1}}, "pressed": {"_count": 1, "against": {"_count": 1}}, "trembling": {"_count": 1, "against": {"_count": 1}}, "Hermione": {"_count": 1, "hoisted": {"_count": 1}}, "or": {"_count": 1, "body": {"_count": 1}}, "waving": {"_count": 1, "from": {"_count": 1}}}, "stepped": {"_count": 162, "over": {"_count": 18, "the": {"_count": 11}, "him": {"_count": 1}, "a": {"_count": 2}, "you": {"_count": 1}, "his": {"_count": 1}, "or": {"_count": 1}, "Bill": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 4}}, "inside": {"_count": 6, "": {"_count": 4}, "wondering": {"_count": 1}, "the": {"_count": 1}}, "forward": {"_count": 22, "holding": {"_count": 1}, "whispers": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 4}, "the": {"_count": 1}, "eagerly": {"_count": 1}, "waved": {"_count": 1}, "to": {"_count": 1}, "through": {"_count": 1}, "away": {"_count": 1}, "so": {"_count": 1}, "turned": {"_count": 1}, "into": {"_count": 2}, "glancing": {"_count": 1}, "on": {"_count": 1}}, "in": {"_count": 7, "front": {"_count": 3}, "his": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}, "too": {"_count": 1}}, "aside": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "underneath": {"_count": 1, "it": {"_count": 1}}, "out": {"_count": 26, "into": {"_count": 11}, "from": {"_count": 3}, "behind": {"_count": 1}, "his": {"_count": 1}, "of": {"_count": 8}, "onto": {"_count": 2}}, "into": {"_count": 18, "the": {"_count": 14}, "it": {"_count": 1}, "Flourish": {"_count": 1}, "a": {"_count": 1}, "Umbridges": {"_count": 1}}, "carefully": {"_count": 3, "over": {"_count": 2}, "out": {"_count": 1}}, "up": {"_count": 5, "to": {"_count": 5}}, "right": {"_count": 2, "into": {"_count": 1}, "through": {"_count": 1}}, "on": {"_count": 3, "it": {"_count": 1}, "what": {"_count": 1}, "his": {"_count": 1}}, "onto": {"_count": 6, "it": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 3}}, "off": {"_count": 3, "the": {"_count": 3}}, "closer": {"_count": 1, "": {"_count": 1}}, "backward": {"_count": 2, "": {"_count": 2}}, "down": {"_count": 2, "a": {"_count": 1}, "onto": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 2, "again": {"_count": 1}, "onto": {"_count": 1}}, "back": {"_count": 11, "through": {"_count": 1}, "a": {"_count": 1}, "from": {"_count": 4}, "and": {"_count": 1}, "hastily": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 1}, "tiny": {"_count": 1}}, "after": {"_count": 1, "them": {"_count": 1}}, "unexpectedly": {"_count": 1, "off": {"_count": 1}}, "easily": {"_count": 1, "and": {"_count": 1}}, "sideways": {"_count": 1, "so": {"_count": 1}}, "one": {"_count": 1, "after": {"_count": 1}}, "directly": {"_count": 1, "into": {"_count": 1}}, "smartly": {"_count": 1, "over": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "swiftly": {"_count": 1, "between": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "nearer": {"_count": 1, "and": {"_count": 1}}}, "laid": {"_count": 57, "Harry": {"_count": 1, "gently": {"_count": 1}}, "eyes": {"_count": 2, "on": {"_count": 2}}, "with": {"_count": 1, "glittering": {"_count": 1}}, "him": {"_count": 4, "on": {"_count": 2}, "to": {"_count": 1}, "sideways": {"_count": 1}}, "on": {"_count": 1, "handsome": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "a": {"_count": 4, "finger": {"_count": 1}, "hand": {"_count": 2}, "delicate": {"_count": 1}}, "upon": {"_count": 3, "it": {"_count": 2}, "you": {"_count": 1}}, "it": {"_count": 6, "on": {"_count": 2}, "aside": {"_count": 2}, "pillowlike": {"_count": 1}, "in": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "aside": {"_count": 2, "his": {"_count": 1}, "Professor": {"_count": 1}}, "the": {"_count": 6, "things": {"_count": 1}, "foundation": {"_count": 1}, "robes": {"_count": 1}, "map": {"_count": 1}, "table": {"_count": 1}, "broken": {"_count": 1}}, "down": {"_count": 6, "his": {"_count": 3}, "her": {"_count": 1}, "by": {"_count": 1}, "their": {"_count": 1}}, "eggs": {"_count": 1, "or": {"_count": 1}}, "an": {"_count": 1, "anxious": {"_count": 1}}, "out": {"_count": 6, "his": {"_count": 1}, "cushions": {"_count": 1}, "before": {"_count": 1}, "any": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}}, "Morfins": {"_count": 1, "wand": {"_count": 1}}, "to": {"_count": 2, "rest": {"_count": 2}}, "plans": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "dinner": {"_count": 1}}, "information": {"_count": 1, "about": {"_count": 1}}, "themselves": {"_count": 1, "upon": {"_count": 1}}, "bare": {"_count": 1, "Rons": {"_count": 1}}, "that": {"_count": 1, "tray": {"_count": 1}}, "Dobby": {"_count": 1, "to": {"_count": 1}}, "hands": {"_count": 1, "on": {"_count": 1}}}, "doorstep": {"_count": 13, "took": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 4}}, "eleven": {"_count": 1, "years": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "six": {"_count": 1, "months": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "fifteen": {"_count": 1, "years": {"_count": 1}}, "she": {"_count": 1, "turned": {"_count": 1}}, "of": {"_count": 1, "Kingsley": {"_count": 1}}}, "tucked": {"_count": 26, "it": {"_count": 11, "inside": {"_count": 5}, "deep": {"_count": 1}, "in": {"_count": 1}, "under": {"_count": 1}, "safely": {"_count": 1}, "around": {"_count": 1}, "out": {"_count": 1}}, "away": {"_count": 3, "in": {"_count": 2}, "her": {"_count": 1}}, "in": {"_count": 1, "Ron": {"_count": 1}}, "the": {"_count": 5, "sword": {"_count": 1}, "map": {"_count": 1}, "enormous": {"_count": 1}, "ends": {"_count": 1}, "photograph": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "tightly": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 2, "porridge": {"_count": 1}, "an": {"_count": 1}}, "them": {"_count": 2, "inside": {"_count": 1}, "away": {"_count": 1}}}, "Harrys": {"_count": 1459, "blankets": {"_count": 1, "and": {"_count": 1}}, "direction": {"_count": 7, "": {"_count": 5}, "warned": {"_count": 1}, "before": {"_count": 1}}, "heart": {"_count": 54, "gave": {"_count": 4}, "did": {"_count": 1}, "rose": {"_count": 1}, "": {"_count": 4}, "leapt": {"_count": 8}, "lightened": {"_count": 1}, "dropped": {"_count": 1}, "was": {"_count": 9}, "sank": {"_count": 12}, "turned": {"_count": 1}, "began": {"_count": 4}, "beat": {"_count": 1}, "skipped": {"_count": 1}, "filled": {"_count": 1}, "missed": {"_count": 1}, "however": {"_count": 1}, "thundered": {"_count": 1}, "seemed": {"_count": 1}, "lurched": {"_count": 1}}, "Im": {"_count": 1, "warning": {"_count": 1}}, "surprise": {"_count": 4, "as": {"_count": 1}, "Hermione": {"_count": 2}, "Professor": {"_count": 1}}, "headmistress": {"_count": 1, "telling": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "new": {"_count": 4, "uniform": {"_count": 1}, "resolution": {"_count": 1}, "robes": {"_count": 1}, "spell": {"_count": 1}}, "got": {"_count": 6, "something": {"_count": 1}, "a": {"_count": 3}, "Hedwig": {"_count": 1}, "it": {"_count": 1}}, "letter": {"_count": 3, "clutched": {"_count": 1}, "without": {"_count": 1}, "Hermione": {"_count": 1}}, "eleventh": {"_count": 1, "birthday": {"_count": 1}}, "whole": {"_count": 3, "arm": {"_count": 1}, "body": {"_count": 2}}, "head": {"_count": 47, "like": {"_count": 2}, "was": {"_count": 5}, "where": {"_count": 1}, "": {"_count": 11}, "almost": {"_count": 1}, "stand": {"_count": 1}, "and": {"_count": 3}, "had": {"_count": 1}, "hooting": {"_count": 1}, "swam": {"_count": 1}, "gave": {"_count": 1}, "lifting": {"_count": 1}, "throbbed": {"_count": 1}, "jerked": {"_count": 1}, "spun": {"_count": 1}, "as": {"_count": 2}, "slammed": {"_count": 1}, "seemed": {"_count": 1}, "down": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}, "felt": {"_count": 1}, "all": {"_count": 1}, "from": {"_count": 1}, "answered": {"_count": 1}, "smiled": {"_count": 1}, "so": {"_count": 1}, "He": {"_count": 1}, "into": {"_count": 1}}, "mind": {"_count": 34, "": {"_count": 10}, "was": {"_count": 7}, "had": {"_count": 3}, "as": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 1}, "though": {"_count": 1}, "however": {"_count": 1}, "Dumbledore": {"_count": 1}, "worked": {"_count": 1}, "with": {"_count": 1}, "of": {"_count": 1}, "wandered": {"_count": 1}, "for": {"_count": 1}, "means": {"_count": 1}, "and": {"_count": 1}}, "shoulder": {"_count": 33, "and": {"_count": 5}, "": {"_count": 11}, "as": {"_count": 2}, "but": {"_count": 2}, "folded": {"_count": 1}, "talking": {"_count": 1}, "again": {"_count": 1}, "a": {"_count": 1}, "was": {"_count": 1}, "kissed": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}, "until": {"_count": 1}, "knocking": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "every": {"_count": 1}}, "knees": {"_count": 7, "buckle": {"_count": 1}, "were": {"_count": 1}, "choked": {"_count": 1}, "": {"_count": 1}, "buckled": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "hand": {"_count": 45, "ccant": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 7}, "Harry": {"_count": 2}, "and": {"_count": 10}, "Fudge": {"_count": 1}, "in": {"_count": 2}, "for": {"_count": 1}, "away": {"_count": 1}, "without": {"_count": 1}, "had": {"_count": 2}, "too": {"_count": 1}, "became": {"_count": 1}, "but": {"_count": 2}, "up": {"_count": 1}, "hopelessly": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}, "was": {"_count": 2}, "to": {"_count": 1}, "found": {"_count": 1}, "energetically": {"_count": 1}, "with": {"_count": 1}, "brushed": {"_count": 1}, "although": {"_count": 1}}, "amazement": {"_count": 3, "": {"_count": 1}, "giggled": {"_count": 1}, "he": {"_count": 1}}, "age": {"_count": 1, "had": {"_count": 1}}, "eyes": {"_count": 53, "stung": {"_count": 1}, "and": {"_count": 2}, "this": {"_count": 1}, "exactly": {"_count": 1}, "wandered": {"_count": 1}, "narrowed": {"_count": 1}, "were": {"_count": 5}, "darted": {"_count": 1}, "rolled": {"_count": 1}, "": {"_count": 10}, "immediately": {"_count": 1}, "snapped": {"_count": 2}, "traveled": {"_count": 1}, "had": {"_count": 3}, "for": {"_count": 1}, "watered": {"_count": 1}, "followed": {"_count": 1}, "she": {"_count": 1}, "met": {"_count": 2}, "instead": {"_count": 1}, "became": {"_count": 2}, "began": {"_count": 1}, "discerned": {"_count": 1}, "after": {"_count": 1}, "Slughorn": {"_count": 1}, "sought": {"_count": 1}, "however": {"_count": 1}, "upon": {"_count": 1}, "still": {"_count": 1}, "flew": {"_count": 2}, "dropped": {"_count": 1}, "again": {"_count": 1}, "open": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "school": {"_count": 5, "books": {"_count": 1}, "aloud": {"_count": 1}, "trunk": {"_count": 3}}, "list": {"_count": 1, "again": {"_count": 1}}, "forehead": {"_count": 18, "with": {"_count": 1}, "": {"_count": 12}, "and": {"_count": 2}, "seared": {"_count": 1}, "was": {"_count": 1}, "prickled": {"_count": 1}}, "relief": {"_count": 3, "spotted": {"_count": 1}, "Rons": {"_count": 1}, "they": {"_count": 1}}, "wand": {"_count": 46, "back": {"_count": 1}, "tapped": {"_count": 1}, "had": {"_count": 6}, "they": {"_count": 1}, "shone": {"_count": 1}, "between": {"_count": 1}, "": {"_count": 7}, "from": {"_count": 1}, "at": {"_count": 1}, "fell": {"_count": 1}, "to": {"_count": 1}, "NO": {"_count": 1}, "flew": {"_count": 2}, "behind": {"_count": 1}, "but": {"_count": 1}, "than": {"_count": 1}, "and": {"_count": 4}, "clutched": {"_count": 1}, "what": {"_count": 1}, "which": {"_count": 3}, "was": {"_count": 3}, "tip": {"_count": 1}, "vibrated": {"_count": 1}, "its": {"_count": 1}, "into": {"_count": 1}, "inside": {"_count": 1}, "nothing": {"_count": 1}}, "lap": {"_count": 8, "": {"_count": 3}, "by": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 1}}, "last": {"_count": 1, "month": {"_count": 1}}, "huge": {"_count": 1, "heavy": {"_count": 1}}, "trunk": {"_count": 11, "onto": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 1}, "under": {"_count": 1}, "and": {"_count": 2}, "rose": {"_count": 1}, "": {"_count": 1}, "between": {"_count": 1}, "upon": {"_count": 1}}, "mouth": {"_count": 14, "went": {"_count": 1}, "fell": {"_count": 5}, "and": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}, "they": {"_count": 1}, "yet": {"_count": 1}, "so": {"_count": 1}, "before": {"_count": 1}, "was": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "a": {"_count": 1}}, "lightning": {"_count": 1, "scar": {"_count": 1}}, "pasties": {"_count": 1, "cakes": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "stomach": {"_count": 29, "lurched": {"_count": 3}, "gave": {"_count": 5}, "plummeted": {"_count": 1}, "knocking": {"_count": 1}, "turned": {"_count": 5}, "": {"_count": 1}, "leapt": {"_count": 1}, "slipped": {"_count": 1}, "seemed": {"_count": 1}, "already": {"_count": 1}, "did": {"_count": 2}, "contracted": {"_count": 1}, "tightened": {"_count": 1}, "squirmed": {"_count": 1}, "ache": {"_count": 1}, "clawing": {"_count": 1}, "churned": {"_count": 1}, "started": {"_count": 1}}, "first": {"_count": 4, "thought": {"_count": 2}, "Quidditch": {"_count": 1}, "dinner": {"_count": 1}}, "imagination": {"_count": 5, "after": {"_count": 1}, "zoomed": {"_count": 1}, "showed": {"_count": 1}, "could": {"_count": 1}, "was": {"_count": 1}}, "other": {"_count": 6, "side": {"_count": 3}, "best": {"_count": 1}, "hand": {"_count": 1}, "presents": {"_count": 1}}, "legs": {"_count": 8, "were": {"_count": 2}, "": {"_count": 2}, "began": {"_count": 1}, "felt": {"_count": 1}, "purring": {"_count": 1}, "and": {"_count": 1}}, "name": {"_count": 8, "he": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "just": {"_count": 1}, "in": {"_count": 1}, "got": {"_count": 1}, "written": {"_count": 1}, "convincing": {"_count": 1}}, "plate": {"_count": 2, "": {"_count": 1}, "shes": {"_count": 1}}, "knee": {"_count": 4, "and": {"_count": 2}, "": {"_count": 2}}, "broom": {"_count": 7, "jumped": {"_count": 1}, "spun": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "acted": {"_count": 1}, "a": {"_count": 1}, "really": {"_count": 1}}, "face": {"_count": 54, "he": {"_count": 1}, "": {"_count": 29}, "Ron": {"_count": 1}, "burned": {"_count": 1}, "removed": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 8}, "said": {"_count": 1}, "until": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}, "muttering": {"_count": 1}, "eyes": {"_count": 1}, "felt": {"_count": 1}, "for": {"_count": 1}, "took": {"_count": 1}, "humor": {"_count": 1}, "to": {"_count": 1}, "pulled": {"_count": 1}}, "bathrobe": {"_count": 1, "for": {"_count": 1}}, "bedspread": {"_count": 1, "": {"_count": 1}}, "partner": {"_count": 1, "was": {"_count": 1}}, "broomstick": {"_count": 1, "had": {"_count": 1}}, "is": {"_count": 1, "better": {"_count": 1}}, "sweater": {"_count": 1, "": {"_count": 1}}, "best": {"_count": 5, "Christmas": {"_count": 1}, "friends": {"_count": 1}, "interests": {"_count": 1}, "subject": {"_count": 1}, "chance": {"_count": 1}}, "neck": {"_count": 15, "prickled": {"_count": 1}, "Harrys": {"_count": 1}, "": {"_count": 3}, "in": {"_count": 1}, "for": {"_count": 1}, "stand": {"_count": 2}, "and": {"_count": 1}, "back": {"_count": 1}, "prickle": {"_count": 1}, "stood": {"_count": 1}, "still": {"_count": 1}, "A": {"_count": 1}}, "did": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "knobbly": {"_count": 1, "knees": {"_count": 1}}, "route": {"_count": 1, "from": {"_count": 1}}, "won": {"_count": 1, "": {"_count": 1}}, "victory": {"_count": 1, "faded": {"_count": 1}}, "ear": {"_count": 25, "": {"_count": 15}, "but": {"_count": 2}, "told": {"_count": 1}, "and": {"_count": 5}, "down": {"_count": 1}, "the": {"_count": 1}}, "Invisibility": {"_count": 2, "Cloak": {"_count": 2}}, "shortcuts": {"_count": 1, "didnt": {"_count": 1}}, "brain": {"_count": 11, "each": {"_count": 1}, "seemed": {"_count": 3}, "": {"_count": 1}, "was": {"_count": 1}, "filled": {"_count": 1}, "reeled": {"_count": 1}, "Shes": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}}, "robe": {"_count": 1, "and": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "question": {"_count": 4, "": {"_count": 1}, "was": {"_count": 2}, "like": {"_count": 1}}, "feet": {"_count": 22, "": {"_count": 8}, "stopped": {"_count": 1}, "sending": {"_count": 1}, "cracked": {"_count": 1}, "and": {"_count": 1}, "seemed": {"_count": 1}, "left": {"_count": 2}, "stiff": {"_count": 1}, "hit": {"_count": 1}, "momentarily": {"_count": 1}, "slammed": {"_count": 1}, "parted": {"_count": 1}, "found": {"_count": 1}, "touched": {"_count": 1}}, "horror": {"_count": 6, "a": {"_count": 1}, "she": {"_count": 1}, "Ron": {"_count": 1}, "Slughorn": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}}, "scar": {"_count": 30, "his": {"_count": 1}, "was": {"_count": 6}, "": {"_count": 3}, "and": {"_count": 1}, "exploded": {"_count": 1}, "burned": {"_count": 3}, "seared": {"_count": 2}, "burst": {"_count": 1}, "this": {"_count": 1}, "forced": {"_count": 1}, "kept": {"_count": 1}, "continued": {"_count": 1}, "prickled": {"_count": 1}, "which": {"_count": 1}, "threatened": {"_count": 1}, "felt": {"_count": 1}, "throbbed": {"_count": 2}, "scorched": {"_count": 1}, "had": {"_count": 1}}, "own": {"_count": 6, "head": {"_count": 1}, "diary": {"_count": 1}, "parents": {"_count": 1}, "age": {"_count": 1}, "face": {"_count": 2}}, "eye": {"_count": 11, "and": {"_count": 7}, "level": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 2}}, "life": {"_count": 7, "better": {"_count": 1}, "until": {"_count": 1}, "remember": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 2}}, "family": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "spellbooks": {"_count": 2, "his": {"_count": 1}, "wand": {"_count": 1}}, "owl": {"_count": 2, "Hedwig": {"_count": 1}, "had": {"_count": 1}}, "very": {"_count": 3, "mysterious": {"_count": 1}, "eyes": {"_count": 1}, "great": {"_count": 1}}, "parents": {"_count": 8, "had": {"_count": 3}, "because": {"_count": 1}, "": {"_count": 1}, "wedding": {"_count": 1}, "might": {"_count": 1}, "and": {"_count": 1}}, "twelfth": {"_count": 1, "birthday": {"_count": 1}}, "desk": {"_count": 1, "lamp": {"_count": 1}}, "reach": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "window": {"_count": 4, "": {"_count": 4}}, "arms": {"_count": 9, "and": {"_count": 4}, "": {"_count": 2}, "he": {"_count": 1}, "were": {"_count": 1}, "but": {"_count": 1}}, "leg": {"_count": 4, "slid": {"_count": 1}, "suddenly": {"_count": 1}, "came": {"_count": 1}, "its": {"_count": 1}}, "ears": {"_count": 13, "were": {"_count": 3}, "": {"_count": 4}, "as": {"_count": 3}, "when": {"_count": 1}, "and": {"_count": 1}, "even": {"_count": 1}}, "finger": {"_count": 1, "and": {"_count": 1}}, "house": {"_count": 1, "and": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "Nimbus": {"_count": 1, "Two": {"_count": 1}}, "puzzled": {"_count": 2, "look": {"_count": 1}, "expression": {"_count": 1}}, "glasses": {"_count": 7, "gave": {"_count": 1}, "as": {"_count": 1}, "askew": {"_count": 1}, "": {"_count": 2}, "had": {"_count": 1}, "back": {"_count": 1}}, "pocket": {"_count": 1, "was": {"_count": 1}}, "arm": {"_count": 30, "and": {"_count": 5}, "": {"_count": 10}, "into": {"_count": 1}, "painfully": {"_count": 1}, "again": {"_count": 1}, "was": {"_count": 1}, "Harry": {"_count": 1}, "below": {"_count": 1}, "like": {"_count": 1}, "she": {"_count": 1}, "so": {"_count": 4}, "as": {"_count": 2}, "a": {"_count": 1}}, "liking": {"_count": 2, "": {"_count": 2}}, "favorite": {"_count": 4, "things": {"_count": 1}, "family": {"_count": 1}, "by": {"_count": 1}, "moment": {"_count": 1}}, "feeling": {"_count": 5, "of": {"_count": 5}}, "Tshirt": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "least": {"_count": 4, "favorite": {"_count": 4}}, "hairline": {"_count": 1, "and": {"_count": 1}}, "stammers": {"_count": 1, "Lockhart": {"_count": 1}}, "schedule": {"_count": 1, "": {"_count": 1}}, "sentence": {"_count": 1, "was": {"_count": 1}}, "right": {"_count": 10, "wheezing": {"_count": 1}, "ear": {"_count": 1}, "": {"_count": 3}, "hand": {"_count": 2}, "Umbridge": {"_count": 1}, "staring": {"_count": 1}, "said": {"_count": 1}}, "Quidditch": {"_count": 1, "robes": {"_count": 1}}, "sense": {"_count": 2, "of": {"_count": 2}}, "nose": {"_count": 5, "at": {"_count": 1}, "uncharacteristically": {"_count": 1}, "felt": {"_count": 1}, "Hermione": {"_count": 1}, "detected": {"_count": 1}}, "way": {"_count": 2, "": {"_count": 1}, "up": {"_count": 1}}, "bones": {"_count": 1, "": {"_count": 1}}, "bed": {"_count": 17, "while": {"_count": 1}, "and": {"_count": 3}, "out": {"_count": 1}, "": {"_count": 6}, "laughing": {"_count": 1}, "knocking": {"_count": 1}, "nursing": {"_count": 1}, "sounded": {"_count": 1}, "still": {"_count": 1}, "her": {"_count": 1}}, "limp": {"_count": 1, "fingers": {"_count": 1}}, "water": {"_count": 1, "jug": {"_count": 1}}, "fist": {"_count": 1, "was": {"_count": 1}}, "Swelling": {"_count": 1, "Solution": {"_count": 1}}, "astonishment": {"_count": 1, "Dumbledore": {"_count": 1}}, "Christmas": {"_count": 1, "presents": {"_count": 1}}, "and": {"_count": 19, "Rons": {"_count": 7}, "Hermiones": {"_count": 3}, "Harry": {"_count": 2}, "Cedrics": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}}, "bag": {"_count": 4, "and": {"_count": 1}, "they": {"_count": 1}, "eagerly": {"_count": 1}, "cutting": {"_count": 1}}, "ankles": {"_count": 1, "": {"_count": 1}}, "disappointment": {"_count": 2, "Riddle": {"_count": 1}, "it": {"_count": 1}}, "robes": {"_count": 16, "": {"_count": 5}, "and": {"_count": 4}, "not": {"_count": 1}, "with": {"_count": 2}, "dragging": {"_count": 1}, "were": {"_count": 1}, "so": {"_count": 1}, "slackened": {"_count": 1}}, "growing": {"_count": 1, "list": {"_count": 1}}, "insides": {"_count": 12, "did": {"_count": 1}, "lurched": {"_count": 1}, "seemed": {"_count": 1}, "gave": {"_count": 1}, "went": {"_count": 1}, "burn": {"_count": 1}, "reinflated": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 1}, "plummeted": {"_count": 1}, "contracted": {"_count": 1}, "turned": {"_count": 1}}, "turn": {"_count": 3, "for": {"_count": 1}, "any": {"_count": 1}, "to": {"_count": 1}}, "elbow": {"_count": 5, "very": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "entire": {"_count": 1, "life": {"_count": 1}}, "body": {"_count": 8, "was": {"_count": 1}, "vanished": {"_count": 1}, "had": {"_count": 1}, "how": {"_count": 1}, "in": {"_count": 1}, "unfroze": {"_count": 1}, "became": {"_count": 1}, "and": {"_count": 1}}, "horrified": {"_count": 1, "face": {"_count": 1}}, "fists": {"_count": 3, "were": {"_count": 2}, "clenched": {"_count": 1}}, "scalp": {"_count": 1, "and": {"_count": 1}}, "cheek": {"_count": 2, "gazing": {"_count": 1}, "": {"_count": 1}}, "side": {"_count": 7, "": {"_count": 2}, "doubled": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 1}, "where": {"_count": 1}}, "hands": {"_count": 10, "flooding": {"_count": 1}, "": {"_count": 3}, "fastened": {"_count": 1}, "and": {"_count": 2}, "were": {"_count": 1}, "looking": {"_count": 1}, "with": {"_count": 1}}, "hair": {"_count": 6, "and": {"_count": 3}, "stopped": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}}, "case": {"_count": 1, "blood": {"_count": 1}}, "disgusting": {"_count": 1, "slimy": {"_count": 1}}, "sock": {"_count": 1, "with": {"_count": 1}}, "middle": {"_count": 1, "and": {"_count": 1}}, "only": {"_count": 2, "living": {"_count": 2}}, "dead": {"_count": 1, "parents": {"_count": 1}}, "year": {"_count": 1, "had": {"_count": 1}}, "most": {"_count": 2, "prized": {"_count": 1}, "recent": {"_count": 1}}, "whose": {"_count": 2, "mother": {"_count": 1}, "stubby": {"_count": 1}}, "reply": {"_count": 1, "as": {"_count": 1}}, "faults": {"_count": 1, "during": {"_count": 1}}, "stunned": {"_count": 1, "face": {"_count": 1}}, "pillow": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "past": {"_count": 2, "dealings": {"_count": 1}, "Harrys": {"_count": 1}}, "resolution": {"_count": 1, "most": {"_count": 1}}, "trip": {"_count": 1, "on": {"_count": 1}}, "trolley": {"_count": 1, "and": {"_count": 1}}, "present": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "gaze": {"_count": 5, "the": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "wandered": {"_count": 1}, "fixed": {"_count": 1}}, "immediate": {"_count": 1, "impression": {"_count": 1}}, "teacup": {"_count": 1, "his": {"_count": 1}}, "cup": {"_count": 3, "from": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}}, "seen": {"_count": 2, "a": {"_count": 1}, "them": {"_count": 1}}, "still": {"_count": 1, "with": {"_count": 1}}, "enormous": {"_count": 2, "surprise": {"_count": 1}, "relief": {"_count": 1}}, "success": {"_count": 1, "the": {"_count": 1}}, "opinion": {"_count": 11, "as": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "made": {"_count": 1}, "settled": {"_count": 1}, "they": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "particularly": {"_count": 1}, "The": {"_count": 1}, "on": {"_count": 1}}, "brass": {"_count": 1, "scales": {"_count": 1}}, "wonderful": {"_count": 1, "vision": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "difficulties": {"_count": 1, "": {"_count": 1}}, "thoughts": {"_count": 7, "seemed": {"_count": 1}, "wandered": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}, "strayed": {"_count": 1}, "were": {"_count": 1}, "dwelled": {"_count": 1}}, "good": {"_count": 1, "mood": {"_count": 1}}, "worries": {"_count": 1, "": {"_count": 1}}, "numb": {"_count": 2, "hands": {"_count": 1}, "disbelief": {"_count": 1}}, "memory": {"_count": 7, "was": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}, "with": {"_count": 1}, "completely": {"_count": 1}, "but": {"_count": 1}}, "faithful": {"_count": 1, "finally": {"_count": 1}}, "bedside": {"_count": 3, "only": {"_count": 1}, "table": {"_count": 2}}, "determined": {"_count": 1, "face": {"_count": 1}}, "mood": {"_count": 5, "took": {"_count": 1}, "suddenly": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 2}}, "cloudy": {"_count": 1, "Patronus": {"_count": 1}}, "antidementor": {"_count": 1, "lessons": {"_count": 1}}, "jaw": {"_count": 2, "dropped": {"_count": 2}}, "apology": {"_count": 1, "aside": {"_count": 1}}, "immense": {"_count": 1, "disquiet": {"_count": 1}}, "cloak": {"_count": 1, "": {"_count": 1}}, "chair": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "death": {"_count": 3, "": {"_count": 1}, "which": {"_count": 1}, "for": {"_count": 1}}, "euphoria": {"_count": 1, "at": {"_count": 1}}, "flobberworm": {"_count": 1, "was": {"_count": 1}}, "chest": {"_count": 12, "leaving": {"_count": 1}, "kept": {"_count": 1}, "": {"_count": 3}, "into": {"_count": 1}, "almost": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}, "like": {"_count": 1}, "suddenly": {"_count": 1}, "again": {"_count": 1}}, "throat": {"_count": 9, "No": {"_count": 1}, "": {"_count": 4}, "he": {"_count": 1}, "went": {"_count": 1}, "at": {"_count": 1}, "constrict": {"_count": 1}}, "business": {"_count": 1, "": {"_count": 1}}, "Rons": {"_count": 1, "and": {"_count": 1}}, "interruption": {"_count": 1, "": {"_count": 1}}, "dormitory": {"_count": 1, "for": {"_count": 1}}, "nod": {"_count": 1, "had": {"_count": 1}}, "words": {"_count": 3, "he": {"_count": 1}, "": {"_count": 1}, "Hermione": {"_count": 1}}, "a": {"_count": 3, "large": {"_count": 1}, "mad": {"_count": 1}, "great": {"_count": 1}}, "back": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "spirits": {"_count": 6, "most": {"_count": 1}, "couldnt": {"_count": 1}, "rose": {"_count": 1}, "lifted": {"_count": 1}, "soared": {"_count": 1}, "plummeted": {"_count": 1}}, "seat": {"_count": 1, "and": {"_count": 1}}, "long": {"_count": 1, "absences": {"_count": 1}}, "lamp": {"_count": 1, "seemed": {"_count": 1}}, "bedroom": {"_count": 4, "floor": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "her": {"_count": 1}}, "birthday": {"_count": 3, "which": {"_count": 1}, "dinner": {"_count": 1}, "present": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "confusion": {"_count": 1, "increased": {"_count": 1}}, "aunt": {"_count": 2, "and": {"_count": 1}, "wearing": {"_count": 1}}, "godfather": {"_count": 2, "as": {"_count": 1}, "Sirius": {"_count": 1}}, "mattress": {"_count": 2, "he": {"_count": 1}, "descended": {"_count": 1}}, "House": {"_count": 2, "Quidditch": {"_count": 1}, "": {"_count": 1}}, "friend": {"_count": 1, "Dobby": {"_count": 1}}, "dazed": {"_count": 1, "mind": {"_count": 1}}, "camp": {"_count": 1, "bed": {"_count": 1}}, "blank": {"_count": 1, "look": {"_count": 1}}, "loathing": {"_count": 1, "of": {"_count": 1}}, "slight": {"_count": 1, "surprise": {"_count": 1}}, "father": {"_count": 3, "first": {"_count": 1}, "when": {"_count": 1}, "had": {"_count": 1}}, "predictions": {"_count": 1, "": {"_count": 1}}, "fault": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "murder": {"_count": 1, "": {"_count": 1}}, "grip": {"_count": 1, "and": {"_count": 1}}, "worst": {"_count": 1, "at": {"_count": 1}}, "hit": {"_count": 1, "Goyle": {"_count": 1}}, "upper": {"_count": 2, "arm": {"_count": 2}}, "names": {"_count": 1, "": {"_count": 1}}, "great": {"_count": 3, "surprise": {"_count": 1}, "disappointment": {"_count": 1}, "satisfaction": {"_count": 1}}, "haddock": {"_count": 1, "drooped": {"_count": 1}}, "tipoff": {"_count": 1, "about": {"_count": 1}}, "favorites": {"_count": 1, "Bertie": {"_count": 1}}, "displeasure": {"_count": 1, "Percy": {"_count": 1}}, "furious": {"_count": 1, "stare": {"_count": 1}}, "retaliation": {"_count": 1, "": {"_count": 1}}, "conscience": {"_count": 1, "that": {"_count": 1}}, "situation": {"_count": 1, "worse": {"_count": 1}}, "bubblebath": {"_count": 1, "smell": {"_count": 1}}, "sleeve": {"_count": 1, "": {"_count": 1}}, "doubts": {"_count": 1, "vanished": {"_count": 1}}, "limelight": {"_count": 1, "for": {"_count": 1}}, "fury": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "left": {"_count": 9, "": {"_count": 1}, "Hermione": {"_count": 1}, "a": {"_count": 1}, "knee": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "ear": {"_count": 1}, "arm": {"_count": 1}, "and": {"_count": 1}}, "responsibility": {"_count": 1, "nor": {"_count": 1}}, "nerves": {"_count": 1, "mounted": {"_count": 1}}, "reaction": {"_count": 2, "": {"_count": 2}}, "Harry": {"_count": 2, "raised": {"_count": 1}, "held": {"_count": 1}}, "eyelids": {"_count": 1, "and": {"_count": 1}}, "range": {"_count": 1, "of": {"_count": 1}}, "closed": {"_count": 1, "eyelids": {"_count": 1}}, "cut": {"_count": 1, "so": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "met": {"_count": 1}}, "injured": {"_count": 1, "leg": {"_count": 1}}, "word": {"_count": 1, "on": {"_count": 1}}, "account": {"_count": 1, "of": {"_count": 1}}, "musings": {"_count": 1, "were": {"_count": 1}}, "uncle": {"_count": 2, "suddenly": {"_count": 1}, "came": {"_count": 1}}, "foot": {"_count": 4, "was": {"_count": 1}, "made": {"_count": 1}, "": {"_count": 1}, "found": {"_count": 1}}, "temporarily": {"_count": 1, "stupefied": {"_count": 1}}, "mother": {"_count": 3, "had": {"_count": 1}, "": {"_count": 2}}, "exhausted": {"_count": 1, "brain": {"_count": 1}}, "train": {"_count": 1, "of": {"_count": 1}}, "two": {"_count": 1, "lives": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "socks": {"_count": 1, "gave": {"_count": 1}}, "midriff": {"_count": 1, "": {"_count": 1}}, "Disillusioned": {"_count": 1, "hand": {"_count": 1}}, "bewilderment": {"_count": 2, "deepened": {"_count": 1}, "Neville": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "raised": {"_count": 1, "eyebrows": {"_count": 1}}, "impression": {"_count": 1, "was": {"_count": 1}}, "guard": {"_count": 1, "": {"_count": 1}}, "arrived": {"_count": 1, "": {"_count": 1}}, "jeans": {"_count": 1, "was": {"_count": 1}}, "been": {"_count": 2, "trapped": {"_count": 1}, "with": {"_count": 1}}, "not": {"_count": 3, "even": {"_count": 1}, "looking": {"_count": 1}, "old": {"_count": 1}}, "allowed": {"_count": 1, "why": {"_count": 1}}, "inquiring": {"_count": 1, "look": {"_count": 1}}, "front": {"_count": 1, "and": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "behavior": {"_count": 1, "there": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "narrow": {"_count": 1, "escape": {"_count": 1}}, "lungs": {"_count": 4, "he": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 1}, "expanded": {"_count": 1}}, "entertainment": {"_count": 1, "": {"_count": 1}}, "shoulders": {"_count": 2, "but": {"_count": 1}, "the": {"_count": 1}}, "fellow": {"_count": 1, "fifthyear": {"_count": 1}}, "lying": {"_count": 1, "about": {"_count": 1}}, "cauldron": {"_count": 3, "however": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "potion": {"_count": 1, "vanished": {"_count": 1}}, "mutual": {"_count": 1, "enmity": {"_count": 1}}, "third": {"_count": 1, "detention": {"_count": 1}}, "forearm": {"_count": 1, "and": {"_count": 1}}, "moonstone": {"_count": 1, "essay": {"_count": 1}}, "dreams": {"_count": 2, "at": {"_count": 1}, "were": {"_count": 1}}, "essay": {"_count": 1, "Harry": {"_count": 1}}, "consternation": {"_count": 1, "however": {"_count": 1}}, "detentions": {"_count": 1, "with": {"_count": 1}}, "money": {"_count": 1, "in": {"_count": 1}}, "story": {"_count": 3, "firsthand": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "already": {"_count": 2, "missed": {"_count": 1}, "Apparated": {"_count": 1}}, "potions": {"_count": 1, "": {"_count": 1}}, "frog": {"_count": 1, "which": {"_count": 1}}, "slack": {"_count": 1, "grip": {"_count": 1}}, "enthusiasm": {"_count": 1, "": {"_count": 1}}, "leader": {"_count": 1, "said": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "fingers": {"_count": 4, "closed": {"_count": 2}, "but": {"_count": 1}, "Malfoy": {"_count": 1}}, "guilty": {"_count": 1, "feeling": {"_count": 1}}, "liked": {"_count": 1, "her": {"_count": 1}}, "hearing": {"_count": 1, "": {"_count": 1}}, "vision": {"_count": 2, "of": {"_count": 1}, "people": {"_count": 1}}, "temper": {"_count": 1, "rose": {"_count": 1}}, "portrait": {"_count": 1, "": {"_count": 1}}, "gift": {"_count": 1, "of": {"_count": 1}}, "sympathy": {"_count": 1, "was": {"_count": 1}}, "unasked": {"_count": 1, "question": {"_count": 1}}, "attention": {"_count": 4, "was": {"_count": 3}, "movement": {"_count": 1}}, "anger": {"_count": 1, "at": {"_count": 1}}, "indignation": {"_count": 1, "hardly": {"_count": 1}}, "sessions": {"_count": 1, "with": {"_count": 1}}, "tone": {"_count": 1, "because": {"_count": 1}}, "love": {"_count": 2, "life": {"_count": 1}, "of": {"_count": 1}}, "lost": {"_count": 1, "his": {"_count": 1}}, "interview": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "happiness": {"_count": 1, "it": {"_count": 1}}, "giant": {"_count": 1, "head": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Hogsmeade": {"_count": 1, "meeting": {"_count": 1}}, "utter": {"_count": 1, "amazement": {"_count": 1}}, "wrist": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "skin": {"_count": 3, "a": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "could": {"_count": 1, "ever": {"_count": 1}}, "books": {"_count": 2, "bag": {"_count": 1}, "and": {"_count": 1}}, "folder": {"_count": 1, "": {"_count": 1}}, "Firebolt": {"_count": 1, "to": {"_count": 1}}, "spouted": {"_count": 1, "four": {"_count": 1}}, "knights": {"_count": 1, "": {"_count": 1}}, "examiner": {"_count": 1, "a": {"_count": 1}}, "low": {"_count": 1, "standards": {"_count": 1}}, "voice": {"_count": 6, "what": {"_count": 1}, "tailed": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 2}}, "who": {"_count": 1, "met": {"_count": 1}}, "misgivings": {"_count": 1, "increased": {"_count": 1}}, "centaur": {"_count": 1, "let": {"_count": 1}}, "spell": {"_count": 1, "and": {"_count": 1}}, "windpipe": {"_count": 1, "that": {"_count": 1}}, "heel": {"_count": 1, "": {"_count": 1}}, "lips": {"_count": 2, "were": {"_count": 1}, "before": {"_count": 1}}, "breath": {"_count": 2, "was": {"_count": 1}, "caught": {"_count": 1}}, "physical": {"_count": 1, "well": {"_count": 1}}, "aid": {"_count": 1, "": {"_count": 1}}, "quivering": {"_count": 1, "castle": {"_count": 1}}, "reception": {"_count": 1, "committee": {"_count": 1}}, "relaxed": {"_count": 1, "hand": {"_count": 1}}, "small": {"_count": 1, "intake": {"_count": 1}}, "questioning": {"_count": 2, "look": {"_count": 2}}, "intestines": {"_count": 1, "and": {"_count": 1}}, "doing": {"_count": 1, "of": {"_count": 1}}, "toast": {"_count": 1, "was": {"_count": 1}}, "sixteenth": {"_count": 1, "birthday": {"_count": 1}}, "included": {"_count": 1, "a": {"_count": 1}}, "idiot": {"_count": 1, "said": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "but": {"_count": 1}}, "destiny": {"_count": 1, "": {"_count": 1}}, "suspicions": {"_count": 2, "seriously": {"_count": 1}, "": {"_count": 1}}, "trainers": {"_count": 1, "": {"_count": 1}}, "immobilized": {"_count": 1, "body": {"_count": 1}}, "forgiveness": {"_count": 1, "by": {"_count": 1}}, "than": {"_count": 1, "anyone": {"_count": 1}}, "abilities": {"_count": 1, "saying": {"_count": 1}}, "statue": {"_count": 1, "": {"_count": 1}}, "presence": {"_count": 1, "": {"_count": 1}}, "snogged": {"_count": 1, "Cho": {"_count": 1}}, "dismay": {"_count": 1, "Rons": {"_count": 1}}, "frequent": {"_count": 1, "nighttime": {"_count": 1}}, "exceptional": {"_count": 1, "potionmaking": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "presents": {"_count": 2, "included": {"_count": 1}, "out": {"_count": 1}}, "intense": {"_count": 1, "embarrassment": {"_count": 1}}, "drawn": {"_count": 1, "wand": {"_count": 1}}, "Herbology": {"_count": 1, "essay": {"_count": 1}}, "vinegar": {"_count": 1, "turned": {"_count": 1}}, "curse": {"_count": 1, "had": {"_count": 1}}, "schoolbag": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "tried": {"_count": 1}}, "defensive": {"_count": 1, "jinx": {"_count": 1}}, "helping": {"_count": 1, "arm": {"_count": 1}}, "waterlogged": {"_count": 1, "clothes": {"_count": 1}}, "clothes": {"_count": 1, "were": {"_count": 1}}, "morale": {"_count": 1, "perhaps": {"_count": 1}}, "bewildered": {"_count": 1, "expression": {"_count": 1}}, "trembling": {"_count": 1, "hands": {"_count": 1}}, "scream": {"_count": 2, "of": {"_count": 1}, "his": {"_count": 1}}, "Squib": {"_count": 1, "neighbor": {"_count": 1}}, "future": {"_count": 1, "Harrys": {"_count": 1}}, "plans": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 1, "blond": {"_count": 1}}, "summer": {"_count": 1, "holidays": {"_count": 1}}, "took": {"_count": 1, "rucksacks": {"_count": 1}}, "faced": {"_count": 1, "him": {"_count": 1}}, "discomfort": {"_count": 1, "": {"_count": 1}}, "exclamation": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "confused": {"_count": 1}}, "Hagrid": {"_count": 1, "whom": {"_count": 1}}, "palm": {"_count": 1, "": {"_count": 1}}, "T": {"_count": 1, "shirt": {"_count": 1}}, "lot": {"_count": 1, "": {"_count": 1}}, "red": {"_count": 1, "curly": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "feelings": {"_count": 1, "for": {"_count": 1}}, "textbooks": {"_count": 1, "though": {"_count": 1}}, "count": {"_count": 1, "of": {"_count": 1}}, "extremities": {"_count": 1, "seemed": {"_count": 1}}, "whereabouts": {"_count": 1, "out": {"_count": 1}}, "footsteps": {"_count": 1, "as": {"_count": 1}}, "disembodied": {"_count": 1, "hand": {"_count": 1}}, "Patronus": {"_count": 1, "stood": {"_count": 1}}, "ruddy": {"_count": 1, "due": {"_count": 1}}, "willpower": {"_count": 1, "to": {"_count": 1}}, "breathing": {"_count": 1, "was": {"_count": 1}}, "jubilation": {"_count": 1, "Ron": {"_count": 1}}, "dearest": {"_count": 1, "wish": {"_count": 1}}, "pain": {"_count": 1, "": {"_count": 1}}, "senses": {"_count": 1, "seemed": {"_count": 1}}, "inspection": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "unwilling": {"_count": 1, "eyes": {"_count": 1}}, "Cloak": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "owned": {"_count": 1}}, "belief": {"_count": 1, "in": {"_count": 1}}, "descent": {"_count": 1, "into": {"_count": 1}}, "supporters": {"_count": 1, "against": {"_count": 1}}, "flesh": {"_count": 2, "crawl": {"_count": 1}, "": {"_count": 1}}, "nostrils": {"_count": 1, "as": {"_count": 1}}, "fear": {"_count": 1, "to": {"_count": 1}}, "limited": {"_count": 1, "line": {"_count": 1}}, "grief": {"_count": 1, "for": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}, "skull": {"_count": 1, "seemed": {"_count": 1}}, "wandlight": {"_count": 1, "passed": {"_count": 1}}, "overwhelming": {"_count": 1, "feeling": {"_count": 1}}, "ribs": {"_count": 1, "ached": {"_count": 1}}, "old": {"_count": 2, "girlfriend": {"_count": 1}, "Quidditch": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "felt": {"_count": 1, "as": {"_count": 1}}, "heels": {"_count": 1, "making": {"_count": 1}}, "IF": {"_count": 1, "WE": {"_count": 1}}, "despair": {"_count": 1, "which": {"_count": 1}}, "departure": {"_count": 1, "from": {"_count": 1}}, "safety": {"_count": 1, "": {"_count": 1}}, "place": {"_count": 1, "There": {"_count": 1}}, "brow": {"_count": 1, "": {"_count": 1}}, "eardrums": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "children": {"_count": 1}}}, "full": {"_count": 411, "minute": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 248, "them": {"_count": 3}, "what": {"_count": 7}, "books": {"_count": 3}, "letters": {"_count": 1}, "the": {"_count": 16}, "frog": {"_count": 3}, "sunlight": {"_count": 2}, "ordinary": {"_count": 2}, "money": {"_count": 1}, "peculiar": {"_count": 1}, "rustling": {"_count": 1}, "wizard": {"_count": 3}, "cows": {"_count": 1}, "people": {"_count": 7}, "dangerous": {"_count": 1}, "air": {"_count": 1}, "food": {"_count": 1}, "squashy": {"_count": 2}, "garlic": {"_count": 1}, "white": {"_count": 1}, "teachers": {"_count": 1}, "suits": {"_count": 1}, "turkey": {"_count": 1}, "invisible": {"_count": 1}, "small": {"_count": 1}, "ridiculous": {"_count": 1}, "hatred": {"_count": 2}, "Muggle": {"_count": 1}, "frogs": {"_count": 1}, "skulls": {"_count": 3}, "broken": {"_count": 2}, "parked": {"_count": 1}, "hot": {"_count": 3}, "bandages": {"_count": 1}, "hundreds": {"_count": 1}, "black": {"_count": 1}, "large": {"_count": 3}, "dread": {"_count": 1}, "funny": {"_count": 1}, "a": {"_count": 5}, "dark": {"_count": 1}, "Dark": {"_count": 2}, "very": {"_count": 1}, "his": {"_count": 2}, "Muggles": {"_count": 3}, "strawberry": {"_count": 1}, "malicious": {"_count": 1}, "old": {"_count": 1}, "chattering": {"_count": 1}, "tears": {"_count": 4}, "clammy": {"_count": 1}, "wooden": {"_count": 1}, "laughter": {"_count": 1}, "salamanders": {"_count": 1}, "chocolate": {"_count": 1}, "Honeydukes": {"_count": 1}, "malice": {"_count": 1}, "pearly": {"_count": 1}, "Red": {"_count": 1}, "suppressed": {"_count": 1}, "eyewitnesses": {"_count": 1}, "sugarfree": {"_count": 1}, "extraordinary": {"_count": 1}, "mashed": {"_count": 1}, "liquid": {"_count": 1}, "meaning": {"_count": 2}, "horned": {"_count": 1}, "admiration": {"_count": 1}, "concern": {"_count": 1}, "inky": {"_count": 1}, "adrenaline": {"_count": 1}, "lively": {"_count": 1}, "fairy": {"_count": 1}, "menace": {"_count": 1}, "bubotuber": {"_count": 1}, "pus": {"_count": 1}, "homemade": {"_count": 1}, "toffee": {"_count": 1}, "some": {"_count": 2}, "savage": {"_count": 1}, "thoughts": {"_count": 1}, "yourself": {"_count": 1}, "excited": {"_count": 1}, "Cedrics": {"_count": 1}, "phoenix": {"_count": 1}, "cat": {"_count": 1}, "sympathy": {"_count": 1}, "rage": {"_count": 3}, "doxies": {"_count": 1}, "early": {"_count": 1}, "traffic": {"_count": 1}, "their": {"_count": 1}, "unexpected": {"_count": 1}, "dilapidated": {"_count": 1}, "dried": {"_count": 1}, "Chos": {"_count": 1}, "angry": {"_count": 1}, "croaking": {"_count": 1}, "shouts": {"_count": 1}, "intermittent": {"_count": 1}, "nargles": {"_count": 1}, "horrible": {"_count": 1}, "electrical": {"_count": 1}, "shoppers": {"_count": 1}, "candles": {"_count": 1}, "brass": {"_count": 1}, "hairpin": {"_count": 1}, "ingredients": {"_count": 1}, "shrieks": {"_count": 1}, "students": {"_count": 2}, "nothing": {"_count": 3}, "envelopes": {"_count": 1}, "slanting": {"_count": 1}, "knarl": {"_count": 1}, "an": {"_count": 3}, "clicking": {"_count": 1}, "shelves": {"_count": 3}, "dusty": {"_count": 1}, "misshapen": {"_count": 1}, "bits": {"_count": 1}, "workers": {"_count": 1}, "Aurors": {"_count": 2}, "variously": {"_count": 1}, "glittering": {"_count": 1}, "planets": {"_count": 1}, "laughing": {"_count": 1}, "chalk": {"_count": 1}, "ghosts": {"_count": 2}, "D": {"_count": 1}, "articles": {"_count": 1}, "amber": {"_count": 1}, "bread": {"_count": 1}, "herself": {"_count": 2}, "trick": {"_count": 1}, "magical": {"_count": 1}, "vapors": {"_count": 1}, "bluish": {"_count": 1}, "voices": {"_count": 1}, "tubers": {"_count": 1}, "golden": {"_count": 1}, "creeping": {"_count": 1}, "staggering": {"_count": 1}, "swirling": {"_count": 1}, "little": {"_count": 1}, "goldembossed": {"_count": 1}, "bottles": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}, "deep": {"_count": 1}, "Polyjuice": {"_count": 1}, "dust": {"_count": 2}, "silent": {"_count": 1}, "shadows": {"_count": 1}, "evil": {"_count": 1}, "soft": {"_count": 1}, "graying": {"_count": 1}, "Kreachers": {"_count": 1}, "potion": {"_count": 1}, "Inferi": {"_count": 1}, "anger": {"_count": 1}, "pamphletmakers": {"_count": 1}, "spare": {"_count": 1}, "folders": {"_count": 1}, "spaghetti": {"_count": 1}, "living": {"_count": 1}, "blood": {"_count": 1}, "reluctance": {"_count": 1}, "light": {"_count": 1}, "those": {"_count": 1}, "doubts": {"_count": 1}, "driftwood": {"_count": 1}, "jangling": {"_count": 1}, "duelers": {"_count": 1}, "hideous": {"_count": 1}, "thick": {"_count": 1}, "apprehension": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "and": {"_count": 7, "sleepy": {"_count": 2}, "considerable": {"_count": 2}, "undivided": {"_count": 1}, "smelled": {"_count": 1}, "boastful": {"_count": 1}}, "strength": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}}, "BodyBind": {"_count": 5, "said": {"_count": 1}, "was": {"_count": 1}, "Curse": {"_count": 3}}, "impact": {"_count": 1, "of": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "weight": {"_count": 2, "against": {"_count": 1}, "of": {"_count": 1}}, "marks": {"_count": 5, "": {"_count": 3}, "by": {"_count": 1}, "on": {"_count": 1}}, "speed": {"_count": 2, "racing": {"_count": 1}, "": {"_count": 1}}, "storys": {"_count": 1, "in": {"_count": 1}}, "size": {"_count": 1, "I": {"_count": 1}}, "moon": {"_count": 14, "and": {"_count": 1}, "": {"_count": 4}, "I": {"_count": 1}, "Mr": {"_count": 1}, "in": {"_count": 1}, "approaching": {"_count": 1}, "swimming": {"_count": 1}, "cycle": {"_count": 1}, "he": {"_count": 1}, "now": {"_count": 1}, "said": {"_count": 1}}, "steam": {"_count": 1, "ahead": {"_count": 1}}, "details": {"_count": 2, "see": {"_count": 1}, "": {"_count": 1}}, "confidence": {"_count": 1, "said": {"_count": 1}}, "apology": {"_count": 2, "Not": {"_count": 1}, "when": {"_count": 1}}, "blast": {"_count": 1, "of": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "to": {"_count": 5, "bursting": {"_count": 1}, "the": {"_count": 4}}, "use": {"_count": 1, "of": {"_count": 1}}, "recovery": {"_count": 5, "then": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "however": {"_count": 1}}, "out": {"_count": 1, "under": {"_count": 1}}, "advantage": {"_count": 1, "of": {"_count": 1}}, "extent": {"_count": 1, "of": {"_count": 1}}, "five": {"_count": 1, "days": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 7}}, "because": {"_count": 1, "of": {"_count": 1}}, "list": {"_count": 1, "comprises": {"_count": 1}}, "measure": {"_count": 2, "however": {"_count": 1}, "": {"_count": 1}}, "bladder": {"_count": 1, "": {"_count": 1}}, "strangeness": {"_count": 1, "of": {"_count": 1}}, "grown": {"_count": 1, "round": {"_count": 1}}, "circle": {"_count": 1, "in": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "height": {"_count": 5, "the": {"_count": 1}, "her": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}}, "well": {"_count": 3, "so": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}}, "fitness": {"_count": 1, "enabling": {"_count": 1}}, "awareness": {"_count": 1, "of": {"_count": 1}}, "inquiry": {"_count": 2, "into": {"_count": 1}, "last": {"_count": 1}}, "criminal": {"_count": 1, "trial": {"_count": 1}}, "court": {"_count": 1, "": {"_count": 1}}, "pocket": {"_count": 1, "of": {"_count": 1}}, "pardon": {"_count": 1, "any": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "tilt": {"_count": 1, "toward": {"_count": 1}}, "account": {"_count": 2, "of": {"_count": 2}}, "flow": {"_count": 2, "about": {"_count": 2}}, "repercussions": {"_count": 1, "of": {"_count": 1}}, "story": {"_count": 7, "Harry": {"_count": 1}, "before": {"_count": 1}, "could": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 2}}, "enough": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "pay": {"_count": 1, "and": {"_count": 1}}, "days": {"_count": 1, "training": {"_count": 1}}, "cup": {"_count": 1, "of": {"_count": 1}}, "powers": {"_count": 1, "": {"_count": 1}}, "power": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "without": {"_count": 1}}, "contents": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "credit": {"_count": 2, "for": {"_count": 2}}, "glow": {"_count": 1, "of": {"_count": 1}}, "money": {"_count": 1, "bag": {"_count": 1}}, "attention": {"_count": 1, "": {"_count": 1}}, "rein": {"_count": 1, "to": {"_count": 1}}, "practice": {"_count": 1, "for": {"_count": 1}}, "House": {"_count": 1, "tryout": {"_count": 1}}, "swing": {"_count": 1, "when": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "ten": {"_count": 1, "seconds": {"_count": 1}}, "schedules": {"_count": 1, "": {"_count": 1}}, "health": {"_count": 1, "by": {"_count": 1}}, "werewolf": {"_count": 1, "": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "picture": {"_count": 1, "of": {"_count": 1}}, "understanding": {"_count": 1, "that": {"_count": 1}}, "glasses": {"_count": 1, "soaring": {"_count": 1}}, "glare": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "might": {"_count": 1, "of": {"_count": 1}}, "stomach": {"_count": 1, "meant": {"_count": 1}}, "week": {"_count": 1, "later": {"_count": 1}}, "stop": {"_count": 1, "": {"_count": 1}}, "flight": {"_count": 1, "McGonagall": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "bidding": {"_count": 1, "": {"_count": 1}}, "possession": {"_count": 1, "of": {"_count": 1}}}, "minute": {"_count": 108, "the": {"_count": 1, "three": {"_count": 1}}, "of": {"_count": 1, "confused": {"_count": 1}}, "to": {"_count": 3, "go": {"_count": 1}, "Ron": {"_count": 1}, "eleven": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 12}, "!": {"_count": 4}}, "All": {"_count": 1, "summer": {"_count": 1}}, "before": {"_count": 4, "the": {"_count": 1}, "Harry": {"_count": 2}, "we": {"_count": 1}}, "Quidditch": {"_count": 1, "practice": {"_count": 1}}, "later": {"_count": 10, "with": {"_count": 1}, "they": {"_count": 2}, "were": {"_count": 1}, "holding": {"_count": 1}, "Katie": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 1}}, "or": {"_count": 22, "two": {"_count": 6}, "so": {"_count": 16}}, "I": {"_count": 4, "hope": {"_count": 1}, "think": {"_count": 2}, "havent": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "in": {"_count": 2, "case": {"_count": 1}, "answering": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "almost": {"_count": 1, "there": {"_count": 1}}, "soo": {"_count": 1, "hungry": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "He": {"_count": 1, "wont": {"_count": 1}}, "But": {"_count": 1, "before": {"_count": 1}}, "owl": {"_count": 2, "was": {"_count": 1}, "small": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "stood": {"_count": 1}}, "writing": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "lamp": {"_count": 1, "of": {"_count": 1}}, "sit": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "Neville": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "staring": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "passed": {"_count": 2, "in": {"_count": 1}, "or": {"_count": 1}}, "then": {"_count": 1, "took": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "studying": {"_count": 1, "so": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "seemed": {"_count": 1}}, "hand": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 1, "suffering": {"_count": 1}}, "er": {"_count": 1, "bathroom": {"_count": 1}}, "Id": {"_count": 1, "Disapparated": {"_count": 1}}, "ago": {"_count": 1, "you": {"_count": 1}}, "Greyback": {"_count": 1, "": {"_count": 1}}}, "three": {"_count": 595, "of": {"_count": 139, "them": {"_count": 106}, "us": {"_count": 11}, "yeh": {"_count": 1}, "you": {"_count": 6}, "the": {"_count": 9}, "Mrs": {"_count": 1}, "its": {"_count": 1}, "whom": {"_count": 1}, "his": {"_count": 1}, "theirs": {"_count": 1}, "my": {"_count": 1}}, "letters": {"_count": 1, "addressed": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 19}, "?": {"_count": 3}, "!": {"_count": 6}}, "times": {"_count": 34, "with": {"_count": 3}, "on": {"_count": 3}, "a": {"_count": 4}, "in": {"_count": 4}, "and": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 4}, "as": {"_count": 2}, "around": {"_count": 2}, "upon": {"_count": 2}, "counterclockwise": {"_count": 1}, "before": {"_count": 1}, "concentrating": {"_count": 1}, "Well": {"_count": 1}, "plunging": {"_count": 1}, "Hermione": {"_count": 1}, "into": {"_count": 1}}, "quarters": {"_count": 5, "at": {"_count": 2}, "where": {"_count": 1}, "of": {"_count": 2}}, "boys": {"_count": 1, "clambered": {"_count": 1}}, "wizard": {"_count": 1, "brothers": {"_count": 1}}, "they": {"_count": 2, "left": {"_count": 1}, "reversed": {"_count": 1}}, "two": {"_count": 2, "But": {"_count": 1}, "one": {"_count": 1}}, "to": {"_count": 3, "follow": {"_count": 1}, "just": {"_count": 1}, "go": {"_count": 1}}, "heads": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "noses": {"_count": 1, "twitching": {"_count": 1}}, "drooling": {"_count": 1, "mouths": {"_count": 1}}, "golden": {"_count": 1, "poles": {"_count": 1}}, "balls": {"_count": 1, "left": {"_count": 1}}, "months": {"_count": 4, "they": {"_count": 1}, "": {"_count": 2}, "preparing": {"_count": 1}}, "evenings": {"_count": 2, "a": {"_count": 2}}, "nights": {"_count": 1, "in": {"_count": 1}}, "doing": {"_count": 1, "inside": {"_count": 1}}, "empty": {"_count": 1, "squares": {"_count": 1}}, "spaces": {"_count": 1, "to": {"_count": 1}}, "are": {"_count": 2, "poison": {"_count": 1}, "the": {"_count": 1}}, "hundred": {"_count": 10, "and": {"_count": 5}, "years": {"_count": 1}, "of": {"_count": 1}, "points": {"_count": 3}}, "days": {"_count": 17, "so": {"_count": 1}, "time": {"_count": 1}, "by": {"_count": 1}, "he": {"_count": 1}, "later": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 2}, "ago": {"_count": 4}, "before": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "after": {"_count": 1}}, "wheeled": {"_count": 1, "around": {"_count": 1}}, "deep": {"_count": 1, "on": {"_count": 1}}, "fried": {"_count": 1, "eggs": {"_count": 1}}, "steps": {"_count": 3, "to": {"_count": 1}, "toward": {"_count": 1}, "at": {"_count": 1}}, "large": {"_count": 1, "strawberryandpeanutbutter": {"_count": 1}}, "today": {"_count": 1, "chaps": {"_count": 1}}, "housed": {"_count": 1, "far": {"_count": 1}}, "sides": {"_count": 1, "of": {"_count": 1}}, "long": {"_count": 1, "poles": {"_count": 1}}, "men": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 6, "a": {"_count": 4}, "that": {"_count": 1}, "once": {"_count": 1}}, "Fred": {"_count": 1, "turned": {"_count": 1}}, "bones": {"_count": 1, "to": {"_count": 1}}, "beds": {"_count": 1, "away": {"_count": 1}}, "we": {"_count": 1, "will": {"_count": 1}}, "Both": {"_count": 1, "of": {"_count": 1}}, "cast": {"_count": 1, "your": {"_count": 1}}, "Harry": {"_count": 2, "swung": {"_count": 1}, "looked": {"_count": 1}}, "glasses": {"_count": 4, "and": {"_count": 1}, "upon": {"_count": 1}, "of": {"_count": 1}, "vanished": {"_count": 1}}, "Pinching": {"_count": 1, "his": {"_count": 1}}, "attacks": {"_count": 1, "and": {"_count": 1}}, "toilets": {"_count": 1, "away": {"_count": 1}}, "shimmering": {"_count": 1, "words": {"_count": 1}}, "cuffing": {"_count": 1, "Harry": {"_count": 1}}, "owls": {"_count": 1, "two": {"_count": 1}}, "birthday": {"_count": 1, "cards": {"_count": 1}}, "Dursleys": {"_count": 6, "already": {"_count": 1}, "were": {"_count": 1}, "scrambling": {"_count": 1}, "flinched": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}}, "weeks": {"_count": 2, "of": {"_count": 1}, "away": {"_count": 1}}, "Dursleyfree": {"_count": 1, "weeks": {"_count": 1}}, "bulging": {"_count": 1, "bags": {"_count": 1}}, "years": {"_count": 22, "or": {"_count": 1}, "couldnt": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 3}, "by": {"_count": 1}, "in": {"_count": 2}, "now": {"_count": 1}, "more": {"_count": 1}, "ago": {"_count": 5}, "not": {"_count": 1}, "older": {"_count": 1}, "previously": {"_count": 1}, "sooner": {"_count": 1}, "before": {"_count": 1}}, "tables": {"_count": 2, "together": {"_count": 1}, "": {"_count": 1}}, "least": {"_count": 1, "favorite": {"_count": 1}}, "said": {"_count": 6, "Hagrid": {"_count": 1}, "Hermione": {"_count": 3}, "Fudge": {"_count": 1}, "Harry": {"_count": 1}}, "classes": {"_count": 2, "at": {"_count": 2}}, "onlytoofamiliar": {"_count": 1, "backs": {"_count": 1}}, "Neville": {"_count": 1, "said": {"_count": 1}}, "now": {"_count": 1, "A": {"_count": 1}}, "Chasers": {"_count": 3, "whose": {"_count": 1}, "and": {"_count": 1}, "Katie": {"_count": 1}}, "superb": {"_count": 1, "Chasers": {"_count": 1}}, "sleeping": {"_count": 1, "bags": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 6}}, "one": {"_count": 1, "of": {"_count": 1}}, "foaming": {"_count": 1, "tankards": {"_count": 1}}, "other": {"_count": 1, "students": {"_count": 1}}, "goals": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "tall": {"_count": 3, "black": {"_count": 1}, "and": {"_count": 1}, "goalposts": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}, "unregistered": {"_count": 1, "Animagi": {"_count": 1}}, "great": {"_count": 1, "friends": {"_count": 1}}, "friends": {"_count": 2, "could": {"_count": 1}, "strode": {"_count": 1}}, "fellow": {"_count": 1, "students": {"_count": 1}}, "strides": {"_count": 1, "and": {"_count": 1}}, "turns": {"_count": 2, "should": {"_count": 2}}, "people": {"_count": 8, "": {"_count": 1}, "being": {"_count": 1}, "entered": {"_count": 1}, "over": {"_count": 1}, "fell": {"_count": 1}, "a": {"_count": 1}, "still": {"_count": 1}, "stood": {"_count": 1}}, "hours": {"_count": 8, "": {"_count": 2}, "ago": {"_count": 3}, "early": {"_count": 1}, "later": {"_count": 1}, "should": {"_count": 1}}, "pairs": {"_count": 1, "of": {"_count": 1}}, "oldest": {"_count": 1, "friends": {"_count": 1}}, "Riddles": {"_count": 1, "dead": {"_count": 1}}, "apparently": {"_count": 1, "healthy": {"_count": 1}}, "and": {"_count": 4, "become": {"_count": 1}, "Dumbledore": {"_count": 1}, "shell": {"_count": 1}, "four": {"_count": 1}}, "percent": {"_count": 1, "a": {"_count": 1}}, "more": {"_count": 2, "flights": {"_count": 1}, "underwater": {"_count": 1}}, "Weasley": {"_count": 1, "boys": {"_count": 1}}, "floors": {"_count": 3, "and": {"_count": 1}, "below": {"_count": 1}, "between": {"_count": 1}}, "Knuts": {"_count": 1, "said": {"_count": 1}}, "goal": {"_count": 3, "hoops": {"_count": 3}}, "stillempty": {"_count": 1, "seats": {"_count": 1}}, "Irish": {"_count": 1, "Chasers": {"_count": 1}}, "looked": {"_count": 2, "as": {"_count": 1}, "extremely": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "on": {"_count": 1, "three": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "ordinary": {"_count": 1, "Muggle": {"_count": 1}}, "know": {"_count": 1, "that": {"_count": 1}}, "terms": {"_count": 1, "": {"_count": 1}}, "largest": {"_count": 1, "European": {"_count": 1}}, "champions": {"_count": 5, "competed": {"_count": 1}, "will": {"_count": 1}, "compete": {"_count": 1}, "": {"_count": 2}}, "magical": {"_count": 1, "tasks": {"_count": 1}}, "but": {"_count": 1, "here": {"_count": 1}}, "chairs": {"_count": 2, "right": {"_count": 1}, "appeared": {"_count": 1}}, "curses": {"_count": 1, "Avada": {"_count": 1}}, "extra": {"_count": 1, "books": {"_count": 1}}, "stood": {"_count": 1, "on": {"_count": 1}}, "rows": {"_count": 1, "of": {"_count": 1}}, "stars": {"_count": 1, "before": {"_count": 1}}, "tasks": {"_count": 1, "spaced": {"_count": 1}}, "will": {"_count": 1, "win": {"_count": 1}}, "it": {"_count": 1, "has": {"_count": 1}}, "foot": {"_count": 1, "long": {"_count": 1}}, "schools": {"_count": 1, "compete": {"_count": 1}}, "feet": {"_count": 5, "long": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}, "an": {"_count": 1}, "apart": {"_count": 1}}, "gold": {"_count": 1, "teeth": {"_count": 1}}, "minutes": {"_count": 6, "later": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}, "warning": {"_count": 1}, "until": {"_count": 1}, "if": {"_count": 1}}, "around": {"_count": 1, "its": {"_count": 1}}, "butterbeers": {"_count": 2, "from": {"_count": 2}}, "then": {"_count": 5, "": {"_count": 2}, "one": {"_count": 1}, "said": {"_count": 2}}, "fingers": {"_count": 1, "to": {"_count": 1}}, "girls": {"_count": 2, "tied": {"_count": 1}, "and": {"_count": 1}}, "drops": {"_count": 4, "would": {"_count": 2}, "inside": {"_count": 1}, "of": {"_count": 1}}, "fancy": {"_count": 1, "yourselves": {"_count": 1}}, "companions": {"_count": 1, "rose": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "and": {"_count": 1}}, "dead": {"_count": 1, "in": {"_count": 1}}, "powerful": {"_count": 1, "ingredients": {"_count": 1}}, "were": {"_count": 2, "up": {"_count": 1}, "all": {"_count": 1}}, "seconds": {"_count": 3, "": {"_count": 3}}, "separate": {"_count": 3, "pieces": {"_count": 1}, "Quidditch": {"_count": 1}, "Stunning": {"_count": 1}}, "small": {"_count": 1, "rolls": {"_count": 1}}, "fat": {"_count": 1, "letters": {"_count": 1}}, "summers": {"_count": 1, "ago": {"_count": 1}}, "whole": {"_count": 1, "days": {"_count": 1}}, "words": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "stops": {"_count": 1, "left": {"_count": 1}}, "Department": {"_count": 1, "of": {"_count": 1}}, "trunks": {"_count": 1, "and": {"_count": 1}}, "Have": {"_count": 1, "the": {"_count": 1}}, "O": {"_count": 2, "": {"_count": 2}}, "course": {"_count": 2, "aims": {"_count": 2}}, "favorite": {"_count": 2, "chairs": {"_count": 1}, "students": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "essays": {"_count": 1, "practice": {"_count": 1}}, "high": {"_count": 1, "goalposts": {"_count": 1}}, "get": {"_count": 1, "yourselves": {"_count": 1}}, "generations": {"_count": 1, "said": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "very": {"_count": 1, "dusty": {"_count": 1}}, "Ravenclaw": {"_count": 1, "boys": {"_count": 1}}, "or": {"_count": 2, "more": {"_count": 2}}, "kneeling": {"_count": 1, "down": {"_count": 1}}, "The": {"_count": 1, "room": {"_count": 1}}, "meetings": {"_count": 1, "hard": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "players": {"_count": 1, "left": {"_count": 1}}, "again": {"_count": 1, "had": {"_count": 1}}, "fer": {"_count": 1, "knowin": {"_count": 1}}, "giants": {"_count": 1, "hidin": {"_count": 1}}, "o": {"_count": 1, "them": {"_count": 1}}, "sets": {"_count": 1, "of": {"_count": 1}}, "patients": {"_count": 1, "": {"_count": 1}}, "decks": {"_count": 2, "had": {"_count": 1}, "of": {"_count": 1}}, "Legilimensl": {"_count": 1, "A": {"_count": 1}}, "teachers": {"_count": 2, "conversing": {"_count": 1}, "": {"_count": 1}}, "four": {"_count": 2, "five": {"_count": 2}}, "LegilimensV": {"_count": 1, "A": {"_count": 1}}, "he": {"_count": 1, "pointed": {"_count": 1}}, "Death": {"_count": 3, "Eaters": {"_count": 3}}, "bodies": {"_count": 2, "slam": {"_count": 1}, "lying": {"_count": 1}}, "whats": {"_count": 1, "the": {"_count": 1}}, "gigantic": {"_count": 1, "slugs": {"_count": 1}}, "foreign": {"_count": 1, "dragons": {"_count": 1}}, "decades": {"_count": 1, "": {"_count": 1}}, "handsome": {"_count": 1, "tawnies": {"_count": 1}}, "the": {"_count": 1, "owls": {"_count": 1}}, "go": {"_count": 1, "with": {"_count": 1}}, "Galleons": {"_count": 2, "nine": {"_count": 2}}, "tiny": {"_count": 1, "rooms": {"_count": 1}}, "bucketsized": {"_count": 1, "mugs": {"_count": 1}}, "bottles": {"_count": 2, "of": {"_count": 2}}, "arrests": {"_count": 1, "weve": {"_count": 1}}, "Ds": {"_count": 4, "": {"_count": 1}, "stood": {"_count": 1}, "he": {"_count": 1}, "which": {"_count": 1}}, "called": {"_count": 1, "Twycross": {"_count": 1}}, "But": {"_count": 1, "an": {"_count": 1}}, "walks": {"_count": 1, "past": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "syllables": {"_count": 1, "": {"_count": 1}}, "gobletsful": {"_count": 1, "of": {"_count": 1}}, "figures": {"_count": 1, "racing": {"_count": 1}}, "young": {"_count": 1, "Muggles": {"_count": 1}}, "dont": {"_count": 1, "turn": {"_count": 1}}, "counties": {"_count": 1, "he": {"_count": 1}}, "objects": {"_count": 4, "Scrimgeour": {"_count": 1}, "or": {"_count": 1}, "that": {"_count": 1}, "would": {"_count": 1}}, "victims": {"_count": 1, "and": {"_count": 1}}, "become": {"_count": 1, "four": {"_count": 1}}, "night": {"_count": 1, "watches": {"_count": 1}}, "delicious": {"_count": 1, "meals": {"_count": 1}}, "Extendable": {"_count": 1, "Ears": {"_count": 1}}, "have": {"_count": 2, "been": {"_count": 2}}, "teenagers": {"_count": 1, "in": {"_count": 1}}, "brothers": {"_count": 5, "who": {"_count": 1}, "upon": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}}, "new": {"_count": 1, "victims": {"_count": 1}}, "Peverell": {"_count": 1, "brothers": {"_count": 1}}, "truants": {"_count": 1, "": {"_count": 1}}, "They": {"_count": 1, "Disapparated": {"_count": 1}}, "prisoners": {"_count": 1, "they": {"_count": 1}}, "miniature": {"_count": 1, "suns": {"_count": 1}}, "wands": {"_count": 1, "from": {"_count": 1}}, "bedrooms": {"_count": 1, "in": {"_count": 1}}, "highly": {"_count": 1, "edible": {"_count": 1}}, "included": {"_count": 1, "by": {"_count": 1}}, "Muggle": {"_count": 1, "boys": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "silver": {"_count": 1, "cats": {"_count": 1}}, "highest": {"_count": 1, "towers": {"_count": 1}}, "women": {"_count": 1, "Ginny": {"_count": 1}}, "arent": {"_count": 1, "with": {"_count": 1}}, "redheaded": {"_count": 1, "men": {"_count": 1}}, "had": {"_count": 1, "vanished": {"_count": 1}}, "opponents": {"_count": 1, "Bellatrix": {"_count": 1}}, "Malfoys": {"_count": 1, "huddled": {"_count": 1}}, "children": {"_count": 1, "Albus": {"_count": 1}}}, "shoulders": {"_count": 105, "shook": {"_count": 1, "Professor": {"_count": 1}}, "and": {"_count": 24, "their": {"_count": 1}, "Ron": {"_count": 1}, "ran": {"_count": 1}, "clamped": {"_count": 1}, "thundered": {"_count": 1}, "turned": {"_count": 1}, "threw": {"_count": 1}, "preparing": {"_count": 1}, "securing": {"_count": 1}, "was": {"_count": 1}, "fine": {"_count": 1}, "dragged": {"_count": 1}, "shook": {"_count": 1}, "clutched": {"_count": 1}, "marched": {"_count": 1}, "around": {"_count": 1}, "startlingly": {"_count": 1}, "then": {"_count": 1}, "again": {"_count": 1}, "pulled": {"_count": 2}, "she": {"_count": 1}, "there": {"_count": 1}, "Voldemort": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 3, "Ronan": {"_count": 1}, "Hagrids": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 2, "stay": {"_count": 1}, "see": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "hunched": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 34}}, "taller": {"_count": 1, "than": {"_count": 1}}, "stretched": {"_count": 1, "painfully": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "uncomfortably": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 4, "hunching": {"_count": 1}, "aching": {"_count": 1}, "very": {"_count": 1}, "in": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "banging": {"_count": 1, "into": {"_count": 1}}, "And": {"_count": 1, "that": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "Mrs": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}, "Hermiones": {"_count": 1, "dire": {"_count": 1}}, "giving": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "little": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "thrusting": {"_count": 1, "her": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "determined": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Snape": {"_count": 1, "looked": {"_count": 1}}, "in": {"_count": 2, "vague": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 1, "guided": {"_count": 1}}, "its": {"_count": 1, "neck": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "angrily": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "concentrating": {"_count": 1, "with": {"_count": 1}}, "neither": {"_count": 1, "Travers": {"_count": 1}}, "the": {"_count": 1, "moment": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "free": {"_count": 1}}}, "shook": {"_count": 227, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "its": {"_count": 2, "head": {"_count": 1}, "feathers": {"_count": 1}}, "his": {"_count": 97, "head": {"_count": 85}, "hand": {"_count": 2}, "letter": {"_count": 1}, "shaggy": {"_count": 2}, "mane": {"_count": 1}, "long": {"_count": 1}, "large": {"_count": 1}, "hair": {"_count": 1}, "wet": {"_count": 1}, "ugly": {"_count": 1}, "purpleandgold": {"_count": 1}}, "Harrys": {"_count": 9, "whole": {"_count": 1}, "hand": {"_count": 6}, "bedroom": {"_count": 1}, "": {"_count": 1}}, "hands": {"_count": 14, "again": {"_count": 1}, "with": {"_count": 5}, "Diggory": {"_count": 1}, "": {"_count": 4}, "all": {"_count": 1}, "and": {"_count": 1}, "then": {"_count": 1}}, "their": {"_count": 13, "heads": {"_count": 12}, "fists": {"_count": 1}}, "the": {"_count": 7, "centaurs": {"_count": 1}, "whole": {"_count": 1}, "windows": {"_count": 1}, "crystal": {"_count": 1}, "castle": {"_count": 1}, "branches": {"_count": 1}, "mildewed": {"_count": 1}}, "him": {"_count": 5, "awake": {"_count": 1}, "off": {"_count": 2}, "as": {"_count": 1}, "": {"_count": 1}}, "Millicent": {"_count": 1, "Bulstrodes": {"_count": 1}}, "it": {"_count": 9, "": {"_count": 2}, "roughly": {"_count": 1}, "muttering": {"_count": 1}, "at": {"_count": 1}, "vigorously": {"_count": 1}, "open": {"_count": 1}, "enthusiastically": {"_count": 1}, "hoping": {"_count": 1}}, "and": {"_count": 4, "his": {"_count": 1}, "died": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "again": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "more": {"_count": 1, "than": {"_count": 1}}, "himself": {"_count": 1, "mentally": {"_count": 1}}, "feeling": {"_count": 1, "calluses": {"_count": 1}}, "her": {"_count": 26, "head": {"_count": 24}, "slightly": {"_count": 1}, "off": {"_count": 1}}, "out": {"_count": 2, "a": {"_count": 1}, "books": {"_count": 1}}, "slightly": {"_count": 5, "as": {"_count": 3}, "": {"_count": 2}}, "back": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 3, "she": {"_count": 1}, "he": {"_count": 2}}, "off": {"_count": 1, "Fred": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "violently": {"_count": 1, "as": {"_count": 1}}, "he": {"_count": 1, "seemed": {"_count": 1}}, "under": {"_count": 1, "him": {"_count": 1}}, "very": {"_count": 1, "slightly": {"_count": 1}}, "so": {"_count": 2, "badly": {"_count": 1}, "that": {"_count": 1}}, "pink": {"_count": 1, "confetti": {"_count": 1}}, "Umbridge": {"_count": 1, "slipped": {"_count": 1}}, "Harry": {"_count": 1, "by": {"_count": 1}}, "with": {"_count": 3, "renewed": {"_count": 1}, "the": {"_count": 1}, "malicious": {"_count": 1}}, "from": {"_count": 1, "head": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "Rons": {"_count": 1, "hand": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}}, "furiously": {"_count": 122, "and": {"_count": 6, "the": {"_count": 1}, "all": {"_count": 1}, "soared": {"_count": 1}, "both": {"_count": 1}, "pummelled": {"_count": 1}, "bellowed": {"_count": 1}}, "at": {"_count": 6, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 1}, "Moody": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 5, "its": {"_count": 1}, "she": {"_count": 1}, "all": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "how": {"_count": 1, "dare": {"_count": 1}}, "": {"_count": 51, ".": {"_count": 51}}, "toward": {"_count": 1, "Marcus": {"_count": 1}}, "than": {"_count": 2, "when": {"_count": 1}, "ever": {"_count": 1}}, "but": {"_count": 7, "then": {"_count": 1}, "his": {"_count": 1}, "only": {"_count": 1}, "Ron": {"_count": 1}, "Umbridge": {"_count": 1}, "Dumbledore": {"_count": 1}, "Bellatrix": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 4}}, "under": {"_count": 2, "Flints": {"_count": 1}, "his": {"_count": 1}}, "\u2018We": {"_count": 1, "can": {"_count": 1}}, "great": {"_count": 1, "sizzling": {"_count": 1}}, "letting": {"_count": 1, "go": {"_count": 1}}, "it": {"_count": 2, "slithered": {"_count": 1}, "was": {"_count": 1}}, "kicking": {"_count": 1, "Lockharts": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "Hermione": {"_count": 1}, "try": {"_count": 1}, "face": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "red": {"_count": 1, "on": {"_count": 1}}, "chucking": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "striding": {"_count": 2, "across": {"_count": 1}, "away": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 2}}, "fast": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Master": {"_count": 1, "is": {"_count": 1}}, "staring": {"_count": 1, "up": {"_count": 1}}, "mouthed": {"_count": 1, "for": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "pointing": {"_count": 1, "to": {"_count": 1}}, "pummeling": {"_count": 1, "her": {"_count": 1}}, "turning": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 1, "given": {"_count": 1}}, "quivering": {"_count": 1, "face": {"_count": 1}}, "rounding": {"_count": 1, "on": {"_count": 1}}, "unwillingly": {"_count": 1, "bitterly": {"_count": 1}}}, "twinkling": {"_count": 24, "light": {"_count": 1, "that": {"_count": 1}}, "eyes": {"_count": 2, "flashed": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "lightblue": {"_count": 1, "gaze": {"_count": 1}}, "kindly": {"_count": 1, "down": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "blackandwhite": {"_count": 1, "photograph": {"_count": 1}}, "it": {"_count": 1, "took": {"_count": 1}}, "red": {"_count": 1, "star": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}, "from": {"_count": 1, "several": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}}, "usually": {"_count": 115, "shone": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 2, "one": {"_count": 1}, "smallest": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "count": {"_count": 1, "on": {"_count": 1}}, "gets": {"_count": 2, "me": {"_count": 1}, "everyone": {"_count": 1}}, "tremblin": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 4, "done": {"_count": 1}, "to": {"_count": 1}, "spoken": {"_count": 1}, "departed": {"_count": 1}}, "gives": {"_count": 1, "us": {"_count": 1}}, "bought": {"_count": 1, "with": {"_count": 1}}, "use": {"_count": 1, "it": {"_count": 1}}, "had": {"_count": 4, "the": {"_count": 1}, "slung": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 3, "large": {"_count": 1}, "cause": {"_count": 1}, "desk": {"_count": 1}}, "bloodless": {"_count": 1, "face": {"_count": 1}}, "picked": {"_count": 1, "Harry": {"_count": 1}}, "save": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 4, "in": {"_count": 1}, "at": {"_count": 1}, "while": {"_count": 1}, "disturbed": {"_count": 1}}, "filled": {"_count": 1, "by": {"_count": 1}}, "make": {"_count": 1, "Harry": {"_count": 1}}, "toothy": {"_count": 1, "grin": {"_count": 1}}, "sleek": {"_count": 1, "hair": {"_count": 1}}, "encouraged": {"_count": 1, "Harry": {"_count": 1}}, "reserved": {"_count": 1, "for": {"_count": 1}}, "finds": {"_count": 1, "me": {"_count": 1}}, "showed": {"_count": 1, "some": {"_count": 1}}, "wears": {"_count": 1, "": {"_count": 1}}, "light": {"_count": 1, "and": {"_count": 1}}, "last": {"_count": 1, "to": {"_count": 1}}, "get": {"_count": 1, "tickets": {"_count": 1}}, "perched": {"_count": 1, "": {"_count": 1}}, "wore": {"_count": 1, "long": {"_count": 1}}, "spotless": {"_count": 1, "living": {"_count": 1}}, "just": {"_count": 1, "turn": {"_count": 1}}, "kept": {"_count": 2, "his": {"_count": 1}, "locked": {"_count": 1}}, "go": {"_count": 1, "in": {"_count": 1}}, "volunteered": {"_count": 1, "information": {"_count": 1}}, "liked": {"_count": 1, "to": {"_count": 1}}, "did": {"_count": 5, "on": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}}, "on": {"_count": 1, "excellent": {"_count": 1}}, "sees": {"_count": 1, "": {"_count": 1}}, "going": {"_count": 1, "back": {"_count": 1}}, "closely": {"_count": 1, "observed": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "tied": {"_count": 1, "to": {"_count": 1}}, "gleaming": {"_count": 1, "stood": {"_count": 1}}, "put": {"_count": 1, "all": {"_count": 1}}, "Apparate": {"_count": 1, "said": {"_count": 1}}, "appeared": {"_count": 2, "": {"_count": 2}}, "come": {"_count": 1, "much": {"_count": 1}}, "confined": {"_count": 1, "itself": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "attempt": {"_count": 1, "until": {"_count": 1}}, "live": {"_count": 1, "in": {"_count": 1}}, "covered": {"_count": 1, "the": {"_count": 1}}, "take": {"_count": 1, "this": {"_count": 1}}, "inspired": {"_count": 1, "in": {"_count": 1}}, "giggling": {"_count": 1, "girlfriends": {"_count": 1}}, "show": {"_count": 1, "them": {"_count": 1}}, "happened": {"_count": 1, "at": {"_count": 1}}, "give": {"_count": 2, "extra": {"_count": 1}, "their": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "stood": {"_count": 1, "": {"_count": 1}}, "content": {"_count": 1, "to": {"_count": 1}}, "neat": {"_count": 1, "mousy": {"_count": 1}}, "inhabited": {"_count": 1, "": {"_count": 1}}, "goes": {"_count": 1, "in": {"_count": 1}}, "hung": {"_count": 1, "on": {"_count": 1}}, "lie": {"_count": 1, "in": {"_count": 1}}, "do": {"_count": 1, "at": {"_count": 1}}, "produces": {"_count": 1, "good": {"_count": 1}}, "leave": {"_count": 1, "any": {"_count": 1}}, "impossible": {"_count": 1, "to": {"_count": 1}}, "inseparable": {"_count": 1, "these": {"_count": 1}}, "eat": {"_count": 1, "their": {"_count": 1}}, "coupled": {"_count": 1, "together": {"_count": 1}}, "celebrated": {"_count": 1, "or": {"_count": 1}}, "got": {"_count": 1, "red": {"_count": 1}}, "littered": {"_count": 1, "the": {"_count": 1}}, "dimmed": {"_count": 1, "everyone": {"_count": 1}}, "shipped": {"_count": 1, "off": {"_count": 1}}, "known": {"_count": 1, "as": {"_count": 1}}, "breed": {"_count": 1, "": {"_count": 1}}, "appear": {"_count": 1, "here": {"_count": 1}}, "with": {"_count": 2, "Vol": {"_count": 1}, "YouKnotuWho": {"_count": 1}}, "performed": {"_count": 1, "to": {"_count": 1}}, "drowned": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "tell": {"_count": 1, "Shh": {"_count": 1}}, "languid": {"_count": 1, "pale": {"_count": 1}}, "bend": {"_count": 1, "its": {"_count": 1}}, "flanked": {"_count": 1, "the": {"_count": 1}}, "guarded": {"_count": 1, "the": {"_count": 1}}, "been": {"_count": 1, "good": {"_count": 1}}}, "shone": {"_count": 28, "from": {"_count": 3, "Dumbledores": {"_count": 1}, "any": {"_count": 1}, "inside": {"_count": 1}}, "brightly": {"_count": 3, "on": {"_count": 2}, "onto": {"_count": 1}}, "misty": {"_count": 1, "silver": {"_count": 1}}, "as": {"_count": 1, "brightly": {"_count": 1}}, "with": {"_count": 3, "tears": {"_count": 1}, "excitement": {"_count": 1}, "happiness": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "momentarily": {"_count": 1, "on": {"_count": 1}}, "alone": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 2}, "Harrys": {"_count": 1}}, "more": {"_count": 1, "brightly": {"_count": 1}}, "pearly": {"_count": 1, "white": {"_count": 1}}, "chestnut": {"_count": 1, "and": {"_count": 1}}, "motionless": {"_count": 1, "in": {"_count": 1}}, "far": {"_count": 1, "away": {"_count": 1}}, "Copper": {"_count": 1, "pots": {"_count": 1}}, "his": {"_count": 1, "lit": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "white": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "pearly": {"_count": 1}}}, "Dumbledores": {"_count": 338, "eyes": {"_count": 5, "seemed": {"_count": 1}, "twinkled": {"_count": 1}, "flickered": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}}, "the": {"_count": 6, "only": {"_count": 2}, "worst": {"_count": 2}, "one": {"_count": 1}, "death": {"_count": 1}}, "orders": {"_count": 10, "": {"_count": 4}, "the": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}, "that": {"_count": 1}, "Dumbledore": {"_count": 1}, "I": {"_count": 1}}, "trusted": {"_count": 1, "me": {"_count": 1}}, "silver": {"_count": 1, "hair": {"_count": 1}}, "chair": {"_count": 1, "slumped": {"_count": 1}}, "wand": {"_count": 1, "to": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "smiling": {"_count": 1, "face": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "office": {"_count": 23, "": {"_count": 8}, "but": {"_count": 1}, "without": {"_count": 1}, "once": {"_count": 1}, "knowing": {"_count": 1}, "gave": {"_count": 1}, "so": {"_count": 1}, "just": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 1}, "seemed": {"_count": 1}, "now": {"_count": 1}, "looking": {"_count": 1}, "in": {"_count": 1}, "she": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "powers": {"_count": 1, "rival": {"_count": 1}}, "writing": {"_count": 3, "to": {"_count": 1}, "it": {"_count": 1}, "on": {"_count": 1}}, "was": {"_count": 1, "by": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "final": {"_count": 3, "words": {"_count": 1}, "resting": {"_count": 1}, "hours": {"_count": 1}}, "instructions": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}, "bird": {"_count": 1, "knows": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "youve": {"_count": 1}}, "footsteps": {"_count": 1, "drew": {"_count": 1}}, "anger": {"_count": 1, "seemed": {"_count": 1}}, "trust": {"_count": 2, "of": {"_count": 1}, "has": {"_count": 1}}, "nose": {"_count": 1, "for": {"_count": 1}}, "voice": {"_count": 4, "": {"_count": 2}, "talking": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "not": {"_count": 3, "what": {"_count": 1}, "stupid": {"_count": 1}, "worried": {"_count": 1}}, "got": {"_count": 3, "a": {"_count": 2}, "his": {"_count": 1}}, "always": {"_count": 1, "done": {"_count": 1}}, "reading": {"_count": 1, "what": {"_count": 1}}, "speech": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "about": {"_count": 1}}, "long": {"_count": 2, "white": {"_count": 1}, "and": {"_count": 1}}, "Age": {"_count": 1, "Line": {"_count": 1}}, "letting": {"_count": 2, "you": {"_count": 1}, "Molly": {"_count": 1}}, "never": {"_count": 1, "sacked": {"_count": 1}}, "very": {"_count": 1, "interested": {"_count": 1}}, "safety": {"_count": 1, "precautions": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 2, "me": {"_count": 1}, "us": {"_count": 1}}, "notified": {"_count": 1, "them": {"_count": 1}}, "desk": {"_count": 8, "wearing": {"_count": 1}, "": {"_count": 4}, "had": {"_count": 1}, "that": {"_count": 1}, "illuminate": {"_count": 1}}, "phoenix": {"_count": 1, "was": {"_count": 1}}, "other": {"_count": 1, "side": {"_count": 1}}, "face": {"_count": 6, "and": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 4}}, "protection": {"_count": 4, "but": {"_count": 1}, "kept": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}}, "name": {"_count": 3, "the": {"_count": 1}, "that": {"_count": 1}, "leapt": {"_count": 1}}, "school": {"_count": 1, "": {"_count": 1}}, "help": {"_count": 1, "and": {"_count": 1}}, "friend": {"_count": 1, "the": {"_count": 1}}, "Pensieve": {"_count": 6, "had": {"_count": 1}, "the": {"_count": 2}, "Bellatrix": {"_count": 1}, "": {"_count": 2}}, "plan": {"_count": 1, "anyway": {"_count": 1}}, "favorite": {"_count": 5, "boy": {"_count": 2}, "but": {"_count": 1}, "has": {"_count": 1}, "solution": {"_count": 1}}, "just": {"_count": 1, "arrived": {"_count": 1}}, "in": {"_count": 2, "charge": {"_count": 1}, "such": {"_count": 1}}, "names": {"_count": 1, "mud": {"_count": 1}}, "shrewd": {"_count": 1, "ideas": {"_count": 1}}, "plotting": {"_count": 1, "to": {"_count": 1}}, "much": {"_count": 1, "cleverer": {"_count": 1}}, "simply": {"_count": 1, "stirring": {"_count": 1}}, "lying": {"_count": 1, "to": {"_count": 1}}, "rumormongering": {"_count": 1, "so": {"_count": 1}}, "out": {"_count": 2, "there": {"_count": 1}, "of": {"_count": 1}}, "probably": {"_count": 2, "keeping": {"_count": 1}, "got": {"_count": 1}}, "added": {"_count": 1, "his": {"_count": 1}}, "SecretKeeper": {"_count": 1, "for": {"_count": 1}}, "eye": {"_count": 4, "but": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}}, "abrupt": {"_count": 1, "departure": {"_count": 1}}, "found": {"_count": 1, "a": {"_count": 1}}, "brother": {"_count": 1, "Aberforth": {"_count": 1}}, "head": {"_count": 1, "was": {"_count": 1}}, "word": {"_count": 1, "for": {"_count": 1}}, "going": {"_count": 1, "senile": {"_count": 1}}, "lot": {"_count": 1, "so": {"_count": 1}}, "regime": {"_count": 1, "at": {"_count": 1}}, "has": {"_count": 1, "recently": {"_count": 1}}, "doing": {"_count": 1, "forming": {"_count": 1}}, "eccentric": {"_count": 2, "decisions": {"_count": 1}, "appearance": {"_count": 1}}, "excellent": {"_count": 1, "said": {"_count": 1}}, "been": {"_count": 4, "telling": {"_count": 2}, "able": {"_count": 1}, "so": {"_count": 1}}, "Army": {"_count": 13, "because": {"_count": 1}, "Cornelius": {"_count": 1}, "": {"_count": 4}, "how": {"_count": 1}, "had": {"_count": 1}, "Still": {"_count": 1}, "were": {"_count": 1}, "Fred": {"_count": 1}, "and": {"_count": 1}, "A": {"_count": 1}}, "message": {"_count": 1, "an": {"_count": 1}}, "friendly": {"_count": 1, "to": {"_count": 1}}, "takin": {"_count": 1, "a": {"_count": 1}}, "predecessor": {"_count": 1, "Armando": {"_count": 1}}, "clear": {"_count": 1, "blue": {"_count": 1}}, "flight": {"_count": 1, "and": {"_count": 1}}, "job": {"_count": 1, "and": {"_count": 1}}, "spell": {"_count": 1, "pulled": {"_count": 1}}, "crooked": {"_count": 1, "nose": {"_count": 1}}, "tall": {"_count": 1, "form": {"_count": 1}}, "explanation": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "pocket": {"_count": 2, "": {"_count": 2}}, "pet": {"_count": 1, "": {"_count": 1}}, "stooge": {"_count": 1, "": {"_count": 1}}, "greatest": {"_count": 1, "weakness": {"_count": 1}}, "arrival": {"_count": 1, "": {"_count": 1}}, "proffered": {"_count": 1, "forearm": {"_count": 1}}, "arm": {"_count": 2, "twist": {"_count": 1}, "as": {"_count": 1}}, "hat": {"_count": 1, "": {"_count": 1}}, "blue": {"_count": 2, "eyes": {"_count": 2}}, "right": {"_count": 1, "did": {"_count": 1}}, "magnificent": {"_count": 1, "phoenix": {"_count": 1}}, "next": {"_count": 1, "lesson": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "showing": {"_count": 1, "you": {"_count": 1}}, "top": {"_count": 1, "of": {"_count": 1}}, "tried": {"_count": 1, "appealing": {"_count": 1}}, "business": {"_count": 1, "": {"_count": 1}}, "wrong": {"_count": 1, "about": {"_count": 1}}, "judgment": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "still": {"_count": 2, "headmaster": {"_count": 1}, "got": {"_count": 1}}, "man": {"_count": 2, "through": {"_count": 2}}, "fingers": {"_count": 1, "closed": {"_count": 1}}, "shown": {"_count": 1, "you": {"_count": 1}}, "worried": {"_count": 1, "sick": {"_count": 1}}, "angry": {"_count": 2, "with": {"_count": 2}}, "refusal": {"_count": 1, "to": {"_count": 1}}, "hand": {"_count": 1, "was": {"_count": 1}}, "gargoyle": {"_count": 1, "which": {"_count": 1}}, "particularly": {"_count": 1, "fierce": {"_count": 1}}, "decision": {"_count": 2, "Harry": {"_count": 1}, "to": {"_count": 1}}, "promise": {"_count": 1, "to": {"_count": 1}}, "corridor": {"_count": 1, "where": {"_count": 1}}, "door": {"_count": 1, "he": {"_count": 1}}, "expression": {"_count": 1, "did": {"_count": 1}}, "lined": {"_count": 1, "face": {"_count": 1}}, "concentration": {"_count": 1, "": {"_count": 1}}, "uninjured": {"_count": 1, "hand": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "shoulders": {"_count": 1, "and": {"_count": 1}}, "glasses": {"_count": 1, "were": {"_count": 1}}, "chest": {"_count": 1, "there": {"_count": 1}}, "eyelids": {"_count": 1, "flickered": {"_count": 1}}, "silence": {"_count": 1, "than": {"_count": 1}}, "weight": {"_count": 1, "still": {"_count": 1}}, "sigh": {"_count": 1, "was": {"_count": 1}}, "praise": {"_count": 1, "": {"_count": 1}}, "side": {"_count": 1, "he": {"_count": 1}}, "dead": {"_count": 3, "said": {"_count": 2}, "he": {"_count": 1}}, "body": {"_count": 8, "from": {"_count": 1}, "might": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 2}, "at": {"_count": 1}}, "and": {"_count": 1, "another": {"_count": 1}}, "death": {"_count": 7, "I": {"_count": 1}, "and": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}, "felt": {"_count": 1}, "was": {"_count": 2}}, "murder": {"_count": 1, "is": {"_count": 1}}, "funeral": {"_count": 6, "": {"_count": 1}, "that": {"_count": 1}, "said": {"_count": 1}, "now": {"_count": 1}, "raises": {"_count": 1}, "and": {"_count": 1}}, "wish": {"_count": 1, "to": {"_count": 1}}, "life": {"_count": 2, "": {"_count": 2}}, "last": {"_count": 2, "excursion": {"_count": 1}, "plan": {"_count": 1}}, "passing": {"_count": 1, "": {"_count": 1}}, "tomb": {"_count": 2, "and": {"_count": 2}}, "white": {"_count": 1, "tomb": {"_count": 1}}, "future": {"_count": 1, "career": {"_count": 1}}, "innumerable": {"_count": 1, "contributions": {"_count": 1}}, "triumph": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "Skeeters": {"_count": 1}}, "achievements": {"_count": 2, "cannot": {"_count": 1}, "the": {"_count": 1}}, "spectacular": {"_count": 1, "victory": {"_count": 1}}, "legions": {"_count": 1, "of": {"_count": 1}}, "willingness": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "will": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "own": {"_count": 1, "design": {"_count": 1}}, "I": {"_count": 1, "open": {"_count": 1}}, "obituary": {"_count": 1, "": {"_count": 1}}, "mother": {"_count": 3, "was": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "sister": {"_count": 1, "suffered": {"_count": 1}}, "goodness": {"_count": 1, "knows": {"_count": 1}}, "for": {"_count": 1, "years": {"_count": 1}}, "moved": {"_count": 1, "there": {"_count": 1}}, "lived": {"_count": 1, "in": {"_count": 1}}, "father": {"_count": 1, "Percival": {"_count": 1}}, "study": {"_count": 1, "Merlins": {"_count": 1}}, "collection": {"_count": 1, "of": {"_count": 1}}, "portrait": {"_count": 2, "couldnt": {"_count": 1}, "": {"_count": 1}}, "Snitch": {"_count": 1, "and": {"_count": 1}}, "hands": {"_count": 1, "were": {"_count": 1}}, "grasp": {"_count": 1, "and": {"_count": 1}}, "grave": {"_count": 1, "": {"_count": 1}}, "corpse": {"_count": 1, "frightened": {"_count": 1}}, "intentions": {"_count": 1, "": {"_count": 1}}, "puppet": {"_count": 1, "had": {"_count": 1}}, "deserted": {"_count": 1, "frame": {"_count": 1}}, "betrayal": {"_count": 1, "was": {"_count": 1}}, "tone": {"_count": 1, "by": {"_count": 1}}, "smile": {"_count": 1, "was": {"_count": 1}}, "Dumbledores": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "spy": {"_count": 1, "from": {"_count": 1}}, "or": {"_count": 1, "what": {"_count": 1}}}, "business": {"_count": 91, "staying": {"_count": 1, "here": {"_count": 1}}, "anything": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 21}, "?": {"_count": 1}, "!": {"_count": 3}}, "said": {"_count": 6, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "Ginny": {"_count": 1}, "Mr": {"_count": 1}, "Hermione": {"_count": 1}}, "from": {"_count": 1, "now": {"_count": 1}}, "to": {"_count": 7, "run": {"_count": 1}, "do": {"_count": 1}, "discuss": {"_count": 1}, "know": {"_count": 1}, "attend": {"_count": 1}, "discover": {"_count": 1}, "study": {"_count": 1}}, "here": {"_count": 1, "Peeves": {"_count": 1}}, "goes": {"_count": 1, "well": {"_count": 1}}, "elsewhere": {"_count": 1, "today": {"_count": 1}}, "with": {"_count": 1, "HeWhoMustNotBeNamed": {"_count": 1}}, "He": {"_count": 1, "bent": {"_count": 1}}, "You": {"_count": 1, "dont": {"_count": 1}}, "and": {"_count": 3, "someone": {"_count": 1}, "it": {"_count": 1}, "youll": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "indeed": {"_count": 2, "": {"_count": 2}}, "as": {"_count": 3, "usual": {"_count": 3}}, "if": {"_count": 2, "youre": {"_count": 1}, "Harrys": {"_count": 1}}, "opportunity": {"_count": 2, "see": {"_count": 1}, "Harry": {"_count": 1}}, "he": {"_count": 1, "reckons": {"_count": 1}}, "dealings": {"_count": 1, "thank": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Bode": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 4, "he": {"_count": 2}, "goes": {"_count": 1}, "Im": {"_count": 1}}, "have": {"_count": 1, "they": {"_count": 1}}, "when": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 2, "fastening": {"_count": 1}, "it": {"_count": 1}}, "no": {"_count": 1, "problem": {"_count": 1}}, "who": {"_count": 2, "I": {"_count": 2}}, "being": {"_count": 1, "weak": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "theyre": {"_count": 1, "great": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "Quidditch": {"_count": 1, "was": {"_count": 1}}, "Yeah": {"_count": 1, "but": {"_count": 1}}, "Potter": {"_count": 1, "sneered": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "though": {"_count": 1, "many": {"_count": 1}}, "leaving": {"_count": 1, "Voldemort": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "staying": {"_count": 58, "here": {"_count": 6, "": {"_count": 2}, "all": {"_count": 1}, "for": {"_count": 1}, "until": {"_count": 1}, "if": {"_count": 1}}, "for": {"_count": 5, "the": {"_count": 1}, "years": {"_count": 1}, "meals": {"_count": 1}, "": {"_count": 1}, "dinner": {"_count": 1}}, "too": {"_count": 1, "because": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "them": {"_count": 2}}, "at": {"_count": 9, "school": {"_count": 1}, "the": {"_count": 4}, "headquarters": {"_count": 1}, "Hogwarts": {"_count": 2}, "home": {"_count": 1}}, "which": {"_count": 1, "struck": {"_count": 1}}, "over": {"_count": 1, "Christmas": {"_count": 1}}, "in": {"_count": 7, "school": {"_count": 1}, "the": {"_count": 5}, "five": {"_count": 1}}, "behind": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "for": {"_count": 1}}, "indoors": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, "!": {"_count": 1}, ".": {"_count": 2}}, "just": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "judge": {"_count": 1}}, "without": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 2, "they": {"_count": 1}, "teaching": {"_count": 1}}, "undercover": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 1, "were": {"_count": 1}}, "well": {"_count": 1, "away": {"_count": 1}}, "we": {"_count": 1, "should": {"_count": 1}}, "where": {"_count": 1, "we": {"_count": 1}}, "or": {"_count": 1, "what": {"_count": 1}}, "Crabbes": {"_count": 1, "arm": {"_count": 1}}, "up": {"_count": 1, "far": {"_count": 1}}}, "go": {"_count": 1312, "and": {"_count": 151, "join": {"_count": 2}, "get": {"_count": 22}, "make": {"_count": 1}, "hed": {"_count": 1}, "learn": {"_count": 1}, "look": {"_count": 7}, "dont": {"_count": 2}, "see": {"_count": 18}, "watch": {"_count": 1}, "find": {"_count": 11}, "wait": {"_count": 1}, "fetch": {"_count": 3}, "put": {"_count": 1}, "do": {"_count": 2}, "warn": {"_count": 1}, "ask": {"_count": 4}, "collect": {"_count": 3}, "talk": {"_count": 3}, "live": {"_count": 4}, "prepare": {"_count": 1}, "inform": {"_count": 1}, "use": {"_count": 1}, "alert": {"_count": 1}, "pack": {"_count": 2}, "chase": {"_count": 1}, "visit": {"_count": 4}, "meet": {"_count": 1}, "notify": {"_count": 1}, "check": {"_count": 2}, "examine": {"_count": 1}, "help": {"_count": 2}, "though": {"_count": 1}, "have": {"_count": 6}, "tell": {"_count": 5}, "dump": {"_count": 1}, "sit": {"_count": 1}, "send": {"_count": 1}, "stepped": {"_count": 1}, "stop": {"_count": 1}, "wake": {"_count": 1}, "head": {"_count": 2}, "just": {"_count": 1}, "snog": {"_count": 1}, "you": {"_count": 1}, "sleep": {"_count": 1}, "tip": {"_count": 1}, "Ill": {"_count": 1}, "Sirius": {"_count": 1}, "er": {"_count": 1}, "turning": {"_count": 1}, "change": {"_count": 1}, "pureblood": {"_count": 1}, "explain": {"_count": 1}, "feed": {"_count": 1}, "I": {"_count": 1}, "take": {"_count": 3}, "saw": {"_count": 1}, "congratulate": {"_count": 1}, "sort": {"_count": 1}, "fight": {"_count": 1}, "comfort": {"_count": 1}, "call": {"_count": 1}, "together": {"_count": 1}, "assist": {"_count": 1}}, "on": {"_count": 59, "Dudleys": {"_count": 1}, "try": {"_count": 1}, "": {"_count": 13}, "the": {"_count": 2}, "for": {"_count": 2}, "stand": {"_count": 1}, "Madam": {"_count": 1}, "Harry": {"_count": 4}, "without": {"_count": 1}, "No": {"_count": 1}, "it": {"_count": 4}, "both": {"_count": 1}, "an": {"_count": 3}, "then": {"_count": 3}, "how": {"_count": 1}, "Sirius": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}, "but": {"_count": 1}, "Willy": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 2}, "Saturday": {"_count": 1}, "Malfoy": {"_count": 1}, "my": {"_count": 1}, "about": {"_count": 2}, "and": {"_count": 2}, "through": {"_count": 1}, "there": {"_count": 1}, "holiday": {"_count": 1}, "than": {"_count": 1}, "said": {"_count": 1}}, "wrong": {"_count": 7, "": {"_count": 3}, "his": {"_count": 1}, "boy": {"_count": 1}, "with": {"_count": 1}, "so": {"_count": 1}}, "": {"_count": 175, "?": {"_count": 31}, ".": {"_count": 102}, "!": {"_count": 42}}, "just": {"_count": 2, "go": {"_count": 1}, "now": {"_count": 1}}, "to": {"_count": 131, "work": {"_count": 5}, "Hogwarts": {"_count": 5}, "bed": {"_count": 19}, "the": {"_count": 37}, "Dumbledore": {"_count": 6}, "Madam": {"_count": 3}, "any": {"_count": 3}, "your": {"_count": 3}, "that": {"_count": 1}, "school": {"_count": 1}, "Gringotts": {"_count": 1}, "Hogsmeade": {"_count": 2}, "Mr": {"_count": 1}, "Charms": {"_count": 1}, "Azkaban": {"_count": 2}, "this": {"_count": 1}, "some": {"_count": 2}, "Beauxbatons": {"_count": 1}, "Dad": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 3}, "town": {"_count": 1}, "Kings": {"_count": 2}, "her": {"_count": 1}, "St": {"_count": 3}, "er": {"_count": 1}, "Siriuss": {"_count": 1}, "Flourish": {"_count": 1}, "Borgin": {"_count": 1}, "Slughorns": {"_count": 2}, "you": {"_count": 1}, "hasnt": {"_count": 1}, "Slughorn": {"_count": 1}, "his": {"_count": 1}, "kill": {"_count": 1}, "Godrics": {"_count": 7}, "loads": {"_count": 1}, "Narcissa": {"_count": 1}, "Albania": {"_count": 1}, "Ravenclaw": {"_count": 1}, "him": {"_count": 2}, "Professor": {"_count": 1}}, "through": {"_count": 13, "the": {"_count": 3}, "their": {"_count": 1}, "first": {"_count": 1}, "into": {"_count": 1}, "it": {"_count": 4}, "that": {"_count": 1}, "all": {"_count": 1}, "what": {"_count": 1}}, "out": {"_count": 14, "": {"_count": 2}, "said": {"_count": 1}, "into": {"_count": 2}, "to": {"_count": 1}, "with": {"_count": 6}, "in": {"_count": 1}, "for": {"_count": 1}}, "home": {"_count": 19, "dear": {"_count": 1}, "": {"_count": 9}, "Harry": {"_count": 1}, "for": {"_count": 2}, "to": {"_count": 1}, "and": {"_count": 2}, "about": {"_count": 1}, "the": {"_count": 1}, "whispered": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "boil": {"_count": 1, "yer": {"_count": 1}}, "off": {"_count": 7, "ter": {"_count": 1}, "at": {"_count": 1}, "you": {"_count": 2}, "in": {"_count": 1}, "food": {"_count": 1}, "I": {"_count": 1}}, "a": {"_count": 2, "great": {"_count": 1}, "brilliant": {"_count": 1}}, "back": {"_count": 83, "in": {"_count": 1}, "upstairs": {"_count": 1}, "to": {"_count": 43}, "": {"_count": 7}, "tonight": {"_count": 1}, "outside": {"_count": 1}, "I": {"_count": 1}, "term": {"_count": 1}, "sir": {"_count": 1}, "into": {"_count": 1}, "home": {"_count": 1}, "for": {"_count": 1}, "ter": {"_count": 1}, "up": {"_count": 2}, "three": {"_count": 1}, "go": {"_count": 1}, "theres": {"_count": 1}, "quickly": {"_count": 1}, "again": {"_count": 1}, "now": {"_count": 1}, "We": {"_count": 1}, "and": {"_count": 3}, "the": {"_count": 1}, "with": {"_count": 1}, "weve": {"_count": 1}, "there": {"_count": 3}, "that": {"_count": 1}, "said": {"_count": 1}, "havent": {"_count": 1}, "you": {"_count": 1}}, "said": {"_count": 20, "Hagrid": {"_count": 2}, "Quirrell": {"_count": 1}, "Rons": {"_count": 1}, "Wood": {"_count": 1}, "Nearly": {"_count": 1}, "Ron": {"_count": 1}, "Fred": {"_count": 3}, "Harry": {"_count": 4}, "Fudge": {"_count": 1}, "Hermione": {"_count": 2}, "Moody": {"_count": 1}, "Professor": {"_count": 1}, "Mrs": {"_count": 1}}, "more": {"_count": 1, "slowly": {"_count": 1}}, "red": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "now": {"_count": 1}}, "Youre": {"_count": 1, "not": {"_count": 1}}, "first": {"_count": 9, "": {"_count": 4}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "shall": {"_count": 1}}, "now": {"_count": 18, "before": {"_count": 2}, "dont": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 4}, "": {"_count": 5}, "then": {"_count": 1}, "sir": {"_count": 1}, "the": {"_count": 1}, "if": {"_count": 1}, "The": {"_count": 1}}, "making": {"_count": 1, "friends": {"_count": 1}}, "the": {"_count": 6, "same": {"_count": 2}, "other": {"_count": 1}, "bell": {"_count": 1}, "chance": {"_count": 1}, "whole": {"_count": 1}}, "over": {"_count": 5, "to": {"_count": 3}, "the": {"_count": 2}}, "somewhere": {"_count": 3, "the": {"_count": 1}, "else": {"_count": 1}, "more": {"_count": 1}}, "when": {"_count": 7, "they": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "youre": {"_count": 2}}, "without": {"_count": 3, "her": {"_count": 1}, "being": {"_count": 1}, "regret": {"_count": 1}}, "of": {"_count": 41, "Fang": {"_count": 1}, "the": {"_count": 7}, "him": {"_count": 8}, "his": {"_count": 4}, "Harrys": {"_count": 2}, "Harry": {"_count": 7}, "Black": {"_count": 1}, "Parvati": {"_count": 1}, "me": {"_count": 1}, "either": {"_count": 1}, "it": {"_count": 2}, "Neville": {"_count": 1}, "all": {"_count": 1}, "her": {"_count": 1}, "Ron": {"_count": 1}, "Rons": {"_count": 1}, "Hermione": {"_count": 1}}, "up": {"_count": 25, "ter": {"_count": 1}, "to": {"_count": 17}, "the": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "there": {"_count": 1}, "an": {"_count": 1}, "said": {"_count": 1}}, "Lee": {"_count": 1, "Jordan": {"_count": 1}}, "wandering": {"_count": 3, "around": {"_count": 3}}, "were": {"_count": 1, "going": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "anywhere": {"_count": 3, "in": {"_count": 1}, "alone": {"_count": 1}, "": {"_count": 1}}, "down": {"_count": 35, "and": {"_count": 7}, "to": {"_count": 16}, "you": {"_count": 1}, "too": {"_count": 2}, "then": {"_count": 1}, "there": {"_count": 4}, "into": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}, "after": {"_count": 1}}, "looking": {"_count": 10, "for": {"_count": 10}}, "shoutin": {"_count": 1, "about": {"_count": 1}}, "rabbitin": {"_count": 1, "about": {"_count": 1}}, "straight": {"_count": 15, "down": {"_count": 3}, "off": {"_count": 1}, "to": {"_count": 8}, "up": {"_count": 1}, "back": {"_count": 1}, "for": {"_count": 1}}, "Harry": {"_count": 10, "urged": {"_count": 1}, "agreed": {"_count": 1}, "he": {"_count": 1}, "dear": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "didnt": {"_count": 1}, "whats": {"_count": 1}}, "though": {"_count": 2, "have": {"_count": 1}, "it": {"_count": 1}}, "in": {"_count": 14, "there": {"_count": 4}, "said": {"_count": 1}, "Slytherin": {"_count": 1}, "the": {"_count": 2}, "for": {"_count": 1}, "here": {"_count": 2}, "now": {"_count": 1}, "and": {"_count": 1}, "front": {"_count": 1}}, "one": {"_count": 1, "way": {"_count": 1}}, "with": {"_count": 30, "Fang": {"_count": 1}, "you": {"_count": 7}, "him": {"_count": 2}, "someone": {"_count": 1}, "me": {"_count": 1}, "Neville": {"_count": 1}, "Harry": {"_count": 2}, "Ron": {"_count": 3}, "a": {"_count": 2}, "Snape": {"_count": 1}, "the": {"_count": 1}, "Mum": {"_count": 1}, "her": {"_count": 2}, "Hagrid": {"_count": 1}, "them": {"_count": 2}, "Slughorn": {"_count": 1}, "Dumbledore": {"_count": 1}}, "ter": {"_count": 3, "any": {"_count": 1}, "his": {"_count": 1}, "pieces": {"_count": 1}}, "outside": {"_count": 3, "but": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}}, "alone": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "there": {"_count": 5, "instead": {"_count": 1}, "11": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 2}}, "before": {"_count": 7, "it": {"_count": 1}, "he": {"_count": 2}, "February": {"_count": 1}, "that": {"_count": 1}, "Id": {"_count": 1}, "": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "you": {"_count": 3, "havent": {"_count": 1}, "didnt": {"_count": 1}, "know": {"_count": 1}}, "George": {"_count": 1, "whispered": {"_count": 1}}, "upstairs": {"_count": 5, "really": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 2}, "with": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "after": {"_count": 5, "Arthur": {"_count": 1}, "Black": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}}, "biting": {"_count": 1, "off": {"_count": 1}}, "into": {"_count": 26, "a": {"_count": 2}, "Hogsmeade": {"_count": 5}, "hiding": {"_count": 6}, "the": {"_count": 12}, "work": {"_count": 1}}, "hungry": {"_count": 1, "for": {"_count": 1}}, "together": {"_count": 2, "weve": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 2, "he": {"_count": 1}, "Youre": {"_count": 1}}, "downhill": {"_count": 1, "from": {"_count": 1}}, "move": {"_count": 1, "along": {"_count": 1}}, "but": {"_count": 5, "he": {"_count": 1}, "then": {"_count": 1}, "his": {"_count": 1}, "Fudge": {"_count": 1}, "Professor": {"_count": 1}}, "at": {"_count": 12, "last": {"_count": 1}, "Hogwarts": {"_count": 1}, "least": {"_count": 1}, "Mundungus": {"_count": 1}, "him": {"_count": 1}, "my": {"_count": 2}, "anyone": {"_count": 1}, "each": {"_count": 1}, "Diggory": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "Amazed": {"_count": 1, "at": {"_count": 1}}, "Dumbledore": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "s": {"_count": 1}}, "so": {"_count": 2, "they": {"_count": 1}, "far": {"_count": 1}}, "Macmillan": {"_count": 1, "": {"_count": 1}}, "seriously": {"_count": 1, "wrong": {"_count": 1}}, "A": {"_count": 1, "highpitched": {"_count": 1}}, "around": {"_count": 4, "with": {"_count": 1}, "by": {"_count": 1}, "looking": {"_count": 1}, "putting": {"_count": 1}}, "right": {"_count": 5, "through": {"_count": 1}, "again": {"_count": 1}, "up": {"_count": 1}, "I": {"_count": 1}, "Jugson": {"_count": 1}}, "shall": {"_count": 1, "I": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "ahead": {"_count": 4, "of": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "then": {"_count": 14, "Harry": {"_count": 2}, "": {"_count": 7}, "Fred": {"_count": 1}, "Perkins": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}, "another": {"_count": 1}}, "crazy": {"_count": 1, "when": {"_count": 1}}, "You": {"_count": 1, "know": {"_count": 1}}, "What": {"_count": 1, "about": {"_count": 1}}, "not": {"_count": 1, "now": {"_count": 1}}, "If": {"_count": 1, "the": {"_count": 1}}, "giving": {"_count": 3, "out": {"_count": 1}, "students": {"_count": 1}, "away": {"_count": 1}}, "away": {"_count": 7, "and": {"_count": 1}, "Crookshanks": {"_count": 1}, "Malfoy": {"_count": 1}, "Kreacher": {"_count": 1}, "": {"_count": 2}, "understand": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "Madam": {"_count": 1, "Marsh": {"_count": 1}}, "wherever": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "mad": {"_count": 5, "in": {"_count": 2}, "within": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}}, "look": {"_count": 2, "Divinations": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 4, "get": {"_count": 1}, "made": {"_count": 1}, "see": {"_count": 1}, "mb": {"_count": 1}}, "next": {"_count": 4, "time": {"_count": 1}, "door": {"_count": 1}, "": {"_count": 2}}, "this": {"_count": 4, "time": {"_count": 1}, "way": {"_count": 2}, "evening": {"_count": 1}}, "But": {"_count": 3, "I": {"_count": 1}, "Black": {"_count": 1}, "thats": {"_count": 1}}, "for": {"_count": 13, "it": {"_count": 2}, "a": {"_count": 5}, "help": {"_count": 1}, "looks": {"_count": 1}, "the": {"_count": 2}, "birds": {"_count": 1}, "holey": {"_count": 1}}, "near": {"_count": 5, "it": {"_count": 2}, "Grawp": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "blank": {"_count": 1, "": {"_count": 1}}, "doing": {"_count": 1, "anything": {"_count": 1}}, "inter": {"_count": 1, "hidin": {"_count": 1}}, "it": {"_count": 1, "hung": {"_count": 1}}, "running": {"_count": 1, "to": {"_count": 1}}, "Its": {"_count": 1, "him": {"_count": 1}}, "And": {"_count": 1, "at": {"_count": 1}}, "again": {"_count": 4, "gave": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "ballistic": {"_count": 1, "said": {"_count": 1}}, "They": {"_count": 1, "walked": {"_count": 1}}, "saying": {"_count": 1, "things": {"_count": 1}}, "horribly": {"_count": 1, "wrong": {"_count": 1}}, "that": {"_count": 3, "far": {"_count": 1}, "way": {"_count": 1}, "it": {"_count": 1}}, "quick": {"_count": 1, "Harry": {"_count": 1}}, "unnoticed": {"_count": 1, "for": {"_count": 1}}, "would": {"_count": 1, "make": {"_count": 1}}, "dropping": {"_count": 1, "you": {"_count": 1}}, "scarlet": {"_count": 1, "she": {"_count": 1}}, "incognito": {"_count": 1, "do": {"_count": 1}}, "picking": {"_count": 2, "them": {"_count": 1}, "a": {"_count": 1}}, "showing": {"_count": 1, "Mr": {"_count": 1}}, "find": {"_count": 1, "yourself": {"_count": 1}}, "Ron": {"_count": 2, "yelled": {"_count": 1}, "": {"_count": 1}}, "Molly": {"_count": 1, "said": {"_count": 1}}, "starkers": {"_count": 1, "before": {"_count": 1}}, "he": {"_count": 9, "said": {"_count": 4}, "was": {"_count": 1}, "had": {"_count": 1}, "whispered": {"_count": 1}, "found": {"_count": 1}, "boomed": {"_count": 1}}, "fer": {"_count": 1, "I": {"_count": 1}}, "take": {"_count": 2, "it": {"_count": 1}, "these": {"_count": 1}}, "blaming": {"_count": 1, "Dumbledore": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 1}, "wouldnt": {"_count": 1}}, "always": {"_count": 1, "assuming": {"_count": 1}}, "tellin": {"_count": 1, "anyone": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "upsetting": {"_count": 2, "them": {"_count": 1}, "Rita": {"_count": 1}}, "well": {"_count": 3, "with": {"_count": 2}, "have": {"_count": 1}}, "until": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "otherwise": {"_count": 1, "Im": {"_count": 1}}, "south": {"_count": 1, "and": {"_count": 1}}, "badly": {"_count": 1, "wrong": {"_count": 1}}, "extrafast": {"_count": 1, "": {"_count": 1}}, "please": {"_count": 2, "let": {"_count": 1}, "lets": {"_count": 1}}, "pure": {"_count": 1, "white": {"_count": 1}}, "very": {"_count": 2, "quiet": {"_count": 1}, "quickly": {"_count": 1}}, "leaving": {"_count": 1, "Hogwarts": {"_count": 1}}, "haywire": {"_count": 1, "around": {"_count": 1}}, "Mr": {"_count": 2, "Crouch": {"_count": 2}}, "walking": {"_count": 1, "with": {"_count": 1}}, "amiss": {"_count": 1, "either": {"_count": 1}}, "sneaking": {"_count": 1, "off": {"_count": 1}}, "if": {"_count": 3, "hes": {"_count": 1}, "you": {"_count": 2}}, "berserk": {"_count": 1, "on": {"_count": 1}}, "northwest": {"_count": 1, "for": {"_count": 1}}, "where": {"_count": 1, "other": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "extremely": {"_count": 1, "quickly": {"_count": 1}}, "downstairs": {"_count": 3, "he": {"_count": 1}, "for": {"_count": 1}, "theres": {"_count": 1}}, "astray": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 2, "Harry": {"_count": 1}, "is": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 3, "rapped": {"_count": 1}, "didnt": {"_count": 1}, "sped": {"_count": 1}}, "far": {"_count": 2, "inside": {"_count": 1}, "Tom": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "cautiously": {"_count": 1, "for": {"_count": 1}}, "Fudge": {"_count": 1, "barked": {"_count": 1}}, "strolling": {"_count": 1, "through": {"_count": 1}}, "uninvestigated": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 4, "guilty": {"_count": 1}, "slightly": {"_count": 2}, "miserable": {"_count": 1}}, "thought": {"_count": 1, "that": {"_count": 1}}, "further": {"_count": 2, "Listen": {"_count": 1}, "back": {"_count": 1}}, "asking": {"_count": 1, "too": {"_count": 1}}, "too": {"_count": 7, "badly": {"_count": 1}, "well": {"_count": 1}, "near": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "far": {"_count": 1}, "I": {"_count": 1}}, "nuts": {"_count": 1, "if": {"_count": 1}}, "slow": {"_count": 1, "cause": {"_count": 1}}, "sneakin": {"_count": 1, "up": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "pokin": {"_count": 1, "round": {"_count": 1}}, "worryin": {"_count": 1, "abou": {"_count": 1}}, "Assuming": {"_count": 1, "they": {"_count": 1}}, "tearing": {"_count": 1, "off": {"_count": 1}}, "incapable": {"_count": 1, "of": {"_count": 1}}, "its": {"_count": 3, "not": {"_count": 1}, "Harry": {"_count": 1}, "nearly": {"_count": 1}}, "wondering": {"_count": 1, "how": {"_count": 1}}, "youd": {"_count": 1, "much": {"_count": 1}}, "Snivelly": {"_count": 1, "": {"_count": 1}}, "o": {"_count": 1, "course": {"_count": 1}}, "beaming": {"_count": 1, "until": {"_count": 1}}, "within": {"_count": 1, "reach": {"_count": 1}}, "everybody": {"_count": 1, "": {"_count": 1}}, "charging": {"_count": 1, "off": {"_count": 1}}, "Now": {"_count": 1, "": {"_count": 1}}, "round": {"_count": 2, "by": {"_count": 1}, "London": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "planned": {"_count": 1}}, "from": {"_count": 3, "here": {"_count": 2}, "what": {"_count": 1}}, "even": {"_count": 2, "faster": {"_count": 1}, "less": {"_count": 1}}, "calling": {"_count": 1, "for": {"_count": 1}}, "called": {"_count": 1, "Hermione": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "awry": {"_count": 1, "": {"_count": 1}}, "easy": {"_count": 1, "on": {"_count": 1}}, "Bella": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "that": {"_count": 1}}, "arresting": {"_count": 1, "anyone": {"_count": 1}}, "zat": {"_count": 1, "Tonks": {"_count": 1}}, "fuzzy": {"_count": 1, "she": {"_count": 1}}, "wont": {"_count": 1, "we": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 2}}, "Snape": {"_count": 1, "hoping": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "riding": {"_count": 1, "past": {"_count": 1}}, "upon": {"_count": 1, "was": {"_count": 1}}, "dark": {"_count": 1, "what": {"_count": 1}}, "bad": {"_count": 1, "": {"_count": 1}}, "readin": {"_count": 1, "more": {"_count": 1}}, "theres": {"_count": 1, "McLaggen": {"_count": 1}}, "wasting": {"_count": 1, "the": {"_count": 1}}, "extra": {"_count": 1, "slowly": {"_count": 1}}, "dewyeyed": {"_count": 1, "over": {"_count": 1}}, "numb": {"_count": 1, "": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 2, "brandy": {"_count": 1}, "farther": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "snogging": {"_count": 1, "her": {"_count": 1}}, "no": {"_count": 1, "further": {"_count": 1}}, "lemme": {"_count": 1, "go": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "forth": {"_count": 1, "from": {"_count": 1}}, "messing": {"_count": 1, "around": {"_count": 1}}, "dancing": {"_count": 1, "around": {"_count": 1}}, "camping": {"_count": 1, "": {"_count": 1}}, "No": {"_count": 1, "said": {"_count": 1}}, "we": {"_count": 1, "havent": {"_count": 1}}, "boy": {"_count": 1, "before": {"_count": 1}}, "abroad": {"_count": 1, "go": {"_count": 1}}, "along": {"_count": 1, "are": {"_count": 1}}, "Potter": {"_count": 1, "go": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "careful": {"_count": 1, "": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}}, "join": {"_count": 114, "the": {"_count": 21, "celebrations": {"_count": 1}, "Headless": {"_count": 2}, "Hunt": {"_count": 1}, "feast": {"_count": 1}, "group": {"_count": 2}, "table": {"_count": 1}, "Ravenclaw": {"_count": 1}, "Ministry": {"_count": 2}, "Order": {"_count": 2}, "others": {"_count": 1}, "rest": {"_count": 1}, "back": {"_count": 1}, "woman": {"_count": 1}, "first": {"_count": 1}, "stag": {"_count": 1}, "destabilization": {"_count": 1}, "Weasleys": {"_count": 1}}, "in": {"_count": 13, "Dudleys": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 2}, "and": {"_count": 1}, "everything": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 2}, "once": {"_count": 1}, "Lunas": {"_count": 1}, "me": {"_count": 1}}, "his": {"_count": 2, "friends": {"_count": 1}, "brother": {"_count": 1}}, "them": {"_count": 14, "": {"_count": 8}, "but": {"_count": 1}, "said": {"_count": 1}, "so": {"_count": 1}, "shortly": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}}, "you": {"_count": 7, "to": {"_count": 1}, "": {"_count": 4}, "in": {"_count": 1}, "when": {"_count": 1}}, "me": {"_count": 6, "": {"_count": 2}, "for": {"_count": 2}, "like": {"_count": 1}, "in": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 3}, "?": {"_count": 2}, "!": {"_count": 1}}, "Errol": {"_count": 1, "": {"_count": 1}}, "forces": {"_count": 1, "with": {"_count": 1}}, "us": {"_count": 10, "": {"_count": 3}, "Malfoy": {"_count": 1}, "we": {"_count": 1}, "in": {"_count": 3}, "Severus": {"_count": 1}, "too": {"_count": 1}}, "her": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "their": {"_count": 1, "table": {"_count": 1}}, "three": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 1, "buys": {"_count": 1}}, "S": {"_count": 2, "": {"_count": 2}}, "spew": {"_count": 1, "were": {"_count": 1}}, "Parvati": {"_count": 1, "and": {"_count": 1}}, "Cedric": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 1, "who": {"_count": 1}}, "him": {"_count": 6, "the": {"_count": 1}, "": {"_count": 3}, "in": {"_count": 1}, "like": {"_count": 1}}, "Hedwig": {"_count": 1, "on": {"_count": 1}}, "I": {"_count": 2, "want": {"_count": 2}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "Hermione": {"_count": 1}}, "an": {"_count": 1, "illegal": {"_count": 1}}, "Dumbledore": {"_count": 1, "hasnt": {"_count": 1}}, "Hermione": {"_count": 1, "at": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "those": {"_count": 1, "on": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "You": {"_count": 1, "Know": {"_count": 1}}}, "celebrations": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "were": {"_count": 1, "marred": {"_count": 1}}, "differed": {"_count": 1, "from": {"_count": 1}}}, "Yeah": {"_count": 561, "said": {"_count": 116, "Hagrid": {"_count": 10}, "Ron": {"_count": 18}, "Stan": {"_count": 1}, "Harry": {"_count": 69}, "Malfoy": {"_count": 3}, "Mr": {"_count": 1}, "Fred": {"_count": 2}, "Cedric": {"_count": 1}, "Tonks": {"_count": 1}, "George": {"_count": 1}, "Sirius": {"_count": 1}, "Cho": {"_count": 1}, "Angelina": {"_count": 1}, "Hermione": {"_count": 1}, "another": {"_count": 1}, "Draco": {"_count": 1}, "Neville": {"_count": 3}}, "so": {"_count": 3, "yehd": {"_count": 1}, "do": {"_count": 1}, "we": {"_count": 1}}, "but": {"_count": 31, "well": {"_count": 1}, "I": {"_count": 3}, "he": {"_count": 2}, "was": {"_count": 1}, "hes": {"_count": 1}, "": {"_count": 2}, "theres": {"_count": 1}, "blackmail": {"_count": 1}, "Bagman": {"_count": 1}, "we": {"_count": 2}, "if": {"_count": 2}, "apart": {"_count": 1}, "thats": {"_count": 1}, "youre": {"_count": 1}, "We": {"_count": 1}, "not": {"_count": 1}, "Charlies": {"_count": 1}, "you": {"_count": 2}, "Dumbledore": {"_count": 1}, "still": {"_count": 1}, "coming": {"_count": 1}, "Bill": {"_count": 1}, "maybe": {"_count": 1}, "the": {"_count": 1}}, "youll": {"_count": 2, "be": {"_count": 2}}, "thats": {"_count": 14, "a": {"_count": 1}, "better": {"_count": 1}, "right": {"_count": 7}, "true": {"_count": 1}, "Harry": {"_count": 1}, "what": {"_count": 2}, "him": {"_count": 1}}, "hes": {"_count": 2, "mine": {"_count": 1}, "off": {"_count": 1}}, "yer": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 80, ".": {"_count": 68}, "?": {"_count": 11}, "!": {"_count": 1}}, "Dumbledores": {"_count": 1, "off": {"_count": 1}}, "Mums": {"_count": 1, "always": {"_count": 1}}, "Dads": {"_count": 1, "crazy": {"_count": 1}}, "shell": {"_count": 1, "be": {"_count": 1}}, "Ive": {"_count": 5, "seen": {"_count": 1}, "been": {"_count": 3}, "heard": {"_count": 1}}, "it": {"_count": 21, "worked": {"_count": 1}, "will": {"_count": 1}, "does": {"_count": 3}, "was": {"_count": 6}, "can": {"_count": 1}, "looks": {"_count": 1}, "would": {"_count": 1}, "is": {"_count": 5}, "all": {"_count": 1}, "did": {"_count": 1}}, "came": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 5, "said": {"_count": 2}, "because": {"_count": 1}, "": {"_count": 1}, "sorry": {"_count": 1}}, "I": {"_count": 72, "think": {"_count": 5}, "expect": {"_count": 2}, "have": {"_count": 2}, "like": {"_count": 1}, "suppose": {"_count": 4}, "knew": {"_count": 1}, "mean": {"_count": 1}, "saw": {"_count": 1}, "am": {"_count": 6}, "bet": {"_count": 1}, "know": {"_count": 14}, "want": {"_count": 2}, "sort": {"_count": 1}, "dont": {"_count": 1}, "did": {"_count": 2}, "see": {"_count": 3}, "camped": {"_count": 1}, "do": {"_count": 7}, "was": {"_count": 1}, "spose": {"_count": 3}, "dink": {"_count": 1}, "wondered": {"_count": 1}, "reckon": {"_count": 1}, "still": {"_count": 1}, "can": {"_count": 1}, "thought": {"_count": 2}, "would": {"_count": 2}, "got": {"_count": 1}, "get": {"_count": 1}, "Not": {"_count": 1}, "The": {"_count": 1}}, "well": {"_count": 35, "call": {"_count": 1}, "come": {"_count": 1}, "Dad": {"_count": 1}, "yeh": {"_count": 1}, "Percy": {"_count": 1}, "thats": {"_count": 2}, "the": {"_count": 1}, "your": {"_count": 1}, "its": {"_count": 1}, "we": {"_count": 1}, "said": {"_count": 7}, "I": {"_count": 3}, "if": {"_count": 1}, "look": {"_count": 1}, "a": {"_count": 1}, "do": {"_count": 1}, "never": {"_count": 2}, "thas": {"_count": 1}, "passing": {"_count": 1}, "there": {"_count": 1}, "you": {"_count": 1}, "youve": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "foods": {"_count": 1}}, "dont": {"_count": 3, "worry": {"_count": 2}, "bother": {"_count": 1}}, "loads": {"_count": 2, "said": {"_count": 1}, "better": {"_count": 1}}, "maybe": {"_count": 3, "said": {"_count": 1}, "I": {"_count": 2}}, "lets": {"_count": 2, "go": {"_count": 2}}, "theyre": {"_count": 2, "great": {"_count": 1}, "not": {"_count": 1}}, "all": {"_count": 8, "right": {"_count": 7}, "righ": {"_count": 1}}, "reckon": {"_count": 1, "so": {"_count": 1}}, "theres": {"_count": 2, "a": {"_count": 2}}, "were": {"_count": 2, "having": {"_count": 1}, "prefects": {"_count": 1}}, "he": {"_count": 10, "is": {"_count": 3}, "swung": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 1}, "has": {"_count": 1}, "said": {"_count": 1}, "would": {"_count": 1}, "might": {"_count": 1}}, "yeah": {"_count": 2, "all": {"_count": 1}, "said": {"_count": 1}}, "and": {"_count": 7, "thats": {"_count": 2}, "you": {"_count": 1}, "Dumbledore": {"_count": 1}, "others": {"_count": 1}, "the": {"_count": 1}, "were": {"_count": 1}}, "thanks": {"_count": 3, "a": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "someone": {"_count": 2, "might": {"_count": 1}, "couldve": {"_count": 1}}, "weve": {"_count": 2, "left": {"_count": 1}, "discussed": {"_count": 1}}, "you": {"_count": 8, "know": {"_count": 1}, "will": {"_count": 1}, "can": {"_count": 1}, "couldve": {"_count": 1}, "shouldve": {"_count": 1}, "are": {"_count": 2}, "could": {"_count": 1}}, "we": {"_count": 8, "thought": {"_count": 1}, "wouldnt": {"_count": 1}, "were": {"_count": 2}, "really": {"_count": 1}, "dont": {"_count": 1}, "shouldnt": {"_count": 1}, "do": {"_count": 1}}, "a": {"_count": 2, "thousand": {"_count": 1}, "bunch": {"_count": 1}}, "Im": {"_count": 5, "staying": {"_count": 1}, "fine": {"_count": 2}, "wheres": {"_count": 1}, "really": {"_count": 1}}, "probably": {"_count": 1, "said": {"_count": 1}}, "Ill": {"_count": 2, "just": {"_count": 1}, "introduce": {"_count": 1}}, "have": {"_count": 1, "it": {"_count": 1}}, "Ron": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "better": {"_count": 1, "you": {"_count": 1}}, "okay": {"_count": 6, "said": {"_count": 5}, "": {"_count": 1}}, "give": {"_count": 1, "Ron": {"_count": 1}}, "really": {"_count": 1, "amazing": {"_count": 1}}, "go": {"_count": 2, "on": {"_count": 2}}, "that": {"_count": 3, "would": {"_count": 1}, "is": {"_count": 1}, "fits": {"_count": 1}}, "its": {"_count": 5, "": {"_count": 1}, "a": {"_count": 1}, "my": {"_count": 1}, "great": {"_count": 1}, "true": {"_count": 1}}, "Harry": {"_count": 2, "panted": {"_count": 1}, "mumbled": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Percy": {"_count": 1, "loves": {"_count": 1}}, "panted": {"_count": 1, "Cedric": {"_count": 1}}, "Hermiones": {"_count": 1, "already": {"_count": 1}}, "youre": {"_count": 4, "right": {"_count": 4}}, "size": {"_count": 1, "is": {"_count": 1}}, "youve": {"_count": 3, "caused": {"_count": 1}, "got": {"_count": 1}, "just": {"_count": 1}}, "no": {"_count": 1, "problem": {"_count": 1}}, "his": {"_count": 3, "best": {"_count": 1}, "mother": {"_count": 1}, "school": {"_count": 1}}, "fine": {"_count": 1, "lied": {"_count": 1}}, "keep": {"_count": 1, "your": {"_count": 1}}, "definitely": {"_count": 1, "said": {"_count": 1}}, "something": {"_count": 1, "like": {"_count": 1}}, "look": {"_count": 1, "theyre": {"_count": 1}}, "bye": {"_count": 1, "said": {"_count": 1}}, "thatll": {"_count": 2, "do": {"_count": 1}, "work": {"_count": 1}}, "Quirrell": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 3, "probably": {"_count": 1}, "shows": {"_count": 1}, "said": {"_count": 1}}, "So": {"_count": 1, "who": {"_count": 1}}, "Umbridge": {"_count": 1, "gave": {"_count": 1}}, "how": {"_count": 1, "is": {"_count": 1}}, "the": {"_count": 1, "D": {"_count": 1}}, "thas": {"_count": 2, "right": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "Weasley": {"_count": 1, "we": {"_count": 1}}, "not": {"_count": 1, "bad": {"_count": 1}}, "sighed": {"_count": 1, "Harry": {"_count": 1}}, "mumbled": {"_count": 1, "Harry": {"_count": 1}}, "Montague": {"_count": 1, "tried": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "breathed": {"_count": 1, "Harry": {"_count": 1}}, "IVe": {"_count": 1, "got": {"_count": 1}}, "Snape": {"_count": 1, "told": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "like": {"_count": 1, "youd": {"_count": 1}}, "Zabini": {"_count": 1, "because": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 4, "course": {"_count": 4}}, "theyve": {"_count": 1, "had": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "ghosts": {"_count": 1, "are": {"_count": 1}}, "very": {"_count": 1, "ingenious": {"_count": 1}}, "thirteen": {"_count": 1, "of": {"_count": 1}}, "me": {"_count": 1, "too": {"_count": 1}}, "ear": {"_count": 1, "ear": {"_count": 1}}, "what": {"_count": 1, "about": {"_count": 1}}, "why": {"_count": 1, "tell": {"_count": 1}}, "shes": {"_count": 1, "just": {"_count": 1}}, "great": {"_count": 1, "thanks": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "because": {"_count": 1, "we": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}}, "muffled": {"_count": 51, "voice": {"_count": 8, "Id": {"_count": 2}, "": {"_count": 2}, "from": {"_count": 3}, "and": {"_count": 1}}, "sort": {"_count": 2, "of": {"_count": 2}}, "sobs": {"_count": 1, "she": {"_count": 1}}, "stillness": {"_count": 1, "of": {"_count": 1}}, "voices": {"_count": 1, "of": {"_count": 1}}, "pounding": {"_count": 2, "coming": {"_count": 1}, "of": {"_count": 1}}, "shouting": {"_count": 1, "next": {"_count": 1}}, "the": {"_count": 2, "sound": {"_count": 2}}, "as": {"_count": 1, "though": {"_count": 1}}, "squeak": {"_count": 1, "": {"_count": 1}}, "rumbling": {"_count": 1, "and": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "yell": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "scream": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "garage": {"_count": 1}}, "hooting": {"_count": 1, "noise": {"_count": 1}}, "grunt": {"_count": 1, "awoke": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 2}, "exhaustion": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "commotion": {"_count": 1, "coming": {"_count": 1}}, "wail": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "silence": {"_count": 1, "": {"_count": 1}}, "barking": {"_count": 1, "of": {"_count": 1}}, "their": {"_count": 2, "laughter": {"_count": 1}, "footsteps": {"_count": 1}}, "yells": {"_count": 1, "of": {"_count": 1}}, "sounds": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "quite": {"_count": 1}}, "crunch": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "figure": {"_count": 2, "was": {"_count": 1}, "nodded": {"_count": 1}}, "clunk": {"_count": 1, "from": {"_count": 1}}, "while": {"_count": 1, "ahead": {"_count": 1}}, "and": {"_count": 1, "distant": {"_count": 1}}}, "bike": {"_count": 20, "away": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "was": {"_count": 2, "a": {"_count": 1}, "falling": {"_count": 1}}, "a": {"_count": 1, "video": {"_count": 1}}, "knocked": {"_count": 1, "down": {"_count": 1}}, "halfway": {"_count": 1, "out": {"_count": 1}}, "brooms": {"_count": 1, "an": {"_count": 1}}, "more": {"_count": 1, "curses": {"_count": 1}}, "had": {"_count": 1, "splintered": {"_count": 1}}, "completely": {"_count": 1, "Harry": {"_count": 1}}, "drop": {"_count": 1, "a": {"_count": 1}}, "two": {"_count": 1, "Killing": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "shot": {"_count": 1, "more": {"_count": 1}}, "for": {"_count": 1, "dear": {"_count": 1}}, "and": {"_count": 1, "er": {"_count": 1}}}, "G": {"_count": 4, "night": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "either": {"_count": 1, "": {"_count": 1}}}, "Wiping": {"_count": 1, "his": {"_count": 1, "streaming": {"_count": 1}}}, "streaming": {"_count": 32, "eyes": {"_count": 5, "on": {"_count": 2}, "but": {"_count": 1}, "": {"_count": 2}}, "into": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "nose": {"_count": 1, "Filch": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "Harrys": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 6, "Hermione": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 2}, "his": {"_count": 2}}, "from": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 2}}, "he": {"_count": 1, "swayed": {"_count": 1}}, "along": {"_count": 1, "below": {"_count": 1}}, "arent": {"_count": 1, "we": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "uselessly": {"_count": 1, "off": {"_count": 1}}, "behind": {"_count": 2, "and": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "jacket": {"_count": 38, "sleeve": {"_count": 1, "Hagrid": {"_count": 1}}, "and": {"_count": 10, "pulled": {"_count": 1}, "pinged": {"_count": 1}, "the": {"_count": 1}, "get": {"_count": 1}, "was": {"_count": 1}, "placing": {"_count": 1}, "trousers": {"_count": 1}, "they": {"_count": 1}, "covered": {"_count": 1}, "showing": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "as": {"_count": 1, "they": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Dumbledore": {"_count": 1, "waved": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "pulled": {"_count": 1}}, "pointed": {"_count": 1, "it": {"_count": 1}}, "pocket": {"_count": 3, "and": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}}, "sleeve": {"_count": 54, "Hagrid": {"_count": 1, "swung": {"_count": 1}}, "of": {"_count": 11, "Harrys": {"_count": 2}, "Rons": {"_count": 1}, "his": {"_count": 6}, "Wormtails": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 19}, "!": {"_count": 1}}, "as": {"_count": 3, "Draco": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "and": {"_count": 5, "looked": {"_count": 1}, "pulled": {"_count": 1}, "frowning": {"_count": 1}, "touched": {"_count": 1}, "pulling": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 1, "assured": {"_count": 1}}, "was": {"_count": 1, "ripped": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "into": {"_count": 1, "which": {"_count": 1}}, "had": {"_count": 1, "caught": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "reveal": {"_count": 1}}, "could": {"_count": 1, "come": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "STOP": {"_count": 1, "": {"_count": 1}}}, "swung": {"_count": 124, "himself": {"_count": 2, "onto": {"_count": 2}}, "clean": {"_count": 1, "off": {"_count": 1}}, "round": {"_count": 1, "": {"_count": 1}}, "Scabbers": {"_count": 1, "round": {"_count": 1}}, "open": {"_count": 25, "at": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 6}, "": {"_count": 9}, "toward": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 1}, "just": {"_count": 1}, "easily": {"_count": 1}, "into": {"_count": 1}, "with": {"_count": 1}}, "off": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "forward": {"_count": 20, "to": {"_count": 11}, "": {"_count": 2}, "on": {"_count": 2}, "once": {"_count": 1}, "and": {"_count": 1}, "grumpily": {"_count": 1}, "too": {"_count": 1}, "revealing": {"_count": 1}}, "around": {"_count": 4, "the": {"_count": 2}, "and": {"_count": 2}}, "at": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "wands": {"_count": 1}}, "his": {"_count": 14, "wand": {"_count": 1}, "legs": {"_count": 3}, "cloak": {"_count": 2}, "bag": {"_count": 2}, "leg": {"_count": 2}, "right": {"_count": 2}, "schoolbag": {"_count": 1}, "long": {"_count": 1}}, "over": {"_count": 1, "him": {"_count": 1}}, "it": {"_count": 11, "over": {"_count": 3}, "back": {"_count": 1}, "into": {"_count": 1}, "upward": {"_count": 1}, "for": {"_count": 1}, "down": {"_count": 1}, "onto": {"_count": 1}, "around": {"_count": 1}, "high": {"_count": 1}}, "into": {"_count": 1, "sight": {"_count": 1}}, "hard": {"_count": 1, "at": {"_count": 1}}, "them": {"_count": 2, "violently": {"_count": 1}, "onto": {"_count": 1}}, "heavily": {"_count": 1, "at": {"_count": 1}}, "shut": {"_count": 11, "behind": {"_count": 9}, "and": {"_count": 1}, "again": {"_count": 1}}, "a": {"_count": 2, "heavy": {"_count": 1}, "traveling": {"_count": 1}}, "closed": {"_count": 4, "behind": {"_count": 4}}, "inward": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "her": {"_count": 1, "long": {"_count": 1}}, "the": {"_count": 4, "cloak": {"_count": 1}, "lantern": {"_count": 1}, "right": {"_count": 1}, "Cloak": {"_count": 1}}, "pathetically": {"_count": 1, "": {"_count": 1}}, "sadly": {"_count": 1, "again": {"_count": 1}}, "silvery": {"_count": 1, "bright": {"_count": 1}}, "there": {"_count": 1, "invisibly": {"_count": 1}}, "dizzyingly": {"_count": 1, "around": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "wide": {"_count": 1, "with": {"_count": 1}}, "down": {"_count": 1, "out": {"_count": 1}}, "its": {"_count": 1, "club": {"_count": 1}}}, "onto": {"_count": 578, "the": {"_count": 313, "motorcycle": {"_count": 1}, "floor": {"_count": 42}, "rock": {"_count": 3}, "street": {"_count": 1}, "counter": {"_count": 1}, "platform": {"_count": 8}, "train": {"_count": 7}, "edge": {"_count": 1}, "grounds": {"_count": 13}, "grass": {"_count": 7}, "field": {"_count": 23}, "hem": {"_count": 1}, "table": {"_count": 19}, "sunny": {"_count": 1}, "bed": {"_count": 9}, "dark": {"_count": 4}, "windowsill": {"_count": 2}, "chest": {"_count": 1}, "other": {"_count": 3}, "shiny": {"_count": 1}, "side": {"_count": 2}, "front": {"_count": 4}, "desk": {"_count": 6}, "dance": {"_count": 4}, "stage": {"_count": 2}, "already": {"_count": 1}, "first": {"_count": 2}, "compost": {"_count": 2}, "worst": {"_count": 1}, "wardrobe": {"_count": 1}, "stone": {"_count": 3}, "top": {"_count": 4}, "telephone": {"_count": 1}, "pavement": {"_count": 6}, "fence": {"_count": 1}, "lawn": {"_count": 1}, "Firebolt": {"_count": 1}, "shoulders": {"_count": 1}, "rope": {"_count": 1}, "hippogriff": {"_count": 1}, "flames": {"_count": 1}, "ground": {"_count": 11}, "subject": {"_count": 1}, "moor": {"_count": 1}, "bank": {"_count": 1}, "brightly": {"_count": 1}, "deck": {"_count": 1}, "one": {"_count": 1}, "brown": {"_count": 1}, "bright": {"_count": 1}, "empty": {"_count": 1}, "mountain": {"_count": 1}, "cave": {"_count": 1}, "window": {"_count": 2}, "foot": {"_count": 1}, "Quidditch": {"_count": 1}, "wonderfully": {"_count": 1}, "path": {"_count": 1}, "hedge": {"_count": 1}, "office": {"_count": 2}, "young": {"_count": 1}, "wound": {"_count": 1}, "only": {"_count": 2}, "landing": {"_count": 5}, "last": {"_count": 1}, "worn": {"_count": 1}, "doorstep": {"_count": 1}, "road": {"_count": 2}, "bench": {"_count": 5}, "white": {"_count": 1}, "arm": {"_count": 1}, "nearest": {"_count": 2}, "pitch": {"_count": 5}, "moving": {"_count": 1}, "marble": {"_count": 1}, "bent": {"_count": 1}, "dungeon": {"_count": 1}, "logs": {"_count": 1}, "pitches": {"_count": 1}, "cold": {"_count": 1}, "horses": {"_count": 1}, "backs": {"_count": 1}, "wall": {"_count": 1}, "rug": {"_count": 1}, "button": {"_count": 1}, "corridor": {"_count": 2}, "antique": {"_count": 1}, "sofa": {"_count": 3}, "carpet": {"_count": 1}, "stove": {"_count": 2}, "main": {"_count": 2}, "back": {"_count": 1}, "mg": {"_count": 1}, "dead": {"_count": 1}, "spiral": {"_count": 2}, "waterlogged": {"_count": 1}, "topmost": {"_count": 1}, "ramparts": {"_count": 1}, "flagstones": {"_count": 1}, "drive": {"_count": 1}, "polished": {"_count": 1}, "rubbish": {"_count": 2}, "purple": {"_count": 1}, "motorbikes": {"_count": 1}, "work": {"_count": 1}, "larger": {"_count": 1}, "discarded": {"_count": 1}, "tiny": {"_count": 1}, "embossed": {"_count": 1}, "kitchen": {"_count": 1}, "flight": {"_count": 1}, "bleeding": {"_count": 1}, "lower": {"_count": 1}, "dressing": {"_count": 1}, "threadbare": {"_count": 1}, "cellar": {"_count": 1}, "hearth": {"_count": 1}, "narrow": {"_count": 1}, "tracks": {"_count": 1}, "blade": {"_count": 1}, "angry": {"_count": 1}, "mantelpiece": {"_count": 2}, "Death": {"_count": 1}, "scarlet": {"_count": 1}, "rapidly": {"_count": 1}}, "his": {"_count": 109, "back": {"_count": 8}, "shoulder": {"_count": 7}, "neck": {"_count": 2}, "broomstick": {"_count": 1}, "Nimbus": {"_count": 2}, "plate": {"_count": 6}, "lap": {"_count": 3}, "new": {"_count": 1}, "face": {"_count": 6}, "glasses": {"_count": 1}, "pillows": {"_count": 5}, "ragged": {"_count": 1}, "head": {"_count": 5}, "bed": {"_count": 9}, "arms": {"_count": 2}, "knee": {"_count": 2}, "seat": {"_count": 2}, "stomach": {"_count": 1}, "bedspread": {"_count": 1}, "notes": {"_count": 1}, "long": {"_count": 1}, "porridge": {"_count": 1}, "pudgy": {"_count": 1}, "shoulders": {"_count": 3}, "foot": {"_count": 1}, "knees": {"_count": 5}, "already": {"_count": 1}, "wand": {"_count": 1}, "front": {"_count": 1}, "feet": {"_count": 3}, "bedside": {"_count": 1}, "bench": {"_count": 1}, "chest": {"_count": 4}, "waistcoat": {"_count": 1}, "side": {"_count": 7}, "nose": {"_count": 1}, "other": {"_count": 1}, "robes": {"_count": 1}, "hind": {"_count": 1}, "mattress": {"_count": 1}, "forehead": {"_count": 1}, "jumper": {"_count": 1}, "hands": {"_count": 2}, "own": {"_count": 2}}, "a": {"_count": 30, "cobbled": {"_count": 1}, "cart": {"_count": 1}, "plate": {"_count": 2}, "bed": {"_count": 1}, "low": {"_count": 1}, "rough": {"_count": 1}, "tiny": {"_count": 1}, "stretcher": {"_count": 1}, "cactus": {"_count": 1}, "Slytherin": {"_count": 1}, "cardboard": {"_count": 1}, "broom": {"_count": 1}, "plane": {"_count": 1}, "broad": {"_count": 1}, "strange": {"_count": 1}, "rug": {"_count": 1}, "bench": {"_count": 1}, "flight": {"_count": 1}, "rippedup": {"_count": 1}, "great": {"_count": 2}, "rather": {"_count": 1}, "winding": {"_count": 1}, "narrow": {"_count": 1}, "shadowy": {"_count": 1}, "seventhfloor": {"_count": 1}, "small": {"_count": 1}, "sitting": {"_count": 1}, "steep": {"_count": 1}}, "an": {"_count": 2, "empty": {"_count": 1}, "armchair": {"_count": 1}}, "rocks": {"_count": 1, "and": {"_count": 1}}, "smooth": {"_count": 1, "damp": {"_count": 1}}, "their": {"_count": 12, "laps": {"_count": 1}, "shoulders": {"_count": 3}, "team": {"_count": 1}, "backs": {"_count": 2}, "hind": {"_count": 1}, "books": {"_count": 1}, "bank": {"_count": 1}, "many": {"_count": 1}, "broom": {"_count": 1}}, "Harrys": {"_count": 11, "plate": {"_count": 2}, "bedspread": {"_count": 1}, "arm": {"_count": 1}, "neck": {"_count": 1}, "bed": {"_count": 1}, "seat": {"_count": 1}, "camp": {"_count": 1}, "shoulder": {"_count": 1}, "bedside": {"_count": 1}, "wrist": {"_count": 1}}, "its": {"_count": 9, "owners": {"_count": 1}, "shelf": {"_count": 1}, "edge": {"_count": 1}, "back": {"_count": 3}, "end": {"_count": 1}, "hind": {"_count": 1}, "broad": {"_count": 1}}, "one": {"_count": 5, "of": {"_count": 2}, "": {"_count": 1}, "pile": {"_count": 2}}, "her": {"_count": 17, "seat": {"_count": 1}, "lap": {"_count": 2}, "chest": {"_count": 1}, "back": {"_count": 1}, "arm": {"_count": 1}, "owl": {"_count": 1}, "she": {"_count": 1}, "desk": {"_count": 1}, "shoulder": {"_count": 2}, "face": {"_count": 1}, "own": {"_count": 1}, "already": {"_count": 1}, "bench": {"_count": 1}, "hand": {"_count": 1}, "head": {"_count": 1}}, "cold": {"_count": 1, "stone": {"_count": 1}}, "platform": {"_count": 6, "nine": {"_count": 6}}, "it": {"_count": 11, "": {"_count": 3}, "Harry": {"_count": 1}, "stowed": {"_count": 1}, "panting": {"_count": 1}, "his": {"_count": 1}, "growled": {"_count": 1}, "gazing": {"_count": 1}, "he": {"_count": 1}, "behind": {"_count": 1}}, "Alicia": {"_count": 1, "Spinnets": {"_count": 1}}, "Hermiones": {"_count": 1, "bedside": {"_count": 1}}, "Rons": {"_count": 3, "knees": {"_count": 1}, "head": {"_count": 1}, "bed": {"_count": 1}}, "poufs": {"_count": 1, "": {"_count": 1}}, "Seamuss": {"_count": 1, "empty": {"_count": 1}}, "Professor": {"_count": 1, "Binns": {"_count": 1}}, "Hermione": {"_count": 2, "s": {"_count": 1}, "and": {"_count": 1}}, "Hagrids": {"_count": 1, "pillow": {"_count": 1}}, "Blacks": {"_count": 1, "chest": {"_count": 1}}, "them": {"_count": 4, "": {"_count": 2}, "WEASLEY": {"_count": 1}, "for": {"_count": 1}}, "Dudleys": {"_count": 1, "plate": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "himself": {"_count": 2, "": {"_count": 1}, "perhaps": {"_count": 1}}, "Flitwicks": {"_count": 1, "desk": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Goyle": {"_count": 1, "and": {"_count": 1}}, "three": {"_count": 1, "separate": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "him": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "And": {"_count": 1}}, "Siriuss": {"_count": 1, "lap": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "everyones": {"_count": 1, "plates": {"_count": 1}}, "all": {"_count": 2, "four": {"_count": 1}, "fours": {"_count": 1}}, "Umbridges": {"_count": 1, "carpet": {"_count": 1}}, "cool": {"_count": 1, "misty": {"_count": 1}}, "side": {"_count": 1, "tables": {"_count": 1}}, "Zabinis": {"_count": 1, "temporarily": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "Bills": {"_count": 1, "mutilated": {"_count": 1}}, "hard": {"_count": 1, "ground": {"_count": 1}}, "that": {"_count": 1, "instead": {"_count": 1}}, "what": {"_count": 1, "felt": {"_count": 1}}, "grass": {"_count": 1, "and": {"_count": 1}}, "slippery": {"_count": 1, "grass": {"_count": 1}}, "you": {"_count": 1, "like": {"_count": 1}}, "Ravenclaws": {"_count": 1, "plinth": {"_count": 1}}, "whose": {"_count": 1, "head": {"_count": 1}}, "Nevilles": {"_count": 1, "head": {"_count": 1}}}, "kicked": {"_count": 64, "the": {"_count": 6, "engine": {"_count": 1}, "door": {"_count": 1}, "crate": {"_count": 1}, "Quaffle": {"_count": 2}, "motorbike": {"_count": 1}}, "his": {"_count": 6, "mother": {"_count": 1}, "back": {"_count": 1}, "trunk": {"_count": 1}, "legs": {"_count": 1}, "school": {"_count": 1}, "chair": {"_count": 1}}, "him": {"_count": 7, "behind": {"_count": 1}, "hard": {"_count": 1}, "right": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 1}, "aside": {"_count": 1}}, "hard": {"_count": 3, "against": {"_count": 1}, "into": {"_count": 1}, "with": {"_count": 1}}, "off": {"_count": 14, "from": {"_count": 8}, "into": {"_count": 2}, "his": {"_count": 1}, "hard": {"_count": 2}, "and": {"_count": 1}}, "out": {"_count": 7, "at": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "hard": {"_count": 2}, "of": {"_count": 1}, "wildly": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "flailed": {"_count": 1, "their": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Lockhart": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 5, "open": {"_count": 1}, "forward": {"_count": 1}, "achieving": {"_count": 1}, "": {"_count": 2}}, "back": {"_count": 1, "off": {"_count": 1}}, "Mostafa": {"_count": 1, "hard": {"_count": 1}}, "rolled": {"_count": 1, "and": {"_count": 1}}, "Firenze": {"_count": 2, "in": {"_count": 1}, "ter": {"_count": 1}}, "around": {"_count": 1, "by": {"_count": 1}}, "aside": {"_count": 2, "the": {"_count": 2}}, "several": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "chair": {"_count": 1}}, "up": {"_count": 1, "broad": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "engine": {"_count": 22, "into": {"_count": 1, "life": {"_count": 1}}, "was": {"_count": 2, "waiting": {"_count": 1}, "already": {"_count": 1}}, "drifted": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "feel": {"_count": 1, "his": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "groaned": {"_count": 1, "": {"_count": 1}}, "died": {"_count": 1, "completely": {"_count": 1}}, "had": {"_count": 1, "restarted": {"_count": 1}}, "roared": {"_count": 2, "and": {"_count": 1}, "into": {"_count": 1}}, "puffing": {"_count": 1, "smoke": {"_count": 1}}, "two": {"_count": 1, "illustrations": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "pick": {"_count": 1, "up": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "Next": {"_count": 1, "moment": {"_count": 1}}, "the": {"_count": 1, "motorbike": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}}, "rose": {"_count": 147, "into": {"_count": 16, "the": {"_count": 16}}, "on": {"_count": 3, "the": {"_count": 1}, "either": {"_count": 2}}, "in": {"_count": 13, "his": {"_count": 2}, "a": {"_count": 2}, "seconds": {"_count": 1}, "levels": {"_count": 1}, "another": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 2}, "Harrys": {"_count": 1}, "him": {"_count": 1}, "waves": {"_count": 1}}, "high": {"_count": 3, "above": {"_count": 1}, "in": {"_count": 1}, "high": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 19, "high": {"_count": 1}, "in": {"_count": 3}, "beside": {"_count": 1}, "into": {"_count": 3}, "past": {"_count": 2}, "his": {"_count": 1}, "out": {"_count": 2}, "inside": {"_count": 1}, "their": {"_count": 1}, "and": {"_count": 3}, "through": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "higher": {"_count": 2, "than": {"_count": 1}, "and": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 7}}, "and": {"_count": 8, "left": {"_count": 2}, "fell": {"_count": 4}, "Harry": {"_count": 1}, "walked": {"_count": 1}}, "the": {"_count": 1, "flower": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "upward": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 7, "support": {"_count": 1}, "meet": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 1}, "her": {"_count": 1}}, "fast": {"_count": 2, "but": {"_count": 1}, "as": {"_count": 1}}, "a": {"_count": 6, "few": {"_count": 3}, "crude": {"_count": 1}, "little": {"_count": 2}}, "slowly": {"_count": 1, "from": {"_count": 1}}, "at": {"_count": 3, "his": {"_count": 1}, "once": {"_count": 2}}, "but": {"_count": 1, "Lupin": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "only": {"_count": 1, "high": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 2}}, "from": {"_count": 11, "the": {"_count": 9}, "chairs": {"_count": 1}, "their": {"_count": 1}}, "tentatively": {"_count": 1, "into": {"_count": 1}}, "onto": {"_count": 1, "two": {"_count": 1}}, "right": {"_count": 1, "up": {"_count": 1}}, "above": {"_count": 2, "anyone": {"_count": 1}, "them": {"_count": 1}}, "so": {"_count": 1, "high": {"_count": 1}}, "with": {"_count": 3, "him": {"_count": 1}, "a": {"_count": 2}}, "garden": {"_count": 1, "winked": {"_count": 1}}, "quickly": {"_count": 1, "through": {"_count": 1}}, "quietly": {"_count": 1, "from": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "halfway": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "one": {"_count": 1}}, "shouldered": {"_count": 1, "their": {"_count": 1}}, "loud": {"_count": 1, "and": {"_count": 1}}, "within": {"_count": 1, "Harry": {"_count": 1}}, "twittering": {"_count": 1, "from": {"_count": 1}}, "magnificently": {"_count": 1, "to": {"_count": 1}}, "rather": {"_count": 1, "hysterically": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "early": {"_count": 1, "to": {"_count": 1}}, "obscuring": {"_count": 1, "the": {"_count": 1}}, "seemingly": {"_count": 1, "endlessly": {"_count": 1}}, "gracefully": {"_count": 1, "into": {"_count": 1}}, "vertically": {"_count": 1, "against": {"_count": 1}}, "rolling": {"_count": 1, "and": {"_count": 1}}, "together": {"_count": 1, "and": {"_count": 1}}, "shrieking": {"_count": 1, "into": {"_count": 1}}, "steadily": {"_count": 1, "over": {"_count": 1}}}, "shall": {"_count": 208, "see": {"_count": 14, "you": {"_count": 5}, "Professor": {"_count": 1}, "Snape": {"_count": 1}, "": {"_count": 5}, "how": {"_count": 1}, "whether": {"_count": 1}}, "return": {"_count": 1, "when": {"_count": 1}}, "I": {"_count": 14, "put": {"_count": 1}, "": {"_count": 10}, "make": {"_count": 1}, "get": {"_count": 1}, "sir": {"_count": 1}}, "speak": {"_count": 2, "to": {"_count": 2}}, "answer": {"_count": 1, "your": {"_count": 1}}, "not": {"_count": 12, "of": {"_count": 1}, "harm": {"_count": 1}, "touch": {"_count": 1}, "conceal": {"_count": 1}, "be": {"_count": 2}, "": {"_count": 1}, "betray": {"_count": 1}, "speak": {"_count": 1}, "permit": {"_count": 1}, "stop": {"_count": 1}, "complain": {"_count": 1}}, "be": {"_count": 30, "happy": {"_count": 1}, "thirteen": {"_count": 1}, "speaking": {"_count": 1}, "interested": {"_count": 1}, "executed": {"_count": 1}, "lodging": {"_count": 1}, "working": {"_count": 1}, "continuing": {"_count": 1}, "Hem": {"_count": 1}, "practicing": {"_count": 1}, "gone": {"_count": 1}, "more": {"_count": 1}, "able": {"_count": 2}, "even": {"_count": 1}, "offering": {"_count": 1}, "leaving": {"_count": 2}, "discussing": {"_count": 1}, "back": {"_count": 2}, "your": {"_count": 1}, "": {"_count": 1}, "driving": {"_count": 1}, "destroyed": {"_count": 4}, "harmed": {"_count": 1}, "spared": {"_count": 1}}, "go": {"_count": 4, "and": {"_count": 2}, "now": {"_count": 2}}, "make": {"_count": 3, "sure": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 3, "course": {"_count": 3}}, "all": {"_count": 2, "miss": {"_count": 1}, "perish": {"_count": 1}}, "suffer": {"_count": 1, "instant": {"_count": 1}}, "have": {"_count": 10, "to": {"_count": 7}, "all": {"_count": 1}, "better": {"_count": 1}, "it": {"_count": 1}}, "take": {"_count": 3, "a": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}}, "monitor": {"_count": 1, "your": {"_count": 1}}, "find": {"_count": 4, "our": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 1}, "you": {"_count": 1}}, "perish": {"_count": 1, "bravely": {"_count": 1}}, "progress": {"_count": 2, "to": {"_count": 2}}, "move": {"_count": 1, "among": {"_count": 1}}, "discuss": {"_count": 1, "Harry": {"_count": 1}}, "we": {"_count": 23, "go": {"_count": 3}, "": {"_count": 10}, "crack": {"_count": 1}, "its": {"_count": 1}, "just": {"_count": 2}, "get": {"_count": 1}, "say": {"_count": 1}, "do": {"_count": 2}, "proceed": {"_count": 1}, "end": {"_count": 1}}, "keep": {"_count": 2, "you": {"_count": 1}, "them": {"_count": 1}}, "tell": {"_count": 5, "you": {"_count": 5}}, "start": {"_count": 1, "by": {"_count": 1}}, "call": {"_count": 3, "the": {"_count": 2}, "at": {"_count": 1}}, "review": {"_count": 1, "your": {"_count": 1}}, "know": {"_count": 4, "": {"_count": 1}, "if": {"_count": 1}, "whether": {"_count": 1}, "immediately": {"_count": 1}}, "act": {"_count": 1, "as": {"_count": 1}}, "say": {"_count": 3, "no": {"_count": 2}, "only": {"_count": 1}}, "put": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "meet": {"_count": 3, "again": {"_count": 1}, "you": {"_count": 2}}, "try": {"_count": 2, "again": {"_count": 1}, "to": {"_count": 1}}, "need": {"_count": 5, "your": {"_count": 1}, "all": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}}, "resume": {"_count": 1, "this": {"_count": 1}}, "let": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "give": {"_count": 1, "you": {"_count": 1}}, "deal": {"_count": 1, "with": {"_count": 1}}, "explain": {"_count": 2, "everything": {"_count": 1}, "this": {"_count": 1}}, "arrange": {"_count": 1, "for": {"_count": 1}}, "probably": {"_count": 1, "be": {"_count": 1}}, "send": {"_count": 2, "Fudge": {"_count": 1}, "them": {"_count": 1}}, "trespass": {"_count": 1, "upon": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "ensure": {"_count": 1, "that": {"_count": 1}}, "drop": {"_count": 1, "Augusta": {"_count": 1}}, "pass": {"_count": 1, "the": {"_count": 1}}, "hear": {"_count": 1, "the": {"_count": 1}}, "decide": {"_count": 1, "how": {"_count": 1}}, "never": {"_count": 2, "be": {"_count": 1}, "reveal": {"_count": 1}}, "then": {"_count": 1, "be": {"_count": 1}}, "therefore": {"_count": 1, "call": {"_count": 1}}, "wait": {"_count": 3, "here": {"_count": 1}, "for": {"_count": 2}}, "do": {"_count": 1, "zat": {"_count": 1}}, "attend": {"_count": 1, "to": {"_count": 1}}, "cut": {"_count": 1, "away": {"_count": 1}}, "miss": {"_count": 1, "his": {"_count": 1}}, "end": {"_count": 1, "up": {"_count": 1}}, "summon": {"_count": 1, "him": {"_count": 1}}, "run": {"_count": 1, "you": {"_count": 1}}, "join": {"_count": 1, "you": {"_count": 1}}, "secure": {"_count": 1, "the": {"_count": 1}}, "expect": {"_count": 1, "you": {"_count": 1}}, "rouse": {"_count": 1, "the": {"_count": 1}}, "leave": {"_count": 1, "the": {"_count": 1}}, "enter": {"_count": 1, "the": {"_count": 1}}, "punish": {"_count": 1, "every": {"_count": 1}}, "drag": {"_count": 1, "the": {"_count": 1}}, "build": {"_count": 1, "together": {"_count": 1}}}, "nodding": {"_count": 65, "to": {"_count": 3, "her": {"_count": 1}, "Professor": {"_count": 1}, "a": {"_count": 1}}, "toward": {"_count": 9, "Madam": {"_count": 1}, "the": {"_count": 6}, "Professor": {"_count": 1}, "Crookshanks": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "against": {"_count": 1}}, "at": {"_count": 9, "Ron": {"_count": 1}, "the": {"_count": 5}, "Mr": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 7, "beaming": {"_count": 1}, "rolling": {"_count": 1}, "looking": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "smiling": {"_count": 1}, "agreeing": {"_count": 1}}, "in": {"_count": 1, "agreement": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 17}}, "through": {"_count": 1, "the": {"_count": 1}}, "frantically": {"_count": 1, "at": {"_count": 1}}, "fervently": {"_count": 1, "": {"_count": 1}}, "impressively": {"_count": 1, "it": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}, "this": {"_count": 1, "dosage": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "wisely": {"_count": 2, "": {"_count": 2}}, "vigorously": {"_count": 1, "": {"_count": 1}}, "gravely": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "briskly": {"_count": 1, "I": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}, "some": {"_count": 1, "enthusiastically": {"_count": 1}}}, "blew": {"_count": 32, "her": {"_count": 7, "nose": {"_count": 5}, "whistle": {"_count": 2}}, "up": {"_count": 6, "around": {"_count": 1}, "an": {"_count": 1}, "singeing": {"_count": 1}, "his": {"_count": 1}, "Pluto": {"_count": 1}, "The": {"_count": 1}}, "his": {"_count": 7, "nose": {"_count": 4}, "whistle": {"_count": 3}}, "bubbles": {"_count": 1, "through": {"_count": 1}}, "it": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "hard": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "apart": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Mrs": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "gigantic": {"_count": 1}}, "off": {"_count": 1, "its": {"_count": 1}}}, "reply": {"_count": 39, "": {"_count": 12, ".": {"_count": 11}, "?": {"_count": 1}}, "came": {"_count": 1, "quickly": {"_count": 1}}, "as": {"_count": 1, "Marge": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 4, "this": {"_count": 2}, "Harrys": {"_count": 1}, "Dumbledore": {"_count": 1}}, "would": {"_count": 1, "alleviate": {"_count": 1}}, "and": {"_count": 1, "offered": {"_count": 1}}, "but": {"_count": 1, "nothing": {"_count": 1}}, "from": {"_count": 1, "Sirius": {"_count": 1}}, "off": {"_count": 1, "Pigwidgeons": {"_count": 1}}, "scathingly": {"_count": 1, "but": {"_count": 1}}, "than": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "pounded": {"_count": 1}, "had": {"_count": 1}}, "\u2018Good": {"_count": 1, "afternoon": {"_count": 1}}, "\u2018Yes": {"_count": 1, "Professor": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "the": {"_count": 2, "point": {"_count": 1}, "wandlight": {"_count": 1}}, "though": {"_count": 1, "on": {"_count": 1}}, "she": {"_count": 1, "gripped": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "that": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "Death": {"_count": 1}}}, "once": {"_count": 961, "and": {"_count": 36, "twelve": {"_count": 1}, "hurried": {"_count": 1}, "the": {"_count": 2}, "alarming": {"_count": 1}, "I": {"_count": 1}, "leapt": {"_count": 1}, "had": {"_count": 2}, "turned": {"_count": 2}, "tell": {"_count": 1}, "Ron": {"_count": 1}, "called": {"_count": 1}, "saw": {"_count": 1}, "engage": {"_count": 1}, "for": {"_count": 5}, "pointed": {"_count": 1}, "left": {"_count": 1}, "throw": {"_count": 1}, "he": {"_count": 2}, "divided": {"_count": 1}, "dont": {"_count": 1}, "splashed": {"_count": 1}, "it": {"_count": 1}, "without": {"_count": 1}, "turning": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}, "there": {"_count": 1}, "together": {"_count": 1}}, "a": {"_count": 18, "week": {"_count": 5}, "Bludger": {"_count": 1}, "needlesharp": {"_count": 1}, "look": {"_count": 1}, "month": {"_count": 5}, "year": {"_count": 2}, "crisp": {"_count": 1}, "sheltered": {"_count": 1}, "few": {"_count": 1}}, "": {"_count": 186, ".": {"_count": 175}, "?": {"_count": 7}, "!": {"_count": 4}}, "while": {"_count": 1, "out": {"_count": 1}}, "on": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "Alecto": {"_count": 1}}, "driven": {"_count": 1, "over": {"_count": 1}}, "held": {"_count": 2, "a": {"_count": 1}, "up": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "yehve": {"_count": 1, "been": {"_count": 1}}, "defeated": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 10, "a": {"_count": 2}, "your": {"_count": 1}, "the": {"_count": 3}, "over": {"_count": 1}, "case": {"_count": 1}, "midair": {"_count": 1}, "six": {"_count": 1}}, "the": {"_count": 26, "shops": {"_count": 1}, "hat": {"_count": 1}, "black": {"_count": 1}, "stone": {"_count": 1}, "Chamber": {"_count": 1}, "tap": {"_count": 1}, "statues": {"_count": 1}, "spiders": {"_count": 1}, "rest": {"_count": 1}, "task": {"_count": 1}, "party": {"_count": 1}, "fools": {"_count": 1}, "floor": {"_count": 1}, "froth": {"_count": 1}, "door": {"_count": 1}, "prickly": {"_count": 1}, "Marauders": {"_count": 1}, "teacher": {"_count": 1}, "fungus": {"_count": 1}, "diary": {"_count": 1}, "young": {"_count": 1}, "original": {"_count": 1}, "bricks": {"_count": 1}, "beak": {"_count": 1}, "screams": {"_count": 1}, "writhing": {"_count": 1}}, "every": {"_count": 2, "ten": {"_count": 1}, "five": {"_count": 1}}, "hed": {"_count": 3, "finished": {"_count": 1}, "got": {"_count": 2}}, "It": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "or": {"_count": 9, "twice": {"_count": 9}}, "gliding": {"_count": 1, "across": {"_count": 1}}, "but": {"_count": 12, "at": {"_count": 1}, "it": {"_count": 1}, "perhaps": {"_count": 1}, "Dumbledore": {"_count": 1}, "they": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "four": {"_count": 1}, "be": {"_count": 1}, "Im": {"_count": 1}, "merely": {"_count": 1}, "several": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "I": {"_count": 8, "nearly": {"_count": 1}, "have": {"_count": 1}, "swear": {"_count": 1}, "": {"_count": 1}, "got": {"_count": 1}, "appoint": {"_count": 1}, "did": {"_count": 1}, "panicked": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 7, "had": {"_count": 2}, "taste": {"_count": 1}, "have": {"_count": 1}, "know": {"_count": 1}, "realize": {"_count": 1}, "get": {"_count": 1}}, "by": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 3}}, "shes": {"_count": 3, "taken": {"_count": 1}, "calmed": {"_count": 1}, "Dorall": {"_count": 1}}, "that": {"_count": 20, "Snape": {"_count": 2}, "Malfoy": {"_count": 1}, "it": {"_count": 2}, "they": {"_count": 5}, "the": {"_count": 1}, "she": {"_count": 2}, "several": {"_count": 1}, "he": {"_count": 2}, "my": {"_count": 1}, "this": {"_count": 1}, "should": {"_count": 1}, "half": {"_count": 1}}, "they": {"_count": 15, "were": {"_count": 3}, "had": {"_count": 7}, "got": {"_count": 1}, "understood": {"_count": 1}, "started": {"_count": 1}, "vacated": {"_count": 1}, "realized": {"_count": 1}}, "belonged": {"_count": 6, "to": {"_count": 6}}, "as": {"_count": 12, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "wand": {"_count": 1}, "they": {"_count": 1}, "though": {"_count": 1}, "Wormtail": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "people": {"_count": 1}, "another": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 2}}, "more": {"_count": 166, "what": {"_count": 1}, "and": {"_count": 25}, "": {"_count": 66}, "Dobby": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 5}, "hems": {"_count": 1}, "with": {"_count": 3}, "out": {"_count": 1}, "eyes": {"_count": 1}, "grabbed": {"_count": 1}, "Malfoy": {"_count": 1}, "ask": {"_count": 1}, "sparks": {"_count": 1}, "you": {"_count": 1}, "across": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 2}, "dancing": {"_count": 1}, "among": {"_count": 1}, "marveling": {"_count": 1}, "careful": {"_count": 1}, "picked": {"_count": 1}, "watching": {"_count": 1}, "around": {"_count": 1}, "nothing": {"_count": 1}, "by": {"_count": 2}, "he": {"_count": 2}, "when": {"_count": 1}, "shut": {"_count": 1}, "Stains": {"_count": 1}, "applause": {"_count": 1}, "wrote": {"_count": 1}, "into": {"_count": 3}, "along": {"_count": 1}, "youll": {"_count": 1}, "at": {"_count": 2}, "withdrew": {"_count": 1}, "looking": {"_count": 2}, "wonderful": {"_count": 1}, "for": {"_count": 2}, "to": {"_count": 4}, "lack": {"_count": 1}, "between": {"_count": 1}, "before": {"_count": 1}, "Christmas": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 4}, "over": {"_count": 1}, "noticed": {"_count": 1}, "shining": {"_count": 1}, "refilling": {"_count": 1}, "clanking": {"_count": 1}, "because": {"_count": 1}, "And": {"_count": 1}, "Hermione": {"_count": 1}, "pointing": {"_count": 1}}, "hes": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 24, "hadnt": {"_count": 1}, "was": {"_count": 5}, "didnt": {"_count": 1}, "Hermione": {"_count": 1}, "had": {"_count": 5}, "does": {"_count": 1}, "said": {"_count": 1}, "can": {"_count": 1}, "saw": {"_count": 1}, "could": {"_count": 1}, "knew": {"_count": 2}, "is": {"_count": 1}, "performed": {"_count": 1}, "looked": {"_count": 1}, "realizes": {"_count": 1}}, "Ron": {"_count": 2, "whispered": {"_count": 1}, "had": {"_count": 1}}, "youve": {"_count": 4, "won": {"_count": 1}, "had": {"_count": 1}, "calmed": {"_count": 1}, "seen": {"_count": 1}}, "wasnt": {"_count": 1, "I": {"_count": 1}}, "Harry": {"_count": 5, "wished": {"_count": 1}, "wondered": {"_count": 1}, "was": {"_count": 1}, "reminded": {"_count": 1}, "had": {"_count": 1}}, "been": {"_count": 8, "a": {"_count": 1}, "Dudleys": {"_count": 1}, "set": {"_count": 1}, "": {"_count": 1}, "Lee": {"_count": 1}, "tricked": {"_count": 1}, "interrogated": {"_count": 1}, "Fabian": {"_count": 1}}, "why": {"_count": 3, "youd": {"_count": 1}, "Percy": {"_count": 1}, "Neville": {"_count": 1}}, "with": {"_count": 6, "a": {"_count": 3}, "rhythmic": {"_count": 1}, "his": {"_count": 1}, "my": {"_count": 1}}, "looking": {"_count": 7, "very": {"_count": 2}, "at": {"_count": 2}, "hopeful": {"_count": 1}, "as": {"_count": 1}, "up": {"_count": 1}}, "again": {"_count": 38, "": {"_count": 5}, "on": {"_count": 1}, "raised": {"_count": 1}, "revealing": {"_count": 1}, "to": {"_count": 1}, "nothing": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 2}, "he": {"_count": 3}, "resumed": {"_count": 1}, "in": {"_count": 1}, "hidden": {"_count": 1}, "conspicuous": {"_count": 1}, "the": {"_count": 2}, "they": {"_count": 1}, "under": {"_count": 1}, "bent": {"_count": 1}, "looking": {"_count": 1}, "hanging": {"_count": 1}, "made": {"_count": 1}, "so": {"_count": 1}, "you": {"_count": 1}, "announced": {"_count": 1}, "absent": {"_count": 1}, "one": {"_count": 1}, "at": {"_count": 1}, "displaying": {"_count": 1}, "above": {"_count": 1}, "Dumbledore": {"_count": 1}}, "long": {"_count": 3, "story": {"_count": 1}, "prickly": {"_count": 1}, "ago": {"_count": 1}}, "youre": {"_count": 6, "Crabbe": {"_count": 1}, "in": {"_count": 1}, "back": {"_count": 2}, "free": {"_count": 1}, "eleven": {"_count": 1}}, "weve": {"_count": 3, "drunk": {"_count": 1}, "finished": {"_count": 1}, "seen": {"_count": 1}}, "This": {"_count": 1, "is": {"_count": 1}}, "called": {"_count": 1, "Tom": {"_count": 1}}, "Head": {"_count": 1, "Boy": {"_count": 1}}, "his": {"_count": 9, "name": {"_count": 2}, "feathers": {"_count": 1}, "worst": {"_count": 1}, "ears": {"_count": 1}, "eyes": {"_count": 1}, "great": {"_count": 1}, "curiosity": {"_count": 1}, "mother": {"_count": 1}}, "where": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 3, "was": {"_count": 1}, "judge": {"_count": 1}, "journey": {"_count": 1}}, "it": {"_count": 9, "had": {"_count": 3}, "has": {"_count": 1}, "was": {"_count": 3}, "turned": {"_count": 1}, "became": {"_count": 1}}, "YouKnowOo": {"_count": 1, "ad": {"_count": 1}}, "before": {"_count": 17, "but": {"_count": 1}, "and": {"_count": 3}, "he": {"_count": 1}, "when": {"_count": 1}, "it": {"_count": 1}, "havent": {"_count": 1}, "in": {"_count": 1}, "during": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "claimed": {"_count": 1}, "said": {"_count": 1}, "him": {"_count": 1}}, "what": {"_count": 2, "looked": {"_count": 1}, "was": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 2}, "Harrys": {"_count": 1}}, "saw": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "already": {"_count": 1, "Blacks": {"_count": 1}}, "into": {"_count": 4, "an": {"_count": 1}, "offenses": {"_count": 1}, "a": {"_count": 1}, "emeraldgreen": {"_count": 1}}, "thin": {"_count": 1, "ink": {"_count": 1}}, "heard": {"_count": 1, "Mr": {"_count": 1}}, "won": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 4, "fat": {"_count": 1}, "that": {"_count": 2}, "delighted": {"_count": 1}}, "hastened": {"_count": 1, "from": {"_count": 1}}, "youd": {"_count": 1, "yelled": {"_count": 1}}, "Gryffindor": {"_count": 1, "was": {"_count": 1}}, "we": {"_count": 6, "get": {"_count": 3}, "got": {"_count": 1}, "take": {"_count": 1}, "see": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "see": {"_count": 2, "": {"_count": 1}, "Malfoy": {"_count": 1}}, "young": {"_count": 1, "Harrys": {"_count": 1}}, "Im": {"_count": 5, "afraid": {"_count": 1}, "outta": {"_count": 1}, "seventeen": {"_count": 1}, "there": {"_count": 2}}, "Ive": {"_count": 3, "offered": {"_count": 1}, "told": {"_count": 1}, "got": {"_count": 1}}, "hurried": {"_count": 2, "back": {"_count": 1}, "down": {"_count": 1}}, "Hermione": {"_count": 5, "Grangers": {"_count": 1}, "heeded": {"_count": 1}, "didnt": {"_count": 1}, "cried": {"_count": 1}, "Ginny": {"_count": 1}}, "owned": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "rescued": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 9, "the": {"_count": 2}, "show": {"_count": 1}, "her": {"_count": 1}, "form": {"_count": 1}, "discover": {"_count": 1}, "have": {"_count": 1}, "leave": {"_count": 1}, "tears": {"_count": 1}}, "Bill": {"_count": 1, "Charlie": {"_count": 1}}, "green": {"_count": 1, "and": {"_count": 1}}, "Ireland": {"_count": 1, "have": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "mentioning": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 5, "Dad": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "Hagrids": {"_count": 1, "found": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 2, "names": {"_count": 1}, "letter": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 2}}, "striding": {"_count": 1, "over": {"_count": 1}}, "everyone": {"_count": 3, "got": {"_count": 1}, "dashed": {"_count": 1}, "had": {"_count": 1}}, "at": {"_count": 3, "Quidditch": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}}, "beaten": {"_count": 1, "him": {"_count": 1}}, "she": {"_count": 5, "snapped": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 1}, "turned": {"_count": 1}}, "caught": {"_count": 1, "him": {"_count": 1}}, "mentioned": {"_count": 2, "how": {"_count": 1}, "his": {"_count": 1}}, "several": {"_count": 1, "pairs": {"_count": 1}}, "then": {"_count": 1, "turned": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "my": {"_count": 1, "Quidditch": {"_count": 1}}, "counted": {"_count": 1, "friends": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "Voldemorts": {"_count": 1, "wand": {"_count": 1}}, "Dumbledore": {"_count": 3, "pressed": {"_count": 1}, "turned": {"_count": 1}, "had": {"_count": 1}}, "emerald": {"_count": 1, "green": {"_count": 1}}, "made": {"_count": 1, "his": {"_count": 1}}, "A": {"_count": 1, "dazed": {"_count": 1}}, "said": {"_count": 3, "Lupin": {"_count": 1}, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}}, "wiping": {"_count": 1, "his": {"_count": 1}}, "suggested": {"_count": 1, "George": {"_count": 1}}, "removed": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 3, "dinner": {"_count": 1}, "last": {"_count": 1}, "their": {"_count": 1}}, "worn": {"_count": 1, "when": {"_count": 1}}, "were": {"_count": 2, "meant": {"_count": 1}, "": {"_count": 1}}, "He": {"_count": 2, "waved": {"_count": 1}, "could": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "though": {"_count": 1, "her": {"_count": 1}}, "leaving": {"_count": 2, "inky": {"_count": 1}, "a": {"_count": 1}}, "Supreme": {"_count": 1, "Mugwump": {"_count": 1}}, "have": {"_count": 4, "you": {"_count": 1}, "found": {"_count": 1}, "been": {"_count": 2}}, "You": {"_count": 1, "know": {"_count": 1}}, "yes": {"_count": 1, "we": {"_count": 1}}, "punching": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 2, "square": {"_count": 1}, "pouchy": {"_count": 1}}, "hid": {"_count": 1, "from": {"_count": 1}}, "taking": {"_count": 1, "Fred": {"_count": 1}}, "musta": {"_count": 1, "bin": {"_count": 1}}, "No": {"_count": 1, "no": {"_count": 1}}, "theyre": {"_count": 1, "tamed": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "theyd": {"_count": 2, "explode": {"_count": 1}, "changed": {"_count": 1}}, "twice": {"_count": 2, "three": {"_count": 2}}, "pulled": {"_count": 1, "on": {"_count": 1}}, "Harrys": {"_count": 4, "scar": {"_count": 3}, "clothes": {"_count": 1}}, "snatching": {"_count": 1, "up": {"_count": 1}}, "forced": {"_count": 1, "itself": {"_count": 1}}, "accused": {"_count": 1, "Harry": {"_count": 1}}, "Dumbledores": {"_count": 1, "Pensieve": {"_count": 1}}, "realizing": {"_count": 1, "that": {"_count": 1}}, "twisting": {"_count": 1, "around": {"_count": 1}}, "forming": {"_count": 1, "a": {"_count": 1}}, "tell": {"_count": 1, "us": {"_count": 1}}, "outside": {"_count": 1, "in": {"_count": 1}}, "rigid": {"_count": 1, "as": {"_count": 1}}, "overheard": {"_count": 1, "Professor": {"_count": 1}}, "tormented": {"_count": 1, "Snape": {"_count": 1}}, "course": {"_count": 1, "well": {"_count": 1}}, "sat": {"_count": 1, "rumpling": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "Tonks": {"_count": 1, "still": {"_count": 1}}, "disguised": {"_count": 1, "as": {"_count": 1}}, "trod": {"_count": 1, "said": {"_count": 1}}, "upon": {"_count": 1, "taking": {"_count": 1}}, "sent": {"_count": 1, "her": {"_count": 1}}, "sentenced": {"_count": 1, "to": {"_count": 1}}, "bathing": {"_count": 1, "the": {"_count": 1}}, "hidden": {"_count": 1, "to": {"_count": 1}}, "seen": {"_count": 1, "him": {"_count": 1}}, "came": {"_count": 1, "the": {"_count": 1}}, "clockwise": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "did": {"_count": 1}}, "Katie": {"_count": 1, "rose": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "Id": {"_count": 1, "just": {"_count": 1}}, "Lavender": {"_count": 1, "and": {"_count": 1}}, "well": {"_count": 1, "forget": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "pretty": {"_count": 1, "eventful": {"_count": 1}}, "tall": {"_count": 1, "pale": {"_count": 1}}, "for": {"_count": 1, "attacking": {"_count": 1}}, "remembering": {"_count": 1, "that": {"_count": 1}}, "robbed": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 2, "me": {"_count": 1}, "Harry": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "buried": {"_count": 1}}, "knew": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "lived": {"_count": 3, "Morfin": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 1}}, "Ravenclaws": {"_count": 1, "or": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "terrorized": {"_count": 1, "two": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "anxious": {"_count": 1, "about": {"_count": 1}}, "owning": {"_count": 1, "the": {"_count": 1}}, "watching": {"_count": 1, "resentfully": {"_count": 1}}, "given": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 1, "he": {"_count": 1}}, "theyve": {"_count": 1, "read": {"_count": 1}}, "demolished": {"_count": 1, "half": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "their": {"_count": 1, "features": {"_count": 1}}, "Ill": {"_count": 1, "do": {"_count": 1}}, "Charlie": {"_count": 1, "arrived": {"_count": 1}}, "played": {"_count": 1, "twoaside": {"_count": 1}}, "Fleur": {"_count": 1, "had": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "shut": {"_count": 1, "him": {"_count": 1}}, "Dolohovs": {"_count": 1, "eyes": {"_count": 1}}, "used": {"_count": 1, "this": {"_count": 1}}, "moved": {"_count": 1, "across": {"_count": 1}}, "received": {"_count": 1, "bottom": {"_count": 1}}, "slept": {"_count": 1, "but": {"_count": 1}}, "inside": {"_count": 1, "they": {"_count": 1}}, "spoken": {"_count": 1, "to": {"_count": 1}}, "keeping": {"_count": 1, "a": {"_count": 1}}, "followed": {"_count": 1, "it": {"_count": 1}}, "Kreacher": {"_count": 1, "hurried": {"_count": 1}}, "regained": {"_count": 1, "her": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "object": {"_count": 1, "after": {"_count": 1}}, "supposedly": {"_count": 1, "to": {"_count": 1}}, "dreamed": {"_count": 1, "of": {"_count": 1}}, "best": {"_count": 1, "friend": {"_count": 1}}, "thought": {"_count": 2, "he": {"_count": 2}}, "people": {"_count": 2, "are": {"_count": 2}}, "three": {"_count": 1, "brothers": {"_count": 1}}, "hoped": {"_count": 1, "to": {"_count": 1}}, "Griphook": {"_count": 1, "told": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}, "started": {"_count": 1, "it": {"_count": 1}}, "girls": {"_count": 1, "started": {"_count": 1}}, "commanded": {"_count": 1, "it": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "Draco": {"_count": 1, "fails": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "balls": {"_count": 49, "of": {"_count": 13, "light": {"_count": 5}, "string": {"_count": 1}, "her": {"_count": 2}, "his": {"_count": 4}, "fluff": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 2}}, "sorta": {"_count": 1, "hard": {"_count": 1}}, "and": {"_count": 5, "the": {"_count": 1}, "fourteen": {"_count": 1}, "a": {"_count": 1}, "opened": {"_count": 1}, "theyre": {"_count": 1}}, "called": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 1, "inside": {"_count": 1}}, "jet": {"_count": 1, "black": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "hard": {"_count": 1}}, "which": {"_count": 1, "would": {"_count": 1}}, "for": {"_count": 1, "": {"_count": 1}}, "bird": {"_count": 1, "entrails": {"_count": 1}}, "that": {"_count": 3, "make": {"_count": 1}, "zoomed": {"_count": 1}, "Ron": {"_count": 1}}, "until": {"_count": 1, "next": {"_count": 1}}, "told": {"_count": 1, "her": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "he": {"_count": 1, "laughed": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "downcast": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "released": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "surface": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "chains": {"_count": 1}}}, "lamps": {"_count": 32, "so": {"_count": 1, "that": {"_count": 1}}, "were": {"_count": 3, "hanging": {"_count": 1}, "draped": {"_count": 1}, "alight": {"_count": 1}}, "of": {"_count": 1, "Privet": {"_count": 1}}, "went": {"_count": 3, "out": {"_count": 3}}, "with": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 1}, "prods": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "that": {"_count": 1, "had": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 2, "came": {"_count": 1}, "many": {"_count": 1}}, "sputtered": {"_count": 1, "into": {"_count": 1}}, "came": {"_count": 1, "on": {"_count": 1}}, "covered": {"_count": 1, "by": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "hanging": {"_count": 1, "low": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "in": {"_count": 3, "Dumbledore": {"_count": 2}, "the": {"_count": 1}}, "lit": {"_count": 1, "": {"_count": 1}}, "dimmed": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "sprang": {"_count": 1, "into": {"_count": 1}}, "then": {"_count": 1, "shivering": {"_count": 1}}, "hung": {"_count": 1, "from": {"_count": 1}}}, "glowed": {"_count": 21, "suddenly": {"_count": 2, "orange": {"_count": 1}, "gold": {"_count": 1}}, "scarlet": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 2}, "pride": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "green": {"_count": 1, "POTTER": {"_count": 1}}, "momentarily": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "palely": {"_count": 1, "in": {"_count": 1}}, "red": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "softly": {"_count": 1, "as": {"_count": 1}}, "blue": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "inside": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "bright": {"_count": 1, "blue": {"_count": 1}}, "brightly": {"_count": 1, "because": {"_count": 1}}}, "orange": {"_count": 44, "and": {"_count": 1, "he": {"_count": 1}}, "puff": {"_count": 1, "balls": {"_count": 1}}, "knickerbockers": {"_count": 1, "and": {"_count": 1}}, "eyes": {"_count": 3, "": {"_count": 2}, "once": {"_count": 1}}, "the": {"_count": 1, "bedspread": {"_count": 1}}, "robes": {"_count": 3, "carrying": {"_count": 1}, "were": {"_count": 1}, "on": {"_count": 1}}, "bedspread": {"_count": 1, "which": {"_count": 1}}, "firedwelling": {"_count": 1, "lizard": {"_count": 1}}, "party": {"_count": 1, "hat": {"_count": 1}}, "snails": {"_count": 1, "were": {"_count": 1}}, "came": {"_count": 1, "soaring": {"_count": 1}}, "eye": {"_count": 2, "": {"_count": 1}, "flashed": {"_count": 1}}, "streamers": {"_count": 1, "which": {"_count": 1}}, "light": {"_count": 4, "that": {"_count": 1}, "before": {"_count": 1}, "flew": {"_count": 1}, "spilled": {"_count": 1}}, "bow": {"_count": 1, "tie": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "juice": {"_count": 4, "then": {"_count": 1}, "aside": {"_count": 1}, "as": {"_count": 1}, "from": {"_count": 1}}, "paste": {"_count": 1, "which": {"_count": 1}}, "stripes": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "radishes": {"_count": 2, "for": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "swelled": {"_count": 1, "shockingly": {"_count": 1}}, "lights": {"_count": 1, "were": {"_count": 1}}, "glare": {"_count": 2, "of": {"_count": 2}}, "visible": {"_count": 1, "over": {"_count": 1}}, "color": {"_count": 1, "but": {"_count": 1}}, "sweet": {"_count": 1, "which": {"_count": 1}}, "radishlike": {"_count": 1, "fruit": {"_count": 1}}, "radish": {"_count": 1, "the": {"_count": 1}}}, "make": {"_count": 696, "out": {"_count": 50, "a": {"_count": 4}, "his": {"_count": 3}, "and": {"_count": 1}, "the": {"_count": 17}, "Hermiones": {"_count": 1}, "reflecting": {"_count": 1}, "what": {"_count": 3}, "Madam": {"_count": 1}, "much": {"_count": 1}, "Krum": {"_count": 1}, "their": {"_count": 1}, "Cedrics": {"_count": 1}, "anything": {"_count": 2}, "Mrs": {"_count": 1}, "Hagrids": {"_count": 1}, "she": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "who": {"_count": 1}, "three": {"_count": 1}, "more": {"_count": 2}, "were": {"_count": 2}, "an": {"_count": 1}, "anybodys": {"_count": 1}}, "them": {"_count": 19, "happen": {"_count": 1}, "forget": {"_count": 1}, "alive": {"_count": 1}, "really": {"_count": 1}, "rue": {"_count": 1}, "and": {"_count": 1}, "talk": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}, "okay": {"_count": 1}, "say": {"_count": 1}, "stop": {"_count": 1}, "look": {"_count": 2}, "ill": {"_count": 1}, "sound": {"_count": 1}, "hurt": {"_count": 2}, "recreate": {"_count": 1}}, "him": {"_count": 35, "get": {"_count": 1}, "more": {"_count": 2}, "and": {"_count": 2}, "shut": {"_count": 1}, "walk": {"_count": 1}, "miserable": {"_count": 1}, "hurry": {"_count": 1}, "unrecognizable": {"_count": 1}, "fly": {"_count": 1}, "better": {"_count": 2}, "stay": {"_count": 1}, "": {"_count": 1}, "forget": {"_count": 1}, "grow": {"_count": 1}, "feel": {"_count": 4}, "miss": {"_count": 1}, "laugh": {"_count": 1}, "admire": {"_count": 1}, "stronger": {"_count": 1}, "as": {"_count": 1}, "apologize": {"_count": 1}, "play": {"_count": 1}, "an": {"_count": 1}, "happier": {"_count": 1}, "do": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}, "realize": {"_count": 1}, "truly": {"_count": 1}}, "sure": {"_count": 85, "they": {"_count": 6}, "he": {"_count": 9}, "we": {"_count": 5}, "": {"_count": 4}, "you": {"_count": 11}, "it": {"_count": 3}, "I": {"_count": 5}, "your": {"_count": 2}, "that": {"_count": 9}, "the": {"_count": 4}, "Crabbe": {"_count": 1}, "their": {"_count": 1}, "everyones": {"_count": 1}, "no": {"_count": 1}, "yeh": {"_count": 1}, "theyd": {"_count": 1}, "were": {"_count": 2}, "everyone": {"_count": 1}, "Voldemort": {"_count": 1}, "youre": {"_count": 3}, "of": {"_count": 2}, "this": {"_count": 1}, "there": {"_count": 4}, "none": {"_count": 2}, "its": {"_count": 1}, "nobody": {"_count": 1}, "Im": {"_count": 1}, "his": {"_count": 1}, "make": {"_count": 1}}, "a": {"_count": 83, "cup": {"_count": 3}, "clean": {"_count": 1}, "sleeping": {"_count": 1}, "fool": {"_count": 3}, "diversion": {"_count": 1}, "pineapple": {"_count": 1}, "Forgetfulness": {"_count": 1}, "break": {"_count": 1}, "sound": {"_count": 6}, "start": {"_count": 2}, "little": {"_count": 1}, "mistake": {"_count": 2}, "run": {"_count": 1}, "huge": {"_count": 1}, "good": {"_count": 4}, "dementor": {"_count": 1}, "fuss": {"_count": 1}, "point": {"_count": 1}, "very": {"_count": 3}, "real": {"_count": 1}, "public": {"_count": 1}, "bit": {"_count": 1}, "space": {"_count": 1}, "great": {"_count": 2}, "prat": {"_count": 1}, "fly": {"_count": 1}, "nice": {"_count": 2}, "choice": {"_count": 1}, "beeline": {"_count": 1}, "decision": {"_count": 2}, "speech": {"_count": 1}, "few": {"_count": 1}, "prediction": {"_count": 1}, "stag": {"_count": 1}, "long": {"_count": 1}, "case": {"_count": 1}, "difference": {"_count": 3}, "full": {"_count": 4}, "suggestion": {"_count": 1}, "joke": {"_count": 1}, "quick": {"_count": 2}, "decent": {"_count": 1}, "better": {"_count": 1}, "Sorcerers": {"_count": 1}, "hobby": {"_count": 2}, "move": {"_count": 1}, "kind": {"_count": 1}, "friendly": {"_count": 1}, "Horcrux": {"_count": 4}, "ragged": {"_count": 1}, "brilliant": {"_count": 1}, "detour": {"_count": 1}, "fight": {"_count": 1}, "world": {"_count": 1}}, "us": {"_count": 2, "a": {"_count": 1}, "hurt": {"_count": 1}}, "tea": {"_count": 4, "": {"_count": 1}, "Time": {"_count": 1}, "He": {"_count": 1}, "and": {"_count": 1}}, "me": {"_count": 19, "say": {"_count": 1}, "feel": {"_count": 4}, "sneeze": {"_count": 1}, "laugh": {"_count": 2}, "own": {"_count": 1}, "punch": {"_count": 1}, "do": {"_count": 1}, "stand": {"_count": 1}, "hex": {"_count": 1}, "SICK": {"_count": 1}, "nearly": {"_count": 1}, "a": {"_count": 1}, "keep": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "it": {"_count": 63, "grow": {"_count": 2}, "easier": {"_count": 5}, "fly": {"_count": 1}, "appear": {"_count": 1}, "Lockhart": {"_count": 1}, "": {"_count": 3}, "sound": {"_count": 2}, "featherlight": {"_count": 1}, "too": {"_count": 1}, "plain": {"_count": 1}, "ten": {"_count": 1}, "quick": {"_count": 2}, "look": {"_count": 3}, "jump": {"_count": 1}, "up": {"_count": 3}, "less": {"_count": 1}, "behave": {"_count": 1}, "worse": {"_count": 2}, "all": {"_count": 3}, "in": {"_count": 1}, "back": {"_count": 1}, "stand": {"_count": 1}, "so": {"_count": 3}, "blank": {"_count": 1}, "inevitable": {"_count": 1}, "untrue": {"_count": 1}, "do": {"_count": 1}, "just": {"_count": 1}, "final": {"_count": 1}, "into": {"_count": 1}, "more": {"_count": 3}, "stop": {"_count": 6}, "three": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "ourselves": {"_count": 1}, "tight": {"_count": 1}, "really": {"_count": 1}}, "himself": {"_count": 9, "heard": {"_count": 4}, "unpopular": {"_count": 1}, "smart": {"_count": 1}, "seem": {"_count": 1}, "immortal": {"_count": 1}, "feared": {"_count": 1}}, "up": {"_count": 20, "for": {"_count": 7}, "with": {"_count": 3}, "": {"_count": 1}, "predictions": {"_count": 1}, "his": {"_count": 3}, "its": {"_count": 1}, "time": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "during": {"_count": 1}}, "your": {"_count": 10, "real": {"_count": 1}, "next": {"_count": 1}, "excuses": {"_count": 1}, "hair": {"_count": 2}, "way": {"_count": 1}, "enemys": {"_count": 1}, "ears": {"_count": 1}, "brain": {"_count": 1}, "Patronus": {"_count": 1}}, "you": {"_count": 25, "look": {"_count": 1}, "said": {"_count": 1}, "smoke": {"_count": 1}, "levitate": {"_count": 1}, "understand": {"_count": 1}, "do": {"_count": 2}, "take": {"_count": 1}, "": {"_count": 1}, "late": {"_count": 1}, "come": {"_count": 1}, "ill": {"_count": 1}, "fly": {"_count": 1}, "jealous": {"_count": 1}, "see": {"_count": 1}, "feel": {"_count": 1}, "want": {"_count": 1}, "pay": {"_count": 1}, "drinks": {"_count": 1}, "more": {"_count": 1}, "King": {"_count": 1}, "have": {"_count": 1}, "stronger": {"_count": 2}, "immortal": {"_count": 1}}, "the": {"_count": 36, "players": {"_count": 1}, "\u2018gar": {"_count": 1}, "drinker": {"_count": 1}, "work": {"_count": 1}, "biggest": {"_count": 1}, "Dursleys": {"_count": 1}, "firs": {"_count": 1}, "dementors": {"_count": 1}, "announcement": {"_count": 1}, "Roberts": {"_count": 1}, "dragon": {"_count": 1}, "entire": {"_count": 1}, "skrewts": {"_count": 1}, "effort": {"_count": 1}, "Polyjuice": {"_count": 1}, "sight": {"_count": 1}, "worlds": {"_count": 1}, "whole": {"_count": 1}, "spots": {"_count": 1}, "morning": {"_count": 1}, "slightest": {"_count": 1}, "teensiest": {"_count": 1}, "same": {"_count": 1}, "Unbreakable": {"_count": 2}, "introduction": {"_count": 1}, "final": {"_count": 1}, "Horcruxes": {"_count": 1}, "rest": {"_count": 1}, "enchantments": {"_count": 1}, "connection": {"_count": 1}, "journey": {"_count": 1}, "blackthorn": {"_count": 1}, "symbol": {"_count": 1}, "possessor": {"_count": 2}}, "Nevilles": {"_count": 1, "toad": {"_count": 1}}, "some": {"_count": 10, "sacrifices": {"_count": 1}, "money": {"_count": 1}, "sense": {"_count": 1}, "extra": {"_count": 1}, "more": {"_count": 3}, "truly": {"_count": 1}, "reference": {"_count": 1}, "tea": {"_count": 1}}, "my": {"_count": 4, "move": {"_count": 1}, "transformations": {"_count": 1}, "decision": {"_count": 1}, "mistakes": {"_count": 1}}, "most": {"_count": 1, "terrible": {"_count": 1}}, "his": {"_count": 15, "deal": {"_count": 1}, "way": {"_count": 3}, "views": {"_count": 1}, "hair": {"_count": 2}, "heart": {"_count": 1}, "heavily": {"_count": 1}, "wand": {"_count": 1}, "ears": {"_count": 1}, "head": {"_count": 1}, "intentions": {"_count": 1}, "final": {"_count": 1}, "voice": {"_count": 1}}, "of": {"_count": 6, "them": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}, "me": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "any": {"_count": 13, "difference": {"_count": 6}, "noise": {"_count": 2}, "more": {"_count": 1}, "of": {"_count": 1}, "attempt": {"_count": 1}, "sign": {"_count": 1}, "further": {"_count": 1}}, "an": {"_count": 7, "example": {"_count": 1}, "army": {"_count": 1}, "entrance": {"_count": 1}, "apologetic": {"_count": 1}, "improved": {"_count": 1}, "appearance": {"_count": 1}, "angry": {"_count": 1}}, "one": {"_count": 5, "of": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}, "thing": {"_count": 1}, "last": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 4, "way": {"_count": 2}, "decision": {"_count": 1}, "protection": {"_count": 1}}, "Your": {"_count": 1, "Bludger": {"_count": 1}}, "itself": {"_count": 1, "invisible": {"_count": 1}}, "highly": {"_count": 1, "faithful": {"_count": 1}}, "good": {"_count": 4, "pets": {"_count": 1}, "use": {"_count": 1}, "food": {"_count": 2}}, "their": {"_count": 5, "way": {"_count": 1}, "skin": {"_count": 1}, "nose": {"_count": 1}, "long": {"_count": 1}, "reports": {"_count": 1}}, "Harry": {"_count": 7, "feel": {"_count": 2}, "and": {"_count": 1}, "happy": {"_count": 1}, "look": {"_count": 1}, "Potter": {"_count": 1}, "relive": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "herself": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 4, "very": {"_count": 1}, "old": {"_count": 1}, "noise": {"_count": 1}, "happen": {"_count": 1}}, "anyone": {"_count": 3, "fall": {"_count": 1}, "hear": {"_count": 1}, "panic": {"_count": 1}}, "no": {"_count": 5, "difference": {"_count": 2}, "mistake": {"_count": 2}, "impression": {"_count": 1}}, "others": {"_count": 1, "nervous": {"_count": 1}}, "much": {"_count": 3, "difference": {"_count": 2}, "headway": {"_count": 1}}, "her": {"_count": 7, "see": {"_count": 2}, "breathe": {"_count": 1}, "forget": {"_count": 1}, "a": {"_count": 1}, "look": {"_count": 2}}, "matters": {"_count": 1, "even": {"_count": 1}}, "which": {"_count": 1, "as": {"_count": 1}}, "everything": {"_count": 2, "much": {"_count": 1}, "clear": {"_count": 1}}, "allowances": {"_count": 1, "I": {"_count": 1}}, "other": {"_count": 1, "men": {"_count": 1}}, "Buckbeak": {"_count": 1, "move": {"_count": 1}}, "sense": {"_count": 9, "": {"_count": 2}, "at": {"_count": 1}, "they": {"_count": 1}, "if": {"_count": 1}, "for": {"_count": 1}, "of": {"_count": 3}}, "difficulties": {"_count": 1, "Snape": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "about": {"_count": 2, "Magical": {"_count": 1}, "Rons": {"_count": 1}}, "Dudley": {"_count": 1, "feel": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "Hermione": {"_count": 1, "look": {"_count": 1}}, "yourself": {"_count": 2, "puke": {"_count": 1}, "at": {"_count": 1}}, "notes": {"_count": 2, "on": {"_count": 2}}, "yourselves": {"_count": 1, "at": {"_count": 1}}, "Hagrid": {"_count": 1, "tell": {"_count": 1}}, "things": {"_count": 2, "up": {"_count": 1}, "move": {"_count": 1}}, "various": {"_count": 1, "objects": {"_count": 1}}, "even": {"_count": 1, "bloody": {"_count": 1}}, "fun": {"_count": 1, "of": {"_count": 1}}, "controversial": {"_count": 1, "staff": {"_count": 1}}, "absolutely": {"_count": 4, "sure": {"_count": 4}}, "Harrys": {"_count": 1, "situation": {"_count": 1}}, "regular": {"_count": 1, "visits": {"_count": 1}}, "contact": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "contacts": {"_count": 1, "on": {"_count": 1}}, "this": {"_count": 2, "place": {"_count": 1}, "shortly": {"_count": 1}}, "Mugglehunting": {"_count": 1, "legal": {"_count": 1}}, "Ron": {"_count": 3, "a": {"_count": 2}, "pull": {"_count": 1}}, "Potter": {"_count": 1, "a": {"_count": 1}}, "Goyle": {"_count": 1, "do": {"_count": 1}}, "friends": {"_count": 1, "with": {"_count": 1}}, "quite": {"_count": 3, "a": {"_count": 1}, "sure": {"_count": 2}}, "way": {"_count": 2, "for": {"_count": 2}}, "lots": {"_count": 1, "more": {"_count": 1}}, "life": {"_count": 2, "difficult": {"_count": 1}, "so": {"_count": 1}}, "anything": {"_count": 1, "weird": {"_count": 1}}, "those": {"_count": 1, "necessary": {"_count": 1}}, "such": {"_count": 2, "a": {"_count": 2}}, "is": {"_count": 1, "Are": {"_count": 1}}, "Eloise": {"_count": 1, "Midgens": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "suggestions": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "understand": {"_count": 1}}, "neither": {"_count": 1, "head": {"_count": 1}}, "Snape": {"_count": 1, "pursue": {"_count": 1}}, "myself": {"_count": 2, "plain": {"_count": 1}, "cleverer": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "arrangements": {"_count": 1, "to": {"_count": 1}}, "better": {"_count": 1, "progress": {"_count": 1}}, "room": {"_count": 2, "for": {"_count": 2}}, "themselves": {"_count": 2, "as": {"_count": 1}, "impressive": {"_count": 1}}, "objects": {"_count": 1, "fly": {"_count": 1}}, "Kreachers": {"_count": 1, "lot": {"_count": 1}}, "hushing": {"_count": 1, "noises": {"_count": 1}}, "different": {"_count": 1, "arrangements": {"_count": 1}}, "do": {"_count": 1, "with": {"_count": 1}}, "trouble": {"_count": 1, "in": {"_count": 1}}, "further": {"_count": 1, "investigations": {"_count": 1}}, "mistakes": {"_count": 3, "but": {"_count": 1}, "like": {"_count": 1}, "argued": {"_count": 1}}, "after": {"_count": 1, "completing": {"_count": 1}}, "and": {"_count": 1, "disastrous": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "spells": {"_count": 1, "work": {"_count": 1}}, "animals": {"_count": 1, "do": {"_count": 1}}, "bad": {"_count": 1, "things": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "speak": {"_count": 1}}, "Ginnys": {"_count": 1, "Christmas": {"_count": 1}}, "double": {"_count": 1, "": {"_count": 1}}, "repayment": {"_count": 1, "for": {"_count": 1}}, "more": {"_count": 1, "Horcruxes": {"_count": 1}}, "payment": {"_count": 1, "to": {"_count": 1}}, "eye": {"_count": 1, "contact": {"_count": 1}}, "our": {"_count": 1, "efforts": {"_count": 1}}, "plans": {"_count": 1, "together": {"_count": 1}}, "imprisoning": {"_count": 1, "her": {"_count": 1}}, "threats": {"_count": 1, "said": {"_count": 1}}, "another": {"_count": 2, "one": {"_count": 1}, "big": {"_count": 1}}, "into": {"_count": 1, "another": {"_count": 1}}, "helping": {"_count": 1, "Harry": {"_count": 1}}, "very": {"_count": 1, "nice": {"_count": 1}}, "soup": {"_count": 1, "for": {"_count": 1}}, "swords": {"_count": 1, "and": {"_count": 1}}, "only": {"_count": 1, "one": {"_count": 1}}, "zings": {"_count": 1, "easier": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "amends": {"_count": 1, "": {"_count": 1}}}, "slinking": {"_count": 3, "around": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}}, "step": {"_count": 114, "of": {"_count": 1, "number": {"_count": 1}}, "but": {"_count": 2, "Privet": {"_count": 1}, "Nevilles": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 12, "them": {"_count": 1}, "him": {"_count": 3}, "it": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}, "Malfoy": {"_count": 1}, "Fudge": {"_count": 1}, "Harry": {"_count": 1}, "ensuring": {"_count": 1}, "the": {"_count": 1}}, "halfway": {"_count": 3, "up": {"_count": 2}, "down": {"_count": 1}}, "Quirrell": {"_count": 1, "seemed": {"_count": 1}}, "forward": {"_count": 6, "and": {"_count": 3}, "": {"_count": 3}}, "backward": {"_count": 6, "but": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "freeing": {"_count": 1}, "yelped": {"_count": 1}}, "down": {"_count": 1, "Knockturn": {"_count": 1}}, "from": {"_count": 2, "now": {"_count": 1}, "Wizards": {"_count": 1}}, "and": {"_count": 5, "buried": {"_count": 1}, "he": {"_count": 1}, "releasing": {"_count": 1}, "sounding": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "they": {"_count": 2, "took": {"_count": 2}}, "aside": {"_count": 2, "": {"_count": 1}, "But": {"_count": 1}}, "on": {"_count": 2, "board": {"_count": 1}, "him": {"_count": 1}}, "inside": {"_count": 3, "the": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}}, "behind": {"_count": 1, "Harry": {"_count": 1}}, "closer": {"_count": 4, "": {"_count": 1}, "to": {"_count": 3}}, "further": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "he": {"_count": 5, "took": {"_count": 5}}, "going": {"_count": 3, "downstairs": {"_count": 3}}, "back": {"_count": 4, "toward": {"_count": 1}, "from": {"_count": 3}}, "Neville": {"_count": 1, "always": {"_count": 1}}, "the": {"_count": 1, "Invisibility": {"_count": 1}}, "to": {"_count": 4, "above": {"_count": 1}, "acceptance": {"_count": 1}, "step": {"_count": 1}, "hear": {"_count": 1}}, "listening": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "might": {"_count": 1}, "must": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 1, "to": {"_count": 1}}, "beside": {"_count": 2, "his": {"_count": 1}, "him": {"_count": 1}}, "George": {"_count": 1, "said": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "into": {"_count": 1}}, "this": {"_count": 1, "way": {"_count": 1}}, "Harry": {"_count": 1, "took": {"_count": 1}}, "was": {"_count": 1, "going": {"_count": 1}}, "after": {"_count": 1, "steep": {"_count": 1}}, "bouncing": {"_count": 1, "on": {"_count": 1}}, "A": {"_count": 1, "spell": {"_count": 1}}, "below": {"_count": 1, "Neville": {"_count": 1}}, "beneath": {"_count": 1, "them": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "hastily": {"_count": 1, "behind": {"_count": 1}}, "or": {"_count": 1, "two": {"_count": 1}}, "nearer": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "panting": {"_count": 1, "hard": {"_count": 1}}, "In": {"_count": 1, "silence": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "outside": {"_count": 1}}, "with": {"_count": 1, "immense": {"_count": 1}}, "deliberately": {"_count": 1, "through": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}}, "Good": {"_count": 218, "luck": {"_count": 25, "Harry": {"_count": 7}, "all": {"_count": 1}, "take": {"_count": 1}, "": {"_count": 9}, "Ron": {"_count": 2}, "with": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 1}, "everyone": {"_count": 1}}, "question": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 17, "Hagrid": {"_count": 1}, "Professor": {"_count": 2}, "Dumbledore": {"_count": 4}, "Mr": {"_count": 1}, "Harry": {"_count": 5}, "Voldemort": {"_count": 1}, "Moody": {"_count": 2}, "Lily": {"_count": 1}}, "Lord": {"_count": 3, "said": {"_count": 1}, "boy": {"_count": 1}, "you": {"_count": 1}}, "afternoon": {"_count": 15, "said": {"_count": 3}, "he": {"_count": 3}, "Harry": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "class": {"_count": 2}, "Professor": {"_count": 3}, "": {"_count": 1}}, "wand": {"_count": 1, "that": {"_count": 1}}, "well": {"_count": 1, "look": {"_count": 1}}, "idea": {"_count": 5, "said": {"_count": 4}, "whispered": {"_count": 1}}, "of": {"_count": 1, "her": {"_count": 1}}, "evening": {"_count": 19, "to": {"_count": 1}, "said": {"_count": 1}, "Hagrid": {"_count": 2}, "Lucius": {"_count": 1}, "he": {"_count": 2}, "ladies": {"_count": 1}, "Mr": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "Horace": {"_count": 1}, "sir": {"_count": 1}, "my": {"_count": 1}, "Tom": {"_count": 1}, "Professor": {"_count": 1}, "Rosmerta": {"_count": 1}, "Draco": {"_count": 1}, "Amycus": {"_count": 1}}, "day": {"_count": 14, "to": {"_count": 8}, "yourself": {"_count": 1}, "my": {"_count": 1}, "said": {"_count": 2}, "Runcorn": {"_count": 1}, "Minister": {"_count": 1}}, "good": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "lord": {"_count": 6, "is": {"_count": 1}, "Arthur": {"_count": 1}, "Ive": {"_count": 1}, "its": {"_count": 1}, "youre": {"_count": 1}, "said": {"_count": 1}}, "for": {"_count": 5, "you": {"_count": 5}}, "man": {"_count": 3, "said": {"_count": 1}, "Harry": {"_count": 1}, "goblin": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "gracious": {"_count": 7, "": {"_count": 1}, "Minister": {"_count": 1}, "its": {"_count": 1}, "is": {"_count": 2}, "Harry": {"_count": 1}, "really": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 12}, "!": {"_count": 4}}, "thinking": {"_count": 8, "said": {"_count": 5}, "": {"_count": 3}}, "thing": {"_count": 2, "too": {"_count": 2}}, "work": {"_count": 2, "Harry": {"_count": 1}, "everyone": {"_count": 1}}, "even": {"_count": 1, "my": {"_count": 1}}, "job": {"_count": 1, "too": {"_count": 1}}, "one": {"_count": 6, "said": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 3}}, "night": {"_count": 13, "to": {"_count": 1}, "": {"_count": 8}, "everyone": {"_count": 1}, "Harry": {"_count": 1}, "sir": {"_count": 2}}, "service": {"_count": 1, "": {"_count": 1}}, "point": {"_count": 2, "said": {"_count": 1}, "that": {"_count": 1}}, "boy": {"_count": 2, "growled": {"_count": 1}, "Grawpy": {"_count": 1}}, "training": {"_count": 1, "for": {"_count": 1}}, "heavens": {"_count": 1, "said": {"_count": 1}}, "ter": {"_count": 2, "see": {"_count": 2}}, "to": {"_count": 3, "see": {"_count": 3}}, "Hufflepuff": {"_count": 1, "she": {"_count": 1}}, "holiday": {"_count": 1, "": {"_count": 1}}, "grunted": {"_count": 1, "Harry": {"_count": 1}}, "girl": {"_count": 2, "take": {"_count": 1}, "": {"_count": 1}}, "about": {"_count": 1, "Ron": {"_count": 1}}, "Quidditch": {"_count": 1, "conditions": {"_count": 1}}, "haul": {"_count": 1, "this": {"_count": 1}}, "likeness": {"_count": 1, "said": {"_count": 1}}, "catch": {"_count": 1, "Harry": {"_count": 1}}, "she": {"_count": 2, "whispered": {"_count": 1}, "said": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "grief": {"_count": 1, "so": {"_count": 1}}, "I": {"_count": 1, "wanted": {"_count": 1}}, "teams": {"_count": 1, "have": {"_count": 1}}, "lesson": {"_count": 1, "I": {"_count": 1}}, "morning": {"_count": 4, "said": {"_count": 3}, "Albert": {"_count": 1}}, "game": {"_count": 1, "Harry": {"_count": 1}}, "eh": {"_count": 2, "": {"_count": 2}}, "youll": {"_count": 1, "do": {"_count": 1}}, "became": {"_count": 1, "Grindelwald": {"_count": 1}}, "was": {"_count": 1, "even": {"_count": 1}}, "plan": {"_count": 1, "said": {"_count": 1}}}, "luck": {"_count": 94, "Harry": {"_count": 9, "he": {"_count": 1}, "Potter": {"_count": 2}, "sped": {"_count": 1}, "": {"_count": 2}, "Hermione": {"_count": 1}, "Hagrid": {"_count": 1}, "wherever": {"_count": 1}}, "was": {"_count": 1, "sitting": {"_count": 1}}, "you": {"_count": 3, "grew": {"_count": 1}, "can": {"_count": 1}, "know": {"_count": 1}}, "breaking": {"_count": 1, "another": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 13}, "?": {"_count": 3}, "!": {"_count": 6}}, "all": {"_count": 1, "of": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "Weasley": {"_count": 1, "Potters": {"_count": 1}}, "take": {"_count": 1, "care": {"_count": 1}}, "Ill": {"_count": 2, "have": {"_count": 1}, "get": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 4, "he": {"_count": 2}, "they": {"_count": 1}, "you": {"_count": 1}}, "Malfoy": {"_count": 1, "would": {"_count": 1}}, "said": {"_count": 7, "Harry": {"_count": 2}, "Dumbledore": {"_count": 1}, "Lupin": {"_count": 1}, "Ron": {"_count": 1}, "Fudge": {"_count": 1}, "Hermione": {"_count": 1}}, "I": {"_count": 3, "would": {"_count": 1}, "heard": {"_count": 1}, "didnt": {"_count": 1}}, "with": {"_count": 3, "Black": {"_count": 1}, "the": {"_count": 1}, "Ragnok": {"_count": 1}}, "so": {"_count": 2, "far": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "on": {"_count": 1, "Tuesday": {"_count": 1}}, "or": {"_count": 1, "hissing": {"_count": 1}}, "Ron": {"_count": 3, "muttered": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "A": {"_count": 1, "gray": {"_count": 1}}, "Wormtail": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 4, "he": {"_count": 1}, "more": {"_count": 1}, "dont": {"_count": 1}, "chance": {"_count": 1}}, "be": {"_count": 1, "able": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "Ronald": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "Prongs": {"_count": 1, "said": {"_count": 1}}, "avoided": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "feeling": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "then": {"_count": 1, "turned": {"_count": 1}}, "mate": {"_count": 1, "but": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "run": {"_count": 1, "out": {"_count": 1}}, "everyone": {"_count": 1, "shouted": {"_count": 1}}, "theyll": {"_count": 1, "have": {"_count": 1}}, "favor": {"_count": 1, "Ron": {"_count": 1}}, "sheer": {"_count": 1, "luck": {"_count": 1}}, "get": {"_count": 1, "them": {"_count": 1}}}, "murmured": {"_count": 67, "": {"_count": 6, ".": {"_count": 6}}, "through": {"_count": 1, "the": {"_count": 1}}, "holding": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 2, "Hagrid": {"_count": 1}, "she": {"_count": 1}}, "tapping": {"_count": 1, "his": {"_count": 1}}, "running": {"_count": 1, "her": {"_count": 1}}, "watching": {"_count": 1, "Snape": {"_count": 1}}, "Lumos": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "Macnair": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "name": {"_count": 1}}, "Cedrics": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "agreement": {"_count": 1}}, "looking": {"_count": 1, "over": {"_count": 1}}, "their": {"_count": 1, "agreement": {"_count": 1}}, "agreement": {"_count": 1, "and": {"_count": 1}}, "Dumbledore": {"_count": 6, "apparently": {"_count": 1}, "": {"_count": 4}, "not": {"_count": 1}}, "Portus": {"_count": 1, "for": {"_count": 1}}, "Ron": {"_count": 1, "putting": {"_count": 1}}, "to": {"_count": 1, "Hermione": {"_count": 1}}, "a": {"_count": 1, "word": {"_count": 1}}, "Harry": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "Borgin": {"_count": 1, "bowing": {"_count": 1}}, "taking": {"_count": 1, "it": {"_count": 1}}, "Voldemort": {"_count": 2, "examining": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 2, "solemnly": {"_count": 1}, "think": {"_count": 1}}, "Aguamenti": {"_count": 1, "too": {"_count": 1}}, "behind": {"_count": 1, "Harry": {"_count": 1}}, "See": {"_count": 1, "you": {"_count": 1}}, "Hestia": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "Accio": {"_count": 2, "Locket": {"_count": 1}, "Sword": {"_count": 1}}, "Ted": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "running": {"_count": 1}}, "Lets": {"_count": 1, "go": {"_count": 1}}, "it": {"_count": 1, "could": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "words": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "instruction": {"_count": 1, "deep": {"_count": 1}}, "Tom": {"_count": 1, "and": {"_count": 1}}, "Confundo": {"_count": 1, "twice": {"_count": 1}}, "Nox": {"_count": 1, "extinguishing": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "Mundungus": {"_count": 1, "his": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}}, "heel": {"_count": 17, "and": {"_count": 11, "with": {"_count": 1}, "stormed": {"_count": 2}, "said": {"_count": 1}, "carried": {"_count": 1}, "marched": {"_count": 1}, "looked": {"_count": 1}, "ran": {"_count": 1}, "strode": {"_count": 1}, "stalking": {"_count": 1}, "hurried": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "face": {"_count": 1}}, "vaulted": {"_count": 1, "into": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "wrenched": {"_count": 1}}}, "swish": {"_count": 6, "of": {"_count": 4, "his": {"_count": 2}, "a": {"_count": 1}, "tartan": {"_count": 1}}, "and": {"_count": 2, "flick": {"_count": 1}, "thud": {"_count": 1}}}, "breeze": {"_count": 31, "ruffled": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 2}}, "lifted": {"_count": 1, "their": {"_count": 1}}, "he": {"_count": 1, "opened": {"_count": 1}}, "stood": {"_count": 1, "Severus": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "on": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 1, "would": {"_count": 1}}, "swept": {"_count": 2, "over": {"_count": 1}, "the": {"_count": 1}}, "round": {"_count": 1, "my": {"_count": 1}}, "lifting": {"_count": 1, "his": {"_count": 1}}, "played": {"_count": 1, "across": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "rattled": {"_count": 1, "the": {"_count": 1}}, "June": {"_count": 1, "had": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "leaves": {"_count": 1}}, "was": {"_count": 1, "soothing": {"_count": 1}}, "that": {"_count": 1, "seemed": {"_count": 1}}}, "neat": {"_count": 30, "hedges": {"_count": 1, "of": {"_count": 1}}, "fields": {"_count": 1, "had": {"_count": 1}}, "lines": {"_count": 1, "on": {"_count": 1}}, "straight": {"_count": 1, "twigs": {"_count": 1}}, "pass": {"_count": 1, "to": {"_count": 1}}, "writing": {"_count": 1, "Rons": {"_count": 1}}, "and": {"_count": 3, "ordered": {"_count": 1}, "curly": {"_count": 1}, "clean": {"_count": 1}}, "green": {"_count": 1, "fields": {"_count": 1}}, "hair": {"_count": 2, "his": {"_count": 1}, "and": {"_count": 1}}, "rows": {"_count": 1, "there": {"_count": 1}}, "suit": {"_count": 1, "at": {"_count": 1}}, "little": {"_count": 3, "skirt": {"_count": 1}, "circles": {"_count": 1}, "kitchen": {"_count": 1}}, "job": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Tonks": {"_count": 1}}, "square": {"_count": 1, "gardens": {"_count": 1}}, "mousy": {"_count": 1, "hair": {"_count": 1}}, "stone": {"_count": 1, "house": {"_count": 1}}, "line": {"_count": 1, "": {"_count": 1}}, "pile": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "salmoncolored": {"_count": 1, "coat": {"_count": 1}}, "stacks": {"_count": 1, "beside": {"_count": 1}}, "jinx": {"_count": 1, "straight": {"_count": 1}}, "how": {"_count": 1, "elegant": {"_count": 1}}}, "hedges": {"_count": 10, "of": {"_count": 1, "Privet": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "cast": {"_count": 1, "black": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "muffled": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "nonexistent": {"_count": 1}}, "and": {"_count": 1, "trees": {"_count": 1}}, "that": {"_count": 1, "muffled": {"_count": 1}}}, "silent": {"_count": 155, "and": {"_count": 15, "tidy": {"_count": 1}, "had": {"_count": 1}, "quite": {"_count": 1}, "by": {"_count": 1}, "slightly": {"_count": 1}, "still": {"_count": 3}, "forged": {"_count": 1}, "unmoving": {"_count": 1}, "assumed": {"_count": 1}, "watchful": {"_count": 1}, "leaving": {"_count": 1}, "all": {"_count": 1}, "their": {"_count": 1}}, "fight": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 35, ".": {"_count": 35}}, "staring": {"_count": 3, "up": {"_count": 2}, "petrified": {"_count": 1}}, "without": {"_count": 1, "effort": {"_count": 1}}, "laughter": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "looking": {"_count": 3, "around": {"_count": 1}, "at": {"_count": 1}, "rather": {"_count": 1}}, "crowd": {"_count": 2, "parted": {"_count": 1}, "": {"_count": 1}}, "black": {"_count": 1, "hovercraft": {"_count": 1}}, "hat": {"_count": 1, "": {"_count": 1}}, "scream": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "erupted": {"_count": 1, "": {"_count": 1}}, "staffroom": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "lurking": {"_count": 1}}, "said": {"_count": 2, "Katie": {"_count": 1}, "Lupin": {"_count": 1}}, "because": {"_count": 1, "hes": {"_count": 1}}, "gulping": {"_count": 1, "his": {"_count": 1}}, "giggles": {"_count": 3, "and": {"_count": 1}, "pointing": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 2, "years": {"_count": 1}, "the": {"_count": 1}}, "pub": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 8, "once": {"_count": 5}, "the": {"_count": 2}, "last": {"_count": 1}}, "meal": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 1, "she": {"_count": 1}}, "specter": {"_count": 1, "covered": {"_count": 1}}, "watching": {"_count": 2, "him": {"_count": 2}}, "castle": {"_count": 1, "held": {"_count": 1}}, "though": {"_count": 2, "still": {"_count": 1}, "he": {"_count": 1}}, "howl": {"_count": 1, "its": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "room": {"_count": 2, "": {"_count": 2}}, "dungeon": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}, "get": {"_count": 1, "away": {"_count": 1}}, "circle": {"_count": 1, "which": {"_count": 1}}, "darkness": {"_count": 1, "as": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 3}}, "minutes": {"_count": 1, "passed": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "snowy": {"_count": 1, "grounds": {"_count": 1}}, "fits": {"_count": 1, "of": {"_count": 1}}, "figures": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 1, "Everybody": {"_count": 1}}, "so": {"_count": 3, "far": {"_count": 1}, "long": {"_count": 1}, "that": {"_count": 1}}, "while": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "watchful": {"_count": 2, "crowd": {"_count": 1}, "Death": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "forest": {"_count": 1, "": {"_count": 1}}, "space": {"_count": 1, "he": {"_count": 1}}, "tantrum": {"_count": 1, "": {"_count": 1}}, "companion": {"_count": 1, "and": {"_count": 1}}, "seconds": {"_count": 1, "trickled": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "thought": {"_count": 1}}, "as": {"_count": 4, "he": {"_count": 1}, "if": {"_count": 1}, "music": {"_count": 1}, "Snape": {"_count": 1}}, "people": {"_count": 1, "sitting": {"_count": 1}}, "vigil": {"_count": 1, "": {"_count": 1}}, "echoing": {"_count": 1, "kitchen": {"_count": 1}}, "kitchen": {"_count": 1, "seemed": {"_count": 1}}, "communications": {"_count": 1, "on": {"_count": 1}}, "Stunning": {"_count": 1, "Spell": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "amusement": {"_count": 1, "beside": {"_count": 1}}, "group": {"_count": 1, "behind": {"_count": 1}}, "or": {"_count": 1, "would": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 1, "beside": {"_count": 1}}, "increasingly": {"_count": 1, "difficult": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "motionless": {"_count": 1, "Sneakoscope": {"_count": 1}}, "prisoners": {"_count": 1, "": {"_count": 1}}, "ocean": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "horror": {"_count": 1}}, "Hall": {"_count": 1, "": {"_count": 1}}, "beaming": {"_count": 1, "and": {"_count": 1}}}, "tidy": {"_count": 7, "under": {"_count": 1, "the": {"_count": 1}}, "front": {"_count": 1, "gardens": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 1, "windows": {"_count": 1}}, "and": {"_count": 1, "also": {"_count": 1}}, "bedroom": {"_count": 1, "one": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "under": {"_count": 624, "the": {"_count": 243, "inky": {"_count": 1}, "stairs": {"_count": 9}, "Stairs": {"_count": 1}, "door": {"_count": 4}, "thinnest": {"_count": 1}, "furious": {"_count": 1}, "greatest": {"_count": 1}, "Underground": {"_count": 1}, "table": {"_count": 17}, "tea": {"_count": 1}, "school": {"_count": 3}, "blinding": {"_count": 1}, "hood": {"_count": 3}, "crumpled": {"_count": 1}, "Gryffindors": {"_count": 1}, "rim": {"_count": 1}, "drawingroom": {"_count": 1}, "Malfoys": {"_count": 1}, "sink": {"_count": 1}, "desk": {"_count": 8}, "hat": {"_count": 1}, "Dursleys": {"_count": 1}, "blankets": {"_count": 2}, "loose": {"_count": 3}, "other": {"_count": 2}, "bed": {"_count": 7}, "brightly": {"_count": 1}, "counter": {"_count": 1}, "frame": {"_count": 1}, "crowded": {"_count": 1}, "icy": {"_count": 1}, "eye": {"_count": 1}, "impression": {"_count": 16}, "cloak": {"_count": 15}, "oneeyed": {"_count": 1}, "Invisibility": {"_count": 15}, "weight": {"_count": 3}, "long": {"_count": 1}, "combined": {"_count": 1}, "tent": {"_count": 1}, "gaze": {"_count": 1}, "mustache": {"_count": 1}, "armpits": {"_count": 2}, "baleful": {"_count": 1}, "age": {"_count": 2}, "cover": {"_count": 1}, "window": {"_count": 3}, "water": {"_count": 2}, "surface": {"_count": 2}, "delusion": {"_count": 2}, "Imperius": {"_count": 14}, "Dark": {"_count": 1}, "mask": {"_count": 1}, "crooked": {"_count": 1}, "name": {"_count": 1}, "circumstances": {"_count": 2}, "gap": {"_count": 1}, "dresser": {"_count": 2}, "covers": {"_count": 1}, "sofa": {"_count": 1}, "Decree": {"_count": 2}, "Wizengamot": {"_count": 1}, "starless": {"_count": 1}, "nose": {"_count": 3}, "bar": {"_count": 1}, "veil": {"_count": 1}, "cushion": {"_count": 1}, "tilted": {"_count": 1}, "mistletoe": {"_count": 2}, "boiler": {"_count": 1}, "tyranny": {"_count": 1}, "Sorting": {"_count": 1}, "strain": {"_count": 1}, "tree": {"_count": 1}, "mass": {"_count": 1}, "body": {"_count": 1}, "beech": {"_count": 1}, "mantelpieces": {"_count": 1}, "desks": {"_count": 1}, "seat": {"_count": 3}, "influence": {"_count": 2}, "rhododendron": {"_count": 1}, "heading": {"_count": 1}, "bloody": {"_count": 1}, "starry": {"_count": 1}, "hot": {"_count": 1}, "tap": {"_count": 1}, "burden": {"_count": 1}, "canopy": {"_count": 1}, "chest": {"_count": 2}, "wardrobe": {"_count": 1}, "Cloak": {"_count": 13}, "look": {"_count": 1}, "weather": {"_count": 1}, "chicken": {"_count": 1}, "sole": {"_count": 1}, "snow": {"_count": 1}, "pretense": {"_count": 1}, "new": {"_count": 1}, "lake": {"_count": 1}, "chandelier": {"_count": 1}, "wide": {"_count": 1}, "fading": {"_count": 1}, "ground": {"_count": 1}, "onslaught": {"_count": 1}, "shelter": {"_count": 1}, "chair": {"_count": 2}}, "his": {"_count": 119, "bed": {"_count": 7}, "weight": {"_count": 2}, "bushy": {"_count": 1}, "freckles": {"_count": 1}, "left": {"_count": 1}, "arm": {"_count": 7}, "breath": {"_count": 35}, "pillow": {"_count": 2}, "own": {"_count": 3}, "nose": {"_count": 2}, "thick": {"_count": 2}, "desk": {"_count": 1}, "many": {"_count": 1}, "arms": {"_count": 1}, "chair": {"_count": 1}, "hat": {"_count": 1}, "legs": {"_count": 1}, "fingers": {"_count": 4}, "bowl": {"_count": 1}, "Quidditch": {"_count": 1}, "hair": {"_count": 1}, "untidy": {"_count": 1}, "eyes": {"_count": 4}, "fingernails": {"_count": 1}, "wild": {"_count": 1}, "cloak": {"_count": 6}, "uninjured": {"_count": 1}, "hand": {"_count": 1}, "robes": {"_count": 3}, "bedclothes": {"_count": 1}, "loincloth": {"_count": 1}, "ribs": {"_count": 1}, "voice": {"_count": 2}, "guard": {"_count": 1}, "nightshirt": {"_count": 1}, "pinstriped": {"_count": 1}, "rumpled": {"_count": 1}, "chin": {"_count": 1}, "charge": {"_count": 1}, "Invisibility": {"_count": 1}, "rule": {"_count": 1}, "face": {"_count": 1}, "tiny": {"_count": 1}, "eye": {"_count": 1}, "heavy": {"_count": 1}, "jacket": {"_count": 3}, "hands": {"_count": 1}, "murmured": {"_count": 1}, "disguise": {"_count": 1}, "protection": {"_count": 1}, "glasses": {"_count": 1}}, "this": {"_count": 3, "big": {"_count": 1}, "very": {"_count": 1}, "new": {"_count": 1}}, "all": {"_count": 4, "the": {"_count": 3}, "three": {"_count": 1}}, "that": {"_count": 7, "he": {"_count": 1}, "cloak": {"_count": 1}, "and": {"_count": 1}, "one": {"_count": 1}, "tree": {"_count": 1}, "": {"_count": 1}, "high": {"_count": 1}}, "London": {"_count": 2, "see": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 47, "wing": {"_count": 4}, "seat": {"_count": 1}, "vivid": {"_count": 1}, "eye": {"_count": 1}, "cloak": {"_count": 1}, "arm": {"_count": 5}, "eyes": {"_count": 1}, "robes": {"_count": 3}, "nose": {"_count": 6}, "breath": {"_count": 11}, "chair": {"_count": 3}, "eyebrow": {"_count": 1}, "glasses": {"_count": 1}, "very": {"_count": 1}, "beloved": {"_count": 1}, "personal": {"_count": 1}, "statue": {"_count": 1}, "hood": {"_count": 1}, "brown": {"_count": 1}, "blankets": {"_count": 1}, "fathers": {"_count": 1}}, "a": {"_count": 32, "deep": {"_count": 1}, "tree": {"_count": 3}, "pile": {"_count": 1}, "hail": {"_count": 1}, "perfectly": {"_count": 1}, "lot": {"_count": 2}, "roof": {"_count": 1}, "blanket": {"_count": 1}, "loose": {"_count": 1}, "wastepaper": {"_count": 1}, "teachers": {"_count": 1}, "large": {"_count": 1}, "dementors": {"_count": 2}, "bakinghot": {"_count": 1}, "cloak": {"_count": 1}, "fourth": {"_count": 1}, "parked": {"_count": 1}, "car": {"_count": 1}, "heavily": {"_count": 1}, "sofa": {"_count": 1}, "single": {"_count": 1}, "decent": {"_count": 1}, "month": {"_count": 1}, "striped": {"_count": 1}, "dark": {"_count": 1}, "chair": {"_count": 1}, "different": {"_count": 1}, "seat": {"_count": 1}}, "your": {"_count": 9, "feet": {"_count": 1}, "pillow": {"_count": 2}, "clumsy": {"_count": 1}, "nose": {"_count": 3}, "belt": {"_count": 1}, "wrapper": {"_count": 1}}, "their": {"_count": 11, "feet": {"_count": 2}, "weight": {"_count": 1}, "wings": {"_count": 1}, "chairs": {"_count": 1}, "noses": {"_count": 1}, "roof": {"_count": 1}, "breaths": {"_count": 1}, "eyelids": {"_count": 1}, "cloaks": {"_count": 1}, "arms": {"_count": 1}}, "Peeves": {"_count": 1, "they": {"_count": 1}}, "it": {"_count": 6, "": {"_count": 4}, "Of": {"_count": 1}, "Ron": {"_count": 1}}, "Filchs": {"_count": 1, "outstretched": {"_count": 1}}, "Quirrells": {"_count": 1, "turban": {"_count": 1}}, "section": {"_count": 3, "13": {"_count": 2}, "thirteen": {"_count": 1}}, "arrest": {"_count": 2, "": {"_count": 2}}, "its": {"_count": 5, "wing": {"_count": 2}, "influence": {"_count": 1}, "weight": {"_count": 1}, "breath": {"_count": 1}}, "desks": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Flints": {"_count": 1, "arm": {"_count": 1}}, "an": {"_count": 4, "elaborately": {"_count": 1}, "enormous": {"_count": 1}, "arm": {"_count": 1}, "enchantment": {"_count": 1}}, "Rons": {"_count": 5, "nose": {"_count": 1}, "bitten": {"_count": 1}, "dress": {"_count": 1}, "fingers": {"_count": 1}, "mums": {"_count": 1}}, "Hermiones": {"_count": 2, "pillow": {"_count": 1}, "chair": {"_count": 1}}, "our": {"_count": 5, "feet": {"_count": 1}, "cloaks": {"_count": 1}, "window": {"_count": 2}, "control": {"_count": 1}}, "pressure": {"_count": 1, "": {"_count": 1}}, "sinks": {"_count": 1, "Ive": {"_count": 1}}, "control": {"_count": 6, "sir": {"_count": 1}, "": {"_count": 3}, "before": {"_count": 1}, "the": {"_count": 1}}, "here": {"_count": 5, "They": {"_count": 1}, "": {"_count": 1}, "quick": {"_count": 1}, "Hedwig": {"_count": 1}, "Harry": {"_count": 1}}, "Hermione": {"_count": 2, "s": {"_count": 2}}, "Hagrids": {"_count": 1, "weight": {"_count": 1}}, "my": {"_count": 6, "desk": {"_count": 1}, "roof": {"_count": 1}, "name": {"_count": 1}, "fathers": {"_count": 1}, "portrait": {"_count": 1}, "nose": {"_count": 1}}, "there": {"_count": 1, "because": {"_count": 1}}, "Jamess": {"_count": 1, "Invisibility": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledores": {"_count": 1}}, "Harrys": {"_count": 10, "bed": {"_count": 1}, "numb": {"_count": 1}, "furious": {"_count": 1}, "elbow": {"_count": 1}, "nose": {"_count": 1}, "immobilized": {"_count": 1}, "left": {"_count": 1}, "hand": {"_count": 1}, "arms": {"_count": 1}, "unwilling": {"_count": 1}}, "severe": {"_count": 1, "strain": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "dishes": {"_count": 1, "and": {"_count": 1}}, "those": {"_count": 1, "that": {"_count": 1}}, "one": {"_count": 3, "arm": {"_count": 2}, "eye": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}, "seventeen": {"_count": 5, "": {"_count": 1}, "from": {"_count": 1}, "wherever": {"_count": 1}, "will": {"_count": 1}, "should": {"_count": 1}}, "what": {"_count": 2, "sorry": {"_count": 1}, "looked": {"_count": 1}}, "fire": {"_count": 1, "for": {"_count": 1}}, "normal": {"_count": 1, "circumstances": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "fifteen": {"_count": 1, "minutes": {"_count": 1}}, "two": {"_count": 2, "of": {"_count": 1}, "conditions": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "false": {"_count": 2, "pretenses": {"_count": 2}}, "great": {"_count": 1, "pressure": {"_count": 1}}, "Dumbledores": {"_count": 2, "protection": {"_count": 2}}, "him": {"_count": 1, "as": {"_count": 1}}, "orders": {"_count": 1, "to": {"_count": 1}}, "Dudleys": {"_count": 2, "weight": {"_count": 1}, "bulk": {"_count": 1}}, "paragraph": {"_count": 1, "C": {"_count": 1}}, "twenty": {"_count": 1, "": {"_count": 1}}, "joints": {"_count": 1, "and": {"_count": 1}}, "Freds": {"_count": 1, "nose": {"_count": 1}}, "carefully": {"_count": 1, "controlled": {"_count": 1}}, "three": {"_count": 1, "of": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "doorways": {"_count": 1, "like": {"_count": 1}}, "certain": {"_count": 1, "conditions": {"_count": 1}}, "Hufflepuff": {"_count": 1, "Seeker": {"_count": 1}}, "Educational": {"_count": 1, "Decree": {"_count": 1}}, "threat": {"_count": 3, "was": {"_count": 1}, "from": {"_count": 1}, "of": {"_count": 1}}, "\u2018Exceeds": {"_count": 1, "Expectations": {"_count": 1}}, "strict": {"_count": 1, "guard": {"_count": 1}}, "cover": {"_count": 5, "of": {"_count": 5}}, "more": {"_count": 1, "burdens": {"_count": 1}}, "discussion": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 2, "Zacharias": {"_count": 1}, "they": {"_count": 1}}, "McGonagall": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 1, "Pomfreys": {"_count": 1}}, "imminent": {"_count": 1, "threat": {"_count": 1}}, "attack": {"_count": 1, "too": {"_count": 1}}, "counter": {"_count": 1, "enchantments": {"_count": 1}}, "these": {"_count": 1, "dreadful": {"_count": 1}}, "different": {"_count": 2, "names": {"_count": 2}}, "stress": {"_count": 1, "than": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "questioning": {"_count": 1, "Ill": {"_count": 1}}, "Wizarding": {"_count": 1, "rule": {"_count": 1}}, "observation": {"_count": 1, "and": {"_count": 1}}, "sleeves": {"_count": 1, "": {"_count": 1}}, "torture": {"_count": 1, "of": {"_count": 1}}, "magical": {"_count": 1, "protection": {"_count": 1}}, "conditions": {"_count": 1, "of": {"_count": 1}}, "sheer": {"_count": 1, "weight": {"_count": 1}}}, "inky": {"_count": 10, "sky": {"_count": 1, "the": {"_count": 1}}, "black": {"_count": 3, "but": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "blueblack": {"_count": 1, "sky": {"_count": 1}}, "blackness": {"_count": 1, "diluting": {"_count": 1}}, "quills": {"_count": 1, "parchment": {"_count": 1}}, "footprints": {"_count": 1, "across": {"_count": 1}}, "blotches": {"_count": 1, "all": {"_count": 1}}, "fingers": {"_count": 1, "on": {"_count": 1}}}, "astonishing": {"_count": 5, "things": {"_count": 1, "to": {"_count": 1}}, "powers": {"_count": 1, "": {"_count": 1}}, "sight": {"_count": 1, "": {"_count": 1}}, "gymnastics": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "way": {"_count": 1}}}, "happen": {"_count": 160, "": {"_count": 45, ".": {"_count": 25}, "?": {"_count": 15}, "!": {"_count": 5}}, "when": {"_count": 9, "you": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 2}, "they": {"_count": 1}, "somebody": {"_count": 1}, "Snape": {"_count": 1}, "I": {"_count": 1}}, "to": {"_count": 35, "them": {"_count": 4}, "anyone": {"_count": 1}, "it": {"_count": 3}, "Hagrid": {"_count": 1}, "him": {"_count": 7}, "have": {"_count": 3}, "know": {"_count": 2}, "Winky": {"_count": 1}, "the": {"_count": 4}, "you": {"_count": 2}, "be": {"_count": 1}, "people": {"_count": 1}, "those": {"_count": 1}, "Bill": {"_count": 1}, "your": {"_count": 3}}, "said": {"_count": 4, "Ron": {"_count": 2}, "Harry": {"_count": 2}}, "if": {"_count": 12, "that": {"_count": 1}, "he": {"_count": 4}, "you": {"_count": 2}, "we": {"_count": 3}, "Arthur": {"_count": 1}, "Ron": {"_count": 1}}, "without": {"_count": 1, "meaning": {"_count": 1}}, "at": {"_count": 3, "Hogwarts": {"_count": 3}}, "are": {"_count": 1, "perhaps": {"_count": 1}}, "go": {"_count": 1, "home": {"_count": 1}}, "ever": {"_count": 2, "since": {"_count": 2}}, "again": {"_count": 5, "": {"_count": 4}, "said": {"_count": 1}}, "on": {"_count": 3, "Friday": {"_count": 1}, "the": {"_count": 1}, "Christmas": {"_count": 1}}, "in": {"_count": 3, "Hagrid": {"_count": 1}, "the": {"_count": 2}}, "tonight": {"_count": 1, "": {"_count": 1}}, "ter": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "Hagridll": {"_count": 1}}, "by": {"_count": 2, "any": {"_count": 1}, "having": {"_count": 1}}, "anyway": {"_count": 1, "No": {"_count": 1}}, "Hang": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "between": {"_count": 1, "now": {"_count": 1}}, "the": {"_count": 2, "Azkaban": {"_count": 1}, "destruction": {"_count": 1}}, "ddidnt": {"_count": 1, "you": {"_count": 1}}, "anymore": {"_count": 2, "except": {"_count": 1}, "": {"_count": 1}}, "Oh": {"_count": 1, "come": {"_count": 1}}, "something": {"_count": 1, "exciting": {"_count": 1}}, "no": {"_count": 1, "no": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "sooner": {"_count": 1, "or": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "shes": {"_count": 1, "not": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "quickly": {"_count": 1}}, "next": {"_count": 2, "": {"_count": 1}, "settled": {"_count": 1}}, "he": {"_count": 1, "hangs": {"_count": 1}}, "here": {"_count": 1, "where": {"_count": 1}}, "inside": {"_count": 1, "my": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "Hagrid": {"_count": 1, "vanished": {"_count": 1}}, "within": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "escaped": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}}, "rolled": {"_count": 109, "over": {"_count": 36, "inside": {"_count": 1}, "and": {"_count": 11}, "on": {"_count": 2}, "in": {"_count": 3}, "": {"_count": 2}, "onto": {"_count": 7}, "him": {"_count": 3}, "the": {"_count": 2}, "thinking": {"_count": 1}, "his": {"_count": 1}, "again": {"_count": 1}, "toward": {"_count": 1}, "dead": {"_count": 1}}, "onto": {"_count": 3, "his": {"_count": 2}, "Harrys": {"_count": 1}}, "up": {"_count": 19, "and": {"_count": 3}, "the": {"_count": 9}, "her": {"_count": 1}, "his": {"_count": 2}, "into": {"_count": 1}, "their": {"_count": 1}, "The": {"_count": 1}, "for": {"_count": 1}}, "off": {"_count": 4, "him": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 3, "something": {"_count": 1}, "different": {"_count": 1}, "midair": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 3, "shrieking": {"_count": 1}, "across": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "back": {"_count": 2, "onto": {"_count": 1}, "down": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 2, "onto": {"_count": 1}, "of": {"_count": 1}}, "and": {"_count": 2, "she": {"_count": 1}, "pushed": {"_count": 1}}, "his": {"_count": 7, "eyes": {"_count": 7}}, "its": {"_count": 1, "eyes": {"_count": 1}}, "right": {"_count": 2, "over": {"_count": 2}}, "large": {"_count": 1, "fiery": {"_count": 1}}, "forward": {"_count": 1, "onto": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "door": {"_count": 1}}, "cautiously": {"_count": 1, "onto": {"_count": 1}}, "her": {"_count": 3, "eyes": {"_count": 3}}, "to": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "tightly": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "sideways": {"_count": 2, "onto": {"_count": 1}, "narrowly": {"_count": 1}}, "around": {"_count": 2, "laughing": {"_count": 1}, "inside": {"_count": 1}}, "dismally": {"_count": 1, "across": {"_count": 1}}, "glittering": {"_count": 1, "under": {"_count": 1}}, "upward": {"_count": 1, "in": {"_count": 1}}}, "without": {"_count": 534, "waking": {"_count": 2, "up": {"_count": 1}, "Ron": {"_count": 1}}, "buying": {"_count": 1, "anything": {"_count": 1}}, "a": {"_count": 39, "word": {"_count": 8}, "fight": {"_count": 2}, "backward": {"_count": 6}, "single": {"_count": 1}, "wand": {"_count": 3}, "doubt": {"_count": 1}, "license": {"_count": 1}, "bit": {"_count": 1}, "trace": {"_count": 3}, "partner": {"_count": 1}, "trial": {"_count": 1}, "clue": {"_count": 1}, "centaurs": {"_count": 1}, "broomstick": {"_count": 1}, "flicker": {"_count": 1}, "second": {"_count": 1}, "lightningshaped": {"_count": 1}, "father": {"_count": 1}, "scar": {"_count": 1}, "goblins": {"_count": 1}, "Gringotts": {"_count": 1}, "hope": {"_count": 1}}, "it": {"_count": 8, "": {"_count": 4}, "in": {"_count": 1}, "will": {"_count": 1}, "his": {"_count": 1}, "yet": {"_count": 1}}, "turning": {"_count": 2, "on": {"_count": 1}, "a": {"_count": 1}}, "blowing": {"_count": 1, "up": {"_count": 1}}, "them": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "she": {"_count": 1}}, "even": {"_count": 5, "realizing": {"_count": 1}, "looking": {"_count": 1}, "removing": {"_count": 1}, "needing": {"_count": 1}, "moving": {"_count": 1}}, "magic": {"_count": 6, "he": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}, "finally": {"_count": 1}, "makes": {"_count": 1}}, "realizing": {"_count": 6, "it": {"_count": 3}, "what": {"_count": 2}, "its": {"_count": 1}}, "another": {"_count": 18, "word": {"_count": 17}, "glance": {"_count": 1}}, "worrying": {"_count": 2, "": {"_count": 1}, "about": {"_count": 1}}, "everyone": {"_count": 2, "watching": {"_count": 1}, "making": {"_count": 1}}, "winning": {"_count": 1, "": {"_count": 1}}, "getting": {"_count": 4, "lost": {"_count": 1}, "off": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "the": {"_count": 23, "pickled": {"_count": 1}, "special": {"_count": 1}, "smallest": {"_count": 1}, "password": {"_count": 1}, "other": {"_count": 1}, "smell": {"_count": 1}, "faintest": {"_count": 1}, "means": {"_count": 1}, "slightest": {"_count": 4}, "knowledge": {"_count": 1}, "drawback": {"_count": 1}, "others": {"_count": 1}, "D": {"_count": 1}, "chance": {"_count": 1}, "Prince": {"_count": 1}, "full": {"_count": 1}, "tall": {"_count": 1}, "job": {"_count": 1}, "Muggles": {"_count": 1}, "Cloak": {"_count": 1}}, "effort": {"_count": 2, "": {"_count": 2}}, "her": {"_count": 7, "leaving": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 4}, "customary": {"_count": 1}}, "sliding": {"_count": 1, "off": {"_count": 1}}, "being": {"_count": 17, "taught": {"_count": 1}, "in": {"_count": 1}, "seen": {"_count": 2}, "caught": {"_count": 1}, "sneered": {"_count": 1}, "noticed": {"_count": 4}, "able": {"_count": 1}, "rude": {"_count": 1}, "discovered": {"_count": 1}, "overheard": {"_count": 1}, "detected": {"_count": 1}, "intercepted": {"_count": 1}, "followed": {"_count": 1}}, "any": {"_count": 13, "idea": {"_count": 2}, "of": {"_count": 1}, "sound": {"_count": 1}, "kind": {"_count": 1}, "study": {"_count": 1}, "real": {"_count": 2}, "conviction": {"_count": 1}, "extra": {"_count": 1}, "more": {"_count": 1}, "sort": {"_count": 1}, "new": {"_count": 1}}, "further": {"_count": 9, "clues": {"_count": 1}, "ado": {"_count": 6}, "mention": {"_count": 1}, "payment": {"_count": 1}}, "noticing": {"_count": 2, "what": {"_count": 1}, "": {"_count": 1}}, "ending": {"_count": 1, "up": {"_count": 1}}, "anyone": {"_count": 4, "noticing": {"_count": 2}, "knowing": {"_count": 1}, "else": {"_count": 1}}, "Madam": {"_count": 1, "Pince": {"_count": 1}}, "their": {"_count": 5, "noticing": {"_count": 2}, "masters": {"_count": 1}, "help": {"_count": 2}}, "saying": {"_count": 6, "a": {"_count": 3}, "goodbye": {"_count": 1}, "incantations": {"_count": 1}, "the": {"_count": 1}}, "words": {"_count": 3, "that": {"_count": 2}, "": {"_count": 1}}, "asking": {"_count": 4, "Hagrid": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}}, "us": {"_count": 4, "": {"_count": 3}, "giving": {"_count": 1}}, "Quirrell": {"_count": 2, "realizing": {"_count": 1}, "noticing": {"_count": 1}}, "suffering": {"_count": 2, "terrible": {"_count": 1}, "madness": {"_count": 1}}, "you": {"_count": 13, "but": {"_count": 1}, "lot": {"_count": 2}, "touching": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 4}, "blaming": {"_count": 1}, "seeing": {"_count": 1}, "happier": {"_count": 1}, "glad": {"_count": 1}}, "meaning": {"_count": 4, "to": {"_count": 4}}, "warning": {"_count": 15, "he": {"_count": 4}, "all": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}, "something": {"_count": 1}, "she": {"_count": 1}, "Harrys": {"_count": 1}, "pushed": {"_count": 1}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 1}}, "Mum": {"_count": 1, "noticing": {"_count": 1}}, "making": {"_count": 3, "the": {"_count": 1}, "too": {"_count": 1}, "eye": {"_count": 1}}, "tryin": {"_count": 1, "": {"_count": 1}}, "punishment": {"_count": 1, "was": {"_count": 1}}, "actually": {"_count": 1, "running": {"_count": 1}}, "hesitation": {"_count": 2, "": {"_count": 1}, "The": {"_count": 1}}, "difficulty": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 7, "realizing": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 4}, "very": {"_count": 1}}, "knowing": {"_count": 6, "I": {"_count": 1}, "whether": {"_count": 1}, "exactly": {"_count": 1}, "whats": {"_count": 1}, "how": {"_count": 1}, "what": {"_count": 1}}, "bothering": {"_count": 2, "anyone": {"_count": 1}, "to": {"_count": 1}}, "Crabbes": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 5, "": {"_count": 1}, "Id": {"_count": 1}, "I": {"_count": 1}, "for": {"_count": 1}, "after": {"_count": 1}}, "trace": {"_count": 3, "": {"_count": 1}, "en": {"_count": 1}, "did": {"_count": 1}}, "glancing": {"_count": 2, "at": {"_count": 2}}, "walking": {"_count": 1, "students": {"_count": 1}}, "thinking": {"_count": 9, "without": {"_count": 2}, "": {"_count": 3}, "and": {"_count": 1}, "still": {"_count": 1}, "Pointing": {"_count": 1}, "because": {"_count": 1}}, "considering": {"_count": 1, "as": {"_count": 1}}, "looking": {"_count": 21, "at": {"_count": 15}, "up": {"_count": 3}, "in": {"_count": 1}, "to": {"_count": 1}, "once": {"_count": 1}}, "permission": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "speaking": {"_count": 8, "": {"_count": 5}, "then": {"_count": 1}, "so": {"_count": 1}, "however": {"_count": 1}}, "wands": {"_count": 4, "first": {"_count": 1}, "seemed": {"_count": 1}, "said": {"_count": 2}}, "inside": {"_count": 1, "help": {"_count": 1}}, "anything": {"_count": 1, "horrible": {"_count": 1}}, "waiting": {"_count": 4, "for": {"_count": 4}}, "fail": {"_count": 1, "Hermione": {"_count": 1}}, "your": {"_count": 2, "soul": {"_count": 1}, "help": {"_count": 1}}, "Snape": {"_count": 1, "noticing": {"_count": 1}}, "passing": {"_count": 1, "the": {"_count": 1}}, "Divination": {"_count": 1, "she": {"_count": 1}}, "Slytherins": {"_count": 1, "sticking": {"_count": 1}}, "help": {"_count": 3, "Another": {"_count": 1}, "but": {"_count": 1}, "Hermione": {"_count": 1}}, "telling": {"_count": 2, "me": {"_count": 1}, "her": {"_count": 1}}, "taking": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 1}, "in": {"_count": 1}}, "stopping": {"_count": 2, "twisting": {"_count": 1}, "clutching": {"_count": 1}}, "Pettigrew": {"_count": 1, "alive": {"_count": 1}}, "anybody": {"_count": 2, "seeing": {"_count": 1}, "realizing": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "noticing": {"_count": 1}}, "fuss": {"_count": 1, "I": {"_count": 1}}, "drawing": {"_count": 2, "breath": {"_count": 1}, "attention": {"_count": 1}}, "an": {"_count": 1, "address": {"_count": 1}}, "feeling": {"_count": 1, "stupid": {"_count": 1}}, "complaint": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "attracting": {"_count": 3, "Muggle": {"_count": 1}, "attention": {"_count": 1}, "the": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "wind": {"_count": 1, "": {"_count": 1}}, "parachutes": {"_count": 1, "": {"_count": 1}}, "interference": {"_count": 2, "": {"_count": 2}}, "mercy": {"_count": 1, "Volkov": {"_count": 1}}, "clearing": {"_count": 1, "it": {"_count": 1}}, "throwing": {"_count": 1, "it": {"_count": 1}}, "blinking": {"_count": 1, "and": {"_count": 1}}, "great": {"_count": 1, "incident": {"_count": 1}}, "squeaking": {"_count": 1, "and": {"_count": 1}}, "moving": {"_count": 2, "watching": {"_count": 1}, "": {"_count": 1}}, "question": {"_count": 3, "": {"_count": 3}}, "recognizable": {"_count": 1, "heads": {"_count": 1}}, "opening": {"_count": 1, "her": {"_count": 1}}, "interruption": {"_count": 1, "but": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 4, "Crouch": {"_count": 1}, "thing": {"_count": 1}, "being": {"_count": 1}, "he": {"_count": 1}}, "paying": {"_count": 2, "much": {"_count": 1}, "the": {"_count": 1}}, "oxygen": {"_count": 1, "": {"_count": 1}}, "showing": {"_count": 1, "any": {"_count": 1}}, "trial": {"_count": 1, "": {"_count": 1}}, "preamble": {"_count": 2, "": {"_count": 1}, "why": {"_count": 1}}, "assistance": {"_count": 1, "Dumbledore": {"_count": 1}}, "arousing": {"_count": 1, "suspicion": {"_count": 1}}, "appearing": {"_count": 1, "to": {"_count": 1}}, "hurting": {"_count": 1, "himself": {"_count": 1}}, "reference": {"_count": 1, "to": {"_count": 1}}, "Karkaroff": {"_count": 1, "": {"_count": 1}}, "dwelling": {"_count": 1, "on": {"_count": 1}}, "inviting": {"_count": 1, "him": {"_count": 1}}, "cover": {"_count": 1, "when": {"_count": 1}}, "doing": {"_count": 2, "magic": {"_count": 1}, "the": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "long": {"_count": 1}}, "undressing": {"_count": 1, "and": {"_count": 1}}, "news": {"_count": 1, "but": {"_count": 1}}, "owls": {"_count": 1, "": {"_count": 1}}, "proof": {"_count": 1, "Yeah": {"_count": 1}}, "authorization": {"_count": 1, "": {"_count": 1}}, "company": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "progress": {"_count": 1, "there": {"_count": 1}}, "pausing": {"_count": 1, "while": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "comment": {"_count": 4, "which": {"_count": 1}, "": {"_count": 3}}, "interest": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 2, "I": {"_count": 1}, "lecturing": {"_count": 1}}, "having": {"_count": 2, "to": {"_count": 2}}, "serious": {"_count": 1, "application": {"_count": 1}}, "too": {"_count": 2, "much": {"_count": 2}}, "so": {"_count": 2, "much": {"_count": 2}}, "dropping": {"_count": 1, "off": {"_count": 1}}, "real": {"_count": 1, "hope": {"_count": 1}}, "giving": {"_count": 3, "potential": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "resorting": {"_count": 1, "to": {"_count": 1}}, "Sirius": {"_count": 1, "too": {"_count": 1}}, "really": {"_count": 7, "concentrating": {"_count": 1}, "meaning": {"_count": 1}, "listening": {"_count": 1}, "thinking": {"_count": 2}, "doing": {"_count": 1}, "knowing": {"_count": 1}}, "signposts": {"_count": 1, "": {"_count": 1}}, "sparing": {"_count": 1, "a": {"_count": 1}}, "squabbles": {"_count": 1, "over": {"_count": 1}}, "enthusiasm": {"_count": 1, "and": {"_count": 1}}, "flinching": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 8, "children": {"_count": 1}, "being": {"_count": 1}, "own": {"_count": 1}, "wife": {"_count": 1}, "absence": {"_count": 1}, "Horcruxes": {"_count": 1}, "bezoar": {"_count": 1}, "volition": {"_count": 1}}, "reason": {"_count": 1, "of": {"_count": 1}}, "detection": {"_count": 2, "": {"_count": 1}, "let": {"_count": 1}}, "offering": {"_count": 1, "any": {"_count": 1}}, "once": {"_count": 1, "realizing": {"_count": 1}}, "my": {"_count": 2, "help": {"_count": 1}, "knowledge": {"_count": 1}}, "consulting": {"_count": 1, "her": {"_count": 1}}, "success": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "meeting": {"_count": 1, "some": {"_count": 1}}, "extra": {"_count": 1, "classes": {"_count": 1}}, "sustaining": {"_count": 1, "serious": {"_count": 1}}, "seeing": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "caring": {"_count": 1, "much": {"_count": 1}}, "teacher": {"_count": 1, "witnesses": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "We": {"_count": 1, "have": {"_count": 1}}, "invitation": {"_count": 3, "": {"_count": 1}, "thrust": {"_count": 1}, "this": {"_count": 1}}, "considerable": {"_count": 1, "hard": {"_count": 1}}, "flatly": {"_count": 1, "lying": {"_count": 1}}, "touching": {"_count": 4, "him": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}, "anything": {"_count": 1}}, "smiling": {"_count": 1, "": {"_count": 1}}, "antidotes": {"_count": 1, "": {"_count": 1}}, "shouting": {"_count": 1, "incantations": {"_count": 1}}, "uttering": {"_count": 1, "a": {"_count": 1}}, "Grawp": {"_count": 1, "in": {"_count": 1}}, "wishing": {"_count": 1, "Ron": {"_count": 1}}, "broomsticks": {"_count": 1, "": {"_count": 1}}, "breaking": {"_count": 1, "eye": {"_count": 1}}, "our": {"_count": 1, "knowledge": {"_count": 1}}, "training": {"_count": 1, "them": {"_count": 1}}, "thanking": {"_count": 1, "Dumbledore": {"_count": 1}}, "regret": {"_count": 1, "": {"_count": 1}}, "lookouts": {"_count": 1, "or": {"_count": 1}}, "haste": {"_count": 1, "but": {"_count": 1}}, "conscious": {"_count": 3, "thought": {"_count": 2}, "instruction": {"_count": 1}}, "knocking": {"_count": 1, "over": {"_count": 1}}, "damage": {"_count": 1, "to": {"_count": 1}}, "enduring": {"_count": 1, "mortal": {"_count": 1}}, "planning": {"_count": 1, "it": {"_count": 1}}, "Enough": {"_count": 1, "said": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "removing": {"_count": 1, "his": {"_count": 1}}, "broomstick": {"_count": 1, "or": {"_count": 1}}, "its": {"_count": 1, "usual": {"_count": 1}}, "Arthur": {"_count": 1, "she": {"_count": 1}}, "running": {"_count": 1, "": {"_count": 1}}, "explanation": {"_count": 1, "in": {"_count": 1}}, "fear": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "revealing": {"_count": 1, "himself": {"_count": 1}}, "and": {"_count": 1, "about": {"_count": 1}}, "publicizing": {"_count": 1, "it": {"_count": 1}}, "need": {"_count": 1, "of": {"_count": 1}}, "understanding": {"_count": 1, "that": {"_count": 1}}, "inventing": {"_count": 1, "stuff": {"_count": 1}}, "heat": {"_count": 1, "but": {"_count": 1}}, "handing": {"_count": 1, "over": {"_count": 1}}, "landing": {"_count": 1, "nor": {"_count": 1}}, "overstretching": {"_count": 1, "themselves": {"_count": 1}}, "hesitating": {"_count": 1, "with": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "talking": {"_count": 1, "for": {"_count": 1}}, "love": {"_count": 1, "": {"_count": 1}}}, "waking": {"_count": 15, "up": {"_count": 2, "": {"_count": 1}, "any": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "far": {"_count": 1}}, "me": {"_count": 1, "up": {"_count": 1}}, "her": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 3, "a": {"_count": 2}, "his": {"_count": 1}}, "moments": {"_count": 1, "too": {"_count": 1}}, "much": {"_count": 1, "later": {"_count": 1}}, "moment": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "One": {"_count": 237, "small": {"_count": 1, "hand": {"_count": 1}}, "day": {"_count": 3, "in": {"_count": 1}, "said": {"_count": 1}, "perhaps": {"_count": 1}}, "thing": {"_count": 3, "was": {"_count": 2}, "I": {"_count": 1}}, "minute": {"_count": 4, "to": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "plain": {"_count": 1, "pointed": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}, "winter": {"_count": 1, "cloak": {"_count": 1}}, "Thousand": {"_count": 5, "Magical": {"_count": 5}}, "of": {"_count": 74, "them": {"_count": 15}, "his": {"_count": 8}, "us": {"_count": 4}, "my": {"_count": 3}, "the": {"_count": 33}, "Harrys": {"_count": 1}, "thems": {"_count": 1}, "their": {"_count": 1}, "your": {"_count": 2}, "these": {"_count": 1}, "Fudges": {"_count": 1}, "course": {"_count": 1}, "Georges": {"_count": 1}, "those": {"_count": 1}, "Aragogs": {"_count": 1}}, "speed": {"_count": 1, "only": {"_count": 1}}, "wild": {"_count": 1, "cart": {"_count": 1}}, "by": {"_count": 10, "one": {"_count": 10}}, "morning": {"_count": 1, "in": {"_count": 1}}, "book": {"_count": 1, "had": {"_count": 1}}, "can": {"_count": 1, "never": {"_count": 1}}, "hour": {"_count": 3, "of": {"_count": 1}, "": {"_count": 2}}, "among": {"_count": 1, "us": {"_count": 1}}, "more": {"_count": 6, "sound": {"_count": 1}, "murder": {"_count": 1}, "nighttime": {"_count": 1}, "time": {"_count": 1}, "word": {"_count": 1}, "lesson": {"_count": 1}}, "good": {"_count": 1, "push": {"_count": 1}}, "Minute": {"_count": 1, "Feasts": {"_count": 1}}, "gleamed": {"_count": 1, "under": {"_count": 1}}, "Holding": {"_count": 1, "Your": {"_count": 1}}, "two": {"_count": 11, "three": {"_count": 7}, "THREE": {"_count": 1}, "A": {"_count": 1}, "Harry": {"_count": 1}, "Snapes": {"_count": 1}}, "person": {"_count": 2, "however": {"_count": 1}, "cant": {"_count": 1}}, "long": {"_count": 1, "poisonous": {"_count": 1}}, "look": {"_count": 2, "told": {"_count": 1}, "at": {"_count": 1}}, "moment": {"_count": 5, "please": {"_count": 2}, "a": {"_count": 1}, "Runcorn": {"_count": 1}, "madam": {"_count": 1}}, "casual": {"_count": 1, "wave": {"_count": 1}}, "like": {"_count": 1, "Malfoys": {"_count": 1}}, "hopes": {"_count": 1, "however": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 11}, "!": {"_count": 1}, "?": {"_count": 3}}, "was": {"_count": 5, "so": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "bleeding": {"_count": 1}, "very": {"_count": 1}}, "hand": {"_count": 2, "was": {"_count": 1}, "holding": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "wrong": {"_count": 1, "move": {"_count": 1}}, "bewildered": {"_count": 1, "second": {"_count": 1}}, "with": {"_count": 1, "very": {"_count": 1}}, "falls": {"_count": 1, "off": {"_count": 1}}, "hundred": {"_count": 1, "thousand": {"_count": 1}}, "year": {"_count": 2, "and": {"_count": 1}, "old": {"_count": 1}}, "drop": {"_count": 1, "each": {"_count": 1}}, "Herbology": {"_count": 1, "lesson": {"_count": 1}}, "down": {"_count": 1, "three": {"_count": 1}}, "side": {"_count": 1, "of": {"_count": 1}}, "tap": {"_count": 1, "gushed": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "week": {"_count": 1, "later": {"_count": 1}}, "or": {"_count": 6, "two": {"_count": 4}, "not": {"_count": 1}, "whatever": {"_count": 1}}, "simply": {"_count": 2, "siphons": {"_count": 1}, "uses": {"_count": 1}}, "champion": {"_count": 1, "down": {"_count": 1}}, "too": {"_count": 1, "cowardly": {"_count": 1}}, "who": {"_count": 1, "I": {"_count": 1}}, "might": {"_count": 1, "go": {"_count": 1}}, "thousand": {"_count": 1, "Galleons": {"_count": 1}}, "fact": {"_count": 1, "had": {"_count": 1}}, "sacked": {"_count": 1, "one": {"_count": 1}}, "floor": {"_count": 1, "down": {"_count": 1}}, "Hes": {"_count": 1, "sitting": {"_count": 1}}, "landing": {"_count": 1, "down": {"_count": 1}}, "believing": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 3, "each": {"_count": 1}, "your": {"_count": 1}, "Harry": {"_count": 1}}, "rumors": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "theyre": {"_count": 1, "calling": {"_count": 1}}, "rubbish": {"_count": 1, "is": {"_count": 1}}, "sneered": {"_count": 1, "Malfoy": {"_count": 1}}, "There": {"_count": 1, "has": {"_count": 1}}, "partner": {"_count": 1, "will": {"_count": 1}}, "tiny": {"_count": 1, "bottle": {"_count": 1}}, "result": {"_count": 1, "of": {"_count": 1}}, "well": {"_count": 1, "come": {"_count": 1}}, "tangled": {"_count": 1, "itself": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "you": {"_count": 2, "see": {"_count": 1}, "know": {"_count": 1}}, "working": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}, "alone": {"_count": 1, "could": {"_count": 1}}, "failed": {"_count": 2, "attempt": {"_count": 2}}, "arm": {"_count": 1, "around": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "that": {"_count": 1, "there": {"_count": 1}}, "simple": {"_count": 2, "movement": {"_count": 1}, "test": {"_count": 1}}, "fragile": {"_count": 1, "strand": {"_count": 1}}, "way": {"_count": 1, "to": {"_count": 1}}, "Horcrux": {"_count": 2, "down": {"_count": 1}, "remained": {"_count": 1}}, "man": {"_count": 1, "had": {"_count": 1}}, "shivering": {"_count": 1, "second": {"_count": 1}}}, "hand": {"_count": 1120, "closed": {"_count": 6, "on": {"_count": 1}, "suddenly": {"_count": 1}, "tightly": {"_count": 2}, "automatically": {"_count": 1}, "around": {"_count": 1}}, "puppet": {"_count": 1, "but": {"_count": 1}}, "hed": {"_count": 1, "gotten": {"_count": 1}}, "in": {"_count": 37, "the": {"_count": 11}, "Charms": {"_count": 1}, "turn": {"_count": 1}, "a": {"_count": 3}, "next": {"_count": 1}, "hand": {"_count": 2}, "my": {"_count": 1}, "your": {"_count": 2}, "that": {"_count": 1}, "front": {"_count": 3}, "his": {"_count": 4}, "which": {"_count": 1}, "farewell": {"_count": 1}, "both": {"_count": 1}, "lazy": {"_count": 1}, "Katies": {"_count": 1}, "it": {"_count": 1}, "answer": {"_count": 1}}, "was": {"_count": 45, "going": {"_count": 1}, "small": {"_count": 1}, "first": {"_count": 1}, "listening": {"_count": 1}, "waving": {"_count": 1}, "back": {"_count": 1}, "clamped": {"_count": 1}, "squeezing": {"_count": 1}, "a": {"_count": 2}, "suddenly": {"_count": 2}, "shaking": {"_count": 3}, "trapped": {"_count": 1}, "still": {"_count": 4}, "extending": {"_count": 1}, "curled": {"_count": 1}, "it": {"_count": 1}, "quite": {"_count": 1}, "trembling": {"_count": 2}, "throttling": {"_count": 1}, "stinging": {"_count": 1}, "throbbing": {"_count": 1}, "glued": {"_count": 1}, "on": {"_count": 1}, "bleeding": {"_count": 1}, "lying": {"_count": 1}, "in": {"_count": 1}, "flying": {"_count": 1}, "starting": {"_count": 1}, "groping": {"_count": 1}, "caressing": {"_count": 1}, "blackened": {"_count": 2}, "as": {"_count": 2}, "like": {"_count": 1}, "fastest": {"_count": 1}, "pressed": {"_count": 1}}, "trembling": {"_count": 3, "Harry": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}}, "by": {"_count": 3, "Uncle": {"_count": 1}, "saying": {"_count": 1}, "murder": {"_count": 1}}, "and": {"_count": 124, "glancing": {"_count": 1}, "shook": {"_count": 3}, "said": {"_count": 2}, "felt": {"_count": 4}, "no": {"_count": 2}, "setting": {"_count": 1}, "Harry": {"_count": 7}, "he": {"_count": 2}, "a": {"_count": 11}, "apologize": {"_count": 1}, "raised": {"_count": 1}, "pulled": {"_count": 4}, "then": {"_count": 4}, "glowing": {"_count": 1}, "dipped": {"_count": 1}, "stared": {"_count": 1}, "mopping": {"_count": 1}, "pointed": {"_count": 3}, "stroked": {"_count": 1}, "his": {"_count": 2}, "looking": {"_count": 1}, "held": {"_count": 2}, "Uncle": {"_count": 1}, "starting": {"_count": 1}, "seized": {"_count": 2}, "make": {"_count": 1}, "slid": {"_count": 1}, "Mr": {"_count": 1}, "ran": {"_count": 1}, "swung": {"_count": 1}, "holding": {"_count": 2}, "set": {"_count": 1}, "beaming": {"_count": 1}, "turned": {"_count": 1}, "let": {"_count": 1}, "youre": {"_count": 1}, "the": {"_count": 4}, "turning": {"_count": 1}, "Umbridge": {"_count": 1}, "threw": {"_count": 2}, "allowing": {"_count": 1}, "pushed": {"_count": 1}, "narrowly": {"_count": 1}, "halfway": {"_count": 1}, "an": {"_count": 3}, "grasped": {"_count": 1}, "shouted": {"_count": 1}, "she": {"_count": 1}, "leaning": {"_count": 1}, "feeling": {"_count": 1}, "drew": {"_count": 1}, "raise": {"_count": 1}, "landed": {"_count": 1}, "stuffing": {"_count": 1}, "dragged": {"_count": 1}, "lifted": {"_count": 1}, "unfolded": {"_count": 1}, "pressed": {"_count": 1}, "strode": {"_count": 1}, "Romilda": {"_count": 1}, "exercising": {"_count": 1}, "stretched": {"_count": 1}, "Yaxley": {"_count": 1}, "withdrawn": {"_count": 1}, "shaking": {"_count": 1}, "patted": {"_count": 1}, "found": {"_count": 1}, "purely": {"_count": 1}, "Scrimgeour": {"_count": 1}, "wand": {"_count": 1}, "they": {"_count": 1}, "Ron": {"_count": 1}, "walked": {"_count": 1}, "took": {"_count": 1}, "beckoned": {"_count": 1}, "forehead": {"_count": 1}, "spun": {"_count": 1}, "attempted": {"_count": 1}, "in": {"_count": 1}, "disappeared": {"_count": 1}, "tore": {"_count": 1}, "examined": {"_count": 1}}, "": {"_count": 207, ".": {"_count": 194}, "?": {"_count": 6}, "!": {"_count": 7}}, "out": {"_count": 6, "of": {"_count": 2}, "to": {"_count": 1}, "over": {"_count": 1}, "in": {"_count": 1}, "punishments": {"_count": 1}}, "at": {"_count": 11, "last": {"_count": 1}, "once": {"_count": 1}, "her": {"_count": 2}, "them": {"_count": 1}, "other": {"_count": 1}, "the": {"_count": 3}, "Potions": {"_count": 1}, "him": {"_count": 1}}, "to": {"_count": 54, "his": {"_count": 8}, "shake": {"_count": 1}, "stroke": {"_count": 1}, "perform": {"_count": 1}, "her": {"_count": 5}, "push": {"_count": 4}, "pat": {"_count": 1}, "stem": {"_count": 1}, "pull": {"_count": 1}, "help": {"_count": 2}, "silence": {"_count": 4}, "grab": {"_count": 1}, "stop": {"_count": 2}, "seize": {"_count": 1}, "it": {"_count": 1}, "Harry": {"_count": 2}, "show": {"_count": 3}, "the": {"_count": 3}, "himself": {"_count": 1}, "wipe": {"_count": 1}, "explain": {"_count": 1}, "a": {"_count": 1}, "point": {"_count": 1}, "hand": {"_count": 3}, "make": {"_count": 1}, "free": {"_count": 1}, "Hermione": {"_count": 1}, "Percy": {"_count": 1}}, "on": {"_count": 42, "Harrys": {"_count": 4}, "his": {"_count": 11}, "the": {"_count": 16}, "a": {"_count": 2}, "its": {"_count": 1}, "Dracos": {"_count": 1}, "Hagrids": {"_count": 1}, "each": {"_count": 1}, "either": {"_count": 1}, "Dudleys": {"_count": 1}, "Umbridges": {"_count": 1}, "Hermiones": {"_count": 1}, "it": {"_count": 1}}, "tears": {"_count": 1, "in": {"_count": 1}}, "Im": {"_count": 1, "all": {"_count": 1}}, "ccant": {"_count": 1, "ttell": {"_count": 1}}, "one": {"_count": 3, "last": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "favored": {"_count": 1, "a": {"_count": 1}}, "almost": {"_count": 2, "at": {"_count": 1}, "knocked": {"_count": 1}}, "Mom": {"_count": 1, "cant": {"_count": 1}}, "vigorously": {"_count": 2, "while": {"_count": 1}, "": {"_count": 1}}, "had": {"_count": 29, "shot": {"_count": 2}, "swollen": {"_count": 1}, "found": {"_count": 1}, "nibbled": {"_count": 1}, "liked": {"_count": 1}, "suddenly": {"_count": 1}, "been": {"_count": 3}, "closed": {"_count": 3}, "dropped": {"_count": 1}, "developed": {"_count": 1}, "just": {"_count": 1}, "barely": {"_count": 1}, "appeared": {"_count": 1}, "turned": {"_count": 1}, "twisted": {"_count": 1}, "switched": {"_count": 1}, "done": {"_count": 2}, "twitched": {"_count": 1}, "gripped": {"_count": 1}, "only": {"_count": 1}, "enclosed": {"_count": 1}, "once": {"_count": 1}, "drawn": {"_count": 1}}, "as": {"_count": 24, "high": {"_count": 1}, "though": {"_count": 4}, "he": {"_count": 7}, "it": {"_count": 1}, "she": {"_count": 2}, "if": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "Fleur": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 1}, "Voldemort": {"_count": 1}}, "stretching": {"_count": 1, "toward": {"_count": 1}}, "over": {"_count": 15, "your": {"_count": 1}, "what": {"_count": 1}, "his": {"_count": 3}, "her": {"_count": 4}, "whatever": {"_count": 1}, "the": {"_count": 3}, "that": {"_count": 1}, "Wormtails": {"_count": 1}}, "a": {"_count": 4, "foot": {"_count": 1}, "matter": {"_count": 1}, "voice": {"_count": 1}, "number": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "Malfoys": {"_count": 1, "sneering": {"_count": 1}}, "when": {"_count": 2, "hed": {"_count": 1}, "Harry": {"_count": 1}}, "rose": {"_count": 1, "high": {"_count": 1}}, "knitted": {"_count": 1, "sweater": {"_count": 1}}, "which": {"_count": 8, "was": {"_count": 3}, "flipped": {"_count": 1}, "Harry": {"_count": 1}, "might": {"_count": 1}, "sported": {"_count": 1}, "looked": {"_count": 1}}, "he": {"_count": 12, "whispered": {"_count": 1}, "had": {"_count": 3}, "would": {"_count": 1}, "was": {"_count": 1}, "pointed": {"_count": 1}, "groped": {"_count": 1}, "pulled": {"_count": 1}, "said": {"_count": 1}, "only": {"_count": 1}, "tipped": {"_count": 1}}, "clapped": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 18, "its": {"_count": 1}, "the": {"_count": 9}, "his": {"_count": 5}, "a": {"_count": 1}, "which": {"_count": 1}, "this": {"_count": 1}}, "close": {"_count": 2, "on": {"_count": 1}, "over": {"_count": 1}}, "with": {"_count": 12, "a": {"_count": 1}, "his": {"_count": 2}, "her": {"_count": 1}, "its": {"_count": 2}, "Cho": {"_count": 1}, "the": {"_count": 1}, "interest": {"_count": 1}, "this": {"_count": 1}, "both": {"_count": 1}, "hers": {"_count": 1}}, "appeared": {"_count": 1, "pushing": {"_count": 1}}, "it": {"_count": 12, "to": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 4}, "over": {"_count": 4}, "seemed": {"_count": 1}, "rolled": {"_count": 1}}, "again": {"_count": 6, "Oh": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}}, "for": {"_count": 11, "the": {"_count": 6}, "it": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}, "silence": {"_count": 1}, "dear": {"_count": 1}}, "Ginny": {"_count": 2, "just": {"_count": 1}, "Weasley": {"_count": 1}}, "wrung": {"_count": 1, "by": {"_count": 1}}, "Harry": {"_count": 6, "could": {"_count": 1}, "and": {"_count": 1}, "recognized": {"_count": 1}, "tucked": {"_count": 1}, "had": {"_count": 1}, "thought": {"_count": 1}}, "greeted": {"_count": 1, "them": {"_count": 1}}, "eased": {"_count": 1, "the": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "shot": {"_count": 3, "out": {"_count": 1}, "into": {"_count": 2}}, "narrowly": {"_count": 1, "missed": {"_count": 1}}, "shaken": {"_count": 1, "too": {"_count": 1}}, "impatiently": {"_count": 2, "": {"_count": 2}}, "I": {"_count": 3, "managed": {"_count": 1}, "would": {"_count": 1}, "need": {"_count": 1}}, "shaking": {"_count": 4, "slightly": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "very": {"_count": 1}}, "the": {"_count": 11, "book": {"_count": 1}, "old": {"_count": 1}, "wand": {"_count": 1}, "result": {"_count": 1}, "knuckles": {"_count": 1}, "size": {"_count": 2}, "Prince": {"_count": 1}, "bezoar": {"_count": 1}, "other": {"_count": 1}, "sort": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "inched": {"_count": 1, "toward": {"_count": 1}}, "grubby": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 5, "into": {"_count": 2}, "the": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 1}}, "eagerly": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "big": {"_count": 1, "blundering": {"_count": 1}}, "twitch": {"_count": 1, "as": {"_count": 1}}, "she": {"_count": 5, "held": {"_count": 1}, "rides": {"_count": 1}, "peered": {"_count": 1}, "would": {"_count": 1}, "took": {"_count": 1}}, "wanted": {"_count": 1, "Harry": {"_count": 1}}, "her": {"_count": 5, "tiny": {"_count": 1}, "whole": {"_count": 1}, "pursuer": {"_count": 1}, "trailing": {"_count": 1}, "face": {"_count": 1}}, "clenched": {"_count": 4, "on": {"_count": 1}, "upon": {"_count": 1}, "in": {"_count": 1}, "painfully": {"_count": 1}}, "step": {"_count": 1, "on": {"_count": 1}}, "Fudge": {"_count": 1, "left": {"_count": 1}}, "automatically": {"_count": 1, "and": {"_count": 1}}, "solemnly": {"_count": 1, "as": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "then": {"_count": 2, "turn": {"_count": 1}, "sir": {"_count": 1}}, "clutched": {"_count": 1, "her": {"_count": 1}}, "down": {"_count": 3, "looking": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}}, "slithering": {"_count": 1, "back": {"_count": 1}}, "Hogsmeade": {"_count": 1, "permission": {"_count": 1}}, "somebody": {"_count": 1, "was": {"_count": 1}}, "there": {"_count": 1, "didnt": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "gripping": {"_count": 2, "its": {"_count": 1}, "his": {"_count": 1}}, "still": {"_count": 9, "grasping": {"_count": 1}, "outstretched": {"_count": 1}, "on": {"_count": 1}, "tight": {"_count": 2}, "in": {"_count": 1}, "clamped": {"_count": 1}, "upon": {"_count": 1}, "trembling": {"_count": 1}}, "slowly": {"_count": 1, "into": {"_count": 1}}, "moved": {"_count": 2, "toward": {"_count": 1}, "slowly": {"_count": 1}}, "were": {"_count": 5, "writing": {"_count": 1}, "scrawling": {"_count": 1}, "bending": {"_count": 1}, "the": {"_count": 1}, "rejoicing": {"_count": 1}}, "very": {"_count": 2, "tightly": {"_count": 1}, "briefly": {"_count": 1}}, "but": {"_count": 13, "suddenly": {"_count": 1}, "as": {"_count": 1}, "remained": {"_count": 1}, "across": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 1}, "nothing": {"_count": 1}, "his": {"_count": 1}, "yours": {"_count": 1}, "the": {"_count": 1}}, "seemed": {"_count": 5, "to": {"_count": 4}, "stiff": {"_count": 1}}, "trembled": {"_count": 1, "so": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 1}, "over": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "sent": {"_count": 1, "a": {"_count": 1}}, "punching": {"_count": 1, "every": {"_count": 1}}, "quite": {"_count": 1, "steady": {"_count": 1}}, "so": {"_count": 5, "did": {"_count": 2}, "that": {"_count": 2}, "tightly": {"_count": 1}}, "pulled": {"_count": 3, "him": {"_count": 1}, "out": {"_count": 2}}, "inside": {"_count": 13, "his": {"_count": 9}, "the": {"_count": 2}, "her": {"_count": 1}, "it": {"_count": 1}}, "him": {"_count": 2, "the": {"_count": 1}, "over": {"_count": 1}}, "slid": {"_count": 1, "out": {"_count": 1}}, "their": {"_count": 2, "interference": {"_count": 1}, "lessons": {"_count": 1}}, "allowing": {"_count": 1, "Harry": {"_count": 1}}, "whizzing": {"_count": 1, "excitedly": {"_count": 1}}, "looked": {"_count": 3, "somehow": {"_count": 1}, "rather": {"_count": 1}, "sheepish": {"_count": 1}}, "nervously": {"_count": 1, "over": {"_count": 1}}, "outstretched": {"_count": 5, "but": {"_count": 2}, "": {"_count": 3}}, "from": {"_count": 7, "Harrys": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}, "behind": {"_count": 1}, "beneath": {"_count": 1}, "him": {"_count": 1}}, "held": {"_count": 3, "out": {"_count": 2}, "it": {"_count": 1}}, "preening": {"_count": 1, "themselves": {"_count": 1}}, "scowling": {"_count": 1, "up": {"_count": 1}}, "Amos": {"_count": 1, "said": {"_count": 1}}, "onto": {"_count": 3, "the": {"_count": 3}}, "that": {"_count": 6, "was": {"_count": 2}, "had": {"_count": 1}, "channels": {"_count": 1}, "he": {"_count": 1}, "morning": {"_count": 1}}, "flew": {"_count": 7, "into": {"_count": 2}, "across": {"_count": 1}, "out": {"_count": 1}, "toward": {"_count": 2}, "to": {"_count": 1}}, "shook": {"_count": 4, "slightly": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 1}, "attached": {"_count": 1}, "bleeding": {"_count": 1}}, "away": {"_count": 4, "from": {"_count": 2}, "": {"_count": 2}}, "if": {"_count": 1, "it": {"_count": 1}}, "though": {"_count": 3, "he": {"_count": 2}, "Ron": {"_count": 1}}, "clutching": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "blended": {"_count": 1, "perfectly": {"_count": 1}}, "beamed": {"_count": 1, "up": {"_count": 1}}, "pressed": {"_count": 2, "hard": {"_count": 1}, "flat": {"_count": 1}}, "went": {"_count": 1, "nervously": {"_count": 1}}, "quickly": {"_count": 1, "inside": {"_count": 1}}, "slips": {"_count": 1, "he": {"_count": 1}}, "sleeve": {"_count": 1, "of": {"_count": 1}}, "up": {"_count": 5, "to": {"_count": 4}, "level": {"_count": 1}}, "pinning": {"_count": 1, "Karkaroff": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "hesitated": {"_count": 1, "and": {"_count": 1}}, "side": {"_count": 1, "of": {"_count": 1}}, "under": {"_count": 2, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "holding": {"_count": 4, "the": {"_count": 2}, "tightly": {"_count": 1}, "Harry": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "bright": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 3, "face": {"_count": 1}, "right": {"_count": 1}, "wand": {"_count": 1}}, "without": {"_count": 2, "looking": {"_count": 1}, "invitation": {"_count": 1}}, "thrust": {"_count": 1, "it": {"_count": 1}}, "seized": {"_count": 2, "up": {"_count": 1}, "the": {"_count": 1}}, "would": {"_count": 2, "not": {"_count": 1}, "ever": {"_count": 1}}, "please": {"_count": 1, "listen": {"_count": 1}}, "of": {"_count": 4, "friendship": {"_count": 1}, "the": {"_count": 2}, "course": {"_count": 1}}, "briefly": {"_count": 1, "nodded": {"_count": 1}}, "nudged": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "gripped": {"_count": 1, "his": {"_count": 1}}, "nobody": {"_count": 1, "was": {"_count": 1}}, "slightly": {"_count": 2, "to": {"_count": 1}, "ruefully": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 1}, "like": {"_count": 1}}, "Its": {"_count": 1, "not": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "carefully": {"_count": 1, "in": {"_count": 1}}, "is": {"_count": 2, "not": {"_count": 2}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "successfully": {"_count": 1, "vanished": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "cut": {"_count": 1, "into": {"_count": 1}}, "healed": {"_count": 1, "and": {"_count": 1}}, "became": {"_count": 1, "irritated": {"_count": 1}}, "herself": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "opened": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "did": {"_count": 1}}, "throbbed": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 3, "loathed": {"_count": 1}, "stiffened": {"_count": 1}, "were": {"_count": 1}}, "sliced": {"_count": 1, "open": {"_count": 1}}, "covered": {"_count": 2, "in": {"_count": 2}}, "hit": {"_count": 2, "the": {"_count": 2}}, "yet": {"_count": 1, "Anthony": {"_count": 1}}, "They": {"_count": 1, "argued": {"_count": 1}}, "hopelessly": {"_count": 1, "Harry": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "others": {"_count": 1, "like": {"_count": 1}}, "must": {"_count": 1, "even": {"_count": 1}}, "who": {"_count": 1, "ripped": {"_count": 1}}, "stuck": {"_count": 1, "in": {"_count": 1}}, "regally": {"_count": 1, "to": {"_count": 1}}, "stretched": {"_count": 2, "out": {"_count": 1}, "in": {"_count": 1}}, "groped": {"_count": 1, "for": {"_count": 1}}, "than": {"_count": 1, "to": {"_count": 1}}, "forward": {"_count": 1, "Cho": {"_count": 1}}, "sang": {"_count": 1, "Weasley": {"_count": 1}}, "why": {"_count": 1, "not": {"_count": 1}}, "toward": {"_count": 6, "the": {"_count": 2}, "him": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "Honeydukes": {"_count": 1}}, "fell": {"_count": 1, "limply": {"_count": 1}}, "drift": {"_count": 1, "almost": {"_count": 1}}, "grabbed": {"_count": 1, "the": {"_count": 1}}, "gestures": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 5, "an": {"_count": 1}, "it": {"_count": 2}, "my": {"_count": 1}, "the": {"_count": 1}}, "jumped": {"_count": 2, "to": {"_count": 2}}, "trying": {"_count": 1, "to": {"_count": 1}}, "halfway": {"_count": 1, "toward": {"_count": 1}}, "you": {"_count": 1, "told": {"_count": 1}}, "pinching": {"_count": 1, "his": {"_count": 1}}, "kept": {"_count": 1, "putting": {"_count": 1}}, "grope": {"_count": 1, "inside": {"_count": 1}}, "tightly": {"_count": 1, "into": {"_count": 1}}, "gingerly": {"_count": 1, "up": {"_count": 1}}, "against": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "palm": {"_count": 1, "up": {"_count": 1}}, "caught": {"_count": 1, "him": {"_count": 1}}, "released": {"_count": 1, "him": {"_count": 1}}, "waited": {"_count": 1, "for": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "me": {"_count": 1, "the": {"_count": 1}}, "know": {"_count": 2, "exactly": {"_count": 1}, "its": {"_count": 1}}, "twitched": {"_count": 1, "within": {"_count": 1}}, "unconsciously": {"_count": 1, "to": {"_count": 1}}, "thought": {"_count": 1, "otherwise": {"_count": 1}}, "found": {"_count": 1, "his": {"_count": 1}}, "energetically": {"_count": 1, "": {"_count": 1}}, "gesture": {"_count": 4, "at": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "but": {"_count": 1}}, "aside": {"_count": 1, "": {"_count": 1}}, "punched": {"_count": 1, "the": {"_count": 1}}, "wand": {"_count": 1, "in": {"_count": 1}}, "where": {"_count": 1, "that": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "crushed": {"_count": 1, "by": {"_count": 1}}, "before": {"_count": 1, "turning": {"_count": 1}}, "knew": {"_count": 1, "at": {"_count": 1}}, "grasping": {"_count": 1, "a": {"_count": 1}}, "lay": {"_count": 1, "negligently": {"_count": 1}}, "flying": {"_count": 1, "to": {"_count": 1}}, "leaving": {"_count": 1, "a": {"_count": 1}}, "wearily": {"_count": 1, "through": {"_count": 1}}, "brushing": {"_count": 1, "it": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "wordlessly": {"_count": 1, "for": {"_count": 1}}, "Vanished": {"_count": 1, "parted": {"_count": 1}}, "fall": {"_count": 1, "the": {"_count": 1}}, "thing": {"_count": 1, "and": {"_count": 1}}, "refused": {"_count": 1, "pointblank": {"_count": 1}}, "elevated": {"_count": 1, "Harry": {"_count": 1}}, "raise": {"_count": 1, "its": {"_count": 1}}, "stood": {"_count": 1, "out": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "while": {"_count": 2, "she": {"_count": 1}, "with": {"_count": 1}}, "She": {"_count": 2, "looked": {"_count": 1}, "had": {"_count": 1}}, "grasped": {"_count": 1, "her": {"_count": 1}}, "forcing": {"_count": 1, "its": {"_count": 1}}, "brushed": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "Rita": {"_count": 1}}, "looking": {"_count": 1, "down": {"_count": 1}}, "cautiously": {"_count": 1, "on": {"_count": 1}}, "us": {"_count": 1, "the": {"_count": 1}}, "sewn": {"_count": 1, "to": {"_count": 1}}, "although": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "Ron": {"_count": 1, "grab": {"_count": 1}}, "Potter": {"_count": 1, "over": {"_count": 1}}, "actually": {"_count": 1, "closed": {"_count": 1}}, "groping": {"_count": 1, "in": {"_count": 1}}, "jerked": {"_count": 1, "in": {"_count": 1}}, "swooped": {"_count": 1, "and": {"_count": 1}}, "tremble": {"_count": 1, "": {"_count": 1}}, "toying": {"_count": 1, "with": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "dangled": {"_count": 1, "over": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "missed": {"_count": 1, "and": {"_count": 1}}, "raised": {"_count": 1, "Dracos": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "instinctively": {"_count": 1, "toward": {"_count": 1}}, "staring": {"_count": 1, "down": {"_count": 1}}, "absentmindedly": {"_count": 1, "and": {"_count": 1}}}, "closed": {"_count": 279, "on": {"_count": 3, "the": {"_count": 1}, "Cedrics": {"_count": 1}, "thin": {"_count": 1}}, "it": {"_count": 13, "quickly": {"_count": 1}, "again": {"_count": 6}, "several": {"_count": 1}, "behind": {"_count": 1}, "": {"_count": 1}, "glared": {"_count": 1}, "without": {"_count": 2}}, "his": {"_count": 51, "eyes": {"_count": 43}, "mouth": {"_count": 2}, "classroom": {"_count": 1}, "fingers": {"_count": 1}, "breathing": {"_count": 1}, "fist": {"_count": 1}, "mind": {"_count": 2}}, "": {"_count": 19, ".": {"_count": 18}, "!": {"_count": 1}}, "the": {"_count": 66, "door": {"_count": 43}, "greenhouse": {"_count": 1}, "lid": {"_count": 1}, "fire": {"_count": 1}, "desk": {"_count": 1}, "circular": {"_count": 1}, "casket": {"_count": 1}, "dungeon": {"_count": 2}, "egg": {"_count": 1}, "trunk": {"_count": 1}, "front": {"_count": 2}, "drawing": {"_count": 1}, "lift": {"_count": 1}, "magazine": {"_count": 1}, "window": {"_count": 1}, "doorway": {"_count": 1}, "book": {"_count": 2}, "cupboard": {"_count": 1}, "study": {"_count": 1}, "HalfBlood": {"_count": 1}, "office": {"_count": 1}}, "while": {"_count": 1, "youre": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 4}}, "leaving": {"_count": 1, "a": {"_count": 1}}, "Mr": {"_count": 1, "Borgin": {"_count": 1}}, "behind": {"_count": 21, "her": {"_count": 5}, "them": {"_count": 9}, "Dumbledore": {"_count": 1}, "him": {"_count": 3}, "Harry": {"_count": 2}, "Ron": {"_count": 1}}, "Voyages": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 2, "could": {"_count": 2}}, "door": {"_count": 3, "": {"_count": 3}}, "Hogwarts": {"_count": 1, "said": {"_count": 1}}, "unless": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 7, "all": {"_count": 1}, "around": {"_count": 1}, "Fred": {"_count": 1}, "so": {"_count": 1}, "midair": {"_count": 1}, "and": {"_count": 1}, "beside": {"_count": 1}}, "so": {"_count": 1, "she": {"_count": 1}}, "and": {"_count": 12, "locked": {"_count": 1}, "the": {"_count": 4}, "just": {"_count": 1}, "an": {"_count": 1}, "that": {"_count": 1}, "her": {"_count": 1}, "waving": {"_count": 1}, "as": {"_count": 1}, "puffy": {"_count": 1}}, "their": {"_count": 1, "bags": {"_count": 1}}, "its": {"_count": 2, "eyes": {"_count": 2}}, "all": {"_count": 1, "doors": {"_count": 1}}, "that": {"_count": 1, "Snape": {"_count": 1}}, "expression": {"_count": 1, "appeared": {"_count": 1}}, "her": {"_count": 9, "fingers": {"_count": 1}, "eyes": {"_count": 7}, "hand": {"_count": 1}}, "ranks": {"_count": 2, "forcing": {"_count": 1}, "forming": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "my": {"_count": 2, "eyes": {"_count": 2}}, "properly": {"_count": 1, "": {"_count": 1}}, "eyelids": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "tightly": {"_count": 4, "around": {"_count": 3}, "on": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "over": {"_count": 3, "their": {"_count": 2}, "Harrys": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "around": {"_count": 8, "him": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 3}, "Harrys": {"_count": 1}}, "automatically": {"_count": 2, "behind": {"_count": 1}, "around": {"_count": 1}}, "ward": {"_count": 2, "you": {"_count": 1}, "in": {"_count": 1}}, "tight": {"_count": 3, "over": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "again": {"_count": 1}}, "sign": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "convulsively": {"_count": 1, "in": {"_count": 1}}, "concentrating": {"_count": 1, "as": {"_count": 1}}, "suddenly": {"_count": 1, "around": {"_count": 1}}, "upon": {"_count": 2, "the": {"_count": 1}, "Bellatrixs": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "for": {"_count": 1}}, "briefly": {"_count": 1, "on": {"_count": 1}}, "shops": {"_count": 1, "stars": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 1, "slipped": {"_count": 1}}, "then": {"_count": 1, "they": {"_count": 1}}, "shutting": {"_count": 1, "out": {"_count": 1}}, "down": {"_count": 1, "": {"_count": 1}}, "lids": {"_count": 1, "the": {"_count": 1}}}, "beside": {"_count": 353, "him": {"_count": 70, "and": {"_count": 8}, "": {"_count": 31}, "clutching": {"_count": 1}, "panting": {"_count": 1}, "scrambled": {"_count": 1}, "Harry": {"_count": 2}, "waiting": {"_count": 1}, "the": {"_count": 2}, "staring": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 1}, "gave": {"_count": 1}, "both": {"_count": 1}, "her": {"_count": 1}, "we": {"_count": 1}, "white": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 1}, "giving": {"_count": 1}, "looked": {"_count": 1}, "confirmed": {"_count": 1}, "two": {"_count": 1}, "with": {"_count": 1}, "saying": {"_count": 1}, "clanking": {"_count": 1}, "Goyle": {"_count": 1}, "obviously": {"_count": 1}, "as": {"_count": 1}, "slightly": {"_count": 1}, "under": {"_count": 1}, "through": {"_count": 1}}, "its": {"_count": 2, "burnished": {"_count": 1}, "unconscious": {"_count": 1}}, "a": {"_count": 13, "small": {"_count": 1}, "large": {"_count": 2}, "towering": {"_count": 1}, "bowl": {"_count": 1}, "neat": {"_count": 1}, "mountain": {"_count": 1}, "glassfronted": {"_count": 1}, "steaming": {"_count": 1}, "tenfoothigh": {"_count": 1}, "number": {"_count": 1}, "young": {"_count": 1}, "door": {"_count": 1}}, "themselves": {"_count": 2, "they": {"_count": 1}, "with": {"_count": 1}}, "herself": {"_count": 4, "with": {"_count": 1}, "": {"_count": 3}}, "the": {"_count": 106, "curtained": {"_count": 1}, "heap": {"_count": 1}, "wardrobe": {"_count": 1}, "window": {"_count": 7}, "coffee": {"_count": 1}, "Fat": {"_count": 1}, "common": {"_count": 1}, "parthuman": {"_count": 1}, "judges": {"_count": 1}, "loaf": {"_count": 1}, "chair": {"_count": 1}, "door": {"_count": 9}, "cauldron": {"_count": 1}, "sleeping": {"_count": 1}, "cup": {"_count": 1}, "topof": {"_count": 1}, "intray": {"_count": 1}, "lifts": {"_count": 1}, "barrier": {"_count": 1}, "others": {"_count": 1}, "straightbacked": {"_count": 1}, "now": {"_count": 1}, "fireplace": {"_count": 1}, "table": {"_count": 1}, "fire": {"_count": 5}, "doorway": {"_count": 1}, "victim": {"_count": 1}, "desk": {"_count": 2}, "tiny": {"_count": 1}, "dark": {"_count": 1}, "doors": {"_count": 1}, "wastepaper": {"_count": 1}, "wall": {"_count": 1}, "Pensieve": {"_count": 2}, "Great": {"_count": 1}, "open": {"_count": 3}, "glittering": {"_count": 1}, "pool": {"_count": 1}, "fallen": {"_count": 1}, "newly": {"_count": 1}, "Muggle": {"_count": 1}, "oak": {"_count": 1}, "man": {"_count": 1}, "smoking": {"_count": 1}, "point": {"_count": 1}, "house": {"_count": 1}, "two": {"_count": 1}, "wreckage": {"_count": 1}, "kitchen": {"_count": 1}, "prison": {"_count": 1}, "portrait": {"_count": 1}, "tapestry": {"_count": 1}, "oaken": {"_count": 1}, "lake": {"_count": 2}, "trunk": {"_count": 1}, "motorbike": {"_count": 1}, "speedometer": {"_count": 1}, "cooker": {"_count": 1}, "elf": {"_count": 3}, "sea": {"_count": 1}, "decapitated": {"_count": 1}, "theater": {"_count": 1}, "statue": {"_count": 1}, "fireplaces": {"_count": 1}, "sinks": {"_count": 1}, "pouch": {"_count": 1}, "case": {"_count": 1}, "old": {"_count": 1}, "bed": {"_count": 2}, "little": {"_count": 1}, "water": {"_count": 1}, "grave": {"_count": 1}, "dressing": {"_count": 1}, "goblin": {"_count": 1}, "headstone": {"_count": 1}, "hole": {"_count": 1}, "swings": {"_count": 1}, "dead": {"_count": 1}, "injured": {"_count": 1}, "place": {"_count": 1}}, "each": {"_count": 2, "bed": {"_count": 1}, "witch": {"_count": 1}}, "them": {"_count": 23, "": {"_count": 9}, "in": {"_count": 1}, "all": {"_count": 1}, "making": {"_count": 1}, "scuttled": {"_count": 1}, "clenchjawed": {"_count": 1}, "holding": {"_count": 1}, "which": {"_count": 1}, "fell": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 2}, "their": {"_count": 1}, "his": {"_count": 1}}, "Ron": {"_count": 6, "his": {"_count": 1}, "and": {"_count": 3}, "fuming": {"_count": 1}, "half": {"_count": 1}}, "himself": {"_count": 7, "with": {"_count": 3}, "": {"_count": 2}, "kicking": {"_count": 1}, "at": {"_count": 1}}, "their": {"_count": 2, "table": {"_count": 1}, "beds": {"_count": 1}}, "theirs": {"_count": 1, "then": {"_count": 1}}, "his": {"_count": 15, "bed": {"_count": 5}, "chair": {"_count": 3}, "cousin": {"_count": 1}, "bedroom": {"_count": 2}, "snowy": {"_count": 1}, "camp": {"_count": 1}, "fathers": {"_count": 1}, "plate": {"_count": 1}}, "Dudley": {"_count": 2, "seized": {"_count": 1}, "her": {"_count": 1}}, "Bill": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 17, "": {"_count": 4}, "and": {"_count": 1}, "arms": {"_count": 1}, "producing": {"_count": 1}, "coffee": {"_count": 1}, "one": {"_count": 2}, "on": {"_count": 1}, "as": {"_count": 1}, "sister": {"_count": 1}, "glancing": {"_count": 1}, "finally": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}}, "Professor": {"_count": 3, "Sprout": {"_count": 1}, "GrubblyPlank": {"_count": 1}, "Marchbanks": {"_count": 1}}, "Harry": {"_count": 20, "I": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 7}, "let": {"_count": 1}, "as": {"_count": 2}, "with": {"_count": 1}, "though": {"_count": 1}, "just": {"_count": 1}, "Potter": {"_count": 1}, "who": {"_count": 1}}, "George": {"_count": 2, "": {"_count": 2}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Filch": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "Miss": {"_count": 1, "Parkinson": {"_count": 1}}, "Dumbledore": {"_count": 5, "": {"_count": 1}, "and": {"_count": 2}, "raised": {"_count": 1}, "had": {"_count": 1}}, "Dumbledores": {"_count": 2, "desk": {"_count": 1}, "body": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "Crouch": {"_count": 2, "began": {"_count": 2}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "it": {"_count": 9, "listening": {"_count": 1}, "in": {"_count": 1}, "read": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "for": {"_count": 1}}, "me": {"_count": 1, "Dedalus": {"_count": 1}}, "an": {"_count": 1, "empty": {"_count": 1}}, "which": {"_count": 1, "she": {"_count": 1}}, "Hermione": {"_count": 3, "": {"_count": 1}, "s": {"_count": 1}, "as": {"_count": 1}}, "Sirius": {"_count": 1, "facing": {"_count": 1}}, "Marietta": {"_count": 1, "his": {"_count": 1}}, "Nevilles": {"_count": 1, "bed": {"_count": 1}}, "Hagrids": {"_count": 2, "cabin": {"_count": 2}}, "Fawkess": {"_count": 1, "perch": {"_count": 1}}, "Harrys": {"_count": 1, "trunk": {"_count": 1}}, "Slughorn": {"_count": 1, "and": {"_count": 1}}, "Riddle": {"_count": 1, "so": {"_count": 1}}, "Ginny": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "Luna": {"_count": 2, "": {"_count": 2}}, "Malfoy": {"_count": 1, "who": {"_count": 1}}, "Bills": {"_count": 1, "bed": {"_count": 1}}, "Dolohov": {"_count": 1, "": {"_count": 1}}, "Fleur": {"_count": 1, "who": {"_count": 1}}, "you": {"_count": 1, "I": {"_count": 1}}, "Mundungus": {"_count": 1, "who": {"_count": 1}}, "number": {"_count": 1, "thirteen": {"_count": 1}}, "Michael": {"_count": 1, "Corner": {"_count": 1}}, "Alecto": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 1, "empty": {"_count": 1}}, "Goyle": {"_count": 1, "who": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}}, "slept": {"_count": 29, "on": {"_count": 3, "not": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 2, "one": {"_count": 1}, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 4, "night": {"_count": 3}, "he": {"_count": 1}}, "badly": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "there": {"_count": 1, "last": {"_count": 1}}, "looked": {"_count": 1, "much": {"_count": 1}}, "even": {"_count": 1, "Hermione": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "as": {"_count": 1, "Snape": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "by": {"_count": 1, "night": {"_count": 1}}, "he": {"_count": 1, "staggered": {"_count": 1}}}, "knowing": {"_count": 79, "he": {"_count": 4, "was": {"_count": 2}, "would": {"_count": 2}}, "Bring": {"_count": 1, "back": {"_count": 1}}, "about": {"_count": 3, "Switching": {"_count": 1}, "it": {"_count": 2}}, "youve": {"_count": 1, "got": {"_count": 1}}, "what": {"_count": 14, "he": {"_count": 6}, "Flamel": {"_count": 1}, "to": {"_count": 2}, "youre": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "had": {"_count": 1}, "or": {"_count": 1}}, "if": {"_count": 1, "what": {"_count": 1}}, "this": {"_count": 1, "sort": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "how": {"_count": 10, "Riddle": {"_count": 1}, "strange": {"_count": 1}, "sir": {"_count": 1}, "": {"_count": 3}, "much": {"_count": 1}, "important": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "whether": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "that": {"_count": 13, "Black": {"_count": 1}, "he": {"_count": 4}, "you": {"_count": 1}, "they": {"_count": 2}, "Percy": {"_count": 1}, "this": {"_count": 2}, "it": {"_count": 1}, "three": {"_count": 1}}, "who": {"_count": 1, "I": {"_count": 1}}, "as": {"_count": 1, "how": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "perfectly": {"_count": 1, "well": {"_count": 1}}, "my": {"_count": 1, "mother": {"_count": 1}}, "shes": {"_count": 1, "got": {"_count": 1}}, "exactly": {"_count": 1, "why": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "which": {"_count": 3, "door": {"_count": 1}, "boy": {"_count": 1}, "safe": {"_count": 1}}, "the": {"_count": 1, "truth": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "loathing": {"_count": 1}, "Her": {"_count": 1}}, "by": {"_count": 1, "then": {"_count": 1}}, "whats": {"_count": 1, "there": {"_count": 1}}, "look": {"_count": 1, "in": {"_count": 1}}, "ze": {"_count": 1, "date": {"_count": 1}}, "whom": {"_count": 1, "to": {"_count": 1}}, "deep": {"_count": 1, "inside": {"_count": 1}}, "or": {"_count": 1, "caring": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "Tonks": {"_count": 1, "looked": {"_count": 1}}}, "special": {"_count": 45, "not": {"_count": 1, "knowing": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "circumstances": {"_count": 3, "said": {"_count": 1}, "Potter": {"_count": 1}, "Im": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "new": {"_count": 1, "quills": {"_count": 1}}, "gift": {"_count": 1, "with": {"_count": 1}}, "features": {"_count": 2, "that": {"_count": 1}, "hasnt": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "services": {"_count": 3, "to": {"_count": 3}}, "award": {"_count": 2, "for": {"_count": 1}, "accompanied": {"_count": 1}}, "arrangements": {"_count": 1, "might": {"_count": 1}}, "about": {"_count": 4, "you": {"_count": 1}, "this": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}}, "hot": {"_count": 1, "line": {"_count": 1}}, "treatment": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "ward": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 1, "what": {"_count": 1}}, "favorite": {"_count": 1, "firs": {"_count": 1}}, "important": {"_count": 1, "": {"_count": 1}}, "nor": {"_count": 1, "important": {"_count": 1}}, "case": {"_count": 1, "": {"_count": 1}}, "bathroom": {"_count": 1, "now": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "WonderWitch": {"_count": 1, "products": {"_count": 1}}, "abilities": {"_count": 1, "Im": {"_count": 1}}, "today": {"_count": 1, "doesnt": {"_count": 1}}, "connection": {"_count": 1, "or": {"_count": 1}}, "it": {"_count": 1, "meant": {"_count": 1}}, "going": {"_count": 1, "for": {"_count": 1}}, "orders": {"_count": 1, "regarding": {"_count": 1}}, "school": {"_count": 1, "for": {"_count": 1}}}, "woken": {"_count": 22, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "up": {"_count": 6, "to": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "an": {"_count": 1}, "as": {"_count": 1}}, "me": {"_count": 1, "up": {"_count": 1}}, "by": {"_count": 2, "his": {"_count": 1}, "Ron": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 2}}, "very": {"_count": 1, "early": {"_count": 1}}, "people": {"_count": 1, "up": {"_count": 1}}, "several": {"_count": 1, "people": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "swung": {"_count": 1}}, "he": {"_count": 2, "seemed": {"_count": 1}, "could": {"_count": 1}}, "Ravenclaws": {"_count": 1, "sleeping": {"_count": 1}}}, "hours": {"_count": 168, "time": {"_count": 6, "by": {"_count": 1}, "hed": {"_count": 1}, "": {"_count": 1}, "if": {"_count": 1}, "youll": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 7, "his": {"_count": 1}, "which": {"_count": 3}, "the": {"_count": 2}, "secluded": {"_count": 1}}, "later": {"_count": 11, "but": {"_count": 1}, "Harrys": {"_count": 1}, "however": {"_count": 1}, "still": {"_count": 2}, "Harry": {"_count": 1}, "": {"_count": 4}, "feeling": {"_count": 1}}, "they": {"_count": 3, "reached": {"_count": 1}, "were": {"_count": 1}, "returned": {"_count": 1}}, "I": {"_count": 3, "couldnt": {"_count": 1}, "ensured": {"_count": 1}, "expect": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 21}, "!": {"_count": 2}, "?": {"_count": 4}}, "of": {"_count": 13, "the": {"_count": 3}, "Saturday": {"_count": 1}, "yesterday": {"_count": 1}, "Scrimgeour": {"_count": 1}, "darkness": {"_count": 1}, "this": {"_count": 1}, "blissful": {"_count": 1}, "practicing": {"_count": 1}, "Scrimgeours": {"_count": 1}, "solitude": {"_count": 1}, "increased": {"_count": 1}}, "and": {"_count": 14, "as": {"_count": 1}, "now": {"_count": 1}, "returned": {"_count": 1}, "hours": {"_count": 3}, "arm": {"_count": 1}, "then": {"_count": 1}, "still": {"_count": 1}, "you": {"_count": 2}, "sounding": {"_count": 1}, "that": {"_count": 1}, "days": {"_count": 1}}, "earlier": {"_count": 1, "than": {"_count": 1}}, "afterward": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "night": {"_count": 1}, "Rubeus": {"_count": 1}}, "the": {"_count": 2, "Mandrake": {"_count": 1}, "words": {"_count": 1}}, "go": {"_count": 1, "to": {"_count": 1}}, "ago": {"_count": 12, "": {"_count": 5}, "that": {"_count": 2}, "and": {"_count": 2}, "Cho": {"_count": 1}, "Ive": {"_count": 1}, "he": {"_count": 1}}, "he": {"_count": 5, "spent": {"_count": 2}, "would": {"_count": 1}, "had": {"_count": 1}, "thought": {"_count": 1}}, "until": {"_count": 3, "dawn": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "before": {"_count": 3, "the": {"_count": 1}, "but": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "quiet": {"_count": 1, "crystal": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "again": {"_count": 1}}, "sleep": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}}, "for": {"_count": 3, "tonight": {"_count": 1}, "the": {"_count": 2}}, "to": {"_count": 2, "find": {"_count": 1}, "come": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "mulling": {"_count": 1, "it": {"_count": 1}}, "early": {"_count": 1, "so": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}, "droning": {"_count": 1, "on": {"_count": 1}}, "yeh": {"_count": 1, "wouldn": {"_count": 1}}, "at": {"_count": 8, "a": {"_count": 6}, "the": {"_count": 1}, "most": {"_count": 1}}, "after": {"_count": 3, "she": {"_count": 1}, "Siriuss": {"_count": 1}, "the": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "was": {"_count": 1}}, "dyou": {"_count": 1, "think": {"_count": 1}}, "Hermione": {"_count": 1, "let": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "just": {"_count": 1, "two": {"_count": 1}}, "staring": {"_count": 1, "out": {"_count": 1}}, "luck": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 1, "complaints": {"_count": 1}}, "wondering": {"_count": 1, "how": {"_count": 1}}, "worth": {"_count": 1, "it": {"_count": 1}}, "should": {"_count": 1, "do": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "previously": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "going": {"_count": 1, "over": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 1, "so": {"_count": 1}}, "break": {"_count": 1, "from": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "at": {"_count": 1}}, "Did": {"_count": 1, "you": {"_count": 1}}, "yearning": {"_count": 1, "to": {"_count": 1}}}, "scream": {"_count": 94, "as": {"_count": 2, "she": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 11, "it": {"_count": 1}, "bolted": {"_count": 1}, "clapped": {"_count": 1}, "his": {"_count": 1}, "next": {"_count": 1}, "ducked": {"_count": 1}, "pushed": {"_count": 1}, "threw": {"_count": 1}, "collapsed": {"_count": 1}, "a": {"_count": 2}}, "said": {"_count": 1, "Lockhart": {"_count": 1}}, "of": {"_count": 18, "terror": {"_count": 2}, "rage": {"_count": 2}, "fury": {"_count": 4}, "mirth": {"_count": 1}, "delight": {"_count": 1}, "pain": {"_count": 3}, "laughter": {"_count": 1}, "despair": {"_count": 1}, "horror": {"_count": 1}, "unendurable": {"_count": 1}, "fear": {"_count": 1}}, "unheard": {"_count": 1, "by": {"_count": 1}}, "but": {"_count": 2, "his": {"_count": 1}, "knew": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 23}}, "that": {"_count": 5, "alerted": {"_count": 1}, "pierced": {"_count": 1}, "went": {"_count": 1}, "mingled": {"_count": 1}, "sounded": {"_count": 1}}, "shattered": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "louder": {"_count": 1}}, "Neville": {"_count": 1, "slipped": {"_count": 1}}, "at": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "Flitwicks": {"_count": 1}}, "ran": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "MURDER": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "more": {"_count": 1}}, "Mine": {"_count": 1, "It": {"_count": 1}}, "Your": {"_count": 1, "wand": {"_count": 1}}, "a": {"_count": 1, "scream": {"_count": 1}}, "mingled": {"_count": 1, "with": {"_count": 1}}, "Mudbloods": {"_count": 1, "and": {"_count": 1}}, "reverberating": {"_count": 1, "through": {"_count": 1}}, "was": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 1, "pain": {"_count": 1}}, "Rons": {"_count": 1, "yell": {"_count": 1}}, "from": {"_count": 4, "below": {"_count": 1}, "directly": {"_count": 1}, "overhead": {"_count": 1}, "amidst": {"_count": 1}}, "HERMIONE": {"_count": 1, "": {"_count": 1}}, "drowned": {"_count": 1, "Harrys": {"_count": 1}}, "yet": {"_count": 1, "made": {"_count": 1}}, "stopped": {"_count": 1, "still": {"_count": 1}}, "CHARGE": {"_count": 1, "": {"_count": 1}}}, "milk": {"_count": 19, "bottles": {"_count": 1, "nor": {"_count": 1}}, "jug": {"_count": 7, "": {"_count": 1}, "slipped": {"_count": 1}, "let": {"_count": 1}, "over": {"_count": 1}, "Hermione": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}}, "and": {"_count": 1, "feathers": {"_count": 1}}, "it": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "bottle": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 1, "before": {"_count": 1}}, "Nagini": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 1, "turn": {"_count": 1}}, "cart": {"_count": 1, "": {"_count": 1}}}, "bottles": {"_count": 53, "nor": {"_count": 1, "that": {"_count": 1}}, "globes": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 9, "chicken": {"_count": 1}, "sprayed": {"_count": 1}, "went": {"_count": 1}, "a": {"_count": 1}, "rolls": {"_count": 1}, "broken": {"_count": 1}, "they": {"_count": 1}, "dumped": {"_count": 1}, "she": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "three": {"_count": 1, "are": {"_count": 1}}, "muttering": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 12, "pumpkin": {"_count": 2}, "wine": {"_count": 2}, "butterbeer": {"_count": 3}, "ink": {"_count": 1}, "black": {"_count": 1}, "congealed": {"_count": 1}, "champagne": {"_count": 1}, "juice": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 2, "Professor": {"_count": 1}, "Slughorn": {"_count": 1}}, "a": {"_count": 1, "day": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "came": {"_count": 1, "flying": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "their": {"_count": 1}, "the": {"_count": 1}, "guard": {"_count": 1}}, "stood": {"_count": 1, "Draco": {"_count": 1}}, "they": {"_count": 1, "showed": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "gleaming": {"_count": 1, "beside": {"_count": 1}}, "so": {"_count": 1, "we": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "whose": {"_count": 1, "contents": {"_count": 1}}, "lying": {"_count": 1, "beside": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "hats": {"_count": 1, "crates": {"_count": 1}}}, "spend": {"_count": 33, "the": {"_count": 14, "next": {"_count": 1}, "whole": {"_count": 4}, "last": {"_count": 1}, "night": {"_count": 1}, "rest": {"_count": 2}, "day": {"_count": 1}, "holidays": {"_count": 1}, "holiday": {"_count": 1}, "intervening": {"_count": 1}, "remainder": {"_count": 1}}, "free": {"_count": 1, "time": {"_count": 1}}, "a": {"_count": 2, "lot": {"_count": 1}, "little": {"_count": 1}}, "much": {"_count": 1, "time": {"_count": 1}}, "tonight": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 2, "much": {"_count": 1}, "night": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "twelve": {"_count": 1, "years": {"_count": 1}}, "half": {"_count": 1, "my": {"_count": 1}}, "six": {"_count": 1, "months": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "Christmas": {"_count": 2, "at": {"_count": 1}, "alone": {"_count": 1}}, "it": {"_count": 2, "trying": {"_count": 1}, "alone": {"_count": 1}}, "another": {"_count": 1, "three": {"_count": 1}}, "time": {"_count": 1, "with": {"_count": 1}}}, "weeks": {"_count": 128, "being": {"_count": 1, "prodded": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 25}, "!": {"_count": 1}, "?": {"_count": 1}}, "of": {"_count": 4, "training": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "after": {"_count": 7, "all": {"_count": 1}, "Dumbledore": {"_count": 2}, "this": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "ago": {"_count": 15, "for": {"_count": 1}, "": {"_count": 6}, "Dyou": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "when": {"_count": 1}, "It": {"_count": 1}, "words": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}}, "that": {"_count": 1, "followed": {"_count": 1}}, "Hermione": {"_count": 1, "snapped": {"_count": 1}}, "and": {"_count": 7, "Norberts": {"_count": 1}, "this": {"_count": 1}, "weeks": {"_count": 4}, "you": {"_count": 1}}, "back": {"_count": 2, "Harry": {"_count": 1}, "Fred": {"_count": 1}}, "later": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "what": {"_count": 1, "would": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 3, "Percy": {"_count": 1}, "nothing": {"_count": 1}, "you": {"_count": 1}}, "said": {"_count": 4, "Professor": {"_count": 1}, "Percy": {"_count": 1}, "Harry": {"_count": 1}, "Seamus": {"_count": 1}}, "my": {"_count": 1, "lady": {"_count": 1}}, "passwords": {"_count": 1, "and": {"_count": 1}}, "earlier": {"_count": 1, "than": {"_count": 1}}, "beforehand": {"_count": 1, "": {"_count": 1}}, "worth": {"_count": 5, "of": {"_count": 5}}, "had": {"_count": 1, "never": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 2, "work": {"_count": 2}}, "now": {"_count": 2, "": {"_count": 2}}, "completely": {"_count": 1, "cut": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "Fudge": {"_count": 1, "has": {"_count": 1}}, "essay": {"_count": 1, "on": {"_count": 1}}, "detentions": {"_count": 1, "would": {"_count": 1}}, "teaching": {"_count": 1, "work": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "glowing": {"_count": 1}}, "till": {"_count": 1, "full": {"_count": 1}}, "prior": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "dunno": {"_count": 1}}, "left": {"_count": 1, "until": {"_count": 1}}, "time": {"_count": 1, "waiting": {"_count": 1}}, "persisted": {"_count": 1, "here": {"_count": 1}}, "Potions": {"_count": 1, "lessons": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "the": {"_count": 1, "improved": {"_count": 1}}, "match": {"_count": 1, "": {"_count": 1}}, "previously": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "packing": {"_count": 1, "and": {"_count": 1}}, "there": {"_count": 1, "occurred": {"_count": 1}}, "taking": {"_count": 1, "it": {"_count": 1}}, "seemed": {"_count": 1, "laughably": {"_count": 1}}, "months": {"_count": 1, "maybe": {"_count": 1}}, "Harry": {"_count": 3, "began": {"_count": 1}, "was": {"_count": 2}}, "wed": {"_count": 1, "have": {"_count": 1}}, "why": {"_count": 1, "should": {"_count": 1}}, "oh": {"_count": 1, "wheres": {"_count": 1}}, "weeks": {"_count": 1, "and": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}, "crept": {"_count": 1, "on": {"_count": 1}}}, "prodded": {"_count": 13, "and": {"_count": 1, "pinched": {"_count": 1}}, "it": {"_count": 2, "with": {"_count": 1}, "up": {"_count": 1}}, "Ron": {"_count": 2, "in": {"_count": 2}}, "her": {"_count": 2, "awake": {"_count": 1}, "backside": {"_count": 1}}, "the": {"_count": 3, "knot": {"_count": 1}, "thoughts": {"_count": 1}, "silvery": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "moodily": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "pinched": {"_count": 3, "by": {"_count": 1, "his": {"_count": 1}}, "slightly": {"_count": 1, "unhealthy": {"_count": 1}}, "gray": {"_count": 1, "face": {"_count": 1}}}, "cousin": {"_count": 42, "Dudley": {"_count": 5, "": {"_count": 2}, "at": {"_count": 1}, "give": {"_count": 1}, "Dursley": {"_count": 1}}, "whos": {"_count": 1, "an": {"_count": 1}}, "are": {"_count": 1, "though": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "anymore": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 5}, "?": {"_count": 2}, "!": {"_count": 4}}, "the": {"_count": 1, "only": {"_count": 1}}, "an": {"_count": 1, "impatient": {"_count": 1}}, "of": {"_count": 1, "my": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "once": {"_count": 1, "removed": {"_count": 1}}, "felt": {"_count": 1, "them": {"_count": 1}}, "a": {"_count": 1, "week": {"_count": 1}}, "and": {"_count": 1, "me": {"_count": 1}}, "Bellatrix": {"_count": 2, "Lestrange": {"_count": 2}}, "tried": {"_count": 1, "to": {"_count": 1}}, "Narcissa": {"_count": 1, "sister": {"_count": 1}}, "Fergus": {"_count": 1, "does": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "one": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "Barny": {"_count": 1, "": {"_count": 1}}, "jumped": {"_count": 1, "off": {"_count": 1}}, "Lancelot": {"_count": 1, "was": {"_count": 1}}, "Hermione": {"_count": 1, "covered": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}}, "meeting": {"_count": 108, "in": {"_count": 6, "secret": {"_count": 1}, "Diagon": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 3}}, "you": {"_count": 5, "at": {"_count": 1}, "here": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "threeheaded": {"_count": 1}}, "strangers": {"_count": 1, "upsets": {"_count": 1}}, "tonight": {"_count": 4, "": {"_count": 3}, "the": {"_count": 1}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 10}, "?": {"_count": 3}}, "her": {"_count": 2, "all": {"_count": 1}, "eye": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "one": {"_count": 1, "Thursday": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 2, "student": {"_count": 1}, "round": {"_count": 1}}, "him": {"_count": 3, "off": {"_count": 1}, "at": {"_count": 1}, "until": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 14, "Sirius": {"_count": 1}, "their": {"_count": 2}, "the": {"_count": 1}, "Cho": {"_count": 1}, "Harry": {"_count": 2}, "these": {"_count": 1}, "Snape": {"_count": 1}, "Fudge": {"_count": 1}, "you": {"_count": 2}, "him": {"_count": 1}, "Voldemort": {"_count": 1}}, "partners": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 5, "put": {"_count": 1}, "a": {"_count": 1}, "if": {"_count": 1}, "what": {"_count": 1}, "Harry": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "Ill": {"_count": 1, "just": {"_count": 1}}, "theyre": {"_count": 1, "having": {"_count": 1}}, "them": {"_count": 2, "at": {"_count": 1}, "again": {"_count": 1}}, "Harrys": {"_count": 1, "eyes": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 3, "funny": {"_count": 1}, "supposed": {"_count": 1}, "not": {"_count": 1}}, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "less": {"_count": 1, "than": {"_count": 1}}, "is": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "of": {"_count": 1, "three": {"_count": 1}}, "places": {"_count": 1, "more": {"_count": 1}}, "to": {"_count": 1, "all": {"_count": 1}}, "hell": {"_count": 1, "change": {"_count": 1}}, "before": {"_count": 3, "the": {"_count": 2}, "Christmas": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "Hermione": {"_count": 2, "Granger": {"_count": 2}}, "after": {"_count": 2, "Hermione": {"_count": 1}, "tonight": {"_count": 1}}, "by": {"_count": 1, "Dean": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "Miss": {"_count": 1, "Edgecombe": {"_count": 1}}, "redhanded": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "some": {"_count": 1, "kind": {"_count": 1}}, "your": {"_count": 1, "parents": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "Dumbledores": {"_count": 1, "eyes": {"_count": 1}}, "Cormac": {"_count": 1, "at": {"_count": 1}}, "proved": {"_count": 1, "that": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "Potters": {"_count": 1, "": {"_count": 1}}}, "hushed": {"_count": 33, "voices": {"_count": 3, "To": {"_count": 1}, "whenever": {"_count": 1}, "were": {"_count": 1}}, "voice": {"_count": 20, "dropping": {"_count": 1}, "because": {"_count": 1}, "": {"_count": 14}, "she": {"_count": 1}, "looking": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}}, "tones": {"_count": 1, "": {"_count": 1}}, "silence": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 2}}, "up": {"_count": 4, "though": {"_count": 2}, "": {"_count": 2}}, "and": {"_count": 2, "frightened": {"_count": 1}, "still": {"_count": 1}}}, "voices": {"_count": 120, "To": {"_count": 1, "Harry": {"_count": 1}}, "from": {"_count": 3, "a": {"_count": 1}, "overhead": {"_count": 1}, "inside": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 15}, "?": {"_count": 1}}, "as": {"_count": 4, "they": {"_count": 3}, "he": {"_count": 1}}, "maybe": {"_count": 1, "in": {"_count": 1}}, "downstairs": {"_count": 1, "falter": {"_count": 1}}, "so": {"_count": 2, "shrill": {"_count": 1}, "that": {"_count": 1}}, "no": {"_count": 2, "one": {"_count": 2}}, "and": {"_count": 6, "then": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 2}, "believe": {"_count": 1}, "footsteps": {"_count": 1}}, "coming": {"_count": 5, "from": {"_count": 4}, "nearer": {"_count": 1}}, "of": {"_count": 6, "teachers": {"_count": 1}, "Cornelius": {"_count": 1}, "James": {"_count": 1}, "Katie": {"_count": 1}, "the": {"_count": 2}}, "through": {"_count": 1, "the": {"_count": 1}}, "above": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "whenever": {"_count": 1, "they": {"_count": 1}}, "whispering": {"_count": 1, "but": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "called": {"_count": 1, "after": {"_count": 1}}, "nearby": {"_count": 1, "": {"_count": 1}}, "Weve": {"_count": 1, "won": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 3, "them": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "silence": {"_count": 1}}, "growing": {"_count": 1, "louder": {"_count": 1}}, "were": {"_count": 6, "saying": {"_count": 1}, "reverberating": {"_count": 1}, "definitely": {"_count": 1}, "giving": {"_count": 1}, "drifting": {"_count": 1}, "worse": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "Did": {"_count": 1, "you": {"_count": 1}}, "echoed": {"_count": 4, "so": {"_count": 1}, "loudly": {"_count": 1}, "behind": {"_count": 1}, "up": {"_count": 1}}, "they": {"_count": 1, "passed": {"_count": 1}}, "singing": {"_count": 1, "to": {"_count": 1}}, "sound": {"_count": 2, "We": {"_count": 1}, "": {"_count": 1}}, "could": {"_count": 1, "only": {"_count": 1}}, "like": {"_count": 1, "Hagrids": {"_count": 1}}, "arguing": {"_count": 1, "coming": {"_count": 1}}, "everywhere": {"_count": 1, "footsteps": {"_count": 1}}, "awoke": {"_count": 1, "me": {"_count": 1}}, "interrupted": {"_count": 1, "his": {"_count": 1}}, "died": {"_count": 1, "they": {"_count": 1}}, "had": {"_count": 1, "faded": {"_count": 1}}, "down": {"_count": 3, "and": {"_count": 1}, "in": {"_count": 1}, "girls": {"_count": 1}}, "that": {"_count": 1, "told": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 2, "as": {"_count": 1}, "they": {"_count": 1}}, "He": {"_count": 1, "wants": {"_count": 1}}, "outside": {"_count": 1, "grew": {"_count": 1}}, "screaming": {"_count": 1, "Malfoy": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "ceased": {"_count": 1, "abruptly": {"_count": 1}}, "vied": {"_count": 1, "with": {"_count": 1}}, "echoing": {"_count": 3, "from": {"_count": 1}, "through": {"_count": 1}, "strangely": {"_count": 1}}, "than": {"_count": 1, "there": {"_count": 1}}, "students": {"_count": 1, "heading": {"_count": 1}}, "wondering": {"_count": 1, "where": {"_count": 1}}, "Everyone": {"_count": 1, "had": {"_count": 1}}, "battered": {"_count": 1, "him": {"_count": 1}}, "panted": {"_count": 1, "Mrs": {"_count": 1}}, "became": {"_count": 1, "louder": {"_count": 1}}, "fading": {"_count": 1, "away": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "lifted": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 1, "an": {"_count": 1}}, "Time": {"_count": 1, "to": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "sounded": {"_count": 1, "unnaturally": {"_count": 1}}}, "To": {"_count": 137, "Harry": {"_count": 3, "Potter": {"_count": 1}, "from": {"_count": 1}, "it": {"_count": 1}}, "his": {"_count": 23, "surprise": {"_count": 4}, "horror": {"_count": 2}, "great": {"_count": 4}, "right": {"_count": 2}, "immense": {"_count": 1}, "slight": {"_count": 2}, "intense": {"_count": 1}, "left": {"_count": 1}, "relief": {"_count": 2}, "annoyance": {"_count": 1}, "astonishment": {"_count": 1}, "enormous": {"_count": 1}, "amazement": {"_count": 1}}, "achieve": {"_count": 1, "their": {"_count": 1}}, "make": {"_count": 4, "a": {"_count": 1}, "matters": {"_count": 1}, "Dudley": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 8, "waist": {"_count": 1}, "classs": {"_count": 1}, "Prime": {"_count": 3}, "left": {"_count": 1}, "place": {"_count": 1}, "Dark": {"_count": 1}}, "help": {"_count": 1, "you": {"_count": 1}}, "one": {"_count": 1, "as": {"_count": 1}}, "their": {"_count": 4, "great": {"_count": 1}, "fury": {"_count": 1}, "surprise": {"_count": 1}, "very": {"_count": 1}}, "nobodys": {"_count": 2, "surprise": {"_count": 2}}, "escape": {"_count": 2, "from": {"_count": 1}, "into": {"_count": 1}}, "Harrys": {"_count": 14, "surprise": {"_count": 3}, "astonishment": {"_count": 1}, "immense": {"_count": 1}, "displeasure": {"_count": 1}, "fury": {"_count": 1}, "consternation": {"_count": 1}, "very": {"_count": 1}, "great": {"_count": 1}, "dismay": {"_count": 1}, "horror": {"_count": 1}, "intense": {"_count": 1}, "left": {"_count": 1}}, "Miss": {"_count": 2, "Granger": {"_count": 1}, "Hermione": {"_count": 1}}, "have": {"_count": 2, "bought": {"_count": 1}, "so": {"_count": 1}}, "ask": {"_count": 1, "you": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "business": {"_count": 1, "Harry": {"_count": 1}}, "try": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "cap": {"_count": 4, "it": {"_count": 3}, "matters": {"_count": 1}}, "everyones": {"_count": 2, "delight": {"_count": 1}, "surprise": {"_count": 1}}, "give": {"_count": 4, "himself": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 1}, "Voldemort": {"_count": 1}}, "some": {"_count": 1, "people": {"_count": 1}}, "somebody": {"_count": 1, "who": {"_count": 1}}, "educate": {"_count": 1, "young": {"_count": 1}}, "ensure": {"_count": 1, "that": {"_count": 1}}, "see": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "kill": {"_count": 1, "me": {"_count": 1}}, "live": {"_count": 1, "up": {"_count": 1}}, "me": {"_count": 4, "Potter": {"_count": 2}, "said": {"_count": 1}, "I": {"_count": 1}}, "hold": {"_count": 1, "himself": {"_count": 1}}, "find": {"_count": 2, "out": {"_count": 2}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "our": {"_count": 2, "newcomers": {"_count": 1}, "old": {"_count": 1}}, "Ronald": {"_count": 1, "Weasley": {"_count": 1}}, "GrubblyPlank": {"_count": 1, "said": {"_count": 1}}, "reform": {"_count": 1, "the": {"_count": 1}}, "whom": {"_count": 1, "did": {"_count": 1}}, "send": {"_count": 1, "a": {"_count": 1}}, "postpone": {"_count": 1, "the": {"_count": 1}}, "disappointed": {"_count": 1, "moans": {"_count": 1}}, "drink": {"_count": 1, "Mr": {"_count": 1}}, "say": {"_count": 1, "it": {"_count": 1}}, "assist": {"_count": 1, "yes": {"_count": 1}}, "punish": {"_count": 1, "Lucius": {"_count": 1}}, "complete": {"_count": 1, "this": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "know": {"_count": 1, "what": {"_count": 1}}, "keep": {"_count": 1, "you": {"_count": 1}}, "general": {"_count": 1, "indignation": {"_count": 1}}, "cover": {"_count": 1, "her": {"_count": 1}}, "be": {"_count": 3, "frank": {"_count": 1}, "punished": {"_count": 1}, "polite": {"_count": 1}}, "friendship": {"_count": 1, "": {"_count": 1}}, "generosity": {"_count": 1, "": {"_count": 1}}, "ten": {"_count": 1, "Galleons": {"_count": 1}}, "what": {"_count": 3, "do": {"_count": 1}, "": {"_count": 1}, "use": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "Malfoys": {"_count": 1, "left": {"_count": 1}}, "add": {"_count": 1, "to": {"_count": 1}}, "Siriuss": {"_count": 1, "right": {"_count": 1}}, "hell": {"_count": 1, "with": {"_count": 1}}, "Teddy": {"_count": 1, "Remus": {"_count": 1}}, "a": {"_count": 1, "goblin": {"_count": 1}}, "tell": {"_count": 1, "Snape": {"_count": 1}}, "repel": {"_count": 1, "dementors": {"_count": 1}}, "murder": {"_count": 1, "at": {"_count": 1}}, "think": {"_count": 1, "that": {"_count": 1}}}, "lived": {"_count": 78, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 4}}, "in": {"_count": 17, "the": {"_count": 10}, "a": {"_count": 1}, "terror": {"_count": 1}, "Dumbledores": {"_count": 1}, "that": {"_count": 1}, "Godrics": {"_count": 2}, "Grimmauld": {"_count": 1}}, "two": {"_count": 1, "streets": {"_count": 1}}, "with": {"_count": 5, "the": {"_count": 2}, "himself": {"_count": 1}, "her": {"_count": 1}, "goblins": {"_count": 1}}, "after": {"_count": 1, "he": {"_count": 1}}, "nor": {"_count": 1, "did": {"_count": 1}}, "you": {"_count": 1, "wait": {"_count": 1}}, "to": {"_count": 2, "cause": {"_count": 1}, "tell": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "just": {"_count": 1, "long": {"_count": 1}}, "here": {"_count": 7, "in": {"_count": 2}, "you": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}}, "there": {"_count": 5, "": {"_count": 2}, "nor": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}}, "alone": {"_count": 3, "in": {"_count": 1}, "": {"_count": 2}}, "for": {"_count": 1, "so": {"_count": 1}}, "four": {"_count": 1, "wizards": {"_count": 1}}, "life": {"_count": 1, "woulda": {"_count": 1}}, "dare": {"_count": 1, "mention": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "they": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 2, "spectral": {"_count": 1}, "hundred": {"_count": 1}}, "Morfin": {"_count": 1, "having": {"_count": 1}}, "or": {"_count": 4, "died": {"_count": 1}, "visited": {"_count": 1}, "where": {"_count": 1}, "worked": {"_count": 1}}, "working": {"_count": 1, "always": {"_count": 1}}, "and": {"_count": 1, "lost": {"_count": 1}}, "really": {"_count": 1, "lived": {"_count": 1}}, "that": {"_count": 1, "her": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 2}}, "alongside": {"_count": 1, "tolerant": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "VANASHIG": {"_count": 1, "GLASS": {"_count": 1, "Nearly": {"_count": 1}}}, "GLASS": {"_count": 1, "Nearly": {"_count": 1, "ten": {"_count": 1}}}, "Nearly": {"_count": 102, "ten": {"_count": 1, "years": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "everything": {"_count": 2, "in": {"_count": 2}}, "Headless": {"_count": 74, "Nick": {"_count": 69}, "": {"_count": 1}, "Nicks": {"_count": 4}}, "there": {"_count": 3, "": {"_count": 1}, "Ron": {"_count": 1}, "said": {"_count": 1}}, "wet": {"_count": 1, "himself": {"_count": 1}}, "everyone": {"_count": 5, "laughed": {"_count": 2}, "in": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "finished": {"_count": 1, "": {"_count": 1}}, "six": {"_count": 1, "said": {"_count": 1}}, "failed": {"_count": 1, "on": {"_count": 1}}, "time": {"_count": 2, "for": {"_count": 1}, "said": {"_count": 1}}, "Ginny": {"_count": 1, "all": {"_count": 1}}, "done": {"_count": 1, "": {"_count": 1}}, "sixteen": {"_count": 1, "years": {"_count": 1}}, "everybody": {"_count": 2, "looked": {"_count": 1}, "expected": {"_count": 1}}, "all": {"_count": 3, "of": {"_count": 1}, "were": {"_count": 1}, "the": {"_count": 1}}, "always": {"_count": 1, "right": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}}, "ten": {"_count": 237, "years": {"_count": 15, "had": {"_count": 1}, "ten": {"_count": 1}, "ago": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "a": {"_count": 1}, "younger": {"_count": 1}, "mind": {"_count": 1}, "not": {"_count": 1}, "Hermione": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}, "old": {"_count": 2}, "during": {"_count": 1}}, "miserable": {"_count": 1, "years": {"_count": 1}}, "minutes": {"_count": 61, "time": {"_count": 1}, "to": {"_count": 6}, "left": {"_count": 3}, "": {"_count": 10}, "during": {"_count": 1}, "later": {"_count": 11}, "ago": {"_count": 6}, "and": {"_count": 2}, "alone": {"_count": 1}, "said": {"_count": 1}, "late": {"_count": 1}, "or": {"_count": 4}, "Ireland": {"_count": 1}, "afterward": {"_count": 1}, "but": {"_count": 2}, "five": {"_count": 1}, "however": {"_count": 1}, "until": {"_count": 1}, "then": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 2}, "while": {"_count": 1}, "for": {"_count": 1}, "into": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 18}, "?": {"_count": 3}, "!": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "pin": {"_count": 1, "bowling": {"_count": 1}}, "points": {"_count": 12, "Ron": {"_count": 1}, "to": {"_count": 2}, "said": {"_count": 1}, "for": {"_count": 2}, "from": {"_count": 4}, "ter": {"_count": 1}, "Ginny": {"_count": 1}}, "others": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 23, "away": {"_count": 9}, "into": {"_count": 2}, "above": {"_count": 2}, "from": {"_count": 2}, "around": {"_count": 2}, "apart": {"_count": 1}, "": {"_count": 1}, "below": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}, "whole": {"_count": 1, "minutes": {"_count": 1}}, "days": {"_count": 6, "to": {"_count": 1}, "ago": {"_count": 1}, "time": {"_count": 2}, "": {"_count": 1}, "previously": {"_count": 1}}, "long": {"_count": 2, "bandaged": {"_count": 1}, "years": {"_count": 1}}, "noisy": {"_count": 1, "rocky": {"_count": 1}}, "Riddles": {"_count": 1, "were": {"_count": 1}}, "seconds": {"_count": 6, "and": {"_count": 2}, "had": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 1}, "passed": {"_count": 1}}, "Galleons": {"_count": 11, "she": {"_count": 1}, "": {"_count": 4}, "each": {"_count": 1}, "a": {"_count": 2}, "Harry": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 1}}, "pushing": {"_count": 1, "Harrys": {"_count": 1}}, "subjects": {"_count": 1, "a": {"_count": 1}}, "times": {"_count": 5, "worse": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "for": {"_count": 2, "Neville": {"_count": 1}, "that": {"_count": 1}}, "and": {"_count": 4, "Gryffindor": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "fly": {"_count": 1}}, "inches": {"_count": 1, "high": {"_count": 1}}, "said": {"_count": 2, "Charlie": {"_count": 1}, "miserably": {"_count": 1}}, "cathedrals": {"_count": 1, "would": {"_count": 1}}, "more": {"_count": 5, "goals": {"_count": 1}, "minutes": {"_count": 1}, "Death": {"_count": 2}, "seconds": {"_count": 1}}, "from": {"_count": 2, "each": {"_count": 1}, "Mr": {"_count": 1}}, "skrewts": {"_count": 1, "left": {"_count": 1}}, "to": {"_count": 5, "midnight": {"_count": 1}, "the": {"_count": 1}, "Slytherin": {"_count": 1}, "nine": {"_count": 1}, "eight": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "yards": {"_count": 1, "from": {"_count": 1}}, "past": {"_count": 4, "nine": {"_count": 1}, "five": {"_count": 1}, "": {"_count": 1}, "one": {"_count": 1}}, "stubby": {"_count": 1, "little": {"_count": 1}}, "Harry": {"_count": 1, "did": {"_count": 1}}, "people": {"_count": 2, "with": {"_count": 1}, "reporting": {"_count": 1}}, "blackandwhite": {"_count": 1, "photographs": {"_count": 1}}, "high": {"_count": 1, "security": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "us": {"_count": 1}, "Advanced": {"_count": 1}}, "escaped": {"_count": 3, "Death": {"_count": 3}}, "Death": {"_count": 2, "Eaters": {"_count": 2}}, "pictures": {"_count": 1, "of": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "Moony": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "twenty": {"_count": 1, "or": {"_count": 1}}, "different": {"_count": 2, "types": {"_count": 1}, "crystal": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "made": {"_count": 1}}, "oclock": {"_count": 2, "next": {"_count": 1}, "and": {"_count": 1}}, "steps": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 2, "felt": {"_count": 1}, "sank": {"_count": 1}}, "miles": {"_count": 1, "or": {"_count": 1}}, "degrees": {"_count": 1, "": {"_count": 1}}, "Dean": {"_count": 1, "obliged": {"_count": 1}}, "a": {"_count": 1, "Knut": {"_count": 1}}, "or": {"_count": 1, "more": {"_count": 1}}}, "sun": {"_count": 81, "rose": {"_count": 2, "on": {"_count": 1}, "steadily": {"_count": 1}}, "shone": {"_count": 2, "brightly": {"_count": 1}, "out": {"_count": 1}}, "hung": {"_count": 2, "low": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "blazed": {"_count": 1, "overhead": {"_count": 1}}, "sinking": {"_count": 2, "behind": {"_count": 1}, "bloodred": {"_count": 1}}, "was": {"_count": 20, "now": {"_count": 2}, "up": {"_count": 1}, "pouring": {"_count": 1}, "already": {"_count": 2}, "sinking": {"_count": 1}, "setting": {"_count": 1}, "high": {"_count": 1}, "very": {"_count": 1}, "falling": {"_count": 1}, "rising": {"_count": 2}, "bright": {"_count": 1}, "visible": {"_count": 1}, "trying": {"_count": 1}, "coming": {"_count": 1}, "low": {"_count": 1}, "not": {"_count": 1}, "barely": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 10, "now": {"_count": 1}, "risen": {"_count": 3}, "really": {"_count": 1}, "fallen": {"_count": 1}, "sunk": {"_count": 1}, "not": {"_count": 1}, "gone": {"_count": 1}, "just": {"_count": 1}}, "warming": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "back": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "were": {"_count": 1, "casting": {"_count": 1}}, "newly": {"_count": 1, "risen": {"_count": 1}}, "set": {"_count": 1, "outside": {"_count": 1}}, "shining": {"_count": 1, "down": {"_count": 1}}, "the": {"_count": 1, "shoulder": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "put": {"_count": 1, "in": {"_count": 1}}, "came": {"_count": 1, "up": {"_count": 1}}, "an": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "saw": {"_count": 1}, "then": {"_count": 1}, "Ron": {"_count": 1}}, "for": {"_count": 1, "hours": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "caressed": {"_count": 1, "his": {"_count": 1}}, "how": {"_count": 1, "people": {"_count": 1}}, "colors": {"_count": 1, "to": {"_count": 1}}, "until": {"_count": 1, "it": {"_count": 1}}, "rise": {"_count": 1, "over": {"_count": 1}}, "slipped": {"_count": 1, "lower": {"_count": 1}}, "it": {"_count": 1, "drew": {"_count": 1}}, "appeared": {"_count": 1, "over": {"_count": 1}}, "dazzled": {"_count": 1, "the": {"_count": 1}}}, "gardens": {"_count": 7, "and": {"_count": 2, "lit": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "weed": {"_count": 1}, "Privet": {"_count": 1}}, "larger": {"_count": 1, "they": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "lit": {"_count": 119, "up": {"_count": 3, "the": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "windows": {"_count": 3, "all": {"_count": 1}, "of": {"_count": 1}, "down": {"_count": 1}}, "with": {"_count": 15, "flaming": {"_count": 5}, "a": {"_count": 2}, "the": {"_count": 1}, "enthusiasm": {"_count": 1}, "torches": {"_count": 1}, "an": {"_count": 1}, "flickering": {"_count": 1}, "blueflamed": {"_count": 1}, "that": {"_count": 1}, "floating": {"_count": 1}}, "by": {"_count": 12, "thousands": {"_count": 2}, "a": {"_count": 4}, "the": {"_count": 1}, "midday": {"_count": 1}, "torches": {"_count": 2}, "crystal": {"_count": 1}, "candlelight": {"_count": 1}}, "a": {"_count": 6, "lamp": {"_count": 1}, "spot": {"_count": 1}, "fire": {"_count": 4}}, "chamber": {"_count": 2, "its": {"_count": 1}, "": {"_count": 1}}, "wizards": {"_count": 1, "shop": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "passageway": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 9, "candles": {"_count": 2}, "corridor": {"_count": 1}, "lamps": {"_count": 2}, "path": {"_count": 1}, "trees": {"_count": 1}, "portraits": {"_count": 1}, "pram": {"_count": 1}}, "and": {"_count": 6, "when": {"_count": 1}, "a": {"_count": 1}, "distinctly": {"_count": 1}, "rectangular": {"_count": 1}, "empty": {"_count": 1}, "sumptuously": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "his": {"_count": 4, "lamp": {"_count": 1}, "wand": {"_count": 2}, "features": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "room": {"_count": 5, "but": {"_count": 1}, "was": {"_count": 1}, "as": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "trail": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "classrooms": {"_count": 1}}, "only": {"_count": 4, "by": {"_count": 2}, "for": {"_count": 1}, "a": {"_count": 1}}, "underground": {"_count": 1, "passage": {"_count": 1}}, "dance": {"_count": 1, "floor": {"_count": 1}}, "cave": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "thought": {"_count": 1}, "was": {"_count": 1}}, "from": {"_count": 1, "beneath": {"_count": 1}}, "wand": {"_count": 7, "aloft": {"_count": 2}, "close": {"_count": 1}, "tips": {"_count": 1}, "held": {"_count": 1}, "he": {"_count": 1}, "around": {"_count": 1}}, "first": {"_count": 1, "upon": {"_count": 1}}, "instead": {"_count": 1, "with": {"_count": 1}}, "classroom": {"_count": 1, "when": {"_count": 1}}, "our": {"_count": 1, "wands": {"_count": 1}}, "grass": {"_count": 1, "before": {"_count": 1}}, "clearing": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 2, "gaunt": {"_count": 1}, "wand": {"_count": 1}}, "extra": {"_count": 1, "lamps": {"_count": 1}}, "corridors": {"_count": 1, "back": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "upper": {"_count": 1, "windows": {"_count": 1}}, "corridor": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "table": {"_count": 1, "where": {"_count": 1}}, "cigarette": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 1, "out": {"_count": 1}}, "wandtip": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "stage": {"_count": 1, "All": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "their": {"_count": 1, "wands": {"_count": 1}}}, "brass": {"_count": 30, "number": {"_count": 2, "four": {"_count": 1}, "eleven": {"_count": 1}}, "scales": {"_count": 7, "Students": {"_count": 1}, "examining": {"_count": 1}, "and": {"_count": 2}, "have": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 1}}, "telescope": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "doorknob": {"_count": 1, "but": {"_count": 1}}, "knocker": {"_count": 3, "in": {"_count": 1}, "shaped": {"_count": 1}, "that": {"_count": 1}}, "compass": {"_count": 1, "to": {"_count": 1}}, "bedsteads": {"_count": 2, "stood": {"_count": 1}, "": {"_count": 1}}, "plaque": {"_count": 2, "on": {"_count": 1}, "reading": {"_count": 1}}, "binoculars": {"_count": 1, "except": {"_count": 1}}, "pots": {"_count": 2, "and": {"_count": 1}, "hung": {"_count": 1}}, "door": {"_count": 1, "knocker": {"_count": 1}}, "oh": {"_count": 1, "if": {"_count": 1}}, "instrument": {"_count": 1, "which": {"_count": 1}}, "spike": {"_count": 1, "": {"_count": 1}}, "handle": {"_count": 1, "pulled": {"_count": 1}}, "holder": {"_count": 1, "on": {"_count": 1}}, "containers": {"_count": 1, "": {"_count": 1}}}, "fateful": {"_count": 1, "news": {"_count": 1, "report": {"_count": 1}}}, "photographs": {"_count": 29, "on": {"_count": 1, "the": {"_count": 1}}, "showed": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 6, "all": {"_count": 1}, "them": {"_count": 1}, "Lockhart": {"_count": 2}, "their": {"_count": 1}, "Death": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 3, "had": {"_count": 1}, "Sirius": {"_count": 1}, "filled": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 1, "kept": {"_count": 1}}, "in": {"_count": 1, "tarnished": {"_count": 1}}, "even": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "were": {"_count": 2, "silently": {"_count": 1}, "in": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "maybe": {"_count": 1, "even": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "searched": {"_count": 1}}}, "mantelpiece": {"_count": 20, "really": {"_count": 1, "showed": {"_count": 1}}, "books": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 5, "it": {"_count": 1}, "peered": {"_count": 1}, "yelled": {"_count": 1}, "into": {"_count": 1}, "through": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "glued": {"_count": 1}}, "beaming": {"_count": 1, "next": {"_count": 1}}, "was": {"_count": 1, "giving": {"_count": 1}}, "slightly": {"_count": 1, "apart": {"_count": 1}}, "surmounted": {"_count": 1, "by": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}}, "showed": {"_count": 111, "how": {"_count": 1, "much": {"_count": 1}}, "a": {"_count": 10, "large": {"_count": 1}, "mans": {"_count": 1}, "black": {"_count": 1}, "set": {"_count": 1}, "gigantic": {"_count": 1}, "curlyhaired": {"_count": 1}, "pronounced": {"_count": 1}, "skinny": {"_count": 1}, "face": {"_count": 1}, "family": {"_count": 1}}, "the": {"_count": 5, "first": {"_count": 1}, "class": {"_count": 1}, "slightest": {"_count": 2}, "whole": {"_count": 1}}, "them": {"_count": 5, "a": {"_count": 1}, "how": {"_count": 1}, "the": {"_count": 1}, "both": {"_count": 1}, "impressive": {"_count": 1}}, "Harry": {"_count": 5, "two": {"_count": 1}, "and": {"_count": 1}, "ten": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "him": {"_count": 11, "": {"_count": 2}, "how": {"_count": 2}, "the": {"_count": 2}, "her": {"_count": 1}, "that": {"_count": 2}, "this": {"_count": 1}, "more": {"_count": 1}}, "your": {"_count": 1, "friend": {"_count": 1}}, "any": {"_count": 1, "sign": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "every": {"_count": 1}, "Voldemorts": {"_count": 1}}, "no": {"_count": 8, "mercy": {"_count": 1}, "sign": {"_count": 5}, "dismay": {"_count": 1}, "pleasure": {"_count": 1}}, "me": {"_count": 1, "how": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "signs": {"_count": 4, "of": {"_count": 4}}, "her": {"_count": 3, "Goyles": {"_count": 1}, "T": {"_count": 1}, "inside": {"_count": 1}}, "it": {"_count": 6, "to": {"_count": 6}}, "some": {"_count": 1, "respect": {"_count": 1}}, "that": {"_count": 3, "Professor": {"_count": 1}, "daybreak": {"_count": 1}, "his": {"_count": 1}}, "more": {"_count": 1, "hatred": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "BULGARIA": {"_count": 1, "0": {"_count": 1}}, "yeh": {"_count": 1, "right": {"_count": 1}}, "themselves": {"_count": 1, "at": {"_count": 1}}, "Cedric": {"_count": 1, "with": {"_count": 1}}, "Snape": {"_count": 2, "something": {"_count": 2}}, "my": {"_count": 1, "father": {"_count": 1}}, "equal": {"_count": 1, "dislike": {"_count": 1}}, "his": {"_count": 4, "true": {"_count": 1}, "face": {"_count": 1}, "contempt": {"_count": 1}, "yellow": {"_count": 1}}, "you": {"_count": 5, "last": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "only": {"_count": 1}, "to": {"_count": 1}}, "today": {"_count": 1, "to": {"_count": 1}}, "where": {"_count": 2, "various": {"_count": 1}, "Kreacher": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "every": {"_count": 2, "sign": {"_count": 2}}, "Horace": {"_count": 1, "exactly": {"_count": 1}}, "Borgin": {"_count": 1, "something": {"_count": 1}}, "Ogden": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "half": {"_count": 1, "past": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "white": {"_count": 1, "on": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "clearly": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "quite": {"_count": 1}}, "unmistakable": {"_count": 1, "signs": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "remorse": {"_count": 1, "in": {"_count": 1}}}, "Ten": {"_count": 40, "years": {"_count": 2, "ago": {"_count": 1}, "separates": {"_count": 1}}, "minutes": {"_count": 9, "later": {"_count": 6}, "into": {"_count": 2}, "": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "points": {"_count": 10, "every": {"_count": 1}, "to": {"_count": 1}, "if": {"_count": 1}, "from": {"_count": 6}, "for": {"_count": 1}}, "weeks": {"_count": 1, "Hermione": {"_count": 1}}, "seconds": {"_count": 1, "": {"_count": 1}}, "Galleons": {"_count": 3, "on": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "past": {"_count": 1, "five": {"_count": 1}}, "zero": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "feet": {"_count": 2, "long": {"_count": 1}, "from": {"_count": 1}}, "Down": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 1, "spades": {"_count": 1}}, "oclock": {"_count": 2, "Saturday": {"_count": 1}, "whispered": {"_count": 1}}, "pairs": {"_count": 1, "of": {"_count": 1}}, "people": {"_count": 1, "today": {"_count": 1}}, "inches": {"_count": 1, "precisely": {"_count": 1}}}, "ago": {"_count": 223, "there": {"_count": 1, "had": {"_count": 1}}, "now": {"_count": 2, "started": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 79, ".": {"_count": 67}, "?": {"_count": 4}, "!": {"_count": 8}}, "said": {"_count": 11, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}, "Aragog": {"_count": 1}, "George": {"_count": 1}, "Mr": {"_count": 1}, "Sirius": {"_count": 1}, "Dumbledore": {"_count": 2}, "Kingsley": {"_count": 1}, "Harry": {"_count": 1}, "Aberforth": {"_count": 1}}, "yehd": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 10, "he": {"_count": 2}, "waiting": {"_count": 1}, "we": {"_count": 1}, "Harry": {"_count": 1}, "most": {"_count": 1}, "now": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}}, "I": {"_count": 4, "dont": {"_count": 1}, "know": {"_count": 1}, "saw": {"_count": 1}, "received": {"_count": 1}}, "she": {"_count": 3, "said": {"_count": 2}, "barked": {"_count": 1}}, "sobbing": {"_count": 1, "I": {"_count": 1}}, "Hogwarts": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 3, "precise": {"_count": 1}, "Ministry": {"_count": 1}, "centaur": {"_count": 1}}, "Dyou": {"_count": 1, "think": {"_count": 1}}, "so": {"_count": 1, "it": {"_count": 1}}, "wasnt": {"_count": 2, "it": {"_count": 2}}, "off": {"_count": 1, "to": {"_count": 1}}, "yet": {"_count": 1, "here": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "when": {"_count": 10, "Black": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 2}, "Dumbledore": {"_count": 1}, "the": {"_count": 2}, "we": {"_count": 1}, "he": {"_count": 2}}, "that": {"_count": 11, "he": {"_count": 3}, "the": {"_count": 1}, "they": {"_count": 1}, "Malfoy": {"_count": 1}, "makes": {"_count": 1}, "Voldemort": {"_count": 1}, "I": {"_count": 1}, "although": {"_count": 1}, "Hogwarts": {"_count": 1}}, "Potter": {"_count": 1, "so": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "something": {"_count": 1, "strange": {"_count": 1}}, "it": {"_count": 2, "felt": {"_count": 1}, "wasnt": {"_count": 1}}, "When": {"_count": 1, "I": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "yesterday": {"_count": 1}}, "in": {"_count": 5, "Diagon": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "St": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 4, "ducked": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}, "added": {"_count": 1}}, "they": {"_count": 4, "had": {"_count": 3}, "say": {"_count": 1}}, "to": {"_count": 2, "guard": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "student": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "before": {"_count": 2, "he": {"_count": 1}, "his": {"_count": 1}}, "did": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "then": {"_count": 2, "it": {"_count": 1}, "continued": {"_count": 1}}, "That": {"_count": 1, "wasnt": {"_count": 1}}, "he": {"_count": 5, "had": {"_count": 4}, "said": {"_count": 1}}, "has": {"_count": 1, "led": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 4, "know": {"_count": 1}, "saw": {"_count": 1}, "arrived": {"_count": 1}, "told": {"_count": 1}}, "its": {"_count": 1, "my": {"_count": 1}}, "Who": {"_count": 1, "attacked": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}, "we": {"_count": 1, "very": {"_count": 1}}, "but": {"_count": 4, "as": {"_count": 1}, "he": {"_count": 1}, "not": {"_count": 1}, "I": {"_count": 1}}, "ticked": {"_count": 1, "loudly": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "means": {"_count": 1, "that": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "words": {"_count": 1, "that": {"_count": 1}}, "Arkie": {"_count": 1, "Philpott": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "heard": {"_count": 1, "of": {"_count": 1}}, "theyre": {"_count": 1, "in": {"_count": 1}}, "They": {"_count": 1, "were": {"_count": 1}}, "very": {"_count": 1, "close": {"_count": 1}}, "years": {"_count": 1, "really": {"_count": 1}}, "stolen": {"_count": 1, "from": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "Today": {"_count": 1, "he": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "goblins": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "long": {"_count": 1, "before": {"_count": 1}}}, "pictures": {"_count": 48, "of": {"_count": 15, "what": {"_count": 1}, "his": {"_count": 3}, "him": {"_count": 1}, "them": {"_count": 2}, "Professor": {"_count": 1}, "previous": {"_count": 1}, "wanted": {"_count": 1}, "himself": {"_count": 1}, "the": {"_count": 3}, "Muggle": {"_count": 1}}, "to": {"_count": 1, "send": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "dodging": {"_count": 1, "out": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "wanted": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 3, "this": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "forming": {"_count": 1, "in": {"_count": 1}}, "formed": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "before": {"_count": 1, "after": {"_count": 1}}, "as": {"_count": 1, "usually": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "looking": {"_count": 1, "insolent": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "adorned": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "indicated": {"_count": 1}}, "that": {"_count": 1, "little": {"_count": 1}}, "faded": {"_count": 1, "smiles": {"_count": 1}}, "my": {"_count": 1, "Mistresss": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "linking": {"_count": 1, "them": {"_count": 1}}, "blurred": {"_count": 1, "and": {"_count": 1}}, "looked": {"_count": 1, "confused": {"_count": 1}}}, "pink": {"_count": 120, "beach": {"_count": 1, "ball": {"_count": 1}}, "face": {"_count": 3, "not": {"_count": 1}, "went": {"_count": 1}, "": {"_count": 1}}, "umbrella": {"_count": 7, "from": {"_count": 1}, "again": {"_count": 1}, "very": {"_count": 1}, "leaning": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "where": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 17}}, "again": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "seemed": {"_count": 1}, "would": {"_count": 1}}, "tinge": {"_count": 1, "appeared": {"_count": 1}}, "silk": {"_count": 3, "dress": {"_count": 3}}, "and": {"_count": 15, "started": {"_count": 1}, "pointing": {"_count": 1}, "porky": {"_count": 1}, "fluffy": {"_count": 1}, "trembling": {"_count": 1}, "muttered": {"_count": 1}, "gold": {"_count": 1}, "orange": {"_count": 1}, "she": {"_count": 1}, "blue": {"_count": 1}, "purple": {"_count": 1}, "blinked": {"_count": 1}, "did": {"_count": 1}, "Rons": {"_count": 1}, "faintly": {"_count": 1}}, "bathrobe": {"_count": 1, "and": {"_count": 1}}, "fluffy": {"_count": 1, "pair": {"_count": 1}}, "patches": {"_count": 2, "on": {"_count": 2}}, "flowers": {"_count": 1, "": {"_count": 1}}, "robes": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 3, "Lockharts": {"_count": 1}, "Neville": {"_count": 1}, "he": {"_count": 1}}, "shot": {"_count": 1, "with": {"_count": 1}}, "dress": {"_count": 1, "asked": {"_count": 1}}, "pods": {"_count": 1, "from": {"_count": 1}}, "squares": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 5}}, "around": {"_count": 2, "the": {"_count": 2}}, "but": {"_count": 5, "stared": {"_count": 1}, "Dumbledore": {"_count": 1}, "James": {"_count": 1}, "did": {"_count": 1}, "merely": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "her": {"_count": 1}, "pleasure": {"_count": 1}, "cold": {"_count": 1}}, "was": {"_count": 1, "clutching": {"_count": 1}}, "cheeked": {"_count": 1, "blackhaired": {"_count": 1}}, "appearing": {"_count": 1, "in": {"_count": 1}}, "flush": {"_count": 2, "creeping": {"_count": 1}, "ebbing": {"_count": 1}}, "Alice": {"_count": 1, "band": {"_count": 1}}, "cardigan": {"_count": 3, "she": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "satin": {"_count": 1, "dress": {"_count": 1}}, "parchment": {"_count": 3, "out": {"_count": 1}, "but": {"_count": 1}, "from": {"_count": 1}}, "like": {"_count": 1, "Nevilles": {"_count": 1}}, "feather": {"_count": 1, "at": {"_count": 1}}, "confetti": {"_count": 2, "over": {"_count": 1}, "out": {"_count": 1}}, "Catherine": {"_count": 1, "wheels": {"_count": 1}}, "hair": {"_count": 1, "seemed": {"_count": 1}}, "feet": {"_count": 1, "off": {"_count": 1}}, "products": {"_count": 1, "around": {"_count": 1}}, "pot": {"_count": 1, "off": {"_count": 1}}, "would": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "these": {"_count": 1}}, "spots": {"_count": 1, "had": {"_count": 1}}, "tipped": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "flowery": {"_count": 1, "umbrella": {"_count": 1}}, "Remus": {"_count": 1, "Lupin": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "Lupin": {"_count": 1, "grayer": {"_count": 1}}, "hat": {"_count": 1, "gave": {"_count": 1}}, "kites": {"_count": 1, "": {"_count": 1}}, "cover": {"_count": 1, "was": {"_count": 1}}, "note": {"_count": 1, "was": {"_count": 1}}, "every": {"_count": 1, "feature": {"_count": 1}}, "both": {"_count": 1, "rear": {"_count": 1}}}, "beach": {"_count": 3, "ball": {"_count": 1, "wearing": {"_count": 1}}, "somewhere": {"_count": 1, "rubbing": {"_count": 1}}, "umbrella": {"_count": 1, "seized": {"_count": 1}}}, "ball": {"_count": 93, "wearing": {"_count": 1, "differentcolored": {"_count": 1}}, "where": {"_count": 1, "no": {"_count": 1}}, "the": {"_count": 2, "size": {"_count": 1}, "tea": {"_count": 1}}, "high": {"_count": 1, "into": {"_count": 1}}, "rise": {"_count": 1, "up": {"_count": 1}}, "wind": {"_count": 1, "whistled": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 13}, "?": {"_count": 2}, "!": {"_count": 1}}, "rose": {"_count": 1, "high": {"_count": 1}}, "of": {"_count": 5, "the": {"_count": 1}, "what": {"_count": 1}, "light": {"_count": 3}}, "wings": {"_count": 1, "fluttering": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "eyes": {"_count": 1, "were": {"_count": 1}}, "which": {"_count": 1, "would": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "through": {"_count": 2, "one": {"_count": 1}, "a": {"_count": 1}}, "whose": {"_count": 1, "capture": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 3, "saw": {"_count": 1}, "its": {"_count": 1}, "Harry": {"_count": 1}}, "was": {"_count": 2, "held": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 2, "stared": {"_count": 1}, "caught": {"_count": 1}}, "to": {"_count": 3, "one": {"_count": 1}, "his": {"_count": 1}, "speed": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "will": {"_count": 3, "be": {"_count": 1}, "start": {"_count": 1}, "remember": {"_count": 1}}, "he": {"_count": 2, "thought": {"_count": 1}, "lost": {"_count": 1}}, "or": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 7, "her": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 3}, "": {"_count": 1}}, "before": {"_count": 2, "him": {"_count": 1}, "Cedric": {"_count": 1}}, "thing": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 2, "Fred": {"_count": 1}, "Hermione": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "included": {"_count": 1, "a": {"_count": 1}}, "discussing": {"_count": 1, "giants": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "ask": {"_count": 1, "me": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "crate": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "smashed": {"_count": 1}}, "Malfoys": {"_count": 1, "fingernails": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 1, "from": {"_count": 1}}, "expecting": {"_count": 1, "another": {"_count": 1}}, "from": {"_count": 1, "being": {"_count": 1}}, "dropped": {"_count": 1, "from": {"_count": 1}}, "soaring": {"_count": 1, "past": {"_count": 1}}, "its": {"_count": 1, "silver": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "placed": {"_count": 1, "his": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}, "fell": {"_count": 1, "on": {"_count": 1}}}, "differentcolored": {"_count": 3, "bonnets": {"_count": 1, "but": {"_count": 1}}, "earmuffs": {"_count": 1, "were": {"_count": 1}}, "inks": {"_count": 1, "": {"_count": 1}}}, "bonnets": {"_count": 1, "but": {"_count": 1, "Dudley": {"_count": 1}}}, "longer": {"_count": 194, "a": {"_count": 3, "baby": {"_count": 1}, "Defense": {"_count": 1}, "Horcrux": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 20}, "!": {"_count": 1}}, "Not": {"_count": 1, "the": {"_count": 1}}, "broken": {"_count": 1, "": {"_count": 1}}, "pearlywhite": {"_count": 1, "and": {"_count": 1}}, "visible": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "alone": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 2, "talk": {"_count": 1}, "stay": {"_count": 1}}, "Riddle": {"_count": 1, "stood": {"_count": 1}}, "strutting": {"_count": 1, "around": {"_count": 1}}, "flap": {"_count": 1, "and": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 20, "three": {"_count": 1}, "usual": {"_count": 2}, "that": {"_count": 2}, "it": {"_count": 3}, "Bills": {"_count": 1}, "this": {"_count": 1}, "Harrys": {"_count": 1}, "normal": {"_count": 1}, "I": {"_count": 2}, "a": {"_count": 4}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "said": {"_count": 1, "Malfoy": {"_count": 1}}, "Potter": {"_count": 1, "she": {"_count": 1}}, "he": {"_count": 5, "wasnt": {"_count": 1}, "gave": {"_count": 1}, "watched": {"_count": 1}, "said": {"_count": 1}, "looked": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "your": {"_count": 1, "teacher": {"_count": 1}}, "has": {"_count": 1, "a": {"_count": 1}}, "standing": {"_count": 1, "behind": {"_count": 1}}, "looked": {"_count": 3, "buoyant": {"_count": 1}, "like": {"_count": 1}, "around": {"_count": 1}}, "but": {"_count": 4, "it": {"_count": 1}, "Peeves": {"_count": 1}, "Harry": {"_count": 1}, "safer": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "avoid": {"_count": 1, "the": {"_count": 1}}, "shellless": {"_count": 1, "and": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "examining": {"_count": 1, "Harrys": {"_count": 1}}, "and": {"_count": 2, "heavier": {"_count": 1}, "the": {"_count": 1}}, "bushy": {"_count": 1, "but": {"_count": 1}}, "the": {"_count": 3, "center": {"_count": 1}, "secure": {"_count": 1}, "memory": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "see": {"_count": 3, "the": {"_count": 2}, "into": {"_count": 1}}, "use": {"_count": 1, "his": {"_count": 1}}, "smooth": {"_count": 1, "and": {"_count": 1}}, "strides": {"_count": 1, "still": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "control": {"_count": 1}}, "legs": {"_count": 1, "Then": {"_count": 1}}, "Nagini": {"_count": 1, "he": {"_count": 1}}, "knew": {"_count": 1, "where": {"_count": 1}}, "aware": {"_count": 1, "of": {"_count": 1}}, "support": {"_count": 1, "his": {"_count": 1}}, "safe": {"_count": 1, "for": {"_count": 1}}, "was": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 6, "walk": {"_count": 1}, "Harry": {"_count": 2}, "get": {"_count": 1}, "sort": {"_count": 1}, "reform": {"_count": 1}}, "buzzing": {"_count": 1, "they": {"_count": 1}}, "be": {"_count": 3, "fellow": {"_count": 1}, "required": {"_count": 1}, "any": {"_count": 1}}, "horseless": {"_count": 1, "": {"_count": 1}}, "fancied": {"_count": 1, "very": {"_count": 1}}, "they": {"_count": 4, "practiced": {"_count": 1}, "stayed": {"_count": 1}, "eavesdropped": {"_count": 1}, "spent": {"_count": 1}}, "live": {"_count": 1, "under": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "yeah": {"_count": 1, "I": {"_count": 1}}, "spending": {"_count": 1, "every": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "night": {"_count": 1, "than": {"_count": 1}}, "meet": {"_count": 1, "Harrys": {"_count": 1}}, "their": {"_count": 1, "sullen": {"_count": 1}}, "hung": {"_count": 1, "with": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}, "deathly": {"_count": 1, "white": {"_count": 1}}, "return": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "welcome": {"_count": 1, "here": {"_count": 1}}, "setting": {"_count": 1, "them": {"_count": 1}}, "hear": {"_count": 1, "it": {"_count": 1}}, "would": {"_count": 1, "he": {"_count": 1}}, "Page": {"_count": 1, "lOUHarry": {"_count": 1}}, "struggling": {"_count": 1, "against": {"_count": 1}}, "laughing": {"_count": 1, "": {"_count": 1}}, "seeing": {"_count": 1, "it": {"_count": 1}}, "enough": {"_count": 1, "smashing": {"_count": 1}}, "any": {"_count": 1, "points": {"_count": 1}}, "n": {"_count": 1, "you": {"_count": 1}}, "quite": {"_count": 1, "connected": {"_count": 1}}, "It": {"_count": 1, "stretched": {"_count": 1}}, "it": {"_count": 1, "went": {"_count": 1}}, "fulfilling": {"_count": 1, "my": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "youve": {"_count": 1}}, "studying": {"_count": 1, "Potions": {"_count": 1}}, "then": {"_count": 1, "ducked": {"_count": 1}}, "on": {"_count": 1, "Harrys": {"_count": 1}}, "smiling": {"_count": 1, "but": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "rely": {"_count": 1, "on": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "theyre": {"_count": 1, "kept": {"_count": 1}}, "made": {"_count": 1, "contact": {"_count": 1}}, "handsome": {"_count": 1, "Tom": {"_count": 1}}, "hide": {"_count": 1, "his": {"_count": 1}}, "mirrorsmooth": {"_count": 1, "it": {"_count": 1}}, "sneering": {"_count": 1, "or": {"_count": 1}}, "crying": {"_count": 1, "": {"_count": 1}}, "fit": {"_count": 1, "": {"_count": 1}}, "contagious": {"_count": 1, "my": {"_count": 1}}, "call": {"_count": 1, "this": {"_count": 1}}, "tell": {"_count": 1, "which": {"_count": 1}}, "glowing": {"_count": 1, "hairbrush": {"_count": 1}}, "exist": {"_count": 1, "": {"_count": 1}}, "possible": {"_count": 1, "for": {"_count": 1}}, "He": {"_count": 2, "had": {"_count": 1}, "stood": {"_count": 1}}, "glittering": {"_count": 1, "with": {"_count": 1}}, "we": {"_count": 1, "put": {"_count": 1}}, "vomiting": {"_count": 1, "but": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "turn": {"_count": 1, "a": {"_count": 1}}, "red": {"_count": 1, "at": {"_count": 1}}, "only": {"_count": 1, "she": {"_count": 1}}, "burned": {"_count": 1, "with": {"_count": 1}}, "seeks": {"_count": 1, "the": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 2, "the": {"_count": 2}}, "Bellatrix": {"_count": 1, "instead": {"_count": 1}}, "make": {"_count": 1, "out": {"_count": 1}}, "sent": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "fire": {"_count": 1, "but": {"_count": 1}}, "contain": {"_count": 1, "himself": {"_count": 1}}, "control": {"_count": 1, "his": {"_count": 1}}, "cared": {"_count": 1, "whether": {"_count": 1}}, "paying": {"_count": 1, "attention": {"_count": 1}}}, "blond": {"_count": 36, "boy": {"_count": 5, "riding": {"_count": 1}, "next": {"_count": 1}, "with": {"_count": 2}, "nodding": {"_count": 1}}, "hair": {"_count": 11, "that": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 1}, "plastered": {"_count": 1}, "all": {"_count": 1}, "bright": {"_count": 1}, "appeared": {"_count": 1}, "off": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "pink": {"_count": 1, "and": {"_count": 1}}, "head": {"_count": 4, "and": {"_count": 1}, "rising": {"_count": 1}, "because": {"_count": 1}, "bowed": {"_count": 1}}, "Hufflepuff": {"_count": 1, "player": {"_count": 1}}, "wizard": {"_count": 1, "who": {"_count": 1}}, "Death": {"_count": 6, "Eater": {"_count": 6}}, "one": {"_count": 1, "was": {"_count": 1}}, "muscular": {"_count": 1, "cousin": {"_count": 1}}, "and": {"_count": 1, "quite": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Rowle": {"_count": 1, "was": {"_count": 1}}}, "riding": {"_count": 14, "his": {"_count": 1, "first": {"_count": 1}}, "Harrys": {"_count": 1, "Nimbus": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "dragons": {"_count": 1, "": {"_count": 1}}, "toy": {"_count": 1, "broomsticks": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "a": {"_count": 2, "Comet": {"_count": 1}, "new": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "in": {"_count": 1, "where": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "alone": {"_count": 1, "to": {"_count": 1}}}, "bicycle": {"_count": 2, "on": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "carousel": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "fair": {"_count": 36, "playing": {"_count": 1, "a": {"_count": 1}}, "game": {"_count": 1, "all": {"_count": 1}}, "if": {"_count": 2, "we": {"_count": 2}}, "few": {"_count": 2, "": {"_count": 1}, "times": {"_count": 1}}, "fortune": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 3, "square": {"_count": 2}, "objective": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "question": {"_count": 1, "said": {"_count": 1}}, "old": {"_count": 1, "bit": {"_count": 1}}, "wages": {"_count": 1, "and": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "share": {"_count": 1, "of": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "exchange": {"_count": 1, "had": {"_count": 1}}, "warning": {"_count": 1, "Potter": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "play": {"_count": 1, "": {"_count": 1}}, "amount": {"_count": 2, "going": {"_count": 1}, "of": {"_count": 1}}, "shell": {"_count": 1, "hear": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "how": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "point": {"_count": 1, "too": {"_count": 1}}, "that": {"_count": 1, "really": {"_count": 1}}, "nor": {"_count": 1, "true": {"_count": 1}}, "with": {"_count": 1, "heavily": {"_count": 1}}, "snapped": {"_count": 1, "Hermione": {"_count": 1}}, "representation": {"_count": 1, "of": {"_count": 1}}, "Now": {"_count": 1, "now": {"_count": 1}}, "hearing": {"_count": 1, "here": {"_count": 1}}, "in": {"_count": 1, "love": {"_count": 1}}}, "playing": {"_count": 111, "a": {"_count": 3, "computer": {"_count": 1}, "casual": {"_count": 1}, "very": {"_count": 1}}, "for": {"_count": 4, "their": {"_count": 1}, "time": {"_count": 3}}, "in": {"_count": 5, "his": {"_count": 1}, "green": {"_count": 1}, "completely": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "Seeker": {"_count": 3, "had": {"_count": 1}, "on": {"_count": 1}, "against": {"_count": 1}}, "Quidditch": {"_count": 8, "referees": {"_count": 1}, "": {"_count": 3}, "Harry": {"_count": 1}, "the": {"_count": 1}, "ever": {"_count": 1}, "teasing": {"_count": 1}}, "chess": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "tennis": {"_count": 1, "against": {"_count": 1}}, "cards": {"_count": 6, "with": {"_count": 1}, "on": {"_count": 1}, "countless": {"_count": 1}, "stood": {"_count": 1}, "": {"_count": 1}, "reading": {"_count": 1}}, "Fluffy": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Ron": {"_count": 1, "warned": {"_count": 1}}, "the": {"_count": 5, "flute": {"_count": 1}, "musical": {"_count": 1}, "hero": {"_count": 2}, "old": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 2}, ".": {"_count": 2}}, "at": {"_count": 14, "that": {"_count": 1}, "": {"_count": 6}, "midnight": {"_count": 1}, "walking": {"_count": 1}, "Dumbledore": {"_count": 1}, "anyway": {"_count": 1}, "taking": {"_count": 1}, "whave": {"_count": 1}, "woman": {"_count": 1}}, "some": {"_count": 2, "sort": {"_count": 1}, "perverse": {"_count": 1}}, "host": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 2}}, "Slytherin": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "Hufflepuff": {"_count": 1, "instead": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "Malfoys": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "as": {"_count": 1, "Seeker": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 10, "them": {"_count": 2}, "the": {"_count": 5}, "Arnold": {"_count": 1}, "her": {"_count": 2}}, "against": {"_count": 2, "you": {"_count": 1}, "each": {"_count": 1}}, "applause": {"_count": 1, "filled": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "hideandseek": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "hangman": {"_count": 1, "on": {"_count": 1}}, "Chaser": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "height": {"_count": 2, "blushing": {"_count": 1}, "": {"_count": 1}}, "straightaway": {"_count": 1, "I": {"_count": 1}}, "wont": {"_count": 2, "it": {"_count": 1}, "she": {"_count": 1}}, "both": {"_count": 1, "teams": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "wizard": {"_count": 2, "chess": {"_count": 2}}, "Exploding": {"_count": 1, "Snap": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "games": {"_count": 1, "said": {"_count": 1}}, "tricks": {"_count": 1, "on": {"_count": 1}}, "Dumbledores": {"_count": 1, "pet": {"_count": 1}}, "twoaside": {"_count": 1, "Quidditch": {"_count": 1}}, "Harper": {"_count": 1, "instead": {"_count": 1}}, "Keeper": {"_count": 1, "wont": {"_count": 1}}, "them": {"_count": 1, "oh": {"_count": 1}}}, "computer": {"_count": 8, "game": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 1, "wanted": {"_count": 1}}, "games": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "his": {"_count": 1}}, "thing": {"_count": 1, "you": {"_count": 1}}, "or": {"_count": 1, "put": {"_count": 1}}}, "game": {"_count": 69, "with": {"_count": 3, "his": {"_count": 1}, "only": {"_count": 1}, "Malfoy": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "of": {"_count": 19, "Quidditch": {"_count": 4}, "chess": {"_count": 3}, "Head": {"_count": 1}, "wizard": {"_count": 2}, "the": {"_count": 3}, "cards": {"_count": 1}, "Exploding": {"_count": 2}, "Gobstones": {"_count": 1}, "passtheparcel": {"_count": 1}, "hideand": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "squinting": {"_count": 1, "about": {"_count": 1}}, "plan": {"_count": 1, "": {"_count": 1}}, "": {"_count": 9, "!": {"_count": 1}, ".": {"_count": 8}}, "jerking": {"_count": 1, "and": {"_count": 1}}, "ended": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "Snape": {"_count": 1}}, "before": {"_count": 2, "Snape": {"_count": 1}, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "You": {"_count": 1}}, "was": {"_count": 5, "over": {"_count": 1}, "starting": {"_count": 1}, "running": {"_count": 1}, "up": {"_count": 1}, "ended": {"_count": 1}}, "o": {"_count": 1, "cards": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "rather": {"_count": 1, "like": {"_count": 1}}, "using": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "earned": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "weve": {"_count": 1, "lost": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "recommenced": {"_count": 1, "immediately": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}, "is": {"_count": 1, "up": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "gone": {"_count": 1, "Gryffindor": {"_count": 1}}, "had": {"_count": 1, "become": {"_count": 1}}, "this": {"_count": 1, "isnt": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}}, "father": {"_count": 305, "being": {"_count": 1, "hugged": {"_count": 1}}, "": {"_count": 55, ".": {"_count": 49}, "?": {"_count": 5}, "!": {"_count": 1}}, "a": {"_count": 5, "sharp": {"_count": 1}, "long": {"_count": 1}, "wizard": {"_count": 1}, "determined": {"_count": 1}, "fleeting": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "Sirius": {"_count": 1}}, "had": {"_count": 20, "hit": {"_count": 1}, "done": {"_count": 2}, "been": {"_count": 6}, "to": {"_count": 1}, "left": {"_count": 1}, "placed": {"_count": 1}, "told": {"_count": 1}, "not": {"_count": 1}, "a": {"_count": 1}, "taunted": {"_count": 1}, "once": {"_count": 1}, "offended": {"_count": 1}, "reminded": {"_count": 1}, "never": {"_count": 1}}, "oh": {"_count": 1, "no": {"_count": 1}}, "into": {"_count": 3, "getting": {"_count": 1}, "trouble": {"_count": 1}, "it": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "what": {"_count": 1}}, "favored": {"_count": 1, "it": {"_count": 1}}, "told": {"_count": 2, "me": {"_count": 2}}, "didnt": {"_count": 3, "need": {"_count": 1}, "you": {"_count": 1}, "set": {"_count": 1}}, "would": {"_count": 7, "have": {"_count": 3}, "know": {"_count": 1}, "he": {"_count": 1}, "never": {"_count": 1}, "you": {"_count": 1}}, "left": {"_count": 1, "this": {"_count": 1}}, "beamed": {"_count": 1, "at": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "knew": {"_count": 3, "I": {"_count": 2}, "what": {"_count": 1}}, "first": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "used": {"_count": 2, "it": {"_count": 1}, "to": {"_count": 1}}, "did": {"_count": 2, "something": {"_count": 1}, "Harry": {"_count": 1}}, "even": {"_count": 1, "": {"_count": 1}}, "gets": {"_count": 1, "home": {"_count": 1}}, "his": {"_count": 4, "job": {"_count": 1}, "eyes": {"_count": 1}, "godfather": {"_count": 1}, "untidy": {"_count": 1}}, "drumming": {"_count": 1, "his": {"_count": 1}}, "can": {"_count": 1, "give": {"_count": 1}}, "works": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 1, "Flint": {"_count": 1}}, "to": {"_count": 7, "son": {"_count": 2}, "rescue": {"_count": 1}, "give": {"_count": 1}, "leave": {"_count": 1}, "arrive": {"_count": 1}, "be": {"_count": 1}}, "witch": {"_count": 1, "mother": {"_count": 1}}, "Marvolo": {"_count": 1, "after": {"_count": 1}}, "he": {"_count": 4, "has": {"_count": 1}, "had": {"_count": 1}, "hissed": {"_count": 1}, "said": {"_count": 1}}, "what": {"_count": 1, "if": {"_count": 1}}, "finally": {"_count": 1, "got": {"_count": 1}}, "waving": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 2, "are": {"_count": 1}, "know": {"_count": 1}}, "saved": {"_count": 1, "my": {"_count": 1}}, "Potter": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 27, "his": {"_count": 2}, "Sirius": {"_count": 5}, "about": {"_count": 1}, "mother": {"_count": 2}, "brother": {"_count": 2}, "I": {"_count": 3}, "see": {"_count": 1}, "he": {"_count": 2}, "then": {"_count": 1}, "the": {"_count": 2}, "used": {"_count": 1}, "Harry": {"_count": 1}, "Bill": {"_count": 1}, "eldest": {"_count": 1}, "Marvolo": {"_count": 1}, "to": {"_count": 1}}, "hadnt": {"_count": 1, "got": {"_count": 1}}, "rang": {"_count": 1, "in": {"_count": 1}}, "Harry": {"_count": 3, "James": {"_count": 1}, "": {"_count": 1}, "let": {"_count": 1}}, "whod": {"_count": 1, "heard": {"_count": 1}}, "like": {"_count": 1, "son": {"_count": 1}}, "too": {"_count": 1, "arrogant": {"_count": 1}}, "Sirius": {"_count": 3, "tracked": {"_count": 1}, "and": {"_count": 1}, "Lupin": {"_count": 1}}, "was": {"_count": 12, "always": {"_count": 1}, "placed": {"_count": 1}, "the": {"_count": 2}, "going": {"_count": 1}, "after": {"_count": 1}, "a": {"_count": 4}, "on": {"_count": 1}, "expecting": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "is": {"_count": 3, "alive": {"_count": 1}, "very": {"_count": 1}, "safe": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "broomstick": {"_count": 1}, "newspaper": {"_count": 1}}, "all": {"_count": 1, "about": {"_count": 1}}, "asked": {"_count": 1, "": {"_count": 1}}, "hasnt": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 3, "what": {"_count": 1}, "a": {"_count": 1}, "instance": {"_count": 1}}, "thinks": {"_count": 1, "very": {"_count": 1}}, "were": {"_count": 2, "distinguishable": {"_count": 1}, "beaming": {"_count": 1}}, "of": {"_count": 3, "old": {"_count": 1}, "a": {"_count": 1}, "whom": {"_count": 1}}, "got": {"_count": 1, "me": {"_count": 1}}, "substitute": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "I": {"_count": 1}}, "never": {"_count": 1, "cared": {"_count": 1}}, "grew": {"_count": 1, "up": {"_count": 1}}, "Frank": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 3, "rapid": {"_count": 1}, "prison": {"_count": 1}, "miniature": {"_count": 1}}, "unknowingly": {"_count": 1, "given": {"_count": 1}}, "lived": {"_count": 1, "there": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "died": {"_count": 3, "": {"_count": 1}, "trying": {"_count": 1}, "and": {"_count": 1}}, "smuggled": {"_count": 1, "me": {"_count": 1}}, "do": {"_count": 1, "with": {"_count": 1}}, "subdue": {"_count": 1, "you": {"_count": 1}}, "arrived": {"_count": 1, "home": {"_count": 1}}, "that": {"_count": 1, "my": {"_count": 1}}, "led": {"_count": 1, "me": {"_count": 1}}, "kept": {"_count": 1, "me": {"_count": 1}}, "answered": {"_count": 1, "the": {"_count": 1}}, "escaped": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "hated": {"_count": 1, "Dark": {"_count": 1}}, "entering": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 2, "said": {"_count": 1}, "couldnt": {"_count": 1}}, "wouldve": {"_count": 1, "done": {"_count": 1}}, "however": {"_count": 1, "much": {"_count": 1}}, "put": {"_count": 1, "every": {"_count": 1}}, "hears": {"_count": 1, "": {"_count": 1}}, "runs": {"_count": 2, "The": {"_count": 1}, "some": {"_count": 1}}, "escorted": {"_count": 1, "him": {"_count": 1}}, "than": {"_count": 2, "I": {"_count": 2}}, "really": {"_count": 1, "well": {"_count": 1}}, "says": {"_count": 2, "theyve": {"_count": 1}, "its": {"_count": 1}}, "has": {"_count": 3, "been": {"_count": 1}, "done": {"_count": 1}, "lost": {"_count": 1}}, "whispered": {"_count": 1, "Mrs": {"_count": 1}}, "who": {"_count": 5, "had": {"_count": 1}, "never": {"_count": 1}, "was": {"_count": 2}, "hid": {"_count": 1}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "tormenting": {"_count": 1, "Snape": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "doesnt": {"_count": 1, "have": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 2}}, "always": {"_count": 1, "said": {"_count": 1}}, "cast": {"_count": 1, "him": {"_count": 1}}, "turned": {"_count": 1, "her": {"_count": 1}}, "have": {"_count": 1, "that": {"_count": 1}}, "warningly": {"_count": 1, "in": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "picked": {"_count": 1, "her": {"_count": 1}}, "use": {"_count": 1, "the": {"_count": 1}}, "yes": {"_count": 1, "I": {"_count": 1}}, "nor": {"_count": 1, "his": {"_count": 1}}, "or": {"_count": 1, "Siriuss": {"_count": 1}}, "Percival": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "Luna": {"_count": 1, "was": {"_count": 1}}, "Ron": {"_count": 1, "reappeared": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "might": {"_count": 1, "recognize": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "scooped": {"_count": 1, "up": {"_count": 1}}, "supported": {"_count": 1, "Harry": {"_count": 1}}, "looked": {"_count": 1, "beside": {"_count": 1}}, "went": {"_count": 1, "after": {"_count": 1}}, "slight": {"_count": 1, "blackhaired": {"_count": 1}}, "join": {"_count": 1, "Lily": {"_count": 1}}, "over": {"_count": 1, "again": {"_count": 1}}, "Lupin": {"_count": 1, "and": {"_count": 1}}, "nodded": {"_count": 1, "encouragement": {"_count": 1}}, "sought": {"_count": 1, "revenge": {"_count": 1}}, "alone": {"_count": 1, "and": {"_count": 1}}}, "kissed": {"_count": 27, "by": {"_count": 2, "his": {"_count": 1}, "Roger": {"_count": 1}}, "Percy": {"_count": 1, "on": {"_count": 1}}, "or": {"_count": 1, "rather": {"_count": 1}}, "all": {"_count": 1, "her": {"_count": 1}}, "her": {"_count": 3, "": {"_count": 2}, "twice": {"_count": 1}}, "Harry": {"_count": 3, "Fred": {"_count": 1}, "twice": {"_count": 1}, "Ron": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "him": {"_count": 7, "": {"_count": 1}, "on": {"_count": 2}, "looking": {"_count": 1}, "again": {"_count": 1}, "before": {"_count": 1}, "full": {"_count": 1}}, "the": {"_count": 2, "hem": {"_count": 2}}, "his": {"_count": 1, "mother": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}, "it": {"_count": 1, "then": {"_count": 1}}, "good": {"_count": 1, "bye": {"_count": 1}}, "Albus": {"_count": 1, "goodbye": {"_count": 1}}}, "Yet": {"_count": 48, "Harry": {"_count": 3, "Potter": {"_count": 1}, "couldnt": {"_count": 1}, "could": {"_count": 1}}, "sometimes": {"_count": 1, "he": {"_count": 1}}, "here": {"_count": 1, "it": {"_count": 1}}, "something": {"_count": 1, "had": {"_count": 1}}, "again": {"_count": 3, "Ronan": {"_count": 1}, "Cornelius": {"_count": 1}, "somebody": {"_count": 1}}, "the": {"_count": 5, "days": {"_count": 1}, "Sorting": {"_count": 1}, "only": {"_count": 1}, "sword": {"_count": 1}, "borrowed": {"_count": 1}}, "life": {"_count": 1, "at": {"_count": 1}}, "another": {"_count": 1, "unusual": {"_count": 1}}, "I": {"_count": 2, "met": {"_count": 1}, "too": {"_count": 1}}, "there": {"_count": 3, "was": {"_count": 3}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "those": {"_count": 1, "long": {"_count": 1}}, "how": {"_count": 2, "to": {"_count": 1}, "could": {"_count": 1}}, "somehow": {"_count": 1, "maybe": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}, "if": {"_count": 2, "he": {"_count": 1}, "Ron": {"_count": 1}}, "it": {"_count": 4, "couldnt": {"_count": 1}, "fitted": {"_count": 1}, "did": {"_count": 2}}, "you": {"_count": 6, "say": {"_count": 1}, "answer": {"_count": 1}, "helped": {"_count": 1}, "never": {"_count": 1}, "have": {"_count": 1}, "confide": {"_count": 1}}, "they": {"_count": 2, "left": {"_count": 1}, "remained": {"_count": 1}}, "unless": {"_count": 1, "Ron": {"_count": 1}}, "he": {"_count": 3, "need": {"_count": 1}, "was": {"_count": 1}, "no": {"_count": 1}}, "this": {"_count": 1, "hopeful": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "turning": {"_count": 1}}}, "Aunt": {"_count": 282, "Petunia": {"_count": 210, "was": {"_count": 14}, "often": {"_count": 1}, "obviously": {"_count": 1}, "": {"_count": 20}, "went": {"_count": 1}, "came": {"_count": 1}, "looking": {"_count": 2}, "looked": {"_count": 4}, "slowly": {"_count": 1}, "frantically": {"_count": 1}, "tired": {"_count": 1}, "had": {"_count": 17}, "hammering": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 26}, "took": {"_count": 2}, "burst": {"_count": 3}, "one": {"_count": 1}, "kept": {"_count": 1}, "through": {"_count": 2}, "shredded": {"_count": 1}, "didnt": {"_count": 3}, "suggested": {"_count": 1}, "dully": {"_count": 1}, "when": {"_count": 1}, "found": {"_count": 1}, "gave": {"_count": 3}, "suddenly": {"_count": 1}, "knocking": {"_count": 1}, "wouldnt": {"_count": 1}, "turning": {"_count": 1}, "promptly": {"_count": 1}, "rapturously": {"_count": 1}, "knew": {"_count": 1}, "calling": {"_count": 1}, "pointing": {"_count": 1}, "whisked": {"_count": 1}, "dug": {"_count": 1}, "faint": {"_count": 1}, "would": {"_count": 2}, "to": {"_count": 2}, "who": {"_count": 5}, "smoothing": {"_count": 1}, "snapped": {"_count": 2}, "hissed": {"_count": 1}, "kissed": {"_count": 1}, "wince": {"_count": 1}, "hated": {"_count": 1}, "usually": {"_count": 1}, "cooked": {"_count": 1}, "made": {"_count": 1}, "were": {"_count": 1}, "together": {"_count": 1}, "put": {"_count": 1}, "always": {"_count": 2}, "could": {"_count": 1}, "wailed": {"_count": 1}, "the": {"_count": 1}, "seemed": {"_count": 1}, "set": {"_count": 1}, "wasnt": {"_count": 1}, "peer": {"_count": 1}, "conversing": {"_count": 1}, "shrieked": {"_count": 1}, "staggered": {"_count": 1}, "started": {"_count": 2}, "from": {"_count": 1}, "hurled": {"_count": 1}, "screamed": {"_count": 4}, "screaming": {"_count": 1}, "stuck": {"_count": 1}, "unconcernedly": {"_count": 1}, "fondly": {"_count": 1}, "scream": {"_count": 1}, "said": {"_count": 3}, "at": {"_count": 1}, "negotiate": {"_count": 1}, "let": {"_count": 2}, "talking": {"_count": 1}, "glanced": {"_count": 1}, "instantly": {"_count": 1}, "in": {"_count": 4}, "exchanged": {"_count": 1}, "very": {"_count": 1}, "laid": {"_count": 1}, "clapped": {"_count": 1}, "ignored": {"_count": 2}, "nodded": {"_count": 1}, "uttered": {"_count": 1}, "now": {"_count": 1}, "beat": {"_count": 1}, "shoved": {"_count": 1}, "more": {"_count": 1}, "whimpered": {"_count": 2}, "that": {"_count": 1}, "did": {"_count": 1}, "speaking": {"_count": 1}, "however": {"_count": 1}, "but": {"_count": 1}, "fussily": {"_count": 1}, "froze": {"_count": 1}, "stopped": {"_count": 1}, "ran": {"_count": 1}, "continued": {"_count": 1}, "whose": {"_count": 1}}, "Petunias": {"_count": 18, "high": {"_count": 1}, "masterpiece": {"_count": 1}, "pudding": {"_count": 1}, "hand": {"_count": 2}, "sister": {"_count": 1}, "bony": {"_count": 2}, "room": {"_count": 1}, "eyes": {"_count": 1}, "thin": {"_count": 1}, "dying": {"_count": 1}, "outline": {"_count": 1}, "surgically": {"_count": 1}, "choosing": {"_count": 1}, "renewed": {"_count": 1}, "gleaming": {"_count": 2}}, "Marge": {"_count": 44, "": {"_count": 9}, "was": {"_count": 3}, "lived": {"_count": 1}, "had": {"_count": 4}, "coming": {"_count": 1}, "I": {"_count": 1}, "forget": {"_count": 1}, "loved": {"_count": 1}, "thrust": {"_count": 1}, "striding": {"_count": 1}, "and": {"_count": 1}, "bumped": {"_count": 1}, "as": {"_count": 1}, "growled": {"_count": 1}, "narrowed": {"_count": 1}, "started": {"_count": 3}, "on": {"_count": 1}, "reached": {"_count": 1}, "sputtered": {"_count": 1}, "mopping": {"_count": 1}, "smacking": {"_count": 1}, "loudly": {"_count": 1}, "taking": {"_count": 1}, "holding": {"_count": 1}, "swelling": {"_count": 1}, "suddenly": {"_count": 1}, "off": {"_count": 1}, "bad": {"_count": 1}, "Harry": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "Marges": {"_count": 6, "hugs": {"_count": 1}, "attention": {"_count": 1}, "back": {"_count": 1}, "voice": {"_count": 1}, "glass": {"_count": 1}, "whole": {"_count": 1}}, "Elladora": {"_count": 1, "": {"_count": 1}}, "Petuniaish": {"_count": 1, "way": {"_count": 1}}, "Bellatrix": {"_count": 1, "has": {"_count": 1}}}, "shrill": {"_count": 15, "voice": {"_count": 3, "that": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}}, "piercing": {"_count": 1, "voice": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 3, "unnatural": {"_count": 1}, "distant": {"_count": 1}, "panicky": {"_count": 1}}, "tinny": {"_count": 1, "whistling": {"_count": 1}}, "whistle": {"_count": 2, "blast": {"_count": 1}, "an": {"_count": 1}}, "giggle": {"_count": 1, "": {"_count": 1}}, "high": {"_count": 1, "pitched": {"_count": 1}}, "cackle": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "bats": {"_count": 1}}}, "noise": {"_count": 223, "of": {"_count": 16, "the": {"_count": 9}, "Ron": {"_count": 1}, "a": {"_count": 1}, "disgust": {"_count": 1}, "impatient": {"_count": 1}, "dissent": {"_count": 1}, "contempt": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 37, ".": {"_count": 32}, "?": {"_count": 5}}, "like": {"_count": 7, "a": {"_count": 3}, "chalk": {"_count": 1}, "an": {"_count": 2}, "miniature": {"_count": 1}}, "and": {"_count": 31, "he": {"_count": 1}, "the": {"_count": 5}, "pretending": {"_count": 3}, "then": {"_count": 4}, "there": {"_count": 1}, "suddenly": {"_count": 1}, "a": {"_count": 3}, "clutched": {"_count": 1}, "bustle": {"_count": 1}, "I": {"_count": 1}, "bodies": {"_count": 1}, "Mr": {"_count": 1}, "fired": {"_count": 1}, "began": {"_count": 1}, "both": {"_count": 1}, "Mrs": {"_count": 1}, "soared": {"_count": 1}, "clapped": {"_count": 1}, "all": {"_count": 1}, "someone": {"_count": 1}}, "Snape": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 11, "the": {"_count": 8}, "his": {"_count": 3}}, "brought": {"_count": 1, "him": {"_count": 1}}, "outside": {"_count": 1, "in": {"_count": 1}}, "than": {"_count": 2, "was": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 6, "coming": {"_count": 4}, "drifting": {"_count": 1}, "the": {"_count": 1}}, "announced": {"_count": 1, "Hagrids": {"_count": 1}}, "pinned": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 8, "erupted": {"_count": 1}, "met": {"_count": 1}, "might": {"_count": 2}, "sounded": {"_count": 1}, "was": {"_count": 1}, "they": {"_count": 1}, "made": {"_count": 1}}, "from": {"_count": 7, "his": {"_count": 1}, "the": {"_count": 1}, "behind": {"_count": 2}, "overhead": {"_count": 1}, "one": {"_count": 1}, "above": {"_count": 1}}, "the": {"_count": 6, "bars": {"_count": 1}, "peony": {"_count": 1}, "ship": {"_count": 1}, "deflected": {"_count": 1}, "Dark": {"_count": 1}, "benches": {"_count": 1}}, "died": {"_count": 1, "suddenly": {"_count": 1}}, "greeted": {"_count": 1, "them": {"_count": 1}}, "nearby": {"_count": 2, "": {"_count": 1}, "made": {"_count": 1}}, "behind": {"_count": 6, "him": {"_count": 3}, "them": {"_count": 2}, "Harry": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "bag": {"_count": 1}}, "rent": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 2, "out": {"_count": 1}, "from": {"_count": 1}}, "then": {"_count": 1, "shook": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 2, "began": {"_count": 1}, "looked": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "pulled": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "spread": {"_count": 1, "her": {"_count": 1}}, "also": {"_count": 1, "applauding": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "rolling": {"_count": 1, "up": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}, "reached": {"_count": 2, "their": {"_count": 1}, "him": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "sounded": {"_count": 1, "behind": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "nodding": {"_count": 1, "toward": {"_count": 1}}, "about": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "distracting": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "yowling": {"_count": 1}, "loud": {"_count": 1}}, "hurrying": {"_count": 1, "through": {"_count": 1}}, "attracted": {"_count": 1, "Filch": {"_count": 1}}, "but": {"_count": 5, "whether": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 1}, "before": {"_count": 1}, "Bill": {"_count": 1}}, "Potter": {"_count": 1, "a": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 2, "Mrs": {"_count": 1}, "his": {"_count": 1}}, "shouting": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 6, "though": {"_count": 3}, "the": {"_count": 1}, "Filch": {"_count": 1}, "she": {"_count": 1}}, "filled": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "it": {"_count": 1, "made": {"_count": 1}}, "beak": {"_count": 1, "still": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "they": {"_count": 2, "made": {"_count": 1}, "sank": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "level": {"_count": 2, "in": {"_count": 1}, "made": {"_count": 1}}, "somewhere": {"_count": 2, "between": {"_count": 2}}, "halfway": {"_count": 1, "between": {"_count": 1}}, "slowed": {"_count": 1, "and": {"_count": 1}}, "Malfoy": {"_count": 1, "gave": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "ahead": {"_count": 1, "made": {"_count": 1}}, "echoed": {"_count": 2, "all": {"_count": 1}, "off": {"_count": 1}}, "proved": {"_count": 1, "to": {"_count": 1}}, "between": {"_count": 1, "a": {"_count": 1}}, "Xenophilius": {"_count": 1, "was": {"_count": 1}}, "It": {"_count": 1, "will": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "ceased": {"_count": 1, "Fred": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "yet": {"_count": 1, "also": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}}, "Up": {"_count": 28, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "another": {"_count": 2, "escalator": {"_count": 1}, "staircase": {"_count": 1}}, "the": {"_count": 3, "front": {"_count": 1}, "marble": {"_count": 1}, "escalator": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 4}, "a": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 3}}, "you": {"_count": 3, "go": {"_count": 1}, "get": {"_count": 1}, "come": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "here": {"_count": 3, "if": {"_count": 1}, "said": {"_count": 1}, "then": {"_count": 1}}, "and": {"_count": 2, "down": {"_count": 2}}, "till": {"_count": 1, "now": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "Get": {"_count": 123, "up": {"_count": 14, "": {"_count": 4}, "said": {"_count": 1}, "Mr": {"_count": 1}, "Ill": {"_count": 1}, "Avery": {"_count": 1}, "you": {"_count": 1}, "Potter": {"_count": 1}, "now": {"_count": 1}, "here": {"_count": 1}, "vermin": {"_count": 1}, "climb": {"_count": 1}}, "the": {"_count": 4, "mail": {"_count": 2}, "door": {"_count": 1}, "Horcrux": {"_count": 1}}, "out": {"_count": 27, "both": {"_count": 1}, "of": {"_count": 20}, "your": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "get": {"_count": 1}}, "off": {"_count": 9, "Scabbers": {"_count": 1}, "": {"_count": 1}, "Ron": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 1}, "me": {"_count": 2}, "her": {"_count": 1}}, "it": {"_count": 5, "on": {"_count": 1}, "over": {"_count": 1}, "himself": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "yer": {"_count": 1, "wands": {"_count": 1}}, "in": {"_count": 6, "here": {"_count": 2}, "Ron": {"_count": 1}, "quick": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}}, "him": {"_count": 5, "Dad": {"_count": 1}, "red": {"_count": 1}, "get": {"_count": 1}, "save": {"_count": 1}, "to": {"_count": 1}}, "em": {"_count": 1, "all": {"_count": 1}}, "away": {"_count": 8, "from": {"_count": 6}, "bird": {"_count": 1}, "she": {"_count": 1}}, "to": {"_count": 4, "that": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 2}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "outta": {"_count": 1, "my": {"_count": 1}}, "Fang": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 7, "you": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 4}}, "too": {"_count": 1, "near": {"_count": 1}}, "a": {"_count": 2, "grip": {"_count": 2}}, "goin": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "your": {"_count": 2, "filthy": {"_count": 1}, "fat": {"_count": 1}}, "behind": {"_count": 1, "here": {"_count": 1}}, "on": {"_count": 3, "theres": {"_count": 1}, "with": {"_count": 1}, "his": {"_count": 1}}, "stuffed": {"_count": 1, "Malfoy": {"_count": 1}}, "going": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "down": {"_count": 5, "here": {"_count": 3}, "Fang": {"_count": 1}, "": {"_count": 1}}, "me": {"_count": 1, "a": {"_count": 1}}, "under": {"_count": 4, "here": {"_count": 3}, "the": {"_count": 1}}, "ready": {"_count": 1, "now": {"_count": 1}}, "over": {"_count": 1, "here": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "out": {"_count": 1}}}, "Now": {"_count": 405, "": {"_count": 27, "!": {"_count": 5}, "?": {"_count": 5}, ".": {"_count": 17}}, "what": {"_count": 11, "": {"_count": 6}, "am": {"_count": 1}, "do": {"_count": 1}, "are": {"_count": 1}, "were": {"_count": 2}}, "wait": {"_count": 5, "jus": {"_count": 1}, "quietly": {"_count": 1}, "just": {"_count": 1}, "a": {"_count": 1}, "here": {"_count": 1}}, "yer": {"_count": 1, "mum": {"_count": 1}}, "you": {"_count": 16, "listen": {"_count": 2}, "two": {"_count": 2}, "are": {"_count": 1}, "lot": {"_count": 1}, "mention": {"_count": 2}, "might": {"_count": 1}, "wanted": {"_count": 1}, "can": {"_count": 2}, "Cormac": {"_count": 1}, "will": {"_count": 1}, "first": {"_count": 1}, "tell": {"_count": 1}}, "he": {"_count": 27, "came": {"_count": 2}, "was": {"_count": 8}, "could": {"_count": 4}, "watched": {"_count": 1}, "zoomed": {"_count": 1}, "suddenly": {"_count": 1}, "remembers": {"_count": 1}, "continued": {"_count": 1}, "moved": {"_count": 1}, "retreated": {"_count": 1}, "scrambled": {"_count": 1}, "would": {"_count": 1}, "said": {"_count": 1}, "removed": {"_count": 1}, "seeks": {"_count": 1}, "saw": {"_count": 1}}, "they": {"_count": 7, "were": {"_count": 4}, "could": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 1}}, "whats": {"_count": 2, "the": {"_count": 1}, "up": {"_count": 1}}, "the": {"_count": 12, "third": {"_count": 1}, "last": {"_count": 1}, "Mandrakes": {"_count": 1}, "rainbow": {"_count": 1}, "ball": {"_count": 1}, "use": {"_count": 1}, "champions": {"_count": 1}, "burning": {"_count": 1}, "Vanishing": {"_count": 1}, "wounds": {"_count": 1}, "father": {"_count": 1}, "fire": {"_count": 1}}, "Percys": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 2, "were": {"_count": 1}, "was": {"_count": 1}}, "form": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 3, "I": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "hed": {"_count": 1, "done": {"_count": 1}}, "if": {"_count": 16, "you": {"_count": 8}, "any": {"_count": 1}, "ever": {"_count": 1}, "theres": {"_count": 1}, "yehve": {"_count": 1}, "I": {"_count": 1}, "we": {"_count": 1}, "Kendra": {"_count": 1}, "youll": {"_count": 1}}, "Quidditch": {"_count": 1, "is": {"_count": 1}}, "theres": {"_count": 2, "another": {"_count": 1}, "something": {"_count": 1}}, "dont": {"_count": 6, "forget": {"_count": 3}, "ask": {"_count": 1}, "be": {"_count": 1}, "panic": {"_count": 1}}, "I": {"_count": 17, "want": {"_count": 4}, "wanted": {"_count": 1}, "dont": {"_count": 1}, "think": {"_count": 2}, "imagine": {"_count": 1}, "have": {"_count": 1}, "hear": {"_count": 1}, "must": {"_count": 2}, "havent": {"_count": 1}, "come": {"_count": 1}, "suggest": {"_count": 1}, "should": {"_count": 1}}, "listen": {"_count": 5, "to": {"_count": 2}, "here": {"_count": 1}, "": {"_count": 1}, "closely": {"_count": 1}}, "can": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "why": {"_count": 4, "dont": {"_count": 1}, "did": {"_count": 1}, "would": {"_count": 1}, "havent": {"_count": 1}}, "get": {"_count": 6, "back": {"_count": 2}, "inside": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 2}}, "she": {"_count": 3, "watched": {"_count": 1}, "leaned": {"_count": 1}, "seemed": {"_count": 1}}, "give": {"_count": 4, "me": {"_count": 4}}, "enough": {"_count": 1, "questions": {"_count": 1}}, "as": {"_count": 7, "I": {"_count": 2}, "we": {"_count": 1}, "you": {"_count": 1}, "everybody": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}}, "we": {"_count": 7, "should": {"_count": 1}, "just": {"_count": 1}, "cant": {"_count": 1}, "know": {"_count": 2}, "need": {"_count": 1}, "wont": {"_count": 1}}, "that": {"_count": 15, "the": {"_count": 3}, "he": {"_count": 6}, "Filch": {"_count": 1}, "Scabbers": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}, "Potter": {"_count": 1}, "Dumbledore": {"_count": 1}}, "well": {"_count": 1, "go": {"_count": 1}}, "lets": {"_count": 4, "see": {"_count": 3}, "get": {"_count": 1}}, "shed": {"_count": 1, "said": {"_count": 1}}, "who": {"_count": 2, "can": {"_count": 1}, "knows": {"_count": 1}}, "be": {"_count": 1, "warned": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "Harry": {"_count": 13, "said": {"_count": 1}, "Im": {"_count": 1}, "understood": {"_count": 2}, "and": {"_count": 3}, "could": {"_count": 1}, "is": {"_count": 1}, "came": {"_count": 1}, "saw": {"_count": 1}, "was": {"_count": 1}, "opened": {"_count": 1}}, "now": {"_count": 7, "Malfoy": {"_count": 1}, "Im": {"_count": 1}, "Penny": {"_count": 1}, "Viktor": {"_count": 1}, "Percy": {"_count": 1}, "not": {"_count": 1}, "boys": {"_count": 1}}, "this": {"_count": 2, "one": {"_count": 2}}, "Im": {"_count": 2, "saying": {"_count": 1}, "going": {"_count": 1}}, "then": {"_count": 10, "": {"_count": 5}, "said": {"_count": 3}, "Professor": {"_count": 1}, "now": {"_count": 1}}, "have": {"_count": 1, "a": {"_count": 1}}, "hes": {"_count": 2, "accusing": {"_count": 1}, "in": {"_count": 1}}, "nobody": {"_count": 1, "seemed": {"_count": 1}}, "firs": {"_count": 1, "thing": {"_count": 1}}, "said": {"_count": 6, "Snape": {"_count": 1}, "Umbridge": {"_count": 1}, "Hepzibah": {"_count": 1}, "Dumbledore": {"_count": 1}, "Bellatrix": {"_count": 1}, "Voldemort": {"_count": 1}}, "With": {"_count": 1, "many": {"_count": 1}}, "Filch": {"_count": 2, "knows": {"_count": 1}, "if": {"_count": 1}}, "please": {"_count": 2, "stop": {"_count": 1}, "Minister": {"_count": 1}}, "really": {"_count": 4, "enoughs": {"_count": 1}, "": {"_count": 3}}, "was": {"_count": 3, "the": {"_count": 2}, "not": {"_count": 1}}, "will": {"_count": 2, "you": {"_count": 2}}, "my": {"_count": 2, "three": {"_count": 1}, "father": {"_count": 1}}, "Snape": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "pay": {"_count": 1, "attention": {"_count": 1}}, "it": {"_count": 4, "was": {"_count": 2}, "is": {"_count": 2}}, "with": {"_count": 1, "the": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "excuse": {"_count": 1, "me": {"_count": 1}}, "Mum": {"_count": 1, "said": {"_count": 1}}, "look": {"_count": 2, "here": {"_count": 1}, "Ogden": {"_count": 1}}, "mind": {"_count": 1, "you": {"_count": 1}}, "behave": {"_count": 1, "wont": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "slip": {"_count": 1, "me": {"_count": 1}}, "Ron": {"_count": 2, "the": {"_count": 1}, "have": {"_count": 1}}, "yehll": {"_count": 1, "wan": {"_count": 1}}, "your": {"_count": 2, "Head": {"_count": 1}, "mothers": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "thats": {"_count": 1, "more": {"_count": 1}}, "everyones": {"_count": 1, "attention": {"_count": 1}}, "Ive": {"_count": 2, "been": {"_count": 2}}, "however": {"_count": 8, "the": {"_count": 1}, "he": {"_count": 3}, "it": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "was": {"_count": 1}}, "just": {"_count": 2, "sit": {"_count": 1}, "a": {"_count": 1}}, "Youve": {"_count": 1, "Wised": {"_count": 1}}, "MadEye": {"_count": 1, "Moody": {"_count": 1}}, "Personally": {"_count": 1, "Involved": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Dumbledores": {"_count": 1, "told": {"_count": 1}}, "Wormtail": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "has": {"_count": 1, "your": {"_count": 1}}, "string": {"_count": 1, "them": {"_count": 1}}, "see": {"_count": 4, "the": {"_count": 1}, "here": {"_count": 3}}, "untie": {"_count": 1, "him": {"_count": 1}}, "working": {"_count": 1, "for": {"_count": 1}}, "Before": {"_count": 1, "anyone": {"_count": 1}}, "come": {"_count": 6, "on": {"_count": 4}, "": {"_count": 1}, "off": {"_count": 1}}, "Emmeline": {"_count": 1, "Vance": {"_count": 1}}, "stay": {"_count": 1, "still": {"_count": 1}}, "go": {"_count": 2, "away": {"_count": 1}, "and": {"_count": 1}}, "Stubby": {"_count": 1, "couldnt": {"_count": 1}}, "turned": {"_count": 1, "upon": {"_count": 1}}, "let": {"_count": 2, "me": {"_count": 2}}, "panicking": {"_count": 1, "slightly": {"_count": 1}}, "hand": {"_count": 2, "over": {"_count": 1}, "me": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "where": {"_count": 1, "is": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "thestrals": {"_count": 1, "Hem": {"_count": 1}}, "how": {"_count": 3, "many": {"_count": 1}, "about": {"_count": 1}, "are": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Occlumency": {"_count": 1, "": {"_count": 1}}, "seeing": {"_count": 1, "the": {"_count": 1}}, "kindly": {"_count": 1, "remove": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 2}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "Harrys": {"_count": 1, "heart": {"_count": 1}}, "Grawpy": {"_count": 1, "don": {"_count": 1}}, "Fathers": {"_count": 1, "been": {"_count": 1}}, "a": {"_count": 2, "cooling": {"_count": 1}, "gigantic": {"_count": 1}}, "turn": {"_count": 1, "around": {"_count": 1}}, "Potter": {"_count": 4, "either": {"_count": 1}, "He": {"_count": 1}, "as": {"_count": 1}, "said": {"_count": 1}}, "Sirius": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 2, "Herbert": {"_count": 1}, "tonight": {"_count": 1}}, "two": {"_count": 1, "more": {"_count": 1}}, "dear": {"_count": 2, "your": {"_count": 1}, "youre": {"_count": 1}}, "tell": {"_count": 1, "me": {"_count": 1}}, "all": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "drink": {"_count": 1, "that": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "your": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "Draco": {"_count": 2, "and": {"_count": 1}, "quickly": {"_count": 1}}, "show": {"_count": 1, "us": {"_count": 1}}, "Lupins": {"_count": 1, "tortured": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "paying": {"_count": 1, "attention": {"_count": 1}}, "approaching": {"_count": 1, "his": {"_count": 1}}, "revealed": {"_count": 1, "for": {"_count": 1}}, "fear": {"_count": 1, "came": {"_count": 1}}, "theyve": {"_count": 1, "put": {"_count": 1}}, "forced": {"_count": 1, "to": {"_count": 1}}, "Lily": {"_count": 1, "was": {"_count": 1}}, "Severus": {"_count": 1, "the": {"_count": 1}}}, "start": {"_count": 203, "": {"_count": 27, ".": {"_count": 21}, "!": {"_count": 4}, "?": {"_count": 2}}, "a": {"_count": 7, "fire": {"_count": 1}, "vendetta": {"_count": 1}, "panic": {"_count": 1}, "career": {"_count": 1}, "joke": {"_count": 2}, "conversation": {"_count": 1}}, "tapping": {"_count": 1, "the": {"_count": 1}}, "collecting": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "away": {"_count": 1}}, "of": {"_count": 24, "their": {"_count": 1}, "afternoon": {"_count": 2}, "the": {"_count": 10}, "term": {"_count": 4}, "October": {"_count": 1}, "every": {"_count": 1}, "December": {"_count": 1}, "an": {"_count": 1}, "surprise": {"_count": 1}, "a": {"_count": 2}}, "proving": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 3, "fall": {"_count": 1}, "a": {"_count": 1}, "find": {"_count": 1}}, "training": {"_count": 2, "next": {"_count": 1}, "you": {"_count": 1}}, "making": {"_count": 1, "objects": {"_count": 1}}, "somewhere": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "new": {"_count": 1}}, "on": {"_count": 7, "these": {"_count": 1}, "the": {"_count": 1}, "Professor": {"_count": 1}, "my": {"_count": 1}, "some": {"_count": 1}, "Friday": {"_count": 1}, "her": {"_count": 1}}, "telling": {"_count": 1, "them": {"_count": 1}}, "flying": {"_count": 1, "cars": {"_count": 1}}, "Harry": {"_count": 1, "its": {"_count": 1}}, "He": {"_count": 1, "gave": {"_count": 1}}, "any": {"_count": 1, "trouble": {"_count": 1}}, "today": {"_count": 1, "with": {"_count": 1}}, "now": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 2, "little": {"_count": 1}, "Harry": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "feeding": {"_count": 1, "Miss": {"_count": 1}}, "pouring": {"_count": 1, "a": {"_count": 1}}, "seeing": {"_count": 1, "death": {"_count": 1}}, "their": {"_count": 1, "fifth": {"_count": 1}}, "Be": {"_count": 1, "quiet": {"_count": 1}}, "hinkypunks": {"_count": 1, "Miss": {"_count": 1}}, "berating": {"_count": 1, "Hagrid": {"_count": 1}}, "serving": {"_count": 1, "themselves": {"_count": 1}}, "then": {"_count": 3, "tore": {"_count": 1}, "I": {"_count": 1}, "hurried": {"_count": 1}}, "told": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 7, "staring": {"_count": 1}, "it": {"_count": 1}, "wrenched": {"_count": 1}, "tried": {"_count": 1}, "scurried": {"_count": 1}, "perhaps": {"_count": 1}, "who": {"_count": 1}}, "by": {"_count": 2, "practicing": {"_count": 1}, "recruiting": {"_count": 1}}, "studying": {"_count": 1, "for": {"_count": 1}}, "arriving": {"_count": 1, "from": {"_count": 1}}, "thinking": {"_count": 2, "somethings": {"_count": 1}, "anythings": {"_count": 1}}, "pacing": {"_count": 1, "the": {"_count": 1}}, "beating": {"_count": 1, "himself": {"_count": 1}}, "trampling": {"_count": 1, "tents": {"_count": 1}}, "attacking": {"_count": 1, "us": {"_count": 1}}, "crying": {"_count": 2, "in": {"_count": 1}, "again": {"_count": 1}}, "he": {"_count": 1, "can": {"_count": 1}}, "at": {"_count": 1, "eight": {"_count": 1}}, "working": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 4, "until": {"_count": 1}, "stupid": {"_count": 1}, "again": {"_count": 2}}, "there": {"_count": 1, "were": {"_count": 1}}, "drinking": {"_count": 1, "only": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "offering": {"_count": 1, "to": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 6, "that": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}, "Ronald": {"_count": 1}}, "raging": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "descent": {"_count": 1}}, "shouting": {"_count": 4, "again": {"_count": 4}}, "asking": {"_count": 1, "questions": {"_count": 1}}, "handing": {"_count": 2, "out": {"_count": 2}}, "using": {"_count": 2, "his": {"_count": 1}, "wands": {"_count": 1}}, "spraying": {"_count": 1, "immediately": {"_count": 1}}, "shrieking": {"_count": 1, "again": {"_count": 1}}, "we": {"_count": 2, "know": {"_count": 1}, "need": {"_count": 1}}, "applauding": {"_count": 1, "properly": {"_count": 1}}, "arguing": {"_count": 1, "again": {"_count": 1}}, "II": {"_count": 1, "wanted": {"_count": 1}}, "McGonagalls": {"_count": 1, "Inanimatus": {"_count": 1}}, "youve": {"_count": 1, "made": {"_count": 1}}, "said": {"_count": 5, "Ron": {"_count": 2}, "Harry": {"_count": 1}, "Snape": {"_count": 1}, "Voldemort": {"_count": 1}}, "catching": {"_count": 1, "real": {"_count": 1}}, "throwing": {"_count": 1, "things": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "fighting": {"_count": 1, "YouKnowWho": {"_count": 1}}, "doing": {"_count": 2, "some": {"_count": 1}, "itself": {"_count": 1}}, "bleeding": {"_count": 1, "like": {"_count": 1}}, "kissing": {"_count": 1, "her": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 2}, "from": {"_count": 1}}, "nagging": {"_count": 1, "him": {"_count": 1}}, "its": {"_count": 1, "who": {"_count": 1}}, "moving": {"_count": 1, "people": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "off": {"_count": 1, "like": {"_count": 1}}, "our": {"_count": 1, "private": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "performing": {"_count": 1, "spells": {"_count": 1}}, "investigating": {"_count": 1, "the": {"_count": 1}}, "feeling": {"_count": 1, "guilty": {"_count": 1}}, "discussing": {"_count": 1, "it": {"_count": 1}}, "my": {"_count": 1, "fresh": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "appealing": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 3, "want": {"_count": 1}, "was": {"_count": 1}, "told": {"_count": 1}}, "acting": {"_count": 1, "as": {"_count": 1}}, "snogging": {"_count": 1, "each": {"_count": 1}}, "without": {"_count": 2, "Arthur": {"_count": 1}, "you": {"_count": 1}}, "pulling": {"_count": 1, "bunches": {"_count": 1}}, "straightaway": {"_count": 1, "": {"_count": 1}}, "crawling": {"_count": 1, "toward": {"_count": 1}}, "up": {"_count": 1, "inside": {"_count": 1}}, "Bathilda": {"_count": 1, "had": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}}, "rapped": {"_count": 13, "on": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 4, "glass": {"_count": 1}, "blackboard": {"_count": 1}, "counter": {"_count": 1}, "door": {"_count": 1}}, "Harry": {"_count": 2, "hard": {"_count": 2}}, "three": {"_count": 3, "times": {"_count": 3}}, "smartly": {"_count": 1, "over": {"_count": 1}}, "a": {"_count": 1, "certain": {"_count": 1}}}, "screeched": {"_count": 23, "": {"_count": 3, ".": {"_count": 3}}, "Voldemort": {"_count": 2, "": {"_count": 1}, "over": {"_count": 1}}, "to": {"_count": 3, "a": {"_count": 3}}, "shooting": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 3, "hooted": {"_count": 1}, "a": {"_count": 1}, "fell": {"_count": 1}}, "You": {"_count": 1, "is": {"_count": 1}}, "the": {"_count": 2, "words": {"_count": 1}, "woman": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "louder": {"_count": 1, "than": {"_count": 1}}, "Pansy": {"_count": 1, "to": {"_count": 1}}, "Hurry": {"_count": 1, "up": {"_count": 1}}, "Muriel": {"_count": 1, "swaying": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "pressing": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "in": {"_count": 1}}}, "walking": {"_count": 190, "toward": {"_count": 11, "the": {"_count": 2}, "them": {"_count": 6}, "him": {"_count": 3}}, "briskly": {"_count": 3, "toward": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}}, "sticks": {"_count": 3, "was": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "numbly": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 7, "Harry": {"_count": 1}, "the": {"_count": 3}, "and": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "onto": {"_count": 3, "the": {"_count": 3}}, "so": {"_count": 2, "fast": {"_count": 1}, "closely": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "with": {"_count": 5, "a": {"_count": 2}, "his": {"_count": 1}, "Crabbe": {"_count": 1}, "anyone": {"_count": 1}}, "backward": {"_count": 2, "at": {"_count": 1}, "beaming": {"_count": 1}}, "away": {"_count": 6, "in": {"_count": 1}, "down": {"_count": 1}, "from": {"_count": 1}, "when": {"_count": 1}, "each": {"_count": 1}, "": {"_count": 1}}, "into": {"_count": 10, "a": {"_count": 1}, "lunch": {"_count": 1}, "the": {"_count": 8}}, "across": {"_count": 3, "the": {"_count": 2}, "to": {"_count": 1}}, "upstairs": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "students": {"_count": 1, "to": {"_count": 1}}, "stick": {"_count": 16, "to": {"_count": 1}, "and": {"_count": 4}, "through": {"_count": 1}, "which": {"_count": 1}, "firmly": {"_count": 1}, "once": {"_count": 1}, "was": {"_count": 2}, "fell": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 1}}, "along": {"_count": 8, "the": {"_count": 3}, "another": {"_count": 1}, "right": {"_count": 1}, "undefended": {"_count": 1}, "discreetly": {"_count": 1}, "a": {"_count": 1}}, "carefully": {"_count": 1, "past": {"_count": 1}}, "between": {"_count": 1, "Crabbe": {"_count": 1}}, "quickly": {"_count": 2, "and": {"_count": 1}, "along": {"_count": 1}}, "over": {"_count": 6, "to": {"_count": 4}, "the": {"_count": 2}}, "through": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "back": {"_count": 6, "up": {"_count": 2}, "to": {"_count": 1}, "down": {"_count": 1}, "from": {"_count": 1}, "toward": {"_count": 1}}, "down": {"_count": 15, "the": {"_count": 5}, "to": {"_count": 5}, "corridors": {"_count": 2}, "a": {"_count": 2}, "that": {"_count": 1}}, "slowly": {"_count": 4, "to": {"_count": 1}, "nearer": {"_count": 1}, "because": {"_count": 1}, "up": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "sideways": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "round": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "straight": {"_count": 1, "through": {"_count": 1}}, "up": {"_count": 8, "the": {"_count": 3}, "toward": {"_count": 2}, "and": {"_count": 2}, "to": {"_count": 1}}, "side": {"_count": 1, "by": {"_count": 1}}, "past": {"_count": 7, "them": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "him": {"_count": 1}}, "Ron": {"_count": 1, "told": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 3, "into": {"_count": 1}, "the": {"_count": 2}}, "in": {"_count": 3, "on": {"_count": 1}, "a": {"_count": 2}}, "alongside": {"_count": 1, "the": {"_count": 1}}, "steadily": {"_count": 1, "toward": {"_count": 1}}, "and": {"_count": 4, "holding": {"_count": 1}, "talking": {"_count": 1}, "they": {"_count": 1}, "let": {"_count": 1}}, "very": {"_count": 1, "quickly": {"_count": 1}}, "heavily": {"_count": 1, "down": {"_count": 1}}, "any": {"_count": 1, "farther": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "twice": {"_count": 1, "around": {"_count": 1}}, "Malfoy": {"_count": 1, "and": {"_count": 1}}, "proudly": {"_count": 1, "in": {"_count": 1}}, "right": {"_count": 1, "past": {"_count": 1}}, "they": {"_count": 1, "too": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "forward": {"_count": 2, "so": {"_count": 1}, "and": {"_count": 1}}, "level": {"_count": 1, "with": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "had": {"_count": 1, "given": {"_count": 1}}, "leaned": {"_count": 1, "against": {"_count": 1}}, "alone": {"_count": 1, "into": {"_count": 1}}, "curved": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 1, "that": {"_count": 1}}, "blindly": {"_count": 1, "around": {"_count": 1}}, "meekly": {"_count": 1, "in": {"_count": 1}}, "nearby": {"_count": 1, "but": {"_count": 1}}, "though": {"_count": 1, "none": {"_count": 1}}}, "kitchen": {"_count": 233, "and": {"_count": 21, "then": {"_count": 2}, "by": {"_count": 1}, "felt": {"_count": 1}, "down": {"_count": 1}, "into": {"_count": 3}, "they": {"_count": 2}, "began": {"_count": 1}, "Hermione": {"_count": 1}, "up": {"_count": 1}, "trying": {"_count": 1}, "get": {"_count": 1}, "was": {"_count": 1}, "living": {"_count": 1}, "Mrs": {"_count": 1}, "back": {"_count": 1}, "adding": {"_count": 1}, "slammed": {"_count": 1}}, "": {"_count": 54, ".": {"_count": 51}, "?": {"_count": 3}}, "as": {"_count": 2, "Harry": {"_count": 1}, "though": {"_count": 1}}, "with": {"_count": 6, "his": {"_count": 1}, "red": {"_count": 1}, "the": {"_count": 2}, "great": {"_count": 1}, "geraniums": {"_count": 1}}, "scissors": {"_count": 1, "and": {"_count": 1}}, "doors": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "some": {"_count": 1}, "a": {"_count": 1}}, "the": {"_count": 3, "next": {"_count": 1}, "three": {"_count": 1}, "little": {"_count": 1}}, "still": {"_count": 1, "staring": {"_count": 1}}, "door": {"_count": 10, "behind": {"_count": 2}, "slammed": {"_count": 1}, "": {"_count": 2}, "swung": {"_count": 1}, "a": {"_count": 1}, "opened": {"_count": 2}, "had": {"_count": 1}}, "chimney": {"_count": 1, "as": {"_count": 1}}, "chair": {"_count": 3, "grinned": {"_count": 1}, "with": {"_count": 1}, "Hermione": {"_count": 1}}, "Mrs": {"_count": 2, "Dursley": {"_count": 1}, "Weasley": {"_count": 1}}, "table": {"_count": 15, "": {"_count": 3}, "and": {"_count": 3}, "holding": {"_count": 1}, "put": {"_count": 1}, "causing": {"_count": 1}, "swigging": {"_count": 1}, "glaring": {"_count": 1}, "in": {"_count": 2}, "but": {"_count": 1}, "with": {"_count": 1}}, "to": {"_count": 9, "find": {"_count": 1}, "give": {"_count": 1}, "me": {"_count": 1}, "block": {"_count": 1}, "investigate": {"_count": 1}, "the": {"_count": 2}, "breaking": {"_count": 1}, "see": {"_count": 1}}, "clean": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "was": {"_count": 5, "small": {"_count": 1}, "certainly": {"_count": 1}, "so": {"_count": 1}, "almost": {"_count": 1}, "getting": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "mantelpiece": {"_count": 2, "and": {"_count": 2}}, "his": {"_count": 2, "piggy": {"_count": 1}, "robes": {"_count": 1}}, "window": {"_count": 10, "": {"_count": 9}, "shut": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "Aunt": {"_count": 2, "Marge": {"_count": 1}, "Petunia": {"_count": 1}}, "fully": {"_count": 1, "dressed": {"_count": 1}}, "fire": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "exploded": {"_count": 1, "with": {"_count": 1}}, "doorway": {"_count": 1, "behind": {"_count": 1}}, "below": {"_count": 2, "echoed": {"_count": 1}, "": {"_count": 1}}, "looking": {"_count": 2, "extremely": {"_count": 1}, "frightened": {"_count": 1}}, "amid": {"_count": 1, "hearty": {"_count": 1}}, "both": {"_count": 1, "looking": {"_count": 1}}, "they": {"_count": 2, "saw": {"_count": 1}, "found": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "day": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "it": {"_count": 2, "would": {"_count": 1}, "was": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "beaming": {"_count": 1, "bowing": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "were": {"_count": 1, "outdoing": {"_count": 1}}, "many": {"_count": 1, "little": {"_count": 1}}, "Harry": {"_count": 2, "moved": {"_count": 1}, "had": {"_count": 1}}, "had": {"_count": 1, "an": {"_count": 1}}, "dropped": {"_count": 1, "the": {"_count": 1}}, "sill": {"_count": 1, "having": {"_count": 1}}, "fireplace": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "echoing": {"_count": 1, "in": {"_count": 1}}, "Moody": {"_count": 1, "had": {"_count": 1}}, "unit": {"_count": 1, "behind": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "especially": {"_count": 1, "not": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "holding": {"_count": 1}}, "slipped": {"_count": 1, "through": {"_count": 1}}, "of": {"_count": 2, "number": {"_count": 1}, "Grimmauld": {"_count": 1}}, "at": {"_count": 1, "large": {"_count": 1}}, "passing": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "this": {"_count": 1, "branch": {"_count": 1}}, "stealing": {"_count": 1, "furtive": {"_count": 1}}, "surfaces": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "twisting": {"_count": 1, "her": {"_count": 1}}, "spoke": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "sink": {"_count": 1, "peeling": {"_count": 1}}, "where": {"_count": 4, "laughing": {"_count": 1}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}, "Kreacher": {"_count": 1}}, "you": {"_count": 1, "no": {"_count": 1}}, "cupboard": {"_count": 2, "": {"_count": 2}}, "she": {"_count": 2, "said": {"_count": 1}, "started": {"_count": 1}}, "uncomfortably": {"_count": 1, "crowded": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "wall": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "sideboard": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "downstairs": {"_count": 1, "before": {"_count": 1}}, "cups": {"_count": 1, "of": {"_count": 1}}, "together": {"_count": 1, "helping": {"_count": 1}}, "wont": {"_count": 1, "they": {"_count": 1}}}, "frying": {"_count": 8, "pan": {"_count": 7, "being": {"_count": 1}, "sweetums": {"_count": 1}, "": {"_count": 4}, "onto": {"_count": 1}}, "eggs": {"_count": 1, "by": {"_count": 1}}}, "pan": {"_count": 10, "being": {"_count": 1, "put": {"_count": 1}}, "sweetums": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "for": {"_count": 1, "fragments": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "held": {"_count": 1}}}, "stove": {"_count": 12, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 3, "lighting": {"_count": 1}, "sounded": {"_count": 1}, "was": {"_count": 1}}, "was": {"_count": 1, "smoking": {"_count": 1}}, "while": {"_count": 1, "Mr": {"_count": 1}}, "to": {"_count": 1, "help": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "the": {"_count": 1, "sink": {"_count": 1}}, "which": {"_count": 1, "began": {"_count": 1}}}, "dream": {"_count": 93, "he": {"_count": 6, "had": {"_count": 2}, "told": {"_count": 1}, "didnt": {"_count": 1}, "asked": {"_count": 1}, "could": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 5, "a": {"_count": 1}, "it": {"_count": 2}, "Lord": {"_count": 1}, "Hermione": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 20}, "?": {"_count": 1}, "!": {"_count": 2}}, "or": {"_count": 2, "even": {"_count": 1}, "whatever": {"_count": 1}}, "up": {"_count": 2, "eh": {"_count": 1}, "an": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "first": {"_count": 1}}, "that": {"_count": 4, "Harry": {"_count": 1}, "had": {"_count": 1}, "they": {"_count": 1}, "Ron": {"_count": 1}}, "team": {"_count": 1, "I": {"_count": 1}}, "of": {"_count": 6, "it": {"_count": 1}, "": {"_count": 1}, "assuming": {"_count": 1}, "seeking": {"_count": 1}, "Rookwood": {"_count": 1}, "uniting": {"_count": 1}}, "broom": {"_count": 1, "Harry": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "theyd": {"_count": 1, "use": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "They": {"_count": 1, "hatched": {"_count": 1}}, "state": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 3, "now": {"_count": 1}, "was": {"_count": 1}, "real": {"_count": 1}}, "my": {"_count": 1, "greatest": {"_count": 1}}, "interpretation": {"_count": 2, "": {"_count": 2}}, "diary": {"_count": 7, "for": {"_count": 2}, "from": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "please": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "which": {"_count": 1}}, "quick": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "number": {"_count": 1}}, "this": {"_count": 1, "again": {"_count": 1}}, "changed": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 3, "had": {"_count": 2}, "went": {"_count": 1}}, "repeated": {"_count": 1, "Snape": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "willing": {"_count": 1, "Snape": {"_count": 1}}, "it": {"_count": 1, "swung": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "for": {"_count": 1}}, "says": {"_count": 1, "Skeeter": {"_count": 1}}, "but": {"_count": 1, "all": {"_count": 1}}, "is": {"_count": 1, "this": {"_count": 1}}}, "feeling": {"_count": 367, "hed": {"_count": 2, "had": {"_count": 1}, "just": {"_count": 1}}, "pleased": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 51, "only": {"_count": 1}, "he": {"_count": 14}, "Snape": {"_count": 1}, "there": {"_count": 2}, "this": {"_count": 4}, "if": {"_count": 2}, "unless": {"_count": 1}, "the": {"_count": 3}, "Cedric": {"_count": 1}, "Myrtle": {"_count": 1}, "Bagman": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 3}, "worsened": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 2}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}, "way": {"_count": 1}, "confident": {"_count": 1}, "a": {"_count": 1}, "something": {"_count": 2}, "had": {"_count": 1}, "exciting": {"_count": 1}, "Scrimgeour": {"_count": 1}, "she": {"_count": 2}}, "nervous": {"_count": 2, "": {"_count": 2}}, "more": {"_count": 4, "stupid": {"_count": 1}, "elated": {"_count": 1}, "and": {"_count": 1}, "humiliated": {"_count": 1}}, "foolish": {"_count": 1, "waved": {"_count": 1}}, "sitting": {"_count": 1, "there": {"_count": 1}}, "dazed": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 3, "had": {"_count": 1}, "said": {"_count": 2}}, "started": {"_count": 1, "coming": {"_count": 1}}, "he": {"_count": 10, "swooped": {"_count": 1}, "might": {"_count": 1}, "was": {"_count": 2}, "had": {"_count": 2}, "now": {"_count": 1}, "knew": {"_count": 1}, "too": {"_count": 1}, "thought": {"_count": 1}}, "they": {"_count": 3, "were": {"_count": 3}}, "": {"_count": 22, ".": {"_count": 13}, "?": {"_count": 9}}, "about": {"_count": 8, "it": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 2}, "her": {"_count": 1}, "going": {"_count": 1}, "burying": {"_count": 1}}, "happier": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "in": {"_count": 15, "the": {"_count": 4}, "his": {"_count": 10}, "them": {"_count": 1}}, "Saturday": {"_count": 1, "couldnt": {"_count": 1}}, "didnt": {"_count": 1, "have": {"_count": 1}}, "suddenly": {"_count": 2, "surged": {"_count": 1}, "empty": {"_count": 1}}, "distinctly": {"_count": 3, "hot": {"_count": 1}, "aggrieved": {"_count": 1}, "unrested": {"_count": 1}}, "of": {"_count": 43, "panic": {"_count": 1}, "great": {"_count": 3}, "unease": {"_count": 2}, "foreboding": {"_count": 3}, "disappointment": {"_count": 1}, "anticipation": {"_count": 1}, "shame": {"_count": 2}, "barely": {"_count": 1}, "wellbeing": {"_count": 1}, "stupidity": {"_count": 1}, "increasing": {"_count": 2}, "frustration": {"_count": 1}, "hopelessness": {"_count": 2}, "mingled": {"_count": 3}, "a": {"_count": 3}, "giddy": {"_count": 1}, "ill": {"_count": 1}, "relief": {"_count": 1}, "immense": {"_count": 1}, "team": {"_count": 1}, "being": {"_count": 1}, "horror": {"_count": 1}, "pity": {"_count": 1}, "dread": {"_count": 1}, "power": {"_count": 1}, "elation": {"_count": 1}, "horrible": {"_count": 1}, "personal": {"_count": 1}, "the": {"_count": 1}, "tingling": {"_count": 1}, "reckless": {"_count": 1}}, "grateful": {"_count": 1, "for": {"_count": 1}}, "a": {"_count": 14, "bit": {"_count": 6}, "lot": {"_count": 1}, "particularly": {"_count": 1}, "grim": {"_count": 1}, "powerful": {"_count": 1}, "savage": {"_count": 1}, "mounting": {"_count": 1}, "little": {"_count": 1}, "definite": {"_count": 1}}, "slightly": {"_count": 9, "hurt": {"_count": 1}, "more": {"_count": 1}, "uneasy": {"_count": 1}, "hot": {"_count": 1}, "bemused": {"_count": 1}, "reckless": {"_count": 1}, "dazed": {"_count": 1}, "tender": {"_count": 1}, "disgruntled": {"_count": 1}}, "it": {"_count": 7, "would": {"_count": 3}, "was": {"_count": 2}, "when": {"_count": 1}, "had": {"_count": 1}}, "so": {"_count": 4, "angry": {"_count": 2}, "happy": {"_count": 1}, "miserable": {"_count": 1}}, "sick": {"_count": 3, "": {"_count": 2}, "again": {"_count": 1}}, "as": {"_count": 11, "the": {"_count": 1}, "though": {"_count": 6}, "exhausted": {"_count": 1}, "himself": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}}, "or": {"_count": 1, "he": {"_count": 1}}, "expectant": {"_count": 1, "and": {"_count": 1}}, "Gryffindors": {"_count": 1, "chances": {"_count": 1}}, "his": {"_count": 8, "way": {"_count": 1}, "forehead": {"_count": 1}, "spirits": {"_count": 1}, "eyebrows": {"_count": 1}, "face": {"_count": 2}, "ribs": {"_count": 1}, "now": {"_count": 1}}, "unaccountably": {"_count": 1, "nervous": {"_count": 1}}, "thoroughly": {"_count": 2, "miserable": {"_count": 1}, "depressed": {"_count": 1}}, "increasingly": {"_count": 1, "nervous": {"_count": 1}}, "worse": {"_count": 2, "than": {"_count": 1}, "by": {"_count": 1}}, "goose": {"_count": 1, "bumps": {"_count": 1}}, "around": {"_count": 3, "in": {"_count": 1}, "frantically": {"_count": 1}, "for": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "cheerful": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 3, "ill": {"_count": 1}, "resentful": {"_count": 1}, "happy": {"_count": 1}}, "every": {"_count": 1, "happy": {"_count": 1}}, "stunned": {"_count": 1, "Im": {"_count": 1}}, "cold": {"_count": 1, "sweat": {"_count": 1}}, "sorry": {"_count": 3, "for": {"_count": 3}}, "hot": {"_count": 1, "from": {"_count": 1}}, "very": {"_count": 4, "thirsty": {"_count": 1}, "happy": {"_count": 1}, "sad": {"_count": 1}, "apprehensive": {"_count": 1}}, "like": {"_count": 2, "he": {"_count": 1}, "this": {"_count": 1}}, "the": {"_count": 10, "great": {"_count": 1}, "stares": {"_count": 1}, "muscles": {"_count": 1}, "first": {"_count": 1}, "warm": {"_count": 1}, "pain": {"_count": 1}, "same": {"_count": 1}, "blood": {"_count": 1}, "aches": {"_count": 1}, "walls": {"_count": 1}}, "miserable": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "stupid": {"_count": 1, "someone": {"_count": 1}}, "calluses": {"_count": 1, "and": {"_count": 1}}, "extremely": {"_count": 2, "well": {"_count": 1}, "stupid": {"_count": 1}}, "immensely": {"_count": 1, "relaxed": {"_count": 1}}, "exacerbated": {"_count": 1, "perhaps": {"_count": 1}}, "for": {"_count": 2, "days": {"_count": 1}, "the": {"_count": 1}}, "really": {"_count": 2, "annoyed": {"_count": 1}, "stupid": {"_count": 1}}, "Rita": {"_count": 1, "Skeeters": {"_count": 1}}, "she": {"_count": 1, "didnt": {"_count": 1}}, "since": {"_count": 1, "Saturday": {"_count": 1}}, "himself": {"_count": 1, "going": {"_count": 1}}, "rather": {"_count": 2, "flat": {"_count": 1}, "like": {"_count": 1}}, "considerably": {"_count": 1, "more": {"_count": 1}}, "much": {"_count": 2, "taller": {"_count": 1}, "less": {"_count": 1}}, "all": {"_count": 4, "right": {"_count": 3}, "misunderstood": {"_count": 1}}, "quite": {"_count": 2, "as": {"_count": 1}, "resentful": {"_count": 1}}, "their": {"_count": 2, "curses": {"_count": 1}, "own": {"_count": 1}}, "particularly": {"_count": 1, "murderous": {"_count": 1}}, "was": {"_count": 3, "in": {"_count": 1}, "clearly": {"_count": 1}, "of": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "admittedly": {"_count": 1, "his": {"_count": 1}}, "pretty": {"_count": 1, "antiwizard": {"_count": 1}}, "uncomfortably": {"_count": 1, "tight": {"_count": 1}}, "both": {"_count": 2, "impatient": {"_count": 1}, "annoyed": {"_count": 1}}, "guilty": {"_count": 4, "": {"_count": 2}, "thinking": {"_count": 1}, "for": {"_count": 1}}, "unusually": {"_count": 1, "fond": {"_count": 1}}, "Moodys": {"_count": 1, "magical": {"_count": 1}}, "pleasantly": {"_count": 1, "drowsy": {"_count": 1}}, "cranky": {"_count": 1, "said": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "drained": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 5, "the": {"_count": 3}, "peace": {"_count": 1}, "all": {"_count": 1}}, "quietly": {"_count": 1, "elated": {"_count": 1}}, "ashamed": {"_count": 1, "of": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}, "well": {"_count": 2, "": {"_count": 2}}, "angry": {"_count": 1, "at": {"_count": 1}}, "hatred": {"_count": 1, "I": {"_count": 1}}, "confused": {"_count": 1, "because": {"_count": 1}}, "insulted": {"_count": 1, "": {"_count": 1}}, "harddoneby": {"_count": 1, "to": {"_count": 1}}, "sorrier": {"_count": 1, "for": {"_count": 1}}, "er": {"_count": 1, "best": {"_count": 1}}, "ill": {"_count": 1, "": {"_count": 1}}, "jumpy": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "tension": {"_count": 1}}, "annoyed": {"_count": 1, "with": {"_count": 1}}, "Umbridge": {"_count": 1, "has": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "vampires": {"_count": 1, "had": {"_count": 1}}, "powerful": {"_count": 1, "emotion": {"_count": 1}}, "when": {"_count": 2, "his": {"_count": 1}, "you": {"_count": 1}}, "rose": {"_count": 2, "in": {"_count": 2}}, "an": {"_count": 1, "odd": {"_count": 1}}, "apparently": {"_count": 1, "shared": {"_count": 1}}, "mutinous": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "way": {"_count": 1}}, "sicker": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "need": {"_count": 1}}, "to": {"_count": 1, "remember": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "Reg": {"_count": 1, "Cattermole": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "youd": {"_count": 1, "be": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "extinguished": {"_count": 1, "the": {"_count": 1}}}, "Are": {"_count": 179, "you": {"_count": 160, "up": {"_count": 1}, "": {"_count": 2}, "there": {"_count": 2}, "really": {"_count": 3}, "sure": {"_count": 22}, "serious": {"_count": 3}, "trying": {"_count": 3}, "all": {"_count": 27}, "crazy": {"_count": 2}, "a": {"_count": 5}, "ghoulie": {"_count": 1}, "coming": {"_count": 3}, "okay": {"_count": 10}, "speaking": {"_count": 1}, "two": {"_count": 1}, "cra2y": {"_count": 1}, "going": {"_count": 11}, "planning": {"_count": 3}, "you": {"_count": 1}, "telling": {"_count": 6}, "mad": {"_count": 3}, "still": {"_count": 3}, "quite": {"_count": 2}, "insane": {"_count": 2}, "expecting": {"_count": 1}, "seventeen": {"_count": 1}, "watching": {"_count": 1}, "paying": {"_count": 1}, "saying": {"_count": 5}, "in": {"_count": 1}, "kidding": {"_count": 1}, "ready": {"_count": 1}, "taking": {"_count": 1}, "feeling": {"_count": 3}, "aware": {"_count": 1}, "that": {"_count": 1}, "calling": {"_count": 1}, "ill": {"_count": 1}, "threatening": {"_count": 2}, "leaving": {"_count": 1}, "hungry": {"_count": 1}, "scared": {"_count": 1}, "or": {"_count": 1}, "pureblood": {"_count": 1}, "selling": {"_count": 1}, "family": {"_count": 1}, "out": {"_count": 1}, "actually": {"_count": 1}, "Harry": {"_count": 1}, "er": {"_count": 1}, "contradicting": {"_count": 1}, "staying": {"_count": 1}, "Bathilda": {"_count": 1}, "mental": {"_count": 2}, "referring": {"_count": 1}, "are": {"_count": 1}, "talking": {"_count": 1}, "intending": {"_count": 1}}, "all": {"_count": 1, "your": {"_count": 1}}, "we": {"_count": 7, "allowed": {"_count": 1}, "doing": {"_count": 1}, "not": {"_count": 1}, "still": {"_count": 1}, "going": {"_count": 2}, "the": {"_count": 1}}, "there": {"_count": 3, "many": {"_count": 1}, "big": {"_count": 1}, "still": {"_count": 1}}, "twins": {"_count": 1, "once": {"_count": 1}}, "Taking": {"_count": 1, "Control": {"_count": 1}}, "Morons": {"_count": 1, "Group": {"_count": 1}}, "they": {"_count": 3, "hidden": {"_count": 1}, "doctors": {"_count": 1}, "fish": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "yeh": {"_count": 1, "happy": {"_count": 1}}}, "yet": {"_count": 428, "": {"_count": 94, "?": {"_count": 35}, ".": {"_count": 49}, "!": {"_count": 10}}, "another": {"_count": 24, "pocket": {"_count": 1}, "goblin": {"_count": 1}, "bend": {"_count": 1}, "impression": {"_count": 1}, "hour": {"_count": 1}, "wall": {"_count": 1}, "piece": {"_count": 1}, "emotional": {"_count": 1}, "head": {"_count": 1}, "corridor": {"_count": 2}, "kiss": {"_count": 1}, "essay": {"_count": 1}, "detention": {"_count": 1}, "note": {"_count": 2}, "back": {"_count": 1}, "poke": {"_count": 1}, "notice": {"_count": 1}, "long": {"_count": 1}, "gulp": {"_count": 1}, "tragedy": {"_count": 1}, "familiar": {"_count": 1}, "goblet": {"_count": 1}}, "somehow": {"_count": 2, "even": {"_count": 1}, "they": {"_count": 1}}, "more": {"_count": 6, "goblins": {"_count": 1}, "water": {"_count": 1}, "discussion": {"_count": 1}, "homework": {"_count": 1}, "champagne": {"_count": 1}, "terrible": {"_count": 1}}, "yehll": {"_count": 1, "need": {"_count": 1}}, "he": {"_count": 31, "chewed": {"_count": 1}, "sometimes": {"_count": 1}, "could": {"_count": 6}, "went": {"_count": 1}, "had": {"_count": 6}, "sensed": {"_count": 1}, "told": {"_count": 1}, "thought": {"_count": 2}, "knew": {"_count": 2}, "did": {"_count": 1}, "was": {"_count": 4}, "felt": {"_count": 1}, "kept": {"_count": 1}, "continued": {"_count": 1}, "still": {"_count": 1}, "made": {"_count": 1}}, "again": {"_count": 35, "to": {"_count": 3}, "but": {"_count": 3}, "": {"_count": 12}, "Kill": {"_count": 1}, "and": {"_count": 4}, "clutching": {"_count": 1}, "in": {"_count": 2}, "the": {"_count": 2}, "Harry": {"_count": 1}, "he": {"_count": 1}, "kneeling": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}, "how": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "what": {"_count": 2, "on": {"_count": 1}, "if": {"_count": 1}}, "in": {"_count": 2, "wise": {"_count": 1}, "place": {"_count": 1}}, "said": {"_count": 19, "Wood": {"_count": 1}, "Ron": {"_count": 2}, "Percy": {"_count": 1}, "Hermione": {"_count": 2}, "Hagrid": {"_count": 1}, "Fred": {"_count": 2}, "Harry": {"_count": 5}, "Bill": {"_count": 1}, "Sirius": {"_count": 2}, "George": {"_count": 1}, "Dumbledore": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "they": {"_count": 1}, "if": {"_count": 1}}, "the": {"_count": 8, "Ministry": {"_count": 1}, "darkness": {"_count": 1}, "unexpected": {"_count": 1}, "memory": {"_count": 1}, "slits": {"_count": 1}, "square": {"_count": 1}, "fiercer": {"_count": 1}, "pain": {"_count": 1}}, "but": {"_count": 5, "help": {"_count": 1}, "its": {"_count": 1}, "resisted": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "she": {"_count": 5, "said": {"_count": 2}, "was": {"_count": 2}, "breathed": {"_count": 1}}, "were": {"_count": 4, "going": {"_count": 1}, "due": {"_count": 1}, "still": {"_count": 1}, "working": {"_count": 1}}, "effective": {"_count": 1, "and": {"_count": 1}}, "though": {"_count": 1, "because": {"_count": 1}}, "Id": {"_count": 1, "say": {"_count": 1}}, "closer": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 4, "quiet": {"_count": 1}, "they": {"_count": 1}, "be": {"_count": 1}, "damaged": {"_count": 1}}, "dreaded": {"_count": 1, "what": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "here": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 13, "Potter": {"_count": 1}, "": {"_count": 1}, "knew": {"_count": 1}, "simply": {"_count": 1}, "could": {"_count": 1}, "thought": {"_count": 1}, "was": {"_count": 2}, "despite": {"_count": 1}, "had": {"_count": 1}, "found": {"_count": 1}, "fell": {"_count": 1}, "sped": {"_count": 1}}, "whod": {"_count": 1, "been": {"_count": 1}}, "failed": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "farther": {"_count": 1, "north": {"_count": 1}}, "to": {"_count": 4, "come": {"_count": 1}, "see": {"_count": 1}, "be": {"_count": 1}, "protect": {"_count": 1}}, "unable": {"_count": 2, "to": {"_count": 2}}, "has": {"_count": 2, "he": {"_count": 2}}, "assumed": {"_count": 1, "a": {"_count": 1}}, "know": {"_count": 5, "what": {"_count": 2}, "": {"_count": 1}, "said": {"_count": 1}, "about": {"_count": 1}}, "it": {"_count": 7, "requires": {"_count": 1}, "was": {"_count": 5}, "seemed": {"_count": 1}}, "Dumbledore": {"_count": 1, "remained": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}}, "his": {"_count": 5, "hand": {"_count": 1}, "heart": {"_count": 1}, "writing": {"_count": 1}, "wishes": {"_count": 1}, "suspicions": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "Black": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "Ludo": {"_count": 1, "": {"_count": 1}}, "seen": {"_count": 3, "": {"_count": 1}, "inside": {"_count": 1}, "a": {"_count": 1}}, "determined": {"_count": 2, "all": {"_count": 1}, "Ive": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 1}, "dinner": {"_count": 1}}, "been": {"_count": 3, "wrong": {"_count": 1}, "followed": {"_count": 1}, "able": {"_count": 1}}, "at": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "heard": {"_count": 1, "": {"_count": 1}}, "used": {"_count": 2, "Harry": {"_count": 1}, "to": {"_count": 1}}, "discovered": {"_count": 1, "what": {"_count": 1}}, "started": {"_count": 1, "yelling": {"_count": 1}}, "lost": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "getting": {"_count": 1, "paid": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Moody": {"_count": 1, "had": {"_count": 1}}, "a": {"_count": 1, "boy": {"_count": 1}}, "there": {"_count": 4, "was": {"_count": 4}}, "you": {"_count": 4, "ran": {"_count": 1}, "conjured": {"_count": 1}, "must": {"_count": 1}, "expect": {"_count": 1}}, "strong": {"_count": 1, "enough": {"_count": 1}}, "managed": {"_count": 3, "to": {"_count": 3}}, "Molly": {"_count": 1, "said": {"_count": 1}}, "no": {"_count": 1, "funny": {"_count": 1}}, "an": {"_count": 1, "unknown": {"_count": 1}}, "how": {"_count": 1, "strict": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "as": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "now": {"_count": 2, "Percy": {"_count": 1}, "": {"_count": 1}}, "Ill": {"_count": 1, "speak": {"_count": 1}}, "Does": {"_count": 1, "it": {"_count": 1}}, "quite": {"_count": 1, "certain": {"_count": 1}}, "Anthony": {"_count": 1, "did": {"_count": 1}}, "make": {"_count": 1, "him": {"_count": 1}}, "having": {"_count": 1, "to": {"_count": 1}}, "led": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "read": {"_count": 1, "": {"_count": 1}}, "Miss": {"_count": 1, "Prissy": {"_count": 1}}, "unknown": {"_count": 1, "to": {"_count": 1}}, "angular": {"_count": 1, "he": {"_count": 1}}, "uprooted": {"_count": 1, "": {"_count": 1}}, "rigid": {"_count": 1, "with": {"_count": 1}}, "dealt": {"_count": 1, "Sirius": {"_count": 1}}, "was": {"_count": 2, "not": {"_count": 1}, "apart": {"_count": 1}}, "burned": {"_count": 1, "whitehot": {"_count": 1}}, "The": {"_count": 1, "woman": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "barely": {"_count": 1, "understanding": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "still": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "alive": {"_count": 1, "and": {"_count": 1}}, "knowing": {"_count": 1, "how": {"_count": 1}}, "never": {"_count": 1, "wavered": {"_count": 1}}, "corrected": {"_count": 1, "this": {"_count": 1}}, "sitting": {"_count": 1, "here": {"_count": 1}}, "sighed": {"_count": 1, "Hermione": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "succeeded": {"_count": 1, "": {"_count": 1}}, "sadly": {"_count": 1, "accidental": {"_count": 1}}, "nobody": {"_count": 2, "could": {"_count": 1}, "made": {"_count": 1}}, "as": {"_count": 1, "old": {"_count": 1}}, "tracked": {"_count": 1, "down": {"_count": 1}}, "because": {"_count": 2, "Mum": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 2, "his": {"_count": 1}, "some": {"_count": 1}}, "spread": {"_count": 1, "": {"_count": 1}}, "prove": {"_count": 1, "his": {"_count": 1}}, "detected": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 1, "discovering": {"_count": 1}}, "scarlet": {"_count": 1, "the": {"_count": 1}}, "masklike": {"_count": 1, "and": {"_count": 1}}, "tried": {"_count": 2, "": {"_count": 1}, "casting": {"_count": 1}}, "have": {"_count": 1, "dried": {"_count": 1}}, "given": {"_count": 1, "up": {"_count": 1}}, "realized": {"_count": 1, "anything": {"_count": 1}}, "near": {"_count": 1, "enough": {"_count": 1}}, "approaching": {"_count": 1, "then": {"_count": 1}}, "wonderful": {"_count": 1, "": {"_count": 1}}, "Elphias": {"_count": 1, "Doges": {"_count": 1}}, "George": {"_count": 1, "said": {"_count": 1}}, "then": {"_count": 1, "leaned": {"_count": 1}}, "with": {"_count": 1, "that": {"_count": 1}}, "risen": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "Doge": {"_count": 1}}, "deserted": {"_count": 1, "except": {"_count": 1}}, "they": {"_count": 1, "came": {"_count": 1}}, "transfixed": {"_count": 1, "the": {"_count": 1}}, "Scabior": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}, "Harrys": {"_count": 1, "grief": {"_count": 1}}, "why": {"_count": 1, "your": {"_count": 1}}, "almost": {"_count": 1, "perfectly": {"_count": 1}}, "I": {"_count": 1, "confess": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "who": {"_count": 1, "reached": {"_count": 1}}, "slightly": {"_count": 1, "intimidating": {"_count": 1}}, "charred": {"_count": 1, "like": {"_count": 1}}, "formed": {"_count": 1, "into": {"_count": 1}}, "also": {"_count": 1, "slightly": {"_count": 1}}}, "demanded": {"_count": 69, "": {"_count": 16, ".": {"_count": 16}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 8, "seizing": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "reappearing": {"_count": 1}, "eyeing": {"_count": 1}, "incredulously": {"_count": 1}, "whenever": {"_count": 1}}, "of": {"_count": 6, "Mrs": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "thin": {"_count": 1}, "Mr": {"_count": 1}}, "looking": {"_count": 1, "from": {"_count": 1}}, "Sirius": {"_count": 1, "his": {"_count": 1}}, "suddenly": {"_count": 2, "pointing": {"_count": 1}, "": {"_count": 1}}, "Terry": {"_count": 1, "Boot": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "while": {"_count": 1, "Fang": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}}, "Snape": {"_count": 2, "": {"_count": 2}}, "Umbridge": {"_count": 2, "and": {"_count": 1}, "angrily": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 3, "jumping": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}}, "Fudge": {"_count": 1, "heatedly": {"_count": 1}}, "Slughorn": {"_count": 2, "": {"_count": 2}}, "Harry": {"_count": 5, "": {"_count": 5}}, "that": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 1, "know": {"_count": 1}}, "Ginny": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "Fleur": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "old": {"_count": 1}, "goblin": {"_count": 1}}, "Michael": {"_count": 1, "Corner": {"_count": 1}}, "Albus": {"_count": 1, "as": {"_count": 1}}}, "bacon": {"_count": 23, "": {"_count": 5, ".": {"_count": 5}}, "on": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "and": {"_count": 2, "steak": {"_count": 1}, "eggs": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "flop": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "sandwiches": {"_count": 2, "each": {"_count": 1}, "were": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 1, "twins": {"_count": 1}}, "rinds": {"_count": 1, "which": {"_count": 1}}, "with": {"_count": 1, "difficulty": {"_count": 1}}, "eggs": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "onto": {"_count": 1, "Harrys": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "sandwich": {"_count": 1, "": {"_count": 1}}}, "burn": {"_count": 37, "I": {"_count": 1, "want": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 4}}, "with": {"_count": 2, "anger": {"_count": 2}}, "on": {"_count": 4, "this": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "sting": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 7, "wouldnt": {"_count": 1}, "they": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "show": {"_count": 1}, "multiply": {"_count": 1}, "he": {"_count": 1}}, "so": {"_count": 1, "fiercely": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "mark": {"_count": 2, "between": {"_count": 1}, "": {"_count": 1}}, "Bellatrix": {"_count": 1, "Black": {"_count": 1}}, "evermore": {"_count": 1, "which": {"_count": 1}}, "he": {"_count": 1, "bit": {"_count": 1}}, "sage": {"_count": 1, "and": {"_count": 1}}, "Correct": {"_count": 1, "": {"_count": 1}}, "red": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "feeling": {"_count": 1, "back": {"_count": 1}}, "away": {"_count": 1, "a": {"_count": 1}}, "beneath": {"_count": 1, "": {"_count": 1}}}, "Duddys": {"_count": 2, "birthday": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}}, "birthday": {"_count": 84, "": {"_count": 14, ".": {"_count": 8}, "!": {"_count": 4}, "?": {"_count": 2}}, "how": {"_count": 1, "could": {"_count": 1}}, "presents": {"_count": 5, "": {"_count": 3}, "contained": {"_count": 1}, "of": {"_count": 1}}, "his": {"_count": 1, "parents": {"_count": 1}}, "tick": {"_count": 1, "nearer": {"_count": 1}}, "to": {"_count": 3, "yeh": {"_count": 1}, "me": {"_count": 2}}, "cake": {"_count": 6, "neither": {"_count": 1}, "": {"_count": 3}, "which": {"_count": 1}, "is": {"_count": 1}}, "present": {"_count": 6, "": {"_count": 4}, "the": {"_count": 1}, "but": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 2}}, "last": {"_count": 2, "year": {"_count": 1}, "week": {"_count": 1}}, "sneered": {"_count": 1, "Dudley": {"_count": 1}}, "greetings": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "what": {"_count": 1}, "all": {"_count": 1}}, "gift": {"_count": 1, "would": {"_count": 1}}, "or": {"_count": 1, "dentist": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}, "card": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "cards": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "party": {"_count": 1, "Aunt": {"_count": 1}}, "in": {"_count": 1, "September": {"_count": 1}}, "brought": {"_count": 1, "them": {"_count": 1}}, "now": {"_count": 1, "very": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "which": {"_count": 2, "the": {"_count": 1}, "will": {"_count": 1}}, "cakes": {"_count": 1, "one": {"_count": 1}}, "open": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "celebrations": {"_count": 1, "were": {"_count": 1}}, "tea": {"_count": 2, "their": {"_count": 1}, "just": {"_count": 1}}, "treat": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "Leave": {"_count": 1, "me": {"_count": 1}}, "Professor": {"_count": 1, "he": {"_count": 1}}, "Ralph": {"_count": 1, "Ron": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 2}, "she": {"_count": 1}}, "anyway": {"_count": 3, "": {"_count": 2}, "Harry": {"_count": 1}}, "dinner": {"_count": 1, "would": {"_count": 1}}, "set": {"_count": 1, "carefully": {"_count": 1}}, "Dumbledore": {"_count": 1, "left": {"_count": 1}}, "seven": {"_count": 1, "years": {"_count": 1}}}, "groaned": {"_count": 39, "": {"_count": 15, ".": {"_count": 15}}, "and": {"_count": 6, "sank": {"_count": 2}, "pulled": {"_count": 1}, "became": {"_count": 1}, "began": {"_count": 1}, "opened": {"_count": 1}}, "shes": {"_count": 1, "made": {"_count": 1}}, "sinking": {"_count": 1, "on": {"_count": 1}}, "more": {"_count": 1, "tears": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "down": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "George": {"_count": 1, "thrusting": {"_count": 1}}, "Ron": {"_count": 2, "": {"_count": 2}}, "sympathetically": {"_count": 1, "": {"_count": 1}}, "zooming": {"_count": 1, "forward": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "Doge": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 1}, "after": {"_count": 1}}, "the": {"_count": 1, "statue": {"_count": 1}}}, "slowly": {"_count": 335, "out": {"_count": 2, "of": {"_count": 2}}, "So": {"_count": 1, "Ill": {"_count": 1}}, "": {"_count": 80, ".": {"_count": 77}, "?": {"_count": 3}}, "it": {"_count": 2, "raised": {"_count": 1}, "fell": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 9, "the": {"_count": 5}, "view": {"_count": 1}, "his": {"_count": 2}, "sleep": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}, "higher": {"_count": 1, "away": {"_count": 1}}, "back": {"_count": 9, "to": {"_count": 4}, "up": {"_count": 2}, "into": {"_count": 2}, "upstairs": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "the": {"_count": 4, "next": {"_count": 1}, "sunken": {"_count": 1}, "beads": {"_count": 1}, "crowd": {"_count": 1}}, "It": {"_count": 1, "shows": {"_count": 1}}, "ears": {"_count": 1, "straining": {"_count": 1}}, "to": {"_count": 14, "his": {"_count": 5}, "Dumbledore": {"_count": 1}, "pink": {"_count": 1}, "keep": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}, "face": {"_count": 3}}, "on": {"_count": 7, "the": {"_count": 5}, "his": {"_count": 1}, "waiting": {"_count": 1}}, "squinting": {"_count": 1, "through": {"_count": 1}}, "yes": {"_count": 1, "one": {"_count": 1}}, "dropping": {"_count": 1, "her": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "lengthening": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 25, "clearly": {"_count": 3}, "steadily": {"_count": 2}, "Harry": {"_count": 2}, "the": {"_count": 1}, "his": {"_count": 1}, "very": {"_count": 1}, "deeply": {"_count": 2}, "doggedly": {"_count": 1}, "turned": {"_count": 1}, "cautiously": {"_count": 1}, "loudly": {"_count": 1}, "deliberately": {"_count": 2}, "as": {"_count": 1}, "carefully": {"_count": 1}, "then": {"_count": 1}, "give": {"_count": 1}, "miserably": {"_count": 1}, "erectly": {"_count": 1}, "surely": {"_count": 1}}, "as": {"_count": 10, "though": {"_count": 3}, "they": {"_count": 3}, "Professor": {"_count": 1}, "if": {"_count": 1}, "he": {"_count": 1}, "possible": {"_count": 1}}, "toward": {"_count": 13, "him": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 8}, "a": {"_count": 1}, "Mr": {"_count": 1}}, "his": {"_count": 7, "eyes": {"_count": 2}, "sunken": {"_count": 1}, "brain": {"_count": 1}, "arms": {"_count": 1}, "wand": {"_count": 1}, "grin": {"_count": 1}}, "shifting": {"_count": 1, "rock": {"_count": 1}}, "at": {"_count": 2, "Harry": {"_count": 1}, "them": {"_count": 1}}, "but": {"_count": 5, "why": {"_count": 1}, "its": {"_count": 1}, "still": {"_count": 1}, "hes": {"_count": 1}, "surely": {"_count": 1}}, "up": {"_count": 6, "the": {"_count": 3}, "Harrys": {"_count": 1}, "and": {"_count": 1}, "Voldemorts": {"_count": 1}}, "open": {"_count": 2, "before": {"_count": 1}, "": {"_count": 1}}, "they": {"_count": 2, "crowded": {"_count": 1}, "began": {"_count": 1}}, "dragging": {"_count": 1, "its": {"_count": 1}}, "chewed": {"_count": 1, "up": {"_count": 1}}, "he": {"_count": 5, "pushed": {"_count": 1}, "raised": {"_count": 1}, "started": {"_count": 1}, "could": {"_count": 1}, "sat": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 2}}, "turning": {"_count": 4, "the": {"_count": 1}, "into": {"_count": 1}, "purple": {"_count": 2}}, "from": {"_count": 8, "the": {"_count": 3}, "his": {"_count": 2}, "inside": {"_count": 1}, "Lockharts": {"_count": 1}, "Harrys": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "nearer": {"_count": 3, "his": {"_count": 1}, "": {"_count": 1}, "ready": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 1}, "were": {"_count": 1}}, "larger": {"_count": 1, "": {"_count": 1}}, "crept": {"_count": 1, "into": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "now": {"_count": 2, "because": {"_count": 1}, "that": {"_count": 1}}, "filtered": {"_count": 1, "away": {"_count": 1}}, "across": {"_count": 4, "the": {"_count": 3}, "Rons": {"_count": 1}}, "tremulously": {"_count": 1, "raised": {"_count": 1}}, "still": {"_count": 2, "she": {"_count": 1}, "reading": {"_count": 1}}, "were": {"_count": 1, "they": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 2}}, "emptied": {"_count": 1, "as": {"_count": 1}}, "I": {"_count": 4, "just": {"_count": 1}, "suppose": {"_count": 1}, "wouldnt": {"_count": 1}, "dunno": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "itll": {"_count": 1, "dawn": {"_count": 1}}, "forward": {"_count": 3, "toward": {"_count": 1}, "and": {"_count": 1}, "until": {"_count": 1}}, "how": {"_count": 1, "am": {"_count": 1}}, "lowered": {"_count": 2, "his": {"_count": 1}, "them": {"_count": 1}}, "you": {"_count": 1, "didnt": {"_count": 1}}, "around": {"_count": 5, "Harry": {"_count": 1}, "at": {"_count": 2}, "the": {"_count": 2}}, "upward": {"_count": 2, "as": {"_count": 1}, "like": {"_count": 1}}, "with": {"_count": 2, "her": {"_count": 1}, "tears": {"_count": 1}}, "upstairs": {"_count": 1, "to": {"_count": 1}}, "raised": {"_count": 1, "a": {"_count": 1}}, "cautiously": {"_count": 1, "as": {"_count": 1}}, "very": {"_count": 1, "slowly": {"_count": 1}}, "advancing": {"_count": 1, "slightly": {"_count": 1}}, "past": {"_count": 1, "": {"_count": 1}}, "almost": {"_count": 1, "lovingly": {"_count": 1}}, "looking": {"_count": 2, "wary": {"_count": 1}, "as": {"_count": 1}}, "chains": {"_count": 1, "rattling": {"_count": 1}}, "if": {"_count": 1, "Fudge": {"_count": 1}}, "Youre": {"_count": 1, "worried": {"_count": 1}}, "in": {"_count": 3, "Harrys": {"_count": 1}, "the": {"_count": 1}, "midair": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "not": {"_count": 1, "taking": {"_count": 1}}, "Please": {"_count": 1, "continue": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "scanning": {"_count": 1, "a": {"_count": 1}}, "brushing": {"_count": 1, "dust": {"_count": 1}}, "helping": {"_count": 1, "herself": {"_count": 1}}, "Snape": {"_count": 2, "was": {"_count": 1}, "regained": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "savoring": {"_count": 1, "the": {"_count": 1}}, "sideways": {"_count": 1, "feeling": {"_count": 1}}, "her": {"_count": 1, "feet": {"_count": 1}}, "revolving": {"_count": 3, "Professor": {"_count": 1}, "body": {"_count": 1}, "figure": {"_count": 1}}, "He": {"_count": 1, "intends": {"_count": 1}}, "ascending": {"_count": 1, "the": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "Sometimes": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "put": {"_count": 1}}, "shaking": {"_count": 1, "and": {"_count": 1}}, "backward": {"_count": 3, "across": {"_count": 1}, "like": {"_count": 1}, "toward": {"_count": 1}}, "obscenely": {"_count": 1, "": {"_count": 1}}, "overhead": {"_count": 1, "and": {"_count": 1}}, "away": {"_count": 2, "again": {"_count": 1}, "from": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "lets": {"_count": 1, "say": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "hardly": {"_count": 1, "daring": {"_count": 1}}, "slipping": {"_count": 1, "away": {"_count": 1}}, "possibly": {"_count": 1, "frightened": {"_count": 1}}, "solemnly": {"_count": 1, "": {"_count": 1}}, "constricting": {"_count": 1, "his": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "like": {"_count": 1, "Kings": {"_count": 1}}, "lightening": {"_count": 1, "darkness": {"_count": 1}}}, "socks": {"_count": 60, "": {"_count": 16, ".": {"_count": 15}, "?": {"_count": 1}}, "and": {"_count": 14, "the": {"_count": 2}, "tried": {"_count": 1}, "quills": {"_count": 1}, "scarves": {"_count": 1}, "jumped": {"_count": 1}, "was": {"_count": 1}, "threw": {"_count": 1}, "arguing": {"_count": 1}, "placing": {"_count": 1}, "lock": {"_count": 1}, "then": {"_count": 1}, "Harry": {"_count": 1}, "finally": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Ron": {"_count": 1}, "George": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "which": {"_count": 2, "deadened": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "which": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "Dobby": {"_count": 1}, "fold": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "Potter": {"_count": 1, "Moody": {"_count": 1}}, "pulled": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "every": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "lingered": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "hidden": {"_count": 1, "everywhere": {"_count": 1}}, "off": {"_count": 1, "cooling": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "Rons": {"_count": 1}}, "that": {"_count": 1, "no": {"_count": 1}}}, "pulling": {"_count": 185, "a": {"_count": 18, "spider": {"_count": 1}, "large": {"_count": 2}, "cardigan": {"_count": 1}, "tiny": {"_count": 1}, "long": {"_count": 2}, "pair": {"_count": 1}, "sweatshirt": {"_count": 1}, "roll": {"_count": 2}, "plate": {"_count": 1}, "face": {"_count": 1}, "lonely": {"_count": 1}, "rather": {"_count": 1}, "dish": {"_count": 1}, "second": {"_count": 1}, "photograph": {"_count": 1}}, "great": {"_count": 2, "tufts": {"_count": 1}, "clumps": {"_count": 1}}, "on": {"_count": 11, "his": {"_count": 5}, "dressing": {"_count": 1}, "the": {"_count": 1}, "Uncle": {"_count": 1}, "their": {"_count": 2}, "a": {"_count": 1}}, "Harry": {"_count": 6, "behind": {"_count": 1}, "to": {"_count": 1}, "inside": {"_count": 1}, "upright": {"_count": 1}, "aside": {"_count": 1}, "roughly": {"_count": 1}}, "them": {"_count": 3, "off": {"_count": 1}, "onward": {"_count": 1}, "both": {"_count": 1}}, "off": {"_count": 11, "their": {"_count": 3}, "the": {"_count": 3}, "his": {"_count": 3}, "her": {"_count": 2}}, "into": {"_count": 1, "platform": {"_count": 1}}, "Dobby": {"_count": 1, "back": {"_count": 1}}, "from": {"_count": 5, "inside": {"_count": 1}, "underneath": {"_count": 1}, "beneath": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "the": {"_count": 14, "bedraggled": {"_count": 1}, "letter": {"_count": 1}, "Firebolt": {"_count": 1}, "cloak": {"_count": 2}, "flush": {"_count": 1}, "door": {"_count": 1}, "carriages": {"_count": 2}, "Hogwarts": {"_count": 1}, "bed": {"_count": 1}, "essay": {"_count": 1}, "prisoners": {"_count": 1}, "strings": {"_count": 1}}, "Ron": {"_count": 3, "away": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 3}}, "back": {"_count": 4, "the": {"_count": 3}, "they": {"_count": 1}}, "her": {"_count": 5, "wand": {"_count": 1}, "up": {"_count": 1}, "cloak": {"_count": 1}, "soup": {"_count": 1}, "to": {"_count": 1}}, "him": {"_count": 19, "back": {"_count": 3}, "farther": {"_count": 1}, "magnetically": {"_count": 1}, "as": {"_count": 1}, "away": {"_count": 1}, "closer": {"_count": 1}, "onward": {"_count": 1}, "into": {"_count": 2}, "slightly": {"_count": 1}, "aside": {"_count": 1}, "up": {"_count": 1}, "slowly": {"_count": 1}, "upward": {"_count": 1}, "forward": {"_count": 1}, "toward": {"_count": 1}, "trying": {"_count": 1}}, "it": {"_count": 4, "apart": {"_count": 1}, "back": {"_count": 1}, "toward": {"_count": 1}, "onward": {"_count": 1}}, "open": {"_count": 4, "the": {"_count": 4}}, "Neville": {"_count": 2, "up": {"_count": 2}}, "faces": {"_count": 1, "and": {"_count": 1}}, "backward": {"_count": 1, "as": {"_count": 1}}, "pots": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 12, "bowl": {"_count": 1}, "leg": {"_count": 2}, "money": {"_count": 1}, "trunk": {"_count": 1}, "chair": {"_count": 1}, "roll": {"_count": 1}, "books": {"_count": 1}, "ears": {"_count": 1}, "Invisibility": {"_count": 2}, "wand": {"_count": 1}}, "out": {"_count": 24, "his": {"_count": 12}, "her": {"_count": 3}, "a": {"_count": 4}, "the": {"_count": 3}, "jars": {"_count": 1}, "sets": {"_count": 1}}, "coats": {"_count": 1, "over": {"_count": 1}}, "an": {"_count": 2, "extra": {"_count": 1}, "immense": {"_count": 1}}, "stray": {"_count": 1, "threads": {"_count": 1}}, "down": {"_count": 1, "more": {"_count": 1}}, "Harrys": {"_count": 2, "hand": {"_count": 1}, "ear": {"_count": 1}}, "himself": {"_count": 4, "free": {"_count": 1}, "back": {"_count": 2}, "together": {"_count": 1}}, "grotesquely": {"_count": 1, "mad": {"_count": 1}}, "half": {"_count": 2, "carrying": {"_count": 1}, "a": {"_count": 1}}, "screens": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "Professor": {"_count": 1, "Sinistra": {"_count": 1}}, "herself": {"_count": 1, "together": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "Lavender": {"_count": 1, "by": {"_count": 1}}, "Rons": {"_count": 1, "essay": {"_count": 1}}, "shards": {"_count": 1, "of": {"_count": 1}}, "something": {"_count": 1, "from": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "my": {"_count": 1, "bedroom": {"_count": 1}}, "bunches": {"_count": 1, "of": {"_count": 1}}, "kettle": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "with": {"_count": 1}}, "Wormtails": {"_count": 1, "wand": {"_count": 1}}}, "spider": {"_count": 65, "off": {"_count": 2, "one": {"_count": 1}, "the": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "left": {"_count": 1, "in": {"_count": 1}}, "guides": {"_count": 1, "leaving": {"_count": 1}}, "released": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 2, "size": {"_count": 2}}, "who": {"_count": 2, "had": {"_count": 2}}, "and": {"_count": 5, "Harry": {"_count": 1}, "threw": {"_count": 1}, "placed": {"_count": 1}, "muttered": {"_count": 1}, "after": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "six": {"_count": 1, "feet": {"_count": 1}}, "had": {"_count": 2, "vanished": {"_count": 1}, "dropped": {"_count": 1}}, "was": {"_count": 2, "dangling": {"_count": 1}, "either": {"_count": 1}}, "his": {"_count": 2, "yellow": {"_count": 1}, "oily": {"_count": 1}}, "leapt": {"_count": 1, "from": {"_count": 1}}, "rose": {"_count": 1, "onto": {"_count": 1}}, "balled": {"_count": 1, "itself": {"_count": 1}}, "swelled": {"_count": 1, "": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}, "shrank": {"_count": 1, "back": {"_count": 1}}, "scuttled": {"_count": 1, "frantically": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "skidded": {"_count": 1, "toward": {"_count": 1}}, "just": {"_count": 1, "died": {"_count": 1}}, "jerking": {"_count": 1, "and": {"_count": 1}}, "stepped": {"_count": 1, "into": {"_count": 1}}, "jerked": {"_count": 1, "scuttled": {"_count": 1}}, "opened": {"_count": 1, "its": {"_count": 1}}, "drop": {"_count": 1, "him": {"_count": 1}}, "keeled": {"_count": 1, "over": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "spinning": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 1, "climbing": {"_count": 1}}, "Aragog": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "Hagrid": {"_count": 1, "seemed": {"_count": 1}}, "hes": {"_count": 1, "had": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "forming": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "two": {"_count": 1}}, "sat": {"_count": 1, "in": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "grew": {"_count": 1, "slightly": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "swarm": {"_count": 1, "but": {"_count": 1}}}, "used": {"_count": 260, "to": {"_count": 119, "spiders": {"_count": 1}, "being": {"_count": 1}, "getting": {"_count": 2}, "this": {"_count": 4}, "": {"_count": 4}, "and": {"_count": 1}, "walking": {"_count": 1}, "the": {"_count": 8}, "flying": {"_count": 1}, "return": {"_count": 1}, "sneer": {"_count": 1}, "death": {"_count": 1}, "going": {"_count": 1}, "his": {"_count": 1}, "belong": {"_count": 1}, "a": {"_count": 1}, "play": {"_count": 1}, "make": {"_count": 1}, "really": {"_count": 1}, "be": {"_count": 15}, "hear": {"_count": 1}, "freeze": {"_count": 1}, "owl": {"_count": 1}, "bizarre": {"_count": 1}, "it": {"_count": 4}, "transport": {"_count": 1}, "people": {"_count": 1}, "work": {"_count": 3}, "Hagrid": {"_count": 1}, "Hogwarts": {"_count": 1}, "care": {"_count": 1}, "get": {"_count": 2}, "break": {"_count": 1}, "use": {"_count": 2}, "them": {"_count": 1}, "wear": {"_count": 1}, "hearing": {"_count": 1}, "students": {"_count": 1}, "their": {"_count": 2}, "believe": {"_count": 1}, "interrupt": {"_count": 1}, "fancy": {"_count": 1}, "talk": {"_count": 1}, "teach": {"_count": 1}, "go": {"_count": 3}, "do": {"_count": 1}, "losing": {"_count": 1}, "tell": {"_count": 1}, "handpick": {"_count": 1}, "her": {"_count": 2}, "explained": {"_count": 1}, "give": {"_count": 1}, "general": {"_count": 1}, "doing": {"_count": 1}, "find": {"_count": 1}, "Luna": {"_count": 1}, "kill": {"_count": 1}, "him": {"_count": 1}, "chop": {"_count": 1}, "transfer": {"_count": 1}, "I": {"_count": 1}, "sleep": {"_count": 1}, "wake": {"_count": 1}, "clean": {"_count": 1}, "come": {"_count": 1}, "down": {"_count": 1}, "But": {"_count": 1}, "bad": {"_count": 1}, "eccentric": {"_count": 1}, "fantasize": {"_count": 1}, "bolster": {"_count": 1}, "open": {"_count": 1}, "three": {"_count": 1}, "Harrys": {"_count": 1}, "like": {"_count": 1}, "help": {"_count": 1}, "notice": {"_count": 1}, "send": {"_count": 1}, "sneak": {"_count": 1}, "protect": {"_count": 1}}, "for": {"_count": 8, "hitting": {"_count": 1}, "": {"_count": 2}, "animal": {"_count": 1}, "the": {"_count": 1}, "cooking": {"_count": 1}, "an": {"_count": 1}, "years": {"_count": 1}}, "between": {"_count": 1, "classes": {"_count": 1}}, "it": {"_count": 17, "on": {"_count": 3}, "mainly": {"_count": 1}, "before": {"_count": 1}, "to": {"_count": 3}, "until": {"_count": 1}, "loads": {"_count": 1}, "or": {"_count": 1}, "because": {"_count": 1}, "sir": {"_count": 1}, "against": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "the": {"_count": 14, "horn": {"_count": 1}, "BubbleHead": {"_count": 1}, "stolen": {"_count": 1}, "map": {"_count": 1}, "one": {"_count": 1}, "Furnunculus": {"_count": 1}, "Patronus": {"_count": 1}, "visitors": {"_count": 1}, "Reductor": {"_count": 1}, "Muffliato": {"_count": 1}, "Deluminator": {"_count": 1}, "Cruciatus": {"_count": 1}, "Elder": {"_count": 1}, "Killing": {"_count": 1}}, "on": {"_count": 6, "Snape": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}, "Malfoy": {"_count": 1}, "me": {"_count": 1}}, "at": {"_count": 1, "your": {"_count": 1}}, "a": {"_count": 12, "different": {"_count": 2}, "telephone": {"_count": 1}, "Severing": {"_count": 1}, "network": {"_count": 1}, "great": {"_count": 1}, "Portkey": {"_count": 1}, "love": {"_count": 1}, "spell": {"_count": 1}, "large": {"_count": 1}, "Shield": {"_count": 1}, "curse": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "many": {"_count": 1, "times": {"_count": 1}}, "spiders": {"_count": 1, "in": {"_count": 1}}, "countless": {"_count": 1, "times": {"_count": 1}}, "their": {"_count": 2, "time": {"_count": 1}, "wands": {"_count": 1}}, "her": {"_count": 2, "wand": {"_count": 1}, "own": {"_count": 1}}, "this": {"_count": 3, "one": {"_count": 1}, "spell": {"_count": 1}, "selfsame": {"_count": 1}}, "ter": {"_count": 5, "ride": {"_count": 1}, "hope": {"_count": 1}, "say": {"_count": 1}, "think": {"_count": 1}, "be": {"_count": 1}}, "his": {"_count": 4, "middle": {"_count": 1}, "mysterious": {"_count": 1}, "blood": {"_count": 1}, "name": {"_count": 1}}, "your": {"_count": 1, "name": {"_count": 1}}, "Portkeys": {"_count": 1, "beside": {"_count": 1}}, "magic": {"_count": 2, "to": {"_count": 1}, "against": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "veela": {"_count": 1, "hair": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 2}, "years": {"_count": 1}, "Confusing": {"_count": 2}, "emergencies": {"_count": 1}, "an": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "liberal": {"_count": 1, "amounts": {"_count": 1}}, "sign": {"_count": 1, "language": {"_count": 1}}, "an": {"_count": 4, "incomplete": {"_count": 1}, "Invisibility": {"_count": 1}, "Unforgivable": {"_count": 1}, "accomplice": {"_count": 1}}, "gillyweed": {"_count": 1, "to": {"_count": 1}}, "Hedwig": {"_count": 1, "because": {"_count": 1}}, "before": {"_count": 2, "": {"_count": 1}, "Muggles": {"_count": 1}}, "some": {"_count": 1, "company": {"_count": 1}}, "someone": {"_count": 1, "elses": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "JellyLegs": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "years": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Voldemorts": {"_count": 1, "name": {"_count": 1}}, "new": {"_count": 1, "laws": {"_count": 1}}, "defensively": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "regularly": {"_count": 1, "and": {"_count": 1}}, "our": {"_count": 1, "whole": {"_count": 1}}, "wands": {"_count": 1, "or": {"_count": 1}}, "Harrys": {"_count": 1, "mouth": {"_count": 1}}, "giants": {"_count": 1, "last": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 2}}, "my": {"_count": 1, "Invisibility": {"_count": 1}}, "Inferi": {"_count": 1, "in": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "Muffliato": {"_count": 1, "Harry": {"_count": 1}}, "magical": {"_count": 1, "trickery": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Nagini": {"_count": 1, "to": {"_count": 1}}, "against": {"_count": 1, "him": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "Legilimency": {"_count": 1, "against": {"_count": 1}}, "Sectumsempra": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "as": {"_count": 2}}, "Avada": {"_count": 1, "Kedavra": {"_count": 1}}, "escaping": {"_count": 1, "the": {"_count": 1}}, "another": {"_count": 1, "Summoning": {"_count": 1}}, "fail": {"_count": 1, "when": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "spiders": {"_count": 65, "because": {"_count": 1, "the": {"_count": 1}}, "fell": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "were": {"_count": 7, "scuttling": {"_count": 3}, "hurrying": {"_count": 1}, "going": {"_count": 1}, "climbing": {"_count": 1}, "swarming": {"_count": 1}}, "act": {"_count": 1, "like": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 2}}, "in": {"_count": 2, "Potions": {"_count": 1}, "the": {"_count": 1}}, "scuttling": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 1, "far": {"_count": 1}}, "following": {"_count": 1, "their": {"_count": 1}}, "might": {"_count": 1, "notve": {"_count": 1}}, "moving": {"_count": 1, "along": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "but": {"_count": 1, "they": {"_count": 1}}, "like": {"_count": 1, "those": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "fear": {"_count": 1, "above": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "pressing": {"_count": 1, "closer": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "clicking": {"_count": 1, "their": {"_count": 1}}, "aside": {"_count": 1, "several": {"_count": 1}}, "buy": {"_count": 1, "vicious": {"_count": 1}}, "legs": {"_count": 3, "vanished": {"_count": 1}, "bent": {"_count": 1}, "relaxed": {"_count": 1}}, "web": {"_count": 2, "from": {"_count": 1}, "stretched": {"_count": 1}}, "and": {"_count": 3, "held": {"_count": 1}, "mental": {"_count": 1}, "with": {"_count": 1}}, "gigantic": {"_count": 1, "hairy": {"_count": 1}}, "underbelly": {"_count": 1, "as": {"_count": 1}}, "pincers": {"_count": 1, "on": {"_count": 1}}, "tangled": {"_count": 1, "legs": {"_count": 1}}, "his": {"_count": 1, "long": {"_count": 1}}, "large": {"_count": 1, "as": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "won": {"_count": 1, "let": {"_count": 1}}, "head": {"_count": 1, "where": {"_count": 1}}, "again": {"_count": 1, "I": {"_count": 1}}, "forced": {"_count": 1, "their": {"_count": 1}}}, "cupboard": {"_count": 88, "under": {"_count": 9, "the": {"_count": 8}, "my": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "from": {"_count": 1, "now": {"_count": 1}}, "for": {"_count": 2, "this": {"_count": 1}, "another": {"_count": 1}}, "was": {"_count": 3, "jump": {"_count": 1}, "pulled": {"_count": 1}, "taken": {"_count": 1}}, "or": {"_count": 2, "Mrs": {"_count": 1}, "storeroom": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "stay": {"_count": 1, "no": {"_count": 1}}, "much": {"_count": 1, "later": {"_count": 1}}, "he": {"_count": 1, "came": {"_count": 1}}, "again": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 16}, "?": {"_count": 1}, "!": {"_count": 1}}, "on": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 2, "this": {"_count": 1}, "find": {"_count": 1}}, "with": {"_count": 2, "that": {"_count": 1}, "his": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "and": {"_count": 11, "they": {"_count": 1}, "were": {"_count": 1}, "Harry": {"_count": 1}, "slipped": {"_count": 1}, "a": {"_count": 1}, "died": {"_count": 1}, "after": {"_count": 1}, "rummaged": {"_count": 1}, "hurried": {"_count": 1}, "wrenched": {"_count": 1}, "its": {"_count": 1}}, "force": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 4}, "which": {"_count": 2}}, "wasnt": {"_count": 1, "his": {"_count": 1}}, "door": {"_count": 5, "burst": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}, "has": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 1, "door": {"_count": 1}}, "sprang": {"_count": 1, "open": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "Harry": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "today": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 1, "seemed": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "should": {"_count": 1, "he": {"_count": 1}}, "one": {"_count": 1, "night": {"_count": 1}}, "watched": {"_count": 1, "him": {"_count": 1}}, "opened": {"_count": 1, "onto": {"_count": 1}}}, "stairs": {"_count": 220, "was": {"_count": 2, "full": {"_count": 1}, "vibrating": {"_count": 1}}, "looking": {"_count": 5, "disapprovingly": {"_count": 1}, "back": {"_count": 1}, "harassed": {"_count": 1}, "around": {"_count": 1}, "bewildered": {"_count": 1}}, "": {"_count": 62, ".": {"_count": 61}, "!": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 17, "the": {"_count": 11}, "his": {"_count": 1}, "their": {"_count": 1}, "Cho": {"_count": 1}, "Snapes": {"_count": 1}, "join": {"_count": 1}, "read": {"_count": 1}}, "they": {"_count": 2, "spotted": {"_count": 1}, "were": {"_count": 1}}, "by": {"_count": 2, "Uncle": {"_count": 1}, "wandlight": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 25, "I": {"_count": 1}, "the": {"_count": 1}, "turned": {"_count": 2}, "paused": {"_count": 1}, "Harry": {"_count": 1}, "knew": {"_count": 1}, "pulling": {"_count": 1}, "snatching": {"_count": 1}, "they": {"_count": 1}, "through": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}, "entered": {"_count": 1}, "hurried": {"_count": 1}, "stopped": {"_count": 1}, "followed": {"_count": 1}, "along": {"_count": 1}, "into": {"_count": 2}, "a": {"_count": 2}, "bring": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 1}}, "halfdressed": {"_count": 1, "with": {"_count": 1}}, "until": {"_count": 2, "at": {"_count": 1}, "he": {"_count": 1}}, "Harry": {"_count": 4, "": {"_count": 1}, "managed": {"_count": 1}, "could": {"_count": 1}, "slid": {"_count": 1}}, "into": {"_count": 8, "the": {"_count": 7}, "Moodys": {"_count": 1}}, "prefect": {"_count": 1, "badge": {"_count": 1}}, "toward": {"_count": 4, "Gryffindor": {"_count": 1}, "him": {"_count": 2}, "lunch": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "three": {"_count": 3, "at": {"_count": 3}}, "for": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "grabbed": {"_count": 1, "some": {"_count": 1}}, "one": {"_count": 1, "hand": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 3}}, "slipped": {"_count": 1, "through": {"_count": 1}}, "Lupin": {"_count": 1, "Pettigrew": {"_count": 1}}, "blessing": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 1, "summer": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "front": {"_count": 1}, "shock": {"_count": 1}}, "shouts": {"_count": 1, "from": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "creaked": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 4, "was": {"_count": 2}, "half": {"_count": 1}, "would": {"_count": 1}}, "as": {"_count": 5, "quietly": {"_count": 1}, "Mrs": {"_count": 1}, "Ron": {"_count": 1}, "Amycus": {"_count": 1}, "well": {"_count": 1}}, "where": {"_count": 2, "sunk": {"_count": 1}, "Nearly": {"_count": 1}}, "his": {"_count": 1, "scrawny": {"_count": 1}}, "stood": {"_count": 1, "the": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "straight": {"_count": 1, "through": {"_count": 1}}, "right": {"_count": 1, "through": {"_count": 1}}, "behind": {"_count": 2, "them": {"_count": 1}, "Harry": {"_count": 1}}, "together": {"_count": 1, "Moody": {"_count": 1}}, "gazing": {"_count": 1, "intently": {"_count": 1}}, "very": {"_count": 1, "conscious": {"_count": 1}}, "carrying": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Sirius": {"_count": 1}, "Lupin": {"_count": 1}}, "Hold": {"_count": 1, "it": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 2, "its": {"_count": 1}, "Peeves": {"_count": 1}}, "before": {"_count": 1, "anyone": {"_count": 1}}, "two": {"_count": 2, "at": {"_count": 2}}, "lined": {"_count": 1, "with": {"_count": 1}}, "turned": {"_count": 1, "right": {"_count": 1}}, "leaving": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 1, "wall": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "lunchtime": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "calling": {"_count": 1, "out": {"_count": 1}}, "everlasting": {"_count": 1, "candles": {"_count": 1}}, "slowing": {"_count": 1, "down": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "rugbytackled": {"_count": 1}}, "although": {"_count": 1, "Im": {"_count": 1}}, "Reductol": {"_count": 1, "REDUCTOl": {"_count": 1}}, "To": {"_count": 1, "set": {"_count": 1}}, "is": {"_count": 1, "where": {"_count": 1}}, "below": {"_count": 1, "him": {"_count": 1}}, "taking": {"_count": 1, "two": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "steep": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "completely": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "still": {"_count": 1, "tied": {"_count": 1}}, "onto": {"_count": 1, "a": {"_count": 1}}, "opened": {"_count": 1, "onto": {"_count": 1}}, "beneath": {"_count": 1, "their": {"_count": 1}}, "brandishing": {"_count": 1, "his": {"_count": 1}}}, "hall": {"_count": 327, "into": {"_count": 2, "the": {"_count": 2}}, "slamming": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 84, ".": {"_count": 84}}, "Harry": {"_count": 6, "right": {"_count": 1}, "felt": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}, "in": {"_count": 1}, "pulled": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 2}, "lunch": {"_count": 1}}, "and": {"_count": 35, "yet": {"_count": 1}, "through": {"_count": 2}, "along": {"_count": 1}, "dropping": {"_count": 1}, "up": {"_count": 3}, "a": {"_count": 3}, "nobody": {"_count": 1}, "crossed": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}, "stood": {"_count": 1}, "lowered": {"_count": 1}, "out": {"_count": 4}, "went": {"_count": 1}, "pulling": {"_count": 1}, "led": {"_count": 1}, "then": {"_count": 2}, "those": {"_count": 1}, "saw": {"_count": 1}, "before": {"_count": 1}, "closed": {"_count": 1}, "rushed": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}, "smash": {"_count": 1}, "Voldemorts": {"_count": 1}}, "was": {"_count": 13, "so": {"_count": 1}, "another": {"_count": 1}, "now": {"_count": 1}, "starting": {"_count": 2}, "deserted": {"_count": 1}, "and": {"_count": 1}, "listening": {"_count": 1}, "packed": {"_count": 1}, "a": {"_count": 1}, "bound": {"_count": 1}, "ablaze": {"_count": 1}, "quite": {"_count": 1}}, "burst": {"_count": 2, "into": {"_count": 1}, "open": {"_count": 1}}, "full": {"_count": 2, "of": {"_count": 2}}, "that": {"_count": 2, "shone": {"_count": 1}, "was": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "spotted": {"_count": 1, "Harry": {"_count": 1}}, "quickly": {"_count": 2, "wanting": {"_count": 1}, "without": {"_count": 1}}, "they": {"_count": 6, "found": {"_count": 3}, "saw": {"_count": 1}, "caught": {"_count": 1}, "grew": {"_count": 1}}, "his": {"_count": 4, "turban": {"_count": 1}, "blond": {"_count": 1}, "eyes": {"_count": 1}, "wand": {"_count": 1}}, "looked": {"_count": 1, "spectacular": {"_count": 1}}, "where": {"_count": 8, "hed": {"_count": 1}, "Filch": {"_count": 1}, "the": {"_count": 2}, "they": {"_count": 1}, "Bellatrix": {"_count": 1}, "he": {"_count": 1}, "queues": {"_count": 1}}, "with": {"_count": 10, "Neville": {"_count": 1}, "the": {"_count": 3}, "its": {"_count": 1}, "magical": {"_count": 1}, "a": {"_count": 2}, "her": {"_count": 2}}, "which": {"_count": 9, "seemed": {"_count": 1}, "was": {"_count": 7}, "meant": {"_count": 1}}, "he": {"_count": 7, "already": {"_count": 1}, "leaned": {"_count": 1}, "nearly": {"_count": 1}, "saw": {"_count": 2}, "was": {"_count": 1}, "checked": {"_count": 1}}, "calling": {"_count": 1, "Dudley": {"_count": 1}}, "carpet": {"_count": 1, "looking": {"_count": 1}}, "waiting": {"_count": 2, "for": {"_count": 2}}, "shaking": {"_count": 1, "dust": {"_count": 1}}, "were": {"_count": 2, "swiveling": {"_count": 1}, "stained": {"_count": 1}}, "when": {"_count": 4, "a": {"_count": 2}, "they": {"_count": 1}, "Malfoy": {"_count": 1}}, "as": {"_count": 5, "the": {"_count": 1}, "everybody": {"_count": 1}, "are": {"_count": 1}, "though": {"_count": 1}, "they": {"_count": 1}}, "Hermione": {"_count": 1, "hurrying": {"_count": 1}}, "to": {"_count": 12, "finalize": {"_count": 1}, "check": {"_count": 2}, "the": {"_count": 1}, "get": {"_count": 1}, "meet": {"_count": 2}, "watch": {"_count": 1}, "go": {"_count": 1}, "fetch": {"_count": 1}, "Ron": {"_count": 1}, "sink": {"_count": 1}}, "after": {"_count": 2, "Christmas": {"_count": 1}, "lunch": {"_count": 1}}, "marched": {"_count": 1, "a": {"_count": 1}}, "slid": {"_count": 1, "back": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "echoed": {"_count": 1, "with": {"_count": 1}}, "The": {"_count": 1, "dementors": {"_count": 1}}, "immediately": {"_count": 1, "began": {"_count": 1}}, "creak": {"_count": 1, "open": {"_count": 1}}, "walking": {"_count": 1, "quickly": {"_count": 1}}, "while": {"_count": 4, "the": {"_count": 4}}, "Nevilles": {"_count": 1, "grandmothers": {"_count": 1}}, "before": {"_count": 1, "speaking": {"_count": 1}}, "listening": {"_count": 1, "until": {"_count": 1}}, "on": {"_count": 3, "tiptoe": {"_count": 1}, "the": {"_count": 2}}, "looking": {"_count": 3, "terrified": {"_count": 1}, "back": {"_count": 1}, "around": {"_count": 1}}, "floor": {"_count": 1, "but": {"_count": 1}}, "erupted": {"_count": 1, "with": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "could": {"_count": 1, "hear": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 1}, "abated": {"_count": 1}}, "she": {"_count": 5, "was": {"_count": 2}, "added": {"_count": 2}, "looked": {"_count": 1}}, "tonight": {"_count": 1, "where": {"_count": 1}}, "upon": {"_count": 1, "him": {"_count": 1}}, "rang": {"_count": 1, "with": {"_count": 1}}, "behind": {"_count": 3, "her": {"_count": 1}, "them": {"_count": 2}}, "again": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "below": {"_count": 4, "": {"_count": 2}, "silhouetted": {"_count": 1}, "and": {"_count": 1}}, "contained": {"_count": 1, "a": {"_count": 1}}, "Cedric": {"_count": 1, "came": {"_count": 1}}, "light": {"_count": 1, "was": {"_count": 1}}, "became": {"_count": 1, "complete": {"_count": 1}}, "we": {"_count": 1, "might": {"_count": 1}}, "its": {"_count": 1, "through": {"_count": 1}}, "Stunning": {"_count": 1, "all": {"_count": 1}}, "above": {"_count": 1, "a": {"_count": 1}}, "Mrs": {"_count": 2, "Blacks": {"_count": 1}, "Black": {"_count": 1}}, "then": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "beyond": {"_count": 2, "where": {"_count": 1}, "which": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "opened": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "wall": {"_count": 1, "wore": {"_count": 1}}, "packed": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 2, "Cho": {"_count": 1}, "he": {"_count": 1}}, "still": {"_count": 2, "absorbed": {"_count": 1}, "crowded": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "eight": {"_count": 2}}, "slowing": {"_count": 1, "down": {"_count": 1}}, "two": {"_count": 1, "hours": {"_count": 1}}, "said": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "led": {"_count": 1, "by": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "more": {"_count": 1, "voices": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 2, "number": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "burst": {"_count": 1}}, "without": {"_count": 1, "being": {"_count": 1}}, "holding": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "five": {"_count": 1}}, "Dedalus": {"_count": 1, "murmured": {"_count": 1}}, "halfexpecting": {"_count": 1, "some": {"_count": 1}}, "casting": {"_count": 1, "shimmering": {"_count": 1}}, "their": {"_count": 1, "attention": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "larger": {"_count": 1, "by": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "screaming": {"_count": 1, "and": {"_count": 1}}}, "table": {"_count": 680, "was": {"_count": 9, "almost": {"_count": 1}, "stacked": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "littered": {"_count": 1}, "too": {"_count": 1}, "occupied": {"_count": 1}, "now": {"_count": 1}, "completely": {"_count": 1}}, "which": {"_count": 5, "was": {"_count": 3}, "read": {"_count": 1}, "inconveniently": {"_count": 1}}, "over": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "here": {"_count": 1}}, "and": {"_count": 96, "tried": {"_count": 3}, "a": {"_count": 2}, "saw": {"_count": 1}, "gasped": {"_count": 1}, "watched": {"_count": 2}, "chairs": {"_count": 2}, "echoed": {"_count": 1}, "plunged": {"_count": 1}, "setting": {"_count": 1}, "came": {"_count": 3}, "cracked": {"_count": 1}, "wasnt": {"_count": 1}, "hurried": {"_count": 1}, "Harry": {"_count": 1}, "went": {"_count": 1}, "chased": {"_count": 1}, "laid": {"_count": 1}, "she": {"_count": 2}, "at": {"_count": 1}, "carefully": {"_count": 1}, "peered": {"_count": 1}, "turned": {"_count": 1}, "began": {"_count": 3}, "looked": {"_count": 1}, "he": {"_count": 3}, "it": {"_count": 2}, "the": {"_count": 1}, "starting": {"_count": 1}, "spilled": {"_count": 1}, "helped": {"_count": 1}, "set": {"_count": 1}, "sat": {"_count": 6}, "taking": {"_count": 1}, "go": {"_count": 1}, "slouch": {"_count": 1}, "disappeared": {"_count": 1}, "talking": {"_count": 1}, "bent": {"_count": 1}, "chucked": {"_count": 1}, "weighing": {"_count": 1}, "preparing": {"_count": 1}, "put": {"_count": 1}, "throwing": {"_count": 1}, "everybody": {"_count": 1}, "shrieked": {"_count": 1}, "join": {"_count": 1}, "silence": {"_count": 1}, "faced": {"_count": 1}, "stood": {"_count": 1}, "stuffed": {"_count": 1}, "spilling": {"_count": 1}, "this": {"_count": 1}, "dived": {"_count": 1}, "slapping": {"_count": 1}, "got": {"_count": 2}, "trying": {"_count": 1}, "made": {"_count": 1}, "Roger": {"_count": 1}, "now": {"_count": 1}, "somehow": {"_count": 1}, "rolled": {"_count": 1}, "scurried": {"_count": 1}, "grinned": {"_count": 1}, "started": {"_count": 1}, "putting": {"_count": 1}, "sprinted": {"_count": 1}, "pulling": {"_count": 1}, "ponder": {"_count": 1}, "gave": {"_count": 1}, "addressed": {"_count": 1}, "coffee": {"_count": 1}, "hurtled": {"_count": 1}, "then": {"_count": 1}, "hugged": {"_count": 1}, "approached": {"_count": 1}, "shouted": {"_count": 1}, "I": {"_count": 1}}, "": {"_count": 174, ".": {"_count": 174}}, "looking": {"_count": 3, "tired": {"_count": 1}, "for": {"_count": 1}, "very": {"_count": 1}}, "where": {"_count": 22, "the": {"_count": 2}, "Ron": {"_count": 2}, "it": {"_count": 2}, "Fred": {"_count": 1}, "Harry": {"_count": 4}, "everyone": {"_count": 2}, "they": {"_count": 1}, "four": {"_count": 1}, "there": {"_count": 1}, "Draco": {"_count": 1}, "he": {"_count": 2}, "a": {"_count": 1}, "she": {"_count": 1}, "everybody": {"_count": 1}}, "on": {"_count": 9, "the": {"_count": 4}, "top": {"_count": 1}, "which": {"_count": 4}}, "second": {"_count": 1, "from": {"_count": 1}}, "roast": {"_count": 1, "beef": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "snatched": {"_count": 2, "the": {"_count": 1}, "up": {"_count": 1}}, "wasnt": {"_count": 1, "having": {"_count": 1}}, "he": {"_count": 4, "was": {"_count": 1}, "pointed": {"_count": 1}, "managed": {"_count": 1}, "walked": {"_count": 1}}, "with": {"_count": 18, "seven": {"_count": 1}, "his": {"_count": 4}, "a": {"_count": 5}, "two": {"_count": 1}, "Harry": {"_count": 1}, "Sirius": {"_count": 1}, "George": {"_count": 1}, "the": {"_count": 2}, "Ernie": {"_count": 1}, "their": {"_count": 1}}, "piled": {"_count": 1, "high": {"_count": 1}}, "were": {"_count": 3, "beside": {"_count": 1}, "sniggering": {"_count": 1}, "applauding": {"_count": 1}}, "ABOUT": {"_count": 1, "SAYING": {"_count": 1}}, "so": {"_count": 5, "they": {"_count": 1}, "that": {"_count": 3}, "hard": {"_count": 1}}, "to": {"_count": 17, "retrieve": {"_count": 1}, "wring": {"_count": 1}, "the": {"_count": 1}, "check": {"_count": 1}, "scowl": {"_count": 1}, "themselves": {"_count": 1}, "help": {"_count": 1}, "see": {"_count": 1}, "Ron": {"_count": 1}, "where": {"_count": 1}, "examine": {"_count": 1}, "Harry": {"_count": 3}, "sit": {"_count": 1}, "pick": {"_count": 1}, "Mr": {"_count": 1}}, "surrounded": {"_count": 2, "by": {"_count": 2}}, "his": {"_count": 5, "long": {"_count": 1}, "legs": {"_count": 1}, "boarhound": {"_count": 1}, "face": {"_count": 1}, "hooked": {"_count": 1}}, "next": {"_count": 6, "to": {"_count": 4}, "door": {"_count": 2}}, "handing": {"_count": 2, "out": {"_count": 2}}, "also": {"_count": 1, "covered": {"_count": 1}}, "crouched": {"_count": 1, "low": {"_count": 1}}, "all": {"_count": 2, "looking": {"_count": 1}, "watching": {"_count": 1}}, "shoveling": {"_count": 1, "down": {"_count": 1}}, "one": {"_count": 1, "evening": {"_count": 1}}, "apparently": {"_count": 2, "too": {"_count": 1}, "waiting": {"_count": 1}}, "loading": {"_count": 1, "the": {"_count": 1}}, "wondering": {"_count": 1, "if": {"_count": 1}}, "gripped": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 12, "soon": {"_count": 1}, "he": {"_count": 2}, "well": {"_count": 1}, "they": {"_count": 2}, "though": {"_count": 1}, "Hagrid": {"_count": 1}, "she": {"_count": 2}, "the": {"_count": 2}}, "went": {"_count": 1, "very": {"_count": 1}}, "between": {"_count": 4, "Fudge": {"_count": 1}, "the": {"_count": 1}, "Nearly": {"_count": 1}, "Harry": {"_count": 1}}, "Death": {"_count": 1, "Omens": {"_count": 1}}, "in": {"_count": 25, "front": {"_count": 12}, "particular": {"_count": 1}, "the": {"_count": 6}, "imitation": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 2}, "great": {"_count": 1}, "full": {"_count": 1}}, "I": {"_count": 2, "took": {"_count": 1}, "knew": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "at": {"_count": 20, "Professor": {"_count": 1}, "Malfoy": {"_count": 2}, "the": {"_count": 10}, "him": {"_count": 1}, "mealtimes": {"_count": 1}, "her": {"_count": 1}, "breakfast": {"_count": 2}, "Voldemort": {"_count": 1}, "his": {"_count": 1}}, "still": {"_count": 2, "swinging": {"_count": 1}, "looking": {"_count": 1}}, "Malfoy": {"_count": 3, "did": {"_count": 1}, "looked": {"_count": 1}, "Crabbe": {"_count": 1}}, "pressing": {"_count": 1, "close": {"_count": 1}}, "stared": {"_count": 1, "down": {"_count": 1}}, "rose": {"_count": 1, "a": {"_count": 1}}, "hiding": {"_count": 1, "them": {"_count": 1}}, "right": {"_count": 3, "beside": {"_count": 1}, "behind": {"_count": 2}}, "sobbing": {"_count": 1, "uncontrollably": {"_count": 1}}, "set": {"_count": 2, "for": {"_count": 1}, "at": {"_count": 1}}, "beaming": {"_count": 1, "around": {"_count": 1}}, "we": {"_count": 1, "shall": {"_count": 1}}, "exploded": {"_count": 1, "with": {"_count": 1}}, "fast": {"_count": 1, "asleep": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "breathing": {"_count": 1, "rather": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "hissed": {"_count": 1, "loudly": {"_count": 1}}, "crossed": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 3, "himself": {"_count": 1}, "the": {"_count": 2}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "caught": {"_count": 1, "Charlies": {"_count": 1}}, "leg": {"_count": 1, "and": {"_count": 1}}, "Percy": {"_count": 2, "was": {"_count": 1}, "drew": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "checking": {"_count": 1, "a": {"_count": 1}}, "except": {"_count": 1, "Harry": {"_count": 1}}, "holding": {"_count": 1, "a": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "facing": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "more": {"_count": 1, "carefully": {"_count": 1}}, "sat": {"_count": 1, "Professor": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 1}, "though": {"_count": 1}}, "turned": {"_count": 1, "right": {"_count": 1}}, "several": {"_count": 1, "inches": {"_count": 1}}, "Harry": {"_count": 5, "could": {"_count": 1}, "saw": {"_count": 2}, "watched": {"_count": 1}, "said": {"_count": 1}}, "a": {"_count": 6, "few": {"_count": 3}, "little": {"_count": 2}, "solid": {"_count": 1}}, "dipping": {"_count": 1, "his": {"_count": 1}}, "upon": {"_count": 2, "which": {"_count": 2}}, "the": {"_count": 8, "largest": {"_count": 1}, "night": {"_count": 1}, "Support": {"_count": 1}, "only": {"_count": 1}, "pointed": {"_count": 1}, "following": {"_count": 1}, "long": {"_count": 1}, "firelight": {"_count": 1}}, "Filch": {"_count": 1, "the": {"_count": 1}}, "twenty": {"_count": 1, "minutes": {"_count": 1}}, "before": {"_count": 4, "him": {"_count": 2}, "he": {"_count": 1}, "people": {"_count": 1}}, "now": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "while": {"_count": 1, "Hagrid": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Dumbledore": {"_count": 1}, "Umbridge": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "then": {"_count": 3, "returned": {"_count": 1}, "set": {"_count": 1}, "putting": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "stood": {"_count": 3, "an": {"_count": 1}, "in": {"_count": 1}, "grouped": {"_count": 1}}, "finishing": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 4, "Karkaroff": {"_count": 1}, "it": {"_count": 1}, "caught": {"_count": 1}, "now": {"_count": 1}}, "placed": {"_count": 1, "their": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 2, "two": {"_count": 1}, "a": {"_count": 1}}, "edged": {"_count": 1, "around": {"_count": 1}}, "far": {"_count": 1, "removed": {"_count": 1}}, "nearby": {"_count": 2, "Harry": {"_count": 1}, "were": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "watching": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "Mr": {"_count": 2, "Crouch": {"_count": 1}, "Weasley": {"_count": 1}}, "because": {"_count": 1, "Hermione": {"_count": 1}}, "toward": {"_count": 3, "him": {"_count": 1}, "Snape": {"_count": 1}, "her": {"_count": 1}}, "sitting": {"_count": 1, "next": {"_count": 1}}, "causing": {"_count": 1, "all": {"_count": 1}}, "swigging": {"_count": 1, "from": {"_count": 1}}, "your": {"_count": 1, "mothers": {"_count": 1}}, "drowned": {"_count": 1, "the": {"_count": 1}}, "howling": {"_count": 1, "with": {"_count": 1}}, "for": {"_count": 8, "support": {"_count": 2}, "breakfast": {"_count": 1}, "at": {"_count": 1}, "her": {"_count": 1}, "dinner": {"_count": 2}, "Ron": {"_count": 1}}, "who": {"_count": 2, "cares": {"_count": 1}, "had": {"_count": 1}}, "again": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "though": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 3, "ran": {"_count": 1}, "stood": {"_count": 1}, "you": {"_count": 1}}, "wearing": {"_count": 1, "deeppurple": {"_count": 1}}, "her": {"_count": 4, "eyes": {"_count": 2}, "slim": {"_count": 1}, "voice": {"_count": 1}}, "she": {"_count": 2, "worked": {"_count": 1}, "had": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "pulled": {"_count": 1, "off": {"_count": 1}}, "leapt": {"_count": 1, "into": {"_count": 1}}, "draped": {"_count": 1, "in": {"_count": 1}}, "automatically": {"_count": 1, "when": {"_count": 1}}, "away": {"_count": 3, "from": {"_count": 3}}, "from": {"_count": 1, "the": {"_count": 1}}, "Acciol": {"_count": 1, "and": {"_count": 1}}, "carrying": {"_count": 1, "all": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "quickly": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 2, "got": {"_count": 1}, "was": {"_count": 1}}, "scattering": {"_count": 1, "the": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "glaring": {"_count": 1, "in": {"_count": 1}}, "beside": {"_count": 3, "her": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "shook": {"_count": 1, "pink": {"_count": 1}}, "looked": {"_count": 2, "around": {"_count": 1}, "downward": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "what": {"_count": 1, "happened": {"_count": 1}}, "leaned": {"_count": 1, "forward": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "below": {"_count": 3, "into": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}}, "incensed": {"_count": 1, "": {"_count": 1}}, "yet": {"_count": 1, "Harry": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "together": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}, "Ron": {"_count": 2, "was": {"_count": 1}, "sat": {"_count": 1}}, "an": {"_count": 1, "ominous": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "Fang": {"_count": 1, "laying": {"_count": 1}}, "when": {"_count": 1, "Professor": {"_count": 1}}, "changed": {"_count": 1, "perceptibly": {"_count": 1}}, "amidst": {"_count": 1, "a": {"_count": 1}}, "sending": {"_count": 1, "moldy": {"_count": 1}}, "last": {"_count": 1, "": {"_count": 1}}, "loaded": {"_count": 1, "with": {"_count": 1}}, "through": {"_count": 1, "very": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "standing": {"_count": 1, "at": {"_count": 1}}, "revolving": {"_count": 1, "slowly": {"_count": 1}}, "followed": {"_count": 1, "Snape": {"_count": 1}}, "sharpened": {"_count": 1, "palpably": {"_count": 1}}, "watched": {"_count": 1, "Voldemort": {"_count": 1}}, "pushing": {"_count": 1, "Hermione": {"_count": 1}}, "behind": {"_count": 1, "which": {"_count": 1}}, "Harrys": {"_count": 1, "own": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "lit": {"_count": 1}}, "thoughtful": {"_count": 1, "concerned": {"_count": 1}}, "although": {"_count": 1, "he": {"_count": 1}}, "elbow": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "came": {"_count": 1, "cries": {"_count": 1}}}, "hidden": {"_count": 166, "beneath": {"_count": 10, "all": {"_count": 1}, "its": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 6}, "their": {"_count": 1}}, "inside": {"_count": 3, "each": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "by": {"_count": 11, "a": {"_count": 2}, "cages": {"_count": 1}, "ivy": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "generations": {"_count": 1}, "castleproud": {"_count": 1}, "thousands": {"_count": 1}, "cloudy": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 1}, "finally": {"_count": 1}, "took": {"_count": 1}}, "in": {"_count": 33, "your": {"_count": 3}, "": {"_count": 1}, "the": {"_count": 13}, "line": {"_count": 1}, "a": {"_count": 3}, "Snapes": {"_count": 1}, "shadow": {"_count": 5}, "one": {"_count": 1}, "its": {"_count": 1}, "that": {"_count": 1}, "Hagrids": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}}, "behind": {"_count": 8, "sliding": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 1}, "Arianas": {"_count": 1}}, "passageway": {"_count": 3, "hurtled": {"_count": 1}, "or": {"_count": 1}, "within": {"_count": 1}}, "": {"_count": 17, "!": {"_count": 2}, ".": {"_count": 10}, "?": {"_count": 5}}, "chamber": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 2}, "one": {"_count": 1}, "Voldemort": {"_count": 1}}, "powers": {"_count": 1, "said": {"_count": 1}}, "somewhere": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "seized": {"_count": 1, "his": {"_count": 1}}, "then": {"_count": 1, "pushed": {"_count": 1}}, "because": {"_count": 1, "Olive": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "her": {"_count": 2, "face": {"_count": 1}, "in": {"_count": 1}}, "entrance": {"_count": 1, "to": {"_count": 1}}, "faces": {"_count": 1, "pointing": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 3, "the": {"_count": 2}, "Rons": {"_count": 1}}, "wizarding": {"_count": 1, "world": {"_count": 1}}, "rabbit": {"_count": 1, "holes": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "away": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "up": {"_count": 1, "my": {"_count": 1}}, "microphones": {"_count": 1, "and": {"_count": 1}}, "staircase": {"_count": 2, "to": {"_count": 1}, "behind": {"_count": 1}}, "himself": {"_count": 1, "behind": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "throughout": {"_count": 1, "their": {"_count": 1}}, "was": {"_count": 1, "something": {"_count": 1}}, "everywhere": {"_count": 1, "they": {"_count": 1}}, "oh": {"_count": 1, "tha": {"_count": 1}}, "Grawp": {"_count": 1, "in": {"_count": 1}}, "among": {"_count": 1, "a": {"_count": 1}}, "door": {"_count": 2, "flew": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}, "and": {"_count": 3, "watched": {"_count": 1}, "safe": {"_count": 1}, "not": {"_count": 1}}, "while": {"_count": 2, "the": {"_count": 1}, "Voldemort": {"_count": 1}}, "his": {"_count": 2, "face": {"_count": 1}, "old": {"_count": 1}}, "for": {"_count": 1, "so": {"_count": 1}}, "buried": {"_count": 1, "or": {"_count": 1}}, "treasure": {"_count": 1, "": {"_count": 1}}, "perched": {"_count": 1, "a": {"_count": 1}}, "junk": {"_count": 1, "as": {"_count": 1}}, "codes": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "ragged": {"_count": 1}}, "the": {"_count": 6, "Horcruxes": {"_count": 1}, "sword": {"_count": 2}, "ring": {"_count": 1}, "connection": {"_count": 1}, "diadem": {"_count": 1}}, "something": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 2, "Horcrux": {"_count": 1}, "part": {"_count": 1}}, "they": {"_count": 1, "knew": {"_count": 1}}, "it": {"_count": 2, "the": {"_count": 1}, "when": {"_count": 1}}, "she": {"_count": 1, "cried": {"_count": 1}}, "objects": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "whose": {"_count": 1, "existence": {"_count": 1}}, "but": {"_count": 1, "always": {"_count": 1}}, "magical": {"_count": 1, "objects": {"_count": 1}}, "once": {"_count": 1, "theyd": {"_count": 1}}, "here": {"_count": 1, "that": {"_count": 1}}, "Harry": {"_count": 1, "begged": {"_count": 1}}, "cavity": {"_count": 1, "behind": {"_count": 1}}}, "presents": {"_count": 37, "": {"_count": 11, ".": {"_count": 8}, "!": {"_count": 2}, "?": {"_count": 1}}, "while": {"_count": 2, "were": {"_count": 1}, "glaring": {"_count": 1}}, "from": {"_count": 2, "them": {"_count": 1}, "your": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 4, "oh": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}, "found": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}, "were": {"_count": 2, "far": {"_count": 1}, "much": {"_count": 1}}, "his": {"_count": 1, "compliments": {"_count": 1}}, "contained": {"_count": 1, "a": {"_count": 1}}, "then": {"_count": 1, "returned": {"_count": 1}}, "of": {"_count": 1, "Honeydukes": {"_count": 1}}, "the": {"_count": 1, "doors": {"_count": 1}}, "Ill": {"_count": 1, "leave": {"_count": 1}}, "included": {"_count": 1, "a": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}, "stacked": {"_count": 1, "in": {"_count": 1}}, "waiting": {"_count": 2, "for": {"_count": 1}, "on": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "gotten": {"_count": 52, "the": {"_count": 7, "new": {"_count": 1}, "idea": {"_count": 2}, "Stone": {"_count": 1}, "point": {"_count": 1}, "message": {"_count": 1}, "answer": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "yet": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "into": {"_count": 4, "terrible": {"_count": 1}, "me": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "to": {"_count": 11, "his": {"_count": 6}, "sleep": {"_count": 1}, "their": {"_count": 2}, "know": {"_count": 1}, "her": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 1}, "Hermione": {"_count": 1}, "Sirius": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "through": {"_count": 3, "all": {"_count": 1}, "the": {"_count": 2}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "very": {"_count": 1, "angry": {"_count": 1}}, "back": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "detention": {"_count": 1}, "prefects": {"_count": 1}}, "Harry": {"_count": 1, "into": {"_count": 1}}, "an": {"_count": 2, "official": {"_count": 1}, "O": {"_count": 1}}, "lost": {"_count": 2, "": {"_count": 1}, "plenty": {"_count": 1}}, "past": {"_count": 1, "his": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 1, "at": {"_count": 1}}, "us": {"_count": 1, "said": {"_count": 1}}, "there": {"_count": 1, "he": {"_count": 1}}}, "television": {"_count": 29, "and": {"_count": 5, "the": {"_count": 2}, "gave": {"_count": 1}, "talking": {"_count": 1}, "flicked": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "set": {"_count": 1, "which": {"_count": 1}}, "VCR": {"_count": 1, "and": {"_count": 1}}, "programs": {"_count": 1, "hed": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "then": {"_count": 1, "tomorrow": {"_count": 1}}, "in": {"_count": 2, "there": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 1, "again": {"_count": 1}}, "screen": {"_count": 2, "": {"_count": 2}}, "a": {"_count": 1, "welcomehomeforthesummer": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "however": {"_count": 1, "whose": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "aerial": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "stereo": {"_count": 1}}, "aerials": {"_count": 1, "": {"_count": 1}}, "program": {"_count": 1, "": {"_count": 1}}}, "racing": {"_count": 37, "bike": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "knocked": {"_count": 1}}, "brooms": {"_count": 3, "": {"_count": 1}, "gold": {"_count": 1}, "in": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "his": {"_count": 1}, "thought": {"_count": 1}}, "the": {"_count": 1, "ball": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "broom": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "sports": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "feet": {"_count": 1, "behind": {"_count": 1}}, "bikes": {"_count": 1, "that": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}, "past": {"_count": 1, "them": {"_count": 1}}, "each": {"_count": 2, "other": {"_count": 2}}, "across": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}, "ahead": {"_count": 1, "far": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}}, "mystery": {"_count": 12, "to": {"_count": 1, "Harry": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "particularly": {"_count": 1, "if": {"_count": 1}}, "of": {"_count": 5, "Hermiones": {"_count": 1}, "the": {"_count": 3}, "these": {"_count": 1}}, "is": {"_count": 2, "it": {"_count": 1}, "creating": {"_count": 1}}, "however": {"_count": 1, "Fred": {"_count": 1}}, "he": {"_count": 1, "simply": {"_count": 1}}}, "fat": {"_count": 70, "and": {"_count": 4, "hated": {"_count": 1}, "that": {"_count": 1}, "yellow": {"_count": 1}, "ugly": {"_count": 1}}, "head": {"_count": 3, "": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}}, "wrist": {"_count": 1, "told": {"_count": 1}}, "juicy": {"_count": 1, "slightly": {"_count": 1}}, "bottom": {"_count": 3, "howling": {"_count": 1}, "": {"_count": 1}, "off": {"_count": 1}}, "gray": {"_count": 3, "rat": {"_count": 2}, "pony": {"_count": 1}}, "rat": {"_count": 1, "yellow": {"_count": 1}}, "little": {"_count": 7, "monk": {"_count": 1}, "crybabies": {"_count": 1}, "Santa": {"_count": 1}, "poufs": {"_count": 1}, "boy": {"_count": 1}, "hand": {"_count": 1}, "pony": {"_count": 1}}, "woman": {"_count": 2, "in": {"_count": 2}}, "roast": {"_count": 1, "turkeys": {"_count": 1}}, "arm": {"_count": 1, "to": {"_count": 1}}, "legs": {"_count": 1, "would": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "brown": {"_count": 1, "chickens": {"_count": 1}}, "pack": {"_count": 1, "of": {"_count": 1}}, "lady": {"_count": 3, "swung": {"_count": 1}, "in": {"_count": 2}}, "one": {"_count": 1, "into": {"_count": 1}}, "finger": {"_count": 1, "threateningly": {"_count": 1}}, "fist": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 1, "rabbit": {"_count": 1}}, "Chocoballs": {"_count": 1, "full": {"_count": 1}}, "dapplegray": {"_count": 1, "pony": {"_count": 1}}, "pony": {"_count": 2, "gave": {"_count": 1}, "": {"_count": 1}}, "pink": {"_count": 1, "pods": {"_count": 1}}, "honeycolored": {"_count": 1, "toffees": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "toffees": {"_count": 1, "in": {"_count": 1}}, "mouth": {"_count": 2, "shut": {"_count": 2}}, "lot": {"_count": 2, "of": {"_count": 2}}, "tears": {"_count": 3, "leaked": {"_count": 1}, "oozed": {"_count": 1}, "still": {"_count": 1}}, "payoff": {"_count": 1, "will": {"_count": 1}}, "beetle": {"_count": 1, "": {"_count": 1}}, "letters": {"_count": 1, "full": {"_count": 1}}, "chance": {"_count": 1, "": {"_count": 1}}, "bullfrog": {"_count": 1, "": {"_count": 1}}, "bald": {"_count": 1, "old": {"_count": 1}}, "thumbs": {"_count": 1, "and": {"_count": 1}}, "lie": {"_count": 1, "said": {"_count": 1}}, "old": {"_count": 2, "hasbeen": {"_count": 1}, "lady": {"_count": 1}}, "gold": {"_count": 1, "Galleon": {"_count": 1}}, "lip": {"_count": 1, "": {"_count": 1}}, "golden": {"_count": 1, "bullets": {"_count": 1}}, "cheeks": {"_count": 1, "into": {"_count": 1}}, "bag": {"_count": 1, "of": {"_count": 1}}, "fists": {"_count": 1, "at": {"_count": 1}}, "worms": {"_count": 1, "": {"_count": 1}}}, "hated": {"_count": 46, "exercise": {"_count": 1, "unless": {"_count": 1}}, "it": {"_count": 3, "there": {"_count": 1}, "thats": {"_count": 1}, "": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "that": {"_count": 1, "odd": {"_count": 1}}, "him": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "what": {"_count": 1}}, "more": {"_count": 2, "than": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "my": {"_count": 2, "father": {"_count": 1}, "dad": {"_count": 1}}, "the": {"_count": 7, "disappointment": {"_count": 1}, "summer": {"_count": 1}, "boy": {"_count": 1}, "whole": {"_count": 1}, "Dark": {"_count": 1}, "idea": {"_count": 1}, "sight": {"_count": 1}}, "animals": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "despised": {"_count": 1}}, "having": {"_count": 1, "Harry": {"_count": 1}}, "spiders": {"_count": 1, "": {"_count": 1}}, "everything": {"_count": 1, "about": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "Dark": {"_count": 1, "wizards": {"_count": 1}}, "Harry": {"_count": 1, "for": {"_count": 1}}, "most": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "Malfoy": {"_count": 1, "more": {"_count": 1}}, "his": {"_count": 1, "stupid": {"_count": 1}}, "those": {"_count": 1, "silver": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "shout": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "Voldemort": {"_count": 1, "himself": {"_count": 1}}, "James": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "for": {"_count": 1}}, "seeing": {"_count": 1, "absolute": {"_count": 1}}, "whose": {"_count": 1, "widening": {"_count": 1}}}, "exercise": {"_count": 9, "unless": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "one": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "It": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "great": {"_count": 1, "care": {"_count": 1}}, "caution": {"_count": 1, "with": {"_count": 1}}, "some": {"_count": 2, "control": {"_count": 2}}}, "unless": {"_count": 102, "of": {"_count": 3, "course": {"_count": 3}}, "you": {"_count": 26, "asked": {"_count": 1}, "wish": {"_count": 2}, "want": {"_count": 3}, "know": {"_count": 1}, "counted": {"_count": 4}, "switched": {"_count": 1}, "could": {"_count": 1}, "count": {"_count": 4}, "watch": {"_count": 1}, "can": {"_count": 2}, "are": {"_count": 1}, "like": {"_count": 1}, "were": {"_count": 1}, "cooperate": {"_count": 1}, "grab": {"_count": 1}, "think": {"_count": 1}}, "they": {"_count": 7, "crack": {"_count": 1}, "pull": {"_count": 1}, "really": {"_count": 1}, "have": {"_count": 2}, "were": {"_count": 1}, "can": {"_count": 1}}, "all": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 5, "have": {"_count": 1}, "command": {"_count": 1}, "stood": {"_count": 1}, "get": {"_count": 1}, "do": {"_count": 1}}, "Harrys": {"_count": 1, "ears": {"_count": 1}}, "we": {"_count": 6, "look": {"_count": 1}, "get": {"_count": 1}, "do": {"_count": 1}, "can": {"_count": 1}, "have": {"_count": 1}, "reinforce": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 2, "culprit": {"_count": 1}, "few": {"_count": 1}}, "were": {"_count": 1, "in": {"_count": 1}}, "Miss": {"_count": 2, "Granger": {"_count": 1}, "Edgecombe": {"_count": 1}}, "Harry": {"_count": 3, "kept": {"_count": 1}, "youve": {"_count": 1}, "pushed": {"_count": 1}}, "he": {"_count": 11, "knew": {"_count": 2}, "was": {"_count": 3}, "can": {"_count": 1}, "tells": {"_count": 1}, "had": {"_count": 1}, "gets": {"_count": 1}, "mastered": {"_count": 1}, "thought": {"_count": 1}}, "Scabbers": {"_count": 1, "had": {"_count": 1}}, "a": {"_count": 1, "mad": {"_count": 1}}, "some": {"_count": 1, "sort": {"_count": 1}}, "Im": {"_count": 3, "much": {"_count": 2}, "very": {"_count": 1}}, "youve": {"_count": 3, "got": {"_count": 2}, "watched": {"_count": 1}}, "youre": {"_count": 3, "supposed": {"_count": 1}, "prepared": {"_count": 2}}, "its": {"_count": 1, "something": {"_count": 1}}, "she": {"_count": 1, "wants": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "Sturgis": {"_count": 1, "Podmores": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "theyre": {"_count": 2, "proven": {"_count": 1}, "given": {"_count": 1}}, "Dumbledores": {"_count": 1, "takin": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "your": {"_count": 1, "Ministry": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "our": {"_count": 1, "information": {"_count": 1}}, "theres": {"_count": 1, "anything": {"_count": 1}}, "it": {"_count": 4, "was": {"_count": 2}, "had": {"_count": 1}, "counted": {"_count": 1}}, "youd": {"_count": 1, "rather": {"_count": 1}}, "unless": {"_count": 1, "theyve": {"_count": 1}}, "theyve": {"_count": 2, "got": {"_count": 1}, "taken": {"_count": 1}}}, "punching": {"_count": 17, "somebody": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "himself": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 2, "fist": {"_count": 2}}, "every": {"_count": 2, "part": {"_count": 1}, "inch": {"_count": 1}}, "the": {"_count": 3, "air": {"_count": 3}}, "telescope": {"_count": 1, "she": {"_count": 1}}, "them": {"_count": 1, "aside": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "pillow": {"_count": 1}}}, "favorite": {"_count": 80, "punching": {"_count": 1, "bag": {"_count": 1}}, "subjects": {"_count": 1, "": {"_count": 1}}, "hobby": {"_count": 1, "of": {"_count": 1}}, "sport": {"_count": 1, "Harry": {"_count": 1}}, "program": {"_count": 1, "had": {"_count": 1}}, "tune": {"_count": 1, "said": {"_count": 1}}, "way": {"_count": 2, "to": {"_count": 1}, "of": {"_count": 1}}, "things": {"_count": 2, "ending": {"_count": 1}, "fizzy": {"_count": 1}}, "teacher": {"_count": 4, "": {"_count": 2}, "Professor": {"_count": 1}, "at": {"_count": 1}}, "student": {"_count": 3, "": {"_count": 1}, "kept": {"_count": 1}, "might": {"_count": 1}}, "color": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "book": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 3, "team": {"_count": 2}, "teams": {"_count": 1}}, "carols": {"_count": 1, "Hagrid": {"_count": 1}}, "dog": {"_count": 1, "": {"_count": 1}}, "form": {"_count": 1, "of": {"_count": 1}}, "nephew": {"_count": 1, "": {"_count": 1}}, "shop": {"_count": 1, "Quality": {"_count": 1}}, "people": {"_count": 2, "appeared": {"_count": 1}, "in": {"_count": 1}}, "class": {"_count": 2, "": {"_count": 1}, "after": {"_count": 1}}, "subject": {"_count": 4, "": {"_count": 2}, "apart": {"_count": 1}, "was": {"_count": 1}}, "family": {"_count": 1, "in": {"_count": 1}}, "by": {"_count": 2, "far": {"_count": 2}}, "person": {"_count": 1, "at": {"_count": 1}}, "lessons": {"_count": 1, "": {"_count": 1}}, "champion": {"_count": 1, "": {"_count": 1}}, "favorite": {"_count": 1, "clothes": {"_count": 1}}, "clothes": {"_count": 1, "sir": {"_count": 1}}, "boy": {"_count": 2, "again": {"_count": 1}, "you": {"_count": 1}}, "haunts": {"_count": 1, "automatically": {"_count": 1}}, "thing": {"_count": 1, "in": {"_count": 1}}, "noses": {"_count": 1, "": {"_count": 1}}, "cousin": {"_count": 1, "said": {"_count": 1}}, "treacle": {"_count": 1, "tart": {"_count": 1}}, "chairs": {"_count": 1, "at": {"_count": 1}}, "squashy": {"_count": 1, "old": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "classes": {"_count": 1, "": {"_count": 1}}, "firs": {"_count": 1, "one": {"_count": 1}}, "photograph": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "most": {"_count": 1}}, "flavor": {"_count": 1, "of": {"_count": 1}}, "students": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "crystalized": {"_count": 1, "pineapple": {"_count": 1}}, "building": {"_count": 1, "in": {"_count": 1}}, "has": {"_count": 1, "given": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "teapot": {"_count": 1, "but": {"_count": 1}}, "Weasley": {"_count": 1, "Is": {"_count": 1}}, "singer": {"_count": 1, "Celestina": {"_count": 1}}, "As": {"_count": 1, "several": {"_count": 1}}, "time": {"_count": 1, "of": {"_count": 1}}, "pastime": {"_count": 1, "of": {"_count": 1}}, "Several": {"_count": 1, "of": {"_count": 1}}, "anymore": {"_count": 1, "hell": {"_count": 1}}, "pupil": {"_count": 1, "ever": {"_count": 1}}, "moment": {"_count": 1, "had": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "kind": {"_count": 1, "said": {"_count": 1}}, "solution": {"_count": 1, "love": {"_count": 1}}}, "often": {"_count": 99, "catch": {"_count": 1, "him": {"_count": 1}}, "said": {"_count": 5, "that": {"_count": 2}, "Krum": {"_count": 1}, "Sirius": {"_count": 1}, "and": {"_count": 1}}, "spoke": {"_count": 2, "about": {"_count": 1}, "in": {"_count": 1}}, "happened": {"_count": 2, "around": {"_count": 2}}, "had": {"_count": 1, "they": {"_count": 1}}, "do": {"_count": 3, "you": {"_count": 1}, "I": {"_count": 1}, "much": {"_count": 1}}, "as": {"_count": 3, "this": {"_count": 1}, "Hagrids": {"_count": 1}, "he": {"_count": 1}}, "outstripped": {"_count": 1, "by": {"_count": 1}}, "happen": {"_count": 1, "at": {"_count": 1}}, "didnt": {"_count": 1, "empty": {"_count": 1}}, "assured": {"_count": 1, "them": {"_count": 1}}, "stay": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "described": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "novelty": {"_count": 1}, "marks": {"_count": 1}}, "than": {"_count": 5, "was": {"_count": 2}, "not": {"_count": 2}, "usual": {"_count": 1}}, "did": {"_count": 1, "had": {"_count": 1}}, "rather": {"_count": 1, "sharp": {"_count": 1}}, "find": {"_count": 2, "they": {"_count": 1}, "before": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "evening": {"_count": 1}}, "both": {"_count": 1, "at": {"_count": 1}}, "complained": {"_count": 1, "about": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "got": {"_count": 1, "sympathy": {"_count": 1}}, "heard": {"_count": 3, "to": {"_count": 1}, "During": {"_count": 1}, "during": {"_count": 1}}, "used": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 4, "hit": {"_count": 1}, "told": {"_count": 1}, "found": {"_count": 1}, "noticed": {"_count": 1}}, "lately": {"_count": 1, "that": {"_count": 1}}, "saw": {"_count": 1, "them": {"_count": 1}}, "see": {"_count": 1, "you": {"_count": 1}}, "sported": {"_count": 1, "a": {"_count": 1}}, "risking": {"_count": 1, "much": {"_count": 1}}, "printed": {"_count": 1, "spoof": {"_count": 1}}, "require": {"_count": 1, "no": {"_count": 1}}, "comes": {"_count": 1, "up": {"_count": 1}}, "skip": {"_count": 1, "er": {"_count": 1}}, "come": {"_count": 1, "up": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "going": {"_count": 2}}, "we": {"_count": 1, "do": {"_count": 1}}, "they": {"_count": 2, "never": {"_count": 1}, "repeated": {"_count": 1}}, "rearranged": {"_count": 1, "depending": {"_count": 1}}, "at": {"_count": 1, "loggerheads": {"_count": 1}}, "infested": {"_count": 1, "with": {"_count": 1}}, "intruders": {"_count": 1, "upon": {"_count": 1}}, "withdrawing": {"_count": 1, "to": {"_count": 1}}, "essential": {"_count": 1, "to": {"_count": 1}}, "felt": {"_count": 3, "lurches": {"_count": 1}, "before": {"_count": 1}, "Bills": {"_count": 1}}, "ask": {"_count": 1, "questions": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "too": {"_count": 1}}, "since": {"_count": 1, "its": {"_count": 1}}, "Dumbledore": {"_count": 1, "finished": {"_count": 1}}, "cruelty": {"_count": 1, "at": {"_count": 1}}, "exaggerates": {"_count": 1, "of": {"_count": 1}}, "chosen": {"_count": 1, "by": {"_count": 1}}, "admired": {"_count": 1, "in": {"_count": 1}}, "this": {"_count": 1, "happens": {"_count": 1}}, "asked": {"_count": 1, "for": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "predicted": {"_count": 1, "in": {"_count": 1}}, "joined": {"_count": 1, "by": {"_count": 1}}, "hushed": {"_count": 1, "up": {"_count": 1}}, "without": {"_count": 1, "the": {"_count": 1}}, "wrought": {"_count": 1, "by": {"_count": 1}}, "skates": {"_count": 1, "over": {"_count": 1}}, "occupied": {"_count": 1, "across": {"_count": 1}}}, "skinny": {"_count": 22, "for": {"_count": 2, "his": {"_count": 2}}, "jet": {"_count": 1, "body": {"_count": 1}}, "with": {"_count": 1, "brilliant": {"_count": 1}}, "boy": {"_count": 3, "with": {"_count": 1}, "of": {"_count": 1}, "was": {"_count": 1}}, "patches": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "thirteen": {"_count": 1}}, "wizard": {"_count": 1, "completely": {"_count": 1}}, "indeed": {"_count": 1, "but": {"_count": 1}}, "blackhaired": {"_count": 1, "bespectacled": {"_count": 1}}, "No": {"_count": 1, "no": {"_count": 1}}, "blond": {"_count": 2, "boy": {"_count": 2}}, "worms": {"_count": 1, "then": {"_count": 1}}, "pallid": {"_count": 1, "legs": {"_count": 1}}, "harassedlooking": {"_count": 1, "woman": {"_count": 1}}, "ankles": {"_count": 3, "": {"_count": 3}}, "girl": {"_count": 1, "of": {"_count": 1}}}, "smaller": {"_count": 38, "and": {"_count": 5, "skinnier": {"_count": 1}, "smaller": {"_count": 1}, "less": {"_count": 1}, "warmer": {"_count": 1}, "entirely": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "than": {"_count": 10, "the": {"_count": 4}, "his": {"_count": 1}, "Dudleys": {"_count": 1}, "Moodys": {"_count": 1}, "a": {"_count": 2}, "Siriuss": {"_count": 1}}, "boy": {"_count": 1, "smirking": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "comets": {"_count": 1, "each": {"_count": 1}}, "room": {"_count": 1, "lined": {"_count": 1}}, "one": {"_count": 1, "a": {"_count": 1}}, "much": {"_count": 1, "less": {"_count": 1}}, "lanternlit": {"_count": 1, "ones": {"_count": 1}}, "hall": {"_count": 2, "beyond": {"_count": 1}, "where": {"_count": 1}}, "tables": {"_count": 1, "all": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "headline": {"_count": 1, "was": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "slighter": {"_count": 1, "and": {"_count": 1}}, "writing": {"_count": 1, "across": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "lakes": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "others": {"_count": 1, "larger": {"_count": 1}}, "kin": {"_count": 1, "and": {"_count": 1}}, "shrink": {"_count": 1, "as": {"_count": 1}}}, "skinnier": {"_count": 1, "than": {"_count": 1, "he": {"_count": 1}}}, "wear": {"_count": 49, "were": {"_count": 1, "old": {"_count": 1}}, "3": {"_count": 1, "": {"_count": 1}}, "Dudleys": {"_count": 1, "old": {"_count": 1}}, "that": {"_count": 4, "thing": {"_count": 1}, "stupid": {"_count": 1}, "scar": {"_count": 1}, "to": {"_count": 1}}, "those": {"_count": 1, "socks": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "them": {"_count": 2, "": {"_count": 1}, "Archie": {"_count": 1}}, "these": {"_count": 1, "said": {"_count": 1}}, "off": {"_count": 5, "by": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}, "over": {"_count": 1}}, "the": {"_count": 2, "badges": {"_count": 1}, "Horcrux": {"_count": 1}}, "once": {"_count": 1, "before": {"_count": 1}}, "on": {"_count": 2, "Tuesday": {"_count": 1}, "Christmas": {"_count": 1}}, "clothes": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 1, "Invisibility": {"_count": 1}}, "a": {"_count": 1, "necklace": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "handknitted": {"_count": 1, "mittens": {"_count": 1}}, "their": {"_count": 1, "hearts": {"_count": 1}}, "her": {"_count": 1, "hair": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "It": {"_count": 1}}, "it": {"_count": 6, "just": {"_count": 1}, "in": {"_count": 1}, "anymore": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 1}, "well": {"_count": 1}}, "your": {"_count": 1, "cloak": {"_count": 1}}, "pajamas": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "you": {"_count": 1}}, "dress": {"_count": 1, "robes": {"_count": 1}}, "sun": {"_count": 1, "colors": {"_count": 1}}, "my": {"_count": 1, "tiara": {"_count": 1}}, "such": {"_count": 1, "long": {"_count": 1}}, "Death": {"_count": 2, "Eater": {"_count": 2}}}, "bigger": {"_count": 27, "than": {"_count": 9, "he": {"_count": 2}, "him": {"_count": 1}, "Harrys": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}, "a": {"_count": 1}}, "thrill": {"_count": 1, "than": {"_count": 1}}, "sizes": {"_count": 1, "once": {"_count": 1}}, "and": {"_count": 6, "Id": {"_count": 1}, "better": {"_count": 3}, "bigger": {"_count": 2}}, "for": {"_count": 1, "you": {"_count": 1}}, "bones": {"_count": 1, "than": {"_count": 1}}, "if": {"_count": 1, "anything": {"_count": 1}}, "ones": {"_count": 1, "mighta": {"_count": 1}}, "more": {"_count": 1, "important": {"_count": 1}}, "giveaway": {"_count": 1, "": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "their": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "plan": {"_count": 1, "Harry": {"_count": 1}}}, "knobbly": {"_count": 11, "knees": {"_count": 2, "black": {"_count": 1}, "Harry": {"_count": 1}}, "sticks": {"_count": 1, "used": {"_count": 1}}, "hands": {"_count": 1, "were": {"_count": 1}}, "walking": {"_count": 1, "stick": {"_count": 1}}, "rolledup": {"_count": 1, "pair": {"_count": 1}}, "gloves": {"_count": 1, "": {"_count": 1}}, "brown": {"_count": 1, "arms": {"_count": 1}}, "knitted": {"_count": 1, "elf": {"_count": 1}}, "elf": {"_count": 1, "hats": {"_count": 1}}, "little": {"_count": 1, "fist": {"_count": 1}}}, "knees": {"_count": 134, "black": {"_count": 1, "hair": {"_count": 1}}, "buckle": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "trembling": {"_count": 1}}, "Our": {"_count": 1, "heads": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 21}, "!": {"_count": 1}}, "werent": {"_count": 1, "going": {"_count": 1}}, "Harry": {"_count": 4, "was": {"_count": 1}, "had": {"_count": 1}, "held": {"_count": 1}, "heard": {"_count": 1}}, "then": {"_count": 1, "it": {"_count": 1}}, "were": {"_count": 3, "trembling": {"_count": 1}, "already": {"_count": 1}, "becoming": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "and": {"_count": 22, "his": {"_count": 3}, "brought": {"_count": 1}, "reached": {"_count": 1}, "sank": {"_count": 1}, "then": {"_count": 2}, "entered": {"_count": 1}, "allowed": {"_count": 1}, "pulled": {"_count": 1}, "kissing": {"_count": 1}, "kissed": {"_count": 1}, "elbows": {"_count": 1}, "started": {"_count": 1}, "was": {"_count": 1}, "turned": {"_count": 1}, "held": {"_count": 1}, "Hermione": {"_count": 1}, "settled": {"_count": 1}, "began": {"_count": 1}, "at": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "choked": {"_count": 1, "Tarantallegral": {"_count": 1}}, "had": {"_count": 3, "given": {"_count": 2}, "collided": {"_count": 1}}, "sagging": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "the": {"_count": 1, "lump": {"_count": 1}}, "he": {"_count": 4, "had": {"_count": 1}, "was": {"_count": 2}, "in": {"_count": 1}}, "his": {"_count": 2, "hands": {"_count": 1}, "head": {"_count": 1}}, "kept": {"_count": 1, "hitting": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "silently": {"_count": 1}}, "groveling": {"_count": 1, "his": {"_count": 1}}, "staggered": {"_count": 1, "forward": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "feeling": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 4, "his": {"_count": 3}, "the": {"_count": 1}}, "obediently": {"_count": 1, "preparing": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "beside": {"_count": 8, "her": {"_count": 2}, "the": {"_count": 2}, "Malfoy": {"_count": 1}, "Dumbledore": {"_count": 1}, "George": {"_count": 1}, "Mundungus": {"_count": 1}}, "slightly": {"_count": 2, "to": {"_count": 1}, "just": {"_count": 1}}, "buckled": {"_count": 5, "under": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "gasping": {"_count": 1, "for": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "crawled": {"_count": 1, "toward": {"_count": 1}}, "trembling": {"_count": 1, "her": {"_count": 1}}, "now": {"_count": 1, "feeling": {"_count": 1}}, "staring": {"_count": 1, "fixedly": {"_count": 1}}, "gave": {"_count": 3, "way": {"_count": 3}}, "again": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "bottle": {"_count": 1}}, "or": {"_count": 1, "folded": {"_count": 1}}, "remained": {"_count": 2, "firm": {"_count": 1}, "firmly": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "tighten": {"_count": 1, "beneath": {"_count": 1}}, "causing": {"_count": 1, "him": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "obscured": {"_count": 1, "by": {"_count": 1}}, "jutting": {"_count": 1, "over": {"_count": 1}}, "shaking": {"_count": 2, "uncontrollably": {"_count": 1}, "with": {"_count": 1}}, "No": {"_count": 1, "HEDWIG": {"_count": 1}}, "searching": {"_count": 1, "under": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "stand": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 2, "Rons": {"_count": 1}, "the": {"_count": 1}}, "relinquished": {"_count": 1, "Dobbys": {"_count": 1}}, "clutching": {"_count": 1, "as": {"_count": 1}}}, "green": {"_count": 245, "eyes": {"_count": 12, "": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "puzzled": {"_count": 1}, "as": {"_count": 1}, "staring": {"_count": 1}, "large": {"_count": 1}, "found": {"_count": 1}, "were": {"_count": 1}, "so": {"_count": 1}}, "light": {"_count": 46, "and": {"_count": 7}, "came": {"_count": 2}, "more": {"_count": 1}, "but": {"_count": 1}, "while": {"_count": 1}, "shot": {"_count": 2}, "a": {"_count": 2}, "which": {"_count": 1}, "momentarily": {"_count": 1}, "that": {"_count": 1}, "blazed": {"_count": 1}, "issued": {"_count": 1}, "": {"_count": 5}, "had": {"_count": 2}, "flew": {"_count": 3}, "flying": {"_count": 1}, "at": {"_count": 1}, "whole": {"_count": 1}, "in": {"_count": 1}, "illuminated": {"_count": 1}, "on": {"_count": 1}, "two": {"_count": 1}, "Harry": {"_count": 1}, "Harryl": {"_count": 1}, "filled": {"_count": 2}, "flashed": {"_count": 1}, "burst": {"_count": 1}, "erupted": {"_count": 1}, "continued": {"_count": 1}}, "had": {"_count": 2, "waved": {"_count": 1}, "turned": {"_count": 1}}, "ink": {"_count": 4, "": {"_count": 3}, "address": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "icing": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "Mr": {"_count": 1}}, "and": {"_count": 22, "when": {"_count": 1}, "a": {"_count": 1}, "silver": {"_count": 4}, "rose": {"_count": 1}, "on": {"_count": 1}, "leathery": {"_count": 1}, "roared": {"_count": 1}, "red": {"_count": 3}, "glittering": {"_count": 1}, "ghostly": {"_count": 1}, "pale": {"_count": 1}, "clammy": {"_count": 1}, "yellow": {"_count": 1}, "sickly": {"_count": 1}, "blue": {"_count": 1}, "tiny": {"_count": 1}, "brown": {"_count": 1}}, "smoke": {"_count": 3, "came": {"_count": 1}, "and": {"_count": 1}, "issued": {"_count": 1}}, "bean": {"_count": 1, "looked": {"_count": 1}}, "hills": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 11}, "?": {"_count": 1}}, "exactly": {"_count": 1, "the": {"_count": 1}}, "sparks": {"_count": 3, "right": {"_count": 1}, "": {"_count": 2}}, "hangings": {"_count": 1, "became": {"_count": 1}}, "pond": {"_count": 1, "full": {"_count": 1}}, "robes": {"_count": 7, "which": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 2}, "embroidered": {"_count": 2}, "that": {"_count": 1}}, "flames": {"_count": 3, "made": {"_count": 1}, "which": {"_count": 1}, "burst": {"_count": 1}}, "fields": {"_count": 1, "that": {"_count": 1}}, "liquid": {"_count": 3, "on": {"_count": 1}, "smelling": {"_count": 1}, "like": {"_count": 1}}, "in": {"_count": 2, "color": {"_count": 1}, "the": {"_count": 1}}, "mottled": {"_count": 1, "skin": {"_count": 1}}, "boil": {"_count": 1, "where": {"_count": 1}}, "mold": {"_count": 1, "and": {"_count": 1}}, "onion": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "lilac": {"_count": 1, "midnightblue": {"_count": 1}}, "lying": {"_count": 1, "curled": {"_count": 1}}, "thick": {"_count": 1, "as": {"_count": 1}}, "cover": {"_count": 1, "emblazoned": {"_count": 1}}, "witch": {"_count": 1, "wrapped": {"_count": 1}}, "cars": {"_count": 1, "each": {"_count": 1}}, "normally": {"_count": 1, "": {"_count": 1}}, "dress": {"_count": 2, "with": {"_count": 1}, "a": {"_count": 1}}, "tinged": {"_count": 1, "face": {"_count": 1}}, "creature": {"_count": 1, "with": {"_count": 1}}, "teeth": {"_count": 1, "and": {"_count": 1}}, "words": {"_count": 1, "that": {"_count": 1}}, "sequined": {"_count": 1, "dress": {"_count": 1}}, "andgray": {"_count": 1, "blur": {"_count": 1}}, "sludge": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "silver": {"_count": 1}}, "like": {"_count": 1, "everyone": {"_count": 1}}, "both": {"_count": 1, "hands": {"_count": 1}}, "for": {"_count": 1, "Ireland": {"_count": 1}}, "hats": {"_count": 1, "bedecked": {"_count": 1}}, "rosette": {"_count": 2, "he": {"_count": 1}, "above": {"_count": 1}}, "rosettes": {"_count": 1, "too": {"_count": 1}}, "shamrock": {"_count": 1, "pinned": {"_count": 1}}, "blurs": {"_count": 1, "swept": {"_count": 1}}, "screaming": {"_count": 1, "their": {"_count": 1}}, "skull": {"_count": 3, "high": {"_count": 1}, "with": {"_count": 2}}, "instead": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 3}}, "POTTER": {"_count": 1, "STINKS": {"_count": 1}}, "quill": {"_count": 3, "into": {"_count": 1}, "had": {"_count": 1}, "from": {"_count": 1}}, "one": {"_count": 1, "which": {"_count": 1}}, "pear": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 1, "handle": {"_count": 1}}, "tennisballshaped": {"_count": 1, "eyes": {"_count": 1}}, "they": {"_count": 1, "resembled": {"_count": 1}}, "weed": {"_count": 2, "stretched": {"_count": 1}, "with": {"_count": 1}}, "skin": {"_count": 1, "": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "beard": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "bright": {"_count": 1}}, "lay": {"_count": 1, "parched": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "walls": {"_count": 1, "covered": {"_count": 1}}, "hat": {"_count": 3, "but": {"_count": 1}, "and": {"_count": 1}, "she": {"_count": 1}}, "balloon": {"_count": 1, "and": {"_count": 1}}, "tweed": {"_count": 2, "cloak": {"_count": 2}}, "steak": {"_count": 1, "": {"_count": 1}}, "nylon": {"_count": 2, "pinafore": {"_count": 1}, "stood": {"_count": 1}}, "might": {"_count": 1, "turn": {"_count": 1}}, "gloves": {"_count": 1, "": {"_count": 1}}, "almondshaped": {"_count": 1, "eyes": {"_count": 1}}, "gloom": {"_count": 1, "his": {"_count": 1}}, "half": {"_count": 1, "light": {"_count": 1}}, "water": {"_count": 2, "looking": {"_count": 1}, "and": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "scaly": {"_count": 1, "material": {"_count": 1}}, "bowler": {"_count": 2, "upon": {"_count": 1}, "hat": {"_count": 1}}, "again": {"_count": 1, "rose": {"_count": 1}}, "fire": {"_count": 1, "and": {"_count": 1}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "lawn": {"_count": 1, "": {"_count": 1}}, "object": {"_count": 1, "about": {"_count": 1}}, "worms": {"_count": 1, "": {"_count": 1}}, "velvet": {"_count": 1, "dressing": {"_count": 1}}, "chain": {"_count": 1, "appeared": {"_count": 1}}, "potion": {"_count": 1, "": {"_count": 1}}, "glow": {"_count": 1, "from": {"_count": 1}}, "ointment": {"_count": 1, "": {"_count": 1}}, "sunlit": {"_count": 1, "water": {"_count": 1}}, "eye": {"_count": 2, "reflected": {"_count": 1}, "looking": {"_count": 1}}, "button": {"_count": 1, "near": {"_count": 1}}, "collided": {"_count": 1, "in": {"_count": 1}}, "mucus": {"_count": 1, "glistening": {"_count": 1}}, "writing": {"_count": 1, "across": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "stones": {"_count": 2, "glinted": {"_count": 1}, "It": {"_count": 1}}, "wherever": {"_count": 1, "the": {"_count": 1}}, "shoots": {"_count": 1, "were": {"_count": 1}}, "mountains": {"_count": 1, "and": {"_count": 1}}, "reedfilled": {"_count": 1, "world": {"_count": 1}}, "of": {"_count": 1, "Slytherin": {"_count": 1}}, "boat": {"_count": 2, "": {"_count": 1}, "bump": {"_count": 1}}, "tubers": {"_count": 1, "like": {"_count": 1}}, "roots": {"_count": 1, "were": {"_count": 1}}, "jets": {"_count": 1, "of": {"_count": 1}}, "shade": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "red": {"_count": 1}}, "jet": {"_count": 1, "meet": {"_count": 1}}}, "wore": {"_count": 51, "round": {"_count": 2, "glasses": {"_count": 2}}, "maroon": {"_count": 1, "tailcoats": {"_count": 1}}, "a": {"_count": 12, "very": {"_count": 2}, "patched": {"_count": 1}, "dashing": {"_count": 1}, "tweed": {"_count": 1}, "single": {"_count": 1}, "monocle": {"_count": 1}, "purple": {"_count": 1}, "number": {"_count": 1}, "satisfied": {"_count": 1}, "cap": {"_count": 1}, "strange": {"_count": 1}}, "halfmoon": {"_count": 1, "glasses": {"_count": 1}}, "glasses": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}}, "looking": {"_count": 1, "so": {"_count": 1}}, "an": {"_count": 4, "expression": {"_count": 3}, "unpleasant": {"_count": 1}}, "her": {"_count": 1, "hair": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "long": {"_count": 2, "robes": {"_count": 1}, "plain": {"_count": 1}}, "on": {"_count": 4, "": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "the": {"_count": 1}}, "whenever": {"_count": 1, "she": {"_count": 1}}, "jeweled": {"_count": 1, "spectacles": {"_count": 1}}, "to": {"_count": 2, "Uncle": {"_count": 1}, "reveal": {"_count": 1}}, "thick": {"_count": 1, "ropes": {"_count": 1}}, "it": {"_count": 1, "And": {"_count": 1}}, "hornrimmed": {"_count": 1, "glasses": {"_count": 1}}, "his": {"_count": 1, "long": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "their": {"_count": 1, "thick": {"_count": 1}}, "Father": {"_count": 1, "Christmas": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Marvolos": {"_count": 1, "blackstoned": {"_count": 1}}, "and": {"_count": 1, "departed": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "draped": {"_count": 1, "like": {"_count": 1}}, "matching": {"_count": 1, "lacy": {"_count": 1}}, "as": {"_count": 1, "earrings": {"_count": 1}}, "spectacles": {"_count": 1, "": {"_count": 1}}}, "round": {"_count": 166, "glasses": {"_count": 4, "held": {"_count": 1}, "and": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 13, "round": {"_count": 4}, "face": {"_count": 1}, "smooth": {"_count": 1}, "electric": {"_count": 1}, "slightly": {"_count": 1}, "reaching": {"_count": 1}, "covered": {"_count": 2}, "hard": {"_count": 1}, "set": {"_count": 1}}, "his": {"_count": 5, "new": {"_count": 1}, "head": {"_count": 1}, "sting": {"_count": 1}, "neck": {"_count": 2}}, "the": {"_count": 17, "head": {"_count": 1}, "corner": {"_count": 2}, "door": {"_count": 1}, "grounds": {"_count": 1}, "room": {"_count": 2}, "fence": {"_count": 1}, "Ministry": {"_count": 1}, "twist": {"_count": 1}, "caves": {"_count": 1}, "mountains": {"_count": 1}, "living": {"_count": 1}, "kitchen": {"_count": 1}, "other": {"_count": 1}, "lawn": {"_count": 1}, "world": {"_count": 1}}, "tight": {"_count": 1, "corners": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 11}, "!": {"_count": 2}}, "Gringotts": {"_count": 1, "but": {"_count": 1}}, "howling": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 2, "bend": {"_count": 1}, "one": {"_count": 1}}, "for": {"_count": 4, "dinner": {"_count": 4}}, "hole": {"_count": 1, "in": {"_count": 1}}, "room": {"_count": 1, "full": {"_count": 1}}, "ball": {"_count": 1, "wings": {"_count": 1}}, "my": {"_count": 5, "house": {"_count": 1}, "privates": {"_count": 1}, "neck": {"_count": 1}, "mum": {"_count": 1}, "sickbed": {"_count": 1}}, "here": {"_count": 3, "said": {"_count": 1}, "Harry": {"_count": 1}, "anymore": {"_count": 1}}, "bottle": {"_count": 1, "at": {"_count": 1}}, "they": {"_count": 2, "have": {"_count": 1}, "were": {"_count": 1}}, "that": {"_count": 1, "took": {"_count": 1}}, "them": {"_count": 2, "up": {"_count": 2}}, "face": {"_count": 10, "fearful": {"_count": 1}, "anxious": {"_count": 1}, "gleaming": {"_count": 1}, "shining": {"_count": 1}, "was": {"_count": 3}, "grew": {"_count": 1}, "seemed": {"_count": 1}, "flat": {"_count": 1}}, "gather": {"_count": 1, "round": {"_count": 1}}, "pink": {"_count": 1, "face": {"_count": 1}}, "greenish": {"_count": 1, "lamps": {"_count": 1}}, "now": {"_count": 2, "like": {"_count": 1}, "said": {"_count": 1}}, "table": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "six": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 4, "Harry": {"_count": 1}, "his": {"_count": 1}, "Professor": {"_count": 1}, "him": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "blue": {"_count": 3, "eyes": {"_count": 3}}, "eyes": {"_count": 3, "widening": {"_count": 1}, "as": {"_count": 1}, "flying": {"_count": 1}}, "shiny": {"_count": 1, "face": {"_count": 1}}, "faced": {"_count": 2, "extremely": {"_count": 1}, "boy": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "Galleons": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "amber": {"_count": 2, "eye": {"_count": 1}, "eyes": {"_count": 1}}, "of": {"_count": 4, "applause": {"_count": 3}, "polite": {"_count": 1}}, "boyish": {"_count": 1, "face": {"_count": 1}}, "with": {"_count": 6, "anxiety": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "you": {"_count": 1}, "": {"_count": 1}}, "green": {"_count": 2, "eyes": {"_count": 2}}, "rosy": {"_count": 1, "face": {"_count": 1}}, "about": {"_count": 2, "seven": {"_count": 1}, "five": {"_count": 1}}, "fifty": {"_count": 1, "points": {"_count": 1}}, "dozen": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "up": {"_count": 5, "the": {"_count": 3}, "anymore": {"_count": 1}, "his": {"_count": 1}}, "Harry": {"_count": 1, "found": {"_count": 1}}, "your": {"_count": 2, "house": {"_count": 1}, "neck": {"_count": 1}}, "to": {"_count": 2, "much": {"_count": 1}, "everybody": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}, "charred": {"_count": 1, "hole": {"_count": 1}}, "burn": {"_count": 1, "mark": {"_count": 1}}, "friendly": {"_count": 1, "face": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "her": {"_count": 1, "eyebrows": {"_count": 1}}, "abou": {"_count": 1, "DeeJohn": {"_count": 1}}, "an": {"_count": 1, "listened": {"_count": 1}}, "dark": {"_count": 1, "soggy": {"_count": 1}}, "off": {"_count": 1, "your": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "head": {"_count": 1, "moved": {"_count": 1}}, "one": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "shes": {"_count": 1}}, "balls": {"_count": 1, "of": {"_count": 1}}, "London": {"_count": 1, "on": {"_count": 1}}, "dusk": {"_count": 1, "that": {"_count": 1}}, "eye": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "our": {"_count": 1, "necks": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}}, "Scotch": {"_count": 1, "tape": {"_count": 1, "because": {"_count": 1}}}, "tape": {"_count": 6, "because": {"_count": 1, "of": {"_count": 1}}, "measure": {"_count": 5, "with": {"_count": 1}, "which": {"_count": 1}, "crumpled": {"_count": 1}, "and": {"_count": 2}}}, "punched": {"_count": 17, "him": {"_count": 5, "on": {"_count": 1}, "in": {"_count": 2}, "sending": {"_count": 1}, "from": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "Malfoy": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 3, "air": {"_count": 3}}, "me": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "oncoming": {"_count": 1}}, "his": {"_count": 1, "pillow": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "wizard": {"_count": 1, "while": {"_count": 1}}, "and": {"_count": 1, "pummeled": {"_count": 1}}}, "own": {"_count": 629, "appearance": {"_count": 1, "was": {"_count": 1}}, "joke": {"_count": 1, "": {"_count": 1}}, "story": {"_count": 1, "when": {"_count": 1}}, "sort": {"_count": 1, "fer": {"_count": 1}}, "subject": {"_count": 1, "now": {"_count": 1}}, "way": {"_count": 3, "because": {"_count": 1}, "Potter": {"_count": 1}, "after": {"_count": 1}}, "": {"_count": 54, ".": {"_count": 47}, "?": {"_count": 3}, "!": {"_count": 4}}, "broom": {"_count": 2, "": {"_count": 2}}, "noble": {"_count": 1, "history": {"_count": 1}}, "said": {"_count": 2, "Malfoy": {"_count": 1}, "Hermione": {"_count": 1}}, "good": {"_count": 4, "you": {"_count": 1}, "": {"_count": 2}, "thought": {"_count": 1}}, "wand": {"_count": 40, "not": {"_count": 1}, "attempted": {"_count": 1}, "and": {"_count": 4}, "at": {"_count": 3}, "rolling": {"_count": 1}, "back": {"_count": 2}, "pointing": {"_count": 1}, "which": {"_count": 3}, "but": {"_count": 3}, "pointed": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 6}, "over": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "would": {"_count": 1}, "out": {"_count": 1}, "as": {"_count": 2}, "to": {"_count": 1}, "held": {"_count": 1}, "before": {"_count": 1}, "hastily": {"_count": 1}, "cleaving": {"_count": 1}, "trembled": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "club": {"_count": 1, "": {"_count": 1}}, "pile": {"_count": 1, "which": {"_count": 1}}, "and": {"_count": 12, "mines": {"_count": 1}, "others": {"_count": 2}, "if": {"_count": 1}, "looking": {"_count": 1}, "noticed": {"_count": 1}, "sipped": {"_count": 1}, "said": {"_count": 1}, "questioned": {"_count": 1}, "I": {"_count": 1}, "together": {"_count": 1}, "Albus": {"_count": 1}}, "new": {"_count": 1, "wizard": {"_count": 1}}, "bed": {"_count": 4, "and": {"_count": 2}, "which": {"_count": 1}, "keeping": {"_count": 1}}, "Quidditch": {"_count": 1, "team": {"_count": 1}}, "one": {"_count": 1, "afternoon": {"_count": 1}}, "House": {"_count": 2, "": {"_count": 1}, "Slytherin": {"_count": 1}}, "What": {"_count": 2, "are": {"_count": 2}}, "reasons": {"_count": 1, "for": {"_count": 1}}, "life": {"_count": 8, "and": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 3}, "": {"_count": 2}, "between": {"_count": 1}}, "palms": {"_count": 1, "Harry": {"_count": 1}}, "head": {"_count": 9, "crying": {"_count": 1}, "toppling": {"_count": 1}, "shrill": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "be": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}}, "I": {"_count": 2, "must": {"_count": 1}, "think": {"_count": 1}}, "mark": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 3, "they": {"_count": 1}, "had": {"_count": 1}, "Rons": {"_count": 1}}, "a": {"_count": 3, "houseelf": {"_count": 1}, "body": {"_count": 1}, "power": {"_count": 1}}, "fault": {"_count": 2, "youve": {"_count": 1}, "your": {"_count": 1}}, "list": {"_count": 1, "peered": {"_count": 1}}, "face": {"_count": 10, "all": {"_count": 1}, "as": {"_count": 1}, "swimming": {"_count": 1}, "change": {"_count": 1}, "was": {"_count": 2}, "grinning": {"_count": 1}, "filled": {"_count": 1}, "staring": {"_count": 1}, "glared": {"_count": 1}}, "gleaming": {"_count": 1, "teeth": {"_count": 1}}, "Bet": {"_count": 1, "you": {"_count": 1}}, "son": {"_count": 6, "": {"_count": 3}, "Dudley": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}}, "ears": {"_count": 3, "rolled": {"_count": 1}, "and": {"_count": 1}, "onto": {"_count": 1}}, "earmuffs": {"_count": 1, "": {"_count": 1}}, "winking": {"_count": 1, "portrait": {"_count": 1}}, "range": {"_count": 1, "of": {"_count": 1}}, "desk": {"_count": 1, "narrowly": {"_count": 1}}, "living": {"_count": 2, "faces": {"_count": 1}, "body": {"_count": 1}}, "pounding": {"_count": 2, "footsteps": {"_count": 1}, "feet": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "true": {"_count": 1, "heir": {"_count": 1}}, "class": {"_count": 1, "one": {"_count": 1}}, "were": {"_count": 1, "far": {"_count": 1}}, "secret": {"_count": 1, "chamber": {"_count": 1}}, "business": {"_count": 4, "and": {"_count": 2}, "": {"_count": 2}}, "diary": {"_count": 1, "": {"_count": 1}}, "ink": {"_count": 1, "came": {"_count": 1}}, "toilet": {"_count": 1, "and": {"_count": 1}}, "farewell": {"_count": 1, "on": {"_count": 1}}, "parents": {"_count": 1, "and": {"_count": 1}}, "ribs": {"_count": 1, "flames": {"_count": 1}}, "blood": {"_count": 6, "soaking": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}, "pulsing": {"_count": 1}, "more": {"_count": 1}}, "sword": {"_count": 1, "Gilderoy": {"_count": 1}}, "powers": {"_count": 1, "to": {"_count": 1}}, "very": {"_count": 1, "rare": {"_count": 1}}, "free": {"_count": 3, "will": {"_count": 3}}, "daughter": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "Hedwig": {"_count": 1, "": {"_count": 1}}, "registration": {"_count": 1, "number": {"_count": 1}}, "trunk": {"_count": 4, "when": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}}, "name": {"_count": 4, "made": {"_count": 1}, "": {"_count": 2}, "whether": {"_count": 1}}, "breath": {"_count": 3, "catch": {"_count": 1}, "drowned": {"_count": 1}, "and": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "students": {"_count": 1, "above": {"_count": 1}}, "roots": {"_count": 1, "into": {"_count": 1}}, "beautifully": {"_count": 1, "cut": {"_count": 1}}, "classes": {"_count": 1, "let": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "star": {"_count": 1, "chart": {"_count": 1}}, "why": {"_count": 1, "arent": {"_count": 1}}, "botched": {"_count": 1, "beheading": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "safety": {"_count": 5, "you": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "to": {"_count": 1}}, "heads": {"_count": 1, "incapable": {"_count": 1}}, "presents": {"_count": 1, "": {"_count": 1}}, "bedroom": {"_count": 1, "": {"_count": 1}}, "skin": {"_count": 1, "as": {"_count": 1}}, "work": {"_count": 2, "he": {"_count": 1}, "was": {"_count": 1}}, "devices": {"_count": 1, "it": {"_count": 1}}, "watch": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 2, "Dark": {"_count": 1}, "stag": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "accord": {"_count": 10, "": {"_count": 5}, "supervised": {"_count": 1}, "at": {"_count": 1}, "did": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "cleverness": {"_count": 1, "": {"_count": 1}}, "death": {"_count": 6, "had": {"_count": 1}, "sentence": {"_count": 1}, "": {"_count": 1}, "by": {"_count": 1}, "stand": {"_count": 1}, "to": {"_count": 1}}, "stinking": {"_count": 1, "skin": {"_count": 1}}, "voice": {"_count": 5, "And": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "sounded": {"_count": 1}}, "leg": {"_count": 1, "and": {"_count": 1}}, "attempts": {"_count": 1, "at": {"_count": 1}}, "beds": {"_count": 1, "Hermione": {"_count": 1}}, "father": {"_count": 2, "back": {"_count": 1}, "Fred": {"_count": 1}}, "Gringotts": {"_count": 1, "vault": {"_count": 1}}, "homemade": {"_count": 1, "rock": {"_count": 1}}, "grapefruit": {"_count": 2, "quarter": {"_count": 2}}, "sons": {"_count": 1, "We": {"_count": 1}}, "shamrock": {"_count": 1, "covered": {"_count": 1}}, "children": {"_count": 1, "knew": {"_count": 1}}, "cups": {"_count": 1, "": {"_count": 1}}, "throat": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "minister": {"_count": 1, "and": {"_count": 1}}, "Firebolt": {"_count": 1, "and": {"_count": 1}}, "pajamas": {"_count": 2, "said": {"_count": 1}, "out": {"_count": 1}}, "sleeves": {"_count": 1, "": {"_count": 1}}, "rubbish": {"_count": 1, "": {"_count": 1}}, "mother": {"_count": 3, "wont": {"_count": 1}, "like": {"_count": 1}, "not": {"_count": 1}}, "school": {"_count": 1, "days": {"_count": 1}}, "house": {"_count": 4, "for": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "plates": {"_count": 1, "": {"_count": 1}}, "departments": {"_count": 1, "of": {"_count": 1}}, "dormitory": {"_count": 1, "which": {"_count": 1}}, "daring": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "despair": {"_count": 1, "": {"_count": 1}}, "schools": {"_count": 1, "": {"_count": 1}}, "fourposter": {"_count": 2, "intending": {"_count": 1}, "and": {"_count": 1}}, "champion": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "muttered": {"_count": 1}}, "food": {"_count": 2, "and": {"_count": 1}, "no": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "too": {"_count": 1, "Harry": {"_count": 1}}, "horrific": {"_count": 1, "deaths": {"_count": 1}}, "foot": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "ask": {"_count": 1}}, "invention": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "hangings": {"_count": 1, "heavyeyed": {"_count": 1}}, "menu": {"_count": 1, "then": {"_count": 1}}, "hand": {"_count": 6, "down": {"_count": 1}, "into": {"_count": 1}, "carefully": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "under": {"_count": 1}}, "days": {"_count": 1, "here": {"_count": 1}}, "brother": {"_count": 2, "Aberforth": {"_count": 1}, "": {"_count": 1}}, "hostage": {"_count": 1, "one": {"_count": 1}}, "friend": {"_count": 1, "": {"_count": 1}}, "elf": {"_count": 1, "": {"_count": 1}}, "housework": {"_count": 1, "you": {"_count": 1}}, "letter": {"_count": 1, "first": {"_count": 1}}, "superiors": {"_count": 1, "handwriting": {"_count": 1}}, "thanks": {"_count": 1, "": {"_count": 1}}, "Krums": {"_count": 1, "all": {"_count": 1}}, "steam": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 7, "doing": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}, "shake": {"_count": 1}, "before": {"_count": 1}}, "body": {"_count": 6, "all": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "making": {"_count": 1}, "and": {"_count": 1}, "fighting": {"_count": 1}}, "silvery": {"_count": 1, "hair": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "picture": {"_count": 3, "beneath": {"_count": 1}, "and": {"_count": 1}, "emblazoned": {"_count": 1}}, "that": {"_count": 2, "made": {"_count": 1}, "he": {"_count": 1}}, "brilliance": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "chest": {"_count": 1, "his": {"_count": 1}}, "weight": {"_count": 1, "before": {"_count": 1}}, "brand": {"_count": 1, "of": {"_count": 1}}, "magical": {"_count": 1, "trunk": {"_count": 1}}, "theories": {"_count": 1, "about": {"_count": 1}}, "is": {"_count": 1, "an": {"_count": 1}}, "frustration": {"_count": 1, "into": {"_count": 1}}, "lungs": {"_count": 1, "drowning": {"_count": 1}}, "shoulders": {"_count": 1, "and": {"_count": 1}}, "ways": {"_count": 1, "of": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "without": {"_count": 1, "news": {"_count": 1}}, "office": {"_count": 3, "": {"_count": 1}, "I": {"_count": 1}, "let": {"_count": 1}}, "laws": {"_count": 1, "theres": {"_count": 1}}, "toads": {"_count": 1, "back": {"_count": 1}}, "spray": {"_count": 1, "": {"_count": 1}}, "choice": {"_count": 1, "during": {"_count": 1}}, "my": {"_count": 1, "Uncle": {"_count": 1}}, "hopes": {"_count": 1, "up": {"_count": 1}}, "feelings": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 3, "but": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "dead": {"_count": 1, "body": {"_count": 1}}, "tail": {"_count": 2, "": {"_count": 1}, "Bills": {"_count": 1}}, "role": {"_count": 1, "in": {"_count": 1}}, "conversation": {"_count": 1, "": {"_count": 1}}, "cauldron": {"_count": 1, "was": {"_count": 1}}, "knife": {"_count": 1, "and": {"_count": 1}}, "doily": {"_count": 1, "and": {"_count": 1}}, "though": {"_count": 1, "Ive": {"_count": 1}}, "defense": {"_count": 1, "was": {"_count": 1}}, "team": {"_count": 1, "robes": {"_count": 1}}, "writing": {"_count": 1, "back": {"_count": 1}}, "private": {"_count": 3, "army": {"_count": 2}, "means": {"_count": 1}}, "teaching": {"_count": 1, "post": {"_count": 1}}, "your": {"_count": 1, "own": {"_count": 1}}, "brain": {"_count": 1, "or": {"_count": 1}}, "glasses": {"_count": 1, "": {"_count": 1}}, "hands": {"_count": 3, "": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 1}}, "bag": {"_count": 1, "and": {"_count": 1}}, "fat": {"_count": 1, "bullfrog": {"_count": 1}}, "Skiving": {"_count": 1, "Snackboxes": {"_count": 1}}, "cloak": {"_count": 1, "watching": {"_count": 1}}, "feet": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "fake": {"_count": 2, "Galleon": {"_count": 2}}, "footsteps": {"_count": 1, "": {"_count": 1}}, "knobbly": {"_count": 1, "elf": {"_count": 1}}, "protection": {"_count": 1, "": {"_count": 1}}, "interlocked": {"_count": 1, "fingers": {"_count": 1}}, "portraits": {"_count": 1, "they": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "necks": {"_count": 1, "": {"_count": 1}}, "neck": {"_count": 4, "Im": {"_count": 1}, "dropping": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 2, "me": {"_count": 1}, "his": {"_count": 1}}, "rather": {"_count": 1, "larger": {"_count": 1}}, "thoughts": {"_count": 4, "out": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "mouth": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "slower": {"_count": 1, "way": {"_count": 1}}, "memories": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "age": {"_count": 2, "": {"_count": 2}}, "examination": {"_count": 1, "paper": {"_count": 1}}, "fallen": {"_count": 1, "wand": {"_count": 1}}, "bat": {"_count": 1, "": {"_count": 1}}, "account": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "mind": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "strength": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "": {"_count": 1}}, "futures": {"_count": 1, "to": {"_count": 1}}, "arm": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "steed": {"_count": 1, "": {"_count": 1}}, "Stunning": {"_count": 2, "Spell": {"_count": 2}}, "rage": {"_count": 1, "": {"_count": 1}}, "Thats": {"_count": 1, "enough": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "temple": {"_count": 1, "": {"_count": 1}}, "reflection": {"_count": 2, "looking": {"_count": 1}, "for": {"_count": 1}}, "broad": {"_count": 1, "grin": {"_count": 1}}, "scaredlooking": {"_count": 1, "reflection": {"_count": 1}}, "whiskey": {"_count": 1, "but": {"_count": 1}}, "sister": {"_count": 2, "": {"_count": 1}, "snogging": {"_count": 1}}, "jam": {"_count": 1, "preferences": {"_count": 1}}, "garden": {"_count": 1, "": {"_count": 1}}, "results": {"_count": 1, "to": {"_count": 1}}, "tightly": {"_count": 1, "knit": {"_count": 1}}, "anymore": {"_count": 1, "its": {"_count": 1}}, "stunning": {"_count": 1, "reflection": {"_count": 1}}, "inscrutable": {"_count": 1, "reasons": {"_count": 1}}, "invitation": {"_count": 1, "": {"_count": 1}}, "lunch": {"_count": 1, "the": {"_count": 1}}, "seat": {"_count": 1, "looking": {"_count": 1}}, "methods": {"_count": 1, "and": {"_count": 1}}, "nose": {"_count": 1, "which": {"_count": 1}}, "cousins": {"_count": 1, "": {"_count": 1}}, "glass": {"_count": 2, "in": {"_count": 2}}, "quivering": {"_count": 1, "fingers": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "goggles": {"_count": 1, "": {"_count": 1}}, "place": {"_count": 1, "said": {"_count": 1}}, "eyebrows": {"_count": 1, "": {"_count": 1}}, "socks": {"_count": 1, "said": {"_count": 1}}, "family": {"_count": 3, "to": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "fork": {"_count": 1, "thought": {"_count": 1}}, "flesh": {"_count": 1, "must": {"_count": 1}}, "knees": {"_count": 1, "": {"_count": 1}}, "recollections": {"_count": 1, "": {"_count": 1}}, "hair": {"_count": 2, "bubbled": {"_count": 1}, "he": {"_count": 1}}, "hoop": {"_count": 1, "": {"_count": 1}}, "pants": {"_count": 1, "but": {"_count": 1}}, "more": {"_count": 1, "often": {"_count": 1}}, "volition": {"_count": 1, "though": {"_count": 1}}, "goblet": {"_count": 1, "for": {"_count": 1}}, "gnarled": {"_count": 1, "toes": {"_count": 1}}, "book": {"_count": 1, "Malfoy": {"_count": 1}}, "potion": {"_count": 1, "which": {"_count": 1}}, "prodigious": {"_count": 1, "skill": {"_count": 1}}, "precious": {"_count": 1, "soul": {"_count": 1}}, "superiority": {"_count": 1, "his": {"_count": 1}}, "ends": {"_count": 1, "By": {"_count": 1}}, "gain": {"_count": 1, "and": {"_count": 1}}, "soul": {"_count": 1, "he": {"_count": 1}}, "common": {"_count": 1, "room": {"_count": 1}}, "unassuming": {"_count": 1, "manners": {"_count": 1}}, "traveling": {"_count": 1, "cloak": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "invisible": {"_count": 1, "paralyzed": {"_count": 1}}, "hard": {"_count": 1, "work": {"_count": 1}}, "bathroom": {"_count": 1, "and": {"_count": 1}}, "question": {"_count": 1, "Rosmerta": {"_count": 1}}, "hammering": {"_count": 1, "heart": {"_count": 1}}, "spells": {"_count": 1, "against": {"_count": 1}}, "sleeve": {"_count": 2, "": {"_count": 1}, "STOP": {"_count": 1}}, "grief": {"_count": 1, "turned": {"_count": 1}}, "clutching": {"_count": 1, "that": {"_count": 1}}, "Tom": {"_count": 1, "the": {"_count": 1}}, "long": {"_count": 1, "nose": {"_count": 1}}, "lap": {"_count": 1, "then": {"_count": 1}}, "deadpan": {"_count": 1, "stare": {"_count": 1}}, "bright": {"_count": 2, "green": {"_count": 2}}, "fame": {"_count": 1, "had": {"_count": 1}}, "experiences": {"_count": 1, "it": {"_count": 1}}, "things": {"_count": 1, "away": {"_count": 1}}, "journeys": {"_count": 1, "but": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "two": {"_count": 1}}, "train": {"_count": 1, "of": {"_count": 1}}, "two": {"_count": 1, "plump": {"_count": 1}}, "present": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "design": {"_count": 1, "": {"_count": 1}}, "robes": {"_count": 1, "I": {"_count": 1}}, "tableclothsized": {"_count": 1, "handkerchiefs": {"_count": 1}}, "stupidity": {"_count": 1, "": {"_count": 1}}, "pound": {"_count": 1, "through": {"_count": 1}}, "kid": {"_count": 1, "actually": {"_count": 1}}, "condition": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "shock": {"_count": 1, "reflected": {"_count": 1}}, "longfingered": {"_count": 1, "hand": {"_count": 1}}, "power": {"_count": 1, "": {"_count": 1}}, "wit": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "pureblood": {"_count": 1, "credentials": {"_count": 1}}, "fear": {"_count": 1, "and": {"_count": 1}}, "Over": {"_count": 1, "the": {"_count": 1}}, "Shield": {"_count": 1, "Charm": {"_count": 1}}, "presumption": {"_count": 1, "in": {"_count": 1}}, "small": {"_count": 1, "communities": {"_count": 1}}, "heart": {"_count": 1, "It": {"_count": 1}}, "frantic": {"_count": 1, "heart": {"_count": 1}}, "sentimental": {"_count": 1, "version": {"_count": 1}}, "disillusionment": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "and": {"_count": 1}}, "Cloak": {"_count": 1, "of": {"_count": 1}}, "destination": {"_count": 1, "": {"_count": 1}}, "home": {"_count": 1, "where": {"_count": 1}}, "cellar": {"_count": 1, "after": {"_count": 1}}, "astonished": {"_count": 1, "certainty": {"_count": 1}}, "right": {"_count": 1, "mind": {"_count": 1}}, "splitting": {"_count": 1, "head": {"_count": 1}}, "Mark": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "held": {"_count": 1}}, "silver": {"_count": 1, "fingers": {"_count": 1}}, "jacket": {"_count": 1, "and": {"_count": 1}}, "happiness": {"_count": 1, "": {"_count": 1}}, "telling": {"_count": 1, "him": {"_count": 1}}, "advice": {"_count": 1, "back": {"_count": 1}}, "was": {"_count": 1, "I": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "front": {"_count": 1, "door": {"_count": 1}}, "country": {"_count": 1, "and": {"_count": 1}}, "knotted": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 2, "felt": {"_count": 1}, "": {"_count": 1}}, "It": {"_count": 1, "hasnt": {"_count": 1}}, "disappointment": {"_count": 1, "was": {"_count": 1}}, "Houses": {"_count": 1, "there": {"_count": 1}}, "Harrys": {"_count": 1, "felt": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "side": {"_count": 1, "if": {"_count": 1}}, "fist": {"_count": 1, "into": {"_count": 1}}, "breathing": {"_count": 1, "": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "destruction": {"_count": 1, "would": {"_count": 1}}, "assumption": {"_count": 1, "that": {"_count": 1}}, "trembling": {"_count": 1, "": {"_count": 1}}, "magic": {"_count": 1, "against": {"_count": 1}}, "deadly": {"_count": 1, "skill": {"_count": 1}}, "Hallows": {"_count": 1, "seems": {"_count": 1}}, "surprise": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "Elder": {"_count": 1}}, "survival": {"_count": 1, "burned": {"_count": 1}}, "manner": {"_count": 1, "of": {"_count": 1}}, "spell": {"_count": 1, "saw": {"_count": 1}}, "rebounding": {"_count": 1, "curse": {"_count": 1}}, "composition": {"_count": 1, "We": {"_count": 1}}}, "appearance": {"_count": 65, "was": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 1}, "utterly": {"_count": 1}, "less": {"_count": 1}, "causing": {"_count": 1}}, "had": {"_count": 2, "taken": {"_count": 1}, "caused": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "at": {"_count": 4, "your": {"_count": 1}, "will": {"_count": 2}, "his": {"_count": 1}}, "of": {"_count": 17, "a": {"_count": 6}, "the": {"_count": 5}, "delight": {"_count": 1}, "wearing": {"_count": 1}, "wanting": {"_count": 1}, "Mrs": {"_count": 1}, "Harry": {"_count": 1}, "all": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "and": {"_count": 4, "Winky": {"_count": 1}, "character": {"_count": 1}, "he": {"_count": 1}, "Kingsley": {"_count": 1}}, "however": {"_count": 2, "was": {"_count": 1}, "Ogden": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "before": {"_count": 2, "clouds": {"_count": 1}, "the": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "but": {"_count": 1, "it": {"_count": 1}}, "like": {"_count": 1, "she": {"_count": 1}}, "were": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "after": {"_count": 1, "George": {"_count": 1}}}, "question": {"_count": 172, "he": {"_count": 9, "could": {"_count": 2}, "had": {"_count": 4}, "happened": {"_count": 1}, "ought": {"_count": 1}, "needed": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 32}, "?": {"_count": 1}, "!": {"_count": 1}}, "Harry": {"_count": 4, "": {"_count": 2}, "said": {"_count": 1}, "tonight": {"_count": 1}}, "fourteen": {"_count": 1, "b": {"_count": 1}}, "Oliver": {"_count": 1, "said": {"_count": 1}}, "is": {"_count": 7, "not": {"_count": 1}, "how": {"_count": 4}, "who": {"_count": 1}, "currently": {"_count": 1}}, "of": {"_count": 19, "all": {"_count": 1}, "why": {"_count": 1}, "your": {"_count": 2}, "how": {"_count": 2}, "influence": {"_count": 1}, "no": {"_count": 1}, "concentration": {"_count": 1}, "confidences": {"_count": 1}, "throwing": {"_count": 1}, "slipping": {"_count": 1}, "tricking": {"_count": 1}, "saving": {"_count": 1}, "Albus": {"_count": 1}, "being": {"_count": 1}, "fighting": {"_count": 1}, "she": {"_count": 1}, "trust": {"_count": 1}}, "said": {"_count": 4, "Riddle": {"_count": 1}, "Lupin": {"_count": 1}, "Dumbledore": {"_count": 1}, "Luna": {"_count": 1}}, "Dobby": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 2, "trapdoor": {"_count": 1}, "way": {"_count": 1}}, "we": {"_count": 1, "must": {"_count": 1}}, "with": {"_count": 2, "Hermione": {"_count": 1}, "one": {"_count": 1}}, "How": {"_count": 1, "did": {"_count": 1}}, "and": {"_count": 5, "she": {"_count": 1}, "the": {"_count": 1}, "failed": {"_count": 1}, "had": {"_count": 1}, "Harry": {"_count": 1}}, "until": {"_count": 1, "we": {"_count": 1}}, "because": {"_count": 2, "what": {"_count": 1}, "Hepzibah": {"_count": 1}}, "was": {"_count": 10, "answered": {"_count": 3}, "not": {"_count": 1}, "whether": {"_count": 2}, "insulting": {"_count": 1}, "how": {"_count": 1}, "capable": {"_count": 1}, "empty": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "brought": {"_count": 1, "him": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "him": {"_count": 6, "": {"_count": 4}, "to": {"_count": 1}, "his": {"_count": 1}}, "Crouch": {"_count": 1, "himself": {"_count": 1}}, "her": {"_count": 2, "about": {"_count": 1}, "again": {"_count": 1}}, "that": {"_count": 4, "had": {"_count": 1}, "Harry": {"_count": 1}, "remained": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "I": {"_count": 2, "should": {"_count": 1}, "might": {"_count": 1}}, "to": {"_count": 4, "Goyle": {"_count": 1}, "which": {"_count": 2}, "her": {"_count": 1}}, "Snape": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "whether": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "as": {"_count": 2, "Ron": {"_count": 1}, "though": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "paper": {"_count": 1, "into": {"_count": 1}}, "ten": {"_count": 1, "Moony": {"_count": 1}}, "a": {"_count": 1, "Give": {"_count": 1}}, "twentythree": {"_count": 1, "Hermione": {"_count": 1}}, "about": {"_count": 3, "Polyjuice": {"_count": 1}, "myself": {"_count": 1}, "wandlore": {"_count": 1}}, "four": {"_count": 1, "In": {"_count": 1}}, "five": {"_count": 1, "How": {"_count": 1}}, "in": {"_count": 1, "turn": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "after": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "which": {"_count": 1, "Lavender": {"_count": 1}}, "already": {"_count": 1, "said": {"_count": 1}}, "Slughorn": {"_count": 1, "again": {"_count": 1}}, "twice": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Finnigan": {"_count": 1}}, "soon": {"_count": 1, "And": {"_count": 1}}, "Rosmerta": {"_count": 1, "saw": {"_count": 1}}, "had": {"_count": 2, "also": {"_count": 1}, "fallen": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "could": {"_count": 1, "wait": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "everything": {"_count": 1, "that": {"_count": 1}}, "burning": {"_count": 1, "in": {"_count": 1}}, "Ollivander": {"_count": 1, "next": {"_count": 1}}, "however": {"_count": 1, "Cho": {"_count": 1}}, "surely": {"_count": 1, "": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "than": {"_count": 1, "that": {"_count": 1}}}, "asking": {"_count": 94, "his": {"_count": 2, "Aunt": {"_count": 1}, "question": {"_count": 1}}, "questions": {"_count": 5, "it": {"_count": 1}, "about": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 2, "furiously": {"_count": 1}, "to": {"_count": 1}}, "for": {"_count": 9, "books": {"_count": 1}, "help": {"_count": 2}, "wages": {"_count": 1}, "a": {"_count": 2}, "it": {"_count": 1}, "details": {"_count": 1}, "Hermiones": {"_count": 1}}, "around": {"_count": 1, "and": {"_count": 1}}, "rather": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 3, "to": {"_count": 1}, "how": {"_count": 2}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "him": {"_count": 8, "to": {"_count": 3}, "whether": {"_count": 1}, "around": {"_count": 1}, "what": {"_count": 1}, "for": {"_count": 1}, "a": {"_count": 1}}, "that": {"_count": 1, "bloke": {"_count": 1}}, "too": {"_count": 2, "much": {"_count": 1}, "many": {"_count": 1}}, "them": {"_count": 3, "all": {"_count": 1}, "something": {"_count": 1}, "to": {"_count": 1}}, "people": {"_count": 1, "whether": {"_count": 1}}, "you": {"_count": 8, "to": {"_count": 6}, "about": {"_count": 1}, "Snape": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "Malfoy": {"_count": 1, "whether": {"_count": 1}}, "how": {"_count": 4, "youre": {"_count": 1}, "how": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}}, "Ludo": {"_count": 1, "about": {"_count": 1}}, "to": {"_count": 2, "borrow": {"_count": 1}, "be": {"_count": 1}}, "if": {"_count": 1, "Hedwig": {"_count": 1}}, "Ron": {"_count": 1, "for": {"_count": 1}}, "a": {"_count": 2, "girl": {"_count": 1}, "great": {"_count": 1}}, "it": {"_count": 1, "when": {"_count": 1}}, "the": {"_count": 3, "egg": {"_count": 1}, "others": {"_count": 1}, "questions": {"_count": 1}}, "advice": {"_count": 1, "from": {"_count": 1}}, "where": {"_count": 1, "hed": {"_count": 1}}, "as": {"_count": 1, "Sirius": {"_count": 1}}, "What": {"_count": 1, "is": {"_count": 1}}, "Voldemort": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 2, "finally": {"_count": 1}, "the": {"_count": 1}}, "me": {"_count": 5, "how": {"_count": 1}, "for": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}}, "Dumbledore": {"_count": 1, "for": {"_count": 1}}, "Kingsley": {"_count": 1, "and": {"_count": 1}}, "mutely": {"_count": 1, "for": {"_count": 1}}, "what": {"_count": 1, "nargles": {"_count": 1}}, "hopefully": {"_count": 1, "whether": {"_count": 1}}, "whether": {"_count": 1, "youve": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "us": {"_count": 2, "to": {"_count": 2}}, "about": {"_count": 2, "is": {"_count": 1}, "what": {"_count": 1}}, "all": {"_count": 1, "applicants": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "\u2018Excuse": {"_count": 1, "me": {"_count": 1}}, "Harrys": {"_count": 1, "opinion": {"_count": 1}}, "himself": {"_count": 1, "what": {"_count": 1}}}, "crash": {"_count": 58, "when": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 9}, "!": {"_count": 4}}, "though": {"_count": 1, "he": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "landed": {"_count": 1, "flat": {"_count": 1}}, "kill": {"_count": 1, "Lily": {"_count": 1}}, "into": {"_count": 1, "it": {"_count": 1}}, "It": {"_count": 1, "didnt": {"_count": 1}}, "that": {"_count": 6, "shook": {"_count": 1}, "had": {"_count": 2}, "made": {"_count": 1}, "meant": {"_count": 1}, "knocked": {"_count": 1}}, "it": {"_count": 1, "right": {"_count": 1}}, "crash": {"_count": 1, "door": {"_count": 1}}, "door": {"_count": 1, "after": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 3, "landed": {"_count": 1}, "smashed": {"_count": 1}, "and": {"_count": 1}}, "drunk": {"_count": 1, "I": {"_count": 1}}, "you": {"_count": 2, "nasty": {"_count": 1}, "just": {"_count": 1}}, "of": {"_count": 1, "breaking": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 1, "Aunt": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "front": {"_count": 1}}, "spilling": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "there": {"_count": 1}}, "somewhere": {"_count": 1, "in": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "between": {"_count": 1, "Harry": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "at": {"_count": 1, "Malfoys": {"_count": 1}}, "however": {"_count": 1, "appeared": {"_count": 1}}, "she": {"_count": 1, "collided": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "brought": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "parents": {"_count": 225, "died": {"_count": 4, "she": {"_count": 1}, "": {"_count": 3}}, "took": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 14, "died": {"_count": 7}, "left": {"_count": 2}, "much": {"_count": 1}, "been": {"_count": 2}, "known": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 2}, "Godrics": {"_count": 1}}, "learned": {"_count": 1, "it": {"_count": 1}}, "world": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 2, "they": {"_count": 1}, "known": {"_count": 1}}, "didnt": {"_count": 1, "leave": {"_count": 1}}, "": {"_count": 39, "?": {"_count": 9}, ".": {"_count": 26}, "!": {"_count": 4}}, "are": {"_count": 6, "wizardin": {"_count": 1}, "you": {"_count": 1}, "out": {"_count": 1}, "Muggles": {"_count": 1}, "buried": {"_count": 1}, "dead": {"_count": 1}}, "or": {"_count": 3, "Voldemort": {"_count": 1}, "guardian": {"_count": 1}, "of": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 10, "would": {"_count": 1}, "so": {"_count": 1}, "Peter": {"_count": 1}, "grandparents": {"_count": 1}, "looked": {"_count": 1}, "attack": {"_count": 1}, "Harrys": {"_count": 1}, "sisters": {"_count": 1}, "the": {"_count": 1}, "children": {"_count": 1}}, "disappearing": {"_count": 1, "in": {"_count": 1}}, "then": {"_count": 2, "theres": {"_count": 1}, "picked": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 7, "brave": {"_count": 1}, "dentists": {"_count": 1}, "just": {"_count": 1}, "to": {"_count": 1}, "keen": {"_count": 1}, "pushing": {"_count": 1}, "swarming": {"_count": 1}}, "old": {"_count": 1, "school": {"_count": 1}}, "who": {"_count": 7, "were": {"_count": 2}, "had": {"_count": 3}, "remember": {"_count": 1}, "feel": {"_count": 1}}, "will": {"_count": 3, "go": {"_count": 1}, "be": {"_count": 2}}, "one": {"_count": 1, "of": {"_count": 1}}, "knew": {"_count": 2, "perfectly": {"_count": 1}, "her": {"_count": 1}}, "because": {"_count": 1, "Lily": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "wedding": {"_count": 2, "day": {"_count": 1}, "": {"_count": 1}}, "last": {"_count": 1, "moments": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "voices": {"_count": 2, "again": {"_count": 1}, "when": {"_count": 1}}, "gave": {"_count": 1, "their": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}, "tried": {"_count": 1, "everything": {"_count": 1}}, "werent": {"_count": 1, "likely": {"_count": 1}}, "house": {"_count": 8, "straight": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "with": {"_count": 1}, "though": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}}, "Black": {"_count": 1, "snarled": {"_count": 1}}, "appointed": {"_count": 1, "me": {"_count": 1}}, "best": {"_count": 2, "friend": {"_count": 2}}, "would": {"_count": 3, "let": {"_count": 1}, "feel": {"_count": 1}, "accompany": {"_count": 1}}, "tent": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 1, "their": {"_count": 1}}, "deaths": {"_count": 3, "over": {"_count": 1}, "she": {"_count": 1}, "now": {"_count": 1}}, "whereabouts": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 2, "can": {"_count": 1}, "would": {"_count": 1}}, "Oh": {"_count": 1, "bless": {"_count": 1}}, "too": {"_count": 1, "but": {"_count": 1}}, "dont": {"_count": 2, "read": {"_count": 1}, "get": {"_count": 1}}, "fourteenyearold": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 2, "anybody": {"_count": 1}, "enforce": {"_count": 1}}, "still": {"_count": 1, "living": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "theyre": {"_count": 1, "here": {"_count": 1}}, "yes": {"_count": 1, "Harry": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "Ive": {"_count": 1, "had": {"_count": 1}}, "decision": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "thought": {"_count": 1, "Regulus": {"_count": 1}}, "could": {"_count": 1, "see": {"_count": 1}}, "pictures": {"_count": 1, "before": {"_count": 1}}, "beaming": {"_count": 2, "faces": {"_count": 1}, "up": {"_count": 1}}, "wove": {"_count": 1, "in": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "beliefs": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "students": {"_count": 1}}, "have": {"_count": 1, "forbidden": {"_count": 1}}, "snarled": {"_count": 1, "George": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "not": {"_count": 1, "well": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "attackers": {"_count": 1, "escape": {"_count": 1}}, "shouting": {"_count": 1, "was": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "having": {"_count": 1, "narrowly": {"_count": 1}}, "nor": {"_count": 1, "Nevilles": {"_count": 1}}, "ever": {"_count": 1, "achieved": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "murder": {"_count": 1, "and": {"_count": 1}}, "flair": {"_count": 1, "": {"_count": 1}}, "want": {"_count": 2, "them": {"_count": 1}, "their": {"_count": 1}}, "wanting": {"_count": 1, "them": {"_count": 1}}, "wanted": {"_count": 1, "you": {"_count": 1}}, "raise": {"_count": 1, "them": {"_count": 1}}, "takin": {"_count": 1, "their": {"_count": 1}}, "that": {"_count": 1, "there": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "arms": {"_count": 1, "meant": {"_count": 1}}, "graves": {"_count": 4, "Id": {"_count": 1}, "were": {"_count": 1}, "once": {"_count": 1}, "the": {"_count": 1}}, "hugged": {"_count": 1, "Ron": {"_count": 1}}, "like": {"_count": 1, "his": {"_count": 1}}, "memories": {"_count": 1, "so": {"_count": 1}}, "from": {"_count": 1, "redecorating": {"_count": 1}}, "garden": {"_count": 1, "": {"_count": 1}}, "safely": {"_count": 1, "out": {"_count": 1}}, "arent": {"_count": 1, "mentioned": {"_count": 1}}, "smiling": {"_count": 1, "and": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "moldering": {"_count": 1, "remains": {"_count": 1}}, "grave": {"_count": 2, "": {"_count": 2}}, "son": {"_count": 1, "and": {"_count": 1}}, "stood": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "Sirius": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "attempted": {"_count": 1}}, "I": {"_count": 1, "loved": {"_count": 1}}, "centaurs": {"_count": 1, "and": {"_count": 1}}, "immediately": {"_count": 1, "capitalizing": {"_count": 1}}}, "died": {"_count": 239, "she": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 3, "boredom": {"_count": 1}, "fear": {"_count": 1}, "dirt": {"_count": 1}}, "in": {"_count": 15, "that": {"_count": 1}, "a": {"_count": 4}, "vain": {"_count": 1}, "Voldemorts": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 2}, "battle": {"_count": 1}, "St": {"_count": 1}, "his": {"_count": 2}, "Azkaban": {"_count": 1}}, "": {"_count": 66, ".": {"_count": 51}, "!": {"_count": 4}, "?": {"_count": 11}}, "and": {"_count": 13, "you": {"_count": 1}, "her": {"_count": 1}, "I": {"_count": 4}, "an": {"_count": 1}, "the": {"_count": 1}, "strip": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}}, "playing": {"_count": 1, "Quidditch": {"_count": 1}}, "begging": {"_count": 1, "me": {"_count": 1}}, "to": {"_count": 9, "save": {"_count": 6}, "defend": {"_count": 1}, "give": {"_count": 1}, "bring": {"_count": 1}}, "away": {"_count": 15, "": {"_count": 6}, "almost": {"_count": 3}, "before": {"_count": 2}, "Harry": {"_count": 1}, "replaced": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 7, "": {"_count": 2}, "He": {"_count": 1}, "of": {"_count": 1}, "at": {"_count": 1}, "or": {"_count": 1}, "said": {"_count": 1}}, "suddenly": {"_count": 1, "as": {"_count": 1}}, "just": {"_count": 3, "after": {"_count": 1}, "snuffed": {"_count": 1}, "when": {"_count": 1}}, "because": {"_count": 2, "no": {"_count": 1}, "their": {"_count": 1}}, "said": {"_count": 8, "Harry": {"_count": 3}, "Alicia": {"_count": 1}, "Lupin": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "Riddle": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "youd": {"_count": 1, "have": {"_count": 1}}, "how": {"_count": 2, "he": {"_count": 1}, "would": {"_count": 1}}, "has": {"_count": 1, "he": {"_count": 1}}, "yet": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "twentyfour": {"_count": 1, "hours": {"_count": 1}}, "a": {"_count": 5, "heros": {"_count": 1}, "year": {"_count": 1}, "short": {"_count": 1}, "few": {"_count": 1}, "grief": {"_count": 1}}, "like": {"_count": 3, "your": {"_count": 1}, "a": {"_count": 1}, "Hedwig": {"_count": 1}}, "Id": {"_count": 1, "arranged": {"_count": 1}}, "before": {"_count": 2, "I": {"_count": 1}, "Ariana": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 2, "": {"_count": 2}}, "o": {"_count": 1, "course": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "herself": {"_count": 1, "apparently": {"_count": 1}}, "people": {"_count": 1, "started": {"_count": 1}}, "giving": {"_count": 1, "birth": {"_count": 1}}, "when": {"_count": 2, "I": {"_count": 2}}, "but": {"_count": 3, "the": {"_count": 1}, "Im": {"_count": 1}, "Buckbeak": {"_count": 1}}, "fighting": {"_count": 2, "Voldemort": {"_count": 1}, "him": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "he": {"_count": 4, "got": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "drank": {"_count": 1}}, "so": {"_count": 1, "thats": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "once": {"_count": 1}}, "the": {"_count": 4, "previous": {"_count": 1}, "reason": {"_count": 1}, "same": {"_count": 1}, "moment": {"_count": 1}}, "for": {"_count": 6, "he": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 1}, "you": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 5, "was": {"_count": 2}, "might": {"_count": 1}, "seemed": {"_count": 2}}, "doing": {"_count": 2, "it": {"_count": 2}}, "although": {"_count": 1, "of": {"_count": 1}}, "some": {"_count": 1, "time": {"_count": 1}}, "didnt": {"_count": 1, "she": {"_count": 1}}, "perhaps": {"_count": 1, "instantly": {"_count": 1}}, "soon": {"_count": 1, "after": {"_count": 1}}, "two": {"_count": 1, "days": {"_count": 1}}, "last": {"_count": 2, "night": {"_count": 2}}, "first": {"_count": 2, "": {"_count": 1}, "Muriel": {"_count": 1}}, "its": {"_count": 1, "skeleton": {"_count": 1}}, "leaving": {"_count": 2, "Albus": {"_count": 1}, "everything": {"_count": 1}}, "or": {"_count": 1, "why": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "twenty": {"_count": 1, "four": {"_count": 1}}, "knew": {"_count": 1, "who": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "were": {"_count": 1, "SecretKeepers": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "James": {"_count": 1}, "him": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "several": {"_count": 1, "months": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}, "knowing": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 1, "didnt": {"_count": 1}}, "arranged": {"_count": 1, "the": {"_count": 1}}, "someone": {"_count": 1, "who": {"_count": 1}}}, "questions": {"_count": 95, "": {"_count": 19, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 5}}, "that": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 4, "ask": {"_count": 4}}, "in": {"_count": 2, "his": {"_count": 1}, "person": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "about": {"_count": 15, "batty": {"_count": 1}, "life": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}, "why": {"_count": 1}, "Sirius": {"_count": 1}, "Voldemort": {"_count": 1}, "Hagrid": {"_count": 1}, "what": {"_count": 1}, "Ornithomancy": {"_count": 1}, "rusted": {"_count": 1}, "all": {"_count": 1}, "Snape": {"_count": 1}, "Harry": {"_count": 1}}, "unless": {"_count": 1, "I": {"_count": 1}}, "Harry": {"_count": 2, "fell": {"_count": 1}, "grabbed": {"_count": 1}}, "without": {"_count": 1, "him": {"_count": 1}}, "well": {"_count": 2, "ask": {"_count": 1}, "go": {"_count": 1}}, "for": {"_count": 3, "you": {"_count": 2}, "the": {"_count": 1}}, "correctly": {"_count": 2, "at": {"_count": 1}, "was": {"_count": 1}}, "answered": {"_count": 2, "": {"_count": 2}}, "would": {"_count": 1, "have": {"_count": 1}}, "later": {"_count": 1, "look": {"_count": 1}}, "shouting": {"_count": 1, "over": {"_count": 1}}, "but": {"_count": 2, "to": {"_count": 1}, "this": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 2}}, "or": {"_count": 1, "badger": {"_count": 1}}, "at": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "ten": {"_count": 1}}, "than": {"_count": 1, "to": {"_count": 1}}, "theyll": {"_count": 1, "want": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "and": {"_count": 6, "well": {"_count": 1}, "continued": {"_count": 1}, "making": {"_count": 1}, "ever": {"_count": 1}, "I": {"_count": 1}, "took": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "Umbridge": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "follow": {"_count": 1, "me": {"_count": 1}}, "wrongly": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "Hermione": {"_count": 1, "told": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "close": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "fired": {"_count": 1, "at": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "are": {"_count": 1, "explored": {"_count": 1}}, "said": {"_count": 1, "Scrimgeour": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "although": {"_count": 1, "Harry": {"_count": 1}}}, "rule": {"_count": 30, "for": {"_count": 1, "a": {"_count": 1}}, "breaking": {"_count": 2, "will": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "today": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "Harry": {"_count": 1}}, "again": {"_count": 1, "wont": {"_count": 1}}, "breaker": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 3, "the": {"_count": 2}, "kidnap": {"_count": 1}}, "about": {"_count": 1, "Muggle": {"_count": 1}}, "book": {"_count": 2, "back": {"_count": 1}, "that": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "that": {"_count": 2, "says": {"_count": 1}, "you": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "will": {"_count": 1}}, "saying": {"_count": 1, "only": {"_count": 1}}, "the": {"_count": 1, "Muggles": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "over": {"_count": 1, "Muggles": {"_count": 1}}, "rubbish": {"_count": 1, "its": {"_count": 1}}, "houseelves": {"_count": 1, "are": {"_count": 1}}}, "quiet": {"_count": 158, "life": {"_count": 6, "with": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 46, ".": {"_count": 35}, "!": {"_count": 9}, "?": {"_count": 2}}, "as": {"_count": 8, "he": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "anyfink": {"_count": 1}, "it": {"_count": 1}, "possible": {"_count": 1}, "she": {"_count": 1}}, "said": {"_count": 6, "Hagrid": {"_count": 1}, "Snape": {"_count": 1}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Cho": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 3}}, "Miss": {"_count": 1, "Patil": {"_count": 1}}, "and": {"_count": 6, "beckoned": {"_count": 1}, "small": {"_count": 1}, "itll": {"_count": 1}, "everybody": {"_count": 1}, "thirsty": {"_count": 1}, "pay": {"_count": 1}}, "until": {"_count": 1, "shed": {"_count": 1}}, "watching": {"_count": 1, "Ron": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 3, "seemed": {"_count": 1}, "was": {"_count": 1}, "carried": {"_count": 1}}, "voice": {"_count": 12, "as": {"_count": 2}, "full": {"_count": 1}, "What": {"_count": 1}, "that": {"_count": 2}, "in": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 3}}, "about": {"_count": 2, "his": {"_count": 1}, "it": {"_count": 1}}, "street": {"_count": 1, "heaving": {"_count": 1}}, "but": {"_count": 4, "Fudge": {"_count": 1}, "like": {"_count": 1}, "Percys": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 1, "watch": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "sort": {"_count": 1, "of": {"_count": 1}}, "crystal": {"_count": 1, "gazing": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "room": {"_count": 1, "for": {"_count": 1}}, "from": {"_count": 1, "me": {"_count": 1}}, "now": {"_count": 3, "there": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "retirement": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}, "an": {"_count": 2, "keep": {"_count": 1}, "watched": {"_count": 1}}, "Christmas": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "she": {"_count": 4, "said": {"_count": 2}, "snapped": {"_count": 1}, "used": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "stretch": {"_count": 1, "of": {"_count": 1}}, "private": {"_count": 1, "funeral": {"_count": 1}}, "triumph": {"_count": 1, "is": {"_count": 1}}, "him": {"_count": 1, "while": {"_count": 1}}, "you": {"_count": 1, "three": {"_count": 1}}, "that": {"_count": 1, "always": {"_count": 1}}, "had": {"_count": 1, "fallen": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "country": {"_count": 1, "lane": {"_count": 1}}, "Harry": {"_count": 1, "or": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "except": {"_count": 2, "for": {"_count": 2}}, "Bella": {"_count": 1, "said": {"_count": 1}}, "beautiful": {"_count": 1, "office": {"_count": 1}}, "even": {"_count": 1, "for": {"_count": 1}}, "boy": {"_count": 2, "snarled": {"_count": 1}, "in": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "windows": {"_count": 1}}, "all": {"_count": 1, "day": {"_count": 1}}, "webspun": {"_count": 1, "places": {"_count": 1}}, "what": {"_count": 1, "Ive": {"_count": 1}}, "talent": {"_count": 1, "compared": {"_count": 1}}, "thoughtful": {"_count": 1, "tone": {"_count": 1}}, "anyway": {"_count": 1, "they": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "place": {"_count": 1, "to": {"_count": 1}}, "birthday": {"_count": 1, "tea": {"_count": 1}}, "eruption": {"_count": 1, "sent": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "barely": {"_count": 1, "time": {"_count": 1}}, "footsteps": {"_count": 1, "joined": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}}, "Uncle": {"_count": 466, "Vernon": {"_count": 389, "entered": {"_count": 1}, "looked": {"_count": 6}, "": {"_count": 46}, "chuckled": {"_count": 1}, "watched": {"_count": 1}, "suggested": {"_count": 1}, "had": {"_count": 24}, "didnt": {"_count": 4}, "through": {"_count": 2}, "complained": {"_count": 1}, "nearly": {"_count": 1}, "bought": {"_count": 1}, "tapped": {"_count": 1}, "rapped": {"_count": 1}, "and": {"_count": 24}, "waited": {"_count": 1}, "said": {"_count": 4}, "came": {"_count": 2}, "opened": {"_count": 2}, "from": {"_count": 2}, "the": {"_count": 4}, "ripped": {"_count": 1}, "shaking": {"_count": 1}, "held": {"_count": 1}, "stuffing": {"_count": 1}, "wildly": {"_count": 1}, "did": {"_count": 1}, "shortly": {"_count": 1}, "who": {"_count": 7}, "leapt": {"_count": 2}, "around": {"_count": 1}, "straightened": {"_count": 1}, "was": {"_count": 24}, "trying": {"_count": 2}, "stayed": {"_count": 1}, "made": {"_count": 4}, "sat": {"_count": 2}, "seized": {"_count": 2}, "slammed": {"_count": 2}, "would": {"_count": 6}, "stopped": {"_count": 4}, "knocked": {"_count": 1}, "standing": {"_count": 1}, "gleefully": {"_count": 1}, "so": {"_count": 1}, "slipping": {"_count": 1}, "went": {"_count": 1}, "suddenly": {"_count": 1}, "in": {"_count": 10}, "still": {"_count": 2}, "swore": {"_count": 1}, "certainly": {"_count": 1}, "like": {"_count": 1}, "if": {"_count": 1}, "wasnt": {"_count": 1}, "roared": {"_count": 1}, "last": {"_count": 1}, "that": {"_count": 1}, "grunted": {"_count": 3}, "actually": {"_count": 1}, "howling": {"_count": 1}, "dumped": {"_count": 1}, "with": {"_count": 4}, "shocked": {"_count": 1}, "a": {"_count": 3}, "heartily": {"_count": 1}, "pounding": {"_count": 2}, "cleared": {"_count": 1}, "nastily": {"_count": 2}, "viciously": {"_count": 1}, "forcefully": {"_count": 3}, "coming": {"_count": 3}, "saying": {"_count": 1}, "burst": {"_count": 2}, "might": {"_count": 1}, "advanced": {"_count": 1}, "cough": {"_count": 1}, "coughed": {"_count": 1}, "hammered": {"_count": 1}, "stood": {"_count": 1}, "Aunt": {"_count": 6}, "jumped": {"_count": 1}, "were": {"_count": 2}, "gave": {"_count": 2}, "or": {"_count": 2}, "staring": {"_count": 2}, "drained": {"_count": 1}, "snarled": {"_count": 2}, "youll": {"_count": 1}, "acting": {"_count": 1}, "his": {"_count": 4}, "hardly": {"_count": 1}, "getting": {"_count": 1}, "clapped": {"_count": 1}, "to": {"_count": 5}, "eyed": {"_count": 1}, "taking": {"_count": 1}, "advancing": {"_count": 1}, "large": {"_count": 1}, "now": {"_count": 1}, "asked": {"_count": 1}, "promptly": {"_count": 1}, "nodded": {"_count": 1}, "uncorked": {"_count": 1}, "bored": {"_count": 1}, "brought": {"_count": 1}, "at": {"_count": 1}, "maintained": {"_count": 1}, "called": {"_count": 2}, "laid": {"_count": 1}, "heaved": {"_count": 1}, "answering": {"_count": 1}, "out": {"_count": 1}, "closed": {"_count": 1}, "about": {"_count": 1}, "glared": {"_count": 3}, "finished": {"_count": 1}, "hated": {"_count": 1}, "screwed": {"_count": 1}, "loudly": {"_count": 4}, "trembling": {"_count": 1}, "stop": {"_count": 1}, "wanted": {"_count": 1}, "barked": {"_count": 1}, "snorted": {"_count": 1}, "perspiring": {"_count": 1}, "however": {"_count": 1}, "caught": {"_count": 1}, "backed": {"_count": 1}, "clearly": {"_count": 1}, "snatched": {"_count": 1}, "no": {"_count": 1}, "over": {"_count": 1}, "yelped": {"_count": 1}, "waving": {"_count": 1}, "lowered": {"_count": 1}, "delightedly": {"_count": 1}, "seemed": {"_count": 2}, "wouldnt": {"_count": 1}, "raised": {"_count": 1}, "yelled": {"_count": 1}, "slamming": {"_count": 1}, "what": {"_count": 1}, "mustache": {"_count": 1}, "voice": {"_count": 1}, "distractedly": {"_count": 1}, "recalling": {"_count": 1}, "furiously": {"_count": 2}, "pulling": {"_count": 1}, "lumbering": {"_count": 1}, "impatiently": {"_count": 1}, "looking": {"_count": 2}, "bellowed": {"_count": 2}, "bending": {"_count": 1}, "timidly": {"_count": 1}, "hammering": {"_count": 1}, "turned": {"_count": 1}, "swelled": {"_count": 1}, "shouted": {"_count": 2}, "could": {"_count": 1}, "failed": {"_count": 1}, "but": {"_count": 2}, "greedily": {"_count": 1}, "stamping": {"_count": 1}, "muttered": {"_count": 1}, "dumb": {"_count": 1}, "say": {"_count": 1}, "wincing": {"_count": 1}, "glaring": {"_count": 1}, "unaware": {"_count": 1}, "starting": {"_count": 1}, "walked": {"_count": 1}, "strode": {"_count": 1}, "pointing": {"_count": 1}, "Dudley": {"_count": 1}, "blurted": {"_count": 1}, "politely": {"_count": 1}, "turning": {"_count": 1}, "told": {"_count": 1}, "reappearing": {"_count": 2}, "pacing": {"_count": 1}}, "Vernons": {"_count": 68, "car": {"_count": 4}, "old": {"_count": 5}, "sister": {"_count": 3}, "shiny": {"_count": 1}, "lap": {"_count": 1}, "rations": {"_count": 1}, "hands": {"_count": 1}, "courage": {"_count": 1}, "company": {"_count": 1}, "furious": {"_count": 1}, "voice": {"_count": 4}, "grasp": {"_count": 1}, "new": {"_count": 2}, "small": {"_count": 1}, "large": {"_count": 3}, "angry": {"_count": 1}, "drills": {"_count": 1}, "leg": {"_count": 1}, "signature": {"_count": 1}, "face": {"_count": 5}, "grapefruit": {"_count": 1}, "temper": {"_count": 1}, "most": {"_count": 1}, "thick": {"_count": 1}, "bulk": {"_count": 1}, "tiny": {"_count": 1}, "second": {"_count": 1}, "hand": {"_count": 1}, "wearing": {"_count": 1}, "work": {"_count": 1}, "": {"_count": 3}, "outstretched": {"_count": 1}, "wide": {"_count": 1}, "head": {"_count": 2}, "anguished": {"_count": 1}, "purple": {"_count": 1}, "questions": {"_count": 1}, "ongoing": {"_count": 1}, "Harrys": {"_count": 1}, "footsteps": {"_count": 1}, "beautifully": {"_count": 1}, "favorites": {"_count": 1}, "directly": {"_count": 1}, "mustache": {"_count": 1}, "and": {"_count": 1}, "choicest": {"_count": 1}}, "Algie": {"_count": 3, "kept": {"_count": 1}, "came": {"_count": 1}, "was": {"_count": 1}}, "Alphard": {"_count": 1, "had": {"_count": 1}}, "Damocles": {"_count": 1, "Slughorn": {"_count": 1}}, "Tiberius": {"_count": 1, "because": {"_count": 1}}, "Morfin": {"_count": 2, "did": {"_count": 1}, "s": {"_count": 1}}, "Bilius": {"_count": 1, "was": {"_count": 1}}}, "Vernon": {"_count": 435, "entered": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 6, "over": {"_count": 1}, "as": {"_count": 2}, "from": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 1}}, "": {"_count": 61, ".": {"_count": 48}, "!": {"_count": 6}, "?": {"_count": 7}}, "chuckled": {"_count": 1, "": {"_count": 1}}, "watched": {"_count": 1, "Dudley": {"_count": 1}}, "she": {"_count": 4, "said": {"_count": 3}, "hates": {"_count": 1}}, "suggested": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 24, "taken": {"_count": 1}, "squeezed": {"_count": 1}, "to": {"_count": 1}, "been": {"_count": 2}, "parked": {"_count": 1}, "hired": {"_count": 1}, "even": {"_count": 1}, "hoped": {"_count": 1}, "roared": {"_count": 1}, "given": {"_count": 1}, "finished": {"_count": 1}, "got": {"_count": 1}, "struggled": {"_count": 1}, "looked": {"_count": 1}, "put": {"_count": 1}, "had": {"_count": 1}, "then": {"_count": 1}, "threatened": {"_count": 1}, "installed": {"_count": 1}, "forgotten": {"_count": 1}, "grasped": {"_count": 1}, "not": {"_count": 1}, "nearly": {"_count": 1}}, "didnt": {"_count": 4, "believe": {"_count": 1}, "go": {"_count": 1}, "seem": {"_count": 1}, "shut": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "gritted": {"_count": 1}}, "complained": {"_count": 1, "to": {"_count": 1}}, "nearly": {"_count": 1, "crashed": {"_count": 1}}, "bought": {"_count": 1, "him": {"_count": 1}}, "tapped": {"_count": 1, "on": {"_count": 1}}, "rapped": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 25, "Dudley": {"_count": 2}, "he": {"_count": 1}, "a": {"_count": 2}, "Aunt": {"_count": 16}, "Harry": {"_count": 2}, "Petunia": {"_count": 1}, "followed": {"_count": 1}}, "waited": {"_count": 1, "until": {"_count": 1}}, "said": {"_count": 4, "gruffly": {"_count": 1}, "sharply": {"_count": 1}, "hoarsely": {"_count": 1}, "nothing": {"_count": 1}}, "came": {"_count": 2, "in": {"_count": 1}, "skidding": {"_count": 1}}, "opened": {"_count": 2, "his": {"_count": 2}}, "from": {"_count": 2, "behind": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 4, "bill": {"_count": 1}, "instant": {"_count": 1}, "wellworn": {"_count": 1}, "vein": {"_count": 1}}, "ripped": {"_count": 1, "open": {"_count": 1}}, "shaking": {"_count": 1, "the": {"_count": 1}}, "held": {"_count": 1, "it": {"_count": 1}}, "stuffing": {"_count": 1, "the": {"_count": 1}}, "Aunt": {"_count": 7, "Petunia": {"_count": 7}}, "wildly": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "something": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 7, "seemed": {"_count": 1}, "had": {"_count": 4}, "greeted": {"_count": 1}, "was": {"_count": 1}}, "leapt": {"_count": 2, "from": {"_count": 1}, "backward": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "was": {"_count": 24, "tearing": {"_count": 1}, "back": {"_count": 1}, "pointing": {"_count": 1}, "large": {"_count": 1}, "talking": {"_count": 1}, "hoping": {"_count": 1}, "as": {"_count": 1}, "Dudleys": {"_count": 1}, "pulling": {"_count": 1}, "thinking": {"_count": 1}, "worried": {"_count": 1}, "making": {"_count": 1}, "still": {"_count": 2}, "perusing": {"_count": 1}, "pretending": {"_count": 1}, "bellowing": {"_count": 1}, "waiting": {"_count": 1}, "standing": {"_count": 1}, "purplefaced": {"_count": 1}, "goggling": {"_count": 1}, "deflating": {"_count": 1}, "wearing": {"_count": 1}, "bursting": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "stayed": {"_count": 1, "at": {"_count": 1}}, "made": {"_count": 4, "furious": {"_count": 1}, "a": {"_count": 1}, "another": {"_count": 1}, "any": {"_count": 1}}, "sat": {"_count": 2, "down": {"_count": 1}, "back": {"_count": 1}}, "seized": {"_count": 2, "Harry": {"_count": 1}, "one": {"_count": 1}}, "slammed": {"_count": 2, "the": {"_count": 2}}, "would": {"_count": 6, "take": {"_count": 1}, "manage": {"_count": 1}, "have": {"_count": 4}}, "stopped": {"_count": 4, "at": {"_count": 1}, "dead": {"_count": 1}, "his": {"_count": 1}, "in": {"_count": 1}}, "knocked": {"_count": 1, "his": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "gleefully": {"_count": 1, "clapping": {"_count": 1}}, "so": {"_count": 1, "all": {"_count": 1}}, "slipping": {"_count": 1, "and": {"_count": 1}}, "went": {"_count": 1, "off": {"_count": 1}}, "suddenly": {"_count": 1, "found": {"_count": 1}}, "Dursley": {"_count": 17, "would": {"_count": 1}, "had": {"_count": 3}, "speaking": {"_count": 1}, "Harrys": {"_count": 1}, "whose": {"_count": 1}, "said": {"_count": 2}, "when": {"_count": 1}, "waved": {"_count": 1}, "hunched": {"_count": 1}, "abruptly": {"_count": 1}, "": {"_count": 2}, "who": {"_count": 1}, "marched": {"_count": 1}}, "in": {"_count": 10, "panic": {"_count": 1}, "a": {"_count": 5}, "mild": {"_count": 1}, "an": {"_count": 1}, "fearful": {"_count": 1}, "tones": {"_count": 1}}, "still": {"_count": 2, "ashenfaced": {"_count": 1}, "purplefaced": {"_count": 1}}, "swore": {"_count": 1, "wed": {"_count": 1}}, "certainly": {"_count": 1, "seemed": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "wasnt": {"_count": 1, "going": {"_count": 1}}, "roared": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "that": {"_count": 1, "people": {"_count": 1}}, "grunted": {"_count": 3, "to": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}}, "actually": {"_count": 1, "spoke": {"_count": 1}}, "howling": {"_count": 1, "mad": {"_count": 1}}, "dumped": {"_count": 1, "Harrys": {"_count": 1}}, "with": {"_count": 4, "an": {"_count": 1}, "half": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "shocked": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 3, "bit": {"_count": 1}, "mad": {"_count": 1}, "large": {"_count": 1}}, "heartily": {"_count": 1, "": {"_count": 1}}, "pounding": {"_count": 2, "the": {"_count": 2}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "nastily": {"_count": 2, "": {"_count": 2}}, "viciously": {"_count": 1, "to": {"_count": 1}}, "tells": {"_count": 1, "me": {"_count": 1}}, "forcefully": {"_count": 3, "": {"_count": 3}}, "coming": {"_count": 3, "into": {"_count": 1}, "to": {"_count": 2}}, "saying": {"_count": 1, "": {"_count": 1}}, "burst": {"_count": 2, "into": {"_count": 1}, "out": {"_count": 1}}, "might": {"_count": 1, "still": {"_count": 1}}, "advanced": {"_count": 1, "on": {"_count": 1}}, "cough": {"_count": 1, "": {"_count": 1}}, "coughed": {"_count": 1, "again": {"_count": 1}}, "hammered": {"_count": 1, "on": {"_count": 1}}, "stood": {"_count": 1, "framed": {"_count": 1}}, "jumped": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 2, "speaking": {"_count": 1}, "both": {"_count": 1}}, "gave": {"_count": 2, "a": {"_count": 2}}, "or": {"_count": 2, "Aunt": {"_count": 2}}, "staring": {"_count": 2, "over": {"_count": 1}, "furiously": {"_count": 1}}, "drained": {"_count": 1, "his": {"_count": 1}}, "snarled": {"_count": 2, "and": {"_count": 1}, "into": {"_count": 1}}, "youll": {"_count": 1, "keep": {"_count": 1}}, "acting": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 4, "mean": {"_count": 1}, "hand": {"_count": 1}, "eyes": {"_count": 1}, "face": {"_count": 1}}, "hardly": {"_count": 1, "able": {"_count": 1}}, "getting": {"_count": 1, "heavily": {"_count": 1}}, "clapped": {"_count": 1, "Dudley": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 1}, "say": {"_count": 1}, "call": {"_count": 1}, "do": {"_count": 1}, "Harry": {"_count": 1}}, "eyed": {"_count": 1, "him": {"_count": 1}}, "taking": {"_count": 1, "his": {"_count": 1}}, "advancing": {"_count": 1, "on": {"_count": 1}}, "large": {"_count": 1, "beefy": {"_count": 1}}, "now": {"_count": 1, "came": {"_count": 1}}, "asked": {"_count": 1, "": {"_count": 1}}, "promptly": {"_count": 1, "": {"_count": 1}}, "nodded": {"_count": 1, "curtly": {"_count": 1}}, "uncorked": {"_count": 1, "several": {"_count": 1}}, "bored": {"_count": 1, "them": {"_count": 1}}, "brought": {"_count": 1, "out": {"_count": 1}}, "hiccuped": {"_count": 1, "Aunt": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "maintained": {"_count": 1, "that": {"_count": 1}}, "called": {"_count": 2, "rabbit": {"_count": 1}, "it": {"_count": 1}}, "laid": {"_count": 1, "aside": {"_count": 1}}, "heaved": {"_count": 1, "himself": {"_count": 1}}, "answering": {"_count": 1, "curtly": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "him": {"_count": 1}}, "glared": {"_count": 3, "at": {"_count": 3}}, "finished": {"_count": 1, "reading": {"_count": 1}}, "hated": {"_count": 1, "having": {"_count": 1}}, "screwed": {"_count": 1, "up": {"_count": 1}}, "loudly": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "from": {"_count": 1}}, "trembling": {"_count": 1, "with": {"_count": 1}}, "stop": {"_count": 1, "him": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "barked": {"_count": 1, "across": {"_count": 1}}, "snorted": {"_count": 1, "into": {"_count": 1}}, "perspiring": {"_count": 1, "slightly": {"_count": 1}}, "however": {"_count": 1, "moved": {"_count": 1}}, "caught": {"_count": 1, "her": {"_count": 1}}, "backed": {"_count": 1, "away": {"_count": 1}}, "clearly": {"_count": 1, "thought": {"_count": 1}}, "snatched": {"_count": 1, "up": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "shh": {"_count": 1, "said": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "yelped": {"_count": 1, "and": {"_count": 1}}, "waving": {"_count": 1, "at": {"_count": 1}}, "lowered": {"_count": 1, "his": {"_count": 1}}, "delightedly": {"_count": 1, "told": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "wouldnt": {"_count": 1, "believe": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "yelled": {"_count": 1, "and": {"_count": 1}}, "slamming": {"_count": 1, "his": {"_count": 1}}, "what": {"_count": 1, "did": {"_count": 1}}, "mustache": {"_count": 1, "blowing": {"_count": 1}}, "voice": {"_count": 1, "restored": {"_count": 1}}, "distractedly": {"_count": 1, "stomping": {"_count": 1}}, "recalling": {"_count": 1, "Harry": {"_count": 1}}, "furiously": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "pulling": {"_count": 1, "great": {"_count": 1}}, "lumbering": {"_count": 1, "in": {"_count": 1}}, "impatiently": {"_count": 1, "without": {"_count": 1}}, "looking": {"_count": 2, "from": {"_count": 2}}, "bellowed": {"_count": 2, "and": {"_count": 1}, "What": {"_count": 1}}, "bending": {"_count": 1, "forward": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "timidly": {"_count": 1, "": {"_count": 1}}, "hammering": {"_count": 1, "the": {"_count": 1}}, "turned": {"_count": 1, "a": {"_count": 1}}, "swelled": {"_count": 1, "ominously": {"_count": 1}}, "shouted": {"_count": 2, "Who": {"_count": 1}, "Will": {"_count": 1}}, "could": {"_count": 1, "sense": {"_count": 1}}, "failed": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "greedily": {"_count": 1, "his": {"_count": 1}}, "stamping": {"_count": 1, "his": {"_count": 1}}, "muttered": {"_count": 1, "Preposterous": {"_count": 1}}, "dumb": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 1, "His": {"_count": 1}}, "wincing": {"_count": 1, "slightly": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "unaware": {"_count": 1, "that": {"_count": 1}}, "waved": {"_count": 1, "her": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "walked": {"_count": 1, "on": {"_count": 1}}, "strode": {"_count": 1, "to": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "Dudley": {"_count": 3, "was": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "blurted": {"_count": 1, "out": {"_count": 1}}, "politely": {"_count": 1, "": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "told": {"_count": 1, "Dudley": {"_count": 1}}, "reappearing": {"_count": 2, "in": {"_count": 1}, "yet": {"_count": 1}}, "pacing": {"_count": 1, "the": {"_count": 1}}, "cause": {"_count": 1, "there": {"_count": 1}}}, "entered": {"_count": 216, "the": {"_count": 111, "kitchen": {"_count": 9}, "Great": {"_count": 12}, "familiar": {"_count": 1}, "building": {"_count": 1}, "muffled": {"_count": 1}, "locker": {"_count": 2}, "forest": {"_count": 2}, "wardrobe": {"_count": 1}, "bar": {"_count": 1}, "train": {"_count": 1}, "room": {"_count": 27}, "school": {"_count": 1}, "castle": {"_count": 1}, "pub": {"_count": 1}, "common": {"_count": 3}, "classroom": {"_count": 1}, "ward": {"_count": 2}, "drawing": {"_count": 2}, "garden": {"_count": 1}, "first": {"_count": 1}, "Hall": {"_count": 2}, "hall": {"_count": 2}, "fire": {"_count": 1}, "candlelit": {"_count": 1}, "village": {"_count": 1}, "tournament": {"_count": 1}, "enclosure": {"_count": 1}, "Owlery": {"_count": 2}, "Gryffindor": {"_count": 1}, "maze": {"_count": 2}, "house": {"_count": 3}, "lift": {"_count": 1}, "bedroom": {"_count": 2}, "Defense": {"_count": 1}, "CreatureInduced": {"_count": 1}, "precise": {"_count": 1}, "office": {"_count": 1}, "ninetyseventh": {"_count": 1}, "Ministry": {"_count": 1}, "pocket": {"_count": 1}, "little": {"_count": 2}, "compartment": {"_count": 1}, "grounds": {"_count": 1}, "dormitory": {"_count": 1}, "unpleasantly": {"_count": 1}, "cabinet": {"_count": 1}, "circular": {"_count": 1}, "now": {"_count": 1}, "cafe": {"_count": 1}, "town": {"_count": 1}, "tent": {"_count": 2}}, "Madam": {"_count": 1, "Malkins": {"_count": 1}}, "a": {"_count": 4, "very": {"_count": 1}, "room": {"_count": 1}, "few": {"_count": 1}, "building": {"_count": 1}}, "and": {"_count": 6, "Harry": {"_count": 1}, "spotted": {"_count": 1}, "spread": {"_count": 1}, "started": {"_count": 1}, "Mrs": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 29}, "!": {"_count": 1}}, "November": {"_count": 1, "the": {"_count": 1}}, "Snapes": {"_count": 1, "office": {"_count": 1}}, "Harry": {"_count": 2, "and": {"_count": 1}, "would": {"_count": 1}}, "Lockharts": {"_count": 1, "darkened": {"_count": 1}}, "taking": {"_count": 1, "off": {"_count": 1}}, "looking": {"_count": 2, "deadly": {"_count": 1}, "dreamy": {"_count": 1}}, "it": {"_count": 4, "only": {"_count": 1}, "for": {"_count": 1}, "right": {"_count": 1}, "": {"_count": 1}}, "Flourish": {"_count": 1, "and": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "or": {"_count": 2, "sat": {"_count": 1}, "at": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "carrying": {"_count": 1, "an": {"_count": 1}}, "London": {"_count": 1, "Harry": {"_count": 1}}, "filing": {"_count": 1, "up": {"_count": 1}}, "into": {"_count": 4, "lightly": {"_count": 1}, "the": {"_count": 1}, "servitude": {"_count": 1}, "this": {"_count": 1}}, "yourself": {"_count": 1, "she": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "in": {"_count": 1}}, "himself": {"_count": 1, "for": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "Mr": {"_count": 1, "Ollivanders": {"_count": 1}}, "Cedric": {"_count": 1, "gave": {"_count": 1}}, "with": {"_count": 1, "Professor": {"_count": 1}}, "barking": {"_count": 1, "madly": {"_count": 1}}, "March": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "school": {"_count": 1}}, "June": {"_count": 1, "became": {"_count": 1}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "that": {"_count": 1, "graveyard": {"_count": 1}}, "Wisteria": {"_count": 1, "Walk": {"_count": 1}}, "his": {"_count": 2, "bedroom": {"_count": 1}, "godfathers": {"_count": 1}}, "Harrys": {"_count": 1, "bedroom": {"_count": 1}}, "was": {"_count": 2, "horribly": {"_count": 1}, "Professor": {"_count": 1}}, "their": {"_count": 2, "bedroom": {"_count": 1}, "hair": {"_count": 1}}, "led": {"_count": 1, "by": {"_count": 1}}, "cautiously": {"_count": 1, "looking": {"_count": 1}}, "Transfiguration": {"_count": 1, "he": {"_count": 1}}, "Hogsmeade": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "there": {"_count": 1}, "before": {"_count": 1}}, "each": {"_count": 1, "gripping": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}, "your": {"_count": 3, "second": {"_count": 1}, "third": {"_count": 1}, "parents": {"_count": 1}}, "her": {"_count": 1, "house": {"_count": 1}}, "for": {"_count": 1, "one": {"_count": 1}}, "Hokeys": {"_count": 1, "memory": {"_count": 1}}, "happily": {"_count": 1, "into": {"_count": 1}}, "theirs": {"_count": 1, "but": {"_count": 1}}, "saying": {"_count": 1, "words": {"_count": 1}}}, "Comb": {"_count": 1, "your": {"_count": 1, "hair": {"_count": 1}}}, "barked": {"_count": 46, "by": {"_count": 1, "way": {"_count": 1}}, "Hagrid": {"_count": 1, "turning": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "Professor": {"_count": 8, "McGonagall": {"_count": 5}, "GrubblyPlank": {"_count": 2}, "Sprout": {"_count": 1}}, "loudly": {"_count": 2, "behind": {"_count": 1}, "": {"_count": 1}}, "Snape": {"_count": 1, "over": {"_count": 1}}, "Uncle": {"_count": 4, "Vernon": {"_count": 4}}, "across": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 2, "cook": {"_count": 1}, "Prime": {"_count": 1}}, "at": {"_count": 8, "Harry": {"_count": 3}, "the": {"_count": 1}, "them": {"_count": 1}, "Percy": {"_count": 1}, "someone": {"_count": 1}, "a": {"_count": 1}}, "Mr": {"_count": 2, "Diggory": {"_count": 1}, "Crouch": {"_count": 1}}, "and": {"_count": 1, "everyone": {"_count": 1}}, "Moody": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "Crouch": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "Angelina": {"_count": 1, "": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "greeting": {"_count": 14, "": {"_count": 4, ".": {"_count": 4}}, "its": {"_count": 1, "owner": {"_count": 1}}, "a": {"_count": 1, "new": {"_count": 1}}, "his": {"_count": 1, "worst": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "him": {"_count": 1, "perhaps": {"_count": 1}}, "enthusiastically": {"_count": 1, "and": {"_count": 1}}, "nor": {"_count": 1, "did": {"_count": 1}}, "as": {"_count": 2, "Hermione": {"_count": 1}, "he": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}}, "newspaper": {"_count": 53, "and": {"_count": 11, "shouted": {"_count": 1}, "they": {"_count": 1}, "disappeared": {"_count": 1}, "laying": {"_count": 1}, "scanned": {"_count": 1}, "began": {"_count": 2}, "handed": {"_count": 1}, "throwing": {"_count": 1}, "was": {"_count": 1}, "threw": {"_count": 1}}, "as": {"_count": 2, "usual": {"_count": 1}, "he": {"_count": 1}}, "held": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 3, "top": {"_count": 2}, "the": {"_count": 1}}, "the": {"_count": 2, "Daily": {"_count": 2}}, "": {"_count": 8, "!": {"_count": 1}, ".": {"_count": 7}}, "clipping": {"_count": 2, "": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "picture": {"_count": 1, "of": {"_count": 1}}, "cool": {"_count": 1, "as": {"_count": 1}}, "an": {"_count": 1, "empty": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "scanned": {"_count": 1, "the": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "reveal": {"_count": 1}, "ask": {"_count": 1}}, "which": {"_count": 1, "have": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "eagerly": {"_count": 1, "while": {"_count": 1}}, "scanning": {"_count": 1, "its": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "idly": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "cuttings": {"_count": 1, "all": {"_count": 1}}, "away": {"_count": 1, "he": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "for": {"_count": 1, "weeks": {"_count": 1}}}, "needed": {"_count": 137, "a": {"_count": 11, "haircut": {"_count": 1}, "leg": {"_count": 1}, "specially": {"_count": 1}, "signed": {"_count": 1}, "new": {"_count": 1}, "full": {"_count": 1}, "bit": {"_count": 1}, "bathroom": {"_count": 1}, "further": {"_count": 1}, "job": {"_count": 1}, "place": {"_count": 1}}, "saw": {"_count": 1, "that": {"_count": 1}}, "saving": {"_count": 1, "if": {"_count": 1}}, "to": {"_count": 48, "sleep": {"_count": 2}, "concentrate": {"_count": 1}, "go": {"_count": 4}, "buy": {"_count": 1}, "hold": {"_count": 1}, "get": {"_count": 4}, "help": {"_count": 1}, "use": {"_count": 1}, "win": {"_count": 1}, "visit": {"_count": 1}, "know": {"_count": 6}, "": {"_count": 2}, "now": {"_count": 1}, "set": {"_count": 1}, "give": {"_count": 1}, "pass": {"_count": 1}, "prepare": {"_count": 1}, "keep": {"_count": 1}, "place": {"_count": 1}, "change": {"_count": 1}, "crouch": {"_count": 1}, "complete": {"_count": 1}, "tell": {"_count": 1}, "proceed": {"_count": 1}, "return": {"_count": 1}, "tweak": {"_count": 1}, "create": {"_count": 1}, "see": {"_count": 1}, "make": {"_count": 1}, "shake": {"_count": 1}, "do": {"_count": 1}, "deal": {"_count": 1}, "move": {"_count": 1}, "be": {"_count": 2}}, "was": {"_count": 6, "a": {"_count": 1}, "for": {"_count": 2}, "another": {"_count": 1}, "in": {"_count": 1}, "more": {"_count": 1}}, "sleep": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 3}}, "cutting": {"_count": 1, "but": {"_count": 1}}, "He": {"_count": 1, "is": {"_count": 1}}, "the": {"_count": 4, "bicorn": {"_count": 1}, "gold": {"_count": 1}, "room": {"_count": 1}, "Cloak": {"_count": 1}}, "now": {"_count": 2, "was": {"_count": 1}, "not": {"_count": 1}}, "in": {"_count": 1, "ninetynine": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "top": {"_count": 1, "grades": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "an": {"_count": 3, "exceptionally": {"_count": 1}, "early": {"_count": 1}, "elf": {"_count": 1}}, "his": {"_count": 4, "Firebolt": {"_count": 1}, "hair": {"_count": 1}, "wand": {"_count": 1}, "hands": {"_count": 1}}, "Hermione": {"_count": 1, "Harry": {"_count": 1}}, "their": {"_count": 1, "wits": {"_count": 1}}, "oxygen": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 2, "poor": {"_count": 1}, "the": {"_count": 1}}, "them": {"_count": 1, "most": {"_count": 1}}, "above": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 1}, "the": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "We": {"_count": 1}}, "Alastor": {"_count": 1, "Moody": {"_count": 1}}, "cleaning": {"_count": 1, "out": {"_count": 1}}, "Dumbledores": {"_count": 1, "instructions": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}, "on": {"_count": 1, "Partial": {"_count": 1}}, "evidence": {"_count": 1, "and": {"_count": 1}}, "Remedial": {"_count": 1, "Potions": {"_count": 1}}, "her": {"_count": 2, "advice": {"_count": 1}, "but": {"_count": 1}}, "somebody": {"_count": 1, "to": {"_count": 1}}, "reminding": {"_count": 1, "but": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "fixing": {"_count": 1, "": {"_count": 1}}, "first": {"_count": 1, "to": {"_count": 1}}, "lookouts": {"_count": 1, "": {"_count": 1}}, "help": {"_count": 1, "and": {"_count": 1}}, "work": {"_count": 1, "doing": {"_count": 1}}, "from": {"_count": 1, "here": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "its": {"_count": 1, "assistance": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "water": {"_count": 1, "he": {"_count": 1}}, "answered": {"_count": 1, "and": {"_count": 1}}, "Horcruxes": {"_count": 1, "in": {"_count": 1}}, "Griphook": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "telling": {"_count": 1}}}, "haircut": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "hed": {"_count": 1, "managed": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "Professor": {"_count": 1}}}, "haircuts": {"_count": 2, "than": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "robes": {"_count": 1}}}, "rest": {"_count": 345, "of": {"_count": 266, "the": {"_count": 189}, "them": {"_count": 17}, "your": {"_count": 7}, "Gryffindor": {"_count": 2}, "us": {"_count": 14}, "Harrys": {"_count": 2}, "their": {"_count": 3}, "you": {"_count": 3}, "his": {"_count": 13}, "Uncle": {"_count": 1}, "my": {"_count": 3}, "YouKnow": {"_count": 1}, "her": {"_count": 2}, "Bills": {"_count": 1}, "Hagrids": {"_count": 1}, "em": {"_count": 2}, "this": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 2}, "Dumbledores": {"_count": 1}}, "safe": {"_count": 1, "for": {"_count": 1}}, "as": {"_count": 2, "Ron": {"_count": 1}, "solidly": {"_count": 1}}, "And": {"_count": 2, "learn": {"_count": 1}, "taught": {"_count": 1}}, "until": {"_count": 4, "Ive": {"_count": 1}, "he": {"_count": 2}, "youve": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 12}, "?": {"_count": 4}, "!": {"_count": 2}}, "assured": {"_count": 3, "no": {"_count": 1}, "that": {"_count": 2}}, "with": {"_count": 3, "me": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "proceeded": {"_count": 1, "to": {"_count": 1}}, "somewhere": {"_count": 1, "in": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "and": {"_count": 3, "perhaps": {"_count": 1}, "relaxation": {"_count": 1}, "went": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "joined": {"_count": 1, "the": {"_count": 1}}, "thinking": {"_count": 1, "up": {"_count": 1}}, "o": {"_count": 2, "Beakys": {"_count": 1}, "the": {"_count": 1}}, "by": {"_count": 1, "fussing": {"_count": 1}}, "could": {"_count": 1, "see": {"_count": 1}}, "This": {"_count": 1, "cannot": {"_count": 1}}, "put": {"_count": 2, "together": {"_count": 2}}, "For": {"_count": 1, "Ravenclaw": {"_count": 1}}, "Hermione": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "on": {"_count": 4, "a": {"_count": 1}, "top": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}}, "home": {"_count": 1, "puddings": {"_count": 1}}, "too": {"_count": 1, "youve": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "are": {"_count": 1, "doing": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "pointing": {"_count": 1, "directly": {"_count": 1}}, "sprawled": {"_count": 1, "on": {"_count": 1}}, "looking": {"_count": 1, "coolly": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "Greyback": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "bore": {"_count": 1}}, "here": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}, "across": {"_count": 1, "Voldemorts": {"_count": 1}}, "but": {"_count": 1, "nothing": {"_count": 1}}, "upon": {"_count": 1, "your": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "while": {"_count": 1, "agitating": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "safe": {"_count": 1}}}, "class": {"_count": 314, "put": {"_count": 2, "together": {"_count": 1}, "away": {"_count": 1}}, "": {"_count": 60, ".": {"_count": 52}, "?": {"_count": 5}, "!": {"_count": 3}}, "was": {"_count": 23, "History": {"_count": 1}, "standing": {"_count": 2}, "seated": {"_count": 1}, "sheltering": {"_count": 1}, "in": {"_count": 1}, "now": {"_count": 2}, "about": {"_count": 1}, "very": {"_count": 2}, "already": {"_count": 1}, "gathered": {"_count": 1}, "miserable": {"_count": 1}, "staring": {"_count": 1}, "widely": {"_count": 1}, "an": {"_count": 1}, "quiet": {"_count": 1}, "not": {"_count": 2}, "doing": {"_count": 1}, "crashing": {"_count": 1}, "still": {"_count": 1}}, "he": {"_count": 1, "took": {"_count": 1}}, "will": {"_count": 1, "leave": {"_count": 1}}, "how": {"_count": 1, "it": {"_count": 1}}, "everyone": {"_count": 2, "had": {"_count": 1}, "who": {"_count": 1}}, "by": {"_count": 4, "taking": {"_count": 1}, "teachers": {"_count": 1}, "class": {"_count": 1}, "not": {"_count": 1}}, "silent": {"_count": 1, "without": {"_count": 1}}, "looking": {"_count": 3, "confused": {"_count": 1}, "at": {"_count": 1}, "politely": {"_count": 1}}, "but": {"_count": 3, "halfway": {"_count": 1}, "half": {"_count": 1}, "naturally": {"_count": 1}}, "into": {"_count": 1, "pairs": {"_count": 1}}, "and": {"_count": 19, "wasnt": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}, "just": {"_count": 1}, "we": {"_count": 1}, "set": {"_count": 1}, "told": {"_count": 1}, "Hermione": {"_count": 1}, "bringing": {"_count": 1}, "peering": {"_count": 1}, "turned": {"_count": 1}, "stood": {"_count": 1}, "wandered": {"_count": 1}, "pulled": {"_count": 1}, "looking": {"_count": 1}, "ask": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "inflating": {"_count": 1}}, "for": {"_count": 3, "all": {"_count": 1}, "none": {"_count": 1}, "a": {"_count": 1}}, "keeping": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 8, "see": {"_count": 1}, "class": {"_count": 1}, "their": {"_count": 1}, "disappear": {"_count": 1}, "settle": {"_count": 1}, "hear": {"_count": 1}, "begin": {"_count": 1}, "reenter": {"_count": 1}}, "standing": {"_count": 1, "outside": {"_count": 1}}, "Harry": {"_count": 2, "like": {"_count": 1}, "Lupin": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "came": {"_count": 1, "clattering": {"_count": 1}}, "held": {"_count": 1, "its": {"_count": 1}}, "with": {"_count": 5, "them": {"_count": 1}, "Professor": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "pointless": {"_count": 1}}, "exchanged": {"_count": 2, "nervous": {"_count": 1}, "gloomy": {"_count": 1}}, "had": {"_count": 11, "sunk": {"_count": 1}, "finished": {"_count": 1}, "become": {"_count": 1}, "gone": {"_count": 1}, "settled": {"_count": 1}, "gathered": {"_count": 1}, "heard": {"_count": 1}, "sat": {"_count": 1}, "looked": {"_count": 1}, "already": {"_count": 1}, "realized": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "saying": {"_count": 1, "about": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 1}, "smudge": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "lumbered": {"_count": 1, "up": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "day": {"_count": 1}}, "You": {"_count": 1, "say": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "I": {"_count": 3, "think": {"_count": 1}, "only": {"_count": 1}, "wanted": {"_count": 1}}, "stared": {"_count": 3, "at": {"_count": 2}, "perplexedly": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "And": {"_count": 1, "he": {"_count": 1}}, "Ron": {"_count": 1, "sneered": {"_count": 1}}, "assembled": {"_count": 1, "around": {"_count": 1}}, "took": {"_count": 1, "their": {"_count": 1}}, "kept": {"_count": 1, "shooting": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "large": {"_count": 1}}, "approached": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 2, "shook": {"_count": 1}, "looked": {"_count": 1}}, "stood": {"_count": 2, "": {"_count": 1}, "their": {"_count": 1}}, "backed": {"_count": 2, "farther": {"_count": 1}, "away": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 3}, "Thursday": {"_count": 1}}, "broke": {"_count": 2, "into": {"_count": 2}}, "climbed": {"_count": 1, "cautiously": {"_count": 1}}, "panicked": {"_count": 1, "": {"_count": 1}}, "followed": {"_count": 1, "at": {"_count": 1}}, "though": {"_count": 1, "wasnt": {"_count": 1}}, "pass": {"_count": 1, "them": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "filed": {"_count": 2, "in": {"_count": 1}, "out": {"_count": 1}}, "his": {"_count": 1, "black": {"_count": 1}}, "contains": {"_count": 1, "Neville": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 2, "the": {"_count": 1}, "for": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 2, "seated": {"_count": 1}, "saw": {"_count": 1}}, "made": {"_count": 1, "to": {"_count": 1}}, "talking": {"_count": 1, "loudly": {"_count": 1}}, "telling": {"_count": 1, "anyone": {"_count": 1}}, "opened": {"_count": 1, "their": {"_count": 1}}, "who": {"_count": 3, "wouldnt": {"_count": 1}, "waited": {"_count": 1}, "has": {"_count": 1}}, "loathed": {"_count": 1, "Snape": {"_count": 1}}, "knew": {"_count": 1, "instantly": {"_count": 1}}, "again": {"_count": 4, "you": {"_count": 1}, "": {"_count": 2}, "most": {"_count": 1}}, "in": {"_count": 3, "hand": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}}, "doing": {"_count": 1, "dementor": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "she": {"_count": 1}}, "we": {"_count": 2, "have": {"_count": 1}, "dont": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "without": {"_count": 3, "Slytherins": {"_count": 1}, "further": {"_count": 1}, "being": {"_count": 1}}, "were": {"_count": 4, "sitting": {"_count": 1}, "staring": {"_count": 2}, "wearing": {"_count": 1}}, "hissed": {"_count": 1, "What": {"_count": 1}}, "the": {"_count": 2, "ugliest": {"_count": 1}, "day": {"_count": 1}}, "separated": {"_count": 1, "the": {"_count": 1}}, "jumped": {"_count": 1, "again": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "gave": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "is": {"_count": 3, "finished": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "lightheaded": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 4, "dispiritedly": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 2}}, "Malfoy": {"_count": 1, "Crabbe": {"_count": 1}}, "than": {"_count": 1, "adopt": {"_count": 1}}, "what": {"_count": 1, "if": {"_count": 1}}, "moved": {"_count": 1, "noisily": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "claiming": {"_count": 1, "that": {"_count": 1}}, "read": {"_count": 1, "again": {"_count": 1}}, "so": {"_count": 2, "far": {"_count": 1}, "that": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "undoubtedly": {"_count": 1, "are": {"_count": 1}}, "which": {"_count": 2, "means": {"_count": 1}, "had": {"_count": 1}}, "after": {"_count": 1, "Potions": {"_count": 1}}, "arrived": {"_count": 1, "over": {"_count": 1}}, "turned": {"_count": 2, "their": {"_count": 1}, "to": {"_count": 1}}, "Mr": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "irresponsible": {"_count": 1}}, "hours": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "its": {"_count": 1}}, "could": {"_count": 3, "cost": {"_count": 1}, "not": {"_count": 1}, "see": {"_count": 1}}, "should": {"_count": 1, "not": {"_count": 1}}, "some": {"_count": 1, "ten": {"_count": 1}}, "surged": {"_count": 1, "forward": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "her": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "afternoon": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "sunny": {"_count": 1, "Jim": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "seems": {"_count": 1, "fairly": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "thats": {"_count": 1, "too": {"_count": 1}}, "particularly": {"_count": 1, "Malfoy": {"_count": 1}}, "would": {"_count": 1, "it": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "Yeah": {"_count": 1, "Weasley": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "answering": {"_count": 1, "questions": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "schedules": {"_count": 1, "was": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "craned": {"_count": 1, "their": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "calling": {"_count": 1, "me": {"_count": 1}}}, "difference": {"_count": 60, "his": {"_count": 1, "hair": {"_count": 1}}, "between": {"_count": 12, "a": {"_count": 3}, "that": {"_count": 1}, "knarls": {"_count": 1}, "life": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 2}, "being": {"_count": 1}, "truth": {"_count": 1}, "this": {"_count": 1}}, "said": {"_count": 6, "Ron": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "Neville": {"_count": 1}, "Hermione": {"_count": 1}, "Voldemort": {"_count": 1}}, "to": {"_count": 5, "her": {"_count": 2}, "him": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "Potter": {"_count": 1, "between": {"_count": 1}}, "Harry": {"_count": 1, "hadnt": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 9}, "!": {"_count": 1}, "?": {"_count": 4}}, "at": {"_count": 1, "all": {"_count": 1}}, "it": {"_count": 1, "made": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 3}, "their": {"_count": 1}, "his": {"_count": 1}, "short": {"_count": 1}}, "now": {"_count": 2, "shes": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 1, "her": {"_count": 1}}, "does": {"_count": 1, "that": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "what": {"_count": 1, "we": {"_count": 1}}, "being": {"_count": 1, "Muggleborn": {"_count": 1}}}, "eggs": {"_count": 55, "by": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 2, "their": {"_count": 1}, "Mrs": {"_count": 1}}, "and": {"_count": 11, "rotted": {"_count": 1}, "bacon": {"_count": 4}, "sausages": {"_count": 2}, "spotted": {"_count": 1}, "kippers": {"_count": 1}, "full": {"_count": 1}, "bread": {"_count": 1}}, "what": {"_count": 1, "I": {"_count": 1}}, "if": {"_count": 2, "its": {"_count": 1}, "they": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 2}}, "an": {"_count": 1, "frog": {"_count": 1}}, "or": {"_count": 2, "Hagrid": {"_count": 1}, "Nevilles": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "her": {"_count": 1, "wings": {"_count": 1}}, "now": {"_count": 1, "unprotected": {"_count": 1}}, "they": {"_count": 1, "took": {"_count": 1}}, "youre": {"_count": 1, "all": {"_count": 1}}, "song": {"_count": 1, "before": {"_count": 1}}, "clue": {"_count": 3, "": {"_count": 1}, "sooner": {"_count": 1}, "so": {"_count": 1}}, "down": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "which": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "from": {"_count": 1, "Mum": {"_count": 1}}, "fell": {"_count": 1, "like": {"_count": 1}}, "Ive": {"_count": 1, "brought": {"_count": 1}}, "progress": {"_count": 1, "back": {"_count": 1}}, "while": {"_count": 1, "theyre": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "overwhelmed": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 1, "pointed": {"_count": 1}}, "on": {"_count": 1, "toast": {"_count": 1}}}, "watery": {"_count": 22, "blue": {"_count": 1, "eyes": {"_count": 1}}, "adoration": {"_count": 1, "": {"_count": 1}}, "potion": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 6, "": {"_count": 1}, "stood": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}, "slid": {"_count": 1}, "widen": {"_count": 1}}, "sunlight": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 3, "": {"_count": 2}, "then": {"_count": 1}}, "gray": {"_count": 1, "and": {"_count": 1}}, "stare": {"_count": 1, "and": {"_count": 1}}, "way": {"_count": 1, "and": {"_count": 1}}, "depths": {"_count": 1, "of": {"_count": 1}}, "eye": {"_count": 1, "": {"_count": 1}}, "sun": {"_count": 1, "was": {"_count": 1}}, "chuckle": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "stared": {"_count": 1}}, "space": {"_count": 1, "": {"_count": 1}}}, "thick": {"_count": 199, "blond": {"_count": 2, "hair": {"_count": 2}}, "fat": {"_count": 1, "head": {"_count": 1}}, "mancrushing": {"_count": 1, "pythons": {"_count": 1}}, "and": {"_count": 8, "heavy": {"_count": 1}, "fluffy": {"_count": 1}, "fast": {"_count": 5}, "shining": {"_count": 1}}, "black": {"_count": 18, "coat": {"_count": 1}, "trees": {"_count": 1}, "garden": {"_count": 1}, "smoke": {"_count": 1}, "tuffets": {"_count": 1}, "eyebrows": {"_count": 3}, "giant": {"_count": 1}, "hair": {"_count": 3}, "veil": {"_count": 2}, "traveling": {"_count": 2}, "trunks": {"_count": 1}, "door": {"_count": 1}}, "trees": {"_count": 2, "there": {"_count": 1}, "under": {"_count": 1}}, "as": {"_count": 7, "tree": {"_count": 1}, "a": {"_count": 2}, "Crabbe": {"_count": 1}, "ever": {"_count": 1}, "an": {"_count": 1}, "saplings": {"_count": 1}}, "brown": {"_count": 3, "paper": {"_count": 2}, "beard": {"_count": 1}}, "hand": {"_count": 1, "knitted": {"_count": 1}}, "rich": {"_count": 1, "gravy": {"_count": 1}}, "woolen": {"_count": 2, "socks": {"_count": 2}}, "he": {"_count": 2, "couldnt": {"_count": 1}, "could": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "wad": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 10, "flying": {"_count": 1}, "rumor": {"_count": 1}, "stars": {"_count": 1}, "anger": {"_count": 1}, "grime": {"_count": 1}, "cobwebs": {"_count": 1}, "rage": {"_count": 1}, "cups": {"_count": 1}, "cataracts": {"_count": 1}, "dust": {"_count": 1}}, "smoke": {"_count": 1, "over": {"_count": 1}}, "tree": {"_count": 3, "trunk": {"_count": 1}, "they": {"_count": 1}, "trunks": {"_count": 1}}, "gray": {"_count": 4, "smoke": {"_count": 2}, "armor": {"_count": 1}, "ghost": {"_count": 1}}, "tartan": {"_count": 1, "scarf": {"_count": 1}}, "pearly": {"_count": 3, "spectacles": {"_count": 1}, "glasses": {"_count": 1}, "tears": {"_count": 1}}, "said": {"_count": 3, "Fred": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "fleshcolored": {"_count": 1, "rubber": {"_count": 1}}, "that": {"_count": 3, "the": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}}, "swirling": {"_count": 2, "gray": {"_count": 1}, "snow": {"_count": 1}}, "snowflecked": {"_count": 1, "eyebrows": {"_count": 1}}, "streamers": {"_count": 1, "of": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "dark": {"_count": 3, "mud": {"_count": 1}, "neatly": {"_count": 1}, "red": {"_count": 1}}, "wrist": {"_count": 1, "": {"_count": 1}}, "silver": {"_count": 1, "eyebrows": {"_count": 1}}, "glasses": {"_count": 3, "nodded": {"_count": 1}, "twinkling": {"_count": 1}, "that": {"_count": 1}}, "woollen": {"_count": 1, "balaclava": {"_count": 1}}, "gloves": {"_count": 1, "picked": {"_count": 1}}, "blackbound": {"_count": 1, "book": {"_count": 1}}, "would": {"_count": 1, "Harry": {"_count": 1}}, "neck": {"_count": 1, "Goyle": {"_count": 1}}, "white": {"_count": 6, "fog": {"_count": 3}, "round": {"_count": 1}, "dust": {"_count": 1}, "steam": {"_count": 1}}, "leather": {"_count": 2, "collar": {"_count": 1}, "belt": {"_count": 1}}, "skull": {"_count": 2, "of": {"_count": 2}}, "to": {"_count": 1, "string": {"_count": 1}}, "rain": {"_count": 2, "gesturing": {"_count": 1}, "splattering": {"_count": 1}}, "body": {"_count": 1, "twist": {"_count": 1}}, "volumes": {"_count": 1, "with": {"_count": 1}}, "layer": {"_count": 2, "of": {"_count": 2}}, "upon": {"_count": 2, "the": {"_count": 2}}, "dust": {"_count": 1, "on": {"_count": 1}}, "roll": {"_count": 1, "of": {"_count": 1}}, "growth": {"_count": 1, "of": {"_count": 1}}, "horizontal": {"_count": 1, "stripes": {"_count": 1}}, "curly": {"_count": 1, "hair": {"_count": 1}}, "curtain": {"_count": 1, "of": {"_count": 1}}, "yellowishgreen": {"_count": 1, "liquid": {"_count": 1}}, "of": {"_count": 3, "things": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "fingers": {"_count": 4, "": {"_count": 1}, "clutching": {"_count": 1}, "and": {"_count": 1}, "absentmindedly": {"_count": 1}}, "yellow": {"_count": 2, "yarn": {"_count": 1}, "paste": {"_count": 1}}, "eyebrows": {"_count": 2, "contracted": {"_count": 1}, "so": {"_count": 1}}, "grayish": {"_count": 1, "shiny": {"_count": 1}}, "planks": {"_count": 1, "of": {"_count": 1}}, "hides": {"_count": 1, "which": {"_count": 1}}, "orange": {"_count": 1, "paste": {"_count": 1}}, "walls": {"_count": 1, "every": {"_count": 1}}, "magenta": {"_count": 1, "cloak": {"_count": 1}}, "spectacles": {"_count": 1, "": {"_count": 1}}, "ropes": {"_count": 1, "of": {"_count": 1}}, "slimy": {"_count": 1, "and": {"_count": 1}}, "blankets": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "knobbly": {"_count": 1, "gloves": {"_count": 1}}, "shining": {"_count": 1, "dark": {"_count": 1}}, "or": {"_count": 1, "because": {"_count": 1}}, "armor": {"_count": 1, "glinted": {"_count": 1}}, "brambles": {"_count": 1, "and": {"_count": 1}}, "gluey": {"_count": 1, "secretion": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "glutinous": {"_count": 1, "liquid": {"_count": 1}}, "icy": {"_count": 1, "mantle": {"_count": 1}}, "straw": {"_count": 1, "colored": {"_count": 1}}, "stinking": {"_count": 1, "darkgreen": {"_count": 1}}, "stubby": {"_count": 1, "fingers": {"_count": 1}}, "silvery": {"_count": 1, "beams": {"_count": 1}}, "band": {"_count": 1, "of": {"_count": 1}}, "glass": {"_count": 1, "at": {"_count": 1}}, "protective": {"_count": 1, "dragon": {"_count": 1}}, "wand": {"_count": 1, "that": {"_count": 1}}, "gossamer": {"_count": 1, "strand": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "knotgrass": {"_count": 1, "behind": {"_count": 1}}, "finger": {"_count": 3, "at": {"_count": 2}, "into": {"_count": 1}}, "snakes": {"_count": 1, "wrapping": {"_count": 1}}, "hairy": {"_count": 1, "arm": {"_count": 1}}, "canopy": {"_count": 1, "of": {"_count": 1}}, "muscled": {"_count": 1, "neck": {"_count": 1}}, "arms": {"_count": 1, "flailed": {"_count": 1}}, "arm": {"_count": 1, "came": {"_count": 1}}, "hair": {"_count": 2, "and": {"_count": 1}, "so": {"_count": 1}}, "liquid": {"_count": 1, "within": {"_count": 1}}, "steaming": {"_count": 1, "onion": {"_count": 1}}, "new": {"_count": 1, "traveling": {"_count": 1}}, "gold": {"_count": 2, "chain": {"_count": 1}, "coin": {"_count": 1}}, "shiny": {"_count": 2, "strawcolored": {"_count": 2}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "rubber": {"_count": 1, "tube": {"_count": 1}}, "coppery": {"_count": 1, "green": {"_count": 1}}, "voice": {"_count": 3, "mopping": {"_count": 1}, "": {"_count": 1}, "Yeah": {"_count": 1}}, "but": {"_count": 1, "graying": {"_count": 1}}, "bushy": {"_count": 1, "beard": {"_count": 1}}, "snow": {"_count": 1, "hiding": {"_count": 1}}, "misty": {"_count": 1, "gray": {"_count": 1}}, "mudlike": {"_count": 1, "potion": {"_count": 1}}, "cuffs": {"_count": 1, "chaining": {"_count": 1}}, "snake": {"_count": 1, "now": {"_count": 1}}, "trunk": {"_count": 1, "trying": {"_count": 1}}, "golden": {"_count": 1, "potion": {"_count": 1}}}, "smoothly": {"_count": 34, "on": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "and": {"_count": 1, "spectacularly": {"_count": 1}}, "upward": {"_count": 1, "like": {"_count": 1}}, "ignoring": {"_count": 1, "Harrys": {"_count": 1}}, "as": {"_count": 1, "Hermione": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "feather": {"_count": 1}}, "to": {"_count": 2, "land": {"_count": 1}, "a": {"_count": 1}}, "since": {"_count": 1, "dont": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "into": {"_count": 1, "Snapes": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "sparkling": {"_count": 1, "lake": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "arrogant": {"_count": 1, "face": {"_count": 1}}, "inscrutable": {"_count": 1, "again": {"_count": 1}}, "handing": {"_count": 1, "Ron": {"_count": 1}}, "impenetrable": {"_count": 1, "stretch": {"_count": 1}}}, "angel": {"_count": 5, "Harry": {"_count": 2, "often": {"_count": 1}, "had": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}, "Impedimental": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}}, "pig": {"_count": 14, "in": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "anyway": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 1, "back": {"_count": 1}}, "snout": {"_count": 3, "pig": {"_count": 1}, "panted": {"_count": 1}, "Tonks": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "thats": {"_count": 1, "been": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "slaughter": {"_count": 1}}, "all": {"_count": 1, "he": {"_count": 1}}}, "wig": {"_count": 10, "": {"_count": 1, ".": {"_count": 1}}, "blue": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "tangled": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 2}}, "and": {"_count": 5, "a": {"_count": 4}, "what": {"_count": 1}}}, "plates": {"_count": 51, "of": {"_count": 4, "egg": {"_count": 1}, "kippers": {"_count": 1}, "trifle": {"_count": 1}, "eggs": {"_count": 1}}, "and": {"_count": 12, "goblets": {"_count": 5}, "statues": {"_count": 1}, "spoons": {"_count": 1}, "candles": {"_count": 1}, "cutlery": {"_count": 1}, "glasses": {"_count": 1}, "the": {"_count": 1}, "tin": {"_count": 1}}, "leaving": {"_count": 2, "them": {"_count": 2}}, "as": {"_count": 3, "it": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "were": {"_count": 1, "clean": {"_count": 1}}, "with": {"_count": 1, "scrambled": {"_count": 1}}, "outside": {"_count": 1, "girls": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 2}}, "had": {"_count": 1, "been": {"_count": 1}}, "to": {"_count": 2, "clear": {"_count": 1}, "rise": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "small": {"_count": 1}, "otherwise": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "goblets": {"_count": 1}}, "each": {"_count": 2, "decorated": {"_count": 1}, "featuring": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "continuing": {"_count": 1, "to": {"_count": 1}}, "echoed": {"_count": 1, "from": {"_count": 1}}, "below": {"_count": 1, "glitter": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "already": {"_count": 1, "laid": {"_count": 1}}}, "egg": {"_count": 105, "and": {"_count": 8, "bacon": {"_count": 1}, "smashed": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "closed": {"_count": 1}, "he": {"_count": 1}, "disappeared": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 21}, "!": {"_count": 5}, "?": {"_count": 3}}, "in": {"_count": 8, "the": {"_count": 3}, "his": {"_count": 3}, "Filchs": {"_count": 2}}, "was": {"_count": 3, "lying": {"_count": 1}, "in": {"_count": 1}, "hatching": {"_count": 1}}, "split": {"_count": 1, "open": {"_count": 1}}, "an": {"_count": 1, "we": {"_count": 1}}, "dangling": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 2, "your": {"_count": 1}, "the": {"_count": 1}}, "hatched": {"_count": 1, "beneath": {"_count": 1}}, "Harry": {"_count": 2, "glanced": {"_count": 1}, "": {"_count": 1}}, "And": {"_count": 1, "with": {"_count": 1}}, "safely": {"_count": 1, "under": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "which": {"_count": 2, "Harry": {"_count": 1}, "clattered": {"_count": 1}}, "as": {"_count": 2, "Harry": {"_count": 1}, "though": {"_count": 1}}, "upstairs": {"_count": 1, "in": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "over": {"_count": 1, "this": {"_count": 1}}, "means": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "meant": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "shook": {"_count": 1, "it": {"_count": 1}}, "questions": {"_count": 1, "shouting": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "heavy": {"_count": 1, "in": {"_count": 1}}, "clue": {"_count": 2, "after": {"_count": 1}, "": {"_count": 1}}, "wailing": {"_count": 1, "after": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "weighed": {"_count": 1, "more": {"_count": 1}}, "he": {"_count": 1, "decided": {"_count": 1}}, "under": {"_count": 1, "one": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "still": {"_count": 1, "damp": {"_count": 1}}, "fell": {"_count": 2, "down": {"_count": 1}, "through": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 1, "Potters": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "were": {"_count": 1, "square": {"_count": 1}}, "there": {"_count": 1, "cold": {"_count": 1}}, "us": {"_count": 1, "on": {"_count": 1}}, "yolk": {"_count": 1, "falling": {"_count": 1}}, "decorated": {"_count": 1, "with": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "broke": {"_count": 1, "off": {"_count": 1}}, "too": {"_count": 1, "if": {"_count": 1}}, "whole": {"_count": 1, "": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}}, "difficult": {"_count": 144, "as": {"_count": 4, "there": {"_count": 1}, "they": {"_count": 1}, "ever": {"_count": 1}, "time": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 18}, "?": {"_count": 2}}, "hed": {"_count": 1, "never": {"_count": 1}}, "Youll": {"_count": 1, "be": {"_count": 1}}, "to": {"_count": 46, "see": {"_count": 4}, "catch": {"_count": 1}, "place": {"_count": 1}, "read": {"_count": 3}, "pass": {"_count": 1}, "understand": {"_count": 1}, "concentrate": {"_count": 2}, "spot": {"_count": 1}, "slay": {"_count": 1}, "face": {"_count": 1}, "reseal": {"_count": 1}, "focus": {"_count": 1}, "come": {"_count": 1}, "disentangle": {"_count": 1}, "deliver": {"_count": 1}, "find": {"_count": 3}, "get": {"_count": 2}, "remember": {"_count": 1}, "bully": {"_count": 1}, "cut": {"_count": 1}, "deduce": {"_count": 1}, "empty": {"_count": 1}, "imagine": {"_count": 1}, "speak": {"_count": 1}, "stop": {"_count": 2}, "believe": {"_count": 2}, "put": {"_count": 1}, "maneuver": {"_count": 1}, "know": {"_count": 1}, "look": {"_count": 1}, "fix": {"_count": 1}, "maintain": {"_count": 1}, "hear": {"_count": 1}, "gather": {"_count": 1}, "make": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "I": {"_count": 1, "think": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "curse": {"_count": 1, "to": {"_count": 1}}, "ter": {"_count": 3, "find": {"_count": 2}, "get": {"_count": 1}}, "potion": {"_count": 1, "": {"_count": 1}}, "She": {"_count": 1, "was": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "journey": {"_count": 1, "through": {"_count": 1}}, "spells": {"_count": 1, "but": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 3, "becomes": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}}, "indeed": {"_count": 2, "YES": {"_count": 1}, "At": {"_count": 1}}, "business": {"_count": 1, "indeed": {"_count": 1}}, "he": {"_count": 1, "is": {"_count": 1}}, "for": {"_count": 8, "a": {"_count": 2}, "you": {"_count": 3}, "her": {"_count": 1}, "himself": {"_count": 1}, "Voldemort": {"_count": 1}}, "and": {"_count": 3, "dangerous": {"_count": 2}, "demanding": {"_count": 1}}, "times": {"_count": 2, "ahead": {"_count": 1}, "": {"_count": 1}}, "lesson": {"_count": 1, "during": {"_count": 1}}, "time": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "Hermione": {"_count": 1}}, "with": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "fiddly": {"_count": 1, "potion": {"_count": 1}}, "was": {"_count": 2, "it": {"_count": 1}, "finding": {"_count": 1}}, "magic": {"_count": 2, "you": {"_count": 1}, "not": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "essay": {"_count": 2, "about": {"_count": 1}, "for": {"_count": 1}}, "vanishment": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 2, "whole": {"_count": 1}, "longer": {"_count": 1}}, "questions": {"_count": 1, "about": {"_count": 1}}, "in": {"_count": 1, "fact": {"_count": 1}}, "catch": {"_count": 1, "Wormtail": {"_count": 1}}, "career": {"_count": 1, "path": {"_count": 1}}, "name": {"_count": 1, "fer": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "years": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "week": {"_count": 1, "there": {"_count": 1}}, "job": {"_count": 2, "that": {"_count": 1}, "perhaps": {"_count": 1}}, "feat": {"_count": 1, "as": {"_count": 1}}, "hiding": {"_count": 1, "all": {"_count": 1}}, "some": {"_count": 1, "hot": {"_count": 1}}, "topic": {"_count": 1, "of": {"_count": 1}}, "gaining": {"_count": 1, "their": {"_count": 1}}, "antidote": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "first": {"_count": 1}}}, "meanwhile": {"_count": 29, "was": {"_count": 7, "counting": {"_count": 2}, "skimming": {"_count": 1}, "absentmindedly": {"_count": 1}, "going": {"_count": 1}, "resolutely": {"_count": 1}, "offered": {"_count": 1}}, "still": {"_count": 1, "had": {"_count": 1}}, "had": {"_count": 5, "found": {"_count": 1}, "become": {"_count": 1}, "to": {"_count": 1}, "much": {"_count": 1}, "noticed": {"_count": 1}}, "the": {"_count": 3, "mad": {"_count": 1}, "pitched": {"_count": 1}, "gigantic": {"_count": 1}}, "maintained": {"_count": 1, "fiercely": {"_count": 1}}, "largely": {"_count": 1, "thanks": {"_count": 1}}, "Muggles": {"_count": 1, "are": {"_count": 1}}, "Professors": {"_count": 1, "McGonagall": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "George": {"_count": 1}}, "felt": {"_count": 1, "a": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}, "may": {"_count": 1, "well": {"_count": 1}}, "she": {"_count": 1, "ought": {"_count": 1}}}, "counting": {"_count": 30, "his": {"_count": 3, "presents": {"_count": 1}, "companions": {"_count": 1}, "prizes": {"_count": 1}}, "bricks": {"_count": 1, "in": {"_count": 1}}, "down": {"_count": 4, "to": {"_count": 1}, "the": {"_count": 3}}, "for": {"_count": 1, "less": {"_count": 1}}, "the": {"_count": 5, "number": {"_count": 1}, "windows": {"_count": 1}, "days": {"_count": 1}, "one": {"_count": 1}, "people": {"_count": 1}}, "a": {"_count": 1, "Gryffindor": {"_count": 1}}, "on": {"_count": 4, "his": {"_count": 2}, "the": {"_count": 1}, "you": {"_count": 1}}, "them": {"_count": 2, "off": {"_count": 1}, "when": {"_count": 1}}, "their": {"_count": 1, "takings": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "vermin": {"_count": 1, "are": {"_count": 1}}, "Hagrid": {"_count": 1, "as": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "upon": {"_count": 2, "it": {"_count": 1}, "you": {"_count": 1}}, "silently": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "Thirtysix": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "year": {"_count": 467, "": {"_count": 138, ".": {"_count": 109}, "?": {"_count": 23}, "!": {"_count": 6}}, "on": {"_count": 3, "Dudleys": {"_count": 1}, "the": {"_count": 2}}, "Harry": {"_count": 7, "was": {"_count": 1}, "had": {"_count": 2}, "young": {"_count": 1}, "said": {"_count": 1}, "reminded": {"_count": 1}, "": {"_count": 1}}, "before": {"_count": 8, "he": {"_count": 3}, "You": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "Voldemort": {"_count": 1}, "supporting": {"_count": 1}}, "the": {"_count": 6, "Dursleys": {"_count": 1}, "House": {"_count": 1}, "third": {"_count": 1}, "Chamber": {"_count": 1}, "fifth": {"_count": 1}, "only": {"_count": 1}}, "old": {"_count": 7, "": {"_count": 2}, "Harry": {"_count": 1}, "the": {"_count": 1}, "wine": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}}, "off": {"_count": 1, "ter": {"_count": 1}}, "you": {"_count": 5, "behave": {"_count": 1}, "know": {"_count": 1}, "saved": {"_count": 1}, "wait": {"_count": 1}, "said": {"_count": 1}}, "at": {"_count": 20, "Hogwarts": {"_count": 18}, "Defense": {"_count": 1}, "Durmstrang": {"_count": 1}}, "said": {"_count": 28, "Fred": {"_count": 2}, "Wood": {"_count": 1}, "George": {"_count": 3}, "Bill": {"_count": 2}, "Ron": {"_count": 5}, "Harry": {"_count": 3}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 3}, "Neville": {"_count": 2}, "Cho": {"_count": 1}, "Lupin": {"_count": 1}, "Professor": {"_count": 1}, "Luna": {"_count": 1}, "Malfoy": {"_count": 1}, "Ginny": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 9, "lent": {"_count": 1}, "got": {"_count": 1}, "came": {"_count": 1}, "have": {"_count": 1}, "am": {"_count": 1}, "taught": {"_count": 1}, "would": {"_count": 1}, "fear": {"_count": 1}, "kept": {"_count": 1}}, "she": {"_count": 2, "makes": {"_count": 1}, "had": {"_count": 1}}, "enjoys": {"_count": 1, "a": {"_count": 1}}, "because": {"_count": 3, "he": {"_count": 1}, "she": {"_count": 1}, "of": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 2}, "order": {"_count": 1}, "worse": {"_count": 1}, "the": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "has": {"_count": 1}}, "starts": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 2, "as": {"_count": 1}, "in": {"_count": 1}}, "ago": {"_count": 7, "Hogwarts": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "was": {"_count": 2, "over": {"_count": 1}, "that": {"_count": 1}}, "whispered": {"_count": 1, "Dobby": {"_count": 1}}, "some": {"_count": 1, "old": {"_count": 1}}, "this": {"_count": 1, "aged": {"_count": 1}}, "Gryffindor": {"_count": 1, "boys": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 24, "at": {"_count": 1}, "a": {"_count": 3}, "shes": {"_count": 1}, "then": {"_count": 1}, "they": {"_count": 2}, "on": {"_count": 1}, "above": {"_count": 2}, "to": {"_count": 1}, "it": {"_count": 1}, "by": {"_count": 1}, "he": {"_count": 1}, "talked": {"_count": 1}, "if": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "now": {"_count": 1}, "hes": {"_count": 1}, "tonight": {"_count": 1}, "Kingsley": {"_count": 1}, "tortured": {"_count": 1}}, "Yawning": {"_count": 1, "and": {"_count": 1}}, "Alicia": {"_count": 1, "Spinnet": {"_count": 1}}, "meaning": {"_count": 1, "that": {"_count": 1}}, "we": {"_count": 3, "train": {"_count": 1}, "both": {"_count": 1}, "know": {"_count": 1}}, "taking": {"_count": 2, "pictures": {"_count": 1}, "up": {"_count": 1}}, "but": {"_count": 4, "Harry": {"_count": 1}, "by": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "a": {"_count": 6, "subcommittee": {"_count": 1}, "little": {"_count": 1}, "matter": {"_count": 1}, "vicious": {"_count": 1}, "tall": {"_count": 1}, "breakthrough": {"_count": 1}}, "They": {"_count": 1, "dropped": {"_count": 1}}, "Creevey": {"_count": 1, "was": {"_count": 1}}, "Dumbledores": {"_count": 1, "was": {"_count": 1}}, "called": {"_count": 1, "today": {"_count": 1}}, "will": {"_count": 3, "end": {"_count": 1}, "begin": {"_count": 1}, "be": {"_count": 1}}, "Ginnyl": {"_count": 1, "said": {"_count": 1}}, "running": {"_count": 3, "or": {"_count": 1}, "": {"_count": 2}}, "owing": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 3, "Muggle": {"_count": 1}, "definitely": {"_count": 1}, "minor": {"_count": 1}}, "is": {"_count": 2, "enclosed": {"_count": 1}, "being": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 10, "said": {"_count": 1}, "gave": {"_count": 1}, "hired": {"_count": 1}, "informed": {"_count": 1}, "was": {"_count": 1}, "has": {"_count": 1}, "would": {"_count": 2}, "had": {"_count": 1}, "left": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 1}, "that": {"_count": 1}, "instance": {"_count": 1}, "Professor": {"_count": 1}}, "since": {"_count": 2, "she": {"_count": 1}, "I": {"_count": 1}}, "when": {"_count": 5, "their": {"_count": 1}, "you": {"_count": 2}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "left": {"_count": 2, "behind": {"_count": 1}, "at": {"_count": 1}}, "who": {"_count": 4, "was": {"_count": 2}, "looked": {"_count": 1}, "could": {"_count": 1}}, "class": {"_count": 1, "who": {"_count": 1}}, "that": {"_count": 4, "I": {"_count": 2}, "YouKnowWho": {"_count": 1}, "he": {"_count": 1}}, "staying": {"_count": 1, "behind": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "they": {"_count": 4, "managed": {"_count": 1}, "had": {"_count": 2}, "were": {"_count": 1}}, "to": {"_count": 8, "get": {"_count": 1}, "whom": {"_count": 1}, "teach": {"_count": 1}, "keep": {"_count": 1}, "go": {"_count": 1}, "first": {"_count": 1}, "the": {"_count": 1}, "live": {"_count": 1}}, "its": {"_count": 1, "how": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "though": {"_count": 1, "only": {"_count": 1}}, "possibly": {"_count": 1, "he": {"_count": 1}}, "Thatll": {"_count": 1, "change": {"_count": 1}}, "theyve": {"_count": 1, "suddenly": {"_count": 1}}, "making": {"_count": 1, "up": {"_count": 1}}, "been": {"_count": 1, "extended": {"_count": 1}}, "pointing": {"_count": 1, "over": {"_count": 1}}, "have": {"_count": 1, "already": {"_count": 1}}, "girl": {"_count": 2, "eagerly": {"_count": 1}, "stepped": {"_count": 1}}, "as": {"_count": 2, "an": {"_count": 1}, "Dads": {"_count": 1}}, "tests": {"_count": 1, "either": {"_count": 1}}, "dementors": {"_count": 1, "this": {"_count": 1}}, "dragons": {"_count": 1, "what": {"_count": 1}}, "however": {"_count": 3, "everyone": {"_count": 1}, "Hagrid": {"_count": 1}, "it": {"_count": 1}}, "older": {"_count": 1, "than": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "muttered": {"_count": 1, "Dean": {"_count": 1}}, "Lets": {"_count": 1, "go": {"_count": 1}}, "has": {"_count": 1, "enjoyed": {"_count": 1}}, "after": {"_count": 7, "they": {"_count": 2}, "all": {"_count": 1}, "next": {"_count": 1}, "her": {"_count": 1}, "deserting": {"_count": 1}, "he": {"_count": 1}}, "then": {"_count": 2, "": {"_count": 1}, "thank": {"_count": 1}}, "didnt": {"_count": 2, "you": {"_count": 1}, "it": {"_count": 1}}, "excepting": {"_count": 1, "the": {"_count": 1}}, "later": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "see": {"_count": 1, "where": {"_count": 1}}, "too": {"_count": 4, "his": {"_count": 1}, "": {"_count": 3}}, "time": {"_count": 1, "will": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "alone": {"_count": 1, "": {"_count": 1}}, "And": {"_count": 1, "you": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "there": {"_count": 1}}, "Ill": {"_count": 1, "go": {"_count": 1}}, "Still": {"_count": 1, "I": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "mean": {"_count": 1, "I": {"_count": 1}}, "here": {"_count": 1, "though": {"_count": 1}}, "Bill": {"_count": 1, "told": {"_count": 1}}, "of": {"_count": 3, "course": {"_count": 2}, "his": {"_count": 1}}, "were": {"_count": 1, "they": {"_count": 1}}, "inserting": {"_count": 1, "purple": {"_count": 1}}, "your": {"_count": 1, "scar": {"_count": 1}}, "yet": {"_count": 1, "now": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "assuming": {"_count": 1, "of": {"_count": 1}}, "We": {"_count": 1, "cant": {"_count": 1}}, "Ron": {"_count": 2, "interrupted": {"_count": 1}, "said": {"_count": 1}}, "Yeh": {"_count": 1, "get": {"_count": 1}}, "getting": {"_count": 1, "past": {"_count": 1}}, "even": {"_count": 1, "with": {"_count": 1}}, "jump": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "instead": {"_count": 1, "and": {"_count": 1}}, "although": {"_count": 1, "fortunately": {"_count": 1}}, "without": {"_count": 1, "my": {"_count": 1}}, "Eddie": {"_count": 1, "Carmichael": {"_count": 1}}, "having": {"_count": 1, "watched": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "thats": {"_count": 1, "one": {"_count": 1}}, "whats": {"_count": 1, "it": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 1, "want": {"_count": 1}}, "Idve": {"_count": 1, "told": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "arrived": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "Ill": {"_count": 1}}, "finally": {"_count": 1, "pausing": {"_count": 1}}, "Ginnys": {"_count": 1, "examinations": {"_count": 1}}, "previously": {"_count": 1, "his": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "darted": {"_count": 1, "up": {"_count": 1}}, "with": {"_count": 1, "such": {"_count": 1}}}, "Darling": {"_count": 2, "you": {"_count": 1, "havent": {"_count": 1}}, "Dodgy": {"_count": 1, "": {"_count": 1}}}, "counted": {"_count": 19, "Auntie": {"_count": 1, "Marges": {"_count": 1}}, "on": {"_count": 3, "dunno": {"_count": 1}, "this": {"_count": 1}, "Miss": {"_count": 1}}, "out": {"_count": 1, "five": {"_count": 1}}, "stitches": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "memorable": {"_count": 1}, "fact": {"_count": 1}, "freckles": {"_count": 1}}, "his": {"_count": 1, "fears": {"_count": 1}}, "Neville": {"_count": 1, "melting": {"_count": 1}}, "three": {"_count": 1, "gold": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "myself": {"_count": 1, "among": {"_count": 1}}, "friends": {"_count": 1, "and": {"_count": 1}}, "against": {"_count": 1, "him": {"_count": 1}}, "upon": {"_count": 2, "to": {"_count": 2}}, "as": {"_count": 1, "chivalrous": {"_count": 1}}}, "Auntie": {"_count": 30, "Marges": {"_count": 1, "present": {"_count": 1}}, "Enid": {"_count": 1, "offered": {"_count": 1}}, "Mabels": {"_count": 1, "birthday": {"_count": 1}}, "Muriel": {"_count": 24, "Shut": {"_count": 1}, "stashed": {"_count": 1}, "this": {"_count": 1}, "in": {"_count": 1}, "grumbling": {"_count": 1}, "standing": {"_count": 1}, "swung": {"_count": 1}, "drained": {"_count": 1}, "": {"_count": 5}, "looking": {"_count": 1}, "cackled": {"_count": 1}, "ignored": {"_count": 1}, "steamrollered": {"_count": 1}, "who": {"_count": 1}, "thoughtfully": {"_count": 1}, "happily": {"_count": 1}, "cheerfully": {"_count": 1}, "through": {"_count": 1}, "testily": {"_count": 1}, "was": {"_count": 1}}, "Muriels": {"_count": 3, "you": {"_count": 1}, "not": {"_count": 1}, "and": {"_count": 1}}}, "Marges": {"_count": 12, "present": {"_count": 1, "see": {"_count": 1}}, "ill": {"_count": 1, "he": {"_count": 1}}, "train": {"_count": 1, "gets": {"_count": 1}}, "visit": {"_count": 1, "": {"_count": 1}}, "hugs": {"_count": 1, "because": {"_count": 1}}, "attention": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "stay": {"_count": 1, "arrived": {"_count": 1}}, "voice": {"_count": 1, "seemed": {"_count": 1}}, "glass": {"_count": 1, "": {"_count": 1}}, "whole": {"_count": 1, "body": {"_count": 1}}, "feet": {"_count": 1, "and": {"_count": 1}}}, "present": {"_count": 107, "see": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 24}, "?": {"_count": 2}, "!": {"_count": 2}}, "also": {"_count": 1, "contained": {"_count": 1}}, "let": {"_count": 1, "alone": {"_count": 1}}, "him": {"_count": 2, "now": {"_count": 1}, "with": {"_count": 1}}, "than": {"_count": 2, "the": {"_count": 1}, "endless": {"_count": 1}}, "to": {"_count": 3, "find": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "heard": {"_count": 1}}, "and": {"_count": 3, "future": {"_count": 1}, "unwrapped": {"_count": 1}, "listened": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 6, "card": {"_count": 1}, "Chudley": {"_count": 1}, "respectable": {"_count": 1}, "reassuring": {"_count": 1}, "vicious": {"_count": 1}, "few": {"_count": 1}}, "by": {"_count": 1, "owlorder": {"_count": 1}}, "for": {"_count": 3, "Dudley": {"_count": 1}, "you": {"_count": 1}, "Dobby": {"_count": 1}}, "the": {"_count": 2, "Dursleys": {"_count": 1}, "same": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "climate": {"_count": 2, "": {"_count": 2}}, "THE": {"_count": 1, "MARAUDERS": {"_count": 1}}, "yourself": {"_count": 1, "and": {"_count": 1}}, "condition": {"_count": 1, "": {"_count": 1}}, "ha": {"_count": 1, "": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 2, "with": {"_count": 1}, "as": {"_count": 1}}, "at": {"_count": 3, "one": {"_count": 1}, "the": {"_count": 2}}, "Ive": {"_count": 1, "had": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "evidence": {"_count": 1, "to": {"_count": 1}}, "whereabouts": {"_count": 1, "of": {"_count": 1}}, "your": {"_count": 2, "wand": {"_count": 2}}, "finally": {"_count": 1, "let": {"_count": 1}}, "witnesses": {"_count": 1, "for": {"_count": 1}}, "darkness": {"_count": 1, "he": {"_count": 1}}, "much": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "an": {"_count": 2, "then": {"_count": 1}, "find": {"_count": 1}}, "gives": {"_count": 1, "a": {"_count": 1}}, "wed": {"_count": 1, "meant": {"_count": 1}}, "Headmaster": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}, "company": {"_count": 1, "": {"_count": 1}}, "situation": {"_count": 2, "and": {"_count": 1}, "is": {"_count": 1}}, "but": {"_count": 1, "if": {"_count": 1}}, "Slughorn": {"_count": 1, "did": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "my": {"_count": 1, "wife": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "itself": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "themselves": {"_count": 2, "for": {"_count": 2}}, "not": {"_count": 1, "to": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}}, "Mommy": {"_count": 3, "and": {"_count": 1, "Daddy": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "will": {"_count": 1, "never": {"_count": 1}}}, "Daddy": {"_count": 10, "": {"_count": 1, ".": {"_count": 1}}, "now": {"_count": 1, "are": {"_count": 1}}, "exactly": {"_count": 1, "pays": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "sold": {"_count": 1, "it": {"_count": 1}}, "look": {"_count": 1, "one": {"_count": 1}}, "most": {"_count": 1, "people": {"_count": 1}}, "says": {"_count": 1, "only": {"_count": 1}}, "wrote": {"_count": 1, "to": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}}, "thirtyseven": {"_count": 2, "then": {"_count": 1, "said": {"_count": 1}}, "Galleons": {"_count": 1, "fifteen": {"_count": 1}}}, "red": {"_count": 277, "in": {"_count": 7, "the": {"_count": 6}, "his": {"_count": 1}}, "to": {"_count": 1, "green": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 27}}, "and": {"_count": 31, "gold": {"_count": 10}, "shiny": {"_count": 1}, "blue": {"_count": 1}, "muttered": {"_count": 1}, "yellow": {"_count": 1}, "swollen": {"_count": 2}, "emitted": {"_count": 1}, "had": {"_count": 1}, "thereafter": {"_count": 1}, "waist": {"_count": 1}, "inflamed": {"_count": 1}, "his": {"_count": 2}, "puffy": {"_count": 1}, "glutinous": {"_count": 1}, "turning": {"_count": 1}, "left": {"_count": 1}, "he": {"_count": 1}, "green": {"_count": 2}, "silver": {"_count": 1}}, "hair": {"_count": 22, "": {"_count": 4}, "freckles": {"_count": 1}, "and": {"_count": 6}, "was": {"_count": 1}, "including": {"_count": 1}, "appeared": {"_count": 1}, "that": {"_count": 1}, "visible": {"_count": 1}, "around": {"_count": 1}, "dancing": {"_count": 1}, "out": {"_count": 1}, "flying": {"_count": 1}, "or": {"_count": 1}, "the": {"_count": 1}}, "headed": {"_count": 1, "who": {"_count": 1}}, "but": {"_count": 2, "a": {"_count": 1}, "turned": {"_count": 1}}, "as": {"_count": 5, "his": {"_count": 1}, "any": {"_count": 1}, "Ginny": {"_count": 1}, "Rons": {"_count": 1}, "Ron": {"_count": 1}}, "velvet": {"_count": 4, "curtains": {"_count": 2}, "and": {"_count": 1}, "cushion": {"_count": 1}}, "boils": {"_count": 1, "sprang": {"_count": 1}}, "oh": {"_count": 1, "": {"_count": 1}}, "ball": {"_count": 3, "about": {"_count": 1}, "to": {"_count": 1}, "soaring": {"_count": 1}}, "Quaffle": {"_count": 1, "": {"_count": 1}}, "card": {"_count": 1, "and": {"_count": 1}}, "sparks": {"_count": 11, "an": {"_count": 1}, "and": {"_count": 2}, "into": {"_count": 3}, "did": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "flew": {"_count": 1}}, "stone": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 37, "and": {"_count": 5}, "youre": {"_count": 1}, "": {"_count": 4}, "whose": {"_count": 2}, "fixed": {"_count": 2}, "darting": {"_count": 1}, "as": {"_count": 1}, "upon": {"_count": 1}, "blank": {"_count": 1}, "fell": {"_count": 1}, "through": {"_count": 1}, "glinting": {"_count": 1}, "were": {"_count": 2}, "wide": {"_count": 2}, "widened": {"_count": 1}, "flamed": {"_count": 1}, "with": {"_count": 1}, "so": {"_count": 1}, "fastened": {"_count": 1}, "examining": {"_count": 1}, "high": {"_count": 1}, "the": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 1}, "stared": {"_count": 1}, "did": {"_count": 1}}, "sun": {"_count": 1, "was": {"_count": 1}}, "roof": {"_count": 1, "": {"_count": 1}}, "envelope": {"_count": 6, "in": {"_count": 1}, "": {"_count": 2}, "which": {"_count": 1}, "on": {"_count": 1}, "had": {"_count": 1}}, "plant": {"_count": 1, "as": {"_count": 1}}, "one": {"_count": 3, "is": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}}, "eraser": {"_count": 1, "": {"_count": 1}}, "gleam": {"_count": 3, "in": {"_count": 3}}, "face": {"_count": 4, "started": {"_count": 1}, "was": {"_count": 1}, "shining": {"_count": 1}, "inches": {"_count": 1}}, "bottle": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "scarves": {"_count": 1, "": {"_count": 1}}, "light": {"_count": 29, "and": {"_count": 7}, "flying": {"_count": 1}, "blasted": {"_count": 1}, "shot": {"_count": 1}, "they": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 1}, "hit": {"_count": 2}, "flew": {"_count": 3}, "He": {"_count": 2}, "his": {"_count": 1}, "cast": {"_count": 1}, "but": {"_count": 1}, "soared": {"_count": 1}, "of": {"_count": 1}, "Umbridge": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "so": {"_count": 1}}, "handbag": {"_count": 1, "": {"_count": 1}}, "soccersized": {"_count": 1, "ball": {"_count": 1}}, "put": {"_count": 1, "down": {"_count": 1}}, "currant": {"_count": 1, "rum": {"_count": 1}}, "on": {"_count": 3, "being": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 1, "fluttering": {"_count": 1}}, "for": {"_count": 1, "Bulgaria": {"_count": 1}}, "lanterns": {"_count": 1, "blazed": {"_count": 1}}, "vests": {"_count": 1, "each": {"_count": 1}}, "robes": {"_count": 1, "shining": {"_count": 1}}, "waterfilled": {"_count": 1, "balloon": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 6, "": {"_count": 4}, "and": {"_count": 2}}, "once": {"_count": 2, "more": {"_count": 2}}, "letters": {"_count": 2, "that": {"_count": 1}, "across": {"_count": 1}}, "flush": {"_count": 1, "rising": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "tartan": {"_count": 1, "and": {"_count": 1}}, "indeed": {"_count": 1, "and": {"_count": 1}}, "patches": {"_count": 2, "appeared": {"_count": 1}, "blazing": {"_count": 1}}, "luminous": {"_count": 1, "stars": {"_count": 1}}, "the": {"_count": 1, "light": {"_count": 1}}, "tattoo": {"_count": 1, "a": {"_count": 1}}, "nor": {"_count": 1, "green": {"_count": 1}}, "telephone": {"_count": 1, "box": {"_count": 1}}, "pins": {"_count": 1, "were": {"_count": 1}}, "marks": {"_count": 1, "under": {"_count": 1}}, "always": {"_count": 1, "a": {"_count": 1}}, "ink": {"_count": 2, "": {"_count": 1}, "reading": {"_count": 1}}, "raw": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "brick": {"_count": 1, "department": {"_count": 1}}, "bicycle": {"_count": 1, "and": {"_count": 1}}, "star": {"_count": 2, "winked": {"_count": 1}, "directly": {"_count": 1}}, "if": {"_count": 1, "Montague": {"_count": 1}}, "beams": {"_count": 1, "collided": {"_count": 1}}, "glow": {"_count": 1, "then": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "himself": {"_count": 1}}, "sunset": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "velvet": {"_count": 1}}, "glare": {"_count": 1, "along": {"_count": 1}}, "bolt": {"_count": 1, "of": {"_count": 1}}, "curly": {"_count": 1, "hair": {"_count": 1}}, "rose": {"_count": 1, "with": {"_count": 1}}, "she": {"_count": 1, "looked": {"_count": 1}}, "gold": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "voices": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "fruits": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "cotton": {"_count": 1, "curtains": {"_count": 1}}, "earth": {"_count": 1, "of": {"_count": 1}}, "burns": {"_count": 1, "all": {"_count": 1}}}, "coming": {"_count": 382, "on": {"_count": 3, "began": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "back": {"_count": 32, "from": {"_count": 2}, "for": {"_count": 3}, "to": {"_count": 8}, "": {"_count": 7}, "isnt": {"_count": 1}, "up": {"_count": 1}, "into": {"_count": 3}, "out": {"_count": 2}, "everythings": {"_count": 1}, "a": {"_count": 1}, "people": {"_count": 1}, "even": {"_count": 1}, "in": {"_count": 1}}, "to": {"_count": 48, "take": {"_count": 1}, "a": {"_count": 9}, "visit": {"_count": 1}, "look": {"_count": 1}, "dinner": {"_count": 1}, "see": {"_count": 2}, "long": {"_count": 1}, "Hogwarts": {"_count": 1}, "it": {"_count": 1}, "join": {"_count": 1}, "help": {"_count": 1}, "watch": {"_count": 1}, "his": {"_count": 2}, "work": {"_count": 2}, "this": {"_count": 1}, "get": {"_count": 1}, "investigate": {"_count": 1}, "that": {"_count": 2}, "judge": {"_count": 1}, "nose": {"_count": 1}, "the": {"_count": 1}, "arrest": {"_count": 1}, "live": {"_count": 1}, "rest": {"_count": 2}, "him": {"_count": 3}, "stay": {"_count": 1}, "tell": {"_count": 1}, "them": {"_count": 1}, "regard": {"_count": 1}, "an": {"_count": 2}, "us": {"_count": 1}, "meals": {"_count": 1}}, "from": {"_count": 48, "a": {"_count": 7}, "it": {"_count": 2}, "the": {"_count": 16}, "up": {"_count": 1}, "all": {"_count": 2}, "Slytherin": {"_count": 1}, "somewhere": {"_count": 3}, "your": {"_count": 1}, "behind": {"_count": 1}, "Durmstrang": {"_count": 1}, "her": {"_count": 1}, "every": {"_count": 1}, "an": {"_count": 1}, "opposite": {"_count": 1}, "them": {"_count": 1}, "both": {"_count": 1}, "inside": {"_count": 1}, "what": {"_count": 1}, "him": {"_count": 1}, "Dudley": {"_count": 1}, "Mr": {"_count": 1}, "but": {"_count": 1}, "overhead": {"_count": 1}}, "nearer": {"_count": 5, "and": {"_count": 4}, "its": {"_count": 1}}, "now": {"_count": 4, "": {"_count": 3}, "Where": {"_count": 1}}, "out": {"_count": 20, "at": {"_count": 1}, "of": {"_count": 18}, "in": {"_count": 1}}, "eh": {"_count": 1, "Potter": {"_count": 1}}, "with": {"_count": 11, "you": {"_count": 3}, "Krum": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 3}, "us": {"_count": 1}}, "through": {"_count": 7, "": {"_count": 3}, "it": {"_count": 1}, "the": {"_count": 3}}, "": {"_count": 45, ".": {"_count": 26}, "!": {"_count": 7}, "?": {"_count": 12}}, "down": {"_count": 16, "the": {"_count": 8}, "a": {"_count": 1}, "harder": {"_count": 1}, "so": {"_count": 1}, "out": {"_count": 1}, "here": {"_count": 2}, "for": {"_count": 1}, "on": {"_count": 1}}, "here": {"_count": 5, "listen": {"_count": 1}, "is": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "match": {"_count": 2, "": {"_count": 2}}, "hes": {"_count": 2, "got": {"_count": 1}, "so": {"_count": 1}}, "said": {"_count": 7, "Hermione": {"_count": 1}, "Lupin": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}, "George": {"_count": 1}, "Harry": {"_count": 1}, "Professor": {"_count": 1}}, "right": {"_count": 1, "up": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 2}, "Gringotts": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "up": {"_count": 15, "was": {"_count": 1}, "the": {"_count": 4}, "here": {"_count": 1}, "wouldnt": {"_count": 1}, "to": {"_count": 3}, "havent": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "The": {"_count": 1}, "with": {"_count": 1}}, "year": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "toward": {"_count": 3, "him": {"_count": 2}, "them": {"_count": 1}}, "over": {"_count": 7, "": {"_count": 2}, "his": {"_count": 1}, "to": {"_count": 3}, "faint": {"_count": 1}}, "Quidditch": {"_count": 1, "match": {"_count": 1}}, "Harry": {"_count": 3, "couldnt": {"_count": 1}, "snapped": {"_count": 1}, "Potter": {"_count": 1}}, "There": {"_count": 2, "was": {"_count": 1}, "is": {"_count": 1}}, "for": {"_count": 7, "a": {"_count": 2}, "you": {"_count": 1}, "him": {"_count": 1}, "me": {"_count": 2}, "us": {"_count": 1}}, "Molly": {"_count": 1, "": {"_count": 1}}, "aboard": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 2, "": {"_count": 2}}, "Penny": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 12, "through": {"_count": 1}, "wheezes": {"_count": 1}, "from": {"_count": 1}, "sharp": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 3}, "searing": {"_count": 1}, "sobs": {"_count": 1}, "": {"_count": 1}}, "across": {"_count": 1, "me": {"_count": 1}}, "and": {"_count": 4, "then": {"_count": 1}, "Zabini": {"_count": 1}, "you": {"_count": 1}, "raised": {"_count": 1}}, "any": {"_count": 1, "moment": {"_count": 1}}, "Macnairs": {"_count": 1, "gone": {"_count": 1}}, "closer": {"_count": 4, "and": {"_count": 3}, "": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "me": {"_count": 1}}, "ever": {"_count": 1, "closer": {"_count": 1}}, "a": {"_count": 1, "mile": {"_count": 1}}, "home": {"_count": 2, "and": {"_count": 1}, "that": {"_count": 1}}, "months": {"_count": 1, "an": {"_count": 1}}, "month": {"_count": 3, "will": {"_count": 1}, "": {"_count": 2}}, "the": {"_count": 2, "third": {"_count": 1}, "following": {"_count": 1}}, "shes": {"_count": 1, "bound": {"_count": 1}}, "or": {"_count": 2, "not": {"_count": 1}, "what": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "ball": {"_count": 1, "or": {"_count": 1}}, "suddenly": {"_count": 1, "realized": {"_count": 1}}, "precisely": {"_count": 1, "one": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "round": {"_count": 2, "now": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 3, "what": {"_count": 1}, "soon": {"_count": 1}, "fast": {"_count": 1}}, "too": {"_count": 3, "": {"_count": 3}}, "downstairs": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "way": {"_count": 1}}, "replied": {"_count": 1, "Hermione": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "Friday": {"_count": 1, "at": {"_count": 1}}, "zere": {"_count": 1, "isnt": {"_count": 1}}, "thick": {"_count": 1, "and": {"_count": 1}}, "Im": {"_count": 1, "the": {"_count": 1}}, "secretly": {"_count": 2, "": {"_count": 2}}, "catastrophe": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "an": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "was": {"_count": 1, "perhaps": {"_count": 1}}, "our": {"_count": 1, "of": {"_count": 1}}, "more": {"_count": 1, "quickly": {"_count": 1}}, "she": {"_count": 1, "told": {"_count": 1}}, "just": {"_count": 1, "get": {"_count": 1}}, "feel": {"_count": 1, "it": {"_count": 1}}}, "began": {"_count": 439, "wolfing": {"_count": 1, "down": {"_count": 1}}, "to": {"_count": 255, "cry": {"_count": 6}, "open": {"_count": 1}, "get": {"_count": 2}, "attack": {"_count": 1}, "pin": {"_count": 1}, "move": {"_count": 16}, "sing": {"_count": 2}, "eat": {"_count": 5}, "creep": {"_count": 3}, "drink": {"_count": 1}, "tell": {"_count": 3}, "droop": {"_count": 2}, "play": {"_count": 1}, "unwrap": {"_count": 1}, "clean": {"_count": 1}, "whine": {"_count": 1}, "read": {"_count": 11}, "wiggle": {"_count": 1}, "snore": {"_count": 1}, "run": {"_count": 4}, "examine": {"_count": 1}, "grow": {"_count": 2}, "leave": {"_count": 1}, "fizz": {"_count": 1}, "swell": {"_count": 2}, "stir": {"_count": 1}, "jerk": {"_count": 1}, "blow": {"_count": 1}, "spin": {"_count": 2}, "trace": {"_count": 1}, "laugh": {"_count": 3}, "pour": {"_count": 2}, "write": {"_count": 4}, "gulp": {"_count": 1}, "heave": {"_count": 1}, "growl": {"_count": 1}, "rise": {"_count": 6}, "speak": {"_count": 3}, "water": {"_count": 2}, "chop": {"_count": 1}, "walk": {"_count": 9}, "buzz": {"_count": 1}, "spread": {"_count": 1}, "blossom": {"_count": 2}, "climb": {"_count": 5}, "snigger": {"_count": 1}, "bleed": {"_count": 2}, "squeak": {"_count": 1}, "shake": {"_count": 1}, "chant": {"_count": 1}, "fumble": {"_count": 1}, "turn": {"_count": 1}, "wave": {"_count": 1}, "soar": {"_count": 1}, "rock": {"_count": 3}, "tremble": {"_count": 3}, "call": {"_count": 1}, "swing": {"_count": 2}, "cartwheel": {"_count": 1}, "roll": {"_count": 1}, "twitch": {"_count": 1}, "beckon": {"_count": 1}, "glide": {"_count": 1}, "fly": {"_count": 2}, "flick": {"_count": 2}, "squirm": {"_count": 1}, "sob": {"_count": 4}, "hack": {"_count": 3}, "cut": {"_count": 1}, "trot": {"_count": 1}, "wolf": {"_count": 1}, "awake": {"_count": 1}, "erupt": {"_count": 1}, "wend": {"_count": 1}, "take": {"_count": 1}, "point": {"_count": 1}, "swirl": {"_count": 3}, "clap": {"_count": 2}, "scream": {"_count": 5}, "revolve": {"_count": 2}, "fade": {"_count": 1}, "bear": {"_count": 1}, "pace": {"_count": 5}, "burn": {"_count": 2}, "vibrate": {"_count": 4}, "slide": {"_count": 2}, "emit": {"_count": 1}, "change": {"_count": 1}, "fight": {"_count": 2}, "sputter": {"_count": 1}, "disembark": {"_count": 1}, "yell": {"_count": 1}, "descend": {"_count": 2}, "slow": {"_count": 1}, "thin": {"_count": 2}, "explain": {"_count": 1}, "steam": {"_count": 1}, "tear": {"_count": 1}, "clear": {"_count": 1}, "help": {"_count": 1}, "pump": {"_count": 1}, "fall": {"_count": 3}, "sprint": {"_count": 3}, "shrink": {"_count": 1}, "rotate": {"_count": 1}, "race": {"_count": 3}, "bubble": {"_count": 3}, "feed": {"_count": 1}, "talk": {"_count": 1}, "choke": {"_count": 1}, "file": {"_count": 1}, "try": {"_count": 1}, "rummage": {"_count": 1}, "refill": {"_count": 1}, "swim": {"_count": 1}, "cower": {"_count": 1}, "pant": {"_count": 1}, "carry": {"_count": 1}, "howl": {"_count": 1}, "struggle": {"_count": 1}, "stride": {"_count": 1}, "pop": {"_count": 1}, "froth": {"_count": 1}, "lose": {"_count": 1}, "snake": {"_count": 1}, "swoop": {"_count": 1}, "argue": {"_count": 1}, "protest": {"_count": 1}, "spoon": {"_count": 1}, "back": {"_count": 1}, "vanish": {"_count": 1}, "rumble": {"_count": 1}, "suspect": {"_count": 1}, "pull": {"_count": 1}, "whirl": {"_count": 1}, "replicate": {"_count": 1}, "slope": {"_count": 2}, "totter": {"_count": 1}, "duel": {"_count": 1}}, "but": {"_count": 20, "Uncle": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 2}, "they": {"_count": 1}, "Hagrid": {"_count": 2}, "Hermione": {"_count": 2}, "Snape": {"_count": 2}, "at": {"_count": 1}, "Karkaroff": {"_count": 1}, "Harry": {"_count": 1}, "Mr": {"_count": 1}, "too": {"_count": 1}, "perhaps": {"_count": 1}, "Slughorn": {"_count": 1}, "Mundungus": {"_count": 1}, "Bill": {"_count": 1}}, "taking": {"_count": 2, "all": {"_count": 1}, "notes": {"_count": 1}}, "rubbing": {"_count": 1, "the": {"_count": 1}}, "stiffly": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 29}}, "without": {"_count": 2, "any": {"_count": 1}, "knowing": {"_count": 1}}, "sweeping": {"_count": 1, "off": {"_count": 1}}, "dragging": {"_count": 1, "them": {"_count": 1}}, "filling": {"_count": 1, "their": {"_count": 1}}, "shuffling": {"_count": 2, "around": {"_count": 1}, "papers": {"_count": 1}}, "awkwardly": {"_count": 2, "": {"_count": 2}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "a": {"_count": 2, "kind": {"_count": 1}, "ballad": {"_count": 1}}, "clicking": {"_count": 1, "away": {"_count": 1}}, "bending": {"_count": 1, "and": {"_count": 1}}, "talking": {"_count": 1, "immediately": {"_count": 1}}, "brandishing": {"_count": 1, "it": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "tearing": {"_count": 2, "ferociously": {"_count": 1}, "them": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "squinting": {"_count": 1, "around": {"_count": 1}}, "shouting": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "an": {"_count": 1}}, "rolling": {"_count": 1, "up": {"_count": 1}}, "breaking": {"_count": 1, "it": {"_count": 1}}, "counting": {"_count": 1, "the": {"_count": 1}}, "zooming": {"_count": 1, "around": {"_count": 1}}, "chopping": {"_count": 1, "the": {"_count": 1}}, "jotting": {"_count": 1, "down": {"_count": 1}}, "arguing": {"_count": 1, "furiously": {"_count": 1}}, "throwing": {"_count": 2, "what": {"_count": 1}, "his": {"_count": 1}}, "hotly": {"_count": 3, "who": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "twittering": {"_count": 1, "and": {"_count": 1}}, "doling": {"_count": 1, "beef": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 3}, "an": {"_count": 1}, "tones": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "picturing": {"_count": 1, "horrific": {"_count": 1}}, "banging": {"_count": 1, "his": {"_count": 1}}, "winding": {"_count": 1, "it": {"_count": 1}}, "wailing": {"_count": 1, "loudly": {"_count": 1}}, "snapping": {"_count": 1, "and": {"_count": 1}}, "herding": {"_count": 1, "the": {"_count": 1}}, "ticking": {"_count": 1, "off": {"_count": 1}}, "shunting": {"_count": 1, "them": {"_count": 1}}, "attaching": {"_count": 1, "it": {"_count": 1}}, "scribbling": {"_count": 4, "upon": {"_count": 1}, "furiously": {"_count": 1}, "very": {"_count": 1}, "a": {"_count": 1}}, "walking": {"_count": 1, "up": {"_count": 1}}, "sprinting": {"_count": 1, "up": {"_count": 1}}, "not": {"_count": 2, "only": {"_count": 1}, "entirely": {"_count": 1}}, "examining": {"_count": 1, "his": {"_count": 1}}, "angrily": {"_count": 1, "but": {"_count": 1}}, "pacing": {"_count": 1, "again": {"_count": 1}}, "filing": {"_count": 1, "past": {"_count": 1}}, "piling": {"_count": 1, "them": {"_count": 1}}, "Snapes": {"_count": 1, "moonstone": {"_count": 1}}, "Angelina": {"_count": 1, "": {"_count": 1}}, "questioning": {"_count": 1, "her": {"_count": 1}}, "rather": {"_count": 1, "hoarsely": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "again": {"_count": 4, "forcing": {"_count": 1}, "as": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "prickling": {"_count": 1, "uncomfortably": {"_count": 1}}, "Parvati": {"_count": 1, "in": {"_count": 1}}, "beating": {"_count": 1, "his": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "swatting": {"_count": 1, "at": {"_count": 1}}, "rifling": {"_count": 1, "through": {"_count": 1}}, "wending": {"_count": 1, "his": {"_count": 1}}, "Hermione": {"_count": 2, "but": {"_count": 1}, "her": {"_count": 1}}, "wrapping": {"_count": 1, "themselves": {"_count": 1}}, "leaping": {"_count": 1, "from": {"_count": 1}}, "spinning": {"_count": 1, "their": {"_count": 1}}, "marking": {"_count": 1, "her": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "shoveling": {"_count": 1, "scrambled": {"_count": 1}}, "Ron": {"_count": 3, "but": {"_count": 1}, "": {"_count": 2}}, "the": {"_count": 1, "walk": {"_count": 1}}, "playing": {"_count": 1, "with": {"_count": 1}}, "adding": {"_count": 1, "weights": {"_count": 1}}, "Harry": {"_count": 4, "awkwardly": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "scrabbling": {"_count": 1, "on": {"_count": 1}}, "swirling": {"_count": 1, "the": {"_count": 1}}, "pulling": {"_count": 2, "on": {"_count": 1}, "open": {"_count": 1}}, "his": {"_count": 1, "investigations": {"_count": 1}}, "moving": {"_count": 1, "toward": {"_count": 1}}, "rummaging": {"_count": 2, "in": {"_count": 2}}, "siphoning": {"_count": 1, "the": {"_count": 1}}, "making": {"_count": 1, "extravagant": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "dabbing": {"_count": 1, "at": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "swinging": {"_count": 1, "it": {"_count": 1}}, "stripping": {"_count": 1, "off": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 2}}, "Elphias": {"_count": 1, "in": {"_count": 1}}, "presenting": {"_count": 1, "itself": {"_count": 1}}, "groping": {"_count": 1, "the": {"_count": 1}}, "tugging": {"_count": 1, "out": {"_count": 1}}, "hacking": {"_count": 1, "at": {"_count": 1}}, "twisting": {"_count": 1, "and": {"_count": 1}}, "Seamus": {"_count": 1, "": {"_count": 1}}, "scampering": {"_count": 1, "back": {"_count": 1}}, "edging": {"_count": 1, "slowly": {"_count": 1}}, "reeling": {"_count": 1, "him": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "dropped": {"_count": 1}}}, "wolfing": {"_count": 1, "down": {"_count": 1, "his": {"_count": 1}}}, "case": {"_count": 209, "Dudley": {"_count": 1, "turned": {"_count": 1}}, "he": {"_count": 18, "missed": {"_count": 1}, "gets": {"_count": 1}, "came": {"_count": 1}, "looked": {"_count": 1}, "changed": {"_count": 1}, "needed": {"_count": 1}, "had": {"_count": 2}, "hadnt": {"_count": 1}, "was": {"_count": 3}, "showed": {"_count": 1}, "did": {"_count": 1}, "attacked": {"_count": 1}, "ever": {"_count": 1}, "used": {"_count": 1}, "turns": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "behind": {"_count": 1}}, "Malfoy": {"_count": 2, "leapt": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 24}, "!": {"_count": 2}, "?": {"_count": 3}}, "his": {"_count": 1, "grandfather": {"_count": 1}}, "theyre": {"_count": 3, "ever": {"_count": 1}, "raided": {"_count": 1}, "busy": {"_count": 1}}, "of": {"_count": 15, "lowhanging": {"_count": 1}, "exam": {"_count": 1}, "Fred": {"_count": 2}, "Sirius": {"_count": 1}, "hippogriffbaiting": {"_count": 1}, "Twitchy": {"_count": 1}, "spattergroit": {"_count": 1}, "further": {"_count": 1}, "underage": {"_count": 1}, "Morfin": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}, "Harry": {"_count": 1}}, "I": {"_count": 5, "beg": {"_count": 1}, "really": {"_count": 1}, "shall": {"_count": 1}, "might": {"_count": 1}, "do": {"_count": 1}}, "they": {"_count": 6, "end": {"_count": 1}, "think": {"_count": 1}, "needed": {"_count": 1}, "might": {"_count": 1}, "hurt": {"_count": 1}, "The": {"_count": 1}}, "nearby": {"_count": 1, "held": {"_count": 1}}, "perhaps": {"_count": 1, "we": {"_count": 1}}, "you": {"_count": 16, "ever": {"_count": 1}, "get": {"_count": 1}, "start": {"_count": 1}, "accidentally": {"_count": 1}, "step": {"_count": 1}, "havent": {"_count": 3}, "will": {"_count": 1}, "hadnt": {"_count": 5}, "understand": {"_count": 1}, "didnt": {"_count": 1}}, "youre": {"_count": 1, "getting": {"_count": 1}}, "there": {"_count": 5, "was": {"_count": 3}, "are": {"_count": 1}, "is": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "silver": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 2, "look": {"_count": 1}, "Dumbledore": {"_count": 1}}, "aside": {"_count": 1, "and": {"_count": 1}}, "upstairs": {"_count": 1, "into": {"_count": 1}}, "she": {"_count": 3, "replied": {"_count": 1}, "was": {"_count": 1}, "pressed": {"_count": 1}}, "held": {"_count": 1, "together": {"_count": 1}}, "Potter": {"_count": 2, "youll": {"_count": 1}, "we": {"_count": 1}}, "Buckbeak": {"_count": 1, "Hagrid": {"_count": 1}}, "against": {"_count": 6, "the": {"_count": 2}, "you": {"_count": 2}, "Malfoy": {"_count": 1}, "him": {"_count": 1}}, "in": {"_count": 2, "1722": {"_count": 1}, "which": {"_count": 1}}, "some": {"_count": 1, "git": {"_count": 1}}, "which": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "and": {"_count": 3, "pulled": {"_count": 1}, "Mr": {"_count": 1}, "he": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 1}, "Snape": {"_count": 1}, "as": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 6, "Slytherins": {"_count": 1}, "letters": {"_count": 1}, "owl": {"_count": 1}, "Ministry": {"_count": 1}, "old": {"_count": 1}, "interior": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 1}, "prisoners": {"_count": 1}}, "properly": {"_count": 1, "they": {"_count": 1}}, "your": {"_count": 1, "old": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 2, "owl": {"_count": 1}, "was": {"_count": 1}}, "awkward": {"_count": 1, "questions": {"_count": 1}}, "Harry": {"_count": 3, "didnt": {"_count": 1}, "could": {"_count": 1}, "it": {"_count": 1}}, "looked": {"_count": 2, "as": {"_count": 1}, "much": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "it": {"_count": 8, "had": {"_count": 1}, "seemed": {"_count": 1}, "drew": {"_count": 1}, "helps": {"_count": 1}, "annoyed": {"_count": 1}, "does": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}}, "Cornelius": {"_count": 1, "said": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "not": {"_count": 1}}, "obsessively": {"_count": 1, "in": {"_count": 1}}, "our": {"_count": 1, "letters": {"_count": 1}}, "gathering": {"_count": 1, "followers": {"_count": 1}}, "its": {"_count": 1, "something": {"_count": 1}}, "were": {"_count": 1, "disturbed": {"_count": 1}}, "giants": {"_count": 1, "like": {"_count": 1}}, "either": {"_count": 1, "Voldemort": {"_count": 1}}, "we": {"_count": 4, "were": {"_count": 1}, "have": {"_count": 1}, "hit": {"_count": 1}, "needed": {"_count": 1}}, "most": {"_count": 1, "Wizarding": {"_count": 1}}, "a": {"_count": 1, "frock": {"_count": 1}}, "within": {"_count": 1, "a": {"_count": 1}}, "youve": {"_count": 3, "forgotten": {"_count": 3}}, "then": {"_count": 1, "CRACK": {"_count": 1}}, "at": {"_count": 2, "Borgin": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "given": {"_count": 1, "that": {"_count": 1}}, "so": {"_count": 1, "tightly": {"_count": 1}}, "that": {"_count": 2, "she": {"_count": 1}, "Aberforth": {"_count": 1}}, "does": {"_count": 1, "it": {"_count": 1}}, "another": {"_count": 1, "subject": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Harry": {"_count": 1}}, "possibly": {"_count": 1, "unique": {"_count": 1}}, "gleaming": {"_count": 1, "in": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "suspicions": {"_count": 1}}, "where": {"_count": 2, "he": {"_count": 1}, "was": {"_count": 1}}, "was": {"_count": 2, "when": {"_count": 1}, "different": {"_count": 1}}, "well": {"_count": 1, "need": {"_count": 1}}, "Hagrid": {"_count": 1, "kept": {"_count": 1}}}, "scented": {"_count": 2, "danger": {"_count": 1, "too": {"_count": 1}}, "a": {"_count": 1, "rabbit": {"_count": 1}}}, "danger": {"_count": 84, "too": {"_count": 1, "because": {"_count": 1}}, "of": {"_count": 13, "being": {"_count": 3}, "er": {"_count": 1}, "disappearing": {"_count": 1}, "sudden": {"_count": 1}, "hearing": {"_count": 1}, "falling": {"_count": 1}, "losing": {"_count": 1}, "suffocation": {"_count": 1}, "using": {"_count": 1}, "catching": {"_count": 1}, "slipping": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 12}, "!": {"_count": 1}, "?": {"_count": 2}}, "you": {"_count": 3, "must": {"_count": 1}, "alone": {"_count": 1}, "are": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "any": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "has": {"_count": 1, "passed": {"_count": 1}}, "had": {"_count": 2, "passed": {"_count": 2}}, "to": {"_count": 6, "himself": {"_count": 2}, "anyone": {"_count": 1}, "people": {"_count": 1}, "him": {"_count": 1}, "others": {"_count": 1}}, "in": {"_count": 4, "your": {"_count": 1}, "attacking": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}}, "its": {"_count": 1, "what": {"_count": 1}}, "Frank": {"_count": 1, "knew": {"_count": 1}}, "than": {"_count": 2, "they": {"_count": 1}, "perhaps": {"_count": 1}}, "From": {"_count": 1, "external": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "ifzat": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "its": {"_count": 1}}, "sign": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "these": {"_count": 1}}, "lay": {"_count": 1, "at": {"_count": 1}}, "signs": {"_count": 1, "then": {"_count": 1}}, "point": {"_count": 1, "but": {"_count": 1}}, "now": {"_count": 3, "than": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 1, "determining": {"_count": 1}}, "she": {"_count": 1, "would": {"_count": 1}}, "the": {"_count": 1, "prophecy": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "here": {"_count": 1, "than": {"_count": 1}}, "while": {"_count": 1, "Im": {"_count": 1}}, "by": {"_count": 1, "going": {"_count": 1}}, "or": {"_count": 1, "personal": {"_count": 1}}, "then": {"_count": 1, "and": {"_count": 1}}, "Xenophiliuss": {"_count": 1, "attitude": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "long": {"_count": 1, "as": {"_count": 1}}, "are": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 1, "temporarily": {"_count": 1}}, "was": {"_count": 1, "trying": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "while": {"_count": 653, "were": {"_count": 5, "out": {"_count": 1}, "interrogating": {"_count": 1}, "on": {"_count": 1}, "flying": {"_count": 1}, "waiting": {"_count": 1}}, "Harry": {"_count": 29, "and": {"_count": 7}, "ducked": {"_count": 1}, "was": {"_count": 5}, "watched": {"_count": 2}, "walked": {"_count": 1}, "sat": {"_count": 1}, "drank": {"_count": 1}, "attached": {"_count": 1}, "spoke": {"_count": 2}, "looked": {"_count": 1}, "helped": {"_count": 1}, "Ron": {"_count": 1}, "continued": {"_count": 1}, "filled": {"_count": 1}, "roared": {"_count": 1}, "found": {"_count": 1}, "could": {"_count": 1}}, "Dudley": {"_count": 1, "hit": {"_count": 1}}, "he": {"_count": 45, "apologized": {"_count": 1}, "tried": {"_count": 3}, "was": {"_count": 12}, "stumped": {"_count": 1}, "lay": {"_count": 1}, "had": {"_count": 2}, "shouted": {"_count": 1}, "should": {"_count": 1}, "began": {"_count": 1}, "watched": {"_count": 1}, "said": {"_count": 1}, "would": {"_count": 1}, "heard": {"_count": 1}, "can": {"_count": 1}, "could": {"_count": 2}, "enters": {"_count": 1}, "buries": {"_count": 1}, "copied": {"_count": 1}, "while": {"_count": 1}, "went": {"_count": 2}, "travels": {"_count": 1}, "walked": {"_count": 1}, "sat": {"_count": 1}, "mourned": {"_count": 1}, "slunk": {"_count": 1}, "dug": {"_count": 1}, "patted": {"_count": 1}, "lives": {"_count": 2}}, "Piers": {"_count": 1, "was": {"_count": 1}}, "out": {"_count": 1, "shopping": {"_count": 1}}, "the": {"_count": 73, "teachers": {"_count": 1}, "giant": {"_count": 1}, "Weasley": {"_count": 1}, "other": {"_count": 12}, "Slytherins": {"_count": 1}, "Gryffindors": {"_count": 1}, "clouds": {"_count": 1}, "flameloving": {"_count": 1}, "rest": {"_count": 6}, "security": {"_count": 1}, "Slytherin": {"_count": 1}, "bush": {"_count": 1}, "common": {"_count": 1}, "golden": {"_count": 1}, "crowd": {"_count": 1}, "skrewts": {"_count": 1}, "Durmstrang": {"_count": 1}, "nifflers": {"_count": 1}, "Death": {"_count": 2}, "Portkey": {"_count": 1}, "Dursleys": {"_count": 2}, "same": {"_count": 1}, "previous": {"_count": 1}, "room": {"_count": 1}, "sky": {"_count": 2}, "Divination": {"_count": 1}, "man": {"_count": 1}, "babble": {"_count": 1}, "massive": {"_count": 1}, "only": {"_count": 1}, "grownups": {"_count": 1}, "boggart": {"_count": 1}, "pain": {"_count": 2}, "salt": {"_count": 1}, "birds": {"_count": 1}, "students": {"_count": 1}, "glass": {"_count": 1}, "others": {"_count": 3}, "librarian": {"_count": 1}, "terrible": {"_count": 1}, "tiniest": {"_count": 1}, "final": {"_count": 1}, "real": {"_count": 2}, "latter": {"_count": 1}, "contents": {"_count": 1}, "dials": {"_count": 1}, "pursuing": {"_count": 1}, "crashes": {"_count": 1}, "last": {"_count": 1}, "creature": {"_count": 1}}, "": {"_count": 31, ".": {"_count": 31}}, "Hagrid": {"_count": 5, "read": {"_count": 1}, "watched": {"_count": 1}, "started": {"_count": 1}, "let": {"_count": 1}, "sobbed": {"_count": 1}}, "they": {"_count": 30, "did": {"_count": 1}, "scribbled": {"_count": 1}, "tried": {"_count": 2}, "noticed": {"_count": 1}, "waited": {"_count": 2}, "are": {"_count": 3}, "took": {"_count": 2}, "were": {"_count": 4}, "played": {"_count": 1}, "both": {"_count": 2}, "emptied": {"_count": 1}, "scrubbed": {"_count": 1}, "remain": {"_count": 1}, "all": {"_count": 2}, "panted": {"_count": 1}, "copied": {"_count": 1}, "believe": {"_count": 1}, "contemplated": {"_count": 1}, "helped": {"_count": 1}, "watch": {"_count": 1}}, "a": {"_count": 10, "second": {"_count": 1}, "thousand": {"_count": 1}, "high": {"_count": 1}, "group": {"_count": 1}, "suit": {"_count": 1}, "motheaten": {"_count": 1}, "small": {"_count": 1}, "nasty": {"_count": 1}, "rather": {"_count": 1}, "little": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 2}}, "cats": {"_count": 1, "of": {"_count": 1}}, "we": {"_count": 12, "change": {"_count": 1}, "were": {"_count": 1}, "was": {"_count": 1}, "decide": {"_count": 1}, "are": {"_count": 3}, "force": {"_count": 1}, "torture": {"_count": 1}, "wait": {"_count": 1}, "here": {"_count": 1}, "can": {"_count": 1}}, "you": {"_count": 24, "are": {"_count": 4}, "may": {"_count": 1}, "work": {"_count": 1}, "listen": {"_count": 1}, "were": {"_count": 8}, "know": {"_count": 1}, "cant": {"_count": 1}, "get": {"_count": 1}, "two": {"_count": 1}, "stay": {"_count": 1}, "catch": {"_count": 1}, "three": {"_count": 1}, "search": {"_count": 1}, "lay": {"_count": 1}}, "any": {"_count": 1, "rule": {"_count": 1}}, "to": {"_count": 10, "decide": {"_count": 1}, "answer": {"_count": 1}, "get": {"_count": 1}, "stuff": {"_count": 1}, "the": {"_count": 1}, "calm": {"_count": 1}, "recover": {"_count": 1}, "persuade": {"_count": 1}, "wear": {"_count": 1}, "be": {"_count": 1}}, "but": {"_count": 4, "Snape": {"_count": 1}, "Im": {"_count": 1}, "after": {"_count": 1}, "eyed": {"_count": 1}}, "Neville": {"_count": 1, "who": {"_count": 1}}, "I": {"_count": 30, "take": {"_count": 2}, "was": {"_count": 10}, "write": {"_count": 1}, "go": {"_count": 3}, "have": {"_count": 2}, "am": {"_count": 1}, "went": {"_count": 1}, "give": {"_count": 2}, "nip": {"_count": 1}, "took": {"_count": 1}, "will": {"_count": 1}, "collect": {"_count": 1}, "must": {"_count": 1}, "keep": {"_count": 1}, "think": {"_count": 1}, "busied": {"_count": 1}}, "before": {"_count": 10, "any": {"_count": 1}, "he": {"_count": 3}, "the": {"_count": 1}, "going": {"_count": 1}, "facing": {"_count": 1}, "seeing": {"_count": 1}, "Harry": {"_count": 1}, "speaking": {"_count": 1}}, "Ron": {"_count": 27, "strode": {"_count": 1}, "coughed": {"_count": 1}, "helped": {"_count": 1}, "and": {"_count": 3}, "roared": {"_count": 1}, "sniggered": {"_count": 1}, "was": {"_count": 4}, "egged": {"_count": 1}, "sank": {"_count": 1}, "threw": {"_count": 1}, "Hermione": {"_count": 1}, "bustled": {"_count": 1}, "stared": {"_count": 1}, "tore": {"_count": 1}, "crawled": {"_count": 1}, "talked": {"_count": 1}, "watched": {"_count": 1}, "stood": {"_count": 1}, "gave": {"_count": 1}, "whispered": {"_count": 1}, "after": {"_count": 1}, "hopped": {"_count": 1}}, "if": {"_count": 2, "Flamel": {"_count": 1}, "we": {"_count": 1}}, "Im": {"_count": 8, "away": {"_count": 2}, "here": {"_count": 2}, "sat": {"_count": 1}, "sure": {"_count": 1}, "staying": {"_count": 1}, "searching": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "copying": {"_count": 1, "down": {"_count": 1}}, "everyone": {"_count": 7, "else": {"_count": 6}, "was": {"_count": 1}}, "its": {"_count": 5, "still": {"_count": 1}, "fellows": {"_count": 2}, "frail": {"_count": 1}, "alive": {"_count": 1}}, "Malfoy": {"_count": 1, "Neville": {"_count": 1}}, "safety": {"_count": 1, "lies": {"_count": 1}}, "and": {"_count": 3, "we": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "yelling": {"_count": 1, "themselves": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}, "weve": {"_count": 2, "got": {"_count": 1}, "still": {"_count": 1}}, "shes": {"_count": 3, "cleaning": {"_count": 1}, "here": {"_count": 1}, "holding": {"_count": 1}}, "youre": {"_count": 10, "eating": {"_count": 1}, "at": {"_count": 3}, "sucking": {"_count": 1}, "here": {"_count": 1}, "around": {"_count": 1}, "searching": {"_count": 1}, "packing": {"_count": 1}, "watching": {"_count": 1}}, "really": {"_count": 2, "he": {"_count": 1}, "peering": {"_count": 1}}, "later": {"_count": 7, "they": {"_count": 1}, "but": {"_count": 1}, "when": {"_count": 1}, "speaking": {"_count": 1}, "": {"_count": 2}, "perhaps": {"_count": 1}}, "hanging": {"_count": 1, "out": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "Peeves": {"_count": 1, "chuckled": {"_count": 1}}, "there": {"_count": 3, "was": {"_count": 2}, "were": {"_count": 1}}, "everyones": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}, "Percy": {"_count": 1}}, "Hermione": {"_count": 14, "folded": {"_count": 1}, "was": {"_count": 1}, "went": {"_count": 1}, "wasnt": {"_count": 1}, "looked": {"_count": 2}, "and": {"_count": 1}, "crossed": {"_count": 1}, "shot": {"_count": 1}, "even": {"_count": 1}, "sat": {"_count": 1}, "read": {"_count": 1}, "nodded": {"_count": 1}, "s": {"_count": 1}}, "thinking": {"_count": 3, "about": {"_count": 2}, "hard": {"_count": 1}}, "Slytherins": {"_count": 1, "in": {"_count": 1}}, "Dumbledore": {"_count": 6, "considered": {"_count": 1}, "s": {"_count": 3}, "worked": {"_count": 1}, "withdrew": {"_count": 1}}, "Lord": {"_count": 2, "Voldemorts": {"_count": 1}, "Voldemort": {"_count": 1}}, "enjoying": {"_count": 1, "a": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "Stan": {"_count": 1, "remembered": {"_count": 1}}, "Ernies": {"_count": 1, "owlish": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "duty": {"_count": 1}}, "it": {"_count": 5, "simmers": {"_count": 1}, "while": {"_count": 1}, "happens": {"_count": 1}, "seemed": {"_count": 1}, "was": {"_count": 1}}, "Snape": {"_count": 4, "prowled": {"_count": 1}, "had": {"_count": 1}, "faced": {"_count": 1}, "remained": {"_count": 1}}, "Lupin": {"_count": 1, "had": {"_count": 1}}, "Black": {"_count": 1, "was": {"_count": 1}}, "since": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "Hedwig": {"_count": 1, "helped": {"_count": 1}}, "touching": {"_count": 1, "nothing": {"_count": 1}}, "enticing": {"_count": 1, "wafts": {"_count": 1}}, "wishing": {"_count": 1, "he": {"_count": 1}}, "ignoring": {"_count": 1, "misleading": {"_count": 1}}, "at": {"_count": 4, "Black": {"_count": 1}, "least": {"_count": 1}, "Snape": {"_count": 1}, "school": {"_count": 1}}, "no": {"_count": 1, "news": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "his": {"_count": 11, "mother": {"_count": 1}, "magical": {"_count": 1}, "heart": {"_count": 2}, "scar": {"_count": 2}, "teacup": {"_count": 1}, "thick": {"_count": 1}, "soul": {"_count": 1}, "father": {"_count": 1}, "fellow": {"_count": 1}}, "sufficient": {"_count": 1, "to": {"_count": 1}}, "Mr": {"_count": 5, "Weasley": {"_count": 4}, "Crouch": {"_count": 1}}, "glittering": {"_count": 1, "purple": {"_count": 1}}, "Troy": {"_count": 1, "did": {"_count": 1}}, "Lynch": {"_count": 2, "was": {"_count": 2}}, "ago": {"_count": 2, "said": {"_count": 1}, "that": {"_count": 1}}, "Percy": {"_count": 1, "looked": {"_count": 1}}, "irresponsible": {"_count": 1, "did": {"_count": 1}}, "frowning": {"_count": 1, "down": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 15, "said": {"_count": 1}, "held": {"_count": 1}, "sat": {"_count": 1}, "examined": {"_count": 1}, "sleeps": {"_count": 1}, "worked": {"_count": 1}, "flapped": {"_count": 1}, "was": {"_count": 4}, "attempted": {"_count": 1}, "dodged": {"_count": 1}, "sobbed": {"_count": 1}, "waits": {"_count": 1}}, "Fleurs": {"_count": 1, "marks": {"_count": 1}}, "dodging": {"_count": 1, "the": {"_count": 1}}, "hes": {"_count": 2, "in": {"_count": 1}, "asleep": {"_count": 1}}, "watching": {"_count": 1, "Krum": {"_count": 1}}, "every": {"_count": 1, "one": {"_count": 1}}, "Dobby": {"_count": 1, "chatted": {"_count": 1}}, "turning": {"_count": 1, "the": {"_count": 1}}, "Myrtle": {"_count": 1, "sat": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "brandishing": {"_count": 1, "a": {"_count": 1}}, "waiting": {"_count": 1, "outside": {"_count": 1}}, "Mrs": {"_count": 6, "Weasley": {"_count": 6}}, "Cedric": {"_count": 1, "took": {"_count": 1}}, "awaiting": {"_count": 1, "the": {"_count": 1}}, "afterward": {"_count": 1, "in": {"_count": 1}}, "wearing": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "will": {"_count": 1, "make": {"_count": 1}}, "Fred": {"_count": 1, "nodded": {"_count": 1}}, "avoiding": {"_count": 1, "stepping": {"_count": 1}}, "rummaging": {"_count": 1, "in": {"_count": 1}}, "Rons": {"_count": 2, "tiny": {"_count": 1}, "snorts": {"_count": 1}}, "youve": {"_count": 1, "been": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "Fudge": {"_count": 2, "snorted": {"_count": 1}, "gesticulated": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 3}}, "gloating": {"_count": 1, "over": {"_count": 1}}, "giving": {"_count": 1, "Ron": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "many": {"_count": 1}}, "others": {"_count": 1, "will": {"_count": 1}}, "having": {"_count": 1, "to": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "gazing": {"_count": 1, "into": {"_count": 1}}, "Professor": {"_count": 3, "Umbridge": {"_count": 1}, "McGonagall": {"_count": 2}}, "concealing": {"_count": 1, "Hedwig": {"_count": 1}}, "Justin": {"_count": 1, "FinchFletchley": {"_count": 1}}, "Fang": {"_count": 1, "danced": {"_count": 1}}, "when": {"_count": 2, "Harry": {"_count": 1}, "you": {"_count": 1}}, "then": {"_count": 2, "swapped": {"_count": 1}, "decided": {"_count": 1}}, "someones": {"_count": 1, "kissing": {"_count": 1}}, "feeling": {"_count": 1, "harddoneby": {"_count": 1}}, "dropped": {"_count": 1, "back": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 2}}, "kissing": {"_count": 1, "couples": {"_count": 1}}, "her": {"_count": 2, "finger": {"_count": 1}, "brother": {"_count": 1}}, "Dean": {"_count": 3, "Seamus": {"_count": 1}, "checked": {"_count": 1}, "and": {"_count": 1}}, "withdrawing": {"_count": 1, "a": {"_count": 1}}, "teachers": {"_count": 1, "were": {"_count": 1}}, "straining": {"_count": 1, "his": {"_count": 1}}, "Crookshanks": {"_count": 1, "pawed": {"_count": 1}}, "evryones": {"_count": 1, "lookin": {"_count": 1}}, "still": {"_count": 1, "keeping": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "that": {"_count": 3, "some": {"_count": 1}, "fragment": {"_count": 1}, "enchantment": {"_count": 1}}, "making": {"_count": 2, "potions": {"_count": 1}, "pointed": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "tugging": {"_count": 1, "at": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "staying": {"_count": 1, "with": {"_count": 1}}, "theyre": {"_count": 2, "warm": {"_count": 1}, "here": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 1}, "been": {"_count": 1}}, "Merope": {"_count": 1, "spluttered": {"_count": 1}}, "about": {"_count": 2, "Zacharias": {"_count": 1}, "the": {"_count": 1}}, "people": {"_count": 1, "get": {"_count": 1}}, "within": {"_count": 1, "their": {"_count": 1}}, "both": {"_count": 1, "Hufflepuffs": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "your": {"_count": 2, "best": {"_count": 1}, "mothers": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "Slughorn": {"_count": 1, "continued": {"_count": 1}}, "reading": {"_count": 1, "and": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "Chief": {"_count": 1, "Warlock": {"_count": 1}}, "Fleur": {"_count": 1, "had": {"_count": 1}}, "glancing": {"_count": 1, "repeatedly": {"_count": 1}}, "precious": {"_count": 1, "gems": {"_count": 1}}, "Ariana": {"_count": 1, "was": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "Voldemort": {"_count": 1, "sought": {"_count": 1}}, "knives": {"_count": 1, "scraped": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "finally": {"_count": 1, "extracting": {"_count": 1}}, "underneath": {"_count": 1, "the": {"_count": 1}}, "magically": {"_count": 1, "covering": {"_count": 1}}, "RiddleHermione": {"_count": 1, "jeered": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "agitating": {"_count": 1, "thoughts": {"_count": 1}}, "Greyback": {"_count": 2, "forced": {"_count": 1}, "takes": {"_count": 1}}, "countless": {"_count": 1, "Hufflepuff": {"_count": 1}}, "ahead": {"_count": 1, "the": {"_count": 1}}, "Potter": {"_count": 1, "does": {"_count": 1}}, "their": {"_count": 1, "fellows": {"_count": 1}}, "older": {"_count": 1, "ones": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "tears": {"_count": 1, "cascaded": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "withholding": {"_count": 1, "the": {"_count": 1}}, "Grawp": {"_count": 1, "punched": {"_count": 1}}, "exhausted": {"_count": 1, "and": {"_count": 1}}}, "Hows": {"_count": 24, "that": {"_count": 2, "popkin": {"_count": 1}, "going": {"_count": 1}}, "yer": {"_count": 1, "brother": {"_count": 1}}, "your": {"_count": 2, "arm": {"_count": 1}, "head": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "going": {"_count": 1}}, "Scabbers": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "doing": {"_count": 1}, "going": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "freedom": {"_count": 1, "suiting": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "going": {"_count": 1}}, "old": {"_count": 1, "Barty": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "nose": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "Bill": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "Norbert": {"_count": 1, "doin": {"_count": 1}}, "Gregorovitch": {"_count": 1, "supposed": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}}, "popkin": {"_count": 3, "": {"_count": 3, "?": {"_count": 3}}}, "Two": {"_count": 114, "more": {"_count": 4, "presents": {"_count": 1}, "this": {"_count": 1}, "for": {"_count": 1}, "horses": {"_count": 1}}, "Thousand": {"_count": 31, "fastest": {"_count": 1}, "or": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 7}, "sir": {"_count": 1}, "at": {"_count": 1}, "written": {"_count": 1}, "turned": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 9}, "broomstick": {"_count": 1}, "which": {"_count": 1}, "last": {"_count": 1}, "on": {"_count": 1}, "series": {"_count": 1}, "racing": {"_count": 1}, "he": {"_count": 1}}, "hours": {"_count": 1, "later": {"_count": 1}}, "Sixty": {"_count": 4, "": {"_count": 1}, "which": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}}, "Thousands": {"_count": 1, "did": {"_count": 1}}, "enormous": {"_count": 2, "feet": {"_count": 1}, "green": {"_count": 1}}, "of": {"_count": 8, "us": {"_count": 1}, "them": {"_count": 2}, "you": {"_count": 1}, "the": {"_count": 2}, "those": {"_count": 1}, "spades": {"_count": 1}}, "among": {"_count": 1, "our": {"_count": 1}}, "seconds": {"_count": 3, "later": {"_count": 2}, "ringing": {"_count": 1}}, "shab": {"_count": 1, "bylooking": {"_count": 1}}, "Muggles": {"_count": 1, "in": {"_count": 1}}, "solitary": {"_count": 1, "spiders": {"_count": 1}}, "large": {"_count": 3, "trunks": {"_count": 2}, "cages": {"_count": 1}}, "pieces": {"_count": 1, "of": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "years": {"_count": 3, "at": {"_count": 1}, "ago": {"_count": 1}, "sniffed": {"_count": 1}}, "weeks": {"_count": 1, "before": {"_count": 1}}, "days": {"_count": 2, "after": {"_count": 1}, "ago": {"_count": 1}}, "oclock": {"_count": 1, "isnt": {"_count": 1}}, "whole": {"_count": 1, "months": {"_count": 1}}, "hundred": {"_count": 1, "miles": {"_count": 1}}, "tall": {"_count": 1, "figures": {"_count": 1}}, "penalties": {"_count": 1, "for": {"_count": 1}}, "black": {"_count": 1, "eyes": {"_count": 1}}, "Hogwarts": {"_count": 1, "champions": {"_count": 1}}, "fat": {"_count": 1, "tears": {"_count": 1}}, "desks": {"_count": 1, "had": {"_count": 1}}, "Ninetys": {"_count": 1, "only": {"_count": 1}}, "things": {"_count": 1, "sustained": {"_count": 1}}, "figures": {"_count": 5, "shrouded": {"_count": 1}, "pearly": {"_count": 1}, "had": {"_count": 1}, "rose": {"_count": 1}, "emerged": {"_count": 1}}, "fourthyear": {"_count": 1, "girls": {"_count": 1}}, "stone": {"_count": 1, "gargoyles": {"_count": 1}}, "onto": {"_count": 1, "one": {"_count": 1}}, "beds": {"_count": 1, "along": {"_count": 1}}, "Galleons": {"_count": 1, "each": {"_count": 1}}, "coffees": {"_count": 1, "please": {"_count": 1}}, "Hes": {"_count": 1, "wearing": {"_count": 1}}, "friends": {"_count": 1, "fer": {"_count": 1}}, "floors": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "tablespoonfuls": {"_count": 1, "taken": {"_count": 1}}, "perfect": {"_count": 1, "days": {"_count": 1}}, "doors": {"_count": 1, "led": {"_count": 1}}, "pink": {"_count": 1, "spots": {"_count": 1}}, "minutes": {"_count": 1, "left": {"_count": 1}}, "houseelves": {"_count": 1, "were": {"_count": 1}}, "or": {"_count": 1, "three": {"_count": 1}}, "young": {"_count": 1, "children": {"_count": 1}}, "dementors": {"_count": 1, "appeared": {"_count": 1}}, "aged": {"_count": 1, "crab": {"_count": 1}}, "objects": {"_count": 1, "that": {"_count": 1}}, "goblins": {"_count": 1, "stood": {"_count": 1}}, "masked": {"_count": 1, "Death": {"_count": 1}}, "bodies": {"_count": 1, "fell": {"_count": 1}}, "girls": {"_count": 1, "were": {"_count": 1}}, "children": {"_count": 1, "sat": {"_count": 1}}, "giants": {"_count": 1, "sat": {"_count": 1}}, "clever": {"_count": 1, "arrogant": {"_count": 1}}, "months": {"_count": 1, "of": {"_count": 1}}}, "Finally": {"_count": 49, "he": {"_count": 15, "said": {"_count": 4}, "had": {"_count": 1}, "gave": {"_count": 1}, "settled": {"_count": 1}, "straightened": {"_count": 1}, "found": {"_count": 1}, "raised": {"_count": 1}, "slammed": {"_count": 1}, "decided": {"_count": 1}, "was": {"_count": 1}, "got": {"_count": 1}, "pointed": {"_count": 1}}, "as": {"_count": 1, "nobody": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "Harry": {"_count": 3, "was": {"_count": 1}, "tried": {"_count": 1}, "spoke": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "Hermione": {"_count": 3, "drew": {"_count": 1}, "climbed": {"_count": 1}, "asked": {"_count": 1}}, "they": {"_count": 1, "saw": {"_count": 1}}, "after": {"_count": 2, "about": {"_count": 1}, "painstaking": {"_count": 1}}, "in": {"_count": 2, "our": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 2, "managed": {"_count": 1}, "wish": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "Sirius": {"_count": 1, "looked": {"_count": 1}}, "Zeller": {"_count": 1, "Rose": {"_count": 1}}, "the": {"_count": 4, "train": {"_count": 1}, "only": {"_count": 1}, "second": {"_count": 1}, "truth": {"_count": 1}}, "Scrimgeour": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 1, "hollow": {"_count": 1}}, "his": {"_count": 1, "large": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "succeeding": {"_count": 1, "in": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "having": {"_count": 1, "entirely": {"_count": 1}}, "we": {"_count": 1, "regret": {"_count": 1}}, "Bill": {"_count": 1, "said": {"_count": 1}}}, "thirty": {"_count": 25, "": {"_count": 3, ".": {"_count": 3}}, "or": {"_count": 1, "forty": {"_count": 1}}, "seconds": {"_count": 3, "for": {"_count": 1}, "longer": {"_count": 1}, "reminiscence": {"_count": 1}}, "minutes": {"_count": 1, "start": {"_count": 1}}, "musical": {"_count": 2, "saws": {"_count": 2}}, "three": {"_count": 1, "bones": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "forty": {"_count": 1, "fifty": {"_count": 1}}, "points": {"_count": 3, "to": {"_count": 2}, "in": {"_count": 1}}, "years": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "seven": {"_count": 1, "items": {"_count": 1}}, "wizards": {"_count": 1, "seven": {"_count": 1}}, "to": {"_count": 1, "one": {"_count": 1}}, "eagerly": {"_count": 1, "listening": {"_count": 1}}, "four": {"_count": 1, "NonRetaliation": {"_count": 1}}, "hooded": {"_count": 1, "figures": {"_count": 1}}, "first": {"_count": 1, "said": {"_count": 1}}}, "Thirtynine": {"_count": 2, "sweetums": {"_count": 1, "said": {"_count": 1}}, "years": {"_count": 1, "this": {"_count": 1}}}, "sweetums": {"_count": 2, "said": {"_count": 2, "Aunt": {"_count": 2}}}, "grabbed": {"_count": 91, "the": {"_count": 19, "nearest": {"_count": 1}, "binoculars": {"_count": 1}, "back": {"_count": 2}, "point": {"_count": 1}, "top": {"_count": 1}, "diary": {"_count": 1}, "pillowcase": {"_count": 1}, "struggling": {"_count": 1}, "cloak": {"_count": 2}, "gillyweed": {"_count": 1}, "neck": {"_count": 1}, "sugar": {"_count": 1}, "scruff": {"_count": 1}, "ends": {"_count": 1}, "Death": {"_count": 1}, "other": {"_count": 1}, "Stunned": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "him": {"_count": 4, "and": {"_count": 3}, "as": {"_count": 1}}, "his": {"_count": 8, "broom": {"_count": 1}, "arm": {"_count": 2}, "shoulder": {"_count": 1}, "bag": {"_count": 1}, "throat": {"_count": 1}, "wand": {"_count": 2}}, "Ron": {"_count": 3, "around": {"_count": 1}, "firmly": {"_count": 1}, "and": {"_count": 1}}, "Harrys": {"_count": 9, "wand": {"_count": 1}, "water": {"_count": 1}, "arm": {"_count": 5}, "forearm": {"_count": 1}, "hand": {"_count": 1}}, "Rons": {"_count": 2, "arm": {"_count": 2}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "and": {"_count": 1, "snatched": {"_count": 1}}, "Quirrells": {"_count": 1, "face": {"_count": 1}}, "a": {"_count": 6, "copy": {"_count": 1}, "quill": {"_count": 1}, "mug": {"_count": 1}, "fresh": {"_count": 1}, "woman": {"_count": 1}, "hank": {"_count": 1}}, "ink": {"_count": 1, "bottles": {"_count": 1}}, "bags": {"_count": 1, "and": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "Ginnys": {"_count": 2, "shoulders": {"_count": 1}, "foot": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "Errols": {"_count": 1, "package": {"_count": 1}}, "both": {"_count": 1, "Harry": {"_count": 1}}, "Crookshanks": {"_count": 1, "around": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 2, "head": {"_count": 1}, "real": {"_count": 1}}, "hold": {"_count": 3, "of": {"_count": 3}}, "it": {"_count": 2, "Snaped": {"_count": 1}, "": {"_count": 1}}, "Hermione": {"_count": 6, "around": {"_count": 2}, "s": {"_count": 2}, "and": {"_count": 2}}, "me": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Krums": {"_count": 1, "arm": {"_count": 1}}, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Luna": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 3, "around": {"_count": 1}, "by": {"_count": 2}}, "Katies": {"_count": 1, "legs": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermole": {"_count": 1}}, "my": {"_count": 1, "stuff": {"_count": 1}}, "two": {"_count": 1, "jugs": {"_count": 1}}}, "parcel": {"_count": 31, "": {"_count": 9, ".": {"_count": 9}}, "and": {"_count": 3, "was": {"_count": 1}, "then": {"_count": 1}, "looked": {"_count": 1}}, "contained": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 3, "find": {"_count": 1}, "the": {"_count": 1}, "reveal": {"_count": 1}}, "Hedwig": {"_count": 1, "had": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "only": {"_count": 1, "halfattached": {"_count": 1}}, "onto": {"_count": 1, "her": {"_count": 1}}, "which": {"_count": 1, "tore": {"_count": 1}}, "outside": {"_count": 1, "Hogwarts": {"_count": 1}}, "suspiciously": {"_count": 1, "": {"_count": 1}}, "cautiously": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 1, "fury": {"_count": 1}}}, "wants": {"_count": 144, "his": {"_count": 3, "moneys": {"_count": 1}, "servant": {"_count": 1}, "new": {"_count": 1}}, "to": {"_count": 58, "talk": {"_count": 1}, "keep": {"_count": 4}, "be": {"_count": 6}, "give": {"_count": 2}, "upset": {"_count": 2}, "save": {"_count": 1}, "read": {"_count": 2}, "kill": {"_count": 4}, "strip": {"_count": 1}, "hear": {"_count": 1}, "with": {"_count": 1}, "enter": {"_count": 1}, "make": {"_count": 3}, "wear": {"_count": 1}, "invite": {"_count": 1}, "": {"_count": 1}, "investigate": {"_count": 1}, "go": {"_count": 1}, "see": {"_count": 3}, "warn": {"_count": 2}, "speak": {"_count": 1}, "use": {"_count": 1}, "build": {"_count": 1}, "Hermione": {"_count": 1}, "attack": {"_count": 1}, "learn": {"_count": 1}, "thank": {"_count": 1}, "stop": {"_count": 1}, "do": {"_count": 1}, "reserve": {"_count": 1}, "snog": {"_count": 1}, "create": {"_count": 1}, "check": {"_count": 1}, "marry": {"_count": 1}, "come": {"_count": 1}, "help": {"_count": 2}, "so": {"_count": 1}, "ear": {"_count": 1}}, "ter": {"_count": 4, "go": {"_count": 2}, "ter": {"_count": 1}, "but": {"_count": 1}}, "payin": {"_count": 1, "fer": {"_count": 1}}, "the": {"_count": 2, "Stone": {"_count": 1}, "job": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "it": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}}, "you": {"_count": 8, "to": {"_count": 3}, "dead": {"_count": 1}, "taught": {"_count": 1}, "Ron": {"_count": 1}, "said": {"_count": 1}, "too": {"_count": 1}}, "Harry": {"_count": 2, "dead": {"_count": 1}, "Remus": {"_count": 1}}, "a": {"_count": 10, "go": {"_count": 2}, "word": {"_count": 3}, "new": {"_count": 1}, "foot": {"_count": 1}, "thorough": {"_count": 1}, "full": {"_count": 1}, "kip": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "Gryffindor": {"_count": 1, "to": {"_count": 1}}, "probably": {"_count": 1, "washing": {"_count": 1}}, "us": {"_count": 3, "to": {"_count": 3}}, "them": {"_count": 2, "to": {"_count": 2}}, "me": {"_count": 12, "to": {"_count": 9}, "there": {"_count": 1}, "looked": {"_count": 1}, "quite": {"_count": 1}}, "him": {"_count": 7, "he": {"_count": 1}, "to": {"_count": 2}, "out": {"_count": 1}, "": {"_count": 1}, "alive": {"_count": 1}, "dead": {"_count": 1}}, "paying": {"_count": 3, "now": {"_count": 1}, "miss": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "many": {"_count": 1}}, "Percy": {"_count": 1, "in": {"_count": 1}}, "nothing": {"_count": 1, "more": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 4, "done": {"_count": 1}, "from": {"_count": 1}, "mended": {"_count": 1}, "fixing": {"_count": 1}}, "from": {"_count": 1, "in": {"_count": 1}}, "new": {"_count": 1, "dress": {"_count": 1}}, "both": {"_count": 1, "": {"_count": 1}}, "eggnog": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Kreacher": {"_count": 1}}, "company": {"_count": 1, "while": {"_count": 1}}, "Potter": {"_count": 1, "dead": {"_count": 1}}, "Potters": {"_count": 1, "life": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "who": {"_count": 1, "cares": {"_count": 1}}, "what": {"_count": 1, "hes": {"_count": 1}}}, "moneys": {"_count": 1, "worth": {"_count": 1, "just": {"_count": 1}}}, "worth": {"_count": 80, "just": {"_count": 1, "like": {"_count": 1}}, "being": {"_count": 2, "with": {"_count": 1}, "or": {"_count": 1}}, "ter": {"_count": 2, "tell": {"_count": 2}}, "knowing": {"_count": 2, "Bring": {"_count": 1}, "how": {"_count": 1}}, "two": {"_count": 1, "locked": {"_count": 1}}, "a": {"_count": 5, "try": {"_count": 1}, "visit": {"_count": 1}, "hundred": {"_count": 1}, "damn": {"_count": 1}, "trip": {"_count": 1}}, "twelve": {"_count": 2, "of": {"_count": 2}}, "the": {"_count": 6, "risk": {"_count": 2}, "front": {"_count": 1}, "trouble": {"_count": 1}, "effort": {"_count": 1}, "same": {"_count": 1}}, "learning": {"_count": 1, "even": {"_count": 1}}, "listenin": {"_count": 1, "ter": {"_count": 1}}, "more": {"_count": 3, "than": {"_count": 3}}, "five": {"_count": 1, "points": {"_count": 1}}, "it": {"_count": 7, "": {"_count": 2}, "said": {"_count": 1}, "though": {"_count": 1}, "cant": {"_count": 1}, "wont": {"_count": 1}, "all": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 2}}, "that": {"_count": 1, "": {"_count": 1}}, "dying": {"_count": 2, "for": {"_count": 2}}, "one": {"_count": 1, "hundred": {"_count": 1}}, "putting": {"_count": 1, "an": {"_count": 1}}, "of": {"_count": 9, "presents": {"_count": 1}, "headlines": {"_count": 1}, "detentions": {"_count": 3}, "detention": {"_count": 1}, "lessons": {"_count": 1}, "meetings": {"_count": 1}, "magical": {"_count": 1}}, "watching": {"_count": 1, "said": {"_count": 1}}, "his": {"_count": 1, "notice": {"_count": 1}}, "with": {"_count": 1, "Hermione": {"_count": 1}}, "seem": {"_count": 1, "trust": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "hoping": {"_count": 1}}, "botherin": {"_count": 1, "with": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "becoming": {"_count": 1, "a": {"_count": 1}}, "chancing": {"_count": 1, "it": {"_count": 1}}, "hearing": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "set": {"_count": 1}}, "trying": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "living": {"_count": 1, "visits": {"_count": 1}}, "staying": {"_count": 1, "for": {"_count": 1}}, "telling": {"_count": 2, "these": {"_count": 1}, "him": {"_count": 1}}, "overhearing": {"_count": 1, "": {"_count": 1}}, "investigating": {"_count": 1, "": {"_count": 1}}, "memorizing": {"_count": 1, "as": {"_count": 1}}, "bringing": {"_count": 1, "Luna": {"_count": 1}}, "me": {"_count": 1, "taking": {"_count": 1}}, "eating": {"_count": 1, "and": {"_count": 1}}, "saving": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "still": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Atta": {"_count": 1, "boy": {"_count": 1, "Dudley": {"_count": 1}}}, "rang": {"_count": 76, "and": {"_count": 9, "Aunt": {"_count": 1}, "Uncle": {"_count": 1}, "there": {"_count": 2}, "Lockhart": {"_count": 1}, "Mrs": {"_count": 1}, "the": {"_count": 1}, "both": {"_count": 2}}, "Oh": {"_count": 1, "good": {"_count": 1}}, "at": {"_count": 5, "six": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "last": {"_count": 1}}, "somewhere": {"_count": 1, "in": {"_count": 1}}, "out": {"_count": 11, "saying": {"_count": 1}, "There": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 2}, "behind": {"_count": 1}, "a": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 1}, "sharp": {"_count": 1}, "beyond": {"_count": 1}}, "across": {"_count": 4, "the": {"_count": 4}}, "a": {"_count": 1, "bell": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "five": {"_count": 2, "minutes": {"_count": 2}}, "through": {"_count": 3, "the": {"_count": 3}}, "with": {"_count": 4, "it": {"_count": 1}, "applause": {"_count": 1}, "laughter": {"_count": 1}, "the": {"_count": 1}}, "everyone": {"_count": 1, "gathered": {"_count": 1}}, "in": {"_count": 2, "Harrys": {"_count": 2}}, "the": {"_count": 2, "doorbell": {"_count": 1}, "bell": {"_count": 1}}, "to": {"_count": 1, "signal": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}, "early": {"_count": 1, "Harry": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 2, "grabbed": {"_count": 1}, "hurried": {"_count": 1}}, "they": {"_count": 1, "hurried": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "several": {"_count": 1, "times": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 2}, "break": {"_count": 1}}, "she": {"_count": 1, "descended": {"_count": 1}}, "just": {"_count": 2, "as": {"_count": 1}, "outside": {"_count": 1}}, "right": {"_count": 1, "outside": {"_count": 1}}, "like": {"_count": 1, "bells": {"_count": 1}}, "clearly": {"_count": 1, "through": {"_count": 1}}, "overhead": {"_count": 1, "in": {"_count": 1}}}, "unwrap": {"_count": 6, "the": {"_count": 3, "racing": {"_count": 1}, "broomstick": {"_count": 1}, "Nimbus": {"_count": 1}}, "his": {"_count": 2, "turban": {"_count": 1}, "pile": {"_count": 1}}, "it": {"_count": 1, "properly": {"_count": 1}}}, "video": {"_count": 4, "camera": {"_count": 3, "a": {"_count": 1}, "crashed": {"_count": 1}, "was": {"_count": 1}}, "recorder": {"_count": 1, "": {"_count": 1}}}, "camera": {"_count": 20, "a": {"_count": 1, "remote": {"_count": 1}}, "crashed": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "lying": {"_count": 1}}, "that": {"_count": 2, "emitted": {"_count": 1}, "was": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "took": {"_count": 1}, "did": {"_count": 1}}, "hopefully": {"_count": 1, "": {"_count": 1}}, "swinging": {"_count": 1, "madly": {"_count": 1}}, "raised": {"_count": 1, "taking": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "out": {"_count": 1, "of": {"_count": 1}}, "jumped": {"_count": 1, "up": {"_count": 1}}}, "remote": {"_count": 5, "control": {"_count": 2, "airplane": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 2, "ever": {"_count": 1}, "stars": {"_count": 1}}}, "control": {"_count": 92, "airplane": {"_count": 2, "sixteen": {"_count": 1}, "and": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "him": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 15}, "!": {"_count": 2}}, "of": {"_count": 10, "his": {"_count": 2}, "the": {"_count": 4}, "himself": {"_count": 2}, "goblin": {"_count": 1}, "my": {"_count": 1}}, "that": {"_count": 3, "owl": {"_count": 1}, "particular": {"_count": 1}, "flowed": {"_count": 1}}, "himself": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "shifted": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Moody": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 3, "made": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "completely": {"_count": 1, "seized": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "last": {"_count": 1}}, "you": {"_count": 1, "completely": {"_count": 1}}, "them": {"_count": 3, "pulling": {"_count": 1}, "": {"_count": 1}, "although": {"_count": 1}}, "the": {"_count": 3, "situation": {"_count": 1}, "Prime": {"_count": 1}, "cart": {"_count": 1}}, "people": {"_count": 1, "so": {"_count": 1}}, "like": {"_count": 2, "this": {"_count": 2}}, "his": {"_count": 2, "temper": {"_count": 1}, "own": {"_count": 1}}, "There": {"_count": 1, "are": {"_count": 1}}, "their": {"_count": 3, "emotions": {"_count": 2}, "speed": {"_count": 1}}, "over": {"_count": 5, "my": {"_count": 1}, "James": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "what": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "before": {"_count": 3, "sinking": {"_count": 1}, "he": {"_count": 2}}, "now": {"_count": 1, "": {"_count": 1}}, "Mundungus": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "crying": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 3}, "no": {"_count": 1}, "and": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "knowing": {"_count": 1, "by": {"_count": 1}}, "to": {"_count": 1, "subjugate": {"_count": 1}}, "Green": {"_count": 1, "jets": {"_count": 1}}, "thats": {"_count": 1, "how": {"_count": 1}}, "they": {"_count": 1, "seemed": {"_count": 1}}, "what": {"_count": 1, "you": {"_count": 1}}, "FOR": {"_count": 1, "THE": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}}, "airplane": {"_count": 5, "sixteen": {"_count": 1, "new": {"_count": 1}}, "and": {"_count": 2, "first": {"_count": 1}, "Harry": {"_count": 1}}, "with": {"_count": 1, "one": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}}, "sixteen": {"_count": 35, "new": {"_count": 1, "computer": {"_count": 1}}, "Sickles": {"_count": 1, "an": {"_count": 1}}, "inches": {"_count": 1, "rather": {"_count": 1}}, "entered": {"_count": 1, "taking": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "he": {"_count": 1, "breathed": {"_count": 1}}, "who": {"_count": 1, "began": {"_count": 1}}, "for": {"_count": 1, "your": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "years": {"_count": 14, "": {"_count": 2}, "devoted": {"_count": 1}, "previously": {"_count": 1}, "ago": {"_count": 2}, "of": {"_count": 1}, "old": {"_count": 3}, "solid": {"_count": 1}, "that": {"_count": 1}, "since": {"_count": 1}, "worth": {"_count": 1}}, "around": {"_count": 1, "Harrys": {"_count": 1}}, "foot": {"_count": 1, "Oh": {"_count": 1}}, "feet": {"_count": 2, "tall": {"_count": 2}}, "minutes": {"_count": 1, "left": {"_count": 1}}, "and": {"_count": 2, "has": {"_count": 1}, "he": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "yearolds": {"_count": 1, "": {"_count": 1}}, "Ivor": {"_count": 1, "Dillonsby": {"_count": 1}}}, "games": {"_count": 13, "and": {"_count": 1, "a": {"_count": 1}}, "hed": {"_count": 1, "been": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "Exploding": {"_count": 2}}, "quickly": {"_count": 1, "but": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "class": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "us": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "VCR": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "computer": {"_count": 1}}}, "ripping": {"_count": 20, "the": {"_count": 3, "paper": {"_count": 2}, "note": {"_count": 1}}, "noises": {"_count": 1, "that": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "noise": {"_count": 3, "his": {"_count": 1}, "rent": {"_count": 1}, "and": {"_count": 1}}, "a": {"_count": 1, "lifesize": {"_count": 1}}, "at": {"_count": 1, "each": {"_count": 1}}, "paper": {"_count": 1, "came": {"_count": 1}}, "his": {"_count": 1, "robes": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "open": {"_count": 3, "the": {"_count": 2}, "envelopes": {"_count": 1}}, "up": {"_count": 2, "twentyfoot": {"_count": 1}, "trees": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "smashing": {"_count": 1, "or": {"_count": 1}}}, "paper": {"_count": 121, "off": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 21}, "!": {"_count": 1}}, "he": {"_count": 2, "hadnt": {"_count": 1}, "had": {"_count": 1}}, "lying": {"_count": 2, "on": {"_count": 1}, "next": {"_count": 1}}, "still": {"_count": 1, "muttering": {"_count": 1}}, "that": {"_count": 3, "was": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "and": {"_count": 16, "scrawled": {"_count": 1}, "read": {"_count": 1}, "discovered": {"_count": 1}, "saw": {"_count": 1}, "glimpsed": {"_count": 1}, "Harry": {"_count": 1}, "back": {"_count": 1}, "wrote": {"_count": 1}, "disappeared": {"_count": 1}, "looking": {"_count": 1}, "apparently": {"_count": 1}, "began": {"_count": 1}, "I": {"_count": 1}, "stared": {"_count": 1}, "examined": {"_count": 1}, "rubble": {"_count": 1}}, "hats": {"_count": 1, "inside": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "with": {"_count": 4, "me": {"_count": 1}, "a": {"_count": 2}, "all": {"_count": 1}}, "right": {"_count": 1, "down": {"_count": 1}}, "over": {"_count": 2, "full": {"_count": 1}, "and": {"_count": 1}}, "clutched": {"_count": 1, "tightly": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "was": {"_count": 2, "scrunched": {"_count": 1}, "a": {"_count": 1}}, "came": {"_count": 2, "free": {"_count": 1}, "from": {"_count": 1}}, "fell": {"_count": 1, "out": {"_count": 1}}, "at": {"_count": 4, "once": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}, "random": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 3}, "a": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "away": {"_count": 1, "reluctantly": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 2, "want": {"_count": 1}, "think": {"_count": 1}}, "to": {"_count": 2, "Percy": {"_count": 1}, "mop": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "glanced": {"_count": 1, "at": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "finally": {"_count": 1, "realized": {"_count": 1}}, "airplanes": {"_count": 2, "swooped": {"_count": 1}, "that": {"_count": 1}}, "bag": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "so": {"_count": 1, "violently": {"_count": 1}}, "bags": {"_count": 1, "crammed": {"_count": 1}}, "your": {"_count": 1, "bedroom": {"_count": 1}}, "loads": {"_count": 1, "over": {"_count": 1}}, "said": {"_count": 1, "Luna": {"_count": 1}}, "umbrella": {"_count": 1, "sticking": {"_count": 1}}, "DEFENSE": {"_count": 1, "AGAINST": {"_count": 1}}, "scuffing": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "from": {"_count": 2, "Mrs": {"_count": 1}, "the": {"_count": 1}}, "airplane": {"_count": 2, "with": {"_count": 1}, "at": {"_count": 1}}, "shop": {"_count": 1, "who": {"_count": 1}}, "Harry": {"_count": 1, "got": {"_count": 1}}, "about": {"_count": 1, "an": {"_count": 1}}, "books": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "flying": {"_count": 1}}, "squares": {"_count": 1, "were": {"_count": 1}}, "clips": {"_count": 1, "that": {"_count": 1}}, "spiders": {"_count": 1, "all": {"_count": 1}}, "on": {"_count": 2, "transspecies": {"_count": 1}, "the": {"_count": 1}}, "white": {"_count": 1, "face": {"_count": 1}}}, "gold": {"_count": 236, "wristwatch": {"_count": 1, "when": {"_count": 1}}, "in": {"_count": 10, "the": {"_count": 7}, "Gringotts": {"_count": 1}, "his": {"_count": 2}}, "buried": {"_count": 1, "miles": {"_count": 1}}, "was": {"_count": 4, "Yeah": {"_count": 1}, "glinting": {"_count": 1}, "shimmering": {"_count": 1}, "squandered": {"_count": 1}}, "coins": {"_count": 5, "": {"_count": 2}, "the": {"_count": 1}, "rained": {"_count": 1}, "into": {"_count": 1}}, "ones": {"_count": 1, "are": {"_count": 1}}, "cauldron": {"_count": 1, "either": {"_count": 1}}, "letters": {"_count": 4, "over": {"_count": 1}, "spelled": {"_count": 1}, "were": {"_count": 2}}, "sparks": {"_count": 4, "shot": {"_count": 3}, "": {"_count": 1}}, "Galleons": {"_count": 2, "for": {"_count": 1}, "silver": {"_count": 1}}, "badge": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 22, "silver": {"_count": 4}, "had": {"_count": 1}, "stops": {"_count": 1}, "get": {"_count": 1}, "scarlet": {"_count": 1}, "his": {"_count": 1}, "noticing": {"_count": 1}, "that": {"_count": 1}, "when": {"_count": 1}, "didnt": {"_count": 1}, "gold": {"_count": 1}, "snaked": {"_count": 1}, "theyll": {"_count": 1}, "was": {"_count": 1}, "large": {"_count": 1}, "a": {"_count": 1}, "green": {"_count": 2}, "treasure": {"_count": 1}}, "chair": {"_count": 1, "sat": {"_count": 1}}, "plate": {"_count": 1, "": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 3, "it": {"_count": 1}, "far": {"_count": 1}, "with": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 36, ".": {"_count": 29}, "?": {"_count": 4}, "!": {"_count": 3}}, "fell": {"_count": 1, "into": {"_count": 1}}, "frame": {"_count": 1, "standing": {"_count": 1}}, "youd": {"_count": 1, "be": {"_count": 1}}, "or": {"_count": 2, "drinking": {"_count": 1}, "green": {"_count": 1}}, "the": {"_count": 4, "huge": {"_count": 1}, "Firebolt": {"_count": 1}, "other": {"_count": 2}}, "he": {"_count": 3, "could": {"_count": 1}, "had": {"_count": 2}}, "Galleon": {"_count": 2, "": {"_count": 2}}, "silver": {"_count": 1, "and": {"_count": 1}}, "trimming": {"_count": 1, "": {"_count": 1}}, "lettering": {"_count": 1, "spelling": {"_count": 1}}, "plates": {"_count": 1, "and": {"_count": 1}}, "could": {"_count": 1, "buy": {"_count": 1}}, "plumage": {"_count": 1, "": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "shield": {"_count": 1, "was": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 4, "a": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}}, "more": {"_count": 1, "than": {"_count": 1}}, "into": {"_count": 2, "Stans": {"_count": 1}, "their": {"_count": 1}}, "Gobstones": {"_count": 1, "a": {"_count": 1}}, "embossed": {"_count": 1, "spellbooks": {"_count": 1}}, "this": {"_count": 1, "summer": {"_count": 1}}, "hed": {"_count": 2, "be": {"_count": 1}, "caught": {"_count": 1}}, "a": {"_count": 2, "flutter": {"_count": 1}, "ring": {"_count": 1}}, "ahead": {"_count": 1, "but": {"_count": 1}}, "from": {"_count": 6, "under": {"_count": 1}, "my": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 2}, "me": {"_count": 1}}, "pocket": {"_count": 1, "watch": {"_count": 1}}, "chain": {"_count": 3, "": {"_count": 2}, "around": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "watch": {"_count": 3, "the": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 1}}, "walls": {"_count": 1, "surrounding": {"_count": 1}}, "comet": {"_count": 1, "came": {"_count": 1}}, "to": {"_count": 6, "match": {"_count": 2}, "get": {"_count": 1}, "start": {"_count": 2}, "your": {"_count": 1}}, "descending": {"_count": 1, "from": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "lion": {"_count": 1, "for": {"_count": 1}}, "teeth": {"_count": 2, "": {"_count": 1}, "glinted": {"_count": 1}}, "spikes": {"_count": 1, "around": {"_count": 1}}, "one": {"_count": 1, "gleaming": {"_count": 1}}, "bracelets": {"_count": 1, "glimmering": {"_count": 1}}, "draped": {"_count": 1, "table": {"_count": 1}}, "I": {"_count": 2, "gave": {"_count": 2}}, "vanishes": {"_count": 1, "Ron": {"_count": 1}}, "sunlight": {"_count": 1, "fell": {"_count": 1}}, "prospector": {"_count": 2, "would": {"_count": 1}, "sifts": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 1}, "Sirius": {"_count": 1}, "Griphook": {"_count": 1}}, "off": {"_count": 1, "them": {"_count": 1}}, "hoop": {"_count": 1, "in": {"_count": 1}}, "if": {"_count": 1, "theyre": {"_count": 1}}, "hes": {"_count": 1, "been": {"_count": 1}}, "embroidery": {"_count": 1, "linked": {"_count": 1}}, "line": {"_count": 1, "from": {"_count": 1}}, "fall": {"_count": 1, "into": {"_count": 1}}, "supplies": {"_count": 1, "and": {"_count": 1}}, "T": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 1, "all": {"_count": 1}}, "changed": {"_count": 1, "hands": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "star": {"_count": 1, "": {"_count": 1}}, "spent": {"_count": 1, "a": {"_count": 1}}, "moving": {"_count": 1, "slowly": {"_count": 1}}, "light": {"_count": 1, "flickering": {"_count": 1}}, "gates": {"_count": 1, "at": {"_count": 1}}, "statues": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "pink": {"_count": 1, "would": {"_count": 1}}, "locket": {"_count": 4, "at": {"_count": 1}, "inside": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "ring": {"_count": 1, "set": {"_count": 1}}, "badly": {"_count": 1, "well": {"_count": 1}}, "desperate": {"_count": 1, "enough": {"_count": 1}}, "cheered": {"_count": 1, "as": {"_count": 1}}, "hangings": {"_count": 1, "so": {"_count": 1}}, "you": {"_count": 1, "could": {"_count": 1}}, "stuffed": {"_count": 1, "into": {"_count": 1}}, "clasps": {"_count": 1, "shut": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}, "flames": {"_count": 1, "appear": {"_count": 1}}, "Twelve": {"_count": 1, "FailSafe": {"_count": 1}}, "with": {"_count": 1, "stars": {"_count": 1}}, "streamers": {"_count": 1, "erupt": {"_count": 1}}, "flowers": {"_count": 1, "": {"_count": 1}}, "spread": {"_count": 1, "from": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "thread": {"_count": 1, "": {"_count": 1}}, "swung": {"_count": 1, "forward": {"_count": 1}}, "gleamed": {"_count": 1, "in": {"_count": 1}}, "by": {"_count": 1, "rounding": {"_count": 1}}, "Not": {"_count": 1, "a": {"_count": 1}}, "Gold": {"_count": 1, "": {"_count": 1}}, "filthy": {"_count": 1, "scavenger": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "rim": {"_count": 1, "of": {"_count": 1}}, "there": {"_count": 1, "when": {"_count": 1}}, "insisting": {"_count": 1, "that": {"_count": 1}}, "coin": {"_count": 1, "through": {"_count": 1}}, "its": {"_count": 1, "got": {"_count": 1}}, "blazed": {"_count": 1, "with": {"_count": 1}}, "Griphook": {"_count": 1, "seized": {"_count": 1}}, "Gryffindor": {"_count": 1, "lion": {"_count": 1}}}, "wristwatch": {"_count": 2, "when": {"_count": 1, "Aunt": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Bad": {"_count": 12, "news": {"_count": 2, "Vernon": {"_count": 1}, "Harry": {"_count": 1}}, "Dobby": {"_count": 5, "": {"_count": 3}, "very": {"_count": 1}, "Harry": {"_count": 1}}, "business": {"_count": 1, "Hagrid": {"_count": 1}}, "blood": {"_count": 1, "will": {"_count": 1}}, "headache": {"_count": 1, "": {"_count": 1}}, "luck": {"_count": 2, "Prongs": {"_count": 1}, "mate": {"_count": 1}}}, "Figgs": {"_count": 4, "broken": {"_count": 1, "her": {"_count": 1}}, "cabbagesmelling": {"_count": 1, "living": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "house": {"_count": 1, "There": {"_count": 1}}}, "leg": {"_count": 141, "": {"_count": 31, ".": {"_count": 29}, "?": {"_count": 2}}, "but": {"_count": 3, "it": {"_count": 1}, "Lupin": {"_count": 1}, "looking": {"_count": 1}}, "while": {"_count": 1, "Piers": {"_count": 1}}, "tripping": {"_count": 1, "over": {"_count": 1}}, "so": {"_count": 3, "Harry": {"_count": 1}, "that": {"_count": 2}}, "up": {"_count": 3, "and": {"_count": 1}, "until": {"_count": 1}, "": {"_count": 1}}, "wasnt": {"_count": 1, "easy": {"_count": 1}}, "Hermione": {"_count": 2, "suggested": {"_count": 1}, "pushed": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "ripped": {"_count": 1, "off": {"_count": 1}}, "off": {"_count": 1, "properly": {"_count": 1}}, "slid": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 16, "Fang": {"_count": 1}, "made": {"_count": 1}, "didnt": {"_count": 1}, "gave": {"_count": 1}, "a": {"_count": 1}, "conjured": {"_count": 1}, "allow": {"_count": 1}, "unrolled": {"_count": 1}, "watched": {"_count": 1}, "his": {"_count": 2}, "thick": {"_count": 1}, "magical": {"_count": 1}, "it": {"_count": 1}, "retied": {"_count": 1}, "he": {"_count": 1}}, "against": {"_count": 1, "a": {"_count": 1}}, "soared": {"_count": 1, "out": {"_count": 1}}, "in": {"_count": 1, "bloody": {"_count": 1}}, "he": {"_count": 2, "visited": {"_count": 1}, "said": {"_count": 1}}, "to": {"_count": 3, "send": {"_count": 1}, "which": {"_count": 2}}, "gave": {"_count": 3, "a": {"_count": 1}, "way": {"_count": 1}, "an": {"_count": 1}}, "had": {"_count": 1, "broken": {"_count": 1}}, "which": {"_count": 3, "stuck": {"_count": 1}, "crumpled": {"_count": 1}, "he": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 5, "his": {"_count": 2}, "a": {"_count": 2}, "what": {"_count": 1}}, "strapping": {"_count": 1, "it": {"_count": 1}}, "fell": {"_count": 2, "": {"_count": 1}, "away": {"_count": 1}}, "over": {"_count": 6, "Buckbeaks": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 2}}, "stiffer": {"_count": 1, "than": {"_count": 1}}, "that": {"_count": 1, "woke": {"_count": 1}}, "would": {"_count": 2, "allow": {"_count": 1}, "no": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "she": {"_count": 1, "kept": {"_count": 1}}, "ending": {"_count": 1, "in": {"_count": 1}}, "echoing": {"_count": 1, "around": {"_count": 1}}, "wearily": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 2}, "Snape": {"_count": 1}}, "was": {"_count": 6, "much": {"_count": 1}, "really": {"_count": 1}, "shaking": {"_count": 1}, "very": {"_count": 1}, "gone": {"_count": 1}, "repaired": {"_count": 1}}, "Harry": {"_count": 1, "pocketed": {"_count": 1}}, "suddenly": {"_count": 1, "sank": {"_count": 1}}, "still": {"_count": 2, "jammed": {"_count": 1}, "standing": {"_count": 1}}, "free": {"_count": 1, "but": {"_count": 1}}, "came": {"_count": 1, "free": {"_count": 1}}, "its": {"_count": 1, "pointed": {"_count": 1}}, "growing": {"_count": 1, "fainter": {"_count": 1}}, "kicking": {"_count": 1, "at": {"_count": 1}}, "connected": {"_count": 1, "with": {"_count": 1}}, "gingerly": {"_count": 1, "it": {"_count": 1}}, "shook": {"_count": 1, "under": {"_count": 1}}, "his": {"_count": 1, "whole": {"_count": 1}}, "regrew": {"_count": 1, "in": {"_count": 1}}, "they": {"_count": 1, "started": {"_count": 1}}, "back": {"_count": 1, "off": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "it": {"_count": 1, "an": {"_count": 1}}, "very": {"_count": 1, "nasty": {"_count": 1}}, "umbrella": {"_count": 2, "stand": {"_count": 2}}, "Good": {"_count": 1, "said": {"_count": 1}}, "ups": {"_count": 1, "but": {"_count": 1}}, "for": {"_count": 1, "it": {"_count": 1}}, "downstairs": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "elves": {"_count": 1}}}, "horror": {"_count": 69, "but": {"_count": 1, "Harrys": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 18}}, "Harry": {"_count": 4, "realized": {"_count": 1}, "saw": {"_count": 3}}, "on": {"_count": 2, "Malfoys": {"_count": 1}, "Uncle": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 3, "voice": {"_count": 1}, "fifth": {"_count": 1}, "fully": {"_count": 1}}, "the": {"_count": 1, "elf": {"_count": 1}}, "of": {"_count": 3, "anything": {"_count": 1}, "his": {"_count": 2}}, "within": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 4, "realized": {"_count": 1}, "was": {"_count": 1}, "saw": {"_count": 2}}, "under": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "Hagrid": {"_count": 1, "proceeded": {"_count": 1}}, "struck": {"_count": 2, "by": {"_count": 1}, "while": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 3, "would": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}}, "was": {"_count": 1, "rising": {"_count": 1}}, "she": {"_count": 2, "withdrew": {"_count": 1}, "had": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "felt": {"_count": 1, "a": {"_count": 1}}, "inside": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 4, "collided": {"_count": 1}, "shock": {"_count": 1}, "every": {"_count": 1}, "shame": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "Ron": {"_count": 1, "came": {"_count": 1}}, "Slughorn": {"_count": 1, "threw": {"_count": 1}}, "or": {"_count": 2, "for": {"_count": 1}, "sadness": {"_count": 1}}, "Dumbledore": {"_count": 1, "sank": {"_count": 1}}, "never": {"_count": 1, "left": {"_count": 1}}, "rose": {"_count": 1, "inside": {"_count": 1}}, "paralyzed": {"_count": 1, "him": {"_count": 1}}}, "leap": {"_count": 22, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 8, "excitement": {"_count": 2}, "relief": {"_count": 1}, "his": {"_count": 2}, "surprise": {"_count": 1}, "pleasure": {"_count": 1}, "joy": {"_count": 1}}, "Harry": {"_count": 1, "managed": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "carried": {"_count": 1}}, "aside": {"_count": 1, "spitting": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "up": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "vanishing": {"_count": 1}}, "unscathed": {"_count": 1, "from": {"_count": 1}}, "dragging": {"_count": 1, "Hermione": {"_count": 1}}}, "Every": {"_count": 95, "year": {"_count": 5, "on": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}, "this": {"_count": 1}, "I": {"_count": 1}}, "now": {"_count": 11, "and": {"_count": 11}}, "Ollivander": {"_count": 1, "wand": {"_count": 1}}, "single": {"_count": 5, "wand": {"_count": 1}, "Slytherin": {"_count": 1}, "Hufflepuff": {"_count": 1}, "Divination": {"_count": 1}, "one": {"_count": 1}}, "night": {"_count": 2, "before": {"_count": 1}, "without": {"_count": 1}}, "Flavor": {"_count": 11, "Beans": {"_count": 11}}, "morning": {"_count": 2, "the": {"_count": 1}, "they": {"_count": 1}}, "time": {"_count": 12, "they": {"_count": 1}, "one": {"_count": 1}, "Muggles": {"_count": 1}, "he": {"_count": 3}, "Harry": {"_count": 2}, "you": {"_count": 1}, "it": {"_count": 1}, "James": {"_count": 1}, "Ive": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "other": {"_count": 1, "teacher": {"_count": 1}}, "nerve": {"_count": 2, "in": {"_count": 2}}, "careful": {"_count": 1, "footstep": {"_count": 1}}, "inch": {"_count": 5, "of": {"_count": 5}}, "version": {"_count": 1, "of": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "Mouthfull": {"_count": 1, "and": {"_count": 1}}, "head": {"_count": 2, "in": {"_count": 1}, "turned": {"_count": 1}}, "week": {"_count": 1, "news": {"_count": 1}}, "word": {"_count": 1, "he": {"_count": 1}}, "so": {"_count": 1, "often": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "guest": {"_count": 1, "in": {"_count": 1}}, "day": {"_count": 2, "this": {"_count": 1}, "if": {"_count": 1}}, "few": {"_count": 2, "steps": {"_count": 1}, "seconds": {"_count": 1}}, "bitter": {"_count": 1, "and": {"_count": 1}}, "headmaster": {"_count": 1, "and": {"_count": 1}}, "evening": {"_count": 2, "this": {"_count": 1}, "since": {"_count": 1}}, "eye": {"_count": 4, "was": {"_count": 3}, "living": {"_count": 1}}, "moment": {"_count": 1, "they": {"_count": 1}}, "Auror": {"_count": 1, "in": {"_count": 1}}, "secret": {"_count": 1, "passageway": {"_count": 1}}, "room": {"_count": 1, "I": {"_count": 1}}, "surface": {"_count": 1, "now": {"_count": 1}}, "twelve": {"_count": 1, "hours": {"_count": 1}}, "tiny": {"_count": 1, "movement": {"_count": 1}}, "pore": {"_count": 1, "of": {"_count": 1}}, "minor": {"_count": 1, "spell": {"_count": 1}}, "human": {"_count": 1, "life": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "drop": {"_count": 1, "of": {"_count": 1}}, "month": {"_count": 1, "at": {"_count": 1}}, "second": {"_count": 1, "he": {"_count": 1}}}, "friend": {"_count": 183, "out": {"_count": 2, "for": {"_count": 1}, "of": {"_count": 1}}, "Yvonne": {"_count": 1, "": {"_count": 1}}, "Piers": {"_count": 1, "Polkiss": {"_count": 1}}, "Lavender": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 23}, "!": {"_count": 3}, "?": {"_count": 7}}, "Lee": {"_count": 6, "Jordan": {"_count": 6}}, "Ron": {"_count": 7, "himself": {"_count": 1}, "He": {"_count": 1}, "hadnt": {"_count": 1}, "might": {"_count": 1}, "Weasleys": {"_count": 2}, "Weasley": {"_count": 1}}, "Third": {"_count": 1, "as": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "Nicolas": {"_count": 2, "Flamel": {"_count": 2}}, "of": {"_count": 23, "thieves": {"_count": 1}, "Hagrid": {"_count": 1}, "hers": {"_count": 2}, "Rons": {"_count": 1}, "Dumbledores": {"_count": 2}, "the": {"_count": 2}, "my": {"_count": 2}, "Hagrids": {"_count": 1}, "yours": {"_count": 2}, "Harry": {"_count": 1}, "mine": {"_count": 2}, "whom": {"_count": 1}, "two": {"_count": 1}, "Mudbloods": {"_count": 1}, "Albus": {"_count": 1}, "ours": {"_count": 1}, "Albuss": {"_count": 1}}, "from": {"_count": 2, "Hogwarts": {"_count": 2}}, "could": {"_count": 1, "take": {"_count": 1}}, "Harry": {"_count": 1, "or": {"_count": 1}}, "be": {"_count": 1, "that": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 3, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}, "Lupin": {"_count": 1}}, "hed": {"_count": 1, "had": {"_count": 1}}, "Hannah": {"_count": 1, "came": {"_count": 1}}, "and": {"_count": 10, "a": {"_count": 1}, "youre": {"_count": 1}, "Weasley": {"_count": 1}, "colleague": {"_count": 1}, "put": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "cannot": {"_count": 1}, "went": {"_count": 1}, "Albus": {"_count": 1}}, "I": {"_count": 2, "can": {"_count": 1}, "ever": {"_count": 1}}, "Hermione": {"_count": 2, "should": {"_count": 1}, "Granger": {"_count": 1}}, "was": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "had": {"_count": 3, "betrayed": {"_count": 1}, "just": {"_count": 1}, "caught": {"_count": 1}}, "somewhere": {"_count": 1, "Potter": {"_count": 1}}, "moren": {"_count": 1, "broomsticks": {"_count": 1}}, "Hagrid": {"_count": 2, "Malfoy": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "whispered": {"_count": 1}, "had": {"_count": 1}}, "but": {"_count": 4, "I": {"_count": 1}, "he": {"_count": 1}, "Dobby": {"_count": 1}, "Albus": {"_count": 1}}, "Black": {"_count": 1, "into": {"_count": 1}}, "Rons": {"_count": 3, "mother": {"_count": 1}, "dad": {"_count": 1}, "swallowed": {"_count": 1}}, "Merlins": {"_count": 1, "beard": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "Dobby": {"_count": 1, "had": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "Colin": {"_count": 1, "Creevey": {"_count": 1}}, "Violet": {"_count": 2, "from": {"_count": 1}, "drank": {"_count": 1}}, "will": {"_count": 1, "know": {"_count": 1}}, "Vi": {"_count": 1, "were": {"_count": 1}}, "Vincent": {"_count": 1, "Crabbe": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "winked": {"_count": 1, "at": {"_count": 1}}, "arrived": {"_count": 1, "here": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "speaking": {"_count": 1}}, "ran": {"_count": 1, "straight": {"_count": 1}}, "the": {"_count": 1, "famous": {"_count": 1}}, "a": {"_count": 1, "hard": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "Kreachers": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "friend": {"_count": 1}}, "And": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 2, "long": {"_count": 1}, "they": {"_count": 1}}, "we": {"_count": 1, "hope": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "shrieked": {"_count": 1, "and": {"_count": 1}}, "give": {"_count": 1, "her": {"_count": 1}}, "stood": {"_count": 1, "beside": {"_count": 1}}, "ushered": {"_count": 1, "her": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "first": {"_count": 1, "however": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "Marietta": {"_count": 5, "looked": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 2}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Tiberius": {"_count": 1, "Ogden": {"_count": 1}}, "die": {"_count": 1, "the": {"_count": 1}}, "Dobbys": {"_count": 1, "": {"_count": 1}}, "actually": {"_count": 1, "": {"_count": 1}}, "promptly": {"_count": 1, "turned": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "nor": {"_count": 1, "do": {"_count": 1}}, "Sanguini": {"_count": 1, "": {"_count": 1}}, "followed": {"_count": 1, "at": {"_count": 1}}, "Rupert": {"_count": 1, "": {"_count": 1}}, "Thicknesse": {"_count": 1, "is": {"_count": 1}}, "Peter": {"_count": 1, "Pettigrew": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "But": {"_count": 1, "we": {"_count": 1}}, "Gellert": {"_count": 1, "Grindelwald": {"_count": 1}}, "Grindelwald": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "caused": {"_count": 1}}, "plotting": {"_count": 1, "their": {"_count": 1}}, "to": {"_count": 1, "Diagon": {"_count": 1}}, "or": {"_count": 1, "foe": {"_count": 1}}}, "adventure": {"_count": 17, "parks": {"_count": 1, "hamburger": {"_count": 1}}, "and": {"_count": 2, "they": {"_count": 1}, "substantial": {"_count": 1}}, "was": {"_count": 1, "kindling": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "ends": {"_count": 1, "here": {"_count": 1}}, "Dumbledore": {"_count": 1, "added": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "end": {"_count": 1}}, "with": {"_count": 1, "us": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}}, "parks": {"_count": 1, "hamburger": {"_count": 1, "restaurants": {"_count": 1}}}, "hamburger": {"_count": 4, "restaurants": {"_count": 2, "or": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "restaurants": {"_count": 2, "or": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "cinemas": {"_count": 1}}}, "movies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Figg": {"_count": 49, "a": {"_count": 2, "mad": {"_count": 1}, "batty": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 4, "broken": {"_count": 1}, "recently": {"_count": 1}, "already": {"_count": 1}, "perched": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "they": {"_count": 1}}, "wasnt": {"_count": 1, "as": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}, "their": {"_count": 1, "batty": {"_count": 1}}, "wringing": {"_count": 1, "her": {"_count": 1}}, "hysterically": {"_count": 1, "": {"_count": 1}}, "tottered": {"_count": 1, "along": {"_count": 1}}, "panting": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 2}}, "": {"_count": 6, ".": {"_count": 6}}, "raised": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "swinging": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 1, "around": {"_count": 1}}, "was": {"_count": 2, "swallowed": {"_count": 1}, "one": {"_count": 1}}, "what": {"_count": 1, "the": {"_count": 1}}, "knew": {"_count": 1, "Albus": {"_count": 1}}, "and": {"_count": 1, "Mundungus": {"_count": 1}}, "his": {"_count": 1, "chair": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "to": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "silence": {"_count": 1}}, "indignantly": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "quickly": {"_count": 1, "patches": {"_count": 1}}, "the": {"_count": 1, "pink": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}, "finished": {"_count": 1, "somewhat": {"_count": 1}}, "repeated": {"_count": 1, "": {"_count": 1}}, "cast": {"_count": 1, "a": {"_count": 1}}, "Harrys": {"_count": 1, "Squib": {"_count": 1}}}, "mad": {"_count": 133, "old": {"_count": 3, "lady": {"_count": 1}, "bat": {"_count": 1}, "Ron": {"_count": 1}}, "hasnt": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 37, ".": {"_count": 24}, "?": {"_count": 7}, "!": {"_count": 6}}, "ter": {"_count": 3, "try": {"_count": 3}}, "to": {"_count": 1, "try": {"_count": 1}}, "the": {"_count": 1, "lot": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 4, "three": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "staring": {"_count": 1}}, "not": {"_count": 2, "knowing": {"_count": 1}, "to": {"_count": 1}}, "said": {"_count": 6, "Ron": {"_count": 3}, "Black": {"_count": 1}, "Harry": {"_count": 1}, "Krum": {"_count": 1}}, "gleam": {"_count": 1, "dancing": {"_count": 1}}, "trees": {"_count": 1, "larger": {"_count": 1}}, "rush": {"_count": 1, "toward": {"_count": 1}}, "Bludger": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 4, "hairy": {"_count": 1}, "maybe": {"_count": 1}, "dangerous": {"_count": 1}, "Harrys": {"_count": 1}}, "with": {"_count": 4, "joy": {"_count": 1}, "grief": {"_count": 1}, "hopeless": {"_count": 1}, "his": {"_count": 1}}, "hissing": {"_count": 1, "something": {"_count": 1}}, "inee": {"_count": 1, "Ern": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "there": {"_count": 2}}, "within": {"_count": 1, "weeks": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "axeman": {"_count": 1, "is": {"_count": 1}}, "axemen": {"_count": 1, "": {"_count": 1}}, "hippogriff": {"_count": 1, "": {"_count": 1}}, "glint": {"_count": 1, "in": {"_count": 1}}, "cat": {"_count": 1, "": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "there": {"_count": 1}, "yes": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "well": {"_count": 1}, "her": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}, "delinquent": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "watching": {"_count": 1}}, "he": {"_count": 3, "wouldnt": {"_count": 1}, "knew": {"_count": 1}, "turned": {"_count": 1}}, "faces": {"_count": 1, "and": {"_count": 1}}, "knight": {"_count": 1, "still": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "mass": {"_count": 1, "murderer": {"_count": 1}}, "orders": {"_count": 1, "from": {"_count": 1}}, "stuff": {"_count": 1, "mustve": {"_count": 1}}, "or": {"_count": 2, "anything": {"_count": 1}, "a": {"_count": 1}}, "SHUT": {"_count": 1, "UP": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "idea": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "trolls": {"_count": 1, "on": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "things": {"_count": 1, "girls": {"_count": 1}}, "person": {"_count": 1, "but": {"_count": 1}}, "horse": {"_count": 1, "things": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "laughter": {"_count": 2, "": {"_count": 2}}, "laugh": {"_count": 1, "to": {"_count": 1}}, "cackle": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "should": {"_count": 1}}, "people": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "wanting": {"_count": 1, "that": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "a": {"_count": 1, "thin": {"_count": 1}}, "desperation": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "exploded": {"_count": 1}}, "sister": {"_count": 1, "stopping": {"_count": 1}}, "headdress": {"_count": 1, "and": {"_count": 1}}, "second": {"_count": 1, "Harry": {"_count": 1}}}, "lady": {"_count": 22, "who": {"_count": 1, "lived": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 2}}, "swung": {"_count": 1, "open": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 4}, ".": {"_count": 1}}, "is": {"_count": 1, "disturbed": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "from": {"_count": 1, "nearby": {"_count": 1}}, "friend": {"_count": 1, "actually": {"_count": 1}}, "tells": {"_count": 1, "me": {"_count": 1}}, "perform": {"_count": 1, "the": {"_count": 1}}, "called": {"_count": 1, "unless": {"_count": 1}}, "wearing": {"_count": 1, "an": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "shook": {"_count": 1, "her": {"_count": 1}}, "said": {"_count": 1, "Xenophilius": {"_count": 1}}, "proudly": {"_count": 1, "": {"_count": 1}}}, "smelled": {"_count": 17, "of": {"_count": 3, "cabbage": {"_count": 1}, "rotten": {"_count": 1}, "damp": {"_count": 1}}, "strongly": {"_count": 4, "of": {"_count": 4}}, "so": {"_count": 1, "sweet": {"_count": 1}}, "faintly": {"_count": 1, "of": {"_count": 1}}, "quite": {"_count": 1, "normal": {"_count": 1}}, "like": {"_count": 2, "rancid": {"_count": 1}, "dirty": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "bad": {"_count": 1, "or": {"_count": 1}}, "horrible": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "salty": {"_count": 1, "air": {"_count": 1}}}, "cabbage": {"_count": 2, "and": {"_count": 1, "Mrs": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "shed": {"_count": 77, "ever": {"_count": 2, "owned": {"_count": 1}, "laughed": {"_count": 1}}, "just": {"_count": 4, "swallowed": {"_count": 1}, "done": {"_count": 1}, "get": {"_count": 1}, "asked": {"_count": 1}}, "broken": {"_count": 1, "her": {"_count": 1}}, "had": {"_count": 4, "it": {"_count": 2}, "good": {"_count": 1}, "a": {"_count": 1}}, "learned": {"_count": 1, "and": {"_count": 1}}, "need": {"_count": 1, "": {"_count": 1}}, "whisk": {"_count": 1, "off": {"_count": 1}}, "gotten": {"_count": 1, "out": {"_count": 1}}, "be": {"_count": 6, "able": {"_count": 1}, "back": {"_count": 1}, "very": {"_count": 1}, "well": {"_count": 1}, "a": {"_count": 1}, "bursting": {"_count": 1}}, "looked": {"_count": 1, "something": {"_count": 1}}, "expected": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "left": {"_count": 1, "her": {"_count": 1}}, "said": {"_count": 3, "it": {"_count": 2}, "": {"_count": 1}}, "set": {"_count": 1, "the": {"_count": 1}}, "seen": {"_count": 1, "anything": {"_count": 1}}, "keep": {"_count": 1, "her": {"_count": 1}}, "it": {"_count": 1, "must": {"_count": 1}}, "been": {"_count": 5, "gone": {"_count": 1}, "or": {"_count": 1}, "brought": {"_count": 1}, "Imperiused": {"_count": 1}, "at": {"_count": 1}}, "made": {"_count": 1, "as": {"_count": 1}}, "have": {"_count": 7, "to": {"_count": 1}, "been": {"_count": 4}, "walked": {"_count": 1}, "a": {"_count": 1}}, "hurry": {"_count": 1, "up": {"_count": 1}}, "like": {"_count": 1, "ter": {"_count": 1}}, "do": {"_count": 1, "isnt": {"_count": 1}}, "work": {"_count": 1, "up": {"_count": 1}}, "noticed": {"_count": 1, "how": {"_count": 1}}, "better": {"_count": 1, "watch": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "gone": {"_count": 1, "Harry": {"_count": 1}}, "cry": {"_count": 1, "and": {"_count": 1}}, "put": {"_count": 1, "Charms": {"_count": 1}}, "caught": {"_count": 1, "Snuffles": {"_count": 1}}, "know": {"_count": 1, "what": {"_count": 1}}, "feel": {"_count": 1, "abou": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "rather": {"_count": 1, "leave": {"_count": 1}}, "jinxed": {"_count": 1, "that": {"_count": 1}}, "her": {"_count": 1, "blood": {"_count": 1}}, "door": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "name": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "given": {"_count": 1, "birth": {"_count": 1}}, "still": {"_count": 1, "have": {"_count": 1}}, "take": {"_count": 1, "it": {"_count": 1}}, "never": {"_count": 1, "walk": {"_count": 1}}, "think": {"_count": 1, "shes": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "owned": {"_count": 26, "": {"_count": 4, ".": {"_count": 4}}, "from": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "cat": {"_count": 1}, "badly": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 3, "bewitched": {"_count": 1}, "place": {"_count": 1}, "Riddle": {"_count": 1}}, "Scabbers": {"_count": 1, "the": {"_count": 1}}, "including": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "currently": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 1}, "for": {"_count": 1}, "himself": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "by": {"_count": 4, "large": {"_count": 1}, "anyone": {"_count": 1}, "Gryffindor": {"_count": 1}, "his": {"_count": 1}}, "were": {"_count": 1, "strewn": {"_count": 1}}, "number": {"_count": 1, "twelve": {"_count": 1}}, "and": {"_count": 1, "which": {"_count": 1}}, "but": {"_count": 1, "even": {"_count": 1}}}, "planned": {"_count": 24, "this": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Hagrid": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "his": {"_count": 1, "excursion": {"_count": 1}}, "to": {"_count": 1, "restore": {"_count": 1}}, "fer": {"_count": 1, "yer": {"_count": 1}}, "for": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "intended": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "so": {"_count": 1}}, "doublecross": {"_count": 1, "that": {"_count": 1}}, "your": {"_count": 1, "death": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "the": {"_count": 1, "wands": {"_count": 1}}}, "ought": {"_count": 163, "to": {"_count": 149, "feel": {"_count": 3}, "give": {"_count": 1}, "be": {"_count": 36}, "know": {"_count": 12}, "do": {"_count": 5}, "remember": {"_count": 1}, "have": {"_count": 25}, "walk": {"_count": 1}, "take": {"_count": 2}, "start": {"_count": 1}, "go": {"_count": 6}, "look": {"_count": 1}, "tell": {"_count": 4}, "choose": {"_count": 1}, "ask": {"_count": 2}, "double": {"_count": 1}, "let": {"_count": 1}, "belong": {"_count": 1}, "reinforce": {"_count": 1}, "serve": {"_count": 1}, "teach": {"_count": 1}, "agree": {"_count": 1}, "miss": {"_count": 1}, "try": {"_count": 2}, "elect": {"_count": 1}, "vote": {"_count": 1}, "come": {"_count": 1}, "meet": {"_count": 1}, "put": {"_count": 1}, "eat": {"_count": 1}, "it": {"_count": 1}, "loosen": {"_count": 1}, "hold": {"_count": 1}, "hear": {"_count": 1}, "think": {"_count": 1}, "relax": {"_count": 1}, "create": {"_count": 1}, "add": {"_count": 1}, "check": {"_count": 1}, "follow": {"_count": 1}, "show": {"_count": 1}, "revenge": {"_count": 1}, "lie": {"_count": 1}, "get": {"_count": 2}, "remain": {"_count": 1}, "qualify": {"_count": 1}, "set": {"_count": 1}, "wear": {"_count": 1}, "keep": {"_count": 1}, "avoid": {"_count": 1}, "make": {"_count": 1}, "sleep": {"_count": 1}, "rest": {"_count": 1}, "Disapparate": {"_count": 1}, "talk": {"_count": 1}, "It": {"_count": 1}, "tie": {"_count": 1}, "say": {"_count": 1}, "accept": {"_count": 1}, "ensure": {"_count": 1}, "comfort": {"_count": 1}}, "he": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 11, "to": {"_count": 11}}, "perhaps": {"_count": 1, "have": {"_count": 1}}, "Hogwarts": {"_count": 1, "to": {"_count": 1}}}, "feel": {"_count": 364, "sorry": {"_count": 4, "that": {"_count": 1}, "for": {"_count": 3}}, "as": {"_count": 10, "though": {"_count": 8}, "we": {"_count": 1}, "sanguine": {"_count": 1}}, "much": {"_count": 4, "like": {"_count": 3}, "easier": {"_count": 1}}, "worse": {"_count": 3, "said": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 17, "nothing": {"_count": 1}, "this": {"_count": 2}, "the": {"_count": 1}, "Uncle": {"_count": 1}, "whenever": {"_count": 1}, "Harry": {"_count": 2}, "he": {"_count": 2}, "Mrs": {"_count": 1}, "honesty": {"_count": 1}, "once": {"_count": 1}, "you": {"_count": 1}, "if": {"_count": 1}, "four": {"_count": 1}, "controlled": {"_count": 1}}, "like": {"_count": 16, "leaving": {"_count": 1}, "sharing": {"_count": 1}, "a": {"_count": 3}, "explaining": {"_count": 1}, "working": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 2}, "if": {"_count": 1}, "this": {"_count": 1}, "jumping": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 1}, "its": {"_count": 1}}, "brave": {"_count": 2, "or": {"_count": 1}, "Harry": {"_count": 1}}, "definitely": {"_count": 2, "sick": {"_count": 1}, "alarmed": {"_count": 1}}, "warm": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 2, "hanging": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 5, "sorry": {"_count": 2}, "cut": {"_count": 1}, "horrified": {"_count": 1}, "unbearably": {"_count": 1}}, "his": {"_count": 15, "arm": {"_count": 1}, "fingers": {"_count": 1}, "hands": {"_count": 1}, "feet": {"_count": 1}, "face": {"_count": 3}, "personal": {"_count": 1}, "temperature": {"_count": 1}, "conscious": {"_count": 1}, "throat": {"_count": 1}, "way": {"_count": 1}, "long": {"_count": 1}, "scar": {"_count": 1}, "wand": {"_count": 1}}, "ill": {"_count": 1, "so": {"_count": 1}}, "the": {"_count": 31, "dogs": {"_count": 1}, "seat": {"_count": 1}, "need": {"_count": 2}, "excitement": {"_count": 1}, "full": {"_count": 1}, "tournaments": {"_count": 1}, "heat": {"_count": 1}, "rest": {"_count": 1}, "school": {"_count": 1}, "forest": {"_count": 1}, "Dementors": {"_count": 1}, "Felix": {"_count": 1}, "small": {"_count": 1}, "way": {"_count": 1}, "sidecar": {"_count": 1}, "last": {"_count": 1}, "same": {"_count": 2}, "tiny": {"_count": 1}, "despair": {"_count": 1}, "place": {"_count": 1}, "locket": {"_count": 1}, "color": {"_count": 1}, "weight": {"_count": 1}, "blade": {"_count": 1}, "jagged": {"_count": 1}, "horror": {"_count": 1}, "cold": {"_count": 1}, "steady": {"_count": 1}, "curse": {"_count": 1}}, "sharp": {"_count": 1, "beaks": {"_count": 1}}, "them": {"_count": 4, "for": {"_count": 1}, "watching": {"_count": 1}, "": {"_count": 1}, "burning": {"_count": 1}}, "too": {"_count": 2, "excited": {"_count": 1}, "sorry": {"_count": 1}}, "theyre": {"_count": 1, "skills": {"_count": 1}}, "sick": {"_count": 6, "something": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "enough": {"_count": 1}}, "jealous": {"_count": 1, "of": {"_count": 1}}, "hungry": {"_count": 2, "anymore": {"_count": 2}}, "free": {"_count": 1, "Thank": {"_count": 1}}, "he": {"_count": 7, "should": {"_count": 1}, "was": {"_count": 2}, "must": {"_count": 1}, "deserved": {"_count": 1}, "groped": {"_count": 1}, "would": {"_count": 1}}, "remotely": {"_count": 2, "like": {"_count": 1}, "tired": {"_count": 1}}, "quite": {"_count": 2, "angry": {"_count": 1}, "faint": {"_count": 1}}, "better": {"_count": 7, "that": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 4}, "than": {"_count": 1}}, "it": {"_count": 15, "": {"_count": 6}, "vibrating": {"_count": 1}, "stinging": {"_count": 1}, "though": {"_count": 1}, "pulsing": {"_count": 1}, "on": {"_count": 1}, "it": {"_count": 1}, "scalding": {"_count": 1}, "pressed": {"_count": 1}, "building": {"_count": 1}}, "its": {"_count": 3, "time": {"_count": 1}, "breath": {"_count": 1}, "putrid": {"_count": 1}}, "youre": {"_count": 1, "losing": {"_count": 1}}, "Fangs": {"_count": 1, "hot": {"_count": 1}}, "him": {"_count": 3, "quivering": {"_count": 1}, "shaking": {"_count": 1}, "": {"_count": 1}}, "cold": {"_count": 3, "sweat": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "very": {"_count": 6, "sleepy": {"_count": 1}, "apprehensive": {"_count": 1}, "sad": {"_count": 2}, "vulnerable": {"_count": 1}, "bad": {"_count": 1}}, "safe": {"_count": 3, "now": {"_count": 1}, "in": {"_count": 1}, "doing": {"_count": 1}}, "differently": {"_count": 1, "once": {"_count": 1}}, "to": {"_count": 4, "ask": {"_count": 1}, "know": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}}, "more": {"_count": 5, "scared": {"_count": 1}, "secure": {"_count": 1}, "disturbed": {"_count": 1}, "shock": {"_count": 1}, "than": {"_count": 1}}, "how": {"_count": 1, "cold": {"_count": 1}}, "all": {"_count": 4, "right": {"_count": 2}, "that": {"_count": 1}, "all": {"_count": 1}}, "sleepy": {"_count": 2, "and": {"_count": 2}}, "scared": {"_count": 1, "of": {"_count": 1}}, "any": {"_count": 7, "better": {"_count": 4}, "more": {"_count": 1}, "burgeoning": {"_count": 1}, "worse": {"_count": 1}}, "their": {"_count": 3, "presence": {"_count": 1}, "way": {"_count": 1}, "chill": {"_count": 1}}, "ashamed": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "ruddy": {"_count": 1, "terrible": {"_count": 1}}, "despair": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 4, "it": {"_count": 1}, "her": {"_count": 2}, "cold": {"_count": 1}}, "a": {"_count": 13, "thing": {"_count": 2}, "burning": {"_count": 1}, "kind": {"_count": 1}, "lot": {"_count": 1}, "bit": {"_count": 2}, "bulse": {"_count": 1}, "squirming": {"_count": 1}, "resentful": {"_count": 1}, "little": {"_count": 2}, "lump": {"_count": 1}}, "hundreds": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "slightly": {"_count": 4, "sick": {"_count": 1}, "calmer": {"_count": 1}, "nervous": {"_count": 1}, "ashamed": {"_count": 1}}, "himself": {"_count": 3, "shaking": {"_count": 3}}, "right": {"_count": 2, "": {"_count": 1}, "if": {"_count": 1}}, "happy": {"_count": 1, "after": {"_count": 1}}, "guilty": {"_count": 2, "about": {"_count": 1}, "it": {"_count": 1}}, "sure": {"_count": 4, "well": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 2}}, "you": {"_count": 3, "shudder": {"_count": 1}, "receive": {"_count": 1}, "perform": {"_count": 1}}, "really": {"_count": 2, "full": {"_count": 1}, "nervous": {"_count": 1}}, "worried": {"_count": 1, "about": {"_count": 1}}, "anxious": {"_count": 1, "himself": {"_count": 1}}, "uncomfortable": {"_count": 2, "": {"_count": 1}, "particularly": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "shaking": {"_count": 1}}, "exhausted": {"_count": 1, "It": {"_count": 1}}, "is": {"_count": 2, "necessary": {"_count": 1}, "not": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "angry": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 7, "the": {"_count": 1}, "that": {"_count": 3}, "Voldemort": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "irritated": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 7, "they": {"_count": 3}, "forced": {"_count": 1}, "that": {"_count": 1}, "she": {"_count": 1}, "this": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "queasy": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 2, "Diggory": {"_count": 1}, "about": {"_count": 1}}, "properly": {"_count": 1, "hungry": {"_count": 1}}, "somehow": {"_count": 1, "much": {"_count": 1}}, "icy": {"_count": 1, "anymore": {"_count": 1}}, "pain": {"_count": 2, "on": {"_count": 1}, "like": {"_count": 1}}, "dizzy": {"_count": 1, "but": {"_count": 1}}, "anything": {"_count": 2, "but": {"_count": 1}, "said": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "fourteen": {"_count": 1, "years": {"_count": 1}}, "being": {"_count": 2, "secondbest": {"_count": 1}, "less": {"_count": 1}}, "our": {"_count": 1, "futures": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "bigger": {"_count": 1, "if": {"_count": 1}}, "nervous": {"_count": 2, "but": {"_count": 1}, "though": {"_count": 1}}, "abou": {"_count": 1, "clamberin": {"_count": 1}}, "absolutely": {"_count": 1, "fine": {"_count": 1}}, "and": {"_count": 1, "think": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 2}}, "ah": {"_count": 1, "frustrated": {"_count": 1}}, "secure": {"_count": 1, "enough": {"_count": 1}}, "shaky": {"_count": 1, "if": {"_count": 1}}, "confident": {"_count": 1, "and": {"_count": 1}}, "hot": {"_count": 1, "with": {"_count": 1}}, "special": {"_count": 1, "important": {"_count": 1}}, "faintly": {"_count": 1, "sick": {"_count": 1}}, "Cho": {"_count": 1, "might": {"_count": 1}}, "grateful": {"_count": 1, "for": {"_count": 1}}, "numb": {"_count": 1, "": {"_count": 1}}, "awkward": {"_count": 1, "or": {"_count": 1}}, "rather": {"_count": 1, "better": {"_count": 1}}, "Professor": {"_count": 1, "Marchbankss": {"_count": 1}}, "Hermione": {"_count": 1, "shaking": {"_count": 1}}, "Voldemorts": {"_count": 1, "jubilation": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 2, "examine": {"_count": 1}, "was": {"_count": 1}}, "some": {"_count": 2, "tiny": {"_count": 1}, "curiosity": {"_count": 1}}, "I": {"_count": 2, "owe": {"_count": 1}, "barely": {"_count": 1}}, "cheerful": {"_count": 1, "again": {"_count": 1}}, "annoyed": {"_count": 1, "at": {"_count": 1}}, "protective": {"_count": 1, "": {"_count": 1}}, "pleased": {"_count": 1, "that": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "after": {"_count": 1, "your": {"_count": 1}}, "Ginnys": {"_count": 1, "eyes": {"_count": 1}}, "flecks": {"_count": 1, "of": {"_count": 1}}, "curious": {"_count": 1, "again": {"_count": 1}}, "idiotic": {"_count": 1, "and": {"_count": 1}}, "Georgie": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "youve": {"_count": 1}}, "resentful": {"_count": 1, "about": {"_count": 1}}, "was": {"_count": 1, "Hermiones": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "my": {"_count": 1, "wrath": {"_count": 1}}, "strangely": {"_count": 1, "lonely": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "fear": {"_count": 1, "rippling": {"_count": 1}}, "not": {"_count": 1, "the": {"_count": 1}}, "elated": {"_count": 1, "if": {"_count": 1}}, "uneasy": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "digging": {"_count": 1}}, "Voldemort": {"_count": 1, "flying": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "no": {"_count": 1, "difference": {"_count": 1}}, "except": {"_count": 1, "shock": {"_count": 1}}, "great": {"_count": 1, "at": {"_count": 1}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}}, "easy": {"_count": 89, "when": {"_count": 1, "he": {"_count": 1}}, "journey": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 4, "": {"_count": 1}, "to": {"_count": 2}, "theyre": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 23, "play": {"_count": 1}, "forget": {"_count": 2}, "find": {"_count": 2}, "push": {"_count": 1}, "lure": {"_count": 1}, "see": {"_count": 2}, "bend": {"_count": 1}, "manipulate": {"_count": 1}, "hold": {"_count": 1}, "make": {"_count": 1}, "manage": {"_count": 1}, "ignore": {"_count": 1}, "fit": {"_count": 1}, "hide": {"_count": 1}, "overlook": {"_count": 1}, "read": {"_count": 1}, "visualize": {"_count": 1}, "pity": {"_count": 1}, "get": {"_count": 1}, "die": {"_count": 1}}, "getting": {"_count": 1, "him": {"_count": 1}}, "ter": {"_count": 3, "catch": {"_count": 1}, "trace": {"_count": 1}, "block": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 2}}, "once": {"_count": 3, "hed": {"_count": 1}, "you": {"_count": 1}, "out": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "learn": {"_count": 1, "course": {"_count": 1}}, "however": {"_count": 1, "I": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "task": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 4, "them": {"_count": 1}, "Dark": {"_count": 1}, "him": {"_count": 1}, "Lucius": {"_count": 1}}, "does": {"_count": 3, "it": {"_count": 2}, "the": {"_count": 1}}, "Malfoy": {"_count": 1, "drawled": {"_count": 1}}, "part": {"_count": 1, "Im": {"_count": 1}}, "person": {"_count": 1, "to": {"_count": 1}}, "mistake": {"_count": 1, "to": {"_count": 1}}, "Apparition": {"_count": 1, "and": {"_count": 1}}, "really": {"_count": 1, "Quidditch": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 2}, "Luna": {"_count": 1}, "Hermione": {"_count": 1}}, "Harry": {"_count": 1, "guiding": {"_count": 1}}, "remember": {"_count": 1, "what": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "targets": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "save": {"_count": 2, "": {"_count": 2}}, "prey": {"_count": 1, "for": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "experience": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "gettin": {"_count": 1, "Aragogs": {"_count": 1}}, "now": {"_count": 2, "that": {"_count": 1}, "for": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "too": {"_count": 1, "easy": {"_count": 1}}, "the": {"_count": 1, "sword": {"_count": 1}}, "no": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "grace": {"_count": 1, "his": {"_count": 1}}}, "reminded": {"_count": 57, "himself": {"_count": 5, "it": {"_count": 2}, "that": {"_count": 2}, "had": {"_count": 1}}, "them": {"_count": 2, "cheerfully": {"_count": 1}, "that": {"_count": 1}}, "Harry": {"_count": 12, "of": {"_count": 6}, "bossily": {"_count": 1}, "forcefully": {"_count": 1}, "to": {"_count": 1}, "vividly": {"_count": 1}, "in": {"_count": 1}, "forcibly": {"_count": 1}}, "of": {"_count": 8, "Dudley": {"_count": 1}, "Gringotts": {"_count": 1}, "how": {"_count": 2}, "something": {"_count": 1}, "words": {"_count": 1}, "a": {"_count": 1}, "Uncle": {"_count": 1}}, "him": {"_count": 15, "": {"_count": 8}, "of": {"_count": 2}, "simultaneously": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 2}, "so": {"_count": 1}}, "her": {"_count": 4, "": {"_count": 2}, "I": {"_count": 1}, "quietly": {"_count": 1}}, "that": {"_count": 1, "until": {"_count": 1}}, "his": {"_count": 1, "team": {"_count": 1}}, "forcibly": {"_count": 3, "of": {"_count": 3}}, "me": {"_count": 1, "o": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 2, "on": {"_count": 2}}, "unpleasantly": {"_count": 1, "of": {"_count": 1}}, "irresistibly": {"_count": 1, "of": {"_count": 1}}}, "Tibbies": {"_count": 4, "Snowy": {"_count": 1, "Mr": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "came": {"_count": 1, "and": {"_count": 1}}}, "Snowy": {"_count": 2, "Mr": {"_count": 1, "Paws": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Paws": {"_count": 1, "and": {"_count": 1, "Tufty": {"_count": 1}}}, "Tufty": {"_count": 1, "again": {"_count": 1, "": {"_count": 1}}}, "phone": {"_count": 2, "Marge": {"_count": 1, "Uncle": {"_count": 1}}, "call": {"_count": 1, "to": {"_count": 1}}}, "Marge": {"_count": 58, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "one": {"_count": 1, "where": {"_count": 1}}, "": {"_count": 15, "?": {"_count": 5}, ".": {"_count": 9}, "!": {"_count": 1}}, "was": {"_count": 4, "Uncle": {"_count": 1}, "fine": {"_count": 1}, "holding": {"_count": 1}, "right": {"_count": 1}}, "lived": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 4, "whacked": {"_count": 1}, "refused": {"_count": 1}, "been": {"_count": 1}, "already": {"_count": 1}}, "doesnt": {"_count": 1, "know": {"_count": 1}}, "you": {"_count": 1, "attend": {"_count": 1}}, "coming": {"_count": 1, "for": {"_count": 1}}, "I": {"_count": 1, "go": {"_count": 1}}, "forget": {"_count": 1, "what": {"_count": 1}}, "loved": {"_count": 1, "criticizing": {"_count": 1}}, "thrust": {"_count": 1, "the": {"_count": 1}}, "striding": {"_count": 1, "past": {"_count": 1}}, "and": {"_count": 1, "Aunt": {"_count": 1}}, "bumped": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "growled": {"_count": 1, "": {"_count": 1}}, "narrowed": {"_count": 1, "her": {"_count": 1}}, "started": {"_count": 3, "to": {"_count": 1}, "on": {"_count": 1}, "voicing": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "reached": {"_count": 1, "for": {"_count": 1}}, "sputtered": {"_count": 1, "and": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "mopping": {"_count": 1, "her": {"_count": 1}}, "smacking": {"_count": 1, "her": {"_count": 1}}, "loudly": {"_count": 1, "seizing": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}, "swelling": {"_count": 1, "with": {"_count": 1}}, "suddenly": {"_count": 1, "stopped": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "bad": {"_count": 1, "enough": {"_count": 1}}, "bobbing": {"_count": 1, "around": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}}, "suggested": {"_count": 74, "": {"_count": 11, ".": {"_count": 11}}, "timidly": {"_count": 1, "hours": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "sentence": {"_count": 1, "": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 2, "Invisibility": {"_count": 1}, "mountainside": {"_count": 1}}, "Dean": {"_count": 2, "Thomas": {"_count": 2}}, "him": {"_count": 1, "as": {"_count": 1}}, "putting": {"_count": 1, "you": {"_count": 1}}, "it": {"_count": 1, "Black": {"_count": 1}}, "tentatively": {"_count": 1, "as": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 10, "they": {"_count": 1}, "the": {"_count": 1}, "Mrs": {"_count": 1}, "each": {"_count": 1}, "he": {"_count": 3}, "there": {"_count": 1}, "little": {"_count": 1}, "it": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "sending": {"_count": 1, "Hedwig": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "go": {"_count": 1}}, "a": {"_count": 2, "visit": {"_count": 1}, "year": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "Monday": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 3, "had": {"_count": 1}, "bluntly": {"_count": 1}, "and": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "poison": {"_count": 1, "said": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "that": {"_count": 1}}, "Hermione": {"_count": 3, "the": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "shrewdly": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "say": {"_count": 1}}, "Ron": {"_count": 3, "yawning": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 2}}, "after": {"_count": 1, "a": {"_count": 1}}, "halfheartedly": {"_count": 1, "": {"_count": 1}}, "some": {"_count": 1, "Dumbledoreish": {"_count": 1}}, "handing": {"_count": 1, "her": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "frail": {"_count": 1, "bodies": {"_count": 1}}}, "hates": {"_count": 12, "the": {"_count": 1, "boy": {"_count": 1}}, "me": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 1, "Or": {"_count": 1}}, "students": {"_count": 1, "so": {"_count": 1}}, "anyone": {"_count": 1, "beating": {"_count": 1}}, "Sirius": {"_count": 1, "Hermione": {"_count": 1}}, "writing": {"_count": 1, "said": {"_count": 1}}, "parthumans": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 1, "said": {"_count": 1}}, "tend": {"_count": 1, "to": {"_count": 1}}, "Celestina": {"_count": 1, "Warbeck": {"_count": 1}}}, "nasty": {"_count": 101, "that": {"_count": 1, "couldnt": {"_count": 1}}, "grin": {"_count": 3, "through": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "bit": {"_count": 1, "o": {"_count": 1}}, "shock": {"_count": 2, "for": {"_count": 1}, "when": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "crack": {"_count": 1, "and": {"_count": 1}}, "feeling": {"_count": 6, "they": {"_count": 3}, "about": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}, "shade": {"_count": 2, "of": {"_count": 2}}, "crunching": {"_count": 1, "noise": {"_count": 1}}, "greenish": {"_count": 1, "color": {"_count": 1}}, "stuff": {"_count": 1, "that": {"_count": 1}}, "window": {"_count": 1, "display": {"_count": 1}}, "wobble": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 3, "widened": {"_count": 1}, "": {"_count": 1}, "playing": {"_count": 1}}, "business": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 7, "voice": {"_count": 1}, "liar": {"_count": 2}, "goblinlike": {"_count": 1}, "friends": {"_count": 1}, "boy": {"_count": 1}, "laugh": {"_count": 1}}, "one": {"_count": 1, "about": {"_count": 1}}, "look": {"_count": 10, "sideways": {"_count": 1}, "about": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 2}, "feel": {"_count": 1}, "as": {"_count": 2}, "could": {"_count": 1}, "she": {"_count": 1}}, "bout": {"_count": 1, "of": {"_count": 1}}, "moment": {"_count": 1, "Harry": {"_count": 1}}, "sneer": {"_count": 1, "playing": {"_count": 1}}, "position": {"_count": 1, "indeed": {"_count": 1}}, "essay": {"_count": 1, "on": {"_count": 1}}, "pang": {"_count": 1, "of": {"_count": 1}}, "incident": {"_count": 1, "in": {"_count": 1}}, "silence": {"_count": 4, "": {"_count": 3}, "which": {"_count": 1}}, "complications": {"_count": 1, "": {"_count": 1}}, "smell": {"_count": 2, "under": {"_count": 1}, "when": {"_count": 1}}, "laugh": {"_count": 2, "": {"_count": 2}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Fred": {"_count": 1}}, "Extinguishing": {"_count": 1, "Spells": {"_count": 1}}, "cut": {"_count": 1, "across": {"_count": 1}}, "brick": {"_count": 1, "color": {"_count": 1}}, "accidents": {"_count": 1, "when": {"_count": 1}}, "questions": {"_count": 1, "at": {"_count": 1}}, "throb": {"_count": 1, "Uncle": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "squelching": {"_count": 1, "sound": {"_count": 1}}, "actually": {"_count": 1, "said": {"_count": 1}}, "impulse": {"_count": 1, "vanished": {"_count": 1}}, "old": {"_count": 1, "blood": {"_count": 1}}, "ungrateful": {"_count": 1, "swine": {"_count": 1}}, "attention": {"_count": 1, "seeking": {"_count": 1}}, "attentionseeking": {"_count": 1, "stories": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "inflection": {"_count": 1, "in": {"_count": 1}}, "injury": {"_count": 1, "to": {"_count": 1}}, "eager": {"_count": 1, "excited": {"_count": 1}}, "and": {"_count": 1, "wellpublicized": {"_count": 1}}, "flight": {"_count": 1, "": {"_count": 1}}, "killing": {"_count": 1, "wasnt": {"_count": 1}}, "turns": {"_count": 1, "up": {"_count": 1}}, "backfiring": {"_count": 1, "jinx": {"_count": 1}}, "yellowish": {"_count": 1, "goo": {"_count": 1}}, "temper": {"_count": 2, "a": {"_count": 1}, "you": {"_count": 1}}, "scratches": {"_count": 1, "along": {"_count": 1}}, "looks": {"_count": 1, "": {"_count": 1}}, "incidents": {"_count": 1, "to": {"_count": 1}}, "hissing": {"_count": 1, "noise": {"_count": 1}}, "accusations": {"_count": 1, "": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "purple": {"_count": 1, "color": {"_count": 1}}, "lurch": {"_count": 1, "He": {"_count": 1}}, "crash": {"_count": 1, "you": {"_count": 1}}, "rumors": {"_count": 1, "going": {"_count": 1}}}, "slug": {"_count": 13, "": {"_count": 5, ".": {"_count": 2}, "?": {"_count": 1}, "!": {"_count": 2}}, "pellets": {"_count": 1, "balls": {"_count": 1}}, "problem": {"_count": 1, "which": {"_count": 1}}, "fell": {"_count": 1, "into": {"_count": 1}}, "attack": {"_count": 1, "all": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "burst": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "vomiting": {"_count": 1, "charm": {"_count": 1}}}, "whatshername": {"_count": 1, "your": {"_count": 1, "friend": {"_count": 1}}}, "Yvonne": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "vacation": {"_count": 9, "in": {"_count": 1, "Majorca": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "home": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "came": {"_count": 1, "too": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}}, "Majorca": {"_count": 3, "snapped": {"_count": 1, "Aunt": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "than": {"_count": 1, "they": {"_count": 1}}}, "leave": {"_count": 311, "me": {"_count": 8, "here": {"_count": 1}, "": {"_count": 2}, "alone": {"_count": 3}, "ALONE": {"_count": 1}, "and": {"_count": 1}}, "him": {"_count": 13, "in": {"_count": 3}, "alone": {"_count": 2}, "tied": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}, "here": {"_count": 1}, "said": {"_count": 1}, "Did": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 24}, "?": {"_count": 3}, "!": {"_count": 3}}, "at": {"_count": 4, "once": {"_count": 1}, "least": {"_count": 1}, "exactly": {"_count": 1}, "a": {"_count": 1}}, "it": {"_count": 18, "Dursley": {"_count": 1}, "somewhere": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 3}, "here": {"_count": 3}, "there": {"_count": 2}, "at": {"_count": 1}, "till": {"_count": 1}, "less": {"_count": 1}, "": {"_count": 2}, "where": {"_count": 1}, "open": {"_count": 1}}, "yeh": {"_count": 1, "anything": {"_count": 1}}, "Hogwarts": {"_count": 7, "so": {"_count": 1}, "I": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "Harry": {"_count": 1}}, "wouldnt": {"_count": 2, "you": {"_count": 2}}, "your": {"_count": 8, "luggage": {"_count": 1}, "school": {"_count": 1}, "champion": {"_count": 1}, "things": {"_count": 1}, "path": {"_count": 1}, "bedroom": {"_count": 1}, "bed": {"_count": 1}, "hidey": {"_count": 1}}, "and": {"_count": 6, "not": {"_count": 1}, "wwhatll": {"_count": 1}, "pensions": {"_count": 3}, "Hagrid": {"_count": 1}}, "those": {"_count": 2, "brooms": {"_count": 1}, "stains": {"_count": 1}}, "saying": {"_count": 1, "Ron": {"_count": 1}}, "you": {"_count": 15, "Firenze": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 2}, "for": {"_count": 2}, "none": {"_count": 1}, "in": {"_count": 2}, "pockmarked": {"_count": 1}, "all": {"_count": 1}, "alone": {"_count": 1}, "this": {"_count": 1}, "here": {"_count": 1}, "are": {"_count": 1}}, "them": {"_count": 7, "to": {"_count": 1}, "lying": {"_count": 2}, "here": {"_count": 1}, "ter": {"_count": 1}, "alone": {"_count": 1}, "in": {"_count": 1}}, "Harry": {"_count": 7, "thought": {"_count": 1}, "alone": {"_count": 3}, "said": {"_count": 2}, "gave": {"_count": 1}}, "the": {"_count": 58, "bathroom": {"_count": 2}, "dormitories": {"_count": 1}, "forest": {"_count": 1}, "ground": {"_count": 1}, "school": {"_count": 2}, "bus": {"_count": 1}, "safety": {"_count": 2}, "lesson": {"_count": 1}, "hall": {"_count": 1}, "castle": {"_count": 3}, "locker": {"_count": 1}, "cloak": {"_count": 1}, "common": {"_count": 1}, "room": {"_count": 3}, "Dursleys": {"_count": 2}, "situation": {"_count": 1}, "kitchen": {"_count": 3}, "enclosure": {"_count": 1}, "others": {"_count": 1}, "house": {"_count": 11}, "Wizengamot": {"_count": 1}, "dungeon": {"_count": 1}, "Hall": {"_count": 2}, "country": {"_count": 2}, "ward": {"_count": 1}, "team": {"_count": 1}, "Prime": {"_count": 1}, "office": {"_count": 2}, "trees": {"_count": 1}, "pitch": {"_count": 1}, "corridor": {"_count": 1}, "tower": {"_count": 1}, "Snitch": {"_count": 1}, "Ministry": {"_count": 1}, "air": {"_count": 1}}, "their": {"_count": 5, "house": {"_count": 1}, "dusty": {"_count": 1}, "washing": {"_count": 1}, "jobs": {"_count": 1}, "kids": {"_count": 1}}, "his": {"_count": 6, "bed": {"_count": 1}, "present": {"_count": 1}, "black": {"_count": 1}, "hand": {"_count": 1}, "frame": {"_count": 1}, "painting": {"_count": 1}}, "her": {"_count": 8, "where": {"_count": 1}, "precious": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "classes": {"_count": 1}, "alone": {"_count": 1}, "hand": {"_count": 1}, "sanctuary": {"_count": 1}}, "us": {"_count": 8, "here": {"_count": 1}, "forever": {"_count": 2}, "": {"_count": 2}, "alone": {"_count": 2}, "in": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "its": {"_count": 3, "pages": {"_count": 1}, "case": {"_count": 1}, "only": {"_count": 1}}, "spots": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 3, "Kings": {"_count": 2}, "the": {"_count": 1}}, "poor": {"_count": 1, "old": {"_count": 1}}, "said": {"_count": 2, "Mr": {"_count": 1}, "Harry": {"_count": 1}}, "school": {"_count": 4, "without": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "The": {"_count": 1, "door": {"_count": 1}}, "as": {"_count": 1, "quickly": {"_count": 1}}, "here": {"_count": 3, "knowing": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "nobody": {"_count": 1, "in": {"_count": 1}}, "by": {"_count": 1, "starving": {"_count": 1}}, "now": {"_count": 4, "": {"_count": 1}, "you": {"_count": 1}, "please": {"_count": 1}, "and": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "couldnt": {"_count": 1}}, "Hagrid": {"_count": 2, "to": {"_count": 1}, "mopping": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "Moody": {"_count": 1, "had": {"_count": 1}}, "Fang": {"_count": 1, "with": {"_count": 1}}, "Gryffindor": {"_count": 1, "Tower": {"_count": 1}}, "that": {"_count": 3, "till": {"_count": 1}, "list": {"_count": 1}, "I": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "my": {"_count": 5, "instructions": {"_count": 1}, "office": {"_count": 1}, "presence": {"_count": 1}, "Deluminator": {"_count": 1}, "copy": {"_count": 1}}, "a": {"_count": 2, "report": {"_count": 1}, "note": {"_count": 1}}, "details": {"_count": 1, "of": {"_count": 1}}, "this": {"_count": 3, "dusty": {"_count": 1}, "new": {"_count": 1}, "shack": {"_count": 1}}, "unless": {"_count": 2, "Sturgis": {"_count": 1}, "theyre": {"_count": 1}}, "soon": {"_count": 1, "were": {"_count": 1}}, "for": {"_count": 3, "tonight": {"_count": 1}, "some": {"_count": 1}, "good": {"_count": 1}}, "our": {"_count": 1, "homework": {"_count": 1}}, "of": {"_count": 2, "absence": {"_count": 1}, "her": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "with": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "in": {"_count": 3, "threes": {"_count": 1}, "three": {"_count": 1}, "the": {"_count": 1}}, "after": {"_count": 1, "three": {"_count": 1}}, "Grimmauld": {"_count": 2, "Place": {"_count": 2}}, "Sirius": {"_count": 1, "all": {"_count": 1}}, "righ": {"_count": 1, "now": {"_count": 1}}, "withou": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "had": {"_count": 1}}, "before": {"_count": 2, "it": {"_count": 1}, "you": {"_count": 1}}, "deeper": {"_count": 1, "scarring": {"_count": 1}}, "an": {"_count": 1, "imprint": {"_count": 1}}, "on": {"_count": 1, "my": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "Hermione": {"_count": 1}}, "Lavender": {"_count": 1, "waiting": {"_count": 1}}, "Dumbledore": {"_count": 1, "alone": {"_count": 1}}, "any": {"_count": 1, "sign": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "there": {"_count": 1, "will": {"_count": 1}}, "Dumbledores": {"_count": 1, "side": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "therell": {"_count": 1, "be": {"_count": 1}}, "early": {"_count": 1, "for": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "without": {"_count": 1, "him": {"_count": 1}}, "Tonks": {"_count": 1, "at": {"_count": 1}}, "Ted": {"_count": 1, "": {"_count": 1}}, "prints": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "did": {"_count": 1}}}, "hopefully": {"_count": 46, "hed": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "leading": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 4, "Dumbledore": {"_count": 1}, "Mrs": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}}, "at": {"_count": 7, "the": {"_count": 1}, "his": {"_count": 2}, "Moody": {"_count": 1}, "some": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "maybe": {"_count": 1, "We": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 3}}, "whether": {"_count": 1, "there": {"_count": 1}}, "youd": {"_count": 1, "be": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "goalsaving": {"_count": 1, "attitude": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "itll": {"_count": 1, "look": {"_count": 1}}}, "change": {"_count": 120, "and": {"_count": 2, "maybe": {"_count": 1}, "nobody": {"_count": 1}}, "an": {"_count": 1, "hell": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "": {"_count": 18, "?": {"_count": 3}, ".": {"_count": 14}, "!": {"_count": 1}}, "my": {"_count": 3, "mind": {"_count": 1}, "appearance": {"_count": 1}, "tie": {"_count": 1}}, "the": {"_count": 10, "rules": {"_count": 1}, "plan": {"_count": 1}, "world": {"_count": 1}, "subject": {"_count": 4}, "numbers": {"_count": 1}, "sheets": {"_count": 2}}, "of": {"_count": 17, "decoration": {"_count": 1}, "expression": {"_count": 1}, "subject": {"_count": 6}, "heart": {"_count": 4}, "mind": {"_count": 2}, "direction": {"_count": 1}, "position": {"_count": 1}, "ownership": {"_count": 1}}, "into": {"_count": 8, "three": {"_count": 1}, "": {"_count": 1}, "my": {"_count": 1}, "their": {"_count": 2}, "your": {"_count": 1}, "something": {"_count": 1}, "Ron": {"_count": 1}}, "direction": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "lit": {"_count": 1}}, "for": {"_count": 1, "dinner": {"_count": 1}}, "in": {"_count": 13, "the": {"_count": 4}, "Mr": {"_count": 1}, "his": {"_count": 4}, "him": {"_count": 1}, "Ministry": {"_count": 2}, "temperature": {"_count": 1}}, "They": {"_count": 1, "turned": {"_count": 1}}, "to": {"_count": 4, "Peter": {"_count": 1}, "reflect": {"_count": 1}, "mimic": {"_count": 1}, "be": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "time": {"_count": 1, "nobody": {"_count": 1}}, "it": {"_count": 3, "but": {"_count": 1}, "at": {"_count": 1}, "wont": {"_count": 1}}, "but": {"_count": 2, "Mr": {"_count": 1}, "Harry": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "smoothly": {"_count": 1, "into": {"_count": 1}}, "not": {"_count": 1, "having": {"_count": 1}}, "their": {"_count": 2, "appearance": {"_count": 1}, "spots": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 2}}, "between": {"_count": 1, "tradition": {"_count": 1}}, "o": {"_count": 1, "scene": {"_count": 1}}, "that": {"_count": 2, "are": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 3, "mind": {"_count": 3}}, "your": {"_count": 1, "appearance": {"_count": 1}}, "her": {"_count": 1, "appearance": {"_count": 1}}, "I": {"_count": 1, "didnt": {"_count": 1}}, "subtly": {"_count": 1, "Dumbledores": {"_count": 1}}, "at": {"_count": 1, "midnight": {"_count": 1}}, "its": {"_count": 1, "nature": {"_count": 1}}, "targets": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "is": {"_count": 1, "at": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "though": {"_count": 1, "cant": {"_count": 1}}}, "ruins": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "poor": {"_count": 1, "little": {"_count": 1}}}, "snarled": {"_count": 99, "": {"_count": 18, ".": {"_count": 18}}, "I": {"_count": 1, "accept": {"_count": 1}}, "claws": {"_count": 1, "hung": {"_count": 1}}, "Snape": {"_count": 8, "clearing": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 2}, "his": {"_count": 1}}, "Ron": {"_count": 7, "leaning": {"_count": 1}, "": {"_count": 4}, "scratching": {"_count": 1}, "as": {"_count": 1}}, "the": {"_count": 3, "face": {"_count": 1}, "centaur": {"_count": 1}, "goblin": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 3}}, "at": {"_count": 7, "Harry": {"_count": 3}, "Ron": {"_count": 1}, "once": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 1}}, "Filch": {"_count": 1, "": {"_count": 1}}, "tugging": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "while": {"_count": 1}, "he": {"_count": 3}}, "as": {"_count": 4, "he": {"_count": 1}, "a": {"_count": 1}, "Karkaroff": {"_count": 1}, "she": {"_count": 1}}, "suspiciously": {"_count": 1, "": {"_count": 1}}, "Black": {"_count": 3, "trying": {"_count": 1}, "who": {"_count": 2}}, "under": {"_count": 1, "his": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 2}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "Dudley": {"_count": 3, "turning": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "Moody": {"_count": 3, "": {"_count": 3}}, "Fudge": {"_count": 2, "": {"_count": 2}}, "Harry": {"_count": 5, "": {"_count": 3}, "Fudge": {"_count": 1}, "but": {"_count": 1}}, "Angelina": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "Weasley": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "pushing": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoys": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "Narcissa": {"_count": 1, "and": {"_count": 1}}, "Bellatrix": {"_count": 2, "": {"_count": 2}}, "Gaunt": {"_count": 1, "in": {"_count": 1}}, "Malfoy": {"_count": 1, "though": {"_count": 1}}, "Fenrir": {"_count": 1, "moving": {"_count": 1}}, "Kingsley": {"_count": 1, "": {"_count": 1}}, "Greyback": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "his": {"_count": 1, "mouth": {"_count": 1}}, "an": {"_count": 1, "uncouth": {"_count": 1}}}, "blow": {"_count": 46, "up": {"_count": 4, "the": {"_count": 1}, "or": {"_count": 1}, "your": {"_count": 1}, "at": {"_count": 1}}, "my": {"_count": 1, "whistle": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "hit": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "her": {"_count": 1, "nose": {"_count": 1}}, "meself": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 2, "loud": {"_count": 1}, "different": {"_count": 1}}, "to": {"_count": 6, "fall": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 1}}, "his": {"_count": 2, "whistle": {"_count": 1}, "hair": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "itll": {"_count": 1}}, "and": {"_count": 2, "could": {"_count": 1}, "Dumbledores": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "him": {"_count": 1, "away": {"_count": 1}}, "stoically": {"_count": 1, "enough": {"_count": 1}}, "coming": {"_count": 1, "so": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "those": {"_count": 1}}, "Ron": {"_count": 1, "backed": {"_count": 1}}, "he": {"_count": 1, "just": {"_count": 1}}, "the": {"_count": 1, "room": {"_count": 1}}, "us": {"_count": 1, "up": {"_count": 1}}, "echoed": {"_count": 1, "around": {"_count": 1}}, "nevertheless": {"_count": 1, "": {"_count": 1}}, "against": {"_count": 1, "Voldemort": {"_count": 1}}, "that": {"_count": 1, "snuffed": {"_count": 1}}}, "listening": {"_count": 179, "": {"_count": 34, ".": {"_count": 31}, "?": {"_count": 3}}, "she": {"_count": 3, "was": {"_count": 2}, "had": {"_count": 1}}, "to": {"_count": 56, "Dean": {"_count": 1}, "their": {"_count": 2}, "Lockhart": {"_count": 1}, "a": {"_count": 6}, "Myrtle": {"_count": 1}, "the": {"_count": 19}, "echoes": {"_count": 1}, "his": {"_count": 1}, "every": {"_count": 1}, "him": {"_count": 4}, "people": {"_count": 1}, "what": {"_count": 1}, "Crouch": {"_count": 1}, "see": {"_count": 1}, "Professor": {"_count": 1}, "her": {"_count": 4}, "them": {"_count": 1}, "my": {"_count": 1}, "Umbridges": {"_count": 2}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}, "whatever": {"_count": 1}, "PotterwatcM": {"_count": 1}, "Greyback": {"_count": 1}, "Travers": {"_count": 1}}, "because": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 8, "": {"_count": 3}, "on": {"_count": 2}, "that": {"_count": 1}, "here": {"_count": 1}, "even": {"_count": 1}}, "with": {"_count": 6, "all": {"_count": 4}, "his": {"_count": 1}, "faint": {"_count": 1}}, "and": {"_count": 3, "a": {"_count": 1}, "watching": {"_count": 1}, "his": {"_count": 1}}, "hard": {"_count": 10, "": {"_count": 4}, "for": {"_count": 2}, "with": {"_count": 1}, "his": {"_count": 2}, "as": {"_count": 1}}, "curiously": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "closely": {"_count": 2, "": {"_count": 2}}, "all": {"_count": 1, "the": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "raptly": {"_count": 2, "all": {"_count": 1}, "to": {"_count": 1}}, "intently": {"_count": 6, "": {"_count": 4}, "hoping": {"_count": 1}, "to": {"_count": 1}}, "their": {"_count": 1, "nerves": {"_count": 1}}, "villagers": {"_count": 1, "after": {"_count": 1}}, "very": {"_count": 2, "hard": {"_count": 1}, "attentively": {"_count": 1}}, "said": {"_count": 1, "Lucius": {"_count": 1}}, "for": {"_count": 3, "noise": {"_count": 1}, "the": {"_count": 1}, "more": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "students": {"_count": 1, "seemed": {"_count": 1}}, "he": {"_count": 5, "was": {"_count": 3}, "had": {"_count": 1}, "did": {"_count": 1}}, "wasnt": {"_count": 1, "important": {"_count": 1}}, "motionless": {"_count": 1, "apparently": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "private": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "oh": {"_count": 1, "hes": {"_count": 1}}, "classmates": {"_count": 1, "": {"_count": 1}}, "sneakily": {"_count": 1, "from": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "pulled": {"_count": 1}}, "Madam": {"_count": 1, "Pince": {"_count": 1}}, "carefully": {"_count": 1, "over": {"_count": 1}}, "eagerly": {"_count": 1, "to": {"_count": 1}}, "yet": {"_count": 1, "barely": {"_count": 1}}, "at": {"_count": 4, "doors": {"_count": 1}, "the": {"_count": 3}}, "Narcissa": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "hard": {"_count": 1}}, "or": {"_count": 1, "if": {"_count": 1}}, "Romulus": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "had": {"_count": 1}}}, "zoo": {"_count": 9, "said": {"_count": 1, "Aunt": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "crowded": {"_count": 1}}, "restaurant": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "director": {"_count": 1, "himself": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "once": {"_count": 1, "long": {"_count": 1}}}, "That": {"_count": 341, "cars": {"_count": 1, "new": {"_count": 1}}, "evening": {"_count": 2, "Dudley": {"_count": 1}, "when": {"_count": 1}}, "does": {"_count": 3, "it": {"_count": 1}, "look": {"_count": 1}, "not": {"_count": 1}}, "was": {"_count": 72, "no": {"_count": 2}, "far": {"_count": 1}, "some": {"_count": 1}, "a": {"_count": 14}, "the": {"_count": 12}, "my": {"_count": 1}, "definitely": {"_count": 2}, "quite": {"_count": 2}, "still": {"_count": 1}, "because": {"_count": 1}, "Crookshanks": {"_count": 1}, "really": {"_count": 3}, "an": {"_count": 2}, "embarrassing": {"_count": 1}, "Cuthbert": {"_count": 1}, "excellent": {"_count": 1}, "Bertha": {"_count": 1}, "Harry": {"_count": 1}, "what": {"_count": 2}, "funny": {"_count": 1}, "about": {"_count": 1}, "me": {"_count": 1}, "Mundungus": {"_count": 1}, "something": {"_count": 1}, "it": {"_count": 1}, "just": {"_count": 1}, "not": {"_count": 2}, "brilliant": {"_count": 1}, "Morfin": {"_count": 1}, "different": {"_count": 1}, "another": {"_count": 1}, "clever": {"_count": 1}, "decided": {"_count": 1}, "dramatic": {"_count": 1}, "Siriuss": {"_count": 1}, "announced": {"_count": 1}, "for": {"_count": 1}, "noisier": {"_count": 1}, "Potter": {"_count": 1}, "nothing": {"_count": 1}}, "seems": {"_count": 3, "to": {"_count": 2}, "perfectly": {"_count": 1}}, "will": {"_count": 11, "do": {"_count": 9}, "be": {"_count": 2}}, "Quidditch": {"_count": 1, "Cupll": {"_count": 1}}, "had": {"_count": 4, "been": {"_count": 3}, "the": {"_count": 1}}, "third": {"_count": 1, "night": {"_count": 1}}, "Stones": {"_count": 1, "here": {"_count": 1}}, "put": {"_count": 1, "Gryffindor": {"_count": 1}}, "wasn": {"_count": 1, "no": {"_count": 1}}, "is": {"_count": 30, "because": {"_count": 1}, "believed": {"_count": 1}, "the": {"_count": 2}, "incorrect": {"_count": 1}, "true": {"_count": 1}, "really": {"_count": 1}, "if": {"_count": 1}, "no": {"_count": 1}, "not": {"_count": 1}, "enough": {"_count": 1}, "where": {"_count": 1}, "a": {"_count": 4}, "just": {"_count": 1}, "my": {"_count": 1}, "I": {"_count": 1}, "easily": {"_count": 2}, "generous": {"_count": 1}, "for": {"_count": 1}, "Grindelvalds": {"_count": 1}, "immaterial": {"_count": 1}, "correct": {"_count": 1}, "why": {"_count": 1}, "between": {"_count": 1}, "essential": {"_count": 1}, "up": {"_count": 1}}, "one": {"_count": 5, "": {"_count": 2}, "doesnt": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 1}}, "big": {"_count": 2, "one": {"_count": 1}, "bloke": {"_count": 1}}, "reminds": {"_count": 2, "me": {"_count": 2}}, "lot": {"_count": 1, "wont": {"_count": 1}}, "familys": {"_count": 1, "trouble": {"_count": 1}}, "sounds": {"_count": 3, "fascinating": {"_count": 1}, "lovely": {"_count": 1}, "good": {"_count": 1}}, "panted": {"_count": 1, "Ron": {"_count": 1}}, "tree": {"_count": 1, "did": {"_count": 1}}, "said": {"_count": 4, "Professor": {"_count": 1}, "Ron": {"_count": 1}, "Firenze": {"_count": 1}, "Harry": {"_count": 1}}, "Lockharts": {"_count": 1, "something": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "voice": {"_count": 1}, "thing": {"_count": 1}}, "vanishing": {"_count": 1, "cabinet": {"_count": 1}}, "Im": {"_count": 2, "Slytherins": {"_count": 1}, "really": {"_count": 1}}, "first": {"_count": 1, "year": {"_count": 1}}, "could": {"_count": 2, "go": {"_count": 1}, "do": {"_count": 1}}, "looks": {"_count": 2, "more": {"_count": 1}, "amazing": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 1}, "did": {"_count": 1}, "really": {"_count": 1}, "was": {"_count": 1}}, "Peter": {"_count": 1, "Weasley": {"_count": 1}}, "Ravenclaw": {"_count": 1, "girl": {"_count": 1}}, "remains": {"_count": 1, "to": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "Hagrid": {"_count": 1, "never": {"_count": 1}}, "must": {"_count": 4, "be": {"_count": 1}, "never": {"_count": 1}, "mean": {"_count": 2}}, "taps": {"_count": 1, "never": {"_count": 1}}, "boy": {"_count": 3, "has": {"_count": 1}, "looked": {"_count": 1}, "found": {"_count": 1}}, "man": {"_count": 3, "": {"_count": 1}, "too": {"_count": 1}, "the": {"_count": 1}}, "little": {"_count": 2, "git": {"_count": 1}, "kid": {"_count": 1}}, "means": {"_count": 4, "youre": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "I": {"_count": 1}}, "dog": {"_count": 1, "on": {"_count": 1}}, "lesson": {"_count": 1, "was": {"_count": 1}}, "oaf": {"_count": 1, "teaching": {"_count": 1}}, "cats": {"_count": 1, "got": {"_count": 1}}, "thing": {"_count": 2, "youre": {"_count": 1}, "told": {"_count": 1}}, "suggests": {"_count": 1, "that": {"_count": 1}}, "explains": {"_count": 1, "a": {"_count": 1}}, "would": {"_count": 7, "be": {"_count": 5}, "explain": {"_count": 1}, "have": {"_count": 1}}, "Committees": {"_count": 1, "in": {"_count": 1}}, "things": {"_count": 1, "big": {"_count": 1}}, "wasnt": {"_count": 9, "a": {"_count": 1}, "funny": {"_count": 1}, "me": {"_count": 2}, "too": {"_count": 1}, "bad": {"_count": 1}, "really": {"_count": 1}, "us": {"_count": 1}, "your": {"_count": 1}}, "indeed": {"_count": 1, "is": {"_count": 1}}, "meant": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "brings": {"_count": 1, "her": {"_count": 1}}, "makes": {"_count": 2, "it": {"_count": 1}, "me": {"_count": 1}}, "TimeTurner": {"_count": 1, "it": {"_count": 1}}, "bird": {"_count": 1, "was": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "doesnt": {"_count": 2, "mean": {"_count": 1}, "matter": {"_count": 1}}, "womans": {"_count": 1, "got": {"_count": 1}}, "idiot": {"_count": 1, "Hogwarts": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}, "egg": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "shut": {"_count": 1, "Harry": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "sounded": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "hurts": {"_count": 1, "get": {"_count": 1}}, "wouldnt": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "time": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "is": {"_count": 1}}, "old": {"_count": 4, "cow": {"_count": 1}, "man": {"_count": 1}, "cats": {"_count": 1}, "berk": {"_count": 1}}, "way": {"_count": 2, "was": {"_count": 1}, "you": {"_count": 1}}, "hurt": {"_count": 1, "didnt": {"_count": 1}}, "grave": {"_count": 1, "is": {"_count": 1}}, "scar": {"_count": 1, "upon": {"_count": 1}}, "It": {"_count": 1, "doesnt": {"_count": 1}}, "giant": {"_count": 1, "bloke": {"_count": 1}}, "youre": {"_count": 1, "safe": {"_count": 1}}, "shouldve": {"_count": 1, "been": {"_count": 1}}, "correct": {"_count": 1, "": {"_count": 1}}, "situation": {"_count": 1, "has": {"_count": 1}}, "Luna": {"_count": 1, "girl": {"_count": 1}}, "Umbridge": {"_count": 2, "woman": {"_count": 1}, "womans": {"_count": 1}}, "wont": {"_count": 2, "do": {"_count": 1}, "work": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "Zacharias": {"_count": 1, "blokes": {"_count": 1}}, "night": {"_count": 1, "a": {"_count": 1}}, "foul": {"_count": 1, "lying": {"_count": 1}}, "still": {"_count": 1, "doesnt": {"_count": 1}}, "dream": {"_count": 1, "I": {"_count": 1}}, "woman": {"_count": 2, "Kreachers": {"_count": 1}, "or": {"_count": 1}}, "nights": {"_count": 1, "meal": {"_count": 1}}, "bossy": {"_count": 1, "woman": {"_count": 1}}, "interview": {"_count": 1, "was": {"_count": 1}}, "last": {"_count": 1, "memory": {"_count": 1}}, "sneak": {"_count": 1, "friend": {"_count": 1}}, "evil": {"_count": 1, "woman": {"_count": 1}}, "blame": {"_count": 1, "lies": {"_count": 1}}, "might": {"_count": 1, "indeed": {"_count": 1}}, "power": {"_count": 2, "took": {"_count": 1}, "also": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "I": {"_count": 3, "dont": {"_count": 1}, "am": {"_count": 1}, "think": {"_count": 1}}, "glass": {"_count": 1, "ball": {"_count": 1}}, "gives": {"_count": 1, "you": {"_count": 1}}, "jobs": {"_count": 1, "jinxed": {"_count": 1}}, "Slughorn": {"_count": 1, "bloke": {"_count": 1}}, "it": {"_count": 1, "really": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "ring": {"_count": 2, "Yes": {"_count": 1}, "carried": {"_count": 1}}, "mangy": {"_count": 1, "old": {"_count": 1}}, "Slytherin": {"_count": 1, "Chaser": {"_count": 1}}, "Katie": {"_count": 1, "thing": {"_count": 1}}, "Bell": {"_count": 1, "girl": {"_count": 1}}, "Muggle": {"_count": 1, "what": {"_count": 1}}, "seemed": {"_count": 1, "likely": {"_count": 1}}, "you": {"_count": 2, "have": {"_count": 2}}, "enough": {"_count": 1, "for": {"_count": 1}}, "particular": {"_count": 1, "fragment": {"_count": 1}}, "seventh": {"_count": 1, "piece": {"_count": 1}}, "potion": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "lives": {"_count": 1}}, "all": {"_count": 1, "righ": {"_count": 1}}, "diary": {"_count": 1, "sort": {"_count": 1}}, "law": {"_count": 1, "was": {"_count": 1}}, "couldve": {"_count": 1, "happened": {"_count": 1}}, "mmust": {"_count": 1, "have": {"_count": 1}}, "Dumbledore": {"_count": 2, "what": {"_count": 1}, "had": {"_count": 1}}, "fits": {"_count": 1, "": {"_count": 1}}, "clock": {"_count": 1, "that": {"_count": 1}}, "should": {"_count": 1, "fool": {"_count": 1}}, "lunatic": {"_count": 1, "rag": {"_count": 1}}, "silly": {"_count": 1, "girl": {"_count": 1}}, "sword": {"_count": 2, "isnt": {"_count": 1}, "was": {"_count": 1}}, "afternoon": {"_count": 1, "fresh": {"_count": 1}}, "really": {"_count": 1, "puts": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "all": {"_count": 1}}, "treacherous": {"_count": 1, "old": {"_count": 1}}, "symbol": {"_count": 1, "doesnt": {"_count": 1}}, "wand": {"_count": 2, "will": {"_count": 1}, "still": {"_count": 1}}, "much": {"_count": 1, "has": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "horn": {"_count": 1, "exploded": {"_count": 1}}, "doublecrossing": {"_count": 1, "little": {"_count": 1}}, "scared": {"_count": 1, "people": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "boys": {"_count": 1, "soul": {"_count": 1}}, "head": {"_count": 1, "case": {"_count": 1}}, "which": {"_count": 2, "Voldemort": {"_count": 1}, "I": {"_count": 1}}, "bit": {"_count": 1, "didnt": {"_count": 1}}, "isnt": {"_count": 1, "how": {"_count": 1}}, "wands": {"_count": 1, "more": {"_count": 1}}}, "cars": {"_count": 29, "new": {"_count": 1, "hes": {"_count": 1}}, "and": {"_count": 3, "wondering": {"_count": 1}, "children": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Mr": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "like": {"_count": 1, "multicolored": {"_count": 1}}, "to": {"_count": 2, "try": {"_count": 1}, "take": {"_count": 1}}, "Father": {"_count": 1, "": {"_count": 1}}, "stuck": {"_count": 1, "his": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "seemed": {"_count": 1, "almost": {"_count": 1}}, "were": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "us": {"_count": 1}}, "similar": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "Magnolia": {"_count": 1}, "which": {"_count": 1}}, "streaming": {"_count": 1, "along": {"_count": 1}}, "including": {"_count": 1, "one": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "glided": {"_count": 1, "up": {"_count": 1}}, "stopped": {"_count": 1, "and": {"_count": 1}}, "pouring": {"_count": 1, "in": {"_count": 1}}}, "alone": {"_count": 304, "": {"_count": 88, ".": {"_count": 64}, "?": {"_count": 7}, "!": {"_count": 17}}, "while": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "feeling": {"_count": 1, "nervous": {"_count": 1}}, "I": {"_count": 2, "wondered": {"_count": 1}, "am": {"_count": 1}}, "the": {"_count": 4, "Bloody": {"_count": 1}, "best": {"_count": 1}, "tiny": {"_count": 1}, "school": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "but": {"_count": 3, "Im": {"_count": 1}, "where": {"_count": 1}, "when": {"_count": 1}}, "some": {"_count": 1, "time": {"_count": 1}}, "in": {"_count": 38, "the": {"_count": 19}, "Azkaban": {"_count": 1}, "a": {"_count": 4}, "rising": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 1}, "gratitude": {"_count": 1}, "concealing": {"_count": 1}, "his": {"_count": 4}, "this": {"_count": 1}, "London": {"_count": 2}, "there": {"_count": 1}, "silence": {"_count": 1}}, "being": {"_count": 1, "up": {"_count": 1}}, "if": {"_count": 2, "Gryffindor": {"_count": 1}, "I": {"_count": 1}}, "that": {"_count": 2, "night": {"_count": 1}, "nobody": {"_count": 1}}, "a": {"_count": 1, "cake": {"_count": 1}}, "he": {"_count": 3, "didnt": {"_count": 1}, "was": {"_count": 1}, "wanted": {"_count": 1}}, "with": {"_count": 13, "Professor": {"_count": 1}, "nothing": {"_count": 1}, "him": {"_count": 1}, "an": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 2}, "that": {"_count": 1}, "Phlegm": {"_count": 1}, "Slughorn": {"_count": 1}, "Harry": {"_count": 2}, "Ginny": {"_count": 1}}, "would": {"_count": 3, "be": {"_count": 2}, "have": {"_count": 1}}, "can": {"_count": 1, "control": {"_count": 1}}, "catch": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 13, "let": {"_count": 1}, "he": {"_count": 1}, "headed": {"_count": 1}, "friendless": {"_count": 3}, "ill": {"_count": 1}, "free": {"_count": 1}, "you": {"_count": 1}, "ankledeep": {"_count": 1}, "unaided": {"_count": 1}, "not": {"_count": 1}, "Harry": {"_count": 1}}, "together": {"_count": 6, "": {"_count": 2}, "an": {"_count": 1}, "for": {"_count": 2}, "and": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "at": {"_count": 8, "the": {"_count": 5}, "his": {"_count": 1}, "opposite": {"_count": 1}, "a": {"_count": 1}}, "reading": {"_count": 1, "a": {"_count": 1}}, "gazing": {"_count": 2, "at": {"_count": 1}, "blankly": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "until": {"_count": 1, "hes": {"_count": 1}}, "doing": {"_count": 2, "it": {"_count": 1}, "everything": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "beside": {"_count": 2, "the": {"_count": 2}}, "Harry": {"_count": 2, "Ive": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Sirius": {"_count": 1}, "Ron": {"_count": 1}}, "Dumbledore": {"_count": 1, "repeated": {"_count": 1}}, "Footsteps": {"_count": 1, "echoed": {"_count": 1}}, "looked": {"_count": 1, "calm": {"_count": 1}}, "remained": {"_count": 3, "": {"_count": 1}, "faithful": {"_count": 1}, "behind": {"_count": 1}}, "nearby": {"_count": 1, "leaning": {"_count": 1}}, "now": {"_count": 3, "everything": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "halfway": {"_count": 1, "up": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "Hermione": {"_count": 1, "hes": {"_count": 1}}, "than": {"_count": 2, "with": {"_count": 1}, "he": {"_count": 1}}, "know": {"_count": 2, "our": {"_count": 1}, "whether": {"_count": 1}}, "arent": {"_count": 2, "we": {"_count": 2}}, "could": {"_count": 4, "see": {"_count": 2}, "prevent": {"_count": 1}, "not": {"_count": 1}}, "shout": {"_count": 1, "": {"_count": 1}}, "cannot": {"_count": 1, "satisfy": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "and": {"_count": 1}}, "knew": {"_count": 2, "exactly": {"_count": 1}, "where": {"_count": 1}}, "were": {"_count": 2, "faithful": {"_count": 1}, "absent": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 2, "not": {"_count": 1}, "plumbed": {"_count": 1}}, "among": {"_count": 1, "wizards": {"_count": 1}}, "expulsion": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 3, "think": {"_count": 1}, "the": {"_count": 1}, "persuade": {"_count": 1}}, "given": {"_count": 1, "that": {"_count": 1}}, "too": {"_count": 1, "long": {"_count": 1}}, "either": {"_count": 1, "there": {"_count": 1}}, "how": {"_count": 1, "do": {"_count": 1}}, "seemed": {"_count": 2, "able": {"_count": 1}, "to": {"_count": 1}}, "underneath": {"_count": 1, "the": {"_count": 1}}, "shifted": {"_count": 1, "very": {"_count": 1}}, "feel": {"_count": 1, "and": {"_count": 1}}, "recognize": {"_count": 1, "danger": {"_count": 1}}, "are": {"_count": 2, "the": {"_count": 1}, "close": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 2, "everyone": {"_count": 1}, "the": {"_count": 1}}, "Lily": {"_count": 1, "repeated": {"_count": 1}}, "Lees": {"_count": 1, "already": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "was": {"_count": 1, "because": {"_count": 1}}, "offered": {"_count": 1, "his": {"_count": 1}}, "imprisoned": {"_count": 1, "within": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "Ginnyll": {"_count": 1, "probably": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "What": {"_count": 1, "": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "playing": {"_count": 1, "with": {"_count": 1}}, "tonight": {"_count": 1, "which": {"_count": 1}}, "actually": {"_count": 1, "": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "knows": {"_count": 2, "about": {"_count": 1}, "the": {"_count": 1}}, "suggested": {"_count": 1, "Dumbledore": {"_count": 1}}, "for": {"_count": 2, "Dumbledore": {"_count": 1}, "a": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "eyes": {"_count": 1, "closed": {"_count": 1}}, "waving": {"_count": 1, "her": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "leave": {"_count": 1, "him": {"_count": 1}}, "digging": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "probably": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "Neville": {"_count": 1, "said": {"_count": 1}}}, "cry": {"_count": 59, "loudly": {"_count": 1, "": {"_count": 1}}, "Mummy": {"_count": 1, "wont": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "!": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}, "of": {"_count": 14, "the": {"_count": 2}, "Filch": {"_count": 1}, "surprise": {"_count": 1}, "amazement": {"_count": 1}, "disgust": {"_count": 1}, "pain": {"_count": 2}, "rage": {"_count": 1}, "triumph": {"_count": 1}, "thankfulness": {"_count": 1}, "misery": {"_count": 1}, "greeting": {"_count": 1}, "shock": {"_count": 1}}, "\u2018Riddikulus": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "echoed": {"_count": 1, "along": {"_count": 1}}, "about": {"_count": 2, "them": {"_count": 1}, "": {"_count": 1}}, "please": {"_count": 1, "dont": {"_count": 1}}, "and": {"_count": 1, "theres": {"_count": 1}}, "Surely": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 3, "echoed": {"_count": 1}, "was": {"_count": 1}, "pulled": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "weakly": {"_count": 1, "into": {"_count": 1}}, "Collo": {"_count": 1, "aargh": {"_count": 1}}, "out": {"_count": 3, "a": {"_count": 1}, "MadEye": {"_count": 1}, "thinking": {"_count": 1}}, "Seize": {"_count": 1, "him": {"_count": 1}}, "startled": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "earnest": {"_count": 2}}, "Mum": {"_count": 1, "said": {"_count": 1}}, "over": {"_count": 1, "its": {"_count": 1}}, "she": {"_count": 1, "simply": {"_count": 1}}, "It": {"_count": 1, "had": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "Coward": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "answered": {"_count": 1}}}, "crying": {"_count": 64, "it": {"_count": 1, "had": {"_count": 1}}, "running": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "front": {"_count": 1}, "Transfiguration": {"_count": 1}}, "smiling": {"_count": 1, "but": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "continued": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 1}, "face": {"_count": 1}}, "noisily": {"_count": 1, "in": {"_count": 1}}, "if": {"_count": 1, "possible": {"_count": 1}}, "with": {"_count": 3, "mirth": {"_count": 1}, "exasperation": {"_count": 1}, "happiness": {"_count": 1}}, "and": {"_count": 5, "then": {"_count": 1}, "finished": {"_count": 1}, "stuff": {"_count": 1}, "saying": {"_count": 1}, "hugging": {"_count": 1}}, "harder": {"_count": 2, "than": {"_count": 2}}, "nor": {"_count": 1, "did": {"_count": 1}}, "anxious": {"_count": 1, "shouts": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "my": {"_count": 1, "eyes": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}, "over": {"_count": 1, "spilled": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}, "silently": {"_count": 3, "": {"_count": 1}, "their": {"_count": 1}, "into": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "about": {"_count": 1, "Cedric": {"_count": 1}}, "again": {"_count": 2, "said": {"_count": 2}}, "his": {"_count": 2, "eyes": {"_count": 1}, "lament": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "little": {"_count": 1, "boy": {"_count": 1}}, "Leanne": {"_count": 1, "told": {"_count": 1}}, "on": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "actually": {"_count": 1, "crying": {"_count": 1}}, "tears": {"_count": 1, "streaming": {"_count": 1}}, "quite": {"_count": 1, "silently": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "Thieves": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}}, "screwed": {"_count": 34, "up": {"_count": 29, "his": {"_count": 12}, "my": {"_count": 1}, "against": {"_count": 6}, "as": {"_count": 2}, "in": {"_count": 3}, "with": {"_count": 2}, "braced": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "tight": {"_count": 2, "under": {"_count": 1}, "with": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 1, "top": {"_count": 1}}, "itself": {"_count": 1, "back": {"_count": 1}}}, "wailed": {"_count": 15, "his": {"_count": 1, "mother": {"_count": 1}}, "Ive": {"_count": 1, "lost": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "every": {"_count": 1, "time": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "Dudley": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "sobbed": {"_count": 1}}, "Tonks": {"_count": 1, "who": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 3, "holding": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}}}, "Dinky": {"_count": 1, "Duddydums": {"_count": 1, "dont": {"_count": 1}}}, "Duddydums": {"_count": 1, "dont": {"_count": 1, "cry": {"_count": 1}}}, "Mummy": {"_count": 6, "wont": {"_count": 1, "let": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "by": {"_count": 1, "Christmas": {"_count": 1}}, "told": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "you": {"_count": 1}}}, "spoil": {"_count": 8, "your": {"_count": 2, "special": {"_count": 1}, "fun": {"_count": 1}}, "their": {"_count": 1, "happiness": {"_count": 1}}, "the": {"_count": 2, "surprise": {"_count": 2}}, "it": {"_count": 1, "fer": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "this": {"_count": 1, "old": {"_count": 1}}}, "flinging": {"_count": 7, "her": {"_count": 1, "arms": {"_count": 1}}, "himself": {"_count": 2, "onto": {"_count": 1}, "back": {"_count": 1}}, "down": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "an": {"_count": 1}}, "herself": {"_count": 1, "down": {"_count": 1}}, "it": {"_count": 1, "over": {"_count": 1}}}, "ttto": {"_count": 4, "come": {"_count": 1, "": {"_count": 1}}, "meet": {"_count": 1, "here": {"_count": 1}}, "tell": {"_count": 1, "him": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}}, "between": {"_count": 444, "huge": {"_count": 1, "pretend": {"_count": 1}}, "door": {"_count": 2, "and": {"_count": 2}}, "his": {"_count": 38, "teeth": {"_count": 6}, "nostrils": {"_count": 1}, "legs": {"_count": 1}, "long": {"_count": 3}, "own": {"_count": 2}, "mother": {"_count": 1}, "ribs": {"_count": 2}, "forefinger": {"_count": 1}, "cronies": {"_count": 1}, "sunken": {"_count": 1}, "fingers": {"_count": 4}, "eyebrows": {"_count": 2}, "thick": {"_count": 1}, "longfingered": {"_count": 1}, "silver": {"_count": 1}, "knees": {"_count": 2}, "wand": {"_count": 1}, "portrait": {"_count": 1}, "lids": {"_count": 1}, "swollen": {"_count": 1}, "knobbleknuckled": {"_count": 1}, "eyes": {"_count": 1}, "numb": {"_count": 1}, "chest": {"_count": 1}}, "a": {"_count": 11, "stalagmite": {"_count": 1}, "handshake": {"_count": 1}, "barn": {"_count": 1}, "snort": {"_count": 1}, "sob": {"_count": 1}, "nod": {"_count": 1}, "shriek": {"_count": 1}, "pass": {"_count": 1}, "desire": {"_count": 1}, "magical": {"_count": 1}, "whimper": {"_count": 1}}, "platforms": {"_count": 7, "nine": {"_count": 7}}, "the": {"_count": 91, "two": {"_count": 7}, "marmalade": {"_count": 1}, "eyes": {"_count": 1}, "bookshelves": {"_count": 1}, "lofty": {"_count": 1}, "wooden": {"_count": 1}, "musty": {"_count": 1}, "serpentine": {"_count": 1}, "feet": {"_count": 1}, "high": {"_count": 1}, "pillars": {"_count": 1}, "fridge": {"_count": 1}, "garage": {"_count": 2}, "trees": {"_count": 3}, "werewolf": {"_count": 1}, "window": {"_count": 1}, "leaves": {"_count": 2}, "battering": {"_count": 1}, "golden": {"_count": 1}, "rows": {"_count": 1}, "three": {"_count": 3}, "sheets": {"_count": 1}, "Ravenclaw": {"_count": 1}, "Gryffindor": {"_count": 3}, "lines": {"_count": 3}, "dragons": {"_count": 1}, "four": {"_count": 3}, "graves": {"_count": 2}, "sleeping": {"_count": 1}, "Ministry": {"_count": 1}, "carriage": {"_count": 1}, "shafts": {"_count": 1}, "tall": {"_count": 2}, "names": {"_count": 1}, "Creevey": {"_count": 1}, "hats": {"_count": 1}, "cushions": {"_count": 1}, "buttons": {"_count": 1}, "shoulder": {"_count": 1}, "beds": {"_count": 1}, "Houses": {"_count": 1}, "pulled": {"_count": 1}, "desks": {"_count": 2}, "tables": {"_count": 2}, "beech": {"_count": 1}, "seats": {"_count": 1}, "fingers": {"_count": 1}, "jostling": {"_count": 1}, "door": {"_count": 1}, "bookcases": {"_count": 1}, "towering": {"_count": 1}, "houses": {"_count": 1}, "Dark": {"_count": 1}, "new": {"_count": 1}, "filthy": {"_count": 1}, "first": {"_count": 1}, "best": {"_count": 1}, "attacks": {"_count": 1}, "presentday": {"_count": 1}, "chairs": {"_count": 1}, "heavy": {"_count": 1}, "chandelier": {"_count": 1}, "stubby": {"_count": 1}, "trunks": {"_count": 1}, "bars": {"_count": 1}, "other": {"_count": 1}, "Weasleys": {"_count": 1}, "teachers": {"_count": 1}, "survivors": {"_count": 1}}, "their": {"_count": 7, "legs": {"_count": 1}, "tents": {"_count": 1}, "heads": {"_count": 1}, "own": {"_count": 1}, "table": {"_count": 1}, "leering": {"_count": 1}, "masters": {"_count": 1}}, "classes": {"_count": 6, "in": {"_count": 1}, "and": {"_count": 1}, "nor": {"_count": 1}, "asking": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "monkshood": {"_count": 1, "and": {"_count": 1}}, "ceiling": {"_count": 1, "and": {"_count": 1}}, "Filch": {"_count": 1, "and": {"_count": 1}}, "them": {"_count": 83, "and": {"_count": 4}, "": {"_count": 35}, "trying": {"_count": 1}, "Harry": {"_count": 3}, "With": {"_count": 1}, "making": {"_count": 1}, "but": {"_count": 2}, "on": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 2}, "looking": {"_count": 1}, "looked": {"_count": 1}, "again": {"_count": 3}, "then": {"_count": 1}, "closing": {"_count": 1}, "as": {"_count": 4}, "once": {"_count": 2}, "the": {"_count": 1}, "which": {"_count": 1}, "Terry": {"_count": 1}, "straight": {"_count": 1}, "was": {"_count": 1}, "Sirius": {"_count": 1}, "a": {"_count": 1}, "exploded": {"_count": 1}, "this": {"_count": 1}, "now": {"_count": 1}, "each": {"_count": 1}, "bossing": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 1}, "to": {"_count": 1}, "so": {"_count": 1}, "We": {"_count": 1}, "grows": {"_count": 1}, "at": {"_count": 1}}, "Professor": {"_count": 2, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}}, "lessons": {"_count": 3, "it": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "horror": {"_count": 1, "at": {"_count": 1}}, "you": {"_count": 15, "and": {"_count": 10}, "": {"_count": 2}, "is": {"_count": 1}, "exists": {"_count": 1}, "when": {"_count": 1}}, "Ron": {"_count": 8, "and": {"_count": 8}}, "all": {"_count": 3, "magic": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}}, "disapproval": {"_count": 1, "and": {"_count": 1}}, "two": {"_count": 14, "windows": {"_count": 1}, "of": {"_count": 1}, "names": {"_count": 1}, "lines": {"_count": 1}, "gnarled": {"_count": 1}, "old": {"_count": 1}, "wars": {"_count": 1}, "trees": {"_count": 2}, "rows": {"_count": 2}, "steep": {"_count": 1}, "guffawing": {"_count": 1}, "mugs": {"_count": 1}}, "Slytherin": {"_count": 2, "and": {"_count": 2}}, "him": {"_count": 9, "and": {"_count": 9}}, "us": {"_count": 3, "after": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "Dudley": {"_count": 1, "and": {"_count": 1}}, "Fudge": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 7, "hands": {"_count": 2}, "fingers": {"_count": 1}, "teeth": {"_count": 1}, "son": {"_count": 1}, "and": {"_count": 2}}, "Harrys": {"_count": 1, "robes": {"_count": 1}}, "someones": {"_count": 1, "attic": {"_count": 1}}, "Crabbe": {"_count": 2, "and": {"_count": 2}}, "Harry": {"_count": 8, "and": {"_count": 7}, "Ron": {"_count": 1}}, "We": {"_count": 1, "told": {"_count": 1}}, "Professors": {"_count": 1, "Snape": {"_count": 1}}, "Rons": {"_count": 2, "clutching": {"_count": 1}, "fourteenth": {"_count": 1}}, "Blacks": {"_count": 1, "eyes": {"_count": 1}}, "amusement": {"_count": 1, "and": {"_count": 1}}, "long": {"_count": 1, "rows": {"_count": 1}}, "its": {"_count": 1, "fingers": {"_count": 1}}, "young": {"_count": 1, "witches": {"_count": 1}}, "exasperation": {"_count": 1, "at": {"_count": 1}}, "giant": {"_count": 1, "scorpions": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "manticores": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 5, "and": {"_count": 5}}, "what": {"_count": 2, "is": {"_count": 1}, "looked": {"_count": 1}}, "Magnolia": {"_count": 3, "Crescent": {"_count": 3}}, "garage": {"_count": 1, "walls": {"_count": 1}}, "numbers": {"_count": 1, "eleven": {"_count": 1}}, "mouthfuls": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "and": {"_count": 1}}, "myself": {"_count": 1, "and": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "Gryffindor": {"_count": 1, "and": {"_count": 1}}, "old": {"_count": 1, "and": {"_count": 1}}, "permanence": {"_count": 1, "and": {"_count": 1}}, "tradition": {"_count": 1, "and": {"_count": 1}}, "Neville": {"_count": 3, "and": {"_count": 3}}, "tables": {"_count": 2, "chairs": {"_count": 1}, "pouffes": {"_count": 1}}, "three": {"_count": 1, "you": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "Alicia": {"_count": 1, "and": {"_count": 1}}, "four": {"_count": 1, "pretty": {"_count": 1}}, "knarls": {"_count": 1, "and": {"_count": 1}}, "shining": {"_count": 1, "metal": {"_count": 1}}, "life": {"_count": 2, "and": {"_count": 2}}, "yelps": {"_count": 1, "of": {"_count": 1}}, "Fred": {"_count": 3, "and": {"_count": 3}}, "curtains": {"_count": 1, "of": {"_count": 1}}, "highrise": {"_count": 1, "flats": {"_count": 1}}, "Smiths": {"_count": 1, "shoulder": {"_count": 1}}, "Acceptable": {"_count": 1, "and": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cabin": {"_count": 1, "and": {"_count": 1}}, "Pierre": {"_count": 1, "Bonaccord": {"_count": 1}}, "wondering": {"_count": 1, "when": {"_count": 1}}, "overgrown": {"_count": 1, "rubbish": {"_count": 1}}, "patches": {"_count": 1, "of": {"_count": 1}}, "members": {"_count": 1, "and": {"_count": 1}}, "frenzied": {"_count": 1, "mouthfuls": {"_count": 1}}, "Hagrids": {"_count": 1, "elbow": {"_count": 1}}, "herself": {"_count": 1, "and": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "Malfoy": {"_count": 2, "and": {"_count": 2}}, "James": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 2, "death": {"_count": 1}, "wand": {"_count": 1}}, "an": {"_count": 2, "Inferius": {"_count": 2}}, "sleeping": {"_count": 1, "and": {"_count": 1}}, "being": {"_count": 1, "dragged": {"_count": 1}}, "my": {"_count": 1, "own": {"_count": 1}}, "yourselves": {"_count": 1, "and": {"_count": 1}}, "Support": {"_count": 1, "CEDRIC": {"_count": 1}}, "Albus": {"_count": 1, "and": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "annoyance": {"_count": 1, "and": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "your": {"_count": 1, "two": {"_count": 1}}, "Luna": {"_count": 1, "and": {"_count": 1}}, "Doge": {"_count": 1, "and": {"_count": 1}}, "night": {"_count": 1, "and": {"_count": 1}}, "staying": {"_count": 1, "and": {"_count": 1}}, "fields": {"_count": 1, "and": {"_count": 1}}, "Cattermole": {"_count": 1, "and": {"_count": 1}}, "tent": {"_count": 1, "and": {"_count": 1}}, "gritted": {"_count": 1, "teeth": {"_count": 1}}, "Disapparition": {"_count": 1, "and": {"_count": 1}}, "skepticism": {"_count": 1, "and": {"_count": 1}}, "clouds": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "books": {"_count": 1}}, "high": {"_count": 1, "hedges": {"_count": 1}}, "bushes": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "wizards": {"_count": 3, "and": {"_count": 3}}, "wizard": {"_count": 1, "and": {"_count": 1}}, "our": {"_count": 1, "wands": {"_count": 1}}, "stalactites": {"_count": 1, "flying": {"_count": 1}}, "truth": {"_count": 1, "and": {"_count": 1}}, "glittering": {"_count": 1, "cage": {"_count": 1}}, "crate": {"_count": 2, "and": {"_count": 2}}, "curiosity": {"_count": 1, "and": {"_count": 1}}, "those": {"_count": 1, "wands": {"_count": 1}}, "duelers": {"_count": 1, "past": {"_count": 1}}, "both": {"_count": 1, "wanting": {"_count": 1}}}, "sobs": {"_count": 25, "": {"_count": 11, ".": {"_count": 11}}, "and": {"_count": 2, "fled": {"_count": 1}, "shouts": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "redoubled": {"_count": 1, "but": {"_count": 1}}, "echoed": {"_count": 2, "around": {"_count": 1}, "through": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "during": {"_count": 1, "Divination": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "did": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "in": {"_count": 1}}, "masked": {"_count": 1, "Harrys": {"_count": 1}}, "great": {"_count": 1, "tears": {"_count": 1}}}, "sp": {"_count": 1, "spoils": {"_count": 1, "everything": {"_count": 1}}}, "spoils": {"_count": 1, "everything": {"_count": 1, "": {"_count": 1}}}, "gap": {"_count": 40, "in": {"_count": 15, "his": {"_count": 2}, "the": {"_count": 12}, "its": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "after": {"_count": 1, "Ginny": {"_count": 1}}, "between": {"_count": 8, "the": {"_count": 5}, "their": {"_count": 1}, "them": {"_count": 1}, "Crabbe": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "beneath": {"_count": 1, "beds": {"_count": 1}}, "casting": {"_count": 1, "a": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 2, "all": {"_count": 1}, "only": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 2, "between": {"_count": 2}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "mothers": {"_count": 83, "arms": {"_count": 2, "": {"_count": 2}}, "up": {"_count": 1, "the": {"_count": 1}}, "eyes": {"_count": 4, "": {"_count": 3}, "yeah": {"_count": 1}}, "face": {"_count": 3, "whispered": {"_count": 1}, "his": {"_count": 1}, "when": {"_count": 1}}, "breathe": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "sister": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "eye": {"_count": 4, "and": {"_count": 3}, "": {"_count": 1}}, "side": {"_count": 1, "": {"_count": 1}}, "orders": {"_count": 1, "was": {"_count": 1}}, "life": {"_count": 1, "her": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "begging": {"_count": 1}}, "death": {"_count": 4, "again": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "anxious": {"_count": 1, "voice": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "shoulder": {"_count": 2, "": {"_count": 1}, "There": {"_count": 1}}, "hairs": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "youre": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 2}}, "bedroom": {"_count": 1, "": {"_count": 1}}, "portrait": {"_count": 3, "because": {"_count": 1}, "and": {"_count": 1}, "should": {"_count": 1}}, "heart": {"_count": 1, "My": {"_count": 1}}, "boots": {"_count": 1, "oh": {"_count": 1}}, "room": {"_count": 1, "with": {"_count": 1}}, "house": {"_count": 2, "stank": {"_count": 1}, "for": {"_count": 1}}, "old": {"_count": 2, "house": {"_count": 1}, "bloomers": {"_count": 1}}, "letter": {"_count": 5, "as": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "into": {"_count": 1}}, "blood": {"_count": 2, "": {"_count": 1}, "dwells": {"_count": 1}}, "sacrifice": {"_count": 2, "made": {"_count": 1}, "into": {"_count": 1}}, "quite": {"_count": 1, "right": {"_count": 1}}, "famous": {"_count": 1, "said": {"_count": 1}}, "talent": {"_count": 1, "": {"_count": 1}}, "courage": {"_count": 1, "": {"_count": 1}}, "family": {"_count": 1, "the": {"_count": 1}}, "fathers": {"_count": 1, "name": {"_count": 1}}, "genes": {"_count": 1, "coming": {"_count": 1}}, "to": {"_count": 1, "think": {"_count": 1}}, "clutches": {"_count": 1, "and": {"_count": 1}}, "charm": {"_count": 3, "does": {"_count": 1}, "will": {"_count": 1}, "holds": {"_count": 1}}, "words": {"_count": 1, "": {"_count": 1}}, "knee": {"_count": 1, "": {"_count": 1}}, "funeral": {"_count": 1, "and": {"_count": 1}}, "grip": {"_count": 1, "": {"_count": 1}}, "Percy": {"_count": 1, "and": {"_count": 1}}, "diadem": {"_count": 1, "Your": {"_count": 1}}, "reach": {"_count": 1, "": {"_count": 1}}, "care": {"_count": 1, "and": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "brains": {"_count": 1, "": {"_count": 1}}, "foolishness": {"_count": 1, "he": {"_count": 1}}}, "Just": {"_count": 235, "then": {"_count": 12, "the": {"_count": 3}, "Ginny": {"_count": 1}, "Hagrid": {"_count": 1}, "there": {"_count": 2}, "they": {"_count": 1}, "a": {"_count": 2}, "Neville": {"_count": 1}, "Hermione": {"_count": 1}}, "pack": {"_count": 1, "some": {"_count": 1}}, "the": {"_count": 5, "one": {"_count": 3}, "man": {"_count": 1}, "back": {"_count": 1}}, "yer": {"_count": 1, "wand": {"_count": 1}}, "Ollivanders": {"_count": 1, "left": {"_count": 1}}, "take": {"_count": 3, "it": {"_count": 2}, "the": {"_count": 1}}, "be": {"_count": 1, "yerself": {"_count": 1}}, "do": {"_count": 5, "your": {"_count": 1}, "what": {"_count": 1}, "me": {"_count": 1}, "it": {"_count": 2}}, "what": {"_count": 1, "I": {"_count": 1}}, "looking": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 18, "bit": {"_count": 2}, "get": {"_count": 1}, "small": {"_count": 2}, "nightmare": {"_count": 1}, "little": {"_count": 3}, "stupid": {"_count": 1}, "couple": {"_count": 1}, "moment": {"_count": 3}, "fun": {"_count": 1}, "friendly": {"_count": 1}, "fox": {"_count": 1}, "laugh": {"_count": 1}}, "one": {"_count": 5, "said": {"_count": 1}, "thing": {"_count": 2}, "more": {"_count": 1}, "last": {"_count": 1}}, "before": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 2}}, "have": {"_count": 1, "to": {"_count": 1}}, "come": {"_count": 2, "round": {"_count": 1}, "out": {"_count": 1}}, "as": {"_count": 20, "Ron": {"_count": 1}, "long": {"_count": 4}, "well": {"_count": 1}, "Katie": {"_count": 1}, "it": {"_count": 2}, "he": {"_count": 7}, "Harry": {"_count": 1}, "modest": {"_count": 1}, "a": {"_count": 1}, "Voldemort": {"_count": 1}}, "let": {"_count": 2, "him": {"_count": 1}, "go": {"_count": 1}}, "in": {"_count": 8, "case": {"_count": 7}, "passing": {"_count": 1}}, "tell": {"_count": 2, "us": {"_count": 1}, "me": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "nephew": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "Mugglebaiting": {"_count": 1, "sighed": {"_count": 1}}, "so": {"_count": 2, "you": {"_count": 1}, "that": {"_count": 1}}, "been": {"_count": 1, "showing": {"_count": 1}}, "calm": {"_count": 1, "down": {"_count": 1}}, "saying": {"_count": 1, "saying": {"_count": 1}}, "because": {"_count": 9, "a": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 2}, "theyre": {"_count": 1}, "its": {"_count": 1}, "youve": {"_count": 1}, "hes": {"_count": 1}, "Ive": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 5, "background": {"_count": 1}, "trying": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}}, "to": {"_count": 3, "see": {"_count": 1}, "make": {"_count": 1}, "er": {"_count": 1}}, "you": {"_count": 3, "and": {"_count": 2}, "then": {"_count": 1}}, "promise": {"_count": 1, "never": {"_count": 1}}, "stick": {"_count": 2, "out": {"_count": 1}, "to": {"_count": 1}}, "ignore": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "keep": {"_count": 4, "him": {"_count": 2}, "a": {"_count": 1}, "your": {"_count": 1}}, "appear": {"_count": 1, "out": {"_count": 1}}, "after": {"_count": 2, "you": {"_count": 1}, "his": {"_count": 1}}, "tap": {"_count": 1, "it": {"_count": 1}}, "leave": {"_count": 1, "me": {"_count": 1}}, "just": {"_count": 6, "fly": {"_count": 1}, "prod": {"_count": 1}, "toast": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "show": {"_count": 1}}, "now": {"_count": 4, "": {"_count": 3}, "before": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 3}}, "had": {"_count": 1, "an": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "standing": {"_count": 1, "here": {"_count": 1}}, "thinking": {"_count": 2, "about": {"_count": 1}, "": {"_count": 1}}, "go": {"_count": 3, "": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}}, "dont": {"_count": 5, "get": {"_count": 1}, "tell": {"_count": 2}, "sell": {"_count": 1}, "think": {"_count": 1}}, "put": {"_count": 2, "them": {"_count": 1}, "my": {"_count": 1}}, "Apparated": {"_count": 1, "Dad": {"_count": 1}}, "picture": {"_count": 1, "coming": {"_count": 1}}, "reading": {"_count": 1, "this": {"_count": 1}}, "find": {"_count": 1, "him": {"_count": 1}}, "taken": {"_count": 1, "it": {"_count": 1}}, "get": {"_count": 3, "past": {"_count": 1}, "up": {"_count": 1}, "well": {"_count": 1}}, "hope": {"_count": 1, "hes": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}, "thought": {"_count": 2, "youd": {"_count": 1}, "Id": {"_count": 1}}, "my": {"_count": 1, "little": {"_count": 1}}, "tickle": {"_count": 1, "the": {"_count": 1}}, "forget": {"_count": 1, "the": {"_count": 1}}, "send": {"_count": 2, "notes": {"_count": 1}, "them": {"_count": 1}}, "stay": {"_count": 3, "with": {"_count": 1}, "in": {"_count": 1}, "put": {"_count": 1}}, "give": {"_count": 3, "me": {"_count": 2}, "us": {"_count": 1}}, "like": {"_count": 6, "Moody": {"_count": 1}, "that": {"_count": 2}, "Hermione": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "try": {"_count": 4, "and": {"_count": 4}}, "answer": {"_count": 2, "no": {"_count": 2}}, "tired": {"_count": 1, "": {"_count": 1}}, "Interdepartmental": {"_count": 1, "memos": {"_count": 1}}, "round": {"_count": 1, "here": {"_count": 1}}, "caught": {"_count": 1, "her": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "remember": {"_count": 1, "Tread": {"_count": 1}}, "an": {"_count": 1, "idea": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "stop": {"_count": 1, "worrying": {"_count": 1}}, "think": {"_count": 1, "of": {"_count": 1}}, "outside": {"_count": 1, "Birmingham": {"_count": 1}}, "reach": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 1, "one": {"_count": 1}}, "nod": {"_count": 1, "or": {"_count": 1}}, "drop": {"_count": 1, "it": {"_count": 1}}, "time": {"_count": 1, "for": {"_count": 1}}, "two": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 1, "feel": {"_count": 1}}, "choose": {"_count": 1, "someone": {"_count": 1}}, "up": {"_count": 1, "here": {"_count": 1}}, "sling": {"_count": 1, "them": {"_count": 1}}, "about": {"_count": 1, "said": {"_count": 1}}, "dab": {"_count": 1, "it": {"_count": 1}}, "hurry": {"_count": 1, "": {"_count": 1}}, "some": {"_count": 1, "stupid": {"_count": 1}}, "this": {"_count": 1, "once": {"_count": 1}}, "hang": {"_count": 1, "back": {"_count": 1}}, "shove": {"_count": 1, "a": {"_count": 1}}, "drink": {"_count": 2, "Professor": {"_count": 1}, "this": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}, "add": {"_count": 1, "it": {"_count": 1}}, "look": {"_count": 1, "around": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "seen": {"_count": 1, "him": {"_count": 1}}}, "doorbell": {"_count": 11, "rang": {"_count": 9, "Oh": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 3}, "again": {"_count": 1}, "several": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "Lord": {"_count": 383, "theyre": {"_count": 1, "here": {"_count": 1}}, "said": {"_count": 9, "the": {"_count": 2}, "Snape": {"_count": 1}, "Yaxley": {"_count": 1}, "Lucius": {"_count": 1}, "a": {"_count": 2}, "Ollivander": {"_count": 1}, "Dolohov": {"_count": 1}}, "Voldemort": {"_count": 124, "on": {"_count": 1}, "showed": {"_count": 1}, "whose": {"_count": 1}, "himself": {"_count": 1}, "Heir": {"_count": 1}, "got": {"_count": 1}, "managed": {"_count": 1}, "was": {"_count": 5}, "he": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 25}, "who": {"_count": 4}, "had": {"_count": 5}, "three": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 6}, "and": {"_count": 8}, "Muggle": {"_count": 1}, "is": {"_count": 6}, "rewards": {"_count": 1}, "will": {"_count": 3}, "ask": {"_count": 1}, "has": {"_count": 9}, "s": {"_count": 1}, "said": {"_count": 2}, "being": {"_count": 1}, "not": {"_count": 2}, "her": {"_count": 1}, "tortured": {"_count": 1}, "return": {"_count": 1}, "sticking": {"_count": 1}, "the": {"_count": 2}, "stop": {"_count": 1}, "for": {"_count": 1}, "walking": {"_count": 1}, "left": {"_count": 1}, "back": {"_count": 1}, "than": {"_count": 1}, "use": {"_count": 1}, "liked": {"_count": 1}, "would": {"_count": 4}, "fails": {"_count": 1}, "believes": {"_count": 1}, "realized": {"_count": 1}, "Ollivander": {"_count": 1}, "Gregorovitch": {"_count": 1}, "needed": {"_count": 1}, "knows": {"_count": 1}, "have": {"_count": 2}, "foresees": {"_count": 1}, "stops": {"_count": 1}, "tried": {"_count": 1}, "lives": {"_count": 1}, "cannot": {"_count": 1}, "doubled": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "instance": {"_count": 1}}, "disappear": {"_count": 1, "ah": {"_count": 1}}, "competing": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 55, ".": {"_count": 35}, "?": {"_count": 11}, "!": {"_count": 9}}, "Voldemorts": {"_count": 25, "powers": {"_count": 1}, "old": {"_count": 1}, "wrath": {"_count": 2}, "mark": {"_count": 1}, "": {"_count": 2}, "downfall": {"_count": 1}, "supporters": {"_count": 1}, "rebirth": {"_count": 1}, "return": {"_count": 2}, "gift": {"_count": 1}, "back": {"_count": 1}, "gratitude": {"_count": 1}, "just": {"_count": 1}, "secrets": {"_count": 1}, "beginnings": {"_count": 1}, "mystique": {"_count": 1}, "mind": {"_count": 2}, "employ": {"_count": 1}, "obstacles": {"_count": 1}, "soul": {"_count": 1}, "good": {"_count": 1}}, "he": {"_count": 4, "so": {"_count": 1}, "whispered": {"_count": 1}, "said": {"_count": 1}, "might": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "lies": {"_count": 1, "alone": {"_count": 1}}, "will": {"_count": 8, "rise": {"_count": 2}, "not": {"_count": 3}, "mark": {"_count": 1}, "be": {"_count": 1}, "return": {"_count": 1}}, "I": {"_count": 10, "think": {"_count": 1}, "do": {"_count": 1}, "must": {"_count": 1}, "am": {"_count": 1}, "was": {"_count": 1}, "prostrate": {"_count": 1}, "can": {"_count": 1}, "know": {"_count": 1}, "have": {"_count": 2}}, "if": {"_count": 1, "you": {"_count": 1}}, "may": {"_count": 2, "I": {"_count": 1}, "be": {"_count": 1}}, "it": {"_count": 1, "makes": {"_count": 1}}, "Liar": {"_count": 2, "breathed": {"_count": 1}, "said": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkinss": {"_count": 1}}, "is": {"_count": 14, "it": {"_count": 1}, "highly": {"_count": 1}, "at": {"_count": 1}, "now": {"_count": 1}, "saying": {"_count": 1}, "": {"_count": 1}, "pleased": {"_count": 1}, "satisfied": {"_count": 1}, "not": {"_count": 2}, "granting": {"_count": 1}, "angry": {"_count": 1}, "very": {"_count": 1}, "coming": {"_count": 1}}, "would": {"_count": 2, "rise": {"_count": 1}, "be": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 2}}, "was": {"_count": 3, "there": {"_count": 1}, "at": {"_count": 1}, "reborn": {"_count": 1}}, "got": {"_count": 1, "his": {"_count": 1}}, "take": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 2, "wish": {"_count": 1}, "change": {"_count": 1}}, "has": {"_count": 10, "ways": {"_count": 1}, "returned": {"_count": 1}, "been": {"_count": 1}, "not": {"_count": 1}, "in": {"_count": 1}, "forbidden": {"_count": 1}, "told": {"_count": 1}, "ordered": {"_count": 1}, "used": {"_count": 1}, "gone": {"_count": 1}}, "didnt": {"_count": 1, "manage": {"_count": 1}}, "and": {"_count": 3, "I": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "meant": {"_count": 1, "and": {"_count": 1}}, "boy": {"_count": 1, "they": {"_count": 1}}, "hang": {"_count": 1, "on": {"_count": 1}}, "Voldythings": {"_count": 1, "back": {"_count": 1}}, "Kreacher": {"_count": 1, "wonders": {"_count": 1}}, "yes": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 1, "must": {"_count": 1}}, "gasped": {"_count": 2, "Rookwood": {"_count": 1}, "a": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "Can": {"_count": 1, "you": {"_count": 1}}, "Ive": {"_count": 1, "only": {"_count": 1}}, "always": {"_count": 1, "knows": {"_count": 1}}, "understands": {"_count": 1, "this": {"_count": 1}}, "wondered": {"_count": 1, "why": {"_count": 1}}, "discovered": {"_count": 1, "when": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "walk": {"_count": 1, "into": {"_count": 1}}, "reveal": {"_count": 1, "himself": {"_count": 1}}, "knows": {"_count": 6, "you": {"_count": 1}, "not": {"_count": 3}, "I": {"_count": 2}}, "approaches": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "you": {"_count": 1}}, "Thingy": {"_count": 1, "": {"_count": 1}}, "Vol": {"_count": 1, "HeWhoMustNotBeNamed": {"_count": 1}}, "trusts": {"_count": 1, "him": {"_count": 1}}, "placed": {"_count": 1, "you": {"_count": 1}}, "fell": {"_count": 3, "": {"_count": 3}}, "procuring": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "greatest": {"_count": 1}, "Order": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "does": {"_count": 2, "not": {"_count": 2}}, "thought": {"_count": 1, "that": {"_count": 1}}, "perhaps": {"_count": 1, "you": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "acknowledges": {"_count": 1, "it": {"_count": 1}}, "last": {"_count": 1, "month": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "takes": {"_count": 1, "over": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "Dawlish": {"_count": 1, "seemed": {"_count": 1}}, "Yaxley": {"_count": 1, "went": {"_count": 1}}, "unless": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 2, "is": {"_count": 1}, "Potter": {"_count": 1}}, "whispered": {"_count": 2, "Malfoy": {"_count": 1}, "Bellatrix": {"_count": 1}}, "she": {"_count": 1, "cried": {"_count": 1}}, "Thing": {"_count": 1, "Voldemort": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "required": {"_count": 1, "an": {"_count": 1}}, "ordered": {"_count": 1, "him": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "made": {"_count": 1, "Kreacher": {"_count": 1}}, "only": {"_count": 1, "laughed": {"_count": 1}}, "sailed": {"_count": 1, "away": {"_count": 1}}, "had": {"_count": 1, "said": {"_count": 1}}, "proper": {"_count": 1, "respect": {"_count": 1}}, "everything": {"_count": 1, "will": {"_count": 1}}, "here": {"_count": 1, "for": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "comes": {"_count": 1, "now": {"_count": 1}}, "wishes": {"_count": 1, "to": {"_count": 1}}, "becomes": {"_count": 1, "ever": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "in": {"_count": 2, "possession": {"_count": 1}, "the": {"_count": 1}}, "forgives": {"_count": 1, "those": {"_count": 1}}, "stammered": {"_count": 1, "the": {"_count": 1}}, "wants": {"_count": 5, "Potter": {"_count": 1}, "Potters": {"_count": 1}, "who": {"_count": 1}, "him": {"_count": 2}}, "going": {"_count": 1, "to": {"_count": 1}}, "gets": {"_count": 1, "hold": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Havent": {"_count": 1, "I": {"_count": 1}}, "their": {"_count": 1, "resistance": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "there": {"_count": 1, "can": {"_count": 1}}, "let": {"_count": 2, "me": {"_count": 2}}, "The": {"_count": 1, "Elder": {"_count": 1}}, "Bellatrix": {"_count": 1, "had": {"_count": 1}}}, "frantically": {"_count": 39, "and": {"_count": 2, "a": {"_count": 1}, "fruitlessly": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "please": {"_count": 1, "be": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "wiggling": {"_count": 1, "Scabbers": {"_count": 1}}, "a": {"_count": 1, "glint": {"_count": 1}}, "dancing": {"_count": 1, "uncertainly": {"_count": 1}}, "her": {"_count": 1, "ears": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "searching": {"_count": 1, "their": {"_count": 1}}, "to": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "listen": {"_count": 1, "are": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 2, "hands": {"_count": 1}, "fists": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "scuffling": {"_count": 1, "footsteps": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "pressing": {"_count": 1, "herself": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "swiveling": {"_count": 1, "eyes": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}}, "Piers": {"_count": 16, "Polkiss": {"_count": 2, "walked": {"_count": 1}, "was": {"_count": 1}}, "was": {"_count": 3, "a": {"_count": 1}, "swearing": {"_count": 1}, "safely": {"_count": 1}}, "and": {"_count": 3, "Dudley": {"_count": 3}}, "to": {"_count": 1, "be": {"_count": 1}}, "sniggered": {"_count": 1, "": {"_count": 1}}, "large": {"_count": 1, "chocolate": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "calming": {"_count": 1, "down": {"_count": 1}}, "Dennis": {"_count": 1, "Malcolm": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Polkiss": {"_count": 3, "walked": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 1, "going": {"_count": 1}}, "give": {"_count": 1, "you": {"_count": 1}}}, "scrawny": {"_count": 7, "boy": {"_count": 2, "with": {"_count": 1}, "tried": {"_count": 1}}, "dust": {"_count": 2, "colored": {"_count": 2}}, "neck": {"_count": 1, "": {"_count": 1}}, "fox": {"_count": 1, "that": {"_count": 1}}, "gits": {"_count": 1, "forever": {"_count": 1}}}, "rat": {"_count": 67, "": {"_count": 8, ".": {"_count": 5}, "?": {"_count": 3}}, "which": {"_count": 2, "was": {"_count": 1}, "chased": {"_count": 1}}, "was": {"_count": 6, "still": {"_count": 1}, "hanging": {"_count": 1}, "secondhand": {"_count": 1}, "going": {"_count": 1}, "squealing": {"_count": 1}, "wriggling": {"_count": 1}}, "yellow": {"_count": 1, "": {"_count": 1}}, "Scabbers": {"_count": 4, "who": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "intestines": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "tails": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 3, "told": {"_count": 1}, "might": {"_count": 1}, "was": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "tonic": {"_count": 6, "said": {"_count": 3}, "was": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 2}}, "spleen": {"_count": 1, "was": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "whats": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "sliding": {"_count": 1}}, "and": {"_count": 3, "held": {"_count": 1}, "his": {"_count": 1}, "Pettigrew": {"_count": 1}}, "had": {"_count": 1, "slipped": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "croaked": {"_count": 1, "Sirius": {"_count": 1}}, "No": {"_count": 1, "hes": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "But": {"_count": 1, "there": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "What": {"_count": 1, "are": {"_count": 1}}, "it": {"_count": 1, "wont": {"_count": 1}}, "fell": {"_count": 1, "and": {"_count": 1}}, "lingered": {"_count": 1, "around": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "than": {"_count": 1, "a": {"_count": 1}}, "hes": {"_count": 1, "an": {"_count": 1}}, "Pettigrews": {"_count": 1, "front": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "always": {"_count": 1}}, "droppings": {"_count": 1, "didnt": {"_count": 1}}}, "peoples": {"_count": 21, "arms": {"_count": 1, "behind": {"_count": 1}}, "heads": {"_count": 1, "down": {"_count": 1}}, "minds": {"_count": 2, "work": {"_count": 2}}, "shoes": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "I": {"_count": 1}}, "shins": {"_count": 1, "and": {"_count": 1}}, "mouths": {"_count": 1, "will": {"_count": 1}}, "favorite": {"_count": 1, "class": {"_count": 1}}, "pets": {"_count": 1, "matter": {"_count": 1}}, "business": {"_count": 1, "": {"_count": 1}}, "deaths": {"_count": 1, "were": {"_count": 1}}, "houses": {"_count": 1, "and": {"_count": 1}}, "only": {"_count": 1, "its": {"_count": 1}}, "studying": {"_count": 1, "too": {"_count": 1}}, "drinks": {"_count": 1, "": {"_count": 1}}, "sons": {"_count": 1, "and": {"_count": 1}}, "memories": {"_count": 1, "for": {"_count": 1}}, "ears": {"_count": 1, "I": {"_count": 1}}, "company": {"_count": 1, "or": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "backs": {"_count": 23, "while": {"_count": 1, "Dudley": {"_count": 1}}, "to": {"_count": 2, "it": {"_count": 1}, "Harry": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "my": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "slapped": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "endless": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 3, "walked": {"_count": 1}, "talk": {"_count": 1}, "heads": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "of": {"_count": 2, "their": {"_count": 2}}, "turned": {"_count": 1, "growled": {"_count": 1}}, "up": {"_count": 1, "too": {"_count": 1}}, "resting": {"_count": 1, "against": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "hit": {"_count": 275, "them": {"_count": 7, "": {"_count": 3}, "they": {"_count": 1}, "then": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}}, "a": {"_count": 12, "lot": {"_count": 1}, "hang": {"_count": 1}, "Bludger": {"_count": 2}, "dead": {"_count": 2}, "nearby": {"_count": 1}, "rocket": {"_count": 1}, "glassfronted": {"_count": 1}, "desk": {"_count": 2}, "suit": {"_count": 1}}, "him": {"_count": 44, "round": {"_count": 1}, "hadnt": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 5}, "with": {"_count": 7}, "in": {"_count": 4}, "his": {"_count": 1}, "on": {"_count": 2}, "he": {"_count": 2}, "hard": {"_count": 3}, "and": {"_count": 1}, "full": {"_count": 1}, "both": {"_count": 1}, "hit": {"_count": 1}, "so": {"_count": 1}, "were": {"_count": 1}, "around": {"_count": 1}, "squarely": {"_count": 1}, "but": {"_count": 1}, "across": {"_count": 2}, "though": {"_count": 1}, "Her": {"_count": 1}, "over": {"_count": 1}, "first": {"_count": 1}, "felt": {"_count": 1}}, "with": {"_count": 2, "such": {"_count": 1}, "it": {"_count": 1}}, "the": {"_count": 94, "window": {"_count": 1}, "field": {"_count": 1}, "ground": {"_count": 21}, "hearth": {"_count": 1}, "barrier": {"_count": 1}, "thick": {"_count": 1}, "windshield": {"_count": 1}, "roof": {"_count": 1}, "mud": {"_count": 1}, "floor": {"_count": 10}, "dark": {"_count": 1}, "stone": {"_count": 8}, "Chamber": {"_count": 1}, "doorknob": {"_count": 1}, "Whomping": {"_count": 1}, "trunk": {"_count": 1}, "table": {"_count": 1}, "bottom": {"_count": 3}, "cold": {"_count": 1}, "skrewts": {"_count": 2}, "spiders": {"_count": 1}, "headstones": {"_count": 1}, "ceiling": {"_count": 2}, "wall": {"_count": 3}, "large": {"_count": 1}, "forest": {"_count": 1}, "shelf": {"_count": 1}, "nearest": {"_count": 1}, "Death": {"_count": 1}, "prophecy": {"_count": 1}, "wrought": {"_count": 1}, "head": {"_count": 1}, "eye": {"_count": 1}, "air": {"_count": 1}, "opposite": {"_count": 2}, "greenhouse": {"_count": 1}, "bowl": {"_count": 1}, "bank": {"_count": 1}, "ramparts": {"_count": 1}, "middle": {"_count": 1}, "waitress": {"_count": 1}, "edge": {"_count": 1}, "snow": {"_count": 1}, "curtained": {"_count": 1}, "one": {"_count": 1}, "Erumpent": {"_count": 1}, "water": {"_count": 1}, "suit": {"_count": 1}, "Cloak": {"_count": 1}, "marble": {"_count": 1}, "innocent": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 5}}, "hard": {"_count": 1, "in": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 4, "side": {"_count": 1}, "face": {"_count": 2}, "trunk": {"_count": 1}}, "was": {"_count": 1, "attacking": {"_count": 1}}, "we": {"_count": 1, "had": {"_count": 1}}, "fortyfive": {"_count": 1, "times": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 3}}, "it": {"_count": 7, "hard": {"_count": 1}, "hit": {"_count": 1}, "as": {"_count": 1}, "they": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "leaving": {"_count": 1}}, "Harry": {"_count": 8, "so": {"_count": 3}, "squarely": {"_count": 1}, "hard": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}, "with": {"_count": 1}}, "Malfoy": {"_count": 3, "in": {"_count": 1}, "but": {"_count": 1}, "then": {"_count": 1}}, "solid": {"_count": 4, "ground": {"_count": 2}, "glass": {"_count": 1}, "earth": {"_count": 1}}, "Ron": {"_count": 3, "over": {"_count": 1}, "on": {"_count": 2}}, "dead": {"_count": 1, "ends": {"_count": 1}}, "anything": {"_count": 1, "lines": {"_count": 1}}, "another": {"_count": 2, "player": {"_count": 1}, "forcing": {"_count": 1}}, "oh": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "something": {"_count": 2, "hard": {"_count": 1}, "solid": {"_count": 1}}, "by": {"_count": 9, "one": {"_count": 1}, "the": {"_count": 2}, "Bludgers": {"_count": 1}, "a": {"_count": 5}}, "Alicia": {"_count": 2, "with": {"_count": 1}, "Spinnet": {"_count": 1}}, "canvas": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 2, "in": {"_count": 1}, "hard": {"_count": 1}}, "each": {"_count": 2, "other": {"_count": 2}}, "Goyle": {"_count": 2, "in": {"_count": 1}, "look": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "some": {"_count": 2, "sort": {"_count": 1}, "of": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "Krum": {"_count": 2, "hard": {"_count": 1}, "in": {"_count": 1}}, "more": {"_count": 1, "dead": {"_count": 1}}, "an": {"_count": 3, "extraordinary": {"_count": 1}, "invisible": {"_count": 2}}, "again": {"_count": 1, "by": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "her": {"_count": 6, "hard": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}, "squarely": {"_count": 2}, "in": {"_count": 1}}, "books": {"_count": 1, "on": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "Fred": {"_count": 1, "but": {"_count": 1}}, "that": {"_count": 1, "little": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 3}}, "their": {"_count": 2, "feet": {"_count": 1}, "throats": {"_count": 1}}, "Dolohov": {"_count": 1, "before": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 2}}, "Bludger": {"_count": 1, "and": {"_count": 1}}, "firm": {"_count": 1, "ground": {"_count": 1}}, "Dumbledore": {"_count": 1, "squarely": {"_count": 1}}, "Amycus": {"_count": 1, "in": {"_count": 1}}, "several": {"_count": 1, "bewigged": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "MadEye": {"_count": 1, "full": {"_count": 1}}, "Mundungus": {"_count": 1, "on": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "Neville": {"_count": 1, "who": {"_count": 1}}, "George": {"_count": 1, "instead": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}}, "pretending": {"_count": 63, "to": {"_count": 37, "cry": {"_count": 1}, "fall": {"_count": 1}, "be": {"_count": 18}, "vomit": {"_count": 1}, "Aunt": {"_count": 1}, "faint": {"_count": 1}, "blush": {"_count": 1}, "do": {"_count": 1}, "look": {"_count": 1}, "feel": {"_count": 1}, "read": {"_count": 1}, "think": {"_count": 1}, "tremble": {"_count": 1}, "listen": {"_count": 1}, "concentrate": {"_count": 1}, "retie": {"_count": 1}, "either": {"_count": 1}, "offer": {"_count": 2}, "examine": {"_count": 1}}, "he": {"_count": 3, "hadnt": {"_count": 1}, "had": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 2}}, "she": {"_count": 2, "had": {"_count": 1}, "didnt": {"_count": 1}}, "Im": {"_count": 3, "not": {"_count": 3}}, "not": {"_count": 2, "to": {"_count": 2}}, "hed": {"_count": 1, "left": {"_count": 1}}, "theyve": {"_count": 1, "seen": {"_count": 1}}, "said": {"_count": 1, "one": {"_count": 1}}, "it": {"_count": 1, "didnt": {"_count": 1}}, "that": {"_count": 3, "youre": {"_count": 1}, "Sirius": {"_count": 1}, "she": {"_count": 1}}, "we": {"_count": 1, "care": {"_count": 1}}, "everythings": {"_count": 1, "lovely": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "differents": {"_count": 2, "kidding": {"_count": 2}}}, "Half": {"_count": 41, "an": {"_count": 9, "hour": {"_count": 8}, "inch": {"_count": 1}}, "terrified": {"_count": 1, "half": {"_count": 1}}, "blinded": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 7, "courtyard": {"_count": 1}, "crowd": {"_count": 1}, "Muggle": {"_count": 1}, "cells": {"_count": 1}, "Triwizard": {"_count": 1}, "time": {"_count": 1}, "fffamilys": {"_count": 1}}, "a": {"_count": 6, "century": {"_count": 1}, "dozen": {"_count": 5}}, "giant": {"_count": 1, "": {"_count": 1}}, "gray": {"_count": 1, "horse": {"_count": 1}}, "of": {"_count": 5, "us": {"_count": 1}, "him": {"_count": 1}, "Gryffindor": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "breeds": {"_count": 1, "mutants": {"_count": 1}}, "our": {"_count": 2, "year": {"_count": 1}, "family": {"_count": 1}}, "Blood": {"_count": 5, "Prince": {"_count": 4}, "Princes": {"_count": 1}}, "buried": {"_count": 2, "in": {"_count": 2}}}, "hour": {"_count": 186, "later": {"_count": 25, "Harry": {"_count": 3}, "Harrys": {"_count": 1}, "they": {"_count": 4}, "Lockhart": {"_count": 1}, "Ron": {"_count": 1}, "with": {"_count": 2}, "remains": {"_count": 1}, "": {"_count": 2}, "each": {"_count": 1}, "Moody": {"_count": 1}, "as": {"_count": 2}, "to": {"_count": 1}, "and": {"_count": 2}, "Susans": {"_count": 1}, "having": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 8, "then": {"_count": 2}, "a": {"_count": 6}}, "night": {"_count": 1, "had": {"_count": 1}}, "before": {"_count": 6, "lunch": {"_count": 1}, "had": {"_count": 1}, "we": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "conceding": {"_count": 1}}, "eating": {"_count": 1, "anything": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 31}, "?": {"_count": 2}}, "in": {"_count": 7, "his": {"_count": 1}, "ten": {"_count": 1}, "the": {"_count": 4}, "before": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "deeper": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 9, "answering": {"_count": 1}, "lying": {"_count": 1}, "poking": {"_count": 1}, "Potions": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}, "silence": {"_count": 1}}, "to": {"_count": 5, "buy": {"_count": 1}, "recover": {"_count": 1}, "complete": {"_count": 1}, "empty": {"_count": 1}, "calm": {"_count": 1}}, "or": {"_count": 9, "so": {"_count": 5}, "two": {"_count": 2}, "possibly": {"_count": 1}, "No": {"_count": 1}}, "scrubbing": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 2, "something": {"_count": 1}, "Fred": {"_count": 1}}, "adding": {"_count": 1, "more": {"_count": 1}}, "just": {"_count": 1, "when": {"_count": 1}}, "was": {"_count": 1, "up": {"_count": 1}}, "youd": {"_count": 1, "remember": {"_count": 1}}, "their": {"_count": 1, "robes": {"_count": 1}}, "he": {"_count": 7, "spoke": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 2}, "felt": {"_count": 1}, "put": {"_count": 1}}, "carefully": {"_count": 1, "shredding": {"_count": 1}}, "a": {"_count": 2, "teacher": {"_count": 1}, "glorious": {"_count": 1}}, "the": {"_count": 3, "passage": {"_count": 1}, "prospects": {"_count": 1}, "little": {"_count": 1}}, "said": {"_count": 3, "Fred": {"_count": 2}, "Dumbledore": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "called": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "early": {"_count": 1, "Brilliant": {"_count": 1}}, "shorter": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 2, "Harry": {"_count": 1}, "hit": {"_count": 1}}, "ago": {"_count": 10, "Harry": {"_count": 1}, "they": {"_count": 2}, "": {"_count": 2}, "he": {"_count": 1}, "when": {"_count": 1}, "but": {"_count": 1}, "theyre": {"_count": 1}, "said": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "as": {"_count": 1}}, "long": {"_count": 2, "youll": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "underwater": {"_count": 1, "and": {"_count": 1}}, "came": {"_count": 1, "over": {"_count": 1}}, "\u2018the": {"_count": 1, "prospects": {"_count": 1}}, "they": {"_count": 1, "climbed": {"_count": 1}}, "at": {"_count": 5, "a": {"_count": 1}, "least": {"_count": 2}, "the": {"_count": 2}}, "after": {"_count": 4, "Voldemort": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "by": {"_count": 2, "which": {"_count": 1}, "hour": {"_count": 1}}, "sitting": {"_count": 1, "alone": {"_count": 1}}, "reviewing": {"_count": 1, "Summoning": {"_count": 1}}, "leapt": {"_count": 1, "gleefully": {"_count": 1}}, "passed": {"_count": 1, "then": {"_count": 1}}, "away": {"_count": 1, "judging": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}, "because": {"_count": 1, "Madam": {"_count": 1}}, "apparently": {"_count": 1, "forgotten": {"_count": 1}}, "as": {"_count": 1, "willing": {"_count": 1}}, "earlier": {"_count": 1, "along": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "were": {"_count": 1}}, "your": {"_count": 1, "wifes": {"_count": 1}}, "since": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "midnight": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "allotted": {"_count": 1, "by": {"_count": 1}}}, "taken": {"_count": 318, "Harry": {"_count": 3, "aside": {"_count": 2}, "from": {"_count": 1}}, "a": {"_count": 21, "pair": {"_count": 1}, "swig": {"_count": 1}, "sort": {"_count": 1}, "most": {"_count": 1}, "few": {"_count": 1}, "good": {"_count": 1}, "great": {"_count": 2}, "liking": {"_count": 3}, "day": {"_count": 1}, "while": {"_count": 1}, "long": {"_count": 1}, "couple": {"_count": 1}, "little": {"_count": 1}, "large": {"_count": 2}, "run": {"_count": 1}, "small": {"_count": 1}, "Hallow": {"_count": 1}}, "out": {"_count": 12, "her": {"_count": 1}, "a": {"_count": 2}, "she": {"_count": 1}, "his": {"_count": 1}, "of": {"_count": 4}, "an": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 1}}, "aback": {"_count": 30, "": {"_count": 15}, "by": {"_count": 3}, "he": {"_count": 1}, "at": {"_count": 4}, "for": {"_count": 1}, "but": {"_count": 3}, "I": {"_count": 1}, "as": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 21, "the": {"_count": 2}, "enchanting": {"_count": 1}, "anybodys": {"_count": 1}, "trundling": {"_count": 1}, "haunting": {"_count": 1}, "Mr": {"_count": 1}, "rattling": {"_count": 1}, "retracing": {"_count": 1}, "hiding": {"_count": 1}, "asking": {"_count": 1}, "be": {"_count": 3}, "St": {"_count": 2}, "listening": {"_count": 1}, "carrying": {"_count": 1}, "make": {"_count": 1}, "perform": {"_count": 1}, "protect": {"_count": 1}}, "anything": {"_count": 1, "that": {"_count": 1}}, "from": {"_count": 20, "the": {"_count": 5}, "Gryffindor": {"_count": 3}, "it": {"_count": 1}, "them": {"_count": 1}, "Harry": {"_count": 1}, "our": {"_count": 1}, "victims": {"_count": 1}, "Slughorns": {"_count": 1}, "him": {"_count": 3}, "you": {"_count": 1}, "his": {"_count": 1}, "Grimmauld": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 13}, "?": {"_count": 5}}, "off": {"_count": 8, "": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 2}, "their": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 8, "by": {"_count": 1}, "": {"_count": 1}, "upon": {"_count": 2}, "Master": {"_count": 1}, "illegally": {"_count": 1}, "sir": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 1}, "by": {"_count": 1}, "in": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "immediately": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 15, "Quaffle": {"_count": 1}, "Polyjuice": {"_count": 1}, "lead": {"_count": 1}, "liberty": {"_count": 1}, "barrier": {"_count": 1}, "loss": {"_count": 1}, "mersong": {"_count": 1}, "boomslang": {"_count": 1}, "seat": {"_count": 1}, "stupid": {"_count": 1}, "heavy": {"_count": 1}, "map": {"_count": 1}, "rolledup": {"_count": 1}, "other": {"_count": 1}, "first": {"_count": 1}}, "by": {"_count": 8, "the": {"_count": 2}, "Spinnet": {"_count": 1}, "Fred": {"_count": 1}, "his": {"_count": 1}, "Professor": {"_count": 1}, "everyone": {"_count": 1}, "whoever": {"_count": 1}}, "one": {"_count": 1, "step": {"_count": 1}}, "away": {"_count": 7, "if": {"_count": 1}, "for": {"_count": 2}, "Says": {"_count": 1}, "by": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "into": {"_count": 3, "account": {"_count": 1}, "custody": {"_count": 2}}, "place": {"_count": 7, "so": {"_count": 1}, "yet": {"_count": 1}, "in": {"_count": 2}, "around": {"_count": 1}, "why": {"_count": 1}, "after": {"_count": 1}}, "up": {"_count": 8, "his": {"_count": 2}, "by": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 2}, "goatcharming": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 8, "place": {"_count": 1}, "bright": {"_count": 1}, "eyes": {"_count": 1}, "measurements": {"_count": 1}, "hands": {"_count": 1}, "first": {"_count": 1}, "hand": {"_count": 1}, "recent": {"_count": 1}}, "in": {"_count": 5, "When": {"_count": 1}, "a": {"_count": 2}, "excess": {"_count": 1}, "just": {"_count": 1}}, "inside": {"_count": 1, "somebody": {"_count": 1}}, "Hagrid": {"_count": 1, "if": {"_count": 1}}, "him": {"_count": 5, "to": {"_count": 2}, "in": {"_count": 1}, "on": {"_count": 1}, "inside": {"_count": 1}}, "their": {"_count": 3, "seats": {"_count": 2}, "disappointment": {"_count": 1}}, "me": {"_count": 1, "five": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "us": {"_count": 1, "around": {"_count": 1}}, "over": {"_count": 6, "": {"_count": 1}, "Buckbeak": {"_count": 1}, "responsibility": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 2}}, "your": {"_count": 1, "things": {"_count": 1}}, "refuge": {"_count": 3, "under": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}}, "with": {"_count": 4, "Harry": {"_count": 2}, "the": {"_count": 1}, "breakfast": {"_count": 1}}, "ill": {"_count": 1, "on": {"_count": 1}}, "delivery": {"_count": 1, "of": {"_count": 1}}, "Crookshankss": {"_count": 1, "attempts": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "such": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 2, "also": {"_count": 1}, "whether": {"_count": 1}}, "Scabberss": {"_count": 1, "true": {"_count": 1}}, "so": {"_count": 1, "long": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 6, "three": {"_count": 1}, "about": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}, "grudgingly": {"_count": 1}, "a": {"_count": 1}}, "jus": {"_count": 1, "after": {"_count": 1}}, "fifty": {"_count": 1, "Blast": {"_count": 1}}, "what": {"_count": 2, "youll": {"_count": 2}}, "for": {"_count": 2, "granted": {"_count": 1}, "grains": {"_count": 1}}, "those": {"_count": 1, "mer": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "got": {"_count": 1}}, "unawares": {"_count": 1, "by": {"_count": 1}}, "most": {"_count": 2, "of": {"_count": 2}}, "points": {"_count": 2, "off": {"_count": 1}, "from": {"_count": 1}}, "orders": {"_count": 1, "from": {"_count": 1}}, "plates": {"_count": 1, "from": {"_count": 1}}, "Freds": {"_count": 1, "parting": {"_count": 1}}, "many": {"_count": 1, "hours": {"_count": 1}}, "McGonagall": {"_count": 1, "to": {"_count": 1}}, "aim": {"_count": 1, "at": {"_count": 1}}, "Sirius": {"_count": 1, "I": {"_count": 1}}, "an": {"_count": 1, "unpleasant": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "hold": {"_count": 1, "of": {"_count": 1}}, "sparingly": {"_count": 1, "and": {"_count": 1}}, "issue": {"_count": 1, "with": {"_count": 1}}, "three": {"_count": 1, "steps": {"_count": 1}}, "kindly": {"_count": 1, "to": {"_count": 1}}, "sides": {"_count": 1, "too": {"_count": 1}}, "anyonel": {"_count": 1, "said": {"_count": 1}}, "Malfoy": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 4, "ten": {"_count": 1}, "off": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 1}}, "almost": {"_count": 1, "no": {"_count": 1}}, "any": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "for": {"_count": 1}}, "Dumbledores": {"_count": 1, "body": {"_count": 1}}, "her": {"_count": 3, "classes": {"_count": 1}, "inside": {"_count": 1}, "before": {"_count": 1}}, "part": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "this": {"_count": 1, "long": {"_count": 1}}, "advantage": {"_count": 1, "of": {"_count": 1}}, "no": {"_count": 1, "chances": {"_count": 1}}, "Jamess": {"_count": 1, "Invisibility": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "heat": {"_count": 1, "from": {"_count": 1}}, "Yaxley": {"_count": 1, "to": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "possession": {"_count": 2, "of": {"_count": 2}}, "shape": {"_count": 1, "in": {"_count": 1}}, "hostage": {"_count": 1, "": {"_count": 1}}, "shelter": {"_count": 1, "With": {"_count": 1}}, "leave": {"_count": 1, "of": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "flight": {"_count": 1, "as": {"_count": 1}}, "under": {"_count": 1, "conditions": {"_count": 1}}, "trouble": {"_count": 1, "to": {"_count": 1}}}, "aside": {"_count": 138, "": {"_count": 22, ".": {"_count": 20}, "!": {"_count": 2}}, "but": {"_count": 2, "with": {"_count": 1}, "stood": {"_count": 1}}, "he": {"_count": 3, "felt": {"_count": 1}, "saw": {"_count": 1}, "knelt": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "as": {"_count": 9, "the": {"_count": 2}, "Ron": {"_count": 1}, "he": {"_count": 3}, "Sirius": {"_count": 1}, "casually": {"_count": 1}, "though": {"_count": 1}}, "said": {"_count": 2, "Riddle": {"_count": 1}, "to": {"_count": 1}}, "But": {"_count": 1, "stuttered": {"_count": 1}}, "several": {"_count": 1, "were": {"_count": 1}}, "grabbed": {"_count": 1, "Ginnys": {"_count": 1}}, "then": {"_count": 2, "looked": {"_count": 1}, "hitched": {"_count": 1}}, "and": {"_count": 18, "picked": {"_count": 2}, "seizing": {"_count": 1}, "quickly": {"_count": 1}, "show": {"_count": 1}, "he": {"_count": 1}, "allowed": {"_count": 2}, "flung": {"_count": 1}, "strode": {"_count": 1}, "sat": {"_count": 1}, "Harry": {"_count": 1}, "snatching": {"_count": 1}, "felt": {"_count": 1}, "raised": {"_count": 1}, "pulled": {"_count": 1}, "his": {"_count": 1}, "laughing": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "to": {"_count": 4, "avoid": {"_count": 2}, "let": {"_count": 1}, "look": {"_count": 1}}, "you": {"_count": 2, "silly": {"_count": 2}}, "now": {"_count": 2, "": {"_count": 2}}, "the": {"_count": 15, "information": {"_count": 1}, "dogs": {"_count": 1}, "tapestry": {"_count": 1}, "bread": {"_count": 1}, "wall": {"_count": 3}, "broken": {"_count": 1}, "no": {"_count": 1}, "chair": {"_count": 2}, "newspaper": {"_count": 1}, "neck": {"_count": 1}, "goblins": {"_count": 1}, "cloak": {"_count": 1}}, "girl": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "spitting": {"_count": 1, "Harry": {"_count": 1}}, "snatching": {"_count": 1, "up": {"_count": 1}}, "careful": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 2, "paper": {"_count": 1}, "empty": {"_count": 1}}, "searching": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 2, "you": {"_count": 1}, "noting": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "one": {"_count": 1}}, "Men": {"_count": 1, "Who": {"_count": 1}}, "bushes": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 4, "tapestry": {"_count": 1}, "tea": {"_count": 1}, "lowhanging": {"_count": 1}, "gigantic": {"_count": 1}}, "slightly": {"_count": 1, "while": {"_count": 1}}, "for": {"_count": 3, "him": {"_count": 3}}, "please": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "old": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "other": {"_count": 1}}, "there": {"_count": 1, "he": {"_count": 1}}, "quickly": {"_count": 1, "to": {"_count": 1}}, "strode": {"_count": 1, "around": {"_count": 1}}, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "its": {"_count": 1, "certainly": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "unicorn": {"_count": 1, "horns": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "permitting": {"_count": 1, "Harry": {"_count": 1}}, "an": {"_count": 2, "inch": {"_count": 1}, "old": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "like": {"_count": 1, "skittles": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "revealing": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "it": {"_count": 1, "stood": {"_count": 1}}}, "warning": {"_count": 82, "you": {"_count": 9, "he": {"_count": 1}, "now": {"_count": 1}, "Dursley": {"_count": 1}, "one": {"_count": 1}, "All": {"_count": 1}, "Malfoy": {"_count": 1}, "Peeves": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 1}, "?": {"_count": 1}}, "them": {"_count": 2, "not": {"_count": 2}}, "he": {"_count": 6, "leapt": {"_count": 1}, "pounced": {"_count": 1}, "ran": {"_count": 1}, "realized": {"_count": 1}, "burst": {"_count": 1}, "heard": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "using": {"_count": 1}, "a": {"_count": 1}}, "hed": {"_count": 1, "given": {"_count": 1}}, "look": {"_count": 5, "and": {"_count": 1}, "then": {"_count": 1}, "from": {"_count": 1}, "at": {"_count": 1}, "apparently": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "Felix": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "twelvefoot": {"_count": 1, "wings": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "mind": {"_count": 1}}, "against": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "the": {"_count": 4, "unmistakable": {"_count": 1}, "silence": {"_count": 1}, "scar": {"_count": 1}, "Wizarding": {"_count": 1}}, "about": {"_count": 2, "an": {"_count": 1}, "what": {"_count": 1}}, "something": {"_count": 1, "grabbed": {"_count": 1}}, "Potter": {"_count": 1, "Snape": {"_count": 1}}, "she": {"_count": 1, "slid": {"_count": 1}}, "Harrys": {"_count": 1, "scar": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "me": {"_count": 1}}, "whistle": {"_count": 1, "sounded": {"_count": 1}}, "history": {"_count": 1, "shows": {"_count": 1}}, "whenever": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "voice": {"_count": 1, "tugging": {"_count": 1}}, "I": {"_count": 1, "gave": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Umbridges": {"_count": 1}}, "to": {"_count": 1, "Hagrid": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 1, "meant": {"_count": 1}}, "pushed": {"_count": 1, "himself": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "swooped": {"_count": 1}}, "Malfoy": {"_count": 1, "pointed": {"_count": 1}}, "of": {"_count": 2, "visitors": {"_count": 1}, "dire": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "tone": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "swept": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "Not": {"_count": 1, "Harry": {"_count": 1}}, "Snape": {"_count": 1, "he": {"_count": 1}}, "there": {"_count": 1, "came": {"_count": 1}}, "no": {"_count": 1, "a": {"_count": 1}}}, "putting": {"_count": 99, "his": {"_count": 11, "large": {"_count": 1}, "wand": {"_count": 3}, "tea": {"_count": 1}, "glasses": {"_count": 1}, "things": {"_count": 1}, "head": {"_count": 1}, "feet": {"_count": 1}, "bruised": {"_count": 1}, "uninjured": {"_count": 1}}, "rock": {"_count": 1, "cakes": {"_count": 1}}, "spells": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 10, "cloak": {"_count": 1}, "empty": {"_count": 1}, "tankard": {"_count": 1}, "Quaffle": {"_count": 1}, "ball": {"_count": 1}, "Imperius": {"_count": 1}, "news": {"_count": 2}, "nifflers": {"_count": 1}, "Elder": {"_count": 1}}, "on": {"_count": 8, "jackets": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 1}, "his": {"_count": 1}, "protective": {"_count": 1}, "glasses": {"_count": 1}}, "it": {"_count": 6, "on": {"_count": 3}, "through": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 1}}, "up": {"_count": 9, "a": {"_count": 5}, "your": {"_count": 1}, "tinsel": {"_count": 1}, "Christmas": {"_count": 1}, "signs": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 6, "slab": {"_count": 1}, "hand": {"_count": 3}, "Disillusionment": {"_count": 1}, "finger": {"_count": 1}}, "down": {"_count": 11, "his": {"_count": 3}, "her": {"_count": 3}, "the": {"_count": 4}, "a": {"_count": 1}}, "you": {"_count": 2, "through": {"_count": 1}, "into": {"_count": 1}}, "an": {"_count": 3, "innocent": {"_count": 1}, "arm": {"_count": 2}}, "in": {"_count": 3, "the": {"_count": 2}, "": {"_count": 1}}, "one": {"_count": 2, "foot": {"_count": 2}}, "these": {"_count": 1, "tents": {"_count": 1}}, "them": {"_count": 1, "on": {"_count": 1}}, "out": {"_count": 2, "fires": {"_count": 1}, "four": {"_count": 1}}, "Harry": {"_count": 2, "through": {"_count": 1}, "in": {"_count": 1}}, "away": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "its": {"_count": 1}}, "your": {"_count": 2, "heads": {"_count": 1}, "pins": {"_count": 1}}, "two": {"_count": 1, "and": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "their": {"_count": 2, "heads": {"_count": 1}, "names": {"_count": 1}}, "copies": {"_count": 1, "of": {"_count": 1}}, "me": {"_count": 1, "in": {"_count": 1}}, "any": {"_count": 1, "money": {"_count": 1}}, "four": {"_count": 1, "successive": {"_count": 1}}, "nifflers": {"_count": 1, "in": {"_count": 1}}, "both": {"_count": 1, "hands": {"_count": 1}}, "off": {"_count": 1, "replacing": {"_count": 1}}, "potions": {"_count": 1, "in": {"_count": 1}}, "something": {"_count": 1, "in": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "yourself": {"_count": 1, "back": {"_count": 1}}}, "Christmas": {"_count": 206, "": {"_count": 40, ".": {"_count": 25}, "!": {"_count": 6}, "?": {"_count": 9}}, "was": {"_count": 4, "coming": {"_count": 1}, "over": {"_count": 2}, "approaching": {"_count": 1}}, "because": {"_count": 4, "theyre": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 1}, "they": {"_count": 1}}, "hed": {"_count": 1, "ever": {"_count": 1}}, "said": {"_count": 7, "Hagrid": {"_count": 1}, "Ron": {"_count": 2}, "Hermione": {"_count": 2}, "George": {"_count": 1}, "Dumbledore": {"_count": 1}}, "decorations": {"_count": 4, "": {"_count": 2}, "had": {"_count": 1}, "twinkling": {"_count": 1}}, "trees": {"_count": 9, "stood": {"_count": 1}, "and": {"_count": 1}, "glittering": {"_count": 1}, "in": {"_count": 1}, "covered": {"_count": 1}, "for": {"_count": 1}, "twinkling": {"_count": 1}, "of": {"_count": 1}, "dark": {"_count": 1}}, "Eve": {"_count": 5, "Harry": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "night": {"_count": 1}, "": {"_count": 1}}, "present": {"_count": 6, "": {"_count": 4}, "for": {"_count": 1}, "ha": {"_count": 1}}, "to": {"_count": 4, "you": {"_count": 2}, "see": {"_count": 1}, "each": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "dinner": {"_count": 7, "": {"_count": 3}, "at": {"_count": 1}, "two": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "puddings": {"_count": 2, "followed": {"_count": 1}, "and": {"_count": 1}}, "cake": {"_count": 2, "everyone": {"_count": 1}, "and": {"_count": 1}}, "day": {"_count": 1, "ever": {"_count": 1}}, "has": {"_count": 1, "come": {"_count": 1}}, "holidays": {"_count": 4, "the": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 1}, "Luna": {"_count": 1}}, "ones": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "knocking": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "come": {"_count": 1}}, "morning": {"_count": 4, "dawned": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "presents": {"_count": 5, "were": {"_count": 1}, "the": {"_count": 1}, "Ill": {"_count": 1}, "": {"_count": 2}}, "pudding": {"_count": 2, "when": {"_count": 1}, "and": {"_count": 1}}, "so": {"_count": 1, "Ill": {"_count": 1}}, "tea": {"_count": 2, "waiting": {"_count": 1}, "today": {"_count": 1}}, "and": {"_count": 12, "couldnt": {"_count": 1}, "Easter": {"_count": 2}, "that": {"_count": 1}, "bring": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "its": {"_count": 1}, "to": {"_count": 1}, "theyre": {"_count": 1}, "Ginny": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "shopping": {"_count": 2, "there": {"_count": 1}, "and": {"_count": 1}}, "card": {"_count": 1, "the": {"_count": 1}}, "tree": {"_count": 5, "which": {"_count": 1}, "beside": {"_count": 1}, "obtained": {"_count": 1}, "": {"_count": 2}}, "spirit": {"_count": 1, "was": {"_count": 1}}, "Day": {"_count": 9, "": {"_count": 4}, "finishing": {"_count": 1}, "Hagrid": {"_count": 1}, "cleaning": {"_count": 1}, "too": {"_count": 1}, "with": {"_count": 1}}, "party": {"_count": 4, "with": {"_count": 3}, "Harry": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "told": {"_count": 1}}, "but": {"_count": 1, "": {"_count": 1}}, "pulling": {"_count": 1, "an": {"_count": 1}}, "I": {"_count": 1, "always": {"_count": 1}}, "he": {"_count": 2, "always": {"_count": 1}, "also": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "wasnt": {"_count": 1, "going": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "enjoying": {"_count": 1, "himself": {"_count": 1}}, "bauble": {"_count": 1, "tied": {"_count": 1}}, "locked": {"_count": 1, "in": {"_count": 1}}, "would": {"_count": 1, "it": {"_count": 1}}, "approached": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 1, "youre": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "baubles": {"_count": 2, "shaped": {"_count": 1}, "holly": {"_count": 1}}, "shoppers": {"_count": 1, "": {"_count": 1}}, "hats": {"_count": 1, "and": {"_count": 1}}, "jumper": {"_count": 1, "": {"_count": 1}}, "lunch": {"_count": 2, "the": {"_count": 1}, "everyone": {"_count": 1}}, "The": {"_count": 1, "one": {"_count": 1}}, "represented": {"_count": 1, "such": {"_count": 1}}, "period": {"_count": 1, "overlooked": {"_count": 1}}, "before": {"_count": 1, "last": {"_count": 1}}, "remembered": {"_count": 1, "him": {"_count": 1}}, "its": {"_count": 1, "all": {"_count": 1}}, "oh": {"_count": 1, "many": {"_count": 1}}, "dont": {"_count": 1, "be": {"_count": 1}}, "muttered": {"_count": 1, "Fred": {"_count": 1}}, "broadcast": {"_count": 1, "by": {"_count": 1}}, "alone": {"_count": 1, "actually": {"_count": 1}}, "Mother": {"_count": 1, "": {"_count": 1}}, "apparently": {"_count": 1, "said": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Ginny": {"_count": 1, "reminded": {"_count": 1}}, "What": {"_count": 1, "request": {"_count": 1}}, "shrugged": {"_count": 1, "Harry": {"_count": 1}}, "every": {"_count": 1, "year": {"_count": 1}}, "no": {"_count": 1, "complaints": {"_count": 1}}, "roses": {"_count": 2, "blossomed": {"_count": 1}, "": {"_count": 1}}, "surprise": {"_count": 1, "for": {"_count": 1}}, "Luna": {"_count": 1, "was": {"_count": 1}}}, "honestly": {"_count": 29, "But": {"_count": 1, "Uncle": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "dont": {"_count": 2, "you": {"_count": 1}, "think": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "its": {"_count": 2, "okay": {"_count": 1}, "not": {"_count": 1}}, "they": {"_count": 1, "get": {"_count": 1}}, "Harry": {"_count": 1, "Seen": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "the": {"_count": 1, "most": {"_count": 1}}, "trust": {"_count": 1, "his": {"_count": 1}}, "return": {"_count": 1, "this": {"_count": 1}}, "think": {"_count": 3, "Im": {"_count": 1}, "YouKnow": {"_count": 1}, "Id": {"_count": 1}}, "Ginny": {"_count": 1, "theres": {"_count": 1}}, "havent": {"_count": 1, "been": {"_count": 1}}, "like": {"_count": 1, "Snape": {"_count": 1}}, "What": {"_count": 1, "do": {"_count": 1}}, "he": {"_count": 1, "turned": {"_count": 1}}}, "problem": {"_count": 95, "was": {"_count": 7, "strange": {"_count": 1}, "that": {"_count": 3}, "going": {"_count": 1}, "Ron": {"_count": 1}, "She": {"_count": 1}}, "said": {"_count": 19, "Ron": {"_count": 4}, "George": {"_count": 2}, "Mr": {"_count": 1}, "Lupin": {"_count": 1}, "Harry": {"_count": 6}, "Cho": {"_count": 1}, "Professor": {"_count": 1}, "Dumbledore": {"_count": 2}, "Tonks": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 12}, "!": {"_count": 3}, "?": {"_count": 4}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "people": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 2, "an": {"_count": 1}, "company": {"_count": 1}}, "still": {"_count": 1, "marveling": {"_count": 1}}, "sighed": {"_count": 1, "Mr": {"_count": 1}}, "too": {"_count": 1, "she": {"_count": 1}}, "with": {"_count": 7, "Hermione": {"_count": 1}, "giants": {"_count": 1}, "Harry": {"_count": 1}, "any": {"_count": 1}, "my": {"_count": 1}, "nerves": {"_count": 1}, "that": {"_count": 1}}, "facing": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "Molly": {"_count": 1, "": {"_count": 1}}, "sharing": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "continued": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "yeah": {"_count": 1, "": {"_count": 1}}, "saying": {"_count": 1, "Vol": {"_count": 1}}, "is": {"_count": 4, "there": {"_count": 1}, "Transfiguration": {"_count": 1}, "nerves": {"_count": 1}, "that": {"_count": 1}}, "your": {"_count": 1, "full": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "Lupin": {"_count": 1, "burst": {"_count": 1}}, "and": {"_count": 1, "had": {"_count": 1}}, "what": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 2, "Slughorn": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "Snape": {"_count": 1, "said": {"_count": 1}}, "Youre": {"_count": 1, "underage": {"_count": 1}}, "just": {"_count": 1, "keep": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "solved": {"_count": 1, "Minister": {"_count": 1}}, "calling": {"_count": 1, "him": {"_count": 1}}, "after": {"_count": 1, "problem": {"_count": 1}}, "to": {"_count": 1, "overcome": {"_count": 1}}, "Severus": {"_count": 1, "said": {"_count": 1}}}, "happened": {"_count": 524, "around": {"_count": 3, "Harry": {"_count": 1}, "now": {"_count": 1}, "him": {"_count": 1}}, "so": {"_count": 3, "fast": {"_count": 1}, "far": {"_count": 1}, "quickly": {"_count": 1}}, "one": {"_count": 2, "second": {"_count": 1}, "of": {"_count": 1}}, "the": {"_count": 6, "Dursleys": {"_count": 1}, "last": {"_count": 2}, "night": {"_count": 2}, "other": {"_count": 1}}, "in": {"_count": 20, "the": {"_count": 9}, "his": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 2}, "very": {"_count": 1}, "June": {"_count": 1}, "Divination": {"_count": 1}, "Dumbledores": {"_count": 1}, "Madam": {"_count": 1}, "my": {"_count": 1}, "there": {"_count": 1}}, "": {"_count": 162, "?": {"_count": 59}, ".": {"_count": 97}, "!": {"_count": 6}}, "to": {"_count": 102, "Vol": {"_count": 1}, "them": {"_count": 6}, "him": {"_count": 14}, "leave": {"_count": 1}, "you": {"_count": 16}, "be": {"_count": 12}, "your": {"_count": 8}, "find": {"_count": 1}, "Mrs": {"_count": 1}, "this": {"_count": 1}, "include": {"_count": 1}, "Aunt": {"_count": 1}, "agree": {"_count": 1}, "the": {"_count": 7}, "her": {"_count": 5}, "his": {"_count": 2}, "Hedwig": {"_count": 1}, "those": {"_count": 1}, "Barty": {"_count": 1}, "Hagrid": {"_count": 2}, "a": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 1}, "Cedric": {"_count": 1}, "make": {"_count": 2}, "me": {"_count": 1}, "know": {"_count": 1}, "interrupt": {"_count": 1}, "Hogwarts": {"_count": 1}, "Katie": {"_count": 2}, "Morfin": {"_count": 1}, "their": {"_count": 1}, "our": {"_count": 1}, "anyone": {"_count": 2}, "Ginny": {"_count": 1}, "it": {"_count": 1}}, "when": {"_count": 14, "he": {"_count": 4}, "Vol": {"_count": 1}, "hed": {"_count": 1}, "the": {"_count": 2}, "wizards": {"_count": 1}, "Hermione": {"_count": 1}, "Katie": {"_count": 1}, "you": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}}, "that": {"_count": 5, "made": {"_count": 2}, "had": {"_count": 1}, "night": {"_count": 1}, "a": {"_count": 1}}, "until": {"_count": 1, "I": {"_count": 1}}, "very": {"_count": 1, "suddenly": {"_count": 1}}, "on": {"_count": 5, "my": {"_count": 1}, "the": {"_count": 3}, "your": {"_count": 1}}, "during": {"_count": 3, "a": {"_count": 1}, "that": {"_count": 1}, "next": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 3}, "last": {"_count": 1}}, "before": {"_count": 7, "but": {"_count": 1}, "": {"_count": 3}, "hed": {"_count": 1}, "in": {"_count": 2}}, "down": {"_count": 2, "in": {"_count": 2}}, "Harry": {"_count": 5, "": {"_count": 5}}, "She": {"_count": 1, "continued": {"_count": 1}}, "with": {"_count": 3, "that": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "at": {"_count": 18, "Hogwarts": {"_count": 3}, "the": {"_count": 10}, "last": {"_count": 1}, "this": {"_count": 1}, "Keeper": {"_count": 1}, "once": {"_count": 1}, "Godrics": {"_count": 1}}, "she": {"_count": 2, "told": {"_count": 1}, "had": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "then": {"_count": 6, "": {"_count": 2}, "Dudders": {"_count": 1}, "Potter": {"_count": 1}, "Professor": {"_count": 1}, "and": {"_count": 1}}, "Wood": {"_count": 1, "talked": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "if": {"_count": 7, "Malfoy": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 2}, "they": {"_count": 1}}, "and": {"_count": 11, "didnt": {"_count": 1}, "that": {"_count": 2}, "if": {"_count": 1}, "bring": {"_count": 1}, "only": {"_count": 1}, "he": {"_count": 2}, "as": {"_count": 1}, "it": {"_count": 1}, "then": {"_count": 1}}, "They": {"_count": 2, "cant": {"_count": 2}}, "las": {"_count": 1, "night": {"_count": 1}}, "but": {"_count": 6, "none": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "Arthurs": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}}, "there": {"_count": 4, "something": {"_count": 1}, "were": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "would": {"_count": 1}}, "immediately": {"_count": 1, "Harry": {"_count": 1}}, "was": {"_count": 2, "over": {"_count": 1}, "Dumbledore": {"_count": 1}}, "shell": {"_count": 1, "be": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "after": {"_count": 6, "he": {"_count": 2}, "you": {"_count": 2}, "we": {"_count": 1}, "James": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 5, "though": {"_count": 1}, "people": {"_count": 1}, "the": {"_count": 1}, "clearly": {"_count": 1}, "we": {"_count": 1}}, "please": {"_count": 1, "She": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 5, "closed": {"_count": 1}, "was": {"_count": 1}, "concluded": {"_count": 1}, "only": {"_count": 1}, "waved": {"_count": 1}}, "tonight": {"_count": 5, "": {"_count": 2}, "I": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}, "since": {"_count": 5, "he": {"_count": 1}, "Bertha": {"_count": 1}, "most": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}}, "is": {"_count": 2, "a": {"_count": 1}, "everything": {"_count": 1}}, "can": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 2, "Lord": {"_count": 1}, "course": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "yet": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "Voldemort": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "Mrs": {"_count": 2, "Figg": {"_count": 2}}, "Seamus": {"_count": 2, "": {"_count": 1}, "stepped": {"_count": 1}}, "next": {"_count": 4, "": {"_count": 3}, "Kingsley": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "Professor": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "whenever": {"_count": 1, "Voldemort": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "There": {"_count": 2, "was": {"_count": 1}, "has": {"_count": 1}}, "you": {"_count": 1, "could": {"_count": 1}}, "Dad": {"_count": 2, "": {"_count": 2}}, "first": {"_count": 1, "thing": {"_count": 1}}, "mumbled": {"_count": 1, "Harry": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "Yes": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 2, "pearlywhite": {"_count": 1}, "great": {"_count": 1}}, "here": {"_count": 3, "": {"_count": 2}, "look": {"_count": 1}}, "for": {"_count": 1, "I": {"_count": 1}}, "three": {"_count": 1, "days": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "just": {"_count": 2, "around": {"_count": 1}, "after": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "seemed": {"_count": 1}}, "between": {"_count": 2, "James": {"_count": 1}, "those": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "except": {"_count": 3, "that": {"_count": 2}, "perhaps": {"_count": 1}}, "That": {"_count": 1, "particular": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "Expelliarmus": {"_count": 1, "was": {"_count": 1}}, "only": {"_count": 1, "because": {"_count": 1}}, "both": {"_count": 1, "women": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "years": {"_count": 1, "and": {"_count": 1}}, "heads": {"_count": 1, "were": {"_count": 1}}, "no": {"_count": 1, "because": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 1, "years": {"_count": 1}}, "most": {"_count": 1, "often": {"_count": 1}}, "anything": {"_count": 1, "we": {"_count": 1}}, "because": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "Cissy": {"_count": 1, "": {"_count": 1}}, "Pettigrew": {"_count": 1, "dropped": {"_count": 1}}, "afterward": {"_count": 1, "": {"_count": 1}}, "whats": {"_count": 1, "happened": {"_count": 1}}}, "telling": {"_count": 251, "the": {"_count": 24, "Dursleys": {"_count": 1}, "other": {"_count": 1}, "story": {"_count": 1}, "Daily": {"_count": 2}, "truth": {"_count": 14}, "rest": {"_count": 1}, "boy": {"_count": 1}, "Wizengamot": {"_count": 1}, "whole": {"_count": 1}, "Death": {"_count": 1}}, "them": {"_count": 19, "Harry": {"_count": 1}, "how": {"_count": 1}, "off": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 2}, "everything": {"_count": 2}, "about": {"_count": 2}, "all": {"_count": 1}, "to": {"_count": 1}, "theyve": {"_count": 1}, "theyd": {"_count": 1}, "not": {"_count": 1}, "where": {"_count": 1}, "that": {"_count": 2}, "what": {"_count": 1}}, "me": {"_count": 40, "youve": {"_count": 1}, "you": {"_count": 3}, "it": {"_count": 1}, "all": {"_count": 2}, "Im": {"_count": 1}, "that": {"_count": 4}, "": {"_count": 4}, "Harry": {"_count": 1}, "the": {"_count": 2}, "someones": {"_count": 1}, "a": {"_count": 1}, "about": {"_count": 3}, "in": {"_count": 1}, "he": {"_count": 1}, "what": {"_count": 2}, "hes": {"_count": 1}, "she": {"_count": 2}, "how": {"_count": 1}, "to": {"_count": 3}, "Gwenog": {"_count": 1}, "this": {"_count": 2}, "your": {"_count": 1}, "said": {"_count": 1}}, "him": {"_count": 38, "he": {"_count": 4}, "on": {"_count": 1}, "hed": {"_count": 1}, "theyd": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 4}, "the": {"_count": 2}, "anything": {"_count": 1}, "how": {"_count": 2}, "that": {"_count": 3}, "about": {"_count": 2}, "so": {"_count": 1}, "what": {"_count": 6}, "which": {"_count": 1}, "again": {"_count": 1}, "this": {"_count": 2}, "yet": {"_count": 1}, "years": {"_count": 1}, "whether": {"_count": 1}, "one": {"_count": 1}, "exactly": {"_count": 1}}, "everyone": {"_count": 8, "to": {"_count": 1}, "that": {"_count": 2}, "you": {"_count": 1}, "what": {"_count": 1}, "theyve": {"_count": 1}, "its": {"_count": 1}, "else": {"_count": 1}}, "you": {"_count": 34, "what": {"_count": 2}, "how": {"_count": 1}, "such": {"_count": 1}, "theres": {"_count": 1}, "both": {"_count": 1}, "": {"_count": 3}, "all": {"_count": 1}, "I": {"_count": 1}, "Now": {"_count": 1}, "Not": {"_count": 1}, "during": {"_count": 1}, "thats": {"_count": 1}, "the": {"_count": 3}, "its": {"_count": 1}, "youll": {"_count": 1}, "Hagrid": {"_count": 1}, "to": {"_count": 2}, "if": {"_count": 2}, "Im": {"_count": 2}, "of": {"_count": 1}, "anything": {"_count": 1}, "lot": {"_count": 1}, "something": {"_count": 2}, "we": {"_count": 1}, "now": {"_count": 1}}, "Ron": {"_count": 6, "what": {"_count": 1}, "and": {"_count": 3}, "that": {"_count": 1}, "Hermione": {"_count": 1}}, "her": {"_count": 5, "friend": {"_count": 1}, "about": {"_count": 2}, "": {"_count": 1}, "that": {"_count": 1}}, "a": {"_count": 2, "downright": {"_count": 1}, "thrilling": {"_count": 1}}, "people": {"_count": 7, "off": {"_count": 2}, "this": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}, "arent": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 5, "wife": {"_count": 1}, "passengers": {"_count": 1}, "companion": {"_count": 1}, "mum": {"_count": 1}, "father": {"_count": 1}}, "Professor": {"_count": 3, "Flitwick": {"_count": 1}, "McGonagall": {"_count": 1}, "Marchbanks": {"_count": 1}}, "Filch": {"_count": 1, "kindly": {"_count": 1}}, "Hermione": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 1}, "what": {"_count": 1}}, "Harry": {"_count": 3, "it": {"_count": 1}, "more": {"_count": 1}, "off": {"_count": 1}}, "us": {"_count": 9, "something": {"_count": 1}, "whats": {"_count": 1}, "about": {"_count": 2}, "that": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}, "what": {"_count": 1}, "such": {"_count": 1}}, "Lupin": {"_count": 1, "about": {"_count": 1}}, "anyone": {"_count": 2, "whod": {"_count": 1}, "but": {"_count": 1}}, "twice": {"_count": 4, "": {"_count": 3}, "he": {"_count": 1}}, "it": {"_count": 1, "like": {"_count": 1}}, "Dumbledore": {"_count": 4, "all": {"_count": 1}, "from": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}}, "Voldemort": {"_count": 2, "you": {"_count": 1}, "what": {"_count": 1}}, "never": {"_count": 1, "held": {"_count": 1}}, "Seamus": {"_count": 2, "what": {"_count": 1}, "it": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "Winky": {"_count": 1, "some": {"_count": 1}}, "anybody": {"_count": 1, "who": {"_count": 1}}, "Madame": {"_count": 2, "Maxime": {"_count": 2}}, "Sirius": {"_count": 1, "all": {"_count": 1}}, "off": {"_count": 2, "one": {"_count": 1}, "some": {"_count": 1}}, "your": {"_count": 3, "aunt": {"_count": 1}, "mother": {"_count": 1}, "mum": {"_count": 1}}, "lies": {"_count": 1, "about": {"_count": 1}}, "its": {"_count": 1, "readers": {"_count": 1}}, "McGonagall": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 2, "that": {"_count": 2}}, "everybody": {"_count": 1, "about": {"_count": 1}}, "these": {"_count": 1, "lies": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "young": {"_count": 1, "Marcus": {"_count": 1}}, "Riddle": {"_count": 1, "exactly": {"_count": 1}}, "Crabbe": {"_count": 1, "it": {"_count": 1}}, "all": {"_count": 1, "these": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "from": {"_count": 1, "where": {"_count": 1}}, "They": {"_count": 1, "all": {"_count": 1}}}, "Once": {"_count": 104, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 6, "thought": {"_count": 1}, "caught": {"_count": 1}, "was": {"_count": 1}, "reached": {"_count": 1}, "had": {"_count": 2}}, "Or": {"_count": 1, "twice": {"_count": 1}}, "the": {"_count": 10, "holidays": {"_count": 1}, "remaining": {"_count": 1}, "golden": {"_count": 1}, "shocks": {"_count": 1}, "boy": {"_count": 1}, "door": {"_count": 2}, "girl": {"_count": 1}, "cafe": {"_count": 1}, "painful": {"_count": 1}}, "term": {"_count": 1, "had": {"_count": 1}}, "again": {"_count": 14, "the": {"_count": 2}, "and": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 3}, "Dolohovs": {"_count": 1}, "you": {"_count": 2}, "people": {"_count": 1}, "they": {"_count": 1}, "Lord": {"_count": 1}, "all": {"_count": 1}}, "theyre": {"_count": 1, "asleep": {"_count": 1}}, "they": {"_count": 10, "were": {"_count": 4}, "had": {"_count": 5}, "arrived": {"_count": 1}}, "we": {"_count": 3, "turn": {"_count": 1}, "were": {"_count": 1}, "know": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 2, "got": {"_count": 2}}, "every": {"_count": 1, "hour": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "a": {"_count": 3, "month": {"_count": 1}, "finelooking": {"_count": 1}, "champion": {"_count": 1}}, "my": {"_count": 1, "names": {"_count": 1}}, "or": {"_count": 10, "twice": {"_count": 10}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "youre": {"_count": 2, "Stunned": {"_count": 1}, "within": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "sure": {"_count": 1, "that": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "hed": {"_count": 1, "got": {"_count": 1}}, "James": {"_count": 1, "had": {"_count": 1}}, "breakfast": {"_count": 1, "was": {"_count": 1}}, "there": {"_count": 1, "they": {"_count": 1}}, "more": {"_count": 4, "the": {"_count": 1}, "he": {"_count": 1}, "into": {"_count": 1}, "for": {"_count": 1}}, "upon": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "when": {"_count": 1, "I": {"_count": 1}}, "Marvolo": {"_count": 1, "and": {"_count": 1}}, "free": {"_count": 1, "of": {"_count": 1}}, "McLaggen": {"_count": 1, "had": {"_count": 1}}, "it": {"_count": 1, "became": {"_count": 1}}, "Peeves": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "for": {"_count": 1}}, "back": {"_count": 1, "under": {"_count": 1}}, "Im": {"_count": 1, "seventeen": {"_count": 1}}, "dressed": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "weve": {"_count": 1, "left": {"_count": 1}}, "were": {"_count": 1, "there": {"_count": 1}}, "Ollivander": {"_count": 1, "and": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "tired": {"_count": 60, "of": {"_count": 15, "Harry": {"_count": 1}, "people": {"_count": 1}, "all": {"_count": 1}, "talking": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "our": {"_count": 1}, "standing": {"_count": 1}, "him": {"_count": 1}, "Rons": {"_count": 1}, "diving": {"_count": 1}, "course": {"_count": 1}, "trying": {"_count": 1}, "being": {"_count": 1}}, "and": {"_count": 9, "rather": {"_count": 2}, "full": {"_count": 1}, "wanted": {"_count": 1}, "wan": {"_count": 1}, "grumpylooking": {"_count": 1}, "that": {"_count": 1}, "somehow": {"_count": 1}, "flustered": {"_count": 1}}, "to": {"_count": 1, "talk": {"_count": 1}}, "but": {"_count": 2, "perfectly": {"_count": 1}, "it": {"_count": 1}}, "out": {"_count": 1, "after": {"_count": 1}}, "yawned": {"_count": 1, "Fred": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "gray": {"_count": 1, "face": {"_count": 1}}, "now": {"_count": 2, "along": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 2, "Lupin": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "me": {"_count": 1, "greatly": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "yawned": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "every": {"_count": 1, "bone": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 1, "finished": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "man": {"_count": 1}}, "his": {"_count": 1, "hand": {"_count": 1}}, "wings": {"_count": 1, "fluttered": {"_count": 1}}, "youre": {"_count": 1, "falling": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "arent": {"_count": 1, "": {"_count": 1}}}, "barbers": {"_count": 1, "looking": {"_count": 1, "as": {"_count": 1}}}, "scissors": {"_count": 2, "and": {"_count": 1, "cut": {"_count": 1}}, "wearing": {"_count": 1, "his": {"_count": 1}}}, "short": {"_count": 203, "he": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 2, "him": {"_count": 1}, "an": {"_count": 1}}, "gray": {"_count": 4, "hair": {"_count": 4}}, "baseball": {"_count": 1, "bat": {"_count": 1}}, "legs": {"_count": 4, "thick": {"_count": 1}, "would": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "plump": {"_count": 4, "kind": {"_count": 1}, "woman": {"_count": 1}, "and": {"_count": 1}, "man": {"_count": 1}}, "time": {"_count": 5, "": {"_count": 3}, "considering": {"_count": 1}, "together": {"_count": 1}}, "irritablelooking": {"_count": 1, "man": {"_count": 1}}, "however": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 2, "Lockhart": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 14, "had": {"_count": 1}, "glaring": {"_count": 1}, "skinny": {"_count": 1}, "looked": {"_count": 1}, "his": {"_count": 1}, "nasty": {"_count": 1}, "clean": {"_count": 1}, "according": {"_count": 1}, "irritated": {"_count": 1}, "wearing": {"_count": 1}, "unless": {"_count": 1}, "bright": {"_count": 1}, "rather": {"_count": 1}, "there": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "demonstration": {"_count": 1, "before": {"_count": 1}}, "growth": {"_count": 1, "of": {"_count": 1}}, "derisive": {"_count": 1, "laugh": {"_count": 1}}, "stretch": {"_count": 2, "only": {"_count": 1}, "of": {"_count": 1}}, "of": {"_count": 10, "buoyant": {"_count": 1}, "Snape": {"_count": 1}, "torture": {"_count": 1}, "petrified": {"_count": 1}, "the": {"_count": 3}, "causing": {"_count": 1}, "thrilled": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "bristly": {"_count": 1, "hair": {"_count": 1}}, "squat": {"_count": 1, "knight": {"_count": 1}}, "bow": {"_count": 1, "and": {"_count": 1}}, "way": {"_count": 18, "away": {"_count": 5}, "": {"_count": 1}, "beyond": {"_count": 1}, "farther": {"_count": 1}, "when": {"_count": 1}, "from": {"_count": 2}, "into": {"_count": 1}, "around": {"_count": 1}, "with": {"_count": 1}, "took": {"_count": 1}, "ahead": {"_count": 1}, "below": {"_count": 1}, "pushed": {"_count": 1}}, "hours": {"_count": 1, "and": {"_count": 1}}, "space": {"_count": 2, "of": {"_count": 2}}, "man": {"_count": 2, "hardly": {"_count": 1}, "in": {"_count": 1}}, "while": {"_count": 8, "you": {"_count": 1}, "ago": {"_count": 2}, "later": {"_count": 4}, "afterward": {"_count": 1}}, "balding": {"_count": 2, "man": {"_count": 2}}, "distance": {"_count": 13, "from": {"_count": 4}, "away": {"_count": 7}, "finally": {"_count": 1}, "his": {"_count": 1}}, "blond": {"_count": 1, "hair": {"_count": 1}}, "they": {"_count": 2, "stuck": {"_count": 1}, "did": {"_count": 1}}, "blasts": {"_count": 1, "on": {"_count": 1}}, "explanation": {"_count": 1, "and": {"_count": 1}}, "walk": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "list": {"_count": 1, "": {"_count": 1}}, "harsh": {"_count": 1, "laugh": {"_count": 1}}, "booming": {"_count": 1, "laugh": {"_count": 1}}, "wizard": {"_count": 1, "with": {"_count": 1}}, "piece": {"_count": 1, "entitled": {"_count": 1}}, "blonde": {"_count": 2, "hair": {"_count": 2}}, "blast": {"_count": 1, "on": {"_count": 1}}, "figure": {"_count": 1, "simply": {"_count": 1}}, "angry": {"_count": 1, "wizard": {"_count": 1}}, "term": {"_count": 1, "said": {"_count": 1}}, "bandy": {"_count": 1, "legs": {"_count": 1}}, "spiky": {"_count": 1, "hair": {"_count": 1}}, "barklike": {"_count": 1, "laugh": {"_count": 1}}, "queues": {"_count": 1, "of": {"_count": 1}}, "curly": {"_count": 2, "hair": {"_count": 1}, "mousebrown": {"_count": 1}}, "weeks": {"_count": 2, "since": {"_count": 1}, "have": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "hair": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "pause": {"_count": 8, "": {"_count": 6}, "did": {"_count": 1}, "Harry": {"_count": 1}}, "one": {"_count": 1, "and": {"_count": 1}}, "silence": {"_count": 2, "in": {"_count": 2}}, "be": {"_count": 1, "ringed": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "letter": {"_count": 1, "it": {"_count": 1}}, "fingered": {"_count": 1, "hand": {"_count": 1}}, "sir": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "nobody": {"_count": 1}}, "notice": {"_count": 2, "because": {"_count": 1}, "said": {"_count": 1}}, "black": {"_count": 2, "bangs": {"_count": 1}, "fringe": {"_count": 1}}, "the": {"_count": 2, "Gryffindor": {"_count": 1}, "boy": {"_count": 1}}, "wiry": {"_count": 1, "hair": {"_count": 1}}, "wand": {"_count": 1, "a": {"_count": 1}}, "meeting": {"_count": 1, "with": {"_count": 1}}, "that": {"_count": 1, "this": {"_count": 1}}, "leg": {"_count": 1, "over": {"_count": 1}}, "round": {"_count": 1, "one": {"_count": 1}}, "scrubby": {"_count": 1, "hair": {"_count": 1}}, "but": {"_count": 1, "broadchested": {"_count": 1}}, "years": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "knife": {"_count": 1, "in": {"_count": 1}}, "humorless": {"_count": 1, "laugh": {"_count": 1}}, "queue": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "your": {"_count": 1}}, "news": {"_count": 1, "item": {"_count": 1}}, "silver": {"_count": 3, "knife": {"_count": 3}}, "visit": {"_count": 1, "and": {"_count": 1}}, "Pius": {"_count": 1, "Thicknesse": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "hallway": {"_count": 1, "and": {"_count": 1}}, "steps": {"_count": 1, "into": {"_count": 1}}, "haircut": {"_count": 1, "": {"_count": 1}}, "chute": {"_count": 1, "emerging": {"_count": 1}}, "journey": {"_count": 1, "had": {"_count": 1}}, "dark": {"_count": 1, "wand": {"_count": 1}}, "step": {"_count": 1, "from": {"_count": 1}}, "effort": {"_count": 1, "so": {"_count": 1}}, "broad": {"_count": 1, "nose": {"_count": 1}}, "flight": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "you": {"_count": 1}}, "break": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "jeans": {"_count": 1, "a": {"_count": 1}}}, "bald": {"_count": 32, "except": {"_count": 2, "for": {"_count": 2}}, "man": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 1, "looked": {"_count": 1}}, "Or": {"_count": 1, "young": {"_count": 1}}, "head": {"_count": 7, "perched": {"_count": 1}, "exactly": {"_count": 1}, "buried": {"_count": 1}, "through": {"_count": 1}, "and": {"_count": 1}, "gleaming": {"_count": 1}, "like": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "patch": {"_count": 6, "": {"_count": 1}, "on": {"_count": 2}, "at": {"_count": 1}, "with": {"_count": 1}, "gleaming": {"_count": 1}}, "tails": {"_count": 1, "": {"_count": 1}}, "patches": {"_count": 1, "and": {"_count": 1}}, "tail": {"_count": 2, "to": {"_count": 1}, "whip": {"_count": 1}}, "black": {"_count": 2, "wizard": {"_count": 1}, "broadshouldered": {"_count": 1}}, "pate": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "all": {"_count": 1}}, "old": {"_count": 1, "man": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}}, "bangs": {"_count": 27, "which": {"_count": 1, "she": {"_count": 1}}, "to": {"_count": 1, "show": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 3, "it": {"_count": 1}, "they": {"_count": 1}, "though": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "down": {"_count": 1, "again": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 7, "smells": {"_count": 1}, "shouting": {"_count": 1}, "an": {"_count": 1}, "exhaling": {"_count": 1}, "smoke": {"_count": 1}, "clatters": {"_count": 1}, "all": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "blinked": {"_count": 1}}, "of": {"_count": 3, "escaped": {"_count": 2}, "battle": {"_count": 1}}, "issuing": {"_count": 1, "from": {"_count": 1}}, "interspersed": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "set": {"_count": 1, "her": {"_count": 1}}, "shook": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "screams": {"_count": 1}}}, "hide": {"_count": 82, "that": {"_count": 1, "horrible": {"_count": 1}}, "behind": {"_count": 4, "his": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "or": {"_count": 1, "similar": {"_count": 1}}, "except": {"_count": 1, "perhaps": {"_count": 1}}, "his": {"_count": 6, "leg": {"_count": 1}, "rather": {"_count": 1}, "new": {"_count": 1}, "longing": {"_count": 1}, "disappointment": {"_count": 1}, "bad": {"_count": 1}}, "You": {"_count": 1, "will": {"_count": 1}}, "it": {"_count": 4, "": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 5, "in": {"_count": 1}, "with": {"_count": 1}, "all": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "nor": {"_count": 1, "hair": {"_count": 1}}, "their": {"_count": 1, "laughter": {"_count": 1}}, "from": {"_count": 4, "": {"_count": 1}, "me": {"_count": 1}, "Harry": {"_count": 1}, "Pansy": {"_count": 1}}, "the": {"_count": 5, "lump": {"_count": 1}, "fact": {"_count": 1}, "evidence": {"_count": 1}, "HalfBlood": {"_count": 1}, "boy": {"_count": 1}}, "in": {"_count": 4, "here": {"_count": 1}, "bushes": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 3}, ".": {"_count": 2}}, "himself": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "bony": {"_count": 1, "Aunt": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "a": {"_count": 2, "great": {"_count": 1}, "place": {"_count": 1}}, "gloves": {"_count": 1, "it": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "her": {"_count": 7, "face": {"_count": 4}, "sherry": {"_count": 1}, "likewise": {"_count": 1}, "daughters": {"_count": 1}}, "an": {"_count": 1, "all": {"_count": 1}}, "our": {"_count": 1, "mugs": {"_count": 1}}, "your": {"_count": 1, "stuff": {"_count": 1}}, "inside": {"_count": 1, "a": {"_count": 1}}, "what": {"_count": 1, "really": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "though": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "my": {"_count": 4, "book": {"_count": 3}, "whole": {"_count": 1}}, "you": {"_count": 3, "will": {"_count": 1}, "more": {"_count": 1}, "theyve": {"_count": 1}}, "Ariana": {"_count": 1, "once": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "initially": {"_count": 1}}, "this": {"_count": 1, "fact": {"_count": 1}}, "Hagrid": {"_count": 1, "told": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "stuff": {"_count": 1, "in": {"_count": 1}}}, "horrible": {"_count": 165, "scar": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "your": {"_count": 1}}, "smell": {"_count": 3, "in": {"_count": 1}, "a": {"_count": 1}, "reached": {"_count": 1}}, "it": {"_count": 2, "smelled": {"_count": 1}, "is": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "mistake": {"_count": 1, "": {"_count": 1}}, "yell": {"_count": 1, "": {"_count": 1}}, "jolt": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "thought": {"_count": 3, "struck": {"_count": 1}, "occurred": {"_count": 1}, "came": {"_count": 1}}, "thoughts": {"_count": 1, "always": {"_count": 1}}, "feeling": {"_count": 4, "hed": {"_count": 1}, "that": {"_count": 3}}, "ghost": {"_count": 1, "sitting": {"_count": 1}}, "sight": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "scene": {"_count": 1, "met": {"_count": 1}}, "to": {"_count": 8, "Harry": {"_count": 2}, "Crookshanks": {"_count": 1}, "watch": {"_count": 1}, "you": {"_count": 1}, "her": {"_count": 1}, "express": {"_count": 1}, "Kreacher": {"_count": 1}}, "animal": {"_count": 1, "Ive": {"_count": 1}}, "or": {"_count": 1, "Filch": {"_count": 1}}, "forced": {"_count": 1, "smile": {"_count": 1}}, "things": {"_count": 3, "happen": {"_count": 1}, "those": {"_count": 1}, "in": {"_count": 1}}, "happenings": {"_count": 1, "at": {"_count": 1}}, "seconds": {"_count": 1, "he": {"_count": 1}}, "lurch": {"_count": 1, "": {"_count": 1}}, "melting": {"_count": 1, "feeling": {"_count": 1}}, "stuffs": {"_count": 1, "been": {"_count": 1}}, "somersault": {"_count": 1, "": {"_count": 1}}, "prospect": {"_count": 1, "but": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 4, "Neville": {"_count": 1}, "Hermione": {"_count": 2}, "Luna": {"_count": 1}}, "image": {"_count": 1, "came": {"_count": 1}}, "mess": {"_count": 1, "": {"_count": 1}}, "truth": {"_count": 1, "sank": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "squelching": {"_count": 1, "noise": {"_count": 1}}, "happening": {"_count": 1, "": {"_count": 1}}, "stuff": {"_count": 3, "in": {"_count": 1}, "about": {"_count": 2}}, "and": {"_count": 3, "he": {"_count": 1}, "particular": {"_count": 1}, "what": {"_count": 1}}, "yellowandorange": {"_count": 1, "tie": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "sensation": {"_count": 3, "that": {"_count": 3}}, "accident": {"_count": 1, "": {"_count": 1}}, "crack": {"_count": 1, "cut": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "mirthless": {"_count": 1, "laugh": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "had": {"_count": 1, "happened": {"_count": 1}}, "travesty": {"_count": 1, "of": {"_count": 1}}, "gagging": {"_count": 1, "sound": {"_count": 1}}, "great": {"_count": 1, "fang": {"_count": 1}}, "reputation": {"_count": 1, "": {"_count": 1}}, "visions": {"_count": 1, "of": {"_count": 1}}, "hairy": {"_count": 4, "brown": {"_count": 3}, "body": {"_count": 1}}, "experience": {"_count": 1, "but": {"_count": 1}}, "remarks": {"_count": 1, "came": {"_count": 1}}, "noise": {"_count": 2, "a": {"_count": 2}}, "roaring": {"_count": 1, "shriek": {"_count": 1}}, "skrewts": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "Skeeter": {"_count": 1, "woman": {"_count": 1}}, "woman": {"_count": 1, "she": {"_count": 1}}, "pouchy": {"_count": 1, "face": {"_count": 1}}, "expression": {"_count": 1, "of": {"_count": 1}}, "screechy": {"_count": 1, "songs": {"_count": 1}}, "he": {"_count": 1, "might": {"_count": 1}}, "lies": {"_count": 1, "about": {"_count": 1}}, "manic": {"_count": 1, "way": {"_count": 1}}, "squealing": {"_count": 1, "yell": {"_count": 1}}, "earsplitting": {"_count": 1, "bloodcurdling": {"_count": 1}}, "old": {"_count": 1, "hag": {"_count": 1}}, "curses": {"_count": 1, "every": {"_count": 1}}, "sinking": {"_count": 1, "in": {"_count": 1}}, "hearty": {"_count": 1, "voice": {"_count": 1}}, "thing": {"_count": 3, "wizards": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "horses": {"_count": 2, "when": {"_count": 1}, "as": {"_count": 1}}, "pink": {"_count": 1, "Alice": {"_count": 1}}, "way": {"_count": 1, "responsible": {"_count": 1}}, "smirk": {"_count": 1, "on": {"_count": 1}}, "yes": {"_count": 1, "but": {"_count": 1}}, "bulging": {"_count": 1, "eyes": {"_count": 1}}, "misfortune": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "hot": {"_count": 1, "bubbling": {"_count": 1}}, "remedies": {"_count": 1, "": {"_count": 1}}, "spattering": {"_count": 1, "sound": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "impression": {"_count": 1, "that": {"_count": 1}}, "pang": {"_count": 1, "that": {"_count": 1}}, "stories": {"_count": 2, "about": {"_count": 2}}, "wide": {"_count": 1, "toadlike": {"_count": 1}}, "plummeting": {"_count": 1, "in": {"_count": 1}}, "painted": {"_count": 1, "kittens": {"_count": 1}}, "trick": {"_count": 1, "of": {"_count": 1}}, "kittens": {"_count": 1, "on": {"_count": 1}}, "skin": {"_count": 1, "complaint": {"_count": 1}}, "abruptness": {"_count": 1, "he": {"_count": 1}}, "mockbaby": {"_count": 1, "voice": {"_count": 1}}, "conversation": {"_count": 1, "of": {"_count": 1}}, "injuries": {"_count": 1, "It": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "has": {"_count": 1, "happened": {"_count": 1}}, "morning": {"_count": 1, "isnt": {"_count": 1}}, "moment": {"_count": 2, "he": {"_count": 1}, "Harrys": {"_count": 1}}, "incident": {"_count": 1, "the": {"_count": 1}}, "business": {"_count": 1, "can": {"_count": 1}}, "swelling": {"_count": 1, "billowing": {"_count": 1}}, "books": {"_count": 1, "where": {"_count": 1}}, "screech": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "nineyearold": {"_count": 1}}, "crunchy": {"_count": 1, "thud": {"_count": 1}}, "partlife": {"_count": 1, "to": {"_count": 1}}, "dandruff": {"_count": 1, "now": {"_count": 1}}, "dream": {"_count": 1, "": {"_count": 1}}, "compression": {"_count": 1, "": {"_count": 1}}, "fact": {"_count": 1, "of": {"_count": 1}}, "drawnout": {"_count": 1, "scream": {"_count": 1}}, "half": {"_count": 1, "sucking": {"_count": 1}}, "book": {"_count": 1, "really": {"_count": 1}}, "they": {"_count": 1, "seem": {"_count": 1}}, "vase": {"_count": 1, "Petunia": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "mixture": {"_count": 1, "of": {"_count": 1}}, "strangled": {"_count": 1, "hissing": {"_count": 1}}}, "laughed": {"_count": 152, "himself": {"_count": 1, "silly": {"_count": 1}}, "at": {"_count": 9, "for": {"_count": 1}, "an": {"_count": 1}, "my": {"_count": 2}, "Harrys": {"_count": 1}, "": {"_count": 1}, "Hermione": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "": {"_count": 47, ".": {"_count": 46}, "?": {"_count": 1}}, "but": {"_count": 6, "he": {"_count": 1}, "didnt": {"_count": 1}, "nobody": {"_count": 1}, "Hermione": {"_count": 2}, "Albus": {"_count": 1}}, "Harry": {"_count": 2, "caught": {"_count": 1}, "": {"_count": 1}}, "out": {"_count": 1, "loud": {"_count": 1}}, "and": {"_count": 14, "it": {"_count": 1}, "gradually": {"_count": 1}, "strode": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "feeling": {"_count": 1}, "shook": {"_count": 1}, "started": {"_count": 1}, "booed": {"_count": 1}, "cast": {"_count": 2}, "Ron": {"_count": 1}, "hugged": {"_count": 1}, "rran": {"_count": 1}}, "loudly": {"_count": 4, "at": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "a": {"_count": 3, "high": {"_count": 1}, "soft": {"_count": 1}, "highpitched": {"_count": 1}}, "his": {"_count": 1, "high": {"_count": 1}}, "so": {"_count": 2, "hard": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "openly": {"_count": 1, "watching": {"_count": 1}}, "about": {"_count": 1, "them": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 1}, "relief": {"_count": 1}}, "although": {"_count": 1, "Hermione": {"_count": 1}}, "even": {"_count": 2, "Mrs": {"_count": 1}, "louder": {"_count": 1}}, "during": {"_count": 1, "Dumbledores": {"_count": 1}}, "behind": {"_count": 1, "Harry": {"_count": 1}}, "airily": {"_count": 1, "oh": {"_count": 1}}, "harder": {"_count": 3, "than": {"_count": 3}}, "again": {"_count": 6, "": {"_count": 3}, "though": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 1}}, "softly": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "very": {"_count": 1, "bitterly": {"_count": 1}}, "aloud": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "sourly": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 2, "looked": {"_count": 1}, "however": {"_count": 1}}, "still": {"_count": 1, "harder": {"_count": 1}}, "except": {"_count": 1, "Hermione": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "Sirius": {"_count": 1, "and": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "some": {"_count": 1, "more": {"_count": 1}}, "raucously": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 2, "the": {"_count": 1}, "there": {"_count": 1}}, "loudest": {"_count": 1, "of": {"_count": 1}}, "who": {"_count": 1, "neither": {"_count": 1}}, "uncomfortably": {"_count": 1, "and": {"_count": 1}}, "easily": {"_count": 1, "she": {"_count": 1}}, "the": {"_count": 2, "Gryffindor": {"_count": 1}, "same": {"_count": 1}}, "unkindly": {"_count": 1, "at": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "derisively": {"_count": 1, "": {"_count": 1}}, "pain": {"_count": 1, "shot": {"_count": 1}}, "jeeringly": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "casting": {"_count": 1}}, "The": {"_count": 1, "strange": {"_count": 1}}, "Bellatrix": {"_count": 1, "still": {"_count": 1}}, "until": {"_count": 1, "his": {"_count": 1}}, "gleefully": {"_count": 1, "": {"_count": 1}}, "Dawlish": {"_count": 1, "is": {"_count": 1}}, "throwing": {"_count": 1, "the": {"_count": 1}}, "permitted": {"_count": 1, "his": {"_count": 1}}}, "sleepless": {"_count": 2, "night": {"_count": 1, "imagining": {"_count": 1}}, "nights": {"_count": 1, "": {"_count": 1}}}, "school": {"_count": 597, "the": {"_count": 6, "next": {"_count": 1}, "train": {"_count": 1}, "whole": {"_count": 1}, "four": {"_count": 1}, "blazing": {"_count": 1}, "night": {"_count": 1}}, "kitchens": {"_count": 2, "": {"_count": 2}}, "buildings": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "cupboard": {"_count": 1}}, "Harry": {"_count": 4, "had": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "persisted": {"_count": 1}}, "was": {"_count": 10, "over": {"_count": 1}, "there": {"_count": 1}, "happily": {"_count": 1}, "buzzing": {"_count": 1}, "one": {"_count": 1}, "quite": {"_count": 1}, "outside": {"_count": 1}, "absent": {"_count": 1}, "Dean": {"_count": 1}, "covered": {"_count": 1}}, "and": {"_count": 33, "for": {"_count": 1}, "came": {"_count": 1}, "they": {"_count": 2}, "further": {"_count": 1}, "up": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 1}, "Ill": {"_count": 1}, "lucky": {"_count": 1}, "work": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 1}, "never": {"_count": 1}, "is": {"_count": 1}, "reminisced": {"_count": 1}, "adults": {"_count": 1}, "that": {"_count": 2}, "then": {"_count": 1}, "I": {"_count": 3}, "especially": {"_count": 1}, "his": {"_count": 1}, "get": {"_count": 1}, "sometimes": {"_count": 1}, "Quidditch": {"_count": 1}, "while": {"_count": 1}, "go": {"_count": 1}, "curses": {"_count": 1}}, "Smeltings": {"_count": 1, "": {"_count": 1}}, "": {"_count": 114, ".": {"_count": 84}, "?": {"_count": 20}, "!": {"_count": 10}}, "uniform": {"_count": 1, "she": {"_count": 1}}, "for": {"_count": 11, "a": {"_count": 3}, "wizards": {"_count": 1}, "the": {"_count": 2}, "Christmas": {"_count": 1}, "days": {"_count": 1}, "people": {"_count": 1}, "mad": {"_count": 1}, "freaks": {"_count": 1}}, "after": {"_count": 2, "all": {"_count": 1}, "dark": {"_count": 1}}, "not": {"_count": 3, "jus": {"_count": 1}, "an": {"_count": 1}, "just": {"_count": 1}}, "with": {"_count": 8, "that": {"_count": 2}, "a": {"_count": 1}, "secondhand": {"_count": 1}, "Black": {"_count": 1}, "you": {"_count": 1}, "us": {"_count": 1}, "Snape": {"_count": 1}}, "of": {"_count": 6, "witchcraft": {"_count": 2}, "all": {"_count": 1}, "his": {"_count": 1}, "Hogwarts": {"_count": 1}, "magic": {"_count": 1}}, "grounds": {"_count": 7, "and": {"_count": 2}, "": {"_count": 3}, "Harry": {"_count": 1}, "but": {"_count": 1}}, "books": {"_count": 2, "in": {"_count": 1}, "were": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "separately": {"_count": 1, "": {"_count": 1}}, "must": {"_count": 1, "already": {"_count": 1}}, "report": {"_count": 1, "home": {"_count": 1}}, "song": {"_count": 1, "": {"_count": 1}}, "bellowed": {"_count": 1, "Hogwarts": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "owls": {"_count": 4, "": {"_count": 2}, "swooped": {"_count": 1}, "then": {"_count": 1}}, "she": {"_count": 4, "follows": {"_count": 1}, "said": {"_count": 2}, "muttered": {"_count": 1}}, "brooms": {"_count": 3, "saying": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}}, "at": {"_count": 5, "night": {"_count": 2}, "this": {"_count": 1}, "Halloween": {"_count": 1}, "whatever": {"_count": 1}}, "rule": {"_count": 3, "today": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}}, "became": {"_count": 1, "icy": {"_count": 1}}, "said": {"_count": 12, "Snape": {"_count": 1}, "Harry": {"_count": 4}, "Uncle": {"_count": 1}, "Mr": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 2}, "Tonks": {"_count": 1}, "Phineas": {"_count": 1}}, "seemed": {"_count": 3, "to": {"_count": 3}}, "three": {"_count": 1, "nights": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "secret": {"_count": 1}, "Brazil": {"_count": 1}, "any": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 4, "Professor": {"_count": 1}, "even": {"_count": 1}, "half": {"_count": 1}, "he": {"_count": 1}}, "on": {"_count": 2, "Halloween": {"_count": 1}, "Monday": {"_count": 1}}, "knows": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 3, "askin": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 1}}, "food": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 6, "any": {"_count": 1}, "permission": {"_count": 1}, "inside": {"_count": 1}, "a": {"_count": 1}, "our": {"_count": 1}, "Enough": {"_count": 1}}, "where": {"_count": 4, "he": {"_count": 1}, "they": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}}, "year": {"_count": 8, "was": {"_count": 1}, "at": {"_count": 1}, "will": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "taking": {"_count": 1}, "and": {"_count": 1}, "arrived": {"_count": 1}}, "Mr": {"_count": 2, "Mason": {"_count": 1}, "Potter": {"_count": 1}}, "sir": {"_count": 3, "": {"_count": 3}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "Decree": {"_count": 1, "for": {"_count": 1}}, "You": {"_count": 1, "should": {"_count": 1}}, "spellbooks": {"_count": 1, "were": {"_count": 1}}, "stuff": {"_count": 2, "this": {"_count": 1}, "last": {"_count": 1}}, "things": {"_count": 4, "last": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "list": {"_count": 3, "": {"_count": 1}, "out": {"_count": 1}, "that": {"_count": 1}}, "cabbages": {"_count": 1, "": {"_count": 1}}, "havent": {"_count": 1, "we": {"_count": 1}}, "but": {"_count": 6, "he": {"_count": 1}, "as": {"_count": 1}, "she": {"_count": 2}, "was": {"_count": 1}, "if": {"_count": 1}}, "train": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "if": {"_count": 2, "yehd": {"_count": 1}, "you": {"_count": 1}}, "wand": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 9, "eat": {"_count": 1}, "visit": {"_count": 1}, "make": {"_count": 1}, "see": {"_count": 1}, "report": {"_count": 1}, "do": {"_count": 1}, "help": {"_count": 1}, "remain": {"_count": 1}, "join": {"_count": 1}}, "poltergeist": {"_count": 1, "a": {"_count": 1}}, "record": {"_count": 1, "": {"_count": 1}}, "feast": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 1, "talk": {"_count": 1}}, "Houses": {"_count": 1, "are": {"_count": 1}}, "has": {"_count": 2, "been": {"_count": 1}, "two": {"_count": 1}}, "rules": {"_count": 8, "I": {"_count": 1}, "into": {"_count": 1}, "said": {"_count": 1}, "after": {"_count": 1}, "": {"_count": 3}, "from": {"_count": 1}}, "by": {"_count": 2, "then": {"_count": 1}, "Monday": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 8, "whispered": {"_count": 1}, "would": {"_count": 1}, "said": {"_count": 1}, "added": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 1}, "gathered": {"_count": 1}, "skipped": {"_count": 1}}, "another": {"_count": 1, "way": {"_count": 1}}, "here": {"_count": 2, "and": {"_count": 1}, "at": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "constantly": {"_count": 1, "checking": {"_count": 1}}, "prefect": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "model": {"_count": 1}}, "needs": {"_count": 2, "ridding": {"_count": 1}, "now": {"_count": 1}}, "arrived": {"_count": 2, "back": {"_count": 1}, "most": {"_count": 1}}, "fifty": {"_count": 2, "years": {"_count": 2}}, "so": {"_count": 4, "alert": {"_count": 1}, "their": {"_count": 1}, "far": {"_count": 1}, "unless": {"_count": 1}}, "today": {"_count": 1, "delivering": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "will": {"_count": 4, "be": {"_count": 1}, "read": {"_count": 1}, "have": {"_count": 1}, "soon": {"_count": 1}}, "closed": {"_count": 1, "": {"_count": 1}}, "governors": {"_count": 3, "have": {"_count": 1}, "": {"_count": 2}}, "when": {"_count": 5, "none": {"_count": 3}, "I": {"_count": 1}, "you": {"_count": 1}}, "tonight": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "that": {"_count": 5, "didnt": {"_count": 1}, "Hagrids": {"_count": 1}, "morning": {"_count": 1}, "afternoon": {"_count": 1}, "he": {"_count": 1}}, "as": {"_count": 5, "though": {"_count": 2}, "a": {"_count": 1}, "February": {"_count": 1}, "what": {"_count": 1}}, "open": {"_count": 1, "at": {"_count": 1}}, "running": {"_count": 1, "as": {"_count": 1}}, "tell": {"_count": 1, "them": {"_count": 1}}, "roosters": {"_count": 1, "and": {"_count": 1}}, "Sorting": {"_count": 1, "Hat": {"_count": 1}}, "treat": {"_count": 1, "Oh": {"_count": 1}}, "governor": {"_count": 1, "": {"_count": 1}}, "vacation": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 2, "allowed": {"_count": 1}, "being": {"_count": 1}}, "would": {"_count": 2, "knock": {"_count": 1}, "mean": {"_count": 1}}, "robes": {"_count": 9, "were": {"_count": 1}, "removed": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}}, "Blacks": {"_count": 1, "chances": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 4, "presently": {"_count": 1}, "allowed": {"_count": 1}, "all": {"_count": 1}, "cause": {"_count": 1}}, "clouds": {"_count": 1, "my": {"_count": 1}}, "an": {"_count": 3, "don": {"_count": 1}, "nex": {"_count": 1}, "hour": {"_count": 1}}, "like": {"_count": 3, "a": {"_count": 1}, "wildfire": {"_count": 1}, "she": {"_count": 1}}, "He": {"_count": 2, "cant": {"_count": 1}, "alone": {"_count": 1}}, "what": {"_count": 2, "had": {"_count": 1}, "happened": {"_count": 1}}, "talked": {"_count": 1, "of": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}, "returned": {"_count": 1, "shortly": {"_count": 1}}, "moving": {"_count": 1, "into": {"_count": 1}}, "commands": {"_count": 1, "you": {"_count": 1}}, "spilling": {"_count": 1, "onto": {"_count": 1}}, "admitting": {"_count": 1, "that": {"_count": 1}}, "using": {"_count": 1, "dark": {"_count": 1}}, "Snape": {"_count": 1, "spat": {"_count": 1}}, "I": {"_count": 3, "trust": {"_count": 1}, "should": {"_count": 1}, "believe": {"_count": 1}}, "entrance": {"_count": 1, "": {"_count": 1}}, "trunk": {"_count": 6, "in": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "for": {"_count": 1}}, "nurse": {"_count": 3, "that": {"_count": 1}, "had": {"_count": 2}}, "outfitters": {"_count": 1, "didnt": {"_count": 1}}, "aloud": {"_count": 1, "in": {"_count": 1}}, "ones": {"_count": 1, "except": {"_count": 1}}, "days": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "all": {"_count": 3, "of": {"_count": 2}, "day": {"_count": 1}}, "clearly": {"_count": 1, "upon": {"_count": 1}}, "or": {"_count": 2, "hang": {"_count": 1}, "was": {"_count": 1}}, "champions": {"_count": 2, "": {"_count": 1}, "would": {"_count": 1}}, "champion": {"_count": 5, "then": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 2}}, "does": {"_count": 1, "he": {"_count": 1}}, "once": {"_count": 1, "he": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "had": {"_count": 5, "suspected": {"_count": 1}, "been": {"_count": 1}, "read": {"_count": 1}, "spent": {"_count": 1}, "left": {"_count": 1}}, "bags": {"_count": 1, "one": {"_count": 1}}, "barn": {"_count": 2, "owl": {"_count": 1}, "owls": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "you": {"_count": 5, "and": {"_count": 1}, "go": {"_count": 1}, "can": {"_count": 1}, "say": {"_count": 1}, "get": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "anymore": {"_count": 2, "said": {"_count": 1}, "Hagrid": {"_count": 1}}, "owl": {"_count": 1, "then": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "said": {"_count": 1}}, "screech": {"_count": 1, "owls": {"_count": 1}}, "Hagrid": {"_count": 1, "Dumbledore": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "Dumbledore": {"_count": 1}}, "bag": {"_count": 1, "and": {"_count": 1}}, "pending": {"_count": 1, "further": {"_count": 1}}, "But": {"_count": 1, "theyre": {"_count": 1}}, "holidays": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "Harrys": {"_count": 1, "behavior": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "trunks": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "waited": {"_count": 1, "with": {"_count": 1}}, "Thought": {"_count": 1, "never": {"_count": 1}}, "And": {"_count": 1, "pass": {"_count": 1}}, "Now": {"_count": 1, "turned": {"_count": 1}}, "Must": {"_count": 1, "meet": {"_count": 1}}, "advice": {"_count": 1, "before": {"_count": 1}}, "due": {"_count": 1, "warning": {"_count": 1}}, "because": {"_count": 1, "everyone": {"_count": 1}}, "a": {"_count": 1, "detailed": {"_count": 1}}, "early": {"_count": 1, "not": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "may": {"_count": 1, "be": {"_count": 1}}, "management": {"_count": 1, "": {"_count": 1}}, "carriages": {"_count": 1, "unless": {"_count": 1}}, "career": {"_count": 2, "he": {"_count": 2}}, "from": {"_count": 2, "those": {"_count": 1}, "what": {"_count": 1}}, "Ginny": {"_count": 1, "corrected": {"_count": 1}}, "stopping": {"_count": 1, "students": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 1, "stairs": {"_count": 1}}, "overnight": {"_count": 1, "but": {"_count": 1}}, "unless": {"_count": 1, "we": {"_count": 1}}, "answering": {"_count": 1, "the": {"_count": 1}}, "assembled": {"_count": 1, "there": {"_count": 1}}, "corridor": {"_count": 1, "into": {"_count": 1}}, "upending": {"_count": 1, "tables": {"_count": 1}}, "telescopes": {"_count": 1, "Mr": {"_count": 1}}, "discipline": {"_count": 1, "": {"_count": 1}}, "knew": {"_count": 1, "where": {"_count": 1}}, "please": {"_count": 1, "let": {"_count": 1}}, "sneered": {"_count": 1, "Malfoy": {"_count": 1}}, "lesson": {"_count": 1, "and": {"_count": 1}}, "extra": {"_count": 1, "protection": {"_count": 1}}, "then": {"_count": 2, "": {"_count": 1}, "Albania": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "since": {"_count": 1, "birth": {"_count": 1}}, "called": {"_count": 1, "Hogwarts": {"_count": 1}}, "your": {"_count": 1, "new": {"_count": 1}}, "nobody": {"_count": 1, "will": {"_count": 1}}, "equipment": {"_count": 1, "with": {"_count": 1}}, "disguised": {"_count": 1, "as": {"_count": 1}}, "records": {"_count": 1, "even": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "whys": {"_count": 1, "she": {"_count": 1}}, "until": {"_count": 1, "": {"_count": 1}}, "blamed": {"_count": 1, "for": {"_count": 1}}, "put": {"_count": 1, "so": {"_count": 1}}, "unprotected": {"_count": 1, "during": {"_count": 1}}, "which": {"_count": 1, "I": {"_count": 1}}, "monitored": {"_count": 1, "": {"_count": 1}}, "should": {"_count": 1, "reopen": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "growled": {"_count": 1, "Hagrid": {"_count": 1}}, "years": {"_count": 1, "he": {"_count": 1}}, "offered": {"_count": 1, "he": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "Ariana": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "desks": {"_count": 1, "though": {"_count": 1}}, "textbook": {"_count": 1, "A": {"_count": 1}}, "holiday": {"_count": 1, "": {"_count": 1}}, "famous": {"_count": 1, "even": {"_count": 1}}, "age": {"_count": 1, "they": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "against": {"_count": 1, "HeWhoMust": {"_count": 1}}, "boundaries": {"_count": 1, "they": {"_count": 1}}, "hes": {"_count": 2, "coming": {"_count": 1}, "Professor": {"_count": 1}}, "Snapes": {"_count": 1, "run": {"_count": 1}}, "ghosts": {"_count": 1, "": {"_count": 1}}, "untouched": {"_count": 1, "": {"_count": 1}}, "Sounds": {"_count": 1, "like": {"_count": 1}}, "They": {"_count": 1, "wouldnt": {"_count": 1}}}, "already": {"_count": 474, "laughed": {"_count": 1, "at": {"_count": 1}}, "broken": {"_count": 1, "his": {"_count": 1}}, "have": {"_count": 6, "cracked": {"_count": 1}, "the": {"_count": 3}, "you": {"_count": 1}, "all": {"_count": 1}}, "got": {"_count": 16, "us": {"_count": 1}, "past": {"_count": 1}, "one": {"_count": 3}, "mine": {"_count": 1}, "Roddy": {"_count": 1}, "some": {"_count": 2}, "thank": {"_count": 1}, "about": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 2}, "their": {"_count": 1}, "an": {"_count": 1}}, "packed": {"_count": 2, "with": {"_count": 1}, "most": {"_count": 1}}, "changed": {"_count": 3, "into": {"_count": 2}, "": {"_count": 1}}, "and": {"_count": 5, "his": {"_count": 1}, "we": {"_count": 1}, "Dobby": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 1}}, "seen": {"_count": 2, "him": {"_count": 2}}, "": {"_count": 38, ".": {"_count": 22}, "!": {"_count": 8}, "?": {"_count": 8}}, "left": {"_count": 4, "Bill": {"_count": 1}, "Hogwarts": {"_count": 1}, "the": {"_count": 1}, "although": {"_count": 1}}, "wearing": {"_count": 4, "her": {"_count": 2}, "a": {"_count": 1}, "their": {"_count": 1}}, "told": {"_count": 13, "him": {"_count": 1}, "them": {"_count": 1}, "you": {"_count": 7}, "Professor": {"_count": 1}, "us": {"_count": 1}, "the": {"_count": 1}, "someone": {"_count": 1}}, "be": {"_count": 2, "here": {"_count": 1}, "dead": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "been": {"_count": 19, "brought": {"_count": 1}, "at": {"_count": 1}, "bound": {"_count": 1}, "caught": {"_count": 1}, "in": {"_count": 1}, "working": {"_count": 1}, "examined": {"_count": 1}, "guffawing": {"_count": 1}, "so": {"_count": 1}, "tested": {"_count": 1}, "withdrawn": {"_count": 1}, "postponed": {"_count": 1}, "forced": {"_count": 1}, "imprisoned": {"_count": 1}, "used": {"_count": 1}, "visited": {"_count": 1}, "called": {"_count": 1}, "helped": {"_count": 1}, "marked": {"_count": 1}}, "had": {"_count": 5, "a": {"_count": 2}, "quite": {"_count": 1}, "two": {"_count": 1}, "some": {"_count": 1}}, "there": {"_count": 4, "and": {"_count": 3}, "clouds": {"_count": 1}}, "dead": {"_count": 5, "was": {"_count": 1}, "": {"_count": 2}, "Ron": {"_count": 1}, "but": {"_count": 1}}, "agreed": {"_count": 2, "theyd": {"_count": 1}, "it": {"_count": 1}}, "done": {"_count": 3, "that": {"_count": 1}, "it": {"_count": 2}}, "stretched": {"_count": 3, "to": {"_count": 1}, "out": {"_count": 2}}, "know": {"_count": 14, "it": {"_count": 2}, "we": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 2}, "dont": {"_count": 1}, "the": {"_count": 1}, "where": {"_count": 1}, "what": {"_count": 1}, "this": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "knew": {"_count": 10, "what": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 1}, "nearly": {"_count": 1}, "it": {"_count": 1}, "exactly": {"_count": 1}, "how": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}}, "invisible": {"_count": 1, "they": {"_count": 1}}, "caught": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "ajar": {"_count": 1, "": {"_count": 1}}, "jumped": {"_count": 1, "": {"_count": 1}}, "someone": {"_count": 2, "there": {"_count": 1}, "sitting": {"_count": 1}}, "suspected": {"_count": 1, "me": {"_count": 1}}, "full": {"_count": 5, "": {"_count": 2}, "of": {"_count": 3}}, "sitting": {"_count": 4, "at": {"_count": 1}, "around": {"_count": 1}, "": {"_count": 1}, "down": {"_count": 1}}, "knows": {"_count": 4, "youre": {"_count": 1}, "about": {"_count": 1}, "said": {"_count": 1}, "where": {"_count": 1}}, "dressed": {"_count": 2, "his": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 6, "Mr": {"_count": 1}, "Ill": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "Dumbledore": {"_count": 1}}, "started": {"_count": 4, "said": {"_count": 1}, "on": {"_count": 1}, "walking": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 2}, "an": {"_count": 1}, "half": {"_count": 1}, "place": {"_count": 1}, "there": {"_count": 1}, "their": {"_count": 1}}, "heard": {"_count": 4, "of": {"_count": 1}, "Fang": {"_count": 1}, "all": {"_count": 1}, "everything": {"_count": 1}}, "passed": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "sopping": {"_count": 1, "floor": {"_count": 1}}, "using": {"_count": 2, "at": {"_count": 1}, "magic": {"_count": 1}}, "expelled": {"_count": 1, "his": {"_count": 1}}, "taken": {"_count": 3, "your": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "advising": {"_count": 1, "a": {"_count": 1}}, "murdered": {"_count": 1, "a": {"_count": 1}}, "delicate": {"_count": 1, "Im": {"_count": 1}}, "assembled": {"_count": 1, "": {"_count": 1}}, "Blacks": {"_count": 1, "not": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "finished": {"_count": 4, "it": {"_count": 1}, "his": {"_count": 1}, "breakfast": {"_count": 1}, "their": {"_count": 1}}, "decorated": {"_count": 1, "his": {"_count": 1}}, "planning": {"_count": 1, "the": {"_count": 1}}, "groaned": {"_count": 1, "Hagrid": {"_count": 1}}, "ripping": {"_count": 2, "the": {"_count": 1}, "open": {"_count": 1}}, "it": {"_count": 2, "seemed": {"_count": 1}, "was": {"_count": 1}}, "standing": {"_count": 2, "in": {"_count": 2}}, "won": {"_count": 1, "the": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "divided": {"_count": 1, "into": {"_count": 1}}, "decided": {"_count": 2, "": {"_count": 1}, "against": {"_count": 1}}, "happened": {"_count": 1, "": {"_count": 1}}, "sinking": {"_count": 2, "behind": {"_count": 1}, "over": {"_count": 1}}, "facing": {"_count": 1, "suspension": {"_count": 1}}, "snarled": {"_count": 1, "Snape": {"_count": 1}}, "retrieved": {"_count": 1, "Snapes": {"_count": 1}}, "lengthening": {"_count": 1, "the": {"_count": 1}}, "floating": {"_count": 1, "at": {"_count": 1}}, "explained": {"_count": 1, "to": {"_count": 1}}, "counting": {"_count": 1, "the": {"_count": 1}}, "seated": {"_count": 3, "around": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}}, "under": {"_count": 1, "severe": {"_count": 1}}, "spotted": {"_count": 2, "them": {"_count": 1}, "Christmas": {"_count": 1}}, "a": {"_count": 4, "small": {"_count": 1}, "shiny": {"_count": 1}, "flight": {"_count": 1}, "good": {"_count": 1}}, "getting": {"_count": 2, "suspicious": {"_count": 1}, "into": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "sprinting": {"_count": 1, "away": {"_count": 1}}, "did": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "hurrying": {"_count": 5, "up": {"_count": 2}, "across": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}}, "shining": {"_count": 1, "over": {"_count": 1}}, "tending": {"_count": 1, "to": {"_count": 1}}, "put": {"_count": 2, "her": {"_count": 1}, "down": {"_count": 1}}, "struggled": {"_count": 1, "through": {"_count": 1}}, "larger": {"_count": 1, "than": {"_count": 1}}, "having": {"_count": 1, "kittens": {"_count": 1}}, "asked": {"_count": 3, "her": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "going": {"_count": 2, "with": {"_count": 2}}, "making": {"_count": 2, "Christmas": {"_count": 1}, "every": {"_count": 1}}, "worked": {"_count": 2, "it": {"_count": 1}, "out": {"_count": 1}}, "littered": {"_count": 1, "with": {"_count": 1}}, "invited": {"_count": 1, "her": {"_count": 1}}, "overlarge": {"_count": 1, "head": {"_count": 1}}, "reduced": {"_count": 1, "them": {"_count": 1}}, "zooming": {"_count": 2, "toward": {"_count": 1}, "along": {"_count": 1}}, "heavily": {"_count": 1, "stained": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "apprehended": {"_count": 1, "Dolohov": {"_count": 1}}, "on": {"_count": 3, "this": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}}, "learned": {"_count": 1, "": {"_count": 1}}, "injured": {"_count": 1, "leg": {"_count": 1}}, "reentered": {"_count": 1, "my": {"_count": 1}}, "at": {"_count": 3, "hand": {"_count": 1}, "the": {"_count": 2}}, "yet": {"_count": 1, "another": {"_count": 1}}, "suffered": {"_count": 2, "directly": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 1, "mark": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "received": {"_count": 1, "an": {"_count": 1}}, "pulling": {"_count": 2, "a": {"_count": 1}, "half": {"_count": 1}}, "unbuckling": {"_count": 1, "Harrys": {"_count": 1}}, "doxyfilled": {"_count": 1, "pocket": {"_count": 1}}, "given": {"_count": 5, "you": {"_count": 1}, "serious": {"_count": 1}, "them": {"_count": 1}, "I": {"_count": 1}, "him": {"_count": 1}}, "become": {"_count": 1, "the": {"_count": 1}}, "bought": {"_count": 1, "him": {"_count": 1}}, "uncomfortable": {"_count": 2, "clenched": {"_count": 1}, "due": {"_count": 1}}, "gone": {"_count": 4, "by": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "down": {"_count": 1}}, "heading": {"_count": 2, "off": {"_count": 1}, "down": {"_count": 1}}, "tested": {"_count": 1, "them": {"_count": 1}}, "arent": {"_count": 1, "we": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}, "read": {"_count": 2, "chapter": {"_count": 1}, "that": {"_count": 1}}, "being": {"_count": 1, "punished": {"_count": 1}}, "attracted": {"_count": 1, "the": {"_count": 1}}, "missed": {"_count": 1, "History": {"_count": 1}}, "ten": {"_count": 1, "past": {"_count": 1}}, "slapped": {"_count": 1, "the": {"_count": 1}}, "filled": {"_count": 1, "half": {"_count": 1}}, "asleep": {"_count": 1, "": {"_count": 1}}, "livid": {"_count": 1, "that": {"_count": 1}}, "halfway": {"_count": 2, "through": {"_count": 2}}, "talking": {"_count": 1, "about": {"_count": 1}}, "shown": {"_count": 1, "aptitude": {"_count": 1}}, "informed": {"_count": 1, "the": {"_count": 1}}, "swung": {"_count": 1, "shut": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "cried": {"_count": 1, "Legilimens": {"_count": 1}}, "found": {"_count": 1, "us": {"_count": 1}}, "arrived": {"_count": 1, "were": {"_count": 1}}, "sacked": {"_count": 1, "Trelawney": {"_count": 1}}, "planned": {"_count": 1, "not": {"_count": 1}}, "objecting": {"_count": 1, "painfully": {"_count": 1}}, "striding": {"_count": 1, "away": {"_count": 1}}, "promised": {"_count": 1, "Hagrid": {"_count": 1}}, "bound": {"_count": 1, "by": {"_count": 1}}, "stepped": {"_count": 1, "over": {"_count": 1}}, "raised": {"_count": 1, "the": {"_count": 1}}, "profited": {"_count": 1, "from": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "let": {"_count": 1, "in": {"_count": 1}}, "scribbling": {"_count": 1, "": {"_count": 1}}, "proved": {"_count": 1, "the": {"_count": 1}}, "tearing": {"_count": 1, "away": {"_count": 1}}, "tried": {"_count": 1, "": {"_count": 1}}, "pointed": {"_count": 2, "his": {"_count": 2}}, "sent": {"_count": 1, "a": {"_count": 1}}, "ripped": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "defied": {"_count": 1, "Voldemort": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "bored": {"_count": 1, "with": {"_count": 1}}, "without": {"_count": 1, "any": {"_count": 1}}, "with": {"_count": 1, "one": {"_count": 1}}, "moving": {"_count": 1, "back": {"_count": 1}}, "rummaging": {"_count": 1, "in": {"_count": 1}}, "scrambling": {"_count": 1, "up": {"_count": 1}}, "confessed": {"_count": 2, "that": {"_count": 1}, "to": {"_count": 1}}, "attempted": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "Harrys": {"_count": 1, "idiot": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "ducked": {"_count": 1, "out": {"_count": 1}}, "reserved": {"_count": 1, "anything": {"_count": 1}}, "sliding": {"_count": 1, "it": {"_count": 1}}, "queuing": {"_count": 1, "outside": {"_count": 1}}, "bulging": {"_count": 1, "chest": {"_count": 1}}, "resembled": {"_count": 1, "the": {"_count": 1}}, "proven": {"_count": 1, "to": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "released": {"_count": 1, "Merope": {"_count": 1}}, "sold": {"_count": 1, "or": {"_count": 1}}, "aware": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 1, "felt": {"_count": 1}}, "discovered": {"_count": 2, "that": {"_count": 1}, "eight": {"_count": 1}}, "highly": {"_count": 1, "selfsufficient": {"_count": 1}}, "sped": {"_count": 1, "off": {"_count": 1}}, "strode": {"_count": 1, "past": {"_count": 1}}, "singlehandedly": {"_count": 1, "delivered": {"_count": 1}}, "half": {"_count": 2, "hoping": {"_count": 1}, "left": {"_count": 1}}, "approaching": {"_count": 1, "Slughorns": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "Apparated": {"_count": 1, "Ron": {"_count": 1}}, "indicated": {"_count": 2, "resolved": {"_count": 1}, "Riddle": {"_count": 1}}, "killed": {"_count": 1, "his": {"_count": 1}}, "tipped": {"_count": 1, "the": {"_count": 1}}, "forgotten": {"_count": 1, "what": {"_count": 1}}, "thrown": {"_count": 1, "the": {"_count": 1}}, "recounted": {"_count": 1, "it": {"_count": 1}}, "cutting": {"_count": 1, "it": {"_count": 1}}, "scarlet": {"_count": 1, "cheeks": {"_count": 1}}, "completed": {"_count": 1, "": {"_count": 1}}, "packing": {"_count": 1, "up": {"_count": 1}}, "dug": {"_count": 1, "the": {"_count": 1}}, "hurtling": {"_count": 1, "back": {"_count": 1}}, "immortal": {"_count": 1, "you": {"_count": 1}}, "destroyed": {"_count": 1, "one": {"_count": 1}}, "limited": {"_count": 1, "time": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "flung": {"_count": 1, "himself": {"_count": 1}}, "turned": {"_count": 1, "his": {"_count": 1}}, "climbing": {"_count": 1, "onto": {"_count": 1}}, "tottering": {"_count": 1, "back": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}, "settled": {"_count": 1, "into": {"_count": 1}}, "used": {"_count": 1, "you": {"_count": 1}}, "crammed": {"_count": 1, "bin": {"_count": 1}}, "reached": {"_count": 2, "the": {"_count": 2}}, "sore": {"_count": 1, "and": {"_count": 1}}, "dark": {"_count": 1, "in": {"_count": 1}}, "blasted": {"_count": 1, "the": {"_count": 1}}, "punishing": {"_count": 1, "himself": {"_count": 1}}, "blooming": {"_count": 1, "on": {"_count": 1}}, "laid": {"_count": 1, "for": {"_count": 1}}, "busy": {"_count": 2, "at": {"_count": 1}, "in": {"_count": 1}}, "made": {"_count": 1, "five": {"_count": 1}}, "scarred": {"_count": 1, "plenty": {"_count": 1}}, "stormed": {"_count": 1, "into": {"_count": 1}}, "glimmering": {"_count": 1, "feebly": {"_count": 1}}, "imagining": {"_count": 1, "blood": {"_count": 1}}, "running": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "mines": {"_count": 1}}, "acquired": {"_count": 1, "a": {"_count": 1}}, "warned": {"_count": 1, "them": {"_count": 1}}, "fifty": {"_count": 1, "feet": {"_count": 1}}, "acted": {"_count": 1, "had": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "falling": {"_count": 1, "forward": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "placed": {"_count": 1, "protection": {"_count": 1}}, "strewn": {"_count": 1, "across": {"_count": 1}}, "died": {"_count": 1, "": {"_count": 1}}, "flourishing": {"_count": 1, "inside": {"_count": 1}}, "dying": {"_count": 1, "when": {"_count": 1}}, "disappeared": {"_count": 1, "": {"_count": 1}}, "comes": {"_count": 1, "round": {"_count": 1}}, "ablaze": {"_count": 1, "with": {"_count": 1}}}, "baggy": {"_count": 7, "clothes": {"_count": 1, "and": {"_count": 1}}, "old": {"_count": 1, "clothes": {"_count": 1}}, "jeans": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "faded": {"_count": 1}}, "eyes": {"_count": 1, "that": {"_count": 1}}, "bloodshot": {"_count": 1, "eyes": {"_count": 1}}, "Y": {"_count": 1, "Fronts": {"_count": 1}}}, "taped": {"_count": 2, "glasses": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "sheared": {"_count": 1, "it": {"_count": 1, "off": {"_count": 1}}}, "given": {"_count": 265, "a": {"_count": 17, "week": {"_count": 1}, "match": {"_count": 1}, "wild": {"_count": 1}, "wide": {"_count": 1}, "valentine": {"_count": 1}, "free": {"_count": 1}, "sock": {"_count": 1}, "very": {"_count": 1}, "complicated": {"_count": 1}, "lifetime": {"_count": 1}, "great": {"_count": 2}, "loud": {"_count": 1}, "dozen": {"_count": 1}, "cry": {"_count": 1}, "moments": {"_count": 1}, "completely": {"_count": 1}}, "anything": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "him": {"_count": 39, "a": {"_count": 9}, "out": {"_count": 1}, "as": {"_count": 1}, "for": {"_count": 4}, "including": {"_count": 1}, "": {"_count": 8}, "two": {"_count": 1}, "zero": {"_count": 1}, "but": {"_count": 1}, "on": {"_count": 1}, "too": {"_count": 1}, "an": {"_count": 2}, "which": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "so": {"_count": 1}, "scars": {"_count": 1}, "SkeleGro": {"_count": 1}, "its": {"_count": 1}}, "Peeves": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 4, "him": {"_count": 2}, "be": {"_count": 1}, "St": {"_count": 1}}, "Harry": {"_count": 14, "something": {"_count": 1}, "just": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 2}, "to": {"_count": 1}, "a": {"_count": 4}, "plenty": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "up": {"_count": 18, "hope": {"_count": 4}, "asking": {"_count": 1}, "on": {"_count": 2}, "and": {"_count": 1}, "said": {"_count": 1}, "Divination": {"_count": 1}, "his": {"_count": 1}, "completely": {"_count": 1}, "Care": {"_count": 1}, "attempting": {"_count": 1}, "": {"_count": 2}, "my": {"_count": 1}, "looking": {"_count": 1}}, "in": {"_count": 2, "at": {"_count": 1}, "because": {"_count": 1}}, "special": {"_count": 1, "new": {"_count": 1}}, "for": {"_count": 2, "how": {"_count": 1}, "the": {"_count": 1}}, "me": {"_count": 5, "pocket": {"_count": 1}, "Ginnys": {"_count": 1}, "that": {"_count": 1}, "any": {"_count": 1}, "an": {"_count": 1}}, "off": {"_count": 1, "by": {"_count": 1}}, "them": {"_count": 16, "so": {"_count": 1}, "but": {"_count": 1}, "detention": {"_count": 1}, "a": {"_count": 1}, "any": {"_count": 1}, "that": {"_count": 1}, "jobs": {"_count": 1}, "such": {"_count": 1}, "permission": {"_count": 1}, "": {"_count": 1}, "homework": {"_count": 1}, "lots": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}, "his": {"_count": 1}, "were": {"_count": 1}}, "himself": {"_count": 2, "away": {"_count": 1}, "up": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 2}}, "out": {"_count": 1, "that": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "something": {"_count": 1, "new": {"_count": 1}}, "at": {"_count": 3, "Hogwarts": {"_count": 1}, "Hog": {"_count": 2}}, "my": {"_count": 2, "permission": {"_count": 2}}, "way": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "it": {"_count": 9, "three": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 4}, "an": {"_count": 1}, "many": {"_count": 1}, "too": {"_count": 1}}, "the": {"_count": 22, "dementors": {"_count": 1}, "others": {"_count": 1}, "level": {"_count": 1}, "maze": {"_count": 1}, "matter": {"_count": 1}, "Slytherins": {"_count": 1}, "choice": {"_count": 1}, "opportunity": {"_count": 2}, "task": {"_count": 1}, "chance": {"_count": 2}, "gerbil": {"_count": 1}, "highest": {"_count": 1}, "number": {"_count": 1}, "Defense": {"_count": 1}, "increasingly": {"_count": 1}, "very": {"_count": 1}, "darkness": {"_count": 1}, "illusion": {"_count": 1}, "public": {"_count": 1}, "extreme": {"_count": 1}}, "extra": {"_count": 2, "protection": {"_count": 1}, "homework": {"_count": 1}}, "instructions": {"_count": 1, "that": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "by": {"_count": 3, "Fred": {"_count": 1}, "a": {"_count": 1}, "Voldemort": {"_count": 1}}, "Bagman": {"_count": 1, "all": {"_count": 1}}, "over": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "that": {"_count": 9, "the": {"_count": 2}, "nobody": {"_count": 1}, "their": {"_count": 1}, "he": {"_count": 4}, "our": {"_count": 1}}, "voice": {"_count": 1, "it": {"_count": 1}}, "this": {"_count": 1, "a": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "Moodys": {"_count": 1, "wellknown": {"_count": 1}}, "Hermione": {"_count": 1, "the": {"_count": 1}}, "each": {"_count": 1, "student": {"_count": 1}}, "new": {"_count": 1, "powers": {"_count": 1}}, "his": {"_count": 5, "personal": {"_count": 1}, "mother": {"_count": 1}, "copy": {"_count": 1}, "most": {"_count": 1}, "answer": {"_count": 1}}, "us": {"_count": 5, "to": {"_count": 1}, "all": {"_count": 1}, "great": {"_count": 1}, "a": {"_count": 2}}, "evidence": {"_count": 1, "already": {"_count": 1}}, "their": {"_count": 1, "condition": {"_count": 1}}, "you": {"_count": 12, "will": {"_count": 2}, "a": {"_count": 3}, "free": {"_count": 1}, "my": {"_count": 1}, "detention": {"_count": 1}, "all": {"_count": 1}, "enough": {"_count": 1}, "for": {"_count": 1}, "your": {"_count": 1}}, "an": {"_count": 2, "angry": {"_count": 1}, "antidote": {"_count": 1}}, "what": {"_count": 2, "youre": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "past": {"_count": 1, "events": {"_count": 1}}, "warnings": {"_count": 1, "before": {"_count": 1}}, "serious": {"_count": 1, "thought": {"_count": 1}}, "homework": {"_count": 1, "everybody": {"_count": 1}}, "her": {"_count": 4, "the": {"_count": 1}, "way": {"_count": 1}, "everything": {"_count": 1}, "up": {"_count": 1}}, "another": {"_count": 2, "detention": {"_count": 1}, "of": {"_count": 1}}, "additional": {"_count": 1, "practice": {"_count": 1}}, "clothes": {"_count": 1, "theyre": {"_count": 1}}, "almost": {"_count": 2, "anything": {"_count": 2}}, "any": {"_count": 1, "number": {"_count": 1}}, "place": {"_count": 1, "to": {"_count": 1}}, "away": {"_count": 1, "their": {"_count": 1}}, "top": {"_count": 1, "grade": {"_count": 1}}, "prevented": {"_count": 1, "him": {"_count": 1}}, "certain": {"_count": 1, "information": {"_count": 1}}, "Ronald": {"_count": 1, "Weasleys": {"_count": 1}}, "lucky": {"_count": 1, "potion": {"_count": 1}}, "and": {"_count": 1, "waited": {"_count": 1}}, "particular": {"_count": 1, "jobs": {"_count": 1}}, "I": {"_count": 1, "believe": {"_count": 1}}, "everything": {"_count": 1, "that": {"_count": 1}}, "themselves": {"_count": 1, "or": {"_count": 1}}, "warning": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 3, "and": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "how": {"_count": 1, "how": {"_count": 1}}, "birth": {"_count": 1, "to": {"_count": 1}}, "every": {"_count": 1, "protection": {"_count": 1}}, "permission": {"_count": 1, "to": {"_count": 1}}, "Blood": {"_count": 1, "Status": {"_count": 1}}, "Reguluss": {"_count": 1, "locket": {"_count": 1}}, "freely": {"_count": 1, "they": {"_count": 1}}, "power": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "yourself": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "grown": {"_count": 44, "back": {"_count": 1, "so": {"_count": 1}}, "up": {"_count": 8, "knowin": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}, "listening": {"_count": 1}, "and": {"_count": 2}, "hearing": {"_count": 1}, "in": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "more": {"_count": 1, "hopeful": {"_count": 1}}, "all": {"_count": 1, "through": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 5, "few": {"_count": 1}, "lot": {"_count": 1}, "great": {"_count": 1}, "stupid": {"_count": 1}, "tiny": {"_count": 1}}, "extra": {"_count": 1, "heads": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 3, "strong": {"_count": 1}, "much": {"_count": 2}}, "werewolf": {"_count": 1, "but": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "men": {"_count": 1, "clutching": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "down": {"_count": 1, "past": {"_count": 1}}, "enormous": {"_count": 1, "viciouslooking": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "round": {"_count": 1, "about": {"_count": 1}}, "wizards": {"_count": 3, "burden": {"_count": 1}, "have": {"_count": 1}, "": {"_count": 1}}, "several": {"_count": 1, "more": {"_count": 1}}, "doxy": {"_count": 1, "came": {"_count": 1}}, "adultsized": {"_count": 1, "Snape": {"_count": 1}}, "four": {"_count": 1, "inches": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "me": {"_count": 1}}, "faint": {"_count": 1, "or": {"_count": 1}}, "wild": {"_count": 1, "in": {"_count": 1}}, "man": {"_count": 1, "an": {"_count": 1}}, "to": {"_count": 1, "care": {"_count": 1}}}, "Another": {"_count": 45, "time": {"_count": 1, "Aunt": {"_count": 1}}, "Weasley": {"_count": 2, "eh": {"_count": 1}, "": {"_count": 1}}, "Christmas": {"_count": 1, "has": {"_count": 1}}, "will": {"_count": 1, "transport": {"_count": 1}}, "few": {"_count": 1, "seconds": {"_count": 1}}, "year": {"_count": 2, "gone": {"_count": 1}, "full": {"_count": 1}}, "large": {"_count": 1, "pile": {"_count": 1}}, "attack": {"_count": 1, "said": {"_count": 1}}, "sweater": {"_count": 1, "from": {"_count": 1}}, "boggart": {"_count": 1, "said": {"_count": 1}}, "branch": {"_count": 1, "whipped": {"_count": 1}}, "bang": {"_count": 1, "Crookshanks": {"_count": 1}}, "pause": {"_count": 1, "more": {"_count": 1}}, "loud": {"_count": 1, "bang": {"_count": 1}}, "clap": {"_count": 1, "of": {"_count": 1}}, "flash": {"_count": 2, "of": {"_count": 1}, "shouts": {"_count": 1}}, "old": {"_count": 1, "friend": {"_count": 1}}, "illegal": {"_count": 1, "curse": {"_count": 1}}, "voice": {"_count": 1, "had": {"_count": 1}}, "halfgiant": {"_count": 1, "o": {"_count": 1}}, "tenyearold": {"_count": 1, "": {"_count": 1}}, "wisp": {"_count": 1, "of": {"_count": 1}}, "Remembrall": {"_count": 1, "": {"_count": 1}}, "note": {"_count": 1, "on": {"_count": 1}}, "five": {"_count": 1, "points": {"_count": 1}}, "nights": {"_count": 1, "detention": {"_count": 1}}, "teacher": {"_count": 1, "has": {"_count": 1}}, "one": {"_count": 1, "who": {"_count": 1}}, "zero": {"_count": 1, "then": {"_count": 1}}, "jet": {"_count": 1, "of": {"_count": 1}}, "message": {"_count": 1, "for": {"_count": 1}}, "flick": {"_count": 1, "of": {"_count": 1}}, "ten": {"_count": 1, "points": {"_count": 1}}, "redheaded": {"_count": 1, "Weasley": {"_count": 1}}, "wizard": {"_count": 1, "had": {"_count": 1}}, "such": {"_count": 1, "easily": {"_count": 1}}, "terrible": {"_count": 1, "scream": {"_count": 1}}, "goblin": {"_count": 1, "came": {"_count": 1}}, "short": {"_count": 1, "flight": {"_count": 1}}, "student": {"_count": 1, "": {"_count": 1}}, "long": {"_count": 1, "silence": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}}, "force": {"_count": 97, "him": {"_count": 6, "into": {"_count": 1}, "to": {"_count": 4}, "back": {"_count": 1}}, "that": {"_count": 10, "it": {"_count": 3}, "was": {"_count": 2}, "he": {"_count": 1}, "Harry": {"_count": 1}, "is": {"_count": 2}, "Harrys": {"_count": 1}}, "to": {"_count": 1, "knock": {"_count": 1}}, "some": {"_count": 1, "magic": {"_count": 1}}, "their": {"_count": 3, "way": {"_count": 1}, "victims": {"_count": 1}, "relatives": {"_count": 1}}, "Quirrell": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 21, "a": {"_count": 5}, "mind": {"_count": 1}, "its": {"_count": 1}, "five": {"_count": 1}, "the": {"_count": 5}, "resistance": {"_count": 1}, "it": {"_count": 2}, "Aurors": {"_count": 1}, "acceleration": {"_count": 1}, "their": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}}, "Goyle": {"_count": 1, "s": {"_count": 1}}, "it": {"_count": 4, "knocked": {"_count": 1}, "to": {"_count": 2}, "out": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "a": {"_count": 1, "projection": {"_count": 1}}, "entry": {"_count": 2, "to": {"_count": 1}, "or": {"_count": 1}}, "Scabbers": {"_count": 1, "deeper": {"_count": 1}}, "the": {"_count": 8, "rat": {"_count": 1}, "wands": {"_count": 1}, "other": {"_count": 1}, "curtains": {"_count": 1}, "door": {"_count": 1}, "painting": {"_count": 1}, "snake": {"_count": 1}, "dragon": {"_count": 1}}, "and": {"_count": 3, "was": {"_count": 1}, "glaring": {"_count": 1}, "might": {"_count": 1}}, "Ron": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 2, "to": {"_count": 1}, "apart": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 2, "a": {"_count": 1}, "another": {"_count": 1}}, "if": {"_count": 1, "need": {"_count": 1}}, "his": {"_count": 3, "way": {"_count": 3}}, "down": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 5, "to": {"_count": 3}, "": {"_count": 1}, "Id": {"_count": 1}}, "Snape": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 2, "detests": {"_count": 1}, "could": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "someone": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "it": {"_count": 1}}, "Charlie": {"_count": 1, "into": {"_count": 1}}, "itself": {"_count": 1, "upon": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}}, "revolting": {"_count": 6, "old": {"_count": 1, "sweater": {"_count": 1}}, "foul": {"_count": 1, "Jordan": {"_count": 1}}, "things": {"_count": 1, "Harry": {"_count": 1}}, "Skeeter": {"_count": 1, "woman": {"_count": 1}}, "groaned": {"_count": 1, "George": {"_count": 1}}, "Ron": {"_count": 1, "added": {"_count": 1}}}, "sweater": {"_count": 31, "of": {"_count": 1, "Dudleys": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "in": {"_count": 1, "emerald": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 3, "his": {"_count": 3}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "vest": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "from": {"_count": 3, "Mrs": {"_count": 1}, "the": {"_count": 1}, "Mum": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "next": {"_count": 1, "Harry": {"_count": 1}}, "green": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "actually": {"_count": 1, "moved": {"_count": 1}}, "after": {"_count": 1, "sweater": {"_count": 1}}, "stooped": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}}, "brown": {"_count": 67, "with": {"_count": 1, "orange": {"_count": 1}}, "coils": {"_count": 1, "": {"_count": 1}}, "envelope": {"_count": 1, "that": {"_count": 1}}, "paper": {"_count": 7, "lying": {"_count": 1}, "still": {"_count": 1}, "and": {"_count": 2}, "at": {"_count": 1}, "that": {"_count": 1}, "onto": {"_count": 1}}, "hair": {"_count": 8, "and": {"_count": 2}, "flying": {"_count": 1}, "was": {"_count": 2}, "streaked": {"_count": 1}, "whipping": {"_count": 1}, "disappear": {"_count": 1}}, "chickens": {"_count": 1, "were": {"_count": 1}}, "eyes": {"_count": 9, "staring": {"_count": 1}, "and": {"_count": 3}, "widened": {"_count": 1}, "opened": {"_count": 1}, "her": {"_count": 1}, "were": {"_count": 1}, "short": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "face": {"_count": 1, "split": {"_count": 1}}, "both": {"_count": 1, "waving": {"_count": 1}}, "stuff": {"_count": 1, "said": {"_count": 1}}, "coat": {"_count": 1, "and": {"_count": 1}}, "suit": {"_count": 4, "and": {"_count": 2}, "plus": {"_count": 1}, "": {"_count": 1}}, "beard": {"_count": 4, "who": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "and": {"_count": 3, "gray": {"_count": 2}, "her": {"_count": 1}}, "owl": {"_count": 6, "that": {"_count": 2}, "he": {"_count": 1}, "and": {"_count": 1}, "snapped": {"_count": 1}, "as": {"_count": 1}}, "owls": {"_count": 1, "leg": {"_count": 1}}, "tuft": {"_count": 1, "": {"_count": 1}}, "glove": {"_count": 1, "": {"_count": 1}}, "arms": {"_count": 1, "and": {"_count": 1}}, "rice": {"_count": 2, "among": {"_count": 1}, "were": {"_count": 1}}, "wallet": {"_count": 1, "that": {"_count": 1}}, "packaging": {"_count": 1, "": {"_count": 1}}, "leather": {"_count": 1, "a": {"_count": 1}}, "objects": {"_count": 1, "looking": {"_count": 1}}, "as": {"_count": 1, "Ginnys": {"_count": 1}}, "bottle": {"_count": 1, "zoomed": {"_count": 1}}, "teeth": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 1, "roads": {"_count": 1}}}, "puff": {"_count": 8, "balls": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 5, "black": {"_count": 2}, "smoke": {"_count": 1}, "purple": {"_count": 1}, "dust": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "become": {"_count": 137, "until": {"_count": 1, "finally": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "a": {"_count": 16, "bit": {"_count": 3}, "pair": {"_count": 1}, "fireball": {"_count": 1}, "headless": {"_count": 1}, "dog": {"_count": 1}, "champion": {"_count": 1}, "human": {"_count": 1}, "Hogwarts": {"_count": 1}, "snake": {"_count": 1}, "kind": {"_count": 1}, "little": {"_count": 1}, "ballerina": {"_count": 1}, "Secret": {"_count": 1}, "swarm": {"_count": 1}}, "rather": {"_count": 1, "fixed": {"_count": 1}}, "icy": {"_count": 1, "and": {"_count": 1}}, "invisible": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "mysteriously": {"_count": 1, "deaf": {"_count": 1}}, "thicker": {"_count": 1, "than": {"_count": 1}}, "the": {"_count": 10, "greatest": {"_count": 2}, "youngest": {"_count": 1}, "ceiling": {"_count": 1}, "Junior": {"_count": 1}, "practice": {"_count": 1}, "serpent": {"_count": 1}, "stuff": {"_count": 1}, "headquarters": {"_count": 1}, "place": {"_count": 1}}, "befuddled": {"_count": 1, "by": {"_count": 1}}, "whatever": {"_count": 1, "each": {"_count": 1}}, "most": {"_count": 2, "peoples": {"_count": 1}, "accomplished": {"_count": 1}}, "extremely": {"_count": 1, "dull": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "dislodged": {"_count": 1, "from": {"_count": 1}}, "an": {"_count": 9, "instant": {"_count": 1}, "Animagus": {"_count": 1}, "Auror": {"_count": 6}, "obsession": {"_count": 1}}, "animals": {"_count": 1, "theres": {"_count": 1}}, "and": {"_count": 2, "their": {"_count": 1}, "your": {"_count": 1}}, "less": {"_count": 1, "so": {"_count": 1}}, "killers": {"_count": 1, "just": {"_count": 1}}, "wearisome": {"_count": 1, "for": {"_count": 1}}, "famous": {"_count": 1, "": {"_count": 1}}, "wider": {"_count": 1, "than": {"_count": 1}}, "distracted": {"_count": 1, "and": {"_count": 1}}, "Hogwarts": {"_count": 1, "champion": {"_count": 1}}, "temporarily": {"_count": 1, "speechless": {"_count": 1}}, "of": {"_count": 4, "Krum": {"_count": 1}, "me": {"_count": 1}, "those": {"_count": 1}, "their": {"_count": 1}}, "immensely": {"_count": 1, "strong": {"_count": 1}}, "school": {"_count": 1, "champion": {"_count": 1}}, "hard": {"_count": 1, "to": {"_count": 1}}, "fewer": {"_count": 1, "with": {"_count": 1}}, "webbed": {"_count": 1, "": {"_count": 1}}, "elongated": {"_count": 1, "and": {"_count": 1}}, "Minister": {"_count": 4, "of": {"_count": 4}}, "so": {"_count": 7, "filthy": {"_count": 1}, "dry": {"_count": 1}, "used": {"_count": 2}, "tired": {"_count": 1}, "": {"_count": 1}, "shaky": {"_count": 1}}, "transparent": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "more": {"_count": 5, "distinct": {"_count": 1}, "and": {"_count": 1}, "demanding": {"_count": 1}, "discouraged": {"_count": 1}, "determined": {"_count": 1}}, "fused": {"_count": 1, "and": {"_count": 1}}, "traitors": {"_count": 1, "to": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "prefects": {"_count": 1, "": {"_count": 1}}, "intensely": {"_count": 1, "interested": {"_count": 1}}, "cool": {"_count": 1, "and": {"_count": 1}}, "quieter": {"_count": 1, "and": {"_count": 1}}, "accustomed": {"_count": 1, "to": {"_count": 1}}, "taciturn": {"_count": 1, "and": {"_count": 1}}, "glacial": {"_count": 1, "": {"_count": 1}}, "springily": {"_count": 1, "mossy": {"_count": 1}}, "competent": {"_count": 1, "and": {"_count": 1}}, "one": {"_count": 3, "long": {"_count": 1}, "of": {"_count": 1}, "more": {"_count": 1}}, "very": {"_count": 1, "still": {"_count": 1}}, "visible": {"_count": 1, "again": {"_count": 1}}, "slightly": {"_count": 1, "dry": {"_count": 1}}, "outstanding": {"_count": 1, "in": {"_count": 1}}, "strangely": {"_count": 1, "airless": {"_count": 1}}, "Potions": {"_count": 1, "thanks": {"_count": 1}}, "shriller": {"_count": 1, "and": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "overnight": {"_count": 1, "as": {"_count": 1}}, "murkier": {"_count": 1, "and": {"_count": 1}}, "headmaster": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "Draco": {"_count": 1}}, "inextricably": {"_count": 1, "linked": {"_count": 1}}, "entangled": {"_count": 1, "with": {"_count": 1}}, "how": {"_count": 1, "much": {"_count": 1}}, "husband": {"_count": 1, "and": {"_count": 1}}, "four": {"_count": 1, "": {"_count": 1}}, "impacted": {"_count": 1, "It": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "how": {"_count": 1}}, "blurred": {"_count": 1, "shifting": {"_count": 1}}, "razorsharp": {"_count": 1, "again": {"_count": 1}}, "powerful": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "solid": {"_count": 1, "They": {"_count": 1}}, "shed": {"_count": 1, "have": {"_count": 1}}, "aware": {"_count": 1, "of": {"_count": 1}}, "smaller": {"_count": 1, "shrink": {"_count": 1}}}, "fitted": {"_count": 13, "a": {"_count": 3, "hand": {"_count": 1}, "catflap": {"_count": 1}, "new": {"_count": 1}}, "it": {"_count": 3, "easily": {"_count": 1}, "into": {"_count": 2}}, "up": {"_count": 1, "just": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}, "in": {"_count": 1, "with": {"_count": 1}}, "him": {"_count": 1, "well": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}}, "puppet": {"_count": 5, "but": {"_count": 1, "certainly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "Thicknesse": {"_count": 1, "is": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}}, "fit": {"_count": 80, "Harry": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "into": {"_count": 6, "his": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}, "it": {"_count": 1}}, "the": {"_count": 3, "whole": {"_count": 1}, "demand": {"_count": 1}, "walls": {"_count": 1}}, "bars": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 5, "Its": {"_count": 1}, "living": {"_count": 1}, "nothing": {"_count": 1}, "human": {"_count": 1}, "next": {"_count": 1}}, "it": {"_count": 3, "in": {"_count": 1}, "Trying": {"_count": 1}, "into": {"_count": 1}}, "socks": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "a": {"_count": 1, "leash": {"_count": 1}}, "to": {"_count": 10, "return": {"_count": 1}, "release": {"_count": 1}, "burst": {"_count": 3}, "wipe": {"_count": 1}, "live": {"_count": 1}, "go": {"_count": 1}, "mix": {"_count": 1}, "own": {"_count": 1}}, "or": {"_count": 2, "something": {"_count": 1}, "seizure": {"_count": 1}}, "and": {"_count": 2, "there": {"_count": 1}, "alert": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "of": {"_count": 5, "endofterm": {"_count": 1}, "the": {"_count": 1}, "giggles": {"_count": 1}, "renewed": {"_count": 1}, "gallantry": {"_count": 1}}, "shes": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 2}, "useless": {"_count": 1}}, "comfortably": {"_count": 1, "inside": {"_count": 1}}, "you": {"_count": 2, "Ron": {"_count": 1}, "called": {"_count": 1}}, "him": {"_count": 1, "for": {"_count": 1}}, "state": {"_count": 4, "to": {"_count": 3}, "you": {"_count": 1}}, "itself": {"_count": 1, "in": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "well": {"_count": 1, "have": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "yeh": {"_count": 1, "in": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "Kendra": {"_count": 1}}, "everything": {"_count": 3, "we": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "together": {"_count": 1, "said": {"_count": 1}}, "Itll": {"_count": 1, "be": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}}, "shrunk": {"_count": 4, "in": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 1, "too": {"_count": 1}}, "she": {"_count": 1, "held": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "wash": {"_count": 17, "and": {"_count": 3, "to": {"_count": 1}, "then": {"_count": 1}, "a": {"_count": 1}}, "over": {"_count": 3, "him": {"_count": 3}}, "of": {"_count": 1, "water": {"_count": 1}}, "their": {"_count": 1, "hands": {"_count": 1}}, "his": {"_count": 2, "hair": {"_count": 1}, "mind": {"_count": 1}}, "them": {"_count": 1, "before": {"_count": 1}}, "your": {"_count": 2, "hair": {"_count": 1}, "pants": {"_count": 1}}, "Ron": {"_count": 1, "Rons": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "yes": {"_count": 1, "supplied": {"_count": 1}}}, "relief": {"_count": 80, "Harry": {"_count": 1, "wasnt": {"_count": 1}}, "spotted": {"_count": 1, "Hagrid": {"_count": 1}}, "a": {"_count": 1, "voice": {"_count": 1}}, "because": {"_count": 2, "Neville": {"_count": 1}, "they": {"_count": 1}}, "to": {"_count": 7, "be": {"_count": 1}, "return": {"_count": 1}, "siphon": {"_count": 1}, "gain": {"_count": 1}, "tell": {"_count": 1}, "get": {"_count": 1}, "Harry": {"_count": 1}}, "he": {"_count": 5, "managed": {"_count": 1}, "found": {"_count": 1}, "felt": {"_count": 1}, "passed": {"_count": 1}, "finally": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 17}}, "must": {"_count": 1, "have": {"_count": 1}}, "that": {"_count": 4, "they": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "swept": {"_count": 2, "over": {"_count": 1}, "through": {"_count": 1}}, "spread": {"_count": 1, "over": {"_count": 1}}, "seeped": {"_count": 1, "through": {"_count": 1}}, "when": {"_count": 3, "Wood": {"_count": 1}, "it": {"_count": 1}, "six": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "and": {"_count": 8, "it": {"_count": 1}, "then": {"_count": 3}, "he": {"_count": 1}, "they": {"_count": 1}, "fury": {"_count": 1}, "a": {"_count": 1}}, "Hermione": {"_count": 3, "accepted": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "Rons": {"_count": 1, "dark": {"_count": 1}}, "Dumbledore": {"_count": 1, "did": {"_count": 1}}, "light": {"_count": 1, "flared": {"_count": 1}}, "they": {"_count": 1, "never": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "Angelina": {"_count": 1, "sought": {"_count": 1}}, "broke": {"_count": 1, "over": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 2, "when": {"_count": 1}, "as": {"_count": 1}}, "at": {"_count": 1, "being": {"_count": 1}}, "yeah": {"_count": 1, "Ill": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "Malfoy": {"_count": 1, "seemed": {"_count": 1}}, "Ron": {"_count": 1, "intervened": {"_count": 1}}, "his": {"_count": 1, "suggestion": {"_count": 1}}, "surging": {"_count": 1, "through": {"_count": 1}}, "she": {"_count": 1, "accepted": {"_count": 1}}, "wove": {"_count": 1, "out": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "punished": {"_count": 18, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "for": {"_count": 1, "bewitching": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 1, "and": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "by": {"_count": 3, "wizarding": {"_count": 1}, "her": {"_count": 1}, "Filch": {"_count": 1}}, "most": {"_count": 1, "severely": {"_count": 1}}, "soundly": {"_count": 1, "for": {"_count": 1}}, "himself": {"_count": 2, "he": {"_count": 2}}, "and": {"_count": 1, "cruelly": {"_count": 1}}}, "terrible": {"_count": 135, "trouble": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "things": {"_count": 11, "happened": {"_count": 1}, "happen": {"_count": 1}, "": {"_count": 3}, "are": {"_count": 1}, "would": {"_count": 1}, "without": {"_count": 1}, "that": {"_count": 1}, "than": {"_count": 1}, "he": {"_count": 1}}, "yes": {"_count": 1, "but": {"_count": 1}}, "blow": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "sadness": {"_count": 1, "": {"_count": 1}}, "state": {"_count": 1, "in": {"_count": 1}}, "scream": {"_count": 5, "and": {"_count": 1}, "": {"_count": 2}, "of": {"_count": 1}, "HERMIONE": {"_count": 1}}, "price": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "face": {"_count": 2, "Harry": {"_count": 1}, "and": {"_count": 1}}, "pain": {"_count": 1, "his": {"_count": 1}}, "shrieks": {"_count": 1, "and": {"_count": 1}}, "moment": {"_count": 1, "there": {"_count": 1}}, "thing": {"_count": 4, "and": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}}, "you": {"_count": 1, "could": {"_count": 1}}, "power": {"_count": 3, "could": {"_count": 1}, "of": {"_count": 2}}, "ordeal": {"_count": 2, "for": {"_count": 1}, "tonight": {"_count": 1}}, "terrified": {"_count": 1, "pleading": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "terrible": {"_count": 1, "thing": {"_count": 1}}, "an": {"_count": 1, "all": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "grin": {"_count": 1, "twisting": {"_count": 1}}, "than": {"_count": 7, "ever": {"_count": 4}, "Harry": {"_count": 1}, "death": {"_count": 1}, "the": {"_count": 1}}, "snarling": {"_count": 1, "noise": {"_count": 1}}, "fate": {"_count": 1, "": {"_count": 1}}, "mess": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "effort": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 1, "his": {"_count": 1}}, "stuff": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "rattling": {"_count": 1, "noise": {"_count": 1}}, "events": {"_count": 1, "in": {"_count": 1}}, "woman": {"_count": 1, "teach": {"_count": 1}}, "the": {"_count": 1, "fifth": {"_count": 1}}, "Im": {"_count": 1, "really": {"_count": 1}}, "winged": {"_count": 1, "horse": {"_count": 1}}, "poisons": {"_count": 1, "which": {"_count": 1}}, "groan": {"_count": 1, "from": {"_count": 1}}, "thought": {"_count": 1, "occurred": {"_count": 1}}, "stab": {"_count": 1, "of": {"_count": 1}}, "Snape": {"_count": 1, "doesnt": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "snakelike": {"_count": 2, "longing": {"_count": 1}, "face": {"_count": 1}}, "crime": {"_count": 1, "": {"_count": 1}}, "mistake": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "hollow": {"_count": 1, "inside": {"_count": 1}}, "emptiness": {"_count": 1, "filling": {"_count": 1}}, "pressure": {"_count": 1, "squeezing": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "weight": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "crimes": {"_count": 1, "before": {"_count": 1}}, "disasters": {"_count": 1, "and": {"_count": 1}}, "loss": {"_count": 1, "": {"_count": 1}}, "night": {"_count": 1, "Lily": {"_count": 1}}, "anguish": {"_count": 1, "": {"_count": 1}}, "sound": {"_count": 2, "of": {"_count": 1}, "like": {"_count": 1}}, "growled": {"_count": 1, "Hagrid": {"_count": 1}}, "and": {"_count": 1, "if": {"_count": 1}}, "thinner": {"_count": 1, "than": {"_count": 1}}, "Hagrid": {"_count": 1, "grunted": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "curse": {"_count": 1, "there": {"_count": 1}}, "to": {"_count": 1, "behold": {"_count": 1}}, "deeds": {"_count": 1, "he": {"_count": 1}}, "Dont": {"_count": 1, "tell": {"_count": 1}}, "potion": {"_count": 1, "for": {"_count": 1}}, "beauty": {"_count": 1, "": {"_count": 1}}, "stain": {"_count": 1, "upon": {"_count": 1}}, "drawnout": {"_count": 2, "cry": {"_count": 1}, "scream": {"_count": 1}}, "Hermione": {"_count": 1, "screamed": {"_count": 1}}, "was": {"_count": 1, "Rons": {"_count": 1}}, "injury": {"_count": 1, "": {"_count": 1}}, "danger": {"_count": 2, "then": {"_count": 1}, "when": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "fear": {"_count": 1, "gripping": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "scorching": {"_count": 1, "pain": {"_count": 1}}, "way": {"_count": 1, "to": {"_count": 1}}, "commotion": {"_count": 1, "the": {"_count": 1}}, "attack": {"_count": 1, "": {"_count": 1}}, "cry": {"_count": 1, "that": {"_count": 1}}, "rasping": {"_count": 1, "gurgling": {"_count": 1}}, "being": {"_count": 1, "": {"_count": 1}}, "grief": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}}, "trouble": {"_count": 206, "for": {"_count": 9, "being": {"_count": 1}, "years": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 2}, "the": {"_count": 1}, "Umbridge": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "gettin": {"_count": 1, "hold": {"_count": 1}}, "with": {"_count": 14, "a": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 5}, "money": {"_count": 1}, "him": {"_count": 1}, "Quidditch": {"_count": 1}, "her": {"_count": 1}, "Slughorn": {"_count": 1}, "Harry": {"_count": 1}}, "leaning": {"_count": 1, "forward": {"_count": 1}}, "before": {"_count": 2, "we": {"_count": 1}, "and": {"_count": 1}}, "quicker": {"_count": 1, "than": {"_count": 1}}, "": {"_count": 46, ".": {"_count": 32}, "?": {"_count": 5}, "!": {"_count": 9}}, "keeping": {"_count": 2, "his": {"_count": 1}, "up": {"_count": 1}}, "like": {"_count": 3, "that": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}}, "though": {"_count": 2, "thats": {"_count": 1}, "they": {"_count": 1}}, "and": {"_count": 7, "we": {"_count": 1}, "thats": {"_count": 1}, "Ive": {"_count": 1}, "warned": {"_count": 1}, "Dad": {"_count": 1}, "she": {"_count": 1}, "saw": {"_count": 1}}, "was": {"_count": 9, "it": {"_count": 1}, "there": {"_count": 2}, "": {"_count": 1}, "that": {"_count": 4}, "they": {"_count": 1}}, "getting": {"_count": 3, "them": {"_count": 1}, "money": {"_count": 1}, "hold": {"_count": 1}}, "he": {"_count": 4, "mumbled": {"_count": 1}, "finished": {"_count": 1}, "would": {"_count": 1}, "said": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "is": {"_count": 1}}, "to": {"_count": 5, "lower": {"_count": 1}, "see": {"_count": 1}, "visit": {"_count": 1}, "get": {"_count": 1}, "comprehend": {"_count": 1}}, "shouldnt": {"_count": 1, "you": {"_count": 1}}, "send": {"_count": 1, "up": {"_count": 1}}, "is": {"_count": 9, "humans": {"_count": 1}, "about": {"_count": 1}, "theyve": {"_count": 2}, "like": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "we": {"_count": 1}}, "you": {"_count": 3, "with": {"_count": 1}, "sir": {"_count": 1}, "are": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "recognizing": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 3, "your": {"_count": 1}, "was": {"_count": 1}, "how": {"_count": 1}}, "didnt": {"_count": 1, "come": {"_count": 1}}, "Minerva": {"_count": 1, "he": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 3, "he": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 2}, "Fleur": {"_count": 1}}, "every": {"_count": 1, "other": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "spat": {"_count": 1, "Uncle": {"_count": 1}}, "it": {"_count": 1, "caused": {"_count": 1}}, "Harry": {"_count": 3, "I": {"_count": 1}, "set": {"_count": 1}, "said": {"_count": 1}}, "remembering": {"_count": 1, "the": {"_count": 1}}, "believing": {"_count": 1, "it": {"_count": 1}}, "then": {"_count": 2, "too": {"_count": 1}, "cause": {"_count": 1}}, "an": {"_count": 2, "all": {"_count": 2}}, "if": {"_count": 3, "they": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}}, "already": {"_count": 1, "snarled": {"_count": 1}}, "Lupin": {"_count": 1, "was": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "a": {"_count": 1, "lawnmower": {"_count": 1}}, "than": {"_count": 4, "shes": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}, "its": {"_count": 1}}, "at": {"_count": 5, "the": {"_count": 2}, "one": {"_count": 1}, "all": {"_count": 2}}, "in": {"_count": 2, "the": {"_count": 2}}, "controlling": {"_count": 1, "you": {"_count": 1}}, "until": {"_count": 1, "I": {"_count": 1}}, "adjusting": {"_count": 1, "Harry": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 3, "making": {"_count": 1}, "responding": {"_count": 1}, "inventing": {"_count": 1}}, "by": {"_count": 1, "saying": {"_count": 1}}, "she": {"_count": 1, "never": {"_count": 1}}, "the": {"_count": 1, "Witch": {"_count": 1}}, "stringing": {"_count": 1, "two": {"_count": 1}}, "Amos": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "about": {"_count": 1, "Crouch": {"_count": 1}}, "saying": {"_count": 1, "YouKnow": {"_count": 1}}, "stopping": {"_count": 1, "puking": {"_count": 1}}, "finding": {"_count": 1, "anyone": {"_count": 1}}, "mate": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "I": {"_count": 1, "went": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "wouldn": {"_count": 1, "hurt": {"_count": 1}}, "stopped": {"_count": 1, "now": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "Call": {"_count": 1, "on": {"_count": 1}}, "come": {"_count": 1, "July": {"_count": 1}}, "wed": {"_count": 1, "be": {"_count": 1}}, "are": {"_count": 1, "yeh": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "dont": {"_count": 1, "pick": {"_count": 1}}, "Only": {"_count": 1, "if": {"_count": 1}}, "they": {"_count": 1, "suspect": {"_count": 1}}}, "roof": {"_count": 24, "of": {"_count": 7, "the": {"_count": 5}, "dense": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "ivy": {"_count": 1}, "roaring": {"_count": 1}}, "wasnt": {"_count": 1, "going": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "which": {"_count": 1, "seemed": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "intensified": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "again": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "glittered": {"_count": 1, "high": {"_count": 1}}}, "kitchens": {"_count": 22, "": {"_count": 9, ".": {"_count": 4}, "?": {"_count": 4}, "!": {"_count": 1}}, "he": {"_count": 1, "knew": {"_count": 1}}, "to": {"_count": 1, "steal": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "and": {"_count": 1}}, "well": {"_count": 1, "its": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "bring": {"_count": 1}}, "the": {"_count": 1, "Ravenclaws": {"_count": 1}}, "there": {"_count": 1, "with": {"_count": 1}}, "was": {"_count": 1, "blasted": {"_count": 1}}}, "gang": {"_count": 34, "had": {"_count": 2, "been": {"_count": 1}, "inflicted": {"_count": 1}}, "hated": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "who": {"_count": 1, "visited": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 18, "gnomes": {"_count": 1}, "Slytherins": {"_count": 2}, "Slytherin": {"_count": 5}, "girls": {"_count": 1}, "them": {"_count": 1}, "wizards": {"_count": 1}, "cronies": {"_count": 1}, "giggling": {"_count": 1}, "chattering": {"_count": 1}, "loud": {"_count": 1}, "Snatchers": {"_count": 2}, "what": {"_count": 1}}, "every": {"_count": 1, "night": {"_count": 1}}, "spent": {"_count": 1, "every": {"_count": 1}}, "but": {"_count": 1, "hed": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 1, "move": {"_count": 1}}, "leaders": {"_count": 1, "famous": {"_count": 1}}, "thats": {"_count": 1, "about": {"_count": 1}}}, "chasing": {"_count": 21, "him": {"_count": 2, "as": {"_count": 1}, "up": {"_count": 1}}, "dragons": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 3, "it": {"_count": 1}, "Ron": {"_count": 1}, "him": {"_count": 1}}, "the": {"_count": 5, "snake": {"_count": 1}, "train": {"_count": 1}, "Quaffle": {"_count": 1}, "wrong": {"_count": 1}, "third": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "gnomes": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 2, "looked": {"_count": 2}}, "through": {"_count": 1, "Harrys": {"_count": 1}}, "them": {"_count": 1, "or": {"_count": 1}}, "immortality": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "own": {"_count": 1}}, "me": {"_count": 2, "because": {"_count": 1}, "and": {"_count": 1}}}, "surprise": {"_count": 133, "as": {"_count": 3, "anyone": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "Harry": {"_count": 1, "fell": {"_count": 1}}, "Hagrid": {"_count": 1, "chuckled": {"_count": 1}}, "": {"_count": 45, ".": {"_count": 42}, "!": {"_count": 2}, "?": {"_count": 1}}, "him": {"_count": 5, "": {"_count": 1}, "at": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}}, "when": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "but": {"_count": 3, "it": {"_count": 1}, "rather": {"_count": 1}, "Harry": {"_count": 1}}, "for": {"_count": 5, "Harry": {"_count": 1}, "you": {"_count": 1}, "somebody": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}}, "Quirrell": {"_count": 1, "let": {"_count": 1}}, "both": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 2, "large": {"_count": 1}, "few": {"_count": 1}}, "Hermiones": {"_count": 1, "hand": {"_count": 1}}, "that": {"_count": 5, "no": {"_count": 1}, "Hagrid": {"_count": 1}, "reverberated": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}}, "Ron": {"_count": 2, "stifled": {"_count": 1}, "caught": {"_count": 1}}, "Hermione": {"_count": 4, "followed": {"_count": 1}, "did": {"_count": 1}, "found": {"_count": 1}, "turned": {"_count": 1}}, "Professor": {"_count": 4, "McGonagall": {"_count": 1}, "Moody": {"_count": 1}, "Sprout": {"_count": 1}, "Trelawney": {"_count": 1}}, "felt": {"_count": 1, "warmth": {"_count": 1}}, "the": {"_count": 3, "hippogriff": {"_count": 1}, "Prime": {"_count": 1}, "gargoyle": {"_count": 1}}, "he": {"_count": 4, "was": {"_count": 1}, "held": {"_count": 1}, "saw": {"_count": 1}, "said": {"_count": 1}}, "on": {"_count": 2, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 6, "amid": {"_count": 1}, "Rons": {"_count": 1}, "then": {"_count": 1}, "exasperation": {"_count": 1}, "excitement": {"_count": 1}, "welcome": {"_count": 1}}, "she": {"_count": 1, "seized": {"_count": 1}}, "did": {"_count": 1, "Nevilles": {"_count": 1}}, "to": {"_count": 3, "see": {"_count": 1}, "shake": {"_count": 1}, "any": {"_count": 1}}, "saw": {"_count": 1, "an": {"_count": 1}}, "party": {"_count": 1, "Harry": {"_count": 1}}, "flew": {"_count": 1, "straight": {"_count": 1}}, "Karkaroffs": {"_count": 1, "satisfied": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "leaning": {"_count": 1, "on": {"_count": 1}}, "move": {"_count": 1, "last": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 2}, "Harry": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "Dumbledore": {"_count": 1, "continued": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "finding": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "awaiting": {"_count": 1, "him": {"_count": 1}}, "or": {"_count": 1, "alarm": {"_count": 1}}, "He": {"_count": 2, "had": {"_count": 1}, "seemed": {"_count": 1}}, "whispered": {"_count": 1, "Ron": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "however": {"_count": 1, "Dumbledore": {"_count": 1}}, "though": {"_count": 1, "is": {"_count": 1}}, "apparently": {"_count": 1, "": {"_count": 1}}}, "elses": {"_count": 26, "there": {"_count": 1, "he": {"_count": 1}}, "when": {"_count": 1, "Ive": {"_count": 1}}, "been": {"_count": 1, "attacked": {"_count": 1}}, "memory": {"_count": 2, "": {"_count": 2}}, "worries": {"_count": 1, "": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "life": {"_count": 2, "": {"_count": 1}, "these": {"_count": 1}}, "office": {"_count": 1, "this": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "parents": {"_count": 1, "got": {"_count": 1}}, "work": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "much": {"_count": 1}}, "Slughorn": {"_count": 1, "pointed": {"_count": 1}}, "potion": {"_count": 1, "had": {"_count": 1}}, "heads": {"_count": 1, "": {"_count": 1}}, "path": {"_count": 1, "and": {"_count": 1}}, "hand": {"_count": 1, "sewn": {"_count": 1}}, "head": {"_count": 1, "would": {"_count": 1}}}, "chimney": {"_count": 14, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}, "dont": {"_count": 1, "worry": {"_count": 1}}, "piece": {"_count": 1, "said": {"_count": 1}}, "it": {"_count": 1, "soared": {"_count": 1}}, "Harry": {"_count": 1, "read": {"_count": 1}}, "so": {"_count": 2, "fast": {"_count": 1}, "Hagrid": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "smokeless": {"_count": 1, "the": {"_count": 1}}, "relic": {"_count": 1, "of": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "dominated": {"_count": 1, "the": {"_count": 1}}}, "received": {"_count": 66, "a": {"_count": 16, "very": {"_count": 1}, "telephone": {"_count": 1}, "birthday": {"_count": 1}, "huge": {"_count": 1}, "slight": {"_count": 1}, "previous": {"_count": 1}, "face": {"_count": 1}, "surprise": {"_count": 1}, "tipoff": {"_count": 1}, "shock": {"_count": 2}, "rousing": {"_count": 1}, "handful": {"_count": 1}, "sharp": {"_count": 1}, "heavy": {"_count": 1}, "blow": {"_count": 1}}, "his": {"_count": 1, "first": {"_count": 1}}, "your": {"_count": 1, "message": {"_count": 1}}, "an": {"_count": 6, "urgent": {"_count": 1}, "electric": {"_count": 2}, "official": {"_count": 2}, "invitation": {"_count": 1}}, "intelligence": {"_count": 2, "that": {"_count": 2}}, "the": {"_count": 5, "Howler": {"_count": 1}, "Order": {"_count": 1}, "bite": {"_count": 1}, "note": {"_count": 1}, "level": {"_count": 1}}, "two": {"_count": 2, "letters": {"_count": 1}, "more": {"_count": 1}}, "four": {"_count": 1, "superb": {"_count": 1}}, "top": {"_count": 1, "marks": {"_count": 1}}, "bottom": {"_count": 2, "marks": {"_count": 2}}, "that": {"_count": 1, "morning": {"_count": 1}}, "information": {"_count": 1, "that": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "enthusiastic": {"_count": 1, "support": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "he": {"_count": 1, "slid": {"_count": 1}}, "Ts": {"_count": 1, "in": {"_count": 1}}, "my": {"_count": 2, "note": {"_count": 2}}, "it": {"_count": 2, "or": {"_count": 1}, "for": {"_count": 1}}, "one": {"_count": 3, "in": {"_count": 1}, "note": {"_count": 1}, "myself": {"_count": 1}}, "another": {"_count": 1, "smoking": {"_count": 1}}, "Outstanding": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "examination": {"_count": 1}}, "six": {"_count": 1, "months": {"_count": 1}}, "no": {"_count": 2, "mail": {"_count": 1}, "reply": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "could": {"_count": 1}}, "what": {"_count": 1, "I": {"_count": 1}}, "several": {"_count": 1, "more": {"_count": 1}}, "its": {"_count": 1, "tribute": {"_count": 1}}, "Yaxley": {"_count": 1, "instead": {"_count": 1}}, "at": {"_count": 1, "your": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "headmistress": {"_count": 17, "telling": {"_count": 1, "them": {"_count": 1}}, "appeared": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 2, "an": {"_count": 1}, "informing": {"_count": 1}}, "of": {"_count": 1, "Hogwarts": {"_count": 1}}, "would": {"_count": 1, "like": {"_count": 1}}, "running": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 1, "boot": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "ter": {"_count": 1, "decide": {"_count": 1}}, "has": {"_count": 1, "ever": {"_count": 1}}, "ever": {"_count": 1, "gave": {"_count": 1}}, "remained": {"_count": 1, "to": {"_count": 1}}}, "buildings": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 2, "either": {"_count": 2}}, "and": {"_count": 1, "benches": {"_count": 1}}, "already": {"_count": 1, "full": {"_count": 1}}, "became": {"_count": 1, "until": {"_count": 1}}, "hes": {"_count": 1, "had": {"_count": 1}}, "streams": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "grounds": {"_count": 1}}}, "locked": {"_count": 71, "door": {"_count": 4, "of": {"_count": 1}, "": {"_count": 2}, "for": {"_count": 1}}, "them": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "doors": {"_count": 4, "and": {"_count": 2}, "which": {"_count": 1}, "that": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "Harry": {"_count": 1, "whispered": {"_count": 1}}, "up": {"_count": 14, "in": {"_count": 4}, "": {"_count": 5}, "BAM": {"_count": 1}, "all": {"_count": 1}, "tergether": {"_count": 1}, "somewhere": {"_count": 1}, "I": {"_count": 1}}, "the": {"_count": 2, "thing": {"_count": 1}, "stall": {"_count": 1}}, "in": {"_count": 14, "a": {"_count": 4}, "his": {"_count": 2}, "Madam": {"_count": 1}, "the": {"_count": 4}, "her": {"_count": 1}, "Professor": {"_count": 1}, "combat": {"_count": 1}}, "me": {"_count": 1, "up": {"_count": 1}}, "stall": {"_count": 1, "": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "good": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "together": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 2, "own": {"_count": 1}, "trunk": {"_count": 1}}, "it": {"_count": 3, "securely": {"_count": 1}, "again": {"_count": 1}, "then": {"_count": 1}}, "jaw": {"_count": 1, "to": {"_count": 1}}, "away": {"_count": 1, "upstairs": {"_count": 1}}, "we": {"_count": 1, "just": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "park": {"_count": 1, "gate": {"_count": 1}}, "cabinet": {"_count": 1, "which": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 2, "away": {"_count": 1}, "up": {"_count": 1}}, "Greyback": {"_count": 1, "I": {"_count": 1}}}, "jump": {"_count": 55, "behind": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 17}, "!": {"_count": 2}}, "about": {"_count": 2, "a": {"_count": 2}}, "and": {"_count": 5, "managed": {"_count": 1}, "a": {"_count": 1}, "causing": {"_count": 1}, "inhale": {"_count": 1}, "turn": {"_count": 1}}, "higher": {"_count": 1, "still": {"_count": 1}}, "of": {"_count": 1, "astonishment": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "from": {"_count": 1}}, "aside": {"_count": 2, "to": {"_count": 1}, "but": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "into": {"_count": 3, "the": {"_count": 3}}, "this": {"_count": 1, "particular": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 2, "onto": {"_count": 1}, "a": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "fright": {"_count": 1}}, "Crookshanks": {"_count": 1, "leapt": {"_count": 1}}, "all": {"_count": 1, "her": {"_count": 1}}, "turning": {"_count": 1, "he": {"_count": 1}}, "Hagrid": {"_count": 1, "came": {"_count": 1}}, "said": {"_count": 1, "Slughorn": {"_count": 1}}, "Mr": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}}, "cans": {"_count": 4, "outside": {"_count": 1, "the": {"_count": 1}}, "jumped": {"_count": 1, "out": {"_count": 1}}, "or": {"_count": 2, "I": {"_count": 1}, "old": {"_count": 1}}}, "doors": {"_count": 218, "": {"_count": 22, ".": {"_count": 22}}, "so": {"_count": 1, "no": {"_count": 1}}, "and": {"_count": 22, "were": {"_count": 1}, "they": {"_count": 1}, "a": {"_count": 1}, "marched": {"_count": 1}, "eased": {"_count": 1}, "footsteps": {"_count": 1}, "strings": {"_count": 1}, "leading": {"_count": 1}, "staring": {"_count": 1}, "began": {"_count": 1}, "off": {"_count": 1}, "the": {"_count": 1}, "heaps": {"_count": 1}, "emerged": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "along": {"_count": 1}, "found": {"_count": 1}, "moved": {"_count": 1}, "down": {"_count": 2}, "marble": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "silver": {"_count": 1, "this": {"_count": 1}}, "to": {"_count": 13, "count": {"_count": 1}, "the": {"_count": 8}, "slaughter": {"_count": 1}, "recognize": {"_count": 1}, "watch": {"_count": 1}, "your": {"_count": 1}}, "leading": {"_count": 2, "off": {"_count": 2}}, "into": {"_count": 14, "the": {"_count": 13}, "another": {"_count": 1}}, "that": {"_count": 5, "wouldnt": {"_count": 1}, "werent": {"_count": 1}, "made": {"_count": 1}, "marked": {"_count": 1}, "way": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 1}, "either": {"_count": 1}, "the": {"_count": 1}}, "closed": {"_count": 5, "leaving": {"_count": 1}, "behind": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 2}}, "down": {"_count": 1, "a": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "flew": {"_count": 4, "open": {"_count": 4}}, "the": {"_count": 4, "people": {"_count": 1}, "rumble": {"_count": 1}, "Knight": {"_count": 1}, "snow": {"_count": 1}}, "on": {"_count": 3, "their": {"_count": 1}, "the": {"_count": 2}}, "closing": {"_count": 1, "before": {"_count": 1}}, "squeezed": {"_count": 1, "between": {"_count": 1}}, "slammed": {"_count": 1, "shut": {"_count": 1}}, "ajar": {"_count": 1, "": {"_count": 1}}, "close": {"_count": 1, "behind": {"_count": 1}}, "runner": {"_count": 1, "beans": {"_count": 1}}, "shut": {"_count": 2, "there": {"_count": 1}, "": {"_count": 1}}, "off": {"_count": 1, "this": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 2}, "usual": {"_count": 1}}, "checking": {"_count": 1, "off": {"_count": 1}}, "of": {"_count": 9, "the": {"_count": 9}}, "listening": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "been": {"_count": 2, "locked": {"_count": 1}, "Imperturbed": {"_count": 1}}, "opened": {"_count": 13, "there": {"_count": 1}, "and": {"_count": 4}, "Harry": {"_count": 1}, "two": {"_count": 1}, "again": {"_count": 3}, "the": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "which": {"_count": 3, "stood": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 1}}, "reaching": {"_count": 1, "them": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 1, "little": {"_count": 1}}, "while": {"_count": 1, "everyone": {"_count": 1}}, "Davies": {"_count": 1, "looked": {"_count": 1}}, "stood": {"_count": 4, "open": {"_count": 3}, "ajar": {"_count": 1}}, "burst": {"_count": 3, "open": {"_count": 3}}, "Harry": {"_count": 3, "said": {"_count": 1}, "saw": {"_count": 1}, "turned": {"_count": 1}}, "clanged": {"_count": 3, "shut": {"_count": 3}}, "rattled": {"_count": 1, "open": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "they": {"_count": 2, "passed": {"_count": 2}}, "slid": {"_count": 2, "open": {"_count": 1}, "shut": {"_count": 1}}, "read": {"_count": 1, "CLOSED": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "usually": {"_count": 1, "kept": {"_count": 1}}, "looking": {"_count": 1, "very": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 2}}, "had": {"_count": 3, "swung": {"_count": 1}, "been": {"_count": 1}, "clanged": {"_count": 1}}, "wide": {"_count": 1, "behind": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "hastily": {"_count": 1, "moved": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "both": {"_count": 1, "instinctively": {"_count": 1}}, "swung": {"_count": 2, "shut": {"_count": 1}, "open": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 3, "set": {"_count": 1}, "closing": {"_count": 1}, "slamming": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "opposite": {"_count": 1, "him": {"_count": 1}}, "than": {"_count": 1, "located": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "ricocheted": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "combat": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "another": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "until": {"_count": 1, "Hermione": {"_count": 1}}, "standing": {"_count": 1, "open": {"_count": 1}}, "anything": {"_count": 1, "to": {"_count": 1}}, "led": {"_count": 2, "off": {"_count": 2}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "It": {"_count": 1, "had": {"_count": 1}}, "perhaps": {"_count": 1, "the": {"_count": 1}}, "opening": {"_count": 1, "they": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "hit": {"_count": 1, "Harry": {"_count": 1}}, "their": {"_count": 1, "snowburdened": {"_count": 1}}, "leaving": {"_count": 1, "them": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}}, "wind": {"_count": 107, "must": {"_count": 1, "have": {"_count": 1}}, "whipped": {"_count": 2, "their": {"_count": 2}}, "whistled": {"_count": 2, "through": {"_count": 1}, "in": {"_count": 1}}, "rattled": {"_count": 2, "the": {"_count": 2}}, "could": {"_count": 1, "be": {"_count": 1}}, "every": {"_count": 1, "cracking": {"_count": 1}}, "sounded": {"_count": 1, "like": {"_count": 1}}, "it": {"_count": 1, "hadnt": {"_count": 1}}, "stopping": {"_count": 1, "halfway": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 6, "any": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "Crouch": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}}, "roared": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 13, "rain": {"_count": 3}, "looking": {"_count": 1}, "swirling": {"_count": 2}, "pounding": {"_count": 1}, "sleet": {"_count": 3}, "then": {"_count": 2}, "color": {"_count": 1}}, "or": {"_count": 1, "rain": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "had": {"_count": 5, "woken": {"_count": 1}, "swept": {"_count": 1}, "been": {"_count": 1}, "become": {"_count": 1}, "died": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "umbrellas": {"_count": 1, "being": {"_count": 1}}, "was": {"_count": 6, "so": {"_count": 1}, "fierce": {"_count": 1}, "roaring": {"_count": 1}, "picking": {"_count": 1}, "like": {"_count": 1}, "whistling": {"_count": 1}}, "though": {"_count": 1, "as": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "disturbed": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "speak": {"_count": 1}}, "whipping": {"_count": 4, "backward": {"_count": 1}, "their": {"_count": 1}, "at": {"_count": 1}, "around": {"_count": 1}}, "that": {"_count": 3, "you": {"_count": 1}, "I": {"_count": 1}, "was": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "rushed": {"_count": 1, "through": {"_count": 1}}, "blowing": {"_count": 1, "pleasantly": {"_count": 1}}, "made": {"_count": 2, "solid": {"_count": 1}, "them": {"_count": 1}}, "a": {"_count": 1, "rustling": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "is": {"_count": 1, "blowing": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "howled": {"_count": 1, "around": {"_count": 1}}, "pulling": {"_count": 1, "him": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "whistling": {"_count": 2, "in": {"_count": 1}, "through": {"_count": 1}}, "the": {"_count": 2, "kettle": {"_count": 1}, "clouds": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "but": {"_count": 1, "her": {"_count": 1}}, "might": {"_count": 1, "blow": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "without": {"_count": 1, "broomstick": {"_count": 1}}, "swept": {"_count": 1, "him": {"_count": 1}}, "Yaxley": {"_count": 1, "confused": {"_count": 1}}, "stripped": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "gusted": {"_count": 1, "against": {"_count": 1}}, "buffeted": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "zoomed": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}}, "midjump": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "spending": {"_count": 24, "the": {"_count": 6, "day": {"_count": 1}, "evening": {"_count": 1}, "gold": {"_count": 1}, "time": {"_count": 1}, "rest": {"_count": 1}, "night": {"_count": 1}}, "a": {"_count": 5, "load": {"_count": 1}, "month": {"_count": 1}, "lot": {"_count": 3}}, "lesson": {"_count": 1, "after": {"_count": 1}}, "two": {"_count": 1, "hours": {"_count": 1}}, "increasing": {"_count": 1, "amounts": {"_count": 1}}, "in": {"_count": 2, "Umbridges": {"_count": 1}, "the": {"_count": 1}}, "every": {"_count": 1, "evening": {"_count": 1}}, "their": {"_count": 1, "break": {"_count": 1}}, "enough": {"_count": 1, "on": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "Ginny": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "hours": {"_count": 1, "going": {"_count": 1}}, "many": {"_count": 1, "evenings": {"_count": 1}}}, "somewhere": {"_count": 134, "that": {"_count": 3, "wasnt": {"_count": 1}, "nobody": {"_count": 1}, "students": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 1}, "Cho": {"_count": 1}, "Crabbe": {"_count": 1}}, "but": {"_count": 4, "lost": {"_count": 1}, "couldnt": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}}, "in": {"_count": 11, "the": {"_count": 8}, "there": {"_count": 1}, "here": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "I": {"_count": 2, "wonder": {"_count": 1}, "think": {"_count": 1}}, "the": {"_count": 1, "forests": {"_count": 1}}, "different": {"_count": 2, "on": {"_count": 1}, "every": {"_count": 1}}, "for": {"_count": 2, "Longbottom": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 22}, "?": {"_count": 4}, "!": {"_count": 2}}, "well": {"_count": 1, "see": {"_count": 1}}, "they": {"_count": 2, "heard": {"_count": 1}, "cant": {"_count": 1}}, "else": {"_count": 6, "because": {"_count": 1}, "": {"_count": 1}, "DO": {"_count": 1}, "from": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "close": {"_count": 4, "by": {"_count": 3}, "at": {"_count": 1}}, "perhaps": {"_count": 1, "looking": {"_count": 1}}, "near": {"_count": 5, "his": {"_count": 1}, "Nottingham": {"_count": 1}, "the": {"_count": 2}, "here": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "above": {"_count": 3, "them": {"_count": 2}, "wonderfully": {"_count": 1}}, "rubbing": {"_count": 1, "suntan": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "couldnt": {"_count": 1, "he": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 4, "he": {"_count": 1}, "not": {"_count": 1}, "each": {"_count": 1}, "think": {"_count": 1}}, "around": {"_count": 5, "his": {"_count": 3}, "here": {"_count": 2}}, "wholl": {"_count": 1, "have": {"_count": 1}}, "behind": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "He": {"_count": 1, "wandered": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "undetectable": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 4, "have": {"_count": 1}, "learn": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}}, "between": {"_count": 8, "a": {"_count": 3}, "life": {"_count": 1}, "Hagrids": {"_count": 1}, "night": {"_count": 1}, "skepticism": {"_count": 1}, "glittering": {"_count": 1}}, "out": {"_count": 3, "in": {"_count": 1}, "of": {"_count": 2}}, "nearby": {"_count": 3, "": {"_count": 2}, "Harry": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "draw": {"_count": 1, "her": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "overhead": {"_count": 1, "Snape": {"_count": 1}}, "abroad": {"_count": 1, "looking": {"_count": 1}}, "more": {"_count": 2, "private": {"_count": 1}, "sheltered": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "enclosed": {"_count": 1, "undercover": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "similar": {"_count": 1, "YouKnowWhos": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}}, "cabbagesmelling": {"_count": 1, "living": {"_count": 1, "room": {"_count": 1}}}, "complained": {"_count": 10, "to": {"_count": 2, "Aunt": {"_count": 1}, "the": {"_count": 1}}, "loudly": {"_count": 2, "that": {"_count": 1}, "about": {"_count": 1}}, "how": {"_count": 1, "much": {"_count": 1}}, "that": {"_count": 1, "Wood": {"_count": 1}}, "about": {"_count": 2, "Krum": {"_count": 1}, "it": {"_count": 1}}, "once": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "in": {"_count": 1}}}, "complain": {"_count": 24, "about": {"_count": 5, "things": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 2}, "this": {"_count": 1}}, "to": {"_count": 1, "Aunt": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 5, "this": {"_count": 1}, "they": {"_count": 1}, "I": {"_count": 2}, "you": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 1, "means": {"_count": 1}}, "its": {"_count": 1, "Potter": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, "!": {"_count": 1}, ".": {"_count": 1}}, "of": {"_count": 1, "pain": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "cost": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "if": {"_count": 1}}}, "council": {"_count": 3, "Harry": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "Fat": {"_count": 1}}, "said": {"_count": 1, "Crouch": {"_count": 1}}}, "bank": {"_count": 53, "and": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 16}, "?": {"_count": 1}}, "Gringotts": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "account": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "which": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "let": {"_count": 1}}, "the": {"_count": 2, "glimmers": {"_count": 1}, "fox": {"_count": 1}}, "gives": {"_count": 1, "a": {"_count": 1}}, "manager": {"_count": 1, "Harry": {"_count": 1}}, "rising": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "intervals": {"_count": 1}}, "where": {"_count": 5, "the": {"_count": 2}, "a": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "Gerroff": {"_count": 1, "Percy": {"_count": 1}}, "on": {"_count": 2, "more": {"_count": 1}, "an": {"_count": 1}}, "sheltered": {"_count": 1, "from": {"_count": 1}}, "that": {"_count": 1, "Sirius": {"_count": 1}}, "to": {"_count": 1, "nose": {"_count": 1}}, "was": {"_count": 1, "exactly": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 2}, "its": {"_count": 1}}, "leaning": {"_count": 1, "on": {"_count": 1}}, "or": {"_count": 1, "retreat": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "subjects": {"_count": 30, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "and": {"_count": 1, "titles": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "study": {"_count": 1}}, "marking": {"_count": 1, "them": {"_count": 1}}, "or": {"_count": 1, "Idve": {"_count": 1}}, "it": {"_count": 1, "landed": {"_count": 1}}, "as": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "than": {"_count": 3, "you": {"_count": 1}, "anybody": {"_count": 1}, "either": {"_count": 1}}, "today": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "day": {"_count": 1}}, "of": {"_count": 3, "Hogwarts": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "Im": {"_count": 1, "taking": {"_count": 1}}, "who": {"_count": 1, "sat": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "they": {"_count": 1, "are": {"_count": 1}}, "you": {"_count": 2, "should": {"_count": 1}, "ought": {"_count": 1}}, "useless": {"_count": 1, "if": {"_count": 1}}, "most": {"_count": 1, "important": {"_count": 1}}, "youre": {"_count": 1, "taking": {"_count": 1}}, "required": {"_count": 1, "in": {"_count": 1}}}, "motorcycles": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "extremely": {"_count": 1}}, "and": {"_count": 1, "also": {"_count": 1}}}, "roaring": {"_count": 32, "along": {"_count": 1, "like": {"_count": 1}}, "fire": {"_count": 3, "there": {"_count": 1}, "slowly": {"_count": 1}, "beneath": {"_count": 1}}, "fires": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 3}, "the": {"_count": 1}, "triumph": {"_count": 1}}, "trade": {"_count": 2, "in": {"_count": 1}, "that": {"_count": 1}}, "growing": {"_count": 1, "louder": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "spectators": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "snorting": {"_count": 1}, "brandishing": {"_count": 1}}, "shriek": {"_count": 1, "while": {"_count": 1}}, "sound": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 7, "laughter": {"_count": 7}}, "THATS": {"_count": 1, "WHY": {"_count": 1}}, "amidst": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "Deans": {"_count": 1}}, "its": {"_count": 1, "approval": {"_count": 1}}, "his": {"_count": 1, "displeasure": {"_count": 1}}, "billowing": {"_count": 1, "noise": {"_count": 1}}}, "along": {"_count": 488, "like": {"_count": 2, "maniacs": {"_count": 1}, "a": {"_count": 1}}, "the": {"_count": 209, "walls": {"_count": 4}, "corridors": {"_count": 6}, "next": {"_count": 3}, "floor": {"_count": 2}, "row": {"_count": 6}, "table": {"_count": 10}, "rows": {"_count": 1}, "bottom": {"_count": 2}, "same": {"_count": 3}, "dark": {"_count": 7}, "winding": {"_count": 3}, "ground": {"_count": 2}, "wall": {"_count": 6}, "horizon": {"_count": 4}, "twisting": {"_count": 1}, "great": {"_count": 1}, "main": {"_count": 1}, "Gryffindor": {"_count": 1}, "secondfloor": {"_count": 1}, "deserted": {"_count": 5}, "shelves": {"_count": 2}, "corridor": {"_count": 40}, "outofsight": {"_count": 1}, "passage": {"_count": 3}, "path": {"_count": 6}, "way": {"_count": 4}, "bed": {"_count": 1}, "narrow": {"_count": 3}, "train": {"_count": 4}, "carriage": {"_count": 1}, "platform": {"_count": 4}, "back": {"_count": 1}, "staff": {"_count": 4}, "usual": {"_count": 1}, "thirdfloor": {"_count": 1}, "Firebolt": {"_count": 1}, "handle": {"_count": 1}, "blade": {"_count": 1}, "tunnel": {"_count": 3}, "second": {"_count": 1}, "lanternlit": {"_count": 1}, "lane": {"_count": 2}, "fourthfloor": {"_count": 1}, "lines": {"_count": 1}, "teachers": {"_count": 1}, "wand": {"_count": 1}, "right": {"_count": 2}, "stone": {"_count": 1}, "bar": {"_count": 1}, "bookshelves": {"_count": 1}, "opposite": {"_count": 2}, "bank": {"_count": 1}, "new": {"_count": 1}, "golden": {"_count": 1}, "hall": {"_count": 2}, "edges": {"_count": 1}, "bench": {"_count": 2}, "alley": {"_count": 1}, "tables": {"_count": 1}, "top": {"_count": 2}, "empty": {"_count": 1}, "spines": {"_count": 1}, "Fat": {"_count": 1}, "Department": {"_count": 1}, "cool": {"_count": 1}, "aisle": {"_count": 1}, "firstfloor": {"_count": 1}, "left": {"_count": 1}, "street": {"_count": 4}, "benches": {"_count": 1}, "pavement": {"_count": 2}, "side": {"_count": 1}, "High": {"_count": 1}, "seventhfloor": {"_count": 2}, "passageway": {"_count": 1}, "seventh": {"_count": 1}, "cliffs": {"_count": 1}, "length": {"_count": 1}, "skirting": {"_count": 1}, "gloomy": {"_count": 1}, "crowded": {"_count": 1}, "thickly": {"_count": 1}, "hedge": {"_count": 1}, "crooked": {"_count": 1}, "tracks": {"_count": 1}, "scarlet": {"_count": 1}}, "a": {"_count": 23, "dark": {"_count": 2}, "completely": {"_count": 1}, "corridor": {"_count": 1}, "glass": {"_count": 1}, "bit": {"_count": 2}, "new": {"_count": 2}, "riverbed": {"_count": 1}, "wider": {"_count": 1}, "gloomy": {"_count": 1}, "path": {"_count": 1}, "witch": {"_count": 1}, "row": {"_count": 1}, "windowless": {"_count": 2}, "seventhfloor": {"_count": 1}, "short": {"_count": 1}, "mountain": {"_count": 1}, "twilit": {"_count": 1}, "lonely": {"_count": 1}, "deserted": {"_count": 1}}, "now": {"_count": 5, "said": {"_count": 1}, "": {"_count": 2}, "theres": {"_count": 1}, "about": {"_count": 1}}, "to": {"_count": 16, "a": {"_count": 1}, "the": {"_count": 7}, "Elfrida": {"_count": 1}, "give": {"_count": 1}, "Transfiguration": {"_count": 1}, "his": {"_count": 1}, "Gregory": {"_count": 1}, "my": {"_count": 1}, "Voldemort": {"_count": 1}, "stand": {"_count": 1}}, "without": {"_count": 3, "even": {"_count": 1}, "magic": {"_count": 1}, "me": {"_count": 1}}, "corridors": {"_count": 4, "with": {"_count": 2}, "striped": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 7, "and": {"_count": 1}, "stumbling": {"_count": 1}, "every": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}, "keeps": {"_count": 1}, "until": {"_count": 1}}, "wouldnt": {"_count": 1, "you": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 15}, "?": {"_count": 2}, "!": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 14, "midair": {"_count": 2}, "the": {"_count": 2}, "front": {"_count": 2}, "their": {"_count": 1}, "silence": {"_count": 1}, "his": {"_count": 4}, "her": {"_count": 1}, "Percys": {"_count": 1}}, "one": {"_count": 6, "of": {"_count": 2}, "wall": {"_count": 2}, "side": {"_count": 2}}, "behind": {"_count": 17, "her": {"_count": 2}, "him": {"_count": 7}, "them": {"_count": 6}, "the": {"_count": 2}}, "on": {"_count": 6, "its": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}}, "minature": {"_count": 1, "train": {"_count": 1}}, "below": {"_count": 2, "them": {"_count": 1}, "then": {"_count": 1}}, "with": {"_count": 36, "Ron": {"_count": 1}, "everyone": {"_count": 5}, "the": {"_count": 8}, "Filch": {"_count": 1}, "him": {"_count": 5}, "me": {"_count": 1}, "his": {"_count": 3}, "a": {"_count": 2}, "": {"_count": 1}, "you": {"_count": 1}, "yet": {"_count": 1}, "how": {"_count": 1}, "two": {"_count": 1}, "an": {"_count": 2}, "its": {"_count": 1}, "her": {"_count": 1}, "pieces": {"_count": 1}}, "Harry": {"_count": 3, "saw": {"_count": 1}, "seized": {"_count": 1}, "": {"_count": 1}}, "there": {"_count": 2, "Lockhart": {"_count": 1}, "Weasley": {"_count": 1}}, "and": {"_count": 5, "tries": {"_count": 1}, "proceeded": {"_count": 1}, "maintaining": {"_count": 1}, "see": {"_count": 1}, "that": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "ruining": {"_count": 1, "my": {"_count": 1}}, "flapping": {"_count": 1, "his": {"_count": 1}}, "another": {"_count": 4, "corridor": {"_count": 3}, "path": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "any": {"_count": 3, "moment": {"_count": 1}, "of": {"_count": 2}}, "for": {"_count": 3, "the": {"_count": 2}, "he": {"_count": 1}}, "Charing": {"_count": 1, "Cross": {"_count": 1}}, "more": {"_count": 1, "corridors": {"_count": 1}}, "yet": {"_count": 2, "another": {"_count": 2}}, "quickly": {"_count": 1, "wands": {"_count": 1}}, "ahead": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "his": {"_count": 3, "eyes": {"_count": 1}, "toes": {"_count": 1}, "scar": {"_count": 1}}, "this": {"_count": 1, "passageway": {"_count": 1}}, "around": {"_count": 1, "midday": {"_count": 1}}, "then": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "dear": {"_count": 1, "thats": {"_count": 1}}, "these": {"_count": 1, "lines": {"_count": 1}}, "perfectly": {"_count": 1, "well": {"_count": 1}}, "so": {"_count": 3, "fast": {"_count": 1}, "sedately": {"_count": 1}, "that": {"_count": 1}}, "those": {"_count": 1, "lines": {"_count": 1}}, "by": {"_count": 2, "Rita": {"_count": 1}, "themselves": {"_count": 1}}, "an": {"_count": 2, "empty": {"_count": 2}}, "beside": {"_count": 2, "Dumbledore": {"_count": 1}, "them": {"_count": 1}}, "Potter": {"_count": 1, "she": {"_count": 1}}, "he": {"_count": 2, "passed": {"_count": 1}, "had": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "Magnolia": {"_count": 2, "Road": {"_count": 2}}, "at": {"_count": 8, "his": {"_count": 1}, "the": {"_count": 4}, "this": {"_count": 1}, "all": {"_count": 1}, "Harrys": {"_count": 1}}, "budge": {"_count": 1, "along": {"_count": 1}}, "their": {"_count": 2, "learning": {"_count": 1}, "row": {"_count": 1}}, "from": {"_count": 2, "Cho": {"_count": 1}, "this": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "absentmindedly": {"_count": 1, "humming": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "just": {"_count": 1, "behind": {"_count": 1}}, "through": {"_count": 1, "its": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 1, "was": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "after": {"_count": 1, "Umbridge": {"_count": 1}}, "here": {"_count": 2, "They": {"_count": 1}, "into": {"_count": 1}}, "its": {"_count": 1, "neck": {"_count": 1}}, "undefended": {"_count": 1, "shieldless": {"_count": 1}}, "that": {"_count": 5, "the": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 1}, "wizards": {"_count": 1}, "sense": {"_count": 1}}, "but": {"_count": 1, "Id": {"_count": 1}}, "peering": {"_count": 1, "left": {"_count": 1}}, "asleep": {"_count": 1, "helpless": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "today": {"_count": 1, "said": {"_count": 1}}, "should": {"_count": 1, "he": {"_count": 1}}, "brooding": {"_count": 1, "upon": {"_count": 1}}, "unless": {"_count": 1, "he": {"_count": 1}}, "youre": {"_count": 1, "taking": {"_count": 1}}, "as": {"_count": 1, "comfortably": {"_count": 1}}, "looking": {"_count": 2, "harried": {"_count": 1}, "excited": {"_count": 1}}, "discreetly": {"_count": 1, "behind": {"_count": 1}}, "no": {"_count": 1, "offense": {"_count": 1}}, "I": {"_count": 2, "didnt": {"_count": 1}, "thought": {"_count": 1}}, "The": {"_count": 1, "orphanage": {"_count": 1}}, "which": {"_count": 1, "they": {"_count": 1}}, "sideways": {"_count": 1, "tied": {"_count": 1}}, "Bellatrixs": {"_count": 1, "wand": {"_count": 1}}, "what": {"_count": 1, "seemed": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "Crabbe": {"_count": 1, "outstripped": {"_count": 1}}}, "maniacs": {"_count": 3, "the": {"_count": 1, "young": {"_count": 1}}, "escaped": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 1, "Dumbledores": {"_count": 1}}}, "hoodlums": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "overtook": {"_count": 3, "them": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "him": {"_count": 1, "panic": {"_count": 1}}}, "remembering": {"_count": 37, "suddenly": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 3, "trip": {"_count": 1}, "livid": {"_count": 1}, "promise": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 8, "passwords": {"_count": 1}, "boggart": {"_count": 1}, "TonTongue": {"_count": 1}, "clammy": {"_count": 1}, "marblelike": {"_count": 1}, "sign": {"_count": 1}, "spotty": {"_count": 1}, "ludicrous": {"_count": 1}}, "what": {"_count": 3, "the": {"_count": 1}, "Fred": {"_count": 1}, "had": {"_count": 1}}, "how": {"_count": 5, "it": {"_count": 1}, "Neville": {"_count": 1}, "he": {"_count": 2}, "effective": {"_count": 1}}, "Umbridges": {"_count": 1, "comments": {"_count": 1}}, "something": {"_count": 1, "Dumbledore": {"_count": 1}}, "that": {"_count": 3, "she": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "only": {"_count": 1, "when": {"_count": 1}}, "very": {"_count": 1, "vividly": {"_count": 1}}, "her": {"_count": 2, "reputation": {"_count": 1}, "name": {"_count": 1}}, "words": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "younger": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "them": {"_count": 1, "too": {"_count": 1}}, "ink": {"_count": 1, "pouring": {"_count": 1}}, "Dumbledore": {"_count": 1, "whimpering": {"_count": 1}}}, "crashed": {"_count": 27, "into": {"_count": 5, "the": {"_count": 2}, "a": {"_count": 2}, "one": {"_count": 1}}, "his": {"_count": 1, "remote": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 4}}, "open": {"_count": 2, "": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "earlier": {"_count": 1, "this": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 1}, "inside": {"_count": 1}}, "tomorrow": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "Tonkss": {"_count": 1}}, "Comet": {"_count": 1, "Two": {"_count": 1}}, "over": {"_count": 3, "him": {"_count": 3}}, "the": {"_count": 1, "car": {"_count": 1}}, "Ted": {"_count": 1, "": {"_count": 1}}, "along": {"_count": 1, "behind": {"_count": 1}}}, "seat": {"_count": 177, "and": {"_count": 26, "yelled": {"_count": 1}, "ran": {"_count": 1}, "pressed": {"_count": 1}, "looked": {"_count": 1}, "hugging": {"_count": 1}, "grinning": {"_count": 1}, "got": {"_count": 1}, "his": {"_count": 1}, "was": {"_count": 1}, "cauldron": {"_count": 1}, "Harry": {"_count": 1}, "started": {"_count": 1}, "closed": {"_count": 1}, "sat": {"_count": 1}, "began": {"_count": 1}, "groaned": {"_count": 1}, "waited": {"_count": 1}, "grinned": {"_count": 1}, "Bellatrix": {"_count": 1}, "arranged": {"_count": 1}, "hoisted": {"_count": 1}, "saw": {"_count": 1}, "hurried": {"_count": 1}, "indicating": {"_count": 1}, "scurried": {"_count": 1}, "found": {"_count": 1}}, "his": {"_count": 2, "father": {"_count": 1}, "squashed": {"_count": 1}}, "": {"_count": 32, ".": {"_count": 32}}, "opposite": {"_count": 3, "Harry": {"_count": 2}, "her": {"_count": 1}}, "looking": {"_count": 4, "depressed": {"_count": 1}, "around": {"_count": 1}, "ruffled": {"_count": 1}, "alarmed": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 13, "face": {"_count": 2}, "help": {"_count": 1}, "watch": {"_count": 3}, "stare": {"_count": 2}, "look": {"_count": 2}, "stone": {"_count": 1}, "retrieve": {"_count": 1}, "which": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 3, "Ron": {"_count": 1}, "Neville": {"_count": 1}, "him": {"_count": 1}}, "with": {"_count": 6, "Ron": {"_count": 1}, "Hedwig": {"_count": 1}, "the": {"_count": 2}, "fluff": {"_count": 1}, "me": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "Hepzibah": {"_count": 1}}, "grinning": {"_count": 1, "from": {"_count": 1}}, "where": {"_count": 3, "Harry": {"_count": 1}, "Neville": {"_count": 1}, "it": {"_count": 1}}, "which": {"_count": 2, "had": {"_count": 1}, "Harry": {"_count": 1}}, "vibrating": {"_count": 1, "beneath": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "tip": {"_count": 1, "sideways": {"_count": 1}}, "at": {"_count": 12, "the": {"_count": 12}}, "Harry": {"_count": 3, "": {"_count": 1}, "Potter": {"_count": 1}, "doesnt": {"_count": 1}}, "usually": {"_count": 1, "filled": {"_count": 1}}, "Ron": {"_count": 1, "seized": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "following": {"_count": 1, "the": {"_count": 1}}, "twelve": {"_count": 1, "but": {"_count": 1}}, "throwing": {"_count": 1, "jealous": {"_count": 1}}, "too": {"_count": 1, "gulping": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "was": {"_count": 1, "taken": {"_count": 1}}, "beside": {"_count": 5, "George": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}, "Ron": {"_count": 1}}, "as": {"_count": 4, "the": {"_count": 1}, "he": {"_count": 1}, "Dumbledore": {"_count": 1}, "she": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "still": {"_count": 1, "on": {"_count": 1}}, "next": {"_count": 2, "to": {"_count": 2}}, "whimpering": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 1, "my": {"_count": 1}}, "behind": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 2, "ought": {"_count": 1}, "his": {"_count": 1}}, "watching": {"_count": 1, "everyone": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "front": {"_count": 1}}, "saw": {"_count": 1, "Professor": {"_count": 1}}, "transferred": {"_count": 1, "Hedwig": {"_count": 1}}, "intending": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "facing": {"_count": 1, "Dumbledore": {"_count": 1}}, "had": {"_count": 1, "obligingly": {"_count": 1}}, "again": {"_count": 1, "as": {"_count": 1}}, "said": {"_count": 1, "his": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "Luna": {"_count": 1}}, "the": {"_count": 1, "tips": {"_count": 1}}, "a": {"_count": 1, "good": {"_count": 1}}, "Im": {"_count": 1, "cornin": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "set": {"_count": 1, "aside": {"_count": 1}}, "Ronald": {"_count": 1, "I": {"_count": 1}}}, "gigantic": {"_count": 59, "beet": {"_count": 1, "with": {"_count": 1}}, "fist": {"_count": 1, "and": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}, "tug": {"_count": 1, "and": {"_count": 1}}, "black": {"_count": 4, "spiders": {"_count": 1}, "shape": {"_count": 1}, "one": {"_count": 1}, "bearded": {"_count": 1}}, "puffed": {"_count": 1, "up": {"_count": 1}}, "fists": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "size": {"_count": 1, "and": {"_count": 1}}, "snake": {"_count": 4, "skin": {"_count": 1}, "at": {"_count": 1}, "slithering": {"_count": 1}, "there": {"_count": 1}}, "stone": {"_count": 1, "face": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}, "tortoise": {"_count": 1, "with": {"_count": 1}}, "outline": {"_count": 1, "of": {"_count": 1}}, "hands": {"_count": 1, "inviting": {"_count": 1}}, "hairy": {"_count": 2, "brown": {"_count": 1}, "black": {"_count": 1}}, "shaggy": {"_count": 1, "black": {"_count": 1}}, "Slytherin": {"_count": 1, "Beater": {"_count": 1}}, "paws": {"_count": 1, "": {"_count": 1}}, "stadium": {"_count": 1, "": {"_count": 1}}, "blackboard": {"_count": 1, "": {"_count": 1}}, "serpenttongued": {"_count": 1, "skull": {"_count": 1}}, "silhouette": {"_count": 1, "at": {"_count": 1}}, "powderblue": {"_count": 1, "horsedrawn": {"_count": 1}}, "powder": {"_count": 1, "blue": {"_count": 1}}, "bed": {"_count": 1, "covered": {"_count": 1}}, "blacksatin": {"_count": 1, "bosom": {"_count": 1}}, "silver": {"_count": 1, "fruit": {"_count": 1}}, "merperson": {"_count": 1, "hewn": {"_count": 1}}, "spider": {"_count": 2, "stepped": {"_count": 1}, "into": {"_count": 1}}, "raspberry": {"_count": 1, "tongues": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "arms": {"_count": 1, "hopefully": {"_count": 1}}, "glowing": {"_count": 1, "Christmas": {"_count": 1}}, "form": {"_count": 1, "lying": {"_count": 1}}, "Grawp": {"_count": 1, "was": {"_count": 1}}, "slugs": {"_count": 1, "squeezed": {"_count": 1}}, "poster": {"_count": 1, "purple": {"_count": 1}}, "talking": {"_count": 1, "spider": {"_count": 1}}, "and": {"_count": 1, "handsome": {"_count": 1}}, "statue": {"_count": 1, "of": {"_count": 1}}, "cracked": {"_count": 1, "ring": {"_count": 1}}, "labyrinth": {"_count": 1, "comprised": {"_count": 1}}, "building": {"_count": 1, "with": {"_count": 1}}, "dragon": {"_count": 1, "was": {"_count": 1}}, "fractured": {"_count": 1, "stalactites": {"_count": 1}}, "ships": {"_count": 1, "cabin": {"_count": 1}}, "body": {"_count": 1, "flew": {"_count": 1}}, "vase": {"_count": 1, "blew": {"_count": 1}}, "pack": {"_count": 1, "of": {"_count": 1}}, "spiders": {"_count": 1, "forced": {"_count": 1}}}, "beet": {"_count": 1, "with": {"_count": 1, "a": {"_count": 1}}}, "MOTORCYCLES": {"_count": 1, "DONT": {"_count": 1, "FLY": {"_count": 1}}}, "DONT": {"_count": 24, "FLY": {"_count": 1, "": {"_count": 1}}, "SUPPOSE": {"_count": 1, "YOU": {"_count": 1}}, "KNOW": {"_count": 3, "WHAT": {"_count": 1}, "POTTER": {"_count": 1}, "HOW": {"_count": 1}}, "YOU": {"_count": 1, "COME": {"_count": 1}}, "BELIEVE": {"_count": 2, "IT": {"_count": 2}}, "": {"_count": 4, "!": {"_count": 4}}, "TALK": {"_count": 2, "ABOUT": {"_count": 2}}, "UNDERSTAND": {"_count": 1, "": {"_count": 1}}, "LIE": {"_count": 1, "": {"_count": 1}}, "LADDIE": {"_count": 1, "": {"_count": 1}}, "HAVE": {"_count": 1, "TO": {"_count": 1}}, "WANT": {"_count": 1, "TOBE": {"_count": 1}}, "CARE": {"_count": 3, "": {"_count": 1}, "ANYMORE": {"_count": 1}, "WHAT": {"_count": 1}}, "screamed": {"_count": 1, "Snape": {"_count": 1}}, "KILL": {"_count": 1, "HIM": {"_count": 1}}}, "FLY": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "sniggered": {"_count": 26, "": {"_count": 11, ".": {"_count": 11}}, "behind": {"_count": 1, "their": {"_count": 1}}, "appreciatively": {"_count": 1, "": {"_count": 1}}, "Stan": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 1, "though": {"_count": 1}}, "through": {"_count": 1, "her": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "said": {"_count": 1}}, "breaking": {"_count": 1, "off": {"_count": 1}}, "shrilly": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "correct": {"_count": 1}, "Slughorn": {"_count": 1}}, "Hermione": {"_count": 1, "gave": {"_count": 1}}}, "wished": {"_count": 70, "he": {"_count": 26, "hadnt": {"_count": 5}, "had": {"_count": 11}, "would": {"_count": 1}, "could": {"_count": 4}, "was": {"_count": 2}, "still": {"_count": 1}, "were": {"_count": 2}}, "they": {"_count": 5, "wouldnt": {"_count": 2}, "would": {"_count": 2}, "had": {"_count": 1}}, "Ron": {"_count": 3, "would": {"_count": 2}, "and": {"_count": 1}}, "him": {"_count": 4, "good": {"_count": 2}, "luck": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "to": {"_count": 10, "be": {"_count": 2}, "give": {"_count": 1}, "remain": {"_count": 2}, "know": {"_count": 1}, "teach": {"_count": 1}, "leave": {"_count": 1}, "ah": {"_count": 1}, "speak": {"_count": 1}}, "it": {"_count": 3, "were": {"_count": 1}, "could": {"_count": 2}}, "that": {"_count": 3, "he": {"_count": 3}}, "theyd": {"_count": 1, "hurry": {"_count": 1}}, "the": {"_count": 2, "other": {"_count": 1}, "pod": {"_count": 1}}, "she": {"_count": 3, "wouldnt": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 1, "Merry": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "so": {"_count": 1, "intensely": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "nothing": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}}, "talking": {"_count": 417, "about": {"_count": 153, "anything": {"_count": 2}, "lessons": {"_count": 1}, "the": {"_count": 13}, "Dean": {"_count": 1}, "interfering": {"_count": 1}, "": {"_count": 42}, "she": {"_count": 1}, "it": {"_count": 6}, "hed": {"_count": 1}, "my": {"_count": 2}, "him": {"_count": 5}, "you": {"_count": 4}, "Weasley": {"_count": 1}, "that": {"_count": 1}, "Quidditch": {"_count": 1}, "Harry": {"_count": 2}, "poor": {"_count": 1}, "Malfoy": {"_count": 2}, "closing": {"_count": 3}, "Hagrid": {"_count": 1}, "someone": {"_count": 1}, "Father": {"_count": 1}, "went": {"_count": 1}, "Bludgers": {"_count": 1}, "this": {"_count": 1}, "Diggory": {"_count": 1}, "Wonky": {"_count": 1}, "his": {"_count": 2}, "goblins": {"_count": 1}, "me": {"_count": 2}, "getting": {"_count": 1}, "Nevilles": {"_count": 2}, "other": {"_count": 1}, "guard": {"_count": 1}, "big": {"_count": 1}, "gold": {"_count": 1}, "taking": {"_count": 1}, "look": {"_count": 1}, "but": {"_count": 2}, "what": {"_count": 2}, "or": {"_count": 1}, "Lupin": {"_count": 2}, "test": {"_count": 1}, "defending": {"_count": 1}, "learning": {"_count": 1}, "Michael": {"_count": 1}, "knitting": {"_count": 1}, "homework": {"_count": 1}, "Stubby": {"_count": 1}, "anyway": {"_count": 1}, "Sirius": {"_count": 2}, "one": {"_count": 1}, "Mrs": {"_count": 1}, "Ariy": {"_count": 1}, "Ron": {"_count": 1}, "\u2018the": {"_count": 1}, "said": {"_count": 1}, "your": {"_count": 4}, "earlier": {"_count": 1}, "Harrys": {"_count": 1}, "how": {"_count": 1}, "much": {"_count": 1}, "MadEye": {"_count": 1}, "going": {"_count": 1}, "her": {"_count": 1}, "right": {"_count": 1}, "repairing": {"_count": 1}, "a": {"_count": 3}, "hundreds": {"_count": 1}, "services": {"_count": 1}}, "to": {"_count": 92, "it": {"_count": 1}, "the": {"_count": 10}, "four": {"_count": 1}, "one": {"_count": 3}, "Professor": {"_count": 5}, "a": {"_count": 4}, "him": {"_count": 11}, "watch": {"_count": 1}, "himself": {"_count": 4}, "": {"_count": 3}, "Marge": {"_count": 1}, "me": {"_count": 3}, "her": {"_count": 2}, "Weasley": {"_count": 1}, "Sirius": {"_count": 2}, "Harry": {"_count": 3}, "Madame": {"_count": 2}, "Wormtail": {"_count": 1}, "anybody": {"_count": 1}, "you": {"_count": 5}, "myself": {"_count": 1}, "Diggory": {"_count": 1}, "Viktor": {"_count": 1}, "someone": {"_count": 2}, "Percy": {"_count": 1}, "Ron": {"_count": 2}, "Kreacher": {"_count": 1}, "each": {"_count": 3}, "Fudge": {"_count": 2}, "us": {"_count": 2}, "your": {"_count": 2}, "just": {"_count": 1}, "Ernie": {"_count": 1}, "Snuffles": {"_count": 2}, "distract": {"_count": 1}, "this": {"_count": 1}, "Hagrid": {"_count": 1}, "Ginny": {"_count": 1}, "an": {"_count": 1}, "Hogwarts": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 2, "train": {"_count": 1}, "whole": {"_count": 1}}, "much": {"_count": 2, "except": {"_count": 1}, "louder": {"_count": 1}}, "": {"_count": 24, ".": {"_count": 21}, "!": {"_count": 2}, "?": {"_count": 1}}, "and": {"_count": 11, "stop": {"_count": 1}, "laughing": {"_count": 1}, "joking": {"_count": 1}, "looked": {"_count": 1}, "gathering": {"_count": 1}, "shrieking": {"_count": 1}, "killing": {"_count": 1}, "doing": {"_count": 1}, "Harry": {"_count": 3}}, "loudly": {"_count": 4, "at": {"_count": 1}, "exiting": {"_count": 1}, "and": {"_count": 2}}, "of": {"_count": 4, "nothing": {"_count": 1}, "course": {"_count": 1}, "being": {"_count": 1}, "minds": {"_count": 1}}, "mirror": {"_count": 1, "or": {"_count": 1}}, "doing": {"_count": 1, "homework": {"_count": 1}}, "behind": {"_count": 2, "my": {"_count": 1}, "their": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "in": {"_count": 14, "his": {"_count": 2}, "a": {"_count": 2}, "whispers": {"_count": 2}, "an": {"_count": 1}, "grunts": {"_count": 1}, "the": {"_count": 3}, "low": {"_count": 2}, "strong": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "more": {"_count": 3, "quickly": {"_count": 1}, "than": {"_count": 1}, "to": {"_count": 1}}, "animatedly": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "Malfoy": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 3, "he": {"_count": 2}, "they": {"_count": 1}}, "seriously": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 2}}, "excitedly": {"_count": 3, "as": {"_count": 1}, "laughing": {"_count": 1}, "about": {"_count": 1}}, "from": {"_count": 1, "within": {"_count": 1}}, "nonsense": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "spiritedly": {"_count": 1, "about": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "very": {"_count": 9, "loudly": {"_count": 1}, "little": {"_count": 1}, "fast": {"_count": 3}, "abruptly": {"_count": 1}, "earnestly": {"_count": 1}, "much": {"_count": 1}, "suddenly": {"_count": 1}}, "abruptly": {"_count": 3, "she": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "over": {"_count": 4, "him": {"_count": 2}, "the": {"_count": 1}, "her": {"_count": 1}}, "facetoface": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 2, "nothing": {"_count": 1}, "wonder": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "furiously": {"_count": 1, "all": {"_count": 1}}, "fast": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "both": {"_count": 1}}, "hard": {"_count": 1, "Harry": {"_count": 1}}, "normally": {"_count": 1, "again": {"_count": 1}}, "that": {"_count": 2, "way": {"_count": 1}, "quietly": {"_count": 1}}, "though": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "apparently": {"_count": 1, "unaware": {"_count": 1}}, "point": {"_count": 1, "wouldnt": {"_count": 1}}, "fluently": {"_count": 1, "to": {"_count": 1}}, "like": {"_count": 2, "he": {"_count": 1}, "this": {"_count": 1}}, "Mr": {"_count": 1, "Bagman": {"_count": 1}}, "late": {"_count": 1, "into": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}, "yet": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "then": {"_count": 1}}, "quietly": {"_count": 3, "together": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}}, "calmly": {"_count": 1, "of": {"_count": 1}}, "directly": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "less": {"_count": 1, "to": {"_count": 1}}, "eagerly": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "here": {"_count": 1, "about": {"_count": 1}}, "cheerily": {"_count": 1, "fell": {"_count": 1}}, "you": {"_count": 1, "walked": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "intently": {"_count": 1}, "loudly": {"_count": 1}}, "spell": {"_count": 1, "had": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "herself": {"_count": 1, "into": {"_count": 1}}, "horses": {"_count": 1, "": {"_count": 1}}, "reading": {"_count": 1, "the": {"_count": 1}}, "spider": {"_count": 1, "Aragog": {"_count": 1}}, "he": {"_count": 1, "whispered": {"_count": 1}}, "well": {"_count": 1, "arguin": {"_count": 1}}, "If": {"_count": 1, "you": {"_count": 1}}, "sense": {"_count": 1, "": {"_count": 1}}, "Patronus": {"_count": 1, "thing": {"_count": 1}}, "firmly": {"_count": 1, "over": {"_count": 1}}, "softly": {"_count": 1, "behind": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "shouldnt": {"_count": 83, "no": {"_count": 1, "matter": {"_count": 1}}, "even": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "be": {"_count": 16, "": {"_count": 1}, "too": {"_count": 2}, "inside": {"_count": 1}, "going": {"_count": 1}, "coming": {"_count": 1}, "feeling": {"_count": 1}, "doing": {"_count": 1}, "mixed": {"_count": 1}, "not": {"_count": 1}, "flying": {"_count": 1}, "Theres": {"_count": 1}, "able": {"_count": 2}, "here": {"_count": 1}, "quite": {"_count": 1}}, "have": {"_count": 28, "hit": {"_count": 1}, "done": {"_count": 4}, "risen": {"_count": 1}, "shouted": {"_count": 1}, "much": {"_count": 1}, "suggested": {"_count": 1}, "won": {"_count": 1}, "come": {"_count": 1}, "everything": {"_count": 1}, "told": {"_count": 1}, "seen": {"_count": 1}, "tried": {"_count": 1}, "taken": {"_count": 1}, "": {"_count": 3}, "favorites": {"_count": 1}, "said": {"_count": 3}, "been": {"_count": 1}, "called": {"_count": 1}, "written": {"_count": 1}, "gone": {"_count": 1}, "read": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 3}}, "really": {"_count": 2, "have": {"_count": 2}}, "ve": {"_count": 2, "enjoyed": {"_count": 1}, "given": {"_count": 1}}, "we": {"_count": 3, "be": {"_count": 1}, "show": {"_count": 1}, "make": {"_count": 1}}, "he": {"_count": 5, "be": {"_count": 3}, "": {"_count": 2}}, "take": {"_count": 2, "more": {"_count": 1}, "that": {"_count": 1}}, "think": {"_count": 2, "that": {"_count": 1}, "so": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "Summon": {"_count": 1, "one": {"_count": 1}}, "accuse": {"_count": 1, "dangerous": {"_count": 1}}, "leave": {"_count": 2, "Lavender": {"_count": 1}, "their": {"_count": 1}}, "and": {"_count": 2, "your": {"_count": 2}}, "overexert": {"_count": 1, "yourself": {"_count": 1}}, "I": {"_count": 2, "find": {"_count": 1}, "": {"_count": 1}}, "send": {"_count": 1, "the": {"_count": 1}}, "miss": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "go": {"_count": 1, "its": {"_count": 1}}}, "matter": {"_count": 221, "if": {"_count": 11, "it": {"_count": 1}, "Snape": {"_count": 1}, "you": {"_count": 2}, "they": {"_count": 1}, "his": {"_count": 1}, "shes": {"_count": 1}, "she": {"_count": 1}, "hes": {"_count": 1}, "its": {"_count": 1}, "were": {"_count": 1}}, "o": {"_count": 3, "fact": {"_count": 1}, "time": {"_count": 1}, "hours": {"_count": 1}}, "with": {"_count": 11, "this": {"_count": 1}, "you": {"_count": 5}, "yeh": {"_count": 1}, "him": {"_count": 3}, "the": {"_count": 1}}, "": {"_count": 46, "?": {"_count": 30}, ".": {"_count": 14}, "!": {"_count": 2}}, "of": {"_count": 52, "fact": {"_count": 18}, "seconds": {"_count": 3}, "deepest": {"_count": 1}, "no": {"_count": 1}, "time": {"_count": 13}, "opinion": {"_count": 1}, "Buckbeak": {"_count": 1}, "curses": {"_count": 1}, "walking": {"_count": 1}, "where": {"_count": 1}, "underage": {"_count": 1}, "dream": {"_count": 1}, "causing": {"_count": 1}, "Fred": {"_count": 1}, "school": {"_count": 1}, "even": {"_count": 1}, "the": {"_count": 1}, "months": {"_count": 1}, "interest": {"_count": 1}, "confidence": {"_count": 1}, "little": {"_count": 1}}, "anymore": {"_count": 1, "cant": {"_count": 1}}, "and": {"_count": 1, "Hagrid": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "how": {"_count": 9, "I": {"_count": 2}, "much": {"_count": 1}, "foully": {"_count": 1}, "many": {"_count": 1}, "he": {"_count": 2}, "hard": {"_count": 1}, "often": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "that": {"_count": 4, "Hermione": {"_count": 1}, "we": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}}, "Sit": {"_count": 1, "down": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 8, "me": {"_count": 2}, "the": {"_count": 1}, "him": {"_count": 2}, "which": {"_count": 1}, "a": {"_count": 1}, "us": {"_count": 1}}, "Lavender": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 2, "much": {"_count": 1}, "little": {"_count": 1}}, "will": {"_count": 2, "therefore": {"_count": 1}, "not": {"_count": 1}}, "gone": {"_count": 1, "soft": {"_count": 1}}, "Harry": {"_count": 2, "muttered": {"_count": 1}, "Dumbledore": {"_count": 1}}, "where": {"_count": 2, "Harry": {"_count": 2}}, "was": {"_count": 1, "now": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 7, "Hermione": {"_count": 1}, "Fred": {"_count": 1}, "Mr": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 2}, "Dumbledore": {"_count": 1}}, "between": {"_count": 1, "Professor": {"_count": 1}}, "Outside": {"_count": 1, "in": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "dont": {"_count": 1, "apologize": {"_count": 1}}, "Cornelius": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "was": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "pick": {"_count": 1, "any": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "a": {"_count": 2, "great": {"_count": 1}, "second": {"_count": 1}}, "I": {"_count": 1, "spose": {"_count": 1}}, "in": {"_count": 3, "magic": {"_count": 1}, "the": {"_count": 1}, "hand": {"_count": 1}}, "any": {"_count": 2, "further": {"_count": 2}}, "however": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "she": {"_count": 1}}, "anyway": {"_count": 1, "said": {"_count": 1}}, "now": {"_count": 1, "said": {"_count": 1}}, "nothing": {"_count": 1, "mattered": {"_count": 1}}, "over": {"_count": 1, "drinks": {"_count": 1}}, "Sirius": {"_count": 1, "wont": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "though": {"_count": 1, "and": {"_count": 1}}, "do": {"_count": 2, "not": {"_count": 1}, "you": {"_count": 1}}, "whether": {"_count": 1, "you": {"_count": 1}}, "enormously": {"_count": 1, "said": {"_count": 1}}, "either": {"_count": 1, "way": {"_count": 1}}, "thank": {"_count": 2, "you": {"_count": 2}}, "from": {"_count": 1, "his": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "higher": {"_count": 1, "priority": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "honestly": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "was": {"_count": 1}}, "rest": {"_count": 1, "though": {"_count": 1}}, "so": {"_count": 1, "often": {"_count": 1}}, "what": {"_count": 2, "spells": {"_count": 2}}, "it": {"_count": 1, "will": {"_count": 1}}, "Bogrod": {"_count": 1, "will": {"_count": 1}}, "when": {"_count": 1, "Albus": {"_count": 1}}, "The": {"_count": 1, "tunnel": {"_count": 1}}, "further": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "bringing": {"_count": 1}}}, "cartoon": {"_count": 5, "they": {"_count": 1, "seemed": {"_count": 1}}, "figure": {"_count": 1, "standing": {"_count": 1}}, "of": {"_count": 1, "Cornelius": {"_count": 1}}, "was": {"_count": 1, "captioned": {"_count": 1}}, "in": {"_count": 1, "fact": {"_count": 1}}}, "dangerous": {"_count": 157, "ideas": {"_count": 1, "": {"_count": 1}}, "nonsense": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "half": {"_count": 1}}, "beasts": {"_count": 2, "everyone": {"_count": 1}, "for": {"_count": 1}}, "magic": {"_count": 2, "you": {"_count": 1}, "in": {"_count": 1}}, "said": {"_count": 4, "Ron": {"_count": 4}}, "": {"_count": 40, ".": {"_count": 28}, "?": {"_count": 2}, "!": {"_count": 10}}, "and": {"_count": 7, "fifty": {"_count": 1}, "yes": {"_count": 1}, "falsely": {"_count": 1}, "suspicious": {"_count": 1}, "powerful": {"_count": 1}, "so": {"_count": 1}, "a": {"_count": 1}}, "what": {"_count": 1, "were": {"_count": 1}}, "plants": {"_count": 2, "": {"_count": 1}, "than": {"_count": 1}}, "are": {"_count": 1, "they": {"_count": 1}}, "very": {"_count": 2, "dangerous": {"_count": 1}, "exciting": {"_count": 1}}, "sports": {"_count": 1, "and": {"_count": 1}}, "Who": {"_count": 1, "is": {"_count": 1}}, "magical": {"_count": 2, "transformations": {"_count": 1}, "objects": {"_count": 1}}, "adventure": {"_count": 1, "Dumbledore": {"_count": 1}}, "on": {"_count": 1, "purpose": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "Hogwarts": {"_count": 1}}, "voice": {"_count": 6, "": {"_count": 3}, "as": {"_count": 2}, "pintsized": {"_count": 1}}, "Malfoys": {"_count": 1, "dad": {"_count": 1}}, "a": {"_count": 1, "madman": {"_count": 1}}, "murderer": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "Seeker": {"_count": 1, "diversion": {"_count": 1}}, "whatever": {"_count": 1, "precautions": {"_count": 1}}, "stuff": {"_count": 1, "before": {"_count": 1}}, "but": {"_count": 3, "which": {"_count": 1}, "if": {"_count": 1}, "the": {"_count": 1}}, "task": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "as": {"_count": 2, "its": {"_count": 1}, "walking": {"_count": 1}}, "how": {"_count": 2, "could": {"_count": 1}, "did": {"_count": 1}}, "crosses": {"_count": 1, "between": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "writes": {"_count": 1, "Rita": {"_count": 1}}, "But": {"_count": 1, "Professor": {"_count": 1}}, "supporters": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 2, "him": {"_count": 2}}, "situations": {"_count": 1, "": {"_count": 1}}, "waters": {"_count": 1, "": {"_count": 1}}, "halfbreeds": {"_count": 2, "": {"_count": 1}, "during": {"_count": 1}}, "crowd": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 4, "some": {"_count": 1}, "a": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}}, "Dangerous": {"_count": 1, "": {"_count": 1}}, "nature": {"_count": 1, "of": {"_count": 1}}, "night": {"_count": 1, "in": {"_count": 1}}, "fevers": {"_count": 1, "or": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "journey": {"_count": 2, "worthwhile": {"_count": 1}, "alone": {"_count": 1}}, "to": {"_count": 7, "us": {"_count": 1}, "him": {"_count": 2}, "carry": {"_count": 1}, "try": {"_count": 1}, "swim": {"_count": 1}, "break": {"_count": 1}}, "than": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "unless": {"_count": 1, "hes": {"_count": 1}}, "creatures": {"_count": 1, "into": {"_count": 1}}, "times": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}}, "assignments": {"_count": 1, "said": {"_count": 1}}, "access": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "worth": {"_count": 1}}, "thing": {"_count": 2, "to": {"_count": 2}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "present": {"_count": 1}}, "enemy": {"_count": 1, "another": {"_count": 1}}, "overconfidence": {"_count": 1, "said": {"_count": 1}}, "or": {"_count": 2, "Dark": {"_count": 1}, "frightening": {"_count": 1}}, "Dark": {"_count": 1, "wizard": {"_count": 1}}, "Easy": {"_count": 1, "for": {"_count": 1}}, "all": {"_count": 1, "our": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "place": {"_count": 1, "in": {"_count": 1}}, "Voldemort": {"_count": 1, "can": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "path": {"_count": 1, "indicated": {"_count": 1}}, "look": {"_count": 1, "crept": {"_count": 1}}, "wizards": {"_count": 1, "who": {"_count": 1}}, "wand": {"_count": 1, "had": {"_count": 1}}}, "ideas": {"_count": 32, "": {"_count": 8, ".": {"_count": 5}, "?": {"_count": 3}}, "about": {"_count": 1, "good": {"_count": 1}}, "and": {"_count": 2, "between": {"_count": 1}, "he": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "for": {"_count": 1, "catastrophes": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "strategy": {"_count": 1}}, "are": {"_count": 1, "a": {"_count": 1}}, "how": {"_count": 1, "youre": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "normally": {"_count": 1, "turn": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "brain": {"_count": 1, "like": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "but": {"_count": 1}}, "they": {"_count": 2, "continued": {"_count": 1}, "were": {"_count": 1}}, "helped": {"_count": 1, "Grindelwald": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "both": {"_count": 1, "fascinating": {"_count": 1}}, "caught": {"_count": 1, "me": {"_count": 1}}}, "sunny": {"_count": 14, "Saturday": {"_count": 1, "and": {"_count": 1}}, "grounds": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "enjoying": {"_count": 1}}, "day": {"_count": 2, "": {"_count": 1}, "Fang": {"_count": 1}}, "morning": {"_count": 1, "about": {"_count": 1}}, "days": {"_count": 1, "exploring": {"_count": 1}}, "window": {"_count": 1, "his": {"_count": 1}}, "Jim": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "corner": {"_count": 1, "of": {"_count": 1}}, "common": {"_count": 1, "room": {"_count": 1}}, "backyard": {"_count": 1, "to": {"_count": 1}}}, "Saturday": {"_count": 59, "and": {"_count": 4, "the": {"_count": 1}, "set": {"_count": 1}, "Sunday": {"_count": 1}, "that": {"_count": 1}}, "things": {"_count": 1, "began": {"_count": 1}}, "Harry": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 12, "?": {"_count": 3}, "!": {"_count": 2}, ".": {"_count": 7}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "couldnt": {"_count": 1, "come": {"_count": 1}}, "morning": {"_count": 10, "": {"_count": 3}, "and": {"_count": 1}, "of": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "so": {"_count": 1}, "Potter": {"_count": 1}, "whatever": {"_count": 1}}, "afternoon": {"_count": 3, "seemed": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "night": {"_count": 5, "do": {"_count": 1}, "I": {"_count": 1}, "flickering": {"_count": 1}, "were": {"_count": 1}, "my": {"_count": 1}}, "after": {"_count": 3, "the": {"_count": 1}, "that": {"_count": 2}}, "most": {"_count": 1, "students": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "witch": {"_count": 1}}, "was": {"_count": 1, "gone": {"_count": 1}}, "far": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "Yeah": {"_count": 1, "thats": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}, "dawned": {"_count": 1, "without": {"_count": 1}}, "evening": {"_count": 1, "": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "breakfast": {"_count": 1}}, "everybody": {"_count": 1, "and": {"_count": 1}}, "until": {"_count": 2, "the": {"_count": 2}}, "had": {"_count": 1, "been": {"_count": 1}}, "next": {"_count": 1, "at": {"_count": 1}}, "which": {"_count": 1, "might": {"_count": 1}}}, "crowded": {"_count": 53, "with": {"_count": 3, "families": {"_count": 1}, "Hogwarts": {"_count": 1}, "evacuating": {"_count": 1}}, "around": {"_count": 6, "the": {"_count": 3}, "Mrs": {"_count": 1}, "Harry": {"_count": 2}}, "in": {"_count": 3, "standing": {"_count": 1}, "here": {"_count": 1}, "around": {"_count": 1}}, "corridor": {"_count": 1, "shes": {"_count": 1}}, "street": {"_count": 4, "were": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}}, "tables": {"_count": 1, "making": {"_count": 1}}, "dance": {"_count": 2, "floor": {"_count": 2}}, "corridors": {"_count": 1, "singing": {"_count": 1}}, "after": {"_count": 1, "sunset": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "yet": {"_count": 1, "so": {"_count": 1}}, "mantelpiece": {"_count": 1, "was": {"_count": 1}}, "Gryffindor": {"_count": 1, "common": {"_count": 1}}, "noisy": {"_count": 1, "warm": {"_count": 1}}, "common": {"_count": 1, "room": {"_count": 1}}, "and": {"_count": 3, "noisy": {"_count": 2}, "stuffy": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "clearing": {"_count": 1, "and": {"_count": 1}}, "than": {"_count": 3, "usual": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}}, "now": {"_count": 1, "than": {"_count": 1}}, "as": {"_count": 3, "ever": {"_count": 1}, "most": {"_count": 1}, "everyone": {"_count": 1}}, "entrance": {"_count": 1, "hall": {"_count": 1}}, "reception": {"_count": 1, "area": {"_count": 1}}, "pub": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}, "shop": {"_count": 1, "": {"_count": 1}}, "study": {"_count": 1, "tripped": {"_count": 1}}, "Great": {"_count": 1, "Hall": {"_count": 1}}, "that": {"_count": 1, "evening": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "pavement": {"_count": 1, "there": {"_count": 1}}, "court": {"_count": 1, "": {"_count": 1}}, "cottage": {"_count": 1, "craving": {"_count": 1}}}, "families": {"_count": 51, "": {"_count": 11, ".": {"_count": 10}, "!": {"_count": 1}}, "shouldnt": {"_count": 1, "even": {"_count": 1}}, "some": {"_count": 1, "fighting": {"_count": 1}}, "the": {"_count": 1, "pale": {"_count": 1}}, "and": {"_count": 4, "they": {"_count": 1}, "like": {"_count": 1}, "this": {"_count": 1}, "friends": {"_count": 1}}, "are": {"_count": 5, "much": {"_count": 1}, "invited": {"_count": 1}, "all": {"_count": 1}, "targeted": {"_count": 1}, "torn": {"_count": 1}}, "talked": {"_count": 1, "about": {"_count": 1}}, "alone": {"_count": 1, "if": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "with": {"_count": 1, "small": {"_count": 1}}, "of": {"_count": 1, "people": {"_count": 1}}, "weren": {"_count": 1, "": {"_count": 1}}, "apart": {"_count": 1, "who": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "to": {"_count": 4, "posters": {"_count": 1}, "see": {"_count": 1}, "whom": {"_count": 1}, "vanish": {"_count": 1}}, "had": {"_count": 1, "grown": {"_count": 1}}, "never": {"_count": 1, "met": {"_count": 1}}, "he": {"_count": 1, "discovered": {"_count": 1}}, "together": {"_count": 1, "its": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "again": {"_count": 1, "either": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "others": {"_count": 1, "sat": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "who": {"_count": 2, "banded": {"_count": 1}, "lived": {"_count": 1}}, "lay": {"_count": 1, "side": {"_count": 1}}, "that": {"_count": 1, "are": {"_count": 1}}, "store": {"_count": 1, "their": {"_count": 1}}, "reunited": {"_count": 1, "and": {"_count": 1}}}, "bought": {"_count": 60, "Dudley": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 11, "a": {"_count": 4}, "another": {"_count": 1}, "chocolate": {"_count": 1}, "off": {"_count": 1}, "for": {"_count": 1}, "some": {"_count": 1}, "school": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harrys": {"_count": 1, "school": {"_count": 1}}, "Harry": {"_count": 1, "a": {"_count": 1}}, "me": {"_count": 3, "my": {"_count": 1}, "a": {"_count": 2}}, "with": {"_count": 1, "their": {"_count": 1}}, "your": {"_count": 2, "dress": {"_count": 1}, "present": {"_count": 1}}, "Percy": {"_count": 1, "when": {"_count": 1}}, "it": {"_count": 5, "took": {"_count": 1}, "from": {"_count": 1}, "apparently": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "three": {"_count": 1, "large": {"_count": 1}}, "a": {"_count": 7, "complete": {"_count": 1}, "large": {"_count": 3}, "diary": {"_count": 1}, "Firebolt": {"_count": 1}, "small": {"_count": 1}}, "our": {"_count": 1, "team": {"_count": 1}}, "you": {"_count": 1, "twelve": {"_count": 1}}, "new": {"_count": 1, "ones": {"_count": 1}}, "two": {"_count": 1, "hundred": {"_count": 1}}, "that": {"_count": 1, "monster": {"_count": 1}}, "himself": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 2, "in": {"_count": 1}, "now": {"_count": 1}}, "for": {"_count": 1, "her": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "eight": {"_count": 1, "hundred": {"_count": 1}}, "anything": {"_count": 1, "for": {"_count": 1}}, "drinks": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 2, "second": {"_count": 1}, "book": {"_count": 1}}, "their": {"_count": 1, "tickets": {"_count": 1}}, "them": {"_count": 1, "last": {"_count": 1}}, "any": {"_count": 1, "ingredients": {"_count": 1}}, "large": {"_count": 1, "boxes": {"_count": 1}}, "five": {"_count": 1, "hundred": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Weasleys": {"_count": 1}}, "something": {"_count": 1, "at": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 1, "they": {"_count": 1}}}, "chocolate": {"_count": 46, "ice": {"_count": 1, "creams": {"_count": 1}}, "cake": {"_count": 2, "that": {"_count": 1}, "with": {"_count": 1}}, "and": {"_count": 5, "raspberry": {"_count": 1}, "peppermint": {"_count": 1}, "bed": {"_count": 1}, "for": {"_count": 1}, "watched": {"_count": 1}}, "eclairs": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 1, "knows": {"_count": 1}}, "cakes": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "but": {"_count": 3, "poured": {"_count": 1}, "didnt": {"_count": 1}, "still": {"_count": 1}}, "pudding": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 3, "pieces": {"_count": 1}, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "to": {"_count": 1, "everyone": {"_count": 1}}, "wrapper": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "neat": {"_count": 1}, "it": {"_count": 1}}, "wishing": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 1, "Harrys": {"_count": 1}}, "with": {"_count": 1, "great": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "Madam": {"_count": 1}}, "bars": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "eclair": {"_count": 1, "": {"_count": 1}}, "liqueurs": {"_count": 1, "littering": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "egg": {"_count": 1, "decorated": {"_count": 1}}, "Lupin": {"_count": 1, "had": {"_count": 1}}, "gateau": {"_count": 1, "": {"_count": 1}}}, "ice": {"_count": 37, "creams": {"_count": 4, "at": {"_count": 1}, "to": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}}, "pop": {"_count": 1, "": {"_count": 1}}, "cream": {"_count": 8, "on": {"_count": 1}, "Hagrid": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "was": {"_count": 1, "flooding": {"_count": 1}}, "cascade": {"_count": 1, "into": {"_count": 1}}, "fat": {"_count": 1, "honeycolored": {"_count": 1}}, "and": {"_count": 1, "umbrella": {"_count": 1}}, "cube": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "rigging": {"_count": 1}}, "sculptures": {"_count": 1, "all": {"_count": 1}}, "not": {"_count": 2, "mice": {"_count": 1}, "wood": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "Rons": {"_count": 1, "flask": {"_count": 1}}, "that": {"_count": 1, "throbbed": {"_count": 1}}, "reflected": {"_count": 1, "his": {"_count": 1}}, "thinking": {"_count": 1, "hard": {"_count": 1}}, "rocked": {"_count": 1, "on": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "creams": {"_count": 8, "at": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "show": {"_count": 1}}, "which": {"_count": 1, "they": {"_count": 1}}, "shaped": {"_count": 1, "like": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "we": {"_count": 1, "hexed": {"_count": 1}}, "was": {"_count": 1, "scattered": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "entrance": {"_count": 254, "and": {"_count": 6, "then": {"_count": 1}, "walked": {"_count": 1}, "paused": {"_count": 1}, "did": {"_count": 1}, "took": {"_count": 1}, "down": {"_count": 1}}, "hall": {"_count": 150, "was": {"_count": 5}, "they": {"_count": 6}, "where": {"_count": 5}, "and": {"_count": 12}, "": {"_count": 41}, "with": {"_count": 5}, "which": {"_count": 7}, "he": {"_count": 4}, "when": {"_count": 4}, "after": {"_count": 2}, "marched": {"_count": 1}, "slid": {"_count": 1}, "up": {"_count": 1}, "Nevilles": {"_count": 1}, "as": {"_count": 1}, "before": {"_count": 1}, "listening": {"_count": 1}, "floor": {"_count": 1}, "Fred": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 1}, "she": {"_count": 3}, "tonight": {"_count": 1}, "upon": {"_count": 1}, "rang": {"_count": 1}, "quickly": {"_count": 1}, "again": {"_count": 1}, "Harry": {"_count": 2}, "below": {"_count": 2}, "contained": {"_count": 1}, "Cedric": {"_count": 1}, "opened": {"_count": 1}, "then": {"_count": 1}, "toward": {"_count": 1}, "down": {"_count": 1}, "waiting": {"_count": 1}, "to": {"_count": 4}, "packed": {"_count": 1}, "are": {"_count": 1}, "heading": {"_count": 1}, "on": {"_count": 1}, "against": {"_count": 1}, "however": {"_count": 1}, "still": {"_count": 2}, "slowing": {"_count": 1}, "while": {"_count": 3}, "two": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 1}, "without": {"_count": 1}, "holding": {"_count": 1}, "at": {"_count": 2}, "in": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "were": {"_count": 1}, "He": {"_count": 1}, "screaming": {"_count": 1}}, "to": {"_count": 40, "the": {"_count": 25}, "Gryffindor": {"_count": 5}, "Diagon": {"_count": 2}, "it": {"_count": 1}, "Dumbledores": {"_count": 2}, "Magnolia": {"_count": 1}, "find": {"_count": 1}, "Nurmengard": {"_count": 1}, "scowl": {"_count": 1}, "a": {"_count": 1}}, "read": {"_count": 1, "THE": {"_count": 1}}, "": {"_count": 17, "!": {"_count": 1}, ".": {"_count": 16}}, "was": {"_count": 1, "breaking": {"_count": 1}}, "is": {"_count": 2, "right": {"_count": 1}, "concealed": {"_count": 1}}, "so": {"_count": 1, "you": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "saw": {"_count": 1}, "tried": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "far": {"_count": 1, "below": {"_count": 1}}, "saying": {"_count": 1, "DANGER": {"_count": 1}}, "hole": {"_count": 1, "and": {"_count": 1}}, "facing": {"_count": 1, "them": {"_count": 1}}, "of": {"_count": 10, "the": {"_count": 8}, "a": {"_count": 1}, "so": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "London": {"_count": 1, "then": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "Diagon": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 2, "seven": {"_count": 1}, "another": {"_count": 1}}, "half": {"_count": 1, "expecting": {"_count": 1}}, "flap": {"_count": 1, "but": {"_count": 1}}, "bringing": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "guard": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "it": {"_count": 1, "took": {"_count": 1}}}, "van": {"_count": 1, "had": {"_count": 1, "asked": {"_count": 1}}}, "hurry": {"_count": 77, "him": {"_count": 1, "away": {"_count": 1}}, "up": {"_count": 26, "and": {"_count": 6}, "": {"_count": 5}, "I": {"_count": 1}, "hell": {"_count": 1}, "youre": {"_count": 1}, "with": {"_count": 1}, "Ron": {"_count": 2}, "said": {"_count": 1}, "mate": {"_count": 1}, "Mums": {"_count": 1}, "hadnt": {"_count": 1}, "Im": {"_count": 1}, "will": {"_count": 1}, "youll": {"_count": 1}, "theyll": {"_count": 1}, "here": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 14}, "!": {"_count": 4}}, "Borgin": {"_count": 1, "I": {"_count": 1}}, "well": {"_count": 1, "be": {"_count": 1}}, "Quidditch": {"_count": 1, "practice": {"_count": 1}}, "to": {"_count": 4, "get": {"_count": 1}, "write": {"_count": 1}, "mutilate": {"_count": 1}, "chase": {"_count": 1}}, "forward": {"_count": 1, "his": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 2, "youll": {"_count": 1}, "Ill": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 2, "going": {"_count": 1}, "supposed": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "back": {"_count": 1, "across": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "upstairs": {"_count": 1, "for": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "yeh": {"_count": 1, "ll": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Mr": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "home": {"_count": 1, "and": {"_count": 1}}, "Travers": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}}, "cheap": {"_count": 5, "lemon": {"_count": 1, "ice": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "one": {"_count": 1, "Ron": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "bad": {"_count": 215, "either": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 22, "usual": {"_count": 1}, "you": {"_count": 2}, "his": {"_count": 1}, "theyre": {"_count": 1}, "the": {"_count": 4}, "Harry": {"_count": 1}, "it": {"_count": 2}, "he": {"_count": 2}, "those": {"_count": 1}, "Goyles": {"_count": 1}, "listening": {"_count": 1}, "last": {"_count": 1}, "Muggleborns": {"_count": 1}, "zat": {"_count": 1}, "ever": {"_count": 1}, "Death": {"_count": 1}}, "day": {"_count": 2, "in": {"_count": 1}, "for": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 13}, "?": {"_count": 3}, "!": {"_count": 1}}, "luck": {"_count": 2, "you": {"_count": 1}, "Ron": {"_count": 1}}, "cold": {"_count": 1, "an": {"_count": 1}}, "who": {"_count": 1, "wasnt": {"_count": 1}}, "eggs": {"_count": 3, "and": {"_count": 1}, "or": {"_count": 1}, "overwhelmed": {"_count": 1}}, "but": {"_count": 1, "imagine": {"_count": 1}}, "name": {"_count": 1, "and": {"_count": 1}}, "mind": {"_count": 1, "either": {"_count": 1}}, "temper": {"_count": 3, "back": {"_count": 1}, "which": {"_count": 1}, "and": {"_count": 1}}, "mood": {"_count": 15, "by": {"_count": 2}, "looking": {"_count": 1}, "with": {"_count": 2}, "": {"_count": 1}, "continued": {"_count": 1}, "Harry": {"_count": 2}, "had": {"_count": 1}, "already": {"_count": 1}, "but": {"_count": 1}, "persisted": {"_count": 1}, "ever": {"_count": 1}, "and": {"_count": 1}}, "feeling": {"_count": 4, "about": {"_count": 3}, "and": {"_count": 1}}, "news": {"_count": 4, "": {"_count": 2}, "they": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}, "a": {"_count": 1, "time": {"_count": 1}}, "loose": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 2, "fell": {"_count": 1}, "said": {"_count": 1}}, "case": {"_count": 3, "of": {"_count": 3}}, "enough": {"_count": 16, "": {"_count": 1}, "to": {"_count": 3}, "that": {"_count": 3}, "without": {"_count": 4}, "today": {"_count": 1}, "doing": {"_count": 1}, "for": {"_count": 1}, "time": {"_count": 1}, "word": {"_count": 1}}, "sunburn": {"_count": 1, "": {"_count": 1}}, "staying": {"_count": 1, "here": {"_count": 1}}, "blood": {"_count": 1, "thats": {"_count": 1}}, "because": {"_count": 2, "there": {"_count": 1}, "everyone": {"_count": 1}}, "said": {"_count": 14, "Ron": {"_count": 3}, "Mr": {"_count": 1}, "Harry": {"_count": 6}, "George": {"_count": 1}, "Hermione": {"_count": 2}, "Hagrid": {"_count": 1}}, "turnout": {"_count": 1, "said": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "idea": {"_count": 3, "Professor": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "can": {"_count": 1, "he": {"_count": 1}}, "thing": {"_count": 2, "said": {"_count": 1}, "to": {"_count": 1}}, "business": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "egg": {"_count": 1, "": {"_count": 1}}, "bout": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 3, "something": {"_count": 1}, "least": {"_count": 1}, "kissing": {"_count": 1}}, "to": {"_count": 2, "say": {"_count": 1}, "worse": {"_count": 1}}, "for": {"_count": 3, "business": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}}, "hippogriff": {"_count": 1, "Hagrid": {"_count": 1}}, "time": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "boys": {"_count": 1, "": {"_count": 1}}, "leg": {"_count": 3, "stiffer": {"_count": 1}, "that": {"_count": 1}, "would": {"_count": 1}}, "marks": {"_count": 1, "as": {"_count": 1}}, "or": {"_count": 3, "something": {"_count": 1}, "unwilling": {"_count": 1}, "perhaps": {"_count": 1}}, "wizards": {"_count": 1, "about": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "Dark": {"_count": 1, "wizards": {"_count": 1}}, "elf": {"_count": 1, "Dobby": {"_count": 1}}, "wizard": {"_count": 3, "": {"_count": 3}}, "Engorgement": {"_count": 1, "Charm": {"_count": 1}}, "bite": {"_count": 3, "off": {"_count": 2}, "from": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 2}, "felt": {"_count": 1}}, "about": {"_count": 1, "all": {"_count": 1}}, "liar": {"_count": 1, "": {"_count": 1}}, "Berthas": {"_count": 1, "memory": {"_count": 1}}, "moods": {"_count": 1, "had": {"_count": 1}}, "joke": {"_count": 1, "it": {"_count": 1}}, "boy": {"_count": 4, "": {"_count": 2}, "who": {"_count": 1}, "and": {"_count": 1}}, "what": {"_count": 1, "that": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "cartoon": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "then": {"_count": 1, "eh": {"_count": 1}}, "dreams": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "Bells": {"_count": 1, "hit": {"_count": 1}}, "dream": {"_count": 1, "": {"_count": 1}}, "journey": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "they": {"_count": 1}}, "reputation": {"_count": 1, "because": {"_count": 1}}, "omens": {"_count": 1, "didn": {"_count": 1}}, "lesson": {"_count": 1, "at": {"_count": 1}}, "head": {"_count": 2, "cold": {"_count": 2}}, "one": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "job": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "explaining": {"_count": 1}, "have": {"_count": 1}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "it": {"_count": 1}}, "tempered": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "loser": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "weather": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "happen": {"_count": 1}}, "while": {"_count": 1, "she": {"_count": 1}}, "night": {"_count": 1, "for": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "even": {"_count": 1, "brutal": {"_count": 1}}, "habit": {"_count": 1, "weve": {"_count": 1}}, "little": {"_count": 1, "haul": {"_count": 1}}, "stuff": {"_count": 1, "": {"_count": 1}}}, "either": {"_count": 245, "Harry": {"_count": 2, "thought": {"_count": 1}, "or": {"_count": 1}}, "It": {"_count": 1, "says": {"_count": 1}}, "with": {"_count": 1, "five": {"_count": 1}}, "": {"_count": 62, ".": {"_count": 53}, "!": {"_count": 7}, "?": {"_count": 2}}, "of": {"_count": 34, "you": {"_count": 10}, "them": {"_count": 17}, "these": {"_count": 1}, "the": {"_count": 3}, "those": {"_count": 1}, "us": {"_count": 1}, "our": {"_count": 1}}, "side": {"_count": 65, "of": {"_count": 55}, "fell": {"_count": 1}, "that": {"_count": 1}, "drew": {"_count": 1}, "": {"_count": 3}, "out": {"_count": 1}, "extended": {"_count": 1}, "he": {"_count": 1}, "looking": {"_count": 1}}, "end": {"_count": 8, "of": {"_count": 7}, "But": {"_count": 1}}, "really": {"_count": 1, "valuable": {"_count": 1}}, "said": {"_count": 10, "George": {"_count": 1}, "Hermione": {"_count": 1}, "Ginny": {"_count": 1}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 2}, "Snape": {"_count": 1}, "Ron": {"_count": 2}}, "Snape": {"_count": 3, "or": {"_count": 2}, "went": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "cold": {"_count": 1}}, "We": {"_count": 1, "dont": {"_count": 1}}, "Ron": {"_count": 2, "or": {"_count": 2}}, "he": {"_count": 2, "had": {"_count": 1}, "seized": {"_count": 1}}, "if": {"_count": 1, "youd": {"_count": 1}}, "foxes": {"_count": 1, "or": {"_count": 1}}, "a": {"_count": 2, "very": {"_count": 1}, "nickname": {"_count": 1}}, "way": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}}, "excited": {"_count": 1, "or": {"_count": 1}}, "gazing": {"_count": 1, "raptly": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "fear": {"_count": 1, "or": {"_count": 1}}, "in": {"_count": 2, "fact": {"_count": 1}, "the": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "chasing": {"_count": 1}}, "so": {"_count": 1, "large": {"_count": 1}}, "because": {"_count": 2, "they": {"_count": 1}, "apparently": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "look": {"_count": 1, "He": {"_count": 1}}, "was": {"_count": 1, "gazing": {"_count": 1}}, "Umbridge": {"_count": 1, "or": {"_count": 1}}, "did": {"_count": 1, "it": {"_count": 1}}, "admitted": {"_count": 1, "Hermione": {"_count": 1}}, "find": {"_count": 1, "a": {"_count": 1}}, "very": {"_count": 1, "bad": {"_count": 1}}, "for": {"_count": 2, "his": {"_count": 1}, "Hermione": {"_count": 1}}, "I": {"_count": 2, "didnt": {"_count": 1}, "dont": {"_count": 1}}, "outcome": {"_count": 1, "would": {"_count": 1}}, "give": {"_count": 1, "us": {"_count": 1}}, "Voldemort": {"_count": 1, "himself": {"_count": 1}}, "must": {"_count": 1, "die": {"_count": 1}}, "murderer": {"_count": 1, "or": {"_count": 1}}, "where": {"_count": 1, "are": {"_count": 1}}, "alive": {"_count": 1, "or": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "Hermione": {"_count": 1, "finished": {"_count": 1}}, "which": {"_count": 1, "is": {"_count": 1}}, "broken": {"_count": 1, "or": {"_count": 1}}, "already": {"_count": 1, "seated": {"_count": 1}}, "Hagrid": {"_count": 1, "or": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "swaggering": {"_count": 1, "around": {"_count": 1}}, "witnessed": {"_count": 1, "or": {"_count": 1}}, "although": {"_count": 1, "youre": {"_count": 1}}, "wand": {"_count": 1, "was": {"_count": 1}}, "died": {"_count": 1, "out": {"_count": 1}}}, "licking": {"_count": 7, "it": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 3, "ears": {"_count": 1}, "body": {"_count": 1}, "sleeve": {"_count": 1}}, "its": {"_count": 1, "ears": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}}, "gorilla": {"_count": 3, "scratching": {"_count": 1, "its": {"_count": 1}}, "arms": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "Fred": {"_count": 1}}}, "scratching": {"_count": 30, "its": {"_count": 1, "head": {"_count": 1}}, "his": {"_count": 7, "head": {"_count": 1}, "ears": {"_count": 1}, "chin": {"_count": 1}, "scarred": {"_count": 1}, "nose": {"_count": 2}, "scalp": {"_count": 1}}, "her": {"_count": 1, "nose": {"_count": 1}}, "Fangs": {"_count": 1, "ears": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 3}, "their": {"_count": 1}}, "of": {"_count": 4, "his": {"_count": 1}, "Umbridges": {"_count": 1}, "quills": {"_count": 1}, "her": {"_count": 1}}, "Rons": {"_count": 1, "face": {"_count": 1}}, "a": {"_count": 1, "purring": {"_count": 1}}, "quills": {"_count": 1, "on": {"_count": 1}}, "made": {"_count": 1, "Professor": {"_count": 1}}, "out": {"_count": 3, "the": {"_count": 1}, "sentences": {"_count": 1}, "one": {"_count": 1}}, "behind": {"_count": 1, "Crookshanks": {"_count": 1}}, "feverishly": {"_count": 1, "while": {"_count": 1}}, "noise": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 1, "parchment": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}}, "remarkably": {"_count": 10, "like": {"_count": 3, "Dudley": {"_count": 1}, "hatred": {"_count": 1}, "Rons": {"_count": 1}}, "calm": {"_count": 1, "though": {"_count": 1}}, "cold": {"_count": 1, "toward": {"_count": 1}}, "quick": {"_count": 1, "on": {"_count": 1}}, "unabashed": {"_count": 1, "for": {"_count": 1}}, "warm": {"_count": 1, "and": {"_count": 1}}, "blase": {"_count": 1, "about": {"_count": 1}}, "selfless": {"_count": 1, "person": {"_count": 1}}}, "starting": {"_count": 138, "to": {"_count": 103, "get": {"_count": 7}, "make": {"_count": 2}, "attract": {"_count": 1}, "feel": {"_count": 19}, "clear": {"_count": 1}, "bustle": {"_count": 1}, "drift": {"_count": 1}, "roll": {"_count": 1}, "grow": {"_count": 1}, "burn": {"_count": 1}, "empty": {"_count": 1}, "giggle": {"_count": 1}, "pile": {"_count": 1}, "grin": {"_count": 1}, "laugh": {"_count": 2}, "think": {"_count": 6}, "clean": {"_count": 1}, "obscure": {"_count": 1}, "seem": {"_count": 2}, "beat": {"_count": 1}, "creep": {"_count": 2}, "pull": {"_count": 2}, "ladle": {"_count": 1}, "seize": {"_count": 1}, "peel": {"_count": 1}, "wake": {"_count": 1}, "cook": {"_count": 1}, "prevent": {"_count": 1}, "sob": {"_count": 1}, "rely": {"_count": 1}, "write": {"_count": 1}, "fill": {"_count": 1}, "speak": {"_count": 1}, "quite": {"_count": 1}, "look": {"_count": 1}, "stare": {"_count": 1}, "water": {"_count": 1}, "disturb": {"_count": 1}, "pound": {"_count": 1}, "read": {"_count": 2}, "sound": {"_count": 1}, "worry": {"_count": 1}, "affect": {"_count": 1}, "appear": {"_count": 1}, "fight": {"_count": 1}, "annoy": {"_count": 1}, "smell": {"_count": 1}, "shiver": {"_count": 1}, "sink": {"_count": 1}, "glow": {"_count": 1}, "eat": {"_count": 1}, "unwrap": {"_count": 1}, "flood": {"_count": 1}, "wish": {"_count": 2}, "live": {"_count": 1}, "pace": {"_count": 2}, "act": {"_count": 1}, "pulse": {"_count": 1}, "go": {"_count": 1}, "twist": {"_count": 1}, "tell": {"_count": 1}, "disentangle": {"_count": 1}, "prickle": {"_count": 1}, "fear": {"_count": 1}, "wrestle": {"_count": 1}, "crack": {"_count": 1}}, "on": {"_count": 3, "Harry": {"_count": 1}, "Thursday": {"_count": 1}, "a": {"_count": 1}}, "small": {"_count": 1, "just": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "the": {"_count": 3, "ignition": {"_count": 1}, "dancing": {"_count": 1}, "lesson": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "Harry": {"_count": 1}, "Dueling": {"_count": 1}}, "and": {"_count": 1, "looking": {"_count": 1}}, "Divination": {"_count": 1, "are": {"_count": 1}}, "some": {"_count": 1, "new": {"_count": 1}}, "in": {"_count": 4, "five": {"_count": 1}, "October": {"_count": 1}, "her": {"_count": 1}, "about": {"_count": 1}}, "this": {"_count": 2, "week": {"_count": 1}, "Defense": {"_count": 1}}, "crystal": {"_count": 1, "balls": {"_count": 1}}, "my": {"_count": 1, "journey": {"_count": 1}}, "his": {"_count": 2, "fourth": {"_count": 1}, "new": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "off": {"_count": 1, "back": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "up": {"_count": 1, "S": {"_count": 1}}, "pistol": {"_count": 1, "right": {"_count": 1}}, "your": {"_count": 1, "fifth": {"_count": 1}}, "fifth": {"_count": 1, "year": {"_count": 1}}, "tomorrow": {"_count": 1, "Professor": {"_count": 1}}, "Vanishing": {"_count": 1, "Spells": {"_count": 1}}, "anything": {"_count": 1, "new": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "bored": {"_count": 34, "with": {"_count": 3, "the": {"_count": 2}, "that": {"_count": 1}}, "drawling": {"_count": 1, "voice": {"_count": 1}}, "them": {"_count": 2, "all": {"_count": 2}}, "he": {"_count": 2, "said": {"_count": 1}, "finished": {"_count": 1}}, "of": {"_count": 3, "his": {"_count": 1}, "discussing": {"_count": 1}, "running": {"_count": 1}}, "asked": {"_count": 1, "if": {"_count": 1}}, "was": {"_count": 1, "ferreting": {"_count": 1}}, "off": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "voice": {"_count": 8, "": {"_count": 6}, "behind": {"_count": 1}, "without": {"_count": 1}}, "and": {"_count": 1, "lofty": {"_count": 1}}, "convicted": {"_count": 1, "of": {"_count": 1}}, "walking": {"_count": 1, "down": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "but": {"_count": 1, "very": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "you": {"_count": 1, "could": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}}, "animals": {"_count": 24, "by": {"_count": 1, "lunchtime": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "floating": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "side": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "wasnt": {"_count": 1}, "I": {"_count": 1}, "plants": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "he": {"_count": 1, "wouldnt": {"_count": 1}}, "snakes": {"_count": 1, "of": {"_count": 1}}, "like": {"_count": 1, "themselves": {"_count": 1}}, "do": {"_count": 1, "what": {"_count": 1}}, "as": {"_count": 1, "Horcruxes": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "stupid": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}}, "fall": {"_count": 95, "back": {"_count": 5, "on": {"_count": 1}, "onto": {"_count": 1}, "against": {"_count": 1}, "looking": {"_count": 1}, "over": {"_count": 1}}, "in": {"_count": 10, "although": {"_count": 1}, "upon": {"_count": 1}, "the": {"_count": 1}, "love": {"_count": 2}, "and": {"_count": 1}, "earnest": {"_count": 1}, "with": {"_count": 1}, "Selwyn": {"_count": 1}, "slow": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "open": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "through": {"_count": 1}}, "off": {"_count": 11, "their": {"_count": 2}, "his": {"_count": 2}, "": {"_count": 3}, "your": {"_count": 2}, "again": {"_count": 1}, "did": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "for": {"_count": 3, "that": {"_count": 1}, "Voldemorts": {"_count": 1}, "Tonks": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 2, "Ron": {"_count": 1}, "he": {"_count": 1}}, "over": {"_count": 1, "for": {"_count": 1}}, "was": {"_count": 1, "bleeding": {"_count": 1}}, "perchance": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 3}}, "ill": {"_count": 1, "": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "forward": {"_count": 1, "onto": {"_count": 1}}, "into": {"_count": 7, "disrepair": {"_count": 1}, "the": {"_count": 2}, "Georges": {"_count": 1}, "a": {"_count": 1}, "step": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 7, "the": {"_count": 7}}, "by": {"_count": 1, "midafternoon": {"_count": 1}}, "from": {"_count": 4, "power": {"_count": 2}, "grace": {"_count": 1}, "halfway": {"_count": 1}}, "through": {"_count": 1, "Harrys": {"_count": 1}}, "backward": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 3, "dust": {"_count": 1}, "chilly": {"_count": 1}, "his": {"_count": 1}}, "asleep": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "more": {"_count": 1, "heavily": {"_count": 1}}, "shatter": {"_count": 1, "and": {"_count": 1}}, "apart": {"_count": 1, "again": {"_count": 1}}, "seconds": {"_count": 1, "later": {"_count": 1}}, "the": {"_count": 1, "ring": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "into": {"_count": 1}}, "his": {"_count": 1, "lips": {"_count": 1}}, "spinning": {"_count": 1, "out": {"_count": 1}}, "cutting": {"_count": 1, "into": {"_count": 1}}}, "hobby": {"_count": 3, "of": {"_count": 3, "hitting": {"_count": 1}, "inventing": {"_count": 1}, "it": {"_count": 1}}}, "hitting": {"_count": 41, "him": {"_count": 5, "": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "hard": {"_count": 1}, "groped": {"_count": 1}}, "each": {"_count": 3, "other": {"_count": 2}, "stair": {"_count": 1}}, "its": {"_count": 1, "shoulder": {"_count": 1}}, "tiny": {"_count": 1, "old": {"_count": 1}}, "the": {"_count": 11, "basin": {"_count": 1}, "wet": {"_count": 1}, "second": {"_count": 1}, "map": {"_count": 1}, "alley": {"_count": 1}, "bottom": {"_count": 1}, "security": {"_count": 1}, "walls": {"_count": 1}, "ground": {"_count": 1}, "wall": {"_count": 1}, "opposite": {"_count": 1}}, "himself": {"_count": 2, "with": {"_count": 1}, "hard": {"_count": 1}}, "more": {"_count": 1, "spiders": {"_count": 1}}, "pillars": {"_count": 1, "as": {"_count": 1}}, "people": {"_count": 1, "who": {"_count": 1}}, "you": {"_count": 1, "hard": {"_count": 1}}, "Malfoy": {"_count": 1, "in": {"_count": 1}}, "Harry": {"_count": 2, "Harry": {"_count": 1}, "seemed": {"_count": 1}}, "Harrys": {"_count": 1, "face": {"_count": 1}}, "Angelina": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 4, "teacup": {"_count": 1}, "face": {"_count": 1}, "head": {"_count": 2}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "their": {"_count": 1, "clubs": {"_count": 1}}, "that": {"_count": 1, "Bludger": {"_count": 1}}, "flesh": {"_count": 1, "Ron": {"_count": 1}}, "Goyle": {"_count": 1, "with": {"_count": 1}}}, "ate": {"_count": 27, "in": {"_count": 1, "the": {"_count": 1}}, "stale": {"_count": 1, "cornflakes": {"_count": 1}}, "the": {"_count": 1, "ice": {"_count": 1}}, "continually": {"_count": 1, "": {"_count": 1}}, "breakfast": {"_count": 3, "each": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "their": {"_count": 2, "way": {"_count": 1}, "lunch": {"_count": 1}}, "Scabbers": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "anythin": {"_count": 1, "las": {"_count": 1}}, "drank": {"_count": 1, "talked": {"_count": 1}}, "his": {"_count": 1, "grapefruit": {"_count": 1}}, "furiously": {"_count": 1, "fast": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "gratefully": {"_count": 1, "": {"_count": 1}}, "alone": {"_count": 1, "at": {"_count": 1}}, "lunch": {"_count": 2, "during": {"_count": 1}, "with": {"_count": 1}}, "with": {"_count": 1, "gusto": {"_count": 1}}, "rather": {"_count": 1, "hurriedly": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "only": {"_count": 1, "grudgingly": {"_count": 1}}, "and": {"_count": 1, "drank": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}}, "restaurant": {"_count": 1, "and": {"_count": 1, "when": {"_count": 1}}}, "knickerbocker": {"_count": 1, "glory": {"_count": 1, "didnt": {"_count": 1}}}, "glory": {"_count": 17, "didnt": {"_count": 1, "have": {"_count": 1}}, "even": {"_count": 1, "stopper": {"_count": 1}}, "in": {"_count": 1, "decay": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "riches": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "domination": {"_count": 1}}, "a": {"_count": 1, "feeling": {"_count": 1}}, "Hufflepuff": {"_count": 1, "House": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "for": {"_count": 1, "himself": {"_count": 1}}, "how": {"_count": 1, "dare": {"_count": 1}}, "Head": {"_count": 1, "Boy": {"_count": 1}}}, "cream": {"_count": 14, "on": {"_count": 1, "top": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 1, "every": {"_count": 1}}, "Harry": {"_count": 1, "cleaned": {"_count": 1}}, "and": {"_count": 5, "sugared": {"_count": 2}, "crossed": {"_count": 1}, "really": {"_count": 1}, "by": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "choked": {"_count": 1, "and": {"_count": 1}}, "cakes": {"_count": 1, "and": {"_count": 1}}, "cake": {"_count": 1, "": {"_count": 1}}}, "finish": {"_count": 70, "the": {"_count": 12, "first": {"_count": 1}, "games": {"_count": 1}, "potion": {"_count": 1}, "bowtruckle": {"_count": 1}, "essay": {"_count": 1}, "game": {"_count": 1}, "sentence": {"_count": 1}, "shopping": {"_count": 1}, "work": {"_count": 1}, "lift": {"_count": 1}, "watch": {"_count": 2}}, "me": {"_count": 4, "off": {"_count": 3}, "": {"_count": 1}}, "your": {"_count": 2, "one": {"_count": 1}, "conversation": {"_count": 1}}, "it": {"_count": 9, "I": {"_count": 1}, "": {"_count": 4}, "now": {"_count": 1}, "the": {"_count": 1}, "off": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "these": {"_count": 1, "people": {"_count": 1}}, "Salazar": {"_count": 1, "Slytherins": {"_count": 1}}, "cleaning": {"_count": 1, "Mr": {"_count": 1}}, "this": {"_count": 3, "essay": {"_count": 1}, "now": {"_count": 1}, "jinx": {"_count": 1}}, "him": {"_count": 5, "off": {"_count": 3}, "he": {"_count": 1}, "Bellatrix": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "his": {"_count": 4, "chocolate": {"_count": 1}, "essay": {"_count": 1}, "Transfiguration": {"_count": 1}, "conclusion": {"_count": 1}}, "our": {"_count": 1, "exams": {"_count": 1}}, "off": {"_count": 5, "Sirius": {"_count": 1}, "said": {"_count": 1}, "Voldemort": {"_count": 1}, "before": {"_count": 1}, "YouKnow": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Diggory": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 1, "sentence": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 1, "Bones": {"_count": 1}}, "giving": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 1, "sentence": {"_count": 1}}, "writing": {"_count": 1, "Harrys": {"_count": 1}}, "a": {"_count": 1, "viciously": {"_count": 1}}, "Potter": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 2, "all": {"_count": 1}, "then": {"_count": 1}}, "my": {"_count": 1, "education": {"_count": 1}}, "YouKnowWho": {"_count": 1, "and": {"_count": 1}}, "bottom": {"_count": 1, "of": {"_count": 1}}}, "felt": {"_count": 889, "afterward": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 68, "warmth": {"_count": 1}, "blood": {"_count": 2}, "air": {"_count": 1}, "Sorcerers": {"_count": 1}, "bridge": {"_count": 1}, "fear": {"_count": 1}, "birds": {"_count": 1}, "bird": {"_count": 1}, "beginnings": {"_count": 1}, "shrunken": {"_count": 1}, "cold": {"_count": 2}, "last": {"_count": 1}, "same": {"_count": 2}, "hair": {"_count": 1}, "empty": {"_count": 1}, "heat": {"_count": 2}, "color": {"_count": 1}, "excitement": {"_count": 1}, "skin": {"_count": 1}, "Ministry": {"_count": 1}, "jerk": {"_count": 1}, "ground": {"_count": 3}, "Dark": {"_count": 2}, "Mark": {"_count": 1}, "weight": {"_count": 1}, "grin": {"_count": 1}, "occasional": {"_count": 1}, "searing": {"_count": 1}, "Snitch": {"_count": 1}, "familiar": {"_count": 4}, "others": {"_count": 1}, "floor": {"_count": 1}, "tip": {"_count": 1}, "creature": {"_count": 1}, "whitehot": {"_count": 1}, "places": {"_count": 1}, "cloak": {"_count": 1}, "atmosphere": {"_count": 1}, "crystal": {"_count": 1}, "sidecar": {"_count": 2}, "bike": {"_count": 1}, "rage": {"_count": 1}, "elf": {"_count": 1}, "change": {"_count": 1}, "leather": {"_count": 1}, "Horcrux": {"_count": 1}, "wand": {"_count": 1}, "ropes": {"_count": 1}, "night": {"_count": 1}, "unnatural": {"_count": 1}, "great": {"_count": 1}, "ghostly": {"_count": 1}, "thing": {"_count": 1}, "force": {"_count": 1}, "hand": {"_count": 1}, "eyes": {"_count": 1}, "most": {"_count": 1}}, "quite": {"_count": 2, "sure": {"_count": 1}, "isolated": {"_count": 1}}, "as": {"_count": 97, "though": {"_count": 87}, "if": {"_count": 2}, "separate": {"_count": 1}, "he": {"_count": 4}, "his": {"_count": 1}, "distant": {"_count": 1}, "they": {"_count": 1}}, "himself": {"_count": 25, "go": {"_count": 1}, "turning": {"_count": 1}, "falling": {"_count": 1}, "going": {"_count": 2}, "rocking": {"_count": 1}, "almost": {"_count": 1}, "blushing": {"_count": 1}, "fall": {"_count": 2}, "slowing": {"_count": 1}, "being": {"_count": 2}, "sink": {"_count": 1}, "rising": {"_count": 2}, "slam": {"_count": 1}, "becoming": {"_count": 1}, "positively": {"_count": 1}, "slipping": {"_count": 1}, "flying": {"_count": 2}, "to": {"_count": 1}, "glide": {"_count": 1}, "lowered": {"_count": 1}}, "strangely": {"_count": 5, "as": {"_count": 1}, "lopsided": {"_count": 1}, "unreal": {"_count": 1}, "heavy": {"_count": 1}, "diminished": {"_count": 1}}, "a": {"_count": 101, "sudden": {"_count": 4}, "great": {"_count": 9}, "bit": {"_count": 5}, "hand": {"_count": 3}, "hot": {"_count": 2}, "tugging": {"_count": 1}, "searing": {"_count": 2}, "bucketful": {"_count": 1}, "heavy": {"_count": 1}, "lurch": {"_count": 1}, "cold": {"_count": 1}, "slight": {"_count": 4}, "nasty": {"_count": 1}, "huge": {"_count": 1}, "spasm": {"_count": 1}, "second": {"_count": 1}, "floating": {"_count": 1}, "ripple": {"_count": 1}, "piercing": {"_count": 1}, "rush": {"_count": 5}, "jerk": {"_count": 1}, "cup": {"_count": 1}, "chill": {"_count": 1}, "dull": {"_count": 1}, "horrible": {"_count": 5}, "creeping": {"_count": 1}, "certain": {"_count": 3}, "curious": {"_count": 1}, "powerful": {"_count": 2}, "small": {"_count": 1}, "burning": {"_count": 2}, "little": {"_count": 3}, "sharp": {"_count": 1}, "thrill": {"_count": 2}, "surge": {"_count": 2}, "hard": {"_count": 1}, "kind": {"_count": 4}, "strong": {"_count": 1}, "soft": {"_count": 1}, "very": {"_count": 1}, "savage": {"_count": 1}, "twinge": {"_count": 1}, "fleeting": {"_count": 1}, "sinking": {"_count": 1}, "strange": {"_count": 1}, "swooping": {"_count": 1}, "stiff": {"_count": 1}, "whitehot": {"_count": 1}, "mixture": {"_count": 2}, "stab": {"_count": 1}, "fury": {"_count": 1}, "sickening": {"_count": 1}, "mounting": {"_count": 1}, "violent": {"_count": 1}, "corrosive": {"_count": 1}, "leap": {"_count": 1}, "sick": {"_count": 1}, "flutter": {"_count": 1}, "terrible": {"_count": 1}}, "because": {"_count": 1, "Crabbe": {"_count": 1}}, "shed": {"_count": 1, "had": {"_count": 1}}, "particularly": {"_count": 1, "hungry": {"_count": 1}}, "he": {"_count": 17, "was": {"_count": 5}, "could": {"_count": 3}, "had": {"_count": 5}, "would": {"_count": 2}, "might": {"_count": 1}, "did": {"_count": 1}}, "it": {"_count": 29, "": {"_count": 5}, "loosening": {"_count": 1}, "might": {"_count": 1}, "ruffle": {"_count": 1}, "would": {"_count": 2}, "vibrating": {"_count": 2}, "shudder": {"_count": 1}, "heal": {"_count": 1}, "pass": {"_count": 1}, "was": {"_count": 2}, "must": {"_count": 1}, "he": {"_count": 1}, "himself": {"_count": 1}, "gingerly": {"_count": 1}, "best": {"_count": 1}, "drag": {"_count": 1}, "had": {"_count": 1}, "made": {"_count": 1}, "slide": {"_count": 1}, "could": {"_count": 1}, "yet": {"_count": 1}, "when": {"_count": 1}}, "more": {"_count": 7, "like": {"_count": 1}, "or": {"_count": 1}, "warmly": {"_count": 1}, "confident": {"_count": 1}, "trapped": {"_count": 1}, "in": {"_count": 1}, "alive": {"_count": 1}}, "restless": {"_count": 1, "": {"_count": 1}}, "terrible": {"_count": 1, "": {"_count": 1}}, "braver": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "anything": {"_count": 3, "like": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "very": {"_count": 12, "strange": {"_count": 2}, "well": {"_count": 1}, "full": {"_count": 1}, "sick": {"_count": 2}, "groggy": {"_count": 1}, "conscious": {"_count": 1}, "much": {"_count": 1}, "odd": {"_count": 1}, "uneasy": {"_count": 1}, "hot": {"_count": 1}}, "too": {"_count": 1, "full": {"_count": 1}}, "wideawake": {"_count": 2, "": {"_count": 1}, "wide": {"_count": 1}}, "that": {"_count": 27, "this": {"_count": 1}, "would": {"_count": 1}, "Fred": {"_count": 1}, "Harry": {"_count": 1}, "it": {"_count": 4}, "his": {"_count": 1}, "Hermione": {"_count": 1}, "Davies": {"_count": 1}, "if": {"_count": 2}, "to": {"_count": 1}, "he": {"_count": 3}, "Dumbledore": {"_count": 2}, "way": {"_count": 1}, "there": {"_count": 1}, "nothing": {"_count": 1}, "stealing": {"_count": 1}, "MadEye": {"_count": 1}, "the": {"_count": 1}, "Dobby": {"_count": 1}, "nobody": {"_count": 1}}, "only": {"_count": 1, "air": {"_count": 1}}, "in": {"_count": 10, "the": {"_count": 3}, "all": {"_count": 1}, "his": {"_count": 5}, "my": {"_count": 1}}, "sorry": {"_count": 4, "for": {"_count": 4}}, "so": {"_count": 8, "ashamed": {"_count": 1}, "lonely": {"_count": 1}, "sorry": {"_count": 1}, "angry": {"_count": 2}, "miserable": {"_count": 1}, "consumed": {"_count": 1}, "terribly": {"_count": 1}}, "they": {"_count": 2, "deserved": {"_count": 1}, "were": {"_count": 1}}, "before": {"_count": 3, "pierced": {"_count": 1}, "the": {"_count": 1}, "excited": {"_count": 1}}, "around": {"_count": 2, "his": {"_count": 1}, "for": {"_count": 1}}, "like": {"_count": 57, "doing": {"_count": 3}, "a": {"_count": 15}, "the": {"_count": 7}, "being": {"_count": 2}, "drowning": {"_count": 1}, "an": {"_count": 3}, "water": {"_count": 1}, "staying": {"_count": 1}, "lead": {"_count": 2}, "going": {"_count": 1}, "sleeping": {"_count": 1}, "much": {"_count": 1}, "every": {"_count": 1}, "nothing": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 3}, "but": {"_count": 1}, "I": {"_count": 1}, "one": {"_count": 1}, "joining": {"_count": 1}, "hours": {"_count": 2}, "too": {"_count": 1}, "": {"_count": 1}, "asking": {"_count": 1}, "cushions": {"_count": 1}, "frozen": {"_count": 1}, "home": {"_count": 1}, "ghosts": {"_count": 1}}, "something": {"_count": 9, "heavy": {"_count": 1}, "long": {"_count": 2}, "whitehot": {"_count": 1}, "brush": {"_count": 2}, "I": {"_count": 1}, "streak": {"_count": 1}, "the": {"_count": 1}}, "Quirrells": {"_count": 2, "hand": {"_count": 1}, "arm": {"_count": 1}}, "nearly": {"_count": 1, "back": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "his": {"_count": 54, "stomach": {"_count": 4}, "seat": {"_count": 1}, "arm": {"_count": 1}, "fingers": {"_count": 2}, "anger": {"_count": 1}, "body": {"_count": 1}, "feet": {"_count": 5}, "way": {"_count": 1}, "own": {"_count": 1}, "legs": {"_count": 1}, "heart": {"_count": 6}, "hair": {"_count": 2}, "knees": {"_count": 1}, "jaw": {"_count": 2}, "face": {"_count": 4}, "foot": {"_count": 1}, "head": {"_count": 1}, "spine": {"_count": 1}, "wand": {"_count": 5}, "spirits": {"_count": 1}, "concentration": {"_count": 1}, "temper": {"_count": 1}, "hand": {"_count": 1}, "eyes": {"_count": 1}, "throat": {"_count": 1}, "nose": {"_count": 1}, "Invisibility": {"_count": 1}, "respect": {"_count": 1}, "hands": {"_count": 1}, "broom": {"_count": 1}, "injured": {"_count": 1}, "scar": {"_count": 1}}, "wide": {"_count": 2, "awake": {"_count": 2}}, "things": {"_count": 1, "were": {"_count": 1}}, "dreadful": {"_count": 1, "far": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "even": {"_count": 3, "worse": {"_count": 1}, "angrier": {"_count": 1}, "more": {"_count": 1}}, "perfectly": {"_count": 2, "confident": {"_count": 1}, "normal": {"_count": 1}}, "extremely": {"_count": 3, "sick": {"_count": 1}, "foolish": {"_count": 1}, "hungry": {"_count": 1}}, "wonderful": {"_count": 2, "to": {"_count": 2}}, "theyd": {"_count": 1, "got": {"_count": 1}}, "for": {"_count": 5, "himself": {"_count": 1}, "the": {"_count": 3}, "that": {"_count": 1}}, "heavy": {"_count": 1, "drops": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "hed": {"_count": 1, "rather": {"_count": 1}}, "to": {"_count": 4, "Harry": {"_count": 1}, "be": {"_count": 2}, "transform": {"_count": 1}}, "Ron": {"_count": 4, "slide": {"_count": 1}, "recoil": {"_count": 1}, "sit": {"_count": 1}, "stir": {"_count": 1}}, "Fawkes": {"_count": 1, "wing": {"_count": 1}}, "drowsy": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 2, "like": {"_count": 1}, "one": {"_count": 1}}, "no": {"_count": 6, "desire": {"_count": 1}, "sense": {"_count": 1}, "true": {"_count": 1}, "affection": {"_count": 1}, "fear": {"_count": 1}, "curiosity": {"_count": 1}}, "relieved": {"_count": 2, "he": {"_count": 2}}, "her": {"_count": 2, "pass": {"_count": 1}, "turn": {"_count": 1}}, "cold": {"_count": 4, "sweat": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}}, "weird": {"_count": 1, "said": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "weak": {"_count": 1, "and": {"_count": 1}}, "warmth": {"_count": 1, "spread": {"_count": 1}}, "better": {"_count": 1, "since": {"_count": 1}}, "really": {"_count": 1, "calm": {"_count": 1}}, "sick": {"_count": 6, "and": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 3}}, "when": {"_count": 4, "hed": {"_count": 1}, "he": {"_count": 2}, "a": {"_count": 1}}, "drained": {"_count": 3, "and": {"_count": 1}, "exhausted": {"_count": 1}, "empty": {"_count": 1}}, "angry": {"_count": 5, "with": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 2}, "at": {"_count": 1}}, "since": {"_count": 1, "his": {"_count": 1}}, "two": {"_count": 2, "large": {"_count": 2}}, "its": {"_count": 3, "hot": {"_count": 1}, "point": {"_count": 1}, "menace": {"_count": 1}}, "at": {"_count": 8, "least": {"_count": 1}, "hearing": {"_count": 1}, "Hagrids": {"_count": 1}, "admitting": {"_count": 1}, "being": {"_count": 1}, "the": {"_count": 2}, "home": {"_count": 1}}, "guilty": {"_count": 4, "about": {"_count": 2}, "that": {"_count": 1}, "on": {"_count": 1}}, "dazed": {"_count": 2, "": {"_count": 2}}, "Hermione": {"_count": 3, "collapse": {"_count": 1}, "s": {"_count": 1}, "take": {"_count": 1}}, "solid": {"_count": 1, "ground": {"_count": 1}}, "sure": {"_count": 11, "for": {"_count": 1}, "that": {"_count": 6}, "he": {"_count": 2}, "she": {"_count": 1}, "Voldemort": {"_count": 1}}, "suddenly": {"_count": 3, "as": {"_count": 1}, "warm": {"_count": 1}, "light": {"_count": 1}}, "almost": {"_count": 7, "shameful": {"_count": 1}, "as": {"_count": 5}, "feverish": {"_count": 1}}, "sympathy": {"_count": 1, "rather": {"_count": 1}}, "pleasantly": {"_count": 2, "like": {"_count": 1}, "cool": {"_count": 1}}, "was": {"_count": 1, "considerable": {"_count": 1}}, "their": {"_count": 2, "raw": {"_count": 1}, "concentrated": {"_count": 1}}, "numb": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "them": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "wonderfully": {"_count": 1, "free": {"_count": 1}}, "oddly": {"_count": 3, "separate": {"_count": 1}, "stiff": {"_count": 1}, "disconnected": {"_count": 1}}, "much": {"_count": 4, "more": {"_count": 2}, "calmer": {"_count": 1}, "longer": {"_count": 1}}, "lighter": {"_count": 1, "than": {"_count": 1}}, "while": {"_count": 1, "dodging": {"_count": 1}}, "facing": {"_count": 1, "that": {"_count": 1}}, "how": {"_count": 2, "much": {"_count": 1}, "eerie": {"_count": 1}}, "about": {"_count": 5, "this": {"_count": 1}, "Cho": {"_count": 1}, "it": {"_count": 1}, "Hogwarts": {"_count": 1}, "phoenix": {"_count": 1}}, "unpleasantly": {"_count": 1, "slimy": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 1}, "zooming": {"_count": 1}}, "waterlogged": {"_count": 1, "he": {"_count": 1}}, "both": {"_count": 2, "stupid": {"_count": 1}, "raw": {"_count": 1}}, "this": {"_count": 3, "way": {"_count": 1}, "alive": {"_count": 1}, "save": {"_count": 1}}, "clammy": {"_count": 1, "coldness": {"_count": 1}}, "temporarily": {"_count": 1, "limp": {"_count": 1}}, "Wormtails": {"_count": 1, "anguished": {"_count": 1}}, "fingers": {"_count": 1, "trying": {"_count": 1}}, "clearer": {"_count": 1, "his": {"_count": 1}}, "me": {"_count": 2, "lying": {"_count": 1}, "Mark": {"_count": 1}}, "an": {"_count": 4, "inexpressible": {"_count": 1}, "odd": {"_count": 2}, "awful": {"_count": 1}}, "after": {"_count": 2, "Dumbledore": {"_count": 1}, "Ron": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "flecks": {"_count": 1, "of": {"_count": 1}}, "worse": {"_count": 1, "as": {"_count": 1}}, "odd": {"_count": 1, "to": {"_count": 1}}, "vaguely": {"_count": 2, "grateful": {"_count": 1}, "as": {"_count": 1}}, "winded": {"_count": 1, "as": {"_count": 1}}, "sickened": {"_count": 3, "with": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}}, "older": {"_count": 1, "than": {"_count": 1}}, "utterly": {"_count": 1, "bewildered": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 2}}, "shaken": {"_count": 1, "by": {"_count": 1}}, "hot": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "dimly": {"_count": 1, "that": {"_count": 1}}, "all": {"_count": 1, "her": {"_count": 1}}, "happier": {"_count": 1, "for": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "now": {"_count": 1, "was": {"_count": 1}}, "surprised": {"_count": 1, "to": {"_count": 1}}, "optimistic": {"_count": 2, "about": {"_count": 1}, "certain": {"_count": 1}}, "heartened": {"_count": 1, "only": {"_count": 1}}, "highly": {"_count": 1, "resentful": {"_count": 1}}, "thoroughly": {"_count": 2, "miserable": {"_count": 1}, "dispirited": {"_count": 1}}, "heartless": {"_count": 1, "saying": {"_count": 1}}, "rather": {"_count": 4, "worried": {"_count": 1}, "than": {"_count": 1}, "differently": {"_count": 1}, "jealous": {"_count": 1}}, "smooth": {"_count": 1, "powerful": {"_count": 1}}, "slightly": {"_count": 7, "irritated": {"_count": 1}, "sick": {"_count": 1}, "nervous": {"_count": 1}, "abandoned": {"_count": 1}, "resentful": {"_count": 1}, "uncomfortable": {"_count": 1}, "exasperated": {"_count": 1}}, "dirty": {"_count": 1, "contaminated": {"_count": 1}}, "shivery": {"_count": 1, "his": {"_count": 1}}, "lurches": {"_count": 1, "of": {"_count": 1}}, "soothing": {"_count": 1, "against": {"_count": 1}}, "feverish": {"_count": 1, "": {"_count": 1}}, "shoot": {"_count": 1, "past": {"_count": 1}}, "again": {"_count": 3, "that": {"_count": 2}, "the": {"_count": 1}}, "exhausted": {"_count": 1, "": {"_count": 1}}, "torpid": {"_count": 1, "and": {"_count": 1}}, "pain": {"_count": 1, "thus": {"_count": 1}}, "several": {"_count": 1, "hairs": {"_count": 1}}, "horribly": {"_count": 1, "powerless": {"_count": 1}}, "stiff": {"_count": 1, "and": {"_count": 1}}, "lightheaded": {"_count": 3, "": {"_count": 1}, "with": {"_count": 2}}, "scared": {"_count": 1, "to": {"_count": 1}}, "Voldemort": {"_count": 3, "awake": {"_count": 1}, "before": {"_count": 1}, "s": {"_count": 1}}, "toward": {"_count": 1, "Malfoy": {"_count": 1}}, "isolated": {"_count": 1, "from": {"_count": 1}}, "distinctly": {"_count": 1, "awkward": {"_count": 1}}, "Dumbledores": {"_count": 1, "arm": {"_count": 1}}, "stupid": {"_count": 1, "for": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "satisfying": {"_count": 1, "and": {"_count": 1}}, "elated": {"_count": 1, "something": {"_count": 1}}, "safe": {"_count": 1, "enough": {"_count": 1}}, "bolstered": {"_count": 1, "comforted": {"_count": 1}}, "however": {"_count": 1, "that": {"_count": 1}}, "compelled": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 2, "ought": {"_count": 1}, "am": {"_count": 1}}, "disoriented": {"_count": 1, "dizzy": {"_count": 1}}, "lucky": {"_count": 1, "": {"_count": 1}}, "fully": {"_count": 2, "justified": {"_count": 1}, "connected": {"_count": 1}}, "pity": {"_count": 1, "for": {"_count": 1}}, "goose": {"_count": 2, "bumps": {"_count": 2}}, "anger": {"_count": 3, "bubbling": {"_count": 1}, "hes": {"_count": 1}, "I": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "frustrated": {"_count": 1, "beyond": {"_count": 1}}, "strange": {"_count": 2, "about": {"_count": 1}, "impertinent": {"_count": 1}}, "stunned": {"_count": 1, "it": {"_count": 1}}, "unbelievably": {"_count": 1, "cheerful": {"_count": 1}}, "arms": {"_count": 1, "enclose": {"_count": 1}}, "Fenrir": {"_count": 1, "collapse": {"_count": 1}}, "Fangs": {"_count": 1, "reassuringly": {"_count": 1}}, "already": {"_count": 1, "Harry": {"_count": 1}}, "Ginny": {"_count": 1, "move": {"_count": 1}}, "and": {"_count": 1, "Ginny": {"_count": 1}}, "cautiously": {"_count": 1, "around": {"_count": 1}}, "ourselves": {"_count": 1, "to": {"_count": 1}}, "most": {"_count": 1, "strange": {"_count": 1}}, "incredibly": {"_count": 1, "fond": {"_count": 1}}, "ashamed": {"_count": 2, "of": {"_count": 2}}, "irrationally": {"_count": 1, "angry": {"_count": 1}}, "beleaguered": {"_count": 1, "and": {"_count": 1}}, "perplexed": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "reassured": {"_count": 1}}, "contaminated": {"_count": 1, "tainted": {"_count": 1}}, "badgered": {"_count": 1, "confused": {"_count": 1}}, "different": {"_count": 1, "now": {"_count": 1}}, "discouraged": {"_count": 1, "and": {"_count": 1}}, "hugely": {"_count": 1, "relieved": {"_count": 1}}, "flattened": {"_count": 1, "he": {"_count": 1}}, "hungry": {"_count": 1, "now": {"_count": 1}}, "free": {"_count": 1, "and": {"_count": 1}}, "cheerful": {"_count": 1, "even": {"_count": 1}}, "hollow": {"_count": 1, "inadequate": {"_count": 1}}, "exactly": {"_count": 1, "as": {"_count": 1}}, "excited": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 2, "get": {"_count": 1}, "striding": {"_count": 1}}, "empty": {"_count": 1, "stunned": {"_count": 1}}, "intrusively": {"_count": 1, "unfamiliar": {"_count": 1}}, "armed": {"_count": 1, "in": {"_count": 1}}, "joyous": {"_count": 1, "as": {"_count": 1}}, "unrecognizable": {"_count": 1, "beneath": {"_count": 1}}, "Voldemorts": {"_count": 2, "fury": {"_count": 1}, "impatience": {"_count": 1}}, "gentle": {"_count": 1, "pats": {"_count": 1}}, "friendlier": {"_count": 1, "in": {"_count": 1}}, "closer": {"_count": 1, "this": {"_count": 1}}, "amused": {"_count": 1, "derision": {"_count": 1}}, "irritated": {"_count": 1, "at": {"_count": 1}}, "Bills": {"_count": 1, "eyes": {"_count": 1}}, "responsible": {"_count": 1, "It": {"_count": 1}}, "overwhelmed": {"_count": 2, "astonished": {"_count": 1}, "he": {"_count": 1}}, "uneasy": {"_count": 1, "": {"_count": 1}}, "Griphooks": {"_count": 1, "clasped": {"_count": 1}}, "sluggish": {"_count": 1, "with": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "Pursuing": {"_count": 1, "another": {"_count": 1}}, "ghostly": {"_count": 1, "striding": {"_count": 1}}, "another": {"_count": 1, "dull": {"_count": 1}}}, "afterward": {"_count": 31, "that": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 3, "Ron": {"_count": 1}, "well": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 13}, "?": {"_count": 2}}, "he": {"_count": 3, "showed": {"_count": 1}, "had": {"_count": 2}}, "and": {"_count": 3, "didnt": {"_count": 1}, "set": {"_count": 1}, "I": {"_count": 1}}, "before": {"_count": 1, "she": {"_count": 1}}, "in": {"_count": 1, "Azkaban": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "or": {"_count": 1, "accompany": {"_count": 1}}, "its": {"_count": 1, "bad": {"_count": 1}}, "so": {"_count": 1, "Harry": {"_count": 1}}}, "lunch": {"_count": 77, "they": {"_count": 2, "went": {"_count": 1}, "found": {"_count": 1}}, "we": {"_count": 1, "should": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 22}, "!": {"_count": 3}}, "bell": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "Rons": {"_count": 1}}, "and": {"_count": 2, "went": {"_count": 1}, "in": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "Sunday": {"_count": 1}}, "when": {"_count": 1, "someone": {"_count": 1}}, "Im": {"_count": 1, "starving": {"_count": 1}}, "all": {"_count": 1, "grinning": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "happily": {"_count": 1, "anticipating": {"_count": 1}}, "though": {"_count": 2, "nothing": {"_count": 1}, "": {"_count": 1}}, "trolley": {"_count": 4, "came": {"_count": 1}, "arrived": {"_count": 1}, "would": {"_count": 1}, "were": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "with": {"_count": 4, "Hagrid": {"_count": 1}, "the": {"_count": 2}, "you": {"_count": 1}}, "but": {"_count": 1, "headed": {"_count": 1}}, "which": {"_count": 1, "included": {"_count": 1}}, "table": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 4, "rest": {"_count": 1}, "wind": {"_count": 1}, "Weasleys": {"_count": 1}, "trolley": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 1, "hardly": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "hour": {"_count": 4, "sitting": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "during": {"_count": 1, "which": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "to": {"_count": 1, "tell": {"_count": 1}}, "shivering": {"_count": 1, "slightly": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "if": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 1, "compartment": {"_count": 1}}, "everyone": {"_count": 1, "except": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "reptile": {"_count": 3, "house": {"_count": 3, "": {"_count": 1}, "screamed": {"_count": 1}, "was": {"_count": 1}}}, "cool": {"_count": 74, "and": {"_count": 8, "dark": {"_count": 2}, "zap": {"_count": 1}, "very": {"_count": 1}, "breezy": {"_count": 2}, "unconcerned": {"_count": 1}, "clear": {"_count": 1}}, "as": {"_count": 2, "usual": {"_count": 1}, "you": {"_count": 1}}, "logic": {"_count": 1, "in": {"_count": 1}}, "morning": {"_count": 1, "air": {"_count": 1}}, "entrance": {"_count": 1, "hall": {"_count": 1}}, "night": {"_count": 2, "air": {"_count": 2}}, "day": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "to": {"_count": 3, "enter": {"_count": 1}, "be": {"_count": 1}, "look": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 4, "George": {"_count": 1}, "Lee": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "head": {"_count": 2, "": {"_count": 1}, "make": {"_count": 1}}, "bit": {"_count": 2, "of": {"_count": 2}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "dimly": {"_count": 1, "lit": {"_count": 1}}, "houses": {"_count": 1, "windows": {"_count": 1}}, "this": {"_count": 1, "summer": {"_count": 1}}, "female": {"_count": 8, "voice": {"_count": 8}}, "gray": {"_count": 1, "eyes": {"_count": 1}}, "people": {"_count": 1, "laughing": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "water": {"_count": 1, "emerging": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "glass": {"_count": 1, "of": {"_count": 1}}, "dark": {"_count": 1, "corridor": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}, "shimmering": {"_count": 1, "light": {"_count": 1}}, "shining": {"_count": 1, "surface": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 2, "said": {"_count": 1}, "Atrium": {"_count": 1}}, "misty": {"_count": 2, "darkness": {"_count": 1}, "drizzle": {"_count": 1}}, "youre": {"_count": 1, "my": {"_count": 1}}, "shadows": {"_count": 1, "and": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "will": {"_count": 1, "it": {"_count": 1}}, "darkness": {"_count": 1, "breathing": {"_count": 1}}, "trees": {"_count": 1, "": {"_count": 1}}, "blue": {"_count": 1, "light": {"_count": 1}}, "clear": {"_count": 1, "blue": {"_count": 1}}, "second": {"_count": 1, "voice": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}, "outside": {"_count": 1, "air": {"_count": 1}}, "breeze": {"_count": 1, "was": {"_count": 1}}, "green": {"_count": 1, "shade": {"_count": 1}}, "air": {"_count": 1, "on": {"_count": 1}}}, "windows": {"_count": 179, "all": {"_count": 1, "along": {"_count": 1}}, "": {"_count": 45, ".": {"_count": 44}, "!": {"_count": 1}}, "stacked": {"_count": 1, "with": {"_count": 1}}, "sparkling": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "defrosting": {"_count": 1, "broomsticks": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "glowing": {"_count": 1, "red": {"_count": 1}}, "rattle": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 11, "Hagrids": {"_count": 1}, "Quality": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 5}, "a": {"_count": 1}, "Gryffindor": {"_count": 1}, "their": {"_count": 1}}, "washed": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 17, "walls": {"_count": 1}, "the": {"_count": 5}, "dank": {"_count": 1}, "again": {"_count": 1}, "door": {"_count": 1}, "no": {"_count": 1}, "spattered": {"_count": 1}, "messing": {"_count": 1}, "a": {"_count": 1}, "doors": {"_count": 1}, "was": {"_count": 1}, "Neville": {"_count": 1}, "he": {"_count": 1}}, "GILDEROY": {"_count": 1, "LOCKHART": {"_count": 1}}, "for": {"_count": 1, "days": {"_count": 1}}, "which": {"_count": 2, "were": {"_count": 2}}, "shimmering": {"_count": 1, "in": {"_count": 1}}, "striding": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 6, "the": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 3}, "Bill": {"_count": 1}}, "were": {"_count": 14, "open": {"_count": 1}, "now": {"_count": 1}, "all": {"_count": 2}, "covered": {"_count": 1}, "boarded": {"_count": 2}, "so": {"_count": 1}, "extinguished": {"_count": 1}, "dark": {"_count": 1}, "rattling": {"_count": 1}, "sending": {"_count": 1}, "lit": {"_count": 1}, "glowing": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "flashing": {"_count": 1, "past": {"_count": 1}}, "boarded": {"_count": 2, "tiles": {"_count": 1}, "except": {"_count": 1}}, "on": {"_count": 2, "either": {"_count": 2}}, "made": {"_count": 2, "it": {"_count": 1}, "patches": {"_count": 1}}, "so": {"_count": 3, "steamy": {"_count": 1}, "that": {"_count": 2}}, "blurred": {"_count": 1, "and": {"_count": 1}}, "carrying": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "glass": {"_count": 1}}, "hit": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "where": {"_count": 1, "most": {"_count": 1}}, "but": {"_count": 2, "there": {"_count": 1}, "nobody": {"_count": 1}}, "a": {"_count": 2, "large": {"_count": 1}, "weak": {"_count": 1}}, "Harry": {"_count": 4, "saw": {"_count": 1}, "might": {"_count": 1}, "Ron": {"_count": 1}, "heard": {"_count": 1}}, "returning": {"_count": 1, "from": {"_count": 1}}, "merely": {"_count": 1, "torches": {"_count": 1}}, "thrown": {"_count": 1, "wide": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "the": {"_count": 1}}, "glimmering": {"_count": 1, "dully": {"_count": 1}}, "Magical": {"_count": 1, "Maintenance": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "down": {"_count": 1, "by": {"_count": 1}}, "dazzled": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "looking": {"_count": 1, "slightly": {"_count": 1}}, "became": {"_count": 2, "steadily": {"_count": 1}, "obscured": {"_count": 1}}, "growing": {"_count": 1, "whiter": {"_count": 1}}, "grew": {"_count": 1, "steadily": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "flooded": {"_count": 1, "the": {"_count": 1}}, "temporarily": {"_count": 1, "blocking": {"_count": 1}}, "firmly": {"_count": 1, "closed": {"_count": 1}}, "drifted": {"_count": 1, "over": {"_count": 1}}, "dull": {"_count": 1, "and": {"_count": 1}}, "until": {"_count": 1, "she": {"_count": 1}}, "was": {"_count": 2, "as": {"_count": 1}, "thrown": {"_count": 1}}, "scattering": {"_count": 1, "everyone": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "curtained": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 3, "passed": {"_count": 1}, "could": {"_count": 1}, "saw": {"_count": 1}}, "over": {"_count": 1, "shops": {"_count": 1}}, "burned": {"_count": 1, "scarlet": {"_count": 1}}, "towered": {"_count": 1, "ghostly": {"_count": 1}}, "before": {"_count": 1, "there": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "within": {"_count": 1, "blinked": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Riddles": {"_count": 1, "eyes": {"_count": 1}}, "always": {"_count": 1, "captioned": {"_count": 1}}, "punctuated": {"_count": 1, "the": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "nearest": {"_count": 1, "them": {"_count": 1}}}, "Behind": {"_count": 38, "the": {"_count": 10, "glass": {"_count": 1}, "wild": {"_count": 1}, "white": {"_count": 1}, "wall": {"_count": 1}, "Slytherin": {"_count": 1}, "teachers": {"_count": 1}, "door": {"_count": 1}, "dais": {"_count": 1}, "church": {"_count": 1}, "dirty": {"_count": 1}}, "him": {"_count": 14, "stood": {"_count": 2}, "Harry": {"_count": 1}, "walked": {"_count": 1}, "he": {"_count": 3}, "Buckbeak": {"_count": 1}, "a": {"_count": 1}, "lurked": {"_count": 1}, "the": {"_count": 1}, "came": {"_count": 1}, "Ron": {"_count": 1}, "whether": {"_count": 1}}, "her": {"_count": 5, "they": {"_count": 1}, "back": {"_count": 1}, "he": {"_count": 1}, "Narcissa": {"_count": 1}, "stood": {"_count": 1}}, "them": {"_count": 2, "came": {"_count": 1}, "Umbridge": {"_count": 1}}, "their": {"_count": 1, "headmaster": {"_count": 1}}, "Snape": {"_count": 1, "however": {"_count": 1}}, "Harry": {"_count": 2, "Fawkes": {"_count": 1}, "the": {"_count": 1}}, "MadEyes": {"_count": 1, "eye": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}}, "glass": {"_count": 215, "all": {"_count": 1, "sorts": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "smartly": {"_count": 1, "with": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 31, ".": {"_count": 31}}, "the": {"_count": 1, "next": {"_count": 1}}, "front": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 5, "kept": {"_count": 1}, "pressed": {"_count": 1}, "felt": {"_count": 1}, "halfrose": {"_count": 1}, "smashed": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "crystal": {"_count": 1}}, "saying": {"_count": 1, "The": {"_count": 1}}, "jars": {"_count": 3, "all": {"_count": 1}, "in": {"_count": 2}}, "ball": {"_count": 8, "the": {"_count": 1}, "high": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}, "down": {"_count": 1}, "expecting": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 2}}, "without": {"_count": 2, "Quirrell": {"_count": 1}, "you": {"_count": 1}}, "case": {"_count": 8, "nearby": {"_count": 1}, "next": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "gleaming": {"_count": 1}, "where": {"_count": 1}, "and": {"_count": 1}}, "eye": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "and": {"_count": 17, "one": {"_count": 1}, "Ron": {"_count": 1}, "over": {"_count": 1}, "filled": {"_count": 1}, "stood": {"_count": 1}, "vanished": {"_count": 1}, "adding": {"_count": 1}, "subjecting": {"_count": 1}, "splintered": {"_count": 1}, "slide": {"_count": 1}, "rose": {"_count": 1}, "draining": {"_count": 1}, "china": {"_count": 1}, "drew": {"_count": 1}, "left": {"_count": 1}, "silver": {"_count": 1}, "his": {"_count": 1}}, "cases": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 19, "water": {"_count": 2}, "wine": {"_count": 4}, "firewhisky": {"_count": 2}, "the": {"_count": 1}, "it": {"_count": 1}, "mead": {"_count": 4}, "gin": {"_count": 1}, "pumpkin": {"_count": 1}, "eggnog": {"_count": 1}, "clear": {"_count": 1}, "potion": {"_count": 1}}, "tumblers": {"_count": 1, "stood": {"_count": 1}}, "moving": {"_count": 1, "in": {"_count": 1}}, "spinning": {"_count": 2, "top": {"_count": 2}}, "at": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "flew": {"_count": 1, "in": {"_count": 1}}, "back": {"_count": 1, "down": {"_count": 1}}, "that": {"_count": 2, "held": {"_count": 1}, "seemed": {"_count": 1}}, "tank": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "pulling": {"_count": 1, "faces": {"_count": 1}}, "box": {"_count": 1, "containing": {"_count": 1}}, "on": {"_count": 2, "wood": {"_count": 1}, "a": {"_count": 1}}, "carried": {"_count": 1, "it": {"_count": 1}}, "shattered": {"_count": 1, "": {"_count": 1}}, "shards": {"_count": 1, "flew": {"_count": 1}}, "jar": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}, "back": {"_count": 1}}, "in": {"_count": 7, "them": {"_count": 1}, "the": {"_count": 2}, "one": {"_count": 2}, "his": {"_count": 1}, "both": {"_count": 1}}, "Krum": {"_count": 1, "had": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}, "dome": {"_count": 1, "": {"_count": 1}}, "vial": {"_count": 1, "and": {"_count": 1}}, "bottle": {"_count": 3, "of": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}}, "door": {"_count": 1, "eight": {"_count": 1}}, "cabinets": {"_count": 1, "that": {"_count": 1}}, "covering": {"_count": 1, "them": {"_count": 1}}, "windows": {"_count": 3, "of": {"_count": 2}, "within": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "Wotcher": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "there": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "clumsily": {"_count": 1, "with": {"_count": 1}}, "frantically": {"_count": 1, "scuffling": {"_count": 1}}, "spheres": {"_count": 7, "": {"_count": 3}, "on": {"_count": 1}, "that": {"_count": 1}, "burst": {"_count": 1}, "began": {"_count": 1}}, "Malfoy": {"_count": 1, "had": {"_count": 1}}, "balls": {"_count": 2, "and": {"_count": 1}, "some": {"_count": 1}}, "to": {"_count": 4, "see": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 2}}, "orbs": {"_count": 2, "": {"_count": 1}, "there": {"_count": 1}}, "orb": {"_count": 1, "on": {"_count": 1}}, "sphere": {"_count": 2, "slipped": {"_count": 1}, "in": {"_count": 1}}, "upon": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "thundered": {"_count": 1, "down": {"_count": 1}}, "flying": {"_count": 1, "everywhere": {"_count": 1}}, "cabinet": {"_count": 1, "that": {"_count": 1}}, "For": {"_count": 1, "a": {"_count": 1}}, "apiece": {"_count": 1, "of": {"_count": 1}}, "window": {"_count": 1, "onto": {"_count": 1}}, "station": {"_count": 1, "ceiling": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "it": {"_count": 1, "skidded": {"_count": 1}}, "Hagrid": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 2, "marched": {"_count": 1}, "Harry": {"_count": 1}}, "rebounding": {"_count": 1, "onto": {"_count": 1}}, "drained": {"_count": 1, "it": {"_count": 1}}, "over": {"_count": 2, "to": {"_count": 2}}, "flask": {"_count": 1, "was": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "The": {"_count": 1, "ripples": {"_count": 1}}, "was": {"_count": 1, "full": {"_count": 1}}, "blindly": {"_count": 1, "back": {"_count": 1}}, "which": {"_count": 1, "clung": {"_count": 1}}, "ashtray": {"_count": 1, "out": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "surface": {"_count": 1, "rained": {"_count": 1}}, "phial": {"_count": 1, "on": {"_count": 1}}, "Amycus": {"_count": 1, "was": {"_count": 1}}, "long": {"_count": 1, "gone": {"_count": 1}}, "rained": {"_count": 1, "down": {"_count": 1}}, "roof": {"_count": 1, "glittered": {"_count": 1}}, "ceiling": {"_count": 1, "": {"_count": 1}}}, "sorts": {"_count": 33, "of": {"_count": 28, "lizards": {"_count": 1}, "things": {"_count": 8}, "rubbish": {"_count": 1}, "stuff": {"_count": 3}, "enchantments": {"_count": 1}, "antijinx": {"_count": 1}, "stories": {"_count": 1}, "letters": {"_count": 1}, "people": {"_count": 1}, "unlikely": {"_count": 1}, "weird": {"_count": 1}, "high": {"_count": 1}, "lies": {"_count": 1}, "bubble": {"_count": 1}, "societies": {"_count": 1}, "horrible": {"_count": 1}, "decisions": {"_count": 1}, "powers": {"_count": 1}, "protection": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "them": {"_count": 1, "Lee": {"_count": 1}}, "breathed": {"_count": 1, "Riddle": {"_count": 1}}, "about": {"_count": 1, "halfway": {"_count": 1}}}, "lizards": {"_count": 2, "and": {"_count": 1, "snakes": {"_count": 1}}, "scampered": {"_count": 1, "up": {"_count": 1}}}, "snakes": {"_count": 43, "were": {"_count": 2, "crawling": {"_count": 1}, "real": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 3}}, "was": {"_count": 1, "what": {"_count": 1}}, "doubled": {"_count": 1, "up": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "tail": {"_count": 3, "thrashed": {"_count": 1}, "whipped": {"_count": 1}, "which": {"_count": 1}}, "but": {"_count": 1, "suddenly": {"_count": 1}}, "has": {"_count": 1, "long": {"_count": 1}}, "as": {"_count": 1, "serpents": {"_count": 1}}, "with": {"_count": 2, "slits": {"_count": 1}, "him": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "point": {"_count": 1, "of": {"_count": 1}}, "both": {"_count": 1, "coiling": {"_count": 1}}, "own": {"_count": 1, "eyes": {"_count": 1}}, "fangs": {"_count": 2, "that": {"_count": 1}, "pierced": {"_count": 1}}, "venom": {"_count": 1, "dissolves": {"_count": 1}}, "got": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "head": {"_count": 2, "not": {"_count": 1}, "which": {"_count": 1}}, "eyes": {"_count": 1, "if": {"_count": 1}}, "mind": {"_count": 1, "because": {"_count": 1}}, "wrapping": {"_count": 1, "themselves": {"_count": 1}}, "I": {"_count": 1, "do": {"_count": 1}}, "the": {"_count": 1, "moment": {"_count": 1}}, "snout": {"_count": 1, "with": {"_count": 1}}, "emblazoned": {"_count": 1, "on": {"_count": 1}}, "not": {"_count": 1, "in": {"_count": 1}}, "cage": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "hiss": {"_count": 1, "": {"_count": 1}}, "body": {"_count": 1, "thudded": {"_count": 1}}, "face": {"_count": 1, "jeering": {"_count": 1}}}, "crawling": {"_count": 8, "and": {"_count": 1, "slithering": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "one": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "snarling": {"_count": 1, "beast": {"_count": 1}}}, "slithering": {"_count": 15, "over": {"_count": 3, "bits": {"_count": 1}, "dead": {"_count": 2}}, "out": {"_count": 2, "onto": {"_count": 1}, "of": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "sound": {"_count": 1, "made": {"_count": 1}}, "up": {"_count": 1, "from": {"_count": 1}}, "heavily": {"_count": 1, "across": {"_count": 1}}, "back": {"_count": 1, "beneath": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "their": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "bits": {"_count": 42, "of": {"_count": 37, "wood": {"_count": 1}, "old": {"_count": 1}, "fluff": {"_count": 1}, "chalk": {"_count": 3}, "advice": {"_count": 1}, "toast": {"_count": 1}, "Slytherins": {"_count": 1}, "meat": {"_count": 1}, "splintered": {"_count": 1}, "brick": {"_count": 1}, "paper": {"_count": 2}, "Yorkshire": {"_count": 1}, "parchment": {"_count": 3}, "filth": {"_count": 1}, "him": {"_count": 1}, "dreams": {"_count": 1}, "stuffing": {"_count": 1}, "Nosebleed": {"_count": 1}, "it": {"_count": 2}, "metal": {"_count": 1}, "Hagrid": {"_count": 1}, "cheese": {"_count": 1}, "animals": {"_count": 1}, "twig": {"_count": 2}, "magic": {"_count": 1}, "turkey": {"_count": 1}, "wall": {"_count": 1}, "glass": {"_count": 1}, "roast": {"_count": 1}, "railing": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "last": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Gideon": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}}, "wood": {"_count": 69, "and": {"_count": 11, "stone": {"_count": 1}, "Harry": {"_count": 1}, "twig": {"_count": 1}, "leaves": {"_count": 1}, "it": {"_count": 1}, "had": {"_count": 1}, "took": {"_count": 1}, "dog": {"_count": 1}, "paper": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "up": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 12, "!": {"_count": 1}, ".": {"_count": 11}}, "honestly": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "hit": {"_count": 1}}, "theyre": {"_count": 1, "using": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "for": {"_count": 2, "a": {"_count": 1}, "twenty": {"_count": 1}}, "following": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 2, "keeping": {"_count": 1}, "others": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "like": {"_count": 1, "some": {"_count": 1}}, "their": {"_count": 1, "progress": {"_count": 1}}, "expected": {"_count": 1, "reassurance": {"_count": 1}}, "by": {"_count": 1, "someone": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "roaring": {"_count": 1, "and": {"_count": 1}}, "against": {"_count": 1, "a": {"_count": 1}}, "nymphs": {"_count": 1, "oo": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "with": {"_count": 1}}, "is": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "lice": {"_count": 3, "ready": {"_count": 1}, "and": {"_count": 1}, "like": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "now": {"_count": 1, "raining": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "she": {"_count": 1, "called": {"_count": 1}}, "had": {"_count": 2, "not": {"_count": 1}, "splintered": {"_count": 1}}, "under": {"_count": 1, "which": {"_count": 1}}, "smoke": {"_count": 1, "from": {"_count": 1}}, "an": {"_count": 1, "eye": {"_count": 1}}, "paneled": {"_count": 1, "and": {"_count": 1}}, "remained": {"_count": 1, "deserted": {"_count": 1}}, "shavings": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "water": {"_count": 1}}, "it": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}}, "stone": {"_count": 308, "": {"_count": 19, ".": {"_count": 16}, "?": {"_count": 2}, "!": {"_count": 1}}, "steps": {"_count": 62, "onto": {"_count": 2}, "toward": {"_count": 1}, "and": {"_count": 7}, "Harry": {"_count": 1}, "into": {"_count": 14}, "to": {"_count": 3}, "which": {"_count": 1}, "": {"_count": 9}, "for": {"_count": 1}, "keeping": {"_count": 1}, "beyond": {"_count": 1}, "but": {"_count": 1}, "of": {"_count": 2}, "out": {"_count": 1}, "through": {"_count": 2}, "staring": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 2}, "leading": {"_count": 3}, "a": {"_count": 1}, "her": {"_count": 1}, "opposite": {"_count": 1}, "straining": {"_count": 1}, "his": {"_count": 1}, "without": {"_count": 1}, "on": {"_count": 1}, "trembled": {"_count": 1}}, "passageway": {"_count": 4, "lit": {"_count": 1}, "which": {"_count": 1}, "quite": {"_count": 1}, "beyond": {"_count": 1}}, "walls": {"_count": 9, "were": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 4}, "torches": {"_count": 1}, "past": {"_count": 1}}, "floor": {"_count": 20, "": {"_count": 6}, "burning": {"_count": 1}, "of": {"_count": 2}, "through": {"_count": 1}, "and": {"_count": 3}, "beating": {"_count": 1}, "for": {"_count": 1}, "between": {"_count": 1}, "in": {"_count": 1}, "screaming": {"_count": 1}, "tears": {"_count": 1}, "with": {"_count": 1}}, "taken": {"_count": 2, "from": {"_count": 2}}, "griffin": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 5, "makes": {"_count": 1}, "had": {"_count": 2}, "can": {"_count": 1}, "bore": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 2, "one": {"_count": 1}, "its": {"_count": 1}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "arm": {"_count": 1, "and": {"_count": 1}}, "cold": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "pigpen": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 9, "felt": {"_count": 1}, "tasted": {"_count": 1}, "revealed": {"_count": 1}, "smiling": {"_count": 1}, "I": {"_count": 1}, "vanish": {"_count": 1}, "the": {"_count": 2}, "wood": {"_count": 1}}, "fireplace": {"_count": 1, "of": {"_count": 1}}, "wall": {"_count": 13, "by": {"_count": 1}, "listening": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "opposite": {"_count": 2}, "behind": {"_count": 3}, "feeling": {"_count": 1}, "that": {"_count": 1}}, "staircase": {"_count": 9, "that": {"_count": 3}, "at": {"_count": 1}, "": {"_count": 2}, "which": {"_count": 1}, "to": {"_count": 1}, "was": {"_count": 1}}, "stairs": {"_count": 2, "until": {"_count": 1}, "calling": {"_count": 1}}, "step": {"_count": 4, "and": {"_count": 1}, "after": {"_count": 1}, "bouncing": {"_count": 1}, "panting": {"_count": 1}}, "ceilings": {"_count": 1, "didnt": {"_count": 1}}, "gargoyle": {"_count": 11, "": {"_count": 3}, "standing": {"_count": 1}, "did": {"_count": 1}, "guarding": {"_count": 3}, "within": {"_count": 1}, "jumped": {"_count": 1}, "torn": {"_count": 1}}, "door": {"_count": 1, "concealed": {"_count": 1}}, "tunnel": {"_count": 1, "large": {"_count": 1}}, "snakes": {"_count": 2, "were": {"_count": 1}, "seemed": {"_count": 1}}, "pillars": {"_count": 3, "entwined": {"_count": 1}, "topped": {"_count": 2}}, "robes": {"_count": 1, "where": {"_count": 1}}, "face": {"_count": 3, "of": {"_count": 1}, "was": {"_count": 1}, "made": {"_count": 1}}, "doors": {"_count": 1, "close": {"_count": 1}}, "columns": {"_count": 1, "topped": {"_count": 1}}, "basin": {"_count": 19, "in": {"_count": 2}, "lay": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 1}, "engraved": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 3}, "carved": {"_count": 1}, "etched": {"_count": 1}, "once": {"_count": 1}, "until": {"_count": 1}, "upon": {"_count": 1}, "rather": {"_count": 1}, "stood": {"_count": 1}}, "witch": {"_count": 1, "again": {"_count": 1}}, "slide": {"_count": 4, "then": {"_count": 1}, "": {"_count": 3}}, "lying": {"_count": 1, "on": {"_count": 1}}, "down": {"_count": 1, "again": {"_count": 1}}, "chute": {"_count": 1, "": {"_count": 1}}, "front": {"_count": 1, "steps": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "cottage": {"_count": 1, "next": {"_count": 1}}, "room": {"_count": 1, "rather": {"_count": 1}}, "corridor": {"_count": 2, "for": {"_count": 1}, "brightly": {"_count": 1}}, "statues": {"_count": 1, "": {"_count": 1}}, "reindeer": {"_count": 1, "now": {"_count": 1}}, "bench": {"_count": 3, "watching": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "reindeers": {"_count": 1, "back": {"_count": 1}}, "dwellings": {"_count": 1, "stained": {"_count": 1}}, "merperson": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "Krum": {"_count": 1}}, "bottom": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "ceiling": {"_count": 1, "expecting": {"_count": 1}}, "at": {"_count": 1, "it": {"_count": 1}}, "cauldron": {"_count": 2, "to": {"_count": 1}, "almost": {"_count": 1}}, "belly": {"_count": 1, "large": {"_count": 1}}, "dimly": {"_count": 1, "lit": {"_count": 1}}, "spiral": {"_count": 1, "staircase": {"_count": 1}}, "beneath": {"_count": 1, "what": {"_count": 1}}, "gargoyles": {"_count": 2, "flanked": {"_count": 1}, "that": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "but": {"_count": 1, "Hagrid": {"_count": 1}}, "cushioned": {"_count": 1, "by": {"_count": 1}}, "ball": {"_count": 1, "": {"_count": 1}}, "head": {"_count": 1, "of": {"_count": 1}}, "pit": {"_count": 1, "some": {"_count": 1}}, "benches": {"_count": 5, "running": {"_count": 1}, "": {"_count": 2}, "toward": {"_count": 1}, "one": {"_count": 1}}, "dais": {"_count": 1, "in": {"_count": 1}}, "archway": {"_count": 2, "that": {"_count": 1}, "stood": {"_count": 1}}, "seat": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "guard": {"_count": 1, "felt": {"_count": 1}}, "house": {"_count": 1, "set": {"_count": 1}}, "outhouse": {"_count": 1, "where": {"_count": 1}}, "Slughorn": {"_count": 1, "had": {"_count": 1}}, "remained": {"_count": 1, "solid": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "Having": {"_count": 1, "received": {"_count": 1}}, "shattering": {"_count": 1, "the": {"_count": 1}}, "Pensieve": {"_count": 3, "the": {"_count": 1}, "lay": {"_count": 1}, "on": {"_count": 1}}, "dominated": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "happy": {"_count": 1}}, "He": {"_count": 1, "did": {"_count": 1}}, "gazing": {"_count": 1, "down": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}, "indifferent": {"_count": 1, "unknowing": {"_count": 1}}, "upon": {"_count": 1, "which": {"_count": 1}}, "bust": {"_count": 3, "of": {"_count": 2}, "which": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "Mr": {"_count": 1, "Lovegood": {"_count": 1}}, "to": {"_count": 2, "make": {"_count": 1}, "reverse": {"_count": 1}}, "were": {"_count": 2, "a": {"_count": 1}, "still": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "read": {"_count": 1, "HERE": {"_count": 1}}, "passage": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "shack": {"_count": 1, "and": {"_count": 1}}, "diadem": {"_count": 1, "upon": {"_count": 1}}, "effigy": {"_count": 1, "came": {"_count": 1}}, "warlock": {"_count": 1, "wearing": {"_count": 1}}, "the": {"_count": 1, "shimmer": {"_count": 1}}, "over": {"_count": 1, "in": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "whom": {"_count": 1, "would": {"_count": 1}}}, "poisonous": {"_count": 15, "cobras": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "candles": {"_count": 1, "told": {"_count": 1}}, "green": {"_count": 2, "lying": {"_count": 1}, "thick": {"_count": 1}}, "fang": {"_count": 1, "was": {"_count": 1}}, "spider": {"_count": 1, "": {"_count": 1}}, "fungi": {"_count": 1, "": {"_count": 1}}, "fangs": {"_count": 1, "disappointing": {"_count": 1}}, "were": {"_count": 1, "being": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "duck": {"_count": 1, "": {"_count": 1}}}, "cobras": {"_count": 1, "and": {"_count": 1, "thick": {"_count": 1}}}, "mancrushing": {"_count": 1, "pythons": {"_count": 1, "": {"_count": 1}}}, "pythons": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "largest": {"_count": 22, "snake": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 1, "opposite": {"_count": 1}}, "pumpkins": {"_count": 1, "Harry": {"_count": 1}}, "silver": {"_count": 1, "teapot": {"_count": 1}}, "block": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 4, "grandest": {"_count": 1}, "most": {"_count": 1}, "laid": {"_count": 1}, "best": {"_count": 1}}, "number": {"_count": 1, "in": {"_count": 1}}, "European": {"_count": 1, "schools": {"_count": 1}}, "banner": {"_count": 1, "of": {"_count": 1}}, "woman": {"_count": 1, "he": {"_count": 1}}, "hooded": {"_count": 1, "figures": {"_count": 1}}, "gap": {"_count": 1, "of": {"_count": 1}}, "collection": {"_count": 1, "of": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}, "bowtruckle": {"_count": 1, "": {"_count": 1}}, "nearby": {"_count": 1, "trees": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "portrait": {"_count": 1, "directly": {"_count": 1}}}, "snake": {"_count": 187, "in": {"_count": 3, "the": {"_count": 1}, "Parseltongue": {"_count": 1}, "its": {"_count": 1}}, "didnt": {"_count": 1, "budge": {"_count": 1}}, "just": {"_count": 2, "snoozed": {"_count": 1}, "try": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 27}, "?": {"_count": 4}, "!": {"_count": 2}}, "suddenly": {"_count": 1, "opened": {"_count": 1}}, "and": {"_count": 11, "winked": {"_count": 1}, "there": {"_count": 1}, "placed": {"_count": 1}, "its": {"_count": 1}, "Mr": {"_count": 1}, "attacked": {"_count": 1}, "entwined": {"_count": 1}, "landed": {"_count": 1}, "Voldemort": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "jerked": {"_count": 1, "its": {"_count": 1}}, "could": {"_count": 1, "hear": {"_count": 1}}, "nodded": {"_count": 1, "vigorously": {"_count": 1}}, "jabbed": {"_count": 1, "its": {"_count": 1}}, "shook": {"_count": 1, "its": {"_count": 1}}, "was": {"_count": 10, "uncoiling": {"_count": 1}, "spitting": {"_count": 1}, "level": {"_count": 1}, "coming": {"_count": 2}, "her": {"_count": 1}, "": {"_count": 1}, "inside": {"_count": 1}, "where": {"_count": 1}, "too": {"_count": 1}}, "slid": {"_count": 1, "swiftly": {"_count": 1}}, "hadnt": {"_count": 1, "done": {"_count": 1}}, "surrounding": {"_count": 1, "a": {"_count": 1}}, "fangs": {"_count": 1, "criticizing": {"_count": 1}}, "shot": {"_count": 1, "out": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "Leave": {"_count": 1, "him": {"_count": 1}}, "slumped": {"_count": 1, "to": {"_count": 1}}, "wouldnt": {"_count": 1, "attack": {"_count": 1}}, "vanished": {"_count": 1, "in": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 5, "or": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "another": {"_count": 1}}, "biting": {"_count": 1, "off": {"_count": 1}}, "to": {"_count": 3, "do": {"_count": 1}, "get": {"_count": 1}, "that": {"_count": 1}}, "off": {"_count": 1, "not": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 3}, "least": {"_count": 1}}, "backed": {"_count": 1, "off": {"_count": 1}}, "toward": {"_count": 1, "Justin": {"_count": 1}}, "which": {"_count": 4, "may": {"_count": 1}, "had": {"_count": 2}, "drifted": {"_count": 1}}, "willing": {"_count": 1, "himself": {"_count": 1}}, "skin": {"_count": 3, "of": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 1}}, "would": {"_count": 1, "surely": {"_count": 1}}, "lay": {"_count": 1, "the": {"_count": 1}}, "lifted": {"_count": 1, "its": {"_count": 1}}, "united": {"_count": 1, "around": {"_count": 1}}, "before": {"_count": 1, "its": {"_count": 1}}, "hissed": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 2}}, "beside": {"_count": 1, "his": {"_count": 1}}, "slithering": {"_count": 2, "through": {"_count": 1}, "at": {"_count": 1}}, "slithered": {"_count": 2, "away": {"_count": 1}, "over": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "continued": {"_count": 2, "to": {"_count": 2}}, "a": {"_count": 1, "potion": {"_count": 1}}, "venom": {"_count": 1, "Nagini": {"_count": 1}}, "glided": {"_count": 1, "away": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "had": {"_count": 1}, "knew": {"_count": 1}}, "attacked": {"_count": 2, "rather": {"_count": 1}, "": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 2}}, "I": {"_count": 1, "felt": {"_count": 1}}, "inside": {"_count": 1, "me": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "repeated": {"_count": 1}}, "anywhere": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "rearing": {"_count": 1, "from": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "attack": {"_count": 2, "Mr": {"_count": 2}}, "bit": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "but": {"_count": 2, "thought": {"_count": 1}, "I": {"_count": 1}}, "reared": {"_count": 2, "from": {"_count": 1}, "again": {"_count": 1}}, "had": {"_count": 3, "struck": {"_count": 1}, "risen": {"_count": 1}, "stirred": {"_count": 1}}, "swung": {"_count": 2, "pathetically": {"_count": 1}, "sadly": {"_count": 1}}, "Nagini": {"_count": 3, "": {"_count": 1}, "floated": {"_count": 1}, "around": {"_count": 1}}, "are": {"_count": 1, "still": {"_count": 1}}, "coiling": {"_count": 2, "itself": {"_count": 1}, "and": {"_count": 1}}, "emerged": {"_count": 1, "to": {"_count": 1}}, "disliking": {"_count": 1, "the": {"_count": 1}}, "swayed": {"_count": 1, "and": {"_count": 1}}, "its": {"_count": 2, "way": {"_count": 1}, "tail": {"_count": 1}}, "is": {"_count": 2, "the": {"_count": 1}, "usually": {"_count": 1}}, "pouring": {"_count": 1, "from": {"_count": 1}}, "struck": {"_count": 1, "as": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "outlined": {"_count": 1, "against": {"_count": 1}}, "flew": {"_count": 1, "into": {"_count": 1}}, "fell": {"_count": 1, "hissing": {"_count": 1}}, "lunged": {"_count": 1, "as": {"_count": 1}}, "rustled": {"_count": 1, "on": {"_count": 1}}, "hiding": {"_count": 1, "somewhere": {"_count": 1}}, "sent": {"_count": 1, "a": {"_count": 1}}, "coming": {"_count": 1, "our": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "curled": {"_count": 1, "upon": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "wrapped": {"_count": 1, "around": {"_count": 1}}, "branded": {"_count": 1, "on": {"_count": 1}}, "But": {"_count": 1, "she": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "now": {"_count": 1, "suspended": {"_count": 1}}, "hissing": {"_count": 1, "slightly": {"_count": 1}}, "forth": {"_count": 1, "to": {"_count": 1}}, "survived": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}}, "wrapped": {"_count": 50, "its": {"_count": 1, "body": {"_count": 1}}, "up": {"_count": 2, "in": {"_count": 1}, "so": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 21, "thick": {"_count": 3}, "a": {"_count": 8}, "bandages": {"_count": 1}, "gold": {"_count": 1}, "cloaks": {"_count": 1}, "what": {"_count": 1}, "dirty": {"_count": 1}, "brown": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}, "purple": {"_count": 1}, "each": {"_count": 1}}, "the": {"_count": 3, "cloak": {"_count": 1}, "stump": {"_count": 1}, "elf": {"_count": 1}}, "themselves": {"_count": 1, "tightly": {"_count": 1}}, "present": {"_count": 2, "a": {"_count": 1}, "she": {"_count": 1}}, "scarves": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 7, "her": {"_count": 1}, "it": {"_count": 1}, "their": {"_count": 1}, "him": {"_count": 2}, "Lavender": {"_count": 1}, "his": {"_count": 1}}, "him": {"_count": 1, "so": {"_count": 1}}, "package": {"_count": 2, "roughly": {"_count": 1}, "lying": {"_count": 1}}, "tightly": {"_count": 2, "around": {"_count": 2}}, "itself": {"_count": 1, "around": {"_count": 1}}, "his": {"_count": 1, "scarf": {"_count": 1}}, "so": {"_count": 1, "closely": {"_count": 1}}, "gift": {"_count": 1, "on": {"_count": 1}}, "about": {"_count": 1, "him": {"_count": 1}}, "your": {"_count": 1, "destinies": {"_count": 1}}}, "body": {"_count": 267, "twice": {"_count": 1, "around": {"_count": 1}}, "behind": {"_count": 3, "him": {"_count": 2}, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "completely": {"_count": 1, "invisible": {"_count": 1}}, "it": {"_count": 2, "had": {"_count": 1}, "rolled": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 49, ".": {"_count": 45}, "?": {"_count": 2}, "!": {"_count": 2}}, "rigid": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 4, "couldnt": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 1}, "lay": {"_count": 1}}, "of": {"_count": 10, "my": {"_count": 2}, "the": {"_count": 1}, "an": {"_count": 1}, "course": {"_count": 1}, "a": {"_count": 4}, "Lavender": {"_count": 1}}, "to": {"_count": 7, "share": {"_count": 1}, "supervise": {"_count": 1}, "them": {"_count": 1}, "Hogwarts": {"_count": 1}, "bury": {"_count": 1}, "feel": {"_count": 1}, "face": {"_count": 1}}, "went": {"_count": 1, "numb": {"_count": 1}}, "was": {"_count": 14, "about": {"_count": 1}, "tingling": {"_count": 1}, "still": {"_count": 1}, "lying": {"_count": 1}, "aching": {"_count": 1}, "covered": {"_count": 1}, "tired": {"_count": 1}, "draped": {"_count": 1}, "generating": {"_count": 1}, "shaking": {"_count": 1}, "so": {"_count": 1}, "lifted": {"_count": 1}, "well": {"_count": 1}, "taut": {"_count": 1}}, "bubbled": {"_count": 1, "like": {"_count": 1}}, "leave": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 22, "a": {"_count": 1}, "legs": {"_count": 1}, "wrenched": {"_count": 1}, "the": {"_count": 3}, "every": {"_count": 1}, "I": {"_count": 1}, "kicked": {"_count": 1}, "dipped": {"_count": 1}, "his": {"_count": 2}, "as": {"_count": 1}, "particularly": {"_count": 1}, "is": {"_count": 1}, "threw": {"_count": 1}, "Im": {"_count": 1}, "still": {"_count": 1}, "he": {"_count": 1}, "helped": {"_count": 1}, "mind": {"_count": 1}, "laid": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "say": {"_count": 1, "goodbye": {"_count": 1}}, "slithering": {"_count": 1, "heavily": {"_count": 1}}, "he": {"_count": 7, "heard": {"_count": 1}, "hurried": {"_count": 1}, "wouldnt": {"_count": 1}, "landed": {"_count": 1}, "made": {"_count": 1}, "was": {"_count": 2}}, "coiling": {"_count": 1, "around": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "twist": {"_count": 1, "in": {"_count": 1}}, "enjoying": {"_count": 1, "a": {"_count": 1}}, "has": {"_count": 2, "permission": {"_count": 1}, "he": {"_count": 1}}, "low": {"_count": 1, "to": {"_count": 1}}, "cut": {"_count": 1, "a": {"_count": 1}}, "parts": {"_count": 4, "theyd": {"_count": 1}, "labeled": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "than": {"_count": 5, "usual": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "ever": {"_count": 1}}, "I": {"_count": 5, "know": {"_count": 1}, "tried": {"_count": 1}, "was": {"_count": 2}, "would": {"_count": 1}}, "around": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 6, "swimming": {"_count": 1}, "turn": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}, "from": {"_count": 1}}, "were": {"_count": 2, "on": {"_count": 1}, "both": {"_count": 1}}, "all": {"_count": 1, "else": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "Voldemort": {"_count": 1}, "Lupin": {"_count": 1}}, "back": {"_count": 7, "again": {"_count": 1}, "rushed": {"_count": 1}, "will": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 2}}, "lay": {"_count": 1, "and": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "lying": {"_count": 2, "on": {"_count": 2}}, "felt": {"_count": 2, "as": {"_count": 1}, "smooth": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 3}}, "or": {"_count": 1, "rather": {"_count": 1}}, "for": {"_count": 2, "it": {"_count": 1}, "survival": {"_count": 1}}, "covered": {"_count": 1, "with": {"_count": 1}}, "until": {"_count": 1, "it": {"_count": 1}}, "shaking": {"_count": 2, "with": {"_count": 1}, "Mr": {"_count": 1}}, "turned": {"_count": 1, "into": {"_count": 1}}, "replaced": {"_count": 1, "Bills": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "vanished": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 2, "lain": {"_count": 1}, "relaxed": {"_count": 1}}, "watched": {"_count": 1, "by": {"_count": 1}}, "really": {"_count": 1, "were": {"_count": 1}}, "his": {"_count": 1, "glasses": {"_count": 1}}, "heavy": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 5, "he": {"_count": 2}, "proof": {"_count": 2}, "though": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "Harry": {"_count": 2, "could": {"_count": 1}, "any": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "making": {"_count": 1, "his": {"_count": 1}}, "would": {"_count": 4, "launch": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}, "not": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "curved": {"_count": 1, "in": {"_count": 1}}, "ended": {"_count": 1, "and": {"_count": 1}}, "never": {"_count": 1, "wished": {"_count": 1}}, "so": {"_count": 1, "full": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "revealed": {"_count": 1, "with": {"_count": 1}}, "unfroze": {"_count": 1, "he": {"_count": 1}}, "became": {"_count": 2, "limp": {"_count": 1}, "instantly": {"_count": 1}}, "out": {"_count": 1, "o": {"_count": 1}}, "will": {"_count": 1, "decay": {"_count": 1}}, "toward": {"_count": 1, "my": {"_count": 1}}, "is": {"_count": 1, "attacked": {"_count": 1}}, "leapt": {"_count": 1, "out": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "then": {"_count": 3, "he": {"_count": 1}, "dragged": {"_count": 1}, "hurried": {"_count": 1}}, "ached": {"_count": 1, "all": {"_count": 1}}, "quivering": {"_count": 1, "beside": {"_count": 1}}, "must": {"_count": 1, "lie": {"_count": 1}}, "He": {"_count": 1, "stepped": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "carefully": {"_count": 1, "upon": {"_count": 1}}, "revolving": {"_count": 1, "slowly": {"_count": 1}}, "above": {"_count": 2, "him": {"_count": 1}, "have": {"_count": 1}}, "overhead": {"_count": 1, "glanced": {"_count": 1}}, "fly": {"_count": 1, "past": {"_count": 1}}, "Bill": {"_count": 1, "went": {"_count": 1}}, "broken": {"_count": 1, "as": {"_count": 1}}, "your": {"_count": 1, "soul": {"_count": 1}}, "violent": {"_count": 1, "and": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "collapsing": {"_count": 1, "and": {"_count": 1}}, "why": {"_count": 1, "did": {"_count": 1}}, "screamed": {"_count": 1, "in": {"_count": 1}}, "showed": {"_count": 1, "unmistakable": {"_count": 1}}, "fighting": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "curled": {"_count": 1, "upon": {"_count": 1}}, "flew": {"_count": 1, "in": {"_count": 1}}, "fell": {"_count": 1, "past": {"_count": 1}}, "shielding": {"_count": 1, "it": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "his": {"_count": 1}}, "shook": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 1, "unscathed": {"_count": 1}}, "a": {"_count": 1, "tiny": {"_count": 1}}, "keeps": {"_count": 1, "her": {"_count": 1}}, "thudded": {"_count": 1, "to": {"_count": 1}}, "decays": {"_count": 1, "in": {"_count": 1}}, "feeble": {"_count": 1, "and": {"_count": 1}}}, "Vernons": {"_count": 69, "car": {"_count": 4, "and": {"_count": 1}, "Dudley": {"_count": 1}, "pulled": {"_count": 1}, "": {"_count": 1}}, "old": {"_count": 5, "private": {"_count": 1}, "socks": {"_count": 4}}, "sister": {"_count": 3, "Marge": {"_count": 2}, "": {"_count": 1}}, "shiny": {"_count": 1, "black": {"_count": 1}}, "lap": {"_count": 1, "": {"_count": 1}}, "rations": {"_count": 1, "turned": {"_count": 1}}, "hands": {"_count": 1, "bent": {"_count": 1}}, "courage": {"_count": 1, "failed": {"_count": 1}}, "company": {"_count": 1, "made": {"_count": 1}}, "furious": {"_count": 1, "face": {"_count": 1}}, "voice": {"_count": 4, "": {"_count": 3}, "floated": {"_count": 1}}, "grasp": {"_count": 1, "Harry": {"_count": 1}}, "new": {"_count": 2, "company": {"_count": 2}}, "small": {"_count": 1, "eyes": {"_count": 1}}, "large": {"_count": 3, "purple": {"_count": 2}, "red": {"_count": 1}}, "angry": {"_count": 1, "little": {"_count": 1}}, "drills": {"_count": 1, "": {"_count": 1}}, "leg": {"_count": 1, "": {"_count": 1}}, "signature": {"_count": 1, "on": {"_count": 1}}, "face": {"_count": 5, "Harry": {"_count": 1}, "making": {"_count": 1}, "purpled": {"_count": 1}, "worked": {"_count": 1}, "when": {"_count": 1}}, "grapefruit": {"_count": 1, "": {"_count": 1}}, "temper": {"_count": 1, "should": {"_count": 1}}, "most": {"_count": 1, "fundamental": {"_count": 1}}, "thick": {"_count": 1, "dark": {"_count": 1}}, "bulk": {"_count": 1, "while": {"_count": 1}}, "tiny": {"_count": 1, "eyes": {"_count": 1}}, "second": {"_count": 1, "ornament": {"_count": 1}}, "hand": {"_count": 1, "with": {"_count": 1}}, "wearing": {"_count": 1, "robes": {"_count": 1}}, "work": {"_count": 1, "parties": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "outstretched": {"_count": 1, "hands": {"_count": 1}}, "wide": {"_count": 1, "purple": {"_count": 1}}, "head": {"_count": 3, "it": {"_count": 1}, "turned": {"_count": 1}, "he": {"_count": 1}}, "anguished": {"_count": 1, "yell": {"_count": 1}}, "purple": {"_count": 1, "temple": {"_count": 1}}, "questions": {"_count": 1, "than": {"_count": 1}}, "ongoing": {"_count": 1, "rant": {"_count": 1}}, "Harrys": {"_count": 1, "exhausted": {"_count": 1}}, "footsteps": {"_count": 1, "walking": {"_count": 1}}, "beautifully": {"_count": 1, "kept": {"_count": 1}}, "favorites": {"_count": 1, "and": {"_count": 1}}, "directly": {"_count": 1, "upon": {"_count": 1}}, "mustache": {"_count": 1, "seemed": {"_count": 1}}, "and": {"_count": 1, "Harrys": {"_count": 1}}, "choicest": {"_count": 1, "swear": {"_count": 1}}}, "crushed": {"_count": 8, "it": {"_count": 2, "into": {"_count": 2}}, "in": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "bean": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "death": {"_count": 1}}, "them": {"_count": 1, "as": {"_count": 1}}, "your": {"_count": 1, "mother": {"_count": 1}}}, "against": {"_count": 518, "the": {"_count": 248, "glass": {"_count": 10}, "wall": {"_count": 47}, "window": {"_count": 7}, "ground": {"_count": 1}, "cold": {"_count": 5}, "table": {"_count": 1}, "rules": {"_count": 1}, "walls": {"_count": 8}, "wooden": {"_count": 2}, "heavens": {"_count": 1}, "stone": {"_count": 1}, "ropes": {"_count": 3}, "bars": {"_count": 1}, "trunk": {"_count": 1}, "barrier": {"_count": 4}, "foulest": {"_count": 1}, "white": {"_count": 1}, "back": {"_count": 4}, "tide": {"_count": 2}, "light": {"_count": 1}, "little": {"_count": 1}, "closed": {"_count": 1}, "sun": {"_count": 1}, "car": {"_count": 1}, "nearest": {"_count": 1}, "king": {"_count": 1}, "pillow": {"_count": 1}, "golden": {"_count": 1}, "windows": {"_count": 3}, "juice": {"_count": 1}, "students": {"_count": 1}, "castle": {"_count": 1}, "ferocious": {"_count": 1}, "sky": {"_count": 2}, "opposite": {"_count": 2}, "wind": {"_count": 2}, "Committee": {"_count": 2}, "dementors": {"_count": 1}, "cupboard": {"_count": 1}, "door": {"_count": 5}, "rope": {"_count": 1}, "mistreatment": {"_count": 1}, "starry": {"_count": 1}, "black": {"_count": 3}, "living": {"_count": 1}, "downpour": {"_count": 1}, "high": {"_count": 2}, "better": {"_count": 1}, "flames": {"_count": 1}, "mantelpiece": {"_count": 1}, "Owlery": {"_count": 1}, "dark": {"_count": 5}, "law": {"_count": 2}, "Dark": {"_count": 5}, "Horntail": {"_count": 1}, "hedge": {"_count": 1}, "headstone": {"_count": 1}, "noise": {"_count": 1}, "howl": {"_count": 1}, "goblins": {"_count": 1}, "now": {"_count": 1}, "streetlight": {"_count": 1}, "rush": {"_count": 1}, "telephone": {"_count": 1}, "filing": {"_count": 1}, "accused": {"_count": 1}, "train": {"_count": 1}, "chilly": {"_count": 2}, "bright": {"_count": 2}, "inside": {"_count": 1}, "Ministry": {"_count": 4}, "classroom": {"_count": 1}, "pane": {"_count": 1}, "killin": {"_count": 1}, "floor": {"_count": 2}, "corridor": {"_count": 1}, "frame": {"_count": 1}, "edge": {"_count": 2}, "public": {"_count": 1}, "cool": {"_count": 1}, "Charms": {"_count": 1}, "whirling": {"_count": 1}, "rushing": {"_count": 1}, "pain": {"_count": 1}, "unseasonable": {"_count": 1}, "Prime": {"_count": 1}, "Death": {"_count": 1}, "wood": {"_count": 1}, "bowl": {"_count": 1}, "dull": {"_count": 1}, "Unforgivable": {"_count": 1}, "seat": {"_count": 1}, "bitter": {"_count": 1}, "swirling": {"_count": 1}, "clear": {"_count": 1}, "icy": {"_count": 1}, "keyhole": {"_count": 2}, "bottommost": {"_count": 1}, "Gryffindor": {"_count": 1}, "appointment": {"_count": 1}, "lure": {"_count": 1}, "basin": {"_count": 1}, "cavern": {"_count": 1}, "tower": {"_count": 1}, "ramparts": {"_count": 1}, "enchantment": {"_count": 1}, "knuckles": {"_count": 1}, "cushions": {"_count": 1}, "henhouse": {"_count": 1}, "railings": {"_count": 1}, "leafstrewn": {"_count": 1}, "bare": {"_count": 1}, "side": {"_count": 3}, "peeling": {"_count": 1}, "landing": {"_count": 1}, "pearly": {"_count": 1}, "pull": {"_count": 1}, "prickling": {"_count": 1}, "yellowish": {"_count": 1}, "cliff": {"_count": 2}, "Horcruxes": {"_count": 1}, "lamplight": {"_count": 1}, "cottage": {"_count": 1}, "passage": {"_count": 1}, "ceiling": {"_count": 1}, "heat": {"_count": 1}, "rapidly": {"_count": 1}, "enchanted": {"_count": 1}, "eardrums": {"_count": 1}, "windowpane": {"_count": 1}, "hard": {"_count": 1}, "sunrise": {"_count": 1}, "shifting": {"_count": 1}}, "a": {"_count": 18, "window": {"_count": 1}, "milk": {"_count": 1}, "large": {"_count": 1}, "sudden": {"_count": 1}, "long": {"_count": 1}, "tree": {"_count": 2}, "wall": {"_count": 3}, "chipmunk": {"_count": 1}, "fifty": {"_count": 1}, "nearby": {"_count": 1}, "second": {"_count": 1}, "bottle": {"_count": 1}, "pillar": {"_count": 1}, "kitchen": {"_count": 1}, "door": {"_count": 1}}, "it": {"_count": 14, "listening": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 4}, "in": {"_count": 1}, "facing": {"_count": 1}, "after": {"_count": 1}, "with": {"_count": 1}, "Every": {"_count": 1}, "looking": {"_count": 1}}, "Hogwarts": {"_count": 1, "rules": {"_count": 1}}, "Hufflepuff": {"_count": 9, "they": {"_count": 1}, "": {"_count": 4}, "in": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 1}}, "our": {"_count": 2, "laws": {"_count": 1}, "code": {"_count": 1}}, "what": {"_count": 2, "is": {"_count": 1}, "man": {"_count": 1}}, "wizard": {"_count": 1, "law": {"_count": 1}}, "his": {"_count": 39, "leg": {"_count": 2}, "door": {"_count": 1}, "ribs": {"_count": 6}, "pillows": {"_count": 3}, "better": {"_count": 1}, "fingers": {"_count": 1}, "bonds": {"_count": 2}, "eardrums": {"_count": 2}, "knees": {"_count": 1}, "Adams": {"_count": 2}, "powers": {"_count": 1}, "scar": {"_count": 1}, "side": {"_count": 1}, "and": {"_count": 1}, "captors": {"_count": 1}, "water": {"_count": 1}, "will": {"_count": 3}, "skin": {"_count": 3}, "chest": {"_count": 3}, "": {"_count": 2}, "back": {"_count": 1}}, "you": {"_count": 10, "": {"_count": 4}, "last": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "none": {"_count": 1}, "continued": {"_count": 1}, "ever": {"_count": 1}}, "hope": {"_count": 6, "hed": {"_count": 1}, "that": {"_count": 4}, "he": {"_count": 1}}, "Sly": {"_count": 1, "The": {"_count": 1}}, "students": {"_count": 1, "": {"_count": 1}}, "Slytherin": {"_count": 5, "is": {"_count": 1}, "which": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 2}}, "him": {"_count": 14, "": {"_count": 5}, "then": {"_count": 1}, "said": {"_count": 2}, "like": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "The": {"_count": 1}, "on": {"_count": 1}, "magic": {"_count": 1}}, "Hagrids": {"_count": 1, "Harry": {"_count": 1}}, "famous": {"_count": 1, "Harry": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Aunt": {"_count": 1, "Petunias": {"_count": 1}}, "your": {"_count": 1, "family": {"_count": 1}}, "them": {"_count": 8, "Azkaban": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "as": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Dumbledore": {"_count": 1, "he": {"_count": 1}}, "YouKnowWho": {"_count": 6, "had": {"_count": 1}, "last": {"_count": 1}, "do": {"_count": 1}, "and": {"_count": 1}, "would": {"_count": 1}, "ought": {"_count": 1}}, "their": {"_count": 2, "sitting": {"_count": 1}, "legs": {"_count": 1}}, "Black": {"_count": 1, "once": {"_count": 1}}, "Ravenclaw": {"_count": 7, "": {"_count": 4}, "was": {"_count": 1}, "but": {"_count": 1}, "Harry": {"_count": 1}}, "her": {"_count": 9, "cat": {"_count": 1}, "mouth": {"_count": 1}, "frame": {"_count": 1}, "will": {"_count": 1}, "": {"_count": 1}, "empty": {"_count": 1}, "husband": {"_count": 1}, "spotless": {"_count": 1}, "throat": {"_count": 1}}, "ghosts": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 9, "": {"_count": 6}, "The": {"_count": 1}, "Potter": {"_count": 1}, "instead": {"_count": 1}}, "my": {"_count": 3, "appointment": {"_count": 1}, "inclination": {"_count": 1}, "better": {"_count": 1}}, "all": {"_count": 1, "school": {"_count": 1}}, "for": {"_count": 1, "thirteen": {"_count": 1}}, "something": {"_count": 1, "youve": {"_count": 1}}, "another": {"_count": 1, "human": {"_count": 1}}, "Warrington": {"_count": 1, "shook": {"_count": 1}}, "each": {"_count": 4, "other": {"_count": 4}}, "at": {"_count": 1, "home": {"_count": 1}}, "its": {"_count": 3, "cementcolored": {"_count": 1}, "cool": {"_count": 1}, "last": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "Horntail": {"_count": 1}}, "yeh": {"_count": 1, "": {"_count": 1}}, "fifty": {"_count": 1, "heavily": {"_count": 1}}, "Voldemorts": {"_count": 2, "supporters": {"_count": 1}, "assaults": {"_count": 1}}, "suspects": {"_count": 1, "": {"_count": 1}}, "Rita": {"_count": 2, "Skeeter": {"_count": 2}}, "Turkey": {"_count": 1, "last": {"_count": 1}}, "Krum": {"_count": 2, "now": {"_count": 1}, "shook": {"_count": 1}}, "mortal": {"_count": 1, "death": {"_count": 1}}, "which": {"_count": 3, "Moody": {"_count": 1}, "he": {"_count": 2}}, "Harrys": {"_count": 2, "injured": {"_count": 1}, "legs": {"_count": 1}}, "whom": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "Voldemort": {"_count": 4, "at": {"_count": 1}, "": {"_count": 3}}, "Dads": {"_count": 1, "lousy": {"_count": 1}}, "werewolves": {"_count": 1, "": {"_count": 1}}, "VVoldemort": {"_count": 1, "oh": {"_count": 1}}, "VVoldemorts": {"_count": 1, "Death": {"_count": 1}}, "Polands": {"_count": 1, "top": {"_count": 1}}, "Malfoys": {"_count": 2, "jaw": {"_count": 1}, "Imperius": {"_count": 1}}, "em": {"_count": 2, "": {"_count": 1}, "an": {"_count": 1}}, "external": {"_count": 2, "penetration": {"_count": 2}}, "magical": {"_count": 1, "intrusion": {"_count": 1}}, "an": {"_count": 1, "oddly": {"_count": 1}}, "tree": {"_count": 1, "trunks": {"_count": 1}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "The": {"_count": 1, "Standard": {"_count": 1}}, "one": {"_count": 5, "of": {"_count": 3}, "so": {"_count": 1}, "bloke": {"_count": 1}}, "Warringtons": {"_count": 1, "half": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "Lupin": {"_count": 1, "who": {"_count": 1}}, "intruders": {"_count": 1, "Horace": {"_count": 1}}, "Horace": {"_count": 1, "or": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "carelessness": {"_count": 1, "on": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "door": {"_count": 1, "after": {"_count": 1}}, "Greybacks": {"_count": 1, "insistence": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "continued": {"_count": 1, "thievery": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "nature": {"_count": 1, "": {"_count": 1}}, "Cho": {"_count": 1, "": {"_count": 1}}, "invisible": {"_count": 1, "bonds": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "Snape": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "Muggleborns": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "his": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "flesh": {"_count": 1, "": {"_count": 1}}, "pursuing": {"_count": 1, "the": {"_count": 1}}, "following": {"_count": 1, "Hagrids": {"_count": 1}}, "rock": {"_count": 1, "somewhere": {"_count": 1}}, "reminding": {"_count": 1, "her": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 1}, "within": {"_count": 1}}, "anything": {"_count": 1, "Harry": {"_count": 1}}, "regulations": {"_count": 1, "If": {"_count": 1}}, "yellow": {"_count": 1, "and": {"_count": 1}}, "telling": {"_count": 1, "anyone": {"_count": 1}}, "HeWhoMust": {"_count": 1, "NotBeNamed": {"_count": 1}}, "yours": {"_count": 1, "": {"_count": 1}}}, "glistening": {"_count": 13, "brown": {"_count": 1, "coils": {"_count": 1}}, "bald": {"_count": 1, "patch": {"_count": 1}}, "slugs": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "grayish": {"_count": 1, "slimylooking": {"_count": 1}}, "hand": {"_count": 1, "slithering": {"_count": 1}}, "scabbed": {"_count": 1, "hand": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "strand": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "palely": {"_count": 1, "through": {"_count": 1}}, "drops": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}}, "coils": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 3, "snake": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "loosened": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}}, "Make": {"_count": 16, "it": {"_count": 4, "move": {"_count": 1}, "clear": {"_count": 1}, "stop": {"_count": 2}}, "Harry": {"_count": 1, "get": {"_count": 1}}, "Dudley": {"_count": 1, "get": {"_count": 1}}, "yerselves": {"_count": 1, "at": {"_count": 1}}, "way": {"_count": 2, "first": {"_count": 1}, "for": {"_count": 1}}, "them": {"_count": 1, "disappear": {"_count": 1}}, "us": {"_count": 1, "write": {"_count": 1}}, "sure": {"_count": 3, "you": {"_count": 2}, "it": {"_count": 1}}, "him": {"_count": 2, "go": {"_count": 1}, "press": {"_count": 1}}}, "whined": {"_count": 2, "at": {"_count": 1, "his": {"_count": 1}}, "Pettigrew": {"_count": 1, "": {"_count": 1}}}, "tapped": {"_count": 48, "on": {"_count": 2, "the": {"_count": 2}}, "it": {"_count": 6, "twice": {"_count": 1}, "with": {"_count": 3}, "gently": {"_count": 1}, "menacingly": {"_count": 1}}, "the": {"_count": 18, "wall": {"_count": 1}, "lock": {"_count": 1}, "board": {"_count": 1}, "diary": {"_count": 1}, "kettle": {"_count": 1}, "statue": {"_count": 1}, "door": {"_count": 1}, "blackboard": {"_count": 1}, "hat": {"_count": 1}, "teacups": {"_count": 1}, "pot": {"_count": 1}, "chains": {"_count": 1}, "cover": {"_count": 1}, "map": {"_count": 2}, "broken": {"_count": 1}, "chain": {"_count": 1}, "front": {"_count": 1}}, "him": {"_count": 2, "on": {"_count": 2}}, "his": {"_count": 3, "nose": {"_count": 1}, "glasses": {"_count": 1}, "fist": {"_count": 1}}, "Ron": {"_count": 3, "on": {"_count": 2}, "continued": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}, "Rons": {"_count": 1, "leg": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "Hagrid": {"_count": 1, "in": {"_count": 1}}, "Harry": {"_count": 1, "on": {"_count": 1}}, "each": {"_count": 2, "little": {"_count": 1}, "and": {"_count": 1}}, "Ginny": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 3, "blank": {"_count": 1}, "bottle": {"_count": 1}, "brick": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "muttered": {"_count": 1}}, "spring": {"_count": 1, "of": {"_count": 1}}}, "budge": {"_count": 11, "": {"_count": 6, ".": {"_count": 6}}, "not": {"_count": 1, "even": {"_count": 1}}, "up": {"_count": 1, "make": {"_count": 1}}, "along": {"_count": 2, "budge": {"_count": 1}, "": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "Do": {"_count": 180, "it": {"_count": 11, "again": {"_count": 1}, "nouA": {"_count": 1}, "now": {"_count": 2}, "today": {"_count": 1}, "said": {"_count": 1}, "or": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}, "then": {"_count": 1}, "Harry": {"_count": 1}}, "you": {"_count": 108, "mean": {"_count": 5}, "": {"_count": 2}, "want": {"_count": 3}, "think": {"_count": 26}, "realize": {"_count": 2}, "not": {"_count": 2}, "know": {"_count": 23}, "feel": {"_count": 4}, "see": {"_count": 5}, "live": {"_count": 1}, "really": {"_count": 9}, "remember": {"_count": 3}, "deny": {"_count": 1}, "have": {"_count": 4}, "honestly": {"_count": 1}, "find": {"_count": 1}, "understand": {"_count": 4}, "need": {"_count": 1}, "do": {"_count": 1}, "disagree": {"_count": 1}, "wish": {"_count": 2}, "recognize": {"_count": 2}, "William": {"_count": 1}, "mind": {"_count": 1}, "expect": {"_count": 1}, "trust": {"_count": 1}, "agree": {"_count": 1}}, "they": {"_count": 4, "": {"_count": 1}, "know": {"_count": 1}, "use": {"_count": 1}, "work": {"_count": 1}}, "either": {"_count": 2, "of": {"_count": 2}}, "something": {"_count": 3, "he": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}}, "we": {"_count": 3, "er": {"_count": 1}, "not": {"_count": 1}, "have": {"_count": 1}}, "I": {"_count": 7, "look": {"_count": 2}, "have": {"_count": 3}, "still": {"_count": 1}, "do": {"_count": 1}}, "tell": {"_count": 1, "me": {"_count": 1}}, "Not": {"_count": 2, "Touch": {"_count": 1}, "Enter": {"_count": 1}}, "use": {"_count": 1, "your": {"_count": 1}}, "When": {"_count": 1, "You": {"_count": 1}}, "take": {"_count": 1, "care": {"_count": 1}}, "sit": {"_count": 2, "down": {"_count": 2}}, "watch": {"_count": 1, "where": {"_count": 1}}, "not": {"_count": 17, "lie": {"_count": 4}, "speak": {"_count": 1}, "look": {"_count": 1}, "interrupt": {"_count": 1}, "say": {"_count": 1}, "play": {"_count": 1}, "forget": {"_count": 2}, "touch": {"_count": 1}, "pretend": {"_count": 1}, "think": {"_count": 1}, "use": {"_count": 1}, "misunderstand": {"_count": 1}, "pity": {"_count": 1}}, "us": {"_count": 1, "a": {"_count": 1}}, "zey": {"_count": 1, "want": {"_count": 1}}, "with": {"_count": 1, "Them": {"_count": 1}}, "nothing": {"_count": 3, "": {"_count": 1}, "unless": {"_count": 1}, "else": {"_count": 1}}, "what": {"_count": 3, "you": {"_count": 1}, "ourselves": {"_count": 1}, "": {"_count": 1}}, "your": {"_count": 1, "lot": {"_count": 1}}, "that": {"_count": 1, "one": {"_count": 1}}, "mine": {"_count": 1, "ears": {"_count": 1}}, "everything": {"_count": 1, "Professor": {"_count": 1}}, "people": {"_count": 1, "usually": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 1, "a": {"_count": 1}}}, "ordered": {"_count": 29, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 7, "free": {"_count": 1}, "plate": {"_count": 1}, "new": {"_count": 3}, "pair": {"_count": 2}}, "them": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 4, "Weasleys": {"_count": 1}, "attacks": {"_count": 1}, "umpire": {"_count": 1}, "Death": {"_count": 1}}, "everyone": {"_count": 1, "back": {"_count": 1}}, "three": {"_count": 1, "butterbeers": {"_count": 1}}, "world": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "said": {"_count": 1}}, "an": {"_count": 1, "attack": {"_count": 1}}, "by": {"_count": 1, "other": {"_count": 1}}, "dementors": {"_count": 1, "after": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "I": {"_count": 1}}, "Draco": {"_count": 1, "to": {"_count": 1}}, "Snape": {"_count": 1, "to": {"_count": 1}}, "others": {"_count": 1, "out": {"_count": 1}}, "here": {"_count": 1, "because": {"_count": 1}}, "two": {"_count": 1, "cappuccinos": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "Kreacher": {"_count": 1, "to": {"_count": 1}}}, "smartly": {"_count": 6, "with": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "looked": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}}, "knuckles": {"_count": 25, "but": {"_count": 2, "the": {"_count": 1}, "there": {"_count": 1}}, "and": {"_count": 2, "scowl": {"_count": 1}, "received": {"_count": 1}}, "were": {"_count": 2, "white": {"_count": 1}, "bulging": {"_count": 1}}, "in": {"_count": 4, "a": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 3, "Harrys": {"_count": 1}, "which": {"_count": 1}, "his": {"_count": 1}}, "white": {"_count": 1, "his": {"_count": 1}}, "threateningly": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "big": {"_count": 1}}, "whiten": {"_count": 1, "on": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "menacingly": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "blue": {"_count": 1, "and": {"_count": 1}}, "hitting": {"_count": 1, "flesh": {"_count": 1}}}, "snoozed": {"_count": 1, "on": {"_count": 1, "": {"_count": 1}}}, "moaned": {"_count": 46, "": {"_count": 8, ".": {"_count": 8}}, "in": {"_count": 1, "pain": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "enviously": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 2, "grayfaced": {"_count": 1}, "": {"_count": 1}}, "halfheartedly": {"_count": 1, "as": {"_count": 1}}, "Ah": {"_count": 1, "speak": {"_count": 1}}, "Dobby": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "Hermione": {"_count": 1}}, "darting": {"_count": 1, "out": {"_count": 1}}, "dashing": {"_count": 1, "to": {"_count": 1}}, "checking": {"_count": 1, "her": {"_count": 1}}, "continually": {"_count": 1, "about": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "pulling": {"_count": 1, "him": {"_count": 1}}, "beside": {"_count": 1, "Harry": {"_count": 1}}, "massaging": {"_count": 1, "his": {"_count": 1}}, "Winky": {"_count": 1, "tears": {"_count": 1}}, "and": {"_count": 3, "put": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 1}}, "Wormtail": {"_count": 1, "please": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "grabbing": {"_count": 1, "his": {"_count": 1}}, "rocking": {"_count": 1, "backward": {"_count": 1}}, "Hermione": {"_count": 3, "but": {"_count": 1}, "grabbing": {"_count": 1}, "sucking": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 2}}, "Dont": {"_count": 1, "hurt": {"_count": 1}}, "Hagrid": {"_count": 1, "I": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "elf": {"_count": 1}}, "with": {"_count": 1, "relief": {"_count": 1}}, "faintly": {"_count": 1, "Oh": {"_count": 1}}}, "shuffled": {"_count": 30, "away": {"_count": 2, "": {"_count": 1}, "muttering": {"_count": 1}}, "miserably": {"_count": 1, "off": {"_count": 1}}, "into": {"_count": 1, "view": {"_count": 1}}, "off": {"_count": 3, "": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 1}}, "his": {"_count": 2, "feet": {"_count": 1}, "enormous": {"_count": 1}}, "forward": {"_count": 2, "for": {"_count": 1}, "on": {"_count": 1}}, "rapidly": {"_count": 2, "across": {"_count": 1}, "back": {"_count": 1}}, "hunchbacked": {"_count": 1, "slowly": {"_count": 1}}, "out": {"_count": 3, "past": {"_count": 1}, "of": {"_count": 2}}, "slowly": {"_count": 1, "through": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "many": {"_count": 1}}, "sideways": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 2, "pack": {"_count": 1}, "few": {"_count": 1}}, "her": {"_count": 1, "feet": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}, "past": {"_count": 1, "them": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 1, "around": {"_count": 1}}, "obediently": {"_count": 1, "to": {"_count": 1}}}, "tank": {"_count": 22, "and": {"_count": 2, "looked": {"_count": 1}, "a": {"_count": 1}}, "had": {"_count": 1, "vanished": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "water": {"_count": 1}, "deepgreen": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "stood": {"_count": 1, "next": {"_count": 1}}, "slightly": {"_count": 1, "so": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "rose": {"_count": 1, "into": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}}, "intently": {"_count": 30, "at": {"_count": 8, "the": {"_count": 2}, "Scabbers": {"_count": 1}, "Neville": {"_count": 1}, "Harry": {"_count": 3}, "them": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "for": {"_count": 3, "any": {"_count": 1}, "a": {"_count": 2}}, "hoping": {"_count": 1, "that": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "upon": {"_count": 1, "Professor": {"_count": 1}}, "to": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "about": {"_count": 1, "their": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "boredom": {"_count": 2, "itself": {"_count": 1, "no": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "itself": {"_count": 128, "no": {"_count": 1, "company": {"_count": 1}}, "rapidly": {"_count": 1, "slithering": {"_count": 1}}, "snakelike": {"_count": 1, "into": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 4, "their": {"_count": 1}, "Slytherins": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 19, ".": {"_count": 17}, "!": {"_count": 1}, "?": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "up": {"_count": 2, "lashing": {"_count": 1}, "and": {"_count": 1}}, "they": {"_count": 1, "rose": {"_count": 1}}, "on": {"_count": 5, "Friday": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "Thursday": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "invisible": {"_count": 1, "said": {"_count": 1}}, "pretend": {"_count": 1, "to": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 1, "fangs": {"_count": 1}}, "down": {"_count": 2, "to": {"_count": 1}, "one": {"_count": 1}}, "into": {"_count": 8, "glowing": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 2}, "pain": {"_count": 1}}, "loomed": {"_count": 1, "into": {"_count": 1}}, "high": {"_count": 1, "in": {"_count": 1}}, "if": {"_count": 3, "you": {"_count": 2}, "present": {"_count": 1}}, "spitting": {"_count": 1, "madly": {"_count": 1}}, "bumping": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 8, "a": {"_count": 3}, "neatly": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "Hermiones": {"_count": 1}, "due": {"_count": 1}}, "hoarse": {"_count": 1, "Gryffindor": {"_count": 1}}, "dreamily": {"_count": 1, "across": {"_count": 1}}, "free": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "accomplishing": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "is": {"_count": 2, "brought": {"_count": 1}, "obviously": {"_count": 1}}, "out": {"_count": 5, "by": {"_count": 1}, "of": {"_count": 4}}, "throw": {"_count": 1, "itself": {"_count": 1}}, "with": {"_count": 3, "such": {"_count": 1}, "chamber": {"_count": 1}, "an": {"_count": 1}}, "upon": {"_count": 3, "Wormtails": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "firmly": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 5, "describing": {"_count": 1}, "the": {"_count": 1}, "any": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "honor": {"_count": 1, "bound": {"_count": 1}}, "seamlessly": {"_count": 1, "so": {"_count": 1}}, "an": {"_count": 1, "unprecedented": {"_count": 1}}, "instantly": {"_count": 2, "into": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "very": {"_count": 1}}, "you": {"_count": 1, "silly": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "against": {"_count": 4, "her": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "around": {"_count": 3, "Voldemort": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "thickly": {"_count": 1, "around": {"_count": 1}}, "the": {"_count": 1, "Death": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "McGonagall": {"_count": 1, "": {"_count": 1}}, "quivering": {"_count": 1, "": {"_count": 1}}, "Albus": {"_count": 1, "could": {"_count": 1}}, "making": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 1, "nothing": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "last": {"_count": 1, "eaten": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "Harry": {"_count": 1}}, "whimpering": {"_count": 1, "from": {"_count": 1}}, "happily": {"_count": 1, "around": {"_count": 1}}, "ignoring": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "His": {"_count": 1, "will": {"_count": 1}}, "dying": {"_count": 1, "": {"_count": 1}}}, "company": {"_count": 60, "except": {"_count": 1, "stupid": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 13}, "!": {"_count": 2}, "?": {"_count": 1}}, "made": {"_count": 1, "drills": {"_count": 1}}, "you": {"_count": 1, "keep": {"_count": 1}}, "with": {"_count": 4, "their": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 1}}, "car": {"_count": 2, "in": {"_count": 1}, "certainly": {"_count": 1}}, "then": {"_count": 1, "Aunt": {"_count": 1}}, "but": {"_count": 2, "Professor": {"_count": 1}, "thankfully": {"_count": 1}}, "when": {"_count": 1, "youre": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 2, "humans": {"_count": 1}, "animals": {"_count": 1}}, "of": {"_count": 8, "a": {"_count": 1}, "one": {"_count": 1}, "people": {"_count": 1}, "such": {"_count": 1}, "the": {"_count": 1}, "Professor": {"_count": 1}, "lads": {"_count": 1}, "only": {"_count": 1}}, "still": {"_count": 1, "hanging": {"_count": 1}}, "more": {"_count": 1, "carefully": {"_count": 1}}, "on": {"_count": 2, "them": {"_count": 1}, "a": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "oh": {"_count": 1, "what": {"_count": 1}}, "Harry": {"_count": 1, "caught": {"_count": 1}}, "upon": {"_count": 2, "them": {"_count": 1}, "those": {"_count": 1}}, "over": {"_count": 1, "Christmas": {"_count": 1}}, "he": {"_count": 3, "needs": {"_count": 1}, "wanted": {"_count": 1}, "craved": {"_count": 1}}, "fer": {"_count": 1, "yeh": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "their": {"_count": 1}}, "albeit": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "Squib": {"_count": 1}}, "the": {"_count": 1, "things": {"_count": 1}}}, "drumming": {"_count": 4, "their": {"_count": 1, "fingers": {"_count": 1}}, "his": {"_count": 1, "fingers": {"_count": 1}}, "heavily": {"_count": 1, "against": {"_count": 1}}, "its": {"_count": 1, "arms": {"_count": 1}}}, "worse": {"_count": 150, "than": {"_count": 59, "having": {"_count": 2}, "Peeves": {"_count": 1}, "that": {"_count": 3}, "ever": {"_count": 17}, "he": {"_count": 2}, "brewing": {"_count": 1}, "Voldemort": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 5}, "dead": {"_count": 2}, "Hermione": {"_count": 1}, "dragons": {"_count": 1}, "this": {"_count": 2}, "death": {"_count": 3}, "expulsion": {"_count": 1}, "Rons": {"_count": 1}, "telling": {"_count": 1}, "I": {"_count": 1}, "Ron": {"_count": 1}, "shes": {"_count": 1}, "it": {"_count": 2}, "Umbridge": {"_count": 2}, "anything": {"_count": 1}, "a": {"_count": 1}, "hearing": {"_count": 1}, "Gurdyroots": {"_count": 1}, "his": {"_count": 1}, "McGonagalls": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 25}, "?": {"_count": 2}, "!": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "expelled": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "telling": {"_count": 1}}, "for": {"_count": 6, "you": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "wear": {"_count": 2}, "him": {"_count": 1}}, "the": {"_count": 3, "dark": {"_count": 1}, "longer": {"_count": 1}, "things": {"_count": 1}}, "when": {"_count": 3, "they": {"_count": 1}, "read": {"_count": 1}, "you": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "problems": {"_count": 1, "": {"_count": 1}}, "deal": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 3, "told": {"_count": 1}, "bin": {"_count": 1}, "cant": {"_count": 1}}, "fix": {"_count": 1, "": {"_count": 1}}, "injuries": {"_count": 1, "mended": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "Harrys": {"_count": 1, "antidementor": {"_count": 1}}, "by": {"_count": 1, "far": {"_count": 1}}, "to": {"_count": 2, "watch": {"_count": 1}, "hear": {"_count": 1}}, "trouble": {"_count": 1, "if": {"_count": 1}}, "from": {"_count": 1, "here": {"_count": 1}}, "spirits": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "you": {"_count": 1}}, "job": {"_count": 1, "of": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "hundred": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "in": {"_count": 1, "Transfiguration": {"_count": 1}}, "and": {"_count": 1, "therefore": {"_count": 1}}, "first": {"_count": 1, "week": {"_count": 1}}, "tonight": {"_count": 1, "thats": {"_count": 1}}, "Keeper": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "cases": {"_count": 1, "than": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "turmoil": {"_count": 1, "than": {"_count": 1}}, "my": {"_count": 1, "scar": {"_count": 1}}, "after": {"_count": 1, "lessons": {"_count": 1}}, "mutterings": {"_count": 2, "than": {"_count": 1}, "": {"_count": 1}}, "happened": {"_count": 1, "Ron": {"_count": 1}}, "had": {"_count": 1, "happened": {"_count": 1}}, "damage": {"_count": 1, "on": {"_count": 1}}, "jolt": {"_count": 1, "of": {"_count": 1}}, "even": {"_count": 1, "than": {"_count": 1}}, "not": {"_count": 1, "better": {"_count": 1}}, "like": {"_count": 1, "meat": {"_count": 1}}, "state": {"_count": 1, "than": {"_count": 1}}, "he": {"_count": 1, "appeared": {"_count": 1}}, "things": {"_count": 1, "in": {"_count": 1}}}, "visitor": {"_count": 9, "was": {"_count": 1, "Aunt": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "palefaced": {"_count": 1, "and": {"_count": 1}}, "though": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "hammering": {"_count": 21, "on": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "pushed": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 3, "fists": {"_count": 1}, "rain": {"_count": 1}, "raindrops": {"_count": 1}}, "stopped": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 3, "fast": {"_count": 3}}, "he": {"_count": 1, "performed": {"_count": 1}}, "madly": {"_count": 1, "": {"_count": 1}}, "rain": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "letter": {"_count": 1}, "button": {"_count": 1}}, "against": {"_count": 2, "his": {"_count": 2}}, "his": {"_count": 1, "fists": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "heart": {"_count": 1, "as": {"_count": 1}}}, "visit": {"_count": 109, "the": {"_count": 15, "rest": {"_count": 1}, "village": {"_count": 5}, "year": {"_count": 1}, "Shrieking": {"_count": 1}, "las": {"_count": 1}, "hospital": {"_count": 1}, "Malfoys": {"_count": 1}, "ruin": {"_count": 1}, "Hogs": {"_count": 1}, "place": {"_count": 1}, "Gaunt": {"_count": 1}}, "Gringotts": {"_count": 2, "anyway": {"_count": 1}, "said": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "and": {"_count": 2, "Hermione": {"_count": 1}, "then": {"_count": 1}}, "Charlie": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 11, "": {"_count": 2}, "on": {"_count": 1}, "without": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 2}, "before": {"_count": 1}, "yet": {"_count": 1}, "though": {"_count": 1}, "and": {"_count": 1}}, "me": {"_count": 6, "next": {"_count": 1}, "in": {"_count": 2}, "a": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "Bill": {"_count": 1, "in": {"_count": 1}}, "her": {"_count": 2, "every": {"_count": 1}, "vault": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 2}, "Dumbledore": {"_count": 1}}, "Hermione": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "Hogsmeade": {"_count": 5, "on": {"_count": 2}, "with": {"_count": 1}, "but": {"_count": 1}, "next": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}, "Zonkos": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "really": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "discussing": {"_count": 1, "Gryffindors": {"_count": 1}}, "Hogwarts": {"_count": 2, "to": {"_count": 1}, "next": {"_count": 1}}, "punctuated": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 3}, "Morfin": {"_count": 1}, "Xenophilius": {"_count": 1}}, "him": {"_count": 4, "so": {"_count": 1}, "in": {"_count": 1}, "over": {"_count": 1}, "after": {"_count": 1}}, "Winky": {"_count": 1, "and": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "dawned": {"_count": 1, "bright": {"_count": 1}}, "your": {"_count": 2, "other": {"_count": 1}, "parents": {"_count": 1}}, "escorted": {"_count": 1, "by": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "yeh": {"_count": 1, "if": {"_count": 1}}, "Grawp": {"_count": 1, "but": {"_count": 1}}, "his": {"_count": 3, "other": {"_count": 1}, "portrait": {"_count": 1}, "greataunt": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "should": {"_count": 1, "you": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "he": {"_count": 1, "made": {"_count": 1}}, "I": {"_count": 1, "heard": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "other": {"_count": 1, "places": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "remove": {"_count": 1}}, "my": {"_count": 1, "parents": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 1}, "painting": {"_count": 1}}, "them": {"_count": 1, "again": {"_count": 1}}, "first": {"_count": 1, "which": {"_count": 1}}}, "beady": {"_count": 10, "eyes": {"_count": 4, "": {"_count": 2}, "bright": {"_count": 1}, "swept": {"_count": 1}}, "eye": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "black": {"_count": 1, "eye": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "squareframed": {"_count": 1, "eyes": {"_count": 1}}}, "Slowly": {"_count": 36, "very": {"_count": 2, "slowly": {"_count": 2}}, "the": {"_count": 8, "room": {"_count": 1}, "dogs": {"_count": 1}, "long": {"_count": 1}, "general": {"_count": 1}, "crowd": {"_count": 1}, "edge": {"_count": 1}, "days": {"_count": 1}, "four": {"_count": 1}}, "Dobby": {"_count": 1, "shook": {"_count": 1}}, "and": {"_count": 4, "carefully": {"_count": 1}, "very": {"_count": 2}, "sadly": {"_count": 1}}, "he": {"_count": 4, "gathered": {"_count": 1}, "and": {"_count": 1}, "wrote": {"_count": 1}, "drew": {"_count": 1}}, "she": {"_count": 2, "reached": {"_count": 1}, "looked": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "bowed": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "magnificently": {"_count": 1, "the": {"_count": 1}}, "tremulously": {"_count": 1, "Dudley": {"_count": 1}}, "they": {"_count": 3, "moved": {"_count": 1}, "had": {"_count": 1}, "shuffled": {"_count": 1}}, "Rons": {"_count": 1, "snores": {"_count": 1}}, "tortuously": {"_count": 1, "he": {"_count": 1}}, "Slughorn": {"_count": 1, "moved": {"_count": 1}}, "uncertainly": {"_count": 1, "dressinggowned": {"_count": 1}}, "wheezing": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "walked": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}}, "raised": {"_count": 416, "its": {"_count": 5, "head": {"_count": 3}, "eyes": {"_count": 1}, "thin": {"_count": 1}}, "the": {"_count": 37, "wand": {"_count": 10}, "bewitched": {"_count": 1}, "gnome": {"_count": 1}, "book": {"_count": 1}, "sword": {"_count": 4}, "map": {"_count": 1}, "subject": {"_count": 1}, "jagged": {"_count": 1}, "arm": {"_count": 1}, "sharp": {"_count": 1}, "Quaffle": {"_count": 1}, "cup": {"_count": 2}, "bough": {"_count": 1}, "others": {"_count": 1}, "glass": {"_count": 1}, "first": {"_count": 1}, "little": {"_count": 1}, "Snitch": {"_count": 1}, "heavybottomed": {"_count": 1}, "old": {"_count": 1}, "golden": {"_count": 1}, "hawthorn": {"_count": 1}, "beam": {"_count": 1}, "Elder": {"_count": 1}}, "his": {"_count": 165, "wand": {"_count": 74}, "voice": {"_count": 7}, "eyebrows": {"_count": 18}, "hand": {"_count": 13}, "own": {"_count": 4}, "when": {"_count": 1}, "head": {"_count": 15}, "face": {"_count": 2}, "empty": {"_count": 3}, "eyes": {"_count": 6}, "arms": {"_count": 2}, "right": {"_count": 3}, "new": {"_count": 1}, "free": {"_count": 1}, "bushy": {"_count": 1}, "goblet": {"_count": 2}, "fists": {"_count": 1}, "fist": {"_count": 1}, "shoulders": {"_count": 1}, "finger": {"_count": 1}, "pink": {"_count": 1}, "glass": {"_count": 1}, "mug": {"_count": 1}, "blackened": {"_count": 2}, "knife": {"_count": 1}, "illuminated": {"_count": 1}, "ugly": {"_count": 1}}, "a": {"_count": 22, "gigantic": {"_count": 1}, "trembling": {"_count": 1}, "long": {"_count": 1}, "wand": {"_count": 1}, "false": {"_count": 1}, "hand": {"_count": 7}, "very": {"_count": 1}, "gloved": {"_count": 2}, "pudgy": {"_count": 1}, "yellow": {"_count": 1}, "smoldering": {"_count": 1}, "large": {"_count": 1}, "wasted": {"_count": 1}, "shining": {"_count": 1}, "shaking": {"_count": 1}}, "eyebrows": {"_count": 4, "": {"_count": 1}, "at": {"_count": 1}, "holding": {"_count": 1}, "blushing": {"_count": 1}}, "in": {"_count": 9, "stands": {"_count": 1}, "triumph": {"_count": 2}, "case": {"_count": 1}, "fury": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "farewell": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "high": {"_count": 2, "in": {"_count": 1}, "above": {"_count": 1}}, "her": {"_count": 48, "wand": {"_count": 15}, "hand": {"_count": 4}, "enormous": {"_count": 1}, "eyes": {"_count": 2}, "eyebrows": {"_count": 14}, "heavily": {"_count": 1}, "head": {"_count": 3}, "own": {"_count": 3}, "upsidedown": {"_count": 1}, "QuickQuotes": {"_count": 1}, "quill": {"_count": 1}, "tearstained": {"_count": 1}, "voice": {"_count": 1}}, "taking": {"_count": 1, "picture": {"_count": 1}}, "blackdraped": {"_count": 1, "platform": {"_count": 1}}, "himself": {"_count": 5, "a": {"_count": 1}, "onto": {"_count": 1}, "slightly": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}}, "their": {"_count": 19, "wands": {"_count": 11}, "hand": {"_count": 1}, "hands": {"_count": 5}, "goblets": {"_count": 1}, "left": {"_count": 1}}, "itself": {"_count": 3, "ready": {"_count": 1}, "again": {"_count": 1}, "high": {"_count": 1}}, "": {"_count": 24, ".": {"_count": 24}}, "Rons": {"_count": 1, "Spellotaped": {"_count": 1}}, "by": {"_count": 2, "Muggles": {"_count": 2}}, "stared": {"_count": 1, "at": {"_count": 1}}, "it": {"_count": 5, "over": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "voice": {"_count": 2, "which": {"_count": 1}, "this": {"_count": 1}}, "an": {"_count": 4, "eyebrow": {"_count": 3}, "enormous": {"_count": 1}}, "He": {"_count": 1, "turned": {"_count": 1}}, "and": {"_count": 7, "ready": {"_count": 1}, "he": {"_count": 1}, "drained": {"_count": 1}, "his": {"_count": 1}, "loaded": {"_count": 1}, "at": {"_count": 1}, "heard": {"_count": 1}}, "herself": {"_count": 2, "off": {"_count": 1}, "shakily": {"_count": 1}}, "both": {"_count": 2, "its": {"_count": 1}, "his": {"_count": 1}}, "one": {"_count": 3, "heavily": {"_count": 1}, "of": {"_count": 1}, "arm": {"_count": 1}}, "seats": {"_count": 1, "draped": {"_count": 1}}, "platform": {"_count": 7, "into": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 1}, "to": {"_count": 1}, "by": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "from": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "objections": {"_count": 1, "after": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "placed": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "dirty": {"_count": 1, "knuckles": {"_count": 1}}, "stone": {"_count": 1, "dais": {"_count": 1}}, "almost": {"_count": 1, "above": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "waiting": {"_count": 1, "on": {"_count": 1}}, "voices": {"_count": 2, "echoed": {"_count": 1}, "panted": {"_count": 1}}, "as": {"_count": 1, "many": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "The": {"_count": 1, "dimly": {"_count": 1}}, "him": {"_count": 1, "up": {"_count": 1}}, "puffy": {"_count": 1, "red": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoys": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "Hogwarts": {"_count": 1, "where": {"_count": 1}}, "warning": {"_count": 1, "them": {"_count": 1}}, "supercilious": {"_count": 1, "eyebrows": {"_count": 1}}, "Hermiones": {"_count": 1, "wand": {"_count": 1}}, "pedantically": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "high": {"_count": 1}}, "Hermione": {"_count": 1, "shouted": {"_count": 1}}, "Dracos": {"_count": 1, "wand": {"_count": 1}}}, "level": {"_count": 65, "with": {"_count": 21, "Harrys": {"_count": 2}, "the": {"_count": 8}, "Neville": {"_count": 1}, "him": {"_count": 2}, "Lynch": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 3}, "them": {"_count": 1}, "Ginnys": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "voice": {"_count": 2, "still": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "threw": {"_count": 1}}, "ground": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 11, "ferocity": {"_count": 1}, "noise": {"_count": 2}, "the": {"_count": 3}, "control": {"_count": 1}, "devotion": {"_count": 1}, "security": {"_count": 1}, "mutiny": {"_count": 1}, "indignation": {"_count": 1}}, "nine": {"_count": 1, "then": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "Potions": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 3, "they": {"_count": 1}, "well": {"_count": 1}, "Luna": {"_count": 1}}, "made": {"_count": 1, "Professor": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Lupin": {"_count": 1, "knelt": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "calm": {"_count": 1}, "was": {"_count": 1}}, "one": {"_count": 2, "Dolores": {"_count": 1}, "": {"_count": 1}}, "two": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 1, "ideal": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}}, "winked": {"_count": 19, "": {"_count": 4, ".": {"_count": 4}}, "too": {"_count": 1, "": {"_count": 1}}, "silver": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 5, "put": {"_count": 1}, "departed": {"_count": 1}, "twinkled": {"_count": 1}, "Hestia": {"_count": 1}, "beckoned": {"_count": 1}}, "at": {"_count": 8, "Harry": {"_count": 3}, "them": {"_count": 2}, "him": {"_count": 3}}}, "ceiling": {"_count": 211, "": {"_count": 81, ".": {"_count": 81}}, "and": {"_count": 19, "floor": {"_count": 2}, "nearly": {"_count": 1}, "blinked": {"_count": 1}, "the": {"_count": 2}, "that": {"_count": 1}, "shook": {"_count": 1}, "windows": {"_count": 1}, "saw": {"_count": 1}, "walls": {"_count": 1}, "knocked": {"_count": 1}, "Mundungus": {"_count": 1}, "rejoined": {"_count": 1}, "illuminated": {"_count": 1}, "then": {"_count": 1}, "from": {"_count": 1}, "they": {"_count": 1}, "defend": {"_count": 1}}, "with": {"_count": 5, "books": {"_count": 1}, "an": {"_count": 1}, "expressions": {"_count": 1}, "five": {"_count": 1}, "golden": {"_count": 1}}, "was": {"_count": 6, "too": {"_count": 1}, "velvety": {"_count": 1}, "inlaid": {"_count": 1}, "thick": {"_count": 1}, "quite": {"_count": 1}, "domed": {"_count": 1}}, "dotted": {"_count": 1, "with": {"_count": 1}}, "there": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 1, "copper": {"_count": 1}}, "while": {"_count": 2, "a": {"_count": 1}, "hundreds": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "Peeves": {"_count": 1}}, "arching": {"_count": 1, "high": {"_count": 1}}, "the": {"_count": 5, "stars": {"_count": 1}, "thought": {"_count": 1}, "windows": {"_count": 1}, "scar": {"_count": 1}, "cobwebbed": {"_count": 1}}, "to": {"_count": 3, "wall": {"_count": 1}, "their": {"_count": 1}, "fall": {"_count": 1}}, "sagged": {"_count": 1, "but": {"_count": 1}}, "which": {"_count": 5, "always": {"_count": 1}, "was": {"_count": 3}, "like": {"_count": 1}}, "today": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 4, "dungeon": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "which": {"_count": 1}}, "of": {"_count": 10, "the": {"_count": 8}, "scudding": {"_count": 1}, "their": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "but": {"_count": 2, "enchanted": {"_count": 1}, "Black": {"_count": 1}}, "from": {"_count": 4, "which": {"_count": 3}, "the": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}, "lost": {"_count": 1, "in": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "there": {"_count": 1}}, "like": {"_count": 3, "brilliant": {"_count": 1}, "two": {"_count": 1}, "the": {"_count": 1}}, "onto": {"_count": 1, "Rons": {"_count": 1}}, "through": {"_count": 2, "his": {"_count": 1}, "which": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "flashed": {"_count": 1, "illuminating": {"_count": 1}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "his": {"_count": 3, "voice": {"_count": 1}, "exhausted": {"_count": 1}, "recently": {"_count": 1}}, "overhead": {"_count": 2, "began": {"_count": 1}, "Draco": {"_count": 1}}, "flickered": {"_count": 1, "and": {"_count": 1}}, "above": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "had": {"_count": 3, "turned": {"_count": 1}, "fallen": {"_count": 1}, "begun": {"_count": 1}}, "each": {"_count": 1, "showing": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "looking": {"_count": 1, "like": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 2}, "it": {"_count": 2}}, "shooting": {"_count": 1, "down": {"_count": 1}}, "fearfully": {"_count": 1, "Then": {"_count": 1}}, "identical": {"_count": 1, "unmarked": {"_count": 1}}, "gave": {"_count": 1, "the": {"_count": 1}}, "wearing": {"_count": 1, "heavily": {"_count": 1}}, "Here": {"_count": 1, "were": {"_count": 1}}, "cast": {"_count": 1, "a": {"_count": 1}}, "still": {"_count": 1, "looked": {"_count": 1}}, "swirled": {"_count": 1, "darkly": {"_count": 1}}, "The": {"_count": 1, "Mudblood": {"_count": 1}}, "without": {"_count": 1, "paying": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "its": {"_count": 1, "light": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "more": {"_count": 1, "portraits": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "higher": {"_count": 1, "and": {"_count": 1}}, "cracked": {"_count": 1, "and": {"_count": 1}}, "apart": {"_count": 1, "with": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "shaking": {"_count": 1}}}, "plainly": {"_count": 32, "I": {"_count": 1, "get": {"_count": 1}}, "there": {"_count": 1, "could": {"_count": 1}}, "not": {"_count": 3, "listening": {"_count": 1}, "taking": {"_count": 1}, "understood": {"_count": 1}}, "that": {"_count": 3, "a": {"_count": 1}, "neither": {"_count": 1}, "given": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "wasnt": {"_count": 1, "what": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "three": {"_count": 1, "apparently": {"_count": 1}}, "still": {"_count": 1, "asleep": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "front": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "playing": {"_count": 1, "for": {"_count": 1}}, "wanting": {"_count": 1, "them": {"_count": 1}}, "intent": {"_count": 1, "on": {"_count": 1}}, "horrors": {"_count": 1, "truck": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "said": {"_count": 1, "Theres": {"_count": 1}}, "wished": {"_count": 1, "him": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "before": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "each": {"_count": 1}}, "fearing": {"_count": 1, "an": {"_count": 1}}, "again": {"_count": 1, "as": {"_count": 1}}}, "hear": {"_count": 584, "him": {"_count": 44, "": {"_count": 23}, "as": {"_count": 3}, "and": {"_count": 2}, "breathing": {"_count": 1}, "moving": {"_count": 1}, "telling": {"_count": 1}, "even": {"_count": 1}, "saying": {"_count": 1}, "come": {"_count": 1}, "Harry": {"_count": 1}, "would": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 1}, "broke": {"_count": 1}, "talking": {"_count": 1}, "going": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "standing": {"_count": 1}}, "the": {"_count": 62, "letters": {"_count": 1}, "drone": {"_count": 1}, "note": {"_count": 1}, "engine": {"_count": 1}, "voice": {"_count": 2}, "lunch": {"_count": 1}, "phrase": {"_count": 1}, "Bludger": {"_count": 1}, "bus": {"_count": 1}, "buses": {"_count": 1}, "commentary": {"_count": 1}, "voices": {"_count": 1}, "rest": {"_count": 2}, "roars": {"_count": 1}, "werewolf": {"_count": 1}, "headmaster": {"_count": 1}, "creak": {"_count": 1}, "clunk": {"_count": 1}, "gnome": {"_count": 1}, "sounds": {"_count": 1}, "reasoning": {"_count": 1}, "egg": {"_count": 1}, "familiar": {"_count": 1}, "blood": {"_count": 1}, "riddle": {"_count": 1}, "news": {"_count": 2}, "name": {"_count": 1}, "scratching": {"_count": 2}, "swishing": {"_count": 1}, "words": {"_count": 1}, "answer": {"_count": 1}, "latest": {"_count": 1}, "distant": {"_count": 1}, "exact": {"_count": 1}, "terror": {"_count": 1}, "occasional": {"_count": 1}, "sound": {"_count": 1}, "prophecy": {"_count": 1}, "soft": {"_count": 1}, "worst": {"_count": 1}, "scraping": {"_count": 1}, "rustling": {"_count": 1}, "story": {"_count": 1}, "roar": {"_count": 1}, "dull": {"_count": 1}, "match": {"_count": 1}, "door": {"_count": 1}, "word": {"_count": 1}, "selfjustifying": {"_count": 1}, "men": {"_count": 1}, "tiniest": {"_count": 1}, "constant": {"_count": 1}, "barman": {"_count": 1}, "first": {"_count": 1}, "others": {"_count": 1}, "snake": {"_count": 1}, "truths": {"_count": 1}, "womans": {"_count": 1}}, "her": {"_count": 29, "": {"_count": 10}, "again": {"_count": 1}, "louder": {"_count": 1}, "muttering": {"_count": 2}, "sobbing": {"_count": 1}, "say": {"_count": 1}, "raging": {"_count": 1}, "quite": {"_count": 1}, "talking": {"_count": 1}, "and": {"_count": 1}, "ragged": {"_count": 1}, "moving": {"_count": 1}, "she": {"_count": 1}, "brain": {"_count": 1}, "crying": {"_count": 1}, "long": {"_count": 1}, "screaming": {"_count": 1}, "restraint": {"_count": 1}, "said": {"_count": 1}}, "that": {"_count": 21, "": {"_count": 3}, "we": {"_count": 1}, "great": {"_count": 1}, "Id": {"_count": 1}, "he": {"_count": 3}, "Karkaroff": {"_count": 1}, "correctly": {"_count": 1}, "car": {"_count": 1}, "his": {"_count": 1}, "so": {"_count": 1}, "after": {"_count": 1}, "none": {"_count": 1}, "prophecy": {"_count": 1}, "sort": {"_count": 1}, "you": {"_count": 2}, "I": {"_count": 1}}, "what": {"_count": 33, "they": {"_count": 3}, "its": {"_count": 1}, "you": {"_count": 1}, "was": {"_count": 3}, "theyve": {"_count": 1}, "the": {"_count": 2}, "shes": {"_count": 1}, "Hagrid": {"_count": 1}, "Miss": {"_count": 1}, "Snape": {"_count": 1}, "he": {"_count": 3}, "Karkaroff": {"_count": 1}, "it": {"_count": 1}, "youve": {"_count": 2}, "Professor": {"_count": 1}, "else": {"_count": 1}, "Ron": {"_count": 1}, "Bellatrix": {"_count": 1}, "theyre": {"_count": 1}, "Slughorn": {"_count": 1}, "Harry": {"_count": 1}, "Malfoys": {"_count": 1}, "Apparition": {"_count": 1}, "happened": {"_count": 1}, "Fred": {"_count": 1}}, "Dumbledore": {"_count": 4, "himself": {"_count": 1}, "said": {"_count": 1}, "s": {"_count": 1}, "agree": {"_count": 1}}, "about": {"_count": 18, "Gringotts": {"_count": 1}, "this": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "Saturday": {"_count": 1}, "anything": {"_count": 3}, "that": {"_count": 4}, "waterskiing": {"_count": 1}, "it": {"_count": 3}, "Florean": {"_count": 1}, "you": {"_count": 1}}, "how": {"_count": 2, "Quirrell": {"_count": 1}, "faint": {"_count": 1}}, "all": {"_count": 3, "about": {"_count": 2}, "the": {"_count": 1}}, "Hagrid": {"_count": 3, "call": {"_count": 1}, "s": {"_count": 1}, "yelling": {"_count": 1}}, "youre": {"_count": 4, "training": {"_count": 1}, "a": {"_count": 1}, "using": {"_count": 1}, "under": {"_count": 1}}, "Filch": {"_count": 1, "getting": {"_count": 1}}, "footsteps": {"_count": 5, "Filch": {"_count": 1}, "coming": {"_count": 1}, "right": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "": {"_count": 24, ".": {"_count": 18}, "!": {"_count": 2}, "?": {"_count": 4}}, "Snape": {"_count": 1, "say": {"_count": 1}}, "this": {"_count": 4, "": {"_count": 2}, "no": {"_count": 1}, "for": {"_count": 1}}, "of": {"_count": 3, "it": {"_count": 2}, "your": {"_count": 1}}, "Neville": {"_count": 1, "sobbing": {"_count": 1}}, "running": {"_count": 1, "water": {"_count": 1}}, "anything": {"_count": 12, "but": {"_count": 1}, "if": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 2}, "about": {"_count": 1}, "nor": {"_count": 1}, "youve": {"_count": 1}, "worth": {"_count": 1}, "I": {"_count": 1}, "over": {"_count": 1}, "that": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "them": {"_count": 11, "": {"_count": 3}, "both": {"_count": 1}, "please": {"_count": 1}, "too": {"_count": 2}, "before": {"_count": 1}, "complaining": {"_count": 1}, "sprinting": {"_count": 1}, "tomorrow": {"_count": 1}}, "youve": {"_count": 1, "come": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "something": {"_count": 4, "": {"_count": 2}, "The": {"_count": 1}, "clanking": {"_count": 1}}, "Quirrells": {"_count": 1, "terrible": {"_count": 1}}, "you": {"_count": 13, "talking": {"_count": 1}, "": {"_count": 3}, "criticize": {"_count": 1}, "saying": {"_count": 2}, "arrive": {"_count": 1}, "out": {"_count": 1}, "scream": {"_count": 1}, "from": {"_count": 1}, "know": {"_count": 1}, "laid": {"_count": 1}}, "said": {"_count": 4, "Mr": {"_count": 1}, "Snape": {"_count": 1}, "Anthony": {"_count": 1}, "Harry": {"_count": 1}}, "a": {"_count": 19, "thing": {"_count": 1}, "funny": {"_count": 1}, "definite": {"_count": 1}, "breakin": {"_count": 1}, "rumor": {"_count": 1}, "word": {"_count": 5}, "whistle": {"_count": 1}, "dull": {"_count": 1}, "muffled": {"_count": 1}, "distant": {"_count": 1}, "clunk": {"_count": 1}, "lift": {"_count": 1}, "deep": {"_count": 1}, "sound": {"_count": 1}, "cold": {"_count": 1}}, "its": {"_count": 3, "roots": {"_count": 1}, "heavy": {"_count": 1}, "rattling": {"_count": 1}}, "why": {"_count": 1, "you": {"_count": 1}}, "Hello": {"_count": 1, "Colin": {"_count": 1}}, "it": {"_count": 25, "": {"_count": 9}, "coming": {"_count": 1}, "over": {"_count": 2}, "gas": {"_count": 1}, "but": {"_count": 3}, "from": {"_count": 1}, "Harry": {"_count": 1}, "slopping": {"_count": 1}, "said": {"_count": 1}, "so": {"_count": 1}, "he": {"_count": 1}, "soon": {"_count": 1}, "its": {"_count": 1}, "again": {"_count": 1}}, "because": {"_count": 1, "we": {"_count": 1}}, "isnt": {"_count": 2, "a": {"_count": 2}}, "laughter": {"_count": 2, "from": {"_count": 1}, "in": {"_count": 1}}, "me": {"_count": 15, "": {"_count": 8}, "say": {"_count": 2}, "out": {"_count": 2}, "Potter": {"_count": 1}, "break": {"_count": 1}, "right": {"_count": 1}}, "Myrtles": {"_count": 1, "wails": {"_count": 1}}, "his": {"_count": 14, "musical": {"_count": 1}, "mothers": {"_count": 1}, "mother": {"_count": 1}, "parents": {"_count": 3}, "feet": {"_count": 1}, "own": {"_count": 1}, "rapid": {"_count": 1}, "information": {"_count": 1}, "soul": {"_count": 1}, "story": {"_count": 1}, "brain": {"_count": 1}, "voice": {"_count": 1}}, "another": {"_count": 1, "of": {"_count": 1}}, "Fang": {"_count": 3, "fighting": {"_count": 1}, "scratching": {"_count": 1}, "barking": {"_count": 1}}, "scraping": {"_count": 1, "thumps": {"_count": 1}}, "Ron": {"_count": 5, "thudding": {"_count": 1}, "": {"_count": 1}, "tell": {"_count": 1}, "saying": {"_count": 1}, "or": {"_count": 1}}, "echoing": {"_count": 1, "footsteps": {"_count": 1}}, "Lockhart": {"_count": 1, "dangling": {"_count": 1}}, "Dobby": {"_count": 1, "squealing": {"_count": 1}}, "Dobbys": {"_count": 1, "squeals": {"_count": 1}}, "more": {"_count": 5, "": {"_count": 1}, "details": {"_count": 1}, "footsteps": {"_count": 1}, "half": {"_count": 1}, "screams": {"_count": 1}}, "Arthur": {"_count": 1, "quickly": {"_count": 1}}, "movements": {"_count": 2, "in": {"_count": 1}, "around": {"_count": 1}}, "Voldemort": {"_count": 3, "murdering": {"_count": 1}, "ringing": {"_count": 1}, "has": {"_count": 1}}, "any": {"_count": 3, "sounds": {"_count": 1}, "more": {"_count": 2}}, "voices": {"_count": 4, "not": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}, "coming": {"_count": 1}}, "your": {"_count": 3, "teeth": {"_count": 1}, "old": {"_count": 1}, "sniveling": {"_count": 1}}, "my": {"_count": 5, "mum": {"_count": 2}, "Intruder": {"_count": 1}, "take": {"_count": 1}, "gran": {"_count": 1}}, "though": {"_count": 1, "having": {"_count": 1}}, "every": {"_count": 3, "time": {"_count": 1}, "word": {"_count": 2}}, "galloping": {"_count": 1, "": {"_count": 1}}, "whether": {"_count": 1, "Black": {"_count": 1}}, "someone": {"_count": 5, "talking": {"_count": 1}, "else": {"_count": 1}, "": {"_count": 1}, "moving": {"_count": 1}, "scuttling": {"_count": 1}}, "explanations": {"_count": 1, "said": {"_count": 1}}, "us": {"_count": 5, "The": {"_count": 1}, "Hagrids": {"_count": 1}, "Dad": {"_count": 1}, "": {"_count": 1}, "complaining": {"_count": 1}}, "were": {"_count": 3, "made": {"_count": 1}, "the": {"_count": 2}}, "their": {"_count": 2, "rattling": {"_count": 1}, "greetings": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "Dumbledores": {"_count": 1, "voice": {"_count": 1}}, "yelping": {"_count": 1, "in": {"_count": 1}}, "angry": {"_count": 1, "voices": {"_count": 1}}, "nothing": {"_count": 4, "but": {"_count": 2}, "except": {"_count": 1}, "then": {"_count": 1}}, "Nagini": {"_count": 1, "": {"_count": 1}}, "shes": {"_count": 1, "been": {"_count": 1}}, "yous": {"_count": 1, "up": {"_count": 1}}, "much": {"_count": 1, "singing": {"_count": 1}}, "screams": {"_count": 1, "and": {"_count": 1}}, "anyone": {"_count": 2, "coming": {"_count": 1}, "saying": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "an": {"_count": 3, "excellent": {"_count": 1}, "insect": {"_count": 1}, "owl": {"_count": 1}}, "yeh": {"_count": 1, "made": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "exactly": {"_count": 3, "what": {"_count": 3}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "Bagman": {"_count": 1, "shouting": {"_count": 1}}, "screaming": {"_count": 2, "and": {"_count": 2}}, "O": {"_count": 1, "Come": {"_count": 1}}, "splashing": {"_count": 1, "water": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Fleur": {"_count": 2, "Delacour": {"_count": 1}, "scream": {"_count": 1}}, "details": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}}, "Crouchs": {"_count": 1, "voice": {"_count": 1}}, "two": {"_count": 1, "voices": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Cedric": {"_count": 1, "yelling": {"_count": 1}}, "shallow": {"_count": 1, "fast": {"_count": 1}}, "noises": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 1, "Voldemort": {"_count": 1}}, "popkin": {"_count": 1, "": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "these": {"_count": 2, "facts": {"_count": 1}, "things": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "Siriuss": {"_count": 3, "mother": {"_count": 1}, "own": {"_count": 1}, "name": {"_count": 1}}, "Fred": {"_count": 2, "and": {"_count": 2}}, "Maybe": {"_count": 1, "hes": {"_count": 1}}, "Rons": {"_count": 1, "stomach": {"_count": 1}}, "distant": {"_count": 2, "sounds": {"_count": 1}, "footsteps": {"_count": 1}}, "Remus": {"_count": 1, "talk": {"_count": 1}}, "Kreacher": {"_count": 1, "coming": {"_count": 1}}, "What": {"_count": 1, "is": {"_count": 1}}, "there": {"_count": 1, "have": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "singing": {"_count": 1, "though": {"_count": 1}}, "Lunas": {"_count": 1, "ludicrous": {"_count": 1}}, "girls": {"_count": 1, "voices": {"_count": 1}}, "Seamus": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 6, "your": {"_count": 1}, "you": {"_count": 1}, "their": {"_count": 1}, "Ginny": {"_count": 1}, "Hokey": {"_count": 1}, "Royal": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "various": {"_count": 1, "inhabitants": {"_count": 1}}, "Stan": {"_count": 1, "ushering": {"_count": 1}}, "does": {"_count": 1, "it": {"_count": 1}}, "she": {"_count": 2, "had": {"_count": 1}, "is": {"_count": 1}}, "people": {"_count": 5, "running": {"_count": 1}, "complaining": {"_count": 1}, "rushing": {"_count": 1}, "moving": {"_count": 1}, "coming": {"_count": 1}}, "news": {"_count": 2, "of": {"_count": 2}}, "movement": {"_count": 2, "close": {"_count": 1}, "through": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "some": {"_count": 3, "very": {"_count": 1}, "of": {"_count": 1}, "before": {"_count": 1}}, "Im": {"_count": 1, "on": {"_count": 1}}, "Voldemorts": {"_count": 1, "name": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Hermione": {"_count": 2, "talking": {"_count": 1}, "now": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "theres": {"_count": 1, "supposed": {"_count": 1}}, "Celestinas": {"_count": 1, "voice": {"_count": 1}}, "Get": {"_count": 1, "out": {"_count": 1}}, "I": {"_count": 1, "forgot": {"_count": 1}}, "words": {"_count": 1, "of": {"_count": 1}}, "rushing": {"_count": 1, "waves": {"_count": 1}}, "sounds": {"_count": 1, "of": {"_count": 1}}, "has": {"_count": 1, "taken": {"_count": 1}}, "where": {"_count": 1, "Voldemort": {"_count": 1}}, "stories": {"_count": 1, "like": {"_count": 1}}, "himself": {"_count": 1, "whispering": {"_count": 1}}, "was": {"_count": 1, "Rons": {"_count": 1}}, "or": {"_count": 1, "see": {"_count": 1}}, "straight": {"_count": 1, "off": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "Xenophilius": {"_count": 1, "moving": {"_count": 1}}, "truly": {"_count": 1, "inspirational": {"_count": 1}}, "myself": {"_count": 1, "say": {"_count": 1}}, "Hermiones": {"_count": 1, "breathing": {"_count": 1}}, "Bellatrix": {"_count": 1, "screaming": {"_count": 1}}, "Luna": {"_count": 1, "saying": {"_count": 1}}, "shouting": {"_count": 1, "behind": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "cheers": {"_count": 1, "of": {"_count": 1}}, "trees": {"_count": 1, "creaking": {"_count": 1}}, "Peeves": {"_count": 1, "zooming": {"_count": 1}}}, "annoying": {"_count": 12, "": {"_count": 3, ".": {"_count": 3}}, "singsong": {"_count": 1, "voice": {"_count": 1}}, "Potter": {"_count": 1, "at": {"_count": 1}}, "her": {"_count": 1, "became": {"_count": 1}}, "senior": {"_count": 1, "Ministry": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "Id": {"_count": 1}}, "at": {"_count": 1, "times": {"_count": 1}}, "habit": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "111": {"_count": 1}}}, "vigorously": {"_count": 17, "": {"_count": 5, ".": {"_count": 5}}, "while": {"_count": 1, "the": {"_count": 1}}, "ears": {"_count": 1, "flapping": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "than": {"_count": 1, "she": {"_count": 1}}, "to": {"_count": 1, "bring": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "agreement": {"_count": 1}}, "and": {"_count": 2, "pulled": {"_count": 1}, "opened": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "then": {"_count": 1, "without": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}}, "Where": {"_count": 216, "do": {"_count": 12, "you": {"_count": 6}, "we": {"_count": 3}, "the": {"_count": 1}, "Vanished": {"_count": 2}}, "was": {"_count": 10, "I": {"_count": 1}, "it": {"_count": 2}, "this": {"_count": 2}, "Dumbledore": {"_count": 1}, "Malfoy": {"_count": 1}, "Ron": {"_count": 1}, "saintly": {"_count": 1}, "Voldemort": {"_count": 1}}, "to": {"_count": 5, "Find": {"_count": 3}, "start": {"_count": 1}, "begin": {"_count": 1}}, "are": {"_count": 40, "your": {"_count": 2}, "you": {"_count": 9}, "we": {"_count": 17}, "Ron": {"_count": 2}, "they": {"_count": 6}, "the": {"_count": 2}, "these": {"_count": 1}, "my": {"_count": 1}}, "is": {"_count": 38, "this": {"_count": 2}, "it": {"_count": 7}, "Miss": {"_count": 1}, "she": {"_count": 5}, "Wood": {"_count": 1}, "everyone": {"_count": 2}, "he": {"_count": 10}, "the": {"_count": 4}, "Nagini": {"_count": 1}, "there": {"_count": 1}, "Hermione": {"_count": 1}, "Albus": {"_count": 1}, "Sirius": {"_count": 1}, "Marvolo": {"_count": 1}}, "you": {"_count": 1, "ought": {"_count": 1}}, "dwell": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "are": {"_count": 1}}, "those": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 11, "?": {"_count": 11}}, "on": {"_count": 1, "earth": {"_count": 1}}, "should": {"_count": 1, "he": {"_count": 1}}, "did": {"_count": 15, "you": {"_count": 12}, "that": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "were": {"_count": 11, "the": {"_count": 2}, "you": {"_count": 5}, "Fleur": {"_count": 1}, "they": {"_count": 1}, "Fred": {"_count": 1}, "Bill": {"_count": 1}}, "re": {"_count": 4, "you": {"_count": 3}, "Bill": {"_count": 1}}, "there": {"_count": 3, "should": {"_count": 2}, "might": {"_count": 1}}, "have": {"_count": 10, "you": {"_count": 9}, "the": {"_count": 1}}, "exactly": {"_count": 2, "did": {"_count": 2}}, "now": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "mummy": {"_count": 1}, "ink": {"_count": 1}, "hell": {"_count": 1}}, "d": {"_count": 2, "you": {"_count": 2}}, "had": {"_count": 3, "they": {"_count": 1}, "Hagrid": {"_count": 1}, "he": {"_count": 1}}, "does": {"_count": 4, "this": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 2}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "would": {"_count": 4, "she": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}}, "else": {"_count": 2, "would": {"_count": 1}, "is": {"_count": 1}}, "dyou": {"_count": 4, "reckon": {"_count": 3}, "think": {"_count": 1}}, "ve": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "Theres": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "seconds": {"_count": 1, "before": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "has": {"_count": 1, "Sirius": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "where": {"_count": 1, "are": {"_count": 1}}, "a": {"_count": 1, "split": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "Ve": {"_count": 4, "you": {"_count": 3}, "they": {"_count": 1}}, "Harry": {"_count": 1, "wondered": {"_count": 1}}, "no": {"_count": 1, "proven": {"_count": 1}}, "am": {"_count": 2, "I": {"_count": 2}}, "your": {"_count": 2, "treasure": {"_count": 2}}, "how": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "chivalry": {"_count": 1, "entered": {"_count": 1}}, "havent": {"_count": 1, "we": {"_count": 1}}}, "anyway": {"_count": 173, "": {"_count": 98, "?": {"_count": 42}, ".": {"_count": 53}, "!": {"_count": 3}}, "YouKnowWho": {"_count": 1, "killed": {"_count": 1}}, "there": {"_count": 1, "wasnt": {"_count": 1}}, "Fer": {"_count": 1, "Dumbledore": {"_count": 1}}, "yeh": {"_count": 1, "couldn": {"_count": 1}}, "or": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 4, "Johnson": {"_count": 1}, "then": {"_count": 2}, "Warrington": {"_count": 1}}, "youve": {"_count": 2, "had": {"_count": 1}, "already": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "got": {"_count": 1, "y": {"_count": 1}}, "said": {"_count": 14, "Ron": {"_count": 2}, "Harry": {"_count": 2}, "Hermione": {"_count": 4}, "Lupin": {"_count": 1}, "Hagrid": {"_count": 2}, "Dean": {"_count": 1}, "Romilda": {"_count": 1}, "Mrs": {"_count": 1}}, "if": {"_count": 2, "I": {"_count": 1}, "you": {"_count": 1}}, "a": {"_count": 1, "stout": {"_count": 1}}, "Ron": {"_count": 1, "told": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "so": {"_count": 2, "never": {"_count": 1}, "we": {"_count": 1}}, "How": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 2, "had": {"_count": 1}, "told": {"_count": 1}}, "he": {"_count": 7, "pulled": {"_count": 1}, "was": {"_count": 2}, "sighed": {"_count": 1}, "checked": {"_count": 1}, "pressed": {"_count": 1}, "added": {"_count": 1}}, "we": {"_count": 1, "might": {"_count": 1}}, "No": {"_count": 1, "Aunt": {"_count": 1}}, "whispered": {"_count": 1, "Fred": {"_count": 1}}, "the": {"_count": 3, "shock": {"_count": 1}, "most": {"_count": 1}, "whole": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "Umbridge": {"_count": 1, "had": {"_count": 1}}, "cause": {"_count": 1, "theyll": {"_count": 1}}, "because": {"_count": 3, "he": {"_count": 1}, "even": {"_count": 1}, "I": {"_count": 1}}, "tha": {"_count": 1, "was": {"_count": 1}}, "whats": {"_count": 2, "": {"_count": 1}, "thediff": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "hes": {"_count": 1, "certainly": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "Id": {"_count": 1, "only": {"_count": 1}}, "lifes": {"_count": 1, "too": {"_count": 1}}, "letting": {"_count": 1, "him": {"_count": 1}}, "Malfoy": {"_count": 1, "couldve": {"_count": 1}}, "love": {"_count": 1, "potions": {"_count": 1}}, "once": {"_count": 1, "its": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "Mum": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "managed": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}}, "jabbed": {"_count": 15, "its": {"_count": 2, "tail": {"_count": 2}}, "him": {"_count": 2, "in": {"_count": 1}, "hard": {"_count": 1}}, "his": {"_count": 2, "thumb": {"_count": 1}, "own": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "a": {"_count": 2, "finger": {"_count": 2}}, "at": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}}, "impatiently": {"_count": 1, "at": {"_count": 1}}, "Hermiones": {"_count": 1, "wand": {"_count": 1}}}, "Boa": {"_count": 1, "Constrictor": {"_count": 1, "Brazil": {"_count": 1}}}, "Constrictor": {"_count": 1, "Brazil": {"_count": 1, "": {"_count": 1}}}, "Brazil": {"_count": 6, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 2}}, "here": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "boa": {"_count": 6, "constrictor": {"_count": 5, "jabbed": {"_count": 1}, "earned": {"_count": 1}, "on": {"_count": 2}, "told": {"_count": 1}}, "constrictors": {"_count": 1, "tank": {"_count": 1}}}, "constrictor": {"_count": 5, "jabbed": {"_count": 1, "its": {"_count": 1}}, "earned": {"_count": 1, "Harry": {"_count": 1}}, "on": {"_count": 2, "him": {"_count": 1}, "my": {"_count": 1}}, "told": {"_count": 1, "you": {"_count": 1}}}, "specimen": {"_count": 3, "was": {"_count": 1, "bred": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "some": {"_count": 1}}}, "bred": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "bulldogs": {"_count": 1, "": {"_count": 1}}}, "youve": {"_count": 337, "never": {"_count": 6, "been": {"_count": 2}, "used": {"_count": 1}, "missed": {"_count": 1}, "seen": {"_count": 1}, "had": {"_count": 1}}, "kept": {"_count": 1, "it": {"_count": 1}}, "had": {"_count": 16, "a": {"_count": 3}, "too": {"_count": 1}, "time": {"_count": 1}, "that": {"_count": 1}, "us": {"_count": 1}, "enough": {"_count": 2}, "all": {"_count": 2}, "it": {"_count": 1}, "these": {"_count": 1}, "your": {"_count": 1}, "Stretching": {"_count": 1}, "an": {"_count": 1}}, "got": {"_count": 111, "something": {"_count": 1}, "dirt": {"_count": 1}, "your": {"_count": 4}, "a": {"_count": 13}, "at": {"_count": 1}, "all": {"_count": 1}, "there": {"_count": 5}, "no": {"_count": 1}, "to": {"_count": 48}, "the": {"_count": 6}, "yourself": {"_count": 1}, "": {"_count": 2}, "any": {"_count": 1}, "Errol": {"_count": 1}, "one": {"_count": 2}, "another": {"_count": 1}, "here": {"_count": 1}, "anything": {"_count": 1}, "strengths": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "an": {"_count": 2}, "enough": {"_count": 2}, "visitors": {"_count": 1}, "her": {"_count": 2}, "him": {"_count": 1}, "these": {"_count": 1}, "about": {"_count": 1}, "permission": {"_count": 1}, "\u2018the": {"_count": 1}, "over": {"_count": 1}, "this": {"_count": 1}, "my": {"_count": 1}, "nothing": {"_count": 1}, "left": {"_count": 1}}, "youve": {"_count": 1, "blown": {"_count": 1}}, "blown": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 1, "ready": {"_count": 1}}, "lost": {"_count": 1, "for": {"_count": 1}}, "forgotten": {"_count": 7, "to": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 1}, "anything": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}}, "realized": {"_count": 2, "by": {"_count": 1}, "whats": {"_count": 1}}, "just": {"_count": 14, "done": {"_count": 2}, "got": {"_count": 3}, "been": {"_count": 2}, "memorized": {"_count": 1}, "come": {"_count": 1}, "said": {"_count": 2}, "had": {"_count": 1}, "checked": {"_count": 1}, "sent": {"_count": 1}}, "come": {"_count": 5, "anywhere": {"_count": 1}, "to": {"_count": 2}, "of": {"_count": 1}, "across": {"_count": 1}}, "won": {"_count": 1, "": {"_count": 1}}, "finally": {"_count": 2, "learned": {"_count": 1}, "got": {"_count": 1}}, "heard": {"_count": 6, "about": {"_count": 1}, "well": {"_count": 1}, "our": {"_count": 1}, "but": {"_count": 1}, "from": {"_count": 1}, "me": {"_count": 1}}, "been": {"_count": 44, "up": {"_count": 5}, "doing": {"_count": 3}, "thinking": {"_count": 1}, "carrying": {"_count": 1}, "his": {"_count": 1}, "through": {"_count": 4}, "letting": {"_count": 1}, "gambling": {"_count": 1}, "putting": {"_count": 1}, "in": {"_count": 2}, "keeping": {"_count": 1}, "expelled": {"_count": 1}, "rotten": {"_count": 1}, "able": {"_count": 1}, "known": {"_count": 1}, "locked": {"_count": 1}, "rushed": {"_count": 1}, "practicing": {"_count": 1}, "dragged": {"_count": 1}, "attacked": {"_count": 1}, "hiding": {"_count": 2}, "trying": {"_count": 1}, "sent": {"_count": 1}, "": {"_count": 1}, "going": {"_count": 2}, "talking": {"_count": 1}, "horrible": {"_count": 1}, "telling": {"_count": 1}, "leaving": {"_count": 1}, "too": {"_count": 1}, "a": {"_count": 1}, "possessed": {"_count": 1}}, "spoken": {"_count": 1, "clearly": {"_count": 1}}, "still": {"_count": 3, "got": {"_count": 3}}, "all": {"_count": 3, "bought": {"_count": 1}, "got": {"_count": 1}, "finished": {"_count": 1}}, "read": {"_count": 1, "them": {"_count": 1}}, "taken": {"_count": 1, "in": {"_count": 1}}, "bin": {"_count": 2, "givin": {"_count": 1}, "tellin": {"_count": 1}}, "done": {"_count": 12, "a": {"_count": 1}, "": {"_count": 6}, "that": {"_count": 2}, "enough": {"_count": 1}, "How": {"_count": 1}, "to": {"_count": 1}}, "seen": {"_count": 5, "anything": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}}, "only": {"_count": 3, "got": {"_count": 2}, "been": {"_count": 1}}, "finished": {"_count": 2, "eating": {"_count": 2}}, "ever": {"_count": 3, "met": {"_count": 1}, "come": {"_count": 1}, "seen": {"_count": 1}}, "gone": {"_count": 4, "": {"_count": 3}, "too": {"_count": 1}}, "known": {"_count": 3, "all": {"_count": 1}, "whats": {"_count": 1}, "ever": {"_count": 1}}, "toed": {"_count": 1, "the": {"_count": 1}}, "calmed": {"_count": 1, "down": {"_count": 1}}, "found": {"_count": 2, "my": {"_count": 1}, "out": {"_count": 1}}, "broken": {"_count": 1, "your": {"_count": 1}}, "used": {"_count": 1, "it": {"_count": 1}}, "learned": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "how": {"_count": 1}}, "made": {"_count": 3, "the": {"_count": 1}, "these": {"_count": 1}, "on": {"_count": 1}}, "flown": {"_count": 1, "it": {"_count": 1}}, "achieved": {"_count": 1, "a": {"_count": 1}}, "earned": {"_count": 1, "a": {"_count": 1}}, "sorted": {"_count": 1, "out": {"_count": 1}}, "copied": {"_count": 1, "down": {"_count": 1}}, "really": {"_count": 1, "no": {"_count": 1}}, "blocked": {"_count": 1, "the": {"_count": 1}}, "met": {"_count": 4, "my": {"_count": 2}, "her": {"_count": 1}, "him": {"_count": 1}}, "packed": {"_count": 1, "properly": {"_count": 1}}, "given": {"_count": 2, "me": {"_count": 1}, "up": {"_count": 1}}, "covered": {"_count": 1, "boggarts": {"_count": 1}}, "both": {"_count": 1, "put": {"_count": 1}}, "looked": {"_count": 1, "death": {"_count": 1}}, "already": {"_count": 3, "worked": {"_count": 1}, "got": {"_count": 2}}, "searched": {"_count": 1, "my": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "saved": {"_count": 2, "my": {"_count": 1}, "Ron": {"_count": 1}}, "admitted": {"_count": 1, "it": {"_count": 1}}, "put": {"_count": 1, "your": {"_count": 1}}, "obviously": {"_count": 2, "missed": {"_count": 1}, "got": {"_count": 1}}, "caused": {"_count": 1, "too": {"_count": 1}}, "landed": {"_count": 1, "yourself": {"_count": 1}}, "decided": {"_count": 1, "youre": {"_count": 1}}, "gotten": {"_count": 1, "the": {"_count": 1}}, "beaten": {"_count": 1, "me": {"_count": 1}}, "er": {"_count": 1, "obviously": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "no": {"_count": 1, "idea": {"_count": 1}}, "dotted": {"_count": 1, "the": {"_count": 1}}, "reformed": {"_count": 1, "I": {"_count": 1}}, "convinced": {"_count": 1, "Harry": {"_count": 1}}, "stopped": {"_count": 2, "having": {"_count": 2}}, "left": {"_count": 1, "school": {"_count": 1}}, "thought": {"_count": 2, "better": {"_count": 1}, "this": {"_count": 1}}, "lasted": {"_count": 1, "this": {"_count": 1}}, "watched": {"_count": 1, "someone": {"_count": 1}}, "lived": {"_count": 1, "in": {"_count": 1}}, "grown": {"_count": 2, "so": {"_count": 1}, "about": {"_count": 1}}, "inherited": {"_count": 1, "your": {"_count": 1}}, "wiped": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "ridden": {"_count": 1, "him": {"_count": 1}}, "received": {"_count": 1, "": {"_count": 1}}, "missed": {"_count": 1, "now": {"_count": 1}}, "wriggled": {"_count": 1, "out": {"_count": 1}}, "torn": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "to": {"_count": 1}}, "added": {"_count": 1, "just": {"_count": 1}}, "tried": {"_count": 1, "": {"_count": 1}}, "brought": {"_count": 1, "Alecto": {"_count": 1}}, "fed": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 1, "on": {"_count": 1}}}, "deafening": {"_count": 24, "shout": {"_count": 1, "behind": {"_count": 1}}, "crash": {"_count": 1, "landed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "tried": {"_count": 1}}, "BANG": {"_count": 1, "and": {"_count": 1}}, "groan": {"_count": 1, "from": {"_count": 1}}, "rumble": {"_count": 1, "of": {"_count": 1}}, "earsplitting": {"_count": 1, "roar": {"_count": 1}}, "roar": {"_count": 2, "that": {"_count": 1}, "from": {"_count": 1}}, "croak": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "grinding": {"_count": 1, "and": {"_count": 1}}, "scraping": {"_count": 1, "noise": {"_count": 1}}, "clang": {"_count": 1, "": {"_count": 1}}, "cheers": {"_count": 1, "and": {"_count": 1}}, "scream": {"_count": 1, "MURDER": {"_count": 1}}, "bang": {"_count": 1, "and": {"_count": 1}}, "screeching": {"_count": 1, "roar": {"_count": 1}}, "crack": {"_count": 1, "echoed": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "shattering": {"_count": 1, "crash": {"_count": 1}}, "roars": {"_count": 1, "of": {"_count": 1}}, "blast": {"_count": 1, "from": {"_count": 1}}}, "shout": {"_count": 59, "behind": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 6, "him": {"_count": 2}, "the": {"_count": 1}, "each": {"_count": 1}, "Ogden": {"_count": 1}, "her": {"_count": 1}}, "the": {"_count": 2, "last": {"_count": 1}, "truth": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "out": {"_count": 4, "but": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "anymore": {"_count": 1, "Half": {"_count": 1}}, "Argus": {"_count": 1, "Filch": {"_count": 1}}, "through": {"_count": 1, "her": {"_count": 1}}, "Dont": {"_count": 1, "leave": {"_count": 1}}, "of": {"_count": 6, "laughter": {"_count": 4}, "fury": {"_count": 1}, "surprise": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "echoed": {"_count": 1, "through": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "rent": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 3, "what": {"_count": 1}, "once": {"_count": 1}, "anger": {"_count": 1}}, "April": {"_count": 1, "Fool": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 1}, "a": {"_count": 1}, "behind": {"_count": 1}, "inside": {"_count": 1}}, "his": {"_count": 1, "name": {"_count": 1}}, "Stupefy": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "Now": {"_count": 1, "wait": {"_count": 1}}, "people": {"_count": 1, "are": {"_count": 1}}, "went": {"_count": 1, "up": {"_count": 1}}, "stuff": {"_count": 1, "like": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}, "Its": {"_count": 1, "over": {"_count": 1}}, "something": {"_count": 1, "but": {"_count": 1}}, "reached": {"_count": 1, "Harry": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "Protego": {"_count": 1, "a": {"_count": 1}}, "back": {"_count": 1, "across": {"_count": 1}}, "for": {"_count": 1, "Hermione": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "another": {"_count": 1}}}, "DUDLEY": {"_count": 8, "": {"_count": 5, "!": {"_count": 4}, "?": {"_count": 1}}, "DEMENTED": {"_count": 1, "The": {"_count": 1}}, "COME": {"_count": 1, "BACK": {"_count": 1}}, "KEEP": {"_count": 1, "YOUR": {"_count": 1}}}, "MR": {"_count": 2, "Dursley": {"_count": 1, "": {"_count": 1}}, "CROUCH": {"_count": 1, "Harry": {"_count": 1}}}, "COME": {"_count": 11, "AND": {"_count": 1, "LOOK": {"_count": 1}}, "NEAR": {"_count": 1, "MY": {"_count": 1}}, "BACK": {"_count": 6, "IN": {"_count": 1}, "AND": {"_count": 1}, "": {"_count": 3}, "YOU": {"_count": 1}}, "ON": {"_count": 2, "": {"_count": 2}}, "HERE": {"_count": 1, "": {"_count": 1}}}, "AND": {"_count": 52, "LOOK": {"_count": 1, "AT": {"_count": 1}}, "THREEQUARTERS": {"_count": 1, "Harrys": {"_count": 1}}, "BLOTTS": {"_count": 1, "Life": {"_count": 1}}, "I": {"_count": 1, "WENT": {"_count": 1}}, "HARRY": {"_count": 1, "COULD": {"_count": 1}}, "IF": {"_count": 1, "YOU": {"_count": 1}}, "MURMURS": {"_count": 1, "Harry": {"_count": 1}}, "PUT": {"_count": 1, "HER": {"_count": 1}}, "TEA": {"_count": 1, "LEAVES": {"_count": 1}}, "YOU": {"_count": 3, "KNOW": {"_count": 1}, "WILL": {"_count": 1}, "LET": {"_count": 1}}, "SIRIUS": {"_count": 1, "BLACK": {"_count": 1}}, "DOG": {"_count": 1, "Harrys": {"_count": 1}}, "DAD": {"_count": 2, "": {"_count": 2}}, "HE": {"_count": 2, "WAS": {"_count": 1}, "TOLD": {"_count": 1}}, "PRONGS": {"_count": 1, "It": {"_count": 1}}, "JAMES": {"_count": 1, "DIED": {"_count": 1}}, "CROUCH": {"_count": 1, "Harry": {"_count": 1}}, "DRUMSTRANG": {"_count": 1, "Early": {"_count": 1}}, "THE": {"_count": 4, "EYE": {"_count": 1}, "SERPENT": {"_count": 1}, "NIGHT": {"_count": 1}, "SNEAK": {"_count": 1}}, "DANGEROUS": {"_count": 1, "The": {"_count": 1}}, "BONE": {"_count": 1, "Harry": {"_count": 1}}, "UNCLES": {"_count": 2, "HOUSE": {"_count": 2}}, "IVE": {"_count": 1, "HANDLED": {"_count": 1}}, "DUMBLEDORE": {"_count": 1, "KNOWS": {"_count": 1}}, "SPHINXES": {"_count": 1, "AND": {"_count": 1}}, "EVERY": {"_count": 1, "OTHER": {"_count": 1}}, "FIND": {"_count": 1, "OUT": {"_count": 1}}, "MOST": {"_count": 2, "ANCIENT": {"_count": 2}}, "HERMIONE": {"_count": 1, "NEW": {"_count": 1}}, "PADFOOT": {"_count": 1, "Harry": {"_count": 1}}, "INJURIES": {"_count": 1, "Harry": {"_count": 1}}, "WIZARDRY": {"_count": 1, "I74II768": {"_count": 1}}, "PLANT": {"_count": 1, "POISONING": {"_count": 1}}, "HOSPITAL": {"_count": 1, "SHOP": {"_count": 1}}, "UNFORESEEN": {"_count": 1, "Luna": {"_count": 1}}, "PASSED": {"_count": 1, "BY": {"_count": 1}}, "CATASTROPHES": {"_count": 1, "": {"_count": 1}}, "FLIGHT": {"_count": 1, "Harry": {"_count": 1}}, "WONT": {"_count": 1, "Harry": {"_count": 1}}, "FAMILY": {"_count": 1, "AGAINST": {"_count": 1}}, "OPALS": {"_count": 1, "Where": {"_count": 1}}, "HER": {"_count": 1, "DAUGHTER": {"_count": 1}}, "LIES": {"_count": 1, "OF": {"_count": 1}}}, "LOOK": {"_count": 4, "AT": {"_count": 1, "THIS": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}}, "AT": {"_count": 18, "THIS": {"_count": 1, "SNAKE": {"_count": 1}}, "THE": {"_count": 7, "TABLE": {"_count": 1}, "MINISTRY": {"_count": 3}, "QUIDDITCH": {"_count": 1}, "DURSLEYS": {"_count": 1}, "DEPARTMENT": {"_count": 1}}, "FLOURISH": {"_count": 1, "AND": {"_count": 1}}, "WORK": {"_count": 1, "ITS": {"_count": 1}}, "LARGE": {"_count": 1, "Sirius": {"_count": 1}}, "SCHOOL": {"_count": 1, "YOU": {"_count": 1}}, "IT": {"_count": 1, "": {"_count": 1}}, "APPLICANTS": {"_count": 1, "OWN": {"_count": 1}}, "MINISTRY": {"_count": 1, "Sturgis": {"_count": 1}}, "BAY": {"_count": 1, "Harrys": {"_count": 1}}, "LAST": {"_count": 2, "THE": {"_count": 1}, "": {"_count": 1}}}, "THIS": {"_count": 11, "SNAKE": {"_count": 1, "": {"_count": 1}}, "ROOF": {"_count": 1, "": {"_count": 1}}, "YOU": {"_count": 1, "AND": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "NUMBER": {"_count": 1, "TO": {"_count": 1}}, "IS": {"_count": 1, "NO": {"_count": 1}}, "CASTLE": {"_count": 1, "": {"_count": 1}}, "HAS": {"_count": 1, "SOMETHING": {"_count": 1}}, "WAY": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "TELL": {"_count": 1}}, "JUST": {"_count": 1, "BECAUSE": {"_count": 1}}}, "SNAKE": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "Hermione": {"_count": 1, "plowed": {"_count": 1}}}, "YOU": {"_count": 92, "WONT": {"_count": 2, "BELIEVE": {"_count": 1}, "EVEN": {"_count": 1}}, "": {"_count": 13, "!": {"_count": 11}, "?": {"_count": 2}}, "GONE": {"_count": 1, "MAD": {"_count": 1}}, "A": {"_count": 1, "WITCH": {"_count": 1}}, "thundered": {"_count": 1, "his": {"_count": 1}}, "THREATEN": {"_count": 1, "DUDLEY": {"_count": 1}}, "COULD": {"_count": 1, "DO": {"_count": 1}}, "YOU": {"_count": 1, "WAIT": {"_count": 1}}, "WAIT": {"_count": 1, "TILL": {"_count": 1}}, "I": {"_count": 1, "DONT": {"_count": 1}}, "STOPPED": {"_count": 1, "TO": {"_count": 1}}, "UP": {"_count": 1, "TO": {"_count": 1}}, "AND": {"_count": 1, "HARRY": {"_count": 1}}, "PUT": {"_count": 1, "ANOTHER": {"_count": 1}}, "STRAIGHT": {"_count": 1, "BACK": {"_count": 1}}, "CAN": {"_count": 1, "STILL": {"_count": 1}}, "HEAR": {"_count": 1, "ME": {"_count": 1}}, "COME": {"_count": 1, "NEAR": {"_count": 1}}, "GIVE": {"_count": 1, "THIS": {"_count": 1}}, "TWO": {"_count": 1, "": {"_count": 1}}, "STUPID": {"_count": 2, "ANIMAL": {"_count": 1}, "GIRL": {"_count": 1}}, "KNOW": {"_count": 1, "WHAT": {"_count": 1}}, "BEING": {"_count": 1, "PAID": {"_count": 1}}, "HAVE": {"_count": 1, "TO": {"_count": 1}}, "DIRTY": {"_count": 1, "CHEATING": {"_count": 1}}, "DO": {"_count": 3, "NOT": {"_count": 1}, "": {"_count": 1}, "KEEP": {"_count": 1}}, "CHEATING": {"_count": 1, "SCUM": {"_count": 1}}, "FILTHY": {"_count": 1, "CHEATING": {"_count": 1}}, "DONT": {"_count": 6, "": {"_count": 1}, "UNDERSTAND": {"_count": 1}, "KNOW": {"_count": 2}, "LADDIE": {"_count": 1}, "HAVE": {"_count": 1}}, "VE": {"_count": 2, "BEEN": {"_count": 1}, "GOT": {"_count": 1}}, "AT": {"_count": 1, "SCHOOL": {"_count": 1}}, "TURNED": {"_count": 1, "UP": {"_count": 1}}, "SPEAK": {"_count": 1, "TO": {"_count": 1}}, "FACE": {"_count": 1, "HIM": {"_count": 1}}, "TALK": {"_count": 1, "ABOUT": {"_count": 1}}, "WERE": {"_count": 1, "HIS": {"_count": 1}}, "SHOULD": {"_count": 2, "HAVE": {"_count": 1}, "BE": {"_count": 1}}, "HAVENT": {"_count": 2, "": {"_count": 1}, "BEEN": {"_count": 1}}, "CANT": {"_count": 1, "APPARATE": {"_count": 1}}, "UNDERSTAND": {"_count": 1, "ME": {"_count": 1}}, "HEARD": {"_count": 1, "YOUR": {"_count": 1}}, "MAD": {"_count": 1, "MADEYE": {"_count": 1}}, "TWOVE": {"_count": 1, "EVER": {"_count": 1}}, "OR": {"_count": 1, "YOUD": {"_count": 1}}, "SWEAR": {"_count": 1, "Well": {"_count": 1}}, "ALL": {"_count": 1, "HOLED": {"_count": 1}}, "DRAGGING": {"_count": 1, "STOLEN": {"_count": 1}}, "SEE": {"_count": 1, "": {"_count": 1}}, "IDIOTS": {"_count": 1, "FILTHY": {"_count": 1}}, "LOT": {"_count": 1, "GET": {"_count": 1}}, "DOING": {"_count": 1, "": {"_count": 1}}, "MEAN": {"_count": 1, "THATS": {"_count": 1}}, "WAITING": {"_count": 1, "FOR": {"_count": 1}}, "THINK": {"_count": 3, "YOU": {"_count": 1}, "YOUD": {"_count": 1}, "IM": {"_count": 1}}, "ARE": {"_count": 1, "DOING": {"_count": 1}}, "GOT": {"_count": 1, "WHAT": {"_count": 1}}, "NO": {"_count": 1, "": {"_count": 1}}, "HAB": {"_count": 1, "": {"_count": 1}}, "WILL": {"_count": 1, "GIVE": {"_count": 1}}, "STANDING": {"_count": 1, "THERE": {"_count": 1}}, "But": {"_count": 1, "words": {"_count": 1}}, "WORRYING": {"_count": 1, "ABOUT": {"_count": 1}}, "THIEVING": {"_count": 1, "": {"_count": 1}}, "LET": {"_count": 1, "HIM": {"_count": 1}}, "HARRY": {"_count": 1, "": {"_count": 1}}, "BITCH": {"_count": 1, "": {"_count": 1}}}, "WONT": {"_count": 5, "BELIEVE": {"_count": 1, "WHAT": {"_count": 1}}, "EVEN": {"_count": 1, "LISTEN": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}}, "BELIEVE": {"_count": 3, "WHAT": {"_count": 1, "ITS": {"_count": 1}}, "IT": {"_count": 2, "": {"_count": 2}}}, "WHAT": {"_count": 25, "ITS": {"_count": 1, "DOING": {"_count": 1}}, "": {"_count": 8, "?": {"_count": 8}}, "HAVE": {"_count": 1, "I": {"_count": 1}}, "YOUR": {"_count": 1, "FATHER": {"_count": 1}}, "SCHOOL": {"_count": 1, "YOURE": {"_count": 1}}, "DYEH": {"_count": 1, "THINK": {"_count": 1}}, "WAS": {"_count": 1, "ON": {"_count": 1}}, "YOU": {"_count": 1, "DONT": {"_count": 1}}, "DID": {"_count": 1, "YOU": {"_count": 1}}, "ARE": {"_count": 2, "YOU": {"_count": 2}}, "DO": {"_count": 2, "YOU": {"_count": 2}}, "IT": {"_count": 1, "TAKES": {"_count": 1}}, "ID": {"_count": 1, "JUST": {"_count": 1}}, "YOUVE": {"_count": 1, "GOT": {"_count": 1}}, "HE": {"_count": 1, "GOT": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}}, "ITS": {"_count": 3, "DOING": {"_count": 1, "": {"_count": 1}}, "ENTIRELY": {"_count": 1, "YOUR": {"_count": 1}}, "IN": {"_count": 1, "HERE": {"_count": 1}}}, "DOING": {"_count": 3, "": {"_count": 3, "!": {"_count": 1}, "?": {"_count": 2}}}, "waddling": {"_count": 4, "toward": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "Out": {"_count": 41, "of": {"_count": 22, "the": {"_count": 15}, "order": {"_count": 1}, "respect": {"_count": 1}, "St": {"_count": 1}, "Me": {"_count": 1}, "bed": {"_count": 1}, "here": {"_count": 1}, "sheer": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "outside": {"_count": 1, "Hagrid": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 4}}, "there": {"_count": 1, "wearing": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "way": {"_count": 2}}, "rolled": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "OUT": {"_count": 1}}, "fell": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}}, "ribs": {"_count": 39, "": {"_count": 15, ".": {"_count": 15}}, "might": {"_count": 1, "already": {"_count": 1}}, "and": {"_count": 5, "pointed": {"_count": 1}, "nodded": {"_count": 1}, "jerked": {"_count": 1}, "looking": {"_count": 1}, "right": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "though": {"_count": 1}}, "hed": {"_count": 1, "let": {"_count": 1}}, "flames": {"_count": 1, "erupted": {"_count": 1}}, "were": {"_count": 1, "broken": {"_count": 1}}, "would": {"_count": 1, "break": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "but": {"_count": 2, "there": {"_count": 1}, "Dudley": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "splinter": {"_count": 1, "beneath": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "from": {"_count": 1, "Ginny": {"_count": 1}}, "your": {"_count": 1, "tooth": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "ached": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}}, "Caught": {"_count": 4, "by": {"_count": 1, "surprise": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "have": {"_count": 1}}}, "concrete": {"_count": 2, "floor": {"_count": 1, "": {"_count": 1}}, "reason": {"_count": 1, "for": {"_count": 1}}}, "leaning": {"_count": 65, "right": {"_count": 1, "up": {"_count": 1}}, "forward": {"_count": 16, "on": {"_count": 1}, "slightly": {"_count": 1}, "to": {"_count": 4}, "in": {"_count": 2}, "": {"_count": 1}, "staring": {"_count": 1}, "a": {"_count": 1}, "she": {"_count": 1}, "across": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "is": {"_count": 1}}, "against": {"_count": 12, "the": {"_count": 8}, "a": {"_count": 2}, "it": {"_count": 1}, "Harrys": {"_count": 1}}, "back": {"_count": 4, "trying": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 2}}, "out": {"_count": 2, "of": {"_count": 2}}, "closer": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 4, "him": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "upon": {"_count": 1, "a": {"_count": 1}}, "around": {"_count": 1, "Lavender": {"_count": 1}}, "sideways": {"_count": 1, "so": {"_count": 1}}, "heavily": {"_count": 3, "on": {"_count": 3}}, "low": {"_count": 1, "talking": {"_count": 1}}, "on": {"_count": 10, "Hagrid": {"_count": 1}, "his": {"_count": 6}, "the": {"_count": 3}}, "across": {"_count": 3, "Neville": {"_count": 1}, "Ginny": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 3, "for": {"_count": 1}, "so": {"_count": 1}, "closer": {"_count": 1}}}, "leapt": {"_count": 139, "back": {"_count": 4, "with": {"_count": 1}, "from": {"_count": 2}, "in": {"_count": 1}}, "from": {"_count": 9, "his": {"_count": 3}, "the": {"_count": 2}, "Moodys": {"_count": 1}, "its": {"_count": 1}, "bed": {"_count": 1}, "it": {"_count": 1}}, "into": {"_count": 5, "the": {"_count": 3}, "his": {"_count": 1}, "action": {"_count": 1}}, "to": {"_count": 23, "his": {"_count": 11}, "her": {"_count": 10}, "their": {"_count": 2}}, "forward": {"_count": 7, "but": {"_count": 2}, "and": {"_count": 3}, "": {"_count": 1}, "seized": {"_count": 1}}, "onto": {"_count": 7, "his": {"_count": 1}, "the": {"_count": 3}, "her": {"_count": 1}, "Blacks": {"_count": 1}, "Zabinis": {"_count": 1}}, "in": {"_count": 2, "and": {"_count": 1}, "shock": {"_count": 1}}, "up": {"_count": 13, "and": {"_count": 4}, "again": {"_count": 3}, "beside": {"_count": 1}, "from": {"_count": 3}, "to": {"_count": 1}, "hands": {"_count": 1}}, "out": {"_count": 14, "of": {"_count": 10}, "from": {"_count": 1}, "at": {"_count": 2}, "then": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "down": {"_count": 4, "lifted": {"_count": 1}, "the": {"_count": 1}, "onto": {"_count": 1}, "from": {"_count": 1}}, "backward": {"_count": 6, "with": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 3}, "so": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "crackled": {"_count": 1}}, "on": {"_count": 2, "him": {"_count": 1}, "Umbridge": {"_count": 1}}, "off": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "aside": {"_count": 7, "": {"_count": 1}, "the": {"_count": 2}, "to": {"_count": 1}, "at": {"_count": 1}, "permitting": {"_count": 1}, "a": {"_count": 1}}, "lightly": {"_count": 6, "from": {"_count": 2}, "onto": {"_count": 1}, "off": {"_count": 1}, "into": {"_count": 2}}, "behind": {"_count": 1, "an": {"_count": 1}}, "after": {"_count": 1, "Fred": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "gleefully": {"_count": 1, "upon": {"_count": 1}}, "uncomfortably": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 6, "and": {"_count": 1}, "Luna": {"_count": 1}, "a": {"_count": 1}, "Hagrids": {"_count": 1}, "an": {"_count": 1}, "one": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "Somebody": {"_count": 1, "had": {"_count": 1}}, "So": {"_count": 1, "these": {"_count": 1}}, "the": {"_count": 2, "last": {"_count": 1}, "wreckage": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "foolishly": {"_count": 1, "on": {"_count": 1}}}, "howls": {"_count": 5, "of": {"_count": 2, "horror": {"_count": 1}, "grief": {"_count": 1}}, "and": {"_count": 1, "moans": {"_count": 1}}, "the": {"_count": 1, "villagers": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "constrictors": {"_count": 1, "tank": {"_count": 1, "had": {"_count": 1}}}, "vanished": {"_count": 195, "": {"_count": 68, ".": {"_count": 67}, "?": {"_count": 1}}, "dropping": {"_count": 1, "the": {"_count": 1}}, "completely": {"_count": 2, "": {"_count": 1}, "leaving": {"_count": 1}}, "and": {"_count": 9, "a": {"_count": 2}, "so": {"_count": 1}, "were": {"_count": 1}, "was": {"_count": 1}, "reappeared": {"_count": 1}, "did": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 1}}, "the": {"_count": 3, "fangs": {"_count": 1}, "phoenix": {"_count": 1}, "moment": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 6}}, "from": {"_count": 23, "the": {"_count": 6}, "her": {"_count": 2}, "sight": {"_count": 8}, "view": {"_count": 4}, "Freds": {"_count": 1}, "beneath": {"_count": 1}, "his": {"_count": 1}}, "it": {"_count": 2, "rolled": {"_count": 1}, "had": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 5, "one": {"_count": 1}, "a": {"_count": 2}, "Ravenclaw": {"_count": 1}, "his": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 3}, "with": {"_count": 1}}, "except": {"_count": 1, "Harry": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "too": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 5, "she": {"_count": 1}, "Mundungus": {"_count": 1}, "they": {"_count": 1}, "suddenly": {"_count": 1}, "if": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 8, "the": {"_count": 5}, "thin": {"_count": 2}, "what": {"_count": 1}}, "to": {"_count": 3, "be": {"_count": 3}}, "instead": {"_count": 1, "there": {"_count": 1}}, "without": {"_count": 2, "trace": {"_count": 1}, "a": {"_count": 1}}, "they": {"_count": 1, "saw": {"_count": 1}}, "below": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "didnt": {"_count": 1, "it": {"_count": 1}}, "six": {"_count": 1, "months": {"_count": 1}}, "he": {"_count": 4, "turned": {"_count": 1}, "was": {"_count": 1}, "looked": {"_count": 1}, "must": {"_count": 1}}, "behind": {"_count": 3, "them": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "her": {"_count": 1, "snail": {"_count": 1}}, "then": {"_count": 1, "switched": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 2, "quickly": {"_count": 1}, "that": {"_count": 1}}, "your": {"_count": 1, "snails": {"_count": 1}}, "blocked": {"_count": 1, "by": {"_count": 1}}, "after": {"_count": 1, "it": {"_count": 1}}, "image": {"_count": 1, "after": {"_count": 1}}, "entirely": {"_count": 1, "I": {"_count": 1}}, "next": {"_count": 1, "day": {"_count": 1}}, "leaving": {"_count": 3, "the": {"_count": 1}, "an": {"_count": 1}, "nothing": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "unnaturally": {"_count": 1, "fast": {"_count": 1}}, "hand": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "at": {"_count": 1}}, "pretty": {"_count": 1, "quickly": {"_count": 1}}, "amid": {"_count": 1, "a": {"_count": 1}}, "together": {"_count": 1, "into": {"_count": 1}}, "like": {"_count": 1, "so": {"_count": 1}}, "or": {"_count": 1, "because": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "torturing": {"_count": 1, "Ron": {"_count": 1}}, "downstairs": {"_count": 1, "again": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "He": {"_count": 2, "was": {"_count": 2}}, "over": {"_count": 1, "a": {"_count": 1}}, "Malfoy": {"_count": 1, "was": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}}, "uncoiling": {"_count": 3, "itself": {"_count": 2, "rapidly": {"_count": 1}, "from": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "rapidly": {"_count": 42, "slithering": {"_count": 1, "out": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "from": {"_count": 2, "his": {"_count": 1}, "deep": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "across": {"_count": 1, "the": {"_count": 1}}, "resorting": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "those": {"_count": 1}, "Hermione": {"_count": 1}}, "numbing": {"_count": 1, "feet": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "out": {"_count": 1}}, "toward": {"_count": 2, "her": {"_count": 1}, "him": {"_count": 1}}, "swelling": {"_count": 1, "nose": {"_count": 1}}, "and": {"_count": 3, "twirling": {"_count": 1}, "would": {"_count": 1}, "Harry": {"_count": 1}}, "the": {"_count": 1, "color": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "becoming": {"_count": 1, "obsessed": {"_count": 1}}, "constructing": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "Harry": {"_count": 1}}, "then": {"_count": 2, "his": {"_count": 1}, "he": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "darkening": {"_count": 1, "sky": {"_count": 1}}, "filling": {"_count": 1, "train": {"_count": 1}}}, "throughout": {"_count": 17, "the": {"_count": 12, "reptile": {"_count": 1}, "hall": {"_count": 1}, "rest": {"_count": 1}, "stadium": {"_count": 2}, "school": {"_count": 3}, "interrogation": {"_count": 1}, "class": {"_count": 1}, "castle": {"_count": 1}, "Hall": {"_count": 1}}, "their": {"_count": 1, "encounter": {"_count": 1}}, "him": {"_count": 1, "paralyzing": {"_count": 1}}, "Fudges": {"_count": 1, "kindly": {"_count": 1}}, "and": {"_count": 1, "refused": {"_count": 1}}, "this": {"_count": 1, "conversation": {"_count": 1}}}, "screamed": {"_count": 140, "and": {"_count": 15, "started": {"_count": 1}, "ran": {"_count": 2}, "tried": {"_count": 1}, "clapped": {"_count": 1}, "dived": {"_count": 1}, "leapt": {"_count": 1}, "dropped": {"_count": 1}, "all": {"_count": 1}, "sent": {"_count": 1}, "screamed": {"_count": 1}, "so": {"_count": 1}, "even": {"_count": 1}, "Harry": {"_count": 2}}, "whacked": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 29}, "?": {"_count": 1}}, "SLYTHERIN": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "Gryffindors": {"_count": 1}, "boy": {"_count": 1}, "noise": {"_count": 1}}, "for": {"_count": 1, "he": {"_count": 1}}, "leaping": {"_count": 1, "onto": {"_count": 1}}, "but": {"_count": 4, "stayed": {"_count": 1}, "he": {"_count": 1}, "everyone": {"_count": 1}, "the": {"_count": 1}}, "SEIZE": {"_count": 1, "HIM": {"_count": 1}}, "out": {"_count": 1, "loud": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Lockhart": {"_count": 1, "but": {"_count": 1}}, "ATTACK": {"_count": 1, "": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "Cho": {"_count": 1, "pointing": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "Bagman": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 6, "next": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}, "and": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "Malfoy": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}}, "loudly": {"_count": 2, "when": {"_count": 1}, "water": {"_count": 1}}, "screamed": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "Voldemort": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 4, "agony": {"_count": 1}, "his": {"_count": 1}, "protest": {"_count": 1}, "pain": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "that": {"_count": 1, "Harrys": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "somewhere": {"_count": 1}}, "Mrs": {"_count": 3, "Weasley": {"_count": 2}, "Cattermole": {"_count": 1}}, "with": {"_count": 3, "laughter": {"_count": 1}, "derisive": {"_count": 1}, "rage": {"_count": 1}}, "Angelina": {"_count": 2, "": {"_count": 1}, "soaring": {"_count": 1}}, "their": {"_count": 1, "approval": {"_count": 1}}, "Madam": {"_count": 1, "Hooch": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 1}, "from": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}}, "Umbridge": {"_count": 1, "but": {"_count": 1}}, "her": {"_count": 1, "hands": {"_count": 1}}, "Incarcerousl": {"_count": 1, "Ropes": {"_count": 1}}, "very": {"_count": 1, "loudly": {"_count": 1}}, "Ginny": {"_count": 1, "immobilized": {"_count": 1}}, "his": {"_count": 1, "legs": {"_count": 1}}, "Cruciol": {"_count": 1, "and": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "loudly": {"_count": 1}}, "Mend": {"_count": 1, "it": {"_count": 1}}, "Gaunt": {"_count": 1, "advancing": {"_count": 1}}, "Leanne": {"_count": 1, "started": {"_count": 1}}, "apparently": {"_count": 1, "unable": {"_count": 1}}, "a": {"_count": 1, "voice": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "Snape": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "No": {"_count": 2, "Somehow": {"_count": 1}, "": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "them": {"_count": 1}}, "Mundungus": {"_count": 1, "cowering": {"_count": 1}}, "My": {"_count": 1, "wife": {"_count": 1}}, "ConfringoV": {"_count": 1, "and": {"_count": 1}}, "Be": {"_count": 1, "quiet": {"_count": 1}}, "But": {"_count": 1, "hes": {"_count": 1}}, "Avada": {"_count": 1, "KedavraY": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 1, "branch": {"_count": 1}}, "Voldemort": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}}, "running": {"_count": 199, "for": {"_count": 6, "the": {"_count": 3}, "it": {"_count": 1}, "cover": {"_count": 1}, "our": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 13}, "?": {"_count": 1}}, "to": {"_count": 10, "keep": {"_count": 3}, "lift": {"_count": 1}, "McGonagall": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}, "join": {"_count": 1}, "find": {"_count": 1}}, "toward": {"_count": 12, "them": {"_count": 4}, "him": {"_count": 3}, "the": {"_count": 4}, "us": {"_count": 1}}, "as": {"_count": 6, "fast": {"_count": 3}, "normally": {"_count": 1}, "hard": {"_count": 2}}, "until": {"_count": 1, "they": {"_count": 1}}, "jump": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 10, "underneath": {"_count": 1}, "looking": {"_count": 1}, "the": {"_count": 4}, "Hogwarts": {"_count": 1}, "after": {"_count": 1}, "in": {"_count": 1}, "Somerset": {"_count": 1}}, "into": {"_count": 6, "Snape": {"_count": 1}, "our": {"_count": 1}, "dead": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}}, "off": {"_count": 2, "now": {"_count": 1}, "into": {"_count": 1}}, "water": {"_count": 1, "there": {"_count": 1}}, "down": {"_count": 12, "his": {"_count": 6}, "the": {"_count": 6}}, "low": {"_count": 2, "Arthur": {"_count": 1}, "on": {"_count": 1}}, "very": {"_count": 1, "late": {"_count": 1}}, "high": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "away": {"_count": 9, "with": {"_count": 1}, "from": {"_count": 3}, "": {"_count": 2}, "into": {"_count": 1}, "no": {"_count": 1}, "down": {"_count": 1}}, "her": {"_count": 3, "finger": {"_count": 2}, "index": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 3}}, "up": {"_count": 5, "to": {"_count": 1}, "behind": {"_count": 1}, "the": {"_count": 2}, "and": {"_count": 1}}, "things": {"_count": 1, "Albus": {"_count": 1}}, "or": {"_count": 1, "Professor": {"_count": 1}}, "through": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 3}}, "after": {"_count": 3, "all": {"_count": 1}, "you": {"_count": 1}, "Percy": {"_count": 1}}, "a": {"_count": 5, "hand": {"_count": 2}, "finger": {"_count": 2}, "joke": {"_count": 1}}, "flat": {"_count": 2, "out": {"_count": 2}}, "one": {"_count": 2, "of": {"_count": 1}, "broad": {"_count": 1}}, "at": {"_count": 4, "a": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}, "Bellatrix": {"_count": 1}}, "along": {"_count": 5, "this": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "behind": {"_count": 1}, "the": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 7, "fingers": {"_count": 3}, "hand": {"_count": 3}, "finger": {"_count": 1}}, "wild": {"_count": 1, "in": {"_count": 1}}, "commentary": {"_count": 1, "mainly": {"_count": 1}}, "unchecked": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 8, "of": {"_count": 4}, "": {"_count": 1}, "fast": {"_count": 2}, "Voldemorts": {"_count": 1}}, "back": {"_count": 6, "up": {"_count": 2}, "toward": {"_count": 2}, "around": {"_count": 1}, "downstairs": {"_count": 1}}, "over": {"_count": 1, "all": {"_count": 1}}, "parallel": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 2, "this": {"_count": 1}, "the": {"_count": 1}}, "footsteps": {"_count": 5, "behind": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "then": {"_count": 1}, "shouts": {"_count": 1}}, "it": {"_count": 2, "as": {"_count": 1}, "through": {"_count": 1}}, "Running": {"_count": 1, "": {"_count": 1}}, "arms": {"_count": 1, "working": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 3, "every": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 2, "screaming": {"_count": 1}, "never": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 1}, "around": {"_count": 1}}, "fullpelt": {"_count": 1, "toward": {"_count": 1}}, "again": {"_count": 1, "pushing": {"_count": 1}}, "the": {"_count": 1, "length": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "between": {"_count": 1, "patches": {"_count": 1}}, "pellmell": {"_count": 1, "up": {"_count": 1}}, "an": {"_count": 1, "eye": {"_count": 1}}, "extremely": {"_count": 1, "high": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "although": {"_count": 1, "they": {"_count": 1}}, "late": {"_count": 1, "Mr": {"_count": 1}}, "downstairs": {"_count": 1, "": {"_count": 1}}, "round": {"_count": 1, "a": {"_count": 1}}, "leap": {"_count": 1, "dragging": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "bent": {"_count": 1, "double": {"_count": 1}}}, "exits": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "not": {"_count": 1}}}, "slid": {"_count": 140, "swiftly": {"_count": 1, "past": {"_count": 1}}, "the": {"_count": 10, "first": {"_count": 1}, "compartment": {"_count": 2}, "door": {"_count": 2}, "catch": {"_count": 1}, "length": {"_count": 1}, "mirror": {"_count": 1}, "Elder": {"_count": 1}, "Cloak": {"_count": 1}}, "from": {"_count": 8, "the": {"_count": 2}, "inside": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "Slughorn": {"_count": 1}, "its": {"_count": 1}, "Harrys": {"_count": 1}}, "open": {"_count": 16, "and": {"_count": 4}, "again": {"_count": 4}, "yet": {"_count": 1}, "": {"_count": 4}, "showing": {"_count": 1}, "automatically": {"_count": 1}, "the": {"_count": 1}}, "back": {"_count": 8, "their": {"_count": 1}, "the": {"_count": 2}, "out": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}}, "off": {"_count": 14, "his": {"_count": 5}, "him": {"_count": 1}, "their": {"_count": 2}, "her": {"_count": 3}, "the": {"_count": 3}}, "through": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "out": {"_count": 12, "of": {"_count": 9}, "from": {"_count": 3}}, "inside": {"_count": 1, "": {"_count": 1}}, "sideways": {"_count": 4, "on": {"_count": 1}, "through": {"_count": 1}, "off": {"_count": 1}, "down": {"_count": 1}}, "down": {"_count": 14, "it": {"_count": 3}, "the": {"_count": 5}, "to": {"_count": 2}, "an": {"_count": 1}, "six": {"_count": 1}, "her": {"_count": 1}, "through": {"_count": 1}}, "his": {"_count": 2, "legs": {"_count": 1}, "moonstone": {"_count": 1}}, "over": {"_count": 6, "a": {"_count": 2}, "its": {"_count": 1}, "him": {"_count": 2}, "Harrys": {"_count": 1}}, "smoothly": {"_count": 2, "out": {"_count": 1}, "to": {"_count": 1}}, "in": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 5, "foot": {"_count": 1}, "considerable": {"_count": 1}, "bowl": {"_count": 1}, "little": {"_count": 1}, "completed": {"_count": 1}}, "slowly": {"_count": 1, "open": {"_count": 1}}, "into": {"_count": 5, "it": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}, "Knockturn": {"_count": 1}}, "it": {"_count": 2, "shut": {"_count": 1}, "into": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "shut": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "right": {"_count": 1, "onto": {"_count": 1}}, "neatly": {"_count": 1, "onto": {"_count": 1}}, "rapidly": {"_count": 1, "down": {"_count": 1}}, "Jinxes": {"_count": 1, "for": {"_count": 1}}, "squelchily": {"_count": 1, "onto": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "backward": {"_count": 1, "again": {"_count": 1}}, "forward": {"_count": 1, "a": {"_count": 1}}, "apart": {"_count": 3, "with": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 3}}, "gently": {"_count": 1, "through": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "instantly": {"_count": 1, "out": {"_count": 1}}, "aside": {"_count": 1, "revealing": {"_count": 1}}}, "swiftly": {"_count": 32, "past": {"_count": 1, "him": {"_count": 1}}, "down": {"_count": 3, "the": {"_count": 2}, "behind": {"_count": 1}}, "toward": {"_count": 2, "Harry": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 4, "silently": {"_count": 3}, "suspiciously": {"_count": 1}}, "But": {"_count": 1, "its": {"_count": 1}}, "away": {"_count": 2, "clearing": {"_count": 1}, "from": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "across": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "beneath": {"_count": 1}}, "by": {"_count": 1, "dirty": {"_count": 1}}, "thats": {"_count": 1, "really": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "silenced": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "retching": {"_count": 1, "slightly": {"_count": 1}}}, "sworn": {"_count": 16, "a": {"_count": 1, "low": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 4, "had": {"_count": 1}, "received": {"_count": 1}, "heard": {"_count": 1}, "saw": {"_count": 1}}, "his": {"_count": 1, "overlarge": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 4, "himself": {"_count": 1}, "Dumbledore": {"_count": 1}, "pass": {"_count": 1}, "knock": {"_count": 1}}, "too": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 1, "did": {"_count": 1}}}, "hissing": {"_count": 33, "voice": {"_count": 2, "said": {"_count": 1}, "Kill": {"_count": 1}}, "fires": {"_count": 1, "all": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}, "wand": {"_count": 1, "into": {"_count": 1}}, "furiously": {"_count": 2, "it": {"_count": 1}, "to": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "escaped": {"_count": 1}}, "something": {"_count": 1, "thrashing": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 5, "a": {"_count": 1}, "spitting": {"_count": 2}, "rasping": {"_count": 1}, "trying": {"_count": 1}}, "instructions": {"_count": 1, "in": {"_count": 1}}, "noise": {"_count": 5, "": {"_count": 2}, "and": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}}, "noises": {"_count": 2, "made": {"_count": 1}, "Dedalus": {"_count": 1}}, "Well": {"_count": 1, "have": {"_count": 1}}, "For": {"_count": 1, "heavens": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "indignantly": {"_count": 1, "Ron": {"_count": 1}}, "wildly": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 1, "as": {"_count": 1}}}, "Thanksss": {"_count": 1, "amigo": {"_count": 1, "": {"_count": 1}}}, "amigo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "keeper": {"_count": 4, "of": {"_count": 3, "the": {"_count": 3}}, "and": {"_count": 1, "caretaker": {"_count": 1}}}, "shock": {"_count": 125, "": {"_count": 27, ".": {"_count": 25}, "?": {"_count": 2}}, "for": {"_count": 3, "him": {"_count": 1}, "Harry": {"_count": 1}, "old": {"_count": 1}}, "when": {"_count": 3, "one": {"_count": 1}, "Dumbledore": {"_count": 1}, "somebody": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 15, "her": {"_count": 1}, "suspicion": {"_count": 1}, "backed": {"_count": 2}, "relief": {"_count": 1}, "turning": {"_count": 1}, "anger": {"_count": 1}, "rage": {"_count": 1}, "outrage": {"_count": 1}, "excitement": {"_count": 1}, "hit": {"_count": 1}, "misery": {"_count": 1}, "gratitude": {"_count": 1}, "wonder": {"_count": 1}, "amazement": {"_count": 1}}, "came": {"_count": 1, "when": {"_count": 1}}, "disappeared": {"_count": 1, "under": {"_count": 1}}, "covered": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 2, "first": {"_count": 1}, "cheers": {"_count": 1}}, "frozen": {"_count": 1, "on": {"_count": 1}}, "identical": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 17, "Fawkes": {"_count": 1}, "white": {"_count": 1}, "seeing": {"_count": 1}, "Harry": {"_count": 1}, "finding": {"_count": 1}, "recognition": {"_count": 1}, "Lunas": {"_count": 1}, "whatever": {"_count": 1}, "excitement": {"_count": 1}, "untidy": {"_count": 1}, "her": {"_count": 1}, "losing": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "hearing": {"_count": 1}, "his": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Ron": {"_count": 1}}, "George": {"_count": 1, "told": {"_count": 1}}, "Dont": {"_count": 1, "mind": {"_count": 1}}, "to": {"_count": 6, "you": {"_count": 1}, "find": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "see": {"_count": 2}}, "at": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "We": {"_count": 1, "give": {"_count": 1}}, "was": {"_count": 2, "over": {"_count": 1}, "nothing": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "dense": {"_count": 1}, "scroll": {"_count": 1}}, "it": {"_count": 2, "would": {"_count": 1}, "was": {"_count": 1}}, "some": {"_count": 1, "invisible": {"_count": 1}}, "would": {"_count": 1, "kill": {"_count": 1}}, "Siriuss": {"_count": 1, "face": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "might": {"_count": 1}}, "Harry": {"_count": 2, "youre": {"_count": 1}, "saw": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "nearly": {"_count": 1, "landing": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "had": {"_count": 2, "taken": {"_count": 1}, "subsided": {"_count": 1}}, "knocked": {"_count": 1, "over": {"_count": 1}}, "or": {"_count": 2, "something": {"_count": 1}, "horror": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "so": {"_count": 1, "huge": {"_count": 1}}, "crashed": {"_count": 1, "over": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "Ginnys": {"_count": 1}}, "make": {"_count": 1, "themselves": {"_count": 1}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "visible": {"_count": 1, "behind": {"_count": 1}}, "shot": {"_count": 1, "through": {"_count": 1}}, "flit": {"_count": 1, "across": {"_count": 1}}, "showed": {"_count": 1, "in": {"_count": 1}}}, "kept": {"_count": 337, "saying": {"_count": 9, "where": {"_count": 1}, "fiercely": {"_count": 1}, "stuff": {"_count": 1}, "he": {"_count": 1}, "youd": {"_count": 1}, "nobody": {"_count": 1}, "\u2018Gregorovitch": {"_count": 1}, "": {"_count": 2}}, "all": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 15, "at": {"_count": 2}, "around": {"_count": 4}, "nervously": {"_count": 1}, "darkly": {"_count": 1}, "back": {"_count": 2}, "behind": {"_count": 1}, "left": {"_count": 1}, "over": {"_count": 3}}, "it": {"_count": 5, "from": {"_count": 1}, "fresh": {"_count": 1}, "shut": {"_count": 1}, "for": {"_count": 1}, "on": {"_count": 1}}, "his": {"_count": 24, "eyes": {"_count": 12}, "mind": {"_count": 1}, "hood": {"_count": 1}, "wand": {"_count": 2}, "mouth": {"_count": 1}, "hand": {"_count": 1}, "face": {"_count": 3}, "head": {"_count": 1}, "voice": {"_count": 1}, "distance": {"_count": 1}}, "pointing": {"_count": 3, "at": {"_count": 2}, "her": {"_count": 1}}, "coming": {"_count": 3, "back": {"_count": 2}, "over": {"_count": 1}}, "them": {"_count": 7, "wide": {"_count": 1}, "working": {"_count": 1}, "closed": {"_count": 1}, "all": {"_count": 2}, "at": {"_count": 1}, "on": {"_count": 1}}, "to": {"_count": 5, "his": {"_count": 2}, "themselves": {"_count": 1}, "the": {"_count": 2}}, "bringing": {"_count": 2, "back": {"_count": 1}, "out": {"_count": 1}}, "on": {"_count": 3, "running": {"_count": 1}, "asking": {"_count": 1}, "and": {"_count": 1}}, "losing": {"_count": 4, "his": {"_count": 2}, "on": {"_count": 1}, "heart": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 3}}, "talking": {"_count": 7, "to": {"_count": 2}, "about": {"_count": 2}, "in": {"_count": 1}, "though": {"_count": 1}, "and": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "looming": {"_count": 1, "up": {"_count": 1}}, "wandering": {"_count": 1, "up": {"_count": 1}}, "well": {"_count": 3, "secret": {"_count": 1}, "clear": {"_count": 1}, "out": {"_count": 1}}, "as": {"_count": 1, "close": {"_count": 1}}, "shouting": {"_count": 1, "different": {"_count": 1}}, "divebombing": {"_count": 1, "each": {"_count": 1}}, "nagging": {"_count": 1, "them": {"_count": 1}}, "furling": {"_count": 1, "out": {"_count": 1}}, "threatening": {"_count": 1, "to": {"_count": 1}}, "sniffing": {"_count": 1, "": {"_count": 1}}, "throwing": {"_count": 4, "them": {"_count": 1}, "out": {"_count": 1}, "back": {"_count": 1}, "him": {"_count": 1}}, "being": {"_count": 2, "woken": {"_count": 1}, "blown": {"_count": 1}}, "buyin": {"_count": 1, "me": {"_count": 1}}, "him": {"_count": 11, "off": {"_count": 1}, "upstairs": {"_count": 1}, "as": {"_count": 1}, "clutching": {"_count": 1}, "on": {"_count": 1}, "alive": {"_count": 2}, "waiting": {"_count": 1}, "out": {"_count": 1}, "rooted": {"_count": 1}, "temporarily": {"_count": 1}}, "making": {"_count": 1, "odd": {"_count": 1}}, "waking": {"_count": 1, "in": {"_count": 1}}, "still": {"_count": 1, "and": {"_count": 1}}, "winking": {"_count": 1, "cheekily": {"_count": 1}}, "patting": {"_count": 3, "her": {"_count": 1}, "Rons": {"_count": 1}, "his": {"_count": 1}}, "colliding": {"_count": 1, "on": {"_count": 1}}, "sliding": {"_count": 1, "down": {"_count": 1}}, "refilling": {"_count": 1, "itself": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "crackling": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 6, "": {"_count": 4}, "in": {"_count": 1}, "alive": {"_count": 1}}, "belching": {"_count": 1, "large": {"_count": 1}}, "busy": {"_count": 1, "by": {"_count": 1}}, "within": {"_count": 1, "allmagic": {"_count": 1}}, "blotting": {"_count": 1, "his": {"_count": 1}}, "flicking": {"_count": 1, "pufferfish": {"_count": 1}}, "standing": {"_count": 2, "in": {"_count": 1}, "by": {"_count": 1}}, "asking": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "quiet": {"_count": 6, "and": {"_count": 1}, "but": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "about": {"_count": 1}}, "absentmindedly": {"_count": 1, "picking": {"_count": 1}}, "popping": {"_count": 2, "up": {"_count": 2}}, "barging": {"_count": 1, "into": {"_count": 1}}, "glancing": {"_count": 8, "nervously": {"_count": 1}, "at": {"_count": 1}, "down": {"_count": 1}, "along": {"_count": 1}, "around": {"_count": 2}, "back": {"_count": 2}}, "close": {"_count": 2, "to": {"_count": 2}}, "watch": {"_count": 2, "he": {"_count": 1}, "over": {"_count": 1}}, "an": {"_count": 1, "annoyingly": {"_count": 1}}, "Harry": {"_count": 2, "as": {"_count": 1}, "Ron": {"_count": 1}}, "lighting": {"_count": 1, "up": {"_count": 1}}, "mounting": {"_count": 1, "the": {"_count": 1}}, "changing": {"_count": 1, "into": {"_count": 1}}, "shooting": {"_count": 4, "furtive": {"_count": 1}, "suspicious": {"_count": 1}, "over": {"_count": 1}, "Bill": {"_count": 1}}, "breaking": {"_count": 2, "off": {"_count": 1}, "into": {"_count": 1}}, "their": {"_count": 3, "spare": {"_count": 1}, "broomsticks": {"_count": 1}, "progress": {"_count": 1}}, "quite": {"_count": 1, "still": {"_count": 1}}, "hurrying": {"_count": 3, "up": {"_count": 2}, "forward": {"_count": 1}}, "tethered": {"_count": 1, "and": {"_count": 1}}, "intruding": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "cutting": {"_count": 1, "across": {"_count": 1}}, "yelling": {"_count": 1, "": {"_count": 1}}, "muttering": {"_count": 1, "out": {"_count": 1}}, "drifting": {"_count": 1, "across": {"_count": 1}}, "tutting": {"_count": 1, "": {"_count": 1}}, "hitting": {"_count": 2, "each": {"_count": 1}, "Harrys": {"_count": 1}}, "checking": {"_count": 4, "his": {"_count": 2}, "their": {"_count": 1}, "Rons": {"_count": 1}}, "me": {"_count": 6, "company": {"_count": 1}, "sane": {"_count": 1}, "imprisoned": {"_count": 1}, "informed": {"_count": 1}, "out": {"_count": 1}, "healthy": {"_count": 1}}, "bumping": {"_count": 1, "his": {"_count": 1}}, "rising": {"_count": 1, "up": {"_count": 1}}, "wondering": {"_count": 1, "where": {"_count": 1}}, "tumbling": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 1, "impressive": {"_count": 1}}, "unusually": {"_count": 1, "still": {"_count": 1}}, "running": {"_count": 3, "his": {"_count": 1}, "over": {"_count": 1}, "into": {"_count": 1}}, "up": {"_count": 3, "a": {"_count": 3}}, "climbing": {"_count": 1, "and": {"_count": 1}}, "dashing": {"_count": 1, "across": {"_count": 1}}, "shaking": {"_count": 1, "hands": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "squeaking": {"_count": 1, "their": {"_count": 1}}, "hurting": {"_count": 1, "he": {"_count": 1}}, "predicting": {"_count": 1, "Harrys": {"_count": 1}}, "shuffling": {"_count": 1, "around": {"_count": 1}}, "moving": {"_count": 2, "munching": {"_count": 1}, "his": {"_count": 1}}, "her": {"_count": 4, "back": {"_count": 1}, "eyes": {"_count": 1}, "promise": {"_count": 1}, "wand": {"_count": 1}}, "twirling": {"_count": 1, "his": {"_count": 1}}, "practicing": {"_count": 1, "until": {"_count": 1}}, "telling": {"_count": 6, "people": {"_count": 1}, "me": {"_count": 3}, "us": {"_count": 1}, "himself": {"_count": 1}}, "this": {"_count": 1, "up": {"_count": 1}}, "bowing": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 5, "bitterness": {"_count": 1}, "fifth": {"_count": 1}, "Pensieve": {"_count": 2}, "part": {"_count": 1}}, "bursting": {"_count": 1, "into": {"_count": 1}}, "springing": {"_count": 1, "this": {"_count": 1}}, "missing": {"_count": 1, "his": {"_count": 1}}, "calling": {"_count": 2, "her": {"_count": 1}, "forth": {"_count": 1}}, "walking": {"_count": 2, "down": {"_count": 1}, "": {"_count": 1}}, "whispering": {"_count": 1, "to": {"_count": 1}}, "flying": {"_count": 1, "across": {"_count": 1}}, "accidentally": {"_count": 1, "sending": {"_count": 1}}, "wishing": {"_count": 1, "him": {"_count": 1}}, "issuing": {"_count": 1, "from": {"_count": 1}}, "flashing": {"_count": 3, "across": {"_count": 1}, "before": {"_count": 1}, "on": {"_count": 1}}, "listening": {"_count": 1, "just": {"_count": 1}}, "revisiting": {"_count": 1, "the": {"_count": 1}}, "open": {"_count": 1, "all": {"_count": 1}}, "lawn": {"_count": 1, "": {"_count": 1}}, "clicking": {"_count": 1, "until": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "Gringotts": {"_count": 1}}, "herself": {"_count": 1, "alive": {"_count": 1}}, "appearing": {"_count": 2, "wherever": {"_count": 1}, "around": {"_count": 1}}, "anxiously": {"_count": 1, "checking": {"_count": 1}}, "aching": {"_count": 1, "all": {"_count": 1}}, "reliving": {"_count": 1, "Saturdays": {"_count": 1}}, "my": {"_count": 1, "temper": {"_count": 1}}, "using": {"_count": 1, "on": {"_count": 1}}, "our": {"_count": 1, "promises": {"_count": 1}}, "sneaking": {"_count": 1, "peeks": {"_count": 1}}, "letting": {"_count": 1, "off": {"_count": 1}}, "laughing": {"_count": 1, "so": {"_count": 1}}, "locked": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "blocking": {"_count": 1, "me": {"_count": 1}}, "instructing": {"_count": 1, "him": {"_count": 1}}, "reminding": {"_count": 1, "them": {"_count": 1}}, "messing": {"_count": 1, "up": {"_count": 1}}, "happening": {"_count": 1, "to": {"_count": 1}}, "reverting": {"_count": 1, "to": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "snatching": {"_count": 1, "the": {"_count": 1}}, "putting": {"_count": 2, "down": {"_count": 1}, "off": {"_count": 1}}, "dropping": {"_count": 1, "his": {"_count": 1}}, "confusing": {"_count": 1, "dates": {"_count": 1}}, "shunting": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 2, "you": {"_count": 1}, "him": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "that": {"_count": 2, "quiet": {"_count": 1}, "sister": {"_count": 1}}, "for": {"_count": 1, "anyone": {"_count": 1}}, "playing": {"_count": 1, "the": {"_count": 1}}, "cropping": {"_count": 1, "up": {"_count": 1}}, "forgetting": {"_count": 1, "that": {"_count": 1}}, "turning": {"_count": 1, "cold": {"_count": 1}}, "sidling": {"_count": 1, "up": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "safe": {"_count": 1, "and": {"_count": 1}}, "reciting": {"_count": 2, "their": {"_count": 1}, "in": {"_count": 1}}, "at": {"_count": 1, "bay": {"_count": 1}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "pace": {"_count": 1, "with": {"_count": 1}}, "visiting": {"_count": 1, "because": {"_count": 1}}, "prickling": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "pieces": {"_count": 1}}, "chucking": {"_count": 1, "goat": {"_count": 1}}, "thinking": {"_count": 2, "I": {"_count": 2}}, "hoping": {"_count": 1, "youd": {"_count": 1}}, "swallowing": {"_count": 1, "his": {"_count": 1}}, "your": {"_count": 1, "trap": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "swearing": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 1, "whole": {"_count": 1}}, "himself": {"_count": 1, "floppy": {"_count": 1}}, "guardian": {"_count": 1, "in": {"_count": 1}}, "smiling": {"_count": 1, "and": {"_count": 1}}}, "cup": {"_count": 114, "of": {"_count": 25, "strong": {"_count": 2}, "tea": {"_count": 19}, "cocoa": {"_count": 1}, "very": {"_count": 1}, "cold": {"_count": 2}}, "o": {"_count": 2, "tea": {"_count": 1}, "dandelion": {"_count": 1}}, "a": {"_count": 2, "great": {"_count": 1}, "final": {"_count": 1}}, "six": {"_count": 1, "years": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "to": {"_count": 7, "your": {"_count": 1}, "see": {"_count": 1}, "his": {"_count": 3}, "crack": {"_count": 1}, "Ron": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "again": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "from": {"_count": 2, "him": {"_count": 1}, "Percy": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 13}, "?": {"_count": 1}, "!": {"_count": 4}}, "for": {"_count": 1, "thirty": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 1}, "his": {"_count": 1}}, "was": {"_count": 7, "somewhere": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}, "taken": {"_count": 1}, "not": {"_count": 1}, "missing": {"_count": 1}, "stolen": {"_count": 1}}, "first": {"_count": 2, "was": {"_count": 1}, "gets": {"_count": 1}}, "and": {"_count": 7, "Harry": {"_count": 1}, "dived": {"_count": 1}, "Hepzibah": {"_count": 1}, "the": {"_count": 2}, "locket": {"_count": 1}, "then": {"_count": 1}}, "had": {"_count": 2, "not": {"_count": 1}, "been": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "stood": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "my": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "being": {"_count": 1, "pushed": {"_count": 1}}, "clear": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "me": {"_count": 1}, "a": {"_count": 1}, "two": {"_count": 1}}, "or": {"_count": 1, "glass": {"_count": 1}}, "rattled": {"_count": 1, "in": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "while": {"_count": 1}}, "by": {"_count": 1, "one": {"_count": 1}}, "back": {"_count": 1, "off": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "the": {"_count": 1, "locket": {"_count": 1}}, "holding": {"_count": 1, "it": {"_count": 1}}, "together": {"_count": 1, "with": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "sparkled": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "reposed": {"_count": 1, "was": {"_count": 1}}, "hooking": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "skewered": {"_count": 1, "by": {"_count": 1}}, "Alone": {"_count": 1, "amongst": {"_count": 1}}, "lying": {"_count": 1, "innocently": {"_count": 1}}, "I": {"_count": 1, "I": {"_count": 1}}}, "strong": {"_count": 76, "sweet": {"_count": 1, "tea": {"_count": 1}}, "tea": {"_count": 2, "back": {"_count": 1}, "into": {"_count": 1}}, "enough": {"_count": 9, "": {"_count": 2}, "to": {"_count": 5}, "doesnt": {"_count": 1}, "both": {"_count": 1}}, "impression": {"_count": 1, "that": {"_count": 1}}, "smell": {"_count": 5, "of": {"_count": 5}}, "icy": {"_count": 1, "draft": {"_count": 1}}, "you": {"_count": 1, "didnt": {"_count": 1}}, "winds": {"_count": 1, "and": {"_count": 1}}, "side": {"_count": 1, "together": {"_count": 1}}, "that": {"_count": 3, "they": {"_count": 1}, "even": {"_count": 1}, "stuff": {"_count": 1}}, "as": {"_count": 2, "ever": {"_count": 1}, "we": {"_count": 1}}, "defense": {"_count": 1, "Hagrid": {"_count": 1}}, "Patronus": {"_count": 1, "": {"_count": 1}}, "clammy": {"_count": 1, "hands": {"_count": 1}}, "fit": {"_count": 1, "of": {"_count": 1}}, "accent": {"_count": 1, "": {"_count": 1}}, "green": {"_count": 1, "light": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "clear": {"_count": 1, "voice": {"_count": 1}}, "Confundus": {"_count": 1, "Charm": {"_count": 1}}, "and": {"_count": 3, "very": {"_count": 1}, "too": {"_count": 1}, "he": {"_count": 1}}, "grip": {"_count": 1, "and": {"_count": 1}}, "desire": {"_count": 2, "to": {"_count": 2}}, "gray": {"_count": 1, "hands": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "surge": {"_count": 1, "of": {"_count": 1}}, "bond": {"_count": 2, "of": {"_count": 2}}, "from": {"_count": 1, "within": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}, "Yorkshire": {"_count": 1, "accents": {"_count": 1}}, "there": {"_count": 1, "rose": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "Harrys": {"_count": 1}}, "urge": {"_count": 2, "to": {"_count": 2}}, "inclination": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "his": {"_count": 1}}, "jaw": {"_count": 1, "she": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "love": {"_count": 1, "To": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "word": {"_count": 1, "said": {"_count": 1}}, "though": {"_count": 1, "inexplicable": {"_count": 1}}, "they": {"_count": 1, "have": {"_count": 1}}, "silvery": {"_count": 1, "glow": {"_count": 1}}, "a": {"_count": 1, "moment": {"_count": 1}}, "wind": {"_count": 1, "gusted": {"_count": 1}}, "likelihood": {"_count": 1, "of": {"_count": 1}}, "what": {"_count": 1, "gift": {"_count": 1}}}, "apologized": {"_count": 3, "over": {"_count": 2, "and": {"_count": 2}}, "for": {"_count": 1, "calling": {"_count": 1}}}, "gibber": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "snap": {"_count": 26, "playfully": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "and": {"_count": 3, "whispered": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "off": {"_count": 1, "as": {"_count": 1}}, "so": {"_count": 1, "Harry": {"_count": 1}}, "made": {"_count": 1, "them": {"_count": 1}}, "the": {"_count": 1, "man": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "Dudleys": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "back": {"_count": 1, "so": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}}, "playfully": {"_count": 2, "at": {"_count": 1, "their": {"_count": 1}}, "Wair": {"_count": 1, "is": {"_count": 1}}}, "heels": {"_count": 35, "as": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "scene": {"_count": 1}}, "looking": {"_count": 1, "impatient": {"_count": 1}}, "and": {"_count": 2, "heard": {"_count": 1}, "shook": {"_count": 1}}, "march": {"_count": 1, "away": {"_count": 1}}, "disappeared": {"_count": 3, "behind": {"_count": 1}, "up": {"_count": 1}, "over": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "some": {"_count": 1, "of": {"_count": 1}}, "gazing": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "either": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}, "moments": {"_count": 1, "later": {"_count": 1}}, "Neville": {"_count": 1, "bringing": {"_count": 1}}, "then": {"_count": 1, "pushed": {"_count": 1}}, "Fang": {"_count": 1, "gave": {"_count": 1}}, "lighting": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "hair": {"_count": 1}}, "of": {"_count": 2, "shoes": {"_count": 1}, "her": {"_count": 1}}, "making": {"_count": 1, "the": {"_count": 1}}}, "bitten": {"_count": 17, "off": {"_count": 1, "his": {"_count": 1}}, "hand": {"_count": 2, "had": {"_count": 2}}, "him": {"_count": 1, "on": {"_count": 1}}, "Muggleloving": {"_count": 1, "fool": {"_count": 1}}, "five": {"_count": 1, "times": {"_count": 1}}, "scratched": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "somebody": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "its": {"_count": 1, "serious": {"_count": 1}}, "Fred": {"_count": 1, "on": {"_count": 1}}, "children": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "swearing": {"_count": 8, "it": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "whistle": {"_count": 1}}, "angrily": {"_count": 1, "at": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "squeeze": {"_count": 13, "him": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "shoulder": {"_count": 1}}, "in": {"_count": 3, "": {"_count": 1}, "there": {"_count": 1}, "with": {"_count": 1}}, "and": {"_count": 1, "returned": {"_count": 1}}, "through": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 1, "inter": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "side": {"_count": 1, "by": {"_count": 1}}, "than": {"_count": 1, "it": {"_count": 1}}}, "death": {"_count": 186, "": {"_count": 47, ".": {"_count": 37}, "!": {"_count": 4}, "?": {"_count": 6}}, "if": {"_count": 2, "you": {"_count": 1}, "your": {"_count": 1}}, "hed": {"_count": 1, "take": {"_count": 1}}, "but": {"_count": 2, "at": {"_count": 1}, "instead": {"_count": 1}}, "in": {"_count": 6, "their": {"_count": 1}, "the": {"_count": 3}, "spite": {"_count": 1}, "June": {"_count": 1}}, "that": {"_count": 2, "threeheaded": {"_count": 1}, "he": {"_count": 1}}, "is": {"_count": 5, "but": {"_count": 2}, "nothing": {"_count": 1}, "a": {"_count": 1}, "coming": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "threats": {"_count": 1, "sir": {"_count": 1}}, "and": {"_count": 12, "it": {"_count": 1}, "our": {"_count": 1}, "destruction": {"_count": 1}, "that": {"_count": 1}, "walking": {"_count": 1}, "darkness": {"_count": 1}, "his": {"_count": 1}, "Zacharias": {"_count": 1}, "although": {"_count": 1}, "Albuss": {"_count": 1}, "in": {"_count": 1}, "Albus": {"_count": 1}}, "of": {"_count": 14, "that": {"_count": 1}, "a": {"_count": 5}, "one": {"_count": 1}, "Mr": {"_count": 1}, "an": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}, "Albus": {"_count": 1}}, "omens": {"_count": 3, "everywhere": {"_count": 1}, "is": {"_count": 1}, "in": {"_count": 1}}, "omen": {"_count": 1, "he": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 2, "worked": {"_count": 1}, "occurred": {"_count": 1}}, "sentence": {"_count": 2, "": {"_count": 1}, "pronounced": {"_count": 1}}, "rattle": {"_count": 1, "": {"_count": 1}}, "toll": {"_count": 1, "mounted": {"_count": 1}}, "which": {"_count": 2, "he": {"_count": 1}, "we": {"_count": 1}}, "before": {"_count": 1, "life": {"_count": 1}}, "by": {"_count": 3, "decapitation": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}}, "with": {"_count": 4, "even": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "Snape": {"_count": 1}}, "stand": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 5, "coming": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}, "striding": {"_count": 1}, "planned": {"_count": 1}}, "to": {"_count": 1, "escape": {"_count": 1}}, "Harry": {"_count": 6, "": {"_count": 3}, "for": {"_count": 1}, "quoted": {"_count": 1}, "master": {"_count": 1}}, "has": {"_count": 2, "affected": {"_count": 1}, "always": {"_count": 1}}, "Dumbledore": {"_count": 2, "went": {"_count": 1}, "": {"_count": 1}}, "penalty": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "some": {"_count": 1, "fifteen": {"_count": 1}}, "I": {"_count": 3, "assure": {"_count": 1}, "think": {"_count": 1}, "do": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "might": {"_count": 1}}, "thing": {"_count": 1, "people": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "They": {"_count": 1, "attacked": {"_count": 1}}, "will": {"_count": 2, "not": {"_count": 2}}, "so": {"_count": 1, "narrowly": {"_count": 1}}, "than": {"_count": 1, "human": {"_count": 1}}, "said": {"_count": 2, "Nick": {"_count": 1}, "Dumbledore": {"_count": 1}}, "felt": {"_count": 2, "that": {"_count": 1}, "different": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "or": {"_count": 3, "any": {"_count": 1}, "perhaps": {"_count": 1}, "madness": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 1}, "will": {"_count": 1}, "pumped": {"_count": 1}}, "Hokey": {"_count": 1, "confessed": {"_count": 1}}, "would": {"_count": 5, "be": {"_count": 2}, "occur": {"_count": 1}, "protect": {"_count": 1}, "not": {"_count": 1}}, "Why": {"_count": 1, "did": {"_count": 1}}, "Voldemort": {"_count": 1, "has": {"_count": 1}}, "AND": {"_count": 1, "HER": {"_count": 1}}, "didnt": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "Bathilda": {"_count": 1, "was": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "appeared": {"_count": 1, "at": {"_count": 1}}, "approaches": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "itself": {"_count": 1, "ignoring": {"_count": 1}}, "mask": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "something": {"_count": 1, "Lord": {"_count": 1}}, "Grindelwald": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 1, "merely": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "themselves": {"_count": 1}}, "though": {"_count": 1, "love": {"_count": 1}}, "like": {"_count": 1, "Ignotus": {"_count": 1}}}, "worst": {"_count": 88, "of": {"_count": 12, "all": {"_count": 2}, "our": {"_count": 1}, "it": {"_count": 6}, "the": {"_count": 2}, "their": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 1}, "a": {"_count": 1}, "others": {"_count": 1}, "Transfiguration": {"_count": 1}}, "thing": {"_count": 6, "that": {"_count": 2}, "thats": {"_count": 1}, "a": {"_count": 1}, "of": {"_count": 1}, "was": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}, "memory": {"_count": 1, "of": {"_count": 1}}, "fears": {"_count": 5, "in": {"_count": 1}, "were": {"_count": 2}, "had": {"_count": 1}, "confirmed": {"_count": 1}}, "defeat": {"_count": 1, "in": {"_count": 1}}, "headmaster": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 1, "ready": {"_count": 1}}, "scene": {"_count": 1, "he": {"_count": 1}}, "day": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 3, "had": {"_count": 1}, "did": {"_count": 1}, "set": {"_count": 1}}, "ever": {"_count": 1, "": {"_count": 1}}, "birthday": {"_count": 1, "present": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "is": {"_count": 3, "coming": {"_count": 1}, "yet": {"_count": 1}, "": {"_count": 1}}, "place": {"_count": 1, "hed": {"_count": 1}}, "omen": {"_count": 1, "of": {"_count": 1}}, "subject": {"_count": 1, "and": {"_count": 1}}, "luck": {"_count": 1, "in": {"_count": 1}}, "experiences": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "happened": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 3}}, "weapon": {"_count": 1, "": {"_count": 1}}, "suspicions": {"_count": 1, "about": {"_count": 1}}, "fear": {"_count": 5, "was": {"_count": 2}, "": {"_count": 1}, "confirmed": {"_count": 1}, "isnt": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "memories": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "enemy": {"_count": 2, "face": {"_count": 1}, "just": {"_count": 1}}, "mass": {"_count": 1, "Muggle": {"_count": 1}}, "kinds": {"_count": 1, "of": {"_count": 1}}, "perhaps": {"_count": 1, "was": {"_count": 1}}, "moments": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 1, "quickly": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Monday": {"_count": 1, "Ive": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "supporters": {"_count": 1, "have": {"_count": 1}}, "team": {"_count": 1, "Ive": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "conclusion": {"_count": 1, "dont": {"_count": 1}}, "practices": {"_count": 1, "they": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "punishment": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "then": {"_count": 1}}, "bit": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "scream": {"_count": 1, "yet": {"_count": 1}}}, "calming": {"_count": 5, "down": {"_count": 2, "enough": {"_count": 1}, "": {"_count": 1}}, "breaths": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "breath": {"_count": 1, "then": {"_count": 1}}}, "waited": {"_count": 118, "until": {"_count": 24, "Piers": {"_count": 1}, "Quirrells": {"_count": 1}, "Lockhart": {"_count": 1}, "Neville": {"_count": 1}, "your": {"_count": 1}, "he": {"_count": 4}, "they": {"_count": 2}, "Peeves": {"_count": 1}, "everyone": {"_count": 1}, "Hermione": {"_count": 1}, "Cedrics": {"_count": 1}, "the": {"_count": 3}, "Cho": {"_count": 1}, "she": {"_count": 1}, "break": {"_count": 1}, "Harry": {"_count": 2}, "Petunia": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "outside": {"_count": 3, "in": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}}, "Norbert": {"_count": 1, "thrashing": {"_count": 1}}, "without": {"_count": 1, "saying": {"_count": 1}}, "many": {"_count": 1, "years": {"_count": 1}}, "for": {"_count": 32, "a": {"_count": 3}, "them": {"_count": 3}, "Hagrid": {"_count": 1}, "the": {"_count": 8}, "Riddle": {"_count": 1}, "Woods": {"_count": 1}, "Madam": {"_count": 1}, "Uncle": {"_count": 1}, "Ludo": {"_count": 1}, "something": {"_count": 1}, "my": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 2}, "sleep": {"_count": 1}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}, "somebody": {"_count": 1}, "this": {"_count": 1}, "one": {"_count": 1}, "Aberforth": {"_count": 1}}, "with": {"_count": 5, "bated": {"_count": 3}, "a": {"_count": 1}, "his": {"_count": 1}}, "nervously": {"_count": 1, "while": {"_count": 1}}, "eagerly": {"_count": 1, "for": {"_count": 1}}, "shivering": {"_count": 1, "hardly": {"_count": 1}}, "a": {"_count": 5, "long": {"_count": 1}, "few": {"_count": 2}, "while": {"_count": 1}, "moment": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "holding": {"_count": 2, "his": {"_count": 2}}, "only": {"_count": 1, "five": {"_count": 1}}, "too": {"_count": 1, "long": {"_count": 1}}, "twelve": {"_count": 1, "years": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "thirteen": {"_count": 1, "years": {"_count": 1}}, "however": {"_count": 1, "": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "breathlessly": {"_count": 1, "for": {"_count": 1}}, "unusually": {"_count": 1, "quiet": {"_count": 1}}, "but": {"_count": 5, "Madame": {"_count": 1}, "Dumbledore": {"_count": 3}, "Voldemort": {"_count": 1}}, "every": {"_count": 1, "fiber": {"_count": 1}}, "till": {"_count": 2, "I": {"_count": 1}, "morning": {"_count": 1}}, "in": {"_count": 2, "vain": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 2, "watched": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "be": {"_count": 1}}, "hopefully": {"_count": 1, "but": {"_count": 1}}, "breath": {"_count": 1, "held": {"_count": 1}}, "his": {"_count": 1, "arms": {"_count": 1}}}, "safely": {"_count": 49, "out": {"_count": 4, "of": {"_count": 4}}, "in": {"_count": 10, "her": {"_count": 2}, "his": {"_count": 3}, "the": {"_count": 1}, "their": {"_count": 1}, "school": {"_count": 1}, "my": {"_count": 1}, "Azkaban": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "onto": {"_count": 3, "one": {"_count": 1}, "the": {"_count": 2}}, "into": {"_count": 3, "it": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "wedged": {"_count": 1, "on": {"_count": 1}}, "stowed": {"_count": 1, "among": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 2, "in": {"_count": 2}}, "inside": {"_count": 1, "the": {"_count": 1}}, "immersed": {"_count": 1, "in": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 2, "then": {"_count": 1}, "thank": {"_count": 1}}, "to": {"_count": 3, "headquarters": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "of": {"_count": 1}}, "outside": {"_count": 1, "meetings": {"_count": 1}}, "enclosed": {"_count": 1, "in": {"_count": 1}}, "hidden": {"_count": 2, "while": {"_count": 1}, "inside": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "jammed": {"_count": 1, "inside": {"_count": 1}}}, "speak": {"_count": 247, "": {"_count": 57, ".": {"_count": 56}, "!": {"_count": 1}}, "calmly": {"_count": 1, "but": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 2}, "once": {"_count": 1}}, "to": {"_count": 63, "him": {"_count": 12}, "his": {"_count": 1}, "Professor": {"_count": 4}, "Harry": {"_count": 5}, "them": {"_count": 3}, "each": {"_count": 2}, "Myrtle": {"_count": 1}, "you": {"_count": 6}, "Ron": {"_count": 1}, "the": {"_count": 6}, "a": {"_count": 1}, "her": {"_count": 1}, "Hagrid": {"_count": 1}, "Krum": {"_count": 1}, "anyone": {"_count": 1}, "Mummy": {"_count": 1}, "Dolores": {"_count": 1}, "Hermione": {"_count": 1}, "me": {"_count": 2}, "Sirius": {"_count": 1}, "snakes": {"_count": 1}, "serpents": {"_count": 1}, "Snape": {"_count": 1}, "Mr": {"_count": 1}, "Gawain": {"_count": 1}, "nobody": {"_count": 1}, "us": {"_count": 1}, "Draco": {"_count": 1}, "Griphook": {"_count": 3}}, "and": {"_count": 6, "it": {"_count": 1}, "he": {"_count": 2}, "then": {"_count": 2}, "the": {"_count": 1}}, "again": {"_count": 4, "": {"_count": 1}, "until": {"_count": 2}, "but": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 2, "him": {"_count": 1}, "Nevilles": {"_count": 1}}, "but": {"_count": 12, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "no": {"_count": 2}, "I": {"_count": 1}, "his": {"_count": 1}, "sped": {"_count": 1}, "straightened": {"_count": 1}, "before": {"_count": 1}, "continued": {"_count": 1}, "Hermione": {"_count": 1}, "prowled": {"_count": 1}}, "not": {"_count": 1, "the": {"_count": 1}}, "clearly": {"_count": 1, "dear": {"_count": 1}}, "Headmaster": {"_count": 1, "said": {"_count": 1}}, "is": {"_count": 1, "such": {"_count": 1}}, "a": {"_count": 2, "language": {"_count": 1}, "lot": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "another": {"_count": 2, "word": {"_count": 2}}, "of": {"_count": 12, "it": {"_count": 3}, "your": {"_count": 1}, "suns": {"_count": 1}, "the": {"_count": 4}, "dangers": {"_count": 1}, "them": {"_count": 1}, "one": {"_count": 1}}, "Parseltongue": {"_count": 8, "were": {"_count": 1}, "": {"_count": 4}, "Harry": {"_count": 1}, "reveals": {"_count": 1}, "as": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "loudly": {"_count": 1, "to": {"_count": 1}}, "couldnt": {"_count": 1, "think": {"_count": 1}}, "ill": {"_count": 2, "of": {"_count": 2}}, "several": {"_count": 1, "times": {"_count": 1}}, "YouKnowWho": {"_count": 1, "could": {"_count": 1}}, "he": {"_count": 2, "nodded": {"_count": 1}, "felt": {"_count": 1}}, "in": {"_count": 5, "code": {"_count": 1}, "a": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}, "Defense": {"_count": 1}}, "Troll": {"_count": 1, "said": {"_count": 1}}, "English": {"_count": 3, "": {"_count": 2}, "cant": {"_count": 1}}, "as": {"_count": 2, "Mr": {"_count": 1}, "they": {"_count": 1}}, "she": {"_count": 1, "merely": {"_count": 1}}, "the": {"_count": 2, "moment": {"_count": 1}, "name": {"_count": 1}}, "her": {"_count": 1, "mind": {"_count": 1}}, "their": {"_count": 1, "minds": {"_count": 1}}, "before": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 5, "mind": {"_count": 1}, "mouth": {"_count": 1}, "name": {"_count": 2}, "meaning": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "Mermish": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "why": {"_count": 1, "dont": {"_count": 1}}, "long": {"_count": 1, "before": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "words": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "perhaps": {"_count": 1}}, "freely": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "more": {"_count": 1, "plainly": {"_count": 1}}, "We": {"_count": 1, "shall": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 6, "a": {"_count": 5}, "his": {"_count": 1}}, "normally": {"_count": 1, "again": {"_count": 1}}, "nor": {"_count": 1, "give": {"_count": 1}}, "owing": {"_count": 1, "to": {"_count": 1}}, "openly": {"_count": 1, "": {"_count": 1}}, "plainly": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "he": {"_count": 2}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "however": {"_count": 1, "Hermione": {"_count": 1}}, "please": {"_count": 1, "just": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "Severus": {"_count": 1, "not": {"_count": 1}}, "now": {"_count": 1, "Harry": {"_count": 1}}}, "managed": {"_count": 205, "to": {"_count": 181, "say": {"_count": 1}, "make": {"_count": 7}, "get": {"_count": 27}, "find": {"_count": 14}, "melt": {"_count": 1}, "have": {"_count": 2}, "pin": {"_count": 1}, "grab": {"_count": 1}, "fasten": {"_count": 1}, "battle": {"_count": 1}, "stay": {"_count": 2}, "climb": {"_count": 1}, "free": {"_count": 2}, "control": {"_count": 1}, "beat": {"_count": 1}, "do": {"_count": 4}, "procure": {"_count": 2}, "hold": {"_count": 2}, "hit": {"_count": 3}, "speak": {"_count": 1}, "hoist": {"_count": 2}, "defeat": {"_count": 1}, "enchant": {"_count": 1}, "flatten": {"_count": 1}, "produce": {"_count": 1}, "close": {"_count": 1}, "shake": {"_count": 3}, "forget": {"_count": 2}, "communicate": {"_count": 1}, "fling": {"_count": 1}, "convince": {"_count": 3}, "erect": {"_count": 1}, "light": {"_count": 1}, "break": {"_count": 3}, "convey": {"_count": 1}, "keep": {"_count": 3}, "turn": {"_count": 3}, "buy": {"_count": 1}, "restrain": {"_count": 1}, "learn": {"_count": 1}, "capture": {"_count": 1}, "talk": {"_count": 2}, "shatter": {"_count": 1}, "win": {"_count": 1}, "return": {"_count": 2}, "subdue": {"_count": 1}, "escape": {"_count": 1}, "slip": {"_count": 2}, "clean": {"_count": 1}, "force": {"_count": 2}, "shut": {"_count": 1}, "scrape": {"_count": 1}, "read": {"_count": 1}, "vanish": {"_count": 3}, "retrieve": {"_count": 1}, "borrow": {"_count": 1}, "stop": {"_count": 1}, "snatch": {"_count": 1}, "conjure": {"_count": 1}, "maintain": {"_count": 1}, "pull": {"_count": 1}, "sell": {"_count": 1}, "multiply": {"_count": 1}, "lose": {"_count": 1}, "help": {"_count": 1}, "cling": {"_count": 2}, "extract": {"_count": 2}, "detach": {"_count": 1}, "squeeze": {"_count": 1}, "comport": {"_count": 1}, "pass": {"_count": 1}, "repel": {"_count": 1}, "remain": {"_count": 1}, "raise": {"_count": 1}, "catch": {"_count": 1}, "burst": {"_count": 1}, "give": {"_count": 1}, "teach": {"_count": 1}, "extricate": {"_count": 1}, "position": {"_count": 1}, "Splinch": {"_count": 1}, "Apparate": {"_count": 2}, "disappear": {"_count": 1}, "bring": {"_count": 1}, "penetrate": {"_count": 2}, "introduce": {"_count": 1}, "Disapparate": {"_count": 1}, "steal": {"_count": 2}, "seize": {"_count": 1}, "fit": {"_count": 1}, "destroy": {"_count": 1}, "cram": {"_count": 1}, "obtain": {"_count": 1}, "scavenge": {"_count": 1}, "fight": {"_count": 1}, "locate": {"_count": 1}, "kill": {"_count": 1}, "tell": {"_count": 1}, "come": {"_count": 1}, "balance": {"_count": 1}, "gain": {"_count": 1}, "wheedle": {"_count": 1}, "point": {"_count": 1}}, "it": {"_count": 6, "before": {"_count": 1}, "": {"_count": 3}, "by": {"_count": 1}, "Hermione": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 1}, "!": {"_count": 2}}, "second": {"_count": 1, "helpings": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "small": {"_count": 1}, "few": {"_count": 1}}, "everything": {"_count": 1, "too": {"_count": 1}}, "finally": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 1, "A": {"_count": 1}}, "ter": {"_count": 2, "give": {"_count": 1}, "train": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "task": {"_count": 1}}, "this": {"_count": 1, "superfast": {"_count": 1}}, "perfectly": {"_count": 1, "yesterday": {"_count": 1}}}, "Go": {"_count": 107, "cupboard": {"_count": 1, "stay": {"_count": 1}}, "to": {"_count": 8, "your": {"_count": 1}, "Professor": {"_count": 1}, "Dumbledore": {"_count": 1}, "Madam": {"_count": 1}, "bed": {"_count": 2}, "Gain": {"_count": 1}, "McGonagall": {"_count": 1}}, "on": {"_count": 40, "go": {"_count": 2}, "You": {"_count": 1}, "have": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 10}, "then": {"_count": 7}, "read": {"_count": 1}, "tell": {"_count": 1}, "boy": {"_count": 1}, "he": {"_count": 4}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 2}, "Ill": {"_count": 1}, "take": {"_count": 1}, "Cedric": {"_count": 1}, "son": {"_count": 2}, "about": {"_count": 1}, "Harry": {"_count": 1}, "leave": {"_count": 1}}, "away": {"_count": 6, "Peeves": {"_count": 1}, "": {"_count": 3}, "Percy": {"_count": 1}, "Ginny": {"_count": 1}}, "back": {"_count": 6, "to": {"_count": 5}, "Bella": {"_count": 1}}, "straight": {"_count": 2, "to": {"_count": 2}}, "home": {"_count": 3, "Harry": {"_count": 1}, "grab": {"_count": 1}, "then": {"_count": 1}}, "and": {"_count": 10, "find": {"_count": 1}, "wash": {"_count": 1}, "cope": {"_count": 1}, "sit": {"_count": 1}, "wake": {"_count": 2}, "lie": {"_count": 1}, "get": {"_count": 1}, "fetch": {"_count": 2}}, "": {"_count": 18, "?": {"_count": 1}, ".": {"_count": 2}, "!": {"_count": 15}}, "with": {"_count": 1, "Errol": {"_count": 1}}, "for": {"_count": 1, "it": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "quick": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "naked": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "pleaded": {"_count": 1}}, "Room": {"_count": 1, "sir": {"_count": 1}}, "out": {"_count": 1, "with": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "abroad": {"_count": 1, "if": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}}, "stay": {"_count": 202, "no": {"_count": 1, "meals": {"_count": 1}}, "somewhere": {"_count": 1, "with": {"_count": 1}}, "on": {"_count": 9, "as": {"_count": 2}, "his": {"_count": 2}, "": {"_count": 1}, "her": {"_count": 1}, "while": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "in": {"_count": 14, "the": {"_count": 6}, "our": {"_count": 1}, "Diagon": {"_count": 1}, "school": {"_count": 1}, "your": {"_count": 1}, "center": {"_count": 1}, "bed": {"_count": 1}, "one": {"_count": 1}, "this": {"_count": 1}}, "long": {"_count": 5, "Mother": {"_count": 1}, "": {"_count": 2}, "Ron": {"_count": 1}, "I": {"_count": 1}}, "put": {"_count": 10, "in": {"_count": 1}, "": {"_count": 3}, "Ron": {"_count": 1}, "They": {"_count": 1}, "Scabbers": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "while": {"_count": 1}}, "here": {"_count": 37, "alone": {"_count": 1}, "he": {"_count": 1}, "forevermore": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 6}, "will": {"_count": 1}, "and": {"_count": 3}, "because": {"_count": 1}, "with": {"_count": 2}, "Headmaster": {"_count": 1}, "Girls": {"_count": 1}, "if": {"_count": 1}, "as": {"_count": 1}, "the": {"_count": 1}, "whispered": {"_count": 1}, "all": {"_count": 1}, "added": {"_count": 1}, "a": {"_count": 2}, "overnight": {"_count": 1}, "until": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}, "four": {"_count": 1}, "forever": {"_count": 1}, "for": {"_count": 1}, "then": {"_count": 1}, "Ill": {"_count": 1}}, "at": {"_count": 14, "Hogwarts": {"_count": 9}, "school": {"_count": 2}, "Privet": {"_count": 1}, "the": {"_count": 1}, "home": {"_count": 1}}, "with": {"_count": 12, "me": {"_count": 2}, "you": {"_count": 2}, "your": {"_count": 1}, "us": {"_count": 1}, "him": {"_count": 4}, "Ron": {"_count": 1}, "Hagrid": {"_count": 1}}, "alive": {"_count": 3, "long": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "below": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 1, "summer": {"_count": 1}}, "that": {"_count": 1, "way": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 10}, "!": {"_count": 1}, "?": {"_count": 1}}, "where": {"_count": 4, "he": {"_count": 1}, "you": {"_count": 3}}, "about": {"_count": 1, "twelve": {"_count": 1}}, "calm": {"_count": 1, "he": {"_count": 1}}, "behind": {"_count": 4, "to": {"_count": 1}, "we": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}}, "the": {"_count": 2, "night": {"_count": 1}, "same": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "during": {"_count": 1}}, "arrived": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "upright": {"_count": 1, "": {"_count": 1}}, "conscious": {"_count": 1, "Harry": {"_count": 1}}, "inside": {"_count": 2, "No": {"_count": 1}, "while": {"_count": 1}}, "Lupin": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 3, "well": {"_count": 1}, "fight": {"_count": 2}}, "any": {"_count": 1, "time": {"_count": 1}}, "for": {"_count": 5, "the": {"_count": 3}, "dinner": {"_count": 2}}, "there": {"_count": 9, "while": {"_count": 1}, "all": {"_count": 3}, "": {"_count": 2}, "she": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "indoors": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 2}, "Professor": {"_count": 1}}, "Minerva": {"_count": 1, "because": {"_count": 1}}, "Vernon": {"_count": 1, "she": {"_count": 1}}, "still": {"_count": 4, "everyone": {"_count": 1}, "": {"_count": 2}, "she": {"_count": 1}}, "but": {"_count": 1, "Ron": {"_count": 1}}, "awake": {"_count": 1, "all": {"_count": 1}}, "Fudgell": {"_count": 1, "make": {"_count": 1}}, "hidden": {"_count": 2, "isnt": {"_count": 1}, "and": {"_count": 1}}, "up": {"_count": 2, "half": {"_count": 1}, "": {"_count": 1}}, "around": {"_count": 1, "Golgomathll": {"_count": 1}}, "recited": {"_count": 1, "Phineas": {"_count": 1}}, "Black": {"_count": 1, "I": {"_count": 1}}, "Firenze": {"_count": 1, "told": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "safe": {"_count": 1, "": {"_count": 1}}, "longterm": {"_count": 1, "": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "if": {"_count": 1}}, "then": {"_count": 1, "I": {"_count": 1}}, "together": {"_count": 1, "and": {"_count": 1}}, "mate": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 2, "try": {"_count": 1}, "watch": {"_count": 1}}, "anywhere": {"_count": 1, "too": {"_count": 1}}, "free": {"_count": 1, "isnt": {"_count": 1}}}, "meals": {"_count": 9, "before": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "increasingly": {"_count": 1}}, "sometimes": {"_count": 1, "only": {"_count": 1}}, "and": {"_count": 1, "staring": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "anymore": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "lingered": {"_count": 1}}, "a": {"_count": 1, "day": {"_count": 1}}}, "collapsed": {"_count": 37, "into": {"_count": 5, "a": {"_count": 3}, "the": {"_count": 1}, "his": {"_count": 1}}, "sofa": {"_count": 1, "and": {"_count": 1}}, "moaned": {"_count": 1, "in": {"_count": 1}}, "trembling": {"_count": 1, "into": {"_count": 1}}, "on": {"_count": 3, "a": {"_count": 1}, "landing": {"_count": 1}, "the": {"_count": 1}}, "onto": {"_count": 6, "a": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 4}}, "every": {"_count": 1, "time": {"_count": 1}}, "at": {"_count": 1, "Voldemorts": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "front": {"_count": 1}}, "someones": {"_count": 1, "got": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "upon": {"_count": 2, "themselves": {"_count": 1}, "it": {"_count": 1}}, "backward": {"_count": 1, "toward": {"_count": 1}}, "sideways": {"_count": 1, "and": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 1, "roars": {"_count": 1}}, "beneath": {"_count": 1, "him": {"_count": 1}}, "heaving": {"_count": 1, "onto": {"_count": 1}}, "coughing": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}}, "run": {"_count": 188, "and": {"_count": 11, "get": {"_count": 2}, "CRASH": {"_count": 1}, "no": {"_count": 1}, "ahead": {"_count": 1}, "headed": {"_count": 1}, "wrenched": {"_count": 1}, "within": {"_count": 1}, "quite": {"_count": 1}, "fetch": {"_count": 1}, "snatched": {"_count": 1}}, "out": {"_count": 6, "with": {"_count": 1}, "from": {"_count": 1}, "by": {"_count": 1}, "of": {"_count": 2}, "on": {"_count": 1}}, "first": {"_count": 1, "now": {"_count": 1}}, "if": {"_count": 1, "youre": {"_count": 1}}, "the": {"_count": 3, "barrier": {"_count": 1}, "length": {"_count": 1}, "risk": {"_count": 1}}, "into": {"_count": 12, "Filch": {"_count": 1}, "the": {"_count": 2}, "Ministry": {"_count": 1}, "Hagrid": {"_count": 1}, "you": {"_count": 2}, "anyone": {"_count": 1}, "it": {"_count": 1}, "will": {"_count": 1}, "any": {"_count": 1}, "most": {"_count": 1}}, "he": {"_count": 2, "tripped": {"_count": 1}, "wanted": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}, "around": {"_count": 7, "it": {"_count": 1}, "like": {"_count": 1}, "the": {"_count": 4}, "with": {"_count": 1}}, "run": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 3, "yelled": {"_count": 1}, "on": {"_count": 1}, "but": {"_count": 1}}, "across": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 21}, "!": {"_count": 3}, "?": {"_count": 1}}, "down": {"_count": 2, "to": {"_count": 1}, "from": {"_count": 1}}, "inter": {"_count": 2, "yeh": {"_count": 1}, "someone": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "in": {"_count": 5, "for": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "this": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "away": {"_count": 4, "from": {"_count": 2}, "with": {"_count": 2}}, "of": {"_count": 1, "Gryffindor": {"_count": 1}}, "for": {"_count": 13, "it": {"_count": 11}, "a": {"_count": 1}, "over": {"_count": 1}}, "but": {"_count": 1, "got": {"_count": 1}}, "blindly": {"_count": 1, "sideways": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 3}}, "headlong": {"_count": 1, "into": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "with": {"_count": 5, "Wood": {"_count": 1}, "a": {"_count": 1}, "Mr": {"_count": 1}, "Fang": {"_count": 1}, "Harry": {"_count": 1}}, "over": {"_count": 2, "by": {"_count": 2}}, "fer": {"_count": 2, "their": {"_count": 1}, "it": {"_count": 1}}, "a": {"_count": 5, "mile": {"_count": 2}, "long": {"_count": 1}, "race": {"_count": 1}, "question": {"_count": 1}}, "full": {"_count": 1, "out": {"_count": 1}}, "Hermione": {"_count": 1, "right": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "screaming": {"_count": 1, "down": {"_count": 1}}, "off": {"_count": 6, "eckeltricity": {"_count": 1}, "and": {"_count": 3}, "with": {"_count": 1}, "into": {"_count": 1}}, "at": {"_count": 2, "them": {"_count": 1}, "Mundungus": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "amok": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "until": {"_count": 1}}, "his": {"_count": 3, "fingers": {"_count": 1}, "finger": {"_count": 1}, "hand": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "she": {"_count": 1, "led": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "barely": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "just": {"_count": 1}}, "they": {"_count": 1, "glide": {"_count": 1}}, "wrenched": {"_count": 1, "open": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "happy": {"_count": 1}}, "short": {"_count": 1, "sir": {"_count": 1}}, "us": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "yell": {"_count": 1}}, "on": {"_count": 1, "Christmas": {"_count": 1}}, "both": {"_count": 1, "his": {"_count": 1}}, "wont": {"_count": 1, "it": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "right": {"_count": 1, "there": {"_count": 1}}, "round": {"_count": 1, "with": {"_count": 1}}, "weaving": {"_count": 1, "in": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "straight": {"_count": 2, "through": {"_count": 2}}, "halfway": {"_count": 1, "toward": {"_count": 1}}, "drawled": {"_count": 1, "Lucius": {"_count": 1}}, "forward": {"_count": 2, "to": {"_count": 1}, "this": {"_count": 1}}, "miles": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "deep": {"_count": 1}}, "cheering": {"_count": 1, "after": {"_count": 1}}, "by": {"_count": 1, "Fred": {"_count": 1}}, "toward": {"_count": 2, "Gryffindor": {"_count": 1}, "the": {"_count": 1}}, "not": {"_count": 1, "yet": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "how": {"_count": 1, "long": {"_count": 1}}, "you": {"_count": 1, "through": {"_count": 1}}, "past": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "to": {"_count": 1}}}, "brandy": {"_count": 12, "": {"_count": 3, ".": {"_count": 3}}, "mixed": {"_count": 1, "with": {"_count": 1}}, "bottles": {"_count": 1, "and": {"_count": 1}}, "fer": {"_count": 1, "the": {"_count": 1}}, "glass": {"_count": 1, "back": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "bottle": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "wiping": {"_count": 1}}, "have": {"_count": 1, "yeh": {"_count": 1}}, "which": {"_count": 1, "she": {"_count": 1}}}, "wishing": {"_count": 42, "he": {"_count": 12, "had": {"_count": 2}, "could": {"_count": 4}, "and": {"_count": 1}, "knew": {"_count": 1}, "hadnt": {"_count": 2}, "still": {"_count": 1}, "were": {"_count": 1}}, "hed": {"_count": 2, "opened": {"_count": 1}, "left": {"_count": 1}}, "we": {"_count": 1, "had": {"_count": 1}}, "it": {"_count": 2, "would": {"_count": 1}, "were": {"_count": 1}}, "you": {"_count": 1, "a": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "Harry": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "is": {"_count": 1}}, "to": {"_count": 11, "submit": {"_count": 1}, "compete": {"_count": 2}, "protect": {"_count": 1}, "appear": {"_count": 1}, "play": {"_count": 1}, "vanish": {"_count": 1}, "kill": {"_count": 1}, "avoid": {"_count": 1}, "open": {"_count": 1}, "wound": {"_count": 1}}, "him": {"_count": 2, "good": {"_count": 1}, "luck": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "Roger": {"_count": 1, "would": {"_count": 1}}, "his": {"_count": 1, "headache": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "Ron": {"_count": 1, "good": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "that": {"_count": 1, "what": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}}, "Until": {"_count": 7, "they": {"_count": 1, "were": {"_count": 1}}, "we": {"_count": 2, "meet": {"_count": 2}}, "Friday": {"_count": 1, "night": {"_count": 1}}, "next": {"_count": 1, "Saturday": {"_count": 1}}, "the": {"_count": 1, "very": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}}, "risk": {"_count": 43, "sneaking": {"_count": 1, "to": {"_count": 1}}, "Snape": {"_count": 1, "hearing": {"_count": 1}}, "it": {"_count": 8, "": {"_count": 3}, "Sibyll": {"_count": 1}, "happenin": {"_count": 1}, "when": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "your": {"_count": 1, "neck": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 3, "good": {"_count": 1}, "life": {"_count": 1}, "friendship": {"_count": 1}}, "missing": {"_count": 1, "the": {"_count": 1}}, "everything": {"_count": 3, "to": {"_count": 1}, "for": {"_count": 1}, "without": {"_count": 1}}, "being": {"_count": 2, "captured": {"_count": 1}, "caught": {"_count": 1}}, "thats": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "Extendable": {"_count": 1}}, "Hermione": {"_count": 1, "began": {"_count": 1}}, "wouldve": {"_count": 2, "been": {"_count": 2}}, "losing": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 2, "somebody": {"_count": 1}, "they": {"_count": 1}}, "him": {"_count": 1, "getting": {"_count": 1}}, "revealing": {"_count": 1, "himself": {"_count": 1}}, "transferring": {"_count": 1, "power": {"_count": 1}}, "of": {"_count": 1, "Mr": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "sendin": {"_count": 1, "a": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "their": {"_count": 1, "lives": {"_count": 1}}, "carrying": {"_count": 1, "it": {"_count": 1}}}, "sneaking": {"_count": 27, "to": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "around": {"_count": 5, "and": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "somebody": {"_count": 1}, "upstairs": {"_count": 1}}, "off": {"_count": 6, "to": {"_count": 4}, "alone": {"_count": 1}, "with": {"_count": 1}}, "one": {"_count": 1, "by": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 3}, "who": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "Muggle": {"_count": 1, "artifacts": {"_count": 1}}, "peeks": {"_count": 1, "at": {"_count": 1}}, "looks": {"_count": 1, "at": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "Now": {"_count": 1, "Lily": {"_count": 1}}, "down": {"_count": 1, "that": {"_count": 1}}}, "food": {"_count": 118, "": {"_count": 22, ".": {"_count": 18}, "!": {"_count": 3}, "?": {"_count": 1}}, "processor": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 9, "you": {"_count": 1}, "the": {"_count": 1}, "sleep": {"_count": 1}, "drink": {"_count": 2}, "every": {"_count": 1}, "everything": {"_count": 1}, "he": {"_count": 1}, "wine": {"_count": 1}}, "faded": {"_count": 1, "from": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "could": {"_count": 2, "be": {"_count": 1}, "you": {"_count": 1}}, "tray": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 2, "wafting": {"_count": 1}, "delicious": {"_count": 1}}, "fit": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 2, "his": {"_count": 1}, "Harry": {"_count": 1}}, "cart": {"_count": 2, "": {"_count": 1}, "arrived": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 1}, "come": {"_count": 1}, "imagined": {"_count": 1}}, "I": {"_count": 1, "slipped": {"_count": 1}}, "the": {"_count": 2, "fact": {"_count": 1}, "diet": {"_count": 1}}, "doublechecked": {"_count": 1, "every": {"_count": 1}}, "cottage": {"_count": 1, "cheese": {"_count": 1}}, "parcels": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 2, "Nearly": {"_count": 1}, "Aberforth": {"_count": 1}}, "without": {"_count": 1, "throwing": {"_count": 1}}, "then": {"_count": 1, "put": {"_count": 1}}, "as": {"_count": 6, "though": {"_count": 1}, "usual": {"_count": 1}, "much": {"_count": 1}, "yet": {"_count": 1}, "you": {"_count": 1}, "well": {"_count": 1}}, "cooked": {"_count": 1, "by": {"_count": 1}}, "they": {"_count": 3, "like": {"_count": 1}, "heard": {"_count": 1}, "were": {"_count": 1}}, "all": {"_count": 3, "down": {"_count": 2}, "righ": {"_count": 1}}, "from": {"_count": 6, "the": {"_count": 5}, "Hogsmeade": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "dinner": {"_count": 1, "having": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "anybody": {"_count": 1, "else": {"_count": 1}}, "is": {"_count": 1, "seemply": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "appeared": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 2}}, "packages": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "every": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 2}}, "left": {"_count": 1, "Mrs": {"_count": 1}}, "while": {"_count": 1, "gloating": {"_count": 1}}, "trolley": {"_count": 1, "had": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "or": {"_count": 1, "anythin": {"_count": 1}}, "no": {"_count": 1, "problem": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "laughed": {"_count": 1}}, "trolleys": {"_count": 1, "just": {"_count": 1}}, "lay": {"_count": 1, "upon": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "coincided": {"_count": 1, "with": {"_count": 1}}, "supplies": {"_count": 1, "": {"_count": 1}}, "appear": {"_count": 1, "out": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "because": {"_count": 2, "Im": {"_count": 1}, "for": {"_count": 1}}, "intensified": {"_count": 1, "as": {"_count": 1}}, "insisting": {"_count": 1, "instead": {"_count": 1}}, "she": {"_count": 1, "glanced": {"_count": 1}}, "before": {"_count": 1, "she": {"_count": 1}}}, "miserable": {"_count": 40, "years": {"_count": 1, "as": {"_count": 1}}, "little": {"_count": 2, "shack": {"_count": 1}, "Underground": {"_count": 1}}, "ecstasy": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 5, "felt": {"_count": 1}, "scared": {"_count": 1}, "worried": {"_count": 1}, "muttered": {"_count": 1}, "confused": {"_count": 1}}, "put": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "want": {"_count": 1}}, "if": {"_count": 1, "Scabbers": {"_count": 1}}, "life": {"_count": 1, "telling": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 2, "possible": {"_count": 1}, "your": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "face": {"_count": 1, "broke": {"_count": 1}}, "time": {"_count": 1, "but": {"_count": 1}}, "knot": {"_count": 1, "in": {"_count": 1}}, "feeling": {"_count": 1, "he": {"_count": 1}}, "raincloud": {"_count": 1, "gray": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "air": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "looks": {"_count": 1, "Harry": {"_count": 1}}, "actually": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "he": {"_count": 1, "has": {"_count": 1}}, "subject": {"_count": 1, "at": {"_count": 1}}, "twirling": {"_count": 1, "his": {"_count": 1}}, "gesture": {"_count": 1, "Harry": {"_count": 1}}}, "Sometimes": {"_count": 22, "when": {"_count": 2, "he": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 1, "noticed": {"_count": 1}}, "he": {"_count": 5, "said": {"_count": 1}, "could": {"_count": 2}, "thought": {"_count": 1}, "gets": {"_count": 1}}, "they": {"_count": 1, "reminds": {"_count": 1}}, "said": {"_count": 1, "Myrtle": {"_count": 1}}, "the": {"_count": 1, "way": {"_count": 1}}, "however": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "it": {"_count": 2, "seemed": {"_count": 1}, "is": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "remind": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "Ive": {"_count": 1, "thought": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}}, "strained": {"_count": 30, "his": {"_count": 5, "memory": {"_count": 1}, "ears": {"_count": 4}}, "to": {"_count": 3, "catch": {"_count": 1}, "get": {"_count": 1}, "think": {"_count": 1}}, "against": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "smile": {"_count": 2, "": {"_count": 2}}, "a": {"_count": 1, "rolledup": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 2, "quite": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "expression": {"_count": 1, "as": {"_count": 1}}, "silence": {"_count": 2, "in": {"_count": 1}, "then": {"_count": 1}}, "and": {"_count": 2, "pickled": {"_count": 1}, "anxious": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 3}}, "whisper": {"_count": 1, "": {"_count": 1}}, "incredulous": {"_count": 1, "faces": {"_count": 1}}}, "memory": {"_count": 170, "during": {"_count": 1, "long": {"_count": 1}}, "in": {"_count": 4, "peace": {"_count": 1}, "his": {"_count": 2}, "him": {"_count": 1}}, "of": {"_count": 28, "anyone": {"_count": 1}, "the": {"_count": 3}, "me": {"_count": 1}, "this": {"_count": 1}, "Moodys": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 2}, "ever": {"_count": 1}, "their": {"_count": 2}, "that": {"_count": 1}, "breakfast": {"_count": 1}, "Cho": {"_count": 1}, "it": {"_count": 2}, "having": {"_count": 2}, "what": {"_count": 1}, "a": {"_count": 2}, "Sirius": {"_count": 1}, "all": {"_count": 2}, "course": {"_count": 1}, "Ted": {"_count": 1}}, "for": {"_count": 4, "incantations": {"_count": 1}, "gossip": {"_count": 1}, "the": {"_count": 1}, "us": {"_count": 1}}, "": {"_count": 35, "?": {"_count": 5}, ".": {"_count": 28}, "!": {"_count": 2}}, "said": {"_count": 3, "Riddle": {"_count": 1}, "Snape": {"_count": 1}, "Harry": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 2, "been": {"_count": 2}}, "still": {"_count": 1, "brought": {"_count": 1}}, "was": {"_count": 3, "on": {"_count": 1}, "notoriously": {"_count": 1}, "the": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "a": {"_count": 2, "happy": {"_count": 1}, "different": {"_count": 1}}, "I": {"_count": 2, "mean": {"_count": 1}, "would": {"_count": 1}}, "he": {"_count": 5, "didnt": {"_count": 1}, "knew": {"_count": 1}, "felt": {"_count": 1}, "had": {"_count": 1}, "learned": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 1}, "come": {"_count": 1}}, "is": {"_count": 5, "as": {"_count": 1}, "": {"_count": 2}, "still": {"_count": 1}, "it": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "modified": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 1}, "that": {"_count": 1}}, "forever": {"_count": 1, "said": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}, "and": {"_count": 6, "this": {"_count": 2}, "Harry": {"_count": 1}, "then": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 1}}, "but": {"_count": 3, "he": {"_count": 2}, "nothing": {"_count": 1}}, "permanently": {"_count": 1, "": {"_count": 1}}, "removed": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 2, "muttering": {"_count": 1}, "difficulty": {"_count": 1}}, "or": {"_count": 1, "your": {"_count": 1}}, "to": {"_count": 4, "relax": {"_count": 1}, "be": {"_count": 1}, "boot": {"_count": 1}, "show": {"_count": 1}}, "muttered": {"_count": 1, "Umbridge": {"_count": 1}}, "modification": {"_count": 1, "": {"_count": 1}}, "bobbing": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}, "modifications": {"_count": 1, "as": {"_count": 1}}, "completely": {"_count": 1, "empty": {"_count": 1}}, "into": {"_count": 3, "thickets": {"_count": 1}, "the": {"_count": 2}}, "lane": {"_count": 1, "said": {"_count": 1}}, "from": {"_count": 8, "whence": {"_count": 1}, "him": {"_count": 2}, "Slughorn": {"_count": 4}, "Professor": {"_count": 1}}, "before": {"_count": 1, "we": {"_count": 1}}, "which": {"_count": 1, "will": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 2}, "youll": {"_count": 1}}, "Did": {"_count": 1, "you": {"_count": 1}}, "Dumbledore": {"_count": 3, "had": {"_count": 2}, "says": {"_count": 1}}, "suddenly": {"_count": 1, "seemed": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "her": {"_count": 1, "life": {"_count": 1}}, "off": {"_count": 1, "him": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "if": {"_count": 1, "Harry": {"_count": 1}}, "shows": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 2, "away": {"_count": 1}, "to": {"_count": 1}}, "stretched": {"_count": 1, "until": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "sapping": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "darted": {"_count": 1, "through": {"_count": 1}}, "made": {"_count": 1, "nearly": {"_count": 1}}}, "during": {"_count": 155, "long": {"_count": 1, "hours": {"_count": 1}}, "gym": {"_count": 1, "at": {"_count": 1}}, "breakfast": {"_count": 3, "circling": {"_count": 1}, "and": {"_count": 2}}, "a": {"_count": 5, "World": {"_count": 1}, "series": {"_count": 1}, "task": {"_count": 1}, "training": {"_count": 1}, "Potions": {"_count": 1}}, "break": {"_count": 3, "and": {"_count": 2}, "said": {"_count": 1}}, "their": {"_count": 15, "breaks": {"_count": 1}, "very": {"_count": 1}, "Easter": {"_count": 1}, "previous": {"_count": 2}, "first": {"_count": 1}, "lunchtimes": {"_count": 1}, "last": {"_count": 3}, "month": {"_count": 1}, "second": {"_count": 1}, "next": {"_count": 1}, "practice": {"_count": 1}, "planning": {"_count": 1}}, "one": {"_count": 2, "particularly": {"_count": 1}, "of": {"_count": 1}}, "morning": {"_count": 1, "break": {"_count": 1}}, "the": {"_count": 46, "next": {"_count": 2}, "summer": {"_count": 3}, "holidays": {"_count": 4}, "lemon": {"_count": 1}, "remainder": {"_count": 1}, "night": {"_count": 2}, "Tournament": {"_count": 2}, "tournament": {"_count": 1}, "two": {"_count": 1}, "last": {"_count": 4}, "first": {"_count": 3}, "search": {"_count": 1}, "Quidditch": {"_count": 2}, "school": {"_count": 1}, "morning": {"_count": 1}, "week": {"_count": 1}, "summers": {"_count": 1}, "Triwizard": {"_count": 1}, "evenings": {"_count": 1}, "days": {"_count": 1}, "entire": {"_count": 1}, "Easter": {"_count": 1}, "practical": {"_count": 1}, "headmasters": {"_count": 1}, "hours": {"_count": 1}, "final": {"_count": 1}, "year": {"_count": 1}, "opening": {"_count": 1}, "burial": {"_count": 1}, "postmatch": {"_count": 1}, "most": {"_count": 1}, "chase": {"_count": 1}}, "practice": {"_count": 2, "and": {"_count": 1}, "because": {"_count": 1}}, "this": {"_count": 3, "troubled": {"_count": 1}, "anecdote": {"_count": 1}, "summer": {"_count": 1}}, "Marges": {"_count": 1, "visit": {"_count": 1}}, "which": {"_count": 16, "the": {"_count": 1}, "Neville": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 3}, "Harry": {"_count": 3}, "you": {"_count": 1}, "Hermione": {"_count": 1}, "their": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 1}, "we": {"_count": 1}, "if": {"_count": 1}, "Kreacher": {"_count": 1}}, "Care": {"_count": 2, "of": {"_count": 2}}, "our": {"_count": 2, "brief": {"_count": 1}, "exam": {"_count": 1}}, "dinner": {"_count": 2, "but": {"_count": 1}, "on": {"_count": 1}}, "lessons": {"_count": 1, "thanks": {"_count": 1}}, "Dumbledores": {"_count": 2, "speech": {"_count": 2}}, "those": {"_count": 3, "months": {"_count": 1}, "cozy": {"_count": 1}, "Occlumency": {"_count": 1}}, "my": {"_count": 6, "crystal": {"_count": 1}, "classes": {"_count": 1}, "Sorting": {"_count": 1}, "inspections": {"_count": 1}, "time": {"_count": 1}, "absences": {"_count": 1}}, "termtime": {"_count": 1, "it": {"_count": 1}}, "his": {"_count": 7, "evening": {"_count": 1}, "last": {"_count": 1}, "written": {"_count": 1}, "brief": {"_count": 1}, "grueling": {"_count": 1}, "exile": {"_count": 1}, "weeks": {"_count": 1}}, "Auror": {"_count": 1, "training": {"_count": 1}}, "an": {"_count": 2, "hour": {"_count": 1}, "attempted": {"_count": 1}}, "that": {"_count": 3, "time": {"_count": 1}, "nights": {"_count": 1}, "lesson": {"_count": 1}}, "class": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 2, "first": {"_count": 1}, "lessons": {"_count": 1}}, "Hogsmeade": {"_count": 1, "weekends": {"_count": 1}}, "Christmas": {"_count": 1, "because": {"_count": 1}}, "Herbology": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "D": {"_count": 3, "": {"_count": 3}}, "Divination": {"_count": 1, "and": {"_count": 1}}, "classes": {"_count": 1, "that": {"_count": 1}}, "Harrys": {"_count": 1, "first": {"_count": 1}}, "Potions": {"_count": 1, "lessons": {"_count": 1}}, "tealeaf": {"_count": 1, "reading": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "dinnertime": {"_count": 1, "evidently": {"_count": 1}}, "these": {"_count": 1, "for": {"_count": 1}}, "Professor": {"_count": 1, "Slughorns": {"_count": 1}}, "dreams": {"_count": 1, "or": {"_count": 1}}, "next": {"_count": 1, "mornings": {"_count": 1}}, "all": {"_count": 1, "our": {"_count": 1}}, "its": {"_count": 1, "long": {"_count": 1}}, "darkness": {"_count": 1, "Caterwauling": {"_count": 1}}}, "vision": {"_count": 45, "a": {"_count": 1, "blinding": {"_count": 1}}, "went": {"_count": 1, "foggy": {"_count": 1}}, "of": {"_count": 15, "finally": {"_count": 1}, "himself": {"_count": 1}, "a": {"_count": 1}, "Uncle": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 3}, "Arthur": {"_count": 1}, "Sirius": {"_count": 2}, "perfection": {"_count": 1}, "tentacles": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 1}}, "was": {"_count": 4, "so": {"_count": 1}, "blurring": {"_count": 1}, "completely": {"_count": 1}, "nothing": {"_count": 1}}, "watch": {"_count": 1, "out": {"_count": 1}}, "they": {"_count": 1, "heard": {"_count": 1}}, "more": {"_count": 1, "were": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 4, "Harry": {"_count": 1}, "was": {"_count": 1}, "obstructed": {"_count": 1}, "clutching": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "you": {"_count": 2, "had": {"_count": 2}}, "battling": {"_count": 1, "with": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "brightening": {"_count": 1, "when": {"_count": 1}}, "in": {"_count": 1, "some": {"_count": 1}}, "his": {"_count": 1, "treasures": {"_count": 1}}}, "blinding": {"_count": 24, "flash": {"_count": 6, "of": {"_count": 4}, "": {"_count": 1}, "as": {"_count": 1}}, "him": {"_count": 5, "with": {"_count": 2}, "": {"_count": 3}}, "white": {"_count": 3, "sun": {"_count": 1}, "light": {"_count": 1}, "": {"_count": 1}}, "light": {"_count": 2, "With": {"_count": 1}, "was": {"_count": 1}}, "dazzling": {"_count": 1, "silver": {"_count": 1}}, "series": {"_count": 1, "of": {"_count": 1}}, "green": {"_count": 1, "light": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "realization": {"_count": 1, "as": {"_count": 1}}, "sickening": {"_count": 1, "pain": {"_count": 1}}, "the": {"_count": 1, "trees": {"_count": 1}}, "jagged": {"_count": 1, "jet": {"_count": 1}}}, "flash": {"_count": 62, "of": {"_count": 51, "green": {"_count": 13}, "violet": {"_count": 1}, "gold": {"_count": 2}, "scarlet": {"_count": 1}, "steely": {"_count": 1}, "lightning": {"_count": 3}, "bluewhite": {"_count": 1}, "light": {"_count": 14}, "blinding": {"_count": 1}, "red": {"_count": 7}, "fire": {"_count": 2}, "flame": {"_count": 1}, "silver": {"_count": 1}, "brightest": {"_count": 1}, "purple": {"_count": 1}, "bright": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "POTTER": {"_count": 1, "STINKS": {"_count": 1}}, "went": {"_count": 1, "off": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "red": {"_count": 1, "again": {"_count": 1}}, "shouts": {"_count": 1, "retaliatory": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "burning": {"_count": 82, "pain": {"_count": 1, "on": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 2}}, "holes": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "the": {"_count": 1, "back": {"_count": 1}}, "with": {"_count": 3, "guilt": {"_count": 1}, "humiliation": {"_count": 1}, "curiosity": {"_count": 1}}, "bright": {"_count": 1, "blue": {"_count": 1}}, "low": {"_count": 1, "in": {"_count": 1}}, "sensation": {"_count": 3, "spread": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}}, "had": {"_count": 1, "no": {"_count": 1}}, "in": {"_count": 6, "brackets": {"_count": 1}, "his": {"_count": 3}, "its": {"_count": 1}, "him": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 2}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 2, "hours": {"_count": 2}}, "he": {"_count": 2, "could": {"_count": 1}, "expected": {"_count": 1}}, "tent": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "feeling": {"_count": 2, "of": {"_count": 1}, "was": {"_count": 1}}, "to": {"_count": 4, "know": {"_count": 1}, "ask": {"_count": 2}, "get": {"_count": 1}}, "so": {"_count": 2, "badly": {"_count": 1}, "fiercely": {"_count": 1}}, "hair": {"_count": 1, "it": {"_count": 1}}, "stronger": {"_count": 1, "than": {"_count": 1}}, "almost": {"_count": 1, "past": {"_count": 1}}, "red": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "throat": {"_count": 1}}, "heat": {"_count": 1, "": {"_count": 1}}, "prickling": {"_count": 1, "feeling": {"_count": 1}}, "letter": {"_count": 1, "on": {"_count": 1}}, "socks": {"_count": 1, "lingered": {"_count": 1}}, "everything": {"_count": 1, "in": {"_count": 1}}, "reproachful": {"_count": 1, "looks": {"_count": 1}}, "desire": {"_count": 2, "to": {"_count": 2}}, "of": {"_count": 1, "certain": {"_count": 1}}, "themselves": {"_count": 1, "out": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "torches": {"_count": 1, "over": {"_count": 1}}, "blue": {"_count": 1, "": {"_count": 1}}, "fire": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "passion": {"_count": 1, "": {"_count": 1}}, "wardrobe": {"_count": 1, "and": {"_count": 1}}, "house": {"_count": 2, "behind": {"_count": 1}, "as": {"_count": 1}}, "building": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "felt": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "potion": {"_count": 1, "caused": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "underpants": {"_count": 1, "": {"_count": 1}}, "brightly": {"_count": 1, "in": {"_count": 1}}, "metal": {"_count": 1, "": {"_count": 1}}, "gold": {"_count": 1, "Griphook": {"_count": 1}}, "scar": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "look": {"_count": 1, "she": {"_count": 1}}}, "pain": {"_count": 228, "on": {"_count": 5, "his": {"_count": 1}, "their": {"_count": 1}, "either": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 41, ".": {"_count": 39}, "?": {"_count": 2}}, "shot": {"_count": 5, "across": {"_count": 1}, "through": {"_count": 4}}, "had": {"_count": 2, "gone": {"_count": 1}, "been": {"_count": 1}}, "as": {"_count": 10, "angry": {"_count": 1}, "Blacks": {"_count": 1}, "Crookshanks": {"_count": 1}, "he": {"_count": 2}, "possible": {"_count": 1}, "Neville": {"_count": 1}, "the": {"_count": 2}, "she": {"_count": 1}}, "the": {"_count": 1, "troll": {"_count": 1}}, "are": {"_count": 1, "the": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "like": {"_count": 2, "hed": {"_count": 1}, "this": {"_count": 1}}, "in": {"_count": 35, "Harrys": {"_count": 2}, "his": {"_count": 25}, "the": {"_count": 7}, "lesser": {"_count": 1}}, "seared": {"_count": 3, "across": {"_count": 2}, "not": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "yet": {"_count": 2, "he": {"_count": 1}, "rigid": {"_count": 1}}, "his": {"_count": 1, "only": {"_count": 1}}, "to": {"_count": 3, "stop": {"_count": 1}, "explain": {"_count": 1}, "enjoy": {"_count": 1}}, "and": {"_count": 24, "ridicule": {"_count": 1}, "rage": {"_count": 2}, "fall": {"_count": 1}, "injury": {"_count": 1}, "humiliation": {"_count": 2}, "hed": {"_count": 1}, "recoiled": {"_count": 1}, "Harry": {"_count": 2}, "there": {"_count": 1}, "Malfoy": {"_count": 1}, "everybody": {"_count": 1}, "shock": {"_count": 1}, "much": {"_count": 1}, "terror": {"_count": 1}, "Hermione": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}, "semidarkness": {"_count": 1}, "fury": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 9, "dived": {"_count": 1}, "heard": {"_count": 1}, "was": {"_count": 3}, "slumped": {"_count": 1}, "felt": {"_count": 1}, "expected": {"_count": 1}, "opened": {"_count": 1}}, "was": {"_count": 10, "terrible": {"_count": 1}, "spreading": {"_count": 1}, "leaving": {"_count": 1}, "so": {"_count": 2}, "developing": {"_count": 1}, "blinding": {"_count": 1}, "gone": {"_count": 1}, "lifted": {"_count": 1}, "Harrys": {"_count": 1}}, "His": {"_count": 2, "arm": {"_count": 1}, "scar": {"_count": 1}}, "both": {"_count": 1, "their": {"_count": 1}}, "just": {"_count": 1, "above": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "receding": {"_count": 1, "around": {"_count": 1}}, "while": {"_count": 1, "enjoying": {"_count": 1}}, "Neville": {"_count": 1, "had": {"_count": 1}}, "Ron": {"_count": 2, "had": {"_count": 1}, "Hermione": {"_count": 1}}, "wrenched": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "bothered": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "fumbled": {"_count": 1, "in": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "beyond": {"_count": 3, "pain": {"_count": 1}, "anything": {"_count": 1}, "imagining": {"_count": 1}}, "my": {"_count": 1, "friends": {"_count": 1}}, "from": {"_count": 5, "the": {"_count": 2}, "Harrys": {"_count": 1}, "his": {"_count": 1}, "Xenophilius": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "receded": {"_count": 1, "again": {"_count": 1}}, "having": {"_count": 1, "to": {"_count": 1}}, "stabbed": {"_count": 1, "at": {"_count": 1}}, "escape": {"_count": 1, "him": {"_count": 1}}, "halfblinding": {"_count": 1, "him": {"_count": 1}}, "recede": {"_count": 1, "very": {"_count": 1}}, "so": {"_count": 1, "severe": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "thus": {"_count": 1, "far": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "thunderous": {"_count": 1, "crashes": {"_count": 1}}, "hit": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "of": {"_count": 7, "it": {"_count": 5}, "the": {"_count": 1}, "losing": {"_count": 1}}, "building": {"_count": 1, "in": {"_count": 1}}, "past": {"_count": 1, "endurance": {"_count": 1}}, "stop": {"_count": 1, "thought": {"_count": 1}}, "is": {"_count": 1, "part": {"_count": 1}}, "than": {"_count": 1, "you": {"_count": 1}}, "sporting": {"_count": 1, "grisly": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "stopped": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "rose": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 1, "lost": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "or": {"_count": 2, "discomfort": {"_count": 1}, "its": {"_count": 1}}, "cease": {"_count": 1, "with": {"_count": 1}}, "what": {"_count": 1, "happened": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "blazed": {"_count": 1, "through": {"_count": 1}}, "echoing": {"_count": 1, "not": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}}, "imagine": {"_count": 69, "where": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "him": {"_count": 2, "flying": {"_count": 1}, "ordering": {"_count": 1}}, "being": {"_count": 1, "in": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "the": {"_count": 4, "thirteenyearold": {"_count": 1}, "charm": {"_count": 1}, "kind": {"_count": 1}, "gossip": {"_count": 1}}, "me": {"_count": 1, "taking": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "Mr": {"_count": 1}}, "what": {"_count": 5, "Ginny": {"_count": 1}, "hes": {"_count": 2}, "it": {"_count": 1}, "all": {"_count": 1}}, "how": {"_count": 10, "it": {"_count": 2}, "you": {"_count": 1}, "the": {"_count": 1}, "I": {"_count": 1}, "much": {"_count": 3}, "badly": {"_count": 1}, "his": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "sent": {"_count": 1}}, "Dumbledore": {"_count": 1, "went": {"_count": 1}}, "Potter": {"_count": 1, "got": {"_count": 1}}, "Harry": {"_count": 1, "got": {"_count": 1}}, "when": {"_count": 1, "that": {"_count": 1}}, "his": {"_count": 1, "other": {"_count": 1}}, "dementors": {"_count": 1, "surviving": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "your": {"_count": 1, "scar": {"_count": 1}}, "Rons": {"_count": 1, "expression": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "that": {"_count": 4, "and": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "Riddle": {"_count": 1}}, "why": {"_count": 1, "she": {"_count": 1}}, "any": {"_count": 1, "situation": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "my": {"_count": 1, "feelings": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "going": {"_count": 1, "somewhere": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}, "two": {"_count": 1, "people": {"_count": 1}}, "anyone": {"_count": 1, "who": {"_count": 1}}, "a": {"_count": 2, "less": {"_count": 1}, "stupid": {"_count": 1}}, "clearly": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "Hogwarts": {"_count": 1}}, "Cissy": {"_count": 1, "": {"_count": 1}}}, "forbidden": {"_count": 26, "to": {"_count": 7, "ask": {"_count": 1}, "all": {"_count": 1}, "go": {"_count": 1}, "reveal": {"_count": 1}, "fight": {"_count": 1}, "tip": {"_count": 1}, "utter": {"_count": 1}}, "forest": {"_count": 4, "": {"_count": 2}, "whose": {"_count": 1}, "and": {"_count": 1}}, "corridor": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "questions": {"_count": 1, "about": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 2, "wizard": {"_count": 1}, "Dumbledore": {"_count": 1}}, "anyone": {"_count": 1, "to": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "potion": {"_count": 1, "that": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 2, "to": {"_count": 2}}, "from": {"_count": 1, "mentioning": {"_count": 1}}, "it": {"_count": 1, "you": {"_count": 1}}, "items": {"_count": 1, "there": {"_count": 1}}}, "younger": {"_count": 47, "Harry": {"_count": 1, "had": {"_count": 1}}, "sister": {"_count": 6, "began": {"_count": 1}, "but": {"_count": 1}, "Ginny": {"_count": 2}, "slouched": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "students": {"_count": 4, "away": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}, "were": {"_count": 1}}, "than": {"_count": 6, "Harry": {"_count": 2}, "seventeen": {"_count": 1}, "usual": {"_count": 1}, "me": {"_count": 1}, "Dudley": {"_count": 1}}, "were": {"_count": 1, "shining": {"_count": 1}}, "contestants": {"_count": 1, "Dumbledore": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "student": {"_count": 1, "if": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "brother": {"_count": 7, "Regulus": {"_count": 1}, "and": {"_count": 2}, "whom": {"_count": 1}, "": {"_count": 1}, "James": {"_count": 1}, "having": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "self": {"_count": 1, "a": {"_count": 1}}, "Horace": {"_count": 1, "Slughorn": {"_count": 1}}, "Dumbledore": {"_count": 1, "seemed": {"_count": 1}}, "Slughorn": {"_count": 1, "with": {"_count": 1}}, "man": {"_count": 1, "Dumbledore": {"_count": 1}}, "fitter": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "and": {"_count": 1, "happier": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "because": {"_count": 1, "nobody": {"_count": 1}}, "goblin": {"_count": 1, "approached": {"_count": 1}}, "kids": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "far": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}}, "dreamed": {"_count": 34, "and": {"_count": 1, "dreamed": {"_count": 1}}, "of": {"_count": 9, "some": {"_count": 1}, "returning": {"_count": 1}, "it": {"_count": 2}, "finding": {"_count": 1}, "": {"_count": 2}, "letting": {"_count": 1}, "overthrowing": {"_count": 1}}, "a": {"_count": 1, "giant": {"_count": 1}}, "about": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "that": {"_count": 8, "he": {"_count": 4}, "Malfoy": {"_count": 1}, "Neville": {"_count": 1}, "I": {"_count": 1}, "Professor": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 2, "would": {"_count": 1}, "were": {"_count": 1}}, "theyd": {"_count": 1, "attempt": {"_count": 1}}, "I": {"_count": 3, "was": {"_count": 3}}, "he": {"_count": 1, "was": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "Marietta": {"_count": 1, "would": {"_count": 1}}, "anything": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}}, "unknown": {"_count": 30, "relation": {"_count": 1, "coming": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "wizard": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 1, "an": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "Tuesday": {"_count": 1}}, "substance": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 2, "Mrs": {"_count": 1}, "humans": {"_count": 1}}, "test": {"_count": 1, "that": {"_count": 1}}, "quantity": {"_count": 1, "and": {"_count": 1}}, "although": {"_count": 2, "speculation": {"_count": 1}, "ctd": {"_count": 1}}, "handwritten": {"_count": 1, "incantation": {"_count": 1}}, "objects": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "fear": {"_count": 1}}, "Thicknesse": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 1, "now": {"_count": 1}}, "thief": {"_count": 3, "": {"_count": 1}, "inside": {"_count": 1}, "the": {"_count": 1}}, "youth": {"_count": 1, "with": {"_count": 1}}, "Abbott": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "undreamedof": {"_count": 1}, "untested": {"_count": 1}}, "magic": {"_count": 1, "drawn": {"_count": 1}}, "all": {"_count": 1, "he": {"_count": 1}}, "Horcrux": {"_count": 1, "that": {"_count": 1}}}, "relation": {"_count": 4, "coming": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "Voldemorts": {"_count": 1}, "Saturn": {"_count": 1}}, "of": {"_count": 1, "Hannahs": {"_count": 1}}}, "sometimes": {"_count": 76, "he": {"_count": 2, "thought": {"_count": 1}, "could": {"_count": 1}}, "flew": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "had": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "reenacted": {"_count": 1, "some": {"_count": 1}}, "happen": {"_count": 1, "": {"_count": 1}}, "eat": {"_count": 1, "our": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "have": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "foxfur": {"_count": 1}}, "felt": {"_count": 2, "guilty": {"_count": 1}, "that": {"_count": 1}}, "hurt": {"_count": 1, "years": {"_count": 1}}, "at": {"_count": 2, "night": {"_count": 2}}, "sir": {"_count": 2, "": {"_count": 2}}, "go": {"_count": 2, "down": {"_count": 1}, "for": {"_count": 1}}, "dont": {"_count": 1, "have": {"_count": 1}}, "to": {"_count": 1, "deal": {"_count": 1}}, "find": {"_count": 1, "and": {"_count": 1}}, "inhabited": {"_count": 1, "animals": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "think": {"_count": 2, "Rons": {"_count": 1}, "we": {"_count": 1}}, "staying": {"_count": 1, "for": {"_count": 1}}, "only": {"_count": 1, "for": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "irreversible": {"_count": 1, "sleep": {"_count": 1}}, "shared": {"_count": 1, "when": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "say": {"_count": 1, "Fangs": {"_count": 1}}, "marked": {"_count": 1, "there": {"_count": 1}}, "read": {"_count": 1, "them": {"_count": 1}}, "wondered": {"_count": 1, "how": {"_count": 1}}, "known": {"_count": 2, "as": {"_count": 2}}, "got": {"_count": 1, "a": {"_count": 1}}, "arrogant": {"_count": 1, "little": {"_count": 1}}, "all": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "you": {"_count": 1}}, "circumstances": {"_count": 1, "justify": {"_count": 1}}, "wonder": {"_count": 1, "whether": {"_count": 1}}, "happens": {"_count": 1, "isnt": {"_count": 1}}, "for": {"_count": 2, "their": {"_count": 2}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}, "killing": {"_count": 1, "to": {"_count": 1}}, "making": {"_count": 1, "unnecessary": {"_count": 1}}, "remaining": {"_count": 1, "stationary": {"_count": 1}}, "made": {"_count": 1, "detours": {"_count": 1}}, "kill": {"_count": 1, "said": {"_count": 1}}, "when": {"_count": 1, "Hermione": {"_count": 1}}, "offer": {"_count": 1, "Rosmerta": {"_count": 1}}, "very": {"_count": 1, "distinctive": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "disrupted": {"_count": 1, "the": {"_count": 1}}, "thought": {"_count": 1, "that": {"_count": 1}}, "contained": {"_count": 1, "Phineas": {"_count": 1}}, "Confunded": {"_count": 1, "Muggles": {"_count": 1}}, "ticked": {"_count": 1, "or": {"_count": 1}}, "hear": {"_count": 1, "an": {"_count": 1}}, "wore": {"_count": 1, "as": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}}, "strangers": {"_count": 6, "in": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "upsets": {"_count": 1, "him": {"_count": 1}}, "for": {"_count": 1, "being": {"_count": 1}}, "It": {"_count": 1, "seemed": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}}, "Very": {"_count": 156, "strange": {"_count": 2, "strangers": {"_count": 1}, "tales": {"_count": 1}}, "well": {"_count": 58, "he": {"_count": 3}, "Snape": {"_count": 1}, "the": {"_count": 1}, "go": {"_count": 1}, "Professor": {"_count": 1}, "thanks": {"_count": 1}, "": {"_count": 8}, "everyone": {"_count": 1}, "Severus": {"_count": 1}, "said": {"_count": 10}, "very": {"_count": 6}, "Karkaroff": {"_count": 2}, "Harry": {"_count": 1}, "she": {"_count": 3}, "then": {"_count": 7}, "Alice": {"_count": 1}, "Potter": {"_count": 3}, "everybody": {"_count": 1}, "Mr": {"_count": 1}, "take": {"_count": 1}, "Dawlish": {"_count": 1}, "thank": {"_count": 1}, "Miss": {"_count": 1}, "done": {"_count": 1}}, "secret": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "nice": {"_count": 3, "said": {"_count": 1}, "dear": {"_count": 1}, "to": {"_count": 1}}, "good": {"_count": 24, "said": {"_count": 6}, "guide": {"_count": 1}, "": {"_count": 7}, "indeed": {"_count": 4}, "Miss": {"_count": 1}, "Argus": {"_count": 1}, "Potter": {"_count": 2}, "very": {"_count": 1}, "murmured": {"_count": 1}}, "safe": {"_count": 1, "as": {"_count": 1}}, "Merry": {"_count": 1, "Christmas": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Mr": {"_count": 1}}, "fishy": {"_count": 1, "said": {"_count": 1}}, "pleased": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "latest": {"_count": 1, "model": {"_count": 1}}, "amusing": {"_count": 1, "said": {"_count": 1}}, "bad": {"_count": 1, "business": {"_count": 1}}, "slowly": {"_count": 7, "his": {"_count": 3}, "he": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "hardly": {"_count": 1}}, "few": {"_count": 2, "people": {"_count": 1}, "sir": {"_count": 1}}, "fortunate": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "true": {"_count": 1, "said": {"_count": 1}}, "close": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "smart": {"_count": 1, "owl": {"_count": 1}}, "little": {"_count": 1, "receptivity": {"_count": 1}}, "shaken": {"_count": 1, "the": {"_count": 1}}, "wise": {"_count": 1, "Harry": {"_count": 1}}, "poorly": {"_count": 1, "explained": {"_count": 1}}, "carefully": {"_count": 1, "he": {"_count": 1}}, "haunted": {"_count": 1, "up": {"_count": 1}}, "useful": {"_count": 1, "Potter": {"_count": 1}}, "interested": {"_count": 1, "to": {"_count": 1}}, "erm": {"_count": 1, "very": {"_count": 1}}, "badly": {"_count": 1, "said": {"_count": 1}}, "interesting": {"_count": 1, "dinner": {"_count": 1}}, "enthusiastic": {"_count": 1, "": {"_count": 1}}, "glad": {"_count": 1, "to": {"_count": 1}}, "nosy": {"_count": 1, "but": {"_count": 1}}, "daring": {"_count": 1, "": {"_count": 1}}, "kind": {"_count": 1, "ter": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}, "reluctantly": {"_count": 1, "Ron": {"_count": 1}}, "unwillingly": {"_count": 1, "Harry": {"_count": 1}}, "very": {"_count": 2, "well": {"_count": 1}, "few": {"_count": 1}}, "clever": {"_count": 2, "Granger": {"_count": 1}, "of": {"_count": 1}}, "clean": {"_count": 1, "arent": {"_count": 1}}, "funny": {"_count": 2, "snapped": {"_count": 1}, "": {"_count": 1}}, "impressive": {"_count": 1, "": {"_count": 1}}, "quiet": {"_count": 1, "now": {"_count": 1}}, "cheeky": {"_count": 1, "answers": {"_count": 1}}, "important": {"_count": 1, "I": {"_count": 1}}, "amusin": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "said": {"_count": 1}}, "astute": {"_count": 1, "Harry": {"_count": 1}}, "thoughtful": {"_count": 1, "": {"_count": 1}}, "handsome": {"_count": 1, "said": {"_count": 1}}, "brave": {"_count": 1, "": {"_count": 1}}, "happy": {"_count": 1, "said": {"_count": 1}}, "gratifying": {"_count": 1, "said": {"_count": 1}}, "dirty": {"_count": 1, "business": {"_count": 1}}, "old": {"_count": 1, "family": {"_count": 1}}, "valuable": {"_count": 1, "": {"_count": 1}}}, "hat": {"_count": 197, "had": {"_count": 7, "bowed": {"_count": 1}, "mentioned": {"_count": 1}, "barely": {"_count": 1}, "shouted": {"_count": 1}, "said": {"_count": 1}, "fallen": {"_count": 2}}, "black": {"_count": 1, "for": {"_count": 1}}, "was": {"_count": 8, "talking": {"_count": 1}, "patched": {"_count": 1}, "a": {"_count": 1}, "set": {"_count": 1}, "going": {"_count": 1}, "askew": {"_count": 1}, "sweeping": {"_count": 1}, "visible": {"_count": 1}}, "fell": {"_count": 2, "off": {"_count": 2}}, "": {"_count": 38, ".": {"_count": 32}, "!": {"_count": 4}, "?": {"_count": 2}}, "he": {"_count": 3, "stared": {"_count": 1}, "said": {"_count": 1}, "swept": {"_count": 1}}, "twitched": {"_count": 1, "": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "than": {"_count": 1, "me": {"_count": 1}}, "finished": {"_count": 1, "its": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 27, "sit": {"_count": 2}, "walked": {"_count": 1}, "several": {"_count": 1}, "bowed": {"_count": 1}, "pulled": {"_count": 1}, "back": {"_count": 1}, "a": {"_count": 3}, "that": {"_count": 1}, "gazing": {"_count": 1}, "orange": {"_count": 1}, "glaring": {"_count": 1}, "hurried": {"_count": 1}, "the": {"_count": 2}, "tails": {"_count": 1}, "each": {"_count": 1}, "stool": {"_count": 1}, "swept": {"_count": 1}, "cloak": {"_count": 1}, "head": {"_count": 1}, "dangerously": {"_count": 1}, "an": {"_count": 1}, "gloves": {"_count": 1}, "when": {"_count": 1}}, "which": {"_count": 3, "fell": {"_count": 1}, "had": {"_count": 1}, "Harry": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 2}}, "shouted": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "declared": {"_count": 1, "him": {"_count": 1}}, "eagerly": {"_count": 1, "on": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "dropped": {"_count": 1, "over": {"_count": 1}}, "shout": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "Christmas": {"_count": 1}}, "lopsided": {"_count": 1, "": {"_count": 1}}, "patched": {"_count": 1, "frayed": {"_count": 1}}, "on": {"_count": 5, "his": {"_count": 4}, "which": {"_count": 1}}, "with": {"_count": 3, "gold": {"_count": 1}, "her": {"_count": 1}, "earflaps": {"_count": 1}}, "a": {"_count": 3, "revolving": {"_count": 1}, "little": {"_count": 1}, "goblet": {"_count": 1}}, "the": {"_count": 2, "Sorting": {"_count": 1}, "sink": {"_count": 1}}, "down": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 3, "its": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "waiting": {"_count": 1, "": {"_count": 1}}, "smartly": {"_count": 1, "": {"_count": 1}}, "lay": {"_count": 1, "motionless": {"_count": 1}}, "contracted": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 3, "pull": {"_count": 1}, "reveal": {"_count": 1}, "match": {"_count": 1}}, "its": {"_count": 1, "handle": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "stand": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "topped": {"_count": 2, "with": {"_count": 2}}, "toward": {"_count": 1, "Dumbledore": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "stretched": {"_count": 1, "out": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "announces": {"_count": 1, "your": {"_count": 1}}, "placed": {"_count": 1, "it": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "in": {"_count": 3, "lipstick": {"_count": 1}, "his": {"_count": 2}}, "onto": {"_count": 4, "his": {"_count": 3}, "Nevilles": {"_count": 1}}, "flattening": {"_count": 1, "her": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "barely": {"_count": 1, "tickled": {"_count": 1}}, "off": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "though": {"_count": 1, "today": {"_count": 1}}, "shaped": {"_count": 2, "like": {"_count": 2}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "heavily": {"_count": 1, "patched": {"_count": 1}}, "became": {"_count": 1, "motionless": {"_count": 1}}, "feels": {"_count": 1, "itself": {"_count": 1}}, "considered": {"_count": 1, "for": {"_count": 1}}, "giving": {"_count": 1, "warnings": {"_count": 1}}, "give": {"_count": 1, "several": {"_count": 1}}, "before": {"_count": 1, "Angelina": {"_count": 1}}, "roaring": {"_count": 1, "amidst": {"_count": 1}}, "she": {"_count": 1, "bustled": {"_count": 1}}, "MadEye": {"_count": 1, "was": {"_count": 1}}, "decorated": {"_count": 2, "with": {"_count": 2}}, "trembled": {"_count": 1, "alarmingly": {"_count": 1}}, "pulled": {"_count": 1, "low": {"_count": 1}}, "gave": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "still": {"_count": 1, "faster": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "glittering": {"_count": 1, "with": {"_count": 1}}, "askew": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "out": {"_count": 1}}, "practice": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 2, "usual": {"_count": 1}, "he": {"_count": 1}}, "were": {"_count": 1, "singing": {"_count": 1}}, "The": {"_count": 1, "Life": {"_count": 1}}, "brim": {"_count": 1, "remained": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "whom": {"_count": 1, "Harry": {"_count": 1}}, "cried": {"_count": 1, "Gryffindoii": {"_count": 1}}, "handed": {"_count": 1, "it": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}}, "shopping": {"_count": 21, "with": {"_count": 2, "Aunt": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "for": {"_count": 1, "a": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "venerablelooking": {"_count": 1, "wizards": {"_count": 1}}, "bags": {"_count": 2, "and": {"_count": 1}, "say": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "before": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "while": {"_count": 1, "surrounded": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "alone": {"_count": 2, "": {"_count": 2}}, "and": {"_count": 1, "had": {"_count": 1}}}, "rushed": {"_count": 34, "them": {"_count": 1, "out": {"_count": 1}}, "toward": {"_count": 2, "Harry": {"_count": 1}, "it": {"_count": 1}}, "past": {"_count": 4, "them": {"_count": 1}, "him": {"_count": 2}, "pointing": {"_count": 1}}, "through": {"_count": 3, "his": {"_count": 3}}, "upstairs": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 5, "set": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 3}}, "over": {"_count": 2, "to": {"_count": 2}}, "back": {"_count": 1, "downstairs": {"_count": 1}}, "the": {"_count": 2, "aches": {"_count": 1}, "realization": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "Professor": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "forward": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 1, "into": {"_count": 1}}, "on": {"_count": 3, "Harry": {"_count": 1}, "": {"_count": 1}, "She": {"_count": 1}}, "him": {"_count": 1, "raising": {"_count": 1}}, "from": {"_count": 1, "painting": {"_count": 1}}}, "shop": {"_count": 111, "without": {"_count": 1, "buying": {"_count": 1}}, "on": {"_count": 2, "one": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 22}, "!": {"_count": 2}, "?": {"_count": 4}}, "with": {"_count": 3, "a": {"_count": 2}, "Hagrid": {"_count": 1}}, "alone": {"_count": 1, "feeling": {"_count": 1}}, "a": {"_count": 1, "boy": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "saw": {"_count": 1}}, "called": {"_count": 2, "Flourish": {"_count": 1}, "Weasleys": {"_count": 1}}, "was": {"_count": 3, "narrow": {"_count": 1}, "staring": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "theyre": {"_count": 1}, "if": {"_count": 1}}, "or": {"_count": 1, "house": {"_count": 1}}, "but": {"_count": 2, "nothing": {"_count": 1}, "he": {"_count": 1}}, "window": {"_count": 3, "was": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "looking": {"_count": 2, "lazily": {"_count": 1}, "very": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "selling": {"_count": 1, "poisonous": {"_count": 1}}, "windows": {"_count": 4, "": {"_count": 1}, "and": {"_count": 2}, "covered": {"_count": 1}}, "full": {"_count": 2, "of": {"_count": 2}}, "where": {"_count": 4, "Gilderoy": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "this": {"_count": 1}}, "Weasley": {"_count": 1, "retorted": {"_count": 1}}, "Quality": {"_count": 1, "Quidditch": {"_count": 1}}, "told": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "over": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "Zonkos": {"_count": 1, "Joke": {"_count": 1}}, "UNUSUAL": {"_count": 1, "TASTES": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "Indeed": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 1, "supply": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "until": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "whipped": {"_count": 1}}, "idea": {"_count": 1, "theyve": {"_count": 1}}, "four": {"_count": 1, "years": {"_count": 1}}, "still": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "business": {"_count": 1, "when": {"_count": 1}}, "and": {"_count": 2, "who": {"_count": 1}, "a": {"_count": 1}}, "carefully": {"_count": 1, "evaluate": {"_count": 1}}, "merchandise": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "how": {"_count": 1, "was": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "yet": {"_count": 1, "so": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "taking": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "run": {"_count": 1, "by": {"_count": 1}}, "fronts": {"_count": 2, "around": {"_count": 1}, "and": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}, "in": {"_count": 2, "Knockturn": {"_count": 1}, "Diagon": {"_count": 1}}, "Mr": {"_count": 1, "Borgin": {"_count": 1}}, "Borgin": {"_count": 1, "remained": {"_count": 1}}, "setting": {"_count": 1, "the": {"_count": 1}}, "taking": {"_count": 1, "as": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "whence": {"_count": 1, "came": {"_count": 1}}, "who": {"_count": 1, "thinks": {"_count": 1}}, "Ive": {"_count": 1, "said": {"_count": 1}}}, "buying": {"_count": 19, "anything": {"_count": 2, "": {"_count": 1}, "Malfoy": {"_count": 1}}, "my": {"_count": 1, "books": {"_count": 1}}, "her": {"_count": 1, "first": {"_count": 1}}, "a": {"_count": 5, "rusty": {"_count": 1}, "FleshEating": {"_count": 1}, "handsome": {"_count": 1}, "new": {"_count": 1}, "Portable": {"_count": 1}}, "today": {"_count": 1, "Mr": {"_count": 1}}, "Dudley": {"_count": 1, "expensive": {"_count": 1}}, "Stink": {"_count": 1, "Pellets": {"_count": 1}}, "souvenirs": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "wool": {"_count": 1}}, "stolen": {"_count": 1, "cauldrons": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "day": {"_count": 1}}, "Zonkos": {"_count": 1, "said": {"_count": 1}}}, "wildlooking": {"_count": 3, "old": {"_count": 1, "woman": {"_count": 1}}, "warlocks": {"_count": 1, "raucous": {"_count": 1}}, "black": {"_count": 1, "centaur": {"_count": 1}}}, "waved": {"_count": 98, "merrily": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 18, "hand": {"_count": 2}, "wand": {"_count": 15}, "empty": {"_count": 1}}, "and": {"_count": 4, "smiled": {"_count": 2}, "disappeared": {"_count": 1}, "came": {"_count": 1}}, "it": {"_count": 5, "around": {"_count": 1}, "muttered": {"_count": 1}, "energetically": {"_count": 1}, "three": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "madly": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 11, "Harry": {"_count": 4}, "Ron": {"_count": 2}, "Mr": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}}, "an": {"_count": 2, "elegant": {"_count": 1}, "arm": {"_count": 1}}, "a": {"_count": 5, "gloomy": {"_count": 1}, "pointed": {"_count": 1}, "hand": {"_count": 3}}, "vaguely": {"_count": 2, "at": {"_count": 1}, "out": {"_count": 1}}, "the": {"_count": 6, "wand": {"_count": 1}, "map": {"_count": 1}, "stunted": {"_count": 1}, "list": {"_count": 1}, "most": {"_count": 1}, "broken": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 3, "": {"_count": 1}, "grinning": {"_count": 1}, "beaming": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "adding": {"_count": 1, "their": {"_count": 1}}, "them": {"_count": 3, "off": {"_count": 2}, "away": {"_count": 1}}, "her": {"_count": 14, "wand": {"_count": 11}, "down": {"_count": 2}, "away": {"_count": 1}}, "what": {"_count": 1, "felt": {"_count": 1}}, "then": {"_count": 1, "remembered": {"_count": 1}}, "furiously": {"_count": 1, "at": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "from": {"_count": 1, "next": {"_count": 1}}, "in": {"_count": 1, "welcome": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "good": {"_count": 1, "night": {"_count": 1}}, "impatiently": {"_count": 1, "at": {"_count": 1}}, "clearly": {"_count": 1, "eager": {"_count": 1}}, "their": {"_count": 3, "wands": {"_count": 2}, "hats": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "Ron": {"_count": 1, "grimaced": {"_count": 1}}, "lazily": {"_count": 1, "giving": {"_count": 1}}}, "merrily": {"_count": 14, "at": {"_count": 3, "him": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "though": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "dancing": {"_count": 1, "flames": {"_count": 1}}, "to": {"_count": 2, "him": {"_count": 1}, "Ginny": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "blazing": {"_count": 1, "fire": {"_count": 1}}}, "bus": {"_count": 28, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "stops": {"_count": 1, "worked": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 3, "began": {"_count": 1}, "two": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 2, "went": {"_count": 1}, "was": {"_count": 1}}, "muttered": {"_count": 1, "Not": {"_count": 1}}, "that": {"_count": 1, "didnt": {"_count": 1}}, "moved": {"_count": 2, "abruptly": {"_count": 1}, "on": {"_count": 1}}, "the": {"_count": 1, "better": {"_count": 1}}, "had": {"_count": 1, "appeared": {"_count": 1}}, "stopped": {"_count": 1, "abruptly": {"_count": 1}}, "an": {"_count": 1, "unpleasant": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "shelter": {"_count": 1, "": {"_count": 1}}, "rumbled": {"_count": 1, "by": {"_count": 1}}}, "coat": {"_count": 39, "had": {"_count": 1, "actually": {"_count": 1}}, "of": {"_count": 7, "arms": {"_count": 7}}, "hanger": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "copper": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "and": {"_count": 5, "threw": {"_count": 1}, "was": {"_count": 1}, "spats": {"_count": 1}, "stumbled": {"_count": 1}, "Dudley": {"_count": 1}}, "fell": {"_count": 1, "off": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "buttons": {"_count": 1, "she": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "clutching": {"_count": 1, "his": {"_count": 1}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "vanishing": {"_count": 1, "through": {"_count": 1}}, "flying": {"_count": 1, "covered": {"_count": 1}}, "flapping": {"_count": 1, "behind": {"_count": 1}}, "that": {"_count": 1, "might": {"_count": 1}}, "unless": {"_count": 1, "it": {"_count": 1}}, "now": {"_count": 1, "his": {"_count": 1}}, "buttoned": {"_count": 1, "up": {"_count": 1}}}, "actually": {"_count": 140, "shaken": {"_count": 1, "his": {"_count": 1}}, "spoke": {"_count": 1, "": {"_count": 1}}, "meet": {"_count": 1, "him": {"_count": 1}}, "get": {"_count": 1, "onto": {"_count": 1}}, "running": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "fainted": {"_count": 1, "": {"_count": 1}}, "died": {"_count": 2, "": {"_count": 1}, "doing": {"_count": 1}}, "smiling": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "hold": {"_count": 1, "the": {"_count": 1}}, "shaking": {"_count": 2, "her": {"_count": 1}, "with": {"_count": 1}}, "say": {"_count": 2, "anything": {"_count": 1}, "": {"_count": 1}}, "making": {"_count": 1, "things": {"_count": 1}}, "met": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "comprised": {"_count": 1, "of": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "dropped": {"_count": 1, "off": {"_count": 1}}, "conjured": {"_count": 1, "the": {"_count": 1}}, "attack": {"_count": 1, "anyone": {"_count": 1}}, "considered": {"_count": 1, "sending": {"_count": 1}}, "learn": {"_count": 1, "them": {"_count": 1}}, "stood": {"_count": 1, "on": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "heard": {"_count": 1, "Krum": {"_count": 1}}, "did": {"_count": 2, "a": {"_count": 1}, "something": {"_count": 1}}, "turned": {"_count": 3, "his": {"_count": 2}, "to": {"_count": 1}}, "felt": {"_count": 2, "himself": {"_count": 1}, "flecks": {"_count": 1}}, "giggled": {"_count": 1, "": {"_count": 1}}, "seen": {"_count": 2, "him": {"_count": 1}, "Kreacher": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "exist": {"_count": 2, "do": {"_count": 1}, "": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 5, "Hermione": {"_count": 2}, "Luna": {"_count": 1}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}}, "screwed": {"_count": 1, "up": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 11}, "!": {"_count": 1}}, "Stubby": {"_count": 1, "Boardman": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 2}}, "performed": {"_count": 1, "them": {"_count": 1}}, "do": {"_count": 1, "the": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "float": {"_count": 1, "a": {"_count": 1}}, "knew": {"_count": 1, "the": {"_count": 1}}, "progressed": {"_count": 1, "to": {"_count": 1}}, "giving": {"_count": 1, "out": {"_count": 1}}, "Minerva": {"_count": 1, "simpered": {"_count": 1}}, "pulled": {"_count": 1, "in": {"_count": 1}}, "got": {"_count": 1, "off": {"_count": 1}}, "singing": {"_count": 1, "carols": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "stick": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "enjoy": {"_count": 1, "having": {"_count": 1}}, "standing": {"_count": 1, "in": {"_count": 1}}, "shining": {"_count": 1, "with": {"_count": 1}}, "fogging": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 2, "to": {"_count": 1}, "six": {"_count": 1}}, "works": {"_count": 1, "you": {"_count": 1}}, "dried": {"_count": 1, "doxy": {"_count": 1}}, "stepped": {"_count": 1, "back": {"_count": 1}}, "slid": {"_count": 1, "forward": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "make": {"_count": 1, "your": {"_count": 1}}, "having": {"_count": 1, "trouble": {"_count": 1}}, "disappointed": {"_count": 1, "arent": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "stamping": {"_count": 1, "her": {"_count": 1}}, "asked": {"_count": 2, "me": {"_count": 2}}, "doing": {"_count": 1, "though": {"_count": 1}}, "a": {"_count": 2, "garden": {"_count": 1}, "sudden": {"_count": 1}}, "interviewed": {"_count": 1, "him": {"_count": 1}}, "mention": {"_count": 1, "Voldemorts": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "reach": {"_count": 1, "their": {"_count": 1}}, "pinching": {"_count": 1, "his": {"_count": 1}}, "been": {"_count": 1, "going": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "taken": {"_count": 1, "out": {"_count": 1}}, "snorted": {"_count": 1, "": {"_count": 1}}, "crying": {"_count": 1, "tears": {"_count": 1}}, "defending": {"_count": 1, "Im": {"_count": 1}}, "sent": {"_count": 1, "for": {"_count": 1}}, "its": {"_count": 1, "about": {"_count": 1}}, "as": {"_count": 1, "stupid": {"_count": 1}}, "but": {"_count": 1, "Im": {"_count": 1}}, "my": {"_count": 1, "brother": {"_count": 1}}, "bit": {"_count": 1, "me": {"_count": 1}}, "know": {"_count": 1, "what": {"_count": 1}}, "imprisoning": {"_count": 1, "a": {"_count": 1}}, "cared": {"_count": 1, "about": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "seized": {"_count": 1, "handfuls": {"_count": 1}}, "replied": {"_count": 1, "the": {"_count": 1}}, "mounds": {"_count": 1, "of": {"_count": 1}}, "think": {"_count": 1, "wed": {"_count": 1}}, "weighed": {"_count": 1, "on": {"_count": 1}}, "moved": {"_count": 1, "the": {"_count": 1}}, "give": {"_count": 1, "them": {"_count": 1}}, "the": {"_count": 1, "three": {"_count": 1}}, "one": {"_count": 1, "word": {"_count": 1}}, "showing": {"_count": 1, "himself": {"_count": 1}}, "caught": {"_count": 1, "him": {"_count": 1}}, "closed": {"_count": 1, "upon": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "kill": {"_count": 1, "us": {"_count": 1}}, "are": {"_count": 1, "joking": {"_count": 1}}, "cast": {"_count": 1, "the": {"_count": 1}}, "struck": {"_count": 1, "the": {"_count": 1}}}, "shaken": {"_count": 29, "his": {"_count": 3, "hand": {"_count": 2}, "head": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "hands": {"_count": 1, "with": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "awake": {"_count": 2, "several": {"_count": 1}, "by": {"_count": 1}}, "the": {"_count": 1, "Care": {"_count": 1}}, "and": {"_count": 1, "pleased": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 2}, "what": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "Frank": {"_count": 1, "took": {"_count": 1}}, "but": {"_count": 1, "determined": {"_count": 1}}, "from": {"_count": 1, "these": {"_count": 1}}, "pale": {"_count": 1, "and": {"_count": 1}}, "roughly": {"_count": 1, "enough": {"_count": 1}}, "obviously": {"_count": 1, "but": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "off": {"_count": 1, "at": {"_count": 1}}}, "weirdest": {"_count": 2, "thing": {"_count": 2, "about": {"_count": 1}, "weve": {"_count": 1}}}, "vanish": {"_count": 27, "the": {"_count": 3, "second": {"_count": 1}, "snails": {"_count": 1}, "whole": {"_count": 1}}, "and": {"_count": 4, "turn": {"_count": 1}, "reappear": {"_count": 2}, "he": {"_count": 1}}, "instantly": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 1}, "Harrys": {"_count": 1}, "lack": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "their": {"_count": 1, "mice": {"_count": 1}}, "his": {"_count": 1, "ears": {"_count": 1}}, "as": {"_count": 2, "lights": {"_count": 1}, "he": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "then": {"_count": 1, "tugged": {"_count": 1}}, "in": {"_count": 1, "pairs": {"_count": 1}}, "leaving": {"_count": 1, "them": {"_count": 1}}}, "closer": {"_count": 147, "look": {"_count": 10, "": {"_count": 6}, "at": {"_count": 1}, "Crabbe": {"_count": 1}, "showed": {"_count": 2}}, "to": {"_count": 53, "Harry": {"_count": 4}, "the": {"_count": 22}, "look": {"_count": 1}, "Malfoy": {"_count": 1}, "finding": {"_count": 1}, "see": {"_count": 1}, "Ron": {"_count": 1}, "his": {"_count": 1}, "listen": {"_count": 2}, "her": {"_count": 2}, "Harrys": {"_count": 2}, "George": {"_count": 1}, "him": {"_count": 4}, "read": {"_count": 1}, "Rons": {"_count": 1}, "its": {"_count": 1}, "Umbridge": {"_count": 1}, "Albus": {"_count": 1}, "Hermione": {"_count": 1}, "hear": {"_count": 1}, "Mundunguss": {"_count": 1}, "each": {"_count": 1}, "discovering": {"_count": 1}}, "at": {"_count": 2, "Scabbers": {"_count": 1}, "hand": {"_count": 1}}, "together": {"_count": 3, "than": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 3, "heard": {"_count": 1}, "saw": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 29}, "!": {"_count": 1}}, "watch": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 9, "Harry": {"_count": 1}, "closer": {"_count": 6}, "said": {"_count": 1}, "saw": {"_count": 1}}, "scared": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 2, "eight": {"_count": 1}, "head": {"_count": 1}}, "on": {"_count": 1, "all": {"_count": 1}}, "inspection": {"_count": 1, "looked": {"_count": 1}}, "grasping": {"_count": 1, "his": {"_count": 1}}, "What": {"_count": 1, "was": {"_count": 1}}, "We": {"_count": 1, "dont": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "circles": {"_count": 1}}, "from": {"_count": 1, "this": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 1, "tried": {"_count": 1}}, "international": {"_count": 1, "wizarding": {"_count": 1}}, "tilting": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "that": {"_count": 1, "bead": {"_count": 1}}, "pressing": {"_count": 1, "darkly": {"_count": 1}}, "than": {"_count": 3, "a": {"_count": 1}, "that": {"_count": 1}, "before": {"_count": 1}}, "taking": {"_count": 1, "care": {"_count": 1}}, "a": {"_count": 1, "towering": {"_count": 1}}, "take": {"_count": 1, "a": {"_count": 1}}, "Hermione": {"_count": 1, "even": {"_count": 1}}, "miss": {"_count": 1, "than": {"_count": 1}}, "around": {"_count": 1, "Harry": {"_count": 1}}, "excitement": {"_count": 1, "flooding": {"_count": 1}}, "the": {"_count": 1, "barman": {"_count": 1}}, "although": {"_count": 1, "the": {"_count": 1}}, "gazing": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "whichever": {"_count": 1}}, "youll": {"_count": 1, "see": {"_count": 1}}, "this": {"_count": 1, "dawn": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "claws": {"_count": 1, "and": {"_count": 1}}}, "Everybody": {"_count": 29, "knew": {"_count": 1, "that": {"_count": 1}}, "clapped": {"_count": 1, "and": {"_count": 1}}, "finished": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 4, "in": {"_count": 1}, "clearly": {"_count": 1}, "wearing": {"_count": 2}}, "knows": {"_count": 1, "about": {"_count": 1}}, "said": {"_count": 1, "hi": {"_count": 1}}, "present": {"_count": 1, "knew": {"_count": 1}}, "flinched": {"_count": 1, "like": {"_count": 1}}, "got": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "aware": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "put": {"_count": 1, "up": {"_count": 1}}, "except": {"_count": 1, "Harry": {"_count": 1}}, "ready": {"_count": 1, "": {"_count": 1}}, "else": {"_count": 1, "spent": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 6, "at": {"_count": 1}, "quickly": {"_count": 1}, "from": {"_count": 1}, "around": {"_count": 2}, "tense": {"_count": 1}}, "mounted": {"_count": 1, "their": {"_count": 1}}, "always": {"_count": 1, "requests": {"_count": 1}}}, "nobody": {"_count": 186, "liked": {"_count": 1, "to": {"_count": 1}}, "stood": {"_count": 1, "a": {"_count": 1}}, "seemed": {"_count": 11, "about": {"_count": 1}, "to": {"_count": 10}}, "found": {"_count": 1, "this": {"_count": 1}}, "would": {"_count": 7, "speak": {"_count": 1}, "see": {"_count": 2}, "even": {"_count": 1}, "understand": {"_count": 1}, "remember": {"_count": 1}, "answer": {"_count": 1}}, "who": {"_count": 1, "has": {"_count": 1}}, "understood": {"_count": 2, "why": {"_count": 2}}, "as": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "wishes": {"_count": 1, "more": {"_count": 1}}, "heard": {"_count": 3, "much": {"_count": 1}, "him": {"_count": 1}, "what": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "else": {"_count": 12, "knows": {"_count": 1}, "to": {"_count": 1}, "has": {"_count": 2}, "had": {"_count": 2}, "would": {"_count": 1}, "could": {"_count": 1}, "there": {"_count": 1}, "seemed": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "answered": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 1, "to": {"_count": 1}}, "moved": {"_count": 4, "or": {"_count": 2}, "": {"_count": 2}}, "spoke": {"_count": 4, "": {"_count": 3}, "he": {"_count": 1}}, "on": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "ever": {"_count": 3, "told": {"_count": 1}, "see": {"_count": 1}, "seemed": {"_count": 1}}, "except": {"_count": 1, "Dumbledore": {"_count": 1}}, "had": {"_count": 8, "as": {"_count": 1}, "been": {"_count": 1}, "yet": {"_count": 1}, "bothered": {"_count": 1}, "thought": {"_count": 1}, "visibly": {"_count": 1}, "ever": {"_count": 1}, "seen": {"_count": 1}}, "has": {"_count": 3, "ever": {"_count": 1}, "yet": {"_count": 1}, "been": {"_count": 1}}, "in": {"_count": 10, "sight": {"_count": 1}, "any": {"_count": 1}, "their": {"_count": 4}, "Gryffindor": {"_count": 1}, "particular": {"_count": 2}, "the": {"_count": 1}}, "was": {"_count": 20, "quite": {"_count": 1}, "very": {"_count": 1}, "quoting": {"_count": 1}, "glaring": {"_count": 1}, "bothering": {"_count": 1}, "passing": {"_count": 1}, "touching": {"_count": 1}, "this": {"_count": 1}, "listening": {"_count": 3}, "likely": {"_count": 1}, "paying": {"_count": 2}, "stopping": {"_count": 1}, "lingering": {"_count": 1}, "talking": {"_count": 1}, "steering": {"_count": 1}, "going": {"_count": 1}, "sitting": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "Liechtenstein": {"_count": 1}}, "knows": {"_count": 2, "do": {"_count": 1}, "what": {"_count": 1}}, "can": {"_count": 3, "steal": {"_count": 1}, "find": {"_count": 1}, "promise": {"_count": 1}}, "under": {"_count": 1, "seventeen": {"_count": 1}}, "wanted": {"_count": 2, "to": {"_count": 2}}, "will": {"_count": 4, "think": {"_count": 1}, "believe": {"_count": 1}, "be": {"_count": 1}, "force": {"_count": 1}}, "should": {"_count": 1, "hear": {"_count": 1}}, "could": {"_count": 8, "see": {"_count": 1}, "call": {"_count": 1}, "say": {"_count": 1}, "possibly": {"_count": 1}, "hear": {"_count": 2}, "fly": {"_count": 1}, "understand": {"_count": 1}}, "ask": {"_count": 1, "him": {"_count": 1}}, "did": {"_count": 2, "he": {"_count": 2}}, "bothers": {"_count": 1, "about": {"_count": 1}}, "needed": {"_count": 1, "it": {"_count": 1}}, "called": {"_count": 1, "him": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "said": {"_count": 3, "Neville": {"_count": 1}, "it": {"_count": 2}}, "laughed": {"_count": 1, "harder": {"_count": 1}}, "knew": {"_count": 3, "yet": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}}, "wants": {"_count": 1, "the": {"_count": 1}}, "helped": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 8, "Nearly": {"_count": 1}, "Harry": {"_count": 2}, "Peeves": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "Ginny": {"_count": 1}}, "believes": {"_count": 1, "his": {"_count": 1}}, "looked": {"_count": 2, "at": {"_count": 1}, "to": {"_count": 1}}, "paid": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 2, "hear": {"_count": 1}, "be": {"_count": 1}}, "left": {"_count": 3, "to": {"_count": 2}, "him": {"_count": 1}}, "there": {"_count": 5, "": {"_count": 4}, "at": {"_count": 1}}, "either": {"_count": 1, "alive": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "made": {"_count": 1, "any": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "sees": {"_count": 1, "us": {"_count": 1}}, "within": {"_count": 1, "Hogwarts": {"_count": 1}}, "though": {"_count": 1, "you": {"_count": 1}}, "hearing": {"_count": 1, "him": {"_count": 1}}, "here": {"_count": 1, "except": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "elses": {"_count": 1, "": {"_count": 1}}, "followed": {"_count": 1, "them": {"_count": 1}}, "keeps": {"_count": 1, "it": {"_count": 1}}, "mattered": {"_count": 1, "but": {"_count": 1}}, "died": {"_count": 1, "for": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}}, "disagree": {"_count": 7, "with": {"_count": 3, "Dudleys": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "Hermione": {"_count": 1, "continued": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "that": {"_count": 1, "murdering": {"_count": 1}}}, "3": {"_count": 12, "THE": {"_count": 5, "LETTERS": {"_count": 1}, "BURROW": {"_count": 1}, "KNIGHT": {"_count": 1}, "INVITATION": {"_count": 1}, "DURSLEYS": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "1": {"_count": 2, "July": {"_count": 1}, "ST": {"_count": 1}}, "WILL": {"_count": 1, "AND": {"_count": 1}}}, "LETTERS": {"_count": 1, "FROM": {"_count": 1, "NO": {"_count": 1}}}, "FROM": {"_count": 11, "NO": {"_count": 1, "ONE": {"_count": 1}}, "PLATFORM": {"_count": 1, "NINE": {"_count": 1}}, "DUMBLEDORE": {"_count": 1, "LAST": {"_count": 1}}, "SCHOOL": {"_count": 1, "Uncle": {"_count": 1}}, "Dudley": {"_count": 1, "gave": {"_count": 1}}, "THE": {"_count": 2, "DEMENTORS": {"_count": 1}, "UPCOMING": {"_count": 1}}, "HIM": {"_count": 1, "": {"_count": 1}}, "BECOMING": {"_count": 1, "POISONS": {"_count": 1}}, "AZKABAN": {"_count": 1, "MINISTRY": {"_count": 1}}, "KREACHER": {"_count": 1, "": {"_count": 1}}}, "NO": {"_count": 36, "ONE": {"_count": 1, "The": {"_count": 1}}, "": {"_count": 26, "!": {"_count": 26}}, "MORTAL": {"_count": 1, "OR": {"_count": 1}}, "HARRY": {"_count": 1, "POTTER": {"_count": 1}}, "CROOKSHANKS": {"_count": 1, "NO": {"_count": 1}}, "TIME": {"_count": 1, "TO": {"_count": 1}}, "YOU": {"_count": 2, "DONT": {"_count": 2}}, "IT": {"_count": 1, "RUDDY": {"_count": 1}}, "JUST": {"_count": 1, "CARRY": {"_count": 1}}, "NEED": {"_count": 1, "IVE": {"_count": 1}}}, "ONE": {"_count": 5, "The": {"_count": 1, "escape": {"_count": 1}}, "HE": {"_count": 1, "EVER": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 1, "captioned": {"_count": 1}}}, "escape": {"_count": 82, "of": {"_count": 3, "the": {"_count": 1}, "Trevor": {"_count": 1}, "this": {"_count": 1}}, "the": {"_count": 7, "straps": {"_count": 1}, "fire": {"_count": 1}, "overcrowded": {"_count": 1}, "Inferi": {"_count": 1}, "chilly": {"_count": 1}, "crowded": {"_count": 1}, "body": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 18}, "?": {"_count": 1}}, "and": {"_count": 1, "even": {"_count": 1}}, "from": {"_count": 11, "Filch": {"_count": 1}, "the": {"_count": 4}, "Azkaban": {"_count": 3}, "him": {"_count": 1}, "YouKnowWho": {"_count": 1}, "Godrics": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "someone": {"_count": 1}}, "with": {"_count": 1, "nothing": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 3, "Buckbeak": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "outrun": {"_count": 1}}, "was": {"_count": 1, "into": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "justice": {"_count": 1, "was": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "Azkaban": {"_count": 1, "let": {"_count": 1}}, "route": {"_count": 1, "but": {"_count": 1}}, "Potter": {"_count": 1, "drawled": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "him": {"_count": 2, "however": {"_count": 1}, "not": {"_count": 1}}, "had": {"_count": 1, "wrought": {"_count": 1}}, "in": {"_count": 2, "fact": {"_count": 1}, "time": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "And": {"_count": 1, "when": {"_count": 1}}, "like": {"_count": 1, "Karkaroff": {"_count": 1}}, "he": {"_count": 2, "must": {"_count": 1}, "would": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "drunken": {"_count": 1}, "lake": {"_count": 1}}, "Yaxley": {"_count": 1, "": {"_count": 1}}, "proof": {"_count": 1, "": {"_count": 1}}, "Fleurs": {"_count": 1, "questions": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "The": {"_count": 1, "Summoning": {"_count": 1}}, "but": {"_count": 1, "swallowed": {"_count": 1}}}, "Brazilian": {"_count": 1, "boa": {"_count": 1, "constrictor": {"_count": 1}}}, "earned": {"_count": 16, "Harry": {"_count": 1, "his": {"_count": 1}}, "fifty": {"_count": 1, "points": {"_count": 1}}, "the": {"_count": 2, "Seekers": {"_count": 1}, "right": {"_count": 1}}, "a": {"_count": 4, "drink": {"_count": 1}, "bit": {"_count": 1}, "T": {"_count": 1}, "prize": {"_count": 1}}, "quiet": {"_count": 1, "Christmas": {"_count": 1}}, "my": {"_count": 1, "respect": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "her": {"_count": 1, "twenty": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "right": {"_count": 1}}, "detentions": {"_count": 1, "What": {"_count": 1}}}, "longestever": {"_count": 1, "punishment": {"_count": 1, "": {"_count": 1}}}, "punishment": {"_count": 25, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 1}, "!": {"_count": 1}}, "was": {"_count": 3, "going": {"_count": 1}, "probably": {"_count": 1}, "still": {"_count": 1}}, "Hagrid": {"_count": 1, "more": {"_count": 1}}, "for": {"_count": 3, "him": {"_count": 1}, "spreading": {"_count": 1}, "Luciuss": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "essay": {"_count": 1, "than": {"_count": 1}}, "bad": {"_count": 1, "enough": {"_count": 1}}, "upon": {"_count": 1, "Kreacher": {"_count": 1}}, "you": {"_count": 1, "may": {"_count": 1}}, "of": {"_count": 2, "detention": {"_count": 1}, "all": {"_count": 1}}, "as": {"_count": 1, "did": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "Carrows": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "By": {"_count": 91, "the": {"_count": 46, "time": {"_count": 25}, "end": {"_count": 6}, "next": {"_count": 1}, "afternoon": {"_count": 1}, "glow": {"_count": 1}, "look": {"_count": 1}, "way": {"_count": 1}, "sound": {"_count": 2}, "feeble": {"_count": 1}, "following": {"_count": 1}, "light": {"_count": 1}, "looks": {"_count": 2}, "evening": {"_count": 2}, "laws": {"_count": 1}}, "nightfall": {"_count": 2, "Dudley": {"_count": 1}, "Harry": {"_count": 1}}, "eleven": {"_count": 1, "oclock": {"_count": 1}}, "next": {"_count": 2, "morning": {"_count": 2}}, "far": {"_count": 1, "the": {"_count": 1}}, "means": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "time": {"_count": 1}}, "twelve": {"_count": 1, "oclock": {"_count": 1}}, "seven": {"_count": 2, "oclock": {"_count": 2}}, "dusk": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "lot": {"_count": 1}}, "Gryffindor": {"_count": 1, "the": {"_count": 1}}, "half": {"_count": 1, "past": {"_count": 1}}, "cheering": {"_count": 1, "your": {"_count": 1}}, "eight": {"_count": 1, "oclock": {"_count": 1}}, "ten": {"_count": 1, "to": {"_count": 1}}, "breakfast": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 4, "accounts": {"_count": 1}, "means": {"_count": 2}, "the": {"_count": 1}}, "six": {"_count": 1, "oclock": {"_count": 1}}, "Order": {"_count": 1, "of": {"_count": 1}}, "midmorning": {"_count": 1, "enormous": {"_count": 1}}, "they": {"_count": 1, "he": {"_count": 1}}, "jogging": {"_count": 1, "a": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "herd": {"_count": 1}}, "which": {"_count": 1, "time": {"_count": 1}}, "waiting": {"_count": 1, "two": {"_count": 1}}, "allowing": {"_count": 1, "Dumbledore": {"_count": 1}}, "us": {"_count": 1, "I": {"_count": 1}}, "an": {"_count": 1, "act": {"_count": 1}}, "committing": {"_count": 1, "murder": {"_count": 1}}, "planting": {"_count": 1, "the": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "Saturday": {"_count": 1, "morning": {"_count": 1}}, "repeatedly": {"_count": 1, "rebuffing": {"_count": 1}}, "now": {"_count": 1, "hes": {"_count": 1}}, "day": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "sheer": {"_count": 1, "force": {"_count": 1}}, "returning": {"_count": 1, "you": {"_count": 1}}}, "summer": {"_count": 146, "holidays": {"_count": 9, "had": {"_count": 1}, "Uncle": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "of": {"_count": 1}}, "Oh": {"_count": 1, "shut": {"_count": 1}}, "": {"_count": 42, ".": {"_count": 30}, "?": {"_count": 9}, "!": {"_count": 3}}, "coming": {"_count": 1, "": {"_count": 1}}, "ahead": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 4, "Ron": {"_count": 1}, "George": {"_count": 1}, "Hagrid": {"_count": 1}, "Susan": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "vacation": {"_count": 2, "came": {"_count": 1}, "too": {"_count": 1}}, "devising": {"_count": 1, "a": {"_count": 1}}, "hell": {"_count": 1, "know": {"_count": 1}}, "break": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "turning": {"_count": 1}}, "holiday": {"_count": 2, "in": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "fact": {"_count": 1}, "front": {"_count": 1}}, "hed": {"_count": 1, "gotten": {"_count": 1}}, "as": {"_count": 2, "long": {"_count": 1}, "first": {"_count": 1}}, "Weasley": {"_count": 1, "said": {"_count": 1}}, "air": {"_count": 4, "drifted": {"_count": 1}, "itself": {"_count": 1}, "wafted": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 6, "there": {"_count": 1}, "I": {"_count": 1}, "Ill": {"_count": 1}, "was": {"_count": 1}, "see": {"_count": 1}, "had": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 6, "would": {"_count": 1}, "said": {"_count": 2}, "was": {"_count": 1}, "did": {"_count": 1}, "remembered": {"_count": 1}}, "prior": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "carrot": {"_count": 1}}, "would": {"_count": 2, "get": {"_count": 1}, "I": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "whispered": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 2, "this": {"_count": 1}, "Dumbledore": {"_count": 1}}, "about": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 1, "ensure": {"_count": 1}}, "werent": {"_count": 1, "you": {"_count": 1}}, "gave": {"_count": 1, "Neville": {"_count": 1}}, "before": {"_count": 1, "last": {"_count": 1}}, "ve": {"_count": 1, "are": {"_count": 1}}, "term": {"_count": 1, "would": {"_count": 1}}, "so": {"_count": 2, "far": {"_count": 2}}, "had": {"_count": 1, "been": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "news": {"_count": 1, "shouting": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "happened": {"_count": 1, "again": {"_count": 1}}, "but": {"_count": 4, "while": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "others": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "Dumbledore": {"_count": 2, "closed": {"_count": 1}, "walked": {"_count": 1}}, "when": {"_count": 2, "we": {"_count": 1}, "they": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "Dumbledore": {"_count": 1}}, "they": {"_count": 1, "passed": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "sky": {"_count": 1, "as": {"_count": 1}}, "either": {"_count": 1, "Hermione": {"_count": 1}}, "an": {"_count": 1, "hes": {"_count": 1}}, "outing": {"_count": 1, "we": {"_count": 1}}, "playing": {"_count": 1, "Quidditch": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "or": {"_count": 1, "last": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}}, "holidays": {"_count": 79, "had": {"_count": 2, "started": {"_count": 2}}, "where": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "start": {"_count": 1}}, "and": {"_count": 10, "Harry": {"_count": 1}, "to": {"_count": 1}, "insists": {"_count": 1}, "proper": {"_count": 1}, "then": {"_count": 1}, "am": {"_count": 1}, "was": {"_count": 1}, "theres": {"_count": 1}, "Hermione": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 30, "?": {"_count": 5}, "!": {"_count": 2}, ".": {"_count": 23}}, "the": {"_count": 1, "Invisibility": {"_count": 1}}, "werent": {"_count": 1, "nearly": {"_count": 1}}, "I": {"_count": 2, "always": {"_count": 1}, "believe": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "thinking": {"_count": 1, "that": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "not": {"_count": 1}, "over": {"_count": 1}}, "but": {"_count": 1, "Mr": {"_count": 1}}, "dont": {"_count": 1, "they": {"_count": 1}}, "Harry": {"_count": 2, "was": {"_count": 2}}, "people": {"_count": 1, "kept": {"_count": 1}}, "wandering": {"_count": 1, "the": {"_count": 1}}, "approached": {"_count": 1, "he": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "as": {"_count": 1, "nearly": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "something": {"_count": 1, "happened": {"_count": 1}}, "start": {"_count": 1, "on": {"_count": 1}}, "passed": {"_count": 1, "but": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "pondering": {"_count": 1, "the": {"_count": 1}}, "began": {"_count": 1, "but": {"_count": 1}}, "of": {"_count": 1, "two": {"_count": 1}}, "Luna": {"_count": 1, "ll": {"_count": 1}}}, "crossed": {"_count": 103, "Privet": {"_count": 1, "Drive": {"_count": 1}}, "his": {"_count": 3, "fingers": {"_count": 1}, "mind": {"_count": 1}, "lake": {"_count": 1}}, "the": {"_count": 48, "corridor": {"_count": 1}, "yard": {"_count": 2}, "lawn": {"_count": 2}, "room": {"_count": 13}, "shop": {"_count": 1}, "vegetable": {"_count": 1}, "street": {"_count": 1}, "road": {"_count": 2}, "hall": {"_count": 1}, "ceiling": {"_count": 2}, "Hall": {"_count": 1}, "Age": {"_count": 1}, "line": {"_count": 1}, "entrance": {"_count": 3}, "Great": {"_count": 1}, "front": {"_count": 1}, "dingy": {"_count": 1}, "kitchen": {"_count": 2}, "flagged": {"_count": 1}, "lake": {"_count": 1}, "ts": {"_count": 1}, "common": {"_count": 1}, "outer": {"_count": 1}, "crenellated": {"_count": 1}, "barrier": {"_count": 1}, "dark": {"_count": 1}, "threshold": {"_count": 2}, "face": {"_count": 1}}, "in": {"_count": 3, "her": {"_count": 1}, "midair": {"_count": 1}, "the": {"_count": 1}}, "fingers": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 20, "his": {"_count": 1}, "the": {"_count": 17}, "one": {"_count": 1}, "an": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "eh": {"_count": 1, "Harry": {"_count": 1}}, "golden": {"_count": 2, "wands": {"_count": 2}}, "one": {"_count": 1, "foot": {"_count": 1}}, "her": {"_count": 2, "arms": {"_count": 1}, "threshold": {"_count": 1}}, "and": {"_count": 3, "were": {"_count": 1}, "she": {"_count": 1}, "shoulders": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "my": {"_count": 1, "mind": {"_count": 1}}, "Magnolia": {"_count": 1, "Crescent": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "it": {"_count": 1, "placed": {"_count": 1}}, "out": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "boneandwand": {"_count": 1, "emblem": {"_count": 1}}, "for": {"_count": 1, "another": {"_count": 1}}, "things": {"_count": 1, "out": {"_count": 1}}, "Voldemorts": {"_count": 1, "face": {"_count": 1}}, "some": {"_count": 1, "invisible": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 1, "tightly": {"_count": 1}}, "how": {"_count": 1, "may": {"_count": 1}}}, "crutches": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "glad": {"_count": 106, "school": {"_count": 1, "was": {"_count": 1}}, "ter": {"_count": 1, "get": {"_count": 1}}, "to": {"_count": 31, "take": {"_count": 1}, "be": {"_count": 3}, "reach": {"_count": 2}, "meet": {"_count": 1}, "have": {"_count": 3}, "get": {"_count": 2}, "say": {"_count": 1}, "know": {"_count": 3}, "give": {"_count": 1}, "see": {"_count": 8}, "hear": {"_count": 1}, "think": {"_count": 1}, "leave": {"_count": 1}, "exchange": {"_count": 1}, "do": {"_count": 1}, "find": {"_count": 1}}, "that": {"_count": 11, "the": {"_count": 2}, "most": {"_count": 1}, "they": {"_count": 1}, "Lupin": {"_count": 1}, "Ron": {"_count": 2}, "Cedric": {"_count": 1}, "Dean": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}}, "weve": {"_count": 1, "run": {"_count": 1}}, "they": {"_count": 3, "had": {"_count": 1}, "were": {"_count": 1}, "did": {"_count": 1}}, "we": {"_count": 5, "know": {"_count": 1}, "didnt": {"_count": 1}, "came": {"_count": 1}, "won": {"_count": 2}}, "you": {"_count": 5, "asked": {"_count": 1}, "saved": {"_count": 1}, "listen": {"_count": 1}, "approve": {"_count": 1}, "mentioned": {"_count": 1}}, "she": {"_count": 1, "held": {"_count": 1}}, "of": {"_count": 13, "a": {"_count": 5}, "its": {"_count": 1}, "it": {"_count": 2}, "this": {"_count": 1}, "your": {"_count": 3}, "the": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 1, "Knight": {"_count": 1}}, "he": {"_count": 6, "was": {"_count": 2}, "knew": {"_count": 1}, "left": {"_count": 1}, "had": {"_count": 2}}, "when": {"_count": 6, "the": {"_count": 1}, "hes": {"_count": 1}, "this": {"_count": 2}, "Sirius": {"_count": 1}, "Madam": {"_count": 1}}, "Ron": {"_count": 1, "took": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "theyve": {"_count": 1, "changed": {"_count": 1}}, "someone": {"_count": 1, "from": {"_count": 1}}, "hed": {"_count": 1, "seen": {"_count": 1}}, "youre": {"_count": 2, "here": {"_count": 1}, "taking": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "thats": {"_count": 1, "over": {"_count": 1}}, "in": {"_count": 1, "any": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "wasnt": {"_count": 1}}, "so": {"_count": 1, "honored": {"_count": 1}}, "theyre": {"_count": 1, "still": {"_count": 1}}, "cries": {"_count": 1, "after": {"_count": 1}}}, "escaping": {"_count": 13, "Dudleys": {"_count": 1, "gang": {"_count": 1}}, "Muggles": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "from": {"_count": 3, "its": {"_count": 1}, "Death": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "always": {"_count": 1}}, "and": {"_count": 1, "though": {"_count": 1}}, "the": {"_count": 2, "Death": {"_count": 1}, "confinement": {"_count": 1}}}, "visited": {"_count": 37, "the": {"_count": 7, "house": {"_count": 1}, "Apothecary": {"_count": 1}, "snakes": {"_count": 1}, "shop": {"_count": 1}, "hospital": {"_count": 1}, "place": {"_count": 1}, "Lestranges": {"_count": 1}}, "Harry": {"_count": 1, "in": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}, "Madam": {"_count": 1, "Malkins": {"_count": 1}}, "Hogsmeade": {"_count": 1, "so": {"_count": 1}}, "again": {"_count": 1, "on": {"_count": 1}}, "him": {"_count": 2, "for": {"_count": 1}, "or": {"_count": 1}}, "Zonkos": {"_count": 1, "which": {"_count": 1}}, "by": {"_count": 4, "a": {"_count": 3}, "anyone": {"_count": 1}}, "this": {"_count": 2, "office": {"_count": 1}, "spot": {"_count": 1}}, "inside": {"_count": 1, "Dumbledores": {"_count": 1}}, "Borgin": {"_count": 1, "and": {"_count": 1}}, "Professor": {"_count": 1, "Slughorn": {"_count": 1}}, "many": {"_count": 1, "times": {"_count": 1}}, "Hepzibah": {"_count": 1, "so": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "hospital": {"_count": 1}}, "my": {"_count": 1, "office": {"_count": 1}}, "their": {"_count": 1, "graves": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "its": {"_count": 1, "site": {"_count": 1}}, "or": {"_count": 1, "murdered": {"_count": 1}}, "Gringotts": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "his": {"_count": 1}}}, "Dennis": {"_count": 19, "Malcolm": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 5}, "?": {"_count": 1}, ".": {"_count": 1}}, "Creevey": {"_count": 8, "staggered": {"_count": 1}, "putting": {"_count": 1}, "beaming": {"_count": 1}, "positively": {"_count": 1}, "": {"_count": 1}, "actually": {"_count": 1}, "flying": {"_count": 1}, "Ernie": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "Bishop": {"_count": 2, "were": {"_count": 1}, "and": {"_count": 1}}}, "Malcolm": {"_count": 4, "and": {"_count": 1, "Gordon": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "Baddock": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 1, "saying": {"_count": 1}}}, "Gordon": {"_count": 2, "were": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "biggest": {"_count": 16, "and": {"_count": 1, "stupidest": {"_count": 1}}, "Muggles": {"_count": 1, "I": {"_count": 1}}, "mystry": {"_count": 1, "see": {"_count": 1}}, "deal": {"_count": 1, "of": {"_count": 1}}, "bit": {"_count": 2, "of": {"_count": 2}}, "bully": {"_count": 1, "in": {"_count": 1}}, "prat": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "friend": {"_count": 1, "we": {"_count": 1}}, "moon": {"_count": 1, "is": {"_count": 1}}, "he": {"_count": 1, "tore": {"_count": 1}}, "the": {"_count": 1, "ugliest": {"_count": 1}}, "ones": {"_count": 1, "there": {"_count": 1}}, "surprises": {"_count": 1, "she": {"_count": 1}}, "bloodtraitor": {"_count": 1, "family": {"_count": 1}}}, "stupidest": {"_count": 3, "of": {"_count": 1, "the": {"_count": 1}}, "thing": {"_count": 2, "Ive": {"_count": 2}}}, "leader": {"_count": 11, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Cho": {"_count": 1}}, "might": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "these": {"_count": 1}}, "who": {"_count": 1, "could": {"_count": 1}}, "and": {"_count": 1, "symbol": {"_count": 1}}}, "sport": {"_count": 11, "Harry": {"_count": 1, "Hunting": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 3, "the": {"_count": 3}}, "he": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 1, "Muggles": {"_count": 1}}, "as": {"_count": 1, "Uncle": {"_count": 1}}, "Crucio": {"_count": 1, "Crucio": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}}, "Hunting": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wandering": {"_count": 25, "around": {"_count": 13, "and": {"_count": 1}, "the": {"_count": 3}, "at": {"_count": 2}, "": {"_count": 1}, "dark": {"_count": 1}, "this": {"_count": 1}, "somewhere": {"_count": 1}, "after": {"_count": 1}, "on": {"_count": 2}}, "up": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "on": {"_count": 1}}, "vaguely": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 3, "into": {"_count": 1}, "by": {"_count": 1}, "somewhere": {"_count": 1}}, "between": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 2, "streets": {"_count": 1}, "corridors": {"_count": 1}}, "in": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "foot": {"_count": 1, "": {"_count": 1}}}, "ray": {"_count": 8, "of": {"_count": 8, "hope": {"_count": 1}, "moonlight": {"_count": 3}, "wintery": {"_count": 1}, "sunshine": {"_count": 1}, "sunlight": {"_count": 1}, "purest": {"_count": 1}}}, "hope": {"_count": 225, "": {"_count": 12, ".": {"_count": 10}, "?": {"_count": 2}}, "it": {"_count": 8, "will": {"_count": 1}, "broke": {"_count": 1}, "teaches": {"_count": 1}, "tastes": {"_count": 1}, "does": {"_count": 1}, "happened": {"_count": 1}, "stays": {"_count": 1}, "because": {"_count": 1}}, "Im": {"_count": 1, "in": {"_count": 1}}, "shes": {"_count": 1, "not": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "youre": {"_count": 6, "going": {"_count": 1}, "pleased": {"_count": 1}, "all": {"_count": 1}, "well": {"_count": 1}, "right": {"_count": 1}, "happy": {"_count": 1}}, "they": {"_count": 6, "start": {"_count": 1}, "dont": {"_count": 2}, "use": {"_count": 1}, "escaped": {"_count": 1}, "made": {"_count": 1}}, "boys": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 4, "really": {"_count": 1}, "Granger": {"_count": 1}, "not": {"_count": 1}, "our": {"_count": 1}}, "of": {"_count": 16, "ever": {"_count": 1}, "driving": {"_count": 1}, "finding": {"_count": 2}, "stealing": {"_count": 1}, "tempting": {"_count": 1}, "hearing": {"_count": 2}, "seeing": {"_count": 1}, "killing": {"_count": 1}, "provoking": {"_count": 1}, "cornering": {"_count": 1}, "laying": {"_count": 1}, "bewitching": {"_count": 1}, "breaking": {"_count": 1}, "knowing": {"_count": 1}}, "you": {"_count": 21, "are": {"_count": 5}, "can": {"_count": 1}, "will": {"_count": 4}, "told": {"_count": 1}, "get": {"_count": 1}, "saw": {"_count": 1}, "do": {"_count": 1}, "didnt": {"_count": 1}, "noticed": {"_count": 1}, "enjoy": {"_count": 1}, "agree": {"_count": 1}, "enjoyed": {"_count": 1}, "like": {"_count": 2}}, "this": {"_count": 4, "is": {"_count": 1}, "finds": {"_count": 1}, "years": {"_count": 1}, "means": {"_count": 1}}, "Dumbledore": {"_count": 3, "believes": {"_count": 1}, "s": {"_count": 1}, "murders": {"_count": 1}}, "theyll": {"_count": 2, "forget": {"_count": 1}, "be": {"_count": 1}}, "everything": {"_count": 1, "went": {"_count": 1}}, "my": {"_count": 2, "son": {"_count": 1}, "brothers": {"_count": 1}}, "hed": {"_count": 1, "be": {"_count": 1}}, "theyre": {"_count": 1, "paying": {"_count": 1}}, "that": {"_count": 35, "it": {"_count": 7}, "Malfoy": {"_count": 1}, "your": {"_count": 1}, "no": {"_count": 1}, "next": {"_count": 2}, "I": {"_count": 3}, "in": {"_count": 1}, "this": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 4}, "False": {"_count": 1}, "Ron": {"_count": 1}, "nobody": {"_count": 1}, "the": {"_count": 1}, "dragons": {"_count": 1}, "she": {"_count": 2}, "Snape": {"_count": 1}, "when": {"_count": 1}, "there": {"_count": 1}, "one": {"_count": 1}, "they": {"_count": 1}}, "Creevey": {"_count": 1, "doesnt": {"_count": 1}}, "hes": {"_count": 7, "got": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}, "still": {"_count": 1}, "trying": {"_count": 1}, "listening": {"_count": 1}, "working": {"_count": 1}}, "for": {"_count": 12, "those": {"_count": 1}, "more": {"_count": 1}, "regeneration": {"_count": 1}, "any": {"_count": 1}, "victory": {"_count": 1}, "many": {"_count": 1}, "your": {"_count": 2}, "": {"_count": 1}, "I": {"_count": 2}, "himself": {"_count": 1}}, "Rons": {"_count": 1, "not": {"_count": 1}}, "we": {"_count": 5, "can": {"_count": 2}, "dont": {"_count": 1}, "meet": {"_count": 1}, "have": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 5, "Muggles": {"_count": 1}, "others": {"_count": 2}, "door": {"_count": 1}, "feeling": {"_count": 1}}, "theres": {"_count": 1, "something": {"_count": 1}}, "Professor": {"_count": 2, "Lupin": {"_count": 1}, "McGonagalls": {"_count": 1}}, "and": {"_count": 5, "happiness": {"_count": 4}, "trust": {"_count": 1}}, "to": {"_count": 9, "catch": {"_count": 1}, "lay": {"_count": 1}, "Harry": {"_count": 1}, "compete": {"_count": 1}, "attend": {"_count": 1}, "be": {"_count": 2}, "remain": {"_count": 1}, "the": {"_count": 1}}, "Id": {"_count": 1, "jus": {"_count": 1}}, "happiness": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 1, "comfort": {"_count": 1}}, "was": {"_count": 3, "gone": {"_count": 1}, "lost": {"_count": 1}, "that": {"_count": 1}}, "weve": {"_count": 2, "put": {"_count": 1}, "got": {"_count": 1}}, "a": {"_count": 1, "dream": {"_count": 1}}, "those": {"_count": 1, "who": {"_count": 1}}, "I": {"_count": 2, "doubt": {"_count": 1}, "Sir": {"_count": 1}}, "Hermione": {"_count": 1, "got": {"_count": 1}}, "he": {"_count": 9, "wouldnt": {"_count": 1}, "hasnt": {"_count": 2}, "saw": {"_count": 1}, "does": {"_count": 1}, "looks": {"_count": 1}, "will": {"_count": 2}, "steps": {"_count": 1}}, "she": {"_count": 5, "stays": {"_count": 1}, "doesnt": {"_count": 1}, "would": {"_count": 1}, "tries": {"_count": 1}, "doesn": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "burgeoned": {"_count": 1, "in": {"_count": 1}}, "then": {"_count": 2, "said": {"_count": 1}, "that": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "Sirius": {"_count": 1, "would": {"_count": 1}}, "Ron": {"_count": 1, "that": {"_count": 1}}, "nobody": {"_count": 1, "else": {"_count": 1}}, "youve": {"_count": 2, "thought": {"_count": 1}, "had": {"_count": 1}}, "none": {"_count": 1, "at": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "Luna": {"_count": 1, "always": {"_count": 1}}, "be": {"_count": 1, "clear": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "said": {"_count": 1}}, "everythings": {"_count": 1, "okay": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}, "some": {"_count": 1, "resilience": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}}, "September": {"_count": 26, "came": {"_count": 1, "he": {"_count": 1}}, "1": {"_count": 1, "": {"_count": 1}}, "Kings": {"_count": 1, "Cross": {"_count": 1}}, "the": {"_count": 4, "first": {"_count": 3}, "other": {"_count": 1}}, "first": {"_count": 3, "": {"_count": 3}}, "I": {"_count": 1, "will": {"_count": 1}}, "of": {"_count": 2, "that": {"_count": 1}, "this": {"_count": 1}}, "and": {"_count": 1, "Mum": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "sunlight": {"_count": 1, "": {"_count": 1}}, "air": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}, "to": {"_count": 1, "answer": {"_count": 1}}, "was": {"_count": 2, "one": {"_count": 1}, "crisp": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}}, "secondary": {"_count": 1, "school": {"_count": 1, "and": {"_count": 1}}}, "accepted": {"_count": 17, "at": {"_count": 2, "Uncle": {"_count": 1}, "Hogwarts": {"_count": 1}}, "combative": {"_count": 1, "position": {"_count": 1}}, "the": {"_count": 4, "assurances": {"_count": 1}, "plan": {"_count": 1}, "amusing": {"_count": 1}, "bizarre": {"_count": 1}}, "his": {"_count": 2, "story": {"_count": 1}, "meekly": {"_count": 1}}, "what": {"_count": 2, "he": {"_count": 1}, "looked": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "thats": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 2, "glass": {"_count": 1}, "bucket": {"_count": 1}}, "him": {"_count": 1, "without": {"_count": 1}}, "even": {"_count": 1, "embraced": {"_count": 1}}}, "private": {"_count": 57, "school": {"_count": 1, "Smeltings": {"_count": 1}}, "before": {"_count": 1, "their": {"_count": 1}}, "said": {"_count": 3, "Snape": {"_count": 1}, "Harry": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "training": {"_count": 1, "dont": {"_count": 1}}, "stores": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "parlor": {"_count": 1, "please": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "lands": {"_count": 1, "": {"_count": 1}}, "hospital": {"_count": 1, "in": {"_count": 1}}, "word": {"_count": 4, "that": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}, "actually": {"_count": 1}}, "domains": {"_count": 1, "are": {"_count": 1}}, "clump": {"_count": 1, "of": {"_count": 1}}, "store": {"_count": 1, "cupboard": {"_count": 1}}, "conversation": {"_count": 1, "as": {"_count": 1}}, "hip": {"_count": 1, "flask": {"_count": 1}}, "and": {"_count": 1, "secret": {"_count": 1}}, "conversations": {"_count": 2, "when": {"_count": 2}}, "funeral": {"_count": 1, "": {"_count": 1}}, "business": {"_count": 2, "": {"_count": 1}, "have": {"_count": 1}}, "lessons": {"_count": 6, "sniggered": {"_count": 1}, "once": {"_count": 1}, "with": {"_count": 2}, "this": {"_count": 2}}, "matters": {"_count": 1, "between": {"_count": 1}}, "battle": {"_count": 1, "of": {"_count": 1}}, "army": {"_count": 3, "with": {"_count": 1}, "": {"_count": 2}}, "chat": {"_count": 1, "There": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "felt": {"_count": 1}}, "office": {"_count": 1, "Cornelius": {"_count": 1}}, "secretary": {"_count": 1, "to": {"_count": 1}}, "property": {"_count": 1, "": {"_count": 1}}, "lesson": {"_count": 1, "a": {"_count": 1}}, "joke": {"_count": 1, "undoubtedly": {"_count": 1}}, "indecent": {"_count": 1, "": {"_count": 1}}, "library": {"_count": 1, "his": {"_count": 1}}, "discussion": {"_count": 1, "with": {"_count": 1}}, "means": {"_count": 1, "of": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}}, "Smeltings": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "uniform": {"_count": 1, "leaving": {"_count": 1}}, "boys": {"_count": 1, "wore": {"_count": 1}}, "said": {"_count": 1, "Uncle": {"_count": 1}}, "school": {"_count": 1, "nurse": {"_count": 1}}}, "Stonewall": {"_count": 4, "High": {"_count": 3, "the": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}}, "High": {"_count": 40, "the": {"_count": 1, "local": {"_count": 1}}, "like": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "hell": {"_count": 1}}, "Table": {"_count": 6, "properly": {"_count": 1}, "in": {"_count": 1}, "again": {"_count": 1}, "was": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 1}}, "Street": {"_count": 13, "": {"_count": 4}, "and": {"_count": 3}, "past": {"_count": 1}, "was": {"_count": 1}, "screaming": {"_count": 1}, "night": {"_count": 1}, "in": {"_count": 1}, "dark": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}, "Court": {"_count": 1, "and": {"_count": 1}}, "Inquisitor": {"_count": 16, "": {"_count": 3}, "gets": {"_count": 1}, "Professor": {"_count": 1}, "will": {"_count": 2}, "has": {"_count": 2}, "said": {"_count": 1}, "it": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 2}, "you": {"_count": 1}, "the": {"_count": 1}}}, "local": {"_count": 4, "public": {"_count": 1, "school": {"_count": 1}}, "history": {"_count": 1, "of": {"_count": 1}}, "barmen": {"_count": 1, "said": {"_count": 1}}, "village": {"_count": 1, "Ottery": {"_count": 1}}}, "public": {"_count": 31, "school": {"_count": 1, "": {"_count": 1}}, "toilet": {"_count": 3, "no": {"_count": 1}, "reported": {"_count": 1}, "tiled": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "!": {"_count": 2}}, "is": {"_count": 1, "warned": {"_count": 1}}, "statement": {"_count": 1, "without": {"_count": 1}}, "since": {"_count": 1, "November": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "life": {"_count": 1, "after": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "ward": {"_count": 1, "": {"_count": 1}}, "mood": {"_count": 1, "": {"_count": 1}}, "needs": {"_count": 2, "to": {"_count": 2}}, "the": {"_count": 2, "truth": {"_count": 2}}, "said": {"_count": 1, "Dean": {"_count": 1}}, "almost": {"_count": 1, "worse": {"_count": 1}}, "by": {"_count": 1, "impersonating": {"_count": 1}}, "allegiance": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "You": {"_count": 1, "filthy": {"_count": 1}}, "before": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "The": {"_count": 1, "Dark": {"_count": 1}}}, "toilet": {"_count": 52, "the": {"_count": 1, "first": {"_count": 1}}, "or": {"_count": 1, "Blown": {"_count": 1}}, "": {"_count": 20, "?": {"_count": 6}, ".": {"_count": 14}}, "seat": {"_count": 3, "": {"_count": 3}}, "no": {"_count": 1, "one": {"_count": 1}}, "clutching": {"_count": 1, "his": {"_count": 1}}, "picking": {"_count": 1, "a": {"_count": 1}}, "splashing": {"_count": 1, "water": {"_count": 1}}, "and": {"_count": 3, "a": {"_count": 1}, "then": {"_count": 1}, "Lupin": {"_count": 1}}, "said": {"_count": 2, "Myrtle": {"_count": 1}, "Mr": {"_count": 1}}, "three": {"_count": 1, "floors": {"_count": 1}}, "when": {"_count": 1, "Im": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 1}, "Bethnal": {"_count": 2}, "a": {"_count": 1}}, "reported": {"_count": 1, "in": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "exploded": {"_count": 1, "and": {"_count": 1}}, "charge": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "causing": {"_count": 1, "water": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "paper": {"_count": 1, "to": {"_count": 1}}, "tiled": {"_count": 1, "in": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}}, "Want": {"_count": 20, "to": {"_count": 10, "come": {"_count": 3}, "play": {"_count": 1}, "go": {"_count": 2}, "leave": {"_count": 1}, "join": {"_count": 1}, "sit": {"_count": 1}, "hear": {"_count": 1}}, "a": {"_count": 6, "hand": {"_count": 1}, "game": {"_count": 2}, "hanky": {"_count": 1}, "jam": {"_count": 1}, "cuppa": {"_count": 1}}, "one": {"_count": 2, "Granger": {"_count": 1}, "": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "their": {"_count": 1, "names": {"_count": 1}}}, "practice": {"_count": 117, "": {"_count": 26, "?": {"_count": 5}, ".": {"_count": 18}, "!": {"_count": 3}}, "and": {"_count": 8, "its": {"_count": 1}, "if": {"_count": 1}, "there": {"_count": 1}, "study": {"_count": 1}, "he": {"_count": 1}, "not": {"_count": 1}, "extra": {"_count": 1}, "hes": {"_count": 1}}, "three": {"_count": 2, "times": {"_count": 1}, "evenings": {"_count": 1}}, "with": {"_count": 6, "the": {"_count": 3}, "me": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}}, "Wood": {"_count": 1, "was": {"_count": 1}}, "had": {"_count": 3, "started": {"_count": 1}, "gone": {"_count": 1}, "not": {"_count": 1}}, "session": {"_count": 3, "Wood": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "on": {"_count": 1}}, "now": {"_count": 1, "thats": {"_count": 1}}, "Quidditch": {"_count": 1, "there": {"_count": 1}}, "He": {"_count": 1, "climbed": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "today": {"_count": 1, "on": {"_count": 1}}, "dueling": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 6, "night": {"_count": 1}, "charm": {"_count": 1}, "theory": {"_count": 1}, "spell": {"_count": 1}, "basics": {"_count": 1}, "Cruciatus": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "an": {"_count": 1, "ancient": {"_count": 1}}, "on": {"_count": 2, "": {"_count": 1}, "him": {"_count": 1}}, "before": {"_count": 3, "the": {"_count": 1}, "training": {"_count": 1}, "Saturdays": {"_count": 1}}, "ever": {"_count": 1, "the": {"_count": 1}}, "yesterday": {"_count": 1, "and": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "constant": {"_count": 1, "neverceasing": {"_count": 1}}, "papers": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 3, "this": {"_count": 1}, "the": {"_count": 2}}, "to": {"_count": 1, "hold": {"_count": 1}}, "defensive": {"_count": 1, "spells": {"_count": 1}}, "Vanishing": {"_count": 2, "Spells": {"_count": 2}}, "if": {"_count": 1, "we": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "said": {"_count": 3, "Angelina": {"_count": 1}, "Hermione": {"_count": 2}}, "jinxes": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "it": {"_count": 2, "almost": {"_count": 1}, "particularly": {"_count": 1}}, "They": {"_count": 1, "hurried": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "was": {"_count": 1, "canceled": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "so": {"_count": 1, "often": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "knew": {"_count": 1}}, "in": {"_count": 3, "pairs": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}}, "though": {"_count": 1, "as": {"_count": 1}}, "during": {"_count": 1, "classes": {"_count": 1}}, "I": {"_count": 1, "didnt": {"_count": 1}}, "Professor": {"_count": 1, "said": {"_count": 1}}, "tonight": {"_count": 1, "seven": {"_count": 1}}, "homework": {"_count": 2, "and": {"_count": 2}}, "sessions": {"_count": 3, "which": {"_count": 1}, "in": {"_count": 2}}, "because": {"_count": 1, "he": {"_count": 1}}, "Disapparating": {"_count": 1, "together": {"_count": 1}}}, "thanks": {"_count": 87, "said": {"_count": 20, "Harry": {"_count": 16}, "Ron": {"_count": 2}, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "sounding": {"_count": 1, "just": {"_count": 1}}, "Mom": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 3, "turned": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "he": {"_count": 5, "said": {"_count": 4}, "muttered": {"_count": 1}}, "to": {"_count": 8, "Malfoy": {"_count": 1}, "Black": {"_count": 1}, "their": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 2}, "the": {"_count": 1}, "Mr": {"_count": 1}}, "Ron": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 11}, "!": {"_count": 3}}, "and": {"_count": 3, "began": {"_count": 1}, "set": {"_count": 1}, "Bill": {"_count": 1}}, "Im": {"_count": 2, "pickling": {"_count": 1}, "not": {"_count": 1}}, "Colin": {"_count": 1, "said": {"_count": 1}}, "Hedwig": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "lot": {"_count": 2}}, "for": {"_count": 6, "everything": {"_count": 2}, "your": {"_count": 1}, "the": {"_count": 2}, "nothing": {"_count": 1}}, "Dobby": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "George": {"_count": 1, "muttered": {"_count": 1}}, "Molly": {"_count": 1, "said": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "whilst": {"_count": 1, "Bellatrix": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "fer": {"_count": 2, "offerin": {"_count": 1}, "not": {"_count": 1}}, "looking": {"_count": 1, "slightly": {"_count": 1}}, "I": {"_count": 2, "said": {"_count": 1}, "insist": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "hear": {"_count": 1, "the": {"_count": 1}}}, "toilets": {"_count": 9, "never": {"_count": 1, "had": {"_count": 1}}, "notes": {"_count": 1, "were": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "convenient": {"_count": 1}}, "last": {"_count": 1, "summer": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "sick": {"_count": 76, "": {"_count": 26, ".": {"_count": 24}, "!": {"_count": 1}, "?": {"_count": 1}}, "on": {"_count": 1, "purpose": {"_count": 1}}, "so": {"_count": 1, "Harry": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "hit": {"_count": 1}, "looked": {"_count": 1}}, "something": {"_count": 1, "hard": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "then": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 11, "telling": {"_count": 2}, "the": {"_count": 1}, "her": {"_count": 1}, "finding": {"_count": 1}, "it": {"_count": 1}, "being": {"_count": 1}, "my": {"_count": 1}, "standing": {"_count": 1}, "studying": {"_count": 1}, "Ron": {"_count": 1}}, "with": {"_count": 1, "fear": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 5, "humiliated": {"_count": 1}, "shaking": {"_count": 1}, "closed": {"_count": 1}, "as": {"_count": 1}, "giddy": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "leave": {"_count": 3, "and": {"_count": 2}, "by": {"_count": 1}}, "burning": {"_count": 1, "feeling": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "swoop": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "empty": {"_count": 1, "feeling": {"_count": 1}}, "wizards": {"_count": 1, "could": {"_count": 1}}, "again": {"_count": 1, "just": {"_count": 1}}, "unicorn": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 1, "as": {"_count": 1}}, "feeling": {"_count": 1, "rose": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "wizard": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "swooping": {"_count": 1, "in": {"_count": 1}}}, "ran": {"_count": 235, "before": {"_count": 1, "Dudley": {"_count": 1}}, "down": {"_count": 13, "the": {"_count": 10}, "to": {"_count": 1}, "staircases": {"_count": 1}, "Harrys": {"_count": 1}}, "to": {"_count": 18, "hide": {"_count": 1}, "keep": {"_count": 1}, "the": {"_count": 7}, "turn": {"_count": 1}, "pick": {"_count": 1}, "hold": {"_count": 1}, "get": {"_count": 1}, "a": {"_count": 1}, "catch": {"_count": 1}, "Harry": {"_count": 1}, "pull": {"_count": 1}, "hug": {"_count": 1}}, "his": {"_count": 7, "fingers": {"_count": 4}, "department": {"_count": 1}, "hand": {"_count": 1}, "finger": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 3}, "my": {"_count": 1}}, "off": {"_count": 7, "still": {"_count": 1}, "with": {"_count": 2}, "to": {"_count": 1}, "toward": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}}, "for": {"_count": 13, "their": {"_count": 1}, "it": {"_count": 8}, "his": {"_count": 1}, "help": {"_count": 1}, "the": {"_count": 1}, "cover": {"_count": 1}}, "they": {"_count": 2, "almost": {"_count": 1}, "met": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "upstairs": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 9, "down": {"_count": 2}, "to": {"_count": 3}, "along": {"_count": 1}, "upstairs": {"_count": 1}, "inside": {"_count": 1}, "up": {"_count": 1}}, "up": {"_count": 12, "the": {"_count": 11}, "his": {"_count": 1}}, "out": {"_count": 8, "again": {"_count": 1}, "of": {"_count": 3}, "into": {"_count": 1}, "or": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}}, "all": {"_count": 5, "along": {"_count": 1}, "the": {"_count": 3}, "down": {"_count": 1}}, "flatfooted": {"_count": 1, "from": {"_count": 1}}, "toward": {"_count": 7, "the": {"_count": 3}, "Professor": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 2}}, "into": {"_count": 10, "class": {"_count": 1}, "the": {"_count": 3}, "Weasley": {"_count": 1}, "Dudley": {"_count": 1}, "something": {"_count": 1}, "up": {"_count": 1}, "us": {"_count": 1}, "a": {"_count": 1}}, "downstairs": {"_count": 1, "": {"_count": 1}}, "slipping": {"_count": 1, "over": {"_count": 1}}, "away": {"_count": 10, "from": {"_count": 4}, "up": {"_count": 1}, "": {"_count": 2}, "good": {"_count": 1}, "with": {"_count": 1}, "trying": {"_count": 1}}, "clanking": {"_count": 1, "loudly": {"_count": 1}}, "a": {"_count": 6, "giant": {"_count": 1}, "hand": {"_count": 2}, "few": {"_count": 2}, "little": {"_count": 1}}, "repeatedly": {"_count": 1, "backward": {"_count": 1}}, "with": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "something": {"_count": 1}}, "at": {"_count": 9, "breakneck": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}, "Bellatrix": {"_count": 1}, "Ogden": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "Grawp": {"_count": 1}}, "flat": {"_count": 1, "out": {"_count": 1}}, "forward": {"_count": 11, "placing": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 2}, "conjuring": {"_count": 1}, "those": {"_count": 1}, "and": {"_count": 2}, "pushed": {"_count": 1}, "to": {"_count": 1}, "trying": {"_count": 1}}, "as": {"_count": 4, "fast": {"_count": 2}, "he": {"_count": 1}, "Dumbledore": {"_count": 1}}, "ran": {"_count": 1, "all": {"_count": 1}}, "past": {"_count": 5, "him": {"_count": 2}, "": {"_count": 2}, "her": {"_count": 1}}, "this": {"_count": 1, "theory": {"_count": 1}}, "flatout": {"_count": 2, "around": {"_count": 1}, "toward": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 2}, "all": {"_count": 1}}, "her": {"_count": 2, "fingers": {"_count": 2}}, "hard": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "once": {"_count": 1, "more": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 6, "length": {"_count": 2}, "paper": {"_count": 1}, "other": {"_count": 1}, "icecream": {"_count": 1}, "orphanage": {"_count": 1}}, "no": {"_count": 1, "danger": {"_count": 1}}, "along": {"_count": 4, "yet": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 1}}, "after": {"_count": 4, "her": {"_count": 2}, "him": {"_count": 1}, "Professor": {"_count": 1}}, "headfirst": {"_count": 2, "at": {"_count": 1}, "into": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "it": {"_count": 1, "from": {"_count": 1}}, "quietly": {"_count": 1, "as": {"_count": 1}}, "on": {"_count": 3, "toward": {"_count": 1}, "a": {"_count": 1}, "again": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "and": {"_count": 1, "barely": {"_count": 1}}, "dangers": {"_count": 1, "were": {"_count": 1}}, "afoul": {"_count": 1, "of": {"_count": 1}}, "screeching": {"_count": 1, "into": {"_count": 1}}, "you": {"_count": 1, "through": {"_count": 1}}, "in": {"_count": 2, "": {"_count": 1}, "every": {"_count": 1}}, "near": {"_count": 1, "enough": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "sleekly": {"_count": 1, "ahead": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "without": {"_count": 1, "stopping": {"_count": 1}}, "backward": {"_count": 1, "toward": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "freeing": {"_count": 1, "her": {"_count": 1}}}, "July": {"_count": 15, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "31": {"_count": 1, "": {"_count": 1}}, "widely": {"_count": 1, "believed": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "were": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "nearly": {"_count": 1, "sixteen": {"_count": 1}}, "that": {"_count": 1, "year": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "parents": {"_count": 1}}, "You": {"_count": 1, "know": {"_count": 1}}}, "uniform": {"_count": 11, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "she": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 2, "scarlet": {"_count": 1}, "black": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "leapt": {"_count": 2, "out": {"_count": 1}, "down": {"_count": 1}}, "a": {"_count": 1, "tea": {"_count": 1}}, "pearly": {"_count": 1, "white": {"_count": 1}}}, "leaving": {"_count": 212, "Harry": {"_count": 27, "at": {"_count": 1}, "shivering": {"_count": 1}, "alone": {"_count": 6}, "feeling": {"_count": 1}, "to": {"_count": 5}, "standing": {"_count": 2}, "quite": {"_count": 1}, "and": {"_count": 6}, "in": {"_count": 1}, "there": {"_count": 1}, "Ron": {"_count": 2}}, "behind": {"_count": 3, "": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "do": {"_count": 1, "we": {"_count": 1}}, "while": {"_count": 1, "we": {"_count": 1}}, "them": {"_count": 6, "sparkling": {"_count": 2}, "alone": {"_count": 1}, "all": {"_count": 1}, "buckled": {"_count": 1}, "fixed": {"_count": 1}}, "his": {"_count": 2, "body": {"_count": 1}, "mind": {"_count": 1}}, "her": {"_count": 6, "seat": {"_count": 1}, "looking": {"_count": 1}, "long": {"_count": 1}, "mounds": {"_count": 1}, "flustered": {"_count": 1}, "crouched": {"_count": 1}}, "Ronan": {"_count": 1, "and": {"_count": 1}}, "Neville": {"_count": 3, "lying": {"_count": 1}, "breathless": {"_count": 1}, "alone": {"_count": 1}}, "three": {"_count": 1, "empty": {"_count": 1}}, "the": {"_count": 40, "door": {"_count": 1}, "pub": {"_count": 1}, "path": {"_count": 1}, "school": {"_count": 6}, "table": {"_count": 1}, "others": {"_count": 1}, "Head": {"_count": 1}, "Dursleys": {"_count": 3}, "Shrieking": {"_count": 1}, "back": {"_count": 1}, "Great": {"_count": 3}, "castle": {"_count": 2}, "Hufflepuff": {"_count": 1}, "Hall": {"_count": 1}, "floor": {"_count": 1}, "boys": {"_count": 1}, "place": {"_count": 1}, "other": {"_count": 1}, "train": {"_count": 1}, "room": {"_count": 2}, "ugly": {"_count": 1}, "slightest": {"_count": 1}, "firm": {"_count": 1}, "shorter": {"_count": 1}, "shop": {"_count": 1}, "wardrobe": {"_count": 1}, "rock": {"_count": 1}, "eyeless": {"_count": 1}, "wild": {"_count": 1}}, "a": {"_count": 13, "small": {"_count": 1}, "large": {"_count": 3}, "long": {"_count": 1}, "horrified": {"_count": 1}, "crater": {"_count": 1}, "respectable": {"_count": 1}, "trail": {"_count": 1}, "ringing": {"_count": 1}, "layer": {"_count": 1}, "deep": {"_count": 1}, "hole": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 14, "?": {"_count": 5}, ".": {"_count": 7}, "!": {"_count": 2}}, "Hermione": {"_count": 1, "to": {"_count": 1}}, "Ron": {"_count": 3, "and": {"_count": 1}, "with": {"_count": 1}, "chortling": {"_count": 1}}, "childhood": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 6, "": {"_count": 2}, "to": {"_count": 1}, "forever": {"_count": 1}, "his": {"_count": 1}, "behind": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "their": {"_count": 2, "frames": {"_count": 1}, "firesides": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Privet": {"_count": 3, "Drive": {"_count": 3}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "us": {"_count": 4, "": {"_count": 1}, "be": {"_count": 1}, "he": {"_count": 1}, "these": {"_count": 1}}, "it": {"_count": 6, "in": {"_count": 1}, "": {"_count": 2}, "intact": {"_count": 1}, "only": {"_count": 1}, "to": {"_count": 1}}, "wide": {"_count": 1, "bald": {"_count": 1}}, "no": {"_count": 3, "place": {"_count": 1}, "trace": {"_count": 1}, "hoofprints": {"_count": 1}}, "Lupins": {"_count": 1, "face": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "nothing": {"_count": 5, "but": {"_count": 3}, "behind": {"_count": 2}}, "yardlong": {"_count": 1, "gouge": {"_count": 1}}, "Hogwarts": {"_count": 3, "without": {"_count": 1}, "": {"_count": 2}}, "Snape": {"_count": 2, "standing": {"_count": 1}, "looking": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "your": {"_count": 1, "way": {"_count": 1}}, "arent": {"_count": 1, "we": {"_count": 1}}, "school": {"_count": 1, "early": {"_count": 1}}, "out": {"_count": 2, "hats": {"_count": 1}, "": {"_count": 1}}, "two": {"_count": 1, "long": {"_count": 1}}, "inky": {"_count": 1, "footprints": {"_count": 1}}, "Professor": {"_count": 2, "Trelawney": {"_count": 1}, "": {"_count": 1}}, "Crookshanks": {"_count": 1, "curled": {"_count": 1}}, "Malfoy": {"_count": 1, "and": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 3, "embarrassed": {"_count": 1}, "opening": {"_count": 1}, "hour": {"_count": 1}}, "next": {"_count": 1, "year": {"_count": 1}}, "to": {"_count": 2, "go": {"_count": 1}, "save": {"_count": 1}}, "this": {"_count": 1, "place": {"_count": 1}}, "lessons": {"_count": 1, "which": {"_count": 1}}, "I": {"_count": 1, "shouldve": {"_count": 1}}, "make": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 2, "room": {"_count": 1}, "Horcrux": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "nobody": {"_count": 1}}, "which": {"_count": 1, "meant": {"_count": 1}}, "half": {"_count": 1, "her": {"_count": 1}}, "noisily": {"_count": 1, "for": {"_count": 1}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}, "she": {"_count": 1, "tipped": {"_count": 1}}, "Albus": {"_count": 1, "the": {"_count": 1}}, "soon": {"_count": 1, "really": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "Ginny": {"_count": 1, "told": {"_count": 1}}, "Fleurs": {"_count": 1, "family": {"_count": 1}}, "Kreacher": {"_count": 1, "on": {"_count": 1}}, "Voldemort": {"_count": 1, "free": {"_count": 1}}, "everything": {"_count": 1, "dark": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "Grimmauld": {"_count": 1, "Place": {"_count": 1}}, "Wormtails": {"_count": 1, "body": {"_count": 1}}, "tomorrow": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "tripping": {"_count": 11, "over": {"_count": 7, "one": {"_count": 1}, "his": {"_count": 3}, "a": {"_count": 1}, "Hagrid": {"_count": 1}, "in": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}}, "cake": {"_count": 33, "that": {"_count": 1, "tasted": {"_count": 1}}, "with": {"_count": 2, "Happy": {"_count": 1}, "her": {"_count": 1}}, "neither": {"_count": 1, "": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "everyone": {"_count": 1, "felt": {"_count": 1}}, "and": {"_count": 4, "with": {"_count": 1}, "a": {"_count": 1}, "Dudley": {"_count": 1}, "it": {"_count": 1}}, "if": {"_count": 1, "yeh": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 2, "summer": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 1, "its": {"_count": 1}}, "he": {"_count": 1, "heard": {"_count": 1}}, "after": {"_count": 1, "an": {"_count": 1}}, "which": {"_count": 1, "Mrs": {"_count": 1}}, "had": {"_count": 1, "finally": {"_count": 1}}, "is": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "party": {"_count": 1}}, "topped": {"_count": 1, "with": {"_count": 1}}, "was": {"_count": 1, "cut": {"_count": 1}}}, "tasted": {"_count": 10, "as": {"_count": 1, "though": {"_count": 1}}, "anything": {"_count": 2, "so": {"_count": 1}, "like": {"_count": 1}}, "like": {"_count": 1, "overcooked": {"_count": 1}}, "blood": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "seemed": {"_count": 1}}, "the": {"_count": 1, "mans": {"_count": 1}}, "something": {"_count": 1, "very": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "disgusting": {"_count": 1, "worse": {"_count": 1}}}, "paraded": {"_count": 1, "around": {"_count": 1, "the": {"_count": 1}}}, "brandnew": {"_count": 13, "uniform": {"_count": 1, "": {"_count": 1}}, "handles": {"_count": 1, "and": {"_count": 1}}, "television": {"_count": 1, "a": {"_count": 1}}, "silver": {"_count": 1, "badge": {"_count": 1}}, "Firebolt": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}, "Winky": {"_count": 1, "was": {"_count": 1}}, "navyblue": {"_count": 1, "dress": {"_count": 1}}, "jackets": {"_count": 1, "in": {"_count": 1}}, "book": {"_count": 1, "Hermione": {"_count": 1}}, "midnight": {"_count": 1, "blue": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "Hogwarts": {"_count": 1, "robes": {"_count": 1}}}, "maroon": {"_count": 18, "tailcoats": {"_count": 1, "orange": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Ron": {"_count": 1, "moaned": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "socks": {"_count": 4, "in": {"_count": 1}, "and": {"_count": 3}}, "velvet": {"_count": 2, "dress": {"_count": 1}, "jacket": {"_count": 1}}, "dress": {"_count": 1, "robes": {"_count": 1}}, "paisley": {"_count": 1, "pajamas": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "sweater": {"_count": 1, "he": {"_count": 1}}, "pajamas": {"_count": 2, "": {"_count": 1}, "out": {"_count": 1}}, "jumper": {"_count": 1, "and": {"_count": 1}}}, "tailcoats": {"_count": 1, "orange": {"_count": 1, "knickerbockers": {"_count": 1}}}, "knickerbockers": {"_count": 3, "and": {"_count": 1, "flat": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "big": {"_count": 1, "enough": {"_count": 1}}}, "flat": {"_count": 86, "straw": {"_count": 1, "hats": {"_count": 1}}, "on": {"_count": 27, "his": {"_count": 19}, "the": {"_count": 5}, "its": {"_count": 3}}, "lawn": {"_count": 1, "on": {"_count": 1}}, "horny": {"_count": 1, "feet": {"_count": 1}}, "against": {"_count": 7, "the": {"_count": 7}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "drone": {"_count": 1, "like": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "out": {"_count": 4, "and": {"_count": 1}, "along": {"_count": 1}, "felt": {"_count": 1}, "hed": {"_count": 1}}, "foot": {"_count": 1, "caught": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "held": {"_count": 1}, "snakelike": {"_count": 1}}, "complete": {"_count": 2, "with": {"_count": 2}}, "distant": {"_count": 1, "voice": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "slimy": {"_count": 1, "stones": {"_count": 1}}, "like": {"_count": 1, "spades": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "face": {"_count": 1, "illuminated": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "expressionless": {"_count": 1, "voice": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 1, "Rons": {"_count": 1}}, "barklike": {"_count": 1, "face": {"_count": 1}}, "again": {"_count": 1, "looking": {"_count": 1}}, "orange": {"_count": 1, "glare": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}, "side": {"_count": 2, "of": {"_count": 2}}, "dark": {"_count": 1, "stone": {"_count": 1}}, "little": {"_count": 1, "voice": {"_count": 1}}, "marsh": {"_count": 1, "where": {"_count": 1}}, "light": {"_count": 1, "beyond": {"_count": 1}}, "rock": {"_count": 1, "": {"_count": 1}}, "disbelief": {"_count": 1, "nor": {"_count": 1}}, "white": {"_count": 1, "and": {"_count": 1}}, "blank": {"_count": 1, "something": {"_count": 1}}}, "straw": {"_count": 10, "hats": {"_count": 1, "called": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Im": {"_count": 1, "going": {"_count": 1}}, "for": {"_count": 1, "Severus": {"_count": 1}}, "owl": {"_count": 1, "droppings": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "colored": {"_count": 1, "hair": {"_count": 1}}, "covered": {"_count": 1, "floor": {"_count": 1}}}, "hats": {"_count": 47, "called": {"_count": 1, "boaters": {"_count": 1}}, "sleek": {"_count": 1, "and": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "saw": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 1, "salute": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "bedecked": {"_count": 1, "with": {"_count": 1}}, "all": {"_count": 2, "of": {"_count": 1}, "except": {"_count": 1}}, "brim": {"_count": 1, "opened": {"_count": 1}}, "for": {"_count": 2, "houseelves": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "gone": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "Hermione": {"_count": 1, "did": {"_count": 1}}, "concealed": {"_count": 1, "all": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 7, "the": {"_count": 1}, "scarves": {"_count": 1}, "socks": {"_count": 1}, "was": {"_count": 1}, "beards": {"_count": 1}, "brandishing": {"_count": 1}, "in": {"_count": 1}}, "pulled": {"_count": 1, "low": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 1, "Hermione": {"_count": 1}}, "silver": {"_count": 1, "badges": {"_count": 1}}, "before": {"_count": 1, "bedtime": {"_count": 1}}, "work": {"_count": 1, "then": {"_count": 1}}, "from": {"_count": 1, "under": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "jewels": {"_count": 1, "cloaks": {"_count": 1}}, "while": {"_count": 1, "precious": {"_count": 1}}, "crates": {"_count": 1, "chairs": {"_count": 1}}}, "boaters": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "carried": {"_count": 89, "knobbly": {"_count": 1, "sticks": {"_count": 1}}, "everywhere": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 4, "savaging": {"_count": 1}, "like": {"_count": 1}, "emptying": {"_count": 1}, "chatting": {"_count": 1}}, "a": {"_count": 5, "large": {"_count": 1}, "lumpy": {"_count": 1}, "limegreen": {"_count": 1}, "range": {"_count": 1}, "curse": {"_count": 1}}, "them": {"_count": 5, "out": {"_count": 1}, "through": {"_count": 1}, "away": {"_count": 1}, "over": {"_count": 1}, "all": {"_count": 1}}, "along": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 1, "six": {"_count": 1}}, "around": {"_count": 2, "in": {"_count": 2}}, "the": {"_count": 13, "trunk": {"_count": 1}, "Firebolt": {"_count": 2}, "milk": {"_count": 1}, "barn": {"_count": 1}, "creature": {"_count": 1}, "owl": {"_count": 1}, "crossed": {"_count": 1}, "news": {"_count": 1}, "coffin": {"_count": 1}, "little": {"_count": 1}, "injured": {"_count": 1}, "poem": {"_count": 1}}, "Errol": {"_count": 2, "to": {"_count": 2}}, "up": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 6, "away": {"_count": 1}, "too": {"_count": 1}, "carefully": {"_count": 1}, "over": {"_count": 2}, "down": {"_count": 1}}, "away": {"_count": 8, "with": {"_count": 1}, "": {"_count": 4}, "If": {"_count": 1}, "said": {"_count": 1}, "trying": {"_count": 1}}, "out": {"_count": 4, "by": {"_count": 1}, "my": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}}, "after": {"_count": 1, "them": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 3, "on": {"_count": 1}, "to": {"_count": 1}, "back": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 2, "to": {"_count": 1}, "all": {"_count": 1}}, "different": {"_count": 1, "sorts": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "around": {"_count": 1}}, "him": {"_count": 5, "off": {"_count": 1}, "to": {"_count": 1}, "up": {"_count": 1}, "past": {"_count": 1}, "into": {"_count": 1}}, "no": {"_count": 1, "hint": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}}, "his": {"_count": 4, "lightningbolt": {"_count": 1}, "empty": {"_count": 2}, "own": {"_count": 1}}, "blownup": {"_count": 1, "versions": {"_count": 1}}, "in": {"_count": 1, "smooth": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 1, "antidote": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "clearly": {"_count": 1, "through": {"_count": 1}}, "George": {"_count": 1, "into": {"_count": 1}}, "half": {"_count": 1, "dragged": {"_count": 1}}, "didn": {"_count": 1, "it": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}}, "sticks": {"_count": 7, "used": {"_count": 1, "for": {"_count": 1}}, "was": {"_count": 1, "floating": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "Nevilles": {"_count": 1}}, "Muggle": {"_count": 1, "children": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "each": {"_count": 534, "other": {"_count": 261, "while": {"_count": 1}, "seeming": {"_count": 1}, "darkly": {"_count": 1}, "and": {"_count": 26}, "": {"_count": 85}, "they": {"_count": 3}, "ten": {"_count": 1}, "around": {"_count": 2}, "very": {"_count": 2}, "at": {"_count": 3}, "Harry": {"_count": 10}, "whitefaced": {"_count": 1}, "threatening": {"_count": 1}, "off": {"_count": 1}, "what": {"_count": 3}, "on": {"_count": 2}, "by": {"_count": 1}, "the": {"_count": 4}, "er": {"_count": 1}, "locked": {"_count": 1}, "in": {"_count": 9}, "Snape": {"_count": 1}, "for": {"_count": 9}, "behind": {"_count": 2}, "clutching": {"_count": 1}, "then": {"_count": 7}, "again": {"_count": 6}, "each": {"_count": 2}, "but": {"_count": 3}, "though": {"_count": 1}, "over": {"_count": 2}, "out": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 4}, "as": {"_count": 2}, "its": {"_count": 1}, "glumly": {"_count": 1}, "to": {"_count": 2}, "too": {"_count": 2}, "Rons": {"_count": 1}, "an": {"_count": 3}, "every": {"_count": 2}, "suggested": {"_count": 1}, "Sirius": {"_count": 1}, "across": {"_count": 1}, "shortly": {"_count": 1}, "so": {"_count": 2}, "all": {"_count": 1}, "from": {"_count": 1}, "it": {"_count": 2}, "startled": {"_count": 1}, "their": {"_count": 1}, "nor": {"_count": 1}, "a": {"_count": 1}, "drawing": {"_count": 1}, "let": {"_count": 1}, "than": {"_count": 1}, "that": {"_count": 2}, "before": {"_count": 3}, "long": {"_count": 1}, "egged": {"_count": 1}, "singing": {"_count": 1}, "attempting": {"_count": 1}, "perfectly": {"_count": 1}, "not": {"_count": 1}, "through": {"_count": 1}, "silent": {"_count": 1}, "listening": {"_count": 1}, "clearly": {"_count": 1}, "gazing": {"_count": 1}, "today": {"_count": 1}, "half": {"_count": 1}, "safe": {"_count": 1}, "sizing": {"_count": 1}, "up": {"_count": 1}, "astonished": {"_count": 1}, "feeling": {"_count": 1}, "looking": {"_count": 1}, "still": {"_count": 1}, "crosslegged": {"_count": 1}, "drinking": {"_count": 1}, "wrapped": {"_count": 1}, "held": {"_count": 1}, "like": {"_count": 1}, "apart": {"_count": 1}}, "of": {"_count": 83, "the": {"_count": 28}, "you": {"_count": 7}, "her": {"_count": 3}, "which": {"_count": 4}, "them": {"_count": 21}, "us": {"_count": 6}, "these": {"_count": 2}, "their": {"_count": 2}, "whom": {"_count": 3}, "your": {"_count": 1}, "his": {"_count": 4}, "Dumbledores": {"_count": 1}, "my": {"_count": 1}}, "and": {"_count": 9, "four": {"_count": 1}, "minuscule": {"_count": 1}, "every": {"_count": 5}, "when": {"_count": 1}, "said": {"_count": 1}}, "has": {"_count": 1, "produced": {"_count": 1}}, "given": {"_count": 1, "a": {"_count": 1}}, "side": {"_count": 4, "": {"_count": 2}, "whos": {"_count": 1}, "were": {"_count": 1}}, "team": {"_count": 3, "the": {"_count": 1}, "who": {"_count": 1}, "throw": {"_count": 1}}, "win": {"_count": 1, "Gryffindor": {"_count": 1}}, "more": {"_count": 1, "feeble": {"_count": 1}}, "said": {"_count": 3, "Professor": {"_count": 1}, "George": {"_count": 1}, "Harry": {"_count": 1}}, "seized": {"_count": 2, "a": {"_count": 1}, "Hagrid": {"_count": 1}}, "they": {"_count": 1, "pulled": {"_count": 1}}, "grabbed": {"_count": 1, "a": {"_count": 1}}, "dip": {"_count": 1, "beneath": {"_count": 1}}, "ridden": {"_count": 1, "by": {"_count": 1}}, "time": {"_count": 5, "he": {"_count": 1}, "revealing": {"_count": 1}, "with": {"_count": 2}, "a": {"_count": 1}}, "days": {"_count": 1, "homework": {"_count": 1}}, "others": {"_count": 21, "pots": {"_count": 1}, "hand": {"_count": 1}, "beards": {"_count": 1}, "eyes": {"_count": 5}, "gaze": {"_count": 1}, "appearance": {"_count": 1}, "most": {"_count": 1}, "latest": {"_count": 1}, "faces": {"_count": 2}, "eye": {"_count": 1}, "heights": {"_count": 1}, "chests": {"_count": 1}, "shoulders": {"_count": 1}, "canvases": {"_count": 1}, "necks": {"_count": 1}, "hands": {"_count": 1}}, "lesson": {"_count": 1, "by": {"_count": 1}}, "bed": {"_count": 1, "illuminating": {"_count": 1}}, "night": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "morning": {"_count": 2, "in": {"_count": 1}, "before": {"_count": 1}}, "pulled": {"_count": 2, "Harry": {"_count": 1}, "out": {"_count": 1}}, "to": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "write": {"_count": 1, "an": {"_count": 1}}, "labeled": {"_count": 2, "with": {"_count": 2}}, "tree": {"_count": 1, "smattered": {"_count": 1}}, "arm": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 2, "trying": {"_count": 1}, "waiting": {"_count": 1}}, "person": {"_count": 2, "climbed": {"_count": 1}, "in": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "turn": {"_count": 1, "into": {"_count": 1}}, "stair": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "from": {"_count": 1, "Ron": {"_count": 1}}, "attempting": {"_count": 2, "to": {"_count": 2}}, "hoisted": {"_count": 1, "their": {"_count": 1}}, "hurtling": {"_count": 1, "toward": {"_count": 1}}, "carrying": {"_count": 2, "a": {"_count": 2}}, "as": {"_count": 1, "they": {"_count": 1}}, "line": {"_count": 2, "upon": {"_count": 1}, "they": {"_count": 1}}, "family": {"_count": 1, "member": {"_count": 1}}, "Did": {"_count": 1, "value": {"_count": 1}}, "school": {"_count": 3, "and": {"_count": 2}, "has": {"_count": 1}}, "with": {"_count": 3, "its": {"_count": 1}, "a": {"_count": 1}, "knobbly": {"_count": 1}}, "swelling": {"_count": 1, "was": {"_count": 1}}, "crate": {"_count": 1, "each": {"_count": 1}}, "about": {"_count": 1, "six": {"_count": 1}}, "looking": {"_count": 1, "thoroughly": {"_count": 1}}, "word": {"_count": 1, "as": {"_count": 1}}, "student": {"_count": 4, "as": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "Hem": {"_count": 1}}, "the": {"_count": 3, "size": {"_count": 2}, "bus": {"_count": 1}}, "emitting": {"_count": 1, "three": {"_count": 1}}, "challenge": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 1, "entered": {"_count": 1}}, "were": {"_count": 1, "a": {"_count": 1}}, "containing": {"_count": 2, "a": {"_count": 2}}, "for": {"_count": 3, "Potter": {"_count": 2}, "his": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "dragon": {"_count": 1, "were": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "turn": {"_count": 2}}, "select": {"_count": 1, "a": {"_count": 1}}, "one": {"_count": 3, "Ron": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 2, "bargain": {"_count": 1}, "brilliant": {"_count": 1}}, "seating": {"_count": 1, "about": {"_count": 1}}, "successive": {"_count": 1, "year": {"_count": 1}}, "scarlet": {"_count": 1, "in": {"_count": 1}}, "cheek": {"_count": 3, "he": {"_count": 1}, "He": {"_count": 1}, "leaving": {"_count": 1}}, "scurrying": {"_count": 1, "back": {"_count": 1}}, "grasping": {"_count": 1, "one": {"_count": 1}}, "Mr": {"_count": 1, "Cedric": {"_count": 1}}, "member": {"_count": 2, "of": {"_count": 2}}, "wished": {"_count": 1, "the": {"_count": 1}}, "uzzer": {"_count": 1, "again": {"_count": 1}}, "nostril": {"_count": 1, "": {"_count": 1}}, "fireplace": {"_count": 1, "waiting": {"_count": 1}}, "House": {"_count": 1, "said": {"_count": 1}}, "wither": {"_count": 1, "vast": {"_count": 1}}, "hand": {"_count": 1, "and": {"_count": 1}}, "residing": {"_count": 1, "on": {"_count": 1}}, "decorated": {"_count": 1, "with": {"_count": 1}}, "day": {"_count": 1, "was": {"_count": 1}}, "showing": {"_count": 1, "a": {"_count": 1}}, "reaching": {"_count": 1, "out": {"_count": 1}}, "clang": {"_count": 1, "his": {"_count": 1}}, "topped": {"_count": 2, "with": {"_count": 2}}, "month": {"_count": 1, "theyll": {"_count": 1}}, "watch": {"_count": 1, "Fred": {"_count": 1}}, "drink": {"_count": 1, "she": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "little": {"_count": 1, "square": {"_count": 1}}, "gripping": {"_count": 1, "Ron": {"_count": 1}}, "glass": {"_count": 1, "orb": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "visit": {"_count": 1, "": {"_count": 1}}, "peopled": {"_count": 1, "with": {"_count": 1}}, "inscribed": {"_count": 1, "with": {"_count": 1}}, "reading": {"_count": 1, "": {"_count": 1}}, "Keeper": {"_count": 1, "flew": {"_count": 1}}, "tuber": {"_count": 1, "had": {"_count": 1}}, "absorbed": {"_count": 1, "in": {"_count": 1}}, "before": {"_count": 1, "raising": {"_count": 1}}, "pale": {"_count": 1, "face": {"_count": 1}}, "would": {"_count": 1, "need": {"_count": 1}}, "pair": {"_count": 1, "heading": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "trying": {"_count": 1, "in": {"_count": 1}}, "take": {"_count": 1, "a": {"_count": 1}}, "bearing": {"_count": 1, "a": {"_count": 1}}, "witch": {"_count": 1, "or": {"_count": 1}}, "featuring": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "earned": {"_count": 1}}, "second": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "there": {"_count": 1}}}, "teachers": {"_count": 151, "werent": {"_count": 1, "looking": {"_count": 1}}, "at": {"_count": 3, "Hogwarts": {"_count": 3}}, "wig": {"_count": 1, "blue": {"_count": 1}}, "were": {"_count": 7, "sitting": {"_count": 1}, "looking": {"_count": 1}, "not": {"_count": 1}, "watching": {"_count": 1}, "of": {"_count": 1}, "firing": {"_count": 1}, "no": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "look": {"_count": 1, "a": {"_count": 1}}, "smiles": {"_count": 1, "had": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 21, "?": {"_count": 3}, ".": {"_count": 16}, "!": {"_count": 2}}, "listening": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 3, "saints": {"_count": 1}, "all": {"_count": 1}, "rather": {"_count": 1}}, "to": {"_count": 3, "look": {"_count": 1}, "our": {"_count": 1}, "complete": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "did": {"_count": 4, "enchantments": {"_count": 1}, "": {"_count": 2}, "not": {"_count": 1}}, "had": {"_count": 3, "guarded": {"_count": 1}, "disappeared": {"_count": 1}, "left": {"_count": 1}}, "question": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "thought": {"_count": 2, "Snape": {"_count": 1}, "most": {"_count": 1}}, "all": {"_count": 1, "have": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "a": {"_count": 1, "roaring": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "shouted": {"_count": 1, "for": {"_count": 1}}, "bent": {"_count": 1, "over": {"_count": 1}}, "offices": {"_count": 1, "Harry": {"_count": 1}}, "during": {"_count": 1, "this": {"_count": 1}}, "table": {"_count": 9, "apparently": {"_count": 1}, "": {"_count": 7}, "the": {"_count": 1}}, "on": {"_count": 2, "either": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 10, "late": {"_count": 1}, "I": {"_count": 1}, "Fudges": {"_count": 1}, "minister": {"_count": 1}, "shown": {"_count": 1}, "Hermione": {"_count": 1}, "ghosts": {"_count": 1}, "prefects": {"_count": 1}, "the": {"_count": 1}, "pupils": {"_count": 1}}, "noticed": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "long": {"_count": 1, "enough": {"_count": 1}}, "have": {"_count": 4, "quite": {"_count": 1}, "got": {"_count": 2}, "we": {"_count": 1}}, "return": {"_count": 1, "to": {"_count": 1}}, "cloaks": {"_count": 1, "": {"_count": 1}}, "filtering": {"_count": 1, "into": {"_count": 1}}, "rose": {"_count": 1, "and": {"_count": 1}}, "joined": {"_count": 1, "in": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 4, "their": {"_count": 1}, "this": {"_count": 3}}, "desk": {"_count": 9, "": {"_count": 3}, "it": {"_count": 1}, "took": {"_count": 1}, "wearing": {"_count": 1}, "observing": {"_count": 1}, "he": {"_count": 1}, "alone": {"_count": 1}}, "kept": {"_count": 1, "their": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "Im": {"_count": 1}, "can": {"_count": 1}}, "didnt": {"_count": 1, "understand": {"_count": 1}}, "time": {"_count": 1, "and": {"_count": 1}}, "Aha": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "him": {"_count": 1}}, "like": {"_count": 2, "little": {"_count": 1}, "McGonagall": {"_count": 1}}, "office": {"_count": 1, "when": {"_count": 1}}, "however": {"_count": 1, "were": {"_count": 1}}, "hands": {"_count": 1, "this": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 1, "stop": {"_count": 1}}, "near": {"_count": 1, "them": {"_count": 1}}, "he": {"_count": 1, "hated": {"_count": 1}}, "er": {"_count": 1, "backgrounds": {"_count": 1}}, "chair": {"_count": 1, "her": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "thinks": {"_count": 1}}, "conversing": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "stupid": {"_count": 1}}, "will": {"_count": 2, "see": {"_count": 1}, "all": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "arent": {"_count": 1, "in": {"_count": 1}}, "might": {"_count": 1, "impose": {"_count": 1}}, "study": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "Slughorn": {"_count": 1}}, "wont": {"_count": 1, "stand": {"_count": 1}}, "including": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "Hogwarts": {"_count": 2}}, "platform": {"_count": 1, "to": {"_count": 1}}, "report": {"_count": 1, "that": {"_count": 1}}}, "training": {"_count": 44, "for": {"_count": 3, "later": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}}, "hard": {"_count": 2, "Potter": {"_count": 1}, "for": {"_count": 1}}, "next": {"_count": 1, "week": {"_count": 1}}, "session": {"_count": 6, "": {"_count": 3}, "before": {"_count": 1}, "because": {"_count": 1}, "like": {"_count": 1}}, "Gryffindor": {"_count": 1, "versus": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "program": {"_count": 3, "": {"_count": 2}, "which": {"_count": 1}}, "yet": {"_count": 1, "were": {"_count": 1}}, "sessions": {"_count": 4, "however": {"_count": 1}, "were": {"_count": 1}, "three": {"_count": 1}, "": {"_count": 1}}, "dont": {"_count": 1, "hesitate": {"_count": 1}}, "and": {"_count": 1, "matches": {"_count": 1}}, "cold": {"_count": 1, "and": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "he": {"_count": 1, "flung": {"_count": 1}}, "without": {"_count": 1, "any": {"_count": 1}}, "before": {"_count": 1, "their": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "clashed": {"_count": 1, "with": {"_count": 1}}, "later": {"_count": 1, "he": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "you": {"_count": 2, "all": {"_count": 1}, "then": {"_count": 1}}, "schedule": {"_count": 1, "the": {"_count": 1}}, "takes": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "carefully": {"_count": 1}}, "schemes": {"_count": 1, "so": {"_count": 1}}, "of": {"_count": 1, "young": {"_count": 1}}}, "gruffly": {"_count": 28, "that": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "brushing": {"_count": 1, "soot": {"_count": 1}}, "worth": {"_count": 1, "seem": {"_count": 1}}, "beckoning": {"_count": 1, "Harry": {"_count": 1}}, "turning": {"_count": 1, "back": {"_count": 1}}, "Look": {"_count": 1, "after": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "forcing": {"_count": 1, "his": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "clambering": {"_count": 1, "to": {"_count": 1}}, "pouring": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "looking": {"_count": 1, "from": {"_count": 1}}}, "proudest": {"_count": 1, "moment": {"_count": 1, "of": {"_count": 1}}}, "burst": {"_count": 214, "into": {"_count": 62, "tears": {"_count": 19}, "applause": {"_count": 3}, "laughter": {"_count": 1}, "the": {"_count": 11}, "flames": {"_count": 5}, "anguished": {"_count": 1}, "flame": {"_count": 4}, "bloom": {"_count": 2}, "life": {"_count": 5}, "a": {"_count": 2}, "speech": {"_count": 2}, "terrified": {"_count": 1}, "furious": {"_count": 1}, "song": {"_count": 1}, "light": {"_count": 1}, "more": {"_count": 1}, "emeraldgreen": {"_count": 1}, "raucous": {"_count": 1}}, "of": {"_count": 18, "fire": {"_count": 2}, "green": {"_count": 4}, "speed": {"_count": 2}, "light": {"_count": 1}, "song": {"_count": 1}, "strong": {"_count": 1}, "understanding": {"_count": 1}, "autumn": {"_count": 1}, "flame": {"_count": 1}, "talk": {"_count": 1}, "red": {"_count": 2}, "white": {"_count": 1}}, "out": {"_count": 30, "one": {"_count": 1}, "the": {"_count": 1}, "angrily": {"_count": 2}, "into": {"_count": 1}, "of": {"_count": 7}, "laughing": {"_count": 5}, "again": {"_count": 1}, "savagely": {"_count": 2}, "Fleur": {"_count": 1}, "Can": {"_count": 1}, "furiously": {"_count": 1}, "Are": {"_count": 1}, "": {"_count": 2}, "from": {"_count": 1}, "He": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "open": {"_count": 32, "": {"_count": 8}, "she": {"_count": 1}, "at": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 10}, "littering": {"_count": 1}, "again": {"_count": 2}, "Harry": {"_count": 1}, "releasing": {"_count": 1}, "Malfoy": {"_count": 1}, "two": {"_count": 1}, "once": {"_count": 1}, "making": {"_count": 1}, "with": {"_count": 1}}, "with": {"_count": 5, "the": {"_count": 2}, "pain": {"_count": 2}, "triumph": {"_count": 1}}, "suddenly": {"_count": 2, "through": {"_count": 1}, "across": {"_count": 1}}, "a": {"_count": 1, "dozen": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 1}, "fully": {"_count": 1}, "on": {"_count": 2}, "front": {"_count": 2}}, "from": {"_count": 17, "her": {"_count": 1}, "him": {"_count": 4}, "the": {"_count": 8}, "Harrys": {"_count": 1}, "behind": {"_count": 1}, "his": {"_count": 2}}, "magically": {"_count": 1, "open": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "Harrys": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "outward": {"_count": 1, "expelling": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "forth": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 8, "a": {"_count": 2}, "Harry": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}}, "clearly": {"_count": 1, "into": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "boundaries": {"_count": 1}}, "apart": {"_count": 2, "pearlywhite": {"_count": 1}, "glass": {"_count": 1}}, "instead": {"_count": 1, "into": {"_count": 1}}, "where": {"_count": 1, "Sirius": {"_count": 1}}, "off": {"_count": 1, "Ive": {"_count": 1}}, "the": {"_count": 4, "pod": {"_count": 1}, "first": {"_count": 1}, "vision": {"_count": 1}, "silver": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "Birds": {"_count": 1, "of": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "three": {"_count": 1, "silver": {"_count": 1}}}, "tears": {"_count": 168, "and": {"_count": 7, "said": {"_count": 1}, "hugged": {"_count": 1}, "were": {"_count": 1}, "left": {"_count": 1}, "several": {"_count": 1}, "in": {"_count": 1}, "Ron": {"_count": 1}}, "in": {"_count": 6, "his": {"_count": 2}, "my": {"_count": 1}, "her": {"_count": 3}}, "": {"_count": 47, ".": {"_count": 47}}, "although": {"_count": 1, "that": {"_count": 1}}, "leaking": {"_count": 5, "down": {"_count": 3}, "from": {"_count": 1}, "out": {"_count": 1}}, "very": {"_count": 1, "noisy": {"_count": 1}}, "welling": {"_count": 1, "rapidly": {"_count": 1}}, "now": {"_count": 4, "flooding": {"_count": 1}, "trickling": {"_count": 1}, "": {"_count": 1}, "streaming": {"_count": 1}}, "dripping": {"_count": 2, "onto": {"_count": 1}, "from": {"_count": 1}}, "have": {"_count": 1, "healing": {"_count": 1}}, "were": {"_count": 6, "trickling": {"_count": 1}, "still": {"_count": 2}, "now": {"_count": 1}, "falling": {"_count": 1}, "pouring": {"_count": 1}}, "was": {"_count": 1, "shining": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 7, "laughter": {"_count": 3}, "happiness": {"_count": 1}, "fury": {"_count": 1}, "delight": {"_count": 1}, "gratitude": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "please": {"_count": 1, "be": {"_count": 1}}, "splashing": {"_count": 2, "down": {"_count": 2}}, "that": {"_count": 1, "dripped": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 2, "seized": {"_count": 1}, "leaned": {"_count": 1}}, "had": {"_count": 1, "splattered": {"_count": 1}}, "from": {"_count": 1, "Aunt": {"_count": 1}}, "streaming": {"_count": 3, "down": {"_count": 3}}, "she": {"_count": 2, "turned": {"_count": 1}, "crouched": {"_count": 1}}, "which": {"_count": 1, "spilled": {"_count": 1}}, "welled": {"_count": 1, "in": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "again": {"_count": 5, "bowing": {"_count": 1}, "": {"_count": 3}, "just": {"_count": 1}}, "leaked": {"_count": 3, "out": {"_count": 3}}, "out": {"_count": 1, "of": {"_count": 1}}, "starting": {"_count": 1, "in": {"_count": 1}}, "trickling": {"_count": 3, "between": {"_count": 1}, "down": {"_count": 2}}, "as": {"_count": 6, "she": {"_count": 3}, "though": {"_count": 1}, "behind": {"_count": 1}, "Petunia": {"_count": 1}}, "pouring": {"_count": 3, "silently": {"_count": 1}, "down": {"_count": 2}}, "running": {"_count": 1, "down": {"_count": 1}}, "spilling": {"_count": 3, "out": {"_count": 1}, "from": {"_count": 2}}, "still": {"_count": 4, "leaking": {"_count": 2}, "sparkled": {"_count": 1}, "glittering": {"_count": 1}}, "spattering": {"_count": 1, "down": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 2, "it": {"_count": 1}, "her": {"_count": 1}}, "during": {"_count": 1, "Herbology": {"_count": 1}}, "himself": {"_count": 1, "an": {"_count": 1}}, "sliding": {"_count": 2, "down": {"_count": 2}}, "seeped": {"_count": 1, "from": {"_count": 1}}, "falling": {"_count": 2, "onto": {"_count": 2}}, "tained": {"_count": 1, "face": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "oozed": {"_count": 1, "out": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "with": {"_count": 1, "Luna": {"_count": 1}}, "a": {"_count": 1, "vast": {"_count": 1}}, "but": {"_count": 1, "Ginny": {"_count": 1}}, "stung": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "gushing": {"_count": 1, "from": {"_count": 1}}, "poured": {"_count": 1, "over": {"_count": 1}}, "came": {"_count": 1, "before": {"_count": 1}}, "swam": {"_count": 1, "in": {"_count": 1}}, "Hermione": {"_count": 1, "handed": {"_count": 1}}, "sparkling": {"_count": 1, "in": {"_count": 1}}, "while": {"_count": 1, "older": {"_count": 1}}, "cascaded": {"_count": 1, "down": {"_count": 1}}, "splashed": {"_count": 1, "down": {"_count": 1}}, "receive": {"_count": 1, "their": {"_count": 1}}}, "Ickle": {"_count": 5, "Dudleykins": {"_count": 1, "he": {"_count": 1}}, "Firsties": {"_count": 2, "": {"_count": 2}}, "Diddykins": {"_count": 1, "to": {"_count": 1}}, "Prefect": {"_count": 1, "": {"_count": 1}}}, "Dudleykins": {"_count": 1, "he": {"_count": 1, "looked": {"_count": 1}}}, "handsome": {"_count": 60, "and": {"_count": 4, "grownup": {"_count": 1}, "popular": {"_count": 1}, "clever": {"_count": 1}, "younger": {"_count": 1}}, "leathercovered": {"_count": 1, "book": {"_count": 1}}, "silver": {"_count": 1, "platters": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 2, "who": {"_count": 1}, "of": {"_count": 1}}, "tawny": {"_count": 1, "one": {"_count": 1}}, "green": {"_count": 1, "cover": {"_count": 1}}, "wooden": {"_count": 1, "staircase": {"_count": 1}}, "set": {"_count": 2, "of": {"_count": 2}}, "Christmas": {"_count": 1, "tree": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "laughing": {"_count": 1, "face": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Slughorn": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 3}}, "oliveskinned": {"_count": 2, "face": {"_count": 1}, "blackhaired": {"_count": 1}}, "fire": {"_count": 1, "was": {"_count": 1}}, "head": {"_count": 1, "brushed": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "wizards": {"_count": 1, "face": {"_count": 1}}, "screech": {"_count": 1, "owl": {"_count": 1}}, "display": {"_count": 1, "of": {"_count": 1}}, "leather": {"_count": 1, "armchair": {"_count": 1}}, "chocolate": {"_count": 1, "egg": {"_count": 1}}, "wizard": {"_count": 1, "which": {"_count": 1}}, "scarlet": {"_count": 1, "quill": {"_count": 1}}, "room": {"_count": 1, "with": {"_count": 1}}, "tawnies": {"_count": 1, "each": {"_count": 1}}, "youth": {"_count": 1, "and": {"_count": 1}}, "centaur": {"_count": 1, "was": {"_count": 1}}, "manor": {"_count": 2, "house": {"_count": 2}}, "darkhaired": {"_count": 1, "young": {"_count": 1}}, "Muggle": {"_count": 2, "who": {"_count": 1}, "Tom": {"_count": 1}}, "father": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "teenage": {"_count": 1}}, "face": {"_count": 2, "and": {"_count": 1}, "then": {"_count": 1}}, "than": {"_count": 2, "ever": {"_count": 1}, "Sirius": {"_count": 1}}, "features": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "little": {"_count": 1, "bboy": {"_count": 1}}, "marble": {"_count": 1, "mantelpiece": {"_count": 1}}, "his": {"_count": 1, "slightly": {"_count": 1}}, "companion": {"_count": 1, "roaring": {"_count": 1}}, "as": {"_count": 1, "Tom": {"_count": 1}}, "Its": {"_count": 1, "not": {"_count": 1}}}, "grownup": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "son": {"_count": 1, "Tom": {"_count": 1}}}, "cracked": {"_count": 54, "from": {"_count": 1, "trying": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 10, "spotted": {"_count": 1}, "flung": {"_count": 1}, "just": {"_count": 1}, "crumbling": {"_count": 1}, "immobile": {"_count": 1}, "his": {"_count": 1}, "terrified": {"_count": 1}, "wornout": {"_count": 1}, "moldy": {"_count": 1}, "crumbled": {"_count": 1}}, "it": {"_count": 1, "over": {"_count": 1}}, "mirror": {"_count": 5, "": {"_count": 2}, "for": {"_count": 1}, "and": {"_count": 1}, "feeling": {"_count": 1}}, "open": {"_count": 4, "the": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}, "": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 2, "sewer": {"_count": 1}, "sword": {"_count": 1}}, "into": {"_count": 1, "identical": {"_count": 1}}, "glass": {"_count": 1, "spinning": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "trusting": {"_count": 1, "Snape": {"_count": 1}}, "FoeGlass": {"_count": 2, "that": {"_count": 1}, "shadowy": {"_count": 1}}, "his": {"_count": 3, "knuckles": {"_count": 2}, "newly": {"_count": 1}}, "agespotted": {"_count": 1, "mirror": {"_count": 1}}, "voice": {"_count": 1, "from": {"_count": 1}}, "its": {"_count": 1, "pendulum": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 2}}, "black": {"_count": 2, "stone": {"_count": 1}, "surface": {"_count": 1}}, "a": {"_count": 1, "smile": {"_count": 1}}, "dusty": {"_count": 1, "mirror": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "lack": {"_count": 1}, "a": {"_count": 1}}, "ring": {"_count": 1, "then": {"_count": 1}}, "highpitched": {"_count": 1, "he": {"_count": 1}}, "both": {"_count": 1, "women": {"_count": 1}}}, "laugh": {"_count": 164, "": {"_count": 69, ".": {"_count": 67}, "!": {"_count": 2}}, "or": {"_count": 3, "not": {"_count": 2}, "or": {"_count": 1}}, "became": {"_count": 1, "high": {"_count": 1}}, "at": {"_count": 7, "the": {"_count": 1}, "me": {"_count": 1}, "Hermione": {"_count": 1}, "their": {"_count": 1}, "weddings": {"_count": 1}, "Xenophilius": {"_count": 1}, "Ron": {"_count": 1}}, "sounded": {"_count": 1, "from": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 1}, "horrible": {"_count": 1}}, "watched": {"_count": 1, "Percy": {"_count": 1}}, "as": {"_count": 5, "he": {"_count": 2}, "she": {"_count": 2}, "Aunt": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 1}, "could": {"_count": 1}, "certainly": {"_count": 1}, "was": {"_count": 1}}, "and": {"_count": 13, "handed": {"_count": 1}, "then": {"_count": 1}, "pointed": {"_count": 1}, "his": {"_count": 1}, "an": {"_count": 1}, "wiped": {"_count": 1}, "downed": {"_count": 1}, "said": {"_count": 1}, "hastily": {"_count": 1}, "continued": {"_count": 1}, "leaned": {"_count": 1}, "once": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 6, "Malfoy": {"_count": 1}, "suddenly": {"_count": 1}, "at": {"_count": 2}, "turned": {"_count": 1}, "Harry": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "that": {"_count": 7, "didnt": {"_count": 2}, "Harry": {"_count": 1}, "filled": {"_count": 1}, "was": {"_count": 1}, "made": {"_count": 2}}, "again": {"_count": 3, "": {"_count": 3}}, "went": {"_count": 1, "to": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "entirely": {"_count": 1}}, "cold": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "rather": {"_count": 1, "unpleasantly": {"_count": 1}}, "Just": {"_count": 1, "then": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "Ginny": {"_count": 1}, "Hagrid": {"_count": 1}}, "extremely": {"_count": 1, "dangerous": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "which": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "themselves": {"_count": 1, "stupid": {"_count": 1}}, "loudly": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "hated": {"_count": 1}}, "to": {"_count": 1, "match": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "lately": {"_count": 1, "said": {"_count": 1}}, "Mumll": {"_count": 1, "fix": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "remembering": {"_count": 1, "that": {"_count": 1}}, "Hermione": {"_count": 1, "thats": {"_count": 1}}, "even": {"_count": 1, "Hermione": {"_count": 1}}, "about": {"_count": 2, "Bill": {"_count": 1}, "for": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "Lavender": {"_count": 1}, "Luna": {"_count": 1}, "Ron": {"_count": 1}}, "which": {"_count": 1, "turned": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "youd": {"_count": 1, "use": {"_count": 1}}, "still": {"_count": 1, "etched": {"_count": 1}}, "was": {"_count": 1, "like": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "her": {"_count": 1, "cousin": {"_count": 1}}, "your": {"_count": 1, "brother": {"_count": 1}}}, "k": {"_count": 35, "k": {"_count": 21, "k": {"_count": 8}, "There": {"_count": 1}, "On": {"_count": 1}, "Wouldnt": {"_count": 1}, "After": {"_count": 1}, "The": {"_count": 3}, "Harry": {"_count": 1}, "Exam": {"_count": 1}, "Neither": {"_count": 1}, "Sirius": {"_count": 1}, "It": {"_count": 1}, "They": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "On": {"_count": 1, "Sunday": {"_count": 1}}, "Wouldnt": {"_count": 1, "it": {"_count": 1}}, "After": {"_count": 1, "a": {"_count": 1}}, "The": {"_count": 3, "news": {"_count": 1}, "second": {"_count": 1}, "cut": {"_count": 1}}, "Harry": {"_count": 1, "lay": {"_count": 1}}, "Exam": {"_count": 1, "week": {"_count": 1}}, "Neither": {"_count": 1, "Mr": {"_count": 1}}, "Sirius": {"_count": 1, "sent": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "But": {"_count": 1, "Hedwig": {"_count": 1}}, "They": {"_count": 1, "entered": {"_count": 1}}}, "smell": {"_count": 83, "in": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 37, "sizzling": {"_count": 1}, "baking": {"_count": 2}, "the": {"_count": 5}, "fried": {"_count": 2}, "food": {"_count": 1}, "polish": {"_count": 1}, "burnt": {"_count": 1}, "cooking": {"_count": 2}, "decay": {"_count": 1}, "cats": {"_count": 3}, "rotting": {"_count": 2}, "it": {"_count": 1}, "warm": {"_count": 1}, "mingled": {"_count": 1}, "burning": {"_count": 1}, "them": {"_count": 1}, "Dungbombs": {"_count": 1}, "burned": {"_count": 1}, "what": {"_count": 1}, "a": {"_count": 1}, "roast": {"_count": 1}, "old": {"_count": 1}, "bad": {"_count": 1}, "singed": {"_count": 1}, "clean": {"_count": 1}, "salt": {"_count": 1}, "lake": {"_count": 1}}, "a": {"_count": 2, "mixture": {"_count": 1}, "powerful": {"_count": 1}}, "hung": {"_count": 1, "around": {"_count": 1}}, "something": {"_count": 2, "": {"_count": 1}, "worse": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "filled": {"_count": 1, "their": {"_count": 1}}, "that": {"_count": 1, "seemed": {"_count": 1}}, "was": {"_count": 1, "quite": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 2, "Ron": {"_count": 1}, "": {"_count": 1}}, "fresh": {"_count": 2, "air": {"_count": 2}}, "under": {"_count": 1, "her": {"_count": 1}}, "toward": {"_count": 1, "her": {"_count": 1}}, "reached": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "doubledealing": {"_count": 1, "and": {"_count": 1}}, "burning": {"_count": 1, "hair": {"_count": 1}}, "guilt": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 3, "dementors": {"_count": 1}, "place": {"_count": 1}, "pine": {"_count": 1}}, "and": {"_count": 2, "his": {"_count": 1}, "felt": {"_count": 1}}, "damp": {"_count": 1, "dust": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "is": {"_count": 1, "Mother": {"_count": 1}}, "differently": {"_count": 1, "to": {"_count": 1}}, "freshly": {"_count": 1, "mown": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "cooking": {"_count": 1, "sherry": {"_count": 1}}, "salt": {"_count": 1, "and": {"_count": 1}}, "burnt": {"_count": 1, "wood": {"_count": 1}}, "like": {"_count": 1, "open": {"_count": 1}}, "Bathildas": {"_count": 1, "house": {"_count": 1}}, "off": {"_count": 1, "him": {"_count": 1}}, "drifted": {"_count": 1, "up": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}}, "breakfast": {"_count": 135, "": {"_count": 37, ".": {"_count": 31}, "!": {"_count": 2}, "?": {"_count": 4}}, "everyone": {"_count": 1, "was": {"_count": 1}}, "table": {"_count": 3, "looking": {"_count": 1}, "": {"_count": 1}, "Mr": {"_count": 1}}, "the": {"_count": 6, "next": {"_count": 5}, "following": {"_count": 1}}, "leapt": {"_count": 1, "to": {"_count": 1}}, "without": {"_count": 1, "getting": {"_count": 1}}, "circling": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 8, "Thursday": {"_count": 1}, "the": {"_count": 3}, "Monday": {"_count": 1}, "Friday": {"_count": 1}, "Sunday": {"_count": 1}, "Tuesday": {"_count": 1}}, "time": {"_count": 4, "Hedwig": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 4, "number": {"_count": 1}, "this": {"_count": 1}, "eightthirty": {"_count": 1}, "exactly": {"_count": 1}}, "a": {"_count": 2, "little": {"_count": 1}, "Howler": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "silence": {"_count": 2}}, "early": {"_count": 1, "where": {"_count": 1}}, "tray": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "slid": {"_count": 1}, "it": {"_count": 1}}, "from": {"_count": 1, "over": {"_count": 1}}, "next": {"_count": 5, "day": {"_count": 3}, "morning": {"_count": 2}}, "but": {"_count": 4, "I": {"_count": 1}, "he": {"_count": 2}, "Snapes": {"_count": 1}}, "each": {"_count": 1, "morning": {"_count": 1}}, "Harry": {"_count": 2, "would": {"_count": 1}, "said": {"_count": 1}}, "where": {"_count": 1, "Mr": {"_count": 1}}, "feeling": {"_count": 1, "thoroughly": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 3, "everyone": {"_count": 1}, "Ginny": {"_count": 1}, "them": {"_count": 1}}, "urging": {"_count": 1, "his": {"_count": 1}}, "when": {"_count": 3, "he": {"_count": 2}, "Mrs": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 6, "were": {"_count": 1}, "heading": {"_count": 1}, "see": {"_count": 1}, "then": {"_count": 1}, "there": {"_count": 1}, "whenever": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "together": {"_count": 1, "": {"_count": 1}}, "cereal": {"_count": 1, "while": {"_count": 1}}, "is": {"_count": 1, "in": {"_count": 1}}, "right": {"_count": 1, "out": {"_count": 1}}, "they": {"_count": 2, "queued": {"_count": 1}, "pulled": {"_count": 1}}, "why": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 2, "lets": {"_count": 1}, "fear": {"_count": 1}}, "I": {"_count": 1, "reckon": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "Hermione": {"_count": 1, "departed": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "was": {"_count": 1, "over": {"_count": 1}}, "perhaps": {"_count": 1, "": {"_count": 1}}, "Arry": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "joined": {"_count": 1}}, "by": {"_count": 1, "reading": {"_count": 1}}, "waving": {"_count": 1, "an": {"_count": 1}}, "bringing": {"_count": 1, "with": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "then": {"_count": 1, "set": {"_count": 1}}}, "metal": {"_count": 39, "tub": {"_count": 1, "in": {"_count": 1}}, "pipe": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 1, "pure": {"_count": 1}}, "as": {"_count": 1, "Ginnys": {"_count": 1}}, "remained": {"_count": 1, "solid": {"_count": 1}}, "on": {"_count": 3, "wood": {"_count": 1}, "metal": {"_count": 1}, "his": {"_count": 1}}, "wand": {"_count": 1, "that": {"_count": 1}}, "onto": {"_count": 1, "platform": {"_count": 1}}, "knees": {"_count": 1, "he": {"_count": 1}}, "bowl": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "leather": {"_count": 1}, "a": {"_count": 1}}, "chute": {"_count": 2, "where": {"_count": 2}}, "instrument": {"_count": 1, "from": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "bars": {"_count": 2, "across": {"_count": 1}, "of": {"_count": 1}}, "were": {"_count": 1, "smoke": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "connections": {"_count": 1, "to": {"_count": 1}}, "heart": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "fingers": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "tools": {"_count": 1, "": {"_count": 1}}, "instruments": {"_count": 1, "that": {"_count": 1}}, "Harry": {"_count": 1, "struggled": {"_count": 1}}, "doors": {"_count": 1, "leaving": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "shell": {"_count": 1, "broke": {"_count": 1}}}, "tub": {"_count": 5, "in": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "full": {"_count": 1}}, "of": {"_count": 1, "fresh": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "labeled": {"_count": 1, "EDIBLE": {"_count": 1}}}, "sink": {"_count": 46, "": {"_count": 6, ".": {"_count": 6}}, "our": {"_count": 1, "teeth": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "which": {"_count": 2, "began": {"_count": 1}, "shot": {"_count": 1}}, "no": {"_count": 1, "lower": {"_count": 1}}, "into": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "where": {"_count": 1, "Myrtle": {"_count": 1}}, "in": {"_count": 8, "front": {"_count": 1}, "fact": {"_count": 1}, "": {"_count": 2}, "He": {"_count": 1}, "everyone": {"_count": 1}, "said": {"_count": 1}, "upon": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "hid": {"_count": 1}}, "lower": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 3, "teeth": {"_count": 1}, "fangs": {"_count": 1}, "white": {"_count": 1}}, "filling": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}, "he": {"_count": 1, "popped": {"_count": 1}}, "still": {"_count": 1, "watched": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "sobbing": {"_count": 1, "uncontrollably": {"_count": 1}}, "and": {"_count": 2, "Ron": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "peeling": {"_count": 1, "a": {"_count": 1}}, "beneath": {"_count": 1, "our": {"_count": 1}}, "low": {"_count": 1, "into": {"_count": 1}}, "again": {"_count": 2, "Crouching": {"_count": 1}, "into": {"_count": 1}}, "its": {"_count": 1, "teeth": {"_count": 1}}}, "dirty": {"_count": 57, "rags": {"_count": 1, "swimming": {"_count": 1}}, "look": {"_count": 3, "at": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "spotted": {"_count": 1, "handkerchief": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "looks": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "buildings": {"_count": 1, "on": {"_count": 1}}, "sorted": {"_count": 1, "new": {"_count": 1}}, "old": {"_count": 2, "mirror": {"_count": 1}, "blankets": {"_count": 1}}, "work": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "were": {"_count": 1}, "for": {"_count": 1}}, "the": {"_count": 1, "hat": {"_count": 1}}, "patched": {"_count": 1, "wizards": {"_count": 1}}, "like": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 1, "him": {"_count": 1}}, "his": {"_count": 1, "Tshirt": {"_count": 1}}, "walls": {"_count": 1, "and": {"_count": 1}}, "tapestries": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 1, "that": {"_count": 1}}, "gray": {"_count": 2, "bandages": {"_count": 2}}, "bottles": {"_count": 1, "which": {"_count": 1}}, "plates": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "great": {"_count": 1, "serpent": {"_count": 1}}, "contaminated": {"_count": 1, "as": {"_count": 1}}, "brownish": {"_count": 1, "smock": {"_count": 1}}, "knuckles": {"_count": 1, "as": {"_count": 1}}, "glass": {"_count": 1, "station": {"_count": 1}}, "oil": {"_count": 1, "painting": {"_count": 1}}, "river": {"_count": 2, "that": {"_count": 2}}, "and": {"_count": 4, "dogeared": {"_count": 1}, "hangdog": {"_count": 1}, "unkempt": {"_count": 1}, "how": {"_count": 1}}, "stone": {"_count": 2, "wall": {"_count": 1}, "floor": {"_count": 1}}, "Squibs": {"_count": 1, "": {"_count": 1}}, "yellow": {"_count": 2, "nailed": {"_count": 1}, "objects": {"_count": 1}}, "face": {"_count": 1, "the": {"_count": 1}}, "business": {"_count": 1, "indeed": {"_count": 1}}, "blankets": {"_count": 1, "and": {"_count": 1}}, "laundry": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 2, "goblin": {"_count": 1}, "monkey": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "lenses": {"_count": 1, "the": {"_count": 1}}}, "rags": {"_count": 12, "swimming": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "gave": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 4, "smelly": {"_count": 1}, "blankets": {"_count": 1}, "pretty": {"_count": 1}, "their": {"_count": 1}}, "dropped": {"_count": 1, "from": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "sunken": {"_count": 1, "faces": {"_count": 1}}, "upon": {"_count": 1, "a": {"_count": 1}}}, "swimming": {"_count": 27, "in": {"_count": 6, "gray": {"_count": 1}, "soup": {"_count": 1}, "the": {"_count": 2}, "tears": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "lazily": {"_count": 1, "across": {"_count": 1}}, "pool": {"_count": 2, "": {"_count": 1}, "sunk": {"_count": 1}}, "trunks": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "his": {"_count": 1, "shoulders": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "with": {"_count": 2, "tears": {"_count": 2}}, "before": {"_count": 1, "Harrys": {"_count": 1}}, "from": {"_count": 1, "its": {"_count": 1}}, "above": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "at": {"_count": 1}}}, "water": {"_count": 260, "": {"_count": 65, ".": {"_count": 62}, "!": {"_count": 2}, "?": {"_count": 1}}, "below": {"_count": 2, "them": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 3}, "his": {"_count": 1}, "large": {"_count": 1}, "its": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "into": {"_count": 3, "a": {"_count": 1}, "three": {"_count": 1}, "Dumbledore": {"_count": 1}}, "woven": {"_count": 1, "into": {"_count": 1}}, "there": {"_count": 1, "must": {"_count": 1}}, "trickling": {"_count": 1, "down": {"_count": 1}}, "a": {"_count": 5, "mile": {"_count": 1}, "begonia": {"_count": 1}, "cruel": {"_count": 1}, "few": {"_count": 1}, "human": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 4}, "a": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "jug": {"_count": 5, "from": {"_count": 1}, "": {"_count": 3}, "again": {"_count": 1}}, "somewhere": {"_count": 1, "but": {"_count": 1}}, "stretched": {"_count": 1, "over": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 2}, "keep": {"_count": 1}, "slop": {"_count": 1}, "look": {"_count": 1}}, "that": {"_count": 4, "had": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 1}, "soared": {"_count": 1}}, "which": {"_count": 2, "splashed": {"_count": 1}, "sounded": {"_count": 1}}, "from": {"_count": 5, "the": {"_count": 5}}, "he": {"_count": 4, "had": {"_count": 1}, "was": {"_count": 1}, "stopped": {"_count": 1}, "crawled": {"_count": 1}}, "bottle": {"_count": 1, "an": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "barrel": {"_count": 2, "said": {"_count": 1}, "outside": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "were": {"_count": 3, "rising": {"_count": 1}, "being": {"_count": 1}, "flying": {"_count": 1}}, "Harry": {"_count": 5, "lost": {"_count": 1}, "could": {"_count": 1}, "watched": {"_count": 1}, "dropped": {"_count": 1}, "drew": {"_count": 1}}, "tray": {"_count": 1, "before": {"_count": 1}}, "then": {"_count": 1, "Mr": {"_count": 1}}, "and": {"_count": 19, "moved": {"_count": 1}, "began": {"_count": 1}, "scooped": {"_count": 1}, "felt": {"_count": 1}, "they": {"_count": 1}, "noticing": {"_count": 1}, "prodded": {"_count": 1}, "perhaps": {"_count": 1}, "no": {"_count": 1}, "blood": {"_count": 1}, "wood": {"_count": 1}, "closer": {"_count": 1}, "Dumbledores": {"_count": 1}, "showed": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 1}, "dragged": {"_count": 1}, "a": {"_count": 1}, "searching": {"_count": 1}}, "they": {"_count": 1, "made": {"_count": 1}}, "down": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "everywhere": {"_count": 1, "if": {"_count": 1}}, "bomb": {"_count": 2, "dropped": {"_count": 1}, "at": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 2}}, "bombs": {"_count": 1, "into": {"_count": 1}}, "grabbed": {"_count": 1, "me": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "gleaming": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 5, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "foam": {"_count": 1, "and": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 3, "clouds": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "Myrtle": {"_count": 1, "peered": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "where": {"_count": 1}}, "whose": {"_count": 1, "dark": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "monsters": {"_count": 2, "books": {"_count": 1}, "of": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "was": {"_count": 8, "over": {"_count": 1}, "in": {"_count": 1}, "flooding": {"_count": 1}, "alight": {"_count": 1}, "added": {"_count": 1}, "rising": {"_count": 1}, "swirling": {"_count": 1}, "icy": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "didnt": {"_count": 1, "feel": {"_count": 1}}, "new": {"_count": 1, "scenes": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "became": {"_count": 1, "opaque": {"_count": 1}}, "demon": {"_count": 1, "poking": {"_count": 1}}, "the": {"_count": 4, "silence": {"_count": 1}, "moment": {"_count": 1}, "outline": {"_count": 1}, "sound": {"_count": 1}}, "ahead": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "spears": {"_count": 1, "clutched": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "blinked": {"_count": 1, "in": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "beetle": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 3, "seemed": {"_count": 1}, "was": {"_count": 1}, "moved": {"_count": 1}}, "clearly": {"_count": 1, "Dumbledore": {"_count": 1}}, "each": {"_count": 1, "scurrying": {"_count": 1}}, "beneath": {"_count": 1, "wind": {"_count": 1}}, "broke": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "high": {"_count": 1}}, "emerging": {"_count": 1, "quite": {"_count": 1}}, "kept": {"_count": 1, "hitting": {"_count": 1}}, "underfoot": {"_count": 1, "": {"_count": 1}}, "big": {"_count": 1, "enough": {"_count": 1}}, "looking": {"_count": 2, "something": {"_count": 1}, "for": {"_count": 1}}, "fell": {"_count": 1, "with": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "just": {"_count": 1, "looking": {"_count": 1}}, "boiling": {"_count": 1, "away": {"_count": 1}}, "poured": {"_count": 1, "everywhere": {"_count": 1}}, "foaming": {"_count": 1, "and": {"_count": 1}}, "streaming": {"_count": 1, "from": {"_count": 1}}, "some": {"_count": 1, "twenty": {"_count": 1}}, "wont": {"_count": 1, "do": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "gleamed": {"_count": 1, "within": {"_count": 1}}, "vanished": {"_count": 1, "again": {"_count": 1}}, "because": {"_count": 1, "Voldemort": {"_count": 1}}, "clumsily": {"_count": 1, "over": {"_count": 1}}, "men": {"_count": 1, "and": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "flew": {"_count": 1, "out": {"_count": 1}}, "inches": {"_count": 1, "below": {"_count": 1}}, "streamed": {"_count": 1, "from": {"_count": 1}}, "his": {"_count": 1, "shoes": {"_count": 1}}, "warmer": {"_count": 1, "": {"_count": 1}}, "lapped": {"_count": 1, "over": {"_count": 1}}, "weeds": {"_count": 1, "though": {"_count": 1}}, "light": {"_count": 1, "as": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "hard": {"_count": 1, "plunging": {"_count": 1}}, "The": {"_count": 1, "dragon": {"_count": 1}}}, "tightened": {"_count": 15, "as": {"_count": 1, "they": {"_count": 1}}, "painfully": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 1, "arm": {"_count": 1}}, "Harry": {"_count": 1, "choked": {"_count": 1}}, "their": {"_count": 1, "grip": {"_count": 1}}, "his": {"_count": 3, "hold": {"_count": 3}}, "it": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "security": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "hundredfold": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}}, "Your": {"_count": 152, "new": {"_count": 1, "school": {"_count": 1}}, "aunt": {"_count": 3, "and": {"_count": 2}, "knows": {"_count": 1}}, "world": {"_count": 1, "": {"_count": 1}}, "Friends": {"_count": 1, "and": {"_count": 1}}, "Enemies": {"_count": 1, "with": {"_count": 1}}, "father": {"_count": 17, "on": {"_count": 1}, "would": {"_count": 4}, "left": {"_count": 1}, "didnt": {"_count": 1}, "and": {"_count": 3}, "is": {"_count": 2}, "hasnt": {"_count": 1}, "thinks": {"_count": 1}, "got": {"_count": 1}, "has": {"_count": 1}, "knew": {"_count": 1}}, "platform": {"_count": 1, "should": {"_count": 1}}, "top": {"_count": 1, "hats": {"_count": 1}}, "detention": {"_count": 1, "will": {"_count": 1}}, "friend": {"_count": 2, "Miss": {"_count": 1}, "is": {"_count": 1}}, "mother": {"_count": 10, "died": {"_count": 3}, "Dont": {"_count": 1}, "could": {"_count": 1}, "Slughorn": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "cant": {"_count": 1}, "confessed": {"_count": 1}}, "family": {"_count": 1, "": {"_count": 1}}, "Own": {"_count": 1, "Cheese": {"_count": 1}}, "sons": {"_count": 1, "flew": {"_count": 1}}, "Quidditch": {"_count": 1, "team": {"_count": 1}}, "son": {"_count": 2, "has": {"_count": 2}}, "sister": {"_count": 1, "is": {"_count": 1}}, "Wand": {"_count": 1, "Some": {"_count": 1}}, "Bludger": {"_count": 1, "": {"_count": 1}}, "bird": {"_count": 1, "I": {"_count": 1}}, "moment": {"_count": 1, "has": {"_count": 1}}, "whole": {"_count": 1, "fascinating": {"_count": 1}}, "dad": {"_count": 4, "doesnt": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "mum": {"_count": 5, "and": {"_count": 3}, "doesnt": {"_count": 1}, "said": {"_count": 1}}, "grandmother": {"_count": 1, "sent": {"_count": 1}}, "Headship": {"_count": 1, "sir": {"_count": 1}}, "head": {"_count": 1, "is": {"_count": 1}}, "parents": {"_count": 3, "gave": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "carriage": {"_count": 1, "is": {"_count": 1}}, "owl": {"_count": 1, "will": {"_count": 1}}, "Lordship": {"_count": 2, "is": {"_count": 1}, "Your": {"_count": 1}}, "devotion": {"_count": 1, "is": {"_count": 1}}, "part": {"_count": 1, "will": {"_count": 1}}, "scar": {"_count": 5, "hurt": {"_count": 2}, "": {"_count": 1}, "it": {"_count": 1}, "again": {"_count": 1}}, "elf": {"_count": 1, "was": {"_count": 1}}, "elfs": {"_count": 1, "scared": {"_count": 1}}, "guess": {"_count": 1, "is": {"_count": 1}}, "fathers": {"_count": 2, "got": {"_count": 1}, "coming": {"_count": 1}}, "dark": {"_count": 1, "hair": {"_count": 1}}, "dads": {"_count": 3, "in": {"_count": 1}, "place": {"_count": 1}, "": {"_count": 1}}, "names": {"_count": 1, "Longbottom": {"_count": 1}}, "Ordinary": {"_count": 1, "Wizarding": {"_count": 1}}, "partners": {"_count": 1, "for": {"_count": 1}}, "dance": {"_count": 1, "partners": {"_count": 1}}, "unlikely": {"_count": 1, "friendship": {"_count": 1}}, "Wheezy": {"_count": 1, "sir": {"_count": 1}}, "task": {"_count": 1, "is": {"_count": 1}}, "last": {"_count": 1, "letter": {"_count": 1}}, "name": {"_count": 1, "didnt": {"_count": 1}}, "blunder": {"_count": 1, "has": {"_count": 1}}, "voice": {"_count": 2, "couldnt": {"_count": 1}, "he": {"_count": 1}}, "exploits": {"_count": 1, "at": {"_count": 1}}, "dementor": {"_count": 1, "has": {"_count": 1}}, "winnings": {"_count": 1, "he": {"_count": 1}}, "potion": {"_count": 2, "Harry": {"_count": 1}, "wasnt": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "grandparents": {"_count": 1, "were": {"_count": 1}}, "Patronus": {"_count": 1, "had": {"_count": 1}}, "hand": {"_count": 2, "is": {"_count": 2}}, "loyalty": {"_count": 1, "Ron": {"_count": 1}}, "brother": {"_count": 3, "Percy": {"_count": 1}, "knew": {"_count": 1}, "would": {"_count": 1}}, "previous": {"_count": 1, "teachers": {"_count": 1}}, "practical": {"_count": 1, "Astronomy": {"_count": 1}}, "Firebolt": {"_count": 1, "is": {"_count": 1}}, "forest": {"_count": 1, "": {"_count": 1}}, "death": {"_count": 2, "will": {"_count": 1}, "approaches": {"_count": 1}}, "dear": {"_count": 1, "old": {"_count": 1}}, "mothers": {"_count": 2, "sacrifice": {"_count": 1}, "": {"_count": 1}}, "punching": {"_count": 1, "telescope": {"_count": 1}}, "scars": {"_count": 1, "not": {"_count": 1}}, "defenses": {"_count": 1, "said": {"_count": 1}}, "adversary": {"_count": 1, "has": {"_count": 1}}, "only": {"_count": 1, "problem": {"_count": 1}}, "bloodtraitor": {"_count": 1, "pal": {"_count": 1}}, "Potions": {"_count": 1, "book": {"_count": 1}}, "nickname": {"_count": 1, "repeated": {"_count": 1}}, "word": {"_count": 1, "Harry": {"_count": 1}}, "good": {"_count": 1, "health": {"_count": 1}}, "wand": {"_count": 5, "Lucius": {"_count": 1}, "Selwyn": {"_count": 1}, "performed": {"_count": 1}, "will": {"_count": 1}, "now": {"_count": 1}}, "wands": {"_count": 1, "here": {"_count": 1}}, "usband": {"_count": 1, "as": {"_count": 1}}, "Holeyness": {"_count": 1, "said": {"_count": 1}}, "GreatAunt": {"_count": 1, "Muriel": {"_count": 1}}, "tone": {"_count": 1, "displeases": {"_count": 1}}, "point": {"_count": 1, "about": {"_count": 1}}, "protective": {"_count": 1, "spells": {"_count": 1}}, "boyfriends": {"_count": 1, "going": {"_count": 1}}, "authority": {"_count": 1, "": {"_count": 1}}, "times": {"_count": 1, "over": {"_count": 1}}, "efforts": {"_count": 1, "are": {"_count": 1}}, "mums": {"_count": 1, "blouse": {"_count": 1}}, "first": {"_count": 1, "priority": {"_count": 1}}, "soul": {"_count": 1, "is": {"_count": 1}}, "blood": {"_count": 1, "in": {"_count": 1}}, "courage": {"_count": 1, "won": {"_count": 1}}}, "bowl": {"_count": 49, "again": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 6, "dropped": {"_count": 1}, "emerged": {"_count": 1}, "picking": {"_count": 1}, "held": {"_count": 1}, "experienced": {"_count": 1}, "shattered": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "of": {"_count": 14, "peas": {"_count": 1}, "canned": {"_count": 1}, "peanuts": {"_count": 1}, "porridge": {"_count": 3}, "fruit": {"_count": 2}, "scarab": {"_count": 1}, "their": {"_count": 1}, "yellow": {"_count": 1}, "murtlap": {"_count": 2}, "soup": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "excuse": {"_count": 1}}, "haircut": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "over": {"_count": 1}}, "stretched": {"_count": 1, "out": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 1, "though": {"_count": 1}}, "neatly": {"_count": 1, "beneath": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "by": {"_count": 1, "putting": {"_count": 1}}, "that": {"_count": 1, "contained": {"_count": 1}}, "sprang": {"_count": 1, "back": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "full": {"_count": 1}}}, "dyeing": {"_count": 1, "some": {"_count": 1, "of": {"_count": 1}}}, "Itll": {"_count": 38, "look": {"_count": 1, "just": {"_count": 1}}, "be": {"_count": 22, "gone": {"_count": 1}, "worse": {"_count": 1}, "really": {"_count": 1}, "a": {"_count": 2}, "down": {"_count": 1}, "ready": {"_count": 1}, "interesting": {"_count": 1}, "my": {"_count": 1}, "Ravenclaw": {"_count": 1}, "his": {"_count": 1}, "Fred": {"_count": 1}, "all": {"_count": 2}, "warm": {"_count": 1}, "more": {"_count": 1}, "over": {"_count": 1}, "the": {"_count": 1}, "like": {"_count": 1}, "dangerous": {"_count": 1}, "one": {"_count": 1}, "dark": {"_count": 1}}, "all": {"_count": 3, "be": {"_count": 3}}, "take": {"_count": 2, "your": {"_count": 1}, "us": {"_count": 1}}, "hear": {"_count": 1, "you": {"_count": 1}}, "help": {"_count": 3, "": {"_count": 2}, "you": {"_count": 1}}, "die": {"_count": 1, "down": {"_count": 1}}, "happen": {"_count": 1, "anyway": {"_count": 1}}, "clear": {"_count": 1, "it": {"_count": 1}}, "make": {"_count": 1, "me": {"_count": 1}}, "probably": {"_count": 1, "help": {"_count": 1}}, "never": {"_count": 1, "be": {"_count": 1}}}, "doubted": {"_count": 23, "this": {"_count": 1, "but": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "whether": {"_count": 7, "Fred": {"_count": 1}, "any": {"_count": 2}, "Uncle": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "that": {"_count": 3, "Frank": {"_count": 1}, "he": {"_count": 1}, "Snape": {"_count": 1}}, "very": {"_count": 3, "much": {"_count": 3}}, "even": {"_count": 1, "Uncle": {"_count": 1}}, "Sirius": {"_count": 1, "would": {"_count": 1}}, "he": {"_count": 2, "would": {"_count": 2}}, "however": {"_count": 1, "whether": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "anyone": {"_count": 1, "would": {"_count": 1}}}, "argue": {"_count": 31, "": {"_count": 7, ".": {"_count": 7}}, "but": {"_count": 6, "Ron": {"_count": 1}, "at": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 2}, "Lupin": {"_count": 1}}, "back": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 2, "I": {"_count": 1}, "as": {"_count": 1}}, "his": {"_count": 1, "case": {"_count": 1}}, "or": {"_count": 2, "complain": {"_count": 1}, "explain": {"_count": 1}}, "some": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 2, "point": {"_count": 2}}, "with": {"_count": 3, "Grey": {"_count": 1}, "at": {"_count": 1}, "Ron": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "so": {"_count": 1, "what": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}}, "elephant": {"_count": 5, "skin": {"_count": 1, "probably": {"_count": 1}}, "emerged": {"_count": 1, "very": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "trunks": {"_count": 1, "or": {"_count": 1}}, "bothered": {"_count": 1, "by": {"_count": 1}}}, "skin": {"_count": 103, "probably": {"_count": 1, "": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "was": {"_count": 4, "a": {"_count": 1}, "stretched": {"_count": 1}, "becoming": {"_count": 1}, "turning": {"_count": 1}}, "not": {"_count": 1, "without": {"_count": 1}}, "a": {"_count": 2, "hooked": {"_count": 1}, "pain": {"_count": 1}}, "and": {"_count": 10, "was": {"_count": 1}, "splattered": {"_count": 1}, "sinew": {"_count": 1}, "the": {"_count": 1}, "bone": {"_count": 1}, "frozen": {"_count": 1}, "muscle": {"_count": 1}, "long": {"_count": 1}, "her": {"_count": 1}, "saw": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 3}, "her": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "back": {"_count": 3, "up": {"_count": 1}, "in": {"_count": 1}, "together": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "looked": {"_count": 2, "just": {"_count": 1}, "grubby": {"_count": 1}}, "Malfoys": {"_count": 1, "shrivelfig": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "as": {"_count": 3, "much": {"_count": 1}, "though": {"_count": 1}, "Griphook": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "meant": {"_count": 1, "more": {"_count": 1}}, "stretched": {"_count": 2, "blankly": {"_count": 1}, "over": {"_count": 1}}, "shine": {"_count": 1, "moon": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "when": {"_count": 1, "undiluted": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "them": {"_count": 1, "alive": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "contrasting": {"_count": 1, "strongly": {"_count": 1}}, "milkwhite": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 2, "something": {"_count": 1}, "was": {"_count": 1}}, "his": {"_count": 3, "head": {"_count": 1}, "hair": {"_count": 1}, "long": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "mended": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "normal": {"_count": 1}}, "Sirius": {"_count": 1, "seized": {"_count": 1}}, "healed": {"_count": 1, "over": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "pain": {"_count": 1, "seared": {"_count": 1}}, "gloves": {"_count": 1, "in": {"_count": 1}}, "an": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "young": {"_count": 1, "master": {"_count": 1}}, "complaint": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 3, "tentacles": {"_count": 1}, "thing": {"_count": 1}, "dragons": {"_count": 1}}, "little": {"_count": 1, "bro": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "like": {"_count": 1, "parchment": {"_count": 1}}, "briefcase": {"_count": 1, "": {"_count": 1}}, "hung": {"_count": 1, "off": {"_count": 1}}, "still": {"_count": 1, "had": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "felt": {"_count": 1}}, "appeared": {"_count": 1, "yellowish": {"_count": 1}}, "throbbing": {"_count": 1, "in": {"_count": 1}}, "I": {"_count": 1, "must": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "hanging": {"_count": 1, "off": {"_count": 1}}, "it": {"_count": 1, "might": {"_count": 1}}, "raw": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}}, "wrinkled": {"_count": 12, "noses": {"_count": 1, "because": {"_count": 1}}, "his": {"_count": 2, "nose": {"_count": 2}}, "old": {"_count": 1, "tortoise": {"_count": 1}}, "newborn": {"_count": 1, "bird": {"_count": 1}}, "with": {"_count": 1, "effort": {"_count": 1}}, "skin": {"_count": 1, "that": {"_count": 1}}, "black": {"_count": 1, "eyelid": {"_count": 1}}, "and": {"_count": 1, "flightless": {"_count": 1}}, "face": {"_count": 1, "gave": {"_count": 1}}, "her": {"_count": 1, "nose": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "noses": {"_count": 19, "because": {"_count": 1, "of": {"_count": 1}}, "pressed": {"_count": 2, "against": {"_count": 2}}, "out": {"_count": 1, "if": {"_count": 1}}, "twitching": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 2, "his": {"_count": 1}, "yours": {"_count": 1}}, "sniffed": {"_count": 1, "madly": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 2, "the": {"_count": 1}, "everywhere": {"_count": 1}}, "being": {"_count": 1, "blown": {"_count": 1}}, "and": {"_count": 1, "mouths": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "flat": {"_count": 1, "against": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}}, "banged": {"_count": 21, "his": {"_count": 5, "Smelting": {"_count": 1}, "head": {"_count": 1}, "fist": {"_count": 1}, "way": {"_count": 1}, "forehead": {"_count": 1}}, "its": {"_count": 1, "tail": {"_count": 1}}, "on": {"_count": 2, "Hermiones": {"_count": 1}, "one": {"_count": 1}}, "shut": {"_count": 1, "and": {"_count": 1}}, "open": {"_count": 7, "again": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "behind": {"_count": 2}}, "the": {"_count": 1, "lids": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "lower": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "each": {"_count": 1}}, "him": {"_count": 1, "on": {"_count": 1}}}, "Smelting": {"_count": 7, "stick": {"_count": 7, "which": {"_count": 1}, "Dudley": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "been": {"_count": 1}, "all": {"_count": 1}, "Uncle": {"_count": 1}}}, "stick": {"_count": 57, "which": {"_count": 2, "he": {"_count": 1}, "was": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 9, "went": {"_count": 1}, "proceeded": {"_count": 1}, "lobbed": {"_count": 1}, "hed": {"_count": 1}, "yelling": {"_count": 1}, "limped": {"_count": 1}, "a": {"_count": 1}, "smiling": {"_count": 1}, "stared": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "been": {"_count": 1, "sick": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "a": {"_count": 1, "long": {"_count": 1}}, "up": {"_count": 3, "for": {"_count": 3}}, "to": {"_count": 4, "stop": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "Malfoy": {"_count": 1}}, "out": {"_count": 3, "your": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "firmly": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "was": {"_count": 2, "slippery": {"_count": 1}, "trembling": {"_count": 1}}, "fell": {"_count": 1, "to": {"_count": 1}}, "together": {"_count": 6, "": {"_count": 2}, "fer": {"_count": 1}, "in": {"_count": 1}, "began": {"_count": 1}, "this": {"_count": 1}}, "your": {"_count": 1, "head": {"_count": 1}}, "close": {"_count": 2, "to": {"_count": 1}, "now": {"_count": 1}}, "his": {"_count": 2, "snakelike": {"_count": 1}, "wand": {"_count": 1}}, "this": {"_count": 2, "said": {"_count": 1}, "sprout": {"_count": 1}}, "with": {"_count": 2, "her": {"_count": 1}, "you": {"_count": 1}}, "the": {"_count": 1, "wand": {"_count": 1}}, "of": {"_count": 2, "wood": {"_count": 1}, "Lucius": {"_count": 1}}}, "click": {"_count": 14, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 7, "the": {"_count": 5}, "his": {"_count": 1}, "a": {"_count": 1}}, "click": {"_count": 1, "went": {"_count": 1}}, "went": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "behind": {"_count": 1, "her": {"_count": 1}}}, "mail": {"_count": 28, "slot": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}}, "Dudley": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 2}}, "": {"_count": 9, ".": {"_count": 6}, "?": {"_count": 3}}, "arrived": {"_count": 2, "Uncle": {"_count": 1}, "": {"_count": 1}}, "had": {"_count": 2, "arrived": {"_count": 1}, "to": {"_count": 1}}, "an": {"_count": 1, "everythin": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "arriving": {"_count": 1, "by": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "order": {"_count": 1, "service": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}}, "slot": {"_count": 4, "and": {"_count": 1, "flop": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "flop": {"_count": 4, "of": {"_count": 1, "letters": {"_count": 1}}, "back": {"_count": 1, "down": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "letters": {"_count": 90, "on": {"_count": 3, "the": {"_count": 3}}, "for": {"_count": 1, "number": {"_count": 1}}, "addressed": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 1, "pieces": {"_count": 1}}, "arrived": {"_count": 1, "for": {"_count": 1}}, "he": {"_count": 1, "got": {"_count": 1}}, "to": {"_count": 7, "Harry": {"_count": 1}, "yeh": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 3}, "you": {"_count": 1}}, "in": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "brackets": {"_count": 1}}, "today": {"_count": 1, "Something": {"_count": 1}}, "came": {"_count": 1, "pelting": {"_count": 1}}, "still": {"_count": 1, "streaming": {"_count": 1}}, "now": {"_count": 1, "eh": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 1}, "Dobby": {"_count": 1}}, "and": {"_count": 9, "he": {"_count": 1}, "packages": {"_count": 4}, "spending": {"_count": 1}, "there": {"_count": 1}, "booklists": {"_count": 1}, "his": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "spelled": {"_count": 2, "words": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 9}, "?": {"_count": 2}, "!": {"_count": 1}}, "were": {"_count": 5, "the": {"_count": 2}, "intercepted": {"_count": 1}, "just": {"_count": 1}, "useless": {"_count": 1}}, "from": {"_count": 9, "all": {"_count": 1}, "Sirius": {"_count": 2}, "the": {"_count": 2}, "his": {"_count": 1}, "readers": {"_count": 1}, "anyone": {"_count": 1}, "home": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "S": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "burnt": {"_count": 1}, "seemed": {"_count": 1}}, "Hermione": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "an": {"_count": 1, "all": {"_count": 1}}, "would": {"_count": 1, "bring": {"_count": 1}}, "go": {"_count": 1, "astray": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 1, "we": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "L": {"_count": 1, "": {"_count": 1}}, "claiming": {"_count": 1, "that": {"_count": 1}}, "its": {"_count": 1, "only": {"_count": 1}}, "WHY": {"_count": 1, "ARE": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "these": {"_count": 1, "words": {"_count": 1}}, "M": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}}, "doormat": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "a": {"_count": 1, "postcard": {"_count": 1}}, "something": {"_count": 1, "alive": {"_count": 1}}, "backs": {"_count": 1, "against": {"_count": 1}}}, "Poke": {"_count": 1, "him": {"_count": 1, "with": {"_count": 1}}}, "dodged": {"_count": 19, "the": {"_count": 2, "Smelting": {"_count": 1}, "Horntail": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "another": {"_count": 2, "Bludger": {"_count": 1}, "jet": {"_count": 1}}, "them": {"_count": 2, "both": {"_count": 1}, "Amycus": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "out": {"_count": 2, "from": {"_count": 1}, "of": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "Bludger": {"_count": 1}}, "an": {"_count": 1, "ink": {"_count": 1}}, "Alicia": {"_count": 1, "again": {"_count": 1}}, "her": {"_count": 1, "and": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 2}}, "Harrys": {"_count": 1, "defensive": {"_count": 1}}}, "Three": {"_count": 100, "things": {"_count": 1, "lay": {"_count": 1}}, "minutes": {"_count": 2, "to": {"_count": 1}, "Harry": {"_count": 1}}, "sets": {"_count": 1, "of": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "Quarters": {"_count": 1, "on": {"_count": 1}}, "boys": {"_count": 1, "entered": {"_count": 1}}, "times": {"_count": 5, "a": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 2}}, "pairs": {"_count": 2, "of": {"_count": 1}, "said": {"_count": 1}}, "of": {"_count": 4, "them": {"_count": 2}, "us": {"_count": 1}, "the": {"_count": 1}}, "Chasers": {"_count": 4, "Harry": {"_count": 1}, "one": {"_count": 1}, "try": {"_count": 1}, "on": {"_count": 1}}, "days": {"_count": 4, "": {"_count": 1}, "later": {"_count": 1}, "before": {"_count": 1}, "ago": {"_count": 1}}, "seconds": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "two": {"_count": 2, "one": {"_count": 2}}, "glass": {"_count": 1, "tumblers": {"_count": 1}}, "Broomsticks": {"_count": 40, "for": {"_count": 2}, "Wish": {"_count": 1}, "": {"_count": 13}, "had": {"_count": 1}, "opened": {"_count": 1}, "about": {"_count": 1}, "and": {"_count": 5}, "pub": {"_count": 1}, "its": {"_count": 1}, "was": {"_count": 1}, "once": {"_count": 1}, "on": {"_count": 1}, "whose": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 1}, "holding": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}, "while": {"_count": 1}, "burst": {"_count": 1}}, "dementors": {"_count": 1, "three": {"_count": 1}}, "turns": {"_count": 1, "": {"_count": 1}}, "hours": {"_count": 1, "back": {"_count": 1}}, "to": {"_count": 1, "take": {"_count": 1}}, "African": {"_count": 1, "wizards": {"_count": 1}}, "large": {"_count": 1, "black": {"_count": 1}}, "helpings": {"_count": 1, "of": {"_count": 1}}, "butterbeers": {"_count": 1, "please": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "His": {"_count": 1, "names": {"_count": 1}}, "rows": {"_count": 1, "to": {"_count": 1}}, "black": {"_count": 1, "specks": {"_count": 1}}, "Galleons": {"_count": 1, "nine": {"_count": 1}}, "lessons": {"_count": 1, "on": {"_count": 1}}, "dementor": {"_count": 1, "attacks": {"_count": 1}}, "years": {"_count": 1, "after": {"_count": 1}}, "oclock": {"_count": 1, "on": {"_count": 1}}, "handpainted": {"_count": 1, "signs": {"_count": 1}}, "Brothers": {"_count": 3, "": {"_count": 2}, "is": {"_count": 1}}, "objects": {"_count": 1, "or": {"_count": 1}}, "Horcruxes": {"_count": 1, "left": {"_count": 1}}, "balls": {"_count": 1, "of": {"_count": 1}}, "doors": {"_count": 1, "led": {"_count": 1}}, "more": {"_count": 1, "people": {"_count": 1}}}, "postcard": {"_count": 3, "from": {"_count": 1, "Uncle": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "vacationing": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "Isle": {"_count": 1, "of": {"_count": 1, "Wight": {"_count": 1}}}, "Wight": {"_count": 1, "a": {"_count": 1, "brown": {"_count": 1}}}, "envelope": {"_count": 52, "that": {"_count": 1, "looked": {"_count": 1}}, "was": {"_count": 1, "thick": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "when": {"_count": 1, "it": {"_count": 1}}, "addressed": {"_count": 1, "in": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 2}, "which": {"_count": 1}, "Rons": {"_count": 1}, "her": {"_count": 1}}, "from": {"_count": 3, "Errols": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "which": {"_count": 2, "had": {"_count": 1}, "Harry": {"_count": 1}}, "writing": {"_count": 1, "out": {"_count": 1}}, "with": {"_count": 1, "silver": {"_count": 1}}, "and": {"_count": 7, "read": {"_count": 1}, "threw": {"_count": 1}, "holding": {"_count": 1}, "yellowish": {"_count": 1}, "pulling": {"_count": 2}, "he": {"_count": 1}}, "open": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 2, "threw": {"_count": 1}, "was": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "clutched": {"_count": 1, "in": {"_count": 1}}, "while": {"_count": 1, "Hedwig": {"_count": 1}}, "gingerly": {"_count": 1, "and": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "had": {"_count": 1, "begun": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "smoldered": {"_count": 1, "into": {"_count": 1}}, "containing": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "bill": {"_count": 3, "and": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "snorted": {"_count": 1, "in": {"_count": 1}}}, "twanging": {"_count": 2, "like": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "harp": {"_count": 1}}}, "elastic": {"_count": 1, "band": {"_count": 1, "": {"_count": 1}}}, "band": {"_count": 11, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "of": {"_count": 4, "wizards": {"_count": 2}, "dusty": {"_count": 1}, "followers": {"_count": 1}}, "that": {"_count": 1, "matched": {"_count": 1}}, "the": {"_count": 1, "Weird": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}, "trooped": {"_count": 1, "toward": {"_count": 1}}, "had": {"_count": 1, "begun": {"_count": 1}}}, "Who": {"_count": 211, "would": {"_count": 4, "": {"_count": 1}, "be": {"_count": 1}, "let": {"_count": 1}, "have": {"_count": 1}}, "on": {"_count": 2, "earth": {"_count": 2}}, "are": {"_count": 18, "you": {"_count": 14}, "the": {"_count": 2}, "all": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 25, "?": {"_count": 22}, ".": {"_count": 2}, "!": {"_count": 1}}, "never": {"_count": 1, "tried": {"_count": 1}}, "was": {"_count": 13, "mentioned": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "Lupin": {"_count": 1}, "the": {"_count": 2}, "that": {"_count": 2}, "feeling": {"_count": 1}, "there": {"_count": 1}, "Bob": {"_count": 1}, "in": {"_count": 1}, "this": {"_count": 1}}, "had": {"_count": 4, "sent": {"_count": 1}, "decided": {"_count": 1}, "come": {"_count": 1}, "it": {"_count": 1}}, "cared": {"_count": 2, "what": {"_count": 1}, "about": {"_count": 1}}, "is": {"_count": 18, "it": {"_count": 9}, "to": {"_count": 1}, "this": {"_count": 5}, "MadEye": {"_count": 1}, "that": {"_count": 1}, "your": {"_count": 1}}, "Gained": {"_count": 1, "Power": {"_count": 1}}, "can": {"_count": 6, "tell": {"_count": 1}, "it": {"_count": 1}, "answer": {"_count": 1}, "": {"_count": 1}, "say": {"_count": 1}, "you": {"_count": 1}}, "do": {"_count": 4, "we": {"_count": 1}, "you": {"_count": 3}}, "opened": {"_count": 1, "it": {"_count": 1}}, "cares": {"_count": 9, "": {"_count": 4}, "what": {"_count": 2}, "if": {"_count": 3}}, "threw": {"_count": 1, "it": {"_count": 1}}, "exactly": {"_count": 1, "were": {"_count": 1}}, "knows": {"_count": 3, "what": {"_count": 1}, "": {"_count": 1}, "where": {"_count": 1}}, "dyou": {"_count": 4, "reckon": {"_count": 2}, "two": {"_count": 1}, "know": {"_count": 1}}, "screamed": {"_count": 1, "": {"_count": 1}}, "else": {"_count": 8, "would": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 1}, "has": {"_count": 1}, "is": {"_count": 3}}, "wasnt": {"_count": 2, "an": {"_count": 1}, "it": {"_count": 1}}, "sent": {"_count": 2, "it": {"_count": 1}, "you": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "shouted": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 6, "that": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 3}}, "conjured": {"_count": 1, "it": {"_count": 1}}, "wrote": {"_count": 1, "this": {"_count": 1}}, "wouldnt": {"_count": 2, "want": {"_count": 1}, "prefer": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "were": {"_count": 1}}, "were": {"_count": 3, "you": {"_count": 2}, "they": {"_count": 1}}, "Love": {"_count": 1, "Dragons": {"_count": 1}}, "re": {"_count": 7, "you": {"_count": 7}}, "needs": {"_count": 1, "that": {"_count": 1}}, "deals": {"_count": 1, "in": {"_count": 1}}, "put": {"_count": 1, "your": {"_count": 1}}, "frightened": {"_count": 1, "off": {"_count": 1}}, "nudged": {"_count": 1, "Hagrid": {"_count": 1}}, "helped": {"_count": 1, "you": {"_count": 1}}, "told": {"_count": 2, "Cedric": {"_count": 1}, "you": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "used": {"_count": 1, "the": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "wants": {"_count": 4, "to": {"_count": 3}, "eggnog": {"_count": 1}}, "said": {"_count": 5, "none": {"_count": 1}, "Ron": {"_count": 1}, "it": {"_count": 1}, "anythin": {"_count": 1}, "his": {"_count": 1}}, "does": {"_count": 1, "he": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "overheard": {"_count": 1, "us": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "yeh": {"_count": 1, "bin": {"_count": 1}}, "attacked": {"_count": 1, "you": {"_count": 1}}, "expects": {"_count": 1, "Devils": {"_count": 1}}, "heard": {"_count": 1, "it": {"_count": 1}}, "Lived": {"_count": 10, "There": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 3}, "were": {"_count": 1}, "had": {"_count": 1}, "remains": {"_count": 1}, "is": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "blazes": {"_count": 1}}, "blacked": {"_count": 1, "your": {"_count": 1}}, "have": {"_count": 1, "given": {"_count": 1}}, "puts": {"_count": 1, "their": {"_count": 1}}, "registered": {"_count": 1, "him": {"_count": 1}}, "suspects": {"_count": 1, "me": {"_count": 1}}, "Scored": {"_count": 1, "whatever": {"_count": 1}}, "well": {"_count": 1, "something": {"_count": 1}}, "taught": {"_count": 1, "you": {"_count": 1}}, "Gregorovitch": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}, "could": {"_count": 2, "look": {"_count": 1}, "have": {"_count": 1}}, "himself": {"_count": 1, "arrived": {"_count": 1}}, "will": {"_count": 1, "know": {"_count": 1}}, "says": {"_count": 1, "Ive": {"_count": 1}}, "shall": {"_count": 1, "drag": {"_count": 1}}, "has": {"_count": 1, "volunteered": {"_count": 1}}}, "friends": {"_count": 212, "no": {"_count": 1, "other": {"_count": 1}}, "with": {"_count": 13, "the": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 1}, "pleas": {"_count": 1}, "Karkaroff": {"_count": 1}, "them": {"_count": 2}, "Viktor": {"_count": 1}, "werewolves": {"_count": 1}, "people": {"_count": 1}, "both": {"_count": 1}, "Ron": {"_count": 1}, "Gellert": {"_count": 1}}, "Those": {"_count": 1, "cunning": {"_count": 1}}, "Crabbe": {"_count": 3, "and": {"_count": 3}}, "": {"_count": 54, ".": {"_count": 42}, "!": {"_count": 8}, "?": {"_count": 4}}, "and": {"_count": 11, "he": {"_count": 1}, "admirers": {"_count": 2}, "we": {"_count": 2}, "decided": {"_count": 1}, "family": {"_count": 1}, "neighbors": {"_count": 2}, "relatives": {"_count": 1}, "bring": {"_count": 1}}, "of": {"_count": 7, "mine": {"_count": 2}, "Hagrid": {"_count": 1}, "his": {"_count": 1}, "those": {"_count": 1}, "Harry": {"_count": 1}, "every": {"_count": 1}}, "were": {"_count": 3, "a": {"_count": 1}, "whispering": {"_count": 1}, "foolhardy": {"_count": 1}}, "Misters": {"_count": 1, "Fred": {"_count": 1}}, "askin": {"_count": 1, "fer": {"_count": 1}}, "Ron": {"_count": 3, "Weasley": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}}, "at": {"_count": 5, "that": {"_count": 1}, "Hogwarts": {"_count": 4}}, "to": {"_count": 6, "take": {"_count": 1}, "join": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}, "die": {"_count": 2}}, "havent": {"_count": 1, "been": {"_count": 1}}, "had": {"_count": 6, "forgotten": {"_count": 1}, "sent": {"_count": 1}, "disappeared": {"_count": 1}, "a": {"_count": 1}, "not": {"_count": 1}, "been": {"_count": 1}}, "letters": {"_count": 1, "": {"_count": 1}}, "tea": {"_count": 1, "in": {"_count": 1}}, "beg": {"_count": 1, "for": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "may": {"_count": 1, "have": {"_count": 1}}, "darkened": {"_count": 1, "faces": {"_count": 1}}, "is": {"_count": 3, "Muggleborn": {"_count": 3}}, "hell": {"_count": 1, "tell": {"_count": 1}}, "before": {"_count": 1, "Hogwarts": {"_count": 1}}, "was": {"_count": 2, "attacked": {"_count": 1}, "extinguished": {"_count": 1}}, "only": {"_count": 1, "of": {"_count": 1}}, "defeated": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 1, "five": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 2, "thing": {"_count": 1}, "more": {"_count": 1}}, "you": {"_count": 3, "can": {"_count": 1}, "know": {"_count": 1}, "see": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "played": {"_count": 1, "a": {"_count": 1}}, "nickname": {"_count": 1, "for": {"_count": 1}}, "three": {"_count": 1, "great": {"_count": 1}}, "could": {"_count": 1, "hardly": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "whod": {"_count": 1, "look": {"_count": 1}}, "into": {"_count": 1, "such": {"_count": 1}}, "But": {"_count": 1, "Listen": {"_count": 1}}, "Hermione": {"_count": 1, "Granger": {"_count": 1}}, "looked": {"_count": 1, "in": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 2, "admit": {"_count": 1}, "call": {"_count": 1}}, "nothing": {"_count": 1, "could": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "hes": {"_count": 1, "so": {"_count": 1}}, "saw": {"_count": 1, "him": {"_count": 1}}, "said": {"_count": 2, "Lupin": {"_count": 1}, "Dumbledore": {"_count": 1}}, "call": {"_count": 2, "him": {"_count": 1}, "me": {"_count": 1}}, "from": {"_count": 1, "other": {"_count": 1}}, "decided": {"_count": 1, "And": {"_count": 1}}, "anywhere": {"_count": 1, "As": {"_count": 1}}, "die": {"_count": 1, "theyve": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "came": {"_count": 1, "I": {"_count": 1}}, "sleeve": {"_count": 1, "had": {"_count": 1}}, "broomstick": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 1, "your": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "strode": {"_count": 1, "off": {"_count": 1}}, "ter": {"_count": 1, "meet": {"_count": 1}}, "fer": {"_count": 1, "yeh": {"_count": 1}}, "paid": {"_count": 1, "a": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "Mr": {"_count": 1, "Ronald": {"_count": 1}}, "than": {"_count": 1, "us": {"_count": 1}}, "apparently": {"_count": 1, "but": {"_count": 1}}, "more": {"_count": 1, "closely": {"_count": 1}}, "again": {"_count": 2, "immediately": {"_count": 1}, "however": {"_count": 1}}, "perhaps": {"_count": 1, "after": {"_count": 1}}, "what": {"_count": 1, "Im": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "indeed": {"_count": 1, "to": {"_count": 1}}, "find": {"_count": 1, "solace": {"_count": 1}}, "started": {"_count": 1, "gathering": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "live": {"_count": 1, "": {"_count": 1}}, "sister": {"_count": 1, "": {"_count": 1}}, "benefited": {"_count": 1, "from": {"_count": 1}}, "learned": {"_count": 1, "not": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 1, "Harry": {"_count": 1}}, "got": {"_count": 1, "into": {"_count": 1}}, "offers": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "weapons": {"_count": 1}}, "Draco": {"_count": 1, "look": {"_count": 1}}, "caught": {"_count": 1, "at": {"_count": 1}}, "or": {"_count": 4, "foes": {"_count": 2}, "at": {"_count": 1}, "siblings": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "can": {"_count": 1, "understand": {"_count": 1}}}, "relatives": {"_count": 18, "he": {"_count": 1, "didnt": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "!": {"_count": 3}}, "like": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 2, "their": {"_count": 1}, "students": {"_count": 1}}, "which": {"_count": 1, "would": {"_count": 1}}, "to": {"_count": 3, "be": {"_count": 1}, "camouflage": {"_count": 1}, "behave": {"_count": 1}}, "took": {"_count": 1, "so": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "belong": {"_count": 25, "to": {"_count": 11, "the": {"_count": 1}, "my": {"_count": 1}, "underwater": {"_count": 1}, "Uncle": {"_count": 1}, "our": {"_count": 1}, "him": {"_count": 2}, "giant": {"_count": 1}, "separate": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 5, "Gryffindor": {"_count": 3}, "Hufflepuff": {"_count": 1}, "your": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 2}, ".": {"_count": 2}, "?": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "library": {"_count": 112, "so": {"_count": 3, "hed": {"_count": 1}, "I": {"_count": 1}, "as": {"_count": 1}}, "he": {"_count": 3, "swallowed": {"_count": 1}, "held": {"_count": 1}, "hadnt": {"_count": 1}}, "book": {"_count": 4, "called": {"_count": 1}, "even": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 23}, "?": {"_count": 5}, "!": {"_count": 1}}, "tens": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 1, "pitchblack": {"_count": 1}}, "Restricted": {"_count": 1, "Section": {"_count": 1}}, "wandering": {"_count": 1, "around": {"_count": 1}}, "weeks": {"_count": 1, "ago": {"_count": 1}}, "with": {"_count": 3, "her": {"_count": 1}, "Dobby": {"_count": 1}, "Hermione": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "Dragon": {"_count": 1, "Breeding": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "where": {"_count": 2, "Hermione": {"_count": 1}, "they": {"_count": 1}}, "and": {"_count": 8, "saw": {"_count": 1}, "didnt": {"_count": 1}, "do": {"_count": 2}, "doubling": {"_count": 1}, "try": {"_count": 1}, "Harry": {"_count": 1}, "discovered": {"_count": 1}}, "measuring": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 1, "Christmas": {"_count": 1}}, "Percy": {"_count": 1, "Weasley": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "they": {"_count": 1}, "halfway": {"_count": 1}}, "earning": {"_count": 1, "himself": {"_count": 1}}, "said": {"_count": 3, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 2, "wasnt": {"_count": 1}, "said": {"_count": 1}}, "the": {"_count": 3, "next": {"_count": 2}, "Invisibility": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "when": {"_count": 2, "Hermione": {"_count": 1}, "they": {"_count": 1}}, "an": {"_count": 1, "awful": {"_count": 1}}, "poring": {"_count": 1, "over": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "gang": {"_count": 1}, "little": {"_count": 1}}, "stalked": {"_count": 1, "past": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "sessions": {"_count": 1, "Id": {"_count": 1}}, "to": {"_count": 2, "last": {"_count": 1}, "pick": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "hed": {"_count": 1, "stay": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "looking": {"_count": 2, "up": {"_count": 2}}, "together": {"_count": 1, "with": {"_count": 1}}, "they": {"_count": 1, "cant": {"_count": 1}}, "or": {"_count": 2, "the": {"_count": 1}, "up": {"_count": 1}}, "anybody": {"_count": 1, "out": {"_count": 1}}, "table": {"_count": 1, "where": {"_count": 1}}, "she": {"_count": 1, "screamed": {"_count": 1}}, "whacking": {"_count": 1, "them": {"_count": 1}}, "which": {"_count": 1, "meant": {"_count": 1}}, "is": {"_count": 1, "now": {"_count": 1}}, "if": {"_count": 1, "youre": {"_count": 1}}, "had": {"_count": 1, "failed": {"_count": 1}}, "about": {"_count": 1, "Filch": {"_count": 1}}, "books": {"_count": 1, "even": {"_count": 1}}, "his": {"_count": 1, "magical": {"_count": 1}}}, "rude": {"_count": 36, "notes": {"_count": 1, "asking": {"_count": 1}}, "sound": {"_count": 1, "like": {"_count": 1}}, "words": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 7, "point": {"_count": 2}, "you": {"_count": 1}, "call": {"_count": 1}, "say": {"_count": 1}, "her": {"_count": 1}, "everyone": {"_count": 1}}, "so": {"_count": 1, "instead": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 2, "their": {"_count": 1}, "embarrassing": {"_count": 1}}, "the": {"_count": 1, "Dursleys": {"_count": 1}}, "sign": {"_count": 1, "indeed": {"_count": 1}}, "no": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "too": {"_count": 1, "Im": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "hand": {"_count": 3, "gestures": {"_count": 1}, "gesture": {"_count": 2}}, "about": {"_count": 3, "our": {"_count": 1}, "Filch": {"_count": 1}, "Gryffindor": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "he": {"_count": 1, "began": {"_count": 1}}, "as": {"_count": 1, "kicking": {"_count": 1}}, "awakening": {"_count": 1, "": {"_count": 1}}, "called": {"_count": 1, "her": {"_count": 1}}, "versions": {"_count": 1, "of": {"_count": 1}}}, "notes": {"_count": 65, "asking": {"_count": 1, "for": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "were": {"_count": 2, "delivered": {"_count": 1}, "handed": {"_count": 1}}, "before": {"_count": 3, "I": {"_count": 1}, "moving": {"_count": 1}, "exams": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 3, "Mr": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 6, "began": {"_count": 1}, "forgettin": {"_count": 1}, "attempting": {"_count": 1}, "peering": {"_count": 1}, "handdrawn": {"_count": 1}, "maps": {"_count": 1}}, "on": {"_count": 12, "werewolves": {"_count": 1}, "it": {"_count": 1}, "each": {"_count": 1}, "their": {"_count": 1}, "what": {"_count": 1}, "goblin": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 1}, "clipboards": {"_count": 1}, "the": {"_count": 1}, "Everlasting": {"_count": 1}}, "she": {"_count": 1, "barely": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "me": {"_count": 1}, "Sirius": {"_count": 1}, "it": {"_count": 1}}, "but": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "or": {"_count": 1, "rather": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "while": {"_count": 2, "the": {"_count": 1}, "she": {"_count": 1}}, "serenely": {"_count": 1, "unaware": {"_count": 1}}, "looking": {"_count": 1, "amazed": {"_count": 1}}, "joyfully": {"_count": 1, "": {"_count": 1}}, "Weasley": {"_count": 1, "and": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "himself": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "stacked": {"_count": 1, "threeandahalf": {"_count": 1}}, "only": {"_count": 1, "this": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "not": {"_count": 1, "all": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}, "now": {"_count": 1, "stacked": {"_count": 1}}}, "addressed": {"_count": 36, "so": {"_count": 1, "plainly": {"_count": 1}}, "to": {"_count": 8, "you": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 2}, "the": {"_count": 2}, "each": {"_count": 1}}, "in": {"_count": 3, "green": {"_count": 2}, "emerald": {"_count": 1}}, "him": {"_count": 1, "Lockhart": {"_count": 1}}, "his": {"_count": 2, "six": {"_count": 1}, "own": {"_count": 1}}, "directly": {"_count": 1, "by": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 5, "first": {"_count": 1}, "class": {"_count": 1}, "silent": {"_count": 1}, "werewolf": {"_count": 1}, "dead": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "reporters": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}, "thus": {"_count": 2, "left": {"_count": 1}, "Harry": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "Lupin": {"_count": 2, "again": {"_count": 1}, "more": {"_count": 1}}, "Bill": {"_count": 1, "Theres": {"_count": 1}}, "Mr": {"_count": 1, "Weasleys": {"_count": 1}}, "Aberforth": {"_count": 1, "": {"_count": 1}}}, "mistake": {"_count": 74, "Mr": {"_count": 1, "H": {"_count": 1}}, "said": {"_count": 6, "Uncle": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "Lupin": {"_count": 1}, "Fred": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 15}, "!": {"_count": 3}, "?": {"_count": 4}}, "and": {"_count": 1, "hed": {"_count": 1}}, "my": {"_count": 1, "mistake": {"_count": 1}}, "I": {"_count": 4, "didnt": {"_count": 1}, "arrived": {"_count": 1}, "know": {"_count": 1}, "took": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "me": {"_count": 1}}, "gasping": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "Riddle": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "KEEP": {"_count": 1, "QUIET": {"_count": 1}}, "to": {"_count": 3, "make": {"_count": 1}, "invite": {"_count": 1}, "trust": {"_count": 1}}, "anyone": {"_count": 1, "could": {"_count": 1}}, "tell": {"_count": 1, "George": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Durmstrang": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "thought": {"_count": 1}}, "wiz": {"_count": 1, "ze": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "anybodys": {"_count": 1}, "saying": {"_count": 1}, "marrying": {"_count": 1}}, "Moody": {"_count": 1, "said": {"_count": 1}}, "hed": {"_count": 1, "cough": {"_count": 1}}, "Well": {"_count": 1, "theres": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 3, "looked": {"_count": 1}, "Voldemorts": {"_count": 1}, "went": {"_count": 1}}, "As": {"_count": 1, "are": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 2, "makes": {"_count": 1}, "some": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "well": {"_count": 1, "hear": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "sir": {"_count": 1, "he": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "tone": {"_count": 1}}}, "H": {"_count": 9, "": {"_count": 8, ".": {"_count": 8}}, "he": {"_count": 1, "was": {"_count": 1}}}, "Cupboard": {"_count": 1, "under": {"_count": 1, "the": {"_count": 1}}}, "Stairs": {"_count": 1, "4": {"_count": 1, "Privet": {"_count": 1}}}, "4": {"_count": 9, "Privet": {"_count": 2, "Drive": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "THE": {"_count": 1, "QUIDDITCH": {"_count": 1}}, "copies": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "Miranda": {"_count": 1}}, "and": {"_count": 1, "started": {"_count": 1}}}, "Whinging": {"_count": 17, "Surrey": {"_count": 3, "The": {"_count": 1}, "": {"_count": 2}}, "he": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 1, "four": {"_count": 1}}, "by": {"_count": 1, "night": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 2}, "?": {"_count": 3}, "!": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "attacked": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}}, "Surrey": {"_count": 4, "The": {"_count": 1, "envelope": {"_count": 1}}, "then": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "heavy": {"_count": 139, "made": {"_count": 1, "of": {"_count": 1}}, "parchment": {"_count": 1, "as": {"_count": 1}}, "coat": {"_count": 1, "fell": {"_count": 1}}, "trunk": {"_count": 2, "had": {"_count": 1}, "behind": {"_count": 1}}, "run": {"_count": 1, "the": {"_count": 1}}, "trunks": {"_count": 1, "": {"_count": 1}}, "protection": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 5, "balancing": {"_count": 1}, "couldnt": {"_count": 1}, "sometimes": {"_count": 1}, "aching": {"_count": 1}, "Malfoy": {"_count": 1}}, "nosebleed": {"_count": 1, "": {"_count": 1}}, "wooden": {"_count": 5, "door": {"_count": 2}, "breadboard": {"_count": 1}, "ones": {"_count": 1}, "front": {"_count": 1}}, "drop": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "blow": {"_count": 3, "at": {"_count": 1}, "hit": {"_count": 1}, "on": {"_count": 1}}, "book": {"_count": 3, "from": {"_count": 1}, "soared": {"_count": 1}, "entitled": {"_count": 1}}, "spellbooks": {"_count": 1, "came": {"_count": 1}}, "jolt": {"_count": 1, "": {"_count": 1}}, "perfume": {"_count": 1, "of": {"_count": 1}}, "black": {"_count": 6, "Bludger": {"_count": 1}, "spectacles": {"_count": 1}, "balls": {"_count": 1}, "eyebrows": {"_count": 1}, "stone": {"_count": 1}, "cloak": {"_count": 1}}, "drops": {"_count": 2, "fall": {"_count": 1}, "of": {"_count": 1}}, "jaw": {"_count": 1, "jutted": {"_count": 1}}, "murmuring": {"_count": 1, "at": {"_count": 1}}, "loads": {"_count": 1, "their": {"_count": 1}}, "body": {"_count": 2, "slithering": {"_count": 1}, "would": {"_count": 1}}, "hit": {"_count": 1, "Harry": {"_count": 1}}, "thudded": {"_count": 1, "onto": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "sickly": {"_count": 1, "sort": {"_count": 1}}, "thud": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "books": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "bats": {"_count": 1, "to": {"_count": 1}}, "rain": {"_count": 2, "all": {"_count": 1}, "but": {"_count": 1}}, "footsteps": {"_count": 1, "then": {"_count": 1}}, "objects": {"_count": 2, "and": {"_count": 1}, "rolled": {"_count": 1}}, "branch": {"_count": 1, "whipped": {"_count": 1}}, "manacles": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 2, "lift": {"_count": 1}, "carry": {"_count": 1}}, "chair": {"_count": 1, "being": {"_count": 1}}, "fine": {"_count": 1, "and": {"_count": 1}}, "gold": {"_count": 4, "coins": {"_count": 1}, "locket": {"_count": 2}, "watch": {"_count": 1}}, "Hogwarts": {"_count": 1, "trunks": {"_count": 1}}, "clouds": {"_count": 1, "of": {"_count": 1}}, "furs": {"_count": 1, "and": {"_count": 1}}, "leather": {"_count": 1, "straps": {"_count": 1}}, "egg": {"_count": 2, "safely": {"_count": 1}, "under": {"_count": 1}}, "said": {"_count": 1, "Lee": {"_count": 1}}, "load": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "fall": {"_count": 1, "to": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "breathing": {"_count": 1, "of": {"_count": 1}}, "weight": {"_count": 2, "into": {"_count": 1}, "pressing": {"_count": 1}}, "heart": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "trolls": {"_count": 1, "leg": {"_count": 1}}, "iron": {"_count": 2, "pots": {"_count": 1}, "door": {"_count": 1}}, "knives": {"_count": 1, "were": {"_count": 1}}, "emphasis": {"_count": 1, "on": {"_count": 1}}, "locket": {"_count": 1, "that": {"_count": 1}}, "bolts": {"_count": 1, "at": {"_count": 1}}, "oak": {"_count": 1, "doors": {"_count": 1}}, "door": {"_count": 2, "swung": {"_count": 1}, "": {"_count": 1}}, "downpour": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 3, "mutual": {"_count": 1}, "berrysized": {"_count": 1}, "irony": {"_count": 1}}, "scroll": {"_count": 1, "of": {"_count": 1}}, "chain": {"_count": 1, "and": {"_count": 1}}, "sigh": {"_count": 1, "putting": {"_count": 1}}, "struck": {"_count": 1, "him": {"_count": 1}}, "collide": {"_count": 1, "with": {"_count": 1}}, "packages": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "licorice": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "money": {"_count": 1, "bag": {"_count": 1}}, "bat": {"_count": 1, "": {"_count": 1}}, "price": {"_count": 1, "": {"_count": 1}}, "silver": {"_count": 1, "platters": {"_count": 1}}, "he": {"_count": 1, "raised": {"_count": 1}}, "brass": {"_count": 2, "scales": {"_count": 2}}, "golden": {"_count": 1, "locket": {"_count": 1}}, "head": {"_count": 1, "into": {"_count": 1}}, "snores": {"_count": 1, "": {"_count": 1}}, "bloodstained": {"_count": 1, "axe": {"_count": 1}}, "brows": {"_count": 1, "and": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "brutallooking": {"_count": 1, "face": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "footfalls": {"_count": 3, "on": {"_count": 1}, "surrounded": {"_count": 1}, "behind": {"_count": 1}}, "velvet": {"_count": 1, "curtain": {"_count": 1}}, "curtains": {"_count": 1, "It": {"_count": 1}}, "were": {"_count": 1, "pressing": {"_count": 1}}, "smooth": {"_count": 1, "mass": {"_count": 1}}, "coil": {"_count": 1, "rising": {"_count": 1}}, "chest": {"_count": 1, "of": {"_count": 1}}, "casualties": {"_count": 1, "said": {"_count": 1}}, "eyebrows": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "cuffs": {"_count": 1, "from": {"_count": 1}}, "losses": {"_count": 1, "": {"_count": 1}}}, "yellowish": {"_count": 16, "parchment": {"_count": 2, "and": {"_count": 1}, "addressed": {"_count": 1}}, "envelope": {"_count": 1, "addressed": {"_count": 1}}, "fangs": {"_count": 1, "": {"_count": 1}}, "teeth": {"_count": 1, "were": {"_count": 1}}, "eyes": {"_count": 3, "were": {"_count": 1}, "behind": {"_count": 1}, "as": {"_count": 1}}, "green": {"_count": 1, "liquid": {"_count": 1}}, "tail": {"_count": 1, "ending": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "label": {"_count": 1, "affixed": {"_count": 1}}, "goo": {"_count": 1, "squirted": {"_count": 1}}, "nails": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "waxy": {"_count": 1}}, "skin": {"_count": 1, "": {"_count": 1}}}, "parchment": {"_count": 255, "and": {"_count": 38, "the": {"_count": 1}, "quills": {"_count": 3}, "quill": {"_count": 3}, "turned": {"_count": 1}, "were": {"_count": 1}, "reread": {"_count": 1}, "laid": {"_count": 1}, "wrote": {"_count": 1}, "hastily": {"_count": 1}, "a": {"_count": 6}, "refills": {"_count": 1}, "Harry": {"_count": 1}, "drop": {"_count": 1}, "held": {"_count": 1}, "in": {"_count": 1}, "books": {"_count": 2}, "called": {"_count": 1}, "tapped": {"_count": 1}, "scrawled": {"_count": 1}, "cheerfully": {"_count": 1}, "talking": {"_count": 1}, "put": {"_count": 1}, "raised": {"_count": 1}, "But": {"_count": 1}, "unrolled": {"_count": 1}, "quickly": {"_count": 1}, "her": {"_count": 1}, "scanning": {"_count": 1}}, "as": {"_count": 4, "the": {"_count": 1}, "he": {"_count": 3}}, "": {"_count": 52, ".": {"_count": 47}, "!": {"_count": 3}, "?": {"_count": 2}}, "envelope": {"_count": 2, "out": {"_count": 1}, "it": {"_count": 1}}, "potion": {"_count": 1, "bottles": {"_count": 1}}, "Harry": {"_count": 2, "couldnt": {"_count": 1}, "had": {"_count": 1}}, "addressed": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 9, "his": {"_count": 2}, "which": {"_count": 1}, "the": {"_count": 3}, "Fudge": {"_count": 1}, "between": {"_count": 2}}, "next": {"_count": 1, "door": {"_count": 1}}, "inside": {"_count": 2, "": {"_count": 2}}, "back": {"_count": 2, "into": {"_count": 1}, "and": {"_count": 1}}, "which": {"_count": 7, "sprang": {"_count": 1}, "she": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 3}, "Harry": {"_count": 1}}, "that": {"_count": 8, "had": {"_count": 1}, "insults": {"_count": 1}, "cant": {"_count": 1}, "was": {"_count": 1}, "looked": {"_count": 1}, "George": {"_count": 1}, "she": {"_count": 2}}, "but": {"_count": 4, "the": {"_count": 1}, "then": {"_count": 1}, "looked": {"_count": 1}, "rather": {"_count": 1}}, "in": {"_count": 9, "two": {"_count": 1}, "there": {"_count": 1}, "one": {"_count": 1}, "what": {"_count": 2}, "his": {"_count": 3}, "your": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "within": {"_count": 1, "and": {"_count": 1}}, "ink": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 8, "the": {"_count": 3}, "which": {"_count": 3}, "a": {"_count": 1}, "her": {"_count": 1}}, "with": {"_count": 7, "nothing": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}, "Harrys": {"_count": 1}, "Dumbledores": {"_count": 1}, "Mrs": {"_count": 1}}, "fondly": {"_count": 1, "": {"_count": 1}}, "lightly": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 1, "words": {"_count": 1}}, "off": {"_count": 2, "a": {"_count": 1}, "crumpled": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 1}, "had": {"_count": 2}, "squinted": {"_count": 1}}, "is": {"_count": 2, "plainly": {"_count": 1}, "that": {"_count": 1}}, "was": {"_count": 3, "damp": {"_count": 1}, "tied": {"_count": 1}, "now": {"_count": 1}}, "around": {"_count": 1, "on": {"_count": 1}}, "perched": {"_count": 1, "upon": {"_count": 1}}, "littered": {"_count": 1, "that": {"_count": 1}}, "toward": {"_count": 3, "him": {"_count": 2}, "Harrys": {"_count": 1}}, "tickets": {"_count": 1, "": {"_count": 1}}, "list": {"_count": 1, "": {"_count": 1}}, "Bagman": {"_count": 1, "handed": {"_count": 1}}, "a": {"_count": 3, "bottle": {"_count": 1}, "quill": {"_count": 2}}, "bearing": {"_count": 1, "sums": {"_count": 1}}, "said": {"_count": 2, "good": {"_count": 1}, "Sirius": {"_count": 1}}, "at": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "tied": {"_count": 3, "to": {"_count": 2}, "with": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 5}}, "into": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "fluttered": {"_count": 1, "out": {"_count": 1}}, "shot": {"_count": 1, "out": {"_count": 1}}, "where": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "Attractive": {"_count": 1, "blonde": {"_count": 1}}, "between": {"_count": 2, "them": {"_count": 2}}, "had": {"_count": 1, "suddenly": {"_count": 1}}, "belongs": {"_count": 1, "to": {"_count": 1}}, "unrolled": {"_count": 1, "it": {"_count": 1}}, "over": {"_count": 2, "and": {"_count": 1}, "looking": {"_count": 1}}, "folded": {"_count": 1, "over": {"_count": 1}}, "for": {"_count": 2, "Ron": {"_count": 1}, "a": {"_count": 1}}, "the": {"_count": 2, "moment": {"_count": 1}, "occasional": {"_count": 1}}, "goblets": {"_count": 1, "empty": {"_count": 1}}, "left": {"_count": 1, "on": {"_count": 1}}, "others": {"_count": 1, "battered": {"_count": 1}}, "came": {"_count": 1, "speeding": {"_count": 1}}, "Kingsley": {"_count": 1, "Shacklebolt": {"_count": 1}}, "one": {"_count": 1, "the": {"_count": 1}}, "lay": {"_count": 2, "on": {"_count": 1}, "ready": {"_count": 1}}, "placed": {"_count": 1, "the": {"_count": 1}}, "dotted": {"_count": 1, "with": {"_count": 1}}, "while": {"_count": 1, "looking": {"_count": 1}}, "old": {"_count": 1, "Gobstones": {"_count": 1}}, "thinking": {"_count": 1, "hard": {"_count": 1}}, "carefully": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "we": {"_count": 1, "all": {"_count": 1}}, "ignoring": {"_count": 1, "Hermiones": {"_count": 1}}, "quills": {"_count": 2, "and": {"_count": 2}}, "now": {"_count": 1, "trailing": {"_count": 1}}, "rolling": {"_count": 1, "it": {"_count": 1}}, "fell": {"_count": 1, "with": {"_count": 1}}, "scroll": {"_count": 1, "from": {"_count": 1}}, "zoomed": {"_count": 1, "into": {"_count": 1}}, "kissed": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 1, "topple": {"_count": 1}}, "like": {"_count": 1, "scurrying": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "through": {"_count": 1, "several": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "soared": {"_count": 1, "into": {"_count": 1}}, "wedged": {"_count": 1, "tightly": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "tracing": {"_count": 1, "ink": {"_count": 1}}, "were": {"_count": 1, "floating": {"_count": 1}}}, "address": {"_count": 18, "was": {"_count": 1, "written": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "Mr": {"_count": 1, "H": {"_count": 1}}, "the": {"_count": 2, "envelopes": {"_count": 1}, "students": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 1, "minute": {"_count": 1}}, "Harry": {"_count": 2, "and": {"_count": 1}, "Potter": {"_count": 1}}, "me": {"_count": 1, "as": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermole": {"_count": 1}}, "and": {"_count": 1, "bade": {"_count": 1}}, "those": {"_count": 1, "who": {"_count": 1}}, "a": {"_count": 1, "poor": {"_count": 1}}}, "ink": {"_count": 82, "": {"_count": 14, ".": {"_count": 12}, "!": {"_count": 1}, "?": {"_count": 1}}, "address": {"_count": 1, "Mr": {"_count": 1}}, "that": {"_count": 2, "changed": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 7, "parchment": {"_count": 2}, "quill": {"_count": 1}, "a": {"_count": 1}, "starting": {"_count": 1}, "started": {"_count": 1}, "forced": {"_count": 1}}, "bottles": {"_count": 3, "and": {"_count": 3}}, "pot": {"_count": 4, "": {"_count": 2}, "you": {"_count": 1}, "and": {"_count": 1}}, "bottle": {"_count": 15, "smashed": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}, "dipped": {"_count": 2}, "pulled": {"_count": 1}, "loading": {"_count": 1}, "these": {"_count": 1}, "once": {"_count": 1}, "over": {"_count": 1}, "flying": {"_count": 1}, "to": {"_count": 1}, "its": {"_count": 1}}, "on": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 2}}, "shone": {"_count": 1, "brightly": {"_count": 1}}, "came": {"_count": 1, "words": {"_count": 1}}, "still": {"_count": 1, "oozing": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "lines": {"_count": 1, "began": {"_count": 1}}, "dots": {"_count": 1, "moving": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "figure": {"_count": 1, "had": {"_count": 1}}, "self": {"_count": 1, "appeared": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "wrote": {"_count": 1, "Dear": {"_count": 1}}, "then": {"_count": 1, "strolled": {"_count": 1}}, "smashed": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 2, "his": {"_count": 1}, "with": {"_count": 1}}, "Harry": {"_count": 1, "jumped": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "pellet": {"_count": 3, "at": {"_count": 1}, "from": {"_count": 1}, "whizzed": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "reading": {"_count": 1, "INSPECTED": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "had": {"_count": 1, "run": {"_count": 1}}, "has": {"_count": 1, "grown": {"_count": 1}}, "pouring": {"_count": 1, "like": {"_count": 1}}, "somewhere": {"_count": 1, "between": {"_count": 1}}, "into": {"_count": 1, "these": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}}, "stamp": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "out": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 2}, "Rons": {"_count": 1}, "her": {"_count": 1}}}, "Turning": {"_count": 10, "the": {"_count": 1, "envelope": {"_count": 1}}, "Pettigrew": {"_count": 1, "in": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "southwest": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 3, "Fred": {"_count": 1}, "Hermione": {"_count": 1}, "page": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "horned": {"_count": 1}}}, "trembling": {"_count": 103, "Harry": {"_count": 1, "saw": {"_count": 1}}, "fingers": {"_count": 1, "": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 26}}, "into": {"_count": 1, "armchairs": {"_count": 1}}, "all": {"_count": 3, "over": {"_count": 3}}, "under": {"_count": 2, "a": {"_count": 2}}, "hand": {"_count": 5, "": {"_count": 2}, "and": {"_count": 3}}, "as": {"_count": 1, "he": {"_count": 1}}, "she": {"_count": 1, "shook": {"_count": 1}}, "he": {"_count": 1, "pulled": {"_count": 1}}, "slightly": {"_count": 7, "he": {"_count": 2}, "Rita": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "and": {"_count": 3, "in": {"_count": 1}, "ashenfaced": {"_count": 1}, "as": {"_count": 1}}, "rat": {"_count": 1, "back": {"_count": 1}}, "hands": {"_count": 7, "": {"_count": 2}, "and": {"_count": 2}, "clasped": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "from": {"_count": 7, "head": {"_count": 6}, "his": {"_count": 1}}, "wouldbe": {"_count": 1, "calm": {"_count": 1}}, "uncontrollably": {"_count": 2, "and": {"_count": 1}, "fumbling": {"_count": 1}}, "fingertips": {"_count": 1, "stretched": {"_count": 1}}, "with": {"_count": 5, "rage": {"_count": 1}, "fury": {"_count": 1}, "anger": {"_count": 1}, "grief": {"_count": 1}, "the": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "her": {"_count": 1, "hands": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "ominously": {"_count": 1, "on": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "upon": {"_count": 1, "her": {"_count": 1}}, "violently": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "the": {"_count": 1, "man": {"_count": 1}}, "Umbridge": {"_count": 1, "gave": {"_count": 1}}, "so": {"_count": 2, "badly": {"_count": 1}, "violently": {"_count": 1}}, "to": {"_count": 1, "its": {"_count": 1}}, "at": {"_count": 1, "what": {"_count": 1}}, "lips": {"_count": 1, "": {"_count": 1}}, "second": {"_count": 1, "he": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "passages": {"_count": 1, "his": {"_count": 1}}, "legs": {"_count": 1, "and": {"_count": 1}}, "beneath": {"_count": 1, "him": {"_count": 1}}}, "wax": {"_count": 7, "seal": {"_count": 1, "bearing": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "and": {"_count": 1, "before": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "hanging": {"_count": 1, "in": {"_count": 1}}}, "seal": {"_count": 6, "bearing": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "Gryffindors": {"_count": 1}}, "my": {"_count": 1, "office": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "exits": {"_count": 1}}, "all": {"_count": 1, "exits": {"_count": 1}}}, "bearing": {"_count": 45, "a": {"_count": 12, "coat": {"_count": 1}, "lantern": {"_count": 1}, "tray": {"_count": 2}, "large": {"_count": 1}, "muddy": {"_count": 1}, "sodden": {"_count": 1}, "long": {"_count": 1}, "solitary": {"_count": 1}, "dusty": {"_count": 1}, "highly": {"_count": 1}, "small": {"_count": 1}}, "down": {"_count": 8, "on": {"_count": 2}, "upon": {"_count": 6}}, "him": {"_count": 1, "toward": {"_count": 1}}, "the": {"_count": 11, "message": {"_count": 1}, "Hogwarts": {"_count": 1}, "same": {"_count": 1}, "words": {"_count": 1}, "crossed": {"_count": 1}, "Black": {"_count": 1}, "legend": {"_count": 2}, "lightningshaped": {"_count": 1}, "boxes": {"_count": 1}, "marks": {"_count": 1}}, "its": {"_count": 1, "OUT": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "his": {"_count": 1, "trunk": {"_count": 1}}, "sums": {"_count": 1, "and": {"_count": 1}}, "my": {"_count": 1, "appearance": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "demeanor": {"_count": 1}}, "silver": {"_count": 1, "trays": {"_count": 1}}, "news": {"_count": 1, "of": {"_count": 1}}, "Lilys": {"_count": 1, "signature": {"_count": 1}}}, "lion": {"_count": 12, "an": {"_count": 1, "eagle": {"_count": 1}}, "underneath": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 1, "its": {"_count": 1}}, "knitted": {"_count": 1, "on": {"_count": 1}}, "upon": {"_count": 1, "them": {"_count": 1}}, "for": {"_count": 1, "Gryffindor": {"_count": 1}}, "eagle": {"_count": 1, "badger": {"_count": 1}}, "great": {"_count": 1, "clawed": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "hat": {"_count": 1, "roaring": {"_count": 1}}, "emblazoned": {"_count": 1, "on": {"_count": 1}}}, "eagle": {"_count": 20, "a": {"_count": 1, "badger": {"_count": 1}}, "owl": {"_count": 4, "was": {"_count": 1}, "had": {"_count": 1}, "flew": {"_count": 1}, "soaring": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "for": {"_count": 1, "Ravenclaw": {"_count": 1}}, "badger": {"_count": 1, "and": {"_count": 1}}, "Buckbeaks": {"_count": 1, "fierce": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "flapping": {"_count": 1, "its": {"_count": 1}}, "They": {"_count": 1, "directed": {"_count": 1}}, "of": {"_count": 1, "Ravenclaw": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "opened": {"_count": 1, "but": {"_count": 1}}, "door": {"_count": 2, "knocker": {"_count": 2}}}, "badger": {"_count": 10, "and": {"_count": 2, "a": {"_count": 1}, "snake": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "Hufflepuff": {"_count": 1}}, "him": {"_count": 2, "to": {"_count": 1}, "about": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "murmured": {"_count": 1, "Voldemort": {"_count": 1}}, "engraved": {"_count": 1, "on": {"_count": 1}}, "of": {"_count": 1, "Hufflepuff": {"_count": 1}}}, "surrounding": {"_count": 57, "a": {"_count": 1, "large": {"_count": 1}}, "them": {"_count": 8, "": {"_count": 5}, "were": {"_count": 1}, "in": {"_count": 1}, "not": {"_count": 1}}, "crowd": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "the": {"_count": 5, "boy": {"_count": 1}, "field": {"_count": 1}, "castle": {"_count": 1}, "forthcoming": {"_count": 1}, "Horcrux": {"_count": 1}}, "elves": {"_count": 2, "pressed": {"_count": 1}, "and": {"_count": 1}}, "trees": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 1}, "the": {"_count": 1}}, "seats": {"_count": 1, "smiled": {"_count": 1}}, "benches": {"_count": 1, "": {"_count": 1}}, "streets": {"_count": 1, "": {"_count": 1}}, "roads": {"_count": 1, "were": {"_count": 1}}, "Lupin": {"_count": 1, "they": {"_count": 1}}, "houses": {"_count": 2, "were": {"_count": 1}, "and": {"_count": 1}}, "air": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "It": {"_count": 1}}, "chatter": {"_count": 1, "": {"_count": 1}}, "walls": {"_count": 2, "broke": {"_count": 1}, "jerked": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "watchers": {"_count": 1, "laughed": {"_count": 1}}, "him": {"_count": 1, "until": {"_count": 1}}, "area": {"_count": 2, "was": {"_count": 1}, "that": {"_count": 1}}, "circle": {"_count": 1, "shifted": {"_count": 1}}, "pool": {"_count": 1, "": {"_count": 1}}, "wall": {"_count": 1, "the": {"_count": 1}}, "stone": {"_count": 1, "benches": {"_count": 1}}, "mist": {"_count": 1, "stole": {"_count": 1}}, "potions": {"_count": 1, "seemed": {"_count": 1}}, "Inferi": {"_count": 1, "but": {"_count": 1}}, "countryside": {"_count": 1, "": {"_count": 1}}, "silence": {"_count": 1, "was": {"_count": 1}}, "woods": {"_count": 1, "were": {"_count": 1}}, "darkness": {"_count": 2, "to": {"_count": 1}, "thinking": {"_count": 1}}, "goblins": {"_count": 1, "brandishing": {"_count": 1}}, "mountains": {"_count": 1, "": {"_count": 1}}, "battle": {"_count": 1, "were": {"_count": 1}}, "clamor": {"_count": 1, "his": {"_count": 1}}}, "Hurry": {"_count": 19, "up": {"_count": 13, "boy": {"_count": 2}, "": {"_count": 2}, "I": {"_count": 1}, "Ive": {"_count": 1}, "Remus": {"_count": 1}, "she": {"_count": 1}, "now": {"_count": 1}, "you": {"_count": 2}, "Hokey": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "vont": {"_count": 1, "you": {"_count": 1}}, "The": {"_count": 1, "whole": {"_count": 1}}, "now": {"_count": 1, "weve": {"_count": 1}}, "Filch": {"_count": 1, "hurry": {"_count": 1}}}, "doing": {"_count": 509, "checking": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}, "it": {"_count": 50, "": {"_count": 20}, "wrong": {"_count": 1}, "that": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 2}, "because": {"_count": 1}, "so": {"_count": 1}, "sir": {"_count": 1}, "said": {"_count": 2}, "\u2018Tm": {"_count": 1}, "before": {"_count": 2}, "was": {"_count": 1}, "looked": {"_count": 1}, "didnt": {"_count": 1}, "all": {"_count": 1}, "down": {"_count": 1}, "there": {"_count": 1}, "for": {"_count": 1}, "Im": {"_count": 2}, "Potter": {"_count": 1}, "tomorrow": {"_count": 1}, "remember": {"_count": 1}, "Ive": {"_count": 1}, "given": {"_count": 1}, "round": {"_count": 1}, "sooner": {"_count": 1}, "why": {"_count": 1}}, "their": {"_count": 5, "shopping": {"_count": 1}, "jobs": {"_count": 1}, "best": {"_count": 2}, "homework": {"_count": 1}}, "this": {"_count": 12, "on": {"_count": 1}, "": {"_count": 2}, "hed": {"_count": 1}, "against": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}, "by": {"_count": 1}, "he": {"_count": 1}, "quickly": {"_count": 1}, "was": {"_count": 1}, "evening": {"_count": 1}}, "he": {"_count": 6, "looked": {"_count": 1}, "made": {"_count": 1}, "started": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "magic": {"_count": 6, "": {"_count": 2}, "in": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "spying": {"_count": 1}}, "something": {"_count": 14, "for": {"_count": 2}, "jinxing": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}, "very": {"_count": 1}, "dangerous": {"_count": 1}, "so": {"_count": 1}, "sensible": {"_count": 1}, "constructive": {"_count": 1}, "illegal": {"_count": 1}, "to": {"_count": 1}, "said": {"_count": 1}}, "here": {"_count": 31, "": {"_count": 22}, "Sirius": {"_count": 1}, "Potter": {"_count": 1}, "Kreacher": {"_count": 1}, "Arthur": {"_count": 1}, "anyway": {"_count": 2}, "then": {"_count": 1}, "forming": {"_count": 1}, "he": {"_count": 1}}, "keeping": {"_count": 1, "a": {"_count": 1}}, "us": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 102, "?": {"_count": 62}, ".": {"_count": 35}, "!": {"_count": 5}}, "the": {"_count": 14, "commentary": {"_count": 1}, "attacks": {"_count": 1}, "crossword": {"_count": 1}, "incantation": {"_count": 1}, "task": {"_count": 1}, "drawing": {"_count": 1}, "night": {"_count": 1}, "right": {"_count": 2}, "spell": {"_count": 1}, "very": {"_count": 1}, "work": {"_count": 1}, "same": {"_count": 1}, "doors": {"_count": 1}}, "as": {"_count": 4, "they": {"_count": 1}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "random": {"_count": 1}}, "Hagrid": {"_count": 1, "mumbled": {"_count": 1}}, "in": {"_count": 17, "the": {"_count": 3}, "here": {"_count": 5}, "Hogsmeade": {"_count": 1}, "Little": {"_count": 1}, "a": {"_count": 2}, "my": {"_count": 1}, "our": {"_count": 1}, "which": {"_count": 1}, "there": {"_count": 1}, "exchange": {"_count": 1}}, "Shut": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 8, "gamekeeping": {"_count": 1}, "best": {"_count": 1}, "own": {"_count": 1}, "bidding": {"_count": 1}, "utmost": {"_count": 1}, "dirty": {"_count": 1}, "shopping": {"_count": 1}, "usual": {"_count": 1}}, "inside": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "so": {"_count": 11, "I": {"_count": 1}, "required": {"_count": 1}, "": {"_count": 2}, "she": {"_count": 1}, "or": {"_count": 1}, "after": {"_count": 1}, "Kreacher": {"_count": 1}, "he": {"_count": 1}, "without": {"_count": 1}, "something": {"_count": 1}}, "was": {"_count": 7, "to": {"_count": 2}, "spending": {"_count": 1}, "strolling": {"_count": 1}, "in": {"_count": 1}, "right": {"_count": 1}, "sitting": {"_count": 1}}, "a": {"_count": 15, "curse": {"_count": 1}, "kind": {"_count": 3}, "replay": {"_count": 1}, "really": {"_count": 1}, "small": {"_count": 1}, "very": {"_count": 1}, "detention": {"_count": 1}, "day": {"_count": 1}, "quiz": {"_count": 1}, "cruel": {"_count": 1}, "wonderful": {"_count": 1}, "bit": {"_count": 1}, "bad": {"_count": 1}}, "very": {"_count": 2, "well": {"_count": 2}}, "you": {"_count": 2, "know": {"_count": 1}, "awful": {"_count": 1}}, "down": {"_count": 6, "there": {"_count": 1}, "here": {"_count": 5}}, "Ron": {"_count": 1, "accidentally": {"_count": 1}}, "Rubbish": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 2, "": {"_count": 1}, "Carrow": {"_count": 1}}, "homework": {"_count": 1, "or": {"_count": 1}}, "almost": {"_count": 1, "nothing": {"_count": 1}}, "all": {"_count": 9, "it": {"_count": 1}, "we": {"_count": 2}, "right": {"_count": 3}, "the": {"_count": 1}, "these": {"_count": 1}, "he": {"_count": 1}}, "some": {"_count": 6, "serious": {"_count": 1}, "thinking": {"_count": 1}, "very": {"_count": 1}, "lines": {"_count": 1}, "of": {"_count": 1}, "pretty": {"_count": 1}}, "wandering": {"_count": 1, "around": {"_count": 1}}, "my": {"_count": 3, "duty": {"_count": 1}, "Who": {"_count": 1}, "shopping": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 6, "first": {"_count": 1}, "the": {"_count": 2}, "any": {"_count": 1}, "pres": {"_count": 1}, "night": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 2}}, "that": {"_count": 9, "he": {"_count": 2}, "": {"_count": 4}, "for": {"_count": 1}, "needed": {"_count": 1}, "I": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "me": {"_count": 1, "a": {"_count": 1}}, "anything": {"_count": 12, "untrustworthy": {"_count": 1}, "stupid": {"_count": 2}, "else": {"_count": 1}, "over": {"_count": 1}, "": {"_count": 1}, "wrong": {"_count": 2}, "new": {"_count": 1}, "you": {"_count": 1}, "if": {"_count": 1}, "out": {"_count": 1}}, "with": {"_count": 7, "Professor": {"_count": 1}, "a": {"_count": 2}, "us": {"_count": 1}, "them": {"_count": 1}, "all": {"_count": 1}, "Potter": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "spirited": {"_count": 1, "imitations": {"_count": 1}}, "dementor": {"_count": 1, "imitations": {"_count": 1}}, "because": {"_count": 2, "his": {"_count": 1}, "she": {"_count": 1}}, "nothing": {"_count": 4, "while": {"_count": 1}, "": {"_count": 1}, "wrong": {"_count": 1}, "nothing": {"_count": 1}}, "and": {"_count": 6, "tore": {"_count": 1}, "leave": {"_count": 1}, "in": {"_count": 1}, "if": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 4, "him": {"_count": 1}, "get": {"_count": 1}, "stop": {"_count": 1}, "that": {"_count": 1}}, "Harry": {"_count": 6, "had": {"_count": 1}, "": {"_count": 1}, "pulled": {"_count": 2}, "sprang": {"_count": 1}, "forced": {"_count": 1}}, "several": {"_count": 1, "lessons": {"_count": 1}}, "her": {"_count": 2, "shopping": {"_count": 1}, "best": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 1}, "messing": {"_count": 1}, "Harry": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "star": {"_count": 1, "charts": {"_count": 1}}, "without": {"_count": 2, "Winky": {"_count": 1}, "seeing": {"_count": 1}}, "an": {"_count": 2, "extremely": {"_count": 1}, "upright": {"_count": 1}}, "annoying": {"_count": 1, "senior": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "sneaking": {"_count": 1, "into": {"_count": 1}}, "not": {"_count": 1, "concentrating": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "housework": {"_count": 1, "for": {"_count": 1}}, "if": {"_count": 4, "you": {"_count": 1}, "theyre": {"_count": 1}, "youre": {"_count": 1}, "not": {"_count": 1}}, "really": {"_count": 1, "well": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "under": {"_count": 1, "our": {"_count": 1}}, "floating": {"_count": 1, "around": {"_count": 1}}, "odd": {"_count": 1, "things": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 2}, "hours": {"_count": 1}}, "said": {"_count": 5, "Sirius": {"_count": 2}, "Harry": {"_count": 2}, "Hermione": {"_count": 1}}, "our": {"_count": 2, "best": {"_count": 1}, "tests": {"_count": 1}}, "everything": {"_count": 2, "we": {"_count": 1}, "he": {"_count": 1}}, "back": {"_count": 1, "here": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "exactly": {"_count": 2, "what": {"_count": 1}, "the": {"_count": 1}}, "other": {"_count": 1, "stuff": {"_count": 1}}, "him": {"_count": 2, "any": {"_count": 1}, "good": {"_count": 1}}, "forming": {"_count": 1, "his": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "STOP": {"_count": 1, "LAUGHING": {"_count": 1}}, "much": {"_count": 1, "better": {"_count": 1}}, "jinxes": {"_count": 1, "in": {"_count": 1}}, "Snapes": {"_count": 1, "punishment": {"_count": 1}}, "what": {"_count": 6, "": {"_count": 1}, "it": {"_count": 1}, "Barty": {"_count": 1}, "he": {"_count": 2}, "are": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "until": {"_count": 1, "tomorrow": {"_count": 1}}, "autographs": {"_count": 1, "": {"_count": 1}}, "least": {"_count": 1, "of": {"_count": 1}}, "wouldnt": {"_count": 1, "he": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "eight": {"_count": 1, "said": {"_count": 1}}, "them": {"_count": 1, "once": {"_count": 1}}, "I": {"_count": 2, "would": {"_count": 2}}, "there": {"_count": 2, "": {"_count": 1}, "He": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "stupid": {"_count": 1, "things": {"_count": 1}}, "things": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "prefect": {"_count": 1, "duty": {"_count": 1}}, "detention": {"_count": 1, "with": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "work": {"_count": 1}}, "Crabbe": {"_count": 1, "you": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "precisely": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "orders": {"_count": 1}}, "does": {"_count": 1, "he": {"_count": 1}}, "whatever": {"_count": 1, "youre": {"_count": 1}}, "Minister": {"_count": 1, "shut": {"_count": 1}}, "trust": {"_count": 1, "me": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "My": {"_count": 1, "pocket": {"_count": 1}}, "underground": {"_count": 1, "stuff": {"_count": 1}}, "will": {"_count": 1, "benefit": {"_count": 1}}, "You": {"_count": 1, "interrupted": {"_count": 1}}}, "checking": {"_count": 66, "for": {"_count": 6, "letter": {"_count": 1}, "eavesdroppers": {"_count": 1}, "scratches": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "signs": {"_count": 1}}, "the": {"_count": 12, "boats": {"_count": 1}, "compass": {"_count": 1}, "price": {"_count": 1}, "map": {"_count": 1}, "tightness": {"_count": 1}, "contents": {"_count": 1}, "Marauders": {"_count": 4}, "clasp": {"_count": 1}, "lastminute": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 11, "watch": {"_count": 8}, "pulse": {"_count": 1}, "pockets": {"_count": 1}, "cauldron": {"_count": 1}}, "that": {"_count": 7, "the": {"_count": 1}, "Harrys": {"_count": 1}, "Fred": {"_count": 1}, "nobodys": {"_count": 1}, "": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}}, "their": {"_count": 2, "watches": {"_count": 2}}, "her": {"_count": 8, "purse": {"_count": 1}, "watch": {"_count": 6}, "wristwatch": {"_count": 1}}, "off": {"_count": 2, "names": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "doublechecking": {"_count": 1}, "rechecking": {"_count": 1}}, "a": {"_count": 1, "sheaf": {"_count": 1}}, "your": {"_count": 1, "wands": {"_count": 1}}, "Rons": {"_count": 1, "watch": {"_count": 1}}, "every": {"_count": 3, "day": {"_count": 1}, "hour": {"_count": 1}, "few": {"_count": 1}}, "how": {"_count": 1, "it": {"_count": 1}}, "what": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "up": {"_count": 1, "on": {"_count": 1}}, "carefully": {"_count": 1, "that": {"_count": 1}}, "whether": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "herself": {"_count": 1, "in": {"_count": 1}}}, "bombs": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "joke": {"_count": 74, "": {"_count": 18, ".": {"_count": 12}, "!": {"_count": 2}, "?": {"_count": 4}}, "that": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 2, "Flitwick": {"_count": 1}, "it": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 4, "I": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "you": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 2, "me": {"_count": 1}, "the": {"_count": 1}}, "succeeded": {"_count": 1, "he": {"_count": 1}}, "shop": {"_count": 18, "Indeed": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 5}, "idea": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}, "business": {"_count": 1}, "and": {"_count": 1}, "carefully": {"_count": 1}, "merchandise": {"_count": 1}, "eh": {"_count": 1}, "as": {"_count": 1}, "yet": {"_count": 1}, "run": {"_count": 1}}, "oh": {"_count": 1, "no": {"_count": 1}}, "about": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "Meester": {"_count": 1, "Bagman": {"_count": 1}}, "really": {"_count": 1, "an": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "who": {"_count": 1, "tells": {"_count": 1}}, "said": {"_count": 2, "Kreacher": {"_count": 1}, "Ted": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "thought": {"_count": 1}}, "in": {"_count": 1, "Ravenclaw": {"_count": 1}}, "without": {"_count": 1, "too": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "or": {"_count": 1, "trap": {"_count": 1}}, "making": {"_count": 1, "sure": {"_count": 1}}, "round": {"_count": 1, "here": {"_count": 1}}, "cauldron": {"_count": 1, "Mr": {"_count": 1}}, "items": {"_count": 1, "bought": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "undoubtedly": {"_count": 1, "about": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 1, "you": {"_count": 1}}}, "handed": {"_count": 101, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "him": {"_count": 12, "an": {"_count": 1}, "a": {"_count": 4}, "looking": {"_count": 1}, "and": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "back": {"_count": 1}, "uniquely": {"_count": 1}, "to": {"_count": 1}}, "the": {"_count": 7, "note": {"_count": 1}, "flute": {"_count": 1}, "hairpin": {"_count": 1}, "clipping": {"_count": 1}, "socks": {"_count": 1}, "slightly": {"_count": 1}, "locket": {"_count": 1}}, "Harry": {"_count": 7, "a": {"_count": 4}, "his": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "out": {"_count": 5, "to": {"_count": 1}, "the": {"_count": 1}, "before": {"_count": 1}, "seemed": {"_count": 1}, "of": {"_count": 1}}, "it": {"_count": 17, "back": {"_count": 4}, "to": {"_count": 7}, "in": {"_count": 1}, "over": {"_count": 4}, "now": {"_count": 1}}, "in": {"_count": 4, "on": {"_count": 2}, "to": {"_count": 1}, "next": {"_count": 1}}, "them": {"_count": 4, "to": {"_count": 1}, "around": {"_count": 1}, "mutely": {"_count": 1}, "out": {"_count": 1}}, "back": {"_count": 4, "to": {"_count": 3}, "Harrys": {"_count": 1}}, "over": {"_count": 12, "the": {"_count": 4}, "his": {"_count": 4}, "fifteen": {"_count": 1}, "their": {"_count": 2}, "her": {"_count": 1}}, "Bagman": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 4, "Cornelius": {"_count": 1}, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}, "his": {"_count": 1}}, "his": {"_count": 1, "father": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "Moody": {"_count": 1, "the": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "Dumbledore": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 3, "a": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "Stan": {"_count": 1, "eleven": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "me": {"_count": 1, "that": {"_count": 1}}, "Riddle": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "over": {"_count": 1}}, "Voldemort": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "over": {"_count": 1}}}, "yellow": {"_count": 67, "envelope": {"_count": 1, "": {"_count": 1}}, "yesterday": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 2}}, "eyes": {"_count": 17, "like": {"_count": 1}, "": {"_count": 4}, "had": {"_count": 1}, "on": {"_count": 2}, "fixed": {"_count": 2}, "still": {"_count": 1}, "glinting": {"_count": 1}, "upon": {"_count": 2}, "glowed": {"_count": 1}, "followed": {"_count": 1}, "and": {"_count": 1}}, "F": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 7, "there": {"_count": 1}, "black": {"_count": 1}, "Harry": {"_count": 1}, "had": {"_count": 1}, "some": {"_count": 1}, "purple": {"_count": 1}, "the": {"_count": 1}}, "were": {"_count": 1, "standing": {"_count": 1}}, "robes": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "shapes": {"_count": 1, "with": {"_count": 1}}, "cabbages": {"_count": 1, "and": {"_count": 1}}, "teeth": {"_count": 5, "were": {"_count": 1}, "bared": {"_count": 1}, "the": {"_count": 1}, "glimmering": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "yarn": {"_count": 1, "": {"_count": 1}}, "finger": {"_count": 1, "at": {"_count": 1}}, "beneath": {"_count": 1, "its": {"_count": 1}}, "stars": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "were": {"_count": 1}}, "boils": {"_count": 1, "": {"_count": 1}}, "liquid": {"_count": 1, "toward": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "gas": {"_count": 1, "wafted": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}, "letters": {"_count": 1, "WHY": {"_count": 1}}, "paste": {"_count": 1, "": {"_count": 1}}, "light": {"_count": 1, "was": {"_count": 1}}, "pus": {"_count": 1, "and": {"_count": 1}}, "nailed": {"_count": 1, "finger": {"_count": 1}}, "birds": {"_count": 2, "were": {"_count": 1}, "circling": {"_count": 1}}, "contents": {"_count": 1, "of": {"_count": 1}}, "fingernail": {"_count": 1, "and": {"_count": 1}}, "newspaper": {"_count": 1, "cuttings": {"_count": 1}}, "nails": {"_count": 1, "scratching": {"_count": 1}}, "underbelly": {"_count": 1, "rippling": {"_count": 1}}, "objects": {"_count": 1, "Ron": {"_count": 1}}, "halfbrick": {"_count": 1, "sized": {"_count": 1}}}, "ripped": {"_count": 65, "open": {"_count": 7, "the": {"_count": 5}, "Hermiones": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "off": {"_count": 12, "once": {"_count": 1}, "the": {"_count": 6}, "entirely": {"_count": 1}, "": {"_count": 2}, "his": {"_count": 1}, "lampposts": {"_count": 1}}, "itself": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}, "bag": {"_count": 2, "desperate": {"_count": 1}, "dangling": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "the": {"_count": 3, "sock": {"_count": 1}, "parcel": {"_count": 1}, "top": {"_count": 1}}, "back": {"_count": 4, "the": {"_count": 3}, "": {"_count": 1}}, "canvas": {"_count": 1, "had": {"_count": 1}}, "him": {"_count": 1, "limb": {"_count": 1}}, "apart": {"_count": 4, "the": {"_count": 1}, "by": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 1}}, "his": {"_count": 3, "pajamas": {"_count": 1}, "arm": {"_count": 1}, "robes": {"_count": 1}}, "them": {"_count": 2, "back": {"_count": 1}, "away": {"_count": 1}}, "and": {"_count": 3, "torn": {"_count": 2}, "bloody": {"_count": 1}}, "from": {"_count": 4, "my": {"_count": 2}, "the": {"_count": 1}, "his": {"_count": 1}}, "where": {"_count": 1, "Wormtails": {"_count": 1}}, "it": {"_count": 3, "open": {"_count": 2}, "off": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 2, "at": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 2, "several": {"_count": 1}, "two": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "Harrys": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "clambered": {"_count": 1, "the": {"_count": 1}}}, "snorted": {"_count": 32, "in": {"_count": 1, "disgust": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "with": {"_count": 3, "laughter": {"_count": 3}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "into": {"_count": 3, "their": {"_count": 1}, "his": {"_count": 2}}, "Ron": {"_count": 2, "": {"_count": 2}}, "derisively": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "threw": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "loudly": {"_count": 1}}, "disbelievingly": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 2, "Hermy": {"_count": 1}, "he": {"_count": 1}}, "loudly": {"_count": 1, "but": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "kneeling": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}}, "disgust": {"_count": 23, "and": {"_count": 5, "flipped": {"_count": 1}, "stalked": {"_count": 1}, "returned": {"_count": 1}, "incredulity": {"_count": 1}, "perhaps": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "Percy": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "staring": {"_count": 1, "into": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "having": {"_count": 1, "sat": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 1, "answer": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 2, "a": {"_count": 1}, "said": {"_count": 1}}}, "flipped": {"_count": 12, "over": {"_count": 6, "the": {"_count": 1}, "and": {"_count": 4}, "a": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "her": {"_count": 1, "paper": {"_count": 1}}, "the": {"_count": 1, "right": {"_count": 1}}, "onto": {"_count": 1, "its": {"_count": 1}}, "Mrs": {"_count": 1, "Roberts": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}}, "ill": {"_count": 86, "he": {"_count": 3, "informed": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "but": {"_count": 1, "happy": {"_count": 1}}, "said": {"_count": 4, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "Lily": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "of": {"_count": 5, "his": {"_count": 2}, "my": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 27, "!": {"_count": 2}, "?": {"_count": 9}, ".": {"_count": 16}}, "and": {"_count": 5, "exhausted": {"_count": 1}, "that": {"_count": 1}, "do": {"_count": 1}, "there": {"_count": 1}, "my": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "assorted": {"_count": 1, "feet": {"_count": 1}}, "to": {"_count": 3, "teach": {"_count": 1}, "go": {"_count": 1}, "talk": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "again": {"_count": 1, "said": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "disguised": {"_count": 2, "excitement": {"_count": 1}, "impatience": {"_count": 1}}, "if": {"_count": 2, "he": {"_count": 2}}, "last": {"_count": 1, "time": {"_count": 1}}, "wishers": {"_count": 1, "sent": {"_count": 1}}, "or": {"_count": 2, "something": {"_count": 1}, "was": {"_count": 1}}, "adapted": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "hes": {"_count": 1, "injured": {"_count": 1}}, "Sirius": {"_count": 1, "and": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "person": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "whispered": {"_count": 1}}, "mind": {"_count": 1, "just": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "usage": {"_count": 1, "that": {"_count": 1}}, "weve": {"_count": 1, "already": {"_count": 1}}, "omen": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "spattergroit": {"_count": 1}}, "grace": {"_count": 1, "that": {"_count": 1}}, "Ministry": {"_count": 1, "inspectors": {"_count": 1}}, "she": {"_count": 1, "finished": {"_count": 1}}, "health": {"_count": 2, "": {"_count": 1}, "what": {"_count": 1}}, "tired": {"_count": 1, "Im": {"_count": 1}}, "fatally": {"_count": 1, "ill": {"_count": 1}}, "Every": {"_count": 1, "month": {"_count": 1}}}, "informed": {"_count": 30, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "of": {"_count": 2, "this": {"_count": 1}, "their": {"_count": 1}}, "me": {"_count": 4, "that": {"_count": 3}, "so": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "her": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 2, "as": {"_count": 1}, "that": {"_count": 1}}, "Harry": {"_count": 3, "and": {"_count": 1}, "through": {"_count": 1}, "Ron": {"_count": 1}}, "him": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 4, "roaring": {"_count": 1}, "Muggle": {"_count": 1}, "empty": {"_count": 1}, "Order": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "hed": {"_count": 1}}, "a": {"_count": 1, "superior": {"_count": 1}}, "that": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "any": {"_count": 1}}, "by": {"_count": 1, "an": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}}, "Ate": {"_count": 2, "a": {"_count": 2, "funny": {"_count": 1}, "pound": {"_count": 1}}}, "whelk": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Dad": {"_count": 121, "": {"_count": 19, "!": {"_count": 6}, "?": {"_count": 11}, ".": {"_count": 2}}, "Harrys": {"_count": 1, "got": {"_count": 1}}, "were": {"_count": 2, "in": {"_count": 1}, "going": {"_count": 1}}, "told": {"_count": 2, "you": {"_count": 1}, "me": {"_count": 1}}, "came": {"_count": 1, "home": {"_count": 1}}, "talking": {"_count": 2, "about": {"_count": 1}, "on": {"_count": 1}}, "reckons": {"_count": 2, "he": {"_count": 1}, "Fudge": {"_count": 1}}, "bought": {"_count": 1, "Percy": {"_count": 1}}, "was": {"_count": 6, "working": {"_count": 1}, "going": {"_count": 2}, "dead": {"_count": 1}, "an": {"_count": 1}, "already": {"_count": 1}}, "are": {"_count": 2, "going": {"_count": 1}, "a": {"_count": 1}}, "cant": {"_count": 2, "get": {"_count": 1}, "help": {"_count": 1}}, "to": {"_count": 3, "get": {"_count": 1}, "be": {"_count": 1}, "send": {"_count": 1}}, "tomorrow": {"_count": 1, "and": {"_count": 1}}, "say": {"_count": 2, "": {"_count": 1}, "hello": {"_count": 1}}, "and": {"_count": 8, "he": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "then": {"_count": 1}, "Freds": {"_count": 1}, "Lupin": {"_count": 1}, "lift": {"_count": 1}}, "won": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 9, "Ron": {"_count": 1}, "Percy": {"_count": 1}, "Fred": {"_count": 1}, "Bill": {"_count": 1}, "Ginny": {"_count": 2}, "the": {"_count": 1}, "Dudley": {"_count": 1}, "everyone": {"_count": 1}}, "yourself": {"_count": 1, "this": {"_count": 1}}, "dropped": {"_count": 1, "me": {"_count": 1}}, "gave": {"_count": 1, "me": {"_count": 1}}, "had": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "would": {"_count": 2, "really": {"_count": 1}, "hurry": {"_count": 1}}, "might": {"_count": 1, "get": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "then": {"_count": 1, "Ill": {"_count": 1}}, "can": {"_count": 3, "usually": {"_count": 1}, "get": {"_count": 1}, "show": {"_count": 1}}, "reckon": {"_count": 1, "its": {"_count": 1}}, "maybe": {"_count": 1, "hell": {"_count": 1}}, "didnt": {"_count": 1, "make": {"_count": 1}}, "he": {"_count": 2, "muttered": {"_count": 1}, "knows": {"_count": 1}}, "couldnt": {"_count": 1, "afford": {"_count": 1}}, "why": {"_count": 1, "was": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "we": {"_count": 1, "met": {"_count": 1}}, "hadnt": {"_count": 1, "said": {"_count": 1}}, "collects": {"_count": 1, "plugs": {"_count": 1}}, "took": {"_count": 1, "me": {"_count": 1}}, "couldve": {"_count": 1, "got": {"_count": 1}}, "wont": {"_count": 1, "be": {"_count": 1}}, "raised": {"_count": 1, "me": {"_count": 1}}, "went": {"_count": 1, "": {"_count": 1}}, "gone": {"_count": 1, "an": {"_count": 1}}, "you": {"_count": 2, "had": {"_count": 1}, "know": {"_count": 1}}, "help": {"_count": 1, "me": {"_count": 1}}, "Ron": {"_count": 1, "told": {"_count": 1}}, "breaks": {"_count": 1, "whatever": {"_count": 1}}, "row": {"_count": 1, "with": {"_count": 1}}, "hed": {"_count": 1, "been": {"_count": 1}}, "wasnt": {"_count": 1, "said": {"_count": 1}}, "says": {"_count": 1, "Fudge": {"_count": 1}}, "at": {"_count": 1, "work": {"_count": 1}}, "just": {"_count": 1, "sent": {"_count": 1}}, "hurt": {"_count": 1, "Your": {"_count": 1}}, "is": {"_count": 3, "still": {"_count": 1}, "or": {"_count": 1}, "": {"_count": 1}}, "talk": {"_count": 1, "about": {"_count": 1}}, "found": {"_count": 1, "us": {"_count": 1}}, "as": {"_count": 1, "angry": {"_count": 1}}, "got": {"_count": 1, "me": {"_count": 1}}, "know": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "youre": {"_count": 1, "okay": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "always": {"_count": 3, "says": {"_count": 1}, "told": {"_count": 1}, "point": {"_count": 1}}, "Percy": {"_count": 1, "said": {"_count": 1}}}, "unfolding": {"_count": 4, "his": {"_count": 2, "letter": {"_count": 1}, "newspaper": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "piece": {"_count": 1}}}, "mine": {"_count": 74, "said": {"_count": 4, "Harry": {"_count": 2}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}}, "": {"_count": 32, ".": {"_count": 15}, "!": {"_count": 13}, "?": {"_count": 4}}, "bought": {"_count": 1, "him": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "who": {"_count": 2, "are": {"_count": 1}, "has": {"_count": 1}}, "beyond": {"_count": 1, "that": {"_count": 1}}, "The": {"_count": 1, "minutes": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "hes": {"_count": 1, "really": {"_count": 1}}, "too": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 1, "Zonkos": {"_count": 1}}, "mustve": {"_count": 1, "dropped": {"_count": 1}}, "of": {"_count": 1, "information": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "ears": {"_count": 1, "deceive": {"_count": 1}}, "have": {"_count": 2, "ruptured": {"_count": 1}, "anything": {"_count": 1}}, "breeds": {"_count": 1, "Abraxan": {"_count": 1}}, "and": {"_count": 3, "in": {"_count": 1}, "I": {"_count": 1}, "Disapparated": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "to": {"_count": 1, "come": {"_count": 1}}, "Horace": {"_count": 1, "Slughorn": {"_count": 1}}, "author": {"_count": 1, "of": {"_count": 1}}, "sorry": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 3, "chucked": {"_count": 1}, "dont": {"_count": 1}, "reckon": {"_count": 1}}, "before": {"_count": 1, "next": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "theyll": {"_count": 1, "see": {"_count": 1}}, "is": {"_count": 1, "Travers": {"_count": 1}}, "A": {"_count": 1, "new": {"_count": 1}}, "or": {"_count": 1, "Dumbledores": {"_count": 1}}}, "snatch": {"_count": 9, "it": {"_count": 1, "back": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "up": {"_count": 1, "something": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 2, "haunting": {"_count": 1}, "laughter": {"_count": 1}}, "a": {"_count": 2, "speeding": {"_count": 1}, "few": {"_count": 1}}, "the": {"_count": 1, "Snitch": {"_count": 1}}}, "Whod": {"_count": 6, "be": {"_count": 1, "writing": {"_count": 1}}, "want": {"_count": 4, "to": {"_count": 3}, "ter": {"_count": 1}}, "have": {"_count": 1, "thought": {"_count": 1}}}, "writing": {"_count": 89, "to": {"_count": 16, "you": {"_count": 2}, "me": {"_count": 4}, "both": {"_count": 1}, "the": {"_count": 2}, "all": {"_count": 1}, "Uncle": {"_count": 1}, "him": {"_count": 1}, "Sirius": {"_count": 1}, "eh": {"_count": 1}, "Mother": {"_count": 1}, "Dumbledore": {"_count": 1}}, "rude": {"_count": 1, "words": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "saw": {"_count": 1}}, "Rons": {"_count": 1, "untidy": {"_count": 1}}, "out": {"_count": 2, "Veronica": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 3}, "any": {"_count": 1}, "it": {"_count": 2}}, "as": {"_count": 1, "large": {"_count": 1}}, "becoming": {"_count": 1, "untidier": {"_count": 1}}, "in": {"_count": 3, "it": {"_count": 2}, "midair": {"_count": 1}}, "three": {"_count": 1, "shimmering": {"_count": 1}}, "back": {"_count": 2, "all": {"_count": 1}, "to": {"_count": 1}}, "about": {"_count": 4, "Wendelin": {"_count": 1}, "what": {"_count": 1}, "you": {"_count": 1}, "knowing": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 11}, "!": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "upon": {"_count": 2, "it": {"_count": 2}}, "was": {"_count": 3, "appearing": {"_count": 1}, "minuscule": {"_count": 1}, "written": {"_count": 1}}, "paper": {"_count": 1, "at": {"_count": 1}}, "kept": {"_count": 1, "dashing": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "something": {"_count": 1, "back": {"_count": 1}}, "weekly": {"_count": 1, "essays": {"_count": 1}}, "its": {"_count": 1, "blackmail": {"_count": 1}}, "anything": {"_count": 1, "at": {"_count": 1}}, "horrible": {"_count": 1, "lies": {"_count": 1}}, "for": {"_count": 2, "them": {"_count": 1}, "nothing": {"_count": 1}}, "desk": {"_count": 4, "in": {"_count": 2}, "": {"_count": 1}, "Moody": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "the": {"_count": 2, "words": {"_count": 1}, "novel": {"_count": 1}}, "because": {"_count": 1, "that": {"_count": 1}}, "her": {"_count": 2, "last": {"_count": 1}, "Arithmancy": {"_count": 1}}, "a": {"_count": 1, "very": {"_count": 1}}, "steadily": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "must": {"_count": 1}}, "now": {"_count": 1, "you": {"_count": 1}}, "swearwords": {"_count": 1, "in": {"_count": 1}}, "Harrys": {"_count": 1, "Herbology": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 2, "his": {"_count": 2}}, "aloud": {"_count": 1, "": {"_count": 1}}}, "sneered": {"_count": 43, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "": {"_count": 10, ".": {"_count": 10}}, "Dudley": {"_count": 2, "": {"_count": 2}}, "Malfoy": {"_count": 9, "": {"_count": 6}, "Crabbe": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}}, "and": {"_count": 1, "motioned": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "cold": {"_count": 1}}, "at": {"_count": 3, "and": {"_count": 1}, "me": {"_count": 1}, "for": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 4, "rolling": {"_count": 1}, "taking": {"_count": 1}, "": {"_count": 1}, "deflecting": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 1, "recovering": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "Gaunt": {"_count": 1, "and": {"_count": 1}}, "Riddle": {"_count": 1, "": {"_count": 1}}, "RiddleHarry": {"_count": 1, "while": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "Voldemort": {"_count": 1, "but": {"_count": 1}}}, "shaking": {"_count": 268, "the": {"_count": 10, "letter": {"_count": 1}, "Hogwarts": {"_count": 1}, "chains": {"_count": 1}, "sheets": {"_count": 1}, "rope": {"_count": 1}, "collecting": {"_count": 1}, "fist": {"_count": 1}, "bag": {"_count": 1}, "Clankers": {"_count": 1}, "door": {"_count": 1}}, "hands": {"_count": 14, "with": {"_count": 6}, "": {"_count": 3}, "all": {"_count": 2}, "as": {"_count": 1}, "The": {"_count": 1}, "by": {"_count": 1}}, "her": {"_count": 18, "head": {"_count": 13}, "": {"_count": 1}, "finger": {"_count": 1}, "magnificent": {"_count": 1}, "very": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 32, ".": {"_count": 31}, "!": {"_count": 1}}, "with": {"_count": 20, "laughter": {"_count": 2}, "grief": {"_count": 1}, "fright": {"_count": 1}, "silent": {"_count": 1}, "anger": {"_count": 3}, "suppressed": {"_count": 2}, "fury": {"_count": 2}, "rage": {"_count": 3}, "sobs": {"_count": 1}, "the": {"_count": 1}, "tears": {"_count": 1}, "shock": {"_count": 1}, "what": {"_count": 1}}, "and": {"_count": 7, "out": {"_count": 1}, "white": {"_count": 1}, "trying": {"_count": 1}, "vibrating": {"_count": 1}, "whimpering": {"_count": 1}, "rattling": {"_count": 1}, "looked": {"_count": 1}}, "their": {"_count": 7, "heads": {"_count": 6}, "greenhaired": {"_count": 1}}, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}, "his": {"_count": 58, "head": {"_count": 47}, "ugly": {"_count": 1}, "hair": {"_count": 1}, "hand": {"_count": 3}, "shaggy": {"_count": 1}, "face": {"_count": 1}, "great": {"_count": 1}, "quill": {"_count": 1}, "arms": {"_count": 1}, "brother": {"_count": 1}}, "started": {"_count": 1, "scrubbing": {"_count": 1}}, "it": {"_count": 3, "off": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}}, "hand": {"_count": 8, "eased": {"_count": 1}, "": {"_count": 3}, "inside": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 1}, "raised": {"_count": 1}}, "dust": {"_count": 1, "from": {"_count": 1}}, "Harry": {"_count": 4, "by": {"_count": 1}, "opened": {"_count": 1}, "unfurled": {"_count": 1}, "so": {"_count": 1}}, "slightly": {"_count": 7, "": {"_count": 4}, "but": {"_count": 1}, "out": {"_count": 1}, "very": {"_count": 1}}, "as": {"_count": 7, "the": {"_count": 1}, "he": {"_count": 2}, "uncontrollably": {"_count": 1}, "badly": {"_count": 1}, "were": {"_count": 1}, "Grawp": {"_count": 1}}, "voice": {"_count": 5, "": {"_count": 3}, "laying": {"_count": 1}, "spoke": {"_count": 1}}, "from": {"_count": 3, "head": {"_count": 3}}, "all": {"_count": 2, "over": {"_count": 2}}, "like": {"_count": 1, "mad": {"_count": 1}}, "in": {"_count": 6, "anger": {"_count": 1}, "Wormtails": {"_count": 1}, "her": {"_count": 2}, "every": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "finger": {"_count": 3, "at": {"_count": 2}, "pointing": {"_count": 1}}, "which": {"_count": 1, "abysmally": {"_count": 1}}, "not": {"_count": 1, "with": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "convulsively": {"_count": 1, "": {"_count": 1}}, "badly": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "now": {"_count": 2, "as": {"_count": 1}, "not": {"_count": 1}}, "madly": {"_count": 1, "now": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 2, "at": {"_count": 2}}, "Harrys": {"_count": 3, "hand": {"_count": 3}}, "uncontrollably": {"_count": 4, "": {"_count": 3}, "in": {"_count": 1}}, "feeling": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "your": {"_count": 2, "head": {"_count": 2}}, "but": {"_count": 2, "Luna": {"_count": 1}, "not": {"_count": 1}}, "back": {"_count": 5, "his": {"_count": 4}, "the": {"_count": 1}}, "so": {"_count": 4, "violently": {"_count": 1}, "much": {"_count": 1}, "badly": {"_count": 2}}, "Fudges": {"_count": 1, "hand": {"_count": 1}}, "a": {"_count": 1, "heavy": {"_count": 1}}, "shoulders": {"_count": 1, "": {"_count": 1}}, "fingers": {"_count": 1, "to": {"_count": 1}}, "Dumbledore": {"_count": 1, "no": {"_count": 1}}, "very": {"_count": 1, "badly": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "hard": {"_count": 1, "": {"_count": 1}}, "arm": {"_count": 1, "and": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}}, "glancing": {"_count": 68, "at": {"_count": 14, "it": {"_count": 1}, "the": {"_count": 5}, "Rons": {"_count": 1}, "him": {"_count": 2}, "his": {"_count": 1}, "them": {"_count": 1}, "Krums": {"_count": 1}, "two": {"_count": 1}, "Hermione": {"_count": 1}}, "up": {"_count": 5, "too": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 2}}, "around": {"_count": 14, "to": {"_count": 2}, "": {"_count": 4}, "them": {"_count": 1}, "at": {"_count": 4}, "as": {"_count": 1}, "quickly": {"_count": 1}, "nervously": {"_count": 1}}, "over": {"_count": 7, "saw": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 4}, "the": {"_count": 1}}, "nervously": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "back": {"_count": 4, "at": {"_count": 2}, "over": {"_count": 1}, "": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "to": {"_count": 1, "his": {"_count": 1}}, "down": {"_count": 4, "at": {"_count": 2}, "his": {"_count": 1}, "": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 4, "the": {"_count": 3}, "Madam": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "anxiously": {"_count": 1, "at": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "across": {"_count": 1, "at": {"_count": 1}}, "once": {"_count": 1, "at": {"_count": 1}}, "upward": {"_count": 1, "every": {"_count": 1}}, "repeatedly": {"_count": 1, "at": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}}, "faster": {"_count": 40, "than": {"_count": 17, "a": {"_count": 1}, "blinking": {"_count": 1}, "hed": {"_count": 1}, "Higgs": {"_count": 1}, "you": {"_count": 1}, "any": {"_count": 1}, "ever": {"_count": 4}, "usual": {"_count": 1}, "Neville": {"_count": 1}, "Harry": {"_count": 2}, "his": {"_count": 1}, "Severus": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 1, "plant": {"_count": 1}}, "so": {"_count": 1, "did": {"_count": 1}}, "and": {"_count": 6, "as": {"_count": 1}, "faster": {"_count": 3}, "soon": {"_count": 1}, "more": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "elbows": {"_count": 1, "tucked": {"_count": 1}}, "wild": {"_count": 1, "half": {"_count": 1}}, "but": {"_count": 1, "more": {"_count": 1}}, "around": {"_count": 1, "their": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 1, "waistlength": {"_count": 1}}, "his": {"_count": 1, "breath": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}}, "Within": {"_count": 16, "seconds": {"_count": 6, "it": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}, "Katies": {"_count": 1}, "Harry": {"_count": 1}}, "five": {"_count": 4, "minutes": {"_count": 4}}, "a": {"_count": 2, "minute": {"_count": 1}, "week": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "hours": {"_count": 1, "of": {"_count": 1}}, "minutes": {"_count": 1, "a": {"_count": 1}}, "two": {"_count": 1, "minutes": {"_count": 1}}}, "grayish": {"_count": 11, "white": {"_count": 2, "of": {"_count": 1}, "against": {"_count": 1}}, "slimylooking": {"_count": 1, "and": {"_count": 1}}, "shiny": {"_count": 1, "armor": {"_count": 1}}, "skin": {"_count": 1, "and": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "face": {"_count": 1, "now": {"_count": 1}}, "tunic": {"_count": 1, "": {"_count": 1}}, "tinge": {"_count": 2, "to": {"_count": 1}, "probably": {"_count": 1}}, "coffee": {"_count": 1, "": {"_count": 1}}}, "white": {"_count": 252, "of": {"_count": 1, "old": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "building": {"_count": 1, "that": {"_count": 1}}, "stone": {"_count": 2, "steps": {"_count": 1}, "that": {"_count": 1}}, "finger": {"_count": 3, "": {"_count": 2}, "touch": {"_count": 1}}, "was": {"_count": 3, "glinting": {"_count": 1}, "gleaming": {"_count": 1}, "wispy": {"_count": 1}}, "smoke": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 10, "look": {"_count": 1}, "now": {"_count": 1}, "was": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "seemed": {"_count": 1}, "appeared": {"_count": 1}, "and": {"_count": 2}}, "as": {"_count": 11, "his": {"_count": 2}, "a": {"_count": 2}, "marble": {"_count": 1}, "chalk": {"_count": 1}, "Fudge": {"_count": 1}, "though": {"_count": 2}, "ghosts": {"_count": 1}, "Dumbledore": {"_count": 1}}, "mice": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 28, "scared": {"_count": 1}, "the": {"_count": 1}, "strained": {"_count": 1}, "terrified": {"_count": 1}, "his": {"_count": 2}, "semitransparent": {"_count": 1}, "staring": {"_count": 2}, "spilled": {"_count": 1}, "somehow": {"_count": 1}, "gaunt": {"_count": 2}, "covered": {"_count": 1}, "longfingered": {"_count": 1}, "something": {"_count": 1}, "furious": {"_count": 1}, "opaque": {"_count": 1}, "transparent": {"_count": 1}, "trembling": {"_count": 1}, "writhing": {"_count": 1}, "shocked": {"_count": 1}, "gold": {"_count": 1}, "Harry": {"_count": 1}, "blind": {"_count": 1}, "so": {"_count": 1}, "strange": {"_count": 1}, "undamaged": {"_count": 1}}, "pieces": {"_count": 5, "": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 1}, "showed": {"_count": 1}, "as": {"_count": 1}}, "chessmen": {"_count": 1, "had": {"_count": 1}}, "pawn": {"_count": 1, "had": {"_count": 1}}, "queen": {"_count": 4, "smashed": {"_count": 1}, "turned": {"_count": 1}, "pounced": {"_count": 1}, "dragged": {"_count": 1}}, "king": {"_count": 1, "took": {"_count": 1}}, "with": {"_count": 5, "glaring": {"_count": 1}, "shock": {"_count": 1}, "frost": {"_count": 1}, "rage": {"_count": 1}, "dust": {"_count": 1}}, "linen": {"_count": 3, "sheets": {"_count": 1}, "orange": {"_count": 1}, "curtains": {"_count": 1}}, "flight": {"_count": 1, "of": {"_count": 1}}, "teeth": {"_count": 3, "at": {"_count": 1}, "gleaming": {"_count": 1}, "": {"_count": 1}}, "sun": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "edge": {"_count": 1, "of": {"_count": 1}}, "lips": {"_count": 1, "and": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}, "hair": {"_count": 11, "was": {"_count": 3}, "and": {"_count": 1}, "growing": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "made": {"_count": 1}, "sprouting": {"_count": 1}, "through": {"_count": 1}}, "rabbits": {"_count": 1, "he": {"_count": 1}}, "left": {"_count": 1, "another": {"_count": 1}}, "light": {"_count": 5, "and": {"_count": 2}, "as": {"_count": 1}, "all": {"_count": 1}, "flew": {"_count": 1}}, "hands": {"_count": 5, "clench": {"_count": 1}, "scrabbling": {"_count": 1}, "clutching": {"_count": 1}, "folded": {"_count": 1}, "empty": {"_count": 1}}, "skin": {"_count": 2, "looked": {"_count": 1}, "contrasting": {"_count": 1}}, "Ern": {"_count": 1, "jerked": {"_count": 1}}, "rabbit": {"_count": 1, "kept": {"_count": 1}}, "fog": {"_count": 4, "was": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}}, "mist": {"_count": 3, "was": {"_count": 1}, "": {"_count": 2}}, "underneath": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "sand": {"_count": 1, "and": {"_count": 1}}, "dust": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "robes": {"_count": 1, "and": {"_count": 1}}, "green": {"_count": 1, "and": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "ferret": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 1}, "teeth": {"_count": 1}}, "even": {"_count": 1, "teeth": {"_count": 1}}, "beards": {"_count": 1, "": {"_count": 1}}, "flames": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "it": {"_count": 1, "made": {"_count": 1}}, "marble": {"_count": 6, "including": {"_count": 1}, "tomb": {"_count": 3}, "just": {"_count": 1}, "": {"_count": 1}}, "towels": {"_count": 1, "sat": {"_count": 1}}, "till": {"_count": 1, "theyre": {"_count": 1}}, "substance": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "steam": {"_count": 2, "billowed": {"_count": 1}, "that": {"_count": 1}}, "fingers": {"_count": 6, "caressed": {"_count": 1}, "and": {"_count": 1}, "too": {"_count": 1}, "upon": {"_count": 1}, "raising": {"_count": 1}, "staring": {"_count": 1}}, "forefinger": {"_count": 1, "to": {"_count": 1}}, "appalled": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "make": {"_count": 1}}, "lights": {"_count": 1, "popped": {"_count": 1}}, "faced": {"_count": 1, "wife": {"_count": 1}}, "soared": {"_count": 1, "from": {"_count": 1}}, "eyes": {"_count": 3, "": {"_count": 1}, "gleaming": {"_count": 2}}, "wings": {"_count": 1, "and": {"_count": 1}}, "outline": {"_count": 1, "of": {"_count": 1}}, "cloth": {"_count": 1, "around": {"_count": 1}}, "scars": {"_count": 1, "on": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "which": {"_count": 1, "meant": {"_count": 1}}, "shining": {"_count": 1, "eyes": {"_count": 1}}, "berries": {"_count": 1, "placed": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "Christmas": {"_count": 1, "trees": {"_count": 1}}, "neither": {"_count": 2, "gas": {"_count": 1}, "warm": {"_count": 1}}, "skulllike": {"_count": 1, "face": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "clouds": {"_count": 1, "when": {"_count": 1}}, "contents": {"_count": 1, "were": {"_count": 1}}, "parchment": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 8, "clutching": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "raise": {"_count": 1}, "held": {"_count": 1}, "": {"_count": 1}, "pulled": {"_count": 1}, "toying": {"_count": 1}}, "centaur": {"_count": 1, "off": {"_count": 1}}, "objects": {"_count": 1, "that": {"_count": 1}}, "blond": {"_count": 2, "hair": {"_count": 1}, "head": {"_count": 1}}, "flash": {"_count": 2, "through": {"_count": 1}, "and": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "Hedwig": {"_count": 1, "circling": {"_count": 1}}, "the": {"_count": 1, "whole": {"_count": 1}}, "round": {"_count": 1, "glasses": {"_count": 1}}, "flakes": {"_count": 1, "had": {"_count": 1}}, "floating": {"_count": 1, "inches": {"_count": 1}}, "heads": {"_count": 1, "and": {"_count": 1}}, "tomb": {"_count": 1, "reflected": {"_count": 1}}, "handkerchief": {"_count": 1, "from": {"_count": 1}}, "He": {"_count": 1, "seemed": {"_count": 1}}, "against": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "marquee": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "dress": {"_count": 2, "marrying": {"_count": 1}, "and": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "roses": {"_count": 1, "in": {"_count": 1}}, "snakelike": {"_count": 1, "face": {"_count": 1}}, "eyeball": {"_count": 1, "all": {"_count": 1}}, "caps": {"_count": 1, "": {"_count": 1}}, "doe": {"_count": 1, "moonbright": {"_count": 1}}, "candyfloss": {"_count": 1, "hair": {"_count": 1}}, "shape": {"_count": 2, "moved": {"_count": 1}, "above": {"_count": 1}}, "moon": {"_count": 1, "": {"_count": 1}}, "apron": {"_count": 1, "from": {"_count": 1}}, "stones": {"_count": 1, "smoothed": {"_count": 1}}, "dot": {"_count": 1, "had": {"_count": 1}}, "figures": {"_count": 1, "of": {"_count": 1}}, "figure": {"_count": 1, "drifting": {"_count": 1}}, "chest": {"_count": 1, "": {"_count": 1}}, "curls": {"_count": 1, "": {"_count": 1}}}, "porridge": {"_count": 17, "": {"_count": 6, ".": {"_count": 6}}, "bowl": {"_count": 1, "to": {"_count": 1}}, "plates": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 1, "sure": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "lefthanded": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "by": {"_count": 1}, "eggs": {"_count": 1}}, "into": {"_count": 1, "bowls": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "then": {"_count": 1, "dragged": {"_count": 1}}, "apparently": {"_count": 1, "foretold": {"_count": 1}}}, "PPPetunia": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "grab": {"_count": 34, "the": {"_count": 5, "letter": {"_count": 1}, "key": {"_count": 1}, "cloak": {"_count": 1}, "Invisibility": {"_count": 1}, "Quaffle": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 2}, "them": {"_count": 1}}, "your": {"_count": 3, "nose": {"_count": 1}, "broom": {"_count": 1}, "children": {"_count": 1}}, "his": {"_count": 1, "shoulders": {"_count": 1}}, "anything": {"_count": 1, "you": {"_count": 1}}, "a": {"_count": 4, "pixie": {"_count": 1}, "jacket": {"_count": 1}, "Portkey": {"_count": 1}, "table": {"_count": 1}}, "hold": {"_count": 3, "": {"_count": 1}, "of": {"_count": 2}}, "Rons": {"_count": 1, "hand": {"_count": 1}}, "Crookshanks": {"_count": 1, "by": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}, "Pettigrew": {"_count": 1, "No": {"_count": 1}}, "Cedrics": {"_count": 1, "arm": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 1}, "from": {"_count": 1}, "in": {"_count": 1}}, "Neville": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 1, "assortment": {"_count": 1}}, "him": {"_count": 2, "should": {"_count": 1}, "": {"_count": 1}}, "my": {"_count": 1, "shoulder": {"_count": 1}}, "Luna": {"_count": 1, "Dean": {"_count": 1}}}, "reach": {"_count": 88, "": {"_count": 18, ".": {"_count": 18}}, "them": {"_count": 2, "": {"_count": 2}}, "he": {"_count": 1, "pulled": {"_count": 1}}, "with": {"_count": 1, "its": {"_count": 1}}, "the": {"_count": 15, "weekend": {"_count": 1}, "Great": {"_count": 1}, "trunk": {"_count": 1}, "hostages": {"_count": 1}, "cup": {"_count": 1}, "ground": {"_count": 1}, "desk": {"_count": 1}, "dial": {"_count": 1}, "next": {"_count": 1}, "wrong": {"_count": 1}, "locket": {"_count": 1}, "gate": {"_count": 1}, "Lestranges": {"_count": 1}, "snake": {"_count": 2}}, "Malfoy": {"_count": 2, "went": {"_count": 1}, "was": {"_count": 1}}, "gigantic": {"_count": 1, "size": {"_count": 1}}, "for": {"_count": 2, "his": {"_count": 1}, "any": {"_count": 1}}, "it": {"_count": 6, "": {"_count": 4}, "aaRGH": {"_count": 1}, "But": {"_count": 1}}, "and": {"_count": 2, "began": {"_count": 1}, "continuing": {"_count": 1}}, "Scabbers": {"_count": 1, "who": {"_count": 1}}, "Flitwicks": {"_count": 1, "office": {"_count": 1}}, "your": {"_count": 1, "aunt": {"_count": 1}}, "Jupiter": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "here": {"_count": 1, "before": {"_count": 1}}, "his": {"_count": 5, "shoulder": {"_count": 1}, "cold": {"_count": 1}, "own": {"_count": 1}, "destination": {"_count": 1}, "mother": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Pulling": {"_count": 1, "the": {"_count": 1}}, "any": {"_count": 1, "conclusions": {"_count": 1}}, "our": {"_count": 1, "verdict": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "of": {"_count": 6, "Dumbledores": {"_count": 1}, "Hagrid": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "any": {"_count": 1}}, "Voldemorts": {"_count": 1, "red": {"_count": 1}}, "Kings": {"_count": 1, "Cross": {"_count": 1}}, "out": {"_count": 1, "and": {"_count": 1}}, "toward": {"_count": 1, "himself": {"_count": 1}}, "journeys": {"_count": 1, "end": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 3, "Harry": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "many": {"_count": 1}}, "their": {"_count": 1, "victim": {"_count": 1}}, "no": {"_count": 1, "higher": {"_count": 1}}, "this": {"_count": 2, "rock": {"_count": 1}, "place": {"_count": 1}}, "though": {"_count": 1, "Dumbledore": {"_count": 1}}}, "line": {"_count": 114, "": {"_count": 20, ".": {"_count": 19}, "?": {"_count": 1}}, "o": {"_count": 1, "Muggles": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "facing": {"_count": 3, "the": {"_count": 3}}, "put": {"_count": 1, "on": {"_count": 1}}, "sat": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 6, "shed": {"_count": 1}, "kept": {"_count": 1}, "stood": {"_count": 1}, "revenging": {"_count": 1}, "the": {"_count": 1}, "circle": {"_count": 1}}, "of": {"_count": 29, "bottles": {"_count": 1}, "my": {"_count": 1}, "scaredlooking": {"_count": 2}, "spiders": {"_count": 1}, "first": {"_count": 3}, "Hufflepuffs": {"_count": 1}, "people": {"_count": 1}, "fire": {"_count": 2}, "the": {"_count": 5}, "her": {"_count": 2}, "vision": {"_count": 2}, "gold": {"_count": 1}, "fourthyear": {"_count": 1}, "cars": {"_count": 1}, "his": {"_count": 1}, "pale": {"_count": 1}, "old": {"_count": 1}, "instructions": {"_count": 1}, "hills": {"_count": 1}}, "their": {"_count": 1, "little": {"_count": 1}}, "wound": {"_count": 1, "right": {"_count": 1}}, "to": {"_count": 5, "where": {"_count": 1}, "his": {"_count": 1}, "Rodolphus": {"_count": 1}, "the": {"_count": 2}}, "up": {"_count": 3, "": {"_count": 1}, "over": {"_count": 2}}, "A": {"_count": 1, "knot": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "his": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "number": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "Crabbe": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "looked": {"_count": 1, "a": {"_count": 1}}, "upon": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "than": {"_count": 1, "Hogwarts": {"_count": 1}}, "dwindling": {"_count": 1, "slowly": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "Professor": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 1}, "appeared": {"_count": 1}, "dragged": {"_count": 1}}, "said": {"_count": 4, "Madame": {"_count": 1}, "Harry": {"_count": 1}, "Fred": {"_count": 2}}, "himself": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "pairs": {"_count": 1}, "his": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "became": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "Only": {"_count": 1, "one": {"_count": 1}}, "reminding": {"_count": 1, "her": {"_count": 1}}, "until": {"_count": 1, "by": {"_count": 1}}, "on": {"_count": 2, "this": {"_count": 1}, "Ariana": {"_count": 1}}, "but": {"_count": 1, "this": {"_count": 1}}, "all": {"_count": 1, "except": {"_count": 1}}, "representing": {"_count": 1, "the": {"_count": 1}}}, "faint": {"_count": 51, "": {"_count": 8, ".": {"_count": 8}}, "whimper": {"_count": 1, "and": {"_count": 1}}, "whispering": {"_count": 2, "was": {"_count": 1}, "murmuring": {"_count": 1}}, "pinkish": {"_count": 1, "glow": {"_count": 1}}, "smell": {"_count": 1, "of": {"_count": 1}}, "hiss": {"_count": 1, "": {"_count": 1}}, "moan": {"_count": 1, "from": {"_count": 1}}, "tinny": {"_count": 1, "sort": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "with": {"_count": 2, "terror": {"_count": 1}, "anxiety": {"_count": 1}}, "pop": {"_count": 2, "and": {"_count": 1}, "a": {"_count": 1}}, "clatter": {"_count": 1, "He": {"_count": 1}}, "screaming": {"_count": 1, "that": {"_count": 1}}, "misty": {"_count": 1, "orange": {"_count": 1}}, "popping": {"_count": 1, "noise": {"_count": 1}}, "note": {"_count": 2, "of": {"_count": 2}}, "gurgling": {"_count": 1, "noise": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "rattling": {"_count": 2, "noise": {"_count": 1}, "could": {"_count": 1}}, "white": {"_count": 1, "outline": {"_count": 1}}, "smile": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "became": {"_count": 1, "a": {"_count": 1}}, "blue": {"_count": 3, "light": {"_count": 2}, "and": {"_count": 1}}, "frown": {"_count": 1, "line": {"_count": 1}}, "crease": {"_count": 1, "between": {"_count": 1}}, "vomit": {"_count": 1, "develop": {"_count": 1}}, "sign": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "he": {"_count": 1}}, "silvery": {"_count": 1, "glow": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}, "scars": {"_count": 1, "on": {"_count": 1}}, "about": {"_count": 1, "Snape": {"_count": 1}}, "amusement": {"_count": 1, "to": {"_count": 1}}, "air": {"_count": 1, "of": {"_count": 1}}}, "clutched": {"_count": 59, "her": {"_count": 3, "throat": {"_count": 2}, "bag": {"_count": 1}}, "in": {"_count": 21, "his": {"_count": 10}, "its": {"_count": 1}, "her": {"_count": 5}, "their": {"_count": 1}, "one": {"_count": 1}, "Harrys": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}}, "safely": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 6, "sleeve": {"_count": 1}, "window": {"_count": 1}, "front": {"_count": 1}, "cold": {"_count": 1}, "sword": {"_count": 1}, "Cloak": {"_count": 1}}, "tightly": {"_count": 5, "in": {"_count": 4}, "around": {"_count": 1}}, "his": {"_count": 5, "empty": {"_count": 1}, "chest": {"_count": 1}, "head": {"_count": 2}, "forehead": {"_count": 1}}, "tight": {"_count": 3, "in": {"_count": 2}, "and": {"_count": 1}}, "Scabbers": {"_count": 1, "closer": {"_count": 1}}, "at": {"_count": 5, "her": {"_count": 3}, "his": {"_count": 2}}, "them": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "Cedric": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "Harrys": {"_count": 2, "arm": {"_count": 2}}, "beneath": {"_count": 1, "them": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}}, "choking": {"_count": 13, "noise": {"_count": 4, "": {"_count": 2}, "and": {"_count": 2}}, "on": {"_count": 4, "her": {"_count": 2}, "an": {"_count": 1}, "it": {"_count": 1}}, "him": {"_count": 1, "Leave": {"_count": 1}}, "found": {"_count": 1, "himself": {"_count": 1}}, "for": {"_count": 1, "breath": {"_count": 1}}, "Mundungus": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "retching": {"_count": 1}}}, "goodness": {"_count": 27, "Vernon": {"_count": 1, "": {"_count": 1}}, "yes": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "found": {"_count": 1}}, "Dobby": {"_count": 1, "never": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 2}, "!": {"_count": 3}}, "me": {"_count": 1, "if": {"_count": 1}}, "knows": {"_count": 2, "Id": {"_count": 1}, "she": {"_count": 1}}, "sake": {"_count": 1, "": {"_count": 1}}, "thank": {"_count": 2, "goodness": {"_count": 2}}, "I": {"_count": 2, "didnt": {"_count": 1}, "couldnt": {"_count": 1}}, "we": {"_count": 1, "got": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 2}}, "she": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 1, "an": {"_count": 1}}, "youre": {"_count": 1, "all": {"_count": 1}}, "Ginny": {"_count": 1, "whispered": {"_count": 1}}, "it": {"_count": 1, "worked": {"_count": 1}}, "its": {"_count": 1, "lovely": {"_count": 1}}, "and": {"_count": 1, "wisdom": {"_count": 1}}}, "seeming": {"_count": 3, "to": {"_count": 3, "have": {"_count": 1}, "pull": {"_count": 1}, "crawl": {"_count": 1}}}, "ignored": {"_count": 65, "": {"_count": 3, ".": {"_count": 3}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "her": {"_count": 13, "": {"_count": 12}, "he": {"_count": 1}}, "him": {"_count": 19, "and": {"_count": 3}, "": {"_count": 14}, "Arthur": {"_count": 1}, "his": {"_count": 1}}, "them": {"_count": 10, "": {"_count": 8}, "which": {"_count": 1}, "being": {"_count": 1}}, "it": {"_count": 6, "and": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "refusing": {"_count": 1}, "he": {"_count": 1}}, "his": {"_count": 2, "last": {"_count": 1}, "father": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "Harry": {"_count": 2, "too": {"_count": 1}, "completely": {"_count": 1}}, "this": {"_count": 4, "last": {"_count": 1}, "jibe": {"_count": 1}, "": {"_count": 2}}, "the": {"_count": 1, "slight": {"_count": 1}}, "Lupin": {"_count": 1, "as": {"_count": 1}}, "by": {"_count": 1, "Slughorn": {"_count": 1}}, "both": {"_count": 1, "Harry": {"_count": 1}}}, "tap": {"_count": 25, "on": {"_count": 4, "the": {"_count": 4}}, "he": {"_count": 1, "threw": {"_count": 1}}, "of": {"_count": 5, "his": {"_count": 3}, "her": {"_count": 1}, "the": {"_count": 1}}, "glowed": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "third": {"_count": 1}}, "it": {"_count": 2, "again": {"_count": 1}, "and": {"_count": 1}}, "sharply": {"_count": 1, "on": {"_count": 1}}, "marked": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "dance": {"_count": 2, "": {"_count": 1}, "unbalancing": {"_count": 1}}, "tap": {"_count": 1, "on": {"_count": 1}}, "gushed": {"_count": 1, "pink": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "with": {"_count": 1, "his": {"_count": 1}}}, "croaked": {"_count": 56, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 4, "": {"_count": 2}, "dashing": {"_count": 1}, "before": {"_count": 1}}, "in": {"_count": 1, "relief": {"_count": 1}}, "Ron": {"_count": 4, "hours": {"_count": 1}, "": {"_count": 1}, "unexpectedly": {"_count": 1}, "wincing": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "Hagrid": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "the": {"_count": 5, "old": {"_count": 1}, "man": {"_count": 1}, "houseelf": {"_count": 1}, "elf": {"_count": 2}}, "loudly": {"_count": 1, "from": {"_count": 1}}, "pointing": {"_count": 1, "Rons": {"_count": 1}}, "Sirius": {"_count": 2, "Black": {"_count": 1}, "": {"_count": 1}}, "Black": {"_count": 2, "": {"_count": 2}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "So": {"_count": 1, "so": {"_count": 1}}, "You": {"_count": 1, "should": {"_count": 1}}, "Kreacher": {"_count": 8, "sinking": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 1}, "in": {"_count": 1}, "has": {"_count": 1}, "seizing": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "dunno": {"_count": 1}}, "Fred": {"_count": 1, "looking": {"_count": 1}}, "Doge": {"_count": 1, "": {"_count": 1}}, "Ollivander": {"_count": 1, "and": {"_count": 1}}, "Aberforth": {"_count": 1, "": {"_count": 1}}}, "stuffing": {"_count": 27, "the": {"_count": 10, "letter": {"_count": 1}, "shrieking": {"_count": 1}, "now": {"_count": 1}, "nearest": {"_count": 1}, "rest": {"_count": 2}, "homework": {"_count": 1}, "Snitch": {"_count": 1}, "cat": {"_count": 1}, "Invisibility": {"_count": 1}}, "Dobby": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 1, "back": {"_count": 1}}, "everything": {"_count": 1, "feverishly": {"_count": 1}}, "knocked": {"_count": 1, "out": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 2, "fistful": {"_count": 1}, "second": {"_count": 1}}, "crisps": {"_count": 1, "and": {"_count": 1}}, "down": {"_count": 1, "bread": {"_count": 1}}, "leaked": {"_count": 1, "out": {"_count": 1}}, "her": {"_count": 1, "books": {"_count": 1}}, "it": {"_count": 5, "back": {"_count": 2}, "into": {"_count": 2}, "down": {"_count": 1}}, "their": {"_count": 1, "own": {"_count": 1}}}, "WANT": {"_count": 6, "MY": {"_count": 1, "LETTER": {"_count": 1}}, "TO": {"_count": 1, "TALK": {"_count": 1}}, "HAGGER": {"_count": 1, "": {"_count": 1}}, "TOBE": {"_count": 1, "HUMAN": {"_count": 1}}, "OUT": {"_count": 1, "I": {"_count": 1}}, "IT": {"_count": 1, "TO": {"_count": 1}}}, "MY": {"_count": 9, "LETTER": {"_count": 1, "": {"_count": 1}}, "FAMILY": {"_count": 1, "": {"_count": 1}}, "MUM": {"_count": 2, "AND": {"_count": 2}}, "HOUSE": {"_count": 1, "": {"_count": 1}}, "LAST": {"_count": 1, "PETUNIA": {"_count": 1}}, "FATHERS": {"_count": 1, "Hermione": {"_count": 1}}, "DAUGHTER": {"_count": 1, "YOU": {"_count": 1}}, "WAY": {"_count": 1, "": {"_count": 1}}}, "LETTER": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "FROM": {"_count": 1, "DUMBLEDORE": {"_count": 1}}}, "Let": {"_count": 101, "me": {"_count": 50, "see": {"_count": 12}, "explain": {"_count": 3}, "think": {"_count": 1}, "speak": {"_count": 1}, "just": {"_count": 1}, "show": {"_count": 3}, "rip": {"_count": 1}, "tear": {"_count": 1}, "kill": {"_count": 1}, "introduce": {"_count": 1}, "go": {"_count": 3}, "at": {"_count": 1}, "through": {"_count": 1}, "draw": {"_count": 1}, "know": {"_count": 4}, "get": {"_count": 1}, "remind": {"_count": 1}, "out": {"_count": 3}, "": {"_count": 3}, "present": {"_count": 1}, "do": {"_count": 1}, "and": {"_count": 1}, "find": {"_count": 2}, "bring": {"_count": 2}}, "Hedwig": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 6, "feast": {"_count": 1}, "scar": {"_count": 1}, "ordinary": {"_count": 1}, "police": {"_count": 1}, "Sorting": {"_count": 1}, "pain": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "us": {"_count": 13, "in": {"_count": 2}, "hear": {"_count": 1}, "move": {"_count": 1}, "begin": {"_count": 1}, "not": {"_count": 1}, "therefore": {"_count": 1}, "say": {"_count": 1}, "speak": {"_count": 1}, "ask": {"_count": 1}, "go": {"_count": 1}, "walk": {"_count": 2}}, "her": {"_count": 2, "try": {"_count": 1}, "sleep": {"_count": 1}}, "him": {"_count": 9, "catch": {"_count": 1}, "go": {"_count": 1}, "smell": {"_count": 1}, "have": {"_count": 1}, "rest": {"_count": 1}, "breathe": {"_count": 1}, "down": {"_count": 1}, "watch": {"_count": 1}, "kill": {"_count": 1}}, "it": {"_count": 5, "drown": {"_count": 1}, "have": {"_count": 1}, "open": {"_count": 2}, "go": {"_count": 1}}, "go": {"_count": 6, "": {"_count": 1}, "of": {"_count": 3}, "Bella": {"_count": 1}, "Im": {"_count": 1}}, "slip": {"_count": 1, "more": {"_count": 1}}, "someone": {"_count": 1, "else": {"_count": 1}}, "em": {"_count": 2, "see": {"_count": 1}, "have": {"_count": 1}}, "let": {"_count": 1, "the": {"_count": 1}}, "your": {"_count": 1, "yearning": {"_count": 1}}, "nothing": {"_count": 1, "tarnish": {"_count": 1}}, "our": {"_count": 1, "contribution": {"_count": 1}}}, "OUT": {"_count": 33, "": {"_count": 14, "!": {"_count": 13}, "?": {"_count": 1}}, "OF": {"_count": 11, "BED": {"_count": 2}, "PERCYS": {"_count": 1}, "LINE": {"_count": 1}, "ORDER": {"_count": 2}, "HERE": {"_count": 1}, "THE": {"_count": 2}, "BINS": {"_count": 1}, "MY": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "FOR": {"_count": 2, "THAT": {"_count": 1}, "EVERY": {"_count": 1}}, "ON": {"_count": 1, "YOUR": {"_count": 1}}, "WITH": {"_count": 1, "IT": {"_count": 1}}, "WHATS": {"_count": 1, "BEEN": {"_count": 1}}, "AT": {"_count": 1, "LAST": {"_count": 1}}, "I": {"_count": 1, "WANT": {"_count": 1}}}, "roared": {"_count": 154, "Uncle": {"_count": 10, "Vernon": {"_count": 10}}, "Hagrid": {"_count": 6, "jumping": {"_count": 1}, "": {"_count": 2}, "slapping": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "again": {"_count": 1, "and": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 19, "laughter": {"_count": 15}, "delight": {"_count": 1}, "rage": {"_count": 1}, "malicious": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 10, "whipped": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 2}, "with": {"_count": 1}, "the": {"_count": 1}, "screamed": {"_count": 1}, "as": {"_count": 1}, "jeered": {"_count": 1}, "Voldemort": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "nods": {"_count": 1}}, "Ron": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "causing": {"_count": 1}}, "pulling": {"_count": 1, "Ron": {"_count": 1}}, "flinging": {"_count": 1, "down": {"_count": 1}}, "the": {"_count": 8, "boy": {"_count": 1}, "Irish": {"_count": 1}, "man": {"_count": 1}, "portrait": {"_count": 1}, "Death": {"_count": 1}, "barman": {"_count": 2}, "night": {"_count": 1}}, "Wood": {"_count": 1, "excitedly": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "pain": {"_count": 1}, "silent": {"_count": 1}}, "now": {"_count": 2, "holding": {"_count": 1}, "very": {"_count": 1}}, "spraying": {"_count": 1, "Harry": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "still": {"_count": 1}, "Snape": {"_count": 1}}, "pounding": {"_count": 1, "the": {"_count": 1}}, "shaking": {"_count": 1, "the": {"_count": 1}}, "happily": {"_count": 1, "waving": {"_count": 1}}, "so": {"_count": 2, "suddenly": {"_count": 1}, "loudly": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "seizing": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 6, "his": {"_count": 1}, "the": {"_count": 3}, "Snape": {"_count": 1}, "Harry": {"_count": 1}}, "Sir": {"_count": 2, "Cadogan": {"_count": 2}}, "Lupin": {"_count": 1, "springing": {"_count": 1}}, "as": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "Expecto": {"_count": 1, "patronum": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "Harry": {"_count": 6, "and": {"_count": 2}, "": {"_count": 2}, "who": {"_count": 1}, "pelting": {"_count": 1}}, "Black": {"_count": 2, "": {"_count": 2}}, "higher": {"_count": 1, "than": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 1}, "Diggory": {"_count": 1}}, "Amos": {"_count": 1, "genially": {"_count": 1}}, "flags": {"_count": 1, "from": {"_count": 1}}, "its": {"_count": 1, "approval": {"_count": 1}}, "Ludo": {"_count": 1, "Bagmans": {"_count": 1}}, "Bagman": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "twenty": {"_count": 1, "voices": {"_count": 1}}, "Moody": {"_count": 3, "pointing": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "gleefully": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 2, "who": {"_count": 1}, "gesturing": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "a": {"_count": 4, "corpulent": {"_count": 1}, "second": {"_count": 1}, "voice": {"_count": 1}, "figure": {"_count": 1}}, "Sirius": {"_count": 1, "trying": {"_count": 1}}, "Reasonable": {"_count": 1, "be": {"_count": 1}}, "Grawp": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 2, "and": {"_count": 1}, "who": {"_count": 1}}, "into": {"_count": 1, "life": {"_count": 1}}, "Gaunt": {"_count": 2, "": {"_count": 1}, "losing": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Snapes": {"_count": 1, "voice": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Greyback": {"_count": 1, "covering": {"_count": 1}}, "triumphantly": {"_count": 1, "": {"_count": 1}}, "pointing": {"_count": 1, "Wormtails": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Crabbe": {"_count": 1, "as": {"_count": 1}}, "Rons": {"_count": 1, "voice": {"_count": 1}}}, "scruffs": {"_count": 1, "of": {"_count": 1, "their": {"_count": 1}}}, "necks": {"_count": 19, "and": {"_count": 3, "threw": {"_count": 1}, "a": {"_count": 1}, "legs": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "while": {"_count": 1, "they": {"_count": 1}}, "thinking": {"_count": 1, "longingly": {"_count": 1}}, "the": {"_count": 1, "impatient": {"_count": 1}}, "of": {"_count": 1, "those": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "keep": {"_count": 1}, "get": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "a": {"_count": 1, "deathblow": {"_count": 1}}}, "slamming": {"_count": 34, "the": {"_count": 17, "kitchen": {"_count": 1}, "door": {"_count": 9}, "trunks": {"_count": 1}, "classroom": {"_count": 1}, "diary": {"_count": 1}, "window": {"_count": 1}, "bookcovered": {"_count": 1}, "front": {"_count": 1}, "old": {"_count": 1}}, "and": {"_count": 1, "loud": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "along": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 4, "fist": {"_count": 2}, "books": {"_count": 1}, "spoon": {"_count": 1}}, "noise": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "shut": {"_count": 1}}, "of": {"_count": 1, "car": {"_count": 1}}, "a": {"_count": 3, "fresh": {"_count": 1}, "fist": {"_count": 1}, "thick": {"_count": 1}}, "echoed": {"_count": 1, "up": {"_count": 1}}, "Travels": {"_count": 1, "with": {"_count": 1}}, "themselves": {"_count": 1, "against": {"_count": 1}}}, "promptly": {"_count": 24, "had": {"_count": 1, "a": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "started": {"_count": 1, "skipping": {"_count": 1}}, "dropped": {"_count": 1, "it": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "warn": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "turned": {"_count": 2, "away": {"_count": 1}, "scarlet": {"_count": 1}}, "which": {"_count": 1, "explained": {"_count": 1}}, "tore": {"_count": 1, "the": {"_count": 1}}, "deluged": {"_count": 1, "in": {"_count": 1}}, "crashed": {"_count": 1, "into": {"_count": 1}}}, "furious": {"_count": 83, "but": {"_count": 2, "silent": {"_count": 1}, "just": {"_count": 1}}, "telephone": {"_count": 1, "calls": {"_count": 1}}, "look": {"_count": 3, "Hagrid": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 7, "him": {"_count": 2}, "himself": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "us": {"_count": 1}}, "they": {"_count": 1, "acted": {"_count": 1}}, "snowball": {"_count": 1, "fight": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 20}}, "at": {"_count": 5, "the": {"_count": 2}, "his": {"_count": 1}, "them": {"_count": 1}, "this": {"_count": 1}}, "face": {"_count": 1, "appeared": {"_count": 1}}, "and": {"_count": 3, "as": {"_count": 1}, "sulky": {"_count": 1}, "then": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "wrestling": {"_count": 1, "matches": {"_count": 1}}, "pride": {"_count": 1, "": {"_count": 1}}, "swipes": {"_count": 1, "beneath": {"_count": 1}}, "tirade": {"_count": 1, "about": {"_count": 1}}, "theyd": {"_count": 1, "come": {"_count": 1}}, "moves": {"_count": 1, "toward": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "pounding": {"_count": 1, "in": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "about": {"_count": 3, "Buckbeak": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "battle": {"_count": 1, "as": {"_count": 1}}, "diatribe": {"_count": 1, "she": {"_count": 1}}, "minutes": {"_count": 1, "Ireland": {"_count": 1}}, "roars": {"_count": 1, "of": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "Karkaroff": {"_count": 1, "livid": {"_count": 1}}, "stare": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "got": {"_count": 1}, "was": {"_count": 1}}, "fixed": {"_count": 1, "": {"_count": 1}}, "thoughts": {"_count": 1, "whirled": {"_count": 1}}, "pretense": {"_count": 1, "that": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "tears": {"_count": 1, "and": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "desire": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "expression": {"_count": 1, "had": {"_count": 1}}, "now": {"_count": 1, "right": {"_count": 1}}, "caretaker": {"_count": 1, "": {"_count": 1}}, "declaration": {"_count": 1, "that": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "looks": {"_count": 1, "on": {"_count": 1}}, "whisper": {"_count": 1, "": {"_count": 1}}, "criticisms": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "fight": {"_count": 135, "over": {"_count": 1, "who": {"_count": 1}}, "": {"_count": 31, ".": {"_count": 25}, "!": {"_count": 4}, "?": {"_count": 2}}, "us": {"_count": 1, "are": {"_count": 1}}, "Malfoy": {"_count": 2, "but": {"_count": 1}, "oneonone": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 1}, "mangy": {"_count": 1}, "yellowbellied": {"_count": 1}}, "that": {"_count": 2, "one": {"_count": 1}, "had": {"_count": 1}}, "what": {"_count": 1, "seems": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 8, "refusing": {"_count": 1}, "trooped": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}, "fight": {"_count": 1}, "while": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "him": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "it": {"_count": 4, "": {"_count": 2}, "only": {"_count": 2}}, "them": {"_count": 4, "": {"_count": 1}, "Lupin": {"_count": 1}, "off": {"_count": 1}, "out": {"_count": 1}}, "with": {"_count": 4, "another": {"_count": 1}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}, "me": {"_count": 1}}, "down": {"_count": 3, "a": {"_count": 1}, "below": {"_count": 1}, "the": {"_count": 1}}, "her": {"_count": 1, "off": {"_count": 1}}, "off": {"_count": 4, "the": {"_count": 3}, "dementors": {"_count": 1}}, "em": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 8, "Cruciatus": {"_count": 1}, "Imperius": {"_count": 1}, "way": {"_count": 1}, "Order": {"_count": 1}, "Death": {"_count": 1}, "pain": {"_count": 1}, "temptation": {"_count": 1}, "Dark": {"_count": 1}}, "rather": {"_count": 2, "than": {"_count": 2}}, "him": {"_count": 1, "boy": {"_count": 1}}, "my": {"_count": 1, "fathers": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "aided": {"_count": 1, "and": {"_count": 1}}, "Quirrell": {"_count": 1, "with": {"_count": 1}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "each": {"_count": 4, "other": {"_count": 4}}, "broke": {"_count": 3, "out": {"_count": 3}}, "back": {"_count": 1, "": {"_count": 1}}, "must": {"_count": 1, "break": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}, "your": {"_count": 2, "men": {"_count": 1}, "way": {"_count": 1}}, "but": {"_count": 1, "both": {"_count": 1}}, "went": {"_count": 1, "out": {"_count": 1}}, "below": {"_count": 2, "before": {"_count": 1}, "": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 3}, "punish": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "unscathed": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "joined": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "dementors": {"_count": 1, "a": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "of": {"_count": 1, "it": {"_count": 1}}, "or": {"_count": 1, "all": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "their": {"_count": 1}}, "had": {"_count": 1, "actually": {"_count": 1}}, "yeh": {"_count": 1, "cowardly": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "already": {"_count": 1, "flourishing": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "screaming": {"_count": 1, "for": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}}, "listen": {"_count": 117, "at": {"_count": 3, "the": {"_count": 2}, "keyholes": {"_count": 1}}, "here": {"_count": 2, "boy": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 45, "her": {"_count": 3}, "us": {"_count": 2}, "me": {"_count": 11}, "this": {"_count": 2}, "Snape": {"_count": 1}, "Woods": {"_count": 1}, "the": {"_count": 5}, "OH": {"_count": 1}, "Ron": {"_count": 1}, "them": {"_count": 2}, "what": {"_count": 4}, "more": {"_count": 1}, "houseelves": {"_count": 1}, "him": {"_count": 2}, "Dolores": {"_count": 1}, "Hermione": {"_count": 1}, "a": {"_count": 2}, "adolescent": {"_count": 1}, "Binns": {"_count": 1}, "it": {"_count": 1}, "Ollivander": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 15}, "?": {"_count": 2}, "!": {"_count": 3}}, "carefully": {"_count": 1, "cause": {"_count": 1}}, "get": {"_count": 1, "back": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "because": {"_count": 1, "if": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "properly": {"_count": 1, "do": {"_count": 1}}, "that": {"_count": 2, "Black": {"_count": 1}, "she": {"_count": 1}}, "two": {"_count": 1, "rolls": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 2}, "Harry": {"_count": 1}}, "please": {"_count": 1, "Hermione": {"_count": 1}}, "But": {"_count": 1, "Madam": {"_count": 1}}, "and": {"_count": 3, "I": {"_count": 1}, "heard": {"_count": 1}, "": {"_count": 1}}, "too": {"_count": 3, "thats": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "girlfriend": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "in": {"_count": 3, "an": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "closely": {"_count": 3, "Dean": {"_count": 1}, "": {"_count": 1}, "Severus": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "hurried": {"_count": 1}}, "up": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 1, "song": {"_count": 1}}, "dyou": {"_count": 1, "want": {"_count": 1}}, "ter": {"_count": 1, "me": {"_count": 1}}, "\u2018Of": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "He": {"_count": 1, "thought": {"_count": 1}}, "Tuney": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "didnt": {"_count": 1}}}, "keyhole": {"_count": 15, "Dudley": {"_count": 1, "won": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "with": {"_count": 2, "chewing": {"_count": 1}, "his": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 1, "straight": {"_count": 1}}, "or": {"_count": 1, "letterbox": {"_count": 1}}, "but": {"_count": 1, "perhaps": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "hear": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}}, "won": {"_count": 101, "so": {"_count": 2, "Harry": {"_count": 1}, "much": {"_count": 1}}, "since": {"_count": 1, "Charlie": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "by": {"_count": 3, "one": {"_count": 1}, "less": {"_count": 1}, "more": {"_count": 1}}, "their": {"_count": 1, "next": {"_count": 1}}, "": {"_count": 18, "!": {"_count": 9}, ".": {"_count": 9}}, "in": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 2}}, "Norbert": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 24, "House": {"_count": 3}, "Quidditch": {"_count": 3}, "annual": {"_count": 1}, "Daily": {"_count": 1}, "match": {"_count": 3}, "Cup": {"_count": 2}, "league": {"_count": 1}, "InterHouse": {"_count": 1}, "Triwizard": {"_count": 1}, "tournament": {"_count": 3}, "Felix": {"_count": 1}, "fight": {"_count": 1}, "walnut": {"_count": 1}, "duel": {"_count": 1}, "wand": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "a": {"_count": 4, "marathon": {"_count": 1}, "dragons": {"_count": 1}, "scholarship": {"_count": 1}, "Quidditch": {"_count": 1}}, "though": {"_count": 2, "said": {"_count": 1}, "narrowly": {"_count": 1}}, "stand": {"_count": 1, "a": {"_count": 1}}, "like": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "for": {"_count": 1, "seven": {"_count": 1}}, "fair": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "betting": {"_count": 1, "on": {"_count": 1}}, "want": {"_count": 1, "ter": {"_count": 1}}, "take": {"_count": 2, "Fang": {"_count": 1}, "me": {"_count": 1}}, "hurt": {"_count": 2, "any": {"_count": 1}, "yeh": {"_count": 1}}, "yeh": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 4, "": {"_count": 1}, "but": {"_count": 1}, "fair": {"_count": 1}, "it": {"_count": 1}}, "WHAM": {"_count": 1, "A": {"_count": 1}}, "Harry": {"_count": 2, "we": {"_count": 1}, "knew": {"_count": 1}}, "one": {"_count": 1, "lost": {"_count": 1}}, "be": {"_count": 2, "kept": {"_count": 1}, "able": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "but": {"_count": 1, "then": {"_count": 1}}, "him": {"_count": 1, "his": {"_count": 1}}, "grow": {"_count": 1, "inter": {"_count": 1}}, "Filch": {"_count": 1, "said": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "lost": {"_count": 1}}, "every": {"_count": 1, "prize": {"_count": 1}}, "its": {"_count": 3, "allegiance": {"_count": 1}, "over": {"_count": 2}}, "himself": {"_count": 1, "a": {"_count": 1}}, "your": {"_count": 1, "wand": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}}, "dangling": {"_count": 40, "from": {"_count": 15, "one": {"_count": 1}, "it": {"_count": 3}, "his": {"_count": 4}, "the": {"_count": 4}, "her": {"_count": 2}, "its": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 2, "few": {"_count": 1}, "foot": {"_count": 1}}, "limply": {"_count": 1, "held": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "off": {"_count": 4, "its": {"_count": 1}, "one": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}}, "useless": {"_count": 1, "at": {"_count": 1}}, "below": {"_count": 1, "him": {"_count": 1}}, "Scabbers": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 2}}, "on": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 1, "midair": {"_count": 1}}, "them": {"_count": 1, "upside": {"_count": 1}}, "someone": {"_count": 1, "upside": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "Ron": {"_count": 1, "whose": {"_count": 1}}, "invisibly": {"_count": 1, "in": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}}, "ear": {"_count": 133, "lay": {"_count": 1, "flat": {"_count": 1}}, "and": {"_count": 15, "on": {"_count": 2}, "pulled": {"_count": 1}, "have": {"_count": 1}, "Malfoy": {"_count": 1}, "settled": {"_count": 1}, "rotated": {"_count": 1}, "sniffed": {"_count": 1}, "hit": {"_count": 1}, "frowning": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 2}, "he": {"_count": 1}, "smashed": {"_count": 1}}, "": {"_count": 51, ".": {"_count": 50}, "?": {"_count": 1}}, "but": {"_count": 3, "Harry": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 8, "ear": {"_count": 2}, "the": {"_count": 4}, "his": {"_count": 1}, "recognize": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}, "when": {"_count": 1, "hed": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "Bee": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "hit": {"_count": 1, "by": {"_count": 1}}, "out": {"_count": 1, "for": {"_count": 1}}, "pressed": {"_count": 1, "against": {"_count": 1}}, "still": {"_count": 3, "glued": {"_count": 1}, "closer": {"_count": 1}, "more": {"_count": 1}}, "against": {"_count": 3, "the": {"_count": 2}, "door": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}}, "then": {"_count": 1, "took": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "affectionately": {"_count": 1, "as": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "for": {"_count": 2, "safekeeping": {"_count": 2}}, "by": {"_count": 2, "a": {"_count": 1}, "now": {"_count": 1}}, "of": {"_count": 1, "things": {"_count": 1}}, "reckless": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "Nevilles": {"_count": 1}, "they": {"_count": 1}}, "Im": {"_count": 1, "really": {"_count": 1}}, "was": {"_count": 2, "visible": {"_count": 1}, "quite": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 2, "would": {"_count": 1}, "must": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "did": {"_count": 1, "hurt": {"_count": 1}}, "trumpet": {"_count": 1, "": {"_count": 1}}, "Four": {"_count": 1, "Death": {"_count": 1}}, "not": {"_count": 1, "when": {"_count": 1}}, "said": {"_count": 2, "Lupin": {"_count": 1}, "George": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "ear": {"_count": 1, "said": {"_count": 1}}, "hair": {"_count": 1, "as": {"_count": 1}}, "trumpets": {"_count": 2, "curved": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 1, "jeered": {"_count": 1}}, "the": {"_count": 1, "Imperius": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}}, "stomach": {"_count": 144, "to": {"_count": 2, "listen": {"_count": 1}, "the": {"_count": 1}}, "rumbling": {"_count": 3, "with": {"_count": 1}, "mind": {"_count": 1}, "loudly": {"_count": 1}}, "lurched": {"_count": 4, "with": {"_count": 1}, "Its": {"_count": 1}, "": {"_count": 1}, "One": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 2}}, "twisted": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 30}, "!": {"_count": 2}, "?": {"_count": 1}}, "lurching": {"_count": 1, "Harry": {"_count": 1}}, "disappear": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "one": {"_count": 1}}, "and": {"_count": 7, "sending": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 1}, "Hermione": {"_count": 1}, "before": {"_count": 1}, "staring": {"_count": 1}, "the": {"_count": 1}}, "gave": {"_count": 9, "a": {"_count": 6}, "an": {"_count": 2}, "another": {"_count": 1}}, "had": {"_count": 3, "just": {"_count": 1}, "dissolved": {"_count": 1}, "sunk": {"_count": 1}}, "dropping": {"_count": 1, "another": {"_count": 1}}, "plummeted": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "grunted": {"_count": 1}}, "he": {"_count": 2, "thought": {"_count": 1}, "had": {"_count": 1}}, "in": {"_count": 1, "bed": {"_count": 1}}, "Harry": {"_count": 4, "pulled": {"_count": 1}, "returned": {"_count": 1}, "": {"_count": 2}}, "knocking": {"_count": 1, "the": {"_count": 1}}, "clench": {"_count": 2, "": {"_count": 1}, "painfully": {"_count": 1}}, "bursting": {"_count": 1, "free": {"_count": 1}}, "churned": {"_count": 3, "as": {"_count": 1}, "horribly": {"_count": 1}, "how": {"_count": 1}}, "contract": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "had": {"_count": 1}, "meant": {"_count": 1}}, "turned": {"_count": 7, "over": {"_count": 7}}, "writhing": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "after": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 6, "he": {"_count": 2}, "though": {"_count": 2}, "Professor": {"_count": 1}, "she": {"_count": 1}}, "trying": {"_count": 1, "desperately": {"_count": 1}}, "every": {"_count": 2, "time": {"_count": 2}}, "flooded": {"_count": 1, "with": {"_count": 1}}, "drop": {"_count": 1, "": {"_count": 1}}, "leapt": {"_count": 2, "he": {"_count": 1}, "uncomfortably": {"_count": 1}}, "slipped": {"_count": 1, "several": {"_count": 1}}, "warming": {"_count": 1, "him": {"_count": 1}}, "seemed": {"_count": 3, "to": {"_count": 3}}, "when": {"_count": 1, "Mrs": {"_count": 1}}, "for": {"_count": 1, "company": {"_count": 1}}, "already": {"_count": 1, "uncomfortable": {"_count": 1}}, "did": {"_count": 3, "a": {"_count": 1}, "another": {"_count": 1}, "yet": {"_count": 1}}, "peashooter": {"_count": 1, "at": {"_count": 1}}, "was": {"_count": 1, "full": {"_count": 1}}, "the": {"_count": 2, "dark": {"_count": 1}, "small": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "perform": {"_count": 1, "less": {"_count": 1}}, "contracted": {"_count": 1, "with": {"_count": 1}}, "floor": {"_count": 1, "at": {"_count": 1}}, "tightened": {"_count": 1, "": {"_count": 1}}, "squirmed": {"_count": 1, "": {"_count": 1}}, "ache": {"_count": 1, "with": {"_count": 1}}, "clawing": {"_count": 1, "at": {"_count": 1}}, "but": {"_count": 1, "then": {"_count": 1}}, "So": {"_count": 1, "Dolores": {"_count": 1}}, "started": {"_count": 1, "rumbling": {"_count": 1}}, "until": {"_count": 1, "both": {"_count": 1}}, "meant": {"_count": 1, "good": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "grabbed": {"_count": 1, "his": {"_count": 1}}, "Colin": {"_count": 1, "Creevey": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}}, "crack": {"_count": 72, "between": {"_count": 4, "door": {"_count": 2}, "the": {"_count": 1}, "crate": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 16, "Neville": {"_count": 1}, "Harrys": {"_count": 2}, "they": {"_count": 1}, "where": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 4}, "he": {"_count": 1}, "Harry": {"_count": 1}, "Dobby": {"_count": 1}, "Narcissas": {"_count": 1}}, "their": {"_count": 1, "knuckles": {"_count": 1}}, "my": {"_count": 1, "head": {"_count": 1}}, "onto": {"_count": 1, "its": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "peer": {"_count": 1}}, "of": {"_count": 3, "dawn": {"_count": 3}}, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "waiting": {"_count": 1, "like": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "two": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "Dobby": {"_count": 1, "disappeared": {"_count": 1}}, "about": {"_count": 1, "my": {"_count": 1}}, "cut": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "then": {"_count": 2}}, "it": {"_count": 1, "": {"_count": 1}}, "broke": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "vanished": {"_count": 1}}, "the": {"_count": 1, "twins": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "it": {"_count": 1}}, "into": {"_count": 1, "two": {"_count": 1}}, "before": {"_count": 1, "long": {"_count": 1}}, "whispered": {"_count": 1, "Luna": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "smile": {"_count": 1}, "crystal": {"_count": 1}}, "echoed": {"_count": 2, "around": {"_count": 1}, "inside": {"_count": 1}}, "Mr": {"_count": 1, "Lovegood": {"_count": 1}}, "sounded": {"_count": 1, "outside": {"_count": 1}}, "A": {"_count": 1, "branch": {"_count": 1}}, "running": {"_count": 1, "down": {"_count": 1}}}, "quivering": {"_count": 38, "voice": {"_count": 1, "look": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "treble": {"_count": 1, "either": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "again": {"_count": 1, "": {"_count": 1}}, "unpleasantly": {"_count": 1, "": {"_count": 1}}, "lump": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 6, "anticipation": {"_count": 1}, "excitement": {"_count": 1}, "anger": {"_count": 1}, "indignation": {"_count": 1}, "rage": {"_count": 1}, "delight": {"_count": 1}}, "squeak": {"_count": 1, "of": {"_count": 1}}, "slightly": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "Flutterby": {"_count": 1, "Bush": {"_count": 1}}, "over": {"_count": 1, "its": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "upon": {"_count": 1, "Harry": {"_count": 1}}, "inches": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "ominously": {"_count": 1, "exactly": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "silence": {"_count": 1, "everybody": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "castle": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "fingers": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "lay": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "possibly": {"_count": 60, "know": {"_count": 5, "where": {"_count": 1}, "theyd": {"_count": 1}, "how": {"_count": 1}, "that": {"_count": 1}, "whether": {"_count": 1}}, "be": {"_count": 10, "": {"_count": 2}, "anyone": {"_count": 1}, "the": {"_count": 2}, "worse": {"_count": 1}, "here": {"_count": 1}, "information": {"_count": 1}, "related": {"_count": 1}, "feeling": {"_count": 1}}, "need": {"_count": 1, "such": {"_count": 1}}, "steal": {"_count": 1, "it": {"_count": 1}}, "mention": {"_count": 1, "to": {"_count": 1}}, "do": {"_count": 1, "that": {"_count": 1}}, "let": {"_count": 1, "you": {"_count": 1}}, "suspect": {"_count": 1, "him": {"_count": 1}}, "work": {"_count": 2, "Harry": {"_count": 1}, "against": {"_count": 1}}, "the": {"_count": 2, "most": {"_count": 1}, "least": {"_count": 1}}, "have": {"_count": 4, "gotten": {"_count": 1}, "committed": {"_count": 1}, "entered": {"_count": 2}}, "execute": {"_count": 1, "Buckbeak": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "can": {"_count": 1, "": {"_count": 1}}, "mean": {"_count": 1, "what": {"_count": 1}}, "dangerous": {"_count": 3, "writes": {"_count": 1}, "But": {"_count": 1}, "he": {"_count": 1}}, "fit": {"_count": 1, "him": {"_count": 1}}, "ignore": {"_count": 1, "a": {"_count": 1}}, "violent": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "important": {"_count": 1}}, "persuade": {"_count": 1, "Mrs": {"_count": 1}}, "say": {"_count": 1, "to": {"_count": 1}}, "even": {"_count": 1, "wilder": {"_count": 1}}, "taking": {"_count": 1, "his": {"_count": 1}}, "wish": {"_count": 1, "and": {"_count": 1}}, "troubled": {"_count": 1, "one": {"_count": 1}}, "live": {"_count": 1, "there": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "explain": {"_count": 1, "to": {"_count": 1}}, "several": {"_count": 1, "sunlit": {"_count": 1}}, "imagine": {"_count": 3, "": {"_count": 2}, "Cissy": {"_count": 1}}, "unique": {"_count": 1, "": {"_count": 1}}, "tearful": {"_count": 1, "farewells": {"_count": 1}}, "depending": {"_count": 1, "on": {"_count": 1}}, "frightened": {"_count": 1, "of": {"_count": 1}}, "believe": {"_count": 1, "": {"_count": 1}}, "prove": {"_count": 1, "it": {"_count": 1}}}, "sleeps": {"_count": 5, "": {"_count": 1, "?": {"_count": 1}}, "it": {"_count": 1, "off": {"_count": 1}}, "opened": {"_count": 1, "their": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "Watching": {"_count": 5, "spying": {"_count": 1, "might": {"_count": 1}}, "Harry": {"_count": 2, "fearfully": {"_count": 1}, "being": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "news": {"_count": 1}}}, "following": {"_count": 127, "us": {"_count": 1, "muttered": {"_count": 1}}, "her": {"_count": 4, "from": {"_count": 1}, "gaze": {"_count": 1}, "master": {"_count": 1}, "": {"_count": 1}}, "The": {"_count": 1, "Standard": {"_count": 1}}, "they": {"_count": 1, "swung": {"_count": 1}}, "them": {"_count": 2, "out": {"_count": 1}, "when": {"_count": 1}}, "words": {"_count": 1, "Your": {"_count": 1}}, "him": {"_count": 11, "trying": {"_count": 1}, "": {"_count": 3}, "as": {"_count": 3}, "hearing": {"_count": 1}, "right": {"_count": 1}, "his": {"_count": 1}, "but": {"_count": 1}}, "week": {"_count": 4, "dragged": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 1}}, "morning": {"_count": 15, "notes": {"_count": 1}, "he": {"_count": 2}, "with": {"_count": 1}, "hardly": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 3}, "it": {"_count": 1}, "putting": {"_count": 1}, "was": {"_count": 1}, "when": {"_count": 2}, "at": {"_count": 1}}, "Wednesday": {"_count": 2, "": {"_count": 1}, "did": {"_count": 1}}, "their": {"_count": 1, "progress": {"_count": 1}}, "a": {"_count": 4, "path": {"_count": 1}, "tennis": {"_count": 1}, "carefully": {"_count": 1}, "serious": {"_count": 1}}, "the": {"_count": 14, "sound": {"_count": 2}, "owl": {"_count": 1}, "spitting": {"_count": 1}, "diet": {"_count": 1}, "lantern": {"_count": 1}, "bouncing": {"_count": 1}, "mersong": {"_count": 1}, "beam": {"_count": 1}, "swishing": {"_count": 1}, "freshly": {"_count": 1}, "Ministry": {"_count": 1}, "train": {"_count": 1}, "goblin": {"_count": 1}}, "orders": {"_count": 1, "he": {"_count": 1}}, "something": {"_count": 1, "silvery": {"_count": 1}}, "Dudleys": {"_count": 1, "diet": {"_count": 1}}, "rules": {"_count": 1, "and": {"_count": 1}}, "Krum": {"_count": 2, "with": {"_count": 1}, "through": {"_count": 1}}, "letter": {"_count": 1, "Dear": {"_count": 1}}, "his": {"_count": 5, "lead": {"_count": 1}, "progress": {"_count": 1}, "orders": {"_count": 1}, "movements": {"_count": 1}, "own": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "my": {"_count": 1}}, "day": {"_count": 12, "showed": {"_count": 1}, "two": {"_count": 1}, "dawned": {"_count": 1}, "escorted": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}, "by": {"_count": 1}, "for": {"_count": 1}, "but": {"_count": 2}, "nor": {"_count": 1}, "it": {"_count": 1}}, "Siriuss": {"_count": 1, "wagging": {"_count": 1}}, "evening": {"_count": 2, "": {"_count": 2}}, "me": {"_count": 1, "": {"_count": 1}}, "known": {"_count": 1, "Death": {"_count": 1}}, "you": {"_count": 1, "Harry": {"_count": 1}}, "your": {"_count": 1, "fortunes": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "afternoon": {"_count": 2, "": {"_count": 1}, "found": {"_count": 1}}, "Hermione": {"_count": 1, "along": {"_count": 1}}, "two": {"_count": 1, "weeks": {"_count": 1}}, "GrubblyPlanks": {"_count": 1, "plan": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "Hermiones": {"_count": 1, "advice": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "issue": {"_count": 1, "said": {"_count": 1}}, "Saturday": {"_count": 2, "he": {"_count": 1}, "at": {"_count": 1}}, "close": {"_count": 1, "behind": {"_count": 1}}, "simple": {"_count": 1, "security": {"_count": 1}}, "Thursday": {"_count": 1, "Harry": {"_count": 1}}, "Malfoy": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "along": {"_count": 1, "in": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "Slughorn": {"_count": 1}}, "weekend": {"_count": 1, "Ron": {"_count": 1}}, "fortnight": {"_count": 1, "saw": {"_count": 1}}, "Dumbledores": {"_count": 1, "death": {"_count": 1}}, "years": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 2, "out": {"_count": 1}, "Hermione": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "Hagrids": {"_count": 1, "lead": {"_count": 1}}, "an": {"_count": 1, "angry": {"_count": 1}}, "Luna": {"_count": 1, "into": {"_count": 1}}}, "wildly": {"_count": 60, "": {"_count": 9, ".": {"_count": 9}}, "at": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "seemed": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "herself": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "one": {"_count": 1}}, "around": {"_count": 16, "": {"_count": 5}, "and": {"_count": 1}, "to": {"_count": 1}, "Malfoy": {"_count": 1}, "at": {"_count": 2}, "through": {"_count": 1}, "the": {"_count": 3}, "for": {"_count": 2}}, "about": {"_count": 2, "for": {"_count": 1}, "him": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "started": {"_count": 1}}, "up": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "someone": {"_count": 1, "anyone": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 2}, "he": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}, "mistaken": {"_count": 1, "": {"_count": 1}}, "enthusiastic": {"_count": 1, "applause": {"_count": 1}}, "with": {"_count": 1, "thin": {"_count": 1}}, "over": {"_count": 3, "his": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "beneath": {"_count": 1, "her": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "his": {"_count": 1, "arms": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "from": {"_count": 1, "Ginny": {"_count": 1}}, "of": {"_count": 1, "fireworks": {"_count": 1}}, "and": {"_count": 1, "Krum": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "transparent": {"_count": 1, "attempt": {"_count": 1}}}, "Should": {"_count": 23, "we": {"_count": 5, "write": {"_count": 1}, "go": {"_count": 1}, "leave": {"_count": 1}, "call": {"_count": 1}, "say": {"_count": 1}}, "tell": {"_count": 1, "Filch": {"_count": 1}}, "Harry": {"_count": 1, "wake": {"_count": 1}}, "call": {"_count": 1, "Filch": {"_count": 1}}, "I": {"_count": 5, "break": {"_count": 1}, "send": {"_count": 1}, "go": {"_count": 1}, "": {"_count": 1}, "do": {"_count": 1}}, "he": {"_count": 1, "perhaps": {"_count": 1}}, "stop": {"_count": 1, "students": {"_count": 1}}, "be": {"_count": 4, "a": {"_count": 2}, "fun": {"_count": 1}, "right": {"_count": 1}}, "have": {"_count": 1, "spent": {"_count": 1}}, "slow": {"_count": 1, "down": {"_count": 1}}, "Have": {"_count": 1, "Told": {"_count": 1}}, "the": {"_count": 1, "Dark": {"_count": 1}}}, "write": {"_count": 68, "back": {"_count": 6, "": {"_count": 2}, "while": {"_count": 1}, "to": {"_count": 1}, "quickly": {"_count": 2}}, "it": {"_count": 4, "down": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "myself": {"_count": 1}}, "an": {"_count": 3, "essay": {"_count": 2}, "answer": {"_count": 1}}, "to": {"_count": 12, "Harry": {"_count": 1}, "Mum": {"_count": 1}, "Mrs": {"_count": 1}, "Dad": {"_count": 1}, "Azkaban": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}, "tell": {"_count": 1}, "me": {"_count": 2}, "Flourish": {"_count": 1}}, "up": {"_count": 2, "Peeves": {"_count": 1}, "the": {"_count": 1}}, "her": {"_count": 1, "own": {"_count": 1}}, "his": {"_count": 1, "essay": {"_count": 1}}, "pausing": {"_count": 1, "every": {"_count": 1}}, "him": {"_count": 3, "a": {"_count": 1}, "letters": {"_count": 1}, "messages": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "next": {"_count": 1, "But": {"_count": 1}}, "the": {"_count": 3, "Marauders": {"_count": 1}, "story": {"_count": 1}, "whole": {"_count": 1}}, "all": {"_count": 1, "sorts": {"_count": 1}}, "again": {"_count": 1, "soon": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "and": {"_count": 4, "tell": {"_count": 3}, "say": {"_count": 1}}, "down": {"_count": 1, "everything": {"_count": 1}}, "their": {"_count": 3, "name": {"_count": 2}, "names": {"_count": 1}}, "lines": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "essays": {"_count": 1}}, "\u2018": {"_count": 1, "I": {"_count": 1}}, "sunlight": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "down": {"_count": 1}}, "me": {"_count": 1, "an": {"_count": 1}}, "another": {"_count": 1, "couple": {"_count": 1}}, "more": {"_count": 1, "horrible": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "book": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "about": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "occasionally": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "sending": {"_count": 1}}, "fer": {"_count": 1, "ages": {"_count": 1}}}, "Tell": {"_count": 64, "them": {"_count": 3, "we": {"_count": 1}, "the": {"_count": 1}, "whatever": {"_count": 1}}, "yeh": {"_count": 2, "what": {"_count": 2}}, "me": {"_count": 24, "the": {"_count": 2}, "Dobby": {"_count": 1}, "everything": {"_count": 1}, "which": {"_count": 1}, "boy": {"_count": 1}, "about": {"_count": 4}, "what": {"_count": 3}, "he": {"_count": 2}, "how": {"_count": 3}, "Potter": {"_count": 1}, "when": {"_count": 2}, "": {"_count": 1}, "one": {"_count": 1}, "whether": {"_count": 1}}, "us": {"_count": 7, "have": {"_count": 1}, "whats": {"_count": 1}, "darling": {"_count": 1}, "about": {"_count": 2}, "what": {"_count": 2}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "him": {"_count": 13, "what": {"_count": 4}, "from": {"_count": 3}, "yourself": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 2}, "Harry": {"_count": 1}, "that": {"_count": 1}}, "you": {"_count": 5, "when": {"_count": 1}, "what": {"_count": 4}}, "Flitwick": {"_count": 1, "Im": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "Mummy": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 4, "others": {"_count": 1}, "truth": {"_count": 3}}, "anyone": {"_count": 1, "said": {"_count": 1}}}, "shiny": {"_count": 33, "black": {"_count": 4, "shoes": {"_count": 1}, "hair": {"_count": 2}, "bun": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "floor": {"_count": 1, "and": {"_count": 1}}, "engraved": {"_count": 1, "trophy": {"_count": 1}}, "badge": {"_count": 1, "": {"_count": 1}}, "bald": {"_count": 2, "head": {"_count": 2}}, "already": {"_count": 1, "it": {"_count": 1}}, "stripe": {"_count": 1, "had": {"_count": 1}}, "glinted": {"_count": 1, "in": {"_count": 1}}, "burn": {"_count": 1, "on": {"_count": 1}}, "face": {"_count": 1, "he": {"_count": 1}}, "swellings": {"_count": 1, "upon": {"_count": 1}}, "armor": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "twisted": {"_count": 1}, "silky": {"_count": 1}, "pink": {"_count": 1}}, "beetlelike": {"_count": 1, "wings": {"_count": 1}}, "dark": {"_count": 1, "wood": {"_count": 1}}, "new": {"_count": 1, "prefects": {"_count": 1}}, "that": {"_count": 1, "turned": {"_count": 1}}, "objects": {"_count": 1, "leapt": {"_count": 1}}, "pate": {"_count": 1, "his": {"_count": 1}}, "strawcolored": {"_count": 2, "hair": {"_count": 2}}, "Galleonsized": {"_count": 1, "bald": {"_count": 1}}, "forehead": {"_count": 1, "gleamed": {"_count": 1}}}, "shoes": {"_count": 32, "pacing": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "because": {"_count": 1, "their": {"_count": 1}}, "four": {"_count": 1, "sizes": {"_count": 1}}, "and": {"_count": 7, "stood": {"_count": 1}, "had": {"_count": 1}, "socks": {"_count": 3}, "umbrellas": {"_count": 1}, "rubbing": {"_count": 1}}, "please": {"_count": 1, "Potter": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "halfpolished": {"_count": 1, "but": {"_count": 1}}, "pulled": {"_count": 1, "off": {"_count": 1}}, "were": {"_count": 1, "very": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "she": {"_count": 1, "cant": {"_count": 1}}, "my": {"_count": 1, "brother": {"_count": 1}}, "dont": {"_count": 1, "prevent": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "found": {"_count": 1, "the": {"_count": 1}}, "Charmanti": {"_count": 1, "Madame": {"_count": 1}}, "Harry": {"_count": 1, "no": {"_count": 1}}, "feet": {"_count": 1, "and": {"_count": 1}}, "Quickly": {"_count": 1, "He": {"_count": 1}}, "His": {"_count": 1, "long": {"_count": 1}}}, "pacing": {"_count": 28, "up": {"_count": 10, "and": {"_count": 10}}, "the": {"_count": 4, "spot": {"_count": 1}, "Quidditch": {"_count": 1}, "living": {"_count": 2}}, "his": {"_count": 2, "study": {"_count": 1}, "eyes": {"_count": 1}}, "and": {"_count": 4, "Hermione": {"_count": 1}, "ignoring": {"_count": 1}, "looked": {"_count": 1}, "stood": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 3}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "side": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "to": {"_count": 1}}}, "ignore": {"_count": 39, "it": {"_count": 7, "": {"_count": 3}, "completely": {"_count": 1}, "all": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}}, "the": {"_count": 12, "stabbing": {"_count": 1}, "fact": {"_count": 1}, "way": {"_count": 2}, "sounds": {"_count": 1}, "sinking": {"_count": 1}, "situation": {"_count": 1}, "chorus": {"_count": 1}, "others": {"_count": 1}, "gleeful": {"_count": 1}, "warnings": {"_count": 1}, "pulsing": {"_count": 1}}, "magic": {"_count": 1, "even": {"_count": 1}}, "him": {"_count": 3, "its": {"_count": 1}, "like": {"_count": 1}, "Harry": {"_count": 1}}, "Nevilles": {"_count": 1, "small": {"_count": 1}}, "them": {"_count": 6, "ignore": {"_count": 2}, "under": {"_count": 1}, "all": {"_count": 1}, "any": {"_count": 1}, "intoned": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "dementor": {"_count": 1}}, "more": {"_count": 1, "whispering": {"_count": 1}}, "so": {"_count": 1, "half": {"_count": 1}}, "how": {"_count": 1, "hungry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "they": {"_count": 1}}, "their": {"_count": 1, "glasses": {"_count": 1}}}, "Didnt": {"_count": 73, "we": {"_count": 1, "swear": {"_count": 1}}, "know": {"_count": 2, "who": {"_count": 1}, "what": {"_count": 1}}, "dare": {"_count": 1, "try": {"_count": 1}}, "even": {"_count": 2, "scratch": {"_count": 1}, "answer": {"_count": 1}}, "you": {"_count": 22, "see": {"_count": 5}, "hear": {"_count": 6}, "say": {"_count": 2}, "Professor": {"_count": 1}, "ever": {"_count": 2}, "realize": {"_count": 1}, "listen": {"_count": 2}, "know": {"_count": 1}, "tell": {"_count": 1}, "smash": {"_count": 1}}, "want": {"_count": 1, "another": {"_count": 1}}, "people": {"_count": 1, "always": {"_count": 1}}, "I": {"_count": 12, "state": {"_count": 1}, "tell": {"_count": 6}, "say": {"_count": 2}, "ask": {"_count": 1}, "understand": {"_count": 1}, "": {"_count": 1}}, "catch": {"_count": 2, "that": {"_count": 2}}, "realize": {"_count": 3, "it": {"_count": 2}, "that": {"_count": 1}}, "they": {"_count": 3, "want": {"_count": 1}, "attack": {"_count": 1}, "realize": {"_count": 1}}, "care": {"_count": 1, "last": {"_count": 1}}, "mind": {"_count": 1, "slaughtering": {"_count": 1}}, "make": {"_count": 1, "any": {"_count": 1}}, "work": {"_count": 2, "did": {"_count": 1}, "that": {"_count": 1}}, "she": {"_count": 1, "ever": {"_count": 1}}, "like": {"_count": 2, "to": {"_count": 1}, "ter": {"_count": 1}}, "sound": {"_count": 1, "like": {"_count": 1}}, "bother": {"_count": 1, "to": {"_count": 1}}, "i": {"_count": 1, "": {"_count": 1}}, "hear": {"_count": 1, "my": {"_count": 1}}, "this": {"_count": 1, "look": {"_count": 1}}, "the": {"_count": 2, "headmaster": {"_count": 1}, "simple": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}, "Doge": {"_count": 1, "understand": {"_count": 1}}, "Aberforth": {"_count": 1, "break": {"_count": 1}}, "Hermione": {"_count": 1, "say": {"_count": 1}}, "manage": {"_count": 1, "to": {"_count": 1}}, "1": {"_count": 1, "tell": {"_count": 1}}, "their": {"_count": 1, "stupidity": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}}, "swear": {"_count": 46, "when": {"_count": 1, "we": {"_count": 1}}, "I": {"_count": 11, "didnt": {"_count": 1}, "will": {"_count": 2}, "wouldnt": {"_count": 1}, "wont": {"_count": 2}, "I": {"_count": 1}, "did": {"_count": 2}, "shall": {"_count": 1}, "just": {"_count": 1}}, "it": {"_count": 5, "in": {"_count": 1}, "Father": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "isnt": {"_count": 1}}, "Ill": {"_count": 1, "remember": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "that": {"_count": 6, "I": {"_count": 5}, "they": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "word": {"_count": 2, "": {"_count": 2}}, "by": {"_count": 1, "return": {"_count": 1}}, "we": {"_count": 1, "wouldnt": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "Im": {"_count": 1, "going": {"_count": 1}}, "theyre": {"_count": 2, "going": {"_count": 1}, "getting": {"_count": 1}}, "Rons": {"_count": 1, "grown": {"_count": 1}}, "loudly": {"_count": 1, "if": {"_count": 1}}, "vengeance": {"_count": 1, "": {"_count": 1}}, "words": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}, "Id": {"_count": 1, "like": {"_count": 1}}, "a": {"_count": 1, "Muggleborns": {"_count": 1}}, "at": {"_count": 1, "Ron": {"_count": 1}}, "its": {"_count": 1, "turned": {"_count": 1}}}, "Wheres": {"_count": 59, "my": {"_count": 6, "letter": {"_count": 1}, "Dudders": {"_count": 1}, "neffypoo": {"_count": 1}, "wand": {"_count": 3}}, "the": {"_count": 9, "cannon": {"_count": 1}, "dog": {"_count": 1}, "new": {"_count": 1}, "proof": {"_count": 1}, "exit": {"_count": 1}, "way": {"_count": 1}, "locket": {"_count": 2}, "sword": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "Mommy": {"_count": 1, "": {"_count": 1}}, "Dumbledores": {"_count": 1, "office": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "Lockhart": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 5, "": {"_count": 4}, "gone": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "that": {"_count": 1}, "accursed": {"_count": 1}}, "Professor": {"_count": 2, "Lupin": {"_count": 1}, "Snape": {"_count": 1}}, "Buckbeak": {"_count": 1, "Hagrid": {"_count": 1}}, "Ron": {"_count": 2, "": {"_count": 2}}, "Sirius": {"_count": 3, "": {"_count": 2}, "Kreacher": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "Crookshanks": {"_count": 2, "": {"_count": 2}}, "Hagrid": {"_count": 4, "": {"_count": 4}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 1, "come": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 1, "": {"_count": 1}}, "Pig": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 3, "gone": {"_count": 3}}, "mine": {"_count": 1, "": {"_count": 1}}, "Hokey": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "Hedwig": {"_count": 1, "Harry": {"_count": 1}}, "Luna": {"_count": 3, "": {"_count": 3}}, "Ginny": {"_count": 1, "": {"_count": 1}}}, "squeezed": {"_count": 40, "through": {"_count": 6, "the": {"_count": 2}, "it": {"_count": 2}, "a": {"_count": 1}, "space": {"_count": 1}}, "his": {"_count": 2, "way": {"_count": 2}}, "together": {"_count": 2, "to": {"_count": 2}}, "inside": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 3, "them": {"_count": 2}, "two": {"_count": 1}}, "past": {"_count": 4, "a": {"_count": 1}, "Neville": {"_count": 1}, "Hagrid": {"_count": 1}, "them": {"_count": 1}}, "it": {"_count": 3, "too": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 3, "among": {"_count": 1}, "through": {"_count": 1}, "around": {"_count": 1}}, "himself": {"_count": 2, "through": {"_count": 1}, "into": {"_count": 1}}, "Buckbeaks": {"_count": 1, "sides": {"_count": 1}}, "the": {"_count": 1, "Dursleys": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 2}, "it": {"_count": 1}, "Hogwarts": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "itself": {"_count": 2, "out": {"_count": 1}, "into": {"_count": 1}}, "herself": {"_count": 1, "onto": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}, "tightly": {"_count": 1, "against": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "Whos": {"_count": 91, "writing": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 14, "": {"_count": 14}}, "that": {"_count": 11, "teacher": {"_count": 1}, "": {"_count": 9}, "for": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "plotting": {"_count": 1, "them": {"_count": 1}}, "inner": {"_count": 1, "circle": {"_count": 1}}, "Errol": {"_count": 1, "": {"_count": 1}}, "giving": {"_count": 1, "out": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "looking": {"_count": 1, "after": {"_count": 1}}, "attack": {"_count": 1, "an": {"_count": 1}}, "supporters": {"_count": 3, "called": {"_count": 1}, "up": {"_count": 1}, "into": {"_count": 1}}, "this": {"_count": 1, "impartial": {"_count": 1}}, "avoiding": {"_count": 1, "you": {"_count": 1}}, "just": {"_count": 1, "been": {"_count": 1}}, "got": {"_count": 3, "a": {"_count": 2}, "wands": {"_count": 1}}, "fall": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 1, "to": {"_count": 1}}, "getting": {"_count": 1, "stronger": {"_count": 1}}, "instructions": {"_count": 1, "": {"_count": 1}}, "orders": {"_count": 1, "but": {"_count": 1}}, "Cedric": {"_count": 1, "your": {"_count": 1}}, "in": {"_count": 2, "it": {"_count": 1}, "charge": {"_count": 1}}, "back": {"_count": 5, "": {"_count": 4}, "so": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}, "Hufflepuff": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "been": {"_count": 1}}, "controlling": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 2, "letter": {"_count": 1}, "ghost": {"_count": 1}}, "told": {"_count": 1, "yeh": {"_count": 1}}, "after": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "snake": {"_count": 2, "": {"_count": 1}, "turned": {"_count": 1}}, "possessing": {"_count": 1, "him": {"_count": 1}}, "followers": {"_count": 1, "": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 2}}, "\u2018she": {"_count": 1, "Dobby": {"_count": 1}}, "Grawp": {"_count": 1, "": {"_count": 1}}, "Last": {"_count": 1, "Attempt": {"_count": 1}}, "she": {"_count": 1, "with": {"_count": 1}}, "Mark": {"_count": 1, "had": {"_count": 1}}, "Professor": {"_count": 1, "Slughorn": {"_count": 1}}, "bin": {"_count": 1, "cursed": {"_count": 1}}, "Grey": {"_count": 1, "back": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Gregorovitch": {"_count": 1, "": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "name": {"_count": 1, "": {"_count": 1}}, "side": {"_count": 1, "and": {"_count": 1}}, "grandfather": {"_count": 1, "": {"_count": 1}}, "line": {"_count": 1, "all": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "been": {"_count": 1, "places": {"_count": 1}}, "won": {"_count": 1, "its": {"_count": 1}}, "lent": {"_count": 1, "you": {"_count": 1}}, "spying": {"_count": 1, "now": {"_count": 1}}}, "shortly": {"_count": 83, "": {"_count": 36, ".": {"_count": 36}}, "but": {"_count": 1, "before": {"_count": 1}}, "be": {"_count": 5, "getting": {"_count": 1}, "suffering": {"_count": 1}, "telling": {"_count": 1}, "meeting": {"_count": 1}, "a": {"_count": 1}}, "joined": {"_count": 1, "by": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "after": {"_count": 13, "New": {"_count": 1}, "yourself": {"_count": 1}, "you": {"_count": 2}, "nine": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}, "dinner": {"_count": 1}, "they": {"_count": 1}, "giving": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}, "my": {"_count": 1}}, "help": {"_count": 1, "me": {"_count": 1}}, "afterward": {"_count": 6, "": {"_count": 4}, "and": {"_count": 1}, "he": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "then": {"_count": 1, "come": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 2, "destroy": {"_count": 2}}, "getting": {"_count": 1, "to": {"_count": 1}}, "dragging": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 6, "Christmas": {"_count": 3}, "the": {"_count": 1}, "your": {"_count": 1}, "arriving": {"_count": 1}}, "tugging": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "watched": {"_count": 1}}, "racing": {"_count": 1, "past": {"_count": 1}}, "become": {"_count": 1, "husband": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "burned": {"_count": 65, "it": {"_count": 1, "": {"_count": 1}}, "raw": {"_count": 1, "red": {"_count": 1}}, "as": {"_count": 3, "Lockhart": {"_count": 1}, "well": {"_count": 1}, "ever": {"_count": 1}}, "lower": {"_count": 1, "and": {"_count": 1}}, "charcoalblack": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "Harrys": {"_count": 1, "mouth": {"_count": 1}}, "your": {"_count": 1, "eyes": {"_count": 1}}, "itself": {"_count": 1, "into": {"_count": 1}}, "up": {"_count": 1, "all": {"_count": 1}}, "a": {"_count": 3, "sizzling": {"_count": 1}, "small": {"_count": 1}, "hole": {"_count": 1}}, "so": {"_count": 2, "much": {"_count": 1}, "badly": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "low": {"_count": 1, "giving": {"_count": 1}}, "dully": {"_count": 1, "on": {"_count": 1}}, "black": {"_count": 1, "but": {"_count": 1}}, "into": {"_count": 4, "him": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}}, "rubber": {"_count": 1, "": {"_count": 1}}, "whitehot": {"_count": 2, "as": {"_count": 2}}, "blue": {"_count": 1, "their": {"_count": 1}}, "showing": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "and": {"_count": 5, "blackened": {"_count": 1}, "blurred": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "blistered": {"_count": 1}}, "suddenly": {"_count": 2, "and": {"_count": 1}, "whitehot": {"_count": 1}}, "fingers": {"_count": 1, "toward": {"_count": 1}}, "with": {"_count": 2, "tears": {"_count": 1}, "that": {"_count": 1}}, "scarlet": {"_count": 1, "for": {"_count": 1}}, "like": {"_count": 1, "fire": {"_count": 1}}, "again": {"_count": 1, "as": {"_count": 1}}, "down": {"_count": 1, "Dedalus": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 3, "him": {"_count": 3}}, "savagely": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "question": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "SILENCE": {"_count": 4, "": {"_count": 4, "!": {"_count": 4}}}, "deep": {"_count": 232, "breaths": {"_count": 8, "and": {"_count": 4}, "willing": {"_count": 1}, "that": {"_count": 1}, "glaring": {"_count": 1}, "": {"_count": 1}}, "breath": {"_count": 41, "and": {"_count": 18}, "covered": {"_count": 1}, "scattered": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 10}, "as": {"_count": 2}, "that": {"_count": 1}, "Rons": {"_count": 1}, "looked": {"_count": 1}, "knocked": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 1}, "of": {"_count": 1}}, "under": {"_count": 1, "London": {"_count": 1}}, "inside": {"_count": 3, "his": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "into": {"_count": 7, "Goyle": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "purple": {"_count": 3, "sky": {"_count": 1}, "shadows": {"_count": 1}, "though": {"_count": 1}}, "red": {"_count": 2, "velvet": {"_count": 1}, "": {"_count": 1}}, "cracks": {"_count": 1, "in": {"_count": 1}}, "sorrowful": {"_count": 1, "voice": {"_count": 1}}, "mind": {"_count": 1, "centaurs": {"_count": 1}}, "this": {"_count": 1, "thing": {"_count": 1}}, "sleep": {"_count": 3, "": {"_count": 3}}, "disgust": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "bow": {"_count": 5, "": {"_count": 2}, "so": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}}, "pink": {"_count": 1, "": {"_count": 1}}, "trouble": {"_count": 2, "": {"_count": 2}}, "trays": {"_count": 1, "as": {"_count": 1}}, "stupor": {"_count": 1, "occasionally": {"_count": 1}}, "plum": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 2}}, "grunt": {"_count": 1, "of": {"_count": 1}}, "booming": {"_count": 2, "barks": {"_count": 1}, "gong": {"_count": 1}}, "down": {"_count": 2, "": {"_count": 1}, "Perhaps": {"_count": 1}}, "velvety": {"_count": 1, "blue": {"_count": 1}}, "gash": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "in": {"_count": 20, "conversation": {"_count": 7}, "the": {"_count": 4}, "talk": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 3}, "discussion": {"_count": 1}, "thought": {"_count": 2}, "determined": {"_count": 1}}, "resentment": {"_count": 1, "on": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "rattling": {"_count": 1, "breath": {"_count": 1}}, "calming": {"_count": 3, "breaths": {"_count": 1}, "voice": {"_count": 1}, "breath": {"_count": 1}}, "paddling": {"_count": 1, "pool": {"_count": 1}}, "loud": {"_count": 1, "purring": {"_count": 1}}, "dark": {"_count": 2, "sockets": {"_count": 1}, "cool": {"_count": 1}}, "and": {"_count": 4, "her": {"_count": 1}, "gravelly": {"_count": 1}, "untouched": {"_count": 1}, "his": {"_count": 1}}, "sniff": {"_count": 1, "of": {"_count": 1}}, "steadying": {"_count": 3, "breath": {"_count": 3}}, "blue": {"_count": 4, "sky": {"_count": 2}, "eyes": {"_count": 1}, "shot": {"_count": 1}}, "swig": {"_count": 1, "of": {"_count": 1}}, "sigh": {"_count": 7, "": {"_count": 4}, "as": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 1}}, "green": {"_count": 2, "robes": {"_count": 1}, "mountains": {"_count": 1}}, "voice": {"_count": 13, "echoing": {"_count": 1}, "": {"_count": 5}, "broke": {"_count": 1}, "he": {"_count": 1}, "like": {"_count": 1}, "was": {"_count": 1}, "say": {"_count": 1}, "had": {"_count": 1}, "echoed": {"_count": 1}}, "crimson": {"_count": 2, "hangings": {"_count": 1}, "liquid": {"_count": 1}}, "affection": {"_count": 1, "for": {"_count": 1}}, "bloodred": {"_count": 1, "": {"_count": 1}}, "amused": {"_count": 1, "voice": {"_count": 1}}, "reverie": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "channels": {"_count": 1, "made": {"_count": 1}}, "pool": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "his": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "water": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "skepticism": {"_count": 1, "behind": {"_count": 1}}, "clear": {"_count": 1, "blue": {"_count": 1}}, "hoarse": {"_count": 1, "voice": {"_count": 1}}, "pocket": {"_count": 1, "and": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "shuddering": {"_count": 2, "breath": {"_count": 2}}, "slow": {"_count": 4, "voice": {"_count": 3}, "breathing": {"_count": 1}}, "cut": {"_count": 5, "": {"_count": 2}, "he": {"_count": 1}, "under": {"_count": 1}, "into": {"_count": 1}}, "pull": {"_count": 1, "on": {"_count": 1}}, "satisfaction": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "cuts": {"_count": 2, "there": {"_count": 1}, "appeared": {"_count": 1}}, "breathing": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "dramatic": {"_count": 1, "wavering": {"_count": 1}}, "thundery": {"_count": 1, "gray": {"_count": 1}}, "grunting": {"_count": 1, "breathing": {"_count": 1}}, "male": {"_count": 1, "voice": {"_count": 1}}, "rumbling": {"_count": 1, "voice": {"_count": 1}}, "gonglike": {"_count": 1, "note": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "well": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "welts": {"_count": 1, "on": {"_count": 1}}, "darkness": {"_count": 1, "": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}, "vibrant": {"_count": 1, "tones": {"_count": 1}}, "attraction": {"_count": 1, "to": {"_count": 1}}, "grave": {"_count": 1, "voice": {"_count": 1}}, "draught": {"_count": 1, "from": {"_count": 1}}, "wounds": {"_count": 1, "Harrys": {"_count": 1}}, "ripples": {"_count": 2, "on": {"_count": 1}, "upon": {"_count": 1}}, "valley": {"_count": 1, "": {"_count": 1}}, "water": {"_count": 1, "Harry": {"_count": 1}}, "scratch": {"_count": 1, "marks": {"_count": 1}}, "trenches": {"_count": 1, "behind": {"_count": 1}}, "roots": {"_count": 1, "in": {"_count": 1}}, "sharp": {"_count": 1, "gulps": {"_count": 1}}, "below": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "coughs": {"_count": 1, "not": {"_count": 1}}, "to": {"_count": 1, "wade": {"_count": 1}}, "measured": {"_count": 1, "reassuring": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "questions": {"_count": 1, "Mr": {"_count": 1}}, "Soon": {"_count": 1, "it": {"_count": 1}}, "dislike": {"_count": 1, "": {"_count": 1}}}, "breaths": {"_count": 15, "and": {"_count": 5, "then": {"_count": 4}, "opened": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "willing": {"_count": 1, "himself": {"_count": 1}}, "that": {"_count": 2, "filled": {"_count": 1}, "sounded": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 1, "detested": {"_count": 1}}, "to": {"_count": 1, "calm": {"_count": 1}}}, "forced": {"_count": 167, "his": {"_count": 8, "face": {"_count": 2}, "leg": {"_count": 1}, "way": {"_count": 3}, "eyes": {"_count": 1}, "own": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 1}}, "himself": {"_count": 13, "to": {"_count": 8}, "into": {"_count": 1}, "not": {"_count": 2}, "through": {"_count": 1}, "on": {"_count": 1}}, "the": {"_count": 18, "sweater": {"_count": 1}, "smelly": {"_count": 1}, "dementors": {"_count": 1}, "door": {"_count": 2}, "sleeve": {"_count": 1}, "mans": {"_count": 1}, "Weasley": {"_count": 1}, "glass": {"_count": 1}, "lid": {"_count": 1}, "answer": {"_count": 1}, "truth": {"_count": 1}, "goblet": {"_count": 1}, "prisoners": {"_count": 2}, "rest": {"_count": 1}, "bundle": {"_count": 1}, "hat": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 52, "play": {"_count": 1}, "fly": {"_count": 1}, "do": {"_count": 4}, "call": {"_count": 1}, "think": {"_count": 1}, "roll": {"_count": 1}, "wait": {"_count": 1}, "remain": {"_count": 1}, "let": {"_count": 2}, "take": {"_count": 2}, "scatter": {"_count": 1}, "start": {"_count": 1}, "modify": {"_count": 1}, "act": {"_count": 1}, "pickle": {"_count": 1}, "wear": {"_count": 1}, "hear": {"_count": 1}, "flee": {"_count": 1}, "swallow": {"_count": 1}, "the": {"_count": 1}, "accept": {"_count": 3}, "give": {"_count": 1}, "duck": {"_count": 1}, "conjure": {"_count": 1}, "bear": {"_count": 1}, "stop": {"_count": 1}, "lie": {"_count": 1}, "jinx": {"_count": 1}, "remind": {"_count": 1}, "concede": {"_count": 1}, "conclude": {"_count": 3}, "study": {"_count": 1}, "lurk": {"_count": 1}, "watch": {"_count": 1}, "recognize": {"_count": 1}, "return": {"_count": 1}, "stoop": {"_count": 1}, "separate": {"_count": 1}, "gaze": {"_count": 1}, "make": {"_count": 1}, "pull": {"_count": 1}, "obey": {"_count": 1}, "follow": {"_count": 1}}, "a": {"_count": 5, "laugh": {"_count": 3}, "smile": {"_count": 1}, "measure": {"_count": 1}}, "laugh": {"_count": 1, "and": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 2, "into": {"_count": 1}, "upward": {"_count": 1}}, "into": {"_count": 5, "that": {"_count": 1}, "pillowlined": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "subservience": {"_count": 1}}, "him": {"_count": 10, "off": {"_count": 1}, "to": {"_count": 5}, "back": {"_count": 1}, "down": {"_count": 1}, "headfirst": {"_count": 1}, "through": {"_count": 1}}, "backward": {"_count": 2, "again": {"_count": 1}, "a": {"_count": 1}}, "me": {"_count": 1, "DONT": {"_count": 1}}, "nor": {"_count": 1, "did": {"_count": 1}}, "or": {"_count": 1, "otherwise": {"_count": 1}}, "conversation": {"_count": 1, "but": {"_count": 1}}, "Hermione": {"_count": 1, "to": {"_count": 1}}, "deep": {"_count": 1, "into": {"_count": 1}}, "down": {"_count": 2, "some": {"_count": 1}, "a": {"_count": 1}}, "calm": {"_count": 3, "that": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}}, "countless": {"_count": 1, "people": {"_count": 1}}, "around": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "her": {"_count": 5, "on": {"_count": 1}, "into": {"_count": 1}, "face": {"_count": 1}, "away": {"_count": 1}, "to": {"_count": 1}}, "em": {"_count": 1, "to": {"_count": 1}}, "itself": {"_count": 1, "out": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "both": {"_count": 1, "him": {"_count": 1}}, "their": {"_count": 7, "telescopes": {"_count": 1}, "way": {"_count": 6}}, "back": {"_count": 2, "into": {"_count": 2}}, "in": {"_count": 1, "her": {"_count": 1}}, "out": {"_count": 1, "a": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "your": {"_count": 1, "mother": {"_count": 1}}, "toughness": {"_count": 1, "in": {"_count": 1}}, "finally": {"_count": 1, "to": {"_count": 1}}, "chuckle": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 2, "along": {"_count": 1}, "into": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "its": {"_count": 1, "way": {"_count": 1}}, "Harrys": {"_count": 1, "eyes": {"_count": 1}}, "upon": {"_count": 1, "them": {"_count": 1}}, "Albus": {"_count": 1, "to": {"_count": 1}}}, "painful": {"_count": 49, "": {"_count": 11, ".": {"_count": 11}}, "was": {"_count": 1, "going": {"_count": 1}}, "death": {"_count": 2, "": {"_count": 2}}, "too": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Madam": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "gasps": {"_count": 1, "running": {"_count": 1}}, "to": {"_count": 3, "turn": {"_count": 1}, "stop": {"_count": 1}, "discuss": {"_count": 1}}, "duty": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "sores": {"_count": 1, "that": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "internal": {"_count": 3, "struggle": {"_count": 3}}, "way": {"_count": 2, "up": {"_count": 1}, "of": {"_count": 1}}, "topic": {"_count": 1, "to": {"_count": 1}}, "poke": {"_count": 1, "in": {"_count": 1}}, "twinge": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "minutes": {"_count": 1, "Cho": {"_count": 1}}, "intensity": {"_count": 1, "at": {"_count": 1}}, "silence": {"_count": 2, "": {"_count": 2}}, "prickle": {"_count": 1, "and": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "hives": {"_count": 1, "": {"_count": 1}}, "injury": {"_count": 1, "by": {"_count": 1}}, "ease": {"_count": 1, "the": {"_count": 1}}, "stabs": {"_count": 1, "": {"_count": 1}}, "restraint": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 1, "made": {"_count": 1}}, "transformation": {"_count": 1, "was": {"_count": 1}}, "face": {"_count": 1, "which": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "Take": {"_count": 57, "this": {"_count": 7, "stuff": {"_count": 1}, "": {"_count": 1}, "thing": {"_count": 1}, "to": {"_count": 1}, "Portkey": {"_count": 1}, "necklace": {"_count": 1}, "as": {"_count": 1}}, "him": {"_count": 5, "up": {"_count": 1}, "away": {"_count": 2}, "right": {"_count": 1}, "": {"_count": 1}}, "another": {"_count": 1, "ten": {"_count": 1}}, "ten": {"_count": 1, "points": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "where": {"_count": 1}}, "your": {"_count": 5, "time": {"_count": 2}, "seat": {"_count": 1}, "hands": {"_count": 1}, "gold": {"_count": 1}}, "er": {"_count": 1, "away": {"_count": 1}}, "its": {"_count": 1, "legs": {"_count": 1}}, "a": {"_count": 1, "bath": {"_count": 1}}, "two": {"_count": 1, "pints": {"_count": 1}}, "them": {"_count": 3, "away": {"_count": 2}, "downstairs": {"_count": 1}}, "it": {"_count": 6, "then": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 1}, "out": {"_count": 1}, "said": {"_count": 1}}, "my": {"_count": 1, "body": {"_count": 1}}, "the": {"_count": 2, "dog": {"_count": 1}, "curse": {"_count": 1}}, "these": {"_count": 2, "straight": {"_count": 1}, "prisoners": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "those": {"_count": 1}}, "care": {"_count": 7, "now": {"_count": 1}, "of": {"_count": 4}, "Harry": {"_count": 1}, "Big": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "Over": {"_count": 1, "pages": {"_count": 1}}, "whatever": {"_count": 1, "you": {"_count": 1}}, "Charms": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 1, "shouted": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "bedrooms": {"_count": 3, "one": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}}, "visitors": {"_count": 24, "usually": {"_count": 1, "Uncle": {"_count": 1}}, "were": {"_count": 3, "now": {"_count": 1}, "scurrying": {"_count": 1}, "walking": {"_count": 1}}, "and": {"_count": 2, "that": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "all": {"_count": 1, "intent": {"_count": 1}}, "from": {"_count": 1, "Beauxbatons": {"_count": 1}}, "stayed": {"_count": 1, "to": {"_count": 1}}, "entrance": {"_count": 2, "before": {"_count": 1}, "London": {"_count": 1}}, "badge": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "a": {"_count": 1}}, "poor": {"_count": 1, "lamb": {"_count": 1}}, "some": {"_count": 1, "privacy": {"_count": 1}}, "craving": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Ogden": {"_count": 1}}, "around": {"_count": 1, "Rons": {"_count": 1}}, "who": {"_count": 1, "seemed": {"_count": 1}}}, "toys": {"_count": 2, "and": {"_count": 2, "things": {"_count": 1}, "their": {"_count": 1}}}, "trip": {"_count": 41, "upstairs": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 7, "the": {"_count": 5}, "Hogsmeade": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "to": {"_count": 9, "Diagon": {"_count": 4}, "Hagrids": {"_count": 1}, "St": {"_count": 1}, "Hogwarts": {"_count": 1}, "Godrics": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 2, "theyre": {"_count": 1}, "Mum": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "Harry": {"_count": 1, "bid": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 1, "up": {"_count": 1}}, "inter": {"_count": 1, "the": {"_count": 1}}, "beyond": {"_count": 1, "Grimmauld": {"_count": 1}}, "next": {"_count": 1, "month": {"_count": 1}}, "an": {"_count": 1, "leave": {"_count": 1}}, "down": {"_count": 1, "Bob": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "remember": {"_count": 1}}, "Albuss": {"_count": 1, "mother": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "Snape": {"_count": 1, "as": {"_count": 1}}}, "monthold": {"_count": 1, "video": {"_count": 1, "camera": {"_count": 1}}}, "lying": {"_count": 217, "on": {"_count": 60, "top": {"_count": 5}, "the": {"_count": 34}, "his": {"_count": 6}, "a": {"_count": 5}, "it": {"_count": 1}, "its": {"_count": 3}, "Bills": {"_count": 1}, "her": {"_count": 2}, "what": {"_count": 1}, "one": {"_count": 1}, "some": {"_count": 1}}, "at": {"_count": 7, "the": {"_count": 4}, "his": {"_count": 2}, "Bellatrixs": {"_count": 1}}, "in": {"_count": 26, "neat": {"_count": 1}, "a": {"_count": 7}, "the": {"_count": 10}, "front": {"_count": 1}, "one": {"_count": 1}, "bed": {"_count": 4}, "St": {"_count": 1}, "rags": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "under": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "motionless": {"_count": 3, "on": {"_count": 1}, "in": {"_count": 2}}, "next": {"_count": 2, "to": {"_count": 2}}, "down": {"_count": 3, "and": {"_count": 1}, "he": {"_count": 1}, "could": {"_count": 1}}, "to": {"_count": 5, "me": {"_count": 2}, "anyone": {"_count": 1}, "destabilize": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 10, "?": {"_count": 2}, ".": {"_count": 5}, "!": {"_count": 3}}, "back": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "two": {"_count": 1, "feet": {"_count": 1}}, "there": {"_count": 11, "with": {"_count": 2}, "": {"_count": 4}, "in": {"_count": 1}, "panting": {"_count": 1}, "staring": {"_count": 1}, "lying": {"_count": 1}, "unconscious": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 7, "would": {"_count": 1}, "": {"_count": 4}, "on": {"_count": 1}, "Harry": {"_count": 1}}, "open": {"_count": 4, "on": {"_count": 4}}, "right": {"_count": 1, "across": {"_count": 1}}, "curled": {"_count": 2, "and": {"_count": 1}, "beneath": {"_count": 1}}, "underneath": {"_count": 1, "": {"_count": 1}}, "flat": {"_count": 7, "on": {"_count": 6}, "along": {"_count": 1}}, "protectively": {"_count": 1, "across": {"_count": 1}}, "abandoned": {"_count": 1, "on": {"_count": 1}}, "sprawled": {"_count": 2, "on": {"_count": 2}}, "awake": {"_count": 3, "": {"_count": 1}, "waiting": {"_count": 1}, "but": {"_count": 1}}, "about": {"_count": 3, "why": {"_count": 1}, "YouKnow": {"_count": 1}, "that": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "spreadeagled": {"_count": 1, "on": {"_count": 1}}, "some": {"_count": 1, "twenty": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "unconscious": {"_count": 2, "in": {"_count": 2}}, "how": {"_count": 1, "else": {"_count": 1}}, "low": {"_count": 1, "or": {"_count": 1}}, "showoff": {"_count": 1, "he": {"_count": 1}}, "or": {"_count": 1, "unhinged": {"_count": 1}}, "attentionseeking": {"_count": 1, "prat": {"_count": 1}}, "weirdo": {"_count": 1, "but": {"_count": 1}}, "twisting": {"_count": 1, "old": {"_count": 1}}, "and": {"_count": 1, "Im": {"_count": 1}}, "innocently": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "was": {"_count": 1, "he": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 1}, "someones": {"_count": 1}, "Freds": {"_count": 1}}, "asleep": {"_count": 1, "on": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "MASTER": {"_count": 1, "I": {"_count": 1}}, "facedown": {"_count": 4, "on": {"_count": 3}, "in": {"_count": 1}}, "foul": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "nodded": {"_count": 1, "but": {"_count": 1}}, "huddled": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "beside": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 2}}, "faceup": {"_count": 1, "inches": {"_count": 1}}, "apparently": {"_count": 2, "asleep": {"_count": 1}, "dead": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "again": {"_count": 1, "on": {"_count": 1}}, "far": {"_count": 1, "below": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "filthy": {"_count": 1, "Mudblood": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "dead": {"_count": 1, "in": {"_count": 1}}, "definitely": {"_count": 1, "lying": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}}, "working": {"_count": 131, "tank": {"_count": 1, "Dudley": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 4, "Hermione": {"_count": 1}, "Hagrid": {"_count": 1}, "Voldemort": {"_count": 1}, "you": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "the": {"_count": 1, "team": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 9}, "!": {"_count": 1}, "?": {"_count": 2}}, "in": {"_count": 7, "silence": {"_count": 1}, "close": {"_count": 1}, "Egypt": {"_count": 1}, "the": {"_count": 2}, "front": {"_count": 1}, "a": {"_count": 1}}, "late": {"_count": 1, "into": {"_count": 1}}, "overtime": {"_count": 1, "for": {"_count": 1}}, "for": {"_count": 13, "the": {"_count": 5}, "Voldemort": {"_count": 2}, "a": {"_count": 1}, "YouKnowWho": {"_count": 2}, "him": {"_count": 1}, "you": {"_count": 2}}, "arm": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "wasting": {"_count": 1}, "they": {"_count": 1}}, "together": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "alongside": {"_count": 1, "Professor": {"_count": 1}}, "tirelessly": {"_count": 2, "to": {"_count": 1}, "against": {"_count": 1}}, "on": {"_count": 13, "it": {"_count": 7}, "": {"_count": 1}, "the": {"_count": 1}, "developing": {"_count": 1}, "recruiting": {"_count": 1}, "Umbridges": {"_count": 1}, "a": {"_count": 1}}, "hard": {"_count": 4, "said": {"_count": 1}, "enough": {"_count": 1}, "but": {"_count": 1}, "for": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "cant": {"_count": 1}}, "out": {"_count": 6, "what": {"_count": 3}, "the": {"_count": 2}, "how": {"_count": 1}}, "under": {"_count": 1, "Uncle": {"_count": 1}}, "him": {"_count": 1, "far": {"_count": 1}}, "properly": {"_count": 3, "": {"_count": 1}, "anymore": {"_count": 1}, "for": {"_count": 1}}, "nearby": {"_count": 1, "sniggered": {"_count": 1}}, "silently": {"_count": 1, "they": {"_count": 1}}, "like": {"_count": 1, "houseelves": {"_count": 1}}, "conditions": {"_count": 2, "": {"_count": 2}}, "order": {"_count": 1, "said": {"_count": 1}}, "too": {"_count": 2, "well": {"_count": 1}, "": {"_count": 1}}, "rather": {"_count": 1, "hard": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "furiously": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "until": {"_count": 2, "the": {"_count": 1}, "past": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "very": {"_count": 6, "well": {"_count": 1}, "hard": {"_count": 1}, "ard": {"_count": 2}, "long": {"_count": 1}, "fast": {"_count": 1}}, "since": {"_count": 1, "it": {"_count": 1}}, "flatout": {"_count": 1, "just": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "Borgin": {"_count": 1}}, "harder": {"_count": 2, "than": {"_count": 2}}, "madly": {"_count": 1, "like": {"_count": 1}}, "extremely": {"_count": 1, "hard": {"_count": 1}}, "model": {"_count": 1, "of": {"_count": 1}}, "frantically": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 3, "destabilize": {"_count": 1}, "bring": {"_count": 1}, "a": {"_count": 1}}, "well": {"_count": 2, "": {"_count": 2}}, "around": {"_count": 1, "the": {"_count": 1}}, "life": {"_count": 1, "does": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "himself": {"_count": 1, "into": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "toward": {"_count": 1, "this": {"_count": 1}}, "it": {"_count": 1, "tells": {"_count": 1}}, "always": {"_count": 1, "for": {"_count": 1}}, "undercover": {"_count": 1, "in": {"_count": 1}}, "without": {"_count": 1, "conscious": {"_count": 1}}}, "firstever": {"_count": 2, "television": {"_count": 1, "set": {"_count": 1}}, "Potions": {"_count": 1, "lesson": {"_count": 1}}}, "foot": {"_count": 211, "through": {"_count": 1, "when": {"_count": 1}}, "of": {"_count": 70, "the": {"_count": 49}, "his": {"_count": 9}, "some": {"_count": 1}, "one": {"_count": 2}, "Harrys": {"_count": 3}, "a": {"_count": 2}, "it": {"_count": 1}, "them": {"_count": 1}, "Hermiones": {"_count": 1}, "what": {"_count": 1}}, "away": {"_count": 4, "he": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}, "there": {"_count": 1}}, "": {"_count": 24, ".": {"_count": 21}, "!": {"_count": 1}, "?": {"_count": 2}}, "in": {"_count": 19, "the": {"_count": 5}, "Aunt": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 2}, "black": {"_count": 1}, "Hogwarts": {"_count": 2}, "When": {"_count": 1}, "number": {"_count": 1}, "dust": {"_count": 1}, "frustration": {"_count": 1}, "midair": {"_count": 1}, "a": {"_count": 1}, "front": {"_count": 1}}, "from": {"_count": 5, "the": {"_count": 3}, "Snape": {"_count": 1}, "Harry": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 4, "Fred": {"_count": 1}, "": {"_count": 3}}, "where": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 10, "the": {"_count": 7}, "one": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "and": {"_count": 8, "we": {"_count": 1}, "tricked": {"_count": 1}, "nothing": {"_count": 1}, "pulled": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}, "offering": {"_count": 1}, "twenty": {"_count": 1}}, "walked": {"_count": 1, "inside": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 2, "so": {"_count": 2}}, "then": {"_count": 1, "good": {"_count": 1}}, "long": {"_count": 2, "and": {"_count": 1}, "now": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 3, "gathered": {"_count": 1}, "on": {"_count": 2}}, "caught": {"_count": 2, "the": {"_count": 1}, "on": {"_count": 1}}, "apart": {"_count": 2, "": {"_count": 2}}, "vanished": {"_count": 1, "from": {"_count": 1}}, "swing": {"_count": 1, "out": {"_count": 1}}, "forward": {"_count": 1, "into": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "had": {"_count": 2, "sunk": {"_count": 1}, "fallen": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 5, "horses": {"_count": 1}, "other": {"_count": 1}, "Invisibility": {"_count": 1}, "waitress": {"_count": 1}, "mans": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 2, "felt": {"_count": 1}, "Potter": {"_count": 1}}, "taller": {"_count": 1, "than": {"_count": 1}}, "jiggling": {"_count": 1, "in": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "connect": {"_count": 1, "with": {"_count": 1}}, "as": {"_count": 1, "hard": {"_count": 1}}, "he": {"_count": 1, "collapsed": {"_count": 1}}, "underneath": {"_count": 1, "Moodys": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "slowly": {"_count": 2, "from": {"_count": 1}, "sideways": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 2}, "foot": {"_count": 1}, "prevent": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "Oh": {"_count": 1, "yes": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "broke": {"_count": 1, "Nevilles": {"_count": 1}}, "I": {"_count": 1, "used": {"_count": 1}}, "made": {"_count": 1, "contact": {"_count": 1}}, "But": {"_count": 1, "Narcissa": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "Rons": {"_count": 1}}, "gingerly": {"_count": 1, "back": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "patting": {"_count": 1, "her": {"_count": 1}}, "slipped": {"_count": 1, "on": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "found": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "swung": {"_count": 1}}}, "program": {"_count": 10, "had": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "which": {"_count": 1, "I": {"_count": 1}}, "of": {"_count": 1, "study": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "I": {"_count": 1, "keep": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}}, "canceled": {"_count": 11, "there": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Professor": {"_count": 2, "Sprout": {"_count": 1}, "McGonagall": {"_count": 1}}, "others": {"_count": 1, "looked": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "weve": {"_count": 1}}, "Quidditch": {"_count": 1, "matches": {"_count": 1}}, "our": {"_count": 1, "subscription": {"_count": 1}}}, "birdcage": {"_count": 3, "which": {"_count": 1, "had": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "rolling": {"_count": 1}}}, "parrot": {"_count": 2, "that": {"_count": 1, "Dudley": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "swapped": {"_count": 13, "at": {"_count": 1, "school": {"_count": 1}}, "his": {"_count": 1, "pointed": {"_count": 1}}, "exasperated": {"_count": 1, "looks": {"_count": 1}}, "over": {"_count": 2, "": {"_count": 2}}, "it": {"_count": 1, "for": {"_count": 1}}, "its": {"_count": 1, "fangs": {"_count": 1}}, "sides": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 4, "covers": {"_count": 1}, "lockets": {"_count": 1}, "real": {"_count": 1}, "swords": {"_count": 1}}, "places": {"_count": 1, "with": {"_count": 1}}}, "rifle": {"_count": 2, "which": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "shelf": {"_count": 31, "with": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "he": {"_count": 1, "ran": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "behind": {"_count": 4, "Snape": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 4, "lowered": {"_count": 1}, "put": {"_count": 1}, "stared": {"_count": 1}, "shards": {"_count": 1}}, "feeling": {"_count": 1, "sick": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 2, "teacups": {"_count": 1}, "squalidlooking": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "sank": {"_count": 1, "onto": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "right": {"_count": 1, "beneath": {"_count": 1}}, "a": {"_count": 1, "foot": {"_count": 1}}, "above": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "Thicknesse": {"_count": 1, "finally": {"_count": 1}}, "amongst": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}}, "Other": {"_count": 13, "shelves": {"_count": 1, "were": {"_count": 1}}, "people": {"_count": 3, "took": {"_count": 1}, "might": {"_count": 1}, "manage": {"_count": 1}}, "parents": {"_count": 1, "werent": {"_count": 1}}, "members": {"_count": 2, "of": {"_count": 2}}, "teachers": {"_count": 2, "were": {"_count": 1}, "report": {"_count": 1}}, "students": {"_count": 1, "nearly": {"_count": 1}}, "Minister": {"_count": 1, "the": {"_count": 1}}, "things": {"_count": 1, "on": {"_count": 1}}, "quills": {"_count": 1, "will": {"_count": 1}}}, "shelves": {"_count": 48, "were": {"_count": 2, "full": {"_count": 1}, "stacked": {"_count": 1}}, "taking": {"_count": 1, "down": {"_count": 1}}, "the": {"_count": 2, "happier": {"_count": 1}, "farther": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 2, "random": {"_count": 1}, "the": {"_count": 1}}, "over": {"_count": 1, "Gentlemen": {"_count": 1}}, "of": {"_count": 3, "large": {"_count": 1}, "the": {"_count": 1}, "orbs": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "and": {"_count": 3, "returned": {"_count": 1}, "sent": {"_count": 1}, "glass": {"_count": 1}}, "running": {"_count": 1, "around": {"_count": 1}}, "all": {"_count": 1, "colorcoded": {"_count": 1}}, "upon": {"_count": 1, "shelves": {"_count": 1}}, "behind": {"_count": 2, "his": {"_count": 1}, "them": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "bearing": {"_count": 1, "hundreds": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "covering": {"_count": 1, "Snapes": {"_count": 1}}, "each": {"_count": 1, "laden": {"_count": 1}}, "away": {"_count": 1, "stamping": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "covered": {"_count": 2, "in": {"_count": 2}}, "Dumbledore": {"_count": 1, "never": {"_count": 1}}, "opposite": {"_count": 1, "them": {"_count": 1}}, "swayed": {"_count": 1, "precariously": {"_count": 1}}, "collapsed": {"_count": 1, "upon": {"_count": 1}}, "without": {"_count": 1, "suffering": {"_count": 1}}, "oil": {"_count": 1, "lanterns": {"_count": 1}}, "was": {"_count": 1, "more": {"_count": 1}}, "look": {"_count": 1, "said": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "after": {"_count": 1}}, "rising": {"_count": 1, "to": {"_count": 1}}}, "touched": {"_count": 71, "": {"_count": 5, ".": {"_count": 5}}, "quivered": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 21, "lightning": {"_count": 2}, "carpet": {"_count": 1}, "parchment": {"_count": 1}, "bottom": {"_count": 1}, "strange": {"_count": 1}, "Triwizard": {"_count": 4}, "Portkey": {"_count": 1}, "Mark": {"_count": 2}, "spot": {"_count": 1}, "dark": {"_count": 2}, "tentacles": {"_count": 1}, "wood": {"_count": 1}, "necklace": {"_count": 1}, "tip": {"_count": 2}}, "Goyle": {"_count": 1, "Goyle": {"_count": 1}}, "his": {"_count": 5, "head": {"_count": 2}, "gnarled": {"_count": 1}, "tongue": {"_count": 1}, "face": {"_count": 1}}, "Madam": {"_count": 1, "Hoochs": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "Harrys": {"_count": 2, "hand": {"_count": 1}, "face": {"_count": 1}}, "it": {"_count": 5, "all": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}, "with": {"_count": 1}}, "their": {"_count": 1, "hats": {"_count": 1}}, "a": {"_count": 3, "nerve": {"_count": 2}, "point": {"_count": 1}}, "these": {"_count": 1, "he": {"_count": 1}}, "plate": {"_count": 1, "of": {"_count": 1}}, "my": {"_count": 2, "face": {"_count": 1}, "arm": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 2, "right": {"_count": 1}, "on": {"_count": 1}}, "by": {"_count": 3, "what": {"_count": 1}, "the": {"_count": 1}, "bare": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 2, "with": {"_count": 1}, "burn": {"_count": 1}}, "that": {"_count": 1, "weapon": {"_count": 1}}, "for": {"_count": 1, "many": {"_count": 1}}, "or": {"_count": 1, "harmed": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "yehre": {"_count": 1, "here": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "Kreacher": {"_count": 1, "he": {"_count": 1}}, "her": {"_count": 1, "forefinger": {"_count": 1}}, "road": {"_count": 1, "": {"_count": 1}}}, "From": {"_count": 70, "downstairs": {"_count": 1, "came": {"_count": 1}}, "an": {"_count": 2, "inside": {"_count": 1}, "inner": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Egg": {"_count": 1, "to": {"_count": 1}}, "inside": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "being": {"_count": 1, "one": {"_count": 1}}, "any": {"_count": 1, "witch": {"_count": 1}}, "the": {"_count": 11, "dining": {"_count": 1}, "other": {"_count": 3}, "Department": {"_count": 1}, "looks": {"_count": 1}, "moment": {"_count": 1}, "Ministry": {"_count": 1}, "little": {"_count": 1}, "tip": {"_count": 2}}, "either": {"_count": 1, "end": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "everything": {"_count": 1, "Ginny": {"_count": 1}}, "Red": {"_count": 1, "Caps": {"_count": 1}}, "sneering": {"_count": 1, "comments": {"_count": 1}}, "what": {"_count": 11, "Harry": {"_count": 3}, "the": {"_count": 1}, "Dumbledores": {"_count": 1}, "Minerva": {"_count": 1}, "Hermione": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 1}}, "their": {"_count": 2, "position": {"_count": 1}, "high": {"_count": 1}}, "far": {"_count": 1, "away": {"_count": 1}}, "a": {"_count": 1, "muffled": {"_count": 1}}, "external": {"_count": 1, "deadly": {"_count": 1}}, "something": {"_count": 1, "the": {"_count": 1}}, "whom": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 2, "Umbridge": {"_count": 1}, "Slughorn": {"_count": 1}}, "London": {"_count": 1, "I": {"_count": 1}}, "playing": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 2, "they": {"_count": 1}, "on": {"_count": 1}}, "it": {"_count": 2, "he": {"_count": 2}}, "dawn": {"_count": 1, "till": {"_count": 1}}, "this": {"_count": 2, "point": {"_count": 1}, "Harry": {"_count": 1}}, "all": {"_count": 3, "that": {"_count": 2}, "of": {"_count": 1}}, "from": {"_count": 1, "Some": {"_count": 1}}, "that": {"_count": 1, "moment": {"_count": 1}}, "Goblin": {"_count": 1, "Liaison": {"_count": 1}}, "time": {"_count": 2, "to": {"_count": 2}}, "below": {"_count": 1, "he": {"_count": 1}}, "upstairs": {"_count": 1, "they": {"_count": 1}}, "above": {"_count": 1, "came": {"_count": 1}}, "his": {"_count": 1, "pocket": {"_count": 1}}}, "downstairs": {"_count": 87, "came": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "turning": {"_count": 1}}, "bathroom": {"_count": 1, "": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "falter": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 9, "the": {"_count": 1}, "tried": {"_count": 1}, "into": {"_count": 1}, "together": {"_count": 1}, "just": {"_count": 1}, "passed": {"_count": 1}, "help": {"_count": 1}, "youre": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 18}, "?": {"_count": 2}}, "going": {"_count": 1, "\u2018Mum": {"_count": 1}}, "doubling": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 3, "hot": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}}, "picked": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 6, "his": {"_count": 1}, "find": {"_count": 1}, "save": {"_count": 1}, "rejoin": {"_count": 1}, "the": {"_count": 1}, "interrogate": {"_count": 1}}, "followed": {"_count": 3, "by": {"_count": 2}, "at": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 4}}, "every": {"_count": 1, "morning": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "both": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "quick": {"_count": 1, "before": {"_count": 1}}, "then": {"_count": 1, "Im": {"_count": 1}}, "that": {"_count": 1, "rendered": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "after": {"_count": 1, "Hermione": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "Hedwig": {"_count": 1, "hooting": {"_count": 1}}, "they": {"_count": 2, "werent": {"_count": 1}, "met": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "As": {"_count": 1, "Harry": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "speaking": {"_count": 1}}, "crashed": {"_count": 1, "open": {"_count": 1}}, "Greyback": {"_count": 1, "and": {"_count": 1}}}, "bawling": {"_count": 5, "at": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "loudly": {"_count": 1, "while": {"_count": 1}}, "his": {"_count": 1, "great": {"_count": 1}}, "and": {"_count": 1, "confused": {"_count": 1}}}, "need": {"_count": 588, "that": {"_count": 4, "room": {"_count": 1}, "sort": {"_count": 1}, "time": {"_count": 1}, "memory": {"_count": 1}}, "fattenin": {"_count": 1, "anymore": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 12}, "?": {"_count": 2}, "!": {"_count": 1}}, "a": {"_count": 32, "lot": {"_count": 1}, "better": {"_count": 1}, "cloak": {"_count": 2}, "little": {"_count": 1}, "spy": {"_count": 2}, "teacher": {"_count": 2}, "bit": {"_count": 4}, "decent": {"_count": 1}, "good": {"_count": 1}, "word": {"_count": 2}, "wand": {"_count": 1}, "hand": {"_count": 1}, "new": {"_count": 2}, "liedown": {"_count": 1}, "whistle": {"_count": 1}, "fresh": {"_count": 1}, "place": {"_count": 3}, "safe": {"_count": 1}, "password": {"_count": 1}, "Cloak": {"_count": 1}, "plan": {"_count": 2}}, "to": {"_count": 270, "be": {"_count": 23}, "ask": {"_count": 4}, "of": {"_count": 1}, "fear": {"_count": 1}, "concern": {"_count": 1}, "tell": {"_count": 4}, "pass": {"_count": 1}, "worry": {"_count": 5}, "examine": {"_count": 1}, "said": {"_count": 1}, "see": {"_count": 17}, "shout": {"_count": 1}, "keep": {"_count": 4}, "read": {"_count": 3}, "train": {"_count": 1}, "do": {"_count": 6}, "defend": {"_count": 1}, "make": {"_count": 2}, "go": {"_count": 9}, "spend": {"_count": 2}, "talk": {"_count": 14}, "address": {"_count": 1}, "pretend": {"_count": 1}, "sound": {"_count": 1}, "get": {"_count": 18}, "fuss": {"_count": 1}, "step": {"_count": 1}, "speak": {"_count": 4}, "look": {"_count": 3}, "say": {"_count": 2}, "visit": {"_count": 2}, "find": {"_count": 10}, "conduct": {"_count": 1}, "arrange": {"_count": 1}, "practice": {"_count": 4}, "know": {"_count": 9}, "understand": {"_count": 1}, "help": {"_count": 1}, "sneak": {"_count": 1}, "sign": {"_count": 2}, "wait": {"_count": 3}, "walk": {"_count": 1}, "": {"_count": 2}, "touch": {"_count": 1}, "meet": {"_count": 1}, "put": {"_count": 5}, "warn": {"_count": 1}, "learn": {"_count": 1}, "hear": {"_count": 4}, "solve": {"_count": 1}, "work": {"_count": 4}, "listen": {"_count": 1}, "sort": {"_count": 1}, "blink": {"_count": 2}, "use": {"_count": 2}, "teach": {"_count": 1}, "lie": {"_count": 1}, "drink": {"_count": 1}, "stand": {"_count": 1}, "send": {"_count": 2}, "act": {"_count": 2}, "Disillusion": {"_count": 1}, "what": {"_count": 1}, "Apparate": {"_count": 1}, "pay": {"_count": 1}, "share": {"_count": 1}, "decide": {"_count": 2}, "have": {"_count": 1}, "raise": {"_count": 1}, "finish": {"_count": 1}, "sleep": {"_count": 1}, "resort": {"_count": 1}, "Transfigure": {"_count": 1}, "demonstrate": {"_count": 1}, "save": {"_count": 1}, "take": {"_count": 1}, "establish": {"_count": 1}, "try": {"_count": 2}, "organize": {"_count": 1}, "mean": {"_count": 2}, "really": {"_count": 2}, "return": {"_count": 2}, "justify": {"_count": 1}, "discuss": {"_count": 3}, "move": {"_count": 1}, "hold": {"_count": 1}, "stick": {"_count": 1}, "bring": {"_count": 2}, "call": {"_count": 1}, "show": {"_count": 1}, "question": {"_count": 1}, "persuade": {"_count": 1}, "grip": {"_count": 1}, "penetrate": {"_count": 1}, "cast": {"_count": 1}, "recover": {"_count": 1}, "stay": {"_count": 2}, "er": {"_count": 1}, "translate": {"_count": 1}, "wipe": {"_count": 1}, "Ron": {"_count": 1}, "duplicate": {"_count": 1}, "attach": {"_count": 1}, "leave": {"_count": 1}, "think": {"_count": 3}, "remain": {"_count": 1}, "collect": {"_count": 1}, "kneel": {"_count": 1}, "hurry": {"_count": 1}, "break": {"_count": 2}, "offer": {"_count": 1}, "transform": {"_count": 1}, "treat": {"_count": 1}, "We": {"_count": 1}, "seek": {"_count": 1}}, "an": {"_count": 3, "excuse": {"_count": 1}, "early": {"_count": 1}, "interpreter": {"_count": 1}}, "such": {"_count": 2, "heavy": {"_count": 1}, "a": {"_count": 1}}, "your": {"_count": 9, "strength": {"_count": 1}, "Inner": {"_count": 1}, "help": {"_count": 1}, "wand": {"_count": 1}, "friends": {"_count": 1}, "protection": {"_count": 1}, "book": {"_count": 1}, "rest": {"_count": 1}, "kind": {"_count": 1}}, "is": {"_count": 3, "to": {"_count": 1}, "here": {"_count": 1}, "a": {"_count": 1}}, "it": {"_count": 15, "now": {"_count": 1}, "": {"_count": 7}, "Riddles": {"_count": 1}, "anymore": {"_count": 3}, "sir": {"_count": 1}, "this": {"_count": 1}, "to": {"_count": 1}}, "him": {"_count": 5, "": {"_count": 2}, "the": {"_count": 1}, "conscious": {"_count": 1}, "said": {"_count": 1}}, "rest": {"_count": 2, "": {"_count": 1}, "This": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 2, "your": {"_count": 1}, "the": {"_count": 1}}, "ever": {"_count": 1, "know": {"_count": 1}}, "for": {"_count": 14, "the": {"_count": 3}, "a": {"_count": 1}, "it": {"_count": 2}, "their": {"_count": 1}, "language": {"_count": 1}, "Ill": {"_count": 1}, "that": {"_count": 1}, "Ginny": {"_count": 1}, "instance": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}}, "the": {"_count": 13, "car": {"_count": 1}, "headmasters": {"_count": 1}, "Magical": {"_count": 1}, "Portkey": {"_count": 1}, "punch": {"_count": 1}, "gold": {"_count": 1}, "hospital": {"_count": 2}, "sword": {"_count": 1}, "Clankers": {"_count": 2}, "place": {"_count": 1}, "snake": {"_count": 1}}, "help": {"_count": 8, "you": {"_count": 1}, "cutting": {"_count": 1}, "Ron": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 3}, "understanding": {"_count": 1}}, "teh": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 6, "two": {"_count": 1}, "chair": {"_count": 1}, "story": {"_count": 1}, "one": {"_count": 1}, "kid": {"_count": 1}, "Godrics": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "time": {"_count": 1, "out": {"_count": 1}}, "said": {"_count": 4, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 2}, "Luna": {"_count": 1}}, "bigger": {"_count": 2, "sizes": {"_count": 1}, "robes": {"_count": 1}}, "them": {"_count": 9, "he": {"_count": 1}, "": {"_count": 3}, "more": {"_count": 1}, "for": {"_count": 1}, "back": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}}, "hardly": {"_count": 3, "add": {"_count": 1}, "point": {"_count": 1}, "remind": {"_count": 1}}, "ter": {"_count": 3, "feed": {"_count": 1}, "keep": {"_count": 1}, "Hagrid": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "me": {"_count": 6, "said": {"_count": 1}, "send": {"_count": 1}, "all": {"_count": 2}, "you": {"_count": 1}, "to": {"_count": 1}}, "Harry": {"_count": 2, "is": {"_count": 1}, "muttered": {"_count": 1}}, "our": {"_count": 1, "gamekeeper": {"_count": 1}}, "never": {"_count": 2, "know": {"_count": 2}}, "you": {"_count": 16, "to": {"_count": 12}, "": {"_count": 1}, "two": {"_count": 2}, "said": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "Get": {"_count": 1, "out": {"_count": 1}}, "Unfogging": {"_count": 1, "the": {"_count": 1}}, "Intermediate": {"_count": 1, "Transfiguration": {"_count": 1}}, "anything": {"_count": 2, "Oh": {"_count": 1}, "more": {"_count": 1}}, "of": {"_count": 6, "noble": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "gold": {"_count": 1}, "broomstick": {"_count": 1}}, "someone": {"_count": 2, "mental": {"_count": 1}, "at": {"_count": 1}}, "not": {"_count": 4, "hand": {"_count": 1}, "have": {"_count": 3}}, "this": {"_count": 1, "shrivelfig": {"_count": 1}}, "only": {"_count": 1, "your": {"_count": 1}}, "more": {"_count": 6, "": {"_count": 1}, "height": {"_count": 1}, "discipline": {"_count": 1}, "than": {"_count": 1}, "persuasion": {"_count": 1}, "help": {"_count": 1}}, "walls": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "telling": {"_count": 4, "twice": {"_count": 4}}, "care": {"_count": 1, "": {"_count": 1}}, "treatment": {"_count": 1, "they": {"_count": 1}}, "feeding": {"_count": 3, "in": {"_count": 1}, "every": {"_count": 1}, "up": {"_count": 1}}, "somebody": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "all": {"_count": 6, "hands": {"_count": 1}, "the": {"_count": 4}, "of": {"_count": 1}}, "squeezing": {"_count": 1, "": {"_count": 1}}, "thumbscrews": {"_count": 1, "or": {"_count": 1}}, "preparing": {"_count": 1, "": {"_count": 1}}, "arming": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "persuasion": {"_count": 1}}, "about": {"_count": 1, "half": {"_count": 1}}, "cleaning": {"_count": 1, "before": {"_count": 1}}, "partners": {"_count": 1, "were": {"_count": 1}}, "three": {"_count": 3, "hours": {"_count": 1}, "powerful": {"_count": 1}, "said": {"_count": 1}}, "protection": {"_count": 2, "": {"_count": 2}}, "persuading": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "gold": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}, "four": {"_count": 1, "mates": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "one": {"_count": 3, "": {"_count": 2}, "yet": {"_count": 1}}, "scarcely": {"_count": 1, "say": {"_count": 1}}, "be": {"_count": 1, "": {"_count": 1}}, "Hagrids": {"_count": 1, "size": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "flicked": {"_count": 1}, "said": {"_count": 1}}, "Ron": {"_count": 1, "or": {"_count": 1}}, "leaves": {"_count": 1, "or": {"_count": 1}}, "ink": {"_count": 1, "said": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 2}}, "so": {"_count": 1, "much": {"_count": 1}}, "proper": {"_count": 1, "planning": {"_count": 1}}, "somewhere": {"_count": 1, "to": {"_count": 1}}, "team": {"_count": 1, "practices": {"_count": 1}}, "some": {"_count": 5, "breakfast": {"_count": 1}, "help": {"_count": 4}}, "doing": {"_count": 1, "until": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "many": {"_count": 1, "qualifications": {"_count": 1}}, "top": {"_count": 1, "grades": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "But": {"_count": 1, "Hagrid": {"_count": 1}}, "lookouts": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "was": {"_count": 1}, "valor": {"_count": 1}}, "get": {"_count": 1, "hurt": {"_count": 1}}, "return": {"_count": 1, "there": {"_count": 1}}, "reminding": {"_count": 1, "of": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "new": {"_count": 1, "ones": {"_count": 1}}, "was": {"_count": 1, "greater": {"_count": 1}}, "thanks": {"_count": 1, "Im": {"_count": 1}}, "protecting": {"_count": 1, "against": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "nothing": {"_count": 1, "more": {"_count": 1}}, "socks": {"_count": 1, "": {"_count": 1}}, "whats": {"_count": 1, "wrapped": {"_count": 1}}, "arise": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "got": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "transport": {"_count": 1, "brooms": {"_count": 1}}, "Legilimency": {"_count": 1, "": {"_count": 1}}, "No": {"_count": 1, "need": {"_count": 1}}, "sorting": {"_count": 1, "out": {"_count": 1}}, "in": {"_count": 2, "here": {"_count": 1}, "the": {"_count": 1}}, "Hermione": {"_count": 1, "to": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "Hermiones": {"_count": 1, "pinch": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "Bogrod": {"_count": 1, "to": {"_count": 1}}, "sustenance": {"_count": 1, "before": {"_count": 1}}, "like": {"_count": 1, "\u2018I": {"_count": 1}}, "finding": {"_count": 1, "": {"_count": 1}}}, "sighed": {"_count": 83, "and": {"_count": 6, "stretched": {"_count": 1}, "looked": {"_count": 1}, "she": {"_count": 1}, "laid": {"_count": 1}, "continued": {"_count": 1}, "set": {"_count": 1}}, "as": {"_count": 5, "the": {"_count": 2}, "evening": {"_count": 1}, "though": {"_count": 1}, "Ron": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "again": {"_count": 4, "": {"_count": 3}, "and": {"_count": 1}}, "happily": {"_count": 1, "stretching": {"_count": 1}}, "very": {"_count": 1, "deeply": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 2}}, "special": {"_count": 1, "arrangements": {"_count": 1}}, "heavily": {"_count": 2, "bade": {"_count": 1}, "": {"_count": 1}}, "then": {"_count": 1, "poked": {"_count": 1}}, "George": {"_count": 1, "patting": {"_count": 1}}, "exasperatedly": {"_count": 1, "": {"_count": 1}}, "deeply": {"_count": 9, "and": {"_count": 2}, "That": {"_count": 1}, "": {"_count": 4}, "then": {"_count": 1}, "as": {"_count": 1}}, "Hermione": {"_count": 7, "but": {"_count": 1}, "gloomily": {"_count": 1}, "Secrecy": {"_count": 1}, "reaching": {"_count": 1}, "": {"_count": 2}, "admiringly": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "suddenly": {"_count": 1, "looking": {"_count": 1}}, "but": {"_count": 2, "never": {"_count": 1}, "nodded": {"_count": 1}}, "just": {"_count": 1, "some": {"_count": 1}}, "Mrs": {"_count": 2, "Longbottom": {"_count": 1}, "Weasley": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 2}}, "Parvati": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "hasnt": {"_count": 1}}, "with": {"_count": 1, "relief": {"_count": 1}}, "in": {"_count": 1, "rather": {"_count": 1}}, "looking": {"_count": 2, "him": {"_count": 1}, "down": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 2}}, "Ron": {"_count": 1, "but": {"_count": 1}}, "Ginny": {"_count": 1, "later": {"_count": 1}}, "turning": {"_count": 1, "back": {"_count": 1}}, "Travers": {"_count": 1, "theatrically": {"_count": 1}}}, "stretched": {"_count": 102, "out": {"_count": 37, "on": {"_count": 5}, "his": {"_count": 18}, "a": {"_count": 5}, "the": {"_count": 2}, "its": {"_count": 1}, "between": {"_count": 1}, "her": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "arms": {"_count": 1}, "an": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "her": {"_count": 3, "hand": {"_count": 1}, "front": {"_count": 1}, "great": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 1}, "two": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "tightly": {"_count": 1}}, "it": {"_count": 3, "out": {"_count": 3}}, "painfully": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 5, "half": {"_count": 1}, "the": {"_count": 2}, "what": {"_count": 1}, "him": {"_count": 1}}, "wide": {"_count": 3, "in": {"_count": 2}, "and": {"_count": 1}}, "and": {"_count": 6, "checked": {"_count": 1}, "opened": {"_count": 1}, "his": {"_count": 1}, "yawned": {"_count": 1}, "broke": {"_count": 1}, "moved": {"_count": 1}}, "its": {"_count": 3, "wings": {"_count": 2}, "fingers": {"_count": 1}}, "too": {"_count": 1, "tightly": {"_count": 1}}, "yawned": {"_count": 1, "and": {"_count": 1}}, "luxuriously": {"_count": 1, "flexing": {"_count": 1}}, "blankly": {"_count": 1, "over": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 4, "every": {"_count": 1}, "a": {"_count": 1}, "what": {"_count": 1}, "front": {"_count": 1}}, "between": {"_count": 3, "their": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}}, "tightly": {"_count": 1, "across": {"_count": 1}}, "ahead": {"_count": 2, "of": {"_count": 2}}, "just": {"_count": 1, "far": {"_count": 1}}, "endlessly": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "right": {"_count": 1}, "beautiful": {"_count": 1}}, "taut": {"_count": 1, "as": {"_count": 1}}, "sideways": {"_count": 1, "squeezing": {"_count": 1}}, "on": {"_count": 1, "he": {"_count": 1}}, "into": {"_count": 4, "what": {"_count": 2}, "weeks": {"_count": 2}}, "until": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "Burrows": {"_count": 1}}, "yawning": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "tight": {"_count": 2, "across": {"_count": 1}, "": {"_count": 1}}}, "Yesterday": {"_count": 2, "hed": {"_count": 1, "have": {"_count": 1}}, "seemed": {"_count": 1, "a": {"_count": 1}}}, "Today": {"_count": 20, "hed": {"_count": 1, "rather": {"_count": 1}}, "was": {"_count": 1, "as": {"_count": 1}}, "wildlooking": {"_count": 1, "warlocks": {"_count": 1}}, "we": {"_count": 3, "shall": {"_count": 2}, "will": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "might": {"_count": 1}}, "however": {"_count": 1, "will": {"_count": 1}}, "they": {"_count": 1, "suffered": {"_count": 1}}, "same": {"_count": 1, "time": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 3}, ".": {"_count": 2}}, "Hagrid": {"_count": 1, "you": {"_count": 1}}, "Hermione": {"_count": 1, "moved": {"_count": 1}}, "Challenges": {"_count": 1, "in": {"_count": 1}}}, "whacked": {"_count": 4, "his": {"_count": 1, "father": {"_count": 1}}, "Harry": {"_count": 1, "around": {"_count": 1}}, "Mundungus": {"_count": 1, "around": {"_count": 1}}, "the": {"_count": 1, "Bludger": {"_count": 1}}}, "purpose": {"_count": 30, "kicked": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 7}, "!": {"_count": 2}, "?": {"_count": 2}}, "and": {"_count": 3, "was": {"_count": 1}, "Harrys": {"_count": 1}, "power": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "then": {"_count": 1}, "he": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "of": {"_count": 3, "looking": {"_count": 1}, "Potters": {"_count": 1}, "the": {"_count": 1}}, "shifted": {"_count": 1, "his": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "or": {"_count": 1, "so": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "preceded": {"_count": 1}}, "in": {"_count": 1, "destruction": {"_count": 1}}}, "thrown": {"_count": 94, "his": {"_count": 1, "tortoise": {"_count": 1}}, "out": {"_count": 17, "": {"_count": 2}, "for": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}, "of": {"_count": 6}, "to": {"_count": 1}, "so": {"_count": 1}, "seven": {"_count": 1}, "she": {"_count": 1}, "today": {"_count": 1}, "casually": {"_count": 1}}, "himself": {"_count": 4, "at": {"_count": 1}, "forward": {"_count": 1}, "on": {"_count": 1}, "backward": {"_count": 1}}, "by": {"_count": 4, "such": {"_count": 1}, "an": {"_count": 1}, "George": {"_count": 1}, "this": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 1, "their": {"_count": 1}}, "into": {"_count": 5, "the": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}, "relief": {"_count": 1}, "even": {"_count": 1}}, "backward": {"_count": 7, "": {"_count": 1}, "by": {"_count": 1}, "onto": {"_count": 2}, "weightless": {"_count": 1}, "away": {"_count": 1}, "from": {"_count": 1}}, "off": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "balance": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 1}, "into": {"_count": 1}, "aside": {"_count": 2}, "on": {"_count": 1}}, "from": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 4, "Invisibility": {"_count": 1}, "chain": {"_count": 1}, "mans": {"_count": 1}, "mead": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 2, "handful": {"_count": 1}, "stone": {"_count": 1}}, "down": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 3, "him": {"_count": 2}, "its": {"_count": 1}}, "open": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "them": {"_count": 1, "over": {"_count": 1}}, "forward": {"_count": 1, "and": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "wide": {"_count": 1, "in": {"_count": 1}}, "both": {"_count": 1, "their": {"_count": 1}}, "up": {"_count": 3, "into": {"_count": 2}, "in": {"_count": 1}}, "herself": {"_count": 1, "onto": {"_count": 1}}, "unceremoniously": {"_count": 2, "into": {"_count": 1}, "from": {"_count": 1}}, "him": {"_count": 2, "from": {"_count": 1}, "out": {"_count": 1}}, "her": {"_count": 1, "a": {"_count": 1}}, "away": {"_count": 1, "over": {"_count": 1}}, "some": {"_count": 1, "powder": {"_count": 1}}, "something": {"_count": 1, "at": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "off": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "back": {"_count": 1, "just": {"_count": 1}}, "flat": {"_count": 1, "onto": {"_count": 1}}, "facedown": {"_count": 1, "onto": {"_count": 1}}, "in": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "twice": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "tortoise": {"_count": 5, "through": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "looked": {"_count": 1}}}, "greenhouse": {"_count": 18, "roof": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 1, "before": {"_count": 1}}, "three": {"_count": 5, "housed": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "minutes": {"_count": 1}, "at": {"_count": 1}}, "door": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "opened": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "floor": {"_count": 1, "": {"_count": 1}}, "windows": {"_count": 1, "were": {"_count": 1}}, "for": {"_count": 1, "their": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "opened": {"_count": 1, "and": {"_count": 1}}, "glass": {"_count": 1, "rebounding": {"_count": 1}}}, "bitterly": {"_count": 54, "wishing": {"_count": 1, "hed": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 33}}, "on": {"_count": 1, "the": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "at": {"_count": 1, "breakfast": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "cold": {"_count": 2, "weather": {"_count": 1}, "but": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 2}}, "that": {"_count": 1, "night": {"_count": 1}}, "we": {"_count": 1, "mightve": {"_count": 1}}, "and": {"_count": 1, "ran": {"_count": 1}}, "stuffing": {"_count": 1, "the": {"_count": 1}}, "slamming": {"_count": 1, "the": {"_count": 1}}, "getting": {"_count": 1, "up": {"_count": 1}}, "now": {"_count": 1, "holding": {"_count": 1}}, "flopping": {"_count": 1, "down": {"_count": 1}}, "yet": {"_count": 1, "still": {"_count": 1}}, "but": {"_count": 1, "which": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "drawing": {"_count": 1, "up": {"_count": 1}}}, "darkly": {"_count": 52, "": {"_count": 30, ".": {"_count": 30}}, "in": {"_count": 2, "the": {"_count": 1}, "on": {"_count": 1}}, "Mr": {"_count": 1, "Borgin": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "seeing": {"_count": 1}}, "and": {"_count": 4, "wincing": {"_count": 1}, "she": {"_count": 1}, "Ron": {"_count": 1}, "meaningfully": {"_count": 1}}, "as": {"_count": 1, "Cedric": {"_count": 1}}, "significant": {"_count": 2, "looks": {"_count": 1}, "voice": {"_count": 1}}, "his": {"_count": 1, "halfeaten": {"_count": 1}}, "making": {"_count": 1, "the": {"_count": 1}}, "theyre": {"_count": 1, "not": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "stood": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "watching": {"_count": 1, "Fred": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}}, "banging": {"_count": 29, "things": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 5, "goblet": {"_count": 1}, "head": {"_count": 3}, "fist": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "about": {"_count": 1}}, "the": {"_count": 3, "ground": {"_count": 1}, "door": {"_count": 2}}, "open": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 1, "and": {"_count": 1}}, "off": {"_count": 2, "the": {"_count": 2}}, "against": {"_count": 1, "his": {"_count": 1}}, "into": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "things": {"_count": 1}}, "as": {"_count": 1, "all": {"_count": 1}}, "down": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 4, "wailing": {"_count": 1}, "a": {"_count": 1}, "clattering": {"_count": 1}, "scraping": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "outside": {"_count": 1, "his": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}}, "Theres": {"_count": 189, "another": {"_count": 2, "one": {"_count": 2}}, "an": {"_count": 6, "owl": {"_count": 1}, "empty": {"_count": 1}, "order": {"_count": 1}, "exhaust": {"_count": 1}, "easier": {"_count": 1}, "old": {"_count": 1}}, "a": {"_count": 41, "Ministry": {"_count": 1}, "list": {"_count": 1}, "note": {"_count": 1}, "unicorn": {"_count": 2}, "loophole": {"_count": 1}, "basilisk": {"_count": 1}, "feast": {"_count": 1}, "magical": {"_count": 1}, "blob": {"_count": 1}, "light": {"_count": 1}, "boggart": {"_count": 1}, "weird": {"_count": 1}, "bloke": {"_count": 1}, "tap": {"_count": 1}, "good": {"_count": 1}, "simple": {"_count": 1}, "rumor": {"_count": 1}, "Common": {"_count": 1}, "way": {"_count": 3}, "Wand": {"_count": 1}, "Way": {"_count": 1}, "Death": {"_count": 2}, "fair": {"_count": 1}, "difference": {"_count": 2}, "room": {"_count": 1}, "customer": {"_count": 1}, "lot": {"_count": 1}, "practice": {"_count": 1}, "table": {"_count": 1}, "whole": {"_count": 1}, "footnote": {"_count": 1}, "bit": {"_count": 1}, "description": {"_count": 1}, "fake": {"_count": 1}, "curfew": {"_count": 1}, "war": {"_count": 1}}, "four": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 2, "a": {"_count": 1}, "much": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "nothing": {"_count": 26, "hidden": {"_count": 1}, "written": {"_count": 2}, "I": {"_count": 1}, "wrong": {"_count": 8}, "you": {"_count": 4}, "here": {"_count": 1}, "seriously": {"_count": 1}, "we": {"_count": 2}, "to": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 2}, "like": {"_count": 1}}, "talent": {"_count": 1, "oh": {"_count": 1}}, "no": {"_count": 38, "need": {"_count": 10}, "point": {"_count": 10}, "chance": {"_count": 2}, "arm": {"_count": 1}, "one": {"_count": 1}, "blocking": {"_count": 1}, "way": {"_count": 4}, "other": {"_count": 1}, "market": {"_count": 1}, "problem": {"_count": 1}, "mention": {"_count": 1}, "such": {"_count": 2}, "Vernon": {"_count": 1}, "doubt": {"_count": 1}, "time": {"_count": 1}}, "still": {"_count": 4, "Fluffy": {"_count": 1}, "the": {"_count": 2}, "so": {"_count": 1}}, "nothin": {"_count": 1, "that": {"_count": 1}}, "blood": {"_count": 1, "all": {"_count": 1}}, "summat": {"_count": 2, "in": {"_count": 1}, "bad": {"_count": 1}}, "light": {"_count": 1, "ahead": {"_count": 1}}, "only": {"_count": 5, "enough": {"_count": 1}, "one": {"_count": 4}}, "more": {"_count": 3, "in": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}}, "something": {"_count": 17, "else": {"_count": 2}, "moving": {"_count": 2}, "Ive": {"_count": 2}, "funny": {"_count": 2}, "I": {"_count": 2}, "wed": {"_count": 1}, "there": {"_count": 1}, "important": {"_count": 1}, "weve": {"_count": 1}, "we": {"_count": 1}, "in": {"_count": 1}, "weird": {"_count": 1}}, "one": {"_count": 5, "of": {"_count": 1}, "certain": {"_count": 1}, "the": {"_count": 1}, "for": {"_count": 1}, "thing": {"_count": 1}}, "just": {"_count": 2, "no": {"_count": 1}, "not": {"_count": 1}}, "some": {"_count": 3, "interesting": {"_count": 1}, "whod": {"_count": 1}, "connection": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "always": {"_count": 1, "the": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 2}}, "enough": {"_count": 1, "filth": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "been": {"_count": 3, "a": {"_count": 3}}, "someone": {"_count": 5, "here": {"_count": 2}, "coming": {"_count": 1}, "there": {"_count": 1}, "up": {"_count": 1}}, "traditionally": {"_count": 1, "been": {"_count": 1}}, "money": {"_count": 1, "involved": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "me": {"_count": 1, "said": {"_count": 1}}, "room": {"_count": 1, "in": {"_count": 1}}, "things": {"_count": 1, "more": {"_count": 1}}, "work": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "silver": {"_count": 1}}, "writing": {"_count": 1, "on": {"_count": 1}}, "already": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}, "really": {"_count": 1, "only": {"_count": 1}}}, "\u2018Mr": {"_count": 1, "H": {"_count": 1, "": {"_count": 1}}}, "Smallest": {"_count": 1, "Bedroom": {"_count": 1, "4": {"_count": 1}}}, "Bedroom": {"_count": 1, "4": {"_count": 1, "Privet": {"_count": 1}}}, "With": {"_count": 157, "a": {"_count": 80, "strangled": {"_count": 1}, "mum": {"_count": 1}, "last": {"_count": 4}, "funny": {"_count": 1}, "crack": {"_count": 1}, "roar": {"_count": 6}, "quick": {"_count": 1}, "splattering": {"_count": 1}, "bit": {"_count": 1}, "loud": {"_count": 1}, "yell": {"_count": 1}, "feeling": {"_count": 2}, "meaningful": {"_count": 2}, "tiny": {"_count": 2}, "jolt": {"_count": 1}, "bang": {"_count": 1}, "little": {"_count": 2}, "knife": {"_count": 2}, "frantic": {"_count": 1}, "snap": {"_count": 1}, "huge": {"_count": 3}, "plug": {"_count": 1}, "sharp": {"_count": 1}, "massive": {"_count": 2}, "stab": {"_count": 1}, "clattering": {"_count": 1}, "great": {"_count": 2}, "grin": {"_count": 1}, "whoosh": {"_count": 1}, "low": {"_count": 1}, "slight": {"_count": 2}, "look": {"_count": 1}, "sudden": {"_count": 2}, "surge": {"_count": 1}, "cry": {"_count": 2}, "sinking": {"_count": 4}, "second": {"_count": 1}, "howl": {"_count": 1}, "noise": {"_count": 1}, "miserable": {"_count": 1}, "younger": {"_count": 1}, "shout": {"_count": 1}, "jerk": {"_count": 2}, "wave": {"_count": 1}, "scowl": {"_count": 1}, "leap": {"_count": 1}, "nod": {"_count": 1}, "twinge": {"_count": 1}, "flick": {"_count": 1}, "clatter": {"_count": 1}, "tingle": {"_count": 1}, "whiplike": {"_count": 1}, "gasp": {"_count": 1}, "glance": {"_count": 1}, "single": {"_count": 1}, "slightly": {"_count": 1}}, "his": {"_count": 5, "tongue": {"_count": 1}, "glasses": {"_count": 1}, "free": {"_count": 1}, "parents": {"_count": 1}, "face": {"_count": 1}}, "the": {"_count": 10, "twins": {"_count": 1}, "force": {"_count": 1}, "first": {"_count": 1}, "dementors": {"_count": 1}, "prospect": {"_count": 1}, "usual": {"_count": 1}, "whole": {"_count": 2}, "Sneakoscope": {"_count": 1}, "Floo": {"_count": 1}}, "some": {"_count": 2, "interesting": {"_count": 1}, "assistance": {"_count": 1}}, "one": {"_count": 3, "great": {"_count": 1}, "last": {"_count": 1}, "brutal": {"_count": 1}}, "Ron": {"_count": 1, "covered": {"_count": 1}}, "Dumbledore": {"_count": 3, "around": {"_count": 1}, "gone": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 10, "unpleasant": {"_count": 2}, "earsplitting": {"_count": 1}, "incantation": {"_count": 1}, "enormous": {"_count": 2}, "effort": {"_count": 2}, "unmistakable": {"_count": 1}, "anguished": {"_count": 1}}, "any": {"_count": 2, "luck": {"_count": 2}}, "two": {"_count": 3, "sharp": {"_count": 1}, "days": {"_count": 1}, "loud": {"_count": 1}}, "very": {"_count": 1, "best": {"_count": 1}}, "difficulty": {"_count": 3, "he": {"_count": 2}, "owing": {"_count": 1}}, "many": {"_count": 1, "bitter": {"_count": 1}}, "every": {"_count": 1, "ounce": {"_count": 1}}, "Every": {"_count": 1, "Mouthfull": {"_count": 1}}, "everyone": {"_count": 1, "watching": {"_count": 1}}, "that": {"_count": 2, "Hermione": {"_count": 1}, "he": {"_count": 1}}, "best": {"_count": 1, "wishes": {"_count": 1}}, "distinction": {"_count": 1, "said": {"_count": 1}}, "brave": {"_count": 1, "deeds": {"_count": 1}}, "brains": {"_count": 1, "like": {"_count": 1}}, "no": {"_count": 1, "time": {"_count": 1}}, "what": {"_count": 2, "looked": {"_count": 1}, "Harry": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "another": {"_count": 2, "shock": {"_count": 1}, "glance": {"_count": 1}}, "Umbridge": {"_count": 2, "policing": {"_count": 1}, "groping": {"_count": 1}}, "Snape": {"_count": 1, "absent": {"_count": 1}}, "whom": {"_count": 1, "have": {"_count": 1}}, "these": {"_count": 1, "words": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "great": {"_count": 1, "relief": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 1}, "gone": {"_count": 1}}, "YouKnowWho": {"_count": 1, "out": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "Gregorovitch": {"_count": 1, "dead": {"_count": 1}}, "Snapes": {"_count": 1, "track": {"_count": 1}}, "fumbling": {"_count": 1, "fingers": {"_count": 1}}, "Bills": {"_count": 1, "warning": {"_count": 1}}, "screams": {"_count": 1, "of": {"_count": 1}}, "surprising": {"_count": 1, "speed": {"_count": 1}}}, "strangled": {"_count": 17, "cry": {"_count": 1, "Uncle": {"_count": 1}}, "the": {"_count": 1, "school": {"_count": 1}}, "cheer": {"_count": 1, "and": {"_count": 1}}, "yell": {"_count": 1, "echoed": {"_count": 1}}, "suffocated": {"_count": 1, "or": {"_count": 1}}, "whisper": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 3, "panic": {"_count": 1}, "a": {"_count": 2}}, "voice": {"_count": 2, "": {"_count": 2}}, "rabbit": {"_count": 1, "and": {"_count": 1}}, "sob": {"_count": 1, "of": {"_count": 1}}, "before": {"_count": 1, "their": {"_count": 1}}, "hissing": {"_count": 1, "noise": {"_count": 1}}}, "wrestle": {"_count": 5, "Dudley": {"_count": 1, "to": {"_count": 1}}, "trolls": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "unknown": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}}, "confused": {"_count": 68, "fighting": {"_count": 1, "in": {"_count": 1}}, "milkman": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 21}, "!": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 13, "scared": {"_count": 1}, "Professor": {"_count": 1}, "wrongfooted": {"_count": 1}, "defiant": {"_count": 1}, "an": {"_count": 1}, "nervously": {"_count": 1}, "upset": {"_count": 1}, "angry": {"_count": 1}, "disorientated": {"_count": 1}, "nobody": {"_count": 1}, "Hermione": {"_count": 1}, "disturbing": {"_count": 1}, "curious": {"_count": 1}}, "still": {"_count": 1, "deadly": {"_count": 1}}, "impression": {"_count": 2, "of": {"_count": 2}}, "him": {"_count": 2, "into": {"_count": 1}, "there": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "Rons": {"_count": 1}}, "youve": {"_count": 1, "been": {"_count": 1}}, "thoughts": {"_count": 1, "": {"_count": 1}}, "din": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 2, "Ron": {"_count": 1}, "reassured": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "about": {"_count": 1, "whether": {"_count": 1}}, "tangle": {"_count": 1, "of": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "beyond": {"_count": 1, "measure": {"_count": 1}}, "voice": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "Voldemort": {"_count": 1, "modified": {"_count": 1}}, "perhaps": {"_count": 1, "by": {"_count": 1}}, "dreams": {"_count": 1, "involving": {"_count": 1}}, "them": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "hurried": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "others": {"_count": 1, "scared": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "queries": {"_count": 1, "about": {"_count": 1}}, "arent": {"_count": 1, "arent": {"_count": 1}}}, "fighting": {"_count": 105, "in": {"_count": 2, "which": {"_count": 1}, "the": {"_count": 1}}, "over": {"_count": 1, "seats": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "not": {"_count": 2, "us": {"_count": 1}, "to": {"_count": 1}}, "is": {"_count": 1, "against": {"_count": 1}}, "to": {"_count": 17, "get": {"_count": 6}, "free": {"_count": 1}, "extricate": {"_count": 1}, "keep": {"_count": 2}, "break": {"_count": 1}, "control": {"_count": 1}, "remain": {"_count": 3}, "resist": {"_count": 1}, "kill": {"_count": 1}}, "the": {"_count": 10, "impulse": {"_count": 1}, "boggart": {"_count": 1}, "most": {"_count": 1}, "urge": {"_count": 1}, "signs": {"_count": 1}, "five": {"_count": 1}, "Animagus": {"_count": 1}, "Dark": {"_count": 1}, "triumph": {"_count": 1}, "pain": {"_count": 1}}, "a": {"_count": 6, "loud": {"_count": 1}, "losing": {"_count": 2}, "mad": {"_count": 1}, "manyheaded": {"_count": 1}, "long": {"_count": 1}}, "dementors": {"_count": 1, "Harry": {"_count": 1}}, "his": {"_count": 3, "way": {"_count": 3}}, "their": {"_count": 2, "way": {"_count": 2}}, "back": {"_count": 3, "tears": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "furiously": {"_count": 1, "but": {"_count": 1}}, "too": {"_count": 3, "hard": {"_count": 1}, "youre": {"_count": 1}, "fifty": {"_count": 1}}, "and": {"_count": 3, "Lupin": {"_count": 1}, "rummaging": {"_count": 1}, "theyve": {"_count": 1}}, "her": {"_count": 1, "way": {"_count": 1}}, "tooth": {"_count": 1, "and": {"_count": 1}}, "chance": {"_count": 1, "depending": {"_count": 1}}, "now": {"_count": 1, "to": {"_count": 1}}, "Voldemort": {"_count": 2, "at": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "off": {"_count": 2, "two": {"_count": 1}, "Fang": {"_count": 1}}, "And": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "died": {"_count": 1}}, "among": {"_count": 1, "ourselves": {"_count": 1}}, "YouKnowWho": {"_count": 2, "with": {"_count": 1}, "right": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 5}, "?": {"_count": 4}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "since": {"_count": 1, "they": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "at": {"_count": 1}}, "Bellatrix": {"_count": 1, "Lestrange": {"_count": 1}}, "that": {"_count": 1, "which": {"_count": 1}}, "Harry": {"_count": 2, "turned": {"_count": 1}, "": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "again": {"_count": 1, "I": {"_count": 1}}, "for": {"_count": 1, "only": {"_count": 1}}, "rallying": {"_count": 1, "resistance": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "doing": {"_count": 1, "underground": {"_count": 1}}, "arent": {"_count": 1, "we": {"_count": 1}}, "those": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "straightened": {"_count": 56, "up": {"_count": 41, "gasping": {"_count": 1}, "": {"_count": 7}, "and": {"_count": 8}, "caught": {"_count": 1}, "took": {"_count": 1}, "suddenly": {"_count": 1}, "massaging": {"_count": 1}, "her": {"_count": 1}, "with": {"_count": 2}, "rubbing": {"_count": 1}, "nodding": {"_count": 1}, "his": {"_count": 1}, "listening": {"_count": 1}, "turned": {"_count": 1}, "threw": {"_count": 1}, "positioned": {"_count": 1}, "eyeing": {"_count": 1}, "slowly": {"_count": 1}, "again": {"_count": 2}, "looking": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 2}, "to": {"_count": 1}, "still": {"_count": 1}, "looked": {"_count": 1}}, "his": {"_count": 7, "many": {"_count": 1}, "robes": {"_count": 1}, "hat": {"_count": 1}, "glasses": {"_count": 2}, "feathered": {"_count": 1}, "tea": {"_count": 1}}, "the": {"_count": 4, "paper": {"_count": 1}, "parchment": {"_count": 1}, "Pensieve": {"_count": 1}, "half": {"_count": 1}}, "himself": {"_count": 2, "as": {"_count": 1}, "in": {"_count": 1}}, "like": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "out": {"_count": 1}}}, "gasping": {"_count": 18, "for": {"_count": 7, "breath": {"_count": 7}}, "to": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 4, "moaning": {"_count": 1}, "sobbing": {"_count": 1}, "panting": {"_count": 1}, "shaking": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "screaming": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "coughing": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "slowed": {"_count": 1}}}, "breath": {"_count": 241, "with": {"_count": 3, "Harrys": {"_count": 1}, "extreme": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 39, "then": {"_count": 3}, "her": {"_count": 1}, "picked": {"_count": 1}, "watching": {"_count": 1}, "bellowed": {"_count": 1}, "tapping": {"_count": 1}, "said": {"_count": 4}, "at": {"_count": 1}, "stopped": {"_count": 1}, "stepped": {"_count": 1}, "he": {"_count": 1}, "slid": {"_count": 1}, "ran": {"_count": 1}, "looked": {"_count": 3}, "continued": {"_count": 2}, "began": {"_count": 1}, "stared": {"_count": 1}, "asked": {"_count": 1}, "calling": {"_count": 1}, "read": {"_count": 1}, "finished": {"_count": 1}, "stirred": {"_count": 2}, "plunged": {"_count": 2}, "Neville": {"_count": 1}, "started": {"_count": 1}, "mouthing": {"_count": 1}, "the": {"_count": 1}, "threw": {"_count": 1}, "closed": {"_count": 1}}, "": {"_count": 59, ".": {"_count": 57}, "!": {"_count": 2}}, "rose": {"_count": 2, "in": {"_count": 2}}, "they": {"_count": 2, "returned": {"_count": 1}, "heard": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 8, "wind": {"_count": 3}, "excitement": {"_count": 1}, "life": {"_count": 1}, "clean": {"_count": 1}, "the": {"_count": 1}, "pedestrians": {"_count": 1}}, "as": {"_count": 15, "they": {"_count": 3}, "though": {"_count": 2}, "relief": {"_count": 1}, "he": {"_count": 5}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "she": {"_count": 1}, "one": {"_count": 1}}, "covered": {"_count": 1, "his": {"_count": 1}}, "Happy": {"_count": 1, "birthday": {"_count": 1}}, "scattered": {"_count": 1, "the": {"_count": 1}}, "pleased": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 3, "pulled": {"_count": 1}, "cried": {"_count": 1}, "could": {"_count": 1}}, "Lockhart": {"_count": 1, "whipped": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 4, "looked": {"_count": 1}, "had": {"_count": 1}, "felt": {"_count": 1}, "shouldered": {"_count": 1}}, "Malfoy": {"_count": 3, "pointed": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "said": {"_count": 1, "We": {"_count": 1}}, "the": {"_count": 1, "dormitory": {"_count": 1}}, "on": {"_count": 5, "his": {"_count": 2}, "pointing": {"_count": 1}, "the": {"_count": 2}}, "catch": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 4, "behind": {"_count": 1}, "an": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}}, "expecto": {"_count": 1, "patronum": {"_count": 1}}, "one": {"_count": 1, "rotting": {"_count": 1}}, "saw": {"_count": 1, "inchlong": {"_count": 1}}, "in": {"_count": 4, "sharp": {"_count": 1}, "a": {"_count": 2}, "Gobbledegook": {"_count": 1}}, "edging": {"_count": 1, "forward": {"_count": 1}}, "her": {"_count": 1, "lip": {"_count": 1}}, "was": {"_count": 6, "coming": {"_count": 1}, "actually": {"_count": 1}, "gazing": {"_count": 1}, "constricted": {"_count": 1}, "squeezed": {"_count": 1}, "loud": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 3, "spare": {"_count": 1}, "utter": {"_count": 1}, "strike": {"_count": 1}}, "Harry": {"_count": 1, "took": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "coming": {"_count": 3, "in": {"_count": 3}}, "but": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "Hagrids": {"_count": 1, "massive": {"_count": 1}}, "then": {"_count": 3, "got": {"_count": 1}, "began": {"_count": 1}, "pointed": {"_count": 1}}, "seemed": {"_count": 3, "to": {"_count": 3}}, "filling": {"_count": 1, "his": {"_count": 1}}, "EXPECTO": {"_count": 1, "PATRONUM": {"_count": 1}}, "horrified": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 2}}, "staring": {"_count": 1, "at": {"_count": 1}}, "without": {"_count": 1, "looking": {"_count": 1}}, "while": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}, "Harrys": {"_count": 1, "fists": {"_count": 1}}, "Rons": {"_count": 1, "dad": {"_count": 1}}, "Sirius": {"_count": 1, "said": {"_count": 1}}, "steaming": {"_count": 1, "up": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "knocked": {"_count": 1, "and": {"_count": 1}}, "check": {"_count": 1, "the": {"_count": 1}}, "leaving": {"_count": 1, "his": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "tearing": {"_count": 1, "his": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "misted": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 2, "caught": {"_count": 1}, "left": {"_count": 1}}, "made": {"_count": 1, "Dumbledore": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "looks": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "held": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "potion": {"_count": 1}, "mustache": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 1, "part": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "came": {"_count": 2, "in": {"_count": 1}, "slow": {"_count": 1}}, "acknowledging": {"_count": 1, "their": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "into": {"_count": 2, "lungs": {"_count": 1}, "his": {"_count": 1}}, "drowned": {"_count": 1, "distant": {"_count": 1}}, "dispersing": {"_count": 1, "rapidly": {"_count": 1}}, "foul": {"_count": 1, "in": {"_count": 1}}, "fighting": {"_count": 1, "against": {"_count": 1}}, "caught": {"_count": 1, "and": {"_count": 1}}, "rattling": {"_count": 1, "": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}}, "wheezed": {"_count": 10, "at": {"_count": 1, "Harry": {"_count": 1}}, "insults": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Filch": {"_count": 2, "who": {"_count": 1}, "his": {"_count": 1}}, "Doge": {"_count": 2, "": {"_count": 2}}, "Hermione": {"_count": 1, "bent": {"_count": 1}}}, "Someone": {"_count": 62, "knew": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 11, "outside": {"_count": 1}, "lookin": {"_count": 1}, "creeping": {"_count": 1}, "slapping": {"_count": 1}, "screaming": {"_count": 2}, "climbing": {"_count": 1}, "sobbing": {"_count": 1}, "cowering": {"_count": 1}, "dead": {"_count": 1}, "out": {"_count": 1}}, "had": {"_count": 9, "obviously": {"_count": 1}, "poked": {"_count": 1}, "set": {"_count": 1}, "removed": {"_count": 1}, "hit": {"_count": 1}, "already": {"_count": 1}, "searched": {"_count": 1}, "cut": {"_count": 1}, "broken": {"_count": 1}}, "knocked": {"_count": 1, "into": {"_count": 1}}, "standing": {"_count": 1, "outside": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "who": {"_count": 1, "wont": {"_count": 1}}, "acting": {"_count": 1, "oddly": {"_count": 1}}, "wouldve": {"_count": 1, "seen": {"_count": 1}}, "help": {"_count": 1, "me": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "untied": {"_count": 1, "him": {"_count": 1}}, "creeping": {"_count": 1, "into": {"_count": 1}}, "a": {"_count": 1, "houseelf": {"_count": 1}}, "laughed": {"_count": 1, "behind": {"_count": 1}}, "put": {"_count": 1, "Potters": {"_count": 1}}, "else": {"_count": 4, "mustve": {"_count": 1}, "might": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "attacking": {"_count": 1, "you": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "larger": {"_count": 1, "and": {"_count": 1}}, "magical": {"_count": 1, "had": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "shut": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "Stun": {"_count": 1, "him": {"_count": 1}}, "couldn": {"_count": 1, "have": {"_count": 1}}, "screamed": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "he": {"_count": 1}}, "watching": {"_count": 1, "us": {"_count": 1}}, "helped": {"_count": 1, "us": {"_count": 1}}, "sent": {"_count": 2, "that": {"_count": 1}, "a": {"_count": 1}}, "yanked": {"_count": 1, "Harry": {"_count": 1}}, "grab": {"_count": 1, "him": {"_count": 1}}, "there": {"_count": 1, "came": {"_count": 1}}, "slammed": {"_count": 1, "Harrys": {"_count": 1}}, "passed": {"_count": 1, "close": {"_count": 1}}}, "Surely": {"_count": 32, "that": {"_count": 1, "meant": {"_count": 1}}, "it": {"_count": 2, "couldnt": {"_count": 1}, "would": {"_count": 1}}, "you": {"_count": 10, "want": {"_count": 1}, "dont": {"_count": 2}, "will": {"_count": 1}, "havent": {"_count": 1}, "nneed": {"_count": 1}, "did": {"_count": 1}, "can": {"_count": 1}, "ought": {"_count": 1}, "have": {"_count": 1}}, "surely": {"_count": 1, "they": {"_count": 1}}, "Black": {"_count": 1, "as": {"_count": 1}}, "youre": {"_count": 1, "going": {"_count": 1}}, "your": {"_count": 1, "house": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "there": {"_count": 1, "could": {"_count": 1}}, "he": {"_count": 1, "should": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 2, "whole": {"_count": 1}, "latter": {"_count": 1}}, "not": {"_count": 2, "": {"_count": 2}}, "even": {"_count": 1, "you": {"_count": 1}}, "youve": {"_count": 1, "realized": {"_count": 1}}, "thats": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "she": {"_count": 1, "would": {"_count": 1}}, "nobody": {"_count": 1, "in": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}}, "meant": {"_count": 171, "theyd": {"_count": 1, "try": {"_count": 1}}, "to": {"_count": 27, "say": {"_count": 6}, "in": {"_count": 1}, "kill": {"_count": 2}, "do": {"_count": 3}, "he": {"_count": 1}, "right": {"_count": 1}, "be": {"_count": 1}, "so": {"_count": 1}, "him": {"_count": 4}, "give": {"_count": 1}, "know": {"_count": 1}, "shout": {"_count": 1}, "call": {"_count": 1}, "let": {"_count": 1}, "make": {"_count": 1}, "and": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 19}, "?": {"_count": 4}}, "that": {"_count": 30, "the": {"_count": 7}, "he": {"_count": 7}, "with": {"_count": 1}, "everyone": {"_count": 1}, "Harry": {"_count": 3}, "people": {"_count": 1}, "Ron": {"_count": 2}, "we": {"_count": 1}, "": {"_count": 1}, "visibility": {"_count": 1}, "their": {"_count": 1}, "Slughorn": {"_count": 1}, "nothing": {"_count": 1}, "it": {"_count": 1}, "Voldemort": {"_count": 1}}, "more": {"_count": 2, "to": {"_count": 2}}, "you": {"_count": 4, "to": {"_count": 2}, "at": {"_count": 1}, "": {"_count": 1}}, "\u2018please": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "Though": {"_count": 1, "if": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 2, "could": {"_count": 1}, "needed": {"_count": 1}}, "deal": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 5, "never": {"_count": 1}, "had": {"_count": 2}, "did": {"_count": 1}, "was": {"_count": 1}}, "well": {"_count": 1, "but": {"_count": 1}}, "as": {"_count": 1, "Wood": {"_count": 1}}, "Herbology": {"_count": 1, "in": {"_count": 1}}, "admitting": {"_count": 1, "that": {"_count": 1}}, "everything": {"_count": 2, "to": {"_count": 2}}, "it": {"_count": 4, "to": {"_count": 2}, "when": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "set": {"_count": 1}}, "the": {"_count": 5, "dementors": {"_count": 1}, "Portkey": {"_count": 1}, "idea": {"_count": 1}, "Bludger": {"_count": 1}, "return": {"_count": 1}}, "something": {"_count": 2, "secret": {"_count": 1}, "to": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "disappearing": {"_count": 1, "from": {"_count": 1}}, "seeing": {"_count": 1, "the": {"_count": 1}}, "Cedric": {"_count": 1, "had": {"_count": 1}}, "best": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "Hagrid": {"_count": 2, "how": {"_count": 1}, "to": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "a": {"_count": 1, "life": {"_count": 1}}, "and": {"_count": 1, "to": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "ter": {"_count": 3, "live": {"_count": 1}, "give": {"_count": 1}, "do": {"_count": 1}}, "get": {"_count": 1, "out": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "sorry": {"_count": 1, "he": {"_count": 1}}, "Wormtail": {"_count": 1, "had": {"_count": 1}}, "anyone": {"_count": 1, "suspected": {"_count": 1}}, "Grawp": {"_count": 1, "had": {"_count": 1}}, "only": {"_count": 1, "one": {"_count": 1}}, "or": {"_count": 1, "what": {"_count": 1}}, "nothing": {"_count": 2, "Sirius": {"_count": 1}, "Fudge": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "I": {"_count": 2, "know": {"_count": 1}, "am": {"_count": 1}}, "for": {"_count": 2, "loads": {"_count": 1}, "Slughorn": {"_count": 1}}, "please": {"_count": 1, "Professor": {"_count": 1}}, "business": {"_count": 1, "said": {"_count": 1}}, "though": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "patch": {"_count": 1}}, "even": {"_count": 1, "Borgin": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "good": {"_count": 1, "spirits": {"_count": 1}}, "Oh": {"_count": 1, "youre": {"_count": 1}}, "safety": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "you": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "bu": {"_count": 1, "wheres": {"_count": 1}}, "an": {"_count": 1, "army": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "light": {"_count": 1, "streamed": {"_count": 1}}}, "try": {"_count": 299, "again": {"_count": 12, "": {"_count": 7}, "threaten": {"_count": 1}, "tomorrow": {"_count": 1}, "said": {"_count": 1}, "shall": {"_count": 1}, "another": {"_count": 1}}, "takin": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 10, "rob": {"_count": 3}, "kill": {"_count": 1}, "find": {"_count": 1}, "get": {"_count": 1}, "see": {"_count": 1}, "slip": {"_count": 1}, "persuade": {"_count": 1}, "open": {"_count": 1}}, "and": {"_count": 123, "rob": {"_count": 1}, "get": {"_count": 16}, "knock": {"_count": 1}, "score": {"_count": 1}, "steal": {"_count": 2}, "pull": {"_count": 1}, "kill": {"_count": 8}, "find": {"_count": 12}, "hit": {"_count": 1}, "catch": {"_count": 2}, "instead": {"_count": 1}, "magic": {"_count": 1}, "rescue": {"_count": 1}, "help": {"_count": 2}, "make": {"_count": 4}, "unseat": {"_count": 1}, "shift": {"_count": 1}, "take": {"_count": 2}, "save": {"_count": 3}, "see": {"_count": 3}, "rip": {"_count": 1}, "break": {"_count": 1}, "teach": {"_count": 1}, "win": {"_count": 1}, "shoot": {"_count": 1}, "sneak": {"_count": 1}, "clear": {"_count": 1}, "treat": {"_count": 1}, "interfere": {"_count": 1}, "come": {"_count": 1}, "pay": {"_count": 1}, "bring": {"_count": 2}, "persuade": {"_count": 3}, "keep": {"_count": 2}, "lead": {"_count": 1}, "stir": {"_count": 1}, "talk": {"_count": 2}, "cheer": {"_count": 1}, "fall": {"_count": 1}, "move": {"_count": 1}, "work": {"_count": 1}, "tackle": {"_count": 2}, "convince": {"_count": 1}, "do": {"_count": 2}, "practice": {"_count": 1}, "finish": {"_count": 1}, "forget": {"_count": 1}, "say": {"_count": 1}, "stop": {"_count": 1}, "erase": {"_count": 1}, "push": {"_count": 1}, "stand": {"_count": 1}, "lure": {"_count": 1}, "possess": {"_count": 1}, "ease": {"_count": 1}, "decipher": {"_count": 1}, "open": {"_count": 1}, "charm": {"_count": 2}, "soften": {"_count": 1}, "kick": {"_count": 1}, "destroy": {"_count": 2}, "put": {"_count": 1}, "trace": {"_count": 1}, "act": {"_count": 1}, "protect": {"_count": 1}, "communicate": {"_count": 1}, "tune": {"_count": 1}, "look": {"_count": 1}, "blow": {"_count": 1}, "calm": {"_count": 1}}, "to": {"_count": 33, "see": {"_count": 1}, "hurt": {"_count": 2}, "break": {"_count": 1}, "worm": {"_count": 1}, "chuck": {"_count": 1}, "get": {"_count": 2}, "persuade": {"_count": 1}, "drag": {"_count": 1}, "listen": {"_count": 1}, "find": {"_count": 3}, "understand": {"_count": 1}, "collect": {"_count": 1}, "rescue": {"_count": 1}, "protect": {"_count": 1}, "shut": {"_count": 1}, "extricate": {"_count": 1}, "force": {"_count": 1}, "help": {"_count": 2}, "hit": {"_count": 1}, "prevent": {"_count": 1}, "think": {"_count": 1}, "reenter": {"_count": 1}, "work": {"_count": 1}, "Disapparate": {"_count": 1}, "possess": {"_count": 1}, "escape": {"_count": 1}, "kill": {"_count": 1}, "turn": {"_count": 1}}, "it": {"_count": 9, "out": {"_count": 2}, "on": {"_count": 2}, "now": {"_count": 2}, "again": {"_count": 1}, "": {"_count": 1}, "sometime": {"_count": 1}}, "me": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "her": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 3, "out": {"_count": 1}, "": {"_count": 1}, "next": {"_count": 1}}, "since": {"_count": 1, "theyd": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 12}, "?": {"_count": 1}, "!": {"_count": 2}}, "anything": {"_count": 3, "ourselves": {"_count": 1}, "in": {"_count": 1}, "or": {"_count": 1}}, "other": {"_count": 1, "ways": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "a": {"_count": 1}, "some": {"_count": 1}}, "what": {"_count": 1, "if": {"_count": 1}}, "this": {"_count": 2, "rat": {"_count": 1}, "one": {"_count": 1}}, "not": {"_count": 5, "ter": {"_count": 1}, "to": {"_count": 4}}, "looping": {"_count": 1, "him": {"_count": 1}}, "havent": {"_count": 1, "we": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 2}}, "out": {"_count": 9, "the": {"_count": 2}, "a": {"_count": 1}, "for": {"_count": 2}, "was": {"_count": 1}, "Ive": {"_count": 1}, "last": {"_count": 1}, "an": {"_count": 1}}, "though": {"_count": 2, "": {"_count": 1}, "hadnt": {"_count": 1}}, "em": {"_count": 2, "on": {"_count": 1}, "out": {"_count": 1}}, "that": {"_count": 5, "again": {"_count": 2}, "Shield": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "murmured": {"_count": 1}}, "a": {"_count": 6, "Stunning": {"_count": 1}, "taste": {"_count": 1}, "good": {"_count": 1}, "few": {"_count": 1}, "door": {"_count": 1}, "Summoning": {"_count": 1}}, "some": {"_count": 1, "simple": {"_count": 1}}, "putting": {"_count": 2, "it": {"_count": 1}, "up": {"_count": 1}}, "the": {"_count": 4, "egg": {"_count": 1}, "Fever": {"_count": 1}, "Quibbler": {"_count": 1}, "next": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "said": {"_count": 6, "Ron": {"_count": 2}, "Mr": {"_count": 1}, "McLaggen": {"_count": 1}, "Harry": {"_count": 2}}, "sniggered": {"_count": 1, "George": {"_count": 1}}, "firewhisky": {"_count": 1, "You": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "but": {"_count": 2, "his": {"_count": 1}, "you": {"_count": 1}}, "Stunning": {"_count": 1, "again": {"_count": 1}}, "only": {"_count": 1, "most": {"_count": 1}}, "dissuading": {"_count": 1, "Harry": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 1, "door": {"_count": 1}}, "from": {"_count": 1, "there": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "sneered": {"_count": 1, "Riddle": {"_count": 1}}, "hooking": {"_count": 1, "up": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "too": {"_count": 1, "hard": {"_count": 1}}, "my": {"_count": 2, "parents": {"_count": 1}, "strength": {"_count": 1}}, "Impervius": {"_count": 1, "to": {"_count": 1}}, "Meteolojinx": {"_count": 1, "Recanto": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "digging": {"_count": 1, "in": {"_count": 1}}, "up": {"_count": 1, "here": {"_count": 1}}, "clearing": {"_count": 1, "it": {"_count": 1}}, "his": {"_count": 1, "strength": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}}, "fail": {"_count": 26, "": {"_count": 8, ".": {"_count": 6}, "?": {"_count": 2}}, "to": {"_count": 7, "beat": {"_count": 1}, "be": {"_count": 1}, "enjoy": {"_count": 1}, "notice": {"_count": 2}, "recognize": {"_count": 1}, "win": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "our": {"_count": 1, "O": {"_count": 1}}, "all": {"_count": 1, "their": {"_count": 1}}, "him": {"_count": 1, "this": {"_count": 1}}, "that": {"_count": 1, "one": {"_count": 1}}, "Divination": {"_count": 1, "and": {"_count": 1}}, "Ginny": {"_count": 1, "was": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "when": {"_count": 1, "directed": {"_count": 1}}, "and": {"_count": 1, "pay": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}}, "plan": {"_count": 122, "": {"_count": 27, ".": {"_count": 19}, "?": {"_count": 7}, "!": {"_count": 1}}, "now": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "didnt": {"_count": 1, "work": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "where": {"_count": 1, "so": {"_count": 1}}, "worked": {"_count": 4, "": {"_count": 2}, "out": {"_count": 1}, "I": {"_count": 1}}, "said": {"_count": 4, "Dumbledore": {"_count": 1}, "Fudge": {"_count": 1}, "Harry": {"_count": 2}}, "could": {"_count": 1, "possibly": {"_count": 1}}, "a": {"_count": 2, "possible": {"_count": 1}, "very": {"_count": 1}}, "our": {"_count": 1, "next": {"_count": 1}}, "cannot": {"_count": 1, "proceed": {"_count": 1}}, "be": {"_count": 1, "nothing": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "Wormtail": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "for": {"_count": 1}, "then": {"_count": 1}, "simply": {"_count": 1}, "its": {"_count": 1}}, "To": {"_count": 1, "educate": {"_count": 1}}, "fully": {"_count": 1, "formed": {"_count": 1}}, "was": {"_count": 5, "that": {"_count": 1}, "working": {"_count": 1}, "to": {"_count": 1}, "scheduled": {"_count": 1}, "good": {"_count": 1}}, "from": {"_count": 1, "where": {"_count": 1}}, "by": {"_count": 1, "pointing": {"_count": 1}}, "failed": {"_count": 2, "": {"_count": 2}}, "based": {"_count": 1, "upon": {"_count": 1}}, "to": {"_count": 9, "restore": {"_count": 1}, "remove": {"_count": 1}, "get": {"_count": 1}, "anyone": {"_count": 1}, "backfire": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}, "himself": {"_count": 1}, "have": {"_count": 1}}, "succeeded": {"_count": 1, "": {"_count": 1}}, "anyway": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "growled": {"_count": 2, "Moody": {"_count": 1}, "MadEye": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 1}, "mine": {"_count": 1}, "every": {"_count": 1}, "action": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "lessons": {"_count": 1}}, "I": {"_count": 1, "honestly": {"_count": 1}}, "not": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 3, "spat": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}}, "should": {"_count": 1, "succeed": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "for": {"_count": 1}}, "my": {"_count": 1, "next": {"_count": 1}}, "being": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "scuppered": {"_count": 1, "said": {"_count": 1}}, "given": {"_count": 1, "them": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "here": {"_count": 1, "as": {"_count": 1}}, "works": {"_count": 1, "we": {"_count": 1}}, "into": {"_count": 1, "operation": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "again": {"_count": 1, "had": {"_count": 1}}, "stop": {"_count": 1, "yelling": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "She": {"_count": 1, "glanced": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "is": {"_count": 1, "now": {"_count": 1}}, "went": {"_count": 1, "wrong": {"_count": 1}}, "hasnt": {"_count": 1, "backfired": {"_count": 1}}}, "repaired": {"_count": 17, "alarm": {"_count": 1, "clock": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}, "friendship": {"_count": 1, "Ron": {"_count": 1}}, "somebody": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "the": {"_count": 3, "parchment": {"_count": 1}, "bed": {"_count": 1}, "damage": {"_count": 1}}, "itself": {"_count": 1, "during": {"_count": 1}}, "by": {"_count": 2, "Harry": {"_count": 1}, "any": {"_count": 1}}, "themselves": {"_count": 1, "as": {"_count": 1}}, "sofa": {"_count": 1, "and": {"_count": 1}}, "ribs": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "alarm": {"_count": 37, "clock": {"_count": 7, "rang": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "repaired": {"_count": 1}, "reached": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "over": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "pity": {"_count": 1}, "he": {"_count": 1}, "zoomed": {"_count": 1}, "then": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "Sirius": {"_count": 1, "said": {"_count": 1}}, "bell": {"_count": 1, "before": {"_count": 1}}, "at": {"_count": 1, "five": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "Gaunt": {"_count": 1}}}, "clock": {"_count": 47, "rang": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 3}, "his": {"_count": 1}, "a": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "overhead": {"_count": 1, "which": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "chimed": {"_count": 2, "somewhere": {"_count": 1}, "midnight": {"_count": 1}}, "and": {"_count": 3, "looked": {"_count": 1}, "knocked": {"_count": 1}, "was": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "mortal": {"_count": 1, "peril": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 4, "had": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 1}, "shot": {"_count": 1}}, "of": {"_count": 1, "hers": {"_count": 1}}, "weve": {"_count": 1, "had": {"_count": 1}}, "repaired": {"_count": 1, "by": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "lay": {"_count": 1, "splintered": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "all": {"_count": 1, "nine": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "standing": {"_count": 2, "upon": {"_count": 2}}, "within": {"_count": 1, "chimed": {"_count": 1}}, "ticking": {"_count": 1, "on": {"_count": 1}}, "perhaps": {"_count": 1, "Snape": {"_count": 1}}, "showed": {"_count": 1, "half": {"_count": 1}}}, "six": {"_count": 120, "oclock": {"_count": 9, "the": {"_count": 1}, "in": {"_count": 2}, "onward": {"_count": 1}, "that": {"_count": 2}, "laden": {"_count": 1}, "on": {"_count": 1}, "arrived": {"_count": 1}}, "fat": {"_count": 1, "juicy": {"_count": 1}}, "of": {"_count": 7, "her": {"_count": 1}, "Unfogging": {"_count": 1}, "them": {"_count": 4}, "us": {"_count": 1}}, "years": {"_count": 7, "in": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 2}, "ago": {"_count": 1}, "had": {"_count": 1}, "old": {"_count": 1}}, "eyes": {"_count": 1, "staring": {"_count": 1}}, "large": {"_count": 3, "screech": {"_count": 1}, "trunks": {"_count": 1}, "figures": {"_count": 1}}, "hoops": {"_count": 1, "isnt": {"_count": 1}}, "hundred": {"_count": 4, "and": {"_count": 3}, "years": {"_count": 1}}, "tall": {"_count": 1, "goal": {"_count": 1}}, "steps": {"_count": 2, "landing": {"_count": 1}, "below": {"_count": 1}}, "gnomes": {"_count": 1, "at": {"_count": 1}}, "times": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 5, "seven": {"_count": 5}}, "inches": {"_count": 4, "off": {"_count": 1}, "long": {"_count": 1}, "from": {"_count": 1}, "too": {"_count": 1}}, "immensely": {"_count": 1, "long": {"_count": 1}}, "sons": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "feet": {"_count": 10, "tall": {"_count": 2}, "to": {"_count": 1}, "long": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}, "above": {"_count": 2}, "before": {"_count": 1}, "of": {"_count": 1}}, "fellow": {"_count": 1, "team": {"_count": 1}}, "Quidditch": {"_count": 1, "practices": {"_count": 1}}, "scarlet": {"_count": 1, "blurs": {"_count": 1}}, "months": {"_count": 15, "developing": {"_count": 1}, "": {"_count": 6}, "to": {"_count": 1}, "after": {"_count": 1}, "in": {"_count": 1}, "earlier": {"_count": 1}, "very": {"_count": 1}, "telling": {"_count": 1}, "on": {"_count": 1}, "worth": {"_count": 1}}, "heavy": {"_count": 1, "Hogwarts": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Cho": {"_count": 1}}, "plots": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "seven": {"_count": 1}, "taking": {"_count": 1}}, "floors": {"_count": 1, "and": {"_count": 1}}, "houseelves": {"_count": 1, "came": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}, "stairs": {"_count": 1, "where": {"_count": 1}}, "bottles": {"_count": 1, "a": {"_count": 1}}, "missing": {"_count": 1, "Death": {"_count": 1}}, "Department": {"_count": 1, "of": {"_count": 1}}, "Sickles": {"_count": 1, "for": {"_count": 1}}, "people": {"_count": 3, "had": {"_count": 1}, "all": {"_count": 1}, "risk": {"_count": 1}}, "extra": {"_count": 1, "chairs": {"_count": 1}}, "more": {"_count": 1, "portraits": {"_count": 1}}, "weeks": {"_count": 2, "left": {"_count": 1}, "time": {"_count": 1}}, "elongated": {"_count": 1, "shadows": {"_count": 1}}, "tiny": {"_count": 1, "but": {"_count": 1}}, "two": {"_count": 1, "four": {"_count": 1}}, "to": {"_count": 1, "eight": {"_count": 1}}, "teenagers": {"_count": 1, "were": {"_count": 1}}, "goals": {"_count": 1, "": {"_count": 1}}, "visitors": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "George": {"_count": 1, "pointed": {"_count": 1}}, "Horcruxes": {"_count": 1, "then": {"_count": 1}}, "are": {"_count": 1, "more": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "Potters": {"_count": 1}}, "pairs": {"_count": 1, "in": {"_count": 1}}, "doppelgangers": {"_count": 1, "rummaged": {"_count": 1}}, "brothers": {"_count": 1, "must": {"_count": 1}}, "hours": {"_count": 1, "ago": {"_count": 1}}}, "mustnt": {"_count": 29, "wake": {"_count": 1, "the": {"_count": 1}}, "go": {"_count": 2, "wandering": {"_count": 1}, "doing": {"_count": 1}}, "be": {"_count": 5, "seen": {"_count": 3}, "angry": {"_count": 2}}, "expect": {"_count": 1, "a": {"_count": 1}}, "tell": {"_count": 1, "": {"_count": 1}}, "blame": {"_count": 1, "yourself": {"_count": 1}}, "do": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "relax": {"_count": 1, "": {"_count": 1}}, "catch": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "keep": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 2}, "!": {"_count": 3}}, "it": {"_count": 1, "": {"_count": 1}}, "get": {"_count": 1, "my": {"_count": 1}}, "think": {"_count": 1, "Im": {"_count": 1}}, "start": {"_count": 1, "off": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 1, "that": {"_count": 1}}, "fight": {"_count": 1, "": {"_count": 1}}, "know": {"_count": 1, "its": {"_count": 1}}}, "stole": {"_count": 32, "downstairs": {"_count": 1, "without": {"_count": 1}}, "it": {"_count": 6, "really": {"_count": 1}, "back": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 1}}, "some": {"_count": 2, "cakes": {"_count": 1}, "of": {"_count": 1}}, "their": {"_count": 1, "shoes": {"_count": 1}}, "the": {"_count": 9, "passwords": {"_count": 1}, "rest": {"_count": 1}, "Horcrux": {"_count": 1}, "real": {"_count": 1}, "locket": {"_count": 1}, "sword": {"_count": 1}, "diadem": {"_count": 2}, "wand": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "boomslang": {"_count": 1, "skin": {"_count": 1}}, "a": {"_count": 1, "horrified": {"_count": 1}}, "over": {"_count": 3, "Nearly": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}}, "Morfins": {"_count": 1, "wand": {"_count": 1}}, "through": {"_count": 1, "him": {"_count": 1}}, "whatever": {"_count": 1, "YouKnowWhos": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 2, "Gregorovitch": {"_count": 2}}}, "wait": {"_count": 180, "for": {"_count": 41, "the": {"_count": 9}, "Filch": {"_count": 2}, "Wood": {"_count": 1}, "Peeves": {"_count": 1}, "now": {"_count": 1}, "Voldemort": {"_count": 1}, "Mum": {"_count": 1}, "it": {"_count": 3}, "an": {"_count": 1}, "your": {"_count": 2}, "you": {"_count": 2}, "more": {"_count": 1}, "them": {"_count": 2}, "information": {"_count": 1}, "Sturgis": {"_count": 1}, "Defense": {"_count": 1}, "term": {"_count": 1}, "proof": {"_count": 1}, "morning": {"_count": 2}, "Voldemorts": {"_count": 1}, "chapters": {"_count": 1}, "Kreacher": {"_count": 1}, "somebody": {"_count": 1}, "anyone": {"_count": 1}, "one": {"_count": 2}}, "jus": {"_count": 1, "one": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 15}, "!": {"_count": 3}}, "its": {"_count": 1, "the": {"_count": 1}}, "quietly": {"_count": 2, "": {"_count": 1}, "Potter": {"_count": 1}}, "to": {"_count": 21, "get": {"_count": 3}, "do": {"_count": 1}, "give": {"_count": 1}, "see": {"_count": 6}, "show": {"_count": 1}, "be": {"_count": 3}, "leave": {"_count": 1}, "tell": {"_count": 1}, "read": {"_count": 1}, "find": {"_count": 1}, "wake": {"_count": 1}, "join": {"_count": 1}}, "a": {"_count": 7, "moment": {"_count": 5}, "minute": {"_count": 1}, "bit": {"_count": 1}}, "til": {"_count": 1, "you": {"_count": 1}}, "here": {"_count": 11, "": {"_count": 4}, "with": {"_count": 1}, "you": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 3}, "Hermione": {"_count": 1}}, "outside": {"_count": 7, "the": {"_count": 2}, "then": {"_count": 1}, "while": {"_count": 1}, "Molly": {"_count": 1}, "she": {"_count": 1}, "in": {"_count": 1}}, "until": {"_count": 17, "your": {"_count": 1}, "you": {"_count": 1}, "next": {"_count": 1}, "theyve": {"_count": 2}, "its": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 1}, "tonight": {"_count": 1}, "morning": {"_count": 1}, "called": {"_count": 1}, "evening": {"_count": 1}, "after": {"_count": 2}, "later": {"_count": 1}}, "Hagrid": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "left": {"_count": 1}, "see": {"_count": 2}, "that": {"_count": 1}}, "till": {"_count": 5, "you": {"_count": 2}, "I": {"_count": 2}, "daybreak": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "fer": {"_count": 2, "the": {"_count": 2}}, "much": {"_count": 1, "longer": {"_count": 1}}, "said": {"_count": 4, "Dumbledore": {"_count": 1}, "Professor": {"_count": 2}, "Ron": {"_count": 1}}, "long": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "long": {"_count": 1}, "Harry": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "panted": {"_count": 1}}, "before": {"_count": 1, "hed": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "on": {"_count": 1, "one": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 1, "them": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "theyre": {"_count": 1, "somethin": {"_count": 1}}, "of": {"_count": 1, "several": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "one": {"_count": 1}}, "Bella": {"_count": 1, "followed": {"_count": 1}}, "Either": {"_count": 1, "Dumbledore": {"_count": 1}}, "forever": {"_count": 1, "as": {"_count": 1}}, "Nymphadora": {"_count": 1, "Potter": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "up": {"_count": 1, "we": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "when": {"_count": 1, "Im": {"_count": 1}}, "AguamentiV": {"_count": 1, "said": {"_count": 1}}, "upstairs": {"_count": 1, "I": {"_count": 1}}, "Ron": {"_count": 1, "finished": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "And": {"_count": 1, "seconds": {"_count": 1}}, "Arry": {"_count": 1, "": {"_count": 1}}, "cried": {"_count": 1, "Hermione": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}}, "postman": {"_count": 4, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "has": {"_count": 1, "never": {"_count": 1}}, "noticed": {"_count": 1, "he": {"_count": 1}}}, "hammered": {"_count": 9, "as": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "the": {"_count": 1, "wind": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "hard": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "fast": {"_count": 1}}}, "aaRRRGH": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "trodden": {"_count": 7, "on": {"_count": 6, "something": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "it": {"_count": 1}}, "that": {"_count": 1, "morning": {"_count": 1}}}, "squashy": {"_count": 12, "on": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 1, "had": {"_count": 1}}, "package": {"_count": 1, "of": {"_count": 1}}, "armchairs": {"_count": 5, "": {"_count": 1}, "waiting": {"_count": 1}, "where": {"_count": 1}, "and": {"_count": 2}}, "purple": {"_count": 1, "sleeping": {"_count": 1}}, "chintz": {"_count": 1, "armchair": {"_count": 1}}, "old": {"_count": 1, "armchair": {"_count": 1}}, "and": {"_count": 1, "slippery": {"_count": 1}}}, "alive": {"_count": 140, "Lights": {"_count": 1, "clicked": {"_count": 1}}, "which": {"_count": 1, "made": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "long": {"_count": 2, "enough": {"_count": 2}}, "and": {"_count": 11, "well": {"_count": 2}, "he": {"_count": 1}, "without": {"_count": 1}, "Dumbledores": {"_count": 1}, "safe": {"_count": 1}, "healthy": {"_count": 1}, "among": {"_count": 1}, "you": {"_count": 1}, "more": {"_count": 1}, "while": {"_count": 1}}, "that": {"_count": 1, "leaves": {"_count": 1}}, "he": {"_count": 1, "cannot": {"_count": 1}}, "in": {"_count": 3, "another": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}}, "with": {"_count": 6, "gigantic": {"_count": 1}, "cars": {"_count": 1}, "curiosity": {"_count": 1}, "a": {"_count": 1}, "excitement": {"_count": 1}, "malice": {"_count": 1}}, "said": {"_count": 6, "Hermione": {"_count": 1}, "Riddle": {"_count": 1}, "Malfoy": {"_count": 1}, "Dumbledore": {"_count": 1}, "Fudge": {"_count": 1}, "Harry": {"_count": 1}}, "his": {"_count": 1, "usually": {"_count": 1}}, "or": {"_count": 3, "dead": {"_count": 3}}, "": {"_count": 51, ".": {"_count": 37}, "!": {"_count": 3}, "?": {"_count": 11}}, "she": {"_count": 2, "said": {"_count": 1}, "must": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Peter": {"_count": 1, "Dont": {"_count": 1}}, "they": {"_count": 2, "could": {"_count": 1}, "did": {"_count": 1}}, "That": {"_count": 1, "indeed": {"_count": 1}}, "until": {"_count": 1, "Tuesday": {"_count": 1}}, "where": {"_count": 1, "possible": {"_count": 1}}, "ever": {"_count": 1, "had": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 2, "he": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 2, "Cedric": {"_count": 1}, "you": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "like": {"_count": 1, "Diggory": {"_count": 1}}, "but": {"_count": 4, "drowsing": {"_count": 1}, "I": {"_count": 1}, "perhaps": {"_count": 1}, "we": {"_count": 1}}, "hes": {"_count": 1, "still": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "leaping": {"_count": 1, "from": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 2}, "even": {"_count": 1}, "her": {"_count": 1}}, "then": {"_count": 2, "": {"_count": 1}, "never": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "body": {"_count": 1, "quivering": {"_count": 1}}, "who": {"_count": 1, "can": {"_count": 1}}, "to": {"_count": 2, "find": {"_count": 1}, "watch": {"_count": 1}}, "remembers": {"_count": 1, "Ariana": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "why": {"_count": 1, "wouldnt": {"_count": 1}}, "began": {"_count": 1, "Ron": {"_count": 1}}, "So": {"_count": 1, "": {"_count": 1}}, "sentient": {"_count": 1, "intent": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "can": {"_count": 1, "threaten": {"_count": 1}}}, "Lights": {"_count": 4, "clicked": {"_count": 1, "on": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "twinkled": {"_count": 1, "from": {"_count": 1}}, "popped": {"_count": 1, "in": {"_count": 1}}}, "uncles": {"_count": 18, "face": {"_count": 1, "": {"_count": 1}}, "house": {"_count": 4, "like": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "eyes": {"_count": 1, "flashed": {"_count": 1}}, "temper": {"_count": 1, "up": {"_count": 1}}, "mind": {"_count": 2, "as": {"_count": 1}, "laid": {"_count": 1}}, "sausage": {"_count": 1, "like": {"_count": 1}}, "doorstep": {"_count": 1, "": {"_count": 1}}, "temple": {"_count": 1, "was": {"_count": 1}}, "hospitality": {"_count": 1, "only": {"_count": 1}}, "havent": {"_count": 1, "I": {"_count": 1}}, "big": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "fact": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "clearly": {"_count": 175, "making": {"_count": 1, "sure": {"_count": 1}}, "than": {"_count": 6, "he": {"_count": 3}, "ever": {"_count": 1}, "others": {"_count": 1}, "usual": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "isnt": {"_count": 1, "everything": {"_count": 1}}, "not": {"_count": 1, "as": {"_count": 1}}, "that": {"_count": 5, "he": {"_count": 1}, "if": {"_count": 1}, "only": {"_count": 1}, "those": {"_count": 1}, "\u2018Any": {"_count": 1}}, "what": {"_count": 4, "": {"_count": 1}, "was": {"_count": 2}, "you": {"_count": 1}}, "gotten": {"_count": 1, "halfway": {"_count": 1}}, "steeling": {"_count": 1, "himself": {"_count": 1}}, "all": {"_count": 1, "are": {"_count": 1}}, "thought": {"_count": 3, "was": {"_count": 2}, "Mr": {"_count": 1}}, "dear": {"_count": 1, "Mrs": {"_count": 1}}, "Hell": {"_count": 1, "be": {"_count": 1}}, "enough": {"_count": 1, "through": {"_count": 1}}, "bawling": {"_count": 1, "at": {"_count": 1}}, "state": {"_count": 1, "in": {"_count": 1}}, "still": {"_count": 1, "torturing": {"_count": 1}}, "doing": {"_count": 1, "their": {"_count": 1}}, "enjoying": {"_count": 1, "the": {"_count": 1}}, "been": {"_count": 4, "confirmed": {"_count": 1}, "manning": {"_count": 1}, "unwrapped": {"_count": 1}, "waiting": {"_count": 1}}, "unfit": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "full": {"_count": 1, "of": {"_count": 1}}, "visible": {"_count": 8, "through": {"_count": 1}, "from": {"_count": 2}, "to": {"_count": 1}, "Harry": {"_count": 1}, "not": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "come": {"_count": 1, "out": {"_count": 1}}, "arent": {"_count": 1, "hitting": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "states": {"_count": 1, "that": {"_count": 1}}, "imprinted": {"_count": 1, "against": {"_count": 1}}, "thinking": {"_count": 2, "Harry": {"_count": 1}, "fast": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 3, "Ministry": {"_count": 1}, "massive": {"_count": 1}, "mulish": {"_count": 1}}, "telling": {"_count": 1, "them": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "focus": {"_count": 1}, "their": {"_count": 1}}, "born": {"_count": 1, "under": {"_count": 1}}, "desperate": {"_count": 1, "for": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 1, "a": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "elsewhere": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "Dumbledore": {"_count": 1, "could": {"_count": 1}}, "afraid": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "last": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "suspicious": {"_count": 1, "of": {"_count": 1}}, "deep": {"_count": 1, "cut": {"_count": 1}}, "stunned": {"_count": 1, "and": {"_count": 1}}, "uncertain": {"_count": 1, "whether": {"_count": 1}}, "defined": {"_count": 1, "form": {"_count": 1}}, "we": {"_count": 1, "must": {"_count": 1}}, "dead": {"_count": 1, "was": {"_count": 1}}, "RiddikulusV": {"_count": 1, "Harrys": {"_count": 1}}, "noticed": {"_count": 2, "nothing": {"_count": 1}, "their": {"_count": 1}}, "raining": {"_count": 1, "hard": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "just": {"_count": 3, "said": {"_count": 1}, "returned": {"_count": 1}, "conjured": {"_count": 1}}, "uninhabited": {"_count": 1, "the": {"_count": 1}}, "giving": {"_count": 1, "some": {"_count": 1}}, "I": {"_count": 1, "wonder": {"_count": 1}}, "as": {"_count": 6, "natural": {"_count": 1}, "though": {"_count": 2}, "I": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "struggling": {"_count": 3, "to": {"_count": 3}}, "had": {"_count": 1, "a": {"_count": 1}}, "Weasleys": {"_count": 1, "Mrs": {"_count": 1}}, "exam": {"_count": 1, "time": {"_count": 1}}, "unpopular": {"_count": 1, "": {"_count": 1}}, "loathed": {"_count": 1, "James": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "broken": {"_count": 1, "nose": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "heard": {"_count": 1, "to": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 3, "Prime": {"_count": 1}, "scenes": {"_count": 1}, "frightened": {"_count": 1}}, "an": {"_count": 2, "aggrieved": {"_count": 1}, "old": {"_count": 1}}, "reacted": {"_count": 1, "to": {"_count": 1}}, "realized": {"_count": 1, "Wormtail": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "torn": {"_count": 1, "between": {"_count": 1}}, "supposed": {"_count": 3, "to": {"_count": 3}}, "relishing": {"_count": 1, "the": {"_count": 1}}, "shrieking": {"_count": 1, "in": {"_count": 1}}, "audible": {"_count": 2, "through": {"_count": 1}, "over": {"_count": 1}}, "right": {"_count": 1, "beside": {"_count": 1}}, "pleased": {"_count": 1, "that": {"_count": 1}}, "causing": {"_count": 1, "her": {"_count": 1}}, "muttering": {"_count": 1, "about": {"_count": 1}}, "fallen": {"_count": 1, "thick": {"_count": 1}}, "stung": {"_count": 1, "": {"_count": 1}}, "planned": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 1, "loss": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "felt": {"_count": 1, "that": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "etched": {"_count": 1, "in": {"_count": 1}}, "frustrated": {"_count": 1, "that": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "never": {"_count": 1, "been": {"_count": 1}}, "hopeful": {"_count": 1, "she": {"_count": 1}}, "affronted": {"_count": 1, "": {"_count": 1}}, "startled": {"_count": 1, "remained": {"_count": 1}}}, "making": {"_count": 300, "sure": {"_count": 18, "that": {"_count": 8}, "the": {"_count": 1}, "he": {"_count": 3}, "they": {"_count": 2}, "his": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 1}, "of": {"_count": 1}}, "Harrys": {"_count": 1, "knees": {"_count": 1}}, "friends": {"_count": 2, "with": {"_count": 2}}, "objects": {"_count": 2, "fly": {"_count": 1}, "zoom": {"_count": 1}}, "the": {"_count": 17, "candles": {"_count": 1}, "Sorcerers": {"_count": 1}, "windows": {"_count": 1}, "front": {"_count": 1}, "golden": {"_count": 1}, "light": {"_count": 1}, "score": {"_count": 1}, "Dursleys": {"_count": 1}, "Dark": {"_count": 1}, "point": {"_count": 1}, "same": {"_count": 1}, "potion": {"_count": 1}, "second": {"_count": 1}, "real": {"_count": 1}, "floorboards": {"_count": 1}, "noises": {"_count": 1}, "earth": {"_count": 1}}, "up": {"_count": 8, "its": {"_count": 1}, "for": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 1}, "those": {"_count": 1}, "spells": {"_count": 1}}, "but": {"_count": 2, "of": {"_count": 1}, "this": {"_count": 1}}, "them": {"_count": 8, "do": {"_count": 1}, "tea": {"_count": 1}, "": {"_count": 1}, "Hogwarts": {"_count": 1}, "himself": {"_count": 1}, "all": {"_count": 3}}, "violent": {"_count": 1, "swishing": {"_count": 1}}, "a": {"_count": 33, "list": {"_count": 1}, "new": {"_count": 3}, "shallow": {"_count": 1}, "mistake": {"_count": 1}, "real": {"_count": 1}, "fuss": {"_count": 1}, "very": {"_count": 2}, "stand": {"_count": 1}, "mental": {"_count": 2}, "horrible": {"_count": 1}, "great": {"_count": 2}, "lot": {"_count": 1}, "point": {"_count": 1}, "Love": {"_count": 1}, "mock": {"_count": 1}, "blunder": {"_count": 1}, "full": {"_count": 1}, "right": {"_count": 1}, "note": {"_count": 2}, "sound": {"_count": 1}, "noise": {"_count": 1}, "fine": {"_count": 1}, "detour": {"_count": 1}, "return": {"_count": 1}, "false": {"_count": 1}, "crunching": {"_count": 1}, "terrible": {"_count": 1}}, "more": {"_count": 3, "noise": {"_count": 1}, "hats": {"_count": 1}, "pretty": {"_count": 1}}, "study": {"_count": 1, "schedules": {"_count": 1}}, "another": {"_count": 4, "bid": {"_count": 1}, "note": {"_count": 2}, "random": {"_count": 1}}, "both": {"_count": 3, "of": {"_count": 1}, "Harry": {"_count": 2}}, "gold": {"_count": 1, "or": {"_count": 1}}, "odd": {"_count": 1, "things": {"_count": 1}}, "no": {"_count": 8, "noise": {"_count": 3}, "comment": {"_count": 1}, "effort": {"_count": 4}}, "horrible": {"_count": 1, "things": {"_count": 1}}, "door": {"_count": 1, "keys": {"_count": 1}}, "him": {"_count": 19, "jump": {"_count": 3}, "cough": {"_count": 1}, "feel": {"_count": 6}, "look": {"_count": 1}, "impossible": {"_count": 1}, "so": {"_count": 1}, "taller": {"_count": 1}, "gag": {"_count": 1}, "invincible": {"_count": 1}, "happier": {"_count": 1}, "do": {"_count": 2}}, "their": {"_count": 6, "way": {"_count": 5}, "pencil": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "drop": {"_count": 1}}, "it": {"_count": 19, "sound": {"_count": 2}, "draw": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}, "look": {"_count": 2}, "stop": {"_count": 1}, "into": {"_count": 1}, "worse": {"_count": 1}, "even": {"_count": 1}, "gaunt": {"_count": 1}, "Unplottable": {"_count": 1}, "back": {"_count": 1}, "pompous": {"_count": 1}, "perfectly": {"_count": 1}, "snow": {"_count": 1}, "impossible": {"_count": 1}, "happen": {"_count": 1}}, "his": {"_count": 10, "eardrums": {"_count": 1}, "writing": {"_count": 1}, "way": {"_count": 2}, "wet": {"_count": 1}, "shadow": {"_count": 1}, "scar": {"_count": 1}, "eyes": {"_count": 1}, "glasses": {"_count": 1}, "fork": {"_count": 1}}, "bizarre": {"_count": 1, "faces": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "Hermione": {"_count": 2, "go": {"_count": 1}, "jump": {"_count": 1}}, "excuses": {"_count": 3, "not": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}}, "fun": {"_count": 3, "of": {"_count": 3}}, "suggestions": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "about": {"_count": 1}}, "waspish": {"_count": 1, "remarks": {"_count": 1}}, "its": {"_count": 2, "gagging": {"_count": 1}, "way": {"_count": 1}}, "loud": {"_count": 2, "snide": {"_count": 1}, "retching": {"_count": 1}}, "any": {"_count": 1, "noise": {"_count": 1}}, "Fang": {"_count": 1, "the": {"_count": 1}}, "apoplectic": {"_count": 1, "popping": {"_count": 1}}, "all": {"_count": 3, "this": {"_count": 1}, "the": {"_count": 1}, "three": {"_count": 1}}, "furious": {"_count": 1, "swipes": {"_count": 1}}, "one": {"_count": 2, "": {"_count": 1}, "Horcrux": {"_count": 1}}, "me": {"_count": 1, "do": {"_count": 1}}, "her": {"_count": 2, "look": {"_count": 1}, "whole": {"_count": 1}}, "everyone": {"_count": 1, "start": {"_count": 1}}, "tea": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "Snape": {"_count": 1, "drift": {"_count": 1}}, "frantic": {"_count": 1, "attempts": {"_count": 1}}, "noises": {"_count": 1, "such": {"_count": 1}}, "conversation": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 4, "said": {"_count": 1}, "up": {"_count": 2}, "level": {"_count": 1}}, "as": {"_count": 3, "much": {"_count": 2}, "speech": {"_count": 1}}, "two": {"_count": 1, "battered": {"_count": 1}}, "difficulties": {"_count": 1, "and": {"_count": 1}}, "Mr": {"_count": 1, "Malfoys": {"_count": 1}}, "Lynch": {"_count": 1, "copy": {"_count": 1}}, "kit": {"_count": 1, "he": {"_count": 1}}, "an": {"_count": 3, "earsplitting": {"_count": 1}, "effort": {"_count": 1}, "obscene": {"_count": 1}}, "some": {"_count": 3, "inquiry": {"_count": 1}, "excuse": {"_count": 1}, "progress": {"_count": 1}}, "you": {"_count": 1, "stay": {"_count": 1}}, "very": {"_count": 3, "forced": {"_count": 1}, "little": {"_count": 1}, "peculiar": {"_count": 1}}, "eye": {"_count": 3, "contact": {"_count": 3}}, "sneering": {"_count": 1, "comments": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "Christmas": {"_count": 1, "dinner": {"_count": 1}}, "every": {"_count": 2, "effort": {"_count": 2}}, "here": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 2, "sense": {"_count": 1}, "headway": {"_count": 1}}, "money": {"_count": 2, "lately": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 2, "Neptune": {"_count": 1}, "prise": {"_count": 1}}, "sport": {"_count": 1, "of": {"_count": 1}}, "Dudley": {"_count": 1, "he": {"_count": 1}}, "trouble": {"_count": 1, "saying": {"_count": 1}}, "meatballs": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 1, "changes": {"_count": 1}}, "headquarters": {"_count": 1, "fit": {"_count": 1}}, "rather": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 4, "and": {"_count": 1}, "feel": {"_count": 2}, "leap": {"_count": 1}}, "snide": {"_count": 1, "allusions": {"_count": 1}}, "notes": {"_count": 7, "on": {"_count": 4}, "while": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}}, "yet": {"_count": 2, "another": {"_count": 2}}, "snatching": {"_count": 1, "movements": {"_count": 1}}, "prophecies": {"_count": 1, "said": {"_count": 1}}, "during": {"_count": 1, "D": {"_count": 1}}, "potions": {"_count": 1, "": {"_count": 1}}, "sense": {"_count": 1, "and": {"_count": 1}}, "arrangements": {"_count": 1, "to": {"_count": 1}}, "introductions": {"_count": 1, "forging": {"_count": 1}}, "himself": {"_count": 2, "very": {"_count": 1}, "invincible": {"_count": 1}}, "away": {"_count": 1, "with": {"_count": 1}}, "fools": {"_count": 1, "of": {"_count": 1}}, "Stan": {"_count": 1, "a": {"_count": 1}}, "squeaky": {"_count": 1, "attempts": {"_count": 1}}, "unnecessary": {"_count": 1, "visits": {"_count": 1}}, "obscene": {"_count": 1, "gestures": {"_count": 1}}, "regular": {"_count": 1, "visits": {"_count": 1}}, "trips": {"_count": 1, "there": {"_count": 1}}, "extravagant": {"_count": 1, "toasts": {"_count": 1}}, "Horcruxes": {"_count": 1, "for": {"_count": 1}}, "valiant": {"_count": 1, "efforts": {"_count": 1}}, "pointed": {"_count": 1, "asides": {"_count": 1}}, "volau": {"_count": 1, "vents": {"_count": 1}}, "retching": {"_count": 1, "noises": {"_count": 1}}, "puffs": {"_count": 1, "of": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "stuff": {"_count": 1, "up": {"_count": 1}}, "decisions": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "clever": {"_count": 1}}, "scarcely": {"_count": 1, "a": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}}, "miserably": {"_count": 42, "off": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "behind": {"_count": 1, "her": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "bending": {"_count": 1, "down": {"_count": 1}}, "please": {"_count": 1, "let": {"_count": 1}}, "to": {"_count": 2, "Stan": {"_count": 1}, "Professor": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "she": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "during": {"_count": 1, "Herbology": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "what": {"_count": 1}}, "havent": {"_count": 1, "they": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 1, "Auntie": {"_count": 1}}}, "lap": {"_count": 53, "": {"_count": 16, ".": {"_count": 16}}, "was": {"_count": 1, "squinting": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "diary": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "purring": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 4, "honor": {"_count": 3}, "the": {"_count": 1}}, "Neville": {"_count": 1, "almost": {"_count": 1}}, "it": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 14, "curled": {"_count": 3}, "took": {"_count": 1}, "chatting": {"_count": 1}, "settled": {"_count": 1}, "made": {"_count": 1}, "a": {"_count": 1}, "slunk": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}, "allowed": {"_count": 1}, "preparing": {"_count": 1}, "gazed": {"_count": 1}}, "Harry": {"_count": 1, "stood": {"_count": 1}}, "with": {"_count": 1, "coins": {"_count": 1}}, "one": {"_count": 1, "by": {"_count": 1}}, "burst": {"_count": 1, "out": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "rolled": {"_count": 1, "across": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "then": {"_count": 1, "caught": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "pristine": {"_count": 1}}, "gingerly": {"_count": 1, "she": {"_count": 1}}, "tears": {"_count": 1, "still": {"_count": 1}}}, "tearing": {"_count": 25, "the": {"_count": 2, "letters": {"_count": 1}, "parchment": {"_count": 1}}, "his": {"_count": 6, "eyes": {"_count": 3}, "robes": {"_count": 1}, "lungs": {"_count": 1}, "gaze": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "bundles": {"_count": 1, "of": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 2}}, "ferociously": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "feverishly": {"_count": 1, "through": {"_count": 1}}, "off": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Percys": {"_count": 1, "letter": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "back": {"_count": 1}}, "them": {"_count": 1, "apart": {"_count": 1}}}, "pieces": {"_count": 46, "before": {"_count": 2, "his": {"_count": 1}, "realizing": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 13}, "?": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "and": {"_count": 2, "walked": {"_count": 1}, "Hedwig": {"_count": 1}}, "showed": {"_count": 1, "no": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 11, "paper": {"_count": 2}, "parchment": {"_count": 3}, "bread": {"_count": 1}, "toast": {"_count": 1}, "china": {"_count": 1}, "kipper": {"_count": 1}, "the": {"_count": 1}, "marble": {"_count": 1}}, "like": {"_count": 2, "that": {"_count": 1}, "Pettigrew": {"_count": 1}}, "in": {"_count": 1, "Potions": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "running": {"_count": 1, "for": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "with": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "hanging": {"_count": 1, "together": {"_count": 1}}}, "stayed": {"_count": 48, "at": {"_count": 2, "home": {"_count": 2}}, "awake": {"_count": 2, "sitting": {"_count": 1}, "in": {"_count": 1}}, "gray": {"_count": 1, "and": {"_count": 1}}, "folded": {"_count": 1, "at": {"_count": 1}}, "quiet": {"_count": 1, "watching": {"_count": 1}}, "on": {"_count": 2, "her": {"_count": 1}, "that": {"_count": 1}}, "just": {"_count": 1, "long": {"_count": 1}}, "shut": {"_count": 1, "in": {"_count": 1}}, "cool": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 1, "a": {"_count": 1}}, "where": {"_count": 3, "he": {"_count": 3}}, "silent": {"_count": 1, "": {"_count": 1}}, "blank": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "tend": {"_count": 1}, "help": {"_count": 1}}, "long": {"_count": 1, "": {"_count": 1}}, "longer": {"_count": 1, "but": {"_count": 1}}, "behind": {"_count": 6, "and": {"_count": 3}, "to": {"_count": 2}, "": {"_count": 1}}, "in": {"_count": 4, "her": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "put": {"_count": 2, "": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "Yes": {"_count": 1, "Bellatrix": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "alive": {"_count": 1, "for": {"_count": 1}}, "together": {"_count": 1, "in": {"_count": 1}}, "stockstill": {"_count": 1, "and": {"_count": 1}}, "quite": {"_count": 1, "still": {"_count": 1}}, "with": {"_count": 1, "Weasley": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "home": {"_count": 1, "and": {"_count": 1}}}, "nailed": {"_count": 5, "up": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "dead": {"_count": 1}, "snake": {"_count": 1}}, "finger": {"_count": 1, "pointing": {"_count": 1}}}, "See": {"_count": 107, "he": {"_count": 1, "explained": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 10, "?": {"_count": 8}, "!": {"_count": 2}}, "that": {"_count": 2, "Harry": {"_count": 1}, "boy": {"_count": 1}}, "yeh": {"_count": 3, "soon": {"_count": 1}, "at": {"_count": 1}, "Harry": {"_count": 1}}, "you": {"_count": 50, "later": {"_count": 12}, "": {"_count": 2}, "in": {"_count": 10}, "Potter": {"_count": 1}, "over": {"_count": 1}, "next": {"_count": 1}, "Harry": {"_count": 7}, "when": {"_count": 1}, "soon": {"_count": 1}, "five": {"_count": 1}, "said": {"_count": 2}, "all": {"_count": 2}, "at": {"_count": 3}, "Dobby": {"_count": 1}, "Myrtle": {"_count": 1}, "then": {"_count": 2}, "around": {"_count": 1}, "after": {"_count": 1}}, "what": {"_count": 7, "I": {"_count": 2}, "its": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}, "theyve": {"_count": 1}, "Mum": {"_count": 1}}, "theres": {"_count": 1, "Potter": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "why": {"_count": 1, "Ive": {"_count": 1}}, "theyre": {"_count": 1, "not": {"_count": 1}}, "yer": {"_count": 1, "at": {"_count": 1}}, "here": {"_count": 3, "Malfoy": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "first": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "if": {"_count": 2, "she": {"_count": 1}, "I": {"_count": 1}}, "ya": {"_count": 2, "Big": {"_count": 1}, "Snivellus": {"_count": 1}}, "I": {"_count": 2, "wouldnt": {"_count": 1}, "wasnt": {"_count": 1}}, "upon": {"_count": 1, "command": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 1, "Know": {"_count": 1}}, "not": {"_count": 1, "forgotten": {"_count": 1}}, "hes": {"_count": 1, "my": {"_count": 1}}, "with": {"_count": 1, "giantesses": {"_count": 1}}, "its": {"_count": 1, "like": {"_count": 1}}, "the": {"_count": 2, "Ministry": {"_count": 1}, "rest": {"_count": 1}}, "this": {"_count": 3, "": {"_count": 3}}, "it": {"_count": 1, "Harry": {"_count": 1}}}, "explained": {"_count": 71, "to": {"_count": 6, "Aunt": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 2}, "keep": {"_count": 1}, "Ron": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 15}, "?": {"_count": 1}}, "about": {"_count": 3, "their": {"_count": 1}, "Aqua": {"_count": 1}, "the": {"_count": 1}}, "seeing": {"_count": 1, "Harrys": {"_count": 1}}, "all": {"_count": 3, "about": {"_count": 3}}, "as": {"_count": 5, "he": {"_count": 2}, "Harry": {"_count": 1}, "she": {"_count": 1}, "Ron": {"_count": 1}}, "anything": {"_count": 1, "until": {"_count": 1}}, "quietly": {"_count": 1, "to": {"_count": 1}}, "everything": {"_count": 2, "": {"_count": 2}}, "what": {"_count": 5, "hed": {"_count": 1}, "had": {"_count": 3}, "I": {"_count": 1}}, "away": {"_count": 1, "Harrys": {"_count": 1}}, "why": {"_count": 3, "when": {"_count": 1}, "Luna": {"_count": 1}, "what": {"_count": 1}}, "that": {"_count": 5, "the": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}, "to": {"_count": 1}, "they": {"_count": 1}}, "how": {"_count": 3, "Voldemort": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}}, "more": {"_count": 2, "fully": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "yourself": {"_count": 1, "properly": {"_count": 1}}, "this": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "informed": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "briefly": {"_count": 2, "about": {"_count": 1}, "how": {"_count": 1}}, "it": {"_count": 3, "all": {"_count": 2}, "to": {"_count": 1}}, "pausing": {"_count": 1, "to": {"_count": 1}}, "nothing": {"_count": 1, "was": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "much": {"_count": 1, "of": {"_count": 1}}}, "mouthful": {"_count": 15, "of": {"_count": 13, "nails": {"_count": 1}, "mud": {"_count": 1}, "ashes": {"_count": 2}, "chicken": {"_count": 1}, "chocolate": {"_count": 2}, "potato": {"_count": 2}, "pumpkin": {"_count": 1}, "Frog": {"_count": 1}, "Ginger": {"_count": 1}, "pheasant": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "nails": {"_count": 12, "if": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 2, "boarded": {"_count": 1}, "bore": {"_count": 1}}, "broadened": {"_count": 1, "the": {"_count": 1}}, "digging": {"_count": 1, "deep": {"_count": 1}}, "painted": {"_count": 1, "crimson": {"_count": 1}}, "were": {"_count": 1, "painted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "scratching": {"_count": 1, "his": {"_count": 1}}, "clutching": {"_count": 1, "its": {"_count": 1}}, "the": {"_count": 1, "great": {"_count": 1}}, "pierced": {"_count": 1, "him": {"_count": 1}}}, "deliver": {"_count": 17, "them": {"_count": 1, "theyll": {"_count": 1}}, "mail": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "valentines": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "Arry": {"_count": 1}, "him": {"_count": 1}}, "the": {"_count": 2, "last": {"_count": 1}, "parcel": {"_count": 1}}, "a": {"_count": 2, "letter": {"_count": 1}, "message": {"_count": 1}}, "their": {"_count": 1, "own": {"_count": 1}}, "him": {"_count": 1, "safely": {"_count": 1}}, "Firenzes": {"_count": 1, "warning": {"_count": 1}}, "these": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "unknown": {"_count": 1, "objects": {"_count": 1}}, "messages": {"_count": 1, "was": {"_count": 1}}}, "theyll": {"_count": 87, "just": {"_count": 2, "give": {"_count": 1}, "think": {"_count": 1}}, "say": {"_count": 1, "if": {"_count": 1}}, "all": {"_count": 6, "want": {"_count": 1}, "change": {"_count": 1}, "leave": {"_count": 1}, "say": {"_count": 1}, "be": {"_count": 2}}, "believe": {"_count": 1, "him": {"_count": 1}}, "attack": {"_count": 1, "us": {"_count": 1}}, "get": {"_count": 2, "you": {"_count": 1}, "invited": {"_count": 1}}, "forget": {"_count": 1, "to": {"_count": 1}}, "kill": {"_count": 2, "me": {"_count": 1}, "yeh": {"_count": 1}}, "be": {"_count": 25, "rich": {"_count": 1}, "starting": {"_count": 1}, "ready": {"_count": 1}, "coming": {"_count": 1}, "in": {"_count": 2}, "trying": {"_count": 1}, "six": {"_count": 1}, "setting": {"_count": 1}, "putting": {"_count": 1}, "watching": {"_count": 1}, "just": {"_count": 1}, "rubbed": {"_count": 1}, "attracted": {"_count": 1}, "great": {"_count": 1}, "able": {"_count": 1}, "fine": {"_count": 1}, "back": {"_count": 1}, "waiting": {"_count": 1}, "all": {"_count": 1}, "strong": {"_count": 1}, "fleeing": {"_count": 1}, "too": {"_count": 1}, "onto": {"_count": 1}, "Apparating": {"_count": 1}}, "insist": {"_count": 1, "they": {"_count": 1}}, "go": {"_count": 3, "to": {"_count": 1}, "fer": {"_count": 1}, "back": {"_count": 1}}, "tell": {"_count": 2, "you": {"_count": 2}}, "catch": {"_count": 1, "him": {"_count": 1}}, "have": {"_count": 7, "them": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 3}, "made": {"_count": 1}, "got": {"_count": 1}}, "find": {"_count": 3, "out": {"_count": 1}, "an": {"_count": 1}, "you": {"_count": 1}}, "want": {"_count": 2, "to": {"_count": 2}}, "wake": {"_count": 1, "everybody": {"_count": 1}}, "give": {"_count": 1, "us": {"_count": 1}}, "end": {"_count": 1, "up": {"_count": 1}}, "never": {"_count": 1, "replace": {"_count": 1}}, "know": {"_count": 2, "hes": {"_count": 1}, "already": {"_count": 1}}, "sentence": {"_count": 1, "you": {"_count": 1}}, "join": {"_count": 1, "you": {"_count": 1}}, "remember": {"_count": 1, "Dumbledores": {"_count": 1}}, "come": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "ter": {"_count": 1}}, "understand": {"_count": 1, "": {"_count": 1}}, "brighten": {"_count": 1, "things": {"_count": 1}}, "worry": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 2, "until": {"_count": 1}, "to": {"_count": 1}}, "choose": {"_count": 1, "one": {"_count": 1}}, "look": {"_count": 2, "after": {"_count": 2}}, "expect": {"_count": 1, "us": {"_count": 1}}, "stay": {"_count": 1, "to": {"_count": 1}}, "let": {"_count": 1, "him": {"_count": 1}}, "see": {"_count": 2, "that": {"_count": 2}}, "realize": {"_count": 1, "that": {"_count": 1}}, "cover": {"_count": 1, "up": {"_count": 1}}, "torture": {"_count": 1, "us": {"_count": 1}}}, "thatll": {"_count": 21, "work": {"_count": 3, "Vernon": {"_count": 1}, "said": {"_count": 2}}, "lose": {"_count": 1, "us": {"_count": 1}}, "hurt": {"_count": 1, "yeh": {"_count": 1}}, "be": {"_count": 7, "tricky": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "fine": {"_count": 1}, "a": {"_count": 1}}, "give": {"_count": 2, "us": {"_count": 1}, "you": {"_count": 1}}, "reach": {"_count": 1, "Jupiter": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "any": {"_count": 1}}, "stop": {"_count": 1, "all": {"_count": 1}}, "make": {"_count": 1, "Ginnys": {"_count": 1}}, "help": {"_count": 2, "him": {"_count": 1}, "us": {"_count": 1}}}, "minds": {"_count": 39, "work": {"_count": 2, "in": {"_count": 1}, "isnt": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "?": {"_count": 1}, "!": {"_count": 1}}, "by": {"_count": 1, "pacing": {"_count": 1}}, "would": {"_count": 1, "go": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "Azkaban": {"_count": 1}}, "my": {"_count": 1, "dears": {"_count": 1}}, "eye": {"_count": 8, "": {"_count": 2}, "imploded": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "about": {"_count": 1, "their": {"_count": 1}}, "were": {"_count": 1, "so": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Fred": {"_count": 1}}, "and": {"_count": 1, "bodies": {"_count": 1}}, "are": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "their": {"_count": 1}, "Wizarding": {"_count": 1}}, "resistance": {"_count": 1, "rather": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 1}, "personally": {"_count": 1}}}, "ways": {"_count": 48, "Petunia": {"_count": 1, "theyre": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "it": {"_count": 1, "did": {"_count": 1}}, "of": {"_count": 13, "committing": {"_count": 1}, "getting": {"_count": 1}, "treating": {"_count": 1}, "coming": {"_count": 1}, "making": {"_count": 1}, "tracking": {"_count": 1}, "detecting": {"_count": 1}, "flying": {"_count": 1}, "destroying": {"_count": 2}, "bringing": {"_count": 1}, "houseelves": {"_count": 1}, "revealing": {"_count": 1}}, "Muggles": {"_count": 1, "have": {"_count": 1}}, "away": {"_count": 1, "covered": {"_count": 1}}, "you": {"_count": 1, "recognize": {"_count": 1}}, "in": {"_count": 4, "which": {"_count": 3}, "WEVE": {"_count": 1}}, "and": {"_count": 2, "then": {"_count": 1}, "means": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "though": {"_count": 1, "to": {"_count": 1}}, "devised": {"_count": 1, "by": {"_count": 1}}, "to": {"_count": 3, "send": {"_count": 1}, "express": {"_count": 1}, "get": {"_count": 1}}, "are": {"_count": 1, "not": {"_count": 1}}, "easier": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "we": {"_count": 1}, "Dumbledore": {"_count": 1}}, "more": {"_count": 1, "intimidating": {"_count": 1}}, "that": {"_count": 2, "made": {"_count": 1}, "you": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "tonight": {"_count": 1, "in": {"_count": 1}}}, "knock": {"_count": 47, "in": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 19, "the": {"_count": 17}, "Hagrids": {"_count": 1}, "a": {"_count": 1}}, "you": {"_count": 3, "off": {"_count": 2}, "out": {"_count": 1}}, "players": {"_count": 1, "off": {"_count": 1}}, "them": {"_count": 1, "toward": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "something": {"_count": 2, "over": {"_count": 1}, "up": {"_count": 1}}, "points": {"_count": 1, "off": {"_count": 1}}, "people": {"_count": 1, "off": {"_count": 1}}, "Malfoy": {"_count": 1, "off": {"_count": 1}}, "the": {"_count": 3, "Bludger": {"_count": 1}, "goblet": {"_count": 1}, "others": {"_count": 1}}, "Harry": {"_count": 1, "out": {"_count": 1}}, "some": {"_count": 1, "manners": {"_count": 1}}, "upon": {"_count": 2, "his": {"_count": 1}, "Dumbledores": {"_count": 1}}, "him": {"_count": 1, "out": {"_count": 1}}, "her": {"_count": 1, "off": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "me": {"_count": 1, "off": {"_count": 1}}, "she": {"_count": 1, "strode": {"_count": 1}}, "that": {"_count": 1, "echoed": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}}, "nail": {"_count": 6, "with": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "return": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 1, "use": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "slipped": {"_count": 1, "onto": {"_count": 1}}}, "piece": {"_count": 126, "of": {"_count": 109, "fruitcake": {"_count": 1}, "paper": {"_count": 13}, "steak": {"_count": 1}, "homework": {"_count": 3}, "parchment": {"_count": 49}, "toast": {"_count": 3}, "film": {"_count": 1}, "furniture": {"_count": 1}, "vermin": {"_count": 1}, "chocolate": {"_count": 1}, "purple": {"_count": 1}, "buttered": {"_count": 1}, "information": {"_count": 4}, "difficult": {"_count": 1}, "shocking": {"_count": 1}, "general": {"_count": 1}, "cake": {"_count": 2}, "Dark": {"_count": 1}, "very": {"_count": 1}, "fleshcolored": {"_count": 1}, "blank": {"_count": 1}, "work": {"_count": 1}, "aged": {"_count": 1}, "news": {"_count": 1}, "uneaten": {"_count": 1}, "pheasant": {"_count": 1}, "treacle": {"_count": 1}, "kipper": {"_count": 1}, "perfectly": {"_count": 1}, "gossip": {"_count": 1}, "the": {"_count": 1}, "evidence": {"_count": 1}, "his": {"_count": 2}, "soul": {"_count": 1}, "newsprint": {"_count": 1}, "broken": {"_count": 2}, "Voldemorts": {"_count": 1}, "filth": {"_count": 1}, "advice": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "o": {"_count": 1, "cake": {"_count": 1}}, "said": {"_count": 1, "Shh": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "Fudge": {"_count": 1}, "which": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "entitled": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 2, "day": {"_count": 1}, "memory": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "bathing": {"_count": 1, "costume": {"_count": 1}}, "that": {"_count": 1, "lives": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}}, "fruitcake": {"_count": 5, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "Ripper": {"_count": 1}, "assorted": {"_count": 1}}}, "brought": {"_count": 157, "him": {"_count": 10, "": {"_count": 1}, "back": {"_count": 2}, "which": {"_count": 1}, "crashing": {"_count": 1}, "sharply": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}, "along": {"_count": 1}, "out": {"_count": 1}}, "with": {"_count": 3, "them": {"_count": 1}, "him": {"_count": 2}}, "the": {"_count": 9, "umbrella": {"_count": 1}, "car": {"_count": 1}, "Ministry": {"_count": 1}, "eclairs": {"_count": 1}, "necklace": {"_count": 1}, "kids": {"_count": 1}, "glass": {"_count": 1}, "locket": {"_count": 1}, "blood": {"_count": 1}}, "up": {"_count": 13, "to": {"_count": 1}, "": {"_count": 1}, "by": {"_count": 4}, "for": {"_count": 1}, "the": {"_count": 2}, "in": {"_count": 2}, "short": {"_count": 2}}, "it": {"_count": 7, "swishing": {"_count": 1}, "all": {"_count": 2}, "back": {"_count": 1}, "carefully": {"_count": 1}, "inside": {"_count": 1}, "up": {"_count": 1}}, "sandwiches": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 5, "toad": {"_count": 1}, "cageful": {"_count": 1}, "lump": {"_count": 1}, "dangerous": {"_count": 1}, "delegation": {"_count": 1}}, "Scabbers": {"_count": 1, "so": {"_count": 1}}, "me": {"_count": 6, "up": {"_count": 1}, "some": {"_count": 1}, "back": {"_count": 1}, "ere": {"_count": 1}, "": {"_count": 1}, "here": {"_count": 1}}, "Harry": {"_count": 3, "anything": {"_count": 1}, "another": {"_count": 1}, "back": {"_count": 1}}, "Neville": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 2, "wands": {"_count": 1}, "hands": {"_count": 1}}, "Ron": {"_count": 3, "round": {"_count": 1}, "": {"_count": 1}, "up": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 1}, "a": {"_count": 1}, "all": {"_count": 2}}, "live": {"_count": 1, "creatures": {"_count": 1}}, "cakes": {"_count": 1, "sweets": {"_count": 1}}, "her": {"_count": 4, "each": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "here": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "back": {"_count": 3, "to": {"_count": 1}, "memories": {"_count": 1}, "a": {"_count": 1}}, "tears": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 8, "some": {"_count": 1}, "Bertha": {"_count": 1}, "this": {"_count": 1}, "to": {"_count": 1}, "he": {"_count": 1}, "flowers": {"_count": 1}, "with": {"_count": 1}, "out": {"_count": 1}}, "along": {"_count": 5, "a": {"_count": 2}, "to": {"_count": 2}, "Bellatrixs": {"_count": 1}}, "down": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "them": {"_count": 5, "downstairs": {"_count": 1}, "back": {"_count": 1}, "all": {"_count": 1}, "to": {"_count": 1}, "within": {"_count": 1}}, "shame": {"_count": 1, "on": {"_count": 1}}, "this": {"_count": 2, "from": {"_count": 1}, "depressing": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "some": {"_count": 2, "parchment": {"_count": 1}, "friends": {"_count": 1}}, "something": {"_count": 3, "to": {"_count": 2}, "new": {"_count": 1}}, "wind": {"_count": 1, "and": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 1, "YouKnow": {"_count": 1}}, "in": {"_count": 5, "": {"_count": 1}, "as": {"_count": 1}, "anything": {"_count": 1}, "by": {"_count": 1}, "for": {"_count": 1}}, "people": {"_count": 1, "in": {"_count": 1}}, "good": {"_count": 1, "news": {"_count": 1}}, "from": {"_count": 4, "Azkaban": {"_count": 1}, "the": {"_count": 2}, "Shell": {"_count": 1}}, "here": {"_count": 2, "in": {"_count": 1}, "before": {"_count": 1}}, "any": {"_count": 1, "Veritaserum": {"_count": 1}}, "your": {"_count": 1, "last": {"_count": 1}}, "all": {"_count": 2, "those": {"_count": 1}, "of": {"_count": 1}}, "Mundungus": {"_count": 1, "with": {"_count": 1}}, "Diggorys": {"_count": 1, "body": {"_count": 1}}, "more": {"_count": 1, "wool": {"_count": 1}}, "food": {"_count": 1, "by": {"_count": 1}}, "wild": {"_count": 1, "stuff": {"_count": 1}}, "to": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}}, "yeh": {"_count": 1, "some": {"_count": 1}}, "one": {"_count": 1, "back": {"_count": 1}}, "off": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "by": {"_count": 1}}, "home": {"_count": 1, "news": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 2, "running": {"_count": 1}, "still": {"_count": 1}}, "two": {"_count": 1, "small": {"_count": 1}}, "Alecto": {"_count": 1, "too": {"_count": 1}}, "and": {"_count": 1, "camp": {"_count": 1}}, "us": {"_count": 2, "here": {"_count": 1}, "Crumple": {"_count": 1}}, "no": {"_count": 1, "change": {"_count": 1}}, "giants": {"_count": 1, "of": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}}, "Friday": {"_count": 27, "no": {"_count": 1, "less": {"_count": 1}}, "some": {"_count": 1, "with": {"_count": 1}}, "was": {"_count": 1, "an": {"_count": 1}}, "afternoons": {"_count": 1, "off": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 3}, "!": {"_count": 1}, "?": {"_count": 3}}, "morning": {"_count": 3, "by": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}}, "the": {"_count": 2, "sixteenth": {"_count": 1}, "30th": {"_count": 1}}, "night": {"_count": 2, "then": {"_count": 1}, "Minister": {"_count": 1}}, "at": {"_count": 2, "five": {"_count": 1}, "eleven": {"_count": 1}}, "said": {"_count": 1, "Angelina": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "dawned": {"_count": 1, "sullen": {"_count": 1}}, "well": {"_count": 1, "have": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}}, "pushed": {"_count": 157, "under": {"_count": 2, "the": {"_count": 1}, "McGonagall": {"_count": 1}}, "his": {"_count": 18, "cart": {"_count": 2}, "trolley": {"_count": 2}, "porridge": {"_count": 1}, "round": {"_count": 1}, "books": {"_count": 1}, "graying": {"_count": 1}, "undrunk": {"_count": 1}, "sopping": {"_count": 1}, "chair": {"_count": 2}, "glasses": {"_count": 1}, "way": {"_count": 2}, "fingers": {"_count": 1}, "portion": {"_count": 1}, "soul": {"_count": 1}}, "their": {"_count": 5, "way": {"_count": 5}}, "me": {"_count": 2, "off": {"_count": 1}, "back": {"_count": 1}}, "off": {"_count": 1, "hard": {"_count": 1}}, "open": {"_count": 14, "the": {"_count": 14}}, "helplessly": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 31, "door": {"_count": 9}, "book": {"_count": 1}, "creaking": {"_count": 1}, "contents": {"_count": 1}, "plate": {"_count": 1}, "food": {"_count": 1}, "trapdoor": {"_count": 1}, "hat": {"_count": 1}, "portrait": {"_count": 1}, "bushes": {"_count": 1}, "unconscious": {"_count": 1}, "next": {"_count": 1}, "front": {"_count": 1}, "thought": {"_count": 1}, "hair": {"_count": 1}, "boundaries": {"_count": 1}, "HalfBlood": {"_count": 1}, "werewolf": {"_count": 1}, "trolley": {"_count": 1}, "robes": {"_count": 1}, "newspaper": {"_count": 1}, "idea": {"_count": 1}, "second": {"_count": 1}}, "roughly": {"_count": 1, "past": {"_count": 1}}, "it": {"_count": 15, "open": {"_count": 10}, "back": {"_count": 1}, "away": {"_count": 2}, "out": {"_count": 1}, "onto": {"_count": 1}}, "inside": {"_count": 1, "three": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "all": {"_count": 2}}, "by": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "Dobbys": {"_count": 1, "sponge": {"_count": 1}}, "Harry": {"_count": 4, "into": {"_count": 1}, "aside": {"_count": 1}, "hard": {"_count": 1}, "a": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "himself": {"_count": 7, "forward": {"_count": 1}, "away": {"_count": 1}, "up": {"_count": 2}, "to": {"_count": 1}, "into": {"_count": 1}, "onto": {"_count": 1}}, "him": {"_count": 10, "back": {"_count": 3}, "inside": {"_count": 1}, "away": {"_count": 1}, "aside": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}, "in": {"_count": 1}, "down": {"_count": 1}}, "hither": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "away": {"_count": 1, "to": {"_count": 1}}, "aside": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 2, "path": {"_count": 1}, "Knut": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "past": {"_count": 5, "on": {"_count": 1}, "Harry": {"_count": 4}}, "hard": {"_count": 1, "in": {"_count": 1}}, "forward": {"_count": 1, "through": {"_count": 1}}, "around": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "one": {"_count": 1, "of": {"_count": 1}}, "deeper": {"_count": 1, "into": {"_count": 1}}, "back": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "her": {"_count": 3, "way": {"_count": 1}, "Spectrespecs": {"_count": 1}, "long": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "up": {"_count": 1}}, "Of": {"_count": 1, "some": {"_count": 1}}, "Malfoy": {"_count": 1, "roughly": {"_count": 1}}, "carelessly": {"_count": 1, "up": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "gravel": {"_count": 1}}, "Fred": {"_count": 1, "aside": {"_count": 1}}}, "slotted": {"_count": 1, "through": {"_count": 1, "the": {"_count": 1}}}, "sides": {"_count": 46, "and": {"_count": 2, "a": {"_count": 1}, "onto": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "of": {"_count": 12, "paper": {"_count": 1}, "the": {"_count": 5}, "her": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 2}, "shops": {"_count": 1}, "them": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 2}}, "blurred": {"_count": 1, "fireplaces": {"_count": 1}}, "were": {"_count": 1, "acting": {"_count": 1}}, "the": {"_count": 1, "veela": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "now": {"_count": 1, "watching": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "victory": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "tightly": {"_count": 1}}, "drenching": {"_count": 1, "the": {"_count": 1}}, "fragments": {"_count": 1, "of": {"_count": 1}}, "too": {"_count": 1, "Amidst": {"_count": 1}}, "some": {"_count": 1, "bearing": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}}, "hammer": {"_count": 3, "and": {"_count": 1, "nails": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "McLag": {"_count": 1, "I": {"_count": 1}}}, "boarded": {"_count": 15, "up": {"_count": 8, "the": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 2}, "fireplace": {"_count": 1}, "including": {"_count": 1}, "Harry": {"_count": 1}, "though": {"_count": 1}}, "windows": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "tiles": {"_count": 1, "missing": {"_count": 1}}, "and": {"_count": 1, "broken": {"_count": 1}}, "the": {"_count": 1, "train": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}}, "cracks": {"_count": 8, "around": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "had": {"_count": 1, "appeared": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "Apparators": {"_count": 1}}, "like": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "holes": {"_count": 1}}}, "Tiptoe": {"_count": 1, "Through": {"_count": 1, "the": {"_count": 1}}}, "Through": {"_count": 22, "the": {"_count": 18, "Tulips": {"_count": 1}, "Ages": {"_count": 4}, "forest": {"_count": 1}, "dungeon": {"_count": 1}, "thicket": {"_count": 1}, "confusion": {"_count": 1}, "window": {"_count": 1}, "portrait": {"_count": 1}, "gates": {"_count": 1}, "mist": {"_count": 1}, "doors": {"_count": 1}, "darting": {"_count": 1}, "silence": {"_count": 1}, "slits": {"_count": 1}, "small": {"_count": 1}}, "a": {"_count": 2, "haze": {"_count": 1}, "gap": {"_count": 1}}, "his": {"_count": 1, "puffy": {"_count": 1}}, "squares": {"_count": 1, "of": {"_count": 1}}}, "Tulips": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "worked": {"_count": 107, "and": {"_count": 1, "jumped": {"_count": 1}}, "for": {"_count": 11, "me": {"_count": 2}, "the": {"_count": 2}, "Voldemort": {"_count": 1}, "these": {"_count": 1}, "a": {"_count": 1}, "Bletchley": {"_count": 1}, "weeks": {"_count": 1}, "Gringotts": {"_count": 1}, "him": {"_count": 1}}, "that": {"_count": 3, "out": {"_count": 2}, "much": {"_count": 1}}, "up": {"_count": 3, "it": {"_count": 1}, "about": {"_count": 1}, "again": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 14}, "!": {"_count": 2}}, "so": {"_count": 4, "hard": {"_count": 3}, "well": {"_count": 1}}, "while": {"_count": 1, "really": {"_count": 1}}, "but": {"_count": 2, "stopped": {"_count": 1}, "after": {"_count": 1}}, "in": {"_count": 10, "greenhouse": {"_count": 1}, "harmony": {"_count": 2}, "the": {"_count": 5}, "our": {"_count": 1}, "silence": {"_count": 1}}, "instantly": {"_count": 1, "though": {"_count": 1}}, "I": {"_count": 2, "didnt": {"_count": 1}, "tell": {"_count": 1}}, "horribly": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 9, "she": {"_count": 1}, "the": {"_count": 2}, "where": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}, "haven": {"_count": 1}, "a": {"_count": 1}, "how": {"_count": 1}}, "said": {"_count": 1, "Myrtle": {"_count": 1}}, "quite": {"_count": 1, "well": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "Borgin": {"_count": 1}}, "his": {"_count": 3, "team": {"_count": 1}, "flippers": {"_count": 1}, "magic": {"_count": 1}}, "once": {"_count": 1, "": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "dragons": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 2}, "if": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "hard": {"_count": 1, "over": {"_count": 1}}, "tirelessly": {"_count": 2, "over": {"_count": 1}, "in": {"_count": 1}}, "George": {"_count": 1, "certainly": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "too": {"_count": 1, "it": {"_count": 1}}, "fairly": {"_count": 1, "well": {"_count": 1}}, "it": {"_count": 2, "out": {"_count": 1}, "was": {"_count": 1}}, "on": {"_count": 3, "cats": {"_count": 1}, "while": {"_count": 1}, "it": {"_count": 1}}, "the": {"_count": 1, "Disarming": {"_count": 1}}, "properly": {"_count": 1, "tripping": {"_count": 1}}, "silver": {"_count": 1, "W": {"_count": 1}}, "her": {"_count": 1, "way": {"_count": 1}}, "relentlessly": {"_count": 1, "on": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "before": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "well": {"_count": 1, "with": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "feverishly": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "pressed": {"_count": 1}}, "Harry": {"_count": 1, "wondered": {"_count": 1}}, "after": {"_count": 1, "completing": {"_count": 1}}, "visited": {"_count": 1, "or": {"_count": 1}}, "really": {"_count": 1, "well": {"_count": 1}}}, "jumped": {"_count": 147, "at": {"_count": 2, "small": {"_count": 1}, "being": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "too": {"_count": 1, "because": {"_count": 1}}, "to": {"_count": 28, "their": {"_count": 4}, "her": {"_count": 2}, "his": {"_count": 20}, "Harry": {"_count": 1}, "it": {"_count": 1}}, "into": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "it": {"_count": 1, "had": {"_count": 1}}, "off": {"_count": 6, "his": {"_count": 4}, "the": {"_count": 2}}, "back": {"_count": 2, "on": {"_count": 1}, "as": {"_count": 1}}, "clean": {"_count": 1, "over": {"_count": 1}}, "out": {"_count": 12, "of": {"_count": 8}, "from": {"_count": 3}, "at": {"_count": 1}}, "the": {"_count": 2, "last": {"_count": 2}}, "around": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "backward": {"_count": 7, "crushing": {"_count": 1}, "in": {"_count": 1}, "looking": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "out": {"_count": 2}}, "up": {"_count": 11, "as": {"_count": 2}, "out": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 5}, "looking": {"_count": 2}}, "forward": {"_count": 2, "but": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 12, "spun": {"_count": 1}, "held": {"_count": 1}, "blushed": {"_count": 1}, "tried": {"_count": 1}, "looked": {"_count": 3}, "addressed": {"_count": 1}, "cowered": {"_count": 1}, "returned": {"_count": 1}, "dropped": {"_count": 1}, "clutched": {"_count": 1}}, "down": {"_count": 9, "the": {"_count": 2}, "from": {"_count": 5}, "shaking": {"_count": 1}, "into": {"_count": 1}}, "a": {"_count": 1, "foot": {"_count": 1}}, "slightly": {"_count": 1, "as": {"_count": 1}}, "from": {"_count": 3, "airplanes": {"_count": 1}, "the": {"_count": 1}, "step": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "must": {"_count": 1}}, "aside": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 6, "the": {"_count": 2}, "though": {"_count": 2}, "a": {"_count": 1}, "Hermiones": {"_count": 1}}, "onto": {"_count": 2, "Siriuss": {"_count": 1}, "his": {"_count": 1}}, "when": {"_count": 1, "Snapes": {"_count": 1}}, "so": {"_count": 3, "badly": {"_count": 1}, "much": {"_count": 1}, "violently": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "in": {"_count": 3, "fright": {"_count": 1}, "and": {"_count": 1}, "right": {"_count": 1}}, "unnoticed": {"_count": 1, "by": {"_count": 1}}, "or": {"_count": 1, "was": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}, "neatly": {"_count": 1, "backward": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}}, "noises": {"_count": 48, "": {"_count": 11, ".": {"_count": 11}}, "that": {"_count": 4, "sounded": {"_count": 1}, "the": {"_count": 1}, "drew": {"_count": 1}, "might": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "and": {"_count": 2, "had": {"_count": 1}, "there": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "made": {"_count": 1, "by": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "like": {"_count": 1, "gunfire": {"_count": 1}}, "announced": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 8, "outrage": {"_count": 1}, "interest": {"_count": 1}, "protest": {"_count": 1}, "shock": {"_count": 1}, "comprehension": {"_count": 1}, "the": {"_count": 1}, "agreement": {"_count": 1}, "dueling": {"_count": 1}}, "Professor": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "outside": {"_count": 1, "in": {"_count": 1}}, "Dedalus": {"_count": 1, "Diggle": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "now": {"_count": 1, "issuing": {"_count": 1}}, "coming": {"_count": 3, "from": {"_count": 3}}, "with": {"_count": 1, "his": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "when": {"_count": 1, "touched": {"_count": 1}}, "were": {"_count": 1, "growing": {"_count": 1}}, "Hermione": {"_count": 1, "stammered": {"_count": 1}}, "plus": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Twentyfour": {"_count": 3, "letters": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "milkman": {"_count": 2, "had": {"_count": 1, "handed": {"_count": 1}}, "he": {"_count": 1, "couldnt": {"_count": 1}}}, "post": {"_count": 59, "office": {"_count": 7, "and": {"_count": 1}, "Harry": {"_count": 1}, "Zonkos": {"_count": 1}, "Ron": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 1, "Sundays": {"_count": 1}}, "of": {"_count": 8, "Defense": {"_count": 2}, "Care": {"_count": 1}, "Inquisitor": {"_count": 1}, "Divination": {"_count": 1}, "Potions": {"_count": 1}, "Minister": {"_count": 2}}, "They": {"_count": 1, "were": {"_count": 1}}, "Harry": {"_count": 1, "accelerated": {"_count": 1}}, "Buckbeak": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "!": {"_count": 1}, "?": {"_count": 1}}, "is": {"_count": 1, "": {"_count": 1}}, "owl": {"_count": 2, "should": {"_count": 1}, "to": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "Hogwarts": {"_count": 1}}, "owls": {"_count": 9, "arrived": {"_count": 3}, "": {"_count": 2}, "appeared": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}, "would": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "soon": {"_count": 1}}, "telling": {"_count": 1, "them": {"_count": 1}}, "was": {"_count": 1, "arriving": {"_count": 1}}, "Hopefully": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "and": {"_count": 2, "we": {"_count": 1}, "vanished": {"_count": 1}}, "how": {"_count": 1, "long": {"_count": 1}}, "I": {"_count": 2, "believe": {"_count": 1}, "had": {"_count": 1}}, "since": {"_count": 1, "you": {"_count": 1}}, "entering": {"_count": 1, "and": {"_count": 1}}, "next": {"_count": 1, "summer": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "instance": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "he": {"_count": 1, "sought": {"_count": 1}}, "to": {"_count": 2, "Lord": {"_count": 1}, "come": {"_count": 1}}, "while": {"_count": 1, "her": {"_count": 1}}}, "dairy": {"_count": 1, "trying": {"_count": 1, "to": {"_count": 1}}}, "shredded": {"_count": 6, "the": {"_count": 1, "letters": {"_count": 1}}, "books": {"_count": 1, "and": {"_count": 1}}, "skin": {"_count": 1, "of": {"_count": 1}}, "lettuce": {"_count": 1, "down": {"_count": 1}}, "mandrake": {"_count": 1, "leaves": {"_count": 1}}, "more": {"_count": 1, "leaves": {"_count": 1}}}, "processor": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "earth": {"_count": 97, "wants": {"_count": 2, "to": {"_count": 2}}, "Quidditch": {"_count": 1, "could": {"_count": 1}}, "was": {"_count": 10, "he": {"_count": 5}, "wherever": {"_count": 1}, "this": {"_count": 1}, "I": {"_count": 1}, "going": {"_count": 1}, "his": {"_count": 1}}, "would": {"_count": 4, "he": {"_count": 2}, "be": {"_count": 1}, "Voldemort": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "were": {"_count": 3, "you": {"_count": 2}, "they": {"_count": 1}}, "that": {"_count": 2, "Professor": {"_count": 1}, "covered": {"_count": 1}}, "track": {"_count": 1, "that": {"_count": 1}}, "path": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 3, "her": {"_count": 2}, "which": {"_count": 1}}, "and": {"_count": 3, "fertilizer": {"_count": 1}, "pebbles": {"_count": 1}, "smelled": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 12}, "?": {"_count": 1}}, "but": {"_count": 4, "didnt": {"_count": 1}, "on": {"_count": 1}, "he": {"_count": 2}}, "did": {"_count": 5, "Filch": {"_count": 1}, "you": {"_count": 3}, "they": {"_count": 1}}, "dyou": {"_count": 1, "know": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 1}, "front": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "can": {"_count": 1}, "would": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "wanted": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "are": {"_count": 2, "you": {"_count": 1}, "we": {"_count": 1}}, "does": {"_count": 1, "that": {"_count": 1}}, "hadnt": {"_count": 1, "she": {"_count": 1}}, "had": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "could": {"_count": 1, "Voldemort": {"_count": 1}}, "to": {"_count": 1, "walk": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "is": {"_count": 2, "what": {"_count": 1}, "more": {"_count": 1}}, "makes": {"_count": 1, "you": {"_count": 1}}, "rose": {"_count": 1, "up": {"_count": 1}}, "leaving": {"_count": 1, "him": {"_count": 1}}, "said": {"_count": 1, "Dirk": {"_count": 1}}, "yet": {"_count": 1, "he": {"_count": 1}}, "covered": {"_count": 1, "with": {"_count": 1}}, "subsuming": {"_count": 1, "his": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "Dobbys": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "soaring": {"_count": 1, "beneath": {"_count": 1}}, "even": {"_count": 1, "after": {"_count": 1}}, "should": {"_count": 1, "that": {"_count": 1}}, "quake": {"_count": 1, "": {"_count": 1}}}, "badly": {"_count": 89, "": {"_count": 19, "?": {"_count": 2}, ".": {"_count": 17}}, "if": {"_count": 2, "Percy": {"_count": 1}, "he": {"_count": 1}}, "by": {"_count": 1, "summat": {"_count": 1}}, "hurt": {"_count": 3, "an": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 1}}, "weve": {"_count": 1, "done": {"_count": 1}}, "he": {"_count": 9, "was": {"_count": 1}, "did": {"_count": 1}, "felt": {"_count": 1}, "could": {"_count": 3}, "had": {"_count": 1}, "might": {"_count": 1}, "thought": {"_count": 1}}, "tuned": {"_count": 1, "radio": {"_count": 1}}, "in": {"_count": 2, "places": {"_count": 1}, "his": {"_count": 1}}, "that": {"_count": 11, "Professor": {"_count": 1}, "he": {"_count": 6}, "his": {"_count": 1}, "she": {"_count": 1}, "her": {"_count": 1}, "night": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 2}, "it": {"_count": 1}}, "mixed": {"_count": 1, "black": {"_count": 1}}, "said": {"_count": 1, "Percy": {"_count": 1}}, "scarred": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "at": {"_count": 1, "Summoning": {"_count": 1}}, "injured": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "Ask": {"_count": 1}, "that": {"_count": 1}}, "singed": {"_count": 1, "Seamus": {"_count": 1}}, "wrong": {"_count": 2, "if": {"_count": 1}, "one": {"_count": 1}}, "astray": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "continue": {"_count": 1}}, "and": {"_count": 1, "did": {"_count": 1}}, "still": {"_count": 1, "having": {"_count": 1}}, "shaven": {"_count": 2, "wizard": {"_count": 1}, "cheek": {"_count": 1}}, "either": {"_count": 1, "did": {"_count": 1}}, "wrapped": {"_count": 2, "package": {"_count": 2}}, "enough": {"_count": 1, "were": {"_count": 1}}, "advised": {"_count": 1, "it": {"_count": 1}}, "bumped": {"_count": 1, "on": {"_count": 1}}, "they": {"_count": 1, "barely": {"_count": 1}}, "Dolohov": {"_count": 1, "freed": {"_count": 1}}, "treated": {"_count": 1, "you": {"_count": 1}}, "wounded": {"_count": 1, "a": {"_count": 1}}, "well": {"_count": 1, "that": {"_count": 1}}, "behaved": {"_count": 1, "rabbit": {"_count": 1}}, "suppressed": {"_count": 1, "glee": {"_count": 1}}, "of": {"_count": 1, "me": {"_count": 1}}, "judged": {"_count": 1, "measures": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "slashed": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "felt": {"_count": 1}}}, "amazement": {"_count": 29, "": {"_count": 13, ".": {"_count": 13}}, "giggled": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 1, "Harrys": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "stage": {"_count": 1, "one": {"_count": 1}}, "and": {"_count": 2, "admiration": {"_count": 1}, "his": {"_count": 1}}, "Hermione": {"_count": 3, "tapped": {"_count": 1}, "strode": {"_count": 1}, "seized": {"_count": 1}}, "he": {"_count": 2, "felt": {"_count": 1}, "turned": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "Marietta": {"_count": 1, "shook": {"_count": 1}}, "taking": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "when": {"_count": 1, "at": {"_count": 1}}}, "\u2022k": {"_count": 6, "k": {"_count": 5, "k": {"_count": 5}}, "Jc": {"_count": 1, "k": {"_count": 1}}}, "Sunday": {"_count": 22, "morning": {"_count": 7, "Uncle": {"_count": 1}, "to": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "nearly": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "anyway": {"_count": 1, "": {"_count": 1}}, "evening": {"_count": 3, "before": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 1, "send": {"_count": 1}}, "lunch": {"_count": 1, "though": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "catching": {"_count": 1, "up": {"_count": 1}}, "finishing": {"_count": 1, "their": {"_count": 1}}, "but": {"_count": 1, "regretted": {"_count": 1}}, "studying": {"_count": 1, "for": {"_count": 1}}, "Prophet": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "Sundays": {"_count": 1, "he": {"_count": 1, "reminded": {"_count": 1}}}, "cheerfully": {"_count": 24, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "plunking": {"_count": 1, "a": {"_count": 1}}, "crackling": {"_count": 1, "fire": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "its": {"_count": 1, "all": {"_count": 1}}, "put": {"_count": 1, "down": {"_count": 1}}, "reaching": {"_count": 1, "across": {"_count": 1}}, "and": {"_count": 3, "went": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}}, "leaning": {"_count": 1, "across": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}}, "spread": {"_count": 61, "marmalade": {"_count": 1, "on": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "pearlywhite": {"_count": 1, "on": {"_count": 1}}, "manure": {"_count": 1, "on": {"_count": 1}}, "all": {"_count": 3, "the": {"_count": 1}, "over": {"_count": 2}}, "through": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "rapidly": {"_count": 1, "from": {"_count": 1}}, "as": {"_count": 1, "never": {"_count": 1}}, "across": {"_count": 5, "his": {"_count": 2}, "Malfoys": {"_count": 1}, "her": {"_count": 2}}, "over": {"_count": 5, "the": {"_count": 1}, "Dudleys": {"_count": 1}, "Harrys": {"_count": 1}, "two": {"_count": 1}, "his": {"_count": 1}}, "suddenly": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 2}}, "her": {"_count": 3, "homework": {"_count": 1}, "enormous": {"_count": 1}, "wings": {"_count": 1}}, "out": {"_count": 3, "in": {"_count": 1}, "searching": {"_count": 1}, "you": {"_count": 1}}, "with": {"_count": 1, "books": {"_count": 1}}, "his": {"_count": 4, "arms": {"_count": 3}, "hands": {"_count": 1}}, "the": {"_count": 4, "narrow": {"_count": 1}, "newspaper": {"_count": 1}, "story": {"_count": 1}, "rumor": {"_count": 1}}, "steadily": {"_count": 1, "over": {"_count": 1}}, "it": {"_count": 2, "on": {"_count": 1}, "around": {"_count": 1}}, "wider": {"_count": 1, "over": {"_count": 1}}, "wide": {"_count": 1, "like": {"_count": 1}}, "ou": {"_count": 1, "underneath": {"_count": 1}}, "their": {"_count": 1, "books": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "quickly": {"_count": 1, "next": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "swirling": {"_count": 1, "like": {"_count": 1}}, "to": {"_count": 1, "your": {"_count": 1}}, "outward": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "slowly": {"_count": 1, "across": {"_count": 1}}, "them": {"_count": 1, "and": {"_count": 1}}, "eventually": {"_count": 1, "it": {"_count": 1}}}, "marmalade": {"_count": 9, "on": {"_count": 2, "his": {"_count": 2}}, "but": {"_count": 1, "then": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}}, "newspapers": {"_count": 12, "no": {"_count": 1, "damn": {"_count": 1}}, "in": {"_count": 1, "its": {"_count": 1}}, "unlike": {"_count": 1, "most": {"_count": 1}}, "from": {"_count": 1, "bins": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "the": {"_count": 1}}, "sat": {"_count": 1, "in": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "throwing": {"_count": 1, "them": {"_count": 1}}, "Harry": {"_count": 1, "slowed": {"_count": 1}}, "and": {"_count": 1, "half": {"_count": 1}}}, "damn": {"_count": 19, "letters": {"_count": 1, "today": {"_count": 1}}, "good": {"_count": 2, "of": {"_count": 1}, "flier": {"_count": 1}}, "whos": {"_count": 1, "guilty": {"_count": 1}}, "how": {"_count": 1, "I": {"_count": 1}}, "it": {"_count": 1, "were": {"_count": 1}}, "near": {"_count": 1, "beat": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}, "soft": {"_count": 1, "for": {"_count": 1}}, "whispered": {"_count": 1, "Ginny": {"_count": 1}}, "But": {"_count": 1, "she": {"_count": 1}}, "sight": {"_count": 3, "nicer": {"_count": 1}, "more": {"_count": 1}, "harder": {"_count": 1}}, "He": {"_count": 1, "dropped": {"_count": 1}}, "either": {"_count": 1, "said": {"_count": 1}}, "thatll": {"_count": 1, "be": {"_count": 1}}, "thing": {"_count": 2, "weve": {"_count": 1}, "its": {"_count": 1}}}, "Something": {"_count": 90, "came": {"_count": 1, "whizzing": {"_count": 1}}, "very": {"_count": 5, "painful": {"_count": 1}, "hard": {"_count": 1}, "small": {"_count": 1}, "cold": {"_count": 1}, "odd": {"_count": 1}}, "really": {"_count": 1, "extraordinary": {"_count": 1}}, "fluid": {"_count": 1, "and": {"_count": 1}}, "held": {"_count": 1, "him": {"_count": 1}}, "was": {"_count": 9, "moving": {"_count": 1}, "slithering": {"_count": 3}, "shining": {"_count": 1}, "bounding": {"_count": 1}, "driving": {"_count": 1}, "erupting": {"_count": 1}, "wrong": {"_count": 1}}, "about": {"_count": 6, "the": {"_count": 1}, "having": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "Phineas": {"_count": 1}, "\u2018just": {"_count": 1}}, "bright": {"_count": 1, "white": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "gold": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 3, "Rons": {"_count": 1}, "Parseltongue": {"_count": 1}, "her": {"_count": 1}}, "wet": {"_count": 1, "touched": {"_count": 1}}, "huge": {"_count": 2, "hit": {"_count": 1}, "and": {"_count": 1}}, "soft": {"_count": 1, "hit": {"_count": 1}}, "of": {"_count": 1, "Harrys": {"_count": 1}}, "whooshed": {"_count": 1, "suddenly": {"_count": 1}}, "happened": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 3, "looked": {"_count": 1}, "seriously": {"_count": 1}, "is": {"_count": 1}}, "silverwhite": {"_count": 1, "something": {"_count": 1}}, "moving": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 4, "moved": {"_count": 1}, "happened": {"_count": 2}, "broken": {"_count": 1}}, "flickered": {"_count": 1, "in": {"_count": 1}}, "shiny": {"_count": 1, "glinted": {"_count": 1}}, "stirred": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 2, "golden": {"_count": 1}, "that": {"_count": 1}}, "large": {"_count": 2, "much": {"_count": 1}, "and": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "sharp": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 5, "didnt": {"_count": 3}, "wanted": {"_count": 2}}, "worse": {"_count": 1, "than": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "brushed": {"_count": 1, "his": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "collided": {"_count": 1, "hard": {"_count": 1}}, "goods": {"_count": 1, "happened": {"_count": 1}}, "hes": {"_count": 1, "been": {"_count": 1}}, "caught": {"_count": 3, "him": {"_count": 1}, "Harrys": {"_count": 1}, "Harry": {"_count": 1}}, "blibbering": {"_count": 1, "no": {"_count": 1}}, "heavy": {"_count": 1, "struck": {"_count": 1}}, "smells": {"_count": 1, "good": {"_count": 1}}, "wrong": {"_count": 2, "Hermione": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 2, "do": {"_count": 1}, "get": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "more": {"_count": 2, "worrisome": {"_count": 1}, "than": {"_count": 1}}, "hot": {"_count": 1, "and": {"_count": 1}}, "go": {"_count": 1, "wrong": {"_count": 1}}, "creaked": {"_count": 1, "downstairs": {"_count": 1}}, "shifted": {"_count": 1, "in": {"_count": 1}}, "gleamed": {"_count": 1, "in": {"_count": 1}}, "fell": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "something": {"_count": 1, "thatll": {"_count": 1}}, "happy": {"_count": 1, "": {"_count": 1}}}, "whizzing": {"_count": 9, "down": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "excitedly": {"_count": 1, "around": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "resignedly": {"_count": 1, "past": {"_count": 1}}, "past": {"_count": 1, "Harrys": {"_count": 1}}, "lethally": {"_count": 1, "through": {"_count": 1}}, "in": {"_count": 2, "its": {"_count": 2}}}, "forty": {"_count": 7, "letters": {"_count": 1, "came": {"_count": 1}}, "fifty": {"_count": 1, "feet": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "points": {"_count": 1, "": {"_count": 1}}, "ten": {"_count": 1, "to": {"_count": 1}}, "versus": {"_count": 1, "two": {"_count": 1}}}, "pelting": {"_count": 13, "out": {"_count": 4, "of": {"_count": 4}}, "his": {"_count": 1, "way": {"_count": 1}}, "her": {"_count": 2, "with": {"_count": 2}}, "toward": {"_count": 3, "him": {"_count": 1}, "Cedrics": {"_count": 1}, "McLaggen": {"_count": 1}}, "back": {"_count": 1, "for": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}}, "fireplace": {"_count": 67, "like": {"_count": 1, "bullets": {"_count": 1}}, "was": {"_count": 2, "damp": {"_count": 1}, "dark": {"_count": 1}}, "they": {"_count": 1, "couldnt": {"_count": 1}}, "turning": {"_count": 1, "all": {"_count": 1}}, "But": {"_count": 1, "dont": {"_count": 1}}, "of": {"_count": 1, "what": {"_count": 1}}, "where": {"_count": 2, "flames": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "and": {"_count": 7, "threw": {"_count": 1}, "turning": {"_count": 1}, "called": {"_count": 1}, "pointed": {"_count": 1}, "shaken": {"_count": 1}, "back": {"_count": 1}, "disappeared": {"_count": 1}}, "brushing": {"_count": 1, "ash": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "hang": {"_count": 1, "on": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "for": {"_count": 1, "": {"_count": 1}}, "burst": {"_count": 2, "outward": {"_count": 1}, "into": {"_count": 1}}, "connected": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "crackling": {"_count": 1, "merrily": {"_count": 1}}, "opposite": {"_count": 1, "him": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "too": {"_count": 1, "": {"_count": 1}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}, "covered": {"_count": 1, "them": {"_count": 1}}, "then": {"_count": 1, "finally": {"_count": 1}}, "sat": {"_count": 1, "a": {"_count": 1}}, "found": {"_count": 1, "what": {"_count": 1}}, "he": {"_count": 1, "took": {"_count": 1}}, "seized": {"_count": 1, "the": {"_count": 1}}, "facing": {"_count": 1, "the": {"_count": 1}}, "stepped": {"_count": 1, "into": {"_count": 1}}, "sopping": {"_count": 1, "wet": {"_count": 1}}, "in": {"_count": 1, "Professor": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "tiny": {"_count": 1, "half": {"_count": 1}}, "seeking": {"_count": 1, "reassurance": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 1, "fireplace": {"_count": 1}}, "sealing": {"_count": 1, "them": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "together": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "brow": {"_count": 1, "furrowed": {"_count": 1}}, "above": {"_count": 1, "which": {"_count": 1}}}, "bullets": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "thundered": {"_count": 1, "on": {"_count": 1}}, "toward": {"_count": 1, "Ron": {"_count": 1}}}, "ducked": {"_count": 39, "but": {"_count": 2, "Harry": {"_count": 1}, "for": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "under": {"_count": 4, "the": {"_count": 3}, "her": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 2}, "from": {"_count": 3}}, "as": {"_count": 1, "Fred": {"_count": 1}}, "swiftly": {"_count": 1, "down": {"_count": 1}}, "around": {"_count": 2, "Ron": {"_count": 1}, "him": {"_count": 1}}, "crept": {"_count": 1, "sideways": {"_count": 1}}, "causing": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "avoid": {"_count": 2}}, "just": {"_count": 2, "in": {"_count": 2}}, "her": {"_count": 1, "arms": {"_count": 1}}, "Warrington": {"_count": 1, "shes": {"_count": 1}}, "a": {"_count": 1, "Bludger": {"_count": 1}}, "and": {"_count": 3, "it": {"_count": 1}, "ran": {"_count": 1}, "lost": {"_count": 1}}, "down": {"_count": 2, "low": {"_count": 1}, "behind": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "back": {"_count": 2, "to": {"_count": 1}, "inside": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "waist": {"_count": 19, "and": {"_count": 9, "threw": {"_count": 1}, "the": {"_count": 1}, "seemed": {"_count": 1}, "still": {"_count": 1}, "was": {"_count": 1}, "going": {"_count": 1}, "without": {"_count": 1}, "pulling": {"_count": 1}, "they": {"_count": 1}}, "a": {"_count": 1, "man": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "height": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "grabbed": {"_count": 1, "the": {"_count": 1}}, "length": {"_count": 1, "today": {"_count": 1}}, "joined": {"_count": 1, "smoothly": {"_count": 1}}}, "faces": {"_count": 153, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "": {"_count": 44, ".": {"_count": 43}, "?": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 1}, "down": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "when": {"_count": 3, "I": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "as": {"_count": 7, "he": {"_count": 1}, "though": {"_count": 2}, "they": {"_count": 4}}, "caught": {"_count": 1, "Snapes": {"_count": 1}}, "of": {"_count": 6, "the": {"_count": 4}, "Lockhart": {"_count": 1}, "his": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 13, "voices": {"_count": 1}, "flexing": {"_count": 1}, "waggling": {"_count": 1}, "though": {"_count": 1}, "take": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "disapproving": {"_count": 1}, "guilt": {"_count": 1}, "left": {"_count": 1}, "moan": {"_count": 1}, "fleeing": {"_count": 1}, "arms": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "he": {"_count": 6, "ran": {"_count": 1}, "could": {"_count": 2}, "guessed": {"_count": 1}, "added": {"_count": 1}, "saw": {"_count": 1}}, "Harry": {"_count": 2, "and": {"_count": 1}, "Ron": {"_count": 1}}, "glimmering": {"_count": 1, "by": {"_count": 1}}, "pointing": {"_count": 1, "up": {"_count": 1}}, "appeared": {"_count": 1, "under": {"_count": 1}}, "were": {"_count": 5, "a": {"_count": 1}, "elongating": {"_count": 1}, "concealed": {"_count": 1}, "level": {"_count": 1}, "turned": {"_count": 1}}, "lit": {"_count": 1, "by": {"_count": 1}}, "cracked": {"_count": 1, "into": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "other": {"_count": 1, "Hogwarts": {"_count": 1}}, "their": {"_count": 1, "hands": {"_count": 1}}, "masked": {"_count": 1, "": {"_count": 1}}, "moving": {"_count": 1, "one": {"_count": 1}}, "are": {"_count": 1, "supposed": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "some": {"_count": 1}, "their": {"_count": 2}}, "around": {"_count": 2, "him": {"_count": 2}}, "became": {"_count": 1, "mere": {"_count": 1}}, "she": {"_count": 1, "looked": {"_count": 1}}, "that": {"_count": 4, "they": {"_count": 3}, "bore": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "youll": {"_count": 1, "have": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "burst": {"_count": 1, "clearly": {"_count": 1}}, "glowed": {"_count": 1, "palely": {"_count": 1}}, "looking": {"_count": 1, "back": {"_count": 1}}, "afforded": {"_count": 1, "him": {"_count": 1}}, "set": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "upturned": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 2, "team": {"_count": 1}, "Room": {"_count": 1}}, "but": {"_count": 2, "thats": {"_count": 1}, "it": {"_count": 1}}, "flick": {"_count": 1, "back": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "letting": {"_count": 1}}, "lingering": {"_count": 1, "for": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "leering": {"_count": 1, "": {"_count": 1}}, "rippling": {"_count": 1, "their": {"_count": 1}}, "turned": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "jumped": {"_count": 1, "as": {"_count": 1}}, "twisted": {"_count": 1, "and": {"_count": 1}}, "completely": {"_count": 1, "hidden": {"_count": 1}}, "hidden": {"_count": 1, "beneath": {"_count": 1}}, "hooded": {"_count": 1, "and": {"_count": 1}}, "cruel": {"_count": 1, "roughhewn": {"_count": 1}}, "alive": {"_count": 1, "with": {"_count": 1}}, "only": {"_count": 1, "came": {"_count": 1}}, "both": {"_count": 1, "on": {"_count": 1}}}, "shut": {"_count": 232, "": {"_count": 25, ".": {"_count": 22}, "?": {"_count": 2}, "!": {"_count": 1}}, "up": {"_count": 40, "Dursley": {"_count": 1}, "said": {"_count": 8}, "in": {"_count": 5}, "a": {"_count": 1}, "": {"_count": 8}, "Harry": {"_count": 1}, "about": {"_count": 2}, "everyonell": {"_count": 1}, "Weatherby": {"_count": 1}, "and": {"_count": 2}, "for": {"_count": 1}, "laughing": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}, "Potter": {"_count": 1}, "youre": {"_count": 1}, "with": {"_count": 1}, "she": {"_count": 1}, "giving": {"_count": 1}, "here": {"_count": 1}}, "tight": {"_count": 4, "": {"_count": 3}, "against": {"_count": 1}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Mrs": {"_count": 1}}, "Harry": {"_count": 4, "in": {"_count": 1}, "began": {"_count": 1}, "set": {"_count": 1}, "and": {"_count": 1}}, "safely": {"_count": 1, "in": {"_count": 1}}, "behind": {"_count": 21, "them": {"_count": 11}, "him": {"_count": 6}, "her": {"_count": 3}, "Ginny": {"_count": 1}}, "it": {"_count": 5, "quickly": {"_count": 1}, "then": {"_count": 1}, "let": {"_count": 1}, "down": {"_count": 1}, "out": {"_count": 1}}, "and": {"_count": 16, "they": {"_count": 1}, "stood": {"_count": 1}, "Ron": {"_count": 1}, "locked": {"_count": 2}, "mouth": {"_count": 1}, "Kreacher": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 1}, "flung": {"_count": 1}, "was": {"_count": 1}, "shook": {"_count": 1}, "your": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}}, "the": {"_count": 16, "door": {"_count": 11}, "book": {"_count": 1}, "clasp": {"_count": 1}, "curtains": {"_count": 1}, "gates": {"_count": 1}, "drawer": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "Neville": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 12, "ears": {"_count": 2}, "eyes": {"_count": 6}, "body": {"_count": 1}, "snowy": {"_count": 1}, "wand": {"_count": 1}, "mind": {"_count": 1}}, "your": {"_count": 3, "ears": {"_count": 1}, "eyes": {"_count": 1}, "mouth": {"_count": 1}}, "Put": {"_count": 1, "your": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 2}}, "out": {"_count": 2, "sound": {"_count": 1}, "for": {"_count": 1}}, "Voyages": {"_count": 1, "with": {"_count": 1}}, "But": {"_count": 1, "I": {"_count": 1}}, "Ron": {"_count": 1, "didnt": {"_count": 1}}, "himself": {"_count": 2, "up": {"_count": 1}, "in": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "least": {"_count": 1}}, "on": {"_count": 4, "his": {"_count": 3}, "the": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "him": {"_count": 4, "in": {"_count": 1}, "up": {"_count": 2}, "out": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 5, "a": {"_count": 4}, "such": {"_count": 1}}, "others": {"_count": 1, "had": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "away": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "reached": {"_count": 1, "over": {"_count": 1}}, "that": {"_count": 1, "thing": {"_count": 1}}, "Crookshanks": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "block": {"_count": 1}}, "blocking": {"_count": 1, "out": {"_count": 1}}, "Malfoy": {"_count": 1, "up": {"_count": 1}}, "then": {"_count": 2, "said": {"_count": 1}, "pulled": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 7, "": {"_count": 3}, "worried": {"_count": 1}, "silencing": {"_count": 1}, "and": {"_count": 1}, "did": {"_count": 1}}, "away": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "banging": {"_count": 1, "off": {"_count": 1}}, "Weird": {"_count": 1, "Wizarding": {"_count": 1}}, "could": {"_count": 1, "you": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "WHAM": {"_count": 1, "A": {"_count": 1}}, "very": {"_count": 1, "tight": {"_count": 1}}, "of": {"_count": 1, "him": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "UP": {"_count": 2, "": {"_count": 2}}, "also": {"_count": 1, "a": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "he": {"_count": 1, "waved": {"_count": 1}}, "about": {"_count": 1, "you": {"_count": 1}}, "Ive": {"_count": 1, "said": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 1}, "those": {"_count": 1}}, "while": {"_count": 1, "Snape": {"_count": 1}}, "this": {"_count": 1, "stuff": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "these": {"_count": 1, "things": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "myself": {"_count": 1, "away": {"_count": 1}}, "yourself": {"_count": 1, "away": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "Kreachers": {"_count": 1, "mouth": {"_count": 1}}, "Yes": {"_count": 1, "but": {"_count": 1}}, "its": {"_count": 1, "why": {"_count": 1}}}, "bouncing": {"_count": 25, "off": {"_count": 6, "the": {"_count": 3}, "their": {"_count": 1}, "tree": {"_count": 1}, "him": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "along": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 2, "and": {"_count": 2}}, "the": {"_count": 1, "ferret": {"_count": 1}}, "ferrets": {"_count": 1, "progress": {"_count": 1}}, "ferret": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "its": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 3}, "every": {"_count": 1}, "his": {"_count": 2}}, "and": {"_count": 1, "beaming": {"_count": 1}}, "from": {"_count": 1, "floor": {"_count": 1}}, "slightly": {"_count": 1, "in": {"_count": 1}}}, "tufts": {"_count": 2, "out": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "hair": {"_count": 1}}}, "Were": {"_count": 184, "going": {"_count": 23, "away": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 19}, "Dobby": {"_count": 1}, "out": {"_count": 1}}, "there": {"_count": 2, "really": {"_count": 1}, "escapators": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "vacation": {"_count": 1}}, "done": {"_count": 2, "for": {"_count": 2}}, "gonna": {"_count": 2, "try": {"_count": 1}, "be": {"_count": 1}}, "you": {"_count": 6, "going": {"_count": 1}, "doing": {"_count": 1}, "perhaps": {"_count": 1}, "": {"_count": 2}, "trying": {"_count": 1}}, "coming": {"_count": 4, "said": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 2}}, "looking": {"_count": 1, "for": {"_count": 1}}, "not": {"_count": 26, "offended": {"_count": 1}, "playing": {"_count": 1}, "meeting": {"_count": 1}, "thundering": {"_count": 1}, "supposed": {"_count": 2}, "stupid": {"_count": 1}, "discussing": {"_count": 1}, "going": {"_count": 7}, "": {"_count": 1}, "sure": {"_count": 1}, "outofbounds": {"_count": 1}, "doing": {"_count": 1}, "allowed": {"_count": 1}, "in": {"_count": 1}, "splitting": {"_count": 1}, "Snape": {"_count": 1}, "interested": {"_count": 1}, "the": {"_count": 1}, "leaving": {"_count": 1}}, "nearly": {"_count": 5, "there": {"_count": 5}}, "only": {"_count": 1, "borrowing": {"_count": 1}}, "a": {"_count": 2, "little": {"_count": 1}, "bit": {"_count": 1}}, "running": {"_count": 2, "low": {"_count": 1}, "late": {"_count": 1}}, "attracting": {"_count": 1, "too": {"_count": 1}}, "stuck": {"_count": 1, "right": {"_count": 1}}, "easily": {"_count": 1, "the": {"_count": 1}}, "being": {"_count": 1, "flattened": {"_count": 1}}, "in": {"_count": 6, "trouble": {"_count": 2}, "the": {"_count": 2}, "": {"_count": 1}, "classroom": {"_count": 1}}, "taking": {"_count": 2, "no": {"_count": 1}, "Hufflepuff": {"_count": 1}}, "all": {"_count": 9, "in": {"_count": 1}, "down": {"_count": 1}, "frozen": {"_count": 1}, "missing": {"_count": 1}, "really": {"_count": 1}, "human": {"_count": 1}, "still": {"_count": 1}, "right": {"_count": 1}, "going": {"_count": 1}}, "friends": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "lucky": {"_count": 1, "to": {"_count": 1}}, "still": {"_count": 3, "getting": {"_count": 1}, "square": {"_count": 1}, "going": {"_count": 1}}, "staying": {"_count": 2, "at": {"_count": 1}, "put": {"_count": 1}}, "witnesses": {"_count": 1, "said": {"_count": 1}}, "getting": {"_count": 1, "there": {"_count": 1}}, "playing": {"_count": 2, "Hufflepuff": {"_count": 1}, "against": {"_count": 1}}, "fifty": {"_count": 1, "points": {"_count": 1}}, "due": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 6, "tortoises": {"_count": 1}, "only": {"_count": 2}, "Muggles": {"_count": 1}, "ones": {"_count": 1}, "biggest": {"_count": 1}}, "wearing": {"_count": 2, "the": {"_count": 2}}, "breaking": {"_count": 1, "one": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "supposed": {"_count": 8, "to": {"_count": 8}}, "walking": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "eating": {"_count": 2, "out": {"_count": 1}, "down": {"_count": 1}}, "just": {"_count": 3, "not": {"_count": 1}, "waiting": {"_count": 1}, "gonna": {"_count": 1}}, "they": {"_count": 2, "okay": {"_count": 1}, "Death": {"_count": 1}}, "too": {"_count": 1, "late": {"_count": 1}}, "seventeen": {"_count": 1, "in": {"_count": 1}}, "quite": {"_count": 1, "busy": {"_count": 1}}, "your": {"_count": 1, "guard": {"_count": 1}}, "of": {"_count": 1, "age": {"_count": 1}}, "doing": {"_count": 2, "our": {"_count": 1}, "autographs": {"_count": 1}}, "were": {"_count": 1, "your": {"_count": 1}}, "having": {"_count": 2, "a": {"_count": 2}}, "well": {"_count": 1, "Ron": {"_count": 1}}, "taught": {"_count": 1, "by": {"_count": 1}}, "whittled": {"_count": 1, "down": {"_count": 1}}, "paying": {"_count": 1, "them": {"_count": 1}}, "bein": {"_count": 1, "watched": {"_count": 1}}, "workin": {"_count": 1, "in": {"_count": 1}}, "doin": {"_count": 1, "thestrals": {"_count": 1}}, "here": {"_count": 4, "to": {"_count": 3}, "": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "goin": {"_count": 1, "in": {"_count": 1}}, "flying": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "next": {"_count": 1}}, "importing": {"_count": 1, "three": {"_count": 1}}, "testing": {"_count": 1, "most": {"_count": 1}}, "his": {"_count": 2, "last": {"_count": 1}, "army": {"_count": 1}}, "allowed": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 2, "to": {"_count": 2}}, "with": {"_count": 1, "you": {"_count": 1}}, "leaving": {"_count": 1, "soon": {"_count": 1}}, "choosing": {"_count": 1, "to": {"_count": 1}}, "one": {"_count": 1, "short": {"_count": 1}}, "fine": {"_count": 1, "said": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "Gryffindors": {"_count": 1, "and": {"_count": 1}}, "fighting": {"_count": 2, "arent": {"_count": 1}, "": {"_count": 1}}, "up": {"_count": 1, "on": {"_count": 1}}}, "pack": {"_count": 37, "some": {"_count": 1, "clothes": {"_count": 1}}, "his": {"_count": 1, "television": {"_count": 1}}, "of": {"_count": 13, "Chocolate": {"_count": 1}, "nonexplodable": {"_count": 1}, "enchantments": {"_count": 1}, "Self": {"_count": 1}, "cards": {"_count": 2}, "toffees": {"_count": 1}, "goblins": {"_count": 1}, "owls": {"_count": 1}, "Muggle": {"_count": 1}, "dirtylooking": {"_count": 1}, "bacon": {"_count": 1}, "fiery": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "up": {"_count": 5, "": {"_count": 2}, "the": {"_count": 2}, "their": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "properly": {"_count": 1, "Ron": {"_count": 1}}, "away": {"_count": 3, "your": {"_count": 1}, "rose": {"_count": 1}, "all": {"_count": 1}}, "a": {"_count": 2, "hundred": {"_count": 1}, "much": {"_count": 1}}, "them": {"_count": 1, "properly": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "trunks": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "these": {"_count": 1, "for": {"_count": 1}}}, "arguments": {"_count": 7, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "that": {"_count": 2, "shook": {"_count": 1}, "had": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "by": {"_count": 1, "dueling": {"_count": 1}}}, "missing": {"_count": 74, "that": {"_count": 1, "no": {"_count": 1}}, "Agrippa": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "from": {"_count": 1}}, "him": {"_count": 2, "by": {"_count": 1}, "at": {"_count": 1}}, "anything": {"_count": 2, "": {"_count": 2}}, "": {"_count": 15, "?": {"_count": 3}, ".": {"_count": 12}}, "from": {"_count": 10, "their": {"_count": 2}, "its": {"_count": 1}, "Moodys": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 2}}, "Harry": {"_count": 2, "and": {"_count": 1}, "who": {"_count": 1}}, "and": {"_count": 2, "tutted": {"_count": 1}, "Ron": {"_count": 1}}, "the": {"_count": 6, "pail": {"_count": 1}, "cushions": {"_count": 1}, "start": {"_count": 1}, "top": {"_count": 1}, "Bludger": {"_count": 1}, "company": {"_count": 1}}, "said": {"_count": 1, "Black": {"_count": 1}}, "for": {"_count": 1, "over": {"_count": 1}}, "so": {"_count": 1, "thatll": {"_count": 1}}, "Hermione": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 1, "Hermione": {"_count": 1}}, "his": {"_count": 1, "mouth": {"_count": 1}}, "like": {"_count": 1, "Bertha": {"_count": 1}}, "teeth": {"_count": 1, "": {"_count": 1}}, "finger": {"_count": 1, "": {"_count": 1}}, "Death": {"_count": 2, "Eaters": {"_count": 2}}, "several": {"_count": 2, "panes": {"_count": 2}}, "something": {"_count": 3, "you": {"_count": 1}, "Harry": {"_count": 1}, "here": {"_count": 1}}, "our": {"_count": 1, "biggest": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "books": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 1, "although": {"_count": 1}}, "Malfoy": {"_count": 1, "amongst": {"_count": 1}}, "a": {"_count": 1, "match": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "tooth": {"_count": 1, "had": {"_count": 1}}, "Order": {"_count": 1, "members": {"_count": 1}}, "scooped": {"_count": 1, "cleanly": {"_count": 1}}, "photographs": {"_count": 1, "were": {"_count": 1}}, "fingernails": {"_count": 1, "Hermione": {"_count": 1}}, "fragments": {"_count": 1, "of": {"_count": 1}}, "Horcrux": {"_count": 1, "or": {"_count": 1}}, "by": {"_count": 1, "feet": {"_count": 1}}}, "wrenched": {"_count": 49, "their": {"_count": 1, "way": {"_count": 1}}, "open": {"_count": 11, "doors": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 6}, "his": {"_count": 2}, "from": {"_count": 1}}, "from": {"_count": 2, "his": {"_count": 1}, "him": {"_count": 1}}, "his": {"_count": 6, "teeth": {"_count": 1}, "broken": {"_count": 1}, "arm": {"_count": 1}, "eyes": {"_count": 1}, "imagination": {"_count": 1}, "mind": {"_count": 1}}, "the": {"_count": 10, "camera": {"_count": 1}, "hangings": {"_count": 2}, "window": {"_count": 1}, "door": {"_count": 1}, "two": {"_count": 1}, "book": {"_count": 1}, "telescope": {"_count": 1}, "stopper": {"_count": 1}, "chain": {"_count": 1}}, "it": {"_count": 8, "out": {"_count": 1}, "open": {"_count": 6}, "away": {"_count": 1}}, "itself": {"_count": 1, "free": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "bag": {"_count": 1}}, "him": {"_count": 1, "back": {"_count": 1}}, "himself": {"_count": 3, "free": {"_count": 2}, "back": {"_count": 1}}, "at": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "upward": {"_count": 1, "once": {"_count": 1}}}, "boardedup": {"_count": 2, "doors": {"_count": 1, "and": {"_count": 1}}, "fireplace": {"_count": 1, "which": {"_count": 1}}}, "speeding": {"_count": 29, "toward": {"_count": 6, "the": {"_count": 5}, "him": {"_count": 1}}, "past": {"_count": 1, "fields": {"_count": 1}}, "off": {"_count": 1, "toward": {"_count": 1}}, "Bludger": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "cannonball": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 5, "": {"_count": 3}, "excitement": {"_count": 1}, "as": {"_count": 1}}, "along": {"_count": 3, "behind": {"_count": 1}, "at": {"_count": 1}, "high": {"_count": 1}}, "forward": {"_count": 1, "in": {"_count": 1}}, "death": {"_count": 1, "before": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "away": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}, "down": {"_count": 1, "what": {"_count": 1}}, "Snitch": {"_count": 1, "from": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}}, "highway": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "when": {"_count": 1, "Ginny": {"_count": 1}}}, "sniffling": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "sports": {"_count": 4, "bag": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "inept": {"_count": 1}}, "a": {"_count": 1, "stream": {"_count": 1}}, "department": {"_count": 1, "though": {"_count": 1}}}, "opposite": {"_count": 126, "direction": {"_count": 22, "for": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 9}, "gazing": {"_count": 1}, "laughing": {"_count": 1}, "his": {"_count": 1}, "toward": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}, "It": {"_count": 1}, "off": {"_count": 1}, "throwing": {"_count": 1}, "let": {"_count": 1}, "from": {"_count": 1}}, "Harry": {"_count": 7, "": {"_count": 3}, "on": {"_count": 2}, "behind": {"_count": 1}, "bearing": {"_count": 1}}, "wall": {"_count": 13, "": {"_count": 6}, "heads": {"_count": 1}, "of": {"_count": 1}, "then": {"_count": 1}, "turning": {"_count": 1}, "and": {"_count": 2}, "slid": {"_count": 1}}, "the": {"_count": 7, "ghost": {"_count": 1}, "others": {"_count": 1}, "pantry": {"_count": 1}, "entrance": {"_count": 1}, "two": {"_count": 1}, "tapestry": {"_count": 1}, "door": {"_count": 1}}, "side": {"_count": 7, "of": {"_count": 4}, "from": {"_count": 1}, "to": {"_count": 1}, "was": {"_count": 1}}, "looking": {"_count": 1, "as": {"_count": 1}}, "them": {"_count": 8, "": {"_count": 2}, "almost": {"_count": 1}, "was": {"_count": 1}, "wearing": {"_count": 1}, "and": {"_count": 1}, "exploded": {"_count": 1}, "gazing": {"_count": 1}}, "him": {"_count": 11, "had": {"_count": 1}, "recognized": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 5}, "looking": {"_count": 1}, "trying": {"_count": 1}, "and": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 4, "Muggleborn": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "ends": {"_count": 2, "of": {"_count": 2}}, "shore": {"_count": 2, "": {"_count": 2}}, "bank": {"_count": 6, "": {"_count": 2}, "he": {"_count": 1}, "the": {"_count": 1}, "rising": {"_count": 1}, "that": {"_count": 1}}, "numbers": {"_count": 1, "making": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "sides": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 2, "and": {"_count": 2}}, "goal": {"_count": 1, "": {"_count": 1}}, "goalpost": {"_count": 1, "pulled": {"_count": 1}}, "that": {"_count": 1, "tapestry": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "directions": {"_count": 5, "and": {"_count": 1}, "": {"_count": 4}}, "in": {"_count": 1, "which": {"_count": 1}}, "and": {"_count": 2, "fell": {"_count": 1}, "slide": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 1, "desk": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "Lockharts": {"_count": 1, "just": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "Narcissa": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "hillside": {"_count": 1, "was": {"_count": 1}}, "Hermione": {"_count": 1, "who": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}}, "Shake": {"_count": 2, "em": {"_count": 1, "off": {"_count": 1}}, "your": {"_count": 1, "head": {"_count": 1}}}, "em": {"_count": 135, "off": {"_count": 4, "": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}, "did": {"_count": 1}}, "too": {"_count": 1, "some": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 16}, "!": {"_count": 6}, "?": {"_count": 5}}, "on": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 1}, "fer": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "came": {"_count": 2, "outta": {"_count": 1}, "home": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 1}, "separate": {"_count": 1}, "here": {"_count": 2}, "the": {"_count": 1}}, "see": {"_count": 2, "an": {"_count": 1}, "we": {"_count": 1}}, "well": {"_count": 2, "oiled": {"_count": 1}, "alone": {"_count": 1}}, "all": {"_count": 4, "up": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "knew": {"_count": 1, "it": {"_count": 1}}, "quiet": {"_count": 1, "as": {"_count": 1}}, "said": {"_count": 4, "Hagrid": {"_count": 3}, "Ted": {"_count": 1}}, "a": {"_count": 5, "run": {"_count": 1}, "few": {"_count": 1}, "lifelong": {"_count": 1}, "call": {"_count": 1}, "third": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "evry": {"_count": 1, "time": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "they": {"_count": 1, "don": {"_count": 1}}, "Harry": {"_count": 3, "yeh": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "Buckbeaks": {"_count": 1, "all": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "yerselves": {"_count": 1, "": {"_count": 1}}, "today": {"_count": 2, "": {"_count": 2}}, "before": {"_count": 1, "not": {"_count": 1}}, "out": {"_count": 1, "with": {"_count": 1}}, "have": {"_count": 2, "got": {"_count": 1}, "free": {"_count": 1}}, "an": {"_count": 2, "unkindness": {"_count": 1}, "thats": {"_count": 1}}, "unhappy": {"_count": 1, "ter": {"_count": 1}}, "if": {"_count": 4, "yeh": {"_count": 3}, "we": {"_count": 1}}, "ter": {"_count": 2, "do": {"_count": 1}, "feed": {"_count": 1}}, "shrugged": {"_count": 1, "Hagrid": {"_count": 1}}, "down": {"_count": 2, "in": {"_count": 1}, "mines": {"_count": 1}}, "wan": {"_count": 1, "me": {"_count": 1}}, "second": {"_count": 1, "chances": {"_count": 1}}, "Dumbledores": {"_count": 2, "the": {"_count": 1}, "message": {"_count": 1}}, "loose": {"_count": 1, "": {"_count": 1}}, "straigh": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "old": {"_count": 1}}, "orf": {"_count": 1, "Warty": {"_count": 1}}, "quick": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "go": {"_count": 1}, "": {"_count": 1}}, "live": {"_count": 1, "a": {"_count": 1}}, "woke": {"_count": 1, "up": {"_count": 1}}, "went": {"_count": 1, "quiet": {"_count": 1}}, "eager": {"_count": 1, "fer": {"_count": 1}}, "with": {"_count": 1, "information": {"_count": 1}}, "were": {"_count": 1, "visitin": {"_count": 1}}, "Hagrid": {"_count": 1, "growled": {"_count": 1}}, "would": {"_count": 1, "": {"_count": 1}}, "unconscious": {"_count": 1, "theyd": {"_count": 1}}, "big": {"_count": 1, "beasts": {"_count": 1}}, "And": {"_count": 1, "youre": {"_count": 1}}, "where": {"_count": 1, "yeh": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "friendly": {"_count": 1, "but": {"_count": 1}}, "kill": {"_count": 1, "him": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "well": {"_count": 1}}, "cornin": {"_count": 1, "said": {"_count": 1}}, "Ill": {"_count": 1, "do": {"_count": 1}}, "left": {"_count": 1, "or": {"_count": 1}}, "Its": {"_count": 1, "not": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}, "can": {"_count": 1, "tell": {"_count": 1}}, "Greyback": {"_count": 1, "whatll": {"_count": 1}}, "near": {"_count": 1, "me": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "facetoface": {"_count": 1, "like": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "till": {"_count": 1, "they": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "hurt": {"_count": 1}}}, "mutter": {"_count": 10, "whenever": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "probably": {"_count": 1, "hiding": {"_count": 1}}, "Slave": {"_count": 1, "labor": {"_count": 1}}, "themselves": {"_count": 1, "into": {"_count": 1}}, "of": {"_count": 1, "going": {"_count": 1}}, "right": {"_count": 1, "outside": {"_count": 1}}, "a": {"_count": 1, "suggestion": {"_count": 1}}}, "whenever": {"_count": 54, "he": {"_count": 20, "did": {"_count": 1}, "felt": {"_count": 1}, "saw": {"_count": 1}, "wanted": {"_count": 1}, "tried": {"_count": 1}, "was": {"_count": 4}, "dropped": {"_count": 1}, "thought": {"_count": 1}, "had": {"_count": 2}, "fell": {"_count": 1}, "got": {"_count": 2}, "fancied": {"_count": 1}, "loses": {"_count": 1}, "succumbed": {"_count": 1}, "noticed": {"_count": 1}}, "Harry": {"_count": 3, "entered": {"_count": 1}, "saw": {"_count": 1}, "mentioned": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "they": {"_count": 6, "spoke": {"_count": 1}, "killed": {"_count": 1}, "were": {"_count": 2}, "had": {"_count": 1}, "mention": {"_count": 1}}, "the": {"_count": 1, "dementors": {"_count": 1}}, "someones": {"_count": 1, "upset": {"_count": 1}}, "she": {"_count": 3, "saw": {"_count": 1}, "met": {"_count": 1}, "was": {"_count": 1}}, "people": {"_count": 1, "see": {"_count": 1}}, "anyone": {"_count": 1, "passed": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 2}}, "Dudley": {"_count": 1, "turned": {"_count": 1}}, "it": {"_count": 2, "feels": {"_count": 1}, "happened": {"_count": 1}}, "you": {"_count": 3, "need": {"_count": 1}, "like": {"_count": 1}, "didnt": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}, "Ron": {"_count": 1, "drew": {"_count": 1}}, "Lily": {"_count": 1, "was": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "we": {"_count": 1, "There": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "want": {"_count": 1}}, "somebody": {"_count": 1, "went": {"_count": 1}}, "light": {"_count": 1, "permitted": {"_count": 1}}}, "eat": {"_count": 79, "or": {"_count": 2, "drink": {"_count": 1}, "sleep": {"_count": 1}}, "before": {"_count": 1, "yer": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "myself": {"_count": 1, "if": {"_count": 1}}, "on": {"_count": 1, "one": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 1}}, "in": {"_count": 2, "peace": {"_count": 1}, "here": {"_count": 1}}, "some": {"_count": 1, "breakfast": {"_count": 1}}, "again": {"_count": 1, "until": {"_count": 1}}, "fourth": {"_count": 1, "helpings": {"_count": 1}}, "my": {"_count": 1, "kettle": {"_count": 1}}, "anything": {"_count": 1, "except": {"_count": 1}}, "our": {"_count": 1, "words": {"_count": 1}}, "whatever": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 4, "": {"_count": 2}, "or": {"_count": 1}, "you": {"_count": 1}}, "that": {"_count": 2, "in": {"_count": 1}, "are": {"_count": 1}}, "Scabbers": {"_count": 2, "": {"_count": 1}, "seriously": {"_count": 1}}, "and": {"_count": 3, "sleep": {"_count": 1}, "freezing": {"_count": 1}, "thats": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "while": {"_count": 1, "touching": {"_count": 1}}, "him": {"_count": 1, "we": {"_count": 1}}, "than": {"_count": 1, "Harry": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 2, "hippogriff": {"_count": 1}, "decent": {"_count": 1}}, "another": {"_count": 1, "bite": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "at": {"_count": 2, "top": {"_count": 1}, "Hagrids": {"_count": 1}}, "bubotuber": {"_count": 1, "pus": {"_count": 1}}, "drink": {"_count": 1, "and": {"_count": 1}}, "enough": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "much": {"_count": 2, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 2, "waited": {"_count": 1}, "and": {"_count": 1}}, "their": {"_count": 2, "kids": {"_count": 1}, "dead": {"_count": 1}}, "this": {"_count": 1, "sir": {"_count": 1}}, "humans": {"_count": 1, "": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 2, "it": {"_count": 1}, "she": {"_count": 1}}, "said": {"_count": 1, "Bill": {"_count": 1}}, "the": {"_count": 3, "orange": {"_count": 1}, "foul": {"_count": 1}, "same": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "more": {"_count": 1, "breakfast": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "except": {"_count": 1, "some": {"_count": 1}}}, "drink": {"_count": 107, "all": {"_count": 3, "day": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}}, "its": {"_count": 1, "blood": {"_count": 1}}, "something": {"_count": 2, "else": {"_count": 1}, "from": {"_count": 1}}, "": {"_count": 27, "?": {"_count": 7}, "!": {"_count": 1}, ".": {"_count": 19}}, "that": {"_count": 5, "said": {"_count": 1}, "directly": {"_count": 1}, "Ron": {"_count": 1}, "up": {"_count": 1}, "Slughorn": {"_count": 1}}, "first": {"_count": 1, "said": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 2}, "sipped": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "drink": {"_count": 1, "until": {"_count": 1}}, "until": {"_count": 1, "only": {"_count": 1}}, "the": {"_count": 4, "scalding": {"_count": 1}, "poor": {"_count": 1}, "potion": {"_count": 2}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "what": {"_count": 1}}, "to": {"_count": 3, "a": {"_count": 1}, "Dumbledore": {"_count": 1}, "Aragogs": {"_count": 1}}, "his": {"_count": 1, "cloak": {"_count": 1}}, "only": {"_count": 1, "singlemalt": {"_count": 1}}, "and": {"_count": 6, "make": {"_count": 1}, "stale": {"_count": 1}, "said": {"_count": 1}, "thrust": {"_count": 1}, "nobody": {"_count": 1}, "Slughorn": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "least": {"_count": 1}}, "of": {"_count": 4, "singlemalt": {"_count": 1}, "pumpkin": {"_count": 1}, "water": {"_count": 2}}, "this": {"_count": 5, "": {"_count": 2}, "drink": {"_count": 1}, "youll": {"_count": 1}, "muck": {"_count": 1}}, "except": {"_count": 1, "from": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "tipping": {"_count": 1, "precariously": {"_count": 1}}, "about": {"_count": 1, "him": {"_count": 1}}, "while": {"_count": 1, "were": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "me": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "she": {"_count": 2, "gave": {"_count": 1}, "said": {"_count": 1}}, "up": {"_count": 1, "she": {"_count": 1}}, "Veritaserum": {"_count": 1, "and": {"_count": 1}}, "A": {"_count": 1, "team": {"_count": 1}}, "it": {"_count": 6, "you": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 3}, "if": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "because": {"_count": 1, "Romilda": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Professor": {"_count": 1, "just": {"_count": 1}}, "youd": {"_count": 1, "be": {"_count": 1}}, "watching": {"_count": 1, "Xenophilius": {"_count": 1}}, "as": {"_count": 1, "welcome": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}}, "nightfall": {"_count": 7, "Dudley": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "yet": {"_count": 1, "what": {"_count": 1}}, "repeated": {"_count": 1, "Voldemort": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "howling": {"_count": 32, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 4, "pain": {"_count": 2}, "agony": {"_count": 1}, "shock": {"_count": 1}}, "mad": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "when": {"_count": 1}, "this": {"_count": 1}, "jeering": {"_count": 1}}, "twenty": {"_count": 1, "minutes": {"_count": 1}}, "scratching": {"_count": 1, "at": {"_count": 1}}, "next": {"_count": 1, "moment": {"_count": 1}}, "anymore": {"_count": 1, "but": {"_count": 1}}, "loudly": {"_count": 1, "in": {"_count": 1}}, "point": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 5, "pain": {"_count": 1}, "laughter": {"_count": 3}, "rage": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "wind": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "rush": {"_count": 1, "of": {"_count": 1}}, "winds": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "Snape": {"_count": 1}}, "dog": {"_count": 1, "stuck": {"_count": 1}}}, "hungry": {"_count": 41, "hed": {"_count": 1, "missed": {"_count": 1}}, "he": {"_count": 5, "had": {"_count": 1}, "was": {"_count": 2}, "felt": {"_count": 1}, "hoped": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "when": {"_count": 2, "was": {"_count": 1}, "he": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "anymore": {"_count": 2, "": {"_count": 2}}, "said": {"_count": 3, "Ron": {"_count": 2}, "Lupin": {"_count": 1}}, "look": {"_count": 2, "in": {"_count": 2}}, "eyes": {"_count": 1, "now": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}, "nobody": {"_count": 1, "wanted": {"_count": 1}}, "and": {"_count": 4, "sat": {"_count": 1}, "he": {"_count": 1}, "thirsty": {"_count": 1}, "wishing": {"_count": 1}}, "one": {"_count": 1, "night": {"_count": 1}}, "students": {"_count": 1, "": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 1, "even": {"_count": 1}}, "we": {"_count": 1, "didnt": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}}, "programs": {"_count": 3, "hed": {"_count": 1, "wanted": {"_count": 1}}, "look": {"_count": 1, "Their": {"_count": 1}}, "are": {"_count": 1, "following": {"_count": 1}}}, "blowing": {"_count": 20, "up": {"_count": 4, "an": {"_count": 1}, "like": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "horn": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "hard": {"_count": 1, "in": {"_count": 1}}, "about": {"_count": 2, "": {"_count": 1}, "furiously": {"_count": 1}}, "pleasantly": {"_count": 1, "in": {"_count": 1}}, "hither": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "see": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "raspberry": {"_count": 1}}, "an": {"_count": 1, "ink": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "loud": {"_count": 1, "raspberries": {"_count": 1}}, "his": {"_count": 3, "nose": {"_count": 3}}}, "alien": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "gloomy": {"_count": 25, "looking": {"_count": 1, "hotel": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 1}, "behind": {"_count": 1}, "from": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "goodbye": {"_count": 1, "to": {"_count": 1}}, "nuns": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "enjoyed": {"_count": 1}}, "heavy": {"_count": 1, "clouds": {"_count": 1}}, "underground": {"_count": 1, "passage": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "passageway": {"_count": 1, "to": {"_count": 1}}, "hallway": {"_count": 3, "where": {"_count": 1}, "below": {"_count": 1}, "toward": {"_count": 1}}, "highceilinged": {"_count": 1, "twinbedded": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "house": {"_count": 1, "seemed": {"_count": 1}}, "looks": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "basement": {"_count": 1, "kitchen": {"_count": 1}}, "week": {"_count": 1, "": {"_count": 1}}, "birthday": {"_count": 1, "tea": {"_count": 1}}, "Tonks": {"_count": 1, "behind": {"_count": 1}}}, "hotel": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "over": {"_count": 1}}}, "outskirts": {"_count": 7, "of": {"_count": 7, "a": {"_count": 2}, "the": {"_count": 2}, "Hogsmeade": {"_count": 1}, "Godrics": {"_count": 1}, "Tinworth": {"_count": 1}}}, "city": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "alive": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 1, "tents": {"_count": 1}}, "with": {"_count": 1, "towering": {"_count": 1}}, "its": {"_count": 1, "towering": {"_count": 1}}}, "shared": {"_count": 18, "a": {"_count": 5, "room": {"_count": 1}, "wish": {"_count": 1}, "tent": {"_count": 1}, "damn": {"_count": 1}, "core": {"_count": 1}}, "their": {"_count": 1, "dormitory": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 2}, "Phineas": {"_count": 1}}, "this": {"_count": 1, "piece": {"_count": 1}}, "with": {"_count": 3, "Ron": {"_count": 2}, "me": {"_count": 1}}, "when": {"_count": 1, "Hermione": {"_count": 1}}, "his": {"_count": 1, "first": {"_count": 1}}, "glory": {"_count": 1, "and": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "obsession": {"_count": 1, "": {"_count": 1}}}, "twin": {"_count": 30, "beds": {"_count": 1, "and": {"_count": 1}}, "called": {"_count": 1, "after": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "did": {"_count": 1, "we": {"_count": 1}}, "brothers": {"_count": 5, "catcalling": {"_count": 1}, "away": {"_count": 1}, "": {"_count": 1}, "might": {"_count": 1}, "had": {"_count": 1}}, "girls": {"_count": 1, "Path": {"_count": 1}}, "unnatural": {"_count": 1, "little": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "shook": {"_count": 1, "Harrys": {"_count": 1}}, "at": {"_count": 1, "whom": {"_count": 1}}, "cores": {"_count": 8, "nothing": {"_count": 1}, "sure": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "is": {"_count": 1}, "told": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "bed": {"_count": 1, "farthest": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}}, "beds": {"_count": 44, "and": {"_count": 6, "damp": {"_count": 1}, "Harry": {"_count": 1}, "watching": {"_count": 1}, "Phineas": {"_count": 1}, "Luna": {"_count": 1}, "wrenched": {"_count": 1}}, "at": {"_count": 4, "last": {"_count": 1}, "night": {"_count": 1}, "the": {"_count": 2}}, "his": {"_count": 1, "back": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "?": {"_count": 1}, "!": {"_count": 1}}, "turned": {"_count": 1, "into": {"_count": 1}}, "away": {"_count": 1, "caught": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "slid": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "cupboards": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "tucking": {"_count": 1}}, "in": {"_count": 2, "fine": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "stood": {"_count": 1}}, "with": {"_count": 2, "deep": {"_count": 1}, "posters": {"_count": 1}}, "Cornelius": {"_count": 1, "knowing": {"_count": 1}}, "a": {"_count": 2, "riot": {"_count": 1}, "formidablelooking": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "than": {"_count": 1, "in": {"_count": 1}}, "along": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "give": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "await": {"_count": 1, "as": {"_count": 1}}, "headboard": {"_count": 1, "a": {"_count": 1}}}, "damp": {"_count": 37, "musty": {"_count": 1, "sheets": {"_count": 1}}, "and": {"_count": 3, "empty": {"_count": 1}, "reflected": {"_count": 1}, "enormous": {"_count": 1}}, "hut": {"_count": 1, "with": {"_count": 1}}, "grass": {"_count": 2, "right": {"_count": 1}, "reliving": {"_count": 1}}, "air": {"_count": 1, "rushed": {"_count": 1}}, "wall": {"_count": 1, "": {"_count": 1}}, "So": {"_count": 1, "light": {"_count": 1}}, "ground": {"_count": 1, "": {"_count": 1}}, "red": {"_count": 1, "envelope": {"_count": 1}}, "earth": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "compost": {"_count": 1, "until": {"_count": 1}}, "chill": {"_count": 1, "over": {"_count": 1}}, "floor": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "stone": {"_count": 1, "wall": {"_count": 1}}, "underfoot": {"_count": 1, "as": {"_count": 1}}, "derelict": {"_count": 1, "and": {"_count": 1}}, "lane": {"_count": 1, "toward": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 3}}, "dust": {"_count": 1, "and": {"_count": 1}}, "barn": {"_count": 1, "owl": {"_count": 1}}, "courtyard": {"_count": 1, "": {"_count": 1}}, "hem": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "grounds": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "Grawps": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "clothing": {"_count": 1, "many": {"_count": 1}}, "moldysmelling": {"_count": 1, "package": {"_count": 1}}, "clothes": {"_count": 1, "rose": {"_count": 1}}}, "musty": {"_count": 7, "sheets": {"_count": 1, "": {"_count": 1}}, "folds": {"_count": 1, "of": {"_count": 1}}, "house": {"_count": 1, "where": {"_count": 1}}, "interior": {"_count": 1, "of": {"_count": 1}}, "rooms": {"_count": 1, "alone": {"_count": 1}}, "old": {"_count": 1, "place": {"_count": 1}}, "room": {"_count": 1, "and": {"_count": 1}}}, "sheets": {"_count": 17, "": {"_count": 5, ".": {"_count": 5}}, "Scabbers": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 1, "found": {"_count": 1}}, "and": {"_count": 2, "next": {"_count": 1}, "blankets": {"_count": 1}}, "of": {"_count": 1, "rain": {"_count": 1}}, "the": {"_count": 1, "Dursleys": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "are": {"_count": 1, "changed": {"_count": 1}}, "chicken": {"_count": 1, "pox": {"_count": 1}}, "for": {"_count": 1, "Monsieur": {"_count": 1}}, "yesterday": {"_count": 1, "said": {"_count": 1}}}, "snored": {"_count": 5, "but": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "loudly": {"_count": 1, "Harry": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}}, "windowsill": {"_count": 18, "staring": {"_count": 1, "down": {"_count": 1}}, "which": {"_count": 2, "gave": {"_count": 1}, "had": {"_count": 1}}, "there": {"_count": 1, "came": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "look": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "looking": {"_count": 1, "out": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "Fred": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "gazing": {"_count": 1, "into": {"_count": 1}}, "smirking": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "smiling": {"_count": 1, "lazily": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "passing": {"_count": 93, "cars": {"_count": 2, "and": {"_count": 2}}, "an": {"_count": 1, "underground": {"_count": 1}}, "guard": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "the": {"_count": 14, "Gryffindor": {"_count": 1}, "giant": {"_count": 1}, "dementors": {"_count": 2}, "lights": {"_count": 1}, "tent": {"_count": 1}, "table": {"_count": 1}, "portrait": {"_count": 1}, "Weasleys": {"_count": 1}, "window": {"_count": 1}, "Hufflepuff": {"_count": 1}, "Slytherin": {"_count": 1}, "foot": {"_count": 1}, "tip": {"_count": 1}}, "through": {"_count": 2, "a": {"_count": 2}}, "around": {"_count": 3, "a": {"_count": 2}, "": {"_count": 1}}, "them": {"_count": 5, "out": {"_count": 1}, "over": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}, "on": {"_count": 1}}, "Harry": {"_count": 4, "and": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "several": {"_count": 1}}, "butterflies": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 3, "lot": {"_count": 1}, "row": {"_count": 1}, "telephone": {"_count": 1}}, "it": {"_count": 3, "on": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}}, "out": {"_count": 1, "anymore": {"_count": 1}}, "Bludger": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "Mr": {"_count": 1, "Roberts": {"_count": 1}}, "their": {"_count": 1, "table": {"_count": 1}}, "him": {"_count": 2, "were": {"_count": 1}, "a": {"_count": 1}}, "looking": {"_count": 1, "stunning": {"_count": 1}}, "reference": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 4, "vast": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "Freds": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "information": {"_count": 1, "to": {"_count": 1}}, "minute": {"_count": 1, "as": {"_count": 1}}, "wizards": {"_count": 1, "nodded": {"_count": 1}}, "beneath": {"_count": 1, "ominously": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 1}, "ancient": {"_count": 1}, "Dark": {"_count": 1}, "my": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "Educational": {"_count": 1}}, "back": {"_count": 1, "their": {"_count": 1}}, "up": {"_count": 1, "dusty": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "very": {"_count": 1, "close": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "alarmingly": {"_count": 1, "fast": {"_count": 1}}, "his": {"_count": 1, "message": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "Muggles": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "carriage": {"_count": 1}}, "fourth": {"_count": 1, "year": {"_count": 1}}, "elf": {"_count": 1, "and": {"_count": 1}}, "years": {"_count": 1, "and": {"_count": 1}}, "nobody": {"_count": 2, "but": {"_count": 2}}, "light": {"_count": 1, "of": {"_count": 1}}, "Scrimgeour": {"_count": 1, "going": {"_count": 1}}, "secret": {"_count": 1, "messages": {"_count": 1}}, "tray": {"_count": 1, "and": {"_count": 1}}, "waiter": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "hours": {"_count": 1, "until": {"_count": 1}}, "from": {"_count": 1, "wizard": {"_count": 1}}}, "wondering": {"_count": 117, "": {"_count": 4, ".": {"_count": 4}}, "if": {"_count": 8, "the": {"_count": 3}, "you": {"_count": 2}, "I": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}}, "where": {"_count": 11, "the": {"_count": 1}, "Voldemort": {"_count": 1}, "they": {"_count": 1}, "Justin": {"_count": 1}, "hed": {"_count": 1}, "Sirius": {"_count": 1}, "Pettigrew": {"_count": 1}, "you": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "what": {"_count": 20, "on": {"_count": 4}, "a": {"_count": 1}, "could": {"_count": 1}, "to": {"_count": 1}, "was": {"_count": 5}, "horrors": {"_count": 1}, "it": {"_count": 2}, "fresh": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}, "would": {"_count": 1}}, "which": {"_count": 1, "one": {"_count": 1}}, "how": {"_count": 9, "much": {"_count": 2}, "best": {"_count": 3}, "Umbridge": {"_count": 1}, "Malfoy": {"_count": 1}, "do": {"_count": 1}, "he": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 2}, "some": {"_count": 1}}, "whether": {"_count": 36, "theyd": {"_count": 1}, "I": {"_count": 5}, "to": {"_count": 2}, "Hagrid": {"_count": 1}, "he": {"_count": 11}, "Fred": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 3}, "Mr": {"_count": 1}, "Mundungus": {"_count": 1}, "it": {"_count": 2}, "you": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 2}, "they": {"_count": 1}, "Kreacher": {"_count": 1}}, "when": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 2, "same": {"_count": 2}}, "perhaps": {"_count": 1, "how": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "assigned": {"_count": 1}}, "why": {"_count": 5, "he": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 2}, "anyone": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "about": {"_count": 2, "that": {"_count": 2}}, "Professor": {"_count": 1, "whether": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 2, "said": {"_count": 1}, "too": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "loudly": {"_count": 1, "whether": {"_count": 1}}, "and": {"_count": 1, "Gryffindor": {"_count": 1}}, "wondering": {"_count": 1, "why": {"_count": 1}}}, "stale": {"_count": 8, "cornflakes": {"_count": 1, "and": {"_count": 1}}, "cake": {"_count": 1, "all": {"_count": 1}}, "tobacco": {"_count": 1, "filled": {"_count": 1}}, "drink": {"_count": 1, "about": {"_count": 1}}, "bread": {"_count": 1, "crusts": {"_count": 1}}, "sweat": {"_count": 1, "and": {"_count": 1}}, "biscuits": {"_count": 1, "her": {"_count": 1}}, "food": {"_count": 1, "intensified": {"_count": 1}}}, "cornflakes": {"_count": 4, "and": {"_count": 2, "cold": {"_count": 1}, "Ron": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "tinned": {"_count": 2, "tomatoes": {"_count": 1, "on": {"_count": 1}}, "pears": {"_count": 1, "": {"_count": 1}}}, "tomatoes": {"_count": 2, "on": {"_count": 1, "toast": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "toast": {"_count": 38, "for": {"_count": 1, "breakfast": {"_count": 1}}, "coconut": {"_count": 1, "baked": {"_count": 1}}, "before": {"_count": 1, "going": {"_count": 1}}, "wheedled": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 6, "dishes": {"_count": 1}, "marmalade": {"_count": 2}, "then": {"_count": 1}, "getting": {"_count": 1}, "Hermione": {"_count": 1}}, "he": {"_count": 2, "got": {"_count": 1}, "was": {"_count": 1}}, "the": {"_count": 1, "rest": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "examining": {"_count": 1}}, "which": {"_count": 1, "she": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "thanks": {"_count": 1, "said": {"_count": 1}}, "is": {"_count": 1, "in": {"_count": 1}}, "toward": {"_count": 1, "her": {"_count": 1}}, "slipping": {"_count": 1, "from": {"_count": 1}}, "Harry": {"_count": 1, "hurried": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "had": {"_count": 1, "already": {"_count": 1}}}, "owner": {"_count": 31, "of": {"_count": 6, "the": {"_count": 4}, "Riddles": {"_count": 1}, "number": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "Harry": {"_count": 1, "caught": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 4, "had": {"_count": 1}, "scribbled": {"_count": 1}, "made": {"_count": 2}}, "was": {"_count": 1, "lying": {"_count": 1}}, "said": {"_count": 1, "Now": {"_count": 1}}, "who": {"_count": 1, "for": {"_count": 1}}, "vanishing": {"_count": 1, "on": {"_count": 1}}, "be": {"_count": 1, "right": {"_count": 1}}, "pocketed": {"_count": 1, "the": {"_count": 1}}, "can": {"_count": 1, "get": {"_count": 1}}, "a": {"_count": 1, "wand": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "Pettigrew": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "take": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}}, "Scuse": {"_count": 2, "me": {"_count": 1, "but": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}}, "undred": {"_count": 1, "of": {"_count": 1, "these": {"_count": 1}}}, "desk": {"_count": 273, "": {"_count": 89, ".": {"_count": 89}}, "into": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 37, "hovered": {"_count": 1}, "lifted": {"_count": 1}, "began": {"_count": 3}, "stood": {"_count": 1}, "sitting": {"_count": 2}, "fixed": {"_count": 1}, "stammered": {"_count": 1}, "laid": {"_count": 1}, "took": {"_count": 1}, "said": {"_count": 1}, "starting": {"_count": 1}, "looked": {"_count": 1}, "my": {"_count": 1}, "watched": {"_count": 2}, "sat": {"_count": 3}, "told": {"_count": 1}, "back": {"_count": 1}, "staring": {"_count": 1}, "held": {"_count": 1}, "faced": {"_count": 1}, "gazed": {"_count": 1}, "opening": {"_count": 1}, "wriggled": {"_count": 1}, "smashed": {"_count": 1}, "appeared": {"_count": 1}, "disappeared": {"_count": 1}, "again": {"_count": 1}, "indicating": {"_count": 1}, "emptying": {"_count": 1}, "pointed": {"_count": 1}, "poured": {"_count": 1}}, "to": {"_count": 5, "sit": {"_count": 1}, "examine": {"_count": 1}, "get": {"_count": 1}, "face": {"_count": 1}, "look": {"_count": 1}}, "chair": {"_count": 2, "next": {"_count": 1}, "and": {"_count": 1}}, "lamp": {"_count": 1, "and": {"_count": 1}}, "narrowly": {"_count": 1, "avoiding": {"_count": 1}}, "drawer": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "snatched": {"_count": 1, "up": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 2, "piece": {"_count": 1}, "good": {"_count": 1}}, "some": {"_count": 1, "weighted": {"_count": 1}}, "lifted": {"_count": 1, "the": {"_count": 1}}, "sat": {"_count": 4, "down": {"_count": 4}}, "picked": {"_count": 1, "up": {"_count": 1}}, "for": {"_count": 6, "me": {"_count": 1}, "the": {"_count": 1}, "testing": {"_count": 1}, "support": {"_count": 2}, "marking": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "his": {"_count": 4, "throat": {"_count": 1}, "expression": {"_count": 1}, "wand": {"_count": 1}, "half": {"_count": 1}}, "he": {"_count": 6, "had": {"_count": 1}, "pulled": {"_count": 1}, "looked": {"_count": 1}, "nudged": {"_count": 1}, "leaned": {"_count": 1}, "shouted": {"_count": 1}}, "hell": {"_count": 1, "like": {"_count": 1}}, "glinting": {"_count": 1, "in": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 5, "the": {"_count": 5}}, "was": {"_count": 3, "a": {"_count": 1}, "Dumbledore": {"_count": 1}, "covered": {"_count": 1}}, "drawers": {"_count": 2, "and": {"_count": 2}}, "that": {"_count": 4, "was": {"_count": 1}, "Dumbledore": {"_count": 1}, "memory": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 1, "crumpled": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}, "took": {"_count": 2, "out": {"_count": 1}, "the": {"_count": 1}}, "where": {"_count": 4, "it": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}}, "as": {"_count": 3, "possible": {"_count": 1}, "the": {"_count": 2}}, "in": {"_count": 9, "front": {"_count": 4}, "his": {"_count": 2}, "the": {"_count": 3}}, "onto": {"_count": 2, "the": {"_count": 2}}, "knocking": {"_count": 1, "it": {"_count": 1}}, "stood": {"_count": 2, "what": {"_count": 1}, "facing": {"_count": 1}}, "Nevilles": {"_count": 1, "still": {"_count": 1}}, "while": {"_count": 2, "they": {"_count": 1}, "Mr": {"_count": 1}}, "wearing": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "placed": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "unscrewed": {"_count": 1, "it": {"_count": 1}}, "job": {"_count": 1, "so": {"_count": 1}}, "Moody": {"_count": 1, "had": {"_count": 1}}, "which": {"_count": 4, "is": {"_count": 2}, "burst": {"_count": 1}, "was": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "which": {"_count": 1}, "four": {"_count": 1}}, "dictating": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 3, "filled": {"_count": 1}, "it": {"_count": 1}, "great": {"_count": 1}}, "observing": {"_count": 1, "them": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "casting": {"_count": 1}}, "dipped": {"_count": 1, "her": {"_count": 1}}, "frowning": {"_count": 1, "at": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "marked": {"_count": 1, "inquiries": {"_count": 1}}, "holding": {"_count": 1, "his": {"_count": 1}}, "however": {"_count": 1, "where": {"_count": 1}}, "between": {"_count": 4, "them": {"_count": 4}}, "had": {"_count": 1, "been": {"_count": 1}}, "busily": {"_count": 1, "scribbling": {"_count": 1}}, "thinking": {"_count": 1, "hard": {"_count": 1}}, "beside": {"_count": 3, "her": {"_count": 1}, "Professor": {"_count": 1}, "his": {"_count": 1}}, "lowering": {"_count": 1, "his": {"_count": 1}}, "slid": {"_count": 1, "over": {"_count": 1}}, "illuminate": {"_count": 1, "a": {"_count": 1}}, "straightening": {"_count": 1, "his": {"_count": 1}}, "Fudge": {"_count": 1, "continued": {"_count": 1}}, "rips": {"_count": 1, "cracks": {"_count": 1}}, "Hermione": {"_count": 1, "hastily": {"_count": 1}}, "past": {"_count": 1, "Harry": {"_count": 1}}, "eyeing": {"_count": 1, "him": {"_count": 1}}, "alone": {"_count": 1, "except": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "chimed": {"_count": 2, "eleven": {"_count": 2}}, "before": {"_count": 2, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "showed": {"_count": 1, "no": {"_count": 1}}, "Harry": {"_count": 1, "set": {"_count": 1}}, "apparently": {"_count": 1, "semiconscious": {"_count": 1}}, "from": {"_count": 1, "Dumbledore": {"_count": 1}}, "touched": {"_count": 1, "it": {"_count": 1}}}, "Room": {"_count": 72, "1": {"_count": 1, "7": {"_count": 1}}, "elevens": {"_count": 1, "free": {"_count": 1}}, "sir": {"_count": 1, "or": {"_count": 1}}, "of": {"_count": 64, "Requirement": {"_count": 60}, "Requirements": {"_count": 2}, "You": {"_count": 1}, "Hidden": {"_count": 1}}, "swung": {"_count": 1, "shut": {"_count": 1}}, "and": {"_count": 2, "sure": {"_count": 1}, "Harry": {"_count": 1}}, "descending": {"_count": 1, "toward": {"_count": 1}}, "stood": {"_count": 1, "Albus": {"_count": 1}}}, "1": {"_count": 30, "7": {"_count": 1, "Railview": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "by": {"_count": 1, "Miranda": {"_count": 1}}, "wand": {"_count": 1, "1": {"_count": 1}}, "cauldron": {"_count": 1, "pewter": {"_count": 1}}, "set": {"_count": 2, "glass": {"_count": 1}, "brass": {"_count": 1}}, "telescope": {"_count": 1, "1": {"_count": 1}}, "July": {"_count": 1, "widely": {"_count": 1}}, "ST": {"_count": 1, "OCTOBER": {"_count": 1}}, "492": {"_count": 1, "Harry": {"_count": 1}}, "oclock": {"_count": 2, "Charms": {"_count": 1}, "Ancient": {"_count": 1}}, "Harry": {"_count": 1, "yelled": {"_count": 1}}, "am": {"_count": 1, "so": {"_count": 1}}, "will": {"_count": 2, "not": {"_count": 1}, "contact": {"_count": 1}}, "Correct": {"_count": 1, "said": {"_count": 1}}, "5": {"_count": 1, "caused": {"_count": 1}}, "749": {"_count": 1, "and": {"_count": 1}}, "MILE": {"_count": 1, "": {"_count": 1}}, "945": {"_count": 1, "": {"_count": 1}}, "emblazoned": {"_count": 1, "across": {"_count": 1}}, "981": {"_count": 1, "Lily": {"_count": 1}}, "tell": {"_count": 1, "you": {"_count": 1}}}, "7": {"_count": 11, "Railview": {"_count": 1, "Hotel": {"_count": 1}}, "THE": {"_count": 5, "SORTING": {"_count": 1}, "BOGGART": {"_count": 1}, "MINISTRY": {"_count": 1}, "SLUG": {"_count": 1}, "WILL": {"_count": 1}}, "MUDBLOODS": {"_count": 1, "AND": {"_count": 1}}, "think": {"_count": 1, "Im": {"_count": 1}}, "BAGMAN": {"_count": 1, "AND": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "welcome": {"_count": 1, "the": {"_count": 1}}}, "Railview": {"_count": 1, "Hotel": {"_count": 1, "Cokeworth": {"_count": 1}}}, "Hotel": {"_count": 1, "Cokeworth": {"_count": 1, "Harry": {"_count": 1}}}, "Cokeworth": {"_count": 1, "Harry": {"_count": 1, "made": {"_count": 1}}}, "dining": {"_count": 14, "room": {"_count": 9, "": {"_count": 1}, "Mrs": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "promised": {"_count": 1}, "window": {"_count": 1}, "before": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}}, "tables": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "surely": {"_count": 1, "it": {"_count": 1}}, "chamber": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "sitting": {"_count": 1}}}, "Wouldnt": {"_count": 21, "it": {"_count": 5, "be": {"_count": 4}, "have": {"_count": 1}}, "be": {"_count": 1, "doing": {"_count": 1}}, "dream": {"_count": 1, "of": {"_count": 1}}, "have": {"_count": 4, "done": {"_count": 1}, "had": {"_count": 1}, "dreamed": {"_count": 1}, "known": {"_count": 1}}, "buy": {"_count": 1, "tickets": {"_count": 1}}, "Moody": {"_count": 1, "and": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "they": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "be": {"_count": 1}}, "ask": {"_count": 1, "but": {"_count": 1}}, "hear": {"_count": 1, "a": {"_count": 1}}, "make": {"_count": 1, "any": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "spy": {"_count": 1, "on": {"_count": 1}}}, "timidly": {"_count": 13, "hours": {"_count": 1, "later": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "as": {"_count": 1, "they": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "Is": {"_count": 1, "it": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "none": {"_count": 128, "of": {"_count": 88, "them": {"_count": 30}, "Hagrid": {"_count": 1}, "the": {"_count": 19}, "your": {"_count": 10}, "this": {"_count": 2}, "you": {"_count": 3}, "which": {"_count": 3}, "zis": {"_count": 1}, "his": {"_count": 2}, "yous": {"_count": 1}, "us": {"_count": 7}, "whom": {"_count": 2}, "em": {"_count": 3}, "these": {"_count": 1}, "it": {"_count": 2}, "our": {"_count": 1}}, "For": {"_count": 1, "Im": {"_count": 1}}, "other": {"_count": 10, "than": {"_count": 10}}, "would": {"_count": 1, "be": {"_count": 1}}, "here": {"_count": 3, "are": {"_count": 3}}, "more": {"_count": 2, "curious": {"_count": 1}, "so": {"_count": 1}}, "as": {"_count": 2, "large": {"_count": 1}, "much": {"_count": 1}}, "at": {"_count": 5, "all": {"_count": 5}}, "the": {"_count": 1, "wiser": {"_count": 1}}, "too": {"_count": 3, "skilled": {"_count": 1}, "reliable": {"_count": 1}, "gently": {"_count": 1}}, "but": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 2}}, "appeared": {"_count": 1, "he": {"_count": 1}}, "came": {"_count": 3, "": {"_count": 3}}, "was": {"_count": 1, "recognizable": {"_count": 1}}, "will": {"_count": 1, "come": {"_count": 1}}, "to": {"_count": 1, "know": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "shall": {"_count": 1, "be": {"_count": 1}}}, "forest": {"_count": 208, "got": {"_count": 1, "out": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "its": {"_count": 1}}, "": {"_count": 63, ".": {"_count": 50}, "?": {"_count": 10}, "!": {"_count": 3}}, "whose": {"_count": 1, "trees": {"_count": 1}}, "and": {"_count": 11, "out": {"_count": 2}, "find": {"_count": 1}, "lifted": {"_count": 1}, "disappeared": {"_count": 1}, "up": {"_count": 1}, "I": {"_count": 1}, "call": {"_count": 1}, "retrieved": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "while": {"_count": 1, "everyone": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "youre": {"_count": 1, "going": {"_count": 1}}, "he": {"_count": 5, "said": {"_count": 1}, "blurted": {"_count": 1}, "had": {"_count": 1}, "wants": {"_count": 2}}, "thatll": {"_count": 1, "hurt": {"_count": 1}}, "was": {"_count": 1, "black": {"_count": 1}}, "hides": {"_count": 1, "many": {"_count": 1}}, "with": {"_count": 7, "Malfoy": {"_count": 1}, "Hagrid": {"_count": 1}, "Viktor": {"_count": 1}, "him": {"_count": 1}, "Dolores": {"_count": 1}, "the": {"_count": 1}, "no": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 2, "not": {"_count": 1}, "it": {"_count": 1}}, "the": {"_count": 4, "better": {"_count": 1}, "other": {"_count": 1}, "first": {"_count": 1}, "only": {"_count": 1}}, "Bane": {"_count": 1, "yes": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "or": {"_count": 1, "because": {"_count": 1}}, "didnt": {"_count": 1, "answer": {"_count": 1}}, "of": {"_count": 4, "pointed": {"_count": 1}, "chair": {"_count": 1}, "bows": {"_count": 1}, "knees": {"_count": 1}}, "before": {"_count": 4, "": {"_count": 1}, "the": {"_count": 1}, "now": {"_count": 1}, "they": {"_count": 1}}, "path": {"_count": 2, "last": {"_count": 1}, "": {"_count": 1}}, "floor": {"_count": 9, "right": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 3}, "trembling": {"_count": 1}, "he": {"_count": 1}, "apparently": {"_count": 1}, "it": {"_count": 1}}, "ever": {"_count": 2, "since": {"_count": 2}}, "branches": {"_count": 1, "whipping": {"_count": 1}}, "that": {"_count": 5, "Aragog": {"_count": 1}, "the": {"_count": 2}, "they": {"_count": 1}, "it": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "groaned": {"_count": 1}}, "his": {"_count": 1, "Firebolt": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 1}, "Hagrid": {"_count": 1}, "that": {"_count": 1}}, "Sirius": {"_count": 1, "hes": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 2, "right": {"_count": 1}, "day": {"_count": 1}}, "in": {"_count": 3, "plain": {"_count": 1}, "the": {"_count": 1}, "Albania": {"_count": 1}}, "Macnair": {"_count": 1, "if": {"_count": 1}}, "darkness": {"_count": 1, "falling": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "together": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 2, "when": {"_count": 1}, "there": {"_count": 1}}, "talking": {"_count": 1, "hard": {"_count": 1}}, "where": {"_count": 5, "a": {"_count": 1}, "he": {"_count": 3}, "I": {"_count": 1}}, "just": {"_count": 1, "before": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "instinctively": {"_count": 1, "grabbed": {"_count": 1}}, "Where": {"_count": 1, "are": {"_count": 1}}, "I": {"_count": 2, "had": {"_count": 1}, "couldn": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "doubled": {"_count": 1, "around": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "for": {"_count": 2, "Care": {"_count": 1}, "you": {"_count": 1}}, "fer": {"_count": 1, "yer": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "clearing": {"_count": 2, "he": {"_count": 1}, "by": {"_count": 1}}, "wasn": {"_count": 1, "it": {"_count": 1}}, "without": {"_count": 2, "meeting": {"_count": 1}, "wands": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "if": {"_count": 1, "its": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 2, "yours": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "doesnt": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 2, "rescue": {"_count": 1}, "distant": {"_count": 1}}, "possibly": {"_count": 1, "even": {"_count": 1}}, "said": {"_count": 1, "Slughorn": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "she": {"_count": 1, "led": {"_count": 1}}, "pool": {"_count": 2, "": {"_count": 1}, "this": {"_count": 1}}, "had": {"_count": 2, "had": {"_count": 1}, "been": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "toward": {"_count": 1, "me": {"_count": 1}}, "Grawpy": {"_count": 1, "was": {"_count": 1}}, "brandishing": {"_count": 1, "a": {"_count": 1}}, "well": {"_count": 1, "need": {"_count": 1}}, "lifted": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "much": {"_count": 1}}, "filled": {"_count": 1, "his": {"_count": 1}}}, "plowed": {"_count": 5, "field": {"_count": 1, "halfway": {"_count": 1}}, "on": {"_count": 3, "with": {"_count": 1}, "So": {"_count": 1}, "I": {"_count": 1}}, "her": {"_count": 1, "way": {"_count": 1}}}, "field": {"_count": 136, "halfway": {"_count": 1, "across": {"_count": 1}}, "at": {"_count": 4, "seven": {"_count": 1}, "such": {"_count": 1}, "the": {"_count": 1}, "dusk": {"_count": 1}}, "where": {"_count": 1, "hed": {"_count": 1}}, "": {"_count": 36, ".": {"_count": 35}, "!": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "were": {"_count": 1, "three": {"_count": 1}}, "bundled": {"_count": 1, "up": {"_count": 1}}, "to": {"_count": 7, "loud": {"_count": 1}, "tumultuous": {"_count": 2}, "sit": {"_count": 1}, "a": {"_count": 1}, "examine": {"_count": 1}, "separate": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 7, "OUCH": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "here": {"_count": 1}, "Ministry": {"_count": 1}, "Harrys": {"_count": 1}, "began": {"_count": 1}}, "ahead": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 3, "all": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "he": {"_count": 3, "saw": {"_count": 2}, "could": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "started": {"_count": 1, "walking": {"_count": 1}}, "far": {"_count": 1, "below": {"_count": 1}}, "in": {"_count": 3, "fifteen": {"_count": 1}, "the": {"_count": 1}, "Surrey": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "broomsticks": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 2, "today": {"_count": 1}, "the": {"_count": 1}}, "owinq": {"_count": 1, "to": {"_count": 1}}, "invasion": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "roar": {"_count": 1}}, "with": {"_count": 4, "someone": {"_count": 1}, "only": {"_count": 1}, "his": {"_count": 1}, "Krum": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "two": {"_count": 1, "Beaters": {"_count": 1}}, "just": {"_count": 1, "visible": {"_count": 1}}, "battling": {"_count": 1, "through": {"_count": 1}}, "heads": {"_count": 1, "bowed": {"_count": 1}}, "wearing": {"_count": 1, "canary": {"_count": 1}}, "past": {"_count": 1, "blurred": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 2, "at": {"_count": 1}, "he": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "went": {"_count": 1, "wild": {"_count": 1}}, "frantically": {"_count": 1, "a": {"_count": 1}}, "Ron": {"_count": 1, "in": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "before": {"_count": 1, "anyone": {"_count": 1}}, "staring": {"_count": 1, "around": {"_count": 1}}, "WHAM": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "sea": {"_count": 1}, "veela": {"_count": 1}}, "THAT": {"_count": 1, "WAS": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "day": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "you": {"_count": 1, "come": {"_count": 1}}, "toward": {"_count": 2, "a": {"_count": 1}, "them": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "between": {"_count": 1, "long": {"_count": 1}}, "stood": {"_count": 2, "an": {"_count": 1}, "three": {"_count": 1}}, "is": {"_count": 1, "just": {"_count": 1}}, "looked": {"_count": 1, "smooth": {"_count": 1}}, "connecting": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "an": {"_count": 1}}, "Harry": {"_count": 1, "spun": {"_count": 1}}, "leapt": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "fingers": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "tonight": {"_count": 1, "at": {"_count": 1}}, "was": {"_count": 1, "no": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 2, "invisibility": {"_count": 1}, "vision": {"_count": 1}}, "belonging": {"_count": 1, "to": {"_count": 1}}}, "halfway": {"_count": 108, "across": {"_count": 11, "a": {"_count": 1}, "the": {"_count": 9}, "it": {"_count": 1}}, "up": {"_count": 15, "that": {"_count": 1}, "loosening": {"_count": 1}, "the": {"_count": 13}}, "to": {"_count": 5, "his": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "Azkaban": {"_count": 1}, "Hagrid": {"_count": 1}}, "through": {"_count": 28, "unwrapping": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}, "transforming": {"_count": 1}, "a": {"_count": 5}, "the": {"_count": 5}, "double": {"_count": 1}, "their": {"_count": 2}, "and": {"_count": 1}, "January": {"_count": 1}, "lunch": {"_count": 1}, "opening": {"_count": 1}, "your": {"_count": 1}, "testing": {"_count": 1}, "an": {"_count": 2}, "her": {"_count": 1}, "pulling": {"_count": 1}, "but": {"_count": 1}}, "toward": {"_count": 8, "it": {"_count": 3}, "the": {"_count": 3}, "picking": {"_count": 1}, "Slughorn": {"_count": 1}}, "down": {"_count": 16, "the": {"_count": 13}, "his": {"_count": 2}, "and": {"_count": 1}}, "between": {"_count": 4, "disapproval": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "Cattermole": {"_count": 1}}, "along": {"_count": 11, "the": {"_count": 6}, "and": {"_count": 1}, "an": {"_count": 2}, "he": {"_count": 1}, "Magnolia": {"_count": 1}}, "there": {"_count": 1, "he": {"_count": 1}}, "out": {"_count": 4, "ter": {"_count": 1}, "of": {"_count": 3}}, "decent": {"_count": 1, "they": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "stage": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "suspension": {"_count": 4, "bridge": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "this": {"_count": 1}, "Hogwarts": {"_count": 1}}}, "bridge": {"_count": 11, "and": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 6, "his": {"_count": 4}, "her": {"_count": 1}, "Mundunguss": {"_count": 1}}, "collapsing": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "fewer": {"_count": 1}}, "the": {"_count": 1, "distance": {"_count": 1}}, "appear": {"_count": 1, "across": {"_count": 1}}}, "multilevel": {"_count": 1, "parking": {"_count": 1, "garage": {"_count": 1}}}, "garage": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "without": {"_count": 1, "Mum": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "fence": {"_count": 1}}, "door": {"_count": 1, "gleamed": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "walls": {"_count": 1, "on": {"_count": 1}}}, "Daddys": {"_count": 6, "gone": {"_count": 1, "mad": {"_count": 1}}, "wand": {"_count": 1, "yecchh": {"_count": 1}}, "just": {"_count": 1, "gone": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Wrackspurt": {"_count": 1, "siphons": {"_count": 1}}}, "hasnt": {"_count": 126, "he": {"_count": 11, "": {"_count": 7}, "shown": {"_count": 1}, "and": {"_count": 2}, "been": {"_count": 1}}, "got": {"_count": 24, "much": {"_count": 1}, "an": {"_count": 1}, "anything": {"_count": 4}, "a": {"_count": 7}, "any": {"_count": 2}, "past": {"_count": 1}, "feelings": {"_count": 1}, "wind": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "\u2018sneak": {"_count": 1}, "I": {"_count": 1}, "over": {"_count": 1}, "anybody": {"_count": 1}}, "had": {"_count": 7, "much": {"_count": 1}, "a": {"_count": 2}, "to": {"_count": 2}, "the": {"_count": 2}}, "gone": {"_count": 4, "has": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 11, "": {"_count": 9}, "being": {"_count": 1}, "been": {"_count": 1}}, "reported": {"_count": 1, "all": {"_count": 1}}, "studied": {"_count": 1, "": {"_count": 1}}, "been": {"_count": 20, "": {"_count": 1}, "to": {"_count": 1}, "seen": {"_count": 3}, "any": {"_count": 1}, "attacked": {"_count": 2}, "easy": {"_count": 3}, "anything": {"_count": 2}, "asking": {"_count": 1}, "sacked": {"_count": 1}, "out": {"_count": 1}, "much": {"_count": 1}, "doing": {"_count": 1}, "near": {"_count": 1}, "slept": {"_count": 1}}, "put": {"_count": 1, "all": {"_count": 1}}, "died": {"_count": 1, "has": {"_count": 1}}, "done": {"_count": 2, "anything": {"_count": 2}}, "won": {"_count": 1, "for": {"_count": 1}}, "even": {"_count": 2, "taught": {"_count": 1}, "got": {"_count": 1}}, "hosted": {"_count": 1, "the": {"_count": 1}}, "arrived": {"_count": 1, "with": {"_count": 1}}, "found": {"_count": 5, "out": {"_count": 2}, "work": {"_count": 1}, "": {"_count": 1}, "any": {"_count": 1}}, "discovered": {"_count": 1, "six": {"_count": 1}}, "asked": {"_count": 3, "me": {"_count": 2}, "for": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "she": {"_count": 2, "": {"_count": 2}}, "written": {"_count": 1, "anything": {"_count": 1}}, "happened": {"_count": 1, "": {"_count": 1}}, "given": {"_count": 1, "up": {"_count": 1}}, "cleaned": {"_count": 1, "anything": {"_count": 1}}, "stopped": {"_count": 1, "raging": {"_count": 1}}, "forgiven": {"_count": 1, "him": {"_count": 1}}, "shifted": {"_count": 1, "his": {"_count": 1}}, "seen": {"_count": 1, "daylight": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 2}, "thank": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}}, "peaked": {"_count": 1, "too": {"_count": 1}}, "snapped": {"_count": 1, "Hermione": {"_count": 1}}, "told": {"_count": 1, "you": {"_count": 1}}, "inspected": {"_count": 1, "Binns": {"_count": 1}}, "ever": {"_count": 1, "possessed": {"_count": 1}}, "Dumbledore": {"_count": 1, "ever": {"_count": 1}}, "really": {"_count": 1, "started": {"_count": 1}}, "a": {"_count": 1, "former": {"_count": 1}}, "heard": {"_count": 1, "Im": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "chosen": {"_count": 1, "them": {"_count": 1}}, "exactly": {"_count": 1, "been": {"_count": 1}}, "backfired": {"_count": 1, "on": {"_count": 1}}}, "dully": {"_count": 24, "late": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "but": {"_count": 1, "hes": {"_count": 1}}, "hed": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "she": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "looking": {"_count": 1, "back": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "whether": {"_count": 1, "there": {"_count": 1}}, "sinking": {"_count": 1, "into": {"_count": 1}}, "pulling": {"_count": 1, "off": {"_count": 1}}}, "parked": {"_count": 7, "at": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cars": {"_count": 1, "": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "two": {"_count": 1, "hundred": {"_count": 1}}, "car": {"_count": 1, "and": {"_count": 1}}}, "coast": {"_count": 15, "locked": {"_count": 1, "them": {"_count": 1}}, "was": {"_count": 8, "clear": {"_count": 7}, "still": {"_count": 1}}, "is": {"_count": 2, "clear": {"_count": 2}}, "many": {"_count": 1, "miles": {"_count": 1}}, "of": {"_count": 1, "England": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "sail": {"_count": 1, "beneath": {"_count": 1}}}, "Great": {"_count": 246, "drops": {"_count": 1, "beat": {"_count": 1}}, "Humbertos": {"_count": 1, "on": {"_count": 1}}, "man": {"_count": 4, "Dumbledore": {"_count": 4}}, "idea": {"_count": 3, "though": {"_count": 1}, "said": {"_count": 2}}, "Wizarding": {"_count": 1, "Events": {"_count": 1}}, "Hall": {"_count": 206, "you": {"_count": 1}, "": {"_count": 53}, "didnt": {"_count": 1}, "and": {"_count": 9}, "for": {"_count": 14}, "during": {"_count": 2}, "as": {"_count": 2}, "where": {"_count": 8}, "was": {"_count": 9}, "had": {"_count": 5}, "looks": {"_count": 1}, "might": {"_count": 1}, "sleeping": {"_count": 1}, "but": {"_count": 3}, "in": {"_count": 4}, "which": {"_count": 3}, "they": {"_count": 2}, "looked": {"_count": 3}, "Harry": {"_count": 2}, "all": {"_count": 1}, "slightly": {"_count": 1}, "with": {"_count": 6}, "behind": {"_count": 2}, "instead": {"_count": 2}, "stood": {"_count": 1}, "at": {"_count": 4}, "to": {"_count": 3}, "opened": {"_count": 3}, "heads": {"_count": 1}, "carrying": {"_count": 1}, "the": {"_count": 2}, "everyone": {"_count": 1}, "she": {"_count": 1}, "come": {"_count": 1}, "rang": {"_count": 1}, "banged": {"_count": 1}, "swiveled": {"_count": 1}, "when": {"_count": 2}, "seemed": {"_count": 2}, "it": {"_count": 2}, "above": {"_count": 1}, "were": {"_count": 3}, "would": {"_count": 1}, "applauded": {"_count": 1}, "after": {"_count": 2}, "cradling": {"_count": 1}, "from": {"_count": 1}, "followed": {"_count": 1}, "faded": {"_count": 1}, "students": {"_count": 1}, "alone": {"_count": 1}, "looking": {"_count": 2}, "shortly": {"_count": 1}, "that": {"_count": 2}, "however": {"_count": 1}, "turned": {"_count": 1}, "Hogwarts": {"_count": 1}, "clutching": {"_count": 1}, "erupted": {"_count": 1}, "then": {"_count": 2}, "halfway": {"_count": 1}, "toward": {"_count": 1}, "very": {"_count": 1}, "garlands": {"_count": 1}, "eating": {"_count": 1}, "he": {"_count": 1}, "already": {"_count": 2}, "subdued": {"_count": 1}, "Filius": {"_count": 1}, "I": {"_count": 1}, "by": {"_count": 1}, "again": {"_count": 1}, "forced": {"_count": 1}, "still": {"_count": 1}, "became": {"_count": 1}, "blazed": {"_count": 1}}, "Uncle": {"_count": 3, "Algie": {"_count": 3}}, "Auntie": {"_count": 1, "Enid": {"_count": 1}}, "food": {"_count": 1, "isnt": {"_count": 1}}, "Wizards": {"_count": 1, "of": {"_count": 1}}, "Britain": {"_count": 1, "and": {"_count": 1}}, "Scott": {"_count": 2, "look": {"_count": 1}, "he": {"_count": 1}}, "capture": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 7, "Ron": {"_count": 2}, "Harry": {"_count": 5}}, "lesson": {"_count": 1, "cornin": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "Grays": {"_count": 1, "right": {"_count": 1}}, "Hangleton": {"_count": 1, "in": {"_count": 1}}, "long": {"_count": 1, "price": {"_count": 1}}, "billowing": {"_count": 1, "clouds": {"_count": 1}}, "tall": {"_count": 1, "flaming": {"_count": 1}}, "Saves": {"_count": 1, "Made": {"_count": 1}}, "fat": {"_count": 1, "tears": {"_count": 1}}, "Halls": {"_count": 1, "twelve": {"_count": 1}}, "chunks": {"_count": 1, "were": {"_count": 1}}}, "beat": {"_count": 60, "on": {"_count": 1, "the": {"_count": 1}}, "Malfoy": {"_count": 2, "facetoface": {"_count": 1}, "in": {"_count": 1}}, "the": {"_count": 6, "Bludger": {"_count": 1}, "Bludgers": {"_count": 1}, "dragon": {"_count": 1}, "floor": {"_count": 1}, "familiar": {"_count": 1}, "borrowed": {"_count": 1}}, "you": {"_count": 4, "to": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 1}, "": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "Slytherin": {"_count": 1, "so": {"_count": 1}}, "uncomfortably": {"_count": 1, "on": {"_count": 1}}, "Ravenclaw": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "by": {"_count": 1}}, "yourself": {"_count": 1, "up": {"_count": 1}}, "him": {"_count": 6, "in": {"_count": 2}, "down": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "a": {"_count": 2, "Firebolt": {"_count": 1}, "little": {"_count": 1}}, "em": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "very": {"_count": 2, "fast": {"_count": 2}}, "his": {"_count": 1, "wings": {"_count": 1}}, "Harry": {"_count": 1, "Potterl": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 1}, "away": {"_count": 1}, "back": {"_count": 1}}, "Gryffindor": {"_count": 1, "at": {"_count": 1}}, "them": {"_count": 1, "so": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "me": {"_count": 1, "in": {"_count": 1}}, "fast": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "off": {"_count": 1, "midges": {"_count": 1}}, "himself": {"_count": 1, "up": {"_count": 1}}, "Harrys": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "woken": {"_count": 1}}, "faster": {"_count": 1, "upon": {"_count": 1}}, "out": {"_count": 1, "various": {"_count": 1}}, "time": {"_count": 1, "with": {"_count": 1}}, "Voldemort": {"_count": 1, "to": {"_count": 1}}, "Voldemorts": {"_count": 1, "in": {"_count": 1}}, "any": {"_count": 1, "other": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Dumbledorel": {"_count": 1, "Dumbledores": {"_count": 1}}}, "sniveled": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}}, "Monday": {"_count": 41, "he": {"_count": 3, "told": {"_count": 1}, "said": {"_count": 2}}, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 2, "you": {"_count": 1}, "no": {"_count": 1}}, "morning": {"_count": 7, "": {"_count": 4}, "he": {"_count": 1}, "despite": {"_count": 1}, "restored": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "9": {"_count": 1, "oclock": {"_count": 1}}, "limp": {"_count": 1, "and": {"_count": 1}}, "night": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "you": {"_count": 1}}, "column": {"_count": 1, "of": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "lunchtime": {"_count": 1, "as": {"_count": 1}}, "last": {"_count": 1, "midway": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "nor": {"_count": 1, "was": {"_count": 1}}, "you": {"_count": 1, "lost": {"_count": 1}}, "evening": {"_count": 3, "Potter": {"_count": 2}, "": {"_count": 1}}, "my": {"_count": 1, "home": {"_count": 1}}, "which": {"_count": 1, "would": {"_count": 1}}, "the": {"_count": 1, "exam": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "nights": {"_count": 1, "lesson": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}}, "Humbertos": {"_count": 1, "on": {"_count": 1, "tonight": {"_count": 1}}}, "count": {"_count": 47, "on": {"_count": 5, "Dudley": {"_count": 1}, "you": {"_count": 1}, "yeh": {"_count": 1}, "elfish": {"_count": 1}, "him": {"_count": 1}}, "leading": {"_count": 1, "off": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "of": {"_count": 14, "three": {"_count": 13}, "the": {"_count": 1}}, "to": {"_count": 1, "three": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "clothes": {"_count": 1}}, "against": {"_count": 1, "me": {"_count": 1}}, "for": {"_count": 2, "nothing": {"_count": 1}, "very": {"_count": 1}}, "the": {"_count": 1, "windows": {"_count": 1}}, "making": {"_count": 1, "as": {"_count": 1}}, "upon": {"_count": 1, "all": {"_count": 1}}, "her": {"_count": 1, "old": {"_count": 1}}, "a": {"_count": 1, "glimpse": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}, "have": {"_count": 1, "a": {"_count": 1}}, "myself": {"_count": 2, "very": {"_count": 1}, "one": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "Quirrell": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 1, "a": {"_count": 1}}, "your": {"_count": 1, "owls": {"_count": 1}}, "actually": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 1, "You": {"_count": 1}}, "Aberforth": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "days": {"_count": 241, "of": {"_count": 9, "the": {"_count": 3}, "YouKnowWho": {"_count": 1}, "his": {"_count": 1}, "jealousy": {"_count": 1}, "Voldemorts": {"_count": 1}, "term": {"_count": 1}, "nonstop": {"_count": 1}}, "Harry": {"_count": 6, "": {"_count": 1}, "Potter": {"_count": 1}, "didnt": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 2}}, "": {"_count": 44, ".": {"_count": 39}, "!": {"_count": 2}, "?": {"_count": 3}}, "Ill": {"_count": 1, "get": {"_count": 1}}, "you": {"_count": 2, "got": {"_count": 1}, "know": {"_count": 1}}, "he": {"_count": 6, "gave": {"_count": 1}, "had": {"_count": 3}, "scrambled": {"_count": 1}, "spent": {"_count": 1}}, "its": {"_count": 1, "very": {"_count": 1}}, "Ive": {"_count": 3, "got": {"_count": 1}, "been": {"_count": 1}, "heard": {"_count": 1}}, "crept": {"_count": 1, "by": {"_count": 1}}, "ago": {"_count": 13, "sobbing": {"_count": 1}, "": {"_count": 3}, "it": {"_count": 1}, "and": {"_count": 1}, "you": {"_count": 1}, "but": {"_count": 2}, "before": {"_count": 1}, "that": {"_count": 1}, "Arkie": {"_count": 1}, "son": {"_count": 1}}, "later": {"_count": 4, "the": {"_count": 2}, "": {"_count": 1}, "once": {"_count": 1}}, "so": {"_count": 2, "Stop": {"_count": 1}, "were": {"_count": 1}}, "dodging": {"_count": 1, "out": {"_count": 1}}, "are": {"_count": 4, "halfblood": {"_count": 1}, "over": {"_count": 1}, "finally": {"_count": 1}, "up": {"_count": 1}}, "on": {"_count": 1, "end": {"_count": 1}}, "before": {"_count": 9, "Halloween": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 5}, "I": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 3, "school": {"_count": 1}, "strange": {"_count": 1}, "Patil": {"_count": 1}}, "to": {"_count": 9, "finish": {"_count": 1}, "get": {"_count": 2}, "recover": {"_count": 1}, "September": {"_count": 1}, "go": {"_count": 2}, "decontaminate": {"_count": 1}, "badger": {"_count": 1}}, "would": {"_count": 1, "never": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 1, "by": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "because": {"_count": 1, "from": {"_count": 1}}, "time": {"_count": 6, "": {"_count": 3}, "when": {"_count": 1}, "young": {"_count": 1}, "theyll": {"_count": 1}}, "The": {"_count": 1, "smile": {"_count": 1}}, "they": {"_count": 2, "lived": {"_count": 1}, "broke": {"_count": 1}}, "left": {"_count": 3, "until": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 1}}, "by": {"_count": 1, "forcing": {"_count": 1}}, "shopping": {"_count": 1, "venerablelooking": {"_count": 1}}, "exploring": {"_count": 1, "the": {"_count": 1}}, "slipped": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 8, "no": {"_count": 1}, "days": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}, "how": {"_count": 1}, "many": {"_count": 1}, "joined": {"_count": 1}, "maybe": {"_count": 1}}, "after": {"_count": 8, "Blacks": {"_count": 1}, "wed": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 1}, "New": {"_count": 1}, "that": {"_count": 1}, "these": {"_count": 1}, "they": {"_count": 1}}, "became": {"_count": 1, "cloudless": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 2, "were": {"_count": 1}, "some": {"_count": 1}}, "neither": {"_count": 1, "lived": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "alone": {"_count": 1, "would": {"_count": 1}}, "until": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "when": {"_count": 7, "he": {"_count": 4}, "the": {"_count": 1}, "Gilderoy": {"_count": 1}, "at": {"_count": 1}}, "remaining": {"_count": 1, "until": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "passed": {"_count": 1, "without": {"_count": 1}}, "in": {"_count": 5, "which": {"_count": 1}, "a": {"_count": 2}, "any": {"_count": 1}, "office": {"_count": 1}}, "Cedric": {"_count": 1, "or": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}, "but": {"_count": 3, "Harry": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}}, "should": {"_count": 1, "crack": {"_count": 1}}, "here": {"_count": 1, "telling": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "fathers": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "Ted": {"_count": 1}}, "work": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "was": {"_count": 3, "rising": {"_count": 1}, "gingery": {"_count": 1}, "just": {"_count": 1}}, "lyin": {"_count": 1, "low": {"_count": 1}}, "yet": {"_count": 1, "he": {"_count": 1}}, "training": {"_count": 1, "": {"_count": 1}}, "youll": {"_count": 1, "write": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "followed": {"_count": 1}}, "I": {"_count": 3, "just": {"_count": 1}, "am": {"_count": 1}, "doubt": {"_count": 1}}, "hoping": {"_count": 1, "desperately": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "\u2018the": {"_count": 1, "Chosen": {"_count": 1}}, "playing": {"_count": 1, "twoaside": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "weather": {"_count": 1, "and": {"_count": 1}}, "even": {"_count": 1, "Hermione": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "home": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "corrected": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}, "over": {"_count": 1, "what": {"_count": 1}}, "slid": {"_count": 1, "gently": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "confused": {"_count": 1, "dreams": {"_count": 1}}, "shes": {"_count": 1, "a": {"_count": 1}}, "running": {"_count": 1, "although": {"_count": 1}}, "previously": {"_count": 2, "": {"_count": 2}}, "old": {"_count": 1, "new": {"_count": 1}}, "stretched": {"_count": 2, "into": {"_count": 2}}, "muttered": {"_count": 1, "Dirk": {"_count": 1}}, "or": {"_count": 1, "so": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "making": {"_count": 1, "excuses": {"_count": 1}}}, "tomorrow": {"_count": 98, "Tuesday": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 27}, "!": {"_count": 4}, "?": {"_count": 3}}, "said": {"_count": 4, "Hagrid": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 3, "to": {"_count": 1}, "pick": {"_count": 1}, "three": {"_count": 1}}, "anyway": {"_count": 1, "or": {"_count": 1}}, "youre": {"_count": 1, "so": {"_count": 1}}, "Harry": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 6, "tell": {"_count": 1}, "George": {"_count": 1}, "the": {"_count": 1}, "find": {"_count": 1}, "itll": {"_count": 1}, "weve": {"_count": 1}}, "without": {"_count": 1, "their": {"_count": 1}}, "night": {"_count": 4, "": {"_count": 1}, "Snapes": {"_count": 1}, "instead": {"_count": 1}, "theyre": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Dad": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 1}, "just": {"_count": 1}, "theyre": {"_count": 1}}, "one": {"_count": 1, "way": {"_count": 1}}, "the": {"_count": 1, "owls": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}, "in": {"_count": 1, "Diagon": {"_count": 1}}, "morning": {"_count": 4, "": {"_count": 3}, "Harry": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "afternoon": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "stick": {"_count": 1}}, "until": {"_count": 1, "I": {"_count": 1}}, "Dumbledore": {"_count": 1, "to": {"_count": 1}}, "Im": {"_count": 1, "just": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "evening": {"_count": 3, "wont": {"_count": 1}, "instead": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "with": {"_count": 2, "another": {"_count": 2}}, "he": {"_count": 2, "muttered": {"_count": 1}, "and": {"_count": 1}}, "Fred": {"_count": 1, "continued": {"_count": 1}}, "just": {"_count": 1, "after": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "firs": {"_count": 1, "lessons": {"_count": 1}}, "but": {"_count": 1, "if": {"_count": 1}}, "or": {"_count": 2, "its": {"_count": 2}}, "then": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "necessary": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "Ron": {"_count": 1, "you": {"_count": 1}}}, "eleventh": {"_count": 3, "birthday": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}}, "Of": {"_count": 215, "course": {"_count": 196, "his": {"_count": 2}, "we": {"_count": 5}, "not": {"_count": 17}, "he": {"_count": 19}, "there": {"_count": 5}, "the": {"_count": 5}, "said": {"_count": 9}, "its": {"_count": 5}, "it": {"_count": 12}, "Mother": {"_count": 1}, "I": {"_count": 28}, "Dobby": {"_count": 1}, "Justins": {"_count": 1}, "hes": {"_count": 2}, "she": {"_count": 9}, "": {"_count": 10}, "youre": {"_count": 2}, "if": {"_count": 3}, "they": {"_count": 7}, "Im": {"_count": 4}, "Lupin": {"_count": 1}, "everyone": {"_count": 2}, "people": {"_count": 1}, "youve": {"_count": 2}, "Sirius": {"_count": 1}, "my": {"_count": 2}, "you": {"_count": 11}, "these": {"_count": 1}, "shes": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 3}, "with": {"_count": 1}, "what": {"_count": 1}, "My": {"_count": 1}, "well": {"_count": 1}, "now": {"_count": 1}, "one": {"_count": 1}, "Malfoy": {"_count": 1}, "Coote": {"_count": 1}, "He": {"_count": 1}, "Burke": {"_count": 1}, "Lucius": {"_count": 1}, "this": {"_count": 1}, "Ron": {"_count": 1}, "none": {"_count": 1}, "of": {"_count": 1}, "James": {"_count": 1}, "Voldemort": {"_count": 1}, "nearly": {"_count": 1}, "Harry": {"_count": 1}, "thats": {"_count": 1}, "something": {"_count": 1}, "Dumbledore": {"_count": 1}, "how": {"_count": 1}}, "what": {"_count": 3, "awaits": {"_count": 1}, "": {"_count": 2}}, "finding": {"_count": 1, "more": {"_count": 1}}, "all": {"_count": 5, "the": {"_count": 5}}, "of": {"_count": 1, "course": {"_count": 1}}, "the": {"_count": 2, "many": {"_count": 1}, "dreadful": {"_count": 1}}, "Huffepuff": {"_count": 1, "and": {"_count": 1}}, "great": {"_count": 1, "cunning": {"_count": 1}}, "some": {"_count": 2, "kinds": {"_count": 1}, "": {"_count": 1}}, "others": {"_count": 1, "you": {"_count": 1}}, "how": {"_count": 1, "Godelot": {"_count": 1}}, "houseelves": {"_count": 1, "and": {"_count": 1}}}, "birthdays": {"_count": 5, "were": {"_count": 1, "never": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "worth": {"_count": 1, "of": {"_count": 1}}}, "fun": {"_count": 66, "last": {"_count": 1, "year": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 15}, "!": {"_count": 2}, "?": {"_count": 1}}, "to": {"_count": 4, "talk": {"_count": 1}, "pay": {"_count": 1}, "watch": {"_count": 1}, "liaise": {"_count": 1}}, "but": {"_count": 2, "not": {"_count": 1}, "Uncle": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 4, "Dudley": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "em": {"_count": 1}}, "was": {"_count": 1, "wearing": {"_count": 1}}, "of": {"_count": 6, "me": {"_count": 3}, "it": {"_count": 2}, "him": {"_count": 1}}, "Thats": {"_count": 1, "enough": {"_count": 1}}, "doesnt": {"_count": 1, "stop": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 1, "nevertheless": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "and": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "don": {"_count": 1, "they": {"_count": 1}}, "he": {"_count": 1, "says": {"_count": 1}}, "selecting": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}}, "I": {"_count": 1, "daresay": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 1}, "James": {"_count": 2}}, "Im": {"_count": 1, "getting": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}, "fact": {"_count": 1, "Professor": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "sometimes": {"_count": 1, "": {"_count": 1}}, "trip": {"_count": 1, "and": {"_count": 1}}, "really": {"_count": 1, "said": {"_count": 1}}}, "hanger": {"_count": 2, "and": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Still": {"_count": 71, "you": {"_count": 1, "werent": {"_count": 1}}, "got": {"_count": 2, "yer": {"_count": 1}, "abou": {"_count": 1}}, "firstyear": {"_count": 1, "Gryffindors": {"_count": 1}}, "famous": {"_count": 1, "said": {"_count": 1}}, "upset": {"_count": 1, "we": {"_count": 1}}, "if": {"_count": 1, "ever": {"_count": 1}}, "tuttutting": {"_count": 1, "about": {"_count": 1}}, "the": {"_count": 2, "wizard": {"_count": 1}, "veil": {"_count": 1}}, "here": {"_count": 2, "are": {"_count": 1}, "somewhere": {"_count": 1}}, "standing": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "looks": {"_count": 1, "ill": {"_count": 1}}, "found": {"_count": 1, "time": {"_count": 1}}, "Harry": {"_count": 3, "didnt": {"_count": 1}, "remained": {"_count": 1}, "said": {"_count": 1}}, "out": {"_count": 1, "cold": {"_count": 1}}, "working": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "its": {"_count": 2, "not": {"_count": 1}, "cool": {"_count": 1}}, "never": {"_count": 1, "mind": {"_count": 1}}, "breathing": {"_count": 2, "very": {"_count": 1}, "hard": {"_count": 1}}, "Missing": {"_count": 1, "Minister": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 3, "paced": {"_count": 1}, "added": {"_count": 2}}, "facing": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "finished": {"_count": 1}}, "I": {"_count": 3, "worry": {"_count": 1}, "wonder": {"_count": 1}, "suppose": {"_count": 1}}, "it": {"_count": 2, "wont": {"_count": 1}, "might": {"_count": 1}}, "angry": {"_count": 1, "about": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "smiling": {"_count": 2, "Professor": {"_count": 1}, "her": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "exceptionally": {"_count": 1, "pale": {"_count": 1}}, "Among": {"_count": 1, "Us": {"_count": 1}}, "scowling": {"_count": 1, "he": {"_count": 1}}, "singing": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 3, "least": {"_count": 3}}, "pointing": {"_count": 1, "her": {"_count": 1}}, "chortling": {"_count": 1, "Fudge": {"_count": 1}}, "spying": {"_count": 1, "on": {"_count": 1}}, "very": {"_count": 1, "unwell": {"_count": 1}}, "even": {"_count": 1, "Hermione": {"_count": 1}}, "chuckling": {"_count": 1, "he": {"_count": 1}}, "checking": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 1, "into": {"_count": 1}}, "slashing": {"_count": 1, "at": {"_count": 1}}, "paralyzed": {"_count": 1, "his": {"_count": 1}}, "blindfolded": {"_count": 1, "he": {"_count": 1}}, "wearing": {"_count": 1, "the": {"_count": 1}}, "Recruiting": {"_count": 1, "stuff": {"_count": 1}}, "feigning": {"_count": 1, "death": {"_count": 1}}, "watching": {"_count": 1, "through": {"_count": 1}}, "hidden": {"_count": 1, "beneath": {"_count": 1}}}, "package": {"_count": 44, "and": {"_count": 2, "didnt": {"_count": 1}, "unwrapped": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 2, "sausages": {"_count": 1}, "Easter": {"_count": 1}}, "wrapped": {"_count": 2, "up": {"_count": 1}, "in": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "just": {"_count": 2, "in": {"_count": 1}, "arrived": {"_count": 1}}, "from": {"_count": 3, "his": {"_count": 1}, "vault": {"_count": 1}, "Harry": {"_count": 1}}, "that": {"_count": 2, "seemed": {"_count": 1}, "came": {"_count": 1}}, "carried": {"_count": 1, "by": {"_count": 1}}, "in": {"_count": 2, "Harrys": {"_count": 1}, "her": {"_count": 1}}, "bounced": {"_count": 1, "off": {"_count": 1}}, "tied": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "ripped": {"_count": 1, "off": {"_count": 1}}, "lying": {"_count": 2, "underneath": {"_count": 1}, "in": {"_count": 1}}, "which": {"_count": 1, "turned": {"_count": 1}}, "including": {"_count": 1, "a": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "neatly": {"_count": 1, "in": {"_count": 1}}, "roughly": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "in": {"_count": 1}}, "landed": {"_count": 1, "in": {"_count": 1}}, "Katie": {"_count": 1, "was": {"_count": 1}}, "fell": {"_count": 1, "to": {"_count": 1}}, "tore": {"_count": 1, "sobbed": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "how": {"_count": 1, "Katie": {"_count": 1}}, "without": {"_count": 1, "touching": {"_count": 1}}, "contained": {"_count": 1, "a": {"_count": 1}}, "across": {"_count": 1, "onto": {"_count": 1}}, "to": {"_count": 1, "Bills": {"_count": 1}}}, "Found": {"_count": 3, "the": {"_count": 1, "perfect": {"_count": 1}}, "it": {"_count": 1, "last": {"_count": 1}}, "em": {"_count": 1, "said": {"_count": 1}}}, "rock": {"_count": 74, "way": {"_count": 1, "out": {"_count": 1}}, "was": {"_count": 2, "the": {"_count": 1}, "Buckbeak": {"_count": 1}}, "where": {"_count": 2, "Uncle": {"_count": 1}, "a": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "crumbling": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "after": {"_count": 1, "Hagrids": {"_count": 1}}, "cakes": {"_count": 6, "onto": {"_count": 1}, "were": {"_count": 1}, "theyd": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "cake": {"_count": 3, "": {"_count": 1}, "all": {"_count": 1}, "after": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "reached": {"_count": 1, "Harrys": {"_count": 1}}, "to": {"_count": 1, "pull": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "concert": {"_count": 1, "except": {"_count": 1}}, "backward": {"_count": 3, "and": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 2, "long": {"_count": 1}, "face": {"_count": 1}}, "while": {"_count": 1, "she": {"_count": 1}}, "emerge": {"_count": 1, "out": {"_count": 1}}, "following": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "began": {"_count": 1}, "plunged": {"_count": 1}, "fell": {"_count": 1}, "the": {"_count": 1}}, "water": {"_count": 1, "foaming": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "unrelieved": {"_count": 1, "by": {"_count": 1}}, "unless": {"_count": 1, "they": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "face": {"_count": 2, "his": {"_count": 1}, "was": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "bare": {"_count": 1}}, "within": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "surrounded": {"_count": 1}}, "rim": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "army": {"_count": 1}}, "their": {"_count": 1, "bony": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "still": {"_count": 1, "encircled": {"_count": 1}}, "lying": {"_count": 1, "in": {"_count": 1}}, "not": {"_count": 1, "big": {"_count": 1}}, "somewhere": {"_count": 1, "nearby": {"_count": 1}}, "tremble": {"_count": 1, "opened": {"_count": 1}}, "gigantic": {"_count": 1, "fractured": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}}, "sea": {"_count": 51, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "spray": {"_count": 1, "and": {"_count": 1}}, "slapping": {"_count": 1, "hard": {"_count": 1}}, "and": {"_count": 7, "the": {"_count": 4}, "starstrewn": {"_count": 1}, "began": {"_count": 1}, "soon": {"_count": 1}}, "gleamed": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 14, "heads": {"_count": 1}, "books": {"_count": 1}, "fluffy": {"_count": 1}, "dark": {"_count": 1}, "pointed": {"_count": 1}, "cloaks": {"_count": 1}, "scarlet": {"_count": 1}, "students": {"_count": 1}, "upturned": {"_count": 1}, "green": {"_count": 2}, "darkness": {"_count": 1}, "centaurs": {"_count": 1}, "burning": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "monster": {"_count": 1, "": {"_count": 1}}, "slug": {"_count": 1, "or": {"_count": 1}}, "air": {"_count": 1, "and": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "breeze": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 2, "rushing": {"_count": 1}, "washing": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}, "marking": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "flecked": {"_count": 1}}, "gushed": {"_count": 1, "forward": {"_count": 1}}, "its": {"_count": 1, "walls": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "lavender": {"_count": 1, "in": {"_count": 1}}, "washing": {"_count": 1, "backward": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "creatures": {"_count": 1, "": {"_count": 1}}, "urchin": {"_count": 1, "": {"_count": 1}}}, "Perched": {"_count": 2, "on": {"_count": 1, "top": {"_count": 1}}, "atop": {"_count": 1, "a": {"_count": 1}}}, "shack": {"_count": 9, "you": {"_count": 1, "could": {"_count": 1}}, "shivered": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "north": {"_count": 1}}, "where": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 3, "Hogwarts": {"_count": 1}, "the": {"_count": 1}, "take": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "first": {"_count": 1, "then": {"_count": 1}}}, "certain": {"_count": 82, "there": {"_count": 1, "was": {"_count": 1}}, "respect": {"_count": 1, "yet": {"_count": 1}}, "of": {"_count": 5, "these": {"_count": 1}, "all": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "privileges": {"_count": 1, "until": {"_count": 1}}, "that": {"_count": 7, "Hagrid": {"_count": 1}, "it": {"_count": 1}, "McGonagall": {"_count": 1}, "they": {"_count": 1}, "teachers": {"_count": 1}, "more": {"_count": 1}, "there": {"_count": 1}}, "disregard": {"_count": 1, "for": {"_count": 1}}, "weekends": {"_count": 1, "": {"_count": 1}}, "defenses": {"_count": 1, "one": {"_count": 1}}, "Buckbeak": {"_count": 1, "was": {"_count": 1}}, "teachers": {"_count": 1, "that": {"_count": 1}}, "precautions": {"_count": 1, "there": {"_count": 1}}, "map": {"_count": 1, "": {"_count": 1}}, "way": {"_count": 1, "to": {"_count": 1}}, "bond": {"_count": 1, "between": {"_count": 1}}, "sacrifices": {"_count": 1, "on": {"_count": 1}}, "facts": {"_count": 1, "about": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "curiosity": {"_count": 1, "": {"_count": 1}}, "extent": {"_count": 1, "now": {"_count": 1}}, "people": {"_count": 1, "": {"_count": 1}}, "necessary": {"_count": 1, "qualities": {"_count": 1}}, "Dark": {"_count": 2, "wizard": {"_count": 2}}, "rigidity": {"_count": 1, "about": {"_count": 1}}, "Sturgis": {"_count": 1, "Podmore": {"_count": 1}}, "amount": {"_count": 9, "of": {"_count": 9}}, "Chocolate": {"_count": 1, "Frog": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "conditions": {"_count": 1, "to": {"_count": 1}}, "herbs": {"_count": 1, "and": {"_count": 1}}, "shapes": {"_count": 1, "and": {"_count": 1}}, "trustworthy": {"_count": 1, "students": {"_count": 1}}, "areas": {"_count": 1, "of": {"_count": 1}}, "Order": {"_count": 1, "members": {"_count": 1}}, "name": {"_count": 1, "aloud": {"_count": 1}}, "rangy": {"_count": 1, "loping": {"_count": 1}}, "reluctance": {"_count": 1, "to": {"_count": 1}}, "brick": {"_count": 1, "in": {"_count": 1}}, "fondness": {"_count": 1, "for": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "features": {"_count": 1, "of": {"_count": 1}}, "disquiet": {"_count": 1, "": {"_count": 1}}, "measures": {"_count": 1, "need": {"_count": 1}}, "points": {"_count": 1, "of": {"_count": 1}}, "caliber": {"_count": 1, "have": {"_count": 1}}, "proof": {"_count": 1, "that": {"_count": 1}}, "grandeur": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 1, "that": {"_count": 1}}, "dark": {"_count": 1, "portents": {"_count": 1}}, "um": {"_count": 1, "personal": {"_count": 1}}, "said": {"_count": 2, "Yaxley": {"_count": 1}, "Snape": {"_count": 1}}, "books": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "reassuring": {"_count": 1, "something": {"_count": 1}}, "awkwardness": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "snake": {"_count": 1}}, "properties": {"_count": 1, "only": {"_count": 1}}, "snippets": {"_count": 1, "": {"_count": 1}}, "kinds": {"_count": 1, "of": {"_count": 1}}, "acts": {"_count": 1, "": {"_count": 1}}, "magic": {"_count": 1, "about": {"_count": 1}}, "Lucius": {"_count": 1, "Narcissa": {"_count": 1}}, "identifying": {"_count": 1, "characteristics": {"_count": 1}}}, "Storm": {"_count": 1, "forecast": {"_count": 1, "for": {"_count": 1}}}, "forecast": {"_count": 2, "for": {"_count": 1, "tonight": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "gleefully": {"_count": 21, "clapping": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "Mrs": {"_count": 1}}, "pointed": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "looking": {"_count": 1, "back": {"_count": 1}}, "formed": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "and": {"_count": 2, "zoomed": {"_count": 1}, "turning": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "clapping": {"_count": 30, "his": {"_count": 6, "hands": {"_count": 5}, "great": {"_count": 1}}, "a": {"_count": 4, "hand": {"_count": 3}, "massive": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 2, "as": {"_count": 1}, "chatting": {"_count": 1}}, "Hagrid": {"_count": 1, "on": {"_count": 1}}, "along": {"_count": 2, "with": {"_count": 2}}, "as": {"_count": 2, "Baddock": {"_count": 1}, "enthusiastically": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "him": {"_count": 2, "on": {"_count": 2}}, "Harry": {"_count": 2, "on": {"_count": 1}, "could": {"_count": 1}}, "Ron": {"_count": 1, "hard": {"_count": 1}}, "greeted": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "on": {"_count": 1}}}, "gentlemans": {"_count": 1, "kindly": {"_count": 1, "agreed": {"_count": 1}}}, "kindly": {"_count": 53, "agreed": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 3, "Harry": {"_count": 1}, "think": {"_count": 1}, "so": {"_count": 1}}, "one": {"_count": 1, "afternoon": {"_count": 1}}, "I": {"_count": 1, "cannot": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "consented": {"_count": 1, "to": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "concocted": {"_count": 1, "a": {"_count": 1}}, "Pettigrew": {"_count": 1, "died": {"_count": 1}}, "not": {"_count": 1, "until": {"_count": 1}}, "gaze": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "taking": {"_count": 1, "the": {"_count": 1}}, "put": {"_count": 1, "your": {"_count": 1}}, "welcome": {"_count": 1, "the": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "when": {"_count": 2, "set": {"_count": 1}, "Malfoy": {"_count": 1}}, "alert": {"_count": 1, "Professor": {"_count": 1}}, "joined": {"_count": 1, "us": {"_count": 1}}, "go": {"_count": 1, "down": {"_count": 1}}, "figure": {"_count": 1, "a": {"_count": 1}}, "face": {"_count": 1, "looked": {"_count": 1}}, "investigate": {"_count": 1, "immediately": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "continue": {"_count": 1, "your": {"_count": 1}}, "to": {"_count": 5, "a": {"_count": 1}, "Harry": {"_count": 1}, "being": {"_count": 1}, "Stan": {"_count": 1}, "your": {"_count": 1}}, "come": {"_count": 1, "here": {"_count": 1}}, "remove": {"_count": 1, "yourself": {"_count": 1}}, "arranged": {"_count": 1, "this": {"_count": 1}}, "tell": {"_count": 1, "me": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "explanation": {"_count": 1, "that": {"_count": 1}}, "The": {"_count": 1, "trouble": {"_count": 1}}, "invited": {"_count": 1, "me": {"_count": 1}}, "hurrying": {"_count": 1, "forward": {"_count": 1}}, "but": {"_count": 3, "continue": {"_count": 1}, "far": {"_count": 1}, "at": {"_count": 1}}, "helped": {"_count": 1, "a": {"_count": 1}}, "smile": {"_count": 1, "but": {"_count": 1}}}, "agreed": {"_count": 75, "to": {"_count": 21, "lend": {"_count": 1}, "run": {"_count": 1}, "go": {"_count": 2}, "help": {"_count": 2}, "take": {"_count": 1}, "return": {"_count": 1}, "be": {"_count": 1}, "impose": {"_count": 1}, "visit": {"_count": 1}, "come": {"_count": 2}, "work": {"_count": 1}, "test": {"_count": 1}, "resume": {"_count": 1}, "get": {"_count": 1}, "make": {"_count": 1}, "accept": {"_count": 1}, "try": {"_count": 1}, "keep": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "theyd": {"_count": 1, "better": {"_count": 1}}, "that": {"_count": 8, "they": {"_count": 2}, "the": {"_count": 2}, "that": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 1}}, "with": {"_count": 5, "him": {"_count": 2}, "some": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}}, "unless": {"_count": 1, "all": {"_count": 1}}, "its": {"_count": 1, "all": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "eh": {"_count": 1}}, "silently": {"_count": 1, "Black": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "havent": {"_count": 1, "they": {"_count": 1}}, "on": {"_count": 3, "that": {"_count": 2}, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "want": {"_count": 1}}, "jus": {"_count": 1, "cause": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "there": {"_count": 1, "could": {"_count": 1}}, "ter": {"_count": 1, "do": {"_count": 1}}, "wed": {"_count": 1, "leave": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "grudgingly": {"_count": 1}, "when": {"_count": 1}}, "shivering": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 1, "fervently": {"_count": 1}}, "Lupin": {"_count": 1, "gravely": {"_count": 1}}, "without": {"_count": 1, "really": {"_count": 1}}, "Hermione": {"_count": 1, "a": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}}, "lend": {"_count": 9, "us": {"_count": 2, "his": {"_count": 1}, "cloaks": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 5, "one": {"_count": 1}, "my": {"_count": 1}, "some": {"_count": 2}, "for": {"_count": 1}}, "me": {"_count": 1, "some": {"_count": 1}}}, "boat": {"_count": 40, "": {"_count": 13, "!": {"_count": 3}, ".": {"_count": 9}, "?": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Harry": {"_count": 2, "still": {"_count": 1}, "knew": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "bumped": {"_count": 1, "gently": {"_count": 1}}, "by": {"_count": 1, "Neville": {"_count": 1}}, "to": {"_count": 1, "himself": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "an": {"_count": 1}}, "flying": {"_count": 1, "Bill": {"_count": 1}}, "broke": {"_count": 1, "the": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "safe": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "which": {"_count": 1, "began": {"_count": 1}}, "was": {"_count": 2, "carving": {"_count": 1}, "still": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}, "the": {"_count": 1, "ring": {"_count": 1}}, "he": {"_count": 1, "staggered": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "sank": {"_count": 1, "into": {"_count": 1}}, "ghostly": {"_count": 1, "green": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "bump": {"_count": 1, "into": {"_count": 1}}, "lay": {"_count": 1, "abandoned": {"_count": 1}}}, "toothless": {"_count": 6, "old": {"_count": 1, "man": {"_count": 1}}, "walnut": {"_count": 1, "": {"_count": 1}}, "landlord": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "grin": {"_count": 1, "and": {"_count": 1}}, "remained": {"_count": 1, "of": {"_count": 1}}}, "ambling": {"_count": 2, "up": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}}, "wicked": {"_count": 4, "grin": {"_count": 1, "at": {"_count": 1}}, "dark": {"_count": 1, "eyes": {"_count": 1}}, "black": {"_count": 1, "eyes": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}}, "rowboat": {"_count": 1, "bobbing": {"_count": 1, "in": {"_count": 1}}}, "bobbing": {"_count": 21, "in": {"_count": 3, "the": {"_count": 2}, "and": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "away": {"_count": 1, "in": {"_count": 1}}, "halfway": {"_count": 1, "up": {"_count": 1}}, "overhead": {"_count": 2, "now": {"_count": 1}, "gazed": {"_count": 1}}, "apologetically": {"_count": 1, "around": {"_count": 1}}, "up": {"_count": 2, "and": {"_count": 2}}, "on": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "around": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "weaving": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}}, "irongray": {"_count": 3, "water": {"_count": 1, "below": {"_count": 1}}, "mass": {"_count": 1, "of": {"_count": 1}}, "hair": {"_count": 1, "chivvying": {"_count": 1}}}, "below": {"_count": 182, "them": {"_count": 13, "": {"_count": 7}, "like": {"_count": 2}, "winding": {"_count": 1}, "creaked": {"_count": 1}, "did": {"_count": 1}, "at": {"_count": 1}}, "were": {"_count": 2, "clapping": {"_count": 1}, "crowded": {"_count": 1}}, "Marcus": {"_count": 1, "Flint": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "S": {"_count": 1}}, "and": {"_count": 10, "stop": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "sped": {"_count": 1}, "vanished": {"_count": 1}, "seemed": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}, "yelled": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 2}, "heard": {"_count": 1}}, "meaning": {"_count": 1, "that": {"_count": 1}}, "where": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 49, ".": {"_count": 49}}, "him": {"_count": 11, "and": {"_count": 2}, "saying": {"_count": 1}, "": {"_count": 7}, "still": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 2, "pair": {"_count": 1}, "small": {"_count": 1}}, "the": {"_count": 20, "skyline": {"_count": 1}, "school": {"_count": 1}, "hilt": {"_count": 2}, "oneeyed": {"_count": 1}, "table": {"_count": 1}, "surface": {"_count": 4}, "shoulder": {"_count": 1}, "standard": {"_count": 1}, "belt": {"_count": 1}, "Slytherins": {"_count": 1}, "parapet": {"_count": 1}, "back": {"_count": 1}, "rim": {"_count": 1}, "psilver": {"_count": 1}, "dementors": {"_count": 1}, "thick": {"_count": 1}}, "in": {"_count": 4, "Diagon": {"_count": 1}, "the": {"_count": 3}}, "did": {"_count": 1, "Cho": {"_count": 1}}, "was": {"_count": 6, "screaming": {"_count": 2}, "a": {"_count": 1}, "nothing": {"_count": 1}, "applauding": {"_count": 1}, "packed": {"_count": 1}}, "booed": {"_count": 1, "": {"_count": 1}}, "echoed": {"_count": 1, "up": {"_count": 1}}, "to": {"_count": 1, "wild": {"_count": 1}}, "is": {"_count": 1, "why": {"_count": 1}}, "because": {"_count": 1, "leprechauns": {"_count": 1}}, "thundered": {"_count": 1, "its": {"_count": 1}}, "flipped": {"_count": 1, "Mrs": {"_count": 1}}, "her": {"_count": 2, "screeched": {"_count": 1}, "dates": {"_count": 1}}, "third": {"_count": 1, "year": {"_count": 1}}, "sixth": {"_count": 1, "and": {"_count": 1}}, "pushed": {"_count": 1, "aside": {"_count": 1}}, "Harry": {"_count": 4, "and": {"_count": 2}, "heard": {"_count": 1}, "knew": {"_count": 1}}, "his": {"_count": 2, "ears": {"_count": 1}, "eyes": {"_count": 1}}, "apparently": {"_count": 1, "fast": {"_count": 1}}, "silhouetted": {"_count": 1, "against": {"_count": 1}}, "now": {"_count": 1, "but": {"_count": 1}}, "then": {"_count": 1, "even": {"_count": 1}}, "Harrys": {"_count": 1, "feet": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "Weasley": {"_count": 1, "cannot": {"_count": 1}}, "WEASLEY": {"_count": 1, "CANNOT": {"_count": 1}}, "an": {"_count": 1, "huge": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "alert": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 2, "his": {"_count": 1}, "trembled": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "Neville": {"_count": 1, "sank": {"_count": 1}}, "Voldemort": {"_count": 1, "paid": {"_count": 1}}, "nevertheless": {"_count": 1, "": {"_count": 1}}, "glitter": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "shadow": {"_count": 1}}, "shouted": {"_count": 1, "in": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 1, "letting": {"_count": 1}}, "accompanied": {"_count": 1, "not": {"_count": 1}}, "cramming": {"_count": 1, "Rons": {"_count": 1}}, "us": {"_count": 1, "said": {"_count": 1}}, "rather": {"_count": 1, "louder": {"_count": 1}}, "louder": {"_count": 1, "than": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "their": {"_count": 1, "feet": {"_count": 1}}, "everybody": {"_count": 1, "else": {"_count": 1}}, "who": {"_count": 1, "would": {"_count": 1}}, "swathed": {"_count": 1, "in": {"_count": 1}}, "rebolting": {"_count": 1, "the": {"_count": 1}}, "seeking": {"_count": 1, "a": {"_count": 1}}}, "rations": {"_count": 2, "said": {"_count": 1, "Uncle": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}}, "aboard": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "freezing": {"_count": 21, "in": {"_count": 2, "the": {"_count": 1}, "midair": {"_count": 1}}, "courtyard": {"_count": 1, "during": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "water": {"_count": 3, "were": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "its": {"_count": 1, "January": {"_count": 1}}, "air": {"_count": 2, "": {"_count": 2}}, "with": {"_count": 1, "her": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "aura": {"_count": 1, "over": {"_count": 1}}, "my": {"_count": 1, "backside": {"_count": 1}}, "green": {"_count": 1, "reedfilled": {"_count": 1}}}, "Icy": {"_count": 1, "sea": {"_count": 1, "spray": {"_count": 1}}}, "spray": {"_count": 5, "and": {"_count": 1, "rain": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "hitting": {"_count": 1, "his": {"_count": 1}}}, "chilly": {"_count": 28, "wind": {"_count": 1, "whipped": {"_count": 1}}, "locker": {"_count": 1, "rooms": {"_count": 1}}, "haze": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "morning": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "frosted": {"_count": 1, "pumpkin": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "water": {"_count": 1, "whose": {"_count": 1}}, "grounds": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "bed": {"_count": 1, "while": {"_count": 1}}, "night": {"_count": 1, "air": {"_count": 1}}, "September": {"_count": 1, "air": {"_count": 1}}, "gray": {"_count": 1, "January": {"_count": 1}}, "mist": {"_count": 2, "in": {"_count": 1}, "that": {"_count": 1}}, "little": {"_count": 1, "courtyard": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "rain": {"_count": 2, "made": {"_count": 1}, "for": {"_count": 1}}, "breeze": {"_count": 2, "ruffled": {"_count": 1}, "that": {"_count": 1}}, "bathroom": {"_count": 1, "": {"_count": 1}}, "musty": {"_count": 1, "old": {"_count": 1}}, "ground": {"_count": 1, "when": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "cloud": {"_count": 1, "and": {"_count": 1}}}, "whipped": {"_count": 46, "their": {"_count": 2, "faces": {"_count": 1}, "hair": {"_count": 1}}, "out": {"_count": 12, "behind": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 4}, "of": {"_count": 5}, "a": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "cream": {"_count": 1, "and": {"_count": 1}}, "George": {"_count": 1, "out": {"_count": 1}}, "off": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "his": {"_count": 4, "face": {"_count": 2}, "hand": {"_count": 1}, "hands": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 12, "and": {"_count": 2}, "": {"_count": 3}, "but": {"_count": 1}, "as": {"_count": 1}, "Siriuss": {"_count": 1}, "again": {"_count": 1}, "on": {"_count": 1}, "her": {"_count": 1}, "to": {"_count": 1}}, "the": {"_count": 1, "drawer": {"_count": 1}}, "lethally": {"_count": 1, "through": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "me": {"_count": 1, "off": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "upward": {"_count": 1, "out": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "up": {"_count": 1}}, "back": {"_count": 1, "off": {"_count": 1}}}, "slipping": {"_count": 32, "and": {"_count": 4, "sliding": {"_count": 3}, "breaking": {"_count": 1}}, "off": {"_count": 3, "the": {"_count": 1}, "duty": {"_count": 1}, "one": {"_count": 1}}, "down": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 1, "in": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "silt": {"_count": 1}}, "the": {"_count": 1, "Marauders": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 3}, "thick": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 3, "as": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 4, "snide": {"_count": 1}, "and": {"_count": 1}, "leading": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "backward": {"_count": 1, "off": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "sliding": {"_count": 40, "led": {"_count": 1, "the": {"_count": 1}}, "panels": {"_count": 1, "and": {"_count": 1}}, "off": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "down": {"_count": 5, "to": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 2}, "from": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 1}, "onto": {"_count": 1}}, "out": {"_count": 3, "onto": {"_count": 1}, "of": {"_count": 2}}, "compartment": {"_count": 1, "door": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "shut": {"_count": 1, "behind": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "beneath": {"_count": 2, "his": {"_count": 1}, "him": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "stumbling": {"_count": 1}}, "along": {"_count": 1, "on": {"_count": 1}}, "obligingly": {"_count": 1, "from": {"_count": 1}}, "backward": {"_count": 1, "over": {"_count": 1}}, "he": {"_count": 1, "ran": {"_count": 1}}, "slowly": {"_count": 1, "across": {"_count": 1}}, "the": {"_count": 1, "door": {"_count": 1}}, "it": {"_count": 1, "shut": {"_count": 1}}, "door": {"_count": 1, "repeatedly": {"_count": 1}}, "underneath": {"_count": 1, "them": {"_count": 1}}, "in": {"_count": 1, "and": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "them": {"_count": 1, "over": {"_count": 1}}, "uncontrollably": {"_count": 1, "on": {"_count": 1}}}, "led": {"_count": 163, "the": {"_count": 37, "way": {"_count": 33}, "first": {"_count": 1}, "other": {"_count": 2}, "wizards": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 2}}, "them": {"_count": 19, "through": {"_count": 2}, "to": {"_count": 3}, "away": {"_count": 1}, "in": {"_count": 1}, "up": {"_count": 2}, "along": {"_count": 2}, "down": {"_count": 3}, "back": {"_count": 1}, "past": {"_count": 1}, "all": {"_count": 2}, "forward": {"_count": 1}}, "to": {"_count": 27, "the": {"_count": 12}, "a": {"_count": 4}, "History": {"_count": 1}, "Snapes": {"_count": 2}, "another": {"_count": 1}, "Sibyll": {"_count": 1}, "Dumbledores": {"_count": 1}, "where": {"_count": 1}, "Dumbledore": {"_count": 1}, "acquaintance": {"_count": 1}, "his": {"_count": 1}, "enormous": {"_count": 1}}, "somewhere": {"_count": 1, "different": {"_count": 1}}, "off": {"_count": 7, "to": {"_count": 2}, "the": {"_count": 2}, "it": {"_count": 2}, "toward": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "there": {"_count": 1, "by": {"_count": 1}}, "him": {"_count": 15, "not": {"_count": 1}, "away": {"_count": 1}, "forward": {"_count": 1}, "over": {"_count": 1}, "from": {"_count": 1}, "on": {"_count": 1}, "down": {"_count": 1}, "out": {"_count": 2}, "off": {"_count": 1}, "up": {"_count": 1}, "purposefully": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "Ginny": {"_count": 1, "out": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 9, "out": {"_count": 1}, "Ron": {"_count": 1}, "past": {"_count": 1}, "along": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 2}, "back": {"_count": 2}}, "by": {"_count": 4, "Captain": {"_count": 1}, "Professor": {"_count": 1}, "Malfoy": {"_count": 1}, "Bellatrix": {"_count": 1}}, "away": {"_count": 2, "to": {"_count": 1}, "from": {"_count": 1}}, "three": {"_count": 1, "fellow": {"_count": 1}}, "others": {"_count": 1, "along": {"_count": 1}}, "me": {"_count": 2, "toward": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 2, "students": {"_count": 1}, "friends": {"_count": 1}}, "Madame": {"_count": 2, "Maxime": {"_count": 1}, "Delacour": {"_count": 1}}, "her": {"_count": 4, "over": {"_count": 1}, "away": {"_count": 1}, "sodden": {"_count": 1}, "and": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 2, "into": {"_count": 1}, "to": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 2, "perhaps": {"_count": 1}, "they": {"_count": 1}}, "for": {"_count": 1, "eighteen": {"_count": 1}}, "Dumbledore": {"_count": 1, "into": {"_count": 1}}, "Hermione": {"_count": 2, "over": {"_count": 1}, "and": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 4, "blameless": {"_count": 1}, "party": {"_count": 1}, "round": {"_count": 1}, "small": {"_count": 1}}, "backstage": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "he": {"_count": 1, "guessed": {"_count": 1}}}, "brokendown": {"_count": 5, "house": {"_count": 1, "": {"_count": 1}}, "escalator": {"_count": 1, "that": {"_count": 1}}, "old": {"_count": 2, "buffer": {"_count": 2}}, "gate": {"_count": 1, "": {"_count": 1}}}, "strongly": {"_count": 15, "of": {"_count": 6, "seaweed": {"_count": 1}, "garlic": {"_count": 1}, "petrol": {"_count": 2}, "dragon": {"_count": 1}, "something": {"_count": 1}}, "reminded": {"_count": 1, "of": {"_count": 1}}, "suspected": {"_count": 2, "she": {"_count": 1}, "that": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "bring": {"_count": 1}}, "in": {"_count": 1, "any": {"_count": 1}}, "tempted": {"_count": 1, "to": {"_count": 1}}, "enough": {"_count": 2, "how": {"_count": 1}, "I": {"_count": 1}}}, "seaweed": {"_count": 2, "the": {"_count": 1, "wind": {"_count": 1}}, "he": {"_count": 1, "struck": {"_count": 1}}}, "whistled": {"_count": 7, "through": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "piercingly": {"_count": 1, "or": {"_count": 1}}, "the": {"_count": 1, "Creevey": {"_count": 1}}, "to": {"_count": 1, "summon": {"_count": 1}}}, "gaps": {"_count": 8, "in": {"_count": 4, "the": {"_count": 3}, "their": {"_count": 1}}, "following": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "Uncle": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}}, "wooden": {"_count": 89, "walls": {"_count": 1, "and": {"_count": 1}}, "house": {"_count": 3, "on": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}}, "crate": {"_count": 2, "under": {"_count": 2}}, "club": {"_count": 1, "which": {"_count": 1}}, "flute": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 5, "and": {"_count": 1}, "": {"_count": 1}, "leading": {"_count": 1}, "after": {"_count": 1}, "each": {"_count": 1}}, "table": {"_count": 11, "and": {"_count": 2}, "his": {"_count": 1}, "with": {"_count": 2}, "in": {"_count": 1}, "stood": {"_count": 1}, "that": {"_count": 1}, "where": {"_count": 1}, "Fang": {"_count": 1}, "": {"_count": 1}}, "street": {"_count": 1, "sign": {"_count": 1}}, "doors": {"_count": 1, "to": {"_count": 1}}, "desks": {"_count": 1, "on": {"_count": 1}}, "chairs": {"_count": 2, "": {"_count": 1}, "some": {"_count": 1}}, "staircase": {"_count": 4, "": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 2}}, "pail": {"_count": 1, "": {"_count": 1}}, "crates": {"_count": 2, "and": {"_count": 1}, "on": {"_count": 1}}, "chair": {"_count": 3, "near": {"_count": 1}, "and": {"_count": 1}, "beside": {"_count": 1}}, "trunk": {"_count": 1, "stood": {"_count": 1}}, "leg": {"_count": 10, "ending": {"_count": 1}, "echoing": {"_count": 1}, "with": {"_count": 2}, "": {"_count": 1}, "growing": {"_count": 1}, "was": {"_count": 1}, "fell": {"_count": 1}, "and": {"_count": 2}}, "cabin": {"_count": 1, "which": {"_count": 1}}, "foot": {"_count": 1, "protruding": {"_count": 1}}, "surface": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "chest": {"_count": 1, "encrusted": {"_count": 1}}, "cup": {"_count": 1, "": {"_count": 1}}, "stool": {"_count": 1, "": {"_count": 1}}, "tables": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "wand": {"_count": 1, "as": {"_count": 1}}, "breadboard": {"_count": 1, "complete": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "ones": {"_count": 1, "with": {"_count": 1}}, "sign": {"_count": 2, "hung": {"_count": 1}, "Harry": {"_count": 1}}, "till": {"_count": 1, "whose": {"_count": 1}}, "bookcases": {"_count": 1, "and": {"_count": 1}}, "front": {"_count": 3, "door": {"_count": 2}, "doors": {"_count": 1}}, "quite": {"_count": 1, "unlike": {"_count": 1}}, "block": {"_count": 1, "lying": {"_count": 1}}, "floors": {"_count": 1, "": {"_count": 1}}, "floor": {"_count": 4, "": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "man": {"_count": 1, "slowly": {"_count": 1}}, "signpost": {"_count": 1, "that": {"_count": 1}}, "wireless": {"_count": 2, "set": {"_count": 1}, "out": {"_count": 1}}, "hoops": {"_count": 1, "instantly": {"_count": 1}}, "headboard": {"_count": 1, "a": {"_count": 1}}, "wardrobe": {"_count": 1, "and": {"_count": 1}}, "tabletop": {"_count": 1, "gleamed": {"_count": 1}}, "benches": {"_count": 1, "": {"_count": 1}}, "slats": {"_count": 1, "of": {"_count": 1}}, "object": {"_count": 1, "covered": {"_count": 1}}, "cased": {"_count": 1, "wireless": {"_count": 1}}}, "empty": {"_count": 307, "": {"_count": 38, ".": {"_count": 38}}, "chip": {"_count": 1, "bags": {"_count": 1}}, "grate": {"_count": 4, "with": {"_count": 1}, "at": {"_count": 1}, "his": {"_count": 1}, "beneath": {"_count": 1}}, "except": {"_count": 9, "for": {"_count": 9}}, "seat": {"_count": 11, "": {"_count": 3}, "and": {"_count": 2}, "usually": {"_count": 1}, "his": {"_count": 1}, "at": {"_count": 1}, "which": {"_count": 1}, "on": {"_count": 1}, "where": {"_count": 1}}, "compartment": {"_count": 4, "near": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "chamber": {"_count": 2, "off": {"_count": 2}}, "gold": {"_count": 1, "plate": {"_count": 1}}, "and": {"_count": 7, "made": {"_count": 1}, "silent": {"_count": 1}, "he": {"_count": 1}, "much": {"_count": 1}, "Im": {"_count": 1}, "there": {"_count": 1}, "ragged": {"_count": 1}}, "painting": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 7, "mind": {"_count": 4}, "pockets": {"_count": 1}, "almost": {"_count": 1}, "brain": {"_count": 1}}, "room": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "brandy": {"_count": 2, "bottles": {"_count": 1}, "glass": {"_count": 1}}, "but": {"_count": 8, "a": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "for": {"_count": 4}, "no": {"_count": 1}}, "squares": {"_count": 1, "that": {"_count": 1}}, "before": {"_count": 1, "next": {"_count": 1}}, "their": {"_count": 1, "trunks": {"_count": 1}}, "food": {"_count": 1, "tray": {"_count": 1}}, "bowl": {"_count": 1, "back": {"_count": 1}}, "No": {"_count": 1, "note": {"_count": 1}}, "chair": {"_count": 12, "at": {"_count": 3}, "stood": {"_count": 2}, "": {"_count": 2}, "eyes": {"_count": 1}, "too": {"_count": 1}, "and": {"_count": 1}, "beside": {"_count": 2}}, "fireplace": {"_count": 3, "where": {"_count": 1}, "burst": {"_count": 1}, "tiny": {"_count": 1}}, "classroom": {"_count": 6, "and": {"_count": 1}, "one": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}, "limped": {"_count": 1}, "into": {"_count": 1}}, "table": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "lacewing": {"_count": 1, "bag": {"_count": 1}}, "Gryffindor": {"_count": 1, "common": {"_count": 1}}, "chairs": {"_count": 2, "set": {"_count": 1}, "": {"_count": 1}}, "until": {"_count": 1, "past": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "Chamber": {"_count": 1, "": {"_count": 1}}, "cage": {"_count": 4, "to": {"_count": 1}, "away": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "chocolate": {"_count": 1, "wrapper": {"_count": 1}}, "as": {"_count": 5, "people": {"_count": 1}, "the": {"_count": 1}, "last": {"_count": 1}, "often": {"_count": 1}, "Ivor": {"_count": 1}}, "passage": {"_count": 3, "to": {"_count": 1}, "but": {"_count": 1}, "where": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 1}, "make": {"_count": 1}, "completely": {"_count": 1}}, "tankard": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "teacup": {"_count": 2, "": {"_count": 2}}, "goblet": {"_count": 3, "was": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "row": {"_count": 1, "of": {"_count": 1}}, "dormitory": {"_count": 2, "and": {"_count": 1}, "still": {"_count": 1}}, "castle": {"_count": 2, "and": {"_count": 1}, "wondering": {"_count": 1}}, "common": {"_count": 4, "room": {"_count": 4}}, "bed": {"_count": 2, "and": {"_count": 1}, "beside": {"_count": 1}}, "when": {"_count": 5, "he": {"_count": 3}, "thoughts": {"_count": 1}, "it": {"_count": 1}}, "even": {"_count": 2, "though": {"_count": 1}, "the": {"_count": 1}}, "shell": {"_count": 1, "": {"_count": 1}}, "entrance": {"_count": 1, "hall": {"_count": 1}}, "hand": {"_count": 4, "and": {"_count": 2}, "from": {"_count": 1}, "to": {"_count": 1}}, "sockets": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 2, "come": {"_count": 1}, "": {"_count": 1}}, "tank": {"_count": 1, "stood": {"_count": 1}}, "grindylow": {"_count": 1, "tank": {"_count": 1}}, "drinks": {"_count": 1, "can": {"_count": 1}}, "space": {"_count": 3, "with": {"_count": 1}, "beside": {"_count": 1}, "in": {"_count": 1}}, "seats": {"_count": 4, "there": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 1}, "which": {"_count": 1}}, "dishes": {"_count": 1, "filled": {"_count": 1}}, "armchair": {"_count": 1, "and": {"_count": 1}}, "brain": {"_count": 1, "Jump": {"_count": 1}}, "echoing": {"_count": 1, "feeling": {"_count": 1}}, "he": {"_count": 3, "had": {"_count": 2}, "was": {"_count": 1}}, "of": {"_count": 4, "everyone": {"_count": 1}, "proper": {"_count": 1}, "any": {"_count": 1}, "expression": {"_count": 1}}, "helmet": {"_count": 1, "that": {"_count": 1}}, "boxes": {"_count": 1, "of": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "rectangular": {"_count": 1, "swimming": {"_count": 1}}, "napkin": {"_count": 1, "and": {"_count": 1}}, "bottle": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "corridor": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "classrooms": {"_count": 1, "which": {"_count": 1}}, "Transfiguration": {"_count": 1, "classroom": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "beneath": {"_count": 1, "its": {"_count": 1}}, "to": {"_count": 2, "avoid": {"_count": 1}, "switch": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "starstrewn": {"_count": 1, "sky": {"_count": 1}}, "house": {"_count": 2, "creaked": {"_count": 1}, "right": {"_count": 1}}, "for": {"_count": 1, "ages": {"_count": 1}}, "wine": {"_count": 1, "bottles": {"_count": 1}}, "plate": {"_count": 1, "and": {"_count": 1}}, "leather": {"_count": 1, "gloves": {"_count": 1}}, "picture": {"_count": 1, "on": {"_count": 1}}, "ink": {"_count": 2, "bottle": {"_count": 1}, "bottles": {"_count": 1}}, "white": {"_count": 1, "eyes": {"_count": 1}}, "cauldron": {"_count": 1, "": {"_count": 1}}, "corridors": {"_count": 1, "back": {"_count": 1}}, "nearly": {"_count": 1, "everyone": {"_count": 1}}, "butterbeer": {"_count": 1, "bottles": {"_count": 1}}, "ingredient": {"_count": 1, "jars": {"_count": 1}}, "stands": {"_count": 1, "and": {"_count": 1}}, "feeling": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "cereal": {"_count": 1, "bowl": {"_count": 1}}, "frame": {"_count": 3, "in": {"_count": 1}, "": {"_count": 2}}, "portrait": {"_count": 2, "his": {"_count": 1}, "of": {"_count": 1}}, "canvas": {"_count": 3, "remained": {"_count": 1}, "": {"_count": 1}, "her": {"_count": 1}}, "drawing": {"_count": 1, "room": {"_count": 1}}, "Droobles": {"_count": 1, "Blowing": {"_count": 1}}, "yourself": {"_count": 1, "of": {"_count": 1}}, "sherry": {"_count": 1, "bottle": {"_count": 1}}, "nothing": {"_count": 1, "was": {"_count": 1}}, "whenever": {"_count": 1, "Ive": {"_count": 1}}, "kitchen": {"_count": 2, "stealing": {"_count": 1}, "and": {"_count": 1}}, "palm": {"_count": 1, "and": {"_count": 1}}, "aisle": {"_count": 1, "flickered": {"_count": 1}}, "words": {"_count": 5, "": {"_count": 3}, "the": {"_count": 1}, "could": {"_count": 1}}, "glass": {"_count": 5, "on": {"_count": 1}, "over": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "inn": {"_count": 1, "and": {"_count": 1}}, "yard": {"_count": 1, "and": {"_count": 1}}, "breakfast": {"_count": 1, "tray": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "threat": {"_count": 1, "": {"_count": 1}}, "bottles": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "stomach": {"_count": 1, "": {"_count": 1}}, "vase": {"_count": 1, "standing": {"_count": 1}}, "this": {"_count": 1, "afternoon": {"_count": 1}}, "potion": {"_count": 1, "bottles": {"_count": 1}}, "the": {"_count": 2, "basin": {"_count": 1}, "snakelike": {"_count": 1}}, "or": {"_count": 1, "nearly": {"_count": 1}}, "drawers": {"_count": 1, "and": {"_count": 1}}, "darkness": {"_count": 1, "and": {"_count": 1}}, "plates": {"_count": 1, "onto": {"_count": 1}}, "dance": {"_count": 1, "floor": {"_count": 1}}, "eye": {"_count": 1, "sockets": {"_count": 1}}, "showing": {"_count": 1, "nothing": {"_count": 1}}, "basin": {"_count": 1, "": {"_count": 1}}, "theater": {"_count": 1, "": {"_count": 1}}, "office": {"_count": 1, "opened": {"_count": 1}}, "handed": {"_count": 1, "out": {"_count": 1}}, "one": {"_count": 1, "bickering": {"_count": 1}}, "stunned": {"_count": 1, "": {"_count": 1}}, "hilltop": {"_count": 1, "and": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "cellar": {"_count": 1, "ablaze": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "sea": {"_count": 1, "and": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "goblets": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "plinth": {"_count": 1, "whose": {"_count": 1}}, "hands": {"_count": 1, "curled": {"_count": 1}}}, "rooms": {"_count": 35, "": {"_count": 11, ".": {"_count": 11}}, "the": {"_count": 2, "next": {"_count": 1}, "Gryffindors": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "beyond": {"_count": 1, "his": {"_count": 1}}, "Colin": {"_count": 1, "called": {"_count": 1}}, "where": {"_count": 1, "their": {"_count": 1}}, "by": {"_count": 1, "six": {"_count": 1}}, "to": {"_count": 1, "check": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Wood": {"_count": 1}}, "Harry": {"_count": 1, "strode": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "insisting": {"_count": 1, "that": {"_count": 1}}, "immediately": {"_count": 1, "or": {"_count": 1}}, "alone": {"_count": 2, "": {"_count": 1}, "imprisoned": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "usual": {"_count": 1, "furniture": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "been": {"_count": 1, "fighting": {"_count": 1}}}, "chips": {"_count": 3, "each": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "ice": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}}, "bananas": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fire": {"_count": 349, "but": {"_count": 7, "the": {"_count": 1}, "he": {"_count": 1}, "Frank": {"_count": 1}, "just": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}, "a": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 1}, "your": {"_count": 1}, "its": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 86, ".": {"_count": 81}, "?": {"_count": 4}, "!": {"_count": 1}}, "at": {"_count": 7, "the": {"_count": 5}, "a": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 11, "his": {"_count": 1}, "it": {"_count": 2}, "get": {"_count": 1}, "Snape": {"_count": 1}, "send": {"_count": 1}, "stave": {"_count": 1}, "speak": {"_count": 1}, "communicate": {"_count": 1}, "return": {"_count": 1}, "their": {"_count": 1}}, "and": {"_count": 32, "got": {"_count": 1}, "in": {"_count": 1}, "one": {"_count": 2}, "threw": {"_count": 1}, "perched": {"_count": 1}, "gazing": {"_count": 1}, "set": {"_count": 1}, "with": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 4}, "raised": {"_count": 1}, "said": {"_count": 1}, "placing": {"_count": 1}, "although": {"_count": 1}, "see": {"_count": 1}, "cried": {"_count": 1}, "he": {"_count": 1}, "vanished": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "turned": {"_count": 1}, "shouted": {"_count": 1}, "Harry": {"_count": 1}, "looking": {"_count": 1}, "Ron": {"_count": 1}, "for": {"_count": 1}, "rock": {"_count": 1}}, "that": {"_count": 9, "could": {"_count": 2}, "was": {"_count": 3}, "she": {"_count": 1}, "surrounded": {"_count": 1}, "sent": {"_count": 1}, "filled": {"_count": 1}}, "from": {"_count": 2, "view": {"_count": 1}, "its": {"_count": 1}}, "off": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 15, "the": {"_count": 7}, "my": {"_count": 1}, "Gryffindor": {"_count": 1}, "midair": {"_count": 1}, "there": {"_count": 1}, "October": {"_count": 1}, "Hogwarts": {"_count": 1}, "Dolores": {"_count": 1}, "which": {"_count": 1}}, "underneath": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 2}}, "cause": {"_count": 1, "their": {"_count": 1}}, "than": {"_count": 1, "Norbert": {"_count": 1}}, "sprang": {"_count": 2, "up": {"_count": 2}}, "either": {"_count": 1, "it": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 3, "he": {"_count": 1}, "shall": {"_count": 1}, "clambered": {"_count": 1}}, "I": {"_count": 1, "award": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 2}, "Ron": {"_count": 1}, "Luna": {"_count": 1}, "Hermione": {"_count": 1}}, "turned": {"_count": 1, "emerald": {"_count": 1}}, "roared": {"_count": 1, "and": {"_count": 1}}, "say": {"_count": 1, "where": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "crackling": {"_count": 3, "merrily": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "with": {"_count": 3, "accompanying": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "his": {"_count": 3, "routine": {"_count": 1}, "head": {"_count": 1}, "knees": {"_count": 1}}, "beneath": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "To": {"_count": 1, "Harrys": {"_count": 1}}, "Harry": {"_count": 6, "had": {"_count": 3}, "explained": {"_count": 1}, "settled": {"_count": 1}, "sped": {"_count": 1}}, "before": {"_count": 1, "eating": {"_count": 1}}, "was": {"_count": 11, "crackling": {"_count": 2}, "still": {"_count": 1}, "alight": {"_count": 1}, "the": {"_count": 2}, "ready": {"_count": 1}, "roaring": {"_count": 1}, "almost": {"_count": 1}, "mutating": {"_count": 1}, "consuming": {"_count": 1}}, "spilling": {"_count": 1, "water": {"_count": 1}}, "had": {"_count": 3, "burned": {"_count": 1}, "been": {"_count": 1}, "vanished": {"_count": 1}}, "burst": {"_count": 2, "into": {"_count": 1}, "from": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "omens": {"_count": 1, "that": {"_count": 1}}, "him": {"_count": 2, "straight": {"_count": 1}, "would": {"_count": 1}}, "getting": {"_count": 1, "up": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "slowly": {"_count": 1, "turning": {"_count": 1}}, "blazing": {"_count": 1, "while": {"_count": 1}}, "still": {"_count": 1, "littered": {"_count": 1}}, "seized": {"_count": 1, "a": {"_count": 1}}, "beside": {"_count": 2, "them": {"_count": 2}}, "folded": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 2, "now": {"_count": 1}, "muttered": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "plugged": {"_count": 1, "in": {"_count": 1}}, "only": {"_count": 1, "youve": {"_count": 1}}, "shot": {"_count": 3, "across": {"_count": 1}, "out": {"_count": 1}, "from": {"_count": 1}}, "saying": {"_count": 1, "the": {"_count": 1}}, "shouted": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 1, "over": {"_count": 1}}, "while": {"_count": 1, "a": {"_count": 1}}, "started": {"_count": 1, "yet": {"_count": 1}}, "lit": {"_count": 1, "though": {"_count": 1}}, "vigorously": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "tongs": {"_count": 1, "and": {"_count": 1}}, "warmed": {"_count": 1, "the": {"_count": 1}}, "met": {"_count": 1, "their": {"_count": 1}}, "facing": {"_count": 1, "the": {"_count": 1}}, "always": {"_count": 1, "made": {"_count": 1}}, "it": {"_count": 2, "turned": {"_count": 1}, "was": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}, "assuming": {"_count": 1, "nothing": {"_count": 1}}, "were": {"_count": 2, "shooting": {"_count": 1}, "heavier": {"_count": 1}}, "clouds": {"_count": 1, "into": {"_count": 1}}, "if": {"_count": 1, "someone": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "again": {"_count": 5, "Harry": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "put": {"_count": 1}}, "looked": {"_count": 1, "over": {"_count": 1}}, "crabs": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "icy": {"_count": 1}}, "miss": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 5, "screaming": {"_count": 1}, "previous": {"_count": 1}, "first": {"_count": 1}, "wizards": {"_count": 1}, "clink": {"_count": 1}}, "Ron": {"_count": 1, "dropped": {"_count": 1}}, "every": {"_count": 1, "hour": {"_count": 1}}, "guttered": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "much": {"_count": 1}}, "trying": {"_count": 1, "despite": {"_count": 1}}, "Marietta": {"_count": 1, "extinguished": {"_count": 1}}, "all": {"_count": 1, "apart": {"_count": 1}}, "nearly": {"_count": 1, "everybody": {"_count": 1}}, "wishing": {"_count": 1, "more": {"_count": 1}}, "merely": {"_count": 1, "crackled": {"_count": 1}}, "apparently": {"_count": 1, "immensely": {"_count": 1}}, "upstairs": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "as": {"_count": 4, "the": {"_count": 2}, "though": {"_count": 1}, "a": {"_count": 1}}, "Kreacher": {"_count": 1, "informed": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Sirius": {"_count": 1, "was": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "green": {"_count": 1, "": {"_count": 1}}, "twisting": {"_count": 1, "a": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "staring": {"_count": 1, "into": {"_count": 1}}, "erupted": {"_count": 1, "crimson": {"_count": 1}}, "dancing": {"_count": 1, "in": {"_count": 1}}, "moving": {"_count": 1, "with": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "vanished": {"_count": 1, "but": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "Flames": {"_count": 1, "reared": {"_count": 1}}, "its": {"_count": 2, "me": {"_count": 1}, "one": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "door": {"_count": 1, "beside": {"_count": 1}}, "danced": {"_count": 1, "into": {"_count": 1}}, "crackled": {"_count": 2, "and": {"_count": 2}}, "Id": {"_count": 1, "sometimes": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "of": {"_count": 1, "driftwood": {"_count": 1}}, "leapt": {"_count": 1, "and": {"_count": 1}}, "kept": {"_count": 1, "their": {"_count": 1}}, "pursued": {"_count": 1, "them": {"_count": 1}}, "Crabbe": {"_count": 1, "had": {"_count": 1}}, "What": {"_count": 1, "a": {"_count": 1}}, "cast": {"_count": 1, "them": {"_count": 1}}, "burned": {"_count": 1, "in": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}}, "chip": {"_count": 4, "bags": {"_count": 2, "just": {"_count": 1}, "in": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "away": {"_count": 1, "at": {"_count": 1}}}, "bags": {"_count": 42, "just": {"_count": 2, "smoked": {"_count": 1}, "inside": {"_count": 1}}, "in": {"_count": 3, "it": {"_count": 1}, "ten": {"_count": 1}, "the": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 10, "books": {"_count": 4}, "was": {"_count": 1}, "followed": {"_count": 1}, "dragged": {"_count": 1}, "propped": {"_count": 1}, "no": {"_count": 1}, "swung": {"_count": 1}}, "before": {"_count": 1, "dinner": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "or": {"_count": 1, "clamped": {"_count": 1}}, "telling": {"_count": 1, "people": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "considerably": {"_count": 2, "lighter": {"_count": 2}}, "Ron": {"_count": 1, "looking": {"_count": 1}}, "one": {"_count": 1, "lunchtime": {"_count": 1}}, "the": {"_count": 1, "same": {"_count": 1}}, "crammed": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 1, "cover": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "say": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "Ive": {"_count": 1, "brought": {"_count": 1}}, "capacious": {"_count": 1, "depths": {"_count": 1}}, "dress": {"_count": 1, "in": {"_count": 1}}}, "smoked": {"_count": 3, "and": {"_count": 2, "shriveled": {"_count": 1}, "stung": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "shriveled": {"_count": 14, "up": {"_count": 1, "": {"_count": 1}}, "chip": {"_count": 1, "bags": {"_count": 1}}, "many": {"_count": 1, "people": {"_count": 1}}, "cauliflower": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "pods": {"_count": 1}}, "clawlike": {"_count": 1, "hand": {"_count": 1}}, "face": {"_count": 1, "contorted": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "bean": {"_count": 1, "could": {"_count": 1}}, "brown": {"_count": 1, "objects": {"_count": 1}}, "kidneylike": {"_count": 1, "stone": {"_count": 1}}, "little": {"_count": 1, "face": {"_count": 1}}, "arm": {"_count": 1, "His": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "eh": {"_count": 82, "": {"_count": 71, "?": {"_count": 70}, "!": {"_count": 1}}, "PPPotter": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "Ern": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "Perce": {"_count": 1, "": {"_count": 1}}, "Barty": {"_count": 1, "": {"_count": 1}}, "elf": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 2}}, "wheres": {"_count": 1, "Slytherins": {"_count": 1}}}, "Obviously": {"_count": 15, "he": {"_count": 1, "thought": {"_count": 1}}, "youve": {"_count": 1, "just": {"_count": 1}}, "not": {"_count": 1, "Mr": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "I": {"_count": 1, "received": {"_count": 1}}, "they": {"_count": 2, "are": {"_count": 1}, "didnt": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Potter": {"_count": 1, "doesnt": {"_count": 1}}, "we": {"_count": 1, "didnt": {"_count": 1}}, "Harry": {"_count": 1, "he": {"_count": 1}}, "she": {"_count": 1, "couldnt": {"_count": 1}}, "Malfoy": {"_count": 1, "could": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}}, "chance": {"_count": 201, "of": {"_count": 32, "reaching": {"_count": 1}, "guessing": {"_count": 1}, "making": {"_count": 1}, "sneaking": {"_count": 1}, "meeting": {"_count": 1}, "fixing": {"_count": 1}, "talking": {"_count": 1}, "overturning": {"_count": 1}, "cornering": {"_count": 1}, "turning": {"_count": 1}, "more": {"_count": 1}, "getting": {"_count": 3}, "winning": {"_count": 2}, "continuing": {"_count": 1}, "becoming": {"_count": 1}, "being": {"_count": 1}, "letting": {"_count": 1}, "conquering": {"_count": 1}, "passing": {"_count": 1}, "survival": {"_count": 1}, "persuading": {"_count": 1}, "it": {"_count": 1}, "thrashing": {"_count": 1}, "either": {"_count": 1}, "accompanying": {"_count": 1}, "defending": {"_count": 1}, "taking": {"_count": 1}, "replacing": {"_count": 1}, "little": {"_count": 1}}, "My": {"_count": 1, "dear": {"_count": 1}}, "they": {"_count": 4, "were": {"_count": 1}, "werent": {"_count": 1}, "kiss": {"_count": 1}, "might": {"_count": 1}}, "to": {"_count": 48, "beat": {"_count": 1}, "answer": {"_count": 1}, "get": {"_count": 4}, "stretch": {"_count": 2}, "talk": {"_count": 1}, "look": {"_count": 2}, "speak": {"_count": 6}, "see": {"_count": 2}, "win": {"_count": 1}, "tip": {"_count": 1}, "hide": {"_count": 1}, "show": {"_count": 1}, "compete": {"_count": 1}, "persuade": {"_count": 1}, "prepare": {"_count": 1}, "destroy": {"_count": 1}, "other": {"_count": 1}, "tell": {"_count": 2}, "raise": {"_count": 1}, "ask": {"_count": 1}, "expel": {"_count": 1}, "use": {"_count": 1}, "rage": {"_count": 1}, "do": {"_count": 1}, "prove": {"_count": 1}, "recommend": {"_count": 1}, "deplore": {"_count": 1}, "demonstrate": {"_count": 1}, "search": {"_count": 1}, "address": {"_count": 1}, "sneak": {"_count": 1}, "find": {"_count": 2}, "take": {"_count": 1}, "escape": {"_count": 1}, "nick": {"_count": 1}}, "Gryffindor": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 32, "?": {"_count": 2}, ".": {"_count": 26}, "!": {"_count": 4}}, "was": {"_count": 3, "to": {"_count": 2}, "the": {"_count": 1}}, "the": {"_count": 2, "attacker": {"_count": 1}, "only": {"_count": 1}}, "at": {"_count": 4, "all": {"_count": 4}}, "that": {"_count": 8, "Ginny": {"_count": 1}, "saved": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 2}, "a": {"_count": 1}, "she": {"_count": 1}, "this": {"_count": 1}}, "did": {"_count": 2, "a": {"_count": 1}, "that": {"_count": 1}}, "he": {"_count": 3, "rammed": {"_count": 1}, "sometimes": {"_count": 1}, "could": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "my": {"_count": 1, "last": {"_count": 1}}, "well": {"_count": 2, "get": {"_count": 1}, "be": {"_count": 1}}, "with": {"_count": 1, "these": {"_count": 1}}, "Quickly": {"_count": 1, "and": {"_count": 1}}, "against": {"_count": 2, "Black": {"_count": 1}, "his": {"_count": 1}}, "theyre": {"_count": 1, "all": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 1, "explain": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "boys": {"_count": 1, "not": {"_count": 1}}, "we": {"_count": 1, "got": {"_count": 1}}, "writing": {"_count": 1, "out": {"_count": 1}}, "but": {"_count": 1, "most": {"_count": 1}}, "said": {"_count": 6, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "Harry": {"_count": 2}, "Griphook": {"_count": 1}}, "many": {"_count": 1, "would": {"_count": 1}}, "for": {"_count": 3, "us": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}}, "hear": {"_count": 1, "what": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "if": {"_count": 1, "hes": {"_count": 1}}, "is": {"_count": 2, "some": {"_count": 1}, "to": {"_count": 1}}, "you": {"_count": 2, "could": {"_count": 1}, "get": {"_count": 1}}, "does": {"_count": 1, "she": {"_count": 1}}, "depending": {"_count": 1, "how": {"_count": 1}}, "I": {"_count": 2, "had": {"_count": 1}, "might": {"_count": 1}}, "theyll": {"_count": 1, "remember": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "whatsoever": {"_count": 1, "of": {"_count": 1}}, "Im": {"_count": 1, "goin": {"_count": 1}}, "ter": {"_count": 2, "get": {"_count": 1}, "do": {"_count": 1}}, "and": {"_count": 2, "flew": {"_count": 1}, "the": {"_count": 1}}, "weve": {"_count": 2, "had": {"_count": 1}, "got": {"_count": 1}}, "PETRIFICUS": {"_count": 1, "TOT": {"_count": 1}}, "it": {"_count": 1, "wouldnt": {"_count": 1}}, "another": {"_count": 1, "one": {"_count": 1}}, "all": {"_count": 1, "these": {"_count": 1}}, "hed": {"_count": 1, "keep": {"_count": 1}}, "yet": {"_count": 1, "of": {"_count": 1}}, "those": {"_count": 1, "wreckers": {"_count": 1}}, "Umbridge": {"_count": 1, "has": {"_count": 1}}, "someones": {"_count": 1, "destroyed": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "He": {"_count": 1, "leapt": {"_count": 1}}, "Kill": {"_count": 1, "the": {"_count": 1}}}, "reaching": {"_count": 33, "them": {"_count": 2, "here": {"_count": 1}, "at": {"_count": 1}}, "Hogwarts": {"_count": 1, "in": {"_count": 1}}, "out": {"_count": 5, "and": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 2}}, "under": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 7, "end": {"_count": 1}, "bar": {"_count": 1}, "dungeon": {"_count": 1}, "windows": {"_count": 1}, "Burrow": {"_count": 1}, "street": {"_count": 1}, "bottom": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 4, "his": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 2}}, "an": {"_count": 1, "unassailable": {"_count": 1}}, "boiling": {"_count": 1, "point": {"_count": 1}}, "groping": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 1, "last": {"_count": 1}}, "danger": {"_count": 1, "point": {"_count": 1}}, "up": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "a": {"_count": 2, "peak": {"_count": 1}, "distant": {"_count": 1}}}, "storm": {"_count": 24, "to": {"_count": 1, "deliver": {"_count": 1}}, "blew": {"_count": 1, "up": {"_count": 1}}, "raged": {"_count": 1, "more": {"_count": 1}}, "outside": {"_count": 1, "dropped": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "was": {"_count": 2, "over": {"_count": 1}, "even": {"_count": 1}}, "of": {"_count": 7, "cheering": {"_count": 1}, "applause": {"_count": 2}, "clapping": {"_count": 1}, "crying": {"_count": 1}, "catcalls": {"_count": 1}, "protest": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "raging": {"_count": 1, "outside": {"_count": 1}}, "had": {"_count": 1, "blown": {"_count": 1}}, "once": {"_count": 1, "they": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "Dumbledore": {"_count": 1}}, "that": {"_count": 1, "reached": {"_count": 1}}}, "privately": {"_count": 6, "agreed": {"_count": 2, "though": {"_count": 1}, "": {"_count": 1}}, "felt": {"_count": 1, "hed": {"_count": 1}}, "thinking": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 2, "Sloper": {"_count": 1}, "what": {"_count": 1}}}, "cheer": {"_count": 26, "him": {"_count": 4, "up": {"_count": 4}}, "Ron": {"_count": 2, "up": {"_count": 2}}, "yet": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 6, "its": {"_count": 1}, "Hagrid": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}, "Winky": {"_count": 1}}, "as": {"_count": 1, "Neville": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "Harry": {"_count": 1, "up": {"_count": 1}}, "before": {"_count": 1, "we": {"_count": 1}}, "her": {"_count": 3, "up": {"_count": 3}}, "you": {"_count": 1, "both": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "about": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "groan": {"_count": 1}}, "erupted": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Spray": {"_count": 2, "from": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "at": {"_count": 1}}}, "waves": {"_count": 11, "splattered": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "of": {"_count": 3, "dreamless": {"_count": 1}, "hatred": {"_count": 1}, "shock": {"_count": 1}}, "my": {"_count": 1, "boy": {"_count": 1}}, "a": {"_count": 1, "light": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "slamming": {"_count": 1, "themselves": {"_count": 1}}, "and": {"_count": 1, "sweat": {"_count": 1}}}, "splattered": {"_count": 13, "the": {"_count": 4, "walls": {"_count": 1}, "windows": {"_count": 1}, "grass": {"_count": 1}, "alley": {"_count": 1}}, "with": {"_count": 5, "mud": {"_count": 2}, "ink": {"_count": 2}, "mashed": {"_count": 1}}, "it": {"_count": 1, "yet": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}}, "hut": {"_count": 32, "and": {"_count": 1, "a": {"_count": 1}}, "stooping": {"_count": 1, "so": {"_count": 1}}, "with": {"_count": 2, "flickering": {"_count": 1}, "Ron": {"_count": 1}}, "was": {"_count": 2, "full": {"_count": 2}}, "": {"_count": 8, ".": {"_count": 8}}, "on": {"_count": 3, "the": {"_count": 2}, "alternate": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "of": {"_count": 1, "Hagrids": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "helping": {"_count": 1, "him": {"_count": 1}}, "because": {"_count": 1, "theyd": {"_count": 1}}, "swathed": {"_count": 1, "in": {"_count": 1}}, "after": {"_count": 1, "Professor": {"_count": 1}}, "they": {"_count": 1, "knocked": {"_count": 1}}, "one": {"_count": 1, "hand": {"_count": 1}}, "clearly": {"_count": 1, "visible": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "loomed": {"_count": 1, "out": {"_count": 1}}}, "fierce": {"_count": 25, "wind": {"_count": 2, "rattled": {"_count": 1}, "but": {"_count": 1}}, "wild": {"_count": 1, "shadowy": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "joy": {"_count": 1, "he": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "dive": {"_count": 1, "from": {"_count": 1}}, "heads": {"_count": 1, "and": {"_count": 1}}, "orange": {"_count": 3, "eye": {"_count": 2}, "eyes": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "approval": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "argue": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "pride": {"_count": 1, "and": {"_count": 1}}, "battle": {"_count": 1, "was": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "creature": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "full": {"_count": 1, "stop": {"_count": 1}}, "prickling": {"_count": 1, "of": {"_count": 1}}, "new": {"_count": 1, "sun": {"_count": 1}}}, "filthy": {"_count": 60, "windows": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 7, "Mudblood": {"_count": 2}, "friends": {"_count": 1}, "beasts": {"_count": 1}, "Mudbloods": {"_count": 1}, "blood": {"_count": 2}}, "spider": {"_count": 1, "because": {"_count": 1}}, "pillowcase": {"_count": 1, "he": {"_count": 1}}, "Muggle": {"_count": 3, "fathers": {"_count": 1}, "whats": {"_count": 1}, "a": {"_count": 1}}, "sock": {"_count": 1, "and": {"_count": 1}}, "layabout": {"_count": 1, "": {"_count": 1}}, "hair": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "matted": {"_count": 2, "hair": {"_count": 2}}, "hands": {"_count": 2, "off": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 1, "rotten": {"_count": 1}}, "old": {"_count": 4, "pillowcase": {"_count": 1}, "rag": {"_count": 2}, "man": {"_count": 1}}, "pilfering": {"_count": 1, "poltergeist": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "what": {"_count": 1, "have": {"_count": 1}}, "halfbreeds": {"_count": 1, "blood": {"_count": 1}}, "rag": {"_count": 3, "tied": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "looks": {"_count": 1, "out": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "look": {"_count": 2, "before": {"_count": 1}, "that": {"_count": 1}}, "bare": {"_count": 1, "feet": {"_count": 1}}, "halfblood": {"_count": 1, "WAIT": {"_count": 1}}, "had": {"_count": 1, "entered": {"_count": 1}}, "Quidditch": {"_count": 1, "robes": {"_count": 1}}, "armchair": {"_count": 1, "beside": {"_count": 1}}, "window": {"_count": 1, "and": {"_count": 1}}, "face": {"_count": 1, "clean": {"_count": 1}}, "dirtveined": {"_count": 1, "Muggle": {"_count": 1}}, "hypocrite": {"_count": 2, "": {"_count": 2}}, "than": {"_count": 1, "anywhere": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}, "father": {"_count": 1, "would": {"_count": 1}}, "sign": {"_count": 1, "upon": {"_count": 1}}, "clothing": {"_count": 1, "He": {"_count": 1}}, "cluttered": {"_count": 1, "floor": {"_count": 1}}, "finger": {"_count": 1, "to": {"_count": 1}}, "scavenger": {"_count": 1, "what": {"_count": 1}}, "curved": {"_count": 1, "nails": {"_count": 1}}, "Mudblood": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 1, "blood": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}}, "moldy": {"_count": 14, "blankets": {"_count": 1, "in": {"_count": 1}}, "dog": {"_count": 1, "biscuits": {"_count": 1}}, "peanuts": {"_count": 1, "yelling": {"_count": 1}}, "looking": {"_count": 1, "lace": {"_count": 1}}, "lace": {"_count": 1, "cuff": {"_count": 1}}, "old": {"_count": 3, "tailcoat": {"_count": 1}, "log": {"_count": 1}, "bits": {"_count": 1}}, "cupboard": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "rotting": {"_count": 1}}, "pots": {"_count": 1, "crashing": {"_count": 1}}, "bread": {"_count": 1, "upon": {"_count": 1}}, "cups": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "now": {"_count": 1}}}, "motheaten": {"_count": 12, "sofa": {"_count": 1, "": {"_count": 1}}, "chair": {"_count": 1, "next": {"_count": 1}}, "vulture": {"_count": 1, "and": {"_count": 1}}, "curtains": {"_count": 1, "behind": {"_count": 1}}, "velvet": {"_count": 1, "curtains": {"_count": 1}}, "troll": {"_count": 1, "paused": {"_count": 1}}, "carpet": {"_count": 1, "right": {"_count": 1}}, "covers": {"_count": 1, "his": {"_count": 1}}, "fox": {"_count": 1, "fur": {"_count": 1}}, "fez": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "shawl": {"_count": 1}}, "hat": {"_count": 1, "whom": {"_count": 1}}}, "sofa": {"_count": 41, "": {"_count": 15, ".": {"_count": 15}}, "on": {"_count": 1, "his": {"_count": 1}}, "where": {"_count": 1, "Dudley": {"_count": 1}}, "jerked": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 3, "sagged": {"_count": 1}, "groaned": {"_count": 1}, "this": {"_count": 1}}, "and": {"_count": 4, "drew": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}, "stretched": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "to": {"_count": 2, "slam": {"_count": 1}, "avoid": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "zoomed": {"_count": 2, "forward": {"_count": 1}, "back": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "he": {"_count": 1, "needed": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "arms": {"_count": 1}}, "Hermione": {"_count": 1, "joined": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "keeping": {"_count": 1, "Griphook": {"_count": 1}}}, "lumpy": {"_count": 13, "bed": {"_count": 1, "next": {"_count": 1}}, "package": {"_count": 2, "and": {"_count": 1}, "bounced": {"_count": 1}}, "body": {"_count": 1, "like": {"_count": 1}}, "gray": {"_count": 1, "glue": {"_count": 1}}, "parcel": {"_count": 1, "": {"_count": 1}}, "sweater": {"_count": 1, "over": {"_count": 1}}, "seat": {"_count": 1, "and": {"_count": 1}}, "tablecloth": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 1, "unlikely": {"_count": 1}}, "Amycus": {"_count": 1, "whose": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "mass": {"_count": 1, "of": {"_count": 1}}}, "softest": {"_count": 3, "bit": {"_count": 1, "of": {"_count": 1}}, "most": {"_count": 2, "sweetly": {"_count": 1}, "dangerous": {"_count": 1}}}, "curl": {"_count": 10, "up": {"_count": 3, "under": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "Krum": {"_count": 1, "whom": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "into": {"_count": 1, "a": {"_count": 1}}}, "thinnest": {"_count": 2, "most": {"_count": 1, "ragged": {"_count": 1}}, "of": {"_count": 1, "thin": {"_count": 1}}}, "ragged": {"_count": 24, "blanket": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 1, "wearing": {"_count": 1}}, "pillowcase": {"_count": 1, "": {"_count": 1}}, "bundle": {"_count": 1, "": {"_count": 1}}, "thing": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "old": {"_count": 1, "bit": {"_count": 1}}, "breathing": {"_count": 3, "came": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "gray": {"_count": 2, "robes": {"_count": 1}, "dress": {"_count": 1}}, "and": {"_count": 3, "unwashed": {"_count": 1}, "patched": {"_count": 1}, "still": {"_count": 1}}, "Sorting": {"_count": 1, "Hat": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "raised": {"_count": 1}}, "form": {"_count": 1, "of": {"_count": 1}}, "veil": {"_count": 1, "hanging": {"_count": 1}}, "looking": {"_count": 1, "than": {"_count": 1}}, "collage": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "sat": {"_count": 1}}, "the": {"_count": 1, "Sorting": {"_count": 1}}}, "blanket": {"_count": 12, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 2, "some": {"_count": 1}, "rolled": {"_count": 1}}, "ban": {"_count": 1, "on": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "pale": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}}, "raged": {"_count": 5, "more": {"_count": 1, "and": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}}, "ferociously": {"_count": 5, "as": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "any": {"_count": 1}}, "hit": {"_count": 1, "Bludger": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}}, "shivered": {"_count": 19, "and": {"_count": 6, "turned": {"_count": 1}, "Harry": {"_count": 1}, "drew": {"_count": 1}, "looked": {"_count": 1}, "then": {"_count": 1}, "pressed": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 2, "the": {"_count": 2}}, "slightly": {"_count": 2, "the": {"_count": 1}, "looking": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "looked": {"_count": 1}}, "unlike": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "as": {"_count": 1}}}, "comfortable": {"_count": 30, "his": {"_count": 1, "stomach": {"_count": 1}}, "saying": {"_count": 1, "Voldemort": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "bed": {"_count": 2, "forever": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "enjoyable": {"_count": 1}, "ordered": {"_count": 1}}, "lying": {"_count": 2, "there": {"_count": 1}, "on": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "convince": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "chintz": {"_count": 1, "armchairs": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "job": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "notion": {"_count": 1, "Mr": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "shape": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "winged": {"_count": 2, "armchair": {"_count": 2}}, "experience": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "castle": {"_count": 1, "protected": {"_count": 1}}}, "hunger": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "jumped": {"_count": 1, "off": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "Ron": {"_count": 1}}, "but": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}}, "snores": {"_count": 11, "were": {"_count": 1, "drowned": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "filled": {"_count": 2, "the": {"_count": 2}}, "meant": {"_count": 1, "that": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}, "died": {"_count": 1, "away": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}}, "drowned": {"_count": 30, "by": {"_count": 8, "the": {"_count": 3}, "a": {"_count": 5}}, "but": {"_count": 1, "nothing": {"_count": 1}}, "out": {"_count": 2, "by": {"_count": 2}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Fudges": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "rest": {"_count": 1}, "sound": {"_count": 1}}, "hes": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 4, "a": {"_count": 3}, "the": {"_count": 1}}, "person": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "sound": {"_count": 1}}, "and": {"_count": 1, "become": {"_count": 1}}, "distant": {"_count": 1, "footsteps": {"_count": 1}}, "Harrys": {"_count": 1, "words": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}}, "rolls": {"_count": 17, "of": {"_count": 13, "thunder": {"_count": 2}, "parchment": {"_count": 9}, "parchmenti": {"_count": 1}, "film": {"_count": 1}}, "Harry": {"_count": 1, "Im": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "Kreacher": {"_count": 1}}}, "thunder": {"_count": 15, "that": {"_count": 1, "started": {"_count": 1}}, "of": {"_count": 3, "Uncle": {"_count": 1}, "the": {"_count": 1}, "devouring": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "rumbling": {"_count": 1, "overhead": {"_count": 1}}, "followed": {"_count": 1, "immediately": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "overhead": {"_count": 1, "": {"_count": 1}}, "shook": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "lighted": {"_count": 3, "dial": {"_count": 1, "of": {"_count": 1}}, "windows": {"_count": 2, "of": {"_count": 1}, "blurred": {"_count": 1}}}, "dial": {"_count": 11, "of": {"_count": 1, "Dudleys": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "put": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "whirred": {"_count": 1, "smoothly": {"_count": 1}}, "six": {"_count": 1, "two": {"_count": 1}}, "twirled": {"_count": 1, "and": {"_count": 1}}}, "wrist": {"_count": 37, "told": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 3, "elbow": {"_count": 1}, "stop": {"_count": 1}, "prevent": {"_count": 1}}, "Harry": {"_count": 2, "heard": {"_count": 1}, "swerved": {"_count": 1}}, "hobbled": {"_count": 1, "off": {"_count": 1}}, "movement": {"_count": 1, "weve": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "as": {"_count": 3, "Dobbys": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "forcing": {"_count": 1, "the": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "one": {"_count": 1, "tombstone": {"_count": 1}}, "while": {"_count": 1, "Dumbledore": {"_count": 1}}, "and": {"_count": 6, "her": {"_count": 1}, "pulling": {"_count": 1}, "redirecting": {"_count": 1}, "the": {"_count": 1}, "pulled": {"_count": 1}, "held": {"_count": 1}}, "preventing": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "tick": {"_count": 2, "nearer": {"_count": 1, "wondering": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}}, "nearer": {"_count": 114, "wondering": {"_count": 1, "if": {"_count": 1}}, "and": {"_count": 16, "nearer": {"_count": 14}, "to": {"_count": 1}, "his": {"_count": 1}}, "he": {"_count": 5, "wouldnt": {"_count": 1}, "felt": {"_count": 1}, "discovered": {"_count": 1}, "became": {"_count": 1}, "saw": {"_count": 1}}, "to": {"_count": 16, "the": {"_count": 7}, "his": {"_count": 3}, "Harrys": {"_count": 2}, "Buckbeak": {"_count": 1}, "him": {"_count": 2}, "watch": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "Harry": {"_count": 6, "left": {"_count": 1}, "almost": {"_count": 1}, "twitched": {"_count": 1}, "felt": {"_count": 1}, "come": {"_count": 1}, "who": {"_count": 1}}, "theyd": {"_count": 1, "knock": {"_count": 1}}, "however": {"_count": 3, "Harry": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "home": {"_count": 1, "said": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "locating": {"_count": 1, "the": {"_count": 1}}, "catching": {"_count": 1, "Black": {"_count": 1}}, "No": {"_count": 1, "one": {"_count": 1}}, "but": {"_count": 3, "Harry": {"_count": 1}, "there": {"_count": 1}, "Percy": {"_count": 1}}, "Scabbers": {"_count": 1, "NO": {"_count": 1}}, "his": {"_count": 2, "wand": {"_count": 1}, "wheezy": {"_count": 1}}, "He": {"_count": 2, "must": {"_count": 1}, "was": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 1, "many": {"_count": 1}}, "an": {"_count": 1, "odd": {"_count": 1}}, "was": {"_count": 1, "reassuring": {"_count": 1}}, "walking": {"_count": 2, "up": {"_count": 1}, "steadily": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "case": {"_count": 1}}, "still": {"_count": 3, "to": {"_count": 1}, "he": {"_count": 1}, "invisible": {"_count": 1}}, "the": {"_count": 2, "gap": {"_count": 1}, "Dark": {"_count": 1}}, "laying": {"_count": 1, "hands": {"_count": 1}}, "their": {"_count": 2, "D": {"_count": 1}, "feet": {"_count": 1}}, "Ron": {"_count": 1, "Weasley": {"_count": 1}}, "him": {"_count": 1, "now": {"_count": 1}}, "Dumbledore": {"_count": 1, "remained": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "this": {"_count": 1}}, "Hermione": {"_count": 1, "managed": {"_count": 1}}, "rough": {"_count": 1, "excited": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "thundered": {"_count": 1, "the": {"_count": 1}}}, "writer": {"_count": 3, "was": {"_count": 1, "now": {"_count": 1}}, "had": {"_count": 1, "seen": {"_count": 1}}, "of": {"_count": 1, "Dumbledores": {"_count": 1}}}, "Five": {"_count": 36, "minutes": {"_count": 8, "to": {"_count": 1}, "later": {"_count": 6}, "after": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "you": {"_count": 1, "mean": {"_count": 1}}, "points": {"_count": 7, "from": {"_count": 6}, "for": {"_count": 1}}, "sets": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 2, "their": {"_count": 1}, "Charlies": {"_count": 1}}, "more": {"_count": 3, "points": {"_count": 2}, "minutes": {"_count": 1}}, "four": {"_count": 1, "poster": {"_count": 1}}, "chairs": {"_count": 1, "had": {"_count": 1}}, "Feathers": {"_count": 1, "in": {"_count": 1}}, "oclock": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "minutesll": {"_count": 1, "be": {"_count": 1}}, "different": {"_count": 1, "voices": {"_count": 1}}, "curses": {"_count": 1, "flew": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "years": {"_count": 2, "ago": {"_count": 2}}, "hundred": {"_count": 1, "Galleons": {"_count": 1}}, "days": {"_count": 1, "Ron": {"_count": 1}}}, "creak": {"_count": 13, "outside": {"_count": 2, "": {"_count": 1}, "their": {"_count": 1}}, "open": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "overhead": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 2}, "the": {"_count": 1}, "Greybacks": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 2, "they": {"_count": 1}, "an": {"_count": 1}}}, "warmer": {"_count": 10, "if": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "toward": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 2, "more": {"_count": 1}, "softer": {"_count": 1}}, "weather": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "hand": {"_count": 1, "had": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Four": {"_count": 25, "minutes": {"_count": 1, "to": {"_count": 1}}, "students": {"_count": 1, "out": {"_count": 1}}, "or": {"_count": 1, "five": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "attacks": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "pints": {"_count": 1, "of": {"_count": 1}}, "summers": {"_count": 1, "ago": {"_count": 1}}, "fully": {"_count": 1, "grown": {"_count": 1}}, "people": {"_count": 2, "were": {"_count": 1}, "stood": {"_count": 1}}, "Privet": {"_count": 1, "Drive": {"_count": 1}}, "weeks": {"_count": 1, "with": {"_count": 1}}, "stops": {"_count": 1, "Harry": {"_count": 1}}, "Stunners": {"_count": 1, "straight": {"_count": 1}}, "Stunning": {"_count": 1, "Spells": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 1, "them": {"_count": 1}}, "Ravenclaws": {"_count": 1, "were": {"_count": 1}}, "years": {"_count": 1, "ago": {"_count": 1}}, "objects": {"_count": 1, "from": {"_count": 1}}, "hundred": {"_count": 1, "and": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}}, "Maybe": {"_count": 134, "the": {"_count": 5, "house": {"_count": 1}, "foreign": {"_count": 1}, "job": {"_count": 1}, "Marauders": {"_count": 1}, "Ministry": {"_count": 1}}, "he": {"_count": 19, "thought": {"_count": 2}, "was": {"_count": 1}, "got": {"_count": 1}, "murdered": {"_count": 1}, "knows": {"_count": 1}, "couldnt": {"_count": 1}, "didnt": {"_count": 2}, "thinks": {"_count": 1}, "chooses": {"_count": 1}, "said": {"_count": 1}, "told": {"_count": 1}, "preferred": {"_count": 1}, "doesnt": {"_count": 1}, "wants": {"_count": 1}, "agrees": {"_count": 1}, "did": {"_count": 1}, "is": {"_count": 1}}, "they": {"_count": 6, "had": {"_count": 1}, "think": {"_count": 1}, "couldnt": {"_count": 1}, "need": {"_count": 1}, "make": {"_count": 1}, "wont": {"_count": 1}}, "she": {"_count": 5, "was": {"_count": 2}, "heard": {"_count": 1}, "has": {"_count": 1}, "had": {"_count": 1}}, "Peeves": {"_count": 1, "let": {"_count": 1}}, "Snapes": {"_count": 1, "found": {"_count": 1}}, "it": {"_count": 5, "was": {"_count": 2}, "can": {"_count": 1}, "fell": {"_count": 1}, "wont": {"_count": 1}}, "hes": {"_count": 7, "ill": {"_count": 1}, "left": {"_count": 1}, "not": {"_count": 1}, "been": {"_count": 1}, "broken": {"_count": 1}, "going": {"_count": 1}, "lying": {"_count": 1}}, "its": {"_count": 11, "shy": {"_count": 1}, "asleep": {"_count": 1}, "back": {"_count": 1}, "a": {"_count": 2}, "something": {"_count": 1}, "some": {"_count": 1}, "not": {"_count": 1}, "better": {"_count": 1}, "been": {"_count": 1}, "like": {"_count": 1}}, "well": {"_count": 1, "get": {"_count": 1}}, "youre": {"_count": 2, "going": {"_count": 1}, "taking": {"_count": 1}}, "youd": {"_count": 1, "rather": {"_count": 1}}, "hed": {"_count": 1, "better": {"_count": 1}}, "maybe": {"_count": 1, "she": {"_count": 1}}, "I": {"_count": 4, "was": {"_count": 1}, "am": {"_count": 2}, "could": {"_count": 1}}, "a": {"_count": 3, "vampire": {"_count": 1}, "year": {"_count": 1}, "man": {"_count": 1}}, "theres": {"_count": 1, "something": {"_count": 1}}, "er": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "can": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}}, "your": {"_count": 2, "fathers": {"_count": 1}, "dad": {"_count": 1}}, "not": {"_count": 4, "Thomas": {"_count": 1}, "that": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 1}}, "theyve": {"_count": 3, "escaped": {"_count": 1}, "been": {"_count": 1}, "just": {"_count": 1}}, "someones": {"_count": 1, "hoping": {"_count": 1}}, "hell": {"_count": 1, "believe": {"_count": 1}}, "if": {"_count": 2, "hed": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 1, "give": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "shes": {"_count": 1, "got": {"_count": 1}}, "Percys": {"_count": 1, "poisoning": {"_count": 1}}, "Id": {"_count": 1, "better": {"_count": 1}}, "hang": {"_count": 1, "on": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 1}, "will": {"_count": 1}}, "thats": {"_count": 2, "why": {"_count": 2}}, "": {"_count": 8, ".": {"_count": 8}}, "you": {"_count": 2, "will": {"_count": 1}, "cant": {"_count": 1}}, "Malfoy": {"_count": 1, "hed": {"_count": 1}}, "an": {"_count": 1, "unused": {"_count": 1}}, "Ill": {"_count": 3, "skive": {"_count": 1}, "wake": {"_count": 1}, "break": {"_count": 1}}, "someone": {"_count": 1, "came": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "Voldemortll": {"_count": 1, "send": {"_count": 1}}, "we": {"_count": 1, "bes": {"_count": 1}}, "Sirius": {"_count": 1, "is": {"_count": 1}}, "go": {"_count": 1, "easy": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "being": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "father": {"_count": 1}}, "theyre": {"_count": 1, "only": {"_count": 1}}, "Dumbledore": {"_count": 1, "told": {"_count": 1}}, "Gryffindor": {"_count": 1, "didnt": {"_count": 1}}, "theyll": {"_count": 2, "be": {"_count": 1}, "cover": {"_count": 1}}, "once": {"_count": 2, "Im": {"_count": 2}}}, "steal": {"_count": 44, "one": {"_count": 2, "somehow": {"_count": 1}, "if": {"_count": 1}}, "something": {"_count": 2, "Dumbledore": {"_count": 1}, "of": {"_count": 1}}, "whatever": {"_count": 1, "its": {"_count": 1}}, "it": {"_count": 7, "": {"_count": 3}, "its": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}, "back": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "the": {"_count": 7, "Stone": {"_count": 3}, "Sorcerers": {"_count": 1}, "weapon": {"_count": 2}, "stone": {"_count": 1}}, "food": {"_count": 2, "when": {"_count": 1}, "from": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 1, "or": {"_count": 1}}, "him": {"_count": 1, "now": {"_count": 1}}, "their": {"_count": 1, "secrets": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "that": {"_count": 1, "wand": {"_count": 1}}, "any": {"_count": 1, "Goyle": {"_count": 1}}, "this": {"_count": 1, "weapon": {"_count": 1}}, "another": {"_count": 1, "quick": {"_count": 1}}, "a": {"_count": 3, "prophecy": {"_count": 3}}, "at": {"_count": 1, "the": {"_count": 1}}, "my": {"_count": 1, "glory": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "magic": {"_count": 1, "there": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "back": {"_count": 1, "the": {"_count": 1}}, "Gryffindors": {"_count": 1, "sword": {"_count": 1}}, "his": {"_count": 1, "crown": {"_count": 1}}}, "slapping": {"_count": 14, "hard": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 4, "face": {"_count": 2}, "son": {"_count": 1}, "own": {"_count": 1}}, "loudly": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 2, "small": {"_count": 1}, "hippogriffs": {"_count": 1}}, "it": {"_count": 2, "back": {"_count": 1}, "over": {"_count": 1}}, "Harrys": {"_count": 1, "face": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}, "sounds": {"_count": 2, "on": {"_count": 1}, "of": {"_count": 1}}}, "crunching": {"_count": 9, "noise": {"_count": 5, "": {"_count": 1}, "and": {"_count": 1}, "announced": {"_count": 1}, "pinned": {"_count": 1}, "the": {"_count": 1}}, "footsteps": {"_count": 1, "as": {"_count": 1}}, "up": {"_count": 1, "Siriuss": {"_count": 1}}, "thud": {"_count": 1, "on": {"_count": 1}}, "grinding": {"_count": 1, "sound": {"_count": 1}}}, "crumbling": {"_count": 10, "into": {"_count": 1, "the": {"_count": 1}}, "whitehot": {"_count": 1, "logs": {"_count": 1}}, "house": {"_count": 1, "behind": {"_count": 1}}, "staircase": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "mossy": {"_count": 1, "stone": {"_count": 1}}, "pedestal": {"_count": 1, "will": {"_count": 1}}, "to": {"_count": 1, "soot": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}}, "Thirty": {"_count": 1, "seconds": {"_count": 1, "": {"_count": 1}}}, "twenty": {"_count": 91, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "years": {"_count": 4, "ago": {"_count": 3}, "": {"_count": 1}}, "ghosts": {"_count": 1, "had": {"_count": 1}}, "broomsticks": {"_count": 1, "lying": {"_count": 1}}, "feet": {"_count": 21, "": {"_count": 1}, "into": {"_count": 2}, "of": {"_count": 2}, "above": {"_count": 4}, "long": {"_count": 1}, "you": {"_count": 1}, "tall": {"_count": 1}, "high": {"_count": 2}, "away": {"_count": 5}, "said": {"_count": 1}, "below": {"_count": 1}}, "minutes": {"_count": 19, "later": {"_count": 3}, "to": {"_count": 4}, "not": {"_count": 1}, "said": {"_count": 1}, "Rons": {"_count": 1}, "a": {"_count": 1}, "talking": {"_count": 1}, "after": {"_count": 2}, "": {"_count": 2}, "Ron": {"_count": 1}, "with": {"_count": 1}, "also": {"_count": 1}}, "points": {"_count": 3, "from": {"_count": 1}, "when": {"_count": 1}, "for": {"_count": 1}}, "pairs": {"_count": 2, "of": {"_count": 2}}, "spiders": {"_count": 1, "were": {"_count": 1}}, "small": {"_count": 1, "circular": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "two": {"_count": 1, "pages": {"_count": 1}}, "percent": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "corrected": {"_count": 1}}, "purpleandgilt": {"_count": 1, "chairs": {"_count": 1}}, "wizards": {"_count": 1, "appearing": {"_count": 1}}, "voices": {"_count": 1, "there": {"_count": 1}}, "additional": {"_count": 1, "students": {"_count": 1}}, "people": {"_count": 2, "milling": {"_count": 1}, "They": {"_count": 1}}, "fourth": {"_count": 2, "Harry": {"_count": 1}, "of": {"_count": 1}}, "or": {"_count": 3, "so": {"_count": 2}, "fifty": {"_count": 1}}, "past": {"_count": 1, "nine": {"_count": 1}}, "merpeople": {"_count": 1, "accompanying": {"_count": 1}}, "of": {"_count": 2, "them": {"_count": 1}, "us": {"_count": 1}}, "lifts": {"_count": 1, "stood": {"_count": 1}}, "to": {"_count": 2, "one": {"_count": 1}, "sixty": {"_count": 1}}, "five": {"_count": 2, "butterbeers": {"_count": 1}, "scrolls": {"_count": 1}}, "three": {"_count": 1, "feet": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "your": {"_count": 1}}, "four": {"_count": 2, "more": {"_count": 1}, "hours": {"_count": 1}}, "hopefuls": {"_count": 1, "have": {"_count": 1}}, "wellearned": {"_count": 1, "points": {"_count": 1}}, "golden": {"_count": 1, "grilles": {"_count": 1}}, "more": {"_count": 1, "exploded": {"_count": 1}}}, "nine": {"_count": 87, "maybe": {"_count": 1, "hed": {"_count": 1}}, "and": {"_count": 32, "three": {"_count": 3}, "threequarters": {"_count": 15}, "ten": {"_count": 11}, "a": {"_count": 2}, "Ripper": {"_count": 1}}, "platform": {"_count": 1, "ten": {"_count": 1}}, "over": {"_count": 1, "one": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "sausages": {"_count": 1, "onto": {"_count": 1}}, "seconds": {"_count": 1, "": {"_count": 1}}, "generations": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "them": {"_count": 2}}, "oclock": {"_count": 5, "Muggle": {"_count": 1}, "": {"_count": 1}, "Hagrid": {"_count": 1}, "Potter": {"_count": 1}, "but": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Weasleys": {"_count": 1, "Harry": {"_count": 1}}, "people": {"_count": 1, "two": {"_count": 1}}, "golden": {"_count": 1, "hands": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "planets": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "months": {"_count": 2, "in": {"_count": 1}, "said": {"_count": 1}}, "button": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "which": {"_count": 2, "constitutes": {"_count": 1}, "meant": {"_count": 1}}, "then": {"_count": 1, "they": {"_count": 1}}, "showing": {"_count": 1, "wizards": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "Outstanding": {"_count": 1, "O": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "hands": {"_count": 3, "each": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 1}}, "theres": {"_count": 1, "still": {"_count": 1}}, "\u2018Outstandings": {"_count": 1, "and": {"_count": 1}}, "Sickles": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "Galleons": {"_count": 1, "": {"_count": 1}}, "hundredpage": {"_count": 1, "book": {"_count": 1}}, "to": {"_count": 1, "twelve": {"_count": 1}}, "or": {"_count": 1, "ten": {"_count": 1}}}, "annoy": {"_count": 12, "him": {"_count": 2, "three": {"_count": 1}, "": {"_count": 1}}, "Hermione": {"_count": 1, "as": {"_count": 1}}, "Rita": {"_count": 2, "Skeeter": {"_count": 2}}, "Mum": {"_count": 1, "but": {"_count": 1}}, "them": {"_count": 1, "\u2018Shows": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "Ron": {"_count": 1, "most": {"_count": 1}}, "his": {"_count": 1, "parents": {"_count": 1}}}, "BOOM": {"_count": 3, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}}, "upright": {"_count": 33, "staring": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 3, "broke": {"_count": 1}, "zoomed": {"_count": 1}, "still": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "Peeves": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "draining": {"_count": 1}}, "again": {"_count": 5, "left": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "elderly": {"_count": 1, "man": {"_count": 1}}, "Fleur": {"_count": 1, "had": {"_count": 1}}, "like": {"_count": 1, "his": {"_count": 1}}, "listening": {"_count": 1, "intently": {"_count": 1}}, "in": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 1}, "bed": {"_count": 1}}, "his": {"_count": 3, "arms": {"_count": 1}, "heart": {"_count": 1}, "neck": {"_count": 1}}, "doggypaddle": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "too": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "looking": {"_count": 1, "wildly": {"_count": 1}}, "he": {"_count": 1, "heard": {"_count": 1}}, "the": {"_count": 1, "many": {"_count": 1}}, "wearing": {"_count": 1, "sweeping": {"_count": 1}}}, "knocking": {"_count": 50, "to": {"_count": 1, "come": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "his": {"_count": 2, "bacon": {"_count": 1}, "glasses": {"_count": 1}}, "the": {"_count": 7, "sinks": {"_count": 1}, "tray": {"_count": 1}, "wind": {"_count": 1}, "books": {"_count": 1}, "Quaffle": {"_count": 1}, "shrieking": {"_count": 1}, "lead": {"_count": 1}}, "out": {"_count": 3, "a": {"_count": 2}, "mountain": {"_count": 1}}, "Harry": {"_count": 2, "clean": {"_count": 1}, "backward": {"_count": 1}}, "things": {"_count": 2, "over": {"_count": 2}}, "him": {"_count": 6, "backward": {"_count": 2}, "to": {"_count": 1}, "out": {"_count": 2}, "sideways": {"_count": 1}}, "more": {"_count": 1, "shelves": {"_count": 1}}, "Harrys": {"_count": 1, "glasses": {"_count": 1}}, "spiders": {"_count": 1, "aside": {"_count": 1}}, "it": {"_count": 3, "over": {"_count": 2}, "into": {"_count": 1}}, "Ron": {"_count": 1, "off": {"_count": 1}}, "her": {"_count": 1, "off": {"_count": 1}}, "two": {"_count": 2, "stunned": {"_count": 1}, "boys": {"_count": 1}}, "over": {"_count": 7, "a": {"_count": 2}, "the": {"_count": 4}, "at": {"_count": 1}}, "for": {"_count": 1, "at": {"_count": 1}}, "chairs": {"_count": 1, "and": {"_count": 1}}, "quite": {"_count": 1, "insistently": {"_count": 1}}, "Pansys": {"_count": 1, "hand": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}, "I": {"_count": 1, "invited": {"_count": 1}}, "Slughorn": {"_count": 1, "over": {"_count": 1}}, "Malfoys": {"_count": 1, "wand": {"_count": 1}}}, "KEEPER": {"_count": 3, "OF": {"_count": 1, "THE": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "UNLESS": {"_count": 1, "THE": {"_count": 1}}}, "OF": {"_count": 85, "THE": {"_count": 21, "KEYS": {"_count": 1}, "HEIR": {"_count": 1}, "FAT": {"_count": 1}, "MINISTRY": {"_count": 3}, "WAY": {"_count": 1}, "WANDS": {"_count": 1}, "WAYS": {"_count": 1}, "PHOENIX": {"_count": 1}, "ANCIENT": {"_count": 1}, "HIGH": {"_count": 3}, "SNAKE": {"_count": 1}, "ENTRAIL": {"_count": 1}, "FIRE": {"_count": 1}, "HOGWARTS": {"_count": 1}, "PRINCE": {"_count": 1}, "MUGGLEBORN": {"_count": 1}, "THREE": {"_count": 1}}, "ME": {"_count": 1, "": {"_count": 1}}, "HOGWARTS": {"_count": 6, "Considered": {"_count": 1}, "All": {"_count": 1}, "SCHOOL": {"_count": 1}, "Teachers": {"_count": 1}, "Any": {"_count": 1}, "The": {"_count": 1}}, "BED": {"_count": 2, "": {"_count": 1}, "DOWN": {"_count": 1}}, "ERISED": {"_count": 1, "Christmas": {"_count": 1}}, "YOUR": {"_count": 1, "ABNORMALITY": {"_count": 1}}, "MAGIC": {"_count": 13, "OFFICE": {"_count": 3}, "Arthur": {"_count": 1}, "EMPLOYEE": {"_count": 1}, "Customers": {"_count": 1}, "It": {"_count": 1}, "Harry": {"_count": 1}, "stamped": {"_count": 1}, "WORKER": {"_count": 1}, "Dolores": {"_count": 1}, "The": {"_count": 1}, "PROTECTING": {"_count": 1}}, "PERCYS": {"_count": 1, "BOOK": {"_count": 1}}, "YOU": {"_count": 2, "I": {"_count": 1}, "AT": {"_count": 1}}, "SHAME": {"_count": 1, "WE": {"_count": 1}}, "LINE": {"_count": 1, "WELL": {"_count": 1}}, "SECRETS": {"_count": 2, "HAS": {"_count": 1}, "All": {"_count": 1}}, "ORDER": {"_count": 2, "sign": {"_count": 2}}, "SLYTHERIN": {"_count": 1, "He": {"_count": 1}}, "HARRYS": {"_count": 1, "FROM": {"_count": 1}}, "HERE": {"_count": 1, "": {"_count": 1}}, "LORD": {"_count": 1, "VOLDERMORT": {"_count": 1}}, "HIM": {"_count": 1, "": {"_count": 1}}, "TERROR": {"_count": 1, "AT": {"_count": 1}}, "FIRE": {"_count": 1, "I": {"_count": 1}}, "MR": {"_count": 1, "CROUCH": {"_count": 1}}, "OWLS": {"_count": 1, "What": {"_count": 1}}, "RIDDLE": {"_count": 1, "": {"_count": 1}}, "BINS": {"_count": 1, "TO": {"_count": 1}}, "THIS": {"_count": 1, "JUST": {"_count": 1}}, "BLACK": {"_count": 2, "Mrs": {"_count": 1}, "TOUJOURS": {"_count": 1}}, "MUGGLE": {"_count": 1, "ARTIFACTS": {"_count": 1}}, "MRS": {"_count": 1, "WEASLEY": {"_count": 1}}, "MY": {"_count": 2, "FATHERS": {"_count": 1}, "WAY": {"_count": 1}}, "DIRV": {"_count": 1, "": {"_count": 1}}, "GALLEONS": {"_count": 1, "": {"_count": 1}}, "WITCHCRAFT": {"_count": 1, "AND": {"_count": 1}}, "MINISTRY": {"_count": 1, "OF": {"_count": 1}}, "MAGICAL": {"_count": 1, "ACCIDENTS": {"_count": 1}}, "MYSTERIES": {"_count": 1, "Harry": {"_count": 1}}, "PHLEGM": {"_count": 1, "Harry": {"_count": 1}}, "GAUNT": {"_count": 1, "For": {"_count": 1}}, "ALBUS": {"_count": 4, "DUMBLEDORE": {"_count": 4}}, "SEVERUS": {"_count": 1, "SNAPE": {"_count": 1}}}, "KEYS": {"_count": 1, "BOOM": {"_count": 1, "": {"_count": 1}}}, "cannon": {"_count": 5, "": {"_count": 1, "?": {"_count": 1}}, "and": {"_count": 1, "engulfed": {"_count": 1}}, "fire": {"_count": 1, "as": {"_count": 1}}, "blast": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "stupidly": {"_count": 14, "": {"_count": 6, ".": {"_count": 6}}, "to": {"_count": 1, "see": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "they": {"_count": 1, "stuffed": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "skidding": {"_count": 10, "into": {"_count": 2, "the": {"_count": 2}}, "to": {"_count": 5, "a": {"_count": 5}}, "across": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "on": {"_count": 1}}, "out": {"_count": 1, "onto": {"_count": 1}}}, "warn": {"_count": 28, "you": {"_count": 14, "Im": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 4}, "at": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 2}, "not": {"_count": 1}, "dont": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "yeh": {"_count": 1, "hes": {"_count": 1}}, "him": {"_count": 3, "even": {"_count": 1}, "not": {"_count": 2}}, "the": {"_count": 2, "orchestra": {"_count": 1}, "Dursleys": {"_count": 1}}, "each": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "The": {"_count": 1, "stone": {"_count": 1}}, "Dumbledore": {"_count": 1, "about": {"_count": 1}}, "Hagrid": {"_count": 1, "myself": {"_count": 1}}, "people": {"_count": 1, "not": {"_count": 1}}, "his": {"_count": 1, "master": {"_count": 1}}}, "armed": {"_count": 14, "": {"_count": 3, "!": {"_count": 2}, "?": {"_count": 1}}, "and": {"_count": 1, "extremely": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "only": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "this": {"_count": 1}}, "merpeople": {"_count": 1, "who": {"_count": 1}}, "hug": {"_count": 1, "ruffled": {"_count": 1}}, "security": {"_count": 1, "troll": {"_count": 1}}, "A": {"_count": 1, "quiverful": {"_count": 1}}, "in": {"_count": 1, "certainty": {"_count": 1}}, "squeeze": {"_count": 1, "": {"_count": 1}}}, "pause": {"_count": 85, "": {"_count": 26, ".": {"_count": 26}}, "HUFFLEPUFF": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 2, "voiced": {"_count": 1}, "said": {"_count": 1}}, "to": {"_count": 3, "sniff": {"_count": 1}, "watch": {"_count": 1}, "investigate": {"_count": 1}}, "then": {"_count": 6, "turn": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "Parvati": {"_count": 1}, "a": {"_count": 1}, "Snape": {"_count": 1}}, "and": {"_count": 7, "then": {"_count": 3}, "Harry": {"_count": 1}, "he": {"_count": 1}, "Harrys": {"_count": 1}, "slowly": {"_count": 1}}, "followed": {"_count": 2, "and": {"_count": 1}, "him": {"_count": 1}}, "more": {"_count": 1, "protracted": {"_count": 1}}, "in": {"_count": 13, "which": {"_count": 12}, "the": {"_count": 1}}, "during": {"_count": 3, "which": {"_count": 3}}, "while": {"_count": 6, "Fleurs": {"_count": 1}, "Harry": {"_count": 2}, "they": {"_count": 2}, "knives": {"_count": 1}}, "broken": {"_count": 1, "only": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "before": {"_count": 1, "Dumbledore": {"_count": 1}}, "did": {"_count": 1, "Professor": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "will": {"_count": 1, "carry": {"_count": 1}}, "either": {"_count": 1, "for": {"_count": 1}}, "has": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 1, "awkward": {"_count": 1}}, "filled": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "floating": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}}, "SMASH": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "clean": {"_count": 65, "off": {"_count": 2, "its": {"_count": 1}, "his": {"_count": 1}}, "job": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 2, "before": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "game": {"_count": 1, "so": {"_count": 1}}, "over": {"_count": 1, "Harry": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 2}, "the": {"_count": 2}, "your": {"_count": 1}}, "themselves": {"_count": 1, "clinking": {"_count": 1}}, "which": {"_count": 1, "took": {"_count": 1}}, "and": {"_count": 6, "my": {"_count": 1}, "well": {"_count": 1}, "everything": {"_count": 1}, "fluffy": {"_count": 1}, "the": {"_count": 1}, "warm": {"_count": 1}}, "record": {"_count": 1, "": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "up": {"_count": 1, "the": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "Dumbledore": {"_count": 1, "stood": {"_count": 1}}, "surreptitiously": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "Siriuss": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "cars": {"_count": 1, "similar": {"_count": 1}}, "kitchen": {"_count": 2, "had": {"_count": 1}, "beside": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "glass": {"_count": 1, "and": {"_count": 1}}, "dyou": {"_count": 1, "know": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "robes": {"_count": 1, "Mrs": {"_count": 1}}, "Gryffindor": {"_count": 1, "Tower": {"_count": 1}}, "people": {"_count": 1, "whose": {"_count": 1}}, "air": {"_count": 4, "even": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "filled": {"_count": 1}}, "a": {"_count": 2, "firecrab": {"_count": 1}, "hall": {"_count": 1}}, "your": {"_count": 1, "house": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "plates": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "gaping": {"_count": 1, "hole": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "hands": {"_count": 1, "and": {"_count": 1}}, "dry": {"_count": 1, "robes": {"_count": 1}}, "of": {"_count": 1, "it": {"_count": 1}}, "unblemished": {"_count": 1, "hands": {"_count": 1}}}, "hinges": {"_count": 8, "and": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "let": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}}, "doorway": {"_count": 66, "": {"_count": 19, ".": {"_count": 19}}, "to": {"_count": 8, "the": {"_count": 8}}, "and": {"_count": 3, "peered": {"_count": 1}, "shining": {"_count": 1}, "disappeared": {"_count": 1}}, "Filchs": {"_count": 1, "pale": {"_count": 1}}, "leading": {"_count": 1, "onward": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "muttering": {"_count": 1, "to": {"_count": 1}}, "hung": {"_count": 1, "with": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "illuminated": {"_count": 1, "by": {"_count": 1}}, "he": {"_count": 2, "turned": {"_count": 1}, "remembered": {"_count": 1}}, "shaking": {"_count": 1, "and": {"_count": 1}}, "behind": {"_count": 2, "them": {"_count": 1}, "Mrs": {"_count": 1}}, "looking": {"_count": 1, "out": {"_count": 1}}, "leaning": {"_count": 2, "upon": {"_count": 1}, "on": {"_count": 1}}, "because": {"_count": 1, "Krum": {"_count": 1}}, "Dumbledore": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "wearing": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 3}}, "against": {"_count": 1, "an": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "stood": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "woman": {"_count": 1}}, "listening": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "which": {"_count": 1, "led": {"_count": 1}}, "filling": {"_count": 1, "with": {"_count": 1}}}, "mane": {"_count": 16, "of": {"_count": 14, "hair": {"_count": 1}, "grizzled": {"_count": 4}, "dark": {"_count": 1}, "red": {"_count": 1}, "the": {"_count": 1}, "tawny": {"_count": 1}, "thick": {"_count": 1}, "bushy": {"_count": 1}, "brown": {"_count": 1}, "graying": {"_count": 1}, "silver": {"_count": 1}}, "was": {"_count": 1, "spread": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}}, "tangled": {"_count": 22, "beard": {"_count": 6, "but": {"_count": 1}, "": {"_count": 5}}, "branches": {"_count": 1, "of": {"_count": 1}}, "black": {"_count": 3, "hair": {"_count": 1}, "weed": {"_count": 1}, "beard": {"_count": 1}}, "in": {"_count": 2, "it": {"_count": 1}, "furs": {"_count": 1}}, "wire": {"_count": 1, "": {"_count": 1}}, "love": {"_count": 1, "lives": {"_count": 1}}, "legs": {"_count": 1, "to": {"_count": 1}}, "robes": {"_count": 1, "on": {"_count": 1}}, "hedgerows": {"_count": 1, "beneath": {"_count": 1}}, "itself": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "mess": {"_count": 1, "for": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "roots": {"_count": 1}}}, "glinting": {"_count": 29, "like": {"_count": 1, "black": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "just": {"_count": 1, "above": {"_count": 1}}, "ominously": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "emeralds": {"_count": 1, "": {"_count": 1}}, "maliciously": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 5}}, "eerily": {"_count": 1, "in": {"_count": 1}}, "dangerously": {"_count": 1, "behind": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "brightly": {"_count": 1, "against": {"_count": 1}}, "evilly": {"_count": 1, "above": {"_count": 1}}, "strangely": {"_count": 1, "in": {"_count": 1}}, "eyes": {"_count": 1, "putting": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "beetles": {"_count": 9, "under": {"_count": 1, "all": {"_count": 1}}, "that": {"_count": 1, "stopped": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "imagining": {"_count": 1, "each": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 1, "with": {"_count": 1}}}, "stooping": {"_count": 6, "so": {"_count": 1, "that": {"_count": 1}}, "man": {"_count": 2, "had": {"_count": 1}, "stood": {"_count": 1}}, "figure": {"_count": 1, "bearing": {"_count": 1}}, "to": {"_count": 1, "peer": {"_count": 1}}, "over": {"_count": 1, "another": {"_count": 1}}}, "brushed": {"_count": 16, "the": {"_count": 6, "ceiling": {"_count": 1}, "candlefilled": {"_count": 1}, "threadbare": {"_count": 1}, "necklace": {"_count": 1}, "old": {"_count": 1}, "top": {"_count": 1}}, "rooster": {"_count": 1, "feathers": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "past": {"_count": 1, "them": {"_count": 1}}, "away": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "ankles": {"_count": 1}}, "it": {"_count": 1, "free": {"_count": 1}}, "accidentally": {"_count": 1, "against": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 1, "as": {"_count": 1}}, "snow": {"_count": 1, "from": {"_count": 1}}}, "easily": {"_count": 65, "back": {"_count": 1, "into": {"_count": 1}}, "as": {"_count": 4, "if": {"_count": 1}, "though": {"_count": 2}, "croaky": {"_count": 1}}, "all": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 17}, "?": {"_count": 1}, "!": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 6, "best": {"_count": 2}, "smallest": {"_count": 1}, "largest": {"_count": 1}, "most": {"_count": 2}}, "visible": {"_count": 1, "because": {"_count": 1}}, "be": {"_count": 1, "Slytherins": {"_count": 1}}, "satisfied": {"_count": 2, "": {"_count": 1}, "friend": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "caught": {"_count": 1}, "remembering": {"_count": 1}, "effortlessly": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "onto": {"_count": 1}}, "dont": {"_count": 1, "they": {"_count": 1}}, "his": {"_count": 1, "best": {"_count": 1}}, "sneak": {"_count": 1, "off": {"_count": 1}}, "have": {"_count": 6, "hated": {"_count": 1}, "been": {"_count": 3}, "stood": {"_count": 1}, "picked": {"_count": 1}}, "understand": {"_count": 1, "why": {"_count": 1}}, "detach": {"_count": 1, "his": {"_count": 1}}, "weak": {"_count": 1, "people": {"_count": 1}}, "arranged": {"_count": 1, "I": {"_count": 1}}, "answered": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "remedied": {"_count": 1, "said": {"_count": 1}}, "upset": {"_count": 1, "": {"_count": 1}}, "reach": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "those": {"_count": 1, "Death": {"_count": 1}}, "traced": {"_count": 1, "because": {"_count": 1}}, "definable": {"_count": 1, "in": {"_count": 1}}, "without": {"_count": 1, "effort": {"_count": 1}}}, "frame": {"_count": 43, "": {"_count": 13, ".": {"_count": 13}}, "standing": {"_count": 1, "on": {"_count": 1}}, "us": {"_count": 1, "for": {"_count": 1}}, "because": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 5, "out": {"_count": 2}, "heaved": {"_count": 1}, "leaving": {"_count": 1}, "shriek": {"_count": 1}}, "of": {"_count": 4, "her": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}, "mind": {"_count": 1}}, "eventually": {"_count": 1, "she": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "his": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "was": {"_count": 1, "all": {"_count": 1}}, "permitted": {"_count": 1, "": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "now": {"_count": 1, "contained": {"_count": 1}}, "watching": {"_count": 1, "Harry": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "undoubtedly": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "trembling": {"_count": 1, "with": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "which": {"_count": 1, "hung": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "dropped": {"_count": 227, "a": {"_count": 13, "little": {"_count": 1}, "note": {"_count": 1}, "letter": {"_count": 3}, "blot": {"_count": 1}, "stack": {"_count": 1}, "few": {"_count": 1}, "thick": {"_count": 1}, "bag": {"_count": 1}, "couple": {"_count": 1}, "bottle": {"_count": 1}, "locket": {"_count": 1}}, "the": {"_count": 35, "newspaper": {"_count": 1}, "bit": {"_count": 1}, "Remembrall": {"_count": 1}, "Quaffle": {"_count": 3}, "teapot": {"_count": 1}, "cloak": {"_count": 1}, "fruitcake": {"_count": 1}, "ragged": {"_count": 1}, "fang": {"_count": 1}, "jar": {"_count": 1}, "money": {"_count": 1}, "egg": {"_count": 1}, "large": {"_count": 1}, "red": {"_count": 1}, "magical": {"_count": 1}, "bag": {"_count": 1}, "last": {"_count": 1}, "prophecy": {"_count": 1}, "pod": {"_count": 1}, "subject": {"_count": 1}, "name": {"_count": 1}, "heavy": {"_count": 1}, "scales": {"_count": 1}, "toadspawn": {"_count": 1}, "cup": {"_count": 1}, "hair": {"_count": 1}, "syllabary": {"_count": 1}, "Snitch": {"_count": 1}, "photograph": {"_count": 1}, "tray": {"_count": 1}, "chandelier": {"_count": 1}, "twig": {"_count": 1}, "Sorting": {"_count": 1}}, "it": {"_count": 19, "painfully": {"_count": 1}, "right": {"_count": 1}, "": {"_count": 10}, "on": {"_count": 1}, "in": {"_count": 2}, "earlier": {"_count": 1}, "onto": {"_count": 2}, "Crabbe": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 2}, "every": {"_count": 1}}, "his": {"_count": 40, "wand": {"_count": 3}, "robes": {"_count": 1}, "gaze": {"_count": 5}, "oily": {"_count": 1}, "books": {"_count": 1}, "voice": {"_count": 11}, "hands": {"_count": 1}, "tankard": {"_count": 1}, "socks": {"_count": 1}, "unctuous": {"_count": 1}, "hat": {"_count": 1}, "guard": {"_count": 1}, "own": {"_count": 1}, "fork": {"_count": 1}, "schoolbag": {"_count": 1}, "eyes": {"_count": 2}, "quill": {"_count": 1}, "steak": {"_count": 1}, "glass": {"_count": 1}, "sacks": {"_count": 1}, "fists": {"_count": 1}, "arms": {"_count": 1}, "photograph": {"_count": 1}}, "lower": {"_count": 2, "and": {"_count": 1}, "narrowly": {"_count": 1}}, "their": {"_count": 3, "trowels": {"_count": 1}, "voices": {"_count": 1}, "slips": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "": {"_count": 8, ".": {"_count": 8}}, "Trevor": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 12, "an": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 8}, "her": {"_count": 1}}, "pipes": {"_count": 1, "whenever": {"_count": 1}}, "back": {"_count": 3, "beneath": {"_count": 1}, "off": {"_count": 1}, "onto": {"_count": 1}}, "from": {"_count": 6, "Rons": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}}, "unpleasantly": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 1, "to": {"_count": 1}}, "Goyles": {"_count": 1, "hair": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 1}, "far": {"_count": 1}, "frequently": {"_count": 1}}, "like": {"_count": 3, "a": {"_count": 2}, "her": {"_count": 1}}, "into": {"_count": 9, "one": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 2}, "chairs": {"_count": 1}, "Lunas": {"_count": 1}}, "him": {"_count": 4, "was": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "down": {"_count": 1}}, "thats": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 2, "off": {"_count": 1}, "straightaway": {"_count": 1}}, "her": {"_count": 10, "voice": {"_count": 5}, "parchment": {"_count": 1}, "copy": {"_count": 1}, "small": {"_count": 1}, "spoon": {"_count": 1}, "son": {"_count": 1}}, "Crookshanks": {"_count": 1, "onto": {"_count": 1}}, "them": {"_count": 1, "somewhere": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "letter": {"_count": 1}}, "off": {"_count": 2, "to": {"_count": 1}, "buildings": {"_count": 1}}, "narrowly": {"_count": 1, "missing": {"_count": 1}}, "almost": {"_count": 1, "to": {"_count": 1}}, "your": {"_count": 1, "quill": {"_count": 1}}, "dead": {"_count": 2, "every": {"_count": 1}, "of": {"_count": 1}}, "down": {"_count": 3, "to": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 1}}, "something": {"_count": 1, "by": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "headquarters": {"_count": 1}}, "in": {"_count": 6, "and": {"_count": 1}, "to": {"_count": 2}, "on": {"_count": 1}, "the": {"_count": 2}}, "an": {"_count": 2, "empty": {"_count": 1}, "ancient": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "Stinkpellets": {"_count": 1, "if": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "these": {"_count": 1, "on": {"_count": 1}}, "sword": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 1, "boxes": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "he": {"_count": 1}}, "The": {"_count": 1, "Monster": {"_count": 1}}, "Secrets": {"_count": 1, "of": {"_count": 1}}, "ten": {"_count": 1, "degrees": {"_count": 1}}, "Harrys": {"_count": 1, "hand": {"_count": 1}}, "Bellatrixs": {"_count": 1, "wand": {"_count": 1}}, "those": {"_count": 1, "kinds": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "o": {"_count": 138, "tea": {"_count": 1, "could": {"_count": 1}}, "course": {"_count": 15, "": {"_count": 5}, "said": {"_count": 2}, "but": {"_count": 4}, "Professor": {"_count": 1}, "jus": {"_count": 1}, "yehre": {"_count": 1}, "they": {"_count": 1}}, "the": {"_count": 32, "biggest": {"_count": 2}, "only": {"_count": 1}, "best": {"_count": 2}, "reasons": {"_count": 1}, "pockets": {"_count": 1}, "teachers": {"_count": 1}, "pubs": {"_count": 1}, "Ministry": {"_count": 1}, "Firebolt": {"_count": 1}, "day": {"_count": 1}, "champions": {"_count": 1}, "others": {"_count": 3}, "las": {"_count": 1}, "dresser": {"_count": 1}, "way": {"_count": 1}, "mountain": {"_count": 1}, "bigger": {"_count": 1}, "lake": {"_count": 1}, "fastes": {"_count": 1}, "caves": {"_count": 1}, "meat": {"_count": 1}, "death": {"_count": 1}, "whole": {"_count": 1}, "world": {"_count": 1}, "time": {"_count": 1}, "tribe": {"_count": 1}, "forest": {"_count": 1}, "tower": {"_count": 1}}, "his": {"_count": 2, "power": {"_count": 1}, "books": {"_count": 1}}, "dormice": {"_count": 1, "in": {"_count": 1}}, "yer": {"_count": 1, "birthday": {"_count": 1}}, "fact": {"_count": 1, "I": {"_count": 1}}, "Magic": {"_count": 2, "messin": {"_count": 1}, "if": {"_count": 1}}, "trouble": {"_count": 2, "with": {"_count": 1}, "wouldn": {"_count": 1}}, "terms": {"_count": 1, "well": {"_count": 1}}, "Muggles": {"_count": 1, "look": {"_count": 1}}, "duffers": {"_count": 1, "but": {"_count": 1}}, "September": {"_count": 1, "Kings": {"_count": 1}}, "Hogwarts": {"_count": 1, "in": {"_count": 1}}, "cards": {"_count": 1, "with": {"_count": 1}}, "brandy": {"_count": 1, "mixed": {"_count": 1}}, "rats": {"_count": 1, "an": {"_count": 1}}, "funny": {"_count": 2, "folk": {"_count": 2}}, "cake": {"_count": 1, "if": {"_count": 1}}, "music": {"_count": 1, "an": {"_count": 1}}, "help": {"_count": 1, "Harry": {"_count": 1}}, "time": {"_count": 1, "int": {"_count": 1}}, "You": {"_count": 1, "Know": {"_count": 1}}, "hours": {"_count": 1, "before": {"_count": 1}}, "Dangerous": {"_count": 2, "Creatures": {"_count": 2}}, "him": {"_count": 2, "": {"_count": 2}}, "livin": {"_count": 1, "at": {"_count": 1}}, "hundred": {"_count": 1, "humans": {"_count": 1}}, "jus": {"_count": 1, "letting": {"_count": 1}}, "breakin": {"_count": 1, "the": {"_count": 1}}, "Beakys": {"_count": 1, "time": {"_count": 1}}, "Malfoys": {"_count": 1, "": {"_count": 1}}, "grass": {"_count": 1, "snake": {"_count": 1}}, "me": {"_count": 2, "a": {"_count": 1}, "I": {"_count": 1}}, "these": {"_count": 1, "sugar": {"_count": 1}}, "those": {"_count": 1, "letters": {"_count": 1}}, "magic": {"_count": 1, "after": {"_count": 1}}, "mad": {"_count": 1, "trolls": {"_count": 1}}, "Karkus": {"_count": 1, "": {"_count": 1}}, "bull": {"_count": 1, "elephants": {"_count": 1}}, "Gubraithian": {"_count": 1, "fire": {"_count": 1}}, "giants": {"_count": 1, "who": {"_count": 1}}, "Dumbledore": {"_count": 1, "heard": {"_count": 1}}, "bones": {"_count": 1, "": {"_count": 1}}, "dragon": {"_count": 1, "skin": {"_count": 1}}, "days": {"_count": 1, "lyin": {"_count": 1}}, "them": {"_count": 8, "": {"_count": 2}, "had": {"_count": 1}, "convinced": {"_count": 1}, "heard": {"_count": 1}, "Ministry": {"_count": 1}, "an": {"_count": 1}, "I": {"_count": 1}}, "themll": {"_count": 1, "remember": {"_count": 1}}, "speakin": {"_count": 1, "said": {"_count": 1}}, "mine": {"_count": 1, "breeds": {"_count": 1}}, "o": {"_count": 1, "fresh": {"_count": 1}}, "fresh": {"_count": 1, "air": {"_count": 1}}, "scene": {"_count": 1, "yeh": {"_count": 1}}, "sun": {"_count": 1, "an": {"_count": 1}}, "lessons": {"_count": 1, "planned": {"_count": 1}}, "creatures": {"_count": 1, "saved": {"_count": 1}}, "work": {"_count": 1, "its": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "Tenebrus": {"_count": 1, "hes": {"_count": 1}}, "good": {"_count": 1, "stuff": {"_count": 1}}, "direction": {"_count": 1, "jus": {"_count": 1}}, "salamanders": {"_count": 1, "got": {"_count": 1}}, "swings": {"_count": 1, "at": {"_count": 1}}, "dandelion": {"_count": 1, "juice": {"_count": 1}}, "Aurors": {"_count": 1, "but": {"_count": 1}}, "Diagon": {"_count": 1, "Alley": {"_count": 1}}, "trainin": {"_count": 1, "him": {"_count": 1}}, "Secrets": {"_count": 1, "all": {"_count": 1}}, "governors": {"_count": 1, "": {"_count": 1}}, "governorsll": {"_count": 1, "be": {"_count": 1}}, "view": {"_count": 1, "said": {"_count": 1}}, "Houses": {"_count": 1, "were": {"_count": 1}}, "there": {"_count": 1, "I": {"_count": 1}}, "their": {"_count": 1, "age": {"_count": 1}}, "bowtruckle": {"_count": 1, "legs": {"_count": 1}}, "room": {"_count": 1, "on": {"_count": 1}}, "tinkerin": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 1, "": {"_count": 1}}, "nags": {"_count": 1, "": {"_count": 1}}}, "yeh": {"_count": 310, "": {"_count": 28, "?": {"_count": 14}, ".": {"_count": 9}, "!": {"_count": 5}}, "great": {"_count": 2, "lump": {"_count": 1}, "prune": {"_count": 1}}, "here": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "Im": {"_count": 1, "Keeper": {"_count": 1}}, "werent": {"_count": 1, "gettin": {"_count": 1}}, "wouldnt": {"_count": 1, "even": {"_count": 1}}, "never": {"_count": 2, "wonder": {"_count": 1}, "wrote": {"_count": 1}}, "must": {"_count": 1, "know": {"_count": 1}}, "don": {"_count": 4, "know": {"_count": 1}, "pull": {"_count": 1}, "have": {"_count": 1}, "think": {"_count": 1}}, "are": {"_count": 4, "": {"_count": 3}, "after": {"_count": 1}}, "said": {"_count": 7, "Hagrid": {"_count": 7}}, "be": {"_count": 1, "": {"_count": 1}}, "read": {"_count": 1, "yer": {"_count": 1}}, "how": {"_count": 2, "much": {"_count": 1}, "come": {"_count": 1}}, "didnt": {"_count": 3, "know": {"_count": 1}, "mention": {"_count": 1}, "I": {"_count": 1}}, "but": {"_count": 2, "someones": {"_count": 1}, "then": {"_count": 1}}, "cant": {"_count": 1, "go": {"_count": 1}}, "know": {"_count": 28, "as": {"_count": 1}, "where": {"_count": 1}, "not": {"_count": 1}, "too": {"_count": 1}, "anythin": {"_count": 1}, "how": {"_count": 1}, "what": {"_count": 1}, "": {"_count": 10}, "Charlie": {"_count": 1}, "an": {"_count": 1}, "Ive": {"_count": 2}, "Yes": {"_count": 1}, "Mountain": {"_count": 1}, "usual": {"_count": 1}, "the": {"_count": 1}, "grave": {"_count": 1}, "His": {"_count": 1}, "said": {"_count": 1}}, "mind": {"_count": 5, "I": {"_count": 1}, "not": {"_count": 1}, "you": {"_count": 1}, "if": {"_count": 2}}, "everythin": {"_count": 1, "its": {"_count": 1}}, "dont": {"_count": 1, "know": {"_count": 1}}, "couldnt": {"_count": 1, "find": {"_count": 1}}, "get": {"_count": 8, "when": {"_count": 1}, "ter": {"_count": 1}, "a": {"_count": 1}, "on": {"_count": 1}, "weirdos": {"_count": 1}, "any": {"_count": 1}, "out": {"_count": 1}, "back": {"_count": 1}}, "took": {"_count": 1, "care": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "ter": {"_count": 6, "this": {"_count": 1}, "come": {"_count": 1}, "win": {"_count": 1}, "put": {"_count": 1}, "GRAWPY": {"_count": 1}, "go": {"_count": 1}}, "even": {"_count": 2, "more": {"_count": 1}, "know": {"_count": 1}}, "an": {"_count": 3, "get": {"_count": 1}, "stuff": {"_count": 1}, "Dumbledore": {"_count": 1}}, "the": {"_count": 4, "truth": {"_count": 4}}, "anything": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 9, "": {"_count": 7}, "said": {"_count": 1}, "yeh": {"_count": 1}}, "want": {"_count": 4, "ter": {"_count": 3}, "": {"_count": 1}}, "gotta": {"_count": 3, "find": {"_count": 1}, "have": {"_count": 1}, "know": {"_count": 1}}, "did": {"_count": 3, "manage": {"_count": 1}, "did": {"_count": 1}, "it": {"_count": 1}}, "need": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "you": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 5, "hes": {"_count": 1}, "horrible": {"_count": 1}, "really": {"_count": 1}, "late": {"_count": 1}, "intrested": {"_count": 1}}, "couldn": {"_count": 2, "work": {"_count": 1}, "call": {"_count": 1}}, "a": {"_count": 2, "birthday": {"_count": 1}, "present": {"_count": 1}}, "what": {"_count": 3, "Ill": {"_count": 1}, "come": {"_count": 1}, "Ive": {"_count": 1}}, "soon": {"_count": 1, "Harry": {"_count": 1}}, "yer": {"_count": 2, "wrong": {"_count": 1}, "meddlin": {"_count": 1}}, "drop": {"_count": 1, "it": {"_count": 1}}, "anythin": {"_count": 2, "mind": {"_count": 1}, "dangerous": {"_count": 1}}, "See": {"_count": 1, "you": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "if": {"_count": 5, "I": {"_count": 2}, "yer": {"_count": 1}, "yeh": {"_count": 1}, "Id": {"_count": 1}}, "think": {"_count": 1, "yer": {"_count": 1}}, "hes": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 1, "be": {"_count": 1}}, "Ronan": {"_count": 1, "cause": {"_count": 1}}, "seen": {"_count": 1, "anythin": {"_count": 1}}, "havent": {"_count": 1, "noticed": {"_count": 1}}, "ask": {"_count": 3, "me": {"_count": 3}}, "goin": {"_count": 1, "": {"_count": 1}}, "didn": {"_count": 3, "have": {"_count": 1}, "need": {"_count": 1}, "fight": {"_count": 1}}, "down": {"_count": 1, "there": {"_count": 1}}, "fer": {"_count": 2, "tryin": {"_count": 1}, "a": {"_count": 1}}, "hadnt": {"_count": 1, "really": {"_count": 1}}, "in": {"_count": 5, "class": {"_count": 1}, "fer": {"_count": 1}, "said": {"_count": 1}, "either": {"_count": 1}, "one": {"_count": 1}}, "outta": {"_count": 1, "here": {"_count": 1}}, "have": {"_count": 1, "ter": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "can": {"_count": 6, "see": {"_count": 2}, "touch": {"_count": 1}, "pat": {"_count": 1}, "do": {"_count": 1}, "say": {"_count": 1}}, "wan": {"_count": 1, "ter": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "bow": {"_count": 1, "an": {"_count": 1}}, "wait": {"_count": 1, "": {"_count": 1}}, "blink": {"_count": 1, "too": {"_count": 1}}, "ride": {"_count": 1, "him": {"_count": 1}}, "walkin": {"_count": 1, "down": {"_count": 1}}, "weren": {"_count": 1, "talking": {"_count": 1}}, "practicin": {"_count": 1, "Quidditch": {"_count": 1}}, "I": {"_count": 4, "thought": {"_count": 1}, "don": {"_count": 1}, "knew": {"_count": 1}, "might": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "beat": {"_count": 1, "em": {"_count": 1}}, "watchin": {"_count": 1, "": {"_count": 1}}, "shouldn": {"_count": 1, "be": {"_count": 1}}, "out": {"_count": 2, "without": {"_count": 1}, "the": {"_count": 1}}, "clever": {"_count": 1, "boy": {"_count": 1}}, "heard": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "tried": {"_count": 1, "ter": {"_count": 1}}, "like": {"_count": 1, "it": {"_count": 1}}, "might": {"_count": 1, "want": {"_count": 1}}, "Hermione": {"_count": 1, "winked": {"_count": 1}}, "right": {"_count": 2, "": {"_count": 1}, "there": {"_count": 1}}, "mightve": {"_count": 1, "bent": {"_count": 1}}, "Harry": {"_count": 4, "": {"_count": 3}, "Hagrid": {"_count": 1}}, "wouldn": {"_count": 3, "fit": {"_count": 1}, "believe": {"_count": 1}, "Hagrid": {"_count": 1}}, "take": {"_count": 1, "on": {"_count": 1}}, "set": {"_count": 1, "yer": {"_count": 1}}, "go": {"_count": 1, "look": {"_count": 1}}, "done": {"_count": 1, "ter": {"_count": 1}}, "should": {"_count": 2, "be": {"_count": 1}, "see": {"_count": 1}}, "Headmaster": {"_count": 1, "Hagrid": {"_count": 1}}, "doin": {"_count": 1, "wanderin": {"_count": 1}}, "nothin": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "on": {"_count": 1}}, "mate": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "no": {"_count": 1, "higher": {"_count": 1}}, "dozy": {"_count": 1, "dog": {"_count": 1}}, "nuthin": {"_count": 1, "said": {"_count": 1}}, "bin": {"_count": 1, "talkin": {"_count": 1}}, "oughta": {"_count": 1, "he": {"_count": 1}}, "neither": {"_count": 1, "": {"_count": 1}}, "mean": {"_count": 1, "attacked": {"_count": 1}}, "this": {"_count": 1, "shes": {"_count": 1}}, "jus": {"_count": 2, "to": {"_count": 1}, "talk": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "found": {"_count": 1, "the": {"_count": 1}}, "really": {"_count": 1, "annoy": {"_count": 1}}, "bait": {"_count": 1, "it": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "say": {"_count": 3, "bloods": {"_count": 1}, "so": {"_count": 1}, "tha": {"_count": 1}}, "come": {"_count": 2, "with": {"_count": 1}, "back": {"_count": 1}}, "Id": {"_count": 1, "leave": {"_count": 1}}, "could": {"_count": 1, "jus": {"_count": 1}}, "big": {"_count": 1, "buffoon": {"_count": 1}}, "some": {"_count": 1, "friends": {"_count": 1}}, "Hermy": {"_count": 1, "Hermione": {"_count": 1}}, "when": {"_count": 2, "yeh": {"_count": 2}}, "Magorian": {"_count": 1, "": {"_count": 1}}, "committin": {"_count": 1, "murder": {"_count": 1}}, "work": {"_count": 1, "that": {"_count": 1}}, "re": {"_count": 1, "makin": {"_count": 1}}, "ll": {"_count": 1, "be": {"_count": 1}}, "won": {"_count": 1, "take": {"_count": 1}}, "Molly": {"_count": 2, "Arthur": {"_count": 1}, "": {"_count": 1}}, "understand": {"_count": 1, "Hogwarts": {"_count": 1}}, "tomorrow": {"_count": 1, "firs": {"_count": 1}}, "lot": {"_count": 1, "": {"_count": 1}}, "threaten": {"_count": 1, "ter": {"_count": 1}}, "called": {"_count": 1, "me": {"_count": 1}}, "ungrateful": {"_count": 1, "little": {"_count": 1}}, "applied": {"_count": 1, "fer": {"_count": 1}}, "couldve": {"_count": 1, "done": {"_count": 1}}, "At": {"_count": 1, "which": {"_count": 1}}, "with": {"_count": 1, "hundreds": {"_count": 1}}, "not": {"_count": 1, "now": {"_count": 1}}, "sneakin": {"_count": 1, "Squib": {"_count": 1}}, "believe": {"_count": 1, "that": {"_count": 1}}, "they": {"_count": 1, "usually": {"_count": 1}}, "Dumby": {"_count": 1, "talking": {"_count": 1}}, "on": {"_count": 1, "abou": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}, "was": {"_count": 1, "on": {"_count": 1}}, "mus": {"_count": 1, "be": {"_count": 1}}, "cowardly": {"_count": 1, "bunch": {"_count": 1}}, "happy": {"_count": 1, "Harry": {"_count": 1}}}, "journey": {"_count": 60, "": {"_count": 12, ".": {"_count": 11}, "?": {"_count": 1}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "Rons": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 4}}, "home": {"_count": 4, "on": {"_count": 2}, "but": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 5, "Kings": {"_count": 1}, "Hogwarts": {"_count": 3}, "St": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 4, "to": {"_count": 3}, "seemed": {"_count": 1}}, "north": {"_count": 1, "but": {"_count": 1}}, "has": {"_count": 1, "tired": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 4, "uncomfortable": {"_count": 1}, "fine": {"_count": 1}, "to": {"_count": 1}, "pointless": {"_count": 1}}, "passed": {"_count": 1, "pleasantly": {"_count": 1}}, "What": {"_count": 1, "can": {"_count": 1}}, "lasting": {"_count": 1, "such": {"_count": 1}}, "an": {"_count": 1, "don": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "worthwhile": {"_count": 1, "after": {"_count": 1}}, "playing": {"_count": 1, "wizard": {"_count": 1}}, "left": {"_count": 1, "Hogsmeade": {"_count": 1}}, "alone": {"_count": 3, "would": {"_count": 1}, "": {"_count": 2}}, "from": {"_count": 1, "narrow": {"_count": 1}}, "seemed": {"_count": 1, "like": {"_count": 1}}, "Auntie": {"_count": 1, "Muriels": {"_count": 1}}, "had": {"_count": 2, "turned": {"_count": 1}, "already": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}}, "strode": {"_count": 118, "over": {"_count": 17, "to": {"_count": 17}}, "away": {"_count": 10, "muttering": {"_count": 1}, "head": {"_count": 1}, "toward": {"_count": 1}, "from": {"_count": 2}, "into": {"_count": 1}, "not": {"_count": 1}, "in": {"_count": 1}, "laughing": {"_count": 1}, "his": {"_count": 1}}, "toward": {"_count": 6, "the": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 2}}, "off": {"_count": 17, "down": {"_count": 2}, "in": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}, "toward": {"_count": 3}, "around": {"_count": 1}, "together": {"_count": 1}, "into": {"_count": 1}, "along": {"_count": 1}, "through": {"_count": 2}, "leaving": {"_count": 1}}, "out": {"_count": 9, "of": {"_count": 7}, "onto": {"_count": 1}, "to": {"_count": 1}}, "briskly": {"_count": 1, "forward": {"_count": 1}}, "into": {"_count": 4, "Hagrids": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 6, "the": {"_count": 5}, "his": {"_count": 1}}, "across": {"_count": 7, "the": {"_count": 5}, "to": {"_count": 2}}, "after": {"_count": 1, "him": {"_count": 1}}, "past": {"_count": 6, "the": {"_count": 3}, "her": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "back": {"_count": 10, "to": {"_count": 5}, "into": {"_count": 1}, "down": {"_count": 1}, "toward": {"_count": 3}}, "forward": {"_count": 3, "seized": {"_count": 1}, "past": {"_count": 1}, "through": {"_count": 1}}, "down": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "quickly": {"_count": 1, "from": {"_count": 1}}, "around": {"_count": 4, "Ron": {"_count": 1}, "behind": {"_count": 1}, "the": {"_count": 2}}, "along": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "two": {"_count": 1}}, "the": {"_count": 1, "length": {"_count": 1}}, "straight": {"_count": 3, "into": {"_count": 1}, "inside": {"_count": 1}, "over": {"_count": 1}}, "blindly": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 1, "calling": {"_count": 1}}, "directly": {"_count": 1, "at": {"_count": 1}}, "alone": {"_count": 1, "into": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "up": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 1, "up": {"_count": 1}}}, "Budge": {"_count": 2, "up": {"_count": 2, "yeh": {"_count": 1}, "there": {"_count": 1}}}, "lump": {"_count": 24, "said": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "on": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 6, "cheese": {"_count": 1}, "tea": {"_count": 2}, "wood": {"_count": 2}, "the": {"_count": 1}}, "was": {"_count": 2, "throbbing": {"_count": 1}, "swelling": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "Rons": {"_count": 1}}, "indicated": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "get": {"_count": 1, "up": {"_count": 1}}, "rise": {"_count": 1, "in": {"_count": 1}}, "mend": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}, "swelling": {"_count": 1, "where": {"_count": 1}}}, "squeaked": {"_count": 60, "and": {"_count": 1, "ran": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "Professor": {"_count": 5, "Flitwick": {"_count": 5}}, "Dobby": {"_count": 11, "shaking": {"_count": 1}, "confidentially": {"_count": 1}, "anxiously": {"_count": 1}, "": {"_count": 2}, "plucking": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 2}, "angrily": {"_count": 1}, "happily": {"_count": 1}}, "a": {"_count": 2, "boy": {"_count": 1}, "nearby": {"_count": 1}}, "Neville": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "tiny": {"_count": 1, "Professor": {"_count": 1}}, "suddenly": {"_count": 1, "pointing": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 7, "elf": {"_count": 5}, "excitable": {"_count": 1}, "houseelf": {"_count": 1}}, "distractedly": {"_count": 1, "as": {"_count": 1}}, "Colin": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 1, "over": {"_count": 1}}, "Winky": {"_count": 1, "and": {"_count": 1}}, "tentatively": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "wiping": {"_count": 1, "large": {"_count": 1}}, "indignantly": {"_count": 1, "swaying": {"_count": 1}}, "an": {"_count": 2, "elf": {"_count": 1}, "excited": {"_count": 1}}, "Locomotor": {"_count": 1, "trunksl": {"_count": 1}}, "Hermione": {"_count": 4, "": {"_count": 4}}, "avoiding": {"_count": 1, "Snape": {"_count": 1}}, "Hokey": {"_count": 1, "": {"_count": 1}}, "casting": {"_count": 1, "Kreacher": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Flitwick": {"_count": 2, "": {"_count": 2}}}, "crouching": {"_count": 25, "terrified": {"_count": 1, "behind": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 3}}, "out": {"_count": 1, "of": {"_count": 1}}, "behind": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "here": {"_count": 1, "like": {"_count": 1}}, "low": {"_count": 2, "over": {"_count": 1}, "to": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "almost": {"_count": 1, "flat": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 3, "in": {"_count": 1}, "again": {"_count": 1}, "between": {"_count": 1}}}, "terrified": {"_count": 113, "behind": {"_count": 1, "Uncle": {"_count": 1}}, "look": {"_count": 3, "at": {"_count": 1}, "vanished": {"_count": 1}, "around": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 4}, "something": {"_count": 1}, "his": {"_count": 1}}, "half": {"_count": 1, "furious": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "whisper": {"_count": 3, "as": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 31, ".": {"_count": 29}, "!": {"_count": 2}}, "waiting": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "heard": {"_count": 1}, "had": {"_count": 1}}, "pleading": {"_count": 1, "screams": {"_count": 1}}, "Scabbers": {"_count": 1, "": {"_count": 1}}, "squeaks": {"_count": 1, "": {"_count": 1}}, "patted": {"_count": 1, "her": {"_count": 1}}, "voice": {"_count": 6, "": {"_count": 2}, "broke": {"_count": 1}, "retreating": {"_count": 1}, "as": {"_count": 1}, "Severus": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "excitement": {"_count": 1, "shot": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "might": {"_count": 1}, "know": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "eyes": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 3, "hes": {"_count": 1}, "mesmerized": {"_count": 1}, "Narcissa": {"_count": 1}}, "sobs": {"_count": 1, "": {"_count": 1}}, "disobedience": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 1, "and": {"_count": 1}}, "silence": {"_count": 1, "in": {"_count": 1}}, "squeak": {"_count": 2, "and": {"_count": 1}, "was": {"_count": 1}}, "a": {"_count": 2, "pair": {"_count": 1}, "finger": {"_count": 1}}, "cry": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 4, "what": {"_count": 1}, "him": {"_count": 2}, "provoking": {"_count": 1}}, "than": {"_count": 1, "they": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "Dumbledore": {"_count": 1}, "they": {"_count": 1}}, "glances": {"_count": 1, "over": {"_count": 1}}, "looks": {"_count": 1, "up": {"_count": 1}}, "people": {"_count": 1, "gazing": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "now": {"_count": 1, "said": {"_count": 1}}, "somebody": {"_count": 1, "she": {"_count": 1}}, "to": {"_count": 3, "find": {"_count": 1}, "see": {"_count": 1}, "make": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "students": {"_count": 1, "stood": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "guests": {"_count": 1, "Harry": {"_count": 1}}, "pointed": {"_count": 1, "white": {"_count": 1}}, "Muggleborns": {"_count": 1, "who": {"_count": 1}}, "face": {"_count": 1, "on": {"_count": 1}}, "but": {"_count": 1, "convincing": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "Bellatrix": {"_count": 1, "and": {"_count": 1}}, "dog": {"_count": 1, "leaving": {"_count": 1}}, "in": {"_count": 1, "equal": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}}, "An": {"_count": 159, "heres": {"_count": 1, "Harry": {"_count": 1}}, "like": {"_count": 1, "I": {"_count": 1}}, "youve": {"_count": 1, "kept": {"_count": 1}}, "I": {"_count": 4, "reckon": {"_count": 1}, "mean": {"_count": 1}, "didn": {"_count": 1}, "don": {"_count": 1}}, "its": {"_count": 1, "your": {"_count": 1}}, "then": {"_count": 6, "an": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 2}, "Lucius": {"_count": 1}, "we": {"_count": 1}}, "Ive": {"_count": 2, "also": {"_count": 1}, "packed": {"_count": 1}}, "don": {"_count": 2, "ask": {"_count": 1}, "say": {"_count": 1}}, "anyway": {"_count": 2, "yeh": {"_count": 1}, "tha": {"_count": 1}}, "old": {"_count": 7, "man": {"_count": 2}, "wooden": {"_count": 1}, "cauldron": {"_count": 1}, "woman": {"_count": 1}, "mans": {"_count": 1}, "unease": {"_count": 1}}, "as": {"_count": 1, "fer": {"_count": 1}}, "owl": {"_count": 5, "hooted": {"_count": 3}, "was": {"_count": 1}, "will": {"_count": 1}}, "whatre": {"_count": 1, "you": {"_count": 1}}, "see": {"_count": 1, "here": {"_count": 1}}, "keep": {"_count": 1, "ter": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 2}}, "aged": {"_count": 1, "witch": {"_count": 1}}, "hour": {"_count": 5, "later": {"_count": 3}, "long": {"_count": 2}}, "bangin": {"_count": 1, "on": {"_count": 1}}, "they": {"_count": 1, "havent": {"_count": 1}}, "Engorgement": {"_count": 1, "Charm": {"_count": 1}}, "how": {"_count": 1, "many": {"_count": 1}}, "someonell": {"_count": 1, "need": {"_count": 1}}, "extraordinary": {"_count": 3, "lightness": {"_count": 1}, "achievement": {"_count": 1}, "assortment": {"_count": 1}}, "you": {"_count": 4, "know": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "lotll": {"_count": 1}}, "when": {"_count": 2, "reinforcements": {"_count": 1}, "the": {"_count": 1}}, "now": {"_count": 1, "es": {"_count": 1}}, "ordinary": {"_count": 1, "common": {"_count": 1}}, "intense": {"_count": 1, "cold": {"_count": 1}}, "eerie": {"_count": 2, "silence": {"_count": 1}, "sight": {"_count": 1}}, "immensely": {"_count": 1, "complex": {"_count": 1}}, "yeh": {"_count": 3, "know": {"_count": 1}, "can": {"_count": 1}, "shouldn": {"_count": 1}}, "if": {"_count": 2, "I": {"_count": 1}, "theres": {"_count": 1}}, "them": {"_count": 1, "dementors": {"_count": 1}}, "an": {"_count": 1, "Im": {"_count": 1}}, "unworthy": {"_count": 1, "trick": {"_count": 1}}, "odd": {"_count": 7, "place": {"_count": 1}, "closed": {"_count": 1}, "shiver": {"_count": 1}, "quality": {"_count": 1}, "dreamy": {"_count": 1}, "feeling": {"_count": 1}, "symbol": {"_count": 1}}, "animal": {"_count": 1, "of": {"_count": 1}}, "Animagus": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 2}}, "easy": {"_count": 1, "mistake": {"_count": 1}}, "enormous": {"_count": 2, "picture": {"_count": 1}, "silver": {"_count": 1}}, "Appraisal": {"_count": 3, "of": {"_count": 3}}, "explanation": {"_count": 2, "if": {"_count": 1}, "of": {"_count": 1}}, "impartial": {"_count": 1, "judge": {"_count": 1}}, "excellent": {"_count": 2, "remedy": {"_count": 1}, "point": {"_count": 1}}, "Age": {"_count": 1, "Line": {"_count": 1}}, "extremely": {"_count": 1, "tense": {"_count": 1}}, "ugly": {"_count": 3, "scar": {"_count": 1}, "old": {"_count": 1}, "flush": {"_count": 1}}, "air": {"_count": 1, "from": {"_count": 1}}, "agains": {"_count": 1, "the": {"_count": 1}}, "alarmingly": {"_count": 1, "large": {"_count": 1}}, "Anthology": {"_count": 1, "of": {"_count": 1}}, "eagle": {"_count": 1, "owl": {"_count": 1}}, "theres": {"_count": 2, "no": {"_count": 1}, "Charlie": {"_count": 1}}, "apparition": {"_count": 1, "": {"_count": 1}}, "empty": {"_count": 2, "chair": {"_count": 1}, "seat": {"_count": 1}}, "echo": {"_count": 1, "said": {"_count": 1}}, "awful": {"_count": 2, "voice": {"_count": 1}, "scream": {"_count": 1}}, "Aurors": {"_count": 1, "worthwhile": {"_count": 1}}, "Organization": {"_count": 1, "Society": {"_count": 1}}, "ink": {"_count": 1, "pellet": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "Ill": {"_count": 1, "tell": {"_count": 1}}, "the": {"_count": 2, "rest": {"_count": 1}, "last": {"_count": 1}}, "gives": {"_count": 1, "them": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "wha": {"_count": 1, "we": {"_count": 1}}, "Excuse": {"_count": 1, "me": {"_count": 1}}, "obscure": {"_count": 1, "branch": {"_count": 1}}, "escape": {"_count": 1, "of": {"_count": 1}}, "both": {"_count": 1, "orphans": {"_count": 1}}, "your": {"_count": 1, "mum": {"_count": 1}}, "interview": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "if": {"_count": 1}}, "hes": {"_count": 1, "gettin": {"_count": 1}}, "shes": {"_count": 1, "gonna": {"_count": 1}}, "arrow": {"_count": 2, "flew": {"_count": 2}}, "obvious": {"_count": 1, "flaw": {"_count": 1}}, "invisible": {"_count": 1, "barrier": {"_count": 1}}, "immense": {"_count": 1, "chimney": {"_count": 1}}, "alarm": {"_count": 1, "clock": {"_count": 1}}, "interesting": {"_count": 1, "question": {"_count": 1}}, "invitation": {"_count": 1, "said": {"_count": 1}}, "angry": {"_count": 1, "voice": {"_count": 1}}, "idea": {"_count": 2, "had": {"_count": 1}, "would": {"_count": 1}}, "answer": {"_count": 1, "copied": {"_count": 1}}, "elderly": {"_count": 1, "man": {"_count": 1}}, "ornate": {"_count": 2, "opal": {"_count": 1}, "letter": {"_count": 1}}, "Unbreakable": {"_count": 1, "Vow": {"_count": 1}}, "Elixir": {"_count": 1, "to": {"_count": 1}}, "thanks": {"_count": 1, "fer": {"_count": 1}}, "admirably": {"_count": 1, "succinct": {"_count": 1}}, "aisle": {"_count": 1, "ran": {"_count": 1}}, "entire": {"_count": 1, "chapter": {"_count": 1}}, "honor": {"_count": 1, "as": {"_count": 1}}, "youre": {"_count": 1, "with": {"_count": 1}}, "electric": {"_count": 1, "current": {"_count": 1}}, "unbeatable": {"_count": 1, "wand": {"_count": 1}}, "initial": {"_count": 1, "attraction": {"_count": 1}}, "object": {"_count": 1, "that": {"_count": 1}}}, "heres": {"_count": 16, "Harry": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 2, "weve": {"_count": 1}, "I": {"_count": 1}}, "the": {"_count": 4, "scalawag": {"_count": 1}, "result": {"_count": 1}, "proof": {"_count": 1}, "stuff": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "sweater": {"_count": 1}}, "Alas": {"_count": 1, "tor": {"_count": 1}}, "been": {"_count": 1, "terrible": {"_count": 1}}, "another": {"_count": 1, "couple": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "overage": {"_count": 1, "Potter": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "proven": {"_count": 1, "theyre": {"_count": 1}}}, "shadowy": {"_count": 40, "face": {"_count": 3, "and": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}}, "clearing": {"_count": 1, "stood": {"_count": 1}}, "walls": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "corner": {"_count": 5, "behind": {"_count": 1}, "then": {"_count": 1}, "with": {"_count": 1}, "beside": {"_count": 1}, "slipped": {"_count": 1}}, "entrance": {"_count": 1, "to": {"_count": 1}}, "stadium": {"_count": 1, "discussing": {"_count": 1}}, "portents": {"_count": 1, "within": {"_count": 1}}, "figure": {"_count": 1, "raising": {"_count": 1}}, "hallway": {"_count": 1, "": {"_count": 1}}, "outlines": {"_count": 1, "of": {"_count": 1}}, "stubborn": {"_count": 1, "face": {"_count": 1}}, "space": {"_count": 1, "wizards": {"_count": 1}}, "figures": {"_count": 6, "began": {"_count": 1}, "of": {"_count": 1}, "pressing": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "to": {"_count": 1}}, "form": {"_count": 1, "of": {"_count": 1}}, "hall": {"_count": 1, "below": {"_count": 1}}, "Divination": {"_count": 1, "room": {"_count": 1}}, "room": {"_count": 1, "lined": {"_count": 1}}, "presentday": {"_count": 1, "Potions": {"_count": 1}}, "grounds": {"_count": 1, "and": {"_count": 1}}, "aisles": {"_count": 1, "between": {"_count": 1}}, "and": {"_count": 1, "ominous": {"_count": 1}}, "gruesome": {"_count": 1, "pictures": {"_count": 1}}, "ceiling": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "alleyway": {"_count": 1, "": {"_count": 1}}, "crevices": {"_count": 1, "of": {"_count": 1}}, "passageway": {"_count": 1, "leading": {"_count": 1}}}, "beetle": {"_count": 18, "eyes": {"_count": 3, "were": {"_count": 1}, "five": {"_count": 1}, "single": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "it": {"_count": 1, "engulfed": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "crawling": {"_count": 1, "along": {"_count": 1}}, "just": {"_count": 1, "wasnt": {"_count": 1}}, "and": {"_count": 1, "looked": {"_count": 1}}, "in": {"_count": 1, "your": {"_count": 1}}, "impatiently": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "buzzed": {"_count": 1}}, "back": {"_count": 1, "inside": {"_count": 1}}}, "crinkled": {"_count": 5, "in": {"_count": 1, "a": {"_count": 1}}, "corners": {"_count": 1, "of": {"_count": 1}}, "black": {"_count": 1, "eyes": {"_count": 1}}, "eyes": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}}, "Las": {"_count": 2, "time": {"_count": 1, "I": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}}, "Yeh": {"_count": 45, "look": {"_count": 2, "a": {"_count": 1}, "all": {"_count": 1}}, "don": {"_count": 5, "know": {"_count": 3}, "have": {"_count": 1}, "understand": {"_count": 1}}, "are": {"_count": 1, "if": {"_count": 1}}, "couldve": {"_count": 2, "died": {"_count": 2}}, "wont": {"_count": 1, "have": {"_count": 1}}, "shouldve": {"_count": 1, "ignored": {"_count": 1}}, "sure": {"_count": 1, "yehre": {"_count": 1}}, "can": {"_count": 4, "take": {"_count": 1}, "really": {"_count": 1}, "trust": {"_count": 1}, "stay": {"_count": 1}}, "always": {"_count": 1, "wait": {"_count": 1}}, "walk": {"_count": 1, "toward": {"_count": 1}}, "climb": {"_count": 1, "up": {"_count": 1}}, "beat": {"_count": 1, "em": {"_count": 1}}, "shouldnve": {"_count": 2, "come": {"_count": 2}}, "know": {"_count": 5, "what": {"_count": 2}, "wha": {"_count": 1}, "shes": {"_count": 2}}, "gotta": {"_count": 1, "go": {"_count": 1}}, "say": {"_count": 1, "it": {"_count": 1}}, "did": {"_count": 3, "it": {"_count": 2}, "as": {"_count": 1}}, "yehre": {"_count": 1, "not": {"_count": 1}}, "find": {"_count": 1, "em": {"_count": 1}}, "get": {"_count": 1, "a": {"_count": 1}}, "migh": {"_count": 1, "notve": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}, "yehll": {"_count": 1, "see": {"_count": 1}}, "came": {"_count": 1, "croaked": {"_count": 1}}, "shouldn": {"_count": 1, "be": {"_count": 1}}, "all": {"_count": 2, "righ": {"_count": 2}}, "couldn": {"_count": 1, "have": {"_count": 1}}, "got": {"_count": 1, "till": {"_count": 1}}}, "yer": {"_count": 92, "dad": {"_count": 1, "but": {"_count": 1}}, "moms": {"_count": 1, "eyes": {"_count": 1}}, "letters": {"_count": 2, "but": {"_count": 1}, "to": {"_count": 1}}, "parents": {"_count": 3, "learned": {"_count": 1}, "didnt": {"_count": 1}, "old": {"_count": 1}}, "mom": {"_count": 1, "and": {"_count": 1}}, "heads": {"_count": 1, "both": {"_count": 1}}, "a": {"_count": 1, "wizard": {"_count": 1}}, "letter": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "mum": {"_count": 5, "an": {"_count": 4}, "": {"_count": 1}}, "house": {"_count": 2, "an": {"_count": 1}, "even": {"_count": 1}}, "forehead": {"_count": 1, "": {"_count": 1}}, "famous": {"_count": 1, "Harry": {"_count": 1}}, "books": {"_count": 3, "an": {"_count": 2}, "How": {"_count": 1}}, "stuff": {"_count": 1, "fer": {"_count": 1}}, "birthday": {"_count": 1, "cake": {"_count": 1}}, "way": {"_count": 1, "Gringotts": {"_count": 1}}, "hands": {"_count": 2, "on": {"_count": 1}, "up": {"_count": 1}}, "money": {"_count": 1, "first": {"_count": 1}}, "uniform": {"_count": 1, "said": {"_count": 1}}, "name": {"_count": 1, "if": {"_count": 1}}, "not": {"_count": 4, "ter": {"_count": 1}, "still": {"_count": 1}, "in": {"_count": 1}, "talkin": {"_count": 1}}, "list": {"_count": 1, "but": {"_count": 1}}, "wand": {"_count": 2, "left": {"_count": 1}, "backfired": {"_count": 1}}, "animal": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 2, "owl": {"_count": 1}, "all": {"_count": 1}}, "mail": {"_count": 1, "an": {"_count": 1}}, "train": {"_count": 1, "leaves": {"_count": 1}}, "ticket": {"_count": 1, "": {"_count": 1}}, "owl": {"_count": 1, "shell": {"_count": 1}}, "step": {"_count": 1, "now": {"_count": 1}}, "firs": {"_count": 1, "sight": {"_count": 1}}, "toad": {"_count": 1, "": {"_count": 1}}, "twin": {"_count": 1, "brothers": {"_count": 1}}, "brother": {"_count": 1, "Charlie": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "meddlin": {"_count": 1, "in": {"_count": 1}}, "holidays": {"_count": 1, "": {"_count": 1}}, "late": {"_count": 1, "is": {"_count": 1}}, "bit": {"_count": 1, "Ill": {"_count": 1}}, "thats": {"_count": 1, "how": {"_count": 1}}, "fatherd": {"_count": 1, "rather": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "wands": {"_count": 1, "out": {"_count": 1}}, "exams": {"_count": 2, "": {"_count": 1}, "fine": {"_count": 1}}, "doin": {"_count": 2, "down": {"_count": 2}}, "own": {"_count": 3, "": {"_count": 1}, "Krums": {"_count": 1}, "business": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "little": {"_count": 1, "sister": {"_count": 1}}, "friend": {"_count": 1, "moren": {"_count": 1}}, "dragonhide": {"_count": 1, "gloves": {"_count": 1}}, "competin": {"_count": 1, "Harry": {"_count": 1}}, "mother": {"_count": 1, "or": {"_count": 1}}, "father": {"_count": 2, "": {"_count": 1}, "wouldve": {"_count": 1}}, "mind": {"_count": 1, "ter": {"_count": 1}}, "clue": {"_count": 1, "worked": {"_count": 1}}, "valuables": {"_count": 1, "an": {"_count": 1}}, "coins": {"_count": 1, "": {"_count": 1}}, "hippogriffs": {"_count": 1, "I": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "lessons": {"_count": 1, "now": {"_count": 1}}, "footprints": {"_count": 1, "out": {"_count": 1}}, "fifth": {"_count": 1, "year": {"_count": 1}}, "this": {"_count": 1, "at": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloak": {"_count": 1}}, "fingers": {"_count": 1, "oh": {"_count": 1}}, "timetables": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "evil": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "dad": {"_count": 117, "but": {"_count": 2, "yehve": {"_count": 1}, "its": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 2}, "works": {"_count": 1}, "panted": {"_count": 1}}, "werent": {"_count": 1, "famous": {"_count": 1}}, "like": {"_count": 3, "yours": {"_count": 1}, "he": {"_count": 1}, "magic": {"_count": 1}}, "were": {"_count": 4, "as": {"_count": 1}, "decent": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 3, "nicer": {"_count": 1}, "yer": {"_count": 1}, "she": {"_count": 1}}, "for": {"_count": 1, "being": {"_count": 1}}, "says": {"_count": 1, "it": {"_count": 1}}, "doesnt": {"_count": 2, "believe": {"_count": 1}, "know": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "know": {"_count": 1, "youve": {"_count": 1}}, "do": {"_count": 1, "at": {"_count": 1}}, "this": {"_count": 1, "car": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 12}, "!": {"_count": 6}, "?": {"_count": 2}}, "how": {"_count": 1, "to": {"_count": 1}}, "are": {"_count": 3, "Muggles": {"_count": 1}, "in": {"_count": 1}, "finished": {"_count": 1}}, "telling": {"_count": 1, "his": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "wouldnt": {"_count": 2, "want": {"_count": 1}, "risk": {"_count": 1}}, "died": {"_count": 2, "": {"_count": 1}, "first": {"_count": 1}}, "Harry": {"_count": 2, "mumbled": {"_count": 1}, "": {"_count": 1}}, "did": {"_count": 2, "you": {"_count": 1}, "use": {"_count": 1}}, "you": {"_count": 1, "mustve": {"_count": 1}}, "didnt": {"_count": 1, "strut": {"_count": 1}}, "works": {"_count": 2, "for": {"_count": 2}}, "too": {"_count": 2, "": {"_count": 2}}, "wouldve": {"_count": 1, "wanted": {"_count": 1}}, "whod": {"_count": 1, "conjured": {"_count": 1}}, "is": {"_count": 1, "one": {"_count": 1}}, "catches": {"_count": 1, "Lucius": {"_count": 1}}, "was": {"_count": 8, "one": {"_count": 1}, "brokenhearted": {"_count": 1}, "": {"_count": 1}, "decent": {"_count": 1}, "a": {"_count": 1}, "right": {"_count": 1}, "no": {"_count": 1}, "wearing": {"_count": 1}}, "went": {"_count": 1, "to": {"_count": 1}}, "told": {"_count": 2, "me": {"_count": 1}, "us": {"_count": 1}}, "and": {"_count": 5, "me": {"_count": 1}, "the": {"_count": 1}, "Lupin": {"_count": 1}, "Dumbledore": {"_count": 1}, "who": {"_count": 1}}, "being": {"_count": 1, "friends": {"_count": 1}}, "woulda": {"_count": 1, "bin": {"_count": 1}}, "have": {"_count": 1, "I": {"_count": 1}}, "used": {"_count": 3, "ter": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}}, "said": {"_count": 5, "at": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "theyve": {"_count": 1}, "I": {"_count": 1}}, "had": {"_count": 1, "had": {"_count": 1}}, "why": {"_count": 1, "dont": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "dying": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 1, "me": {"_count": 1}}, "ever": {"_count": 1, "mentioned": {"_count": 1}}, "thinks": {"_count": 1, "its": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "then": {"_count": 1, "what": {"_count": 1}}, "You": {"_count": 1, "are": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "long": {"_count": 1}}, "dont": {"_count": 1, "get": {"_count": 1}}, "though": {"_count": 1, "Ron": {"_count": 1}}, "left": {"_count": 1, "my": {"_count": 1}}, "gone": {"_count": 1, "youd": {"_count": 1}}, "so": {"_count": 1, "its": {"_count": 1}}, "appear": {"_count": 1, "": {"_count": 1}}}, "yehve": {"_count": 15, "got": {"_count": 8, "yer": {"_count": 2}, "it": {"_count": 1}, "ter": {"_count": 1}, "the": {"_count": 1}, "exams": {"_count": 1}, "a": {"_count": 1}, "no": {"_count": 1}}, "been": {"_count": 1, "trained": {"_count": 1}}, "worked": {"_count": 1, "that": {"_count": 1}}, "had": {"_count": 1, "enough": {"_count": 1}}, "never": {"_count": 1, "seen": {"_count": 1}}, "done": {"_count": 1, "": {"_count": 1}}, "finished": {"_count": 1, "askin": {"_count": 1}}, "given": {"_count": 1, "up": {"_count": 1}}}, "moms": {"_count": 1, "eyes": {"_count": 1, "": {"_count": 1}}}, "rasping": {"_count": 10, "noise": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "noises": {"_count": 1, "": {"_count": 1}}, "genuine": {"_count": 1, "snore": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "bark": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 2, "through": {"_count": 1}, "": {"_count": 1}}, "gurgling": {"_count": 1, "noise": {"_count": 1}}, "breath": {"_count": 1, "of": {"_count": 1}}}, "demand": {"_count": 5, "that": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "some": {"_count": 1, "small": {"_count": 1}}}, "breaking": {"_count": 72, "and": {"_count": 1, "entering": {"_count": 1}}, "will": {"_count": 1, "lose": {"_count": 1}}, "another": {"_count": 1, "school": {"_count": 1}}, "rules": {"_count": 3, "": {"_count": 1}, "since": {"_count": 1}, "do": {"_count": 1}}, "his": {"_count": 2, "nose": {"_count": 1}, "wand": {"_count": 1}}, "point": {"_count": 4, "with": {"_count": 1}, "": {"_count": 1}, "even": {"_count": 1}, "as": {"_count": 1}}, "a": {"_count": 2, "school": {"_count": 1}, "hundred": {"_count": 1}}, "any": {"_count": 2, "more": {"_count": 1}, "rules": {"_count": 1}}, "about": {"_count": 1, "fifty": {"_count": 1}}, "Harrys": {"_count": 1, "nose": {"_count": 1}}, "across": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}, "off": {"_count": 5, "dead": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "twigs": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "relief": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "china": {"_count": 5, "": {"_count": 1}, "Neville": {"_count": 1}, "from": {"_count": 1}, "came": {"_count": 1}, "He": {"_count": 1}}, "into": {"_count": 7, "silent": {"_count": 1}, "the": {"_count": 1}, "Snapes": {"_count": 1}, "my": {"_count": 1}, "your": {"_count": 2}, "Umbridges": {"_count": 1}}, "the": {"_count": 7, "rules": {"_count": 2}, "milk": {"_count": 1}, "thread": {"_count": 1}, "International": {"_count": 1}, "circle": {"_count": 1}, "ring": {"_count": 1}}, "out": {"_count": 2, "over": {"_count": 1}, "everywhere": {"_count": 1}}, "it": {"_count": 1, "apart": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 1}, "as": {"_count": 1}, "arguments": {"_count": 1}}, "glass": {"_count": 2, "Krum": {"_count": 1}, "frantically": {"_count": 1}}, "inside": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "occasionally": {"_count": 1, "into": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "eye": {"_count": 1, "contact": {"_count": 1}}, "no": {"_count": 1, "rules": {"_count": 1}}, "free": {"_count": 1, "": {"_count": 1}}, "Albuss": {"_count": 1, "nose": {"_count": 1}}, "their": {"_count": 1, "necks": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "without": {"_count": 1}, "dont": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "curfew": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}}, "entering": {"_count": 30, "": {"_count": 4, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 2}}, "the": {"_count": 13, "magical": {"_count": 1}, "room": {"_count": 2}, "tiny": {"_count": 1}, "tent": {"_count": 1}, "tournament": {"_count": 2}, "Triwizard": {"_count": 1}, "grounds": {"_count": 1}, "Great": {"_count": 2}, "realms": {"_count": 1}, "place": {"_count": 1}}, "by": {"_count": 1, "stealth": {"_count": 1}}, "Hagrids": {"_count": 1, "cabin": {"_count": 1}}, "but": {"_count": 1, "their": {"_count": 1}}, "Gryffindor": {"_count": 1, "Tower": {"_count": 1}}, "said": {"_count": 2, "Fred": {"_count": 1}, "Hermione": {"_count": 1}}, "a": {"_count": 1, "most": {"_count": 1}}, "Azkaban": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "leaving": {"_count": 1}}, "it": {"_count": 1, "on": {"_count": 1}}, "our": {"_count": 1, "world": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "Ah": {"_count": 161, "shut": {"_count": 1, "up": {"_count": 1}}, "go": {"_count": 1, "boil": {"_count": 1}}, "Harry": {"_count": 4, "I": {"_count": 1}, "": {"_count": 2}, "how": {"_count": 1}}, "yes": {"_count": 22, "said": {"_count": 8}, "he": {"_count": 2}, "I": {"_count": 4}, "so": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}, "of": {"_count": 1}, "Professor": {"_count": 1}, "zis": {"_count": 1}}, "music": {"_count": 1, "he": {"_count": 1}}, "Hagrid": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 22, "Hagrid": {"_count": 2}, "Fred": {"_count": 1}, "Flint": {"_count": 1}, "Lockhart": {"_count": 1}, "a": {"_count": 1}, "Lupin": {"_count": 1}, "Wood": {"_count": 1}, "Moody": {"_count": 2}, "Mundungus": {"_count": 1}, "Fudge": {"_count": 2}, "Dumbledore": {"_count": 4}, "Harry": {"_count": 2}, "Pius": {"_count": 1}, "Phineas": {"_count": 1}, "Xenophilius": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "now": {"_count": 3, "Im": {"_count": 1}, "said": {"_count": 1}, "this": {"_count": 1}}, "": {"_count": 11, "!": {"_count": 2}, ".": {"_count": 9}}, "speak": {"_count": 1, "not": {"_count": 1}}, "sir": {"_count": 5, "he": {"_count": 1}, "this": {"_count": 1}, "why": {"_count": 1}, "ask": {"_count": 1}, "said": {"_count": 1}}, "well": {"_count": 15, "guests": {"_count": 1}, "people": {"_count": 1}, "Snape": {"_count": 1}, "at": {"_count": 1}, "said": {"_count": 5}, "": {"_count": 3}, "youve": {"_count": 1}, "that": {"_count": 1}, "This": {"_count": 1}}, "the": {"_count": 1, "Hand": {"_count": 1}}, "heres": {"_count": 1, "the": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "Gadding": {"_count": 1, "with": {"_count": 1}}, "if": {"_count": 2, "Harry": {"_count": 1}, "only": {"_count": 1}}, "Riddle": {"_count": 1, "said": {"_count": 1}}, "youre": {"_count": 3, "worrying": {"_count": 1}, "awake": {"_count": 1}, "here": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "starting": {"_count": 1, "Divination": {"_count": 1}}, "theres": {"_count": 1, "Penelope": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "Severus": {"_count": 1, "said": {"_count": 1}}, "here": {"_count": 3, "he": {"_count": 2}, "we": {"_count": 1}}, "Wormtail": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 5, "must": {"_count": 1}, "heard": {"_count": 1}, "know": {"_count": 1}, "have": {"_count": 2}}, "this": {"_count": 1, "is": {"_count": 1}}, "right": {"_count": 2, "said": {"_count": 1}, "certainly": {"_count": 1}}, "why": {"_count": 1, "shouldnt": {"_count": 1}}, "excellent": {"_count": 1, "lunch": {"_count": 1}}, "I": {"_count": 4, "see": {"_count": 2}, "don": {"_count": 1}, "was": {"_count": 1}}, "Fudge": {"_count": 1, "said": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "no": {"_count": 4, "I": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "think": {"_count": 1, "of": {"_count": 1}}, "yeah": {"_count": 1, "that": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 3, "of": {"_count": 1}, "Dumblydorr": {"_count": 1}, "the": {"_count": 1}}, "what": {"_count": 2, "evidence": {"_count": 1}, "a": {"_count": 1}}, "look": {"_count": 1, "boys": {"_count": 1}}, "Agrid": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "eez": {"_count": 1}}, "Hermione": {"_count": 1, "youre": {"_count": 1}}, "Evans": {"_count": 1, "dont": {"_count": 1}}, "shes": {"_count": 1, "left": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "good": {"_count": 3, "evening": {"_count": 2}, "hes": {"_count": 1}}, "and": {"_count": 1, "this": {"_count": 1}}, "hello": {"_count": 1, "Nymphadora": {"_count": 1}}, "Sybill": {"_count": 1, "we": {"_count": 1}}, "that": {"_count": 2, "young": {"_count": 1}, "seems": {"_count": 1}}, "poor": {"_count": 1, "Lucius": {"_count": 1}}, "Potter": {"_count": 2, "said": {"_count": 1}, "she": {"_count": 1}}, "they": {"_count": 1, "are": {"_count": 1}}, "Mafalda": {"_count": 1, "": {"_count": 1}}, "God": {"_count": 1, "bless": {"_count": 1}}, "dont": {"_count": 1, "say": {"_count": 1}}, "Probity": {"_count": 1, "Probes": {"_count": 1}}}, "prune": {"_count": 2, "said": {"_count": 1, "the": {"_count": 1}}, "yours": {"_count": 1, "must": {"_count": 1}}}, "gun": {"_count": 5, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 2, "Fawkes": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 1, "kind": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "knot": {"_count": 31, "as": {"_count": 1, "easily": {"_count": 1}}, "of": {"_count": 14, "Slytherin": {"_count": 1}, "curious": {"_count": 1}, "people": {"_count": 4}, "rope": {"_count": 1}, "Slytherins": {"_count": 1}, "wizards": {"_count": 1}, "innocentlooking": {"_count": 1}, "tall": {"_count": 1}, "prosperouslooking": {"_count": 1}, "students": {"_count": 1}, "fervent": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 5}}, "that": {"_count": 1, "freezes": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 2, "vanished": {"_count": 1}, "Hagrid": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 2}, "Harrys": {"_count": 1}, "the": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 1, "several": {"_count": 1}}}, "rubber": {"_count": 13, "and": {"_count": 1, "threw": {"_count": 1}}, "boots": {"_count": 1, "and": {"_count": 1}}, "glove": {"_count": 1, "": {"_count": 1}}, "mouse": {"_count": 1, "": {"_count": 1}}, "chicken": {"_count": 1, "Bagman": {"_count": 1}}, "tire": {"_count": 1, "back": {"_count": 1}}, "haddock": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "gloves": {"_count": 1, "and": {"_count": 1}}, "tube": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "chickens": {"_count": 1, "or": {"_count": 1}}}, "mouse": {"_count": 13, "being": {"_count": 1, "trodden": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "dangling": {"_count": 1, "from": {"_count": 1}}, "holes": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "its": {"_count": 1}}, "again": {"_count": 1, "I": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "tail": {"_count": 1, "and": {"_count": 1}}, "colored": {"_count": 1, "hair": {"_count": 1}}, "skittering": {"_count": 1, "along": {"_count": 1}}, "fell": {"_count": 1, "out": {"_count": 1}}}, "Anyway": {"_count": 97, "Harry": {"_count": 4, "said": {"_count": 1}, "youre": {"_count": 1}, "how": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 1, "this": {"_count": 1}}, "what": {"_count": 3, "does": {"_count": 1}, "are": {"_count": 1}, "really": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "wed": {"_count": 2, "better": {"_count": 2}}, "I": {"_count": 4, "know": {"_count": 1}, "was": {"_count": 1}, "thought": {"_count": 1}, "had": {"_count": 1}}, "weve": {"_count": 2, "got": {"_count": 1}, "never": {"_count": 1}}, "maybe": {"_count": 1, "it": {"_count": 1}}, "who": {"_count": 1, "says": {"_count": 1}}, "when": {"_count": 1, "little": {"_count": 1}}, "they": {"_count": 4, "cornered": {"_count": 1}, "prefer": {"_count": 1}, "carried": {"_count": 1}, "had": {"_count": 1}}, "you": {"_count": 3, "can": {"_count": 1}, "said": {"_count": 1}, "wont": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "well": {"_count": 1, "see": {"_count": 1}}, "we": {"_count": 3, "know": {"_count": 1}, "can": {"_count": 1}, "saw": {"_count": 1}}, "Hermione": {"_count": 1, "the": {"_count": 1}}, "good": {"_count": 1, "work": {"_count": 1}}, "its": {"_count": 4, "nowhere": {"_count": 1}, "not": {"_count": 1}, "a": {"_count": 1}, "its": {"_count": 1}}, "wheres": {"_count": 1, "the": {"_count": 1}}, "shes": {"_count": 1, "not": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "thats": {"_count": 2, "not": {"_count": 2}}, "your": {"_count": 1, "parents": {"_count": 1}}, "whats": {"_count": 1, "up": {"_count": 1}}, "Ive": {"_count": 1, "always": {"_count": 1}}, "were": {"_count": 1, "having": {"_count": 1}}, "why": {"_count": 1, "were": {"_count": 1}}, "once": {"_count": 3, "it": {"_count": 1}, "youre": {"_count": 2}}, "that": {"_count": 1, "firs": {"_count": 1}}, "one": {"_count": 2, "o": {"_count": 1}, "of": {"_count": 1}}, "said": {"_count": 3, "Mr": {"_count": 1}, "Slughorn": {"_count": 1}, "Hermione": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "don": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "more": {"_count": 1, "trouble": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Grawpy": {"_count": 1, "shouted": {"_count": 1}}, "the": {"_count": 5, "Department": {"_count": 1}, "St": {"_count": 1}, "rest": {"_count": 1}, "boy": {"_count": 1}, "book": {"_count": 1}}, "never": {"_count": 1, "mind": {"_count": 1}}, "back": {"_count": 1, "now": {"_count": 1}}, "it": {"_count": 1, "doesnt": {"_count": 1}}, "Ill": {"_count": 1, "see": {"_count": 1}}, "explain": {"_count": 1, "what": {"_count": 1}}, "hes": {"_count": 2, "got": {"_count": 1}, "going": {"_count": 1}}, "She": {"_count": 1, "rummaged": {"_count": 1}}, "sorry": {"_count": 1, "got": {"_count": 1}}, "Ginny": {"_count": 1, "went": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "Im": {"_count": 1, "Reg": {"_count": 1}}, "his": {"_count": 1, "Patronus": {"_count": 1}}, "Fleur": {"_count": 1, "went": {"_count": 1}}, "Neville": {"_count": 1, "laughed": {"_count": 1}}}, "Got": {"_count": 54, "summat": {"_count": 2, "fer": {"_count": 1}, "ter": {"_count": 1}}, "em": {"_count": 2, "too": {"_count": 1}, "all": {"_count": 1}}, "everythin": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 6, "here": {"_count": 1}, "said": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 2}, "": {"_count": 1}}, "the": {"_count": 1, "lot": {"_count": 1}}, "time": {"_count": 2, "fer": {"_count": 2}}, "to": {"_count": 10, "have": {"_count": 1}, "get": {"_count": 1}, "be": {"_count": 2}, "": {"_count": 2}, "said": {"_count": 1}, "give": {"_count": 1}, "you": {"_count": 1}, "go": {"_count": 1}}, "this": {"_count": 1, "outta": {"_count": 1}}, "past": {"_count": 1, "McGonagalls": {"_count": 1}}, "a": {"_count": 6, "sock": {"_count": 1}, "real": {"_count": 1}, "very": {"_count": 1}, "plan": {"_count": 1}, "little": {"_count": 1}, "problem": {"_count": 1}}, "enough": {"_count": 1, "on": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 2, "tonguetied": {"_count": 1}, "his": {"_count": 1}}, "your": {"_count": 4, "trunk": {"_count": 1}, "autograph": {"_count": 1}, "bed": {"_count": 1}, "robes": {"_count": 1}}, "any": {"_count": 1, "idea": {"_count": 1}}, "me": {"_count": 1, "the": {"_count": 1}}, "Potters": {"_count": 1, "best": {"_count": 1}}, "yer": {"_count": 1, "clue": {"_count": 1}}, "lost": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "owl": {"_count": 1}}, "inside": {"_count": 1, "a": {"_count": 1}}, "evrything": {"_count": 1, "": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "lucky": {"_count": 1, "I": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "there": {"_count": 1, "at": {"_count": 1}}, "got": {"_count": 1, "what": {"_count": 1}}}, "summat": {"_count": 13, "fer": {"_count": 1, "yeh": {"_count": 1}}, "stronger": {"_count": 1, "if": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "useful": {"_count": 1, "or": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "bad": {"_count": 1, "loose": {"_count": 1}}, "else": {"_count": 1, "Stan": {"_count": 1}}, "ter": {"_count": 1, "show": {"_count": 1}}, "abou": {"_count": 1, "Snape": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}}, "fer": {"_count": 96, "yeh": {"_count": 4, "here": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "ter": {"_count": 1}}, "cryin": {"_count": 1, "out": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 2}, "ter": {"_count": 1}}, "followers": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 16, "change": {"_count": 1}, "couple": {"_count": 2}, "pickmeup": {"_count": 1}, "sister": {"_count": 1}, "bite": {"_count": 1}, "good": {"_count": 1}, "drink": {"_count": 1}, "dragon": {"_count": 1}, "FleshEatin": {"_count": 1}, "while": {"_count": 1}, "reason": {"_count": 1}, "momen": {"_count": 1}, "chance": {"_count": 1}, "giant": {"_count": 1}, "bit": {"_count": 1}}, "deliverin": {"_count": 1, "the": {"_count": 1}}, "school": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 4, "is": {"_count": 1}, "": {"_count": 2}, "lookin": {"_count": 1}}, "anything": {"_count": 1, "yeh": {"_count": 1}}, "Minister": {"_count": 1, "o": {"_count": 1}}, "advice": {"_count": 1, "": {"_count": 1}}, "wands": {"_count": 1, "Ollivanders": {"_count": 1}}, "Hogwarts": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "cat": {"_count": 1}}, "Nicolas": {"_count": 1, "Flamel": {"_count": 1}}, "the": {"_count": 11, "journey": {"_count": 1}, "Dark": {"_count": 1}, "hippogriff": {"_count": 1}, "Disposal": {"_count": 2}, "Slytherins": {"_count": 1}, "Gurg": {"_count": 1}, "Death": {"_count": 1}, "others": {"_count": 1}, "Heads": {"_count": 1}, "off": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "it": {"_count": 4, "": {"_count": 1}, "if": {"_count": 1}, "that": {"_count": 1}, "Harry": {"_count": 1}}, "photos": {"_count": 1, "": {"_count": 1}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 2, "money": {"_count": 1}, "own": {"_count": 1}}, "interestin": {"_count": 1, "creatures": {"_count": 1}}, "me": {"_count": 5, "already": {"_count": 1}, "": {"_count": 2}, "Hermione": {"_count": 1}, "over": {"_count": 1}}, "I": {"_count": 1, "got": {"_count": 1}}, "each": {"_count": 1, "o": {"_count": 1}}, "all": {"_count": 1, "I": {"_count": 1}}, "whoever": {"_count": 1, "picks": {"_count": 1}}, "years": {"_count": 2, "Harry": {"_count": 1}, "I": {"_count": 1}}, "knowin": {"_count": 1, "moren": {"_count": 1}}, "humans": {"_count": 1, "anyway": {"_count": 1}}, "where": {"_count": 1, "Olympes": {"_count": 1}}, "signs": {"_count": 1, "of": {"_count": 1}}, "ages": {"_count": 2, "": {"_count": 2}}, "our": {"_count": 1, "own": {"_count": 1}}, "another": {"_count": 1, "the": {"_count": 1}}, "himself": {"_count": 1, "said": {"_count": 1}}, "more": {"_count": 1, "": {"_count": 1}}, "hours": {"_count": 1, "yeh": {"_count": 1}}, "yer": {"_count": 3, "O": {"_count": 1}, "lessons": {"_count": 1}, "fifth": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "one": {"_count": 1, "day": {"_count": 1}}, "stoppin": {"_count": 1, "all": {"_count": 1}}, "anyone": {"_count": 1, "but": {"_count": 1}}, "offerin": {"_count": 1, "Hermione": {"_count": 1}}, "TimeTurners": {"_count": 1, "We": {"_count": 1}}, "good": {"_count": 1, "": {"_count": 1}}, "midnight": {"_count": 1, "I": {"_count": 1}}, "granted": {"_count": 1, "an": {"_count": 1}}, "not": {"_count": 1, "givin": {"_count": 1}}, "bindin": {"_count": 1, "on": {"_count": 1}}}, "mighta": {"_count": 6, "sat": {"_count": 1, "on": {"_count": 1}}, "bin": {"_count": 2, "Professor": {"_count": 1}, "twentyfive": {"_count": 1}}, "met": {"_count": 1, "Professor": {"_count": 1}}, "remembered": {"_count": 1, "tha": {"_count": 1}}, "taken": {"_count": 1, "a": {"_count": 1}}}, "itll": {"_count": 63, "taste": {"_count": 1, "all": {"_count": 1}}, "rub": {"_count": 1, "off": {"_count": 1}}, "really": {"_count": 1, "wipe": {"_count": 1}}, "be": {"_count": 25, "worse": {"_count": 1}, "to": {"_count": 1}, "fascinating": {"_count": 2}, "him": {"_count": 1}, "best": {"_count": 1}, "hard": {"_count": 1}, "quick": {"_count": 1}, "a": {"_count": 5}, "much": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "obvious": {"_count": 1}, "all": {"_count": 2}, "very": {"_count": 1}, "on": {"_count": 1}, "part": {"_count": 1}, "because": {"_count": 1}, "worth": {"_count": 1}, "so": {"_count": 1}}, "have": {"_count": 2, "to": {"_count": 2}}, "take": {"_count": 3, "too": {"_count": 1}, "Mum": {"_count": 1}, "ages": {"_count": 1}}, "stop": {"_count": 1, "bleeding": {"_count": 1}}, "look": {"_count": 5, "suspicious": {"_count": 2}, "really": {"_count": 1}, "like": {"_count": 1}, "too": {"_count": 1}}, "help": {"_count": 3, "you": {"_count": 1}, "in": {"_count": 1}, "me": {"_count": 1}}, "wake": {"_count": 1, "him": {"_count": 1}}, "damage": {"_count": 1, "their": {"_count": 1}}, "go": {"_count": 2, "blank": {"_count": 1}, "well": {"_count": 1}}, "come": {"_count": 1, "": {"_count": 1}}, "need": {"_count": 2, "cleaning": {"_count": 1}, "proper": {"_count": 1}}, "dawn": {"_count": 1, "on": {"_count": 1}}, "get": {"_count": 1, "boring": {"_count": 1}}, "bbbe": {"_count": 1, "a": {"_count": 1}}, "kill": {"_count": 1, "him": {"_count": 1}}, "just": {"_count": 1, "draw": {"_count": 1}}, "make": {"_count": 1, "Eloise": {"_count": 1}}, "suffocate": {"_count": 1, "him": {"_count": 1}}, "run": {"_count": 1, "off": {"_count": 1}}, "do": {"_count": 3, "you": {"_count": 1}, "us": {"_count": 1}, "it": {"_count": 1}}, "all": {"_count": 1, "be": {"_count": 1}}, "throw": {"_count": 1, "them": {"_count": 1}}, "still": {"_count": 1, "work": {"_count": 1}}}, "taste": {"_count": 23, "all": {"_count": 1, "right": {"_count": 1}}, "them": {"_count": 1, "though": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 3, "publicity": {"_count": 1}, "famous": {"_count": 1}, "human": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "it": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "burning": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 4, "being": {"_count": 1}, "Stinksap": {"_count": 1}, "our": {"_count": 1}, "what": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 2, "houseguests": {"_count": 1}, "decoration": {"_count": 1}}, "some": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "po": {"_count": 1}}, "every": {"_count": 1, "bottle": {"_count": 1}}}, "overcoat": {"_count": 13, "he": {"_count": 2, "pulled": {"_count": 2}}, "rabbit": {"_count": 1, "fur": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 1, "was": {"_count": 1}}, "with": {"_count": 2, "Fang": {"_count": 1}, "matching": {"_count": 1}}, "materialized": {"_count": 1, "right": {"_count": 1}}, "that": {"_count": 1, "seemed": {"_count": 1}}, "covering": {"_count": 1, "a": {"_count": 1}}}, "slightly": {"_count": 428, "squashed": {"_count": 2, "box": {"_count": 1}, "skrewt": {"_count": 1}}, "burnt": {"_count": 1, "sausages": {"_count": 1}}, "transparent": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 12, "the": {"_count": 3}, "seed": {"_count": 1}, "hide": {"_count": 1}, "reveal": {"_count": 1}, "take": {"_count": 1}, "indicate": {"_count": 1}, "one": {"_count": 1}, "his": {"_count": 1}, "look": {"_count": 1}, "Narcissa": {"_count": 1}}, "": {"_count": 55, ".": {"_count": 55}}, "smaller": {"_count": 5, "than": {"_count": 4}, "writing": {"_count": 1}}, "the": {"_count": 1, "towering": {"_count": 1}}, "crosseyed": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "softened": {"_count": 1, "expression": {"_count": 1}}, "from": {"_count": 1, "Mr": {"_count": 1}}, "under": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "disappointed": {"_count": 4, "but": {"_count": 2}, "behind": {"_count": 1}, "by": {"_count": 1}}, "Harry": {"_count": 3, "climbed": {"_count": 1}, "saw": {"_count": 1}, "pushed": {"_count": 1}}, "as": {"_count": 27, "he": {"_count": 10}, "specks": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 2}, "for": {"_count": 1}, "though": {"_count": 4}, "she": {"_count": 5}, "they": {"_count": 2}, "it": {"_count": 1}}, "hurt": {"_count": 2, "that": {"_count": 1}, "voice": {"_count": 1}}, "dizzy": {"_count": 1, "Harry": {"_count": 1}}, "late": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 4, "raised": {"_count": 1}, "opened": {"_count": 1}, "prodded": {"_count": 1}, "bent": {"_count": 1}}, "in": {"_count": 11, "her": {"_count": 2}, "his": {"_count": 3}, "its": {"_count": 1}, "the": {"_count": 4}, "Mrs": {"_count": 1}}, "at": {"_count": 9, "the": {"_count": 6}, "Hermione": {"_count": 1}, "his": {"_count": 1}, "waist": {"_count": 1}}, "open": {"_count": 7, "": {"_count": 4}, "and": {"_count": 1}, "by": {"_count": 1}, "gaping": {"_count": 1}}, "more": {"_count": 7, "cheerful": {"_count": 4}, "anxious": {"_count": 1}, "grit": {"_count": 1}, "animated": {"_count": 1}}, "hurrying": {"_count": 1, "up": {"_count": 1}}, "confused": {"_count": 3, "": {"_count": 3}}, "I": {"_count": 1, "assumed": {"_count": 1}}, "off": {"_count": 2, "his": {"_count": 1}, "course": {"_count": 1}}, "abashed": {"_count": 2, "": {"_count": 1}, "Seamus": {"_count": 1}}, "alarmed": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "sweat": {"_count": 1}}, "red": {"_count": 1, "": {"_count": 1}}, "raised": {"_count": 3, "voice": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}}, "suspicious": {"_count": 2, "": {"_count": 1}, "way": {"_count": 1}}, "twisted": {"_count": 1, "smile": {"_count": 1}}, "hysterical": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 2, "out": {"_count": 2}}, "creepy": {"_count": 1, "with": {"_count": 1}}, "worried": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "overdid": {"_count": 1, "his": {"_count": 1}}, "inclined": {"_count": 1, "to": {"_count": 1}}, "sick": {"_count": 3, "": {"_count": 3}}, "but": {"_count": 7, "his": {"_count": 1}, "she": {"_count": 1}, "a": {"_count": 1}, "did": {"_count": 1}, "everyone": {"_count": 1}, "other": {"_count": 1}, "its": {"_count": 1}}, "breathless": {"_count": 1, "but": {"_count": 1}}, "blurred": {"_count": 2, "": {"_count": 2}}, "so": {"_count": 3, "that": {"_count": 3}}, "out": {"_count": 3, "of": {"_count": 3}}, "while": {"_count": 2, "he": {"_count": 1}, "most": {"_count": 1}}, "pink": {"_count": 9, "": {"_count": 4}, "but": {"_count": 3}, "around": {"_count": 1}, "and": {"_count": 1}}, "too": {"_count": 2, "big": {"_count": 1}, "as": {"_count": 1}}, "embarrassed": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 12, "looking": {"_count": 1}, "had": {"_count": 2}, "glanced": {"_count": 1}, "sweeping": {"_count": 1}, "put": {"_count": 1}, "Voldemort": {"_count": 1}, "saying": {"_count": 1}, "sank": {"_count": 1}, "saw": {"_count": 1}, "fallen": {"_count": 1}, "made": {"_count": 1}}, "leaned": {"_count": 1, "over": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "duck": {"_count": 2, "footed": {"_count": 2}}, "mad": {"_count": 3, "": {"_count": 2}, "eyes": {"_count": 1}}, "alarming": {"_count": 2, "a": {"_count": 1}, "change": {"_count": 1}}, "for": {"_count": 3, "several": {"_count": 1}, "the": {"_count": 1}, "hoping": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 2, "waiting": {"_count": 1}, "and": {"_count": 1}}, "choked": {"_count": 1, "voice": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "eerie": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "was": {"_count": 1, "watching": {"_count": 1}}, "calmer": {"_count": 1, "": {"_count": 1}}, "overblown": {"_count": 1, "cartoon": {"_count": 1}}, "green": {"_count": 1, "": {"_count": 1}}, "fearful": {"_count": 1, "look": {"_count": 1}}, "discomposed": {"_count": 1, "to": {"_count": 1}}, "nervous": {"_count": 5, "": {"_count": 3}, "look": {"_count": 1}, "at": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "right": {"_count": 1, "over": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "surprised": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "perturbed": {"_count": 1, "": {"_count": 1}}, "happier": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "freckled": {"_count": 1, "with": {"_count": 1}}, "nauseous": {"_count": 1, "as": {"_count": 1}}, "paler": {"_count": 1, "than": {"_count": 1}}, "flustered": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "unhealthy": {"_count": 1, "look": {"_count": 1}}, "less": {"_count": 3, "calmly": {"_count": 1}, "gray": {"_count": 1}, "anxious": {"_count": 1}}, "hoarse": {"_count": 2, "voice": {"_count": 1}, "whisper": {"_count": 1}}, "shorter": {"_count": 1, "": {"_count": 1}}, "ashamed": {"_count": 3, "": {"_count": 1}, "of": {"_count": 2}}, "flattened": {"_count": 2, "tone": {"_count": 1}, "hawklike": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 1}, "winking": {"_count": 1}, "his": {"_count": 1}}, "frightened": {"_count": 1, "two": {"_count": 1}}, "desperate": {"_count": 1, "its": {"_count": 1}}, "bulging": {"_count": 1, "": {"_count": 1}}, "deeper": {"_count": 1, "shade": {"_count": 1}}, "broomsticks": {"_count": 1, "were": {"_count": 1}}, "uneasy": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "do": {"_count": 1}}, "giving": {"_count": 1, "it": {"_count": 1}}, "anxious": {"_count": 3, "": {"_count": 3}}, "panicked": {"_count": 1, "looks": {"_count": 1}}, "awkward": {"_count": 1, "pause": {"_count": 1}}, "sheepish": {"_count": 1, "": {"_count": 1}}, "mollified": {"_count": 1, "as": {"_count": 1}}, "harassed": {"_count": 2, "": {"_count": 2}}, "about": {"_count": 1, "the": {"_count": 1}}, "redder": {"_count": 1, "than": {"_count": 1}}, "preoccupied": {"_count": 1, "": {"_count": 1}}, "malicious": {"_count": 1, "grin": {"_count": 1}}, "bloodshot": {"_count": 1, "eyes": {"_count": 1}}, "amused": {"_count": 1, "all": {"_count": 1}}, "trembling": {"_count": 2, "hands": {"_count": 1}, "hand": {"_count": 1}}, "apparently": {"_count": 1, "thinking": {"_count": 1}}, "nervously": {"_count": 2, "": {"_count": 2}}, "higher": {"_count": 2, "than": {"_count": 1}, "and": {"_count": 1}}, "defensively": {"_count": 1, "": {"_count": 1}}, "hot": {"_count": 1, "around": {"_count": 1}}, "impatiently": {"_count": 1, "but": {"_count": 1}}, "she": {"_count": 2, "just": {"_count": 1}, "dashed": {"_count": 1}}, "guilty": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "crestfallen": {"_count": 2, "": {"_count": 2}}, "taken": {"_count": 2, "aback": {"_count": 2}}, "wary": {"_count": 1, "": {"_count": 1}}, "drier": {"_count": 1, "than": {"_count": 1}}, "mournful": {"_count": 1, "air": {"_count": 1}}, "larger": {"_count": 2, "than": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 1, "robes": {"_count": 1}}, "marred": {"_count": 1, "by": {"_count": 1}}, "desperately": {"_count": 1, "who": {"_count": 1}}, "stunned": {"_count": 1, "silence": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "irritated": {"_count": 1, "that": {"_count": 1}}, "ridiculous": {"_count": 1, "even": {"_count": 1}}, "apprehensively": {"_count": 1, "though": {"_count": 1}}, "Mundunguslike": {"_count": 1, "whiff": {"_count": 1}}, "bitter": {"_count": 1, "smile": {"_count": 1}}, "disconcerted": {"_count": 1, "for": {"_count": 1}}, "weary": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "the": {"_count": 1}, "she": {"_count": 1}}, "breathlessly": {"_count": 1, "": {"_count": 1}}, "flushed": {"_count": 1, "was": {"_count": 1}}, "bemused": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "perhaps": {"_count": 1, "you": {"_count": 1}}, "very": {"_count": 1, "white": {"_count": 1}}, "Snape": {"_count": 1, "straightened": {"_count": 1}}, "neglected": {"_count": 1, "feeling": {"_count": 1}}, "perplexed": {"_count": 1, "Harry": {"_count": 1}}, "longer": {"_count": 1, "than": {"_count": 1}}, "apologetic": {"_count": 1, "note": {"_count": 1}}, "dry": {"_count": 1, "": {"_count": 1}}, "reckless": {"_count": 1, "he": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "breathing": {"_count": 1, "in": {"_count": 1}}, "mocking": {"_count": 1, "smile": {"_count": 1}}, "problematic": {"_count": 1, "part": {"_count": 1}}, "closer": {"_count": 1, "together": {"_count": 1}}, "punchdrunk": {"_count": 1, "he": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "disgruntled": {"_count": 2, "": {"_count": 2}}, "nonplussed": {"_count": 1, "": {"_count": 1}}, "abandoned": {"_count": 1, "": {"_count": 1}}, "resentful": {"_count": 1, "at": {"_count": 1}}, "dazed": {"_count": 3, "and": {"_count": 2}, "voice": {"_count": 1}}, "damp": {"_count": 1, "moldysmelling": {"_count": 1}}, "his": {"_count": 1, "mane": {"_count": 1}}, "well": {"_count": 1, "yes": {"_count": 1}}, "did": {"_count": 1, "memories": {"_count": 1}}, "sweaty": {"_count": 1, "hand": {"_count": 1}}, "uncomfortable": {"_count": 2, "as": {"_count": 1}, "at": {"_count": 1}}, "tender": {"_count": 1, "underneath": {"_count": 1}}, "exasperated": {"_count": 2, "voice": {"_count": 1}, "": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "frustrated": {"_count": 1, "": {"_count": 1}}, "narrowed": {"_count": 1, "eyes": {"_count": 1}}, "ajar": {"_count": 1, "reminding": {"_count": 1}}, "hair": {"_count": 1, "whipped": {"_count": 1}}, "afraid": {"_count": 1, "of": {"_count": 1}}, "smoking": {"_count": 1, "handkerchief": {"_count": 1}}, "revolted": {"_count": 1, "": {"_count": 1}}, "random": {"_count": 1, "way": {"_count": 1}}, "furry": {"_count": 1, "drawstring": {"_count": 1}}, "ruefully": {"_count": 1, "over": {"_count": 1}}, "fatter": {"_count": 1, "than": {"_count": 1}}, "singsong": {"_count": 1, "voice": {"_count": 1}}, "arrogant": {"_count": 1, "face": {"_count": 1}}, "haughty": {"_count": 1, "look": {"_count": 1}}, "manic": {"_count": 1, "expression": {"_count": 1}}, "brutish": {"_count": 1, "face": {"_count": 1}}, "shinier": {"_count": 1, "new": {"_count": 1}}, "looking": {"_count": 2, "toward": {"_count": 1}, "down": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "lower": {"_count": 1, "slower": {"_count": 1}}, "earthier": {"_count": 1, "phrase": {"_count": 1}}, "parted": {"_count": 1, "her": {"_count": 1}}, "overwhelming": {"_count": 1, "": {"_count": 1}}, "odd": {"_count": 1, "": {"_count": 1}}, "taller": {"_count": 1, "than": {"_count": 1}}, "stars": {"_count": 1, "reflected": {"_count": 1}}, "intimidating": {"_count": 1, "": {"_count": 1}}, "muffled": {"_count": 1, "by": {"_count": 1}}, "hunched": {"_count": 1, "next": {"_count": 1}}, "indecent": {"_count": 1, "": {"_count": 1}}, "cocky": {"_count": 1, "look": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}}, "squashed": {"_count": 21, "box": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "flat": {"_count": 1}}, "his": {"_count": 1, "beetle": {"_count": 1}}, "by": {"_count": 1, "Neville": {"_count": 1}}, "and": {"_count": 2, "people": {"_count": 1}, "bulbous": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "face": {"_count": 3, "turned": {"_count": 1}, "to": {"_count": 1}, "jumped": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "probably": {"_count": 1, "broken": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "half": {"_count": 1, "the": {"_count": 1}}, "skrewt": {"_count": 1, "and": {"_count": 1}}, "tomato": {"_count": 1, "of": {"_count": 1}}, "this": {"_count": 1, "plan": {"_count": 1}}, "themselves": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "box": {"_count": 124, "": {"_count": 18, ".": {"_count": 17}, "?": {"_count": 1}}, "and": {"_count": 9, "wrapped": {"_count": 1}, "started": {"_count": 1}, "gulped": {"_count": 1}, "Bagman": {"_count": 1}, "closing": {"_count": 1}, "twenty": {"_count": 1}, "opened": {"_count": 1}, "a": {"_count": 1}, "sitting": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "of": {"_count": 32, "homemade": {"_count": 1}, "Chocolate": {"_count": 4}, "Every": {"_count": 1}, "after": {"_count": 1}, "Filibuster": {"_count": 1}, "dog": {"_count": 1}, "Jelly": {"_count": 1}, "nut": {"_count": 1}, "used": {"_count": 1}, "S": {"_count": 1}, "badges": {"_count": 1}, "Magical": {"_count": 1}, "tissues": {"_count": 1}, "sweets": {"_count": 1}, "Hate": {"_count": 1}, "fireworks": {"_count": 1}, "mice": {"_count": 1}, "Galleons": {"_count": 1}, "EveryFlavor": {"_count": 1}, "squeaking": {"_count": 1}, "starving": {"_count": 1}, "his": {"_count": 1}, "cursed": {"_count": 1}, "stolen": {"_count": 1}, "Weasleys": {"_count": 1}, "crystalized": {"_count": 3}, "the": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "containing": {"_count": 2, "a": {"_count": 1}, "glittering": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "them": {"_count": 1}}, "its": {"_count": 1, "hooded": {"_count": 1}}, "lid": {"_count": 1, "": {"_count": 1}}, "opened": {"_count": 1, "": {"_count": 1}}, "stuffed": {"_count": 1, "full": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "set": {"_count": 1, "at": {"_count": 1}}, "another": {"_count": 1, "frightened": {"_count": 1}}, "filled": {"_count": 1, "gradually": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 2}}, "looking": {"_count": 1, "horrorstruck": {"_count": 1}}, "which": {"_count": 2, "they": {"_count": 1}, "was": {"_count": 1}}, "came": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "perform": {"_count": 1}}, "whose": {"_count": 1, "contents": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "stopped": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "we": {"_count": 1, "would": {"_count": 1}}, "aside": {"_count": 1, "into": {"_count": 1}}, "that": {"_count": 4, "emitted": {"_count": 1}, "read": {"_count": 1}, "you": {"_count": 1}, "had": {"_count": 1}}, "an": {"_count": 1, "Order": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "from": {"_count": 1}}, "shuddered": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "until": {"_count": 1, "darkness": {"_count": 1}}, "made": {"_count": 1, "its": {"_count": 1}}, "sprang": {"_count": 1, "open": {"_count": 1}}, "stood": {"_count": 1, "nearby": {"_count": 1}}, "was": {"_count": 2, "emitting": {"_count": 1}, "shaking": {"_count": 1}}, "rang": {"_count": 1, "out": {"_count": 1}}, "Lavender": {"_count": 1, "was": {"_count": 1}}, "shut": {"_count": 1, "": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "both": {"_count": 1, "drained": {"_count": 1}}, "after": {"_count": 1, "Luna": {"_count": 1}}, "Welcome": {"_count": 1, "to": {"_count": 1}}, "burst": {"_count": 1, "open": {"_count": 1}}, "left": {"_count": 1, "on": {"_count": 1}}, "bearing": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "lying": {"_count": 1, "open": {"_count": 1}}, "too": {"_count": 1, "intent": {"_count": 1}}, "at": {"_count": 1, "random": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "lay": {"_count": 1, "open": {"_count": 1}}}, "sticky": {"_count": 10, "chocolate": {"_count": 1, "cake": {"_count": 1}}, "end": {"_count": 2, "But": {"_count": 1}, "as": {"_count": 1}}, "tongue": {"_count": 1, "": {"_count": 1}}, "spots": {"_count": 1, "havent": {"_count": 1}}, "purpleand": {"_count": 1, "orange": {"_count": 1}}, "patches": {"_count": 1, "in": {"_count": 1}}, "residue": {"_count": 1, "covering": {"_count": 1}}, "moment": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}}, "Happy": {"_count": 15, "Birthday": {"_count": 2, "Harry": {"_count": 1}, "and": {"_count": 1}}, "birthday": {"_count": 6, "to": {"_count": 1}, "": {"_count": 2}, "Ron": {"_count": 1}, "Harry": {"_count": 2}}, "Valentines": {"_count": 1, "Day": {"_count": 1}}, "Easter": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Christmas": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "seventeenth": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "are": {"_count": 1}}}, "Birthday": {"_count": 2, "Harry": {"_count": 1, "written": {"_count": 1}}, "and": {"_count": 1, "much": {"_count": 1}}}, "icing": {"_count": 4, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "forming": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Scrimgeour": {"_count": 1}}}, "lost": {"_count": 248, "on": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 24, "powers": {"_count": 3}, "marbles": {"_count": 2}, "place": {"_count": 1}, "only": {"_count": 1}, "or": {"_count": 1}, "temper": {"_count": 2}, "thread": {"_count": 1}, "confidence": {"_count": 1}, "case": {"_count": 1}, "nerve": {"_count": 2}, "enthusiasm": {"_count": 1}, "mind": {"_count": 2}, "copy": {"_count": 1}, "head": {"_count": 1}, "godfather": {"_count": 1}, "hood": {"_count": 1}, "balance": {"_count": 1}, "wand": {"_count": 1}}, "me": {"_count": 2, "temper": {"_count": 1}, "my": {"_count": 1}}, "my": {"_count": 7, "toad": {"_count": 1}, "liking": {"_count": 1}, "wand": {"_count": 2}, "mind": {"_count": 1}, "powers": {"_count": 1}, "head": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "one": {"_count": 3, "she": {"_count": 1}, "of": {"_count": 1}, "if": {"_count": 1}}, "was": {"_count": 1, "sure": {"_count": 1}}, "once": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 7, "Gryffindor": {"_count": 1}, "words": {"_count": 5}, "centuries": {"_count": 1}}, "two": {"_count": 1, "points": {"_count": 1}}, "control": {"_count": 9, "of": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 4}, "completely": {"_count": 1}, "before": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "so": {"_count": 2, "badly": {"_count": 1}, "much": {"_count": 1}}, "at": {"_count": 2, "something": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 14}, "?": {"_count": 3}, "!": {"_count": 1}}, "them": {"_count": 2, "all": {"_count": 1}, "in": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 5, "hundred": {"_count": 1}, "Quidditch": {"_count": 2}, "lot": {"_count": 1}, "buttock": {"_count": 1}}, "its": {"_count": 3, "fun": {"_count": 1}, "appeal": {"_count": 1}, "dreamy": {"_count": 1}}, "but": {"_count": 2, "she": {"_count": 1}, "also": {"_count": 1}}, "her": {"_count": 5, "temper": {"_count": 2}, "head": {"_count": 1}, "grip": {"_count": 1}, "footing": {"_count": 1}}, "the": {"_count": 16, "white": {"_count": 1}, "trail": {"_count": 1}, "Quidditch": {"_count": 1}, "passwords": {"_count": 1}, "habit": {"_count": 1}, "ability": {"_count": 1}, "thread": {"_count": 2}, "look": {"_count": 1}, "old": {"_count": 1}, "jumpedup": {"_count": 1}, "Quaffle": {"_count": 1}, "previous": {"_count": 1}, "team": {"_count": 1}, "protection": {"_count": 1}, "Invisibility": {"_count": 1}}, "black": {"_count": 1, "ones": {"_count": 1}}, "and": {"_count": 2, "fell": {"_count": 1}, "desperate": {"_count": 1}}, "your": {"_count": 7, "father": {"_count": 1}, "minds": {"_count": 1}, "powers": {"_count": 1}, "temper": {"_count": 1}, "mother": {"_count": 1}, "authority": {"_count": 1}, "wand": {"_count": 1}}, "how": {"_count": 1, "would": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "Floo": {"_count": 1, "powder": {"_count": 1}}, "what": {"_count": 1, "were": {"_count": 1}}, "before": {"_count": 1, "my": {"_count": 1}}, "in": {"_count": 19, "darkness": {"_count": 1}, "unpleasant": {"_count": 1}, "the": {"_count": 3}, "worry": {"_count": 1}, "thought": {"_count": 7}, "my": {"_count": 1}, "memories": {"_count": 1}, "last": {"_count": 1}, "horrified": {"_count": 1}, "their": {"_count": 1}, "contemplation": {"_count": 1}}, "everything": {"_count": 2, "the": {"_count": 1}, "gambling": {"_count": 1}}, "Your": {"_count": 1, "grandmother": {"_count": 1}}, "track": {"_count": 10, "of": {"_count": 9}, "he": {"_count": 1}}, "by": {"_count": 5, "a": {"_count": 2}, "ten": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}}, "an": {"_count": 4, "eye": {"_count": 1}, "opportunity": {"_count": 1}, "ear": {"_count": 2}}, "count": {"_count": 2, "as": {"_count": 1}, "of": {"_count": 1}}, "no": {"_count": 4, "time": {"_count": 4}}, "Im": {"_count": 1, "allowed": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "all": {"_count": 5, "of": {"_count": 1}, "the": {"_count": 2}, "desire": {"_count": 1}, "sense": {"_count": 1}}, "consciousness": {"_count": 1, "": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 4, "Uganda": {"_count": 1}, "Malfoys": {"_count": 1}, "view": {"_count": 2}}, "power": {"_count": 1, "and": {"_count": 1}}, "hospital": {"_count": 1, "prison": {"_count": 1}}, "their": {"_count": 3, "appetites": {"_count": 1}, "minds": {"_count": 1}, "lives": {"_count": 1}}, "after": {"_count": 1, "an": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "buttocks": {"_count": 1, "you": {"_count": 1}}, "amid": {"_count": 1, "fresh": {"_count": 1}}, "Moodys": {"_count": 1, "spare": {"_count": 1}}, "you": {"_count": 1, "all": {"_count": 1}}, "hadnt": {"_count": 1, "he": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "fingers": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 1, "too": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "faith": {"_count": 1, "at": {"_count": 1}}, "cause": {"_count": 1, "when": {"_count": 1}}, "sight": {"_count": 3, "of": {"_count": 3}}, "battle": {"_count": 1, "": {"_count": 1}}, "balance": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "view": {"_count": 1}}, "patience": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "sense": {"_count": 1}}, "em": {"_count": 1, "Harry": {"_count": 1}}, "Finally": {"_count": 1, "succeeding": {"_count": 1}}, "But": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "family": {"_count": 1, "members": {"_count": 1}}, "loved": {"_count": 2, "ones": {"_count": 2}}, "had": {"_count": 1, "hardly": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "everybody": {"_count": 1, "except": {"_count": 1}}, "or": {"_count": 1, "hidden": {"_count": 1}}, "treasure": {"_count": 1, "a": {"_count": 1}}, "diadem": {"_count": 7, "of": {"_count": 2}, "": {"_count": 3}, "said": {"_count": 1}, "out": {"_count": 1}}, "Perkinss": {"_count": 1, "old": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "Luna": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 1, "long": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "hope": {"_count": 1, "of": {"_count": 1}}, "favor": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}}, "True": {"_count": 16, "I": {"_count": 1, "havent": {"_count": 1}}, "Dudley": {"_count": 1, "was": {"_count": 1}}, "Seers": {"_count": 1, "are": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "had": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 2, "Madam": {"_count": 1}, "Ron": {"_count": 1}}, "Neville": {"_count": 1, "did": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "true": {"_count": 1, "said": {"_count": 1}}, "sighed": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "introduced": {"_count": 12, "meself": {"_count": 1, "": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 1}, "somebody": {"_count": 1}, "spells": {"_count": 1}, "prevent": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "him": {"_count": 2, "to": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "us": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}}, "meself": {"_count": 11, "": {"_count": 3, ".": {"_count": 3}}, "but": {"_count": 1, "I": {"_count": 1}}, "up": {"_count": 1, "before": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "lately": {"_count": 1, "said": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "yehve": {"_count": 1, "got": {"_count": 1}}, "Were": {"_count": 1, "not": {"_count": 1}}, "lucky": {"_count": 1, "": {"_count": 1}}}, "Rubeus": {"_count": 11, "Hagrid": {"_count": 7, "Keeper": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 2}, "and": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "said": {"_count": 2, "Riddle": {"_count": 2}}}, "Keeper": {"_count": 52, "of": {"_count": 2, "Keys": {"_count": 2}}, "Im": {"_count": 1, "Keeper": {"_count": 1}}, "for": {"_count": 2, "Gryffindor": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 1}, "Fred": {"_count": 1}, "Luna": {"_count": 1}}, "guards": {"_count": 1, "the": {"_count": 1}}, "Wood": {"_count": 1, "and": {"_count": 1}}, "Bletchley": {"_count": 1, "dives": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "defended": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "!": {"_count": 2}}, "they": {"_count": 1, "were": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "Ryan": {"_count": 1, "and": {"_count": 1}}, "Zograf": {"_count": 1, "flew": {"_count": 1}}, "to": {"_count": 2, "task": {"_count": 1}, "beat": {"_count": 1}}, "now": {"_count": 2, "Olivers": {"_count": 1}, "Ive": {"_count": 1}}, "tryouts": {"_count": 4, "": {"_count": 3}, "told": {"_count": 1}}, "at": {"_count": 1, "five": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "wasnt": {"_count": 1, "Ron": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "Miles": {"_count": 1, "Bletchley": {"_count": 1}}, "against": {"_count": 1, "Polands": {"_count": 1}}, "had": {"_count": 1, "saved": {"_count": 1}}, "ahead": {"_count": 1, "A": {"_count": 1}}, "Weasley": {"_count": 1, "brother": {"_count": 1}}, "he": {"_count": 2, "heard": {"_count": 1}, "won": {"_count": 1}}, "flew": {"_count": 1, "up": {"_count": 1}}, "I": {"_count": 1, "tried": {"_count": 1}}, "so": {"_count": 1, "Ill": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "wont": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 1, "turn": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}}, "Keys": {"_count": 2, "and": {"_count": 1, "Grounds": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "Grounds": {"_count": 1, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "Hogwarts": {"_count": 853, "": {"_count": 221, ".": {"_count": 168}, "!": {"_count": 19}, "?": {"_count": 34}}, "yehll": {"_count": 1, "know": {"_count": 1}}, "o": {"_count": 1, "course": {"_count": 1}}, "fer": {"_count": 1, "cryin": {"_count": 1}}, "School": {"_count": 25, "of": {"_count": 17}, "began": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 2}, "Frowning": {"_count": 1}, "has": {"_count": 1}}, "not": {"_count": 1, "knowin": {"_count": 1}}, "in": {"_count": 9, "their": {"_count": 1}, "five": {"_count": 1}, "a": {"_count": 3}, "his": {"_count": 3}, "ten": {"_count": 1}}, "ever": {"_count": 3, "had": {"_count": 2}, "since": {"_count": 1}}, "he": {"_count": 12, "said": {"_count": 5}, "will": {"_count": 1}, "let": {"_count": 1}, "had": {"_count": 5}}, "meself": {"_count": 1, "but": {"_count": 1}}, "business": {"_count": 4, "": {"_count": 2}, "said": {"_count": 1}, "yeh": {"_count": 1}}, "so": {"_count": 7, "old": {"_count": 1}, "much": {"_count": 1}, "that": {"_count": 1}, "here": {"_count": 1}, "long": {"_count": 1}, "many": {"_count": 1}, "I": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 4, "": {"_count": 3}, "busy": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "I": {"_count": 5, "suppose": {"_count": 2}, "did": {"_count": 1}, "must": {"_count": 1}, "promise": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "list": {"_count": 1, "yet": {"_count": 1}}, "and": {"_count": 37, "when": {"_count": 1}, "he": {"_count": 3}, "they": {"_count": 1}, "only": {"_count": 1}, "horrible": {"_count": 1}, "we": {"_count": 1}, "how": {"_count": 1}, "though": {"_count": 1}, "his": {"_count": 1}, "later": {"_count": 1}, "Harry": {"_count": 1}, "in": {"_count": 1}, "owned": {"_count": 1}, "no": {"_count": 1}, "keep": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 2}, "Sirius": {"_count": 1}, "the": {"_count": 3}, "remain": {"_count": 1}, "sseek": {"_count": 1}, "got": {"_count": 1}, "everything": {"_count": 1}, "work": {"_count": 1}, "took": {"_count": 1}, "she": {"_count": 1}, "never": {"_count": 1}, "as": {"_count": 1}, "light": {"_count": 1}, "to": {"_count": 1}, "find": {"_count": 1}, "Death": {"_count": 1}}, "Express": {"_count": 41, "eleven": {"_count": 1}, "talking": {"_count": 1}, "as": {"_count": 2}, "the": {"_count": 1}, "And": {"_count": 1}, "was": {"_count": 4}, "so": {"_count": 1}, "will": {"_count": 2}, "": {"_count": 9}, "slowed": {"_count": 2}, "on": {"_count": 1}, "a": {"_count": 2}, "moved": {"_count": 1}, "our": {"_count": 1}, "pulled": {"_count": 1}, "and": {"_count": 2}, "crashed": {"_count": 1}, "stood": {"_count": 2}, "without": {"_count": 1}, "next": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}, "to": {"_count": 1}, "would": {"_count": 1}}, "robes": {"_count": 5, "and": {"_count": 1}, "": {"_count": 3}, "beamed": {"_count": 1}}, "toilet": {"_count": 1, "seat": {"_count": 1}}, "said": {"_count": 19, "Professor": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 9}, "Weasley": {"_count": 1}, "Dumbledore": {"_count": 4}, "Malfoy": {"_count": 1}, "Lupin": {"_count": 2}}, "your": {"_count": 1, "triumphs": {"_count": 1}}, "A": {"_count": 12, "History": {"_count": 11}, "modicum": {"_count": 1}}, "Sorting": {"_count": 2, "Hat": {"_count": 2}}, "Hogwarts": {"_count": 1, "Hoggy": {"_count": 1}}, "Hoggy": {"_count": 1, "Warty": {"_count": 1}}, "Teach": {"_count": 1, "us": {"_count": 1}}, "wide": {"_count": 1, "sweeping": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "began": {"_count": 1}}, "before": {"_count": 4, "you": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 2}}, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "Snape": {"_count": 1}}, "the": {"_count": 7, "next": {"_count": 1}, "newly": {"_count": 1}, "previous": {"_count": 1}, "day": {"_count": 1}, "Prizes": {"_count": 1}, "circular": {"_count": 1}, "Riddle": {"_count": 1}}, "two": {"_count": 1, "months": {"_count": 1}}, "teacher": {"_count": 2, "hed": {"_count": 1}, "and": {"_count": 1}}, "woke": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 11, "Christmas": {"_count": 2}, "the": {"_count": 3}, "some": {"_count": 1}, "instance": {"_count": 1}, "ages": {"_count": 1}, "those": {"_count": 1}, "nearly": {"_count": 1}, "good": {"_count": 1}}, "rules": {"_count": 1, "Hagrid": {"_count": 1}}, "was": {"_count": 11, "open": {"_count": 1}, "founded": {"_count": 1}, "back": {"_count": 1}, "looking": {"_count": 1}, "Quidditch": {"_count": 1}, "not": {"_count": 1}, "trying": {"_count": 1}, "from": {"_count": 1}, "where": {"_count": 1}, "going": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 6, "its": {"_count": 1}, "your": {"_count": 1}, "Harry": {"_count": 1}, "apprehensive": {"_count": 1}, "rough": {"_count": 1}, "him": {"_count": 1}}, "Hagrid": {"_count": 2, "growled": {"_count": 1}, "croaked": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 1}, "one": {"_count": 1}, "bay": {"_count": 1}}, "to": {"_count": 14, "get": {"_count": 1}, "those": {"_count": 1}, "my": {"_count": 1}, "check": {"_count": 1}, "find": {"_count": 1}, "make": {"_count": 1}, "ensure": {"_count": 1}, "keep": {"_count": 1}, "maim": {"_count": 1}, "study": {"_count": 1}, "work": {"_count": 1}, "Dumbledore": {"_count": 1}, "remain": {"_count": 1}, "prove": {"_count": 1}}, "has": {"_count": 10, "seen": {"_count": 2}, "ever": {"_count": 2}, "carefully": {"_count": 1}, "brought": {"_count": 1}, "a": {"_count": 1}, "got": {"_count": 1}, "the": {"_count": 1}, "yet": {"_count": 1}}, "had": {"_count": 6, "written": {"_count": 1}, "been": {"_count": 1}, "given": {"_count": 1}, "crashed": {"_count": 1}, "ever": {"_count": 1}, "eclipsed": {"_count": 1}}, "more": {"_count": 3, "even": {"_count": 1}, "enjoyable": {"_count": 1}, "and": {"_count": 1}}, "thats": {"_count": 2, "Hermione": {"_count": 1}, "all": {"_count": 1}}, "gamekeeper": {"_count": 6, "Hagrid": {"_count": 1}, "came": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 2}, "wearing": {"_count": 1}}, "would": {"_count": 3, "expel": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}}, "but": {"_count": 10, "the": {"_count": 1}, "his": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "their": {"_count": 1}, "in": {"_count": 1}, "we": {"_count": 1}}, "that": {"_count": 6, "the": {"_count": 2}, "might": {"_count": 1}, "faithful": {"_count": 1}, "they": {"_count": 1}, "somebody": {"_count": 1}}, "stuff": {"_count": 1, "my": {"_count": 1}}, "also": {"_count": 1, "sounded": {"_count": 1}}, "one": {"_count": 3, "sunny": {"_count": 1}, "he": {"_count": 1}, "is": {"_count": 1}}, "this": {"_count": 5, "year": {"_count": 5}}, "prefect": {"_count": 2, "badge": {"_count": 1}, "I": {"_count": 1}}, "school": {"_count": 1, "list": {"_count": 1}}, "Lee": {"_count": 1, "Jordan": {"_count": 1}}, "prefects": {"_count": 2, "and": {"_count": 1}, "surely": {"_count": 1}}, "castle": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "saw": {"_count": 1}}, "hats": {"_count": 1, "Harry": {"_count": 1}}, "houses": {"_count": 1, "Gryffindor": {"_count": 1}}, "by": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "once": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "assured": {"_count": 1}}, "headmasters": {"_count": 2, "and": {"_count": 1}, "cannot": {"_count": 1}}, "terrible": {"_count": 1, "things": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "everyones": {"_count": 1}}, "forbade": {"_count": 1, "me": {"_count": 1}}, "as": {"_count": 6, "Riddle": {"_count": 1}, "a": {"_count": 4}, "well": {"_count": 1}}, "than": {"_count": 2, "go": {"_count": 1}, "we": {"_count": 1}}, "if": {"_count": 4, "the": {"_count": 1}, "there": {"_count": 1}, "hed": {"_count": 1}, "you": {"_count": 1}}, "can": {"_count": 3, "do": {"_count": 1}, "expel": {"_count": 1}, "stay": {"_count": 1}}, "fifty": {"_count": 2, "years": {"_count": 2}}, "since": {"_count": 1, "the": {"_count": 1}}, "Four": {"_count": 1, "": {"_count": 1}}, "feasts": {"_count": 1, "but": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "Hermione": {"_count": 1, "Granger": {"_count": 1}}, "crest": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "which": {"_count": 1, "five": {"_count": 1}}, "House": {"_count": 2, "teams": {"_count": 1}, "red": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 10, "had": {"_count": 2}, "sent": {"_count": 1}, "walked": {"_count": 1}, "safe": {"_count": 1}, "said": {"_count": 1}, "noticed": {"_count": 1}, "was": {"_count": 1}, "could": {"_count": 1}, "put": {"_count": 1}}, "are": {"_count": 2, "allowed": {"_count": 1}, "guarded": {"_count": 1}}, "students": {"_count": 17, "were": {"_count": 1}, "that": {"_count": 1}, "ever": {"_count": 1}, "took": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "filed": {"_count": 1}, "heading": {"_count": 1}, "laughed": {"_count": 1}, "of": {"_count": 1}, "enjoying": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "Cornelius": {"_count": 1}, "who": {"_count": 2}, "standing": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 2, "Dumbledore": {"_count": 1}, "they": {"_count": 1}}, "were": {"_count": 4, "sorted": {"_count": 1}, "marked": {"_count": 1}, "shouting": {"_count": 1}, "giving": {"_count": 1}}, "hadnt": {"_count": 1, "taught": {"_count": 1}}, "paintings": {"_count": 1, "moving": {"_count": 1}}, "caretaker": {"_count": 1, "a": {"_count": 1}}, "forms": {"_count": 1, "and": {"_count": 1}}, "ghosts": {"_count": 2, "": {"_count": 1}, "avoid": {"_count": 1}}, "Rosmerta": {"_count": 1, "murmured": {"_count": 1}}, "student": {"_count": 6, "could": {"_count": 1}, "to": {"_count": 1}, "requires": {"_count": 1}, "he": {"_count": 1}, "who": {"_count": 2}}, "offered": {"_count": 1, "": {"_count": 1}}, "grounds": {"_count": 8, "and": {"_count": 1}, "as": {"_count": 1}, "how": {"_count": 1}, "havent": {"_count": 1}, "never": {"_count": 1}, "completely": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}}, "when": {"_count": 5, "no": {"_count": 1}, "he": {"_count": 2}, "I": {"_count": 1}, "we": {"_count": 1}}, "now": {"_count": 2, "knew": {"_count": 1}, "you": {"_count": 1}}, "disappear": {"_count": 1, "from": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "dragged": {"_count": 1, "Harry": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "couldnt": {"_count": 1, "be": {"_count": 1}}, "Ludo": {"_count": 1, "we": {"_count": 1}}, "Dad": {"_count": 1, "": {"_count": 1}}, "nurse": {"_count": 1, "": {"_count": 1}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "trunks": {"_count": 1, "into": {"_count": 1}}, "what": {"_count": 2, "with": {"_count": 2}}, "you": {"_count": 3, "know": {"_count": 2}, "should": {"_count": 1}}, "how": {"_count": 1, "are": {"_count": 1}}, "is": {"_count": 8, "hidden": {"_count": 1}, "in": {"_count": 1}, "not": {"_count": 2}, "safer": {"_count": 2}, "about": {"_count": 1}, "threatened": {"_count": 1}}, "Castle": {"_count": 5, "by": {"_count": 1}, "": {"_count": 2}, "however": {"_count": 1}, "that": {"_count": 1}}, "coming": {"_count": 1, "nearer": {"_count": 1}}, "who": {"_count": 3, "could": {"_count": 1}, "we": {"_count": 1}, "cared": {"_count": 1}}, "But": {"_count": 1, "at": {"_count": 1}}, "Beauxbatons": {"_count": 1, "and": {"_count": 1}}, "champion": {"_count": 11, "": {"_count": 5}, "when": {"_count": 1}, "what": {"_count": 1}, "next": {"_count": 1}, "he": {"_count": 1}, "is": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 2}, "is": {"_count": 1}}, "coat": {"_count": 1, "of": {"_count": 1}}, "Which": {"_count": 1, "Glosses": {"_count": 1}}, "could": {"_count": 2, "be": {"_count": 1}, "do": {"_count": 1}}, "crowd": {"_count": 1, "parted": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "champions": {"_count": 1, "": {"_count": 1}}, "tonight": {"_count": 1, "Barty": {"_count": 1}}, "Champion": {"_count": 1, "Like": {"_count": 1}}, "they": {"_count": 3, "would": {"_count": 1}, "keep": {"_count": 1}, "could": {"_count": 1}}, "sir": {"_count": 3, "": {"_count": 3}}, "houseelves": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "So": {"_count": 1, "Dobby": {"_count": 1}}, "shell": {"_count": 1, "see": {"_count": 1}}, "suddenly": {"_count": 1, "seemed": {"_count": 1}}, "staff": {"_count": 1, "demonstrating": {"_count": 1}}, "secrets": {"_count": 1, "Igor": {"_count": 1}}, "decorations": {"_count": 1, "to": {"_count": 1}}, "victory": {"_count": 2, "dont": {"_count": 1}, "": {"_count": 1}}, "slong": {"_count": 1, "as": {"_count": 1}}, "remember": {"_count": 2, "": {"_count": 2}}, "including": {"_count": 1, "its": {"_count": 1}}, "Muggle": {"_count": 1, "born": {"_count": 1}}, "of": {"_count": 2, "Viktor": {"_count": 1}, "Peeves": {"_count": 1}}, "without": {"_count": 4, "permission": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "theres": {"_count": 1, "too": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "fourth": {"_count": 1, "year": {"_count": 1}}, "where": {"_count": 4, "he": {"_count": 3}, "I": {"_count": 1}}, "or": {"_count": 2, "outside": {"_count": 1}, "the": {"_count": 1}}, "then": {"_count": 2, "": {"_count": 2}}, "Junior": {"_count": 1, "Assistant": {"_count": 1}}, "Ill": {"_count": 1, "put": {"_count": 1}}, "often": {"_count": 1, "risking": {"_count": 1}}, "even": {"_count": 1, "": {"_count": 1}}, "barely": {"_count": 1, "started": {"_count": 1}}, "worked": {"_count": 1, "in": {"_count": 1}}, "Houses": {"_count": 1, "and": {"_count": 1}}, "because": {"_count": 1, "Im": {"_count": 1}}, "safely": {"_count": 1, "as": {"_count": 1}}, "standards": {"_count": 1, "": {"_count": 1}}, "carriages": {"_count": 1, "with": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "thought": {"_count": 1, "him": {"_count": 1}}, "thestrals": {"_count": 1, "well": {"_count": 1}}, "may": {"_count": 2, "be": {"_count": 1}, "commune": {"_count": 1}}, "whod": {"_count": 1, "like": {"_count": 1}}, "appeared": {"_count": 1, "upon": {"_count": 1}}, "became": {"_count": 1, "snowcapped": {"_count": 1}}, "High": {"_count": 1, "Inquisitor": {"_count": 1}}, "neither": {"_count": 2, "reappeared": {"_count": 1}, "as": {"_count": 1}}, "s": {"_count": 2, "most": {"_count": 1}, "history": {"_count": 1}}, "well": {"_count": 1, "her": {"_count": 1}}, "drew": {"_count": 1, "nearer": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 2, "as": {"_count": 1}, "now": {"_count": 1}}, "under": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "worth": {"_count": 1, "living": {"_count": 1}}, "fires": {"_count": 1, "you": {"_count": 1}}, "needs": {"_count": 1, "you": {"_count": 1}}, "except": {"_count": 1, "my": {"_count": 1}}, "legend": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 2, "shortly": {"_count": 1}, "be": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "uniforms": {"_count": 1, "as": {"_count": 1}}, "comfortably": {"_count": 1, "playing": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "If": {"_count": 1, "youre": {"_count": 1}}, "sometimes": {"_count": 1, "for": {"_count": 1}}, "itself": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 3, "year": {"_count": 2}, "they": {"_count": 1}}, "must": {"_count": 1, "take": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "operated": {"_count": 1, "in": {"_count": 1}}, "Dumbledore": {"_count": 4, "went": {"_count": 2}, "rasped": {"_count": 1}, "was": {"_count": 1}}, "Of": {"_count": 1, "course": {"_count": 1}}, "intending": {"_count": 1, "to": {"_count": 1}}, "Severus": {"_count": 1, "made": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 2}}, "after": {"_count": 1, "much": {"_count": 1}}, "library": {"_count": 1, "had": {"_count": 1}}, "hasn": {"_count": 1, "it": {"_count": 1}}, "history": {"_count": 1, "": {"_count": 1}}, "thatll": {"_count": 1, "give": {"_count": 1}}, "desperately": {"_count": 1, "injured": {"_count": 1}}, "inhabitants": {"_count": 1, "": {"_count": 1}}, "wrongdoers": {"_count": 1, "and": {"_count": 1}}, "might": {"_count": 1, "close": {"_count": 1}}, "Then": {"_count": 1, "thats": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "close": {"_count": 1, "": {"_count": 1}}, "Albuss": {"_count": 1, "brother": {"_count": 1}}, "we": {"_count": 1, "intended": {"_count": 1}}, "resigned": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 1, "team": {"_count": 1}}, "perhaps": {"_count": 1, "never": {"_count": 1}}, "Lace": {"_count": 1, "draperies": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "proving": {"_count": 1, "that": {"_count": 1}}, "though": {"_count": 1, "Phineas": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "moved": {"_count": 1, "but": {"_count": 1}}, "Horcrux": {"_count": 1, "decides": {"_count": 1}}, "Neville": {"_count": 1, "we": {"_count": 1}}, "anymore": {"_count": 1, "said": {"_count": 1}}, "swarmed": {"_count": 1, "into": {"_count": 1}}}, "enormous": {"_count": 188, "hand": {"_count": 6, "and": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}, "others": {"_count": 1}, "upon": {"_count": 1}}, "black": {"_count": 3, "boarhound": {"_count": 2}, "mustache": {"_count": 1}}, "beaverskin": {"_count": 1, "boots": {"_count": 1}}, "feet": {"_count": 3, "sticking": {"_count": 1}, "and": {"_count": 1}, "uneasily": {"_count": 1}}, "old": {"_count": 1, "book": {"_count": 1}}, "green": {"_count": 2, "eyes": {"_count": 1}, "tennisballshaped": {"_count": 1}}, "boots": {"_count": 1, "": {"_count": 1}}, "bed": {"_count": 1, "in": {"_count": 1}}, "blackboard": {"_count": 1, "": {"_count": 1}}, "gray": {"_count": 3, "cake": {"_count": 1}, "feet": {"_count": 1}, "spiral": {"_count": 1}}, "peacock": {"_count": 1, "quill": {"_count": 1}}, "loopy": {"_count": 1, "signature": {"_count": 1}}, "claw": {"_count": 1, "footed": {"_count": 1}}, "purple": {"_count": 2, "megaphone": {"_count": 1}, "toads": {"_count": 1}}, "serpent": {"_count": 1, "bright": {"_count": 1}}, "cousin": {"_count": 1, "Dudley": {"_count": 1}}, "suitcase": {"_count": 1, "and": {"_count": 1}}, "relief": {"_count": 4, "spread": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}, "she": {"_count": 1}}, "ginger": {"_count": 1, "cat": {"_count": 1}}, "handbag": {"_count": 1, "and": {"_count": 1}}, "slab": {"_count": 2, "of": {"_count": 2}}, "hands": {"_count": 6, "his": {"_count": 1}, "carelessly": {"_count": 1}, "": {"_count": 2}, "breaking": {"_count": 1}, "that": {"_count": 1}}, "gleaming": {"_count": 1, "eyes": {"_count": 1}}, "teapot": {"_count": 1, "from": {"_count": 1}}, "surprise": {"_count": 1, "the": {"_count": 1}}, "eyes": {"_count": 4, "filled": {"_count": 1}, "had": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "umbrella": {"_count": 1, "on": {"_count": 1}}, "shaggy": {"_count": 2, "black": {"_count": 1}, "head": {"_count": 1}}, "crate": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "backside": {"_count": 1, "and": {"_count": 1}}, "satisfaction": {"_count": 2, "that": {"_count": 1}, "to": {"_count": 1}}, "erupted": {"_count": 1, "from": {"_count": 1}}, "book": {"_count": 2, "entitled": {"_count": 1}, "under": {"_count": 1}}, "wings": {"_count": 4, "folded": {"_count": 1}, "rose": {"_count": 1}, "and": {"_count": 1}, "echoed": {"_count": 1}}, "teardrops": {"_count": 1, "had": {"_count": 1}}, "Arithmancy": {"_count": 1, "book": {"_count": 1}}, "applause": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Gryffindor": {"_count": 1, "flag": {"_count": 1}}, "Quidditch": {"_count": 1, "Cup": {"_count": 1}}, "paleeyed": {"_count": 1, "jetblack": {"_count": 1}}, "leap": {"_count": 1, "and": {"_count": 1}}, "dog": {"_count": 1, "might": {"_count": 1}}, "bearlike": {"_count": 1, "dog": {"_count": 1}}, "it": {"_count": 1, "could": {"_count": 1}}, "fruitcake": {"_count": 1, "and": {"_count": 1}}, "face": {"_count": 2, "as": {"_count": 1}, "causing": {"_count": 1}}, "amber": {"_count": 1, "eyes": {"_count": 1}}, "picture": {"_count": 1, "of": {"_count": 1}}, "brown": {"_count": 1, "eyes": {"_count": 1}}, "glassy": {"_count": 1, "eyes": {"_count": 1}}, "thuggish": {"_count": 1, "cronies": {"_count": 1}}, "glasses": {"_count": 1, "that": {"_count": 1}}, "heads": {"_count": 1, "and": {"_count": 1}}, "shadow": {"_count": 2, "they": {"_count": 1}, "sliding": {"_count": 1}}, "wooden": {"_count": 3, "table": {"_count": 3}}, "strides": {"_count": 1, "": {"_count": 1}}, "tankard": {"_count": 1, "in": {"_count": 1}}, "Beauxbatons": {"_count": 1, "carriage": {"_count": 1}}, "excitement": {"_count": 1, "about": {"_count": 1}}, "viciouslooking": {"_count": 1, "dragons": {"_count": 1}}, "boxes": {"_count": 1, "Hagrid": {"_count": 1}}, "high": {"_count": 1, "ceilinged": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "silver": {"_count": 3, "bubble": {"_count": 1}, "stag": {"_count": 1}, "walruslike": {"_count": 1}}, "bubble": {"_count": 1, "around": {"_count": 1}}, "sigh": {"_count": 1, "and": {"_count": 1}}, "hiccup": {"_count": 1, "": {"_count": 1}}, "pupils": {"_count": 1, "focused": {"_count": 1}}, "room": {"_count": 2, "below": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 1, "only": {"_count": 1}}, "effort": {"_count": 3, "he": {"_count": 3}}, "smugness": {"_count": 1, "": {"_count": 1}}, "heavenly": {"_count": 1, "notice": {"_count": 1}}, "wink": {"_count": 1, "and": {"_count": 1}}, "swallow": {"_count": 1, "and": {"_count": 1}}, "speed": {"_count": 1, "and": {"_count": 1}}, "round": {"_count": 1, "green": {"_count": 1}}, "tapestry": {"_count": 1, "depicting": {"_count": 1}}, "cauldron": {"_count": 1, "Hagrid": {"_count": 1}}, "chest": {"_count": 1, "Harry": {"_count": 1}}, "progress": {"_count": 1, "": {"_count": 1}}, "box": {"_count": 2, "of": {"_count": 2}}, "protuberant": {"_count": 1, "slightly": {"_count": 1}}, "signs": {"_count": 1, "had": {"_count": 1}}, "lenses": {"_count": 1, "you": {"_count": 1}}, "deserted": {"_count": 1, "room": {"_count": 1}}, "bearded": {"_count": 2, "face": {"_count": 1}, "figure": {"_count": 1}}, "spotted": {"_count": 1, "handkerchief": {"_count": 1}}, "animal": {"_count": 1, "": {"_count": 1}}, "lungs": {"_count": 1, "at": {"_count": 1}}, "creature": {"_count": 1, "before": {"_count": 1}}, "filthy": {"_count": 1, "bare": {"_count": 1}}, "hourglass": {"_count": 1, "on": {"_count": 1}}, "grayish": {"_count": 1, "face": {"_count": 1}}, "glass": {"_count": 1, "tank": {"_count": 1}}, "size": {"_count": 2, "behind": {"_count": 1}, "by": {"_count": 1}}, "bloodshot": {"_count": 2, "eyes": {"_count": 1}, "and": {"_count": 1}}, "colored": {"_count": 1, "spectacles": {"_count": 1}}, "workload": {"_count": 1, "and": {"_count": 1}}, "boarhound": {"_count": 1, "Fang": {"_count": 1}}, "copper": {"_count": 1, "kettle": {"_count": 1}}, "belly": {"_count": 1, "": {"_count": 1}}, "furry": {"_count": 1, "hat": {"_count": 1}}, "bear": {"_count": 1, "on": {"_count": 1}}, "mince": {"_count": 1, "pie": {"_count": 1}}, "difficulty": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "dead": {"_count": 1, "spider": {"_count": 1}}, "hairy": {"_count": 1, "head": {"_count": 1}}, "grunt": {"_count": 1, "rolled": {"_count": 1}}, "stuffed": {"_count": 1, "troll": {"_count": 1}}, "blond": {"_count": 2, "wizard": {"_count": 1}, "Death": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "obscured": {"_count": 1, "the": {"_count": 1}}, "beast": {"_count": 1, "flapping": {"_count": 1}}, "figure": {"_count": 1, "emerged": {"_count": 1}}, "and": {"_count": 2, "incomprehensible": {"_count": 1}, "looked": {"_count": 1}}, "motorbike": {"_count": 1, "with": {"_count": 1}}, "bulging": {"_count": 1, "sacks": {"_count": 1}}, "batlike": {"_count": 1, "wings": {"_count": 1}}, "piles": {"_count": 1, "": {"_count": 1}}, "pile": {"_count": 1, "of": {"_count": 1}}, "bunch": {"_count": 1, "of": {"_count": 1}}, "fist": {"_count": 1, "and": {"_count": 1}}, "rucksack": {"_count": 1, "lay": {"_count": 1}}, "tennisballshaped": {"_count": 1, "eyes": {"_count": 1}}, "obstacle": {"_count": 1, "": {"_count": 1}}, "footprints": {"_count": 1, "behind": {"_count": 1}}, "pegs": {"_count": 1, "driven": {"_count": 1}}, "ripples": {"_count": 1, "emanating": {"_count": 1}}, "rumble": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "Slughorn": {"_count": 1}}, "person": {"_count": 1, "Harry": {"_count": 1}}, "crystal": {"_count": 1, "sphere": {"_count": 1}}, "arm": {"_count": 1, "waving": {"_count": 1}}, "courage": {"_count": 1, "and": {"_count": 1}}, "care": {"_count": 1, "": {"_count": 1}}, "affection": {"_count": 1, "and": {"_count": 1}}}, "rubbing": {"_count": 51, "his": {"_count": 39, "hands": {"_count": 6}, "forehead": {"_count": 2}, "foot": {"_count": 1}, "knuckles": {"_count": 3}, "chin": {"_count": 1}, "chest": {"_count": 2}, "arms": {"_count": 1}, "head": {"_count": 3}, "elbow": {"_count": 1}, "smooth": {"_count": 1}, "backside": {"_count": 1}, "eyes": {"_count": 4}, "wrist": {"_count": 1}, "prickling": {"_count": 1}, "scar": {"_count": 4}, "bruised": {"_count": 1}, "face": {"_count": 1}, "ears": {"_count": 1}, "lower": {"_count": 1}, "stomach": {"_count": 1}, "pounding": {"_count": 1}, "wrists": {"_count": 1}}, "the": {"_count": 4, "end": {"_count": 1}, "scar": {"_count": 1}, "top": {"_count": 1}, "sole": {"_count": 1}}, "their": {"_count": 1, "ribs": {"_count": 1}}, "suntan": {"_count": 1, "lotion": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 1}, "forehead": {"_count": 1}}, "slightly": {"_count": 1, "bloodshot": {"_count": 1}}, "shoulders": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}}, "stronger": {"_count": 38, "if": {"_count": 1, "yehve": {"_count": 1}}, "flavor": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 6, "stronger": {"_count": 1}, "more": {"_count": 3}, "a": {"_count": 1}, "clearer": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "stuff": {"_count": 1, "than": {"_count": 1}}, "grip": {"_count": 1, "instead": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "again": {"_count": 3, "as": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}}, "than": {"_count": 5, "ever": {"_count": 1}, "me": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}, "his": {"_count": 1}}, "voice": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 1, "whether": {"_count": 1}}, "for": {"_count": 1, "months": {"_count": 1}}, "I": {"_count": 1, "realized": {"_count": 1}}, "to": {"_count": 2, "have": {"_count": 2}}, "by": {"_count": 1, "the": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 1, "moment": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "parasitic": {"_count": 1}}}, "grate": {"_count": 18, "with": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "too": {"_count": 1, "far": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "causing": {"_count": 1, "emerald": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "turned": {"_count": 1, "emerald": {"_count": 1}}, "he": {"_count": 1, "launched": {"_count": 1}}, "beside": {"_count": 1, "them": {"_count": 1}}}, "drew": {"_count": 147, "back": {"_count": 8, "a": {"_count": 2}, "slightly": {"_count": 1}, "the": {"_count": 2}, "too": {"_count": 1}, "his": {"_count": 1}, "into": {"_count": 1}}, "a": {"_count": 12, "battered": {"_count": 1}, "great": {"_count": 2}, "deep": {"_count": 4}, "long": {"_count": 1}, "length": {"_count": 1}, "right": {"_count": 1}, "wand": {"_count": 1}, "straight": {"_count": 1}}, "himself": {"_count": 4, "up": {"_count": 4}}, "nearer": {"_count": 22, "Harry": {"_count": 1}, "however": {"_count": 2}, "and": {"_count": 4}, "": {"_count": 5}, "to": {"_count": 3}, "an": {"_count": 1}, "walking": {"_count": 1}, "their": {"_count": 1}, "he": {"_count": 2}, "youre": {"_count": 1}, "pointing": {"_count": 1}}, "gasps": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 8, "chairs": {"_count": 1}, "cauldrons": {"_count": 1}, "cloaks": {"_count": 1}, "wands": {"_count": 4}, "eyes": {"_count": 1}}, "closer": {"_count": 5, "he": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}, "gazing": {"_count": 1}}, "breath": {"_count": 4, "": {"_count": 1}, "as": {"_count": 2}, "leaving": {"_count": 1}}, "his": {"_count": 20, "robes": {"_count": 1}, "finger": {"_count": 2}, "eyes": {"_count": 1}, "wand": {"_count": 12}, "sword": {"_count": 1}, "large": {"_count": 1}, "traveling": {"_count": 1}, "cloak": {"_count": 1}}, "away": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "level": {"_count": 6, "with": {"_count": 6}}, "on": {"_count": 2, "a": {"_count": 1}, "that": {"_count": 1}}, "the": {"_count": 3, "hangings": {"_count": 1}, "curtains": {"_count": 1}, "Elder": {"_count": 1}}, "near": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 19, "something": {"_count": 1}, "a": {"_count": 7}, "the": {"_count": 3}, "his": {"_count": 4}, "her": {"_count": 1}, "Mad": {"_count": 1}, "three": {"_count": 1}, "Bellatrixs": {"_count": 1}}, "backward": {"_count": 1, "as": {"_count": 1}}, "its": {"_count": 1, "collective": {"_count": 1}}, "with": {"_count": 2, "Diggory": {"_count": 1}, "her": {"_count": 1}}, "herself": {"_count": 4, "up": {"_count": 4}}, "too": {"_count": 1, "much": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "even": {"_count": 1, "nearer": {"_count": 1}}, "steadily": {"_count": 1, "nearer": {"_count": 1}}, "up": {"_count": 4, "a": {"_count": 3}, "the": {"_count": 1}}, "it": {"_count": 2, "still": {"_count": 1}, "close": {"_count": 1}}, "very": {"_count": 1, "slightly": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "attention": {"_count": 1, "and": {"_count": 1}}, "scandalized": {"_count": 1, "looks": {"_count": 1}}, "in": {"_count": 3, "and": {"_count": 1}, "bringing": {"_count": 1}, "again": {"_count": 1}}, "heaving": {"_count": 1, "breaths": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "slowly": {"_count": 1, "nearer": {"_count": 1}}, "us": {"_count": 1, "together": {"_count": 1}}, "from": {"_count": 1, "its": {"_count": 1}}}, "filled": {"_count": 127, "the": {"_count": 50, "whole": {"_count": 5}, "dungeon": {"_count": 1}, "cold": {"_count": 1}, "kitchen": {"_count": 3}, "huge": {"_count": 1}, "place": {"_count": 2}, "compartment": {"_count": 1}, "room": {"_count": 5}, "hall": {"_count": 2}, "tent": {"_count": 1}, "Hall": {"_count": 2}, "bathroom": {"_count": 1}, "Pensieve": {"_count": 1}, "air": {"_count": 7}, "corridors": {"_count": 1}, "lungs": {"_count": 1}, "corridor": {"_count": 3}, "ears": {"_count": 1}, "silent": {"_count": 1}, "cabin": {"_count": 1}, "ninth": {"_count": 1}, "crevice": {"_count": 1}, "warm": {"_count": 1}, "front": {"_count": 1}, "center": {"_count": 1}, "cramped": {"_count": 1}, "prison": {"_count": 1}, "chamber": {"_count": 1}, "portrait": {"_count": 1}}, "Ron": {"_count": 2, "in": {"_count": 2}}, "with": {"_count": 26, "tears": {"_count": 7}, "its": {"_count": 1}, "the": {"_count": 1}, "food": {"_count": 1}, "a": {"_count": 4}, "lead": {"_count": 1}, "sudden": {"_count": 2}, "boiling": {"_count": 1}, "emotion": {"_count": 1}, "swirling": {"_count": 1}, "water": {"_count": 1}, "clear": {"_count": 1}, "things": {"_count": 1}, "more": {"_count": 1}, "wonder": {"_count": 1}, "anguish": {"_count": 1}}, "their": {"_count": 2, "nostrils": {"_count": 1}, "flagons": {"_count": 1}}, "Professor": {"_count": 1, "Binns": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 9, "lungs": {"_count": 2}, "mind": {"_count": 1}, "lap": {"_count": 1}, "nostrils": {"_count": 3}, "face": {"_count": 1}, "ears": {"_count": 1}}, "these": {"_count": 1, "with": {"_count": 1}}, "by": {"_count": 3, "Hermione": {"_count": 1}, "none": {"_count": 1}, "Rufus": {"_count": 1}}, "suddenly": {"_count": 1, "with": {"_count": 1}}, "they": {"_count": 1, "went": {"_count": 1}}, "a": {"_count": 1, "room": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "then": {"_count": 1}}, "Harry": {"_count": 3, "so": {"_count": 1}, "To": {"_count": 1}, "with": {"_count": 1}}, "instead": {"_count": 1, "with": {"_count": 1}}, "gradually": {"_count": 1, "around": {"_count": 1}}, "magically": {"_count": 1, "before": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "bath": {"_count": 1}}, "Harrys": {"_count": 3, "ears": {"_count": 2}, "eyes": {"_count": 1}}, "alternately": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 2, "with": {"_count": 2}}, "in": {"_count": 2, "to": {"_count": 1}, "twothirds": {"_count": 1}}, "every": {"_count": 1, "tiny": {"_count": 1}}, "and": {"_count": 2, "corked": {"_count": 1}, "emptied": {"_count": 1}}, "him": {"_count": 2, "since": {"_count": 2}}, "half": {"_count": 1, "a": {"_count": 1}}, "slowly": {"_count": 1, "with": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "Hagrids": {"_count": 1, "mokeskin": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}}, "flickering": {"_count": 23, "light": {"_count": 4, "and": {"_count": 1}, "shone": {"_count": 1}, "along": {"_count": 1}, "fell": {"_count": 1}}, "jewelbright": {"_count": 1, "eyes": {"_count": 1}}, "candlelight": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}, "toward": {"_count": 1, "Lupin": {"_count": 1}}, "quality": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 4, "Cedrics": {"_count": 1}, "the": {"_count": 2}, "Hagrids": {"_count": 1}}, "horribly": {"_count": 1, "on": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "insubstantial": {"_count": 1, "light": {"_count": 1}}, "flame": {"_count": 1, "once": {"_count": 1}}, "torches": {"_count": 1, "like": {"_count": 1}}, "film": {"_count": 1, "so": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "Ron": {"_count": 1}}, "back": {"_count": 1, "and": {"_count": 1}}}, "warmth": {"_count": 23, "wash": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 4, "respect": {"_count": 1}, "light": {"_count": 2}, "cleanliness": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "Harry": {"_count": 1, "scribbled": {"_count": 1}}, "spread": {"_count": 1, "suddenly": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "Honeydukes": {"_count": 1}}, "was": {"_count": 1, "spreading": {"_count": 1}}, "I": {"_count": 1, "see": {"_count": 1}}, "which": {"_count": 1, "we": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 1, "before": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "seemed": {"_count": 1}}}, "sunk": {"_count": 17, "into": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "deep": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "weak": {"_count": 1, "kneed": {"_count": 1}}, "themselves": {"_count": 1, "deep": {"_count": 1}}, "right": {"_count": 1, "through": {"_count": 1}}, "so": {"_count": 1, "low": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "hot": {"_count": 96, "bath": {"_count": 1, "": {"_count": 1}}, "pain": {"_count": 2, "shot": {"_count": 1}, "was": {"_count": 1}}, "cauldrons": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "especially": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "smelly": {"_count": 1, "breath": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "ash": {"_count": 1, "": {"_count": 1}}, "surge": {"_count": 1, "of": {"_count": 1}}, "chocolate": {"_count": 5, "and": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "all": {"_count": 1}}, "bright": {"_count": 1, "sunlight": {"_count": 1}}, "an": {"_count": 1, "bothered": {"_count": 1}}, "wax": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "pursuit": {"_count": 1, "": {"_count": 1}}, "breath": {"_count": 2, "on": {"_count": 1}, "saw": {"_count": 1}}, "tail": {"_count": 1, "feathers": {"_count": 1}}, "line": {"_count": 3, "has": {"_count": 1}, "number": {"_count": 1}, "": {"_count": 1}}, "butterbeer": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "his": {"_count": 1, "feet": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "water": {"_count": 3, "": {"_count": 1}, "foam": {"_count": 1}, "over": {"_count": 1}}, "and": {"_count": 9, "foamy": {"_count": 1}, "leafy": {"_count": 1}, "tried": {"_count": 1}, "wet": {"_count": 2}, "then": {"_count": 1}, "tight": {"_count": 1}, "uncomfortable": {"_count": 1}, "cracked": {"_count": 1}}, "potion": {"_count": 1, "down": {"_count": 1}}, "he": {"_count": 2, "feared": {"_count": 1}, "deliberately": {"_count": 1}}, "liquid": {"_count": 2, "had": {"_count": 1}, "trickled": {"_count": 1}}, "sick": {"_count": 1, "swoop": {"_count": 1}}, "hard": {"_count": 1, "earth": {"_count": 1}}, "was": {"_count": 1, "trickling": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "perfumed": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "air": {"_count": 2, "streamed": {"_count": 1}, "again": {"_count": 1}}, "bubbling": {"_count": 1, "guilt": {"_count": 1}}, "coals": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "anger": {"_count": 1}, "the": {"_count": 1}}, "things": {"_count": 1, "That": {"_count": 1}}, "muffler": {"_count": 1, "around": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "desk": {"_count": 1, "onto": {"_count": 1}}, "prickly": {"_count": 2, "anger": {"_count": 1}, "feeling": {"_count": 1}}, "sun": {"_count": 2, "hit": {"_count": 1}, "how": {"_count": 1}}, "soup": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "day": {"_count": 1, "when": {"_count": 1}}, "meal": {"_count": 1, "ready": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "strong": {"_count": 1, "love": {"_count": 1}}, "greedy": {"_count": 1, "breath": {"_count": 1}}, "tears": {"_count": 1, "spilling": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "rolls": {"_count": 1, "by": {"_count": 1}}, "drink": {"_count": 1, "as": {"_count": 1}}, "mug": {"_count": 1, "for": {"_count": 1}}, "then": {"_count": 1, "instantly": {"_count": 1}}, "swords": {"_count": 1, "when": {"_count": 1}}, "metal": {"_count": 3, "": {"_count": 1}, "on": {"_count": 1}, "Harry": {"_count": 1}}, "scum": {"_count": 1, "": {"_count": 1}}, "blackened": {"_count": 1, "with": {"_count": 1}}, "stickiness": {"_count": 1, "on": {"_count": 1}}, "head": {"_count": 1, "might": {"_count": 1}}}, "bath": {"_count": 20, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "er": {"_count": 1}}, "help": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 2, "would": {"_count": 1}, "heard": {"_count": 1}}, "then": {"_count": 1, "knelt": {"_count": 1}}, "mixed": {"_count": 1, "with": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "wrapping": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "all": {"_count": 1}}, "climbed": {"_count": 1, "out": {"_count": 1}}, "slipped": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 1, "so": {"_count": 1}}, "once": {"_count": 1, "remember": {"_count": 1}}}, "sagged": {"_count": 5, "under": {"_count": 1, "his": {"_count": 1}}, "right": {"_count": 1, "down": {"_count": 1}}, "but": {"_count": 1, "suddenly": {"_count": 1}}, "and": {"_count": 1, "vanished": {"_count": 1}}, "sideways": {"_count": 1, "in": {"_count": 1}}}, "weight": {"_count": 64, "and": {"_count": 1, "began": {"_count": 1}}, "he": {"_count": 1, "managed": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 24, "a": {"_count": 3}, "the": {"_count": 8}, "their": {"_count": 1}, "what": {"_count": 1}, "anxiety": {"_count": 1}, "as": {"_count": 1}, "everything": {"_count": 1}, "powdered": {"_count": 1}, "guilt": {"_count": 1}, "grief": {"_count": 1}, "his": {"_count": 1}, "tension": {"_count": 1}, "expanding": {"_count": 1}, "three": {"_count": 1}, "numbers": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "behind": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "was": {"_count": 1, "rescued": {"_count": 1}}, "fell": {"_count": 1, "on": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "gingerly": {"_count": 1, "on": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "couldnt": {"_count": 1, "she": {"_count": 1}}, "if": {"_count": 1, "hed": {"_count": 1}}, "Idve": {"_count": 1, "bin": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "vanish": {"_count": 1, "from": {"_count": 1}}, "had": {"_count": 1, "dropped": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "nervously": {"_count": 1, "from": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "about": {"_count": 1}}, "still": {"_count": 1, "upon": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "pressing": {"_count": 1, "on": {"_count": 1}}}, "pockets": {"_count": 45, "of": {"_count": 5, "his": {"_count": 4}, "their": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "bunches": {"_count": 1, "of": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}, "rattling": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "cream": {"_count": 1}}, "weighed": {"_count": 1, "down": {"_count": 1}}, "were": {"_count": 1, "hanging": {"_count": 1}}, "bulging": {"_count": 1, "with": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "we": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "chinking": {"_count": 1, "merrily": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "looking": {"_count": 2, "almost": {"_count": 1}, "extremely": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "for": {"_count": 1, "your": {"_count": 1}}, "still": {"_count": 1, "staring": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "theres": {"_count": 1, "nothing": {"_count": 1}}, "be": {"_count": 1, "like": {"_count": 1}}, "desperately": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 2, "removed": {"_count": 1}, "a": {"_count": 1}}}, "copper": {"_count": 12, "kettle": {"_count": 6, "a": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}, "muttering": {"_count": 1}, "on": {"_count": 1}}, "basin": {"_count": 1, "in": {"_count": 1}}, "taps": {"_count": 1, "was": {"_count": 1}}, "saucepan": {"_count": 1, "down": {"_count": 1}}, "pots": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 1, "gold": {"_count": 1}}, "an": {"_count": 1, "echoing": {"_count": 1}}}, "kettle": {"_count": 32, "a": {"_count": 1, "squashy": {"_count": 1}}, "was": {"_count": 2, "boiling": {"_count": 1}, "a": {"_count": 1}}, "yawned": {"_count": 1, "Mr": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "and": {"_count": 5, "frothed": {"_count": 1}, "peered": {"_count": 1}, "a": {"_count": 1}, "saucepans": {"_count": 1}, "mugs": {"_count": 1}}, "on": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 2, "looked": {"_count": 1}, "was": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "Dudley": {"_count": 1, "stole": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 1, "it": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "he": {"_count": 1}}, "trembled": {"_count": 1, "glowing": {"_count": 1}}, "lying": {"_count": 1, "innocently": {"_count": 1}}, "pulling": {"_count": 1, "them": {"_count": 1}}, "clattered": {"_count": 1, "to": {"_count": 1}}, "muttering": {"_count": 1, "all": {"_count": 1}}}, "sausages": {"_count": 18, "a": {"_count": 1, "poker": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "bacon": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "fried": {"_count": 1}, "mash": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "trembling": {"_count": 1}}, "when": {"_count": 2, "Bill": {"_count": 1}, "Mr": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}}, "poker": {"_count": 7, "a": {"_count": 1, "teapot": {"_count": 1}}, "Dudley": {"_count": 1, "fidgeted": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "being": {"_count": 1}}, "said": {"_count": 1, "Mrs": {"_count": 1}}, "standing": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "teapot": {"_count": 15, "several": {"_count": 1, "chipped": {"_count": 1}}, "and": {"_count": 1, "putting": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "went": {"_count": 1, "berserk": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "cups": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}}, "chipped": {"_count": 9, "mugs": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "places": {"_count": 1}, "Professor": {"_count": 1}}, "sinks": {"_count": 1, "": {"_count": 1}}, "mug": {"_count": 1, "of": {"_count": 1}}, "dummies": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 1, "there": {"_count": 1}}, "bottles": {"_count": 1, "of": {"_count": 1}}, "bust": {"_count": 1, "of": {"_count": 1}}}, "mugs": {"_count": 13, "and": {"_count": 3, "a": {"_count": 1}, "shoved": {"_count": 1}, "handing": {"_count": 1}}, "of": {"_count": 4, "boiling": {"_count": 1}, "hot": {"_count": 1}, "tea": {"_count": 1}, "mahoganybrown": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "picked": {"_count": 1}}}, "bottle": {"_count": 146, "of": {"_count": 44, "some": {"_count": 2}, "ink": {"_count": 7}, "Ogdens": {"_count": 1}, "something": {"_count": 1}, "brandy": {"_count": 2}, "rat": {"_count": 1}, "hot": {"_count": 1}, "butterbeer": {"_count": 4}, "SkeleGro": {"_count": 1}, "a": {"_count": 1}, "armadillo": {"_count": 1}, "completely": {"_count": 1}, "black": {"_count": 1}, "antidote": {"_count": 1}, "ketchup": {"_count": 1}, "Baruffios": {"_count": 1}, "Veritaserum": {"_count": 1}, "Felix": {"_count": 4}, "golden": {"_count": 2}, "silver": {"_count": 1}, "gin": {"_count": 1}, "toadspawn": {"_count": 1}, "lucky": {"_count": 1}, "this": {"_count": 1}, "Rosmertas": {"_count": 1}, "firewhisky": {"_count": 2}, "what": {"_count": 1}, "wine": {"_count": 1}}, "fame": {"_count": 1, "brew": {"_count": 1}}, "twelve": {"_count": 1, "feet": {"_count": 1}}, "will": {"_count": 1, "get": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "at": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 6, "one": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}, "your": {"_count": 1}, "which": {"_count": 1}}, "down": {"_count": 2, "and": {"_count": 1}, "on": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "into": {"_count": 6, "the": {"_count": 2}, "Aunt": {"_count": 1}, "Rons": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 1}}, "smashed": {"_count": 1, "over": {"_count": 1}}, "had": {"_count": 2, "smashed": {"_count": 1}, "hovered": {"_count": 1}}, "and": {"_count": 11, "a": {"_count": 1}, "splashing": {"_count": 1}, "wrote": {"_count": 1}, "the": {"_count": 2}, "continuing": {"_count": 1}, "three": {"_count": 1}, "five": {"_count": 1}, "prices": {"_count": 1}, "took": {"_count": 1}, "showed": {"_count": 1}}, "dipped": {"_count": 2, "his": {"_count": 2}}, "pulled": {"_count": 1, "an": {"_count": 1}}, "an": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "Carmichael": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 7, "pour": {"_count": 1}, "ease": {"_count": 1}, "chase": {"_count": 1}, "interrogate": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "Slughorn": {"_count": 1}}, "was": {"_count": 2, "swinging": {"_count": 1}, "shaking": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "being": {"_count": 1, "put": {"_count": 1}}, "green": {"_count": 1, "instead": {"_count": 1}}, "loading": {"_count": 1, "up": {"_count": 1}}, "with": {"_count": 6, "a": {"_count": 4}, "his": {"_count": 1}, "Slughorns": {"_count": 1}}, "slightly": {"_count": 1, "right": {"_count": 1}}, "the": {"_count": 1, "others": {"_count": 1}}, "up": {"_count": 1, "your": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "onto": {"_count": 1, "him": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "gagged": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "flying": {"_count": 1, "all": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "tipped": {"_count": 1, "and": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "containing": {"_count": 1, "a": {"_count": 1}}, "His": {"_count": 1, "injured": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "hastily": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "Hermione": {"_count": 1}}, "wouldnt": {"_count": 1, "register": {"_count": 1}}, "filled": {"_count": 1, "with": {"_count": 1}}, "before": {"_count": 1, "Slughorn": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "two": {"_count": 1}}, "disappear": {"_count": 1, "beneath": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "between": {"_count": 1, "two": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "its": {"_count": 1, "sticky": {"_count": 1}}, "labeled": {"_count": 1, "\u2018Essence": {"_count": 1}}, "zoomed": {"_count": 1, "out": {"_count": 1}}, "Hermione": {"_count": 1, "took": {"_count": 1}}, "then": {"_count": 1, "pulled": {"_count": 1}}}, "amber": {"_count": 8, "liquid": {"_count": 2, "that": {"_count": 1}, "out": {"_count": 1}}, "eyes": {"_count": 5, "were": {"_count": 1}, "and": {"_count": 1}, "gazed": {"_count": 1}, "once": {"_count": 1}, "surveyed": {"_count": 1}}, "eye": {"_count": 1, "glared": {"_count": 1}}}, "liquid": {"_count": 39, "that": {"_count": 2, "he": {"_count": 1}, "smoked": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 1}, "Montagues": {"_count": 1}, "each": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "burst": {"_count": 1, "forth": {"_count": 1}}, "smelling": {"_count": 1, "strongly": {"_count": 1}}, "or": {"_count": 2, "gas": {"_count": 1}, "like": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "within": {"_count": 2, "turned": {"_count": 1}, "": {"_count": 1}}, "splattered": {"_count": 1, "onto": {"_count": 1}}, "the": {"_count": 1, "Veritaserum": {"_count": 1}}, "had": {"_count": 1, "slipped": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "wax": {"_count": 1, "now": {"_count": 1}}, "trickled": {"_count": 1, "down": {"_count": 1}}, "glow": {"_count": 1, "others": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "luck": {"_count": 1, "said": {"_count": 1}}, "mentioned": {"_count": 1, "as": {"_count": 1}}, "licorice": {"_count": 1, "": {"_count": 1}}, "nor": {"_count": 1, "gas": {"_count": 1}}, "whereas": {"_count": 1, "the": {"_count": 1}}, "emitting": {"_count": 1, "that": {"_count": 1}}, "evidently": {"_count": 1, "thinking": {"_count": 1}}, "it": {"_count": 1, "gushed": {"_count": 1}}}, "swig": {"_count": 16, "from": {"_count": 4, "before": {"_count": 1}, "his": {"_count": 3}}, "of": {"_count": 11, "pumpkin": {"_count": 2}, "antidote": {"_count": 1}, "brandy": {"_count": 1}, "elderflower": {"_count": 1}, "butterbeer": {"_count": 1}, "gin": {"_count": 1}, "Felix": {"_count": 2}, "champagne": {"_count": 1}, "mead": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Soon": {"_count": 15, "the": {"_count": 4, "hut": {"_count": 1}, "crowd": {"_count": 1}, "distant": {"_count": 1}, "cut": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "stood": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "they": {"_count": 2, "heard": {"_count": 1}, "could": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "a": {"_count": 1, "series": {"_count": 1}}, "it": {"_count": 2, "seemed": {"_count": 1}, "was": {"_count": 1}}, "as": {"_count": 1, "were": {"_count": 1}}}, "sizzling": {"_count": 5, "sausage": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "dragon": {"_count": 1, "bogies": {"_count": 1}}, "hole": {"_count": 1, "right": {"_count": 1}}, "sound": {"_count": 1, "and": {"_count": 1}}}, "sausage": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "theyre": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "rolls": {"_count": 1, "all": {"_count": 1}}, "like": {"_count": 1, "fingers": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "flying": {"_count": 1, "off": {"_count": 1}}}, "Nobody": {"_count": 87, "said": {"_count": 5, "a": {"_count": 1}, "anything": {"_count": 2}, "Myrtle": {"_count": 1}, "Harry": {"_count": 1}}, "in": {"_count": 2, "my": {"_count": 1}, "the": {"_count": 1}}, "spoke": {"_count": 10, "much": {"_count": 1}, "": {"_count": 5}, "for": {"_count": 1}, "as": {"_count": 1}, "nobody": {"_count": 1}, "Harry": {"_count": 1}}, "answered": {"_count": 3, "": {"_count": 2}, "her": {"_count": 1}}, "bothered": {"_count": 1, "them": {"_count": 1}}, "seemed": {"_count": 7, "to": {"_count": 5}, "too": {"_count": 1}, "much": {"_count": 1}}, "would": {"_count": 4, "want": {"_count": 1}, "know": {"_count": 1}, "ever": {"_count": 1}, "have": {"_count": 1}}, "knows": {"_count": 3, "what": {"_count": 2}, "you": {"_count": 1}}, "really": {"_count": 2, "liked": {"_count": 1}, "knew": {"_count": 1}}, "was": {"_count": 8, "very": {"_count": 2}, "hurt": {"_count": 1}, "looking": {"_count": 1}, "foolish": {"_count": 1}, "talking": {"_count": 1}, "laughing": {"_count": 1}, "watching": {"_count": 1}}, "but": {"_count": 4, "trained": {"_count": 1}, "themselves": {"_count": 1}, "Moody": {"_count": 1}, "those": {"_count": 1}}, "knew": {"_count": 1, "about": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "wasted": {"_count": 1, "their": {"_count": 1}}, "forced": {"_count": 1, "the": {"_count": 1}}, "else": {"_count": 5, "in": {"_count": 1}, "said": {"_count": 1}, "spoke": {"_count": 1}, "was": {"_count": 2}}, "ever": {"_count": 2, "mentioned": {"_count": 1}, "goes": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "cares": {"_count": 1, "if": {"_count": 1}}, "missed": {"_count": 1, "me": {"_count": 1}}, "apart": {"_count": 2, "from": {"_count": 2}}, "raised": {"_count": 1, "objections": {"_count": 1}}, "could": {"_count": 3, "quite": {"_count": 1}, "open": {"_count": 1}, "have": {"_count": 1}}, "laughed": {"_count": 2, "most": {"_count": 1}, "this": {"_count": 1}}, "who": {"_count": 1, "has": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "here": {"_count": 1, "but": {"_count": 1}}, "Listened": {"_count": 1, "to": {"_count": 1}}, "noticed": {"_count": 1, "them": {"_count": 1}}, "had": {"_count": 1, "finished": {"_count": 1}}, "can": {"_count": 1, "": {"_count": 1}}, "paid": {"_count": 1, "her": {"_count": 1}}, "asked": {"_count": 2, "how": {"_count": 1}, "questions": {"_count": 1}}, "did": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "alive": {"_count": 1}}, "ran": {"_count": 1, "out": {"_count": 1}}, "has": {"_count": 1, "seen": {"_count": 1}}, "approached": {"_count": 1, "Harry": {"_count": 1}}}, "juicy": {"_count": 4, "slightly": {"_count": 1, "burnt": {"_count": 1}}, "fly": {"_count": 2, "": {"_count": 2}}, "flies": {"_count": 1, "a": {"_count": 1}}}, "burnt": {"_count": 10, "sausages": {"_count": 1, "from": {"_count": 1}}, "plastic": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "soggy": {"_count": 1}}, "a": {"_count": 1, "hole": {"_count": 1}}, "brightly": {"_count": 1, "in": {"_count": 1}}, "fingers": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "and": {"_count": 1}}, "looking": {"_count": 1, "as": {"_count": 1}}, "wood": {"_count": 1, "and": {"_count": 1}}, "ter": {"_count": 1, "twigs": {"_count": 1}}}, "fidgeted": {"_count": 5, "a": {"_count": 1, "little": {"_count": 1}}, "absentmindedly": {"_count": 1, "with": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "all": {"_count": 1, "gazing": {"_count": 1}}, "uncomfortably": {"_count": 1, "on": {"_count": 1}}}, "touch": {"_count": 111, "anything": {"_count": 3, "he": {"_count": 1}, "": {"_count": 2}}, "which": {"_count": 1, "turned": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 1}, "?": {"_count": 1}}, "like": {"_count": 1, "water": {"_count": 1}}, "her": {"_count": 2, "their": {"_count": 1}, "hand": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "the": {"_count": 19, "knights": {"_count": 1}, "accelerator": {"_count": 1}, "trunk": {"_count": 1}, "knot": {"_count": 1}, "Portkey": {"_count": 1}, "Marauders": {"_count": 1}, "boy": {"_count": 2}, "television": {"_count": 1}, "wing": {"_count": 1}, "desktop": {"_count": 1}, "innocent": {"_count": 1}, "floor": {"_count": 1}, "water": {"_count": 2}, "potion": {"_count": 2}, "Snitch": {"_count": 1}, "Boy": {"_count": 1}}, "his": {"_count": 2, "bare": {"_count": 1}, "left": {"_count": 1}}, "me": {"_count": 3, "": {"_count": 2}, "without": {"_count": 1}}, "a": {"_count": 2, "person": {"_count": 1}, "filthy": {"_count": 1}}, "him": {"_count": 11, "": {"_count": 4}, "inside": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 1}, "there": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 1}, "He": {"_count": 1}}, "Yet": {"_count": 1, "again": {"_count": 1}}, "more": {"_count": 2, "about": {"_count": 1}, "defiance": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 16, "seemed": {"_count": 1}, "will": {"_count": 1}, "to": {"_count": 3}, "it": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 1}, "bet": {"_count": 1}, "keep": {"_count": 1}, "obviously": {"_count": 1}, "and": {"_count": 1}, "we": {"_count": 1}, "yet": {"_count": 1}}, "with": {"_count": 10, "me": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 2}, "wizards": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "everybody": {"_count": 1}, "useful": {"_count": 1}, "Harry": {"_count": 1}}, "Daddys": {"_count": 1, "wand": {"_count": 1}}, "soon": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "asperity": {"_count": 1}}, "my": {"_count": 1, "hand": {"_count": 1}}, "I": {"_count": 1, "still": {"_count": 1}}, "unicorns": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "George": {"_count": 1}, "Dumbledore": {"_count": 1}}, "those": {"_count": 1, "hats": {"_count": 1}}, "owls": {"_count": 1, "": {"_count": 1}}, "some": {"_count": 1, "part": {"_count": 1}}, "if": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "put": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "felt": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "hated": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "will": {"_count": 1, "burn": {"_count": 1}}, "stuff": {"_count": 1, "with": {"_count": 1}}, "your": {"_count": 1, "blood": {"_count": 1}}, "our": {"_count": 1, "children": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}}, "gives": {"_count": 26, "you": {"_count": 5, "Dudley": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "equal": {"_count": 1}, "a": {"_count": 1}}, "us": {"_count": 6, "all": {"_count": 1}, "a": {"_count": 2}, "loads": {"_count": 1}, "the": {"_count": 1}, "responsibilities": {"_count": 1}}, "Dobby": {"_count": 1, "his": {"_count": 1}}, "light": {"_count": 1, "only": {"_count": 1}}, "a": {"_count": 3, "damn": {"_count": 1}, "good": {"_count": 1}, "feeling": {"_count": 1}}, "him": {"_count": 2, "authority": {"_count": 1}, "the": {"_count": 1}}, "them": {"_count": 1, "time": {"_count": 1}}, "your": {"_count": 1, "brain": {"_count": 1}}, "me": {"_count": 1, "excellent": {"_count": 1}}, "people": {"_count": 1, "a": {"_count": 1}}, "orders": {"_count": 1, "and": {"_count": 1}}, "explicit": {"_count": 1, "instructions": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "everyone": {"_count": 1, "hope": {"_count": 1}}}, "Yer": {"_count": 19, "great": {"_count": 1, "puddin": {"_count": 1}}, "parents": {"_count": 1, "world": {"_count": 1}}, "mad": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 5, "from": {"_count": 1}, "still": {"_count": 1}, "on": {"_count": 1}, "dyin": {"_count": 1}, "goin": {"_count": 1}}, "very": {"_count": 1, "quiet": {"_count": 1}}, "ticket": {"_count": 1, "fer": {"_count": 1}}, "a": {"_count": 1, "mess": {"_count": 1}}, "more": {"_count": 1, "famous": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "jus": {"_count": 1, "feedin": {"_count": 1}}, "going": {"_count": 1, "ter": {"_count": 1}}, "mum": {"_count": 1, "wouldn": {"_count": 1}}, "expect": {"_count": 1, "accidents": {"_count": 1}}, "here": {"_count": 1, "Hagrid": {"_count": 1}}}, "puddin": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "don": {"_count": 81, "need": {"_count": 1, "fattenin": {"_count": 1}}, "worry": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "know": {"_count": 14, "": {"_count": 3}, "what": {"_count": 3}, "if": {"_count": 1}, "why": {"_count": 2}, "meself": {"_count": 1}, "them": {"_count": 1}, "Harry": {"_count": 1}, "anything": {"_count": 1}, "his": {"_count": 1}}, "like": {"_count": 3, "sayin": {"_count": 1}, "cats": {"_count": 1}, "wizards": {"_count": 1}}, "believe": {"_count": 3, "it": {"_count": 2}, "this": {"_count": 1}}, "ask": {"_count": 1, "me": {"_count": 1}}, "concern": {"_count": 1, "yeh": {"_count": 1}}, "go": {"_count": 3, "rabbitin": {"_count": 1}, "tellin": {"_count": 1}, "": {"_count": 1}}, "spose": {"_count": 1, "it": {"_count": 1}}, "want": {"_count": 8, "no": {"_count": 2}, "ter": {"_count": 5}, "yeh": {"_count": 1}}, "let": {"_count": 2, "on": {"_count": 1}, "me": {"_count": 1}}, "say": {"_count": 2, "the": {"_count": 1}, "much": {"_count": 1}}, "blame": {"_count": 1, "yeh": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "trust": {"_count": 1, "yeh": {"_count": 1}}, "pull": {"_count": 1, "any": {"_count": 1}}, "care": {"_count": 1, "": {"_count": 1}}, "give": {"_count": 1, "a": {"_count": 1}}, "ever": {"_count": 1, "want": {"_count": 1}}, "wan": {"_count": 4, "yeh": {"_count": 2}, "him": {"_count": 1}, "ter": {"_count": 1}}, "Muggle": {"_count": 1, "clothing": {"_count": 1}}, "drown": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "": {"_count": 1}}, "panic": {"_count": 1, "": {"_count": 1}}, "understand": {"_count": 2, "that": {"_count": 1}, "said": {"_count": 1}}, "have": {"_count": 2, "ter": {"_count": 2}}, "mind": {"_count": 1, "boys": {"_count": 1}}, "you": {"_count": 3, "work": {"_count": 1}, "worry": {"_count": 1}, "go": {"_count": 1}}, "fly": {"_count": 1, "meself": {"_count": 1}}, "reckon": {"_count": 3, "theres": {"_count": 1}, "he": {"_count": 1}, "itd": {"_count": 1}}, "forget": {"_count": 1, "ter": {"_count": 1}}, "get": {"_count": 1, "a": {"_count": 1}}, "speak": {"_count": 1, "a": {"_count": 1}}, "seem": {"_count": 1, "ter": {"_count": 1}}, "do": {"_count": 1, "that": {"_count": 1}}, "think": {"_count": 2, "there": {"_count": 1}, "someone": {"_count": 1}}, "yeh": {"_count": 1, "with": {"_count": 1}}, "suppose": {"_count": 1, "yehd": {"_count": 1}}, "matter": {"_count": 1, "": {"_count": 1}}, "be": {"_count": 1, "stupid": {"_count": 1}}, "the": {"_count": 1, "Invisibility": {"_count": 1}}}, "fattenin": {"_count": 1, "anymore": {"_count": 1, "Dursley": {"_count": 1}}}, "anymore": {"_count": 129, "Dursley": {"_count": 1, "don": {"_count": 1}}, "because": {"_count": 1, "Hedwig": {"_count": 1}}, "said": {"_count": 9, "Hagrid": {"_count": 2}, "Mr": {"_count": 1}, "Moody": {"_count": 1}, "Hermione": {"_count": 2}, "Ginny": {"_count": 1}, "Harry": {"_count": 1}, "Neville": {"_count": 1}}, "": {"_count": 63, ".": {"_count": 48}, "?": {"_count": 7}, "!": {"_count": 8}}, "just": {"_count": 3, "Ron": {"_count": 1}, "now": {"_count": 1}, "tell": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "Half": {"_count": 1, "the": {"_count": 1}}, "nor": {"_count": 1, "did": {"_count": 1}}, "does": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 6, "cowering": {"_count": 1}, "he": {"_count": 2}, "worked": {"_count": 1}, "Dumbledores": {"_count": 1}, "shocked": {"_count": 1}}, "now": {"_count": 2, "he": {"_count": 1}, "that": {"_count": 1}}, "he": {"_count": 3, "says": {"_count": 1}, "couldnt": {"_count": 1}, "said": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "no": {"_count": 1, "memory": {"_count": 1}}, "the": {"_count": 2, "old": {"_count": 1}, "shoppers": {"_count": 1}}, "poor": {"_count": 1, "fellow": {"_count": 1}}, "she": {"_count": 2, "is": {"_count": 1}, "panted": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "stuffed": {"_count": 1}, "Hogwarts": {"_count": 1}, "Harry": {"_count": 1}, "in": {"_count": 1}}, "for": {"_count": 1, "I": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "come": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 1, "she": {"_count": 1}}, "cause": {"_count": 1, "of": {"_count": 1}}, "hes": {"_count": 1, "a": {"_count": 1}}, "not": {"_count": 1, "with": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 1, "them": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "He": {"_count": 2, "sighed": {"_count": 1}, "pulled": {"_count": 1}}, "So": {"_count": 1, "this": {"_count": 1}}, "Jets": {"_count": 1, "of": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "nothing": {"_count": 1}}, "Do": {"_count": 1, "what": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "panted": {"_count": 1, "Harry": {"_count": 1}}, "All": {"_count": 1, "were": {"_count": 1}}}, "worry": {"_count": 136, "": {"_count": 15, ".": {"_count": 13}, "!": {"_count": 2}}, "about": {"_count": 63, "that": {"_count": 10}, "it": {"_count": 6}, "the": {"_count": 4}, "what": {"_count": 3}, "now": {"_count": 1}, "just": {"_count": 1}, "attacking": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 5}, "me": {"_count": 4}, "anything": {"_count": 2}, "his": {"_count": 1}, "Hagrid": {"_count": 1}, "antiMuggle": {"_count": 1}, "Sirius": {"_count": 1}, "its": {"_count": 1}, "but": {"_count": 1}, "Karkaroff": {"_count": 1}, "Disarming": {"_count": 1}, "Percy": {"_count": 1}, "however": {"_count": 1}, "whether": {"_count": 1}, "we": {"_count": 1}, "and": {"_count": 1}, "anyone": {"_count": 1}, "being": {"_count": 2}, "he": {"_count": 1}, "us": {"_count": 3}, "I": {"_count": 1}, "them": {"_count": 1}, "yourself": {"_count": 1}, "Harry": {"_count": 1}}, "well": {"_count": 1, "find": {"_count": 1}}, "Harry": {"_count": 4, "": {"_count": 3}, "Hermione": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "ickle": {"_count": 1, "Ronniekins": {"_count": 1}}, "the": {"_count": 2, "Weasleys": {"_count": 1}, "fact": {"_count": 1}}, "it": {"_count": 2, "cantve": {"_count": 1}, "won": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 5, "Fred": {"_count": 1}, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 1}, "Ron": {"_count": 1}, "Mrs": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "youll": {"_count": 1, "still": {"_count": 1}}, "people": {"_count": 1, "most": {"_count": 1}}, "was": {"_count": 1, "added": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "for": {"_count": 1, "all": {"_count": 1}}, "grunted": {"_count": 1, "Aunt": {"_count": 1}}, "dear": {"_count": 1, "said": {"_count": 1}}, "Hagrid": {"_count": 1, "well": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "them": {"_count": 1, "just": {"_count": 1}}, "Dad": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "added": {"_count": 1}, "had": {"_count": 1}}, "that": {"_count": 3, "none": {"_count": 1}, "its": {"_count": 1}, "if": {"_count": 1}}, "They": {"_count": 1, "wont": {"_count": 1}}, "Sirius": {"_count": 2, "said": {"_count": 2}}, "not": {"_count": 1, "to": {"_count": 1}}, "Im": {"_count": 1, "just": {"_count": 1}}, "though": {"_count": 1, "Stinksaps": {"_count": 1}}, "Ill": {"_count": 2, "behave": {"_count": 1}, "get": {"_count": 1}}, "abou": {"_count": 4, "that": {"_count": 1}, "me": {"_count": 2}, "them": {"_count": 1}}, "no": {"_count": 1, "need": {"_count": 1}}, "or": {"_count": 1, "frighten": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "He": {"_count": 1, "looked": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "oo": {"_count": 1, "much": {"_count": 1}}, "Dumbledore": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 1, "said": {"_count": 1}}}, "wonderful": {"_count": 58, "but": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 3}, "!": {"_count": 7}}, "no": {"_count": 1, "one": {"_count": 1}}, "week": {"_count": 1, "until": {"_count": 1}}, "thing": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "to": {"_count": 1}}, "golfer": {"_count": 1, "Mr": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Slughorn": {"_count": 1}}, "book": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 5, "see": {"_count": 1}, "be": {"_count": 2}, "visit": {"_count": 1}, "have": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "vision": {"_count": 1, "of": {"_count": 1}}, "soaring": {"_count": 1, "sensation": {"_count": 1}}, "about": {"_count": 1, "Arithmancy": {"_count": 1}}, "feeling": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "picture": {"_count": 1, "of": {"_count": 1}}, "cold": {"_count": 1, "clear": {"_count": 1}}, "Molly": {"_count": 1, "said": {"_count": 1}}, "news": {"_count": 1, "you": {"_count": 1}}, "person": {"_count": 1, "Ive": {"_count": 1}}, "theres": {"_count": 1, "everything": {"_count": 1}}, "only": {"_count": 1, "slightly": {"_count": 1}}, "For": {"_count": 1, "he": {"_count": 1}}, "wonderful": {"_count": 1, "thing": {"_count": 1}}, "fireworks": {"_count": 1, "she": {"_count": 1}}, "treat": {"_count": 1, "had": {"_count": 1}}, "people": {"_count": 1, "that": {"_count": 1}}, "his": {"_count": 1, "father": {"_count": 1}}, "plan": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "more": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "possibility": {"_count": 1, "occurred": {"_count": 1}}, "job": {"_count": 1, "": {"_count": 1}}, "Object": {"_count": 1, "Harry": {"_count": 1}}, "momentary": {"_count": 1, "urge": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "things": {"_count": 1, "about": {"_count": 1}}, "prospect": {"_count": 1, "in": {"_count": 1}}, "birthday": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "everyone": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}}, "gulp": {"_count": 30, "of": {"_count": 18, "tea": {"_count": 6}, "whatever": {"_count": 1}, "potion": {"_count": 1}, "icy": {"_count": 1}, "water": {"_count": 2}, "butterbeer": {"_count": 1}, "her": {"_count": 1}, "breath": {"_count": 1}, "gin": {"_count": 2}, "Felix": {"_count": 1}, "champagne": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "down": {"_count": 2, "some": {"_count": 1}, "the": {"_count": 1}}, "some": {"_count": 1, "water": {"_count": 1}}, "endless": {"_count": 1, "glasses": {"_count": 1}}, "and": {"_count": 2, "said": {"_count": 1}, "then": {"_count": 1}}}, "wiped": {"_count": 41, "his": {"_count": 11, "mouth": {"_count": 1}, "nose": {"_count": 3}, "forehead": {"_count": 2}, "face": {"_count": 2}, "round": {"_count": 1}, "grazed": {"_count": 1}, "inky": {"_count": 1}}, "it": {"_count": 1, "on": {"_count": 1}}, "slime": {"_count": 1, "off": {"_count": 1}}, "from": {"_count": 2, "it": {"_count": 1}, "their": {"_count": 1}}, "her": {"_count": 3, "mustache": {"_count": 1}, "eyes": {"_count": 1}, "face": {"_count": 1}}, "the": {"_count": 9, "smiles": {"_count": 1}, "Marauders": {"_count": 1}, "lenses": {"_count": 1}, "smile": {"_count": 2}, "smirk": {"_count": 1}, "mirror": {"_count": 1}, "Muggle": {"_count": 1}, "residue": {"_count": 1}}, "them": {"_count": 2, "hurriedly": {"_count": 1}, "away": {"_count": 1}}, "their": {"_count": 1, "memories": {"_count": 1}}, "clear": {"_count": 1, "of": {"_count": 1}}, "gently": {"_count": 1, "away": {"_count": 1}}, "clean": {"_count": 1, "Dumbledore": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "off": {"_count": 1, "here": {"_count": 1}}, "a": {"_count": 2, "trickle": {"_count": 2}}, "magically": {"_count": 1, "blank": {"_count": 1}}, "themselves": {"_count": 1, "clean": {"_count": 1}}, "sweat": {"_count": 1, "from": {"_count": 1}}, "all": {"_count": 1, "else": {"_count": 1}}}, "Call": {"_count": 6, "me": {"_count": 2, "Hagrid": {"_count": 1}, "at": {"_count": 1}}, "him": {"_count": 1, "Voldemort": {"_count": 1}}, "this": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "Peevsie": {"_count": 1}}, "im": {"_count": 1, "off": {"_count": 1}}}, "yehll": {"_count": 15, "know": {"_count": 1, "all": {"_count": 1}}, "need": {"_count": 1, "a": {"_count": 1}}, "have": {"_count": 1, "a": {"_count": 1}}, "get": {"_count": 2, "out": {"_count": 1}, "through": {"_count": 1}}, "want": {"_count": 1, "ter": {"_count": 1}}, "be": {"_count": 3, "in": {"_count": 1}, "able": {"_count": 1}, "": {"_count": 1}}, "wan": {"_count": 1, "ter": {"_count": 1}}, "never": {"_count": 2, "persuade": {"_count": 1}, "be": {"_count": 1}}, "see": {"_count": 2, "in": {"_count": 1}, "what": {"_count": 1}}, "yehll": {"_count": 1, "get": {"_count": 1}}}, "shrank": {"_count": 12, "back": {"_count": 4, "into": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "he": {"_count": 1}}, "they": {"_count": 1, "crashed": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "something": {"_count": 1}}, "rapidly": {"_count": 1, "but": {"_count": 1}}, "nearer": {"_count": 1, "to": {"_count": 1}}}, "shadows": {"_count": 68, "": {"_count": 13, ".": {"_count": 13}}, "and": {"_count": 5, "watched": {"_count": 1}, "Harrys": {"_count": 1}, "in": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 2, "hooded": {"_count": 1}, "soft": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 9, "the": {"_count": 5}, "Magnolia": {"_count": 2}, "a": {"_count": 2}}, "on": {"_count": 3, "the": {"_count": 3}}, "through": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "like": {"_count": 1, "Lupins": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "already": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 4, "his": {"_count": 3}, "her": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "gritting": {"_count": 1, "his": {"_count": 1}}, "beyond": {"_count": 1, "where": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "beside": {"_count": 2, "the": {"_count": 2}}, "move": {"_count": 1, "across": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "moving": {"_count": 1, "over": {"_count": 1}}, "rippled": {"_count": 2, "over": {"_count": 1}, "fanlike": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "up": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "passed": {"_count": 1, "between": {"_count": 1}}, "is": {"_count": 1, "creating": {"_count": 1}}, "fumbled": {"_count": 1, "in": {"_count": 1}}, "cast": {"_count": 1, "by": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "gettin": {"_count": 20, "yer": {"_count": 1, "letters": {"_count": 1}}, "hold": {"_count": 1, "of": {"_count": 1}}, "himself": {"_count": 1, "power": {"_count": 1}}, "more": {"_count": 1, "an": {"_count": 1}}, "late": {"_count": 1, "and": {"_count": 1}}, "things": {"_count": 1, "from": {"_count": 1}}, "kelpies": {"_count": 1, "out": {"_count": 1}}, "everythin": {"_count": 1, "ready": {"_count": 1}}, "on": {"_count": 3, "with": {"_count": 1}, "so": {"_count": 1}, "fer": {"_count": 1}}, "a": {"_count": 2, "bit": {"_count": 2}}, "massive": {"_count": 1, "mus": {"_count": 1}}, "the": {"_count": 1, "sack": {"_count": 1}}, "better": {"_count": 3, "hes": {"_count": 1}, "loads": {"_count": 1}, "": {"_count": 1}}, "hurt": {"_count": 1, "": {"_count": 1}}, "Aragogs": {"_count": 1, "body": {"_count": 1}}}, "abou": {"_count": 46, "Hogwarts": {"_count": 1, "fer": {"_count": 1}}, "about": {"_count": 1, "ANYTHING": {"_count": 1}}, "time": {"_count": 1, "yeh": {"_count": 1}}, "Fluffy": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 3, "are": {"_count": 1}, "Ive": {"_count": 1}, "": {"_count": 1}}, "hippogriffs": {"_count": 1, "is": {"_count": 1}}, "Lily": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "Buckbeak": {"_count": 1, "an": {"_count": 1}}, "it": {"_count": 3, "said": {"_count": 1}, "he": {"_count": 1}, "no": {"_count": 1}}, "their": {"_count": 1, "pets": {"_count": 1}}, "twenty": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 5, "": {"_count": 1}, "mum": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "giants": {"_count": 1, "": {"_count": 1}}, "clamberin": {"_count": 1, "over": {"_count": 1}}, "a": {"_count": 1, "month": {"_count": 1}}, "DeeJohn": {"_count": 1, "Ooooh": {"_count": 1}}, "seventy": {"_count": 1, "or": {"_count": 1}}, "finished": {"_count": 1, "theyd": {"_count": 1}}, "wizards": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "Death": {"_count": 1}, "sixth": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "six": {"_count": 1, "or": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "thestrals": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "this": {"_count": 1}}, "ter": {"_count": 1, "explain": {"_count": 1}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "Aragog": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 2, "makin": {"_count": 1}, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "cryin": {"_count": 1, "out": {"_count": 1, "loud": {"_count": 1}}}, "loud": {"_count": 225, "": {"_count": 6, "!": {"_count": 1}, ".": {"_count": 5}}, "tapping": {"_count": 1, "noise": {"_count": 1}}, "crunching": {"_count": 1, "noise": {"_count": 1}}, "Oooooh": {"_count": 1, "": {"_count": 1}}, "rude": {"_count": 1, "sound": {"_count": 1}}, "hissing": {"_count": 2, "filled": {"_count": 1}, "and": {"_count": 1}}, "footsteps": {"_count": 1, "made": {"_count": 1}}, "cheers": {"_count": 3, "": {"_count": 2}, "from": {"_count": 1}}, "blast": {"_count": 1, "on": {"_count": 1}}, "puffing": {"_count": 1, "sound": {"_count": 1}}, "with": {"_count": 1, "relief": {"_count": 1}}, "bark": {"_count": 1, "from": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "hooting": {"_count": 1, "noise": {"_count": 1}}, "belch": {"_count": 1, "from": {"_count": 1}}, "screech": {"_count": 3, "and": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}}, "clatter": {"_count": 1, "": {"_count": 1}}, "\u2018Dear": {"_count": 1, "Ron": {"_count": 1}}, "thump": {"_count": 3, "Harry": {"_count": 1}, "and": {"_count": 1}, "quite": {"_count": 1}}, "clunk": {"_count": 6, "a": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}}, "bang": {"_count": 17, "echoed": {"_count": 2}, "the": {"_count": 1}, "which": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 9}, "": {"_count": 1}, "as": {"_count": 1}, "brought": {"_count": 1}}, "sparks": {"_count": 1, "and": {"_count": 1}}, "happy": {"_count": 1, "talk": {"_count": 1}}, "voice": {"_count": 11, "made": {"_count": 1}, "rang": {"_count": 1}, "so": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "Dad": {"_count": 1}, "screeched": {"_count": 1}}, "howl": {"_count": 1, "Harry": {"_count": 1}}, "crack": {"_count": 19, "and": {"_count": 11}, "Dobby": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "Fred": {"_count": 1}, "vanished": {"_count": 1}, "": {"_count": 1}, "sounded": {"_count": 1}, "echoed": {"_count": 1}}, "smack": {"_count": 1, "": {"_count": 1}}, "shriek": {"_count": 1, "and": {"_count": 1}}, "snide": {"_count": 1, "remarks": {"_count": 1}}, "ripping": {"_count": 2, "noise": {"_count": 2}}, "and": {"_count": 11, "raucous": {"_count": 1}, "impatient": {"_count": 1}, "oddly": {"_count": 1}, "screechy": {"_count": 1}, "angry": {"_count": 1}, "disapproving": {"_count": 1}, "clear": {"_count": 2}, "strong": {"_count": 2}, "excited": {"_count": 1}}, "knock": {"_count": 2, "on": {"_count": 2}}, "rap": {"_count": 1, "on": {"_count": 1}}, "clicking": {"_count": 2, "noise": {"_count": 1}, "more": {"_count": 1}}, "outbreak": {"_count": 1, "of": {"_count": 1}}, "long": {"_count": 1, "note": {"_count": 1}}, "snort": {"_count": 2, "": {"_count": 2}}, "crunch": {"_count": 1, "as": {"_count": 1}}, "ow": {"_count": 1, "": {"_count": 1}}, "explosive": {"_count": 1, "spitting": {"_count": 1}}, "voices": {"_count": 2, "so": {"_count": 1}, "and": {"_count": 1}}, "sleepy": {"_count": 1, "grunt": {"_count": 1}}, "BANG": {"_count": 5, "and": {"_count": 3}, "": {"_count": 1}, "from": {"_count": 1}}, "scraping": {"_count": 1, "and": {"_count": 1}}, "popping": {"_count": 2, "noise": {"_count": 2}}, "whistle": {"_count": 1, "": {"_count": 1}}, "squeals": {"_count": 1, "of": {"_count": 1}}, "snap": {"_count": 1, "made": {"_count": 1}}, "bangs": {"_count": 5, "and": {"_count": 3}, "": {"_count": 1}, "as": {"_count": 1}}, "whisper": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "enough": {"_count": 3, "for": {"_count": 2}, "to": {"_count": 1}}, "splash": {"_count": 1, "": {"_count": 1}}, "wet": {"_count": 1, "raspberry": {"_count": 1}}, "snore": {"_count": 1, "told": {"_count": 1}}, "harsh": {"_count": 1, "voice": {"_count": 1}}, "thud": {"_count": 1, "": {"_count": 1}}, "purring": {"_count": 1, "": {"_count": 1}}, "creak": {"_count": 1, "behind": {"_count": 1}}, "noises": {"_count": 1, "and": {"_count": 1}}, "hammering": {"_count": 1, "of": {"_count": 1}}, "squeak": {"_count": 1, "and": {"_count": 1}}, "crashing": {"_count": 1, "noise": {"_count": 1}}, "squawk": {"_count": 1, "and": {"_count": 1}}, "tutting": {"_count": 1, "noise": {"_count": 1}}, "hand": {"_count": 1, "for": {"_count": 1}}, "whistlings": {"_count": 1, "and": {"_count": 1}}, "noise": {"_count": 3, "of": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 1}}, "snapping": {"_count": 1, "noise": {"_count": 1}}, "groan": {"_count": 1, "at": {"_count": 1}}, "false": {"_count": 1, "cough": {"_count": 1}}, "sizzling": {"_count": 1, "sound": {"_count": 1}}, "rattling": {"_count": 1, "noise": {"_count": 1}}, "hoot": {"_count": 1, "and": {"_count": 1}}, "round": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "meow": {"_count": 1, "still": {"_count": 1}}, "cry": {"_count": 1, "of": {"_count": 1}}, "conversation": {"_count": 2, "with": {"_count": 1}, "were": {"_count": 1}}, "slamming": {"_count": 1, "noise": {"_count": 1}}, "low": {"_count": 1, "rumbling": {"_count": 1}}, "echoing": {"_count": 1, "crack": {"_count": 1}}, "cracking": {"_count": 1, "noise": {"_count": 1}}, "crude": {"_count": 1, "song": {"_count": 1}}, "running": {"_count": 1, "footsteps": {"_count": 1}}, "click": {"_count": 1, "and": {"_count": 1}}, "metallic": {"_count": 1, "clicks": {"_count": 1}}, "twittering": {"_count": 1, "noise": {"_count": 1}}, "cracks": {"_count": 1, "Fred": {"_count": 1}}, "clanging": {"_count": 1, "bell": {"_count": 1}}, "thunk": {"_count": 1, "onto": {"_count": 1}}, "retching": {"_count": 1, "noises": {"_count": 1}}, "shout": {"_count": 1, "of": {"_count": 1}}, "carrying": {"_count": 1, "voice": {"_count": 1}}, "wailing": {"_count": 1, "klaxonlike": {"_count": 1}}, "way": {"_count": 1, "and": {"_count": 1}}, "slow": {"_count": 2, "voice": {"_count": 2}}, "barks": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "read": {"_count": 1}}, "rasping": {"_count": 1, "genuine": {"_count": 1}}, "fiery": {"_count": 1, "blasts": {"_count": 1}}, "crash": {"_count": 2, "somewhere": {"_count": 1}, "brought": {"_count": 1}}, "raspberries": {"_count": 1, "every": {"_count": 1}}, "tinkle": {"_count": 1, "on": {"_count": 1}}, "sixth": {"_count": 1, "years": {"_count": 1}}, "chorus": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "all": {"_count": 1}}, "grunting": {"_count": 1, "snore": {"_count": 1}}, "clang": {"_count": 2, "and": {"_count": 2}}, "babble": {"_count": 1, "of": {"_count": 1}}, "giggle": {"_count": 1, "Lavender": {"_count": 1}}, "clunks": {"_count": 1, "as": {"_count": 1}}, "laughing": {"_count": 1, "voices": {"_count": 1}}, "crackling": {"_count": 1, "of": {"_count": 1}}, "talk": {"_count": 1, "still": {"_count": 1}}, "applause": {"_count": 1, "issued": {"_count": 1}}, "yell": {"_count": 1, "and": {"_count": 1}}, "squeal": {"_count": 1, "of": {"_count": 1}}, "splintering": {"_count": 1, "sound": {"_count": 1}}, "cackle": {"_count": 1, "": {"_count": 1}}, "creaking": {"_count": 1, "of": {"_count": 1}}, "after": {"_count": 1, "match": {"_count": 1}}, "rattle": {"_count": 1, "onto": {"_count": 1}}, "trumpeting": {"_count": 1, "noises": {"_count": 1}}, "deep": {"_count": 1, "slow": {"_count": 1}}, "tattoo": {"_count": 1, "the": {"_count": 1}}, "ringing": {"_count": 1, "noise": {"_count": 1}}, "enabled": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "sickening": {"_count": 1, "crunches": {"_count": 1}}, "war": {"_count": 1, "cries": {"_count": 1}}}, "Did": {"_count": 197, "yeh": {"_count": 1, "never": {"_count": 1}}, "you": {"_count": 109, "hear": {"_count": 14}, "see": {"_count": 23}, "get": {"_count": 8}, "mention": {"_count": 1}, "really": {"_count": 4}, "feel": {"_count": 1}, "faint": {"_count": 1}, "tell": {"_count": 3}, "even": {"_count": 1}, "check": {"_count": 1}, "eat": {"_count": 1}, "put": {"_count": 1}, "ask": {"_count": 1}, "know": {"_count": 9}, "by": {"_count": 1}, "find": {"_count": 4}, "use": {"_count": 1}, "expect": {"_count": 1}, "er": {"_count": 1}, "did": {"_count": 1}, "do": {"_count": 1}, "want": {"_count": 1}, "": {"_count": 3}, "like": {"_count": 4}, "ever": {"_count": 3}, "kiss": {"_count": 1}, "mean": {"_count": 1}, "say": {"_count": 2}, "not": {"_count": 1}, "have": {"_count": 2}, "issue": {"_count": 1}, "think": {"_count": 4}, "make": {"_count": 2}, "steal": {"_count": 1}, "try": {"_count": 1}, "just": {"_count": 1}, "break": {"_count": 1}, "escape": {"_count": 1}}, "something": {"_count": 1, "happen": {"_count": 1}}, "that": {"_count": 3, "sound": {"_count": 1}, "mean": {"_count": 1}, "dirty": {"_count": 1}}, "it": {"_count": 8, "go": {"_count": 1}, "work": {"_count": 1}, "take": {"_count": 1}, "fall": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 2}, "know": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "this": {"_count": 3, "mean": {"_count": 2}, "make": {"_count": 1}}, "he": {"_count": 20, "now": {"_count": 4}, "realize": {"_count": 1}, "eat": {"_count": 1}, "get": {"_count": 1}, "dare": {"_count": 1}, "forgive": {"_count": 1}, "say": {"_count": 2}, "use": {"_count": 1}, "think": {"_count": 1}, "really": {"_count": 1}, "rip": {"_count": 1}, "expect": {"_count": 1}, "did": {"_count": 1}, "": {"_count": 2}, "wish": {"_count": 1}}, "the": {"_count": 3, "same": {"_count": 1}, "scary": {"_count": 1}, "giants": {"_count": 1}}, "they": {"_count": 4, "think": {"_count": 2}, "perhaps": {"_count": 1}, "treat": {"_count": 1}}, "your": {"_count": 1, "mother": {"_count": 1}}, "she": {"_count": 7, "say": {"_count": 2}, "imagine": {"_count": 1}, "corner": {"_count": 1}, "get": {"_count": 1}, "have": {"_count": 1}, "stumble": {"_count": 1}}, "someone": {"_count": 3, "get": {"_count": 1}, "say": {"_count": 1}, "call": {"_count": 1}}, "Black": {"_count": 1, "mean": {"_count": 1}}, "anyone": {"_count": 4, "see": {"_count": 1}, "really": {"_count": 1}, "tell": {"_count": 1}, "know": {"_count": 1}}, "I": {"_count": 15, "hear": {"_count": 4}, "tell": {"_count": 1}, "": {"_count": 3}, "say": {"_count": 1}, "ever": {"_count": 2}, "believe": {"_count": 1}, "know": {"_count": 2}, "mention": {"_count": 1}}, "sir": {"_count": 1, "just": {"_count": 1}}, "value": {"_count": 1, "different": {"_count": 1}}, "Crouch": {"_count": 1, "try": {"_count": 1}}, "anybody": {"_count": 1, "ever": {"_count": 1}}, "Mrs": {"_count": 1, "Polkiss": {"_count": 1}}, "everyone": {"_count": 1, "see": {"_count": 1}}, "Malfoy": {"_count": 1, "know": {"_count": 1}}, "Cedric": {"_count": 1, "did": {"_count": 1}}, "Hagrid": {"_count": 1, "breed": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "things": {"_count": 1, "with": {"_count": 1}}, "Doge": {"_count": 1, "really": {"_count": 1}}, "Voldemort": {"_count": 1, "or": {"_count": 1}}}, "wonder": {"_count": 91, "where": {"_count": 3, "yer": {"_count": 1}, "the": {"_count": 1}, "youve": {"_count": 1}}, "now": {"_count": 1, "yes": {"_count": 1}}, "he": {"_count": 4, "was": {"_count": 1}, "keeps": {"_count": 1}, "wasnt": {"_count": 1}, "could": {"_count": 1}}, "hes": {"_count": 1, "looking": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "Snapes": {"_count": 1, "after": {"_count": 1}}, "we": {"_count": 1, "couldnt": {"_count": 1}}, "when": {"_count": 3, "hed": {"_count": 1}, "our": {"_count": 1}, "Dumbledore": {"_count": 1}}, "wholl": {"_count": 1, "be": {"_count": 1}}, "Justin": {"_count": 1, "panicked": {"_count": 1}}, "what": {"_count": 9, "other": {"_count": 1}, "the": {"_count": 1}, "theyve": {"_count": 1}, "hes": {"_count": 1}, "itd": {"_count": 1}, "theyre": {"_count": 1}, "hell": {"_count": 1}, "you": {"_count": 1}, "could": {"_count": 1}}, "why": {"_count": 12, "someone": {"_count": 1}, "said": {"_count": 1}, "Professor": {"_count": 1}, "he": {"_count": 2}, "hed": {"_count": 1}, "it": {"_count": 1}, "hes": {"_count": 1}, "Malfoy": {"_count": 1}, "Dumbledore": {"_count": 1}, "nobodys": {"_count": 1}, "goblins": {"_count": 1}}, "dear": {"_count": 1, "she": {"_count": 1}}, "could": {"_count": 1, "you": {"_count": 1}}, "whats": {"_count": 3, "wrong": {"_count": 1}, "for": {"_count": 1}, "happened": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "you": {"_count": 1, "didnt": {"_count": 1}}, "they": {"_count": 4, "were": {"_count": 2}, "didnt": {"_count": 1}, "dont": {"_count": 1}}, "if": {"_count": 6, "Cedric": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 1}, "its": {"_count": 1}, "Hermiones": {"_count": 1}, "Umbridge": {"_count": 1}}, "how": {"_count": 2, "you": {"_count": 1}, "Dumbledore": {"_count": 1}}, "whether": {"_count": 9, "the": {"_count": 1}, "sorting": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "you": {"_count": 2}, "if": {"_count": 1}, "your": {"_count": 1}}, "the": {"_count": 2, "countrys": {"_count": 1}, "headmaster": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "aloud": {"_count": 1, "what": {"_count": 1}}, "which": {"_count": 1, "ward": {"_count": 1}}, "that": {"_count": 2, "the": {"_count": 1}, "day": {"_count": 1}}, "occasionally": {"_count": 1, "during": {"_count": 1}}, "youre": {"_count": 1, "shocked": {"_count": 1}}, "Dumbledore": {"_count": 2, "is": {"_count": 1}, "never": {"_count": 1}}, "Dumbledores": {"_count": 1, "angry": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "tempers": {"_count": 1, "ran": {"_count": 1}}, "not": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "erupted": {"_count": 1, "inside": {"_count": 1}}, "whezzer": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "Albuss": {"_count": 1}}}, "ALL": {"_count": 6, "WHAT": {"_count": 1, "": {"_count": 1}}, "THE": {"_count": 1, "TIME": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "HOLED": {"_count": 1, "UP": {"_count": 1}}, "WORK": {"_count": 1, "IS": {"_count": 1}}, "SING": {"_count": 1, "WEASLEY": {"_count": 1}}}, "thundered": {"_count": 15, "": {"_count": 3, ".": {"_count": 3}}, "INSULT": {"_count": 1, "ALBUS": {"_count": 1}}, "his": {"_count": 1, "uncle": {"_count": 1}}, "jovially": {"_count": 1, "Shouldnt": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 1, "approval": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}, "unheard": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 1, "shepherded": {"_count": 1}}, "the": {"_count": 1, "reinforcements": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}}, "jus": {"_count": 59, "one": {"_count": 1, "second": {"_count": 1}}, "then": {"_count": 1, "anyway": {"_count": 1}}, "round": {"_count": 1, "this": {"_count": 1}}, "dump": {"_count": 1, "him": {"_count": 1}}, "playin": {"_count": 1, "hes": {"_count": 1}}, "bin": {"_count": 2, "askin": {"_count": 1}, "worried": {"_count": 1}}, "don": {"_count": 1, "let": {"_count": 1}}, "play": {"_count": 1, "him": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "lookin": {"_count": 1, "round": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "heard": {"_count": 2, "the": {"_count": 1}, "Snape": {"_count": 1}}, "die": {"_count": 1, "in": {"_count": 1}}, "letting": {"_count": 1, "Buckbeak": {"_count": 1}}, "did": {"_count": 1, "exacly": {"_count": 1}}, "gonna": {"_count": 1, "make": {"_count": 1}}, "hatched": {"_count": 1, "said": {"_count": 1}}, "feedin": {"_count": 1, "em": {"_count": 1}}, "wait": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "an": {"_count": 1}}, "try": {"_count": 1, "an": {"_count": 1}}, "settle": {"_count": 1, "em": {"_count": 1}}, "lead": {"_count": 1, "em": {"_count": 1}}, "wanted": {"_count": 1, "me": {"_count": 1}}, "knew": {"_count": 2, "": {"_count": 1}, "someone": {"_count": 1}}, "after": {"_count": 2, "I": {"_count": 2}}, "nutters": {"_count": 1, "Hermione": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "ter": {"_count": 1}}, "the": {"_count": 1, "pair": {"_count": 1}}, "that": {"_count": 1, "mos": {"_count": 1}}, "had": {"_count": 1, "ter": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "dont": {"_count": 1, "like": {"_count": 1}}, "to": {"_count": 1, "simplify": {"_count": 1}}, "cause": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 2, "we": {"_count": 1}, "old": {"_count": 1}}, "got": {"_count": 3, "back": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}}, "superstition": {"_count": 1, "that": {"_count": 1}}, "pullin": {"_count": 1, "the": {"_count": 1}}, "tell": {"_count": 1, "em": {"_count": 1}}, "normal": {"_count": 1, "bumps": {"_count": 1}}, "get": {"_count": 1, "along": {"_count": 1}}, "hope": {"_count": 1, "she": {"_count": 1}}, "score": {"_count": 1, "": {"_count": 1}}, "stop": {"_count": 1, "fer": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "couldn": {"_count": 1, "leave": {"_count": 1}}, "talk": {"_count": 1, "ter": {"_count": 1}}, "nip": {"_count": 1, "down": {"_count": 1}}, "now": {"_count": 1, "an": {"_count": 1}}, "saw": {"_count": 1, "them": {"_count": 1}}}, "anger": {"_count": 101, "he": {"_count": 4, "seemed": {"_count": 1}, "shot": {"_count": 1}, "felt": {"_count": 1}, "was": {"_count": 1}}, "faded": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 20}, "?": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "staggering": {"_count": 1, "slightly": {"_count": 1}}, "ebb": {"_count": 1, "away": {"_count": 1}}, "rising": {"_count": 1, "once": {"_count": 1}}, "but": {"_count": 4, "the": {"_count": 1}, "apparently": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "still": {"_count": 1, "surging": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "every": {"_count": 1}, "his": {"_count": 1}}, "Harry": {"_count": 4, "had": {"_count": 1}, "removed": {"_count": 1}, "felt": {"_count": 1}, "heard": {"_count": 1}}, "too": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 10, "satisfaction": {"_count": 1}, "hate": {"_count": 1}, "frustration": {"_count": 1}, "impatience": {"_count": 1}, "fright": {"_count": 1}, "grief": {"_count": 1}, "contempt": {"_count": 1}, "the": {"_count": 1}, "panic": {"_count": 1}, "bitterness": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 1}, "he": {"_count": 2}}, "was": {"_count": 3, "ebbing": {"_count": 1}, "terrible": {"_count": 1}, "no": {"_count": 1}}, "They": {"_count": 1, "were": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "had": {"_count": 1, "abated": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 6, "Harry": {"_count": 1}, "Snape": {"_count": 2}, "Cho": {"_count": 1}, "Dumbledore": {"_count": 2}}, "that": {"_count": 3, "had": {"_count": 1}, "an": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "with": {"_count": 1, "Professor": {"_count": 1}}, "would": {"_count": 1, "make": {"_count": 1}}, "discipline": {"_count": 1, "your": {"_count": 1}}, "of": {"_count": 1, "Malfoys": {"_count": 1}}, "swept": {"_count": 1, "Harrys": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}, "wont": {"_count": 1, "hurt": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "leapt": {"_count": 1, "inside": {"_count": 1}}, "lick": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "Tonkss": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "bubbling": {"_count": 1, "in": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 2, "fellow": {"_count": 1}, "his": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "hes": {"_count": 1, "really": {"_count": 1}}, "I": {"_count": 1, "couldnt": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "spill": {"_count": 1, "out": {"_count": 1}}, "or": {"_count": 1, "protect": {"_count": 1}}, "to": {"_count": 1, "abate": {"_count": 1}}, "throbbed": {"_count": 1, "inside": {"_count": 1}}, "flared": {"_count": 1, "in": {"_count": 1}}}, "fill": {"_count": 28, "the": {"_count": 5, "whole": {"_count": 1}, "post": {"_count": 1}, "Hall": {"_count": 2}, "air": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 2}}, "in": {"_count": 3, "the": {"_count": 2}, "for": {"_count": 1}}, "those": {"_count": 1, "startling": {"_count": 1}}, "you": {"_count": 2, "in": {"_count": 2}}, "an": {"_count": 1, "eggcup": {"_count": 1}}, "airports": {"_count": 1, "as": {"_count": 1}}, "one": {"_count": 1, "flagon": {"_count": 1}}, "itself": {"_count": 1, "with": {"_count": 1}}, "another": {"_count": 1, "flask": {"_count": 1}}, "yeh": {"_count": 1, "in": {"_count": 1}}, "several": {"_count": 1, "books": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "place": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 3, "they": {"_count": 1}, "risen": {"_count": 1}, "Harry": {"_count": 1}}}, "cowering": {"_count": 16, "against": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 1, "his": {"_count": 1}}, "silently": {"_count": 1, "on": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "woman": {"_count": 1, "while": {"_count": 1}}, "with": {"_count": 2, "their": {"_count": 2}}, "as": {"_count": 1, "Kreacher": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}}, "growled": {"_count": 94, "at": {"_count": 3, "the": {"_count": 1}, "Hermione": {"_count": 1}, "his": {"_count": 1}}, "Hagrid": {"_count": 12, "": {"_count": 10}, "moving": {"_count": 1}, "into": {"_count": 1}}, "Uncle": {"_count": 3, "Vernon": {"_count": 3}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "Bane": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "twitched": {"_count": 1}}, "as": {"_count": 4, "Harry": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "Cmin": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 2, "not": {"_count": 1}, "as": {"_count": 1}}, "his": {"_count": 2, "yellow": {"_count": 1}, "approval": {"_count": 1}}, "sounding": {"_count": 1, "suddenly": {"_count": 1}}, "Black": {"_count": 1, "his": {"_count": 1}}, "finally": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Diggory": {"_count": 1}}, "jerking": {"_count": 1, "his": {"_count": 1}}, "Moody": {"_count": 28, "as": {"_count": 1}, "": {"_count": 15}, "but": {"_count": 1}, "youve": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 2}, "pocketing": {"_count": 1}, "prodding": {"_count": 1}, "his": {"_count": 2}, "giving": {"_count": 1}, "cause": {"_count": 1}, "who": {"_count": 1}}, "stumping": {"_count": 1, "over": {"_count": 1}}, "you": {"_count": 1, "next": {"_count": 1}}, "Moodys": {"_count": 1, "voice": {"_count": 1}}, "or": {"_count": 1, "Ill": {"_count": 1}}, "a": {"_count": 2, "voice": {"_count": 2}}, "up": {"_count": 1, "the": {"_count": 1}}, "patting": {"_count": 1, "Harrys": {"_count": 1}}, "the": {"_count": 1, "voice": {"_count": 1}}, "MadEye": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "Shut": {"_count": 1, "up": {"_count": 1}}, "Harry": {"_count": 3, "his": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 1}}, "Scrimgeour": {"_count": 1, "": {"_count": 1}}, "Greyback": {"_count": 3, "": {"_count": 3}}}, "nothin": {"_count": 12, "abou": {"_count": 1, "about": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "that": {"_count": 1, "lives": {"_count": 1}}, "Hagrid": {"_count": 1, "muttered": {"_count": 1}}, "and": {"_count": 1, "no": {"_count": 1}}, "doin": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "except": {"_count": 1, "help": {"_count": 1}}, "strange": {"_count": 1, "abou": {"_count": 1}}}, "ANYTHING": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "marks": {"_count": 53, "werent": {"_count": 1, "bad": {"_count": 1}}, "and": {"_count": 2, "everyone": {"_count": 1}, "impressions": {"_count": 1}}, "for": {"_count": 3, "their": {"_count": 2}, "the": {"_count": 1}}, "Hermione": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 11, "!": {"_count": 3}, ".": {"_count": 8}}, "as": {"_count": 1, "usual": {"_count": 1}}, "all": {"_count": 3, "over": {"_count": 3}}, "from": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "supposed": {"_count": 1}}, "were": {"_count": 1, "being": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 2}, "Defense": {"_count": 1}, "Concealment": {"_count": 1}, "front": {"_count": 1}, "all": {"_count": 2}, "a": {"_count": 1}}, "on": {"_count": 5, "her": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 2}}, "off": {"_count": 2, "for": {"_count": 2}}, "out": {"_count": 2, "of": {"_count": 2}}, "I": {"_count": 1, "think": {"_count": 1}}, "of": {"_count": 4, "Hedwigs": {"_count": 1}, "ineptitude": {"_count": 1}, "the": {"_count": 2}}, "under": {"_count": 1, "her": {"_count": 1}}, "by": {"_count": 1, "him": {"_count": 1}}, "again": {"_count": 1, "then": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "math": {"_count": 1, "and": {"_count": 1, "stuff": {"_count": 1}}}, "explode": {"_count": 12, "": {"_count": 6, ".": {"_count": 6}}, "but": {"_count": 1, "when": {"_count": 1}}, "when": {"_count": 1, "interrupted": {"_count": 1}}, "causing": {"_count": 1, "it": {"_count": 1}}, "with": {"_count": 2, "excitement": {"_count": 1}, "pleasure": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "DURSLEY": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "boomed": {"_count": 16, "": {"_count": 1, ".": {"_count": 1}}, "Aunt": {"_count": 2, "Marge": {"_count": 2}}, "Hagrid": {"_count": 1, "over": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "Karkaroff": {"_count": 1, "so": {"_count": 1}}, "out": {"_count": 3, "across": {"_count": 1}, "beside": {"_count": 1}, "again": {"_count": 1}}, "Madam": {"_count": 1, "Bones": {"_count": 1}}, "sweeping": {"_count": 1, "Harry": {"_count": 1}}, "genially": {"_count": 1, "twiddling": {"_count": 1}}, "Slughorn": {"_count": 2, "almost": {"_count": 1}, "": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "pale": {"_count": 167, "whispered": {"_count": 1, "something": {"_count": 1}}, "young": {"_count": 2, "man": {"_count": 2}}, "pointed": {"_count": 7, "face": {"_count": 6}, "sneering": {"_count": 1}}, "boy": {"_count": 6, "in": {"_count": 2}, "from": {"_count": 1}, "they": {"_count": 1}, "carelessly": {"_count": 1}, "with": {"_count": 1}}, "eyes": {"_count": 17, "shining": {"_count": 1}, "straying": {"_count": 1}, "narrowed": {"_count": 3}, "glinting": {"_count": 1}, "glittering": {"_count": 1}, "were": {"_count": 1}, "standing": {"_count": 1}, "suddenly": {"_count": 1}, "staring": {"_count": 1}, "so": {"_count": 1}, "widened": {"_count": 1}, "upon": {"_count": 1}, "shift": {"_count": 1}, "still": {"_count": 1}, "roved": {"_count": 1}}, "stare": {"_count": 1, "": {"_count": 1}}, "cheeks": {"_count": 2, "": {"_count": 2}}, "under": {"_count": 1, "his": {"_count": 1}}, "lanterns": {"_count": 1, "in": {"_count": 1}}, "green": {"_count": 6, "by": {"_count": 1}, "mottled": {"_count": 1}, "then": {"_count": 1}, "smoke": {"_count": 1}, "along": {"_count": 1}, "worms": {"_count": 1}}, "as": {"_count": 9, "the": {"_count": 2}, "smoke": {"_count": 1}, "death": {"_count": 1}, "his": {"_count": 1}, "any": {"_count": 1}, "he": {"_count": 1}, "Aberforth": {"_count": 1}, "she": {"_count": 1}}, "wild": {"_count": 1, "eyes": {"_count": 1}}, "and": {"_count": 31, "looked": {"_count": 2}, "his": {"_count": 1}, "scaredlooking": {"_count": 1}, "sweaty": {"_count": 4}, "transparent": {"_count": 1}, "shocked": {"_count": 1}, "stunned": {"_count": 1}, "Im": {"_count": 1}, "frightened": {"_count": 1}, "drowsy": {"_count": 1}, "strained": {"_count": 1}, "slimy": {"_count": 1}, "clammy": {"_count": 2}, "jumped": {"_count": 1}, "agitated": {"_count": 1}, "apprehensive": {"_count": 1}, "peaky": {"_count": 1}, "set": {"_count": 1}, "sicklooking": {"_count": 1}, "sweating": {"_count": 1}, "wan": {"_count": 1}, "pointed": {"_count": 1}, "determined": {"_count": 1}, "unsteady": {"_count": 1}, "flaky": {"_count": 1}, "still": {"_count": 1}}, "sapphires": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 4, "determined": {"_count": 1}, "when": {"_count": 1}, "went": {"_count": 1}, "uninjured": {"_count": 1}}, "aunt": {"_count": 1, "who": {"_count": 1}}, "was": {"_count": 1, "bullied": {"_count": 1}}, "blue": {"_count": 6, "ceiling": {"_count": 1}, "robes": {"_count": 1}, "Beauxbatons": {"_count": 1}, "sky": {"_count": 1}, "that": {"_count": 1}, "carpet": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "gray": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "face": {"_count": 17, "split": {"_count": 1}, "": {"_count": 7}, "went": {"_count": 1}, "in": {"_count": 2}, "flushed": {"_count": 1}, "twisted": {"_count": 1}, "into": {"_count": 1}, "lit": {"_count": 1}, "illuminated": {"_count": 1}, "the": {"_count": 1}}, "dawn": {"_count": 1, "light": {"_count": 1}}, "transparentlooking": {"_count": 1, "moon": {"_count": 1}}, "blancmange": {"_count": 1, "closely": {"_count": 1}}, "witch": {"_count": 1, "indignantly": {"_count": 1}}, "pink": {"_count": 1, "was": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}, "spiders": {"_count": 2, "his": {"_count": 1}, "against": {"_count": 1}}, "heartshaped": {"_count": 2, "face": {"_count": 2}}, "violet": {"_count": 2, "color": {"_count": 1}, "paper": {"_count": 1}}, "toad": {"_count": 1, "": {"_count": 1}}, "eyebrows": {"_count": 1, "and": {"_count": 1}}, "pearly": {"_count": 1, "gray": {"_count": 1}}, "indeed": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 1, "stared": {"_count": 1}}, "twisted": {"_count": 2, "face": {"_count": 2}}, "doughy": {"_count": 1, "face": {"_count": 1}}, "yellow": {"_count": 1, "that": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "that": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "gooseberry": {"_count": 1, "eyes": {"_count": 1}}, "gold": {"_count": 1, "pink": {"_count": 1}}, "rather": {"_count": 1, "heavy": {"_count": 1}}, "darkhaired": {"_count": 1, "and": {"_count": 1}}, "erupted": {"_count": 1, "out": {"_count": 1}}, "round": {"_count": 1, "face": {"_count": 1}}, "figure": {"_count": 1, "of": {"_count": 1}}, "skin": {"_count": 1, "hanging": {"_count": 1}}, "she": {"_count": 1, "no": {"_count": 1}}, "imitations": {"_count": 1, "arent": {"_count": 1}}, "frozen": {"_count": 1, "figures": {"_count": 1}}, "sunken": {"_count": 1, "yet": {"_count": 1}}, "hand": {"_count": 1, "which": {"_count": 1}}, "a": {"_count": 1, "difference": {"_count": 1}}}, "sounded": {"_count": 154, "like": {"_count": 29, "Mimblewimble": {"_count": 1}, "a": {"_count": 9}, "Peeves": {"_count": 1}, "you": {"_count": 1}, "Fudge": {"_count": 1}, "minor": {"_count": 1}, "the": {"_count": 1}, "threats": {"_count": 2}, "mind": {"_count": 1}, "said": {"_count": 1}, "Hogwarts": {"_count": 1}, "World": {"_count": 1}, "an": {"_count": 1}, "cannon": {"_count": 1}, "tchah": {"_count": 1}, "mandolins": {"_count": 1}, "Snape": {"_count": 1}, "crackings": {"_count": 1}, "Voldemorts": {"_count": 1}, "hundreds": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "amazed": {"_count": 1, "": {"_count": 1}}, "offhand": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 7, "bit": {"_count": 4}, "little": {"_count": 2}, "terrible": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 3}, "downstairs": {"_count": 1}}, "to": {"_count": 5, "Harry": {"_count": 3}, "him": {"_count": 1}, "me": {"_count": 1}}, "as": {"_count": 22, "though": {"_count": 22}}, "exactly": {"_count": 1, "like": {"_count": 1}}, "breathless": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "quite": {"_count": 1, "hysterical": {"_count": 1}}, "more": {"_count": 1, "difficult": {"_count": 1}}, "shrill": {"_count": 2, "and": {"_count": 2}}, "and": {"_count": 1, "a": {"_count": 1}}, "louder": {"_count": 1, "than": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "weak": {"_count": 1, "with": {"_count": 1}}, "timid": {"_count": 1, "and": {"_count": 1}}, "terrified": {"_count": 2, "again": {"_count": 1}, "but": {"_count": 1}}, "hoarse": {"_count": 1, "as": {"_count": 1}}, "stupid": {"_count": 1, "": {"_count": 1}}, "cheerful": {"_count": 1, "and": {"_count": 1}}, "muffled": {"_count": 1, "as": {"_count": 1}}, "somewhere": {"_count": 1, "beyond": {"_count": 1}}, "highly": {"_count": 1, "amused": {"_count": 1}}, "shaky": {"_count": 1, "Hermione": {"_count": 1}}, "very": {"_count": 2, "much": {"_count": 1}, "dangerous": {"_count": 1}}, "even": {"_count": 1, "louder": {"_count": 1}}, "amazing": {"_count": 1, "though": {"_count": 1}}, "outside": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "behind": {"_count": 2, "them": {"_count": 2}}, "oddly": {"_count": 1, "like": {"_count": 1}}, "rude": {"_count": 1, "no": {"_count": 1}}, "anxious": {"_count": 1, "and": {"_count": 1}}, "hopeful": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "ten": {"_count": 1, "times": {"_count": 1}}, "so": {"_count": 1, "close": {"_count": 1}}, "embarrassed": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 1, "nervous": {"_count": 1}}, "dim": {"_count": 1, "and": {"_count": 1}}, "uncannily": {"_count": 1, "like": {"_count": 1}}, "inside": {"_count": 2, "the": {"_count": 2}}, "for": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "students": {"_count": 1}}, "much": {"_count": 3, "more": {"_count": 2}, "higher": {"_count": 1}}, "nervous": {"_count": 1, "and": {"_count": 1}}, "unconvinced": {"_count": 1, "": {"_count": 1}}, "strangely": {"_count": 1, "distant": {"_count": 1}}, "horribly": {"_count": 1, "like": {"_count": 1}}, "rather": {"_count": 1, "uneasy": {"_count": 1}}, "curious": {"_count": 1, "rather": {"_count": 1}}, "falsely": {"_count": 1, "bright": {"_count": 1}}, "odd": {"_count": 1, "": {"_count": 1}}, "scared": {"_count": 1, "much": {"_count": 1}}, "incredulously": {"_count": 1, "delighted": {"_count": 1}}, "frightened": {"_count": 1, "": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 2, "and": {"_count": 1}, "saw": {"_count": 1}}, "impressive": {"_count": 1, "so": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "exhausted": {"_count": 1, "": {"_count": 1}}, "almost": {"_count": 2, "like": {"_count": 1}, "angry": {"_count": 1}}, "happy": {"_count": 1, "": {"_count": 1}}, "stern": {"_count": 1, "again": {"_count": 1}}, "disdainful": {"_count": 1, "even": {"_count": 1}}, "agonizing": {"_count": 1, "": {"_count": 1}}, "worried": {"_count": 1, "": {"_count": 1}}, "clearly": {"_count": 1, "over": {"_count": 1}}, "avid": {"_count": 1, "": {"_count": 1}}, "feebler": {"_count": 1, "to": {"_count": 1}}, "distraught": {"_count": 1, "": {"_count": 1}}, "strange": {"_count": 1, "and": {"_count": 1}}, "cold": {"_count": 1, "": {"_count": 1}}, "furious": {"_count": 1, "": {"_count": 1}}, "loud": {"_count": 1, "and": {"_count": 1}}, "unnaturally": {"_count": 1, "loud": {"_count": 1}}}, "Mimblewimble": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mom": {"_count": 4, "and": {"_count": 3, "dad": {"_count": 3}}, "": {"_count": 1, ".": {"_count": 1}}}, "Youre": {"_count": 259, "famous": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 36, "old": {"_count": 1}, "telling": {"_count": 4}, "he": {"_count": 1}, "going": {"_count": 7}, "allowed": {"_count": 2}, "worried": {"_count": 1}, "leaving": {"_count": 1}, "the": {"_count": 1}, "by": {"_count": 1}, "supposed": {"_count": 2}, "": {"_count": 1}, "staying": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "still": {"_count": 1}, "doing": {"_count": 1}, "drinking": {"_count": 1}, "talking": {"_count": 1}, "yet": {"_count": 1}, "taking": {"_count": 1}, "welcome": {"_count": 2}, "pathetic": {"_count": 1}, "setting": {"_count": 1}, "in": {"_count": 1}}, "in": {"_count": 9, "safe": {"_count": 1}, "luck": {"_count": 2}, "for": {"_count": 1}, "hiding": {"_count": 1}, "shock": {"_count": 1}, "trouble": {"_count": 2}, "the": {"_count": 1}}, "joking": {"_count": 5, "": {"_count": 3}, "Weasley": {"_count": 1}, "Perce": {"_count": 1}}, "a": {"_count": 12, "lot": {"_count": 1}, "Parselmouth": {"_count": 1}, "wreck": {"_count": 1}, "dishwasher": {"_count": 1}, "damn": {"_count": 1}, "champion": {"_count": 1}, "sharp": {"_count": 1}, "boggart": {"_count": 1}, "nasty": {"_count": 1}, "rreally": {"_count": 1}, "good": {"_count": 1}, "genius": {"_count": 1}}, "saying": {"_count": 1, "it": {"_count": 1}}, "lucky": {"_count": 2, "you": {"_count": 1}, "theres": {"_count": 1}}, "only": {"_count": 1, "holding": {"_count": 1}}, "worth": {"_count": 1, "twelve": {"_count": 1}}, "the": {"_count": 10, "only": {"_count": 2}, "Defense": {"_count": 1}, "cleverest": {"_count": 1}, "best": {"_count": 2}, "third": {"_count": 1}, "boss": {"_count": 1}, "one": {"_count": 1}, "Gray": {"_count": 1}}, "losing": {"_count": 1, "it": {"_count": 1}}, "mad": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "right": {"_count": 7, "Harry": {"_count": 1}, "Draco": {"_count": 1}, "said": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 1}, "sorry": {"_count": 1}}, "going": {"_count": 20, "out": {"_count": 1}, "to": {"_count": 17}, "arent": {"_count": 1}, "about": {"_count": 1}}, "too": {"_count": 4, "nosy": {"_count": 1}, "young": {"_count": 2}, "Harry": {"_count": 1}}, "never": {"_count": 1, "going": {"_count": 1}}, "driving": {"_count": 1, "too": {"_count": 1}}, "late": {"_count": 5, "": {"_count": 2}, "boys": {"_count": 1}, "Potter": {"_count": 1}, "WonWon": {"_count": 1}}, "giving": {"_count": 1, "out": {"_count": 1}}, "just": {"_count": 4, "jealous": {"_count": 1}, "worried": {"_count": 1}, "as": {"_count": 1}, "going": {"_count": 1}}, "making": {"_count": 3, "fun": {"_count": 2}, "Stan": {"_count": 1}}, "killing": {"_count": 1, "off": {"_count": 1}}, "wrong": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}, "barely": {"_count": 2, "alive": {"_count": 1}, "of": {"_count": 1}}, "ugly": {"_count": 1, "youre": {"_count": 1}}, "dead": {"_count": 3, "Harry": {"_count": 1}, "Potter": {"_count": 1}, "arent": {"_count": 1}}, "alive": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "fighting": {"_count": 1, "a": {"_count": 1}}, "Muggleborn": {"_count": 1, "": {"_count": 1}}, "winding": {"_count": 1, "me": {"_count": 1}}, "expecting": {"_count": 1, "too": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 3}}, "armed": {"_count": 1, "were": {"_count": 1}}, "both": {"_count": 1, "mental": {"_count": 1}}, "nutters": {"_count": 1, "both": {"_count": 1}}, "wondering": {"_count": 1, "perhaps": {"_count": 1}}, "free": {"_count": 1, "said": {"_count": 1}}, "talking": {"_count": 2, "nonsense": {"_count": 1}, "to": {"_count": 1}}, "youre": {"_count": 4, "writing": {"_count": 1}, "sure": {"_count": 1}, "a": {"_count": 1}, "not": {"_count": 1}}, "so": {"_count": 2, "oldfashioned": {"_count": 1}, "naive": {"_count": 1}}, "kidding": {"_count": 10, "": {"_count": 8}, "said": {"_count": 1}, "right": {"_count": 1}}, "all": {"_count": 3, "right": {"_count": 1}, "messed": {"_count": 1}, "in": {"_count": 1}}, "JOKING": {"_count": 1, "": {"_count": 1}}, "eating": {"_count": 1, "again": {"_count": 1}}, "treasurer": {"_count": 1, "Ron": {"_count": 1}}, "excused": {"_count": 1, "": {"_count": 1}}, "blocking": {"_count": 1, "the": {"_count": 1}}, "doing": {"_count": 2, "a": {"_count": 1}, "what": {"_count": 1}}, "already": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 2, "go": {"_count": 1}, "stay": {"_count": 1}}, "very": {"_count": 1, "lucky": {"_count": 1}}, "tied": {"_count": 1, "in": {"_count": 1}}, "well": {"_count": 2, "outside": {"_count": 1}, "out": {"_count": 1}}, "scared": {"_count": 2, "for": {"_count": 1}, "hell": {"_count": 1}}, "starting": {"_count": 2, "to": {"_count": 1}, "your": {"_count": 1}}, "another": {"_count": 1, "one": {"_count": 1}}, "still": {"_count": 4, "doing": {"_count": 1}, "looking": {"_count": 1}, "very": {"_count": 1}, "really": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 4, "he": {"_count": 1}, "the": {"_count": 2}, "probation": {"_count": 1}}, "sure": {"_count": 2, "hes": {"_count": 1}, "they": {"_count": 1}}, "mental": {"_count": 1, "said": {"_count": 1}}, "history": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "Auror": {"_count": 1}}, "looking": {"_count": 1, "peaky": {"_count": 1}}, "absolutely": {"_count": 1, "right": {"_count": 1}}, "letting": {"_count": 1, "people": {"_count": 1}}, "related": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "always": {"_count": 2, "having": {"_count": 1}, "doing": {"_count": 1}}, "leaving": {"_count": 3, "out": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "setting": {"_count": 1, "them": {"_count": 1}}, "worried": {"_count": 1, "that": {"_count": 1}}, "less": {"_count": 1, "like": {"_count": 1}}, "Hagrid": {"_count": 1, "are": {"_count": 1}}, "inspectin": {"_count": 1, "us": {"_count": 1}}, "getting": {"_count": 2, "really": {"_count": 1}, "a": {"_count": 1}}, "meeting": {"_count": 1, "Hermione": {"_count": 1}}, "early": {"_count": 1, "": {"_count": 1}}, "banned": {"_count": 1, "as": {"_count": 1}}, "supposed": {"_count": 3, "to": {"_count": 3}}, "as": {"_count": 1, "bad": {"_count": 1}}, "being": {"_count": 3, "rather": {"_count": 1}, "offered": {"_count": 1}, "modest": {"_count": 1}}, "quite": {"_count": 2, "right": {"_count": 1}, "sure": {"_count": 1}}, "like": {"_count": 1, "Ron": {"_count": 1}}, "actually": {"_count": 3, "disappointed": {"_count": 1}, "going": {"_count": 1}, "defending": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "coming": {"_count": 1, "with": {"_count": 1}}, "lagging": {"_count": 1, "behind": {"_count": 1}}, "staying": {"_count": 1, "at": {"_count": 1}}, "unbelievable": {"_count": 1, "you": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "late": {"_count": 1}}, "at": {"_count": 1, "my": {"_count": 1}}, "more": {"_count": 1, "important": {"_count": 1}}, "underage": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "halfgiant": {"_count": 1, "said": {"_count": 1}}, "okay": {"_count": 2, "he": {"_count": 1}, "are": {"_count": 1}}, "amazing": {"_count": 1, "you": {"_count": 1}}, "our": {"_count": 1, "one": {"_count": 1}}, "Aberforth": {"_count": 1, "said": {"_count": 1}}, "seventeen": {"_count": 1, "boy": {"_count": 1}}, "acting": {"_count": 1, "on": {"_count": 1}}, "her": {"_count": 1, "daughter": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "Snape": {"_count": 1}}}, "fixing": {"_count": 13, "Harry": {"_count": 2, "with": {"_count": 2}}, "it": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "each": {"_count": 1}}, "her": {"_count": 3, "with": {"_count": 1}, "sternly": {"_count": 1}, "eyes": {"_count": 1}}, "the": {"_count": 3, "parcel": {"_count": 1}, "calendar": {"_count": 1}, "time": {"_count": 1}}, "Marietta": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "bewildered": {"_count": 45, "stare": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "Wood": {"_count": 1}}, "at": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "faces": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 22}}, "Harry": {"_count": 1, "stared": {"_count": 1}}, "second": {"_count": 1, "later": {"_count": 1}}, "running": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 1, "react": {"_count": 1}}, "and": {"_count": 2, "irritated": {"_count": 1}, "pajamaclad": {"_count": 1}}, "Hermione": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 3, "last": {"_count": 1}, "impressed": {"_count": 1}, "to": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}, "Inferi": {"_count": 1, "accompanying": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "moment": {"_count": 1, "he": {"_count": 1}}}, "Stop": {"_count": 37, "": {"_count": 9, "!": {"_count": 6}, ".": {"_count": 3}}, "right": {"_count": 1, "there": {"_count": 1}}, "Lily": {"_count": 1, "an": {"_count": 1}}, "saying": {"_count": 1, "the": {"_count": 1}}, "moving": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 7, "Harry": {"_count": 1}, "": {"_count": 5}, "Oliver": {"_count": 1}}, "gibbering": {"_count": 1, "said": {"_count": 1}}, "worrying": {"_count": 1, "Oliver": {"_count": 1}}, "the": {"_count": 1, "Outrageous": {"_count": 1}}, "poking": {"_count": 1, "me": {"_count": 1}}, "being": {"_count": 2, "noble": {"_count": 1}, "so": {"_count": 1}}, "doing": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "stop": {"_count": 1, "STOP": {"_count": 1}}, "STOP": {"_count": 2, "": {"_count": 2}}, "calling": {"_count": 1, "her": {"_count": 1}}, "stirring": {"_count": 1, "please": {"_count": 1}}, "bossing": {"_count": 1, "me": {"_count": 1}}, "skulking": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "stop": {"_count": 1}}, "that": {"_count": 1, "said": {"_count": 1}}}, "commanded": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "might": {"_count": 1}}}, "forbid": {"_count": 6, "you": {"_count": 4, "to": {"_count": 4}}, "him": {"_count": 1, "to": {"_count": 1}}, "Molly": {"_count": 1, "you": {"_count": 1}}}, "braver": {"_count": 7, "man": {"_count": 2, "than": {"_count": 1}, "by": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "than": {"_count": 2, "theyd": {"_count": 1}, "he": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}}, "quailed": {"_count": 2, "under": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}}, "syllable": {"_count": 4, "trembled": {"_count": 1, "with": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "rang": {"_count": 1, "clearly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "rage": {"_count": 70, "": {"_count": 25, ".": {"_count": 25}}, "and": {"_count": 12, "confusion": {"_count": 1}, "frustration": {"_count": 2}, "hatred": {"_count": 1}, "pawed": {"_count": 1}, "reared": {"_count": 1}, "straighten": {"_count": 1}, "storm": {"_count": 2}, "dived": {"_count": 1}, "contempt": {"_count": 1}, "grief": {"_count": 1}}, "echoed": {"_count": 1, "from": {"_count": 1}}, "broke": {"_count": 1, "over": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "Black": {"_count": 1, "started": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "couldnt": {"_count": 1}, "was": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "Very": {"_count": 1, "well": {"_count": 1}}, "but": {"_count": 1, "nobody": {"_count": 1}}, "the": {"_count": 1, "magazine": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "did": {"_count": 1}}, "at": {"_count": 1, "me": {"_count": 1}}, "Gaunt": {"_count": 1, "ran": {"_count": 1}}, "Morfin": {"_count": 1, "leapt": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}, "In": {"_count": 1, "that": {"_count": 1}}, "against": {"_count": 1, "YouKnowWho": {"_count": 1}}, "was": {"_count": 2, "coming": {"_count": 1}, "dreadful": {"_count": 1}}, "reared": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "scream": {"_count": 1}}, "of": {"_count": 1, "denial": {"_count": 1}}, "now": {"_count": 1, "How": {"_count": 1}}, "His": {"_count": 1, "scar": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}}, "Never": {"_count": 92, "told": {"_count": 1, "him": {"_count": 1}}, "wondered": {"_count": 1, "how": {"_count": 1}}, "made": {"_count": 1, "things": {"_count": 1}}, "mess": {"_count": 1, "with": {"_count": 1}}, "mind": {"_count": 27, "that": {"_count": 7}, "said": {"_count": 4}, "Ron": {"_count": 1}, "Amos": {"_count": 1}, "me": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 2}, "unwrapping": {"_count": 1}, "spots": {"_count": 1}, "never": {"_count": 1}, "her": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 1}, "where": {"_count": 1}, "how": {"_count": 1}, "us": {"_count": 1}}, "thought": {"_count": 2, "youd": {"_count": 1}, "Id": {"_count": 1}}, "in": {"_count": 2, "all": {"_count": 1}, "anyones": {"_count": 1}}, "heard": {"_count": 3, "of": {"_count": 2}, "a": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "said": {"_count": 3, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 2}}, "croaked": {"_count": 1, "the": {"_count": 1}}, "trust": {"_count": 2, "anything": {"_count": 2}}, "notice": {"_count": 1, "nuffink": {"_count": 1}}, "been": {"_count": 4, "a": {"_count": 1}, "this": {"_count": 1}, "expelled": {"_count": 1}, "better": {"_count": 1}}, "before": {"_count": 2, "had": {"_count": 2}}, "saw": {"_count": 1, "one": {"_count": 1}}, "occurred": {"_count": 1, "ter": {"_count": 1}}, "quite": {"_count": 1, "in": {"_count": 1}}, "bin": {"_count": 2, "anywhere": {"_count": 1}, "an": {"_count": 1}}, "forget": {"_count": 2, "that": {"_count": 1}, "though": {"_count": 1}}, "dreamed": {"_count": 1, "theyd": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "met": {"_count": 2, "anyone": {"_count": 1}, "one": {"_count": 1}}, "do": {"_count": 1, "that": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 7, "mind": {"_count": 7}}, "shown": {"_count": 1, "you": {"_count": 1}}, "Knew": {"_count": 1, "You": {"_count": 1}}, "known": {"_count": 1, "kids": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}, "ever": {"_count": 1, "again": {"_count": 1}}, "used": {"_count": 1, "an": {"_count": 1}}, "try": {"_count": 1, "to": {"_count": 1}}, "stay": {"_count": 1, "in": {"_count": 1}}, "liked": {"_count": 1, "her": {"_count": 1}}, "once": {"_count": 2, "had": {"_count": 1}, "in": {"_count": 1}}, "married": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 1, "whole": {"_count": 1}}}, "Kept": {"_count": 5, "what": {"_count": 1, "from": {"_count": 1}}, "outta": {"_count": 1, "trouble": {"_count": 1}}, "my": {"_count": 1, "nose": {"_count": 1}}, "emselves": {"_count": 1, "to": {"_count": 1}}, "telling": {"_count": 1, "Seamus": {"_count": 1}}}, "eagerly": {"_count": 101, "": {"_count": 50, ".": {"_count": 50}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 4, "hear": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 1}, "every": {"_count": 1}}, "edging": {"_count": 1, "further": {"_count": 1}}, "but": {"_count": 1, "next": {"_count": 1}}, "for": {"_count": 2, "Riddles": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 5, "Ron": {"_count": 1}, "many": {"_count": 1}, "patted": {"_count": 1}, "he": {"_count": 2}}, "pausing": {"_count": 1, "on": {"_count": 1}}, "around": {"_count": 3, "at": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "listening": {"_count": 2, "villagers": {"_count": 1}, "classmates": {"_count": 1}}, "regretting": {"_count": 1, "more": {"_count": 1}}, "jingling": {"_count": 1, "what": {"_count": 1}}, "through": {"_count": 1, "her": {"_count": 1}}, "all": {"_count": 1, "looking": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "wagged": {"_count": 1, "its": {"_count": 1}}, "she": {"_count": 1, "seemed": {"_count": 1}}, "or": {"_count": 1, "because": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "loved": {"_count": 1}}, "at": {"_count": 3, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "dropping": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "tearing": {"_count": 1, "open": {"_count": 1}}, "awaiting": {"_count": 1, "her": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "dyou": {"_count": 1}}, "whose": {"_count": 1, "nose": {"_count": 1}}, "from": {"_count": 2, "Harry": {"_count": 1}, "Voldemort": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "in": {"_count": 2, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "STOP": {"_count": 14, "": {"_count": 11, "!": {"_count": 10}, ".": {"_count": 1}}, "LAUGHING": {"_count": 1, "": {"_count": 1}}, "THEM": {"_count": 1, "": {"_count": 1}}, "OR": {"_count": 1, "SHE": {"_count": 1}}}, "FORBID": {"_count": 1, "YOU": {"_count": 1, "": {"_count": 1}}}, "panic": {"_count": 71, "": {"_count": 19, ".": {"_count": 18}, "!": {"_count": 1}}, "fading": {"_count": 1, "now": {"_count": 1}}, "in": {"_count": 8, "his": {"_count": 6}, "Uncle": {"_count": 1}, "Harrys": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 6, "get": {"_count": 1}, "Hermione": {"_count": 1}, "excitement": {"_count": 1}, "the": {"_count": 1}, "confusion": {"_count": 1}, "fear": {"_count": 1}}, "turned": {"_count": 1, "suddenly": {"_count": 1}}, "he": {"_count": 2, "couldnt": {"_count": 1}, "thought": {"_count": 1}}, "Harry": {"_count": 3, "threw": {"_count": 1}, "didnt": {"_count": 1}, "knew": {"_count": 1}}, "was": {"_count": 3, "clutching": {"_count": 1}, "with": {"_count": 1}, "causing": {"_count": 1}}, "hed": {"_count": 1, "been": {"_count": 1}}, "had": {"_count": 1, "left": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "rising": {"_count": 1, "into": {"_count": 1}}, "now": {"_count": 1, "don": {"_count": 1}}, "were": {"_count": 3, "starting": {"_count": 1}, "clouding": {"_count": 1}, "threatening": {"_count": 1}}, "that": {"_count": 2, "will": {"_count": 1}, "seemed": {"_count": 1}}, "fogging": {"_count": 1, "his": {"_count": 1}}, "how": {"_count": 1, "was": {"_count": 1}}, "inside": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "expanding": {"_count": 1, "inside": {"_count": 1}}, "about": {"_count": 1, "YouKnowWho": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "more": {"_count": 1, "parents": {"_count": 1}}, "could": {"_count": 2, "not": {"_count": 1}, "decide": {"_count": 1}}, "his": {"_count": 1, "fear": {"_count": 1}}, "or": {"_count": 1, "distress": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "steadied": {"_count": 1, "him": {"_count": 1}}}, "gasp": {"_count": 32, "of": {"_count": 6, "horror": {"_count": 3}, "surprise": {"_count": 1}, "pain": {"_count": 2}}, "slip": {"_count": 1, "sideways": {"_count": 1}}, "pointing": {"_count": 1, "down": {"_count": 1}}, "from": {"_count": 1, "within": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 10, "looked": {"_count": 1}, "tears": {"_count": 1}, "slumped": {"_count": 1}, "flattened": {"_count": 1}, "leapt": {"_count": 1}, "his": {"_count": 1}, "then": {"_count": 1}, "jump": {"_count": 1}, "he": {"_count": 1}, "began": {"_count": 1}}, "looking": {"_count": 1, "over": {"_count": 1}}, "looked": {"_count": 1, "wildly": {"_count": 1}}, "horrified": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "carefully": {"_count": 1, "covered": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "he": {"_count": 1, "remembered": {"_count": 1}}, "Harry": {"_count": 1, "pulled": {"_count": 1}}}, "boil": {"_count": 5, "yer": {"_count": 1, "heads": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}}, "wizard": {"_count": 445, "": {"_count": 52, ".": {"_count": 41}, "?": {"_count": 8}, "!": {"_count": 3}}, "o": {"_count": 1, "course": {"_count": 1}}, "who": {"_count": 42, "went": {"_count": 2}, "had": {"_count": 10}, "Harry": {"_count": 1}, "waged": {"_count": 1}, "conjures": {"_count": 1}, "has": {"_count": 2}, "worked": {"_count": 1}, "threw": {"_count": 1}, "was": {"_count": 5}, "put": {"_count": 1}, "could": {"_count": 2}, "bowed": {"_count": 1}, "claimed": {"_count": 1}, "hung": {"_count": 1}, "will": {"_count": 1}, "killed": {"_count": 2}, "created": {"_count": 1}, "spent": {"_count": 1}, "looked": {"_count": 1}, "faked": {"_count": 1}, "appeared": {"_count": 1}, "did": {"_count": 1}, "knew": {"_count": 1}, "is": {"_count": 1}, "calls": {"_count": 1}}, "about": {"_count": 2, "twenty": {"_count": 1}, "whom": {"_count": 1}}, "as": {"_count": 3, "I": {"_count": 2}, "he": {"_count": 1}}, "why": {"_count": 1, "hadnt": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 4, "wait": {"_count": 1}, "know": {"_count": 1}, "are": {"_count": 1}, "took": {"_count": 1}}, "coins": {"_count": 1, "and": {"_count": 1}}, "gold": {"_count": 3, "buried": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 1}}, "if": {"_count": 2, "thats": {"_count": 1}, "they": {"_count": 1}}, "of": {"_count": 12, "course": {"_count": 1}, "modern": {"_count": 1}, "all": {"_count": 3}, "the": {"_count": 2}, "his": {"_count": 2}, "Muggle": {"_count": 1}, "whom": {"_count": 1}, "them": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "money": {"_count": 1, "and": {"_count": 1}}, "brothers": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 3, "about": {"_count": 1}, "witch": {"_count": 1}, "what": {"_count": 1}}, "Grindelwald": {"_count": 2, "in": {"_count": 2}}, "did": {"_count": 1, "once": {"_count": 1}}, "to": {"_count": 5, "get": {"_count": 1}, "drive": {"_count": 1}, "possess": {"_count": 1}, "wizard": {"_count": 2}}, "in": {"_count": 24, "the": {"_count": 8}, "a": {"_count": 4}, "plusfours": {"_count": 2}, "front": {"_count": 1}, "Mr": {"_count": 1}, "his": {"_count": 2}, "peacockblue": {"_count": 1}, "their": {"_count": 1}, "Britain": {"_count": 1}, "navy": {"_count": 1}, "black": {"_count": 1}, "possession": {"_count": 1}}, "chess": {"_count": 6, "": {"_count": 3}, "set": {"_count": 1}, "watched": {"_count": 1}, "while": {"_count": 1}}, "crackers": {"_count": 1, "every": {"_count": 1}}, "cracker": {"_count": 1, "with": {"_count": 1}}, "law": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "just": {"_count": 1}}, "Potter": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 13, "I": {"_count": 1}, "he": {"_count": 2}, "would": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 2}, "taken": {"_count": 1}, "centaur": {"_count": 1}, "most": {"_count": 1}, "one": {"_count": 1}, "wearing": {"_count": 1}, "wand": {"_count": 1}}, "photographs": {"_count": 1, "": {"_count": 1}}, "robes": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 3, "wizard": {"_count": 1}, "watch": {"_count": 1}, "better": {"_count": 1}}, "fresh": {"_count": 1, "from": {"_count": 1}}, "school": {"_count": 1, "where": {"_count": 1}}, "like": {"_count": 5, "an": {"_count": 1}, "Black": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "Voldemort": {"_count": 1}}, "family": {"_count": 3, "Dobby": {"_count": 1}, "beat": {"_count": 1}, "to": {"_count": 1}}, "house": {"_count": 1, "before": {"_count": 1}}, "with": {"_count": 24, "wavy": {"_count": 1}, "long": {"_count": 1}, "a": {"_count": 12}, "large": {"_count": 1}, "Hagrids": {"_count": 1}, "his": {"_count": 2}, "thick": {"_count": 1}, "fluffy": {"_count": 1}, "short": {"_count": 1}, "information": {"_count": 2}, "whom": {"_count": 1}}, "buying": {"_count": 1, "a": {"_count": 1}}, "fires": {"_count": 1, "to": {"_count": 1}}, "stood": {"_count": 3, "at": {"_count": 1}, "before": {"_count": 1}, "muttering": {"_count": 1}}, "Malfoy": {"_count": 1, "he": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "doesnt": {"_count": 1, "use": {"_count": 1}}, "A": {"_count": 1, "boa": {"_count": 1}}, "could": {"_count": 3, "have": {"_count": 1}, "break": {"_count": 1}, "do": {"_count": 1}}, "coming": {"_count": 1, "through": {"_count": 1}}, "feeling": {"_count": 1, "or": {"_count": 1}}, "prison": {"_count": 6, "Goyle": {"_count": 1}, "though": {"_count": 1}, "and": {"_count": 1}, "Azkaban": {"_count": 3}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "bald": {"_count": 1, "except": {"_count": 1}}, "didnt": {"_count": 1, "look": {"_count": 1}}, "ignored": {"_count": 1, "him": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "folded": {"_count": 1, "up": {"_count": 1}}, "went": {"_count": 1, "back": {"_count": 1}}, "was": {"_count": 6, "headmaster": {"_count": 1}, "telling": {"_count": 1}, "performing": {"_count": 1}, "holding": {"_count": 1}, "eyeing": {"_count": 1}, "rattling": {"_count": 1}}, "burning": {"_count": 1, "had": {"_count": 1}}, "would": {"_count": 4, "perform": {"_count": 1}, "you": {"_count": 1}, "emerge": {"_count": 1}, "have": {"_count": 1}}, "themselves": {"_count": 1, "were": {"_count": 1}}, "one": {"_count": 1, "week": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 2}, "he": {"_count": 1}}, "tourists": {"_count": 1, "and": {"_count": 1}}, "wearing": {"_count": 4, "very": {"_count": 1}, "a": {"_count": 1}, "horn": {"_count": 1}, "magnificent": {"_count": 1}}, "got": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 4}, "either": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 6, "had": {"_count": 3}, "was": {"_count": 2}, "replied": {"_count": 1}}, "goes": {"_count": 1, "over": {"_count": 1}}, "pictures": {"_count": 1, "of": {"_count": 1}}, "even": {"_count": 1, "an": {"_count": 1}}, "squinted": {"_count": 1, "toward": {"_count": 1}}, "whod": {"_count": 1, "lost": {"_count": 1}}, "saves": {"_count": 1, "another": {"_count": 1}}, "any": {"_count": 1, "wizard": {"_count": 1}}, "the": {"_count": 5, "thing": {"_count": 1}, "point": {"_count": 1}, "most": {"_count": 1}, "sort": {"_count": 1}, "wizard": {"_count": 1}}, "said": {"_count": 5, "the": {"_count": 1}, "Frank": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Harry": {"_count": 1}, "Ollivander": {"_count": 1}}, "Harry": {"_count": 4, "wasnt": {"_count": 1}, "did": {"_count": 1}, "had": {"_count": 1}, "Potter": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "whose": {"_count": 3, "advice": {"_count": 1}, "pimples": {"_count": 1}, "surname": {"_count": 1}}, "jail": {"_count": 1, "guarded": {"_count": 1}}, "had": {"_count": 7, "already": {"_count": 1}, "just": {"_count": 2}, "bounced": {"_count": 1}, "actually": {"_count": 1}, "ever": {"_count": 1}, "collapsed": {"_count": 1}}, "stubbornly": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "spotted": {"_count": 1}}, "completely": {"_count": 1, "bald": {"_count": 1}}, "His": {"_count": 1, "name": {"_count": 1}}, "catcher": {"_count": 2, "he": {"_count": 1}, "was": {"_count": 1}}, "whos": {"_count": 3, "about": {"_count": 1}, "against": {"_count": 1}, "boasting": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "miss": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "cos": {"_count": 1}}, "clue": {"_count": 1, "Peeves": {"_count": 1}}, "catchers": {"_count": 1, "searching": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "couldnt": {"_count": 1, "fool": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "living": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "young": {"_count": 1, "foolish": {"_count": 1}}, "though": {"_count": 3, "he": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "Cup": {"_count": 1, "and": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "magic": {"_count": 1, "or": {"_count": 1}}, "standing": {"_count": 1, "farthest": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "all": {"_count": 1}}, "nodded": {"_count": 2, "Dedalus": {"_count": 1}, "the": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "dropped": {"_count": 1, "it": {"_count": 1}}, "tore": {"_count": 1, "this": {"_count": 1}}, "impaling": {"_count": 1, "the": {"_count": 1}}, "slowly": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "a": {"_count": 1}}, "nodding": {"_count": 1, "at": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "carrying": {"_count": 1, "the": {"_count": 1}}, "has": {"_count": 2, "returned": {"_count": 1}, "ever": {"_count": 1}}, "is": {"_count": 3, "at": {"_count": 1}, "desirous": {"_count": 2}}, "Eric": {"_count": 1, "Munch": {"_count": 1}}, "army": {"_count": 1, "": {"_count": 1}}, "duels": {"_count": 1, "Hes": {"_count": 1}}, "called": {"_count": 7, "Everard": {"_count": 1}, "Phineas": {"_count": 2}, "out": {"_count": 1}, "Lord": {"_count": 1}, "Horace": {"_count": 1}, "Odo": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "brandishing": {"_count": 1, "his": {"_count": 1}}, "whom": {"_count": 2, "Harry": {"_count": 2}}, "hobbled": {"_count": 1, "and": {"_count": 1}}, "lay": {"_count": 1, "in": {"_count": 1}}, "Snape": {"_count": 1, "muttered": {"_count": 1}}, "sympathetically": {"_count": 1, "patting": {"_count": 1}}, "gently": {"_count": 1, "": {"_count": 1}}, "invasions": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 2}}, "alive": {"_count": 1, "": {"_count": 1}}, "boys": {"_count": 1, "both": {"_count": 1}}, "worth": {"_count": 1, "being": {"_count": 1}}, "styling": {"_count": 1, "himself": {"_count": 1}}, "oh": {"_count": 1, "yes": {"_count": 1}}, "clapped": {"_count": 1, "a": {"_count": 1}}, "conversationally": {"_count": 1, "": {"_count": 1}}, "keeps": {"_count": 1, "his": {"_count": 1}}, "outstanding": {"_count": 1, "and": {"_count": 1}}, "lying": {"_count": 1, "huddled": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "doubt": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "witnesses": {"_count": 1, "alike": {"_count": 1}}, "parents": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "all": {"_count": 1}}, "such": {"_count": 2, "as": {"_count": 2}}, "intent": {"_count": 1, "upon": {"_count": 1}}, "so": {"_count": 1, "determined": {"_count": 1}}, "work": {"_count": 1, "things": {"_count": 1}}, "although": {"_count": 1, "it": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "farewell": {"_count": 1, "he": {"_count": 1}}, "waved": {"_count": 1, "his": {"_count": 1}}, "Dumbledore": {"_count": 1, "defeated": {"_count": 1}}, "sitting": {"_count": 2, "alone": {"_count": 1}, "on": {"_count": 1}}, "wars": {"_count": 1, "mean": {"_count": 1}}, "appeared": {"_count": 1, "before": {"_count": 1}}, "headed": {"_count": 1, "for": {"_count": 1}}, "took": {"_count": 1, "one": {"_count": 1}}, "started": {"_count": 1, "vomiting": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "hurried": {"_count": 1, "away": {"_count": 1}}, "from": {"_count": 2, "Magical": {"_count": 1}, "the": {"_count": 1}}, "leaned": {"_count": 1, "toward": {"_count": 1}}, "beside": {"_count": 1, "her": {"_count": 1}}, "backing": {"_count": 1, "away": {"_count": 1}}, "gaped": {"_count": 1, "his": {"_count": 1}}, "lifted": {"_count": 1, "his": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "Godric": {"_count": 1, "Gryffindor": {"_count": 1}}, "ever": {"_count": 1, "to": {"_count": 1}}, "crept": {"_count": 1, "upon": {"_count": 1}}, "named": {"_count": 1, "Selwyn": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "without": {"_count": 1, "further": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}, "guards": {"_count": 1, "running": {"_count": 1}}, "kid": {"_count": 1, "to": {"_count": 1}}, "can": {"_count": 1, "at": {"_count": 1}}}, "whistling": {"_count": 16, "wind": {"_count": 1, "could": {"_count": 1}}, "and": {"_count": 2, "cheering": {"_count": 1}, "shouting": {"_count": 1}}, "along": {"_count": 1, "behind": {"_count": 1}}, "in": {"_count": 3, "Harrys": {"_count": 1}, "his": {"_count": 2}}, "loudly": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "filling": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "sank": {"_count": 102, "even": {"_count": 2, "lower": {"_count": 2}}, "faster": {"_count": 1, "than": {"_count": 1}}, "to": {"_count": 7, "the": {"_count": 2}, "his": {"_count": 5}}, "down": {"_count": 5, "to": {"_count": 1}, "next": {"_count": 1}, "on": {"_count": 1}, "into": {"_count": 1}, "onto": {"_count": 1}}, "its": {"_count": 1, "razorsharp": {"_count": 1}}, "so": {"_count": 2, "low": {"_count": 1}, "deeply": {"_count": 1}}, "into": {"_count": 23, "a": {"_count": 9}, "chairs": {"_count": 1}, "what": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 8}, "it": {"_count": 1}, "his": {"_count": 1}, "inches": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "without": {"_count": 1, "trace": {"_count": 1}}, "back": {"_count": 10, "looking": {"_count": 1}, "beneath": {"_count": 1}, "into": {"_count": 6}, "onto": {"_count": 1}, "across": {"_count": 1}}, "right": {"_count": 3, "out": {"_count": 1}, "through": {"_count": 1}, "back": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 4, "teeth": {"_count": 1}, "head": {"_count": 1}, "claws": {"_count": 1}, "knobbly": {"_count": 1}}, "deeply": {"_count": 1, "into": {"_count": 1}}, "onto": {"_count": 9, "poufs": {"_count": 1}, "Harrys": {"_count": 1}, "it": {"_count": 2}, "the": {"_count": 5}}, "four": {"_count": 1, "sets": {"_count": 1}}, "yelling": {"_count": 1, "hoarsely": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "slowly": {"_count": 2, "back": {"_count": 2}}, "slightly": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "as": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "coughing": {"_count": 1, "into": {"_count": 1}}, "shaking": {"_count": 1, "onto": {"_count": 1}}, "how": {"_count": 1, "big": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "backward": {"_count": 1, "through": {"_count": 1}}, "weakkneed": {"_count": 1, "into": {"_count": 1}}, "still": {"_count": 1, "lower": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "inches": {"_count": 1, "into": {"_count": 1}}, "ever": {"_count": 1, "lower": {"_count": 1}}, "one": {"_count": 1, "after": {"_count": 1}}}, "lower": {"_count": 67, "an": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 10, "circled": {"_count": 1}, "lower": {"_count": 6}, "Harry": {"_count": 1}, "more": {"_count": 1}, "gentler": {"_count": 1}}, "brushing": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 2, "voices": {"_count": 1}, "spears": {"_count": 1}}, "went": {"_count": 1, "the": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "making": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "his": {"_count": 3, "trunk": {"_count": 1}, "wand": {"_count": 2}}, "branches": {"_count": 3, "Harry": {"_count": 1}, "they": {"_count": 1}, "of": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "narrowly": {"_count": 1, "avoiding": {"_count": 1}}, "its": {"_count": 1, "head": {"_count": 1}}, "them": {"_count": 1, "into": {"_count": 1}}, "coming": {"_count": 1, "in": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "Advanced": {"_count": 1}}, "they": {"_count": 2, "flew": {"_count": 2}}, "lip": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "Mrs": {"_count": 1}}, "than": {"_count": 2, "a": {"_count": 1}, "usual": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "liquid": {"_count": 1}}, "voice": {"_count": 2, "hes": {"_count": 1}, "the": {"_count": 1}}, "bulbs": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "grilles": {"_count": 1}, "dragon": {"_count": 1}}, "belly": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "face": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "hear": {"_count": 1}}, "after": {"_count": 1, "enduring": {"_count": 1}}, "seats": {"_count": 1, "than": {"_count": 1}}, "rocks": {"_count": 1, "were": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "your": {"_count": 1, "defenses": {"_count": 1}}, "berth": {"_count": 1, "of": {"_count": 1}}, "bunk": {"_count": 3, "Harry": {"_count": 1}, "and": {"_count": 1}, "looking": {"_count": 1}}, "slower": {"_count": 1, "voice": {"_count": 1}}, "bunks": {"_count": 1, "beneath": {"_count": 1}}, "Griphook": {"_count": 1, "gently": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "thumpin": {"_count": 1, "goodun": {"_count": 1, "Id": {"_count": 1}}}, "goodun": {"_count": 1, "Id": {"_count": 1, "say": {"_count": 1}}}, "trained": {"_count": 17, "up": {"_count": 1, "a": {"_count": 1}}, "wizard": {"_count": 1, "in": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "Hit": {"_count": 1, "Wizards": {"_count": 1}}, "mediwizards": {"_count": 1, "hurry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 3, "combat": {"_count": 1}, "Defense": {"_count": 2}}, "not": {"_count": 1, "to": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "himself": {"_count": 1, "not": {"_count": 1}}, "Auror": {"_count": 1, "who": {"_count": 1}}, "wizards": {"_count": 1, "whose": {"_count": 1}}, "It": {"_count": 1, "wasnt": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "mum": {"_count": 66, "an": {"_count": 6, "dad": {"_count": 6}}, "": {"_count": 9, "!": {"_count": 3}, ".": {"_count": 6}}, "hear": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 24, "dad": {"_count": 21}, "dads": {"_count": 2}, "Im": {"_count": 1}}, "screaming": {"_count": 3, "if": {"_count": 1}, "and": {"_count": 1}, "like": {"_count": 1}}, "does": {"_count": 1, "whenever": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "dinner": {"_count": 1}}, "knits": {"_count": 1, "me": {"_count": 1}}, "was": {"_count": 2, "a": {"_count": 1}, "okay": {"_count": 1}}, "calls": {"_count": 2, "them": {"_count": 1}, "you": {"_count": 1}}, "wouldn": {"_count": 1, "be": {"_count": 1}}, "doesnt": {"_count": 1, "read": {"_count": 1}}, "where": {"_count": 1, "you": {"_count": 1}}, "yeah": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 1, "Mrs": {"_count": 1}}, "works": {"_count": 2, "for": {"_count": 2}}, "said": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "forgot": {"_count": 1, "that": {"_count": 1}}, "mentions": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "always": {"_count": 1, "told": {"_count": 1}}, "told": {"_count": 1, "Sirius": {"_count": 1}}}, "yours": {"_count": 64, "what": {"_count": 1, "else": {"_count": 1}}, "Thief": {"_count": 2, "you": {"_count": 2}}, "smiled": {"_count": 1, "Hagrid": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 11}, "?": {"_count": 9}, "!": {"_count": 3}}, "Ron": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "observed": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "will": {"_count": 1, "lead": {"_count": 1}}, "whats": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "me": {"_count": 1}, "detect": {"_count": 1}, "command": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "secondhand": {"_count": 1, "and": {"_count": 1}}, "wail": {"_count": 1, "when": {"_count": 1}}, "dear": {"_count": 1, "I": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "looks": {"_count": 1, "but": {"_count": 1}}, "on": {"_count": 1, "instead": {"_count": 1}}, "truly": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "okay": {"_count": 1}}, "that": {"_count": 2, "matters": {"_count": 2}}, "Neville": {"_count": 1, "dear": {"_count": 1}}, "nor": {"_count": 1, "are": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}, "most": {"_count": 1, "sincerely": {"_count": 1}}, "now": {"_count": 1, "so": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "Lucius": {"_count": 1, "and": {"_count": 1}}, "must": {"_count": 1, "you": {"_count": 1}}, "Ronald": {"_count": 1, "or": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "daresay": {"_count": 1}}, "for": {"_count": 1, "now": {"_count": 1}}, "And": {"_count": 1, "Voldemorts": {"_count": 1}}, "broke": {"_count": 1, "mine": {"_count": 1}}, "and": {"_count": 1, "thinking": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "forever": {"_count": 1, "until": {"_count": 1}}}, "reckon": {"_count": 161, "its": {"_count": 8, "abou": {"_count": 1}, "time": {"_count": 1}, "better": {"_count": 1}, "going": {"_count": 1}, "true": {"_count": 1}, "over": {"_count": 1}, "too": {"_count": 1}, "looking": {"_count": 1}}, "they": {"_count": 3, "couldve": {"_count": 1}, "are": {"_count": 1}, "can": {"_count": 1}}, "hes": {"_count": 10, "still": {"_count": 1}, "lost": {"_count": 1}, "up": {"_count": 1}, "somewhere": {"_count": 1}, "planning": {"_count": 1}, "telling": {"_count": 1}, "trying": {"_count": 1}, "been": {"_count": 1}, "quite": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "he": {"_count": 14, "had": {"_count": 1}, "must": {"_count": 1}, "is": {"_count": 1}, "might": {"_count": 3}, "can": {"_count": 1}, "was": {"_count": 2}, "couldve": {"_count": 2}, "sent": {"_count": 1}, "did": {"_count": 1}, "told": {"_count": 1}}, "old": {"_count": 1, "Dobby": {"_count": 1}}, "she": {"_count": 4, "was": {"_count": 2}, "knows": {"_count": 1}, "feels": {"_count": 1}}, "Slytherins": {"_count": 1, "monster": {"_count": 1}}, "": {"_count": 19, "?": {"_count": 13}, ".": {"_count": 6}}, "theyve": {"_count": 3, "ever": {"_count": 1}, "nearly": {"_count": 1}, "done": {"_count": 1}}, "I": {"_count": 4, "started": {"_count": 1}, "just": {"_count": 1}, "want": {"_count": 1}, "found": {"_count": 1}}, "Sirius": {"_count": 2, "Blacks": {"_count": 1}, "has": {"_count": 1}}, "Harry": {"_count": 2, "hesitated": {"_count": 1}, "": {"_count": 1}}, "hed": {"_count": 5, "do": {"_count": 1}, "come": {"_count": 1}, "be": {"_count": 2}, "tell": {"_count": 1}}, "Ron": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "Filch": {"_count": 2, "ever": {"_count": 1}, "already": {"_count": 1}}, "anyones": {"_count": 2, "ever": {"_count": 1}, "going": {"_count": 1}}, "s": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 2, "said": {"_count": 1}, "Arthur": {"_count": 1}}, "we": {"_count": 10, "should": {"_count": 7}, "can": {"_count": 2}, "had": {"_count": 1}}, "hell": {"_count": 4, "stand": {"_count": 1}, "know": {"_count": 1}, "risk": {"_count": 1}, "be": {"_count": 1}}, "youre": {"_count": 2, "cracking": {"_count": 1}, "going": {"_count": 1}}, "my": {"_count": 1, "dad": {"_count": 1}}, "Ireland": {"_count": 1, "will": {"_count": 1}}, "a": {"_count": 2, "couple": {"_count": 1}, "bit": {"_count": 1}}, "theyre": {"_count": 4, "the": {"_count": 1}, "coming": {"_count": 1}, "going": {"_count": 1}, "trying": {"_count": 1}}, "Snapes": {"_count": 1, "a": {"_count": 1}}, "Durmstrangs": {"_count": 1, "horses": {"_count": 1}}, "you": {"_count": 5, "could": {"_count": 1}, "should": {"_count": 2}, "already": {"_count": 1}, "were": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 2}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "Moodys": {"_count": 1, "here": {"_count": 1}}, "it": {"_count": 4, "can": {"_count": 1}, "is": {"_count": 1}, "couldve": {"_count": 1}, "was": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "Crouch": {"_count": 1, "is": {"_count": 1}}, "Hagrid": {"_count": 1, "is": {"_count": 1}}, "shes": {"_count": 1, "right": {"_count": 1}}, "that": {"_count": 2, "means": {"_count": 1}, "arch": {"_count": 1}}, "are": {"_count": 1, "the": {"_count": 1}}, "itd": {"_count": 2, "take": {"_count": 1}, "be": {"_count": 1}}, "youll": {"_count": 2, "be": {"_count": 2}}, "abou": {"_count": 1, "seventy": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "Im": {"_count": 1, "probably": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "theyd": {"_count": 1, "ve": {"_count": 1}}, "thas": {"_count": 1, "enough": {"_count": 1}}, "the": {"_count": 3, "match": {"_count": 1}, "staff": {"_count": 1}, "ring": {"_count": 1}}, "YouKnowWho": {"_count": 1, "would": {"_count": 1}}, "theyll": {"_count": 3, "find": {"_count": 1}, "stay": {"_count": 1}, "do": {"_count": 1}}, "Katie": {"_count": 1, "was": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 2}}, "Ill": {"_count": 2, "need": {"_count": 1}, "be": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "Kreachers": {"_count": 1, "right": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "after": {"_count": 1}}, "Kingsley": {"_count": 1, "could": {"_count": 1}}, "itll": {"_count": 1, "still": {"_count": 1}}}, "Floor": {"_count": 7, "HutontheRock": {"_count": 1, "The": {"_count": 1}}, "Cauldron": {"_count": 1, "explosion": {"_count": 1}}, "Bites": {"_count": 1, "stings": {"_count": 1}}, "Contagious": {"_count": 1, "maladies": {"_count": 1}}, "Rashes": {"_count": 1, "regurgitation": {"_count": 1}}, "Unliftable": {"_count": 1, "jinxes": {"_count": 1}}, "If": {"_count": 1, "you": {"_count": 1}}}, "HutontheRock": {"_count": 1, "The": {"_count": 1, "Sea": {"_count": 1}}}, "Sea": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "HOGWARTS": {"_count": 13, "SCHOOL": {"_count": 3, "oWITCHCRAFT": {"_count": 2}, "OF": {"_count": 1}}, "Considered": {"_count": 1, "by": {"_count": 1}}, "EXPRESS": {"_count": 1, "There": {"_count": 1}}, "HIGH": {"_count": 2, "INQUISITOR": {"_count": 2}}, "All": {"_count": 1, "Student": {"_count": 1}}, "Teachers": {"_count": 1, "are": {"_count": 1}}, "Any": {"_count": 1, "student": {"_count": 1}}, "GOBSTONES": {"_count": 1, "TEAM": {"_count": 1}}, "HEADMASTER": {"_count": 1, "No": {"_count": 1}}, "The": {"_count": 1, "enchanted": {"_count": 1}}}, "SCHOOL": {"_count": 6, "oWITCHCRAFT": {"_count": 2, "and": {"_count": 2}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "YOURE": {"_count": 1, "TALKING": {"_count": 1}}, "YOU": {"_count": 1, "WONT": {"_count": 1}}, "OF": {"_count": 1, "WITCHCRAFT": {"_count": 1}}}, "oWITCHCRAFT": {"_count": 2, "and": {"_count": 2, "WIZARDRY": {"_count": 2}}}, "WIZARDRY": {"_count": 3, "Headmaster": {"_count": 1, "ALBUS": {"_count": 1}}, "UNIFORM": {"_count": 1, "Firstyear": {"_count": 1}}, "I74II768": {"_count": 1, "Dilys": {"_count": 1}}}, "Headmaster": {"_count": 26, "ALBUS": {"_count": 1, "DUMBLEDORE": {"_count": 1}}, "just": {"_count": 2, "upstairs": {"_count": 1}, "before": {"_count": 1}}, "said": {"_count": 4, "Snape": {"_count": 2}, "Professor": {"_count": 1}, "Madam": {"_count": 1}}, "that": {"_count": 1, "Potter": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 3}, "?": {"_count": 2}, "!": {"_count": 3}}, "and": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "must": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "of": {"_count": 4, "Hogwarts": {"_count": 4}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "ALBUS": {"_count": 8, "DUMBLEDORE": {"_count": 8, "Order": {"_count": 1}, "IN": {"_count": 1}, "CURRENTLY": {"_count": 1}, "REMEMBERED": {"_count": 1}, "He": {"_count": 1}, "Ron": {"_count": 1}, "by": {"_count": 1}, "The": {"_count": 1}}}, "DUMBLEDORE": {"_count": 13, "Order": {"_count": 1, "of": {"_count": 1}}, "IN": {"_count": 1, "FRONT": {"_count": 1}}, "CURRENTLY": {"_count": 1, "HEADMASTER": {"_count": 1}}, "LAST": {"_count": 1, "NIGHT": {"_count": 1}}, "KNOWS": {"_count": 1, "IT": {"_count": 1}}, "MADE": {"_count": 1, "YOU": {"_count": 1}}, "REMEMBERED": {"_count": 1, "by": {"_count": 1}}, "THE": {"_count": 1, "TRUTH": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "Rita": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "The": {"_count": 1, "sun": {"_count": 1}}}, "Order": {"_count": 159, "of": {"_count": 70, "Merlin": {"_count": 12}, "Suspension": {"_count": 1}, "the": {"_count": 56}, "Dismissal": {"_count": 1}}, "": {"_count": 13, "!": {"_count": 3}, ".": {"_count": 7}, "?": {"_count": 3}}, "dont": {"_count": 1, "let": {"_count": 1}}, "are": {"_count": 1, "following": {"_count": 1}}, "said": {"_count": 9, "Hermione": {"_count": 2}, "Fred": {"_count": 2}, "Sirius": {"_count": 3}, "Mrs": {"_count": 1}, "Snape": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "so": {"_count": 1, "And": {"_count": 1}}, "been": {"_count": 1, "doing": {"_count": 1}}, "straightaway": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 5, "comprised": {"_count": 1}, "better": {"_count": 1}, "eschewing": {"_count": 1}, "sure": {"_count": 1}, "under": {"_count": 1}}, "you": {"_count": 3, "know": {"_count": 1}, "dont": {"_count": 1}, "still": {"_count": 1}}, "helped": {"_count": 1, "them": {"_count": 1}}, "itll": {"_count": 1, "bbbe": {"_count": 1}}, "then": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 7, "everything": {"_count": 1}, "anyway": {"_count": 1}, "the": {"_count": 2}, "where": {"_count": 1}, "Ministry": {"_count": 1}, "as": {"_count": 1}}, "all": {"_count": 2, "weekend": {"_count": 1}, "those": {"_count": 1}}, "thwarted": {"_count": 1, "him": {"_count": 1}}, "member": {"_count": 2, "had": {"_count": 2}}, "that": {"_count": 2, "ought": {"_count": 1}, "you": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "his": {"_count": 1}}, "know": {"_count": 1, "what": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "members": {"_count": 7, "at": {"_count": 1}, "had": {"_count": 1}, "might": {"_count": 1}, "who": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "have": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "told": {"_count": 1}}, "as": {"_count": 1, "soon": {"_count": 1}}, "before": {"_count": 1, "long": {"_count": 1}}, "to": {"_count": 2, "teach": {"_count": 1}, "your": {"_count": 1}}, "control": {"_count": 1, "Mundungus": {"_count": 1}}, "Service": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "recently": {"_count": 1, "": {"_count": 1}}, "writes": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 1, "steps": {"_count": 1}}, "believes": {"_count": 1, "that": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "people": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "house": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "was": {"_count": 1, "there": {"_count": 1}}, "left": {"_count": 1, "Ron": {"_count": 1}}, "had": {"_count": 1, "left": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "under": {"_count": 1}}, "Bill": {"_count": 1, "you": {"_count": 1}}}, "Merlin": {"_count": 15, "First": {"_count": 7, "Class": {"_count": 7}}, "": {"_count": 1, ".": {"_count": 1}}, "Third": {"_count": 2, "Class": {"_count": 2}}, "Second": {"_count": 1, "Class": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "most": {"_count": 1, "welldeserved": {"_count": 1}}}, "First": {"_count": 43, "Class": {"_count": 8, "Grand": {"_count": 1}, "which": {"_count": 1}, "and": {"_count": 1}, "if": {"_count": 1}, "too": {"_count": 1}, "that": {"_count": 1}, "etc": {"_count": 1}, "the": {"_count": 1}}, "o": {"_count": 1, "September": {"_count": 1}}, "time": {"_count": 2, "at": {"_count": 1}, "theyve": {"_count": 1}}, "years": {"_count": 6, "should": {"_count": 1}, "traditionally": {"_count": 1}, "in": {"_count": 1}, "line": {"_count": 1}, "ought": {"_count": 1}, "": {"_count": 1}}, "however": {"_count": 1, "slyly": {"_count": 1}}, "to": {"_count": 2, "Mr": {"_count": 1}, "stir": {"_count": 1}}, "meeting": {"_count": 1, "tonight": {"_count": 1}}, "of": {"_count": 4, "all": {"_count": 3}, "course": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "things": {"_count": 1, "first": {"_count": 1}}, "Hogsmeade": {"_count": 1, "weekend": {"_count": 1}}, "the": {"_count": 1, "Firebolt": {"_count": 1}}, "he": {"_count": 1, "dreamed": {"_count": 1}}, "you": {"_count": 2, "hit": {"_count": 1}, "sneak": {"_count": 1}}, "pus": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 1, "then": {"_count": 1}}, "Harry": {"_count": 1, "then": {"_count": 1}}, "think": {"_count": 1, "of": {"_count": 1}}, "night": {"_count": 1, "I": {"_count": 1}}, "sign": {"_count": 1, "of": {"_count": 1}}, "came": {"_count": 1, "Neville": {"_count": 1}}, "Fred": {"_count": 1, "would": {"_count": 1}}, "Floor": {"_count": 1, "Bites": {"_count": 1}}, "Krum": {"_count": 1, "then": {"_count": 1}}, "person": {"_count": 1, "I": {"_count": 1}}}, "Class": {"_count": 14, "Grand": {"_count": 1, "Sore": {"_count": 1}}, "Honorary": {"_count": 2, "Member": {"_count": 2}}, "dismissed": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 1, "Pettigrews": {"_count": 1}}, "Id": {"_count": 1, "say": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "C": {"_count": 1, "NonTradeable": {"_count": 1}}, "etc": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "goblets": {"_count": 1}}, "B": {"_count": 1, "Tradeable": {"_count": 1}}}, "Grand": {"_count": 4, "Sore": {"_count": 1, "": {"_count": 1}}, "Prize": {"_count": 1, "Galleon": {"_count": 1}}, "Tour": {"_count": 1, "with": {"_count": 1}}, "plans": {"_count": 1, "for": {"_count": 1}}}, "Sore": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Chf": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Warlock": {"_count": 8, "Supreme": {"_count": 1, "Mugwump": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "Convention": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 4}}}, "Supreme": {"_count": 3, "Mugwump": {"_count": 3, "International": {"_count": 1}, "of": {"_count": 2}}}, "Mugwump": {"_count": 3, "International": {"_count": 1, "Confed": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}}, "International": {"_count": 42, "Confed": {"_count": 1, "": {"_count": 1}}, "Confederation": {"_count": 14, "of": {"_count": 14}}, "Warlock": {"_count": 1, "Convention": {"_count": 1}}, "Federation": {"_count": 1, "of": {"_count": 1}}, "Sides": {"_count": 1, "just": {"_count": 1}}, "Magical": {"_count": 11, "Cooperation": {"_count": 9}, "Trading": {"_count": 1}, "Office": {"_count": 1}}, "Association": {"_count": 1, "of": {"_count": 1}}, "Ban": {"_count": 1, "on": {"_count": 1}}, "Code": {"_count": 1, "of": {"_count": 1}}, "Quidditch": {"_count": 1, "player": {"_count": 1}}, "Statute": {"_count": 7, "of": {"_count": 7}}, "Keeper": {"_count": 1, "against": {"_count": 1}}, "Alchemical": {"_count": 1, "Conference": {"_count": 1}}}, "Confed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wizards": {"_count": 33, "Dear": {"_count": 1, "Mr": {"_count": 1}}, "bank": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "banks": {"_count": 1}}, "cards": {"_count": 1, "but": {"_count": 1}}, "duel": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "All": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 2, "are": {"_count": 1}, "have": {"_count": 1}}, "If": {"_count": 1, "anyones": {"_count": 1}}, "Conference": {"_count": 1, "": {"_count": 1}}, "Statute": {"_count": 2, "of": {"_count": 2}}, "because": {"_count": 2, "hes": {"_count": 2}}, "British": {"_count": 1, "Seats": {"_count": 1}}, "had": {"_count": 1, "thrown": {"_count": 1}}, "much": {"_count": 1, "older": {"_count": 1}}, "and": {"_count": 3, "Chief": {"_count": 1}, "explain": {"_count": 1}, "reinstated": {"_count": 1}}, "killed": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "Pierre": {"_count": 1}}, "can": {"_count": 1, "leave": {"_count": 1}}, "she": {"_count": 1, "says": {"_count": 1}}, "reproduce": {"_count": 1, "": {"_count": 1}}, "first": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "refuse": {"_count": 1, "to": {"_count": 1}}}, "Dear": {"_count": 45, "Mr": {"_count": 7, "Potter": {"_count": 5}, "Hagrid": {"_count": 1}, "and": {"_count": 1}}, "Professor": {"_count": 2, "Dumbledore": {"_count": 2}}, "Harry": {"_count": 10, "I": {"_count": 3}, "Happy": {"_count": 2}, "Ron": {"_count": 2}, "and": {"_count": 1}, "Congratulations": {"_count": 1}, "If": {"_count": 1}}, "Ron": {"_count": 2, "How": {"_count": 1}, "I": {"_count": 1}}, "me": {"_count": 4, "whats": {"_count": 1}, "said": {"_count": 1}, "we": {"_count": 1}, "": {"_count": 1}}, "dear": {"_count": 7, "": {"_count": 1}, "said": {"_count": 2}, "you": {"_count": 1}, "this": {"_count": 1}, "Im": {"_count": 1}, "I": {"_count": 1}}, "Tom": {"_count": 3, "he": {"_count": 1}, "I": {"_count": 1}, "Percy": {"_count": 1}}, "Hermione": {"_count": 1, "We": {"_count": 1}}, "Sirius": {"_count": 4, "then": {"_count": 1}, "Thanks": {"_count": 1}, "I": {"_count": 1}, "You": {"_count": 1}}, "old": {"_count": 1, "Hogwarts": {"_count": 1}}, "Snuffles": {"_count": 1, "Hope": {"_count": 1}}, "why": {"_count": 1, "not": {"_count": 1}}, "lady": {"_count": 1, "": {"_count": 1}}, "Padfoot": {"_count": 1, "Thank": {"_count": 1}}}, "pleased": {"_count": 149, "to": {"_count": 52, "inform": {"_count": 1}, "know": {"_count": 3}, "see": {"_count": 23}, "hear": {"_count": 5}, "meet": {"_count": 2}, "have": {"_count": 2}, "report": {"_count": 1}, "go": {"_count": 1}, "welcome": {"_count": 3}, "get": {"_count": 1}, "let": {"_count": 1}, "feel": {"_count": 1}, "help": {"_count": 1}, "find": {"_count": 1}, "say": {"_count": 1}, "ear": {"_count": 1}, "be": {"_count": 2}, "tell": {"_count": 1}, "discover": {"_count": 1}}, "and": {"_count": 4, "proud": {"_count": 1}, "relieved": {"_count": 1}, "a": {"_count": 2}}, "": {"_count": 22, ".": {"_count": 21}, "!": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "with": {"_count": 27, "himself": {"_count": 12}, "the": {"_count": 4}, "yourselves": {"_count": 1}, "herself": {"_count": 2}, "itself": {"_count": 1}, "themselves": {"_count": 3}, "you": {"_count": 1}, "your": {"_count": 1}, "them": {"_count": 1}, "everything": {"_count": 1}}, "him": {"_count": 1, "more": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Gran": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 2, "bought": {"_count": 1}, "said": {"_count": 1}}, "when": {"_count": 4, "Hermione": {"_count": 1}, "she": {"_count": 2}, "I": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 3, "Fred": {"_count": 1}, "Luna": {"_count": 1}, "Harry": {"_count": 1}}, "you": {"_count": 1, "could": {"_count": 1}}, "about": {"_count": 5, "until": {"_count": 1}, "all": {"_count": 1}, "something": {"_count": 2}, "": {"_count": 1}}, "as": {"_count": 3, "long": {"_count": 1}, "though": {"_count": 1}, "Hermione": {"_count": 1}}, "that": {"_count": 7, "youre": {"_count": 1}, "he": {"_count": 1}, "Uncle": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}, "hes": {"_count": 1}, "Ginny": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 3, "his": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "just": {"_count": 1, "with": {"_count": 1}}, "expression": {"_count": 1, "spread": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "ter": {"_count": 1, "see": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}}, "inform": {"_count": 14, "you": {"_count": 5, "that": {"_count": 5}}, "Professor": {"_count": 1, "Binns": {"_count": 1}}, "their": {"_count": 1, "students": {"_count": 1}}, "them": {"_count": 1, "when": {"_count": 1}}, "zis": {"_count": 1, "Agrid": {"_count": 1}}, "the": {"_count": 2, "authorities": {"_count": 1}, "Prime": {"_count": 1}}, "our": {"_count": 2, "listeners": {"_count": 2}}, "me": {"_count": 1, "that": {"_count": 1}}}, "School": {"_count": 36, "of": {"_count": 18, "Witchcraft": {"_count": 18}}, "Houses": {"_count": 1, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "and": {"_count": 1, "let": {"_count": 1}}, "govnors": {"_count": 1, "have": {"_count": 1}}, "began": {"_count": 1, "": {"_count": 1}}, "champion": {"_count": 3, "": {"_count": 3}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Voldemort": {"_count": 1}}, "Frowning": {"_count": 1, "he": {"_count": 1}}, "rules": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 1, "narrowly": {"_count": 1}}}, "Witchcraft": {"_count": 18, "and": {"_count": 18, "Wizardry": {"_count": 18}}}, "Wizardry": {"_count": 23, "": {"_count": 11, ".": {"_count": 9}, "!": {"_count": 2}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "autumn": {"_count": 1}}, "caused": {"_count": 1, "serious": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "and": {"_count": 1, "had": {"_count": 1}}, "has": {"_count": 1, "never": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "reinstated": {"_count": 1, "member": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "today": {"_count": 1}}}, "Please": {"_count": 86, "find": {"_count": 1, "enclosed": {"_count": 1}}, "note": {"_count": 2, "that": {"_count": 2}}, "leave": {"_count": 2, "your": {"_count": 1}, "The": {"_count": 1}}, "wait": {"_count": 1, "quietly": {"_count": 1}}, "Professor": {"_count": 4, "McGonagall": {"_count": 1}, "weve": {"_count": 1}, "I": {"_count": 1}, "said": {"_count": 1}}, "cheer": {"_count": 1, "up": {"_count": 1}}, "Harry": {"_count": 2, "whispered": {"_count": 1}, "get": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 8}, "?": {"_count": 3}, "!": {"_count": 2}}, "explain": {"_count": 1, "why": {"_count": 1}}, "sir": {"_count": 7, "dont": {"_count": 1}, "said": {"_count": 2}, "weve": {"_count": 1}, "Im": {"_count": 1}, "hes": {"_count": 1}, "": {"_count": 1}}, "Hermione": {"_count": 2, "tell": {"_count": 1}, "try": {"_count": 1}}, "help": {"_count": 2, "me": {"_count": 2}}, "give": {"_count": 1, "the": {"_count": 1}}, "watch": {"_count": 1, "closely": {"_count": 1}}, "Ill": {"_count": 2, "do": {"_count": 2}}, "lets": {"_count": 2, "hurry": {"_count": 1}, "just": {"_count": 1}}, "consider": {"_count": 1, "it": {"_count": 1}}, "be": {"_count": 2, "very": {"_count": 1}, "careful": {"_count": 1}}, "dont": {"_count": 2, "bother": {"_count": 1}, "leave": {"_count": 1}}, "continue": {"_count": 2, "": {"_count": 1}, "teaching": {"_count": 1}}, "do": {"_count": 3, "not": {"_count": 3}}, "state": {"_count": 2, "your": {"_count": 2}}, "write": {"_count": 1, "back": {"_count": 1}}, "think": {"_count": 1, "over": {"_count": 1}}, "please": {"_count": 2, "dont": {"_count": 1}, "please": {"_count": 1}}, "turn": {"_count": 1, "to": {"_count": 1}}, "Hagrid": {"_count": 1, "teach": {"_count": 1}}, "sit": {"_count": 4, "down": {"_count": 4}}, "er": {"_count": 1, "sir": {"_count": 1}}, "remain": {"_count": 1, "seated": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 2, "didnt": {"_count": 1}, "need": {"_count": 1}}, "come": {"_count": 1, "in": {"_count": 1}}, "sign": {"_count": 1, "below": {"_count": 1}}, "close": {"_count": 1, "the": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}, "follow": {"_count": 1, "your": {"_count": 1}}, "could": {"_count": 1, "we": {"_count": 1}}, "take": {"_count": 1, "it": {"_count": 1}}, "just": {"_count": 1, "get": {"_count": 1}}, "Ron": {"_count": 2, "Harry": {"_count": 1}, "we": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "get": {"_count": 1, "some": {"_count": 1}}}, "enclosed": {"_count": 15, "a": {"_count": 1, "list": {"_count": 1}}, "permission": {"_count": 1, "form": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "spaces": {"_count": 1, "said": {"_count": 1}}, "notes": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 2}, "his": {"_count": 1}}, "Tom": {"_count": 1, "Riddles": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "and": {"_count": 1}}, "undercover": {"_count": 1, "and": {"_count": 1}}, "space": {"_count": 1, "was": {"_count": 1}}}, "list": {"_count": 69, "of": {"_count": 24, "all": {"_count": 2}, "students": {"_count": 2}, "subjects": {"_count": 1}, "the": {"_count": 2}, "ingredients": {"_count": 2}, "questions": {"_count": 1}, "old": {"_count": 1}, "books": {"_count": 2}, "objects": {"_count": 1}, "calculations": {"_count": 1}, "first": {"_count": 1}, "names": {"_count": 2}, "equipment": {"_count": 1}, "antidotes": {"_count": 1}, "jobs": {"_count": 1}, "Muggle": {"_count": 1}, "stuff": {"_count": 1}, "Most": {"_count": 1}}, "there": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "yet": {"_count": 2, "again": {"_count": 1}, "Scabior": {"_count": 1}}, "peered": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 10}, "!": {"_count": 2}}, "and": {"_count": 3, "scurrying": {"_count": 1}, "crossing": {"_count": 1}, "found": {"_count": 1}}, "said": {"_count": 2, "Mr": {"_count": 1}, "the": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 2}}, "then": {"_count": 1, "picking": {"_count": 1}}, "peering": {"_count": 1, "suspiciously": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "out": {"_count": 1, "Ill": {"_count": 1}}, "tacked": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "youre": {"_count": 1}}, "comprises": {"_count": 1, "some": {"_count": 1}}, "while": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 1, "fastened": {"_count": 1}}, "was": {"_count": 1, "found": {"_count": 1}}, "lying": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "front": {"_count": 1}}, "I": {"_count": 2, "knew": {"_count": 1}, "think": {"_count": 1}}, "Hermione": {"_count": 1, "its": {"_count": 1}}, "Scabior": {"_count": 1, "said": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}}, "necessary": {"_count": 27, "books": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Wood": {"_count": 1, "": {"_count": 1}}, "given": {"_count": 1, "that": {"_count": 1}}, "arrangements": {"_count": 1, "for": {"_count": 1}}, "measures": {"_count": 1, "we": {"_count": 1}}, "qualities": {"_count": 1, "": {"_count": 1}}, "changes": {"_count": 1, "within": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "duty": {"_count": 1, "to": {"_count": 1}}, "Bellatrix": {"_count": 1, "Rodolphus": {"_count": 1}}, "to": {"_count": 5, "start": {"_count": 1}, "argue": {"_count": 1}, "go": {"_count": 1}, "kill": {"_count": 2}}, "O": {"_count": 1, "": {"_count": 1}}, "work": {"_count": 1, "and": {"_count": 1}}, "here": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 2, "us": {"_count": 1}, "somebody": {"_count": 1}}, "What": {"_count": 1, "about": {"_count": 1}}, "precaution": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "no": {"_count": 1}}, "otherwise": {"_count": 1, "how": {"_count": 1}}}, "equipment": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "shop": {"_count": 1, "Zonkos": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "and": {"_count": 1, "after": {"_count": 1}}}, "Term": {"_count": 2, "begins": {"_count": 1, "on": {"_count": 1}}, "started": {"_count": 1, "more": {"_count": 1}}}, "begins": {"_count": 3, "on": {"_count": 1, "September": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "and": {"_count": 1, "ends": {"_count": 1}}}, "await": {"_count": 7, "your": {"_count": 2, "owl": {"_count": 1}, "verdict": {"_count": 1}}, "my": {"_count": 1, "owl": {"_count": 1}}, "trial": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 1, "there": {"_count": 1}}, "as": {"_count": 1, "warm": {"_count": 1}}, "the": {"_count": 1, "visitors": {"_count": 1}}}, "31": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "OCTOBER": {"_count": 1, "1981": {"_count": 1}}, "October": {"_count": 1, "1": {"_count": 1}}}, "Yours": {"_count": 10, "sincerely": {"_count": 8, "Minerva": {"_count": 1}, "Mafalda": {"_count": 3}, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "Molly": {"_count": 1}, "Albus": {"_count": 1}}, "in": {"_count": 1, "fellowship": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}}, "sincerely": {"_count": 16, "Minerva": {"_count": 1, "McGonagall": {"_count": 1}}, "Mafalda": {"_count": 3, "Hopkirk": {"_count": 3}}, "hoped": {"_count": 2, "the": {"_count": 1}, "would": {"_count": 1}}, "Professor": {"_count": 1, "M": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "Molly": {"_count": 1, "Weasley": {"_count": 1}}, "regretted": {"_count": 1, "this": {"_count": 1}}, "sorry": {"_count": 1, "that": {"_count": 1}}, "hope": {"_count": 1, "that": {"_count": 1}}, "Albus": {"_count": 2, "Dumbledore": {"_count": 2}}, "interested": {"_count": 1, "": {"_count": 1}}}, "Minerva": {"_count": 44, "McGonagall": {"_count": 6, "Deputy": {"_count": 1}, "": {"_count": 2}, "face": {"_count": 1}, "I": {"_count": 1}, "gushed": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "found": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "said": {"_count": 4, "Fudge": {"_count": 2}, "Dumbledore": {"_count": 1}, "Lupin": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 2, "have": {"_count": 1}, "need": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "kindly": {"_count": 1, "go": {"_count": 1}}, "could": {"_count": 1, "I": {"_count": 1}}, "McGonagalls": {"_count": 1, "isnt": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "Im": {"_count": 1, "surprised": {"_count": 1}}, "and": {"_count": 2, "Severus": {"_count": 2}}, "simpered": {"_count": 2, "Umbridge": {"_count": 1}, "Professor": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "how": {"_count": 1, "right": {"_count": 1}}, "go": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 1, "happened": {"_count": 1}}, "": {"_count": 9, "!": {"_count": 3}, "?": {"_count": 4}, ".": {"_count": 2}}, "but": {"_count": 1, "as": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "Minister": {"_count": 1}}, "do": {"_count": 1, "please": {"_count": 1}}}, "Deputy": {"_count": 3, "Headmistress": {"_count": 3, "Questions": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}}, "Headmistress": {"_count": 7, "Questions": {"_count": 1, "exploded": {"_count": 1}}, "Harry": {"_count": 1, "pulled": {"_count": 1}}, "and": {"_count": 2, "head": {"_count": 1}, "High": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "Questions": {"_count": 1, "exploded": {"_count": 1, "inside": {"_count": 1}}}, "exploded": {"_count": 44, "inside": {"_count": 2, "Harrys": {"_count": 1}, "him": {"_count": 1}}, "with": {"_count": 8, "cheers": {"_count": 2}, "the": {"_count": 2}, "laughter": {"_count": 2}, "pain": {"_count": 1}, "such": {"_count": 1}}, "a": {"_count": 3, "rear": {"_count": 1}, "roar": {"_count": 1}, "box": {"_count": 1}}, "get": {"_count": 1, "away": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "showering": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "!": {"_count": 1}}, "in": {"_count": 4, "her": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "Karkaroff": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "once": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 1, "attempted": {"_count": 1}}, "the": {"_count": 1, "Death": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "being": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "fireworks": {"_count": 16, "and": {"_count": 4, "he": {"_count": 1}, "practiced": {"_count": 1}, "by": {"_count": 1}, "the": {"_count": 1}}, "they": {"_count": 1, "filled": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "display": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "swallowed": {"_count": 1}}, "in": {"_count": 2, "midair": {"_count": 1}, "the": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "without": {"_count": 1, "her": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "decide": {"_count": 61, "which": {"_count": 8, "to": {"_count": 1}, "students": {"_count": 1}, "he": {"_count": 1}, "subjects": {"_count": 1}, "way": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 1}, "ones": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "Neville": {"_count": 1}}, "to": {"_count": 5, "buck": {"_count": 1}, "enter": {"_count": 2}, "act": {"_count": 1}, "To": {"_count": 1}}, "what": {"_count": 9, "would": {"_count": 2}, "to": {"_count": 3}, "weather": {"_count": 1}, "the": {"_count": 2}, "curse": {"_count": 1}}, "on": {"_count": 3, "these": {"_count": 1}, "additional": {"_count": 1}, "the": {"_count": 1}}, "where": {"_count": 2, "youre": {"_count": 1}, "they": {"_count": 1}}, "how": {"_count": 6, "he": {"_count": 1}, "were": {"_count": 1}, "often": {"_count": 1}, "to": {"_count": 1}, "hard": {"_count": 1}, "they": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "upon": {"_count": 2, "reflection": {"_count": 1}, "its": {"_count": 1}}, "who": {"_count": 2, "the": {"_count": 1}, "works": {"_count": 1}}, "that": {"_count": 6, "he": {"_count": 2}, "she": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}, "said": {"_count": 1}}, "Not": {"_count": 1, "yet": {"_count": 1}}, "whats": {"_count": 1, "good": {"_count": 1}}, "for": {"_count": 1, "himself": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 1, "where": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "youre": {"_count": 1, "too": {"_count": 1}}, "about": {"_count": 1, "taking": {"_count": 1}}, "the": {"_count": 1, "Championship": {"_count": 1}}, "once": {"_count": 1, "theyve": {"_count": 1}}, "ow": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Ron": {"_count": 1, "against": {"_count": 1}}, "Horcruxes": {"_count": 1, "or": {"_count": 1}}}, "stammered": {"_count": 19, "What": {"_count": 1, "does": {"_count": 1}}, "Professor": {"_count": 1, "Quirrell": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "the": {"_count": 2, "elf": {"_count": 1}, "goblin": {"_count": 1}}, "Er": {"_count": 1, "Ill": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "wiping": {"_count": 1, "the": {"_count": 1}}, "That": {"_count": 1, "mmust": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "You": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "Filch": {"_count": 1, "as": {"_count": 1}}}, "Gallopin": {"_count": 1, "Gorgons": {"_count": 1, "that": {"_count": 1}}}, "Gorgons": {"_count": 1, "that": {"_count": 1, "reminds": {"_count": 1}}}, "reminds": {"_count": 7, "me": {"_count": 6, "said": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 1}, "of": {"_count": 1}}, "you": {"_count": 1, "of": {"_count": 1}}}, "cart": {"_count": 28, "horse": {"_count": 1, "and": {"_count": 1}}, "came": {"_count": 1, "hurtling": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "whats": {"_count": 1, "the": {"_count": 1}}, "stopped": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 2, "dont": {"_count": 1}, "wheeled": {"_count": 1}}, "ride": {"_count": 1, "later": {"_count": 1}}, "after": {"_count": 1, "them": {"_count": 1}}, "he": {"_count": 1, "broke": {"_count": 1}}, "was": {"_count": 1, "out": {"_count": 1}}, "off": {"_count": 1, "down": {"_count": 1}}, "dears": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "arrived": {"_count": 2, "at": {"_count": 1}, "he": {"_count": 1}}, "piled": {"_count": 1, "high": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 1, "Fred": {"_count": 1}}, "I": {"_count": 1, "no": {"_count": 1}}, "that": {"_count": 1, "came": {"_count": 1}}, "moved": {"_count": 1, "off": {"_count": 1}}, "began": {"_count": 1, "twisting": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "flipped": {"_count": 1, "over": {"_count": 1}}, "smash": {"_count": 1, "into": {"_count": 1}}, "me": {"_count": 1, "off": {"_count": 1}}}, "horse": {"_count": 37, "and": {"_count": 2, "from": {"_count": 1}, "dragged": {"_count": 1}}, "": {"_count": 8, "?": {"_count": 3}, ".": {"_count": 5}}, "pawed": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "when": {"_count": 1}}, "half": {"_count": 2, "bird": {"_count": 1}, "giant": {"_count": 1}}, "Luna": {"_count": 1, "appeared": {"_count": 1}}, "things": {"_count": 4, "": {"_count": 3}, "pulling": {"_count": 1}}, "was": {"_count": 2, "there": {"_count": 1}, "fresh": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "Cho": {"_count": 1, "thought": {"_count": 1}}, "wasnt": {"_count": 1, "doing": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "standing": {"_count": 1, "feet": {"_count": 1}}, "eating": {"_count": 1, "with": {"_count": 1}}, "appeared": {"_count": 1, "out": {"_count": 1}}, "to": {"_count": 2, "have": {"_count": 1}, "avoid": {"_count": 1}}, "hes": {"_count": 1, "a": {"_count": 1}}, "crouched": {"_count": 1, "slowly": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "ridden": {"_count": 1, "by": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "has": {"_count": 1, "heard": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "ruffledlooking": {"_count": 2, "owl": {"_count": 1, "a": {"_count": 1}}, "barn": {"_count": 1, "owl": {"_count": 1}}}, "quill": {"_count": 116, "and": {"_count": 24, "a": {"_count": 6}, "looking": {"_count": 3}, "ink": {"_count": 1}, "started": {"_count": 2}, "began": {"_count": 1}, "preparing": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 2}, "send": {"_count": 1}, "stood": {"_count": 1}, "then": {"_count": 1}, "glanced": {"_count": 1}, "headed": {"_count": 1}, "getting": {"_count": 1}, "dotted": {"_count": 1}}, "scribbled": {"_count": 1, "Yes": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 22}}, "from": {"_count": 5, "a": {"_count": 2}, "his": {"_count": 2}, "her": {"_count": 1}}, "into": {"_count": 10, "the": {"_count": 2}, "it": {"_count": 3}, "Mr": {"_count": 1}, "her": {"_count": 2}, "a": {"_count": 1}, "his": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "spilled": {"_count": 1, "onto": {"_count": 1}}, "a": {"_count": 1, "second": {"_count": 1}}, "suspended": {"_count": 2, "over": {"_count": 2}}, "down": {"_count": 1, "the": {"_count": 1}}, "paused": {"_count": 1, "at": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 4, "their": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "had": {"_count": 3, "offered": {"_count": 1}, "started": {"_count": 1}, "just": {"_count": 1}}, "with": {"_count": 2, "ink": {"_count": 1}, "an": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "reduced": {"_count": 1, "to": {"_count": 1}}, "here": {"_count": 1, "somewhere": {"_count": 1}}, "too": {"_count": 1, "having": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "out": {"_count": 1, "with": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 1}, "": {"_count": 1}}, "has": {"_count": 1, "punctured": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "whizzed": {"_count": 1, "across": {"_count": 1}}, "to": {"_count": 3, "herself": {"_count": 1}, "parchment": {"_count": 1}, "sign": {"_count": 1}}, "poised": {"_count": 2, "in": {"_count": 1}, "over": {"_count": 1}}, "ink": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}, "crouched": {"_count": 1, "down": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "beside": {"_count": 1, "it": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "scratching": {"_count": 1, "out": {"_count": 1}}, "then": {"_count": 1, "hesitated": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "pulling": {"_count": 1, "his": {"_count": 1}}, "frowning": {"_count": 1, "slightly": {"_count": 1}}, "turned": {"_count": 1, "The": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 1, "floated": {"_count": 1}}, "standing": {"_count": 1, "ready": {"_count": 1}}}, "roll": {"_count": 40, "of": {"_count": 20, "parchment": {"_count": 17}, "paper": {"_count": 1}, "Muggle": {"_count": 1}, "pink": {"_count": 1}}, "call": {"_count": 3, "and": {"_count": 2}, "continued": {"_count": 1}}, "over": {"_count": 3, "and": {"_count": 2}, "onto": {"_count": 1}}, "up": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "it": {"_count": 2, "up": {"_count": 1}, "out": {"_count": 1}}, "right": {"_count": 1, "over": {"_count": 1}}, "back": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "o": {"_count": 1, "dragon": {"_count": 1}}, "we": {"_count": 1, "found": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}}, "tongue": {"_count": 55, "between": {"_count": 3, "his": {"_count": 3}}, "and": {"_count": 4, "vanished": {"_count": 1}, "that": {"_count": 1}, "attempted": {"_count": 1}, "Uncle": {"_count": 1}}, "out": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "sympathetically": {"_count": 1, "": {"_count": 1}}, "poking": {"_count": 1, "out": {"_count": 1}}, "lashed": {"_count": 1, "Harrys": {"_count": 1}}, "in": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 2}}, "again": {"_count": 2, "": {"_count": 2}}, "lolling": {"_count": 1, "around": {"_count": 1}}, "get": {"_count": 1, "": {"_count": 1}}, "threw": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 5, "flame": {"_count": 4}, "brilliant": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "fluttering": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Umbridge": {"_count": 1}}, "moistening": {"_count": 1, "her": {"_count": 1}}, "you": {"_count": 1, "dare": {"_count": 1}}, "he": {"_count": 1, "made": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "prevent": {"_count": 1}, "give": {"_count": 1}}, "had": {"_count": 2, "just": {"_count": 1}, "unraveled": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 2, "mark": {"_count": 1}, "little": {"_count": 1}}, "glinting": {"_count": 1, "evilly": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "curled": {"_count": 1, "backward": {"_count": 1}}, "tied": {"_count": 1, "by": {"_count": 1}}, "rolled": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 1, "string": {"_count": 1}}, "on": {"_count": 1, "frozen": {"_count": 1}}}, "teeth": {"_count": 128, "he": {"_count": 2, "scribbled": {"_count": 1}, "did": {"_count": 1}}, "": {"_count": 44, ".": {"_count": 43}, "!": {"_count": 1}}, "sunk": {"_count": 1, "deep": {"_count": 1}}, "but": {"_count": 2, "Harry": {"_count": 1}, "before": {"_count": 1}}, "at": {"_count": 3, "Malfoys": {"_count": 1}, "the": {"_count": 1}, "Fudge": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 13, "stepped": {"_count": 1}, "knocked": {"_count": 1}, "reached": {"_count": 1}, "then": {"_count": 2}, "do": {"_count": 1}, "magic": {"_count": 1}, "they": {"_count": 1}, "clenching": {"_count": 1}, "tried": {"_count": 1}, "took": {"_count": 1}, "she": {"_count": 1}, "sores": {"_count": 1}}, "into": {"_count": 5, "our": {"_count": 1}, "Harrys": {"_count": 1}, "Uncle": {"_count": 1}, "Rons": {"_count": 1}, "one": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "bared": {"_count": 4, "": {"_count": 2}, "but": {"_count": 1}, "its": {"_count": 1}}, "gleaming": {"_count": 1, "in": {"_count": 1}}, "even": {"_count": 1, "when": {"_count": 1}}, "Harry": {"_count": 2, "spent": {"_count": 1}, "had": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}, "chattering": {"_count": 4, "as": {"_count": 1}, "shall": {"_count": 1}, "horribly": {"_count": 1}, "his": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "gritted": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 9, "bared": {"_count": 4}, "gritted": {"_count": 1}, "rather": {"_count": 1}, "positioned": {"_count": 1}, "missing": {"_count": 1}, "gone": {"_count": 1}}, "furiously": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "chatter": {"_count": 1, "and": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "But": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 2, "Harrys": {"_count": 1}, "more": {"_count": 1}}, "already": {"_count": 1, "larger": {"_count": 1}}, "elongated": {"_count": 1, "past": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "fixed": {"_count": 1, "": {"_count": 1}}, "tangled": {"_count": 1, "in": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "glinted": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "hoping": {"_count": 1, "against": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "convinced": {"_count": 1, "his": {"_count": 1}}, "so": {"_count": 1, "loudly": {"_count": 1}}, "are": {"_count": 1, "poisonous": {"_count": 1}}, "chose": {"_count": 1, "his": {"_count": 1}}, "an": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "clenched": {"_count": 1, "so": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}, "glimmering": {"_count": 1, "in": {"_count": 1}}, "when": {"_count": 1, "asked": {"_count": 1}}, "leering": {"_count": 1, "at": {"_count": 1}}, "cackled": {"_count": 1, "": {"_count": 1}}, "Kingsley": {"_count": 1, "is": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 2}}}, "scribbled": {"_count": 28, "a": {"_count": 2, "note": {"_count": 2}}, "down": {"_count": 2, "names": {"_count": 1}, "Umbridges": {"_count": 1}}, "Yes": {"_count": 1, "please": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 2, "that": {"_count": 1}, "useful": {"_count": 1}}, "everything": {"_count": 1, "Florean": {"_count": 1}}, "note": {"_count": 3, "": {"_count": 1}, "across": {"_count": 1}, "from": {"_count": 1}}, "I": {"_count": 2, "am": {"_count": 1}, "expect": {"_count": 1}}, "the": {"_count": 2, "dates": {"_count": 1}, "word": {"_count": 1}}, "on": {"_count": 4, "her": {"_count": 2}, "": {"_count": 1}, "a": {"_count": 1}}, "by": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "instructions": {"_count": 1, "for": {"_count": 1}}, "spells": {"_count": 1, "he": {"_count": 1}}, "notes": {"_count": 1, "and": {"_count": 1}}}, "note": {"_count": 137, "that": {"_count": 6, "Harry": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 3}, "following": {"_count": 1}}, "gave": {"_count": 1, "it": {"_count": 1}}, "onto": {"_count": 1, "Harrys": {"_count": 1}}, "and": {"_count": 4, "sent": {"_count": 1}, "handed": {"_count": 1}, "looked": {"_count": 1}, "loud": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 14, "Ron": {"_count": 4}, "tell": {"_count": 1}, "Sirius": {"_count": 1}, "him": {"_count": 1}, "McGonagall": {"_count": 1}, "drop": {"_count": 1}, "a": {"_count": 1}, "Hermione": {"_count": 1}, "ask": {"_count": 1}, "Voldemort": {"_count": 1}, "Umbridge": {"_count": 1}}, "from": {"_count": 9, "one": {"_count": 1}, "Hagrid": {"_count": 1}, "Hermione": {"_count": 2}, "Ron": {"_count": 1}, "the": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "Sirius": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 12}, "!": {"_count": 1}}, "was": {"_count": 6, "a": {"_count": 1}, "dry": {"_count": 1}, "secure": {"_count": 1}, "still": {"_count": 1}, "stuck": {"_count": 1}, "sticking": {"_count": 1}}, "fell": {"_count": 1, "out": {"_count": 1}}, "had": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 23, "panic": {"_count": 3}, "permission": {"_count": 2}, "anxiety": {"_count": 1}, "urgency": {"_count": 1}, "amusement": {"_count": 1}, "menace": {"_count": 1}, "resentment": {"_count": 1}, "pride": {"_count": 1}, "course": {"_count": 1}, "bitterness": {"_count": 1}, "real": {"_count": 1}, "hysteria": {"_count": 1}, "derision": {"_count": 1}, "accusation": {"_count": 1}, "farewell": {"_count": 1}, "the": {"_count": 1}, "common": {"_count": 1}, "badly": {"_count": 1}, "something": {"_count": 1}, "trepidation": {"_count": 1}}, "pinned": {"_count": 1, "to": {"_count": 1}}, "clamped": {"_count": 1, "in": {"_count": 1}}, "I": {"_count": 4, "bet": {"_count": 1}, "trust": {"_count": 1}, "sent": {"_count": 1}, "take": {"_count": 1}}, "the": {"_count": 2, "beasts": {"_count": 1}, "person": {"_count": 1}}, "Car": {"_count": 1, "gone": {"_count": 1}}, "here": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 1, "fumbling": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 1}, "very": {"_count": 1}}, "telling": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "sounded": {"_count": 1, "and": {"_count": 1}}, "explaining": {"_count": 1, "": {"_count": 1}}, "clutched": {"_count": 2, "in": {"_count": 1}, "tight": {"_count": 1}}, "he": {"_count": 4, "continued": {"_count": 1}, "fell": {"_count": 1}, "waved": {"_count": 1}, "was": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "inside": {"_count": 2, "said": {"_count": 1}, "the": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 6, "his": {"_count": 4}, "it": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 1, "Harrys": {"_count": 1}}, "Moody": {"_count": 1, "showed": {"_count": 1}}, "for": {"_count": 1, "Dumbledore": {"_count": 1}}, "theyve": {"_count": 1, "never": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 7, "her": {"_count": 6}, "the": {"_count": 1}}, "then": {"_count": 1, "looked": {"_count": 1}}, "added": {"_count": 1, "George": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "it": {"_count": 1}}, "Minerva": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "has": {"_count": 1}}, "reverberated": {"_count": 1, "from": {"_count": 1}}, "back": {"_count": 1, "and": {"_count": 1}}, "signed": {"_count": 2, "R": {"_count": 2}}}, "upside": {"_count": 36, "down": {"_count": 35, "Dear": {"_count": 1}, "": {"_count": 9}, "avoiding": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 7}, "and": {"_count": 4}, "with": {"_count": 2}, "over": {"_count": 2}, "The": {"_count": 1}, "again": {"_count": 1}, "to": {"_count": 1}, "it": {"_count": 1}, "for": {"_count": 1}, "by": {"_count": 1}, "from": {"_count": 1}, "his": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Given": {"_count": 4, "Harry": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "confusion": {"_count": 1}}, "what": {"_count": 1, "has": {"_count": 1}}}, "Taking": {"_count": 8, "him": {"_count": 1, "to": {"_count": 1}}, "Dudley": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "deep": {"_count": 1}}, "Control": {"_count": 1, "SECRETS": {"_count": 1}}, "great": {"_count": 1, "gulps": {"_count": 1}}, "advantage": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "Riddle": {"_count": 1}}, "deep": {"_count": 1, "breaths": {"_count": 1}}}, "Weathers": {"_count": 1, "horrible": {"_count": 1, "": {"_count": 1}}}, "Hope": {"_count": 13, "youre": {"_count": 3, "well": {"_count": 1}, "okay": {"_count": 2}}, "to": {"_count": 1, "see": {"_count": 1}}, "your": {"_count": 1, "business": {"_count": 1}}, "you": {"_count": 2, "have": {"_count": 1}, "hammer": {"_count": 1}}, "the": {"_count": 1, "Muggles": {"_count": 1}}, "its": {"_count": 2, "okay": {"_count": 1}, "Angelina": {"_count": 1}}, "they": {"_count": 1, "hurry": {"_count": 1}}, "this": {"_count": 1, "clears": {"_count": 1}}, "it": {"_count": 1, "goes": {"_count": 1}}}, "clamped": {"_count": 16, "it": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 2, "its": {"_count": 1}, "her": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "him": {"_count": 1, "tightly": {"_count": 1}}, "so": {"_count": 1, "tightly": {"_count": 1}}, "the": {"_count": 1, "struggling": {"_count": 1}}, "a": {"_count": 1, "handkerchief": {"_count": 1}}, "tightly": {"_count": 2, "around": {"_count": 1}, "under": {"_count": 1}}, "them": {"_count": 1, "together": {"_count": 1}}, "firmly": {"_count": 1, "around": {"_count": 1}}, "over": {"_count": 4, "his": {"_count": 2}, "them": {"_count": 1}, "the": {"_count": 1}}}, "beak": {"_count": 48, "went": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "fiercely": {"_count": 1, "at": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 9, "slit": {"_count": 1}, "a": {"_count": 1}, "fluttered": {"_count": 1}, "walked": {"_count": 1}, "ripped": {"_count": 1}, "nibbled": {"_count": 1}, "found": {"_count": 1}, "without": {"_count": 1}, "leaning": {"_count": 1}}, "sank": {"_count": 1, "out": {"_count": 1}}, "expecting": {"_count": 1, "praise": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "then": {"_count": 1, "felt": {"_count": 1}}, "looking": {"_count": 1, "disdainful": {"_count": 1}}, "hes": {"_count": 1, "gone": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "expectantly": {"_count": 1, "youll": {"_count": 1}}, "briefly": {"_count": 1, "into": {"_count": 1}}, "furiously": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "severed": {"_count": 1}}, "at": {"_count": 2, "Harrys": {"_count": 1}, "their": {"_count": 1}}, "still": {"_count": 1, "full": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 2}, "an": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "wide": {"_count": 1, "and": {"_count": 1}}, "impatiently": {"_count": 1, "but": {"_count": 1}}}, "ashenfaced": {"_count": 5, "but": {"_count": 1, "looking": {"_count": 1}}, "Seamus": {"_count": 1, "apologizing": {"_count": 1}}, "comparing": {"_count": 1, "results": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "mouth": {"_count": 1}}}, "firelight": {"_count": 27, "": {"_count": 8, ".": {"_count": 8}}, "glowed": {"_count": 1, "over": {"_count": 1}}, "glancing": {"_count": 1, "off": {"_count": 1}}, "and": {"_count": 4, "they": {"_count": 1}, "adding": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "glinting": {"_count": 2, "on": {"_count": 1}, "strangely": {"_count": 1}}, "he": {"_count": 1, "realized": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "illuminated": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 2, "her": {"_count": 1}, "Snape": {"_count": 1}}, "the": {"_count": 2, "Malfoy": {"_count": 1}, "woman": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "looked": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Hes": {"_count": 384, "not": {"_count": 42, "going": {"_count": 6}, "serious": {"_count": 1}, "exactly": {"_count": 1}, "himself": {"_count": 1}, "even": {"_count": 2}, "as": {"_count": 2}, "there": {"_count": 4}, "out": {"_count": 1}, "looking": {"_count": 1}, "safe": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 2}, "very": {"_count": 3}, "at": {"_count": 1}, "I": {"_count": 1}, "acting": {"_count": 1}, "here": {"_count": 1}, "stupid": {"_count": 2}, "a": {"_count": 4}, "James": {"_count": 1}, "your": {"_count": 1}, "asking": {"_count": 1}, "long": {"_count": 1}, "hes": {"_count": 1}, "coming": {"_count": 1}}, "going": {"_count": 13, "to": {"_count": 10}, "up": {"_count": 1}, "with": {"_count": 1}, "straight": {"_count": 1}}, "off": {"_count": 2, "ter": {"_count": 1}, "with": {"_count": 1}}, "a": {"_count": 26, "sort": {"_count": 1}, "genius": {"_count": 2}, "centaur": {"_count": 1}, "funny": {"_count": 2}, "danger": {"_count": 2}, "complete": {"_count": 1}, "wizard": {"_count": 1}, "convicted": {"_count": 1}, "boisterous": {"_count": 1}, "trusting": {"_count": 1}, "great": {"_count": 1}, "sweet": {"_count": 1}, "good": {"_count": 2}, "month": {"_count": 1}, "hardworking": {"_count": 1}, "CurseBreaker": {"_count": 1}, "family": {"_count": 1}, "Death": {"_count": 1}, "double": {"_count": 1}, "wandmaker": {"_count": 1}, "slave": {"_count": 1}, "foreign": {"_count": 1}}, "the": {"_count": 6, "gamekeeper": {"_count": 1}, "best": {"_count": 1}, "dog": {"_count": 1}, "most": {"_count": 1}, "Trainee": {"_count": 1}, "only": {"_count": 1}}, "coming": {"_count": 6, "now": {"_count": 1}, "Molly": {"_count": 1}, "back": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "gone": {"_count": 12, "": {"_count": 7}, "to": {"_count": 2}, "Harry": {"_count": 1}, "and": {"_count": 1}, "where": {"_count": 1}}, "chewing": {"_count": 1, "my": {"_count": 1}}, "just": {"_count": 14, "the": {"_count": 1}, "made": {"_count": 1}, "suffered": {"_count": 1}, "started": {"_count": 1}, "trying": {"_count": 1}, "outside": {"_count": 1}, "arrived": {"_count": 1}, "got": {"_count": 1}, "": {"_count": 1}, "nervous": {"_count": 2}, "sitting": {"_count": 1}, "like": {"_count": 1}, "sent": {"_count": 1}}, "late": {"_count": 1, "maybe": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "doing": {"_count": 2, "something": {"_count": 1}, "you": {"_count": 1}}, "used": {"_count": 2, "to": {"_count": 2}}, "still": {"_count": 7, "out": {"_count": 2}, "ill": {"_count": 1}, "alive": {"_count": 1}, "god": {"_count": 1}, "a": {"_count": 1}, "looking": {"_count": 1}}, "too": {"_count": 2, "little": {"_count": 1}, "busy": {"_count": 1}}, "lost": {"_count": 5, "his": {"_count": 2}, "everything": {"_count": 1}, "But": {"_count": 1}, "so": {"_count": 1}}, "got": {"_count": 24, "lots": {"_count": 1}, "the": {"_count": 3}, "no": {"_count": 3}, "a": {"_count": 4}, "dark": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 2}, "so": {"_count": 1}, "me": {"_count": 1}, "enough": {"_count": 1}, "other": {"_count": 1}, "dung": {"_count": 1}, "Padfoot": {"_count": 2}, "Crabbe": {"_count": 1}, "an": {"_count": 1}}, "found": {"_count": 2, "out": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "getting": {"_count": 2, "away": {"_count": 1}, "more": {"_count": 1}}, "ancient": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 4, "": {"_count": 2}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "never": {"_count": 5, "traveled": {"_count": 1}, "seen": {"_count": 1}, "wanted": {"_count": 1}, "going": {"_count": 1}, "been": {"_count": 1}}, "in": {"_count": 9, "Gryffindor": {"_count": 1}, "a": {"_count": 3}, "charge": {"_count": 1}, "trouble": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 2}}, "been": {"_count": 24, "cleaning": {"_count": 1}, "looking": {"_count": 1}, "meeting": {"_count": 1}, "through": {"_count": 1}, "sighted": {"_count": 1}, "killed": {"_count": 1}, "in": {"_count": 1}, "scared": {"_count": 1}, "trying": {"_count": 1}, "Apparating": {"_count": 1}, "angry": {"_count": 1}, "alone": {"_count": 1}, "thinking": {"_count": 1}, "bitten": {"_count": 1}, "attacked": {"_count": 1}, "hurting": {"_count": 1}, "desperate": {"_count": 1}, "left": {"_count": 1}, "given": {"_count": 1}, "branded": {"_count": 1}, "offering": {"_count": 1}, "helping": {"_count": 1}, "hiding": {"_count": 1}, "providing": {"_count": 1}}, "bitter": {"_count": 1, "": {"_count": 1}}, "probably": {"_count": 3, "boasting": {"_count": 1}, "miles": {"_count": 1}, "worried": {"_count": 1}}, "really": {"_count": 9, "very": {"_count": 2}, "young": {"_count": 1}, "excited": {"_count": 1}, "nice": {"_count": 1}, "ill": {"_count": 1}, "happy": {"_count": 1}, "angry": {"_count": 1}, "really": {"_count": 1}}, "another": {"_count": 2, "one": {"_count": 1}, "Death": {"_count": 1}}, "crying": {"_count": 1, "": {"_count": 1}}, "Dumbledores": {"_count": 1, "said": {"_count": 1}}, "retired": {"_count": 2, "now": {"_count": 1}, "used": {"_count": 1}}, "gorgeous": {"_count": 1, "isnt": {"_count": 1}}, "dumped": {"_count": 1, "them": {"_count": 1}}, "thirteen": {"_count": 1, "years": {"_count": 1}}, "faking": {"_count": 2, "it": {"_count": 2}}, "making": {"_count": 1, "it": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 4}}, "skin": {"_count": 1, "and": {"_count": 1}}, "hiding": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 1, "tall": {"_count": 1}}, "only": {"_count": 3, "silent": {"_count": 1}, "fifteen": {"_count": 1}, "quacking": {"_count": 1}}, "an": {"_count": 2, "excellent": {"_count": 1}, "old": {"_count": 1}}, "done": {"_count": 3, "moren": {"_count": 1}, "a": {"_count": 1}, "nothin": {"_count": 1}}, "supposed": {"_count": 2, "to": {"_count": 2}}, "on": {"_count": 5, "the": {"_count": 4}, "our": {"_count": 1}}, "made": {"_count": 2, "some": {"_count": 1}, "it": {"_count": 1}}, "tethered": {"_count": 1, "in": {"_count": 1}}, "tried": {"_count": 1, "said": {"_count": 1}}, "friends": {"_count": 1, "with": {"_count": 1}}, "here": {"_count": 4, "Sirius": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}}, "teaching": {"_count": 2, "here": {"_count": 1}, "at": {"_count": 1}}, "come": {"_count": 2, "to": {"_count": 2}}, "innocent": {"_count": 1, "": {"_count": 1}}, "locked": {"_count": 1, "away": {"_count": 1}}, "transforming": {"_count": 1, "Hermione": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "free": {"_count": 1, "": {"_count": 1}}, "packin": {"_count": 1, "now": {"_count": 1}}, "packing": {"_count": 1, "": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}, "obsessed": {"_count": 1, "": {"_count": 1}}, "unbelievable": {"_count": 1, "": {"_count": 1}}, "desperate": {"_count": 1, "to": {"_count": 1}}, "seen": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 2}}, "always": {"_count": 3, "said": {"_count": 1}, "given": {"_count": 1}, "saying": {"_count": 1}}, "worried": {"_count": 2, "and": {"_count": 1}, "about": {"_count": 1}}, "flying": {"_count": 1, "north": {"_count": 1}}, "jealous": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 1, "risks": {"_count": 1}}, "right": {"_count": 3, "": {"_count": 1}, "I": {"_count": 1}, "down": {"_count": 1}}, "from": {"_count": 2, "Durmstrang": {"_count": 2}}, "competing": {"_count": 1, "against": {"_count": 1}}, "Karkaroffs": {"_count": 1, "student": {"_count": 1}}, "mad": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "perfect": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 2}}, "okay": {"_count": 1, "said": {"_count": 1}}, "ill": {"_count": 5, "or": {"_count": 1}, "hes": {"_count": 1}, "Vernon": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "very": {"_count": 1, "upset": {"_count": 1}}, "dead": {"_count": 7, "": {"_count": 4}, "said": {"_count": 2}, "isnt": {"_count": 1}}, "returned": {"_count": 1, "": {"_count": 1}}, "killed": {"_count": 1, "Cedric": {"_count": 1}}, "excellent": {"_count": 1, "said": {"_count": 1}}, "living": {"_count": 1, "here": {"_count": 1}}, "feeling": {"_count": 1, "pretty": {"_count": 1}}, "useful": {"_count": 1, "Sirius": {"_count": 1}}, "as": {"_count": 1, "good": {"_count": 1}}, "old": {"_count": 1, "enough": {"_count": 1}}, "certainly": {"_count": 1, "not": {"_count": 1}}, "absolutely": {"_count": 1, "refusing": {"_count": 1}}, "well": {"_count": 1, "practiced": {"_count": 1}}, "Painted": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "having": {"_count": 2, "a": {"_count": 2}}, "WHAT": {"_count": 1, "": {"_count": 1}}, "massive": {"_count": 1, "one": {"_count": 1}}, "sleeping": {"_count": 1, "": {"_count": 1}}, "completely": {"_count": 1, "addled": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "sitting": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "wearing": {"_count": 1, "my": {"_count": 1}}, "stopped": {"_count": 1, "giving": {"_count": 1}}, "doin": {"_count": 1, "Dumbledore": {"_count": 1}}, "hung": {"_count": 1, "on": {"_count": 1}}, "torturing": {"_count": 1, "him": {"_count": 1}}, "dot": {"_count": 1, "alone": {"_count": 1}}, "\u2018the": {"_count": 1, "Boy": {"_count": 1}}, "your": {"_count": 2, "dads": {"_count": 1}, "best": {"_count": 1}}, "loads": {"_count": 1, "betterlooking": {"_count": 1}}, "highly": {"_count": 1, "efficient": {"_count": 1}}, "replaced": {"_count": 1, "his": {"_count": 1}}, "sixteen": {"_count": 1, "Harry": {"_count": 1}}, "much": {"_count": 1, "happier": {"_count": 1}}, "speaking": {"_count": 1, "Parseltongue": {"_count": 1}}, "nicked": {"_count": 1, "Siriuss": {"_count": 1}}, "definitely": {"_count": 2, "got": {"_count": 1}, "gone": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "oldern": {"_count": 1, "you": {"_count": 1}}, "mentaft": {"_count": 1, "he": {"_count": 1}}, "asking": {"_count": 1, "us": {"_count": 1}}, "pretty": {"_count": 1, "upset": {"_count": 1}}, "devastated": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "hurt": {"_count": 1, "said": {"_count": 1}}, "already": {"_count": 1, "used": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "see": {"_count": 1}}, "loyal": {"_count": 1, "to": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "fainted": {"_count": 1, "said": {"_count": 1}}, "gggone": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "ancestor": {"_count": 1}}, "abroad": {"_count": 1, "": {"_count": 1}}, "enjoying": {"_count": 1, "keeping": {"_count": 1}}, "fighting": {"_count": 1, "said": {"_count": 1}}, "snogging": {"_count": 1, "her": {"_count": 1}}}, "interested": {"_count": 82, "": {"_count": 12, ".": {"_count": 11}, "?": {"_count": 1}}, "in": {"_count": 54, "eating": {"_count": 1}, "Transfiguration": {"_count": 1}, "playing": {"_count": 2}, "anythin": {"_count": 1}, "Fluffy": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 10}, "whether": {"_count": 1}, "searching": {"_count": 1}, "anything": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}, "where": {"_count": 1}, "hearing": {"_count": 3}, "what": {"_count": 2}, "his": {"_count": 1}, "watching": {"_count": 1}, "their": {"_count": 1}, "hes": {"_count": 1}, "coming": {"_count": 1}, "learning": {"_count": 1}, "Harrys": {"_count": 1}, "discussing": {"_count": 1}, "": {"_count": 3}, "this": {"_count": 1}, "joining": {"_count": 1}, "Fred": {"_count": 1}, "Death": {"_count": 1}, "Tom": {"_count": 1}, "Quidditch": {"_count": 1}, "immortality": {"_count": 1}, "why": {"_count": 1}, "being": {"_count": 1}, "it": {"_count": 1}, "anyone": {"_count": 1}, "that": {"_count": 1}, "wearing": {"_count": 1}, "any": {"_count": 1}}, "as": {"_count": 2, "everyone": {"_count": 1}, "he": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "class": {"_count": 1}}, "to": {"_count": 7, "see": {"_count": 2}, "know": {"_count": 3}, "meet": {"_count": 1}, "hear": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "as": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "nonmagic": {"_count": 4, "folk": {"_count": 1, "like": {"_count": 1}}, "peoples": {"_count": 1, "though": {"_count": 1}}, "parents": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "it": {"_count": 1}}}, "folk": {"_count": 5, "like": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "use": {"_count": 1, "any": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}}, "swore": {"_count": 24, "when": {"_count": 1, "we": {"_count": 1}}, "wed": {"_count": 1, "stamp": {"_count": 1}}, "to": {"_count": 3, "himself": {"_count": 1}, "your": {"_count": 1}, "obey": {"_count": 1}}, "loudly": {"_count": 3, "": {"_count": 3}}, "": {"_count": 2, ".": {"_count": 2}}, "so": {"_count": 1, "badly": {"_count": 1}}, "they": {"_count": 1, "saw": {"_count": 1}}, "Id": {"_count": 1, "tell": {"_count": 1}}, "eternal": {"_count": 1, "loyalty": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 2}}, "very": {"_count": 1, "loudly": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 2, "turned": {"_count": 1}, "made": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "theyd": {"_count": 1, "just": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}}, "rubbish": {"_count": 58, "said": {"_count": 5, "Uncle": {"_count": 2}, "Hermione": {"_count": 2}, "Ron": {"_count": 1}}, "spell": {"_count": 1, "books": {"_count": 1}}, "": {"_count": 13, "!": {"_count": 2}, ".": {"_count": 7}, "?": {"_count": 4}}, "in": {"_count": 2, "your": {"_count": 1}, "the": {"_count": 1}}, "sold": {"_count": 1, "for": {"_count": 1}}, "snapped": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "compared": {"_count": 1, "with": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "everywhere": {"_count": 1, "as": {"_count": 1}}, "we": {"_count": 1, "do": {"_count": 1}}, "about": {"_count": 2, "him": {"_count": 1}, "CrumpleHorned": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "lay": {"_count": 1, "outside": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "sack": {"_count": 1, "": {"_count": 1}}, "sacks": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 1, "and": {"_count": 1}}, "everyone": {"_count": 1, "knows": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "hes": {"_count": 1, "come": {"_count": 1}}, "piped": {"_count": 1, "up": {"_count": 1}}, "on": {"_count": 1, "students": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "concluded": {"_count": 1}}, "that": {"_count": 1, "Umbridge": {"_count": 1}}, "croaked": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 1, "outside": {"_count": 1}}, "without": {"_count": 1, "us": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "strewn": {"_count": 1, "banks": {"_count": 1}}, "is": {"_count": 1, "just": {"_count": 1}}, "pile": {"_count": 2, "one": {"_count": 1}, "and": {"_count": 1}}, "heaped": {"_count": 1, "around": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "its": {"_count": 1, "\u2018Magic": {"_count": 1}}}, "Wizard": {"_count": 24, "indeed": {"_count": 1, "": {"_count": 1}}, "sport": {"_count": 1, "": {"_count": 1}}, "Baruffio": {"_count": 1, "who": {"_count": 1}}, "card": {"_count": 1, "": {"_count": 1}}, "blood": {"_count": 1, "is": {"_count": 1}}, "Wheezes": {"_count": 12, "Why": {"_count": 1}, "": {"_count": 3}, "by": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "where": {"_count": 1}, "products": {"_count": 1}, "and": {"_count": 1}, "merchandise": {"_count": 1}}, "High": {"_count": 1, "Court": {"_count": 1}}, "banking": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "descent": {"_count": 1, "before": {"_count": 1}}, "dominance": {"_count": 1, "being": {"_count": 1}}, "rule": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "indeed": {"_count": 144, "": {"_count": 40, "!": {"_count": 6}, ".": {"_count": 33}, "?": {"_count": 1}}, "oh": {"_count": 1, "very": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "how": {"_count": 1, "these": {"_count": 1}}, "anyone": {"_count": 2, "to": {"_count": 1}, "else": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "been": {"_count": 5, "searching": {"_count": 1}, "stolen": {"_count": 1}, "a": {"_count": 1}, "eyeing": {"_count": 1}, "scheduling": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "be": {"_count": 3, "all": {"_count": 1}, "inside": {"_count": 1}, "advisable": {"_count": 1}}, "open": {"_count": 1, "again": {"_count": 1}}, "sitting": {"_count": 1, "at": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 5, "none": {"_count": 1}, "stuffed": {"_count": 1}, "said": {"_count": 1}, "hes": {"_count": 1}, "there": {"_count": 1}}, "draw": {"_count": 1, "a": {"_count": 1}}, "know": {"_count": 3, "that": {"_count": 2}, "a": {"_count": 1}}, "YES": {"_count": 1, "": {"_count": 1}}, "test": {"_count": 1, "them": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "But": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 6, "Lupin": {"_count": 1}, "Nearly": {"_count": 1}, "Dumbledore": {"_count": 3}, "Slughorn": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "Blacks": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "supporting": {"_count": 1, "Ireland": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 2, "any": {"_count": 1}, "he": {"_count": 1}}, "come": {"_count": 3, "to": {"_count": 3}}, "a": {"_count": 4, "hundred": {"_count": 1}, "Death": {"_count": 1}, "rare": {"_count": 1}, "palace": {"_count": 1}}, "bounced": {"_count": 1, "nervously": {"_count": 1}}, "Hermione": {"_count": 1, "suggested": {"_count": 1}}, "At": {"_count": 1, "this": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "robes": {"_count": 1}}, "but": {"_count": 1, "apparently": {"_count": 1}}, "odd": {"_count": 1, "Harry": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "move": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "one": {"_count": 1}}, "Neither": {"_count": 1, "Dumbledore": {"_count": 1}}, "they": {"_count": 2, "are": {"_count": 1}, "barely": {"_count": 1}}, "seem": {"_count": 1, "very": {"_count": 1}}, "resisting": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "stirring": {"_count": 1, "": {"_count": 1}}, "squeezing": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 2, "answer": {"_count": 1}, "bulging": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "some": {"_count": 2, "people": {"_count": 1}, "of": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "burn": {"_count": 1, "sage": {"_count": 1}}, "heard": {"_count": 1, "every": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 1, "admirable": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "inherited": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "waving": {"_count": 1, "at": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 2, "seen": {"_count": 1}, "attacked": {"_count": 1}}, "ordered": {"_count": 1, "Snape": {"_count": 1}}, "having": {"_count": 1, "second": {"_count": 1}}, "to": {"_count": 1, "travel": {"_count": 1}}, "cried": {"_count": 1, "Slughorn": {"_count": 1}}, "happened": {"_count": 1, "That": {"_count": 1}}, "extend": {"_count": 1, "life": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "blocked": {"_count": 1, "He": {"_count": 1}}, "were": {"_count": 1, "disposed": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "lived": {"_count": 1, "here": {"_count": 1}}, "Potter": {"_count": 1, "he": {"_count": 1}}, "an": {"_count": 1, "undersized": {"_count": 1}}}, "Knew": {"_count": 13, "": {"_count": 1, "!": {"_count": 1}}, "Of": {"_count": 1, "course": {"_count": 1}}, "wed": {"_count": 1, "get": {"_count": 1}}, "you": {"_count": 1, "had": {"_count": 1}}, "You": {"_count": 1, "Had": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 2}}, "youd": {"_count": 2, "say": {"_count": 1}, "be": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "yeh": {"_count": 1, "mus": {"_count": 1}}}, "shrieked": {"_count": 92, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "and": {"_count": 11, "yelled": {"_count": 1}, "fell": {"_count": 1}, "started": {"_count": 1}, "gasped": {"_count": 1}, "jumped": {"_count": 1}, "slopped": {"_count": 1}, "laughed": {"_count": 1}, "dropped": {"_count": 2}, "ran": {"_count": 2}}, "Hermione": {"_count": 9, "dancing": {"_count": 1}, "": {"_count": 4}, "from": {"_count": 1}, "as": {"_count": 2}, "and": {"_count": 1}}, "Voldemort": {"_count": 3, "again": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}}, "that": {"_count": 1, "shed": {"_count": 1}}, "How": {"_count": 1, "dare": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "Filch": {"_count": 1, "turning": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "as": {"_count": 1, "splashes": {"_count": 1}}, "Lets": {"_count": 1, "all": {"_count": 1}}, "Pansy": {"_count": 2, "Parkinson": {"_count": 2}}, "loudly": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 2, "Hooch": {"_count": 1}, "Pomfrey": {"_count": 1}}, "at": {"_count": 2, "Bole": {"_count": 1}, "Dudley": {"_count": 1}}, "looking": {"_count": 1, "madder": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "Winky": {"_count": 1, "prostrating": {"_count": 1}}, "Professor": {"_count": 4, "McGonagall": {"_count": 1}, "Umbridge": {"_count": 2}, "Trelawney": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "the": {"_count": 3, "first": {"_count": 1}, "boy": {"_count": 1}, "elder": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "her": {"_count": 1}}, "insults": {"_count": 1, "at": {"_count": 1}}, "Master": {"_count": 1, "forgive": {"_count": 1}}, "Harry": {"_count": 2, "was": {"_count": 1}, "drew": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "finding": {"_count": 1, "his": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "Mrs": {"_count": 1, "Figg": {"_count": 1}}, "with": {"_count": 3, "laughter": {"_count": 1}, "glee": {"_count": 1}, "pain": {"_count": 1}}, "Umbridge": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "Accio": {"_count": 1, "Proph": {"_count": 1}}, "Bellatrix": {"_count": 7, "incoherently": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "but": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Harrys": {"_count": 1, "eyes": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "making": {"_count": 1, "both": {"_count": 1}}, "Pink": {"_count": 1, "pages": {"_count": 1}}, "standing": {"_count": 1, "over": {"_count": 1}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "courage": {"_count": 1}}}, "dratted": {"_count": 1, "sister": {"_count": 1, "being": {"_count": 1}}}, "frog": {"_count": 23, "spawn": {"_count": 5, "turning": {"_count": 1}, "on": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}, "cockroaches": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 4}}, "would": {"_count": 1, "be": {"_count": 1}}, "brains": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "livers": {"_count": 1, "an": {"_count": 1}}, "liver": {"_count": 1, "and": {"_count": 1}}, "guts": {"_count": 1, "from": {"_count": 1}}, "yawned": {"_count": 1, "Harry": {"_count": 1}}, "by": {"_count": 1, "tomorrow": {"_count": 1}}, "clamped": {"_count": 1, "in": {"_count": 1}}, "its": {"_count": 1, "escaping": {"_count": 1}}, "which": {"_count": 1, "deflated": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "suspended": {"_count": 1, "in": {"_count": 1}}}, "spawn": {"_count": 5, "turning": {"_count": 1, "teacups": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "contained": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cockroaches": {"_count": 1, "and": {"_count": 1}}}, "teacups": {"_count": 7, "into": {"_count": 1, "rats": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "when": {"_count": 1, "there": {"_count": 1}}, "filled": {"_count": 1, "they": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "rats": {"_count": 28, "": {"_count": 9, ".": {"_count": 9}}, "lurking": {"_count": 1, "among": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "some": {"_count": 1}}, "skull": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}, "who": {"_count": 2, "stopped": {"_count": 1}, "promptly": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "living": {"_count": 1, "only": {"_count": 1}}, "hows": {"_count": 1, "he": {"_count": 1}}, "frequently": {"_count": 1, "erupted": {"_count": 1}}, "brains": {"_count": 1, "in": {"_count": 1}}, "mostly": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "met": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "onto": {"_count": 1, "an": {"_count": 1}}, "as": {"_count": 1, "Mrs": {"_count": 1}}, "fart": {"_count": 1, "do": {"_count": 1}}}, "freak": {"_count": 10, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "accident": {"_count": 1, "They": {"_count": 1}}, "school": {"_count": 1, "you": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "of": {"_count": 1}}, "hurricane": {"_count": 1, "in": {"_count": 1}}, "doing": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "Lily": {"_count": 1}}}, "witch": {"_count": 208, "in": {"_count": 18, "the": {"_count": 8}, "emeraldgreen": {"_count": 1}, "Bath": {"_count": 1}, "Harrys": {"_count": 1}, "front": {"_count": 1}, "a": {"_count": 2}, "magenta": {"_count": 1}, "my": {"_count": 1}, "an": {"_count": 1}, "Paisley": {"_count": 1}}, "an": {"_count": 1, "wizard": {"_count": 1}}, "dressed": {"_count": 1, "all": {"_count": 1}}, "pinned": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 14, "wizard": {"_count": 8}, "whispered": {"_count": 1}, "could": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "or": {"_count": 17, "wizard": {"_count": 16}, "wizards": {"_count": 1}}, "til": {"_count": 1, "after": {"_count": 1}}, "said": {"_count": 5, "Neville": {"_count": 1}, "hed": {"_count": 1}, "breathlessly": {"_count": 1}, "Naturally": {"_count": 1}, "I": {"_count": 1}}, "called": {"_count": 2, "Professor": {"_count": 1}, "Tonks": {"_count": 1}}, "gliding": {"_count": 1, "in": {"_count": 1}}, "died": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 18}, "?": {"_count": 2}}, "stood": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 3, "load": {"_count": 1}, "centaur": {"_count": 1}, "lot": {"_count": 1}}, "knocking": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 18, "her": {"_count": 1}, "the": {"_count": 4}, "his": {"_count": 1}, "closely": {"_count": 1}, "a": {"_count": 6}, "very": {"_count": 1}, "long": {"_count": 2}, "short": {"_count": 1}, "flyaway": {"_count": 1}}, "who": {"_count": 14, "wore": {"_count": 2}, "banished": {"_count": 1}, "pushed": {"_count": 2}, "shouted": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 4}, "lived": {"_count": 1}, "would": {"_count": 1}}, "sprouting": {"_count": 1, "several": {"_count": 1}}, "mother": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "burnings": {"_count": 1, "gave": {"_count": 1}}, "behind": {"_count": 3, "the": {"_count": 3}}, "pulling": {"_count": 1, "a": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "examining": {"_count": 1, "Scabbers": {"_count": 1}}, "reaching": {"_count": 1, "under": {"_count": 1}}, "but": {"_count": 3, "Scabbers": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "Harry": {"_count": 1}}, "slid": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 2, "morning": {"_count": 1}, "time": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 2}, "Fudges": {"_count": 1}}, "was": {"_count": 2, "boarded": {"_count": 1}, "wearing": {"_count": 1}}, "he": {"_count": 2, "smoothed": {"_count": 1}, "remembered": {"_count": 1}}, "opened": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 2, "your": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 2, "snarled": {"_count": 1}, "had": {"_count": 1}}, "flit": {"_count": 1, "out": {"_count": 1}}, "started": {"_count": 1, "whispering": {"_count": 1}}, "indignantly": {"_count": 1, "": {"_count": 1}}, "whos": {"_count": 1, "gone": {"_count": 1}}, "leapt": {"_count": 1, "out": {"_count": 1}}, "sitting": {"_count": 3, "in": {"_count": 1}, "to": {"_count": 1}, "alone": {"_count": 1}}, "halfway": {"_count": 1, "up": {"_count": 1}}, "beside": {"_count": 4, "Crouch": {"_count": 2}, "him": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "waved": {"_count": 1, "from": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "got": {"_count": 1, "out": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "spoke": {"_count": 1, "in": {"_count": 1}}, "himself": {"_count": 1, "or": {"_count": 1}}, "were": {"_count": 1, "almost": {"_count": 1}}, "looked": {"_count": 1, "almost": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "reappeared": {"_count": 1}}, "raising": {"_count": 1, "an": {"_count": 1}}, "seated": {"_count": 1, "at": {"_count": 1}}, "irritably": {"_count": 1, "pointing": {"_count": 1}}, "dismissively": {"_count": 1, "Hes": {"_count": 1}}, "running": {"_count": 1, "her": {"_count": 1}}, "wearing": {"_count": 4, "a": {"_count": 4}}, "ran": {"_count": 1, "at": {"_count": 1}}, "wizard": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "wife": {"_count": 1, "Merope": {"_count": 1}}, "just": {"_count": 1, "before": {"_count": 1}}, "any": {"_count": 1, "longer": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "clutching": {"_count": 1, "his": {"_count": 1}}, "borrowing": {"_count": 1, "one": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "glanced": {"_count": 1, "toward": {"_count": 1}}, "whose": {"_count": 1, "blonde": {"_count": 1}}, "however": {"_count": 1, "it": {"_count": 1}}, "sir": {"_count": 1, "Im": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "living": {"_count": 1, "alone": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "whispered": {"_count": 1, "Snape": {"_count": 1}}}, "draw": {"_count": 48, "a": {"_count": 2, "deep": {"_count": 1}, "chair": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 2, "our": {"_count": 1}, "extra": {"_count": 1}}, "the": {"_count": 4, "curtains": {"_count": 1}, "line": {"_count": 1}, "Death": {"_count": 1}, "crowds": {"_count": 1}}, "ahead": {"_count": 2, "of": {"_count": 2}}, "nearer": {"_count": 3, "": {"_count": 2}, "still": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}, "near": {"_count": 1, "you": {"_count": 1}}, "back": {"_count": 1, "against": {"_count": 1}}, "breath": {"_count": 6, "but": {"_count": 1}, "to": {"_count": 1}, "every": {"_count": 1}, "there": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}}, "attention": {"_count": 7, "to": {"_count": 7}}, "from": {"_count": 1, "his": {"_count": 1}}, "himself": {"_count": 1, "up": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "its": {"_count": 1, "face": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "out": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "right": {"_count": 1}}, "Umbridge": {"_count": 1, "away": {"_count": 1}}, "away": {"_count": 1, "will": {"_count": 1}}, "your": {"_count": 2, "attention": {"_count": 2}}, "his": {"_count": 3, "cork": {"_count": 1}, "own": {"_count": 1}, "eyes": {"_count": 1}}, "courage": {"_count": 1, "and": {"_count": 1}}, "closer": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "eye": {"_count": 1}}}, "ranting": {"_count": 3, "on": {"_count": 2, "": {"_count": 1}, "waving": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}}, "wanting": {"_count": 62, "to": {"_count": 40, "say": {"_count": 2}, "miss": {"_count": 1}, "unwrap": {"_count": 1}, "look": {"_count": 1}, "win": {"_count": 1}, "hurt": {"_count": 1}, "be": {"_count": 3}, "warm": {"_count": 1}, "stay": {"_count": 1}, "scare": {"_count": 1}, "make": {"_count": 1}, "get": {"_count": 2}, "talk": {"_count": 2}, "see": {"_count": 1}, "Harry": {"_count": 1}, "wish": {"_count": 1}, "remain": {"_count": 1}, "drop": {"_count": 1}, "ask": {"_count": 3}, "disturb": {"_count": 1}, "know": {"_count": 3}, "leave": {"_count": 1}, "walk": {"_count": 1}, "appear": {"_count": 1}, "stop": {"_count": 1}, "greet": {"_count": 1}, "apologize": {"_count": 1}, "teach": {"_count": 1}, "understand": {"_count": 1}, "come": {"_count": 1}, "attack": {"_count": 1}}, "Snape": {"_count": 1, "near": {"_count": 1}}, "your": {"_count": 1, "autograph": {"_count": 1}}, "a": {"_count": 4, "word": {"_count": 3}, "bit": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 3, "to": {"_count": 3}}, "more": {"_count": 1, "than": {"_count": 1}}, "paying": {"_count": 1, "for": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "New": {"_count": 1}, "book": {"_count": 1}}, "ze": {"_count": 1, "bouillabaisse": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "some": {"_count": 1, "more": {"_count": 1}}, "Harry": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "very": {"_count": 1}}}, "married": {"_count": 32, "and": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 5}, "!": {"_count": 4}, "?": {"_count": 3}}, "Muggles": {"_count": 1, "wedve": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}, "couple": {"_count": 1, "theyre": {"_count": 1}}, "a": {"_count": 2, "Muggleborn": {"_count": 1}, "pureblood": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "seven": {"_count": 1, "times": {"_count": 1}}, "her": {"_count": 2, "for": {"_count": 1}, "Ive": {"_count": 1}}, "the": {"_count": 2, "werewolf": {"_count": 1}, "Mudblood": {"_count": 1}}, "here": {"_count": 1, "rather": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "or": {"_count": 1, "As": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "to": {"_count": 2, "Nymphadora": {"_count": 2}}, "would": {"_count": 1, "ever": {"_count": 1}}}, "abnormal": {"_count": 2, "and": {"_count": 1, "then": {"_count": 1}}, "size": {"_count": 1, "were": {"_count": 1}}}, "please": {"_count": 218, "she": {"_count": 1, "went": {"_count": 1}}, "and": {"_count": 3, "can": {"_count": 1}, "interpret": {"_count": 1}, "back": {"_count": 1}}, "Harry": {"_count": 3, "panted": {"_count": 1}, "said": {"_count": 2}}, "": {"_count": 80, ".": {"_count": 46}, "!": {"_count": 25}, "?": {"_count": 9}}, "Whether": {"_count": 1, "we": {"_count": 1}}, "see": {"_count": 1, "you": {"_count": 1}}, "youll": {"_count": 1, "get": {"_count": 1}}, "said": {"_count": 13, "Peeves": {"_count": 1}, "Ron": {"_count": 1}, "Professor": {"_count": 3}, "he": {"_count": 1}, "Hermione": {"_count": 2}, "Zacharias": {"_count": 1}, "Cho": {"_count": 1}, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}, "Moody": {"_count": 1}}, "You": {"_count": 1, "cant": {"_count": 1}}, "It": {"_count": 1, "sounded": {"_count": 1}}, "relax": {"_count": 1, "or": {"_count": 1}}, "be": {"_count": 2, "quiet": {"_count": 1}, "sensible": {"_count": 1}}, "let": {"_count": 5, "me": {"_count": 2}, "it": {"_count": 2}, "us": {"_count": 1}}, "ladies": {"_count": 1, "": {"_count": 1}}, "please": {"_count": 4, "": {"_count": 1}, "come": {"_count": 1}, "its": {"_count": 1}, "no": {"_count": 1}}, "feel": {"_count": 1, "free": {"_count": 1}}, "to": {"_count": 6, "history": {"_count": 1}, "come": {"_count": 1}, "stand": {"_count": 1}, "the": {"_count": 1}, "reply": {"_count": 1}, "go": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "believe": {"_count": 1, "me": {"_count": 1}}, "make": {"_count": 2, "sure": {"_count": 1}, "it": {"_count": 1}}, "dont": {"_count": 10, "be": {"_count": 1}, "": {"_count": 1}, "lose": {"_count": 1}, "do": {"_count": 1}, "attack": {"_count": 1}, "shout": {"_count": 2}, "go": {"_count": 1}, "insult": {"_count": 1}, "start": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "Tom": {"_count": 1, "said": {"_count": 1}}, "pack": {"_count": 1, "away": {"_count": 1}}, "I": {"_count": 5, "could": {"_count": 1}, "can": {"_count": 1}, "want": {"_count": 2}, "think": {"_count": 1}}, "put": {"_count": 1, "all": {"_count": 1}}, "came": {"_count": 1, "Percys": {"_count": 1}}, "go": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 3, "Harry": {"_count": 2}, "smoke": {"_count": 1}}, "no": {"_count": 4, "take": {"_count": 2}, "": {"_count": 1}, "more": {"_count": 1}}, "stop": {"_count": 2, "badgering": {"_count": 1}, "biting": {"_count": 1}}, "Ron": {"_count": 1, "Hermione": {"_count": 1}}, "lets": {"_count": 2, "move": {"_count": 1}, "go": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "Minister": {"_count": 1, "these": {"_count": 1}}, "leave": {"_count": 1, "us": {"_count": 1}}, "Macnair": {"_count": 1, "came": {"_count": 1}}, "you": {"_count": 1, "two": {"_count": 1}}, "greet": {"_count": 1, "the": {"_count": 1}}, "Mr": {"_count": 2, "Diggory": {"_count": 1}, "Filch": {"_count": 1}}, "inform": {"_count": 1, "zis": {"_count": 1}}, "just": {"_count": 3, "take": {"_count": 1}, "for": {"_count": 1}, "answer": {"_count": 1}}, "She": {"_count": 1, "seized": {"_count": 1}}, "come": {"_count": 4, "back": {"_count": 2}, "out": {"_count": 1}, "along": {"_count": 1}}, "keep": {"_count": 1, "Dobby": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "raise": {"_count": 1, "their": {"_count": 1}}, "follow": {"_count": 1, "Mr": {"_count": 1}}, "Master": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "fetch": {"_count": 1, "me": {"_count": 1}}, "tell": {"_count": 3, "Madam": {"_count": 1}, "the": {"_count": 1}, "us": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "take": {"_count": 3, "the": {"_count": 2}, "this": {"_count": 1}}, "Hey": {"_count": 1, "Johnson": {"_count": 1}}, "do": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 1, "examination": {"_count": 1}}, "Narcissa": {"_count": 1, "Malfoy": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "Leanne": {"_count": 1, "and": {"_count": 1}}, "Professor": {"_count": 1, "could": {"_count": 1}}, "Dean": {"_count": 1, "she": {"_count": 1}}, "drop": {"_count": 1, "it": {"_count": 1}}, "its": {"_count": 1, "my": {"_count": 1}}, "Dumbledores": {"_count": 1, "eyelids": {"_count": 1}}, "send": {"_count": 1, "a": {"_count": 1}}, "stand": {"_count": 1, "up": {"_count": 1}}, "call": {"_count": 1, "me": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "sit": {"_count": 1, "up": {"_count": 1}}, "PLEASE": {"_count": 1, "": {"_count": 1}}, "get": {"_count": 1, "some": {"_count": 1}}, "when": {"_count": 1, "was": {"_count": 1}}, "Dont": {"_count": 1, "you": {"_count": 1}}, "give": {"_count": 1, "us": {"_count": 1}}, "stay": {"_count": 1, "still": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "explain": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "flicked": {"_count": 1}}}, "herself": {"_count": 183, "blown": {"_count": 1, "up": {"_count": 1}}, "buying": {"_count": 1, "her": {"_count": 1}}, "facing": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 25}}, "in": {"_count": 12, "class": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 2}, "front": {"_count": 1}, "mortal": {"_count": 1}, "light": {"_count": 1}, "the": {"_count": 3}, "between": {"_count": 1}, "": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 6, "pointing": {"_count": 1}, "gazed": {"_count": 1}, "refused": {"_count": 1}, "had": {"_count": 1}, "Harry": {"_count": 1}, "said": {"_count": 1}}, "hoarse": {"_count": 1, "before": {"_count": 1}}, "with": {"_count": 3, "fury": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "up": {"_count": 13, "and": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 6}, "proudly": {"_count": 1}, "again": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 1}, "Ron": {"_count": 1}}, "to": {"_count": 13, "be": {"_count": 1}, "some": {"_count": 1}, "become": {"_count": 1}, "ask": {"_count": 1}, "shepherds": {"_count": 1}, "say": {"_count": 1}, "look": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "more": {"_count": 2}, "pop": {"_count": 1}, "enter": {"_count": 1}}, "at": {"_count": 2, "home": {"_count": 1}, "Mr": {"_count": 1}}, "behind": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "some": {"_count": 3, "pumpkin": {"_count": 1}, "toast": {"_count": 1}, "coffee": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "which": {"_count": 1, "sang": {"_count": 1}}, "into": {"_count": 12, "the": {"_count": 4}, "a": {"_count": 2}, "something": {"_count": 1}, "his": {"_count": 1}, "Rons": {"_count": 2}, "Harrys": {"_count": 1}, "thinking": {"_count": 1}}, "back": {"_count": 3, "through": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}}, "she": {"_count": 5, "Harry": {"_count": 1}, "headed": {"_count": 1}, "was": {"_count": 1}, "took": {"_count": 1}, "half": {"_count": 1}}, "off": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "onto": {"_count": 3, "the": {"_count": 2}, "him": {"_count": 1}}, "on": {"_count": 2, "top": {"_count": 1}, "the": {"_count": 1}}, "shakily": {"_count": 1, "into": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "from": {"_count": 2, "falling": {"_count": 1}, "rolling": {"_count": 1}}, "precariously": {"_count": 1, "upon": {"_count": 1}}, "down": {"_count": 5, "in": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 1}, "upon": {"_count": 1}, "into": {"_count": 1}}, "either": {"_count": 1, "in": {"_count": 1}}, "forward": {"_count": 3, "off": {"_count": 1}, "onto": {"_count": 1}, "and": {"_count": 1}}, "that": {"_count": 3, "one": {"_count": 1}, "if": {"_count": 1}, "he": {"_count": 1}}, "differently": {"_count": 1, "somehow": {"_count": 1}}, "facetoface": {"_count": 1, "not": {"_count": 1}}, "get": {"_count": 1, "trampled": {"_count": 1}}, "apparently": {"_count": 1, "shortly": {"_count": 1}}, "lost": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "squarely": {"_count": 1, "in": {"_count": 1}}, "alive": {"_count": 1, "out": {"_count": 1}}, "nervously": {"_count": 1, "on": {"_count": 1}}, "giggling": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 4, "much": {"_count": 1}, "opposed": {"_count": 1}, "she": {"_count": 1}, "still": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "Terry": {"_count": 1, "Boot": {"_count": 1}}, "because": {"_count": 2, "shes": {"_count": 1}, "Peeves": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "vigorously": {"_count": 1, "with": {"_count": 1}}, "wringing": {"_count": 1, "her": {"_count": 1}}, "all": {"_count": 1, "worked": {"_count": 1}}, "together": {"_count": 4, "yes": {"_count": 1}, "ran": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "sitting": {"_count": 1, "up": {"_count": 1}}, "had": {"_count": 2, "told": {"_count": 1}, "not": {"_count": 1}}, "gently": {"_count": 1, "from": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "by": {"_count": 1, "magic": {"_count": 1}}, "now": {"_count": 1, "with": {"_count": 1}}, "almost": {"_count": 1, "absentmindedly": {"_count": 1}}, "but": {"_count": 1, "Quite": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "sinuously": {"_count": 1, "around": {"_count": 1}}, "then": {"_count": 2, "rounded": {"_count": 1}, "at": {"_count": 1}}, "alone": {"_count": 1, "with": {"_count": 1}}, "incredibly": {"_count": 1, "vulnerable": {"_count": 1}}, "hugely": {"_count": 1, "snapped": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "around": {"_count": 1, "RiddleHarry": {"_count": 1}}, "than": {"_count": 1, "to": {"_count": 1}}, "aside": {"_count": 1, "with": {"_count": 1}}, "Ron": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "skyward": {"_count": 1, "with": {"_count": 1}}, "away": {"_count": 1, "by": {"_count": 1}}}, "blown": {"_count": 22, "up": {"_count": 4, "and": {"_count": 1}, "a": {"_count": 2}, "an": {"_count": 1}}, "off": {"_count": 3, "course": {"_count": 2}, "and": {"_count": 1}}, "away": {"_count": 3, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "into": {"_count": 2, "about": {"_count": 1}, "the": {"_count": 1}}, "itself": {"_count": 1, "out": {"_count": 1}}, "somewhere": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "lightbulbs": {"_count": 1, "": {"_count": 1}}, "everything": {"_count": 1, "But": {"_count": 1}}, "apart": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "backward": {"_count": 1, "its": {"_count": 1}}}, "Blown": {"_count": 2, "up": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}}, "CAR": {"_count": 2, "CRASH": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "WOULDNT": {"_count": 1}}}, "CRASH": {"_count": 3, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}}, "scuttled": {"_count": 14, "back": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 2, "to": {"_count": 1}, "toward": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 4, "tearing": {"_count": 1}, "from": {"_count": 1}, "looking": {"_count": 1}, "at": {"_count": 1}}, "sideways": {"_count": 1, "along": {"_count": 1}}, "frantically": {"_count": 1, "around": {"_count": 1}}, "around": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "Harrys": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "outrage": {"_count": 15, "": {"_count": 9, "!": {"_count": 1}, ".": {"_count": 8}}, "at": {"_count": 1, "these": {"_count": 1}}, "Im": {"_count": 1, "Im": {"_count": 1}}, "yesterday": {"_count": 1, "by": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "Aunt": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}}, "scandal": {"_count": 4, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "fifteen": {"_count": 1, "years": {"_count": 1}}}, "knowin": {"_count": 6, "his": {"_count": 1, "own": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "about": {"_count": 1, "Quidditch": {"_count": 1}}, "yer": {"_count": 1, "name": {"_count": 1}}, "moren": {"_count": 1, "yeh": {"_count": 1}}, "where": {"_count": 1, "we": {"_count": 1}}}, "kid": {"_count": 27, "in": {"_count": 1, "our": {"_count": 1}}, "here": {"_count": 1, "we": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "do": {"_count": 1}}, "hes": {"_count": 1, "runnin": {"_count": 1}}, "was": {"_count": 1, "found": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "stuff": {"_count": 1, "he": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "yourself": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "we": {"_count": 1, "all": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "mean": {"_count": 1}}, "ter": {"_count": 1, "Hogwarts": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "actually": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "run": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 2, "go": {"_count": 1}, "be": {"_count": 1}}, "injured": {"_count": 1, "did": {"_count": 1}}, "themselves": {"_count": 1, "thats": {"_count": 1}}, "she": {"_count": 1, "couldnt": {"_count": 1}}}, "urgently": {"_count": 34, "": {"_count": 21, ".": {"_count": 21}}, "and": {"_count": 1, "Ron": {"_count": 1}}, "his": {"_count": 1, "knees": {"_count": 1}}, "to": {"_count": 2, "Professor": {"_count": 1}, "him": {"_count": 1}}, "Hes": {"_count": 1, "just": {"_count": 1}}, "dropping": {"_count": 1, "all": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "you": {"_count": 1, "must": {"_count": 1}}, "sweeping": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 1, "we": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 1, "Bogrods": {"_count": 1}}}, "faded": {"_count": 45, "from": {"_count": 7, "Hagrids": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 2}, "sight": {"_count": 1}, "Rons": {"_count": 1}}, "purple": {"_count": 1, "cushion": {"_count": 1}}, "quickly": {"_count": 1, "from": {"_count": 1}}, "gold": {"_count": 1, "letters": {"_count": 1}}, "away": {"_count": 5, "": {"_count": 2}, "but": {"_count": 1}, "into": {"_count": 1}, "with": {"_count": 1}}, "a": {"_count": 2, "little": {"_count": 2}}, "slightly": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "year": {"_count": 1, "on": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "imperceptibly": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 1, "silence": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 5, "the": {"_count": 2}, "he": {"_count": 1}, "looked": {"_count": 1}, "Harry": {"_count": 1}}, "completely": {"_count": 1, "they": {"_count": 1}}, "off": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "Rons": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "slowly": {"_count": 1, "from": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "black": {"_count": 1, "leather": {"_count": 1}}, "scarlet": {"_count": 1, "and": {"_count": 1}}, "smiles": {"_count": 1, "and": {"_count": 1}}, "curtains": {"_count": 1, "looked": {"_count": 1}}, "old": {"_count": 1, "photograph": {"_count": 1}}, "eyes": {"_count": 1, "rolling": {"_count": 1}}, "he": {"_count": 1, "turned": {"_count": 1}}}, "idea": {"_count": 337, "when": {"_count": 1, "Dumbledore": {"_count": 1}}, "but": {"_count": 3, "yer": {"_count": 1}, "thank": {"_count": 1}, "its": {"_count": 1}}, "what": {"_count": 28, "Mr": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 3}, "Hermione": {"_count": 2}, "Blacks": {"_count": 1}, "made": {"_count": 1}, "they": {"_count": 1}, "hed": {"_count": 1}, "its": {"_count": 1}, "you": {"_count": 1}, "thats": {"_count": 1}, "Crouch": {"_count": 1}, "it": {"_count": 2}, "youve": {"_count": 1}, "the": {"_count": 1}, "trouble": {"_count": 1}, "danger": {"_count": 1}, "lies": {"_count": 1}, "to": {"_count": 1}, "Dumbledore": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "she": {"_count": 1}, "this": {"_count": 1}}, "how": {"_count": 14, "to": {"_count": 2}, "worried": {"_count": 1}, "long": {"_count": 3}, "he": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}, "much": {"_count": 3}, "close": {"_count": 1}, "few": {"_count": 1}}, "": {"_count": 46, ".": {"_count": 34}, "!": {"_count": 9}, "?": {"_count": 3}}, "though": {"_count": 1, "thanks": {"_count": 1}}, "that": {"_count": 24, "they": {"_count": 3}, "Professor": {"_count": 1}, "Snape": {"_count": 1}, "Im": {"_count": 1}, "you": {"_count": 1}, "Dumbledore": {"_count": 4}, "Harry": {"_count": 1}, "Sirius": {"_count": 1}, "he": {"_count": 3}, "it": {"_count": 1}, "there": {"_count": 2}, "we": {"_count": 1}, "anything": {"_count": 1}, "had": {"_count": 1}, "You": {"_count": 1}, "Gryffindor": {"_count": 1}}, "where": {"_count": 10, "they": {"_count": 3}, "Dumbledore": {"_count": 1}, "he": {"_count": 3}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "exactly": {"_count": 1}}, "said": {"_count": 32, "Ron": {"_count": 6}, "Harry": {"_count": 13}, "Myrtle": {"_count": 1}, "Hagrid": {"_count": 1}, "Sirius": {"_count": 1}, "Lupin": {"_count": 1}, "Nearly": {"_count": 1}, "Snape": {"_count": 2}, "Fudge": {"_count": 1}, "Ogden": {"_count": 1}, "Fred": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 1}, "Mr": {"_count": 1}}, "of": {"_count": 78, "Harry": {"_count": 1}, "overtaking": {"_count": 1}, "whats": {"_count": 1}, "Voldemort": {"_count": 2}, "a": {"_count": 11}, "what": {"_count": 4}, "facing": {"_count": 1}, "his": {"_count": 2}, "being": {"_count": 3}, "course": {"_count": 2}, "how": {"_count": 1}, "doing": {"_count": 1}, "someone": {"_count": 1}, "your": {"_count": 2}, "the": {"_count": 11}, "an": {"_count": 2}, "refilling": {"_count": 1}, "going": {"_count": 1}, "wizards": {"_count": 1}, "fun": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "using": {"_count": 1}, "reliving": {"_count": 1}, "hiding": {"_count": 1}, "Hagrid": {"_count": 1}, "my": {"_count": 1}, "Dobbys": {"_count": 1}, "standing": {"_count": 1}, "where": {"_count": 1}, "hastening": {"_count": 1}, "invisible": {"_count": 1}, "owning": {"_count": 1}, "Inferi": {"_count": 1}, "letting": {"_count": 1}, "its": {"_count": 2}, "retelling": {"_count": 1}, "poisoning": {"_count": 1}, "waiting": {"_count": 1}, "Slytherins": {"_count": 1}, "Tonks": {"_count": 1}, "possessing": {"_count": 1}, "Dumbledores": {"_count": 1}, "pain": {"_count": 1}, "goblinmade": {"_count": 1}, "humor": {"_count": 1}, "decoys": {"_count": 1}}, "from": {"_count": 5, "Malfoy": {"_count": 1}, "the": {"_count": 2}, "Professor": {"_count": 1}, "them": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "Lockhart": {"_count": 1, "continued": {"_count": 1}}, "Harry": {"_count": 8, "lied": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}, "muttered": {"_count": 1}, "she": {"_count": 1}, "had": {"_count": 1}, "much": {"_count": 1}, "bellowed": {"_count": 1}}, "if": {"_count": 3, "he": {"_count": 1}, "we": {"_count": 1}, "word": {"_count": 1}}, "firmly": {"_count": 1, "lodged": {"_count": 1}}, "to": {"_count": 6, "show": {"_count": 2}, "tell": {"_count": 1}, "work": {"_count": 1}, "mention": {"_count": 1}, "form": {"_count": 1}}, "Professor": {"_count": 1, "Lockhart": {"_count": 1}}, "whos": {"_count": 1, "behind": {"_count": 1}}, "sit": {"_count": 1, "down": {"_count": 1}}, "for": {"_count": 3, "Lord": {"_count": 1}, "you": {"_count": 1}, "Sirius": {"_count": 1}}, "were": {"_count": 1, "ludicrous": {"_count": 1}}, "would": {"_count": 2, "torment": {"_count": 1}, "have": {"_count": 1}}, "I": {"_count": 3, "was": {"_count": 1}, "just": {"_count": 1}, "mean": {"_count": 1}}, "an": {"_count": 1, "impossible": {"_count": 1}}, "and": {"_count": 2, "closed": {"_count": 1}, "set": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "youre": {"_count": 1, "too": {"_count": 1}}, "he": {"_count": 8, "said": {"_count": 2}, "was": {"_count": 2}, "had": {"_count": 2}, "knew": {"_count": 1}, "told": {"_count": 1}}, "who": {"_count": 3, "put": {"_count": 1}, "youre": {"_count": 1}, "had": {"_count": 1}}, "ask": {"_count": 1, "Fred": {"_count": 1}}, "Cedric": {"_count": 1, "might": {"_count": 1}}, "the": {"_count": 2, "rest": {"_count": 1}, "stupid": {"_count": 1}}, "youve": {"_count": 1, "had": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "sleep": {"_count": 1, "rolled": {"_count": 1}}, "she": {"_count": 2, "added": {"_count": 1}, "said": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "about": {"_count": 1, "things": {"_count": 1}}, "was": {"_count": 2, "so": {"_count": 1}, "dreadful": {"_count": 1}}, "thought": {"_count": 1, "you": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 4, "then": {"_count": 1}, "taken": {"_count": 1}, "just": {"_count": 1}, "come": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "seemed": {"_count": 1, "quite": {"_count": 1}}, "why": {"_count": 1, "Dumbledore": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "Black": {"_count": 1, "getting": {"_count": 1}}, "Dont": {"_count": 1, "start": {"_count": 1}}, "at": {"_count": 2, "first": {"_count": 1}, "once": {"_count": 1}}, "occurring": {"_count": 1, "": {"_count": 1}}, "struck": {"_count": 1, "him": {"_count": 1}}, "than": {"_count": 1, "a": {"_count": 1}}, "Wormtail": {"_count": 1, "that": {"_count": 1}}, "however": {"_count": 1, "came": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "Im": {"_count": 1, "definitely": {"_count": 1}}, "originally": {"_count": 1, "you": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "which": {"_count": 1, "way": {"_count": 1}}, "it": {"_count": 1, "just": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "into": {"_count": 1, "action": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "but": {"_count": 1}}}, "someones": {"_count": 21, "gotta": {"_count": 1, "yeh": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "attic": {"_count": 1, "and": {"_count": 1}}, "upset": {"_count": 1, "Ron": {"_count": 1}}, "putting": {"_count": 1, "it": {"_count": 1}}, "hoping": {"_count": 1, "Potter": {"_count": 1}}, "entered": {"_count": 1, "me": {"_count": 1}}, "asked": {"_count": 1, "that": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "eye": {"_count": 1, "out": {"_count": 1}}, "kissing": {"_count": 1, "them": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "put": {"_count": 1, "another": {"_count": 1}}, "let": {"_count": 2, "off": {"_count": 2}}, "toes": {"_count": 1, "and": {"_count": 1}}, "scribbled": {"_count": 1, "on": {"_count": 1}}, "hurt": {"_count": 1, "back": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "destroyed": {"_count": 1, "it": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}}, "gotta": {"_count": 21, "yeh": {"_count": 1, "cant": {"_count": 1}}, "get": {"_count": 5, "up": {"_count": 1}, "yer": {"_count": 1}, "this": {"_count": 1}, "yeh": {"_count": 1}, "him": {"_count": 1}}, "visit": {"_count": 1, "Gringotts": {"_count": 1}}, "find": {"_count": 1, "yer": {"_count": 1}}, "have": {"_count": 1, "the": {"_count": 1}}, "be": {"_count": 4, "off": {"_count": 1}, "a": {"_count": 1}, "now": {"_count": 1}, "better": {"_count": 1}}, "know": {"_count": 1, "abou": {"_count": 1}}, "go": {"_count": 2, "inter": {"_count": 1}, "said": {"_count": 1}}, "tell": {"_count": 2, "yeh": {"_count": 1}, "Dumbledore": {"_count": 1}}, "do": {"_count": 1, "fight": {"_count": 1}}, "scrape": {"_count": 1, "a": {"_count": 1}}, "keep": {"_count": 1, "his": {"_count": 1}}}, "everythin": {"_count": 6, "its": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "ready": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "guess": {"_count": 1}}, "seems": {"_count": 1, "ter": {"_count": 1}}}, "mystry": {"_count": 4, "parts": {"_count": 1, "of": {"_count": 1}}, "is": {"_count": 1, "why": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}}, "parts": {"_count": 13, "of": {"_count": 7, "it": {"_count": 2}, "his": {"_count": 1}, "Harrys": {"_count": 1}, "himself": {"_count": 1}, "the": {"_count": 2}}, "theyd": {"_count": 1, "left": {"_count": 1}}, "labeled": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Wilkie": {"_count": 1}}, "that": {"_count": 1, "threaten": {"_count": 1}}}, "incredible": {"_count": 24, "yeh": {"_count": 1, "dont": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "but": {"_count": 1, "to": {"_count": 1}}, "Dudley": {"_count": 1, "gasped": {"_count": 1}}, "sight": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Chasers": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}, "really": {"_count": 1, "gives": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 4, "Snape": {"_count": 1}, "Dumbledore": {"_count": 3}}, "and": {"_count": 1, "yet": {"_count": 1}}, "treasure": {"_count": 1, "proof": {"_count": 1}}, "stories": {"_count": 1, "about": {"_count": 1}}, "about": {"_count": 1, "Dumbledore": {"_count": 1}}, "magical": {"_count": 1, "historian": {"_count": 1}}, "fascination": {"_count": 1, "to": {"_count": 1}}}, "sayin": {"_count": 10, "the": {"_count": 1, "name": {"_count": 1}}, "thats": {"_count": 1, "not": {"_count": 1}}, "nothin": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "its": {"_count": 1, "still": {"_count": 1}}, "there": {"_count": 1, "isnt": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "tha": {"_count": 1, "name": {"_count": 1}}, "Dumbledore": {"_count": 1, "took": {"_count": 1}}}, "Gulpin": {"_count": 1, "gargoyles": {"_count": 1, "Harry": {"_count": 1}}}, "gargoyles": {"_count": 9, "Harry": {"_count": 1, "people": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 3}, ".": {"_count": 1}}, "flanked": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "usually": {"_count": 1}}}, "scared": {"_count": 110, "": {"_count": 29, ".": {"_count": 25}, "!": {"_count": 3}, "?": {"_count": 1}}, "or": {"_count": 2, "angry": {"_count": 1}, "at": {"_count": 1}}, "of": {"_count": 15, "his": {"_count": 1}, "Harry": {"_count": 1}, "missing": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "heights": {"_count": 1}, "him": {"_count": 3}, "getting": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "looking": {"_count": 1}}, "youll": {"_count": 1, "crash": {"_count": 1}}, "when": {"_count": 1, "something": {"_count": 1}}, "white": {"_count": 1, "face": {"_count": 1}}, "looking": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 15, "face": {"_count": 1}, "back": {"_count": 1}, "go": {"_count": 1}, "hear": {"_count": 1}, "actually": {"_count": 1}, "perform": {"_count": 1}, "move": {"_count": 2}, "say": {"_count": 1}, "make": {"_count": 1}, "sleep": {"_count": 1}, "see": {"_count": 1}, "speak": {"_count": 1}, "violate": {"_count": 1}, "tell": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "them": {"_count": 2, "but": {"_count": 1}, "I": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "Harry": {"_count": 1}}, "look": {"_count": 1, "on": {"_count": 1}}, "Im": {"_count": 2, "not": {"_count": 1}, "scared": {"_count": 1}}, "but": {"_count": 1, "Arthur": {"_count": 1}}, "him": {"_count": 3, "most": {"_count": 1}, "out": {"_count": 1}, "slightly": {"_count": 1}}, "o": {"_count": 1, "breakin": {"_count": 1}}, "Sirius": {"_count": 1, "I": {"_count": 1}}, "Dudley": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 1, "Death": {"_count": 1}}, "and": {"_count": 6, "confused": {"_count": 1}, "more": {"_count": 1}, "impressed": {"_count": 1}, "excited": {"_count": 1}, "resentful": {"_count": 1}, "harmless": {"_count": 1}}, "for": {"_count": 1, "yourself": {"_count": 1}}, "Harry": {"_count": 2, "could": {"_count": 1}, "": {"_count": 1}}, "well": {"_count": 1, "use": {"_count": 1}}, "Ron": {"_count": 1, "strode": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "dear": {"_count": 1, "dont": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "than": {"_count": 1, "she": {"_count": 1}}, "looks": {"_count": 1, "at": {"_count": 1}}, "Borgin": {"_count": 1, "": {"_count": 1}}, "hell": {"_count": 1, "find": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "his": {"_count": 1}, "if": {"_count": 1}}, "at": {"_count": 1, "how": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "her": {"_count": 1, "with": {"_count": 1}}, "too": {"_count": 1, "he": {"_count": 1}}, "people": {"_count": 1, "off": {"_count": 1}}}, "Blimey": {"_count": 55, "this": {"_count": 2, "is": {"_count": 2}}, "Harry": {"_count": 7, "everyone": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}, "how": {"_count": 1}, "after": {"_count": 1}, "panted": {"_count": 1}, "you": {"_count": 1}}, "said": {"_count": 5, "the": {"_count": 1}, "Ron": {"_count": 2}, "Mundungus": {"_count": 1}, "James": {"_count": 1}}, "Im": {"_count": 1, "tired": {"_count": 1}}, "my": {"_count": 1, "earts": {"_count": 1}}, "": {"_count": 9, "!": {"_count": 3}, ".": {"_count": 6}}, "whod": {"_count": 1, "spend": {"_count": 1}}, "haven": {"_count": 1, "yeh": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "shed": {"_count": 1, "better": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 5, "": {"_count": 1}, "cant": {"_count": 1}, "think": {"_count": 1}, "forgot": {"_count": 1}, "hope": {"_count": 1}}, "so": {"_count": 1, "e": {"_count": 1}}, "Mum": {"_count": 1, "wont": {"_count": 1}}, "it": {"_count": 2, "is": {"_count": 1}, "was": {"_count": 1}}, "its": {"_count": 3, "good": {"_count": 1}, "seriously": {"_count": 1}, "small": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "dont": {"_count": 1}}, "no": {"_count": 1, "said": {"_count": 1}}, "whispered": {"_count": 1, "Ron": {"_count": 1}}, "Dudley": {"_count": 1, "said": {"_count": 1}}, "Hermione": {"_count": 1, "I": {"_count": 1}}, "thats": {"_count": 1, "scary": {"_count": 1}}, "you": {"_count": 1, "could": {"_count": 1}}, "but": {"_count": 1, "would": {"_count": 1}}, "a": {"_count": 1, "baby": {"_count": 1}}, "Neville": {"_count": 1, "said": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}}, "Worse": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "than": {"_count": 2, "worse": {"_count": 1}, "murdering": {"_count": 1}}, "still": {"_count": 2, "heartshaped": {"_count": 1}, "it": {"_count": 1}}, "even": {"_count": 1, "than": {"_count": 1}}}, "gulped": {"_count": 31, "but": {"_count": 2, "no": {"_count": 1}, "my": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "it": {"_count": 2, "was": {"_count": 1}, "down": {"_count": 1}}, "and": {"_count": 5, "dived": {"_count": 1}, "said": {"_count": 1}, "then": {"_count": 1}, "took": {"_count": 1}, "disappeared": {"_count": 1}}, "then": {"_count": 2, "there": {"_count": 1}, "swooped": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "dabbed": {"_count": 1, "at": {"_count": 1}}, "down": {"_count": 3, "her": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "Hermione": {"_count": 1, "into": {"_count": 1}}, "great": {"_count": 1, "lungfuls": {"_count": 1}}, "soup": {"_count": 1, "clattering": {"_count": 1}}, "Hagrid": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "antidote": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "Nah": {"_count": 21, "cant": {"_count": 1, "spell": {"_count": 1}}, "first": {"_count": 1, "stop": {"_count": 1}}, "were": {"_count": 1, "best": {"_count": 1}}, "Im": {"_count": 1, "all": {"_count": 1}}, "if": {"_count": 1, "yeh": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "it": {"_count": 2, "wouldve": {"_count": 1}, "was": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "Ive": {"_count": 1, "caused": {"_count": 1}}, "he": {"_count": 2, "can": {"_count": 1}, "cant": {"_count": 1}}, "theyre": {"_count": 1, "Healers": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "didnt": {"_count": 1}}, "well": {"_count": 1, "we": {"_count": 1}}, "I": {"_count": 1, "don": {"_count": 1}}, "hes": {"_count": 1, "just": {"_count": 1}}, "that": {"_count": 1, "storys": {"_count": 1}}, "they": {"_count": 1, "make": {"_count": 1}}}, "spell": {"_count": 150, "it": {"_count": 1, "": {"_count": 1}}, "books": {"_count": 3, "and": {"_count": 2}, "quills": {"_count": 1}}, "didnt": {"_count": 1, "work": {"_count": 1}}, "": {"_count": 15, "?": {"_count": 4}, ".": {"_count": 11}}, "George": {"_count": 1, "gave": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "on": {"_count": 1}}, "that": {"_count": 12, "came": {"_count": 1}, "Snape": {"_count": 1}, "might": {"_count": 4}, "would": {"_count": 1}, "will": {"_count": 1}, "emanated": {"_count": 1}, "caused": {"_count": 1}, "filled": {"_count": 1}, "seemed": {"_count": 1}}, "and": {"_count": 6, "how": {"_count": 1}, "Snapes": {"_count": 1}, "turned": {"_count": 1}, "though": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}}, "Theres": {"_count": 1, "still": {"_count": 1}}, "to": {"_count": 6, "set": {"_count": 1}, "slow": {"_count": 1}, "make": {"_count": 1}, "get": {"_count": 1}, "reveal": {"_count": 1}, "tell": {"_count": 1}}, "Ive": {"_count": 1, "done": {"_count": 1}}, "our": {"_count": 1, "Hermione": {"_count": 1}}, "hit": {"_count": 10, "Harry": {"_count": 1}, "the": {"_count": 5}, "Krum": {"_count": 1}, "Dolohov": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "lit": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 5, "told": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 2}, "was": {"_count": 1}}, "had": {"_count": 6, "done": {"_count": 1}, "no": {"_count": 1}, "started": {"_count": 1}, "knocked": {"_count": 1}, "cost": {"_count": 1}, "woken": {"_count": 1}}, "in": {"_count": 1, "Azkaban": {"_count": 1}}, "I": {"_count": 2, "am": {"_count": 1}, "recognized": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "a": {"_count": 1, "wand": {"_count": 1}}, "on": {"_count": 4, "yourself": {"_count": 1}, "my": {"_count": 1}, "anyone": {"_count": 1}, "Snape": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "but": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "none": {"_count": 1, "but": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "shot": {"_count": 1, "straight": {"_count": 1}}, "or": {"_count": 2, "two": {"_count": 1}, "enchantment": {"_count": 1}}, "can": {"_count": 1, "reawaken": {"_count": 1}}, "automatically": {"_count": 1, "desperate": {"_count": 1}}, "hadnt": {"_count": 1, "worked": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "overnight": {"_count": 1, "ready": {"_count": 1}}, "whooshed": {"_count": 1, "over": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 5, "once": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 2}, "any": {"_count": 1}}, "damage": {"_count": 1, "you": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "models": {"_count": 1, "and": {"_count": 1}}, "die": {"_count": 1, "Ron": {"_count": 1}}, "caused": {"_count": 1, "hers": {"_count": 1}}, "the": {"_count": 1, "door": {"_count": 1}}, "soared": {"_count": 1, "inches": {"_count": 1}}, "pulled": {"_count": 1, "him": {"_count": 1}}, "was": {"_count": 4, "lifted": {"_count": 1}, "highly": {"_count": 1}, "still": {"_count": 1}, "broken": {"_count": 1}}, "zoomed": {"_count": 1, "past": {"_count": 1}}, "merely": {"_count": 1, "glanced": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "Praying": {"_count": 1, "that": {"_count": 1}}, "by": {"_count": 1, "any": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "ever": {"_count": 1}}, "\u2018belligerent": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "upon": {"_count": 1, "those": {"_count": 1}}, "captioned": {"_count": 1, "For": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "Will": {"_count": 1, "you": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "good": {"_count": 1, "Ginny": {"_count": 1}}, "you": {"_count": 1, "used": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "darkness": {"_count": 1}}, "we": {"_count": 1, "didnt": {"_count": 1}}, "fired": {"_count": 1, "another": {"_count": 1}}, "missed": {"_count": 1, "rebounded": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "wed": {"_count": 1, "cast": {"_count": 1}}, "flew": {"_count": 2, "around": {"_count": 1}, "up": {"_count": 1}}, "practice": {"_count": 1, "for": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "intended": {"_count": 1, "for": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}}, "Don": {"_count": 29, "make": {"_count": 1, "me": {"_count": 1}}, "reckon": {"_count": 2, "they": {"_count": 1}, "theyve": {"_count": 1}}, "mind": {"_count": 1, "if": {"_count": 1}}, "mention": {"_count": 1, "it": {"_count": 1}}, "expect": {"_count": 1, "youve": {"_count": 1}}, "you": {"_count": 2, "worry": {"_count": 1}, "talk": {"_count": 1}}, "go": {"_count": 2, "shoutin": {"_count": 1}, "pure": {"_count": 1}}, "worry": {"_count": 5, "it": {"_count": 2}, "abou": {"_count": 3}}, "think": {"_count": 1, "he": {"_count": 1}}, "listen": {"_count": 3, "properly": {"_count": 1}, "": {"_count": 2}}, "look": {"_count": 1, "properly": {"_count": 1}}, "yeh": {"_count": 1, "like": {"_count": 1}}, "panic": {"_count": 1, "now": {"_count": 1}}, "frighten": {"_count": 1, "him": {"_count": 1}}, "open": {"_count": 1, "em": {"_count": 1}}, "be": {"_count": 1, "silly": {"_count": 1}}, "fret": {"_count": 1, "theyll": {"_count": 1}}, "shout": {"_count": 1, "stuff": {"_count": 1}}, "don": {"_count": 1, "matter": {"_count": 1}}, "say": {"_count": 1, "that": {"_count": 1}}}, "lookin": {"_count": 15, "fer": {"_count": 7, "followers": {"_count": 1}, "Nicolas": {"_count": 1}, "a": {"_count": 3}, "signs": {"_count": 1}, "us": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "": {"_count": 2}}, "all": {"_count": 1, "eager": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}}, "followers": {"_count": 22, "": {"_count": 8, ".": {"_count": 4}, "?": {"_count": 3}, "!": {"_count": 1}}, "as": {"_count": 2, "his": {"_count": 1}, "he": {"_count": 1}}, "would": {"_count": 1, "give": {"_count": 1}}, "had": {"_count": 1, "disbanded": {"_count": 1}}, "sent": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "only": {"_count": 1}}, "known": {"_count": 1, "as": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "who": {"_count": 1, "broke": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 1, "Potter": {"_count": 1}}, "are": {"_count": 1, "once": {"_count": 1}}, "I": {"_count": 1, "understand": {"_count": 1}}}, "afraid": {"_count": 125, "some": {"_count": 1, "just": {"_count": 1}}, "of": {"_count": 19, "": {"_count": 3}, "Snape": {"_count": 1}, "birds": {"_count": 1}, "magic": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 1}, "whats": {"_count": 1}, "roughin": {"_count": 1}, "death": {"_count": 1}, "that": {"_count": 1}, "showering": {"_count": 1}, "Malfoy": {"_count": 1}, "what": {"_count": 2}, "the": {"_count": 1}, "making": {"_count": 1}, "it": {"_count": 1}}, "l": {"_count": 1, "And": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 6, "had": {"_count": 1}, "is": {"_count": 3}, "might": {"_count": 1}, "was": {"_count": 1}}, "Ive": {"_count": 1, "rather": {"_count": 1}}, "we": {"_count": 4, "feel": {"_count": 1}, "will": {"_count": 1}, "would": {"_count": 1}, "shall": {"_count": 1}}, "he": {"_count": 4, "wont": {"_count": 1}, "had": {"_count": 1}, "might": {"_count": 1}, "went": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "?": {"_count": 1}, "!": {"_count": 1}}, "not": {"_count": 1, "Potter": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 15, "for": {"_count": 1}, "is": {"_count": 1}, "you": {"_count": 3}, "neither": {"_count": 1}, "would": {"_count": 1}, "they": {"_count": 2}, "I": {"_count": 1}, "one": {"_count": 1}, "he": {"_count": 1}, "something": {"_count": 1}, "she": {"_count": 1}, "your": {"_count": 1}}, "no": {"_count": 1, "dementor": {"_count": 1}}, "youd": {"_count": 1, "take": {"_count": 1}}, "the": {"_count": 1, "poor": {"_count": 1}}, "I": {"_count": 17, "will": {"_count": 1}, "dont": {"_count": 8}, "cannot": {"_count": 2}, "can": {"_count": 1}, "do": {"_count": 1}, "am": {"_count": 1}, "shall": {"_count": 1}, "": {"_count": 1}, "counted": {"_count": 1}}, "its": {"_count": 1, "given": {"_count": 1}}, "to": {"_count": 13, "move": {"_count": 1}, "say": {"_count": 4}, "make": {"_count": 1}, "see": {"_count": 1}, "sever": {"_count": 1}, "take": {"_count": 1}, "show": {"_count": 1}, "leave": {"_count": 1}, "act": {"_count": 1}, "trust": {"_count": 1}}, "you": {"_count": 5, "will": {"_count": 3}, "are": {"_count": 1}, "do": {"_count": 1}}, "MUNDUNGUS": {"_count": 1, "FLETCHER": {"_count": 1}}, "said": {"_count": 3, "Tonks": {"_count": 1}, "Dumbledore": {"_count": 2}}, "youll": {"_count": 1, "have": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Dumbledores": {"_count": 1, "doing": {"_count": 1}}, "shes": {"_count": 1, "going": {"_count": 1}}, "youre": {"_count": 1, "wasting": {"_count": 1}}, "perhaps": {"_count": 1, "that": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "so": {"_count": 1, "said": {"_count": 1}}, "she": {"_count": 2, "went": {"_count": 1}, "said": {"_count": 1}}, "those": {"_count": 1, "who": {"_count": 1}}, "The": {"_count": 1, "hooded": {"_count": 1}}, "my": {"_count": 1, "Lord": {"_count": 1}}, "than": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "silence": {"_count": 1}}}, "cause": {"_count": 53, "he": {"_count": 2, "was": {"_count": 1}, "kept": {"_count": 1}}, "their": {"_count": 1, "mothers": {"_count": 1}}, "its": {"_count": 2, "dangerous": {"_count": 1}, "you": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "havoc": {"_count": 1, "and": {"_count": 1}}, "enough": {"_count": 1, "mayhem": {"_count": 1}}, "of": {"_count": 2, "death": {"_count": 1}, "it": {"_count": 1}}, "it": {"_count": 1, "might": {"_count": 1}}, "those": {"_count": 1, "talons": {"_count": 1}}, "a": {"_count": 3, "panic": {"_count": 1}, "diversion": {"_count": 1}, "powerful": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "trouble": {"_count": 1, "Amos": {"_count": 1}}, "for": {"_count": 4, "celebration": {"_count": 2}, "more": {"_count": 1}, "jealousy": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "you": {"_count": 1, "put": {"_count": 1}}, "severe": {"_count": 1, "drowsiness": {"_count": 1}}, "Malfoy": {"_count": 1, "as": {"_count": 1}}, "Olympe": {"_count": 1, "an": {"_count": 1}}, "we": {"_count": 1, "knew": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "they": {"_count": 1, "don": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "wed": {"_count": 1, "used": {"_count": 1}}, "the": {"_count": 3, "Gurg": {"_count": 1}, "sensation": {"_count": 1}, "Chamber": {"_count": 1}}, "theyll": {"_count": 1, "like": {"_count": 1}}, "hes": {"_count": 2, "not": {"_count": 1}, "so": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "maximum": {"_count": 1, "impact": {"_count": 1}}, "him": {"_count": 3, "to": {"_count": 1}, "unendurable": {"_count": 2}}, "pain": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "Ron": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "alarm": {"_count": 1}}, "more": {"_count": 1, "damage": {"_count": 1}}, "there": {"_count": 1, "aint": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "screaming": {"_count": 1, "and": {"_count": 1}}}, "Dark": {"_count": 516, "days": {"_count": 2, "Harry": {"_count": 1}, "would": {"_count": 1}}, "Side": {"_count": 10, "": {"_count": 6}, "Sirius": {"_count": 1}, "theres": {"_count": 1}, "was": {"_count": 1}, "Fridwulfa": {"_count": 1}}, "Forces": {"_count": 3, "A": {"_count": 2}, "": {"_count": 1}}, "wizard": {"_count": 21, "Grindelwald": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 3}, "could": {"_count": 1}, "for": {"_count": 2}, "catcher": {"_count": 2}, "catchers": {"_count": 1}, "couldnt": {"_count": 1}, "has": {"_count": 1}, "is": {"_count": 1}, "which": {"_count": 1}, "of": {"_count": 1}, "will": {"_count": 1}, "Dumbledore": {"_count": 1}, "whos": {"_count": 1}, "in": {"_count": 1}}, "Arts": {"_count": 174, "and": {"_count": 10}, "Snape": {"_count": 1}, "but": {"_count": 3}, "": {"_count": 26}, "while": {"_count": 1}, "teacher": {"_count": 25}, "job": {"_count": 10}, "said": {"_count": 6}, "lesson": {"_count": 9}, "stuff": {"_count": 1}, "consorted": {"_count": 1}, "classes": {"_count": 2}, "teachers": {"_count": 4}, "this": {"_count": 2}, "before": {"_count": 1}, "had": {"_count": 2}, "he": {"_count": 2}, "classroom": {"_count": 4}, "again": {"_count": 1}, "that": {"_count": 1}, "class": {"_count": 2}, "to": {"_count": 2}, "a": {"_count": 1}, "seriously": {"_count": 1}, "in": {"_count": 1}, "A": {"_count": 1}, "is": {"_count": 2}, "O": {"_count": 4}, "because": {"_count": 3}, "ourselves": {"_count": 1}, "I": {"_count": 2}, "lessons": {"_count": 1}, "Harry": {"_count": 1}, "Hear": {"_count": 1}, "post": {"_count": 2}, "groups": {"_count": 1}, "group": {"_count": 3}, "without": {"_count": 1}, "Outsmarted": {"_count": 1}, "which": {"_count": 1}, "Professor": {"_count": 1}, "your": {"_count": 1}, "marks": {"_count": 1}, "tests": {"_count": 2}, "from": {"_count": 1}, "than": {"_count": 2}, "practical": {"_count": 1}, "looked": {"_count": 1}, "Transfiguration": {"_count": 1}, "with": {"_count": 1}, "Herbology": {"_count": 1}, "as": {"_count": 1}, "although": {"_count": 1}, "Charms": {"_count": 1}, "its": {"_count": 1}, "It": {"_count": 1}, "pulling": {"_count": 1}, "never": {"_count": 1}, "gave": {"_count": 1}, "himself": {"_count": 2}, "onto": {"_count": 1}, "when": {"_count": 1}, "professor": {"_count": 1}, "his": {"_count": 1}, "Grindelwald": {"_count": 1}, "except": {"_count": 1}, "watched": {"_count": 1}}, "wizards": {"_count": 16, "or": {"_count": 2}, "had": {"_count": 1}, "running": {"_count": 1}, "everywhere": {"_count": 1}, "do": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 3}, "Harry": {"_count": 1}, "I": {"_count": 1}, "for": {"_count": 1}, "bidding": {"_count": 1}, "spells": {"_count": 1}, "how": {"_count": 1}}, "magic": {"_count": 1, "no": {"_count": 1}}, "Magic": {"_count": 25, "never": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}, "doesnt": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 9}, "going": {"_count": 1}, "and": {"_count": 5}, "the": {"_count": 1}, "or": {"_count": 1}, "for": {"_count": 1}, "whats": {"_count": 1}, "though": {"_count": 1}}, "sorcerer": {"_count": 1, "of": {"_count": 1}}, "Lord": {"_count": 142, "for": {"_count": 2}, "disappear": {"_count": 1}, "competing": {"_count": 1}, "": {"_count": 21}, "he": {"_count": 2}, "before": {"_count": 1}, "lies": {"_count": 1}, "will": {"_count": 8}, "I": {"_count": 3}, "would": {"_count": 2}, "was": {"_count": 3}, "got": {"_count": 1}, "take": {"_count": 1}, "to": {"_count": 2}, "has": {"_count": 10}, "didnt": {"_count": 1}, "and": {"_count": 3}, "meant": {"_count": 1}, "Kreacher": {"_count": 1}, "yes": {"_count": 1}, "may": {"_count": 1}, "is": {"_count": 13}, "have": {"_count": 1}, "Can": {"_count": 1}, "Ive": {"_count": 1}, "always": {"_count": 1}, "understands": {"_count": 1}, "wondered": {"_count": 1}, "discovered": {"_count": 1}, "tried": {"_count": 1}, "walk": {"_count": 1}, "reveal": {"_count": 1}, "knows": {"_count": 4}, "approaches": {"_count": 1}, "trusts": {"_count": 1}, "placed": {"_count": 1}, "fell": {"_count": 3}, "procuring": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 1}, "does": {"_count": 2}, "thought": {"_count": 1}, "said": {"_count": 2}, "perhaps": {"_count": 1}, "could": {"_count": 1}, "dead": {"_count": 1}, "acknowledges": {"_count": 1}, "last": {"_count": 1}, "himself": {"_count": 1}, "takes": {"_count": 1}, "we": {"_count": 1}, "who": {"_count": 1}, "required": {"_count": 1}, "ordered": {"_count": 1}, "did": {"_count": 1}, "only": {"_count": 1}, "sailed": {"_count": 1}, "had": {"_count": 1}, "proper": {"_count": 1}, "everything": {"_count": 1}, "here": {"_count": 1}, "must": {"_count": 1}, "comes": {"_count": 1}, "wishes": {"_count": 1}, "becomes": {"_count": 1}, "no": {"_count": 1}, "in": {"_count": 2}, "forgives": {"_count": 1}, "wants": {"_count": 5}, "going": {"_count": 1}, "gets": {"_count": 1}, "at": {"_count": 1}}, "witches": {"_count": 2, "and": {"_count": 2}}, "Force": {"_count": 3, "Defense": {"_count": 3}}, "Lords": {"_count": 27, "power": {"_count": 1}, "going": {"_count": 1}, "supporters": {"_count": 1}, "vengeance": {"_count": 1}, "back": {"_count": 1}, "thoughts": {"_count": 2}, "name": {"_count": 4}, "most": {"_count": 1}, "Let": {"_count": 1}, "orders": {"_count": 2}, "side": {"_count": 1}, "initial": {"_count": 1}, "attack": {"_count": 1}, "old": {"_count": 1}, "word": {"_count": 1}, "favorite": {"_count": 2}, "wishes": {"_count": 1}, "bothering": {"_count": 1}, "aims": {"_count": 1}, "plan": {"_count": 1}, "mind": {"_count": 1}}, "deeds": {"_count": 1, "are": {"_count": 1}}, "stuff": {"_count": 4, "going": {"_count": 1}, "OUT": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 1}}, "figures": {"_count": 1, "were": {"_count": 1}}, "Mark": {"_count": 51, "Harry": {"_count": 1}, "": {"_count": 17}, "was": {"_count": 4}, "sir": {"_count": 1}, "into": {"_count": 2}, "hovering": {"_count": 1}, "over": {"_count": 2}, "alleging": {"_count": 1}, "had": {"_count": 4}, "at": {"_count": 1}, "appeared": {"_count": 1}, "again": {"_count": 1}, "then": {"_count": 1}, "burn": {"_count": 2}, "when": {"_count": 1}, "appear": {"_count": 1}, "would": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}, "Albus": {"_count": 1}, "seemed": {"_count": 1}, "began": {"_count": 1}, "Malfoy": {"_count": 1}, "to": {"_count": 1}, "Greyback": {"_count": 1}, "burned": {"_count": 1}}, "Marks": {"_count": 3, "a": {"_count": 1}, "appearance": {"_count": 1}, "and": {"_count": 1}}, "creatures": {"_count": 3, "youve": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "What": {"_count": 1, "arent": {"_count": 1}}, "curses": {"_count": 1, "look": {"_count": 1}}, "creature": {"_count": 2, "he": {"_count": 1}, "in": {"_count": 1}}, "Detectors": {"_count": 2, "do": {"_count": 1}, "said": {"_count": 1}}, "activity": {"_count": 1, "since": {"_count": 1}}, "Art": {"_count": 1, "": {"_count": 1}}, "Order": {"_count": 1, "": {"_count": 1}}, "detectors": {"_count": 1, "put": {"_count": 1}}, "attacks": {"_count": 1, "every": {"_count": 1}}, "as": {"_count": 1, "her": {"_count": 1}}, "ArtsO": {"_count": 1, "Divination": {"_count": 1}}, "artifacts": {"_count": 2, "or": {"_count": 1}, "said": {"_count": 1}}, "or": {"_count": 2, "dangerous": {"_count": 2}}, "object": {"_count": 2, "would": {"_count": 1}, "into": {"_count": 1}}, "objects": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}, "indeed": {"_count": 1, "said": {"_count": 1}}, "spells": {"_count": 1, "He": {"_count": 1}}, "Wizards": {"_count": 1, "of": {"_count": 1}}, "rite": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}}, "friendly": {"_count": 39, "with": {"_count": 7, "strange": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 2}, "old": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "to": {"_count": 4, "them": {"_count": 1}, "help": {"_count": 1}, "each": {"_count": 1}, "em": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "cardcarrying": {"_count": 1, "cupids": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "smile": {"_count": 1}, "he": {"_count": 1}}, "competition": {"_count": 1, "between": {"_count": 1}}, "face": {"_count": 2, "would": {"_count": 1}, "very": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 1, "welcoming": {"_count": 1}}, "way": {"_count": 2, "through": {"_count": 1}, "not": {"_count": 1}}, "greetings": {"_count": 1, "that": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "little": {"_count": 2, "chat": {"_count": 1}, "wave": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "wont": {"_count": 1, "that": {"_count": 1}}, "gesture": {"_count": 1, "to": {"_count": 1}}, "BlastEnded": {"_count": 1, "Skrewt": {"_count": 1}}, "advances": {"_count": 1, "of": {"_count": 1}}, "voices": {"_count": 1, "was": {"_count": 1}}}, "wizards": {"_count": 359, "or": {"_count": 5, "witches": {"_count": 2}, "Muggles": {"_count": 2}, "enemies": {"_count": 1}}, "of": {"_count": 6, "the": {"_count": 2}, "renown": {"_count": 1}, "different": {"_count": 1}, "Liechtenstein": {"_count": 1}, "all": {"_count": 1}}, "": {"_count": 37, ".": {"_count": 32}, "?": {"_count": 4}, "!": {"_count": 1}}, "up": {"_count": 1, "an": {"_count": 1}}, "wand": {"_count": 2, "": {"_count": 2}}, "school": {"_count": 1, "the": {"_count": 1}}, "robes": {"_count": 6, "hed": {"_count": 1}, "that": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "hat": {"_count": 7, "": {"_count": 2}, "for": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "heavily": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "duel": {"_count": 2, "before": {"_count": 1}, "": {"_count": 1}}, "whod": {"_count": 1, "invented": {"_count": 1}}, "bank": {"_count": 2, "": {"_count": 1}, "Gringotts": {"_count": 1}}, "havent": {"_count": 1, "got": {"_count": 1}}, "called": {"_count": 1, "Muggles": {"_count": 1}}, "still": {"_count": 2, "feared": {"_count": 1}, "living": {"_count": 1}}, "werent": {"_count": 1, "allowed": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "Bill": {"_count": 1}}, "are": {"_count": 6, "not": {"_count": 1}, "allowed": {"_count": 2}, "pouring": {"_count": 1}, "coming": {"_count": 1}, "always": {"_count": 1}}, "think": {"_count": 1, "its": {"_count": 1}}, "all": {"_count": 7, "wearing": {"_count": 1}, "of": {"_count": 2}, "around": {"_count": 1}, "more": {"_count": 1}, "locked": {"_count": 1}, "about": {"_count": 1}}, "shop": {"_count": 1, "but": {"_count": 1}}, "were": {"_count": 17, "watching": {"_count": 1}, "fascinating": {"_count": 1}, "taking": {"_count": 1}, "flooding": {"_count": 1}, "joining": {"_count": 1}, "dashing": {"_count": 1}, "closing": {"_count": 1}, "all": {"_count": 1}, "seated": {"_count": 1}, "Apparating": {"_count": 1}, "forming": {"_count": 1}, "looking": {"_count": 1}, "creeping": {"_count": 1}, "still": {"_count": 1}, "currently": {"_count": 1}, "both": {"_count": 1}, "joined": {"_count": 1}}, "than": {"_count": 4, "any": {"_count": 2}, "she": {"_count": 1}, "you": {"_count": 1}}, "like": {"_count": 2, "Malfoys": {"_count": 1}, "Dumbledore": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "have": {"_count": 10, "benefited": {"_count": 1}, "difficulty": {"_count": 1}, "meddled": {"_count": 1}, "ever": {"_count": 1}, "of": {"_count": 1}, "mistreated": {"_count": 1}, "never": {"_count": 2}, "done": {"_count": 1}, "been": {"_count": 1}}, "but": {"_count": 3, "Squibs": {"_count": 1}, "by": {"_count": 1}, "several": {"_count": 1}}, "suffered": {"_count": 1, "much": {"_count": 1}}, "had": {"_count": 3, "thought": {"_count": 1}, "lived": {"_count": 1}, "his": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 4}, "either": {"_count": 1}, "magical": {"_count": 1}}, "in": {"_count": 14, "his": {"_count": 2}, "the": {"_count": 6}, "masks": {"_count": 1}, "this": {"_count": 1}, "limegreen": {"_count": 2}, "front": {"_count": 2}}, "should": {"_count": 1, "have": {"_count": 1}}, "sweeping": {"_count": 1, "stone": {"_count": 1}}, "everywhere": {"_count": 2, "would": {"_count": 1}, "": {"_count": 1}}, "put": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 18, "witches": {"_count": 11}, "Muggles": {"_count": 1}, "making": {"_count": 1}, "photographs": {"_count": 1}, "several": {"_count": 1}, "goblins": {"_count": 3}}, "arguing": {"_count": 1, "over": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 6, "keep": {"_count": 1}, "congregate": {"_count": 1}, "poison": {"_count": 1}, "be": {"_count": 2}, "reach": {"_count": 1}}, "seeing": {"_count": 1, "their": {"_count": 1}}, "talented": {"_count": 1, "though": {"_count": 1}}, "who": {"_count": 11, "could": {"_count": 2}, "are": {"_count": 1}, "can": {"_count": 1}, "dont": {"_count": 1}, "forced": {"_count": 1}, "had": {"_count": 2}, "use": {"_count": 1}, "raised": {"_count": 1}, "succeeded": {"_count": 1}}, "came": {"_count": 1, "through": {"_count": 1}}, "will": {"_count": 2, "not": {"_count": 1}, "give": {"_count": 1}}, "life": {"_count": 1, "it": {"_count": 1}}, "score": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 4, "making": {"_count": 1}, "congregated": {"_count": 1}, "standing": {"_count": 1}, "emerging": {"_count": 1}}, "speeding": {"_count": 1, "toward": {"_count": 1}}, "turn": {"_count": 1, "up": {"_count": 1}}, "into": {"_count": 2, "Diagon": {"_count": 1}, "hiding": {"_count": 1}}, "from": {"_count": 2, "one": {"_count": 1}, "finding": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 3, "thought": {"_count": 1}, "told": {"_count": 1}, "said": {"_count": 1}}, "there": {"_count": 1, "must": {"_count": 1}}, "this": {"_count": 1, "young": {"_count": 1}}, "sat": {"_count": 3, "in": {"_count": 2}, "upon": {"_count": 1}}, "rushed": {"_count": 1, "past": {"_count": 1}}, "the": {"_count": 2, "last": {"_count": 1}, "opportunity": {"_count": 1}}, "gasped": {"_count": 1, "as": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "tightly": {"_count": 1, "packed": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "about": {"_count": 1, "": {"_count": 1}}, "appearing": {"_count": 1, "from": {"_count": 1}}, "wands": {"_count": 1, "crossing": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "warningly": {"_count": 1, "as": {"_count": 1}}, "sign": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "raised": {"_count": 1}}, "yet": {"_count": 1, "determined": {"_count": 1}}, "know": {"_count": 1, "how": {"_count": 1}}, "though": {"_count": 1, "several": {"_count": 1}}, "gathered": {"_count": 1, "around": {"_count": 1}}, "running": {"_count": 1, "unchecked": {"_count": 1}}, "can": {"_count": 2, "do": {"_count": 2}}, "being": {"_count": 1, "controlled": {"_count": 1}}, "do": {"_count": 2, "Karkaroff": {"_count": 1}, "battle": {"_count": 1}}, "at": {"_count": 3, "disguising": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "seven": {"_count": 1, "or": {"_count": 1}}, "standing": {"_count": 1, "by": {"_count": 1}}, "doesnt": {"_count": 1, "want": {"_count": 1}}, "wireless": {"_count": 1, "but": {"_count": 1}}, "took": {"_count": 1, "for": {"_count": 1}}, "would": {"_count": 2, "not": {"_count": 1}, "pay": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "clamoring": {"_count": 1, "for": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "both": {"_count": 2, "inside": {"_count": 1}, "of": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "along": {"_count": 1, "the": {"_count": 1}}, "never": {"_count": 1, "come": {"_count": 1}}, "arrived": {"_count": 1, "": {"_count": 1}}, "burden": {"_count": 1, "and": {"_count": 1}}, "followed": {"_count": 1, "all": {"_count": 1}}, "made": {"_count": 1, "odd": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "brought": {"_count": 1, "in": {"_count": 1}}, "including": {"_count": 1, "all": {"_count": 1}}, "hed": {"_count": 1, "bullied": {"_count": 1}}, "after": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "my": {"_count": 1, "family": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "got": {"_count": 1, "out": {"_count": 1}}, "cannot": {"_count": 2, "always": {"_count": 1}, "be": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}, "nodded": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 2, "funny": {"_count": 1}, "Monsieur": {"_count": 1}}, "face": {"_count": 1, "but": {"_count": 1}}, "Of": {"_count": 1, "great": {"_count": 1}}, "I": {"_count": 2, "would": {"_count": 1}, "think": {"_count": 1}}, "cant": {"_count": 1, "Viktor": {"_count": 1}}, "aren": {"_count": 1, "bothered": {"_count": 1}}, "an": {"_count": 1, "we": {"_count": 1}}, "just": {"_count": 2, "us": {"_count": 1}, "like": {"_count": 1}}, "could": {"_count": 2, "come": {"_count": 1}, "have": {"_count": 1}}, "entirely": {"_count": 1, "": {"_count": 1}}, "faces": {"_count": 1, "and": {"_count": 1}}, "playing": {"_count": 1, "cards": {"_count": 1}}, "surrounding": {"_count": 1, "him": {"_count": 1}}, "head": {"_count": 3, "": {"_count": 1}, "lay": {"_count": 1}, "fell": {"_count": 1}}, "choose": {"_count": 1, "that": {"_count": 1}}, "study": {"_count": 1, "the": {"_count": 1}}, "stepped": {"_count": 1, "one": {"_count": 1}}, "for": {"_count": 1, "most": {"_count": 1}}, "bidding": {"_count": 2, "": {"_count": 2}}, "whose": {"_count": 1, "job": {"_count": 1}}, "dress": {"_count": 1, "robes": {"_count": 1}}, "Slughorn": {"_count": 1, "had": {"_count": 1}}, "left": {"_count": 1, "said": {"_count": 1}}, "must": {"_count": 1, "accept": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "murder": {"_count": 1, "": {"_count": 1}}, "house": {"_count": 1, "the": {"_count": 1}}, "spells": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "those": {"_count": 1}}, "their": {"_count": 1, "bows": {"_count": 1}}, "inside": {"_count": 1, "to": {"_count": 1}}, "barely": {"_count": 1, "repressed": {"_count": 1}}, "before": {"_count": 1, "pursuing": {"_count": 1}}, "Dont": {"_count": 1, "you": {"_count": 1}}, "seemed": {"_count": 1, "stunned": {"_count": 1}}, "how": {"_count": 1, "strong": {"_count": 1}}, "passing": {"_count": 1, "on": {"_count": 1}}, "cravats": {"_count": 1, "a": {"_count": 1}}, "realize": {"_count": 1, "just": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "magic": {"_count": 1, "is": {"_count": 1}}, "bag": {"_count": 1, "but": {"_count": 1}}, "moving": {"_count": 1, "toward": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "sealing": {"_count": 1, "the": {"_count": 1}}, "hung": {"_count": 1, "back": {"_count": 1}}, "colleagues": {"_count": 1, "set": {"_count": 1}}, "war": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "recognize": {"_count": 1}}, "went": {"_count": 1, "into": {"_count": 1}}, "believe": {"_count": 1, "": {"_count": 1}}, "believed": {"_count": 1, "in": {"_count": 1}}, "versus": {"_count": 1, "goblins": {"_count": 1}}, "Ron": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "fled": {"_count": 1, "doubled": {"_count": 1}}, "shrieked": {"_count": 1, "and": {"_count": 1}}, "faced": {"_count": 1, "him": {"_count": 1}}, "scattered": {"_count": 1, "before": {"_count": 1}}, "working": {"_count": 1, "undercover": {"_count": 1}}, "poke": {"_count": 1, "their": {"_count": 1}}, "triumphant": {"_count": 1, "": {"_count": 1}}, "Grindelwald": {"_count": 1, "was": {"_count": 1}}, "defenders": {"_count": 1, "of": {"_count": 1}}}, "witches": {"_count": 95, "": {"_count": 1, ".": {"_count": 1}}, "an": {"_count": 2, "wizards": {"_count": 2}}, "and": {"_count": 63, "wizards": {"_count": 60}, "warlocks": {"_count": 1}, "vanished": {"_count": 1}, "Ron": {"_count": 1}}, "unknown": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 2, "Mrs": {"_count": 1}, "her": {"_count": 1}}, "in": {"_count": 5, "dressing": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}, "ruffs": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "wayside": {"_count": 1}}, "barely": {"_count": 1, "older": {"_count": 1}}, "were": {"_count": 3, "emerging": {"_count": 1}, "surveying": {"_count": 1}, "pouring": {"_count": 1}}, "sat": {"_count": 1, "gossiping": {"_count": 1}}, "who": {"_count": 1, "waited": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "walking": {"_count": 1, "through": {"_count": 1}}, "wizards": {"_count": 1, "or": {"_count": 1}}, "hats": {"_count": 1, "while": {"_count": 1}}, "heading": {"_count": 1, "the": {"_count": 1}}, "broke": {"_count": 1, "away": {"_count": 1}}, "or": {"_count": 1, "wizards": {"_count": 1}}, "will": {"_count": 1, "marry": {"_count": 1}}, "risking": {"_count": 1, "their": {"_count": 1}}, "there": {"_count": 1, "passed": {"_count": 1}}, "feet": {"_count": 1, "became": {"_count": 1}}}, "takin": {"_count": 7, "over": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "school": {"_count": 1}}, "risks": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "leaf": {"_count": 1}, "long": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "their": {"_count": 1, "kids": {"_count": 1}}}, "Course": {"_count": 55, "some": {"_count": 1, "stood": {"_count": 1}}, "said": {"_count": 5, "Hagrid": {"_count": 1}, "Ron": {"_count": 2}, "Harry": {"_count": 1}, "Neville": {"_count": 1}}, "everyone": {"_count": 1, "gets": {"_count": 1}}, "he": {"_count": 3, "shoulda": {"_count": 1}, "will": {"_count": 1}, "covers": {"_count": 1}}, "hes": {"_count": 2, "very": {"_count": 1}, "worried": {"_count": 1}}, "in": {"_count": 1, "Beginners": {"_count": 1}}, "I": {"_count": 12, "do": {"_count": 3}, "havent": {"_count": 1}, "can": {"_count": 1}, "never": {"_count": 1}, "will": {"_count": 1}, "have": {"_count": 1}, "am": {"_count": 3}, "did": {"_count": 1}}, "e": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 3, "didnt": {"_count": 1}, "is": {"_count": 1}, "did": {"_count": 1}}, "Woods": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 3, "is": {"_count": 3}}, "you": {"_count": 3, "can": {"_count": 2}, "know": {"_count": 1}}, "Dumbledore": {"_count": 1, "trusts": {"_count": 1}}, "yehre": {"_count": 1, "not": {"_count": 1}}, "we": {"_count": 4, "found": {"_count": 1}, "did": {"_count": 1}, "can": {"_count": 1}, "have": {"_count": 1}}, "they": {"_count": 3, "might": {"_count": 1}, "didnt": {"_count": 1}, "dont": {"_count": 1}}, "once": {"_count": 1, "Dumbledore": {"_count": 1}}, "aims": {"_count": 1, "1": {"_count": 1}}, "theyre": {"_count": 1, "trained": {"_count": 1}}, "this": {"_count": 1, "lot": {"_count": 1}}, "not": {"_count": 3, "hell": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "if": {"_count": 1, "things": {"_count": 1}}, "Grindelwald": {"_count": 1, "scarpered": {"_count": 1}}}, "Horribly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "familiar": {"_count": 1, "dreadfully": {"_count": 1}}}, "safe": {"_count": 131, "places": {"_count": 1, "left": {"_count": 1}}, "cept": {"_count": 1, "maybe": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 20}, "?": {"_count": 5}, "!": {"_count": 3}}, "for": {"_count": 4, "yeh": {"_count": 1}, "him": {"_count": 1}, "my": {"_count": 1}, "you": {"_count": 1}}, "with": {"_count": 2, "us": {"_count": 1}, "a": {"_count": 1}}, "hands": {"_count": 1, "though": {"_count": 1}}, "to": {"_count": 18, "ask": {"_count": 1}, "go": {"_count": 2}, "remove": {"_count": 1}, "let": {"_count": 1}, "open": {"_count": 2}, "rejoin": {"_count": 1}, "fly": {"_count": 1}, "set": {"_count": 1}, "become": {"_count": 1}, "assume": {"_count": 1}, "walk": {"_count": 1}, "look": {"_count": 2}, "talk": {"_count": 1}, "do": {"_count": 1}, "tell": {"_count": 1}}, "as": {"_count": 5, "theyre": {"_count": 1}, "long": {"_count": 3}, "poking": {"_count": 1}}, "she": {"_count": 1, "might": {"_count": 1}}, "at": {"_count": 4, "this": {"_count": 1}, "Hogwarts": {"_count": 1}, "the": {"_count": 2}}, "now": {"_count": 2, "": {"_count": 2}}, "there": {"_count": 2, "sir": {"_count": 1}, "theyll": {"_count": 1}}, "and": {"_count": 7, "never": {"_count": 1}, "thats": {"_count": 1}, "would": {"_count": 1}, "whole": {"_count": 1}, "had": {"_count": 1}, "happy": {"_count": 1}, "quiet": {"_count": 1}}, "from": {"_count": 2, "Sirius": {"_count": 1}, "Harrys": {"_count": 1}}, "in": {"_count": 10, "bed": {"_count": 1}, "a": {"_count": 2}, "our": {"_count": 1}, "his": {"_count": 1}, "Grimmauld": {"_count": 1}, "my": {"_count": 1}, "here": {"_count": 1}, "Azkaban": {"_count": 1}, "her": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}, "points": {"_count": 1, "for": {"_count": 1}}, "reliable": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "Thatll": {"_count": 1, "just": {"_count": 1}}, "place": {"_count": 3, "to": {"_count": 2}, "in": {"_count": 1}}, "this": {"_count": 1, "young": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "station": {"_count": 1, "platform": {"_count": 1}}, "once": {"_count": 1, "youre": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "Ill": {"_count": 1, "need": {"_count": 1}}, "enough": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "fer": {"_count": 1, "anyone": {"_count": 1}}, "Felix": {"_count": 1, "was": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 2, "isnt": {"_count": 1}, "would": {"_count": 1}}, "really": {"_count": 1, "that": {"_count": 1}}, "will": {"_count": 1, "break": {"_count": 1}}, "location": {"_count": 1, "we": {"_count": 1}}, "house": {"_count": 2, "": {"_count": 1}, "youre": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "doing": {"_count": 1, "said": {"_count": 1}}, "refuge": {"_count": 1, "even": {"_count": 1}}, "till": {"_count": 1, "we": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "familiar": {"_count": 1, "and": {"_count": 1}}, "Keep": {"_count": 1, "faith": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "ere": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "ring": {"_count": 1}}, "passage": {"_count": 1, "through": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}}, "Reckon": {"_count": 9, "Dumbledores": {"_count": 1, "the": {"_count": 1}}, "Fredd": {"_count": 1, "take": {"_count": 1}}, "theyll": {"_count": 1, "go": {"_count": 1}}, "somethings": {"_count": 1, "up": {"_count": 1}}, "they": {"_count": 3, "were": {"_count": 1}, "know": {"_count": 2}}, "Im": {"_count": 1, "lonely": {"_count": 1}}, "shell": {"_count": 1, "let": {"_count": 1}}}, "Head": {"_count": 104, "boy": {"_count": 1, "an": {"_count": 1}}, "of": {"_count": 37, "Slytherin": {"_count": 3}, "the": {"_count": 18}, "Department": {"_count": 3}, "Magical": {"_count": 2}, "House": {"_count": 5}, "Housell": {"_count": 1}, "Hufflepuff": {"_count": 1}, "Cedrics": {"_count": 1}, "Houses": {"_count": 1}, "Hogwarts": {"_count": 1}, "Gryffindor": {"_count": 1}}, "Boy": {"_count": 23, "": {"_count": 6}, "in": {"_count": 2}, "Five": {"_count": 1}, "here": {"_count": 1}, "badge": {"_count": 3}, "Percy": {"_count": 1}, "and": {"_count": 3}, "And": {"_count": 1}, "at": {"_count": 1}, "just": {"_count": 1}, "ship": {"_count": 1}, "winner": {"_count": 1}, "Prefect": {"_count": 1}}, "thats": {"_count": 1, "one": {"_count": 1}}, "Juggling": {"_count": 1, "and": {"_count": 1}}, "Polo": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "hanging": {"_count": 1}}, "Hockey": {"_count": 1, "and": {"_count": 1}}, "Boys": {"_count": 1, "": {"_count": 1}}, "hanging": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 3, "other": {"_count": 1}, "day": {"_count": 2}}, "bar": {"_count": 1, "comprised": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 9}, "?": {"_count": 2}}, "and": {"_count": 3, "he": {"_count": 1}, "telling": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "ask": {"_count": 1}}, "twenty": {"_count": 1, "years": {"_count": 1}}, "down": {"_count": 2, "its": {"_count": 1}, "it": {"_count": 1}}, "in": {"_count": 1, "Hogsmeade": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "new": {"_count": 1, "times": {"_count": 1}}, "deserves": {"_count": 1, "said": {"_count": 1}}, "Idiot": {"_count": 1, "girl": {"_count": 1}}, "Inn": {"_count": 3, "": {"_count": 2}, "which": {"_count": 1}}, "tonight": {"_count": 1, "I": {"_count": 1}}, "which": {"_count": 1, "I": {"_count": 1}}, "opened": {"_count": 1, "up": {"_count": 1}}}, "girl": {"_count": 211, "at": {"_count": 3, "Hogwarts": {"_count": 1}, "the": {"_count": 2}}, "also": {"_count": 1, "red": {"_count": 1}}, "and": {"_count": 4, "her": {"_count": 2}, "that": {"_count": 1}, "dont": {"_count": 1}}, "with": {"_count": 15, "him": {"_count": 1}, "blonde": {"_count": 2}, "long": {"_count": 6}, "a": {"_count": 2}, "thick": {"_count": 1}, "the": {"_count": 2}, "large": {"_count": 1}}, "wasnt": {"_count": 1, "listening": {"_count": 1}}, "": {"_count": 43, ".": {"_count": 26}, "!": {"_count": 8}, "?": {"_count": 9}}, "how": {"_count": 1, "could": {"_count": 1}}, "is": {"_count": 5, "and": {"_count": 1}, "Ive": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}, "very": {"_count": 1}}, "of": {"_count": 3, "no": {"_count": 1}, "about": {"_count": 1}, "around": {"_count": 1}}, "take": {"_count": 2, "your": {"_count": 1}, "another": {"_count": 1}}, "had": {"_count": 4, "glided": {"_count": 1}, "died": {"_count": 1}, "risen": {"_count": 1}, "let": {"_count": 1}}, "who": {"_count": 18, "reminded": {"_count": 1}, "was": {"_count": 2}, "died": {"_count": 1}, "played": {"_count": 2}, "had": {"_count": 3}, "looked": {"_count": 2}, "so": {"_count": 1}, "like": {"_count": 1}, "were": {"_count": 1}, "jumped": {"_count": 1}, "dropped": {"_count": 1}, "prefers": {"_count": 1}, "gazed": {"_count": 1}}, "stiffly": {"_count": 1, "": {"_count": 1}}, "Penelope": {"_count": 1, "Clearwater": {"_count": 1}}, "he": {"_count": 5, "protected": {"_count": 1}, "went": {"_count": 1}, "said": {"_count": 1}, "lured": {"_count": 1}, "had": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "got": {"_count": 2, "hold": {"_count": 1}, "neglected": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "All": {"_count": 1, "unconscious": {"_count": 1}}, "said": {"_count": 3, "Professor": {"_count": 1}, "Ron": {"_count": 1}, "George": {"_count": 1}}, "from": {"_count": 3, "Beauxbatons": {"_count": 1}, "each": {"_count": 1}, "the": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "next": {"_count": 2, "to": {"_count": 2}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "tried": {"_count": 1, "this": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 5}, "blue": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "whom": {"_count": 1}}, "walked": {"_count": 1, "off": {"_count": 1}}, "wholl": {"_count": 1, "have": {"_count": 1}}, "ran": {"_count": 1, "past": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "sitting": {"_count": 2, "cross": {"_count": 1}, "behind": {"_count": 1}}, "was": {"_count": 4, "ghostly": {"_count": 1}, "carrying": {"_count": 1}, "laughing": {"_count": 1}, "out": {"_count": 1}}, "shaking": {"_count": 1, "their": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "with": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "looked": {"_count": 1, "scared": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "why": {"_count": 1, "did": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "gave": {"_count": 1, "off": {"_count": 1}}, "called": {"_count": 1, "Luna": {"_count": 1}}, "lying": {"_count": 1, "at": {"_count": 1}}, "first": {"_count": 1, "year": {"_count": 1}}, "they": {"_count": 1, "wont": {"_count": 1}}, "smiled": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "youve": {"_count": 1, "been": {"_count": 1}}, "Ill": {"_count": 1, "tell": {"_count": 1}}, "became": {"_count": 1, "too": {"_count": 1}}, "assuring": {"_count": 1, "another": {"_count": 1}}, "Harrys": {"_count": 1, "stomach": {"_count": 1}}, "holding": {"_count": 1, "her": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "Dumbledore": {"_count": 1, "wont": {"_count": 1}}, "madam": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "very": {"_count": 1}}, "stepped": {"_count": 1, "inside": {"_count": 1}}, "stumbled": {"_count": 1, "back": {"_count": 1}}, "finished": {"_count": 1, "Zabini": {"_count": 1}}, "whose": {"_count": 2, "ragged": {"_count": 1}, "scales": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "riding": {"_count": 1, "beside": {"_count": 1}}, "nodded": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 1, "Katie": {"_count": 1}}, "wearing": {"_count": 1, "an": {"_count": 1}}, "taking": {"_count": 1, "in": {"_count": 1}}, "turned": {"_count": 1, "back": {"_count": 1}}, "not": {"_count": 1, "much": {"_count": 1}}, "but": {"_count": 2, "no": {"_count": 1}, "still": {"_count": 1}}, "mustve": {"_count": 1, "had": {"_count": 1}}, "working": {"_count": 1, "in": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "clutching": {"_count": 1, "her": {"_count": 1}}, "came": {"_count": 1, "around": {"_count": 1}}, "into": {"_count": 1, "whose": {"_count": 1}}, "or": {"_count": 2, "a": {"_count": 2}}, "would": {"_count": 1, "have": {"_count": 1}}, "hasnt": {"_count": 1, "got": {"_count": 1}}, "that": {"_count": 1, "Hermione": {"_count": 1}}, "I": {"_count": 2, "suppose": {"_count": 1}, "dont": {"_count": 1}}, "acted": {"_count": 1, "most": {"_count": 1}}, "have": {"_count": 1, "upon": {"_count": 1}}, "back": {"_count": 1, "like": {"_count": 1}}, "Lovegood": {"_count": 1, "said": {"_count": 1}}, "thrown": {"_count": 1, "in": {"_count": 1}}, "when": {"_count": 1, "shes": {"_count": 1}}, "Greyback": {"_count": 1, "after": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "mentioned": {"_count": 1}}, "now": {"_count": 1, "holding": {"_count": 1}}, "trailed": {"_count": 1, "tearfully": {"_count": 1}}}, "Suppose": {"_count": 2, "the": {"_count": 1, "mystry": {"_count": 1}}, "youd": {"_count": 1, "love": {"_count": 1}}}, "YouKnow": {"_count": 44, "Who": {"_count": 19, "never": {"_count": 1}, "was": {"_count": 1}, "wasnt": {"_count": 2}, "you": {"_count": 1}, "": {"_count": 6}, "back": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}, "after": {"_count": 1}, "would": {"_count": 1}, "have": {"_count": 1}, "by": {"_count": 1}, "himself": {"_count": 1}}, "Whos": {"_count": 24, "with": {"_count": 1}, "inner": {"_count": 1}, "supporters": {"_count": 2}, "fall": {"_count": 1}, "instructions": {"_count": 1}, "orders": {"_count": 1}, "back": {"_count": 4}, "only": {"_count": 1}, "controlling": {"_count": 1}, "after": {"_count": 2}, "got": {"_count": 1}, "snake": {"_count": 2}, "followers": {"_count": 1}, "Mark": {"_count": 1}, "going": {"_count": 1}, "name": {"_count": 1}, "line": {"_count": 1}, "been": {"_count": 1}}, "Shut": {"_count": 1, "up": {"_count": 1}}}, "side": {"_count": 511, "before": {"_count": 2, "": {"_count": 1}, "Lord": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "of": {"_count": 213, "the": {"_count": 136}, "them": {"_count": 6}, "him": {"_count": 15}, "his": {"_count": 18}, "Harry": {"_count": 5}, "Lockharts": {"_count": 1}, "one": {"_count": 1}, "their": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 5}, "Blacks": {"_count": 1}, "Frank": {"_count": 1}, "Mostafa": {"_count": 1}, "a": {"_count": 5}, "Dumbledores": {"_count": 1}, "Cedrics": {"_count": 1}, "Christmas": {"_count": 1}, "Mr": {"_count": 1}, "Harrys": {"_count": 2}, "Umbridge": {"_count": 1}, "Ginny": {"_count": 1}, "it": {"_count": 3}, "Jamess": {"_count": 1}, "Vernons": {"_count": 1}, "silver": {"_count": 1}, "Jimmy": {"_count": 1}, "Moodys": {"_count": 1}}, "to": {"_count": 16, "the": {"_count": 2}, "try": {"_count": 1}, "side": {"_count": 11}, "his": {"_count": 2}}, "after": {"_count": 2, "You": {"_count": 1}, "a": {"_count": 1}}, "its": {"_count": 2, "windows": {"_count": 1}, "keys": {"_count": 1}}, "Percy": {"_count": 1, "Weasley": {"_count": 1}}, "is": {"_count": 4, "out": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 83, ".": {"_count": 72}, "?": {"_count": 7}, "!": {"_count": 4}}, "whos": {"_count": 1, "called": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "corridor": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 12, "his": {"_count": 1}, "side": {"_count": 11}}, "and": {"_count": 20, "began": {"_count": 1}, "said": {"_count": 1}, "burning": {"_count": 1}, "glaring": {"_count": 1}, "pawed": {"_count": 1}, "was": {"_count": 2}, "found": {"_count": 1}, "treading": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 1}, "started": {"_count": 1}, "after": {"_count": 1}, "who": {"_count": 1}, "seconds": {"_count": 1}, "listened": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}, "are": {"_count": 1}, "she": {"_count": 1}}, "Second": {"_count": 1, "different": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "silence": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "road": {"_count": 3, "where": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "fell": {"_count": 1, "away": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "opposite": {"_count": 1, "them": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "felt": {"_count": 1}}, "the": {"_count": 4, "Bludger": {"_count": 1}, "front": {"_count": 1}, "sunlight": {"_count": 1}, "journey": {"_count": 1}}, "drew": {"_count": 1, "away": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}, "mirror": {"_count": 1, "snap": {"_count": 1}}, "passage": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "turned": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "least": {"_count": 1}}, "with": {"_count": 5, "Ron": {"_count": 1}, "Karkaroff": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "doubled": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 4, "look": {"_count": 1}, "familiar": {"_count": 1}, "gentle": {"_count": 1}, "group": {"_count": 1}}, "Harry": {"_count": 6, "didnt": {"_count": 1}, "thought": {"_count": 1}, "": {"_count": 1}, "The": {"_count": 1}, "and": {"_count": 1}, "heard": {"_count": 1}}, "seized": {"_count": 1, "his": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "they": {"_count": 4, "were": {"_count": 1}, "stood": {"_count": 1}, "looked": {"_count": 1}, "pushed": {"_count": 1}}, "plates": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 4, "the": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "singing": {"_count": 1}}, "quite": {"_count": 1, "independently": {"_count": 1}}, "facing": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "Mr": {"_count": 1}}, "chamber": {"_count": 3, "silence": {"_count": 1}, "and": {"_count": 1}, "opened": {"_count": 1}}, "whenever": {"_count": 1, "people": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "fast": {"_count": 1}}, "as": {"_count": 5, "well": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 2}, "if": {"_count": 1}}, "hed": {"_count": 1, "gotten": {"_count": 1}}, "crossed": {"_count": 1, "her": {"_count": 1}}, "you": {"_count": 1, "got": {"_count": 1}}, "immediately": {"_count": 1, "nothing": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 1}, "said": {"_count": 2}}, "Potter": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Lupin": {"_count": 1}, "Harry": {"_count": 1}}, "were": {"_count": 1, "paneled": {"_count": 1}}, "short": {"_count": 1, "queues": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 2}}, "behind": {"_count": 1, "their": {"_count": 1}}, "no": {"_count": 1, "Snape": {"_count": 1}}, "still": {"_count": 1, "smiling": {"_count": 1}}, "thats": {"_count": 1, "how": {"_count": 1}}, "until": {"_count": 1, "she": {"_count": 1}}, "street": {"_count": 9, "at": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "devoted": {"_count": 1}, "where": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 2}, "groping": {"_count": 1}}, "how": {"_count": 1, "girls": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 2, "Harry": {"_count": 1}, "had": {"_count": 1}}, "closed": {"_count": 1, "his": {"_count": 1}}, "wondering": {"_count": 1, "how": {"_count": 1}}, "fer": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 1, "bows": {"_count": 1}}, "extended": {"_count": 1, "the": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "blood": {"_count": 1, "streaming": {"_count": 1}}, "where": {"_count": 2, "she": {"_count": 1}, "they": {"_count": 1}}, "bleeding": {"_count": 1, "from": {"_count": 1}}, "any": {"_count": 1, "second": {"_count": 1}}, "can": {"_count": 1, "do": {"_count": 1}}, "because": {"_count": 2, "I": {"_count": 1}, "the": {"_count": 1}}, "tables": {"_count": 3, "and": {"_count": 1}, "crammed": {"_count": 1}, "": {"_count": 1}}, "have": {"_count": 1, "got": {"_count": 1}}, "effects": {"_count": 2, "include": {"_count": 1}, "of": {"_count": 1}}, "she": {"_count": 1, "rarely": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "better": {"_count": 1, "people": {"_count": 1}}, "wrenched": {"_count": 1, "open": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "arms": {"_count": 1, "around": {"_count": 1}}, "even": {"_count": 1, "now": {"_count": 1}}, "Draco": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 2, "did": {"_count": 1}, "could": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "pocket": {"_count": 1, "": {"_count": 1}}, "broomsticks": {"_count": 1, "were": {"_count": 1}}, "Hagrid": {"_count": 1, "gave": {"_count": 1}}, "table": {"_count": 1, "and": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "opened": {"_count": 1}}, "brawl": {"_count": 1, "known": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "like": {"_count": 2, "trees": {"_count": 1}, "a": {"_count": 1}}, "blocking": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 2, "slightly": {"_count": 1}, "through": {"_count": 1}}, "It": {"_count": 1, "looked": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "simply": {"_count": 1, "staring": {"_count": 1}}, "blackened": {"_count": 1, "and": {"_count": 1}}, "considering": {"_count": 1, "the": {"_count": 1}}}, "anythin": {"_count": 20, "ter": {"_count": 2, "do": {"_count": 2}}, "mind": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "Ronan": {"_count": 1, "": {"_count": 1}}, "unusual": {"_count": 1, "a": {"_count": 1}}, "strange": {"_count": 1, "": {"_count": 1}}, "odd": {"_count": 1, "in": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "closern": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "now": {"_count": 1, "with": {"_count": 1}}, "las": {"_count": 1, "night": {"_count": 1}}, "yeh": {"_count": 1, "set": {"_count": 1}}, "abou": {"_count": 1, "giants": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}}, "Side": {"_count": 14, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "theres": {"_count": 1, "nothin": {"_count": 1}}, "was": {"_count": 1, "gathering": {"_count": 1}}, "Fridwulfa": {"_count": 1, "was": {"_count": 1}}, "by": {"_count": 3, "side": {"_count": 3}}, "Along": {"_count": 1, "Apparition": {"_count": 1}}}, "outta": {"_count": 29, "the": {"_count": 11, "way": {"_count": 2}, "air": {"_count": 1}, "library": {"_count": 1}, "ruins": {"_count": 1}, "castle": {"_count": 2}, "cave": {"_count": 1}, "mountains": {"_count": 1}, "fores": {"_count": 1}, "forest": {"_count": 1}}, "kinda": {"_count": 1, "trances": {"_count": 1}}, "books": {"_count": 1, "but": {"_count": 1}}, "Mr": {"_count": 1, "Harry": {"_count": 1}}, "fashion": {"_count": 1, "years": {"_count": 1}}, "trouble": {"_count": 1, "though": {"_count": 1}}, "Gringotts": {"_count": 1, "I": {"_count": 1}}, "date": {"_count": 1, "o": {"_count": 1}}, "here": {"_count": 4, "": {"_count": 2}, "Hermione": {"_count": 1}, "I": {"_count": 1}}, "my": {"_count": 1, "house": {"_count": 1}}, "your": {"_count": 1, "tree": {"_count": 1}}, "Professor": {"_count": 1, "Moodys": {"_count": 1}}, "Golgomath": {"_count": 1, "s": {"_count": 1}}, "you": {"_count": 1, "if": {"_count": 1}}, "school": {"_count": 1, "an": {"_count": 1}}, "there": {"_count": 1, "I": {"_count": 1}}}, "village": {"_count": 85, "where": {"_count": 4, "you": {"_count": 1}, "Lily": {"_count": 1}, "Voldemorts": {"_count": 1}, "the": {"_count": 1}}, "havin": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 12}, "!": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "below": {"_count": 1, "meaning": {"_count": 1}}, "instead": {"_count": 1, "they": {"_count": 1}}, "will": {"_count": 1, "remember": {"_count": 1}}, "from": {"_count": 1, "werewolves": {"_count": 1}}, "of": {"_count": 11, "Hogsmeade": {"_count": 4}, "Ottery": {"_count": 2}, "Budleigh": {"_count": 1}, "Little": {"_count": 2}, "sorts": {"_count": 1}, "Godrics": {"_count": 1}}, "and": {"_count": 5, "he": {"_count": 1}, "even": {"_count": 1}, "roused": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 1}}, "sometimes": {"_count": 1, "said": {"_count": 1}}, "so": {"_count": 1, "dont": {"_count": 1}}, "twice": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "night": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "still": {"_count": 1, "liked": {"_count": 1}}, "pub": {"_count": 1, "did": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "seen": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "was": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "silence": {"_count": 1}, "wind": {"_count": 1}}, "its": {"_count": 1, "inky": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "post": {"_count": 1, "office": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 4, "Britain": {"_count": 1}, "A": {"_count": 1}, "the": {"_count": 1}, "anger": {"_count": 1}}, "square": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "fell": {"_count": 1, "in": {"_count": 1}}, "together": {"_count": 1, "but": {"_count": 1}}, "newsletter": {"_count": 1, "": {"_count": 1}}, "undoubtedly": {"_count": 1, "Little": {"_count": 1}}, "however": {"_count": 1, "": {"_count": 1}}, "passed": {"_count": 1, "very": {"_count": 1}}, "The": {"_count": 1, "girl": {"_count": 1}}, "was": {"_count": 1, "full": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 2, "missed": {"_count": 1}, "mightve": {"_count": 1}}, "preparing": {"_count": 1, "to": {"_count": 1}}, "cradled": {"_count": 1, "in": {"_count": 1}}, "Ottery": {"_count": 1, "St": {"_count": 1}}, "is": {"_count": 1, "named": {"_count": 1}}, "lay": {"_count": 1, "in": {"_count": 1}}, "under": {"_count": 1, "cover": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}, "sought": {"_count": 1, "out": {"_count": 1}}}, "Halloween": {"_count": 31, "ten": {"_count": 1, "years": {"_count": 1}}, "morning": {"_count": 2, "they": {"_count": 1}, "Harry": {"_count": 1}}, "feast": {"_count": 9, "Harry": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "was": {"_count": 2}, "in": {"_count": 1}, "and": {"_count": 1}, "seemed": {"_count": 1}}, "decorations": {"_count": 1, "put": {"_count": 1}}, "joke": {"_count": 1, "": {"_count": 1}}, "": {"_count": 9, "!": {"_count": 1}, ".": {"_count": 7}, "?": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "arrived": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "goblet": {"_count": 1}}, "a": {"_count": 1, "cloud": {"_count": 1}}}, "foghorn": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}}, "nicer": {"_count": 3, "people": {"_count": 1, "yeh": {"_count": 1}}, "for": {"_count": 1, "it": {"_count": 1}}, "than": {"_count": 1, "Phlegm": {"_count": 1}}}, "Wanted": {"_count": 5, "ter": {"_count": 1, "make": {"_count": 1}}, "one": {"_count": 1, "ever": {"_count": 1}}, "to": {"_count": 1, "arrive": {"_count": 1}}, "a": {"_count": 1, "rematch": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}}, "job": {"_count": 159, "of": {"_count": 4, "it": {"_count": 1}, "all": {"_count": 1}, "dressing": {"_count": 1}, "destroying": {"_count": 1}}, "Why": {"_count": 1, "arent": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 22}, "?": {"_count": 4}, "!": {"_count": 4}}, "is": {"_count": 2, "to": {"_count": 2}}, "to": {"_count": 9, "protect": {"_count": 1}, "catch": {"_count": 1}, "arm": {"_count": 1}, "try": {"_count": 1}, "think": {"_count": 1}, "recapture": {"_count": 1}, "persuade": {"_count": 1}, "make": {"_count": 1}, "do": {"_count": 1}}, "hushing": {"_count": 1, "them": {"_count": 1}}, "It": {"_count": 1, "seemed": {"_count": 1}}, "shaking": {"_count": 1, "it": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "sir": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 5, "Hagrid": {"_count": 2}, "Percy": {"_count": 1}, "Dumbledore": {"_count": 2}}, "on": {"_count": 3, "them": {"_count": 2}, "you": {"_count": 1}}, "Ill": {"_count": 1, "tell": {"_count": 1}}, "Lockhart": {"_count": 1, "muttered": {"_count": 1}}, "description": {"_count": 1, "didnt": {"_count": 1}}, "after": {"_count": 3, "all": {"_count": 2}, "he": {"_count": 1}}, "coverin": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 2, "jinxed": {"_count": 1}, "to": {"_count": 1}}, "but": {"_count": 5, "even": {"_count": 1}, "there": {"_count": 1}, "before": {"_count": 1}, "refused": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 3, "addition": {"_count": 1}, "the": {"_count": 2}}, "it": {"_count": 2, "was": {"_count": 2}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "spotting": {"_count": 1, "Harry": {"_count": 1}}, "only": {"_count": 1, "on": {"_count": 1}}, "getting": {"_count": 1, "back": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "too": {"_count": 1, "these": {"_count": 1}}, "proving": {"_count": 1, "it": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 7, "he": {"_count": 1}, "the": {"_count": 1}, "Crouch": {"_count": 1}, "how": {"_count": 1}, "slunk": {"_count": 1}, "I": {"_count": 2}}, "for": {"_count": 6, "the": {"_count": 1}, "him": {"_count": 1}, "Fawkes": {"_count": 1}, "you": {"_count": 1}, "us": {"_count": 1}, "somebody": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "secured": {"_count": 1, "for": {"_count": 1}}, "mastering": {"_count": 1, "it": {"_count": 1}}, "hiding": {"_count": 1, "wouldnt": {"_count": 1}}, "indeed": {"_count": 2, "": {"_count": 2}}, "done": {"_count": 1, "dropped": {"_count": 1}}, "fer": {"_count": 1, "me": {"_count": 1}}, "he": {"_count": 5, "had": {"_count": 1}, "wants": {"_count": 1}, "gave": {"_count": 1}, "wanted": {"_count": 1}, "said": {"_count": 1}}, "ere": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 3, "Gringotts": {"_count": 1}, "the": {"_count": 2}}, "even": {"_count": 1, "though": {"_count": 1}}, "that": {"_count": 4, "required": {"_count": 1}, "encompassed": {"_count": 1}, "I": {"_count": 1}, "ought": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "they": {"_count": 1, "say": {"_count": 1}}, "shes": {"_count": 1, "here": {"_count": 1}}, "anymore": {"_count": 1, "and": {"_count": 1}}, "there": {"_count": 1, "could": {"_count": 1}}, "further": {"_count": 1, "they": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "you": {"_count": 1, "know": {"_count": 1}}, "Horace": {"_count": 1, "said": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "perhaps": {"_count": 1, "impossible": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 2, "he": {"_count": 2}}, "just": {"_count": 1, "for": {"_count": 1}}, "we": {"_count": 1, "both": {"_count": 1}}, "I": {"_count": 3, "do": {"_count": 1}, "hope": {"_count": 1}, "would": {"_count": 1}}, "Of": {"_count": 1, "course": {"_count": 1}}, "alone": {"_count": 1, "suggested": {"_count": 1}}, "youre": {"_count": 1, "doing": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "If": {"_count": 1, "wed": {"_count": 1}}, "satisfaction": {"_count": 1, "": {"_count": 1}}, "explaining": {"_count": 1, "Luna": {"_count": 1}}, "though": {"_count": 1, "isnt": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "doing": {"_count": 1, "I": {"_count": 1}}, "Cattermole": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "Give": {"_count": 1, "it": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "once": {"_count": 1, "Draco": {"_count": 1}}}, "killin": {"_count": 6, "by": {"_count": 1, "then": {"_count": 1}}, "the": {"_count": 1, "unicorns": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}}, "mark": {"_count": 57, "on": {"_count": 8, "yer": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 3}, "Snape": {"_count": 1}, "it": {"_count": 1}}, "of": {"_count": 8, "how": {"_count": 2}, "the": {"_count": 3}, "a": {"_count": 2}, "respect": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "making": {"_count": 1, "up": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "my": {"_count": 4, "words": {"_count": 4}}, "him": {"_count": 2, "rather": {"_count": 1}, "as": {"_count": 1}}, "had": {"_count": 1, "appeared": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "between": {"_count": 1, "two": {"_count": 1}}, "it": {"_count": 1, "but": {"_count": 1}}, "upon": {"_count": 3, "you": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}}, "Potter": {"_count": 1, "very": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "Beedle": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "the": {"_count": 2, "mark": {"_count": 1}, "spot": {"_count": 1}}, "inscribed": {"_count": 1, "upon": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}}, "ordinary": {"_count": 37, "cut": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "like": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "street": {"_count": 1, "full": {"_count": 1}}, "people": {"_count": 3, "": {"_count": 2}, "worry": {"_count": 1}}, "ones": {"_count": 1, "like": {"_count": 1}}, "golf": {"_count": 1, "balls": {"_count": 1}}, "fire": {"_count": 1, "either": {"_count": 1}}, "hairpin": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "Muggle": {"_count": 2, "camera": {"_count": 1}, "taxis": {"_count": 1}}, "sink": {"_count": 1, "": {"_count": 1}}, "bird": {"_count": 1, "": {"_count": 1}}, "common": {"_count": 1, "or": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "criminal": {"_count": 1, "dont": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "their": {"_count": 1, "owners": {"_count": 1}}, "course": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 1, "happened": {"_count": 1}}, "scar": {"_count": 1, "": {"_count": 1}}, "noises": {"_count": 1, "": {"_count": 1}}, "Magical": {"_count": 1, "Law": {"_count": 1}}, "dream": {"_count": 2, "": {"_count": 2}}, "class": {"_count": 1, "Potter": {"_count": 1}}, "door": {"_count": 1, "and": {"_count": 1}}, "Zabini": {"_count": 1, "gave": {"_count": 1}}, "day": {"_count": 2, "only": {"_count": 1}, "becomes": {"_count": 1}}, "objects": {"_count": 1, "easy": {"_count": 1}}, "underground": {"_count": 1, "public": {"_count": 1}}}, "powerful": {"_count": 117, "evil": {"_count": 1, "curse": {"_count": 1}}, "whyd": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 5, "in": {"_count": 1}, "delicious": {"_count": 1}, "when": {"_count": 1}, "flexible": {"_count": 1}, "more": {"_count": 1}}, "magical": {"_count": 3, "substance": {"_count": 1}, "object": {"_count": 1}, "history": {"_count": 1}}, "Dark": {"_count": 5, "wizard": {"_count": 3}, "magic": {"_count": 1}, "Magic": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "magic": {"_count": 2, "creatures": {"_count": 1}, "of": {"_count": 1}}, "as": {"_count": 4, "your": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 2}}, "restorative": {"_count": 1, "said": {"_count": 1}}, "whack": {"_count": 1, "in": {"_count": 1}}, "far": {"_count": 1, "more": {"_count": 1}}, "than": {"_count": 9, "little": {"_count": 1}, "myself": {"_count": 1}, "I": {"_count": 1}, "my": {"_count": 1}, "those": {"_count": 1}, "it": {"_count": 1}, "any": {"_count": 1}, "anything": {"_count": 1}, "mine": {"_count": 1}}, "countercharm": {"_count": 1, "": {"_count": 1}}, "wings": {"_count": 1, "they": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 5, "to": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "Snape": {"_count": 1}}, "wind": {"_count": 1, "had": {"_count": 1}}, "smell": {"_count": 2, "of": {"_count": 2}}, "bit": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "enough": {"_count": 2, "to": {"_count": 2}}, "spells": {"_count": 2, "can": {"_count": 1}, "upon": {"_count": 1}}, "scuttling": {"_count": 1, "legs": {"_count": 1}}, "silver": {"_count": 1, "fish": {"_count": 1}}, "that": {"_count": 3, "three": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "new": {"_count": 1, "hand": {"_count": 1}}, "ingredients": {"_count": 1, "": {"_count": 1}}, "Memory": {"_count": 1, "Charm": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "emotion": {"_count": 3, "had": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "rush": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 2, "felt": {"_count": 1}, "the": {"_count": 1}}, "jerk": {"_count": 1, "behind": {"_count": 1}}, "incursion": {"_count": 1, "upon": {"_count": 1}}, "impact": {"_count": 1, "on": {"_count": 1}}, "wave": {"_count": 1, "of": {"_count": 1}}, "protective": {"_count": 1, "spells": {"_count": 1}}, "wizards": {"_count": 1, "of": {"_count": 1}}, "protection": {"_count": 1, "while": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "eloping": {"_count": 1}}, "countercurses": {"_count": 1, "": {"_count": 1}}, "factor": {"_count": 1, "in": {"_count": 1}}, "ways": {"_count": 1, "but": {"_count": 1}}, "love": {"_count": 1, "potion": {"_count": 1}}, "infatuation": {"_count": 1, "or": {"_count": 1}}, "potion": {"_count": 1, "in": {"_count": 1}}, "aged": {"_count": 1, "monkey": {"_count": 1}}, "curse": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "properties": {"_count": 1, "": {"_count": 1}}, "enchantments": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "pull": {"_count": 1, "over": {"_count": 1}}, "enchantment": {"_count": 1, "though": {"_count": 1}}, "whiff": {"_count": 1, "of": {"_count": 1}}, "light": {"_count": 1, "behind": {"_count": 1}}, "mixture": {"_count": 1, "of": {"_count": 1}}, "evidence": {"_count": 1, "that": {"_count": 1}}, "voice": {"_count": 1, "of": {"_count": 1}}, "wand": {"_count": 4, "to": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "as": {"_count": 1}}, "blow": {"_count": 1, "from": {"_count": 1}}, "muscular": {"_count": 1, "No": {"_count": 1}}, "wands": {"_count": 1, "for": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "your": {"_count": 1, "race": {"_count": 1}}, "dangerous": {"_count": 1, "in": {"_count": 1}}, "how": {"_count": 1, "come": {"_count": 1}}, "objects": {"_count": 1, "": {"_count": 1}}, "bang": {"_count": 1, "extinguished": {"_count": 1}}}, "evil": {"_count": 46, "curse": {"_count": 1, "touches": {"_count": 1}}, "cackle": {"_count": 1, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "face": {"_count": 1, "was": {"_count": 1}}, "git": {"_count": 1, "how": {"_count": 1}}, "and": {"_count": 2, "market": {"_count": 1}, "these": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 3, "coming": {"_count": 1}, "who": {"_count": 1}, "of": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "wind": {"_count": 1, "around": {"_count": 1}}, "grins": {"_count": 1, "": {"_count": 1}}, "grin": {"_count": 2, "": {"_count": 1}, "spreading": {"_count": 1}}, "yellow": {"_count": 1, "eyes": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "flat": {"_count": 1, "face": {"_count": 1}}, "nasty": {"_count": 2, "attention": {"_count": 1}, "attentionseeking": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}, "twisted": {"_count": 1, "mad": {"_count": 1}}, "hag": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "change": {"_count": 1}}, "woman": {"_count": 2, "": {"_count": 1}, "made": {"_count": 1}}, "smile": {"_count": 1, "lit": {"_count": 1}}, "thing": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 2, "supreme": {"_count": 1}, "murder": {"_count": 1}}, "So": {"_count": 1, "hes": {"_count": 1}}, "even": {"_count": 1, "when": {"_count": 1}}, "be": {"_count": 1, "kept": {"_count": 1}}, "magic": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "duet": {"_count": 1, "": {"_count": 1}}, "object": {"_count": 1, "and": {"_count": 1}}}, "curse": {"_count": 105, "touches": {"_count": 1, "yeh": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "youd": {"_count": 1}, "into": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 10}, "?": {"_count": 5}, "!": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "under": {"_count": 1}}, "to": {"_count": 2, "work": {"_count": 1}, "use": {"_count": 1}}, "him": {"_count": 4, "Ron": {"_count": 1}, "he": {"_count": 1}, "then": {"_count": 1}, "once": {"_count": 1}}, "that": {"_count": 8, "killed": {"_count": 2}, "had": {"_count": 1}, "needs": {"_count": 1}, "failed": {"_count": 2}, "might": {"_count": 1}, "strengthens": {"_count": 1}}, "like": {"_count": 3, "that": {"_count": 1}, "Voldemorts": {"_count": 1}, "the": {"_count": 1}}, "their": {"_count": 1, "families": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "breaker": {"_count": 1, "for": {"_count": 1}}, "Mr": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 3, "rebounded": {"_count": 1}, "made": {"_count": 1}, "backfired": {"_count": 1}}, "scars": {"_count": 3, "": {"_count": 1}, "always": {"_count": 1}, "sometimes": {"_count": 1}}, "hers": {"_count": 1, "off": {"_count": 1}}, "on": {"_count": 2, "you": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 4, "each": {"_count": 1}, "Voldemort": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "entirely": {"_count": 1, "youd": {"_count": 1}}, "than": {"_count": 1, "Harry": {"_count": 1}}, "Snape": {"_count": 2, "into": {"_count": 1}, "was": {"_count": 1}}, "everyone": {"_count": 1, "in": {"_count": 1}}, "by": {"_count": 1, "next": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "was": {"_count": 2, "deflected": {"_count": 1}, "repelled": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "missed": {"_count": 2, "him": {"_count": 2}}, "many": {"_count": 1, "obstacles": {"_count": 1}}, "scar": {"_count": 1, "acting": {"_count": 1}}, "can": {"_count": 1, "there": {"_count": 1}}, "off": {"_count": 1, "him": {"_count": 1}}, "James": {"_count": 1, "so": {"_count": 1}}, "lifted": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "insult": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "intended": {"_count": 1, "to": {"_count": 1}}, "Dolohov": {"_count": 1, "had": {"_count": 1}}, "didnt": {"_count": 1, "even": {"_count": 1}}, "Why": {"_count": 1, "him": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "flew": {"_count": 1, "past": {"_count": 1}}, "Another": {"_count": 1, "flash": {"_count": 1}}, "after": {"_count": 1, "curse": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "knocking": {"_count": 1, "Harry": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "blocking": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "close": {"_count": 1}}, "hit": {"_count": 2, "MadEye": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "sailed": {"_count": 1, "over": {"_count": 1}}, "her": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 2, "which": {"_count": 1}, "extraordinary": {"_count": 1}}, "could": {"_count": 1, "cause": {"_count": 1}}, "surely": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "one": {"_count": 1}}, "soared": {"_count": 1, "beneath": {"_count": 1}}, "coming": {"_count": 1, "feel": {"_count": 1}}}, "touches": {"_count": 5, "yeh": {"_count": 1, "took": {"_count": 1}}, "your": {"_count": 1, "lips": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "my": {"_count": 1}}}, "McKinnons": {"_count": 3, "the": {"_count": 1, "Bones": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "I": {"_count": 1, "cried": {"_count": 1}}}, "Bones": {"_count": 39, "the": {"_count": 1, "Prewetts": {"_count": 1}}, "Susan": {"_count": 1, "": {"_count": 1}}, "s": {"_count": 2, "office": {"_count": 1}, "booming": {"_count": 1}}, "is": {"_count": 1, "okay": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "Head": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "staring": {"_count": 1, "down": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 2, "in": {"_count": 1}, "Morning": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "narrowing": {"_count": 1, "her": {"_count": 1}}, "impatiently": {"_count": 1, "the": {"_count": 1}}, "coolly": {"_count": 1, "while": {"_count": 1}}, "eyes": {"_count": 1, "widened": {"_count": 1}}, "looked": {"_count": 1, "down": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "who": {"_count": 2, "readjusted": {"_count": 1}, "had": {"_count": 1}}, "had": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "busy": {"_count": 1}}, "they": {"_count": 1, "got": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "Justin": {"_count": 1, "Page": {"_count": 1}}, "and": {"_count": 1, "Vance": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 1, "Hufflepuff": {"_count": 1}}}, "Prewetts": {"_count": 3, "an": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "remembered": {"_count": 137, "it": {"_count": 9, "before": {"_count": 1}, "hadnt": {"_count": 1}, "I": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "eerie": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}}, "something": {"_count": 5, "else": {"_count": 1}, "": {"_count": 3}, "similar": {"_count": 1}}, "being": {"_count": 1, "picked": {"_count": 1}}, "Ron": {"_count": 1, "telling": {"_count": 1}}, "about": {"_count": 1, "Snape": {"_count": 1}}, "Charlies": {"_count": 1, "letter": {"_count": 1}}, "what": {"_count": 8, "hed": {"_count": 1}, "Ron": {"_count": 1}, "Mr": {"_count": 3}, "Dumbledore": {"_count": 2}, "had": {"_count": 1}}, "wed": {"_count": 1, "done": {"_count": 1}}, "the": {"_count": 20, "dragons": {"_count": 1}, "way": {"_count": 1}, "Invisibility": {"_count": 1}, "most": {"_count": 1}, "reason": {"_count": 1}, "jeers": {"_count": 1}, "milkwhite": {"_count": 1}, "agony": {"_count": 2}, "only": {"_count": 1}, "feeling": {"_count": 1}, "behavior": {"_count": 1}, "few": {"_count": 1}, "overturned": {"_count": 1}, "mangled": {"_count": 1}, "snake": {"_count": 1}, "sound": {"_count": 1}, "words": {"_count": 1}, "killings": {"_count": 1}, "blind": {"_count": 1}}, "Sir": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 20, "today": {"_count": 1}, "my": {"_count": 1}, "Im": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}, "Ron": {"_count": 1}, "Hagrid": {"_count": 1}, "he": {"_count": 5}, "if": {"_count": 1}, "she": {"_count": 1}, "some": {"_count": 1}, "his": {"_count": 1}, "there": {"_count": 1}, "they": {"_count": 1}, "it": {"_count": 1}}, "putting": {"_count": 2, "it": {"_count": 1}, "something": {"_count": 1}}, "only": {"_count": 1, "too": {"_count": 1}}, "why": {"_count": 2, "he": {"_count": 2}}, "those": {"_count": 1, "dementors": {"_count": 1}}, "": {"_count": 8, "!": {"_count": 2}, ".": {"_count": 6}}, "where": {"_count": 1, "the": {"_count": 1}}, "urgent": {"_count": 1, "appointments": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "him": {"_count": 2, "the": {"_count": 1}, "turning": {"_count": 1}}, "how": {"_count": 7, "touchy": {"_count": 1}, "much": {"_count": 2}, "the": {"_count": 1}, "nearly": {"_count": 1}, "Snape": {"_count": 1}, "he": {"_count": 1}}, "their": {"_count": 1, "power": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "in": {"_count": 2, "office": {"_count": 1}, "his": {"_count": 1}}, "this": {"_count": 3, "scrap": {"_count": 1}, "": {"_count": 1}, "Hermione": {"_count": 1}}, "He": {"_count": 2, "had": {"_count": 2}}, "I": {"_count": 1, "havent": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "Hagrid": {"_count": 1, "mentioning": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "Harry": {"_count": 1, "panted": {"_count": 1}}, "It": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "Lupin": {"_count": 1, "saying": {"_count": 1}}, "Sirius": {"_count": 2, "in": {"_count": 1}, "crouching": {"_count": 1}}, "tha": {"_count": 1, "before": {"_count": 1}}, "his": {"_count": 3, "careers": {"_count": 1}, "first": {"_count": 1}, "headmaster": {"_count": 1}}, "worrying": {"_count": 1, "about": {"_count": 1}}, "Rons": {"_count": 2, "thoughts": {"_count": 1}, "expression": {"_count": 1}}, "seeing": {"_count": 2, "his": {"_count": 1}, "in": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Dumbledore": {"_count": 3, "s": {"_count": 1}, "crouching": {"_count": 1}, "had": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "piercing": {"_count": 1}}, "me": {"_count": 1, "have": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "Luna": {"_count": 1, "alone": {"_count": 1}}, "Dumbledores": {"_count": 1, "funeral": {"_count": 1}}, "a": {"_count": 2, "determination": {"_count": 1}, "much": {"_count": 1}}}, "cruel": {"_count": 19, "laugh": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "accurate": {"_count": 2}}, "steelcolored": {"_count": 1, "beaks": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "amusement": {"_count": 1, "more": {"_count": 1}}, "breeze": {"_count": 1, "lifting": {"_count": 1}}, "winds": {"_count": 1, "skinned": {"_count": 1}}, "as": {"_count": 1, "many": {"_count": 1}}, "satisfaction": {"_count": 1, "on": {"_count": 1}}, "smile": {"_count": 1, "twisting": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "mouth": {"_count": 1, "had": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "plain": {"_count": 1}}, "roughhewn": {"_count": 1, "like": {"_count": 1}}, "dreams": {"_count": 1, "and": {"_count": 1}}}, "sadly": {"_count": 42, "": {"_count": 19, ".": {"_count": 19}}, "watching": {"_count": 1, "Harry": {"_count": 1}}, "Hagrid": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 4, "Hermione": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 2}}, "he": {"_count": 1, "gathered": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "returned": {"_count": 1, "them": {"_count": 1}}, "his": {"_count": 1, "enormous": {"_count": 1}}, "eighty": {"_count": 1, "left": {"_count": 1}}, "but": {"_count": 1, "hes": {"_count": 1}}, "accidental": {"_count": 1, "rudeness": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "living": {"_count": 1}}, "still": {"_count": 1, "staring": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "I": {"_count": 1, "knew": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "misinformed": {"_count": 1, "": {"_count": 1}}}, "Took": {"_count": 11, "yeh": {"_count": 1, "from": {"_count": 1}}, "ages": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "long": {"_count": 1}}, "them": {"_count": 1, "hours": {"_count": 1}}, "a": {"_count": 2, "leaf": {"_count": 1}, "bit": {"_count": 1}}, "me": {"_count": 2, "six": {"_count": 1}, "and": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "only": {"_count": 1, "pureblood": {"_count": 1}}, "us": {"_count": 1, "abou": {"_count": 1}}}, "ruined": {"_count": 20, "house": {"_count": 2, "myself": {"_count": 1}, "where": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "any": {"_count": 1, "chance": {"_count": 1}}, "the": {"_count": 1, "punch": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "book": {"_count": 1, "to": {"_count": 1}}, "painting": {"_count": 1, "and": {"_count": 1}}, "tents": {"_count": 1, "were": {"_count": 1}}, "property": {"_count": 1, "": {"_count": 1}}, "everything": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 3, "these": {"_count": 1}, "proved": {"_count": 1}, "": {"_count": 1}}, "somewhat": {"_count": 1, "by": {"_count": 1}}, "before": {"_count": 1, "now": {"_count": 1}}, "his": {"_count": 1, "chance": {"_count": 1}}, "state": {"_count": 1, "as": {"_count": 1}}, "stone": {"_count": 1, "shack": {"_count": 1}}}, "orders": {"_count": 60, "": {"_count": 15, ".": {"_count": 8}, "!": {"_count": 4}, "?": {"_count": 3}}, "was": {"_count": 1, "tailing": {"_count": 1}}, "he": {"_count": 2, "rolled": {"_count": 1}, "promised": {"_count": 1}}, "from": {"_count": 8, "Dumbledore": {"_count": 1}, "my": {"_count": 1}, "her": {"_count": 1}, "someone": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}, "clamoring": {"_count": 1}, "something": {"_count": 1}}, "and": {"_count": 2, "passed": {"_count": 1}, "yet": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "to": {"_count": 2, "search": {"_count": 2}}, "but": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "night": {"_count": 1}}, "more": {"_count": 2, "likely": {"_count": 1}, "docilely": {"_count": 1}}, "only": {"_count": 1, "from": {"_count": 1}}, "has": {"_count": 1, "never": {"_count": 1}}, "here": {"_count": 1, "Snape": {"_count": 1}}, "said": {"_count": 2, "Snape": {"_count": 1}, "Ginny": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 2}}, "that": {"_count": 2, "I": {"_count": 1}, "Severus": {"_count": 1}}, "were": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "Dobby": {"_count": 1, "is": {"_count": 1}}, "they": {"_count": 1, "didn": {"_count": 1}}, "at": {"_count": 2, "McLaggen": {"_count": 1}, "all": {"_count": 1}}, "as": {"_count": 1, "\u2018run": {"_count": 1}}, "He": {"_count": 1, "hasnt": {"_count": 1}}, "Dumbledore": {"_count": 2, "owes": {"_count": 1}, "whose": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "Kreacher": {"_count": 1, "could": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "regarding": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "must": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}}, "Brought": {"_count": 2, "yeh": {"_count": 1, "ter": {"_count": 1}}, "up": {"_count": 1, "by": {"_count": 1}}}, "Load": {"_count": 3, "of": {"_count": 3, "old": {"_count": 1}, "dung": {"_count": 1}, "children": {"_count": 1}}}, "tosh": {"_count": 3, "said": {"_count": 1, "Uncle": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}}, "courage": {"_count": 23, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "failed": {"_count": 1, "again": {"_count": 1}}, "I": {"_count": 2, "see": {"_count": 1}, "award": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "mounting": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "for": {"_count": 1, "what": {"_count": 1}}, "one": {"_count": 1, "more": {"_count": 1}}, "and": {"_count": 5, "comfort": {"_count": 1}, "dived": {"_count": 1}, "cowardice": {"_count": 1}, "the": {"_count": 1}, "of": {"_count": 1}}, "to": {"_count": 1, "ask": {"_count": 1}}, "returned": {"_count": 1, "now": {"_count": 1}}, "won": {"_count": 1, "your": {"_count": 1}}}, "glaring": {"_count": 60, "at": {"_count": 44, "Hagrid": {"_count": 1}, "them": {"_count": 2}, "Ron": {"_count": 4}, "Malfoy": {"_count": 1}, "Peeves": {"_count": 1}, "Percy": {"_count": 1}, "Harry": {"_count": 8}, "him": {"_count": 4}, "Mr": {"_count": 1}, "Dumbledore": {"_count": 4}, "Krums": {"_count": 1}, "Hermione": {"_count": 2}, "her": {"_count": 1}, "it": {"_count": 1}, "each": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 3}, "Zabini": {"_count": 1}, "Fleur": {"_count": 1}, "Lupin": {"_count": 1}, "his": {"_count": 1}, "you": {"_count": 1}, "Snape": {"_count": 1}}, "red": {"_count": 1, "eyes": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "its": {"_count": 1, "horn": {"_count": 1}}, "over": {"_count": 1, "at": {"_count": 1}}, "until": {"_count": 1, "Harry": {"_count": 1}}, "upward": {"_count": 1, "through": {"_count": 1}}, "unblinkingly": {"_count": 1, "at": {"_count": 1}}, "after": {"_count": 1, "Hermione": {"_count": 1}}, "down": {"_count": 2, "at": {"_count": 1}, "upon": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "in": {"_count": 2, "opposite": {"_count": 2}}, "angrily": {"_count": 1, "at": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}}, "fists": {"_count": 41, "were": {"_count": 3, "clenched": {"_count": 3}}, "that": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "and": {"_count": 3, "gnashed": {"_count": 1}, "looked": {"_count": 1}, "Harry": {"_count": 1}}, "clenching": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 3, "clenched": {"_count": 1}, "raised": {"_count": 1}, "flailing": {"_count": 1}}, "clenched": {"_count": 5, "": {"_count": 2}, "as": {"_count": 1}, "upon": {"_count": 1}, "with": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "upon": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 3, "Harry": {"_count": 1}, "Mr": {"_count": 1}, "the": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "casting": {"_count": 1, "angry": {"_count": 1}}, "trembling": {"_count": 1, "on": {"_count": 1}}, "raised": {"_count": 1, "": {"_count": 1}}, "flailing": {"_count": 1, "trying": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "tightly": {"_count": 1, "in": {"_count": 1}}}, "clenched": {"_count": 42, "": {"_count": 6, ".": {"_count": 6}}, "suddenly": {"_count": 1, "around": {"_count": 1}}, "teeth": {"_count": 6, "": {"_count": 6}}, "on": {"_count": 4, "thin": {"_count": 1}, "top": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "nails": {"_count": 1}}, "tight": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 4, "hands": {"_count": 1}, "teeth": {"_count": 1}, "hand": {"_count": 1}, "fists": {"_count": 1}}, "like": {"_count": 2, "knuckles": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "he": {"_count": 2}}, "upon": {"_count": 3, "the": {"_count": 2}, "its": {"_count": 1}}, "with": {"_count": 1, "fury": {"_count": 1}}, "around": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "tightly": {"_count": 2, "around": {"_count": 2}}, "it": {"_count": 1, "more": {"_count": 1}}, "so": {"_count": 1, "tightly": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "painfully": {"_count": 1, "upon": {"_count": 1}}, "fist": {"_count": 1, "": {"_count": 1}}}, "accept": {"_count": 41, "theres": {"_count": 1, "something": {"_count": 1}}, "for": {"_count": 1, "their": {"_count": 1}}, "huntsmen": {"_count": 1, "whose": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "their": {"_count": 1, "chocolate": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "help": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "your": {"_count": 1, "resignation": {"_count": 1}}, "anyone": {"_count": 1, "at": {"_count": 1}}, "more": {"_count": 1, "favours": {"_count": 1}}, "the": {"_count": 4, "prospect": {"_count": 1}, "Orders": {"_count": 1}, "truth": {"_count": 1}, "extraordinary": {"_count": 1}}, "that": {"_count": 10, "fact": {"_count": 1}, "Dumbledores": {"_count": 1}, "you": {"_count": 1}, "excuse": {"_count": 1}, "in": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}}, "a": {"_count": 1, "full": {"_count": 1}}, "students": {"_count": 1, "into": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "Golpalotts": {"_count": 1, "Third": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "protection": {"_count": 1}}, "his": {"_count": 1, "decision": {"_count": 1}}, "these": {"_count": 1, "thieves": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "my": {"_count": 1, "offer": {"_count": 1}}, "Snape": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "he": {"_count": 1, "likes": {"_count": 1}}}, "theres": {"_count": 204, "something": {"_count": 18, "strange": {"_count": 1}, "youve": {"_count": 1}, "else": {"_count": 1}, "up": {"_count": 1}, "rotten": {"_count": 1}, "wrong": {"_count": 2}, "good": {"_count": 1}, "I": {"_count": 2}, "in": {"_count": 1}, "we": {"_count": 2}, "going": {"_count": 1}, "trapped": {"_count": 1}, "funny": {"_count": 1}, "really": {"_count": 1}, "hidden": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "dragons": {"_count": 1, "guardin": {"_count": 1}}, "still": {"_count": 3, "witches": {"_count": 1}, "the": {"_count": 1}, "plenty": {"_count": 1}}, "four": {"_count": 1, "balls": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "another": {"_count": 2, "player": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "someone": {"_count": 5, "called": {"_count": 1}, "untrustworthy": {"_count": 1}, "outside": {"_count": 1}, "much": {"_count": 1}, "over": {"_count": 1}}, "Potter": {"_count": 1, "whos": {"_count": 1}}, "the": {"_count": 5, "Weasleys": {"_count": 1}, "Keeper": {"_count": 1}, "whistle": {"_count": 1}, "Mudblood": {"_count": 1}, "new": {"_count": 1}}, "a": {"_count": 53, "Norwegian": {"_count": 1}, "book": {"_count": 1}, "unicorn": {"_count": 1}, "single": {"_count": 1}, "delicious": {"_count": 1}, "twoweek": {"_count": 1}, "Chamber": {"_count": 1}, "good": {"_count": 6}, "thing": {"_count": 2}, "dementor": {"_count": 1}, "bit": {"_count": 1}, "card": {"_count": 1}, "cupboard": {"_count": 1}, "burn": {"_count": 1}, "register": {"_count": 1}, "werewolf": {"_count": 1}, "P": {"_count": 1}, "handy": {"_count": 1}, "niche": {"_count": 1}, "sort": {"_count": 1}, "very": {"_count": 2}, "feast": {"_count": 1}, "picture": {"_count": 1}, "tragedy": {"_count": 1}, "ball": {"_count": 1}, "spare": {"_count": 1}, "chance": {"_count": 3}, "Muggle": {"_count": 1}, "difference": {"_count": 1}, "new": {"_count": 1}, "vomiting": {"_count": 1}, "broomstick": {"_count": 1}, "snake": {"_count": 1}, "really": {"_count": 1}, "connection": {"_count": 1}, "lot": {"_count": 3}, "possibility": {"_count": 1}, "small": {"_count": 1}, "reward": {"_count": 1}, "Deluminator": {"_count": 1}, "Horcrux": {"_count": 1}, "time": {"_count": 1}}, "all": {"_count": 1, "sorts": {"_count": 1}}, "no": {"_count": 31, "need": {"_count": 4}, "way": {"_count": 4}, "wood": {"_count": 1}, "other": {"_count": 1}, "sense": {"_count": 1}, "room": {"_count": 2}, "countercurse": {"_count": 2}, "point": {"_count": 5}, "case": {"_count": 1}, "proof": {"_count": 1}, "problem": {"_count": 1}, "rule": {"_count": 1}, "chance": {"_count": 2}, "one": {"_count": 1}, "mention": {"_count": 1}, "account": {"_count": 1}, "getting": {"_count": 1}, "prizes": {"_count": 1}}, "one": {"_count": 7, "more": {"_count": 1}, "thing": {"_count": 3}, "in": {"_count": 1}, "good": {"_count": 1}, "tomorrow": {"_count": 1}}, "Dumbledore": {"_count": 2, "for": {"_count": 1}, "beside": {"_count": 1}}, "only": {"_count": 2, "so": {"_count": 1}, "Loony": {"_count": 1}}, "anything": {"_count": 6, "to": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}, "else": {"_count": 1}, "hidden": {"_count": 1}}, "nothing": {"_count": 14, "to": {"_count": 3}, "anyone": {"_count": 1}, "wrong": {"_count": 2}, "you": {"_count": 1}, "at": {"_count": 1}, "between": {"_count": 1}, "she": {"_count": 1}, "fishy": {"_count": 1}, "funny": {"_count": 1}, "odd": {"_count": 1}, "scary": {"_count": 1}}, "every": {"_count": 1, "chance": {"_count": 1}}, "any": {"_count": 3, "chance": {"_count": 1}, "point": {"_count": 1}, "need": {"_count": 1}}, "Penelope": {"_count": 1, "": {"_count": 1}}, "nothin": {"_count": 2, "and": {"_count": 1}, "strange": {"_count": 1}}, "not": {"_count": 2, "much": {"_count": 1}, "manyd": {"_count": 1}}, "been": {"_count": 3, "some": {"_count": 1}, "a": {"_count": 1}, "no": {"_count": 1}}, "going": {"_count": 3, "to": {"_count": 3}}, "always": {"_count": 1, "Moaning": {"_count": 1}}, "some": {"_count": 3, "whod": {"_count": 1}, "low": {"_count": 1}, "other": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "provision": {"_count": 1, "in": {"_count": 1}}, "its": {"_count": 1, "twin": {"_count": 1}}, "definitely": {"_count": 1, "something": {"_count": 1}}, "Lupin": {"_count": 1, "obviously": {"_count": 1}}, "more": {"_count": 1, "said": {"_count": 1}}, "A": {"_count": 1, "No": {"_count": 1}}, "everything": {"_count": 1, "we": {"_count": 1}}, "definite": {"_count": 1, "room": {"_count": 1}}, "his": {"_count": 1, "Umgubular": {"_count": 1}}, "gotta": {"_count": 1, "be": {"_count": 1}}, "loads": {"_count": 1, "o": {"_count": 1}}, "an": {"_count": 1, "alternative": {"_count": 1}}, "nettles": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "cornin": {"_count": 1}}, "anyone": {"_count": 1, "else": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "strife": {"_count": 1, "and": {"_count": 1}}, "trouble": {"_count": 1, "Call": {"_count": 1}}, "McLaggen": {"_count": 1, "coming": {"_count": 1}}, "kids": {"_count": 1, "who": {"_count": 1}}, "six": {"_count": 1, "pairs": {"_count": 1}}, "luggage": {"_count": 1, "in": {"_count": 1}}, "obviously": {"_count": 1, "been": {"_count": 1}}, "Charlie": {"_count": 1, "": {"_count": 1}}, "nobody": {"_count": 1, "here": {"_count": 1}}, "this": {"_count": 2, "too": {"_count": 1}, "": {"_count": 1}}, "probably": {"_count": 1, "no": {"_count": 1}}, "her": {"_count": 1, "lost": {"_count": 1}}}, "beating": {"_count": 43, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 3, "wings": {"_count": 1}, "tiny": {"_count": 1}, "wand": {"_count": 1}}, "himself": {"_count": 2, "around": {"_count": 1}, "up": {"_count": 1}}, "Slytherin": {"_count": 2, "for": {"_count": 1}, "when": {"_count": 1}}, "him": {"_count": 1, "at": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "very": {"_count": 3, "fast": {"_count": 3}}, "Dudley": {"_count": 1, "at": {"_count": 1}}, "fast": {"_count": 4, "both": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 1}, "faster": {"_count": 1}}, "its": {"_count": 1, "wings": {"_count": 1}}, "their": {"_count": 1, "team": {"_count": 1}}, "the": {"_count": 3, "water": {"_count": 1}, "unwary": {"_count": 1}, "air": {"_count": 1}}, "up": {"_count": 3, "tonight": {"_count": 2}, "one": {"_count": 1}}, "a": {"_count": 1, "violent": {"_count": 1}}, "rather": {"_count": 4, "fast": {"_count": 4}}, "his": {"_count": 2, "brain": {"_count": 1}, "bare": {"_count": 1}}, "heavily": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Ravenclaw": {"_count": 1, "at": {"_count": 1}}, "off": {"_count": 1, "large": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "alive": {"_count": 1, "because": {"_count": 1}}, "hard": {"_count": 1, "and": {"_count": 1}}}, "cured": {"_count": 9, "and": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "hams": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "!": {"_count": 1}, "?": {"_count": 1}}, "three": {"_count": 1, "days": {"_count": 1}}, "it": {"_count": 2, "by": {"_count": 1}, "but": {"_count": 1}}}, "denying": {"_count": 8, "it": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "for": {"_count": 1}}, "what": {"_count": 1, "hes": {"_count": 1}}, "us": {"_count": 1, "entry": {"_count": 1}}, "that": {"_count": 1, "this": {"_count": 1}}, "the": {"_count": 1, "pain": {"_count": 1}}}, "worlds": {"_count": 9, "better": {"_count": 1, "off": {"_count": 1}}, "best": {"_count": 2, "Patronus": {"_count": 1}, "magic": {"_count": 1}}, "biggest": {"_count": 2, "prat": {"_count": 2}}, "he": {"_count": 1, "tore": {"_count": 1}}, "great": {"_count": 1, "thinkers": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "most": {"_count": 1, "dangerous": {"_count": 1}}}, "wizarding": {"_count": 40, "types": {"_count": 1, "just": {"_count": 1}}, "families": {"_count": 4, "": {"_count": 1}, "the": {"_count": 1}, "are": {"_count": 1}, "talked": {"_count": 1}}, "world": {"_count": 15, "six": {"_count": 1}, "": {"_count": 7}, "the": {"_count": 2}, "that": {"_count": 1}, "knew": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}, "is": {"_count": 1}}, "family": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "relatives": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 1, "for": {"_count": 1}}, "newspaper": {"_count": 1, "the": {"_count": 1}}, "village": {"_count": 1, "and": {"_count": 1}}, "shops": {"_count": 1, "in": {"_count": 1}}, "game": {"_count": 1, "rather": {"_count": 1}}, "point": {"_count": 1, "of": {"_count": 1}}, "equipment": {"_count": 1, "shop": {"_count": 1}}, "laws": {"_count": 1, "": {"_count": 1}}, "bank": {"_count": 1, "Gringotts": {"_count": 1}}, "schools": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "school": {"_count": 1, "": {"_count": 1}}, "law": {"_count": 1, "": {"_count": 1}}, "house": {"_count": 1, "to": {"_count": 1}}, "links": {"_count": 1, "of": {"_count": 1}}, "public": {"_count": 1, "": {"_count": 1}}, "pride": {"_count": 1, "": {"_count": 1}}}, "types": {"_count": 2, "just": {"_count": 1, "what": {"_count": 1}}, "of": {"_count": 1, "potion": {"_count": 1}}}, "battered": {"_count": 24, "pink": {"_count": 1, "umbrella": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "now": {"_count": 1, "that": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "case": {"_count": 1, "held": {"_count": 1}}, "old": {"_count": 5, "bulletin": {"_count": 1}, "suitcase": {"_count": 1}, "tables": {"_count": 1}, "tiara": {"_count": 1}, "watch": {"_count": 1}}, "umbrellas": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 1, "emerged": {"_count": 1}}, "briefcases": {"_count": 1, "still": {"_count": 1}}, "leatherbound": {"_count": 1, "books": {"_count": 1}}, "wooden": {"_count": 1, "sign": {"_count": 1}}, "peacockfeather": {"_count": 1, "quill": {"_count": 1}}, "and": {"_count": 1, "mournfullooking": {"_count": 1}}, "telephone": {"_count": 1, "box": {"_count": 1}}, "box": {"_count": 1, "left": {"_count": 1}}, "looking": {"_count": 1, "copies": {"_count": 1}}, "him": {"_count": 1, "sobs": {"_count": 1}}, "visage": {"_count": 1, "shone": {"_count": 1}}, "gold": {"_count": 1, "watch": {"_count": 1}}}, "umbrella": {"_count": 27, "from": {"_count": 1, "inside": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 4, "whirled": {"_count": 1}, "stroked": {"_count": 1}, "rapped": {"_count": 1}, "said": {"_count": 1}}, "swishing": {"_count": 1, "down": {"_count": 1}}, "again": {"_count": 1, "tapped": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 4}}, "very": {"_count": 1, "tightly": {"_count": 1}}, "leaning": {"_count": 1, "against": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "Harry": {"_count": 1, "took": {"_count": 1}}, "Mmm": {"_count": 1, "": {"_count": 1}}, "stand": {"_count": 5, "that": {"_count": 1}, "thats": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "which": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "seized": {"_count": 1, "a": {"_count": 1}}, "tip": {"_count": 1, "": {"_count": 1}}}, "Pointing": {"_count": 5, "this": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 3, "wand": {"_count": 3}}, "at": {"_count": 1, "Harry": {"_count": 1}}}, "sword": {"_count": 174, "he": {"_count": 2, "said": {"_count": 1}, "would": {"_count": 1}}, "": {"_count": 39, ".": {"_count": 23}, "?": {"_count": 13}, "!": {"_count": 3}}, "had": {"_count": 3, "appeared": {"_count": 1}, "once": {"_count": 1}, "delivered": {"_count": 1}}, "thin": {"_count": 1, "glittering": {"_count": 1}}, "in": {"_count": 8, "both": {"_count": 1}, "Dumbledores": {"_count": 1}, "its": {"_count": 1}, "Voldemort": {"_count": 1}, "Gringotts": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}}, "and": {"_count": 14, "drove": {"_count": 1}, "the": {"_count": 2}, "what": {"_count": 1}, "handed": {"_count": 1}, "brandished": {"_count": 1}, "now": {"_count": 1}, "had": {"_count": 1}, "dripping": {"_count": 1}, "above": {"_count": 1}, "his": {"_count": 1}, "drew": {"_count": 1}, "swung": {"_count": 1}, "crying": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "Gilderoy": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "was": {"_count": 7, "too": {"_count": 1}, "not": {"_count": 1}, "Bills": {"_count": 1}, "taken": {"_count": 1}, "Ragnuk": {"_count": 1}, "their": {"_count": 1}, "unpleasant": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "another": {"_count": 1, "fruitless": {"_count": 1}}, "fight": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 3, "large": {"_count": 1}, "a": {"_count": 1}, "glittering": {"_count": 1}}, "of": {"_count": 24, "Godric": {"_count": 5}, "Gryffindor": {"_count": 19}}, "reposed": {"_count": 1, "within": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "may": {"_count": 1, "present": {"_count": 1}}, "Potter": {"_count": 1, "because": {"_count": 1}}, "but": {"_count": 3, "none": {"_count": 1}, "the": {"_count": 1}, "Griphook": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "would": {"_count": 2, "not": {"_count": 1}, "have": {"_count": 1}}, "on": {"_count": 1, "YouKnow": {"_count": 1}}, "wasnt": {"_count": 1, "safe": {"_count": 1}}, "I": {"_count": 2, "know": {"_count": 2}}, "for": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "isnt": {"_count": 2, "Snapes": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "can": {"_count": 1, "destroy": {"_count": 1}}, "well": {"_count": 1, "away": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "hilt": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 1, "for": {"_count": 1}}, "been": {"_count": 1, "put": {"_count": 1}}, "reposing": {"_count": 1, "upon": {"_count": 1}}, "remained": {"_count": 2, "upon": {"_count": 1}, "a": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "get": {"_count": 1, "in": {"_count": 1}}, "its": {"_count": 1, "rubied": {"_count": 1}}, "however": {"_count": 1, "Harry": {"_count": 1}}, "dragging": {"_count": 1, "at": {"_count": 1}}, "point": {"_count": 1, "trembled": {"_count": 1}}, "still": {"_count": 1, "higher": {"_count": 1}}, "hanging": {"_count": 1, "pointlessly": {"_count": 1}}, "high": {"_count": 1, "his": {"_count": 1}}, "flashed": {"_count": 1, "plunged": {"_count": 1}}, "held": {"_count": 1, "slackly": {"_count": 1}}, "clanged": {"_count": 1, "as": {"_count": 1}}, "last": {"_count": 1, "didnt": {"_count": 1}}, "as": {"_count": 2, "well": {"_count": 2}}, "examining": {"_count": 1, "its": {"_count": 1}}, "is": {"_count": 2, "real": {"_count": 1}, "the": {"_count": 1}}, "over": {"_count": 1, "one": {"_count": 1}}, "bumping": {"_count": 1, "against": {"_count": 1}}, "that": {"_count": 1, "lies": {"_count": 1}}, "stolen": {"_count": 1, "by": {"_count": 1}}, "until": {"_count": 1, "we": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "after": {"_count": 1, "hes": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "Griphook": {"_count": 1, "then": {"_count": 1}}, "flew": {"_count": 1, "out": {"_count": 1}}, "repeated": {"_count": 1, "Ron": {"_count": 1}}, "stroke": {"_count": 1, "": {"_count": 1}}}, "speared": {"_count": 3, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "sausage": {"_count": 1}, "roast": {"_count": 1}}}, "bearded": {"_count": 14, "giant": {"_count": 1, "Uncle": {"_count": 1}}, "head": {"_count": 1, "under": {"_count": 1}}, "men": {"_count": 1, "with": {"_count": 1}}, "egg": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 1, "holding": {"_count": 1}}, "face": {"_count": 2, "sticking": {"_count": 1}, "and": {"_count": 1}}, "Bane": {"_count": 1, "whom": {"_count": 1}}, "centaur": {"_count": 1, "toward": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "form": {"_count": 1, "of": {"_count": 1}}, "Aurors": {"_count": 1, "in": {"_count": 1}}, "bloke": {"_count": 1, "saying": {"_count": 1}}, "figure": {"_count": 1, "clambered": {"_count": 1}}}, "failed": {"_count": 65, "again": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 32, "answer": {"_count": 1}, "steal": {"_count": 1}, "kill": {"_count": 4}, "stop": {"_count": 1}, "mount": {"_count": 1}, "win": {"_count": 1}, "deliver": {"_count": 1}, "get": {"_count": 2}, "turn": {"_count": 2}, "retrieve": {"_count": 2}, "ask": {"_count": 2}, "hear": {"_count": 1}, "effect": {"_count": 1}, "achieve": {"_count": 1}, "notice": {"_count": 1}, "complete": {"_count": 1}, "save": {"_count": 1}, "come": {"_count": 1}, "grasp": {"_count": 1}, "maintain": {"_count": 1}, "recover": {"_count": 1}, "obey": {"_count": 1}, "mend": {"_count": 1}, "find": {"_count": 1}, "push": {"_count": 1}}, "her": {"_count": 3, "": {"_count": 1}, "before": {"_count": 1}, "Charms": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "wizard": {"_count": 1, "who": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "everything": {"_count": 2, "": {"_count": 2}}, "him": {"_count": 2, "": {"_count": 2}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "on": {"_count": 1, "Stealth": {"_count": 1}}, "dismally": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "this": {"_count": 1}}, "save": {"_count": 1, "Sloper": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "Divination": {"_count": 1, "and": {"_count": 1}}, "though": {"_count": 1, "didnt": {"_count": 1}}, "Hermione": {"_count": 1, "for": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "attempt": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "The": {"_count": 1, "snake": {"_count": 1}}}, "flattened": {"_count": 22, "himself": {"_count": 4, "against": {"_count": 3}, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 4, "bangs": {"_count": 2}, "snoutlike": {"_count": 1}, "hair": {"_count": 1}}, "Hufflepuff": {"_count": 1, "in": {"_count": 1}}, "themselves": {"_count": 2, "against": {"_count": 2}}, "Peru": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "a": {"_count": 1}}, "tone": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "newspaper": {"_count": 1}}, "look": {"_count": 1, "about": {"_count": 1}}, "he": {"_count": 1, "blinked": {"_count": 1}}, "hawklike": {"_count": 1, "head": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "serpentine": {"_count": 1, "face": {"_count": 1}}}, "breathing": {"_count": 83, "heavily": {"_count": 6, "and": {"_count": 1}, "through": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "until": {"_count": 1}, "His": {"_count": 1}}, "down": {"_count": 4, "their": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 1}}, "deeply": {"_count": 6, "listening": {"_count": 1}, "": {"_count": 2}, "his": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "loudly": {"_count": 1, "and": {"_count": 1}}, "fast": {"_count": 5, "and": {"_count": 4}, "": {"_count": 1}}, "slowing": {"_count": 1, "down": {"_count": 1}}, "very": {"_count": 5, "fast": {"_count": 3}, "slowly": {"_count": 2}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "rather": {"_count": 2, "heavily": {"_count": 1}, "faster": {"_count": 1}}, "was": {"_count": 6, "shallow": {"_count": 3}, "growing": {"_count": 1}, "quick": {"_count": 1}, "fading": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "hard": {"_count": 6, "as": {"_count": 1}, "through": {"_count": 2}, "he": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}}, "fire": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 8, "front": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}, "lungfuls": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "harsh": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "some": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "quickly": {"_count": 1, "trying": {"_count": 1}}, "listening": {"_count": 1, "yet": {"_count": 1}}, "seemed": {"_count": 1, "difficult": {"_count": 1}}, "more": {"_count": 1, "freely": {"_count": 1}}, "becoming": {"_count": 1, "easier": {"_count": 1}}, "eased": {"_count": 1, "up": {"_count": 1}}, "heavy": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "heavily": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "he": {"_count": 1, "stared": {"_count": 1}}, "her": {"_count": 1, "long": {"_count": 1}}}, "Vol": {"_count": 16, "sorry": {"_count": 4, "I": {"_count": 2}, "YouKnowWho": {"_count": 1}, "with": {"_count": 1}}, "I": {"_count": 2, "mean": {"_count": 2}}, "": {"_count": 1, "?": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "realized": {"_count": 1}}, "Shut": {"_count": 1, "your": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "snarled": {"_count": 1}}, "Dont": {"_count": 2, "say": {"_count": 2}}, "Didnt": {"_count": 1, "I": {"_count": 1}}, "Oi": {"_count": 1, "": {"_count": 1}}, "HARRY": {"_count": 1, "NO": {"_count": 1}}}, "Disappeared": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Vanished": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "parted": {"_count": 1, "scooped": {"_count": 1}}, "objects": {"_count": 2, "go": {"_count": 2}}}, "Same": {"_count": 13, "night": {"_count": 1, "he": {"_count": 1}}, "time": {"_count": 3, "next": {"_count": 1}, "tomorrow": {"_count": 1}, "same": {"_count": 1}}, "as": {"_count": 2, "usual": {"_count": 1}, "he": {"_count": 1}}, "goes": {"_count": 3, "for": {"_count": 3}}, "to": {"_count": 1, "you": {"_count": 1}}, "difference": {"_count": 1, "really": {"_count": 1}}, "reason": {"_count": 2, "he": {"_count": 2}}}, "Makes": {"_count": 2, "yeh": {"_count": 1, "even": {"_count": 1}}, "a": {"_count": 1, "diffrence": {"_count": 1}}}, "whyd": {"_count": 1, "he": {"_count": 1, "go": {"_count": 1}}}, "Some": {"_count": 81, "say": {"_count": 3, "he": {"_count": 2}, "hes": {"_count": 1}}, "of": {"_count": 33, "em": {"_count": 1}, "them": {"_count": 8}, "the": {"_count": 14}, "these": {"_count": 5}, "its": {"_count": 1}, "you": {"_count": 1}, "those": {"_count": 1}, "her": {"_count": 1}, "\u2018my": {"_count": 1}}, "sort": {"_count": 2, "of": {"_count": 2}}, "had": {"_count": 2, "no": {"_count": 1}, "merely": {"_count": 1}}, "rich": {"_count": 1, "builder": {"_count": 1}}, "Useful": {"_count": 1, "Tips": {"_count": 1}}, "distance": {"_count": 1, "to": {"_count": 1}}, "people": {"_count": 8, "reckon": {"_count": 1}, "like": {"_count": 1}, "got": {"_count": 1}, "were": {"_count": 1}, "wont": {"_count": 1}, "call": {"_count": 1}, "perhaps": {"_count": 1}, "are": {"_count": 1}}, "day": {"_count": 1, "Hermiones": {"_count": 1}}, "Apparate": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "furtive": {"_count": 1}}, "job": {"_count": 1, "for": {"_count": 1}}, "lesson": {"_count": 1, "though": {"_count": 1}}, "disturbance": {"_count": 1, "was": {"_count": 1}}, "Bulgarian": {"_count": 1, "ministers": {"_count": 1}}, "fear": {"_count": 1, "that": {"_count": 1}}, "way": {"_count": 1, "beyond": {"_count": 1}}, "whispered": {"_count": 1, "behind": {"_count": 1}}, "looked": {"_count": 2, "annoyed": {"_count": 1}, "apprehensive": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "Fred": {"_count": 1}}, "were": {"_count": 2, "panting": {"_count": 1}, "accompanied": {"_count": 1}}, "called": {"_count": 1, "out": {"_count": 1}}, "are": {"_count": 1, "going": {"_count": 1}}, "idiots": {"_count": 2, "started": {"_count": 1}, "copied": {"_count": 1}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "credit": {"_count": 1, "must": {"_count": 1}}, "would": {"_count": 1, "say": {"_count": 1}}, "students": {"_count": 1, "were": {"_count": 1}}, "excitement": {"_count": 1, "was": {"_count": 1}}, "stiffened": {"_count": 1, "others": {"_count": 1}}, "indeed": {"_count": 1, "were": {"_count": 1}}, "inner": {"_count": 1, "certainty": {"_count": 1}}, "wizards": {"_count": 1, "just": {"_count": 1}}, "other": {"_count": 1, "living": {"_count": 1}}}, "Codswallop": {"_count": 2, "in": {"_count": 2, "my": {"_count": 2}}}, "Dunno": {"_count": 34, "if": {"_count": 3, "he": {"_count": 2}, "weve": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "what": {"_count": 3, "Harry": {"_count": 1}, "happened": {"_count": 1}, "yehre": {"_count": 1}}, "said": {"_count": 15, "Hagrid": {"_count": 1}, "Ron": {"_count": 4}, "Fred": {"_count": 1}, "Harry": {"_count": 9}}, "some": {"_count": 1, "sort": {"_count": 1}}, "how": {"_count": 1, "Mum": {"_count": 1}}, "why": {"_count": 1, "you": {"_count": 1}}, "Then": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Ron": {"_count": 1, "whispered": {"_count": 1}}, "where": {"_count": 1, "were": {"_count": 1}}, "muttered": {"_count": 1, "Dudley": {"_count": 1}}}, "human": {"_count": 85, "left": {"_count": 2, "in": {"_count": 2}}, "veins": {"_count": 1, "bewitching": {"_count": 1}}, "Bludgers": {"_count": 1, "themselves": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "beings": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 8}, "!": {"_count": 2}, "?": {"_count": 1}}, "bones": {"_count": 2, "lay": {"_count": 1}, "with": {"_count": 1}}, "fingernails": {"_count": 1, "": {"_count": 1}}, "prey": {"_count": 1, "has": {"_count": 1}}, "less": {"_count": 1, "complex": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "again": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 2, "fact": {"_count": 1}, "shape": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "voice": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "faces": {"_count": 1, "are": {"_count": 1}}, "being": {"_count": 4, "is": {"_count": 1}, "upset": {"_count": 1}, "meant": {"_count": 1}, "": {"_count": 1}}, "was": {"_count": 1, "Dumbledore": {"_count": 1}}, "could": {"_count": 1, "recognize": {"_count": 1}}, "Transfiguration": {"_count": 2, "already": {"_count": 1}, "working": {"_count": 1}}, "to": {"_count": 2, "survive": {"_count": 1}, "lay": {"_count": 1}}, "body": {"_count": 1, "in": {"_count": 1}}, "child": {"_count": 1, "except": {"_count": 1}}, "hand": {"_count": 2, "bright": {"_count": 1}, "": {"_count": 1}}, "form": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "chameleon": {"_count": 1, "": {"_count": 1}}, "habitation": {"_count": 1, "said": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "eyes": {"_count": 1, "with": {"_count": 1}}, "There": {"_count": 1, "are": {"_count": 1}}, "hosepipe": {"_count": 1, "": {"_count": 1}}, "nonsense": {"_count": 1, "": {"_count": 1}}, "accidents": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 3, "Firenze": {"_count": 1}, "Bane": {"_count": 1}, "Magorian": {"_count": 1}}, "teacher": {"_count": 1, "Harry": {"_count": 1}}, "Grawp": {"_count": 1, "looked": {"_count": 1}}, "head": {"_count": 1, "almost": {"_count": 1}}, "showed": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 1, "am": {"_count": 1}}, "kindness": {"_count": 1, "Take": {"_count": 1}}, "What": {"_count": 1, "did": {"_count": 1}}, "girl": {"_count": 2, "": {"_count": 2}}, "THEN": {"_count": 1, "I": {"_count": 1}}, "intelligence": {"_count": 1, "than": {"_count": 1}}, "weakness": {"_count": 1, "of": {"_count": 1}}, "friends": {"_count": 1, "find": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "flesh": {"_count": 1, "that": {"_count": 1}}, "figure": {"_count": 1, "hanging": {"_count": 1}}, "use": {"_count": 1, "only": {"_count": 1}}, "presence": {"_count": 2, "and": {"_count": 1}, "that": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "language": {"_count": 1, "he": {"_count": 1}}, "outline": {"_count": 1, "for": {"_count": 1}}, "arent": {"_count": 1, "we": {"_count": 1}}, "life": {"_count": 1, "is": {"_count": 1}}, "ones": {"_count": 1, "": {"_count": 1}}, "scream": {"_count": 1, "from": {"_count": 1}}}, "die": {"_count": 117, "": {"_count": 34, ".": {"_count": 21}, "?": {"_count": 9}, "!": {"_count": 4}}, "of": {"_count": 4, "hunger": {"_count": 1}, "shock": {"_count": 1}, "fright": {"_count": 1}, "this": {"_count": 1}}, "a": {"_count": 2, "very": {"_count": 1}, "natural": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 2}, "Kingsley": {"_count": 1}}, "in": {"_count": 9, "proper": {"_count": 1}, "a": {"_count": 1}, "me": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}, "Azkaban": {"_count": 1}, "vain": {"_count": 1}, "that": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "wont": {"_count": 1, "they": {"_count": 1}}, "he": {"_count": 2, "shows": {"_count": 1}, "said": {"_count": 1}}, "trying": {"_count": 4, "Harry": {"_count": 1}, "what": {"_count": 1}, "to": {"_count": 2}}, "while": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 3, "are": {"_count": 1}, "there": {"_count": 1}, "understands": {"_count": 1}}, "fighting": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "said": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "you": {"_count": 1, "need": {"_count": 1}}, "today": {"_count": 1, "did": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "too": {"_count": 1, "without": {"_count": 1}}, "for": {"_count": 12, "": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 3}, "part": {"_count": 1}, "you": {"_count": 4}, "the": {"_count": 1}, "us": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "though": {"_count": 1}}, "during": {"_count": 1, "a": {"_count": 1}}, "like": {"_count": 1, "Cedric": {"_count": 1}}, "crouching": {"_count": 1, "here": {"_count": 1}}, "kneeling": {"_count": 1, "at": {"_count": 1}}, "upright": {"_count": 1, "like": {"_count": 1}}, "theyve": {"_count": 1, "never": {"_count": 1}}, "Ron": {"_count": 1, "die": {"_count": 1}}, "Im": {"_count": 1, "just": {"_count": 1}}, "the": {"_count": 1, "hard": {"_count": 1}}, "having": {"_count": 1, "escaped": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 2}, "any": {"_count": 1}, "another": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "betray": {"_count": 1}}, "but": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 3, "he": {"_count": 2}, "you": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "long": {"_count": 1}}, "young": {"_count": 1, "muttered": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "dont": {"_count": 1, "die": {"_count": 1}}, "The": {"_count": 1, "elfs": {"_count": 1}}, "one": {"_count": 1, "by": {"_count": 1}}, "would": {"_count": 1, "see": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "undefeated": {"_count": 1, "the": {"_count": 1}}}, "bidin": {"_count": 2, "his": {"_count": 2, "time": {"_count": 2}}}, "ours": {"_count": 16, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "its": {"_count": 1, "their": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "even": {"_count": 1, "Harry": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "added": {"_count": 1, "Zacharias": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 2}, "a": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}, "lies": {"_count": 1, "a": {"_count": 1}}, "my": {"_count": 1, "Lord": {"_count": 1}}, "It": {"_count": 1, "is": {"_count": 1}}}, "kinda": {"_count": 1, "trances": {"_count": 1, "": {"_count": 1}}}, "trances": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "turning": {"_count": 1, "again": {"_count": 1}}}, "couldve": {"_count": 42, "done": {"_count": 4, "if": {"_count": 1}, "with": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}}, "died": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "hit": {"_count": 1, "we": {"_count": 1}}, "gone": {"_count": 2, "up": {"_count": 1}, "too": {"_count": 1}}, "fried": {"_count": 1, "an": {"_count": 1}}, "had": {"_count": 2, "the": {"_count": 1}, "ages": {"_count": 1}}, "asked": {"_count": 1, "her": {"_count": 1}}, "flown": {"_count": 1, "in": {"_count": 1}}, "been": {"_count": 4, "Lupin": {"_count": 1}, "meant": {"_count": 1}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}}, "got": {"_count": 3, "a": {"_count": 1}, "rid": {"_count": 1}, "away": {"_count": 1}}, "turned": {"_count": 1, "into": {"_count": 1}}, "taken": {"_count": 2, "those": {"_count": 1}, "anyonel": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "gotten": {"_count": 1, "down": {"_count": 1}}, "beaten": {"_count": 1, "you": {"_count": 1}}, "couldve": {"_count": 1, "pulled": {"_count": 1}}, "pulled": {"_count": 1, "him": {"_count": 1}}, "made": {"_count": 1, "it": {"_count": 1}}, "heard": {"_count": 1, "The": {"_count": 1}}, "played": {"_count": 1, "better": {"_count": 1}}, "stopped": {"_count": 2, "this": {"_count": 1}, "myself": {"_count": 1}}, "just": {"_count": 1, "told": {"_count": 1}}, "strung": {"_count": 1, "you": {"_count": 1}}, "handed": {"_count": 1, "me": {"_count": 1}}, "sent": {"_count": 1, "off": {"_count": 1}}, "nicked": {"_count": 1, "some": {"_count": 1}}, "guessed": {"_count": 1, "Snape": {"_count": 1}}, "happened": {"_count": 1, "as": {"_count": 1}}}, "cornin": {"_count": 18, "back": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Hagrid": {"_count": 2}}, "up": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "ter": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 1, "come": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "on": {"_count": 2, "fine": {"_count": 1}, "so": {"_count": 1}}, "ter": {"_count": 1, "visit": {"_count": 1}}, "an": {"_count": 1, "all": {"_count": 1}}, "out": {"_count": 1, "already": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "Im": {"_count": 1}}}, "Too": {"_count": 22, "weak": {"_count": 2, "to": {"_count": 2}}, "tired": {"_count": 1, "to": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "right": {"_count": 2, "you": {"_count": 1}, "it": {"_count": 1}}, "true": {"_count": 1, "muttered": {"_count": 1}}, "soon": {"_count": 1, "it": {"_count": 1}}, "much": {"_count": 2, "lettuce": {"_count": 1}, "of": {"_count": 1}}, "bad": {"_count": 2, "boys": {"_count": 1}, "for": {"_count": 1}}, "late": {"_count": 6, "the": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "its": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}}, "Much": {"_count": 1, "": {"_count": 1}}, "powerful": {"_count": 1, "": {"_count": 1}}, "risky": {"_count": 1, "": {"_count": 1}}, "polite": {"_count": 1, "Harry": {"_count": 1}}}, "weak": {"_count": 52, "to": {"_count": 6, "carry": {"_count": 1}, "seek": {"_count": 1}, "move": {"_count": 1}, "do": {"_count": 1}, "dare": {"_count": 1}, "take": {"_count": 1}}, "smile": {"_count": 3, "as": {"_count": 2}, "that": {"_count": 1}}, "You": {"_count": 1, "mean": {"_count": 1}}, "chuckle": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "kneed": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 5, "shivery": {"_count": 1}, "shaking": {"_count": 1}, "I": {"_count": 1}, "sleepy": {"_count": 1}, "foolish": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "talentless": {"_count": 1, "thing": {"_count": 1}}, "very": {"_count": 1, "weak": {"_count": 1}}, "with": {"_count": 2, "happiness": {"_count": 1}, "tiredness": {"_count": 1}}, "chin": {"_count": 1, "": {"_count": 1}}, "silver": {"_count": 1, "sun": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "pale": {"_count": 1, "face": {"_count": 1}}, "as": {"_count": 2, "ever": {"_count": 1}, "we": {"_count": 1}}, "body": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "September": {"_count": 1, "sunlight": {"_count": 1}}, "people": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "May": {"_count": 1, "sunshine": {"_count": 1}}, "spot": {"_count": 1, "sending": {"_count": 1}}, "link": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "from": {"_count": 1, "your": {"_count": 1}}, "sharing": {"_count": 1, "the": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "clear": {"_count": 1, "sunlight": {"_count": 1}}, "seeking": {"_count": 1, "protection": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "hopeful": {"_count": 1, "smile": {"_count": 1}}, "Come": {"_count": 1, "in": {"_count": 1}}, "Dumbledore": {"_count": 1, "all": {"_count": 1}}}, "carry": {"_count": 56, "on": {"_count": 18, "": {"_count": 7}, "tinkering": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 2}, "by": {"_count": 1}, "then": {"_count": 1}, "Potions": {"_count": 1}, "treating": {"_count": 1}, "without": {"_count": 1}, "next": {"_count": 1}}, "name": {"_count": 1, "tags": {"_count": 1}}, "yer": {"_count": 1, "mail": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 1}, "slowly": {"_count": 1}, "Voldemort": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "clubs": {"_count": 1, "to": {"_count": 1}}, "immensely": {"_count": 1, "heavy": {"_count": 1}}, "details": {"_count": 1, "of": {"_count": 1}}, "around": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 2, "trunk": {"_count": 1}, "Triwizard": {"_count": 1}}, "or": {"_count": 1, "use": {"_count": 1}}, "Harry": {"_count": 1, "returned": {"_count": 1}}, "an": {"_count": 1, "entire": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "as": {"_count": 1}}, "Dudley": {"_count": 1, "along": {"_count": 1}}, "out": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "tea": {"_count": 1, "trays": {"_count": 1}}, "that": {"_count": 1, "owl": {"_count": 1}}, "several": {"_count": 1, "small": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "seized": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 1}, "youre": {"_count": 1}}, "my": {"_count": 1, "words": {"_count": 1}}, "false": {"_count": 1, "tales": {"_count": 1}}, "a": {"_count": 3, "tune": {"_count": 1}, "wand": {"_count": 1}, "curse": {"_count": 1}}, "one": {"_count": 1, "wizard": {"_count": 1}}}, "Cause": {"_count": 5, "somethin": {"_count": 1, "about": {"_count": 1}}, "thats": {"_count": 1, "not": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "I": {"_count": 1, "reckon": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}}, "somethin": {"_count": 13, "about": {"_count": 2, "you": {"_count": 2}}, "goin": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "o": {"_count": 1, "course": {"_count": 1}}, "fishy": {"_count": 1, "goin": {"_count": 1}}, "ter": {"_count": 2, "discuss": {"_count": 1}, "do": {"_count": 1}}, "any": {"_count": 1, "wizard": {"_count": 1}}, "when": {"_count": 1, "shes": {"_count": 1}}, "really": {"_count": 1, "special": {"_count": 1}}}, "goin": {"_count": 28, "on": {"_count": 3, "that": {"_count": 1}, "then": {"_count": 1}, "holiday": {"_count": 1}}, "ter": {"_count": 8, "Hogwarts": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 2}, "win": {"_count": 2}, "come": {"_count": 1}, "give": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 3}}, "that": {"_count": 1, "fast": {"_count": 1}}, "mad": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "horrible": {"_count": 1}}, "down": {"_count": 1, "ter": {"_count": 1}}, "I": {"_count": 1, "wondered": {"_count": 1}}, "back": {"_count": 2, "visitin": {"_count": 1}, "ter": {"_count": 1}}, "in": {"_count": 2, "here": {"_count": 1}, "so": {"_count": 1}}, "then": {"_count": 1, "after": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "anywhere": {"_count": 1, "growled": {"_count": 1}}}, "dunno": {"_count": 82, "what": {"_count": 5, "it": {"_count": 1}, "he": {"_count": 1}, "happened": {"_count": 1}, "theyre": {"_count": 2}}, "Ive": {"_count": 2, "just": {"_count": 1}, "never": {"_count": 1}}, "dodgy": {"_count": 1, "place": {"_count": 1}}, "Ron": {"_count": 1, "looked": {"_count": 1}}, "chuckled": {"_count": 1, "Hagrid": {"_count": 1}}, "Harry": {"_count": 4, "maybe": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "said": {"_count": 17, "Harry": {"_count": 9}, "Cedric": {"_count": 1}, "Ron": {"_count": 6}, "Fred": {"_count": 1}}, "I": {"_count": 1, "just": {"_count": 1}}, "if": {"_count": 6, "thats": {"_count": 2}, "they": {"_count": 1}, "youve": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "maybe": {"_count": 1, "he": {"_count": 1}}, "when": {"_count": 2, "I": {"_count": 1}, "Bradley": {"_count": 1}}, "they": {"_count": 1, "lured": {"_count": 1}}, "really": {"_count": 1, "angry": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "why": {"_count": 5, "nor": {"_count": 1}, "Angelina": {"_count": 1}, "the": {"_count": 2}, "do": {"_count": 1}}, "how": {"_count": 3, "she": {"_count": 1}, "yeh": {"_count": 1}, "said": {"_count": 1}}, "where": {"_count": 1, "we": {"_count": 1}}, "Weasley": {"_count": 1, "is": {"_count": 1}}, "Voldemort": {"_count": 1, "used": {"_count": 1}}, "there": {"_count": 1, "could": {"_count": 1}}, "whether": {"_count": 1, "its": {"_count": 1}}, "empty": {"_count": 1, "potion": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "I": {"_count": 1}}, "do": {"_count": 2, "I": {"_count": 2}}, "some": {"_count": 1, "Ministry": {"_count": 1}}, "exactly": {"_count": 2, "where": {"_count": 1}, "said": {"_count": 1}}, "it": {"_count": 1, "couldve": {"_count": 1}}}, "stumped": {"_count": 16, "him": {"_count": 1, "all": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "off": {"_count": 2, "toward": {"_count": 1}, "down": {"_count": 1}}, "in": {"_count": 1, "shortly": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "just": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "up": {"_count": 1}}, "over": {"_count": 2, "to": {"_count": 2}}, "this": {"_count": 1, "time": {"_count": 1}}, "back": {"_count": 1, "upstairs": {"_count": 1}}}, "respect": {"_count": 30, "blazing": {"_count": 1, "in": {"_count": 1}}, "yet": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "a": {"_count": 1}, "Cedric": {"_count": 1}}, "for": {"_count": 8, "Hagrid": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 2}, "Ogden": {"_count": 1}, "goblin": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "bordering": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 2, "sort": {"_count": 1}, "Dark": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "liking": {"_count": 1}}, "interest": {"_count": 1, "in": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "so": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "Harry": {"_count": 1, "began": {"_count": 1}}}, "blazing": {"_count": 29, "in": {"_count": 8, "his": {"_count": 4}, "the": {"_count": 2}, "a": {"_count": 1}, "her": {"_count": 1}}, "fire": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "winter": {"_count": 1}}, "sunshine": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "row": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "evening": {"_count": 1, "sky": {"_count": 1}}, "fiery": {"_count": 1, "bright": {"_count": 1}}, "white": {"_count": 2, "parchment": {"_count": 1}, "as": {"_count": 1}}, "look": {"_count": 3, "in": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "silver": {"_count": 1, "outline": {"_count": 1}}, "green": {"_count": 1, "skull": {"_count": 1}}, "flames": {"_count": 1, "showed": {"_count": 1}}}, "Him": {"_count": 10, "": {"_count": 5, "?": {"_count": 3}, "!": {"_count": 2}}, "and": {"_count": 2, "the": {"_count": 1}, "everyone": {"_count": 1}}, "an": {"_count": 1, "mell": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "Harry": {"_count": 1, "froze": {"_count": 1}}}, "clouted": {"_count": 1, "by": {"_count": 1, "Dudley": {"_count": 1}}}, "bullied": {"_count": 5, "by": {"_count": 2, "Aunt": {"_count": 1}, "Uncle": {"_count": 1}}, "into": {"_count": 1, "taking": {"_count": 1}}, "Neville": {"_count": 1, "in": {"_count": 1}}, "or": {"_count": 1, "bewitched": {"_count": 1}}}, "warty": {"_count": 1, "toads": {"_count": 1, "every": {"_count": 1}}}, "toads": {"_count": 12, "every": {"_count": 1, "time": {"_count": 1}}, "went": {"_count": 1, "outta": {"_count": 1}}, "sat": {"_count": 1, "gulping": {"_count": 1}}, "hop": {"_count": 1, "realistically": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "": {"_count": 1}}, "Will": {"_count": 1, "what": {"_count": 1}}, "back": {"_count": 1, "orf": {"_count": 1}}, "eyes": {"_count": 3, "": {"_count": 1}, "were": {"_count": 1}, "scanning": {"_count": 1}}, "mouth": {"_count": 1, "stretched": {"_count": 1}}}, "lock": {"_count": 46, "him": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 2, "in": {"_count": 1}, "up": {"_count": 1}}, "and": {"_count": 10, "whispered": {"_count": 1}, "turned": {"_count": 1}, "Hermione": {"_count": 1}, "opened": {"_count": 3}, "undo": {"_count": 1}, "felt": {"_count": 1}, "Uncle": {"_count": 1}, "slumped": {"_count": 1}}, "clicked": {"_count": 4, "and": {"_count": 2}, "behind": {"_count": 1}, "open": {"_count": 1}}, "Harry": {"_count": 2, "muttered": {"_count": 1}, "in": {"_count": 1}}, "it": {"_count": 5, "in": {"_count": 2}, "": {"_count": 2}, "clicked": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "had": {"_count": 1, "clicked": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "slide": {"_count": 1, "back": {"_count": 1}}, "away": {"_count": 1, "Harrys": {"_count": 1}}, "you": {"_count": 3, "in": {"_count": 3}}, "his": {"_count": 1, "school": {"_count": 1}}, "threw": {"_count": 1, "open": {"_count": 1}}, "your": {"_count": 1, "door": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "spiky": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "click": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "front": {"_count": 1}, "doors": {"_count": 1}}, "a": {"_count": 1, "Death": {"_count": 1}}, "turned": {"_count": 1, "Ron": {"_count": 1}}}, "defeated": {"_count": 19, "the": {"_count": 1, "greatest": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "voice": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "Bulgarian": {"_count": 1, "players": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "Hufflepuff": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "Loxias": {"_count": 1, "and": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "and": {"_count": 1, "terrified": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}}, "sorcerer": {"_count": 4, "in": {"_count": 3, "the": {"_count": 3}}, "of": {"_count": 1, "all": {"_count": 1}}}, "kick": {"_count": 21, "him": {"_count": 3, "around": {"_count": 1}, "Ron": {"_count": 1}, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "off": {"_count": 1, "from": {"_count": 1}}, "her": {"_count": 1, "just": {"_count": 1}}, "from": {"_count": 1, "me": {"_count": 1}}, "the": {"_count": 2, "bucket": {"_count": 1}, "shins": {"_count": 1}}, "at": {"_count": 5, "Crookshanks": {"_count": 2}, "a": {"_count": 1}, "him": {"_count": 1}, "Albus": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "his": {"_count": 1}}, "himself": {"_count": 1, "and": {"_count": 1}}, "bite": {"_count": 1, "or": {"_count": 1}}, "you": {"_count": 1, "off": {"_count": 1}}, "and": {"_count": 1, "punch": {"_count": 1}}}, "football": {"_count": 4, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "field": {"_count": 1, "": {"_count": 1}}, "team": {"_count": 1, "was": {"_count": 1}}}, "quietly": {"_count": 359, "I": {"_count": 6, "think": {"_count": 2}, "havent": {"_count": 1}, "wouldnt": {"_count": 1}, "walk": {"_count": 1}, "know": {"_count": 1}}, "as": {"_count": 29, "they": {"_count": 7}, "he": {"_count": 7}, "the": {"_count": 6}, "possible": {"_count": 7}, "Mrs": {"_count": 1}, "Umbridge": {"_count": 1}}, "": {"_count": 183, ".": {"_count": 182}, "!": {"_count": 1}}, "but": {"_count": 3, "POTTER": {"_count": 1}, "clearly": {"_count": 1}, "it": {"_count": 1}}, "so": {"_count": 6, "that": {"_count": 6}}, "Snapes": {"_count": 1, "already": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "to": {"_count": 12, "look": {"_count": 1}, "Dumbledore": {"_count": 2}, "Harry": {"_count": 3}, "Ron": {"_count": 3}, "a": {"_count": 1}, "the": {"_count": 2}}, "behind": {"_count": 2, "them": {"_count": 1}, "her": {"_count": 1}}, "into": {"_count": 3, "Snapes": {"_count": 1}, "his": {"_count": 1}, "scraps": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "still": {"_count": 3, "its": {"_count": 1}, "not": {"_count": 1}, "dabbing": {"_count": 1}}, "that": {"_count": 4, "killing": {"_count": 1}, "Frank": {"_count": 1}, "no": {"_count": 1}, "there": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "come": {"_count": 1, "over": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "and": {"_count": 14, "then": {"_count": 1}, "quickly": {"_count": 1}, "without": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 3}, "Harry": {"_count": 1}, "moved": {"_count": 1}, "pointing": {"_count": 1}, "it": {"_count": 1}, "murmuring": {"_count": 1}, "Hepzibah": {"_count": 1}, "as": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "Thought": {"_count": 1, "o": {"_count": 1}}, "if": {"_count": 1, "Voldemort": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "you": {"_count": 1, "dont": {"_count": 1}}, "Well": {"_count": 1, "I": {"_count": 1}}, "limping": {"_count": 1, "forward": {"_count": 1}}, "drawing": {"_count": 1, "out": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "nine": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "Dumbledore": {"_count": 1}}, "tucking": {"_count": 1, "the": {"_count": 1}}, "cmon": {"_count": 1, "": {"_count": 1}}, "please": {"_count": 1, "come": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "once": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 2, "ears": {"_count": 1}, "eyes": {"_count": 1}}, "from": {"_count": 2, "their": {"_count": 1}, "behind": {"_count": 1}}, "after": {"_count": 2, "a": {"_count": 2}}, "why": {"_count": 1, "I": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "to": {"_count": 1}}, "In": {"_count": 1, "a": {"_count": 1}}, "We": {"_count": 1, "knew": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "looking": {"_count": 2, "away": {"_count": 1}, "at": {"_count": 1}}, "indeed": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "Ive": {"_count": 1, "ironed": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "turning": {"_count": 1, "a": {"_count": 1}}, "elated": {"_count": 1, "": {"_count": 1}}, "throwing": {"_count": 1, "down": {"_count": 1}}, "when": {"_count": 4, "she": {"_count": 3}, "they": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "barely": {"_count": 1, "moving": {"_count": 1}}, "while": {"_count": 1, "a": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "Thanks": {"_count": 1, "Mum": {"_count": 1}}, "waspish": {"_count": 1, "but": {"_count": 1}}, "thrusting": {"_count": 1, "a": {"_count": 1}}, "withdrawing": {"_count": 1, "her": {"_count": 1}}, "peering": {"_count": 2, "at": {"_count": 1}, "behind": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "could": {"_count": 1}}, "glancing": {"_count": 2, "around": {"_count": 1}, "toward": {"_count": 1}}, "prodding": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "apparently": {"_count": 1, "quite": {"_count": 1}}, "McLaggen": {"_count": 1, "looks": {"_count": 1}}, "Ah": {"_count": 1, "": {"_count": 1}}, "James": {"_count": 1, "was": {"_count": 1}}, "producing": {"_count": 1, "a": {"_count": 1}}, "leaning": {"_count": 1, "forward": {"_count": 1}}, "pushed": {"_count": 1, "the": {"_count": 1}}, "holding": {"_count": 1, "his": {"_count": 1}}, "Oh": {"_count": 1, "surely": {"_count": 1}}, "Kill": {"_count": 1, "them": {"_count": 1}}, "extracted": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "Ron": {"_count": 1, "just": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "has": {"_count": 1, "long": {"_count": 1}}, "is": {"_count": 1, "despicable": {"_count": 1}}, "be": {"_count": 1, "it": {"_count": 1}}}, "Not": {"_count": 324, "a": {"_count": 22, "wizard": {"_count": 1}, "toad": {"_count": 1}, "bad": {"_count": 3}, "soul": {"_count": 1}, "scar": {"_count": 1}, "word": {"_count": 3}, "punishment": {"_count": 1}, "leaf": {"_count": 1}, "dog": {"_count": 1}, "chance": {"_count": 1}, "dicky": {"_count": 1}, "week": {"_count": 1}, "very": {"_count": 1}, "really": {"_count": 1}, "single": {"_count": 2}, "big": {"_count": 1}, "lot": {"_count": 1}}, "spposed": {"_count": 1, "ter": {"_count": 1}}, "only": {"_count": 7, "was": {"_count": 3}, "were": {"_count": 2}, "had": {"_count": 1}, "did": {"_count": 1}}, "to": {"_count": 11, "worry": {"_count": 7}, "interfere": {"_count": 1}, "you": {"_count": 1}, "stay": {"_count": 1}, "do": {"_count": 1}}, "wanting": {"_count": 3, "to": {"_count": 3}}, "Slytherin": {"_count": 3, "not": {"_count": 1}, "eh": {"_count": 1}, "": {"_count": 1}}, "if": {"_count": 7, "you": {"_count": 2}, "I": {"_count": 2}, "he": {"_count": 1}, "youve": {"_count": 1}, "the": {"_count": 1}}, "arguing": {"_count": 1, "I": {"_count": 1}}, "until": {"_count": 7, "he": {"_count": 1}, "theyd": {"_count": 1}, "Harry": {"_count": 1}, "Montague": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 2}}, "even": {"_count": 5, "one": {"_count": 1}, "I": {"_count": 2}, "Fred": {"_count": 1}, "able": {"_count": 1}}, "fast": {"_count": 1, "enough": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 6, "nothing": {"_count": 1}, "the": {"_count": 1}, "long": {"_count": 2}, "sale": {"_count": 1}, "her": {"_count": 1}}, "the": {"_count": 9, "Stone": {"_count": 1}, "way": {"_count": 2}, "greatest": {"_count": 1}, "ruddy": {"_count": 1}, "longmolared": {"_count": 1}, "Burrow": {"_count": 1}, "point": {"_count": 1}, "Bloody": {"_count": 1}}, "today": {"_count": 4, "": {"_count": 2}, "Mr": {"_count": 1}, "though": {"_count": 1}}, "now": {"_count": 8, "": {"_count": 2}, "Arthur": {"_count": 1}, "that": {"_count": 1}, "thanks": {"_count": 1}, "said": {"_count": 1}, "anyway": {"_count": 1}, "Hermione": {"_count": 1}}, "unlike": {"_count": 1, "yourself": {"_count": 1}}, "where": {"_count": 1, "Im": {"_count": 1}}, "that": {"_count": 12, "his": {"_count": 1}, "Im": {"_count": 3}, "he": {"_count": 2}, "it": {"_count": 1}, "ridiculous": {"_count": 1}, "I": {"_count": 1}, "bad": {"_count": 1}, "she": {"_count": 1}, "good": {"_count": 1}}, "not": {"_count": 2, "HeWhoMustNotBeNamed": {"_count": 1}, "really": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoys": {"_count": 1}}, "like": {"_count": 2, "that": {"_count": 1}, "him": {"_count": 1}}, "with": {"_count": 4, "me": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "Umbridge": {"_count": 1}}, "Touch": {"_count": 1, "": {"_count": 1}}, "lost": {"_count": 1, "are": {"_count": 1}}, "as": {"_count": 5, "surprised": {"_count": 1}, "stupid": {"_count": 1}, "tall": {"_count": 1}, "much": {"_count": 1}, "gormless": {"_count": 1}}, "far": {"_count": 4, "said": {"_count": 1}, "from": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}}, "daring": {"_count": 1, "even": {"_count": 1}}, "much": {"_count": 5, "said": {"_count": 2}, "for": {"_count": 1}, "left": {"_count": 1}, "hair": {"_count": 1}}, "unless": {"_count": 8, "you": {"_count": 3}, "Miss": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "youd": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "kill": {"_count": 1, "you": {"_count": 1}}, "just": {"_count": 2, "any": {"_count": 1}, "yet": {"_count": 1}}, "here": {"_count": 5, "Harry": {"_count": 1}, "": {"_count": 1}, "boy": {"_count": 1}, "surely": {"_count": 1}, "precisely": {"_count": 1}}, "since": {"_count": 1, "": {"_count": 1}}, "Azkaban": {"_count": 1, "": {"_count": 1}}, "tiny": {"_count": 1, "spiders": {"_count": 1}}, "another": {"_count": 2, "attack": {"_count": 1}, "one": {"_count": 1}}, "what": {"_count": 3, "": {"_count": 1}, "youd": {"_count": 1}, "he": {"_count": 1}}, "something": {"_count": 1, "he": {"_count": 1}}, "happy": {"_count": 1, "": {"_count": 1}}, "entirely": {"_count": 1, "said": {"_count": 1}}, "everyone": {"_count": 3, "was": {"_count": 1}, "can": {"_count": 1}, "thought": {"_count": 1}}, "yet": {"_count": 7, "said": {"_count": 1}, "": {"_count": 2}, "she": {"_count": 1}, "The": {"_count": 1}, "anyway": {"_count": 1}, "but": {"_count": 1}}, "too": {"_count": 3, "far": {"_count": 2}, "bad": {"_count": 1}}, "remotely": {"_count": 1, "frightening": {"_count": 1}}, "at": {"_count": 12, "all": {"_count": 11}, "Hogwarts": {"_count": 1}}, "Harry": {"_count": 10, "not": {"_count": 2}, "please": {"_count": 2}, "Please": {"_count": 2}, "Not": {"_count": 1}, "": {"_count": 3}}, "many": {"_count": 1, "people": {"_count": 1}}, "looking": {"_count": 1, "too": {"_count": 1}}, "on": {"_count": 2, "duty": {"_count": 1}, "a": {"_count": 1}}, "exactly": {"_count": 3, "on": {"_count": 1}, "sir": {"_count": 1}, "said": {"_count": 1}}, "clothes": {"_count": 1, "not": {"_count": 1}}, "by": {"_count": 3, "name": {"_count": 1}, "daylight": {"_count": 1}, "magic": {"_count": 1}}, "doing": {"_count": 1, "nothing": {"_count": 1}}, "you": {"_count": 3, "him": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "nice": {"_count": 1, "he": {"_count": 1}}, "pleasant": {"_count": 1, "": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "spew": {"_count": 1, "said": {"_count": 1}}, "one": {"_count": 4, "of": {"_count": 3}, "person": {"_count": 1}}, "in": {"_count": 8, "front": {"_count": 1}, "the": {"_count": 3}, "Little": {"_count": 1}, "big": {"_count": 1}, "trouble": {"_count": 1}, "that": {"_count": 1}}, "once": {"_count": 1, "in": {"_count": 1}}, "bad": {"_count": 4, "": {"_count": 1}, "muttered": {"_count": 1}, "said": {"_count": 2}}, "against": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 5, "of": {"_count": 3}, "the": {"_count": 1}, "wizards": {"_count": 1}}, "sure": {"_count": 2, "yeh": {"_count": 1}, "said": {"_count": 1}}, "hiding": {"_count": 1, "anything": {"_count": 1}}, "good": {"_count": 1, "said": {"_count": 1}}, "this": {"_count": 2, "brave": {"_count": 1}, "said": {"_count": 1}}, "cover": {"_count": 1, "to": {"_count": 1}}, "necessarily": {"_count": 2, "said": {"_count": 2}}, "seriously": {"_count": 1, "ill": {"_count": 1}}, "our": {"_count": 1, "business": {"_count": 1}}, "surprising": {"_count": 1, "is": {"_count": 1}}, "altogether": {"_count": 1, "reassured": {"_count": 1}}, "really": {"_count": 10, "said": {"_count": 6}, "bad": {"_count": 1}, "": {"_count": 3}}, "of": {"_count": 2, "course": {"_count": 1}, "great": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "feeling": {"_count": 1, "well": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 2}}, "pomegranate": {"_count": 1, "juice": {"_count": 1}}, "tonight": {"_count": 1, "Dobby": {"_count": 1}}, "running": {"_count": 1, "away": {"_count": 1}}, "after": {"_count": 4, "what": {"_count": 2}, "Decree": {"_count": 1}, "the": {"_count": 1}}, "messing": {"_count": 1, "about": {"_count": 1}}, "so": {"_count": 7, "loud": {"_count": 1}, "good": {"_count": 2}, "much": {"_count": 1}, "well": {"_count": 1}, "fast": {"_count": 1}, "long": {"_count": 1}}, "very": {"_count": 1, "good": {"_count": 1}}, "Potters": {"_count": 1, "Army": {"_count": 1}}, "anymore": {"_count": 4, "He": {"_count": 1}, "said": {"_count": 2}, "panted": {"_count": 1}}, "food": {"_count": 1, "or": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "scared": {"_count": 1, "of": {"_count": 1}}, "quite": {"_count": 2, "said": {"_count": 2}}, "pretty": {"_count": 1, "is": {"_count": 1}}, "always": {"_count": 1, "though": {"_count": 1}}, "him": {"_count": 1, "hes": {"_count": 1}}, "great": {"_count": 1, "said": {"_count": 1}}, "his": {"_count": 1, "little": {"_count": 1}}, "turned": {"_count": 1, "seventeen": {"_count": 1}}, "long": {"_count": 1, "after": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "when": {"_count": 1, "there": {"_count": 1}}, "content": {"_count": 1, "with": {"_count": 1}}, "Mum": {"_count": 1, "though": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "Enter": {"_count": 1, "Without": {"_count": 1}}, "particularly": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "bothered": {"_count": 1, "what": {"_count": 1}}, "anger": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "wand": {"_count": 1}}, "gold": {"_count": 1, "said": {"_count": 1}}, "under": {"_count": 1, "your": {"_count": 1}}, "Albus": {"_count": 1, "he": {"_count": 1}}, "exacly": {"_count": 1, "what": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}}, "chased": {"_count": 18, "by": {"_count": 2, "Dudleys": {"_count": 1}, "the": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "Harry": {"_count": 1, "out": {"_count": 1}}, "its": {"_count": 1, "tail": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "Scabbers": {"_count": 1, "into": {"_count": 1}}, "away": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 2, "by": {"_count": 1}, "its": {"_count": 1}}, "us": {"_count": 2, "into": {"_count": 1}, "it": {"_count": 1}}, "her": {"_count": 1, "gleefully": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "MadEye": {"_count": 1, "first": {"_count": 1}}, "me": {"_count": 1, "across": {"_count": 1}}, "them": {"_count": 1, "as": {"_count": 1}}}, "dreading": {"_count": 16, "going": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 4, "dawn": {"_count": 1}, "answer": {"_count": 1}, "Leaving": {"_count": 1}, "evening": {"_count": 1}}, "taking": {"_count": 1, "Polyjuice": {"_count": 1}}, "it": {"_count": 3, "will": {"_count": 2}, "because": {"_count": 1}}, "he": {"_count": 1, "leaned": {"_count": 1}}, "Binky": {"_count": 1, "being": {"_count": 1}}, "him": {"_count": 1, "dying": {"_count": 1}}, "anything": {"_count": 1, "at": {"_count": 1}}, "something": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "what": {"_count": 1, "Snape": {"_count": 1}}}, "ridiculous": {"_count": 27, "haircut": {"_count": 1, "hed": {"_count": 1}}, "ideas": {"_count": 1, "about": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}, "rumors": {"_count": 2, "someone": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 2}}, "Muggle": {"_count": 1, "Protection": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "impression": {"_count": 1, "of": {"_count": 1}}, "Weasley": {"_count": 1, "how": {"_count": 1}}, "Grim": {"_count": 1, "again": {"_count": 1}}, "youre": {"_count": 1, "still": {"_count": 1}}, "thing": {"_count": 1, "out": {"_count": 1}}, "She": {"_count": 1, "thrust": {"_count": 1}}, "tall": {"_count": 1, "stories": {"_count": 1}}, "she": {"_count": 1, "snapped": {"_count": 1}}, "hed": {"_count": 1, "only": {"_count": 1}}, "even": {"_count": 1, "comic": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Lupin": {"_count": 1}}, "position": {"_count": 1, "": {"_count": 1}}, "line": {"_count": 1, "on": {"_count": 1}}}, "grow": {"_count": 24, "back": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "exactly": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "Slytherin": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "fingers": {"_count": 1}}, "on": {"_count": 1, "me": {"_count": 1}}, "dimmer": {"_count": 1, "as": {"_count": 1}}, "up": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "horns": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 2, "ringlets": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "larger": {"_count": 2, "and": {"_count": 2}}, "hot": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "warm": {"_count": 1, "and": {"_count": 1}}, "inter": {"_count": 1, "nuthin": {"_count": 1}}, "alarmingly": {"_count": 1, "fast": {"_count": 1}}, "less": {"_count": 1, "human": {"_count": 1}}, "weary": {"_count": 1, "of": {"_count": 1}}}, "revenge": {"_count": 18, "without": {"_count": 1, "even": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 4}, "!": {"_count": 1}, "?": {"_count": 3}}, "on": {"_count": 2, "Black": {"_count": 1}, "Dumbledore": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "ourselves": {"_count": 1, "on": {"_count": 1}}, "but": {"_count": 1, "for": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "he": {"_count": 1, "too": {"_count": 1}}, "and": {"_count": 1, "paid": {"_count": 1}}}, "realizing": {"_count": 30, "he": {"_count": 3, "was": {"_count": 2}, "wasnt": {"_count": 1}}, "it": {"_count": 7, "had": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 2}, "": {"_count": 1}, "as": {"_count": 1}}, "this": {"_count": 1, "for": {"_count": 1}}, "what": {"_count": 7, "Im": {"_count": 1}, "it": {"_count": 2}, "he": {"_count": 2}, "was": {"_count": 1}, "Harry": {"_count": 1}}, "its": {"_count": 2, "us": {"_count": 1}, "full": {"_count": 1}}, "that": {"_count": 6, "Harry": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "something": {"_count": 1}, "nobody": {"_count": 1}}, "just": {"_count": 1, "how": {"_count": 1}}, "too": {"_count": 1, "late": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}}, "Hadnt": {"_count": 9, "he": {"_count": 3, "set": {"_count": 1}, "proved": {"_count": 1}, "once": {"_count": 1}}, "you": {"_count": 1, "better": {"_count": 1}}, "it": {"_count": 2, "been": {"_count": 2}}, "people": {"_count": 1, "like": {"_count": 1}}, "James": {"_count": 1, "started": {"_count": 1}}, "Snape": {"_count": 1, "mentioned": {"_count": 1}}}, "positively": {"_count": 39, "beaming": {"_count": 1, "at": {"_count": 1}}, "shouted": {"_count": 1, "It": {"_count": 1}}, "spitting": {"_count": 1, "with": {"_count": 1}}, "cute": {"_count": 1, "": {"_count": 1}}, "fled": {"_count": 1, "when": {"_count": 1}}, "terrified": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "writhing": {"_count": 1, "with": {"_count": 1}}, "delighted": {"_count": 1, "about": {"_count": 1}}, "shivering": {"_count": 1, "with": {"_count": 1}}, "howling": {"_count": 1, "": {"_count": 1}}, "screaming": {"_count": 1, "with": {"_count": 1}}, "faint": {"_count": 1, "with": {"_count": 1}}, "hawklike": {"_count": 1, "and": {"_count": 1}}, "alarmed": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "now": {"_count": 1}}, "furious": {"_count": 1, "": {"_count": 1}}, "quivering": {"_count": 2, "with": {"_count": 2}}, "swelling": {"_count": 1, "with": {"_count": 1}}, "dread": {"_count": 1, "his": {"_count": 1}}, "gleeful": {"_count": 1, "": {"_count": 1}}, "sagging": {"_count": 1, "with": {"_count": 1}}, "petrified": {"_count": 1, "at": {"_count": 1}}, "alarming": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "appalled": {"_count": 1, "to": {"_count": 1}}, "stamping": {"_count": 1, "up": {"_count": 1}}, "beamed": {"_count": 1, "": {"_count": 1}}, "agog": {"_count": 1, "at": {"_count": 1}}, "wrestling": {"_count": 1, "with": {"_count": 1}}, "easy": {"_count": 1, "": {"_count": 1}}, "awed": {"_count": 1, "when": {"_count": 1}}, "lighthearted": {"_count": 1, "about": {"_count": 1}}, "pestered": {"_count": 1, "me": {"_count": 1}}, "banging": {"_count": 1, "in": {"_count": 1}}, "dapper": {"_count": 1, "at": {"_count": 1}}, "dangerous": {"_count": 1, "look": {"_count": 1}}}, "beaming": {"_count": 103, "at": {"_count": 22, "him": {"_count": 9}, "the": {"_count": 2}, "Harry": {"_count": 5}, "Colin": {"_count": 1}, "anyone": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 2}, "Hermione": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "around": {"_count": 10, "at": {"_count": 7}, "him": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "to": {"_count": 1, "look": {"_count": 1}}, "the": {"_count": 1, "untidy": {"_count": 1}}, "down": {"_count": 3, "at": {"_count": 3}}, "widely": {"_count": 1, "took": {"_count": 1}}, "and": {"_count": 7, "winking": {"_count": 1}, "turning": {"_count": 1}, "bowing": {"_count": 1}, "taking": {"_count": 1}, "thumping": {"_count": 1}, "wiping": {"_count": 1}, "mopping": {"_count": 1}}, "winking": {"_count": 1, "pictures": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "up": {"_count": 4, "at": {"_count": 4}}, "bowing": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 2}, "Bill": {"_count": 1}}, "in": {"_count": 2, "welcome": {"_count": 1}, "a": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "fondly": {"_count": 2, "at": {"_count": 2}}, "just": {"_count": 1, "like": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 1, "on": {"_count": 1}}, "portraits": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "toothily": {"_count": 1, "and": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "broadly": {"_count": 1, "to": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "walking": {"_count": 1, "through": {"_count": 1}}, "Fred": {"_count": 1, "stood": {"_count": 1}}, "mouth": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 1, "if": {"_count": 1}}, "but": {"_count": 1, "Harrys": {"_count": 1}}, "returned": {"_count": 1, "into": {"_count": 1}}, "drinking": {"_count": 1, "them": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}}, "Havent": {"_count": 30, "I": {"_count": 6, "told": {"_count": 1}, "already": {"_count": 1}, "taught": {"_count": 1}, "just": {"_count": 3}}, "you": {"_count": 13, "heard": {"_count": 1}, "even": {"_count": 1}, "guessed": {"_count": 1}, "done": {"_count": 1}, "been": {"_count": 2}, "told": {"_count": 1}, "ever": {"_count": 1}, "girls": {"_count": 1}, "noticed": {"_count": 3}, "found": {"_count": 1}}, "even": {"_count": 1, "started": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "got": {"_count": 2, "a": {"_count": 2}}, "we": {"_count": 3, "got": {"_count": 2}, "met": {"_count": 1}}, "seen": {"_count": 1, "this": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "go": {"_count": 1, "any": {"_count": 1}}, "been": {"_count": 1, "spying": {"_count": 1}}}, "grateful": {"_count": 27, "for": {"_count": 6, "it": {"_count": 1}, "his": {"_count": 1}, "anything": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}}, "if": {"_count": 2, "yeh": {"_count": 1}, "youd": {"_count": 1}}, "it": {"_count": 1, "isnt": {"_count": 1}}, "swig": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 2, "certainly": {"_count": 1}, "still": {"_count": 1}}, "pat": {"_count": 2, "as": {"_count": 1}, "then": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Ive": {"_count": 1, "done": {"_count": 1}}, "because": {"_count": 1, "their": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "looked": {"_count": 1}}, "Kreacher": {"_count": 1, "averted": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}}, "needs": {"_count": 52, "all": {"_count": 1, "sorts": {"_count": 1}}, "reminding": {"_count": 1, "of": {"_count": 1}}, "exercise": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 18, "break": {"_count": 1}, "stew": {"_count": 1}, "hurry": {"_count": 1}, "see": {"_count": 1}, "understand": {"_count": 1}, "know": {"_count": 6}, "be": {"_count": 2}, "threaten": {"_count": 1}, "pass": {"_count": 1}, "do": {"_count": 2}, "fight": {"_count": 1}}, "and": {"_count": 1, "now": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "awarding": {"_count": 1, "and": {"_count": 1}}, "robes": {"_count": 1, "and": {"_count": 1}}, "rest": {"_count": 2, "hes": {"_count": 1}, "and": {"_count": 1}}, "ridding": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 3, "is": {"_count": 3}}, "greater": {"_count": 1, "than": {"_count": 1}}, "a": {"_count": 1, "powerful": {"_count": 1}}, "looking": {"_count": 1, "after": {"_count": 1}}, "it": {"_count": 2, "she": {"_count": 1}, "sir": {"_count": 1}}, "that": {"_count": 1, "sort": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "quiet": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "hospital": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "her": {"_count": 1, "lodgings": {"_count": 1}}, "your": {"_count": 1, "help": {"_count": 1}}, "Slughorn": {"_count": 1, "continued": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 1, "growled": {"_count": 1}}, "persuading": {"_count": 1, "you": {"_count": 1}}, "sleep": {"_count": 1, "": {"_count": 1}}}, "wands": {"_count": 193, "and": {"_count": 12, "If": {"_count": 1}, "crept": {"_count": 1}, "looking": {"_count": 1}, "threw": {"_count": 1}, "trick": {"_count": 1}, "the": {"_count": 1}, "walked": {"_count": 1}, "said": {"_count": 1}, "hit": {"_count": 1}, "a": {"_count": 1}, "made": {"_count": 1}, "held": {"_count": 1}}, "said": {"_count": 4, "the": {"_count": 1}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "Ollivanders": {"_count": 1, "and": {"_count": 1}}, "are": {"_count": 3, "the": {"_count": 1}, "fully": {"_count": 1}, "supposed": {"_count": 1}}, "was": {"_count": 1, "mounting": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}, "to": {"_count": 7, "the": {"_count": 1}, "see": {"_count": 1}, "ensure": {"_count": 1}, "try": {"_count": 1}, "shoot": {"_count": 1}, "do": {"_count": 1}, "him": {"_count": 1}}, "out": {"_count": 9, "an": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 1}, "now": {"_count": 1}, "flanking": {"_count": 1}, "Harry": {"_count": 1}}, "lopsided": {"_count": 1, "brass": {"_count": 1}}, "like": {"_count": 2, "swords": {"_count": 1}, "theyve": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 2}, "time": {"_count": 1}, "Blacks": {"_count": 1}, "one": {"_count": 1}, "unison": {"_count": 1}, "his": {"_count": 1}}, "above": {"_count": 1, "their": {"_count": 1}}, "lay": {"_count": 1, "forgotten": {"_count": 1}}, "at": {"_count": 5, "him": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "once": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 23}, "?": {"_count": 4}}, "first": {"_count": 1, "": {"_count": 1}}, "Idve": {"_count": 1, "ripped": {"_count": 1}}, "went": {"_count": 1, "out": {"_count": 1}}, "shot": {"_count": 1, "out": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 1}, "one": {"_count": 1}, "": {"_count": 1}, "hundreds": {"_count": 1}}, "raised": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "others": {"_count": 2, "were": {"_count": 1}, "simply": {"_count": 1}}, "pointing": {"_count": 5, "straight": {"_count": 1}, "into": {"_count": 1}, "like": {"_count": 1}, "at": {"_count": 1}, "right": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "every": {"_count": 1}}, "high": {"_count": 1, "enough": {"_count": 1}}, "Harry": {"_count": 4, "could": {"_count": 1}, "felt": {"_count": 1}, "threw": {"_count": 1}, "thought": {"_count": 1}}, "crossing": {"_count": 1, "one": {"_count": 1}}, "met": {"_count": 1, "but": {"_count": 1}}, "I": {"_count": 2, "isnt": {"_count": 1}, "have": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "each": {"_count": 1, "emitting": {"_count": 1}}, "hit": {"_count": 1, "each": {"_count": 1}}, "of": {"_count": 3, "theirs": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}}, "beam": {"_count": 1, "at": {"_count": 1}}, "wake": {"_count": 1, "": {"_count": 1}}, "neither": {"_count": 1, "red": {"_count": 1}}, "still": {"_count": 1, "connected": {"_count": 1}}, "The": {"_count": 1, "golden": {"_count": 1}}, "remained": {"_count": 1, "connected": {"_count": 1}}, "with": {"_count": 1, "mild": {"_count": 1}}, "he": {"_count": 3, "found": {"_count": 1}, "had": {"_count": 2}}, "connected": {"_count": 1, "": {"_count": 1}}, "feather": {"_count": 1, "came": {"_count": 1}}, "force": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 1, "force": {"_count": 1}}, "the": {"_count": 5, "point": {"_count": 1}, "cheapest": {"_count": 1}, "Deathstick": {"_count": 2}, "floor": {"_count": 1}}, "until": {"_count": 1, "charges": {"_count": 1}}, "away": {"_count": 2, "had": {"_count": 1}, "please": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "clattered": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "James": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 1, "threats": {"_count": 1}}, "dazzling": {"_count": 1, "Harrys": {"_count": 1}}, "flew": {"_count": 1, "out": {"_count": 1}}, "were": {"_count": 4, "blurs": {"_count": 1}, "the": {"_count": 1}, "drawn": {"_count": 1}, "fully": {"_count": 1}}, "flashing": {"_count": 1, "like": {"_count": 1}}, "whatll": {"_count": 1, "people": {"_count": 1}}, "drawn": {"_count": 3, "in": {"_count": 1}, "heading": {"_count": 1}, "at": {"_count": 1}}, "concentrating": {"_count": 1, "with": {"_count": 1}}, "simultaneously": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 3, "had": {"_count": 1}, "Ollivander": {"_count": 1}, "have": {"_count": 1}}, "directed": {"_count": 1, "at": {"_count": 1}}, "beneath": {"_count": 1, "their": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "here": {"_count": 1, "son": {"_count": 1}}, "had": {"_count": 1, "explained": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "waiting": {"_count": 1, "": {"_count": 1}}, "Xenophilius": {"_count": 1, "froze": {"_count": 1}}, "fault": {"_count": 1, "that": {"_count": 1}}, "she": {"_count": 1, "whispered": {"_count": 1}}, "Cissy": {"_count": 1, "I": {"_count": 1}}, "from": {"_count": 1, "Dracos": {"_count": 1}}, "these": {"_count": 1, "were": {"_count": 1}}, "does": {"_count": 1, "it": {"_count": 1}}, "course": {"_count": 1, "through": {"_count": 1}}, "done": {"_count": 1, "": {"_count": 1}}, "allegiance": {"_count": 1, "by": {"_count": 1}}, "require": {"_count": 1, "a": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "aloft": {"_count": 1, "": {"_count": 1}}, "emerging": {"_count": 1, "everywhere": {"_count": 1}}, "outstretched": {"_count": 1, "continuing": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "flared": {"_count": 1, "and": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 1, "true": {"_count": 1}}, "power": {"_count": 1, "would": {"_count": 1}}, "more": {"_count": 1, "trouble": {"_count": 1}}}, "names": {"_count": 104, "been": {"_count": 3, "down": {"_count": 1}, "jinxed": {"_count": 1}, "Tabooed": {"_count": 1}}, "Scabbers": {"_count": 1, "and": {"_count": 1}}, "Malfoy": {"_count": 1, "Draco": {"_count": 1}}, "funny": {"_count": 1, "do": {"_count": 1}}, "of": {"_count": 19, "different": {"_count": 1}, "its": {"_count": 1}, "those": {"_count": 2}, "the": {"_count": 8}, "every": {"_count": 1}, "these": {"_count": 2}, "course": {"_count": 1}, "all": {"_count": 1}, "people": {"_count": 1}, "ancient": {"_count": 1}}, "and": {"_count": 4, "dates": {"_count": 1}, "looked": {"_count": 1}, "the": {"_count": 1}, "kept": {"_count": 1}}, "that": {"_count": 2, "greatly": {"_count": 1}, "had": {"_count": 1}}, "against": {"_count": 1, "a": {"_count": 1}}, "like": {"_count": 1, "The": {"_count": 1}}, "cleared": {"_count": 1, "": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 10}, "!": {"_count": 1}, "?": {"_count": 3}}, "embroidered": {"_count": 1, "in": {"_count": 1}}, "Troy": {"_count": 1, "Mullet": {"_count": 1}}, "are": {"_count": 3, "still": {"_count": 1}, "called": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 4, "consideration": {"_count": 1}, "us": {"_count": 2}, "the": {"_count": 1}}, "his": {"_count": 1, "normal": {"_count": 1}}, "Longbottom": {"_count": 1, "": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 5, "that": {"_count": 1}, "old": {"_count": 1}, "print": {"_count": 1}, "there": {"_count": 1}, "Everlasting": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "come": {"_count": 2, "out": {"_count": 2}}, "until": {"_count": 1, "each": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "down": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 2, "worthless": {"_count": 1}, "giving": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "mentioned": {"_count": 1, "Dad": {"_count": 1}}, "mud": {"_count": 1, "with": {"_count": 1}}, "Bellatrix": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 3}, "their": {"_count": 1}, "himself": {"_count": 1}}, "led": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 3}, "it": {"_count": 1}}, "showed": {"_count": 1, "where": {"_count": 1}}, "here": {"_count": 1, "Miss": {"_count": 1}}, "before": {"_count": 1, "Fudges": {"_count": 1}}, "Remus": {"_count": 1, "Lupin": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "him": {"_count": 1, "as": {"_count": 1}}, "Horace": {"_count": 1, "Slughorn": {"_count": 1}}, "usually": {"_count": 1, "coupled": {"_count": 1}}, "Barny": {"_count": 1, "said": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "died": {"_count": 1, "out": {"_count": 1}}, "but": {"_count": 1, "you": {"_count": 1}}, "Taboo": {"_count": 1, "": {"_count": 1}}, "anywhere": {"_count": 1, "on": {"_count": 1}}}, "born": {"_count": 41, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 1}, "midwinter": {"_count": 1}, "July": {"_count": 2}, "a": {"_count": 2}}, "from": {"_count": 1, "a": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "again": {"_count": 1, "evrythin": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "Granger": {"_count": 1}}, "Potter": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 2, "what": {"_count": 1}, "I": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "made": {"_count": 1}}, "may": {"_count": 1, "come": {"_count": 1}}, "here": {"_count": 2, "in": {"_count": 2}}, "as": {"_count": 3, "the": {"_count": 2}, "Ignotus": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 4}}, "to": {"_count": 1, "parents": {"_count": 1}}, "and": {"_count": 2, "raised": {"_count": 1}, "where": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "finest": {"_count": 7, "school": {"_count": 1, "of": {"_count": 1}}, "hour": {"_count": 1, "said": {"_count": 1}}, "moment": {"_count": 1, "of": {"_count": 1}}, "oakmatured": {"_count": 1, "mead": {"_count": 1}}, "treasure": {"_count": 1, "": {"_count": 1}}, "Wizarding": {"_count": 1, "traditions": {"_count": 1}}, "thread": {"_count": 1, "of": {"_count": 1}}}, "witchcraft": {"_count": 3, "and": {"_count": 1, "wizardry": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "here": {"_count": 1, "too": {"_count": 1}}}, "wizardry": {"_count": 3, "in": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "them": {"_count": 1}}, "Hogwarts": {"_count": 1, "Beauxbatons": {"_count": 1}}}, "Seven": {"_count": 15, "years": {"_count": 1, "there": {"_count": 1}}, "inches": {"_count": 1, "": {"_count": 1}}, "Id": {"_count": 1, "say": {"_count": 1}}, "bottles": {"_count": 1, "three": {"_count": 1}}, "highly": {"_count": 1, "polished": {"_count": 1}}, "hundred": {"_count": 1, "galleons": {"_count": 1}}, "past": {"_count": 1, "five": {"_count": 1}}, "green": {"_count": 1, "blurs": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "stirs": {"_count": 1, "counterclockwise": {"_count": 1}}, "of": {"_count": 1, "spades": {"_count": 1}}, "Dwarfs": {"_count": 1, "and": {"_count": 1}}}, "youngsters": {"_count": 3, "of": {"_count": 1, "his": {"_count": 1}}, "who": {"_count": 1, "showed": {"_count": 1}}, "to": {"_count": 1, "worry": {"_count": 1}}}, "sort": {"_count": 269, "fer": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 230, "magic": {"_count": 1}, "servant": {"_count": 1}, "savage": {"_count": 1}, "way": {"_count": 19}, "voice": {"_count": 12}, "test": {"_count": 1}, "thing": {"_count": 21}, "snuffling": {"_count": 1}, "like": {"_count": 1}, "weekly": {"_count": 1}, "smile": {"_count": 1}, "jig": {"_count": 1}, "secret": {"_count": 1}, "thump": {"_count": 1}, "plant": {"_count": 2}, "wanted": {"_count": 1}, "explosion": {"_count": 2}, "Muggle": {"_count": 1}, "welcome": {"_count": 1}, "expression": {"_count": 1}, "deputy": {"_count": 1}, "bell": {"_count": 1}, "monster": {"_count": 2}, "day": {"_count": 4}, "wiggling": {"_count": 1}, "set": {"_count": 1}, "runin": {"_count": 1}, "blood": {"_count": 1}, "yellow": {"_count": 1}, "stiff": {"_count": 1}, "creature": {"_count": 1}, "no": {"_count": 1}, "general": {"_count": 1}, "wardrobe": {"_count": 1}, "seized": {"_count": 1}, "place": {"_count": 1}, "chuckle": {"_count": 1}, "skipping": {"_count": 1}, "whistle": {"_count": 1}, "rigid": {"_count": 1}, "glided": {"_count": 1}, "perfume": {"_count": 1}, "cross": {"_count": 1}, "see": {"_count": 1}, "grimace": {"_count": 1}, "clothes": {"_count": 1}, "desperation": {"_count": 1}, "slowed": {"_count": 1}, "woman": {"_count": 2}, "low": {"_count": 1}, "state": {"_count": 1}, "guard": {"_count": 1}, "obstacle": {"_count": 1}, "seizure": {"_count": 1}, "noise": {"_count": 1}, "hunger": {"_count": 1}, "animal": {"_count": 2}, "became": {"_count": 1}, "dignified": {"_count": 1}, "fit": {"_count": 2}, "action": {"_count": 1}, "computer": {"_count": 1}, "a": {"_count": 2}, "stuff": {"_count": 2}, "behavior": {"_count": 3}, "international": {"_count": 1}, "objects": {"_count": 1}, "": {"_count": 4}, "rally": {"_count": 1}, "style": {"_count": 1}, "riot": {"_count": 1}, "wish": {"_count": 1}, "riffraff": {"_count": 1}, "spectacular": {"_count": 1}, "shellfish": {"_count": 1}, "pale": {"_count": 1}, "tension": {"_count": 1}, "dream": {"_count": 1}, "grin": {"_count": 1}, "hero": {"_count": 1}, "weird": {"_count": 1}, "blank": {"_count": 1}, "accident": {"_count": 2}, "hoarse": {"_count": 1}, "shimmering": {"_count": 1}, "worked": {"_count": 1}, "charm": {"_count": 2}, "spell": {"_count": 1}, "extraconcentrated": {"_count": 1}, "giggle": {"_count": 1}, "frilly": {"_count": 1}, "look": {"_count": 3}, "blind": {"_count": 1}, "came": {"_count": 3}, "grotto": {"_count": 1}, "scene": {"_count": 1}, "prejudice": {"_count": 2}, "rubbishy": {"_count": 1}, "finetune": {"_count": 1}, "belly": {"_count": 1}, "statue": {"_count": 1}, "screechy": {"_count": 1}, "of": {"_count": 1}, "pulled": {"_count": 1}, "sporting": {"_count": 1}, "open": {"_count": 1}, "true": {"_count": 1}, "thick": {"_count": 1}, "glory": {"_count": 1}, "power": {"_count": 1}, "blunder": {"_count": 1}, "bravery": {"_count": 1}, "painful": {"_count": 1}, "people": {"_count": 1}, "things": {"_count": 1}, "wiggle": {"_count": 1}, "householdy": {"_count": 1}, "trouble": {"_count": 1}, "adopted": {"_count": 1}, "wizard": {"_count": 1}, "baseline": {"_count": 1}, "freak": {"_count": 1}, "person": {"_count": 3}, "patted": {"_count": 1}, "reflected": {"_count": 1}, "nice": {"_count": 1}, "casual": {"_count": 1}, "start": {"_count": 1}, "diversion": {"_count": 1}, "character": {"_count": 1}, "gold": {"_count": 1}, "an": {"_count": 1}, "mental": {"_count": 1}, "moan": {"_count": 1}, "story": {"_count": 1}, "saving": {"_count": 1}, "crash": {"_count": 1}, "time": {"_count": 1}, "happiness": {"_count": 1}, "right": {"_count": 2}, "obvious": {"_count": 1}, "\u2018stuff": {"_count": 1}, "died": {"_count": 1}, "said": {"_count": 1}, "witch": {"_count": 1}, "plan": {"_count": 1}, "dreary": {"_count": 1}, "made": {"_count": 1}, "floated": {"_count": 1}, "magical": {"_count": 2}, "the": {"_count": 2}, "curse": {"_count": 1}, "legend": {"_count": 1}}, "in": {"_count": 1, "do": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "are": {"_count": 1, "for": {"_count": 1}}, "us": {"_count": 1, "into": {"_count": 1}}, "him": {"_count": 1, "out": {"_count": 1}}, "this": {"_count": 3, "out": {"_count": 3}}, "them": {"_count": 1, "out": {"_count": 1}}, "it": {"_count": 4, "out": {"_count": 2}, "all": {"_count": 2}}, "out": {"_count": 9, "the": {"_count": 2}, "who": {"_count": 1}, "that": {"_count": 1}, "you": {"_count": 1}, "well": {"_count": 1}, "his": {"_count": 1}, "my": {"_count": 1}, "Yaxleys": {"_count": 1}}, "sleek": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "happened": {"_count": 1}}, "everything": {"_count": 1, "out": {"_count": 1}}, "you": {"_count": 2, "into": {"_count": 1}, "out": {"_count": 1}}, "her": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "he": {"_count": 1, "mumbled": {"_count": 1}}, "the": {"_count": 1, "remainder": {"_count": 1}}}, "headmaster": {"_count": 99, "Hogwarts": {"_count": 3, "ever": {"_count": 2}, "has": {"_count": 1}}, "quite": {"_count": 1, "different": {"_count": 1}}, "sat": {"_count": 1, "watching": {"_count": 1}}, "Professor": {"_count": 2, "Dumbledore": {"_count": 1}, "Dippet": {"_count": 1}}, "would": {"_count": 2, "never": {"_count": 1}, "have": {"_count": 1}}, "not": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 13}, "!": {"_count": 4}, "?": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 3, "here": {"_count": 1}, "not": {"_count": 1}, "also": {"_count": 1}}, "is": {"_count": 6, "a": {"_count": 1}, "busy": {"_count": 2}, "unable": {"_count": 1}, "away": {"_count": 1}, "taking": {"_count": 1}}, "the": {"_count": 2, "schools": {"_count": 1}, "students": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "tell": {"_count": 1, "you": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "Ah": {"_count": 1, "well": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "leaving": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "of": {"_count": 4, "Hogwarts": {"_count": 3}, "this": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "his": {"_count": 1, "sweeping": {"_count": 1}}, "to": {"_count": 1, "secure": {"_count": 1}}, "will": {"_count": 2, "have": {"_count": 1}, "find": {"_count": 1}}, "how": {"_count": 1, "quickly": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "rising": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 4, "headmistress": {"_count": 1}, "it": {"_count": 1}, "pupil": {"_count": 1}, "begged": {"_count": 1}}, "likes": {"_count": 1, "you": {"_count": 1}}, "being": {"_count": 1, "unable": {"_count": 1}}, "in": {"_count": 2, "whom": {"_count": 1}, "the": {"_count": 1}}, "seems": {"_count": 1, "strangely": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "has": {"_count": 4, "sent": {"_count": 1}, "asked": {"_count": 1}, "lifted": {"_count": 1}, "intimated": {"_count": 1}}, "thinks": {"_count": 2, "it": {"_count": 2}}, "outside": {"_count": 1, "of": {"_count": 1}}, "hes": {"_count": 2, "supposed": {"_count": 1}, "the": {"_count": 1}}, "only": {"_count": 1, "twice": {"_count": 1}}, "say": {"_count": 1, "that": {"_count": 1}}, "confided": {"_count": 1, "but": {"_count": 1}}, "looked": {"_count": 1, "stunned": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "around": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 3, "headmistress": {"_count": 3}}, "I": {"_count": 1, "bet": {"_count": 1}}, "had": {"_count": 1, "died": {"_count": 1}}, "telling": {"_count": 1, "him": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}}, "Dumbled": {"_count": 1, "I": {"_count": 1, "AM": {"_count": 1}}}, "AM": {"_count": 2, "NOT": {"_count": 1, "PAYING": {"_count": 1}}, "GOING": {"_count": 1, "TO": {"_count": 1}}}, "NOT": {"_count": 32, "PAYING": {"_count": 1, "FOR": {"_count": 1}}, "ALLOWED": {"_count": 2, "THEIR": {"_count": 1}, "OUT": {"_count": 1}}, "OPEN": {"_count": 1, "THE": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "TOLERATE": {"_count": 2, "MENTION": {"_count": 1}, "THIS": {"_count": 1}}, "TO": {"_count": 1, "GO": {"_count": 1}}, "ATTACK": {"_count": 2, "THE": {"_count": 1}, "": {"_count": 1}}, "PETER": {"_count": 1, "HES": {"_count": 1}}, "BE": {"_count": 1, "SPOKEN": {"_count": 1}}, "TRUE": {"_count": 1, "": {"_count": 1}}, "CONFUNDED": {"_count": 1, "": {"_count": 1}}, "AGAIN": {"_count": 1, "": {"_count": 1}}, "ENTER": {"_count": 2, "UNSAFE": {"_count": 1}, "but": {"_count": 1}}, "got": {"_count": 1, "tears": {"_count": 1}}, "mean": {"_count": 1, "Professor": {"_count": 1}}, "HAVE": {"_count": 2, "ANY": {"_count": 1}, "OWLS": {"_count": 1}}, "LEAVE": {"_count": 1, "YOUR": {"_count": 1}}, "DO": {"_count": 1, "ANYMORE": {"_count": 1}}, "SURRENDER": {"_count": 1, "YOUR": {"_count": 1}}, "ALL": {"_count": 1, "": {"_count": 1}}, "LEA": {"_count": 1, "VE": {"_count": 1}}, "RUNNING": {"_count": 1, "A": {"_count": 1}}, "a": {"_count": 1, "lie": {"_count": 1}}, "excellent": {"_count": 1, "": {"_count": 1}}, "DEAD": {"_count": 1, "": {"_count": 1}}, "PUNISH": {"_count": 1, "ME": {"_count": 1}}, "MY": {"_count": 1, "DAUGHTER": {"_count": 1}}}, "PAYING": {"_count": 1, "FOR": {"_count": 1, "SOME": {"_count": 1}}}, "FOR": {"_count": 22, "SOME": {"_count": 1, "CRACKPOT": {"_count": 1}}, "INSTANCE": {"_count": 1, "": {"_count": 1}}, "THAT": {"_count": 1, "TREE": {"_count": 1}}, "YOUR": {"_count": 1, "LIVES": {"_count": 1}}, "ME": {"_count": 1, "IN": {"_count": 1}}, "THE": {"_count": 4, "CUP": {"_count": 1}, "MUGGLES": {"_count": 1}, "GREATER": {"_count": 2}}, "A": {"_count": 2, "YEAR": {"_count": 1}, "MONTH": {"_count": 1}}, "YOU": {"_count": 1, "": {"_count": 1}}, "GODS": {"_count": 1, "SAKE": {"_count": 1}}, "HEAVENS": {"_count": 1, "SAKE": {"_count": 1}}, "EVERY": {"_count": 1, "TINY": {"_count": 1}}, "STOLEN": {"_count": 1, "GOODS": {"_count": 1}}, "MAGICAL": {"_count": 1, "MALADIES": {"_count": 1}}, "REFURBISHMENT": {"_count": 1, "": {"_count": 1}}, "OLD": {"_count": 1, "DEATH": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "QUESTIONING": {"_count": 1, "ABOUT": {"_count": 1}}, "THEM": {"_count": 1, "ILL": {"_count": 1}}}, "SOME": {"_count": 2, "CRACKPOT": {"_count": 1, "OLD": {"_count": 1}}, "O": {"_count": 1, "THAT": {"_count": 1}}}, "CRACKPOT": {"_count": 1, "OLD": {"_count": 1, "FOOL": {"_count": 1}}}, "OLD": {"_count": 2, "FOOL": {"_count": 1, "TO": {"_count": 1}}, "DEATH": {"_count": 1, "EATERS": {"_count": 1}}}, "FOOL": {"_count": 2, "TO": {"_count": 1, "TEACH": {"_count": 1}}, "OF": {"_count": 1, "YOU": {"_count": 1}}}, "TO": {"_count": 37, "TEACH": {"_count": 1, "HIM": {"_count": 1}}, "THINK": {"_count": 1, "WHAT": {"_count": 1}}, "BEHAVE": {"_count": 1, "LIKE": {"_count": 1}}, "TALK": {"_count": 1, "TO": {"_count": 1}}, "HARRY": {"_count": 2, "POTTER": {"_count": 1}, "": {"_count": 1}}, "PEOPLE": {"_count": 1, "LIKE": {"_count": 1}}, "GO": {"_count": 2, "WANDERIN": {"_count": 1}, "AFTER": {"_count": 1}}, "ADVERTISE": {"_count": 1, "FIREBOLTS": {"_count": 1}}, "BE": {"_count": 1, "A": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "GRYFFINDOR": {"_count": 2, "": {"_count": 2}}, "LIKE": {"_count": 1, "THAT": {"_count": 1}}, "HIM": {"_count": 1, "FOR": {"_count": 1}}, "DO": {"_count": 1, "WITH": {"_count": 1}}, "THE": {"_count": 2, "BURROW": {"_count": 1}, "MINISTER": {"_count": 1}}, "KILL": {"_count": 1, "YOU": {"_count": 1}}, "BED": {"_count": 1, "": {"_count": 1}}, "GET": {"_count": 1, "PAST": {"_count": 1}}, "ESCAPE": {"_count": 1, "FROM": {"_count": 1}}, "TELL": {"_count": 1, "ME": {"_count": 1}}, "THAT": {"_count": 1, "MUCH": {"_count": 1}}, "TRY": {"_count": 1, "AND": {"_count": 1}}, "USE": {"_count": 1, "MAGIC": {"_count": 1}}, "WHIP": {"_count": 1, "YOUR": {"_count": 1}}, "WORRY": {"_count": 1, "ABOUT": {"_count": 1}}, "WORK": {"_count": 1, "IN": {"_count": 1}}, "TRAIN": {"_count": 1, "SECURITY": {"_count": 1}}, "ACT": {"_count": 1, "LIKE": {"_count": 1}}, "ME": {"_count": 1, "Accio": {"_count": 1}}, "END": {"_count": 1, "I": {"_count": 1}}, "SAY": {"_count": 1, "": {"_count": 1}}, "MASTER": {"_count": 1, "FROM": {"_count": 1}}, "HIDE": {"_count": 1, "Everything": {"_count": 1}}}, "TEACH": {"_count": 2, "HIM": {"_count": 1, "MAGIC": {"_count": 1}}, "HERE": {"_count": 1, "AND": {"_count": 1}}}, "HIM": {"_count": 23, "MAGIC": {"_count": 1, "TRICKS": {"_count": 1}}, "": {"_count": 13, "!": {"_count": 10}, "?": {"_count": 3}}, "OUT": {"_count": 1, "OF": {"_count": 1}}, "ALL": {"_count": 1, "THE": {"_count": 1}}, "FOR": {"_count": 1, "A": {"_count": 1}}, "ESCAPE": {"_count": 1, "I": {"_count": 1}}, "COME": {"_count": 1, "BACK": {"_count": 1}}, "RETURN": {"_count": 1, "Its": {"_count": 1}}, "ALONE": {"_count": 1, "": {"_count": 1}}, "ILL": {"_count": 1, "KILL": {"_count": 1}}, "TEACH": {"_count": 1, "HERE": {"_count": 1}}}, "MAGIC": {"_count": 18, "TRICKS": {"_count": 1, "": {"_count": 1}}, "OFFICE": {"_count": 3, "Ministry": {"_count": 3}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "EMPLOYEE": {"_count": 1, "SCOOPS": {"_count": 1}}, "Customers": {"_count": 1, "are": {"_count": 1}}, "It": {"_count": 1, "seems": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "NOW": {"_count": 1, "YOU": {"_count": 1}}, "Harry": {"_count": 1, "awoke": {"_count": 1}}, "stamped": {"_count": 1, "along": {"_count": 1}}, "WORKER": {"_count": 1, "St": {"_count": 1}}, "Dolores": {"_count": 1, "Jane": {"_count": 1}}, "The": {"_count": 1, "notices": {"_count": 1}}, "PROTECTING": {"_count": 1, "YOUR": {"_count": 1}}, "IS": {"_count": 2, "MIGHT": {"_count": 2}}}, "TRICKS": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "whirled": {"_count": 26, "it": {"_count": 3, "over": {"_count": 2}, "through": {"_count": 1}}, "around": {"_count": 12, "": {"_count": 2}, "to": {"_count": 2}, "as": {"_count": 1}, "and": {"_count": 3}, "in": {"_count": 1}, "throwing": {"_count": 1}, "slipping": {"_count": 1}, "slipped": {"_count": 1}}, "wildly": {"_count": 1, "round": {"_count": 1}}, "the": {"_count": 2, "darkness": {"_count": 1}, "bag": {"_count": 1}}, "upright": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "and": {"_count": 1, "whistled": {"_count": 1}}, "about": {"_count": 2, "robes": {"_count": 1}, "a": {"_count": 1}}, "toward": {"_count": 1, "Umbridge": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "NEVER": {"_count": 4, "he": {"_count": 1, "thundered": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "CONTACT": {"_count": 1, "ME": {"_count": 1}}, "call": {"_count": 1, "you": {"_count": 1}}}, "INSULT": {"_count": 1, "ALBUS": {"_count": 1, "DUMBLEDORE": {"_count": 1}}}, "IN": {"_count": 24, "FRONT": {"_count": 2, "OF": {"_count": 2}}, "OUR": {"_count": 1, "HOUSE": {"_count": 1}}, "HERE": {"_count": 2, "": {"_count": 2}}, "THE": {"_count": 7, "WARDROBE": {"_count": 1}, "ENTRANCE": {"_count": 1}, "MEETINGS": {"_count": 1}, "QUIDDITCH": {"_count": 1}, "HOGS": {"_count": 1}, "BATHROOM": {"_count": 1}, "PLAN": {"_count": 1}}, "MY": {"_count": 1, "HOUSE": {"_count": 1}}, "PRIVET": {"_count": 1, "DRIVE": {"_count": 1}}, "A": {"_count": 3, "BIN": {"_count": 3}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "WEASLEY": {"_count": 1, "WILL": {"_count": 1}}, "MUGGLE": {"_count": 1, "RELATIONS": {"_count": 1}}, "AN": {"_count": 1, "OFFICE": {"_count": 1}}, "MEMORIAM": {"_count": 1, "Harry": {"_count": 1}}, "PAJAMAS": {"_count": 1, "The": {"_count": 1}}}, "FRONT": {"_count": 3, "OF": {"_count": 2, "ME": {"_count": 1}, "HIM": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}}, "ME": {"_count": 17, "": {"_count": 7, "!": {"_count": 5}, "?": {"_count": 2}}, "today": {"_count": 1, "1230": {"_count": 1}}, "AGAIN": {"_count": 1, "": {"_count": 1}}, "HOLDING": {"_count": 1, "A": {"_count": 1}}, "IN": {"_count": 1, "THE": {"_count": 1}}, "IVE": {"_count": 1, "BEEN": {"_count": 1}}, "WHATS": {"_count": 1, "BEEN": {"_count": 1}}, "AN": {"_count": 1, "OWL": {"_count": 1}}, "Accio": {"_count": 1, "Prophecy": {"_count": 1}}, "Dont": {"_count": 1, "waste": {"_count": 1}}, "COWARD": {"_count": 1, "": {"_count": 1}}}, "swishing": {"_count": 15, "down": {"_count": 2, "through": {"_count": 2}}, "movements": {"_count": 1, "that": {"_count": 1}}, "then": {"_count": 1, "stopped": {"_count": 1}}, "branches": {"_count": 1, "but": {"_count": 1}}, "noise": {"_count": 2, "and": {"_count": 2}}, "behind": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 3, "cloaks": {"_count": 1}, "his": {"_count": 2}}, "pounding": {"_count": 1, "sounds": {"_count": 1}}, "its": {"_count": 1, "long": {"_count": 1}}, "progress": {"_count": 1, "of": {"_count": 1}}, "frockcoated": {"_count": 1, "figure": {"_count": 1}}}, "firecracker": {"_count": 2, "a": {"_count": 1, "sharp": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "squeal": {"_count": 10, "and": {"_count": 2, "the": {"_count": 1}, "ran": {"_count": 1}}, "of": {"_count": 3, "delight": {"_count": 1}, "Won": {"_count": 1}, "pain": {"_count": 1}}, "on": {"_count": 1, "Hagrid": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "terrified": {"_count": 1, "beside": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}}, "dancing": {"_count": 59, "on": {"_count": 6, "the": {"_count": 3}, "tiptoes": {"_count": 1}, "hot": {"_count": 1}, "her": {"_count": 1}}, "spots": {"_count": 1, "of": {"_count": 1}}, "up": {"_count": 2, "and": {"_count": 2}}, "in": {"_count": 3, "his": {"_count": 2}, "its": {"_count": 1}}, "around": {"_count": 2, "taking": {"_count": 1}, "waving": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "alongside": {"_count": 1, "them": {"_count": 1}}, "skeletons": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Malfoy": {"_count": 1, "stopped": {"_count": 1}}, "uncertainly": {"_count": 1, "on": {"_count": 1}}, "shamrocks": {"_count": 1, "Bulgarian": {"_count": 1}}, "shamrock": {"_count": 2, "hat": {"_count": 2}}, "terrible": {"_count": 1, "things": {"_count": 1}}, "and": {"_count": 3, "Bulgaria": {"_count": 1}, "were": {"_count": 1}, "shimmering": {"_count": 1}}, "veela": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "launched": {"_count": 1}}, "gleefully": {"_count": 1, "in": {"_count": 1}}, "flames": {"_count": 2, "a": {"_count": 1}, "sat": {"_count": 1}}, "bluewhite": {"_count": 1, "flames": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "with": {"_count": 5, "the": {"_count": 1}, "Professor": {"_count": 1}, "Krum": {"_count": 1}, "Hermione": {"_count": 1}, "Fred": {"_count": 1}}, "nearby": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 1, "exhuberantly": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "flecks": {"_count": 1, "of": {"_count": 1}}, "light": {"_count": 2, "until": {"_count": 1}, "on": {"_count": 1}}, "fire": {"_count": 1, "and": {"_count": 1}}, "diamondsparkling": {"_count": 1, "light": {"_count": 1}}, "diamondbright": {"_count": 1, "light": {"_count": 1}}, "uncontrollably": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 1, "conga": {"_count": 1}}, "trolls": {"_count": 2, "closed": {"_count": 1}, "and": {"_count": 1}}, "orange": {"_count": 1, "light": {"_count": 1}}, "firelight": {"_count": 1, "but": {"_count": 1}}, "alone": {"_count": 1, "waving": {"_count": 1}}}, "clasped": {"_count": 9, "over": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "front": {"_count": 1}, "her": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "neatly": {"_count": 1, "in": {"_count": 1}}, "hands": {"_count": 3, "her": {"_count": 1}, "like": {"_count": 1}, "tighten": {"_count": 1}}}, "bottom": {"_count": 121, "howling": {"_count": 1, "in": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "Hagrid": {"_count": 1}}, "and": {"_count": 6, "a": {"_count": 1}, "he": {"_count": 1}, "out": {"_count": 1}, "after": {"_count": 1}, "reached": {"_count": 1}, "spun": {"_count": 1}}, "shelf": {"_count": 1, "for": {"_count": 1}}, "of": {"_count": 70, "his": {"_count": 8}, "the": {"_count": 44}, "my": {"_count": 1}, "a": {"_count": 7}, "it": {"_count": 2}, "her": {"_count": 3}, "Fred": {"_count": 1}, "this": {"_count": 2}, "that": {"_count": 1}, "Lake": {"_count": 1}}, "had": {"_count": 2, "dropped": {"_count": 2}}, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "drooped": {"_count": 1, "over": {"_count": 1}}, "stair": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "long": {"_count": 1}}, "lip": {"_count": 2, "toward": {"_count": 1}, "began": {"_count": 1}}, "marks": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "lefthand": {"_count": 1, "corner": {"_count": 1}}, "drifting": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "off": {"_count": 1, "the": {"_count": 1}}, "ten": {"_count": 1, "": {"_count": 1}}, "beside": {"_count": 1, "a": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "step": {"_count": 2, "and": {"_count": 1}, "that": {"_count": 1}}, "withdrew": {"_count": 1, "it": {"_count": 1}}, "bulb": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "old": {"_count": 1, "quills": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "where": {"_count": 1, "she": {"_count": 1}}, "sighed": {"_count": 1, "Hermione": {"_count": 1}}, "Lupin": {"_count": 1, "went": {"_count": 1}}, "indifferent": {"_count": 1, "motionless": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}}, "curly": {"_count": 20, "pigs": {"_count": 2, "tail": {"_count": 2}}, "hair": {"_count": 8, "and": {"_count": 1}, "emerged": {"_count": 1}, "": {"_count": 3}, "walking": {"_count": 1}, "turned": {"_count": 1}, "put": {"_count": 1}}, "silver": {"_count": 2, "writing": {"_count": 1}, "wig": {"_count": 1}}, "green": {"_count": 2, "words": {"_count": 1}, "writing": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "mousebrown": {"_count": 1, "hair": {"_count": 1}}, "reddishblonde": {"_count": 1, "hair": {"_count": 1}}, "signature": {"_count": 1, "": {"_count": 1}}, "fringe": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "hairs": {"_count": 1}}}, "pigs": {"_count": 5, "tail": {"_count": 3, "poking": {"_count": 2}, "and": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "ear": {"_count": 1, "of": {"_count": 1}}}, "poking": {"_count": 31, "through": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "out": {"_count": 8, "": {"_count": 1}, "asking": {"_count": 1}, "of": {"_count": 5}, "from": {"_count": 1}}, "around": {"_count": 4, "No": {"_count": 1}, "": {"_count": 1}, "everywhere": {"_count": 1}, "dark": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "sleeping": {"_count": 1}}, "the": {"_count": 3, "walking": {"_count": 1}, "picture": {"_count": 1}, "pieces": {"_count": 1}}, "shredded": {"_count": 1, "lettuce": {"_count": 1}}, "happily": {"_count": 1, "at": {"_count": 1}}, "me": {"_count": 1, "Dobby": {"_count": 1}}, "her": {"_count": 3, "head": {"_count": 3}}, "fun": {"_count": 1, "at": {"_count": 1}}, "him": {"_count": 3, "hard": {"_count": 1}, "in": {"_count": 1}, "genially": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}}, "hole": {"_count": 138, "in": {"_count": 28, "his": {"_count": 4}, "the": {"_count": 17}, "future": {"_count": 1}, "a": {"_count": 1}, "alarm": {"_count": 1}, "her": {"_count": 2}, "Harrys": {"_count": 1}, "Umbridges": {"_count": 1}}, "appeared": {"_count": 2, "it": {"_count": 1}, "in": {"_count": 1}}, "when": {"_count": 2, "a": {"_count": 1}, "there": {"_count": 1}}, "": {"_count": 31, ".": {"_count": 30}, "?": {"_count": 1}}, "hissing": {"_count": 1, "at": {"_count": 1}}, "was": {"_count": 3, "anyones": {"_count": 1}, "closing": {"_count": 1}, "simple": {"_count": 1}}, "burst": {"_count": 1, "open": {"_count": 1}}, "and": {"_count": 15, "dont": {"_count": 1}, "the": {"_count": 1}, "across": {"_count": 1}, "into": {"_count": 1}, "entered": {"_count": 1}, "they": {"_count": 1}, "waited": {"_count": 1}, "headed": {"_count": 1}, "covered": {"_count": 1}, "off": {"_count": 3}, "hurtled": {"_count": 1}, "toward": {"_count": 1}, "Voldemorts": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 4, "pull": {"_count": 1}, "face": {"_count": 1}, "open": {"_count": 2}}, "after": {"_count": 1, "him": {"_count": 1}}, "wondering": {"_count": 1, "where": {"_count": 1}}, "right": {"_count": 2, "through": {"_count": 2}}, "Riddles": {"_count": 1, "finished": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "glad": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 7, "the": {"_count": 7}}, "again": {"_count": 1, "": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "headfirst": {"_count": 1, "and": {"_count": 1}}, "Stand": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "opened": {"_count": 4, "and": {"_count": 3}, "in": {"_count": 1}}, "which": {"_count": 2, "closed": {"_count": 2}}, "staring": {"_count": 1, "around": {"_count": 1}}, "then": {"_count": 1, "stood": {"_count": 1}}, "sucking": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "through": {"_count": 1}}, "pushed": {"_count": 1, "it": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}, "behind": {"_count": 4, "and": {"_count": 1}, "her": {"_count": 1}, "pulled": {"_count": 1}, "Arianas": {"_count": 1}}, "but": {"_count": 1, "could": {"_count": 1}}, "still": {"_count": 1, "giggling": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "where": {"_count": 2, "Sirius": {"_count": 1}, "Georges": {"_count": 1}}, "his": {"_count": 1, "ears": {"_count": 1}}, "a": {"_count": 1, "complication": {"_count": 1}}, "like": {"_count": 1, "she": {"_count": 1}}, "is": {"_count": 1, "records": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 2}}, "left": {"_count": 1, "by": {"_count": 1}}, "seemed": {"_count": 1, "deep": {"_count": 1}}, "blown": {"_count": 1, "into": {"_count": 1}}}, "trousers": {"_count": 15, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 5, "sleeves": {"_count": 1}, "Aunt": {"_count": 1}, "almost": {"_count": 1}, "an": {"_count": 1}, "Uncle": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "last": {"_count": 1, "week": {"_count": 1}}, "each": {"_count": 1, "the": {"_count": 1}}}, "Pulling": {"_count": 7, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "himself": {"_count": 2, "out": {"_count": 1}, "up": {"_count": 1}}, "their": {"_count": 1, "robes": {"_count": 1}}, "the": {"_count": 1, "cloak": {"_count": 1}}, "out": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}}, "cast": {"_count": 98, "one": {"_count": 1, "last": {"_count": 1}}, "a": {"_count": 21, "sideways": {"_count": 2}, "wary": {"_count": 1}, "curious": {"_count": 2}, "surly": {"_count": 1}, "nervous": {"_count": 1}, "temporary": {"_count": 1}, "dark": {"_count": 1}, "frightened": {"_count": 1}, "last": {"_count": 1}, "oneeyed": {"_count": 1}, "look": {"_count": 1}, "bright": {"_count": 1}, "good": {"_count": 1}, "heat": {"_count": 1}, "spell": {"_count": 1}, "Blasting": {"_count": 1}, "quick": {"_count": 1}, "Shield": {"_count": 1}, "Patronus": {"_count": 1}}, "by": {"_count": 11, "the": {"_count": 6}, "a": {"_count": 1}, "an": {"_count": 1}, "Dobby": {"_count": 1}, "Bellatrix": {"_count": 1}, "his": {"_count": 1}}, "our": {"_count": 1, "first": {"_count": 1}}, "your": {"_count": 1, "charms": {"_count": 1}}, "an": {"_count": 3, "amused": {"_count": 1}, "appraising": {"_count": 1}, "angry": {"_count": 1}}, "around": {"_count": 6, "for": {"_count": 4}, "wildly": {"_count": 1}, "themselves": {"_count": 1}}, "his": {"_count": 3, "mind": {"_count": 3}}, "long": {"_count": 1, "spidery": {"_count": 1}}, "the": {"_count": 10, "merrily": {"_count": 1}, "Dark": {"_count": 1}, "coin": {"_count": 1}, "charm": {"_count": 1}, "Muffliato": {"_count": 2}, "spell": {"_count": 1}, "locket": {"_count": 1}, "Patronus": {"_count": 1}, "curse": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "black": {"_count": 1, "shadows": {"_count": 1}}, "her": {"_count": 3, "an": {"_count": 1}, "a": {"_count": 1}, "own": {"_count": 1}}, "aside": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "wildly": {"_count": 1, "around": {"_count": 1}}, "him": {"_count": 4, "a": {"_count": 2}, "admiring": {"_count": 2}}, "upon": {"_count": 3, "the": {"_count": 1}, "my": {"_count": 1}, "himself": {"_count": 1}}, "Harry": {"_count": 1, "an": {"_count": 1}}, "it": {"_count": 1, "aside": {"_count": 1}}, "sideways": {"_count": 1, "looks": {"_count": 1}}, "deep": {"_count": 1, "dark": {"_count": 1}}, "spells": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "light": {"_count": 1, "as": {"_count": 1}}, "against": {"_count": 1, "them": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "defensive": {"_count": 1, "enchantments": {"_count": 1}}, "wherever": {"_count": 1, "they": {"_count": 1}}, "doubt": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 1, "doe": {"_count": 1}}, "with": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 2, "it": {"_count": 2}}, "down": {"_count": 1, "beside": {"_count": 1}}, "lately": {"_count": 1, "theyll": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "their": {"_count": 2, "charms": {"_count": 1}, "Patronuses": {"_count": 1}}, "them": {"_count": 1, "high": {"_count": 1}}, "curses": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "Shield": {"_count": 1}}}, "Shouldnta": {"_count": 1, "lost": {"_count": 1, "me": {"_count": 1}}}, "temper": {"_count": 54, "he": {"_count": 1, "said": {"_count": 1}}, "back": {"_count": 1, "again": {"_count": 1}}, "which": {"_count": 2, "surely": {"_count": 1}, "seemed": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "!": {"_count": 1}}, "and": {"_count": 3, "kept": {"_count": 1}, "voice": {"_count": 1}, "she": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "yours": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "with": {"_count": 6, "Harry": {"_count": 1}, "Umbridge": {"_count": 4}, "him": {"_count": 1}}, "said": {"_count": 2, "Dot": {"_count": 1}, "Sirius": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "rising": {"_count": 5, "": {"_count": 1}, "and": {"_count": 1}, "so": {"_count": 1}, "with": {"_count": 1}, "now": {"_count": 1}}, "getting": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "rising": {"_count": 1}}, "on": {"_count": 1, "us": {"_count": 1}}, "under": {"_count": 1, "control": {"_count": 1}}, "already": {"_count": 1, "arent": {"_count": 1}}, "in": {"_count": 1, "Professor": {"_count": 1}}, "rise": {"_count": 1, "he": {"_count": 1}}, "always": {"_count": 1, "so": {"_count": 1}}, "rose": {"_count": 1, "to": {"_count": 1}}, "than": {"_count": 1, "anything": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "fantastic": {"_count": 1}}, "you": {"_count": 1, "saw": {"_count": 1}}, "perhaps": {"_count": 1, "a": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}}, "ruefully": {"_count": 7, "but": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "Meant": {"_count": 2, "ter": {"_count": 1, "turn": {"_count": 1}}, "a": {"_count": 1, "fair": {"_count": 1}}}, "eyebrows": {"_count": 100, "": {"_count": 40, ".": {"_count": 40}}, "he": {"_count": 3, "wore": {"_count": 1}, "said": {"_count": 1}, "had": {"_count": 1}}, "his": {"_count": 1, "robes": {"_count": 1}}, "raised": {"_count": 14, "": {"_count": 13}, "and": {"_count": 1}}, "at": {"_count": 8, "Harry": {"_count": 2}, "her": {"_count": 1}, "Bagman": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 2}}, "contracted": {"_count": 1, "slightly": {"_count": 1}}, "rose": {"_count": 2, "so": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 9, "looked": {"_count": 1}, "glancing": {"_count": 1}, "protuberant": {"_count": 1}, "Harry": {"_count": 1}, "beard": {"_count": 2}, "she": {"_count": 1}, "drifted": {"_count": 1}, "his": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "close": {"_count": 1}}, "had": {"_count": 4, "disappeared": {"_count": 1}, "contracted": {"_count": 1}, "joined": {"_count": 1}, "mercifully": {"_count": 1}}, "were": {"_count": 2, "still": {"_count": 1}, "traveling": {"_count": 1}}, "growing": {"_count": 1, "so": {"_count": 1}}, "contracting": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 2, "raised": {"_count": 2}}, "how": {"_count": 1, "did": {"_count": 1}}, "but": {"_count": 1, "said": {"_count": 1}}, "is": {"_count": 1, "bright": {"_count": 1}}, "blushing": {"_count": 1, "slightly": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "which": {"_count": 1, "ignited": {"_count": 1}}, "Hermione": {"_count": 1, "gave": {"_count": 1}}, "coldly": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "Be": {"_count": 39, "grateful": {"_count": 1, "if": {"_count": 1}}, "quiet": {"_count": 11, "Miss": {"_count": 1}, "Ginny": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 4}, "you": {"_count": 1}, "Harry": {"_count": 1}, "Bella": {"_count": 1}, "boy": {"_count": 1}}, "that": {"_count": 1, "as": {"_count": 1}}, "warned": {"_count": 2, "Potter": {"_count": 1}, "If": {"_count": 1}}, "careful": {"_count": 7, "Weasley": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 2}, "": {"_count": 1}, "Mr": {"_count": 1}, "or": {"_count": 1}}, "of": {"_count": 1, "stout": {"_count": 1}}, "cool": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "talking": {"_count": 1}, "man": {"_count": 1}}, "at": {"_count": 1, "stile": {"_count": 1}}, "polite": {"_count": 1, "and": {"_count": 1}}, "good": {"_count": 3, "": {"_count": 1}, "now": {"_count": 1}, "then": {"_count": 1}}, "reasonable": {"_count": 1, "Hagrid": {"_count": 1}}, "over": {"_count": 1, "soon": {"_count": 1}}, "brave": {"_count": 1, "like": {"_count": 1}}, "sure": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "very": {"_count": 1, "careful": {"_count": 1}}, "pretty": {"_count": 1, "interesting": {"_count": 1}}}, "er": {"_count": 131, "not": {"_count": 2, "supposed": {"_count": 1}, "to": {"_count": 1}}, "got": {"_count": 3, "expelled": {"_count": 1}, "a": {"_count": 1}, "our": {"_count": 1}}, "speed": {"_count": 1, "things": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 17}, "?": {"_count": 1}}, "have": {"_count": 2, "to": {"_count": 2}}, "a": {"_count": 1, "good": {"_count": 1}}, "is": {"_count": 1, "there": {"_count": 1}}, "he": {"_count": 3, "maybe": {"_count": 1}, "said": {"_count": 1}, "wouldnt": {"_count": 1}}, "hello": {"_count": 1, "Myrtle": {"_count": 1}}, "Ha": {"_count": 1, "": {"_count": 1}}, "nice": {"_count": 1, "it": {"_count": 1}}, "tidy": {"_count": 1, "you": {"_count": 1}}, "source": {"_count": 1, "of": {"_count": 1}}, "dyou": {"_count": 2, "call": {"_count": 1}, "think": {"_count": 1}}, "highly": {"_count": 1, "individual": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "walked": {"_count": 1, "in": {"_count": 1}}, "away": {"_count": 1, "Ern": {"_count": 1}}, "very": {"_count": 1, "deep": {"_count": 1}}, "I": {"_count": 2, "heard": {"_count": 1}, "fell": {"_count": 1}}, "Professor": {"_count": 1, "then": {"_count": 1}}, "forgot": {"_count": 1, "to": {"_count": 1}}, "eventual": {"_count": 1, "plan": {"_count": 1}}, "werent": {"_count": 1, "dementors": {"_count": 1}}, "didnt": {"_count": 1, "like": {"_count": 1}}, "amusing": {"_count": 1, "to": {"_count": 1}}, "accidentally": {"_count": 1, "let": {"_count": 1}}, "the": {"_count": 1, "traffics": {"_count": 1}}, "burns": {"_count": 1, "": {"_count": 1}}, "charges": {"_count": 1, "": {"_count": 1}}, "forceful": {"_count": 1, "andling": {"_count": 1}}, "objective": {"_count": 1, "judges": {"_count": 1}}, "varieties": {"_count": 1, "you": {"_count": 1}}, "BangEnded": {"_count": 1, "Scoots": {"_count": 1}}, "let": {"_count": 1, "our": {"_count": 1}}, "just": {"_count": 2, "asked": {"_count": 1}, "mull": {"_count": 1}}, "look": {"_count": 1, "nice": {"_count": 1}}, "take": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "wanted": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 2, "er": {"_count": 1}, "actually": {"_count": 1}}, "dementy": {"_count": 1, "whatsits": {"_count": 1}}, "bother": {"_count": 1, "to": {"_count": 1}}, "Eeenglish": {"_count": 1, "and": {"_count": 1}}, "been": {"_count": 1, "reading": {"_count": 1}}, "message": {"_count": 1, "that": {"_count": 1}}, "place": {"_count": 1, "of": {"_count": 1}}, "do": {"_count": 1, "anything": {"_count": 1}}, "thanks": {"_count": 1, "said": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "what": {"_count": 2, "is": {"_count": 1}, "did": {"_count": 1}}, "three": {"_count": 1, "generations": {"_count": 1}}, "hi": {"_count": 1, "": {"_count": 1}}, "backgrounds": {"_count": 1, "": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "obviously": {"_count": 1, "found": {"_count": 1}}, "He": {"_count": 1, "noticed": {"_count": 1}}, "drops": {"_count": 1, "it": {"_count": 1}}, "winged": {"_count": 1, "horses": {"_count": 1}}, "Did": {"_count": 1, "you": {"_count": 1}}, "where": {"_count": 1, "you": {"_count": 1}}, "me": {"_count": 1, "Mr": {"_count": 1}}, "havent": {"_count": 1, "seen": {"_count": 1}}, "But": {"_count": 1, "the": {"_count": 1}}, "best": {"_count": 1, "": {"_count": 1}}, "Remedial": {"_count": 1, "Potions": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "\u2018bring": {"_count": 1, "me": {"_count": 1}}, "well": {"_count": 1, "go": {"_count": 1}}, "feelin": {"_count": 1, "all": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "heard": {"_count": 1, "shes": {"_count": 1}}, "your": {"_count": 1, "I": {"_count": 1}}, "Wizarding": {"_count": 1, "community": {"_count": 1}}, "HeWhoMustNotBe": {"_count": 1, "Named": {"_count": 1}}, "mistaken": {"_count": 1, "about": {"_count": 1}}, "finish": {"_count": 1, "off": {"_count": 1}}, "whats": {"_count": 1, "he": {"_count": 1}}, "no": {"_count": 2, "I": {"_count": 1}, "matter": {"_count": 1}}, "boy": {"_count": 1, "who": {"_count": 1}}, "moved": {"_count": 1, "on": {"_count": 1}}, "My": {"_count": 1, "dad": {"_count": 1}}, "an": {"_count": 1, "appointment": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 1, "good": {"_count": 1}}, "bathroom": {"_count": 2, "": {"_count": 2}}, "someone": {"_count": 1, "took": {"_count": 1}}, "mention": {"_count": 1, "it": {"_count": 1}}, "Ted": {"_count": 1, "Tonks": {"_count": 1}}, "Im": {"_count": 1, "hiding": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "quite": {"_count": 1, "sure": {"_count": 1}}, "ensure": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 1, "you": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "new": {"_count": 1, "official": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}, "tiara": {"_count": 1, "": {"_count": 1}}}, "magic": {"_count": 277, "strictly": {"_count": 1, "speakin": {"_count": 1}}, "": {"_count": 60, "?": {"_count": 9}, ".": {"_count": 40}, "!": {"_count": 11}}, "now": {"_count": 2, "Ive": {"_count": 1}, "breaking": {"_count": 1}}, "solutions": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "had": {"_count": 1}, "has": {"_count": 1}}, "wand": {"_count": 3, "": {"_count": 2}, "was": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 9, "ends": {"_count": 1}, "sending": {"_count": 1}, "nonmagic": {"_count": 1}, "bringing": {"_count": 1}, "now": {"_count": 1}, "no": {"_count": 1}, "Dumbledore": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}}, "in": {"_count": 17, "em": {"_count": 1}, "the": {"_count": 4}, "front": {"_count": 5}, "medieval": {"_count": 1}, "Privet": {"_count": 1}, "any": {"_count": 1}, "life": {"_count": 2}, "a": {"_count": 1}, "your": {"_count": 1}}, "at": {"_count": 6, "all": {"_count": 4}, "home": {"_count": 1}, "its": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "yet": {"_count": 1, "what": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "enough": {"_count": 1, "to": {"_count": 1}}, "should": {"_count": 2, "be": {"_count": 1}, "look": {"_count": 1}}, "beyond": {"_count": 1, "all": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "you": {"_count": 5, "will": {"_count": 2}, "can": {"_count": 1}, "never": {"_count": 1}, "know": {"_count": 1}}, "to": {"_count": 9, "do": {"_count": 1}, "pack": {"_count": 1}, "eavesdrop": {"_count": 1}, "ensure": {"_count": 1}, "bind": {"_count": 1}, "save": {"_count": 1}, "get": {"_count": 1}, "run": {"_count": 1}, "tap": {"_count": 1}}, "words": {"_count": 2, "properly": {"_count": 1}, "": {"_count": 1}}, "no": {"_count": 1, "kid": {"_count": 1}}, "creatures": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "logic": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "word": {"_count": 1, "said": {"_count": 1}}, "outside": {"_count": 9, "of": {"_count": 1}, "school": {"_count": 7}, "Hogwarts": {"_count": 1}}, "but": {"_count": 9, "he": {"_count": 1}, "now": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "not": {"_count": 1}, "simply": {"_count": 1}, "horror": {"_count": 1}, "as": {"_count": 1}, "she": {"_count": 1}}, "yourself": {"_count": 1, "out": {"_count": 1}}, "myself": {"_count": 1, "out": {"_count": 1}}, "me": {"_count": 1, "out": {"_count": 1}}, "of": {"_count": 5, "their": {"_count": 1}, "which": {"_count": 2}, "the": {"_count": 2}}, "which": {"_count": 2, "Harry": {"_count": 1}, "meant": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "would": {"_count": 2, "stretch": {"_count": 1}, "have": {"_count": 1}}, "if": {"_count": 1, "its": {"_count": 1}}, "till": {"_count": 1, "I": {"_count": 1}}, "Weasley": {"_count": 1, "elbow": {"_count": 1}}, "powers": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 3, "feared": {"_count": 1}, "said": {"_count": 1}, "too": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "night": {"_count": 1}}, "couldnt": {"_count": 2, "hurt": {"_count": 1}, "she": {"_count": 1}}, "or": {"_count": 4, "Muggle": {"_count": 1}, "wand": {"_count": 1}, "she": {"_count": 1}, "else": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "wouldnt": {"_count": 1}}, "Harry": {"_count": 1, "well": {"_count": 1}}, "tricks": {"_count": 2, "": {"_count": 2}}, "allowed": {"_count": 1, "strictly": {"_count": 1}}, "with": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "schools": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "behind": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 6, "imbues": {"_count": 1}, "would": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "I": {"_count": 1}, "Dumbledore": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 2, "the": {"_count": 1}, "I": {"_count": 1}}, "Muggles": {"_count": 1, "use": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "I": {"_count": 4, "should": {"_count": 1}, "could": {"_count": 1}, "evoked": {"_count": 1}, "used": {"_count": 1}}, "without": {"_count": 4, "meaning": {"_count": 2}, "shouting": {"_count": 1}, "wands": {"_count": 1}}, "theyll": {"_count": 1, "know": {"_count": 1}}, "theyre": {"_count": 1, "going": {"_count": 1}}, "closely": {"_count": 1, "followed": {"_count": 1}}, "stay": {"_count": 1, "in": {"_count": 1}}, "three": {"_count": 1, "years": {"_count": 1}}, "may": {"_count": 1, "be": {"_count": 1}}, "school": {"_count": 1, "And": {"_count": 1}}, "is": {"_count": 5, "not": {"_count": 1}, "perhaps": {"_count": 1}, "it": {"_count": 1}, "mediocre": {"_count": 1}, "a": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "can": {"_count": 3, "legally": {"_count": 1}, "only": {"_count": 1}, "raise": {"_count": 1}}, "an": {"_count": 1, "we": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "once": {"_count": 1, "we": {"_count": 1}}, "jus": {"_count": 1, "dont": {"_count": 1}}, "against": {"_count": 3, "em": {"_count": 1}, "other": {"_count": 1}, "him": {"_count": 1}}, "finally": {"_count": 1, "the": {"_count": 1}}, "seals": {"_count": 1, "the": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "eye": {"_count": 1, "spinning": {"_count": 1}}, "said": {"_count": 4, "Ginny": {"_count": 1}, "Dumbledore": {"_count": 2}, "Snape": {"_count": 1}}, "too": {"_count": 2, "Prime": {"_count": 1}, "for": {"_count": 1}}, "will": {"_count": 2, "cease": {"_count": 1}, "have": {"_count": 1}}, "probably": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 1, "about": {"_count": 1}}, "what": {"_count": 1, "I": {"_count": 1}}, "makes": {"_count": 1, "you": {"_count": 1}}, "inside": {"_count": 1, "an": {"_count": 1}}, "further": {"_count": 1, "perhaps": {"_count": 1}}, "Dumbledore": {"_count": 2, "corrected": {"_count": 1}, "": {"_count": 1}}, "caused": {"_count": 1, "a": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "on": {"_count": 1, "its": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "directly": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 1, "resultant": {"_count": 1}}, "near": {"_count": 1, "me": {"_count": 1}}, "isnt": {"_count": 1, "like": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "ears": {"_count": 1, "as": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "meanwhile": {"_count": 1, "she": {"_count": 1}}, "wed": {"_count": 1, "never": {"_count": 1}}, "drawn": {"_count": 1, "Hermione": {"_count": 1}}, "still": {"_count": 1, "seemed": {"_count": 1}}, "about": {"_count": 1, "them": {"_count": 1}}, "either": {"_count": 1, "said": {"_count": 1}}, "through": {"_count": 1, "almost": {"_count": 1}}, "spying": {"_count": 1, "through": {"_count": 1}}, "exploding": {"_count": 1, "out": {"_count": 1}}, "hitherto": {"_count": 1, "unknown": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}}, "strictly": {"_count": 8, "speakin": {"_count": 1, "": {"_count": 1}}, "speaking": {"_count": 3, "but": {"_count": 1}, "not": {"_count": 1}, "true": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "related": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "necessary": {"_count": 1, "for": {"_count": 1}}}, "speakin": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "follow": {"_count": 88, "yeh": {"_count": 1, "an": {"_count": 1}}, "me": {"_count": 12, "any": {"_count": 1}, "": {"_count": 5}, "now": {"_count": 1}, "but": {"_count": 1}, "Mr": {"_count": 1}, "dear": {"_count": 1}, "Harry": {"_count": 1}, "Madam": {"_count": 1}}, "him": {"_count": 15, "as": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 6}, "in": {"_count": 1}, "by": {"_count": 1}, "with": {"_count": 1}, "up": {"_count": 1}, "around": {"_count": 1}, "but": {"_count": 2}}, "my": {"_count": 2, "orders": {"_count": 1}, "masters": {"_count": 1}}, "the": {"_count": 15, "trail": {"_count": 1}, "Hogwarts": {"_count": 1}, "spiders": {"_count": 2}, "light": {"_count": 1}, "plan": {"_count": 1}, "diet": {"_count": 1}, "rules": {"_count": 1}, "sound": {"_count": 1}, "instructions": {"_count": 1}, "Dursleys": {"_count": 1}, "HalfBlood": {"_count": 1}, "youngest": {"_count": 1}, "established": {"_count": 1}, "Patronuses": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "Fudge": {"_count": 1, "through": {"_count": 1}}, "them": {"_count": 1, "now": {"_count": 1}}, "Harry": {"_count": 1, "pulled": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "found": {"_count": 1}, "Harry": {"_count": 1}}, "her": {"_count": 3, "": {"_count": 2}, "without": {"_count": 1}}, "his": {"_count": 3, "advice": {"_count": 1}, "trainer": {"_count": 1}, "instincts": {"_count": 1}}, "Mr": {"_count": 1, "Bagman": {"_count": 1}}, "Lupin": {"_count": 1, "but": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "James": {"_count": 1, "any": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "school": {"_count": 1, "rules": {"_count": 1}}, "Malfoy": {"_count": 2, "around": {"_count": 1}, "youre": {"_count": 1}}, "even": {"_count": 1, "such": {"_count": 1}}, "any": {"_count": 1, "command": {"_count": 1}}, "your": {"_count": 1, "Heads": {"_count": 1}}, "Ted": {"_count": 1, "Tonks": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "career": {"_count": 1}}, "midnight": {"_count": 1, "with": {"_count": 1}}, "just": {"_count": 1, "go": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}}, "reasons": {"_count": 30, "I": {"_count": 5, "was": {"_count": 1}, "have": {"_count": 2}, "think": {"_count": 1}, "lost": {"_count": 1}}, "for": {"_count": 4, "being": {"_count": 1}, "using": {"_count": 1}, "not": {"_count": 1}, "ending": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 2}}, "though": {"_count": 2, "nobody": {"_count": 1}, "he": {"_count": 1}}, "behind": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "the": {"_count": 1}}, "replied": {"_count": 1, "Lupin": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "why": {"_count": 2, "Harry": {"_count": 1}, "I": {"_count": 1}}, "best": {"_count": 1, "known": {"_count": 1}}, "to": {"_count": 2, "hate": {"_count": 1}, "delay": {"_count": 1}}, "you": {"_count": 1, "just": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}}, "keen": {"_count": 56, "ter": {"_count": 3, "take": {"_count": 2}, "listen": {"_count": 1}}, "to": {"_count": 37, "have": {"_count": 2}, "go": {"_count": 1}, "make": {"_count": 2}, "avoid": {"_count": 2}, "get": {"_count": 4}, "investigate": {"_count": 1}, "prove": {"_count": 1}, "talk": {"_count": 1}, "hear": {"_count": 3}, "prolong": {"_count": 1}, "leave": {"_count": 2}, "keep": {"_count": 3}, "help": {"_count": 1}, "kind": {"_count": 1}, "read": {"_count": 1}, "practice": {"_count": 1}, "hide": {"_count": 1}, "be": {"_count": 2}, "release": {"_count": 1}, "put": {"_count": 1}, "criticize": {"_count": 1}, "abuse": {"_count": 1}, "assist": {"_count": 1}, "discuss": {"_count": 1}, "vacate": {"_count": 1}}, "arent": {"_count": 1, "yeh": {"_count": 1}}, "on": {"_count": 5, "it": {"_count": 1}, "lettin": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}}, "for": {"_count": 4, "explanations": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "more": {"_count": 1}}, "not": {"_count": 3, "to": {"_count": 3}}, "though": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "yellowish": {"_count": 1, "eyes": {"_count": 1}}}, "arent": {"_count": 139, "you": {"_count": 42, "supposed": {"_count": 1}, "all": {"_count": 1}, "in": {"_count": 3}, "wearing": {"_count": 1}, "eating": {"_count": 1}, "Hagrid": {"_count": 1}, "": {"_count": 21}, "playing": {"_count": 1}, "Harry": {"_count": 1}, "staying": {"_count": 1}, "Malfoy": {"_count": 1}, "worried": {"_count": 1}, "coming": {"_count": 1}, "at": {"_count": 1}, "Potter": {"_count": 1}, "but": {"_count": 1}, "getting": {"_count": 1}, "interested": {"_count": 1}, "afraid": {"_count": 1}, "my": {"_count": 1}}, "as": {"_count": 2, "big": {"_count": 1}, "bad": {"_count": 1}}, "allowed": {"_count": 2, "them": {"_count": 1}, "out": {"_count": 1}}, "yeh": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "supposed": {"_count": 4, "to": {"_count": 4}}, "wild": {"_count": 1, "dragons": {"_count": 1}}, "they": {"_count": 19, "": {"_count": 17}, "Ron": {"_count": 1}, "these": {"_count": 1}}, "too": {"_count": 1, "keen": {"_count": 1}}, "many": {"_count": 3, "living": {"_count": 1}, "wizards": {"_count": 1}, "whod": {"_count": 1}}, "there": {"_count": 3, "arent": {"_count": 1}, "supposed": {"_count": 1}, "Professor": {"_count": 1}}, "hitting": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 1, "": {"_count": 1}}, "passing": {"_count": 1, "out": {"_count": 1}}, "very": {"_count": 1, "happy": {"_count": 1}}, "going": {"_count": 4, "to": {"_count": 4}}, "any": {"_count": 5, "more": {"_count": 1}, "casualties": {"_count": 1}, "left": {"_count": 1}, "giants": {"_count": 1}, "real": {"_count": 1}}, "chosen": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 13, "": {"_count": 9}, "underground": {"_count": 1}, "leaving": {"_count": 1}, "were": {"_count": 1}, "heading": {"_count": 1}}, "merpeople": {"_count": 1, "in": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "bringing": {"_count": 1, "me": {"_count": 1}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "being": {"_count": 1, "intercepted": {"_count": 1}}, "entitled": {"_count": 1, "to": {"_count": 1}}, "always": {"_count": 1, "that": {"_count": 1}}, "enough": {"_count": 2, "hats": {"_count": 1}, "pureblood": {"_count": 1}}, "dementors": {"_count": 1, "anywhere": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "doing": {"_count": 1, "anything": {"_count": 1}}, "in": {"_count": 1, "it": {"_count": 1}}, "Dark": {"_count": 1, "or": {"_count": 1}}, "a": {"_count": 1, "whole": {"_count": 1}}, "speaking": {"_count": 1, "": {"_count": 1}}, "accidents": {"_count": 1, "the": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 1, "thinking": {"_count": 1}}, "sticking": {"_count": 1, "with": {"_count": 1}}, "even": {"_count": 1, "bothering": {"_count": 1}}, "serious": {"_count": 1, "Harry": {"_count": 1}}, "mentioned": {"_count": 1, "Hermione": {"_count": 1}}, "the": {"_count": 2, "same": {"_count": 2}}, "wanted": {"_count": 1, "then": {"_count": 1}}, "exactly": {"_count": 1, "fluffy": {"_count": 1}}, "dispensable": {"_count": 1, "just": {"_count": 1}}, "arent": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "with": {"_count": 1, "Voldemort": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "expelled": {"_count": 77, "ter": {"_count": 1, "tell": {"_count": 1}}, "": {"_count": 24, "?": {"_count": 7}, ".": {"_count": 14}, "!": {"_count": 3}}, "he": {"_count": 2, "just": {"_count": 1}, "said": {"_count": 1}}, "but": {"_count": 1, "allowed": {"_count": 1}}, "and": {"_count": 5, "some": {"_count": 1}, "that": {"_count": 2}, "his": {"_count": 1}, "able": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "then": {"_count": 2, "get": {"_count": 1}, "theyre": {"_count": 1}}, "from": {"_count": 13, "": {"_count": 1}, "Hogwarts": {"_count": 10}, "that": {"_count": 1}, "Durmstrang": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 4, "crashing": {"_count": 1}, "sure": {"_count": 2}, "that": {"_count": 1}}, "Harry": {"_count": 1, "assured": {"_count": 1}}, "Ive": {"_count": 1, "never": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 3, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}, "Riddle": {"_count": 1}}, "fifty": {"_count": 2, "years": {"_count": 2}}, "her": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "I": {"_count": 2, "thought": {"_count": 1}, "didnt": {"_count": 1}}, "like": {"_count": 1, "zat": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}, "obviously": {"_count": 1, "she": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "to": {"_count": 1, "spare": {"_count": 1}}, "me": {"_count": 1, "WHAT": {"_count": 1}}, "before": {"_count": 1, "she": {"_count": 1}}, "have": {"_count": 1, "we": {"_count": 1}}, "shell": {"_count": 1, "be": {"_count": 1}}, "we": {"_count": 1, "would": {"_count": 1}}}, "truth": {"_count": 141, "": {"_count": 45, ".": {"_count": 32}, "!": {"_count": 9}, "?": {"_count": 4}}, "that": {"_count": 2, "I": {"_count": 1}, "never": {"_count": 1}}, "was": {"_count": 6, "that": {"_count": 5}, "anymore": {"_count": 1}}, "about": {"_count": 11, "": {"_count": 1}, "Black": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 1}, "YouKnowWho": {"_count": 1}, "the": {"_count": 3}, "how": {"_count": 1}, "him": {"_count": 1}, "whats": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "would": {"_count": 1, "terrify": {"_count": 1}}, "sank": {"_count": 1, "into": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 4, "that": {"_count": 3}, "generally": {"_count": 1}}, "we": {"_count": 1, "saw": {"_count": 1}}, "or": {"_count": 4, "to": {"_count": 1}, "lies": {"_count": 1}, "what": {"_count": 1}, "I": {"_count": 1}}, "of": {"_count": 6, "what": {"_count": 3}, "her": {"_count": 1}, "it": {"_count": 1}, "Harrys": {"_count": 1}}, "be": {"_count": 3, "told": {"_count": 3}}, "in": {"_count": 2, "what": {"_count": 1}, "this": {"_count": 1}}, "he": {"_count": 6, "said": {"_count": 1}, "hadnt": {"_count": 1}, "didnt": {"_count": 1}, "added": {"_count": 1}, "now": {"_count": 1}, "has": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "thought": {"_count": 1}}, "it": {"_count": 1, "tallied": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "could": {"_count": 1, "sink": {"_count": 1}}, "skiings": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "yet": {"_count": 1}, "shes": {"_count": 1}, "lies": {"_count": 1}}, "at": {"_count": 1, "Malfoy": {"_count": 1}}, "said": {"_count": 2, "Sirius": {"_count": 1}, "Hermione": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "them": {"_count": 1}}, "more": {"_count": 2, "for": {"_count": 1}, "completely": {"_count": 1}}, "whatsoever": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 2, "Harry": {"_count": 1}, "dont": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "breaking": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "occasionally": {"_count": 1, "said": {"_count": 1}}, "from": {"_count": 2, "Professor": {"_count": 1}, "a": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "How": {"_count": 1, "do": {"_count": 1}}, "they": {"_count": 1, "know": {"_count": 1}}, "dawn": {"_count": 1, "in": {"_count": 1}}, "seems": {"_count": 1, "altogether": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "opening": {"_count": 1}}, "ugly": {"_count": 1, "youve": {"_count": 1}}, "tell": {"_count": 1, "the": {"_count": 1}}, "Another": {"_count": 1, "terrible": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 1, "feared": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}}, "third": {"_count": 146, "year": {"_count": 20, "": {"_count": 4}, "but": {"_count": 1}, "a": {"_count": 1}, "for": {"_count": 1}, "left": {"_count": 1}, "class": {"_count": 1}, "staying": {"_count": 1}, "running": {"_count": 1}, "to": {"_count": 1}, "girl": {"_count": 2}, "and": {"_count": 1}, "has": {"_count": 1}, "which": {"_count": 1}, "because": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "brick": {"_count": 2, "on": {"_count": 1}, "from": {"_count": 1}}, "brother": {"_count": 4, "was": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "floor": {"_count": 16, "corridor": {"_count": 2}, "": {"_count": 5}, "and": {"_count": 1}, "Harry": {"_count": 1}, "who": {"_count": 1}, "to": {"_count": 1}, "has": {"_count": 1}, "remained": {"_count": 1}, "slipping": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 1}}, "night": {"_count": 3, "he": {"_count": 1}, "after": {"_count": 1}, "of": {"_count": 1}}, "Hufflepuff": {"_count": 1, "with": {"_count": 1}}, "landing": {"_count": 1, "a": {"_count": 1}}, "under": {"_count": 1, "that": {"_count": 1}}, "years": {"_count": 6, "accidentally": {"_count": 1}, "at": {"_count": 1}, "some": {"_count": 1}, "had": {"_count": 1}, "emerged": {"_count": 1}, "and": {"_count": 1}}, "helpings": {"_count": 1, "of": {"_count": 1}}, "monster": {"_count": 1, "whining": {"_count": 1}}, "which": {"_count": 1, "appeared": {"_count": 1}}, "owl": {"_count": 3, "a": {"_count": 1}, "of": {"_count": 1}, "landing": {"_count": 1}}, "package": {"_count": 1, "it": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 7, "were": {"_count": 1}, "final": {"_count": 4}, "she": {"_count": 1}, "youngest": {"_count": 1}}, "time": {"_count": 19, "this": {"_count": 1}, "and": {"_count": 3}, "the": {"_count": 2}, "she": {"_count": 1}, "": {"_count": 5}, "in": {"_count": 1}, "that": {"_count": 2}, "he": {"_count": 1}, "Charity": {"_count": 1}, "sharp": {"_count": 1}, "much": {"_count": 1}}, "ornament": {"_count": 1, "out": {"_count": 1}}, "young": {"_count": 1, "wizard": {"_count": 1}}, "spider": {"_count": 1, "scuttled": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "sent": {"_count": 1, "heavily": {"_count": 1}}, "task": {"_count": 15, "": {"_count": 8}, "we": {"_count": 1}, "straight": {"_count": 1}, "but": {"_count": 1}, "which": {"_count": 1}, "of": {"_count": 1}, "saying": {"_count": 1}, "said": {"_count": 1}}, "tasks": {"_count": 1, "really": {"_count": 1}}, "disappearance": {"_count": 1, "one": {"_count": 1}}, "place": {"_count": 1, "Miss": {"_count": 1}}, "fourth": {"_count": 1, "fifth": {"_count": 1}}, "to": {"_count": 1, "Hermione": {"_count": 1}}, "voice": {"_count": 1, "this": {"_count": 1}}, "Weasley": {"_count": 1, "brother": {"_count": 1}}, "attempt": {"_count": 3, "he": {"_count": 1}, "earning": {"_count": 1}, "Ron": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "line": {"_count": 2, "of": {"_count": 1}, "Potter": {"_count": 1}}, "detention": {"_count": 1, "passed": {"_count": 1}}, "person": {"_count": 1, "to": {"_count": 1}}, "chapter": {"_count": 1, "entitled": {"_count": 1}}, "walk": {"_count": 1, "past": {"_count": 1}}, "Ive": {"_count": 1, "seen": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "door": {"_count": 1, "which": {"_count": 1}}, "tongue": {"_count": 1, "of": {"_count": 1}}, "twitch": {"_count": 1, "of": {"_count": 1}}, "eldest": {"_count": 1, "Weasley": {"_count": 1}}, "group": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 2, "just": {"_count": 1}, "handwritten": {"_count": 1}}, "behind": {"_count": 1, "Hufflepuff": {"_count": 1}}, "or": {"_count": 1, "fourth": {"_count": 1}}, "evening": {"_count": 1, "of": {"_count": 1}}, "KEEP": {"_count": 1, "OFF": {"_count": 1}}, "Hallow": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "stone": {"_count": 1, "effigy": {"_count": 1}}, "run": {"_count": 1, "past": {"_count": 1}}, "crumbled": {"_count": 1, "into": {"_count": 1}}, "wand": {"_count": 1, "Severus": {"_count": 1}}}, "wand": {"_count": 1554, "in": {"_count": 36, "half": {"_count": 2}, "his": {"_count": 8}, "case": {"_count": 1}, "the": {"_count": 8}, "your": {"_count": 3}, "time": {"_count": 1}, "a": {"_count": 3}, "two": {"_count": 2}, "her": {"_count": 2}, "one": {"_count": 3}, "midair": {"_count": 1}, "that": {"_count": 1}, "exchange": {"_count": 1}}, "1": {"_count": 1, "cauldron": {"_count": 1}}, "": {"_count": 265, ".": {"_count": 233}, "?": {"_count": 24}, "!": {"_count": 8}}, "left": {"_count": 1, "oh": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 10, "charm": {"_count": 1}, "next": {"_count": 1}, "a": {"_count": 2}, "registration": {"_count": 2}, "you": {"_count": 1}, "another": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "that": {"_count": 24, "chooses": {"_count": 1}, "did": {"_count": 1}, "one": {"_count": 1}, "Muggles": {"_count": 1}, "conjured": {"_count": 1}, "was": {"_count": 2}, "looked": {"_count": 1}, "had": {"_count": 3}, "its": {"_count": 1}, "he": {"_count": 1}, "must": {"_count": 1}, "has": {"_count": 1}, "hasnt": {"_count": 1}, "changes": {"_count": 1}, "tortured": {"_count": 1}, "killed": {"_count": 1}, "morning": {"_count": 1}, "would": {"_count": 1}, "shared": {"_count": 1}, "night": {"_count": 1}, "they": {"_count": 1}}, "very": {"_count": 5, "powerful": {"_count": 1}, "tightly": {"_count": 2}, "vaguely": {"_count": 1}, "carefully": {"_count": 1}}, "was": {"_count": 30, "going": {"_count": 1}, "lying": {"_count": 1}, "still": {"_count": 6}, "concealed": {"_count": 1}, "rubbish": {"_count": 1}, "nowhere": {"_count": 1}, "pointing": {"_count": 1}, "out": {"_count": 2}, "something": {"_count": 1}, "telling": {"_count": 1}, "on": {"_count": 1}, "vibrating": {"_count": 1}, "snapped": {"_count": 1}, "halfway": {"_count": 1}, "raised": {"_count": 1}, "blasted": {"_count": 1}, "now": {"_count": 1}, "taken": {"_count": 1}, "clear": {"_count": 1}, "nearly": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "twin": {"_count": 1}, "so": {"_count": 1}}, "arm": {"_count": 6, "": {"_count": 2}, "rose": {"_count": 1}, "is": {"_count": 1}, "which": {"_count": 1}, "and": {"_count": 1}}, "has": {"_count": 2, "a": {"_count": 1}, "been": {"_count": 1}}, "and": {"_count": 180, "feeling": {"_count": 1}, "Mr": {"_count": 1}, "start": {"_count": 1}, "Percys": {"_count": 1}, "when": {"_count": 1}, "saying": {"_count": 1}, "nothing": {"_count": 1}, "set": {"_count": 2}, "said": {"_count": 6}, "whispered": {"_count": 1}, "was": {"_count": 4}, "broomstick": {"_count": 1}, "everything": {"_count": 1}, "returned": {"_count": 1}, "bellowed": {"_count": 1}, "threw": {"_count": 2}, "a": {"_count": 3}, "the": {"_count": 20}, "shouted": {"_count": 1}, "turned": {"_count": 5}, "it": {"_count": 3}, "moved": {"_count": 1}, "our": {"_count": 1}, "pointed": {"_count": 5}, "dincha": {"_count": 1}, "e": {"_count": 1}, "hit": {"_count": 3}, "you": {"_count": 1}, "tapped": {"_count": 4}, "muttered": {"_count": 3}, "had": {"_count": 1}, "indicated": {"_count": 1}, "roared": {"_count": 1}, "just": {"_count": 1}, "smoothing": {"_count": 1}, "muttering": {"_count": 2}, "twisted": {"_count": 1}, "hovered": {"_count": 1}, "starting": {"_count": 1}, "poking": {"_count": 1}, "thereafter": {"_count": 1}, "directed": {"_count": 2}, "showed": {"_count": 1}, "Harry": {"_count": 6}, "gave": {"_count": 2}, "magicked": {"_count": 1}, "stood": {"_count": 1}, "examined": {"_count": 1}, "as": {"_count": 1}, "took": {"_count": 2}, "he": {"_count": 4}, "twiddling": {"_count": 1}, "struggled": {"_count": 1}, "they": {"_count": 1}, "curse": {"_count": 1}, "holding": {"_count": 1}, "limped": {"_count": 1}, "cried": {"_count": 2}, "galloped": {"_count": 1}, "shot": {"_count": 1}, "before": {"_count": 1}, "Voldemorts": {"_count": 2}, "laughed": {"_count": 1}, "restoring": {"_count": 1}, "hurried": {"_count": 1}, "causing": {"_count": 2}, "glared": {"_count": 1}, "performing": {"_count": 1}, "flexing": {"_count": 1}, "murmured": {"_count": 2}, "bone": {"_count": 1}, "swept": {"_count": 1}, "taking": {"_count": 1}, "replacing": {"_count": 1}, "examining": {"_count": 1}, "dashing": {"_count": 1}, "cantered": {"_count": 1}, "sent": {"_count": 1}, "waved": {"_count": 1}, "deposited": {"_count": 1}, "prodded": {"_count": 1}, "wound": {"_count": 1}, "interlinked": {"_count": 1}, "tapping": {"_count": 1}, "handed": {"_count": 1}, "then": {"_count": 1}, "knife": {"_count": 1}, "used": {"_count": 1}, "proceeded": {"_count": 1}, "traced": {"_count": 1}, "made": {"_count": 1}, "staring": {"_count": 1}, "panting": {"_count": 1}, "passed": {"_count": 1}, "compared": {"_count": 1}, "Charity": {"_count": 1}, "came": {"_count": 1}, "point": {"_count": 1}, "felt": {"_count": 2}, "drape": {"_count": 1}, "climbed": {"_count": 1}, "crept": {"_count": 1}, "Krum": {"_count": 1}, "leaped": {"_count": 1}, "swam": {"_count": 1}, "jumped": {"_count": 1}, "saw": {"_count": 1}, "faced": {"_count": 1}, "for": {"_count": 1}, "burned": {"_count": 1}, "started": {"_count": 1}, "charged": {"_count": 1}, "clawed": {"_count": 1}, "I": {"_count": 1}, "hand": {"_count": 1}}, "when": {"_count": 5, "it": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 2}, "they": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 19, "into": {"_count": 8}, "in": {"_count": 1}, "inside": {"_count": 5}, "from": {"_count": 1}, "over": {"_count": 1}, "under": {"_count": 1}, "beneath": {"_count": 1}, "to": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "gave": {"_count": 4, "another": {"_count": 1}, "a": {"_count": 2}, "it": {"_count": 1}}, "chooses": {"_count": 3, "the": {"_count": 3}}, "but": {"_count": 32, "nothing": {"_count": 2}, "Hermione": {"_count": 2}, "the": {"_count": 2}, "Dobby": {"_count": 1}, "too": {"_count": 2}, "theyre": {"_count": 1}, "it": {"_count": 2}, "were": {"_count": 1}, "before": {"_count": 1}, "this": {"_count": 1}, "didnt": {"_count": 1}, "they": {"_count": 2}, "Malfoy": {"_count": 2}, "to": {"_count": 1}, "Tonks": {"_count": 1}, "Harry": {"_count": 3}, "at": {"_count": 1}, "then": {"_count": 1}, "I": {"_count": 1}, "as": {"_count": 1}, "he": {"_count": 1}, "whose": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 9, "little": {"_count": 5}, "moment": {"_count": 1}, "wave": {"_count": 1}, "casual": {"_count": 1}, "very": {"_count": 1}}, "waving": {"_count": 1, "here": {"_count": 1}}, "tapped": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "to": {"_count": 26, "bring": {"_count": 1}, "remove": {"_count": 1}, "his": {"_count": 5}, "set": {"_count": 1}, "look": {"_count": 1}, "shoulder": {"_count": 1}, "hover": {"_count": 1}, "the": {"_count": 2}, "magically": {"_count": 1}, "cast": {"_count": 1}, "him": {"_count": 1}, "attempt": {"_count": 1}, "chest": {"_count": 1}, "make": {"_count": 1}, "ignite": {"_count": 1}, "beat": {"_count": 2}, "Hermione": {"_count": 1}, "face": {"_count": 1}, "defend": {"_count": 1}, "save": {"_count": 1}}, "had": {"_count": 22, "still": {"_count": 1}, "done": {"_count": 3}, "gone": {"_count": 1}, "snapped": {"_count": 1}, "touched": {"_count": 1}, "come": {"_count": 1}, "prowled": {"_count": 1}, "flown": {"_count": 2}, "struck": {"_count": 1}, "any": {"_count": 1}, "sat": {"_count": 1}, "been": {"_count": 2}, "acted": {"_count": 1}, "conquered": {"_count": 1}, "vanished": {"_count": 1}, "saved": {"_count": 1}, "ever": {"_count": 1}, "given": {"_count": 1}}, "not": {"_count": 4, "knowing": {"_count": 1}, "even": {"_count": 1}, "toward": {"_count": 1}, "looking": {"_count": 1}}, "still": {"_count": 13, "raised": {"_count": 3}, "pointing": {"_count": 2}, "gripping": {"_count": 1}, "saw": {"_count": 1}, "clutched": {"_count": 1}, "in": {"_count": 1}, "held": {"_count": 1}, "scared": {"_count": 1}, "outstretched": {"_count": 1}, "isnt": {"_count": 1}}, "out": {"_count": 25, "of": {"_count": 13}, "in": {"_count": 1}, "They": {"_count": 1}, "and": {"_count": 4}, "she": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 2}, "now": {"_count": 1}, "from": {"_count": 1}}, "down": {"_count": 3, "": {"_count": 1}, "onto": {"_count": 1}, "upon": {"_count": 1}}, "up": {"_count": 5, "its": {"_count": 1}, "his": {"_count": 1}, "mouthing": {"_count": 1}, "but": {"_count": 1}, "too": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "movements": {"_count": 2, "": {"_count": 1}, "occasionally": {"_count": 1}}, "waved": {"_count": 1, "it": {"_count": 1}}, "robes": {"_count": 1, "cauldron": {"_count": 1}}, "my": {"_count": 1, "broomstick": {"_count": 1}}, "sticking": {"_count": 2, "out": {"_count": 2}}, "casually": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 9, "Ron": {"_count": 1}, "Hermione": {"_count": 2}, "Dumbledore": {"_count": 1}, "Tergeol": {"_count": 1}, "Harry": {"_count": 2}, "the": {"_count": 1}, "Travers": {"_count": 1}}, "It": {"_count": 3, "had": {"_count": 1}, "singed": {"_count": 1}, "hit": {"_count": 1}}, "the": {"_count": 9, "moment": {"_count": 2}, "pressure": {"_count": 1}, "curse": {"_count": 1}, "cork": {"_count": 1}, "stone": {"_count": 1}, "Elder": {"_count": 1}, "wand": {"_count": 1}, "weapon": {"_count": 1}}, "again": {"_count": 28, "and": {"_count": 7}, "large": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 7}, "pointing": {"_count": 2}, "pointed": {"_count": 1}, "he": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}, "somebody": {"_count": 1}, "at": {"_count": 1}, "so": {"_count": 1}, "twirled": {"_count": 1}, "Hagrid": {"_count": 1}, "upon": {"_count": 1}}, "with": {"_count": 4, "some": {"_count": 1}, "him": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "furiously": {"_count": 1, "on": {"_count": 1}}, "let": {"_count": 2, "off": {"_count": 2}}, "into": {"_count": 7, "his": {"_count": 1}, "the": {"_count": 6}}, "got": {"_count": 1, "snapped": {"_count": 1}}, "yelling": {"_count": 1, "Youll": {"_count": 1}}, "hitting": {"_count": 1, "him": {"_count": 1}}, "Hagrid": {"_count": 2, "was": {"_count": 2}}, "backfired": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "ah": {"_count": 1, "thank": {"_count": 1}}, "high": {"_count": 7, "but": {"_count": 1}, "over": {"_count": 3}, "in": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "straight": {"_count": 3, "at": {"_count": 2}, "between": {"_count": 1}}, "at": {"_count": 113, "Harrys": {"_count": 2}, "you": {"_count": 1}, "the": {"_count": 54}, "him": {"_count": 2}, "Lockhart": {"_count": 1}, "Fawkes": {"_count": 1}, "it": {"_count": 3}, "them": {"_count": 1}, "Pettigrew": {"_count": 1}, "a": {"_count": 5}, "Georges": {"_count": 1}, "Mr": {"_count": 1}, "his": {"_count": 6}, "her": {"_count": 3}, "Krum": {"_count": 1}, "me": {"_count": 1}, "Hedwigs": {"_count": 1}, "Harry": {"_count": 4}, "Rons": {"_count": 1}, "Snape": {"_count": 1}, "different": {"_count": 1}, "Magorian": {"_count": 2}, "Hermione": {"_count": 1}, "each": {"_count": 2}, "Nevilles": {"_count": 1}, "Belby": {"_count": 1}, "nothing": {"_count": 1}, "Demelzas": {"_count": 1}, "Ron": {"_count": 2}, "Peeves": {"_count": 1}, "once": {"_count": 1}, "Dolohovs": {"_count": 1}, "Mrs": {"_count": 1}, "Bellatrix": {"_count": 1}, "Travers": {"_count": 2}, "Bogrod": {"_count": 1}, "Nagini": {"_count": 1}, "Neville": {"_count": 1}}, "attempted": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 3, "a": {"_count": 1}, "destroyed": {"_count": 1}, "only": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "exploded": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "parchment": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 5, "but": {"_count": 1}, "four": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}, "flew": {"_count": 1}}, "Im": {"_count": 3, "going": {"_count": 1}, "about": {"_count": 1}, "Fred": {"_count": 1}}, "nervously": {"_count": 1, "in": {"_count": 1}}, "murmured": {"_count": 1, "Lumos": {"_count": 1}}, "they": {"_count": 1, "followed": {"_count": 1}}, "shone": {"_count": 1, "alone": {"_count": 1}}, "Harry": {"_count": 7, "knew": {"_count": 1}, "felt": {"_count": 1}, "yelled": {"_count": 1}, "fell": {"_count": 1}, "raised": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "slipped": {"_count": 2, "vanishing": {"_count": 1}, "from": {"_count": 1}}, "which": {"_count": 17, "had": {"_count": 2}, "he": {"_count": 4}, "revolved": {"_count": 1}, "was": {"_count": 5}, "could": {"_count": 1}, "just": {"_count": 1}, "lay": {"_count": 2}, "split": {"_count": 1}}, "just": {"_count": 3, "in": {"_count": 1}, "as": {"_count": 2}}, "flew": {"_count": 9, "high": {"_count": 2}, "out": {"_count": 3}, "once": {"_count": 1}, "upward": {"_count": 1}, "twelve": {"_count": 1}, "from": {"_count": 1}}, "held": {"_count": 19, "high": {"_count": 4}, "out": {"_count": 4}, "loosely": {"_count": 2}, "at": {"_count": 1}, "up": {"_count": 1}, "fast": {"_count": 1}, "in": {"_count": 3}, "tight": {"_count": 1}, "ready": {"_count": 2}}, "There": {"_count": 1, "was": {"_count": 1}}, "aside": {"_count": 2, "grabbed": {"_count": 1}, "and": {"_count": 1}}, "between": {"_count": 4, "his": {"_count": 4}}, "idly": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 4, "might": {"_count": 1}, "think": {"_count": 1}, "do": {"_count": 1}, "made": {"_count": 1}}, "from": {"_count": 28, "his": {"_count": 5}, "the": {"_count": 5}, "shock": {"_count": 1}, "an": {"_count": 2}, "Ron": {"_count": 1}, "which": {"_count": 1}, "under": {"_count": 2}, "beneath": {"_count": 1}, "one": {"_count": 1}, "inside": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 2}, "Barnabas": {"_count": 1}, "Draco": {"_count": 1}, "Dumbledores": {"_count": 1}, "its": {"_count": 1}, "Dumbledore": {"_count": 1}}, "once": {"_count": 7, "and": {"_count": 1}, "more": {"_count": 5}, "as": {"_count": 1}}, "Then": {"_count": 1, "in": {"_count": 1}}, "fell": {"_count": 5, "to": {"_count": 3}, "from": {"_count": 1}, "and": {"_count": 1}}, "cauldron": {"_count": 1, "and": {"_count": 1}}, "almost": {"_count": 1, "dazzling": {"_count": 1}}, "hand": {"_count": 8, "step": {"_count": 1}, "and": {"_count": 1}, "quite": {"_count": 1}, "fall": {"_count": 1}, "was": {"_count": 1}, "shaking": {"_count": 1}, "still": {"_count": 1}, "missed": {"_count": 1}}, "tap": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 6, "again": {"_count": 1}, "hair": {"_count": 1}, "boy": {"_count": 1}, "from": {"_count": 2}, "at": {"_count": 1}}, "thus": {"_count": 1, "and": {"_count": 1}}, "ready": {"_count": 9, "": {"_count": 2}, "but": {"_count": 1}, "to": {"_count": 3}, "that": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "muttered": {"_count": 6, "Lumos": {"_count": 2}, "Dissendium": {"_count": 1}, "ReparoV": {"_count": 1}, "Evanescol": {"_count": 1}, "Mischief": {"_count": 1}}, "it": {"_count": 4, "looked": {"_count": 1}, "had": {"_count": 1}, "soared": {"_count": 1}, "sealed": {"_count": 1}}, "tightly": {"_count": 3, "again": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}}, "stuck": {"_count": 1, "his": {"_count": 1}}, "blinking": {"_count": 2, "blood": {"_count": 1}, "furiously": {"_count": 1}}, "tips": {"_count": 4, "away": {"_count": 1}, "ignited": {"_count": 1}, "were": {"_count": 1}, "Dolohov": {"_count": 1}}, "rolling": {"_count": 1, "across": {"_count": 1}}, "NO": {"_count": 1, "YOU": {"_count": 1}}, "pointing": {"_count": 17, "straight": {"_count": 3}, "directly": {"_count": 3}, "at": {"_count": 9}, "uselessly": {"_count": 1}, "it": {"_count": 1}}, "poised": {"_count": 1, "Black": {"_count": 1}}, "convulsively": {"_count": 1, "Do": {"_count": 1}}, "raised": {"_count": 8, "and": {"_count": 2}, "": {"_count": 4}, "waiting": {"_count": 1}, "The": {"_count": 1}}, "covering": {"_count": 1, "Black": {"_count": 1}}, "gazing": {"_count": 1, "fixedly": {"_count": 1}}, "soared": {"_count": 2, "in": {"_count": 1}, "into": {"_count": 1}}, "behind": {"_count": 4, "his": {"_count": 1}, "": {"_count": 1}, "her": {"_count": 2}}, "this": {"_count": 1, "time": {"_count": 1}}, "burst": {"_count": 2, "not": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 11, "Harry": {"_count": 5}, "Uncle": {"_count": 1}, "me": {"_count": 1}, "old": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "outstretched": {"_count": 3, "but": {"_count": 1}, "": {"_count": 1}, "while": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "around": {"_count": 2, "inside": {"_count": 1}, "the": {"_count": 1}}, "tip": {"_count": 13, "as": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 3}, "the": {"_count": 1}, "a": {"_count": 1}, "had": {"_count": 1}, "flared": {"_count": 1}, "ignited": {"_count": 1}}, "Bill": {"_count": 1, "reattached": {"_count": 1}}, "lovingly": {"_count": 1, "": {"_count": 1}}, "yecchh": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 4, "shall": {"_count": 1}, "if": {"_count": 1}, "forced": {"_count": 1}, "shuffled": {"_count": 1}}, "directed": {"_count": 2, "it": {"_count": 1}, "at": {"_count": 1}}, "her": {"_count": 1, "nightdress": {"_count": 1}}, "lighting": {"_count": 1, "it": {"_count": 1}}, "wasnt": {"_count": 2, "there": {"_count": 1}, "I": {"_count": 1}}, "marched": {"_count": 1, "across": {"_count": 1}}, "pointed": {"_count": 6, "it": {"_count": 4}, "threateningly": {"_count": 1}, "at": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}, "eh": {"_count": 1, "elf": {"_count": 1}}, "performed": {"_count": 3, "elf": {"_count": 1}, "said": {"_count": 1}, "something": {"_count": 1}}, "moments": {"_count": 1, "later": {"_count": 1}}, "leaving": {"_count": 1, "a": {"_count": 1}}, "before": {"_count": 5, "hed": {"_count": 1}, "Malfoys": {"_count": 1}, "the": {"_count": 1}, "realizing": {"_count": 1}, "you": {"_count": 1}}, "weighing": {"_count": 1, "ceremony": {"_count": 1}}, "over": {"_count": 4, "three": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}}, "apparently": {"_count": 1, "checking": {"_count": 1}}, "pronounced": {"_count": 1, "himself": {"_count": 1}}, "maker": {"_count": 1, "though": {"_count": 1}}, "than": {"_count": 1, "anyone": {"_count": 1}}, "My": {"_count": 1, "second": {"_count": 1}}, "threateningly": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 3, "paying": {"_count": 1}, "doing": {"_count": 1}, "really": {"_count": 1}}, "occasionally": {"_count": 1, "checking": {"_count": 1}}, "instead": {"_count": 3, "of": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "hidden": {"_count": 1, "up": {"_count": 1}}, "clutched": {"_count": 3, "in": {"_count": 2}, "tightly": {"_count": 1}}, "after": {"_count": 1, "youd": {"_count": 1}}, "what": {"_count": 1, "did": {"_count": 1}}, "lit": {"_count": 2, "": {"_count": 1}, "only": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "point": {"_count": 1, "due": {"_count": 1}}, "holding": {"_count": 1, "it": {"_count": 1}}, "spun": {"_count": 2, "around": {"_count": 1}, "in": {"_count": 1}}, "hesitating": {"_count": 1, "": {"_count": 1}}, "fly": {"_count": 2, "out": {"_count": 2}}, "as": {"_count": 17, "the": {"_count": 2}, "though": {"_count": 2}, "if": {"_count": 2}, "they": {"_count": 2}, "he": {"_count": 6}, "ready": {"_count": 1}, "Dumbledore": {"_count": 1}, "well": {"_count": 1}}, "slightly": {"_count": 3, "and": {"_count": 1}, "but": {"_count": 1}, "apprehensively": {"_count": 1}}, "closed": {"_count": 1, "his": {"_count": 1}}, "even": {"_count": 3, "if": {"_count": 1}, "higher": {"_count": 1}, "to": {"_count": 1}}, "more": {"_count": 3, "tightly": {"_count": 2}, "powerful": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "give": {"_count": 1, "a": {"_count": 1}}, "shudder": {"_count": 1, "angrily": {"_count": 1}}, "vibrated": {"_count": 1, "he": {"_count": 1}}, "would": {"_count": 5, "not": {"_count": 1}, "fly": {"_count": 1}, "work": {"_count": 1}, "prevent": {"_count": 1}, "be": {"_count": 1}}, "upward": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "wildly": {"_count": 3, "over": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "blasts": {"_count": 1, "behind": {"_count": 1}}, "Moody": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 16, "opened": {"_count": 1}, "couldnt": {"_count": 1}, "said": {"_count": 1}, "merely": {"_count": 1}, "saw": {"_count": 2}, "turned": {"_count": 1}, "sent": {"_count": 1}, "pointed": {"_count": 1}, "had": {"_count": 1}, "reminded": {"_count": 1}, "so": {"_count": 1}, "was": {"_count": 1}, "made": {"_count": 1}, "borrowed": {"_count": 1}, "caused": {"_count": 1}}, "since": {"_count": 1, "before": {"_count": 1}}, "were": {"_count": 2, "flooding": {"_count": 1}, "fixed": {"_count": 1}}, "share": {"_count": 1, "cores": {"_count": 1}}, "meets": {"_count": 1, "its": {"_count": 1}}, "under": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "hastily": {"_count": 3, "back": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}}, "directly": {"_count": 2, "at": {"_count": 2}}, "come": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "its": {"_count": 1, "antlers": {"_count": 1}}, "aloft": {"_count": 5, "": {"_count": 2}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}, "Accio": {"_count": 1}}, "hurriedly": {"_count": 1, "out": {"_count": 1}}, "steady": {"_count": 1, "and": {"_count": 1}}, "forthwith": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "your": {"_count": 1}}, "could": {"_count": 1, "hear": {"_count": 1}}, "boy": {"_count": 1, "before": {"_count": 1}}, "there": {"_count": 2, "boy": {"_count": 1}, "were": {"_count": 1}}, "safety": {"_count": 1, "nobody": {"_count": 1}}, "or": {"_count": 2, "potions": {"_count": 1}, "wands": {"_count": 1}}, "hopefully": {"_count": 1, "one": {"_count": 1}}, "like": {"_count": 4, "a": {"_count": 3}, "any": {"_count": 1}}, "sparks": {"_count": 1, "": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "In": {"_count": 1, "the": {"_count": 1}}, "repaired": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "on": {"_count": 1}}, "stretched": {"_count": 1, "it": {"_count": 1}}, "quality": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 2, "spinning": {"_count": 1}, "whizzing": {"_count": 1}}, "unnecessarily": {"_count": 1, "giving": {"_count": 1}}, "spinning": {"_count": 2, "out": {"_count": 1}, "up": {"_count": 1}}, "an": {"_count": 2, "did": {"_count": 1}, "immense": {"_count": 1}}, "withdrawn": {"_count": 1, "from": {"_count": 1}}, "The": {"_count": 2, "clinking": {"_count": 1}, "force": {"_count": 1}}, "backfiring": {"_count": 1, "broom": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "apprehensively": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 3, "his": {"_count": 3}}, "being": {"_count": 1, "ten": {"_count": 1}}, "spitting": {"_count": 1, "out": {"_count": 1}}, "so": {"_count": 12, "that": {"_count": 5}, "tightly": {"_count": 1}, "rapidly": {"_count": 1}, "fast": {"_count": 1}, "Rons": {"_count": 1}, "as": {"_count": 1}, "I": {"_count": 1}, "strong": {"_count": 1}}, "she": {"_count": 7, "caused": {"_count": 1}, "hurried": {"_count": 1}, "barked": {"_count": 1}, "began": {"_count": 2}, "slashed": {"_count": 1}, "pressed": {"_count": 1}}, "now": {"_count": 2, "shaking": {"_count": 1}, "contained": {"_count": 1}}, "Id": {"_count": 1, "never": {"_count": 1}}, "movement": {"_count": 1, "required": {"_count": 1}}, "looked": {"_count": 1, "directly": {"_count": 1}}, "legislation": {"_count": 1, "contribute": {"_count": 1}}, "rise": {"_count": 1, "on": {"_count": 1}}, "wrested": {"_count": 1, "from": {"_count": 1}}, "against": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "came": {"_count": 2, "to": {"_count": 2}}, "trembling": {"_count": 1, "violently": {"_count": 1}}, "tighter": {"_count": 1, "than": {"_count": 1}}, "backward": {"_count": 1, "toward": {"_count": 1}}, "hard": {"_count": 1, "into": {"_count": 1}}, "pressing": {"_count": 1, "hard": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "conjured": {"_count": 1, "two": {"_count": 1}}, "Bellatrix": {"_count": 1, "said": {"_count": 1}}, "upon": {"_count": 3, "their": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "twisted": {"_count": 1, "with": {"_count": 1}}, "reassuringly": {"_count": 1, "in": {"_count": 1}}, "higher": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "careful": {"_count": 1, "not": {"_count": 1}}, "shakily": {"_count": 1, "from": {"_count": 1}}, "Ogden": {"_count": 1, "had": {"_count": 1}}, "muttering": {"_count": 2, "Diffindol": {"_count": 1}, "random": {"_count": 1}}, "beside": {"_count": 1, "its": {"_count": 1}}, "enthusiastically": {"_count": 1, "over": {"_count": 1}}, "Vanishing": {"_count": 1, "the": {"_count": 1}}, "carelessly": {"_count": 1, "so": {"_count": 1}}, "snapped": {"_count": 1, "in": {"_count": 1}}, "falling": {"_count": 1, "from": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 3}}, "flying": {"_count": 1, "in": {"_count": 1}}, "Snape": {"_count": 1, "shot": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "Lucius": {"_count": 3, "": {"_count": 3}}, "ramming": {"_count": 1, "Hedwigs": {"_count": 1}}, "cleaving": {"_count": 1, "a": {"_count": 1}}, "acted": {"_count": 2, "of": {"_count": 2}}, "Selwyn": {"_count": 1, "give": {"_count": 1}}, "He": {"_count": 3, "felt": {"_count": 1}, "bent": {"_count": 1}, "could": {"_count": 1}}, "performing": {"_count": 1, "magic": {"_count": 1}}, "And": {"_count": 1, "into": {"_count": 1}}, "siphoned": {"_count": 1, "off": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "lying": {"_count": 1, "beside": {"_count": 1}}, "Hermione": {"_count": 5, "turned": {"_count": 1}, "however": {"_count": 1}, "": {"_count": 1}, "come": {"_count": 1}, "said": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "Ollivander": {"_count": 1, "taking": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "leave": {"_count": 1, "his": {"_count": 1}}, "no": {"_count": 1, "spell": {"_count": 1}}, "moved": {"_count": 2, "into": {"_count": 1}, "it": {"_count": 1}}, "deliberately": {"_count": 1, "at": {"_count": 1}}, "engulfing": {"_count": 1, "a": {"_count": 1}}, "did": {"_count": 3, "when": {"_count": 1}, "said": {"_count": 1}, "no": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "Will": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 2, "hes": {"_count": 1}, "she": {"_count": 1}}, "nothing": {"_count": 1, "about": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "ignited": {"_count": 1, "": {"_count": 1}}, "beneath": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "resealed": {"_count": 2, "itself": {"_count": 1}, "red": {"_count": 1}}, "sparked": {"_count": 1, "feebly": {"_count": 1}}, "crashing": {"_count": 1, "the": {"_count": 1}}, "spin": {"_count": 1, "like": {"_count": 1}}, "his": {"_count": 1, "mothers": {"_count": 1}}, "Disarmed": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "levitate": {"_count": 1, "small": {"_count": 1}}, "worthy": {"_count": 1, "of": {"_count": 1}}, "must": {"_count": 1, "capture": {"_count": 1}}, "surfacing": {"_count": 1, "over": {"_count": 1}}, "first": {"_count": 1, "into": {"_count": 1}}, "connected": {"_count": 1, "with": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "thats": {"_count": 1, "two": {"_count": 1}}, "emitted": {"_count": 1, "sparks": {"_count": 1}}, "will": {"_count": 3, "never": {"_count": 1}, "usually": {"_count": 1}, "do": {"_count": 1}}, "how": {"_count": 1, "dare": {"_count": 1}}, "carriers": {"_count": 1, "": {"_count": 1}}, "halves": {"_count": 1, "back": {"_count": 1}}, "belonged": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 3, "Draco": {"_count": 1}, "yew": {"_count": 1}, "immense": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "learning": {"_count": 1, "from": {"_count": 1}}, "ownership": {"_count": 1, "but": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "variously": {"_count": 1, "known": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "exists": {"_count": 1, "then": {"_count": 1}}, "How": {"_count": 1, "fitting": {"_count": 1}}, "might": {"_count": 1, "sting": {"_count": 1}}, "insisting": {"_count": 1, "that": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}, "examined": {"_count": 1, "it": {"_count": 1}}, "made": {"_count": 1, "Madam": {"_count": 1}}, "yes": {"_count": 1, "very": {"_count": 1}}, "Head": {"_count": 1, "down": {"_count": 1}}, "though": {"_count": 1, "You": {"_count": 1}}, "slashed": {"_count": 2, "through": {"_count": 1}, "and": {"_count": 1}}, "youre": {"_count": 1, "holding": {"_count": 1}}, "evaporated": {"_count": 1, "in": {"_count": 1}}, "Fenrir": {"_count": 1, "Greyback": {"_count": 1}}, "trembled": {"_count": 1, "in": {"_count": 1}}, "illuminated": {"_count": 1, "expecting": {"_count": 1}}, "shattered": {"_count": 1, "upon": {"_count": 1}}, "Severus": {"_count": 2, "": {"_count": 2}}, "gripped": {"_count": 1, "tightly": {"_count": 1}}, "break": {"_count": 1, "the": {"_count": 1}}, "overpowered": {"_count": 1, "his": {"_count": 1}}, "imbibed": {"_count": 1, "some": {"_count": 1}}, "recognized": {"_count": 1, "him": {"_count": 1}}, "abnormally": {"_count": 1, "powerful": {"_count": 1}}, "Dumbledore": {"_count": 1, "corrected": {"_count": 1}}, "beat": {"_count": 1, "Voldemorts": {"_count": 1}}, "slide": {"_count": 1, "a": {"_count": 1}}, "concealed": {"_count": 1, "under": {"_count": 1}}, "isnt": {"_count": 1, "enough": {"_count": 1}}, "We": {"_count": 1, "duel": {"_count": 1}}, "Avada": {"_count": 1, "KedavraV": {"_count": 1}}}, "gamekeeper": {"_count": 23, "": {"_count": 5, ".": {"_count": 5}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "yourself": {"_count": 1, "when": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "came": {"_count": 1, "striding": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 2, "spent": {"_count": 1}, "obliged": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "cant": {"_count": 1, "he": {"_count": 1}}, "duties": {"_count": 1, "on": {"_count": 1}}, "job": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "Hagrid": {"_count": 1}}, "fresh": {"_count": 1, "air": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "Hagrids": {"_count": 1}}}, "weve": {"_count": 245, "got": {"_count": 111, "lots": {"_count": 1}, "to": {"_count": 44}, "half": {"_count": 1}, "no": {"_count": 3}, "a": {"_count": 10}, "the": {"_count": 5}, "said": {"_count": 3}, "is": {"_count": 2}, "nothing": {"_count": 1}, "what": {"_count": 1}, "so": {"_count": 2}, "better": {"_count": 1}, "our": {"_count": 2}, "loads": {"_count": 1}, "exams": {"_count": 1}, "some": {"_count": 1}, "all": {"_count": 1}, "everything": {"_count": 1}, "him": {"_count": 3}, "quite": {"_count": 1}, "another": {"_count": 1}, "ten": {"_count": 1}, "it": {"_count": 1}, "an": {"_count": 1}, "such": {"_count": 2}, "big": {"_count": 1}, "her": {"_count": 1}, "rid": {"_count": 2}, "business": {"_count": 1}, "today": {"_count": 1}, "He": {"_count": 1}, "already": {"_count": 1}, "tomorrow": {"_count": 1}, "plenty": {"_count": 1}, "enough": {"_count": 1}, "most": {"_count": 1}, "dementors": {"_count": 1}, "Dumbledore": {"_count": 1}, "Fudge": {"_count": 1}, "you": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "five": {"_count": 1}, "Potter": {"_count": 1}}, "just": {"_count": 6, "got": {"_count": 3}, "had": {"_count": 1}, "seen": {"_count": 1}, "found": {"_count": 1}}, "forgot": {"_count": 1, "Just": {"_count": 1}}, "lost": {"_count": 4, "him": {"_count": 1}, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "em": {"_count": 1}}, "been": {"_count": 20, "practicing": {"_count": 2}, "trying": {"_count": 3}, "flying": {"_count": 1}, "to": {"_count": 2}, "taking": {"_count": 1}, "looking": {"_count": 1}, "denying": {"_count": 1}, "having": {"_count": 1}, "in": {"_count": 1}, "through": {"_count": 2}, "away": {"_count": 1}, "chatting": {"_count": 1}, "hearing": {"_count": 1}, "hiding": {"_count": 1}, "keeping": {"_count": 1}}, "all": {"_count": 6, "been": {"_count": 2}, "got": {"_count": 3}, "turned": {"_count": 1}}, "done": {"_count": 9, "enough": {"_count": 1}, "theres": {"_count": 1}, "boggarts": {"_count": 1}, "everything": {"_count": 1}, "so": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 2}, "while": {"_count": 1}}, "run": {"_count": 1, "inter": {"_count": 1}}, "gotta": {"_count": 1, "get": {"_count": 1}}, "never": {"_count": 4, "had": {"_count": 2}, "seen": {"_count": 1}, "found": {"_count": 1}}, "only": {"_count": 3, "got": {"_count": 2}, "seen": {"_count": 1}}, "come": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "taken": {"_count": 1, "the": {"_count": 1}}, "drunk": {"_count": 1, "it": {"_count": 1}}, "found": {"_count": 5, "out": {"_count": 1}, "somewhere": {"_count": 1}, "for": {"_count": 1}, "Sirius": {"_count": 1}, "one": {"_count": 1}}, "had": {"_count": 8, "plenty": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 3}, "her": {"_count": 1}, "teams": {"_count": 1}, "a": {"_count": 1}}, "told": {"_count": 2, "Marge": {"_count": 1}, "them": {"_count": 1}}, "broken": {"_count": 1, "down": {"_count": 1}}, "finally": {"_count": 1, "got": {"_count": 1}}, "missed": {"_count": 1, "the": {"_count": 1}}, "ever": {"_count": 6, "had": {"_count": 5}, "done": {"_count": 1}}, "finished": {"_count": 3, "checking": {"_count": 1}, "palmistry": {"_count": 1}, "it": {"_count": 1}}, "already": {"_count": 2, "divided": {"_count": 1}, "tested": {"_count": 1}}, "thought": {"_count": 1, "Sirius": {"_count": 1}}, "heard": {"_count": 1, "said": {"_count": 1}}, "sorted": {"_count": 3, "a": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 1}}, "put": {"_count": 2, "enough": {"_count": 1}, "on": {"_count": 1}}, "disturbed": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 3, "good": {"_count": 1}, "it": {"_count": 1}, "in": {"_count": 1}}, "left": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "learned": {"_count": 1, "enough": {"_count": 1}}, "met": {"_count": 2, "them": {"_count": 1}, "about": {"_count": 1}}, "tried": {"_count": 1, "being": {"_count": 1}}, "no": {"_count": 1, "evidence": {"_count": 1}}, "helped": {"_count": 1, "each": {"_count": 1}}, "always": {"_count": 2, "been": {"_count": 1}, "stopped": {"_count": 1}}, "started": {"_count": 1, "fighting": {"_count": 1}}, "gone": {"_count": 2, "past": {"_count": 1}, "": {"_count": 1}}, "still": {"_count": 2, "got": {"_count": 2}}, "overrun": {"_count": 1, "wed": {"_count": 1}}, "replaced": {"_count": 1, "you": {"_count": 1}}, "seen": {"_count": 3, "a": {"_count": 1}, "Lovegood": {"_count": 1}, "her": {"_count": 1}}, "decided": {"_count": 1, "we": {"_count": 1}}, "outgrown": {"_count": 1, "fulltime": {"_count": 1}}, "won": {"_count": 1, "one": {"_count": 1}}, "expanded": {"_count": 1, "into": {"_count": 1}}, "Whatever": {"_count": 1, "youve": {"_count": 1}}, "discussed": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "developed": {"_count": 1, "a": {"_count": 1}}, "given": {"_count": 1, "a": {"_count": 1}}, "nearly": {"_count": 1, "made": {"_count": 1}}, "arranged": {"_count": 1, "everything": {"_count": 1}}, "slipped": {"_count": 1, "into": {"_count": 1}}, "wanted": {"_count": 1, "elves": {"_count": 1}}, "used": {"_count": 1, "it": {"_count": 1}}, "saved": {"_count": 1, "your": {"_count": 1}}}, "Gotta": {"_count": 6, "get": {"_count": 1, "up": {"_count": 1}}, "bone": {"_count": 1, "ter": {"_count": 1}}, "pull": {"_count": 1, "meself": {"_count": 1}}, "walk": {"_count": 1, "past": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "it": {"_count": 1}}}, "kip": {"_count": 5, "under": {"_count": 2, "that": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "wriggles": {"_count": 1, "a": {"_count": 1, "bit": {"_count": 1}}}, "dormice": {"_count": 1, "in": {"_count": 1, "one": {"_count": 1}}}, "DIAGON": {"_count": 1, "ALLY": {"_count": 1, "Harry": {"_count": 1}}}, "ALLY": {"_count": 1, "Harry": {"_count": 1, "woke": {"_count": 1}}}, "tapping": {"_count": 23, "noise": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 8, "third": {"_count": 1}, "ticket": {"_count": 1}, "witch": {"_count": 1}, "stone": {"_count": 1}, "map": {"_count": 1}, "crownshaped": {"_count": 1}, "keyhole": {"_count": 1}, "padlock": {"_count": 1}}, "his": {"_count": 2, "way": {"_count": 1}, "nose": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "it": {"_count": 5, "excitedly": {"_count": 1}, "lightly": {"_count": 1}, "with": {"_count": 1}, "quietly": {"_count": 1}, "on": {"_count": 1}}, "Harry": {"_count": 1, "hard": {"_count": 1}}, "their": {"_count": 2, "heads": {"_count": 1}, "fingers": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 2, "Gellerts": {"_count": 1}, "once": {"_count": 1}}}, "Tap": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "sunlight": {"_count": 54, "the": {"_count": 1, "storm": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "outside": {"_count": 2, "Gringotts": {"_count": 1}, "Honeydukes": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "though": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 4, "his": {"_count": 2}, "Fred": {"_count": 1}, "the": {"_count": 1}}, "fell": {"_count": 2, "across": {"_count": 2}}, "was": {"_count": 3, "falling": {"_count": 1}, "streaming": {"_count": 1}, "dazzling": {"_count": 1}}, "perhaps": {"_count": 1, "that": {"_count": 1}}, "falling": {"_count": 2, "through": {"_count": 1}, "onto": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "had": {"_count": 1, "crept": {"_count": 1}}, "crisscrossed": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "split": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 1}, "tight": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "swinging": {"_count": 1, "their": {"_count": 1}}, "gleaming": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 1, "years": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "filtering": {"_count": 1, "through": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "streaming": {"_count": 2, "into": {"_count": 1}, "through": {"_count": 1}}, "discernible": {"_count": 1, "only": {"_count": 1}}, "were": {"_count": 1, "blinding": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "stretching": {"_count": 1, "to": {"_count": 1}}}, "rapping": {"_count": 5, "its": {"_count": 1, "claw": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "it": {"_count": 1, "smartly": {"_count": 1}}, "me": {"_count": 1, "affectionately": {"_count": 1}}}, "claw": {"_count": 7, "on": {"_count": 1, "the": {"_count": 1}}, "footed": {"_count": 1, "desk": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "does": {"_count": 1, "work": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}}, "scrambled": {"_count": 55, "to": {"_count": 15, "his": {"_count": 10}, "pick": {"_count": 1}, "find": {"_count": 1}, "get": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "through": {"_count": 4, "it": {"_count": 1}, "the": {"_count": 3}}, "into": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "back": {"_count": 5, "along": {"_count": 1}, "through": {"_count": 1}, "behind": {"_count": 1}, "up": {"_count": 2}}, "out": {"_count": 6, "of": {"_count": 6}}, "around": {"_count": 4, "trying": {"_count": 1}, "threw": {"_count": 1}, "to": {"_count": 1}, "cramming": {"_count": 1}}, "eggs": {"_count": 5, "": {"_count": 2}, "down": {"_count": 1}, "into": {"_count": 1}, "on": {"_count": 1}}, "aside": {"_count": 1, "snatching": {"_count": 1}}, "up": {"_count": 6, "again": {"_count": 2}, "from": {"_count": 1}, "and": {"_count": 2}, "at": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "forward": {"_count": 1, "on": {"_count": 1}}, "clumsily": {"_count": 1, "onto": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "blushing": {"_count": 1, "to": {"_count": 1}}}, "balloon": {"_count": 8, "was": {"_count": 1, "swelling": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "answered": {"_count": 1, "": {"_count": 1}}, "Goyle": {"_count": 1, "blundered": {"_count": 1}}, "her": {"_count": 1, "stomach": {"_count": 1}}, "had": {"_count": 1, "dropped": {"_count": 1}}, "and": {"_count": 1, "emitted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "swelling": {"_count": 22, "inside": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 1, "twice": {"_count": 1}}, "with": {"_count": 5, "fury": {"_count": 1}, "inexpressible": {"_count": 1}, "pride": {"_count": 3}}, "didnt": {"_count": 1, "stop": {"_count": 1}}, "slowly": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "popped": {"_count": 1}}, "his": {"_count": 1, "great": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "crowd": {"_count": 1, "descending": {"_count": 1}}, "toadishly": {"_count": 1, "": {"_count": 1}}, "above": {"_count": 1, "Nevilles": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "billowing": {"_count": 1, "silence": {"_count": 1}}, "rapidly": {"_count": 2, "": {"_count": 1}, "under": {"_count": 1}}, "where": {"_count": 1, "his": {"_count": 1}}, "treasure": {"_count": 1, "and": {"_count": 1}}, "mass": {"_count": 1, "of": {"_count": 1}}}, "fluttered": {"_count": 30, "onto": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "down": {"_count": 8, "between": {"_count": 1}, "onto": {"_count": 3}, "on": {"_count": 1}, "beside": {"_count": 2}, "upon": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "from": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "rest": {"_count": 1}}, "obligingly": {"_count": 1, "over": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "rather": {"_count": 1, "feebly": {"_count": 1}}, "and": {"_count": 2, "were": {"_count": 1}, "opened": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}}, "attack": {"_count": 124, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "us": {"_count": 4, "if": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "we": {"_count": 1}}, "but": {"_count": 2, "Harry": {"_count": 1}, "its": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "on": {"_count": 11, "Mrs": {"_count": 1}, "Harry": {"_count": 2}, "Justin": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "this": {"_count": 1}, "Mr": {"_count": 2}, "you": {"_count": 1}, "a": {"_count": 1}}, "had": {"_count": 3, "also": {"_count": 1}, "happened": {"_count": 1}, "done": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 2}, "Ollivander": {"_count": 1}}, "anyone": {"_count": 3, "now": {"_count": 1}, "": {"_count": 2}}, "Justin": {"_count": 1, "Oh": {"_count": 1}}, "by": {"_count": 4, "You": {"_count": 1}, "a": {"_count": 2}, "halfbreeds": {"_count": 1}}, "Muggleborns": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 1, "or": {"_count": 1}}, "me": {"_count": 5, "": {"_count": 1}, "so": {"_count": 1}, "all": {"_count": 1}, "as": {"_count": 1}, "unless": {"_count": 1}}, "and": {"_count": 2, "as": {"_count": 1}, "yet": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 19}, "?": {"_count": 1}}, "a": {"_count": 2, "prefect": {"_count": 1}, "day": {"_count": 1}}, "Hermione": {"_count": 1, "Granger": {"_count": 1}}, "was": {"_count": 3, "going": {"_count": 1}, "bound": {"_count": 1}, "taking": {"_count": 1}}, "today": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "nothing": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 2, "players": {"_count": 1}, "piece": {"_count": 1}}, "an": {"_count": 1, "come": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "their": {"_count": 1}}, "you": {"_count": 9, "and": {"_count": 1}, "": {"_count": 3}, "theyre": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}, "would": {"_count": 1}, "with": {"_count": 1}}, "him": {"_count": 4, "while": {"_count": 2}, "He": {"_count": 1}, "": {"_count": 1}}, "someone": {"_count": 1, "in": {"_count": 1}}, "inflicted": {"_count": 1, "upon": {"_count": 1}}, "them": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 1, "were": {"_count": 1}}, "very": {"_count": 1, "accurately": {"_count": 1}}, "stragglers": {"_count": 1, "": {"_count": 1}}, "children": {"_count": 1, "like": {"_count": 1}}, "em": {"_count": 1, "": {"_count": 1}}, "happen": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "Dumbledore": {"_count": 1, "too": {"_count": 1}}, "Mr": {"_count": 3, "Weasley": {"_count": 3}}, "Snape": {"_count": 2, "in": {"_count": 1}, "next": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "himself": {"_count": 1}}, "nor": {"_count": 1, "relieved": {"_count": 1}}, "Dropping": {"_count": 1, "his": {"_count": 1}}, "foals": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "might": {"_count": 2, "have": {"_count": 2}}, "right": {"_count": 1, "outside": {"_count": 1}}, "my": {"_count": 1, "son": {"_count": 1}}, "really": {"_count": 1, "when": {"_count": 1}}, "upon": {"_count": 2, "three": {"_count": 1}, "Gellert": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 1, "at": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}}, "wave": {"_count": 65, "the": {"_count": 1, "owl": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 37, "his": {"_count": 9}, "slugs": {"_count": 1}, "fury": {"_count": 3}, "yet": {"_count": 1}, "her": {"_count": 4}, "cold": {"_count": 3}, "piercing": {"_count": 1}, "noise": {"_count": 1}, "crimson": {"_count": 1}, "green": {"_count": 2}, "molten": {"_count": 1}, "relief": {"_count": 2}, "talk": {"_count": 1}, "one": {"_count": 1}, "hot": {"_count": 1}, "dread": {"_count": 1}, "terror": {"_count": 1}, "remorse": {"_count": 1}, "a": {"_count": 1}, "Hermiones": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "looking": {"_count": 1}, "she": {"_count": 1}, "a": {"_count": 1}}, "stepped": {"_count": 1, "forward": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "when": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "it": {"_count": 1}}, "or": {"_count": 1, "give": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "it": {"_count": 1, "its": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "only": {"_count": 1, "halfheartedly": {"_count": 1}}, "he": {"_count": 1, "waddled": {"_count": 1}}, "occurred": {"_count": 1, "and": {"_count": 1}}, "why": {"_count": 1, "shouldnt": {"_count": 1}}, "after": {"_count": 1, "wave": {"_count": 1}}, "obliterating": {"_count": 1, "everything": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "glimpsed": {"_count": 1, "from": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "then": {"_count": 1, "sprint": {"_count": 1}}}, "fiercely": {"_count": 49, "at": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 25}}, "but": {"_count": 2, "she": {"_count": 1}, "only": {"_count": 1}}, "pointing": {"_count": 1, "down": {"_count": 1}}, "stuffing": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 4, "Ron": {"_count": 1}, "he": {"_count": 1}, "their": {"_count": 1}, "Harry": {"_count": 1}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "possible": {"_count": 1}, "though": {"_count": 1}}, "and": {"_count": 2, "I": {"_count": 1}, "its": {"_count": 1}}, "from": {"_count": 1, "under": {"_count": 1}}, "now": {"_count": 1, "looking": {"_count": 1}}, "seizing": {"_count": 1, "Ron": {"_count": 1}}, "pushing": {"_count": 1, "Mrs": {"_count": 1}}, "I": {"_count": 1, "order": {"_count": 1}}, "gripping": {"_count": 1, "her": {"_count": 1}}, "No": {"_count": 1, "Luna": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "savaging": {"_count": 2, "the": {"_count": 1, "coat": {"_count": 1}}, "branches": {"_count": 1, "": {"_count": 1}}}, "Pay": {"_count": 2, "him": {"_count": 1, "Hagrid": {"_count": 1}}, "attention": {"_count": 1, "": {"_count": 1}}}, "payin": {"_count": 1, "fer": {"_count": 1, "deliverin": {"_count": 1}}}, "deliverin": {"_count": 1, "the": {"_count": 1, "paper": {"_count": 1}}}, "Look": {"_count": 197, "in": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "Harry": {"_count": 5, "heard": {"_count": 1}, "still": {"_count": 1}, "said": {"_count": 1}, "what": {"_count": 1}, "began": {"_count": 1}}, "what": {"_count": 10, "she": {"_count": 1}, "Ive": {"_count": 2}, "happened": {"_count": 2}, "Dungs": {"_count": 1}, "weve": {"_count": 1}, "youve": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "you": {"_count": 6, "hold": {"_count": 1}, "dont": {"_count": 1}, "said": {"_count": 1}, "upset": {"_count": 1}, "three": {"_count": 1}, "go": {"_count": 1}}, "": {"_count": 18, "!": {"_count": 10}, ".": {"_count": 8}}, "down": {"_count": 2, "": {"_count": 1}, "yeh": {"_count": 1}}, "at": {"_count": 56, "them": {"_count": 1}, "me": {"_count": 1}, "these": {"_count": 1}, "you": {"_count": 1}, "my": {"_count": 1}, "Neville": {"_count": 1}, "his": {"_count": 2}, "it": {"_count": 3}, "the": {"_count": 14}, "this": {"_count": 14}, "Snape": {"_count": 1}, "him": {"_count": 5}, "Lynch": {"_count": 1}, "that": {"_count": 5}, "Fudge": {"_count": 1}, "Ginny": {"_count": 1}, "today": {"_count": 1}, "Madam": {"_count": 1}, "page": {"_count": 1}}, "read": {"_count": 1, "that": {"_count": 1}}, "theyre": {"_count": 2, "off": {"_count": 1}, "so": {"_count": 1}}, "Snape": {"_count": 1, "helped": {"_count": 1}}, "there": {"_count": 1, "said": {"_count": 1}}, "Ive": {"_count": 2, "jus": {"_count": 1}, "thought": {"_count": 1}}, "he": {"_count": 7, "murmured": {"_count": 1}, "said": {"_count": 5}, "turned": {"_count": 1}}, "said": {"_count": 9, "Harry": {"_count": 4}, "Ron": {"_count": 3}, "Hermione": {"_count": 2}}, "if": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "Mom": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "this": {"_count": 2, "way": {"_count": 1}, "will": {"_count": 1}}, "food": {"_count": 1, "": {"_count": 1}}, "Albus": {"_count": 1, "said": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "Im": {"_count": 2, "really": {"_count": 1}, "sorry": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "He": {"_count": 2, "took": {"_count": 1}, "separated": {"_count": 1}}, "and": {"_count": 1, "see": {"_count": 1}}, "closer": {"_count": 1, "": {"_count": 1}}, "Scabbers": {"_count": 1, "probably": {"_count": 1}}, "can": {"_count": 1, "someone": {"_count": 1}}, "heres": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "theyre": {"_count": 1}}, "behind": {"_count": 1, "you": {"_count": 1}}, "its": {"_count": 2, "Hagrid": {"_count": 1}, "none": {"_count": 1}}, "after": {"_count": 5, "Gabrielle": {"_count": 1}, "yourself": {"_count": 1}, "yourselves": {"_count": 1}, "him": {"_count": 1}, "em": {"_count": 1}}, "I": {"_count": 8, "dont": {"_count": 2}, "saw": {"_count": 2}, "know": {"_count": 1}, "didnt": {"_count": 1}, "wouldn": {"_count": 1}, "had": {"_count": 1}}, "very": {"_count": 1, "closely": {"_count": 1}}, "round": {"_count": 1, "Harry": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "Well": {"_count": 1, "Id": {"_count": 1}}, "she": {"_count": 1, "leaned": {"_count": 1}}, "theres": {"_count": 2, "something": {"_count": 1}, "people": {"_count": 1}}, "drop": {"_count": 1, "it": {"_count": 1}}, "Hagrid": {"_count": 2, "said": {"_count": 1}, "twisted": {"_count": 1}}, "don": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "others": {"_count": 1}}, "lets": {"_count": 2, "get": {"_count": 2}}, "shes": {"_count": 1, "decorated": {"_count": 1}}, "ah": {"_count": 1, "its": {"_count": 1}}, "who": {"_count": 3, "it": {"_count": 3}}, "here": {"_count": 1, "come": {"_count": 1}}, "outi": {"_count": 1, "Harry": {"_count": 1}}, "Instant": {"_count": 1, "Darkness": {"_count": 1}}, "hes": {"_count": 1, "waving": {"_count": 1}}, "didnt": {"_count": 1, "make": {"_count": 1}}, "sighed": {"_count": 1, "Hermione": {"_count": 1}}, "Hermione": {"_count": 1, "cant": {"_count": 1}}, "sharp": {"_count": 2, "Tom": {"_count": 2}}, "hurry": {"_count": 1, "up": {"_count": 1}}, "why": {"_count": 1, "dont": {"_count": 1}}, "Potions": {"_count": 1, "will": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "Draco": {"_count": 1, "isnt": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}}, "bunches": {"_count": 7, "of": {"_count": 4, "keys": {"_count": 1}, "shivering": {"_count": 1}, "mistletoe": {"_count": 1}, "flowers": {"_count": 1}}, "perhaps": {"_count": 1, "he": {"_count": 1}}, "emerged": {"_count": 1, "over": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}}, "keys": {"_count": 14, "slug": {"_count": 1, "pellets": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "Winged": {"_count": 1, "keys": {"_count": 1}}, "look": {"_count": 1, "carefully": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "darted": {"_count": 1, "and": {"_count": 1}}, "McGonagall": {"_count": 1, "transfigured": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "shrink": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "strewn": {"_count": 1, "across": {"_count": 1}}}, "pellets": {"_count": 1, "balls": {"_count": 1, "of": {"_count": 1}}}, "string": {"_count": 17, "peppermint": {"_count": 1, "humbugs": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "two": {"_count": 1, "words": {"_count": 1}}, "of": {"_count": 2, "tinsel": {"_count": 1}, "rattling": {"_count": 1}}, "them": {"_count": 1, "together": {"_count": 1}}, "shopping": {"_count": 1, "bag": {"_count": 1}}, "bag": {"_count": 2, "dangled": {"_count": 1}, "clanking": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "descended": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 2, "separated": {"_count": 1}, "inserted": {"_count": 1}}, "evidently": {"_count": 1, "intended": {"_count": 1}}, "together": {"_count": 1, "the": {"_count": 1}}}, "peppermint": {"_count": 5, "humbugs": {"_count": 2, "teabags": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 1, "marmalade": {"_count": 1}}, "creams": {"_count": 1, "shaped": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}}, "humbugs": {"_count": 2, "teabags": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "teabags": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}}, "handful": {"_count": 23, "of": {"_count": 22, "strangelooking": {"_count": 1}, "moldy": {"_count": 1}, "perfect": {"_count": 1}, "flames": {"_count": 1}, "fire": {"_count": 2}, "mud": {"_count": 1}, "the": {"_count": 1}, "O": {"_count": 1}, "cutlery": {"_count": 1}, "new": {"_count": 1}, "candles": {"_count": 1}, "gillyweed": {"_count": 1}, "Harrys": {"_count": 1}, "spare": {"_count": 1}, "what": {"_count": 1}, "confetti": {"_count": 2}, "Hermiones": {"_count": 1}, "Chocolate": {"_count": 1}, "chips": {"_count": 1}, "hairs": {"_count": 1}}, "that": {"_count": 1, "remained": {"_count": 1}}}, "strangelooking": {"_count": 2, "coins": {"_count": 1, "": {"_count": 1}}, "house": {"_count": 1, "rose": {"_count": 1}}}, "coins": {"_count": 26, "": {"_count": 8, ".": {"_count": 6}, "!": {"_count": 1}, "?": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "looking": {"_count": 1}, "goblets": {"_count": 1}}, "in": {"_count": 1, "brass": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 1}, "Harrys": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}, "rained": {"_count": 1, "from": {"_count": 1}}, "usually": {"_count": 2, "appeared": {"_count": 2}}, "though": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 1, "grow": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Malfoy": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "regularly": {"_count": 1, "in": {"_count": 1}}, "or": {"_count": 1, "tokens": {"_count": 1}}, "all": {"_count": 1, "embossed": {"_count": 1}}}, "Give": {"_count": 51, "him": {"_count": 3, "five": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}}, "us": {"_count": 4, "a": {"_count": 1}, "names": {"_count": 1}, "more": {"_count": 1}, "time": {"_count": 1}}, "that": {"_count": 2, "here": {"_count": 1}, "back": {"_count": 1}}, "it": {"_count": 16, "here": {"_count": 3}, "to": {"_count": 7}, "another": {"_count": 1}, "back": {"_count": 3}, "a": {"_count": 2}}, "the": {"_count": 4, "flute": {"_count": 1}, "Gurg": {"_count": 1}, "what": {"_count": 1}, "incantation": {"_count": 1}}, "me": {"_count": 14, "a": {"_count": 3}, "my": {"_count": 1}, "your": {"_count": 2}, "the": {"_count": 3}, "another": {"_count": 1}, "back": {"_count": 1}, "Harry": {"_count": 3}}, "Pig": {"_count": 1, "something": {"_count": 1}}, "them": {"_count": 3, "a": {"_count": 1}, "to": {"_count": 2}}, "em": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 1, "hell": {"_count": 1}}, "Aragog": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "my": {"_count": 1}}}, "Knuts": {"_count": 11, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Fred": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "to": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "scoop": {"_count": 1}}, "in": {"_count": 1, "Muggle": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "glinting": {"_count": 1, "up": {"_count": 1}}, "Ron": {"_count": 1, "still": {"_count": 1}}}, "sleepily": {"_count": 14, "": {"_count": 6, ".": {"_count": 6}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "dipped": {"_count": 1, "her": {"_count": 1}}, "without": {"_count": 1, "opening": {"_count": 1}}, "relaxed": {"_count": 1, "it": {"_count": 1}}, "into": {"_count": 1, "space": {"_count": 1}}, "and": {"_count": 1, "now": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}}, "bronze": {"_count": 15, "ones": {"_count": 1, "": {"_count": 1}}, "coins": {"_count": 1, "and": {"_count": 1}}, "doors": {"_count": 3, "wearing": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "Knuts": {"_count": 4, "": {"_count": 2}, "from": {"_count": 1}, "glinting": {"_count": 1}}, "jangling": {"_count": 1, "cheerfully": {"_count": 1}}, "pinkish": {"_count": 1, "roan": {"_count": 1}}, "eagle": {"_count": 2, "for": {"_count": 1}, "of": {"_count": 1}}, "handle": {"_count": 1, "": {"_count": 1}}, "knocker": {"_count": 1, "in": {"_count": 1}}}, "ones": {"_count": 150, "": {"_count": 13, ".": {"_count": 11}, "?": {"_count": 2}}, "are": {"_count": 1, "Galleons": {"_count": 1}}, "with": {"_count": 5, "magic": {"_count": 1}, "iron": {"_count": 1}, "any": {"_count": 1}, "such": {"_count": 1}, "an": {"_count": 1}}, "like": {"_count": 1, "chocolate": {"_count": 1}}, "at": {"_count": 1, "Gringotts": {"_count": 1}}, "narrow": {"_count": 1, "rickety": {"_count": 1}}, "some": {"_count": 1, "that": {"_count": 1}}, "who": {"_count": 22, "get": {"_count": 1}, "know": {"_count": 1}, "knew": {"_count": 2}, "managed": {"_count": 1}, "arent": {"_count": 1}, "escaped": {"_count": 1}, "had": {"_count": 6}, "mend": {"_count": 1}, "hadn": {"_count": 1}, "can": {"_count": 3}, "made": {"_count": 1}, "tried": {"_count": 1}, "hand": {"_count": 1}, "felt": {"_count": 1}}, "from": {"_count": 2, "said": {"_count": 1}, "a": {"_count": 1}}, "the": {"_count": 3, "Dursleys": {"_count": 1}, "better": {"_count": 1}, "Trace": {"_count": 1}}, "in": {"_count": 4, "Romania": {"_count": 1}, "Britain": {"_count": 1}, "two": {"_count": 1}, "Godrics": {"_count": 1}}, "making": {"_count": 2, "their": {"_count": 1}, "you": {"_count": 1}}, "watching": {"_count": 1, "said": {"_count": 1}}, "lasted": {"_count": 2, "long": {"_count": 1}, "more": {"_count": 1}}, "to": {"_count": 4, "Gladys": {"_count": 1}, "have": {"_count": 1}, "use": {"_count": 1}, "take": {"_count": 1}}, "left": {"_count": 5, "Ron": {"_count": 1}, "in": {"_count": 2}, "here": {"_count": 1}, "who": {"_count": 1}}, "and": {"_count": 4, "laced": {"_count": 1}, "pulling": {"_count": 1}, "as": {"_count": 1}, "beaming": {"_count": 1}}, "going": {"_count": 7, "to": {"_count": 7}}, "died": {"_count": 2, "because": {"_count": 1}, "this": {"_count": 1}}, "ever": {"_count": 4, "understood": {"_count": 1}, "done": {"_count": 1}, "gotten": {"_count": 1}, "written": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "seen": {"_count": 2, "hide": {"_count": 1}, "that": {"_count": 1}}, "really": {"_count": 1, "sure": {"_count": 1}}, "that": {"_count": 6, "good": {"_count": 2}, "Professor": {"_count": 1}, "illuminated": {"_count": 1}, "involved": {"_count": 1}, "Sprouts": {"_count": 1}}, "then": {"_count": 1, "dear": {"_count": 1}}, "warned": {"_count": 1, "you": {"_count": 1}}, "a": {"_count": 1, "a": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 1}, "were": {"_count": 1}}, "When": {"_count": 1, "they": {"_count": 1}}, "done": {"_count": 2, "anything": {"_count": 2}}, "fault": {"_count": 1, "but": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "taken": {"_count": 1, "Ron": {"_count": 1}}, "each": {"_count": 1, "seating": {"_count": 1}}, "he": {"_count": 4, "had": {"_count": 2}, "said": {"_count": 1}, "remembered": {"_count": 1}}, "around": {"_count": 1, "here": {"_count": 1}}, "tried": {"_count": 2, "to": {"_count": 2}}, "mind": {"_count": 1, "pours": {"_count": 1}}, "leisure": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "lived": {"_count": 1, "here": {"_count": 1}}, "denying": {"_count": 1, "what": {"_count": 1}}, "memory": {"_count": 1, "removed": {"_count": 1}}, "rusting": {"_count": 1, "through": {"_count": 1}}, "listening": {"_count": 1, "oh": {"_count": 1}}, "hooting": {"_count": 1, "with": {"_count": 1}}, "convenience": {"_count": 1, "": {"_count": 1}}, "pulling": {"_count": 1, "the": {"_count": 1}}, "sure": {"_count": 1, "whats": {"_count": 1}}, "mighta": {"_count": 1, "bin": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "bein": {"_count": 1, "beaten": {"_count": 1}}, "tha": {"_count": 1, "survived": {"_count": 1}}, "screeching": {"_count": 1, "hooting": {"_count": 1}}, "off": {"_count": 1, "you": {"_count": 1}}, "shining": {"_count": 1, "neck": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "too": {"_count": 1, "Harry": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "body": {"_count": 1, "is": {"_count": 1}}, "true": {"_count": 1, "destination": {"_count": 1}}, "used": {"_count": 1, "for": {"_count": 1}}, "found": {"_count": 1, "him": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "Thorfinn": {"_count": 1, "Rowle": {"_count": 1}}, "whining": {"_count": 1, "in": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "whose": {"_count": 1, "friends": {"_count": 1}}, "called": {"_count": 1, "desperately": {"_count": 1}}}, "money": {"_count": 75, "into": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "and": {"_count": 5, "you": {"_count": 1}, "a": {"_count": 1}, "life": {"_count": 1}, "Mum": {"_count": 1}, "five": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "outta": {"_count": 1, "Mr": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 11}, "?": {"_count": 2}, "!": {"_count": 1}}, "than": {"_count": 3, "hed": {"_count": 1}, "even": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 2}, "an": {"_count": 1}, "without": {"_count": 1}}, "for": {"_count": 4, "candy": {"_count": 1}, "about": {"_count": 1}, "spellbooks": {"_count": 1}, "it": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 3, "should": {"_count": 1}, "couldnt": {"_count": 1}, "dont": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 10, "at": {"_count": 1}, "and": {"_count": 2}, "with": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 1}, "upside": {"_count": 1}, "across": {"_count": 1}, "to": {"_count": 1}, "without": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "pay": {"_count": 1}}, "Dont": {"_count": 1, "be": {"_count": 1}}, "bags": {"_count": 2, "considerably": {"_count": 2}}, "if": {"_count": 1, "he": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "that": {"_count": 1, "Ireland": {"_count": 1}}, "all": {"_count": 1, "summer": {"_count": 1}}, "involved": {"_count": 1, "as": {"_count": 1}}, "zis": {"_count": 1, "is": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "lately": {"_count": 1, "I": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 1}, "said": {"_count": 1}}, "off": {"_count": 1, "Bagman": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "failing": {"_count": 1, "to": {"_count": 1}}, "pocket": {"_count": 1, "anything": {"_count": 1}}, "spinner": {"_count": 1, "continued": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}}, "pouch": {"_count": 22, "tied": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "much": {"_count": 1, "larger": {"_count": 1}}, "which": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 8, "his": {"_count": 8}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "containing": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "around": {"_count": 1}}, "from": {"_count": 1, "around": {"_count": 1}}, "still": {"_count": 1, "strung": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "hung": {"_count": 1, "around": {"_count": 1}}}, "tied": {"_count": 59, "to": {"_count": 18, "it": {"_count": 2}, "its": {"_count": 1}, "Snapes": {"_count": 1}, "Hedwigs": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 2}, "that": {"_count": 1}, "her": {"_count": 2}, "their": {"_count": 1}, "Hermiones": {"_count": 1}, "Ron": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "rope": {"_count": 1}}, "it": {"_count": 6, "to": {"_count": 4}, "securely": {"_count": 1}, "onto": {"_count": 1}}, "up": {"_count": 6, "out": {"_count": 1}, "": {"_count": 2}, "Ron": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}}, "around": {"_count": 4, "his": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "its": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "back": {"_count": 3, "in": {"_count": 3}}, "in": {"_count": 2, "first": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 1, "Winkys": {"_count": 1}}, "between": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "tightly": {"_count": 1}}, "he": {"_count": 1, "fell": {"_count": 1}}, "shook": {"_count": 1, "its": {"_count": 1}}, "cloths": {"_count": 1, "over": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "violet": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "by": {"_count": 1, "Moodys": {"_count": 1}}, "backto": {"_count": 1, "back": {"_count": 1}}, "backtoback": {"_count": 1, "and": {"_count": 1}}, "itself": {"_count": 1, "around": {"_count": 1}}}, "flew": {"_count": 206, "off": {"_count": 4, "through": {"_count": 1}, "and": {"_count": 2}, "for": {"_count": 1}}, "out": {"_count": 23, "of": {"_count": 19}, "to": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 11, "to": {"_count": 1}, "circles": {"_count": 1}, "every": {"_count": 2}, "all": {"_count": 3}, "five": {"_count": 1}, "great": {"_count": 1}, "through": {"_count": 1}, "at": {"_count": 1}}, "too": {"_count": 1, "high": {"_count": 1}}, "slightly": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 10, "down": {"_count": 1}, "beneath": {"_count": 1}, "into": {"_count": 2}, "over": {"_count": 1}, "to": {"_count": 4}, "together": {"_count": 1}}, "suddenly": {"_count": 1, "out": {"_count": 1}}, "up": {"_count": 7, "to": {"_count": 3}, "over": {"_count": 1}, "into": {"_count": 1}, "the": {"_count": 1}, "from": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "car": {"_count": 1}, "wind": {"_count": 1}}, "twenty": {"_count": 1, "feet": {"_count": 1}}, "that": {"_count": 1, "car": {"_count": 1}}, "from": {"_count": 10, "Mrs": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "one": {"_count": 1}, "behind": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "Dracos": {"_count": 1}, "its": {"_count": 1}, "both": {"_count": 1}}, "farther": {"_count": 2, "and": {"_count": 2}}, "toward": {"_count": 5, "the": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}}, "open": {"_count": 25, "and": {"_count": 7}, "at": {"_count": 1}, "along": {"_count": 1}, "with": {"_count": 3}, "": {"_count": 3}, "yet": {"_count": 1}, "Harry": {"_count": 1}, "revealing": {"_count": 1}, "again": {"_count": 3}, "but": {"_count": 1}, "making": {"_count": 1}, "Malfoy": {"_count": 1}, "as": {"_count": 1}}, "through": {"_count": 12, "the": {"_count": 11}, "his": {"_count": 1}}, "higher": {"_count": 2, "than": {"_count": 1}, "": {"_count": 1}}, "backward": {"_count": 2, "off": {"_count": 1}, "and": {"_count": 1}}, "ten": {"_count": 2, "feet": {"_count": 2}}, "high": {"_count": 3, "into": {"_count": 3}}, "across": {"_count": 6, "the": {"_count": 6}}, "to": {"_count": 5, "London": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 2}, "her": {"_count": 1}}, "everywhere": {"_count": 3, "": {"_count": 1}, "as": {"_count": 2}}, "him": {"_count": 1, "once": {"_count": 1}}, "apart": {"_count": 1, "to": {"_count": 1}}, "forward": {"_count": 3, "to": {"_count": 1}, "toward": {"_count": 1}, "off": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "into": {"_count": 13, "the": {"_count": 12}, "him": {"_count": 1}}, "low": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 2, "collectible": {"_count": 1}, "floated": {"_count": 1}}, "inside": {"_count": 2, "soared": {"_count": 1}, "landed": {"_count": 1}}, "straight": {"_count": 3, "across": {"_count": 1}, "up": {"_count": 1}, "in": {"_count": 1}}, "over": {"_count": 6, "his": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 3}, "countryside": {"_count": 1}}, "pellmell": {"_count": 1, "into": {"_count": 1}}, "until": {"_count": 1, "Harry": {"_count": 1}}, "better": {"_count": 1, "this": {"_count": 1}}, "twittering": {"_count": 1, "wildly": {"_count": 1}}, "upward": {"_count": 2, "away": {"_count": 1}, "reducing": {"_count": 1}}, "twelve": {"_count": 1, "feet": {"_count": 1}}, "away": {"_count": 1, "up": {"_count": 1}}, "left": {"_count": 1, "his": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "so": {"_count": 1, "close": {"_count": 1}}, "right": {"_count": 1, "over": {"_count": 1}}, "a": {"_count": 1, "streak": {"_count": 1}}, "some": {"_count": 1, "ten": {"_count": 1}}, "glittering": {"_count": 1, "across": {"_count": 1}}, "lower": {"_count": 1, "over": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "really": {"_count": 1, "well": {"_count": 1}}, "under": {"_count": 1, "Harrys": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 2}}, "past": {"_count": 3, "him": {"_count": 1}, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "feet": {"_count": 1, "away": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "cities": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 1, "its": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 1}, "shrapnel": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "far": {"_count": 1, "over": {"_count": 1}}}, "Best": {"_count": 20, "be": {"_count": 1, "off": {"_count": 1}}, "do": {"_count": 1, "it": {"_count": 1}}, "Blowing": {"_count": 4, "Gum": {"_count": 4}}, "wizard": {"_count": 1, "in": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 1}, "talk": {"_count": 1}}, "go": {"_count": 1, "wake": {"_count": 1}}, "idea": {"_count": 1, "youve": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "Harry": {"_count": 1, "Harry": {"_count": 1}}, "let": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 1, "say": {"_count": 1}}, "range": {"_count": 1, "of": {"_count": 1}}, "bargain": {"_count": 1, "we": {"_count": 1}}, "take": {"_count": 1, "these": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}}, "puncture": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "skin": {"_count": 1}}, "the": {"_count": 1, "small": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}, "marks": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}}, "Urn": {"_count": 1, "Hagrid": {"_count": 1, "": {"_count": 1}}}, "Mm": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "pay": {"_count": 59, "for": {"_count": 9, "me": {"_count": 1}, "all": {"_count": 1}, "that": {"_count": 1}, "its": {"_count": 1}, "what": {"_count": 2}, "the": {"_count": 1}, "this": {"_count": 1}, "how": {"_count": 1}}, "most": {"_count": 1, "dearly": {"_count": 1}}, "fer": {"_count": 1, "it": {"_count": 1}}, "attention": {"_count": 8, "in": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 3}, "watch": {"_count": 1}, "": {"_count": 2}}, "you": {"_count": 3, "well": {"_count": 1}, "your": {"_count": 1}, "to": {"_count": 1}}, "raise": {"_count": 2, "": {"_count": 2}}, "Frank": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 1, "with": {"_count": 1}}, "five": {"_count": 1, "Galleons": {"_count": 1}}, "Winky": {"_count": 1, "did": {"_count": 1}}, "em": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "back": {"_count": 1, "Diggory": {"_count": 1}}, "Dobby": {"_count": 1, "sir": {"_count": 1}}, "them": {"_count": 1, "any": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "allegiance": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 6, "goblins": {"_count": 1}, "price": {"_count": 3}, "owl": {"_count": 1}, "consequences": {"_count": 1}}, "anyway": {"_count": 1, "we": {"_count": 1}}, "any": {"_count": 1, "attention": {"_count": 1}}, "to": {"_count": 1, "say": {"_count": 1}}, "close": {"_count": 1, "attention": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Malfoy": {"_count": 1}}, "rise": {"_count": 1, "Dumbledore": {"_count": 1}}, "in": {"_count": 1, "more": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}, "an": {"_count": 1, "arm": {"_count": 1}}, "his": {"_count": 1, "last": {"_count": 1}}, "tribute": {"_count": 1, "it": {"_count": 1}}, "their": {"_count": 2, "last": {"_count": 1}, "respects": {"_count": 1}}, "my": {"_count": 1, "respects": {"_count": 1}}}, "learn": {"_count": 59, "magic": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "fast": {"_count": 1, "enough": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "quick": {"_count": 1, "enough": {"_count": 1}}, "Im": {"_count": 1, "particularly": {"_count": 1}}, "until": {"_count": 1, "our": {"_count": 1}}, "the": {"_count": 5, "names": {"_count": 2}, "subtle": {"_count": 1}, "hard": {"_count": 2}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "that": {"_count": 1, "even": {"_count": 1}}, "by": {"_count": 1, "heart": {"_count": 1}}, "charms": {"_count": 1, "and": {"_count": 1}}, "much": {"_count": 1, "up": {"_count": 1}}, "course": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Uncle": {"_count": 1}}, "them": {"_count": 1, "not": {"_count": 1}}, "a": {"_count": 1, "Summoning": {"_count": 1}}, "how": {"_count": 4, "to": {"_count": 4}}, "your": {"_count": 1, "antidotes": {"_count": 1}}, "his": {"_count": 1, "habits": {"_count": 1}}, "any": {"_count": 1, "defense": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 2}}, "anything": {"_count": 1, "for": {"_count": 1}}, "things": {"_count": 1, "out": {"_count": 1}}, "some": {"_count": 2, "proper": {"_count": 1}, "defense": {"_count": 1}}, "from": {"_count": 5, "him": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "Snape": {"_count": 1}, "your": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "to": {"_count": 8, "fight": {"_count": 1}, "protect": {"_count": 1}, "live": {"_count": 2}, "shut": {"_count": 1}, "Apparate": {"_count": 1}, "keep": {"_count": 1}, "be": {"_count": 1}}, "joinedup": {"_count": 1, "writing": {"_count": 1}}, "Occlumency": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "spells": {"_count": 1, "and": {"_count": 1}}, "what": {"_count": 1, "happens": {"_count": 1}}, "more": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "due": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}}, "Dyeh": {"_count": 2, "think": {"_count": 1, "yer": {"_count": 1}}, "know": {"_count": 1, "every": {"_count": 1}}}, "didn": {"_count": 30, "keep": {"_count": 1, "their": {"_count": 1}}, "know": {"_count": 3, "better": {"_count": 1}, "hed": {"_count": 1}, "yeh": {"_count": 1}}, "want": {"_count": 4, "it": {"_count": 1}, "ter": {"_count": 3}}, "have": {"_count": 2, "any": {"_count": 1}, "ter": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "need": {"_count": 1, "teh": {"_count": 1}}, "seem": {"_count": 3, "very": {"_count": 1}, "happy": {"_count": 1}, "ter": {"_count": 1}}, "get": {"_count": 2, "it": {"_count": 1}, "up": {"_count": 1}}, "wan": {"_count": 3, "owls": {"_count": 1}, "no": {"_count": 1}, "ter": {"_count": 1}}, "dare": {"_count": 1, "sleep": {"_count": 1}}, "leave": {"_count": 1, "after": {"_count": 1}}, "object": {"_count": 1, "ter": {"_count": 1}}, "mean": {"_count": 1, "all": {"_count": 1}}, "they": {"_count": 1, "": {"_count": 1}}, "understand": {"_count": 1, "did": {"_count": 1}}, "go": {"_count": 1, "too": {"_count": 1}}, "eat": {"_count": 1, "me": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "fight": {"_count": 1, "yeh": {"_count": 1}}}, "Gringotts": {"_count": 86, "": {"_count": 19, ".": {"_count": 8}, "?": {"_count": 7}, "!": {"_count": 4}}, "is": {"_count": 3, "the": {"_count": 1}, "hundreds": {"_count": 1}, "no": {"_count": 1}}, "anyway": {"_count": 1, "Fer": {"_count": 1}}, "knows": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 4, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "goblin": {"_count": 3, "tried": {"_count": 1}, "": {"_count": 2}}, "carts": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "they": {"_count": 1}, "Ron": {"_count": 1}}, "the": {"_count": 4, "ceiling": {"_count": 1}, "moment": {"_count": 1}, "Wizarding": {"_count": 1}, "room": {"_count": 1}}, "on": {"_count": 1, "3": {"_count": 1}}, "goblins": {"_count": 1, "today": {"_count": 1}}, "spokesgoblin": {"_count": 1, "this": {"_count": 1}}, "breakin": {"_count": 1, "happened": {"_count": 1}}, "was": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 3, "Hogwarts": {"_count": 1}, "evaporate": {"_count": 1}, "eemprove": {"_count": 1}}, "I": {"_count": 1, "sppose": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 2}, "had": {"_count": 1}}, "in": {"_count": 1, "London": {"_count": 1}}, "bank": {"_count": 2, "account": {"_count": 1}, "": {"_count": 1}}, "Bank": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "steps": {"_count": 1, "": {"_count": 1}}, "Wizarding": {"_count": 3, "Bank": {"_count": 3}}, "vault": {"_count": 6, "for": {"_count": 1}, "": {"_count": 4}, "with": {"_count": 1}}, "and": {"_count": 2, "that": {"_count": 1}, "you": {"_count": 1}}, "Charm": {"_count": 1, "Breakers": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "my": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "falls": {"_count": 1, "under": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "will": {"_count": 1, "consider": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "are": {"_count": 1, "perhaps": {"_count": 1}}, "than": {"_count": 1, "to": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "stood": {"_count": 1, "towering": {"_count": 1}}, "had": {"_count": 2, "seemed": {"_count": 1}, "ways": {"_count": 1}}, "were": {"_count": 1, "aware": {"_count": 1}}, "they": {"_count": 2, "took": {"_count": 1}, "have": {"_count": 1}}, "notify": {"_count": 1, "Bellatrix": {"_count": 1}}}, "Have": {"_count": 108, "a": {"_count": 14, "sausage": {"_count": 1}, "good": {"_count": 3}, "Chocolate": {"_count": 1}, "seat": {"_count": 1}, "biscuit": {"_count": 2}, "butterbeer": {"_count": 1}, "whiskey": {"_count": 1}, "little": {"_count": 1}, "present": {"_count": 1}, "look": {"_count": 1}, "guess": {"_count": 1}}, "you": {"_count": 78, "got": {"_count": 11}, "found": {"_count": 1}, "no": {"_count": 1}, "been": {"_count": 8}, "any": {"_count": 5}, "read": {"_count": 1}, "did": {"_count": 1}, "ever": {"_count": 10}, "two": {"_count": 2}, "still": {"_count": 2}, "seen": {"_count": 10}, "thought": {"_count": 2}, "caught": {"_count": 1}, "had": {"_count": 3}, "": {"_count": 2}, "spotted": {"_count": 1}, "ridden": {"_count": 1}, "really": {"_count": 1}, "heard": {"_count": 2}, "offered": {"_count": 1}, "er": {"_count": 1}, "always": {"_count": 2}, "never": {"_count": 1}, "not": {"_count": 2}, "discussed": {"_count": 1}, "spoken": {"_count": 1}, "have": {"_count": 1}, "forgotten": {"_count": 1}, "told": {"_count": 1}, "grown": {"_count": 1}}, "some": {"_count": 1, "bacon": {"_count": 1}}, "we": {"_count": 3, "not": {"_count": 1}, "ever": {"_count": 1}, "come": {"_count": 1}}, "one": {"_count": 1, "yourself": {"_count": 1}}, "either": {"_count": 3, "of": {"_count": 3}}, "it": {"_count": 1, "your": {"_count": 1}}, "they": {"_count": 2, "sentenced": {"_count": 1}, "been": {"_count": 1}}, "the": {"_count": 1, "Houses": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 1, "biscuit": {"_count": 1}}, "Told": {"_count": 1, "Us": {"_count": 1}}, "I": {"_count": 1, "missed": {"_count": 1}}}, "wouldn": {"_count": 17, "say": {"_count": 2, "no": {"_count": 2}}, "try": {"_count": 1, "an": {"_count": 1}}, "tell": {"_count": 1, "yeh": {"_count": 1}}, "take": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "he": {"_count": 1, "need": {"_count": 1}}, "fit": {"_count": 1, "in": {"_count": 1}}, "be": {"_count": 3, "happy": {"_count": 1}, "so": {"_count": 1}, "tellin": {"_count": 1}}, "believe": {"_count": 1, "the": {"_count": 1}}, "give": {"_count": 1, "yeh": {"_count": 1}}, "hurt": {"_count": 1, "said": {"_count": 1}}, "dare": {"_count": 1, "make": {"_count": 1}}, "Hagrid": {"_count": 1, "someones": {"_count": 1}}, "they": {"_count": 1, "": {"_count": 1}}}, "teh": {"_count": 2, "a": {"_count": 1, "bit": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "banks": {"_count": 6, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "underground": {"_count": 1, "tunnels": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "Run": {"_count": 10, "by": {"_count": 1, "goblins": {"_count": 1}}, "for": {"_count": 3, "it": {"_count": 3}}, "Ill": {"_count": 1, "hold": {"_count": 1}}, "Black": {"_count": 1, "whispered": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "along": {"_count": 1, "now": {"_count": 1}}, "Draco": {"_count": 1, "and": {"_count": 1}}}, "goblins": {"_count": 82, "": {"_count": 9, ".": {"_count": 8}, "!": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "bowed": {"_count": 1, "them": {"_count": 1}}, "were": {"_count": 5, "sitting": {"_count": 1}, "showing": {"_count": 1}, "still": {"_count": 1}, "for": {"_count": 1}, "knocked": {"_count": 1}}, "book": {"_count": 1, "of": {"_count": 1}}, "today": {"_count": 1, "insisted": {"_count": 1}}, "who": {"_count": 3, "were": {"_count": 2}, "usually": {"_count": 1}}, "all": {"_count": 3, "of": {"_count": 1}, "slid": {"_count": 1}, "around": {"_count": 1}}, "and": {"_count": 6, "Bagman": {"_count": 1}, "Bertha": {"_count": 1}, "centaurs": {"_count": 1}, "had": {"_count": 1}, "those": {"_count": 1}, "some": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 1, "look": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "now": {"_count": 1, "are": {"_count": 1}}, "in": {"_count": 1, "tow": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "play": {"_count": 1, "as": {"_count": 1}}, "never": {"_count": 1, "got": {"_count": 1}}, "hat": {"_count": 2, "and": {"_count": 2}}, "hes": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "Fudge": {"_count": 1, "has": {"_count": 1}}, "ears": {"_count": 1, "went": {"_count": 1}}, "have": {"_count": 2, "tightened": {"_count": 1}, "been": {"_count": 1}}, "together": {"_count": 1, "in": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "pointed": {"_count": 1, "ear": {"_count": 1}}, "face": {"_count": 1, "and": {"_count": 1}}, "sallow": {"_count": 1, "skin": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "can": {"_count": 1, "do": {"_count": 1}}, "wont": {"_count": 1, "share": {"_count": 1}}, "or": {"_count": 1, "any": {"_count": 1}}, "help": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 3, "Gringotts": {"_count": 3}}, "dont": {"_count": 1, "like": {"_count": 1}}, "I": {"_count": 3, "think": {"_count": 1}, "have": {"_count": 1}, "know": {"_count": 1}}, "said": {"_count": 1, "Bill": {"_count": 1}}, "once": {"_count": 1, "the": {"_count": 1}}, "long": {"_count": 1, "fingers": {"_count": 1}}, "stood": {"_count": 1, "before": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "had": {"_count": 1, "looked": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "brandishing": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 1, "wizards": {"_count": 1}}, "he": {"_count": 1, "sprinted": {"_count": 1}}, "aside": {"_count": 1, "like": {"_count": 1}}, "hurled": {"_count": 1, "daggers": {"_count": 1}}, "corpse": {"_count": 1, "as": {"_count": 1}}}, "Goblins": {"_count": 11, "": {"_count": 2, "?": {"_count": 2}}, "dont": {"_count": 1, "need": {"_count": 1}}, "had": {"_count": 1, "tried": {"_count": 1}}, "Hermione": {"_count": 1, "mouthed": {"_count": 1}}, "silver": {"_count": 1, "repels": {"_count": 1}}, "and": {"_count": 2, "elves": {"_count": 1}, "wizards": {"_count": 1}}, "know": {"_count": 1, "how": {"_count": 1}}, "have": {"_count": 1, "got": {"_count": 1}}, "arent": {"_count": 1, "exactly": {"_count": 1}}}, "yehd": {"_count": 9, "be": {"_count": 4, "mad": {"_count": 3}, "laughed": {"_count": 1}}, "cursed": {"_count": 1, "his": {"_count": 1}}, "say": {"_count": 1, "yes": {"_count": 1}}, "stop": {"_count": 1, "sayin": {"_count": 1}}, "find": {"_count": 1, "it": {"_count": 1}}, "care": {"_count": 1, "would": {"_count": 1}}}, "rob": {"_count": 7, "it": {"_count": 3, "Ill": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "Gringotts": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "a": {"_count": 1, "high": {"_count": 1}}, "me": {"_count": 1, "of": {"_count": 1}}}, "mess": {"_count": 33, "with": {"_count": 4, "goblins": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 1}, "Peeves": {"_count": 1}}, "around": {"_count": 2, "a": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 1}, ".": {"_count": 5}, "?": {"_count": 1}}, "up": {"_count": 1, "your": {"_count": 1}}, "things": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 2, "noise": {"_count": 1}, "with": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "within": {"_count": 2, "": {"_count": 2}}, "was": {"_count": 1, "unbelievable": {"_count": 1}}, "is": {"_count": 1, "utterly": {"_count": 1}}, "of": {"_count": 4, "owls": {"_count": 1}, "newspapers": {"_count": 1}, "small": {"_count": 1}, "broken": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "or": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "Stun": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "hes": {"_count": 1, "left": {"_count": 1}}, "said": {"_count": 1, "Lee": {"_count": 1}}}, "safest": {"_count": 9, "place": {"_count": 6, "in": {"_count": 3}, "to": {"_count": 1}, "on": {"_count": 1}, "for": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "cover": {"_count": 1, "for": {"_count": 1}}, "because": {"_count": 1, "Snapes": {"_count": 1}}}, "cept": {"_count": 1, "maybe": {"_count": 1, "Hogwarts": {"_count": 1}}}, "Fer": {"_count": 5, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "Halloween": {"_count": 1}, "las": {"_count": 1}}, "one": {"_count": 1, "thing": {"_count": 1}}, "medicinal": {"_count": 1, "purposes": {"_count": 1}}}, "proudly": {"_count": 25, "": {"_count": 13, ".": {"_count": 13}}, "making": {"_count": 1, "Hermione": {"_count": 1}}, "anywhere": {"_count": 1, "you": {"_count": 1}}, "so": {"_count": 1, "yehll": {"_count": 1}}, "from": {"_count": 1, "just": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "Hermione": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "Two": {"_count": 1, "": {"_count": 1}}, "ruffling": {"_count": 1, "Rons": {"_count": 1}}, "throwing": {"_count": 1, "out": {"_count": 1}}, "swaying": {"_count": 1, "where": {"_count": 1}}}, "Fetchin": {"_count": 1, "you": {"_count": 1, "gettin": {"_count": 1}}}, "followed": {"_count": 290, "Hagrid": {"_count": 4, "out": {"_count": 1}, "down": {"_count": 1}, "and": {"_count": 1}, "s": {"_count": 1}}, "Griphook": {"_count": 1, "toward": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "into": {"_count": 1, "their": {"_count": 1}}, "Professor": {"_count": 8, "McGonagall": {"_count": 6}, "Lupin": {"_count": 1}, "Trelawney": {"_count": 1}}, "Percy": {"_count": 1, "through": {"_count": 1}}, "Harry": {"_count": 13, "from": {"_count": 1}, "tiptoeing": {"_count": 1}, "into": {"_count": 1}, "through": {"_count": 1}, "inside": {"_count": 1}, "and": {"_count": 3}, "back": {"_count": 2}, "out": {"_count": 2}, "kept": {"_count": 1}}, "this": {"_count": 2, "little": {"_count": 1}, "pronouncement": {"_count": 1}}, "Ron": {"_count": 4, "through": {"_count": 1}, "up": {"_count": 2}, "upstairs": {"_count": 1}}, "by": {"_count": 39, "Snape": {"_count": 1}, "a": {"_count": 8}, "Madam": {"_count": 1}, "her": {"_count": 1}, "Mr": {"_count": 1}, "the": {"_count": 4}, "Professor": {"_count": 1}, "nearfatal": {"_count": 1}, "Hagrid": {"_count": 2}, "four": {"_count": 1}, "arms": {"_count": 1}, "news": {"_count": 1}, "neighbors": {"_count": 1}, "an": {"_count": 1}, "Harry": {"_count": 1}, "Mrs": {"_count": 2}, "Sirius": {"_count": 1}, "one": {"_count": 1}, "Parvati": {"_count": 1}, "Alicia": {"_count": 1}, "Crabbe": {"_count": 1}, "Luna": {"_count": 1}, "Neville": {"_count": 2}, "Fred": {"_count": 2}, "Death": {"_count": 1}}, "Fred": {"_count": 4, "and": {"_count": 2}, "inside": {"_count": 1}, "toward": {"_count": 1}}, "Quirrell": {"_count": 1, "around": {"_count": 1}}, "the": {"_count": 16, "turkey": {"_count": 1}, "footsteps": {"_count": 1}, "steady": {"_count": 1}, "darting": {"_count": 1}, "spiders": {"_count": 1}, "rest": {"_count": 2}, "crowd": {"_count": 1}, "dark": {"_count": 1}, "case": {"_count": 1}, "date": {"_count": 1}, "witch": {"_count": 1}, "Ravenclaws": {"_count": 1}, "latter": {"_count": 1}, "other": {"_count": 1}, "flowers": {"_count": 1}}, "": {"_count": 31, ".": {"_count": 28}, "?": {"_count": 2}, "!": {"_count": 1}}, "he": {"_count": 2, "did": {"_count": 1}, "heard": {"_count": 1}}, "him": {"_count": 30, "out": {"_count": 4}, "": {"_count": 8}, "behind": {"_count": 1}, "downstairs": {"_count": 1}, "to": {"_count": 1}, "wherever": {"_count": 1}, "wondering": {"_count": 1}, "he": {"_count": 1}, "into": {"_count": 1}, "looking": {"_count": 1}, "all": {"_count": 2}, "silently": {"_count": 1}, "watching": {"_count": 1}, "past": {"_count": 1}, "as": {"_count": 1}, "onto": {"_count": 1}, "now": {"_count": 1}, "across": {"_count": 1}, "back": {"_count": 1}}, "right": {"_count": 1, "away": {"_count": 1}}, "immediately": {"_count": 3, "by": {"_count": 3}}, "her": {"_count": 21, "": {"_count": 6}, "but": {"_count": 1}, "looking": {"_count": 1}, "around": {"_count": 1}, "down": {"_count": 1}, "watching": {"_count": 1}, "mother": {"_count": 1}, "inside": {"_count": 1}, "up": {"_count": 2}, "to": {"_count": 1}, "back": {"_count": 1}, "cloak": {"_count": 1}, "staggered": {"_count": 1}, "elder": {"_count": 1}, "out": {"_count": 1}}, "could": {"_count": 1, "only": {"_count": 1}}, "them": {"_count": 8, "all": {"_count": 1}, "upstairs": {"_count": 1}, "to": {"_count": 2}, "actually": {"_count": 1}, "It": {"_count": 1}, "": {"_count": 1}, "knowing": {"_count": 1}}, "Snape": {"_count": 3, "up": {"_count": 1}, "and": {"_count": 2}}, "Lockhart": {"_count": 2, "straightened": {"_count": 1}, "and": {"_count": 1}}, "somewhat": {"_count": 1, "reluctantly": {"_count": 1}}, "Filch": {"_count": 2, "back": {"_count": 2}}, "suit": {"_count": 4, "": {"_count": 4}}, "still": {"_count": 3, "stiffnecked": {"_count": 1}, "looking": {"_count": 1}, "poring": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "it": {"_count": 4, "stealthily": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}, "behind": {"_count": 1}}, "Uncle": {"_count": 2, "Vernon": {"_count": 2}}, "Tom": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 5, "a": {"_count": 3}, "once": {"_count": 2}}, "Hermione": {"_count": 3, "unsteadily": {"_count": 1}, "down": {"_count": 1}, "and": {"_count": 1}}, "Lupin": {"_count": 2, "into": {"_count": 1}, "down": {"_count": 1}}, "a": {"_count": 2, "list": {"_count": 1}, "couple": {"_count": 1}}, "closely": {"_count": 4, "by": {"_count": 4}}, "and": {"_count": 2, "then": {"_count": 1}, "not": {"_count": 1}}, "their": {"_count": 1, "descent": {"_count": 1}}, "almost": {"_count": 1, "immediately": {"_count": 1}}, "these": {"_count": 2, "words": {"_count": 2}}, "Cedric": {"_count": 1, "at": {"_count": 1}}, "Moody": {"_count": 1, "into": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "Sirius": {"_count": 1, "higher": {"_count": 1}}, "Hagrids": {"_count": 1, "advice": {"_count": 1}}, "all": {"_count": 1, "still": {"_count": 1}}, "Tonks": {"_count": 2, "into": {"_count": 1}, "vanishing": {"_count": 1}}, "carrying": {"_count": 1, "Harrys": {"_count": 1}}, "swiftly": {"_count": 1, "by": {"_count": 1}}, "except": {"_count": 1, "him": {"_count": 1}}, "his": {"_count": 6, "godfather": {"_count": 1}, "lead": {"_count": 2}, "gaze": {"_count": 1}, "younger": {"_count": 1}, "words": {"_count": 1}}, "Mr": {"_count": 3, "Weasley": {"_count": 2}, "and": {"_count": 1}}, "Kingsley": {"_count": 1, "along": {"_count": 1}}, "Mundungus": {"_count": 1, "back": {"_count": 1}}, "hers": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "Ministryapproved": {"_count": 1}}, "Neville": {"_count": 1, "was": {"_count": 1}}, "Angelina": {"_count": 1, "out": {"_count": 1}}, "Cho": {"_count": 1, "out": {"_count": 1}}, "Parvati": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "visit": {"_count": 1}}, "three": {"_count": 1, "years": {"_count": 1}}, "again": {"_count": 1, "keeping": {"_count": 1}}, "without": {"_count": 1, "invitation": {"_count": 1}}, "Dumbledore": {"_count": 3, "who": {"_count": 2}, "through": {"_count": 1}}, "gazing": {"_count": 1, "around": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "Zabini": {"_count": 1, "back": {"_count": 1}}, "different": {"_count": 1, "instructions": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "close": {"_count": 1, "behind": {"_count": 1}}, "Ginny": {"_count": 1, "into": {"_count": 1}}, "or": {"_count": 1, "observed": {"_count": 1}}, "us": {"_count": 1, "here": {"_count": 1}}, "gliding": {"_count": 1, "toward": {"_count": 1}}, "Bill": {"_count": 2, "up": {"_count": 1}, "back": {"_count": 1}}, "then": {"_count": 1, "Neville": {"_count": 1}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}, "every": {"_count": 1, "word": {"_count": 1}}}, "clear": {"_count": 205, "now": {"_count": 1, "and": {"_count": 1}}, "breezy": {"_count": 1, "day": {"_count": 1}}, "field": {"_count": 3, "ahead": {"_count": 1}, "all": {"_count": 1}, "": {"_count": 1}}, "forgetmenot": {"_count": 1, "blue": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 20}, "?": {"_count": 2}}, "to": {"_count": 11, "me": {"_count": 4}, "Harry": {"_count": 4}, "you": {"_count": 1}, "let": {"_count": 1}, "those": {"_count": 1}}, "the": {"_count": 3, "table": {"_count": 2}, "Inner": {"_count": 1}}, "off": {"_count": 3, "now": {"_count": 1}, "or": {"_count": 1}, "for": {"_count": 1}}, "his": {"_count": 4, "throat": {"_count": 1}, "vision": {"_count": 1}, "head": {"_count": 1}, "mind": {"_count": 1}}, "voice": {"_count": 8, "": {"_count": 4}, "will": {"_count": 1}, "from": {"_count": 1}, "see": {"_count": 1}, "his": {"_count": 1}}, "from": {"_count": 4, "a": {"_count": 2}, "the": {"_count": 1}, "your": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 7, "set": {"_count": 1}, "to": {"_count": 1}, "then": {"_count": 1}, "free": {"_count": 1}, "saw": {"_count": 2}, "cold": {"_count": 1}}, "at": {"_count": 2, "breakfast": {"_count": 1}, "once": {"_count": 1}}, "starry": {"_count": 1, "night": {"_count": 1}}, "that": {"_count": 19, "you": {"_count": 1}, "the": {"_count": 2}, "Ron": {"_count": 1}, "up": {"_count": 1}, "he": {"_count": 2}, "Dumbledores": {"_count": 1}, "anyone": {"_count": 1}, "she": {"_count": 3}, "as": {"_count": 2}, "Mrs": {"_count": 1}, "Mr": {"_count": 1}, "Aragog": {"_count": 1}, "Dudley": {"_count": 1}, "Hermione": {"_count": 1}}, "pale": {"_count": 2, "gray": {"_count": 1}, "blue": {"_count": 1}}, "away": {"_count": 1, "while": {"_count": 1}}, "shot": {"_count": 5, "They": {"_count": 1}, "of": {"_count": 1}, "at": {"_count": 2}, "but": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "view": {"_count": 10, "of": {"_count": 8}, "into": {"_count": 1}, "then": {"_count": 1}}, "cool": {"_count": 1, "day": {"_count": 1}}, "he": {"_count": 2, "looked": {"_count": 1}, "said": {"_count": 1}}, "purpletinged": {"_count": 1, "grey": {"_count": 1}}, "up": {"_count": 3, "one": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}}, "what": {"_count": 1, "these": {"_count": 1}}, "out": {"_count": 4, "his": {"_count": 1}, "their": {"_count": 1}, "": {"_count": 1}, "these": {"_count": 1}}, "deep": {"_count": 1, "blue": {"_count": 1}}, "of": {"_count": 6, "its": {"_count": 2}, "food": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}}, "space": {"_count": 1, "in": {"_count": 1}}, "evening": {"_count": 1, "dusk": {"_count": 1}}, "air": {"_count": 1, "was": {"_count": 1}}, "potion": {"_count": 1, "": {"_count": 1}}, "never": {"_count": 1, "since": {"_count": 1}}, "blue": {"_count": 7, "sky": {"_count": 3}, "now": {"_count": 1}, "gaze": {"_count": 1}, "eyes": {"_count": 1}, "of": {"_count": 1}}, "liquid": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 6, "it": {"_count": 1}, "they": {"_count": 1}, "though": {"_count": 1}, "water": {"_count": 1}, "anything": {"_count": 1}, "the": {"_count": 1}}, "who": {"_count": 1, "he": {"_count": 1}}, "undertone": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 3, "theres": {"_count": 1}, "said": {"_count": 1}, "werent": {"_count": 1}}, "then": {"_count": 1, "each": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "drawl": {"_count": 1, "from": {"_count": 1}}, "exhilarating": {"_count": 1, "blue": {"_count": 1}}, "it": {"_count": 5, "up": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}, "to": {"_count": 1}}, "fine": {"_count": 1, "day": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "turquoise": {"_count": 1, "shade": {"_count": 1}}, "carrying": {"_count": 1, "voice": {"_count": 1}}, "this": {"_count": 1, "up": {"_count": 1}}, "after": {"_count": 1, "ten": {"_count": 1}}, "they": {"_count": 1, "walked": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "Harrys": {"_count": 1}}, "before": {"_count": 1, "sending": {"_count": 1}}, "a": {"_count": 1, "path": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "misty": {"_count": 1, "opalescent": {"_count": 1}}, "just": {"_count": 1, "how": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "sunlight": {"_count": 1, "": {"_count": 1}}, "spells": {"_count": 1, "when": {"_count": 1}}, "winner": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 1, "inherited": {"_count": 1}}, "inch": {"_count": 1, "of": {"_count": 1}}, "calculating": {"_count": 1, "look": {"_count": 1}}, "five": {"_count": 1, "feet": {"_count": 1}}, "memory": {"_count": 1, "of": {"_count": 1}}, "instruction": {"_count": 1, "": {"_count": 1}}, "skies": {"_count": 1, "they": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "water": {"_count": 2, "Harry": {"_count": 1}, "gleamed": {"_count": 1}}, "green": {"_count": 1, "sunlit": {"_count": 1}}, "bright": {"_count": 1, "gold": {"_count": 1}}, "provocation": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "head": {"_count": 1}}, "therefore": {"_count": 1, "that": {"_count": 1}}, "instructions": {"_count": 1, "Find": {"_count": 1}}, "she": {"_count": 1, "looked": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "dark": {"_count": 1, "night": {"_count": 1}}, "domed": {"_count": 1, "glass": {"_count": 1}}}, "gleamed": {"_count": 19, "in": {"_count": 4, "the": {"_count": 4}}, "under": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "brightly": {"_count": 2}}, "and": {"_count": 1, "between": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "fat": {"_count": 1, "and": {"_count": 1}}, "white": {"_count": 1, "and": {"_count": 1}}, "momentarily": {"_count": 1, "under": {"_count": 1}}, "with": {"_count": 1, "sweat": {"_count": 1}}, "within": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "goblets": {"_count": 1}}, "scarlet": {"_count": 1, "": {"_count": 1}}}, "hired": {"_count": 6, "was": {"_count": 1, "still": {"_count": 1}}, "to": {"_count": 1, "guard": {"_count": 1}}, "you": {"_count": 1, "when": {"_count": 1}}, "Alastor": {"_count": 1, "MadEye": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "savagery": {"_count": 1, "": {"_count": 1}}}, "Flew": {"_count": 2, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "spposed": {"_count": 3, "ter": {"_count": 3, "use": {"_count": 1}, "know": {"_count": 1}, "talk": {"_count": 1}}}, "settled": {"_count": 68, "down": {"_count": 13, "in": {"_count": 2}, "at": {"_count": 2}, "again": {"_count": 1}, "to": {"_count": 2}, "under": {"_count": 1}, "": {"_count": 1}, "looking": {"_count": 1}, "for": {"_count": 1}, "without": {"_count": 1}, "as": {"_count": 1}}, "back": {"_count": 2, "in": {"_count": 2}}, "himself": {"_count": 12, "in": {"_count": 3}, "on": {"_count": 3}, "there": {"_count": 1}, "down": {"_count": 2}, "between": {"_count": 1}, "more": {"_count": 1}, "astride": {"_count": 1}}, "on": {"_count": 4, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "chairs": {"_count": 1}}, "in": {"_count": 5, "an": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "Mum": {"_count": 1}}, "herself": {"_count": 6, "behind": {"_count": 1}, "down": {"_count": 1}, "in": {"_count": 1}, "into": {"_count": 2}, "back": {"_count": 1}}, "for": {"_count": 1, "looking": {"_count": 1}}, "themselves": {"_count": 3, "crosslegged": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}}, "the": {"_count": 3, "matter": {"_count": 3}}, "inside": {"_count": 1, "his": {"_count": 1}}, "myself": {"_count": 1, "before": {"_count": 1}}, "around": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "somewhere": {"_count": 1, "around": {"_count": 1}}, "him": {"_count": 2, "into": {"_count": 1}, "on": {"_count": 1}}, "then": {"_count": 2, "said": {"_count": 2}}, "that": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "back": {"_count": 1}}, "there": {"_count": 1, "purring": {"_count": 1}}, "into": {"_count": 1, "half": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "fully": {"_count": 1, "constructed": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "to": {"_count": 1, "work": {"_count": 1}}, "gradually": {"_count": 1, "over": {"_count": 1}}}, "Seems": {"_count": 3, "a": {"_count": 1, "shame": {"_count": 1}}, "youve": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "houseelves": {"_count": 1}}}, "shame": {"_count": 29, "ter": {"_count": 1, "row": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 1}, ".": {"_count": 5}, "!": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "you": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 5, "being": {"_count": 1}, "my": {"_count": 1}, "it": {"_count": 1}, "admitting": {"_count": 1}, "what": {"_count": 1}}, "that": {"_count": 2, "the": {"_count": 2}}, "on": {"_count": 2, "the": {"_count": 2}}, "it": {"_count": 1, "couldnt": {"_count": 1}}, "to": {"_count": 1, "deprive": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "what": {"_count": 1}}, "the": {"_count": 1, "shame": {"_count": 1}}, "spread": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 1, "continued": {"_count": 1}}, "Gellert": {"_count": 1, "could": {"_count": 1}}, "or": {"_count": 1, "fear": {"_count": 1}}, "welled": {"_count": 1, "up": {"_count": 1}}}, "row": {"_count": 95, "though": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 16, "!": {"_count": 1}, ".": {"_count": 15}}, "behind": {"_count": 4, "him": {"_count": 1}, "them": {"_count": 1}, "for": {"_count": 1}, "Fred": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 2}, "the": {"_count": 1}}, "Snape": {"_count": 1, "would": {"_count": 1}}, "of": {"_count": 14, "books": {"_count": 3}, "deep": {"_count": 1}, "chipped": {"_count": 1}, "seats": {"_count": 2}, "shrunken": {"_count": 1}, "houseelf": {"_count": 1}, "desks": {"_count": 1}, "quills": {"_count": 1}, "the": {"_count": 1}, "snowy": {"_count": 1}, "houses": {"_count": 1}}, "If": {"_count": 1, "Filch": {"_count": 1}}, "as": {"_count": 2, "I": {"_count": 1}, "Professor": {"_count": 1}}, "seat": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 5, "broken": {"_count": 1}, "anyone": {"_count": 1}, "Malfoy": {"_count": 1}, "Rufus": {"_count": 1}, "Professor": {"_count": 1}}, "wearing": {"_count": 1, "green": {"_count": 1}}, "Ginny": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 3, "three": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "until": {"_count": 1, "Harry": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "would": {"_count": 1, "achieve": {"_count": 1}}, "said": {"_count": 3, "Fred": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "and": {"_count": 4, "into": {"_count": 1}, "a": {"_count": 1}, "emerged": {"_count": 1}, "keen": {"_count": 1}}, "sat": {"_count": 1, "Cornelius": {"_count": 1}}, "however": {"_count": 1, "raised": {"_count": 1}}, "leaned": {"_count": 1, "close": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 2}}, "who": {"_count": 1, "was": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "number": {"_count": 1, "ninety": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "ninetyseven": {"_count": 4, "": {"_count": 1}, "whispered": {"_count": 1}, "but": {"_count": 1}, "Harry": {"_count": 1}}, "eightyfour": {"_count": 1, "": {"_count": 1}}, "gazing": {"_count": 1, "down": {"_count": 1}}, "well": {"_count": 1, "send": {"_count": 1}}, "about": {"_count": 3, "": {"_count": 1}, "Hermione": {"_count": 1}, "whether": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "on": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "thats": {"_count": 1, "where": {"_count": 1}}, "shrieked": {"_count": 1, "Pink": {"_count": 1}}, "Harry": {"_count": 1, "ducked": {"_count": 1}}, "upon": {"_count": 1, "row": {"_count": 1}}, "the": {"_count": 1, "recitation": {"_count": 1}}}, "giving": {"_count": 164, "Harry": {"_count": 17, "another": {"_count": 1}, "the": {"_count": 3}, "time": {"_count": 1}, "a": {"_count": 5}, "he": {"_count": 1}, "some": {"_count": 1}, "an": {"_count": 1}, "yet": {"_count": 1}, "Occlumency": {"_count": 1}, "": {"_count": 1}, "any": {"_count": 1}}, "Hagrid": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 4, "a": {"_count": 1}, "to": {"_count": 1}, "homework": {"_count": 1}, "instructions": {"_count": 1}}, "him": {"_count": 22, "advice": {"_count": 1}, "one": {"_count": 1}, "different": {"_count": 1}, "the": {"_count": 4}, "tips": {"_count": 1}, "my": {"_count": 1}, "an": {"_count": 2}, "that": {"_count": 1}, "a": {"_count": 6}, "instructions": {"_count": 2}, "protection": {"_count": 1}, "": {"_count": 1}}, "me": {"_count": 8, "books": {"_count": 1}, "an": {"_count": 1}, "your": {"_count": 1}, "Occlumency": {"_count": 1}, "private": {"_count": 1}, "lessons": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 6, "whole": {"_count": 1}, "face": {"_count": 1}, "partner": {"_count": 1}, "zip": {"_count": 1}, "book": {"_count": 1}, "eyes": {"_count": 1}}, "the": {"_count": 14, "steering": {"_count": 1}, "best": {"_count": 1}, "Firebolt": {"_count": 1}, "jagged": {"_count": 1}, "whispering": {"_count": 1}, "whole": {"_count": 1}, "date": {"_count": 1}, "slightest": {"_count": 1}, "others": {"_count": 1}, "impression": {"_count": 1}, "problem": {"_count": 1}, "redandgoldclad": {"_count": 1}, "monumental": {"_count": 1}, "Carrows": {"_count": 1}}, "you": {"_count": 13, "that": {"_count": 1}, "a": {"_count": 3}, "back": {"_count": 1}, "something": {"_count": 1}, "two": {"_count": 1}, "lines": {"_count": 1}, "lessons": {"_count": 3}, "warnings": {"_count": 1}, "homework": {"_count": 1}}, "out": {"_count": 10, "signed": {"_count": 4}, "Mandrake": {"_count": 1}, "any": {"_count": 1}, "free": {"_count": 1}, "sweets": {"_count": 1}, "gold": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 5, "huge": {"_count": 1}, "bit": {"_count": 1}, "short": {"_count": 1}, "little": {"_count": 1}, "long": {"_count": 1}}, "each": {"_count": 2, "other": {"_count": 1}, "of": {"_count": 1}}, "Riddle": {"_count": 1, "exactly": {"_count": 1}}, "chocolate": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 6, "a": {"_count": 5}, "burning": {"_count": 1}}, "us": {"_count": 3, "books": {"_count": 1}, "a": {"_count": 1}, "anything": {"_count": 1}}, "it": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "students": {"_count": 2, "stuff": {"_count": 1}, "any": {"_count": 1}}, "Ron": {"_count": 2, "a": {"_count": 2}}, "our": {"_count": 1, "names": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Sirius": {"_count": 1, "a": {"_count": 1}}, "Dobby": {"_count": 2, "thereby": {"_count": 1}, "his": {"_count": 1}}, "away": {"_count": 3, "anything": {"_count": 1}, "all": {"_count": 1}, "our": {"_count": 1}}, "birth": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 9, "horrible": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 3}, "": {"_count": 1}}, "anything": {"_count": 1, "away": {"_count": 1}}, "generously": {"_count": 1, "to": {"_count": 1}}, "warnings": {"_count": 1, "": {"_count": 1}}, "potential": {"_count": 1, "letterthieves": {"_count": 1}}, "itself": {"_count": 1, "an": {"_count": 1}}, "some": {"_count": 1, "kind": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "no": {"_count": 1, "sign": {"_count": 1}}, "autographs": {"_count": 1, "is": {"_count": 1}}, "up": {"_count": 1, "my": {"_count": 1}}, "this": {"_count": 1, "order": {"_count": 1}}, "himself": {"_count": 2, "over": {"_count": 1}, "the": {"_count": 1}}, "leg": {"_count": 1, "ups": {"_count": 1}}, "Slughorn": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "this": {"_count": 1}}, "Kreacher": {"_count": 1, "anything": {"_count": 1}}, "people": {"_count": 1, "hope": {"_count": 1}}, "any": {"_count": 1, "sign": {"_count": 1}}, "details": {"_count": 1, "only": {"_count": 1}}, "instructions": {"_count": 1, "on": {"_count": 1}}, "Voldemort": {"_count": 1, "crucial": {"_count": 1}}, "an": {"_count": 1, "attractive": {"_count": 1}}, "Fleur": {"_count": 1, "the": {"_count": 1}}, "constant": {"_count": 2, "and": {"_count": 2}}, "trouble": {"_count": 1, "": {"_count": 1}}}, "looks": {"_count": 199, "": {"_count": 25, ".": {"_count": 24}, "?": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "like": {"_count": 44, "": {"_count": 4}, "the": {"_count": 1}, "he": {"_count": 4}, "one": {"_count": 1}, "an": {"_count": 2}, "a": {"_count": 6}, "when": {"_count": 2}, "I": {"_count": 1}, "they": {"_count": 1}, "it": {"_count": 3}, "hes": {"_count": 2}, "him": {"_count": 1}, "our": {"_count": 1}, "its": {"_count": 3}, "his": {"_count": 2}, "shes": {"_count": 2}, "now": {"_count": 1}, "Im": {"_count": 1}, "Ollivanders": {"_count": 1}, "weve": {"_count": 1}, "Dumbledore": {"_count": 1}, "we": {"_count": 1}, "Dora": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 12, "their": {"_count": 9}, "everyones": {"_count": 1}, "the": {"_count": 2}}, "with": {"_count": 4, "raised": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}}, "a": {"_count": 6, "treat": {"_count": 1}, "tad": {"_count": 1}, "terrible": {"_count": 1}, "bit": {"_count": 1}, "few": {"_count": 1}, "hell": {"_count": 1}}, "before": {"_count": 2, "she": {"_count": 1}, "Sirius": {"_count": 1}}, "at": {"_count": 9, "her": {"_count": 1}, "Harry": {"_count": 3}, "it": {"_count": 1}, "us": {"_count": 1}, "this": {"_count": 1}, "anyone": {"_count": 1}, "one": {"_count": 1}}, "and": {"_count": 6, "sank": {"_count": 1}, "some": {"_count": 1}, "Lavender": {"_count": 1}, "shook": {"_count": 1}, "pointed": {"_count": 1}, "by": {"_count": 1}}, "of": {"_count": 20, "intense": {"_count": 1}, "triumph": {"_count": 1}, "it": {"_count": 6}, "deepest": {"_count": 1}, "things": {"_count": 2}, "outrage": {"_count": 1}, "utter": {"_count": 2}, "frank": {"_count": 1}, "horror": {"_count": 1}, "glee": {"_count": 1}, "disgust": {"_count": 1}, "several": {"_count": 1}, "them": {"_count": 1}}, "more": {"_count": 4, "like": {"_count": 4}}, "every": {"_count": 1, "time": {"_count": 1}}, "then": {"_count": 1, "threw": {"_count": 1}}, "but": {"_count": 5, "nobody": {"_count": 1}, "Harry": {"_count": 1}, "uncharacteristically": {"_count": 1}, "something": {"_count": 1}, "before": {"_count": 1}}, "after": {"_count": 1, "our": {"_count": 1}}, "were": {"_count": 1, "exchanged": {"_count": 1}}, "ill": {"_count": 1, "doesnt": {"_count": 1}}, "terrible": {"_count": 1, "said": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "me": {"_count": 2}}, "fine": {"_count": 2, "its": {"_count": 1}, "": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "really": {"_count": 1, "grumpy": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "full": {"_count": 2, "of": {"_count": 2}}, "responsible": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 8, "they": {"_count": 2}, "though": {"_count": 4}, "he": {"_count": 1}, "if": {"_count": 1}}, "out": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "exactly": {"_count": 2, "like": {"_count": 1}, "the": {"_count": 1}}, "wonderful": {"_count": 1, "Molly": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "press": {"_count": 1}}, "rather": {"_count": 1, "different": {"_count": 1}}, "strode": {"_count": 1, "toward": {"_count": 1}}, "over": {"_count": 1, "at": {"_count": 1}}, "young": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 2, "order": {"_count": 1}, "back": {"_count": 1}}, "strong": {"_count": 1, "enough": {"_count": 1}}, "they": {"_count": 1, "sometimes": {"_count": 1}}, "very": {"_count": 1, "spotty": {"_count": 1}}, "good": {"_count": 1, "I": {"_count": 1}}, "poisonous": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 1, "": {"_count": 1}}, "okay": {"_count": 1, "though": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "cool": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "uncomfortably": {"_count": 1}}, "weak": {"_count": 1, "": {"_count": 1}}, "familiar": {"_count": 1, "Thank": {"_count": 1}}, "that": {"_count": 1, "plainly": {"_count": 1}}, "absolutely": {"_count": 1, "wonderful": {"_count": 1}}, "from": {"_count": 1, "some": {"_count": 1}}, "amazing": {"_count": 1, "Mrs": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "unsafe": {"_count": 1, "it": {"_count": 1}}, "perhaps": {"_count": 1, "but": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "speed": {"_count": 58, "things": {"_count": 1, "up": {"_count": 1}}, "only": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "then": {"_count": 2, "she": {"_count": 1}, "with": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "WHAM": {"_count": 1, "": {"_count": 1}}, "heading": {"_count": 1, "straight": {"_count": 1}}, "racing": {"_count": 1, "Fred": {"_count": 1}}, "that": {"_count": 2, "took": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 7, "those": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 1}, "light": {"_count": 1}}, "them": {"_count": 1, "upward": {"_count": 1}}, "and": {"_count": 4, "zoomed": {"_count": 1}, "skill": {"_count": 1}, "agility": {"_count": 1}, "saw": {"_count": 1}}, "toward": {"_count": 1, "Malfoy": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "down": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "wind": {"_count": 1}}, "dial": {"_count": 3, "on": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 1}}, "youre": {"_count": 1, "going": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "tell": {"_count": 1}}, "Harry": {"_count": 1, "gathered": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "until": {"_count": 1, "BANG": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "GolpalottsThird": {"_count": 1, "Lawstatesthattheantidoteforablendedpoison": {"_count": 1}}, "nobody": {"_count": 1, "was": {"_count": 1}}, "They": {"_count": 1, "hurtled": {"_count": 1}}, "she": {"_count": 1, "trotted": {"_count": 1}}, "but": {"_count": 1, "so": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "mentionin": {"_count": 1, "it": {"_count": 1, "at": {"_count": 1}}}, "eager": {"_count": 29, "to": {"_count": 13, "see": {"_count": 1}, "fly": {"_count": 1}, "share": {"_count": 1}, "leave": {"_count": 1}, "assist": {"_count": 1}, "consult": {"_count": 1}, "get": {"_count": 1}, "reenter": {"_count": 1}, "give": {"_count": 1}, "show": {"_count": 1}, "find": {"_count": 1}, "be": {"_count": 1}, "come": {"_count": 1}}, "face": {"_count": 3, "staring": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "for": {"_count": 4, "it": {"_count": 1}, "the": {"_count": 1}, "some": {"_count": 1}, "more": {"_count": 1}}, "voice": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "crowd": {"_count": 1, "": {"_count": 1}}, "fer": {"_count": 1, "more": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "excited": {"_count": 1, "look": {"_count": 1}}, "licking": {"_count": 1, "of": {"_count": 1}}, "audience": {"_count": 1, "for": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "land": {"_count": 18, "": {"_count": 4, ".": {"_count": 4}}, "nearby": {"_count": 1, "whitefaced": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "him": {"_count": 2, "in": {"_count": 2}}, "you": {"_count": 1, "know": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "An": {"_count": 1, "arrow": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "upon": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}}, "Spells": {"_count": 41, "enchantments": {"_count": 1, "said": {"_count": 1}}, "Grade": {"_count": 12, "1": {"_count": 1}, "2": {"_count": 3}, "Three": {"_count": 1}, "4": {"_count": 4}, "5": {"_count": 2}, "Six": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "on": {"_count": 1, "the": {"_count": 1}}, "shot": {"_count": 2, "into": {"_count": 1}, "across": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 2}, "all": {"_count": 1}, "St": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "you": {"_count": 1}}, "horribly": {"_count": 1, "difficult": {"_count": 1}}, "for": {"_count": 1, "McGonagall": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "placed": {"_count": 1, "all": {"_count": 1}}, "flew": {"_count": 2, "toward": {"_count": 1}, "far": {"_count": 1}}, "and": {"_count": 2, "Protective": {"_count": 2}}, "but": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "Red": {"_count": 1, "and": {"_count": 1}}, "flying": {"_count": 1, "at": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}}, "enchantments": {"_count": 29, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}}, "probably": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 3, "it": {"_count": 1}, "every": {"_count": 1}, "them": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "we": {"_count": 1, "ourselves": {"_count": 1}}, "generally": {"_count": 1, "concluded": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "himself": {"_count": 1}}, "to": {"_count": 1, "break": {"_count": 1}}, "weve": {"_count": 1, "put": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "worked": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "Mugglerepelling": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "Harry": {"_count": 1, "ventured": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 1, "causes": {"_count": 1}}, "more": {"_count": 1, "sinister": {"_count": 1}}}, "dragons": {"_count": 86, "guardin": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "Gringotts": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 3}}, "or": {"_count": 1, "phoenixes": {"_count": 1}}, "blood": {"_count": 5, "and": {"_count": 2}, "or": {"_count": 1}, "will": {"_count": 1}, "when": {"_count": 1}}, "and": {"_count": 10, "Bills": {"_count": 1}, "Bill": {"_count": 1}, "Madame": {"_count": 1}, "about": {"_count": 1}, "both": {"_count": 1}, "so": {"_count": 1}, "merpeople": {"_count": 1}, "a": {"_count": 2}, "sphinxes": {"_count": 1}}, "Harry": {"_count": 1, "picked": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "Britain": {"_count": 1}, "Romania": {"_count": 1}}, "its": {"_count": 1, "dangerous": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "most": {"_count": 1}}, "said": {"_count": 2, "to": {"_count": 1}, "Sirius": {"_count": 1}}, "were": {"_count": 4, "rearing": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "around": {"_count": 1}}, "scaly": {"_count": 1, "hides": {"_count": 1}}, "enclosure": {"_count": 3, "": {"_count": 1}, "though": {"_count": 1}, "in": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "Sirius": {"_count": 1, "and": {"_count": 1}}, "coming": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 2, "their": {"_count": 1}, "you": {"_count": 1}}, "are": {"_count": 1, "strong": {"_count": 1}}, "hide": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "no": {"_count": 1}}, "firepower": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "from": {"_count": 1, "view": {"_count": 1}}, "front": {"_count": 1, "legs": {"_count": 1}}, "beforehand": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "are": {"_count": 1}}, "roar": {"_count": 1, "a": {"_count": 1}}, "eyes": {"_count": 1, "are": {"_count": 1}}, "waited": {"_count": 1, "for": {"_count": 1}}, "Cedric": {"_count": 1, "said": {"_count": 1}}, "egg": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "soared": {"_count": 1, "around": {"_count": 1}}, "roars": {"_count": 1, "he": {"_count": 1}}, "thrashing": {"_count": 1, "spiked": {"_count": 1}}, "fire": {"_count": 1, "kept": {"_count": 1}}, "brute": {"_count": 1, "strength": {"_count": 1}}, "wings": {"_count": 1, "beating": {"_count": 1}}, "could": {"_count": 1, "fly": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "wide": {"_count": 1, "yellow": {"_count": 1}}, "true": {"_count": 1, "too": {"_count": 1}}, "rose": {"_count": 1, "and": {"_count": 1}}}, "guardin": {"_count": 3, "the": {"_count": 1, "highsecurity": {"_count": 1}}, "thats": {"_count": 1, "between": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "highsecurity": {"_count": 2, "vaults": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}}, "vaults": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 2, "the": {"_count": 2}}, "by": {"_count": 1, "another": {"_count": 1}}, "were": {"_count": 1, "reached": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "are": {"_count": 1, "largest": {"_count": 1}}}, "miles": {"_count": 36, "under": {"_count": 3, "London": {"_count": 1}, "the": {"_count": 2}}, "beneath": {"_count": 1, "them": {"_count": 1}}, "behind": {"_count": 1, "everyone": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 1}, "here": {"_count": 1}, "where": {"_count": 2}}, "below": {"_count": 1, "where": {"_count": 1}}, "away": {"_count": 11, "now": {"_count": 1}, "the": {"_count": 2}, "said": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 4}, "from": {"_count": 1}, "already": {"_count": 1}}, "by": {"_count": 1, "Floo": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "ahead": {"_count": 1, "Go": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "south": {"_count": 1, "of": {"_count": 1}}, "walk": {"_count": 1, "over": {"_count": 1}}, "perhaps": {"_count": 1, "hundreds": {"_count": 1}}, "for": {"_count": 1, "even": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "miles": {"_count": 1}}, "or": {"_count": 1, "so": {"_count": 1}}, "farther": {"_count": 1, "north": {"_count": 1}}}, "Deep": {"_count": 3, "under": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "Powers": {"_count": 1}}, "down": {"_count": 1, "Fudge": {"_count": 1}}}, "Yehd": {"_count": 4, "die": {"_count": 1, "of": {"_count": 1}}, "be": {"_count": 1, "makin": {"_count": 1}}, "think": {"_count": 2, "she": {"_count": 1}, "seein": {"_count": 1}}}, "tryin": {"_count": 12, "ter": {"_count": 10, "get": {"_count": 2}, "curse": {"_count": 2}, "make": {"_count": 1}, "do": {"_count": 1}, "steal": {"_count": 1}, "teach": {"_count": 1}, "help": {"_count": 1}, "find": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "run": {"_count": 1}}}, "manage": {"_count": 40, "ter": {"_count": 1, "get": {"_count": 1}}, "without": {"_count": 1, "magic": {"_count": 1}}, "to": {"_count": 15, "bite": {"_count": 1}, "take": {"_count": 1}, "gloss": {"_count": 1}, "prevent": {"_count": 1}, "disappear": {"_count": 1}, "get": {"_count": 3}, "come": {"_count": 1}, "do": {"_count": 1}, "steal": {"_count": 1}, "kill": {"_count": 1}, "keep": {"_count": 1}, "retrieve": {"_count": 1}, "lock": {"_count": 1}}, "said": {"_count": 1, "Mrs": {"_count": 1}}, "it": {"_count": 6, "": {"_count": 3}, "Lupin": {"_count": 1}, "because": {"_count": 1}, "tip": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "that": {"_count": 4, "broom": {"_count": 1}, "without": {"_count": 1}, "journey": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 2, "spell": {"_count": 1}, "smile": {"_count": 1}}, "hie": {"_count": 1, "all": {"_count": 1}}, "Youd": {"_count": 1, "be": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "node": {"_count": 1}}, "two": {"_count": 1, "wandless": {"_count": 1}}, "but": {"_count": 1, "Luna": {"_count": 1}}, "him": {"_count": 1, "alone": {"_count": 1}}}, "Daily": {"_count": 131, "Prophet": {"_count": 124, "Harry": {"_count": 2}, "but": {"_count": 3}, "GRINGOTTS": {"_count": 1}, "Big": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 6}, "hasnt": {"_count": 2}, "too": {"_count": 3}, "because": {"_count": 1}, "Grand": {"_count": 1}, "We": {"_count": 1}, "Draw": {"_count": 1}, "Ive": {"_count": 2}, "": {"_count": 12}, "were": {"_count": 1}, "with": {"_count": 1}, "this": {"_count": 2}, "the": {"_count": 1}, "that": {"_count": 3}, "I": {"_count": 2}, "clutched": {"_count": 2}, "fell": {"_count": 1}, "article": {"_count": 5}, "knows": {"_count": 1}, "said": {"_count": 2}, "questions": {"_count": 1}, "about": {"_count": 1}, "reporter": {"_count": 4}, "how": {"_count": 1}, "She": {"_count": 2}, "has": {"_count": 2}, "Im": {"_count": 1}, "Mr": {"_count": 1}, "in": {"_count": 2}, "as": {"_count": 2}, "can": {"_count": 1}, "however": {"_count": 1}, "seriously": {"_count": 1}, "not": {"_count": 1}, "last": {"_count": 2}, "anymore": {"_count": 1}, "A": {"_count": 1}, "again": {"_count": 2}, "having": {"_count": 1}, "had": {"_count": 3}, "like": {"_count": 1}, "writes": {"_count": 1}, "they": {"_count": 1}, "thats": {"_count": 1}, "was": {"_count": 2}, "tomorrow": {"_count": 2}, "carefully": {"_count": 1}, "Yes": {"_count": 1}, "would": {"_count": 1}, "kept": {"_count": 1}, "by": {"_count": 1}, "shook": {"_count": 1}, "arrived": {"_count": 1}, "exists": {"_count": 1}, "Nearly": {"_count": 1}, "at": {"_count": 1}, "Antonin": {"_count": 1}, "hes": {"_count": 1}, "over": {"_count": 1}, "you": {"_count": 1}, "The": {"_count": 1}, "including": {"_count": 1}, "which": {"_count": 2}, "Three": {"_count": 1}, "Wizards": {"_count": 1}, "still": {"_count": 1}, "Here": {"_count": 1}, "Look": {"_count": 1}, "Lupin": {"_count": 1}, "out": {"_count": 1}, "dated": {"_count": 1}, "dont": {"_count": 1}}, "Prophets": {"_count": 6, "going": {"_count": 1}, "from": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "saying": {"_count": 1}, "version": {"_count": 1}}, "Mail": {"_count": 1, "and": {"_count": 1}}}, "Prophet": {"_count": 163, "Harry": {"_count": 2, "had": {"_count": 1}, "you": {"_count": 1}}, "but": {"_count": 4, "I": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "GRINGOTTS": {"_count": 1, "BREAKIN": {"_count": 1}}, "Big": {"_count": 1, "deal": {"_count": 1}}, "if": {"_count": 1, "hed": {"_count": 1}}, "You": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 8, "it": {"_count": 1}, "was": {"_count": 1}, "speaking": {"_count": 1}, "point": {"_count": 1}, "said": {"_count": 1}, "one": {"_count": 1}, "eating": {"_count": 1}, "unfolded": {"_count": 1}}, "hasnt": {"_count": 2, "reported": {"_count": 1}, "said": {"_count": 1}}, "too": {"_count": 3, "he": {"_count": 1}, "": {"_count": 2}}, "because": {"_count": 1, "the": {"_count": 1}}, "Grand": {"_count": 1, "Prize": {"_count": 1}}, "We": {"_count": 1, "will": {"_count": 1}}, "Draw": {"_count": 1, "": {"_count": 1}}, "Ive": {"_count": 2, "been": {"_count": 1}, "never": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 11}, "?": {"_count": 4}}, "were": {"_count": 1, "no": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 2, "morning": {"_count": 2}}, "the": {"_count": 1, "previous": {"_count": 1}}, "that": {"_count": 4, "weve": {"_count": 1}, "she": {"_count": 1}, "Fudge": {"_count": 1}, "youd": {"_count": 1}}, "exactly": {"_count": 1, "how": {"_count": 1}}, "I": {"_count": 2, "expect": {"_count": 1}, "think": {"_count": 1}}, "clutched": {"_count": 2, "in": {"_count": 2}}, "fell": {"_count": 1, "out": {"_count": 1}}, "article": {"_count": 5, "": {"_count": 2}, "about": {"_count": 1}, "shook": {"_count": 1}, "under": {"_count": 1}}, "tomorrow": {"_count": 4, "": {"_count": 3}, "you": {"_count": 1}}, "knows": {"_count": 1, "how": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "questions": {"_count": 1, "about": {"_count": 1}}, "about": {"_count": 1, "you": {"_count": 1}}, "reporter": {"_count": 4, "": {"_count": 1}, "Rita": {"_count": 1}, "last": {"_count": 1}, "witnessed": {"_count": 1}}, "how": {"_count": 1, "he": {"_count": 1}}, "does": {"_count": 1, "a": {"_count": 1}}, "She": {"_count": 2, "didn": {"_count": 1}, "cant": {"_count": 1}}, "has": {"_count": 3, "now": {"_count": 1}, "treated": {"_count": 1}, "been": {"_count": 1}}, "Im": {"_count": 1, "getting": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "in": {"_count": 2, "its": {"_count": 2}}, "as": {"_count": 2, "usual": {"_count": 1}, "they": {"_count": 1}}, "can": {"_count": 1, "exclusively": {"_count": 1}}, "however": {"_count": 1, "has": {"_count": 1}}, "seriously": {"_count": 1, "said": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "last": {"_count": 2, "week": {"_count": 2}}, "anymore": {"_count": 1, "cause": {"_count": 1}}, "A": {"_count": 1, "scarletrobed": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "Ginny": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 4, "been": {"_count": 2}, "decided": {"_count": 1}, "reported": {"_count": 1}}, "like": {"_count": 1, "your": {"_count": 1}}, "writes": {"_count": 1, "about": {"_count": 1}}, "they": {"_count": 1, "dont": {"_count": 1}}, "thats": {"_count": 1, "going": {"_count": 1}}, "was": {"_count": 3, "soaring": {"_count": 1}, "following": {"_count": 1}, "it": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "carefully": {"_count": 1, "next": {"_count": 1}}, "Yes": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "think": {"_count": 1}}, "kept": {"_count": 1, "letting": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "aside": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "being": {"_count": 1}, "mustve": {"_count": 1}}, "shook": {"_count": 1, "it": {"_count": 1}}, "arrived": {"_count": 1, "she": {"_count": 1}}, "propped": {"_count": 1, "against": {"_count": 1}}, "wouldnt": {"_count": 1, "print": {"_count": 1}}, "wont": {"_count": 1, "print": {"_count": 1}}, "exists": {"_count": 2, "to": {"_count": 2}}, "might": {"_count": 1, "give": {"_count": 1}}, "Nearly": {"_count": 1, "everyone": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "Antonin": {"_count": 1, "Dolohov": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "hes": {"_count": 1, "always": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "says": {"_count": 1, "began": {"_count": 1}}, "Sometimes": {"_count": 1, "Bill": {"_count": 1}}, "making": {"_count": 1, "things": {"_count": 1}}, "often": {"_count": 1, "exaggerates": {"_count": 1}}, "Havent": {"_count": 1, "you": {"_count": 1}}, "which": {"_count": 3, "somebody": {"_count": 1}, "she": {"_count": 1}, "lay": {"_count": 1}}, "The": {"_count": 1, "Prophet": {"_count": 1}}, "is": {"_count": 1, "bound": {"_count": 1}}, "including": {"_count": 1, "several": {"_count": 1}}, "out": {"_count": 2, "from": {"_count": 1}, "of": {"_count": 1}}, "Three": {"_count": 1, "dementor": {"_count": 1}}, "Yeah": {"_count": 1, "that": {"_count": 1}}, "Wizards": {"_count": 1, "she": {"_count": 1}}, "folded": {"_count": 1, "it": {"_count": 1}}, "still": {"_count": 1, "lying": {"_count": 1}}, "to": {"_count": 1, "suppress": {"_count": 1}}, "Here": {"_count": 1, "he": {"_count": 1}}, "Look": {"_count": 1, "at": {"_count": 1}}, "Lupin": {"_count": 1, "had": {"_count": 1}}, "He": {"_count": 1, "turned": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "dated": {"_count": 1, "ten": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "dont": {"_count": 1, "think": {"_count": 1}}}, "many": {"_count": 421, "questions": {"_count": 5, "in": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "about": {"_count": 1}, "as": {"_count": 1}}, "doors": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "leading": {"_count": 1}}, "Galleons": {"_count": 2, "there": {"_count": 1}, "you": {"_count": 1}}, "ways": {"_count": 4, "it": {"_count": 1}, "Muggles": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}}, "Mars": {"_count": 1, "Bars": {"_count": 1}}, "the": {"_count": 1, "greatest": {"_count": 1}}, "turrets": {"_count": 3, "and": {"_count": 3}}, "people": {"_count": 30, "left": {"_count": 1}, "wander": {"_count": 1}, "said": {"_count": 1}, "as": {"_count": 4}, "knew": {"_count": 1}, "are": {"_count": 2}, "to": {"_count": 1}, "were": {"_count": 4}, "would": {"_count": 1}, "there": {"_count": 1}, "know": {"_count": 1}, "nodded": {"_count": 1}, "could": {"_count": 1}, "who": {"_count": 1}, "even": {"_count": 1}, "seemed": {"_count": 1}, "will": {"_count": 1}, "Id": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}, "my": {"_count": 1}, "have": {"_count": 1}, "running": {"_count": 1}}, "things": {"_count": 6, "he": {"_count": 1}, "could": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "happened": {"_count": 1}}, "to": {"_count": 4, "give": {"_count": 1}, "approach": {"_count": 1}, "be": {"_count": 1}, "hear": {"_count": 1}}, "of": {"_count": 63, "you": {"_count": 5}, "them": {"_count": 22}, "us": {"_count": 3}, "the": {"_count": 20}, "their": {"_count": 1}, "my": {"_count": 2}, "whom": {"_count": 3}, "these": {"_count": 2}, "his": {"_count": 2}, "those": {"_count": 1}, "its": {"_count": 1}, "yours": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "days": {"_count": 1, "you": {"_count": 1}}, "close": {"_count": 1, "shaves": {"_count": 1}}, "reports": {"_count": 2, "of": {"_count": 2}}, "times": {"_count": 27, "in": {"_count": 1}, "": {"_count": 4}, "you": {"_count": 2}, "so": {"_count": 1}, "by": {"_count": 1}, "do": {"_count": 4}, "had": {"_count": 1}, "and": {"_count": 1}, "have": {"_count": 3}, "your": {"_count": 1}, "but": {"_count": 1}, "I": {"_count": 1}, "before": {"_count": 5}, "rip": {"_count": 1}}, "secrets": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 21, "to": {"_count": 2}, "I": {"_count": 2}, "ago": {"_count": 5}, "since": {"_count": 1}, "nevertheless": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 1}, "in": {"_count": 1}, "before": {"_count": 3}, "during": {"_count": 1}, "he": {"_count": 1}}, "threeheaded": {"_count": 1, "dogs": {"_count": 1}}, "demands": {"_count": 1, "on": {"_count": 1}}, "white": {"_count": 1, "pieces": {"_count": 1}}, "candy": {"_count": 1, "boxes": {"_count": 1}}, "decent": {"_count": 1, "wizards": {"_count": 1}}, "dangers": {"_count": 1, "already": {"_count": 1}}, "sandwiches": {"_count": 1, "as": {"_count": 1}}, "lines": {"_count": 1, "arrows": {"_count": 1}}, "candles": {"_count": 1, "were": {"_count": 1}}, "moving": {"_count": 1, "faces": {"_count": 1}}, "living": {"_count": 2, "people": {"_count": 1}, "twigs": {"_count": 1}}, "legs": {"_count": 2, "and": {"_count": 1}, "Harry": {"_count": 1}}, "students": {"_count": 7, "filed": {"_count": 1}, "had": {"_count": 1}, "eagerly": {"_count": 1}, "hurrying": {"_count": 1}, "wore": {"_count": 1}, "passing": {"_count": 1}, "following": {"_count": 1}}, "rat": {"_count": 1, "tails": {"_count": 1}}, "eyes": {"_count": 3, "and": {"_count": 1}, "gleaming": {"_count": 1}, "out": {"_count": 1}}, "monsters": {"_count": 1, "dyou": {"_count": 1}}, "attacks": {"_count": 2, "have": {"_count": 1}, "like": {"_count": 1}}, "did": {"_count": 1, "yeh": {"_count": 1}}, "long": {"_count": 1, "legs": {"_count": 1}}, "fearsome": {"_count": 1, "beasts": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "months": {"_count": 2, "now": {"_count": 1}, "ago": {"_count": 1}}, "others": {"_count": 3, "": {"_count": 1}, "did": {"_count": 1}, "and": {"_count": 1}}, "dangerous": {"_count": 1, "magical": {"_count": 1}}, "qualities": {"_count": 1, "Salazar": {"_count": 1}}, "chins": {"_count": 1, "": {"_count": 1}}, "lamps": {"_count": 2, "were": {"_count": 1}, "which": {"_count": 1}}, "packs": {"_count": 1, "of": {"_count": 1}}, "subjects": {"_count": 2, "Im": {"_count": 1}, "for": {"_count": 1}}, "wizards": {"_count": 2, "who": {"_count": 1}, "in": {"_count": 1}}, "places": {"_count": 3, "besides": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "flaming": {"_count": 1, "orange": {"_count": 1}}, "bitter": {"_count": 1, "sidelong": {"_count": 1}}, "more": {"_count": 11, "assurances": {"_count": 1}, "people": {"_count": 1}, "notes": {"_count": 1}, "personal": {"_count": 1}, "emerged": {"_count": 1}, "Ron": {"_count": 1}, "of": {"_count": 1}, "variations": {"_count": 1}, "Inferi": {"_count": 1}, "questions": {"_count": 1}, "lay": {"_count": 1}}, "feet": {"_count": 1, "below": {"_count": 1}}, "different": {"_count": 3, "theories": {"_count": 1}, "ways": {"_count": 1}, "inflections": {"_count": 1}}, "fullgrown": {"_count": 1, "witches": {"_count": 1}}, "tantrums": {"_count": 1, "after": {"_count": 1}}, "tears": {"_count": 1, "from": {"_count": 1}}, "stamps": {"_count": 1, "but": {"_count": 1}}, "O": {"_count": 2, "": {"_count": 2}}, "toffees": {"_count": 1, "out": {"_count": 1}}, "antiMuggle": {"_count": 1, "precautions": {"_count": 1}}, "clogging": {"_count": 1, "up": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "Krums": {"_count": 1, "blinking": {"_count": 1}}, "nationalities": {"_count": 1, "in": {"_count": 1}}, "proofs": {"_count": 1, "I": {"_count": 1}}, "Hogwarts": {"_count": 1, "students": {"_count": 1}}, "owls": {"_count": 2, "through": {"_count": 1}, "swooping": {"_count": 1}}, "lighted": {"_count": 1, "windows": {"_count": 1}}, "stars": {"_count": 1, "and": {"_count": 1}}, "strengths": {"_count": 1, "and": {"_count": 1}}, "members": {"_count": 2, "have": {"_count": 1}, "of": {"_count": 1}}, "magnificent": {"_count": 1, "opals": {"_count": 1}}, "boys": {"_count": 1, "heads": {"_count": 1}}, "superb": {"_count": 1, "opals": {"_count": 1}}, "would": {"_count": 2, "die": {"_count": 1}, "there": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "inflated": {"_count": 1, "reputations": {"_count": 1}}, "girls": {"_count": 2, "Hogwarts": {"_count": 1}, "have": {"_count": 1}}, "yawns": {"_count": 1, "punctuating": {"_count": 1}}, "raised": {"_count": 1, "eyebrows": {"_count": 1}}, "better": {"_count": 1, "qualified": {"_count": 1}}, "admit": {"_count": 1, "to": {"_count": 1}}, "magical": {"_count": 3, "properties": {"_count": 2}, "discoveries": {"_count": 1}}, "shortcuts": {"_count": 1, "and": {"_count": 1}}, "books": {"_count": 1, "as": {"_count": 1}}, "cuts": {"_count": 2, "on": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "little": {"_count": 2, "hands": {"_count": 1}, "friends": {"_count": 1}}, "subscriptions": {"_count": 1, "did": {"_count": 1}}, "perches": {"_count": 1, "were": {"_count": 1}}, "teachers": {"_count": 1, "at": {"_count": 1}}, "thoughts": {"_count": 1, "and": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 2}}, "faithful": {"_count": 1, "supporters": {"_count": 1}}, "obstacles": {"_count": 1, "out": {"_count": 1}}, "Death": {"_count": 2, "Eaters": {"_count": 2}}, "whod": {"_count": 1, "have": {"_count": 1}}, "Canary": {"_count": 1, "Creams": {"_count": 1}}, "labor": {"_count": 1, "saving": {"_count": 1}}, "loud": {"_count": 1, "metallic": {"_count": 1}}, "foreign": {"_count": 1, "wizards": {"_count": 1}}, "locks": {"_count": 1, "and": {"_count": 1}}, "gilded": {"_count": 1, "fireplaces": {"_count": 1}}, "shadowy": {"_count": 1, "figures": {"_count": 1}}, "changes": {"_count": 1, "Cornelius": {"_count": 1}}, "faults": {"_count": 1, "but": {"_count": 1}}, "twigs": {"_count": 1, "": {"_count": 1}}, "elves": {"_count": 1, "had": {"_count": 1}}, "staircases": {"_count": 1, "pausing": {"_count": 1}}, "were": {"_count": 2, "there": {"_count": 1}, "Disapparating": {"_count": 1}}, "other": {"_count": 4, "Viktors": {"_count": 1}, "dreams": {"_count": 1}, "people": {"_count": 1}, "worthless": {"_count": 1}}, "snorts": {"_count": 1, "of": {"_count": 1}}, "visitors": {"_count": 1, "at": {"_count": 1}}, "autographs": {"_count": 1, "would": {"_count": 1}}, "witnesses": {"_count": 1, "seemed": {"_count": 1}}, "ancient": {"_count": 1, "spells": {"_count": 1}}, "exaggerated": {"_count": 1, "glances": {"_count": 1}}, "are": {"_count": 2, "you": {"_count": 1}, "whispering": {"_count": 1}}, "reported": {"_count": 1, "sightings": {"_count": 1}}, "counts": {"_count": 1, "": {"_count": 1}}, "detentions": {"_count": 1, "was": {"_count": 1}}, "flying": {"_count": 1, "saucers": {"_count": 1}}, "qualifications": {"_count": 1, "to": {"_count": 1}}, "pamphlets": {"_count": 1, "littering": {"_count": 1}}, "Skiving": {"_count": 1, "Snackboxes": {"_count": 1}}, "hours": {"_count": 3, "Ron": {"_count": 1}, "dyou": {"_count": 1}, "before": {"_count": 1}}, "shoulders": {"_count": 1, "": {"_count": 1}}, "tables": {"_count": 1, "for": {"_count": 1}}, "quills": {"_count": 1, "": {"_count": 1}}, "blackmarket": {"_count": 1, "butterbeers": {"_count": 1}}, "extraordinary": {"_count": 1, "things": {"_count": 1}}, "stories": {"_count": 1, "circulating": {"_count": 1}}, "glittering": {"_count": 1, "photograph": {"_count": 1}}, "have": {"_count": 1, "guessed": {"_count": 1}}, "boxes": {"_count": 1, "in": {"_count": 1}}, "Gryffindor": {"_count": 1, "ears": {"_count": 1}}, "heads": {"_count": 1, "turned": {"_count": 1}}, "varied": {"_count": 1, "ever": {"_count": 1}}, "shimmering": {"_count": 1, "vapors": {"_count": 1}}, "tiles": {"_count": 1, "had": {"_count": 1}}, "fraillooking": {"_count": 1, "silver": {"_count": 1}}, "complaints": {"_count": 1, "and": {"_count": 1}}, "complainers": {"_count": 1, "and": {"_count": 1}}, "party": {"_count": 1, "invitations": {"_count": 1}}, "crossingsout": {"_count": 1, "and": {"_count": 1}}, "pauses": {"_count": 1, "while": {"_count": 1}}, "curious": {"_count": 1, "glances": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "memories": {"_count": 1, "of": {"_count": 1}}, "empty": {"_count": 1, "bottles": {"_count": 1}}, "flourishing": {"_count": 1, "potted": {"_count": 1}}, "similarities": {"_count": 1, "between": {"_count": 1}}, "hiding": {"_count": 1, "places": {"_count": 1}}, "thanks": {"_count": 1, "again": {"_count": 1}}, "separately": {"_count": 1, "concealed": {"_count": 1}}, "powerful": {"_count": 2, "enchantments": {"_count": 1}, "spells": {"_count": 1}}, "victims": {"_count": 1, "there": {"_count": 1}}, "alleyways": {"_count": 1, "between": {"_count": 1}}, "cobwebbed": {"_count": 1, "boxes": {"_count": 1}}, "shawls": {"_count": 1, "several": {"_count": 1}}, "strands": {"_count": 1, "of": {"_count": 1}}, "miles": {"_count": 1, "from": {"_count": 1}}, "creatures": {"_count": 1, "that": {"_count": 1}}, "wands": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 2, "four": {"_count": 1}, "we": {"_count": 1}}, "mistakes": {"_count": 1, "where": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "enemies": {"_count": 1, "in": {"_count": 1}}, "judgments": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 1, "question": {"_count": 1}}, "rumors": {"_count": 2, "still": {"_count": 1}, "weve": {"_count": 1}}, "opportunities": {"_count": 2, "for": {"_count": 1}, "when": {"_count": 1}}, "security": {"_count": 1, "enchantments": {"_count": 1}}, "No": {"_count": 1, "please": {"_count": 1}}, "wonderful": {"_count": 1, "things": {"_count": 1}}, "jokes": {"_count": 1, "about": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "posters": {"_count": 1, "and": {"_count": 1}}, "pictures": {"_count": 1, "of": {"_count": 1}}, "who": {"_count": 1, "would": {"_count": 1}}, "hideyholes": {"_count": 1, "and": {"_count": 1}}, "lifts": {"_count": 1, "": {"_count": 1}}, "small": {"_count": 1, "green": {"_count": 1}}, "eccentricities": {"_count": 1, "of": {"_count": 1}}, "evenings": {"_count": 1, "in": {"_count": 1}}, "centuries": {"_count": 1, "": {"_count": 1}}, "reasons": {"_count": 1, "not": {"_count": 1}}, "admirers": {"_count": 1, "will": {"_count": 1}}, "layers": {"_count": 1, "of": {"_count": 1}}, "desperate": {"_count": 1, "attempts": {"_count": 1}}, "nervous": {"_count": 1, "glances": {"_count": 1}}, "covert": {"_count": 1, "glances": {"_count": 1}}, "cloaks": {"_count": 1, "have": {"_count": 1}}, "welts": {"_count": 1, "across": {"_count": 1}}, "windows": {"_count": 1, "always": {"_count": 1}}, "injuries": {"_count": 1, "": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "familiar": {"_count": 1, "faces": {"_count": 1}}, "ineptitudes": {"_count": 1, "on": {"_count": 1}}, "innocent": {"_count": 1, "people": {"_count": 1}}, "men": {"_count": 1, "and": {"_count": 1}}, "adolescent": {"_count": 1, "wanderings": {"_count": 1}}, "cries": {"_count": 1, "gasps": {"_count": 1}}, "centaurs": {"_count": 1, "were": {"_count": 1}}}, "Ministry": {"_count": 561, "o": {"_count": 2, "Magic": {"_count": 2}}, "of": {"_count": 150, "Magic": {"_count": 143}, "Agriculture": {"_count": 1}, "Magics": {"_count": 4}, "poisoning": {"_count": 1}, "I": {"_count": 1}}, "said": {"_count": 8, "Ron": {"_count": 1}, "Charlie": {"_count": 1}, "Mr": {"_count": 1}, "Fudge": {"_count": 1}, "Malfoy": {"_count": 1}, "Harry": {"_count": 2}, "Dumbledore": {"_count": 1}}, "is": {"_count": 11, "conducting": {"_count": 1}, "trying": {"_count": 1}, "wrong": {"_count": 1}, "that": {"_count": 1}, "keeping": {"_count": 1}, "determined": {"_count": 2}, "he": {"_count": 1}, "currently": {"_count": 1}, "it": {"_count": 1}, "supposed": {"_count": 1}}, "were": {"_count": 2, "to": {"_count": 1}, "breeding": {"_count": 1}}, "wouldnt": {"_count": 2, "presume": {"_count": 1}, "want": {"_count": 1}}, "grows": {"_count": 1, "ever": {"_count": 1}}, "I": {"_count": 3, "hear": {"_count": 1}, "regret": {"_count": 1}, "dont": {"_count": 1}}, "into": {"_count": 1, "disrepute": {"_count": 1}}, "got": {"_count": 1, "wind": {"_count": 1}}, "to": {"_count": 4, "try": {"_count": 1}, "be": {"_count": 1}, "track": {"_count": 1}, "ensure": {"_count": 1}}, "providing": {"_count": 1, "cars": {"_count": 1}}, "found": {"_count": 1, "him": {"_count": 1}}, "cars": {"_count": 5, "to": {"_count": 1}, "stuck": {"_count": 1}, "for": {"_count": 1}, "again": {"_count": 1}, "glided": {"_count": 1}}, "drivers": {"_count": 1, "found": {"_count": 1}}, "was": {"_count": 8, "after": {"_count": 1}, "plunged": {"_count": 1}, "under": {"_count": 1}, "up": {"_count": 1}, "and": {"_count": 1}, "she": {"_count": 1}, "predisposed": {"_count": 1}, "leaning": {"_count": 1}}, "": {"_count": 67, ".": {"_count": 47}, "!": {"_count": 7}, "?": {"_count": 13}}, "have": {"_count": 4, "given": {"_count": 1}, "their": {"_count": 1}, "confirmed": {"_count": 1}, "fallen": {"_count": 1}}, "you": {"_count": 3, "cant": {"_count": 1}, "are": {"_count": 2}}, "never": {"_count": 2, "knew": {"_count": 1}, "attracted": {"_count": 1}}, "keeps": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 4, "Sirius": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 1}}, "Ill": {"_count": 1, "have": {"_count": 1}}, "need": {"_count": 1, "never": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "your": {"_count": 1}, "an": {"_count": 1}}, "wizard": {"_count": 4, "had": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}}, "members": {"_count": 5, "kept": {"_count": 1}, "wands": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "are": {"_count": 1}}, "wizards": {"_count": 12, "rushed": {"_count": 1}, "were": {"_count": 4}, "trying": {"_count": 1}, "apart": {"_count": 1}, "yet": {"_count": 1}, "": {"_count": 1}, "arrived": {"_count": 1}, "after": {"_count": 1}, "hung": {"_count": 1}}, "and": {"_count": 20, "this": {"_count": 1}, "you": {"_count": 1}, "then": {"_count": 1}, "he": {"_count": 2}, "out": {"_count": 1}, "hes": {"_count": 1}, "that": {"_count": 3}, "was": {"_count": 1}, "in": {"_count": 1}, "returned": {"_count": 1}, "give": {"_count": 1}, "who": {"_count": 1}, "the": {"_count": 1}, "Voldemort": {"_count": 1}, "not": {"_count": 1}, "there": {"_count": 1}, "all": {"_count": 1}}, "decides": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "task": {"_count": 1, "force": {"_count": 1}}, "witch": {"_count": 2, "at": {"_count": 1}, "with": {"_count": 1}}, "will": {"_count": 5, "catch": {"_count": 1}, "be": {"_count": 2}, "not": {"_count": 1}, "punish": {"_count": 1}}, "blunders": {"_count": 1, "": {"_count": 1}}, "official": {"_count": 6, "emerged": {"_count": 1}, "like": {"_count": 1}, "who": {"_count": 1}, "Malfoy": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "had": {"_count": 5, "commented": {"_count": 1}, "believed": {"_count": 1}, "arranged": {"_count": 1}, "put": {"_count": 1}, "known": {"_count": 1}}, "messups": {"_count": 1, "to": {"_count": 1}}, "would": {"_count": 6, "want": {"_count": 1}, "get": {"_count": 1}, "prefer": {"_count": 1}, "make": {"_count": 1}, "ever": {"_count": 1}, "confiscate": {"_count": 1}}, "sees": {"_count": 1, "fit": {"_count": 1}}, "when": {"_count": 3, "no": {"_count": 1}, "they": {"_count": 2}}, "in": {"_count": 4, "such": {"_count": 1}, "London": {"_count": 1}, "June": {"_count": 1}, "looking": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "if": {"_count": 2, "they": {"_count": 2}}, "ever": {"_count": 1, "had": {"_count": 1}}, "guidelines": {"_count": 1, "": {"_count": 1}}, "Witch": {"_count": 1, "Still": {"_count": 1}}, "refuses": {"_count": 1, "to": {"_count": 1}}, "member": {"_count": 1, "he": {"_count": 1}}, "friends": {"_count": 2, "attempts": {"_count": 1}, "": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "later": {"_count": 1, "on": {"_count": 1}}, "disagrees": {"_count": 1, "as": {"_count": 1}}, "wants": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 3, "these": {"_count": 1}, "he": {"_count": 1}, "over": {"_count": 1}}, "who": {"_count": 1, "are": {"_count": 1}}, "Leave": {"_count": 1, "it": {"_count": 1}}, "anymore": {"_count": 1, "come": {"_count": 1}}, "representatives": {"_count": 4, "will": {"_count": 2}, "and": {"_count": 1}, "were": {"_count": 1}}, "or": {"_count": 2, "stay": {"_count": 1}, "a": {"_count": 1}}, "has": {"_count": 14, "agreed": {"_count": 1}, "no": {"_count": 1}, "now": {"_count": 1}, "foisted": {"_count": 1}, "him": {"_count": 1}, "been": {"_count": 2}, "the": {"_count": 1}, "decided": {"_count": 1}, "fallen": {"_count": 2}, "hushed": {"_count": 1}, "there": {"_count": 1}, "started": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "hearing": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "its": {"_count": 1}, "returned": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "checking": {"_count": 1, "that": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 2}, "didnt": {"_count": 1}}, "did": {"_count": 2, "a": {"_count": 1}, "not": {"_count": 1}}, "hasnt": {"_count": 2, "had": {"_count": 1}, "found": {"_count": 1}}, "insists": {"_count": 1, "there": {"_count": 1}}, "because": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "information": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "Bill": {"_count": 1, "to": {"_count": 1}}, "workers": {"_count": 6, "some": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "did": {"_count": 1}, "toppling": {"_count": 1}, "beside": {"_count": 1}}, "employees": {"_count": 2, "heading": {"_count": 1}, "in": {"_count": 1}}, "three": {"_count": 1, "hours": {"_count": 1}}, "for": {"_count": 4, "using": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "everyone": {"_count": 1}}, "ordered": {"_count": 1, "a": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "control": {"_count": 3, "There": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}}, "does": {"_count": 2, "not": {"_count": 2}}, "What": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "insider": {"_count": 2, "": {"_count": 1}, "last": {"_count": 1}}, "approved": {"_count": 1, "course": {"_count": 1}}, "suspects": {"_count": 1, "hes": {"_count": 1}}, "so": {"_count": 1, "ardently": {"_count": 1}}, "should": {"_count": 2, "select": {"_count": 1}, "put": {"_count": 1}}, "inspection": {"_count": 1, "Yeah": {"_count": 1}}, "isnt": {"_count": 1, "going": {"_count": 1}}, "interference": {"_count": 1, "": {"_count": 1}}, "action": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 1, "feared": {"_count": 1}}, "watching": {"_count": 1, "Dumbledore": {"_count": 1}}, "don": {"_count": 1, "you": {"_count": 1}}, "made": {"_count": 1, "of": {"_count": 1}}, "unhealthy": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 3}, "his": {"_count": 1}, "their": {"_count": 1}}, "are": {"_count": 1, "morons": {"_count": 1}}, "decrees": {"_count": 1, "": {"_count": 1}}, "decree": {"_count": 1, "banning": {"_count": 1}}, "how": {"_count": 1, "hes": {"_count": 1}}, "where": {"_count": 1, "you": {"_count": 1}}, "stands": {"_count": 1, "behind": {"_count": 1}}, "its": {"_count": 2, "really": {"_count": 1}, "complexity": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "do": {"_count": 1, "on": {"_count": 1}}, "looks": {"_count": 1, "into": {"_count": 1}}, "security": {"_count": 1, "": {"_count": 1}}, "places": {"_count": 1, "a": {"_count": 1}}, "can": {"_count": 4, "do": {"_count": 1}, "add": {"_count": 1}, "offer": {"_count": 1}, "punish": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "assurances": {"_count": 1, "that": {"_count": 1}}, "turnaround": {"_count": 1, "are": {"_count": 1}}, "Should": {"_count": 1, "Have": {"_count": 1}}, "last": {"_count": 3, "night": {"_count": 1}, "year": {"_count": 1}, "week": {"_count": 1}}, "spokeswizards": {"_count": 1, "have": {"_count": 1}}, "contacts": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 2, "being": {"_count": 1}, "they": {"_count": 1}}, "procedure": {"_count": 1, "and": {"_count": 1}}, "driver": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 1, "now": {"_count": 1}}, "knew": {"_count": 1, "about": {"_count": 1}}, "wanted": {"_count": 1, "ter": {"_count": 1}}, "pamphlets": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 1, "emblazoned": {"_count": 1}}, "cant": {"_count": 1, "do": {"_count": 1}}, "bought": {"_count": 1, "five": {"_count": 1}}, "the": {"_count": 2, "night": {"_count": 1}, "power": {"_count": 1}}, "leaflets": {"_count": 1, "lately": {"_count": 1}}, "tells": {"_count": 1, "em": {"_count": 1}}, "look": {"_count": 1, "said": {"_count": 1}}, "TimeTurners": {"_count": 1, "when": {"_count": 1}}, "until": {"_count": 1, "Christmas": {"_count": 1}}, "replied": {"_count": 1, "Ron": {"_count": 1}}, "He": {"_count": 1, "waited": {"_count": 1}}, "from": {"_count": 1, "time": {"_count": 1}}, "wasnt": {"_count": 1, "so": {"_count": 1}}, "called": {"_count": 1, "upon": {"_count": 1}}, "reached": {"_count": 1, "their": {"_count": 1}}, "didnt": {"_count": 1, "realize": {"_count": 1}}, "wont": {"_count": 1, "know": {"_count": 1}}, "Apparition": {"_count": 1, "instructor": {"_count": 1}}, "bothered": {"_count": 1, "to": {"_count": 1}}, "turns": {"_count": 1, "up": {"_count": 1}}, "gets": {"_count": 1, "here": {"_count": 1}}, "thinks": {"_count": 1, "it": {"_count": 1}}, "officials": {"_count": 1, "including": {"_count": 1}}, "delegation": {"_count": 1, "waiting": {"_count": 1}}, "together": {"_count": 1, "could": {"_count": 1}}, "departments": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "mistrust": {"_count": 1}}, "finds": {"_count": 1, "out": {"_count": 1}}, "They": {"_count": 1, "think": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "youd": {"_count": 1, "think": {"_count": 1}}, "colleague": {"_count": 1, "Perkins": {"_count": 1}}, "what": {"_count": 1, "else": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 2, "": {"_count": 1}, "use": {"_count": 1}}, "policy": {"_count": 2, "in": {"_count": 1}, "said": {"_count": 1}}, "hag": {"_count": 1, "": {"_count": 1}}, "entrance": {"_count": 2, "for": {"_count": 2}}, "which": {"_count": 1, "Ron": {"_count": 1}}, "tomorrow": {"_count": 1, "dont": {"_count": 1}}, "employee": {"_count": 1, "": {"_count": 1}}, "inspectors": {"_count": 1, "have": {"_count": 1}}, "today": {"_count": 1, "Mrs": {"_count": 1}}, "something": {"_count": 1, "about": {"_count": 1}}, "came": {"_count": 1, "too": {"_count": 1}}, "line": {"_count": 1, "but": {"_count": 1}}, "Harry": {"_count": 1, "lied": {"_count": 1}}, "growled": {"_count": 1, "Greyback": {"_count": 1}}, "theyre": {"_count": 1, "imprisoning": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}}, "Magic": {"_count": 312, "messin": {"_count": 1, "things": {"_count": 1}}, "": {"_count": 76, "?": {"_count": 15}, ".": {"_count": 56}, "!": {"_count": 5}}, "do": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 7, "Bathilda": {"_count": 4}, "Gilderoy": {"_count": 1}, "the": {"_count": 2}}, "carpets": {"_count": 1, "all": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "never": {"_count": 1, "taught": {"_count": 1}}, "has": {"_count": 6, "a": {"_count": 1}, "won": {"_count": 1}, "revised": {"_count": 1}, "always": {"_count": 1}, "received": {"_count": 1}, "classified": {"_count": 1}}, "and": {"_count": 26, "flew": {"_count": 1}, "and": {"_count": 1}, "Sirius": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 3}, "are": {"_count": 1}, "still": {"_count": 1}, "hes": {"_count": 1}, "it": {"_count": 1}, "am": {"_count": 1}, "I": {"_count": 1}, "Its": {"_count": 2}, "have": {"_count": 1}, "his": {"_count": 1}, "Headmistress": {"_count": 1}, "risk": {"_count": 1}, "who": {"_count": 1}, "Dark": {"_count": 1}, "gum": {"_count": 1}, "Support": {"_count": 1}, "you": {"_count": 1}, "remembered": {"_count": 1}, "if": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 4, "get": {"_count": 1}, "be": {"_count": 1}, "never": {"_count": 1}, "track": {"_count": 1}}, "Harry": {"_count": 3, "looked": {"_count": 1}, "read": {"_count": 2}}, "anyway": {"_count": 1, "": {"_count": 1}}, "Intrigued": {"_count": 1, "Harry": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "bickering": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 6, "the": {"_count": 1}, "looking": {"_count": 1}, "by": {"_count": 1}, "rocking": {"_count": 1}, "not": {"_count": 1}, "about": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "needed": {"_count": 1}, "strode": {"_count": 1}}, "to": {"_count": 5, "open": {"_count": 1}, "set": {"_count": 1}, "stop": {"_count": 1}, "slide": {"_count": 1}, "hear": {"_count": 1}}, "doesnt": {"_count": 1, "mean": {"_count": 1}}, "if": {"_count": 2, "I": {"_count": 1}, "ever": {"_count": 1}}, "raided": {"_count": 1, "our": {"_count": 1}}, "is": {"_count": 3, "even": {"_count": 1}, "trying": {"_count": 1}, "undertaking": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "I": {"_count": 3, "ddidnt": {"_count": 1}, "am": {"_count": 1}, "think": {"_count": 1}}, "his": {"_count": 1, "essay": {"_count": 1}}, "essay": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "representatives": {"_count": 1, "werent": {"_count": 1}}, "confirmed": {"_count": 2, "today": {"_count": 1}, "that": {"_count": 1}}, "Cornelius": {"_count": 3, "Fudge": {"_count": 3}}, "got": {"_count": 2, "there": {"_count": 2}}, "himself": {"_count": 5, "": {"_count": 1}, "to": {"_count": 1}, "arrived": {"_count": 1}, "who": {"_count": 1}, "was": {"_count": 1}}, "Reversal": {"_count": 4, "Squad": {"_count": 4}}, "said": {"_count": 6, "Id": {"_count": 1}, "Harry": {"_count": 1}, "Sirius": {"_count": 2}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}}, "would": {"_count": 1, "of": {"_count": 1}}, "cars": {"_count": 2, "seemed": {"_count": 1}, "in": {"_count": 1}}, "business": {"_count": 1, "": {"_count": 1}}, "caught": {"_count": 1, "up": {"_count": 1}}, "classroom": {"_count": 4, "should": {"_count": 1}, "": {"_count": 3}}, "downward": {"_count": 1, "has": {"_count": 1}}, "on": {"_count": 3, "Wednesday": {"_count": 1}, "a": {"_count": 1}, "31st": {"_count": 1}}, "hovered": {"_count": 1, "awkwardly": {"_count": 1}}, "keeps": {"_count": 1, "tabs": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "dont": {"_count": 1, "think": {"_count": 1}}, "wizards": {"_count": 1, "and": {"_count": 1}}, "witches": {"_count": 1, "at": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "car": {"_count": 1, "last": {"_count": 1}}, "like": {"_count": 1, "Dad": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "Office": {"_count": 5, "": {"_count": 3}, "Auror": {"_count": 2}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "lot": {"_count": 2, "all": {"_count": 1}, "get": {"_count": 1}}, "have": {"_count": 2, "agreed": {"_count": 1}, "lured": {"_count": 1}}, "Im": {"_count": 1, "supposed": {"_count": 1}}, "had": {"_count": 3, "them": {"_count": 1}, "rarely": {"_count": 1}, "ordered": {"_count": 1}}, "witch": {"_count": 1, "whos": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "given": {"_count": 2, "Moodys": {"_count": 1}, "that": {"_count": 1}}, "for": {"_count": 3, "Wacky": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "Now": {"_count": 1, "Personally": {"_count": 1}}, "knowing": {"_count": 1, "what": {"_count": 1}}, "exam": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 1, "Wormtail": {"_count": 1}}, "the": {"_count": 3, "potion": {"_count": 1}, "truth": {"_count": 1}, "graveyard": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "Dumbledore": {"_count": 1, "continued": {"_count": 1}}, "at": {"_count": 2, "9": {"_count": 1}, "one": {"_count": 1}}, "expelling": {"_count": 1, "me": {"_count": 1}}, "lost": {"_count": 1, "control": {"_count": 1}}, "hearing": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "only": {"_count": 1}}, "wishes": {"_count": 2, "you": {"_count": 2}}, "Amelia": {"_count": 1, "Susan": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "does": {"_count": 1, "or": {"_count": 1}}, "or": {"_count": 3, "that": {"_count": 1}, "as": {"_count": 1}, "why": {"_count": 1}}, "denied": {"_count": 1, "that": {"_count": 1}}, "five": {"_count": 1, "years": {"_count": 1}}, "double": {"_count": 1, "Potions": {"_count": 1}}, "guarantees": {"_count": 1, "that": {"_count": 1}}, "lesson": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "watch": {"_count": 1, "wizard": {"_count": 1}}, "passed": {"_count": 1, "new": {"_count": 1}}, "Are": {"_count": 1, "Morons": {"_count": 1}}, "Order": {"_count": 1, "of": {"_count": 1}}, "expelled": {"_count": 1, "me": {"_count": 1}}, "Secrets": {"_count": 1, "to": {"_count": 1}}, "announced": {"_count": 1, "late": {"_count": 1}}, "worker": {"_count": 1, "Broderick": {"_count": 1}}, "offered": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "countersigned": {"_count": 1, "the": {"_count": 1}}, "handpicked": {"_count": 1, "by": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "without": {"_count": 1, "anybody": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "permits": {"_count": 1, "you": {"_count": 1}}, "employees": {"_count": 1, "": {"_count": 1}}, "visitors": {"_count": 1, "entrance": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "you": {"_count": 1, "you": {"_count": 1}}, "are": {"_count": 1, "heavily": {"_count": 1}}, "itself": {"_count": 1, "on": {"_count": 1}}, "took": {"_count": 1, "responsibility": {"_count": 1}}, "only": {"_count": 1, "reveals": {"_count": 1}}, "premises": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "during": {"_count": 1, "which": {"_count": 1}}, "Rufus": {"_count": 1, "Scrimgeour": {"_count": 1}}, "leaflet": {"_count": 2, "by": {"_count": 1}, "Common": {"_count": 1}}, "can": {"_count": 1, "provide": {"_count": 1}}, "D": {"_count": 1, "Potions": {"_count": 1}}, "posters": {"_count": 1, "that": {"_count": 1}}, "put": {"_count": 1, "together": {"_count": 1}}, "Youre": {"_count": 1, "not": {"_count": 1}}, "approved": {"_count": 1, "said": {"_count": 1}}, "yes": {"_count": 1, "there": {"_count": 1}}, "from": {"_count": 1, "within": {"_count": 1}}, "Malfoy": {"_count": 1, "threatened": {"_count": 1}}, "Apparition": {"_count": 1, "instructor": {"_count": 1}}, "over": {"_count": 1, "Christmas": {"_count": 1}}, "within": {"_count": 1, "twenty": {"_count": 1}}, "always": {"_count": 1, "leaves": {"_count": 1}}, "content": {"_count": 1, "to": {"_count": 1}}, "Marquees": {"_count": 1, "": {"_count": 1}}, "coming": {"_count": 1, "with": {"_count": 1}}, "whats": {"_count": 1, "it": {"_count": 1}}, "wait": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "once": {"_count": 1}}}, "messin": {"_count": 1, "things": {"_count": 1, "up": {"_count": 1}}}, "page": {"_count": 104, "": {"_count": 18, ".": {"_count": 18}}, "were": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 19, "the": {"_count": 8}, "Moste": {"_count": 1}, "parchment": {"_count": 1}, "newsprint": {"_count": 1}, "spells": {"_count": 1}, "Asiatic": {"_count": 1}, "Jinxes": {"_count": 1}, "Intermediate": {"_count": 1}, "The": {"_count": 1}, "Quintessence": {"_count": 1}, "this": {"_count": 1}, "every": {"_count": 1}}, "said": {"_count": 1, "Feel": {"_count": 1}}, "headed": {"_count": 1, "The": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 7, "they": {"_count": 1}, "chuckled": {"_count": 1}, "handed": {"_count": 1}, "spat": {"_count": 1}, "turned": {"_count": 1}, "then": {"_count": 1}, "said": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 3}, "an": {"_count": 1}, "disbelief": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "torn": {"_count": 1, "from": {"_count": 1}}, "frowning": {"_count": 1, "as": {"_count": 1}}, "twelve": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "while": {"_count": 1, "Percy": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "unfolded": {"_count": 1, "it": {"_count": 1}}, "after": {"_count": 1, "page": {"_count": 1}}, "but": {"_count": 2, "more": {"_count": 1}, "very": {"_count": 1}}, "before": {"_count": 3, "throwing": {"_count": 1}, "him": {"_count": 2}}, "you": {"_count": 2, "wouldnt": {"_count": 1}, "should": {"_count": 1}}, "on": {"_count": 2, "doxies": {"_count": 1}, "which": {"_count": 1}}, "fiftyseven": {"_count": 1, "she": {"_count": 1}}, "five": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 1}, "Why": {"_count": 1}}, "critically": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 2, "devoted": {"_count": 1}, "taken": {"_count": 1}}, "17": {"_count": 1, "": {"_count": 1}}, "nineteen": {"_count": 2, "today": {"_count": 1}, "": {"_count": 1}}, "clearly": {"_count": 1, "giving": {"_count": 1}}, "thirtyfour": {"_count": 1, "of": {"_count": 1}}, "nine": {"_count": 2, "showing": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 1, "such": {"_count": 1}}, "ten": {"_count": 3, "of": {"_count": 2}, "he": {"_count": 1}}, "fiftytwo": {"_count": 1, "but": {"_count": 1}}, "the": {"_count": 1, "scribble": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "two": {"_count": 2, "hundred": {"_count": 1}, "": {"_count": 1}}, "folded": {"_count": 1, "down": {"_count": 1}}, "a": {"_count": 1, "smaller": {"_count": 1}}, "she": {"_count": 2, "looked": {"_count": 1}, "wanted": {"_count": 1}}, "loudly": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "carried": {"_count": 1, "only": {"_count": 1}}, "bearing": {"_count": 1, "Lilys": {"_count": 1}}}, "Minister": {"_count": 255, "o": {"_count": 1, "course": {"_count": 1}}, "of": {"_count": 79, "Magic": {"_count": 73}, "the": {"_count": 3}, "your": {"_count": 1}, "Muggles": {"_count": 2}}, "": {"_count": 45, "?": {"_count": 10}, "!": {"_count": 6}, ".": {"_count": 29}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "he": {"_count": 4, "isnt": {"_count": 1}, "threatened": {"_count": 1}, "continued": {"_count": 1}, "ought": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "against": {"_count": 1, "all": {"_count": 1}}, "listen": {"_count": 3, "": {"_count": 2}, "please": {"_count": 1}}, "these": {"_count": 1, "children": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "has": {"_count": 2, "seen": {"_count": 1}, "been": {"_count": 1}}, "is": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 4, "Fudge": {"_count": 1}, "Umbridge": {"_count": 1}, "Cornelius": {"_count": 1}, "Harry": {"_count": 1}}, "was": {"_count": 7, "just": {"_count": 1}, "sitting": {"_count": 1}, "not": {"_count": 2}, "momentarily": {"_count": 1}, "yet": {"_count": 1}, "wondering": {"_count": 1}}, "are": {"_count": 2, "any": {"_count": 1}, "you": {"_count": 1}}, "have": {"_count": 1, "recently": {"_count": 1}}, "just": {"_count": 2, "a": {"_count": 1}, "sent": {"_count": 1}}, "let": {"_count": 1, "slip": {"_count": 1}}, "really": {"_count": 1, "could": {"_count": 1}}, "Percy": {"_count": 1, "Weasley": {"_count": 1}}, "put": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 3, "ontheground": {"_count": 1}, "a": {"_count": 2}}, "at": {"_count": 1, "once": {"_count": 1}}, "yes": {"_count": 1, "said": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "But": {"_count": 1, "Marietta": {"_count": 1}}, "Miss": {"_count": 1, "Edgecombe": {"_count": 1}}, "that": {"_count": 2, "I": {"_count": 1}, "there": {"_count": 1}}, "very": {"_count": 1, "good": {"_count": 1}}, "I": {"_count": 2, "disagree": {"_count": 1}, "am": {"_count": 1}}, "to": {"_count": 1, "sign": {"_count": 1}}, "and": {"_count": 4, "headmistress": {"_count": 1}, "did": {"_count": 1}, "steps": {"_count": 1}, "Albus": {"_count": 1}}, "will": {"_count": 2, "understand": {"_count": 1}, "be": {"_count": 1}}, "wouldnt": {"_count": 1, "want": {"_count": 1}}, "could": {"_count": 5, "see": {"_count": 1}, "not": {"_count": 2}, "ask": {"_count": 1}, "shout": {"_count": 1}}, "felt": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "had": {"_count": 10, "known": {"_count": 1}, "seen": {"_count": 1}, "found": {"_count": 1}, "stood": {"_count": 2}, "abandoned": {"_count": 1}, "been": {"_count": 1}, "never": {"_count": 1}, "hoped": {"_count": 1}, "passed": {"_count": 1}}, "weakly": {"_count": 2, "": {"_count": 2}}, "stiffly": {"_count": 1, "hoping": {"_count": 1}}, "remembered": {"_count": 1, "clutching": {"_count": 1}}, "breathlessly": {"_count": 1, "watching": {"_count": 1}}, "why": {"_count": 1, "hasnt": {"_count": 1}}, "warned": {"_count": 1, "me": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "rather": {"_count": 1, "resented": {"_count": 1}}, "hoarsely": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Prime": {"_count": 1}}, "did": {"_count": 3, "not": {"_count": 2}, "the": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "positively": {"_count": 1}}, "groped": {"_count": 1, "in": {"_count": 1}}, "surreptitiously": {"_count": 1, "touched": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "furiously": {"_count": 2, "": {"_count": 2}}, "standing": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 1, "temper": {"_count": 1}}, "stopped": {"_count": 1, "in": {"_count": 1}}, "momentarily": {"_count": 1, "diverted": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "but": {"_count": 5, "he": {"_count": 1}, "there": {"_count": 1}, "nobody": {"_count": 1}, "why": {"_count": 2}}, "sank": {"_count": 1, "weakkneed": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "distractedly": {"_count": 1, "and": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "politely": {"_count": 1, "holding": {"_count": 1}}, "heard": {"_count": 1, "the": {"_count": 1}}, "drew": {"_count": 1, "himself": {"_count": 1}}, "gets": {"_count": 1, "put": {"_count": 1}}, "hotly": {"_count": 1, "": {"_count": 1}}, "lamely": {"_count": 1, "but": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "at": {"_count": 1}}, "gazed": {"_count": 1, "hopelessly": {"_count": 1}}, "although": {"_count": 1, "an": {"_count": 1}}, "obviously": {"_count": 1, "Ah": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "anymore": {"_count": 1, "but": {"_count": 1}}, "Three": {"_count": 1, "times": {"_count": 1}}, "himself": {"_count": 1, "but": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "virtually": {"_count": 1, "nose": {"_count": 1}}, "if": {"_count": 1, "Mafalda": {"_count": 1}}}, "Cornelius": {"_count": 78, "Fudge": {"_count": 46, "got": {"_count": 2}, "the": {"_count": 5}, "": {"_count": 6}, "this": {"_count": 1}, "Harry": {"_count": 2}, "Minister": {"_count": 4}, "sweating": {"_count": 1}, "and": {"_count": 4}, "had": {"_count": 2}, "who": {"_count": 2}, "was": {"_count": 5}, "is": {"_count": 1}, "appeared": {"_count": 1}, "after": {"_count": 1}, "obscuring": {"_count": 1}, "has": {"_count": 1}, "replaced": {"_count": 1}, "forward": {"_count": 1}, "confirmed": {"_count": 1}, "striding": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "walked": {"_count": 1}}, "that": {"_count": 1, "Hagrid": {"_count": 1}}, "I": {"_count": 3, "tell": {"_count": 1}, "do": {"_count": 1}, "am": {"_count": 1}}, "if": {"_count": 1, "youre": {"_count": 1}}, "Severus": {"_count": 1, "Poppy": {"_count": 1}}, "said": {"_count": 7, "Dumbledore": {"_count": 7}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "knowing": {"_count": 1, "that": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Oswald": {"_count": 2, "Fudge": {"_count": 2}}, "as": {"_count": 1, "I": {"_count": 1}}, "\u2018GoblinCrusher": {"_count": 1, "Fudge": {"_count": 1}}, "Fudges": {"_count": 1, "office": {"_count": 1}}, "just": {"_count": 1, "sent": {"_count": 1}}, "or": {"_count": 1, "will": {"_count": 1}}, "doesnt": {"_count": 1, "know": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}}, "Fudge": {"_count": 431, "got": {"_count": 3, "the": {"_count": 2}, "to": {"_count": 1}}, "the": {"_count": 6, "Minister": {"_count": 5}, "old": {"_count": 1}}, "": {"_count": 57, ".": {"_count": 52}, "?": {"_count": 3}, "!": {"_count": 2}}, "in": {"_count": 8, "rather": {"_count": 1}, "a": {"_count": 5}, "his": {"_count": 2}}, "uncomfortably": {"_count": 2, "": {"_count": 2}}, "fidgeting": {"_count": 1, "with": {"_count": 1}}, "not": {"_count": 1, "meeting": {"_count": 1}}, "could": {"_count": 3, "answer": {"_count": 2}, "think": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 2}, "completely": {"_count": 1}}, "looking": {"_count": 7, "alarmed": {"_count": 1}, "curiously": {"_count": 1}, "agitated": {"_count": 1}, "embarrassed": {"_count": 1}, "back": {"_count": 1}, "around": {"_count": 1}, "tired": {"_count": 1}}, "said": {"_count": 5, "Mr": {"_count": 2}, "": {"_count": 1}, "Black": {"_count": 1}, "glaring": {"_count": 1}}, "whose": {"_count": 2, "upper": {"_count": 1}, "occasional": {"_count": 1}}, "fiddling": {"_count": 2, "with": {"_count": 2}}, "stared": {"_count": 2, "at": {"_count": 2}}, "through": {"_count": 2, "the": {"_count": 2}}, "this": {"_count": 1, "morning": {"_count": 1}}, "has": {"_count": 8, "been": {"_count": 3}, "made": {"_count": 1}, "always": {"_count": 1}, "used": {"_count": 1}, "got": {"_count": 1}, "had": {"_count": 1}}, "a": {"_count": 4, "portly": {"_count": 1}, "smile": {"_count": 1}, "reassuring": {"_count": 1}, "difficult": {"_count": 1}}, "testily": {"_count": 1, "well": {"_count": 1}}, "increased": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 13, "still": {"_count": 1}, "looked": {"_count": 2}, "wasnt": {"_count": 1}, "was": {"_count": 4}, "likewise": {"_count": 1}, "recoiled": {"_count": 1}, "had": {"_count": 2}, "really": {"_count": 1}}, "pointedly": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "marched": {"_count": 1, "Harry": {"_count": 1}}, "indicating": {"_count": 1, "a": {"_count": 1}}, "took": {"_count": 2, "off": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "only": {"_count": 1}}, "once": {"_count": 1, "before": {"_count": 1}}, "wasnt": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 15, "Harry": {"_count": 2}, "stray": {"_count": 1}, "I": {"_count": 1}, "Snape": {"_count": 3}, "the": {"_count": 2}, "bring": {"_count": 1}, "once": {"_count": 1}, "take": {"_count": 1}, "opened": {"_count": 1}, "then": {"_count": 1}, "Dumbledore": {"_count": 1}}, "pouring": {"_count": 1, "out": {"_count": 1}}, "buttered": {"_count": 1, "himself": {"_count": 1}}, "smiled": {"_count": 1, "at": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 5, "buttering": {"_count": 1}, "matching": {"_count": 1}, "a": {"_count": 1}, "positively": {"_count": 1}, "radiant": {"_count": 1}}, "blinked": {"_count": 1, "": {"_count": 1}}, "waving": {"_count": 1, "his": {"_count": 1}}, "frowning": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 17, "suddenly": {"_count": 1}, "looking": {"_count": 2}, "shaking": {"_count": 1}, "still": {"_count": 1}, "standing": {"_count": 2}, "saying": {"_count": 2}, "opening": {"_count": 1}, "a": {"_count": 1}, "not": {"_count": 1}, "talking": {"_count": 1}, "glaring": {"_count": 1}, "now": {"_count": 1}, "sure": {"_count": 1}, "becoming": {"_count": 1}}, "strode": {"_count": 1, "out": {"_count": 1}}, "been": {"_count": 1, "waiting": {"_count": 1}}, "came": {"_count": 3, "back": {"_count": 1}, "striding": {"_count": 1}, "to": {"_count": 1}}, "with": {"_count": 6, "a": {"_count": 4}, "her": {"_count": 1}, "the": {"_count": 1}}, "cleared": {"_count": 2, "his": {"_count": 2}}, "shuddered": {"_count": 1, "slightly": {"_count": 1}}, "flatly": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 2, "the": {"_count": 2}}, "let": {"_count": 1, "me": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 2}}, "keeps": {"_count": 1, "telling": {"_count": 1}}, "wanted": {"_count": 1, "it": {"_count": 1}}, "went": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 3, "Blacks": {"_count": 1}, "I": {"_count": 1}, "we": {"_count": 1}}, "had": {"_count": 18, "been": {"_count": 1}, "greeted": {"_count": 1}, "joined": {"_count": 1}, "looked": {"_count": 1}, "taken": {"_count": 1}, "then": {"_count": 1}, "actually": {"_count": 1}, "thrown": {"_count": 1}, "indeed": {"_count": 1}, "started": {"_count": 1}, "panted": {"_count": 1}, "talked": {"_count": 1}, "stood": {"_count": 1}, "appeared": {"_count": 1}, "added": {"_count": 1}, "erupted": {"_count": 1}, "vanished": {"_count": 1}, "told": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "wouldnt": {"_count": 2, "either": {"_count": 1}, "let": {"_count": 1}}, "Minister": {"_count": 5, "of": {"_count": 5}}, "shortly": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "are": {"_count": 1}}, "gruffly": {"_count": 1, "": {"_count": 1}}, "dropped": {"_count": 1, "his": {"_count": 1}}, "heavily": {"_count": 1, "": {"_count": 1}}, "bitterly": {"_count": 1, "": {"_count": 1}}, "kindly": {"_count": 1, "Pettigrew": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "thickly": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 2, "": {"_count": 2}}, "evasively": {"_count": 1, "": {"_count": 1}}, "Flies": {"_count": 1, "": {"_count": 1}}, "sweating": {"_count": 1, "slightly": {"_count": 1}}, "casting": {"_count": 1, "an": {"_count": 1}}, "an": {"_count": 1, "Dumbledore": {"_count": 1}}, "startled": {"_count": 1, "the": {"_count": 1}}, "consulted": {"_count": 1, "the": {"_count": 1}}, "wouldve": {"_count": 2, "come": {"_count": 1}, "told": {"_count": 1}}, "passed": {"_count": 2, "Harry": {"_count": 1}, "this": {"_count": 1}}, "Snape": {"_count": 1, "and": {"_count": 1}}, "appeared": {"_count": 3, "angry": {"_count": 1}, "upside": {"_count": 1}, "it": {"_count": 1}}, "barked": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "staring": {"_count": 1, "after": {"_count": 1}}, "running": {"_count": 1, "his": {"_count": 1}}, "shook": {"_count": 1, "Harrys": {"_count": 1}}, "wearily": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "smiling": {"_count": 1, "and": {"_count": 1}}, "comfortably": {"_count": 1, "": {"_count": 1}}, "sounding": {"_count": 2, "outraged": {"_count": 1}, "bitter": {"_count": 1}}, "sounded": {"_count": 1, "embarrassed": {"_count": 1}}, "angrily": {"_count": 3, "": {"_count": 3}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "jovially": {"_count": 1, "moving": {"_count": 1}}, "arrived": {"_count": 1, "for": {"_count": 1}}, "reckons": {"_count": 1, "Madame": {"_count": 1}}, "jumping": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 11, "going": {"_count": 1}, "": {"_count": 1}, "forcing": {"_count": 1}, "behind": {"_count": 1}, "frightened": {"_count": 1}, "meeting": {"_count": 1}, "acting": {"_count": 1}, "scared": {"_count": 1}, "blaming": {"_count": 1}, "leaning": {"_count": 1}, "Madam": {"_count": 1}}, "demanded": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 2, "Professor": {"_count": 1}, "Dumbledore": {"_count": 1}}, "trembling": {"_count": 1, "all": {"_count": 1}}, "as": {"_count": 6, "though": {"_count": 1}, "a": {"_count": 2}, "Dumbledore": {"_count": 1}, "he": {"_count": 1}, "Minister": {"_count": 1}}, "looked": {"_count": 5, "as": {"_count": 1}, "back": {"_count": 1}, "incredulously": {"_count": 1}, "from": {"_count": 1}, "around": {"_count": 1}}, "still": {"_count": 3, "had": {"_count": 1}, "backing": {"_count": 1}, "smirking": {"_count": 1}}, "shot": {"_count": 1, "Harry": {"_count": 1}}, "reddened": {"_count": 1, "slightly": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "visibly": {"_count": 1, "affronted": {"_count": 1}}, "again": {"_count": 5, "": {"_count": 2}, "shuffling": {"_count": 1}, "smirking": {"_count": 1}, "but": {"_count": 1}}, "shrieked": {"_count": 1, "finding": {"_count": 1}}, "gasped": {"_count": 1, "shaking": {"_count": 1}}, "bristled": {"_count": 1, "as": {"_count": 1}}, "stepped": {"_count": 1, "back": {"_count": 1}}, "thinks": {"_count": 4, "he": {"_count": 1}, "I": {"_count": 1}, "Dumbledores": {"_count": 1}, "Dumbledore": {"_count": 1}}, "suspects": {"_count": 1, "Dad": {"_count": 1}}, "only": {"_count": 1, "wants": {"_count": 1}}, "after": {"_count": 1, "YouKnowWho": {"_count": 1}}, "knows": {"_count": 1, "Dumbledores": {"_count": 1}}, "just": {"_count": 1, "cant": {"_count": 1}}, "over": {"_count": 1, "them": {"_count": 1}}, "spoke": {"_count": 1, "again": {"_count": 1}}, "loudly": {"_count": 1, "when": {"_count": 1}}, "eyeing": {"_count": 1, "her": {"_count": 1}}, "snorted": {"_count": 1, "derisively": {"_count": 1}}, "loftily": {"_count": 1, "": {"_count": 1}}, "icily": {"_count": 1, "": {"_count": 1}}, "forcefully": {"_count": 1, "and": {"_count": 1}}, "leaned": {"_count": 1, "forward": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "gesturing": {"_count": 1, "flamboyantly": {"_count": 1}}, "shouted": {"_count": 1, "banging": {"_count": 1}}, "attempted": {"_count": 2, "to": {"_count": 2}}, "savagely": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 2, "a": {"_count": 1}, "back": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "glanced": {"_count": 1, "around": {"_count": 1}}, "seemed": {"_count": 2, "quite": {"_count": 1}, "not": {"_count": 1}}, "acted": {"_count": 1, "as": {"_count": 1}}, "mere": {"_count": 1, "weeks": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 2, "level": {"_count": 1}, "his": {"_count": 1}}, "Go": {"_count": 1, "to": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "have": {"_count": 1, "wanted": {"_count": 1}}, "doesnt": {"_count": 1, "want": {"_count": 1}}, "obscuring": {"_count": 1, "Hermione": {"_count": 1}}, "gesticulated": {"_count": 1, "forcefully": {"_count": 1}}, "George": {"_count": 1, "muttered": {"_count": 1}}, "I": {"_count": 2, "mean": {"_count": 1}, "swear": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "wont": {"_count": 1, "let": {"_count": 1}}, "appreciatively": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "voice": {"_count": 2}}, "nodding": {"_count": 1, "and": {"_count": 1}}, "heartily": {"_count": 1, "": {"_count": 1}}, "leapt": {"_count": 1, "backward": {"_count": 1}}, "fixing": {"_count": 1, "Marietta": {"_count": 1}}, "asked": {"_count": 1, "Umbridge": {"_count": 1}}, "bouncing": {"_count": 1, "up": {"_count": 1}}, "remained": {"_count": 1, "motionless": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "recovering": {"_count": 1, "himself": {"_count": 1}}, "pulling": {"_count": 2, "out": {"_count": 1}, "up": {"_count": 1}}, "Umbridge": {"_count": 1, "Kingsley": {"_count": 1}}, "will": {"_count": 1, "soon": {"_count": 1}}, "pushing": {"_count": 1, "himself": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "nastily": {"_count": 1, "straightening": {"_count": 1}}, "MINISTER": {"_count": 1, "OF": {"_count": 1}}, "would": {"_count": 1, "react": {"_count": 1}}, "replaced": {"_count": 1, "by": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "jumped": {"_count": 1, "so": {"_count": 1}}, "apparently": {"_count": 1, "beside": {"_count": 1}}, "spun": {"_count": 1, "around": {"_count": 1}}, "goggled": {"_count": 1, "worse": {"_count": 1}}, "confirmed": {"_count": 1, "that": {"_count": 1}}, "striding": {"_count": 1, "forward": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "fixed": {"_count": 1, "the": {"_count": 1}}, "gently": {"_count": 1, "": {"_count": 1}}, "poking": {"_count": 1, "his": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "already": {"_count": 1, "with": {"_count": 1}}, "stepping": {"_count": 1, "out": {"_count": 1}}, "interrupted": {"_count": 1, "": {"_count": 1}}, "distractedly": {"_count": 1, "turning": {"_count": 1}}, "continued": {"_count": 1, "But": {"_count": 1}}, "speaking": {"_count": 1, "more": {"_count": 1}}, "coloring": {"_count": 1, "up": {"_count": 1}}, "heatedly": {"_count": 1, "": {"_count": 1}}, "miserably": {"_count": 1, "": {"_count": 1}}, "grimaced": {"_count": 1, "": {"_count": 1}}, "sighed": {"_count": 1, "": {"_count": 1}}, "barely": {"_count": 1, "listening": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "subsided": {"_count": 1, "into": {"_count": 1}}, "told": {"_count": 1, "you": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "pretending": {"_count": 1, "everythings": {"_count": 1}}, "so": {"_count": 1, "Id": {"_count": 1}}, "did": {"_count": 1, "last": {"_count": 1}}, "walked": {"_count": 1, "past": {"_count": 1}}, "or": {"_count": 1, "Scrimgeour": {"_count": 1}}}, "Bungler": {"_count": 1, "if": {"_count": 1, "ever": {"_count": 1}}}, "pelts": {"_count": 1, "Dumbledore": {"_count": 1, "with": {"_count": 1}}}, "askin": {"_count": 4, "fer": {"_count": 2, "advice": {"_count": 1}, "photos": {"_count": 1}}, "Ronan": {"_count": 1, "you": {"_count": 1}}, "stupid": {"_count": 1, "questions": {"_count": 1}}}, "advice": {"_count": 34, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "on": {"_count": 4, "gettin": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "how": {"_count": 1}}, "but": {"_count": 1, "signed": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "Go": {"_count": 1, "straight": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "said": {"_count": 2, "Moody": {"_count": 1}, "Lupin": {"_count": 1}}, "from": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 4, "stopped": {"_count": 1}, "had": {"_count": 1}, "opinions": {"_count": 1}, "encouragement": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "later": {"_count": 1}}, "which": {"_count": 1, "is": {"_count": 1}}, "about": {"_count": 1, "girls": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "less": {"_count": 1, "his": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}}, "main": {"_count": 25, "job": {"_count": 1, "is": {"_count": 1}}, "castle": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "road": {"_count": 5, "said": {"_count": 1}, "ahead": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}, "Harry": {"_count": 1}}, "school": {"_count": 2, "clouds": {"_count": 1}, "on": {"_count": 1}}, "thing": {"_count": 2, "is": {"_count": 2}}, "street": {"_count": 4, "past": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "fairly": {"_count": 1, "straightforward": {"_count": 1}}, "the": {"_count": 1, "perpetrators": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "room": {"_count": 1, "which": {"_count": 1}}, "lane": {"_count": 1, "his": {"_count": 1}}, "elements": {"_count": 1, "now": {"_count": 1}}, "hall": {"_count": 2, "beyond": {"_count": 1}, "as": {"_count": 1}}}, "d": {"_count": 17, "be": {"_count": 3, "wantin": {"_count": 1}, "anything": {"_count": 1}, "some": {"_count": 1}}, "been": {"_count": 1, "a": {"_count": 1}}, "THE": {"_count": 1, "DEATHDAY": {"_count": 1}}, "told": {"_count": 1, "you": {"_count": 1}}, "FLIGHT": {"_count": 1, "OF": {"_count": 1}}, "you": {"_count": 2, "get": {"_count": 2}}, "dont": {"_count": 1, "believe": {"_count": 1}}, "know": {"_count": 1, "by": {"_count": 1}}, "have": {"_count": 1, "to": {"_count": 1}}, "aaRRRRRGH": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "anythin": {"_count": 1}}, "ddont": {"_count": 1, "want": {"_count": 1}}, "hurry": {"_count": 1, "up": {"_count": 1}}, "HE": {"_count": 1, "IS": {"_count": 1}}}, "wantin": {"_count": 2, "magic": {"_count": 1, "solutions": {"_count": 1}}, "ter": {"_count": 1, "go": {"_count": 1}}}, "solutions": {"_count": 1, "to": {"_count": 1, "their": {"_count": 1}}}, "bumped": {"_count": 6, "gently": {"_count": 1, "into": {"_count": 1}}, "her": {"_count": 1, "large": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "Ginny": {"_count": 1}, "each": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}}, "harbor": {"_count": 3, "wall": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}}, "folded": {"_count": 55, "up": {"_count": 6, "his": {"_count": 1}, "the": {"_count": 3}, "Siriuss": {"_count": 1}, "her": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "neatly": {"_count": 1, "underneath": {"_count": 1}}, "the": {"_count": 2, "note": {"_count": 1}, "map": {"_count": 1}}, "into": {"_count": 1, "one": {"_count": 1}}, "its": {"_count": 2, "great": {"_count": 1}, "leathery": {"_count": 1}}, "it": {"_count": 2, "carefully": {"_count": 2}}, "tight": {"_count": 2, "to": {"_count": 2}}, "carefully": {"_count": 1, "under": {"_count": 1}}, "to": {"_count": 1, "hide": {"_count": 1}}, "his": {"_count": 5, "wings": {"_count": 1}, "arms": {"_count": 3}, "scar": {"_count": 1}}, "this": {"_count": 1, "note": {"_count": 1}}, "her": {"_count": 4, "lips": {"_count": 1}, "wings": {"_count": 1}, "arms": {"_count": 2}}, "he": {"_count": 2, "seemed": {"_count": 2}}, "page": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "himself": {"_count": 1, "in": {"_count": 1}}, "robes": {"_count": 1, "as": {"_count": 1}}, "clicking": {"_count": 1, "her": {"_count": 1}}, "back": {"_count": 1, "page": {"_count": 1}}, "tightly": {"_count": 1, "across": {"_count": 1}}, "causing": {"_count": 1, "the": {"_count": 1}}, "ones": {"_count": 1, "and": {"_count": 1}}, "once": {"_count": 1, "she": {"_count": 1}}, "staring": {"_count": 1, "over": {"_count": 1}}, "square": {"_count": 1, "of": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 1}, "turning": {"_count": 1}}, "glaring": {"_count": 1, "in": {"_count": 1}}, "parchment": {"_count": 1, "wedged": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "front": {"_count": 1}}, "and": {"_count": 1, "magicked": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}}, "clambered": {"_count": 33, "up": {"_count": 5, "the": {"_count": 1}, "a": {"_count": 1}, "them": {"_count": 1}, "onto": {"_count": 1}, "behind": {"_count": 1}}, "onto": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 3}}, "out": {"_count": 4, "onto": {"_count": 1}, "of": {"_count": 2}, "over": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 3}, "him": {"_count": 1}}, "back": {"_count": 3, "into": {"_count": 1}, "down": {"_count": 1}, "up": {"_count": 1}}, "upward": {"_count": 2, "without": {"_count": 1}, "with": {"_count": 1}}, "into": {"_count": 3, "their": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "looking": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "on": {"_count": 1}}, "laboriously": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 2}}, "the": {"_count": 1, "real": {"_count": 1}}}, "steps": {"_count": 218, "onto": {"_count": 3, "the": {"_count": 3}}, "toward": {"_count": 6, "him": {"_count": 1}, "the": {"_count": 4}, "Harry": {"_count": 1}}, "but": {"_count": 2, "could": {"_count": 1}, "instead": {"_count": 1}}, "and": {"_count": 20, "crowded": {"_count": 1}, "crossing": {"_count": 1}, "helped": {"_count": 1}, "emerged": {"_count": 1}, "disappear": {"_count": 1}, "haring": {"_count": 1}, "lined": {"_count": 1}, "looking": {"_count": 1}, "out": {"_count": 4}, "ran": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 4}, "moved": {"_count": 1}, "threw": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "into": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 6}, "number": {"_count": 1}}, "Harry": {"_count": 1, "turned": {"_count": 1}}, "landing": {"_count": 1, "catlike": {"_count": 1}}, "to": {"_count": 15, "every": {"_count": 1}, "Gringotts": {"_count": 1}, "the": {"_count": 7}, "take": {"_count": 1}, "a": {"_count": 1}, "secure": {"_count": 1}, "LADIES": {"_count": 1}, "where": {"_count": 1}, "face": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 27}, "!": {"_count": 1}}, "they": {"_count": 2, "all": {"_count": 2}}, "into": {"_count": 28, "the": {"_count": 27}, "a": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "instead": {"_count": 1, "toward": {"_count": 1}}, "three": {"_count": 1, "at": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 2}, "swirling": {"_count": 1}}, "getting": {"_count": 1, "dizzier": {"_count": 1}}, "now": {"_count": 2, "watching": {"_count": 1}, "Harry": {"_count": 1}}, "which": {"_count": 1, "rose": {"_count": 1}}, "two": {"_count": 1, "hundred": {"_count": 1}}, "he": {"_count": 3, "lost": {"_count": 1}, "glanced": {"_count": 1}, "was": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 2, "series": {"_count": 1}, "little": {"_count": 1}}, "too": {"_count": 1, "looking": {"_count": 1}}, "for": {"_count": 1, "Transfiguration": {"_count": 1}}, "the": {"_count": 2, "dull": {"_count": 1}, "others": {"_count": 1}}, "keeping": {"_count": 1, "his": {"_count": 1}}, "beyond": {"_count": 1, "it": {"_count": 1}}, "around": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 4, "their": {"_count": 1}, "the": {"_count": 3}}, "where": {"_count": 1, "they": {"_count": 1}}, "below": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "stopping": {"_count": 1, "in": {"_count": 1}}, "I": {"_count": 2, "took": {"_count": 1}, "have": {"_count": 1}}, "closer": {"_count": 2, "taking": {"_count": 1}, "to": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 7, "a": {"_count": 6}, "last": {"_count": 1}}, "leading": {"_count": 5, "up": {"_count": 3}, "downstairs": {"_count": 1}, "to": {"_count": 1}}, "melted": {"_count": 1, "together": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "past": {"_count": 2, "the": {"_count": 1}, "Neville": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "backward": {"_count": 4, "hit": {"_count": 1}, "Filch": {"_count": 1}, "and": {"_count": 1}, "stunned": {"_count": 1}}, "forward": {"_count": 2, "": {"_count": 1}, "Neville": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "her": {"_count": 1, "limp": {"_count": 1}}, "opposite": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 2, "pulling": {"_count": 1}, "into": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "straining": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "that": {"_count": 2, "led": {"_count": 2}}, "back": {"_count": 2, "toward": {"_count": 1}, "from": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 3}}, "Ginny": {"_count": 1, "behind": {"_count": 1}}, "one": {"_count": 1, "labeled": {"_count": 1}}, "stuffing": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "being": {"_count": 1}}, "listening": {"_count": 1, "with": {"_count": 1}}, "next": {"_count": 1, "moment": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "stopping": {"_count": 1}}, "nodding": {"_count": 1, "left": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "some": {"_count": 1}}, "led": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "Tonks": {"_count": 1}}, "trembled": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}}, "Passersby": {"_count": 1, "stared": {"_count": 1, "a": {"_count": 1}}}, "station": {"_count": 55, "": {"_count": 20, ".": {"_count": 18}, "?": {"_count": 1}, "!": {"_count": 1}}, "Harry": {"_count": 1, "only": {"_count": 1}}, "the": {"_count": 3, "next": {"_count": 2}, "fumes": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "for": {"_count": 1, "him": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "September": {"_count": 1}}, "and": {"_count": 2, "back": {"_count": 1}, "there": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "platform": {"_count": 2, "nine": {"_count": 1}, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "tomorrow": {"_count": 1, "so": {"_count": 1}}, "exit": {"_count": 1, "Hedwig": {"_count": 1}}, "Frank": {"_count": 1, "was": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "Percy": {"_count": 1}}, "themselves": {"_count": 1, "around": {"_count": 1}}, "they": {"_count": 2, "found": {"_count": 1}, "lingered": {"_count": 1}}, "despite": {"_count": 1, "Mr": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "windows": {"_count": 1, "behind": {"_count": 1}}, "didnt": {"_count": 1, "we": {"_count": 1}}, "ceiling": {"_count": 1, "wearing": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "Is": {"_count": 1, "Tonks": {"_count": 1}}, "without": {"_count": 1, "speaking": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}}, "meters": {"_count": 1, "and": {"_count": 1, "saying": {"_count": 1}}}, "Things": {"_count": 10, "these": {"_count": 1, "Muggles": {"_count": 1}}, "didnt": {"_count": 1, "improve": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 2, "were": {"_count": 1}, "happened": {"_count": 1}}, "are": {"_count": 3, "the": {"_count": 1}, "changing": {"_count": 1}, "bad": {"_count": 1}}, "all": {"_count": 1, "last": {"_count": 1}}}, "panting": {"_count": 66, "a": {"_count": 4, "bit": {"_count": 1}, "searing": {"_count": 1}, "minute": {"_count": 1}, "little": {"_count": 1}}, "they": {"_count": 1, "reached": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 4}}, "Rons": {"_count": 1, "wand": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 16, "had": {"_count": 1}, "squeaking": {"_count": 1}, "saw": {"_count": 1}, "glaring": {"_count": 1}, "rubbing": {"_count": 1}, "holding": {"_count": 1}, "thinking": {"_count": 1}, "sweating": {"_count": 1}, "stared": {"_count": 1}, "shivering": {"_count": 1}, "watched": {"_count": 1}, "coughing": {"_count": 2}, "clutching": {"_count": 1}, "exhausted": {"_count": 1}, "Harry": {"_count": 1}}, "slightly": {"_count": 6, "hurrying": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "breathing": {"_count": 1}, "looking": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 2}, "pain": {"_count": 1}}, "his": {"_count": 3, "white": {"_count": 1}, "hands": {"_count": 1}, "forehead": {"_count": 1}}, "for": {"_count": 1, "breath": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "wizards": {"_count": 1, "carrying": {"_count": 1}}, "pulled": {"_count": 1, "Ron": {"_count": 1}}, "into": {"_count": 2, "sight": {"_count": 2}}, "then": {"_count": 1, "a": {"_count": 1}}, "neither": {"_count": 1, "saying": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "hard": {"_count": 1}}, "hard": {"_count": 1, "a": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "somewhere": {"_count": 1, "overhead": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "their": {"_count": 1}}, "voice": {"_count": 1, "spoke": {"_count": 1}}, "onto": {"_count": 1, "grass": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "along": {"_count": 1, "at": {"_count": 1}}, "turning": {"_count": 1, "on": {"_count": 1}}}, "Crikey": {"_count": 1, "Id": {"_count": 1, "like": {"_count": 1}}}, "dragon": {"_count": 142, "": {"_count": 19, ".": {"_count": 11}, "!": {"_count": 3}, "?": {"_count": 5}}, "hide": {"_count": 3, "or": {"_count": 1}, "": {"_count": 1}, "gloves": {"_count": 1}}, "but": {"_count": 1, "too": {"_count": 1}}, "heartstring": {"_count": 5, "": {"_count": 4}, "he": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 2}, "the": {"_count": 2}}, "hatching": {"_count": 1, "": {"_count": 1}}, "flopped": {"_count": 1, "onto": {"_count": 1}}, "was": {"_count": 5, "keeping": {"_count": 1}, "rearing": {"_count": 1}, "tethered": {"_count": 1}, "going": {"_count": 1}, "still": {"_count": 1}}, "with": {"_count": 3, "misty": {"_count": 1}, "vertical": {"_count": 1}, "a": {"_count": 1}}, "bite": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "in": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 7, "a": {"_count": 2}, "start": {"_count": 1}, "captured": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "plummeted": {"_count": 1}}, "eggs": {"_count": 4, "if": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}}, "dealer": {"_count": 1, "mightn": {"_count": 1}}, "egg": {"_count": 2, "an": {"_count": 1}, "": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "a": {"_count": 2, "fullygrown": {"_count": 1}, "Welsh": {"_count": 1}}, "Norbert": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "dung": {"_count": 5, "outside": {"_count": 1}, "compost": {"_count": 1}, "in": {"_count": 1}, "Professor": {"_count": 1}, "said": {"_count": 1}}, "bogies": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "killer": {"_count": 1, "for": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 2, "Harry": {"_count": 1}, "an": {"_count": 1}}, "were": {"_count": 1, "attempting": {"_count": 1}}, "keepers": {"_count": 3, "pull": {"_count": 1}, "lowered": {"_count": 1}, "rushing": {"_count": 1}}, "nearest": {"_count": 1, "to": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "black": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "than": {"_count": 1, "back": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "keeps": {"_count": 1, "popping": {"_count": 1}}, "you": {"_count": 2, "will": {"_count": 1}, "didnt": {"_count": 1}}, "knew": {"_count": 1, "what": {"_count": 1}}, "go": {"_count": 1, "for": {"_count": 1}}, "changed": {"_count": 1, "its": {"_count": 1}}, "unscathed": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "my": {"_count": 1}, "it": {"_count": 1}}, "liver": {"_count": 1, "into": {"_count": 1}}, "skin": {"_count": 5, "gloves": {"_count": 1}, "an": {"_count": 1}, "little": {"_count": 1}, "briefcase": {"_count": 1}, "": {"_count": 1}}, "meat": {"_count": 1, "Hagrid": {"_count": 1}}, "steak": {"_count": 6, "and": {"_count": 1}, "out": {"_count": 1}, "over": {"_count": 1}, "pressed": {"_count": 1}, "from": {"_count": 2}}, "blood": {"_count": 2, "was": {"_count": 1}, "dripped": {"_count": 1}}, "pox": {"_count": 5, "vanishing": {"_count": 1}, "at": {"_count": 1}, "shortly": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "manure": {"_count": 1, "on": {"_count": 1}}, "claw": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "population": {"_count": 1, "under": {"_count": 1}}, "repeated": {"_count": 1, "the": {"_count": 1}}, "eggshells": {"_count": 1, "corked": {"_count": 1}}, "fire": {"_count": 1, "burst": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 2}}, "roar": {"_count": 1, "on": {"_count": 1}}, "had": {"_count": 3, "not": {"_count": 1}, "room": {"_count": 1}, "drunk": {"_count": 1}}, "became": {"_count": 1, "aware": {"_count": 1}}, "opened": {"_count": 1, "its": {"_count": 1}}, "clawed": {"_count": 1, "and": {"_count": 1}}, "enlarge": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "which": {"_count": 1, "could": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "headed": {"_count": 1, "for": {"_count": 1}}, "flew": {"_count": 3, "cities": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "Hermione": {"_count": 1, "it": {"_count": 1}}}, "train": {"_count": 161, "to": {"_count": 3, "London": {"_count": 1}, "Hogwarts": {"_count": 1}, "know": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 28}, "?": {"_count": 6}}, "leaves": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 5, "would": {"_count": 1}, "left": {"_count": 1}, "Harry": {"_count": 1}, "someone": {"_count": 1}, "rattled": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "from": {"_count": 1, "platform": {"_count": 1}}, "door": {"_count": 3, "": {"_count": 1}, "hissing": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 10, "see": {"_count": 1}, "broke": {"_count": 1}, "joined": {"_count": 1}, "thought": {"_count": 1}, "it": {"_count": 1}, "then": {"_count": 1}, "the": {"_count": 2}, "I": {"_count": 1}, "off": {"_count": 1}}, "began": {"_count": 6, "to": {"_count": 6}}, "until": {"_count": 1, "it": {"_count": 1}}, "rounded": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Lee": {"_count": 1, "Jordans": {"_count": 1}}, "had": {"_count": 3, "carried": {"_count": 1}, "rounded": {"_count": 1}, "turned": {"_count": 1}}, "did": {"_count": 1, "seem": {"_count": 1}}, "We": {"_count": 1, "will": {"_count": 1}}, "it": {"_count": 2, "will": {"_count": 1}, "had": {"_count": 1}}, "slowed": {"_count": 3, "right": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 1}}, "back": {"_count": 4, "to": {"_count": 2}, "off": {"_count": 1}, "from": {"_count": 1}}, "home": {"_count": 1, "tomorrow": {"_count": 1}}, "coming": {"_count": 1, "here": {"_count": 1}}, "tracks": {"_count": 1, "through": {"_count": 1}}, "Ron": {"_count": 1, "whispered": {"_count": 1}}, "as": {"_count": 4, "they": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}, "usual": {"_count": 1}}, "miles": {"_count": 1, "below": {"_count": 1}}, "isnt": {"_count": 1, "good": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "their": {"_count": 1, "new": {"_count": 1}}, "straight": {"_count": 1, "back": {"_count": 1}}, "you": {"_count": 2, "all": {"_count": 1}, "were": {"_count": 1}}, "him": {"_count": 1, "as": {"_count": 1}}, "gets": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 2, "better": {"_count": 1}, "moldy": {"_count": 1}}, "past": {"_count": 1, "packed": {"_count": 1}}, "slamming": {"_count": 1, "all": {"_count": 1}}, "turned": {"_count": 1, "a": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "journey": {"_count": 1, "to": {"_count": 1}}, "sped": {"_count": 2, "yet": {"_count": 1}, "them": {"_count": 1}}, "rattled": {"_count": 3, "the": {"_count": 1}, "onward": {"_count": 1}, "along": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 3, "getting": {"_count": 1}, "gathering": {"_count": 2}}, "came": {"_count": 2, "to": {"_count": 2}}, "stopped": {"_count": 1, "at": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "compartment": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "Professor": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "doors": {"_count": 2, "": {"_count": 1}, "opened": {"_count": 1}}, "moved": {"_count": 1, "farther": {"_count": 1}}, "heads": {"_count": 1, "bent": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "first": {"_count": 1, "day": {"_count": 1}}, "of": {"_count": 3, "thought": {"_count": 3}}, "in": {"_count": 2, "a": {"_count": 1}, "old": {"_count": 1}}, "now": {"_count": 1, "hurry": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "window": {"_count": 1, "trying": {"_count": 1}}, "made": {"_count": 2, "us": {"_count": 1}, "such": {"_count": 1}}, "trolls": {"_count": 1, "for": {"_count": 1}}, "em": {"_count": 1, "And": {"_count": 1}}, "rattling": {"_count": 1, "toward": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "hordes": {"_count": 1}}, "said": {"_count": 2, "Ernie": {"_count": 1}, "Harry": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "windows": {"_count": 2, "was": {"_count": 1}, "became": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "or": {"_count": 1, "I": {"_count": 1}}, "departed": {"_count": 1, "again": {"_count": 1}}, "without": {"_count": 1, "them": {"_count": 1}}, "lurched": {"_count": 1, "causing": {"_count": 1}}, "gathered": {"_count": 1, "momentum": {"_count": 1}}, "werent": {"_count": 1, "they": {"_count": 1}}, "ticket": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "folded": {"_count": 1, "her": {"_count": 1}}}, "bills": {"_count": 1, "to": {"_count": 1, "Harry": {"_count": 1}}}, "tickets": {"_count": 18, "": {"_count": 4, ".": {"_count": 4}}, "from": {"_count": 1, "work": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "are": {"_count": 1, "extremely": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "safely": {"_count": 1, "into": {"_count": 1}}, "have": {"_count": 1, "to": {"_count": 1}}, "cost": {"_count": 1, "about": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "Bagman": {"_count": 1, "beamed": {"_count": 1}}, "instead": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 2, "continued": {"_count": 1}, "visitors": {"_count": 1}}, "whenever": {"_count": 1, "I": {"_count": 1}}}, "seats": {"_count": 90, "and": {"_count": 5, "sat": {"_count": 1}, "they": {"_count": 1}, "were": {"_count": 2}, "saw": {"_count": 1}}, "were": {"_count": 3, "too": {"_count": 1}, "raised": {"_count": 1}, "Fred": {"_count": 1}}, "to": {"_count": 4, "eat": {"_count": 1}, "the": {"_count": 1}, "look": {"_count": 1}, "see": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 14}, "?": {"_count": 2}, "!": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 5}, "a": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "squinting": {"_count": 1, "at": {"_count": 1}}, "along": {"_count": 4, "Harry": {"_count": 1}, "Fred": {"_count": 1}, "from": {"_count": 2}}, "his": {"_count": 1, "camera": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 1}, "either": {"_count": 2}, "which": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "instead": {"_count": 2, "half": {"_count": 1}, "of": {"_count": 1}}, "farthest": {"_count": 1, "away": {"_count": 1}}, "down": {"_count": 2, "from": {"_count": 2}}, "with": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "which": {"_count": 2, "rose": {"_count": 1}, "were": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "there": {"_count": 1, "than": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 4}}, "until": {"_count": 1, "Madame": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "draped": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 3, "had": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}}, "smiled": {"_count": 1, "indulgently": {"_count": 1}}, "the": {"_count": 1, "woman": {"_count": 1}}, "their": {"_count": 1, "goblets": {"_count": 1}}, "Dumbledore": {"_count": 1, "continued": {"_count": 1}}, "together": {"_count": 1, "about": {"_count": 1}}, "some": {"_count": 1, "slid": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "when": {"_count": 1, "Neville": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "apparently": {"_count": 1, "he": {"_count": 1}}, "causing": {"_count": 1, "much": {"_count": 1}}, "ahead": {"_count": 1, "Hermione": {"_count": 1}}, "was": {"_count": 1, "firing": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "been": {"_count": 1, "empty": {"_count": 1}}, "than": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "my": {"_count": 1}}, "necessitating": {"_count": 1, "Professor": {"_count": 1}}, "opposite": {"_count": 1, "him": {"_count": 1}}}, "knitting": {"_count": 9, "what": {"_count": 1, "looked": {"_count": 1}}, "needles": {"_count": 2, "flashed": {"_count": 1}, "so": {"_count": 1}}, "a": {"_count": 2, "pair": {"_count": 1}, "few": {"_count": 1}}, "elf": {"_count": 1, "hats": {"_count": 1}}, "patterns": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "canaryyellow": {"_count": 1, "circus": {"_count": 1, "tent": {"_count": 1}}}, "circus": {"_count": 3, "tent": {"_count": 2, "": {"_count": 2}}, "and": {"_count": 1, "she": {"_count": 1}}}, "tent": {"_count": 141, "": {"_count": 26, ".": {"_count": 25}, "!": {"_count": 1}}, "a": {"_count": 2, "flashlight": {"_count": 1}, "wide": {"_count": 1}}, "so": {"_count": 1, "obviously": {"_count": 1}}, "that": {"_count": 4, "had": {"_count": 2}, "Harry": {"_count": 1}, "night": {"_count": 1}}, "flap": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 12, "seemed": {"_count": 1}, "Harry": {"_count": 2}, "saw": {"_count": 1}, "hearing": {"_count": 1}, "he": {"_count": 1}, "looking": {"_count": 1}, "let": {"_count": 1}, "twice": {"_count": 1}, "flames": {"_count": 1}, "Hermione": {"_count": 1}, "retreated": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "somehow": {"_count": 1}}, "holding": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 5, "a": {"_count": 1}, "ensuite": {"_count": 1}, "Bagman": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "to": {"_count": 5, "introduce": {"_count": 1}, "form": {"_count": 1}, "search": {"_count": 1}, "wait": {"_count": 1}, "find": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "Harry": {"_count": 4, "Potter": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "closed": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 3, "at": {"_count": 1}, "by": {"_count": 1}, "lagging": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "fully": {"_count": 1, "dressed": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Mr": {"_count": 1}, "Crouch": {"_count": 1}}, "if": {"_count": 1, "nobodys": {"_count": 1}}, "as": {"_count": 2, "fast": {"_count": 1}, "they": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "slid": {"_count": 1}}, "again": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "their": {"_count": 1, "owners": {"_count": 1}}, "avoiding": {"_count": 1, "each": {"_count": 1}}, "the": {"_count": 2, "panic": {"_count": 1}, "general": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 2, "worried": {"_count": 1}, "stubborn": {"_count": 1}}, "was": {"_count": 3, "divided": {"_count": 1}, "flooded": {"_count": 1}, "footsteps": {"_count": 1}}, "two": {"_count": 1, "people": {"_count": 1}}, "rejoined": {"_count": 1, "Ron": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "added": {"_count": 1}}, "pulled": {"_count": 1, "me": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "himself": {"_count": 1}}, "emerged": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 4, "which": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}}, "pegs": {"_count": 1, "": {"_count": 1}}, "peg": {"_count": 1, "soared": {"_count": 1}}, "could": {"_count": 1, "walk": {"_count": 1}}, "all": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "empty": {"_count": 1, "handed": {"_count": 1}}, "on": {"_count": 3, "mulches": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "entrance": {"_count": 5, "": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "bringing": {"_count": 1}, "on": {"_count": 1}}, "Harrys": {"_count": 1, "breathing": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "feeling": {"_count": 2, "that": {"_count": 1}, "as": {"_count": 1}}, "then": {"_count": 1, "realized": {"_count": 1}}, "because": {"_count": 1, "theres": {"_count": 1}}, "roof": {"_count": 1, "but": {"_count": 1}}, "tears": {"_count": 1, "were": {"_count": 1}}, "whose": {"_count": 1, "only": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "but": {"_count": 2, "as": {"_count": 1}, "that": {"_count": 1}}, "reading": {"_count": 1, "A": {"_count": 1}}, "packed": {"_count": 1, "Harry": {"_count": 1}}, "poles": {"_count": 1, "": {"_count": 1}}, "huddled": {"_count": 1, "for": {"_count": 1}}, "mouth": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "darkness": {"_count": 1}}, "forgetting": {"_count": 1, "about": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "Greyback": {"_count": 1, "wait": {"_count": 1}}, "rasped": {"_count": 1, "Greyback": {"_count": 1}}, "flew": {"_count": 1, "into": {"_count": 1}}}, "stitches": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "Molly": {"_count": 1, "and": {"_count": 1}}, "are": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}}, "unfolded": {"_count": 16, "a": {"_count": 2, "second": {"_count": 1}, "set": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 1}, "and": {"_count": 2}, "hastily": {"_count": 1}, "to": {"_count": 1}}, "the": {"_count": 5, "parchment": {"_count": 2}, "paper": {"_count": 1}, "newspaper": {"_count": 2}}, "them": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "arms": {"_count": 1}}, "itself": {"_count": 1, "from": {"_count": 1}}, "Hermione": {"_count": 1, "frowned": {"_count": 1}}}, "UNIFORM": {"_count": 1, "Firstyear": {"_count": 1, "students": {"_count": 1}}}, "Firstyear": {"_count": 1, "students": {"_count": 1, "will": {"_count": 1}}}, "students": {"_count": 358, "will": {"_count": 3, "require": {"_count": 1}, "return": {"_count": 1}, "be": {"_count": 1}}, "should": {"_count": 2, "have": {"_count": 1}, "pay": {"_count": 1}}, "scared": {"_count": 1, "of": {"_count": 1}}, "some": {"_count": 4, "hanging": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}, "already": {"_count": 1}}, "and": {"_count": 20, "Harry": {"_count": 1}, "up": {"_count": 1}, "trying": {"_count": 1}, "they": {"_count": 1}, "indeed": {"_count": 1}, "parents": {"_count": 1}, "the": {"_count": 3}, "organized": {"_count": 1}, "Madame": {"_count": 1}, "Karkaroff": {"_count": 1}, "their": {"_count": 1}, "Professor": {"_count": 1}, "a": {"_count": 1}, "posing": {"_count": 1}, "at": {"_count": 1}, "teachers": {"_count": 2}, "meet": {"_count": 1}}, "": {"_count": 39, "!": {"_count": 2}, ".": {"_count": 33}, "?": {"_count": 4}}, "were": {"_count": 27, "sitting": {"_count": 1}, "crashing": {"_count": 1}, "arriving": {"_count": 1}, "all": {"_count": 1}, "forced": {"_count": 1}, "preparing": {"_count": 1}, "still": {"_count": 1}, "pulling": {"_count": 1}, "revealed": {"_count": 1}, "staring": {"_count": 1}, "climbing": {"_count": 1}, "straggling": {"_count": 1}, "standing": {"_count": 1}, "exchanging": {"_count": 1}, "smirking": {"_count": 1}, "allowed": {"_count": 1}, "enjoying": {"_count": 1}, "not": {"_count": 1}, "several": {"_count": 1}, "heading": {"_count": 1}, "now": {"_count": 1}, "called": {"_count": 1}, "required": {"_count": 1}, "going": {"_count": 1}, "inside": {"_count": 1}, "hurried": {"_count": 1}, "in": {"_count": 1}}, "with": {"_count": 4, "the": {"_count": 1}, "their": {"_count": 1}, "an": {"_count": 1}, "\u2018Exceeds": {"_count": 1}}, "the": {"_count": 3, "ghosts": {"_count": 1}, "sort": {"_count": 1}, "guilty": {"_count": 1}}, "his": {"_count": 2, "arms": {"_count": 2}}, "would": {"_count": 3, "do": {"_count": 1}, "normally": {"_count": 1}, "hurtle": {"_count": 1}}, "all": {"_count": 2, "hated": {"_count": 1}, "around": {"_count": 1}}, "had": {"_count": 11, "binoculars": {"_count": 1}, "finally": {"_count": 1}, "settled": {"_count": 1}, "entered": {"_count": 1}, "submitted": {"_count": 1}, "just": {"_count": 1}, "sat": {"_count": 1}, "finished": {"_count": 1}, "given": {"_count": 1}, "arrived": {"_count": 1}, "failed": {"_count": 1}}, "who": {"_count": 15, "would": {"_count": 1}, "had": {"_count": 5}, "are": {"_count": 2}, "forgot": {"_count": 1}, "will": {"_count": 1}, "now": {"_count": 1}, "get": {"_count": 1}, "swear": {"_count": 1}, "pass": {"_count": 1}, "keep": {"_count": 1}}, "studying": {"_count": 1, "advanced": {"_count": 1}}, "aren": {"_count": 1, "spposed": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "while": {"_count": 1}}, "get": {"_count": 1, "thrown": {"_count": 1}}, "to": {"_count": 13, "do": {"_count": 2}, "classes": {"_count": 1}, "return": {"_count": 1}, "jump": {"_count": 1}, "pass": {"_count": 1}, "fear": {"_count": 1}, "Viktor": {"_count": 1}, "give": {"_count": 1}, "a": {"_count": 1}, "have": {"_count": 1}, "perform": {"_count": 1}, "leave": {"_count": 1}}, "warning": {"_count": 1, "them": {"_count": 1}}, "into": {"_count": 5, "the": {"_count": 1}, "becoming": {"_count": 1}, "Houses": {"_count": 1}, "lines": {"_count": 1}, "my": {"_count": 1}}, "from": {"_count": 7, "his": {"_count": 1}, "Hufflepuff": {"_count": 1}, "Beauxbatons": {"_count": 4}, "Durmstrang": {"_count": 1}}, "avoided": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "their": {"_count": 1}}, "pressing": {"_count": 1, "forward": {"_count": 1}}, "so": {"_count": 2, "much": {"_count": 1}, "as": {"_count": 1}}, "admitted": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 5, "Muggle": {"_count": 1}, "seventeen": {"_count": 1}, "Hogwarts": {"_count": 3}}, "cupboard": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "think": {"_count": 1}}, "could": {"_count": 1, "go": {"_count": 1}}, "filed": {"_count": 3, "past": {"_count": 1}, "back": {"_count": 1}, "into": {"_count": 1}}, "away": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "from": {"_count": 1}}, "finally": {"_count": 2, "killing": {"_count": 1}, "reaching": {"_count": 1}}, "are": {"_count": 5, "to": {"_count": 1}, "most": {"_count": 1}, "supposed": {"_count": 1}, "getting": {"_count": 1}, "going": {"_count": 1}}, "swarming": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 12, "any": {"_count": 1}, "the": {"_count": 8}, "every": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}}, "seemed": {"_count": 2, "glad": {"_count": 1}, "to": {"_count": 1}}, "home": {"_count": 3, "tomorrow": {"_count": 1}, "": {"_count": 1}, "until": {"_count": 1}}, "what": {"_count": 1, "has": {"_count": 1}}, "have": {"_count": 2, "been": {"_count": 1}, "badgered": {"_count": 1}}, "forward": {"_count": 2, "for": {"_count": 1}, "in": {"_count": 1}}, "each": {"_count": 1, "pulled": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "at": {"_count": 7, "Hogwarts": {"_count": 4}, "the": {"_count": 2}, "random": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "above": {"_count": 2, "all": {"_count": 1}, "first": {"_count": 1}}, "that": {"_count": 2, "no": {"_count": 1}, "cheating": {"_count": 1}}, "remained": {"_count": 2, "to": {"_count": 2}}, "stuff": {"_count": 1, "like": {"_count": 1}}, "two": {"_count": 1, "extremely": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "since": {"_count": 1, "Blacks": {"_count": 1}}, "hurried": {"_count": 1, "back": {"_count": 1}}, "ever": {"_count": 1, "found": {"_count": 1}}, "left": {"_count": 1, "their": {"_count": 1}}, "took": {"_count": 1, "at": {"_count": 1}}, "actually": {"_count": 1, "learn": {"_count": 1}}, "as": {"_count": 1, "is": {"_count": 1}}, "clapped": {"_count": 1, "except": {"_count": 1}}, "before": {"_count": 2, "him": {"_count": 1}, "he": {"_count": 1}}, "below": {"_count": 2, "sixth": {"_count": 1}, "and": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "resorting": {"_count": 1, "to": {"_count": 1}}, "stifled": {"_count": 1, "cries": {"_count": 1}}, "congregated": {"_count": 1, "there": {"_count": 1}}, "eagerly": {"_count": 1, "all": {"_count": 1}}, "drew": {"_count": 1, "backward": {"_count": 1}}, "following": {"_count": 3, "his": {"_count": 1}, "in": {"_count": 1}, "her": {"_count": 1}}, "heading": {"_count": 2, "for": {"_count": 1}, "down": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "perhaps": {"_count": 1}}, "Dennis": {"_count": 1, "Creevey": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "stepped": {"_count": 1, "across": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "their": {"_count": 1}}, "said": {"_count": 1, "Karkaroff": {"_count": 1}}, "walking": {"_count": 1, "past": {"_count": 1}}, "enjoying": {"_count": 1, "their": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 1, "all": {"_count": 1}}, "entered": {"_count": 1, "with": {"_count": 1}}, "is": {"_count": 1, "warned": {"_count": 1}}, "attempting": {"_count": 1, "illicit": {"_count": 1}}, "shes": {"_count": 1, "bringing": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}, "without": {"_count": 2, "reference": {"_count": 1}, "me": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "for": {"_count": 2, "misdemeanors": {"_count": 1}, "for": {"_count": 1}}, "Cornelius": {"_count": 1, "as": {"_count": 1}}, "still": {"_count": 1, "on": {"_count": 1}}, "surged": {"_count": 1, "past": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "talking": {"_count": 1, "eagerly": {"_count": 1}}, "heads": {"_count": 1, "to": {"_count": 1}}, "poking": {"_count": 1, "fun": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "put": {"_count": 1, "their": {"_count": 1}}, "joined": {"_count": 1, "in": {"_count": 1}}, "walked": {"_count": 1, "shyly": {"_count": 1}}, "hurrying": {"_count": 1, "toward": {"_count": 1}}, "exchanged": {"_count": 1, "looks": {"_count": 1}}, "questioning": {"_count": 1, "them": {"_count": 1}}, "dont": {"_count": 1, "normally": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "rolling": {"_count": 1, "along": {"_count": 1}}, "rights": {"_count": 1, "": {"_count": 1}}, "wore": {"_count": 1, "their": {"_count": 1}}, "jerking": {"_count": 1, "his": {"_count": 1}}, "she": {"_count": 1, "pointed": {"_count": 1}}, "nearly": {"_count": 1, "all": {"_count": 1}}, "passing": {"_count": 1, "looked": {"_count": 1}}, "mood": {"_count": 1, "that": {"_count": 1}}, "approaching": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "information": {"_count": 1}}, "answers": {"_count": 1, "before": {"_count": 1}}, "ambling": {"_count": 1, "up": {"_count": 1}}, "watching": {"_count": 1, "them": {"_count": 1}}, "continued": {"_count": 1, "Professor": {"_count": 1}}, "Dolores": {"_count": 1, "said": {"_count": 1}}, "milling": {"_count": 1, "over": {"_count": 1}}, "now": {"_count": 2, "hurrying": {"_count": 1}, "": {"_count": 1}}, "saying": {"_count": 1, "things": {"_count": 1}}, "across": {"_count": 1, "it": {"_count": 1}}, "assembled": {"_count": 1, "there": {"_count": 1}}, "told": {"_count": 1, "her": {"_count": 1}}, "caused": {"_count": 1, "neatly": {"_count": 1}}, "was": {"_count": 1, "moving": {"_count": 1}}, "went": {"_count": 1, "off": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "surrounding": {"_count": 1, "them": {"_count": 1}}, "werent": {"_count": 1, "going": {"_count": 1}}, "swimming": {"_count": 1, "in": {"_count": 1}}, "ran": {"_count": 2, "out": {"_count": 1}, "forward": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "loathed": {"_count": 1, "each": {"_count": 1}}, "welcome": {"_count": 2, "to": {"_count": 1}, "back": {"_count": 1}}, "bent": {"_count": 1, "double": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "marshaling": {"_count": 1, "them": {"_count": 1}}, "things": {"_count": 1, "they": {"_count": 1}}, "standing": {"_count": 2, "guard": {"_count": 1}, "arm": {"_count": 1}}, "streaming": {"_count": 1, "out": {"_count": 1}}, "knew": {"_count": 1, "about": {"_count": 1}}, "seriously": {"_count": 1, "Harry": {"_count": 1}}, "stood": {"_count": 1, "huddled": {"_count": 1}}, "Scrimgeour": {"_count": 1, "persevered": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "or": {"_count": 1, "any": {"_count": 1}}, "fled": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "we": {"_count": 1, "shall": {"_count": 1}}, "Horace": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 1, "wearing": {"_count": 1}}, "looked": {"_count": 1, "petrified": {"_count": 1}}, "flooded": {"_count": 1, "the": {"_count": 1}}, "including": {"_count": 1, "Lee": {"_count": 1}}, "ransom": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 1, "": {"_count": 1}}}, "require": {"_count": 15, "1": {"_count": 1, "": {"_count": 1}}, "er": {"_count": 1, "forceful": {"_count": 1}}, "no": {"_count": 1, "tinkering": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "Narcissa": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "answer": {"_count": 1}}, "assistance": {"_count": 2, "to": {"_count": 1}, "said": {"_count": 1}}, "your": {"_count": 1, "wand": {"_count": 1}}, "a": {"_count": 3, "private": {"_count": 1}, "little": {"_count": 1}, "different": {"_count": 1}}, "cleaning": {"_count": 1, "simple": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}}, "sets": {"_count": 15, "of": {"_count": 11, "plain": {"_count": 1}, "Lockhart": {"_count": 1}, "fine": {"_count": 1}, "claws": {"_count": 1}, "chair": {"_count": 1}, "front": {"_count": 2}, "footprints": {"_count": 1}, "parents": {"_count": 1}, "tarnished": {"_count": 1}, "clothes": {"_count": 1}}, "the": {"_count": 2, "exam": {"_count": 1}, "date": {"_count": 1}}, "him": {"_count": 1, "apar": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}}, "2": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "1": {"_count": 1, "set": {"_count": 1}}, "by": {"_count": 1, "Miranda": {"_count": 1}}, "and": {"_count": 1, "sneaked": {"_count": 1}}, "shut": {"_count": 1, "": {"_count": 1}}}, "protective": {"_count": 33, "gloves": {"_count": 4, "dragon": {"_count": 1}, "": {"_count": 3}}, "devices": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 3, "her": {"_count": 1}, "our": {"_count": 1}, "you": {"_count": 1}}, "scarf": {"_count": 1, "sank": {"_count": 1}}, "dragon": {"_count": 1, "skin": {"_count": 1}}, "spells": {"_count": 4, "and": {"_count": 2}, "work": {"_count": 1}, "around": {"_count": 1}}, "potions": {"_count": 1, "that": {"_count": 1}}, "goggles": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "flame": {"_count": 1, "around": {"_count": 1}}, "charm": {"_count": 3, "that": {"_count": 1}, "or": {"_count": 1}, "over": {"_count": 1}}, "enchantments": {"_count": 7, "weve": {"_count": 1}, "around": {"_count": 2}, "and": {"_count": 1}, "meant": {"_count": 1}, "had": {"_count": 1}, "it": {"_count": 1}}, "charms": {"_count": 3, "hold": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "sphere": {"_count": 2, "": {"_count": 2}}}, "gloves": {"_count": 26, "dragon": {"_count": 1, "hide": {"_count": 1}}, "and": {"_count": 7, "enormous": {"_count": 1}, "leading": {"_count": 1}, "rosettes": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}, "staring": {"_count": 1}, "Ginny": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "it": {"_count": 1, "can": {"_count": 1}}, "jus": {"_count": 1, "as": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Rons": {"_count": 1, "shock": {"_count": 1}}, "then": {"_count": 1, "followed": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "Order": {"_count": 1}}}, "similar": {"_count": 15, "4": {"_count": 1, "": {"_count": 1}}, "happening": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "to": {"_count": 2, "Uncle": {"_count": 1}, "the": {"_count": 1}}, "charge": {"_count": 1, "produce": {"_count": 1}}, "Enlarging": {"_count": 1, "Spell": {"_count": 1}}, "powers": {"_count": 1, "are": {"_count": 1}}, "expressions": {"_count": 1, "of": {"_count": 1}}, "battle": {"_count": 1, "with": {"_count": 1}}, "package": {"_count": 1, "": {"_count": 1}}, "noises": {"_count": 1, "of": {"_count": 1}}, "mixtures": {"_count": 1, "of": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "strategy": {"_count": 1}}}, "winter": {"_count": 6, "cloak": {"_count": 1, "black": {"_count": 1}}, "sunlight": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "air": {"_count": 1, "with": {"_count": 1}}, "after": {"_count": 1, "they": {"_count": 1}}}, "fastenings": {"_count": 2, "Please": {"_count": 1, "note": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "pupils": {"_count": 26, "clothes": {"_count": 1, "should": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "of": {"_count": 4, "his": {"_count": 1}, "privileges": {"_count": 1}, "the": {"_count": 2}}, "said": {"_count": 1, "Madame": {"_count": 1}}, "from": {"_count": 1, "Beauxbatons": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 1, "fangs": {"_count": 1}}, "during": {"_count": 1, "a": {"_count": 1}}, "focused": {"_count": 1, "on": {"_count": 1}}, "were": {"_count": 4, "slits": {"_count": 1}, "not": {"_count": 1}, "vertical": {"_count": 1}, "wide": {"_count": 1}}, "unblinking": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Gregorovitch": {"_count": 1}}, "dilated": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 1, "never": {"_count": 1}}, "contract": {"_count": 1, "to": {"_count": 1}}, "ghosts": {"_count": 1, "and": {"_count": 1}}}, "tags": {"_count": 1, "COURSE": {"_count": 1, "BOOKS": {"_count": 1}}}, "COURSE": {"_count": 1, "BOOKS": {"_count": 1, "All": {"_count": 1}}}, "BOOKS": {"_count": 1, "All": {"_count": 1, "students": {"_count": 1}}}, "copy": {"_count": 108, "of": {"_count": 82, "each": {"_count": 1}, "The": {"_count": 9}, "A": {"_count": 3}, "Voyages": {"_count": 1}, "Travels": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 19}, "Unfogging": {"_count": 2}, "Which": {"_count": 1}, "Numerology": {"_count": 1}, "One": {"_count": 1}, "Witch": {"_count": 1}, "a": {"_count": 1}, "Defensive": {"_count": 5}, "Spellmans": {"_count": 3}, "Marchs": {"_count": 1}, "that": {"_count": 1}, "Fantastic": {"_count": 1}, "Advanced": {"_count": 22}, "Confronting": {"_count": 1}, "FleshEating": {"_count": 1}, "Twelve": {"_count": 1}, "Secrets": {"_count": 1}, "Natures": {"_count": 1}, "their": {"_count": 1}, "Transfiguration": {"_count": 1}}, "How": {"_count": 1, "will": {"_count": 1}}, "at": {"_count": 1, "home": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 3, "ripped": {"_count": 1}, "Ive": {"_count": 1}, "put": {"_count": 1}}, "mine": {"_count": 1, "if": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "down": {"_count": 1}}, "out": {"_count": 2, "this": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "!": {"_count": 1}, "?": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "disguised": {"_count": 1, "as": {"_count": 1}}, "from": {"_count": 1, "Flourish": {"_count": 1}}, "the": {"_count": 1, "spell": {"_count": 1}}, "his": {"_count": 1, "work": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 1, "excellent": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "somewhere": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Lovegood": {"_count": 1}}, "just": {"_count": 1, "a": {"_count": 1}}}, "Standard": {"_count": 13, "Book": {"_count": 13, "of": {"_count": 13}}}, "Book": {"_count": 22, "of": {"_count": 20, "Spells": {"_count": 13}, "Monsters": {"_count": 6}, "Invisibility": {"_count": 1}}, "shuddered": {"_count": 1, "angrily": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}}, "Grade": {"_count": 12, "1": {"_count": 1, "by": {"_count": 1}}, "2": {"_count": 3, "by": {"_count": 1}, "and": {"_count": 1}, "shut": {"_count": 1}}, "Three": {"_count": 1, "": {"_count": 1}}, "4": {"_count": 4, "copies": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "5": {"_count": 2, "by": {"_count": 1}, "and": {"_count": 1}}, "Six": {"_count": 1, "said": {"_count": 1}}}, "Miranda": {"_count": 4, "Goshawk": {"_count": 4, "A": {"_count": 1}, "Break": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}}}, "Goshawk": {"_count": 4, "A": {"_count": 1, "History": {"_count": 1}}, "Break": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "Defensive": {"_count": 1}}}, "History": {"_count": 63, "of": {"_count": 50, "Magic": {"_count": 48}, "Hogwarts": {"_count": 2}}, "and": {"_count": 2, "The": {"_count": 1}, "perhaps": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 2}}, "have": {"_count": 1, "been": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "mention": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "alas": {"_count": 1, "does": {"_count": 1}}}, "Bathilda": {"_count": 62, "Bagshot": {"_count": 18, "Magical": {"_count": 1}, "propped": {"_count": 1}, "the": {"_count": 3}, "said": {"_count": 1}, "": {"_count": 3}, "lives": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "which": {"_count": 1}, "still": {"_count": 1}, "murmured": {"_count": 1}, "agreed": {"_count": 1}, "have": {"_count": 1}, "Gornuk": {"_count": 1}}, "described": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 1, "it": {"_count": 1}}, "Albus": {"_count": 1, "did": {"_count": 1}}, "has": {"_count": 1, "spilled": {"_count": 1}}, "would": {"_count": 2, "never": {"_count": 1}, "be": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}, "who": {"_count": 1, "has": {"_count": 1}}, "drops": {"_count": 1, "in": {"_count": 1}}, "again": {"_count": 1, "who": {"_count": 1}}, "my": {"_count": 1, "mum": {"_count": 1}}, "was": {"_count": 5, "in": {"_count": 1}, "tottering": {"_count": 1}, "standing": {"_count": 1}, "alive": {"_count": 1}, "the": {"_count": 1}}, "s": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 2}}, "lived": {"_count": 1, "now": {"_count": 1}}, "shuffled": {"_count": 1, "past": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "fumbled": {"_count": 1, "with": {"_count": 1}}, "or": {"_count": 1, "somebody": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "merely": {"_count": 1, "looked": {"_count": 1}}, "now": {"_count": 1, "shuffled": {"_count": 1}}, "shook": {"_count": 1, "her": {"_count": 1}}, "he": {"_count": 1, "slipped": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "moved": {"_count": 1}}, "mustve": {"_count": 1, "been": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "exhibited": {"_count": 1, "earlier": {"_count": 1}}, "puts": {"_count": 1, "Kendras": {"_count": 1}}, "also": {"_count": 1, "parrots": {"_count": 1}}, "is": {"_count": 1, "well": {"_count": 1}}, "whatever": {"_count": 1, "he": {"_count": 1}}, "shows": {"_count": 1, "me": {"_count": 1}}, "thought": {"_count": 1, "it": {"_count": 1}}}, "Bagshot": {"_count": 22, "Magical": {"_count": 1, "Theory": {"_count": 1}}, "propped": {"_count": 1, "open": {"_count": 1}}, "the": {"_count": 3, "noted": {"_count": 1}, "author": {"_count": 1}, "celebrated": {"_count": 1}}, "said": {"_count": 1, "Auntie": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 4}, ".": {"_count": 2}}, "lives": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "another": {"_count": 1}}, "had": {"_count": 1, "Dumbledore": {"_count": 1}}, "which": {"_count": 1, "she": {"_count": 1}}, "doesnt": {"_count": 1, "cover": {"_count": 1}}, "still": {"_count": 1, "lives": {"_count": 1}}, "murmured": {"_count": 1, "Hermione": {"_count": 1}}, "agreed": {"_count": 1, "to": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "Gornuk": {"_count": 1, "and": {"_count": 1}}}, "Magical": {"_count": 171, "Theory": {"_count": 11, "by": {"_count": 4}, "and": {"_count": 3}, "": {"_count": 1}, "but": {"_count": 1}, "his": {"_count": 1}, "into": {"_count": 1}}, "Herbs": {"_count": 6, "and": {"_count": 6}}, "Drafts": {"_count": 1, "and": {"_count": 1}}, "History": {"_count": 1, "and": {"_count": 1}}, "Names": {"_count": 1, "of": {"_count": 1}}, "Discoveries": {"_count": 1, "and": {"_count": 1}}, "Me": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Creatures": {"_count": 60, "class": {"_count": 5}, "": {"_count": 14}, "and": {"_count": 2}, "Divination": {"_count": 1}, "teacher": {"_count": 7}, "which": {"_count": 1}, "lessons": {"_count": 5}, "Potions": {"_count": 1}, "exam": {"_count": 2}, "like": {"_count": 1}, "because": {"_count": 1}, "meant": {"_count": 1}, "do": {"_count": 1}, "lesson": {"_count": 5}, "much": {"_count": 1}, "would": {"_count": 1}, "classes": {"_count": 1}, "incorporating": {"_count": 2}, "in": {"_count": 1}, "they": {"_count": 1}, "any": {"_count": 1}, "tells": {"_count": 1}, "running": {"_count": 1}, "E": {"_count": 1}, "are": {"_count": 1}, "you": {"_count": 1}}, "Mess": {"_count": 4, "Remover": {"_count": 4}}, "Merit": {"_count": 1, "and": {"_count": 1}}, "Menagerie": {"_count": 4, "": {"_count": 3}, "had": {"_count": 1}}, "MischiefMakers": {"_count": 2, "are": {"_count": 1}, "": {"_count": 1}}, "Law": {"_count": 20, "Enforcement": {"_count": 17}, "to": {"_count": 1}, "he": {"_count": 1}, "Miss": {"_count": 1}}, "Catastrophes": {"_count": 1, "at": {"_count": 1}}, "Ailments": {"_count": 2, "and": {"_count": 2}}, "Games": {"_count": 8, "and": {"_count": 8}}, "Cooperation": {"_count": 10, "": {"_count": 3}, "said": {"_count": 1}, "without": {"_count": 1}, "and": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "incorporating": {"_count": 1}}, "Transportation": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "Maladies": {"_count": 9, "and": {"_count": 9}}, "Education": {"_count": 3, "in": {"_count": 3}}, "Water": {"_count": 2, "Plants": {"_count": 2}}, "Brethren": {"_count": 3, "will": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}}, "Transport": {"_count": 2, "incorporating": {"_count": 1}, "": {"_count": 1}}, "Trading": {"_count": 1, "Standards": {"_count": 1}}, "Office": {"_count": 1, "of": {"_count": 1}}, "Accidents": {"_count": 2, "and": {"_count": 2}}, "Maintenance": {"_count": 9, "decide": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "wears": {"_count": 1}, "he": {"_count": 1}, "will": {"_count": 1}, "gesturing": {"_count": 1}, "to": {"_count": 1}, "Department": {"_count": 1}}, "Attack": {"_count": 1, "": {"_count": 1}}, "Hieroglyphs": {"_count": 1, "and": {"_count": 1}}}, "Theory": {"_count": 14, "by": {"_count": 4, "Adalbert": {"_count": 1}, "Wilbert": {"_count": 3}}, "and": {"_count": 3, "started": {"_count": 1}, "read": {"_count": 1}, "pretended": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}, "was": {"_count": 1, "sick": {"_count": 1}}, "of": {"_count": 2, "Numerology": {"_count": 1}, "Charms": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "Adalbert": {"_count": 2, "Waffling": {"_count": 2, "A": {"_count": 1}, "the": {"_count": 1}}}, "Waffling": {"_count": 2, "A": {"_count": 1, "Beginners": {"_count": 1}}, "the": {"_count": 1, "magical": {"_count": 1}}}, "Beginners": {"_count": 6, "Guide": {"_count": 2, "to": {"_count": 2}}, "Magic": {"_count": 1, "Intrigued": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "Guide": {"_count": 9, "to": {"_count": 8, "Transfiguration": {"_count": 2}, "SelfProtection": {"_count": 2}, "Household": {"_count": 2}, "Advanced": {"_count": 1}, "Medieval": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Transfiguration": {"_count": 79, "by": {"_count": 1, "Emeric": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "is": {"_count": 1, "some": {"_count": 1}}, "notes": {"_count": 2, "before": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "book": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "next": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "day": {"_count": 1}}, "that": {"_count": 2, "drove": {"_count": 1}, "was": {"_count": 1}}, "teacher": {"_count": 3, "Dumbledore": {"_count": 1}, "and": {"_count": 1}, "Professor": {"_count": 1}}, "Today": {"_count": 4, "wildlooking": {"_count": 1}, "Challenges": {"_count": 1}, "": {"_count": 2}}, "and": {"_count": 7, "The": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "Potions": {"_count": 1}, "glaring": {"_count": 1}, "Charms": {"_count": 1}, "Herbology": {"_count": 1}}, "lesson": {"_count": 4, "": {"_count": 2}, "Ron": {"_count": 1}, "with": {"_count": 1}}, "class": {"_count": 3, "had": {"_count": 1}, "on": {"_count": 1}, "calling": {"_count": 1}}, "Lunch": {"_count": 1, "1": {"_count": 1}}, "at": {"_count": 1, "lunchtime": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "long": {"_count": 1}}, "homework": {"_count": 4, "she": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "twice": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "classroom": {"_count": 1, "at": {"_count": 1}}, "not": {"_count": 1, "having": {"_count": 1}}, "he": {"_count": 1, "forgot": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "essay": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "than": {"_count": 1, "something": {"_count": 1}}, "if": {"_count": 1, "youre": {"_count": 1}}, "Charms": {"_count": 1, "and": {"_count": 1}}, "because": {"_count": 1, "Aurors": {"_count": 1}}, "department": {"_count": 3, "or": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "went": {"_count": 1, "all": {"_count": 1}}, "E": {"_count": 1, "Harry": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "Herbology": {"_count": 2, "Arithmancy": {"_count": 1}, "": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "mark": {"_count": 1, "Potter": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "day": {"_count": 1}}, "working": {"_count": 1, "in": {"_count": 1}}, "test": {"_count": 1, "for": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Emeric": {"_count": 3, "Switch": {"_count": 1, "One": {"_count": 1}}, "the": {"_count": 2, "Evil": {"_count": 2}}}, "Switch": {"_count": 1, "One": {"_count": 1, "Thousand": {"_count": 1}}}, "Thousand": {"_count": 37, "Magical": {"_count": 6, "Herbs": {"_count": 6}}, "fastest": {"_count": 1, "ever": {"_count": 1}}, "or": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 1}, ".": {"_count": 6}}, "sir": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "written": {"_count": 1, "in": {"_count": 1}}, "turned": {"_count": 1, "wherever": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 9, "took": {"_count": 1}, "One": {"_count": 3}, "Ones": {"_count": 2}, "joined": {"_count": 1}, "what": {"_count": 1}, "walked": {"_count": 1}}, "broomstick": {"_count": 1, "had": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "series": {"_count": 1, "by": {"_count": 1}}, "racing": {"_count": 1, "broom": {"_count": 1}}, "he": {"_count": 1, "now": {"_count": 1}}}, "Herbs": {"_count": 6, "and": {"_count": 6, "Fungi": {"_count": 6}}}, "Fungi": {"_count": 6, "by": {"_count": 1, "Phyllida": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "didnt": {"_count": 1, "look": {"_count": 1}}, "with": {"_count": 1, "Spellotape": {"_count": 1}}}, "Phyllida": {"_count": 1, "Spore": {"_count": 1, "Magical": {"_count": 1}}}, "Spore": {"_count": 1, "Magical": {"_count": 1, "Drafts": {"_count": 1}}}, "Drafts": {"_count": 1, "and": {"_count": 1, "Potions": {"_count": 1}}}, "Potions": {"_count": 140, "by": {"_count": 1, "Arsenius": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "both": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 2}, "Snape": {"_count": 1}}, "lesson": {"_count": 9, "turned": {"_count": 1}, "he": {"_count": 1}, "continued": {"_count": 1}, "loomed": {"_count": 1}, "about": {"_count": 1}, "did": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}}, "lessons": {"_count": 8, "took": {"_count": 2}, "were": {"_count": 2}, "it": {"_count": 1}, "whether": {"_count": 1}, "Harry": {"_count": 1}, "with": {"_count": 1}}, "class": {"_count": 6, "for": {"_count": 1}, "was": {"_count": 1}, "doing": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 2}}, "they": {"_count": 1, "found": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 17}, "?": {"_count": 10}, "!": {"_count": 3}}, "one": {"_count": 1, "": {"_count": 1}}, "master": {"_count": 11, "the": {"_count": 1}, "at": {"_count": 2}, "when": {"_count": 1}, "was": {"_count": 1}, "Snape": {"_count": 1}, "found": {"_count": 1}, "": {"_count": 1}, "reverted": {"_count": 1}, "always": {"_count": 1}, "seemed": {"_count": 1}}, "homework": {"_count": 1, "and": {"_count": 1}}, "where": {"_count": 3, "Snape": {"_count": 1}, "Harrys": {"_count": 1}, "thankfully": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "than": {"_count": 1, "listen": {"_count": 1}}, "and": {"_count": 5, "its": {"_count": 1}, "Astronomy": {"_count": 1}, "shot": {"_count": 1}, "they": {"_count": 1}, "and": {"_count": 1}}, "carefully": {"_count": 1, "and": {"_count": 1}}, "nearly": {"_count": 1, "ready": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "that": {"_count": 4, "afternoon": {"_count": 2}, "day": {"_count": 1}, "it": {"_count": 1}}, "last": {"_count": 1, "thing": {"_count": 1}}, "was": {"_count": 4, "more": {"_count": 1}, "always": {"_count": 1}, "still": {"_count": 1}, "suffering": {"_count": 1}}, "to": {"_count": 2, "look": {"_count": 1}, "complete": {"_count": 1}}, "notes": {"_count": 1, "": {"_count": 1}}, "test": {"_count": 1, "and": {"_count": 1}}, "feeling": {"_count": 1, "considerably": {"_count": 1}}, "are": {"_count": 1, "of": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "Divination": {"_count": 1, "and": {"_count": 1}}, "after": {"_count": 1, "fifth": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "all": {"_count": 2, "three": {"_count": 1}, "year": {"_count": 1}}, "essay": {"_count": 2, "reluctantly": {"_count": 1}, "decided": {"_count": 1}}, "book": {"_count": 8, "and": {"_count": 2}, "": {"_count": 3}, "hoping": {"_count": 1}, "which": {"_count": 1}, "where": {"_count": 1}}, "masters": {"_count": 2, "study": {"_count": 1}, "room": {"_count": 1}}, "Herbology": {"_count": 1, "Transfiguration": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "on": {"_count": 1, "Monday": {"_count": 1}}, "unless": {"_count": 1, "I": {"_count": 1}}, "E": {"_count": 1, "Transfiguration": {"_count": 1}}, "grade": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Lily": {"_count": 1, "was": {"_count": 1}}, "thanks": {"_count": 1, "to": {"_count": 1}}, "Its": {"_count": 1, "got": {"_count": 1}}, "classes": {"_count": 1, "the": {"_count": 1}}, "Prince": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "afternoon": {"_count": 1}}, "sir": {"_count": 1, "but": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "brilliance": {"_count": 1, "you": {"_count": 1}}, "awards": {"_count": 1, "": {"_count": 1}}}, "Arsenius": {"_count": 1, "Jigger": {"_count": 1, "Fantastic": {"_count": 1}}}, "Jigger": {"_count": 1, "Fantastic": {"_count": 1, "Beasts": {"_count": 1}}}, "Fantastic": {"_count": 6, "Beasts": {"_count": 3, "and": {"_count": 3}}, "": {"_count": 1, "!": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "stuff": {"_count": 1, "Theres": {"_count": 1}}}, "Beasts": {"_count": 4, "and": {"_count": 3, "Where": {"_count": 3}}, "": {"_count": 1, "!": {"_count": 1}}}, "Find": {"_count": 12, "Them": {"_count": 3, "by": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "anything": {"_count": 1, "Dad": {"_count": 1}}, "yourself": {"_count": 1, "making": {"_count": 1}}, "my": {"_count": 1, "what": {"_count": 1}}, "someone": {"_count": 1, "who": {"_count": 1}}, "something": {"_count": 1, "for": {"_count": 1}}, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}, "and": {"_count": 1, "destroy": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "what": {"_count": 1}}}, "Them": {"_count": 9, "by": {"_count": 1, "Newt": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Azkaban": {"_count": 1, "guards": {"_count": 1}}, "Disposal": {"_count": 1, "devils": {"_count": 1}}, "champions": {"_count": 1, "re": {"_count": 1}}, "Now": {"_count": 1, "Youve": {"_count": 1}}, "and": {"_count": 1, "doubling": {"_count": 1}}, "for": {"_count": 1, "they": {"_count": 1}}}, "Newt": {"_count": 3, "Scamander": {"_count": 1, "The": {"_count": 1}}, "feeling": {"_count": 1, "just": {"_count": 1}}, "and": {"_count": 1, "stared": {"_count": 1}}}, "Scamander": {"_count": 1, "The": {"_count": 1, "Dark": {"_count": 1}}}, "Forces": {"_count": 3, "A": {"_count": 2, "Guide": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "SelfProtection": {"_count": 2, "by": {"_count": 1, "Quentin": {"_count": 1}}, "and": {"_count": 1, "waited": {"_count": 1}}}, "Quentin": {"_count": 1, "Trimble": {"_count": 1, "OTHER": {"_count": 1}}}, "Trimble": {"_count": 1, "OTHER": {"_count": 1, "EQUIPMENT": {"_count": 1}}}, "OTHER": {"_count": 3, "EQUIPMENT": {"_count": 1, "1": {"_count": 1}}, "FOUL": {"_count": 1, "THING": {"_count": 1}}, "MINISTER": {"_count": 1, "It": {"_count": 1}}}, "EQUIPMENT": {"_count": 1, "1": {"_count": 1, "wand": {"_count": 1}}}, "cauldron": {"_count": 110, "pewter": {"_count": 1, "standard": {"_count": 1}}, "either": {"_count": 1, "It": {"_count": 1}}, "with": {"_count": 5, "its": {"_count": 1}, "a": {"_count": 2}, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "collapsed": {"_count": 1, "moaned": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 28}}, "and": {"_count": 13, "topoftheline": {"_count": 1}, "extracted": {"_count": 1}, "scooped": {"_count": 1}, "began": {"_count": 1}, "broomstick": {"_count": 1}, "no": {"_count": 1}, "sprinting": {"_count": 1}, "dragged": {"_count": 1}, "started": {"_count": 1}, "mop": {"_count": 1}, "told": {"_count": 1}, "was": {"_count": 1}, "lit": {"_count": 1}}, "too": {"_count": 2, "and": {"_count": 2}}, "went": {"_count": 1, "flying": {"_count": 1}}, "the": {"_count": 1, "right": {"_count": 1}}, "was": {"_count": 4, "perched": {"_count": 1}, "simmering": {"_count": 2}, "issuing": {"_count": 1}}, "pulled": {"_count": 1, "one": {"_count": 1}}, "right": {"_count": 1, "next": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "broomstick": {"_count": 1, "black": {"_count": 1}}, "thickness": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "leaks": {"_count": 1, "": {"_count": 1}}, "bottoms": {"_count": 3, "coming": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}}, "report": {"_count": 1, "in": {"_count": 1}}, "when": {"_count": 1, "Ron": {"_count": 1}}, "in": {"_count": 2, "Potions": {"_count": 1}, "precisely": {"_count": 1}}, "saw": {"_count": 1, "Karkaroff": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 1, "slumped": {"_count": 1}}, "were": {"_count": 1, "extinguished": {"_count": 1}}, "instead": {"_count": 1, "obliterating": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "dangling": {"_count": 1, "over": {"_count": 1}}, "of": {"_count": 1, "stew": {"_count": 1}}, "Charlies": {"_count": 1, "old": {"_count": 1}}, "however": {"_count": 1, "Snape": {"_count": 1}}, "yet": {"_count": 1, "it": {"_count": 1}}, "Hagrid": {"_count": 1, "used": {"_count": 1}}, "for": {"_count": 1, "leaks": {"_count": 1}}, "intending": {"_count": 1, "to": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "nearest": {"_count": 2, "the": {"_count": 2}}, "but": {"_count": 2, "did": {"_count": 1}, "backed": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "he": {"_count": 2, "saw": {"_count": 2}}, "smirking": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "potion": {"_count": 1}}, "And": {"_count": 1, "if": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "sounded": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "fire": {"_count": 1}}, "almost": {"_count": 1, "two": {"_count": 1}}, "packed": {"_count": 1, "up": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "parchment": {"_count": 1, "quills": {"_count": 1}}}, "pewter": {"_count": 6, "standard": {"_count": 1, "size": {"_count": 1}}, "on": {"_count": 1, "yer": {"_count": 1}}, "tankard": {"_count": 2, "almost": {"_count": 1}, "which": {"_count": 1}}, "gray": {"_count": 1, "swirled": {"_count": 1}}, "jug": {"_count": 1, "of": {"_count": 1}}}, "standard": {"_count": 12, "size": {"_count": 1, "2": {"_count": 1}}, "broom": {"_count": 1, "this": {"_count": 1}}, "Hermione": {"_count": 1, "he": {"_count": 1}}, "broomstick": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "would": {"_count": 1}}, "of": {"_count": 1, "this": {"_count": 1}}, "but": {"_count": 2, "a": {"_count": 1}, "he": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "required": {"_count": 1, "by": {"_count": 1}}, "around": {"_count": 1, "which": {"_count": 1}}}, "crystal": {"_count": 56, "phials": {"_count": 2, "1": {"_count": 1}, "": {"_count": 1}}, "trophy": {"_count": 1, "cases": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "chains": {"_count": 1}}, "balls": {"_count": 5, "bird": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "until": {"_count": 1}, "told": {"_count": 1}}, "ball": {"_count": 14, "if": {"_count": 1}, "full": {"_count": 1}, "": {"_count": 4}, "a": {"_count": 1}, "trying": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "only": {"_count": 1}, "fell": {"_count": 1}}, "gazing": {"_count": 4, "Headmaster": {"_count": 1}, "": {"_count": 2}, "last": {"_count": 1}}, "gaze": {"_count": 1, "for": {"_count": 1}}, "bottle": {"_count": 8, "of": {"_count": 1}, "slightly": {"_count": 1}, "with": {"_count": 1}, "standing": {"_count": 1}, "containing": {"_count": 1}, "His": {"_count": 1}, "filled": {"_count": 1}, "": {"_count": 1}}, "bubbles": {"_count": 2, "full": {"_count": 1}, "clustered": {"_count": 1}}, "orbs": {"_count": 1, "that": {"_count": 1}}, "chandelier": {"_count": 3, "and": {"_count": 1}, "hung": {"_count": 1}, "tremble": {"_count": 1}}, "bell": {"_count": 2, "jar": {"_count": 2}}, "phial": {"_count": 1, "and": {"_count": 1}}, "bottles": {"_count": 2, "full": {"_count": 1}, "gleaming": {"_count": 1}}, "goblet": {"_count": 2, "that": {"_count": 1}, "into": {"_count": 1}}, "sank": {"_count": 1, "into": {"_count": 1}}, "cup": {"_count": 1, "holding": {"_count": 1}}, "scrape": {"_count": 1, "the": {"_count": 1}}, "flew": {"_count": 1, "in": {"_count": 1}}, "sphere": {"_count": 1, "from": {"_count": 1}}, "flask": {"_count": 1, "of": {"_count": 1}}}, "phials": {"_count": 3, "1": {"_count": 1, "telescope": {"_count": 1}}, "from": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "telescope": {"_count": 19, "1": {"_count": 1, "set": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 8, "scales": {"_count": 1}, "when": {"_count": 1}, "saw": {"_count": 1}, "refocused": {"_count": 1}, "trainers": {"_count": 3}, "sporting": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 2, "found": {"_count": 1}, "saw": {"_count": 1}}, "staring": {"_count": 1, "up": {"_count": 1}}, "in": {"_count": 1, "one": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "scales": {"_count": 23, "Students": {"_count": 1, "may": {"_count": 1}}, "examining": {"_count": 1, "precious": {"_count": 1}}, "for": {"_count": 1, "weighing": {"_count": 1}}, "and": {"_count": 4, "old": {"_count": 1}, "jars": {"_count": 1}, "weve": {"_count": 1}, "the": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "all": {"_count": 1, "soared": {"_count": 1}}, "with": {"_count": 2, "only": {"_count": 1}, "her": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "nobody": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 1, "repaired": {"_count": 1}}, "to": {"_count": 1, "tell": {"_count": 1}}, "that": {"_count": 1, "Hermione": {"_count": 1}}, "up": {"_count": 1, "into": {"_count": 1}}, "smashing": {"_count": 1, "had": {"_count": 1}}, "had": {"_count": 1, "turned": {"_count": 1}}, "were": {"_count": 1, "hard": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "Students": {"_count": 19, "may": {"_count": 1, "also": {"_count": 1}}, "are": {"_count": 2, "finishing": {"_count": 1}, "you": {"_count": 1}}, "arent": {"_count": 1, "supposed": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "will": {"_count": 1, "return": {"_count": 1}}, "exchanged": {"_count": 1, "looks": {"_count": 1}}, "raise": {"_count": 1, "their": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}, "beside": {"_count": 1, "them": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "were": {"_count": 2, "standing": {"_count": 1}, "hanging": {"_count": 1}}, "Magorian": {"_count": 1, "from": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "lying": {"_count": 1, "around": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "ran": {"_count": 1, "in": {"_count": 1}}}, "OR": {"_count": 10, "a": {"_count": 2, "cat": {"_count": 1}, "toad": {"_count": 1}}, "NOT": {"_count": 1, "": {"_count": 1}}, "GHOST": {"_count": 1, "IS": {"_count": 1}}, "DISAPPARATE": {"_count": 1, "INSIDE": {"_count": 1}}, "YOUD": {"_count": 1, "HAVE": {"_count": 1}}, "Innocent": {"_count": 1, "Singing": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "HELL": {"_count": 1, "SWING": {"_count": 1}}, "SHE": {"_count": 1, "DIES": {"_count": 1}}}, "toad": {"_count": 39, "PARENTS": {"_count": 1, "ARE": {"_count": 1}}, "toads": {"_count": 1, "went": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "Id": {"_count": 1, "lose": {"_count": 1}}, "": {"_count": 10, "?": {"_count": 3}, ".": {"_count": 7}}, "sniffed": {"_count": 1, "once": {"_count": 1}}, "was": {"_count": 2, "called": {"_count": 1}, "found": {"_count": 1}}, "zoom": {"_count": 1, "around": {"_count": 1}}, "who": {"_count": 2, "looked": {"_count": 1}, "leapt": {"_count": 1}}, "His": {"_count": 1, "hair": {"_count": 1}}, "one": {"_count": 1, "more": {"_count": 1}}, "croaked": {"_count": 1, "loudly": {"_count": 1}}, "and": {"_count": 3, "see": {"_count": 1}, "dripping": {"_count": 1}, "smiling": {"_count": 1}}, "is": {"_count": 1, "likely": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "Trevor": {"_count": 2, "": {"_count": 2}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "or": {"_count": 1, "playing": {"_count": 1}}, "comes": {"_count": 1, "our": {"_count": 1}}, "bind": {"_count": 1, "it": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}}, "PARENTS": {"_count": 1, "ARE": {"_count": 1, "REMINDED": {"_count": 1}}}, "ARE": {"_count": 13, "REMINDED": {"_count": 1, "THAT": {"_count": 1}}, "NOT": {"_count": 2, "ALLOWED": {"_count": 1}, "RUNNING": {"_count": 1}}, "YOU": {"_count": 7, "A": {"_count": 1}, "": {"_count": 1}, "BEING": {"_count": 1}, "MAD": {"_count": 1}, "DOING": {"_count": 1}, "WAITING": {"_count": 1}, "WORRYING": {"_count": 1}}, "dementoids": {"_count": 1, "": {"_count": 1}}, "ANTIDONTS": {"_count": 1, "UNLESS": {"_count": 1}}, "DOING": {"_count": 1, "": {"_count": 1}}}, "REMINDED": {"_count": 1, "THAT": {"_count": 1, "FIRST": {"_count": 1}}}, "THAT": {"_count": 14, "FIRST": {"_count": 1, "YEARS": {"_count": 1}}, "TREE": {"_count": 2, "": {"_count": 2}}, "RUDDY": {"_count": 1, "OWL": {"_count": 1}}, "CAT": {"_count": 1, "": {"_count": 1}}, "WAS": {"_count": 1, "DELIBERATE": {"_count": 1}}, "YOU": {"_count": 1, "DIRTY": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "THING": {"_count": 1, "AWAY": {"_count": 1}}, "MUCH": {"_count": 1, "CAN": {"_count": 1}}, "ALL": {"_count": 1, "WORK": {"_count": 1}}, "AN": {"_count": 1, "THAT": {"_count": 1}}, "Oh": {"_count": 1, "my": {"_count": 1}}}, "FIRST": {"_count": 2, "YEARS": {"_count": 1, "ARE": {"_count": 1}}, "TASK": {"_count": 1, "Harry": {"_count": 1}}}, "YEARS": {"_count": 3, "ARE": {"_count": 1, "NOT": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "LATER": {"_count": 1, "Autumn": {"_count": 1}}}, "ALLOWED": {"_count": 3, "THEIR": {"_count": 1, "OWN": {"_count": 1}}, "OUT": {"_count": 1, "ON": {"_count": 1}}, "TO": {"_count": 1, "USE": {"_count": 1}}}, "THEIR": {"_count": 2, "OWN": {"_count": 1, "BROOMSTICKS": {"_count": 1}}, "SECRETKEEPER": {"_count": 1, "": {"_count": 1}}}, "OWN": {"_count": 5, "BROOMSTICKS": {"_count": 1, "Can": {"_count": 1}}, "Cheers": {"_count": 1, "Hagrid": {"_count": 1}}, "RISK": {"_count": 1, "They": {"_count": 1}}, "GOOD": {"_count": 1, "this": {"_count": 1}}, "MISTLETOE": {"_count": 1, "the": {"_count": 1}}}, "BROOMSTICKS": {"_count": 1, "Can": {"_count": 1, "we": {"_count": 1}}}, "Can": {"_count": 101, "we": {"_count": 10, "buy": {"_count": 2}, "help": {"_count": 1}, "move": {"_count": 1}, "have": {"_count": 2}, "wrap": {"_count": 1}, "be": {"_count": 1}, "go": {"_count": 2}}, "I": {"_count": 27, "have": {"_count": 8}, "come": {"_count": 1}, "ask": {"_count": 2}, "lick": {"_count": 1}, "give": {"_count": 1}, "tempt": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}, "sit": {"_count": 1}, "try": {"_count": 1}, "go": {"_count": 1}, "borrow": {"_count": 3}, "hear": {"_count": 1}, "tell": {"_count": 1}, "leave": {"_count": 1}, "use": {"_count": 1}, "touch": {"_count": 1}}, "you": {"_count": 52, "smell": {"_count": 1}, "see": {"_count": 2}, "ride": {"_count": 1}, "think": {"_count": 3}, "hear": {"_count": 7}, "fly": {"_count": 1}, "believe": {"_count": 4}, "hold": {"_count": 1}, "taste": {"_count": 1}, "all": {"_count": 1}, "imagine": {"_count": 3}, "make": {"_count": 1}, "picture": {"_count": 1}, "teach": {"_count": 1}, "take": {"_count": 1}, "remember": {"_count": 1}, "ensure": {"_count": 1}, "buy": {"_count": 1}, "learn": {"_count": 1}, "": {"_count": 2}, "tell": {"_count": 2}, "stand": {"_count": 1}, "possibly": {"_count": 1}, "not": {"_count": 1}, "introduce": {"_count": 1}, "keep": {"_count": 1}, "only": {"_count": 1}, "do": {"_count": 2}, "confide": {"_count": 1}, "feel": {"_count": 1}, "control": {"_count": 1}, "mend": {"_count": 1}, "identify": {"_count": 1}, "forgive": {"_count": 2}}, "everyone": {"_count": 1, "see": {"_count": 1}}, "believe": {"_count": 1, "it": {"_count": 1}}, "anyone": {"_count": 1, "confirm": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "your": {"_count": 1, "eye": {"_count": 1}}, "Dobby": {"_count": 1, "give": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "remember": {"_count": 1, "her": {"_count": 1}}, "this": {"_count": 1, "be": {"_count": 1}}, "yeh": {"_count": 1, "believe": {"_count": 1}}, "he": {"_count": 1, "feel": {"_count": 1}}, "that": {"_count": 1, "possibly": {"_count": 1}}}, "aloud": {"_count": 51, "": {"_count": 19, ".": {"_count": 17}, "!": {"_count": 1}, "?": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "Two": {"_count": 1, "Muggles": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "try": {"_count": 1}}, "To": {"_count": 1, "Miss": {"_count": 1}}, "and": {"_count": 4, "Ron": {"_count": 1}, "wrote": {"_count": 1}, "was": {"_count": 1}, "they": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "Dear": {"_count": 2, "Mr": {"_count": 2}}, "Harry": {"_count": 1, "Im": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "Third": {"_count": 1, "regurgitating": {"_count": 1}}, "In": {"_count": 1, "a": {"_count": 1}}, "Dad": {"_count": 1, "is": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "wish": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "had": {"_count": 1, "nevertheless": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "or": {"_count": 1, "it": {"_count": 1}}, "about": {"_count": 1, "Apparition": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "either": {"_count": 1}}, "Marvolo": {"_count": 1, "Gaunt": {"_count": 1}}, "Its": {"_count": 1, "a": {"_count": 1}}}, "stuck": {"_count": 91, "in": {"_count": 17, "the": {"_count": 6}, "here": {"_count": 1}, "his": {"_count": 3}, "Privet": {"_count": 2}, "Little": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}, "between": {"_count": 1}, "court": {"_count": 1}}, "out": {"_count": 12, "his": {"_count": 5}, "at": {"_count": 3}, "weirdly": {"_count": 1}, "in": {"_count": 1}, "its": {"_count": 1}, "her": {"_count": 1}}, "his": {"_count": 11, "wand": {"_count": 2}, "head": {"_count": 6}, "hands": {"_count": 1}, "webbed": {"_count": 1}, "blindfolded": {"_count": 1}}, "up": {"_count": 10, "at": {"_count": 3}, "in": {"_count": 3}, "for": {"_count": 2}, "on": {"_count": 1}, "his": {"_count": 1}}, "together": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "like": {"_count": 1}}, "there": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 3, "inside": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "inside": {"_count": 3, "it": {"_count": 1}, "for": {"_count": 1}, "this": {"_count": 1}}, "on": {"_count": 4, "Privet": {"_count": 1}, "POTTER": {"_count": 1}, "his": {"_count": 1}, "Dolores": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 8, "the": {"_count": 2}, "your": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 3}}, "their": {"_count": 1, "heads": {"_count": 1}}, "all": {"_count": 1, "on": {"_count": 1}}, "her": {"_count": 2, "wand": {"_count": 1}, "pipe": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "beneath": {"_count": 1, "each": {"_count": 1}}, "its": {"_count": 1, "head": {"_count": 1}}, "at": {"_count": 2, "my": {"_count": 1}, "the": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "specky": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "stuck": {"_count": 1, "to": {"_count": 1}}, "alone": {"_count": 1, "in": {"_count": 1}}}, "ticket": {"_count": 14, "barrier": {"_count": 3, "on": {"_count": 1}, "letting": {"_count": 1}, "Mr": {"_count": 1}}, "fer": {"_count": 1, "Hogwarts": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "inspectors": {"_count": 1, "stand": {"_count": 1}}, "and": {"_count": 2, "closed": {"_count": 1}, "emerged": {"_count": 1}}, "machines": {"_count": 1, "": {"_count": 1}}, "inspector": {"_count": 1, "signaled": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}}, "barrier": {"_count": 51, "on": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 7, "the": {"_count": 1}, "platforms": {"_count": 6}}, "he": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "and": {"_count": 3, "then": {"_count": 1}, "bounced": {"_count": 1}, "pushed": {"_count": 1}}, "was": {"_count": 1, "coming": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "letting": {"_count": 1, "them": {"_count": 1}}, "dividing": {"_count": 2, "platforms": {"_count": 2}}, "gathering": {"_count": 1, "speed": {"_count": 1}}, "again": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 3, "Kings": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "from": {"_count": 1, "letting": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "platform": {"_count": 1}, "the": {"_count": 1}}, "chatting": {"_count": 1, "unconcernedly": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "separated": {"_count": 1, "him": {"_count": 1}}, "said": {"_count": 1, "Mrs": {"_count": 1}}, "ignoring": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "prevented": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 2}}, "so": {"_count": 1, "what": {"_count": 1}}, "One": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "better": {"_count": 1}}, "Albus": {"_count": 1, "winced": {"_count": 1}}}, "trains": {"_count": 7, "too": {"_count": 1, "slow": {"_count": 1}}, "open": {"_count": 1, "door": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "slipstream": {"_count": 1, "": {"_count": 1}}, "remember": {"_count": 1, "wizards": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}}, "slow": {"_count": 53, "": {"_count": 4, ".": {"_count": 4}}, "funeral": {"_count": 1, "march": {"_count": 1}}, "motion": {"_count": 6, "the": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 2}, "turning": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "voice": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}, "of": {"_count": 1}}, "down": {"_count": 9, "": {"_count": 2}, "until": {"_count": 2}, "time": {"_count": 1}, "anything": {"_count": 1}, "and": {"_count": 2}, "when": {"_count": 1}}, "rattling": {"_count": 1, "breath": {"_count": 1}}, "and": {"_count": 3, "jerky": {"_count": 1}, "unresponsive": {"_count": 1}, "deep": {"_count": 1}}, "progress": {"_count": 1, "along": {"_count": 1}}, "everything": {"_count": 1, "down": {"_count": 1}}, "dial": {"_count": 1, "on": {"_count": 1}}, "mournful": {"_count": 1, "tune": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "breath": {"_count": 1, "and": {"_count": 1}}, "painful": {"_count": 1, "way": {"_count": 1}}, "knitter": {"_count": 1, "without": {"_count": 1}}, "deep": {"_count": 3, "breathing": {"_count": 2}, "voice": {"_count": 1}}, "cause": {"_count": 1, "Im": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "sigh": {"_count": 1, "": {"_count": 1}}, "breathing": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "disguise": {"_count": 1}}, "doleful": {"_count": 1, "voice": {"_count": 1}}, "stroking": {"_count": 1, "of": {"_count": 1}}, "impressive": {"_count": 1, "voice": {"_count": 1}}, "sad": {"_count": 1, "song": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}}, "climbed": {"_count": 133, "a": {"_count": 7, "brokendown": {"_count": 1}, "set": {"_count": 1}, "staircase": {"_count": 2}, "slope": {"_count": 1}, "steep": {"_count": 1}, "flight": {"_count": 1}}, "in": {"_count": 3, "Hagrid": {"_count": 1}, "through": {"_count": 1}, "tight": {"_count": 1}}, "out": {"_count": 12, "of": {"_count": 8}, "dried": {"_count": 1}, "through": {"_count": 1}, "onto": {"_count": 1}, "and": {"_count": 1}}, "more": {"_count": 1, "staircases": {"_count": 1}}, "the": {"_count": 26, "steps": {"_count": 8}, "stairs": {"_count": 5}, "Gringotts": {"_count": 1}, "winding": {"_count": 1}, "spiral": {"_count": 1}, "tightly": {"_count": 1}, "last": {"_count": 1}, "ladder": {"_count": 2}, "stone": {"_count": 1}, "silver": {"_count": 1}, "remaining": {"_count": 1}, "boys": {"_count": 1}, "marble": {"_count": 2}}, "through": {"_count": 11, "the": {"_count": 10}, "": {"_count": 1}}, "back": {"_count": 8, "into": {"_count": 3}, "down": {"_count": 3}, "up": {"_count": 1}, "through": {"_count": 1}}, "two": {"_count": 2, "floors": {"_count": 1}, "more": {"_count": 1}}, "into": {"_count": 12, "bed": {"_count": 3}, "the": {"_count": 7}, "his": {"_count": 2}}, "carefully": {"_count": 3, "along": {"_count": 1}, "around": {"_count": 1}, "into": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "over": {"_count": 6, "it": {"_count": 2}, "the": {"_count": 3}, "all": {"_count": 1}}, "catlike": {"_count": 1, "through": {"_count": 1}}, "onto": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "narrow": {"_count": 1, "flights": {"_count": 1}}, "it": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "looped": {"_count": 1}}, "somewhat": {"_count": 1, "awkwardly": {"_count": 1}}, "inside": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "their": {"_count": 1, "seventh": {"_count": 1}}, "awkwardly": {"_count": 1, "into": {"_count": 1}}, "cautiously": {"_count": 1, "into": {"_count": 1}}, "fully": {"_count": 1, "dressed": {"_count": 1}}, "watching": {"_count": 1, "his": {"_count": 1}}, "down": {"_count": 3, "the": {"_count": 1}, "magic": {"_count": 1}, "from": {"_count": 1}}, "up": {"_count": 5, "in": {"_count": 1}, "the": {"_count": 2}, "onto": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "on": {"_count": 2, "board": {"_count": 1}, "behind": {"_count": 1}}, "gratefully": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "backward": {"_count": 1, "onto": {"_count": 1}}, "another": {"_count": 1, "step": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "quietly": {"_count": 1}, "fast": {"_count": 1}}, "higher": {"_count": 1, "and": {"_count": 1}}, "steadily": {"_count": 1, "until": {"_count": 1}}}, "escalator": {"_count": 7, "that": {"_count": 1, "led": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "they": {"_count": 1, "went": {"_count": 1}}, "Moody": {"_count": 1, "clunking": {"_count": 1}}}, "bustling": {"_count": 20, "road": {"_count": 1, "lined": {"_count": 1}}, "around": {"_count": 4, "making": {"_count": 3}, "the": {"_count": 1}}, "over": {"_count": 3, "with": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "in": {"_count": 1, "": {"_count": 1}}, "importantly": {"_count": 1, "through": {"_count": 1}}, "up": {"_count": 3, "and": {"_count": 2}, "the": {"_count": 1}}, "along": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "flashes": {"_count": 1}}, "old": {"_count": 1, "fashioned": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "talk": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "place": {"_count": 1, "Harry": {"_count": 1}}}, "lined": {"_count": 45, "with": {"_count": 22, "shops": {"_count": 1}, "shelves": {"_count": 2}, "staring": {"_count": 1}, "candles": {"_count": 1}, "fangs": {"_count": 1}, "students": {"_count": 1}, "paintings": {"_count": 1}, "pillows": {"_count": 1}, "pictures": {"_count": 1}, "imposing": {"_count": 1}, "doors": {"_count": 2}, "portraits": {"_count": 2}, "wooden": {"_count": 1}, "more": {"_count": 2}, "houses": {"_count": 1}, "closed": {"_count": 1}, "disheveled": {"_count": 1}, "rapt": {"_count": 1}}, "the": {"_count": 4, "walls": {"_count": 2}, "path": {"_count": 1}, "castle": {"_count": 1}}, "superfine": {"_count": 1, "handle": {"_count": 1}}, "up": {"_count": 7, "along": {"_count": 1}, "with": {"_count": 2}, "in": {"_count": 3}, "beside": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "face": {"_count": 4, "": {"_count": 3}, "framed": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Fleur": {"_count": 1, "slender": {"_count": 1}}}, "shops": {"_count": 24, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 3, "music": {"_count": 1}, "eating": {"_count": 1}, "as": {"_count": 1}}, "that": {"_count": 1, "sold": {"_count": 1}}, "the": {"_count": 1, "things": {"_count": 1}}, "selling": {"_count": 2, "robes": {"_count": 1}, "telescopes": {"_count": 1}}, "devoted": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "all": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "going": {"_count": 1, "well": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "stars": {"_count": 1, "twinkling": {"_count": 1}}, "a": {"_count": 1, "post": {"_count": 1}}, "to": {"_count": 1, "open": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}}, "parted": {"_count": 20, "the": {"_count": 1, "crowd": {"_count": 1}}, "and": {"_count": 1, "bowed": {"_count": 1}}, "whispering": {"_count": 1, "excitedly": {"_count": 1}}, "company": {"_count": 2, "with": {"_count": 2}}, "to": {"_count": 2, "let": {"_count": 1}, "allow": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "United": {"_count": 1, "by": {"_count": 1}}, "ominously": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "curtains": {"_count": 1}}, "scooped": {"_count": 1, "up": {"_count": 1}}, "evidently": {"_count": 1, "confused": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "book": {"_count": 272, "shops": {"_count": 1, "and": {"_count": 1}}, "shop": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 3, "vampires": {"_count": 1}, "poisonous": {"_count": 1}, "nogtails": {"_count": 1}}, "of": {"_count": 5, "numbers": {"_count": 1}, "interesting": {"_count": 1}, "yours": {"_count": 1}, "childrens": {"_count": 1}, "kids": {"_count": 1}}, "before": {"_count": 1, "coming": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "called": {"_count": 6, "Quidditch": {"_count": 2}, "Prefects": {"_count": 1}, "Moste": {"_count": 1}, "Flying": {"_count": 1}, "Ancient": {"_count": 1}}, "in": {"_count": 5, "there": {"_count": 1}, "her": {"_count": 2}, "the": {"_count": 1}, "thirtyone": {"_count": 1}}, "back": {"_count": 8, "": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 2}, "from": {"_count": 1}, "into": {"_count": 1}, "do": {"_count": 1}}, "": {"_count": 59, ".": {"_count": 47}, "?": {"_count": 9}, "!": {"_count": 3}}, "had": {"_count": 3, "a": {"_count": 1}, "screamed": {"_count": 1}, "broken": {"_count": 1}}, "was": {"_count": 6, "screaming": {"_count": 1}, "hiding": {"_count": 1}, "now": {"_count": 1}, "left": {"_count": 1}, "dangerous": {"_count": 1}, "completed": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "from": {"_count": 4, "under": {"_count": 1}, "the": {"_count": 2}, "Rons": {"_count": 1}}, "Malfoy": {"_count": 2, "took": {"_count": 1}, "was": {"_count": 1}}, "somewhere": {"_count": 1, "in": {"_count": 1}}, "Magical": {"_count": 2, "Me": {"_count": 1}, "Water": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "really": {"_count": 2, "said": {"_count": 1}, "awful": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "signings": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "we": {"_count": 1, "wanted": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "both": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "seats": {"_count": 1, "on": {"_count": 1}}, "says": {"_count": 2, "it": {"_count": 1}, "counterclockwise": {"_count": 1}}, "at": {"_count": 5, "me": {"_count": 1}, "Hogwarts": {"_count": 1}, "random": {"_count": 2}, "the": {"_count": 1}}, "lay": {"_count": 4, "there": {"_count": 1}, "on": {"_count": 2}, "open": {"_count": 1}}, "that": {"_count": 8, "you": {"_count": 1}, "came": {"_count": 1}, "resembled": {"_count": 1}, "we": {"_count": 1}, "had": {"_count": 2}, "looked": {"_count": 1}, "Hermione": {"_count": 1}}, "and": {"_count": 20, "saw": {"_count": 1}, "slipped": {"_count": 1}, "read": {"_count": 1}, "propped": {"_count": 1}, "hid": {"_count": 1}, "start": {"_count": 1}, "set": {"_count": 1}, "as": {"_count": 2}, "was": {"_count": 2}, "looking": {"_count": 1}, "there": {"_count": 1}, "riffled": {"_count": 1}, "turned": {"_count": 1}, "his": {"_count": 1}, "then": {"_count": 1}, "Harry": {"_count": 2}, "on": {"_count": 1}}, "to": {"_count": 8, "press": {"_count": 1}, "Harry": {"_count": 1}, "keep": {"_count": 1}, "be": {"_count": 1}, "hide": {"_count": 1}, "check": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Harry": {"_count": 6, "reached": {"_count": 1}, "": {"_count": 3}, "invented": {"_count": 1}, "panted": {"_count": 1}}, "why": {"_count": 1, "Ginny": {"_count": 1}}, "A": {"_count": 2, "History": {"_count": 1}, "Charm": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "toppled": {"_count": 1, "off": {"_count": 1}}, "snapped": {"_count": 1, "shut": {"_count": 1}}, "tightly": {"_count": 1, "in": {"_count": 1}}, "would": {"_count": 2, "come": {"_count": 1}, "have": {"_count": 1}}, "for": {"_count": 3, "Care": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "which": {"_count": 4, "was": {"_count": 3}, "he": {"_count": 1}}, "it": {"_count": 1, "showed": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "shut": {"_count": 3, "others": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "shivered": {"_count": 1, "and": {"_count": 1}}, "aside": {"_count": 2, "": {"_count": 2}}, "entitled": {"_count": 2, "Home": {"_count": 1}, "Natures": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "Hermione": {"_count": 2, "had": {"_count": 1}, "looked": {"_count": 1}}, "were": {"_count": 1, "all": {"_count": 1}}, "picked": {"_count": 1, "it": {"_count": 1}}, "could": {"_count": 1, "help": {"_count": 1}}, "or": {"_count": 2, "other": {"_count": 1}, "scales": {"_count": 1}}, "Professor": {"_count": 1, "Moody": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 1}, "needed": {"_count": 1}, "had": {"_count": 1}}, "said": {"_count": 6, "not": {"_count": 1}, "Fred": {"_count": 1}, "Ron": {"_count": 2}, "Hermione": {"_count": 2}}, "soared": {"_count": 1, "out": {"_count": 1}}, "so": {"_count": 2, "Dobby": {"_count": 1}, "that": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "needed": {"_count": 1}, "depraved": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 1}, "were": {"_count": 1}}, "slipped": {"_count": 1, "from": {"_count": 1}}, "during": {"_count": 1, "her": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "Ron": {"_count": 2, "told": {"_count": 1}, "and": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}, "didnt": {"_count": 1, "and": {"_count": 1}}, "Slughorn": {"_count": 1, "had": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "no": {"_count": 1}, "eyewitnesses": {"_count": 1}}, "simply": {"_count": 1, "lay": {"_count": 1}}, "suspiciously": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "more": {"_count": 1}, "date": {"_count": 1}}, "sideways": {"_count": 1, "so": {"_count": 1}}, "Ive": {"_count": 1, "learned": {"_count": 1}}, "a": {"_count": 1, "nasty": {"_count": 1}}, "another": {"_count": 1, "nasty": {"_count": 1}}, "thats": {"_count": 1, "been": {"_count": 1}}, "finished": {"_count": 1, "within": {"_count": 1}}, "hoping": {"_count": 1, "that": {"_count": 1}}, "yawning": {"_count": 1, "when": {"_count": 1}}, "deeper": {"_count": 1, "into": {"_count": 1}}, "away": {"_count": 1, "again": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 1, "was": {"_count": 1}}, "when": {"_count": 1, "that": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "contains": {"_count": 1, "less": {"_count": 1}}, "people": {"_count": 1, "may": {"_count": 1}}, "how": {"_count": 1, "unstable": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "about": {"_count": 1, "Dumbledore": {"_count": 1}}, "rooms": {"_count": 1, "at": {"_count": 1}}, "because": {"_count": 1, "Professor": {"_count": 1}}, "hope": {"_count": 1, "you": {"_count": 1}}, "has": {"_count": 1, "given": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "still": {"_count": 1, "clutched": {"_count": 1}}, "where": {"_count": 1, "everyones": {"_count": 1}}}, "music": {"_count": 28, "stores": {"_count": 1, "hamburger": {"_count": 1}}, "and": {"_count": 5, "ten": {"_count": 1}, "loud": {"_count": 2}, "he": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "an": {"_count": 1, "hell": {"_count": 1}}, "stopped": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "was": {"_count": 3, "growing": {"_count": 1}, "inside": {"_count": 1}, "broken": {"_count": 1}}, "reached": {"_count": 1, "such": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "started": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "that": {"_count": 1, "heralded": {"_count": 1}}, "reverberated": {"_count": 1, "upon": {"_count": 1}}, "strange": {"_count": 1, "otherworldly": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "swelled": {"_count": 1, "from": {"_count": 1}}, "box": {"_count": 1, "that": {"_count": 1}}, "stopping": {"_count": 1, "because": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "stores": {"_count": 5, "hamburger": {"_count": 1, "restaurants": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "of": {"_count": 1, "magic": {"_count": 1}}}, "cinemas": {"_count": 1, "but": {"_count": 1, "nowhere": {"_count": 1}}}, "nowhere": {"_count": 50, "that": {"_count": 1, "looked": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "near": {"_count": 9, "the": {"_count": 1}, "he": {"_count": 1}, "enough": {"_count": 1}, "as": {"_count": 3}, "powerful": {"_count": 1}, "them": {"_count": 1}, "Snape": {"_count": 1}}, "else": {"_count": 2, "to": {"_count": 2}}, "to": {"_count": 9, "go": {"_count": 1}, "be": {"_count": 8}}, "Harry": {"_count": 1, "veered": {"_count": 1}}, "something": {"_count": 1, "hit": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "between": {"_count": 1, "numbers": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "toward": {"_count": 1, "Hermione": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "seized": {"_count": 1, "Harry": {"_count": 1}}, "Unable": {"_count": 1, "to": {"_count": 1}}, "rammed": {"_count": 1, "Dolohov": {"_count": 1}}, "a": {"_count": 2, "man": {"_count": 1}, "few": {"_count": 1}}, "said": {"_count": 1, "Ogden": {"_count": 1}}, "her": {"_count": 1, "mousy": {"_count": 1}}, "and": {"_count": 1, "flung": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "pain": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "effing": {"_count": 1, "near": {"_count": 1}}, "he": {"_count": 1, "hurried": {"_count": 1}}, "brandishing": {"_count": 1, "armfuls": {"_count": 1}}, "born": {"_count": 1, "out": {"_count": 1}}}, "sell": {"_count": 19, "you": {"_count": 1, "a": {"_count": 1}}, "another": {"_count": 1, "book": {"_count": 1}}, "that": {"_count": 1, "sort": {"_count": 1}}, "it": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "us": {"_count": 3, "anything": {"_count": 1}, "some": {"_count": 1}, "to": {"_count": 1}}, "her": {"_count": 2, "some": {"_count": 1}, "one": {"_count": 1}}, "itself": {"_count": 1, "you": {"_count": 1}}, "before": {"_count": 1, "leaving": {"_count": 1}}, "stolen": {"_count": 1, "goods": {"_count": 1}}, "Hermione": {"_count": 1, "wizards": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "gold": {"_count": 1}}}, "piles": {"_count": 21, "of": {"_count": 14, "wizard": {"_count": 1}, "spell": {"_count": 1}, "Cribbages": {"_count": 1}, "books": {"_count": 2}, "parchment": {"_count": 3}, "files": {"_count": 1}, "papers": {"_count": 1}, "broken": {"_count": 1}, "tarts": {"_count": 1}, "objects": {"_count": 1}, "junk": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "according": {"_count": 1, "to": {"_count": 1}}, "barely": {"_count": 1, "conscious": {"_count": 1}}, "and": {"_count": 1, "picked": {"_count": 1}}, "upon": {"_count": 1, "piles": {"_count": 1}}}, "buried": {"_count": 49, "miles": {"_count": 1, "beneath": {"_count": 1}}, "deep": {"_count": 1, "under": {"_count": 1}}, "her": {"_count": 4, "face": {"_count": 3}, "nose": {"_count": 1}}, "his": {"_count": 4, "face": {"_count": 4}}, "itself": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 18, "a": {"_count": 3}, "his": {"_count": 3}, "the": {"_count": 3}, "their": {"_count": 2}, "her": {"_count": 2}, "Hagrids": {"_count": 1}, "some": {"_count": 1}, "rubble": {"_count": 1}, "Godrics": {"_count": 2}}, "herself": {"_count": 1, "once": {"_count": 1}}, "himself": {"_count": 1, "once": {"_count": 1}}, "him": {"_count": 1, "outside": {"_count": 1}}, "some": {"_count": 1, "gold": {"_count": 1}}, "a": {"_count": 1, "hundred": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "under": {"_count": 1, "my": {"_count": 1}}, "it": {"_count": 2, "while": {"_count": 1}, "in": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "invisible": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "MadEye": {"_count": 1, "Moodys": {"_count": 1}}, "the": {"_count": 2, "tent": {"_count": 1}, "elf": {"_count": 1}}, "deepest": {"_count": 1, "Harry": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}}, "sold": {"_count": 15, "spell": {"_count": 1, "books": {"_count": 1}}, "the": {"_count": 1, "wand": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "to": {"_count": 1, "an": {"_count": 1}}, "me": {"_count": 1, "half": {"_count": 1}}, "half": {"_count": 1, "as": {"_count": 1}}, "for": {"_count": 1, "wizard": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "faster": {"_count": 1}}, "us": {"_count": 1, "all": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "wide": {"_count": 1}}, "he": {"_count": 1, "vanished": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}}, "broomsticks": {"_count": 37, "": {"_count": 7, "?": {"_count": 1}, ".": {"_count": 6}}, "in": {"_count": 4, "it": {"_count": 1}, "their": {"_count": 1}, "front": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 2, "theres": {"_count": 1}, "waving": {"_count": 1}}, "lying": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 1, "six": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "swooping": {"_count": 1}}, "over": {"_count": 2, "their": {"_count": 2}}, "or": {"_count": 1, "rats": {"_count": 1}}, "throwing": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "rose": {"_count": 1}}, "was": {"_count": 1, "hurtling": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "extricated": {"_count": 1, "himself": {"_count": 1}}, "were": {"_count": 3, "expensive": {"_count": 1}, "leaping": {"_count": 1}, "flying": {"_count": 1}}, "confiscated": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "still": {"_count": 1}}, "said": {"_count": 1, "Luna": {"_count": 1}}, "to": {"_count": 1, "keeping": {"_count": 1}}, "bent": {"_count": 1, "tail": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "propped": {"_count": 1, "against": {"_count": 1}}, "bats": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Might": {"_count": 14, "this": {"_count": 1, "not": {"_count": 1}}, "as": {"_count": 2, "well": {"_count": 2}}, "I": {"_count": 3, "ask": {"_count": 2}, "remind": {"_count": 1}}, "be": {"_count": 3, "a": {"_count": 1}, "worth": {"_count": 1}, "Confunded": {"_count": 1}}, "someday": {"_count": 1, "be": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "bring": {"_count": 1, "the": {"_count": 1}}, "see": {"_count": 1, "Hagrid": {"_count": 1}}}, "cooked": {"_count": 5, "up": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "fancy": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 2, "pies": {"_count": 2}}}, "humor": {"_count": 10, "he": {"_count": 1, "might": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "would": {"_count": 1, "he": {"_count": 1}}, "then": {"_count": 1, "Ron": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 1}, "her": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "gone": {"_count": 1, "terror": {"_count": 1}}, "is": {"_count": 1, "just": {"_count": 1}}}, "unbelievable": {"_count": 7, "Harry": {"_count": 1, "couldnt": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}}, "trusting": {"_count": 12, "him": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "diary": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "man": {"_count": 1, "isnt": {"_count": 1}}, "Winky": {"_count": 1, "with": {"_count": 1}}, "Snape": {"_count": 3, "wheres": {"_count": 1}, "but": {"_count": 1}, "muttered": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "thinking": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}}, "halt": {"_count": 83, "the": {"_count": 1, "Leaky": {"_count": 1}}, "in": {"_count": 16, "a": {"_count": 2}, "front": {"_count": 8}, "the": {"_count": 3}, "midair": {"_count": 2}, "time": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "clutching": {"_count": 1, "at": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "exactly": {"_count": 1, "where": {"_count": 1}}, "and": {"_count": 6, "Hermione": {"_count": 1}, "looking": {"_count": 1}, "looked": {"_count": 1}, "then": {"_count": 1}, "Harry": {"_count": 1}, "turned": {"_count": 1}}, "at": {"_count": 4, "Harrys": {"_count": 1}, "the": {"_count": 2}, "level": {"_count": 1}}, "crouched": {"_count": 1, "low": {"_count": 1}}, "outside": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 2}}, "trying": {"_count": 1, "to": {"_count": 1}}, "very": {"_count": 1, "close": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "home": {"_count": 1}}, "before": {"_count": 3, "the": {"_count": 2}, "them": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "beside": {"_count": 4, "him": {"_count": 1}, "the": {"_count": 3}}, "with": {"_count": 1, "his": {"_count": 1}}, "just": {"_count": 1, "before": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "staring": {"_count": 1, "at": {"_count": 1}}, "these": {"_count": 1, "pyrotechnical": {"_count": 1}}, "that": {"_count": 1, "golden": {"_count": 1}}, "panting": {"_count": 2, "and": {"_count": 2}}, "right": {"_count": 1, "in": {"_count": 1}}, "several": {"_count": 1, "steps": {"_count": 1}}, "transfixed": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "Ogden": {"_count": 1}}, "where": {"_count": 1, "Ron": {"_count": 1}}, "bumping": {"_count": 1, "gently": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "run": {"_count": 1, "out": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "halfway": {"_count": 1, "along": {"_count": 1}}, "Harry": {"_count": 1, "heard": {"_count": 1}}}, "Leaky": {"_count": 37, "Cauldron": {"_count": 36, "": {"_count": 11}, "at": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 3}, "now": {"_count": 2}, "Professor": {"_count": 1}, "for": {"_count": 1}, "where": {"_count": 2}, "behind": {"_count": 1}, "and": {"_count": 1}, "if": {"_count": 1}, "hardly": {"_count": 1}, "but": {"_count": 1}, "tonight": {"_count": 1}, "in": {"_count": 3}, "too": {"_count": 1}, "from": {"_count": 1}, "can": {"_count": 1}, "here": {"_count": 1}, "the": {"_count": 1}}, "Cauldrons": {"_count": 1, "narrow": {"_count": 1}}}, "Cauldron": {"_count": 49, "": {"_count": 12, ".": {"_count": 9}, "?": {"_count": 3}}, "at": {"_count": 1, "all": {"_count": 1}}, "had": {"_count": 1, "suddenly": {"_count": 1}}, "was": {"_count": 3, "like": {"_count": 1}, "for": {"_count": 1}, "nearly": {"_count": 1}}, "now": {"_count": 2, "empty": {"_count": 1}, "": {"_count": 1}}, "Professor": {"_count": 1, "Quirrell": {"_count": 1}}, "Cakes": {"_count": 6, "Licorice": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 2}, "says": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "where": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "behind": {"_count": 1, "which": {"_count": 1}}, "and": {"_count": 1, "Hang": {"_count": 1}}, "if": {"_count": 1, "not": {"_count": 1}}, "hardly": {"_count": 1, "noticing": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "tonight": {"_count": 1, "too": {"_count": 1}}, "Cake": {"_count": 1, "Harry": {"_count": 1}}, "explosion": {"_count": 1, "wand": {"_count": 1}}, "in": {"_count": 3, "Diagon": {"_count": 1}, "London": {"_count": 2}}, "too": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Full": {"_count": 3, "of": {"_count": 3}}, "into": {"_count": 1, "his": {"_count": 1}}, "can": {"_count": 1, "we": {"_count": 1}}, "here": {"_count": 1, "its": {"_count": 1}}, "the": {"_count": 1, "inn": {"_count": 1}}}, "grubbylooking": {"_count": 4, "pub": {"_count": 1, "": {"_count": 1}}, "warlock": {"_count": 1, "in": {"_count": 1}}, "objects": {"_count": 1, "from": {"_count": 1}}, "wizard": {"_count": 1, "": {"_count": 1}}}, "pub": {"_count": 42, "": {"_count": 11, ".": {"_count": 11}}, "las": {"_count": 1, "year": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "Leaky": {"_count": 1}, "Hogs": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "spotted": {"_count": 1}}, "toward": {"_count": 2, "Harry": {"_count": 2}}, "was": {"_count": 2, "as": {"_count": 1}, "fuller": {"_count": 1}}, "had": {"_count": 2, "gone": {"_count": 1}, "opened": {"_count": 1}}, "and": {"_count": 3, "an": {"_count": 1}, "back": {"_count": 1}, "a": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "Minsk": {"_count": 1}}, "so": {"_count": 1, "full": {"_count": 1}}, "which": {"_count": 1, "squeezed": {"_count": 1}}, "looking": {"_count": 1, "wretched": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "burst": {"_count": 1, "open": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "door": {"_count": 1, "opened": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}}, "hurrying": {"_count": 103, "by": {"_count": 1, "didnt": {"_count": 1}}, "in": {"_count": 2, "different": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 15, "let": {"_count": 1}, "keep": {"_count": 3}, "stand": {"_count": 1}, "tell": {"_count": 1}, "meet": {"_count": 2}, "catch": {"_count": 2}, "close": {"_count": 1}, "pick": {"_count": 1}, "greet": {"_count": 1}, "the": {"_count": 1}, "fetch": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 5}}, "feet": {"_count": 1, "behind": {"_count": 1}}, "back": {"_count": 4, "up": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}, "to": {"_count": 1}}, "over": {"_count": 6, "to": {"_count": 3}, "from": {"_count": 1}, "and": {"_count": 2}}, "alongside": {"_count": 1, "them": {"_count": 1}}, "up": {"_count": 13, "to": {"_count": 5}, "the": {"_count": 7}, "and": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "toward": {"_count": 16, "him": {"_count": 4}, "them": {"_count": 6}, "lunch": {"_count": 1}, "their": {"_count": 1}, "Harry": {"_count": 3}, "the": {"_count": 1}}, "forward": {"_count": 9, "": {"_count": 1}, "and": {"_count": 3}, "looking": {"_count": 1}, "to": {"_count": 2}, "out": {"_count": 1}, "as": {"_count": 1}}, "into": {"_count": 5, "the": {"_count": 4}, "his": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 3}}, "along": {"_count": 10, "now": {"_count": 1}, "beside": {"_count": 1}, "behind": {"_count": 3}, "the": {"_count": 2}, "to": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "down": {"_count": 3, "the": {"_count": 3}}, "through": {"_count": 2, "the": {"_count": 2}}, "onto": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "them": {"_count": 1}}}, "record": {"_count": 26, "shop": {"_count": 1, "on": {"_count": 1}}, "is": {"_count": 1, "three": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "wasnt": {"_count": 1, "exactly": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 9, "the": {"_count": 3}, "our": {"_count": 1}, "S": {"_count": 1}, "any": {"_count": 1}, "it": {"_count": 1}, "Muggle": {"_count": 1}, "their": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "bet": {"_count": 1, "any": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Umbridge": {"_count": 1}}, "was": {"_count": 1, "relabeled": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "fee": {"_count": 1, "two": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "already": {"_count": 1, "back": {"_count": 1}}}, "Before": {"_count": 72, "he": {"_count": 16, "could": {"_count": 8}, "had": {"_count": 3}, "knew": {"_count": 3}, "pulled": {"_count": 1}, "became": {"_count": 1}}, "we": {"_count": 6, "begin": {"_count": 2}, "ge": {"_count": 1}, "see": {"_count": 1}, "start": {"_count": 1}, "go": {"_count": 1}}, "Ron": {"_count": 2, "could": {"_count": 2}}, "Malfoy": {"_count": 1, "knew": {"_count": 1}}, "Harry": {"_count": 12, "could": {"_count": 9}, "knew": {"_count": 1}, "had": {"_count": 1}, "or": {"_count": 1}}, "Dumbledore": {"_count": 1, "could": {"_count": 1}}, "Fudge": {"_count": 2, "could": {"_count": 2}}, "hed": {"_count": 1, "had": {"_count": 1}}, "either": {"_count": 2, "of": {"_count": 2}}, "the": {"_count": 8, "Wolfsbane": {"_count": 1}, "train": {"_count": 1}, "dementors": {"_count": 1}, "dragon": {"_count": 1}, "Prime": {"_count": 1}, "front": {"_count": 1}, "Ministry": {"_count": 1}, "night": {"_count": 1}}, "Snape": {"_count": 1, "could": {"_count": 1}}, "any": {"_count": 3, "of": {"_count": 3}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "long": {"_count": 1, "however": {"_count": 1}}, "you": {"_count": 1, "got": {"_count": 1}}, "Voldemort": {"_count": 1, "could": {"_count": 1}}, "anyone": {"_count": 1, "sees": {"_count": 1}}, "Hermione": {"_count": 3, "could": {"_count": 3}}, "Wormtail": {"_count": 1, "wets": {"_count": 1}}, "I": {"_count": 3, "answer": {"_count": 2}, "meet": {"_count": 1}}, "they": {"_count": 2, "could": {"_count": 2}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "anybody": {"_count": 1, "could": {"_count": 1}}, "Ginny": {"_count": 1, "took": {"_count": 1}}}, "steered": {"_count": 11, "him": {"_count": 4, "inside": {"_count": 1}, "right": {"_count": 1}, "out": {"_count": 1}, "away": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "away": {"_count": 1, "one": {"_count": 1}}, "her": {"_count": 1, "back": {"_count": 1}}, "Harry": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 2, "motorbike": {"_count": 1}, "broom": {"_count": 1}}}, "shabby": {"_count": 25, "": {"_count": 2, ".": {"_count": 2}}, "wallpaper": {"_count": 1, "with": {"_count": 1}}, "tattered": {"_count": 1, "wizards": {"_count": 1}}, "black": {"_count": 1, "cover": {"_count": 1}}, "looking": {"_count": 1, "pub": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 2, "ever": {"_count": 1}, "the": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "twoman": {"_count": 1, "tents": {"_count": 1}}, "and": {"_count": 3, "scratched": {"_count": 1}, "smart": {"_count": 1}, "his": {"_count": 1}}, "corridor": {"_count": 1, "and": {"_count": 1}}, "miserable": {"_count": 1, "air": {"_count": 1}}, "jumper": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 2, "spotlessly": {"_count": 1}, "cozy": {"_count": 1}}, "wardrobe": {"_count": 1, "in": {"_count": 1}}, "allnight": {"_count": 1, "cafe": {"_count": 1}}, "square": {"_count": 1, "": {"_count": 1}}, "overlarge": {"_count": 1, "coat": {"_count": 1}}}, "women": {"_count": 19, "were": {"_count": 4, "sitting": {"_count": 1}, "running": {"_count": 1}, "crying": {"_count": 1}, "fighting": {"_count": 1}}, "said": {"_count": 1, "Chaser": {"_count": 1}}, "Wood": {"_count": 1, "agreed": {"_count": 1}}, "in": {"_count": 1, "crinolines": {"_count": 1}}, "wear": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "carrying": {"_count": 1, "briefcases": {"_count": 1}}, "fight": {"_count": 1, "each": {"_count": 1}}, "and": {"_count": 5, "children": {"_count": 2}, "grasping": {"_count": 1}, "permitted": {"_count": 1}, "of": {"_count": 1}}, "Ginny": {"_count": 1, "Tonks": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}}, "drinking": {"_count": 29, "tiny": {"_count": 1, "glasses": {"_count": 1}}, "deeply": {"_count": 2, "from": {"_count": 2}}, "it": {"_count": 2, "for": {"_count": 1}, "can": {"_count": 1}}, "Elixir": {"_count": 1, "of": {"_count": 1}}, "nothing": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "or": {"_count": 1, "are": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "only": {"_count": 1, "from": {"_count": 1}}, "are": {"_count": 1, "denied": {"_count": 1}}, "in": {"_count": 2, "every": {"_count": 1}, "the": {"_count": 1}}, "lots": {"_count": 1, "sir": {"_count": 1}}, "one": {"_count": 1, "hand": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "his": {"_count": 1, "coffee": {"_count": 1}}, "mates": {"_count": 1, "he": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "terrible": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "kneeling": {"_count": 1, "beside": {"_count": 1}}}, "sherry": {"_count": 11, "": {"_count": 3, ".": {"_count": 3}}, "bottle": {"_count": 1, "in": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "bottles": {"_count": 4, "lying": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}}, "even": {"_count": 1, "though": {"_count": 1}}}, "smoking": {"_count": 22, "a": {"_count": 2, "long": {"_count": 1}, "pipe": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "faintly": {"_count": 1, "and": {"_count": 1}}, "goblet": {"_count": 2, "his": {"_count": 1}, "entered": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "slightly": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "then": {"_count": 1, "very": {"_count": 1}}, "on": {"_count": 1, "street": {"_count": 1}}, "fiery": {"_count": 1, "substance": {"_count": 1}}, "drink": {"_count": 1, "from": {"_count": 1}}, "ominously": {"_count": 1, "took": {"_count": 1}}, "fire": {"_count": 1, "twisting": {"_count": 1}}, "jacket": {"_count": 1, "": {"_count": 1}}, "jackets": {"_count": 1, "": {"_count": 1}}, "wreck": {"_count": 1, "": {"_count": 1}}, "handkerchief": {"_count": 1, "to": {"_count": 1}}}, "pipe": {"_count": 25, "": {"_count": 8, ".": {"_count": 8}}, "was": {"_count": 2, "puffing": {"_count": 1}, "sliding": {"_count": 1}}, "at": {"_count": 1, "it": {"_count": 1}}, "hitting": {"_count": 1, "its": {"_count": 1}}, "exposed": {"_count": 1, "a": {"_count": 1}}, "wide": {"_count": 1, "enough": {"_count": 1}}, "then": {"_count": 1, "let": {"_count": 1}}, "leveled": {"_count": 1, "out": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "smoke": {"_count": 3, "hung": {"_count": 2}, "issuing": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "holding": {"_count": 1}}, "firmly": {"_count": 1, "between": {"_count": 1}}, "waggling": {"_count": 1, "slightly": {"_count": 1}}}, "bartender": {"_count": 4, "who": {"_count": 1, "was": {"_count": 1}}, "reached": {"_count": 1, "for": {"_count": 1}}, "peering": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}}, "walnut": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "jammed": {"_count": 1, "up": {"_count": 1}}, "wand": {"_count": 1, "so": {"_count": 1}}, "wands": {"_count": 1, "allegiance": {"_count": 1}}}, "buzz": {"_count": 8, "of": {"_count": 7, "chatter": {"_count": 2}, "Christmas": {"_count": 1}, "talk": {"_count": 1}, "conversation": {"_count": 2}, "fear": {"_count": 1}}, "excitedly": {"_count": 1, "the": {"_count": 1}}}, "chatter": {"_count": 10, "stopped": {"_count": 1, "when": {"_count": 1}}, "of": {"_count": 1, "everyone": {"_count": 1}}, "the": {"_count": 1, "bustle": {"_count": 1}}, "and": {"_count": 3, "squeak": {"_count": 1}, "an": {"_count": 1}, "flurry": {"_count": 1}}, "filling": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "died": {"_count": 1, "out": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}}, "smiled": {"_count": 135, "at": {"_count": 33, "him": {"_count": 11}, "the": {"_count": 6}, "Seamus": {"_count": 1}, "Harry": {"_count": 10}, "Wood": {"_count": 1}, "her": {"_count": 1}, "itself": {"_count": 1}, "Dumbledore": {"_count": 1}, "each": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "weakly": {"_count": 4, "": {"_count": 4}}, "nastily": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 25}}, "and": {"_count": 5, "waved": {"_count": 2}, "popped": {"_count": 1}, "repeated": {"_count": 1}, "shook": {"_count": 1}}, "down": {"_count": 2, "at": {"_count": 2}}, "still": {"_count": 1, "more": {"_count": 1}}, "feebly": {"_count": 1, "": {"_count": 1}}, "grimly": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "faintly": {"_count": 1, "the": {"_count": 1}}, "vaguely": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "slightly": {"_count": 1, "at": {"_count": 1}}, "wryly": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "first": {"_count": 1}, "other": {"_count": 2}}, "as": {"_count": 4, "he": {"_count": 2}, "the": {"_count": 1}, "she": {"_count": 1}}, "when": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "very": {"_count": 1, "mischievously": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "happily": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 1}, "terrible": {"_count": 1}}, "indulgently": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "broadly": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 1, "mysterious": {"_count": 1}}, "more": {"_count": 2, "broadly": {"_count": 1}, "warmly": {"_count": 1}}, "back": {"_count": 4, "at": {"_count": 2}, "vaguely": {"_count": 1}, "hoping": {"_count": 1}}, "in": {"_count": 1, "days": {"_count": 1}}, "but": {"_count": 2, "made": {"_count": 2}}, "humorlessly": {"_count": 1, "": {"_count": 1}}, "bitterly": {"_count": 1, "and": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "encouragingly": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "tremulously": {"_count": 1, "": {"_count": 1}}, "revealing": {"_count": 1, "very": {"_count": 1}}, "he": {"_count": 2, "knew": {"_count": 1}, "could": {"_count": 1}}, "to": {"_count": 1, "himself": {"_count": 1}}, "widely": {"_count": 1, "at": {"_count": 1}}, "reassuringly": {"_count": 1, "over": {"_count": 1}}, "benignly": {"_count": 1, "upon": {"_count": 1}}, "raised": {"_count": 1, "a": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}, "unpleasantly": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "ruefully": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "mechanically": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 1, "lumbered": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "Hermione": {"_count": 1, "pulling": {"_count": 1}}, "dolefully": {"_count": 1, "at": {"_count": 1}}, "surveying": {"_count": 1, "Harry": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}}, "Tom": {"_count": 124, "Im": {"_count": 1, "on": {"_count": 1}}, "Riddle": {"_count": 43, "": {"_count": 11}, "had": {"_count": 5}, "poor": {"_count": 1}, "said": {"_count": 1}, "senior": {"_count": 2}, "forget": {"_count": 1}, "reappeared": {"_count": 1}, "pretending": {"_count": 1}, "left": {"_count": 1}, "and": {"_count": 2}, "too": {"_count": 1}, "was": {"_count": 2}, "liked": {"_count": 1}, "whom": {"_count": 1}, "a": {"_count": 1}, "Senior": {"_count": 1}, "prefect": {"_count": 1}, "for": {"_count": 1}, "than": {"_count": 1}, "in": {"_count": 1}, "merely": {"_count": 1}, "once": {"_count": 1}, "would": {"_count": 1}, "discovered": {"_count": 1}, "who": {"_count": 1}, "hit": {"_count": 1}}, "after": {"_count": 1, "my": {"_count": 1}}, "he": {"_count": 2, "sighed": {"_count": 1}, "recited": {"_count": 1}}, "": {"_count": 24, ".": {"_count": 12}, "?": {"_count": 11}, "!": {"_count": 1}}, "Tom": {"_count": 3, "Riddle": {"_count": 1}, "if": {"_count": 2}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "Percy": {"_count": 1, "keeps": {"_count": 1}}, "what": {"_count": 1, "am": {"_count": 1}}, "Harrys": {"_count": 1, "fists": {"_count": 1}}, "the": {"_count": 8, "wizened": {"_count": 1}, "innkeeper": {"_count": 3}, "landlord": {"_count": 2}, "barman": {"_count": 1}, "stooped": {"_count": 1}}, "said": {"_count": 7, "Fudge": {"_count": 1}, "Dumbledore": {"_count": 2}, "the": {"_count": 1}, "he": {"_count": 1}, "Slughorn": {"_count": 1}, "Hepzibah": {"_count": 1}}, "beckoned": {"_count": 1, "Fudge": {"_count": 1}}, "clicked": {"_count": 1, "his": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "now": {"_count": 1, "moved": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "unlocked": {"_count": 1, "and": {"_count": 1}}, "woke": {"_count": 1, "Harry": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "Riddles": {"_count": 4, "grave": {"_count": 1}, "history": {"_count": 1}, "face": {"_count": 1}, "eyes": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "sure": {"_count": 1, "yeh": {"_count": 1}}, "nodded": {"_count": 1, "gloomily": {"_count": 1}}, "a": {"_count": 1, "place": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "nor": {"_count": 1, "Marvolo": {"_count": 1}}, "if": {"_count": 2, "I": {"_count": 2}}, "youll": {"_count": 1, "appreciate": {"_count": 1}}, "she": {"_count": 1, "whispered": {"_count": 1}}, "dear": {"_count": 1, "and": {"_count": 1}}, "anymore": {"_count": 1, "he": {"_count": 1}}, "Ive": {"_count": 1, "never": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "thats": {"_count": 1, "very": {"_count": 1}}, "very": {"_count": 1, "few": {"_count": 1}}, "and": {"_count": 1, "as": {"_count": 1}}, "look": {"_count": 1, "surprised": {"_count": 1}}}, "buckle": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "Norbert": {"_count": 1, "safely": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "peering": {"_count": 76, "at": {"_count": 10, "Harry": {"_count": 4}, "the": {"_count": 2}, "him": {"_count": 3}, "her": {"_count": 1}}, "about": {"_count": 1, "nervously": {"_count": 1}}, "skyward": {"_count": 1, "at": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 2}, "": {"_count": 1}, "at": {"_count": 2}, "from": {"_count": 2}}, "over": {"_count": 8, "the": {"_count": 5}, "his": {"_count": 2}, "Hermiones": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 8, "through": {"_count": 1}, "the": {"_count": 2}, "at": {"_count": 3}, "into": {"_count": 1}, "his": {"_count": 1}}, "through": {"_count": 14, "the": {"_count": 11}, "it": {"_count": 1}, "various": {"_count": 1}, "doorways": {"_count": 1}}, "suspiciously": {"_count": 1, "into": {"_count": 1}}, "anxiously": {"_count": 2, "into": {"_count": 1}, "around": {"_count": 1}}, "desperately": {"_count": 1, "through": {"_count": 1}}, "in": {"_count": 2, "at": {"_count": 1}, "astonishment": {"_count": 1}}, "sternly": {"_count": 1, "over": {"_count": 1}}, "around": {"_count": 8, "Filch": {"_count": 1}, "Filchs": {"_count": 1}, "the": {"_count": 2}, "at": {"_count": 2}, "nervously": {"_count": 1}, "listening": {"_count": 1}}, "balefully": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 5, "the": {"_count": 2}, "Fred": {"_count": 1}, "cauldrons": {"_count": 1}, "it": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "behind": {"_count": 1, "an": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}, "shortsightedly": {"_count": 1, "up": {"_count": 1}}, "more": {"_count": 1, "closely": {"_count": 1}}}, "Bless": {"_count": 7, "my": {"_count": 1, "soul": {"_count": 1}}, "him": {"_count": 2, "look": {"_count": 1}, "said": {"_count": 1}}, "them": {"_count": 2, "theyll": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "little": {"_count": 1}}, "you": {"_count": 1, "said": {"_count": 1}}}, "soul": {"_count": 92, "whispered": {"_count": 1, "the": {"_count": 1}}, "knows": {"_count": 1, "except": {"_count": 1}}, "with": {"_count": 1, "Voldemort": {"_count": 1}}, "to": {"_count": 5, "me": {"_count": 1}, "inhabit": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 1}, "help": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "less": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 9}, "?": {"_count": 4}}, "you": {"_count": 2, "know": {"_count": 1}, "see": {"_count": 1}}, "is": {"_count": 5, "gone": {"_count": 1}, "supposed": {"_count": 1}, "no": {"_count": 1}, "not": {"_count": 1}, "whole": {"_count": 1}}, "sucked": {"_count": 2, "out": {"_count": 2}}, "within": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 2, "through": {"_count": 1}, "of": {"_count": 1}}, "rattling": {"_count": 1, "around": {"_count": 1}}, "youd": {"_count": 1, "know": {"_count": 1}}, "would": {"_count": 2, "have": {"_count": 1}, "greatly": {"_count": 1}}, "for": {"_count": 1, "who": {"_count": 1}}, "alive": {"_count": 1, "apart": {"_count": 1}}, "left": {"_count": 2, "upon": {"_count": 1}, "in": {"_count": 1}}, "remains": {"_count": 1, "earthbound": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 6, "more": {"_count": 2}, "two": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "was": {"_count": 4, "safe": {"_count": 1}, "mutilated": {"_count": 1}, "blasted": {"_count": 1}, "still": {"_count": 1}}, "repeatedly": {"_count": 1, "so": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "concealed": {"_count": 2, "inside": {"_count": 1}, "within": {"_count": 1}}, "however": {"_count": 1, "maimed": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "survive": {"_count": 1}}, "inside": {"_count": 3, "it": {"_count": 3}}, "four": {"_count": 1, "Horcruxes": {"_count": 1}}, "may": {"_count": 1, "be": {"_count": 1}}, "he": {"_count": 1, "never": {"_count": 1}}, "that": {"_count": 2, "is": {"_count": 1}, "was": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "until": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 2, "bit": {"_count": 1}, "dementor": {"_count": 1}}, "into": {"_count": 1, "seven": {"_count": 1}}, "by": {"_count": 1, "ripping": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "trapped": {"_count": 1, "in": {"_count": 1}}, "saw": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "already": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "discussed": {"_count": 1}}, "maimed": {"_count": 1, "as": {"_count": 1}}, "like": {"_count": 1, "Harrys": {"_count": 1}}, "unmissed": {"_count": 1, "by": {"_count": 1}}, "so": {"_count": 1, "unstable": {"_count": 1}}}, "honor": {"_count": 31, "": {"_count": 9, ".": {"_count": 8}, "!": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 5, "the": {"_count": 2}, "being": {"_count": 1}, "hosting": {"_count": 1}, "his": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "flanked": {"_count": 1, "by": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "for": {"_count": 2, "our": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 2, "we": {"_count": 1}, "of": {"_count": 1}}, "singing": {"_count": 1, "their": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "not": {"_count": 1, "because": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "said": {"_count": 2, "Master": {"_count": 1}, "Ollivander": {"_count": 1}}}, "bar": {"_count": 46, "rushed": {"_count": 1, "toward": {"_count": 1}}, "and": {"_count": 6, "out": {"_count": 3}, "Fred": {"_count": 1}, "Harry": {"_count": 1}, "sat": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "of": {"_count": 4, "soap": {"_count": 1}, "Honeydukes": {"_count": 1}, "the": {"_count": 2}}, "reading": {"_count": 1, "the": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "Youre": {"_count": 1, "not": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "pause": {"_count": 1, "then": {"_count": 1}}, "went": {"_count": 1, "quiet": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 2, "Ron": {"_count": 1}, "enthusiasm": {"_count": 1}}, "saw": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 3}}, "apparently": {"_count": 1, "oblivious": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "gave": {"_count": 1, "an": {"_count": 1}}, "comprised": {"_count": 1, "one": {"_count": 1}}, "whose": {"_count": 1, "whole": {"_count": 1}}, "first": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "counter": {"_count": 1, "a": {"_count": 1}}, "then": {"_count": 1, "climbing": {"_count": 1}}, "said": {"_count": 1, "Neville": {"_count": 1}}}, "Welcome": {"_count": 20, "back": {"_count": 1, "Mr": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "to": {"_count": 10, "Hogwarts": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 5}, "another": {"_count": 1}, "Divination": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "welcome": {"_count": 1, "": {"_count": 1}}, "Patrick": {"_count": 1, "said": {"_count": 1}}, "it": {"_count": 1, "said": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "Witch": {"_count": 1, "will": {"_count": 1}}, "Witchs": {"_count": 1, "desk": {"_count": 1}}}, "welcome": {"_count": 54, "back": {"_count": 6, "": {"_count": 3}, "into": {"_count": 1}, "Professor": {"_count": 1}, "to": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "them": {"_count": 1, "graciously": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "too": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 13}, "!": {"_count": 2}}, "to": {"_count": 6, "share": {"_count": 1}, "it": {"_count": 1}, "contact": {"_count": 1}, "visit": {"_count": 1}, "our": {"_count": 1}, "Voldemort": {"_count": 1}}, "their": {"_count": 1, "guest": {"_count": 1}}, "two": {"_count": 1, "new": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "her": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 3, "Bulgarian": {"_count": 1}, "opportunity": {"_count": 1}, "family": {"_count": 1}}, "bowing": {"_count": 1, "and": {"_count": 1}}, "thing": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "the": {"_count": 1}}, "noted": {"_count": 1, "how": {"_count": 1}}, "at": {"_count": 2, "Mr": {"_count": 1}, "the": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "among": {"_count": 1, "us": {"_count": 1}}, "for": {"_count": 1, "us": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "new": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}, "her": {"_count": 1, "with": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}}, "puffing": {"_count": 12, "on": {"_count": 2, "it": {"_count": 1}, "their": {"_count": 1}}, "sound": {"_count": 1, "told": {"_count": 1}}, "along": {"_count": 1, "behind": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "smoke": {"_count": 2, "over": {"_count": 1}, "and": {"_count": 1}}, "himself": {"_count": 1, "up": {"_count": 1}}, "out": {"_count": 2, "his": {"_count": 2}}, "and": {"_count": 1, "whirring": {"_count": 1}}, "Slughorn": {"_count": 1, "had": {"_count": 1}}}, "scraping": {"_count": 15, "of": {"_count": 4, "chairs": {"_count": 2}, "heavy": {"_count": 1}, "trunks": {"_count": 1}}, "noise": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "thumps": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "puffing": {"_count": 1}, "banging": {"_count": 1}}, "the": {"_count": 1, "ceiling": {"_count": 1}}, "as": {"_count": 1, "everyone": {"_count": 1}}, "noises": {"_count": 1, "plus": {"_count": 1}}, "drew": {"_count": 1, "nearer": {"_count": 1}}}, "chairs": {"_count": 70, "and": {"_count": 11, "the": {"_count": 2}, "looked": {"_count": 1}, "tables": {"_count": 2}, "a": {"_count": 1}, "poufs": {"_count": 1}, "exited": {"_count": 1}, "overstuffed": {"_count": 1}, "footstools": {"_count": 1}, "bookcases": {"_count": 1}}, "were": {"_count": 1, "piled": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 1}, "front": {"_count": 2}, "which": {"_count": 1}}, "by": {"_count": 4, "the": {"_count": 4}}, "outside": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "set": {"_count": 3, "back": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "empty": {"_count": 1}}, "stood": {"_count": 2, "in": {"_count": 2}}, "to": {"_count": 2, "retrieve": {"_count": 1}, "demonstrate": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "two": {"_count": 1, "on": {"_count": 1}}, "who": {"_count": 1, "else": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 3}}, "near": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "with": {"_count": 1, "chained": {"_count": 1}}, "on": {"_count": 2, "either": {"_count": 1}, "her": {"_count": 1}}, "as": {"_count": 1, "everyone": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "their": {"_count": 1, "tongues": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "appeared": {"_count": 2, "out": {"_count": 1}, "at": {"_count": 1}}, "she": {"_count": 1, "gave": {"_count": 1}}, "some": {"_count": 1, "looking": {"_count": 1}}, "grouped": {"_count": 2, "haphazardly": {"_count": 1}, "themselves": {"_count": 1}}, "facing": {"_count": 1, "it": {"_count": 1}}, "shabby": {"_count": 1, "and": {"_count": 1}}, "sat": {"_count": 1, "themselves": {"_count": 1}}, "all": {"_count": 1, "except": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "books": {"_count": 1, "weapons": {"_count": 1}}}, "Doris": {"_count": 4, "Crockford": {"_count": 3, "Mr": {"_count": 1}, "kept": {"_count": 1}, "shook": {"_count": 1}}, "Purkiss": {"_count": 1, "of": {"_count": 1}}}, "Crockford": {"_count": 3, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "kept": {"_count": 1, "coming": {"_count": 1}}, "shook": {"_count": 1, "Harrys": {"_count": 1}}}, "Always": {"_count": 22, "wanted": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 6, "innocent": {"_count": 1}, "same": {"_count": 3}, "tone": {"_count": 2}}, "use": {"_count": 1, "the": {"_count": 1}}, "happy": {"_count": 1, "to": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "modest": {"_count": 1, "our": {"_count": 1}}, "brought": {"_count": 1, "people": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "assuming": {"_count": 1, "of": {"_count": 1}}, "echoed": {"_count": 1, "Malfoy": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "jump": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "knew": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "liked": {"_count": 1, "him": {"_count": 1}}, "good": {"_count": 1, "value": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}}, "Delighted": {"_count": 3, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "and": {"_count": 2, "young": {"_count": 1}, "resisting": {"_count": 1}}}, "Diggles": {"_count": 3, "the": {"_count": 1, "name": {"_count": 1}}, "top": {"_count": 1, "hat": {"_count": 1}}, "house": {"_count": 1, "but": {"_count": 1}}}, "excitement": {"_count": 85, "": {"_count": 29, ".": {"_count": 29}}, "of": {"_count": 5, "the": {"_count": 1}, "those": {"_count": 1}, "tonight": {"_count": 1}, "being": {"_count": 1}, "a": {"_count": 1}}, "he": {"_count": 3, "dived": {"_count": 1}, "crouched": {"_count": 1}, "opened": {"_count": 1}}, "and": {"_count": 3, "said": {"_count": 1}, "nerves": {"_count": 1}, "began": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "gripped": {"_count": 1, "him": {"_count": 1}}, "coursing": {"_count": 1, "through": {"_count": 1}}, "something": {"_count": 1, "Harry": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 1, "match": {"_count": 1}}, "flooding": {"_count": 2, "him": {"_count": 1}, "through": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "shot": {"_count": 1, "through": {"_count": 1}}, "rose": {"_count": 1, "like": {"_count": 1}}, "was": {"_count": 3, "highly": {"_count": 1}, "rising": {"_count": 1}, "caused": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "suddenly": {"_count": 1, "dawned": {"_count": 1}}, "you": {"_count": 1, "could": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "about": {"_count": 1, "Hagrid": {"_count": 1}}, "drain": {"_count": 1, "out": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "surrounding": {"_count": 1, "the": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "surged": {"_count": 1, "up": {"_count": 1}}, "that": {"_count": 2, "there": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "This": {"_count": 1, "last": {"_count": 1}}, "nor": {"_count": 1, "what": {"_count": 1}}, "earlier": {"_count": 1, "when": {"_count": 1}}, "or": {"_count": 1, "superiority": {"_count": 1}}, "blazing": {"_count": 1, "in": {"_count": 1}}, "For": {"_count": 1, "several": {"_count": 1}}, "\u2018I": {"_count": 1, "leave": {"_count": 1}}, "rekindling": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "sure": {"_count": 1, "they": {"_count": 1}}, "He": {"_count": 1, "and": {"_count": 1}}, "more": {"_count": 1, "like": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "Dracos": {"_count": 1, "expression": {"_count": 1}}}, "remembers": {"_count": 7, "": {"_count": 2, "!": {"_count": 2}}, "me": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "YouKnowWho": {"_count": 1}}, "how": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Ariana": {"_count": 1, "ever": {"_count": 1}}}, "twitching": {"_count": 24, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 4, "quivering": {"_count": 1}, "was": {"_count": 1}, "bleeding": {"_count": 1}, "screaming": {"_count": 1}}, "as": {"_count": 3, "it": {"_count": 1}, "though": {"_count": 2}}, "at": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "And": {"_count": 1, "Professor": {"_count": 1}}, "with": {"_count": 1, "terror": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "Dudleys": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "heap": {"_count": 1, "that": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "thread": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}}, "Quirrell": {"_count": 100, "": {"_count": 9, "!": {"_count": 2}, "?": {"_count": 4}, ".": {"_count": 3}}, "will": {"_count": 1, "be": {"_count": 1}}, "grasping": {"_count": 1, "Harrys": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "keep": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "was": {"_count": 6, "tremblin": {"_count": 1}, "protected": {"_count": 1}, "there": {"_count": 1}, "mumbling": {"_count": 1}, "walking": {"_count": 1}, "a": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}, "too": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "already": {"_count": 1, "do": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "did": {"_count": 1}}, "had": {"_count": 3, "fought": {"_count": 1}, "even": {"_count": 1}, "gone": {"_count": 1}}, "went": {"_count": 1, "pink": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "came": {"_count": 3, "sprinting": {"_count": 1}, "hurrying": {"_count": 1}, "back": {"_count": 1}}, "bringing": {"_count": 1, "up": {"_count": 1}}, "took": {"_count": 1, "one": {"_count": 1}}, "headfirst": {"_count": 1, "into": {"_count": 1}}, "around": {"_count": 1, "bouncing": {"_count": 1}}, "said": {"_count": 3, "Snape": {"_count": 2}, "he": {"_count": 1}}, "standing": {"_count": 1, "quite": {"_count": 1}}, "to": {"_count": 2, "help": {"_count": 1}, "die": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "stands": {"_count": 1, "up": {"_count": 1}}, "however": {"_count": 1, "must": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "an": {"_count": 1, "Dumbledore": {"_count": 1}}, "sob": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "smiled": {"_count": 1, "": {"_count": 1}}, "laughed": {"_count": 1, "and": {"_count": 1}}, "coolly": {"_count": 1, "": {"_count": 1}}, "snapped": {"_count": 1, "his": {"_count": 1}}, "murmured": {"_count": 1, "tapping": {"_count": 1}}, "talking": {"_count": 1, "and": {"_count": 1}}, "idly": {"_count": 1, "walking": {"_count": 1}}, "from": {"_count": 1, "giving": {"_count": 1}}, "casually": {"_count": 1, "heavens": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "shivered": {"_count": 1, "suddenly": {"_count": 1}}, "there": {"_count": 1, "that": {"_count": 1}}, "cursed": {"_count": 2, "under": {"_count": 1}, "again": {"_count": 1}}, "does": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "realizing": {"_count": 1, "what": {"_count": 1}}, "noticing": {"_count": 1, "but": {"_count": 1}}, "ignored": {"_count": 1, "him": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "repeated": {"_count": 1, "": {"_count": 1}}, "moved": {"_count": 1, "close": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "wasnt": {"_count": 1, "moving": {"_count": 1}}, "shouted": {"_count": 1, "": {"_count": 1}}, "reached": {"_count": 1, "up": {"_count": 1}}, "drinking": {"_count": 1, "it": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "lunged": {"_count": 1, "knocking": {"_count": 1}}, "howling": {"_count": 1, "in": {"_count": 1}}, "though": {"_count": 1, "pinning": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "rolled": {"_count": 1, "off": {"_count": 1}}, "couldnt": {"_count": 1, "touch": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "screamed": {"_count": 1, "and": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "off": {"_count": 1, "you": {"_count": 1}}, "touch": {"_count": 1, "me": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "mirror": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "actually": {"_count": 1, "died": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}}, "PPPotter": {"_count": 2, "stammered": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "grasping": {"_count": 11, "Harrys": {"_count": 2, "hand": {"_count": 1}, "shoulder": {"_count": 1}}, "his": {"_count": 4, "shoulder": {"_count": 1}, "wand": {"_count": 1}, "walking": {"_count": 1}, "crossbow": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 1, "prophecy": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "hands": {"_count": 1, "with": {"_count": 1}}}, "ccant": {"_count": 5, "ttell": {"_count": 1, "you": {"_count": 1}}, "Dad": {"_count": 1, "told": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "sack": {"_count": 1, "me": {"_count": 1}}}, "ttell": {"_count": 2, "you": {"_count": 1, "how": {"_count": 1}}, "Dad": {"_count": 1, "": {"_count": 1}}}, "ppleased": {"_count": 1, "I": {"_count": 1, "am": {"_count": 1}}}, "am": {"_count": 437, "to": {"_count": 5, "meet": {"_count": 1}, "see": {"_count": 1}, "split": {"_count": 1}, "be": {"_count": 1}, "you": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 16}, "!": {"_count": 7}, "?": {"_count": 3}}, "I": {"_count": 45, "going": {"_count": 8}, "studying": {"_count": 1}, "supposed": {"_count": 4}, "came": {"_count": 1}, "admitted": {"_count": 1}, "if": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 4}, "showing": {"_count": 1}, "": {"_count": 12}, "Snape": {"_count": 1}, "correct": {"_count": 1}, "right": {"_count": 1}, "getting": {"_count": 1}, "such": {"_count": 1}, "am": {"_count": 2}, "allowed": {"_count": 1}, "talking": {"_count": 1}, "said": {"_count": 1}, "being": {"_count": 1}}, "Im": {"_count": 1, "wearing": {"_count": 1}}, "weak": {"_count": 2, "You": {"_count": 1}, "": {"_count": 1}}, "resting": {"_count": 1, "look": {"_count": 1}}, "in": {"_count": 2, "something": {"_count": 1}, "rather": {"_count": 1}}, "here": {"_count": 10, "": {"_count": 1}, "to": {"_count": 3}, "on": {"_count": 1}, "following": {"_count": 1}, "because": {"_count": 1}, "as": {"_count": 2}, "for": {"_count": 1}}, "the": {"_count": 5, "center": {"_count": 1}, "Potions": {"_count": 1}, "Dark": {"_count": 1}, "Chosen": {"_count": 1}, "true": {"_count": 1}}, "dead": {"_count": 1, "Myrtle": {"_count": 1}}, "a": {"_count": 15, "prefect": {"_count": 2}, "werewolf": {"_count": 3}, "faithful": {"_count": 1}, "substitute": {"_count": 1}, "fully": {"_count": 1}, "sufficiently": {"_count": 1}, "teacher": {"_count": 2}, "wizard": {"_count": 1}, "little": {"_count": 2}, "hundred": {"_count": 1}}, "minding": {"_count": 1, "my": {"_count": 1}}, "now": {"_count": 4, "Harry": {"_count": 1}, "Let": {"_count": 1}, "going": {"_count": 1}, "the": {"_count": 1}}, "hopeful": {"_count": 2, "that": {"_count": 2}}, "lord": {"_count": 1, "voldemort": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "pleased": {"_count": 3, "to": {"_count": 2}, "and": {"_count": 1}}, "sorry": {"_count": 7, "to": {"_count": 2}, "that": {"_count": 1}, "I": {"_count": 1}, "not": {"_count": 1}, "very": {"_count": 1}, "too": {"_count": 1}}, "delighted": {"_count": 4, "to": {"_count": 3}, "that": {"_count": 1}}, "sure": {"_count": 46, "he": {"_count": 1}, "of": {"_count": 2}, "you": {"_count": 11}, "I": {"_count": 3}, "we": {"_count": 2}, "Gryffindor": {"_count": 1}, "that": {"_count": 6}, "she": {"_count": 2}, "to": {"_count": 1}, "does": {"_count": 1}, "the": {"_count": 2}, "what": {"_count": 1}, "it": {"_count": 1}, "is": {"_count": 1}, "been": {"_count": 1}, "": {"_count": 3}, "as": {"_count": 1}, "have": {"_count": 1}, "zat": {"_count": 1}, "Dumbledore": {"_count": 2}, "Doges": {"_count": 1}, "were": {"_count": 1}}, "very": {"_count": 6, "lucky": {"_count": 1}, "much": {"_count": 2}, "sorry": {"_count": 2}, "touched": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "headmaster": {"_count": 1, "": {"_count": 1}}, "teaching": {"_count": 1, "this": {"_count": 1}}, "telling": {"_count": 1, "you": {"_count": 1}}, "up": {"_count": 5, "to": {"_count": 5}}, "not": {"_count": 38, "possessed": {"_count": 1}, "to": {"_count": 1}, "asking": {"_count": 1}, "a": {"_count": 3}, "sure": {"_count": 3}, "joking": {"_count": 1}, "unreasonable": {"_count": 1}, "forgotten": {"_count": 1}, "weak": {"_count": 1}, "going": {"_count": 1}, "leaving": {"_count": 1}, "the": {"_count": 2}, "aware": {"_count": 1}, "your": {"_count": 1}, "proud": {"_count": 2}, "stupid": {"_count": 1}, "from": {"_count": 1}, "giving": {"_count": 1}, "complaining": {"_count": 1}, "one": {"_count": 1}, "much": {"_count": 1}, "worried": {"_count": 1}, "being": {"_count": 1}, "convinced": {"_count": 1}, "saying": {"_count": 1}, "Dumbledore": {"_count": 1}, "mistaken": {"_count": 1}, "related": {"_count": 1}, "trying": {"_count": 1}, "its": {"_count": 1}, "such": {"_count": 1}, "so": {"_count": 1}}, "going": {"_count": 12, "to": {"_count": 12}}, "however": {"_count": 1, "astounded": {"_count": 1}}, "anxious": {"_count": 1, "to": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "no": {"_count": 2, "longer": {"_count": 1}, "stronger": {"_count": 1}}, "planning": {"_count": 1, "to": {"_count": 1}}, "enclosing": {"_count": 1, "something": {"_count": 1}}, "determined": {"_count": 1, "Wormtail": {"_count": 1}}, "calling": {"_count": 1, "you": {"_count": 1}}, "much": {"_count": 2, "much": {"_count": 1}, "older": {"_count": 1}}, "said": {"_count": 16, "Harry": {"_count": 11}, "Snape": {"_count": 2}, "MadEye": {"_count": 1}, "Ginny": {"_count": 1}, "Dumbledore": {"_count": 1}}, "glad": {"_count": 8, "Im": {"_count": 1}, "youre": {"_count": 1}, "to": {"_count": 4}, "that": {"_count": 1}, "you": {"_count": 1}}, "fully": {"_count": 1, "aware": {"_count": 1}}, "right": {"_count": 4, "in": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "likely": {"_count": 1, "to": {"_count": 1}}, "itll": {"_count": 1, "get": {"_count": 1}}, "thinking": {"_count": 1, "he": {"_count": 1}}, "becoming": {"_count": 1, "seriously": {"_count": 1}}, "remaining": {"_count": 1, "at": {"_count": 1}}, "your": {"_count": 3, "temporary": {"_count": 1}, "most": {"_count": 1}, "friend": {"_count": 1}}, "merely": {"_count": 4, "doing": {"_count": 1}, "pointing": {"_count": 1}, "trying": {"_count": 1}, "guiding": {"_count": 1}}, "what": {"_count": 1, "I": {"_count": 1}}, "an": {"_count": 1, "Im": {"_count": 1}}, "constantly": {"_count": 1, "telling": {"_count": 1}}, "so": {"_count": 3, "pleased": {"_count": 1}, "sorry": {"_count": 1}, "glad": {"_count": 1}}, "eager": {"_count": 1, "to": {"_count": 1}}, "filled": {"_count": 1, "with": {"_count": 1}}, "growing": {"_count": 1, "quite": {"_count": 1}}, "told": {"_count": 2, "that": {"_count": 2}}, "guessing": {"_count": 2, "other": {"_count": 1}, "again": {"_count": 1}}, "afraid": {"_count": 17, "I": {"_count": 5}, "": {"_count": 1}, "that": {"_count": 3}, "he": {"_count": 1}, "you": {"_count": 1}, "to": {"_count": 1}, "has": {"_count": 1}, "said": {"_count": 1}, "there": {"_count": 1}, "she": {"_count": 2}}, "interfering": {"_count": 1, "at": {"_count": 1}}, "talking": {"_count": 3, "of": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 1}}, "mistaken": {"_count": 2, "that": {"_count": 2}}, "oping": {"_count": 1, "to": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "aware": {"_count": 5, "however": {"_count": 1}, "of": {"_count": 2}, "they": {"_count": 1}, "said": {"_count": 1}}, "expecting": {"_count": 1, "him": {"_count": 1}}, "still": {"_count": 2, "allowed": {"_count": 1}, "your": {"_count": 1}}, "quite": {"_count": 1, "used": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "sending": {"_count": 2, "this": {"_count": 1}, "you": {"_count": 1}}, "they": {"_count": 2, "havent": {"_count": 1}, "turned": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "saying": {"_count": 2, "this": {"_count": 1}, "said": {"_count": 1}}, "giving": {"_count": 3, "each": {"_count": 1}, "up": {"_count": 1}, "you": {"_count": 1}}, "too": {"_count": 3, "tired": {"_count": 1}, "Hermione": {"_count": 1}, "old": {"_count": 1}}, "setting": {"_count": 1, "out": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "about": {"_count": 2, "to": {"_count": 2}}, "making": {"_count": 1, "an": {"_count": 1}}, "working": {"_count": 1, "": {"_count": 1}}, "forced": {"_count": 3, "to": {"_count": 3}}, "happy": {"_count": 1, "to": {"_count": 1}}, "banished": {"_count": 1, "it": {"_count": 1}}, "confused": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "left": {"_count": 1, "with": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "Senior": {"_count": 1, "Undersecretary": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "speaking": {"_count": 3, "of": {"_count": 2}, "the": {"_count": 1}}, "being": {"_count": 1, "lied": {"_count": 1}}, "neither": {"_count": 1, "here": {"_count": 1}}, "perfectly": {"_count": 2, "happy": {"_count": 1}, "capable": {"_count": 1}}, "thats": {"_count": 1, "to": {"_count": 1}}, "asking": {"_count": 1, "you": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "yours": {"_count": 2, "most": {"_count": 1}, "to": {"_count": 1}}, "indeed": {"_count": 1, "Professor": {"_count": 1}}, "Horace": {"_count": 1, "said": {"_count": 1}}, "undoubtedly": {"_count": 1, "slower": {"_count": 1}}, "correct": {"_count": 1, "in": {"_count": 1}}, "reunited": {"_count": 1, "with": {"_count": 1}}, "theenking": {"_count": 1, "of": {"_count": 1}}, "considered": {"_count": 1, "something": {"_count": 1}}, "surprised": {"_count": 3, "so": {"_count": 1}, "you": {"_count": 1}, "to": {"_count": 1}}, "inclined": {"_count": 1, "to": {"_count": 1}}, "already": {"_count": 1, "aware": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "simply": {"_count": 1, "delighted": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 2, "extraordinary": {"_count": 1}, "you": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "girlfriend": {"_count": 1}}, "ordered": {"_count": 1, "here": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "known": {"_count": 1, "as": {"_count": 1}}, "ashamed": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "convinced": {"_count": 2, "he": {"_count": 1}, "of": {"_count": 1}}, "confident": {"_count": 1, "however": {"_count": 1}}, "off": {"_count": 1, "into": {"_count": 1}}, "distracted": {"_count": 1, "or": {"_count": 1}}, "more": {"_count": 1, "defenseless": {"_count": 1}}, "goodlooking": {"_count": 1, "enough": {"_count": 1}}, "probably": {"_count": 1, "one": {"_count": 1}}, "or": {"_count": 1, "because": {"_count": 1}}, "Kingsley": {"_count": 1, "after": {"_count": 1}}, "gatecrashing": {"_count": 1, "a": {"_count": 1}}, "Remus": {"_count": 1, "John": {"_count": 1}}, "and": {"_count": 1, "what": {"_count": 1}}, "on": {"_count": 2, "my": {"_count": 1}, "the": {"_count": 1}}, "related": {"_count": 1, "to": {"_count": 1}}, "coming": {"_count": 1, "in": {"_count": 1}}, "extraordinary": {"_count": 1, "but": {"_count": 1}}, "fortunate": {"_count": 1, "extremely": {"_count": 1}}, "concerned": {"_count": 1, "less": {"_count": 1}}, "counting": {"_count": 1, "upon": {"_count": 1}}}, "meet": {"_count": 143, "you": {"_count": 22, "": {"_count": 1}, "in": {"_count": 4}, "Filch": {"_count": 1}, "tonight": {"_count": 1}, "there": {"_count": 1}, "sir": {"_count": 1}, "said": {"_count": 1}, "Rons": {"_count": 1}, "but": {"_count": 1}, "back": {"_count": 3}, "if": {"_count": 1}, "at": {"_count": 3}, "for": {"_count": 1}, "down": {"_count": 1}, "and": {"_count": 1}}, "yeh": {"_count": 2, "mind": {"_count": 1}, "": {"_count": 1}}, "Hagrid": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 6, "eyes": {"_count": 2}, "bag": {"_count": 1}, "end": {"_count": 1}, "death": {"_count": 1}, "own": {"_count": 1}}, "Harrys": {"_count": 3, "eyes": {"_count": 3}}, "a": {"_count": 2, "boy": {"_count": 1}, "third": {"_count": 1}}, "anyone": {"_count": 2, "": {"_count": 1}, "else": {"_count": 1}}, "here": {"_count": 1, "of": {"_count": 1}}, "even": {"_count": 1, "around": {"_count": 1}}, "the": {"_count": 11, "same": {"_count": 2}, "Bulgarians": {"_count": 1}, "boy": {"_count": 2}, "rocky": {"_count": 1}, "rest": {"_count": 2}, "Slytherins": {"_count": 1}, "Delacours": {"_count": 1}, "red": {"_count": 1}}, "in": {"_count": 3, "Diagon": {"_count": 1}, "the": {"_count": 2}}, "when": {"_count": 1, "he": {"_count": 1}}, "them": {"_count": 11, "her": {"_count": 1}, "": {"_count": 5}, "as": {"_count": 1}, "pulled": {"_count": 1}, "purring": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "at": {"_count": 1, "Flourish": {"_count": 1}}, "him": {"_count": 9, "": {"_count": 4}, "at": {"_count": 1}, "instead": {"_count": 1}, "all": {"_count": 1}, "that": {"_count": 1}, "Hermione": {"_count": 1}}, "again": {"_count": 7, "Harry": {"_count": 1}, "said": {"_count": 1}, "sometime": {"_count": 1}, "soon": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}}, "Ginny": {"_count": 1, "or": {"_count": 1}}, "Ron": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "me": {"_count": 8, "": {"_count": 1}, "tonight": {"_count": 1}, "in": {"_count": 2}, "halfway": {"_count": 1}, "and": {"_count": 1}, "so": {"_count": 1}, "here": {"_count": 1}}, "nobody": {"_count": 1, "on": {"_count": 1}}, "To": {"_count": 1, "Harrys": {"_count": 1}}, "her": {"_count": 3, "": {"_count": 2}, "eyes": {"_count": 1}}, "up": {"_count": 1, "with": {"_count": 1}}, "anything": {"_count": 1, "too": {"_count": 1}}, "there": {"_count": 1, "but": {"_count": 1}}, "it": {"_count": 2, "when": {"_count": 2}}, "an": {"_count": 1, "early": {"_count": 1}}, "Dark": {"_count": 1, "attacks": {"_count": 1}}, "some": {"_count": 2, "fascinating": {"_count": 1}, "veela": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "us": {"_count": 3, "in": {"_count": 3}}, "and": {"_count": 2, "where": {"_count": 1}, "get": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "that": {"_count": 2, "evening": {"_count": 1}, "need": {"_count": 1}}, "your": {"_count": 2, "mother": {"_count": 1}, "match": {"_count": 1}}, "Cho": {"_count": 1, "feeling": {"_count": 1}}, "other": {"_count": 1, "girls": {"_count": 1}}, "Hermione": {"_count": 3, "but": {"_count": 1}, "s": {"_count": 1}, "and": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "Sibyll": {"_count": 1, "Trelawney": {"_count": 1}}, "Dean": {"_count": 2, "said": {"_count": 2}}, "Eldred": {"_count": 1, "Worple": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "Slughorn": {"_count": 1, "s": {"_count": 1}}, "another": {"_count": 1, "soul": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "resistance": {"_count": 1, "we": {"_count": 1}}, "barriers": {"_count": 1, "but": {"_count": 1}}}, "teach": {"_count": 85, "Professor": {"_count": 1, "Quirrell": {"_count": 1}}, "us": {"_count": 8, "things": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 2}, "something": {"_count": 1}, "here": {"_count": 1}, "at": {"_count": 1}}, "leaving": {"_count": 1, "his": {"_count": 1}}, "you": {"_count": 23, "how": {"_count": 5}, "the": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}, "is": {"_count": 1}, "countercurses": {"_count": 1}, "to": {"_count": 1}, "before": {"_count": 1}, "using": {"_count": 1}, "Occlumency": {"_count": 3}, "not": {"_count": 2}, "in": {"_count": 1}, "myself": {"_count": 1}, "Harry": {"_count": 1}, "my": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 5}, "!": {"_count": 2}, "?": {"_count": 1}}, "one": {"_count": 1, "day": {"_count": 1}}, "today": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 1, "class": {"_count": 1}}, "me": {"_count": 3, "": {"_count": 1}, "tricks": {"_count": 1}, "Occlumency": {"_count": 1}}, "with": {"_count": 1, "those": {"_count": 1}}, "my": {"_count": 1, "servants": {"_count": 1}}, "them": {"_count": 6, "much": {"_count": 1}, "a": {"_count": 1}, "but": {"_count": 1}, "what": {"_count": 1}, "at": {"_count": 1}, "lessons": {"_count": 1}}, "they": {"_count": 1, "supposed": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 1}, "": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 4, "Hogwarts": {"_count": 3}, "this": {"_count": 1}}, "your": {"_count": 2, "students": {"_count": 1}, "favorite": {"_count": 1}}, "just": {"_count": 1, "those": {"_count": 1}}, "those": {"_count": 1, "whose": {"_count": 1}}, "all": {"_count": 1, "those": {"_count": 1}}, "the": {"_count": 1, "lot": {"_count": 1}}, "anyone": {"_count": 1, "who": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 2}, "advanced": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}}, "Grawp": {"_count": 1, "English": {"_count": 1}}, "said": {"_count": 2, "Ginny": {"_count": 1}, "Neville": {"_count": 1}}, "Potter": {"_count": 1, "anything": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "em": {"_count": 1, "Ill": {"_count": 1}}, "Dumbledores": {"_count": 1, "Army": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}}, "DDefense": {"_count": 1, "Against": {"_count": 1, "the": {"_count": 1}}}, "Against": {"_count": 135, "the": {"_count": 132, "DDDark": {"_count": 1}, "Dark": {"_count": 130}, "snowy": {"_count": 1}}, "Shocks": {"_count": 1, "and": {"_count": 1}}, "Hogwarts": {"_count": 1, "": {"_count": 1}}, "Werewolves": {"_count": 1, "Dementors": {"_count": 1}}}, "DDDark": {"_count": 1, "Arts": {"_count": 1, "muttered": {"_count": 1}}}, "Arts": {"_count": 176, "muttered": {"_count": 1, "Professor": {"_count": 1}}, "and": {"_count": 10, "Great": {"_count": 1}, "set": {"_count": 1}, "those": {"_count": 1}, "providing": {"_count": 1}, "there": {"_count": 2}, "I": {"_count": 1}, "James": {"_count": 1}, "was": {"_count": 1}, "nobody": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 3, "Quirrells": {"_count": 1}, "in": {"_count": 1}, "now": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 21}, "!": {"_count": 4}, "?": {"_count": 1}}, "while": {"_count": 1, "copying": {"_count": 1}}, "spell": {"_count": 1, "that": {"_count": 1}}, "teacher": {"_count": 25, "must": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 9}, "who": {"_count": 2}, "weve": {"_count": 2}, "Dumbledore": {"_count": 1}, "they": {"_count": 1}, "said": {"_count": 1}, "Professor": {"_count": 1}, "Thas": {"_count": 1}, "pushed": {"_count": 1}, "dont": {"_count": 1}, "for": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}}, "job": {"_count": 10, "again": {"_count": 2}, "": {"_count": 3}, "but": {"_count": 1}, "and": {"_count": 1}, "you": {"_count": 1}, "after": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 6, "Hermione": {"_count": 3}, "Fred": {"_count": 1}, "Ron": {"_count": 1}, "Snape": {"_count": 1}}, "lesson": {"_count": 9, "this": {"_count": 1}, "": {"_count": 3}, "weve": {"_count": 1}, "that": {"_count": 2}, "to": {"_count": 1}, "ten": {"_count": 1}}, "stuff": {"_count": 1, "": {"_count": 1}}, "consorted": {"_count": 1, "with": {"_count": 1}}, "classes": {"_count": 2, "were": {"_count": 1}, "and": {"_count": 1}}, "teachers": {"_count": 4, "both": {"_count": 1}, "even": {"_count": 1}, "and": {"_count": 1}, "have": {"_count": 1}}, "this": {"_count": 2, "afternoon": {"_count": 1}, "morning": {"_count": 1}}, "before": {"_count": 1, "unless": {"_count": 1}}, "had": {"_count": 2, "become": {"_count": 1}, "been": {"_count": 1}}, "he": {"_count": 2, "blurted": {"_count": 1}, "was": {"_count": 1}}, "classroom": {"_count": 4, "pulled": {"_count": 1}, "and": {"_count": 1}, "they": {"_count": 1}, "four": {"_count": 1}}, "again": {"_count": 1, "Im": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "class": {"_count": 2, "was": {"_count": 1}, "an": {"_count": 1}}, "to": {"_count": 2, "every": {"_count": 1}, "meet": {"_count": 1}}, "a": {"_count": 1, "decision": {"_count": 1}}, "seriously": {"_count": 1, "Moody": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "A": {"_count": 1, "Return": {"_count": 1}}, "is": {"_count": 2, "to": {"_count": 1}, "it": {"_count": 1}}, "O": {"_count": 4, "": {"_count": 4}}, "because": {"_count": 3, "Fudge": {"_count": 1}, "you": {"_count": 1}, "its": {"_count": 1}}, "ourselves": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 2, "got": {"_count": 1}, "suppose": {"_count": 1}}, "lessons": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Hear": {"_count": 1, "hear": {"_count": 1}}, "post": {"_count": 2, "I": {"_count": 1}, "since": {"_count": 1}}, "groups": {"_count": 1, "": {"_count": 1}}, "group": {"_count": 3, "": {"_count": 3}}, "without": {"_count": 1, "being": {"_count": 1}}, "Outsmarted": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "marks": {"_count": 1}}, "marks": {"_count": 1, "in": {"_count": 1}}, "tests": {"_count": 2, "Im": {"_count": 1}, "set": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "than": {"_count": 2, "he": {"_count": 1}, "Madam": {"_count": 1}}, "practical": {"_count": 1, "was": {"_count": 1}}, "looked": {"_count": 1, "completely": {"_count": 1}}, "Transfiguration": {"_count": 1, "Herbology": {"_count": 1}}, "with": {"_count": 1, "\u2018Exceeds": {"_count": 1}}, "Herbology": {"_count": 1, "Transfiguration": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "although": {"_count": 1, "as": {"_count": 1}}, "Charms": {"_count": 1, "Transfiguration": {"_count": 1}}, "its": {"_count": 1, "all": {"_count": 1}}, "It": {"_count": 1, "is": {"_count": 1}}, "pulling": {"_count": 1, "off": {"_count": 1}}, "never": {"_count": 1, "even": {"_count": 1}}, "gave": {"_count": 1, "himself": {"_count": 1}}, "himself": {"_count": 2, "in": {"_count": 2}}, "onto": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "professor": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "opposition": {"_count": 1}}, "Grindelwald": {"_count": 1, "showed": {"_count": 1}}, "except": {"_count": 1, "now": {"_count": 1}}, "watched": {"_count": 1, "as": {"_count": 1}}}, "Nnot": {"_count": 1, "that": {"_count": 1, "you": {"_count": 1}}}, "nneed": {"_count": 2, "it": {"_count": 1, "eh": {"_count": 1}}, "to": {"_count": 1, "talk": {"_count": 1}}}, "Youll": {"_count": 88, "be": {"_count": 34, "ggetting": {"_count": 1}, "in": {"_count": 3}, "starting": {"_count": 1}, "expelled": {"_count": 1}, "all": {"_count": 3}, "next": {"_count": 2}, "teased": {"_count": 1}, "able": {"_count": 4}, "back": {"_count": 1}, "a": {"_count": 1}, "lucky": {"_count": 1}, "left": {"_count": 1}, "paying": {"_count": 1}, "supporting": {"_count": 1}, "up": {"_count": 1}, "wanting": {"_count": 1}, "Arthur": {"_count": 1}, "fine": {"_count": 1}, "openin": {"_count": 1}, "singing": {"_count": 1}, "safe": {"_count": 1}, "Gryffindor": {"_count": 1}, "taking": {"_count": 1}, "eating": {"_count": 1}, "going": {"_count": 1}, "godfather": {"_count": 1}}, "learn": {"_count": 1, "fast": {"_count": 1}}, "soon": {"_count": 1, "find": {"_count": 1}}, "make": {"_count": 1, "your": {"_count": 1}}, "understand": {"_count": 1, "later": {"_count": 1}}, "pay": {"_count": 1, "for": {"_count": 1}}, "have": {"_count": 8, "to": {"_count": 6}, "Mrs": {"_count": 1}, "no": {"_count": 1}}, "find": {"_count": 3, "that": {"_count": 1}, "out": {"_count": 2}}, "need": {"_count": 6, "bigger": {"_count": 1}, "to": {"_count": 4}, "all": {"_count": 1}}, "meet": {"_count": 1, "the": {"_count": 1}}, "get": {"_count": 1, "the": {"_count": 1}}, "start": {"_count": 1, "seeing": {"_count": 1}}, "forgive": {"_count": 2, "me": {"_count": 2}}, "just": {"_count": 2, "exist": {"_count": 1}, "have": {"_count": 1}}, "regret": {"_count": 1, "it": {"_count": 1}}, "see": {"_count": 10, "said": {"_count": 2}, "youll": {"_count": 1}, "me": {"_count": 1}, "little": {"_count": 1}, "": {"_count": 5}}, "try": {"_count": 1, "and": {"_count": 1}}, "come": {"_count": 1, "and": {"_count": 1}}, "put": {"_count": 3, "them": {"_count": 1}, "Dr": {"_count": 1}, "out": {"_count": 1}}, "leave": {"_count": 1, "details": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "tolerate": {"_count": 1, "him": {"_count": 1}}, "notice": {"_count": 1, "Barnabas": {"_count": 1}}, "go": {"_count": 1, "wrong": {"_count": 1}}, "do": {"_count": 2, "fine": {"_count": 1}, "no": {"_count": 1}}, "stay": {"_count": 1, "with": {"_count": 1}}, "write": {"_count": 1, "to": {"_count": 1}}}, "ggetting": {"_count": 1, "all": {"_count": 1, "your": {"_count": 1}}}, "ggot": {"_count": 1, "to": {"_count": 1, "ppick": {"_count": 1}}}, "ppick": {"_count": 1, "up": {"_count": 1, "a": {"_count": 1}}}, "b": {"_count": 5, "book": {"_count": 1, "on": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "breakfast": {"_count": 1, "but": {"_count": 1}}, "describe": {"_count": 1, "the": {"_count": 1}}, "been": {"_count": 1, "the": {"_count": 1}}}, "vampires": {"_count": 5, "mmyself": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}}, "mmyself": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "others": {"_count": 302, "wouldnt": {"_count": 1, "let": {"_count": 1}}, "but": {"_count": 2, "if": {"_count": 1}, "quietly": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "took": {"_count": 1}}, "laughed": {"_count": 3, "": {"_count": 1}, "raucously": {"_count": 1}, "again": {"_count": 1}}, "becoming": {"_count": 1, "wizards": {"_count": 1}}, "and": {"_count": 14, "petrified": {"_count": 1}, "thanked": {"_count": 1}, "they": {"_count": 1}, "spoke": {"_count": 1}, "followed": {"_count": 1}, "related": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}, "GO": {"_count": 1}, "accompanied": {"_count": 1}, "failed": {"_count": 1}, "bound": {"_count": 1}, "stared": {"_count": 1}, "then": {"_count": 1}}, "": {"_count": 64, ".": {"_count": 54}, "?": {"_count": 9}, "!": {"_count": 1}}, "existed": {"_count": 1, "only": {"_count": 1}}, "are": {"_count": 5, "in": {"_count": 1}, "okay": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}, "safe": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "pots": {"_count": 1, "well": {"_count": 1}}, "looked": {"_count": 2, "worried": {"_count": 1}, "shocked": {"_count": 1}}, "so": {"_count": 2, "they": {"_count": 1}, "that": {"_count": 1}}, "downright": {"_count": 1, "scared": {"_count": 1}}, "crowded": {"_count": 1, "around": {"_count": 1}}, "had": {"_count": 7, "crammed": {"_count": 1}, "noticed": {"_count": 1}, "been": {"_count": 1}, "got": {"_count": 1}, "died": {"_count": 1}, "carved": {"_count": 1}, "left": {"_count": 1}}, "didnt": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "there": {"_count": 1}}, "dont": {"_count": 1, "have": {"_count": 1}}, "nervous": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "spotted": {"_count": 1}, "had": {"_count": 1}}, "hand": {"_count": 1, "very": {"_count": 1}}, "fingers": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 7, "slip": {"_count": 1}, "good": {"_count": 1}, "Weasleys": {"_count": 1}, "ones": {"_count": 1}, "opportunity": {"_count": 1}, "light": {"_count": 1}, "wizard": {"_count": 1}}, "safety": {"_count": 2, "": {"_count": 2}}, "along": {"_count": 1, "with": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "were": {"_count": 13, "striking": {"_count": 1}, "laughing": {"_count": 1}, "frowning": {"_count": 1}, "kept": {"_count": 1}, "doing": {"_count": 2}, "tapping": {"_count": 1}, "all": {"_count": 1}, "as": {"_count": 2}, "distracted": {"_count": 1}, "shoved": {"_count": 1}, "the": {"_count": 1}}, "got": {"_count": 2, "to": {"_count": 1}, "out": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "conversation": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 13, "do": {"_count": 1}, "attempt": {"_count": 1}, "look": {"_count": 2}, "the": {"_count": 1}, "meet": {"_count": 1}, "steal": {"_count": 1}, "hurtle": {"_count": 1}, "be": {"_count": 1}, "come": {"_count": 1}, "wake": {"_count": 1}, "carry": {"_count": 1}, "sacrifice": {"_count": 1}}, "beards": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 5, "then": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "green": {"_count": 1}}, "which": {"_count": 3, "was": {"_count": 2}, "would": {"_count": 1}}, "gaze": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 5, "he": {"_count": 1}, "all": {"_count": 1}, "they": {"_count": 1}, "well": {"_count": 2}}, "abandoned": {"_count": 1, "their": {"_count": 1}}, "swarmed": {"_count": 1, "around": {"_count": 1}}, "wrapped": {"_count": 1, "him": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "covered": {"_count": 1, "Winky": {"_count": 1}}, "with": {"_count": 2, "pronounced": {"_count": 1}, "drooping": {"_count": 1}}, "staring": {"_count": 1, "": {"_count": 1}}, "shouted": {"_count": 1, "it": {"_count": 1}}, "appearance": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "tried": {"_count": 1, "hitting": {"_count": 1}}, "keep": {"_count": 1, "flying": {"_count": 1}}, "robes": {"_count": 1, "the": {"_count": 1}}, "filing": {"_count": 1, "in": {"_count": 1}}, "hushed": {"_count": 1, "voices": {"_count": 1}}, "all": {"_count": 3, "nodded": {"_count": 1}, "watched": {"_count": 1}, "of": {"_count": 1}}, "flinched": {"_count": 1, "at": {"_count": 1}}, "just": {"_count": 1, "behind": {"_count": 1}}, "took": {"_count": 1, "out": {"_count": 1}}, "like": {"_count": 2, "him": {"_count": 1}, "Parvati": {"_count": 1}}, "making": {"_count": 1, "their": {"_count": 1}}, "followed": {"_count": 2, "": {"_count": 1}, "Professor": {"_count": 1}}, "moved": {"_count": 2, "over": {"_count": 1}, "in": {"_count": 1}}, "battered": {"_count": 1, "briefcases": {"_count": 1}}, "reading": {"_count": 1, "the": {"_count": 1}}, "looks": {"_count": 1, "of": {"_count": 1}}, "slightly": {"_count": 1, "frightened": {"_count": 1}}, "including": {"_count": 1, "the": {"_count": 1}}, "lifting": {"_count": 1, "their": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}, "who": {"_count": 5, "were": {"_count": 3}, "whisper": {"_count": 1}, "had": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "will": {"_count": 1, "come": {"_count": 1}}, "outmoded": {"_count": 1, "and": {"_count": 1}}, "answered": {"_count": 1, "all": {"_count": 1}}, "most": {"_count": 1, "recent": {"_count": 1}}, "merely": {"_count": 1, "hung": {"_count": 1}}, "latest": {"_count": 1, "nighttime": {"_count": 1}}, "curious": {"_count": 1, "Luna": {"_count": 1}}, "think": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "returned": {"_count": 1}}, "ter": {"_count": 1, "feed": {"_count": 1}}, "specially": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "what": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "being": {"_count": 1}}, "gathered": {"_count": 1, "around": {"_count": 1}}, "sporting": {"_count": 1, "gruesome": {"_count": 1}}, "have": {"_count": 1, "told": {"_count": 1}}, "his": {"_count": 1, "expression": {"_count": 1}}, "faces": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "follow": {"_count": 1, "in": {"_count": 1}}, "eye": {"_count": 1, "and": {"_count": 1}}, "even": {"_count": 1, "frightened": {"_count": 1}}, "heights": {"_count": 1, "": {"_count": 1}}, "entertained": {"_count": 1, "": {"_count": 1}}, "And": {"_count": 1, "sure": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "dressing": {"_count": 1}}, "under": {"_count": 1, "control": {"_count": 1}}, "was": {"_count": 3, "raised": {"_count": 1}, "glad": {"_count": 1}, "paramount": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "following": {"_count": 1, "close": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "accusing": {"_count": 1, "stares": {"_count": 1}}, "close": {"_count": 1, "in": {"_count": 1}}, "quickened": {"_count": 1, "breath": {"_count": 1}}, "if": {"_count": 1, "necessary": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "go": {"_count": 1, "and": {"_count": 1}}, "simply": {"_count": 1, "looked": {"_count": 1}}, "went": {"_count": 1, "to": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "by": {"_count": 2, "use": {"_count": 1}, "asking": {"_count": 1}}, "bore": {"_count": 1, "moving": {"_count": 1}}, "nevertheless": {"_count": 1, "": {"_count": 1}}, "locked": {"_count": 1, "his": {"_count": 1}}, "sake": {"_count": 1, "as": {"_count": 1}}, "kicked": {"_count": 1, "off": {"_count": 1}}, "thinking": {"_count": 1, "theyve": {"_count": 1}}, "might": {"_count": 1, "say": {"_count": 1}}, "you": {"_count": 1, "remain": {"_count": 1}}, "chests": {"_count": 1, "then": {"_count": 1}}, "fidgeted": {"_count": 1, "all": {"_count": 1}}, "Kingsley": {"_count": 1, "walked": {"_count": 1}}, "tottering": {"_count": 1, "piles": {"_count": 1}}, "everyone": {"_count": 1, "at": {"_count": 1}}, "shoulders": {"_count": 1, "": {"_count": 1}}, "sat": {"_count": 1, "alone": {"_count": 1}}, "scared": {"_count": 1, "and": {"_count": 1}}, "thought": {"_count": 1, "this": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "from": {"_count": 2, "Death": {"_count": 1}, "it": {"_count": 1}}, "talked": {"_count": 1, "discussing": {"_count": 1}}, "coming": {"_count": 1, "through": {"_count": 1}}, "a": {"_count": 1, "wry": {"_count": 1}}, "advanced": {"_count": 1, "and": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "solemnly": {"_count": 1, "": {"_count": 1}}, "larger": {"_count": 1, "than": {"_count": 1}}, "canvases": {"_count": 1, "screaming": {"_count": 1}}, "footsteps": {"_count": 1, "echoing": {"_count": 1}}, "glancing": {"_count": 1, "over": {"_count": 1}}, "needed": {"_count": 1, "no": {"_count": 1}}, "struck": {"_count": 1, "down": {"_count": 1}}, "necks": {"_count": 1, "": {"_count": 1}}, "showed": {"_count": 1, "their": {"_count": 1}}, "hands": {"_count": 1, "they": {"_count": 1}}}, "babble": {"_count": 11, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "died": {"_count": 1, "away": {"_count": 1}}, "of": {"_count": 6, "talk": {"_count": 3}, "the": {"_count": 1}, "voices": {"_count": 1}, "them": {"_count": 1}}, "broke": {"_count": 1, "out": {"_count": 1}}, "his": {"_count": 1, "round": {"_count": 1}}}, "Must": {"_count": 13, "get": {"_count": 1, "on": {"_count": 1}}, "pay": {"_count": 1, "most": {"_count": 1}}, "be": {"_count": 6, "said": {"_count": 2}, "its": {"_count": 1}, "nearly": {"_count": 1}, "nice": {"_count": 1}, "doing": {"_count": 1}}, "have": {"_count": 2, "squeezed": {"_count": 1}, "been": {"_count": 1}}, "find": {"_count": 1, "Penelope": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "meet": {"_count": 1, "an": {"_count": 1}}}, "walled": {"_count": 2, "courtyard": {"_count": 1, "where": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}}, "courtyard": {"_count": 18, "where": {"_count": 1, "there": {"_count": 1}}, "during": {"_count": 1, "break": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "was": {"_count": 1, "listening": {"_count": 1}}, "before": {"_count": 1, "rounding": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 2, "lunch": {"_count": 2}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "determinedly": {"_count": 1, "not": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "break": {"_count": 1}}, "that": {"_count": 1, "fronted": {"_count": 1}}, "and": {"_count": 1, "Ron": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "evidently": {"_count": 1, "arguing": {"_count": 1}}}, "weeds": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "starting": {"_count": 1}}, "like": {"_count": 1, "some": {"_count": 1}}, "though": {"_count": 1, "nothing": {"_count": 1}}}, "grinned": {"_count": 65, "at": {"_count": 18, "Harry": {"_count": 5}, "Harrys": {"_count": 1}, "the": {"_count": 2}, "Dumbledore": {"_count": 1}, "Hagrid": {"_count": 2}, "each": {"_count": 3}, "Ron": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "back": {"_count": 4, "": {"_count": 2}, "which": {"_count": 1}, "lazily": {"_count": 1}}, "broadly": {"_count": 3, "at": {"_count": 3}}, "and": {"_count": 4, "turned": {"_count": 1}, "winked": {"_count": 1}, "quickly": {"_count": 1}, "waved": {"_count": 1}}, "guiltily": {"_count": 1, "at": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "": {"_count": 1}}, "awkwardly": {"_count": 1, "as": {"_count": 1}}, "apologetically": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "happily": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "nervously": {"_count": 1, "at": {"_count": 1}}, "rather": {"_count": 1, "guiltily": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "up": {"_count": 1, "at": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "appreciatively": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 1, "at": {"_count": 1}}, "helping": {"_count": 1, "himself": {"_count": 1}}, "to": {"_count": 1, "himself": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "showing": {"_count": 1, "pointed": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}}, "Told": {"_count": 20, "yeh": {"_count": 3, "didnt": {"_count": 1}, "you": {"_count": 1}, "nuthin": {"_count": 1}}, "you": {"_count": 6, "I": {"_count": 3}, "said": {"_count": 2}, "already": {"_count": 1}}, "me": {"_count": 2, "ter": {"_count": 1}, "Id": {"_count": 1}}, "them": {"_count": 3, "they": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}}, "us": {"_count": 3, "all": {"_count": 1}, "we": {"_count": 1}, "ter": {"_count": 1}}, "her": {"_count": 1, "Percys": {"_count": 1}}, "Us": {"_count": 1, "page": {"_count": 1}}, "him": {"_count": 1, "ter": {"_count": 1}}}, "tremblin": {"_count": 2, "ter": {"_count": 1, "meet": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "nervous": {"_count": 93, "": {"_count": 27, "?": {"_count": 1}, ".": {"_count": 25}, "!": {"_count": 1}}, "to": {"_count": 1, "go": {"_count": 1}}, "never": {"_count": 1, "not": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "thats": {"_count": 1, "Professor": {"_count": 1}}, "about": {"_count": 1, "flying": {"_count": 1}}, "and": {"_count": 8, "jumpy": {"_count": 1}, "Harry": {"_count": 1}, "had": {"_count": 1}, "beckoned": {"_count": 1}, "eager": {"_count": 1}, "anxious": {"_count": 1}, "sad": {"_count": 1}, "angry": {"_count": 1}}, "whatever": {"_count": 1, "he": {"_count": 1}}, "breathing": {"_count": 1, "down": {"_count": 1}}, "state": {"_count": 1, "every": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "glances": {"_count": 3, "": {"_count": 1}, "at": {"_count": 1}, "up": {"_count": 1}}, "looks": {"_count": 1, "": {"_count": 1}}, "mainly": {"_count": 1, "at": {"_count": 1}}, "jerk": {"_count": 1, "of": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "twitch": {"_count": 1, "next": {"_count": 1}}, "was": {"_count": 1, "starting": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 2}, "she": {"_count": 1}}, "collapse": {"_count": 2, "and": {"_count": 1}, "having": {"_count": 1}}, "hippogriff": {"_count": 1, "tethered": {"_count": 1}}, "look": {"_count": 4, "through": {"_count": 1}, "around": {"_count": 1}, "with": {"_count": 1}, "at": {"_count": 1}}, "speaking": {"_count": 1, "up": {"_count": 1}}, "I": {"_count": 3, "suppose": {"_count": 1}, "reckon": {"_count": 1}, "was": {"_count": 1}}, "but": {"_count": 3, "excited": {"_count": 1}, "he": {"_count": 2}}, "now": {"_count": 2, "though": {"_count": 1}, "didnt": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "rolled": {"_count": 1}}, "looking": {"_count": 1, "man": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 2}, "Hermione": {"_count": 1}}, "though": {"_count": 1, "that": {"_count": 1}}, "laugh": {"_count": 2, "": {"_count": 2}}, "little": {"_count": 1, "laugh": {"_count": 1}}, "at": {"_count": 1, "confronting": {"_count": 1}}, "giggling": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "saying": {"_count": 1}}, "Harry": {"_count": 1, "followed": {"_count": 1}}, "pleasure": {"_count": 1, "Doge": {"_count": 1}}, "nod": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "excitement": {"_count": 1, "": {"_count": 1}}}, "yeah": {"_count": 155, "": {"_count": 46, ".": {"_count": 35}, "?": {"_count": 9}, "!": {"_count": 2}}, "an": {"_count": 1, "I": {"_count": 1}}, "youre": {"_count": 1, "right": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "how": {"_count": 1, "many": {"_count": 1}}, "and": {"_count": 3, "get": {"_count": 1}, "they": {"_count": 1}, "thats": {"_count": 1}}, "She": {"_count": 1, "did": {"_count": 1}}, "said": {"_count": 41, "Ron": {"_count": 12}, "Harry": {"_count": 16}, "Moody": {"_count": 1}, "Hagrid": {"_count": 4}, "Sirius": {"_count": 2}, "Fred": {"_count": 3}, "Lee": {"_count": 1}, "Charlie": {"_count": 1}, "Aberforth": {"_count": 1}}, "pureblood": {"_count": 1, "said": {"_count": 1}}, "if": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 14, "forgot": {"_count": 3}, "borrowed": {"_count": 1}, "did": {"_count": 2}, "suppose": {"_count": 1}, "Ive": {"_count": 1}, "knew": {"_count": 1}, "thought": {"_count": 1}, "had": {"_count": 1}, "do": {"_count": 1}, "got": {"_count": 1}, "know": {"_count": 1}}, "all": {"_count": 3, "right": {"_count": 3}}, "that": {"_count": 3, "can": {"_count": 1}, "sounds": {"_count": 1}, "was": {"_count": 1}}, "you": {"_count": 2, "were": {"_count": 1}, "too": {"_count": 1}}, "nervous": {"_count": 1, "I": {"_count": 1}}, "why": {"_count": 1, "not": {"_count": 1}}, "okay": {"_count": 1, "said": {"_count": 1}}, "Dobby": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "right": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 1, "mother": {"_count": 1}}, "Im": {"_count": 3, "good": {"_count": 1}, "grand": {"_count": 1}, "assuming": {"_count": 1}}, "thatll": {"_count": 1, "be": {"_count": 1}}, "hes": {"_count": 2, "returned": {"_count": 1}, "really": {"_count": 1}}, "Keeper": {"_count": 1, "tryouts": {"_count": 1}}, "\u2018sever": {"_count": 1, "ties": {"_count": 1}}, "it": {"_count": 2, "went": {"_count": 1}, "was": {"_count": 1}}, "we": {"_count": 3, "did": {"_count": 1}, "have": {"_count": 2}}, "more": {"_count": 1, "out": {"_count": 1}}, "Ill": {"_count": 1, "do": {"_count": 1}}, "now": {"_count": 1, "Umbridge": {"_count": 1}}, "his": {"_count": 1, "uncles": {"_count": 1}}, "maybe": {"_count": 1, "said": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}, "the": {"_count": 1, "bloke": {"_count": 1}}, "blimey": {"_count": 1, "Harry": {"_count": 1}}, "Then": {"_count": 1, "well": {"_count": 1}}, "He": {"_count": 2, "sensed": {"_count": 1}, "pulled": {"_count": 1}}, "Ron": {"_count": 1, "looked": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}}, "Poor": {"_count": 17, "bloke": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "dear": {"_count": 1, "no": {"_count": 1}}, "blundering": {"_count": 1, "Neville": {"_count": 1}}, "Crookshanks": {"_count": 1, "that": {"_count": 1}}, "thing": {"_count": 1, "he": {"_count": 1}}, "Neville": {"_count": 1, "was": {"_count": 1}}, "Errol": {"_count": 1, "who": {"_count": 1}}, "old": {"_count": 2, "Bertha": {"_count": 1}, "Snuffles": {"_count": 1}}, "master": {"_count": 1, "poor": {"_count": 1}}, "devils": {"_count": 1, "growled": {"_count": 1}}, "P": {"_count": 1, "Exceeds": {"_count": 1}}, "Gryffindor": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Filch": {"_count": 1}}, "Potter": {"_count": 1, "has": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}}, "bloke": {"_count": 34, "": {"_count": 6, ".": {"_count": 6}}, "from": {"_count": 4, "the": {"_count": 2}, "Slytherin": {"_count": 1}, "Magical": {"_count": 1}}, "youve": {"_count": 1, "ever": {"_count": 1}}, "walking": {"_count": 1, "round": {"_count": 1}}, "down": {"_count": 1, "there": {"_count": 1}}, "my": {"_count": 1, "dad": {"_count": 1}}, "Mundungus": {"_count": 1, "has": {"_count": 1}}, "said": {"_count": 2, "so": {"_count": 1}, "Ron": {"_count": 1}}, "who": {"_count": 3, "looks": {"_count": 1}, "thinks": {"_count": 1}, "was": {"_count": 1}}, "would": {"_count": 1, "sell": {"_count": 1}}, "is": {"_count": 1, "to": {"_count": 1}}, "Firenze": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "there": {"_count": 1}}, "might": {"_count": 1, "not": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "whos": {"_count": 2, "not": {"_count": 1}, "buried": {"_count": 1}}, "saying": {"_count": 1, "to": {"_count": 1}}, "Perkins": {"_count": 1, "at": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "holding": {"_count": 1, "mine": {"_count": 1}}, "he": {"_count": 1, "teaches": {"_count": 1}}}, "Brilliant": {"_count": 17, "mind": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, "!": {"_count": 6}, ".": {"_count": 2}}, "Harry": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 4, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 2}}, "he": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 1, "everything": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}}, "studyin": {"_count": 2, "outta": {"_count": 1, "books": {"_count": 1}}, "today": {"_count": 1, "is": {"_count": 1}}}, "firsthand": {"_count": 4, "experience": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "account": {"_count": 1, "wherever": {"_count": 1}}}, "experience": {"_count": 26, "": {"_count": 5, ".": {"_count": 5}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "with": {"_count": 3, "Hagrids": {"_count": 1}, "the": {"_count": 1}, "Dark": {"_count": 1}}, "of": {"_count": 7, "Hagrid": {"_count": 1}, "magical": {"_count": 1}, "the": {"_count": 2}, "seeing": {"_count": 1}, "Dobbys": {"_count": 1}, "trying": {"_count": 1}}, "but": {"_count": 1, "these": {"_count": 1}}, "in": {"_count": 1, "these": {"_count": 1}}, "for": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "talk": {"_count": 1}}, "how": {"_count": 1, "much": {"_count": 1}}, "had": {"_count": 1, "taught": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "seeing": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "wand": {"_count": 1}}}, "Forest": {"_count": 48, "and": {"_count": 5, "there": {"_count": 1}, "the": {"_count": 2}, "which": {"_count": 1}, "for": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 11}, "!": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "wrestle": {"_count": 1}, "do": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 2, "Whomping": {"_count": 1}, "mystery": {"_count": 1}}, "gilding": {"_count": 1, "the": {"_count": 1}}, "gilded": {"_count": 1, "once": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "five": {"_count": 1}}, "fluttering": {"_count": 1, "into": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 2, "felt": {"_count": 1}, "decided": {"_count": 1}}, "swayed": {"_count": 1, "in": {"_count": 1}}, "were": {"_count": 1, "swaying": {"_count": 1}}, "was": {"_count": 1, "teeming": {"_count": 1}}, "whiteblond": {"_count": 1, "hair": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "where": {"_count": 1, "students": {"_count": 1}}, "now": {"_count": 2, "as": {"_count": 1}, "but": {"_count": 1}}, "with": {"_count": 1, "no": {"_count": 1}}, "The": {"_count": 1, "trees": {"_count": 1}}, "big": {"_count": 1, "deal": {"_count": 1}}, "Harry": {"_count": 1, "IveFacedWorse": {"_count": 1}}, "of": {"_count": 2, "Dean": {"_count": 2}}, "into": {"_count": 1, "which": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}}, "hag": {"_count": 12, "never": {"_count": 1, "been": {"_count": 1}}, "who": {"_count": 1, "ordered": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "shut": {"_count": 1, "UP": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "teaching": {"_count": 1, "us": {"_count": 1}}, "like": {"_count": 1, "Umbridge": {"_count": 1}}, "you": {"_count": 1, "evil": {"_count": 1}}, "the": {"_count": 1, "Healer": {"_count": 1}}, "be": {"_count": 1, "interrogating": {"_count": 1}}}, "Scared": {"_count": 6, "of": {"_count": 3, "the": {"_count": 1}, "passing": {"_count": 1}, "them": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "all": {"_count": 1, "my": {"_count": 1}}, "o": {"_count": 1, "him": {"_count": 1}}}, "wheres": {"_count": 19, "me": {"_count": 1, "umbrella": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 5, "form": {"_count": 1}, "Snitch": {"_count": 1}, "fun": {"_count": 1}, "evidence": {"_count": 1}, "proof": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Hermione": {"_count": 1, "gone": {"_count": 1}}, "Voldemort": {"_count": 1, "where": {"_count": 1}}, "Slytherins": {"_count": 1, "locket": {"_count": 1}}, "he": {"_count": 3, "going": {"_count": 2}, "": {"_count": 1}}, "Hokey": {"_count": 1, "": {"_count": 1}}, "Hedwig": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "Ron": {"_count": 1, "an": {"_count": 1}}}, "Vampires": {"_count": 7, "": {"_count": 1, "?": {"_count": 1}}, "by": {"_count": 1, "Gilderoy": {"_count": 1}}, "propped": {"_count": 1, "open": {"_count": 1}}, "and": {"_count": 2, "looked": {"_count": 1}, "of": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "Hags": {"_count": 3, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "by": {"_count": 1, "Gilderoy": {"_count": 1}}}, "bricks": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}}, "Right": {"_count": 159, "stand": {"_count": 1, "back": {"_count": 1}}, "that": {"_count": 1, "should": {"_count": 1}}, "then": {"_count": 22, "Mr": {"_count": 1}, "FORWARD": {"_count": 1}, "said": {"_count": 6}, "Lockhart": {"_count": 1}, "Neville": {"_count": 1}, "he": {"_count": 2}, "lets": {"_count": 1}, "ready": {"_count": 1}, "George": {"_count": 1}, "Potter": {"_count": 1}, "everyone": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}, "fake": {"_count": 1}, "well": {"_count": 2}}, "mumbled": {"_count": 1, "Ron": {"_count": 1}}, "said": {"_count": 47, "Wood": {"_count": 1}, "Ron": {"_count": 7}, "Harry": {"_count": 29}, "Professor": {"_count": 2}, "George": {"_count": 1}, "Lupin": {"_count": 1}, "Hermione": {"_count": 2}, "Tonks": {"_count": 1}, "James": {"_count": 1}, "Dean": {"_count": 1}, "Ginny": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 16}, "!": {"_count": 1}, "?": {"_count": 1}}, "off": {"_count": 1, "we": {"_count": 1}}, "now": {"_count": 1, "were": {"_count": 1}}, "follow": {"_count": 2, "me": {"_count": 2}}, "were": {"_count": 2, "changin": {"_count": 1}, "leaving": {"_count": 1}}, "heres": {"_count": 1, "what": {"_count": 1}}, "NOW": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 2, "off": {"_count": 1}, "forbidding": {"_count": 1}}, "ahead": {"_count": 1, "there": {"_count": 1}}, "earmuffs": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "Yeah": {"_count": 1}}, "he": {"_count": 5, "said": {"_count": 3}, "snapped": {"_count": 1}, "murmured": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "underneath": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "one": {"_count": 1}}, "after": {"_count": 3, "lunch": {"_count": 1}, "wed": {"_count": 1}, "we": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "who": {"_count": 1, "wants": {"_count": 1}}, "back": {"_count": 1, "away": {"_count": 1}}, "yeh": {"_count": 1, "can": {"_count": 1}}, "Neville": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 6, "are": {"_count": 4}, "he": {"_count": 1}, "lot": {"_count": 1}}, "on": {"_count": 2, "cue": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 1, "Hermione": {"_count": 1}}, "she": {"_count": 2, "gasped": {"_count": 1}, "said": {"_count": 1}}, "its": {"_count": 1, "nearly": {"_count": 1}}, "over": {"_count": 1, "by": {"_count": 1}}, "these": {"_count": 1, "dragons": {"_count": 1}}, "little": {"_count": 1, "ray": {"_count": 1}}, "bed": {"_count": 1, "Potter": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "mumbled": {"_count": 1}}, "got": {"_count": 1, "everything": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "well": {"_count": 5, "I": {"_count": 1}, "well": {"_count": 1}, "Ive": {"_count": 1}, "even": {"_count": 1}, "Im": {"_count": 1}}, "yeah": {"_count": 2, "said": {"_count": 1}, "He": {"_count": 1}}, "Out": {"_count": 1, "of": {"_count": 1}}, "Professor": {"_count": 1, "said": {"_count": 1}}, "sir": {"_count": 1, "listen": {"_count": 1}}, "under": {"_count": 1, "your": {"_count": 1}}, "Dudley": {"_count": 1, "lets": {"_count": 1}}, "Kreacher": {"_count": 1, "I": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "sorry": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "remember": {"_count": 1}}, "behind": {"_count": 1, "Lee": {"_count": 1}}}, "quivered": {"_count": 13, "it": {"_count": 1, "wriggled": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "with": {"_count": 1, "excitement": {"_count": 1}}, "slightly": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 2, "a": {"_count": 2}}, "in": {"_count": 1, "front": {"_count": 1}}, "and": {"_count": 1, "broke": {"_count": 1}}, "suspiciously": {"_count": 1, "as": {"_count": 1}}}, "wriggled": {"_count": 9, "in": {"_count": 1, "the": {"_count": 1}}, "free": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "out": {"_count": 3, "seized": {"_count": 1}, "of": {"_count": 2}}, "like": {"_count": 1, "long": {"_count": 1}}, "pointlessly": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "wider": {"_count": 20, "and": {"_count": 6, "wider": {"_count": 3}, "Mrs": {"_count": 1}, "more": {"_count": 1}, "kinder": {"_count": 1}}, "a": {"_count": 1, "second": {"_count": 1}}, "than": {"_count": 2, "ever": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "to": {"_count": 1, "make": {"_count": 1}}, "selection": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 1, "Crouchs": {"_count": 1}}, "Wizarding": {"_count": 2, "community": {"_count": 1}, "world": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "finally": {"_count": 1, "forming": {"_count": 1}}}, "facing": {"_count": 99, "an": {"_count": 3, "archway": {"_count": 1}, "empty": {"_count": 1}, "inquiry": {"_count": 1}}, "a": {"_count": 8, "second": {"_count": 1}, "team": {"_count": 1}, "dragon": {"_count": 1}, "BlastEnded": {"_count": 1}, "Valentines": {"_count": 1}, "large": {"_count": 1}, "constant": {"_count": 1}, "mirror": {"_count": 1}}, "the": {"_count": 25, "platforms": {"_count": 1}, "other": {"_count": 1}, "Gryffindors": {"_count": 1}, "wands": {"_count": 1}, "open": {"_count": 3}, "rest": {"_count": 3}, "class": {"_count": 1}, "doorway": {"_count": 1}, "Fat": {"_count": 1}, "whole": {"_count": 1}, "unknown": {"_count": 1}, "prospect": {"_count": 1}, "thing": {"_count": 1}, "carpet": {"_count": 1}, "door": {"_count": 1}, "same": {"_count": 1}, "stafftable": {"_count": 1}, "brightness": {"_count": 1}, "long": {"_count": 1}, "challenge": {"_count": 1}, "space": {"_count": 1}}, "them": {"_count": 8, "led": {"_count": 1}, "": {"_count": 4}, "screening": {"_count": 1}, "again": {"_count": 1}, "seemed": {"_count": 1}}, "him": {"_count": 9, "was": {"_count": 1}, "had": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 1}, "now": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}, "bore": {"_count": 1}, "his": {"_count": 1}}, "your": {"_count": 1, "worst": {"_count": 1}}, "his": {"_count": 3, "three": {"_count": 1}, "bedroom": {"_count": 1}, "final": {"_count": 1}}, "three": {"_count": 1, "Dursleyfree": {"_count": 1}}, "twelve": {"_count": 1, "years": {"_count": 1}}, "five": {"_count": 1, "unarmed": {"_count": 1}}, "suspension": {"_count": 1, "from": {"_count": 1}}, "Frank": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "pupils": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "competitors": {"_count": 1, "whod": {"_count": 1}}, "tasks": {"_count": 1, "that": {"_count": 1}}, "on": {"_count": 1, "Tuesday": {"_count": 1}}, "Harry": {"_count": 2, "across": {"_count": 1}, "": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 2, "dragon": {"_count": 1}, "they": {"_count": 1}}, "dead": {"_count": 1, "ends": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "Voldemort": {"_count": 2, "": {"_count": 1}, "whose": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "whatever": {"_count": 1, "she": {"_count": 1}}, "VVoldemort": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "if": {"_count": 1}}, "Snape": {"_count": 2, "across": {"_count": 1}, "with": {"_count": 1}}, "not": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "six": {"_count": 1, "teenagers": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "each": {"_count": 3, "other": {"_count": 3}}, "magic": {"_count": 1, "many": {"_count": 1}}, "numbers": {"_count": 1, "eleven": {"_count": 1}}}, "archway": {"_count": 30, "large": {"_count": 1, "enough": {"_count": 1}}, "onto": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "shrink": {"_count": 1, "instantly": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "Diagon": {"_count": 1}}, "pushing": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "looked": {"_count": 1}}, "was": {"_count": 2, "hung": {"_count": 1}, "and": {"_count": 1}}, "looked": {"_count": 1, "much": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "gazing": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "stood": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "angry": {"_count": 1, "at": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "Harry": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}, "reopened": {"_count": 1, "instantly": {"_count": 1}}}, "cobbled": {"_count": 9, "street": {"_count": 8, "that": {"_count": 2}, "": {"_count": 3}, "was": {"_count": 2}, "toward": {"_count": 1}}, "together": {"_count": 1, "something": {"_count": 1}}}, "twisted": {"_count": 66, "and": {"_count": 10, "turned": {"_count": 3}, "flailed": {"_count": 1}, "at": {"_count": 1}, "Crookshanks": {"_count": 1}, "scarred": {"_count": 1}, "contorted": {"_count": 1}, "crisscrossed": {"_count": 1}, "pressed": {"_count": 1}}, "around": {"_count": 6, "to": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "dangerously": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "itself": {"_count": 2, "snakelike": {"_count": 1}, "into": {"_count": 1}}, "blob": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "though": {"_count": 1}}, "with": {"_count": 3, "fury": {"_count": 1}, "glee": {"_count": 1}, "the": {"_count": 1}}, "smile": {"_count": 8, "": {"_count": 5}, "was": {"_count": 2}, "Its": {"_count": 1}}, "limb": {"_count": 1, "punched": {"_count": 1}}, "old": {"_count": 1, "loony": {"_count": 1}}, "black": {"_count": 1, "remains": {"_count": 1}}, "to": {"_count": 1, "face": {"_count": 1}}, "themselves": {"_count": 2, "around": {"_count": 2}}, "spit": {"_count": 1, "was": {"_count": 1}}, "furling": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "into": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 4, "lopsided": {"_count": 1}, "body": {"_count": 1}, "crossbow": {"_count": 1}, "beard": {"_count": 1}}, "serpent": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "in": {"_count": 1}}, "mad": {"_count": 1, "old": {"_count": 1}}, "vicious": {"_count": 1, "Erm": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "face": {"_count": 5, "who": {"_count": 2}, "from": {"_count": 1}, "clapped": {"_count": 1}, "pointed": {"_count": 1}}, "in": {"_count": 3, "pain": {"_count": 1}, "midair": {"_count": 2}}, "its": {"_count": 1, "head": {"_count": 1}}, "Harrys": {"_count": 1, "intestines": {"_count": 1}}, "laws": {"_count": 1, "she": {"_count": 1}}, "experiments": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "thin": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}, "underfoot": {"_count": 1, "": {"_count": 1}}}, "Diagon": {"_count": 57, "Alley": {"_count": 57, "": {"_count": 21}, "back": {"_count": 1}, "had": {"_count": 2}, "how": {"_count": 1}, "to": {"_count": 1}, "she": {"_count": 1}, "said": {"_count": 3}, "and": {"_count": 7}, "opened": {"_count": 1}, "now": {"_count": 2}, "very": {"_count": 1}, "where": {"_count": 1}, "or": {"_count": 1}, "this": {"_count": 2}, "around": {"_count": 1}, "was": {"_count": 1}, "Weasleys": {"_count": 1}, "shell": {"_count": 1}, "sleeping": {"_count": 1}, "yet": {"_count": 1}, "much": {"_count": 1}, "Harry": {"_count": 2}, "sir": {"_count": 1}, "Hogwarts": {"_count": 1}, "could": {"_count": 1}}}, "Alley": {"_count": 70, "": {"_count": 25, ".": {"_count": 20}, "?": {"_count": 2}, "!": {"_count": 3}}, "back": {"_count": 1, "through": {"_count": 1}}, "had": {"_count": 2, "talked": {"_count": 1}, "changed": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "to": {"_count": 1, "buy": {"_count": 1}}, "he": {"_count": 1, "coughed": {"_count": 1}}, "I": {"_count": 1, "dunno": {"_count": 1}}, "said": {"_count": 4, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}, "Mr": {"_count": 1}, "Dumbledore": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 8, "as": {"_count": 1}, "get": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}, "that": {"_count": 1}, "some": {"_count": 1}, "she": {"_count": 1}, "launched": {"_count": 1}}, "opened": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 2, "with": {"_count": 1}, "they": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "where": {"_count": 1, "there": {"_count": 1}}, "or": {"_count": 1, "platform": {"_count": 1}}, "this": {"_count": 2, "afternoon": {"_count": 1}, "early": {"_count": 1}}, "around": {"_count": 1, "six": {"_count": 1}}, "was": {"_count": 1, "big": {"_count": 1}}, "Weasleys": {"_count": 1, "Wizarding": {"_count": 1}}, "shell": {"_count": 1, "want": {"_count": 1}}, "sleeping": {"_count": 1, "in": {"_count": 1}}, "yet": {"_count": 1, "because": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "began": {"_count": 1}}, "the": {"_count": 1, "side": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "Hogwarts": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "hardly": {"_count": 1}}}, "shrink": {"_count": 11, "instantly": {"_count": 1, "back": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "to": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "them": {"_count": 1, "for": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "instantly": {"_count": 47, "back": {"_count": 1, "into": {"_count": 1}}, "that": {"_count": 2, "this": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "though": {"_count": 1, "it": {"_count": 1}}, "hed": {"_count": 1, "gone": {"_count": 1}}, "drifting": {"_count": 1, "off": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "Dumbledore": {"_count": 1}}, "in": {"_count": 1, "another": {"_count": 1}}, "with": {"_count": 1, "puddings": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "Bout": {"_count": 1, "time": {"_count": 1}}, "a": {"_count": 1, "blinding": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "made": {"_count": 1, "flapping": {"_count": 1}}, "obvious": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 1, "two": {"_count": 1}}, "confused": {"_count": 1, "and": {"_count": 1}}, "asleep": {"_count": 1, "": {"_count": 1}}, "paralyzed": {"_count": 1, "": {"_count": 1}}, "became": {"_count": 1, "something": {"_count": 1}}, "appeared": {"_count": 1, "on": {"_count": 1}}, "quelled": {"_count": 1, "by": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "rigid": {"_count": 1, "and": {"_count": 1}}, "recognizable": {"_count": 2, "by": {"_count": 1}, "as": {"_count": 1}}, "It": {"_count": 1, "gave": {"_count": 1}}, "leave": {"_count": 1, "his": {"_count": 1}}, "freezing": {"_count": 1, "on": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "dispelled": {"_count": 1, "Voldemort": {"_count": 1}}}, "solid": {"_count": 73, "wall": {"_count": 9, "": {"_count": 3}, "at": {"_count": 1}, "of": {"_count": 2}, "ahead": {"_count": 1}, "around": {"_count": 1}, "and": {"_count": 1}}, "gold": {"_count": 2, "cauldron": {"_count": 1}, "Gobstones": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "walls": {"_count": 1, "just": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "unyielding": {"_count": 1}, "inflexible": {"_count": 1}, "fell": {"_count": 1}}, "barrier": {"_count": 3, "dividing": {"_count": 2}, "ignoring": {"_count": 1}}, "mass": {"_count": 2, "of": {"_count": 2}}, "castle": {"_count": 1, "wall": {"_count": 1}}, "months": {"_count": 1, "at": {"_count": 1}}, "believable": {"_count": 1, "verifiable": {"_count": 1}}, "which": {"_count": 1, "knocked": {"_count": 1}}, "ground": {"_count": 4, "and": {"_count": 1}, "beneath": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}}, "metal": {"_count": 1, "onto": {"_count": 1}}, "shimmering": {"_count": 1, "gray": {"_count": 1}}, "block": {"_count": 1, "of": {"_count": 1}}, "wood": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 1, "couldnt": {"_count": 1}}, "stone": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "objects": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "hedge": {"_count": 1, "": {"_count": 1}}, "emerged": {"_count": 1, "in": {"_count": 1}}, "weeks": {"_count": 1, "completely": {"_count": 1}}, "month": {"_count": 1, "he": {"_count": 1}}, "silver": {"_count": 1, "mate": {"_count": 1}}, "brick": {"_count": 2, "wall": {"_count": 2}}, "evidence": {"_count": 1, "that": {"_count": 1}}, "he": {"_count": 3, "would": {"_count": 1}, "had": {"_count": 1}, "cannot": {"_count": 1}}, "glass": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "A": {"_count": 1, "fiveyearold": {"_count": 1}}, "arent": {"_count": 1, "we": {"_count": 1}}, "as": {"_count": 3, "ever": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}}, "cave": {"_count": 1, "wall": {"_count": 1}}, "minutes": {"_count": 1, "Dumbledore": {"_count": 1}}, "dislike": {"_count": 1, "": {"_count": 1}}, "wax": {"_count": 1, "hanging": {"_count": 1}}, "things": {"_count": 1, "in": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "earth": {"_count": 1, "and": {"_count": 1}}, "They": {"_count": 1, "could": {"_count": 1}}, "fact": {"_count": 1, "the": {"_count": 1}}}, "brightly": {"_count": 104, "on": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 28, ".": {"_count": 28}}, "as": {"_count": 8, "the": {"_count": 2}, "ever": {"_count": 1}, "he": {"_count": 1}, "MadEye": {"_count": 1}, "she": {"_count": 2}, "a": {"_count": 1}}, "lit": {"_count": 6, "window": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "dance": {"_count": 1}, "classroom": {"_count": 1}, "grass": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 4}}, "shaking": {"_count": 1, "Harry": {"_count": 1}}, "pulling": {"_count": 1, "a": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "pink": {"_count": 1, "as": {"_count": 1}}, "colored": {"_count": 5, "umbrellas": {"_count": 1}, "tropical": {"_count": 1}, "wrappers": {"_count": 1}, "toffee": {"_count": 1}, "objects": {"_count": 1}}, "didnt": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 6, "the": {"_count": 4}, "Ron": {"_count": 1}, "Borgin": {"_count": 1}}, "patting": {"_count": 1, "the": {"_count": 1}}, "illuminated": {"_count": 1, "by": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "catching": {"_count": 1, "up": {"_count": 1}}, "than": {"_count": 2, "anything": {"_count": 1}, "before": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 4, "happy": {"_count": 1}, "she": {"_count": 2}, "this": {"_count": 1}}, "white": {"_count": 1, "it": {"_count": 1}}, "blue": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 2, "within": {"_count": 1}, "behind": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "knocking": {"_count": 2, "over": {"_count": 2}}, "spraying": {"_count": 1, "the": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "pointing": {"_count": 2, "at": {"_count": 1}, "ahead": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "holding": {"_count": 1, "out": {"_count": 1}}, "getting": {"_count": 1, "to": {"_count": 1}}, "swaying": {"_count": 1, "toward": {"_count": 1}}, "glancing": {"_count": 1, "over": {"_count": 1}}, "above": {"_count": 1, "us": {"_count": 1}}, "watching": {"_count": 1, "her": {"_count": 1}}, "glowing": {"_count": 1, "oil": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "waving": {"_count": 1, "his": {"_count": 1}}, "taking": {"_count": 1, "Harrys": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "sixteen": {"_count": 1}}}, "stack": {"_count": 22, "of": {"_count": 18, "cauldrons": {"_count": 1}, "things": {"_count": 1}, "books": {"_count": 2}, "Cauldron": {"_count": 2}, "parchment": {"_count": 2}, "order": {"_count": 1}, "toast": {"_count": 2}, "Support": {"_count": 1}, "cushions": {"_count": 1}, "precariously": {"_count": 1}, "presents": {"_count": 1}, "photographs": {"_count": 1}, "letters": {"_count": 1}, "newspapers": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "handy": {"_count": 1, "wherever": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}}, "cauldrons": {"_count": 21, "outside": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 1}, "?": {"_count": 1}}, "and": {"_count": 2, "theyd": {"_count": 1}, "old": {"_count": 1}}, "stood": {"_count": 1, "steaming": {"_count": 1}}, "away": {"_count": 1, "Neville": {"_count": 1}}, "that": {"_count": 1, "fell": {"_count": 1}}, "for": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "it": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "please": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "were": {"_count": 1, "lost": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "empty": {"_count": 1, "as": {"_count": 1}}}, "Cauldrons": {"_count": 8, "All": {"_count": 1, "Sizes": {"_count": 1}}, "narrow": {"_count": 1, "staircase": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "then": {"_count": 1, "shrugged": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "Romilda": {"_count": 1, "gave": {"_count": 1}}}, "Sizes": {"_count": 1, "Copper": {"_count": 1, "Brass": {"_count": 1}}}, "Copper": {"_count": 2, "Brass": {"_count": 1, "Pewter": {"_count": 1}}, "pots": {"_count": 1, "and": {"_count": 1}}}, "Brass": {"_count": 2, "Pewter": {"_count": 1, "Silver": {"_count": 1}}, "lamps": {"_count": 1, "hung": {"_count": 1}}}, "Pewter": {"_count": 1, "Silver": {"_count": 1, "SelfStirring": {"_count": 1}}}, "Silver": {"_count": 2, "SelfStirring": {"_count": 1, "Collapsible": {"_count": 1}}, "Arrows": {"_count": 1, "a": {"_count": 1}}}, "SelfStirring": {"_count": 1, "Collapsible": {"_count": 1, "said": {"_count": 1}}}, "Collapsible": {"_count": 1, "said": {"_count": 1, "a": {"_count": 1}}}, "hanging": {"_count": 102, "over": {"_count": 5, "them": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 2}}, "out": {"_count": 3, "of": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}}, "off": {"_count": 7, "his": {"_count": 1}, "their": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}, "him": {"_count": 2}}, "me": {"_count": 1, "out": {"_count": 1}}, "tapestries": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 12, "the": {"_count": 8}, "one": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}}, "on": {"_count": 6, "to": {"_count": 1}, "by": {"_count": 1}, "Professor": {"_count": 1}, "chains": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "in": {"_count": 13, "slippery": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 6}, "thin": {"_count": 1}, "other": {"_count": 1}, "spaces": {"_count": 1}, "front": {"_count": 1}, "frostlike": {"_count": 1}}, "there": {"_count": 1, "but": {"_count": 1}}, "dumbstruck": {"_count": 1, "out": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "underneath": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "her": {"_count": 1}}, "cat": {"_count": 1, "": {"_count": 1}}, "immobile": {"_count": 1, "cat": {"_count": 1}}, "open": {"_count": 7, "gazing": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 4}, "for": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "their": {"_count": 1}}, "a": {"_count": 1, "foot": {"_count": 1}}, "facedown": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "around": {"_count": 9, "in": {"_count": 2}, "": {"_count": 3}, "with": {"_count": 1}, "here": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "more": {"_count": 1, "loosely": {"_count": 1}}, "unconscious": {"_count": 1, "in": {"_count": 1}}, "back": {"_count": 2, "looking": {"_count": 1}, "watching": {"_count": 1}}, "limply": {"_count": 1, "in": {"_count": 1}}, "crookedly": {"_count": 1, "from": {"_count": 1}}, "very": {"_count": 1, "near": {"_count": 1}}, "and": {"_count": 1, "returned": {"_count": 1}}, "upside": {"_count": 4, "down": {"_count": 4}}, "low": {"_count": 1, "on": {"_count": 1}}, "down": {"_count": 1, "her": {"_count": 1}}, "Ron": {"_count": 1, "choked": {"_count": 1}}, "mans": {"_count": 1, "pupils": {"_count": 1}}, "elsewhere": {"_count": 1, "": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "pointlessly": {"_count": 1, "at": {"_count": 1}}, "behind": {"_count": 1, "it": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wide": {"_count": 1, "open": {"_count": 1}}, "round": {"_count": 2, "our": {"_count": 1}, "with": {"_count": 1}}}, "needin": {"_count": 1, "one": {"_count": 1, "said": {"_count": 1}}}, "plump": {"_count": 25, "woman": {"_count": 5, "outside": {"_count": 1}, "who": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "kind": {"_count": 1, "faced": {"_count": 1}}, "witch": {"_count": 4, "": {"_count": 1}, "with": {"_count": 1}, "carrying": {"_count": 1}, "got": {"_count": 1}}, "chocolate": {"_count": 1, "cakes": {"_count": 1}}, "man": {"_count": 2, "who": {"_count": 1}, "wearing": {"_count": 1}}, "scowling": {"_count": 1, "girl": {"_count": 1}}, "face": {"_count": 3, "seemed": {"_count": 1}, "and": {"_count": 1}, "screwed": {"_count": 1}}, "blonde": {"_count": 1, "witch": {"_count": 1}}, "happy": {"_count": 1, "looking": {"_count": 1}}, "little": {"_count": 1, "witch": {"_count": 1}}, "cushions": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "wearing": {"_count": 1}, "wateryeyed": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "ones": {"_count": 1, "and": {"_count": 1}}}, "Apothecary": {"_count": 6, "was": {"_count": 1, "shaking": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "Hagrid": {"_count": 1, "checked": {"_count": 1}}, "to": {"_count": 1, "replenish": {"_count": 1}}, "and": {"_count": 1, "Eeylops": {"_count": 1}}, "seeing": {"_count": 1, "that": {"_count": 1}}}, "Dragon": {"_count": 9, "liver": {"_count": 1, "sixteen": {"_count": 1}}, "Species": {"_count": 1, "of": {"_count": 1}}, "Keepers": {"_count": 1, "Guide": {"_count": 1}}, "breeding": {"_count": 1, "was": {"_count": 1}}, "Breeding": {"_count": 1, "for": {"_count": 1}}, "bloods": {"_count": 1, "amazingly": {"_count": 1}}, "claw": {"_count": 1, "does": {"_count": 1}}, "shouted": {"_count": 1, "the": {"_count": 1}}, "dragon": {"_count": 1, "heartstring": {"_count": 1}}}, "liver": {"_count": 7, "sixteen": {"_count": 1, "Sickles": {"_count": 1}}, "and": {"_count": 2, "tripe": {"_count": 1}, "lower": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "spots": {"_count": 1, "": {"_count": 1}}}, "Sickles": {"_count": 20, "an": {"_count": 1, "ounce": {"_count": 1}}, "to": {"_count": 2, "a": {"_count": 1}, "join": {"_count": 1}}, "and": {"_count": 6, "seven": {"_count": 1}, "Knuts": {"_count": 1}, "bronze": {"_count": 2}, "two": {"_count": 1}, "a": {"_count": 1}}, "inside": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Stan": {"_count": 1}}, "three": {"_count": 1, "Knuts": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "had": {"_count": 1, "been": {"_count": 1}}, "each": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "ounce": {"_count": 7, "theyre": {"_count": 1, "mad": {"_count": 1}}, "of": {"_count": 6, "logic": {"_count": 1}, "strength": {"_count": 1}, "support": {"_count": 1}, "resolution": {"_count": 1}, "cunning": {"_count": 1}, "his": {"_count": 1}}}, "soft": {"_count": 87, "hooting": {"_count": 1, "came": {"_count": 1}}, "voice": {"_count": 7, "": {"_count": 3}, "half": {"_count": 1}, "from": {"_count": 1}, "seemed": {"_count": 1}, "magically": {"_count": 1}}, "greasy": {"_count": 1, "voice": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "landing": {"_count": 1, "you": {"_count": 1}}, "rustling": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 2, "them": {"_count": 1}, "you": {"_count": 1}}, "option": {"_count": 2, "but": {"_count": 1}, "mumbled": {"_count": 1}}, "hit": {"_count": 1, "his": {"_count": 1}}, "clatter": {"_count": 1, "of": {"_count": 1}}, "hiss": {"_count": 2, "": {"_count": 1}, "Crookshanks": {"_count": 1}}, "golden": {"_count": 4, "glow": {"_count": 1}, "light": {"_count": 2}, "evening": {"_count": 1}}, "flump": {"_count": 1, "on": {"_count": 1}}, "crackling": {"_count": 1, "noise": {"_count": 1}}, "knock": {"_count": 1, "on": {"_count": 1}}, "misty": {"_count": 1, "sort": {"_count": 1}}, "thump": {"_count": 1, "right": {"_count": 1}}, "scream": {"_count": 2, "": {"_count": 2}}, "pounding": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "Azkaban": {"_count": 1}}, "hissing": {"_count": 2, "noise": {"_count": 2}}, "cursing": {"_count": 1, "of": {"_count": 1}}, "ground": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "swooshing": {"_count": 1, "noise": {"_count": 1}}, "tap": {"_count": 1, "tap": {"_count": 1}}, "noise": {"_count": 1, "of": {"_count": 1}}, "deadly": {"_count": 1, "voice": {"_count": 1}}, "and": {"_count": 1, "dangerous": {"_count": 1}}, "breeze": {"_count": 1, "played": {"_count": 1}}, "thud": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "cold": {"_count": 1, "voice": {"_count": 1}}, "rush": {"_count": 1, "of": {"_count": 1}}, "quavering": {"_count": 1, "note": {"_count": 1}}, "ticking": {"_count": 1, "noise": {"_count": 1}}, "fall": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 2, "our": {"_count": 1}, "such": {"_count": 1}}, "rustle": {"_count": 1, "of": {"_count": 1}}, "whooshing": {"_count": 1, "sound": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "rumble": {"_count": 1, "of": {"_count": 1}}, "whoosh": {"_count": 1, "on": {"_count": 1}}, "moan": {"_count": 1, "of": {"_count": 1}}, "splat": {"_count": 1, "onto": {"_count": 1}}, "oh": {"_count": 1, "": {"_count": 1}}, "dappled": {"_count": 1, "green": {"_count": 1}}, "evening": {"_count": 1, "air": {"_count": 1}}, "tug": {"_count": 1, "on": {"_count": 1}}, "ashes": {"_count": 1, "beneath": {"_count": 1}}, "chirruping": {"_count": 1, "noises": {"_count": 1}}, "clipclopping": {"_count": 1, "noises": {"_count": 1}}, "cough": {"_count": 1, "behind": {"_count": 1}}, "chairs": {"_count": 1, "and": {"_count": 1}}, "clucking": {"_count": 1, "of": {"_count": 1}}, "spot": {"_count": 1, "": {"_count": 1}}, "musical": {"_count": 3, "cry": {"_count": 1}, "voice": {"_count": 2}}, "squawk": {"_count": 1, "behind": {"_count": 1}}, "splashing": {"_count": 1, "noise": {"_count": 1}}, "brown": {"_count": 1, "and": {"_count": 1}}, "silky": {"_count": 1, "voice": {"_count": 1}}, "girlish": {"_count": 1, "laugh": {"_count": 1}}, "bed": {"_count": 1, "and": {"_count": 1}}, "swishes": {"_count": 1, "of": {"_count": 1}}, "footsteps": {"_count": 1, "around": {"_count": 1}}, "thumpings": {"_count": 1, "of": {"_count": 1}}, "clean": {"_count": 1, "and": {"_count": 1}}, "snakes": {"_count": 1, "hiss": {"_count": 1}}}, "hooting": {"_count": 21, "came": {"_count": 1, "from": {"_count": 1}}, "noise": {"_count": 2, "from": {"_count": 1}, "beak": {"_count": 1}}, "softly": {"_count": 2, "down": {"_count": 1}, "": {"_count": 1}}, "happily": {"_count": 1, "in": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "shrilly": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "many": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "indignantly": {"_count": 1, "": {"_count": 1}}, "incessantly": {"_count": 1, "": {"_count": 1}}, "golden": {"_count": 1, "owls": {"_count": 1}}, "continually": {"_count": 1, "Hedwig": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 1, "laughter": {"_count": 1}}, "dolefully": {"_count": 1, "": {"_count": 1}}, "feebly": {"_count": 1, "as": {"_count": 1}}, "serenely": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "flapping": {"_count": 1}}, "at": {"_count": 1, "each": {"_count": 1}}}, "Eeylops": {"_count": 4, "Owl": {"_count": 3, "Emporium": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Owl": {"_count": 10, "Emporium": {"_count": 3, "Tawny": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}}, "Office": {"_count": 1, "for": {"_count": 1}}, "Treats": {"_count": 3, "said": {"_count": 1}, "through": {"_count": 1}, "up": {"_count": 1}}, "Treat": {"_count": 1, "": {"_count": 1}}, "feathers": {"_count": 1, "apple": {"_count": 1}}, "Order": {"_count": 1, "Service": {"_count": 1}}}, "Emporium": {"_count": 3, "Tawny": {"_count": 1, "Screech": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Tawny": {"_count": 1, "Screech": {"_count": 1, "Barn": {"_count": 1}}}, "Screech": {"_count": 1, "Barn": {"_count": 1, "Brown": {"_count": 1}}}, "Barn": {"_count": 1, "Brown": {"_count": 1, "and": {"_count": 1}}}, "Brown": {"_count": 37, "and": {"_count": 3, "Snowy": {"_count": 1}, "Parvati": {"_count": 2}}, "Lavender": {"_count": 1, "became": {"_count": 1}}, "yes": {"_count": 1, "an": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "seemed": {"_count": 1}}, "looked": {"_count": 1, "puzzled": {"_count": 1}}, "clapped": {"_count": 1, "her": {"_count": 1}}, "pointing": {"_count": 1, "toward": {"_count": 1}}, "squealed": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 2, "taken": {"_count": 1}, "apparently": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "jumping": {"_count": 1, "backward": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Oh": {"_count": 1, "Professor": {"_count": 1}}, "when": {"_count": 1, "Im": {"_count": 1}}, "imitated": {"_count": 1, "a": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}, "uttered": {"_count": 1, "a": {"_count": 1}}, "please": {"_count": 1, "take": {"_count": 1}}, "said": {"_count": 1, "wow": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "came": {"_count": 1, "hurtling": {"_count": 1}}, "was": {"_count": 1, "standing": {"_count": 1}}, "staring": {"_count": 1, "right": {"_count": 1}}, "Harry": {"_count": 1, "noticed": {"_count": 1}}, "whom": {"_count": 1, "Harry": {"_count": 1}}}, "Several": {"_count": 52, "boys": {"_count": 1, "of": {"_count": 1}}, "fat": {"_count": 1, "brown": {"_count": 1}}, "uneventful": {"_count": 1, "hours": {"_count": 1}}, "seats": {"_count": 2, "along": {"_count": 1}, "down": {"_count": 1}}, "shot": {"_count": 1, "straight": {"_count": 1}}, "people": {"_count": 11, "in": {"_count": 1}, "nearby": {"_count": 1}, "screamed": {"_count": 1}, "looked": {"_count": 1}, "chortled": {"_count": 1}, "sniggered": {"_count": 1}, "laughed": {"_count": 1}, "watching": {"_count": 1}, "said": {"_count": 1}, "gasped": {"_count": 1}, "were": {"_count": 1}}, "large": {"_count": 1, "spiders": {"_count": 1}}, "of": {"_count": 13, "them": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 9}, "his": {"_count": 2}}, "sessions": {"_count": 1, "on": {"_count": 1}}, "feet": {"_count": 1, "from": {"_count": 1}}, "small": {"_count": 1, "brightly": {"_count": 1}}, "caught": {"_count": 1, "fire": {"_count": 1}}, "hands": {"_count": 1, "rose": {"_count": 1}}, "grimy": {"_count": 1, "portraits": {"_count": 1}}, "sixthyear": {"_count": 1, "girls": {"_count": 1}}, "gold": {"_count": 1, "sparks": {"_count": 1}}, "tons": {"_count": 1, "of": {"_count": 1}}, "bottles": {"_count": 1, "of": {"_count": 1}}, "times": {"_count": 4, "Filch": {"_count": 1}, "Kreacher": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "silent": {"_count": 1, "minutes": {"_count": 1}}, "looked": {"_count": 1, "so": {"_count": 1}}, "girls": {"_count": 1, "screamed": {"_count": 1}}, "onlookers": {"_count": 1, "sniggered": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "years": {"_count": 1, "later": {"_count": 1}}}, "Nimbus": {"_count": 41, "Two": {"_count": 31, "Thousand": {"_count": 30}, "Thousands": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "was": {"_count": 2, "swerving": {"_count": 1}, "beyond": {"_count": 1}}, "dropped": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 1, "smashed": {"_count": 1}}, "series": {"_count": 1, "has": {"_count": 1}}, "and": {"_count": 1, "Percys": {"_count": 1}}, "but": {"_count": 1, "theres": {"_count": 1}}}, "fastest": {"_count": 5, "ever": {"_count": 1, "There": {"_count": 1}}, "players": {"_count": 1, "and": {"_count": 1}}, "racing": {"_count": 1, "brooms": {"_count": 1}}, "broom": {"_count": 1, "in": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}}, "selling": {"_count": 12, "robes": {"_count": 1, "shops": {"_count": 1}}, "telescopes": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "poisonous": {"_count": 1, "candles": {"_count": 1}}, "So": {"_count": 1, "hes": {"_count": 1}}, "biting": {"_count": 1, "doorknobs": {"_count": 1}}, "their": {"_count": 1, "magical": {"_count": 1}}, "MetamorphMedals": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "stuff": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "Diagon": {"_count": 1}}}, "telescopes": {"_count": 7, "and": {"_count": 2, "strange": {"_count": 1}, "peered": {"_count": 1}}, "every": {"_count": 1, "Wednesday": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hastening": {"_count": 1, "to": {"_count": 1}}, "haphazardly": {"_count": 1, "back": {"_count": 1}}, "Mr": {"_count": 1, "Filch": {"_count": 1}}}, "instruments": {"_count": 19, "Harry": {"_count": 2, "had": {"_count": 2}}, "hung": {"_count": 1, "from": {"_count": 1}}, "stood": {"_count": 3, "on": {"_count": 2}, "again": {"_count": 1}}, "and": {"_count": 4, "stuff": {"_count": 1}, "Harry": {"_count": 1}, "artifacts": {"_count": 1}, "other": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "whose": {"_count": 1, "function": {"_count": 1}}, "in": {"_count": 1, "pieces": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "an": {"_count": 1}}, "whirring": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "stone": {"_count": 1}}, "that": {"_count": 1, "when": {"_count": 1}}}, "stacked": {"_count": 13, "with": {"_count": 2, "barrels": {"_count": 1}, "volumes": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "three": {"_count": 1, "deep": {"_count": 1}}, "untidily": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 1, "neatly": {"_count": 1}}, "neatly": {"_count": 1, "beneath": {"_count": 1}}, "piles": {"_count": 1, "of": {"_count": 1}}, "threeandahalf": {"_count": 1, "feet": {"_count": 1}}, "shoes": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "my": {"_count": 1}, "front": {"_count": 1}}, "by": {"_count": 1, "subject": {"_count": 1}}}, "barrels": {"_count": 2, "of": {"_count": 2, "bat": {"_count": 1}, "mulled": {"_count": 1}}}, "bat": {"_count": 25, "spleens": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "like": {"_count": 1, "ears": {"_count": 1}}, "ears": {"_count": 2, "and": {"_count": 1}, "quivering": {"_count": 1}}, "with": {"_count": 1, "all": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "in": {"_count": 1, "outsize": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "droppings": {"_count": 1, "here": {"_count": 1}}, "and": {"_count": 2, "Kirke": {"_count": 1}, "get": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "added": {"_count": 1, "George": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "but": {"_count": 1, "by": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}}, "spleens": {"_count": 1, "and": {"_count": 1, "eels": {"_count": 1}}}, "eels": {"_count": 3, "eyes": {"_count": 2, "tottering": {"_count": 1}, "I": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}}, "tottering": {"_count": 13, "piles": {"_count": 4, "of": {"_count": 4}}, "back": {"_count": 2, "onto": {"_count": 1}, "toward": {"_count": 1}}, "pile": {"_count": 3, "of": {"_count": 3}}, "sweatyfaced": {"_count": 1, "from": {"_count": 1}}, "slightly": {"_count": 1, "due": {"_count": 1}}, "drunkenly": {"_count": 1, "toward": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "quills": {"_count": 46, "and": {"_count": 12, "rolls": {"_count": 1}, "parchment": {"_count": 2}, "roll": {"_count": 1}, "exploding": {"_count": 1}, "taken": {"_count": 1}, "books": {"_count": 1}, "what": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "most": {"_count": 1}, "notebooks": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "before": {"_count": 1, "taking": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "people": {"_count": 1, "kept": {"_count": 1}}, "which": {"_count": 2, "you": {"_count": 1}, "came": {"_count": 1}}, "out": {"_count": 3, "talking": {"_count": 1}, "poring": {"_count": 1}, "please": {"_count": 1}}, "a": {"_count": 1, "dozen": {"_count": 1}}, "parchment": {"_count": 1, "and": {"_count": 1}}, "kept": {"_count": 1, "losing": {"_count": 1}}, "several": {"_count": 1, "upturned": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "his": {"_count": 1, "back": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "on": {"_count": 1, "parchment": {"_count": 1}}, "scratching": {"_count": 2, "made": {"_count": 1}, "feverishly": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "copper": {"_count": 1}}, "ink": {"_count": 1, "bottles": {"_count": 1}}, "had": {"_count": 1, "many": {"_count": 1}}, "were": {"_count": 1, "scratching": {"_count": 1}}, "scratched": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 1, "coated": {"_count": 1}}, "those": {"_count": 1, "would": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "desiccated": {"_count": 1, "beetle": {"_count": 1}}, "will": {"_count": 1, "describe": {"_count": 1}}, "outof": {"_count": 1, "date": {"_count": 1}}}, "potion": {"_count": 184, "bottles": {"_count": 3, "globes": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "ingredients": {"_count": 6, "and": {"_count": 2}, "for": {"_count": 2}, "eh": {"_count": 1}, "that": {"_count": 1}}, "so": {"_count": 1, "powerful": {"_count": 1}}, "to": {"_count": 4, "cure": {"_count": 1}, "your": {"_count": 1}, "calm": {"_count": 1}, "simmer": {"_count": 1}}, "was": {"_count": 6, "seeping": {"_count": 1}, "only": {"_count": 1}, "all": {"_count": 1}, "still": {"_count": 1}, "illuminating": {"_count": 1}, "about": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 36, ".": {"_count": 29}, "?": {"_count": 4}, "!": {"_count": 3}}, "stains": {"_count": 1, "they": {"_count": 1}}, "the": {"_count": 2, "picturesll": {"_count": 1}, "basin": {"_count": 1}}, "made": {"_count": 1, "that": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "exploded": {"_count": 1, "showering": {"_count": 1}}, "frothed": {"_count": 1, "and": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "looked": {"_count": 3, "like": {"_count": 3}}, "into": {"_count": 4, "each": {"_count": 1}, "a": {"_count": 1}, "my": {"_count": 1}, "Dumbledores": {"_count": 1}}, "hissed": {"_count": 1, "loudly": {"_count": 1}}, "down": {"_count": 4, "in": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}, "Dumbledore": {"_count": 1}}, "shed": {"_count": 1, "made": {"_count": 1}}, "today": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 5, "was": {"_count": 4}, "had": {"_count": 1}}, "needs": {"_count": 1, "to": {"_count": 1}}, "feverishly": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 4, "me": {"_count": 1}, "him": {"_count": 1}, "dreamless": {"_count": 1}, "nothing": {"_count": 1}}, "brewer": {"_count": 1, "and": {"_count": 1}}, "is": {"_count": 3, "the": {"_count": 1}, "controlled": {"_count": 1}, "supposed": {"_count": 1}}, "that": {"_count": 9, "Professor": {"_count": 1}, "had": {"_count": 2}, "revived": {"_count": 1}, "often": {"_count": 1}, "will": {"_count": 1}, "forces": {"_count": 1}, "might": {"_count": 1}, "drove": {"_count": 1}}, "tonight": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "making": {"_count": 1, "kit": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "had": {"_count": 4, "turned": {"_count": 3}, "been": {"_count": 1}}, "concocted": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 7, "a": {"_count": 1}, "the": {"_count": 1}, "hes": {"_count": 1}, "passed": {"_count": 1}, "felt": {"_count": 1}, "Kreacher": {"_count": 1}, "change": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 2, "Mrs": {"_count": 1}, "said": {"_count": 1}}, "I": {"_count": 2, "suppose": {"_count": 1}, "think": {"_count": 1}}, "called": {"_count": 2, "Snape": {"_count": 1}, "Felix": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "vanished": {"_count": 1, "he": {"_count": 1}}, "label": {"_count": 1, "it": {"_count": 1}}, "wasnt": {"_count": 1, "nearly": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "like": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "hissed": {"_count": 1}}, "indicating": {"_count": 1, "how": {"_count": 1}}, "sample": {"_count": 1, "lay": {"_count": 1}}, "within": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "date": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "kits": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "breakfast": {"_count": 1}}, "Felix": {"_count": 2, "Felicis": {"_count": 2}}, "from": {"_count": 2, "anybody": {"_count": 1}, "Hermione": {"_count": 1}}, "already": {"_count": 1, "resembled": {"_count": 1}}, "immediately": {"_count": 1, "turned": {"_count": 1}}, "turned": {"_count": 2, "clear": {"_count": 1}, "palest": {"_count": 1}}, "he": {"_count": 1, "gave": {"_count": 1}}, "stop": {"_count": 1, "working": {"_count": 1}}, "book": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "with": {"_count": 2, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "wore": {"_count": 1, "off": {"_count": 1}}, "by": {"_count": 2, "mistake": {"_count": 2}}, "sir": {"_count": 1, "and": {"_count": 1}}, "kit": {"_count": 2, "and": {"_count": 1}, "pulling": {"_count": 1}}, "or": {"_count": 1, "a": {"_count": 1}}, "anyone": {"_count": 1, "could": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "looking": {"_count": 1, "awestruck": {"_count": 1}}, "murmuring": {"_count": 1, "soundlessly": {"_count": 1}}, "glowed": {"_count": 1, "a": {"_count": 1}}, "cannot": {"_count": 1, "be": {"_count": 1}}, "must": {"_count": 1, "act": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "hit": {"_count": 1, "their": {"_count": 1}}, "caused": {"_count": 1, "its": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "globes": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "many": {"_count": 1}}}, "moon": {"_count": 50, "": {"_count": 11, ".": {"_count": 9}, "?": {"_count": 2}}, "was": {"_count": 4, "bright": {"_count": 1}, "still": {"_count": 1}, "already": {"_count": 1}, "glistening": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "growing": {"_count": 1}}, "glinting": {"_count": 1, "at": {"_count": 1}}, "charts": {"_count": 1, "see": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "keep": {"_count": 1}}, "to": {"_count": 1, "wane": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "drifted": {"_count": 1, "in": {"_count": 1}}, "slid": {"_count": 1, "out": {"_count": 1}}, "above": {"_count": 1, "": {"_count": 1}}, "bright": {"_count": 1, "like": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "or": {"_count": 1, "when": {"_count": 1}}, "the": {"_count": 1, "misty": {"_count": 1}}, "overhead": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "frogs": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 1, "Ganymede": {"_count": 1}}, "Io": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "spectacles": {"_count": 4, "perched": {"_count": 2}, "upon": {"_count": 1}, "into": {"_count": 1}}, "approaching": {"_count": 1, "": {"_count": 1}}, "swimming": {"_count": 1, "in": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "cycle": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "positions": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "revealed": {"_count": 1, "suddenly": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "hanging": {"_count": 1, "behind": {"_count": 1}}}, "snowy": {"_count": 29, "white": {"_count": 2, "building": {"_count": 1}, "Hedwig": {"_count": 1}}, "owl": {"_count": 11, "fast": {"_count": 1}, "asleep": {"_count": 1}, "clicked": {"_count": 2}, "Hedwig": {"_count": 3}, "perched": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "cloud": {"_count": 1, "in": {"_count": 1}}, "female": {"_count": 1, "was": {"_count": 1}}, "grounds": {"_count": 1, "": {"_count": 1}}, "Hogsmeade": {"_count": 1, "": {"_count": 1}}, "yard": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "lawn": {"_count": 1, "and": {"_count": 1}}, "courtyard": {"_count": 1, "at": {"_count": 1}}, "night": {"_count": 1, "merely": {"_count": 1}}, "lane": {"_count": 1, "under": {"_count": 1}}, "tombstones": {"_count": 1, "protruded": {"_count": 1}}, "and": {"_count": 1, "thickly": {"_count": 1}}, "ground": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "hillside": {"_count": 1, "ought": {"_count": 1}}, "pillow": {"_count": 1, "he": {"_count": 1}}}, "towered": {"_count": 8, "over": {"_count": 6, "the": {"_count": 3}, "them": {"_count": 1}, "Professor": {"_count": 1}, "him": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "ghostly": {"_count": 1, "white": {"_count": 1}}}, "Standing": {"_count": 13, "beside": {"_count": 1, "its": {"_count": 1}}, "on": {"_count": 2, "either": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "over": {"_count": 1, "them": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "two": {"_count": 1}}, "up": {"_count": 1, "she": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "burnished": {"_count": 4, "bronze": {"_count": 1, "doors": {"_count": 1}}, "gold": {"_count": 1, "shield": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "image": {"_count": 1, "was": {"_count": 1}}}, "scarlet": {"_count": 93, "and": {"_count": 8, "gold": {"_count": 4}, "the": {"_count": 1}, "toppled": {"_count": 1}, "I": {"_count": 1}, "slit": {"_count": 1}}, "steam": {"_count": 6, "engine": {"_count": 6}}, "": {"_count": 9, ".": {"_count": 9}}, "Quidditch": {"_count": 1, "robes": {"_count": 1}}, "shoot": {"_count": 1, "past": {"_count": 1}}, "as": {"_count": 2, "Ron": {"_count": 1}, "she": {"_count": 1}}, "snake": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "team": {"_count": 1, "robes": {"_count": 1}}, "Gryffindor": {"_count": 2, "robes": {"_count": 1}, "banner": {"_count": 1}}, "light": {"_count": 2, "and": {"_count": 1}, "shot": {"_count": 1}}, "ink": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "robes": {"_count": 6, "in": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}, "over": {"_count": 1}}, "tie": {"_count": 1, "a": {"_count": 1}}, "swam": {"_count": 1, "past": {"_count": 1}}, "wings": {"_count": 1, "emitted": {"_count": 1}}, "sweater": {"_count": 1, "with": {"_count": 1}}, "blurs": {"_count": 1, "bearing": {"_count": 1}}, "envelope": {"_count": 2, "clutched": {"_count": 1}, "but": {"_count": 1}}, "rosettes": {"_count": 1, "waving": {"_count": 1}}, "flags": {"_count": 1, "with": {"_count": 1}}, "below": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "roared": {"_count": 1, "its": {"_count": 1}}, "Quaffle": {"_count": 1, "the": {"_count": 1}}, "Chinese": {"_count": 1, "Fireball": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "woman": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 4, "and": {"_count": 1}, "upon": {"_count": 1}, "narrowed": {"_count": 1}, "rolling": {"_count": 1}}, "than": {"_count": 1, "his": {"_count": 1}}, "banner": {"_count": 2, "over": {"_count": 1}, "": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 4, "pressure": {"_count": 1}, "face": {"_count": 1}, "rock": {"_count": 1}, "black": {"_count": 1}}, "an": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 2, "suppressed": {"_count": 1}, "catlike": {"_count": 1}}, "paint": {"_count": 1, "on": {"_count": 1}}, "slitpupiled": {"_count": 1, "eyes": {"_count": 1}}, "quill": {"_count": 1, "": {"_count": 1}}, "Hogwarts": {"_count": 2, "Express": {"_count": 2}}, "lost": {"_count": 1, "her": {"_count": 1}}, "cheeks": {"_count": 1, "with": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "white": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "looked": {"_count": 1}}, "caterpillar": {"_count": 1, "": {"_count": 1}}, "oval": {"_count": 1, "over": {"_count": 1}}, "against": {"_count": 1, "her": {"_count": 1}}, "train": {"_count": 1, "and": {"_count": 1}}}, "goblin": {"_count": 124, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "was": {"_count": 2, "about": {"_count": 1}, "trembling": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 19}}, "wrinkled": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "looked": {"_count": 3, "at": {"_count": 2}, "slantwise": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "tried": {"_count": 1, "that": {"_count": 1}}, "rebellions": {"_count": 4, "": {"_count": 2}, "of": {"_count": 1}, "as": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "driven": {"_count": 1, "carts": {"_count": 1}}, "rebellion": {"_count": 1, "and": {"_count": 1}}, "riots": {"_count": 2, "sound": {"_count": 1}, "of": {"_count": 1}}, "rebels": {"_count": 1, "names": {"_count": 1}}, "family": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 7, "a": {"_count": 1}, "withdrew": {"_count": 1}, "the": {"_count": 2}, "three": {"_count": 1}, "Harry": {"_count": 1}, "whispered": {"_count": 1}}, "gold": {"_count": 1, "supplies": {"_count": 1}}, "groups": {"_count": 1, "turn": {"_count": 1}}, "who": {"_count": 8, "cast": {"_count": 1}, "seemed": {"_count": 1}, "still": {"_count": 2}, "showed": {"_count": 1}, "was": {"_count": 2}, "dashed": {"_count": 1}}, "stood": {"_count": 1, "beaming": {"_count": 1}}, "leading": {"_count": 1, "a": {"_count": 1}}, "applauded": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}, "I": {"_count": 1, "should": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "both": {"_count": 1, "believed": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "can": {"_count": 1}}, "bore": {"_count": 1, "down": {"_count": 1}}, "stirred": {"_count": 1, "but": {"_count": 1}}, "Hermione": {"_count": 1, "looks": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "broke": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 2, "no": {"_count": 1}, "helmets": {"_count": 1}}, "wincing": {"_count": 1, "a": {"_count": 1}}, "quietly": {"_count": 1, "has": {"_count": 1}}, "or": {"_count": 1, "elf": {"_count": 1}}, "gazed": {"_count": 1, "at": {"_count": 1}}, "twisted": {"_count": 1, "his": {"_count": 1}}, "stroked": {"_count": 1, "the": {"_count": 1}}, "bowed": {"_count": 1, "his": {"_count": 1}}, "sending": {"_count": 1, "her": {"_count": 1}}, "firmly": {"_count": 1, "for": {"_count": 1}}, "softly": {"_count": 1, "we": {"_count": 1}}, "sitting": {"_count": 1, "up": {"_count": 1}}, "bristling": {"_count": 1, "with": {"_count": 1}}, "nodded": {"_count": 1, "looking": {"_count": 1}}, "stories": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "accept": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "holding": {"_count": 1, "out": {"_count": 1}}, "ate": {"_count": 1, "only": {"_count": 1}}, "remain": {"_count": 1, "at": {"_count": 1}}, "she": {"_count": 1, "scowled": {"_count": 1}}, "shot": {"_count": 1, "him": {"_count": 1}}, "seemed": {"_count": 2, "untouched": {"_count": 1}, "to": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "friends": {"_count": 1, "or": {"_count": 1}}, "ownership": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "rightful": {"_count": 1}}, "eyes": {"_count": 1, "rightfully": {"_count": 1}}, "had": {"_count": 2, "noticed": {"_count": 1}, "never": {"_count": 1}}, "without": {"_count": 1, "handing": {"_count": 1}}, "rarely": {"_count": 1, "left": {"_count": 1}}, "clambered": {"_count": 1, "onto": {"_count": 1}}, "clung": {"_count": 1, "even": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "tossed": {"_count": 1, "the": {"_count": 1}}, "evidently": {"_count": 1, "startled": {"_count": 1}}, "took": {"_count": 1, "Bellatrixs": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "approached": {"_count": 1, "": {"_count": 1}}, "hopping": {"_count": 1, "down": {"_count": 1}}, "came": {"_count": 1, "scurrying": {"_count": 1}}, "shook": {"_count": 1, "him": {"_count": 1}}, "Bogrod": {"_count": 1, "panting": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "obeyed": {"_count": 1, "pressing": {"_count": 1}}, "emerged": {"_count": 1, "by": {"_count": 1}}, "still": {"_count": 1, "astride": {"_count": 1}}, "its": {"_count": 1, "black": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}}, "shorter": {"_count": 16, "than": {"_count": 6, "Harry": {"_count": 2}, "that": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}, "usual": {"_count": 1}}, "and": {"_count": 2, "stockier": {"_count": 1}, "extremely": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "wouldnt": {"_count": 1, "it": {"_count": 1}}, "legs": {"_count": 1, "had": {"_count": 1}}, "man": {"_count": 1, "to": {"_count": 1}}, "plump": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "try": {"_count": 1, "and": {"_count": 1}}}, "swarthy": {"_count": 2, "clever": {"_count": 1, "face": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}}, "clever": {"_count": 48, "face": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "gave": {"_count": 1}}, "Ron": {"_count": 1, "snarled": {"_count": 1}}, "arriving": {"_count": 1, "by": {"_count": 1}}, "Freezing": {"_count": 1, "Charm": {"_count": 1}}, "the": {"_count": 1, "way": {"_count": 1}}, "of": {"_count": 2, "you": {"_count": 2}}, "handsome": {"_count": 1, "boy": {"_count": 1}}, "plan": {"_count": 3, "said": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "enough": {"_count": 4, "to": {"_count": 3}, "said": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 2, "": {"_count": 2}}, "thing": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "Dark": {"_count": 1, "wizard": {"_count": 1}}, "and": {"_count": 3, "cunning": {"_count": 2}, "energetic": {"_count": 1}}, "Granger": {"_count": 1, "said": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "one": {"_count": 1, "and": {"_count": 1}}, "little": {"_count": 1, "boy": {"_count": 1}}, "method": {"_count": 1, "of": {"_count": 1}}, "an": {"_count": 1, "useful": {"_count": 1}}, "to": {"_count": 2, "have": {"_count": 2}}, "murder": {"_count": 1, "as": {"_count": 1}}, "growled": {"_count": 1, "Hagrid": {"_count": 1}}, "ruse": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "booby": {"_count": 1, "trap": {"_count": 1}}, "I": {"_count": 1, "personally": {"_count": 1}}, "game": {"_count": 1, "": {"_count": 1}}, "dark": {"_count": 1, "eyes": {"_count": 1}}, "schemes": {"_count": 1, "": {"_count": 1}}, "speeches": {"_count": 1, "trying": {"_count": 1}}, "man": {"_count": 1, "after": {"_count": 1}}, "arrogant": {"_count": 1, "boys": {"_count": 1}}}, "engraved": {"_count": 10, "upon": {"_count": 2, "them": {"_count": 1}, "it": {"_count": 1}}, "trophy": {"_count": 1, "for": {"_count": 1}}, "just": {"_count": 1, "below": {"_count": 1}}, "with": {"_count": 2, "one": {"_count": 1}, "runes": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "there": {"_count": 1, "though": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "upon": {"_count": 630, "them": {"_count": 28, "Enter": {"_count": 1}, "or": {"_count": 1}, "and": {"_count": 3}, "staring": {"_count": 1}, "": {"_count": 5}, "offering": {"_count": 1}, "all": {"_count": 4}, "with": {"_count": 1}, "that": {"_count": 1}, "her": {"_count": 1}, "at": {"_count": 1}, "Hermione": {"_count": 1}, "as": {"_count": 1}, "like": {"_count": 1}, "spiraling": {"_count": 1}, "huddled": {"_count": 1}, "so": {"_count": 1}, "he": {"_count": 1}, "knocking": {"_count": 1}}, "all": {"_count": 3, "three": {"_count": 1}, "of": {"_count": 1}, "their": {"_count": 1}}, "the": {"_count": 170, "counter": {"_count": 1}, "recapture": {"_count": 1}, "mouth": {"_count": 1}, "battle": {"_count": 1}, "stone": {"_count": 2}, "walls": {"_count": 2}, "blackboard": {"_count": 1}, "Bulgarians": {"_count": 1}, "sobbing": {"_count": 1}, "sausages": {"_count": 1}, "desktop": {"_count": 2}, "desk": {"_count": 4}, "inhabitants": {"_count": 1}, "top": {"_count": 1}, "thing": {"_count": 1}, "castle": {"_count": 1}, "grounds": {"_count": 2}, "four": {"_count": 1}, "polished": {"_count": 1}, "skin": {"_count": 1}, "stars": {"_count": 1}, "remains": {"_count": 1}, "hillside": {"_count": 1}, "air": {"_count": 2}, "ground": {"_count": 5}, "two": {"_count": 1}, "continually": {"_count": 1}, "door": {"_count": 5}, "unconscious": {"_count": 1}, "information": {"_count": 1}, "perch": {"_count": 1}, "subject": {"_count": 1}, "Hufflepuff": {"_count": 1}, "Durmstrang": {"_count": 1}, "strange": {"_count": 1}, "food": {"_count": 1}, "parchment": {"_count": 3}, "tabletop": {"_count": 1}, "pair": {"_count": 1}, "hearthrug": {"_count": 1}, "blank": {"_count": 1}, "family": {"_count": 1}, "Weasleys": {"_count": 1}, "canvas": {"_count": 1}, "doorknob": {"_count": 2}, "motheaten": {"_count": 1}, "board": {"_count": 1}, "Dark": {"_count": 1}, "attacker": {"_count": 1}, "table": {"_count": 7}, "proceedings": {"_count": 1}, "floor": {"_count": 15}, "chair": {"_count": 1}, "ceiling": {"_count": 1}, "Room": {"_count": 1}, "Great": {"_count": 1}, "cold": {"_count": 3}, "shoulders": {"_count": 1}, "headmistresss": {"_count": 1}, "long": {"_count": 1}, "wand": {"_count": 2}, "jetblack": {"_count": 1}, "darkened": {"_count": 1}, "plinth": {"_count": 2}, "spindlelegged": {"_count": 1}, "silver": {"_count": 1}, "lines": {"_count": 1}, "earth": {"_count": 2}, "arms": {"_count": 1}, "place": {"_count": 1}, "unfortunate": {"_count": 1}, "room": {"_count": 1}, "thin": {"_count": 1}, "little": {"_count": 2}, "immensely": {"_count": 1}, "father": {"_count": 1}, "arm": {"_count": 1}, "desired": {"_count": 1}, "map": {"_count": 1}, "pureblood": {"_count": 1}, "cup": {"_count": 1}, "smooth": {"_count": 2}, "distant": {"_count": 1}, "dark": {"_count": 1}, "glassy": {"_count": 1}, "Mark": {"_count": 1}, "iron": {"_count": 1}, "second": {"_count": 1}, "crooked": {"_count": 1}, "darkhaired": {"_count": 1}, "Burrow": {"_count": 1}, "magically": {"_count": 1}, "elf": {"_count": 1}, "casing": {"_count": 1}, "pamphlet": {"_count": 1}, "shelf": {"_count": 1}, "church": {"_count": 1}, "frozen": {"_count": 2}, "wood": {"_count": 1}, "sofa": {"_count": 1}, "bottom": {"_count": 1}, "pool": {"_count": 1}, "cluttered": {"_count": 1}, "head": {"_count": 1}, "oldest": {"_count": 1}, "werewolf": {"_count": 1}, "wandmaker": {"_count": 1}, "grass": {"_count": 1}, "elfs": {"_count": 1}, "rocks": {"_count": 1}, "carpet": {"_count": 1}, "bed": {"_count": 2}, "blanket": {"_count": 1}, "bust": {"_count": 1}, "swinging": {"_count": 1}, "coiling": {"_count": 2}, "man": {"_count": 1}, "raised": {"_count": 1}, "rickety": {"_count": 1}, "forest": {"_count": 1}, "headmasters": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 41, "the": {"_count": 3}, "labeled": {"_count": 1}, "words": {"_count": 1}, "": {"_count": 10}, "more": {"_count": 1}, "and": {"_count": 4}, "which": {"_count": 1}, "was": {"_count": 1}, "vanished": {"_count": 1}, "flickering": {"_count": 1}, "his": {"_count": 1}, "once": {"_count": 1}, "of": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}, "past": {"_count": 1}, "in": {"_count": 3}, "for": {"_count": 1}, "yet": {"_count": 1}, "too": {"_count": 1}, "no": {"_count": 1}, "between": {"_count": 1}, "moaned": {"_count": 1}, "a": {"_count": 1}, "WIT": {"_count": 1}}, "your": {"_count": 9, "own": {"_count": 1}, "visage": {"_count": 1}, "forehead": {"_count": 1}, "aunt": {"_count": 1}, "doorstep": {"_count": 1}, "destination": {"_count": 1}, "shoulders": {"_count": 1}, "head": {"_count": 1}, "arrival": {"_count": 1}}, "Dumbledore": {"_count": 9, "": {"_count": 1}, "s": {"_count": 4}, "upon": {"_count": 1}, "and": {"_count": 1}, "like": {"_count": 1}, "the": {"_count": 1}}, "its": {"_count": 9, "originator": {"_count": 1}, "body": {"_count": 1}, "vast": {"_count": 1}, "arms": {"_count": 1}, "spindly": {"_count": 1}, "many": {"_count": 1}, "point": {"_count": 1}, "disarmed": {"_count": 1}, "loyalties": {"_count": 1}}, "my": {"_count": 4, "private": {"_count": 1}, "arm": {"_count": 1}, "sanity": {"_count": 1}, "authority": {"_count": 1}}, "Sir": {"_count": 1, "Cadogan": {"_count": 1}}, "him": {"_count": 55, "reaching": {"_count": 1}, "he": {"_count": 3}, "as": {"_count": 8}, "": {"_count": 7}, "Oh": {"_count": 1}, "a": {"_count": 1}, "by": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "but": {"_count": 3}, "with": {"_count": 1}, "panic": {"_count": 1}, "instead": {"_count": 1}, "for": {"_count": 1}, "why": {"_count": 1}, "than": {"_count": 1}, "I": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 2}, "and": {"_count": 3}, "something": {"_count": 1}, "trailing": {"_count": 1}, "Harry": {"_count": 2}, "lifted": {"_count": 1}, "forevermore": {"_count": 1}, "barely": {"_count": 1}, "all": {"_count": 1}, "so": {"_count": 1}, "There": {"_count": 1}, "his": {"_count": 1}, "upon": {"_count": 1}, "cruel": {"_count": 1}, "from": {"_count": 1}}, "shelves": {"_count": 1, "of": {"_count": 1}}, "hope": {"_count": 1, "happiness": {"_count": 1}}, "file": {"_count": 1, "of": {"_count": 1}}, "wave": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 17, "knees": {"_count": 1}, "person": {"_count": 1}, "piece": {"_count": 1}, "hind": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "clipboard": {"_count": 1}, "and": {"_count": 2}, "trunk": {"_count": 1}, "desk": {"_count": 1}, "prey": {"_count": 1}, "face": {"_count": 1}, "toadlike": {"_count": 1}, "was": {"_count": 1}, "either": {"_count": 1}, "white": {"_count": 1}}, "their": {"_count": 10, "necks": {"_count": 1}, "backs": {"_count": 1}, "clasped": {"_count": 1}, "shelves": {"_count": 1}, "three": {"_count": 1}, "work": {"_count": 1}, "prey": {"_count": 1}, "clearing": {"_count": 1}, "magic": {"_count": 1}, "bound": {"_count": 1}}, "a": {"_count": 22, "knot": {"_count": 1}, "scene": {"_count": 1}, "long": {"_count": 1}, "slip": {"_count": 1}, "worthier": {"_count": 1}, "pair": {"_count": 1}, "tree": {"_count": 1}, "point": {"_count": 1}, "happier": {"_count": 1}, "tray": {"_count": 1}, "desk": {"_count": 1}, "confidential": {"_count": 1}, "bottle": {"_count": 1}, "dirty": {"_count": 1}, "velvet": {"_count": 2}, "high": {"_count": 1}, "side": {"_count": 1}, "stone": {"_count": 1}, "deserted": {"_count": 1}, "small": {"_count": 1}, "basin": {"_count": 1}}, "his": {"_count": 42, "door": {"_count": 1}, "or": {"_count": 1}, "walking": {"_count": 1}, "scar": {"_count": 1}, "back": {"_count": 3}, "mutilated": {"_count": 1}, "ears": {"_count": 2}, "spade": {"_count": 1}, "head": {"_count": 2}, "suitability": {"_count": 1}, "arm": {"_count": 1}, "forehead": {"_count": 1}, "desk": {"_count": 2}, "face": {"_count": 4}, "robes": {"_count": 1}, "upper": {"_count": 1}, "knees": {"_count": 1}, "shoulder": {"_count": 1}, "bed": {"_count": 2}, "ruff": {"_count": 1}, "destination": {"_count": 1}, "crooked": {"_count": 1}, "chest": {"_count": 4}, "human": {"_count": 1}, "problems": {"_count": 1}, "and": {"_count": 1}, "handsome": {"_count": 1}, "own": {"_count": 1}, "pale": {"_count": 1}, "chin": {"_count": 1}}, "some": {"_count": 2, "hard": {"_count": 1}, "of": {"_count": 1}}, "Voldemort": {"_count": 7, "": {"_count": 1}, "and": {"_count": 3}, "shielding": {"_count": 1}, "at": {"_count": 1}, "who": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Harrys": {"_count": 11, "scar": {"_count": 1}, "wand": {"_count": 1}, "face": {"_count": 5}, "trainers": {"_count": 1}, "knee": {"_count": 1}, "shoulder": {"_count": 1}, "eardrums": {"_count": 1}}, "Krums": {"_count": 1, "face": {"_count": 1}}, "reflection": {"_count": 1, "that": {"_count": 1}}, "Winky": {"_count": 1, "who": {"_count": 1}}, "arrival": {"_count": 1, "at": {"_count": 1}}, "each": {"_count": 3, "student": {"_count": 1}, "other": {"_count": 1}, "of": {"_count": 1}}, "Harry": {"_count": 29, "": {"_count": 15}, "again": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "laughing": {"_count": 1}, "whose": {"_count": 1}, "lifted": {"_count": 1}, "dislike": {"_count": 1}, "what": {"_count": 1}, "and": {"_count": 1}, "once": {"_count": 1}, "showed": {"_count": 1}, "like": {"_count": 1}, "a": {"_count": 1}, "forcing": {"_count": 1}}, "which": {"_count": 11, "his": {"_count": 2}, "Harry": {"_count": 2}, "sure": {"_count": 1}, "a": {"_count": 1}, "Hedwigs": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "Hermione": {"_count": 1}, "we": {"_count": 1}}, "hundreds": {"_count": 2, "of": {"_count": 2}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "Fleurs": {"_count": 1, "shoulder": {"_count": 1}}, "resubmitting": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 4, "upturned": {"_count": 1}, "identical": {"_count": 1}, "ornate": {"_count": 1}, "outcrop": {"_count": 1}}, "this": {"_count": 4, "": {"_count": 1}, "dais": {"_count": 1}, "strange": {"_count": 1}, "boat": {"_count": 1}}, "to": {"_count": 5, "take": {"_count": 1}, "supervise": {"_count": 1}, "keep": {"_count": 1}, "appear": {"_count": 1}, "believe": {"_count": 1}}, "finding": {"_count": 1, "out": {"_count": 1}}, "Snape": {"_count": 2, "again": {"_count": 1}, "s": {"_count": 1}}, "Karkaroff": {"_count": 1, "and": {"_count": 1}}, "Cedric": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "Wormtails": {"_count": 1, "bleeding": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "forcing": {"_count": 1, "the": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "Professor": {"_count": 4, "Dumbledore": {"_count": 1}, "McGonagall": {"_count": 2}, "Umbridges": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Neville": {"_count": 1, "who": {"_count": 1}}, "maintaining": {"_count": 1, "the": {"_count": 1}}, "Rons": {"_count": 3, "essay": {"_count": 1}, "answer": {"_count": 1}, "and": {"_count": 1}}, "command": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 1, "at": {"_count": 1}}, "Katie": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "himself": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 2}}, "rickety": {"_count": 1, "wooden": {"_count": 1}}, "Hermiones": {"_count": 1, "shoulder": {"_count": 1}}, "probation": {"_count": 1, "and": {"_count": 1}}, "catching": {"_count": 1, "sight": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Magorian": {"_count": 1, "": {"_count": 1}}, "number": {"_count": 1, "ten": {"_count": 1}}, "Kreacher": {"_count": 1, "was": {"_count": 1}}, "themselves": {"_count": 1, "weirdly": {"_count": 1}}, "ice": {"_count": 1, "not": {"_count": 1}}, "you": {"_count": 7, "": {"_count": 2}, "before": {"_count": 1}, "however": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "when": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "Narcissas": {"_count": 1, "tearfilled": {"_count": 1}}, "taking": {"_count": 1, "possession": {"_count": 1}}, "Horaces": {"_count": 1, "hospitality": {"_count": 1}}, "accompanying": {"_count": 1, "Riddle": {"_count": 1}}, "throttling": {"_count": 1, "him": {"_count": 1}}, "Arnold": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 1, "with": {"_count": 1}}, "peoples": {"_count": 1, "sons": {"_count": 1}}, "arguing": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "Morfin": {"_count": 1, "": {"_count": 1}}, "Slughorns": {"_count": 1, "desk": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "destination": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Malfoy": {"_count": 1, "but": {"_count": 1}}, "Voldemorts": {"_count": 1, "handsome": {"_count": 1}}, "settling": {"_count": 1, "it": {"_count": 1}}, "Slughorn": {"_count": 2, "who": {"_count": 1}, "s": {"_count": 1}}, "creating": {"_count": 1, "a": {"_count": 1}}, "Luciuss": {"_count": 1, "fear": {"_count": 1}}, "Arthur": {"_count": 1, "Weasleys": {"_count": 1}}, "those": {"_count": 2, "nearest": {"_count": 1}, "who": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "herself": {"_count": 1, "to": {"_count": 1}}, "Bertram": {"_count": 1, "Aubrey": {"_count": 1}}, "certain": {"_count": 1, "dark": {"_count": 1}}, "matters": {"_count": 1, "well": {"_count": 1}}, "me": {"_count": 1, "in": {"_count": 1}}, "Dumbledores": {"_count": 2, "door": {"_count": 1}, "white": {"_count": 1}}, "something": {"_count": 4, "Harry": {"_count": 2}, "hard": {"_count": 1}, "private": {"_count": 1}}, "death": {"_count": 1, "and": {"_count": 1}}, "emptying": {"_count": 1, "the": {"_count": 1}}, "draining": {"_count": 1, "the": {"_count": 1}}, "four": {"_count": 1, "strangers": {"_count": 1}}, "Fleur": {"_count": 1, "who": {"_count": 1}}, "Hogwarts": {"_count": 1, "s": {"_count": 1}}, "together": {"_count": 1, "and": {"_count": 1}}, "Dawlish": {"_count": 1, "": {"_count": 1}}, "Pius": {"_count": 1, "Thicknesse": {"_count": 1}}, "three": {"_count": 1, "young": {"_count": 1}}, "Aunt": {"_count": 1, "Petunias": {"_count": 1}}, "Mundungus": {"_count": 1, "with": {"_count": 1}}, "Umbridge": {"_count": 1, "and": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermole": {"_count": 1}}, "Ron": {"_count": 1, "all": {"_count": 1}}, "row": {"_count": 1, "of": {"_count": 1}}, "fellow": {"_count": 1, "students": {"_count": 1}}, "Gellert": {"_count": 1, "Grindelwald": {"_count": 1}}, "The": {"_count": 1, "Tales": {"_count": 1}}, "piles": {"_count": 1, "of": {"_count": 1}}, "another": {"_count": 1, "peculiar": {"_count": 1}}, "Bellatrixs": {"_count": 1, "wrist": {"_count": 1}}, "Dobbys": {"_count": 1, "head": {"_count": 1}}, "Bill": {"_count": 2, "who": {"_count": 1}, "and": {"_count": 1}}, "Bogrod": {"_count": 1, "": {"_count": 1}}, "glittering": {"_count": 1, "jewels": {"_count": 1}}, "landing": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "three": {"_count": 1}}, "killing": {"_count": 1, "them": {"_count": 1}}, "Nagini": {"_count": 1, "wondering": {"_count": 1}}, "meeting": {"_count": 1, "Potters": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}}, "Enter": {"_count": 8, "stranger": {"_count": 1, "but": {"_count": 1}}, "said": {"_count": 3, "the": {"_count": 1}, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}}, "called": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "after": {"_count": 1, "Harry": {"_count": 1}}, "Without": {"_count": 1, "the": {"_count": 1}}}, "heed": {"_count": 2, "Of": {"_count": 1, "what": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}}, "awaits": {"_count": 3, "the": {"_count": 1, "sin": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}}, "sin": {"_count": 2, "of": {"_count": 1, "greed": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "greed": {"_count": 5, "For": {"_count": 1, "those": {"_count": 1}}, "and": {"_count": 2, "ambition": {"_count": 1}, "his": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "earn": {"_count": 7, "Must": {"_count": 1, "pay": {"_count": 1}}, "your": {"_count": 1, "House": {"_count": 1}}, "some": {"_count": 1, "extra": {"_count": 1}}, "a": {"_count": 2, "life": {"_count": 1}, "little": {"_count": 1}}, "himself": {"_count": 1, "a": {"_count": 1}}, "gold": {"_count": 1, "by": {"_count": 1}}}, "dearly": {"_count": 3, "in": {"_count": 1, "their": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "loved": {"_count": 1, "to": {"_count": 1}}}, "seek": {"_count": 23, "beneath": {"_count": 2, "our": {"_count": 2}}, "it": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 2, "where": {"_count": 2}}, "stays": {"_count": 1, "here": {"_count": 1}}, "him": {"_count": 2, "but": {"_count": 1}, "yyourself": {"_count": 1}}, "to": {"_count": 4, "hurt": {"_count": 1}, "kill": {"_count": 1}, "undo": {"_count": 1}, "run": {"_count": 1}}, "another": {"_count": 1, "onetoone": {"_count": 1}}, "the": {"_count": 1, "Deathly": {"_count": 1}}, "only": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "personal": {"_count": 1, "gain": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "Hallows": {"_count": 1, "with": {"_count": 1}}}, "floors": {"_count": 32, "A": {"_count": 1, "treasure": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "up": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "above": {"_count": 3, "there": {"_count": 1}, "now": {"_count": 1}, "and": {"_count": 1}}, "to": {"_count": 1, "leave": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 6, "several": {"_count": 1}, "started": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 1}, "moving": {"_count": 1}, "ceiling": {"_count": 1}}, "below": {"_count": 6, "": {"_count": 6}}, "this": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "himself": {"_count": 1}}, "a": {"_count": 1, "treasure": {"_count": 1}}, "when": {"_count": 1, "another": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}}, "treasure": {"_count": 29, "that": {"_count": 3, "was": {"_count": 2}, "they": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "said": {"_count": 2, "Bill": {"_count": 1}, "Luna": {"_count": 1}}, "the": {"_count": 1, "like": {"_count": 1}}, "detectors": {"_count": 1, "said": {"_count": 1}}, "trove": {"_count": 1, "of": {"_count": 1}}, "bonuses": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "proof": {"_count": 1, "that": {"_count": 1}}, "is": {"_count": 2, "there": {"_count": 2}}, "on": {"_count": 1, "earth": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "a": {"_count": 1, "masterpiece": {"_count": 1}}, "you": {"_count": 2, "must": {"_count": 1}, "will": {"_count": 1}}, "rose": {"_count": 1, "in": {"_count": 1}}, "they": {"_count": 1, "struggled": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "shoved": {"_count": 1}}}, "Thief": {"_count": 2, "you": {"_count": 2, "have": {"_count": 2}}}, "warned": {"_count": 51, "beware": {"_count": 2, "Of": {"_count": 1}, "yeah": {"_count": 1}}, "Harry": {"_count": 5, "": {"_count": 2}, "to": {"_count": 1}, "as": {"_count": 1}, "Potter": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "you": {"_count": 7, "you": {"_count": 1}, "Lupin": {"_count": 1}, "": {"_count": 2}, "Snivellus": {"_count": 1}, "Now": {"_count": 1}, "did": {"_count": 1}}, "Potter": {"_count": 2, "any": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 1, "warned": {"_count": 1}}, "me": {"_count": 5, "to": {"_count": 1}, "but": {"_count": 1}, "this": {"_count": 1}, "lie": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}, "Hermione": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 2, "Black": {"_count": 1}, "Voldemort": {"_count": 1}}, "him": {"_count": 5, "not": {"_count": 1}, "This": {"_count": 1}, "": {"_count": 1}, "against": {"_count": 2}}, "Hagrid": {"_count": 1, "not": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 4, "quietly": {"_count": 1}, "what": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "If": {"_count": 1, "you": {"_count": 1}}, "us": {"_count": 2, "YouKnowWho": {"_count": 1}, "tha": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "The": {"_count": 1, "might": {"_count": 1}}, "Sirius": {"_count": 1, "when": {"_count": 1}}, "Thieving": {"_count": 1, "is": {"_count": 1}}, "there": {"_count": 1, "might": {"_count": 1}}}, "beware": {"_count": 4, "Of": {"_count": 1, "finding": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "a": {"_count": 1, "redhaired": {"_count": 1}}, "yeah": {"_count": 1, "I": {"_count": 1}}}, "finding": {"_count": 60, "more": {"_count": 1, "than": {"_count": 1}}, "his": {"_count": 2, "way": {"_count": 1}, "tongue": {"_count": 1}}, "it": {"_count": 13, "difficult": {"_count": 2}, "which": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "theyll": {"_count": 1}, "hard": {"_count": 2}, "exceptionally": {"_count": 1}, "almost": {"_count": 1}, "easier": {"_count": 1}, "increasingly": {"_count": 1}, "very": {"_count": 1}}, "Flamel": {"_count": 2, "though": {"_count": 1}, "in": {"_count": 1}}, "the": {"_count": 9, "Stone": {"_count": 1}, "divide": {"_count": 1}, "Dark": {"_count": 1}, "scratching": {"_count": 1}, "Great": {"_count": 1}, "body": {"_count": 1}, "rest": {"_count": 1}, "page": {"_count": 1}, "Horcrux": {"_count": 1}}, "out": {"_count": 8, "what": {"_count": 4}, "how": {"_count": 1}, "that": {"_count": 2}, "would": {"_count": 1}}, "me": {"_count": 2, "here": {"_count": 1}, "and": {"_count": 1}}, "himself": {"_count": 3, "without": {"_count": 1}, "school": {"_count": 1}, "liked": {"_count": 1}}, "a": {"_count": 3, "partner": {"_count": 1}, "Galleon": {"_count": 1}, "bed": {"_count": 1}}, "everything": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 2, "aiding": {"_count": 1}, "saving": {"_count": 1}}, "my": {"_count": 1, "master": {"_count": 1}}, "one": {"_count": 1, "by": {"_count": 1}}, "anyone": {"_count": 1, "to": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "hard": {"_count": 1}}, "places": {"_count": 1, "their": {"_count": 1}}, "this": {"_count": 1, "more": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "still": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "another": {"_count": 1, "one": {"_count": 1}}, "these": {"_count": 1, "detentions": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Like": {"_count": 77, "I": {"_count": 4, "said": {"_count": 2}, "don": {"_count": 1}, "wanted": {"_count": 1}}, "this": {"_count": 1, "he": {"_count": 1}}, "Hagrid": {"_count": 2, "Fang": {"_count": 1}, "he": {"_count": 1}}, "everything": {"_count": 1, "else": {"_count": 1}}, "Harry": {"_count": 1, "she": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "why": {"_count": 1, "he": {"_count": 1}}, "what": {"_count": 7, "": {"_count": 6}, "kind": {"_count": 1}}, "a": {"_count": 5, "dog": {"_count": 1}, "bullet": {"_count": 1}, "big": {"_count": 1}, "weapon": {"_count": 1}, "tongue": {"_count": 1}}, "nearly": {"_count": 1, "everything": {"_count": 1}}, "Id": {"_count": 1, "never": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 5, "told": {"_count": 1}, "and": {"_count": 1}, "just": {"_count": 1}, "wont": {"_count": 1}, "cant": {"_count": 1}}, "father": {"_count": 1, "like": {"_count": 1}}, "the": {"_count": 7, "decorations": {"_count": 1}, "real": {"_count": 1}, "ability": {"_count": 1}, "fact": {"_count": 2}, "rest": {"_count": 1}, "monster": {"_count": 1}}, "wed": {"_count": 1, "say": {"_count": 1}}, "poor": {"_count": 1, "Eloise": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "them": {"_count": 1, "Potter": {"_count": 1}}, "my": {"_count": 2, "Dark": {"_count": 1}, "dad": {"_count": 1}}, "that": {"_count": 2, "": {"_count": 1}, "matters": {"_count": 1}}, "Dumbledore": {"_count": 2, "d": {"_count": 1}, "wanted": {"_count": 1}}, "every": {"_count": 1, "other": {"_count": 1}}, "Hermione": {"_count": 1, "he": {"_count": 1}}, "Fudge": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "earn": {"_count": 1}}, "who": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "she": {"_count": 1}}, "its": {"_count": 1, "going": {"_count": 1}}, "mother": {"_count": 1, "like": {"_count": 1}}, "those": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "tried": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "everybody": {"_count": 1, "else": {"_count": 1}}, "Barty": {"_count": 1, "Crouch": {"_count": 1}}, "her": {"_count": 1, "father": {"_count": 1}}, "Voldemort": {"_count": 1, "put": {"_count": 1}}, "MouldontheWold": {"_count": 1, "Godrics": {"_count": 1}}, "committing": {"_count": 1, "murder": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "hot": {"_count": 1}}, "Filch": {"_count": 1, "s": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "ell": {"_count": 1, "you": {"_count": 1}}, "Umbridge": {"_count": 1, "": {"_count": 1}}, "rain": {"_count": 1, "on": {"_count": 1}}}, "marble": {"_count": 116, "hall": {"_count": 3, "": {"_count": 1}, "waiting": {"_count": 1}, "of": {"_count": 1}}, "was": {"_count": 1, "surprised": {"_count": 1}}, "staircase": {"_count": 70, "facing": {"_count": 1}, "": {"_count": 24}, "inside": {"_count": 1}, "If": {"_count": 1}, "in": {"_count": 3}, "to": {"_count": 2}, "toward": {"_count": 3}, "when": {"_count": 2}, "holding": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 6}, "through": {"_count": 1}, "alone": {"_count": 1}, "together": {"_count": 1}, "cackling": {"_count": 1}, "with": {"_count": 2}, "Cedric": {"_count": 2}, "into": {"_count": 3}, "the": {"_count": 1}, "laughing": {"_count": 1}, "without": {"_count": 2}, "took": {"_count": 1}, "two": {"_count": 1}, "as": {"_count": 1}, "away": {"_count": 1}, "looking": {"_count": 1}, "again": {"_count": 1}, "whether": {"_count": 1}, "ahead": {"_count": 1}, "Glass": {"_count": 1}, "part": {"_count": 1}}, "which": {"_count": 1, "seemed": {"_count": 1}}, "building": {"_count": 1, "in": {"_count": 1}}, "steps": {"_count": 2, "they": {"_count": 1}, "leading": {"_count": 1}}, "and": {"_count": 2, "as": {"_count": 1}, "splintered": {"_count": 1}}, "it": {"_count": 1, "stopped": {"_count": 1}}, "ones": {"_count": 1, "": {"_count": 1}}, "stairs": {"_count": 4, "he": {"_count": 1}, "": {"_count": 3}}, "including": {"_count": 1, "what": {"_count": 1}}, "walls": {"_count": 1, "but": {"_count": 1}}, "bottom": {"_count": 1, "of": {"_count": 1}}, "headstone": {"_count": 3, "only": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "angel": {"_count": 1, "to": {"_count": 1}}, "floor": {"_count": 2, "so": {"_count": 1}, "his": {"_count": 1}}, "step": {"_count": 1, "into": {"_count": 1}}, "fireplace": {"_count": 2, "facing": {"_count": 1}, "as": {"_count": 1}}, "mantelpiece": {"_count": 2, "": {"_count": 1}, "surmounted": {"_count": 1}}, "white": {"_count": 2, "floating": {"_count": 1}, "and": {"_count": 1}}, "table": {"_count": 1, "standing": {"_count": 1}}, "tomb": {"_count": 4, "encasing": {"_count": 1}, "": {"_count": 1}, "an": {"_count": 1}, "in": {"_count": 1}}, "floors": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "or": {"_count": 1, "death": {"_count": 1}}, "hallway": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "woman": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "bust": {"_count": 1, "of": {"_count": 1}}, "banisters": {"_count": 1, "and": {"_count": 1}}}, "hundred": {"_count": 154, "more": {"_count": 1, "goblins": {"_count": 1}}, "and": {"_count": 44, "thirteen": {"_count": 7}, "fortytwo": {"_count": 1}, "fifty": {"_count": 11}, "seventy": {"_count": 2}, "sixtyfifth": {"_count": 1}, "fiftyeight": {"_count": 1}, "sixtyfive": {"_count": 1}, "twelve": {"_count": 3}, "fiftytwo": {"_count": 1}, "twentysix": {"_count": 1}, "seventytwo": {"_count": 1}, "twenty": {"_count": 3}, "ninety": {"_count": 1}, "twentysecond": {"_count": 1}, "thirty": {"_count": 3}, "sixty": {"_count": 1}, "sixtysecond": {"_count": 1}, "forty": {"_count": 2}, "seven": {"_count": 2}}, "but": {"_count": 1, "I": {"_count": 1}}, "years": {"_count": 7, "said": {"_count": 1}, "old": {"_count": 1}, "werent": {"_count": 1}, "": {"_count": 1}, "Lord": {"_count": 1}, "ago": {"_count": 1}, "of": {"_count": 1}}, "owls": {"_count": 3, "had": {"_count": 1}, "all": {"_count": 1}, "came": {"_count": 1}}, "ways": {"_count": 1, "of": {"_count": 1}}, "fat": {"_count": 1, "roast": {"_count": 1}}, "points": {"_count": 12, "up": {"_count": 2}, "apiece": {"_count": 1}, "for": {"_count": 1}, "right": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 2}, "the": {"_count": 1}}, "or": {"_count": 3, "so": {"_count": 3}}, "times": {"_count": 12, "louder": {"_count": 1}, "": {"_count": 3}, "its": {"_count": 1}, "this": {"_count": 1}, "Carpets": {"_count": 1}, "worse": {"_count": 1}, "more": {"_count": 1}, "to": {"_count": 1}, "already": {"_count": 1}, "so": {"_count": 1}}, "cups": {"_count": 1, "in": {"_count": 1}}, "percent": {"_count": 2, "sure": {"_count": 1}, "": {"_count": 1}}, "school": {"_count": 1, "rules": {"_count": 1}}, "galleons": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "miles": {"_count": 3, "at": {"_count": 1}, "away": {"_count": 1}, "from": {"_count": 1}}, "copies": {"_count": 2, "of": {"_count": 2}}, "stagecoaches": {"_count": 1, "awaited": {"_count": 1}}, "dementors": {"_count": 7, "their": {"_count": 1}, "at": {"_count": 1}, "were": {"_count": 4}, "": {"_count": 1}}, "either": {"_count": 1, "way": {"_count": 1}}, "steps": {"_count": 2, "two": {"_count": 1}, "he": {"_count": 1}}, "humans": {"_count": 1, "stuck": {"_count": 1}}, "of": {"_count": 4, "them": {"_count": 4}}, "people": {"_count": 1, "were": {"_count": 1}}, "thousand": {"_count": 7, "wizards": {"_count": 3}, "said": {"_count": 1}, "witches": {"_count": 1}, "disguises": {"_count": 1}, "Galleons": {"_count": 1}}, "Portkeys": {"_count": 1, "placed": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "veela": {"_count": 1, "were": {"_count": 1}}, "feet": {"_count": 1, "below": {"_count": 1}}, "sacks": {"_count": 1, "of": {"_count": 1}}, "horseless": {"_count": 1, "carriages": {"_count": 1}}, "slaves": {"_count": 1, "": {"_count": 1}}, "broomsticks": {"_count": 1, "was": {"_count": 1}}, "yards": {"_count": 4, "from": {"_count": 1}, "away": {"_count": 1}, "of": {"_count": 1}, "above": {"_count": 1}}, "little": {"_count": 1, "elves": {"_count": 1}}, "barrels": {"_count": 1, "of": {"_count": 1}}, "turkeys": {"_count": 1, "and": {"_count": 1}}, "smaller": {"_count": 2, "lanternlit": {"_count": 1}, "tables": {"_count": 1}}, "golden": {"_count": 2, "taps": {"_count": 1}, "baubles": {"_count": 1}}, "coins": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "solidlooking": {"_count": 1}}, "diffrent": {"_count": 1, "tribes": {"_count": 1}}, "girls": {"_count": 1, "Hermione": {"_count": 1}}, "rolls": {"_count": 1, "of": {"_count": 1}}, "glass": {"_count": 1, "spheres": {"_count": 1}}, "pieces": {"_count": 1, "but": {"_count": 1}}, "tiny": {"_count": 1, "pieces": {"_count": 1}}, "reasons": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "all": {"_count": 1}}, "Galleons": {"_count": 2, "he": {"_count": 1}, "a": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}}, "stools": {"_count": 3, "behind": {"_count": 1, "a": {"_count": 1}}, "while": {"_count": 1, "Neville": {"_count": 1}}, "serving": {"_count": 1, "the": {"_count": 1}}}, "counter": {"_count": 29, "scribbling": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "scattering": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 6, "rusty": {"_count": 1}, "bringing": {"_count": 1}, "pulled": {"_count": 1}, "handed": {"_count": 1}, "was": {"_count": 1}, "through": {"_count": 1}}, "before": {"_count": 1, "turning": {"_count": 1}}, "smoothing": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "ran": {"_count": 1}}, "was": {"_count": 2, "already": {"_count": 1}, "manned": {"_count": 1}}, "a": {"_count": 2, "vast": {"_count": 1}, "couple": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "Honeydukes": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}, "enchantments": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 1, "still": {"_count": 1}}, "clapped": {"_count": 1, "his": {"_count": 1}}, "jogging": {"_count": 1, "happily": {"_count": 1}}}, "scribbling": {"_count": 21, "in": {"_count": 1, "large": {"_count": 1}}, "away": {"_count": 2, "making": {"_count": 1}, "at": {"_count": 1}}, "it": {"_count": 2, "twice": {"_count": 1}, "down": {"_count": 1}}, "keenly": {"_count": 1, "on": {"_count": 1}}, "frantically": {"_count": 2, "": {"_count": 2}}, "upon": {"_count": 3, "her": {"_count": 2}, "some": {"_count": 1}}, "hunched": {"_count": 1, "over": {"_count": 1}}, "on": {"_count": 4, "her": {"_count": 2}, "a": {"_count": 2}}, "furiously": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "many": {"_count": 1}}, "a": {"_count": 1, "note": {"_count": 1}}}, "ledgers": {"_count": 1, "weighing": {"_count": 1, "coins": {"_count": 1}}}, "weighing": {"_count": 10, "coins": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "pile": {"_count": 1}}, "potion": {"_count": 1, "ingredients": {"_count": 1}}, "his": {"_count": 1, "chances": {"_count": 1}}, "on": {"_count": 1, "Harrys": {"_count": 1}}, "ceremony": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "money": {"_count": 1}}, "Quidditch": {"_count": 1, "Teams": {"_count": 1}}}, "examining": {"_count": 63, "precious": {"_count": 1, "stones": {"_count": 1}}, "the": {"_count": 23, "objects": {"_count": 1}, "fascinating": {"_count": 1}, "newspaper": {"_count": 1}, "cages": {"_count": 1}, "work": {"_count": 1}, "Firebolt": {"_count": 1}, "Goblet": {"_count": 1}, "map": {"_count": 1}, "microwave": {"_count": 1}, "tapestry": {"_count": 1}, "hand": {"_count": 1}, "paintwork": {"_count": 1}, "effect": {"_count": 1}, "thick": {"_count": 1}, "badge": {"_count": 1}, "many": {"_count": 1}, "various": {"_count": 1}, "engraving": {"_count": 1}, "enormous": {"_count": 1}, "walls": {"_count": 1}, "bleeding": {"_count": 1}, "locket": {"_count": 1}, "piles": {"_count": 1}}, "them": {"_count": 3, "Peeves": {"_count": 1}, "apparently": {"_count": 1}, "for": {"_count": 1}}, "Harrys": {"_count": 2, "robes": {"_count": 1}, "wand": {"_count": 1}}, "Scabbers": {"_count": 1, "closely": {"_count": 1}}, "her": {"_count": 3, "new": {"_count": 1}, "own": {"_count": 1}, "fat": {"_count": 1}}, "a": {"_count": 5, "tray": {"_count": 1}, "pack": {"_count": 1}, "fat": {"_count": 1}, "tapestry": {"_count": 1}, "thick": {"_count": 1}}, "it": {"_count": 7, "closely": {"_count": 2}, "": {"_count": 2}, "You": {"_count": 1}, "carefully": {"_count": 1}, "by": {"_count": 1}}, "his": {"_count": 7, "own": {"_count": 3}, "laces": {"_count": 1}, "silk": {"_count": 1}, "reflection": {"_count": 1}, "torn": {"_count": 1}}, "him": {"_count": 2, "critically": {"_count": 1}, "as": {"_count": 1}}, "an": {"_count": 1, "empty": {"_count": 1}}, "Harry": {"_count": 1, "again": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}, "Venus": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "appeared": {"_count": 1}}, "rotting": {"_count": 1, "entrails": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "its": {"_count": 1, "hilt": {"_count": 1}}, "Griphooks": {"_count": 1, "handdrawn": {"_count": 1}}}, "stones": {"_count": 17, "through": {"_count": 2, "eyeglasses": {"_count": 1}, "the": {"_count": 1}}, "bound": {"_count": 1, "in": {"_count": 1}}, "squirt": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 2, "passing": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 1, "turn": {"_count": 1}}, "flew": {"_count": 1, "upward": {"_count": 1}}, "fly": {"_count": 1, "upward": {"_count": 1}}, "glinted": {"_count": 1, "dully": {"_count": 1}}, "and": {"_count": 1, "twigs": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "smoothed": {"_count": 1, "by": {"_count": 1}}}, "eyeglasses": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "leading": {"_count": 86, "off": {"_count": 5, "the": {"_count": 5}}, "him": {"_count": 7, "over": {"_count": 2}, "to": {"_count": 2}, "toward": {"_count": 1}, "on": {"_count": 1}, "back": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 5, "outside": {"_count": 2}, "through": {"_count": 1}, "up": {"_count": 1}, "out": {"_count": 1}}, "onward": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 19, "way": {"_count": 15}, "tournament": {"_count": 1}, "rest": {"_count": 1}, "group": {"_count": 1}, "others": {"_count": 1}}, "to": {"_count": 14, "Nearly": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 10}, "something": {"_count": 1}}, "Harry": {"_count": 1, "into": {"_count": 1}}, "his": {"_count": 1, "friends": {"_count": 1}}, "by": {"_count": 1, "one": {"_count": 1}}, "her": {"_count": 4, "back": {"_count": 1}, "swiftly": {"_count": 1}, "husband": {"_count": 1}, "up": {"_count": 1}}, "a": {"_count": 3, "long": {"_count": 1}, "stunnedlooking": {"_count": 1}, "beautiful": {"_count": 1}}, "up": {"_count": 7, "to": {"_count": 6}, "from": {"_count": 1}}, "on": {"_count": 1, "points": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "from": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "downstairs": {"_count": 1, "on": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 1}, "to": {"_count": 1}}, "down": {"_count": 2, "to": {"_count": 2}}, "sixty": {"_count": 1, "points": {"_count": 1}}, "Ariana": {"_count": 1, "out": {"_count": 1}}, "questions": {"_count": 1, "about": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}}, "Morning": {"_count": 14, "said": {"_count": 2, "Hagrid": {"_count": 1}, "the": {"_count": 1}}, "Mum": {"_count": 1, "said": {"_count": 1}}, "all": {"_count": 1, "said": {"_count": 1}}, "which": {"_count": 1, "told": {"_count": 1}}, "Basil": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "Weasley": {"_count": 1, "said": {"_count": 1}}, "Arthur": {"_count": 2, "he": {"_count": 1}, "to": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "Reg": {"_count": 1, "": {"_count": 1}}, "Yaxley": {"_count": 1, "": {"_count": 1}}, "Albert": {"_count": 1, "said": {"_count": 1}}}, "free": {"_count": 197, "goblin": {"_count": 1, "": {"_count": 1}}, "": {"_count": 34, ".": {"_count": 24}, "!": {"_count": 7}, "?": {"_count": 3}}, "time": {"_count": 6, "in": {"_count": 3}, "to": {"_count": 1}, "either": {"_count": 1}, "this": {"_count": 1}}, "shot": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 20, "think": {"_count": 1}, "take": {"_count": 1}, "checkmate": {"_count": 1}, "leave": {"_count": 1}, "talk": {"_count": 1}, "go": {"_count": 4}, "to": {"_count": 1}, "call": {"_count": 1}, "seek": {"_count": 1}, "move": {"_count": 1}, "sit": {"_count": 1}, "dwell": {"_count": 1}, "all": {"_count": 1}, "choose": {"_count": 1}, "turn": {"_count": 1}, "extend": {"_count": 1}, "become": {"_count": 1}}, "free": {"_count": 1, "for": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "herself": {"_count": 1, "before": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 26, "charge": {"_count": 1}, "her": {"_count": 3}, "guilt": {"_count": 1}, "Rons": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 11}, "Madame": {"_count": 1}, "Mr": {"_count": 1}, "graves": {"_count": 1}, "Umbridges": {"_count": 1}, "Filch": {"_count": 1}, "Hermiones": {"_count": 1}, "snow": {"_count": 1}}, "Nimbus": {"_count": 1, "Two": {"_count": 1}}, "Thank": {"_count": 1, "you": {"_count": 1}}, "without": {"_count": 1, "meaning": {"_count": 1}}, "himself": {"_count": 6, "from": {"_count": 3}, "": {"_count": 2}, "while": {"_count": 1}}, "rein": {"_count": 4, "from": {"_count": 1}, "at": {"_count": 1}, "always": {"_count": 1}, "theyd": {"_count": 1}}, "will": {"_count": 3, "": {"_count": 2}, "how": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "sundaes": {"_count": 1, "every": {"_count": 1}}, "samples": {"_count": 1, "theres": {"_count": 1}}, "his": {"_count": 3, "other": {"_count": 1}, "arm": {"_count": 1}, "eyes": {"_count": 1}}, "and": {"_count": 6, "set": {"_count": 1}, "he": {"_count": 1}, "slowly": {"_count": 1}, "Dobby": {"_count": 1}, "unencumbered": {"_count": 1}, "oddly": {"_count": 1}}, "hand": {"_count": 13, "had": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 3}, "jumped": {"_count": 1}, "gingerly": {"_count": 1}, "he": {"_count": 1}, "was": {"_count": 1}, "groping": {"_count": 1}, "she": {"_count": 1}, "as": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 2}, "Hermione": {"_count": 1}}, "from": {"_count": 7, "his": {"_count": 1}, "Harrys": {"_count": 1}, "Lupin": {"_count": 1}, "its": {"_count": 1}, "graffiti": {"_count": 1}, "the": {"_count": 2}}, "was": {"_count": 1, "to": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "afternoon": {"_count": 1, "but": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "classroom": {"_count": 2, "where": {"_count": 1}, "on": {"_count": 1}}, "elf": {"_count": 3, "sir": {"_count": 1}, "and": {"_count": 2}}, "but": {"_count": 1, "it": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Muggles": {"_count": 1}}, "him": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 1, "knows": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "right": {"_count": 1, "hand": {"_count": 1}}, "whether": {"_count": 1, "they": {"_count": 1}}, "wasnt": {"_count": 2, "he": {"_count": 2}}, "yet": {"_count": 1, "having": {"_count": 1}}, "copy": {"_count": 1, "": {"_count": 1}}, "fist": {"_count": 1, "Harry": {"_count": 1}}, "moment": {"_count": 1, "devoted": {"_count": 1}}, "themselves": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "squeaked": {"_count": 1}}, "tickets": {"_count": 1, "whenever": {"_count": 1}}, "box": {"_count": 1, "of": {"_count": 1}}, "ice": {"_count": 1, "creams": {"_count": 1}}, "Spectrespecs": {"_count": 2, "inside": {"_count": 1}, "which": {"_count": 1}}, "period": {"_count": 4, "now": {"_count": 1}, "after": {"_count": 1}, "though": {"_count": 1}, "before": {"_count": 1}}, "periods": {"_count": 2, "were": {"_count": 1}, "after": {"_count": 1}}, "table": {"_count": 1, "and": {"_count": 1}}, "clutching": {"_count": 1, "in": {"_count": 1}}, "evenings": {"_count": 1, "so": {"_count": 1}}, "country": {"_count": 1, "": {"_count": 1}}, "agent": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "houseelf": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 1, "headed": {"_count": 1}}, "arm": {"_count": 1, "and": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "index": {"_count": 1, "finger": {"_count": 1}}, "Ron": {"_count": 1, "with": {"_count": 1}}, "astonished": {"_count": 1, "keeping": {"_count": 1}}, "Harrys": {"_count": 1, "foot": {"_count": 1}}, "fall": {"_count": 1, "spinning": {"_count": 1}}, "groaned": {"_count": 1, "the": {"_count": 1}}}, "key": {"_count": 32, "sir": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "slam": {"_count": 1, "the": {"_count": 1}}, "fumbling": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 3}, "finding": {"_count": 1}, "a": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "keeps": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "dodged": {"_count": 1, "them": {"_count": 1}}, "struggling": {"_count": 1, "in": {"_count": 1}}, "took": {"_count": 1, "flight": {"_count": 1}}, "keeps": {"_count": 1, "shrinking": {"_count": 1}}, "from": {"_count": 2, "her": {"_count": 1}, "its": {"_count": 1}}, "hanging": {"_count": 1, "in": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "ingredient": {"_count": 1, "a": {"_count": 1}}, "scrape": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "turn": {"_count": 1, "in": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}}, "emptying": {"_count": 14, "his": {"_count": 6, "pockets": {"_count": 1}, "Gringotts": {"_count": 1}, "drawers": {"_count": 1}, "mind": {"_count": 1}, "glass": {"_count": 1}, "school": {"_count": 1}}, "taking": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 3, "contents": {"_count": 2}, "basin": {"_count": 1}}, "them": {"_count": 1, "of": {"_count": 1}}, "Great": {"_count": 1, "Hall": {"_count": 1}}, "Harrys": {"_count": 1, "cauldron": {"_count": 1}}, "bottles": {"_count": 1, "and": {"_count": 1}}}, "scattering": {"_count": 12, "a": {"_count": 2, "handful": {"_count": 2}}, "needles": {"_count": 1, "everywhere": {"_count": 1}}, "chickens": {"_count": 1, "and": {"_count": 1}}, "bushes": {"_count": 1, "and": {"_count": 1}}, "beans": {"_count": 1, "over": {"_count": 1}}, "retreating": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 2, "debris": {"_count": 1}, "Death": {"_count": 1}}, "everyone": {"_count": 1, "with": {"_count": 1}}, "as": {"_count": 1, "Hagrid": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}}, "biscuits": {"_count": 5, "over": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "inside": {"_count": 1}}, "for": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 1, "temper": {"_count": 1}}}, "pile": {"_count": 84, "of": {"_count": 62, "rubies": {"_count": 1}, "tried": {"_count": 1}, "Chocolate": {"_count": 1}, "books": {"_count": 9}, "homework": {"_count": 4}, "packages": {"_count": 1}, "people": {"_count": 1}, "comics": {"_count": 1}, "gold": {"_count": 2}, "silver": {"_count": 1}, "ash": {"_count": 1}, "potatoes": {"_count": 1}, "parcels": {"_count": 1}, "cushions": {"_count": 2}, "spellbooks": {"_count": 1}, "fluffy": {"_count": 1}, "old": {"_count": 1}, "bat": {"_count": 1}, "bulging": {"_count": 1}, "rags": {"_count": 1}, "abandoned": {"_count": 1}, "freshly": {"_count": 2}, "clean": {"_count": 1}, "human": {"_count": 1}, "rat": {"_count": 1}, "gifts": {"_count": 1}, "Christmas": {"_count": 1}, "Ancient": {"_count": 1}, "golden": {"_count": 2}, "Cauldron": {"_count": 1}, "sheets": {"_count": 1}, "just": {"_count": 1}, "filthy": {"_count": 1}, "selfpeeling": {"_count": 1}, "them": {"_count": 1}, "earth": {"_count": 2}, "newspapers": {"_count": 1}, "wedding": {"_count": 1}, "presents": {"_count": 1}, "unconscious": {"_count": 1}, "documents": {"_count": 1}, "clothes": {"_count": 1}, "papers": {"_count": 1}, "utter": {"_count": 1}, "junk": {"_count": 2}}, "some": {"_count": 1, "of": {"_count": 1}}, "ketchup": {"_count": 1, "on": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}, "books": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "at": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 2}}, "one": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 2, "turned": {"_count": 1}, "The": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "beside": {"_count": 1, "a": {"_count": 1}}}, "rubies": {"_count": 10, "as": {"_count": 1, "big": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}, "blazing": {"_count": 1, "in": {"_count": 1}}, "set": {"_count": 1, "into": {"_count": 1}}, "fell": {"_count": 1, "down": {"_count": 1}}, "retreated": {"_count": 1, "into": {"_count": 1}}, "within": {"_count": 1, "were": {"_count": 1}}, "glistened": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 1, "its": {"_count": 1}}, "thats": {"_count": 1, "another": {"_count": 1}}}, "glowing": {"_count": 29, "coals": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "red": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "like": {"_count": 2, "the": {"_count": 1}, "jewels": {"_count": 1}}, "ash": {"_count": 1, "": {"_count": 1}}, "gold": {"_count": 2, "along": {"_count": 1}, "blazed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "brilliantly": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "pride": {"_count": 1}, "admiration": {"_count": 1}, "an": {"_count": 1}}, "more": {"_count": 1, "brightly": {"_count": 1}}, "look": {"_count": 2, "": {"_count": 1}, "batting": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "secret": {"_count": 1, "that": {"_count": 1}}, "Christmas": {"_count": 1, "baubles": {"_count": 1}}, "strip": {"_count": 1, "of": {"_count": 1}}, "chain": {"_count": 1, "": {"_count": 1}}, "oil": {"_count": 1, "lamp": {"_count": 1}}, "yellow": {"_count": 1, "light": {"_count": 1}}, "reputation": {"_count": 1, "with": {"_count": 1}}, "as": {"_count": 1, "green": {"_count": 1}}, "hairbrush": {"_count": 1, "Harry": {"_count": 1}}, "jewel": {"_count": 1, "bright": {"_count": 1}}}, "coals": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "closely": {"_count": 104, "": {"_count": 27, ".": {"_count": 27}}, "followed": {"_count": 8, "by": {"_count": 8}}, "watched": {"_count": 3, "by": {"_count": 1}, "": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "through": {"_count": 3, "his": {"_count": 3}}, "at": {"_count": 10, "Harry": {"_count": 3}, "this": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 3}, "Winky": {"_count": 1}, "his": {"_count": 1}}, "Penelope": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 4, "Crabbe": {"_count": 1}, "Mr": {"_count": 1}, "Ron": {"_count": 1}, "Kingsley": {"_count": 1}}, "to": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}}, "their": {"_count": 1, "knees": {"_count": 1}}, "still": {"_count": 1, "": {"_count": 1}}, "pursued": {"_count": 1, "by": {"_count": 1}}, "as": {"_count": 3, "Mostafa": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "together": {"_count": 4, "Troy": {"_count": 1}, "that": {"_count": 1}, "as": {"_count": 1}, "their": {"_count": 1}}, "upon": {"_count": 1, "Krums": {"_count": 1}}, "then": {"_count": 1, "moved": {"_count": 1}}, "around": {"_count": 2, "themselves": {"_count": 1}, "Lavender": {"_count": 1}}, "MadEyes": {"_count": 1, "heard": {"_count": 1}}, "I": {"_count": 1, "discovered": {"_count": 1}}, "cropped": {"_count": 1, "gray": {"_count": 1}}, "observed": {"_count": 1, "by": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 5, "you": {"_count": 1}, "Mrs": {"_count": 1}, "let": {"_count": 1}, "realized": {"_count": 1}, "then": {"_count": 1}}, "monitored": {"_count": 1, "given": {"_count": 1}}, "observing": {"_count": 1, "the": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "his": {"_count": 1, "brow": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "signs": {"_count": 1}, "Malfoy": {"_count": 1}}, "resembled": {"_count": 1, "that": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "than": {"_count": 1, "you": {"_count": 1}}, "related": {"_count": 1, "subject": {"_count": 1}}, "there": {"_count": 1, "have": {"_count": 1}}, "the": {"_count": 2, "scribbled": {"_count": 1}, "Riddle": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}}, "importantly": {"_count": 13, "throwing": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 2, "said": {"_count": 1}, "they": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "stretched": {"_count": 1, "its": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "Sunday": {"_count": 1}}, "but": {"_count": 1, "in": {"_count": 1}}, "Jus": {"_count": 1, "passin": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}}, "chest": {"_count": 196, "": {"_count": 74, ".": {"_count": 74}}, "with": {"_count": 6, "the": {"_count": 2}, "a": {"_count": 1}, "her": {"_count": 1}, "such": {"_count": 1}, "his": {"_count": 1}}, "I": {"_count": 1, "told": {"_count": 1}}, "swelled": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "of": {"_count": 8, "drawers": {"_count": 8}}, "expanded": {"_count": 1, "like": {"_count": 1}}, "to": {"_count": 3, "pound": {"_count": 1}, "his": {"_count": 1}, "constrict": {"_count": 1}}, "pocket": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}, "thrown": {"_count": 1, "out": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "He": {"_count": 1}}, "cutting": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 20, "trying": {"_count": 1}, "settled": {"_count": 1}, "threw": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 2}, "arms": {"_count": 1}, "said": {"_count": 1}, "all": {"_count": 1}, "shes": {"_count": 1}, "her": {"_count": 1}, "tucking": {"_count": 1}, "waited": {"_count": 1}, "she": {"_count": 1}, "now": {"_count": 1}, "forearm": {"_count": 1}, "then": {"_count": 1}, "there": {"_count": 1}, "looking": {"_count": 1}, "felt": {"_count": 1}}, "he": {"_count": 4, "keeled": {"_count": 1}, "did": {"_count": 1}, "took": {"_count": 1}, "froze": {"_count": 1}}, "leaving": {"_count": 1, "no": {"_count": 1}}, "rose": {"_count": 2, "and": {"_count": 2}}, "looking": {"_count": 1, "down": {"_count": 1}}, "kept": {"_count": 1, "squeaking": {"_count": 1}}, "encrusted": {"_count": 1, "with": {"_count": 1}}, "carefully": {"_count": 1, "on": {"_count": 1}}, "since": {"_count": 1, "last": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "a": {"_count": 2, "pair": {"_count": 1}, "circle": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 2}}, "his": {"_count": 3, "arms": {"_count": 1}, "outline": {"_count": 1}, "eyeballs": {"_count": 1}}, "almost": {"_count": 1, "immediately": {"_count": 1}}, "loosened": {"_count": 1, "slightly": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "heaving": {"_count": 2, "": {"_count": 2}}, "over": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "nudged": {"_count": 1}}, "the": {"_count": 3, "eyes": {"_count": 1}, "dread": {"_count": 1}, "same": {"_count": 1}}, "swelling": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 5, "heaving": {"_count": 1}, "like": {"_count": 1}, "rising": {"_count": 1}, "ticking": {"_count": 1}, "Kreacher": {"_count": 1}}, "height": {"_count": 1, "": {"_count": 1}}, "rising": {"_count": 2, "and": {"_count": 2}}, "she": {"_count": 2, "gave": {"_count": 1}, "gasped": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "holding": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "though": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "like": {"_count": 1, "some": {"_count": 1}}, "large": {"_count": 1, "letters": {"_count": 1}}, "might": {"_count": 1, "explode": {"_count": 1}}, "purred": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "raised": {"_count": 1}}, "searing": {"_count": 1, "his": {"_count": 1}}, "roaring": {"_count": 1, "in": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "He": {"_count": 1, "gave": {"_count": 1}}, "For": {"_count": 1, "a": {"_count": 1}}, "clogging": {"_count": 1, "his": {"_count": 1}}, "by": {"_count": 1, "Rita": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "surely": {"_count": 1}}, "afraid": {"_count": 1, "to": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "body": {"_count": 1}}, "patted": {"_count": 1, "Snape": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "contract": {"_count": 1, "her": {"_count": 1}}, "directly": {"_count": 1, "over": {"_count": 1}}}, "YouKnowWhat": {"_count": 2, "in": {"_count": 2, "vault": {"_count": 2}}}, "vault": {"_count": 57, "seven": {"_count": 4, "hundred": {"_count": 4}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 14}, "?": {"_count": 6}}, "that": {"_count": 2, "was": {"_count": 2}}, "at": {"_count": 6, "Gringotts": {"_count": 6}}, "but": {"_count": 2, "felt": {"_count": 1}, "well": {"_count": 1}}, "and": {"_count": 3, "": {"_count": 1}, "then": {"_count": 1}, "they": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 1}, "you": {"_count": 2}}, "with": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "Gringotts": {"_count": 1}, "question": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "only": {"_count": 1, "once": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "of": {"_count": 1, "Lestrange": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "melted": {"_count": 1, "away": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "Its": {"_count": 1, "beam": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "door": {"_count": 1, "and": {"_count": 1}}, "opened": {"_count": 1, "up": {"_count": 1}}}, "seven": {"_count": 104, "hundred": {"_count": 8, "and": {"_count": 6}, "ways": {"_count": 1}, "years": {"_count": 1}}, "gold": {"_count": 1, "Galleons": {"_count": 1}}, "bronze": {"_count": 1, "Knuts": {"_count": 1}}, "players": {"_count": 2, "describing": {"_count": 1}, "on": {"_count": 1}}, "oclock": {"_count": 12, "for": {"_count": 1}, "drew": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 1}, "news": {"_count": 1}, "tonight": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 1}, "in": {"_count": 1}, "all": {"_count": 1}}, "years": {"_count": 8, "": {"_count": 2}, "but": {"_count": 1}, "now": {"_count": 1}, "at": {"_count": 1}, "old": {"_count": 1}, "in": {"_count": 1}, "ago": {"_count": 1}}, "differently": {"_count": 1, "shaped": {"_count": 1}}, "will": {"_count": 1, "let": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "Muggles": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 6, "Lockharts": {"_count": 1}, "them": {"_count": 2}, "these": {"_count": 1}, "whom": {"_count": 1}, "the": {"_count": 1}}, "times": {"_count": 2, "a": {"_count": 1}, "each": {"_count": 1}}, "sets": {"_count": 1, "of": {"_count": 1}}, "superb": {"_count": 1, "broomsticks": {"_count": 1}}, "greenish": {"_count": 1, "blurs": {"_count": 1}}, "free": {"_count": 1, "Nimbus": {"_count": 1}}, "inches": {"_count": 1, "and": {"_count": 1}}, "Weasleys": {"_count": 1, "Harry": {"_count": 1}}, "people": {"_count": 1, "on": {"_count": 1}}, "secret": {"_count": 1, "tunnels": {"_count": 1}}, "it": {"_count": 1, "burnt": {"_count": 1}}, "Animagi": {"_count": 1, "this": {"_count": 1}}, "said": {"_count": 2, "Charlie": {"_count": 1}, "Harry": {"_count": 1}}, "defeated": {"_count": 1, "Bulgarian": {"_count": 1}}, "items": {"_count": 1, "I": {"_count": 1}}, "staircases": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "or": {"_count": 2, "eight": {"_count": 2}}, "keyholes": {"_count": 1, "in": {"_count": 1}}, "Sickles": {"_count": 1, "each": {"_count": 1}}, "girls": {"_count": 1, "were": {"_count": 1}}, "now": {"_count": 1, "sir": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "?": {"_count": 2}, "!": {"_count": 1}}, "locks": {"_count": 1, "fitted": {"_count": 1}}, "centuries": {"_count": 1, "its": {"_count": 1}}, "Department": {"_count": 1, "of": {"_count": 1}}, "Mollys": {"_count": 1, "making": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "minutes": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 2, "Ron": {"_count": 1}, "Potters": {"_count": 1}}, "o": {"_count": 1, "them": {"_count": 1}}, "owls": {"_count": 1, "landed": {"_count": 1}}, "turned": {"_count": 1, "left": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "I": {"_count": 1}}, "thestrals": {"_count": 1, "were": {"_count": 1}}, "stirs": {"_count": 1, "counterclockwise": {"_count": 1}}, "the": {"_count": 3, "most": {"_count": 3}}, "pieces": {"_count": 1, "": {"_count": 1}}, "Horcruxes": {"_count": 2, "": {"_count": 1}, "six": {"_count": 1}}, "dressed": {"_count": 1, "bespectacled": {"_count": 1}}, "Harrys": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "hours": {"_count": 1, "": {"_count": 1}}, "children": {"_count": 1, "two": {"_count": 1}}, "passages": {"_count": 1, "in": {"_count": 1}}}, "thirteen": {"_count": 37, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 1}, "!": {"_count": 1}}, "now": {"_count": 1, "please": {"_count": 1}}, "had": {"_count": 1, "no": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "was": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 13, "old": {"_count": 3}, "": {"_count": 3}, "said": {"_count": 1}, "Lord": {"_count": 1}, "since": {"_count": 1}, "repayment": {"_count": 1}, "ago": {"_count": 3}}, "people": {"_count": 4, "with": {"_count": 2}, "": {"_count": 2}}, "dine": {"_count": 1, "together": {"_count": 1}}, "whereas": {"_count": 1, "Black": {"_count": 1}}, "birthdays": {"_count": 1, "worth": {"_count": 1}}, "followed": {"_count": 1, "swiftly": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "us": {"_count": 1}}, "my": {"_count": 1, "excuses": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}}, "handing": {"_count": 52, "it": {"_count": 11, "back": {"_count": 2}, "to": {"_count": 7}, "out": {"_count": 1}, "across": {"_count": 1}}, "out": {"_count": 8, "sweets": {"_count": 1}, "course": {"_count": 1}, "signed": {"_count": 1}, "leaflets": {"_count": 1}, "schedules": {"_count": 1}, "detentions": {"_count": 1}, "Dream": {"_count": 1}, "copies": {"_count": 1}}, "Snape": {"_count": 1, "bandages": {"_count": 1}}, "the": {"_count": 4, "page": {"_count": 1}, "paper": {"_count": 1}, "book": {"_count": 1}, "note": {"_count": 1}}, "him": {"_count": 4, "a": {"_count": 1}, "wands": {"_count": 1}, "his": {"_count": 1}, "back": {"_count": 1}}, "them": {"_count": 3, "back": {"_count": 1}, "to": {"_count": 1}, "out": {"_count": 1}}, "Ron": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 2}}, "Harry": {"_count": 2, "back": {"_count": 1}, "and": {"_count": 1}}, "Krum": {"_count": 1, "back": {"_count": 1}}, "her": {"_count": 5, "the": {"_count": 2}, "something": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "me": {"_count": 1, "weapons": {"_count": 1}}, "back": {"_count": 2, "Hermiones": {"_count": 1}, "Rons": {"_count": 1}}, "over": {"_count": 5, "he": {"_count": 1}, "his": {"_count": 1}, "our": {"_count": 1}, "the": {"_count": 1}, "Gryffindors": {"_count": 1}}, "one": {"_count": 1, "to": {"_count": 1}}, "yourself": {"_count": 1, "over": {"_count": 1}}}, "Griphook": {"_count": 131, "": {"_count": 27, "!": {"_count": 5}, ".": {"_count": 21}, "?": {"_count": 1}}, "was": {"_count": 6, "yet": {"_count": 1}, "huddled": {"_count": 1}, "waiting": {"_count": 1}, "unexpectedly": {"_count": 1}, "on": {"_count": 1}, "gone": {"_count": 1}}, "toward": {"_count": 1, "one": {"_count": 1}}, "held": {"_count": 1, "the": {"_count": 1}}, "whistled": {"_count": 1, "and": {"_count": 1}}, "wasnt": {"_count": 1, "steering": {"_count": 1}}, "unlocked": {"_count": 1, "the": {"_count": 1}}, "importantly": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "him": {"_count": 1}}, "Gornuk": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "English": {"_count": 1}, "Harrys": {"_count": 2}}, "and": {"_count": 9, "the": {"_count": 2}, "Ollivander": {"_count": 1}, "with": {"_count": 1}, "you": {"_count": 1}, "Bill": {"_count": 1}, "what": {"_count": 1}, "most": {"_count": 1}, "Harry": {"_count": 1}}, "here": {"_count": 1, "told": {"_count": 1}}, "smugly": {"_count": 1, "and": {"_count": 1}}, "indifferently": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "goblin": {"_count": 1}}, "sank": {"_count": 1, "onto": {"_count": 1}}, "he": {"_count": 1, "whispered": {"_count": 1}}, "please": {"_count": 1, "He": {"_count": 1}}, "to": {"_count": 1, "Bellatrix": {"_count": 1}}, "who": {"_count": 4, "was": {"_count": 1}, "had": {"_count": 2}, "lunged": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "gently": {"_count": 1, "to": {"_count": 1}}, "merely": {"_count": 1, "whimpered": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "well": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "Ron": {"_count": 1}}, "first": {"_count": 4, "": {"_count": 4}}, "grunted": {"_count": 1, "thanks": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "approved": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "need": {"_count": 1}}, "had": {"_count": 6, "left": {"_count": 1}, "given": {"_count": 1}, "eyes": {"_count": 1}, "already": {"_count": 1}, "told": {"_count": 1}, "sunk": {"_count": 1}}, "flatly": {"_count": 1, "": {"_count": 1}}, "finally": {"_count": 1, "it": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "maddeningly": {"_count": 1, "": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "flushed": {"_count": 1, "angrily": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "if": {"_count": 1, "thats": {"_count": 1}}, "about": {"_count": 1, "whose": {"_count": 1}}, "we": {"_count": 2, "need": {"_count": 1}, "cannot": {"_count": 1}}, "relinquished": {"_count": 1, "him": {"_count": 1}}, "told": {"_count": 2, "them": {"_count": 1}, "Harry": {"_count": 1}}, "joined": {"_count": 1, "them": {"_count": 1}}, "would": {"_count": 1, "think": {"_count": 1}}, "happy": {"_count": 1, "was": {"_count": 1}}, "slipped": {"_count": 1, "beneath": {"_count": 1}}, "entered": {"_count": 1, "": {"_count": 1}}, "knew": {"_count": 1, "what": {"_count": 1}}, "were": {"_count": 1, "to": {"_count": 1}}, "spoke": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "piggyback": {"_count": 1, "under": {"_count": 1}}, "tightened": {"_count": 1, "his": {"_count": 1}}, "followed": {"_count": 1, "": {"_count": 1}}, "trotting": {"_count": 1, "invisibly": {"_count": 1}}, "jumped": {"_count": 1, "down": {"_count": 1}}, "shout": {"_count": 1, "No": {"_count": 1}}, "clambering": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "much": {"_count": 1}}, "but": {"_count": 1, "even": {"_count": 1}}, "handed": {"_count": 1, "them": {"_count": 1}}, "urged": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "then": {"_count": 1, "youll": {"_count": 1}}, "landed": {"_count": 1, "on": {"_count": 1}}, "clambered": {"_count": 1, "onto": {"_count": 1}}, "seized": {"_count": 1, "the": {"_count": 1}}}, "crammed": {"_count": 33, "all": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "pockets": {"_count": 1}}, "into": {"_count": 6, "boxes": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 2}, "my": {"_count": 1}, "a": {"_count": 1}}, "inside": {"_count": 2, "it": {"_count": 2}}, "with": {"_count": 8, "dustylooking": {"_count": 1}, "at": {"_count": 1}, "an": {"_count": 2}, "Zonkos": {"_count": 1}, "objects": {"_count": 1}, "cracked": {"_count": 1}, "figures": {"_count": 1}}, "them": {"_count": 1, "inside": {"_count": 1}}, "the": {"_count": 2, "last": {"_count": 1}, "broken": {"_count": 1}}, "his": {"_count": 1, "bowler": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "together": {"_count": 1}}, "it": {"_count": 2, "hungrily": {"_count": 1}, "into": {"_count": 1}}, "tables": {"_count": 1, "and": {"_count": 1}}, "themselves": {"_count": 1, "onto": {"_count": 1}}, "bin": {"_count": 1, "just": {"_count": 1}}, "beside": {"_count": 1, "Ginny": {"_count": 1}}, "together": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "floor": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "mysteriously": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "deaf": {"_count": 1, "until": {"_count": 1}}, "the": {"_count": 1, "Hufflepuffs": {"_count": 1}}, "and": {"_count": 1, "leaving": {"_count": 1}}, "failed": {"_count": 1, "to": {"_count": 1}}, "separated": {"_count": 1, "ingredients": {"_count": 1}}, "melted": {"_count": 1, "out": {"_count": 1}}}, "trusted": {"_count": 21, "me": {"_count": 2, "": {"_count": 2}}, "enough": {"_count": 1, "to": {"_count": 1}}, "Black": {"_count": 1, "beyond": {"_count": 1}}, "you": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "know": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "advisor": {"_count": 1, "": {"_count": 1}}, "shortcuts": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 3, "completely": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "never": {"_count": 1, "confided": {"_count": 1}}, "Dumbledore": {"_count": 1, "believed": {"_count": 1}}, "Bellatrix": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "matters": {"_count": 1}}, "with": {"_count": 1, "power": {"_count": 1}}}, "Moren": {"_count": 2, "my": {"_count": 1, "jobs": {"_count": 1}}, "me": {"_count": 1, "jobs": {"_count": 1}}}, "jobs": {"_count": 18, "worth": {"_count": 2, "ter": {"_count": 2}}, "and": {"_count": 1, "meanwhile": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "sir": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "why": {"_count": 1}}, "to": {"_count": 1, "deliver": {"_count": 1}}, "WE": {"_count": 1, "REGRET": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "jinxed": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "ter": {"_count": 1, "get": {"_count": 1}}, "she": {"_count": 1, "handed": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "narrow": {"_count": 71, "stone": {"_count": 3, "passageway": {"_count": 1}, "staircase": {"_count": 1}, "steps": {"_count": 1}}, "and": {"_count": 3, "shabby": {"_count": 1}, "set": {"_count": 1}, "he": {"_count": 1}}, "boxes": {"_count": 1, "piled": {"_count": 1}}, "path": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "rickety": {"_count": 1, "ones": {"_count": 1}}, "rows": {"_count": 1, "": {"_count": 1}}, "loopy": {"_count": 1, "writing": {"_count": 1}}, "corridor": {"_count": 2, "and": {"_count": 1}, "beyond": {"_count": 1}}, "winding": {"_count": 1, "earth": {"_count": 1}}, "escape": {"_count": 6, "and": {"_count": 1}, "Fred": {"_count": 1}, "though": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}}, "passageway": {"_count": 1, "to": {"_count": 1}}, "street": {"_count": 3, "Harry": {"_count": 1}, "lined": {"_count": 1}, "and": {"_count": 1}}, "flights": {"_count": 1, "of": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "gap": {"_count": 2, "between": {"_count": 2}}, "wooden": {"_count": 1, "staircase": {"_count": 1}}, "country": {"_count": 1, "lane": {"_count": 1}}, "passage": {"_count": 1, "after": {"_count": 1}}, "staircase": {"_count": 2, "and": {"_count": 1}, "upon": {"_count": 1}}, "spiral": {"_count": 1, "staircase": {"_count": 1}}, "low": {"_count": 1, "earthy": {"_count": 1}}, "slice": {"_count": 1, "of": {"_count": 1}}, "hallway": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "toothbrush": {"_count": 1, "mustache": {"_count": 1}}, "beam": {"_count": 4, "across": {"_count": 1}, "of": {"_count": 2}, "traveled": {"_count": 1}}, "beams": {"_count": 1, "of": {"_count": 1}}, "strip": {"_count": 2, "of": {"_count": 2}}, "miss": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "fissure": {"_count": 1, "in": {"_count": 1}}, "tunnel": {"_count": 1, "": {"_count": 1}}, "alleyway": {"_count": 2, "down": {"_count": 1}, "where": {"_count": 1}}, "handwriting": {"_count": 1, "was": {"_count": 1}}, "doorway": {"_count": 1, "onto": {"_count": 1}}, "window": {"_count": 1, "ledge": {"_count": 1}}, "strips": {"_count": 1, "of": {"_count": 1}}, "space": {"_count": 1, "between": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "cobbled": {"_count": 2, "street": {"_count": 2}}, "dirt": {"_count": 1, "track": {"_count": 1}}, "slanted": {"_count": 1, "writing": {"_count": 1}}, "rim": {"_count": 1, "of": {"_count": 1}}, "moonlit": {"_count": 1, "lane": {"_count": 1}}, "escapes": {"_count": 1, "from": {"_count": 1}}, "bank": {"_count": 1, "where": {"_count": 1}}, "road": {"_count": 1, "Christmas": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "Voldemort": {"_count": 1}}}, "passageway": {"_count": 41, "lit": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "hurtled": {"_count": 1, "along": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "sloped": {"_count": 1, "downward": {"_count": 1}}, "and": {"_count": 4, "saw": {"_count": 1}, "pointing": {"_count": 1}, "out": {"_count": 1}, "Hermione": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "to": {"_count": 3, "an": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "leading": {"_count": 3, "to": {"_count": 2}, "into": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "a": {"_count": 1}}, "within": {"_count": 1, "it": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "swung": {"_count": 1, "around": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "curved": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "led": {"_count": 1}}, "quite": {"_count": 1, "different": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "beyond": {"_count": 1, "which": {"_count": 1}}, "carving": {"_count": 1, "out": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "flaming": {"_count": 18, "torches": {"_count": 6, "": {"_count": 4}, "like": {"_count": 1}, "and": {"_count": 1}}, "red": {"_count": 2, "hair": {"_count": 1}, "if": {"_count": 1}}, "hair": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}, "orange": {"_count": 1, "streamers": {"_count": 1}}, "creatures": {"_count": 1, "that": {"_count": 1}}, "cabin": {"_count": 1, "was": {"_count": 1}}, "raptor": {"_count": 1, "that": {"_count": 1}}, "chimaera": {"_count": 1, "bore": {"_count": 1}}, "hat": {"_count": 1, "fell": {"_count": 1}}, "blur": {"_count": 1, "": {"_count": 1}}}, "torches": {"_count": 23, "": {"_count": 6, ".": {"_count": 6}}, "like": {"_count": 2, "the": {"_count": 1}, "those": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 6, "housed": {"_count": 1}, "lanterns": {"_count": 1}, "decorated": {"_count": 1}, "echoing": {"_count": 1}, "an": {"_count": 1}, "turned": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "brackets": {"_count": 2}}, "were": {"_count": 1, "lit": {"_count": 1}}, "the": {"_count": 1, "plain": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "flickering": {"_count": 1, "in": {"_count": 1}}}, "sloped": {"_count": 7, "steeply": {"_count": 1, "downward": {"_count": 1}}, "away": {"_count": 2, "with": {"_count": 1}, "into": {"_count": 1}}, "downward": {"_count": 1, "and": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "beside": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "steeply": {"_count": 5, "downward": {"_count": 2, "and": {"_count": 2}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "well": {"_count": 1, "you": {"_count": 1}}}, "downward": {"_count": 15, "and": {"_count": 5, "there": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "what": {"_count": 1}, "fixed": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "roaring": {"_count": 1}}, "he": {"_count": 1, "rose": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "but": {"_count": 1, "Malfoy": {"_count": 1}}, "slope": {"_count": 1, "": {"_count": 1}}, "startled": {"_count": 1, "for": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "railway": {"_count": 2, "tracks": {"_count": 1, "on": {"_count": 1}}, "station": {"_count": 1, "": {"_count": 1}}}, "tracks": {"_count": 29, "on": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 2, "them": {"_count": 2}}, "": {"_count": 6, ".": {"_count": 6}}, "through": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "Harry": {"_count": 1}, "looking": {"_count": 2}}, "horrified": {"_count": 1, "": {"_count": 1}}, "fell": {"_count": 1, "forward": {"_count": 1}}, "stopped": {"_count": 1, "muttering": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "watching": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 1, "familiar": {"_count": 1}}, "listening": {"_count": 1, "": {"_count": 1}}, "glittering": {"_count": 1, "on": {"_count": 1}}, "still": {"_count": 1, "etched": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "clearly": {"_count": 1, "affronted": {"_count": 1}}, "His": {"_count": 1, "hair": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "streaking": {"_count": 1, "the": {"_count": 1}}}, "hurtling": {"_count": 18, "up": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 5, "the": {"_count": 2}, "him": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 3, "the": {"_count": 3}}, "inside": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "back": {"_count": 2, "along": {"_count": 1}, "out": {"_count": 1}}, "through": {"_count": 1, "space": {"_count": 1}}, "straight": {"_count": 1, "toward": {"_count": 1}}}, "difficulty": {"_count": 61, "and": {"_count": 6, "were": {"_count": 1}, "got": {"_count": 1}, "wish": {"_count": 1}, "disappeared": {"_count": 1}, "the": {"_count": 1}, "after": {"_count": 1}}, "hiding": {"_count": 1, "his": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "locked": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 3, "kicked": {"_count": 1}, "suddenly": {"_count": 1}, "dragged": {"_count": 1}}, "getting": {"_count": 2, "them": {"_count": 1}, "on": {"_count": 1}}, "pulled": {"_count": 1, "Scabbers": {"_count": 1}}, "with": {"_count": 5, "him": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 2}, "nonverbal": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "your": {"_count": 1}}, "in": {"_count": 5, "understanding": {"_count": 1}, "getting": {"_count": 1}, "disbelieving": {"_count": 1}, "keeping": {"_count": 1}, "finding": {"_count": 1}}, "tied": {"_count": 1, "it": {"_count": 1}}, "owing": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "rush": {"_count": 1}}, "his": {"_count": 1, "throat": {"_count": 1}}, "managing": {"_count": 1, "her": {"_count": 1}}, "seeing": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "trembled": {"_count": 1, "for": {"_count": 1}}, "talking": {"_count": 1, "due": {"_count": 1}}, "has": {"_count": 1, "arisen": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "deciphering": {"_count": 1, "the": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "Harry": {"_count": 1, "turned": {"_count": 1}}, "to": {"_count": 1, "navigate": {"_count": 1}}, "understanding": {"_count": 1, "it": {"_count": 1}}, "whatsoever": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}, "extracting": {"_count": 1, "his": {"_count": 1}}}, "hurtled": {"_count": 37, "through": {"_count": 4, "a": {"_count": 2}, "the": {"_count": 2}}, "round": {"_count": 1, "tight": {"_count": 1}}, "along": {"_count": 1, "it": {"_count": 1}}, "toward": {"_count": 4, "the": {"_count": 3}, "him": {"_count": 1}}, "off": {"_count": 2, "to": {"_count": 1}, "along": {"_count": 1}}, "around": {"_count": 5, "the": {"_count": 2}, "a": {"_count": 2}, "another": {"_count": 1}}, "downward": {"_count": 1, "he": {"_count": 1}}, "after": {"_count": 1, "Ron": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "onto": {"_count": 1}}, "ever": {"_count": 1, "lower": {"_count": 1}}, "past": {"_count": 2, "the": {"_count": 1}, "Travers": {"_count": 1}}, "straight": {"_count": 1, "into": {"_count": 1}}, "back": {"_count": 3, "upstairs": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "drunkenly": {"_count": 1, "at": {"_count": 1}}, "whitefaced": {"_count": 1, "up": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "it": {"_count": 1}}}, "maze": {"_count": 33, "of": {"_count": 1, "twisting": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 16}, "?": {"_count": 1}}, "a": {"_count": 1, "single": {"_count": 1}}, "safely": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "was": {"_count": 2, "growing": {"_count": 1}, "threatening": {"_count": 1}}, "were": {"_count": 1, "luring": {"_count": 1}}, "and": {"_count": 1, "celebrating": {"_count": 1}}, "holding": {"_count": 1, "it": {"_count": 1}}, "preferably": {"_count": 1, "with": {"_count": 1}}, "tonight": {"_count": 1, "of": {"_count": 1}}, "before": {"_count": 1, "dinner": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "two": {"_count": 1, "months": {"_count": 1}}, "alive": {"_count": 1, "when": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}}, "twisting": {"_count": 35, "passages": {"_count": 1, "": {"_count": 1}}, "rivers": {"_count": 1, "and": {"_count": 1}}, "alleyway": {"_count": 1, "out": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "their": {"_count": 1}}, "screaming": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 8, "ears": {"_count": 1}, "thin": {"_count": 1}, "face": {"_count": 1}, "lopsided": {"_count": 1}, "finger": {"_count": 1}, "snakelike": {"_count": 1}, "enormous": {"_count": 1}, "hands": {"_count": 1}}, "and": {"_count": 3, "flailing": {"_count": 1}, "turning": {"_count": 2}}, "madly": {"_count": 2, "but": {"_count": 1}, "Ron": {"_count": 1}}, "the": {"_count": 1, "hem": {"_count": 1}}, "her": {"_count": 5, "fingers": {"_count": 2}, "hands": {"_count": 1}, "Gryffindor": {"_count": 1}, "wet": {"_count": 1}}, "old": {"_count": 1, "gargoyle": {"_count": 1}}, "around": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "live": {"_count": 1}}, "herself": {"_count": 1, "sinuously": {"_count": 1}}, "Kreachers": {"_count": 1, "wizened": {"_count": 1}}, "lane": {"_count": 1, "down": {"_count": 1}}, "path": {"_count": 1, "he": {"_count": 1}}, "itself": {"_count": 1, "out": {"_count": 1}}, "gracefully": {"_count": 1, "within": {"_count": 1}}}, "passages": {"_count": 12, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "were": {"_count": 1, "deserted": {"_count": 1}}, "theyll": {"_count": 1, "have": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "both": {"_count": 1}}, "in": {"_count": 2, "and": {"_count": 2}}, "sloping": {"_count": 1, "downward": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}}, "fork": {"_count": 33, "right": {"_count": 1, "left": {"_count": 1}}, "bread": {"_count": 1, "English": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "but": {"_count": 1, "didnt": {"_count": 1}}, "fall": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 2, "lightning": {"_count": 2}}, "and": {"_count": 6, "looking": {"_count": 1}, "go": {"_count": 1}, "dived": {"_count": 1}, "diving": {"_count": 1}, "knocking": {"_count": 1}, "began": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}, "falling": {"_count": 1, "onto": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "her": {"_count": 1, "fingers": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 2, "hands": {"_count": 1}, "heart": {"_count": 1}}, "Ron": {"_count": 1, "looked": {"_count": 1}}, "she": {"_count": 1, "seemed": {"_count": 1}}, "slid": {"_count": 1, "from": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "You": {"_count": 1, "know": {"_count": 1}}, "hover": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "thought": {"_count": 1, "that": {"_count": 1}}}, "impossible": {"_count": 74, "": {"_count": 14, ".": {"_count": 14}}, "for": {"_count": 6, "him": {"_count": 3}, "Harry": {"_count": 2}, "Potter": {"_count": 1}}, "to": {"_count": 30, "follow": {"_count": 1}, "catch": {"_count": 1}, "tell": {"_count": 5}, "find": {"_count": 2}, "run": {"_count": 1}, "say": {"_count": 1}, "plot": {"_count": 1}, "hold": {"_count": 1}, "fix": {"_count": 1}, "remove": {"_count": 1}, "negotiate": {"_count": 1}, "manufacture": {"_count": 1}, "Apparate": {"_count": 1}, "locate": {"_count": 1}, "get": {"_count": 1}, "kill": {"_count": 1}, "speak": {"_count": 1}, "make": {"_count": 2}, "track": {"_count": 1}, "decide": {"_count": 1}, "discern": {"_count": 1}, "cling": {"_count": 1}, "see": {"_count": 1}, "keep": {"_count": 1}}, "otherwise": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 7, "Black": {"_count": 1}, "I": {"_count": 1}, "less": {"_count": 1}, "there": {"_count": 1}, "Ron": {"_count": 1}, "nobody": {"_count": 1}, "he": {"_count": 1}}, "schedule": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 1, "father": {"_count": 1}}, "in": {"_count": 1, "helping": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Madame": {"_count": 1}, "Dobby": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "hope": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "once": {"_count": 1, "they": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "nobody": {"_count": 1, "had": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}}, "rattling": {"_count": 41, "cart": {"_count": 1, "seemed": {"_count": 1}}, "over": {"_count": 1, "an": {"_count": 1}}, "with": {"_count": 1, "gold": {"_count": 1}}, "coats": {"_count": 1, "of": {"_count": 1}}, "pounded": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "bars": {"_count": 1}}, "breath": {"_count": 5, "as": {"_count": 1}, "from": {"_count": 1}, "": {"_count": 1}, "like": {"_count": 1}, "he": {"_count": 1}}, "doorknob": {"_count": 1, "apprehensively": {"_count": 1}}, "along": {"_count": 2, "in": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 2, "pockets": {"_count": 1}, "box": {"_count": 1}}, "noise": {"_count": 4, "reached": {"_count": 1}, "behind": {"_count": 1}, "they": {"_count": 1}, "was": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "inside": {"_count": 1}}, "breaths": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 2, "shaking": {"_count": 1}, "her": {"_count": 1}}, "writing": {"_count": 1, "desk": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "armfuls": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 1, "their": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "gasp": {"_count": 2, "and": {"_count": 1}, "rolled": {"_count": 1}}, "guttural": {"_count": 1, "noises": {"_count": 1}}}, "stung": {"_count": 12, "as": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "then": {"_count": 1}}, "and": {"_count": 2, "itched": {"_count": 1}, "watered": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "Sirius": {"_count": 1, "so": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}}, "passage": {"_count": 67, "and": {"_count": 3, "twisted": {"_count": 1}, "hurried": {"_count": 1}, "his": {"_count": 1}}, "wall": {"_count": 2, "Hagrid": {"_count": 1}, "heard": {"_count": 1}}, "to": {"_count": 7, "the": {"_count": 6}, "Honeydukes": {"_count": 1}}, "but": {"_count": 2, "as": {"_count": 1}, "he": {"_count": 1}}, "where": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "from": {"_count": 1, "both": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "That": {"_count": 1, "Peter": {"_count": 1}}, "hoping": {"_count": 1, "against": {"_count": 1}}, "outside": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "led": {"_count": 1}}, "after": {"_count": 1, "Toms": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "twisted": {"_count": 1, "and": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "was": {"_count": 4, "there": {"_count": 1}, "a": {"_count": 1}, "full": {"_count": 1}, "climbing": {"_count": 1}}, "into": {"_count": 2, "Honeydukes": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "felt": {"_count": 1}}, "a": {"_count": 1, "door": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "Support": {"_count": 1, "CEDRIC": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "beyond": {"_count": 1, "it": {"_count": 1}}, "turned": {"_count": 1, "left": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "loomed": {"_count": 1, "larger": {"_count": 1}}, "with": {"_count": 1, "Mr": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "leading": {"_count": 1, "to": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "opening": {"_count": 1, "while": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "gliding": {"_count": 1}}, "ahead": {"_count": 1, "The": {"_count": 1}}, "the": {"_count": 1, "memory": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}}, "plunged": {"_count": 30, "even": {"_count": 1, "deeper": {"_count": 1}}, "it": {"_count": 2, "into": {"_count": 1}, "straight": {"_count": 1}}, "off": {"_count": 1, "into": {"_count": 1}}, "into": {"_count": 4, "a": {"_count": 1}, "total": {"_count": 2}, "fresh": {"_count": 1}}, "the": {"_count": 3, "Mandrake": {"_count": 1}, "glass": {"_count": 1}, "goblet": {"_count": 1}}, "his": {"_count": 7, "hand": {"_count": 4}, "own": {"_count": 1}, "face": {"_count": 2}}, "recklessly": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 1, "hand": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "on": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "immediately": {"_count": 1, "into": {"_count": 1}}, "straight": {"_count": 1, "into": {"_count": 1}}, "after": {"_count": 2, "them": {"_count": 2}}, "her": {"_count": 1, "arm": {"_count": 1}}, "toward": {"_count": 1, "Malfoy": {"_count": 1}}, "Harry": {"_count": 1, "threw": {"_count": 1}}}, "deeper": {"_count": 54, "passing": {"_count": 1, "an": {"_count": 1}}, "now": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 10, "deeper": {"_count": 8}, "darker": {"_count": 1}, "nastier": {"_count": 1}}, "into": {"_count": 21, "the": {"_count": 14}, "his": {"_count": 6}, "Harrys": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "below": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 2, "his": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "out": {"_count": 1, "toward": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "shade": {"_count": 2, "of": {"_count": 2}}, "with": {"_count": 1, "another": {"_count": 1}}, "stinging": {"_count": 1, "and": {"_count": 1}}, "scarlet": {"_count": 1, "when": {"_count": 1}}, "more": {"_count": 1, "mature": {"_count": 1}}, "scarring": {"_count": 1, "than": {"_count": 1}}, "dip": {"_count": 1, "in": {"_count": 1}}, "snow": {"_count": 1, "than": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "sank": {"_count": 1}}}, "underground": {"_count": 27, "lake": {"_count": 3, "where": {"_count": 1}, "and": {"_count": 1}, "or": {"_count": 1}}, "ravine": {"_count": 1, "and": {"_count": 1}}, "harbor": {"_count": 1, "where": {"_count": 1}}, "vault": {"_count": 1, "at": {"_count": 1}}, "vaults": {"_count": 1, "by": {"_count": 1}}, "tunnels": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "room": {"_count": 3, "with": {"_count": 2}, "and": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "passage": {"_count": 2, "Support": {"_count": 1}, "like": {"_count": 1}}, "for": {"_count": 1, "there": {"_count": 1}}, "more": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "train": {"_count": 1, "back": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "cavern": {"_count": 1, "knew": {"_count": 1}}, "public": {"_count": 1, "toilet": {"_count": 1}}, "prison": {"_count": 1, "as": {"_count": 1}}, "stuff": {"_count": 1, "right": {"_count": 1}}, "shore": {"_count": 1, "and": {"_count": 1}}}, "lake": {"_count": 159, "where": {"_count": 4, "huge": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 47, ".": {"_count": 42}, "?": {"_count": 2}, "!": {"_count": 3}}, "which": {"_count": 4, "was": {"_count": 2}, "Harry": {"_count": 1}, "meant": {"_count": 1}}, "like": {"_count": 1, "chilled": {"_count": 1}}, "froze": {"_count": 1, "solid": {"_count": 1}}, "and": {"_count": 12, "flopped": {"_count": 1}, "forced": {"_count": 1}, "pushed": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "find": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 3}, "reached": {"_count": 1}, "Harry": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "saw": {"_count": 1}}, "stood": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 5, "castle": {"_count": 1}, "satingreen": {"_count": 1}, "drop": {"_count": 1}, "dragon": {"_count": 1}, "shack": {"_count": 1}}, "rose": {"_count": 1, "the": {"_count": 1}}, "alike": {"_count": 1, "turned": {"_count": 1}}, "probably": {"_count": 1, "said": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "toward": {"_count": 3, "them": {"_count": 1}, "the": {"_count": 2}}, "his": {"_count": 2, "heart": {"_count": 1}, "eyes": {"_count": 1}}, "was": {"_count": 4, "coming": {"_count": 1}, "very": {"_count": 1}, "once": {"_count": 1}, "no": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 6, "Hagrid": {"_count": 1}, "the": {"_count": 4}, "Ginny": {"_count": 1}}, "in": {"_count": 6, "this": {"_count": 1}, "the": {"_count": 5}}, "rather": {"_count": 1, "than": {"_count": 1}}, "He": {"_count": 1, "looked": {"_count": 1}}, "a": {"_count": 1, "whirlpool": {"_count": 1}}, "were": {"_count": 1, "out": {"_count": 1}}, "trying": {"_count": 1, "all": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "sometimes": {"_count": 1, "to": {"_count": 1}}, "tomorrow": {"_count": 1, "right": {"_count": 1}}, "sir": {"_count": 1, "gillyweed": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 2, "showing": {"_count": 1}, "attracting": {"_count": 1}}, "water": {"_count": 3, "felt": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 1, "but": {"_count": 1}}, "bottom": {"_count": 2, "": {"_count": 1}, "drifting": {"_count": 1}}, "wonderful": {"_count": 1, "cold": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "Hermione": {"_count": 1, "muttered": {"_count": 1}}, "Potter": {"_count": 1, "I": {"_count": 1}}, "an": {"_count": 1, "Karkus": {"_count": 1}}, "roarin": {"_count": 1, "at": {"_count": 1}}, "tobogganing": {"_count": 1, "and": {"_count": 1}}, "Snape": {"_count": 1, "followed": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "edge": {"_count": 1, "": {"_count": 1}}, "hoping": {"_count": 1, "they": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "so": {"_count": 2, "vast": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 3, "get": {"_count": 1}, "scoop": {"_count": 1}, "the": {"_count": 1}}, "teeming": {"_count": 1, "with": {"_count": 1}}, "bringing": {"_count": 1, "it": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "bearing": {"_count": 1, "most": {"_count": 1}}, "seemed": {"_count": 1, "like": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "taking": {"_count": 1, "in": {"_count": 1}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "surely": {"_count": 1, "impossible": {"_count": 1}}, "deep": {"_count": 1, "blue": {"_count": 1}}, "The": {"_count": 1, "events": {"_count": 1}}, "or": {"_count": 1, "here": {"_count": 1}}, "sliding": {"_count": 1, "beneath": {"_count": 1}}, "crashing": {"_count": 1, "like": {"_count": 1}}}, "stalactites": {"_count": 3, "and": {"_count": 2, "stalagmites": {"_count": 1}, "the": {"_count": 1}}, "flying": {"_count": 1, "ever": {"_count": 1}}}, "stalagmites": {"_count": 1, "grew": {"_count": 1, "from": {"_count": 1}}}, "whats": {"_count": 197, "the": {"_count": 21, "difference": {"_count": 2}, "platform": {"_count": 1}, "matter": {"_count": 4}, "story": {"_count": 1}, "use": {"_count": 1}, "problem": {"_count": 1}, "point": {"_count": 6}, "mirror": {"_count": 1}, "Order": {"_count": 1}, "message": {"_count": 1}, "plan": {"_count": 1}, "Dark": {"_count": 1}}, "Quidditch": {"_count": 1, "": {"_count": 1}}, "curious": {"_count": 1, "": {"_count": 1}}, "odd": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 3, "for": {"_count": 3}}, "wrong": {"_count": 8, "with": {"_count": 5}, "": {"_count": 3}}, "he": {"_count": 6, "after": {"_count": 1}, "doing": {"_count": 2}, "up": {"_count": 1}, "like": {"_count": 1}, "telling": {"_count": 1}}, "interesting": {"_count": 1, "about": {"_count": 1}}, "gotten": {"_count": 2, "into": {"_count": 2}}, "guarding": {"_count": 2, "the": {"_count": 2}}, "that": {"_count": 15, "": {"_count": 4}, "pointy": {"_count": 1}, "supposed": {"_count": 4}, "at": {"_count": 1}, "on": {"_count": 2}, "theyre": {"_count": 1}, "I": {"_count": 1}, "mean": {"_count": 1}}, "been": {"_count": 6, "going": {"_count": 5}, "happen": {"_count": 1}}, "left": {"_count": 3, "of": {"_count": 3}}, "bin": {"_count": 1, "killin": {"_count": 1}}, "happening": {"_count": 7, "as": {"_count": 1}, "at": {"_count": 3}, "about": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 4, "this": {"_count": 3}, "the": {"_count": 1}}, "bothering": {"_count": 1, "you": {"_count": 1}}, "up": {"_count": 5, "with": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 2}}, "inside": {"_count": 3, "it": {"_count": 3}}, "going": {"_count": 33, "on": {"_count": 30}, "to": {"_count": 3}}, "needed": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 4, "to": {"_count": 1}, "matter": {"_count": 2}, "doing": {"_count": 1}}, "this": {"_count": 7, "": {"_count": 1}, "rubbish": {"_count": 1}, "codswallop": {"_count": 1}, "got": {"_count": 2}, "now": {"_count": 1}, "stuff": {"_count": 1}}, "normal": {"_count": 1, "for": {"_count": 1}}, "happened": {"_count": 19, "to": {"_count": 8}, "shell": {"_count": 1}, "": {"_count": 6}, "I": {"_count": 1}, "yet": {"_count": 1}, "is": {"_count": 1}, "if": {"_count": 1}}, "for": {"_count": 2, "dinner": {"_count": 1}, "eating": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "coming": {"_count": 3, "shes": {"_count": 1}, "in": {"_count": 1}, "next": {"_count": 1}}, "ailing": {"_count": 1, "you": {"_count": 1}}, "cornin": {"_count": 1, "in": {"_count": 1}}, "always": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "those": {"_count": 1}}, "Dumbledore": {"_count": 1, "going": {"_count": 1}}, "Vol": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "portrait": {"_count": 1}}, "pulling": {"_count": 1, "the": {"_count": 1}}, "waiting": {"_count": 2, "out": {"_count": 2}}, "really": {"_count": 1, "happening": {"_count": 1}}, "hit": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "this": {"_count": 1}, "charge": {"_count": 1}}, "Hagrid": {"_count": 1, "attempting": {"_count": 1}}, "more": {"_count": 1, "someones": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 2, "special": {"_count": 1}, "impressive": {"_count": 1}}, "happen": {"_count": 1, "no": {"_count": 1}}, "The": {"_count": 1, "Atrium": {"_count": 1}}, "causing": {"_count": 1, "all": {"_count": 1}}, "your": {"_count": 2, "wand": {"_count": 1}, "excuse": {"_count": 1}}, "there": {"_count": 2, "first": {"_count": 1}, "": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "name": {"_count": 1}}, "new": {"_count": 1, "with": {"_count": 1}}, "thediff": {"_count": 1, "": {"_count": 1}}}, "stalagmite": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "stalactite": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Stalagmites": {"_count": 1, "got": {"_count": 1, "an": {"_count": 1}}}, "\u2018m": {"_count": 1, "in": {"_count": 1, "it": {"_count": 1}}}, "gonna": {"_count": 12, "be": {"_count": 4, "sick": {"_count": 1}, "spectacular": {"_count": 1}, "cornin": {"_count": 1}, "rewarded": {"_count": 1}}, "do": {"_count": 1, "tonight": {"_count": 1}}, "try": {"_count": 1, "an": {"_count": 1}}, "split": {"_count": 1, "inter": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "come": {"_count": 1, "down": {"_count": 1}}, "tell": {"_count": 1, "yeh": {"_count": 1}}, "let": {"_count": 1, "Madam": {"_count": 1}}, "fine": {"_count": 1, "me": {"_count": 1}}}, "lean": {"_count": 9, "against": {"_count": 3, "the": {"_count": 3}}, "forward": {"_count": 1, "at": {"_count": 1}}, "closer": {"_count": 2, "to": {"_count": 2}}, "and": {"_count": 1, "muscular": {"_count": 1}}, "through": {"_count": 1, "you": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}}, "unlocked": {"_count": 14, "the": {"_count": 5, "door": {"_count": 3}, "cavernous": {"_count": 1}, "cafe": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "door": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "door": {"_count": 1}}, "and": {"_count": 1, "opened": {"_count": 1}}, "classroom": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "Bathildas": {"_count": 1, "memories": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}}, "smoke": {"_count": 76, "came": {"_count": 1, "billowing": {"_count": 1}}, "and": {"_count": 7, "a": {"_count": 1}, "Harry": {"_count": 1}, "was": {"_count": 1}, "Marietta": {"_count": 1}, "whirring": {"_count": 1}, "heat": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 13}, "?": {"_count": 1}}, "while": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "that": {"_count": 3, "smelled": {"_count": 1}, "thing": {"_count": 1}, "thickened": {"_count": 1}}, "was": {"_count": 1, "hovering": {"_count": 1}}, "issuing": {"_count": 2, "from": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "rather": {"_count": 1, "frail": {"_count": 1}}, "wafting": {"_count": 1, "from": {"_count": 1}}, "etched": {"_count": 1, "against": {"_count": 1}}, "the": {"_count": 2, "ghost": {"_count": 1}, "water": {"_count": 1}}, "rings": {"_count": 1, "across": {"_count": 1}}, "blackened": {"_count": 1, "brick": {"_count": 1}}, "rising": {"_count": 1, "from": {"_count": 1}}, "everything": {"_count": 1, "was": {"_count": 1}}, "feebler": {"_count": 1, "than": {"_count": 1}}, "hung": {"_count": 2, "in": {"_count": 1}, "over": {"_count": 1}}, "obscured": {"_count": 1, "him": {"_count": 1}}, "vanished": {"_count": 1, "as": {"_count": 1}}, "coiling": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "issued": {"_count": 3, "from": {"_count": 3}}, "closely": {"_count": 1, "his": {"_count": 1}}, "without": {"_count": 1, "the": {"_count": 1}}, "serpent": {"_count": 1, "however": {"_count": 1}}, "serpents": {"_count": 1, "grew": {"_count": 1}}, "furled": {"_count": 1, "from": {"_count": 1}}, "unfurled": {"_count": 1, "themselves": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 2, "cleared": {"_count": 1}, "reformed": {"_count": 1}}, "from": {"_count": 1, "Hagrids": {"_count": 1}}, "were": {"_count": 1, "more": {"_count": 1}}, "spiraled": {"_count": 1, "into": {"_count": 1}}, "then": {"_count": 1, "all": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "His": {"_count": 1, "hair": {"_count": 1}}, "billowed": {"_count": 2, "from": {"_count": 1}, "upward": {"_count": 1}}, "erupt": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "grab": {"_count": 1}}, "he": {"_count": 1, "raked": {"_count": 1}}, "hardly": {"_count": 1, "able": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}}, "billowing": {"_count": 19, "out": {"_count": 2, "and": {"_count": 1}, "behind": {"_count": 1}}, "black": {"_count": 2, "Hogwarts": {"_count": 1}, "smoke": {"_count": 1}}, "from": {"_count": 3, "under": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "behind": {"_count": 5, "him": {"_count": 5}}, "against": {"_count": 1, "the": {"_count": 1}}, "clouds": {"_count": 2, "of": {"_count": 2}}, "glittering": {"_count": 1, "wind": {"_count": 1}}, "cloak": {"_count": 1, "was": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "noise": {"_count": 1, "behind": {"_count": 1}}}, "mounds": {"_count": 5, "of": {"_count": 5, "gold": {"_count": 2}, "glittering": {"_count": 1}, "mashed": {"_count": 1}, "carved": {"_count": 1}}}, "Columns": {"_count": 1, "of": {"_count": 1, "silver": {"_count": 1}}}, "Heaps": {"_count": 1, "of": {"_count": 1, "little": {"_count": 1}}}, "blinking": {"_count": 32, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 5, "the": {"_count": 4}, "dazzling": {"_count": 1}}, "stupidly": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "at": {"_count": 4, "all": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 2}}, "blood": {"_count": 1, "out": {"_count": 1}}, "furiously": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "scowling": {"_count": 1}, "was": {"_count": 1}}, "down": {"_count": 2, "at": {"_count": 2}}, "up": {"_count": 2, "at": {"_count": 2}}, "he": {"_count": 1, "stared": {"_count": 1}}, "mournfully": {"_count": 1, "at": {"_count": 1}}, "slowly": {"_count": 1, "at": {"_count": 1}}, "hard": {"_count": 1, "trying": {"_count": 1}}, "to": {"_count": 1, "try": {"_count": 1}}, "back": {"_count": 2, "at": {"_count": 1}, "tears": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "rather": {"_count": 1, "rapidly": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "cost": {"_count": 22, "them": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 2, "a": {"_count": 1}, "much": {"_count": 1}}, "him": {"_count": 6, "to": {"_count": 1}, "a": {"_count": 2}, "something": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "a": {"_count": 1, "fortune": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}, "of": {"_count": 1, "numerous": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 2, "I": {"_count": 1}, "what": {"_count": 1}}, "nine": {"_count": 1, "Galleons": {"_count": 1}}, "to": {"_count": 1, "attain": {"_count": 1}}}, "fortune": {"_count": 13, "belonging": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "parents": {"_count": 1}}, "and": {"_count": 1, "we": {"_count": 1}}, "be": {"_count": 1, "yours": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "telling": {"_count": 1, "never": {"_count": 1}}, "in": {"_count": 1, "having": {"_count": 1}}, "elsewhere": {"_count": 1, "No": {"_count": 1}}, "of": {"_count": 1, "our": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "right": {"_count": 1, "there": {"_count": 1}}}, "belonging": {"_count": 6, "to": {"_count": 6, "him": {"_count": 1}, "Filch": {"_count": 1}, "some": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}}}, "helped": {"_count": 89, "Harry": {"_count": 5, "pile": {"_count": 1}, "on": {"_count": 1}, "limp": {"_count": 1}, "into": {"_count": 1}, "out": {"_count": 1}}, "himself": {"_count": 10, "to": {"_count": 10}}, "protect": {"_count": 1, "the": {"_count": 1}}, "buckle": {"_count": 1, "Norbert": {"_count": 1}}, "Gryffindor": {"_count": 2, "win": {"_count": 1}, "beat": {"_count": 1}}, "him": {"_count": 13, "into": {"_count": 1}, "to": {"_count": 1}, "escape": {"_count": 1}, "avoid": {"_count": 1}, "do": {"_count": 1}, "out": {"_count": 2}, "toward": {"_count": 1}, "load": {"_count": 1}, "back": {"_count": 1}, "so": {"_count": 1}, "break": {"_count": 1}, "": {"_count": 1}}, "rather": {"_count": 1, "reluctantly": {"_count": 1}}, "her": {"_count": 6, "awkwardly": {"_count": 1}, "tie": {"_count": 1}, "husband": {"_count": 1}, "to": {"_count": 2}, "prepare": {"_count": 1}}, "Stan": {"_count": 1, "lower": {"_count": 1}}, "Black": {"_count": 1, "enter": {"_count": 1}}, "herself": {"_count": 2, "to": {"_count": 1}, "almost": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "write": {"_count": 1, "it": {"_count": 1}}, "me": {"_count": 6, "keep": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 2}, "required": {"_count": 1}, "out": {"_count": 1}}, "uncover": {"_count": 1, "the": {"_count": 1}}, "George": {"_count": 1, "carry": {"_count": 1}}, "Sirius": {"_count": 1, "escape": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "by": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "murder": {"_count": 1, "the": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "return": {"_count": 1, "me": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "tip": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 2, "see": {"_count": 1}, "get": {"_count": 1}}, "Voldemort": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 3, "repair": {"_count": 1}, "off": {"_count": 1}, "survive": {"_count": 1}}, "bring": {"_count": 1, "about": {"_count": 1}}, "the": {"_count": 1, "traitor": {"_count": 1}}, "hoist": {"_count": 1, "Hermiones": {"_count": 1}}, "dispose": {"_count": 1, "of": {"_count": 1}}, "found": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "fortnight": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "Dumbledore": {"_count": 1, "back": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "up": {"_count": 1, "onto": {"_count": 1}}, "Arthur": {"_count": 1, "muck": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "to": {"_count": 1, "write": {"_count": 1}}, "Grindelwald": {"_count": 1, "rise": {"_count": 1}}, "us": {"_count": 3, "he": {"_count": 1}, "rather": {"_count": 1}, "get": {"_count": 1}}, "together": {"_count": 1, "crouching": {"_count": 1}}}, "Galleons": {"_count": 68, "he": {"_count": 2, "explained": {"_count": 1}, "feels": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "each": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "watch": {"_count": 1}}, "for": {"_count": 6, "his": {"_count": 1}, "bewitching": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}, "it": {"_count": 1}}, "Sickles": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 2, "next": {"_count": 1}, "lot": {"_count": 1}}, "silver": {"_count": 1, "Sickles": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 2, "me": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 10}, "?": {"_count": 3}, "!": {"_count": 2}}, "to": {"_count": 4, "me": {"_count": 1}, "rub": {"_count": 1}, "confuse": {"_count": 1}, "afford": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "fifteen": {"_count": 1, "Sickles": {"_count": 1}}, "a": {"_count": 5, "year": {"_count": 1}, "week": {"_count": 1}, "pint": {"_count": 1}, "hair": {"_count": 1}, "refusal": {"_count": 1}}, "personal": {"_count": 1, "prize": {"_count": 1}}, "prize": {"_count": 2, "money": {"_count": 2}}, "between": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "prize": {"_count": 1}, "here": {"_count": 1}}, "goes": {"_count": 1, "missing": {"_count": 1}}, "little": {"_count": 1, "brother": {"_count": 1}}, "Harry": {"_count": 1, "found": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "ostentatiously": {"_count": 1, "so": {"_count": 1}}, "thats": {"_count": 1, "just": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "nine": {"_count": 3, "Sickles": {"_count": 3}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "will": {"_count": 1, "still": {"_count": 1}}, "right": {"_count": 1, "there": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "Dumbledores": {"_count": 1}}}, "Seventeen": {"_count": 3, "silver": {"_count": 1, "Sickles": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}}, "Galleon": {"_count": 16, "and": {"_count": 2, "twentynine": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "Draw": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "Ireland": {"_count": 1}}, "a": {"_count": 1, "week": {"_count": 1}}, "Ron": {"_count": 1, "became": {"_count": 1}}, "is": {"_count": 1, "there": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "down": {"_count": 1, "onto": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}}, "twentynine": {"_count": 1, "Knuts": {"_count": 1, "to": {"_count": 1}}}, "Sickle": {"_count": 2, "its": {"_count": 1, "easy": {"_count": 1}}, "embedded": {"_count": 1, "in": {"_count": 1}}}, "terms": {"_count": 19, "well": {"_count": 1, "keep": {"_count": 1}}, "with": {"_count": 6, "the": {"_count": 3}, "Ron": {"_count": 1}, "Firenze": {"_count": 1}, "Dumbledores": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "correct": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "if": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 3}, "Educational": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "project": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "Vault": {"_count": 2, "seven": {"_count": 2, "hundred": {"_count": 2}}}, "gathering": {"_count": 22, "speed": {"_count": 9, "": {"_count": 5}, "in": {"_count": 1}, "heading": {"_count": 1}, "until": {"_count": 1}, "They": {"_count": 1}}, "darkness": {"_count": 3, "while": {"_count": 1}, "Harrys": {"_count": 1}, "in": {"_count": 1}}, "strength": {"_count": 1, "again": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "followers": {"_count": 1, "is": {"_count": 1}}, "up": {"_count": 3, "their": {"_count": 2}, "fangs": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "twilight": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}}, "became": {"_count": 198, "colder": {"_count": 1, "and": {"_count": 1}}, "very": {"_count": 7, "stern": {"_count": 1}, "interested": {"_count": 2}, "boring": {"_count": 1}, "round": {"_count": 1}, "quiet": {"_count": 1}, "excited": {"_count": 1}}, "quite": {"_count": 2, "still": {"_count": 2}}, "the": {"_count": 5, "first": {"_count": 3}, "new": {"_count": 1}, "Horcrux": {"_count": 1}}, "a": {"_count": 22, "Slytherin": {"_count": 1}, "Ravenclaw": {"_count": 1}, "rattlesnake": {"_count": 1}, "severed": {"_count": 1}, "good": {"_count": 1}, "professor": {"_count": 1}, "fully": {"_count": 1}, "Hufflepuff": {"_count": 1}, "veritable": {"_count": 1}, "bone": {"_count": 1}, "grimace": {"_count": 1}, "tiny": {"_count": 1}, "steady": {"_count": 1}, "formless": {"_count": 1}, "sea": {"_count": 1}, "serpent": {"_count": 1}, "matter": {"_count": 1}, "distant": {"_count": 1}, "shower": {"_count": 1}, "ring": {"_count": 1}, "fight": {"_count": 1}, "snarl": {"_count": 1}}, "high": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "friend": {"_count": 1}}, "icy": {"_count": 1, "gray": {"_count": 1}}, "more": {"_count": 13, "and": {"_count": 5}, "panicstricken": {"_count": 1}, "numerous": {"_count": 1}, "pronounced": {"_count": 2}, "agitated": {"_count": 1}, "accustomed": {"_count": 1}, "intense": {"_count": 1}, "opaque": {"_count": 1}}, "almost": {"_count": 1, "impossible": {"_count": 1}}, "clear": {"_count": 10, "to": {"_count": 2}, "at": {"_count": 1}, "that": {"_count": 3}, "after": {"_count": 1}, "just": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "scarlet": {"_count": 1, "and": {"_count": 1}}, "gold": {"_count": 1, "the": {"_count": 1}}, "greener": {"_count": 1, "and": {"_count": 1}}, "steadily": {"_count": 2, "darker": {"_count": 2}}, "aware": {"_count": 17, "that": {"_count": 14}, "of": {"_count": 2}, "suddenly": {"_count": 1}}, "complete": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "hopeful": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "suspicious": {"_count": 1, "and": {"_count": 1}}, "wilder": {"_count": 3, "and": {"_count": 3}}, "entangled": {"_count": 2, "fell": {"_count": 1}, "in": {"_count": 1}}, "repossessed": {"_count": 1, "of": {"_count": 1}}, "crowded": {"_count": 1, "and": {"_count": 1}}, "cloudless": {"_count": 1, "and": {"_count": 1}}, "Headmaster": {"_count": 1, "and": {"_count": 1}}, "Animagi": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "less": {"_count": 1, "dangerous": {"_count": 1}}, "smaller": {"_count": 1, "and": {"_count": 1}}, "normal": {"_count": 1, "again": {"_count": 1}}, "apparent": {"_count": 3, "almost": {"_count": 1}, "shortly": {"_count": 1}, "to": {"_count": 1}}, "still": {"_count": 5, "faster": {"_count": 1}, "again": {"_count": 2}, "once": {"_count": 1}, "": {"_count": 1}}, "noisier": {"_count": 1, "than": {"_count": 1}}, "heavier": {"_count": 1, "and": {"_count": 1}}, "extremely": {"_count": 1, "interested": {"_count": 1}}, "even": {"_count": 1, "worse": {"_count": 1}}, "mere": {"_count": 1, "fleshcolored": {"_count": 1}}, "properly": {"_count": 1, "aware": {"_count": 1}}, "irritated": {"_count": 2, "as": {"_count": 1}, "more": {"_count": 1}}, "increasingly": {"_count": 1, "boisterous": {"_count": 1}}, "headmaster": {"_count": 1, "of": {"_count": 1}}, "opaque": {"_count": 1, "": {"_count": 1}}, "drier": {"_count": 1, "but": {"_count": 1}}, "too": {"_count": 2, "smelly": {"_count": 1}, "distressed": {"_count": 1}}, "as": {"_count": 1, "ruthless": {"_count": 1}}, "ruffled": {"_count": 1, "like": {"_count": 1}}, "silvery": {"_count": 1, "and": {"_count": 1}}, "excited": {"_count": 1, "and": {"_count": 1}}, "considerably": {"_count": 1, "warmer": {"_count": 1}}, "much": {"_count": 2, "harder": {"_count": 1}, "less": {"_count": 1}}, "whole": {"_count": 1, "and": {"_count": 1}}, "Moodys": {"_count": 1, "double": {"_count": 1}}, "of": {"_count": 2, "Wormtail": {"_count": 1}, "his": {"_count": 1}}, "hazy": {"_count": 1, "the": {"_count": 1}}, "until": {"_count": 1, "finally": {"_count": 1}}, "separated": {"_count": 1, "as": {"_count": 1}}, "motionless": {"_count": 2, "once": {"_count": 1}, "": {"_count": 1}}, "narrower": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 3, "scowl": {"_count": 1}, "usual": {"_count": 1}, "precious": {"_count": 1}}, "distinctly": {"_count": 1, "colder": {"_count": 1}}, "suddenly": {"_count": 2, "much": {"_count": 1}, "businesslike": {"_count": 1}}, "stony": {"_count": 1, "": {"_count": 1}}, "flustered": {"_count": 1, "and": {"_count": 1}}, "snowcapped": {"_count": 1, "and": {"_count": 1}}, "gigantic": {"_count": 1, "glowing": {"_count": 1}}, "infected": {"_count": 1, "by": {"_count": 1}}, "common": {"_count": 1, "knowledge": {"_count": 1}}, "blurred": {"_count": 1, "looking": {"_count": 1}}, "so": {"_count": 2, "dark": {"_count": 1}, "respected": {"_count": 1}}, "stationary": {"_count": 1, "once": {"_count": 1}}, "bedraggled": {"_count": 1, "and": {"_count": 1}}, "concerned": {"_count": 1, "that": {"_count": 1}}, "your": {"_count": 1, "refuge": {"_count": 1}}, "Minister": {"_count": 1, "obviously": {"_count": 1}}, "obscured": {"_count": 1, "with": {"_count": 1}}, "stonier": {"_count": 1, "with": {"_count": 1}}, "something": {"_count": 1, "more": {"_count": 1}}, "like": {"_count": 1, "Bill": {"_count": 1}}, "excruciatingly": {"_count": 1, "embarrassing": {"_count": 1}}, "Gryffindor": {"_count": 1, "Keeper": {"_count": 1}}, "windy": {"_count": 1, "as": {"_count": 1}}, "limp": {"_count": 1, "and": {"_count": 1}}, "tearful": {"_count": 1, "again": {"_count": 1}}, "Horcruxes": {"_count": 1, "three": {"_count": 1}}, "instantly": {"_count": 1, "rigid": {"_count": 1}}, "angry": {"_count": 1, "every": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "immediately": {"_count": 1, "silent": {"_count": 1}}, "virtually": {"_count": 1, "nonexistent": {"_count": 1}}, "rather": {"_count": 1, "rude": {"_count": 1}}, "unfocused": {"_count": 1, "and": {"_count": 1}}, "disenchanted": {"_count": 1, "then": {"_count": 1}}, "downright": {"_count": 1, "unpleasant": {"_count": 1}}, "louder": {"_count": 1, "but": {"_count": 1}}, "lost": {"_count": 1, "It": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}, "Grindelwald": {"_count": 1, "s": {"_count": 1}}, "blinding": {"_count": 1, "the": {"_count": 1}}, "shamelessly": {"_count": 1, "cheery": {"_count": 1}}, "engrossed": {"_count": 1, "in": {"_count": 1}}, "solemn": {"_count": 1, "at": {"_count": 1}}, "violent": {"_count": 1, "": {"_count": 1}}, "distant": {"_count": 1, "as": {"_count": 1}}, "conscious": {"_count": 1, "that": {"_count": 1}}, "hot": {"_count": 1, "and": {"_count": 1}}}, "colder": {"_count": 14, "and": {"_count": 4, "colder": {"_count": 3}, "wetter": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "here": {"_count": 1, "than": {"_count": 1}}, "than": {"_count": 3, "ever": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "every": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "corners": {"_count": 31, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 20, "his": {"_count": 11}, "Riddles": {"_count": 1}, "Hagrid": {"_count": 2}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 2}, "the": {"_count": 2}}, "before": {"_count": 1, "sweeping": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "throwing": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "farthest": {"_count": 1, "from": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "in": {"_count": 1, "unexpected": {"_count": 1}}, "beyond": {"_count": 1, "which": {"_count": 1}}}, "ravine": {"_count": 1, "and": {"_count": 1, "Harry": {"_count": 1}}}, "leaned": {"_count": 103, "over": {"_count": 8, "the": {"_count": 3}, "to": {"_count": 2}, "his": {"_count": 1}, "it": {"_count": 1}, "for": {"_count": 1}}, "forward": {"_count": 30, "eagerly": {"_count": 1}, "and": {"_count": 9}, "": {"_count": 2}, "to": {"_count": 7}, "so": {"_count": 2}, "toward": {"_count": 2}, "into": {"_count": 1}, "a": {"_count": 3}, "over": {"_count": 2}, "again": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 2}, "Harry": {"_count": 1}}, "back": {"_count": 8, "quickly": {"_count": 1}, "against": {"_count": 1}, "into": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "against": {"_count": 15, "the": {"_count": 11}, "it": {"_count": 3}, "a": {"_count": 1}}, "toward": {"_count": 8, "Harry": {"_count": 3}, "them": {"_count": 1}, "each": {"_count": 1}, "him": {"_count": 2}, "Voldemort": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "close": {"_count": 4, "to": {"_count": 4}}, "on": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "still": {"_count": 1, "closer": {"_count": 1}}, "casually": {"_count": 2, "against": {"_count": 2}}, "closer": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 6, "toward": {"_count": 2}, "closer": {"_count": 3}, "": {"_count": 1}}, "backward": {"_count": 1, "trying": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "even": {"_count": 1, "closer": {"_count": 1}}, "farther": {"_count": 1, "over": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "an": {"_count": 1, "inch": {"_count": 1}}, "up": {"_count": 2, "against": {"_count": 2}}, "low": {"_count": 1, "over": {"_count": 1}}}, "scruff": {"_count": 6, "of": {"_count": 5, "his": {"_count": 1}, "the": {"_count": 3}, "Harrys": {"_count": 1}}, "yV": {"_count": 1, "The": {"_count": 1}}}, "Stand": {"_count": 30, "back": {"_count": 10, "said": {"_count": 2}, "Wood": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}, "But": {"_count": 1}, "against": {"_count": 1}, "She": {"_count": 1}, "came": {"_count": 1}}, "aside": {"_count": 10, "said": {"_count": 1}, "you": {"_count": 2}, "": {"_count": 4}, "girl": {"_count": 2}, "Harry": {"_count": 1}}, "and": {"_count": 2, "fight": {"_count": 2}}, "up": {"_count": 5, "": {"_count": 1}, "straight": {"_count": 1}, "and": {"_count": 1}, "Rookwood": {"_count": 1}, "Potter": {"_count": 1}}, "together": {"_count": 1, "be": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "still": {"_count": 1, "dont": {"_count": 1}}}, "melted": {"_count": 13, "away": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "together": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 3, "thin": {"_count": 2}, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "sucked": {"_count": 15, "through": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 3}, "through": {"_count": 1}}, "it": {"_count": 1, "for": {"_count": 1}}, "his": {"_count": 1, "soul": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 3}}}, "trapped": {"_count": 37, "in": {"_count": 12, "there": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 3}, "that": {"_count": 2}, "his": {"_count": 1}, "limbo": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "last": {"_count": 1}}, "inside": {"_count": 5, "their": {"_count": 1}, "for": {"_count": 1}, "traipsing": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "leg": {"_count": 1, "free": {"_count": 1}}, "Harry": {"_count": 1, "leaned": {"_count": 1}}, "feeling": {"_count": 1, "he": {"_count": 1}}, "here": {"_count": 2, "without": {"_count": 1}, "": {"_count": 1}}, "Ive": {"_count": 1, "seen": {"_count": 1}}, "and": {"_count": 2, "outnumbered": {"_count": 1}, "screaming": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "moments": {"_count": 1, "before": {"_count": 1}}, "beneath": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "Fang": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "cockroach": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "There": {"_count": 1}}, "the": {"_count": 1, "curse": {"_count": 1}}}, "check": {"_count": 89, "to": {"_count": 1, "see": {"_count": 1}}, "that": {"_count": 26, "Fluffy": {"_count": 1}, "the": {"_count": 4}, "they": {"_count": 5}, "Filch": {"_count": 1}, "everything": {"_count": 1}, "Hermione": {"_count": 1}, "it": {"_count": 1}, "youve": {"_count": 1}, "Moody": {"_count": 1}, "your": {"_count": 1}, "she": {"_count": 1}, "Sirius": {"_count": 1}, "I": {"_count": 1}, "theres": {"_count": 1}, "people": {"_count": 1}, "everyone": {"_count": 1}, "he": {"_count": 1}, "Mrs": {"_count": 1}, "one": {"_count": 1}}, "on": {"_count": 10, "it": {"_count": 1}, "the": {"_count": 3}, "Peter": {"_count": 1}, "his": {"_count": 1}, "Fred": {"_count": 1}, "you": {"_count": 1}, "Katie": {"_count": 1}, "how": {"_count": 1}}, "how": {"_count": 3, "well": {"_count": 1}, "scarred": {"_count": 1}, "yehve": {"_count": 1}}, "the": {"_count": 12, "library": {"_count": 1}, "lunar": {"_count": 1}, "register": {"_count": 1}, "page": {"_count": 1}, "map": {"_count": 1}, "time": {"_count": 1}, "bathrooms": {"_count": 1}, "large": {"_count": 1}, "door": {"_count": 1}, "compartments": {"_count": 1}, "caption": {"_count": 1}, "others": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "things": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 1}, "!": {"_count": 1}}, "if": {"_count": 3, "Im": {"_count": 1}, "the": {"_count": 1}, "hed": {"_count": 1}}, "Common": {"_count": 1, "Magical": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 2, "pockets": {"_count": 1}, "free": {"_count": 1}}, "whether": {"_count": 4, "he": {"_count": 1}, "Sirius": {"_count": 2}, "she": {"_count": 1}}, "with": {"_count": 1, "Puddlemere": {"_count": 1}}, "his": {"_count": 1, "watch": {"_count": 1}}, "out": {"_count": 1, "conditions": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "what": {"_count": 1, "they": {"_count": 1}}, "some": {"_count": 1, "fact": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "bottle": {"_count": 1}}, "said": {"_count": 2, "Lupin": {"_count": 1}, "Scabior": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "Harrys": {"_count": 1, "feet": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}}, "anyones": {"_count": 17, "inside": {"_count": 1, "": {"_count": 1}}, "guess": {"_count": 1, "because": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "ever": {"_count": 1, "used": {"_count": 1}}, "memory": {"_count": 1, "had": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "out": {"_count": 1}}, "got": {"_count": 3, "reason": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "eye": {"_count": 2, "he": {"_count": 1}, "flattening": {"_count": 1}}, "run": {"_count": 1, "off": {"_count": 1}}, "watching": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 2}}}, "extraordinary": {"_count": 40, "had": {"_count": 1, "to": {"_count": 1}}, "number": {"_count": 2, "of": {"_count": 2}}, "moment": {"_count": 1, "this": {"_count": 1}}, "magical": {"_count": 1, "talent": {"_count": 1}}, "lightness": {"_count": 1, "seemed": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "pronouncement": {"_count": 1, "": {"_count": 1}}, "apparition": {"_count": 1, "": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "events": {"_count": 1, "of": {"_count": 1}}, "achievement": {"_count": 1, "not": {"_count": 1}}, "inner": {"_count": 1, "proportions": {"_count": 1}}, "merchandise": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 2, "under": {"_count": 1}, "": {"_count": 1}}, "behavior": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 2}, ".": {"_count": 2}}, "clairvoyant": {"_count": 1, "vibrations": {"_count": 1}}, "creature": {"_count": 1, "one": {"_count": 1}}, "strength": {"_count": 1, "for": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "escape": {"_count": 1, "from": {"_count": 1}}, "witch": {"_count": 1, "you": {"_count": 1}}, "talent": {"_count": 1, "at": {"_count": 1}}, "magic": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "that": {"_count": 1, "Hermiones": {"_count": 1}}, "brainpower": {"_count": 1, "I": {"_count": 1}}, "assortment": {"_count": 1, "of": {"_count": 1}}, "wizards": {"_count": 1, "do": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "tonic": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "this": {"_count": 1}}, "power": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "they": {"_count": 1}}}, "security": {"_count": 62, "vault": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "measures": {"_count": 5, "are": {"_count": 1}, "had": {"_count": 1}, "we": {"_count": 1}, "around": {"_count": 1}, "in": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "trolls": {"_count": 7, "had": {"_count": 1}, "leered": {"_count": 1}, "at": {"_count": 1}, "he": {"_count": 1}, "were": {"_count": 1}, "gave": {"_count": 1}, "outside": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "lest": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "!": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "measure": {"_count": 1, "known": {"_count": 1}}, "desk": {"_count": 2, "which": {"_count": 2}}, "wizard": {"_count": 1, "at": {"_count": 1}}, "man": {"_count": 2, "was": {"_count": 1}, "who": {"_count": 1}}, "prisoners": {"_count": 1, "escaped": {"_count": 1}}, "troll": {"_count": 2, "to": {"_count": 1}, "so": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "person": {"_count": 2, "there": {"_count": 1}, "within": {"_count": 1}}, "guards": {"_count": 1, "desk": {"_count": 1}}, "Ive": {"_count": 1, "already": {"_count": 1}}, "plans": {"_count": 1, "said": {"_count": 1}}, "guidelines": {"_count": 1, "will": {"_count": 1}}, "arrangements": {"_count": 2, "around": {"_count": 1}, "for": {"_count": 1}}, "questions": {"_count": 1, "with": {"_count": 1}}, "notwithstanding": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "and": {"_count": 1, "hes": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "status": {"_count": 1, "": {"_count": 1}}, "advice": {"_count": 1, "on": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "restrictions": {"_count": 1, "that": {"_count": 1}}, "before": {"_count": 1, "returning": {"_count": 1}}, "now": {"_count": 1, "operating": {"_count": 1}}, "an": {"_count": 1, "kids": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "enchantments": {"_count": 1, "had": {"_count": 1}}, "spells": {"_count": 1, "around": {"_count": 1}}, "thinking": {"_count": 1, "hes": {"_count": 1}}}, "expecting": {"_count": 64, "to": {"_count": 21, "see": {"_count": 12}, "be": {"_count": 4}, "speak": {"_count": 1}, "expel": {"_count": 1}, "find": {"_count": 2}, "turn": {"_count": 1}}, "any": {"_count": 1, "presents": {"_count": 1}}, "praise": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 4, "to": {"_count": 4}}, "a": {"_count": 4, "thunderbolt": {"_count": 1}, "letter": {"_count": 1}, "croak": {"_count": 1}, "lovely": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "that": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 7, "": {"_count": 3}, "but": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}, "knew": {"_count": 1}}, "the": {"_count": 2, "merpeople": {"_count": 1}, "baby": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "some": {"_count": 2, "sign": {"_count": 1}, "kind": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 3, "for": {"_count": 1}, "lot": {"_count": 1}, "to": {"_count": 1}}, "an": {"_count": 1, "attack": {"_count": 1}}, "trouble": {"_count": 1, "at": {"_count": 1}}, "another": {"_count": 1, "attempt": {"_count": 1}}, "strange": {"_count": 1, "symptoms": {"_count": 1}}, "detention": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "said": {"_count": 1}}, "this": {"_count": 1, "many": {"_count": 1}}, "us": {"_count": 2, "didnt": {"_count": 1}, "to": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "every": {"_count": 1, "second": {"_count": 1}}, "touched": {"_count": 1, "Harrys": {"_count": 1}}}, "fabulous": {"_count": 10, "jewels": {"_count": 1, "at": {"_count": 1}}, "dream": {"_count": 1, "": {"_count": 1}}, "Kwikspell": {"_count": 1, "course": {"_count": 1}}, "he": {"_count": 1, "whispered": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "prize": {"_count": 1, "": {"_count": 1}}, "trophies": {"_count": 1, "that": {"_count": 1}}, "discoveries": {"_count": 1, "threw": {"_count": 1}}, "treasures": {"_count": 1, "": {"_count": 1}}, "objects": {"_count": 1, "to": {"_count": 1}}}, "jewels": {"_count": 6, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "missing": {"_count": 1, "from": {"_count": 1}}, "cloaks": {"_count": 1, "there": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}}, "grubby": {"_count": 13, "little": {"_count": 3, "package": {"_count": 3}}, "pillowcase": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "faded": {"_count": 1}}, "almost": {"_count": 1, "like": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "hand": {"_count": 1, "in": {"_count": 1}}, "raincoat": {"_count": 1, "still": {"_count": 1}}, "scroll": {"_count": 1, "of": {"_count": 1}}, "tablecloth": {"_count": 1, "from": {"_count": 1}}, "sawdust": {"_count": 1, "strewn": {"_count": 1}}, "schoolboy": {"_count": 1, "seemed": {"_count": 1}}}, "longed": {"_count": 5, "to": {"_count": 4, "know": {"_count": 1}, "throw": {"_count": 1}, "bite": {"_count": 1}, "be": {"_count": 1}}, "but": {"_count": 1, "did": {"_count": 1}}}, "infernal": {"_count": 1, "cart": {"_count": 1, "and": {"_count": 1}}}, "ride": {"_count": 18, "later": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "around": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "Dudders": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "broom": {"_count": 1}, "Shooting": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 2}, "one": {"_count": 1}, "here": {"_count": 1}}, "to": {"_count": 1, "safety": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}, "home": {"_count": 1, "wasnt": {"_count": 1}}}, "pound": {"_count": 12, "to": {"_count": 1, "know": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 3, "shredded": {"_count": 1}, "mince": {"_count": 1}, "doxy": {"_count": 1}}, "up": {"_count": 1, "her": {"_count": 1}}, "his": {"_count": 1, "scarab": {"_count": 1}}, "through": {"_count": 2, "his": {"_count": 2}}, "the": {"_count": 1, "resilient": {"_count": 1}}, "cake": {"_count": 1, "and": {"_count": 1}}}, "Malkins": {"_count": 14, "Robes": {"_count": 3, "for": {"_count": 3}}, "shop": {"_count": 1, "alone": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "robe": {"_count": 1, "shop": {"_count": 1}}, "and": {"_count": 2, "I": {"_count": 1}, "bending": {"_count": 1}}, "first": {"_count": 1, "Hermione": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "Potter": {"_count": 1}}}, "Robes": {"_count": 5, "for": {"_count": 3, "All": {"_count": 3}}, "jade": {"_count": 1, "green": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "Occasions": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "bought": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}}, "Listen": {"_count": 99, "Harry": {"_count": 5, "would": {"_count": 1}, "can": {"_count": 1}, "perhaps": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "here": {"_count": 1, "Ive": {"_count": 1}}, "come": {"_count": 1, "an": {"_count": 1}}, "Im": {"_count": 1, "glad": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 17, "!": {"_count": 8}, ".": {"_count": 9}}, "we": {"_count": 1, "never": {"_count": 1}}, "said": {"_count": 7, "Harry": {"_count": 7}}, "if": {"_count": 3, "I": {"_count": 1}, "he": {"_count": 1}, "Crouch": {"_count": 1}}, "to": {"_count": 16, "me": {"_count": 11}, "this": {"_count": 3}, "him": {"_count": 1}, "what": {"_count": 1}}, "how": {"_count": 1, "much": {"_count": 1}}, "I": {"_count": 6, "want": {"_count": 1}, "knew": {"_count": 1}, "had": {"_count": 1}, "heard": {"_count": 1}, "should": {"_count": 1}, "know": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "Hagrid": {"_count": 2, "he": {"_count": 1}, "I": {"_count": 1}}, "can": {"_count": 2, "I": {"_count": 1}, "you": {"_count": 1}}, "its": {"_count": 3, "very": {"_count": 1}, "Ogwarts": {"_count": 1}, "not": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "Ive": {"_count": 4, "got": {"_count": 3}, "been": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "Sirius": {"_count": 1, "Lucius": {"_count": 1}}, "Ron": {"_count": 2, "well": {"_count": 1}, "and": {"_count": 1}}, "closely": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 2, "I": {"_count": 2}}, "you": {"_count": 1, "can": {"_count": 1}}, "dont": {"_count": 1, "go": {"_count": 1}}, "Neville": {"_count": 2, "can": {"_count": 1}, "Harry": {"_count": 1}}, "your": {"_count": 1, "dads": {"_count": 1}}, "he": {"_count": 2, "whispered": {"_count": 1}, "added": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 1, "happens": {"_count": 1}}, "no": {"_count": 1, "bloke": {"_count": 1}}, "Potter": {"_count": 1, "we": {"_count": 1}}, "Katie": {"_count": 1, "": {"_count": 1}}, "Id": {"_count": 1, "better": {"_count": 1}}, "without": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "fact": {"_count": 1}}, "She": {"_count": 1, "caught": {"_count": 1}}}, "pickmeup": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "hate": {"_count": 49, "them": {"_count": 5, "Gringotts": {"_count": 1}, "both": {"_count": 1}, "said": {"_count": 1}, "Dumbledore": {"_count": 1}, "as": {"_count": 1}}, "him": {"_count": 5, "so": {"_count": 1}, "Dumbledore": {"_count": 1}, "for": {"_count": 1}, "Harry": {"_count": 1}, "to": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "maroon": {"_count": 1, "Ron": {"_count": 1}}, "to": {"_count": 4, "hear": {"_count": 1}, "see": {"_count": 1}, "think": {"_count": 1}, "be": {"_count": 1}}, "those": {"_count": 1, "Muggles": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "erupted": {"_count": 1, "in": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "Hagrid": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "muttered": {"_count": 1}}, "mail": {"_count": 1, "she": {"_count": 1}}, "being": {"_count": 1, "poor": {"_count": 1}}, "that": {"_count": 2, "Skeeter": {"_count": 2}}, "toward": {"_count": 1, "the": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "Trelawney": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "abou": {"_count": 1, "wizards": {"_count": 1}}, "it": {"_count": 6, "when": {"_count": 1}, "": {"_count": 4}, "I": {"_count": 1}}, "my": {"_count": 1, "dad": {"_count": 1}}, "Kreacher": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "not": {"_count": 1, "talking": {"_count": 1}}, "theyd": {"_count": 1, "be": {"_count": 1}}, "normal": {"_count": 1, "wizards": {"_count": 1}}, "the": {"_count": 1, "fact": {"_count": 1}}, "this": {"_count": 1, "thing": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}}, "carts": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "sped": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}}, "Malkin": {"_count": 11, "was": {"_count": 1, "a": {"_count": 1}}, "stood": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Thats": {"_count": 1}}, "the": {"_count": 1, "owner": {"_count": 1}}, "scurrying": {"_count": 1, "out": {"_count": 1}}, "sharply": {"_count": 1, "looking": {"_count": 1}}, "squealed": {"_count": 1, "and": {"_count": 1}}, "dithered": {"_count": 1, "for": {"_count": 1}}, "snatching": {"_count": 1, "up": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "squat": {"_count": 13, "smiling": {"_count": 1, "witch": {"_count": 1}}, "little": {"_count": 1, "witch": {"_count": 1}}, "ghost": {"_count": 1, "of": {"_count": 1}}, "knight": {"_count": 1, "in": {"_count": 1}}, "unshaven": {"_count": 1, "man": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "short": {"_count": 1}}, "rippled": {"_count": 1, "across": {"_count": 1}}, "bandylegged": {"_count": 1, "man": {"_count": 1}}, "brother": {"_count": 1, "and": {"_count": 1}}, "man": {"_count": 1, "sitting": {"_count": 1}}, "wizard": {"_count": 1, "in": {"_count": 1}}, "toadlike": {"_count": 1, "witch": {"_count": 1}}}, "mauve": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "today": {"_count": 1, "came": {"_count": 1}}, "top": {"_count": 1, "hat": {"_count": 1}}}, "footstool": {"_count": 3, "while": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "regained": {"_count": 1, "his": {"_count": 1}}}, "pinned": {"_count": 25, "up": {"_count": 4, "his": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}}, "to": {"_count": 8, "the": {"_count": 3}, "his": {"_count": 3}, "it": {"_count": 1}, "its": {"_count": 1}}, "it": {"_count": 2, "against": {"_count": 1}, "to": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 2, "Head": {"_count": 1}, "Ireland": {"_count": 1}}, "right": {"_count": 1, "next": {"_count": 1}}, "a": {"_count": 2, "number": {"_count": 1}, "list": {"_count": 1}}, "their": {"_count": 1, "prefect": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "piece": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "Mundungus": {"_count": 1, "against": {"_count": 1}}}, "stool": {"_count": 33, "next": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "she": {"_count": 2, "put": {"_count": 1}, "told": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "for": {"_count": 1, "almost": {"_count": 1}}, "and": {"_count": 10, "jammed": {"_count": 1}, "thought": {"_count": 1}, "in": {"_count": 1}, "under": {"_count": 1}, "hurried": {"_count": 1}, "carried": {"_count": 1}, "lay": {"_count": 1}, "marched": {"_count": 1}, "was": {"_count": 1}, "vanishing": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "before": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "which": {"_count": 1}}, "the": {"_count": 1, "line": {"_count": 1}}, "that": {"_count": 1, "normally": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "last": {"_count": 1}}, "staring": {"_count": 1, "into": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "carefully": {"_count": 1, "in": {"_count": 1}}, "watched": {"_count": 1, "him": {"_count": 1}}}, "robe": {"_count": 18, "over": {"_count": 2, "his": {"_count": 2}}, "shop": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "and": {"_count": 3, "made": {"_count": 1}, "glasses": {"_count": 1}, "show": {"_count": 1}}, "poured": {"_count": 1, "a": {"_count": 1}}, "Goyles": {"_count": 1, "head": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "smoking": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "ripped": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "avoid": {"_count": 1}}, "he": {"_count": 1, "fingered": {"_count": 1}}}, "pin": {"_count": 6, "it": {"_count": 3, "to": {"_count": 2}, "on": {"_count": 1}}, "bowling": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}}, "length": {"_count": 29, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "just": {"_count": 1}}, "as": {"_count": 2, "it": {"_count": 1}, "though": {"_count": 1}}, "of": {"_count": 18, "the": {"_count": 12}, "rope": {"_count": 1}, "velvet": {"_count": 1}, "some": {"_count": 1}, "Ginnys": {"_count": 1}, "shimmering": {"_count": 1}, "one": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "examining": {"_count": 1}, "shape": {"_count": 1}}, "today": {"_count": 1, "she": {"_count": 1}}, "Harry": {"_count": 1, "handed": {"_count": 1}}}, "Hello": {"_count": 59, "said": {"_count": 9, "the": {"_count": 1}, "Harry": {"_count": 3}, "Hermione": {"_count": 2}, "a": {"_count": 1}, "Luna": {"_count": 2}}, "dear": {"_count": 1, "she": {"_count": 1}}, "Hagrid": {"_count": 1, "Oh": {"_count": 1}}, "Colin": {"_count": 1, "back": {"_count": 1}}, "Nick": {"_count": 1, "said": {"_count": 1}}, "hello": {"_count": 1, "said": {"_count": 1}}, "Peeves": {"_count": 1, "said": {"_count": 1}}, "Myrtle": {"_count": 1, "how": {"_count": 1}}, "Harry": {"_count": 9, "Potter": {"_count": 1}, "dear": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 3}, "he": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Percy": {"_count": 1, "said": {"_count": 1}}, "there": {"_count": 3, "Harry": {"_count": 1}, "Arthur": {"_count": 1}, "": {"_count": 1}}, "Arnie": {"_count": 1, "": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 3}, "!": {"_count": 2}, ".": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Moody": {"_count": 1}, "she": {"_count": 1}}, "she": {"_count": 4, "said": {"_count": 4}}, "Winky": {"_count": 1, "said": {"_count": 1}}, "Mr": {"_count": 2, "Bagman": {"_count": 1}, "Lovegood": {"_count": 1}}, "Sirius": {"_count": 1, "said": {"_count": 1}}, "Potter": {"_count": 2, "growled": {"_count": 1}, "said": {"_count": 1}}, "Fawkes": {"_count": 1, "he": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "Kreacher": {"_count": 1, "said": {"_count": 1}}, "horrible": {"_count": 1, "morning": {"_count": 1}}, "Muriel": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 1, "Barry": {"_count": 1}}, "Dean": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "three": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}}, "fathers": {"_count": 69, "next": {"_count": 1, "door": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "cloak": {"_count": 2, "he": {"_count": 1}, "and": {"_count": 1}}, "debt": {"_count": 1, "": {"_count": 1}}, "memory": {"_count": 1, "in": {"_count": 1}}, "bought": {"_count": 1, "our": {"_count": 1}}, "definitely": {"_count": 1, "evil": {"_count": 1}}, "family": {"_count": 1, "after": {"_count": 1}}, "just": {"_count": 1, "sent": {"_count": 1}}, "name": {"_count": 2, "forever": {"_count": 1}, "": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloak": {"_count": 1}}, "arm": {"_count": 2, "": {"_count": 2}}, "old": {"_count": 3, "cloak": {"_count": 1}, "trousers": {"_count": 1}, "Invisibility": {"_count": 1}}, "three": {"_count": 1, "oldest": {"_count": 1}}, "son": {"_count": 2, "Harry": {"_count": 1}, "and": {"_count": 1}}, "coming": {"_count": 2, "": {"_count": 2}}, "got": {"_count": 1, "some": {"_count": 1}}, "too": {"_count": 1, "junior": {"_count": 1}}, "hooked": {"_count": 1, "nose": {"_count": 1}}, "still": {"_count": 1, "got": {"_count": 1}}, "bone": {"_count": 1, "naturally": {"_count": 1}}, "voice": {"_count": 2, "be": {"_count": 1}, "the": {"_count": 1}}, "grave": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "ensure": {"_count": 1}}, "control": {"_count": 1, "": {"_count": 1}}, "office": {"_count": 1, "": {"_count": 1}}, "signature": {"_count": 1, "": {"_count": 1}}, "Imperius": {"_count": 1, "Curse": {"_count": 1}}, "house": {"_count": 1, "and": {"_count": 1}}, "escape": {"_count": 1, "": {"_count": 1}}, "body": {"_count": 2, "": {"_count": 2}}, "Tonks": {"_count": 1, "apologized": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "the": {"_count": 1, "editor": {"_count": 1}}, "dying": {"_count": 1, "": {"_count": 1}}, "talent": {"_count": 1, "Im": {"_count": 1}}, "quite": {"_count": 1, "happy": {"_count": 1}}, "as": {"_count": 1, "Death": {"_count": 1}}, "character": {"_count": 1, "": {"_count": 1}}, "behavior": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "school": {"_count": 1}}, "in": {"_count": 2, "Azkaban": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "Death": {"_count": 1}}, "bizarre": {"_count": 1, "views": {"_count": 1}}, "capture": {"_count": 1, "and": {"_count": 1}}, "friends": {"_count": 1, "had": {"_count": 1}}, "ring": {"_count": 1, "had": {"_count": 1}}, "action": {"_count": 1, "and": {"_count": 1}}, "arrival": {"_count": 1, "George": {"_count": 1}}, "peculiar": {"_count": 1, "views": {"_count": 1}}, "SHUT": {"_count": 1, "UP": {"_count": 1}}, "Harry": {"_count": 1, "lied": {"_count": 1}}, "unusually": {"_count": 1, "stern": {"_count": 1}}, "stag": {"_count": 1, "kept": {"_count": 1}}}, "drawling": {"_count": 11, "voice": {"_count": 9, "": {"_count": 2}, "of": {"_count": 4}, "from": {"_count": 1}, "drifting": {"_count": 1}, "said": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "delighted": {"_count": 1, "voice": {"_count": 1}}}, "drag": {"_count": 17, "them": {"_count": 1, "off": {"_count": 1}}, "Harry": {"_count": 2, "away": {"_count": 1}, "shook": {"_count": 1}}, "his": {"_count": 3, "trunk": {"_count": 2}, "hand": {"_count": 1}}, "him": {"_count": 3, "outside": {"_count": 1}, "back": {"_count": 1}, "down": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "werewolf": {"_count": 1}, "body": {"_count": 1}}, "himself": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "into": {"_count": 1}}, "back": {"_count": 2, "the": {"_count": 1}, "those": {"_count": 1}}}, "brooms": {"_count": 55, "": {"_count": 17, ".": {"_count": 13}, "?": {"_count": 1}, "!": {"_count": 3}}, "saying": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 1, "horses": {"_count": 1}}, "without": {"_count": 1, "sliding": {"_count": 1}}, "steady": {"_count": 1, "rise": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "thought": {"_count": 1, "it": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "rose": {"_count": 2, "up": {"_count": 1}, "into": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "my": {"_count": 1, "fathers": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "gold": {"_count": 1, "could": {"_count": 1}}, "than": {"_count": 1, "us": {"_count": 1}}, "were": {"_count": 2, "clearly": {"_count": 1}, "soaring": {"_count": 1}}, "at": {"_count": 1, "team": {"_count": 1}}, "put": {"_count": 1, "together": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "Britain": {"_count": 1}}, "slower": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 5, "see": {"_count": 1}, "followed": {"_count": 1}, "marched": {"_count": 1}, "hung": {"_count": 1}, "in": {"_count": 1}}, "Aidan": {"_count": 1, "Lynch": {"_count": 1}}, "thats": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "pelting": {"_count": 1, "her": {"_count": 1}}, "caused": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 1, "seventh": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "had": {"_count": 1, "shot": {"_count": 1}}, "thestrals": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 1, "thestrals": {"_count": 1}}, "soaring": {"_count": 1, "off": {"_count": 1}}}, "bully": {"_count": 9, "father": {"_count": 1, "into": {"_count": 1}}, "Neville": {"_count": 1, "Hermione": {"_count": 1}}, "their": {"_count": 1, "brains": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "Professor": {"_count": 1}}, "people": {"_count": 1, "worse": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "him": {"_count": 1, "too": {"_count": 1}}}, "smuggle": {"_count": 6, "it": {"_count": 3, "in": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}}, "as": {"_count": 1, "many": {"_count": 1}}, "things": {"_count": 1, "away": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}}, "broom": {"_count": 174, "": {"_count": 32, "?": {"_count": 3}, ".": {"_count": 26}, "!": {"_count": 3}}, "called": {"_count": 1, "Madam": {"_count": 1}}, "jumped": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 20, "WHAM": {"_count": 1}, "kicked": {"_count": 4}, "lets": {"_count": 1}, "made": {"_count": 1}, "zoomed": {"_count": 1}, "looked": {"_count": 1}, "began": {"_count": 2}, "flown": {"_count": 1}, "returned": {"_count": 1}, "leaving": {"_count": 1}, "savor": {"_count": 1}, "fell": {"_count": 1}, "there": {"_count": 1}, "with": {"_count": 1}, "rose": {"_count": 1}, "lay": {"_count": 1}}, "tightly": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "steady": {"_count": 1, "": {"_count": 1}}, "handle": {"_count": 4, "down": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "straight": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Professor": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 4, "her": {"_count": 1}, "the": {"_count": 3}}, "spun": {"_count": 1, "off": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 6, "trying": {"_count": 1}, "completely": {"_count": 1}, "behaving": {"_count": 1}, "vibrating": {"_count": 1}, "probably": {"_count": 1}, "ablaze": {"_count": 1}}, "had": {"_count": 2, "started": {"_count": 1}, "given": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "his": {"_count": 1}, "Moody": {"_count": 1}}, "would": {"_count": 1, "jump": {"_count": 1}}, "acted": {"_count": 1, "like": {"_count": 1}}, "at": {"_count": 2, "these": {"_count": 1}, "it": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "is": {"_count": 1}}, "a": {"_count": 3, "foot": {"_count": 1}, "look": {"_count": 1}, "right": {"_count": 1}}, "Rons": {"_count": 1, "old": {"_count": 1}}, "cupboard": {"_count": 9, "": {"_count": 6}, "was": {"_count": 1}, "and": {"_count": 1}, "then": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 2, "knee": {"_count": 1}, "stays": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "closet": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "when": {"_count": 2, "Professor": {"_count": 1}, "none": {"_count": 1}}, "for": {"_count": 2, "long": {"_count": 1}, "you": {"_count": 1}}, "firmly": {"_count": 1, "by": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "soared": {"_count": 1}}, "THE": {"_count": 1, "FIREBOLT": {"_count": 1}}, "sports": {"_count": 1, "a": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "choice": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "just": {"_count": 1, "yet": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 1}, "Marcus": {"_count": 1}, "Zacharias": {"_count": 1}, "Harper": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "ride": {"_count": 1, "": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "dropped": {"_count": 1}}, "completely": {"_count": 1, "winded": {"_count": 1}}, "All": {"_count": 1, "right": {"_count": 1}}, "Dad": {"_count": 1, "he": {"_count": 1}}, "tail": {"_count": 1, "alight": {"_count": 1}}, "Ive": {"_count": 1, "only": {"_count": 1}}, "only": {"_count": 1, "once": {"_count": 1}}, "to": {"_count": 3, "buy": {"_count": 1}, "anybody": {"_count": 1}, "look": {"_count": 1}}, "an": {"_count": 1, "ecstatic": {"_count": 1}}, "tampering": {"_count": 1, "and": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "nevertheless": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "Saturday": {"_count": 1}}, "from": {"_count": 1, "another": {"_count": 1}}, "stretching": {"_count": 1, "toward": {"_count": 1}}, "upward": {"_count": 1, "holding": {"_count": 1}}, "luckily": {"_count": 1, "he": {"_count": 1}}, "over": {"_count": 1, "by": {"_count": 1}}, "lay": {"_count": 1, "abandoned": {"_count": 1}}, "crashes": {"_count": 1, "etc": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "shed": {"_count": 4, "in": {"_count": 1}, "": {"_count": 2}, "door": {"_count": 1}}, "away": {"_count": 1, "when": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "nearest": {"_count": 1, "him": {"_count": 1}}, "Madam": {"_count": 1, "Rosmerta": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "shudder": {"_count": 1, "when": {"_count": 1}}, "Whym": {"_count": 1, "I": {"_count": 1}}, "after": {"_count": 1, "he": {"_count": 1}}, "materialized": {"_count": 1, "directly": {"_count": 1}}, "into": {"_count": 1, "Lupins": {"_count": 1}}, "You": {"_count": 1, "did": {"_count": 1}}, "roaring": {"_count": 1, "with": {"_count": 1}}}, "Play": {"_count": 3, "Quidditch": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 1, "your": {"_count": 1}}, "now": {"_count": 1, "reached": {"_count": 1}}}, "Quidditch": {"_count": 419, "at": {"_count": 1, "all": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 21, "?": {"_count": 5}, "!": {"_count": 2}, ".": {"_count": 14}}, "played": {"_count": 1, "up": {"_count": 1}}, "team": {"_count": 44, "": {"_count": 11}, "that": {"_count": 2}, "because": {"_count": 2}, "until": {"_count": 1}, "and": {"_count": 3}, "the": {"_count": 3}, "three": {"_count": 1}, "spattered": {"_count": 1}, "ever": {"_count": 1}, "at": {"_count": 1}, "who": {"_count": 1}, "Angelina": {"_count": 1}, "was": {"_count": 3}, "for": {"_count": 1}, "soaring": {"_count": 1}, "training": {"_count": 1}, "permission": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 1}, "Snape": {"_count": 1}, "reported": {"_count": 1}, "could": {"_count": 1}, "said": {"_count": 2}, "messed": {"_count": 1}, "all": {"_count": 1}}, "trials": {"_count": 1, "will": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 2}}, "teams": {"_count": 7, "and": {"_count": 2}, "tacked": {"_count": 1}, "will": {"_count": 1}, "or": {"_count": 1}, "practices": {"_count": 1}, "should": {"_count": 1}}, "constantly": {"_count": 1, "": {"_count": 1}}, "Through": {"_count": 4, "the": {"_count": 4}}, "Potter": {"_count": 1, "": {"_count": 1}}, "player": {"_count": 11, "himself": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "who": {"_count": 1}, "if": {"_count": 1}, "but": {"_count": 1}}, "Cup": {"_count": 27, "for": {"_count": 1}, "Im": {"_count": 1}, "whats": {"_count": 1}, "last": {"_count": 1}, "before": {"_count": 1}, "had": {"_count": 3}, "he": {"_count": 1}, "should": {"_count": 1}, "": {"_count": 7}, "the": {"_count": 1}, "since": {"_count": 1}, "lasted": {"_count": 1}, "will": {"_count": 1}, "Miss": {"_count": 1}, "in": {"_count": 3}, "this": {"_count": 1}, "was": {"_count": 1}}, "field": {"_count": 23, "at": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 6}, "bundled": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}, "owinq": {"_count": 1}, "just": {"_count": 1}, "battling": {"_count": 1}, "heads": {"_count": 1}, "together": {"_count": 1}, "made": {"_count": 1}, "in": {"_count": 1}, "tonight": {"_count": 1}, "was": {"_count": 1}, "back": {"_count": 1}, "for": {"_count": 1}, "which": {"_count": 1}}, "is": {"_count": 1, "easy": {"_count": 1}}, "only": {"_count": 1, "ends": {"_count": 1}}, "Cupll": {"_count": 1, "have": {"_count": 1}}, "practice": {"_count": 23, "three": {"_count": 1}, "Wood": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 6}, "He": {"_count": 1}, "the": {"_count": 1}, "every": {"_count": 1}, "and": {"_count": 3}, "this": {"_count": 1}, "said": {"_count": 2}, "was": {"_count": 1}, "Professor": {"_count": 1}, "before": {"_count": 1}, "homework": {"_count": 2}}, "season": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 1}, "Gryffindor": {"_count": 1}}, "foul": {"_count": 1, "and": {"_count": 1}}, "accidents": {"_count": 1, "seemed": {"_count": 1}}, "referees": {"_count": 1, "had": {"_count": 1}}, "match": {"_count": 39, "the": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 8}, "thats": {"_count": 1}, "we": {"_count": 1}, "of": {"_count": 4}, "he": {"_count": 1}, "taking": {"_count": 1}, "would": {"_count": 1}, "on": {"_count": 1}, "said": {"_count": 1}, "Malfoy": {"_count": 1}, "drew": {"_count": 1}, "I": {"_count": 1}, "at": {"_count": 2}, "you": {"_count": 1}, "could": {"_count": 1}, "against": {"_count": 5}, "Harry": {"_count": 1}, "not": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "anything": {"_count": 1}, "just": {"_count": 1}}, "pitch": {"_count": 18, "": {"_count": 2}, "specially": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 1}, "at": {"_count": 1}, "their": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 3}, "in": {"_count": 1}, "and": {"_count": 2}, "he": {"_count": 1}, "they": {"_count": 1}, "with": {"_count": 2}}, "robes": {"_count": 12, "Slytherin": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 5}, "in": {"_count": 1}, "a": {"_count": 1}, "cauldron": {"_count": 1}}, "captain": {"_count": 2, "too": {"_count": 1}, "Roger": {"_count": 1}}, "referee": {"_count": 1, "": {"_count": 1}}, "matches": {"_count": 3, "had": {"_count": 1}, "are": {"_count": 1}, "werent": {"_count": 1}}, "had": {"_count": 1, "lost": {"_count": 1}}, "fouls": {"_count": 1, "when": {"_count": 1}}, "for": {"_count": 4, "England": {"_count": 3}, "several": {"_count": 1}}, "or": {"_count": 1, "Christmas": {"_count": 1}}, "the": {"_count": 3, "most": {"_count": 2}, "other": {"_count": 1}}, "Harry": {"_count": 3, "missed": {"_count": 1}, "lied": {"_count": 1}, "assured": {"_count": 1}}, "there": {"_count": 1, "as": {"_count": 1}}, "balls": {"_count": 1, "which": {"_count": 1}}, "Supplies": {"_count": 5, "until": {"_count": 1}, "a": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "game": {"_count": 2, "before": {"_count": 1}, "of": {"_count": 1}}, "said": {"_count": 8, "Colin": {"_count": 1}, "Harry": {"_count": 2}, "Hermione": {"_count": 3}, "the": {"_count": 1}, "Ron": {"_count": 1}}, "doesnt": {"_count": 1, "end": {"_count": 1}}, "stadium": {"_count": 6, "": {"_count": 1}, "turned": {"_count": 1}, "Harry": {"_count": 1}, "came": {"_count": 1}, "in": {"_count": 1}, "no": {"_count": 1}}, "teacher": {"_count": 1, "asked": {"_count": 1}}, "and": {"_count": 7, "homework": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}, "who": {"_count": 1}, "Cho": {"_count": 1}, "got": {"_count": 1}, "Ron": {"_count": 1}}, "conditions": {"_count": 2, "": {"_count": 2}}, "things": {"_count": 3, "another": {"_count": 1}, "": {"_count": 2}}, "training": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 4}, "Harrys": {"_count": 1}, "this": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "practices": {"_count": 5, "Harry": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}, "twice": {"_count": 1}}, "evry": {"_count": 1, "hour": {"_count": 1}}, "Cupwinners": {"_count": 1, "": {"_count": 1}}, "final": {"_count": 4, "": {"_count": 2}, "drawing": {"_count": 1}, "seemed": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "World": {"_count": 38, "Cup": {"_count": 38}}, "which": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 5, "muttered": {"_count": 1}, "said": {"_count": 2}, "cornered": {"_count": 1}, "was": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "Team": {"_count": 2, "": {"_count": 2}}, "Hassan": {"_count": 1, "Mostafa": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 3, "see": {"_count": 1}, "distract": {"_count": 1}, "look": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "talk": {"_count": 1, "buried": {"_count": 1}}, "against": {"_count": 1, "Warrington": {"_count": 1}}, "terms": {"_count": 1, "correct": {"_count": 1}}, "Teams": {"_count": 3, "of": {"_count": 3}}, "days": {"_count": 1, "are": {"_count": 1}}, "League": {"_count": 2, "Headquarters": {"_count": 1}, "by": {"_count": 1}}, "even": {"_count": 2, "to": {"_count": 1}, "if": {"_count": 1}}, "tryouts": {"_count": 2, "will": {"_count": 1}, "this": {"_count": 1}}, "Captain": {"_count": 3, "": {"_count": 2}, "was": {"_count": 1}}, "players": {"_count": 3, "": {"_count": 1}, "dont": {"_count": 1}, "Hermione": {"_count": 1}}, "later": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "seasons": {"_count": 1, "about": {"_count": 1}}, "ever": {"_count": 1, "again": {"_count": 1}}, "its": {"_count": 1, "got": {"_count": 1}}, "ban": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "during": {"_count": 1}}, "was": {"_count": 2, "about": {"_count": 1}, "": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "at": {"_count": 1}}, "tickets": {"_count": 1, "and": {"_count": 1}}, "commentators": {"_count": 1, "who": {"_count": 1}}, "thats": {"_count": 1, "popular": {"_count": 1}}, "teasing": {"_count": 1, "Ron": {"_count": 1}}, "Keepers": {"_count": 1, "gloves": {"_count": 1}}, "lectures": {"_count": 1, "": {"_count": 1}}, "injury": {"_count": 1, "": {"_count": 1}}, "ha": {"_count": 1, "": {"_count": 1}}, "snapped": {"_count": 1, "Ginny": {"_count": 1}}, "with": {"_count": 1, "Ron": {"_count": 1}}, "knowledge": {"_count": 1, "negligible": {"_count": 1}}, "Krum": {"_count": 1, "was": {"_count": 1}}, "hero": {"_count": 1, "Snapes": {"_count": 1}}}, "Father": {"_count": 26, "says": {"_count": 3, "its": {"_count": 1}, "to": {"_count": 1}, "Durmstrang": {"_count": 1}}, "wont": {"_count": 1, "tell": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "youre": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 2}, "!": {"_count": 1}}, "any": {"_count": 1, "time": {"_count": 1}}, "said": {"_count": 2, "Percy": {"_count": 1}, "the": {"_count": 1}}, "feels": {"_count": 1, "hes": {"_count": 1}}, "actually": {"_count": 1, "considered": {"_count": 1}}, "Christmas": {"_count": 4, "pulling": {"_count": 1}, "and": {"_count": 1}, "hats": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 2, "didnt": {"_count": 1}, "wasnt": {"_count": 1}}, "dont": {"_count": 1, "send": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "was": {"_count": 1, "talking": {"_count": 1}}, "wrote": {"_count": 1, "a": {"_count": 1}}}, "says": {"_count": 194, "its": {"_count": 8, "a": {"_count": 3}, "rubbish": {"_count": 1}, "the": {"_count": 1}, "our": {"_count": 1}, "not": {"_count": 1}, "all": {"_count": 1}}, "Hufflepuff": {"_count": 1, "are": {"_count": 1}}, "pewter": {"_count": 1, "on": {"_count": 1}}, "it": {"_count": 7, "mustve": {"_count": 1}, "should": {"_count": 1}, "was": {"_count": 2}, "himself": {"_count": 1}, "is": {"_count": 1}, "must": {"_count": 1}}, "Malfoys": {"_count": 1, "father": {"_count": 1}}, "were": {"_count": 4, "nearly": {"_count": 1}, "too": {"_count": 1}, "going": {"_count": 1}, "supposed": {"_count": 1}}, "hell": {"_count": 6, "be": {"_count": 3}, "drop": {"_count": 1}, "have": {"_count": 1}, "kill": {"_count": 1}}, "you": {"_count": 5, "were": {"_count": 1}, "are": {"_count": 1}, "saw": {"_count": 1}, "need": {"_count": 1}, "four": {"_count": 1}}, "Dumbledores": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 8, "centaurs": {"_count": 1}, "school": {"_count": 1}, "inn": {"_count": 1}, "crystal": {"_count": 1}, "champions": {"_count": 1}, "other": {"_count": 1}, "Ministrys": {"_count": 1}, "diadem": {"_count": 1}}, "thats": {"_count": 2, "a": {"_count": 1}, "rubbish": {"_count": 1}}, "hes": {"_count": 9, "done": {"_count": 1}, "going": {"_count": 2}, "heard": {"_count": 1}, "not": {"_count": 1}, "ill": {"_count": 1}, "back": {"_count": 1}, "been": {"_count": 1}, "put": {"_count": 1}}, "My": {"_count": 1, "wife": {"_count": 1}}, "that": {"_count": 6, "it": {"_count": 1}, "Harry": {"_count": 1}, "hes": {"_count": 1}, "counterjinxes": {"_count": 1}, "Ill": {"_count": 1}, "once": {"_count": 1}}, "to": {"_count": 3, "keep": {"_count": 1}, "Dobby": {"_count": 1}, "me": {"_count": 1}}, "so": {"_count": 2, "": {"_count": 1}, "You": {"_count": 1}}, "Percys": {"_count": 1, "Head": {"_count": 1}}, "he": {"_count": 14, "is": {"_count": 2}, "never": {"_count": 1}, "will": {"_count": 1}, "didnt": {"_count": 1}, "wants": {"_count": 2}, "needs": {"_count": 1}, "misses": {"_count": 1}, "doesnt": {"_count": 1}, "saw": {"_count": 2}, "cant": {"_count": 1}, "wont": {"_count": 1}}, "\u2018Give": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 2}}, "Ive": {"_count": 2, "got": {"_count": 1}, "given": {"_count": 1}}, "shell": {"_count": 3, "be": {"_count": 1}, "get": {"_count": 1}, "have": {"_count": 1}}, "Berthas": {"_count": 2, "gotten": {"_count": 1}, "perfectly": {"_count": 1}}, "go": {"_count": 1, "find": {"_count": 1}}, "and": {"_count": 3, "next": {"_count": 1}, "they": {"_count": 1}, "raise": {"_count": 1}}, "on": {"_count": 4, "your": {"_count": 1}, "the": {"_count": 2}, "no": {"_count": 1}}, "someone": {"_count": 1, "tried": {"_count": 1}}, "Durmstrang": {"_count": 1, "takes": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "home": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "before": {"_count": 1, "hastily": {"_count": 1}}, "Hermione": {"_count": 1, "went": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "Crouch": {"_count": 2, "is": {"_count": 2}}, "Snapes": {"_count": 1, "been": {"_count": 1}}, "will": {"_count": 1, "persuade": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 3, "a": {"_count": 1}, "to": {"_count": 1}, "lying": {"_count": 1}}, "youve": {"_count": 2, "got": {"_count": 2}}, "Fudge": {"_count": 1, "has": {"_count": 1}}, "we": {"_count": 1, "should": {"_count": 1}}, "\u2018ere": {"_count": 1, "Dung": {"_count": 1}}, "\u2018Nicked": {"_count": 1, "all": {"_count": 1}}, "get": {"_count": 1, "up": {"_count": 1}}, "then": {"_count": 1, "muttered": {"_count": 1}}, "this": {"_count": 1, "courts": {"_count": 1}}, "is": {"_count": 2, "not": {"_count": 1}, "only": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Doris": {"_count": 1, "Purkiss": {"_count": 1}}, "Mrs": {"_count": 1, "Purkiss": {"_count": 1}}, "if": {"_count": 1, "Dumbledore": {"_count": 1}}, "she": {"_count": 4, "thinks": {"_count": 1}, "is": {"_count": 1}, "knows": {"_count": 1}, "believes": {"_count": 1}}, "here": {"_count": 3, "shes": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}}, "they": {"_count": 2, "generally": {"_count": 1}, "got": {"_count": 1}}, "\u2018Snuffles": {"_count": 1, "on": {"_count": 1}}, "about": {"_count": 2, "counterjinxes": {"_count": 1}, "HeWho": {"_count": 1}}, "\u2018counterjinx": {"_count": 1, "is": {"_count": 1}}, "in": {"_count": 1, "Hogwarts": {"_count": 1}}, "theyve": {"_count": 1, "been": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "there": {"_count": 3, "will": {"_count": 1}, "isnt": {"_count": 1}, "must": {"_count": 1}}, "\u2018A": {"_count": 1, "gift": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "\u2018Stay": {"_count": 1, "where": {"_count": 1}}, "dinners": {"_count": 1, "ready": {"_count": 1}}, "his": {"_count": 2, "name": {"_count": 2}}, "your": {"_count": 1, "defenses": {"_count": 1}}, "her": {"_count": 1, "fathers": {"_count": 1}}, "\u2018111": {"_count": 1, "see": {"_count": 1}}, "people": {"_count": 2, "seem": {"_count": 1}, "find": {"_count": 1}}, "theyre": {"_count": 1, "very": {"_count": 1}}, "shes": {"_count": 1, "just": {"_count": 1}}, "\u2018Arry": {"_count": 1, "do": {"_count": 1}}, "Dads": {"_count": 1, "got": {"_count": 1}}, "began": {"_count": 1, "Ron": {"_count": 1}}, "counterclockwise": {"_count": 1, "": {"_count": 1}}, "theres": {"_count": 1, "no": {"_count": 1}}, "very": {"_count": 1, "funny": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "Veritaserum": {"_count": 1, "wont": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "Professor": {"_count": 2, "Snape": {"_count": 1}, "Burbage": {"_count": 1}}, "must": {"_count": 1, "accept": {"_count": 1}}, "Skeeter": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "nodding": {"_count": 1}}, "Bathilda": {"_count": 2, "Bagshot": {"_count": 1}, "": {"_count": 1}}, "front": {"_count": 1, "page": {"_count": 1}}, "Ig": {"_count": 1, "Ignotus": {"_count": 1}}, "Enid": {"_count": 1, "Smeek": {"_count": 1}}, "wed": {"_count": 1, "heard": {"_count": 1}}, "e": {"_count": 1, "does": {"_count": 1}}, "Gryffindor": {"_count": 1, "stole": {"_count": 1}}, "only": {"_count": 1, "purple": {"_count": 1}}, "Tonkss": {"_count": 1, "hair": {"_count": 1}}, "most": {"_count": 1, "people": {"_count": 1}}}, "crime": {"_count": 17, "if": {"_count": 1, "Im": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 1}, "?": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "fraternizing": {"_count": 1, "with": {"_count": 1}}, "so": {"_count": 1, "heinous": {"_count": 1}}, "for": {"_count": 1, "which": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "want": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "being": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}}, "play": {"_count": 79, "for": {"_count": 4, "my": {"_count": 1}, "Gryffindor": {"_count": 1}, "their": {"_count": 1}, "five": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 9}, "?": {"_count": 2}, "!": {"_count": 1}}, "with": {"_count": 4, "the": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 1}, "her": {"_count": 1}}, "because": {"_count": 1, "Wood": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Gryffindor": {"_count": 1, "still": {"_count": 1}}, "chess": {"_count": 1, "Harry": {"_count": 1}}, "a": {"_count": 4, "clean": {"_count": 1}, "simple": {"_count": 1}, "game": {"_count": 2}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "Quidditch": {"_count": 6, "for": {"_count": 1}, "right": {"_count": 1}, "said": {"_count": 2}, "even": {"_count": 1}, "Harry": {"_count": 1}}, "cards": {"_count": 1, "fer": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "fell": {"_count": 1}}, "our": {"_count": 1, "way": {"_count": 1}}, "Exploding": {"_count": 1, "Snap": {"_count": 1}}, "the": {"_count": 1, "Cup": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "you": {"_count": 1, "at": {"_count": 1}}, "on": {"_count": 3, "dragons": {"_count": 1}, "Saturday": {"_count": 1}, "Dudleys": {"_count": 1}}, "games": {"_count": 4, "on": {"_count": 1}, "in": {"_count": 2}, "with": {"_count": 1}}, "resumed": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 2, "your": {"_count": 1}, "save": {"_count": 1}}, "dirty": {"_count": 1, "like": {"_count": 1}}, "Dumbledore": {"_count": 1, "none": {"_count": 1}}, "along": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "dirty": {"_count": 1}}, "park": {"_count": 2, "smoking": {"_count": 1}, "he": {"_count": 1}}, "Keeper": {"_count": 1, "are": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "childish": {"_count": 1, "games": {"_count": 1}}, "Hufflepuff": {"_count": 1, "we": {"_count": 1}}, "little": {"_count": 1, "bitty": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "tomorrow": {"_count": 1, "but": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "regularly": {"_count": 1, "he": {"_count": 1}}, "every": {"_count": 1, "position": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 1, "further": {"_count": 1}}}, "House": {"_count": 171, "and": {"_count": 8, "I": {"_count": 2}, "the": {"_count": 1}, "are": {"_count": 1}, "generally": {"_count": 1}, "then": {"_count": 1}, "saw": {"_count": 1}, "take": {"_count": 1}}, "you": {"_count": 5, "11": {"_count": 1}, "know": {"_count": 1}, "should": {"_count": 1}, "will": {"_count": 1}, "were": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "Im": {"_count": 1, "in": {"_count": 1}}, "are": {"_count": 1, "your": {"_count": 1}}, "Vol": {"_count": 1, "I": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "sleep": {"_count": 1, "in": {"_count": 1}}, "dormitory": {"_count": 1, "and": {"_count": 1}}, "common": {"_count": 3, "room": {"_count": 1}, "rooms": {"_count": 2}}, "has": {"_count": 2, "its": {"_count": 1}, "ever": {"_count": 1}}, "points": {"_count": 6, "while": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "and": {"_count": 1}, "spilled": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "cup": {"_count": 1, "a": {"_count": 1}}, "becomes": {"_count": 1, "yours": {"_count": 1}}, "for": {"_count": 2, "people": {"_count": 1}, "your": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "Championship": {"_count": 6, "this": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}, "beating": {"_count": 1}, "last": {"_count": 1}}, "teams": {"_count": 2, "should": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 12}, "!": {"_count": 3}, "?": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "Sirius": {"_count": 1}}, "Quidditch": {"_count": 7, "teams": {"_count": 3}, "team": {"_count": 4}}, "player": {"_count": 2, "in": {"_count": 2}}, "Cup": {"_count": 11, "and": {"_count": 2}, "": {"_count": 3}, "for": {"_count": 3}, "here": {"_count": 1}, "if": {"_count": 1}, "you": {"_count": 1}}, "fifty": {"_count": 2, "points": {"_count": 2}}, "sixty": {"_count": 1, "points": {"_count": 1}}, "team": {"_count": 2, "": {"_count": 2}}, "that": {"_count": 1, "had": {"_count": 1}}, "Slytherin": {"_count": 1, "Snape": {"_count": 1}}, "they": {"_count": 3, "were": {"_count": 2}, "would": {"_count": 1}}, "was": {"_count": 5, "still": {"_count": 1}, "very": {"_count": 1}, "calling": {"_count": 1}, "obsessed": {"_count": 1}, "now": {"_count": 1}}, "tables": {"_count": 18, "were": {"_count": 5}, "was": {"_count": 1}, "had": {"_count": 3}, "": {"_count": 1}, "the": {"_count": 1}, "above": {"_count": 1}, "in": {"_count": 1}, "Professor": {"_count": 1}, "reappeared": {"_count": 1}, "and": {"_count": 1}, "lined": {"_count": 1}, "but": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "He": {"_count": 1, "walked": {"_count": 1}}, "said": {"_count": 3, "the": {"_count": 1}, "I": {"_count": 1}, "Hermione": {"_count": 1}}, "dormitories": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 2, "played": {"_count": 1}, "belonged": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "stayed": {"_count": 1, "awake": {"_count": 1}}, "to": {"_count": 3, "get": {"_count": 1}, "tell": {"_count": 1}, "decide": {"_count": 1}}, "took": {"_count": 1, "up": {"_count": 1}}, "meanwhile": {"_count": 1, "largely": {"_count": 1}}, "championship": {"_count": 1, "for": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "had": {"_count": 3, "still": {"_count": 1}, "come": {"_count": 1}, "turned": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "bore": {"_count": 1, "no": {"_count": 1}}, "table": {"_count": 1, "Harry": {"_count": 1}}, "red": {"_count": 1, "with": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "very": {"_count": 1, "rarely": {"_count": 1}}, "hadnt": {"_count": 1, "had": {"_count": 1}}, "ghost": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "which": {"_count": 1}, "Slytherin": {"_count": 1}}, "as": {"_count": 2, "Euan": {"_count": 1}, "usual": {"_count": 1}}, "Hogwarts": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "Dolores": {"_count": 1, "": {"_count": 1}}, "notice": {"_count": 1, "boards": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "asked": {"_count": 1}}, "the": {"_count": 1, "top": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "tryout": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "forget": {"_count": 1}}, "almost": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 2, "talk": {"_count": 1}, "follow": {"_count": 1}}, "shouted": {"_count": 1, "Quiet": {"_count": 1}}, "converged": {"_count": 1, "on": {"_count": 1}}, "an": {"_count": 1, "the": {"_count": 1}}, "prices": {"_count": 1, "are": {"_count": 1}}, "Borgin": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "you": {"_count": 1}}, "anymore": {"_count": 1, "All": {"_count": 1}}, "played": {"_count": 1, "its": {"_count": 1}}}, "11": {"_count": 27, "be": {"_count": 8, "in": {"_count": 1}, "happy": {"_count": 1}, "the": {"_count": 1}, "no": {"_count": 1}, "announcing": {"_count": 1}, "queuing": {"_count": 1}, "": {"_count": 1}, "claiming": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "forgive": {"_count": 1, "me": {"_count": 1}}, "happen": {"_count": 1, "if": {"_count": 1}}, "say": {"_count": 1, "May": {"_count": 1}}, "expel": {"_count": 1, "you": {"_count": 1}}, "get": {"_count": 1, "yourself": {"_count": 1}}, "have": {"_count": 4, "no": {"_count": 1}, "to": {"_count": 3}}, "count": {"_count": 1, "against": {"_count": 1}}, "tire": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "be": {"_count": 1}}, "notice": {"_count": 1, "the": {"_count": 1}}, "find": {"_count": 3, "him": {"_count": 1}, "youre": {"_count": 1}, "you": {"_count": 1}}, "probably": {"_count": 1, "be": {"_count": 1}}, "agree": {"_count": 1, "you": {"_count": 1}}}, "Slytherin": {"_count": 326, "all": {"_count": 1, "our": {"_count": 1}}, "and": {"_count": 8, "Hufflepuff": {"_count": 1}, "the": {"_count": 1}, "Gryffindor": {"_count": 1}, "instead": {"_count": 1}, "Gryffndor": {"_count": 1}, "Pucey": {"_count": 1}, "its": {"_count": 1}, "he": {"_count": 1}}, "said": {"_count": 9, "Hagrid": {"_count": 1}, "Dumbledore": {"_count": 1}, "Professor": {"_count": 1}, "Angelina": {"_count": 1}, "Slughorn": {"_count": 1}, "Harry": {"_count": 2}, "Scabior": {"_count": 1}, "Snape": {"_count": 1}}, "": {"_count": 44, ".": {"_count": 28}, "!": {"_count": 8}, "?": {"_count": 8}}, "Youll": {"_count": 1, "make": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "not": {"_count": 1, "Slytherin": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 2, "help": {"_count": 1}, "suffice": {"_count": 1}}, "he": {"_count": 4, "hardly": {"_count": 1}, "said": {"_count": 2}, "set": {"_count": 1}}, "ghost": {"_count": 3, "": {"_count": 1}, "covered": {"_count": 1}, "a": {"_count": 1}}, "table": {"_count": 30, "and": {"_count": 5}, "": {"_count": 12}, "shoveling": {"_count": 1}, "Malfoy": {"_count": 2}, "exploded": {"_count": 1}, "hissed": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}, "where": {"_count": 1}, "there": {"_count": 1}, "yet": {"_count": 1}, "in": {"_count": 1}, "Crabbe": {"_count": 1}, "was": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "it": {"_count": 2, "got": {"_count": 1}, "was": {"_count": 1}}, "House": {"_count": 9, "": {"_count": 1}, "is": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "almost": {"_count": 1}, "to": {"_count": 1}, "played": {"_count": 1}, "will": {"_count": 1}}, "would": {"_count": 3, "be": {"_count": 2}, "help": {"_count": 1}}, "girl": {"_count": 4, "": {"_count": 1}, "who": {"_count": 1}, "with": {"_count": 1}, "holding": {"_count": 1}}, "I": {"_count": 3, "couldnt": {"_count": 1}, "would": {"_count": 1}, "am": {"_count": 1}}, "to": {"_count": 1, "win": {"_count": 1}}, "Captain": {"_count": 5, "Marcus": {"_count": 2}, "": {"_count": 1}, "Montague": {"_count": 1}, "Urquhart": {"_count": 1}}, "in": {"_count": 7, "possession": {"_count": 4}, "the": {"_count": 2}, "conditions": {"_count": 1}}, "Seeker": {"_count": 3, "Terence": {"_count": 1}, "Weasley": {"_count": 1}, "": {"_count": 1}}, "lose": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "won": {"_count": 2, "of": {"_count": 1}, "though": {"_count": 1}}, "colors": {"_count": 3, "of": {"_count": 3}}, "s": {"_count": 4, "winning": {"_count": 1}, "heir": {"_count": 1}, "power": {"_count": 1}, "first": {"_count": 1}}, "serpent": {"_count": 2, "covered": {"_count": 1}, "vanished": {"_count": 1}}, "four": {"_count": 1, "hundred": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "the": {"_count": 2, "House": {"_count": 1}, "monster": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "deliberate": {"_count": 1}}, "Snape": {"_count": 1, "taught": {"_count": 1}}, "fifth": {"_count": 3, "years": {"_count": 2}, "year": {"_count": 1}}, "spy": {"_count": 1, "trying": {"_count": 1}}, "team": {"_count": 20, "who": {"_count": 2}, "permission": {"_count": 1}, "smiled": {"_count": 1}, "": {"_count": 1}, "howled": {"_count": 1}, "were": {"_count": 4}, "had": {"_count": 1}, "was": {"_count": 2}, "jeering": {"_count": 1}, "Captain": {"_count": 1}, "arrived": {"_count": 1}, "definitely": {"_count": 1}, "led": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 1}}, "Quidditch": {"_count": 6, "robes": {"_count": 1}, "team": {"_count": 5}}, "wished": {"_count": 1, "to": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 5, "built": {"_count": 1}, "lost": {"_count": 1}, "got": {"_count": 1}, "been": {"_count": 1}, "found": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "alone": {"_count": 2, "can": {"_count": 1}, "were": {"_count": 1}}, "so": {"_count": 2, "Dumbledore": {"_count": 1}, "badly": {"_count": 1}}, "ever": {"_count": 1, "built": {"_count": 1}}, "was": {"_count": 4, "a": {"_count": 1}, "famous": {"_count": 1}, "leading": {"_count": 1}, "looming": {"_count": 1}}, "Idve": {"_count": 1, "got": {"_count": 1}}, "Houses": {"_count": 1, "reputation": {"_count": 1}}, "hes": {"_count": 1, "always": {"_count": 1}}, "common": {"_count": 11, "room": {"_count": 11}}, "is": {"_count": 2, "it": {"_count": 1}, "trying": {"_count": 1}}, "has": {"_count": 1, "better": {"_count": 1}}, "beaten": {"_count": 1, "but": {"_count": 1}}, "lead": {"_count": 1, "sixty": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "himself": {"_count": 3, "Serpenttongue": {"_count": 1}, "through": {"_count": 1}, "": {"_count": 1}}, "Harrys": {"_count": 1, "stomach": {"_count": 1}}, "seriously": {"_count": 1, "evil": {"_count": 1}}, "that": {"_count": 2, "they": {"_count": 1}, "I": {"_count": 1}}, "get": {"_count": 1, "on": {"_count": 1}}, "why": {"_count": 1, "dont": {"_count": 1}}, "didnt": {"_count": 1, "want": {"_count": 1}}, "on": {"_count": 1, "four": {"_count": 1}}, "against": {"_count": 1, "famous": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "greatest": {"_count": 1, "of": {"_count": 1}}, "can": {"_count": 1, "speak": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "prized": {"_count": 1, "in": {"_count": 1}}, "first": {"_count": 1, "game": {"_count": 1}}, "who": {"_count": 2, "all": {"_count": 1}, "looks": {"_count": 1}}, "loses": {"_count": 1, "against": {"_count": 1}}, "a": {"_count": 1, "week": {"_count": 1}}, "wins": {"_count": 1, "": {"_count": 1}}, "match": {"_count": 1, "would": {"_count": 1}}, "sixth": {"_count": 1, "year": {"_count": 1}}, "goal": {"_count": 4, "posts": {"_count": 2}, "seventyten": {"_count": 1}, "hoops": {"_count": 1}}, "glittered": {"_count": 1, "on": {"_count": 1}}, "end": {"_count": 6, "": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}, "Ron": {"_count": 1}, "of": {"_count": 2}}, "crowd": {"_count": 1, "": {"_count": 1}}, "tearing": {"_count": 1, "up": {"_count": 1}}, "penalty": {"_count": 1, "": {"_count": 1}}, "Chaser": {"_count": 2, "had": {"_count": 1}, "Vaisey": {"_count": 1}}, "Beater": {"_count": 1, "Derrick": {"_count": 1}}, "Beaters": {"_count": 1, "lurched": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "player": {"_count": 1, "apart": {"_count": 1}}, "Keeper": {"_count": 4, "they": {"_count": 1}, "Miles": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}}, "from": {"_count": 2, "fen": {"_count": 1}, "their": {"_count": 1}}, "Loved": {"_count": 1, "those": {"_count": 1}}, "champion": {"_count": 1, "": {"_count": 1}}, "girls": {"_count": 6, "who": {"_count": 1}, "were": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "passed": {"_count": 1}}, "desks": {"_count": 1, "POTTER": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "prefect": {"_count": 1, "": {"_count": 1}}, "Well": {"_count": 1, "teach": {"_count": 1}}, "Took": {"_count": 1, "only": {"_count": 1}}, "departed": {"_count": 1, "And": {"_count": 1}}, "cronies": {"_count": 1, "": {"_count": 1}}, "drew": {"_count": 1, "nearer": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "practice": {"_count": 1, "so": {"_count": 1}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "section": {"_count": 1, "of": {"_count": 1}}, "stands": {"_count": 1, "below": {"_count": 1}}, "score": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 1, "luck": {"_count": 1}}, "supporters": {"_count": 1, "who": {"_count": 1}}, "players": {"_count": 2, "above": {"_count": 1}, "missing": {"_count": 1}}, "boy": {"_count": 1, "standing": {"_count": 1}}, "banner": {"_count": 1, "": {"_count": 1}}, "play": {"_count": 1, "Hufflepuff": {"_count": 1}}, "captors": {"_count": 1, "toes": {"_count": 1}}, "students": {"_count": 1, "loathed": {"_count": 1}}, "sixthyear": {"_count": 1, "compartment": {"_count": 1}}, "hankering": {"_count": 1, "after": {"_count": 1}}, "dormitory": {"_count": 1, "closely": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "connection": {"_count": 1, "which": {"_count": 1}}, "taunts": {"_count": 1, "to": {"_count": 1}}, "column": {"_count": 1, "wearing": {"_count": 1}}, "family": {"_count": 1, "": {"_count": 1}}, "headmaster": {"_count": 1, "since": {"_count": 1}}, "hourglass": {"_count": 1, "that": {"_count": 1}}, "friend": {"_count": 1, "": {"_count": 1}}}, "Hufflepuff": {"_count": 104, "I": {"_count": 1, "think": {"_count": 1}}, "": {"_count": 9, "?": {"_count": 2}, "!": {"_count": 2}, ".": {"_count": 5}}, "are": {"_count": 2, "a": {"_count": 1}, "waiting": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "than": {"_count": 1, "Slytherin": {"_count": 1}}, "Ravenclaw": {"_count": 3, "and": {"_count": 3}}, "Where": {"_count": 1, "they": {"_count": 1}}, "table": {"_count": 9, "": {"_count": 4}, "to": {"_count": 1}, "Ernie": {"_count": 1}, "and": {"_count": 2}, "before": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "too": {"_count": 2, "much": {"_count": 1}, "Stebbins": {"_count": 1}}, "a": {"_count": 1, "penalty": {"_count": 1}}, "another": {"_count": 1, "penalty": {"_count": 1}}, "with": {"_count": 2, "three": {"_count": 1}, "the": {"_count": 1}}, "were": {"_count": 2, "celebrating": {"_count": 1}, "anxious": {"_count": 1}}, "boy": {"_count": 2, "Harry": {"_count": 1}, "from": {"_count": 1}}, "ghost": {"_count": 1, "who": {"_count": 1}}, "Rowena": {"_count": 1, "Ravenclaw": {"_count": 1}}, "arrived": {"_count": 1, "panting": {"_count": 1}}, "didnt": {"_count": 1, "take": {"_count": 1}}, "or": {"_count": 1, "Slytherin": {"_count": 1}}, "fifth": {"_count": 1, "year": {"_count": 1}}, "spent": {"_count": 1, "much": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 5, "their": {"_count": 1}, "green": {"_count": 1}, "Professor": {"_count": 1}, "Slytherin": {"_count": 1}, "if": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "very": {"_count": 1, "seriously": {"_count": 1}}, "loses": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 5, "their": {"_count": 2}, "a": {"_count": 1}, "his": {"_count": 1}, "that": {"_count": 1}}, "tables": {"_count": 6, "were": {"_count": 2}, "": {"_count": 2}, "all": {"_count": 1}, "to": {"_count": 1}}, "House": {"_count": 4, "Quidditch": {"_count": 1}, "very": {"_count": 1}, "": {"_count": 1}, "hadnt": {"_count": 1}}, "fourth": {"_count": 1, "year": {"_count": 1}}, "from": {"_count": 1, "valley": {"_count": 1}}, "hard": {"_count": 1, "workers": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 1, "jumped": {"_count": 1}}, "He": {"_count": 1, "paused": {"_count": 1}}, "girl": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "common": {"_count": 1, "room": {"_count": 1}}, "house": {"_count": 1, "Dumbledore": {"_count": 1}}, "111": {"_count": 1, "teach": {"_count": 1}}, "she": {"_count": 1, "took": {"_count": 1}}, "Quidditch": {"_count": 1, "team": {"_count": 1}}, "player": {"_count": 2, "in": {"_count": 1}, "whom": {"_count": 1}}, "Seeker": {"_count": 1, "Summerbys": {"_count": 1}}, "the": {"_count": 1, "Slytherins": {"_count": 1}}, "he": {"_count": 1, "drawled": {"_count": 1}}, "we": {"_count": 1, "might": {"_count": 1}}, "next": {"_count": 1, "Saturday": {"_count": 1}}, "during": {"_count": 1, "his": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "wobbling": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 1, "many": {"_count": 1}}, "team": {"_count": 1, "punished": {"_count": 1}}, "Harry": {"_count": 1, "dropped": {"_count": 1}}, "Captain": {"_count": 1, "and": {"_count": 1}}, "players": {"_count": 1, "got": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "cups": {"_count": 1, "burst": {"_count": 1}}, "set": {"_count": 1, "against": {"_count": 1}}}, "Mmm": {"_count": 5, "said": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "Right": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 1}, "?": {"_count": 1}}}, "interesting": {"_count": 67, "": {"_count": 15, ".": {"_count": 12}, "?": {"_count": 3}}, "as": {"_count": 3, "Ron": {"_count": 2}, "the": {"_count": 1}}, "but": {"_count": 3, "the": {"_count": 2}, "then": {"_count": 1}}, "stuff": {"_count": 1, "For": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "read": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}, "mirror": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "dangerous": {"_count": 1}, "frankly": {"_count": 1}, "everything": {"_count": 1}}, "facts": {"_count": 1, "about": {"_count": 1}}, "question": {"_count": 3, "said": {"_count": 2}, "Harry": {"_count": 1}}, "they": {"_count": 1, "became": {"_count": 1}}, "local": {"_count": 1, "history": {"_count": 1}}, "powers": {"_count": 1, "": {"_count": 1}}, "place": {"_count": 1, "isnt": {"_count": 1}}, "first": {"_count": 1, "day": {"_count": 1}}, "creatures": {"_count": 1, "and": {"_count": 1}}, "news": {"_count": 1, "Wormtail": {"_count": 1}}, "year": {"_count": 1, "said": {"_count": 1}}, "dinner": {"_count": 1, "I": {"_count": 1}}, "arent": {"_count": 2, "they": {"_count": 2}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "pastime": {"_count": 1, "than": {"_count": 1}}, "enough": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "exciting": {"_count": 1}}, "television": {"_count": 1, "program": {"_count": 1}}, "much": {"_count": 2, "longer": {"_count": 1}, "more": {"_count": 1}}, "to": {"_count": 3, "see": {"_count": 1}, "the": {"_count": 1}, "talk": {"_count": 1}}, "class": {"_count": 1, "was": {"_count": 1}}, "insight": {"_count": 1, "into": {"_count": 1}}, "day": {"_count": 1, "trip": {"_count": 1}}, "clientele": {"_count": 1, "than": {"_count": 1}}, "thing": {"_count": 1, "that": {"_count": 1}}, "than": {"_count": 1, "trying": {"_count": 1}}, "was": {"_count": 1, "written": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "sideshow": {"_count": 1, "": {"_count": 1}}, "curio": {"_count": 1, "": {"_count": 1}}}, "grinning": {"_count": 120, "at": {"_count": 15, "Harry": {"_count": 5}, "him": {"_count": 3}, "Hermione": {"_count": 1}, "her": {"_count": 3}, "a": {"_count": 1}, "his": {"_count": 2}}, "": {"_count": 45, ".": {"_count": 44}, "?": {"_count": 1}}, "from": {"_count": 2, "ear": {"_count": 2}}, "widely": {"_count": 1, "said": {"_count": 1}}, "embarrassedly": {"_count": 1, "but": {"_count": 1}}, "airborne": {"_count": 1, "menace": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "wickedly": {"_count": 1, "surveying": {"_count": 1}}, "broadly": {"_count": 10, "caught": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "chose": {"_count": 1}}, "more": {"_count": 2, "broadly": {"_count": 2}}, "so": {"_count": 1, "Harry": {"_count": 1}}, "back": {"_count": 2, "": {"_count": 2}}, "this": {"_count": 1, "is": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}, "maliciously": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "as": {"_count": 6, "he": {"_count": 5}, "Sirius": {"_count": 1}}, "slyly": {"_count": 1, "at": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "seeing": {"_count": 1}}, "bleakly": {"_count": 1, "": {"_count": 1}}, "toothily": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 1, "from": {"_count": 1}}, "spotting": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "falling": {"_count": 1}}, "closing": {"_count": 1, "the": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "theyre": {"_count": 1, "always": {"_count": 1}}, "his": {"_count": 1, "anger": {"_count": 1}}, "now": {"_count": 1, "sure": {"_count": 1}}, "like": {"_count": 1, "you": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "shiftily": {"_count": 1, "but": {"_count": 1}}, "sheepishly": {"_count": 1, "at": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 1, "himself": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "about": {"_count": 1, "she": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "identically": {"_count": 1, "Bill": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "winked": {"_count": 1, "at": {"_count": 1}}, "they": {"_count": 1, "bit": {"_count": 1}}}, "show": {"_count": 156, "he": {"_count": 3, "couldnt": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 2, "television": {"_count": 1}, "Harrys": {"_count": 1}}, "the": {"_count": 9, "lightning": {"_count": 1}, "diary": {"_count": 1}, "others": {"_count": 1}, "moon": {"_count": 1}, "castle": {"_count": 1}, "first": {"_count": 1}, "Poisoning": {"_count": 1}, "Dark": {"_count": 1}, "wandmaker": {"_count": 1}}, "you": {"_count": 27, "look": {"_count": 1}, "now": {"_count": 1}, "what": {"_count": 2}, "the": {"_count": 3}, "my": {"_count": 2}, "just": {"_count": 1}, "Harry": {"_count": 2}, "something": {"_count": 1}, "how": {"_count": 2}, "if": {"_count": 1}, "": {"_count": 3}, "when": {"_count": 1}, "where": {"_count": 1}, "to": {"_count": 1}, "He": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 1}, "at": {"_count": 1}, "theyre": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 9, "your": {"_count": 2}, "that": {"_count": 1}, "where": {"_count": 2}, "the": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 2}}, "them": {"_count": 11, "": {"_count": 1}, "how": {"_count": 1}, "that": {"_count": 2}, "Harry": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "more": {"_count": 1}, "the": {"_count": 2}, "what": {"_count": 1}}, "that": {"_count": 6, "Voldemorts": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 2}}, "in": {"_count": 2, "a": {"_count": 1}, "wedding": {"_count": 1}}, "every": {"_count": 1, "one": {"_count": 1}}, "his": {"_count": 4, "own": {"_count": 1}, "big": {"_count": 1}, "thanks": {"_count": 1}, "feelings": {"_count": 1}}, "of": {"_count": 2, "interest": {"_count": 1}, "happiness": {"_count": 1}}, "off": {"_count": 3, "the": {"_count": 1}, "Miss": {"_count": 1}, "do": {"_count": 1}}, "a": {"_count": 4, "bit": {"_count": 1}, "sense": {"_count": 1}, "clearly": {"_count": 1}, "little": {"_count": 1}}, "what": {"_count": 1, "we": {"_count": 1}}, "it": {"_count": 3, "with": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}}, "him": {"_count": 9, "something": {"_count": 1}, "how": {"_count": 1}, "Harry": {"_count": 1}, "Madame": {"_count": 1}, "Ced": {"_count": 1}, "what": {"_count": 1}, "his": {"_count": 1}, "Voldemorts": {"_count": 2}}, "up": {"_count": 3, "on": {"_count": 1}, "pretending": {"_count": 1}, "again": {"_count": 1}}, "himself": {"_count": 3, "said": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 3, "where": {"_count": 1}, "Potter": {"_count": 1}, "what": {"_count": 1}}, "our": {"_count": 1, "colors": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "support": {"_count": 1, "for": {"_count": 1}}, "theyd": {"_count": 1, "caught": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Snape": {"_count": 2, "her": {"_count": 1}, "something": {"_count": 1}}, "yeh": {"_count": 2, "said": {"_count": 1}, "when": {"_count": 1}}, "favoritism": {"_count": 1, "me": {"_count": 1}}, "dog": {"_count": 1, "she": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "em": {"_count": 4, "all": {"_count": 1}, "Dumbledores": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "how": {"_count": 1, "much": {"_count": 1}}, "manners": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 1, "Death": {"_count": 1}}, "people": {"_count": 2, "exactly": {"_count": 1}, "to": {"_count": 1}}, "any": {"_count": 1, "not": {"_count": 1}}, "us": {"_count": 4, "all": {"_count": 1}, "how": {"_count": 1}, "this": {"_count": 1}, "that": {"_count": 1}}, "when": {"_count": 1, "Dark": {"_count": 1}}, "some": {"_count": 1, "respect": {"_count": 1}}, "itself": {"_count": 1, "in": {"_count": 1}}, "dunnit": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "Trelawney": {"_count": 1}}, "evryone": {"_count": 1, "hes": {"_count": 1}}, "thumb": {"_count": 1, "and": {"_count": 1}}, "Dumbledore": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 1, "more": {"_count": 1}}, "this": {"_count": 1, "to": {"_count": 1}}, "Mr": {"_count": 1, "Riddle": {"_count": 1}}, "and": {"_count": 1, "tell": {"_count": 1}}, "Her": {"_count": 1, "bony": {"_count": 1}}, "is": {"_count": 1, "zat": {"_count": 1}}, "curiosity": {"_count": 1, "": {"_count": 1}}, "You": {"_count": 1, "KnowWho": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "two": {"_count": 1, "missing": {"_count": 1}}, "yourselves": {"_count": 2, "when": {"_count": 1}, "in": {"_count": 1}}, "your": {"_count": 1, "devotion": {"_count": 1}}, "spirit": {"_count": 1, "and": {"_count": 1}}}, "works": {"_count": 34, "at": {"_count": 3, "Hogwarts": {"_count": 1}, "the": {"_count": 2}}, "for": {"_count": 14, "the": {"_count": 9}, "Fudge": {"_count": 2}, "me": {"_count": 1}, "Magical": {"_count": 1}, "you": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "of": {"_count": 1, "Gilderoy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "correctly": {"_count": 1, "it": {"_count": 1}}, "hissed": {"_count": 1, "Snape": {"_count": 1}}, "tomorrow": {"_count": 1, "Harry": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "the": {"_count": 1, "right": {"_count": 1}}, "against": {"_count": 1, "them": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "though": {"_count": 1, "sir": {"_count": 1}}, "we": {"_count": 1, "will": {"_count": 1}}, "or": {"_count": 1, "why": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}}, "servant": {"_count": 39, "isnt": {"_count": 1, "he": {"_count": 1}}, "stuff": {"_count": 1, "its": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "said": {"_count": 2, "George": {"_count": 1}, "Wormtail": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "I": {"_count": 2}, "who": {"_count": 1}, "it": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "will": {"_count": 2, "break": {"_count": 1}, "have": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "was": {"_count": 2, "going": {"_count": 2}}, "would": {"_count": 1, "help": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 2}}, "for": {"_count": 1, "Frank": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "who": {"_count": 3, "forgets": {"_count": 1}, "would": {"_count": 2}}, "wwillingly": {"_count": 1, "given": {"_count": 1}}, "died": {"_count": 1, "when": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 2, "needed": {"_count": 1}, "learned": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "perhaps": {"_count": 1, "the": {"_count": 1}}, "unworthy": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "turned": {"_count": 1}}}, "liking": {"_count": 17, "the": {"_count": 1, "boy": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "for": {"_count": 5, "them": {"_count": 1}, "large": {"_count": 1}, "giving": {"_count": 1}, "grandeur": {"_count": 1}, "very": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "heights": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 5, "get": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 2}, "me": {"_count": 1}}, "him": {"_count": 1, "oh": {"_count": 1}}}, "savage": {"_count": 13, "lives": {"_count": 1, "in": {"_count": 1}}, "triumph": {"_count": 2, "looking": {"_count": 1}, "": {"_count": 1}}, "quill": {"_count": 1, "has": {"_count": 1}}, "pleasure": {"_count": 3, "that": {"_count": 1}, "in": {"_count": 1}, "Now": {"_count": 1}}, "urge": {"_count": 1, "to": {"_count": 1}}, "werewolf": {"_count": 1, "alive": {"_count": 1}}, "what": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "wellpublicized": {"_count": 1}}, "for": {"_count": 1, "that": {"_count": 1}}, "beast": {"_count": 1, "that": {"_count": 1}}}, "lives": {"_count": 62, "in": {"_count": 15, "a": {"_count": 1}, "the": {"_count": 4}, "it": {"_count": 1}, "fear": {"_count": 1}, "disguise": {"_count": 1}, "Dumbledores": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 1}, "said": {"_count": 1}, "Godrics": {"_count": 3}}, "right": {"_count": 1, "to": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 12}, "!": {"_count": 2}, "?": {"_count": 1}}, "here": {"_count": 4, "": {"_count": 2}, "said": {"_count": 2}}, "to": {"_count": 3, "keep": {"_count": 1}, "serve": {"_count": 1}, "fight": {"_count": 1}}, "Peter": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "and": {"_count": 2, "drown": {"_count": 1}, "are": {"_count": 1}}, "of": {"_count": 1, "violence": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "somehow": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Harry": {"_count": 1}}, "they": {"_count": 1, "lead": {"_count": 1}}, "like": {"_count": 1, "so": {"_count": 1}}, "on": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "might": {"_count": 1}}, "now": {"_count": 1, "I": {"_count": 1}}, "is": {"_count": 1, "due": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "twice": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}}, "grounds": {"_count": 211, "and": {"_count": 15, "every": {"_count": 1}, "especially": {"_count": 1}, "into": {"_count": 2}, "flopping": {"_count": 1}, "a": {"_count": 1}, "enter": {"_count": 1}, "the": {"_count": 3}, "Hogsmeade": {"_count": 1}, "Professor": {"_count": 1}, "saw": {"_count": 1}, "through": {"_count": 1}, "from": {"_count": 1}}, "is": {"_count": 3, "forbidden": {"_count": 1}, "outofbounds": {"_count": 1}, "out": {"_count": 1}}, "": {"_count": 62, ".": {"_count": 60}, "!": {"_count": 2}}, "for": {"_count": 4, "their": {"_count": 1}, "lunch": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 6, "the": {"_count": 2}, "Hagrids": {"_count": 1}, "Hagrid": {"_count": 1}, "watch": {"_count": 1}, "a": {"_count": 1}}, "carrying": {"_count": 1, "Hagrids": {"_count": 1}}, "with": {"_count": 7, "Professor": {"_count": 1}, "Fang": {"_count": 1}, "Hagrid": {"_count": 1}, "Madam": {"_count": 1}, "Madame": {"_count": 1}, "Bill": {"_count": 1}, "her": {"_count": 1}}, "toward": {"_count": 8, "the": {"_count": 6}, "one": {"_count": 1}, "him": {"_count": 1}}, "but": {"_count": 4, "I": {"_count": 1}, "his": {"_count": 1}, "Lupin": {"_count": 1}, "could": {"_count": 1}}, "descended": {"_count": 1, "on": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "Dumbledore": {"_count": 2, "continued": {"_count": 1}, "was": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 1}, "Harry": {"_count": 1}, "had": {"_count": 2}}, "were": {"_count": 9, "revealed": {"_count": 1}, "still": {"_count": 1}, "very": {"_count": 2}, "quite": {"_count": 1}, "in": {"_count": 1}, "gleaming": {"_count": 1}, "bathed": {"_count": 1}, "silent": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "fairly": {"_count": 1, "hard": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "they": {"_count": 1}}, "the": {"_count": 2, "castle": {"_count": 1}, "forest": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "stop": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "talking": {"_count": 1}}, "las": {"_count": 1, "night": {"_count": 1}}, "of": {"_count": 6, "the": {"_count": 2}, "Hogwarts": {"_count": 3}, "this": {"_count": 1}}, "amounted": {"_count": 1, "almost": {"_count": 1}}, "his": {"_count": 1, "arms": {"_count": 1}}, "signaling": {"_count": 1, "the": {"_count": 1}}, "how": {"_count": 1, "often": {"_count": 1}}, "excitedly": {"_count": 1, "but": {"_count": 1}}, "they": {"_count": 3, "had": {"_count": 2}, "hauled": {"_count": 1}}, "among": {"_count": 1, "them": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "in": {"_count": 2, "the": {"_count": 2}}, "larger": {"_count": 1, "even": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "havent": {"_count": 1, "I": {"_count": 1}}, "said": {"_count": 6, "Ron": {"_count": 1}, "Fudge": {"_count": 1}, "Hermione": {"_count": 1}, "Tonks": {"_count": 1}, "Harry": {"_count": 1}, "Voldemort": {"_count": 1}}, "Ron": {"_count": 2, "said": {"_count": 1}, "bringing": {"_count": 1}}, "then": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "never": {"_count": 1, "looked": {"_count": 1}}, "Harry": {"_count": 5, "if": {"_count": 1}, "could": {"_count": 2}, "leaned": {"_count": 1}, "rolled": {"_count": 1}}, "will": {"_count": 1, "not": {"_count": 1}}, "completely": {"_count": 1, "they": {"_count": 1}}, "find": {"_count": 1, "Cornelius": {"_count": 1}}, "enjoying": {"_count": 2, "what": {"_count": 1}, "the": {"_count": 1}}, "sliding": {"_count": 1, "and": {"_count": 1}}, "outside": {"_count": 3, "where": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "indicated": {"_count": 1}}, "followed": {"_count": 1, "immediately": {"_count": 1}}, "a": {"_count": 2, "man": {"_count": 1}, "long": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "had": {"_count": 1, "woken": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "carpeted": {"_count": 1, "in": {"_count": 1}}, "by": {"_count": 2, "now": {"_count": 1}, "twilight": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "checking": {"_count": 1, "to": {"_count": 1}}, "Theres": {"_count": 1, "a": {"_count": 1}}, "Without": {"_count": 1, "another": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "bursts": {"_count": 1}}, "that": {"_count": 1, "seemed": {"_count": 1}}, "felt": {"_count": 1, "as": {"_count": 1}}, "crashing": {"_count": 1, "upon": {"_count": 1}}}, "drunk": {"_count": 12, "tries": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "it": {"_count": 1, "well": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "so": {"_count": 1, "clear": {"_count": 1}}, "anything": {"_count": 1, "offered": {"_count": 1}}, "monks": {"_count": 1, "down": {"_count": 1}}, "regularly": {"_count": 1, "for": {"_count": 1}}, "its": {"_count": 1, "fill": {"_count": 1}}}, "tries": {"_count": 8, "to": {"_count": 6, "do": {"_count": 1}, "curse": {"_count": 1}, "hide": {"_count": 1}, "frame": {"_count": 1}, "kill": {"_count": 1}, "talk": {"_count": 1}}, "Vanishing": {"_count": 1, "them": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}}, "ends": {"_count": 39, "up": {"_count": 2, "setting": {"_count": 1}, "sorting": {"_count": 1}}, "of": {"_count": 18, "Scabbers": {"_count": 1}, "their": {"_count": 4}, "his": {"_count": 3}, "a": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 6}, "which": {"_count": 1}, "Privet": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "when": {"_count": 1, "the": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "boys": {"_count": 1}}, "the": {"_count": 1, "famous": {"_count": 1}}, "would": {"_count": 1, "explode": {"_count": 1}}, "as": {"_count": 1, "dangerous": {"_count": 1}}, "their": {"_count": 1, "stings": {"_count": 1}}, "in": {"_count": 1, "neatly": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "my": {"_count": 1}}, "and": {"_count": 1, "locked": {"_count": 1}}, "By": {"_count": 1, "planting": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "dementors": {"_count": 1, "all": {"_count": 1}}}, "setting": {"_count": 48, "fire": {"_count": 1, "to": {"_count": 1}}, "sun": {"_count": 6, "": {"_count": 3}, "were": {"_count": 1}, "and": {"_count": 2}}, "down": {"_count": 5, "his": {"_count": 2}, "the": {"_count": 2}, "her": {"_count": 1}}, "off": {"_count": 9, "with": {"_count": 1}, "": {"_count": 2}, "bentbacked": {"_count": 1}, "if": {"_count": 1}, "at": {"_count": 1}, "again": {"_count": 1}, "across": {"_count": 1}, "for": {"_count": 1}}, "yourself": {"_count": 1, "up": {"_count": 1}}, "anything": {"_count": 1, "mad": {"_count": 1}}, "a": {"_count": 6, "a": {"_count": 1}, "world": {"_count": 1}, "huge": {"_count": 1}, "rather": {"_count": 1}, "standard": {"_count": 1}, "great": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "the": {"_count": 3, "water": {"_count": 1}, "tray": {"_count": 1}, "bell": {"_count": 1}}, "him": {"_count": 1, "free": {"_count": 1}}, "Dobby": {"_count": 1, "free": {"_count": 1}}, "them": {"_count": 3, "free": {"_count": 1}, "their": {"_count": 1}, "homework": {"_count": 1}}, "out": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "Kreacher": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "Harry": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 2, "hand": {"_count": 1}, "scar": {"_count": 1}}}, "brilliant": {"_count": 64, "said": {"_count": 2, "Harry": {"_count": 2}}, "": {"_count": 16, ".": {"_count": 7}, "!": {"_count": 8}, "?": {"_count": 1}}, "or": {"_count": 1, "people": {"_count": 1}}, "ideas": {"_count": 1, "and": {"_count": 1}}, "green": {"_count": 1, "eyes": {"_count": 1}}, "sunny": {"_count": 1, "day": {"_count": 1}}, "red": {"_count": 1, "sun": {"_count": 1}}, "joke": {"_count": 1, "if": {"_count": 1}}, "teeth": {"_count": 1, "even": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}, "orange": {"_count": 1, "firedwelling": {"_count": 1}}, "theory": {"_count": 1, "Hermione": {"_count": 1}}, "sunshine": {"_count": 1, "and": {"_count": 1}}, "scheme": {"_count": 1, "Potter": {"_count": 1}}, "white": {"_count": 1, "light": {"_count": 1}}, "parentless": {"_count": 1, "but": {"_count": 1}}, "student": {"_count": 2, "Hogwarts": {"_count": 1}, "ever": {"_count": 1}}, "watersnakes": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 2, "never": {"_count": 1}, "was": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "and": {"_count": 2, "everything": {"_count": 1}, "talented": {"_count": 1}}, "blue": {"_count": 2, "sky": {"_count": 1}, "": {"_count": 1}}, "idea": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "at": {"_count": 2, "Defense": {"_count": 1}, "Hogwarts": {"_count": 1}}, "Ron": {"_count": 1, "turned": {"_count": 1}}, "but": {"_count": 1, "compared": {"_count": 1}}, "silver": {"_count": 1, "stars": {"_count": 1}}, "glare": {"_count": 1, "he": {"_count": 1}}, "plan": {"_count": 1, "now": {"_count": 1}}, "flame": {"_count": 1, "issued": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "speck": {"_count": 1, "of": {"_count": 1}}, "young": {"_count": 2, "wizard": {"_count": 1}, "boys": {"_count": 1}}, "pink": {"_count": 1, "set": {"_count": 1}}, "wizard": {"_count": 1, "": {"_count": 1}}, "congrat": {"_count": 1, "All": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}, "Patronus": {"_count": 1, "": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}, "brother": {"_count": 1, "": {"_count": 1}}}, "slight": {"_count": 58, "sneer": {"_count": 3, "": {"_count": 1}, "curling": {"_count": 1}, "said": {"_count": 1}}, "cough": {"_count": 1, "which": {"_count": 1}}, "bump": {"_count": 1, "they": {"_count": 1}}, "stiffness": {"_count": 1, "in": {"_count": 1}}, "quiver": {"_count": 1, "in": {"_count": 1}}, "break": {"_count": 1, "in": {"_count": 1}}, "edge": {"_count": 2, "to": {"_count": 2}}, "list": {"_count": 1, "to": {"_count": 1}}, "lurch": {"_count": 1, "in": {"_count": 1}}, "pause": {"_count": 3, "followed": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "spasm": {"_count": 1, "crossed": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "surprise": {"_count": 2, "did": {"_count": 1}, "Hermione": {"_count": 1}}, "smile": {"_count": 4, "twisting": {"_count": 1}, "": {"_count": 1}, "dawning": {"_count": 1}, "we": {"_count": 1}}, "situation": {"_count": 1, "that": {"_count": 1}}, "head": {"_count": 1, "cold": {"_count": 1}}, "thrill": {"_count": 1, "of": {"_count": 1}}, "push": {"_count": 1, "": {"_count": 1}}, "diversion": {"_count": 1, "by": {"_count": 1}}, "groan": {"_count": 1, "and": {"_count": 1}}, "shock": {"_count": 3, "Siriuss": {"_count": 1}, "when": {"_count": 1}, "Harry": {"_count": 1}}, "frown": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 1, "Kreacher": {"_count": 1}}, "pang": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "squeaking": {"_count": 1, "of": {"_count": 1}}, "difference": {"_count": 1, "in": {"_count": 1}}, "frostiness": {"_count": 1, "in": {"_count": 1}}, "breeze": {"_count": 1, "": {"_count": 1}}, "twinge": {"_count": 1, "of": {"_count": 1}}, "chill": {"_count": 1, "in": {"_count": 1}}, "adjustment": {"_count": 1, "to": {"_count": 1}}, "clearing": {"_count": 1, "of": {"_count": 1}}, "shiver": {"_count": 1, "the": {"_count": 1}}, "limp": {"_count": 1, "": {"_count": 1}}, "annoyance": {"_count": 1, "however": {"_count": 1}}, "hiccup": {"_count": 1, "": {"_count": 1}}, "crease": {"_count": 1, "between": {"_count": 1}}, "rattle": {"_count": 1, "from": {"_count": 1}}, "squirm": {"_count": 1, "of": {"_count": 1}}, "possibility": {"_count": 1, "that": {"_count": 1}}, "figure": {"_count": 1, "retreating": {"_count": 1}}, "flexing": {"_count": 1, "movement": {"_count": 1}}, "blackhaired": {"_count": 1, "like": {"_count": 1}}, "movements": {"_count": 1, "around": {"_count": 1}}, "cushioning": {"_count": 1, "effect": {"_count": 1}}}, "sneer": {"_count": 16, "": {"_count": 5, ".": {"_count": 5}}, "but": {"_count": 1, "looking": {"_count": 1}}, "at": {"_count": 2, "my": {"_count": 1}, "his": {"_count": 1}}, "curling": {"_count": 2, "his": {"_count": 2}}, "playing": {"_count": 1, "around": {"_count": 1}}, "Ron": {"_count": 1, "he": {"_count": 1}}, "firmly": {"_count": 1, "in": {"_count": 1}}, "became": {"_count": 1, "more": {"_count": 1}}, "worthy": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 1, "otherwise": {"_count": 1}}}, "surname": {"_count": 6, "anyway": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "finished": {"_count": 1}}, "was": {"_count": 2, "to": {"_count": 1}, "Prince": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "like": {"_count": 1}}}, "excuse": {"_count": 43, "to": {"_count": 17, "stop": {"_count": 1}, "go": {"_count": 1}, "knock": {"_count": 1}, "pick": {"_count": 1}, "give": {"_count": 1}, "make": {"_count": 2}, "take": {"_count": 1}, "duck": {"_count": 1}, "get": {"_count": 2}, "fail": {"_count": 1}, "sack": {"_count": 1}, "read": {"_count": 1}, "turn": {"_count": 1}, "arrest": {"_count": 2}}, "not": {"_count": 4, "to": {"_count": 4}}, "me": {"_count": 8, "": {"_count": 3}, "if": {"_count": 1}, "Im": {"_count": 1}, "Good": {"_count": 1}, "please": {"_count": 1}, "I": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "us": {"_count": 2, "Severus": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 1}, "Crouch": {"_count": 1}, "visiting": {"_count": 1}, "torturing": {"_count": 1}}, "his": {"_count": 1, "sudden": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "went": {"_count": 1, "unchallenged": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}}, "hopped": {"_count": 12, "down": {"_count": 1, "from": {"_count": 1}}, "off": {"_count": 2, "the": {"_count": 2}}, "aside": {"_count": 1, "as": {"_count": 1}}, "furiously": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "one": {"_count": 1}}, "back": {"_count": 1, "down": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "inside": {"_count": 1, "hooting": {"_count": 1}}, "from": {"_count": 1, "one": {"_count": 1}}}, "raspberry": {"_count": 5, "with": {"_count": 1, "chopped": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "tongues": {"_count": 1, "": {"_count": 1}}}, "chopped": {"_count": 1, "nuts": {"_count": 1, "": {"_count": 1}}}, "nuts": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "if": {"_count": 1, "she": {"_count": 1}}, "for": {"_count": 1, "Hedwig": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "lied": {"_count": 37, "": {"_count": 9, ".": {"_count": 8}, "!": {"_count": 1}}, "putting": {"_count": 1, "on": {"_count": 1}}, "quickly": {"_count": 2, "": {"_count": 2}}, "Hermione": {"_count": 1, "at": {"_count": 1}}, "about": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}, "defiantly": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 7, "": {"_count": 3}, "in": {"_count": 1}, "as": {"_count": 1}, "Felix": {"_count": 1}, "promptly": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}, "looking": {"_count": 1, "carefully": {"_count": 1}}, "brutally": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "to": {"_count": 4, "and": {"_count": 1}, "Tom": {"_count": 1}, "Lord": {"_count": 1}, "if": {"_count": 1}}, "Id": {"_count": 1, "just": {"_count": 1}}, "hoping": {"_count": 1, "against": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "cheered": {"_count": 15, "up": {"_count": 3, "a": {"_count": 1}, "Harry": {"_count": 1}, "when": {"_count": 1}}, "and": {"_count": 3, "clapped": {"_count": 2}, "jeered": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "madly": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "this": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "up": {"_count": 1}}}, "color": {"_count": 73, "as": {"_count": 3, "you": {"_count": 1}, "the": {"_count": 1}, "Parvatis": {"_count": 1}}, "wound": {"_count": 1, "here": {"_count": 1}}, "suddenly": {"_count": 1, "drained": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 1}, "forefinger": {"_count": 1}}, "were": {"_count": 1, "growing": {"_count": 1}}, "": {"_count": 9, "?": {"_count": 2}, ".": {"_count": 7}}, "is": {"_count": 1, "lilac": {"_count": 1}}, "was": {"_count": 2, "draining": {"_count": 2}}, "of": {"_count": 13, "a": {"_count": 1}, "your": {"_count": 2}, "sour": {"_count": 1}, "parchment": {"_count": 1}, "Pettigrews": {"_count": 1}, "straw": {"_count": 1}, "bracken": {"_count": 1}, "molten": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}, "Aunt": {"_count": 1}, "Lily": {"_count": 1}}, "and": {"_count": 8, "shadow": {"_count": 1}, "he": {"_count": 2}, "Cedric": {"_count": 1}, "texture": {"_count": 1}, "sound": {"_count": 1}, "within": {"_count": 1}, "now": {"_count": 1}}, "a": {"_count": 1, "noisy": {"_count": 1}}, "stormy": {"_count": 1, "gray": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "drained": {"_count": 1, "from": {"_count": 1}}, "rising": {"_count": 2, "in": {"_count": 2}}, "coming": {"_count": 1, "back": {"_count": 1}}, "the": {"_count": 2, "vein": {"_count": 1}, "day": {"_count": 1}}, "photograph": {"_count": 1, "of": {"_count": 1}}, "Cedric": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "remaining": {"_count": 1, "in": {"_count": 1}}, "illustrations": {"_count": 1, "of": {"_count": 1}}, "deepening": {"_count": 1, "in": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "high": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "highly": {"_count": 1, "reminiscent": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "it": {"_count": 2, "had": {"_count": 2}}, "had": {"_count": 1, "returned": {"_count": 1}}, "mounted": {"_count": 1, "the": {"_count": 1}}, "rose": {"_count": 1, "again": {"_count": 1}}}, "wrote": {"_count": 61, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "about": {"_count": 5, "you": {"_count": 3}, "me": {"_count": 1}, "him": {"_count": 1}}, "that": {"_count": 3, "law": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 12, "her": {"_count": 1}, "me": {"_count": 2}, "them": {"_count": 1}, "him": {"_count": 2}, "you": {"_count": 2}, "tell": {"_count": 1}, "Albus": {"_count": 1}, "the": {"_count": 1}, "James": {"_count": 1}}, "back": {"_count": 3, "ter": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 3, "it": {"_count": 1}, "Witch": {"_count": 1}, "a": {"_count": 1}}, "My": {"_count": 1, "name": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 2, "letters": {"_count": 1}, "lines": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "down": {"_count": 1}}, "it": {"_count": 2, "when": {"_count": 1}, "instead": {"_count": 1}}, "down": {"_count": 1, "this": {"_count": 1}}, "Dear": {"_count": 1, "Sirius": {"_count": 1}}, "Ron": {"_count": 1, "its": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "following": {"_count": 1}, "words": {"_count": 1}}, "his": {"_count": 1, "letter": {"_count": 1}}, "Hope": {"_count": 1, "youre": {"_count": 1}}, "abou": {"_count": 1, "me": {"_count": 1}}, "my": {"_count": 1, "priority": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 3, "must": {"_count": 3}}, "DUMBLEDORES": {"_count": 1, "ARMY": {"_count": 1}}, "and": {"_count": 1, "told": {"_count": 1}}, "a": {"_count": 1, "very": {"_count": 1}}, "spells": {"_count": 1, "all": {"_count": 1}}, "an": {"_count": 1, "impassioned": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "forgettin": {"_count": 2, "how": {"_count": 1, "little": {"_count": 1}}, "all": {"_count": 1, "them": {"_count": 1}}}, "wizardin": {"_count": 1, "folk": {"_count": 1, "": {"_count": 1}}}, "soccer": {"_count": 8, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "team": {"_count": 1, "trying": {"_count": 1}}, "ball": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "get": {"_count": 1}}, "Dean": {"_count": 1, "Ron": {"_count": 1}}, "players": {"_count": 1, "": {"_count": 1}}, "shorts": {"_count": 1, "and": {"_count": 1}}}, "follows": {"_count": 7, "Quidditch": {"_count": 1, "played": {"_count": 1}}, "me": {"_count": 1, "everywhere": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "That": {"_count": 1, "he": {"_count": 1}}, "logically": {"_count": 1, "that": {"_count": 1}}, "Mundungus": {"_count": 1, "will": {"_count": 1}}, "that": {"_count": 1, "where": {"_count": 1}}}, "played": {"_count": 47, "up": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 1, "England": {"_count": 1}}, "with": {"_count": 1, "chessmen": {"_count": 1}}, "by": {"_count": 1, "an": {"_count": 1}}, "in": {"_count": 3, "canary": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "Exploding": {"_count": 1, "Snap": {"_count": 1}}, "on": {"_count": 3, "broomsticks": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}}, "Seeker": {"_count": 3, "on": {"_count": 2}, "said": {"_count": 1}}, "them": {"_count": 1, "Harry": {"_count": 1}}, "Slytherin": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 3, "highly": {"_count": 1}, "trick": {"_count": 1}, "desultory": {"_count": 1}}, "Quidditch": {"_count": 3, "for": {"_count": 2}, "against": {"_count": 1}}, "their": {"_count": 1, "national": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "Chaser": {"_count": 2, "on": {"_count": 2}}, "again": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}, "across": {"_count": 2, "his": {"_count": 2}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "chess": {"_count": 1, "": {"_count": 1}}, "better": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "Hufflepuff": {"_count": 1, "in": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "against": {"_count": 1, "each": {"_count": 1}}, "the": {"_count": 1, "bagpipes": {"_count": 1}}, "my": {"_count": 1, "part": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "really": {"_count": 1, "well": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "upon": {"_count": 1, "an": {"_count": 1}}, "its": {"_count": 2, "part": {"_count": 2}}, "twoaside": {"_count": 1, "Quidditch": {"_count": 1}}, "he": {"_count": 1, "called": {"_count": 1}}}, "sorta": {"_count": 4, "hard": {"_count": 1, "ter": {"_count": 1}}, "creatures": {"_count": 1, "I": {"_count": 1}}, "sucker": {"_count": 1, "things": {"_count": 1}}, "skulked": {"_count": 1, "an": {"_count": 1}}}, "rules": {"_count": 51, "": {"_count": 16, ".": {"_count": 11}, "?": {"_count": 4}, "!": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "and": {"_count": 4, "here": {"_count": 1}, "Lee": {"_count": 1}, "Mr": {"_count": 1}, "the": {"_count": 1}}, "since": {"_count": 1, "Harry": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 3, "Quidditch": {"_count": 1}, "breeding": {"_count": 1}, "normal": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}, "Fudge": {"_count": 1}}, "into": {"_count": 1, "pieces": {"_count": 1}}, "he": {"_count": 2, "added": {"_count": 1}, "had": {"_count": 1}}, "are": {"_count": 2, "rules": {"_count": 1}, "they": {"_count": 1}}, "either": {"_count": 1, "Snape": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "What": {"_count": 1, "rules": {"_count": 1}}, "youre": {"_count": 1, "obliged": {"_count": 1}}, "carefully": {"_count": 1, "enough": {"_count": 1}}, "state": {"_count": 1, "clearly": {"_count": 1}}, "Harry": {"_count": 1, "bu": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "do": {"_count": 2, "they": {"_count": 1}, "not": {"_count": 1}}, "Big": {"_count": 1, "D": {"_count": 1}}, "from": {"_count": 1, "Argus": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "that": {"_count": 1, "Dobby": {"_count": 1}}}, "Houses": {"_count": 42, "": {"_count": 8, ".": {"_count": 6}, "?": {"_count": 2}}, "flashed": {"_count": 1, "past": {"_count": 1}}, "are": {"_count": 2, "called": {"_count": 1}, "named": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "reputation": {"_count": 1, "for": {"_count": 1}}, "will": {"_count": 1, "give": {"_count": 1}}, "should": {"_count": 1, "go": {"_count": 1}}, "by": {"_count": 1, "trying": {"_count": 1}}, "was": {"_count": 1, "at": {"_count": 1}}, "took": {"_count": 1, "place": {"_count": 1}}, "dont": {"_count": 1, "they": {"_count": 1}}, "were": {"_count": 4, "ordering": {"_count": 1}, "edging": {"_count": 1}, "seen": {"_count": 1}, "asked": {"_count": 1}}, "colors": {"_count": 1, "for": {"_count": 1}}, "eyeing": {"_count": 1, "one": {"_count": 1}}, "and": {"_count": 3, "their": {"_count": 1}, "its": {"_count": 1}, "a": {"_count": 1}}, "that": {"_count": 1, "like": {"_count": 1}}, "been": {"_count": 1, "united": {"_count": 1}}, "Because": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "maintain": {"_count": 1, "links": {"_count": 1}}, "office": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "tried": {"_count": 1, "only": {"_count": 1}}, "had": {"_count": 1, "called": {"_count": 1}}, "moved": {"_count": 1, "among": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "Slughorn": {"_count": 1, "can": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}}, "duffers": {"_count": 1, "but": {"_count": 1, "I": {"_count": 1}}}, "gloomily": {"_count": 33, "": {"_count": 19, ".": {"_count": 19}}, "youre": {"_count": 1, "going": {"_count": 1}}, "great": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "Fred": {"_count": 1}, "the": {"_count": 1}}, "referring": {"_count": 1, "to": {"_count": 1}}, "pulling": {"_count": 1, "stray": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 2, "as": {"_count": 1}, "returned": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "but": {"_count": 1, "then": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "folding": {"_count": 1, "up": {"_count": 1}}, "watching": {"_count": 1, "Hermione": {"_count": 1}}}, "Better": {"_count": 22, "Hufflepuff": {"_count": 1, "than": {"_count": 1}}, "you": {"_count": 1, "than": {"_count": 1}}, "get": {"_count": 3, "the": {"_count": 1}, "cracking": {"_count": 1}, "a": {"_count": 1}}, "save": {"_count": 1, "your": {"_count": 1}}, "not": {"_count": 3, "let": {"_count": 1}, "risk": {"_count": 1}, "make": {"_count": 1}}, "out": {"_count": 1, "than": {"_count": 1}}, "sent": {"_count": 1, "home": {"_count": 1}}, "avoid": {"_count": 1, "being": {"_count": 1}}, "wizards": {"_count": 1, "than": {"_count": 1}}, "dead": {"_count": 1, "than": {"_count": 1}}, "hurry": {"_count": 1, "up": {"_count": 1}}, "than": {"_count": 1, "Seamuss": {"_count": 1}}, "try": {"_count": 1, "though": {"_count": 1}}, "reason": {"_count": 1, "for": {"_count": 1}}, "go": {"_count": 2, "and": {"_count": 1}, "back": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Years": {"_count": 5, "an": {"_count": 1, "years": {"_count": 1}}, "and": {"_count": 1, "years": {"_count": 1}}, "back": {"_count": 1, "there": {"_count": 1}}, "Eve": {"_count": 1, "and": {"_count": 1}}, "passed": {"_count": 1, "": {"_count": 1}}}, "Flourish": {"_count": 20, "and": {"_count": 20, "Blotts": {"_count": 20}}}, "Blotts": {"_count": 20, "where": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 5}, "?": {"_count": 2}, "!": {"_count": 1}}, "today": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 2, "manager": {"_count": 1}, "dog": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "and": {"_count": 2, "Madam": {"_count": 1}, "get": {"_count": 1}}, "bookshop": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "looking": {"_count": 1, "thoroughly": {"_count": 1}}}, "paving": {"_count": 2, "stones": {"_count": 1, "bound": {"_count": 1}}, "slabs": {"_count": 1, "there": {"_count": 1}}}, "postage": {"_count": 2, "stamps": {"_count": 1, "in": {"_count": 1}}, "stamp": {"_count": 1, "which": {"_count": 1}}}, "stamps": {"_count": 6, "in": {"_count": 1, "covers": {"_count": 1}}, "on": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "covers": {"_count": 16, "of": {"_count": 1, "silk": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "on": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "turned": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 3, "cloths": {"_count": 1}, "fell": {"_count": 1}, "sundry": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "higher": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 1, "ground": {"_count": 1}}, "tapped": {"_count": 1, "each": {"_count": 1}}}, "silk": {"_count": 24, "books": {"_count": 1, "full": {"_count": 1}}, "dress": {"_count": 3, "": {"_count": 3}}, "light": {"_count": 1, "as": {"_count": 1}}, "top": {"_count": 1, "hat": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 3, "began": {"_count": 1}, "none": {"_count": 1}, "shook": {"_count": 1}}, "banners": {"_count": 1, "hung": {"_count": 1}}, "shawl": {"_count": 1, "wrapped": {"_count": 1}}, "sack": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 2, "applauding": {"_count": 1}, "visible": {"_count": 1}}, "handkerchief": {"_count": 1, "and": {"_count": 1}}, "cushions": {"_count": 1, "on": {"_count": 1}}, "gloves": {"_count": 1, "": {"_count": 1}}, "pajamas": {"_count": 2, "": {"_count": 2}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "gown": {"_count": 1, "": {"_count": 1}}, "lining": {"_count": 1, "of": {"_count": 1}}}, "symbols": {"_count": 11, "and": {"_count": 2, "a": {"_count": 1}, "Harrys": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "were": {"_count": 1}}, "lay": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "chains": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Curses": {"_count": 13, "and": {"_count": 2, "Countercurses": {"_count": 1}, "Their": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "against": {"_count": 1, "suspects": {"_count": 1}}, "an": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 1, "for": {"_count": 1}}, "from": {"_count": 1, "you": {"_count": 1}}, "flew": {"_count": 1, "past": {"_count": 1}}, "missed": {"_count": 1, "Harry": {"_count": 1}}}, "Countercurses": {"_count": 1, "Bewitch": {"_count": 1, "Your": {"_count": 1}}}, "Bewitch": {"_count": 1, "Your": {"_count": 1, "Friends": {"_count": 1}}}, "Friends": {"_count": 6, "and": {"_count": 1, "Befuddle": {"_count": 1}}, "who": {"_count": 1, "dont": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "of": {"_count": 1, "yours": {"_count": 1}}, "they": {"_count": 1, "might": {"_count": 1}}, "dont": {"_count": 1, "make": {"_count": 1}}}, "Befuddle": {"_count": 1, "Your": {"_count": 1, "Enemies": {"_count": 1}}}, "Enemies": {"_count": 5, "with": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "Latest": {"_count": 1, "Revenges": {"_count": 1, "Hair": {"_count": 1}}}, "Revenges": {"_count": 1, "Hair": {"_count": 1, "Loss": {"_count": 1}}}, "Hair": {"_count": 3, "Loss": {"_count": 1, "JellyLegs": {"_count": 1}}, "was": {"_count": 1, "sprouting": {"_count": 1}}, "Potion": {"_count": 1, "on": {"_count": 1}}}, "Loss": {"_count": 2, "JellyLegs": {"_count": 1, "TongueTying": {"_count": 1}}, "and": {"_count": 1, "fear": {"_count": 1}}}, "JellyLegs": {"_count": 4, "TongueTying": {"_count": 1, "and": {"_count": 1}}, "Jinx": {"_count": 2, "and": {"_count": 1}, "without": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "TongueTying": {"_count": 1, "and": {"_count": 1, "Much": {"_count": 1}}}, "Much": {"_count": 9, "Much": {"_count": 1, "More": {"_count": 1}}, "More": {"_count": 1, "by": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "more": {"_count": 1, "macho": {"_count": 1}}, "the": {"_count": 1, "best": {"_count": 1}}, "also": {"_count": 1, "depends": {"_count": 1}}}, "More": {"_count": 44, "by": {"_count": 1, "Professor": {"_count": 1}}, "silence": {"_count": 2, "followed": {"_count": 2}}, "than": {"_count": 8, "anything": {"_count": 1}, "once": {"_count": 3}, "he": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "fine": {"_count": 1}}, "curly": {"_count": 1, "silver": {"_count": 1}}, "loud": {"_count": 1, "clicking": {"_count": 1}}, "writing": {"_count": 1, "was": {"_count": 1}}, "boos": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 4, "stop": {"_count": 1}, "give": {"_count": 1}, "stave": {"_count": 1}, "avoid": {"_count": 1}}, "wizards": {"_count": 1, "were": {"_count": 1}}, "likely": {"_count": 1, "theres": {"_count": 1}}, "publicity": {"_count": 1, "": {"_count": 1}}, "tea": {"_count": 1, "I": {"_count": 1}}, "tears": {"_count": 2, "leaked": {"_count": 2}}, "applause": {"_count": 1, "": {"_count": 1}}, "screams": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "witches": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "less": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "recently": {"_count": 1, "said": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Killing": {"_count": 1, "Curses": {"_count": 1}}, "Rowle": {"_count": 1, "or": {"_count": 1}}, "clearly": {"_count": 1, "than": {"_count": 1}}, "shops": {"_count": 1, "than": {"_count": 1}}, "giant": {"_count": 1, "spiders": {"_count": 1}}, "for": {"_count": 1, "any": {"_count": 1}}, "footsteps": {"_count": 1, "Several": {"_count": 1}}}, "Vindictus": {"_count": 1, "Viridian": {"_count": 1, "": {"_count": 1}}}, "Viridian": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "circumstances": {"_count": 22, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "beyond": {"_count": 1, "our": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "Harry": {"_count": 1, "hadnt": {"_count": 1}}, "but": {"_count": 1, "Care": {"_count": 1}}, "and": {"_count": 1, "as": {"_count": 1}}, "include": {"_count": 1, "situations": {"_count": 1}}, "falls": {"_count": 1, "precisely": {"_count": 1}}, "it": {"_count": 1, "describes": {"_count": 1}}, "are": {"_count": 1, "fishy": {"_count": 1}}, "Im": {"_count": 1, "abou": {"_count": 1}}, "that": {"_count": 1, "led": {"_count": 1}}, "justify": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}}, "couldn": {"_count": 13, "work": {"_count": 1, "any": {"_count": 1}}, "leave": {"_count": 3, "him": {"_count": 3}}, "he": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}, "persuade": {"_count": 1, "a": {"_count": 1}}, "call": {"_count": 1, "em": {"_count": 1}}, "have": {"_count": 3, "lived": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "go": {"_count": 1, "before": {"_count": 1}}, "think": {"_count": 1, "what": {"_count": 1}}}, "curses": {"_count": 43, "yet": {"_count": 1, "yehll": {"_count": 1}}, "those": {"_count": 1, "old": {"_count": 1}}, "but": {"_count": 1, "Professor": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}, "said": {"_count": 1, "Moody": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}, "are": {"_count": 1, "most": {"_count": 1}}, "Avada": {"_count": 1, "Kedavra": {"_count": 1}}, "in": {"_count": 2, "awed": {"_count": 1}, "front": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "when": {"_count": 1, "he": {"_count": 1}}, "Hermione": {"_count": 1, "managed": {"_count": 1}}, "following": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 3, "graves": {"_count": 1}, "concealment": {"_count": 1}, "returning": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "flew": {"_count": 3, "in": {"_count": 2}, "through": {"_count": 1}}, "flying": {"_count": 5, "past": {"_count": 1}, "in": {"_count": 1}, "everywhere": {"_count": 1}, "at": {"_count": 1}, "left": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "shot": {"_count": 1, "after": {"_count": 1}}, "after": {"_count": 1, "it": {"_count": 1}}, "streaked": {"_count": 1, "past": {"_count": 1}}, "came": {"_count": 2, "shooting": {"_count": 1}, "soaring": {"_count": 1}}, "against": {"_count": 1, "Snape": {"_count": 1}}, "like": {"_count": 1, "Voldemort": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "blasted": {"_count": 1}}, "illuminating": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "hit": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "danced": {"_count": 1, "around": {"_count": 1}}}, "study": {"_count": 56, "before": {"_count": 1, "yeh": {"_count": 1}}, "the": {"_count": 4, "night": {"_count": 1}, "caretakers": {"_count": 1}, "matter": {"_count": 1}, "power": {"_count": 1}}, "Herbology": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 4, "alchemy": {"_count": 1}, "Hogwarts": {"_count": 1}, "Ancient": {"_count": 1}, "prophetic": {"_count": 1}}, "schedules": {"_count": 3, "and": {"_count": 1}, "for": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "magic": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 2, "from": {"_count": 1}, "more": {"_count": 1}}, "Divination": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "class": {"_count": 1}, "weapons": {"_count": 1}}, "and": {"_count": 2, "refuse": {"_count": 1}, "homework": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "Hogwarts": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "groups": {"_count": 1, "and": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "it": {"_count": 1, "you": {"_count": 1}}, "boys": {"_count": 1, "and": {"_count": 1}}, "knarls": {"_count": 1, "than": {"_count": 1}}, "door": {"_count": 2, "opened": {"_count": 1}, "behind": {"_count": 1}}, "Occlumency": {"_count": 2, "this": {"_count": 1}, "as": {"_count": 1}}, "Occlu": {"_count": 1, "thing": {"_count": 1}}, "schedule": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "Aurors": {"_count": 1}, "hours": {"_count": 1}}, "even": {"_count": 1, "after": {"_count": 1}}, "habits": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "reside": {"_count": 1}}, "not": {"_count": 1, "five": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "tripped": {"_count": 1, "over": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "window": {"_count": 1, "right": {"_count": 1}}, "Merlins": {"_count": 1, "pants": {"_count": 1}}, "as": {"_count": 1, "Phineas": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "ingredients": {"_count": 40, "and": {"_count": 8, "a": {"_count": 1}, "as": {"_count": 1}, "went": {"_count": 1}, "his": {"_count": 1}, "materials": {"_count": 1}, "method": {"_count": 1}, "cauldrons": {"_count": 1}, "try": {"_count": 1}}, "for": {"_count": 4, "Harry": {"_count": 1}, "true": {"_count": 1}, "the": {"_count": 1}, "Snape": {"_count": 1}}, "in": {"_count": 2, "complicated": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "into": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 2, "now": {"_count": 1}, "Scarpins": {"_count": 1}}, "have": {"_count": 1, "gone": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "todays": {"_count": 1}, "her": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "were": {"_count": 1, "easy": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "had": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 2, "Snape": {"_count": 1}, "we": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "here": {"_count": 1}}, "including": {"_count": 1, "a": {"_count": 1}}}, "collapsible": {"_count": 1, "brass": {"_count": 1, "telescope": {"_count": 1}}}, "fascinating": {"_count": 15, "enough": {"_count": 1, "to": {"_count": 1}}, "shop": {"_count": 1, "windows": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "history": {"_count": 1, "": {"_count": 1}}, "wizarding": {"_count": 1, "shops": {"_count": 1}}, "to": {"_count": 1, "study": {"_count": 1}}, "new": {"_count": 1, "Dark": {"_count": 1}}, "creatures": {"_count": 1, "called": {"_count": 1}}, "angle": {"_count": 1, "Mars": {"_count": 1}}, "Dark": {"_count": 1, "creature": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "old": {"_count": 1, "thing": {"_count": 1}}, "and": {"_count": 1, "terrible": {"_count": 1}}}, "mixture": {"_count": 28, "of": {"_count": 26, "bad": {"_count": 1}, "jealousy": {"_count": 1}, "old": {"_count": 1}, "shock": {"_count": 1}, "fear": {"_count": 3}, "clothes": {"_count": 1}, "amazement": {"_count": 1}, "alarm": {"_count": 1}, "anger": {"_count": 1}, "Muggle": {"_count": 1}, "frog": {"_count": 1}, "apprehension": {"_count": 1}, "father": {"_count": 1}, "pity": {"_count": 2}, "revulsion": {"_count": 1}, "bravado": {"_count": 1}, "the": {"_count": 1}, "dirt": {"_count": 1}, "exasperation": {"_count": 1}, "admiration": {"_count": 1}, "gratitude": {"_count": 1}, "defiance": {"_count": 1}, "desperate": {"_count": 1}}, "had": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}}, "rotted": {"_count": 2, "cabbages": {"_count": 1, "": {"_count": 1}}, "hands": {"_count": 1, "and": {"_count": 1}}}, "cabbages": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "burst": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 1, "Ginny": {"_count": 1}}}, "Barrels": {"_count": 1, "of": {"_count": 1, "slimy": {"_count": 1}}}, "slimy": {"_count": 31, "stuff": {"_count": 1, "stood": {"_count": 1}}, "something": {"_count": 1, "suspended": {"_count": 1}}, "dark": {"_count": 1, "slide": {"_count": 1}}, "walls": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "filthy": {"_count": 1, "sock": {"_count": 1}}, "sock": {"_count": 1, "and": {"_count": 1}}, "throats": {"_count": 1, "": {"_count": 1}}, "horrible": {"_count": 1, "things": {"_count": 1}}, "hand": {"_count": 1, "slid": {"_count": 1}}, "thing": {"_count": 2, "that": {"_count": 1}, "within": {"_count": 1}}, "python": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "with": {"_count": 1}}, "pieces": {"_count": 1, "": {"_count": 1}}, "grayishgreen": {"_count": 1, "rat": {"_count": 1}}, "stones": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "rubbery": {"_count": 1}, "very": {"_count": 1}, "blind": {"_count": 1}, "bald": {"_count": 1}}, "scabbed": {"_count": 2, "hands": {"_count": 1}, "hand": {"_count": 1}}, "hands": {"_count": 1, "prizing": {"_count": 1}}, "green": {"_count": 2, "hat": {"_count": 1}, "roots": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "cauliflowers": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 2, "and": {"_count": 1}, "hand": {"_count": 1}}, "dead": {"_count": 1, "objects": {"_count": 1}}}, "jars": {"_count": 10, "of": {"_count": 2, "herbs": {"_count": 1}, "ingredients": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 2, "which": {"_count": 2}}, "since": {"_count": 1, "last": {"_count": 1}}, "and": {"_count": 2, "candy": {"_count": 1}, "pouches": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "thrown": {"_count": 1, "at": {"_count": 1}}}, "herbs": {"_count": 3, "dried": {"_count": 1, "roots": {"_count": 1}}, "and": {"_count": 1, "leaves": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}}, "dried": {"_count": 16, "roots": {"_count": 1, "and": {"_count": 1}}, "nettles": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 2, "and": {"_count": 1}, "off": {"_count": 1}}, "flowers": {"_count": 4, "each": {"_count": 1}, "": {"_count": 1}, "covered": {"_count": 1}, "but": {"_count": 1}}, "out": {"_count": 2, "": {"_count": 2}}, "doxy": {"_count": 1, "droppings": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "herbs": {"_count": 1, "until": {"_count": 1}}, "essay": {"_count": 1, "before": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}}, "roots": {"_count": 49, "and": {"_count": 6, "bright": {"_count": 1}, "leaves": {"_count": 1}, "stumps": {"_count": 1}, "Harry": {"_count": 1}, "various": {"_count": 1}, "at": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "creaking": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 2, "small": {"_count": 1}, "few": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "toward": {"_count": 1, "him": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "gave": {"_count": 1}}, "with": {"_count": 2, "Malfoy": {"_count": 1}, "whiplike": {"_count": 1}}, "into": {"_count": 2, "exactly": {"_count": 1}, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "now": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "without": {"_count": 1, "being": {"_count": 1}}, "Crookshanks": {"_count": 1, "had": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "listening": {"_count": 1, "hard": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "beginning": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 2, "creaking": {"_count": 1}, "suspended": {"_count": 1}}, "his": {"_count": 1, "vocabulary": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "Harry": {"_count": 1, "bent": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "gnarled": {"_count": 1, "and": {"_count": 1}}}, "powders": {"_count": 2, "lined": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}}, "bundles": {"_count": 3, "of": {"_count": 2, "feathers": {"_count": 1}, "knotgrass": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "feathers": {"_count": 31, "strings": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "gave": {"_count": 1}, "took": {"_count": 1}, "droppings": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 2}}, "he": {"_count": 1, "noticed": {"_count": 1}}, "are": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "fell": {"_count": 1, "out": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "importantly": {"_count": 1, "stretched": {"_count": 1}}, "stubs": {"_count": 1, "of": {"_count": 1}}, "out": {"_count": 1, "he": {"_count": 1}}, "slipped": {"_count": 1, "under": {"_count": 1}}, "had": {"_count": 1, "fallen": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "sticking": {"_count": 1, "up": {"_count": 1}}, "were": {"_count": 1, "oddly": {"_count": 1}}, "on": {"_count": 1, "end": {"_count": 1}}, "became": {"_count": 1, "bedraggled": {"_count": 1}}, "apple": {"_count": 1, "cores": {"_count": 1}}, "oozing": {"_count": 1, "from": {"_count": 1}}, "zoomed": {"_count": 1, "into": {"_count": 1}}}, "strings": {"_count": 15, "of": {"_count": 4, "fangs": {"_count": 1}, "enchanted": {"_count": 1}, "beads": {"_count": 1}, "random": {"_count": 1}}, "were": {"_count": 2, "tied": {"_count": 1}, "cut": {"_count": 1}}, "that": {"_count": 1, "rose": {"_count": 1}}, "wriggled": {"_count": 1, "like": {"_count": 1}}, "still": {"_count": 1, "trailing": {"_count": 1}}, "and": {"_count": 1, "began": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "tight": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "fangs": {"_count": 40, "and": {"_count": 5, "snarled": {"_count": 1}, "tried": {"_count": 1}, "Arthurs": {"_count": 1}, "a": {"_count": 1}, "broomstick": {"_count": 1}}, "criticizing": {"_count": 1, "almost": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "were": {"_count": 1, "poisonous": {"_count": 1}}, "shrank": {"_count": 1, "and": {"_count": 1}}, "exposed": {"_count": 1, "poised": {"_count": 1}}, "or": {"_count": 1, "spit": {"_count": 1}}, "the": {"_count": 1, "Basilisk": {"_count": 1}}, "to": {"_count": 2, "sink": {"_count": 1}, "Ron": {"_count": 1}}, "long": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "for": {"_count": 1, "winegums": {"_count": 1}}, "bared": {"_count": 3, "": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "Malfoy": {"_count": 1, "gave": {"_count": 1}}, "disappointing": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "them": {"_count": 1}}, "deeply": {"_count": 1, "into": {"_count": 1}}, "Harry": {"_count": 1, "tried": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "that": {"_count": 2, "long": {"_count": 1}, "keeps": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "torn": {"_count": 1, "he": {"_count": 1}}, "cascaded": {"_count": 1, "out": {"_count": 1}}, "both": {"_count": 1, "pink": {"_count": 1}}, "pierced": {"_count": 1, "his": {"_count": 1}}}, "claws": {"_count": 13, "hung": {"_count": 1, "from": {"_count": 1}}, "tearing": {"_count": 1, "at": {"_count": 1}}, "squeeze": {"_count": 1, "his": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "deep": {"_count": 1, "inside": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "ripped": {"_count": 1, "his": {"_count": 1}}, "had": {"_count": 1, "sunk": {"_count": 1}}, "into": {"_count": 1, "Blacks": {"_count": 1}}, "ripping": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 1, "coiled": {"_count": 1}}, "slashed": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "horns": {"_count": 1}}}, "hung": {"_count": 88, "from": {"_count": 8, "the": {"_count": 7}, "a": {"_count": 1}}, "low": {"_count": 3, "in": {"_count": 1}, "over": {"_count": 2}}, "a": {"_count": 5, "portrait": {"_count": 1}, "few": {"_count": 1}, "sign": {"_count": 1}, "scarlet": {"_count": 1}, "single": {"_count": 1}}, "with": {"_count": 6, "deep": {"_count": 1}, "red": {"_count": 1}, "black": {"_count": 1}, "cobwebs": {"_count": 1}, "a": {"_count": 1}, "blueandbronze": {"_count": 1}}, "around": {"_count": 7, "the": {"_count": 1}, "her": {"_count": 1}, "to": {"_count": 1}, "every": {"_count": 1}, "his": {"_count": 2}, "for": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}, "in": {"_count": 8, "midair": {"_count": 3}, "the": {"_count": 4}, "curtains": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 2}}, "back": {"_count": 8, "to": {"_count": 1}, "for": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "looking": {"_count": 1}, "some": {"_count": 1}}, "over": {"_count": 5, "his": {"_count": 1}, "the": {"_count": 3}, "several": {"_count": 1}}, "on": {"_count": 9, "as": {"_count": 1}, "the": {"_count": 5}, "or": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 2}}, "upside": {"_count": 1, "down": {"_count": 1}}, "limply": {"_count": 1, "in": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "open": {"_count": 1, "he": {"_count": 1}}, "opposite": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "intervals": {"_count": 1}}, "there": {"_count": 3, "terrified": {"_count": 1}, "and": {"_count": 1}, "like": {"_count": 1}}, "shining": {"_count": 1, "in": {"_count": 1}}, "crooked": {"_count": 1, "on": {"_count": 1}}, "limp": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 3, "length": {"_count": 1}, "previous": {"_count": 1}, "chain": {"_count": 1}}, "one": {"_count": 1, "handed": {"_count": 1}}, "lank": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "on": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "also": {"_count": 1}}, "round": {"_count": 1, "with": {"_count": 1}}, "directly": {"_count": 1, "behind": {"_count": 1}}}, "supply": {"_count": 12, "of": {"_count": 11, "some": {"_count": 1}, "pots": {"_count": 1}, "human": {"_count": 1}, "sweets": {"_count": 1}, "open": {"_count": 1}, "fresh": {"_count": 1}, "oak": {"_count": 1}, "drink": {"_count": 1}, "Darkness": {"_count": 1}, "basilisk": {"_count": 1}, "Gurdyroots": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}}, "basic": {"_count": 10, "potion": {"_count": 1, "ingredients": {"_count": 1}}, "Flame": {"_count": 1, "Freezing": {"_count": 1}}, "rules": {"_count": 1, "of": {"_count": 1}}, "fortunetelling": {"_count": 1, "methods": {"_count": 1}}, "methods": {"_count": 1, "of": {"_count": 1}}, "distinction": {"_count": 1, "between": {"_count": 1}}, "but": {"_count": 1, "Ive": {"_count": 1}}, "locomotion": {"_count": 1, "charms": {"_count": 1}}, "test": {"_count": 1, "asking": {"_count": 1}}, "protection": {"_count": 1, "around": {"_count": 1}}}, "unicorn": {"_count": 39, "horns": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "hairs": {"_count": 1, "phoenix": {"_count": 1}}, "hair": {"_count": 4, "eight": {"_count": 1}, "he": {"_count": 1}, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "blood": {"_count": 5, "": {"_count": 1}, "here": {"_count": 1}, "was": {"_count": 1}, "is": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "finds": {"_count": 1, "us": {"_count": 1}}, "well": {"_count": 1, "send": {"_count": 1}}, "theyre": {"_count": 1, "powerful": {"_count": 1}}, "neither": {"_count": 1, "said": {"_count": 1}}, "bin": {"_count": 2, "hurt": {"_count": 1}, "injured": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "lowered": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 1}, ".": {"_count": 5}}, "said": {"_count": 1, "Firenze": {"_count": 1}}, "will": {"_count": 1, "keep": {"_count": 1}}, "tailhair": {"_count": 1, "": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 2, "tethered": {"_count": 1}, "so": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "stroking": {"_count": 1}}, "whose": {"_count": 1, "many": {"_count": 1}}, "foals": {"_count": 1, "": {"_count": 1}}, "tail": {"_count": 1, "upon": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}}, "horns": {"_count": 8, "at": {"_count": 2, "twentyone": {"_count": 1}, "aroun": {"_count": 1}}, "and": {"_count": 3, "bulging": {"_count": 1}, "tangles": {"_count": 1}, "tails": {"_count": 1}}, "had": {"_count": 1, "its": {"_count": 1}}, "for": {"_count": 1, "awhile": {"_count": 1}}, "snapping": {"_count": 1, "and": {"_count": 1}}}, "twentyone": {"_count": 2, "Galleons": {"_count": 1, "each": {"_count": 1}}, "days": {"_count": 1, "": {"_count": 1}}}, "minuscule": {"_count": 15, "glittery": {"_count": 1, "black": {"_count": 1}}, "television": {"_count": 1, "screen": {"_count": 1}}, "writing": {"_count": 2, "": {"_count": 1}, "next": {"_count": 1}}, "winged": {"_count": 1, "Golden": {"_count": 1}}, "fangs": {"_count": 1, "": {"_count": 1}}, "labeled": {"_count": 1, "dots": {"_count": 1}}, "silver": {"_count": 1, "tube": {"_count": 1}}, "and": {"_count": 2, "cramped": {"_count": 1}, "exhausted": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "marching": {"_count": 1, "footsteps": {"_count": 1}}, "firstyear": {"_count": 1, "boy": {"_count": 1}}, "glass": {"_count": 1, "bottle": {"_count": 1}}, "snake": {"_count": 1, "curled": {"_count": 1}}}, "glittery": {"_count": 1, "black": {"_count": 1, "beetle": {"_count": 1}}}, "scoop": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "Snape": {"_count": 1, "out": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "water": {"_count": 1}}}, "Outside": {"_count": 12, "the": {"_count": 3, "Apothecary": {"_count": 1}, "bathroom": {"_count": 1}, "sun": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 4}}, "": {"_count": 1, "?": {"_count": 1}}, "his": {"_count": 1, "Charms": {"_count": 1}}, "Snapes": {"_count": 1, "office": {"_count": 1}}, "butterflies": {"_count": 1, "and": {"_count": 1}}, "yeah": {"_count": 1, "but": {"_count": 1}}}, "checked": {"_count": 50, "Harrys": {"_count": 1, "list": {"_count": 1}}, "his": {"_count": 10, "Hogwarts": {"_count": 1}, "face": {"_count": 1}, "course": {"_count": 1}, "watch": {"_count": 7}}, "that": {"_count": 4, "the": {"_count": 3}, "they": {"_count": 1}}, "the": {"_count": 7, "time": {"_count": 2}, "notice": {"_count": 1}, "ceiling": {"_count": 1}, "Marauders": {"_count": 1}, "bathroom": {"_count": 1}, "battered": {"_count": 1}}, "over": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 1, "Hogsmeade": {"_count": 1}}, "her": {"_count": 5, "watch": {"_count": 3}, "hair": {"_count": 1}, "name": {"_count": 1}}, "for": {"_count": 3, "jinxes": {"_count": 2}, "most": {"_count": 1}}, "their": {"_count": 3, "tickets": {"_count": 1}, "coins": {"_count": 1}, "names": {"_count": 1}}, "yellowandorange": {"_count": 1, "tie": {"_count": 1}}, "tablecloth": {"_count": 1, "and": {"_count": 1}}, "Percys": {"_count": 1, "letter": {"_count": 1}}, "various": {"_count": 1, "facts": {"_count": 1}}, "it": {"_count": 3, "carefully": {"_count": 1}, "against": {"_count": 1}, "": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "with": {"_count": 1, "Hermione": {"_count": 1}}, "them": {"_count": 1, "Marius": {"_count": 1}}}, "animal": {"_count": 24, "": {"_count": 9, ".": {"_count": 7}, "!": {"_count": 1}, "?": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "transformations": {"_count": 1, "": {"_count": 1}}, "bones": {"_count": 2, "": {"_count": 1}, "craning": {"_count": 1}}, "of": {"_count": 1, "some": {"_count": 1}}, "they": {"_count": 1, "become": {"_count": 1}}, "at": {"_count": 1, "will": {"_count": 1}}, "emotions": {"_count": 1, "that": {"_count": 1}}, "amid": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "you": {"_count": 1, "become": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "skins": {"_count": 1, "sewn": {"_count": 1}}, "with": {"_count": 1, "its": {"_count": 1}}, "sped": {"_count": 1, "four": {"_count": 1}}}, "sneeze": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "kids": {"_count": 33, "want": {"_count": 1, "owls": {"_count": 1}}, "Barty": {"_count": 1, "theyd": {"_count": 1}}, "to": {"_count": 3, "Kings": {"_count": 1}, "teach": {"_count": 1}, "force": {"_count": 1}}, "ha": {"_count": 1, "ha": {"_count": 1}}, "in": {"_count": 1, "seventh": {"_count": 1}}, "like": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 2, "hes": {"_count": 1}, "everyones": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "are": {"_count": 2, "still": {"_count": 1}, "bein": {"_count": 1}}, "outta": {"_count": 1, "school": {"_count": 1}}, "the": {"_count": 1, "one": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 3, "wan": {"_count": 1}, "tried": {"_count": 2}}, "stories": {"_count": 3, "are": {"_count": 1}, "": {"_count": 2}}, "unless": {"_count": 1, "unless": {"_count": 1}}, "injured": {"_count": 1, "do": {"_count": 1}}, "said": {"_count": 1, "Amycus": {"_count": 1}}, "them": {"_count": 1, "kids": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "more": {"_count": 1, "or": {"_count": 1}}, "thundering": {"_count": 1, "through": {"_count": 1}}, "of": {"_count": 1, "Death": {"_count": 1}}}, "Twenty": {"_count": 7, "minutes": {"_count": 2, "later": {"_count": 2}}, "cauldrons": {"_count": 1, "stood": {"_count": 1}}, "two": {"_count": 1, "was": {"_count": 1}}, "five": {"_count": 1, "": {"_count": 1}}, "yards": {"_count": 1, "apart": {"_count": 1}}, "times": {"_count": 1, "as": {"_count": 1}}}, "rustling": {"_count": 21, "and": {"_count": 3, "flickering": {"_count": 1}, "clinking": {"_count": 1}, "clicking": {"_count": 1}}, "of": {"_count": 6, "leaves": {"_count": 3}, "the": {"_count": 2}, "many": {"_count": 1}}, "leaves": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "spiders": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "its": {"_count": 1, "wings": {"_count": 1}}, "noise": {"_count": 3, "nearby": {"_count": 1}, "above": {"_count": 1}, "behind": {"_count": 1}}, "treetops": {"_count": 1, "of": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "their": {"_count": 1, "wings": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}}, "jewelbright": {"_count": 3, "eyes": {"_count": 1, "": {"_count": 1}}, "colors": {"_count": 1, "in": {"_count": 1}}, "egg": {"_count": 1, "": {"_count": 1}}}, "cage": {"_count": 104, "that": {"_count": 2, "held": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 3, "Harrys": {"_count": 1}, "Professor": {"_count": 1}, "top": {"_count": 1}}, "and": {"_count": 15, "then": {"_count": 1}, "tipped": {"_count": 1}, "dashed": {"_count": 1}, "looking": {"_count": 1}, "twittering": {"_count": 1}, "set": {"_count": 1}, "hoisting": {"_count": 1}, "flew": {"_count": 1}, "prepared": {"_count": 1}, "Hedwig": {"_count": 1}, "emitting": {"_count": 1}, "watching": {"_count": 1}, "slammed": {"_count": 1}, "his": {"_count": 1}, "tank": {"_count": 1}}, "in": {"_count": 7, "a": {"_count": 1}, "which": {"_count": 1}, "her": {"_count": 2}, "one": {"_count": 1}, "the": {"_count": 2}}, "to": {"_count": 3, "stop": {"_count": 1}, "the": {"_count": 1}, "muffle": {"_count": 1}}, "by": {"_count": 1, "magic": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 23}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "dashed": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 4, "alive": {"_count": 1}, "safely": {"_count": 1}, "perched": {"_count": 1}, "rolling": {"_count": 1}}, "bounced": {"_count": 1, "onto": {"_count": 1}}, "flew": {"_count": 1, "through": {"_count": 1}}, "onto": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 2}}, "all": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "inside": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "balanced": {"_count": 1, "on": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 1}, "Voldemorts": {"_count": 1}}, "of": {"_count": 5, "ravens": {"_count": 1}, "sleek": {"_count": 1}, "his": {"_count": 1}, "light": {"_count": 2}}, "he": {"_count": 1, "looked": {"_count": 1}}, "landed": {"_count": 1, "on": {"_count": 1}}, "when": {"_count": 2, "Ron": {"_count": 1}, "they": {"_count": 1}}, "toward": {"_count": 1, "Uncle": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "hooting": {"_count": 1, "shrilly": {"_count": 1}}, "then": {"_count": 1, "turned": {"_count": 1}}, "stood": {"_count": 2, "next": {"_count": 1}, "empty": {"_count": 1}}, "needed": {"_count": 1, "cleaning": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "whoosh": {"_count": 1}, "Firebolt": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "or": {"_count": 1, "tank": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "Firebolt": {"_count": 1}}, "broomstick": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 1, "joining": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "himself": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}}, "beautiful": {"_count": 48, "snowy": {"_count": 1, "owl": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 3}, "!": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 5, "sad": {"_count": 1}, "terrible": {"_count": 1}, "welcome": {"_count": 1}, "mysterious": {"_count": 1}, "yet": {"_count": 1}}, "circular": {"_count": 2, "room": {"_count": 2}}, "head": {"_count": 5, "on": {"_count": 1}, "against": {"_count": 1}, "high": {"_count": 1}, "with": {"_count": 1}, "toward": {"_count": 1}}, "women": {"_count": 1, "Harry": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "selves": {"_count": 1, "now": {"_count": 1}}, "veela": {"_count": 1, "standing": {"_count": 1}}, "unicorn": {"_count": 1, "was": {"_count": 1}}, "thing": {"_count": 2, "each": {"_count": 1}, "she": {"_count": 1}}, "sound": {"_count": 1, "filled": {"_count": 1}}, "scarletandgold": {"_count": 1, "plumage": {"_count": 1}}, "summers": {"_count": 2, "day": {"_count": 2}}, "witch": {"_count": 2, "a": {"_count": 1}, "for": {"_count": 1}}, "the": {"_count": 1, "village": {"_count": 1}}, "Harry": {"_count": 1, "heard": {"_count": 1}}, "dancing": {"_count": 1, "diamondsparkling": {"_count": 1}}, "office": {"_count": 1, "breathing": {"_count": 1}}, "face": {"_count": 2, "terrified": {"_count": 1}, "silently": {"_count": 1}}, "tiara": {"_count": 1, "goblinmade": {"_count": 1}}, "weather": {"_count": 1, "seemed": {"_count": 1}}, "with": {"_count": 2, "her": {"_count": 2}}, "blonde": {"_count": 1, "woman": {"_count": 1}}, "but": {"_count": 1, "austerelooking": {"_count": 1}}, "Rowena": {"_count": 1, "Ravenclaw": {"_count": 1}}, "place": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "yet": {"_count": 1, "slightly": {"_count": 1}}}, "wing": {"_count": 131, "": {"_count": 44, ".": {"_count": 39}, "!": {"_count": 2}, "?": {"_count": 3}}, "Snape": {"_count": 1, "spat": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "noon": {"_count": 1}}, "as": {"_count": 3, "if": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}}, "Weasley": {"_count": 2, "youre": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 2}, "several": {"_count": 1}}, "ah": {"_count": 1, "Mr": {"_count": 1}}, "burst": {"_count": 3, "open": {"_count": 3}}, "had": {"_count": 1, "spread": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "half": {"_count": 1}}, "by": {"_count": 2, "Professor": {"_count": 1}, "Pansy": {"_count": 1}}, "and": {"_count": 7, "give": {"_count": 1}, "tell": {"_count": 1}, "hoisted": {"_count": 1}, "then": {"_count": 1}, "Crookshanks": {"_count": 1}, "Madam": {"_count": 1}, "demanded": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "dewhiskered": {"_count": 1, "tail": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "swallow": {"_count": 1}}, "sweep": {"_count": 1, "his": {"_count": 1}}, "right": {"_count": 1, "away": {"_count": 1}}, "was": {"_count": 2, "torture": {"_count": 1}, "quiet": {"_count": 1}}, "muttering": {"_count": 1, "to": {"_count": 1}}, "joint": {"_count": 1, "said": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 5, "Ron": {"_count": 2}, "Harry": {"_count": 1}, "Angelina": {"_count": 1}, "Ginny": {"_count": 1}}, "with": {"_count": 3, "leeks": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "without": {"_count": 1, "anybody": {"_count": 1}}, "entrance": {"_count": 1, "": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "Goyle": {"_count": 1, "Snape": {"_count": 1}}, "having": {"_count": 1, "her": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 1}, "mean": {"_count": 1}}, "shatter": {"_count": 1, "as": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "Minister": {"_count": 1, "dont": {"_count": 1}}, "preferring": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "thats": {"_count": 1, "a": {"_count": 1}}, "Hedwig": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 1, "gave": {"_count": 1}}, "closely": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "Harry": {"_count": 1, "found": {"_count": 1}}, "somewhere": {"_count": 1, "draw": {"_count": 1}}, "hurtling": {"_count": 1, "along": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "joints": {"_count": 1, "that": {"_count": 1}}, "weak": {"_count": 1, "from": {"_count": 1}}, "why": {"_count": 1, "Voldemort": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "completely": {"_count": 1, "cured": {"_count": 1}}, "during": {"_count": 1, "dinnertime": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "please": {"_count": 1, "Leanne": {"_count": 1}}, "now": {"_count": 1, "to": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "highly": {"_count": 1}}, "before": {"_count": 1, "heading": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "first": {"_count": 1, "thing": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}, "twice": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "mate": {"_count": 1}}, "mirror": {"_count": 1, "and": {"_count": 1}}}, "stammering": {"_count": 1, "his": {"_count": 1, "thanks": {"_count": 1}}}, "lotta": {"_count": 1, "presents": {"_count": 1, "from": {"_count": 1}}}, "Ollivanders": {"_count": 7, "left": {"_count": 1, "now": {"_count": 1}}, "and": {"_count": 1, "yeh": {"_count": 1}}, "Makers": {"_count": 1, "of": {"_count": 1}}, "shop": {"_count": 1, "with": {"_count": 1}}, "gone": {"_count": 1, "too": {"_count": 1}}, "description": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "was": {"_count": 1}}}, "Peeling": {"_count": 1, "gold": {"_count": 1, "letters": {"_count": 1}}}, "Makers": {"_count": 1, "of": {"_count": 1, "Fine": {"_count": 1}}}, "Fine": {"_count": 43, "Wands": {"_count": 1, "since": {"_count": 1}}, "said": {"_count": 11, "Neville": {"_count": 1}, "Harry": {"_count": 7}, "Hermione": {"_count": 2}, "Hagrid": {"_count": 1}}, "Im": {"_count": 1, "fine": {"_count": 1}}, "thanks": {"_count": 2, "said": {"_count": 2}}, "he": {"_count": 4, "muttered": {"_count": 1}, "said": {"_count": 2}, "added": {"_count": 1}}, "": {"_count": 10, "!": {"_count": 6}, ".": {"_count": 4}}, "snapped": {"_count": 2, "Mrs": {"_count": 1}, "Padma": {"_count": 1}}, "we": {"_count": 1, "wont": {"_count": 1}}, "Harry": {"_count": 1, "lied": {"_count": 1}}, "lets": {"_count": 1, "swap": {"_count": 1}}, "go": {"_count": 1, "then": {"_count": 1}}, "fine": {"_count": 2, "said": {"_count": 2}}, "she": {"_count": 2, "said": {"_count": 2}}, "lied": {"_count": 1, "Harry": {"_count": 1}}, "Ill": {"_count": 1, "stay": {"_count": 1}}, "retorted": {"_count": 1, "Hermione": {"_count": 1}}, "but": {"_count": 1, "well": {"_count": 1}}}, "Wands": {"_count": 13, "since": {"_count": 1, "382b": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "only": {"_count": 2, "no": {"_count": 1}, "choose": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "about": {"_count": 1}}, "out": {"_count": 1, "dyou": {"_count": 1}}, "away": {"_count": 3, "and": {"_count": 1}, "she": {"_count": 1}, "please": {"_count": 1}}, "flew": {"_count": 1, "in": {"_count": 1}}, "are": {"_count": 1, "only": {"_count": 1}}, "real": {"_count": 1, "what": {"_count": 1}}}, "382b": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "c": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "couldnt": {"_count": 1, "say": {"_count": 1}}}, "cushion": {"_count": 20, "in": {"_count": 2, "the": {"_count": 1}, "Fangs": {"_count": 1}}, "a": {"_count": 1, "bloodstained": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "his": {"_count": 1, "Sneakoscope": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "did": {"_count": 1, "an": {"_count": 1}}, "spinning": {"_count": 1, "high": {"_count": 1}}, "and": {"_count": 2, "it": {"_count": 1}, "began": {"_count": 1}}, "soaring": {"_count": 1, "into": {"_count": 1}}, "zooming": {"_count": 1, "neatly": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "count": {"_count": 1}}, "was": {"_count": 1, "occupied": {"_count": 1}}, "pile": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "dusty": {"_count": 48, "window": {"_count": 1, "": {"_count": 1}}, "air": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "travelworn": {"_count": 1}, "appeared": {"_count": 1}}, "shop": {"_count": 1, "window": {"_count": 1}}, "floor": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "enclosed": {"_count": 1}}, "tin": {"_count": 1, "": {"_count": 1}}, "volumes": {"_count": 2, "about": {"_count": 1}, "looking": {"_count": 1}}, "classroom": {"_count": 1, "floor": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}, "hangings": {"_count": 1, "lay": {"_count": 1}}, "kettle": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "glassfronted": {"_count": 1, "cabinets": {"_count": 1}}, "carpet": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "shelves": {"_count": 1, "": {"_count": 1}}, "box": {"_count": 1, "an": {"_count": 1}}, "musty": {"_count": 1, "house": {"_count": 1}}, "old": {"_count": 3, "carpet": {"_count": 1}, "wig": {"_count": 2}}, "pile": {"_count": 1, "to": {"_count": 1}}, "very": {"_count": 1, "dirty": {"_count": 1}}, "sunlight": {"_count": 1, "split": {"_count": 1}}, "butterbeers": {"_count": 1, "from": {"_count": 1}}, "doors": {"_count": 1, "read": {"_count": 1}}, "spun": {"_count": 1, "glass": {"_count": 1}}, "glass": {"_count": 5, "spheres": {"_count": 2}, "orbs": {"_count": 1}, "ball": {"_count": 1}, "and": {"_count": 1}}, "orbs": {"_count": 1, "that": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "balls": {"_count": 1, "surface": {"_count": 1}}, "spunglass": {"_count": 1, "sphere": {"_count": 1}}, "bottle": {"_count": 2, "and": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "traveling": {"_count": 1, "cloak": {"_count": 1}}, "underside": {"_count": 1, "of": {"_count": 1}}, "jinxfigure": {"_count": 1, "exploded": {"_count": 1}}, "mirror": {"_count": 1, "and": {"_count": 1}}}, "tinkling": {"_count": 11, "bell": {"_count": 1, "rang": {"_count": 1}}, "tune": {"_count": 1, "when": {"_count": 1}}, "hiss": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "chandelier": {"_count": 1}}, "laugh": {"_count": 2, "I": {"_count": 1}, "and": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "plates": {"_count": 1, "and": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "doorbell": {"_count": 1, "rang": {"_count": 1}}, "its": {"_count": 1, "chain": {"_count": 1}}}, "bell": {"_count": 72, "rang": {"_count": 35, "somewhere": {"_count": 1}, "behind": {"_count": 1}, "and": {"_count": 5}, "": {"_count": 4}, "five": {"_count": 2}, "at": {"_count": 4}, "everyone": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 1}, "early": {"_count": 1}, "up": {"_count": 1}, "he": {"_count": 2}, "across": {"_count": 1}, "Harry": {"_count": 1}, "for": {"_count": 3}, "she": {"_count": 1}, "again": {"_count": 1}, "just": {"_count": 2}, "right": {"_count": 1}, "overhead": {"_count": 1}}, "sounded": {"_count": 3, "from": {"_count": 2}, "at": {"_count": 1}}, "clanged": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "that": {"_count": 1, "rang": {"_count": 1}}, "to": {"_count": 1, "signal": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "watched": {"_count": 1}}, "echoed": {"_count": 2, "from": {"_count": 1}, "distantly": {"_count": 1}}, "had": {"_count": 1, "even": {"_count": 1}}, "was": {"_count": 1, "due": {"_count": 1}}, "which": {"_count": 1, "gave": {"_count": 1}}, "finally": {"_count": 1, "rang": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 1, "he": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "jar": {"_count": 11, "that": {"_count": 1}, "quite": {"_count": 1}, "": {"_count": 5}, "to": {"_count": 1}, "he": {"_count": 1}, "where": {"_count": 1}, "as": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "tinkling": {"_count": 1, "again": {"_count": 1}}, "tinkled": {"_count": 1, "again": {"_count": 1}}, "leaving": {"_count": 1, "half": {"_count": 1}}}, "depths": {"_count": 34, "of": {"_count": 22, "the": {"_count": 17}, "his": {"_count": 3}, "her": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "were": {"_count": 1, "starting": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "which": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "something": {"_count": 1, "silver": {"_count": 1}}}, "spindly": {"_count": 10, "chair": {"_count": 3, "that": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "neck": {"_count": 1, "and": {"_count": 1}}, "fingers": {"_count": 2, "": {"_count": 2}}, "little": {"_count": 2, "tables": {"_count": 1}, "table": {"_count": 1}}, "tables": {"_count": 1, "had": {"_count": 1}}, "legs": {"_count": 1, "that": {"_count": 1}}}, "strict": {"_count": 10, "library": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "new": {"_count": 1, "security": {"_count": 1}}, "Ministry": {"_count": 1, "guidelines": {"_count": 1}}, "a": {"_count": 1, "disciplinarian": {"_count": 1}}, "guidelines": {"_count": 1, "on": {"_count": 1}}, "guard": {"_count": 1, "in": {"_count": 1}}}, "occurred": {"_count": 49, "to": {"_count": 38, "him": {"_count": 22}, "Harry": {"_count": 7}, "them": {"_count": 1}, "us": {"_count": 1}, "you": {"_count": 3}, "me": {"_count": 3}, "any": {"_count": 1}}, "ter": {"_count": 1, "me": {"_count": 1}}, "he": {"_count": 1, "wheeled": {"_count": 1}}, "Harry": {"_count": 1, "invariably": {"_count": 1}}, "the": {"_count": 1, "Owlery": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "here": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "long": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}}, "thousands": {"_count": 21, "of": {"_count": 17, "narrow": {"_count": 1}, "candles": {"_count": 3}, "books": {"_count": 3}, "shelves": {"_count": 1}, "wizards": {"_count": 1}, "waiting": {"_count": 1}, "people": {"_count": 1}, "tiny": {"_count": 1}, "Omniocular": {"_count": 1}, "minuscule": {"_count": 1}, "students": {"_count": 1}, "invisible": {"_count": 1}, "longgone": {"_count": 1}}, "and": {"_count": 3, "thousands": {"_count": 3}}, "by": {"_count": 1, "this": {"_count": 1}}}, "boxes": {"_count": 38, "piled": {"_count": 3, "neatly": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "on": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 3, "nailed": {"_count": 1}, "had": {"_count": 1}, "pulled": {"_count": 1}}, "of": {"_count": 4, "chocolate": {"_count": 1}, "chocolates": {"_count": 1}, "owl": {"_count": 1}, "quills": {"_count": 1}}, "inscribed": {"_count": 1, "with": {"_count": 1}}, "amongst": {"_count": 1, "which": {"_count": 1}}, "though": {"_count": 1, "every": {"_count": 1}}, "in": {"_count": 1, "Rons": {"_count": 1}}, "swore": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "cases": {"_count": 1, "full": {"_count": 1}}, "one": {"_count": 2, "on": {"_count": 1}, "thousand": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "grasped": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "done": {"_count": 1, "by": {"_count": 1}}, "hastily": {"_count": 1, "piled": {"_count": 1}}}, "piled": {"_count": 14, "neatly": {"_count": 1, "right": {"_count": 1}}, "with": {"_count": 1, "food": {"_count": 1}}, "his": {"_count": 2, "plate": {"_count": 1}, "books": {"_count": 1}}, "through": {"_count": 1, "it": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "high": {"_count": 2, "with": {"_count": 2}}, "on": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "neatly": {"_count": 26, "right": {"_count": 1, "up": {"_count": 1}}, "underneath": {"_count": 1, "them": {"_count": 1}}, "knotted": {"_count": 1, "string": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "parted": {"_count": 1, "hair": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "hiding": {"_count": 1, "her": {"_count": 1}}, "she": {"_count": 1, "even": {"_count": 1}}, "and": {"_count": 2, "threw": {"_count": 1}, "probably": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 2}, "the": {"_count": 1}}, "onto": {"_count": 1, "a": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "wrapped": {"_count": 1, "present": {"_count": 1}}, "beneath": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "stacked": {"_count": 1, "piles": {"_count": 1}}, "manicured": {"_count": 1, "hedge": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "lettered": {"_count": 2, "by": {"_count": 1}, "words": {"_count": 1}}, "backward": {"_count": 1, "out": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}}, "prickled": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "uncomfortably": {"_count": 1, "but": {"_count": 1}}, "occasionally": {"_count": 1, "usually": {"_count": 1}}, "painfully": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "burned": {"_count": 1}, "he": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "Voldemort": {"_count": 1}}}, "dust": {"_count": 60, "and": {"_count": 7, "silence": {"_count": 1}, "bits": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}, "falling": {"_count": 1}, "smoke": {"_count": 1}}, "colored": {"_count": 2, "creature": {"_count": 1}, "cat": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 2}}, "except": {"_count": 1, "the": {"_count": 1}}, "rose": {"_count": 3, "at": {"_count": 1}, "into": {"_count": 1}, "from": {"_count": 1}}, "that": {"_count": 2, "lay": {"_count": 1}, "clogged": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "a": {"_count": 1, "fourth": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "swirl": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "filled": {"_count": 2, "the": {"_count": 2}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "was": {"_count": 1, "clearing": {"_count": 1}}, "down": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "Fleurs": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "running": {"_count": 1, "pellmell": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "obviously": {"_count": 1, "none": {"_count": 1}}, "Coughing": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "candle": {"_count": 1}}, "covered": {"_count": 1, "the": {"_count": 1}}, "disturbed": {"_count": 1, "but": {"_count": 1}}, "figure": {"_count": 1, "rose": {"_count": 1}}, "cloud": {"_count": 1, "before": {"_count": 1}}, "not": {"_count": 1, "knowing": {"_count": 1}}, "of": {"_count": 1, "unwashed": {"_count": 1}}, "crunched": {"_count": 1, "beneath": {"_count": 1}}, "vanished": {"_count": 1, "from": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Deafened": {"_count": 1, "by": {"_count": 1}}, "fell": {"_count": 1, "from": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "after": {"_count": 1, "Aberforth": {"_count": 1}}}, "tingle": {"_count": 3, "with": {"_count": 1, "some": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 1, "horror": {"_count": 1}}}, "shining": {"_count": 86, "like": {"_count": 2, "moons": {"_count": 1}, "a": {"_count": 1}}, "silvery": {"_count": 1, "cloth": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 3}}, "brightly": {"_count": 5, "in": {"_count": 1}, "as": {"_count": 1}, "all": {"_count": 1}, "from": {"_count": 1}, "over": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 14, "excitement": {"_count": 2}, "tears": {"_count": 3}, "sweat": {"_count": 2}, "anticipation": {"_count": 1}, "blood": {"_count": 2}, "admiration": {"_count": 1}, "the": {"_count": 1}, "drops": {"_count": 1}, "glee": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "black": {"_count": 3, "pincers": {"_count": 1}, "eyes": {"_count": 1}, "glass": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "about": {"_count": 1, "him": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "face": {"_count": 3, "on": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}}, "malevolently": {"_count": 1, "and": {"_count": 1}}, "beans": {"_count": 1, "into": {"_count": 1}}, "axe": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "so": {"_count": 1, "brightly": {"_count": 1}}, "purple": {"_count": 1, "lettering": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "Hagrids": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "highheeled": {"_count": 1, "black": {"_count": 1}}, "knob": {"_count": 1, "at": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}, "dark": {"_count": 1, "hair": {"_count": 1}}, "silver": {"_count": 6, "thought": {"_count": 2}, "dagger": {"_count": 2}, "otter": {"_count": 1}, "shield": {"_count": 1}}, "moment": {"_count": 2, "he": {"_count": 1}, "had": {"_count": 1}}, "fingers": {"_count": 1, "then": {"_count": 1}}, "red": {"_count": 2, "ink": {"_count": 1}, "their": {"_count": 1}}, "cut": {"_count": 1, "the": {"_count": 1}}, "eyes": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "metal": {"_count": 1, "bars": {"_count": 1}}, "crystal": {"_count": 1, "bubbles": {"_count": 1}}, "white": {"_count": 2, "Christmas": {"_count": 1}, "on": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "neck": {"_count": 1, "": {"_count": 1}}, "marble": {"_count": 1, "floor": {"_count": 1}}, "surface": {"_count": 1, "raised": {"_count": 1}}, "slightly": {"_count": 1, "with": {"_count": 1}}, "minute": {"_count": 1, "that": {"_count": 1}}, "scarlet": {"_count": 1, "his": {"_count": 1}}, "skull": {"_count": 1, "and": {"_count": 1}}, "hours": {"_count": 1, "from": {"_count": 1}}, "copper": {"_count": 1, "an": {"_count": 1}}, "mahogany": {"_count": 1, "door": {"_count": 1}}, "piece": {"_count": 1, "the": {"_count": 1}}, "sword": {"_count": 1, "": {"_count": 1}}}, "moons": {"_count": 7, "through": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "glimmered": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "Astronomy": {"_count": 1}}, "right": {"_count": 1, "but": {"_count": 1}}}, "gloom": {"_count": 24, "of": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "Hermione": {"_count": 1, "behind": {"_count": 1}}, "that": {"_count": 1, "filled": {"_count": 1}}, "and": {"_count": 2, "back": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 1, "all": {"_count": 1}}, "the": {"_count": 1, "creatures": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "seeped": {"_count": 1, "through": {"_count": 1}}, "his": {"_count": 1, "crossbow": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "hairless": {"_count": 1, "snakelike": {"_count": 1}}, "with": {"_count": 1, "its": {"_count": 1}}, "Lucius": {"_count": 1, "left": {"_count": 1}}, "moved": {"_count": 1, "over": {"_count": 1}}}, "awkwardly": {"_count": 30, "": {"_count": 15, ".": {"_count": 15}}, "out": {"_count": 2, "of": {"_count": 2}}, "to": {"_count": 2, "her": {"_count": 1}, "Harry": {"_count": 1}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}, "nodding": {"_count": 1, "toward": {"_count": 1}}, "into": {"_count": 1, "armchairs": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "top": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "biting": {"_count": 1}}, "well": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "each": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}}, "quarter": {"_count": 29, "inches": {"_count": 4, "long": {"_count": 1}, "": {"_count": 3}}, "to": {"_count": 5, "eleven": {"_count": 2}, "Harry": {"_count": 1}, "five": {"_count": 1}, "midnight": {"_count": 1}}, "of": {"_count": 13, "an": {"_count": 7}, "unsweetened": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "was": {"_count": 1}}, "past": {"_count": 1, "five": {"_count": 1}}, "moon": {"_count": 1, "or": {"_count": 1}}, "every": {"_count": 1, "year": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "inches": {"_count": 96, "long": {"_count": 4, "swishy": {"_count": 1}, "they": {"_count": 1}, "crawling": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 18}}, "rather": {"_count": 1, "bendy": {"_count": 1}}, "springy": {"_count": 1, "": {"_count": 1}}, "nice": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "George": {"_count": 1}}, "high": {"_count": 2, "with": {"_count": 1}, "its": {"_count": 1}}, "short": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "her": {"_count": 1}, "saw": {"_count": 1}, "touch": {"_count": 1}, "lifted": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "above": {"_count": 3, "Malfoys": {"_count": 1}, "the": {"_count": 2}}, "so": {"_count": 1, "he": {"_count": 1}}, "off": {"_count": 4, "the": {"_count": 4}}, "over": {"_count": 3, "the": {"_count": 2}, "their": {"_count": 1}}, "too": {"_count": 2, "short": {"_count": 2}}, "willow": {"_count": 1, "containing": {"_count": 1}}, "Harry": {"_count": 3, "felt": {"_count": 1}, "saw": {"_count": 1}, "pushed": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "his": {"_count": 1}}, "from": {"_count": 13, "the": {"_count": 3}, "Harrys": {"_count": 1}, "his": {"_count": 5}, "him": {"_count": 1}, "it": {"_count": 1}, "one": {"_count": 1}, "Rons": {"_count": 1}}, "of": {"_count": 7, "carved": {"_count": 1}, "bare": {"_count": 1}, "parchment": {"_count": 1}, "face": {"_count": 1}, "where": {"_count": 1}, "muddy": {"_count": 1}, "hers": {"_count": 1}}, "distance": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "second": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "when": {"_count": 1, "several": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "phoenixfeather": {"_count": 1, "core": {"_count": 1}}, "behind": {"_count": 1, "Professor": {"_count": 1}}, "along": {"_count": 1, "its": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "shattering": {"_count": 1, "the": {"_count": 1}}, "below": {"_count": 2, "the": {"_count": 2}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "cherry": {"_count": 1, "unicornhair": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "precisely": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}}, "swishy": {"_count": 1, "made": {"_count": 1, "of": {"_count": 1}}}, "willow": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "containing": {"_count": 1, "one": {"_count": 1}}}, "Nice": {"_count": 38, "wand": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 3, "flexible": {"_count": 1}, "easy": {"_count": 1}, "supple": {"_count": 1}}, "to": {"_count": 3, "see": {"_count": 1}, "keep": {"_count": 1}, "have": {"_count": 1}}, "big": {"_count": 1, "smile": {"_count": 1}}, "loud": {"_count": 1, "howl": {"_count": 1}}, "try": {"_count": 2, "Harry": {"_count": 2}}, "cloak": {"_count": 1, "Potter": {"_count": 1}}, "ter": {"_count": 1, "see": {"_count": 1}}, "look": {"_count": 1, "Ron": {"_count": 1}}, "socks": {"_count": 1, "Potter": {"_count": 1}}, "seeing": {"_count": 1, "you": {"_count": 1}}, "right": {"_count": 1, "hook": {"_count": 1}}, "one": {"_count": 6, "MadEye": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 1}, "Albert": {"_count": 1}}, "dog": {"_count": 1, "Harry": {"_count": 1}}, "cardigan": {"_count": 1, "said": {"_count": 1}}, "day": {"_count": 1, "he": {"_count": 1}}, "bloke": {"_count": 1, "Firenze": {"_count": 1}}, "of": {"_count": 2, "you": {"_count": 2}}, "suit": {"_count": 1, "sir": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 2}}, "commentary": {"_count": 1, "last": {"_count": 1}}, "view": {"_count": 1, "he": {"_count": 1}}, "costume": {"_count": 1, "mister": {"_count": 1}}, "job": {"_count": 1, "I": {"_count": 1}}, "night": {"_count": 1, "for": {"_count": 1}}}, "charm": {"_count": 43, "work": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "Ive": {"_count": 1, "used": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "people": {"_count": 1}}, "that": {"_count": 3, "repels": {"_count": 1}, "keeps": {"_count": 1}, "detects": {"_count": 1}}, "without": {"_count": 2, "wands": {"_count": 1}, "speaking": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "is": {"_count": 1, "ridiculously": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 1}, "placed": {"_count": 1}}, "for": {"_count": 1, "Diggory": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "caught": {"_count": 1}}, "on": {"_count": 1, "himself": {"_count": 1}}, "to": {"_count": 2, "produce": {"_count": 1}, "keep": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "or": {"_count": 3, "their": {"_count": 1}, "something": {"_count": 2}}, "me": {"_count": 1, "as": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "will": {"_count": 3, "work": {"_count": 1}, "only": {"_count": 1}, "break": {"_count": 1}}, "breaks": {"_count": 1, "at": {"_count": 1}}, "does": {"_count": 1, "that": {"_count": 1}}, "holds": {"_count": 1, "but": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "upon": {"_count": 1, "Umbridge": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "them": {"_count": 1, "into": {"_count": 1}}, "over": {"_count": 2, "us": {"_count": 1}, "any": {"_count": 1}}, "a": {"_count": 1, "story": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "broke": {"_count": 1, "and": {"_count": 1}}}, "Ollivander": {"_count": 111, "moved": {"_count": 1, "closer": {"_count": 1}}, "had": {"_count": 6, "come": {"_count": 1}, "taken": {"_count": 1}, "been": {"_count": 1}, "not": {"_count": 1}, "sent": {"_count": 1}, "told": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "suddenly": {"_count": 1, "stern": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "giving": {"_count": 1, "Hagrid": {"_count": 1}}, "wand": {"_count": 1, "has": {"_count": 1}}, "wands": {"_count": 1, "are": {"_count": 1}}, "was": {"_count": 4, "flitting": {"_count": 1}, "waiting": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 1}}, "snatched": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 16}, "?": {"_count": 4}, "!": {"_count": 1}}, "pulled": {"_count": 1, "from": {"_count": 1}}, "cried": {"_count": 1, "Oh": {"_count": 1}}, "fixed": {"_count": 1, "Harry": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "bowed": {"_count": 1, "them": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "stepping": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 4, "handed": {"_count": 1}, "take": {"_count": 1}, "Griphook": {"_count": 1}, "he": {"_count": 1}}, "yes": {"_count": 1, "Ive": {"_count": 1}}, "ran": {"_count": 1, "his": {"_count": 1}}, "scooping": {"_count": 1, "up": {"_count": 1}}, "with": {"_count": 2, "much": {"_count": 1}, "a": {"_count": 1}}, "sent": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "handing": {"_count": 1, "Krum": {"_count": 1}}, "his": {"_count": 2, "pale": {"_count": 1}, "protuberant": {"_count": 1}}, "explained": {"_count": 1, "that": {"_count": 1}}, "wasnt": {"_count": 1, "about": {"_count": 1}}, "spent": {"_count": 1, "much": {"_count": 1}}, "wrote": {"_count": 1, "to": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "ever": {"_count": 1, "sold": {"_count": 1}}, "taking": {"_count": 1, "it": {"_count": 1}}, "did": {"_count": 2, "he": {"_count": 1}, "not": {"_count": 1}}, "locked": {"_count": 1, "up": {"_count": 1}}, "didnt": {"_count": 1, "know": {"_count": 1}}, "kidnapped": {"_count": 1, "and": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "wandmaker": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "who": {"_count": 1, "appeared": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "I": {"_count": 1, "need": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "hushed": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "performed": {"_count": 1, "the": {"_count": 1}}, "swallowed": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 2, "pale": {"_count": 1}, "if": {"_count": 1}}, "looked": {"_count": 3, "terrified": {"_count": 1}, "horrified": {"_count": 1}, "stricken": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "intervened": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 1}, "Luna": {"_count": 1}, "Fleur": {"_count": 1}}, "one": {"_count": 1, "last": {"_count": 1}}, "until": {"_count": 1, "Bill": {"_count": 1}}, "leaves": {"_count": 1, "for": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "patting": {"_count": 1, "her": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "settled": {"_count": 1, "in": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "all": {"_count": 1, "those": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}}, "blink": {"_count": 16, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 1, "case": {"_count": 1}}, "of": {"_count": 2, "an": {"_count": 1}, "his": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "Harry": {"_count": 1, "stared": {"_count": 1}}, "and": {"_count": 1, "scowl": {"_count": 1}}, "just": {"_count": 1, "sat": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}, "look": {"_count": 1, "around": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "later": {"_count": 1, "it": {"_count": 1}}}, "Those": {"_count": 41, "silvery": {"_count": 1, "eyes": {"_count": 1}}, "patient": {"_count": 1, "Hufflepuffs": {"_count": 1}}, "cunning": {"_count": 1, "folk": {"_count": 1}}, "who": {"_count": 6, "could": {"_count": 1}, "had": {"_count": 1}, "came": {"_count": 1}, "would": {"_count": 1}, "witnessed": {"_count": 1}, "like": {"_count": 1}}, "spiders": {"_count": 1, "might": {"_count": 1}}, "are": {"_count": 3, "my": {"_count": 1}, "cursed": {"_count": 1}, "the": {"_count": 1}}, "two": {"_count": 4, "": {"_count": 2}, "girls": {"_count": 1}, "Death": {"_count": 1}}, "poor": {"_count": 1, "Muggles": {"_count": 1}}, "gathered": {"_count": 1, "around": {"_count": 1}}, "people": {"_count": 1, "who": {"_count": 1}}, "goblins": {"_count": 1, "didnt": {"_count": 1}}, "holding": {"_count": 1, "Harry": {"_count": 1}}, "attacks": {"_count": 1, "caused": {"_count": 1}}, "treacherous": {"_count": 1, "cowards": {"_count": 1}}, "peoples": {"_count": 1, "deaths": {"_count": 1}}, "courtrooms": {"_count": 1, "havent": {"_count": 1}}, "in": {"_count": 2, "favor": {"_count": 2}}, "horse": {"_count": 1, "Luna": {"_count": 1}}, "of": {"_count": 3, "you": {"_count": 1}, "us": {"_count": 2}}, "Muggle": {"_count": 1, "nutters": {"_count": 1}}, "ones": {"_count": 1, "you": {"_count": 1}}, "murders": {"_count": 1, "were": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "whom": {"_count": 1, "I": {"_count": 1}}, "rumors": {"_count": 1, "have": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "whose": {"_count": 1, "clothes": {"_count": 1}}, "kinds": {"_count": 1, "of": {"_count": 1}}}, "silvery": {"_count": 72, "eyes": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "gray": {"_count": 1, "went": {"_count": 1}}, "cloth": {"_count": 1, "off": {"_count": 1}}, "thread": {"_count": 1, "was": {"_count": 1}}, "Invisibility": {"_count": 3, "Cloak": {"_count": 3}}, "thing": {"_count": 1, "shot": {"_count": 1}}, "ladder": {"_count": 1, "descended": {"_count": 1}}, "crystal": {"_count": 1, "balls": {"_count": 1}}, "ghosts": {"_count": 2, "who": {"_count": 2}}, "gas": {"_count": 1, "": {"_count": 1}}, "orb": {"_count": 2, "again": {"_count": 1}, "hung": {"_count": 1}}, "shadow": {"_count": 1, "every": {"_count": 1}}, "white": {"_count": 3, "": {"_count": 1}, "neither": {"_count": 1}, "substance": {"_count": 1}}, "lawn": {"_count": 1, "": {"_count": 1}}, "cloak": {"_count": 2, "folded": {"_count": 1}, "fell": {"_count": 1}}, "light": {"_count": 7, "growing": {"_count": 1}, "and": {"_count": 1}, "of": {"_count": 1}, "dancing": {"_count": 1}, "was": {"_count": 1}, "from": {"_count": 1}, "as": {"_count": 1}}, "hair": {"_count": 6, "": {"_count": 2}, "caught": {"_count": 1}, "made": {"_count": 1}, "near": {"_count": 1}, "rippling": {"_count": 1}}, "blonde": {"_count": 3, "hair": {"_count": 2}, "she": {"_count": 1}}, "fountain": {"_count": 1, "": {"_count": 1}}, "dart": {"_count": 1, "out": {"_count": 1}}, "stuff": {"_count": 2, "inside": {"_count": 1}, "within": {"_count": 1}}, "substance": {"_count": 6, "had": {"_count": 1}, "came": {"_count": 1}, "into": {"_count": 2}, "with": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 1, "opaque": {"_count": 1}}, "spots": {"_count": 1, "of": {"_count": 1}}, "wisp": {"_count": 1, "of": {"_count": 1}}, "bundle": {"_count": 1, "that": {"_count": 1}}, "laugh": {"_count": 1, "that": {"_count": 1}}, "stars": {"_count": 1, "and": {"_count": 1}}, "beams": {"_count": 1, "of": {"_count": 1}}, "swanshaped": {"_count": 1, "Patronus": {"_count": 1}}, "strand": {"_count": 1, "into": {"_count": 1}}, "lights": {"_count": 1, "shivered": {"_count": 1}}, "moonlight": {"_count": 1, "and": {"_count": 1}}, "gossamerfine": {"_count": 1, "strands": {"_count": 1}}, "glow": {"_count": 3, "": {"_count": 2}, "faded": {"_count": 1}}, "sheet": {"_count": 1, "of": {"_count": 1}}, "mustache": {"_count": 1, "gleamed": {"_count": 1}}, "fourlegged": {"_count": 1, "creature": {"_count": 1}}, "contents": {"_count": 1, "of": {"_count": 1}}, "specks": {"_count": 1, "of": {"_count": 1}}, "mass": {"_count": 1, "rose": {"_count": 1}}, "bright": {"_count": 1, "from": {"_count": 1}}, "shape": {"_count": 1, "and": {"_count": 1}}}, "creepy": {"_count": 9, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "enough": {"_count": 1, "without": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "waterdwellers": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 1, "its": {"_count": 1}}, "Parvati": {"_count": 1, "whispered": {"_count": 1}}}, "favored": {"_count": 4, "a": {"_count": 1, "mahogany": {"_count": 1}}, "it": {"_count": 1, "its": {"_count": 1}}, "us": {"_count": 1, "said": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}}, "mahogany": {"_count": 3, "wand": {"_count": 1, "": {"_count": 1}}, "handle": {"_count": 1, "it": {"_count": 1}}, "door": {"_count": 1, "facing": {"_count": 1}}}, "Eleven": {"_count": 7, "inches": {"_count": 3, "": {"_count": 2}, "phoenixfeather": {"_count": 1}}, "Sickles": {"_count": 1, "said": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "told": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Pliable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "excellent": {"_count": 65, "for": {"_count": 2, "transfiguration": {"_count": 1}, "warding": {"_count": 1}}, "said": {"_count": 4, "Percy": {"_count": 1}, "Lupin": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 1}}, "Quidditch": {"_count": 1, "player": {"_count": 1}}, "adventure": {"_count": 1, "and": {"_count": 1}}, "Chaser": {"_count": 1, "that": {"_count": 1}}, "move": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 9}, "!": {"_count": 4}}, "idea": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "sugar": {"_count": 1, "quills": {"_count": 1}}, "feast": {"_count": 1, "": {"_count": 1}}, "health": {"_count": 1, "to": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "Seeker": {"_count": 1, "": {"_count": 1}}, "breakfast": {"_count": 1, "wasnt": {"_count": 1}}, "cooking": {"_count": 1, "and": {"_count": 1}}, "lunch": {"_count": 1, "": {"_count": 1}}, "odds": {"_count": 1, "on": {"_count": 1}}, "one": {"_count": 1, "over": {"_count": 1}}, "way": {"_count": 1, "of": {"_count": 1}}, "remedy": {"_count": 1, "for": {"_count": 1}}, "form": {"_count": 1, "I": {"_count": 1}}, "excuse": {"_count": 1, "to": {"_count": 1}}, "terms": {"_count": 1, "with": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "point": {"_count": 1, "said": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "memory": {"_count": 1, "for": {"_count": 1}}, "opportunity": {"_count": 1, "to": {"_count": 1}}, "dancer": {"_count": 1, "said": {"_count": 1}}, "causes": {"_count": 1, "Macnair": {"_count": 1}}, "clock": {"_count": 1, "of": {"_count": 1}}, "reason": {"_count": 1, "why": {"_count": 1}}, "beats": {"_count": 1, "Hermiones": {"_count": 1}}, "books": {"_count": 1, "entitled": {"_count": 1}}, "oh": {"_count": 1, "very": {"_count": 1}}, "Auror": {"_count": 1, "I": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "inside": {"_count": 1, "information": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "trial": {"_count": 1, "a": {"_count": 1}}, "contacts": {"_count": 1, "at": {"_count": 1}}, "swear": {"_count": 1, "words": {"_count": 1}}, "copy": {"_count": 1, "it": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "positions": {"_count": 1, "from": {"_count": 1}}, "refuge": {"_count": 1, "when": {"_count": 1}}, "student": {"_count": 1, "wont": {"_count": 1}}}, "transfiguration": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "chooses": {"_count": 8, "the": {"_count": 4, "wizard": {"_count": 4}}, "to": {"_count": 2, "divulge": {"_count": 1}, "ignore": {"_count": 1}}, "them": {"_count": 1, "for": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}}, "reflected": {"_count": 39, "in": {"_count": 15, "those": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 8}, "her": {"_count": 1}, "Rons": {"_count": 1}, "them": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "them": {"_count": 1, "invisible": {"_count": 1}}, "the": {"_count": 3, "dull": {"_count": 1}, "feelings": {"_count": 1}, "mingled": {"_count": 1}}, "glory": {"_count": 1, "of": {"_count": 1}}, "twice": {"_count": 2, "in": {"_count": 2}}, "blackly": {"_count": 1, "in": {"_count": 1}}, "there": {"_count": 2, "sitting": {"_count": 1}, "but": {"_count": 1}}, "fame": {"_count": 1, "as": {"_count": 1}}, "gold": {"_count": 3, "light": {"_count": 1}, "from": {"_count": 1}, "of": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "uncomfortably": {"_count": 1, "that": {"_count": 1}}, "sadly": {"_count": 1, "were": {"_count": 1}}, "your": {"_count": 1, "hearts": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "light": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 1, "distorted": {"_count": 1}}, "sunlight": {"_count": 1, "": {"_count": 1}}}, "misty": {"_count": 34, "eyes": {"_count": 4, "": {"_count": 2}, "on": {"_count": 1}, "who": {"_count": 1}}, "silver": {"_count": 1, "": {"_count": 1}}, "domed": {"_count": 2, "web": {"_count": 2}}, "light": {"_count": 1, "shining": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "voice": {"_count": 3, "and": {"_count": 1}, "from": {"_count": 1}, "of": {"_count": 1}}, "orange": {"_count": 1, "light": {"_count": 1}}, "moor": {"_count": 1, "": {"_count": 1}}, "field": {"_count": 2, "again": {"_count": 1}, "between": {"_count": 1}}, "lights": {"_count": 1, "shimmering": {"_count": 1}}, "grounds": {"_count": 1, "": {"_count": 1}}, "glow": {"_count": 1, "strong": {"_count": 1}}, "streetlamps": {"_count": 1, "at": {"_count": 1}}, "drizzle": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "dreamy": {"_count": 1, "voice": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "opalescent": {"_count": 1, "blue": {"_count": 1}}, "protuberant": {"_count": 1, "eyes": {"_count": 1}}, "fug": {"_count": 1, "his": {"_count": 1}}, "darkness": {"_count": 1, "": {"_count": 1}}, "stretch": {"_count": 1, "into": {"_count": 1}}, "greenish": {"_count": 1, "light": {"_count": 1}}, "green": {"_count": 1, "light": {"_count": 1}}, "square": {"_count": 1, "": {"_count": 1}}, "gray": {"_count": 1, "carapace": {"_count": 1}}}, "finger": {"_count": 103, "": {"_count": 16, ".": {"_count": 16}}, "then": {"_count": 1, "wrist": {"_count": 1}}, "sharp": {"_count": 1, "little": {"_count": 1}}, "in": {"_count": 5, "Freds": {"_count": 1}, "a": {"_count": 2}, "Malfoys": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 5, "he": {"_count": 1}, "Tonks": {"_count": 1}, "said": {"_count": 1}, "examining": {"_count": 1}, "saw": {"_count": 1}}, "annoyingly": {"_count": 1, "at": {"_count": 1}}, "on": {"_count": 3, "that": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "down": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "dramatically": {"_count": 1, "at": {"_count": 1}}, "threateningly": {"_count": 1, "at": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "slipped": {"_count": 1, "on": {"_count": 1}}, "swiftly": {"_count": 1, "across": {"_count": 1}}, "stand": {"_count": 1, "as": {"_count": 1}}, "at": {"_count": 12, "the": {"_count": 2}, "Malfoy": {"_count": 1}, "Professor": {"_count": 1}, "McGonagall": {"_count": 1}, "Neville": {"_count": 1}, "him": {"_count": 1}, "Riddle": {"_count": 1}, "a": {"_count": 2}, "Xenophilius": {"_count": 1}, "Ron": {"_count": 1}}, "because": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 7, "her": {"_count": 4}, "give": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 2, "cut": {"_count": 1}, "twisted": {"_count": 1}}, "into": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 1}, "Bathildas": {"_count": 1}}, "affectionately": {"_count": 1, "then": {"_count": 1}}, "will": {"_count": 1, "do": {"_count": 1}}, "perhaps": {"_count": 1, "rather": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "marks": {"_count": 1, "all": {"_count": 1}}, "two": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "missing": {"_count": 1, "": {"_count": 1}}, "touch": {"_count": 1, "him": {"_count": 1}}, "away": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 3, "his": {"_count": 2}, "blame": {"_count": 1}}, "you": {"_count": 1, "wouldnt": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "strayed": {"_count": 1, "longingly": {"_count": 1}}, "for": {"_count": 1, "silence": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "pointing": {"_count": 2, "at": {"_count": 2}}, "waving": {"_count": 1, "it": {"_count": 1}}, "reprovingly": {"_count": 1, "at": {"_count": 1}}, "significantly": {"_count": 1, "across": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "slipping": {"_count": 1, "on": {"_count": 1}}, "glued": {"_count": 1, "to": {"_count": 1}}, "right": {"_count": 1, "to": {"_count": 1}}, "hovering": {"_count": 1, "over": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "an": {"_count": 1}}}, "softly": {"_count": 110, "": {"_count": 56, ".": {"_count": 56}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "simmering": {"_count": 1, "cauldron": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "train": {"_count": 1}, "longer": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "my": {"_count": 1}}, "weve": {"_count": 1, "missed": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "staring": {"_count": 3, "from": {"_count": 1}, "at": {"_count": 2}}, "that": {"_count": 3, "is": {"_count": 1}, "it": {"_count": 1}, "you": {"_count": 1}}, "twice": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "lit": {"_count": 1, "by": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "will": {"_count": 1}}, "his": {"_count": 3, "red": {"_count": 2}, "breath": {"_count": 1}}, "and": {"_count": 5, "as": {"_count": 1}, "unexpectedly": {"_count": 1}, "his": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "how": {"_count": 1, "you": {"_count": 1}}, "looking": {"_count": 3, "around": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 1}}, "up": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 2}}, "so": {"_count": 1, "whether": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "moving": {"_count": 1, "around": {"_count": 1}}, "making": {"_count": 1, "yet": {"_count": 1}}, "scribbling": {"_count": 1, "on": {"_count": 1}}, "as": {"_count": 4, "she": {"_count": 1}, "they": {"_count": 1}, "Draco": {"_count": 1}, "Fleur": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "patting": {"_count": 1, "her": {"_count": 1}}, "Arthur": {"_count": 1, "is": {"_count": 1}}, "at": {"_count": 1, "it": {"_count": 1}}, "across": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "falling": {"_count": 1, "snow": {"_count": 1}}}, "Thirteenandahalf": {"_count": 1, "inches": {"_count": 1, "": {"_count": 1}}}, "Yew": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Powerful": {"_count": 2, "wand": {"_count": 1, "very": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}}, "Oak": {"_count": 1, "sixteen": {"_count": 1, "inches": {"_count": 1}}}, "bendy": {"_count": 1, "wasnt": {"_count": 1, "it": {"_count": 1}}}, "shuffling": {"_count": 15, "his": {"_count": 3, "feet": {"_count": 1}, "notes": {"_count": 2}}, "footfalls": {"_count": 1, "of": {"_count": 1}}, "around": {"_count": 2, "looking": {"_count": 1}, "on": {"_count": 1}}, "footsteps": {"_count": 2, "outside": {"_count": 1}, "coming": {"_count": 1}}, "papers": {"_count": 1, "on": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "their": {"_count": 1, "large": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "eagerly": {"_count": 1, "across": {"_count": 1}}, "feet": {"_count": 1, "reached": {"_count": 1}}, "gait": {"_count": 1, "all": {"_count": 1}}}, "added": {"_count": 249, "brightly": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 20, "Harry": {"_count": 6}, "Harrys": {"_count": 1}, "Percy": {"_count": 1}, "Uncle": {"_count": 1}, "Hagrid": {"_count": 1}, "Ron": {"_count": 3}, "the": {"_count": 3}, "Hermione": {"_count": 2}, "her": {"_count": 1}, "their": {"_count": 1}}, "voicing": {"_count": 1, "for": {"_count": 1}}, "quickly": {"_count": 10, "you": {"_count": 1}, "But": {"_count": 2}, "": {"_count": 1}, "seeing": {"_count": 1}, "looking": {"_count": 2}, "You": {"_count": 1}, "for": {"_count": 1}, "forestalling": {"_count": 1}}, "powdered": {"_count": 1, "root": {"_count": 1}}, "the": {"_count": 1, "porcupine": {"_count": 1}}, "bonus": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "nastily": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 20, "a": {"_count": 9}, "an": {"_count": 4}, "response": {"_count": 2}, "reply": {"_count": 1}, "her": {"_count": 1}, "answer": {"_count": 1}, "explanation": {"_count": 1}, "exasperation": {"_count": 1}}, "as": {"_count": 15, "he": {"_count": 1}, "Fred": {"_count": 2}, "Ron": {"_count": 1}, "they": {"_count": 2}, "an": {"_count": 2}, "a": {"_count": 1}, "Harry": {"_count": 3}, "Mr": {"_count": 1}, "if": {"_count": 1}, "though": {"_count": 1}}, "hastily": {"_count": 11, "as": {"_count": 5}, "I": {"_count": 1}, "": {"_count": 1}, "quailing": {"_count": 1}, "seeing": {"_count": 2}, "for": {"_count": 1}}, "pointing": {"_count": 4, "at": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "It": {"_count": 1, "doesnt": {"_count": 1}}, "swiftly": {"_count": 1, "But": {"_count": 1}}, "softly": {"_count": 1, "the": {"_count": 1}}, "shaking": {"_count": 1, "with": {"_count": 1}}, "twinkling": {"_count": 1, "kindly": {"_count": 1}}, "his": {"_count": 4, "mustache": {"_count": 1}, "beetleblack": {"_count": 1}, "protection": {"_count": 1}, "dumbbells": {"_count": 1}}, "thoughtfully": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "anxiously": {"_count": 2, "": {"_count": 2}}, "Id": {"_count": 1, "better": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "placing": {"_count": 1, "Scabbers": {"_count": 1}}, "because": {"_count": 1, "Mr": {"_count": 1}}, "blandly": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 6, "she": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}, "there": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "unconvincingly": {"_count": 1, "": {"_count": 1}}, "nudging": {"_count": 1, "Crookshanks": {"_count": 1}}, "going": {"_count": 1, "slightly": {"_count": 1}}, "quietly": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 2, "a": {"_count": 2}}, "you": {"_count": 1, "know": {"_count": 1}}, "a": {"_count": 3, "postscript": {"_count": 1}, "few": {"_count": 1}, "circle": {"_count": 1}}, "eyeing": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "fondly": {"_count": 1, "leading": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}, "hopelessly": {"_count": 1, "": {"_count": 1}}, "seeing": {"_count": 1, "Harrys": {"_count": 1}}, "four": {"_count": 1, "chairs": {"_count": 1}}, "approaching": {"_count": 1, "the": {"_count": 1}}, "gesturing": {"_count": 1, "toward": {"_count": 1}}, "irritably": {"_count": 2, "correctly": {"_count": 1}, "as": {"_count": 1}}, "catching": {"_count": 2, "sight": {"_count": 1}, "Dumbledore": {"_count": 1}}, "precaution": {"_count": 1, "Harry": {"_count": 1}}, "snatching": {"_count": 1, "up": {"_count": 1}}, "pacing": {"_count": 1, "around": {"_count": 1}}, "grinning": {"_count": 1, "spotting": {"_count": 1}}, "I": {"_count": 3, "didnt": {"_count": 1}, "hope": {"_count": 1}, "think": {"_count": 1}}, "this": {"_count": 1, "fresh": {"_count": 1}}, "it": {"_count": 2, "to": {"_count": 2}}, "briskly": {"_count": 1, "turning": {"_count": 1}}, "looking": {"_count": 5, "around": {"_count": 2}, "left": {"_count": 1}, "up": {"_count": 1}, "both": {"_count": 1}}, "scowling": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}, "angrily": {"_count": 3, "putting": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "spotting": {"_count": 1, "Harrys": {"_count": 1}}, "guiltily": {"_count": 1, "looking": {"_count": 1}}, "with": {"_count": 5, "satisfaction": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 3}}, "uncertainly": {"_count": 1, "meeting": {"_count": 1}}, "perfectly": {"_count": 1, "audibly": {"_count": 1}}, "thrusting": {"_count": 1, "the": {"_count": 1}}, "beaming": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "poking": {"_count": 1, "the": {"_count": 1}}, "bitterly": {"_count": 2, "": {"_count": 2}}, "checking": {"_count": 1, "her": {"_count": 1}}, "nervously": {"_count": 1, "as": {"_count": 1}}, "syrup": {"_count": 1, "of": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "threateningly": {"_count": 1, "": {"_count": 1}}, "Whens": {"_count": 1, "your": {"_count": 1}}, "sweeping": {"_count": 1, "Harry": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "kindly": {"_count": 1, "to": {"_count": 1}}, "considerably": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "Harrys": {"_count": 1}}, "George": {"_count": 3, "": {"_count": 1}, "pointing": {"_count": 1}, "throwing": {"_count": 1}}, "nodding": {"_count": 1, "at": {"_count": 1}}, "rather": {"_count": 1, "menacingly": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "hurriedly": {"_count": 1, "": {"_count": 1}}, "contemptuously": {"_count": 1, "throwing": {"_count": 1}}, "dropping": {"_count": 1, "the": {"_count": 1}}, "hotly": {"_count": 1, "and": {"_count": 1}}, "peering": {"_count": 1, "around": {"_count": 1}}, "extra": {"_count": 1, "security": {"_count": 1}}, "impatiently": {"_count": 1, "when": {"_count": 1}}, "Lupin": {"_count": 1, "pleasantly": {"_count": 1}}, "defensively": {"_count": 2, "spinning": {"_count": 1}, "as": {"_count": 1}}, "sternly": {"_count": 1, "seeming": {"_count": 1}}, "or": {"_count": 1, "instructions": {"_count": 1}}, "warningly": {"_count": 1, "to": {"_count": 1}}, "becoming": {"_count": 1, "suddenly": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "seized": {"_count": 1, "by": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "Worple": {"_count": 1, "suddenly": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 1, "Harry": {"_count": 1}}, "stupidly": {"_count": 1, "": {"_count": 1}}, "component": {"_count": 1, "that": {"_count": 1}}, "imploringly": {"_count": 1, "": {"_count": 1}}, "broodingly": {"_count": 1, "that": {"_count": 1}}, "getting": {"_count": 1, "to": {"_count": 1}}, "casually": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "a": {"_count": 1}}, "Voldemorts": {"_count": 1, "mistake": {"_count": 1}}, "sharply": {"_count": 2, "heading": {"_count": 1}, "as": {"_count": 1}}, "fiercely": {"_count": 1, "pushing": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "defiantly": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "before": {"_count": 1, "Ron": {"_count": 1}}, "blinking": {"_count": 1, "rather": {"_count": 1}}, "abruptly": {"_count": 1, "to": {"_count": 1}}, "after": {"_count": 1, "one": {"_count": 1}}, "Looked": {"_count": 1, "like": {"_count": 1}}, "craning": {"_count": 1, "around": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "something": {"_count": 1, "under": {"_count": 1}}, "by": {"_count": 1, "other": {"_count": 1}}, "Lovegoods": {"_count": 1, "on": {"_count": 1}}, "Luna": {"_count": 1, "is": {"_count": 1}}, "maybe": {"_count": 1, "that": {"_count": 1}}, "Gemino": {"_count": 1, "and": {"_count": 1}}, "spitefully": {"_count": 1, "youre": {"_count": 1}}, "Dont": {"_count": 1, "get": {"_count": 1}}}, "gripped": {"_count": 32, "his": {"_count": 11, "pink": {"_count": 1}, "wand": {"_count": 4}, "flanks": {"_count": 1}, "arm": {"_count": 4}, "wrist": {"_count": 1}}, "the": {"_count": 9, "edges": {"_count": 1}, "broom": {"_count": 1}, "back": {"_count": 1}, "fang": {"_count": 1}, "dagger": {"_count": 1}, "bowtruckle": {"_count": 1}, "thestral": {"_count": 1}, "country": {"_count": 1}, "locket": {"_count": 1}}, "him": {"_count": 1, "as": {"_count": 1}}, "it": {"_count": 1, "firmly": {"_count": 1}}, "its": {"_count": 1, "handle": {"_count": 1}}, "Harrys": {"_count": 1, "shoulder": {"_count": 1}}, "Dumbledores": {"_count": 1, "proffered": {"_count": 1}}, "both": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "at": {"_count": 1}}, "tightly": {"_count": 3, "in": {"_count": 3}}, "each": {"_count": 1, "other": {"_count": 1}}, "Dracos": {"_count": 1, "very": {"_count": 1}}}, "tightly": {"_count": 134, "as": {"_count": 6, "he": {"_count": 4}, "lifelines": {"_count": 1}, "possible": {"_count": 1}}, "in": {"_count": 19, "both": {"_count": 1}, "long": {"_count": 1}, "her": {"_count": 2}, "his": {"_count": 11}, "one": {"_count": 1}, "hers": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "with": {"_count": 2, "both": {"_count": 2}}, "around": {"_count": 23, "Harry": {"_count": 1}, "a": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 6}, "it": {"_count": 1}, "Harrys": {"_count": 2}, "his": {"_count": 6}, "Ron": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}, "themselves": {"_count": 1}}, "still": {"_count": 1, "spinning": {"_count": 1}}, "to": {"_count": 7, "his": {"_count": 2}, "a": {"_count": 2}, "the": {"_count": 2}, "stop": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "below": {"_count": 1, "a": {"_count": 1}}, "shut": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 1, "speech": {"_count": 1}}, "spiraling": {"_count": 3, "steps": {"_count": 1}, "stone": {"_count": 1}, "staircase": {"_count": 1}}, "and": {"_count": 4, "moving": {"_count": 1}, "tried": {"_count": 1}, "felt": {"_count": 1}, "Dumbledore": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 4, "looked": {"_count": 1}, "was": {"_count": 1}, "seemed": {"_count": 1}, "hurt": {"_count": 1}}, "before": {"_count": 2, "him": {"_count": 1}, "getting": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "under": {"_count": 2, "Rons": {"_count": 1}, "her": {"_count": 1}}, "across": {"_count": 2, "a": {"_count": 1}, "their": {"_count": 1}}, "packed": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 4, "thought": {"_count": 1}, "dashed": {"_count": 1}, "edged": {"_count": 1}, "might": {"_count": 1}}, "bound": {"_count": 2, "to": {"_count": 1}, "that": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "curled": {"_count": 1, "gray": {"_count": 1}}, "its": {"_count": 1, "eyes": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "furled": {"_count": 2, "copy": {"_count": 1}, "scroll": {"_count": 1}}, "closed": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "hand": {"_count": 1}}, "gritted": {"_count": 1, "teeth": {"_count": 1}}, "that": {"_count": 5, "the": {"_count": 2}, "it": {"_count": 1}, "Ron": {"_count": 1}, "he": {"_count": 1}}, "curling": {"_count": 1, "closegrowing": {"_count": 1}}, "his": {"_count": 1, "hand": {"_count": 1}}, "the": {"_count": 1, "centaurs": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "knit": {"_count": 1, "groups": {"_count": 1}}, "compressed": {"_count": 1, "to": {"_count": 1}}, "sealed": {"_count": 1, "with": {"_count": 1}}, "wrapped": {"_count": 1, "around": {"_count": 1}}, "stumbled": {"_count": 1, "and": {"_count": 1}}, "bracing": {"_count": 1, "himself": {"_count": 1}}, "knotted": {"_count": 1, "limbs": {"_count": 1}}, "against": {"_count": 1, "him": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}}, "Hmmm": {"_count": 6, "said": {"_count": 3, "Mr": {"_count": 1}, "Hermione": {"_count": 1}, "Mrs": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "measure": {"_count": 31, "with": {"_count": 1, "silver": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "crumpled": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 2, "unrolling": {"_count": 1}, "a": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "we": {"_count": 1, "feel": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "however": {"_count": 1, "on": {"_count": 1}}, "of": {"_count": 7, "very": {"_count": 1}, "Crouch": {"_count": 1}, "him": {"_count": 1}, "movement": {"_count": 1}, "honeycolored": {"_count": 1}, "gin": {"_count": 1}, "control": {"_count": 1}}, "known": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 3, "mans": {"_count": 3}}, "he": {"_count": 1, "had": {"_count": 1}}, "Merope": {"_count": 1, "could": {"_count": 1}}, "she": {"_count": 1, "drained": {"_count": 1}}, "his": {"_count": 1, "Muggle": {"_count": 1}}, "checked": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "try": {"_count": 1, "Impervius": {"_count": 1}}, "slit": {"_count": 1, "the": {"_count": 1}}}, "Which": {"_count": 50, "is": {"_count": 7, "your": {"_count": 1}, "what": {"_count": 4}, "the": {"_count": 1}, "that": {"_count": 1}}, "way": {"_count": 1, "did": {"_count": 1}}, "was": {"_count": 3, "all": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}}, "one": {"_count": 2, "will": {"_count": 1}, "was": {"_count": 1}}, "means": {"_count": 3, "Dumbledore": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}}, "student": {"_count": 1, "": {"_count": 1}}, "goes": {"_count": 1, "to": {"_count": 1}}, "makes": {"_count": 2, "you": {"_count": 2}}, "should": {"_count": 2, "he": {"_count": 2}}, "of": {"_count": 4, "you": {"_count": 4}}, "Broomstick": {"_count": 4, "from": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "person": {"_count": 1, "she": {"_count": 1}}, "Glosses": {"_count": 1, "Over": {"_count": 1}}, "leaves": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "left": {"_count": 1, "Harry": {"_count": 1}}, "side": {"_count": 1, "you": {"_count": 1}}, "creature": {"_count": 1, "would": {"_count": 1}}, "bit": {"_count": 1, "": {"_count": 1}}, "brings": {"_count": 1, "us": {"_count": 1}}, "now": {"_count": 1, "I": {"_count": 1}}, "job": {"_count": 1, "did": {"_count": 1}}, "given": {"_count": 1, "everything": {"_count": 1}}, "Horcrux": {"_count": 1, "is": {"_count": 1}}, "leads": {"_count": 1, "us": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "suits": {"_count": 1, "him": {"_count": 1}}, "came": {"_count": 1, "first": {"_count": 1}}, "I": {"_count": 1, "do": {"_count": 1}}}, "righthanded": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Hold": {"_count": 19, "out": {"_count": 2, "your": {"_count": 2}}, "on": {"_count": 5, "": {"_count": 1}, "Harry": {"_count": 2}, "for": {"_count": 1}, "tight": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 2}, "said": {"_count": 2}, "Potter": {"_count": 1}}, "yer": {"_count": 1, "hippogriffs": {"_count": 1}}, "tight": {"_count": 3, "now": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}}, "your": {"_count": 1, "fire": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "off": {"_count": 1}}}, "measured": {"_count": 6, "Harry": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "voice": {"_count": 2, "I": {"_count": 1}, "while": {"_count": 1}}, "gulp": {"_count": 1, "": {"_count": 1}}, "reassuring": {"_count": 1, "": {"_count": 1}}}, "elbow": {"_count": 35, "shoulder": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "in": {"_count": 3, "the": {"_count": 2}, "turn": {"_count": 1}}, "and": {"_count": 13, "he": {"_count": 2}, "had": {"_count": 1}, "Harry": {"_count": 2}, "looking": {"_count": 1}, "dragged": {"_count": 1}, "shoulder": {"_count": 1}, "tugged": {"_count": 2}, "together": {"_count": 1}, "pulled": {"_count": 1}, "with": {"_count": 1}}, "grease": {"_count": 1, "": {"_count": 1}}, "slipped": {"_count": 1, "off": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "elbow": {"_count": 1}}, "laden": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "saying": {"_count": 1, "as": {"_count": 1}}, "but": {"_count": 1, "patted": {"_count": 1}}}, "armpit": {"_count": 2, "and": {"_count": 1, "round": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "core": {"_count": 8, "of": {"_count": 3, "a": {"_count": 1}, "Lord": {"_count": 1}, "students": {"_count": 1}}, "the": {"_count": 1, "whole": {"_count": 1}}, "been": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "with": {"_count": 1, "yours": {"_count": 1}}}, "magical": {"_count": 201, "substance": {"_count": 1, "Mr": {"_count": 1}}, "world": {"_count": 11, "but": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 1}, "highly": {"_count": 1}, "and": {"_count": 2}, "told": {"_count": 1}, "reduced": {"_count": 1}, "for": {"_count": 1}, "whenever": {"_count": 1}}, "discoveries": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "blood": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "spilled": {"_count": 1}}, "activity": {"_count": 2, "that": {"_count": 1}, "around": {"_count": 1}}, "community": {"_count": 5, "Muggles": {"_count": 1}, "to": {"_count": 2}, "lives": {"_count": 1}, "got": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "plants": {"_count": 1, "were": {"_count": 1}}, "learning": {"_count": 1, "should": {"_count": 1}}, "talent": {"_count": 1, "managed": {"_count": 1}}, "transformations": {"_count": 1, "that": {"_count": 1}}, "entrance": {"_count": 1, "to": {"_count": 1}}, "creature": {"_count": 5, "shop": {"_count": 1}, "is": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}, "Griphook": {"_count": 1}}, "instruments": {"_count": 3, "and": {"_count": 2}, "the": {"_count": 1}}, "arts": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "objects": {"_count": 2, "Mr": {"_count": 1}, "": {"_count": 1}}, "concealment": {"_count": 3, "of": {"_count": 1}, "": {"_count": 2}}, "megaphone": {"_count": 2, "away": {"_count": 1}, "that": {"_count": 1}}, "site": {"_count": 1, "big": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "fire": {"_count": 1, "that": {"_count": 1}}, "tasks": {"_count": 1, "": {"_count": 1}}, "methods": {"_count": 3, "of": {"_count": 3}}, "but": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 2, "could": {"_count": 1}, "powerhungry": {"_count": 1}}, "or": {"_count": 1, "normal": {"_count": 1}}, "eye": {"_count": 53, "swiveled": {"_count": 3}, "spun": {"_count": 1}, "could": {"_count": 2}, "was": {"_count": 6}, "rolling": {"_count": 1}, "swooping": {"_count": 1}, "upon": {"_count": 1}, "swiveling": {"_count": 2}, "glaring": {"_count": 1}, "fixed": {"_count": 3}, "on": {"_count": 1}, "barely": {"_count": 1}, "staring": {"_count": 1}, "travel": {"_count": 1}, "going": {"_count": 2}, "whizzed": {"_count": 1}, "left": {"_count": 1}, "roved": {"_count": 1}, "followed": {"_count": 1}, "quivered": {"_count": 1}, "but": {"_count": 1}, "swung": {"_count": 1}, "had": {"_count": 2}, "looked": {"_count": 1}, "were": {"_count": 1}, "back": {"_count": 1}, "did": {"_count": 2}, "that": {"_count": 1}, "spinning": {"_count": 2}, "remained": {"_count": 1}, "it": {"_count": 1}, "scanning": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "whizzing": {"_count": 1}, "now": {"_count": 1}, "swerved": {"_count": 1}}, "education": {"_count": 5, "": {"_count": 2}, "than": {"_count": 1}, "awaits": {"_count": 1}, "have": {"_count": 1}}, "creatures": {"_count": 5, "who": {"_count": 1}, "": {"_count": 2}, "ter": {"_count": 1}, "an": {"_count": 1}}, "prowess": {"_count": 1, "their": {"_count": 1}}, "contract": {"_count": 2, "": {"_count": 1}, "like": {"_count": 1}}, "object": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "people": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "purposes": {"_count": 1, "": {"_count": 1}}, "cooperation": {"_count": 1, "": {"_count": 1}}, "properties": {"_count": 3, "Professor": {"_count": 1}, "generally": {"_count": 1}, "enhance": {"_count": 1}}, "step": {"_count": 1, "listening": {"_count": 1}}, "inventions": {"_count": 2, "on": {"_count": 1}, "we": {"_count": 1}}, "power": {"_count": 6, "": {"_count": 1}, "that": {"_count": 1}, "by": {"_count": 1}, "and": {"_count": 1}, "illegally": {"_count": 1}, "had": {"_count": 1}}, "eyeball": {"_count": 3, "had": {"_count": 1}, "into": {"_count": 1}, "out": {"_count": 1}}, "trunk": {"_count": 1, "": {"_count": 1}}, "understanding": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "sound": {"_count": 1, "after": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}, "knowledge": {"_count": 1, "amassed": {"_count": 1}}, "potions": {"_count": 1, "": {"_count": 1}}, "damage": {"_count": 1, "to": {"_count": 1}}, "snow": {"_count": 2, "glittered": {"_count": 1}, "and": {"_count": 1}}, "defense": {"_count": 1, "of": {"_count": 1}}, "intrusion": {"_count": 1, "and": {"_count": 1}}, "hats": {"_count": 1, "from": {"_count": 1}}, "one": {"_count": 1, "and": {"_count": 1}}, "knife": {"_count": 1, "into": {"_count": 1}}, "population": {"_count": 1, "to": {"_count": 1}}, "barrier": {"_count": 1, "between": {"_count": 1}}, "fortifications": {"_count": 1, "have": {"_count": 1}}, "powers": {"_count": 2, "appeared": {"_count": 1}, "remain": {"_count": 1}}, "means": {"_count": 1, "": {"_count": 1}}, "trickery": {"_count": 1, "to": {"_count": 1}}, "skills": {"_count": 1, "yawned": {"_count": 1}}, "antique": {"_count": 1, "shop": {"_count": 1}}, "number": {"_count": 3, "wouldnt": {"_count": 1}, "": {"_count": 2}}, "history": {"_count": 3, "": {"_count": 1}, "these": {"_count": 1}, "to": {"_count": 1}}, "protection": {"_count": 3, "he": {"_count": 1}, "around": {"_count": 1}, "then": {"_count": 1}}, "pathway": {"_count": 1, "they": {"_count": 1}}, "names": {"_count": 2, "of": {"_count": 2}}, "theoretician": {"_count": 1, "": {"_count": 1}}, "repair": {"_count": 1, "": {"_count": 1}}, "container": {"_count": 1, "is": {"_count": 1}}, "skill": {"_count": 1, "whatever": {"_count": 1}}, "historian": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}}, "secrets": {"_count": 1, "": {"_count": 1}}, "ability": {"_count": 1, "": {"_count": 1}}, "artifacts": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "families": {"_count": 2, "who": {"_count": 1}, "and": {"_count": 1}}, "graffiti": {"_count": 1, "all": {"_count": 1}}, "disturbance": {"_count": 1, "its": {"_count": 1}}, "beings": {"_count": 1, "they": {"_count": 1}}, "races": {"_count": 1, "but": {"_count": 1}}}, "substance": {"_count": 25, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "with": {"_count": 2, "astonishing": {"_count": 1}, "its": {"_count": 1}}, "was": {"_count": 2, "liquid": {"_count": 1}, "a": {"_count": 1}}, "had": {"_count": 1, "become": {"_count": 1}}, "a": {"_count": 1, "room": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "into": {"_count": 3, "which": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "organized": {"_count": 1}, "Rons": {"_count": 1}}, "that": {"_count": 2, "filled": {"_count": 1}, "looked": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "came": {"_count": 1, "away": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "or": {"_count": 1, "whether": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}}, "hairs": {"_count": 26, "phoenix": {"_count": 1, "tail": {"_count": 1}}, "nearly": {"_count": 1, "poking": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 5}}, "and": {"_count": 2, "hide": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "stand": {"_count": 1, "up": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "getting": {"_count": 1, "silly": {"_count": 1}}, "part": {"_count": 1, "company": {"_count": 1}}, "boy": {"_count": 1, "now": {"_count": 1}}, "using": {"_count": 1, "a": {"_count": 1}}, "much": {"_count": 1, "too": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "innocent": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "hes": {"_count": 1}}}, "phoenix": {"_count": 52, "tail": {"_count": 2, "feathers": {"_count": 1}, "feather": {"_count": 1}}, "feather": {"_count": 8, "": {"_count": 2}, "eleven": {"_count": 1}, "in": {"_count": 1}, "wand": {"_count": 1}, "kept": {"_count": 1}, "said": {"_count": 1}, "thirteenandahalf": {"_count": 1}}, "whose": {"_count": 1, "tail": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "whirring": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "have": {"_count": 1, "against": {"_count": 1}}, "blood": {"_count": 1, "was": {"_count": 1}}, "had": {"_count": 5, "swooped": {"_count": 1}, "left": {"_count": 1}, "fluttered": {"_count": 1}, "gone": {"_count": 2}}, "which": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 3, "standing": {"_count": 1}, "singing": {"_count": 1}, "gnawing": {"_count": 1}}, "song": {"_count": 7, "": {"_count": 3}, "his": {"_count": 1}, "died": {"_count": 1}, "gave": {"_count": 1}, "before": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 2}}, "in": {"_count": 1, "fact": {"_count": 1}}, "rose": {"_count": 1, "into": {"_count": 1}}, "awoke": {"_count": 1, "immediately": {"_count": 1}}, "soared": {"_count": 1, "in": {"_count": 1}}, "Fawkes": {"_count": 1, "stood": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "fly": {"_count": 1, "joyfully": {"_count": 1}}, "tears": {"_count": 1, "said": {"_count": 1}}, "wand": {"_count": 6, "was": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}, "We": {"_count": 1}, "and": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}}, "heartstrings": {"_count": 1, "of": {"_count": 1, "dragons": {"_count": 1}}}, "unicorns": {"_count": 16, "dragons": {"_count": 1, "or": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "never": {"_count": 1, "heard": {"_count": 1}}, "dead": {"_count": 1, "Hagrid": {"_count": 1}}, "not": {"_count": 1, "monsters": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "he": {"_count": 1, "forced": {"_count": 1}}, "was": {"_count": 1, "waiting": {"_count": 1}}, "and": {"_count": 1, "nifflers": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "Ill": {"_count": 1, "show": {"_count": 1}}}, "phoenixes": {"_count": 3, "are": {"_count": 1, "quite": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "took": {"_count": 1}}}, "results": {"_count": 32, "with": {"_count": 1, "another": {"_count": 1}}, "Gryffindor": {"_count": 1, "had": {"_count": 1}}, "came": {"_count": 3, "out": {"_count": 2}, "the": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "and": {"_count": 1, "bemoaning": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 5, "our": {"_count": 1}, "your": {"_count": 3}, "her": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "Potions": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 5}}, "will": {"_count": 2, "reflect": {"_count": 1}, "come": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "soon": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "jinx": {"_count": 1}}, "however": {"_count": 1, "must": {"_count": 1}}}, "measuring": {"_count": 4, "between": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "powdered": {"_count": 1}}, "his": {"_count": 1, "History": {"_count": 1}}, "cup": {"_count": 1, "to": {"_count": 1}}}, "nostrils": {"_count": 37, "was": {"_count": 1, "doing": {"_count": 1}}, "a": {"_count": 1, "mixture": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "the": {"_count": 1, "stubs": {"_count": 1}}, "flared": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "making": {"_count": 1, "both": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "flaring": {"_count": 2, "": {"_count": 2}}, "as": {"_count": 3, "he": {"_count": 2}, "they": {"_count": 1}}, "were": {"_count": 4, "flared": {"_count": 1}, "stinging": {"_count": 1}, "suddenly": {"_count": 1}, "dilating": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "quivering": {"_count": 1, "": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "widening": {"_count": 1, "": {"_count": 1}}, "dilating": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "wide": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "her": {"_count": 1}}, "flare": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "He": {"_count": 1, "knew": {"_count": 1}}, "and": {"_count": 1, "gleaming": {"_count": 1}}}, "flitting": {"_count": 3, "around": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "near": {"_count": 1, "one": {"_count": 1}}}, "crumpled": {"_count": 35, "into": {"_count": 1, "a": {"_count": 1}}, "black": {"_count": 1, "umbrella": {"_count": 1}}, "on": {"_count": 1, "one": {"_count": 1}}, "hood": {"_count": 1, "Hedwig": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 2}, "and": {"_count": 1}}, "heap": {"_count": 3, "on": {"_count": 3}}, "and": {"_count": 4, "bleeding": {"_count": 1}, "fell": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "pieces": {"_count": 1, "of": {"_count": 1}}, "quill": {"_count": 1, "into": {"_count": 1}}, "it": {"_count": 1, "up": {"_count": 1}}, "beneath": {"_count": 1, "him": {"_count": 1}}, "figure": {"_count": 1, "": {"_count": 1}}, "letter": {"_count": 1, "over": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "robes": {"_count": 1, "out": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "falling": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 1, "extremities": {"_count": 1}}, "but": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 1, "parchment": {"_count": 1}}, "with": {"_count": 1, "concentration": {"_count": 1}}, "insensible": {"_count": 1, "to": {"_count": 1}}, "against": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "knowing": {"_count": 1}}}, "heap": {"_count": 19, "on": {"_count": 5, "the": {"_count": 5}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "found": {"_count": 1}}, "of": {"_count": 6, "trunks": {"_count": 1}, "bloodstained": {"_count": 1}, "parcels": {"_count": 1}, "what": {"_count": 1}, "twigs": {"_count": 1}, "blankets": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "crying": {"_count": 1, "harder": {"_count": 1}}, "laughs": {"_count": 1, "Skeeter": {"_count": 1}}}, "Try": {"_count": 13, "this": {"_count": 1, "one": {"_count": 1}}, "Harry": {"_count": 1, "tried": {"_count": 1}}, "and": {"_count": 5, "get": {"_count": 1}, "come": {"_count": 1}, "think": {"_count": 1}, "concentrate": {"_count": 1}, "soften": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "us": {"_count": 1, "why": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "Finite": {"_count": 1, "Incantatem": {"_count": 1}}, "Confunding": {"_count": 1, "Mundungus": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}}, "Beechwood": {"_count": 1, "and": {"_count": 1, "dragon": {"_count": 1}}}, "heartstring": {"_count": 5, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "Nine": {"_count": 7, "inches": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "threequarters": {"_count": 2}, "Three": {"_count": 1}}, "raids": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "oclock": {"_count": 1, "Divination": {"_count": 1}}}, "flexible": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "inventive": {"_count": 1}}}, "foolish": {"_count": 44, "waved": {"_count": 1, "it": {"_count": 1}}, "wand": {"_count": 1, "waving": {"_count": 1}}, "girl": {"_count": 1, "how": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "story": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 3, "would": {"_count": 1}, "was": {"_count": 1}, "seemed": {"_count": 1}}, "little": {"_count": 1, "brat": {"_count": 1}}, "boy": {"_count": 2, "": {"_count": 2}}, "to": {"_count": 9, "use": {"_count": 1}, "act": {"_count": 1}, "overlook": {"_count": 1}, "put": {"_count": 1}, "come": {"_count": 1}, "ask": {"_count": 1}, "attempt": {"_count": 1}, "take": {"_count": 1}, "see": {"_count": 1}}, "person": {"_count": 1, "wrote": {"_count": 1}}, "staring": {"_count": 1, "blankly": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "enough": {"_count": 4, "to": {"_count": 4}}, "sacrifice": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 3, "gullible": {"_count": 1}, "forgetful": {"_count": 1}, "dangerous": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "smile": {"_count": 1, "falter": {"_count": 1}}, "old": {"_count": 1, "man": {"_count": 1}}, "Harry": {"_count": 1, "clambered": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}}, "snatched": {"_count": 48, "it": {"_count": 6, "out": {"_count": 2}, "up": {"_count": 4}}, "back": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 5, "Remembrall": {"_count": 1}, "schedule": {"_count": 1}, "owl": {"_count": 1}, "page": {"_count": 1}, "plan": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 19, "Hedwigs": {"_count": 1}, "the": {"_count": 6}, "his": {"_count": 6}, "her": {"_count": 2}, "another": {"_count": 1}, "a": {"_count": 3}}, "glimpses": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "them": {"_count": 1, "back": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "out": {"_count": 1}}, "at": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 3, "wand": {"_count": 1}, "arm": {"_count": 1}, "fingers": {"_count": 1}}, "both": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 3, "him": {"_count": 1}, "his": {"_count": 1}, "Death": {"_count": 1}}, "your": {"_count": 1, "godfather": {"_count": 1}}, "her": {"_count": 1, "arm": {"_count": 1}}}, "Maple": {"_count": 1, "and": {"_count": 1, "phoenix": {"_count": 1}}}, "feather": {"_count": 27, "": {"_count": 4, ".": {"_count": 4}}, "eleven": {"_count": 1, "inches": {"_count": 1}}, "is": {"_count": 1, "in": {"_count": 1}}, "just": {"_count": 1, "one": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "rose": {"_count": 1, "off": {"_count": 1}}, "duster": {"_count": 2, "at": {"_count": 2}}, "bed": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "hair": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "thin": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "matress": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "floated": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "wand": {"_count": 1, "had": {"_count": 1}}, "kept": {"_count": 1, "both": {"_count": 1}}, "said": {"_count": 1, "Ollivander": {"_count": 1}}, "thirteenandahalf": {"_count": 1, "inches": {"_count": 1}}}, "Quite": {"_count": 25, "whippy": {"_count": 1, "": {"_count": 1}}, "apart": {"_count": 2, "from": {"_count": 2}}, "excellent": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 5, "few": {"_count": 4}, "period": {"_count": 1}}, "old": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "double": {"_count": 1}}, "understandable": {"_count": 2, "": {"_count": 1}, "murmured": {"_count": 1}}, "astonishing": {"_count": 1, "the": {"_count": 1}}, "correct": {"_count": 2, "said": {"_count": 2}}, "suddenly": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "right": {"_count": 3, "": {"_count": 1}, "take": {"_count": 1}, "were": {"_count": 1}}, "enough": {"_count": 1, "chat": {"_count": 1}}, "gaga": {"_count": 1, "these": {"_count": 1}}, "ill": {"_count": 1, "": {"_count": 1}}, "sure": {"_count": 1, "": {"_count": 1}}}, "whippy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ebony": {"_count": 1, "and": {"_count": 1, "unicorn": {"_count": 1}}}, "springy": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "damp": {"_count": 1}}}, "mounting": {"_count": 14, "higher": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 3, "broom": {"_count": 2}, "own": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 2, "pavement": {"_count": 1}, "banked": {"_count": 1}}, "dislike": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "higher": {"_count": 1}}, "tension": {"_count": 1, "again": {"_count": 1}}, "pressure": {"_count": 1, "to": {"_count": 1}}, "excitement": {"_count": 2, "": {"_count": 2}}}, "higher": {"_count": 76, "and": {"_count": 16, "higher": {"_count": 9}, "started": {"_count": 1}, "heard": {"_count": 1}, "faster": {"_count": 1}, "her": {"_count": 1}, "wilder": {"_count": 1}, "colder": {"_count": 1}, "as": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 2}}, "away": {"_count": 1, "from": {"_count": 1}}, "still": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 12, "Fred": {"_count": 1}, "usual": {"_count": 4}, "that": {"_count": 1}, "any": {"_count": 1}, "ever": {"_count": 2}, "the": {"_count": 1}, "Hagrids": {"_count": 1}, "her": {"_count": 1}}, "Harry": {"_count": 1, "climbed": {"_count": 1}}, "until": {"_count": 1, "at": {"_count": 1}}, "voice": {"_count": 3, "than": {"_count": 1}, "": {"_count": 2}}, "even": {"_count": 1, "than": {"_count": 1}}, "blazing": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "up": {"_count": 4, "on": {"_count": 1}, "onto": {"_count": 1}, "than": {"_count": 1}, "his": {"_count": 1}}, "squealing": {"_count": 1, "in": {"_count": 1}}, "opinion": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "praise": {"_count": 1, "than": {"_count": 1}}, "dodging": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "at": {"_count": 1, "Ordinary": {"_count": 1}}, "value": {"_count": 1, "on": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "priority": {"_count": 1, "from": {"_count": 1}}, "they": {"_count": 2, "rose": {"_count": 1}, "climbed": {"_count": 1}}, "pleasure": {"_count": 3, "": {"_count": 2}, "repeated": {"_count": 1}}, "to": {"_count": 1, "examine": {"_count": 1}}, "pitch": {"_count": 1, "": {"_count": 1}}, "position": {"_count": 1, "under": {"_count": 1}}, "he": {"_count": 1, "raised": {"_count": 1}}, "London": {"_count": 1, "unfurling": {"_count": 1}}, "now": {"_count": 1, "black": {"_count": 1}}}, "happier": {"_count": 35, "he": {"_count": 1, "seemed": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "than": {"_count": 14, "ever": {"_count": 1}, "hed": {"_count": 1}, "he": {"_count": 4}, "I": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 3}, "they": {"_count": 1}, "his": {"_count": 1}, "anybody": {"_count": 1}}, "opened": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "would": {"_count": 1}}, "note": {"_count": 2, "he": {"_count": 1}, "theyve": {"_count": 1}}, "if": {"_count": 1, "a": {"_count": 1}}, "yehll": {"_count": 1, "be": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "mine": {"_count": 1}}, "time": {"_count": 1, "this": {"_count": 1}}, "times": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 1, "friendlier": {"_count": 1}}, "without": {"_count": 1, "you": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}}, "Tricky": {"_count": 5, "customer": {"_count": 1, "eh": {"_count": 1}}, "Sorts": {"_count": 1, "": {"_count": 1}}, "shot": {"_count": 1, "from": {"_count": 1}}, "conditions": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}}, "customer": {"_count": 2, "eh": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "here": {"_count": 1}}}, "match": {"_count": 191, "here": {"_count": 1, "somewhere": {"_count": 1}}, "and": {"_count": 7, "started": {"_count": 1}, "the": {"_count": 1}, "promptly": {"_count": 1}, "who": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}, "Harry": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "by": {"_count": 2, "Slytherin": {"_count": 1}, "more": {"_count": 1}}, "for": {"_count": 6, "the": {"_count": 1}, "him": {"_count": 1}, "Lucius": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 1}, "her": {"_count": 1}}, "after": {"_count": 2, "weeks": {"_count": 1}, "all": {"_count": 1}}, "in": {"_count": 3, "1473": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 6, "three": {"_count": 1}, "decorations": {"_count": 1}, "powers": {"_count": 1}, "winds": {"_count": 1}, "stadium": {"_count": 1}, "introduction": {"_count": 1}}, "": {"_count": 48, ".": {"_count": 33}, "!": {"_count": 4}, "?": {"_count": 11}}, "closely": {"_count": 1, "watched": {"_count": 1}}, "against": {"_count": 17, "Hufflepuff": {"_count": 7}, "Sly": {"_count": 1}, "Ravenclaw": {"_count": 5}, "Turkey": {"_count": 1}, "Slytherin": {"_count": 3}}, "drew": {"_count": 2, "nearer": {"_count": 2}}, "thats": {"_count": 1, "why": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "of": {"_count": 8, "the": {"_count": 8}}, "pep": {"_count": 1, "talk": {"_count": 1}}, "he": {"_count": 4, "took": {"_count": 1}, "went": {"_count": 1}, "failed": {"_count": 1}, "and": {"_count": 1}}, "taking": {"_count": 1, "pictures": {"_count": 1}}, "would": {"_count": 6, "be": {"_count": 3}, "take": {"_count": 1}, "decide": {"_count": 1}, "have": {"_count": 1}}, "Harry": {"_count": 5, "raced": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "led": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "being": {"_count": 1, "canceled": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "Saturday": {"_count": 1}, "time": {"_count": 1}}, "said": {"_count": 3, "Fred": {"_count": 1}, "Harry": {"_count": 1}, "Lupin": {"_count": 1}}, "Malfoy": {"_count": 1, "had": {"_count": 1}}, "Oliver": {"_count": 1, "Wood": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 2, "usual": {"_count": 1}, "this": {"_count": 1}}, "I": {"_count": 1, "need": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "all": {"_count": 1}, "Hogwarts": {"_count": 1}}, "you": {"_count": 3, "know": {"_count": 1}, "will": {"_count": 2}}, "wont": {"_count": 1, "you": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "could": {"_count": 1, "bring": {"_count": 1}}, "were": {"_count": 1, "out": {"_count": 1}}, "is": {"_count": 3, "the": {"_count": 1}, "over": {"_count": 2}}, "but": {"_count": 2, "this": {"_count": 1}, "lose": {"_count": 1}}, "approached": {"_count": 1, "in": {"_count": 1}}, "riding": {"_count": 1, "dragons": {"_count": 1}}, "hadnt": {"_count": 1, "taken": {"_count": 1}}, "He": {"_count": 1, "peered": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "read": {"_count": 1}}, "became": {"_count": 1, "still": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}, "not": {"_count": 2, "even": {"_count": 1}, "only": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "which": {"_count": 1, "culminated": {"_count": 1}}, "his": {"_count": 2, "badge": {"_count": 1}, "smoking": {"_count": 1}}, "with": {"_count": 1, "Umbridge": {"_count": 1}}, "dawned": {"_count": 1, "bright": {"_count": 1}}, "without": {"_count": 1, "sparing": {"_count": 1}}, "anything": {"_count": 1, "that": {"_count": 1}}, "was": {"_count": 3, "that": {"_count": 1}, "rescheduled": {"_count": 1}, "such": {"_count": 1}}, "Gryffindor": {"_count": 1, "was": {"_count": 1}}, "Bellatrix": {"_count": 1, "s": {"_count": 1}}, "last": {"_count": 1, "term": {"_count": 1}}, "analysis": {"_count": 1, "and": {"_count": 1}}, "Quidditch": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "it": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "commentary": {"_count": 1, "from": {"_count": 1}}, "too": {"_count": 1, "remember": {"_count": 1}}, "just": {"_count": 2, "to": {"_count": 2}}, "had": {"_count": 1, "all": {"_count": 1}}, "party": {"_count": 1, "might": {"_count": 1}}, "Oh": {"_count": 1, "dont": {"_count": 1}}, "Voldemorts": {"_count": 1, "": {"_count": 1}}}, "combination": {"_count": 10, "holly": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 8, "circumstances": {"_count": 1}, "cold": {"_count": 1}, "blackmail": {"_count": 1}, "sheer": {"_count": 1}, "delight": {"_count": 1}, "Dark": {"_count": 1}, "triedandtested": {"_count": 1}, "living": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "holly": {"_count": 15, "and": {"_count": 9, "phoenix": {"_count": 4}, "mistletoe": {"_count": 3}, "gold": {"_count": 1}, "tinsel": {"_count": 1}}, "wreaths": {"_count": 1, "on": {"_count": 1}}, "eleven": {"_count": 1, "inches": {"_count": 1}}, "berries": {"_count": 1, "to": {"_count": 1}}, "hung": {"_count": 1, "around": {"_count": 1}}, "not": {"_count": 1, "elder": {"_count": 1}}, "still": {"_count": 1, "just": {"_count": 1}}}, "supple": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "water": {"_count": 1}}}, "sudden": {"_count": 124, "warmth": {"_count": 2, "in": {"_count": 2}}, "horrible": {"_count": 1, "feeling": {"_count": 1}}, "halt": {"_count": 4, "": {"_count": 2}, "in": {"_count": 1}, "trying": {"_count": 1}}, "rummaging": {"_count": 1, "for": {"_count": 1}}, "appearance": {"_count": 5, "had": {"_count": 1}, "of": {"_count": 3}, "": {"_count": 1}}, "slamming": {"_count": 1, "and": {"_count": 1}}, "frightening": {"_count": 1, "lurch": {"_count": 1}}, "yelp": {"_count": 1, "told": {"_count": 1}}, "noise": {"_count": 1, "outside": {"_count": 1}}, "sinister": {"_count": 1, "desire": {"_count": 1}}, "movement": {"_count": 8, "ahead": {"_count": 2}, "behind": {"_count": 2}, "on": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "Harry": {"_count": 1}}, "idea": {"_count": 3, "": {"_count": 3}}, "hush": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "unpleasant": {"_count": 1, "thought": {"_count": 1}}, "silence": {"_count": 3, "fell": {"_count": 1}, "from": {"_count": 1}, "he": {"_count": 1}}, "loud": {"_count": 1, "screech": {"_count": 1}}, "storm": {"_count": 1, "of": {"_count": 1}}, "thought": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "seemed": {"_count": 1}}, "spate": {"_count": 1, "of": {"_count": 1}}, "gasp": {"_count": 1, "pointing": {"_count": 1}}, "suspicion": {"_count": 2, "": {"_count": 1}, "connected": {"_count": 1}}, "flaming": {"_count": 1, "light": {"_count": 1}}, "blaze": {"_count": 1, "of": {"_count": 1}}, "shower": {"_count": 1, "of": {"_count": 1}}, "blinding": {"_count": 1, "light": {"_count": 1}}, "disappearings": {"_count": 1, "are": {"_count": 1}}, "wobble": {"_count": 1, "banging": {"_count": 1}}, "motion": {"_count": 1, "with": {"_count": 1}}, "breeze": {"_count": 1, "ruffled": {"_count": 1}}, "head": {"_count": 1, "cold": {"_count": 1}}, "sound": {"_count": 1, "from": {"_count": 1}}, "shudder": {"_count": 1, "": {"_count": 1}}, "vision": {"_count": 3, "of": {"_count": 3}}, "excited": {"_count": 1, "murmur": {"_count": 1}}, "concentration": {"_count": 1, "Harry": {"_count": 1}}, "blast": {"_count": 1, "of": {"_count": 1}}, "inspiration": {"_count": 4, "my": {"_count": 1}, "walking": {"_count": 1}, "": {"_count": 2}}, "fear": {"_count": 1, "": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "rustling": {"_count": 1, "noise": {"_count": 1}}, "thrill": {"_count": 1, "of": {"_count": 1}}, "whooshing": {"_count": 1, "noise": {"_count": 1}}, "stillness": {"_count": 1, "for": {"_count": 1}}, "violent": {"_count": 1, "deaths": {"_count": 1}}, "mental": {"_count": 1, "image": {"_count": 1}}, "burst": {"_count": 1, "of": {"_count": 1}}, "tears": {"_count": 3, "again": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "reversal": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "yearning": {"_count": 1}}, "upsurge": {"_count": 2, "of": {"_count": 2}}, "even": {"_count": 3, "Kreacher": {"_count": 1}, "though": {"_count": 2}}, "outbreak": {"_count": 1, "of": {"_count": 1}}, "rush": {"_count": 2, "of": {"_count": 1}, "He": {"_count": 1}}, "she": {"_count": 1, "looked": {"_count": 1}}, "lunging": {"_count": 1, "movement": {"_count": 1}}, "attack": {"_count": 1, "nor": {"_count": 1}}, "blow": {"_count": 1, "and": {"_count": 1}}, "resurgence": {"_count": 1, "of": {"_count": 1}}, "impact": {"_count": 1, "but": {"_count": 1}}, "slashing": {"_count": 1, "movement": {"_count": 1}}, "darkness": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 2, "vivid": {"_count": 1}, "rather": {"_count": 1}}, "exclamation": {"_count": 1, "she": {"_count": 1}}, "brain": {"_count": 1, "wave": {"_count": 1}}, "waft": {"_count": 1, "of": {"_count": 1}}, "unexpected": {"_count": 1, "view": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "or": {"_count": 1, "": {"_count": 1}}, "madness": {"_count": 1, "he": {"_count": 1}}, "glorious": {"_count": 1, "stroke": {"_count": 1}}, "appearances": {"_count": 1, "": {"_count": 1}}, "agility": {"_count": 1, "of": {"_count": 1}}, "wail": {"_count": 1, "sounded": {"_count": 1}}, "deafening": {"_count": 1, "roar": {"_count": 1}}, "change": {"_count": 1, "of": {"_count": 1}}, "excitement": {"_count": 1, "\u2018I": {"_count": 1}}, "brightness": {"_count": 1, "the": {"_count": 1}}, "darkening": {"_count": 1, "of": {"_count": 1}}, "explosion": {"_count": 1, "of": {"_count": 1}}, "shout": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "deeper": {"_count": 1}}, "upswing": {"_count": 1, "in": {"_count": 1}}, "widening": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "knifesharp": {"_count": 1}}, "excursion": {"_count": 1, "into": {"_count": 1}}}, "stream": {"_count": 25, "of": {"_count": 20, "red": {"_count": 1}, "fireplaces": {"_count": 1}, "visitors": {"_count": 1}, "golden": {"_count": 1}, "silver": {"_count": 1}, "bubbles": {"_count": 1}, "Ministry": {"_count": 1}, "wizards": {"_count": 1}, "smoke": {"_count": 2}, "very": {"_count": 1}, "mixed": {"_count": 1}, "whispered": {"_count": 1}, "jabbering": {"_count": 1}, "witches": {"_count": 2}, "thick": {"_count": 1}, "hints": {"_count": 1}, "fire": {"_count": 1}, "Ravenclaws": {"_count": 1}}, "somewhere": {"_count": 1, "close": {"_count": 1}}, "lined": {"_count": 1, "superfine": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "fishing": {"_count": 1, "for": {"_count": 1}}, "a": {"_count": 1, "thin": {"_count": 1}}}, "sparks": {"_count": 54, "shot": {"_count": 5, "from": {"_count": 2}, "out": {"_count": 3}}, "at": {"_count": 3, "each": {"_count": 1}, "the": {"_count": 2}}, "flew": {"_count": 5, "out": {"_count": 3}, "from": {"_count": 2}}, "right": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "well": {"_count": 1}}, "the": {"_count": 2, "others": {"_count": 1}, "curtains": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "and": {"_count": 6, "bangs": {"_count": 1}, "Harry": {"_count": 2}, "Dean": {"_count": 1}, "get": {"_count": 1}, "landed": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "twenty": {"_count": 1, "feet": {"_count": 1}}, "flying": {"_count": 2, "around": {"_count": 1}, "from": {"_count": 1}}, "would": {"_count": 1, "fly": {"_count": 1}}, "showered": {"_count": 1, "out": {"_count": 1}}, "did": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "dancing": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 2, "all": {"_count": 2}}, "emanating": {"_count": 1, "from": {"_count": 1}}, "had": {"_count": 1, "flared": {"_count": 1}}, "green": {"_count": 1, "this": {"_count": 1}}, "fly": {"_count": 1, "from": {"_count": 1}}, "were": {"_count": 1, "soaring": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "silver": {"_count": 1}}, "trailing": {"_count": 1, "from": {"_count": 1}}}, "firework": {"_count": 9, "throwing": {"_count": 1, "dancing": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "our": {"_count": 1}}, "still": {"_count": 1, "passing": {"_count": 1}}, "display": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}}, "spots": {"_count": 16, "of": {"_count": 5, "light": {"_count": 3}, "unicorn": {"_count": 1}, "ink": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "dont": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "the": {"_count": 1, "idiots": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "havent": {"_count": 1, "you": {"_count": 1}}, "now": {"_count": 1, "dear": {"_count": 1}}, "worse": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "appeared": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "whooped": {"_count": 1, "and": {"_count": 1, "clapped": {"_count": 1}}}, "clapped": {"_count": 53, "and": {"_count": 3, "Mr": {"_count": 1}, "cheered": {"_count": 1}, "Harry": {"_count": 1}}, "as": {"_count": 2, "Hannah": {"_count": 1}, "he": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "loudly": {"_count": 2, "with": {"_count": 2}}, "a": {"_count": 9, "hand": {"_count": 7}, "pudgy": {"_count": 1}, "cheering": {"_count": 1}}, "loudest": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 8, "hands": {"_count": 7}, "hand": {"_count": 1}}, "his": {"_count": 11, "hands": {"_count": 8}, "gnarled": {"_count": 1}, "hand": {"_count": 1}, "veined": {"_count": 1}}, "wildly": {"_count": 1, "Harry": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "Dudley": {"_count": 1, "on": {"_count": 1}}, "hard": {"_count": 1, "Harry": {"_count": 1}}, "their": {"_count": 2, "hands": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "along": {"_count": 1, "with": {"_count": 1}}, "except": {"_count": 1, "Dumbledore": {"_count": 1}}, "particularly": {"_count": 1, "hard": {"_count": 1}}, "eyes": {"_count": 1, "on": {"_count": 1}}, "him": {"_count": 3, "on": {"_count": 3}}, "Harry": {"_count": 1, "on": {"_count": 1}}}, "bravo": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "curious": {"_count": 49, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "Sorry": {"_count": 1, "said": {"_count": 1}}, "indeed": {"_count": 1, "that": {"_count": 1}}, "people": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "Muggles": {"_count": 1, "out": {"_count": 1}}, "silver": {"_count": 1, "instruments": {"_count": 1}}, "or": {"_count": 1, "more": {"_count": 1}}, "look": {"_count": 1, "back": {"_count": 1}}, "looks": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 3, "not": {"_count": 1}, "excited": {"_count": 1}, "delighted": {"_count": 1}}, "had": {"_count": 1, "Mr": {"_count": 1}}, "to": {"_count": 1, "know": {"_count": 1}}, "expression": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "upon": {"_count": 1}}, "affinity": {"_count": 1, "with": {"_count": 1}}, "smile": {"_count": 1, "lingered": {"_count": 1}}, "neighbors": {"_count": 1, "had": {"_count": 1}}, "sensation": {"_count": 2, "as": {"_count": 1}, "shot": {"_count": 1}}, "Ravenclaws": {"_count": 1, "behind": {"_count": 1}}, "Luna": {"_count": 1, "Lovegood": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "question": {"_count": 1, "that": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "almost": {"_count": 1, "satisfied": {"_count": 1}}, "sensations": {"_count": 1, "he": {"_count": 1}}, "about": {"_count": 2, "what": {"_count": 1}, "Malfoys": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "I": {"_count": 1, "admit": {"_count": 1}}, "little": {"_count": 1, "potion": {"_count": 1}}, "circumstances": {"_count": 1, "": {"_count": 1}}, "glances": {"_count": 1, "due": {"_count": 1}}, "recollections": {"_count": 1, "these": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "burning": {"_count": 1, "to": {"_count": 1}}, "gleam": {"_count": 1, "of": {"_count": 1}}, "child": {"_count": 1, "wondering": {"_count": 1}}, "thing": {"_count": 1, "Harry": {"_count": 1}}}, "muttering": {"_count": 95, "Curious": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 4, "time": {"_count": 1}, "cruelty": {"_count": 1}, "Hagrid": {"_count": 1}, "Ron": {"_count": 1}}, "nonstop": {"_count": 1, "under": {"_count": 1}}, "he": {"_count": 1, "wouldnt": {"_count": 1}}, "to": {"_count": 14, "herself": {"_count": 6}, "each": {"_count": 1}, "himself": {"_count": 2}, "themselves": {"_count": 1}, "Mrs": {"_count": 1}, "Crabbe": {"_count": 1}, "itself": {"_count": 1}, "his": {"_count": 1}}, "a": {"_count": 2, "countercurse": {"_count": 1}, "bit": {"_count": 1}}, "nonsense": {"_count": 1, "words": {"_count": 1}}, "Pathetic": {"_count": 1, "": {"_count": 1}}, "portraits": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 6, "his": {"_count": 4}, "its": {"_count": 1}, "her": {"_count": 1}}, "strange": {"_count": 1, "words": {"_count": 1}}, "Bad": {"_count": 1, "Dobby": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 1}, "the": {"_count": 1}}, "pointing": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "instructions": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 3, "class": {"_count": 1}, "story": {"_count": 1}, "incantation": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "out": {"_count": 1, "of": {"_count": 1}}, "distractedly": {"_count": 1, "Harry": {"_count": 1}}, "Oh": {"_count": 1, "no": {"_count": 1}}, "something": {"_count": 3, "that": {"_count": 1}, "to": {"_count": 1}, "about": {"_count": 1}}, "furiously": {"_count": 1, "under": {"_count": 1}}, "words": {"_count": 1, "Harry": {"_count": 1}}, "darkly": {"_count": 1, "and": {"_count": 1}}, "soundlessly": {"_count": 1, "at": {"_count": 1}}, "dully": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 6, "then": {"_count": 1}, "I": {"_count": 1}, "fidgeting": {"_count": 1}, "whispers": {"_count": 1}, "pointing": {"_count": 1}, "tightening": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "horrible": {"_count": 1, "curses": {"_count": 1}}, "becoming": {"_count": 1, "more": {"_count": 1}}, "very": {"_count": 1, "loudly": {"_count": 1}}, "again": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "did": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 2, "this": {"_count": 2}}, "imprecations": {"_count": 1, "about": {"_count": 1}}, "what": {"_count": 1, "sounded": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 1}, "your": {"_count": 2}, "the": {"_count": 1}, "some": {"_count": 1}}, "I": {"_count": 1, "solemnly": {"_count": 1}}, "had": {"_count": 1, "subsided": {"_count": 1}}, "wildly": {"_count": 1, "to": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "Diffindol": {"_count": 1, "The": {"_count": 1}}, "Specialis": {"_count": 1, "Reveliol": {"_count": 1}}, "incomprehensibly": {"_count": 1, "for": {"_count": 1}}, "mutinously": {"_count": 1, "behind": {"_count": 1}}, "an": {"_count": 1, "incantation": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "random": {"_count": 1, "words": {"_count": 1}}, "strings": {"_count": 1, "of": {"_count": 1}}, "Tentacula": {"_count": 1, "": {"_count": 1}}, "incantations": {"_count": 2, "of": {"_count": 1}, "pointing": {"_count": 1}}}, "Curious": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "indeed": {"_count": 1, "how": {"_count": 1}}, "to": {"_count": 1, "know": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "began": {"_count": 1}}}, "happens": {"_count": 39, "that": {"_count": 4, "the": {"_count": 1}, "I": {"_count": 2}, "we": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 1}, ".": {"_count": 4}, "!": {"_count": 1}}, "to": {"_count": 12, "have": {"_count": 1}, "me": {"_count": 1}, "Longbottoms": {"_count": 1}, "trust": {"_count": 1}, "wrongdoers": {"_count": 1}, "Sirius": {"_count": 1}, "those": {"_count": 2}, "Hogwarts": {"_count": 1}, "your": {"_count": 1}, "her": {"_count": 1}, "anyone": {"_count": 1}}, "Why": {"_count": 1, "would": {"_count": 1}}, "when": {"_count": 4, "a": {"_count": 1}, "Jupiter": {"_count": 1}, "you": {"_count": 2}}, "all": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "we": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}, "sometimes": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "if": {"_count": 3, "we": {"_count": 1}, "you": {"_count": 1}, "anyone": {"_count": 1}}, "she": {"_count": 1, "did": {"_count": 1}}, "even": {"_count": 1, "between": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "whose": {"_count": 212, "tail": {"_count": 1, "feather": {"_count": 1}}, "laugh": {"_count": 1, "became": {"_count": 1}}, "trees": {"_count": 1, "were": {"_count": 1}}, "name": {"_count": 3, "most": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}}, "insides": {"_count": 1, "were": {"_count": 1}}, "entire": {"_count": 2, "body": {"_count": 1}, "head": {"_count": 1}}, "heads": {"_count": 2, "have": {"_count": 1}, "were": {"_count": 1}}, "ears": {"_count": 3, "were": {"_count": 3}}, "black": {"_count": 2, "eyes": {"_count": 1}, "Death": {"_count": 1}}, "upper": {"_count": 1, "lip": {"_count": 1}}, "eyes": {"_count": 12, "he": {"_count": 1}, "were": {"_count": 8}, "Ignore": {"_count": 1}, "and": {"_count": 1}, "widened": {"_count": 1}}, "nostrils": {"_count": 1, "were": {"_count": 1}}, "mouth": {"_count": 7, "had": {"_count": 3}, "was": {"_count": 3}, "twitched": {"_count": 1}}, "veins": {"_count": 1, "runs": {"_count": 1}}, "wide": {"_count": 1, "scarlet": {"_count": 1}}, "untidy": {"_count": 1, "hair": {"_count": 1}}, "gaunt": {"_count": 1, "face": {"_count": 1}}, "thoughts": {"_count": 2, "had": {"_count": 1}, "were": {"_count": 1}}, "mother": {"_count": 1, "had": {"_count": 1}}, "attention": {"_count": 3, "had": {"_count": 3}}, "jaw": {"_count": 1, "was": {"_count": 1}}, "picture": {"_count": 1, "hung": {"_count": 1}}, "job": {"_count": 2, "it": {"_count": 2}}, "capture": {"_count": 1, "ended": {"_count": 1}}, "hand": {"_count": 3, "as": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "feet": {"_count": 1, "were": {"_count": 1}}, "immense": {"_count": 1, "workload": {"_count": 1}}, "mind": {"_count": 1, "was": {"_count": 1}}, "teeth": {"_count": 1, "seemed": {"_count": 1}}, "face": {"_count": 16, "twitched": {"_count": 1}, "now": {"_count": 2}, "there": {"_count": 1}, "showed": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 8}, "remained": {"_count": 1}, "had": {"_count": 1}}, "breath": {"_count": 1, "was": {"_count": 1}}, "loyalty": {"_count": 1, "has": {"_count": 1}}, "advice": {"_count": 1, "he": {"_count": 1}}, "teachers": {"_count": 1, "didnt": {"_count": 1}}, "voice": {"_count": 4, "sounded": {"_count": 1}, "by": {"_count": 1}, "was": {"_count": 2}}, "legs": {"_count": 2, "were": {"_count": 1}, "went": {"_count": 1}}, "faces": {"_count": 2, "he": {"_count": 1}, "were": {"_count": 1}}, "pimples": {"_count": 1, "were": {"_count": 1}}, "hat": {"_count": 1, "was": {"_count": 1}}, "pale": {"_count": 1, "eyes": {"_count": 1}}, "hair": {"_count": 5, "was": {"_count": 4}, "like": {"_count": 1}}, "contents": {"_count": 2, "rattled": {"_count": 1}, "still": {"_count": 1}}, "enormous": {"_count": 1, "hand": {"_count": 1}}, "names": {"_count": 1, "come": {"_count": 1}}, "smile": {"_count": 1, "faded": {"_count": 1}}, "savage": {"_count": 1, "quill": {"_count": 1}}, "robes": {"_count": 1, "were": {"_count": 1}}, "whereabouts": {"_count": 1, "are": {"_count": 1}}, "many": {"_count": 1, "magical": {"_count": 1}}, "jet": {"_count": 1, "bounced": {"_count": 1}}, "words": {"_count": 1, "he": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "clouds": {"_count": 1, "of": {"_count": 1}}, "shadow": {"_count": 1, "Hogsmeade": {"_count": 1}}, "windows": {"_count": 1, "were": {"_count": 1}}, "door": {"_count": 1, "had": {"_count": 1}}, "pupils": {"_count": 2, "were": {"_count": 2}}, "scar": {"_count": 2, "began": {"_count": 1}, "was": {"_count": 1}}, "handle": {"_count": 1, "he": {"_count": 1}}, "hamlike": {"_count": 1, "hands": {"_count": 1}}, "expression": {"_count": 1, "was": {"_count": 1}}, "occupants": {"_count": 1, "squealed": {"_count": 1}}, "hands": {"_count": 5, "had": {"_count": 1}, "were": {"_count": 2}, "and": {"_count": 1}, "it": {"_count": 1}}, "sleek": {"_count": 1, "blond": {"_count": 1}}, "Intelligence": {"_count": 1, "is": {"_count": 1}}, "wood": {"_count": 1, "is": {"_count": 1}}, "father": {"_count": 1, "runs": {"_count": 1}}, "voices": {"_count": 1, "echoed": {"_count": 1}}, "large": {"_count": 1, "bar": {"_count": 1}}, "whole": {"_count": 1, "head": {"_count": 1}}, "drawer": {"_count": 1, "slid": {"_count": 1}}, "head": {"_count": 4, "was": {"_count": 1}, "came": {"_count": 1}, "had": {"_count": 1}, "Harry": {"_count": 1}}, "brains": {"_count": 1, "have": {"_count": 1}}, "wand": {"_count": 3, "went": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}}, "eyebrows": {"_count": 1, "had": {"_count": 1}}, "venom": {"_count": 1, "prevented": {"_count": 1}}, "function": {"_count": 1, "Harry": {"_count": 1}}, "false": {"_count": 1, "eyelashes": {"_count": 1}}, "minds": {"_count": 1, "and": {"_count": 1}}, "trial": {"_count": 1, "he": {"_count": 1}}, "cheerfulness": {"_count": 1, "was": {"_count": 1}}, "health": {"_count": 1, "was": {"_count": 1}}, "story": {"_count": 1, "had": {"_count": 1}}, "forehead": {"_count": 1, "felt": {"_count": 1}}, "aim": {"_count": 1, "was": {"_count": 1}}, "nose": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "furious": {"_count": 1, "expression": {"_count": 1}}, "diversion": {"_count": 1, "was": {"_count": 1}}, "helmet": {"_count": 1, "creaked": {"_count": 1}}, "stubby": {"_count": 1, "little": {"_count": 1}}, "quills": {"_count": 1, "had": {"_count": 1}}, "long": {"_count": 2, "dark": {"_count": 1}, "and": {"_count": 1}}, "excitement": {"_count": 1, "seemed": {"_count": 1}}, "huge": {"_count": 1, "round": {"_count": 1}}, "flames": {"_count": 1, "burned": {"_count": 1}}, "ankle": {"_count": 1, "had": {"_count": 1}}, "pink": {"_count": 1, "hair": {"_count": 1}}, "occasional": {"_count": 1, "appearances": {"_count": 1}}, "mustache": {"_count": 1, "was": {"_count": 1}}, "airway": {"_count": 1, "seemed": {"_count": 1}}, "first": {"_count": 1, "question": {"_count": 1}}, "massive": {"_count": 1, "outline": {"_count": 1}}, "ragged": {"_count": 1, "gray": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "scales": {"_count": 1, "I": {"_count": 1}}, "high": {"_count": 1, "windows": {"_count": 1}}, "surname": {"_count": 1, "was": {"_count": 1}}, "fate": {"_count": 1, "he": {"_count": 1}}, "howls": {"_count": 1, "of": {"_count": 1}}, "sadness": {"_count": 1, "mingled": {"_count": 1}}, "conviction": {"_count": 1, "by": {"_count": 1}}, "magical": {"_count": 1, "eye": {"_count": 1}}, "short": {"_count": 1, "hair": {"_count": 1}}, "clothes": {"_count": 1, "are": {"_count": 1}}, "appearance": {"_count": 1, "he": {"_count": 1}}, "tassel": {"_count": 1, "dangled": {"_count": 1}}, "death": {"_count": 2, "would": {"_count": 2}}, "fathers": {"_count": 1, "in": {"_count": 1}}, "blonde": {"_count": 1, "hair": {"_count": 1}}, "startled": {"_count": 1, "hands": {"_count": 1}}, "bushy": {"_count": 1, "hair": {"_count": 1}}, "attitude": {"_count": 1, "would": {"_count": 1}}, "only": {"_count": 1, "achievement": {"_count": 1}}, "stainedglass": {"_count": 1, "windows": {"_count": 1}}, "identity": {"_count": 1, "he": {"_count": 1}}, "strings": {"_count": 1, "were": {"_count": 1}}, "family": {"_count": 1, "lived": {"_count": 1}}, "doors": {"_count": 1, "stood": {"_count": 1}}, "Horcruxes": {"_count": 1, "were": {"_count": 1}}, "existence": {"_count": 1, "was": {"_count": 1}}, "wands": {"_count": 1, "these": {"_count": 1}}, "was": {"_count": 1, "it": {"_count": 1}}, "race": {"_count": 1, "is": {"_count": 1}}, "floors": {"_count": 1, "and": {"_count": 1}}, "brain": {"_count": 1, "felt": {"_count": 1}}, "friends": {"_count": 1, "and": {"_count": 1}}, "helmets": {"_count": 1, "creaked": {"_count": 1}}, "potion": {"_count": 1, "had": {"_count": 1}}, "statue": {"_count": 1, "had": {"_count": 1}}, "widening": {"_count": 1, "black": {"_count": 1}}, "magic": {"_count": 1, "is": {"_count": 1}}, "heart": {"_count": 1, "was": {"_count": 1}}, "company": {"_count": 1, "he": {"_count": 1}}}, "destined": {"_count": 4, "for": {"_count": 1, "this": {"_count": 1}}, "to": {"_count": 3, "be": {"_count": 1}, "destroy": {"_count": 2}}}, "brother": {"_count": 121, "why": {"_count": 1, "its": {"_count": 1}}, "gave": {"_count": 2, "you": {"_count": 1}, "me": {"_count": 1}}, "was": {"_count": 5, "walking": {"_count": 1}, "working": {"_count": 1}, "a": {"_count": 1}, "attacked": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 16}, "!": {"_count": 6}, "?": {"_count": 6}}, "Charlie": {"_count": 4, "": {"_count": 2}, "had": {"_count": 1}, "was": {"_count": 1}}, "Hermione": {"_count": 1, "snapped": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "are": {"_count": 1}}, "has": {"_count": 1, "he": {"_count": 1}}, "Percy": {"_count": 5, "walked": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "Harry": {"_count": 1}, "reckons": {"_count": 1}}, "Ron": {"_count": 1, "here": {"_count": 1}}, "had": {"_count": 4, "been": {"_count": 1}, "fallen": {"_count": 1}, "an": {"_count": 1}, "died": {"_count": 1}}, "Otto": {"_count": 1, "got": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Dennis": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "George": {"_count": 1}, "Fred": {"_count": 1}, "Ron": {"_count": 1}}, "Aberforth": {"_count": 4, "was": {"_count": 1}, "only": {"_count": 1}, "arrived": {"_count": 1}, "whose": {"_count": 1}}, "soft": {"_count": 1, "enough": {"_count": 1}}, "Rabastan": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 2, "Amelia": {"_count": 1}, "Beaters": {"_count": 1}}, "Fabian": {"_count": 1, "they": {"_count": 1}}, "Regulus": {"_count": 3, "predeceased": {"_count": 1}, "when": {"_count": 1}, "only": {"_count": 1}}, "wed": {"_count": 1, "have": {"_count": 1}}, "and": {"_count": 14, "sister": {"_count": 10}, "told": {"_count": 1}, "his": {"_count": 1}, "Ron": {"_count": 1}, "my": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "Fabians": {"_count": 1, "and": {"_count": 1}}, "wasnt": {"_count": 2, "it": {"_count": 1}, "more": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "Amycus": {"_count": 2, "fills": {"_count": 1}, "": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 2}}, "what": {"_count": 1, "he": {"_count": 1}}, "traveled": {"_count": 1, "on": {"_count": 1}}, "proceeded": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 3, "his": {"_count": 2}, "many": {"_count": 1}}, "journeyed": {"_count": 1, "to": {"_count": 1}}, "driven": {"_count": 1, "mad": {"_count": 1}}, "finally": {"_count": 1, "took": {"_count": 1}}, "still": {"_count": 1, "got": {"_count": 1}}, "wanted": {"_count": 1, "us": {"_count": 1}}, "Albus": {"_count": 1, "wanted": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "cared": {"_count": 1, "about": {"_count": 1}}, "died": {"_count": 1, "he": {"_count": 1}}, "knew": {"_count": 1, "how": {"_count": 1}}, "have": {"_count": 1, "got": {"_count": 1}}, "would": {"_count": 2, "never": {"_count": 2}}, "I": {"_count": 1, "returned": {"_count": 1}}, "James": {"_count": 1, "took": {"_count": 1}}, "having": {"_count": 1, "an": {"_count": 1}}}, "thirteenandahalf": {"_count": 2, "inches": {"_count": 2, "": {"_count": 1}, "until": {"_count": 1}}}, "HeWho": {"_count": 6, "MustNotBeNamed": {"_count": 6, "did": {"_count": 1}, "remember": {"_count": 1}, "and": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}, "can": {"_count": 1}}}, "MustNotBeNamed": {"_count": 6, "did": {"_count": 1, "great": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "were": {"_count": 1}}, "is": {"_count": 1, "back": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "can": {"_count": 1, "hardly": {"_count": 1}}}, "paid": {"_count": 39, "seven": {"_count": 1, "gold": {"_count": 1}}, "the": {"_count": 3, "woman": {"_count": 1}, "money": {"_count": 1}, "price": {"_count": 1}}, "attention": {"_count": 2, "to": {"_count": 2}}, "dearly": {"_count": 1, "for": {"_count": 1}}, "a": {"_count": 2, "man": {"_count": 1}, "terrible": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 5, "it": {"_count": 1}, "hot": {"_count": 1}, "their": {"_count": 1}, "all": {"_count": 1}, "by": {"_count": 1}}, "no": {"_count": 3, "attention": {"_count": 3}}, "work": {"_count": 1, "because": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, "!": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "Sickles": {"_count": 1}}, "up": {"_count": 1, "just": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "her": {"_count": 3, "a": {"_count": 2}, "any": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "us": {"_count": 1, "in": {"_count": 1}}, "any": {"_count": 1, "attention": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "teach": {"_count": 1}, "Albuss": {"_count": 1}}, "him": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}}, "gawking": {"_count": 1, "at": {"_count": 1, "them": {"_count": 1}}}, "laden": {"_count": 18, "as": {"_count": 1, "they": {"_count": 1}}, "down": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 12, "tureens": {"_count": 1}, "shopping": {"_count": 1}, "books": {"_count": 2}, "dishes": {"_count": 1}, "a": {"_count": 1}, "many": {"_count": 1}, "plastic": {"_count": 1}, "small": {"_count": 1}, "merchandise": {"_count": 1}, "luggage": {"_count": 1}, "bowls": {"_count": 1}}, "arms": {"_count": 1, "": {"_count": 1}}, "dinner": {"_count": 1, "table": {"_count": 1}}, "breakfast": {"_count": 1, "tray": {"_count": 1}}, "trolleys": {"_count": 1, "the": {"_count": 1}}}, "packages": {"_count": 10, "with": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "their": {"_count": 1}}, "of": {"_count": 2, "sweets": {"_count": 1}, "books": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "addressed": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "contained": {"_count": 1, "an": {"_count": 1}}}, "Paddington": {"_count": 1, "station": {"_count": 1, "Harry": {"_count": 1}}}, "bite": {"_count": 39, "to": {"_count": 3, "eat": {"_count": 1}, "sink": {"_count": 1}, "his": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "Snape": {"_count": 1, "s": {"_count": 1}}, "and": {"_count": 3, "to": {"_count": 2}, "their": {"_count": 1}}, "but": {"_count": 1, "Hagrid": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 1}, "impatience": {"_count": 2}, "chicken": {"_count": 1}, "lunch": {"_count": 1}, "pheasant": {"_count": 1}, "toast": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "all": {"_count": 1, "at": {"_count": 1}}, "off": {"_count": 2, "a": {"_count": 2}}, "Pansy": {"_count": 1, "Parkinsons": {"_count": 1}}, "from": {"_count": 2, "a": {"_count": 2}}, "outta": {"_count": 1, "you": {"_count": 1}}, "if": {"_count": 2, "yeh": {"_count": 1}, "I": {"_count": 1}}, "the": {"_count": 1, "man": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 2, "whatever": {"_count": 1}, "two": {"_count": 1}}, "harder": {"_count": 1, "and": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "yet": {"_count": 1}}, "her": {"_count": 1, "as": {"_count": 1}}}, "leaves": {"_count": 67, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 1}}, "nearby": {"_count": 1, "it": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "this": {"_count": 2, "forest": {"_count": 1}, "house": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "free": {"_count": 1}, "and": {"_count": 1}}, "Quirrells": {"_count": 1, "spell": {"_count": 1}}, "its": {"_count": 1, "own": {"_count": 1}}, "Dobby": {"_count": 1, "no": {"_count": 1}}, "were": {"_count": 2, "growing": {"_count": 1}, "visible": {"_count": 1}}, "they": {"_count": 1, "entered": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "rustling": {"_count": 1, "behind": {"_count": 1}}, "and": {"_count": 8, "Ah": {"_count": 1}, "then": {"_count": 1}, "a": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 1}, "twigs": {"_count": 1}, "began": {"_count": 1}, "branches": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}, "was": {"_count": 1, "Crookshanks": {"_count": 1}}, "overhead": {"_count": 2, "rustled": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "me": {"_count": 1, "free": {"_count": 1}}, "showered": {"_count": 1, "down": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "or": {"_count": 1, "wood": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "Harrys": {"_count": 1}}, "her": {"_count": 1, "robes": {"_count": 1}}, "a": {"_count": 2, "single": {"_count": 1}, "sixth": {"_count": 1}}, "spell": {"_count": 1, "die": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 2, "each": {"_count": 1}, "Muriels": {"_count": 1}}, "traces": {"_count": 1, "said": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "waved": {"_count": 1, "lazily": {"_count": 1}}, "far": {"_count": 1, "above": {"_count": 1}}, "slithering": {"_count": 1, "along": {"_count": 1}}, "many": {"_count": 1, "years": {"_count": 1}}, "but": {"_count": 1, "still": {"_count": 1}}}, "plastic": {"_count": 7, "seats": {"_count": 1, "to": {"_count": 1}}, "number": {"_count": 2, "nine": {"_count": 1}, "ten": {"_count": 1}}, "sticks": {"_count": 1, "Muggle": {"_count": 1}}, "toys": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "shopping": {"_count": 1, "bags": {"_count": 1}}}, "Everything": {"_count": 36, "looked": {"_count": 1, "so": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 2}}, "around": {"_count": 2, "him": {"_count": 2}}, "was": {"_count": 11, "lit": {"_count": 1}, "covered": {"_count": 1}, "slightly": {"_count": 1}, "suffused": {"_count": 1}, "going": {"_count": 1}, "chaos": {"_count": 1}, "a": {"_count": 1}, "curved": {"_count": 1}, "supposed": {"_count": 1}, "waiting": {"_count": 1}, "as": {"_count": 1}}, "under": {"_count": 1, "control": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "seemed": {"_count": 4, "much": {"_count": 1}, "to": {"_count": 2}, "fuzzy": {"_count": 1}}, "going": {"_count": 1, "all": {"_count": 1}}, "dark": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 2, "cold": {"_count": 1}, "pitch": {"_count": 1}}, "suddenly": {"_count": 1, "seemed": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "fine": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "fit": {"_count": 1, "everything": {"_count": 1}}, "you": {"_count": 1, "touch": {"_count": 1}}, "everything": {"_count": 1, "I": {"_count": 1}}}, "chewed": {"_count": 3, "his": {"_count": 1, "hamburger": {"_count": 1}}, "greedily": {"_count": 1, "looks": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}}, "thinks": {"_count": 112, "Im": {"_count": 7, "special": {"_count": 1}, "mad": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 2}, "getting": {"_count": 1}, "going": {"_count": 1}}, "theyre": {"_count": 3, "really": {"_count": 1}, "funny": {"_count": 1}, "receiving": {"_count": 1}}, "this": {"_count": 1, "door": {"_count": 1}}, "hes": {"_count": 8, "doing": {"_count": 1}, "so": {"_count": 1}, "going": {"_count": 1}, "a": {"_count": 2}, "delusional": {"_count": 1}, "got": {"_count": 1}, "identified": {"_count": 1}}, "you": {"_count": 2, "dont": {"_count": 1}, "can": {"_count": 1}}, "Firenze": {"_count": 1, "should": {"_count": 1}}, "that": {"_count": 4, "what": {"_count": 1}, "he": {"_count": 1}, "youd": {"_count": 1}, "if": {"_count": 1}}, "Muggleborns": {"_count": 2, "are": {"_count": 2}}, "its": {"_count": 5, "funny": {"_count": 1}, "an": {"_count": 1}, "got": {"_count": 1}, "Hagrid": {"_count": 1}, "a": {"_count": 1}}, "they": {"_count": 1, "might": {"_count": 1}}, "Dumbledores": {"_count": 2, "the": {"_count": 1}, "plotting": {"_count": 1}}, "monsters": {"_count": 1, "arent": {"_count": 1}}, "all": {"_count": 1, "these": {"_count": 1}}, "murdering": {"_count": 1, "Harry": {"_count": 1}}, "will": {"_count": 1, "frighten": {"_count": 1}}, "he": {"_count": 7, "might": {"_count": 1}, "can": {"_count": 1}, "lacks": {"_count": 1}, "will": {"_count": 1}, "could": {"_count": 2}, "is": {"_count": 1}}, "is": {"_count": 2, "good": {"_count": 1}, "the": {"_count": 1}}, "theres": {"_count": 2, "a": {"_count": 1}, "something": {"_count": 1}}, "very": {"_count": 2, "highly": {"_count": 2}}, "Durmstrang": {"_count": 1, "would": {"_count": 1}}, "and": {"_count": 2, "it": {"_count": 1}, "feels": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "shes": {"_count": 1, "kidding": {"_count": 1}}, "if": {"_count": 1, "Crouch": {"_count": 1}}, "Snape": {"_count": 1, "put": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "Percy": {"_count": 1, "Weasleys": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 3, "am": {"_count": 1}, "cant": {"_count": 1}, "have": {"_count": 1}}, "inviting": {"_count": 1, "him": {"_count": 1}}, "we": {"_count": 3, "do": {"_count": 1}, "liked": {"_count": 1}, "wants": {"_count": 1}}, "Dumbledore": {"_count": 3, "wants": {"_count": 1}, "will": {"_count": 1}, "was": {"_count": 1}}, "itll": {"_count": 1, "look": {"_count": 1}}, "got": {"_count": 1, "it": {"_count": 1}}, "Fudge": {"_count": 1, "is": {"_count": 1}}, "no": {"_count": 1, "ones": {"_count": 1}}, "so": {"_count": 1, "too": {"_count": 1}}, "it": {"_count": 7, "would": {"_count": 1}, "a": {"_count": 1}, "inadvisable": {"_count": 1}, "was": {"_count": 1}, "appropriate": {"_count": 1}, "means": {"_count": 2}}, "Harry": {"_count": 2, "you": {"_count": 1}, "ought": {"_count": 1}}, "youre": {"_count": 5, "doing": {"_count": 1}, "off": {"_count": 1}, "barking": {"_count": 1}, "a": {"_count": 2}}, "hed": {"_count": 1, "mobilize": {"_count": 1}}, "are": {"_count": 1, "too": {"_count": 1}}, "youve": {"_count": 1, "reformed": {"_count": 1}}, "the": {"_count": 3, "public": {"_count": 2}, "Hogwarts": {"_count": 1}}, "of": {"_count": 3, "you": {"_count": 1}, "fighting": {"_count": 1}, "everything": {"_count": 1}}, "she": {"_count": 1, "ought": {"_count": 1}}, "Charms": {"_count": 1, "is": {"_count": 1}}, "my": {"_count": 1, "card": {"_count": 1}}, "by": {"_count": 1, "holding": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "Gregorovitch": {"_count": 2, "is": {"_count": 1}, "will": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "do": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}}, "beginning": {"_count": 17, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "of": {"_count": 3, "February": {"_count": 1}, "the": {"_count": 1}, "September": {"_count": 1}}, "I": {"_count": 1, "wouldnt": {"_count": 1}}, "to": {"_count": 8, "ache": {"_count": 1}, "inch": {"_count": 1}, "crack": {"_count": 1}, "appear": {"_count": 1}, "move": {"_count": 1}, "sink": {"_count": 1}, "appreciate": {"_count": 1}, "thin": {"_count": 1}}, "and": {"_count": 1, "Ive": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "yerself": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "Im": {"_count": 1, "armed": {"_count": 1}}, "covered": {"_count": 1, "with": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "out": {"_count": 1, "too": {"_count": 1}}, "then": {"_count": 1, "an": {"_count": 1}}}, "Yehve": {"_count": 8, "been": {"_count": 1, "singled": {"_count": 1}}, "done": {"_count": 2, "yer": {"_count": 1}, "wrong": {"_count": 1}}, "got": {"_count": 2, "ter": {"_count": 1}, "eye": {"_count": 1}}, "heard": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "idea": {"_count": 1}}, "met": {"_count": 1, "him": {"_count": 1}}}, "singled": {"_count": 5, "out": {"_count": 3, "an": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 2, "out": {"_count": 2}}}, "smatter": {"_count": 1, "of": {"_count": 1, "fact": {"_count": 1}}}, "Kings": {"_count": 32, "Cross": {"_count": 32, "its": {"_count": 1}, "station": {"_count": 8}, "tomorrow": {"_count": 2}, "": {"_count": 3}, "at": {"_count": 2}, "it": {"_count": 1}, "when": {"_count": 1}, "with": {"_count": 4}, "was": {"_count": 1}, "even": {"_count": 1}, "than": {"_count": 1}, "by": {"_count": 1}, "remember": {"_count": 1}, "Harry": {"_count": 1}, "Station": {"_count": 2}, "about": {"_count": 1}, "you": {"_count": 1}}}, "Cross": {"_count": 36, "its": {"_count": 1, "all": {"_count": 1}}, "station": {"_count": 8, "the": {"_count": 1}, "": {"_count": 4}, "on": {"_count": 1}, "platform": {"_count": 1}, "but": {"_count": 1}}, "tomorrow": {"_count": 2, "to": {"_count": 1}, "Dad": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "at": {"_count": 2, "half": {"_count": 1}, "a": {"_count": 1}}, "it": {"_count": 1, "Silence": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "Road": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "with": {"_count": 4, "us": {"_count": 1}, "twenty": {"_count": 1}, "a": {"_count": 2}}, "was": {"_count": 1, "very": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "than": {"_count": 1, "it": {"_count": 1}}, "by": {"_count": 1, "foot": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "Station": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "about": {"_count": 1, "Malfoy": {"_count": 1}}, "Ron": {"_count": 1, "we": {"_count": 1}}, "you": {"_count": 1, "say": {"_count": 1}}}, "Any": {"_count": 29, "problems": {"_count": 1, "with": {"_count": 1}}, "second": {"_count": 3, "now": {"_count": 2}, "Lee": {"_count": 1}}, "questions": {"_count": 3, "": {"_count": 2}, "Potter": {"_count": 1}}, "ideas": {"_count": 1, "": {"_count": 1}}, "chance": {"_count": 2, "of": {"_count": 1}, "you": {"_count": 1}}, "disturbance": {"_count": 1, "should": {"_count": 1}}, "sign": {"_count": 1, "of": {"_count": 1}}, "moment": {"_count": 3, "now": {"_count": 2}, "the": {"_count": 1}}, "news": {"_count": 1, "of": {"_count": 1}}, "others": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "wizard": {"_count": 1, "who": {"_count": 1}}, "student": {"_count": 2, "found": {"_count": 2}}, "of": {"_count": 3, "them": {"_count": 2}, "you": {"_count": 1}}, "sound": {"_count": 2, "seemed": {"_count": 1}, "of": {"_count": 1}}, "Dark": {"_count": 1, "object": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}}, "send": {"_count": 108, "me": {"_count": 8, "a": {"_count": 1}, "an": {"_count": 2}, "there": {"_count": 2}, "anywhere": {"_count": 1}, "back": {"_count": 1}, "to": {"_count": 1}}, "you": {"_count": 7, "loads": {"_count": 1}, "a": {"_count": 3}, "an": {"_count": 1}, "stuff": {"_count": 1}, "word": {"_count": 1}}, "sparks": {"_count": 1, "at": {"_count": 1}}, "Norbert": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 3, "owl": {"_count": 3}}, "him": {"_count": 6, "over": {"_count": 1}, "anything": {"_count": 1}, "again": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}, "to": {"_count": 1}}, "Charlie": {"_count": 1, "another": {"_count": 1}}, "up": {"_count": 5, "green": {"_count": 1}, "red": {"_count": 3}, "to": {"_count": 1}}, "Hedwig": {"_count": 2, "to": {"_count": 2}}, "us": {"_count": 3, "a": {"_count": 1}, "your": {"_count": 2}}, "home": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 5, "over": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "said": {"_count": 1}, "off": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "letters": {"_count": 2, "to": {"_count": 2}}, "this": {"_count": 4, "to": {"_count": 1}, "with": {"_count": 2}, "owl": {"_count": 1}}, "people": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 2, "back": {"_count": 1}, "something": {"_count": 1}}, "their": {"_count": 1, "love": {"_count": 1}}, "word": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "Pig": {"_count": 2, "back": {"_count": 2}}, "the": {"_count": 2, "boys": {"_count": 1}, "students": {"_count": 1}}, "Bill": {"_count": 1, "Charlie": {"_count": 1}}, "someone": {"_count": 2, "to": {"_count": 1}, "along": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 14, "couple": {"_count": 1}, "letter": {"_count": 4}, "note": {"_count": 1}, "message": {"_count": 4}, "copy": {"_count": 1}, "fast": {"_count": 1}, "bunch": {"_count": 1}, "Patronus": {"_count": 1}}, "for": {"_count": 2, "some": {"_count": 1}, "him": {"_count": 1}}, "Mum": {"_count": 1, "an": {"_count": 1}}, "Sirius": {"_count": 1, "a": {"_count": 1}}, "notes": {"_count": 1, "to": {"_count": 1}}, "substandard": {"_count": 1, "food": {"_count": 1}}, "another": {"_count": 1, "owl": {"_count": 1}}, "they": {"_count": 1, "can": {"_count": 1}}, "red": {"_count": 1, "sparks": {"_count": 1}}, "out": {"_count": 1, "fiery": {"_count": 1}}, "envoys": {"_count": 1, "to": {"_count": 1}}, "messages": {"_count": 2, "without": {"_count": 1}, "like": {"_count": 1}}, "news": {"_count": 1, "as": {"_count": 1}}, "Rookwood": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 6, "away": {"_count": 1}, "to": {"_count": 1}, "flowers": {"_count": 1}, "disguised": {"_count": 1}, "abroad": {"_count": 1}, "down": {"_count": 1}}, "her": {"_count": 2, "off": {"_count": 1}, "messages": {"_count": 1}}, "Fudge": {"_count": 1, "here": {"_count": 1}}, "your": {"_count": 1, "answer": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "dementors": {"_count": 1, "down": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}, "anyone": {"_count": 1, "particularly": {"_count": 1}}}, "shell": {"_count": 43, "know": {"_count": 1, "where": {"_count": 1}}, "take": {"_count": 1, "me": {"_count": 1}}, "be": {"_count": 12, "all": {"_count": 1}, "wanting": {"_count": 1}, "really": {"_count": 1}, "first": {"_count": 1}, "able": {"_count": 3}, "worried": {"_count": 1}, "feeling": {"_count": 1}, "worrying": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}}, "go": {"_count": 1, "crazy": {"_count": 1}}, "was": {"_count": 1, "glittering": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "never": {"_count": 2, "admit": {"_count": 1}, "be": {"_count": 1}}, "dyou": {"_count": 1, "think": {"_count": 1}}, "turn": {"_count": 1, "up": {"_count": 1}}, "shocked": {"_count": 1, "cat": {"_count": 1}}, "lap": {"_count": 1, "it": {"_count": 1}}, "cheer": {"_count": 1, "up": {"_count": 1}}, "see": {"_count": 1, "how": {"_count": 1}}, "dig": {"_count": 1, "up": {"_count": 1}}, "hear": {"_count": 1, "you": {"_count": 1}}, "get": {"_count": 1, "the": {"_count": 1}}, "weasel": {"_count": 1, "anything": {"_count": 1}}, "only": {"_count": 1, "believe": {"_count": 1}}, "have": {"_count": 2, "the": {"_count": 1}, "written": {"_count": 1}}, "save": {"_count": 1, "you": {"_count": 1}}, "force": {"_count": 2, "you": {"_count": 1}, "it": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "attract": {"_count": 1, "more": {"_count": 1}}, "kiss": {"_count": 1, "you": {"_count": 1}}, "ditch": {"_count": 1, "me": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "pink": {"_count": 1, "and": {"_count": 1}}, "broke": {"_count": 1, "open": {"_count": 1}}}, "JOURNEY": {"_count": 1, "FROM": {"_count": 1, "PLATFORM": {"_count": 1}}}, "PLATFORM": {"_count": 1, "NINE": {"_count": 1, "AND": {"_count": 1}}}, "NINE": {"_count": 1, "AND": {"_count": 1, "THREEQUARTERS": {"_count": 1}}}, "THREEQUARTERS": {"_count": 1, "Harrys": {"_count": 1, "last": {"_count": 1}}}, "month": {"_count": 68, "with": {"_count": 1, "the": {"_count": 1}}, "ago": {"_count": 4, "and": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}}, "to": {"_count": 2, "pay": {"_count": 1}, "go": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "said": {"_count": 2, "Flint": {"_count": 1}, "Ron": {"_count": 1}}, "into": {"_count": 1, "your": {"_count": 1}}, "or": {"_count": 2, "so": {"_count": 1}, "this": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 20, "?": {"_count": 5}, ".": {"_count": 14}, "!": {"_count": 1}}, "of": {"_count": 2, "June": {"_count": 1}, "waiting": {"_count": 1}}, "in": {"_count": 2, "Egypt": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 3, "no": {"_count": 1}, "Hagridll": {"_count": 1}, "you": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "under": {"_count": 1, "Jamess": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 1, "affect": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "after": {"_count": 1, "next": {"_count": 1}}, "Moody": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 2, "admitted": {"_count": 1}, "felt": {"_count": 1}}, "beforehand": {"_count": 1, "": {"_count": 1}}, "later": {"_count": 1, "Harry": {"_count": 1}}, "apart": {"_count": 1, "making": {"_count": 1}}, "was": {"_count": 1, "pouring": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "as": {"_count": 1, "homework": {"_count": 1}}, "ter": {"_count": 1, "get": {"_count": 1}}, "early": {"_count": 1, "Hermione": {"_count": 1}}, "theyll": {"_count": 1, "brighten": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "Keep": {"_count": 1, "your": {"_count": 1}}, "dies": {"_count": 2, "": {"_count": 2}}, "shook": {"_count": 1, "him": {"_count": 1}}, "younger": {"_count": 1, "than": {"_count": 1}}, "made": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "acted": {"_count": 27, "as": {"_count": 6, "though": {"_count": 5}, "carrier": {"_count": 1}}, "like": {"_count": 6, "that": {"_count": 1}, "she": {"_count": 1}, "all": {"_count": 1}, "an": {"_count": 1}, "Patronuses": {"_count": 1}, "a": {"_count": 1}}, "of": {"_count": 3, "her": {"_count": 1}, "its": {"_count": 2}}, "for": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "didnt": {"_count": 1, "they": {"_count": 1}}, "exactly": {"_count": 2, "as": {"_count": 2}}, "on": {"_count": 1, "Professor": {"_count": 1}}, "upon": {"_count": 1, "Dumbledore": {"_count": 1}}, "independently": {"_count": 1, "because": {"_count": 1}}, "most": {"_count": 1, "unwisely": {"_count": 1}}, "without": {"_count": 1, "thinking": {"_count": 1}}, "had": {"_count": 1, "he": {"_count": 1}}}, "improvement": {"_count": 13, "in": {"_count": 2, "many": {"_count": 1}, "Mr": {"_count": 1}}, "after": {"_count": 1, "swearing": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "more": {"_count": 1, "pronounced": {"_count": 1}}, "would": {"_count": 1, "make": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}}, "depressing": {"_count": 5, "after": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "bathroom": {"_count": 1, "Harry": {"_count": 1}}, "discussion": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Hedwig": {"_count": 156, "a": {"_count": 1, "name": {"_count": 1}}, "swooping": {"_count": 1, "in": {"_count": 1}}, "kept": {"_count": 1, "bringing": {"_count": 1}}, "was": {"_count": 14, "shut": {"_count": 1}, "shrieking": {"_count": 1}, "still": {"_count": 1}, "back": {"_count": 2}, "refusing": {"_count": 1}, "dozing": {"_count": 1}, "off": {"_count": 1}, "swaying": {"_count": 1}, "nowhere": {"_count": 1}, "perched": {"_count": 1}, "quivering": {"_count": 1}, "going": {"_count": 1}, "not": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 8}, "!": {"_count": 5}, "?": {"_count": 3}}, "inside": {"_count": 2, "first": {"_count": 1}, "her": {"_count": 1}}, "hadnt": {"_count": 1, "brought": {"_count": 1}}, "off": {"_count": 1, "again": {"_count": 1}}, "brought": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 9, "Dumbledore": {"_count": 2}, "get": {"_count": 1}, "his": {"_count": 3}, "wake": {"_count": 1}, "each": {"_count": 1}, "hold": {"_count": 1}}, "who": {"_count": 7, "was": {"_count": 5}, "seemed": {"_count": 1}, "had": {"_count": 1}}, "had": {"_count": 7, "woken": {"_count": 1}, "been": {"_count": 1}, "brought": {"_count": 1}, "not": {"_count": 1}, "returned": {"_count": 1}, "come": {"_count": 1}, "gone": {"_count": 1}}, "out": {"_count": 3, "he": {"_count": 1}, "at": {"_count": 1}, "of": {"_count": 1}}, "soared": {"_count": 2, "joyfully": {"_count": 1}, "through": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "top": {"_count": 1}, "his": {"_count": 1}}, "jump": {"_count": 1, "": {"_count": 1}}, "swooped": {"_count": 1, "into": {"_count": 1}}, "made": {"_count": 2, "if": {"_count": 1}, "no": {"_count": 1}}, "perhaps": {"_count": 1, "soaring": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 10, "Errol": {"_count": 1}, "youve": {"_count": 1}, "Hermes": {"_count": 1}, "Crookshanks": {"_count": 1}, "was": {"_count": 1}, "that": {"_count": 1}, "Pigwidgeon": {"_count": 4}}, "were": {"_count": 1, "both": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 2}, "yawned": {"_count": 1}}, "gone": {"_count": 1, "he": {"_count": 1}}, "got": {"_count": 1, "his": {"_count": 1}}, "helped": {"_count": 1, "herself": {"_count": 1}}, "fluttered": {"_count": 2, "through": {"_count": 1}, "onto": {"_count": 1}}, "clicked": {"_count": 1, "her": {"_count": 1}}, "rattling": {"_count": 1, "along": {"_count": 1}}, "usually": {"_count": 1, "perched": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "returned": {"_count": 2, "": {"_count": 2}}, "looked": {"_count": 1, "coldly": {"_count": 1}}, "hooted": {"_count": 3, "in": {"_count": 1}, "glumly": {"_count": 1}, "happily": {"_count": 1}}, "hasnt": {"_count": 1, "arrived": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "flew": {"_count": 1, "inside": {"_count": 1}}, "landed": {"_count": 1, "on": {"_count": 1}}, "gave": {"_count": 4, "him": {"_count": 1}, "a": {"_count": 2}, "an": {"_count": 1}}, "nestled": {"_count": 2, "between": {"_count": 1}, "contentedly": {"_count": 1}}, "soaring": {"_count": 1, "toward": {"_count": 1}}, "anxiously": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 1, "bacon": {"_count": 1}}, "keep": {"_count": 1, "changing": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "fluttering": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "down": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 2, "return": {"_count": 2}}, "she": {"_count": 1, "was": {"_count": 1}}, "automatically": {"_count": 1, "not": {"_count": 1}}, "took": {"_count": 2, "fright": {"_count": 1}, "off": {"_count": 1}}, "so": {"_count": 2, "I": {"_count": 1}, "quickly": {"_count": 1}}, "back": {"_count": 1, "the": {"_count": 1}}, "stuffed": {"_count": 1, "her": {"_count": 1}}, "grabbing": {"_count": 1, "a": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "hooting": {"_count": 2, "feebly": {"_count": 1}, "serenely": {"_count": 1}}, "carefully": {"_count": 1, "off": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "remembering": {"_count": 1}}, "safely": {"_count": 1, "in": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "Rons": {"_count": 1, "owl": {"_count": 1}}, "circling": {"_count": 1, "amongst": {"_count": 1}}, "one": {"_count": 1, "for": {"_count": 1}}, "did": {"_count": 1, "nothing": {"_count": 1}}, "Harry": {"_count": 2, "pulled": {"_count": 1}, "": {"_count": 1}}, "Hedwig": {"_count": 1, "But": {"_count": 1}}, "But": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}}, "vacuum": {"_count": 4, "anymore": {"_count": 1, "because": {"_count": 1}}, "cleaner": {"_count": 3, "until": {"_count": 1}, "were": {"_count": 1}, "so": {"_count": 1}}}, "mice": {"_count": 14, "": {"_count": 5, ".": {"_count": 5}}, "had": {"_count": 1, "disappeared": {"_count": 1}}, "around": {"_count": 1, "this": {"_count": 1}}, "and": {"_count": 1, "voles": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "be": {"_count": 1}}, "in": {"_count": 1, "Transfiguration": {"_count": 1}}, "on": {"_count": 1, "him": {"_count": 1}}, "trapped": {"_count": 1, "inside": {"_count": 1}}, "we": {"_count": 1, "would": {"_count": 1}}}, "ticked": {"_count": 5, "off": {"_count": 1, "another": {"_count": 1}}, "them": {"_count": 1, "off": {"_count": 1}}, "nearer": {"_count": 1, "as": {"_count": 1}}, "loudly": {"_count": 1, "on": {"_count": 1}}, "or": {"_count": 1, "beat": {"_count": 1}}}, "August": {"_count": 19, "he": {"_count": 1, "thought": {"_count": 1}}, "and": {"_count": 2, "were": {"_count": 1}, "saw": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "12th": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "which": {"_count": 1}}, "said": {"_count": 2, "Fudge": {"_count": 1}, "Dumbledore": {"_count": 1}}, "the": {"_count": 1, "second": {"_count": 1}}, "gabbled": {"_count": 1, "Mrs": {"_count": 1}}, "30th": {"_count": 1, "Educational": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "next": {"_count": 1, "you": {"_count": 1}}, "wore": {"_count": 1, "on": {"_count": 1}}}, "quiz": {"_count": 3, "show": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "The": {"_count": 1}}}, "lift": {"_count": 80, "": {"_count": 17, "?": {"_count": 1}, ".": {"_count": 16}}, "a": {"_count": 1, "pocket": {"_count": 1}}, "it": {"_count": 1, "up": {"_count": 1}}, "him": {"_count": 3, "onto": {"_count": 1}, "off": {"_count": 1}, "up": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 1, "as": {"_count": 1}}, "descended": {"_count": 1, "in": {"_count": 1}}, "ascended": {"_count": 1, "slowly": {"_count": 1}}, "doors": {"_count": 8, "opened": {"_count": 4}, "rattled": {"_count": 1}, "closed": {"_count": 2}, "clanged": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "juddered": {"_count": 3, "upward": {"_count": 2}, "to": {"_count": 1}}, "pursued": {"_count": 1, "by": {"_count": 1}}, "on": {"_count": 1, "this": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "clattered": {"_count": 2, "into": {"_count": 2}}, "at": {"_count": 4, "that": {"_count": 1}, "the": {"_count": 3}}, "began": {"_count": 3, "to": {"_count": 3}}, "doesnt": {"_count": 1, "even": {"_count": 1}}, "arrived": {"_count": 1, "it": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "slid": {"_count": 1, "smoothly": {"_count": 1}}, "halted": {"_count": 1, "the": {"_count": 1}}, "clattering": {"_count": 1, "ahead": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "think": {"_count": 1}}, "Harrys": {"_count": 1, "mood": {"_count": 1}}, "in": {"_count": 1, "later": {"_count": 1}}, "the": {"_count": 2, "enchantment": {"_count": 1}, "moment": {"_count": 1}}, "and": {"_count": 3, "bustled": {"_count": 1}, "was": {"_count": 1}, "carried": {"_count": 1}}, "creaked": {"_count": 1, "upward": {"_count": 1}}, "stopped": {"_count": 1, "the": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "beside": {"_count": 1, "Hermione": {"_count": 1}}, "was": {"_count": 1, "empty": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "had": {"_count": 1, "stopped": {"_count": 1}}, "his": {"_count": 2, "nose": {"_count": 1}, "head": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "sank": {"_count": 1, "ever": {"_count": 1}}, "rattled": {"_count": 1, "away": {"_count": 1}}, "clanged": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}}, "Grunt": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Thank": {"_count": 88, "you": {"_count": 76, "": {"_count": 7}, "Hagrid": {"_count": 2}, "Kwikspell": {"_count": 1}, "Gilderoy": {"_count": 1}, "Harry": {"_count": 8}, "my": {"_count": 1}, "Dean": {"_count": 1}, "Rosmerta": {"_count": 1}, "Minister": {"_count": 1}, "very": {"_count": 7}, "Headmaster": {"_count": 2}, "for": {"_count": 6}, "said": {"_count": 17}, "Severus": {"_count": 2}, "all": {"_count": 2}, "miss": {"_count": 1}, "Weatherby": {"_count": 1}, "Master": {"_count": 1}, "Eric": {"_count": 1}, "Fortescue": {"_count": 1}, "Argus": {"_count": 1}, "so": {"_count": 2}, "Everard": {"_count": 1}, "Ron": {"_count": 3}, "thank": {"_count": 2}, "smiled": {"_count": 1}, "Pomona": {"_count": 1}, "Miss": {"_count": 1}}, "goodness": {"_count": 6, "you": {"_count": 1}, "I": {"_count": 1}, "what": {"_count": 1}, "thank": {"_count": 1}, "youre": {"_count": 1}, "Ginny": {"_count": 1}}, "heavens": {"_count": 1, "for": {"_count": 1}}, "God": {"_count": 5, "": {"_count": 2}, "shivered": {"_count": 1}, "thank": {"_count": 1}, "you": {"_count": 1}}}, "carpets": {"_count": 5, "all": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "banned": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}}, "punctures": {"_count": 1, "have": {"_count": 1, "they": {"_count": 1}}}, "platform": {"_count": 72, "nine": {"_count": 19, "and": {"_count": 18}, "": {"_count": 1}}, "ten": {"_count": 1, "": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 5, "a": {"_count": 1}, "hear": {"_count": 1}, "out": {"_count": 2}, "looked": {"_count": 1}}, "number": {"_count": 1, "": {"_count": 1}}, "": {"_count": 16, "?": {"_count": 1}, ".": {"_count": 15}}, "packed": {"_count": 3, "with": {"_count": 3}}, "in": {"_count": 1, "search": {"_count": 1}}, "rain": {"_count": 1, "was": {"_count": 1}}, "beckoning": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 1, "like": {"_count": 1}}, "to": {"_count": 3, "say": {"_count": 1}, "chivvy": {"_count": 1}, "address": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "Ron": {"_count": 1}, "an": {"_count": 1}}, "into": {"_count": 1, "existence": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "started": {"_count": 1, "hurrying": {"_count": 1}}, "were": {"_count": 1, "laughing": {"_count": 1}}, "Sirius": {"_count": 1, "you": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "outside": {"_count": 1, "he": {"_count": 1}}, "which": {"_count": 1, "seemed": {"_count": 1}}, "a": {"_count": 1, "brightsilver": {"_count": 1}}, "behind": {"_count": 1, "Umbridge": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "jostling": {"_count": 1, "for": {"_count": 1}}, "by": {"_count": 1, "Madam": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}}, "quarters": {"_count": 9, "at": {"_count": 2, "eleven": {"_count": 2}}, "her": {"_count": 1, "lips": {"_count": 1}}, "was": {"_count": 1, "solved": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "biggest": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Platform": {"_count": 3, "what": {"_count": 1, "": {"_count": 1}}, "nine": {"_count": 1, "platform": {"_count": 1}}, "Nine": {"_count": 1, "and": {"_count": 1}}}, "threequarters": {"_count": 19, "": {"_count": 8, ".": {"_count": 6}, "!": {"_count": 1}, "?": {"_count": 1}}, "came": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "Kings": {"_count": 1}}, "which": {"_count": 2, "wasnt": {"_count": 1}, "was": {"_count": 1}}, "and": {"_count": 2, "looked": {"_count": 1}, "Snape": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "materialized": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "an": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}}, "Barking": {"_count": 2, "said": {"_count": 1, "Uncle": {"_count": 1}}, "mad": {"_count": 1, "said": {"_count": 1}}}, "bother": {"_count": 43, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "him": {"_count": 3, "fell": {"_count": 1}, "if": {"_count": 1}, "at": {"_count": 1}}, "you": {"_count": 5, "": {"_count": 1}, "I": {"_count": 1}, "but": {"_count": 1}, "here": {"_count": 1}, "if": {"_count": 1}}, "making": {"_count": 1, "door": {"_count": 1}}, "with": {"_count": 4, "Floo": {"_count": 1}, "Filch": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "looking": {"_count": 1, "after": {"_count": 1}}, "to": {"_count": 12, "tell": {"_count": 1}, "do": {"_count": 1}, "turn": {"_count": 1}, "look": {"_count": 1}, "correct": {"_count": 1}, "ask": {"_count": 1}, "knock": {"_count": 1}, "keep": {"_count": 1}, "nod": {"_count": 1}, "read": {"_count": 1}, "grope": {"_count": 1}, "deny": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Cedric": {"_count": 1}}, "me": {"_count": 1, "again": {"_count": 1}}, "telling": {"_count": 3, "me": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 1, "carrying": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}, "in": {"_count": 1, "future": {"_count": 1}}, "I": {"_count": 1, "couldve": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "increasing": {"_count": 1, "this": {"_count": 1}}, "myself": {"_count": 1, "about": {"_count": 1}}}, "hospital": {"_count": 125, "growled": {"_count": 1, "Uncle": {"_count": 1}}, "wing": {"_count": 106, "Snape": {"_count": 1}, "": {"_count": 35}, "at": {"_count": 2}, "Weasley": {"_count": 2}, "for": {"_count": 3}, "ah": {"_count": 1}, "burst": {"_count": 3}, "as": {"_count": 1}, "had": {"_count": 1}, "in": {"_count": 2}, "by": {"_count": 2}, "and": {"_count": 5}, "trying": {"_count": 1}, "dewhiskered": {"_count": 1}, "you": {"_count": 2}, "right": {"_count": 1}, "was": {"_count": 2}, "muttering": {"_count": 1}, "while": {"_count": 1}, "said": {"_count": 5}, "with": {"_count": 3}, "door": {"_count": 1}, "or": {"_count": 1}, "without": {"_count": 1}, "entrance": {"_count": 1}, "accompanied": {"_count": 1}, "having": {"_count": 1}, "I": {"_count": 2}, "seemed": {"_count": 1}, "Minister": {"_count": 1}, "preferring": {"_count": 1}, "thats": {"_count": 1}, "her": {"_count": 1}, "Harry": {"_count": 1}, "hurtling": {"_count": 1}, "into": {"_count": 1}, "weak": {"_count": 1}, "why": {"_count": 1}, "he": {"_count": 1}, "completely": {"_count": 1}, "during": {"_count": 1}, "when": {"_count": 1}, "please": {"_count": 1}, "now": {"_count": 1}, "earlier": {"_count": 1}, "both": {"_count": 1}, "before": {"_count": 1}, "because": {"_count": 1}, "first": {"_count": 1}, "to": {"_count": 1}, "twice": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "innocent": {"_count": 1}}, "bed": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 1, "London": {"_count": 1}}, "prison": {"_count": 1, "and": {"_count": 1}}, "doors": {"_count": 2, "burst": {"_count": 1}, "opened": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "let": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "said": {"_count": 1, "in": {"_count": 1}}, "disguised": {"_count": 1, "as": {"_count": 1}}, "patient": {"_count": 1, "and": {"_count": 1}}, "door": {"_count": 1, "opened": {"_count": 1}}}, "ruddy": {"_count": 22, "tail": {"_count": 1, "removed": {"_count": 1}}, "fault": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 3, "think": {"_count": 1}, "wasn": {"_count": 1}, "know": {"_count": 1}}, "form": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 2, "dripping": {"_count": 1}, "had": {"_count": 1}}, "team": {"_count": 1, "in": {"_count": 1}}, "terrible": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "library": {"_count": 1, "again": {"_count": 1}}, "Krum": {"_count": 1, "": {"_count": 1}}, "owls": {"_count": 1, "from": {"_count": 1}}, "hell": {"_count": 4, "are": {"_count": 2}, "was": {"_count": 1}, "": {"_count": 1}}, "dementors": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "off": {"_count": 1}}, "teacher": {"_count": 1, "aren": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}}, "removed": {"_count": 61, "before": {"_count": 1, "he": {"_count": 1}}, "her": {"_count": 5, "own": {"_count": 1}, "burden": {"_count": 1}, "muffler": {"_count": 1}, "protective": {"_count": 1}, "clutching": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "them": {"_count": 5, "": {"_count": 2}, "from": {"_count": 1}, "all": {"_count": 1}, "for": {"_count": 1}}, "the": {"_count": 10, "front": {"_count": 1}, "banner": {"_count": 1}, "hand": {"_count": 1}, "dragon": {"_count": 1}, "swamp": {"_count": 1}, "enchantments": {"_count": 1}, "Shield": {"_count": 1}, "blackthorn": {"_count": 1}, "shining": {"_count": 1}, "wand": {"_count": 1}}, "his": {"_count": 7, "wand": {"_count": 1}, "glasses": {"_count": 2}, "fingers": {"_count": 1}, "foot": {"_count": 1}, "shoes": {"_count": 1}, "coat": {"_count": 1}}, "from": {"_count": 10, "the": {"_count": 7}, "his": {"_count": 2}, "a": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 1}, "to": {"_count": 1}, "from": {"_count": 1}, "he": {"_count": 1}, "against": {"_count": 1}}, "a": {"_count": 3, "large": {"_count": 1}, "scroll": {"_count": 1}, "tottering": {"_count": 1}}, "their": {"_count": 1, "furs": {"_count": 1}}, "another": {"_count": 1, "shining": {"_count": 1}}, "you": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "one": {"_count": 1}, "replaced": {"_count": 1}}, "Harrys": {"_count": 1, "Firebolt": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "clues": {"_count": 1}}, "to": {"_count": 1, "St": {"_count": 1}}, "by": {"_count": 1, "Dark": {"_count": 1}}, "Mafaldas": {"_count": 1, "spectacles": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "me": {"_count": 1, "from": {"_count": 1}}}, "goes": {"_count": 54, "to": {"_count": 6, "Smeltings": {"_count": 1}, "show": {"_count": 2}, "visit": {"_count": 1}, "the": {"_count": 1}, "get": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 2, "one": {"_count": 1}, "her": {"_count": 1}}, "Flint": {"_count": 1, "flying": {"_count": 1}}, "shes": {"_count": 1, "really": {"_count": 1}}, "on": {"_count": 5, "round": {"_count": 1}, "about": {"_count": 1}, "here": {"_count": 1}, "for": {"_count": 1}, "in": {"_count": 1}}, "well": {"_count": 3, "Baron": {"_count": 1}, "Professor": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "back": {"_count": 2, "to": {"_count": 1}, "centuries": {"_count": 1}}, "that": {"_count": 1, "Slytherin": {"_count": 1}}, "anywhere": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "ter": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "Lupin": {"_count": 1, "Hermione": {"_count": 1}}, "racketing": {"_count": 1, "around": {"_count": 1}}, "I": {"_count": 2, "dont": {"_count": 1}, "suppose": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 1}, "dark": {"_count": 1}}, "missing": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 5, "you": {"_count": 4}, "returning": {"_count": 1}}, "Siriuss": {"_count": 1, "mum": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 5, "here": {"_count": 1}, "families": {"_count": 1}, "and": {"_count": 1}, "there": {"_count": 2}}, "okay": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "without": {"_count": 1, "saying": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "cold": {"_count": 1, "with": {"_count": 1}}, "amiss": {"_count": 1, "Potter": {"_count": 1}}}, "excited": {"_count": 72, "and": {"_count": 4, "nervous": {"_count": 1}, "important": {"_count": 1}, "apprehensive": {"_count": 1}, "tense": {"_count": 1}}, "squeak": {"_count": 1, "and": {"_count": 1}}, "since": {"_count": 1, "theyd": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 20}, "!": {"_count": 1}}, "about": {"_count": 2, "this": {"_count": 1}, "it": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "looks": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "sit": {"_count": 1}, "care": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "mutter": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "intrigued": {"_count": 1}}, "Oliver": {"_count": 1, "said": {"_count": 1}}, "murmur": {"_count": 1, "as": {"_count": 1}}, "muttering": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "woman": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "any": {"_count": 1}}, "Edam": {"_count": 1, "": {"_count": 1}}, "breathless": {"_count": 1, "voice": {"_count": 1}}, "squeals": {"_count": 1, "from": {"_count": 1}}, "talk": {"_count": 1, "on": {"_count": 1}}, "interest": {"_count": 1, "rose": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "babble": {"_count": 1, "of": {"_count": 1}}, "voices": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "others": {"_count": 1, "curious": {"_count": 1}}, "crowd": {"_count": 1, "around": {"_count": 1}}, "look": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "voice": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "girls": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "said": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "still": {"_count": 1}}, "curious": {"_count": 1, "burning": {"_count": 1}}, "chatter": {"_count": 1, "grew": {"_count": 1}}, "laughter": {"_count": 1, "": {"_count": 1}}, "elevenyearolds": {"_count": 1, "would": {"_count": 1}}, "trepidation": {"_count": 1, "tainted": {"_count": 1}}, "thought": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}}, "jeans": {"_count": 32, "because": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 2, "torn": {"_count": 1}, "feeling": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "slightly": {"_count": 1, "too": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 7, "a": {"_count": 2}, "tried": {"_count": 1}, "Tshirt": {"_count": 1}, "sweatshirts": {"_count": 1}, "running": {"_count": 1}, "the": {"_count": 1}}, "were": {"_count": 1, "torn": {"_count": 1}}, "a": {"_count": 3, "thin": {"_count": 1}, "sweatshirt": {"_count": 1}, "shabby": {"_count": 1}}, "rang": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "once": {"_count": 1}}, "pocket": {"_count": 3, "then": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "pockets": {"_count": 1, "": {"_count": 1}}, "leaving": {"_count": 1, "a": {"_count": 1}}, "theyre": {"_count": 1, "tight": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}}, "paced": {"_count": 14, "the": {"_count": 5, "room": {"_count": 2}, "corridor": {"_count": 1}, "field": {"_count": 1}, "bedroom": {"_count": 1}}, "up": {"_count": 2, "and": {"_count": 2}}, "around": {"_count": 1, "it": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "looking": {"_count": 1, "all": {"_count": 1}}, "his": {"_count": 2, "red": {"_count": 1}, "bedroom": {"_count": 1}}, "consumed": {"_count": 1, "with": {"_count": 1}}, "slowly": {"_count": 1, "nearer": {"_count": 1}}}, "trunk": {"_count": 188, "had": {"_count": 3, "been": {"_count": 2}, "raised": {"_count": 1}}, "onto": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 1}, "thought": {"_count": 1}, "was": {"_count": 1}}, "like": {"_count": 1, "Harrys": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 5, "at": {"_count": 1}, "bent": {"_count": 1}, "the": {"_count": 1}, "packed": {"_count": 2}}, "and": {"_count": 38, "pulled": {"_count": 5}, "it": {"_count": 1}, "showed": {"_count": 1}, "wheeled": {"_count": 1}, "dropped": {"_count": 1}, "he": {"_count": 1}, "Hedwigs": {"_count": 5}, "frequently": {"_count": 1}, "battle": {"_count": 1}, "peered": {"_count": 1}, "hadnt": {"_count": 1}, "slumped": {"_count": 1}, "each": {"_count": 1}, "the": {"_count": 2}, "drew": {"_count": 1}, "looking": {"_count": 1}, "your": {"_count": 1}, "opening": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}, "started": {"_count": 1}, "saw": {"_count": 1}, "wrenched": {"_count": 1}, "as": {"_count": 1}, "opened": {"_count": 1}, "began": {"_count": 2}, "extracted": {"_count": 1}, "owl": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 29}}, "you": {"_count": 1, "grab": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 1}, "in": {"_count": 2}}, "through": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "slid": {"_count": 1, "through": {"_count": 1}}, "to": {"_count": 7, "the": {"_count": 2}, "make": {"_count": 2}, "look": {"_count": 1}, "black": {"_count": 1}, "his": {"_count": 1}}, "fell": {"_count": 1, "off": {"_count": 1}}, "with": {"_count": 8, "a": {"_count": 2}, "all": {"_count": 1}, "Hedwigs": {"_count": 1}, "the": {"_count": 1}, "seven": {"_count": 1}, "Moody": {"_count": 1}, "some": {"_count": 1}}, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 3}}, "right": {"_count": 2, "after": {"_count": 1}, "now": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "aside": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "open": {"_count": 1, "pulled": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "closed": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 5, "and": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "he": {"_count": 1}}, "extracted": {"_count": 1, "his": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 2}}, "yet": {"_count": 1, "said": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "I": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "advised": {"_count": 1}}, "on": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "top": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 7, "seconds": {"_count": 1}, "the": {"_count": 3}, "paroxysms": {"_count": 1}, "front": {"_count": 1}, "one": {"_count": 1}}, "because": {"_count": 1, "Lupin": {"_count": 1}}, "stood": {"_count": 2, "open": {"_count": 1}, "in": {"_count": 1}}, "ready": {"_count": 1, "": {"_count": 1}}, "forward": {"_count": 1, "into": {"_count": 1}}, "sprang": {"_count": 1, "open": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "illuminating": {"_count": 1, "the": {"_count": 1}}, "placed": {"_count": 1, "a": {"_count": 1}}, "lowered": {"_count": 1, "himself": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 2}}, "lay": {"_count": 1, "open": {"_count": 1}}, "rose": {"_count": 1, "a": {"_count": 1}}, "swinging": {"_count": 1, "wildly": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "for": {"_count": 4, "nine": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}}, "laid": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "and": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "still": {"_count": 1, "not": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "slammed": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "packed": {"_count": 1, "": {"_count": 1}}, "shut": {"_count": 1, "on": {"_count": 1}}, "upon": {"_count": 1, "which": {"_count": 1}}, "cage": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "hit": {"_count": 1, "you": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 1, "off": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "owl": {"_count": 1, "and": {"_count": 1}}}, "loaded": {"_count": 10, "into": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 2, "his": {"_count": 2}}, "the": {"_count": 1, "trunks": {"_count": 1}}, "his": {"_count": 1, "eaglefeather": {"_count": 1}}, "their": {"_count": 2, "own": {"_count": 1}, "pockets": {"_count": 1}}, "with": {"_count": 2, "sandwiches": {"_count": 1}, "drinks": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}}, "talked": {"_count": 42, "Dudley": {"_count": 1, "into": {"_count": 1}}, "about": {"_count": 10, "": {"_count": 1}, "Quidditch": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 2}, "all": {"_count": 1}, "because": {"_count": 1}, "how": {"_count": 1}, "the": {"_count": 1}, "Snape": {"_count": 1}}, "him": {"_count": 1, "through": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 10, "her": {"_count": 1}, "me": {"_count": 1}, "anyone": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 3}, "Sirius": {"_count": 1}, "Cho": {"_count": 1}, "them": {"_count": 1}}, "of": {"_count": 2, "nothing": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 2, "so": {"_count": 1}, "more": {"_count": 1}}, "and": {"_count": 1, "laughed": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "days": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "more": {"_count": 1, "fully": {"_count": 1}}, "over": {"_count": 1, "him": {"_count": 1}}, "it": {"_count": 1, "over": {"_count": 1}}, "them": {"_count": 1, "through": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "themselves": {"_count": 1, "into": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "ourselves": {"_count": 1, "into": {"_count": 1}}, "discussing": {"_count": 1, "matters": {"_count": 1}}}, "dumped": {"_count": 6, "Harrys": {"_count": 1, "trunk": {"_count": 1}}, "on": {"_count": 1, "my": {"_count": 1}}, "them": {"_count": 2, "on": {"_count": 1}, "unceremoniously": {"_count": 1}}, "the": {"_count": 1, "toad": {"_count": 1}}, "him": {"_count": 1, "he": {"_count": 1}}}, "wheeled": {"_count": 30, "it": {"_count": 1, "into": {"_count": 1}}, "round": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 16, "": {"_count": 4}, "to": {"_count": 2}, "pulled": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 3}, "after": {"_count": 1}, "again": {"_count": 1}, "drawing": {"_count": 1}, "staggered": {"_count": 1}}, "his": {"_count": 2, "trolley": {"_count": 2}}, "the": {"_count": 2, "Firebolt": {"_count": 1}, "trolley": {"_count": 1}}, "Buckbeak": {"_count": 1, "around": {"_count": 1}}, "him": {"_count": 2, "around": {"_count": 1}, "about": {"_count": 1}}, "about": {"_count": 4, "crossed": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "platforms": {"_count": 13, "with": {"_count": 1, "a": {"_count": 1}}, "nine": {"_count": 11, "and": {"_count": 11}}, "a": {"_count": 1, "large": {"_count": 1}}}, "built": {"_count": 18, "it": {"_count": 1, "yet": {"_count": 1}}, "this": {"_count": 1, "castle": {"_count": 1}}, "a": {"_count": 1, "hidden": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "for": {"_count": 2, "my": {"_count": 1}, "two": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "man": {"_count": 1, "gone": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 2}}, "that": {"_count": 1, "way": {"_count": 1}}, "of": {"_count": 2, "what": {"_count": 1}, "objects": {"_count": 1}}, "to": {"_count": 2, "accommodate": {"_count": 1}, "hold": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "more": {"_count": 1, "and": {"_count": 1}}}, "term": {"_count": 94, "said": {"_count": 2, "Uncle": {"_count": 1}, "Dumbledore": {"_count": 1}}, "send": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 21}, "!": {"_count": 1}, "?": {"_count": 3}}, "started": {"_count": 5, "took": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "next": {"_count": 1}}, "had": {"_count": 1, "started": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "starts": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "hadnt": {"_count": 1, "started": {"_count": 1}}, "was": {"_count": 2, "canceled": {"_count": 1}, "much": {"_count": 1}}, "he": {"_count": 1, "explained": {"_count": 1}}, "ended": {"_count": 4, "and": {"_count": 2}, "said": {"_count": 1}, "Madame": {"_count": 1}}, "ends": {"_count": 1, "": {"_count": 1}}, "passed": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "near": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "we": {"_count": 1, "shall": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}, "the": {"_count": 1, "sky": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Ron": {"_count": 2, "muttered": {"_count": 1}, "": {"_count": 1}}, "approached": {"_count": 1, "Harry": {"_count": 1}}, "feast": {"_count": 1, "took": {"_count": 1}}, "boys": {"_count": 1, "said": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "became": {"_count": 1, "increasingly": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "arrived": {"_count": 1, "and": {"_count": 1}}, "would": {"_count": 1, "normally": {"_count": 1}}, "of": {"_count": 2, "imprisonment": {"_count": 1}, "office": {"_count": 1}}, "in": {"_count": 3, "Azkaban": {"_count": 1}, "which": {"_count": 1}, "office": {"_count": 1}}, "is": {"_count": 1, "\u2018firearms": {"_count": 1}}, "to": {"_count": 3, "explain": {"_count": 1}, "end": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 2}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "you": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "we": {"_count": 1}}, "unhampered": {"_count": 1, "by": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "We": {"_count": 1, "havent": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 2, "were": {"_count": 1}, "prefer": {"_count": 1}}, "his": {"_count": 1, "only": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "although": {"_count": 1, "as": {"_count": 1}}, "while": {"_count": 1, "reading": {"_count": 1}}, "well": {"_count": 1, "carry": {"_count": 1}}, "positively": {"_count": 1, "pestered": {"_count": 1}}}, "nastier": {"_count": 2, "smile": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "laughing": {"_count": 140, "": {"_count": 31, ".": {"_count": 30}, "?": {"_count": 1}}, "half": {"_count": 1, "crying": {"_count": 1}}, "at": {"_count": 22, "him": {"_count": 5}, "how": {"_count": 2}, "Quirrells": {"_count": 1}, "Harry": {"_count": 1}, "once": {"_count": 2}, "Freds": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 3}, "you": {"_count": 1}, "what": {"_count": 1}, "Gryffindors": {"_count": 1}, "her": {"_count": 2}, "his": {"_count": 1}}, "except": {"_count": 1, "Hermione": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 15, "started": {"_count": 1}, "they": {"_count": 1}, "pointing": {"_count": 3}, "joking": {"_count": 1}, "Uncle": {"_count": 1}, "Hermione": {"_count": 1}, "saying": {"_count": 1}, "talking": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}, "felt": {"_count": 1}, "chattering": {"_count": 1}, "trying": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "matter": {"_count": 4, "he": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "you": {"_count": 1}}, "with": {"_count": 4, "his": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "Harry": {"_count": 1, "tripped": {"_count": 1}}, "is": {"_count": 1, "ead": {"_count": 1}}, "see": {"_count": 1, "this": {"_count": 1}}, "the": {"_count": 1, "woman": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "shrilly": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 2}}, "about": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "McLaggen": {"_count": 1}}, "so": {"_count": 3, "hard": {"_count": 1}, "much": {"_count": 2}}, "derisively": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "almost": {"_count": 1}}, "madly": {"_count": 1, "and": {"_count": 1}}, "wheezily": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "except": {"_count": 1}}, "it": {"_count": 1, "cant": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "joking": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}, "you": {"_count": 1, "two": {"_count": 1}}, "heartily": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "a": {"_count": 1, "high": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "shes": {"_count": 1, "all": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}, "Hermione": {"_count": 1, "however": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "after": {"_count": 1, "we": {"_count": 1}}, "uproariously": {"_count": 1, "": {"_count": 1}}, "openly": {"_count": 1, "": {"_count": 1}}, "below": {"_count": 1, "on": {"_count": 1}}, "girls": {"_count": 1, "who": {"_count": 1}}, "fit": {"_count": 1, "to": {"_count": 1}}, "people": {"_count": 1, "and": {"_count": 1}}, "snapped": {"_count": 1, "Hermione": {"_count": 1}}, "voices": {"_count": 1, "were": {"_count": 1}}, "pulling": {"_count": 1, "Lavender": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "woman": {"_count": 1, "stood": {"_count": 1}}, "immoderately": {"_count": 1, "with": {"_count": 1}}, "boys": {"_count": 1, "face": {"_count": 1}}, "He": {"_count": 2, "pointed": {"_count": 1}, "could": {"_count": 1}}, "scornfully": {"_count": 1, "": {"_count": 1}}, "toothlessly": {"_count": 1, "at": {"_count": 1}}, "or": {"_count": 1, "whooping": {"_count": 1}}, "nearby": {"_count": 1, "and": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}}, "dry": {"_count": 49, "": {"_count": 12, ".": {"_count": 12}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "praying": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "stomach": {"_count": 1, "lurching": {"_count": 1}}, "racking": {"_count": 1, "sobs": {"_count": 1}}, "wheezy": {"_count": 1, "voice": {"_count": 1}}, "reedy": {"_count": 1, "voice": {"_count": 1}}, "since": {"_count": 1, "August": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "panic": {"_count": 1}}, "wood": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "sob": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "ground": {"_count": 1, "arms": {"_count": 1}}, "rot": {"_count": 1, "": {"_count": 1}}, "grass": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "up": {"_count": 1, "puddles": {"_count": 1}}, "was": {"_count": 1, "covered": {"_count": 1}}, "clothes": {"_count": 1, "": {"_count": 1}}, "sobs": {"_count": 2, "of": {"_count": 1}, "echoed": {"_count": 1}}, "interiors": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "little": {"_count": 1, "cough": {"_count": 1}}, "and": {"_count": 1, "frozen": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "within": {"_count": 1, "an": {"_count": 1}}, "chuckle": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "robes": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "so": {"_count": 1}}}, "attract": {"_count": 13, "a": {"_count": 1, "lot": {"_count": 1}}, "attention": {"_count": 1, "by": {"_count": 1}}, "your": {"_count": 1, "attention": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "small": {"_count": 1, "objects": {"_count": 1}}, "Filch": {"_count": 1, "wondering": {"_count": 1}}, "his": {"_count": 1, "attention": {"_count": 1}}, "far": {"_count": 2, "too": {"_count": 1}, "less": {"_count": 1}}, "trouble": {"_count": 2, "but": {"_count": 1}, "Only": {"_count": 1}}, "more": {"_count": 1, "thestrals": {"_count": 1}}, "unwanted": {"_count": 1, "attention": {"_count": 1}}}, "guard": {"_count": 65, "but": {"_count": 2, "didnt": {"_count": 1}, "Dumbledore": {"_count": 1}}, "had": {"_count": 1, "never": {"_count": 1}}, "said": {"_count": 2, "there": {"_count": 1}, "Bill": {"_count": 1}}, "strode": {"_count": 1, "away": {"_count": 1}}, "and": {"_count": 1, "force": {"_count": 1}}, "the": {"_count": 6, "Yes": {"_count": 1}, "halls": {"_count": 1}, "wizard": {"_count": 2}, "Creevey": {"_count": 1}, "prisoners": {"_count": 1}}, "was": {"_count": 3, "up": {"_count": 1}, "there": {"_count": 1}, "confused": {"_count": 1}}, "nearby": {"_count": 1, "yelled": {"_count": 1}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "!": {"_count": 1}, "?": {"_count": 2}}, "all": {"_count": 2, "night": {"_count": 1}, "with": {"_count": 1}}, "on": {"_count": 1, "either": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 1}, "Barty": {"_count": 1}, "him": {"_count": 1}, "something": {"_count": 1}}, "dog": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "honor": {"_count": 2}}, "her": {"_count": 1, "": {"_count": 1}}, "myself": {"_count": 1, "against": {"_count": 1}}, "here": {"_count": 1, "while": {"_count": 1}}, "at": {"_count": 1, "Azkaban": {"_count": 1}}, "some": {"_count": 1, "weirdos": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "standing": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "duty": {"_count": 3, "": {"_count": 1}, "again": {"_count": 1}, "staring": {"_count": 1}}, "or": {"_count": 1, "lay": {"_count": 1}}, "Harry": {"_count": 1, "handled": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "Hermione": {"_count": 1, "corrected": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "carefully": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "felt": {"_count": 1, "his": {"_count": 1}}, "kept": {"_count": 1, "shunting": {"_count": 1}}, "against": {"_count": 1, "YouKnowWho": {"_count": 1}}, "outside": {"_count": 2, "all": {"_count": 1}, "it": {"_count": 1}}, "scrupulously": {"_count": 1, "against": {"_count": 1}}, "for": {"_count": 1, "Malfoy": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}}, "part": {"_count": 140, "of": {"_count": 92, "the": {"_count": 35}, "entering": {"_count": 1}, "his": {"_count": 10}, "most": {"_count": 1}, "our": {"_count": 2}, "Fudges": {"_count": 1}, "your": {"_count": 4}, "Black": {"_count": 1}, "three": {"_count": 1}, "a": {"_count": 3}, "their": {"_count": 5}, "this": {"_count": 2}, "him": {"_count": 10}, "being": {"_count": 1}, "Harry": {"_count": 2}, "four": {"_count": 1}, "last": {"_count": 1}, "any": {"_count": 1}, "it": {"_count": 5}, "an": {"_count": 1}, "some": {"_count": 1}, "Harrys": {"_count": 1}, "you": {"_count": 1}, "himself": {"_count": 1}}, "may": {"_count": 1, "lead": {"_count": 1}}, "was": {"_count": 5, "getting": {"_count": 1}, "hiding": {"_count": 1}, "doing": {"_count": 1}, "not": {"_count": 1}, "worry": {"_count": 1}}, "in": {"_count": 10, "this": {"_count": 1}, "furthering": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 3}, "Harry": {"_count": 1}, "preventing": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}, "believed": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 1, "come": {"_count": 1}}, "veela": {"_count": 2, "thought": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "giant": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "number": {"_count": 1}}, "that": {"_count": 1, "often": {"_count": 1}}, "company": {"_count": 2, "with": {"_count": 2}}, "the": {"_count": 1, "part": {"_count": 1}}, "foretelling": {"_count": 1, "the": {"_count": 1}}, "well": {"_count": 1, "said": {"_count": 1}}, "soon": {"_count": 1, "felt": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "office": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 2, "want": {"_count": 1}, "assure": {"_count": 1}}, "closest": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "Albus": {"_count": 1, "had": {"_count": 1}}, "troll": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "which": {"_count": 1}}, "connected": {"_count": 1, "to": {"_count": 1}}, "convincingly": {"_count": 1, "": {"_count": 1}}}, "annoyed": {"_count": 43, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "Hermione": {"_count": 1, "Hermione": {"_count": 1}}, "with": {"_count": 2, "her": {"_count": 1}, "Ron": {"_count": 1}}, "about": {"_count": 3, "something": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "deeply": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "others": {"_count": 1, "slightly": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "and": {"_count": 2, "slightly": {"_count": 1}, "Harry": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "both": {"_count": 1, "were": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 3, "her": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "leave": {"_count": 1, "now": {"_count": 1}}, "too": {"_count": 1, "I": {"_count": 1}}, "look": {"_count": 1, "as": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "nobody": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "set": {"_count": 1}}, "you": {"_count": 1, "woke": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "voice": {"_count": 1, "echoed": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}}, "Getting": {"_count": 12, "desperate": {"_count": 1, "Harry": {"_count": 1}}, "up": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 3, "all": {"_count": 1}, "their": {"_count": 1}, "his": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 2, "idea": {"_count": 1}, "sword": {"_count": 1}}, "his": {"_count": 1, "comeuppance": {"_count": 1}}, "as": {"_count": 1, "unreliable": {"_count": 1}}, "mail": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "desperate": {"_count": 61, "Harry": {"_count": 1, "asked": {"_count": 1}}, "to": {"_count": 14, "start": {"_count": 1}, "get": {"_count": 4}, "tell": {"_count": 1}, "hear": {"_count": 2}, "free": {"_count": 1}, "export": {"_count": 1}, "earn": {"_count": 1}, "be": {"_count": 1}, "catch": {"_count": 1}, "see": {"_count": 1}}, "for": {"_count": 10, "anything": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 3}, "light": {"_count": 1}, "entry": {"_count": 1}, "protection": {"_count": 1}, "news": {"_count": 1}}, "desire": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 9, "?": {"_count": 1}, ".": {"_count": 8}}, "look": {"_count": 1, "back": {"_count": 1}}, "they": {"_count": 1, "heard": {"_count": 1}}, "man": {"_count": 1, "cruel": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "measures": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 5, "when": {"_count": 1}, "violent": {"_count": 1}, "risky": {"_count": 1}, "farfetched": {"_count": 1}, "cracked": {"_count": 1}}, "windswept": {"_count": 1, "seconds": {"_count": 1}}, "hope": {"_count": 1, "": {"_count": 1}}, "life": {"_count": 1, "she": {"_count": 1}}, "need": {"_count": 1, "of": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "gesture": {"_count": 1, "": {"_count": 1}}, "bid": {"_count": 1, "for": {"_count": 1}}, "thirst": {"_count": 1, "that": {"_count": 1}}, "screams": {"_count": 1, "": {"_count": 1}}, "attempts": {"_count": 1, "of": {"_count": 1}}, "disappointment": {"_count": 1, "and": {"_count": 1}}, "speculation": {"_count": 1, "Harry": {"_count": 1}}, "mans": {"_count": 1, "dream": {"_count": 1}}}, "wasters": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "According": {"_count": 16, "to": {"_count": 16, "the": {"_count": 4}, "Ron": {"_count": 1}, "Wood": {"_count": 1}, "Which": {"_count": 1}, "Nagini": {"_count": 1}, "Mr": {"_count": 1}, "An": {"_count": 1}, "Madam": {"_count": 1}, "a": {"_count": 1}, "Hagrid": {"_count": 1}, "you": {"_count": 1}, "reliable": {"_count": 1}, "Bathilda": {"_count": 1}}}, "arrivals": {"_count": 6, "board": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "would": {"_count": 1, "come": {"_count": 1}}, "settled": {"_count": 1, "around": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}}, "board": {"_count": 46, "he": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "leaving": {"_count": 1, "three": {"_count": 1}}, "where": {"_count": 2, "he": {"_count": 1}, "a": {"_count": 1}}, "taking": {"_count": 1, "almost": {"_count": 1}}, "instead": {"_count": 1, "muttering": {"_count": 1}}, "and": {"_count": 6, "the": {"_count": 1}, "we": {"_count": 1}, "landed": {"_count": 1}, "set": {"_count": 1}, "looking": {"_count": 1}, "unable": {"_count": 1}}, "took": {"_count": 1, "nearly": {"_count": 1}}, "under": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 1, "them": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "reading": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "dusters": {"_count": 1, "wastepaper": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "so": {"_count": 1, "large": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "read": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 1, "which": {"_count": 1}}, "o": {"_count": 2, "governors": {"_count": 1}, "governorsll": {"_count": 1}}, "that": {"_count": 1, "announced": {"_count": 1}}, "a": {"_count": 1, "train": {"_count": 1}}}, "stranded": {"_count": 5, "in": {"_count": 1, "the": {"_count": 1}}, "quite": {"_count": 1, "alone": {"_count": 1}}, "witch": {"_count": 1, "or": {"_count": 1}}, "holidaymakers": {"_count": 2, "fill": {"_count": 1}, "": {"_count": 1}}}, "inspectors": {"_count": 2, "stand": {"_count": 1, "between": {"_count": 1}}, "have": {"_count": 1, "confirmed": {"_count": 1}}}, "packed": {"_count": 85, "with": {"_count": 20, "Muggles": {"_count": 1}, "people": {"_count": 4}, "students": {"_count": 3}, "the": {"_count": 1}, "witches": {"_count": 2}, "his": {"_count": 1}, "plenty": {"_count": 1}, "chattering": {"_count": 1}, "things": {"_count": 1}, "departing": {"_count": 1}, "various": {"_count": 1}, "Christmas": {"_count": 1}, "customers": {"_count": 1}, "tall": {"_count": 1}}, "and": {"_count": 7, "noisy": {"_count": 1}, "ready": {"_count": 3}, "moving": {"_count": 1}, "really": {"_count": 1}, "full": {"_count": 1}}, "his": {"_count": 4, "teddy": {"_count": 1}, "Invisibility": {"_count": 1}, "trunk": {"_count": 1}, "bags": {"_count": 1}}, "Nevilles": {"_count": 1, "toad": {"_count": 1}}, "street": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Great": {"_count": 1, "Hall": {"_count": 1}}, "beneath": {"_count": 1, "it": {"_count": 1}}, "Gryffindor": {"_count": 1, "table": {"_count": 1}}, "stadium": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "inside": {"_count": 2, "the": {"_count": 2}}, "their": {"_count": 2, "bags": {"_count": 2}}, "arent": {"_count": 1, "you": {"_count": 1}}, "Harry": {"_count": 3, "said": {"_count": 1}, "we": {"_count": 1}, "wearing": {"_count": 1}}, "compartments": {"_count": 1, "to": {"_count": 1}}, "away": {"_count": 2, "their": {"_count": 2}}, "all": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "back": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "entrance": {"_count": 1, "hall": {"_count": 1}}, "mainly": {"_count": 1, "with": {"_count": 1}}, "corridors": {"_count": 1, "looking": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "exploding": {"_count": 1}}, "up": {"_count": 5, "Moodys": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 2}}, "Hedwig": {"_count": 1, "was": {"_count": 1}}, "hadnt": {"_count": 1, "we": {"_count": 1}}, "my": {"_count": 3, "": {"_count": 1}, "own": {"_count": 1}, "old": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "Hermiones": {"_count": 1, "cat": {"_count": 1}}, "her": {"_count": 1, "things": {"_count": 1}}, "common": {"_count": 1, "room": {"_count": 1}}, "it": {"_count": 2, "six": {"_count": 1}, "then": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "marquee": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "days": {"_count": 1}}, "your": {"_count": 1, "rucksack": {"_count": 1}}, "any": {"_count": 1, "food": {"_count": 1}}, "table": {"_count": 1, "at": {"_count": 1}}, "far": {"_count": 1, "more": {"_count": 1}}}, "speaker": {"_count": 5, "was": {"_count": 3, "a": {"_count": 1}, "Draco": {"_count": 1}, "seated": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "which": {"_count": 1}}}, "Each": {"_count": 19, "of": {"_count": 10, "them": {"_count": 6}, "the": {"_count": 1}, "these": {"_count": 2}, "us": {"_count": 1}}, "House": {"_count": 1, "has": {"_count": 1}}, "was": {"_count": 3, "the": {"_count": 1}, "so": {"_count": 1}, "squirming": {"_count": 1}}, "individually": {"_count": 1, "selected": {"_count": 1}}, "one": {"_count": 1, "is": {"_count": 1}}, "breath": {"_count": 1, "Harry": {"_count": 1}}, "wore": {"_count": 1, "an": {"_count": 1}}, "picture": {"_count": 1, "was": {"_count": 1}}}, "pushing": {"_count": 62, "a": {"_count": 7, "trunk": {"_count": 1}, "bowl": {"_count": 1}, "dish": {"_count": 1}, "piece": {"_count": 1}, "stone": {"_count": 1}, "cart": {"_count": 1}, "small": {"_count": 1}}, "his": {"_count": 9, "sweaty": {"_count": 1}, "luck": {"_count": 2}, "hair": {"_count": 1}, "head": {"_count": 1}, "essay": {"_count": 1}, "goggles": {"_count": 1}, "glasses": {"_count": 1}, "mothers": {"_count": 1}}, "it": {"_count": 2, "up": {"_count": 1}, "across": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}, "Fred": {"_count": 1, "aside": {"_count": 1}}, "Harrys": {"_count": 1, "trolley": {"_count": 1}}, "back": {"_count": 3, "Harrys": {"_count": 1}, "his": {"_count": 2}}, "the": {"_count": 7, "map": {"_count": 1}, "chair": {"_count": 1}, "dish": {"_count": 1}, "badge": {"_count": 1}, "books": {"_count": 1}, "picture": {"_count": 1}, "owls": {"_count": 1}}, "carts": {"_count": 1, "full": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "down": {"_count": 1}}, "aside": {"_count": 3, "bushes": {"_count": 1}, "a": {"_count": 1}, "unicorn": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "himself": {"_count": 2, "out": {"_count": 1}, "up": {"_count": 1}}, "nearer": {"_count": 1, "Harry": {"_count": 1}}, "those": {"_count": 1, "on": {"_count": 1}}, "away": {"_count": 1, "his": {"_count": 1}}, "some": {"_count": 1, "timidlooking": {"_count": 1}}, "him": {"_count": 6, "out": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 2}, "firmly": {"_count": 1}, "forward": {"_count": 1}}, "students": {"_count": 1, "out": {"_count": 1}}, "open": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "thrusting": {"_count": 1, "young": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Hermione": {"_count": 2, "sideways": {"_count": 1}, "aside": {"_count": 1}}, "her": {"_count": 1, "hair": {"_count": 1}}, "over": {"_count": 1, "chairs": {"_count": 1}}, "and": {"_count": 1, "shoving": {"_count": 1}}}, "Heart": {"_count": 4, "hammering": {"_count": 1, "Harry": {"_count": 1}}, "sinking": {"_count": 1, "he": {"_count": 1}}, "Right": {"_count": 1, "Out": {"_count": 1}}, "beating": {"_count": 1, "in": {"_count": 1}}}, "piped": {"_count": 13, "a": {"_count": 1, "small": {"_count": 1}}, "up": {"_count": 12, "Colin": {"_count": 1}, "Parvati": {"_count": 1}, "Professor": {"_count": 1}, "Neville": {"_count": 1}, "Dean": {"_count": 1}, "Well": {"_count": 1}, "Katie": {"_count": 1}, "Ron": {"_count": 2}, "Scabior": {"_count": 1}, "Luna": {"_count": 2}}}, "headed": {"_count": 81, "who": {"_count": 1, "was": {"_count": 1}}, "upstairs": {"_count": 1, "smothering": {"_count": 1}}, "straight": {"_count": 8, "back": {"_count": 1}, "for": {"_count": 6}, "down": {"_count": 1}}, "for": {"_count": 13, "Flourish": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 7}, "open": {"_count": 1}}, "back": {"_count": 13, "to": {"_count": 6}, "upstairs": {"_count": 2}, "toward": {"_count": 2}, "into": {"_count": 1}, "down": {"_count": 1}, "out": {"_count": 1}}, "The": {"_count": 1, "Polyjuice": {"_count": 1}}, "down": {"_count": 4, "to": {"_count": 3}, "the": {"_count": 1}}, "off": {"_count": 12, "to": {"_count": 4}, "toward": {"_count": 3}, "out": {"_count": 1}, "for": {"_count": 3}, "into": {"_count": 1}}, "away": {"_count": 1, "in": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 3}, "the": {"_count": 1}}, "nervously": {"_count": 1, "for": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "toward": {"_count": 6, "Lupins": {"_count": 1}, "North": {"_count": 1}, "the": {"_count": 2}, "breakfast": {"_count": 1}, "an": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 3}}, "downstairs": {"_count": 3, "into": {"_count": 1}, "from": {"_count": 1}, "toward": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "short": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "SO": {"_count": 1, "YOU": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "farther": {"_count": 1, "along": {"_count": 1}}, "the": {"_count": 1, "top": {"_count": 1}}}, "Mom": {"_count": 13, "cant": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "geroff": {"_count": 1, "": {"_count": 1}}, "guess": {"_count": 1, "what": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "oh": {"_count": 1, "please": {"_count": 1}}, "and": {"_count": 1, "Dad": {"_count": 1}}, "didnt": {"_count": 1, "tell": {"_count": 1}}, "there": {"_count": 1, "he": {"_count": 1}}}, "Ginny": {"_count": 709, "now": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 61, "the": {"_count": 5}, "its": {"_count": 1}, "you": {"_count": 1}, "Ron": {"_count": 1}, "Lockhart": {"_count": 1}, "Neville": {"_count": 11}, "Rons": {"_count": 1}, "she": {"_count": 2}, "knocked": {"_count": 1}, "Mrs": {"_count": 1}, "Crookshanks": {"_count": 1}, "Hermione": {"_count": 3}, "Luna": {"_count": 6}, "Gabrielle": {"_count": 2}, "Demelza": {"_count": 3}, "Dean": {"_count": 7}, "me": {"_count": 2}, "Harry": {"_count": 1}, "gestured": {"_count": 1}, "followed": {"_count": 1}, "on": {"_count": 1}, "motioned": {"_count": 1}, "fear": {"_count": 1}, "probably": {"_count": 1}, "Tonks": {"_count": 2}, "her": {"_count": 2}, "all": {"_count": 1}}, "well": {"_count": 2, "send": {"_count": 1}, "be": {"_count": 1}}, "Weasley": {"_count": 18, "Rons": {"_count": 1}, "who": {"_count": 3}, "seemed": {"_count": 2}, "Harry": {"_count": 1}, "came": {"_count": 1}, "said": {"_count": 2}, "opened": {"_count": 1}, "might": {"_count": 1}, "was": {"_count": 1}, "blushing": {"_count": 1}, "looking": {"_count": 1}, "Neville": {"_count": 1}, "playing": {"_count": 1}, "flew": {"_count": 1}}, "said": {"_count": 22, "Ron": {"_count": 5}, "Percy": {"_count": 1}, "Mrs": {"_count": 2}, "Dumbledore": {"_count": 1}, "because": {"_count": 1}, "rubbing": {"_count": 1}, "the": {"_count": 1}, "Somebody": {"_count": 1}, "as": {"_count": 1}, "immediately": {"_count": 1}, "angrily": {"_count": 1}, "Dean": {"_count": 1}, "Harry": {"_count": 2}, "in": {"_count": 1}, "rather": {"_count": 1}, "Bill": {"_count": 1}}, "already": {"_count": 1, "sitting": {"_count": 1}}, "accidentally": {"_count": 1, "knocked": {"_count": 1}}, "seemed": {"_count": 2, "very": {"_count": 1}, "quite": {"_count": 1}}, "": {"_count": 114, ".": {"_count": 97}, "?": {"_count": 10}, "!": {"_count": 7}}, "needs": {"_count": 1, "robes": {"_count": 1}}, "just": {"_count": 1, "clinging": {"_count": 1}}, "were": {"_count": 20, "going": {"_count": 1}, "all": {"_count": 3}, "nowhere": {"_count": 1}, "dancing": {"_count": 1}, "doing": {"_count": 1}, "still": {"_count": 3}, "already": {"_count": 1}, "ushered": {"_count": 1}, "staring": {"_count": 1}, "tortured": {"_count": 1}, "bending": {"_count": 1}, "quite": {"_count": 1}, "entirely": {"_count": 1}, "sitting": {"_count": 1}, "spending": {"_count": 1}, "feeling": {"_count": 1}}, "was": {"_count": 30, "standing": {"_count": 1}, "among": {"_count": 1}, "having": {"_count": 1}, "staring": {"_count": 2}, "stirring": {"_count": 1}, "shaking": {"_count": 1}, "a": {"_count": 2}, "looking": {"_count": 1}, "laughing": {"_count": 1}, "sitting": {"_count": 1}, "collecting": {"_count": 1}, "kneeling": {"_count": 2}, "hailed": {"_count": 1}, "teamed": {"_count": 1}, "curled": {"_count": 1}, "calling": {"_count": 1}, "still": {"_count": 1}, "best": {"_count": 1}, "doing": {"_count": 1}, "glad": {"_count": 1}, "locked": {"_count": 1}, "no": {"_count": 1}, "lying": {"_count": 1}, "over": {"_count": 1}, "now": {"_count": 1}, "not": {"_count": 1}, "saying": {"_count": 1}}, "went": {"_count": 5, "scarlet": {"_count": 1}, "into": {"_count": 1}, "not": {"_count": 1}, "off": {"_count": 1}, "on": {"_count": 1}}, "got": {"_count": 7, "into": {"_count": 1}, "to": {"_count": 1}, "hold": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}}, "shrieked": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 5, "theyll": {"_count": 1}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "laughing": {"_count": 1}, "any": {"_count": 1}}, "s": {"_count": 5, "lip": {"_count": 1}, "not": {"_count": 1}, "head": {"_count": 1}, "voice": {"_count": 1}, "and": {"_count": 1}}, "blanched": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 2, "find": {"_count": 1}, "say": {"_count": 1}}, "had": {"_count": 20, "chosen": {"_count": 1}, "already": {"_count": 1}, "told": {"_count": 2}, "suddenly": {"_count": 1}, "the": {"_count": 1}, "stuffed": {"_count": 1}, "just": {"_count": 1}, "come": {"_count": 1}, "been": {"_count": 3}, "joined": {"_count": 1}, "decorated": {"_count": 1}, "arrived": {"_count": 1}, "argued": {"_count": 1}, "retired": {"_count": 1}, "jocularly": {"_count": 1}, "said": {"_count": 1}, "once": {"_count": 1}}, "passed": {"_count": 1, "him": {"_count": 1}}, "covered": {"_count": 1, "her": {"_count": 1}}, "sat": {"_count": 2, "watching": {"_count": 1}, "down": {"_count": 1}}, "finally": {"_count": 1, "went": {"_count": 1}}, "looked": {"_count": 5, "like": {"_count": 1}, "as": {"_count": 1}, "unhurt": {"_count": 1}, "up": {"_count": 1}, "simply": {"_count": 1}}, "mumbled": {"_count": 1, "carefully": {"_count": 1}}, "opened": {"_count": 1, "her": {"_count": 1}}, "drew": {"_count": 1, "a": {"_count": 1}}, "jumped": {"_count": 1, "up": {"_count": 1}}, "er": {"_count": 1, "walked": {"_count": 1}}, "could": {"_count": 2, "still": {"_count": 1}, "hear": {"_count": 1}}, "might": {"_count": 2, "be": {"_count": 1}, "look": {"_count": 1}}, "dont": {"_count": 2, "be": {"_count": 1}, "call": {"_count": 1}}, "please": {"_count": 1, "wake": {"_count": 1}}, "half": {"_count": 2, "off": {"_count": 1}, "laughing": {"_count": 1}}, "back": {"_count": 2, "onto": {"_count": 1}, "in": {"_count": 1}}, "get": {"_count": 1, "like": {"_count": 1}}, "Weasleys": {"_count": 1, "like": {"_count": 1}}, "simply": {"_count": 2, "loved": {"_count": 1}, "": {"_count": 1}}, "poured": {"_count": 2, "out": {"_count": 1}, "her": {"_count": 1}}, "to": {"_count": 5, "stop": {"_count": 1}, "speak": {"_count": 1}, "Neville": {"_count": 1}, "Harry": {"_count": 1}, "know": {"_count": 1}}, "told": {"_count": 6, "me": {"_count": 3}, "him": {"_count": 1}, "Harry": {"_count": 1}, "James": {"_count": 1}}, "who": {"_count": 29, "was": {"_count": 13}, "had": {"_count": 7}, "managed": {"_count": 1}, "looked": {"_count": 1}, "grinned": {"_count": 1}, "said": {"_count": 1}, "answered": {"_count": 1}, "were": {"_count": 1}, "sounded": {"_count": 1}, "else": {"_count": 1}, "whispered": {"_count": 1}}, "write": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 4, "fang": {"_count": 1}, "unsaid": {"_count": 1}, "feel": {"_count": 1}, "sword": {"_count": 1}}, "lets": {"_count": 1, "get": {"_count": 1}}, "wept": {"_count": 1, "as": {"_count": 1}}, "forward": {"_count": 1, "they": {"_count": 1}}, "Ron": {"_count": 4, "thrust": {"_count": 1}, "Hermione": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "grab": {"_count": 1, "Rons": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "when": {"_count": 2, "my": {"_count": 1}, "she": {"_count": 1}}, "hasnt": {"_count": 2, "been": {"_count": 1}, "told": {"_count": 1}}, "sobbed": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 3, "and": {"_count": 1}, "but": {"_count": 1}, "soon": {"_count": 1}}, "what": {"_count": 2, "did": {"_count": 1}, "had": {"_count": 1}}, "giggling": {"_count": 1, "": {"_count": 1}}, "come": {"_count": 1, "in": {"_count": 1}}, "giggled": {"_count": 2, "": {"_count": 2}}, "about": {"_count": 2, "a": {"_count": 1}, "you": {"_count": 1}}, "suddenly": {"_count": 2, "appeared": {"_count": 1}, "": {"_count": 1}}, "caught": {"_count": 2, "Harrys": {"_count": 2}}, "huffily": {"_count": 1, "and": {"_count": 1}}, "indignantly": {"_count": 1, "": {"_count": 1}}, "go": {"_count": 1, "scarlet": {"_count": 1}}, "set": {"_count": 2, "off": {"_count": 2}}, "both": {"_count": 3, "laughed": {"_count": 1}, "clapped": {"_count": 1}, "hung": {"_count": 1}}, "followed": {"_count": 3, "Ron": {"_count": 1}, "": {"_count": 1}, "by": {"_count": 1}}, "named": {"_count": 1, "him": {"_count": 1}}, "came": {"_count": 4, "into": {"_count": 1}, "hurrying": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}, "looking": {"_count": 4, "surprised": {"_count": 1}, "astonished": {"_count": 1}, "startled": {"_count": 1}, "up": {"_count": 1}}, "fell": {"_count": 1, "asleep": {"_count": 1}}, "goodbye": {"_count": 1, "": {"_count": 1}}, "annoyed": {"_count": 1, "": {"_count": 1}}, "quietly": {"_count": 3, "": {"_count": 3}}, "you": {"_count": 2, "can": {"_count": 1}, "stay": {"_count": 1}}, "wincing": {"_count": 1, "frequently": {"_count": 1}}, "brightly": {"_count": 3, "": {"_count": 3}}, "as": {"_count": 7, "though": {"_count": 1}, "they": {"_count": 3}, "a": {"_count": 1}, "Harry": {"_count": 1}, "she": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "unblushingly": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "hands": {"_count": 1}}, "grimaced": {"_count": 2, "at": {"_count": 2}}, "by": {"_count": 2, "transforming": {"_count": 1}, "inches": {"_count": 1}}, "started": {"_count": 1, "requesting": {"_count": 1}}, "BED": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 5, "not": {"_count": 5}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "together": {"_count": 1, "very": {"_count": 1}}, "all": {"_count": 4, "stopped": {"_count": 1}, "right": {"_count": 1}, "of": {"_count": 1}, "claimed": {"_count": 1}}, "laughed": {"_count": 1, "Hermione": {"_count": 1}}, "asked": {"_count": 6, "thumping": {"_count": 1}, "": {"_count": 3}, "Ron": {"_count": 2}}, "if": {"_count": 2, "you": {"_count": 2}}, "turned": {"_count": 3, "up": {"_count": 1}, "to": {"_count": 1}, "helpless": {"_count": 1}}, "waved": {"_count": 1, "beside": {"_count": 1}}, "laughing": {"_count": 2, "shes": {"_count": 1}, "with": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "suppressed": {"_count": 1, "a": {"_count": 1}}, "bracingly": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 4, "some": {"_count": 1}, "years": {"_count": 1}, "allowing": {"_count": 1}, "staying": {"_count": 1}}, "but": {"_count": 4, "wed": {"_count": 1}, "as": {"_count": 1}, "let": {"_count": 1}, "Ron": {"_count": 1}}, "became": {"_count": 1, "separated": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "angrily": {"_count": 2, "": {"_count": 1}, "seeing": {"_count": 1}}, "in": {"_count": 9, "such": {"_count": 1}, "a": {"_count": 4}, "turn": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 1}, "lonely": {"_count": 1}}, "hadnt": {"_count": 1, "told": {"_count": 1}}, "fancied": {"_count": 1, "Harry": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "descended": {"_count": 1, "upon": {"_count": 1}}, "impatiently": {"_count": 2, "swinging": {"_count": 1}, "but": {"_count": 1}}, "Neville": {"_count": 9, "Lavender": {"_count": 1}, "and": {"_count": 6}, "or": {"_count": 1}, "Dean": {"_count": 1}}, "miserably": {"_count": 1, "she": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "urgently": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 2, "took": {"_count": 1}, "were": {"_count": 1}}, "a": {"_count": 1, "hug": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "say": {"_count": 1, "youve": {"_count": 1}}, "coolly": {"_count": 1, "": {"_count": 1}}, "almost": {"_count": 1, "sprinted": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "throwing": {"_count": 1, "the": {"_count": 1}}, "skimming": {"_count": 1, "over": {"_count": 1}}, "joined": {"_count": 2, "them": {"_count": 1}, "their": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "not": {"_count": 2, "here": {"_count": 1}, "long": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "corrected": {"_count": 1, "him": {"_count": 1}}, "persisted": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 1, "helping": {"_count": 1}}, "thoughtfully": {"_count": 1, "is": {"_count": 1}}, "jumping": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "into": {"_count": 1}}, "walked": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "uncertainly": {"_count": 1, "": {"_count": 1}}, "raised": {"_count": 3, "her": {"_count": 2}, "an": {"_count": 1}}, "promptly": {"_count": 1, "and": {"_count": 1}}, "shrugged": {"_count": 1, "and": {"_count": 1}}, "Luna": {"_count": 2, "if": {"_count": 1}, "and": {"_count": 1}}, "Hermione": {"_count": 2, "whispered": {"_count": 1}, "was": {"_count": 1}}, "stopped": {"_count": 1, "trying": {"_count": 1}}, "her": {"_count": 2, "jaw": {"_count": 1}, "eyebrows": {"_count": 1}}, "scowling": {"_count": 1, "": {"_count": 1}}, "confidently": {"_count": 1, "who": {"_count": 1}}, "touched": {"_count": 1, "down": {"_count": 1}}, "marched": {"_count": 1, "in": {"_count": 1}}, "showed": {"_count": 1, "signs": {"_count": 1}}, "gave": {"_count": 2, "a": {"_count": 1}, "Harry": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "shook": {"_count": 1, "her": {"_count": 1}}, "immobilized": {"_count": 1, "by": {"_count": 1}}, "whose": {"_count": 2, "ankle": {"_count": 1}, "face": {"_count": 1}}, "shrugging": {"_count": 1, "": {"_count": 1}}, "Yeah": {"_count": 1, "she": {"_count": 1}}, "muffled": {"_count": 1, "their": {"_count": 1}}, "resolutely": {"_count": 1, "": {"_count": 1}}, "vaguely": {"_count": 1, "": {"_count": 1}}, "plonking": {"_count": 1, "herself": {"_count": 1}}, "slid": {"_count": 1, "off": {"_count": 1}}, "slyly": {"_count": 1, "": {"_count": 1}}, "nodding": {"_count": 1, "": {"_count": 1}}, "And": {"_count": 1, "shes": {"_count": 1}}, "scornfully": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "whispered": {"_count": 1}, "was": {"_count": 1}}, "outraged": {"_count": 1, "": {"_count": 1}}, "crossly": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 1, "its": {"_count": 1}}, "tentatively": {"_count": 1, "for": {"_count": 1}}, "good": {"_count": 1, "so": {"_count": 1}}, "mimed": {"_count": 1, "vomiting": {"_count": 1}}, "while": {"_count": 2, "Harry": {"_count": 1}, "Fleur": {"_count": 1}}, "appeared": {"_count": 1, "all": {"_count": 1}}, "still": {"_count": 1, "poring": {"_count": 1}}, "calmly": {"_count": 1, "leaning": {"_count": 1}}, "putting": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 3, "once": {"_count": 1}, "lunchtime": {"_count": 1}, "all": {"_count": 1}}, "stuck": {"_count": 1, "out": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "staunchly": {"_count": 1, "": {"_count": 1}}, "theres": {"_count": 1, "nothing": {"_count": 1}}, "imagining": {"_count": 1, "Hermione": {"_count": 1}}, "his": {"_count": 1, "technique": {"_count": 1}}, "broke": {"_count": 1, "apart": {"_count": 1}}, "tossing": {"_count": 1, "her": {"_count": 1}}, "drawing": {"_count": 1, "her": {"_count": 1}}, "beside": {"_count": 1, "herself": {"_count": 1}}, "around": {"_count": 1, "Harry": {"_count": 1}}, "screamed": {"_count": 1, "with": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "glowering": {"_count": 1, "in": {"_count": 1}}, "ignoring": {"_count": 1, "Ron": {"_count": 1}}, "having": {"_count": 1, "scored": {"_count": 1}}, "where": {"_count": 1, "re": {"_count": 1}}, "sped": {"_count": 1, "right": {"_count": 1}}, "saying": {"_count": 1, "blithely": {"_count": 1}}, "Demelza": {"_count": 1, "": {"_count": 1}}, "Arnold": {"_count": 1, "the": {"_count": 1}}, "dispassionately": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "pausing": {"_count": 1, "behind": {"_count": 1}}, "thatll": {"_count": 1, "make": {"_count": 1}}, "cheerfully": {"_count": 1, "leaning": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "Fleur": {"_count": 1, "and": {"_count": 1}}, "lined": {"_count": 1, "up": {"_count": 1}}, "patting": {"_count": 1, "her": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "Neither": {"_count": 1, "of": {"_count": 1}}, "reminded": {"_count": 1, "him": {"_count": 1}}, "took": {"_count": 3, "it": {"_count": 2}, "his": {"_count": 1}}, "weeping": {"_count": 1, "over": {"_count": 1}}, "splitting": {"_count": 1, "up": {"_count": 1}}, "temporarily": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "look": {"_count": 2, "where": {"_count": 1}, "around": {"_count": 1}}, "youll": {"_count": 1, "only": {"_count": 1}}, "playing": {"_count": 1, "Seeker": {"_count": 1}}, "running": {"_count": 2, "toward": {"_count": 1}, "down": {"_count": 1}}, "turning": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "cried": {"_count": 1, "but": {"_count": 1}}, "move": {"_count": 1, "beside": {"_count": 1}}, "later": {"_count": 1, "that": {"_count": 1}}, "filed": {"_count": 1, "into": {"_count": 1}}, "nudged": {"_count": 1, "him": {"_count": 1}}, "listen": {"_count": 1, "": {"_count": 1}}, "fiercely": {"_count": 1, "": {"_count": 1}}, "pointing": {"_count": 1, "to": {"_count": 1}}, "gasped": {"_count": 1, "and": {"_count": 1}}, "whispered": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "cleared": {"_count": 1, "her": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "glanced": {"_count": 1, "around": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "shed": {"_count": 1, "have": {"_count": 1}}, "sends": {"_count": 1, "you": {"_count": 1}}, "never": {"_count": 1, "came": {"_count": 1}}, "that": {"_count": 2, "if": {"_count": 1}, "she": {"_count": 1}}, "shouted": {"_count": 1, "angry": {"_count": 1}}, "stay": {"_count": 1, "here": {"_count": 1}}, "Tonks": {"_count": 2, "and": {"_count": 1}, "Im": {"_count": 1}}, "sent": {"_count": 1, "a": {"_count": 1}}, "two": {"_count": 1, "tables": {"_count": 1}}, "reassuringly": {"_count": 1, "": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "kissed": {"_count": 1, "Albus": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}}, "Percy": {"_count": 367, "you": {"_count": 2, "go": {"_count": 1}, "cant": {"_count": 1}}, "": {"_count": 51, "?": {"_count": 8}, ".": {"_count": 37}, "!": {"_count": 6}}, "the": {"_count": 3, "Prefect": {"_count": 2}, "two": {"_count": 1}}, "gets": {"_count": 2, "new": {"_count": 1}, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 2, "an": {"_count": 1}, "into": {"_count": 1}}, "Weasley": {"_count": 21, "pompously": {"_count": 1}, "and": {"_count": 1}, "stuck": {"_count": 1}, "had": {"_count": 1}, "strolled": {"_count": 1}, "arrived": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 3}, "appeared": {"_count": 1}, "acting": {"_count": 1}, "meanwhile": {"_count": 1}, "": {"_count": 3}, "hovered": {"_count": 1}, "let": {"_count": 1}, "striding": {"_count": 1}, "might": {"_count": 1}, "strode": {"_count": 1}}, "uncertainly": {"_count": 1, "": {"_count": 1}}, "airily": {"_count": 1, "": {"_count": 1}}, "frowning": {"_count": 1, "at": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "led": {"_count": 1, "them": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "whispered": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 16, "the": {"_count": 5}, "extracting": {"_count": 1}, "Mr": {"_count": 1}, "a": {"_count": 1}, "Mrs": {"_count": 1}, "Ginny": {"_count": 1}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "waited": {"_count": 1}, "Dad": {"_count": 1}, "I": {"_count": 1}, "Ill": {"_count": 1}}, "directed": {"_count": 1, "the": {"_count": 1}}, "hes": {"_count": 2, "a": {"_count": 1}, "got": {"_count": 1}}, "was": {"_count": 17, "in": {"_count": 1}, "visible": {"_count": 1}, "deeply": {"_count": 1}, "shouting": {"_count": 1}, "only": {"_count": 1}, "sitting": {"_count": 2}, "getting": {"_count": 1}, "Hermione": {"_count": 1}, "telling": {"_count": 1}, "saying": {"_count": 1}, "a": {"_count": 1}, "sporting": {"_count": 1}, "at": {"_count": 1}, "highly": {"_count": 1}, "advising": {"_count": 1}, "shaking": {"_count": 1}}, "but": {"_count": 3, "Snape": {"_count": 1}, "caught": {"_count": 1}, "he": {"_count": 1}}, "come": {"_count": 2, "on": {"_count": 2}}, "thickly": {"_count": 1, "as": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "nearly": {"_count": 1, "broke": {"_count": 1}}, "hadnt": {"_count": 2, "tried": {"_count": 1}, "wanted": {"_count": 1}}, "chase": {"_count": 1, "Fred": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "wouldnt": {"_count": 3, "lend": {"_count": 1}, "want": {"_count": 1}, "recognize": {"_count": 1}}, "Perfect": {"_count": 1, "Percy": {"_count": 1}}, "muttered": {"_count": 2, "Fred": {"_count": 1}, "vaguely": {"_count": 1}}, "walked": {"_count": 1, "in": {"_count": 1}}, "briskly": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 5, "mealtimes": {"_count": 1}, "once": {"_count": 2}, "all": {"_count": 1}, "Hogwarts": {"_count": 1}}, "deeply": {"_count": 1, "immersed": {"_count": 1}}, "snapped": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "it": {"_count": 1}}, "were": {"_count": 3, "all": {"_count": 1}, "next": {"_count": 1}, "already": {"_count": 1}}, "first": {"_count": 1, "said": {"_count": 1}}, "strode": {"_count": 2, "briskly": {"_count": 1}, "over": {"_count": 1}}, "bellowing": {"_count": 1, "himself": {"_count": 1}}, "swelled": {"_count": 2, "in": {"_count": 1}, "indignantly": {"_count": 1}}, "said": {"_count": 13, "striding": {"_count": 1}, "tersely": {"_count": 1}, "Fred": {"_count": 1}, "Ron": {"_count": 1}, "As": {"_count": 1}, "Harry": {"_count": 2}, "before": {"_count": 1}, "the": {"_count": 1}, "Sirius": {"_count": 1}, "rather": {"_count": 1}, "Mrs": {"_count": 1}, "": {"_count": 1}}, "fiercely": {"_count": 1, "but": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 1}, "a": {"_count": 2}, "an": {"_count": 1}, "mild": {"_count": 1}, "front": {"_count": 1}, "his": {"_count": 1}}, "his": {"_count": 2, "smile": {"_count": 1}, "assistant": {"_count": 1}}, "walk": {"_count": 1, "out": {"_count": 1}}, "apoplectic": {"_count": 1, "with": {"_count": 1}}, "who": {"_count": 12, "disapproved": {"_count": 1}, "hadnt": {"_count": 1}, "asked": {"_count": 1}, "was": {"_count": 4}, "had": {"_count": 1}, "looked": {"_count": 2}, "got": {"_count": 1}, "flung": {"_count": 1}}, "looked": {"_count": 5, "affronted": {"_count": 1}, "outraged": {"_count": 1}, "slightly": {"_count": 1}, "over": {"_count": 1}, "as": {"_count": 1}}, "sternly": {"_count": 2, "": {"_count": 2}}, "drawing": {"_count": 1, "himself": {"_count": 1}}, "Ron": {"_count": 1, "corrected": {"_count": 1}}, "loudly": {"_count": 2, "": {"_count": 2}}, "a": {"_count": 1, "fleeting": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "choked": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "so": {"_count": 1}}, "didnt": {"_count": 2, "smile": {"_count": 1}, "look": {"_count": 1}}, "wasnt": {"_count": 1, "there": {"_count": 1}}, "keeps": {"_count": 1, "telling": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "doing": {"_count": 1, "that": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "however": {"_count": 1, "held": {"_count": 1}}, "pompously": {"_count": 2, "shaking": {"_count": 1}, "recovering": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "scowled": {"_count": 1, "": {"_count": 1}}, "loftily": {"_count": 1, "": {"_count": 1}}, "curiously": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 1, "again": {"_count": 1}}, "rounding": {"_count": 1, "on": {"_count": 1}}, "dismantling": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "stormed": {"_count": 1, "in": {"_count": 1}}, "smoothing": {"_count": 1, "his": {"_count": 1}}, "called": {"_count": 1, "from": {"_count": 1}}, "had": {"_count": 9, "what": {"_count": 1}, "got": {"_count": 1}, "bustled": {"_count": 1}, "once": {"_count": 1}, "not": {"_count": 1}, "committed": {"_count": 1}, "mentioned": {"_count": 1}, "stormed": {"_count": 1}, "just": {"_count": 1}}, "say": {"_count": 1, "in": {"_count": 1}}, "shouted": {"_count": 1, "": {"_count": 1}}, "mind": {"_count": 1, "you": {"_count": 1}}, "left": {"_count": 1, "a": {"_count": 1}}, "heartily": {"_count": 1, "as": {"_count": 1}}, "looking": {"_count": 2, "delighted": {"_count": 1}, "startled": {"_count": 1}}, "hurrying": {"_count": 1, "into": {"_count": 1}}, "I": {"_count": 2, "expected": {"_count": 1}, "mentioned": {"_count": 1}}, "puffing": {"_count": 1, "himself": {"_count": 1}}, "jumping": {"_count": 1, "up": {"_count": 1}}, "hoped": {"_count": 1, "to": {"_count": 1}}, "fussy": {"_count": 1, "about": {"_count": 1}}, "smugly": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 1, "slightly": {"_count": 1}}, "slammed": {"_count": 1, "his": {"_count": 1}}, "peevishly": {"_count": 1, "and": {"_count": 1}}, "dismissively": {"_count": 1, "but": {"_count": 1}}, "heaved": {"_count": 1, "an": {"_count": 1}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "sanctimoniously": {"_count": 1, "": {"_count": 1}}, "going": {"_count": 1, "very": {"_count": 1}}, "can": {"_count": 1, "all": {"_count": 1}}, "only": {"_count": 1, "passed": {"_count": 1}}, "along": {"_count": 1, "around": {"_count": 1}}, "arrived": {"_count": 1, "they": {"_count": 1}}, "came": {"_count": 2, "strolling": {"_count": 1}, "home": {"_count": 1}}, "hurried": {"_count": 1, "forward": {"_count": 1}}, "hissed": {"_count": 2, "but": {"_count": 1}, "watching": {"_count": 1}}, "froze": {"_count": 1, "in": {"_count": 1}}, "suddenly": {"_count": 1, "abandoning": {"_count": 1}}, "threw": {"_count": 1, "Fred": {"_count": 1}}, "handed": {"_count": 1, "Bagman": {"_count": 1}}, "idolized": {"_count": 1, "him": {"_count": 1}}, "breathlessly": {"_count": 1, "sunk": {"_count": 1}}, "very": {"_count": 1, "pink": {"_count": 1}}, "stiffly": {"_count": 1, "": {"_count": 1}}, "jumped": {"_count": 1, "to": {"_count": 1}}, "bowed": {"_count": 1, "so": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "sounding": {"_count": 1, "thunderstruck": {"_count": 1}}, "better": {"_count": 1, "indeed": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "importantly": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "swiftly": {"_count": 1, "": {"_count": 1}}, "hotly": {"_count": 1, "": {"_count": 1}}, "apologizing": {"_count": 1, "most": {"_count": 1}}, "singing": {"_count": 1, "": {"_count": 1}}, "hear": {"_count": 1, "you": {"_count": 1}}, "drew": {"_count": 1, "out": {"_count": 1}}, "Weatherby": {"_count": 1, "yet": {"_count": 1}}, "frowned": {"_count": 1, "but": {"_count": 1}}, "now": {"_count": 1, "took": {"_count": 1}}, "diverted": {"_count": 1, "him": {"_count": 1}}, "seized": {"_count": 1, "Ron": {"_count": 1}}, "Im": {"_count": 1, "all": {"_count": 1}}, "loves": {"_count": 2, "Crouch": {"_count": 1}, "rules": {"_count": 1}}, "knows": {"_count": 1, "all": {"_count": 1}}, "would": {"_count": 2, "never": {"_count": 1}, "not": {"_count": 1}}, "asking": {"_count": 1, "as": {"_count": 1}}, "wontve": {"_count": 1, "had": {"_count": 1}}, "Weasleys": {"_count": 1, "there": {"_count": 1}}, "about": {"_count": 1, "work": {"_count": 1}}, "do": {"_count": 1, "that": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "Crouch": {"_count": 1, "left": {"_count": 1}}, "loved": {"_count": 1, "that": {"_count": 1}}, "knew": {"_count": 1, "where": {"_count": 1}}, "least": {"_count": 1, "of": {"_count": 1}}, "must": {"_count": 1, "know": {"_count": 1}}, "takes": {"_count": 1, "the": {"_count": 1}}, "She": {"_count": 1, "stopped": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "expecting": {"_count": 1, "some": {"_count": 1}}, "began": {"_count": 1, "taking": {"_count": 1}}, "Ignatius": {"_count": 1, "Weasley": {"_count": 1}}, "returned": {"_count": 1, "followed": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "owl": {"_count": 1}}, "he": {"_count": 1, "finished": {"_count": 1}}, "turning": {"_count": 1, "out": {"_count": 1}}, "writing": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "for": {"_count": 1, "four": {"_count": 1}}, "thought": {"_count": 1, "him": {"_count": 1}}, "reckons": {"_count": 1, "there": {"_count": 1}}, "sent": {"_count": 1, "back": {"_count": 1}}, "eagerly": {"_count": 1, "whose": {"_count": 1}}, "scanning": {"_count": 1, "his": {"_count": 1}}, "dashed": {"_count": 1, "from": {"_count": 1}}, "definitely": {"_count": 1, "not": {"_count": 1}}, "showed": {"_count": 1, "no": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "not": {"_count": 1, "being": {"_count": 1}}, "realize": {"_count": 1, "he": {"_count": 1}}, "spluttered": {"_count": 1, "into": {"_count": 1}}, "roared": {"_count": 1, "so": {"_count": 1}}, "swallowed": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "mopping": {"_count": 1, "his": {"_count": 1}}, "shaking": {"_count": 1, "hands": {"_count": 1}}, "backed": {"_count": 1, "off": {"_count": 1}}, "sending": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "glee": {"_count": 1}}, "lay": {"_count": 1, "across": {"_count": 1}}, "realizing": {"_count": 1, "what": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "flooring": {"_count": 1, "Thicknesse": {"_count": 1}}, "discoursing": {"_count": 1, "loudly": {"_count": 1}}}, "oldest": {"_count": 17, "boy": {"_count": 2, "marched": {"_count": 1}, "came": {"_count": 1}}, "brothers": {"_count": 2, "do": {"_count": 1}, "throat": {"_count": 1}}, "Weasley": {"_count": 1, "brother": {"_count": 1}}, "brother": {"_count": 5, "had": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "proceeded": {"_count": 1}, "as": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "foulest": {"_count": 1}, "baldest": {"_count": 1}}, "house": {"_count": 1, "elf": {"_count": 1}}, "family": {"_count": 1, "trees": {"_count": 1}}, "most": {"_count": 1, "gnarled": {"_count": 1}}, "Wizarding": {"_count": 1, "families": {"_count": 1}}}, "marched": {"_count": 68, "toward": {"_count": 3, "platforms": {"_count": 1}, "the": {"_count": 2}}, "down": {"_count": 2, "the": {"_count": 2}}, "along": {"_count": 2, "corridors": {"_count": 1}, "another": {"_count": 1}}, "on": {"_count": 3, "up": {"_count": 1}, "toward": {"_count": 1}, "either": {"_count": 1}}, "away": {"_count": 1, "with": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 9, "across": {"_count": 1}, "through": {"_count": 1}, "toward": {"_count": 2}, "": {"_count": 1}, "onto": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "in": {"_count": 4, "silence": {"_count": 2}, "single": {"_count": 1}, "obediently": {"_count": 1}}, "through": {"_count": 5, "it": {"_count": 1}, "the": {"_count": 4}}, "a": {"_count": 1, "dozen": {"_count": 1}}, "with": {"_count": 1, "Harry": {"_count": 1}}, "Lockhart": {"_count": 1, "out": {"_count": 1}}, "Harry": {"_count": 3, "along": {"_count": 1}, "across": {"_count": 1}, "and": {"_count": 1}}, "him": {"_count": 2, "away": {"_count": 1}, "off": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}, "out": {"_count": 4, "of": {"_count": 3}, "onto": {"_count": 1}}, "back": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "past": {"_count": 2, "clutching": {"_count": 1}, "them": {"_count": 1}}, "them": {"_count": 3, "away": {"_count": 1}, "firmly": {"_count": 1}, "into": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "directly": {"_count": 1, "over": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "over": {"_count": 1, "to": {"_count": 1}}, "straight": {"_count": 3, "up": {"_count": 1}, "at": {"_count": 1}, "through": {"_count": 1}}, "as": {"_count": 2, "easily": {"_count": 1}, "far": {"_count": 1}}, "purposefully": {"_count": 1, "across": {"_count": 1}}, "forward": {"_count": 1, "leading": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "downstairs": {"_count": 1, "through": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "inside": {"_count": 1, "wand": {"_count": 1}}}, "dividing": {"_count": 5, "barrier": {"_count": 1, "between": {"_count": 1}}, "platforms": {"_count": 2, "nine": {"_count": 2}}, "classes": {"_count": 1, "between": {"_count": 1}}, "a": {"_count": 1, "second": {"_count": 1}}}, "tourists": {"_count": 2, "came": {"_count": 1, "swarming": {"_count": 1}}, "and": {"_count": 1, "isnt": {"_count": 1}}}, "swarming": {"_count": 17, "in": {"_count": 1, "front": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "with": {"_count": 3, "spiders": {"_count": 1}, "dementors": {"_count": 1}, "invisible": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 2}}, "dementors": {"_count": 1, "": {"_count": 1}}, "below": {"_count": 1, "them": {"_count": 1}}, "students": {"_count": 1, "": {"_count": 1}}, "movement": {"_count": 1, "they": {"_count": 1}}, "away": {"_count": 1, "with": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "forward": {"_count": 1, "for": {"_count": 1}}}, "backpack": {"_count": 3, "had": {"_count": 1, "cleared": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "felt": {"_count": 1}}}, "Fred": {"_count": 878, "you": {"_count": 1, "next": {"_count": 1}}, "Im": {"_count": 2, "George": {"_count": 2}}, "said": {"_count": 19, "the": {"_count": 1}, "it": {"_count": 1}, "with": {"_count": 1}, "Mrs": {"_count": 1}, "warningly": {"_count": 1}, "Ginny": {"_count": 1}, "Mr": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 2}, "at": {"_count": 1}, "making": {"_count": 1}, "abruptly": {"_count": 1}, "All": {"_count": 1}, "": {"_count": 2}, "brightly": {"_count": 1}, "out": {"_count": 1}}, "": {"_count": 116, "!": {"_count": 5}, "?": {"_count": 8}, ".": {"_count": 103}}, "and": {"_count": 339, "George": {"_count": 280}, "Georges": {"_count": 33}, "it": {"_count": 1}, "stand": {"_count": 1}, "wait": {"_count": 1}, "when": {"_count": 1}, "Angelina": {"_count": 1}, "Ginny": {"_count": 1}, "I": {"_count": 4}, "rummaged": {"_count": 1}, "Bill": {"_count": 1}, "Ron": {"_count": 1}, "Luna": {"_count": 1}, "Georgeve": {"_count": 1}, "everything": {"_count": 1}, "Mr": {"_count": 1}, "their": {"_count": 1}, "darting": {"_count": 1}, "Georgeish": {"_count": 1}, "a": {"_count": 1}, "Percy": {"_count": 2}, "he": {"_count": 1}, "Hagrid": {"_count": 1}, "Lupin": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "added": {"_count": 1}, "looked": {"_count": 1}}, "Weasley": {"_count": 16, "": {"_count": 3}, "came": {"_count": 1}, "peering": {"_count": 1}, "sadly": {"_count": 1}, "was": {"_count": 1}, "brightly": {"_count": 1}, "chucked": {"_count": 1}, "pelted": {"_count": 1}, "loudly": {"_count": 1}, "hissed": {"_count": 1}, "said": {"_count": 1}, "Hog": {"_count": 1}, "I": {"_count": 1}, "could": {"_count": 1}}, "told": {"_count": 6, "Harry": {"_count": 3}, "him": {"_count": 1}, "her": {"_count": 1}, "Professor": {"_count": 1}}, "or": {"_count": 3, "George": {"_count": 2}, "whoever": {"_count": 1}}, "holding": {"_count": 2, "up": {"_count": 1}, "out": {"_count": 1}}, "seized": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 5, "right": {"_count": 1}, "holding": {"_count": 2}, "still": {"_count": 1}, "gone": {"_count": 1}}, "throwing": {"_count": 1, "the": {"_count": 1}}, "revved": {"_count": 1, "up": {"_count": 1}}, "drove": {"_count": 1, "straight": {"_count": 1}}, "reversed": {"_count": 1, "as": {"_count": 1}}, "but": {"_count": 7, "we": {"_count": 2}, "Madam": {"_count": 1}, "its": {"_count": 1}, "next": {"_count": 1}, "when": {"_count": 1}, "there": {"_count": 1}}, "climbed": {"_count": 1, "back": {"_count": 1}}, "who": {"_count": 15, "was": {"_count": 6}, "had": {"_count": 6}, "stepped": {"_count": 1}, "looked": {"_count": 1}, "passed": {"_count": 1}}, "finally": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "craning": {"_count": 1, "around": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "twiddled": {"_count": 1, "the": {"_count": 1}}, "laughed": {"_count": 2, "": {"_count": 2}}, "brought": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 10, "with": {"_count": 1}, "they": {"_count": 2}, "though": {"_count": 1}, "he": {"_count": 2}, "Harry": {"_count": 1}, "the": {"_count": 2}, "Mrs": {"_count": 1}}, "setting": {"_count": 1, "down": {"_count": 1}}, "in": {"_count": 8, "a": {"_count": 5}, "an": {"_count": 3}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "caught": {"_count": 1, "his": {"_count": 1}}, "frowning": {"_count": 3, "": {"_count": 2}, "around": {"_count": 1}}, "George": {"_count": 53, "Percy": {"_count": 1}, "and": {"_count": 38}, "where": {"_count": 1}, "you": {"_count": 1}, "wait": {"_count": 1}, "NO": {"_count": 1}, "Ron": {"_count": 2}, "I": {"_count": 1}, "Ginny": {"_count": 1}, "go": {"_count": 1}, "Im": {"_count": 1}, "Harry": {"_count": 1}, "Bill": {"_count": 2}, "Fleur": {"_count": 1}}, "could": {"_count": 1, "run": {"_count": 1}}, "Weasleys": {"_count": 2, "head": {"_count": 1}, "voice": {"_count": 1}}, "looking": {"_count": 13, "at": {"_count": 2}, "slightly": {"_count": 1}, "up": {"_count": 1}, "irritated": {"_count": 1}, "flabbergasted": {"_count": 1}, "affectionately": {"_count": 1}, "quizzically": {"_count": 1}, "shaken": {"_count": 1}, "around": {"_count": 1}, "over": {"_count": 1}, "back": {"_count": 1}, "terrified": {"_count": 1}}, "had": {"_count": 8, "rescued": {"_count": 1}, "bewitched": {"_count": 1}, "him": {"_count": 1}, "said": {"_count": 2}, "instructed": {"_count": 1}, "caught": {"_count": 1}, "stolen": {"_count": 1}}, "turned": {"_count": 1, "my": {"_count": 1}}, "winking": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "swung": {"_count": 1, "at": {"_count": 1}}, "yelled": {"_count": 2, "happily": {"_count": 1}, "as": {"_count": 1}}, "grunted": {"_count": 1, "swinging": {"_count": 1}}, "asked": {"_count": 4, "Harry": {"_count": 2}, "them": {"_count": 1}, "Ginny": {"_count": 1}}, "dropped": {"_count": 1, "a": {"_count": 1}}, "elbowing": {"_count": 1, "Percy": {"_count": 1}}, "aside": {"_count": 2, "and": {"_count": 2}}, "muttered": {"_count": 3, "under": {"_count": 1}, "in": {"_count": 1}, "frowning": {"_count": 1}}, "whispered": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "with": {"_count": 9, "a": {"_count": 5}, "another": {"_count": 1}, "relish": {"_count": 1}, "the": {"_count": 1}, "satisfaction": {"_count": 1}}, "impatiently": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "moving": {"_count": 1}}, "grabbed": {"_count": 1, "his": {"_count": 1}}, "pulled": {"_count": 4, "something": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}}, "closing": {"_count": 1, "his": {"_count": 1}}, "smirking": {"_count": 1, "": {"_count": 1}}, "tracing": {"_count": 1, "one": {"_count": 1}}, "solemnly": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 2, "me": {"_count": 1}, "the": {"_count": 1}}, "bracingly": {"_count": 2, "And": {"_count": 1}, "": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "confidently": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 2, "go": {"_count": 1}, "George": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 2}}, "scrambled": {"_count": 1, "around": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "real": {"_count": 1, "practical": {"_count": 1}}, "excitedly": {"_count": 1, "holding": {"_count": 1}}, "brightly": {"_count": 2, "": {"_count": 2}}, "indignantly": {"_count": 2, "": {"_count": 2}}, "groggily": {"_count": 1, "": {"_count": 1}}, "grumpily": {"_count": 1, "pulling": {"_count": 1}}, "grinning": {"_count": 6, "": {"_count": 4}, "at": {"_count": 2}}, "shouted": {"_count": 4, "at": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}}, "Bill": {"_count": 1, "Charlie": {"_count": 1}}, "dismissively": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 3, "extremely": {"_count": 1}, "appraising": {"_count": 1}, "evil": {"_count": 1}}, "gleefully": {"_count": 1, "weve": {"_count": 1}}, "grabbing": {"_count": 1, "Ginnys": {"_count": 1}}, "vaguely": {"_count": 1, "": {"_count": 1}}, "quietly": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "keenly": {"_count": 1, "": {"_count": 1}}, "bellowed": {"_count": 2, "out": {"_count": 1}, "his": {"_count": 1}}, "stubbornly": {"_count": 1, "also": {"_count": 1}}, "shrewdly": {"_count": 1, "": {"_count": 1}}, "airily": {"_count": 1, "but": {"_count": 1}}, "scratched": {"_count": 1, "out": {"_count": 1}}, "became": {"_count": 1, "extremely": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "walked": {"_count": 1, "right": {"_count": 1}}, "grinned": {"_count": 2, "": {"_count": 2}}, "concealed": {"_count": 1, "door": {"_count": 1}}, "warningly": {"_count": 1, "": {"_count": 1}}, "sarcastically": {"_count": 1, "": {"_count": 1}}, "waving": {"_count": 1, "his": {"_count": 1}}, "promptly": {"_count": 1, "without": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "winked": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "whether": {"_count": 1, "accidentally": {"_count": 1}}, "before": {"_count": 1, "smiling": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "matteroffactly": {"_count": 1, "stepping": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "pulling": {"_count": 2, "out": {"_count": 1}, "his": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "began": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "nodded": {"_count": 1, "fervently": {"_count": 1}}, "also": {"_count": 1, "beaming": {"_count": 1}}, "heaved": {"_count": 1, "a": {"_count": 1}}, "idly": {"_count": 1, "": {"_count": 1}}, "grimly": {"_count": 1, "": {"_count": 1}}, "whisper": {"_count": 1, "as": {"_count": 1}}, "hurrying": {"_count": 1, "forward": {"_count": 1}}, "angrily": {"_count": 2, "": {"_count": 2}}, "halfrising": {"_count": 1, "from": {"_count": 1}}, "what": {"_count": 1, "are": {"_count": 1}}, "dropping": {"_count": 1, "his": {"_count": 1}}, "very": {"_count": 1, "loudly": {"_count": 1}}, "eyeing": {"_count": 1, "Kreacher": {"_count": 1}}, "conversationally": {"_count": 1, "": {"_count": 1}}, "snatching": {"_count": 1, "the": {"_count": 1}}, "slowly": {"_count": 1, "": {"_count": 1}}, "sourly": {"_count": 1, "who": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "rolled": {"_count": 1, "his": {"_count": 1}}, "delightedly": {"_count": 1, "when": {"_count": 1}}, "clapping": {"_count": 2, "his": {"_count": 1}, "Ron": {"_count": 1}}, "arriving": {"_count": 1, "with": {"_count": 1}}, "scanning": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "thickly": {"_count": 1, "buttering": {"_count": 1}}, "reminiscently": {"_count": 1, "": {"_count": 1}}, "unconcernedly": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 1, "overhead": {"_count": 1}}, "happily": {"_count": 2, "but": {"_count": 1}, "pointing": {"_count": 1}}, "emerging": {"_count": 1, "touslehaired": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "passed": {"_count": 1, "to": {"_count": 1}}, "gloomily": {"_count": 2, "": {"_count": 2}}, "pull": {"_count": 1, "out": {"_count": 1}}, "dunking": {"_count": 1, "an": {"_count": 1}}, "shrugged": {"_count": 1, "": {"_count": 1}}, "reaching": {"_count": 1, "the": {"_count": 1}}, "handing": {"_count": 1, "them": {"_count": 1}}, "reached": {"_count": 1, "out": {"_count": 1}}, "briskly": {"_count": 1, "getting": {"_count": 1}}, "would": {"_count": 1, "take": {"_count": 1}}, "Lee": {"_count": 1, "and": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "your": {"_count": 1, "temperaturell": {"_count": 1}}, "darkly": {"_count": 2, "theyre": {"_count": 1}, "": {"_count": 1}}, "more": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "let": {"_count": 1, "him": {"_count": 1}}, "leaping": {"_count": 1, "on": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "loudly": {"_count": 2, "": {"_count": 2}}, "turning": {"_count": 1, "to": {"_count": 1}}, "fell": {"_count": 2, "into": {"_count": 1}, "back": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "indicating": {"_count": 2, "the": {"_count": 1}, "himself": {"_count": 1}}, "interrupted": {"_count": 1, "in": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "heavily": {"_count": 1, "": {"_count": 1}}, "moving": {"_count": 1, "around": {"_count": 1}}, "squinting": {"_count": 1, "at": {"_count": 1}}, "waved": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "swept": {"_count": 1, "the": {"_count": 1}}, "rolling": {"_count": 1, "his": {"_count": 1}}, "firmly": {"_count": 2, "": {"_count": 1}, "waving": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "coolly": {"_count": 1, "": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "stretching": {"_count": 1, "out": {"_count": 1}}, "continued": {"_count": 1, "briskly": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 2}}, "looked": {"_count": 3, "around": {"_count": 1}, "across": {"_count": 1}, "at": {"_count": 1}}, "giving": {"_count": 1, "his": {"_count": 1}}, "stood": {"_count": 1, "before": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "led": {"_count": 1, "Harry": {"_count": 1}}, "proudly": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 1, "recoil": {"_count": 1}}, "examining": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "reckons": {"_count": 1, "his": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "fairly": {"_count": 1, "": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 1, "Enough": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "geddit": {"_count": 1, "": {"_count": 1}}, "unexpectedly": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "corner": {"_count": 1}}, "tugging": {"_count": 1, "at": {"_count": 1}}, "wolfwhistled": {"_count": 1, "and": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "explained": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "second": {"_count": 1}}, "Remus": {"_count": 1, "and": {"_count": 1}}, "might": {"_count": 1, "never": {"_count": 1}}, "Lupin": {"_count": 1, "and": {"_count": 1}}, "Tonks": {"_count": 1, "Lupin": {"_count": 1}}}, "George": {"_count": 714, "said": {"_count": 15, "the": {"_count": 2}, "angrily": {"_count": 1}, "no": {"_count": 1}, "Mr": {"_count": 2}, "Harry": {"_count": 1}, "Fred": {"_count": 2}, "hastily": {"_count": 1}, "it": {"_count": 1}, "Ginny": {"_count": 1}, "Ron": {"_count": 2}, "Mrs": {"_count": 1}}, "": {"_count": 131, "?": {"_count": 7}, ".": {"_count": 122}, "!": {"_count": 2}}, "dear": {"_count": 1, "": {"_count": 1}}, "Weasley": {"_count": 34, "": {"_count": 3}, "complain": {"_count": 1}, "now": {"_count": 1}, "cant": {"_count": 1}, "bounded": {"_count": 1}, "really": {"_count": 1}, "had": {"_count": 3}, "were": {"_count": 5}, "are": {"_count": 1}, "trying": {"_count": 1}, "wrestling": {"_count": 1}, "together": {"_count": 1}, "made": {"_count": 1}, "could": {"_count": 1}, "pointed": {"_count": 1}, "vented": {"_count": 1}, "disappeared": {"_count": 1}, "Warrington": {"_count": 1}, "elbowed": {"_count": 1}, "last": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}, "Gryffindor": {"_count": 1}, "with": {"_count": 1}, "thats": {"_count": 1}, "oh": {"_count": 1}}, "mess": {"_count": 1, "around": {"_count": 1}}, "reckons": {"_count": 1, "he": {"_count": 1}}, "gave": {"_count": 3, "it": {"_count": 1}, "them": {"_count": 1}, "me": {"_count": 1}}, "in": {"_count": 8, "a": {"_count": 4}, "what": {"_count": 1}, "an": {"_count": 1}, "future": {"_count": 1}, "unison": {"_count": 1}}, "had": {"_count": 36, "hardly": {"_count": 1}, "spotted": {"_count": 1}, "forgotten": {"_count": 1}, "put": {"_count": 2}, "ever": {"_count": 1}, "been": {"_count": 4}, "nicked": {"_count": 1}, "set": {"_count": 1}, "started": {"_count": 1}, "scraped": {"_count": 1}, "cried": {"_count": 1}, "no": {"_count": 1}, "just": {"_count": 4}, "had": {"_count": 1}, "to": {"_count": 1}, "bewitched": {"_count": 2}, "pinned": {"_count": 1}, "not": {"_count": 1}, "predicted": {"_count": 1}, "realized": {"_count": 1}, "come": {"_count": 1}, "only": {"_count": 1}, "made": {"_count": 1}, "managed": {"_count": 1}, "left": {"_count": 1}, "arrived": {"_count": 1}, "fastened": {"_count": 1}, "long": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "were": {"_count": 29, "wearing": {"_count": 1}, "planning": {"_count": 3}, "now": {"_count": 1}, "going": {"_count": 1}, "crouching": {"_count": 1}, "hoping": {"_count": 1}, "sitting": {"_count": 2}, "cheering": {"_count": 1}, "both": {"_count": 3}, "right": {"_count": 1}, "safely": {"_count": 1}, "leaning": {"_count": 1}, "beardless": {"_count": 1}, "grouped": {"_count": 1}, "shooting": {"_count": 1}, "financing": {"_count": 1}, "looking": {"_count": 1}, "several": {"_count": 1}, "demonstrating": {"_count": 1}, "heroes": {"_count": 1}, "criminals": {"_count": 1}, "all": {"_count": 1}, "shrinking": {"_count": 1}, "laughing": {"_count": 1}}, "demanded": {"_count": 1, "": {"_count": 1}}, "observed": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 3, "over": {"_count": 1}, "flying": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 5, "complain": {"_count": 1}, "think": {"_count": 1}, "Fred": {"_count": 1}, "start": {"_count": 1}, "get": {"_count": 1}}, "stole": {"_count": 1, "some": {"_count": 1}}, "have": {"_count": 4, "lost": {"_count": 1}, "invented": {"_count": 1}, "got": {"_count": 2}}, "Rons": {"_count": 3, "elder": {"_count": 2}, "sixteenyearold": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "climbed": {"_count": 1, "catlike": {"_count": 1}}, "took": {"_count": 1, "an": {"_count": 1}}, "heave": {"_count": 1, "his": {"_count": 1}}, "pushed": {"_count": 3, "from": {"_count": 1}, "their": {"_count": 1}, "back": {"_count": 1}}, "threw": {"_count": 1, "their": {"_count": 1}}, "whispered": {"_count": 2, "": {"_count": 1}, "keeping": {"_count": 1}}, "seized": {"_count": 1, "Harrys": {"_count": 1}}, "handed": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "look": {"_count": 2, "at": {"_count": 2}}, "turning": {"_count": 1, "around": {"_count": 1}}, "frowning": {"_count": 1, "": {"_count": 1}}, "peering": {"_count": 2, "down": {"_count": 1}, "out": {"_count": 1}}, "groaned": {"_count": 1, "": {"_count": 1}}, "seizing": {"_count": 1, "five": {"_count": 1}}, "ambled": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 1}, "an": {"_count": 1}, "half": {"_count": 1}}, "explained": {"_count": 1, "seeing": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "dipped": {"_count": 1, "his": {"_count": 1}}, "Percy": {"_count": 1, "and": {"_count": 1}}, "together": {"_count": 2, "": {"_count": 2}}, "and": {"_count": 57, "Lee": {"_count": 14}, "Percy": {"_count": 1}, "Ginny": {"_count": 19}, "walked": {"_count": 1}, "Ron": {"_count": 3}, "I": {"_count": 3}, "Charlie": {"_count": 1}, "pulled": {"_count": 1}, "without": {"_count": 1}, "muttered": {"_count": 1}, "squeezing": {"_count": 1}, "we": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 2}, "back": {"_count": 1}, "Freds": {"_count": 1}, "Fleur": {"_count": 1}, "Lupin": {"_count": 1}, "me": {"_count": 1}, "Mr": {"_count": 1}, "Kingsley": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "rounded": {"_count": 1, "off": {"_count": 1}}, "followed": {"_count": 3, "": {"_count": 3}}, "mustve": {"_count": 1, "flown": {"_count": 1}}, "who": {"_count": 18, "had": {"_count": 5}, "were": {"_count": 7}, "merely": {"_count": 1}, "was": {"_count": 2}, "passed": {"_count": 1}, "tried": {"_count": 1}, "stood": {"_count": 1}}, "pointing": {"_count": 3, "": {"_count": 1}, "at": {"_count": 2}}, "jumping": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 1, "spectacular": {"_count": 1}}, "streaking": {"_count": 1, "past": {"_count": 1}}, "give": {"_count": 1, "the": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "dived": {"_count": 1, "for": {"_count": 1}}, "where": {"_count": 1, "were": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "heard": {"_count": 1}}, "however": {"_count": 2, "found": {"_count": 1}, "leaned": {"_count": 1}}, "chortling": {"_count": 1, "": {"_count": 1}}, "pretended": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 3, "least": {"_count": 1}, "the": {"_count": 1}, "last": {"_count": 1}}, "singing": {"_count": 1, "His": {"_count": 1}}, "told": {"_count": 4, "Harry": {"_count": 2}, "me": {"_count": 2}}, "challenged": {"_count": 1, "Harry": {"_count": 1}}, "sat": {"_count": 3, "together": {"_count": 1}, "down": {"_count": 1}, "up": {"_count": 1}}, "went": {"_count": 1, "up": {"_count": 1}}, "sniggering": {"_count": 1, "": {"_count": 1}}, "pushing": {"_count": 1, "Fred": {"_count": 1}}, "looking": {"_count": 6, "revolted": {"_count": 1}, "down": {"_count": 1}, "crestfallen": {"_count": 1}, "astonished": {"_count": 1}, "mildly": {"_count": 1}, "both": {"_count": 1}}, "heaved": {"_count": 1, "a": {"_count": 1}}, "seriously": {"_count": 2, "": {"_count": 2}}, "they": {"_count": 1, "know": {"_count": 1}}, "passing": {"_count": 1, "them": {"_count": 1}}, "looked": {"_count": 9, "up": {"_count": 1}, "sympathetic": {"_count": 1}, "over": {"_count": 1}, "quite": {"_count": 1}, "at": {"_count": 1}, "thunderstruck": {"_count": 1}, "as": {"_count": 1}, "around": {"_count": 1}, "slightly": {"_count": 1}}, "bracingly": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "patting": {"_count": 2, "the": {"_count": 2}}, "caused": {"_count": 1, "a": {"_count": 1}}, "briskly": {"_count": 1, "": {"_count": 1}}, "winking": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "never": {"_count": 1, "gave": {"_count": 1}}, "reckon": {"_count": 1, "Filch": {"_count": 1}}, "asking": {"_count": 1, "him": {"_count": 1}}, "fighting": {"_count": 1, "his": {"_count": 1}}, "started": {"_count": 2, "throwing": {"_count": 1}, "a": {"_count": 1}}, "tried": {"_count": 2, "obviously": {"_count": 1}, "to": {"_count": 1}}, "hit": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "no": {"_count": 1, "theres": {"_count": 1}}, "whose": {"_count": 2, "voice": {"_count": 1}, "diversion": {"_count": 1}}, "left": {"_count": 3, "the": {"_count": 1}, "you": {"_count": 1}, "me": {"_count": 1}}, "came": {"_count": 3, "back": {"_count": 1}, "over": {"_count": 1}, "hurrying": {"_count": 1}}, "carry": {"_count": 1, "the": {"_count": 1}}, "asked": {"_count": 3, "eagerly": {"_count": 1}, "": {"_count": 2}}, "he": {"_count": 3, "hadnt": {"_count": 1}, "usually": {"_count": 1}, "said": {"_count": 1}}, "just": {"_count": 1, "but": {"_count": 1}}, "are": {"_count": 5, "in": {"_count": 1}, "going": {"_count": 1}, "about": {"_count": 1}, "very": {"_count": 1}, "driving": {"_count": 1}}, "failing": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "sorry": {"_count": 1, "thats": {"_count": 1}}, "quickly": {"_count": 1, "pooled": {"_count": 1}}, "taking": {"_count": 2, "the": {"_count": 1}, "advance": {"_count": 1}}, "choked": {"_count": 1, "into": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "the": {"_count": 1}, "Fred": {"_count": 1}}, "cant": {"_count": 1, "have": {"_count": 1}}, "will": {"_count": 1, "play": {"_count": 1}}, "thoughtfully": {"_count": 1, "spreading": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "hissed": {"_count": 1, "Malcolm": {"_count": 1}}, "his": {"_count": 2, "fellow": {"_count": 1}, "eyes": {"_count": 1}}, "set": {"_count": 3, "off": {"_count": 3}}, "debating": {"_count": 2, "the": {"_count": 1}, "whether": {"_count": 1}}, "a": {"_count": 1, "prefect": {"_count": 1}}, "find": {"_count": 1, "out": {"_count": 1}}, "sitting": {"_count": 3, "down": {"_count": 2}, "together": {"_count": 1}}, "impressively": {"_count": 1, "": {"_count": 1}}, "hidden": {"_count": 1, "away": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 8, "saying": {"_count": 1}, "hiccuping": {"_count": 1}, "joking": {"_count": 1}, "trying": {"_count": 1}, "sporting": {"_count": 1}, "suddenly": {"_count": 1}, "left": {"_count": 1}, "kneeling": {"_count": 1}}, "bitterly": {"_count": 1, "": {"_count": 1}}, "indicating": {"_count": 1, "Fred": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "certainly": {"_count": 1, "thought": {"_count": 1}}, "joined": {"_count": 1, "in": {"_count": 1}}, "cleanshaven": {"_count": 1, "again": {"_count": 1}}, "Im": {"_count": 3, "going": {"_count": 1}, "sorry": {"_count": 1}, "only": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "nicking": {"_count": 1, "food": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "confided": {"_count": 1, "to": {"_count": 1}}, "accosted": {"_count": 1, "him": {"_count": 1}}, "suspiciously": {"_count": 1, "": {"_count": 1}}, "fairly": {"_count": 2, "quickly": {"_count": 1}, "sitting": {"_count": 1}}, "turned": {"_count": 5, "up": {"_count": 2}, "around": {"_count": 1}, "away": {"_count": 1}, "to": {"_count": 1}}, "for": {"_count": 1, "trying": {"_count": 1}}, "half": {"_count": 1, "glance": {"_count": 1}}, "carried": {"_count": 1, "the": {"_count": 1}}, "lightly": {"_count": 2, "": {"_count": 2}}, "kicked": {"_count": 2, "rolled": {"_count": 1}, "off": {"_count": 1}}, "darkly": {"_count": 1, "": {"_count": 1}}, "shrugging": {"_count": 1, "": {"_count": 1}}, "gloomily": {"_count": 1, "": {"_count": 1}}, "laughed": {"_count": 1, "very": {"_count": 1}}, "glowering": {"_count": 1, "": {"_count": 1}}, "shaking": {"_count": 3, "his": {"_count": 3}}, "sighed": {"_count": 1, "deeply": {"_count": 1}}, "wait": {"_count": 1, "a": {"_count": 1}}, "weakly": {"_count": 1, "weighing": {"_count": 1}}, "muttered": {"_count": 2, "while": {"_count": 1}, "no": {"_count": 1}}, "beaming": {"_count": 2, "at": {"_count": 1}, "and": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "carefully": {"_count": 1, "closing": {"_count": 1}}, "but": {"_count": 2, "hes": {"_count": 1}, "he": {"_count": 1}}, "because": {"_count": 1, "Percy": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "NO": {"_count": 1, "JUST": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 2}}, "buried": {"_count": 1, "their": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "want": {"_count": 1}}, "bellowed": {"_count": 1, "together": {"_count": 1}}, "can": {"_count": 1, "stay": {"_count": 1}}, "opened": {"_count": 1, "their": {"_count": 1}}, "leaping": {"_count": 1, "down": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "crossed": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 1, "to": {"_count": 1}}, "adding": {"_count": 1, "in": {"_count": 1}}, "wrap": {"_count": 1, "his": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Apparated": {"_count": 2, "right": {"_count": 1}, "at": {"_count": 1}}, "leapt": {"_count": 2, "forward": {"_count": 1}, "up": {"_count": 1}}, "indignantly": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "thrusting": {"_count": 1, "the": {"_count": 1}}, "nodding": {"_count": 2, "": {"_count": 1}, "this": {"_count": 1}}, "smirking": {"_count": 2, "": {"_count": 2}}, "exchanged": {"_count": 1, "looks": {"_count": 1}}, "burst": {"_count": 1, "out": {"_count": 1}}, "roaring": {"_count": 1, "with": {"_count": 1}}, "dropped": {"_count": 1, "in": {"_count": 1}}, "holding": {"_count": 2, "out": {"_count": 2}}, "disappeared": {"_count": 1, "down": {"_count": 1}}, "doing": {"_count": 1, "exactly": {"_count": 1}}, "d": {"_count": 1, "hurry": {"_count": 1}}, "helping": {"_count": 2, "himself": {"_count": 2}}, "beadily": {"_count": 1, "you": {"_count": 1}}, "sniggered": {"_count": 1, "": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "brightly": {"_count": 1, "now": {"_count": 1}}, "if": {"_count": 2, "we": {"_count": 1}, "you": {"_count": 1}}, "walking": {"_count": 1, "away": {"_count": 1}}, "werent": {"_count": 1, "wrong": {"_count": 1}}, "now": {"_count": 1, "stood": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "kindly": {"_count": 1, "to": {"_count": 1}}, "horrified": {"_count": 1, "taking": {"_count": 1}}, "always": {"_count": 1, "made": {"_count": 1}}, "hastily": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "exchange": {"_count": 1, "looks": {"_count": 1}}, "converged": {"_count": 1, "on": {"_count": 1}}, "go": {"_count": 1, "and": {"_count": 1}}, "let": {"_count": 1, "fly": {"_count": 1}}, "zoomed": {"_count": 1, "off": {"_count": 1}}, "route": {"_count": 1, "rather": {"_count": 1}}, "corrected": {"_count": 1, "her": {"_count": 1}}, "reminded": {"_count": 1, "him": {"_count": 1}}, "promptly": {"_count": 2, "": {"_count": 2}}, "pulling": {"_count": 1, "a": {"_count": 1}}, "Lee": {"_count": 1, "and": {"_count": 1}}, "appeared": {"_count": 2, "finally": {"_count": 1}, "spinning": {"_count": 1}}, "projectilevomit": {"_count": 1, "into": {"_count": 1}}, "only": {"_count": 1, "got": {"_count": 1}}, "wincing": {"_count": 1, "": {"_count": 1}}, "proud": {"_count": 1, "and": {"_count": 1}}, "meanwhile": {"_count": 1, "it": {"_count": 1}}, "swearing": {"_count": 1, "a": {"_count": 1}}, "marched": {"_count": 1, "off": {"_count": 1}}, "entered": {"_count": 1, "": {"_count": 1}}, "sloped": {"_count": 1, "off": {"_count": 1}}, "hotly": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "looked": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "be": {"_count": 2, "quiet": {"_count": 1}, "okay": {"_count": 1}}, "disentangled": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "for": {"_count": 1}}, "yawned": {"_count": 1, "widely": {"_count": 1}}, "wandered": {"_count": 1, "over": {"_count": 1}}, "hiding": {"_count": 1, "just": {"_count": 1}}, "wiping": {"_count": 1, "tears": {"_count": 1}}, "dangling": {"_count": 1, "someone": {"_count": 1}}, "stretching": {"_count": 1, "and": {"_count": 1}}, "got": {"_count": 2, "up": {"_count": 1}, "together": {"_count": 1}}, "mounting": {"_count": 1, "his": {"_count": 1}}, "wheeled": {"_count": 1, "about": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "find": {"_count": 1}}, "enthusiastically": {"_count": 1, "": {"_count": 1}}, "catching": {"_count": 1, "a": {"_count": 1}}, "called": {"_count": 1, "Mr": {"_count": 1}}, "sternly": {"_count": 1, "": {"_count": 1}}, "swept": {"_count": 1, "off": {"_count": 1}}, "reappearing": {"_count": 1, "suddenly": {"_count": 1}}, "send": {"_count": 1, "them": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "throwing": {"_count": 1, "the": {"_count": 1}}, "setting": {"_count": 1, "off": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "waving": {"_count": 1, "an": {"_count": 1}}, "also": {"_count": 1, "had": {"_count": 1}}, "Bill": {"_count": 2, "and": {"_count": 2}}, "didnt": {"_count": 1, "go": {"_count": 1}}, "grimly": {"_count": 1, "putting": {"_count": 1}}, "pointed": {"_count": 1, "out": {"_count": 1}}, "grinning": {"_count": 2, "identically": {"_count": 1}, "at": {"_count": 1}}, "instead": {"_count": 2, "": {"_count": 1}, "And": {"_count": 1}}, "Fleur": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "Fred": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "stirred": {"_count": 1, "": {"_count": 1}}, "opening": {"_count": 1, "his": {"_count": 1}}, "hoisting": {"_count": 1, "himself": {"_count": 1}}, "transform": {"_count": 1, "the": {"_count": 1}}, "bewitched": {"_count": 1, "a": {"_count": 1}}, "standing": {"_count": 1, "outside": {"_count": 1}}, "craning": {"_count": 1, "his": {"_count": 1}}, "taught": {"_count": 1, "them": {"_count": 1}}, "reemerging": {"_count": 1, "from": {"_count": 1}}, "led": {"_count": 1, "a": {"_count": 1}}, "has": {"_count": 1, "lost": {"_count": 1}}, "wouldve": {"_count": 1, "been": {"_count": 1}}, "Weasleys": {"_count": 1, "mishap": {"_count": 1}}}, "Honestly": {"_count": 16, "woman": {"_count": 1, "you": {"_count": 1}}, "Hermione": {"_count": 1, "you": {"_count": 1}}, "were": {"_count": 1, "much": {"_count": 1}}, "if": {"_count": 3, "the": {"_count": 1}, "you": {"_count": 2}}, "that": {"_count": 1, "was": {"_count": 1}}, "Im": {"_count": 1, "amazed": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "Professor": {"_count": 1, "You": {"_count": 1}}, "the": {"_count": 1, "way": {"_count": 1}}, "you": {"_count": 1, "should": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "some": {"_count": 1, "days": {"_count": 1}}}, "joking": {"_count": 24, "I": {"_count": 1, "am": {"_count": 1}}, "Mom": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "Professor": {"_count": 1, "Slytherins": {"_count": 1}}, "Ron": {"_count": 2, "added": {"_count": 1}, "to": {"_count": 1}}, "said": {"_count": 4, "Ron": {"_count": 1}, "Harry": {"_count": 2}, "George": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "loudly": {"_count": 1, "until": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Perce": {"_count": 2, "": {"_count": 2}}}, "briskly": {"_count": 41, "toward": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "forward": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "Thursday": {"_count": 1}}, "and": {"_count": 2, "Wood": {"_count": 1}, "she": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "buttering": {"_count": 1, "herself": {"_count": 1}}, "Ive": {"_count": 1, "only": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "turning": {"_count": 2, "away": {"_count": 1}, "back": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "springing": {"_count": 1, "to": {"_count": 1}}, "good": {"_count": 1, "summer": {"_count": 1}}, "now": {"_count": 1, "stuffing": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 1}, "Snape": {"_count": 1}}, "getting": {"_count": 2, "to": {"_count": 2}}, "lets": {"_count": 1, "go": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "bustling": {"_count": 1, "over": {"_count": 1}}, "couldnt": {"_count": 1, "be": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "devote": {"_count": 1}}}, "Excuse": {"_count": 24, "me": {"_count": 23, "Harry": {"_count": 1}, "Professor": {"_count": 2}, "": {"_count": 9}, "Im": {"_count": 1}, "said": {"_count": 5}, "I": {"_count": 2}, "are": {"_count": 1}, "growled": {"_count": 1}, "but": {"_count": 1}}, "Committee": {"_count": 1, "": {"_count": 1}}}, "Rons": {"_count": 508, "new": {"_count": 2, "too": {"_count": 1}, "aggression": {"_count": 1}}, "ears": {"_count": 13, "went": {"_count": 5}, "": {"_count": 1}, "glowed": {"_count": 1}, "turned": {"_count": 2}, "were": {"_count": 2}, "had": {"_count": 2}}, "eyes": {"_count": 7, "strayed": {"_count": 1}, "but": {"_count": 1}, "widen": {"_count": 1}, "were": {"_count": 1}, "widened": {"_count": 1}, "": {"_count": 2}}, "lap": {"_count": 1, "": {"_count": 1}}, "mind": {"_count": 2, "off": {"_count": 2}}, "were": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "still": {"_count": 1}}, "smudged": {"_count": 1, "nose": {"_count": 1}}, "twin": {"_count": 1, "brothers": {"_count": 1}}, "turn": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "quill": {"_count": 1, "scribbled": {"_count": 1}}, "freckles": {"_count": 1, "": {"_count": 1}}, "arm": {"_count": 7, "": {"_count": 2}, "to": {"_count": 1}, "sympathetically": {"_count": 1}, "and": {"_count": 2}, "over": {"_count": 1}}, "Charms": {"_count": 1, "homework": {"_count": 1}}, "set": {"_count": 1, "was": {"_count": 1}}, "nerves": {"_count": 1, "were": {"_count": 1}}, "bitten": {"_count": 2, "hand": {"_count": 1}, "scratched": {"_count": 1}}, "younger": {"_count": 4, "sister": {"_count": 4}}, "untidy": {"_count": 1, "scrawl": {"_count": 1}}, "elder": {"_count": 3, "twin": {"_count": 2}, "brother": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 2, "us": {"_count": 1}, "you": {"_count": 1}}, "room": {"_count": 4, "seemed": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "when": {"_count": 1}}, "school": {"_count": 1, "spellbooks": {"_count": 1}}, "magic": {"_count": 1, "wand": {"_count": 1}}, "however": {"_count": 1, "wasnt": {"_count": 1}}, "old": {"_count": 3, "Shooting": {"_count": 1}, "wand": {"_count": 1}, "rat": {"_count": 1}}, "trunk": {"_count": 1, "fell": {"_count": 1}}, "voice": {"_count": 20, "from": {"_count": 3}, "made": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}, "answer": {"_count": 1}, "uncertainly": {"_count": 1}, "now": {"_count": 1}, "flatly": {"_count": 1}, "right": {"_count": 1}, "and": {"_count": 2}, "spoke": {"_count": 1}, "as": {"_count": 1}, "tailed": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}, "echoed": {"_count": 1}}, "knuckles": {"_count": 1, "were": {"_count": 1}}, "whole": {"_count": 1, "attention": {"_count": 1}}, "hand": {"_count": 12, "burst": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 5}, "and": {"_count": 2}, "scowling": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}}, "head": {"_count": 10, "": {"_count": 4}, "in": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}, "got": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}}, "mood": {"_count": 1, "was": {"_count": 1}}, "wand": {"_count": 4, "was": {"_count": 1}, "hitting": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}}, "slug": {"_count": 1, "problem": {"_count": 1}}, "and": {"_count": 23, "Hermiones": {"_count": 16}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "my": {"_count": 1}, "muttered": {"_count": 1}, "were": {"_count": 1}, "he": {"_count": 1}, "Harrys": {"_count": 1}}, "face": {"_count": 23, "": {"_count": 8}, "he": {"_count": 1}, "gathered": {"_count": 1}, "and": {"_count": 2}, "was": {"_count": 4}, "had": {"_count": 1}, "or": {"_count": 1}, "Harry": {"_count": 1}, "appeared": {"_count": 1}, "that": {"_count": 1}, "filled": {"_count": 1}, "as": {"_count": 1}}, "objections": {"_count": 1, "by": {"_count": 1}}, "not": {"_count": 1, "in": {"_count": 1}}, "bishops": {"_count": 1, "wrestled": {"_count": 1}}, "four": {"_count": 2, "poster": {"_count": 1}, "hundred": {"_count": 1}}, "stupefied": {"_count": 1, "faces": {"_count": 1}}, "utter": {"_count": 2, "amazement": {"_count": 1}, "astonishment": {"_count": 1}}, "door": {"_count": 1, "opened": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 2, "rather": {"_count": 1}, "Hermiones": {"_count": 1}}, "jaw": {"_count": 2, "dropped": {"_count": 1}, "had": {"_count": 1}}, "foot": {"_count": 4, "but": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}}, "legs": {"_count": 3, "leave": {"_count": 1}, "which": {"_count": 1}, "were": {"_count": 1}}, "Spellotaped": {"_count": 1, "wand": {"_count": 1}}, "muffled": {"_count": 1, "voice": {"_count": 1}}, "letter": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "brother": {"_count": 3, "Percy": {"_count": 3}}, "did": {"_count": 1, "when": {"_count": 1}}, "disgust": {"_count": 1, "Percy": {"_count": 1}}, "knees": {"_count": 1, "the": {"_count": 1}}, "pocket": {"_count": 4, "trembled": {"_count": 1}, "quivered": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "top": {"_count": 1, "pocket": {"_count": 1}}, "table": {"_count": 2, "pressing": {"_count": 1}, "breathing": {"_count": 1}}, "greatest": {"_count": 1, "fear": {"_count": 1}}, "mouth": {"_count": 5, "fell": {"_count": 3}, "was": {"_count": 1}, "and": {"_count": 1}}, "dad": {"_count": 10, "telling": {"_count": 1}, "he": {"_count": 2}, "Mr": {"_count": 1}, "works": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 2}, "told": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "chest": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "stifled": {"_count": 1, "moans": {"_count": 1}}, "hands": {"_count": 5, "": {"_count": 3}, "as": {"_count": 1}, "finally": {"_count": 1}}, "frequent": {"_count": 1, "complaints": {"_count": 1}}, "eye": {"_count": 4, "and": {"_count": 2}, "the": {"_count": 1}, "instead": {"_count": 1}}, "robes": {"_count": 5, "to": {"_count": 2}, "and": {"_count": 2}, "": {"_count": 1}}, "ear": {"_count": 1, "": {"_count": 1}}, "neck": {"_count": 4, "and": {"_count": 2}, "she": {"_count": 1}, "": {"_count": 1}}, "second": {"_count": 1, "oldest": {"_count": 1}}, "last": {"_count": 1, "exam": {"_count": 1}}, "large": {"_count": 1, "feet": {"_count": 1}}, "grip": {"_count": 2, "": {"_count": 2}}, "clutching": {"_count": 1, "fingers": {"_count": 1}}, "outstretched": {"_count": 2, "arm": {"_count": 2}}, "leg": {"_count": 4, "had": {"_count": 1}, "with": {"_count": 1}, "strapping": {"_count": 1}, "and": {"_count": 1}}, "restraint": {"_count": 1, "and": {"_count": 1}}, "wands": {"_count": 1, "": {"_count": 1}}, "ragged": {"_count": 1, "breathing": {"_count": 1}}, "kept": {"_count": 1, "him": {"_count": 1}}, "holding": {"_count": 1, "him": {"_count": 1}}, "shoulder": {"_count": 2, "was": {"_count": 1}, "at": {"_count": 1}}, "return": {"_count": 2, "from": {"_count": 1}, "made": {"_count": 1}}, "left": {"_count": 2, "": {"_count": 1}, "side": {"_count": 1}}, "red": {"_count": 2, "hair": {"_count": 2}}, "rat": {"_count": 1, "hes": {"_count": 1}}, "sixteenyearold": {"_count": 1, "twin": {"_count": 1}}, "mother": {"_count": 3, "she": {"_count": 1}, "Mrs": {"_count": 1}, "": {"_count": 1}}, "handwriting": {"_count": 1, "then": {"_count": 1}}, "writing": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "friend": {"_count": 1, "Hermione": {"_count": 1}}, "favorite": {"_count": 1, "Quidditch": {"_count": 1}}, "friends": {"_count": 1, "Hermione": {"_count": 1}}, "dress": {"_count": 2, "robes": {"_count": 2}}, "bad": {"_count": 1, "mood": {"_count": 1}}, "conversation": {"_count": 1, "during": {"_count": 1}}, "predictions": {"_count": 1, "toward": {"_count": 1}}, "chair": {"_count": 2, "hooting": {"_count": 1}, "toppled": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "eyebrows": {"_count": 1, "rose": {"_count": 1}}, "bed": {"_count": 9, "was": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 3}, "where": {"_count": 1}, "he": {"_count": 1}}, "got": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "belief": {"_count": 1, "that": {"_count": 1}}, "expression": {"_count": 4, "if": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "names": {"_count": 1, "at": {"_count": 1}}, "jealousy": {"_count": 1, "": {"_count": 1}}, "indignation": {"_count": 2, "on": {"_count": 1}, "had": {"_count": 1}}, "parrots": {"_count": 1, "beak": {"_count": 1}}, "taunts": {"_count": 1, "about": {"_count": 1}}, "tiny": {"_count": 2, "owl": {"_count": 2}}, "fist": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "involving": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "dark": {"_count": 1, "predictions": {"_count": 1}}, "was": {"_count": 4, "particularly": {"_count": 1}, "moving": {"_count": 1}, "spitting": {"_count": 1}, "the": {"_count": 1}}, "niffler": {"_count": 1, "had": {"_count": 1}}, "watch": {"_count": 2, "having": {"_count": 1}, "the": {"_count": 1}}, "parents": {"_count": 1, "house": {"_count": 1}}, "brothers": {"_count": 1, "but": {"_count": 1}}, "mums": {"_count": 3, "right": {"_count": 1}, "lit": {"_count": 1}, "nose": {"_count": 1}}, "other": {"_count": 1, "hand": {"_count": 1}}, "grasp": {"_count": 1, "and": {"_count": 1}}, "prefect": {"_count": 1, "not": {"_count": 1}}, "done": {"_count": 1, "loads": {"_count": 1}}, "pile": {"_count": 1, "": {"_count": 1}}, "fault": {"_count": 1, "": {"_count": 1}}, "best": {"_count": 1, "friend": {"_count": 1}}, "back": {"_count": 1, "ruin": {"_count": 1}}, "footsteps": {"_count": 1, "on": {"_count": 1}}, "hair": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "was": {"_count": 1}}, "body": {"_count": 2, "": {"_count": 1}, "turned": {"_count": 1}}, "rudeness": {"_count": 1, "on": {"_count": 1}}, "stomach": {"_count": 1, "rumbling": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "slur": {"_count": 1, "on": {"_count": 1}}, "tryout": {"_count": 1, "": {"_count": 1}}, "goal": {"_count": 1, "obviously": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "essay": {"_count": 3, "and": {"_count": 1}, "toward": {"_count": 1}, "": {"_count": 1}}, "drawing": {"_count": 1, "of": {"_count": 1}}, "right": {"_count": 2, "": {"_count": 2}}, "direction": {"_count": 2, "if": {"_count": 1}, "and": {"_count": 1}}, "raven": {"_count": 1, "and": {"_count": 1}}, "smile": {"_count": 1, "slipped": {"_count": 1}}, "bedroom": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "where": {"_count": 1}}, "spirits": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 3, "got": {"_count": 1}, "now": {"_count": 1}, "refused": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "seemed": {"_count": 1}}, "central": {"_count": 1, "hoop": {"_count": 1}}, "end": {"_count": 1, "as": {"_count": 1}}, "mugs": {"_count": 1, "and": {"_count": 1}}, "faces": {"_count": 1, "but": {"_count": 1}}, "malfunctioning": {"_count": 1, "wand": {"_count": 1}}, "memories": {"_count": 1, "at": {"_count": 1}}, "feeble": {"_count": 1, "mutter": {"_count": 1}}, "plight": {"_count": 1, "when": {"_count": 1}}, "goalkeeping": {"_count": 1, "ability": {"_count": 1}}, "fourteenth": {"_count": 1, "failed": {"_count": 1}}, "crumpled": {"_count": 1, "figure": {"_count": 1}}, "snores": {"_count": 2, "died": {"_count": 1}, "began": {"_count": 1}}, "mattress": {"_count": 1, "creak": {"_count": 1}}, "schedule": {"_count": 1, "with": {"_count": 1}}, "grew": {"_count": 1, "four": {"_count": 1}}, "cup": {"_count": 1, "with": {"_count": 1}}, "abysmal": {"_count": 1, "goalkeeping": {"_count": 1}}, "euphoria": {"_count": 1, "at": {"_count": 1}}, "carefully": {"_count": 1, "ruffled": {"_count": 1}}, "desire": {"_count": 1, "for": {"_count": 1}}, "suggestion": {"_count": 1, "of": {"_count": 1}}, "broom": {"_count": 1, "and": {"_count": 1}}, "lip": {"_count": 2, "was": {"_count": 2}}, "the": {"_count": 1, "only": {"_count": 1}}, "arms": {"_count": 4, "like": {"_count": 1}, "": {"_count": 3}}, "thoughts": {"_count": 1, "on": {"_count": 1}}, "knight": {"_count": 1, "": {"_count": 1}}, "grown": {"_count": 1, "four": {"_count": 1}}, "grades": {"_count": 1, "There": {"_count": 1}}, "booklist": {"_count": 1, "": {"_count": 1}}, "showing": {"_count": 1, "much": {"_count": 1}}, "owl": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "remark": {"_count": 1, "highly": {"_count": 1}}, "cauldron": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "Keeper": {"_count": 1, "he": {"_count": 1}}, "frantic": {"_count": 1, "grimaces": {"_count": 1}}, "shock": {"_count": 1, "had": {"_count": 1}}, "gasp": {"_count": 1, "carefully": {"_count": 1}}, "fingers": {"_count": 1, "and": {"_count": 1}}, "words": {"_count": 1, "": {"_count": 1}}, "sister": {"_count": 6, "he": {"_count": 1}, "": {"_count": 4}, "Harry": {"_count": 1}}, "height": {"_count": 1, "though": {"_count": 1}}, "confidence": {"_count": 1, "all": {"_count": 1}}, "recent": {"_count": 1, "unpleasant": {"_count": 1}}, "drink": {"_count": 1, "": {"_count": 1}}, "juice": {"_count": 2, "with": {"_count": 1}, "this": {"_count": 1}}, "disastrous": {"_count": 1, "first": {"_count": 1}}, "attic": {"_count": 2, "bedroom": {"_count": 2}}, "presence": {"_count": 1, "longer": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "you": {"_count": 1}}, "swallowed": {"_count": 1, "a": {"_count": 1}}, "gargling": {"_count": 1, "breath": {"_count": 1}}, "side": {"_count": 1, "wrenched": {"_count": 1}}, "better": {"_count": 1, "birthdays": {"_count": 1}}, "bedside": {"_count": 1, "cabinet": {"_count": 1}}, "pale": {"_count": 1, "face": {"_count": 1}}, "glass": {"_count": 1, "without": {"_count": 1}}, "feelings": {"_count": 1, "a": {"_count": 1}}, "snorts": {"_count": 1, "subsided": {"_count": 1}}, "dried": {"_count": 1, "essay": {"_count": 1}}, "Apparition": {"_count": 1, "but": {"_count": 1}}, "flask": {"_count": 1, "exploded": {"_count": 1}}, "fit": {"_count": 1, "well": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "tolerance": {"_count": 1, "was": {"_count": 1}}, "hasty": {"_count": 1, "questions": {"_count": 1}}, "raised": {"_count": 1, "eyebrows": {"_count": 1}}, "Auntie": {"_count": 2, "Muriels": {"_count": 1}, "Muriel": {"_count": 1}}, "prediction": {"_count": 1, "came": {"_count": 1}}, "mum": {"_count": 1, "forgot": {"_count": 1}}, "ankle": {"_count": 1, "": {"_count": 1}}, "pajamas": {"_count": 1, "": {"_count": 1}}, "dingy": {"_count": 1, "attic": {"_count": 1}}, "possessions": {"_count": 1, "flying": {"_count": 1}}, "Chudley": {"_count": 1, "Cannons": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "splutter": {"_count": 1, "was": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "vicinity": {"_count": 1, "offered": {"_count": 1}}, "gone": {"_count": 1, "looking": {"_count": 1}}, "father": {"_count": 1, "": {"_count": 1}}, "annoyed": {"_count": 1, "voice": {"_count": 1}}, "greeting": {"_count": 1, "as": {"_count": 1}}, "sleeve": {"_count": 1, "where": {"_count": 1}}, "shirt": {"_count": 1, "": {"_count": 1}}, "upper": {"_count": 1, "arm": {"_count": 1}}, "angry": {"_count": 1, "voice": {"_count": 1}}, "stillpale": {"_count": 1, "face": {"_count": 1}}, "breathing": {"_count": 1, "": {"_count": 1}}, "bunk": {"_count": 2, "creaked": {"_count": 1}, "and": {"_count": 1}}, "name": {"_count": 4, "amongst": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "had": {"_count": 1}}, "deserted": {"_count": 1, "bunk": {"_count": 1}}, "labeled": {"_count": 1, "dot": {"_count": 1}}, "departure": {"_count": 2, "": {"_count": 1}, "seemed": {"_count": 1}}, "reappearance": {"_count": 1, "he": {"_count": 1}}, "enormous": {"_count": 1, "rucksack": {"_count": 1}}, "jacket": {"_count": 1, "": {"_count": 1}}, "rucksack": {"_count": 1, "and": {"_count": 1}}, "hatred": {"_count": 1, "of": {"_count": 1}}, "support": {"_count": 1, "of": {"_count": 1}}, "yell": {"_count": 1, "and": {"_count": 1}}, "persistent": {"_count": 1, "doubts": {"_count": 1}}, "constant": {"_count": 1, "refrain": {"_count": 1}}, "taken": {"_count": 1, "her": {"_count": 1}}, "doubts": {"_count": 1, "": {"_count": 1}}, "appearance": {"_count": 1, "": {"_count": 1}}, "confused": {"_count": 1, "queries": {"_count": 1}}, "wrist": {"_count": 1, "as": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "silver": {"_count": 1, "terrier": {"_count": 1}}, "shoulders": {"_count": 1, "": {"_count": 1}}, "Hermiones": {"_count": 1, "and": {"_count": 1}}}, "youngest": {"_count": 19, "of": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "boy": {"_count": 1, "tried": {"_count": 1}}, "redheaded": {"_count": 1, "boy": {"_count": 1}}, "House": {"_count": 2, "player": {"_count": 2}}, "Seeker": {"_count": 1, "in": {"_count": 1}}, "brother": {"_count": 4, "": {"_count": 1}, "what": {"_count": 1}, "was": {"_count": 1}, "finally": {"_count": 1}}, "person": {"_count": 1, "in": {"_count": 1}}, "child": {"_count": 1, "and": {"_count": 1}}, "ever": {"_count": 1, "Minister": {"_count": 1}}, "champion": {"_count": 2, "you": {"_count": 1}, "is": {"_count": 1}}, "there": {"_count": 1, "she": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "sons": {"_count": 25, "": {"_count": 3, ".": {"_count": 3}}, "were": {"_count": 1, "taller": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "flew": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 6, "daughters": {"_count": 3}, "one": {"_count": 1}, "Hermione": {"_count": 1}, "his": {"_count": 1}}, "We": {"_count": 1, "didnt": {"_count": 1}}, "body": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "sent": {"_count": 1, "an": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "been": {"_count": 1, "let": {"_count": 1}}, "attitude": {"_count": 1, "that": {"_count": 1}}, "quite": {"_count": 1, "mad": {"_count": 1}}, "but": {"_count": 1, "Thank": {"_count": 1}}, "taste": {"_count": 1, "in": {"_count": 1}}, "fighting": {"_count": 1, "like": {"_count": 1}}, "had": {"_count": 1, "resumed": {"_count": 1}}, "thin": {"_count": 1, "face": {"_count": 1}}}, "gangling": {"_count": 2, "with": {"_count": 2, "freckles": {"_count": 1}, "his": {"_count": 1}}}, "freckles": {"_count": 9, "big": {"_count": 1, "hands": {"_count": 1}}, "and": {"_count": 1, "more": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "a": {"_count": 1, "short": {"_count": 1}}}, "Ron": {"_count": 5813, "": {"_count": 865, ".": {"_count": 764}, "?": {"_count": 48}, "!": {"_count": 53}}, "youve": {"_count": 1, "got": {"_count": 1}}, "again": {"_count": 7, "": {"_count": 3}, "WAIT": {"_count": 1}, "only": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}}, "our": {"_count": 1, "brother": {"_count": 1}}, "blurted": {"_count": 3, "out": {"_count": 3}}, "stared": {"_count": 23, "": {"_count": 1}, "as": {"_count": 2}, "after": {"_count": 1}, "at": {"_count": 11}, "straight": {"_count": 2}, "broodingly": {"_count": 1}, "into": {"_count": 1}, "wildly": {"_count": 1}, "incredulously": {"_count": 1}, "Hermione": {"_count": 1}, "around": {"_count": 1}}, "eagerly": {"_count": 11, "": {"_count": 9}, "to": {"_count": 1}, "and": {"_count": 1}}, "just": {"_count": 6, "as": {"_count": 4}, "stood": {"_count": 1}, "saved": {"_count": 1}}, "found": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "reached": {"_count": 2, "inside": {"_count": 1}, "her": {"_count": 1}}, "so": {"_count": 3, "all": {"_count": 1}, "hard": {"_count": 1}, "that": {"_count": 1}}, "up": {"_count": 10, "": {"_count": 2}, "by": {"_count": 1}, "Harry": {"_count": 1}, "three": {"_count": 1}, "the": {"_count": 2}, "against": {"_count": 1}, "at": {"_count": 1}, "here": {"_count": 1}}, "gasped": {"_count": 9, "": {"_count": 5}, "staring": {"_count": 1}, "Get": {"_count": 1}, "again": {"_count": 1}, "Lavender": {"_count": 1}}, "sounding": {"_count": 18, "both": {"_count": 1}, "stunned": {"_count": 1}, "slightly": {"_count": 3}, "worried": {"_count": 2}, "reassured": {"_count": 1}, "disappointed": {"_count": 1}, "apprehensive": {"_count": 1}, "aggravated": {"_count": 1}, "aghast": {"_count": 1}, "scared": {"_count": 1}, "thoroughly": {"_count": 1}, "revolted": {"_count": 1}, "rather": {"_count": 1}, "surprised": {"_count": 1}, "profoundly": {"_count": 1}}, "had": {"_count": 144, "taken": {"_count": 4}, "already": {"_count": 5}, "a": {"_count": 5}, "spent": {"_count": 2}, "saved": {"_count": 1}, "finished": {"_count": 2}, "started": {"_count": 2}, "fallen": {"_count": 2}, "said": {"_count": 3}, "gone": {"_count": 1}, "covered": {"_count": 1}, "pulled": {"_count": 2}, "helped": {"_count": 1}, "happened": {"_count": 1}, "given": {"_count": 5}, "barely": {"_count": 1}, "tried": {"_count": 1}, "leapt": {"_count": 1}, "never": {"_count": 2}, "just": {"_count": 6}, "followed": {"_count": 2}, "warned": {"_count": 1}, "had": {"_count": 4}, "frozen": {"_count": 1}, "mentioned": {"_count": 2}, "his": {"_count": 1}, "no": {"_count": 3}, "been": {"_count": 11}, "become": {"_count": 2}, "got": {"_count": 1}, "to": {"_count": 6}, "thrown": {"_count": 3}, "woken": {"_count": 1}, "hurried": {"_count": 1}, "kept": {"_count": 1}, "slapped": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 3}, "appeared": {"_count": 1}, "so": {"_count": 1}, "managed": {"_count": 1}, "grabbed": {"_count": 1}, "both": {"_count": 2}, "gotten": {"_count": 1}, "screwed": {"_count": 1}, "accidentally": {"_count": 1}, "dived": {"_count": 1}, "let": {"_count": 3}, "grown": {"_count": 1}, "looked": {"_count": 2}, "left": {"_count": 3}, "Quidditch": {"_count": 1}, "lowered": {"_count": 1}, "the": {"_count": 1}, "caused": {"_count": 1}, "more": {"_count": 1}, "anticipated": {"_count": 1}, "refrained": {"_count": 1}, "beaten": {"_count": 1}, "only": {"_count": 1}, "shown": {"_count": 1}, "stooped": {"_count": 1}, "done": {"_count": 1}, "chased": {"_count": 1}, "dropped": {"_count": 2}, "come": {"_count": 2}, "panicked": {"_count": 1}, "ever": {"_count": 1}, "snatched": {"_count": 2}, "difficulty": {"_count": 1}, "slept": {"_count": 1}, "developed": {"_count": 1}, "once": {"_count": 1}, "pushed": {"_count": 1}, "hoped": {"_count": 1}, "indicated": {"_count": 1}, "pierced": {"_count": 1}, "run": {"_count": 1}, "released": {"_count": 1}, "burst": {"_count": 1}}, "eating": {"_count": 1, "their": {"_count": 1}}, "holding": {"_count": 7, "up": {"_count": 3}, "a": {"_count": 1}, "out": {"_count": 2}, "him": {"_count": 1}}, "sounded": {"_count": 2, "amazed": {"_count": 1}, "worried": {"_count": 1}}, "was": {"_count": 193, "more": {"_count": 1}, "so": {"_count": 1}, "in": {"_count": 4}, "standing": {"_count": 8}, "explaining": {"_count": 1}, "fascinated": {"_count": 2}, "": {"_count": 1}, "admiring": {"_count": 1}, "on": {"_count": 3}, "painful": {"_count": 1}, "leaning": {"_count": 1}, "close": {"_count": 1}, "scarlet": {"_count": 1}, "pointing": {"_count": 3}, "having": {"_count": 2}, "now": {"_count": 7}, "still": {"_count": 9}, "holding": {"_count": 2}, "indistinguishable": {"_count": 1}, "clenching": {"_count": 1}, "turning": {"_count": 3}, "too": {"_count": 3}, "just": {"_count": 3}, "sitting": {"_count": 5}, "examining": {"_count": 1}, "yelling": {"_count": 3}, "about": {"_count": 2}, "avoiding": {"_count": 1}, "seething": {"_count": 1}, "muttering": {"_count": 2}, "right": {"_count": 2}, "already": {"_count": 2}, "furious": {"_count": 2}, "enraged": {"_count": 1}, "rather": {"_count": 2}, "the": {"_count": 2}, "bent": {"_count": 1}, "fighting": {"_count": 2}, "staring": {"_count": 7}, "chained": {"_count": 1}, "frozen": {"_count": 1}, "lying": {"_count": 5}, "hurriedly": {"_count": 1}, "saying": {"_count": 6}, "shaking": {"_count": 2}, "smiling": {"_count": 1}, "no": {"_count": 2}, "only": {"_count": 1}, "busy": {"_count": 1}, "watching": {"_count": 4}, "obviously": {"_count": 1}, "giving": {"_count": 1}, "tied": {"_count": 1}, "getting": {"_count": 1}, "telling": {"_count": 1}, "talking": {"_count": 1}, "kneeling": {"_count": 2}, "rhapsodizing": {"_count": 1}, "downstairs": {"_count": 1}, "faking": {"_count": 1}, "absentmindedly": {"_count": 1}, "keen": {"_count": 1}, "pretty": {"_count": 1}, "thinking": {"_count": 2}, "looking": {"_count": 4}, "even": {"_count": 1}, "allowing": {"_count": 1}, "not": {"_count": 6}, "listening": {"_count": 1}, "going": {"_count": 1}, "seriously": {"_count": 1}, "bending": {"_count": 1}, "snoring": {"_count": 1}, "speaking": {"_count": 1}, "reading": {"_count": 1}, "squinting": {"_count": 1}, "trying": {"_count": 1}, "careful": {"_count": 1}, "unimpressed": {"_count": 1}, "experiencing": {"_count": 1}, "cleared": {"_count": 1}, "cursing": {"_count": 1}, "a": {"_count": 1}, "dangling": {"_count": 1}, "an": {"_count": 1}, "kiss": {"_count": 1}, "there": {"_count": 2}, "resentful": {"_count": 1}, "very": {"_count": 2}, "waving": {"_count": 1}, "waiting": {"_count": 1}, "great": {"_count": 1}, "dancing": {"_count": 1}, "making": {"_count": 2}, "rummaging": {"_count": 1}, "struggling": {"_count": 1}, "dealing": {"_count": 1}, "halfway": {"_count": 1}, "hoping": {"_count": 1}, "gazing": {"_count": 1}, "breathing": {"_count": 1}, "here": {"_count": 1}, "buried": {"_count": 1}, "half": {"_count": 1}, "bellowing": {"_count": 1}, "drawing": {"_count": 1}, "redhaired": {"_count": 1}, "gaping": {"_count": 1}, "almost": {"_count": 1}}, "warned": {"_count": 2, "Harry": {"_count": 2}}, "picked": {"_count": 3, "up": {"_count": 2}, "them": {"_count": 1}}, "wouldnt": {"_count": 4, "touch": {"_count": 1}, "have": {"_count": 1}, "hear": {"_count": 1}, "be": {"_count": 1}}, "in": {"_count": 86, "disgust": {"_count": 2}, "about": {"_count": 1}, "front": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 14}, "a": {"_count": 35}, "exasperation": {"_count": 1}, "an": {"_count": 10}, "horror": {"_count": 1}, "surprise": {"_count": 4}, "mock": {"_count": 2}, "my": {"_count": 1}, "Diagon": {"_count": 1}, "disbelief": {"_count": 3}, "mild": {"_count": 1}, "exactly": {"_count": 1}, "on": {"_count": 1}, "utter": {"_count": 1}, "lessons": {"_count": 1}, "what": {"_count": 1}, "case": {"_count": 1}, "relief": {"_count": 1}, "dire": {"_count": 1}}, "but": {"_count": 35, "the": {"_count": 2}, "she": {"_count": 1}, "he": {"_count": 4}, "Hermione": {"_count": 2}, "Harry": {"_count": 3}, "you": {"_count": 1}, "Ron": {"_count": 3}, "very": {"_count": 1}, "just": {"_count": 1}, "we": {"_count": 1}, "Mrs": {"_count": 2}, "otherwise": {"_count": 1}, "at": {"_count": 1}, "if": {"_count": 2}, "I": {"_count": 4}, "who": {"_count": 1}, "people": {"_count": 1}, "before": {"_count": 2}, "no": {"_count": 1}, "unable": {"_count": 1}}, "looked": {"_count": 90, "taken": {"_count": 2}, "dumbfounded": {"_count": 1}, "at": {"_count": 12}, "still": {"_count": 1}, "wildly": {"_count": 1}, "incredulously": {"_count": 1}, "up": {"_count": 7}, "under": {"_count": 1}, "even": {"_count": 1}, "exactly": {"_count": 1}, "as": {"_count": 5}, "thunderstruck": {"_count": 1}, "horrified": {"_count": 1}, "around": {"_count": 8}, "amazed": {"_count": 1}, "behind": {"_count": 1}, "just": {"_count": 1}, "carefully": {"_count": 1}, "quickly": {"_count": 1}, "extremely": {"_count": 2}, "deeply": {"_count": 1}, "for": {"_count": 1}, "rather": {"_count": 2}, "seriously": {"_count": 1}, "positively": {"_count": 1}, "sadly": {"_count": 1}, "nervous": {"_count": 1}, "utterly": {"_count": 1}, "puzzled": {"_count": 1}, "more": {"_count": 1}, "from": {"_count": 1}, "down": {"_count": 3}, "darkly": {"_count": 1}, "highly": {"_count": 1}, "a": {"_count": 2}, "slightly": {"_count": 3}, "simply": {"_count": 1}, "ready": {"_count": 1}, "strangely": {"_count": 1}, "thoughtfully": {"_count": 1}, "both": {"_count": 1}, "fractionally": {"_count": 1}, "immensely": {"_count": 1}, "nervously": {"_count": 1}, "away": {"_count": 1}, "white": {"_count": 1}, "appalled": {"_count": 1}, "thoroughly": {"_count": 1}, "half": {"_count": 1}, "startled": {"_count": 1}, "smug": {"_count": 1}, "toward": {"_count": 1}, "grateful": {"_count": 1}, "terrified": {"_count": 1}}, "and": {"_count": 849, "was": {"_count": 2}, "started": {"_count": 1}, "the": {"_count": 20}, "Harry": {"_count": 25}, "seizing": {"_count": 1}, "Hermione": {"_count": 644}, "his": {"_count": 5}, "they": {"_count": 3}, "said": {"_count": 3}, "lucky": {"_count": 1}, "a": {"_count": 1}, "Fred": {"_count": 2}, "then": {"_count": 5}, "Hedwig": {"_count": 1}, "smiling": {"_count": 1}, "Neville": {"_count": 4}, "me": {"_count": 3}, "picked": {"_count": 1}, "Dean": {"_count": 4}, "Fang": {"_count": 1}, "prodding": {"_count": 1}, "Professor": {"_count": 2}, "Lockhart": {"_count": 1}, "Percy": {"_count": 1}, "he": {"_count": 13}, "to": {"_count": 2}, "pulled": {"_count": 1}, "Hermiones": {"_count": 7}, "wondering": {"_count": 1}, "proceeded": {"_count": 1}, "Lupin": {"_count": 1}, "what": {"_count": 1}, "as": {"_count": 1}, "Pettigrew": {"_count": 1}, "George": {"_count": 1}, "Ginny": {"_count": 18}, "you": {"_count": 1}, "got": {"_count": 1}, "tugged": {"_count": 1}, "watching": {"_count": 1}, "Nearly": {"_count": 1}, "acting": {"_count": 1}, "went": {"_count": 1}, "there": {"_count": 1}, "Im": {"_count": 1}, "flattened": {"_count": 1}, "pointed": {"_count": 2}, "Padma": {"_count": 3}, "after": {"_count": 2}, "Fleurs": {"_count": 2}, "gone": {"_count": 1}, "just": {"_count": 1}, "Mrs": {"_count": 1}, "smiled": {"_count": 1}, "Mundungus": {"_count": 1}, "I": {"_count": 6}, "Luna": {"_count": 1}, "pulling": {"_count": 1}, "see": {"_count": 1}, "her": {"_count": 2}, "swept": {"_count": 1}, "looking": {"_count": 1}, "found": {"_count": 1}, "saw": {"_count": 1}, "Malfoy": {"_count": 1}, "with": {"_count": 1}, "Ron": {"_count": 1}, "Ive": {"_count": 1}, "thats": {"_count": 1}, "having": {"_count": 1}, "casting": {"_count": 1}, "Lavender": {"_count": 5}, "recounted": {"_count": 1}, "Ernie": {"_count": 1}, "that": {"_count": 2}, "Tonks": {"_count": 2}, "Bill": {"_count": 1}, "ran": {"_count": 1}, "all": {"_count": 1}, "hurriedly": {"_count": 1}, "Dumbledore": {"_count": 1}, "even": {"_count": 1}, "placed": {"_count": 1}, "finally": {"_count": 1}, "Travers": {"_count": 1}, "from": {"_count": 1}, "Crabbe": {"_count": 1}}, "Weasley": {"_count": 10, "Ron": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 2}, "who": {"_count": 1}, "dyou": {"_count": 1}, "is": {"_count": 1}, "Hermione": {"_count": 1}, "came": {"_count": 1}}, "muttered": {"_count": 41, "": {"_count": 12}, "to": {"_count": 11}, "at": {"_count": 1}, "desperately": {"_count": 1}, "in": {"_count": 2}, "as": {"_count": 2}, "his": {"_count": 2}, "Showoffs": {"_count": 1}, "shrugging": {"_count": 1}, "casting": {"_count": 1}, "thickly": {"_count": 1}, "indistinctly": {"_count": 1}, "watching": {"_count": 1}, "under": {"_count": 1}, "climbing": {"_count": 1}, "irritably": {"_count": 1}, "Drop": {"_count": 1}}, "asked": {"_count": 49, "": {"_count": 7}, "as": {"_count": 3}, "sticking": {"_count": 1}, "Harry": {"_count": 9}, "Hermione": {"_count": 6}, "dully": {"_count": 1}, "awkwardly": {"_count": 1}, "nervously": {"_count": 1}, "her": {"_count": 3}, "Lupin": {"_count": 1}, "the": {"_count": 2}, "George": {"_count": 1}, "in": {"_count": 3}, "a": {"_count": 1}, "staring": {"_count": 1}, "him": {"_count": 2}, "sounding": {"_count": 1}, "quietly": {"_count": 1}, "abruptly": {"_count": 1}, "limping": {"_count": 1}, "advancing": {"_count": 1}, "apprehensively": {"_count": 1}}, "gave": {"_count": 33, "a": {"_count": 19}, "him": {"_count": 2}, "them": {"_count": 2}, "an": {"_count": 2}, "Harry": {"_count": 4}, "her": {"_count": 2}, "no": {"_count": 1}, "Hermione": {"_count": 1}}, "stood": {"_count": 13, "up": {"_count": 2}, "by": {"_count": 1}, "talking": {"_count": 1}, "with": {"_count": 1}, "hidden": {"_count": 1}, "straight": {"_count": 1}, "on": {"_count": 1}, "before": {"_count": 1}, "waiting": {"_count": 1}, "rigid": {"_count": 1}, "there": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 141, "his": {"_count": 1}, "to": {"_count": 9}, "": {"_count": 13}, "eagerly": {"_count": 1}, "hed": {"_count": 1}, "this": {"_count": 1}, "you": {"_count": 1}, "cajolingly": {"_count": 1}, "Neville": {"_count": 1}, "Hermione": {"_count": 21}, "Hagrid": {"_count": 4}, "Lets": {"_count": 1}, "quickly": {"_count": 2}, "Mr": {"_count": 1}, "but": {"_count": 3}, "it": {"_count": 1}, "miserably": {"_count": 1}, "furiously": {"_count": 2}, "angrily": {"_count": 3}, "stumbling": {"_count": 1}, "again": {"_count": 2}, "anxiously": {"_count": 1}, "cautiously": {"_count": 1}, "staring": {"_count": 1}, "weakly": {"_count": 1}, "Lupin": {"_count": 2}, "hurriedly": {"_count": 1}, "Like": {"_count": 1}, "Bill": {"_count": 1}, "sleepily": {"_count": 1}, "quietly": {"_count": 3}, "in": {"_count": 5}, "looking": {"_count": 1}, "breathlessly": {"_count": 1}, "Harry": {"_count": 3}, "and": {"_count": 1}, "he": {"_count": 2}, "Well": {"_count": 1}, "as": {"_count": 2}, "bitterly": {"_count": 1}, "shaking": {"_count": 1}, "the": {"_count": 3}, "nothing": {"_count": 4}, "abruptly": {"_count": 1}, "turning": {"_count": 1}, "happily": {"_count": 1}, "Mrs": {"_count": 1}, "hopefully": {"_count": 1}, "defensively": {"_count": 1}, "Angelina": {"_count": 1}, "jerkily": {"_count": 1}, "Thats": {"_count": 1}, "immersed": {"_count": 1}, "almost": {"_count": 1}, "darkly": {"_count": 1}, "sounding": {"_count": 1}, "gesturing": {"_count": 1}, "finally": {"_count": 1}, "One": {"_count": 1}, "audibly": {"_count": 1}, "stopping": {"_count": 1}, "Gget": {"_count": 1}, "faintly": {"_count": 1}, "slowly": {"_count": 1}, "astounded": {"_count": 1}, "Course": {"_count": 1}, "Tonks": {"_count": 1}, "You": {"_count": 1}, "moaning": {"_count": 1}, "prising": {"_count": 1}, "gaping": {"_count": 1}, "Luna": {"_count": 2}, "Hes": {"_count": 1}, "Blimey": {"_count": 1}}, "Ron": {"_count": 6, "leapt": {"_count": 1}, "woke": {"_count": 1}, "hissed": {"_count": 1}, "looked": {"_count": 1}, "not": {"_count": 1}, "had": {"_count": 1}}, "leapt": {"_count": 5, "forward": {"_count": 2}, "backward": {"_count": 1}, "out": {"_count": 2}}, "picking": {"_count": 4, "up": {"_count": 3}, "himself": {"_count": 1}}, "darkly": {"_count": 10, "": {"_count": 8}, "were": {"_count": 1}, "watching": {"_count": 1}}, "scowling": {"_count": 3, "at": {"_count": 2}, "": {"_count": 1}}, "glared": {"_count": 5, "at": {"_count": 3}, "after": {"_count": 1}, "from": {"_count": 1}}, "took": {"_count": 10, "off": {"_count": 1}, "hold": {"_count": 1}, "this": {"_count": 1}, "their": {"_count": 1}, "care": {"_count": 1}, "from": {"_count": 1}, "it": {"_count": 1}, "an": {"_count": 1}, "charge": {"_count": 1}, "a": {"_count": 1}}, "he": {"_count": 15, "saw": {"_count": 2}, "had": {"_count": 2}, "hissed": {"_count": 1}, "breathed": {"_count": 1}, "started": {"_count": 1}, "said": {"_count": 3}, "looked": {"_count": 1}, "hasnt": {"_count": 1}, "would": {"_count": 1}, "dropped": {"_count": 1}, "thought": {"_count": 1}}, "were": {"_count": 31, "followed": {"_count": 1}, "delighted": {"_count": 2}, "still": {"_count": 4}, "going": {"_count": 2}, "in": {"_count": 2}, "planning": {"_count": 1}, "no": {"_count": 1}, "looking": {"_count": 1}, "deeply": {"_count": 1}, "friends": {"_count": 1}, "getting": {"_count": 1}, "okay": {"_count": 1}, "supposed": {"_count": 1}, "not": {"_count": 1}, "wrestling": {"_count": 1}, "given": {"_count": 1}, "ready": {"_count": 1}, "on": {"_count": 1}, "sitting": {"_count": 1}, "keeping": {"_count": 1}, "much": {"_count": 1}, "the": {"_count": 2}, "both": {"_count": 1}, "at": {"_count": 1}}, "behind": {"_count": 3, "him": {"_count": 1}, "a": {"_count": 2}}, "whispered": {"_count": 21, "to": {"_count": 3}, "": {"_count": 8}, "in": {"_count": 1}, "George": {"_count": 1}, "ecstatically": {"_count": 1}, "shifting": {"_count": 1}, "orders": {"_count": 1}, "back": {"_count": 1}, "his": {"_count": 1}, "lifting": {"_count": 1}, "Harry": {"_count": 1}, "Couldnt": {"_count": 1}}, "groaned": {"_count": 8, "": {"_count": 4}, "sympathetically": {"_count": 1}, "zooming": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}}, "joined": {"_count": 7, "Harry": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}, "Bill": {"_count": 1}}, "collapsed": {"_count": 2, "into": {"_count": 2}}, "excellent": {"_count": 1, "said": {"_count": 1}}, "suddenly": {"_count": 12, "": {"_count": 8}, "flung": {"_count": 1}, "grabbed": {"_count": 1}, "pointing": {"_count": 1}, "so": {"_count": 1}}, "if": {"_count": 5, "hed": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}, "that": {"_count": 1}, "hes": {"_count": 1}}, "managed": {"_count": 2, "to": {"_count": 2}}, "didnt": {"_count": 13, "have": {"_count": 1}, "answer": {"_count": 2}, "": {"_count": 1}, "talk": {"_count": 1}, "smile": {"_count": 1}, "need": {"_count": 1}, "speak": {"_count": 1}, "touch": {"_count": 1}, "want": {"_count": 1}, "say": {"_count": 1}, "move": {"_count": 2}}, "as": {"_count": 65, "he": {"_count": 11}, "they": {"_count": 21}, "another": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 9}, "though": {"_count": 6}, "a": {"_count": 4}, "Hermione": {"_count": 2}, "Harry": {"_count": 2}, "much": {"_count": 1}, "Madam": {"_count": 1}, "far": {"_count": 1}, "their": {"_count": 1}, "with": {"_count": 1}, "were": {"_count": 1}, "she": {"_count": 1}, "more": {"_count": 1}}, "exchanged": {"_count": 7, "looks": {"_count": 2}, "nervous": {"_count": 1}, "excited": {"_count": 1}, "panicstricken": {"_count": 1}, "uncomfortable": {"_count": 1}, "glances": {"_count": 1}}, "who": {"_count": 154, "looked": {"_count": 10}, "had": {"_count": 32}, "was": {"_count": 59}, "nodded": {"_count": 1}, "kept": {"_count": 1}, "told": {"_count": 2}, "didnt": {"_count": 1}, "shook": {"_count": 1}, "seemed": {"_count": 6}, "still": {"_count": 2}, "wasnt": {"_count": 2}, "both": {"_count": 1}, "were": {"_count": 4}, "vaulted": {"_count": 1}, "in": {"_count": 1}, "staring": {"_count": 1}, "surveyed": {"_count": 1}, "shrugged": {"_count": 1}, "waited": {"_count": 1}, "dropped": {"_count": 1}, "lunged": {"_count": 1}, "nudged": {"_count": 1}, "made": {"_count": 1}, "giggled": {"_count": 1}, "like": {"_count": 1}, "grinned": {"_count": 1}, "for": {"_count": 1}, "did": {"_count": 3}, "refused": {"_count": 1}, "yelped": {"_count": 1}, "might": {"_count": 1}, "read": {"_count": 1}, "grimaced": {"_count": 1}, "took": {"_count": 1}, "roared": {"_count": 1}, "needed": {"_count": 1}, "swore": {"_count": 1}, "hastily": {"_count": 1}, "clambered": {"_count": 1}, "stood": {"_count": 1}, "attacked": {"_count": 1}, "cleared": {"_count": 1}, "pulled": {"_count": 1}}, "kicked": {"_count": 3, "him": {"_count": 2}, "a": {"_count": 1}}, "Snapes": {"_count": 1, "always": {"_count": 1}}, "Harry": {"_count": 14, "told": {"_count": 1}, "and": {"_count": 4}, "put": {"_count": 1}, "come": {"_count": 1}, "his": {"_count": 1}, "said": {"_count": 1}, "smiled": {"_count": 1}, "made": {"_count": 1}, "hold": {"_count": 1}, "realized": {"_count": 1}, "stooped": {"_count": 1}}, "pretended": {"_count": 3, "to": {"_count": 3}}, "told": {"_count": 27, "Harry": {"_count": 11}, "Hagrid": {"_count": 1}, "her": {"_count": 3}, "a": {"_count": 2}, "Malfoy": {"_count": 1}, "him": {"_count": 3}, "Snape": {"_count": 1}, "Hermione": {"_count": 4}, "me": {"_count": 1}}, "telling": {"_count": 1, "him": {"_count": 1}}, "hadnt": {"_count": 3, "mentioned": {"_count": 1}, "discovered": {"_count": 1}, "spoken": {"_count": 1}}, "walked": {"_count": 8, "back": {"_count": 2}, "openmouthed": {"_count": 1}, "away": {"_count": 1}, "out": {"_count": 2}, "through": {"_count": 1}, "to": {"_count": 1}}, "reasonably": {"_count": 5, "": {"_count": 5}}, "would": {"_count": 14, "tell": {"_count": 1}, "put": {"_count": 1}, "panic": {"_count": 1}, "be": {"_count": 2}, "look": {"_count": 2}, "not": {"_count": 2}, "take": {"_count": 1}, "depart": {"_count": 1}, "make": {"_count": 1}, "consider": {"_count": 1}, "turn": {"_count": 1}}, "couldnt": {"_count": 5, "see": {"_count": 3}, "resist": {"_count": 1}, "get": {"_count": 1}}, "prodding": {"_count": 1, "Deans": {"_count": 1}}, "jumped": {"_count": 3, "to": {"_count": 2}, "off": {"_count": 1}}, "what": {"_count": 8, "had": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 2}, "if": {"_count": 1}, "he": {"_count": 1}, "can": {"_count": 1}, "are": {"_count": 1}}, "wheeling": {"_count": 2, "around": {"_count": 1}, "his": {"_count": 1}}, "casually": {"_count": 2, "getting": {"_count": 1}, "turfing": {"_count": 1}}, "suggested": {"_count": 4, "": {"_count": 3}, "on": {"_count": 1}}, "furiously": {"_count": 10, "": {"_count": 6}, "letting": {"_count": 1}, "sitting": {"_count": 1}, "striding": {"_count": 1}, "his": {"_count": 1}}, "through": {"_count": 5, "the": {"_count": 2}, "his": {"_count": 1}, "a": {"_count": 1}, "clenched": {"_count": 1}}, "loudly": {"_count": 10, "": {"_count": 4}, "as": {"_count": 2}, "looking": {"_count": 1}, "she": {"_count": 1}, "but": {"_count": 1}, "before": {"_count": 1}}, "squinting": {"_count": 2, "through": {"_count": 1}, "around": {"_count": 1}}, "exactly": {"_count": 2, "how": {"_count": 1}, "what": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "quickly": {"_count": 13, "as": {"_count": 1}, "": {"_count": 9}, "looking": {"_count": 1}, "before": {"_count": 2}}, "taking": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "moaned": {"_count": 8, "as": {"_count": 1}, "enviously": {"_count": 1}, "halfheartedly": {"_count": 1}, "": {"_count": 1}, "beside": {"_count": 1}, "massaging": {"_count": 1}, "and": {"_count": 2}}, "finally": {"_count": 6, "": {"_count": 2}, "cracked": {"_count": 1}, "losing": {"_count": 1}, "when": {"_count": 1}, "who": {"_count": 1}}, "thought": {"_count": 7, "that": {"_count": 3}, "was": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}}, "to": {"_count": 45, "read": {"_count": 1}, "unwrap": {"_count": 1}, "get": {"_count": 2}, "one": {"_count": 1}, "follow": {"_count": 1}, "a": {"_count": 1}, "help": {"_count": 2}, "hop": {"_count": 1}, "Harry": {"_count": 3}, "borrow": {"_count": 1}, "force": {"_count": 1}, "believe": {"_count": 1}, "talk": {"_count": 1}, "the": {"_count": 3}, "stop": {"_count": 2}, "throw": {"_count": 1}, "care": {"_count": 1}, "look": {"_count": 1}, "drop": {"_count": 1}, "his": {"_count": 1}, "Hermione": {"_count": 3}, "watch": {"_count": 1}, "be": {"_count": 2}, "think": {"_count": 1}, "declare": {"_count": 1}, "keep": {"_count": 1}, "Luna": {"_count": 1}, "gag": {"_count": 1}, "realize": {"_count": 1}, "tell": {"_count": 1}, "give": {"_count": 1}, "find": {"_count": 1}, "see": {"_count": 1}, "assume": {"_count": 1}, "general": {"_count": 1}}, "grinned": {"_count": 9, "at": {"_count": 5}, "guiltily": {"_count": 1}, "and": {"_count": 1}, "nervously": {"_count": 1}, "helping": {"_count": 1}}, "could": {"_count": 16, "answer": {"_count": 2}, "say": {"_count": 1}, "hear": {"_count": 1}, "get": {"_count": 1}, "do": {"_count": 1}, "not": {"_count": 5}, "both": {"_count": 1}, "pretend": {"_count": 2}, "speak": {"_count": 1}, "stick": {"_count": 1}}, "headed": {"_count": 4, "upstairs": {"_count": 1}, "for": {"_count": 1}, "toward": {"_count": 1}, "downstairs": {"_count": 1}}, "its": {"_count": 4, "doing": {"_count": 1}, "been": {"_count": 1}, "all": {"_count": 1}, "me": {"_count": 1}}, "sighed": {"_count": 7, "as": {"_count": 3}, "happily": {"_count": 1}, "exasperatedly": {"_count": 1}, "shaking": {"_count": 1}, "again": {"_count": 1}}, "however": {"_count": 12, "was": {"_count": 4}, "cleared": {"_count": 1}, "rounded": {"_count": 1}, "spoke": {"_count": 1}, "walked": {"_count": 1}, "gave": {"_count": 1}, "gasped": {"_count": 1}, "looked": {"_count": 1}, "had": {"_count": 1}}, "or": {"_count": 16, "Hermione": {"_count": 10}, "Ginny": {"_count": 1}, "Ill": {"_count": 1}, "Mumll": {"_count": 1}, "Professor": {"_count": 1}, "else": {"_count": 1}, "with": {"_count": 1}}, "at": {"_count": 22, "the": {"_count": 4}, "all": {"_count": 2}, "his": {"_count": 1}, "once": {"_count": 12}, "this": {"_count": 1}, "her": {"_count": 1}, "last": {"_count": 1}}, "snarled": {"_count": 4, "": {"_count": 3}, "at": {"_count": 1}}, "overheard": {"_count": 1, "Parvati": {"_count": 1}}, "bit": {"_count": 1, "his": {"_count": 1}}, "pulling": {"_count": 9, "Harry": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 2}, "out": {"_count": 1}, "Harrys": {"_count": 1}, "over": {"_count": 1}, "Wormtails": {"_count": 1}}, "held": {"_count": 6, "up": {"_count": 4}, "it": {"_count": 1}, "his": {"_count": 1}}, "pointed": {"_count": 4, "at": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}, "with": {"_count": 1}}, "nervously": {"_count": 8, "": {"_count": 6}, "suppressing": {"_count": 1}, "and": {"_count": 1}}, "pale": {"_count": 1, "as": {"_count": 1}}, "from": {"_count": 7, "the": {"_count": 2}, "smirking": {"_count": 1}, "Percys": {"_count": 1}, "an": {"_count": 1}, "somewhere": {"_count": 1}, "poisoning": {"_count": 1}}, "instead": {"_count": 3, "giving": {"_count": 1}, "": {"_count": 1}, "ExpelliarmusV": {"_count": 1}}, "pulled": {"_count": 12, "out": {"_count": 6}, "Harry": {"_count": 1}, "off": {"_count": 1}, "on": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "dropped": {"_count": 6, "his": {"_count": 3}, "onto": {"_count": 1}, "several": {"_count": 1}, "it": {"_count": 1}}, "knocked": {"_count": 3, "it": {"_count": 1}, "softly": {"_count": 1}, "but": {"_count": 1}}, "tried": {"_count": 6, "to": {"_count": 5}, "a": {"_count": 1}}, "grumbled": {"_count": 1, "": {"_count": 1}}, "admitted": {"_count": 4, "": {"_count": 3}, "that": {"_count": 1}}, "bitterly": {"_count": 8, "": {"_count": 4}, "at": {"_count": 1}, "as": {"_count": 1}, "stuffing": {"_count": 1}, "now": {"_count": 1}}, "reminded": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "grayfaced": {"_count": 1, "": {"_count": 1}}, "grabbed": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "Mrs": {"_count": 1}}, "turned": {"_count": 11, "the": {"_count": 1}, "to": {"_count": 4}, "speechless": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 2}, "his": {"_count": 1}, "suddenly": {"_count": 1}}, "dived": {"_count": 7, "at": {"_count": 1}, "Hermione": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 1}, "for": {"_count": 2}, "behind": {"_count": 1}}, "let": {"_count": 8, "go": {"_count": 2}, "out": {"_count": 3}, "his": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 1}}, "grinding": {"_count": 1, "his": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "tearing": {"_count": 1, "his": {"_count": 1}}, "strode": {"_count": 3, "off": {"_count": 1}, "across": {"_count": 1}, "away": {"_count": 1}}, "also": {"_count": 3, "started": {"_count": 1}, "had": {"_count": 1}, "staring": {"_count": 1}}, "knew": {"_count": 1, "them": {"_count": 1}}, "sleepily": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "turning": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "unwrapping": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 29, "look": {"_count": 2}, "slight": {"_count": 1}, "grin": {"_count": 1}, "dreamy": {"_count": 1}, "note": {"_count": 1}, "reproving": {"_count": 1}, "faraway": {"_count": 1}, "good": {"_count": 2}, "bulging": {"_count": 1}, "very": {"_count": 1}, "dont": {"_count": 1}, "prefect": {"_count": 2}, "scathing": {"_count": 1}, "significant": {"_count": 1}, "lone": {"_count": 1}, "short": {"_count": 1}, "furious": {"_count": 1}, "wide": {"_count": 1}, "prat": {"_count": 1}, "glass": {"_count": 3}, "little": {"_count": 2}, "nasty": {"_count": 1}, "few": {"_count": 1}}, "full": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "grunted": {"_count": 4, "in": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}}, "crossly": {"_count": 1, "": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "started": {"_count": 10, "moaning": {"_count": 1}, "to": {"_count": 5}, "shouting": {"_count": 1}, "unpacking": {"_count": 1}, "calling": {"_count": 1}, "angrily": {"_count": 1}}, "though": {"_count": 10, "was": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "stockier": {"_count": 1}, "Ron": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 1}}, "tore": {"_count": 2, "his": {"_count": 1}, "around": {"_count": 1}}, "threw": {"_count": 8, "the": {"_count": 3}, "it": {"_count": 1}, "himself": {"_count": 1}, "something": {"_count": 1}, "Owl": {"_count": 1}, "away": {"_count": 1}}, "wasnt": {"_count": 5, "going": {"_count": 1}, "back": {"_count": 1}, "talking": {"_count": 1}, "speaking": {"_count": 1}, "looking": {"_count": 1}}, "himself": {"_count": 2, "as": {"_count": 1}, "came": {"_count": 1}}, "when": {"_count": 12, "Harry": {"_count": 6}, "he": {"_count": 1}, "they": {"_count": 1}, "for": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "she": {"_count": 1}}, "barely": {"_count": 2, "had": {"_count": 1}, "containing": {"_count": 1}}, "grumpily": {"_count": 8, "": {"_count": 4}, "shoving": {"_count": 1}, "looking": {"_count": 1}, "and": {"_count": 1}, "punching": {"_count": 1}}, "read": {"_count": 4, "The": {"_count": 1}, "aloud": {"_count": 1}, "the": {"_count": 2}}, "slipped": {"_count": 1, "his": {"_count": 1}}, "snapped": {"_count": 10, "": {"_count": 2}, "at": {"_count": 2}, "as": {"_count": 1}, "Hermione": {"_count": 3}, "Ginny": {"_count": 1}, "back": {"_count": 1}}, "noticed": {"_count": 2, "too": {"_count": 1}, "nothing": {"_count": 1}}, "still": {"_count": 16, "not": {"_count": 1}, "trying": {"_count": 1}, "looking": {"_count": 1}, "chuckling": {"_count": 1}, "looked": {"_count": 2}, "goggling": {"_count": 1}, "glaring": {"_count": 2}, "seem": {"_count": 1}, "with": {"_count": 1}, "clutching": {"_count": 1}, "breathing": {"_count": 1}, "giggling": {"_count": 1}, "seemed": {"_count": 1}, "refusing": {"_count": 1}}, "rolling": {"_count": 5, "around": {"_count": 2}, "his": {"_count": 3}}, "cheering": {"_count": 1, "through": {"_count": 1}}, "thumping": {"_count": 3, "Harry": {"_count": 2}, "the": {"_count": 1}}, "spent": {"_count": 5, "most": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}, "much": {"_count": 1}, "evening": {"_count": 1}}, "burst": {"_count": 3, "out": {"_count": 2}, "through": {"_count": 1}}, "say": {"_count": 1, "Hagrid": {"_count": 1}}, "impressively": {"_count": 1, "": {"_count": 1}}, "whod": {"_count": 1, "had": {"_count": 1}}, "beamed": {"_count": 2, "at": {"_count": 2}}, "crouching": {"_count": 1, "over": {"_count": 1}}, "too": {"_count": 5, "": {"_count": 2}, "well": {"_count": 1}, "much": {"_count": 1}, "lowered": {"_count": 1}}, "wanted": {"_count": 3, "to": {"_count": 3}}, "remember": {"_count": 1, "": {"_count": 1}}, "appeared": {"_count": 3, "out": {"_count": 1}, "at": {"_count": 1}, "panting": {"_count": 1}}, "How": {"_count": 2, "are": {"_count": 1}, "about": {"_count": 1}}, "down": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "needed": {"_count": 1, "sleep": {"_count": 1}}, "on": {"_count": 14, "Astronomy": {"_count": 1}, "the": {"_count": 11}, "infuriating": {"_count": 1}, "Friday": {"_count": 1}}, "looking": {"_count": 80, "up": {"_count": 4}, "shaken": {"_count": 1}, "quite": {"_count": 2}, "at": {"_count": 6}, "from": {"_count": 1}, "sadly": {"_count": 1}, "perplexed": {"_count": 2}, "incredibly": {"_count": 1}, "anxiously": {"_count": 1}, "worried": {"_count": 1}, "very": {"_count": 2}, "over": {"_count": 2}, "uneasily": {"_count": 1}, "utterly": {"_count": 1}, "slightly": {"_count": 5}, "thoroughly": {"_count": 2}, "down": {"_count": 3}, "curiously": {"_count": 1}, "horrorstruck": {"_count": 1}, "excited": {"_count": 1}, "impressed": {"_count": 3}, "sideways": {"_count": 1}, "around": {"_count": 3}, "extremely": {"_count": 1}, "meaningfully": {"_count": 1}, "skeptical": {"_count": 1}, "stunned": {"_count": 3}, "highly": {"_count": 1}, "as": {"_count": 1}, "alarmed": {"_count": 3}, "aghast": {"_count": 1}, "horrified": {"_count": 1}, "thunderstruck": {"_count": 1}, "awestruck": {"_count": 2}, "disappointed": {"_count": 2}, "startled": {"_count": 1}, "amazed": {"_count": 1}, "unnerved": {"_count": 1}, "bewildered": {"_count": 1}, "puzzled": {"_count": 1}, "thrilled": {"_count": 1}, "frightened": {"_count": 1}, "apprehensive": {"_count": 1}, "anxious": {"_count": 1}, "sheepish": {"_count": 1}, "rather": {"_count": 1}, "crestfallen": {"_count": 1}, "in": {"_count": 1}, "amused": {"_count": 1}, "shocked": {"_count": 1}, "baffled": {"_count": 1}}, "hissed": {"_count": 12, "": {"_count": 4}, "as": {"_count": 1}, "Hermione": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 2}, "clamping": {"_count": 1}, "through": {"_count": 1}, "hurrying": {"_count": 1}}, "wheeled": {"_count": 1, "round": {"_count": 1}}, "went": {"_count": 21, "back": {"_count": 2}, "speeding": {"_count": 1}, "purple": {"_count": 2}, "down": {"_count": 2}, "as": {"_count": 2}, "to": {"_count": 4}, "brick": {"_count": 1}, "next": {"_count": 1}, "on": {"_count": 2}, "up": {"_count": 2}, "slowly": {"_count": 1}, "into": {"_count": 1}}, "exploded": {"_count": 1, "get": {"_count": 1}}, "peering": {"_count": 4, "over": {"_count": 2}, "across": {"_count": 1}, "down": {"_count": 1}}, "gritted": {"_count": 1, "his": {"_count": 1}}, "followed": {"_count": 12, "right": {"_count": 1}, "Snape": {"_count": 1}, "him": {"_count": 2}, "Professor": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 3}, "Parvati": {"_count": 1}, "Harry": {"_count": 1}, "then": {"_count": 1}}, "their": {"_count": 1, "legs": {"_count": 1}}, "leaning": {"_count": 8, "back": {"_count": 2}, "against": {"_count": 1}, "forward": {"_count": 2}, "sideways": {"_count": 1}, "in": {"_count": 2}}, "bellowed": {"_count": 7, "": {"_count": 1}, "back": {"_count": 1}, "as": {"_count": 1}, "even": {"_count": 1}, "furiously": {"_count": 1}, "leaping": {"_count": 1}, "and": {"_count": 1}}, "examined": {"_count": 3, "the": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 1}}, "you": {"_count": 18, "come": {"_count": 2}, "next": {"_count": 2}, "must": {"_count": 1}, "were": {"_count": 1}, "said": {"_count": 1}, "wont": {"_count": 1}, "dont": {"_count": 1}, "didnt": {"_count": 1}, "do": {"_count": 1}, "think": {"_count": 1}, "go": {"_count": 1}, "thought": {"_count": 1}, "met": {"_count": 1}, "know": {"_count": 2}, "can": {"_count": 1}}, "think": {"_count": 2, "": {"_count": 1}, "about": {"_count": 1}}, "only": {"_count": 1, "just": {"_count": 1}}, "softly": {"_count": 2, "its": {"_count": 1}, "and": {"_count": 1}}, "Look": {"_count": 1, "if": {"_count": 1}}, "called": {"_count": 8, "his": {"_count": 1}, "through": {"_count": 1}, "Professor": {"_count": 1}, "after": {"_count": 1}, "loudly": {"_count": 1}, "Angelina": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}}, "hard": {"_count": 3, "across": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "round": {"_count": 1, "that": {"_count": 1}}, "proudly": {"_count": 1, "": {"_count": 1}}, "passed": {"_count": 5, "with": {"_count": 1}, "Professors": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}}, "both": {"_count": 20, "of": {"_count": 3}, "flinched": {"_count": 1}, "made": {"_count": 1}, "jumped": {"_count": 2}, "whipped": {"_count": 1}, "gave": {"_count": 1}, "looked": {"_count": 2}, "froze": {"_count": 1}, "frowned": {"_count": 1}, "tapped": {"_count": 1}, "sighed": {"_count": 1}, "standing": {"_count": 1}, "snapped": {"_count": 1}, "leapt": {"_count": 1}, "released": {"_count": 1}, "stiffened": {"_count": 1}}, "grinning": {"_count": 12, "at": {"_count": 2}, "broadly": {"_count": 1}, "": {"_count": 5}, "so": {"_count": 1}, "slyly": {"_count": 1}, "over": {"_count": 1}, "closing": {"_count": 1}}, "He": {"_count": 1, "stopped": {"_count": 1}}, "breathed": {"_count": 3, "Harry": {"_count": 1}, "": {"_count": 1}, "flinging": {"_count": 1}}, "how": {"_count": 4, "did": {"_count": 1}, "else": {"_count": 1}, "can": {"_count": 1}, "wonderful": {"_count": 1}}, "jerking": {"_count": 1, "his": {"_count": 1}}, "hoisted": {"_count": 1, "them": {"_count": 1}}, "Fred": {"_count": 10, "reversed": {"_count": 1}, "and": {"_count": 7}, "George": {"_count": 2}}, "impatiently": {"_count": 8, "": {"_count": 7}, "and": {"_count": 1}}, "together": {"_count": 13, "instantly": {"_count": 1}, "": {"_count": 9}, "staring": {"_count": 1}, "but": {"_count": 1}, "both": {"_count": 1}}, "by": {"_count": 6, "Friday": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 2}, "her": {"_count": 1}}, "bent": {"_count": 3, "double": {"_count": 1}, "down": {"_count": 2}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "added": {"_count": 9, "It": {"_count": 1}, "hastily": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "George": {"_count": 1}, "after": {"_count": 1}, "craning": {"_count": 1}, "Lovegoods": {"_count": 1}, "maybe": {"_count": 1}}, "pointing": {"_count": 10, "at": {"_count": 4}, "along": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "around": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "identical": {"_count": 1, "envelopes": {"_count": 1}}, "laid": {"_count": 1, "him": {"_count": 1}}, "because": {"_count": 4, "that": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "advised": {"_count": 4, "": {"_count": 2}, "him": {"_count": 1}, "Harry": {"_count": 1}}, "enviously": {"_count": 1, "": {"_count": 1}}, "gazed": {"_count": 3, "longingly": {"_count": 1}, "uncertainly": {"_count": 1}, "down": {"_count": 1}}, "moving": {"_count": 2, "back": {"_count": 1}, "toward": {"_count": 1}}, "rubbing": {"_count": 2, "his": {"_count": 1}, "slightly": {"_count": 1}}, "grabbing": {"_count": 2, "Ginnys": {"_count": 1}, "him": {"_count": 1}}, "ran": {"_count": 2, "to": {"_count": 2}}, "pressed": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 2}}, "his": {"_count": 20, "eyes": {"_count": 5}, "eyebrows": {"_count": 2}, "mouth": {"_count": 1}, "yellow": {"_count": 1}, "high": {"_count": 1}, "teeth": {"_count": 1}, "lip": {"_count": 1}, "expression": {"_count": 1}, "face": {"_count": 1}, "brow": {"_count": 1}, "smile": {"_count": 1}, "ears": {"_count": 1}, "tone": {"_count": 1}, "voice": {"_count": 2}}, "unlocked": {"_count": 1, "the": {"_count": 1}}, "starting": {"_count": 3, "the": {"_count": 1}, "to": {"_count": 2}}, "reappeared": {"_count": 3, "": {"_count": 2}, "with": {"_count": 1}}, "jabbing": {"_count": 2, "at": {"_count": 1}, "himself": {"_count": 1}}, "yelled": {"_count": 22, "and": {"_count": 1}, "swinging": {"_count": 1}, "after": {"_count": 2}, "as": {"_count": 3}, "into": {"_count": 1}, "yanking": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 1}, "trying": {"_count": 1}, "the": {"_count": 1}, "happily": {"_count": 1}, "thumping": {"_count": 1}, "excitedly": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "grabbing": {"_count": 1}}, "checking": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "how": {"_count": 1}}, "hours": {"_count": 1, "later": {"_count": 1}}, "put": {"_count": 5, "his": {"_count": 3}, "Crabbes": {"_count": 1}, "an": {"_count": 1}}, "more": {"_count": 2, "to": {"_count": 1}, "nervously": {"_count": 1}}, "into": {"_count": 6, "the": {"_count": 2}, "a": {"_count": 2}, "living": {"_count": 1}, "his": {"_count": 1}}, "shouted": {"_count": 12, "throwing": {"_count": 1}, "his": {"_count": 1}, "racing": {"_count": 1}, "angrily": {"_count": 1}, "over": {"_count": 2}, "her": {"_count": 1}, "after": {"_count": 1}, "and": {"_count": 1}, "excitedly": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}}, "miserably": {"_count": 2, "bending": {"_count": 1}, "": {"_count": 1}}, "dropping": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "peered": {"_count": 2, "in": {"_count": 1}, "into": {"_count": 1}}, "Hermione": {"_count": 67, "and": {"_count": 34}, "Fred": {"_count": 10}, "began": {"_count": 2}, "moaned": {"_count": 1}, "Hagrid": {"_count": 1}, "or": {"_count": 3}, "Bill": {"_count": 1}, "Mrs": {"_count": 1}, "Ginny": {"_count": 4}, "said": {"_count": 3}, "Neville": {"_count": 1}, "": {"_count": 2}, "Luna": {"_count": 1}, "hurried": {"_count": 1}, "you": {"_count": 1}, "Dean": {"_count": 1}}, "hopefully": {"_count": 7, "": {"_count": 4}, "leading": {"_count": 1}, "can": {"_count": 1}, "as": {"_count": 1}}, "enthusiastically": {"_count": 6, "": {"_count": 3}, "prodding": {"_count": 1}, "as": {"_count": 1}, "waving": {"_count": 1}}, "gulped": {"_count": 2, "": {"_count": 2}}, "launched": {"_count": 2, "into": {"_count": 1}, "themselves": {"_count": 1}}, "hastily": {"_count": 8, "wiping": {"_count": 1}, "turned": {"_count": 1}, "": {"_count": 4}, "fed": {"_count": 1}, "looking": {"_count": 1}}, "thickly": {"_count": 4, "through": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "holding": {"_count": 1}}, "sagely": {"_count": 2, "": {"_count": 2}}, "inside": {"_count": 2, "leaving": {"_count": 1}, "": {"_count": 1}}, "got": {"_count": 10, "the": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 2}, "to": {"_count": 2}, "into": {"_count": 1}, "poisoned": {"_count": 1}, "back": {"_count": 1}, "in": {"_count": 1}}, "sat": {"_count": 12, "down": {"_count": 4}, "stunned": {"_count": 1}, "up": {"_count": 2}, "watching": {"_count": 1}, "next": {"_count": 1}, "on": {"_count": 2}, "slumped": {"_count": 1}}, "faintly": {"_count": 3, "": {"_count": 3}}, "stretched": {"_count": 1, "out": {"_count": 1}}, "sank": {"_count": 2, "so": {"_count": 1}, "onto": {"_count": 1}}, "accidentally": {"_count": 3, "squashed": {"_count": 1}, "spraying": {"_count": 1}, "nudged": {"_count": 1}}, "stuffing": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "seizing": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "angrily": {"_count": 17, "": {"_count": 10}, "missing": {"_count": 1}, "as": {"_count": 2}, "looking": {"_count": 1}, "and": {"_count": 1}, "setting": {"_count": 1}, "sucking": {"_count": 1}}, "whipped": {"_count": 2, "out": {"_count": 1}, "around": {"_count": 1}}, "explaining": {"_count": 1, "where": {"_count": 1}}, "incredulously": {"_count": 10, "": {"_count": 10}}, "gaped": {"_count": 4, "openmouthed": {"_count": 1}, "at": {"_count": 3}}, "plunged": {"_count": 1, "his": {"_count": 1}}, "opened": {"_count": 9, "his": {"_count": 8}, "the": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 5}}, "over": {"_count": 7, "the": {"_count": 5}, "her": {"_count": 1}, "all": {"_count": 1}}, "bend": {"_count": 1, "over": {"_count": 1}}, "coughed": {"_count": 1, "squelchily": {"_count": 1}}, "hoarsely": {"_count": 4, "emerging": {"_count": 1}, "grabbing": {"_count": 1}, "jumping": {"_count": 1}, "": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}, "wiping": {"_count": 4, "his": {"_count": 2}, "sweat": {"_count": 1}, "a": {"_count": 1}}, "weakly": {"_count": 7, "": {"_count": 4}, "wiping": {"_count": 1}, "and": {"_count": 2}}, "snorted": {"_count": 6, "with": {"_count": 1}, "": {"_count": 2}, "disbelievingly": {"_count": 1}, "loudly": {"_count": 1}, "as": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 1}, "as": {"_count": 1}}, "hiccoughing": {"_count": 1, "occasionally": {"_count": 1}}, "slouched": {"_count": 1, "into": {"_count": 1}}, "felt": {"_count": 3, "theyd": {"_count": 1}, "how": {"_count": 1}, "Pursuing": {"_count": 1}}, "heavily": {"_count": 1, "": {"_count": 1}}, "arrived": {"_count": 2, "nursing": {"_count": 1}, "at": {"_count": 1}}, "painfully": {"_count": 1, "in": {"_count": 1}}, "without": {"_count": 1, "hesitation": {"_count": 1}}, "slowly": {"_count": 16, "": {"_count": 10}, "and": {"_count": 1}, "I": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}, "savoring": {"_count": 1}, "lets": {"_count": 1}}, "stifled": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 5, "was": {"_count": 1}, "said": {"_count": 1}, "sighed": {"_count": 1}, "flung": {"_count": 1}, "turned": {"_count": 1}}, "assured": {"_count": 2, "her": {"_count": 1}, "Harry": {"_count": 1}}, "get": {"_count": 4, "much": {"_count": 1}, "yourself": {"_count": 1}, "up": {"_count": 1}, "out": {"_count": 1}}, "about": {"_count": 4, "Justin": {"_count": 1}, "Hagrid": {"_count": 1}, "all": {"_count": 1}, "how": {"_count": 1}}, "scribbling": {"_count": 2, "away": {"_count": 1}, "it": {"_count": 1}}, "desperately": {"_count": 1, "checking": {"_count": 1}}, "tensely": {"_count": 3, "": {"_count": 3}}, "fiercely": {"_count": 4, "": {"_count": 3}, "gripping": {"_count": 1}}, "recovering": {"_count": 1, "himself": {"_count": 1}}, "gruffly": {"_count": 2, "": {"_count": 2}}, "there": {"_count": 1, "wont": {"_count": 1}}, "helpfully": {"_count": 1, "": {"_count": 1}}, "shrugged": {"_count": 2, "": {"_count": 2}}, "hotly": {"_count": 5, "stopping": {"_count": 1}, "": {"_count": 4}}, "whose": {"_count": 16, "ears": {"_count": 3}, "eyes": {"_count": 3}, "jaw": {"_count": 1}, "teeth": {"_count": 1}, "hair": {"_count": 2}, "mouth": {"_count": 2}, "face": {"_count": 2}, "hands": {"_count": 1}, "attitude": {"_count": 1}}, "slammed": {"_count": 1, "The": {"_count": 1}}, "irritably": {"_count": 8, "": {"_count": 5}, "turning": {"_count": 1}, "while": {"_count": 1}, "and": {"_count": 1}}, "laughed": {"_count": 9, "": {"_count": 4}, "in": {"_count": 1}, "but": {"_count": 2}, "Hermione": {"_count": 1}, "loudly": {"_count": 1}}, "frowning": {"_count": 11, "": {"_count": 5}, "at": {"_count": 4}, "as": {"_count": 2}}, "right": {"_count": 2, "behind": {"_count": 1}, "down": {"_count": 1}}, "wrenching": {"_count": 2, "it": {"_count": 1}, "Harry": {"_count": 1}}, "sharply": {"_count": 11, "": {"_count": 7}, "pointing": {"_count": 1}, "to": {"_count": 2}, "if": {"_count": 1}}, "helped": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "explained": {"_count": 5, "as": {"_count": 2}, "quietly": {"_count": 1}, "how": {"_count": 1}, "": {"_count": 1}}, "listened": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "pouring": {"_count": 1, "dead": {"_count": 1}}, "reassuringly": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "first": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "steered": {"_count": 1, "him": {"_count": 1}}, "nor": {"_count": 15, "Hermione": {"_count": 11}, "did": {"_count": 1}, "thankfully": {"_count": 1}, "Harry": {"_count": 1}, "giving": {"_count": 1}}, "pushed": {"_count": 3, "Harry": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "repeated": {"_count": 5, "faintly": {"_count": 1}, "looking": {"_count": 2}, "pounding": {"_count": 1}, "his": {"_count": 1}}, "shook": {"_count": 12, "his": {"_count": 10}, "their": {"_count": 2}}, "knowingly": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 16, "only": {"_count": 1}, "rat": {"_count": 1}, "Firebolt": {"_count": 1}, "moment": {"_count": 3}, "same": {"_count": 1}, "Sortings": {"_count": 1}, "tallest": {"_count": 1}, "truth": {"_count": 1}, "smile": {"_count": 1}, "breakfast": {"_count": 1}, "look": {"_count": 1}, "whole": {"_count": 1}, "stone": {"_count": 1}, "Deluminator": {"_count": 1}}, "shielding": {"_count": 1, "his": {"_count": 1}}, "hid": {"_count": 1, "quickly": {"_count": 1}}, "eyeing": {"_count": 3, "it": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "unlocking": {"_count": 1, "the": {"_count": 1}}, "approaching": {"_count": 1, "the": {"_count": 1}}, "bewildered": {"_count": 1, "": {"_count": 1}}, "nodding": {"_count": 7, "at": {"_count": 2}, "through": {"_count": 1}, "toward": {"_count": 3}, "": {"_count": 1}}, "hurrying": {"_count": 3, "up": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}}, "hurried": {"_count": 7, "down": {"_count": 1}, "after": {"_count": 1}, "over": {"_count": 1}, "to": {"_count": 2}, "forward": {"_count": 2}}, "excitedly": {"_count": 9, "": {"_count": 3}, "as": {"_count": 1}, "pointing": {"_count": 1}, "but": {"_count": 2}, "attempting": {"_count": 1}, "joining": {"_count": 1}}, "corrected": {"_count": 2, "him": {"_count": 2}}, "motioning": {"_count": 1, "them": {"_count": 1}}, "forced": {"_count": 1, "themselves": {"_count": 1}}, "waited": {"_count": 5, "with": {"_count": 1}, "for": {"_count": 2}, "until": {"_count": 2}}, "punched": {"_count": 2, "Malfoy": {"_count": 1}, "him": {"_count": 1}}, "blushed": {"_count": 1, "": {"_count": 1}}, "panted": {"_count": 3, "closing": {"_count": 1}, "as": {"_count": 1}, "emerging": {"_count": 1}}, "hammered": {"_count": 1, "on": {"_count": 1}}, "uncertainly": {"_count": 6, "": {"_count": 2}, "looking": {"_count": 1}, "you": {"_count": 1}, "staring": {"_count": 1}, "I": {"_count": 1}}, "backed": {"_count": 2, "into": {"_count": 1}, "away": {"_count": 1}}, "tipping": {"_count": 1, "a": {"_count": 1}}, "Ive": {"_count": 4, "got": {"_count": 2}, "sent": {"_count": 1}, "sworn": {"_count": 1}}, "for": {"_count": 16, "about": {"_count": 1}, "trying": {"_count": 1}, "anything": {"_count": 2}, "the": {"_count": 3}, "me": {"_count": 1}, "saying": {"_count": 1}, "a": {"_count": 2}, "wizards": {"_count": 1}, "his": {"_count": 1}, "retreating": {"_count": 1}, "support": {"_count": 1}, "heavens": {"_count": 1}}, "resentfully": {"_count": 1, "": {"_count": 1}}, "curiously": {"_count": 3, "": {"_count": 3}}, "wake": {"_count": 1, "up": {"_count": 1}}, "with": {"_count": 24, "just": {"_count": 1}, "an": {"_count": 4}, "the": {"_count": 2}, "his": {"_count": 5}, "a": {"_count": 9}, "awed": {"_count": 1}, "professional": {"_count": 1}, "her": {"_count": 1}}, "wrinkling": {"_count": 1, "his": {"_count": 1}}, "came": {"_count": 16, "in": {"_count": 2}, "whizzing": {"_count": 1}, "back": {"_count": 1}, "leaping": {"_count": 1}, "bursting": {"_count": 1}, "to": {"_count": 3}, "Freds": {"_count": 1}, "running": {"_count": 1}, "clambering": {"_count": 1}, "into": {"_count": 1}, "at": {"_count": 1}, "spinning": {"_count": 1}, "slouching": {"_count": 1}}, "gloomily": {"_count": 6, "": {"_count": 3}, "pulling": {"_count": 1}, "as": {"_count": 1}, "watching": {"_count": 1}}, "feeling": {"_count": 2, "that": {"_count": 2}}, "Dean": {"_count": 4, "and": {"_count": 3}, "had": {"_count": 1}}, "shaking": {"_count": 7, "his": {"_count": 5}, "back": {"_count": 1}, "": {"_count": 1}}, "shrugging": {"_count": 3, "": {"_count": 2}, "its": {"_count": 1}}, "detach": {"_count": 1, "himself": {"_count": 1}}, "entered": {"_count": 2, "": {"_count": 1}, "their": {"_count": 1}}, "quietly": {"_count": 14, "in": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 8}, "cmon": {"_count": 1}, "throwing": {"_count": 1}, "looking": {"_count": 1}}, "stubbed": {"_count": 1, "his": {"_count": 1}}, "swore": {"_count": 1, "": {"_count": 1}}, "growled": {"_count": 1, "as": {"_count": 1}}, "trying": {"_count": 1, "and": {"_count": 1}}, "lagged": {"_count": 1, "behind": {"_count": 1}}, "even": {"_count": 4, "more": {"_count": 1}, "angrier": {"_count": 1}, "went": {"_count": 1}, "if": {"_count": 1}}, "Lets": {"_count": 1, "do": {"_count": 1}}, "kept": {"_count": 9, "losing": {"_count": 1}, "watch": {"_count": 1}, "muttering": {"_count": 1}, "breaking": {"_count": 1}, "moving": {"_count": 1}, "throwing": {"_count": 1}, "shooting": {"_count": 1}, "forgetting": {"_count": 1}, "swearing": {"_count": 1}}, "abruptly": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "jump": {"_count": 3, "out": {"_count": 1}, "Crookshanks": {"_count": 1}, "": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "delightedly": {"_count": 2, "walking": {"_count": 1}, "gazing": {"_count": 1}}, "seized": {"_count": 6, "the": {"_count": 1}, "his": {"_count": 2}, "Scabbers": {"_count": 1}, "him": {"_count": 1}, "Wormtails": {"_count": 1}}, "seemed": {"_count": 14, "to": {"_count": 12}, "very": {"_count": 1}, "determined": {"_count": 1}}, "being": {"_count": 3, "violently": {"_count": 1}, "swept": {"_count": 1}, "poisoned": {"_count": 1}}, "fell": {"_count": 7, "onto": {"_count": 1}, "suddenly": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 1}, "sprawling": {"_count": 1}, "in": {"_count": 1}, "asleep": {"_count": 1}}, "woke": {"_count": 2, "with": {"_count": 1}, "up": {"_count": 1}}, "that": {"_count": 9, "girl": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 1}, "nothing": {"_count": 1}, "you": {"_count": 2}, "I": {"_count": 1}, "she": {"_count": 1}, "should": {"_count": 1}}, "rubbed": {"_count": 3, "his": {"_count": 3}}, "helping": {"_count": 3, "himself": {"_count": 3}}, "watching": {"_count": 6, "her": {"_count": 2}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "Neville": {"_count": 1}, "it": {"_count": 1}}, "drop": {"_count": 1, "his": {"_count": 1}}, "catching": {"_count": 1, "on": {"_count": 1}}, "sneered": {"_count": 1, "after": {"_count": 1}}, "stammered": {"_count": 1, "": {"_count": 1}}, "fervently": {"_count": 3, "was": {"_count": 1}, "": {"_count": 2}}, "leaned": {"_count": 6, "close": {"_count": 1}, "closer": {"_count": 1}, "in": {"_count": 2}, "over": {"_count": 2}}, "paced": {"_count": 1, "around": {"_count": 1}}, "aghast": {"_count": 1, "": {"_count": 1}}, "slide": {"_count": 1, "silently": {"_count": 1}}, "speaking": {"_count": 2, "for": {"_count": 1}, "across": {"_count": 1}}, "jerkily": {"_count": 2, "": {"_count": 1}, "without": {"_count": 1}}, "caught": {"_count": 7, "it": {"_count": 1}, "up": {"_count": 4}, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "gasp": {"_count": 1, "and": {"_count": 1}}, "thudding": {"_count": 1, "slightly": {"_count": 1}}, "stepped": {"_count": 2, "on": {"_count": 1}, "after": {"_count": 1}}, "knocking": {"_count": 1, "him": {"_count": 1}}, "straining": {"_count": 1, "to": {"_count": 1}}, "give": {"_count": 2, "a": {"_count": 1}, "me": {"_count": 1}}, "thrust": {"_count": 1, "an": {"_count": 1}}, "gaping": {"_count": 1, "at": {"_count": 1}}, "yet": {"_count": 3, "whod": {"_count": 1}, "another": {"_count": 1}, "Harry": {"_count": 1}}, "raising": {"_count": 3, "his": {"_count": 2}, "himself": {"_count": 1}}, "Ginny": {"_count": 8, "and": {"_count": 4}, "Luna": {"_count": 1}, "Neville": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}}, "brightly": {"_count": 4, "": {"_count": 1}, "to": {"_count": 1}, "getting": {"_count": 1}, "and": {"_count": 1}}, "cast": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "obviously": {"_count": 3, "realized": {"_count": 1}, "casting": {"_count": 1}, "felt": {"_count": 1}}, "tall": {"_count": 1, "and": {"_count": 1}}, "PS": {"_count": 1, "": {"_count": 1}}, "beneath": {"_count": 1, "it": {"_count": 1}}, "wrote": {"_count": 1, "to": {"_count": 1}}, "says": {"_count": 2, "hes": {"_count": 1}, "Percys": {"_count": 1}}, "doesnt": {"_count": 2, "seem": {"_count": 1}, "mean": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "simply": {"_count": 7, "": {"_count": 3}, "sat": {"_count": 1}, "looked": {"_count": 1}, "turned": {"_count": 1}, "bounded": {"_count": 1}}, "roared": {"_count": 6, "with": {"_count": 1}, "back": {"_count": 1}, "pounding": {"_count": 1}, "seizing": {"_count": 1}, "and": {"_count": 1}, "trying": {"_count": 1}}, "sniggered": {"_count": 4, "": {"_count": 3}, "breaking": {"_count": 1}}, "innocently": {"_count": 1, "": {"_count": 1}}, "approached": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}}, "lifted": {"_count": 1, "Scabbers": {"_count": 1}}, "owned": {"_count": 1, "Scabbers": {"_count": 1}}, "defensively": {"_count": 1, "": {"_count": 1}}, "buckled": {"_count": 1, "as": {"_count": 1}}, "stuffed": {"_count": 3, "the": {"_count": 2}, "Scabbers": {"_count": 1}}, "sarcastically": {"_count": 5, "as": {"_count": 1}, "": {"_count": 4}}, "hasnt": {"_count": 1, "put": {"_count": 1}}, "scowled": {"_count": 5, "at": {"_count": 3}, "": {"_count": 1}, "as": {"_count": 1}}, "throwing": {"_count": 5, "things": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}}, "are": {"_count": 2, "like": {"_count": 1}, "you": {"_count": 1}}, "banged": {"_count": 1, "his": {"_count": 1}}, "grimaced": {"_count": 3, "his": {"_count": 1}, "at": {"_count": 1}, "weakly": {"_count": 1}}, "led": {"_count": 5, "the": {"_count": 5}}, "doubtfully": {"_count": 3, "": {"_count": 2}, "also": {"_count": 1}}, "shakily": {"_count": 3, "": {"_count": 1}, "looking": {"_count": 1}, "turning": {"_count": 1}}, "uncomfortably": {"_count": 1, "": {"_count": 1}}, "standing": {"_count": 5, "up": {"_count": 3}, "hopefully": {"_count": 1}, "there": {"_count": 1}}, "sitting": {"_count": 5, "back": {"_count": 1}, "down": {"_count": 3}, "ashenfaced": {"_count": 1}}, "spiritedly": {"_count": 1, "to": {"_count": 1}}, "dont": {"_count": 4, "talk": {"_count": 1}, "": {"_count": 1}, "hurt": {"_count": 1}, "hit": {"_count": 1}}, "back": {"_count": 6, "": {"_count": 1}, "to": {"_count": 3}, "as": {"_count": 1}, "on": {"_count": 1}}, "massaging": {"_count": 1, "his": {"_count": 1}}, "made": {"_count": 11, "a": {"_count": 9}, "to": {"_count": 1}, "them": {"_count": 1}}, "getting": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "Come": {"_count": 1, "in": {"_count": 1}}, "shifting": {"_count": 1, "his": {"_count": 1}}, "glanced": {"_count": 9, "at": {"_count": 5}, "grinning": {"_count": 1}, "nervously": {"_count": 1}, "back": {"_count": 1}, "toward": {"_count": 1}}, "laughing": {"_count": 2, "see": {"_count": 1}, "uproariously": {"_count": 1}}, "whats": {"_count": 1, "it": {"_count": 1}}, "checked": {"_count": 1, "his": {"_count": 1}}, "nudged": {"_count": 2, "Harry": {"_count": 2}}, "sweeping": {"_count": 2, "over": {"_count": 1}, "the": {"_count": 1}}, "sheepishly": {"_count": 1, "": {"_count": 1}}, "cheer": {"_count": 1, "up": {"_count": 1}}, "spooned": {"_count": 1, "stew": {"_count": 1}}, "mouthed": {"_count": 4, "wordlessly": {"_count": 1}, "": {"_count": 1}, "soundlessly": {"_count": 1}, "the": {"_count": 1}}, "frowned": {"_count": 2, "after": {"_count": 1}, "slightly": {"_count": 1}}, "an": {"_count": 3, "unpleasant": {"_count": 1}, "expression": {"_count": 1}, "Hermione": {"_count": 1}}, "shoved": {"_count": 1, "his": {"_count": 1}}, "began": {"_count": 6, "trying": {"_count": 1}, "to": {"_count": 1}, "but": {"_count": 3}, "": {"_count": 1}}, "roughly": {"_count": 3, "": {"_count": 2}, "forward": {"_count": 1}}, "packed": {"_count": 1, "away": {"_count": 1}}, "savagely": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "limping": {"_count": 1}}, "clicking": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "sniggering": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 5, "yet": {"_count": 1}, "a": {"_count": 2}, "staring": {"_count": 1}, "many": {"_count": 1}}, "labeling": {"_count": 1, "his": {"_count": 1}}, "flicking": {"_count": 1, "the": {"_count": 1}}, "whirled": {"_count": 1, "the": {"_count": 1}}, "ignoring": {"_count": 1, "the": {"_count": 1}}, "marched": {"_count": 2, "through": {"_count": 1}, "downstairs": {"_count": 1}}, "stubbornly": {"_count": 4, "": {"_count": 4}}, "egged": {"_count": 1, "him": {"_count": 1}}, "halfheartedly": {"_count": 1, "suggested": {"_count": 1}}, "is": {"_count": 2, "making": {"_count": 1}, "a": {"_count": 1}}, "shoving": {"_count": 2, "ajar": {"_count": 1}, "the": {"_count": 1}}, "nearly": {"_count": 1, "dropped": {"_count": 1}}, "outraged": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "goggling": {"_count": 4, "at": {"_count": 4}}, "leave": {"_count": 1, "again": {"_count": 1}}, "Yeah": {"_count": 2, "lets": {"_count": 1}, "it": {"_count": 1}}, "clapping": {"_count": 4, "Hagrid": {"_count": 1}, "him": {"_count": 2}, "a": {"_count": 1}}, "crossing": {"_count": 1, "his": {"_count": 1}}, "ripped": {"_count": 2, "apart": {"_count": 1}, "off": {"_count": 1}}, "now": {"_count": 8, "walking": {"_count": 1}, "rolled": {"_count": 1}, "starting": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}, "munching": {"_count": 1}, "trying": {"_count": 1}, "scrambling": {"_count": 1}}, "controlling": {"_count": 1, "himself": {"_count": 1}}, "hurriedly": {"_count": 1, "snatching": {"_count": 1}}, "happily": {"_count": 7, "": {"_count": 5}, "now": {"_count": 1}, "joining": {"_count": 1}}, "defiantly": {"_count": 2, "": {"_count": 2}}, "supposed": {"_count": 1, "she": {"_count": 1}}, "staring": {"_count": 11, "resentfully": {"_count": 1}, "openmouthed": {"_count": 1}, "at": {"_count": 8}, "horrorstruck": {"_count": 1}}, "dashing": {"_count": 1, "toward": {"_count": 1}}, "Good": {"_count": 1, "even": {"_count": 1}}, "look": {"_count": 3, "for": {"_count": 1}, "at": {"_count": 2}}, "I": {"_count": 7, "knew": {"_count": 1}, "cant": {"_count": 1}, "shouldntve": {"_count": 1}, "havent": {"_count": 1}, "have": {"_count": 1}, "want": {"_count": 1}, "warn": {"_count": 1}}, "left": {"_count": 10, "the": {"_count": 5}, "Gryffindor": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}}, "wants": {"_count": 1, "a": {"_count": 1}}, "off": {"_count": 3, "for": {"_count": 1}, "before": {"_count": 1}, "his": {"_count": 1}}, "gleefully": {"_count": 2, "looking": {"_count": 1}, "": {"_count": 1}}, "chose": {"_count": 3, "that": {"_count": 1}, "to": {"_count": 1}, "this": {"_count": 1}}, "flatly": {"_count": 3, "": {"_count": 2}, "watching": {"_count": 1}}, "climbed": {"_count": 4, "the": {"_count": 1}, "through": {"_count": 1}, "all": {"_count": 1}, "on": {"_count": 1}}, "here": {"_count": 1, "had": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 2}}, "dismissively": {"_count": 1, "Wedve": {"_count": 1}}, "interjected": {"_count": 1, "angrily": {"_count": 1}}, "craning": {"_count": 2, "over": {"_count": 1}, "around": {"_count": 1}}, "not": {"_count": 7, "looking": {"_count": 2}, "being": {"_count": 1}, "believing": {"_count": 1}, "me": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "come": {"_count": 4, "with": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 1}, "here": {"_count": 1}}, "mounted": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "Im": {"_count": 3, "really": {"_count": 1}, "so": {"_count": 1}, "just": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "choked": {"_count": 3, "back": {"_count": 1}, "on": {"_count": 1}, "a": {"_count": 1}}, "howled": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 18, "very": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "not": {"_count": 12}, "up": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "interrupted": {"_count": 3, "stepping": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "stoutly": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "dad": {"_count": 1}}, "proceeded": {"_count": 1, "all": {"_count": 1}}, "astounded": {"_count": 1, "": {"_count": 1}}, "blankly": {"_count": 5, "": {"_count": 4}, "as": {"_count": 1}}, "they": {"_count": 5, "heard": {"_count": 1}, "could": {"_count": 1}, "skidded": {"_count": 1}, "had": {"_count": 2}}, "stopped": {"_count": 7, "dead": {"_count": 2}, "again": {"_count": 1}, "feeling": {"_count": 1}, "craning": {"_count": 1}, "talking": {"_count": 1}, "shouting": {"_count": 1}}, "please": {"_count": 3, "lets": {"_count": 1}, "stay": {"_count": 1}, "dont": {"_count": 1}}, "be": {"_count": 2, "quiet": {"_count": 2}}, "backward": {"_count": 1, "into": {"_count": 1}}, "crawled": {"_count": 2, "to": {"_count": 1}, "into": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "edged": {"_count": 2, "away": {"_count": 1}, "out": {"_count": 1}}, "hesitated": {"_count": 4, "then": {"_count": 1}, "": {"_count": 3}}, "voiced": {"_count": 1, "what": {"_count": 1}}, "swayed": {"_count": 1, "and": {"_count": 1}}, "Ill": {"_count": 3, "come": {"_count": 1}, "have": {"_count": 1}, "make": {"_count": 1}}, "clutched": {"_count": 1, "Scabbers": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "going": {"_count": 2, "still": {"_count": 1}, "red": {"_count": 1}}, "clambered": {"_count": 1, "upward": {"_count": 1}}, "unsteady": {"_count": 1, "on": {"_count": 1}}, "lay": {"_count": 4, "motionless": {"_count": 1}, "staring": {"_count": 1}, "on": {"_count": 1}, "back": {"_count": 1}}, "it": {"_count": 7, "wasnt": {"_count": 1}, "could": {"_count": 1}, "doesnt": {"_count": 1}, "was": {"_count": 2}, "all": {"_count": 1}, "never": {"_count": 1}}, "dive": {"_count": 1, "": {"_count": 1}}, "clambering": {"_count": 1, "awkwardly": {"_count": 1}}, "some": {"_count": 3, "surprising": {"_count": 1}, "of": {"_count": 1}, "different": {"_count": 1}}, "ignored": {"_count": 5, "her": {"_count": 2}, "Harry": {"_count": 1}, "this": {"_count": 2}}, "noticing": {"_count": 1, "this": {"_count": 1}}, "might": {"_count": 5, "like": {"_count": 1}, "yet": {"_count": 1}, "do": {"_count": 1}, "hit": {"_count": 1}, "not": {"_count": 1}}, "Weasleys": {"_count": 2, "reaction": {"_count": 1}, "for": {"_count": 1}}, "Calm": {"_count": 1, "down": {"_count": 1}}, "Maybe": {"_count": 1, "Harry": {"_count": 1}}, "cottoning": {"_count": 2, "on": {"_count": 2}}, "slept": {"_count": 1, "looked": {"_count": 1}}, "edging": {"_count": 2, "his": {"_count": 1}, "away": {"_count": 1}}, "rolled": {"_count": 5, "his": {"_count": 4}, "their": {"_count": 1}}, "staggered": {"_count": 2, "into": {"_count": 1}, "sideways": {"_count": 1}}, "antiMuggle": {"_count": 1, "security": {"_count": 1}}, "raised": {"_count": 7, "his": {"_count": 4}, "both": {"_count": 1}, "the": {"_count": 2}}, "setting": {"_count": 1, "the": {"_count": 1}}, "my": {"_count": 2, "daughter": {"_count": 1}, "hands": {"_count": 1}}, "purchased": {"_count": 1, "a": {"_count": 1}}, "gesturing": {"_count": 2, "at": {"_count": 1}, "uselessly": {"_count": 1}}, "meanwhile": {"_count": 2, "was": {"_count": 2}}, "following": {"_count": 2, "Krum": {"_count": 1}, "Hermione": {"_count": 1}}, "yell": {"_count": 2, "with": {"_count": 1}, "from": {"_count": 1}}, "where": {"_count": 2, "are": {"_count": 2}}, "this": {"_count": 2, "but": {"_count": 1}, "of": {"_count": 1}}, "firmly": {"_count": 4, "by": {"_count": 1}, "": {"_count": 3}}, "leading": {"_count": 1, "the": {"_count": 1}}, "appealing": {"_count": 1, "for": {"_count": 1}}, "YouKnowWho": {"_count": 1, "and": {"_count": 1}}, "bracingly": {"_count": 3, "": {"_count": 3}}, "fidgeted": {"_count": 2, "absentmindedly": {"_count": 1}, "uncomfortably": {"_count": 1}}, "handing": {"_count": 2, "it": {"_count": 1}, "her": {"_count": 1}}, "undid": {"_count": 1, "his": {"_count": 1}}, "vaguely": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "dreamily": {"_count": 1, "": {"_count": 1}}, "tipped": {"_count": 1, "Krum": {"_count": 1}}, "Him": {"_count": 1, "": {"_count": 1}}, "muttering": {"_count": 1, "furiously": {"_count": 1}}, "deliberately": {"_count": 1, "wafting": {"_count": 1}}, "banging": {"_count": 1, "down": {"_count": 1}}, "set": {"_count": 2, "off": {"_count": 2}}, "imitating": {"_count": 1, "Professor": {"_count": 1}}, "moodily": {"_count": 2, "": {"_count": 1}, "pocketing": {"_count": 1}}, "shortly": {"_count": 3, "": {"_count": 3}}, "tentatively": {"_count": 4, "my": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "recoil": {"_count": 1, "slightly": {"_count": 1}}, "hated": {"_count": 1, "spiders": {"_count": 1}}, "copying": {"_count": 1, "it": {"_count": 1}}, "triumphantly": {"_count": 2, "throwing": {"_count": 1}, "looking": {"_count": 1}}, "yawned": {"_count": 2, "": {"_count": 1}, "pointedly": {"_count": 1}}, "scathingly": {"_count": 3, "": {"_count": 2}, "Im": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "watched": {"_count": 5, "Hedwig": {"_count": 1}, "Krum": {"_count": 1}, "her": {"_count": 1}, "George": {"_count": 1}, "impatiently": {"_count": 1}}, "hes": {"_count": 3, "only": {"_count": 1}, "here": {"_count": 1}, "all": {"_count": 1}}, "exasperated": {"_count": 1, "as": {"_count": 1}}, "rather": {"_count": 4, "lost": {"_count": 1}, "rudely": {"_count": 1}, "hoarsely": {"_count": 1}, "impatiently": {"_count": 1}}, "then": {"_count": 1, "you": {"_count": 1}}, "dragging": {"_count": 2, "Hermione": {"_count": 1}, "her": {"_count": 1}}, "brusquely": {"_count": 1, "the": {"_count": 1}}, "broke": {"_count": 2, "off": {"_count": 1}, "the": {"_count": 1}}, "drew": {"_count": 3, "breath": {"_count": 2}, "level": {"_count": 1}}, "snatched": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "Neville": {"_count": 1, "Seamus": {"_count": 1}}, "consolingly": {"_count": 1, "": {"_count": 1}}, "chortling": {"_count": 2, "as": {"_count": 1}, "still": {"_count": 1}}, "hovered": {"_count": 1, "behind": {"_count": 1}}, "realized": {"_count": 1, "that": {"_count": 1}}, "Changed": {"_count": 1, "the": {"_count": 1}}, "loaded": {"_count": 1, "their": {"_count": 1}}, "once": {"_count": 3, "he": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}}, "fairly": {"_count": 1, "after": {"_count": 1}}, "wisely": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "can": {"_count": 2, "we": {"_count": 1}, "laugh": {"_count": 1}}, "taken": {"_count": 1, "aback": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "sourly": {"_count": 1, "": {"_count": 1}}, "goggled": {"_count": 2, "at": {"_count": 2}}, "skulking": {"_count": 1, "behind": {"_count": 1}}, "Seamus": {"_count": 3, "Dean": {"_count": 3}}, "met": {"_count": 2, "up": {"_count": 1}, "Hermione": {"_count": 1}}, "nastily": {"_count": 1, "": {"_count": 1}}, "changed": {"_count": 2, "tack": {"_count": 2}}, "mulishly": {"_count": 1, "looking": {"_count": 1}}, "continued": {"_count": 8, "down": {"_count": 1}, "to": {"_count": 6}, "": {"_count": 1}}, "froze": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "eyes": {"_count": 1, "widening": {"_count": 1}}, "returned": {"_count": 3, "to": {"_count": 3}}, "struggled": {"_count": 4, "for": {"_count": 2}, "up": {"_count": 1}, "harder": {"_count": 1}}, "saw": {"_count": 1, "Hermione": {"_count": 1}}, "disappeared": {"_count": 1, "": {"_count": 1}}, "indignantly": {"_count": 6, "": {"_count": 4}, "having": {"_count": 1}, "a": {"_count": 1}}, "promptly": {"_count": 2, "": {"_count": 2}}, "sending": {"_count": 1, "a": {"_count": 1}}, "quite": {"_count": 1, "liked": {"_count": 1}}, "floated": {"_count": 1, "unconscious": {"_count": 1}}, "merely": {"_count": 3, "expelled": {"_count": 1}, "looked": {"_count": 1}, "guffawed": {"_count": 1}}, "hed": {"_count": 2, "been": {"_count": 1}, "know": {"_count": 1}}, "And": {"_count": 1, "you": {"_count": 1}}, "informed": {"_count": 1, "Sirius": {"_count": 1}}, "breathing": {"_count": 1, "deeply": {"_count": 1}}, "speared": {"_count": 1, "a": {"_count": 1}}, "winced": {"_count": 2, "at": {"_count": 2}}, "keep": {"_count": 1, "your": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}, "shiver": {"_count": 1, "slightly": {"_count": 1}}, "all": {"_count": 3, "over": {"_count": 1}, "other": {"_count": 1}, "Rons": {"_count": 1}}, "handed": {"_count": 3, "over": {"_count": 1}, "Stan": {"_count": 1}, "the": {"_count": 1}}, "shooting": {"_count": 1, "Harry": {"_count": 1}}, "His": {"_count": 1, "lifes": {"_count": 1}}, "slumped": {"_count": 1, "forward": {"_count": 1}}, "Harryll": {"_count": 1, "tell": {"_count": 1}}, "meant": {"_count": 2, "": {"_count": 2}}, "fearfully": {"_count": 2, "": {"_count": 2}}, "regretfully": {"_count": 1, "": {"_count": 1}}, "punching": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "while": {"_count": 4, "they": {"_count": 1}, "Hermione": {"_count": 1}, "Mrs": {"_count": 1}, "the": {"_count": 1}}, "youre": {"_count": 5, "not": {"_count": 2}, "in": {"_count": 1}, "making": {"_count": 1}, "going": {"_count": 1}}, "hastened": {"_count": 3, "to": {"_count": 3}}, "theyre": {"_count": 1, "only": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "bounded": {"_count": 2, "back": {"_count": 1}, "off": {"_count": 1}}, "well": {"_count": 1, "done": {"_count": 1}}, "yeah": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "dead": {"_count": 1, "no": {"_count": 1}}, "already": {"_count": 3, "dressed": {"_count": 1}, "halfway": {"_count": 1}, "": {"_count": 1}}, "casting": {"_count": 1, "a": {"_count": 1}}, "dragged": {"_count": 2, "their": {"_count": 1}, "himself": {"_count": 1}}, "stowing": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "breathless": {"_count": 1, "with": {"_count": 1}}, "pinned": {"_count": 1, "their": {"_count": 1}}, "vanished": {"_count": 2, "into": {"_count": 1}, "beneath": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "smirking": {"_count": 1, "": {"_count": 1}}, "Well": {"_count": 1, "they": {"_count": 1}}, "comprehension": {"_count": 1, "dawning": {"_count": 1}}, "bustled": {"_count": 1, "around": {"_count": 1}}, "halfway": {"_count": 1, "across": {"_count": 1}}, "succinctly": {"_count": 1, "when": {"_count": 1}}, "half": {"_count": 4, "laughing": {"_count": 1}, "the": {"_count": 1}, "laughed": {"_count": 1}, "expecting": {"_count": 1}}, "suspiciously": {"_count": 1, "": {"_count": 1}}, "carefully": {"_count": 2, "avoided": {"_count": 1}, "onto": {"_count": 1}}, "demanded": {"_count": 8, "suddenly": {"_count": 1}, "furiously": {"_count": 1}, "": {"_count": 3}, "as": {"_count": 2}, "of": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "talking": {"_count": 1, "over": {"_count": 1}}, "screwing": {"_count": 1, "up": {"_count": 1}}, "grumbling": {"_count": 1, "loudly": {"_count": 1}}, "ejaculated": {"_count": 1, "loudly": {"_count": 1}}, "thrusting": {"_count": 1, "his": {"_count": 1}}, "dipping": {"_count": 1, "his": {"_count": 1}}, "plainly": {"_count": 2, "playing": {"_count": 1}, "wanting": {"_count": 1}}, "rose": {"_count": 1, "halfway": {"_count": 1}}, "mumbled": {"_count": 5, "": {"_count": 4}, "looking": {"_count": 1}}, "skeptically": {"_count": 1, "as": {"_count": 1}}, "keeping": {"_count": 1, "him": {"_count": 1}}, "shiftily": {"_count": 1, "": {"_count": 1}}, "blinked": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "moved": {"_count": 1, "away": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "shh": {"_count": 1, "said": {"_count": 1}}, "exclaimed": {"_count": 1, "excitedly": {"_count": 1}}, "guarding": {"_count": 1, "the": {"_count": 1}}, "stonyfaced": {"_count": 1, "pulling": {"_count": 1}}, "scratching": {"_count": 2, "out": {"_count": 2}}, "sinking": {"_count": 2, "back": {"_count": 2}}, "unrolled": {"_count": 1, "the": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "pushing": {"_count": 5, "his": {"_count": 2}, "aside": {"_count": 1}, "him": {"_count": 1}, "open": {"_count": 1}}, "ladling": {"_count": 1, "soup": {"_count": 1}}, "elbowed": {"_count": 1, "him": {"_count": 1}}, "protested": {"_count": 1, "its": {"_count": 1}}, "chortled": {"_count": 1, "as": {"_count": 1}}, "fuming": {"_count": 1, "": {"_count": 1}}, "sympathetically": {"_count": 1, "tipping": {"_count": 1}}, "under": {"_count": 4, "his": {"_count": 4}}, "grimly": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "yawning": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "louder": {"_count": 1, "still": {"_count": 1}}, "nodded": {"_count": 3, "and": {"_count": 1}, "but": {"_count": 1}, "his": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "accusingly": {"_count": 1, "": {"_count": 1}}, "comes": {"_count": 1, "out": {"_count": 1}}, "murmured": {"_count": 2, "looking": {"_count": 1}, "back": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 1}, "his": {"_count": 1}}, "particularly": {"_count": 1, "strongly": {"_count": 1}}, "McGonagall": {"_count": 1, "might": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "appalled": {"_count": 1, "": {"_count": 1}}, "managing": {"_count": 1, "to": {"_count": 1}}, "fiddled": {"_count": 1, "with": {"_count": 1}}, "critically": {"_count": 1, "": {"_count": 1}}, "testily": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 3, "flustered": {"_count": 1}, "loudly": {"_count": 1}, "quietly": {"_count": 1}}, "sit": {"_count": 1, "down": {"_count": 1}}, "became": {"_count": 2, "very": {"_count": 1}, "shamelessly": {"_count": 1}}, "make": {"_count": 1, "some": {"_count": 1}}, "past": {"_count": 1, "their": {"_count": 1}}, "see": {"_count": 1, "whats": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "attempted": {"_count": 2, "to": {"_count": 2}}, "streak": {"_count": 1, "off": {"_count": 1}}, "yelped": {"_count": 1, "": {"_count": 1}}, "clicked": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 3}}, "hoisting": {"_count": 2, "himself": {"_count": 2}}, "finishing": {"_count": 1, "his": {"_count": 1}}, "uncomprehendingly": {"_count": 1, "": {"_count": 1}}, "understand": {"_count": 1, "": {"_count": 1}}, "snoring": {"_count": 1, "in": {"_count": 1}}, "warningly": {"_count": 2, "": {"_count": 2}}, "strolling": {"_count": 1, "over": {"_count": 1}}, "rapped": {"_count": 1, "the": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "\u2018and": {"_count": 1, "now": {"_count": 1}}, "startled": {"_count": 1, "": {"_count": 1}}, "gazing": {"_count": 1, "back": {"_count": 1}}, "departed": {"_count": 1, "for": {"_count": 1}}, "saved": {"_count": 5, "a": {"_count": 1}, "one": {"_count": 1}, "five": {"_count": 1}, "goals": {"_count": 1}, "everything": {"_count": 1}}, "glancing": {"_count": 2, "down": {"_count": 1}, "at": {"_count": 1}}, "wrenched": {"_count": 2, "the": {"_count": 2}}, "putting": {"_count": 1, "his": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "theres": {"_count": 2, "been": {"_count": 1}, "a": {"_count": 1}}, "indifferently": {"_count": 2, "": {"_count": 1}, "demonstrating": {"_count": 1}}, "hitting": {"_count": 1, "his": {"_count": 1}}, "waving": {"_count": 1, "the": {"_count": 1}}, "talked": {"_count": 1, "them": {"_count": 1}}, "we": {"_count": 6, "didnt": {"_count": 2}, "cant": {"_count": 1}, "said": {"_count": 1}, "need": {"_count": 2}}, "smoothed": {"_count": 1, "his": {"_count": 1}}, "sternly": {"_count": 2, "weve": {"_count": 1}, "": {"_count": 1}}, "lazily": {"_count": 1, "thats": {"_count": 1}}, "die": {"_count": 1, "Im": {"_count": 1}}, "rounding": {"_count": 1, "on": {"_count": 1}}, "saying": {"_count": 2, "Id": {"_count": 1}, "We": {"_count": 1}}, "heatedly": {"_count": 1, "": {"_count": 1}}, "airily": {"_count": 1, "now": {"_count": 1}}, "landed": {"_count": 1, "a": {"_count": 1}}, "appearing": {"_count": 2, "around": {"_count": 1}, "suddenly": {"_count": 1}}, "Nevilles": {"_count": 1, "and": {"_count": 1}}, "tell": {"_count": 1, "him": {"_count": 1}}, "stir": {"_count": 2, "beside": {"_count": 1}, "and": {"_count": 1}}, "Luna": {"_count": 1, "and": {"_count": 1}}, "giggling": {"_count": 1, "weakly": {"_count": 1}}, "unceremoniously": {"_count": 1, "from": {"_count": 1}}, "spinning": {"_count": 1, "as": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 4, "his": {"_count": 1}, "Hermione": {"_count": 1}, "turning": {"_count": 1}, "Harry": {"_count": 1}}, "find": {"_count": 1, "some": {"_count": 1}}, "STUBEFYl": {"_count": 1, "Neville": {"_count": 1}}, "bud": {"_count": 1, "I": {"_count": 1}}, "propping": {"_count": 1, "a": {"_count": 1}}, "tended": {"_count": 1, "to": {"_count": 1}}, "whiled": {"_count": 1, "away": {"_count": 1}}, "forcefully": {"_count": 1, "": {"_count": 1}}, "upending": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "anxiously": {"_count": 3, "shaking": {"_count": 1}, "hurrying": {"_count": 1}, "bobbing": {"_count": 1}}, "amazed": {"_count": 1, "": {"_count": 1}}, "tightly": {"_count": 1, "around": {"_count": 1}}, "striding": {"_count": 1, "over": {"_count": 1}}, "examining": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "thumped": {"_count": 1, "him": {"_count": 1}}, "appreciatively": {"_count": 2, "stretching": {"_count": 1}, "lifting": {"_count": 1}}, "bought": {"_count": 1, "any": {"_count": 1}}, "stopping": {"_count": 1, "in": {"_count": 1}}, "unraveled": {"_count": 1, "the": {"_count": 1}}, "reeling": {"_count": 1, "in": {"_count": 1}}, "erupted": {"_count": 1, "in": {"_count": 1}}, "longingly": {"_count": 1, "slumping": {"_count": 1}}, "between": {"_count": 1, "frenzied": {"_count": 1}}, "observed": {"_count": 1, "": {"_count": 1}}, "remained": {"_count": 1, "with": {"_count": 1}}, "shes": {"_count": 2, "not": {"_count": 1}, "found": {"_count": 1}}, "swallowing": {"_count": 1, "an": {"_count": 1}}, "struggling": {"_count": 1, "with": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "gagged": {"_count": 1, "on": {"_count": 1}}, "inconsequentially": {"_count": 1, "": {"_count": 1}}, "crushing": {"_count": 1, "beneath": {"_count": 1}}, "good": {"_count": 1, "luck": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "reappearing": {"_count": 1, "in": {"_count": 1}}, "rightly": {"_count": 1, "said": {"_count": 1}}, "join": {"_count": 1, "up": {"_count": 1}}, "laugh": {"_count": 1, "even": {"_count": 1}}, "hesitantly": {"_count": 1, "": {"_count": 1}}, "adding": {"_count": 1, "quietly": {"_count": 1}}, "beat": {"_count": 1, "it": {"_count": 1}}, "tugged": {"_count": 1, "and": {"_count": 1}}, "lets": {"_count": 1, "get": {"_count": 1}}, "bypassing": {"_count": 1, "red": {"_count": 1}}, "barked": {"_count": 1, "at": {"_count": 1}}, "ripping": {"_count": 1, "open": {"_count": 1}}, "intruded": {"_count": 1, "in": {"_count": 1}}, "stalked": {"_count": 1, "off": {"_count": 1}}, "played": {"_count": 1, "as": {"_count": 1}}, "pull": {"_count": 1, "himself": {"_count": 1}}, "glumly": {"_count": 2, "taking": {"_count": 1}, "who": {"_count": 1}}, "having": {"_count": 3, "made": {"_count": 1}, "rushed": {"_count": 1}, "read": {"_count": 1}}, "won": {"_count": 1, "the": {"_count": 1}}, "wrapped": {"_count": 1, "so": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 2, "expression": {"_count": 1}, "eyes": {"_count": 1}}, "retaliated": {"_count": 1, "by": {"_count": 1}}, "Lavender": {"_count": 1, "flung": {"_count": 1}}, "surfaced": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 1, "said": {"_count": 1}}, "anything": {"_count": 1, "about": {"_count": 1}}, "throw": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "roaring": {"_count": 1, "with": {"_count": 1}}, "permitting": {"_count": 1, "his": {"_count": 1}}, "confidently": {"_count": 1, "when": {"_count": 1}}, "reckons": {"_count": 1, "I": {"_count": 1}}, "panting": {"_count": 1, "slightly": {"_count": 1}}, "drowsily": {"_count": 1, "and": {"_count": 1}}, "breathlessly": {"_count": 1, "": {"_count": 1}}, "revolving": {"_count": 1, "slowly": {"_count": 1}}, "crashing": {"_count": 1, "back": {"_count": 1}}, "mightve": {"_count": 1, "done": {"_count": 1}}, "twitched": {"_count": 1, "and": {"_count": 1}}, "mumble": {"_count": 1, "a": {"_count": 1}}, "unexpectedly": {"_count": 1, "from": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "considered": {"_count": 1, "his": {"_count": 1}}, "perfectly": {"_count": 1, "alert": {"_count": 1}}, "apologetically": {"_count": 1, "": {"_count": 1}}, "awoke": {"_count": 1, "with": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "copy": {"_count": 1, "his": {"_count": 1}}, "swallowed": {"_count": 2, "love": {"_count": 1}, "then": {"_count": 1}}, "spilled": {"_count": 1, "ink": {"_count": 1}}, "relaxing": {"_count": 1, "": {"_count": 1}}, "thats": {"_count": 1, "thats": {"_count": 1}}, "somehow": {"_count": 1, "being": {"_count": 1}}, "begged": {"_count": 1, "her": {"_count": 1}}, "reminiscently": {"_count": 1, "": {"_count": 1}}, "spluttering": {"_count": 1, "behind": {"_count": 1}}, "bounding": {"_count": 1, "into": {"_count": 1}}, "grudgingly": {"_count": 1, "": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "robustly": {"_count": 1, "": {"_count": 1}}, "unwrapped": {"_count": 1, "the": {"_count": 1}}, "Dumbledores": {"_count": 1, "dead": {"_count": 1}}, "bleakly": {"_count": 1, "": {"_count": 1}}, "clapped": {"_count": 1, "him": {"_count": 1}}, "long": {"_count": 1, "and": {"_count": 1}}, "smirked": {"_count": 1, "at": {"_count": 1}}, "tripped": {"_count": 1, "dazedly": {"_count": 1}}, "patting": {"_count": 1, "her": {"_count": 1}}, "She": {"_count": 1, "ran": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "slamming": {"_count": 1, "his": {"_count": 1}}, "giving": {"_count": 1, "her": {"_count": 1}}, "show": {"_count": 1, "Harry": {"_count": 1}}, "withdrew": {"_count": 1, "his": {"_count": 1}}, "climbing": {"_count": 1, "the": {"_count": 1}}, "clearly": {"_count": 1, "frustrated": {"_count": 1}}, "spoke": {"_count": 2, "up": {"_count": 1}, "in": {"_count": 1}}, "itd": {"_count": 1, "be": {"_count": 1}}, "why": {"_count": 1, "cant": {"_count": 1}}, "stumped": {"_count": 1, "back": {"_count": 1}}, "relieved": {"_count": 1, "his": {"_count": 1}}, "Rons": {"_count": 1, "splutter": {"_count": 1}}, "pointedly": {"_count": 1, "": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "But": {"_count": 2, "Ron": {"_count": 1}, "what": {"_count": 1}}, "thickset": {"_count": 1, "with": {"_count": 1}}, "jumping": {"_count": 1, "up": {"_count": 1}}, "obliged": {"_count": 1, "at": {"_count": 1}}, "facetoface": {"_count": 1, "with": {"_count": 1}}, "passing": {"_count": 1, "them": {"_count": 1}}, "mopping": {"_count": 1, "his": {"_count": 1}}, "approvingly": {"_count": 1, "as": {"_count": 1}}, "snatching": {"_count": 1, "three": {"_count": 1}}, "admiringly": {"_count": 1, "": {"_count": 1}}, "hurry": {"_count": 1, "up": {"_count": 1}}, "stripped": {"_count": 1, "off": {"_count": 1}}, "Shining": {"_count": 1, "black": {"_count": 1}}, "head": {"_count": 1, "to": {"_count": 1}}, "turn": {"_count": 1, "out": {"_count": 1}}, "used": {"_count": 1, "the": {"_count": 1}}, "kindly": {"_count": 1, "": {"_count": 1}}, "crossed": {"_count": 1, "to": {"_count": 1}}, "agree": {"_count": 1, "": {"_count": 1}}, "Regulus": {"_count": 1, "might": {"_count": 1}}, "uncertain": {"_count": 1, "": {"_count": 1}}, "rugbytackled": {"_count": 1, "him": {"_count": 1}}, "shrewdly": {"_count": 1, "": {"_count": 1}}, "heard": {"_count": 1, "those": {"_count": 1}}, "thanks": {"_count": 1, "to": {"_count": 1}}, "jabbed": {"_count": 1, "a": {"_count": 1}}, "Voldemorts": {"_count": 1, "got": {"_count": 1}}, "intervened": {"_count": 1, "": {"_count": 1}}, "fondly": {"_count": 1, "and": {"_count": 1}}, "finished": {"_count": 1, "throwing": {"_count": 1}}, "emerging": {"_count": 2, "from": {"_count": 2}}, "crept": {"_count": 1, "along": {"_count": 1}}, "blinking": {"_count": 1, "at": {"_count": 1}}, "no": {"_count": 2, "of": {"_count": 1}, "please": {"_count": 1}}, "searching": {"_count": 1, "his": {"_count": 1}}, "darted": {"_count": 1, "past": {"_count": 1}}, "disengaging": {"_count": 1, "himself": {"_count": 1}}, "wincing": {"_count": 2, "as": {"_count": 1}, "slightly": {"_count": 1}}, "murmuring": {"_count": 1, "incantations": {"_count": 1}}, "cut": {"_count": 1, "across": {"_count": 1}}, "whiter": {"_count": 1, "still": {"_count": 1}}, "fret": {"_count": 1, "over": {"_count": 1}}, "agreed": {"_count": 1, "with": {"_count": 1}}, "obliterated": {"_count": 1, "all": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "one": {"_count": 1, "night": {"_count": 1}}, "swung": {"_count": 1, "his": {"_count": 1}}, "hurled": {"_count": 1, "at": {"_count": 1}}, "Bills": {"_count": 1, "already": {"_count": 1}}, "Something": {"_count": 1, "had": {"_count": 1}}, "Dumbledore": {"_count": 1, "the": {"_count": 1}}, "fully": {"_count": 1, "dressed": {"_count": 1}}, "offered": {"_count": 1, "the": {"_count": 1}}, "backing": {"_count": 1, "away": {"_count": 1}}, "stab": {"_count": 2, "it": {"_count": 2}}, "lagging": {"_count": 1, "a": {"_count": 1}}, "drowning": {"_count": 1, "her": {"_count": 1}}, "illustrating": {"_count": 1, "the": {"_count": 1}}, "stabbed": {"_count": 1, "it": {"_count": 1}}, "smiling": {"_count": 1, "slightly": {"_count": 1}}, "responded": {"_count": 1, "by": {"_count": 1}}, "escaped": {"_count": 1, "Hermiones": {"_count": 1}}, "causing": {"_count": 1, "Harry": {"_count": 1}}, "scratched": {"_count": 1, "his": {"_count": 1}}, "against": {"_count": 1, "pursuing": {"_count": 1}}, "tapped": {"_count": 1, "and": {"_count": 1}}, "ceased": {"_count": 1, "his": {"_count": 1}}, "sycophantically": {"_count": 1, "that": {"_count": 1}}, "grab": {"_count": 1, "my": {"_count": 1}}, "awkwardly": {"_count": 1, "": {"_count": 1}}, "insisted": {"_count": 1, "on": {"_count": 1}}, "running": {"_count": 1, "around": {"_count": 1}}, "tugging": {"_count": 1, "Wormtails": {"_count": 1}}, "catch": {"_count": 1, "and": {"_count": 1}}, "contradicted": {"_count": 1, "him": {"_count": 1}}, "urgently": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "days": {"_count": 1}}, "sloped": {"_count": 1, "along": {"_count": 1}}, "hopped": {"_count": 1, "on": {"_count": 1}}, "copied": {"_count": 1, "her": {"_count": 1}}, "seriously": {"_count": 1, "I": {"_count": 1}}, "harshly": {"_count": 1, "": {"_count": 1}}, "squaring": {"_count": 1, "his": {"_count": 1}}, "hurtled": {"_count": 1, "down": {"_count": 1}}, "bringing": {"_count": 1, "up": {"_count": 1}}, "vomiting": {"_count": 1, "slugs": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}}, "okay": {"_count": 178, "said": {"_count": 26, "Harry": {"_count": 17}, "Hermione": {"_count": 2}, "Mr": {"_count": 1}, "Cedric": {"_count": 1}, "Ron": {"_count": 4}, "George": {"_count": 1}}, "get": {"_count": 1, "off": {"_count": 1}}, "": {"_count": 73, "!": {"_count": 10}, "?": {"_count": 40}, ".": {"_count": 23}}, "and": {"_count": 2, "that": {"_count": 1}, "Buckbeak": {"_count": 1}}, "Hermione": {"_count": 2, "said": {"_count": 2}}, "Hagrid": {"_count": 2, "": {"_count": 2}}, "this": {"_count": 1, "gits": {"_count": 1}}, "Harry": {"_count": 6, "": {"_count": 4}, "said": {"_count": 1}, "grabbed": {"_count": 1}}, "if": {"_count": 5, "I": {"_count": 1}, "Harry": {"_count": 1}, "we": {"_count": 2}, "you": {"_count": 1}}, "then": {"_count": 4, "Hagrid": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "but": {"_count": 1}}, "Gryffindor": {"_count": 1, "in": {"_count": 1}}, "Scabbers": {"_count": 1, "": {"_count": 1}}, "Beaky": {"_count": 2, "said": {"_count": 1}, "its": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "mainly": {"_count": 1, "because": {"_count": 1}}, "the": {"_count": 2, "Muggles": {"_count": 1}, "first": {"_count": 1}}, "he": {"_count": 8, "only": {"_count": 1}, "said": {"_count": 4}, "told": {"_count": 1}, "muttered": {"_count": 1}, "mumbled": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "though": {"_count": 3, "Ive": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "Ill": {"_count": 2, "write": {"_count": 1}, "tell": {"_count": 1}}, "now": {"_count": 1, "we": {"_count": 1}}, "we": {"_count": 2, "know": {"_count": 1}, "can": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "to": {"_count": 1, "Fascinating": {"_count": 1}}, "Mr": {"_count": 1, "Bagman": {"_count": 1}}, "Ive": {"_count": 2, "got": {"_count": 2}}, "chuckled": {"_count": 1, "Dean": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "I": {"_count": 2, "know": {"_count": 1}, "dont": {"_count": 1}}, "with": {"_count": 2, "Gobstones": {"_count": 1}, "that": {"_count": 1}}, "Its": {"_count": 1, "fantastic": {"_count": 1}}, "thanks": {"_count": 1, "he": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 2, "Snape": {"_count": 1}, "Sirius": {"_count": 1}}, "here": {"_count": 1, "with": {"_count": 1}}, "sir": {"_count": 1, "youre": {"_count": 1}}, "Dromeda": {"_count": 1, "said": {"_count": 1}}, "Ron": {"_count": 1, "She": {"_count": 1}}, "anyway": {"_count": 1, "I": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "shes": {"_count": 1, "pureblood": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "everythings": {"_count": 1, "fine": {"_count": 1}}, "Come": {"_count": 1, "to": {"_count": 1}}, "calm": {"_count": 1, "down": {"_count": 1}}, "But": {"_count": 1, "Tonks": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}}, "trolley": {"_count": 21, "around": {"_count": 3, "and": {"_count": 1}, "to": {"_count": 2}}, "Harry": {"_count": 1, "gasped": {"_count": 1}}, "forward": {"_count": 2, "cautiously": {"_count": 1}, "gathering": {"_count": 1}}, "pushed": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 3, "apparently": {"_count": 1}, "put": {"_count": 1}, "was": {"_count": 1}}, "bearing": {"_count": 1, "his": {"_count": 1}}, "came": {"_count": 1, "rattling": {"_count": 1}}, "arrived": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "already": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "directly": {"_count": 1, "at": {"_count": 1}}, "would": {"_count": 1, "hurry": {"_count": 1}}, "were": {"_count": 1, "impossible": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}}, "jostled": {"_count": 5, "him": {"_count": 1, "on": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}, "them": {"_count": 1, "as": {"_count": 1}}, "fighting": {"_count": 1, "to": {"_count": 1}}, "among": {"_count": 1, "themselves": {"_count": 1}}}, "smash": {"_count": 9, "right": {"_count": 1, "into": {"_count": 1}}, "into": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "pieces": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "if": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}}, "steam": {"_count": 34, "engine": {"_count": 6, "was": {"_count": 2}, "puffing": {"_count": 1}, "pick": {"_count": 1}, "as": {"_count": 1}, "or": {"_count": 1}}, "were": {"_count": 1, "issuing": {"_count": 1}}, "pouring": {"_count": 1, "from": {"_count": 1}}, "ahead": {"_count": 1, "I": {"_count": 1}}, "had": {"_count": 2, "hissed": {"_count": 1}, "thinned": {"_count": 1}}, "issued": {"_count": 1, "suddenly": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 2}, ".": {"_count": 2}}, "billowing": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "observe": {"_count": 1}}, "wafting": {"_count": 1, "all": {"_count": 1}}, "was": {"_count": 1, "coming": {"_count": 1}}, "billowed": {"_count": 1, "thickly": {"_count": 1}}, "and": {"_count": 3, "Wormtail": {"_count": 1}, "goes": {"_count": 1}, "they": {"_count": 1}}, "over": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "Rons": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 1, "filling": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "came": {"_count": 1, "pouring": {"_count": 1}}, "rising": {"_count": 1, "in": {"_count": 1}}, "or": {"_count": 1, "smoke": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "evaporated": {"_count": 1, "in": {"_count": 1}}}, "Express": {"_count": 43, "eleven": {"_count": 1, "oclock": {"_count": 1}}, "talking": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 2, "usual": {"_count": 1}, "it": {"_count": 1}}, "the": {"_count": 1, "previous": {"_count": 1}}, "And": {"_count": 1, "they": {"_count": 1}}, "was": {"_count": 5, "streaking": {"_count": 1}, "usually": {"_count": 1}, "moving": {"_count": 1}, "pulling": {"_count": 1}, "leaving": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "will": {"_count": 2, "take": {"_count": 1}, "leave": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "slowed": {"_count": 2, "and": {"_count": 1}, "down": {"_count": 1}}, "on": {"_count": 1, "September": {"_count": 1}}, "a": {"_count": 2, "scarlet": {"_count": 1}, "gleaming": {"_count": 1}}, "moved": {"_count": 1, "steadily": {"_count": 1}}, "our": {"_count": 1, "school": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 2, "that": {"_count": 1}, "I": {"_count": 1}}, "crashed": {"_count": 1, "tomorrow": {"_count": 1}}, "stood": {"_count": 2, "belching": {"_count": 2}}, "without": {"_count": 1, "Ron": {"_count": 1}}, "next": {"_count": 1, "day": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "come": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "Permission": {"_count": 1, "of": {"_count": 1}}}, "wroughtiron": {"_count": 6, "archway": {"_count": 1, "where": {"_count": 1}}, "arch": {"_count": 1, "spanning": {"_count": 1}}, "gates": {"_count": 3, "barring": {"_count": 1}, "at": {"_count": 1}, "with": {"_count": 1}}, "spiral": {"_count": 1, "staircase": {"_count": 1}}}, "Quarters": {"_count": 1, "on": {"_count": 1, "it": {"_count": 1}}}, "Smoke": {"_count": 2, "from": {"_count": 1, "the": {"_count": 1}}, "kept": {"_count": 1, "furling": {"_count": 1}}}, "drifted": {"_count": 33, "over": {"_count": 5, "the": {"_count": 1}, "it": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}}, "off": {"_count": 4, "to": {"_count": 2}, "for": {"_count": 1}, "after": {"_count": 1}}, "away": {"_count": 4, "": {"_count": 2}, "from": {"_count": 1}, "through": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "up": {"_count": 2, "into": {"_count": 1}, "from": {"_count": 1}}, "sideways": {"_count": 2, "and": {"_count": 1}, "silently": {"_count": 1}}, "in": {"_count": 4, "through": {"_count": 1}, "and": {"_count": 2}, "accidentally": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 2, "onto": {"_count": 1}, "upon": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "serenely": {"_count": 1, "past": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "slowly": {"_count": 1, "into": {"_count": 1}}, "upward": {"_count": 1, "off": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}}, "chattering": {"_count": 22, "crowd": {"_count": 7, "while": {"_count": 1}, "": {"_count": 3}, "they": {"_count": 1}, "toward": {"_count": 1}, "parting": {"_count": 1}}, "crowds": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "first": {"_count": 2, "and": {"_count": 1}, "years": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "students": {"_count": 1, "at": {"_count": 1}}, "group": {"_count": 1, "took": {"_count": 1}}, "girls": {"_count": 1, "separated": {"_count": 1}}, "overhead": {"_count": 1, "and": {"_count": 1}}, "teeth": {"_count": 1, "but": {"_count": 1}}, "they": {"_count": 1, "settled": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "horribly": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}}, "wound": {"_count": 31, "here": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "its": {"_count": 3, "way": {"_count": 3}}, "right": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "except": {"_count": 1, "that": {"_count": 1}}, "Get": {"_count": 1, "away": {"_count": 1}}, "left": {"_count": 1, "by": {"_count": 1}}, "himself": {"_count": 1, "once": {"_count": 1}}, "and": {"_count": 2, "they": {"_count": 1}, "put": {"_count": 1}}, "me": {"_count": 1, "up": {"_count": 1}}, "anyone": {"_count": 1, "up": {"_count": 1}}, "had": {"_count": 1, "burst": {"_count": 1}}, "his": {"_count": 1, "hand": {"_count": 1}}, "their": {"_count": 1, "hands": {"_count": 1}}, "between": {"_count": 1, "overgrown": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "was": {"_count": 1, "neat": {"_count": 1}}, "now": {"_count": 1, "looked": {"_count": 1}}, "Harrys": {"_count": 1, "fear": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}}, "hooted": {"_count": 16, "to": {"_count": 1, "one": {"_count": 1}}, "loudly": {"_count": 1, "and": {"_count": 1}}, "cats": {"_count": 1, "meowed": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "glee": {"_count": 1}}, "softly": {"_count": 1, "in": {"_count": 1}}, "sleepily": {"_count": 1, "dipped": {"_count": 1}}, "happily": {"_count": 2, "his": {"_count": 1}, "at": {"_count": 1}}, "more": {"_count": 1, "happily": {"_count": 1}}, "glumly": {"_count": 1, "from": {"_count": 1}}, "dolefully": {"_count": 1, "": {"_count": 1}}, "somewhere": {"_count": 2, "out": {"_count": 1}, "as": {"_count": 1}}, "angrily": {"_count": 1, "from": {"_count": 1}}, "indignantly": {"_count": 1, "and": {"_count": 1}}}, "disgruntled": {"_count": 18, "sort": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "hurried": {"_count": 1}}, "not": {"_count": 1, "at": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "Hedwig": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "hed": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "turned": {"_count": 1, "her": {"_count": 1}}, "team": {"_count": 1, "back": {"_count": 1}}, "whisper": {"_count": 1, "loud": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "silence": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "trunks": {"_count": 53, "": {"_count": 11, ".": {"_count": 11}}, "had": {"_count": 2, "already": {"_count": 1}, "been": {"_count": 1}}, "with": {"_count": 2, "flat": {"_count": 1}, "the": {"_count": 1}}, "were": {"_count": 1, "packed": {"_count": 1}}, "two": {"_count": 1, "owls": {"_count": 1}}, "and": {"_count": 7, "they": {"_count": 1}, "began": {"_count": 1}, "was": {"_count": 1}, "Hedwigs": {"_count": 1}, "boughs": {"_count": 1}, "the": {"_count": 1}, "head": {"_count": 1}}, "stood": {"_count": 1, "open": {"_count": 1}}, "shut": {"_count": 1, "and": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "spitting": {"_count": 1, "loudly": {"_count": 1}}, "touched": {"_count": 1, "their": {"_count": 1}}, "onto": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "rebounding": {"_count": 1, "into": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "lid": {"_count": 1, "shut": {"_count": 1}}, "packed": {"_count": 2, "hadnt": {"_count": 1}, "Hermiones": {"_count": 1}}, "to": {"_count": 1, "fly": {"_count": 1}}, "cluttering": {"_count": 1, "the": {"_count": 1}}, "Crookshanks": {"_count": 1, "and": {"_count": 1}}, "arrived": {"_count": 1, "from": {"_count": 1}}, "or": {"_count": 2, "extra": {"_count": 1}, "boulders": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}, "until": {"_count": 1, "an": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "old": {"_count": 1}}, "parted": {"_count": 1, "ominously": {"_count": 1}}, "already": {"_count": 1, "up": {"_count": 1}}, "ready": {"_count": 1, "tonight": {"_count": 1}}, "at": {"_count": 1, "eye": {"_count": 1}}, "our": {"_count": 1, "owls": {"_count": 1}}}, "carriages": {"_count": 21, "were": {"_count": 1, "already": {"_count": 1}}, "stood": {"_count": 1, "waiting": {"_count": 1}}, "was": {"_count": 1, "rumbling": {"_count": 1}}, "trundled": {"_count": 1, "swaying": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "that": {"_count": 2, "would": {"_count": 1}, "were": {"_count": 1}}, "however": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "remembered": {"_count": 1}}, "Luna": {"_count": 1, "rolled": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 2}}, "moved": {"_count": 1, "in": {"_count": 1}}, "jingled": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "leathery": {"_count": 1}}, "unless": {"_count": 1, "Dumbledores": {"_count": 1}}, "to": {"_count": 1, "change": {"_count": 1}}, "trundling": {"_count": 1, "up": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}}, "search": {"_count": 47, "of": {"_count": 10, "an": {"_count": 1}, "the": {"_count": 6}, "his": {"_count": 1}, "a": {"_count": 1}, "Weasleys": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "without": {"_count": 1, "Madam": {"_count": 1}}, "every": {"_count": 1, "painting": {"_count": 1}}, "was": {"_count": 1, "complete": {"_count": 1}}, "the": {"_count": 5, "village": {"_count": 1}, "grounds": {"_count": 1}, "forest": {"_count": 1}, "school": {"_count": 1}, "woods": {"_count": 1}}, "for": {"_count": 11, "the": {"_count": 4}, "Sirius": {"_count": 1}, "a": {"_count": 2}, "shiny": {"_count": 1}, "you": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}}, "my": {"_count": 1, "office": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Snapes": {"_count": 1, "office": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 4, "to": {"_count": 1}, "present": {"_count": 2}, "dont": {"_count": 1}}, "being": {"_count": 1, "made": {"_count": 1}}, "far": {"_count": 1, "for": {"_count": 1}}, "manually": {"_count": 1, "said": {"_count": 1}}, "Mr": {"_count": 1, "Weasleys": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "an": {"_count": 1, "entire": {"_count": 1}}, "Harry": {"_count": 1, "found": {"_count": 1}}}, "roundfaced": {"_count": 4, "boy": {"_count": 2, "who": {"_count": 1}, "Harry": {"_count": 1}}, "and": {"_count": 1, "accidentprone": {"_count": 1}}, "forgetful": {"_count": 1, "boy": {"_count": 1}}}, "Gran": {"_count": 8, "Ive": {"_count": 1, "lost": {"_count": 1}}, "was": {"_count": 1, "crying": {"_count": 1}}, "knows": {"_count": 1, "I": {"_count": 1}}, "didnt": {"_count": 1, "want": {"_count": 1}}, "really": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Neville": {"_count": 672, "he": {"_count": 1, "heard": {"_count": 1}}, "the": {"_count": 6, "toadless": {"_count": 1}, "boy": {"_count": 1}, "very": {"_count": 1}, "worse": {"_count": 1}, "smile": {"_count": 1}, "sword": {"_count": 1}}, "and": {"_count": 41, "Hermione": {"_count": 1}, "were": {"_count": 1}, "Fang": {"_count": 2}, "grabbed": {"_count": 1}, "Justin": {"_count": 1}, "Professor": {"_count": 3}, "sees": {"_count": 1}, "finish": {"_count": 1}, "Harry": {"_count": 3}, "Moody": {"_count": 1}, "Ginny": {"_count": 2}, "came": {"_count": 1}, "Loony": {"_count": 1}, "we": {"_count": 1}, "Luna": {"_count": 11}, "Ron": {"_count": 2}, "Seamus": {"_count": 1}, "each": {"_count": 1}, "he": {"_count": 1}, "run": {"_count": 1}, "ripped": {"_count": 1}, "I": {"_count": 1}, "half": {"_count": 1}, "Voldemort": {"_count": 1}}, "blissfully": {"_count": 1, "holding": {"_count": 1}}, "Longbottom": {"_count": 29, "the": {"_count": 1}, "": {"_count": 7}, "on": {"_count": 1}, "hes": {"_count": 1}, "bought": {"_count": 1}, "had": {"_count": 1}, "who": {"_count": 2}, "said": {"_count": 1}, "Ern": {"_count": 1}, "a": {"_count": 2}, "sadly": {"_count": 1}, "into": {"_count": 1}, "pleading": {"_count": 1}, "trembling": {"_count": 1}, "seemed": {"_count": 1}, "and": {"_count": 2}, "Harrys": {"_count": 1}, "Luna": {"_count": 2}, "my": {"_count": 1}}, "": {"_count": 100, ".": {"_count": 80}, "?": {"_count": 12}, "!": {"_count": 8}}, "ran": {"_count": 4, "off": {"_count": 1}, "repeatedly": {"_count": 1}, "into": {"_count": 1}, "at": {"_count": 1}}, "but": {"_count": 6, "the": {"_count": 1}, "he": {"_count": 2}, "Harry": {"_count": 1}, "she": {"_count": 1}, "both": {"_count": 1}}, "needed": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 33, "somehow": {"_count": 1}, "never": {"_count": 1}, "been": {"_count": 6}, "panicked": {"_count": 1}, "tried": {"_count": 1}, "no": {"_count": 3}, "smashed": {"_count": 1}, "dressed": {"_count": 1}, "accidentally": {"_count": 1}, "paid": {"_count": 1}, "molted": {"_count": 1}, "chosen": {"_count": 1}, "finished": {"_count": 1}, "just": {"_count": 2}, "successfully": {"_count": 1}, "improved": {"_count": 1}, "already": {"_count": 1}, "acknowledged": {"_count": 1}, "heaved": {"_count": 1}, "obeyed": {"_count": 1}, "come": {"_count": 1}, "slid": {"_count": 1}, "she": {"_count": 1}, "told": {"_count": 1}, "spotted": {"_count": 1}}, "who": {"_count": 24, "had": {"_count": 4}, "looked": {"_count": 1}, "couldnt": {"_count": 1}, "fell": {"_count": 1}, "almost": {"_count": 1}, "was": {"_count": 8}, "walked": {"_count": 1}, "appeared": {"_count": 1}, "gulped": {"_count": 1}, "immediately": {"_count": 1}, "stood": {"_count": 2}, "seemed": {"_count": 1}, "grew": {"_count": 1}}, "whimpered": {"_count": 1, "as": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 33, "": {"_count": 1}, "hanging": {"_count": 1}, "trying": {"_count": 1}, "rising": {"_count": 1}, "bent": {"_count": 1}, "snoring": {"_count": 1}, "looking": {"_count": 1}, "clearly": {"_count": 1}, "a": {"_count": 1}, "cowering": {"_count": 1}, "swinging": {"_count": 1}, "in": {"_count": 2}, "pink": {"_count": 1}, "saying": {"_count": 3}, "forced": {"_count": 1}, "standing": {"_count": 1}, "doing": {"_count": 1}, "now": {"_count": 1}, "that": {"_count": 1}, "left": {"_count": 1}, "making": {"_count": 1}, "having": {"_count": 1}, "turning": {"_count": 1}, "thrown": {"_count": 1}, "scrambling": {"_count": 1}, "staring": {"_count": 1}, "born": {"_count": 1}, "stroking": {"_count": 1}, "flat": {"_count": 1}, "aflame": {"_count": 1}}, "a": {"_count": 3, "small": {"_count": 1}, "Scouring": {"_count": 1}, "good": {"_count": 1}}, "nervous": {"_count": 1, "and": {"_count": 1}}, "lay": {"_count": 1, "facedown": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "his": {"_count": 4, "face": {"_count": 2}, "round": {"_count": 1}, "sweaty": {"_count": 1}}, "wasnt": {"_count": 1, "back": {"_count": 1}}, "showing": {"_count": 1, "them": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "scrambling": {"_count": 1, "to": {"_count": 1}}, "suddenly": {"_count": 2, "let": {"_count": 1}, "": {"_count": 1}}, "indeed": {"_count": 1, "looked": {"_count": 1}}, "nor": {"_count": 1, "Hermione": {"_count": 1}}, "cared": {"_count": 1, "about": {"_count": 1}}, "Seamus": {"_count": 2, "and": {"_count": 2}}, "you": {"_count": 3, "can": {"_count": 1}, "stay": {"_count": 1}, "dont": {"_count": 1}}, "toppled": {"_count": 1, "into": {"_count": 1}}, "shakily": {"_count": 1, "": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "choked": {"_count": 2, "out": {"_count": 1}, "as": {"_count": 1}}, "walked": {"_count": 1, "away": {"_count": 1}}, "went": {"_count": 3, "bright": {"_count": 1}, "scarlet": {"_count": 1}, "to": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "tried": {"_count": 2, "to": {"_count": 2}}, "burst": {"_count": 1, "out": {"_count": 1}}, "up": {"_count": 5, "but": {"_count": 1}, "by": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}, "those": {"_count": 1}}, "Harry": {"_count": 2, "knew": {"_count": 1}, "": {"_count": 1}}, "sobbing": {"_count": 1, "into": {"_count": 1}}, "like": {"_count": 1, "himself": {"_count": 1}}, "were": {"_count": 9, "suffering": {"_count": 1}, "both": {"_count": 1}, "going": {"_count": 1}, "already": {"_count": 1}, "staring": {"_count": 1}, "all": {"_count": 1}, "not": {"_count": 1}, "bewitching": {"_count": 1}, "now": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "kept": {"_count": 2, "sniffing": {"_count": 1}, "dropping": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 2}}, "clutched": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "Fangll": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "will": {"_count": 1, "play": {"_count": 1}}, "appeared": {"_count": 2, "from": {"_count": 1}, "to": {"_count": 1}}, "nothing": {"_count": 1, "said": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "youll": {"_count": 2, "be": {"_count": 2}}, "Ron": {"_count": 2, "exploded": {"_count": 1}, "advised": {"_count": 1}}, "dropped": {"_count": 1, "Trevor": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Im": {"_count": 2, "so": {"_count": 1}, "fine": {"_count": 1}}, "no": {"_count": 3, "time": {"_count": 1}, "": {"_count": 1}, "go": {"_count": 1}}, "said": {"_count": 14, "Ron": {"_count": 2}, "his": {"_count": 1}, "Stan": {"_count": 1}, "Harry": {"_count": 3}, "Professor": {"_count": 2}, "": {"_count": 1}, "Hermione": {"_count": 1}, "nothing": {"_count": 1}, "quietly": {"_count": 1}, "Oliver": {"_count": 1}}, "lying": {"_count": 2, "motionless": {"_count": 1}, "apparently": {"_count": 1}}, "white": {"_count": 1, "with": {"_count": 1}}, "scraped": {"_count": 1, "through": {"_count": 1}}, "awestruck": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 4}, "his": {"_count": 1}, "with": {"_count": 1}}, "urged": {"_count": 1, "": {"_count": 1}}, "stuffed": {"_count": 1, "his": {"_count": 1}}, "Longbottoms": {"_count": 3, "copy": {"_count": 1}, "elbow": {"_count": 1}, "wand": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 3}}, "Dean": {"_count": 6, "and": {"_count": 5}, "Fred": {"_count": 1}}, "Hermione": {"_count": 1, "caught": {"_count": 1}}, "with": {"_count": 3, "Justin": {"_count": 1}, "Dean": {"_count": 1}, "a": {"_count": 1}}, "pushed": {"_count": 2, "open": {"_count": 1}, "it": {"_count": 1}}, "pulled": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "you": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 3, "Ern": {"_count": 1}, "successful": {"_count": 1}, "not": {"_count": 1}}, "while": {"_count": 1, "on": {"_count": 1}}, "looked": {"_count": 14, "back": {"_count": 1}, "around": {"_count": 3}, "startled": {"_count": 1}, "surprised": {"_count": 1}, "even": {"_count": 1}, "pleadingly": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}, "fixedly": {"_count": 1}, "miserable": {"_count": 1}, "confused": {"_count": 1}, "suddenly": {"_count": 1}}, "tremulously": {"_count": 1, "": {"_count": 1}}, "gulped": {"_count": 1, "": {"_count": 1}}, "regularly": {"_count": 1, "went": {"_count": 1}}, "put": {"_count": 4, "it": {"_count": 1}, "up": {"_count": 1}, "that": {"_count": 1}, "their": {"_count": 1}}, "breathless": {"_count": 1, "with": {"_count": 1}}, "sweat": {"_count": 1, "as": {"_count": 1}}, "did": {"_count": 6, "it": {"_count": 1}, "not": {"_count": 3}, "Stun": {"_count": 1}, "so": {"_count": 1}}, "would": {"_count": 3, "assist": {"_count": 1}, "stay": {"_count": 1}, "take": {"_count": 1}}, "gave": {"_count": 4, "Professor": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 2}}, "sorry": {"_count": 1, "said": {"_count": 1}}, "grinned": {"_count": 1, "apologetically": {"_count": 1}}, "I": {"_count": 2, "believe": {"_count": 1}, "could": {"_count": 1}}, "nervously": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}}, "uncertainly": {"_count": 1, "plainly": {"_count": 1}}, "can": {"_count": 2, "get": {"_count": 1}, "you": {"_count": 1}}, "alone": {"_count": 1, "beside": {"_count": 1}}, "backed": {"_count": 1, "away": {"_count": 1}}, "charged": {"_count": 1, "forward": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "didnt": {"_count": 1, "need": {"_count": 1}}, "to": {"_count": 3, "notice": {"_count": 1}, "peer": {"_count": 1}, "the": {"_count": 1}}, "came": {"_count": 1, "around": {"_count": 1}}, "brightly": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 5, "a": {"_count": 3}, "aim": {"_count": 1}, "the": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "off": {"_count": 1, "at": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "informed": {"_count": 1, "them": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "usual": {"_count": 1}}, "listened": {"_count": 1, "jealously": {"_count": 1}}, "enviously": {"_count": 1, "as": {"_count": 1}}, "climbed": {"_count": 2, "gratefully": {"_count": 1}, "up": {"_count": 1}}, "jumped": {"_count": 3, "down": {"_count": 2}, "and": {"_count": 1}}, "got": {"_count": 1, "into": {"_count": 1}}, "almost": {"_count": 1, "always": {"_count": 1}}, "melting": {"_count": 1, "his": {"_count": 1}}, "detention": {"_count": 1, "and": {"_count": 1}}, "returned": {"_count": 1, "from": {"_count": 1}}, "usually": {"_count": 1, "volunteered": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "in": {"_count": 1}}, "nodded": {"_count": 4, "nervously": {"_count": 1}, "": {"_count": 1}, "looking": {"_count": 1}, "back": {"_count": 1}}, "are": {"_count": 2, "you": {"_count": 2}}, "gabbled": {"_count": 1, "in": {"_count": 1}}, "what": {"_count": 3, "": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 1, "alone": {"_count": 1}}, "very": {"_count": 2, "rarely": {"_count": 1}, "faintly": {"_count": 1}}, "performed": {"_count": 1, "a": {"_count": 1}}, "jump": {"_count": 1, "backward": {"_count": 1}}, "thats": {"_count": 1, "illegal": {"_count": 1}}, "caused": {"_count": 1, "a": {"_count": 1}}, "decided": {"_count": 1, "that": {"_count": 1}}, "changed": {"_count": 1, "into": {"_count": 1}}, "trod": {"_count": 1, "on": {"_count": 1}}, "looking": {"_count": 5, "over": {"_count": 1}, "blank": {"_count": 1}, "upset": {"_count": 1}, "confused": {"_count": 1}, "perplexedly": {"_count": 1}}, "always": {"_count": 1, "forgot": {"_count": 1}}, "never": {"_count": 1, "told": {"_count": 1}}, "visits": {"_count": 1, "them": {"_count": 1}}, "deserved": {"_count": 1, "it": {"_count": 1}}, "mumbled": {"_count": 1, "something": {"_count": 1}}, "followed": {"_count": 3, "": {"_count": 1}, "him": {"_count": 1}, "Zabini": {"_count": 1}}, "stowed": {"_count": 2, "the": {"_count": 1}, "Trevor": {"_count": 1}}, "chuckled": {"_count": 1, "": {"_count": 1}}, "hurriedly": {"_count": 1, "": {"_count": 1}}, "beaming": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "proudly": {"_count": 1, "": {"_count": 1}}, "held": {"_count": 2, "the": {"_count": 1}, "out": {"_count": 1}}, "whose": {"_count": 5, "face": {"_count": 1}, "wand": {"_count": 1}, "eyes": {"_count": 1}, "legs": {"_count": 1}, "nose": {"_count": 1}}, "again": {"_count": 2, "in": {"_count": 1}, "but": {"_count": 1}}, "laughed": {"_count": 3, "": {"_count": 1}, "gleefully": {"_count": 1}, "Dawlish": {"_count": 1}}, "found": {"_count": 1, "seats": {"_count": 1}}, "Parvati": {"_count": 1, "and": {"_count": 1}}, "toward": {"_count": 1, "her": {"_count": 1}}, "winced": {"_count": 1, "it": {"_count": 1}}, "jogging": {"_count": 1, "toward": {"_count": 1}}, "now": {"_count": 3, "climbed": {"_count": 1}, "sat": {"_count": 1}, "passing": {"_count": 1}}, "asked": {"_count": 2, "as": {"_count": 1}, "suspiciously": {"_count": 1}}, "slipped": {"_count": 1, "sideways": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "struggled": {"_count": 1, "frantically": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "Lavender": {"_count": 1, "Parvati": {"_count": 1}}, "gleefully": {"_count": 1, "": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "brought": {"_count": 2, "this": {"_count": 1}, "off": {"_count": 1}}, "join": {"_count": 1, "Ron": {"_count": 1}}, "snuffled": {"_count": 1, "in": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "could": {"_count": 1, "leave": {"_count": 1}}, "Neville": {"_count": 1, "jumped": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "speaks": {"_count": 1, "most": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "proud": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 2, "something": {"_count": 1}, "up": {"_count": 1}}, "take": {"_count": 1, "it": {"_count": 1}}, "slip": {"_count": 1, "the": {"_count": 1}}, "nodding": {"_count": 1, "and": {"_count": 1}}, "left": {"_count": 1, "his": {"_count": 1}}, "departed": {"_count": 1, "for": {"_count": 1}}, "miserably": {"_count": 1, "who": {"_count": 1}}, "quietly": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "still": {"_count": 2, "more": {"_count": 1}, "choking": {"_count": 1}}, "simply": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 3, "Luna": {"_count": 2}, "I": {"_count": 1}}, "Ginny": {"_count": 2, "and": {"_count": 2}}, "uncomfortably": {"_count": 1, "": {"_count": 1}}, "dived": {"_count": 1, "under": {"_count": 1}}, "overturned": {"_count": 1, "his": {"_count": 1}}, "bringing": {"_count": 2, "up": {"_count": 1}, "down": {"_count": 1}}, "clearly": {"_count": 1, "determined": {"_count": 1}}, "horrified": {"_count": 1, "staring": {"_count": 1}}, "crawled": {"_count": 1, "rapidly": {"_count": 1}}, "fiercely": {"_count": 1, "from": {"_count": 1}}, "crawling": {"_count": 2, "out": {"_count": 1}, "along": {"_count": 1}}, "groped": {"_count": 1, "for": {"_count": 1}}, "mopping": {"_count": 1, "his": {"_count": 1}}, "firmly": {"_count": 2, "": {"_count": 2}}, "kicked": {"_count": 1, "aside": {"_count": 1}}, "thickly": {"_count": 1, "blood": {"_count": 1}}, "tottering": {"_count": 1, "slightly": {"_count": 1}}, "help": {"_count": 1, "me": {"_count": 1}}, "wheeling": {"_count": 1, "around": {"_count": 1}}, "it": {"_count": 2, "missed": {"_count": 1}, "would": {"_count": 1}}, "shouted": {"_count": 1, "again": {"_count": 1}}, "from": {"_count": 2, "behind": {"_count": 2}}, "screamed": {"_count": 1, "his": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "pulling": {"_count": 1, "him": {"_count": 1}}, "Dolohov": {"_count": 1, "his": {"_count": 1}}, "Can": {"_count": 1, "you": {"_count": 1}}, "catch": {"_count": 1, "it": {"_count": 1}}, "spun": {"_count": 1, "himself": {"_count": 1}}, "sank": {"_count": 1, "to": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "everythings": {"_count": 1, "settled": {"_count": 1}}, "indicating": {"_count": 1, "himself": {"_count": 1}}, "bumped": {"_count": 1, "his": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "recited": {"_count": 1, "his": {"_count": 1}}, "sitting": {"_count": 1, "opposite": {"_count": 1}}, "caught": {"_count": 1, "each": {"_count": 1}}, "Gryffindor": {"_count": 1, "and": {"_count": 1}}, "yet": {"_count": 1, "to": {"_count": 1}}, "turning": {"_count": 1, "geranium": {"_count": 1}}, "hung": {"_count": 1, "his": {"_count": 1}}, "turned": {"_count": 1, "very": {"_count": 1}}, "snored": {"_count": 1, "loudly": {"_count": 1}}, "picked": {"_count": 1, "himself": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "being": {"_count": 1, "helped": {"_count": 1}}, "whats": {"_count": 1, "happened": {"_count": 1}}, "dismissed": {"_count": 1, "his": {"_count": 1}}, "we": {"_count": 1, "havent": {"_count": 1}}, "shrugged": {"_count": 1, "": {"_count": 1}}, "shes": {"_count": 1, "all": {"_count": 1}}, "panting": {"_count": 1, "a": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "call": {"_count": 1, "out": {"_count": 1}}, "called": {"_count": 1, "and": {"_count": 1}}, "modestly": {"_count": 1, "": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "bellowed": {"_count": 1, "at": {"_count": 1}}, "nearly": {"_count": 1, "walked": {"_count": 1}}, "leaned": {"_count": 1, "against": {"_count": 1}}, "seized": {"_count": 1, "his": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "is": {"_count": 1}}, "moved": {"_count": 1, "too": {"_count": 1}}, "broke": {"_count": 1, "free": {"_count": 1}}, "sliced": {"_count": 1, "off": {"_count": 1}}, "our": {"_count": 1, "love": {"_count": 1}}, "James": {"_count": 1, "rolled": {"_count": 1}}}, "sigh": {"_count": 35, "": {"_count": 11, ".": {"_count": 11}}, "of": {"_count": 2, "the": {"_count": 1}, "relief": {"_count": 1}}, "and": {"_count": 7, "Harry": {"_count": 1}, "took": {"_count": 2}, "rubbed": {"_count": 1}, "then": {"_count": 1}, "fell": {"_count": 1}, "leaned": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "who": {"_count": 1, "knows": {"_count": 1}}, "which": {"_count": 1, "ruffled": {"_count": 1}}, "cast": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 1, "Parvati": {"_count": 1}}, "putting": {"_count": 1, "down": {"_count": 1}}, "he": {"_count": 1, "raised": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "half": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "his": {"_count": 1, "smoky": {"_count": 1}}, "lingering": {"_count": 1, "on": {"_count": 1}}}, "dreadlocks": {"_count": 2, "was": {"_count": 1, "surrounded": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "surrounded": {"_count": 58, "by": {"_count": 46, "a": {"_count": 13}, "trees": {"_count": 1}, "large": {"_count": 1}, "chintz": {"_count": 1}, "people": {"_count": 4}, "that": {"_count": 1}, "mediwizards": {"_count": 1}, "excited": {"_count": 1}, "admirers": {"_count": 1}, "heaps": {"_count": 2}, "friends": {"_count": 1}, "bushes": {"_count": 1}, "spear": {"_count": 1}, "Death": {"_count": 1}, "total": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}, "Weasleys": {"_count": 1}, "tall": {"_count": 1}, "six": {"_count": 1}, "streaks": {"_count": 1}, "the": {"_count": 1}, "mesmerized": {"_count": 1}, "high": {"_count": 1}, "henchmen": {"_count": 1}, "her": {"_count": 1}, "our": {"_count": 1}, "other": {"_count": 1}, "dementors": {"_count": 2}}, "them": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 4, "lake": {"_count": 1}, "water": {"_count": 1}, "rock": {"_count": 1}, "moment": {"_count": 1}}, "him": {"_count": 5, "his": {"_count": 2}, "": {"_count": 2}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}}, "Lee": {"_count": 91, "go": {"_count": 1, "on": {"_count": 1}}, "Jordans": {"_count": 4, "got": {"_count": 1}, "dad": {"_count": 1}, "commentary": {"_count": 1}, "Harry": {"_count": 1}}, "Jordan": {"_count": 45, "reckons": {"_count": 1}, "was": {"_count": 5}, "were": {"_count": 3}, "finally": {"_count": 1}, "": {"_count": 8}, "who": {"_count": 5}, "counting": {"_count": 1}, "told": {"_count": 1}, "as": {"_count": 1}, "sliding": {"_count": 1}, "in": {"_count": 1}, "pointing": {"_count": 1}, "jumping": {"_count": 1}, "hurrying": {"_count": 1}, "whispered": {"_count": 1}, "had": {"_count": 3}, "picking": {"_count": 1}, "juggling": {"_count": 1}, "and": {"_count": 2}, "past": {"_count": 1}, "all": {"_count": 1}, "covering": {"_count": 1}, "trying": {"_count": 1}, "came": {"_count": 1}, "saw": {"_count": 1}}, "was": {"_count": 4, "still": {"_count": 1}, "trying": {"_count": 1}, "saying": {"_count": 2}}, "but": {"_count": 1, "for": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 1}, "tied": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "swore": {"_count": 2, "so": {"_count": 1}, "very": {"_count": 1}}, "groaned": {"_count": 1, "": {"_count": 1}}, "exchanged": {"_count": 1, "looks": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "grinning": {"_count": 1, "broadly": {"_count": 1}}, "ignored": {"_count": 1, "her": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "passes": {"_count": 1}}, "passed": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "reassuringly": {"_count": 1, "as": {"_count": 1}}, "looking": {"_count": 1, "deeply": {"_count": 1}}, "and": {"_count": 2, "I": {"_count": 1}, "George": {"_count": 1}}, "collected": {"_count": 1, "gold": {"_count": 1}}, "paused": {"_count": 1, "to": {"_count": 1}}, "shouted": {"_count": 1, "and": {"_count": 1}}, "valiantly": {"_count": 1, "though": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "back": {"_count": 1}}, "put": {"_count": 1, "us": {"_count": 1}}, "Ron": {"_count": 1, "explained": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "so": {"_count": 1, "we": {"_count": 1}}}, "lifted": {"_count": 86, "the": {"_count": 16, "lid": {"_count": 1}, "hat": {"_count": 1}, "hair": {"_count": 2}, "Cup": {"_count": 1}, "wand": {"_count": 1}, "egg": {"_count": 1}, "basin": {"_count": 1}, "spell": {"_count": 1}, "culprit": {"_count": 1}, "glass": {"_count": 1}, "cup": {"_count": 1}, "golden": {"_count": 1}, "empty": {"_count": 1}, "Imperius": {"_count": 1}, "silvery": {"_count": 1}}, "their": {"_count": 3, "hair": {"_count": 1}, "bags": {"_count": 1}, "right": {"_count": 1}}, "a": {"_count": 2, "large": {"_count": 1}, "long": {"_count": 1}}, "him": {"_count": 6, "into": {"_count": 3}, "onto": {"_count": 1}, "bodily": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 9, "head": {"_count": 3}, "leg": {"_count": 1}, "trunk": {"_count": 1}, "arm": {"_count": 1}, "right": {"_count": 1}, "own": {"_count": 1}, "wand": {"_count": 1}}, "enough": {"_count": 1, "for": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 1}, "under": {"_count": 1}, "its": {"_count": 1}}, "Scabbers": {"_count": 1, "out": {"_count": 1}}, "Malfoy": {"_count": 1, "easily": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 3, "into": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "off": {"_count": 5, "his": {"_count": 4}, "the": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "its": {"_count": 1, "ugly": {"_count": 1}}, "Voldemorts": {"_count": 1, "followers": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "too": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "suddenly": {"_count": 1}}, "Harry": {"_count": 1, "up": {"_count": 1}}, "somewhat": {"_count": 1, "at": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}, "right": {"_count": 1, "off": {"_count": 1}}, "high": {"_count": 1, "into": {"_count": 1}}, "down": {"_count": 1, "Hedwigs": {"_count": 1}}, "her": {"_count": 2, "up": {"_count": 1}, "mood": {"_count": 1}}, "though": {"_count": 1, "I": {"_count": 1}}, "this": {"_count": 1, "enchantment": {"_count": 1}}, "known": {"_count": 1, "that": {"_count": 1}}, "Mundungus": {"_count": 1, "by": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "aside": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "off": {"_count": 1}}, "an": {"_count": 2, "inch": {"_count": 1}, "invisible": {"_count": 1}}, "Albus": {"_count": 1, "s": {"_count": 1}}}, "lid": {"_count": 19, "of": {"_count": 5, "a": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 1}}, "off": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 4, "showed": {"_count": 1}, "Harry": {"_count": 1}, "chunks": {"_count": 1}, "tipped": {"_count": 1}}, "creaked": {"_count": 1, "slowly": {"_count": 1}}, "shut": {"_count": 3, "at": {"_count": 1}, "also": {"_count": 1}, "and": {"_count": 1}}, "was": {"_count": 1, "open": {"_count": 1}}}, "poked": {"_count": 26, "out": {"_count": 4, "a": {"_count": 1}, "wearing": {"_count": 1}, "their": {"_count": 1}, "of": {"_count": 1}}, "her": {"_count": 3, "head": {"_count": 3}}, "Ron": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}, "the": {"_count": 1, "parcel": {"_count": 1}}, "them": {"_count": 1, "both": {"_count": 1}}, "his": {"_count": 4, "nose": {"_count": 1}, "shoulder": {"_count": 1}, "snoutlike": {"_count": 1}, "head": {"_count": 1}}, "a": {"_count": 4, "large": {"_count": 1}, "few": {"_count": 1}, "thick": {"_count": 1}, "couple": {"_count": 1}}, "him": {"_count": 2, "painfully": {"_count": 1}, "in": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}, "myself": {"_count": 1, "in": {"_count": 1}}, "Grawp": {"_count": 1, "hard": {"_count": 1}}, "themselves": {"_count": 1, "in": {"_count": 1}}, "its": {"_count": 1, "head": {"_count": 1}}}, "hairy": {"_count": 32, "leg": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 5, "beamed": {"_count": 1}, "appeared": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}}, "drinking": {"_count": 1, "deeply": {"_count": 1}}, "body": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "loose": {"_count": 1, "in": {"_count": 1}}, "seize": {"_count": 1, "him": {"_count": 1}}, "legs": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "gigantic": {"_count": 1, "": {"_count": 1}}, "chin": {"_count": 1, "": {"_count": 1}}, "brown": {"_count": 4, "suit": {"_count": 4}}, "moron": {"_count": 1, "trying": {"_count": 1}}, "and": {"_count": 2, "dressed": {"_count": 1}, "covered": {"_count": 1}}, "black": {"_count": 1, "body": {"_count": 1}}, "hams": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "snouted": {"_count": 1, "niffler": {"_count": 1}}, "arm": {"_count": 1, "descended": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "bass": {"_count": 1, "player": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "shins": {"_count": 1, "illuminated": {"_count": 1}}}, "compartment": {"_count": 80, "near": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 16}, "?": {"_count": 2}}, "slid": {"_count": 3, "open": {"_count": 3}}, "door": {"_count": 19, "shut": {"_count": 1}, "slid": {"_count": 4}, "and": {"_count": 4}, "": {"_count": 2}, "closed": {"_count": 1}, "suddenly": {"_count": 1}, "which": {"_count": 1}, "so": {"_count": 1}, "opened": {"_count": 1}, "behind": {"_count": 1}, "a": {"_count": 1}, "slammed": {"_count": 1}}, "and": {"_count": 7, "tipped": {"_count": 1}, "the": {"_count": 2}, "looking": {"_count": 1}, "rolled": {"_count": 1}, "Harry": {"_count": 1}, "Malfoy": {"_count": 1}}, "to": {"_count": 2, "themselves": {"_count": 2}}, "but": {"_count": 1, "all": {"_count": 1}}, "had": {"_count": 2, "its": {"_count": 1}, "quite": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "apparently": {"_count": 1, "very": {"_count": 1}}, "halfway": {"_count": 1, "along": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "by": {"_count": 1, "": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "the": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "C": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}, "when": {"_count": 2, "she": {"_count": 1}, "Zabini": {"_count": 1}}, "leapt": {"_count": 1, "onto": {"_count": 1}}, "he": {"_count": 2, "would": {"_count": 1}, "said": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "shove": {"_count": 4, "and": {"_count": 1, "heave": {"_count": 1}}, "the": {"_count": 1, "paper": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "bezoar": {"_count": 1}}}, "heave": {"_count": 8, "his": {"_count": 2, "trunk": {"_count": 2}}, "Dudley": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 3, "more": {"_count": 1}, "staggered": {"_count": 1}, "Nevilles": {"_count": 1}}, "the": {"_count": 1, "case": {"_count": 1}}, "himself": {"_count": 1, "up": {"_count": 1}}}, "raise": {"_count": 49, "one": {"_count": 1, "end": {"_count": 1}}, "his": {"_count": 9, "bow": {"_count": 1}, "wand": {"_count": 5}, "spirits": {"_count": 2}, "head": {"_count": 1}}, "some": {"_count": 1, "gold": {"_count": 1}}, "a": {"_count": 4, "dragon": {"_count": 1}, "lump": {"_count": 1}, "shaking": {"_count": 1}, "wand": {"_count": 1}}, "werewolf": {"_count": 1, "cubs": {"_count": 1}}, "your": {"_count": 2, "wand": {"_count": 1}, "glasses": {"_count": 1}}, "the": {"_count": 7, "wands": {"_count": 1}, "alarm": {"_count": 1}, "tone": {"_count": 1}, "boat": {"_count": 1}, "tiny": {"_count": 1}, "dead": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "em": {"_count": 1, "yerselves": {"_count": 1}}, "them": {"_count": 3, "": {"_count": 1}, "away": {"_count": 1}, "to": {"_count": 1}}, "an": {"_count": 1, "almighty": {"_count": 1}}, "her": {"_count": 4, "wand": {"_count": 4}}, "their": {"_count": 3, "hands": {"_count": 3}}, "awareness": {"_count": 1, "as": {"_count": 1}}, "every": {"_count": 1, "security": {"_count": 1}}, "you": {"_count": 1, "as": {"_count": 1}}, "Harrys": {"_count": 1, "morale": {"_count": 1}}, "its": {"_count": 2, "arm": {"_count": 1}, "wand": {"_count": 1}}, "himself": {"_count": 2, "out": {"_count": 1}, "He": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "suspicion": {"_count": 1, "when": {"_count": 1}}}, "painfully": {"_count": 32, "on": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 3}}, "and": {"_count": 2, "there": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "fast": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "Harrys": {"_count": 1}}, "hard": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 1}, "their": {"_count": 1}}, "regrown": {"_count": 1, "in": {"_count": 1}}, "excited": {"_count": 1, "": {"_count": 1}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "than": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "upon": {"_count": 1, "Harrys": {"_count": 1}}, "the": {"_count": 1, "Horcrux": {"_count": 1}}, "more": {"_count": 1, "powerfully": {"_count": 1}}, "limited": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "as": {"_count": 1}}}, "redhaired": {"_count": 12, "twins": {"_count": 1, "hed": {"_count": 1}}, "family": {"_count": 1, "on": {"_count": 1}}, "longnosed": {"_count": 1, "someone": {"_count": 1}}, "man": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "people": {"_count": 1, "Harry": {"_count": 1}}, "was": {"_count": 1, "Rons": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "wizard": {"_count": 1, "wearing": {"_count": 1}}, "person": {"_count": 1, "": {"_count": 1}}, "figure": {"_count": 1, "appeared": {"_count": 1}}, "and": {"_count": 1, "beardless": {"_count": 1}}}, "twins": {"_count": 77, "hed": {"_count": 1, "followed": {"_count": 1}}, "help": {"_count": 1, "Harrys": {"_count": 1}}, "suddenly": {"_count": 1, "pointing": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "hopped": {"_count": 1, "off": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "already": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 7, "back": {"_count": 1}, "left": {"_count": 1}, "punished": {"_count": 1}, "suddenly": {"_count": 1}, "hurled": {"_count": 1}, "gone": {"_count": 1}, "there": {"_count": 1}}, "slid": {"_count": 1, "the": {"_count": 1}}, "yelled": {"_count": 1, "We": {"_count": 1}}, "and": {"_count": 6, "could": {"_count": 1}, "Lee": {"_count": 1}, "leading": {"_count": 1}, "Ginny": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "insisted": {"_count": 1, "that": {"_count": 1}}, "are": {"_count": 1, "ours": {"_count": 1}}, "friend": {"_count": 3, "Lee": {"_count": 3}}, "forced": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 1, "you": {"_count": 1}}, "disappeared": {"_count": 1, "onto": {"_count": 1}}, "retreating": {"_count": 2, "backs": {"_count": 2}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "shorter": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 5, "evidently": {"_count": 1}, "refused": {"_count": 1}, "left": {"_count": 1}, "done": {"_count": 1}, "perfected": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 1}, "were": {"_count": 1}}, "names": {"_count": 1, "": {"_count": 1}}, "fastening": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "Ravenclaw": {"_count": 1}}, "best": {"_count": 1, "friend": {"_count": 1}}, "rolled": {"_count": 1, "up": {"_count": 1}}, "turned": {"_count": 1, "": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "slamming": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 3, "take": {"_count": 1}, "fetch": {"_count": 1}, "wear": {"_count": 1}}, "heads": {"_count": 1, "turned": {"_count": 1}}, "Disapparated": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "Rons": {"_count": 1}}, "outstretched": {"_count": 1, "hands": {"_count": 1}}, "his": {"_count": 1, "Triwizard": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "chain": {"_count": 1}}, "divebomb": {"_count": 1, "Umbridge": {"_count": 1}}, "new": {"_count": 1, "clothes": {"_count": 1}}, "parents": {"_count": 2, "want": {"_count": 1}, "wanting": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "wound": {"_count": 1, "as": {"_count": 1}}, "grins": {"_count": 1, "turned": {"_count": 1}}, "many": {"_count": 1, "jokes": {"_count": 1}}}, "panted": {"_count": 74, "": {"_count": 16, ".": {"_count": 16}}, "leaning": {"_count": 1, "against": {"_count": 1}}, "Harry": {"_count": 7, "and": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 2}, "sir": {"_count": 1}, "who": {"_count": 1}, "tightening": {"_count": 1}}, "forcing": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 4, "they": {"_count": 3}, "he": {"_count": 1}}, "Hermione": {"_count": 3, "hurrying": {"_count": 1}, "": {"_count": 2}}, "Fred": {"_count": 1, "who": {"_count": 1}}, "Ron": {"_count": 3, "was": {"_count": 1}, "holding": {"_count": 1}, "": {"_count": 1}}, "closing": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "told": {"_count": 1}}, "darting": {"_count": 1, "here": {"_count": 1}}, "still": {"_count": 1, "trying": {"_count": 1}}, "Mr": {"_count": 3, "Weasley": {"_count": 3}}, "almost": {"_count": 1, "trampling": {"_count": 1}}, "coming": {"_count": 1, "over": {"_count": 1}}, "skidding": {"_count": 2, "to": {"_count": 2}}, "snatching": {"_count": 1, "at": {"_count": 1}}, "massaging": {"_count": 2, "his": {"_count": 2}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "at": {"_count": 1, "it": {"_count": 1}}, "Cedric": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "Cedric": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "his": {"_count": 1, "chest": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "staring": {"_count": 1, "up": {"_count": 1}}, "along": {"_count": 1, "behind": {"_count": 1}}, "tipping": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "her": {"_count": 1}, "then": {"_count": 1}}, "Sloper": {"_count": 1, "": {"_count": 1}}, "disentangling": {"_count": 1, "himself": {"_count": 1}}, "Hagrid": {"_count": 2, "still": {"_count": 1}, "this": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "slipping": {"_count": 1, "off": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "Griphook": {"_count": 1, "but": {"_count": 1}}}, "Oy": {"_count": 7, "Fred": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "there": {"_count": 1}, "": {"_count": 1}}, "peabrain": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "Potter": {"_count": 1, "": {"_count": 1}}}, "Cmere": {"_count": 2, "and": {"_count": 1, "help": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "Thanks": {"_count": 90, "said": {"_count": 19, "Harry": {"_count": 13}, "Sirius": {"_count": 1}, "Hermione": {"_count": 2}, "Ginny": {"_count": 1}, "George": {"_count": 1}, "Ron": {"_count": 1}}, "and": {"_count": 1, "hurried": {"_count": 1}}, "Seamus": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "said": {"_count": 2}}, "for": {"_count": 12, "the": {"_count": 6}, "your": {"_count": 2}, "having": {"_count": 1}, "": {"_count": 2}, "patching": {"_count": 1}}, "Potter": {"_count": 1, "we": {"_count": 1}}, "Nick": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 4, "much": {"_count": 4}}, "": {"_count": 7, ".": {"_count": 4}, "!": {"_count": 3}}, "Basil": {"_count": 1, "said": {"_count": 1}}, "Hedwig": {"_count": 1, "he": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 10, "lot": {"_count": 7}, "bunch": {"_count": 1}, "million": {"_count": 2}}, "she": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 5, "you": {"_count": 1}, "Snape": {"_count": 1}, "Mrs": {"_count": 1}, "his": {"_count": 1}, "Luna": {"_count": 1}}, "Lee": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 4, "said": {"_count": 4}}, "snarled": {"_count": 1, "Ron": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "Mum": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Molly": {"_count": 1, "": {"_count": 1}}, "Bill": {"_count": 1, "said": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Jimmy": {"_count": 1, "": {"_count": 1}}, "Dedalus": {"_count": 1, "said": {"_count": 1}}, "Kreacher": {"_count": 2, "said": {"_count": 1}, "but": {"_count": 1}}, "D": {"_count": 1, "I": {"_count": 1}}, "River": {"_count": 2, "said": {"_count": 2}}, "muttered": {"_count": 1, "Dean": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}}, "sweaty": {"_count": 16, "hair": {"_count": 1, "out": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "nose": {"_count": 1, "": {"_count": 1}}, "aching": {"_count": 1, "and": {"_count": 1}}, "brow": {"_count": 1, "with": {"_count": 1}}, "hands": {"_count": 1, "slipping": {"_count": 1}}, "face": {"_count": 3, "and": {"_count": 1}, "with": {"_count": 1}, "suddenly": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "Tshirt": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "walrus": {"_count": 1}}}, "Arent": {"_count": 17, "you": {"_count": 10, "": {"_count": 2}, "finished": {"_count": 1}, "Lucius": {"_count": 1}, "going": {"_count": 1}, "two": {"_count": 1}, "listening": {"_count": 2}, "the": {"_count": 1}, "supposed": {"_count": 1}}, "they": {"_count": 2, "Harry": {"_count": 1}, "beautiful": {"_count": 1}}, "arent": {"_count": 3, "you": {"_count": 2}, "we": {"_count": 1}}, "we": {"_count": 2, "supposed": {"_count": 1}, "going": {"_count": 1}}}, "chorused": {"_count": 3, "the": {"_count": 2, "twins": {"_count": 1}, "rest": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}}, "gawked": {"_count": 1, "at": {"_count": 1, "him": {"_count": 1}}}, "floating": {"_count": 59, "in": {"_count": 11, "through": {"_count": 1}, "midair": {"_count": 6}, "glass": {"_count": 1}, "front": {"_count": 2}, "the": {"_count": 1}}, "cross": {"_count": 1, "legged": {"_count": 1}}, "along": {"_count": 4, "in": {"_count": 2}, "after": {"_count": 1}, "the": {"_count": 1}}, "up": {"_count": 1, "near": {"_count": 1}}, "car": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 2}}, "above": {"_count": 1, "the": {"_count": 1}}, "overhead": {"_count": 1, "": {"_count": 1}}, "immobile": {"_count": 1, "and": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "crosseyed": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "upside": {"_count": 1, "down": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "around": {"_count": 4, "": {"_count": 2}, "Wisteria": {"_count": 1}, "them": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "bodies": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "skull": {"_count": 1, "reflected": {"_count": 1}}, "twenty": {"_count": 1, "feet": {"_count": 1}}, "sensation": {"_count": 1, "as": {"_count": 1}}, "there": {"_count": 2, "for": {"_count": 1}, "looking": {"_count": 1}}, "hazily": {"_count": 1, "in": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "dreaming": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "hand": {"_count": 1}}, "an": {"_count": 1, "inch": {"_count": 1}}, "dreamily": {"_count": 1, "up": {"_count": 1}}, "gently": {"_count": 1, "down": {"_count": 1}}, "upward": {"_count": 1, "through": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "candles": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 1, "crimson": {"_count": 1}}, "inches": {"_count": 1, "below": {"_count": 1}}, "golden": {"_count": 1, "lanterns": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "Coming": {"_count": 12, "Mom": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 2, "here": {"_count": 1}, "because": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "through": {"_count": 1, "coming": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "nearer": {"_count": 1, "all": {"_count": 1}}, "next": {"_count": 1, "week": {"_count": 1}}}, "jerk": {"_count": 20, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 3, "Harry": {"_count": 1}, "opened": {"_count": 1}, "smacked": {"_count": 1}}, "around": {"_count": 1, "out": {"_count": 1}}, "of": {"_count": 6, "his": {"_count": 1}, "the": {"_count": 3}, "her": {"_count": 2}}, "more": {"_count": 1, "violently": {"_count": 1}}, "somewhere": {"_count": 1, "behind": {"_count": 1}}, "behind": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "did": {"_count": 1}}, "the": {"_count": 1, "cart": {"_count": 1}}}, "geroff": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "aah": {"_count": 14, "has": {"_count": 1, "ickle": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 1}, ".": {"_count": 6}}, "ats": {"_count": 1, "beer": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "yes": {"_count": 1, "said": {"_count": 1}}, "don": {"_count": 1, "worry": {"_count": 1}}, "George": {"_count": 1, "look": {"_count": 1}}}, "ickle": {"_count": 6, "Ronnie": {"_count": 2, "got": {"_count": 1}, "the": {"_count": 1}}, "Ronniekins": {"_count": 1, "is": {"_count": 1}}, "goblins": {"_count": 1, "now": {"_count": 1}}, "boxing": {"_count": 1, "champ": {"_count": 1}}, "creatures": {"_count": 1, "squabbling": {"_count": 1}}}, "Ronnie": {"_count": 4, "got": {"_count": 1, "somefink": {"_count": 1}}, "the": {"_count": 1, "prefect": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "prefect": {"_count": 1}}}, "somefink": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "nosie": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Shut": {"_count": 40, "up": {"_count": 30, "said": {"_count": 5}, "Malfoy": {"_count": 5}, "both": {"_count": 1}, "Peeves": {"_count": 1}, "you": {"_count": 2}, "": {"_count": 3}, "Im": {"_count": 1}, "snapped": {"_count": 1}, "Pig": {"_count": 1}, "Dudley": {"_count": 1}, "and": {"_count": 2}, "What": {"_count": 1}, "Ron": {"_count": 4}, "now": {"_count": 1}, "about": {"_count": 1}}, "it": {"_count": 5, "you": {"_count": 1}, "": {"_count": 2}, "snarled": {"_count": 1}, "growled": {"_count": 1}}, "your": {"_count": 4, "eyes": {"_count": 1}, "face": {"_count": 1}, "mouth": {"_count": 2}}, "the": {"_count": 1, "door": {"_count": 1}}}, "striding": {"_count": 59, "into": {"_count": 4, "sight": {"_count": 1}, "view": {"_count": 1}, "the": {"_count": 2}}, "toward": {"_count": 11, "them": {"_count": 10}, "the": {"_count": 1}}, "out": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "the": {"_count": 1, "grounds": {"_count": 1}}, "past": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "up": {"_count": 6, "and": {"_count": 2}, "the": {"_count": 3}, "to": {"_count": 1}}, "over": {"_count": 7, "to": {"_count": 7}}, "back": {"_count": 1, "out": {"_count": 1}}, "across": {"_count": 4, "the": {"_count": 4}}, "off": {"_count": 3, "into": {"_count": 1}, "up": {"_count": 1}, "once": {"_count": 1}}, "along": {"_count": 2, "so": {"_count": 1}, "looking": {"_count": 1}}, "serenely": {"_count": 1, "across": {"_count": 1}}, "among": {"_count": 1, "them": {"_count": 1}}, "away": {"_count": 3, "from": {"_count": 2}, "down": {"_count": 1}}, "forward": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 2}}, "next": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "backward": {"_count": 2, "and": {"_count": 2}}, "through": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}}, "badge": {"_count": 57, "on": {"_count": 6, "his": {"_count": 2}, "Percys": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 2}}, "": {"_count": 15, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 1}}, "like": {"_count": 1, "Bill": {"_count": 1}}, "pinned": {"_count": 1, "to": {"_count": 1}}, "agleam": {"_count": 1, "an": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "was": {"_count": 2, "glinting": {"_count": 1}, "on": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "Hermione": {"_count": 1}}, "is": {"_count": 1, "gone": {"_count": 1}}, "now": {"_count": 1, "read": {"_count": 1}}, "and": {"_count": 3, "looking": {"_count": 1}, "the": {"_count": 1}, "attach": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "smirking": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "Harry": {"_count": 1}, "glee": {"_count": 1}}, "back": {"_count": 2, "at": {"_count": 1}, "into": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "said": {"_count": 2, "George": {"_count": 1}, "Fred": {"_count": 1}}, "laugh": {"_count": 1, "with": {"_count": 1}}, "around": {"_count": 1, "first": {"_count": 1}}, "three": {"_count": 1, "minutes": {"_count": 1}}, "gleaming": {"_count": 2, "on": {"_count": 1}, "upon": {"_count": 1}}, "emblazoned": {"_count": 1, "with": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "that": {"_count": 1, "flickered": {"_count": 1}}}, "P": {"_count": 37, "on": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 2, "prefect": {"_count": 1}, "\u2018Poor": {"_count": 1}}, "P": {"_count": 1, "Professor": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 25}}, "Petunia": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "superimposed": {"_count": 1}}, "PPercys": {"_count": 1, "not": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "stand": {"_count": 1, "for": {"_count": 1}}, "Exceeds": {"_count": 1, "Expectations": {"_count": 1}}, "Herbology": {"_count": 1, "E": {"_count": 1}}}, "Mother": {"_count": 16, "he": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "slightly": {"_count": 1}}, "said": {"_count": 1, "Percy": {"_count": 1}}, "didnt": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "stop": {"_count": 1, "him": {"_count": 1}}, "I": {"_count": 2, "didnt": {"_count": 1}, "dont": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "a": {"_count": 1, "Mudblood": {"_count": 1}}, "wants": {"_count": 1, "me": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 1, "Maisie": {"_count": 1}}}, "prefects": {"_count": 43, "have": {"_count": 1, "got": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "!": {"_count": 3}}, "today": {"_count": 1, "either": {"_count": 1}}, "My": {"_count": 1, "brother": {"_count": 1}}, "and": {"_count": 4, "their": {"_count": 1}, "ghosts": {"_count": 1}, "our": {"_count": 1}, "the": {"_count": 1}}, "were": {"_count": 1, "around": {"_count": 1}}, "badge": {"_count": 6, "was": {"_count": 1}, "": {"_count": 3}, "around": {"_count": 1}, "gleaming": {"_count": 1}}, "for": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "stand": {"_count": 1}, "take": {"_count": 1}}, "bathroom": {"_count": 4, "": {"_count": 2}, "far": {"_count": 1}, "was": {"_count": 1}}, "take": {"_count": 1, "baths": {"_count": 1}}, "being": {"_count": 1, "chosen": {"_count": 1}}, "because": {"_count": 1, "theyve": {"_count": 1}}, "from": {"_count": 1, "each": {"_count": 1}}, "surely": {"_count": 1, "dont": {"_count": 1}}, "Ernie": {"_count": 1, "burst": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "too": {"_count": 1, "remember": {"_count": 1}}, "cant": {"_count": 1, "dock": {"_count": 1}}, "carriage": {"_count": 2, "first": {"_count": 1}, "but": {"_count": 1}}, "duty": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "But": {"_count": 1, "her": {"_count": 1}}}, "compartments": {"_count": 7, "to": {"_count": 4, "themselves": {"_count": 1}, "a": {"_count": 1}, "get": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "they": {"_count": 1, "passed": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}}, "themselves": {"_count": 235, "Oh": {"_count": 1, "are": {"_count": 1}}, "at": {"_count": 8, "him": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 1}, "any": {"_count": 1}, "each": {"_count": 1}}, "in": {"_count": 14, "the": {"_count": 4}, "a": {"_count": 6}, "Harry": {"_count": 1}, "chairs": {"_count": 1}, "studying": {"_count": 1}, "after": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 30}, "?": {"_count": 2}, "!": {"_count": 1}}, "and": {"_count": 11, "the": {"_count": 2}, "retreated": {"_count": 1}, "climbing": {"_count": 1}, "Professor": {"_count": 1}, "bluffing": {"_count": 1}, "those": {"_count": 1}, "I": {"_count": 1}, "Peeves": {"_count": 1}, "pelted": {"_count": 1}, "though": {"_count": 1}}, "working": {"_count": 1, "late": {"_count": 1}}, "to": {"_count": 12, "themselves": {"_count": 1}, "laugh": {"_count": 1}, "lamb": {"_count": 1}, "the": {"_count": 1}, "food": {"_count": 2}, "be": {"_count": 2}, "help": {"_count": 1}, "watch": {"_count": 1}, "trying": {"_count": 1}, "have": {"_count": 1}}, "mostly": {"_count": 1, "but": {"_count": 1}}, "tightly": {"_count": 3, "around": {"_count": 3}}, "making": {"_count": 1, "gold": {"_count": 1}}, "they": {"_count": 3, "were": {"_count": 1}, "set": {"_count": 1}, "half": {"_count": 1}}, "hoarse": {"_count": 1, "knew": {"_count": 1}}, "clinking": {"_count": 1, "gently": {"_count": 1}}, "the": {"_count": 4, "speed": {"_count": 1}, "unwilling": {"_count": 1}, "sobbing": {"_count": 1}, "hours": {"_count": 1}}, "with": {"_count": 4, "fur": {"_count": 1}, "a": {"_count": 1}, "anything": {"_count": 1}, "excitement": {"_count": 1}}, "facetoface": {"_count": 1, "with": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "i": {"_count": 1, "am": {"_count": 1}}, "outside": {"_count": 2, "Professor": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 5, "their": {"_count": 2}, "either": {"_count": 1}, "being": {"_count": 1}, "the": {"_count": 1}}, "were": {"_count": 3, "never": {"_count": 1}, "more": {"_count": 1}, "slumped": {"_count": 1}}, "killed": {"_count": 2, "in": {"_count": 1}, "by": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 3}, "fading": {"_count": 1}, "with": {"_count": 1}}, "theyve": {"_count": 1, "even": {"_count": 1}}, "around": {"_count": 8, "the": {"_count": 3}, "Lupins": {"_count": 1}, "Harrys": {"_count": 1}, "Barty": {"_count": 1}, "Rons": {"_count": 1}, "small": {"_count": 1}}, "against": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "from": {"_count": 5, "long": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 3}}, "when": {"_count": 1, "they": {"_count": 1}}, "hidden": {"_count": 1, "under": {"_count": 1}}, "again": {"_count": 2, "before": {"_count": 1}, "": {"_count": 1}}, "deep": {"_count": 1, "into": {"_count": 1}}, "darting": {"_count": 1, "here": {"_count": 1}}, "together": {"_count": 1, "soon": {"_count": 1}}, "down": {"_count": 3, "to": {"_count": 1}, "opposite": {"_count": 1}, "on": {"_count": 1}}, "behind": {"_count": 1, "said": {"_count": 1}}, "crosslegged": {"_count": 1, "to": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "Bill": {"_count": 1}, "Hermione": {"_count": 1}}, "of": {"_count": 1, "pimples": {"_count": 1}}, "present": {"_count": 1, "Ive": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 6, "champion": {"_count": 1}, "much": {"_count": 1}, "small": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 1}, "though": {"_count": 1}}, "up": {"_count": 2, "a": {"_count": 1}, "and": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 8, "fists": {"_count": 1}, "silence": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "adjoining": {"_count": 1}, "two": {"_count": 1}, "believing": {"_count": 1}, "each": {"_count": 1}}, "nearest": {"_count": 1, "the": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "roast": {"_count": 1, "beef": {"_count": 1}}, "had": {"_count": 3, "met": {"_count": 1}, "come": {"_count": 1}, "become": {"_count": 1}}, "more": {"_count": 1, "arrogant": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 3, "Ive": {"_count": 1}, "to": {"_count": 1}, "Hermione": {"_count": 1}}, "becoming": {"_count": 1, "curiously": {"_count": 1}}, "since": {"_count": 1, "they": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "stupid": {"_count": 1, "when": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "hastily": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "Hagrid": {"_count": 1, "youve": {"_count": 1}}, "skating": {"_count": 1, "on": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "read": {"_count": 1, "it": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "excuse": {"_count": 1}}, "before": {"_count": 2, "leaving": {"_count": 1}, "his": {"_count": 1}}, "a": {"_count": 1, "break": {"_count": 1}}, "weirdly": {"_count": 1, "echoing": {"_count": 1}}, "averse": {"_count": 1, "to": {"_count": 1}}, "upon": {"_count": 5, "the": {"_count": 1}, "Aunt": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 2}}, "generally": {"_count": 1, "meant": {"_count": 1}}, "clean": {"_count": 1, "": {"_count": 1}}, "trustworthy": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 3, "Ron": {"_count": 1}, "they": {"_count": 1}, "Death": {"_count": 1}}, "or": {"_count": 2, "so": {"_count": 1}, "it": {"_count": 1}}, "have": {"_count": 1, "a": {"_count": 1}}, "either": {"_count": 1, "swaggering": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 1}, "interview": {"_count": 1}, "interrogation": {"_count": 1}, "him": {"_count": 1}}, "thats": {"_count": 2, "why": {"_count": 1}, "possible": {"_count": 1}}, "artistically": {"_count": 1, "over": {"_count": 1}}, "impressive": {"_count": 1, "until": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "hanging": {"_count": 1, "elsewhere": {"_count": 1}}, "concealed": {"_count": 1, "while": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "removed": {"_count": 1, "them": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}}, "prefect": {"_count": 70, "Percy": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "their": {"_count": 1}, "Fred": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 14}, "!": {"_count": 6}, "?": {"_count": 3}}, "but": {"_count": 2, "they": {"_count": 1}, "Harry": {"_count": 1}}, "hed": {"_count": 1, "put": {"_count": 1}}, "badge": {"_count": 10, "": {"_count": 4}, "pinned": {"_count": 1}, "agleam": {"_count": 1}, "so": {"_count": 1}, "back": {"_count": 1}, "was": {"_count": 1}, "gleaming": {"_count": 1}}, "yet": {"_count": 1, "but": {"_count": 1}}, "to": {"_count": 1, "support": {"_count": 1}}, "were": {"_count": 1, "found": {"_count": 1}}, "model": {"_count": 1, "student": {"_count": 1}}, "Penelope": {"_count": 1, "Clearwater": {"_count": 1}}, "downstairs": {"_count": 1, "told": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 1, "me": {"_count": 1}}, "is": {"_count": 1, "something": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "myself": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 3, "spent": {"_count": 1}, "was": {"_count": 1}, "gather": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "carriage": {"_count": 1, "Hermione": {"_count": 1}}, "when": {"_count": 1, "shes": {"_count": 1}}, "which": {"_count": 2, "means": {"_count": 1}, "he": {"_count": 1}}, "badges": {"_count": 1, "carefully": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "duties": {"_count": 2, "": {"_count": 1}, "also": {"_count": 1}}, "snarled": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 1, "if": {"_count": 1}}, "system": {"_count": 1, "": {"_count": 1}}, "duty": {"_count": 1, "": {"_count": 1}}, "seems": {"_count": 1, "a": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "Head": {"_count": 1, "Boy": {"_count": 1}}}, "Hang": {"_count": 39, "on": {"_count": 38, "I": {"_count": 1}, "he": {"_count": 1}, "Ive": {"_count": 1}, "this": {"_count": 1}, "": {"_count": 10}, "said": {"_count": 9}, "blurted": {"_count": 1}, "theres": {"_count": 1}, "Ill": {"_count": 3}, "Harrys": {"_count": 1}, "it": {"_count": 1}, "dont": {"_count": 1}, "you": {"_count": 2}, "damn": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 2}, "though": {"_count": 1}}, "around": {"_count": 1, "I": {"_count": 1}}}, "Prefect": {"_count": 11, "": {"_count": 6, ".": {"_count": 3}, "?": {"_count": 3}}, "got": {"_count": 1, "up": {"_count": 1}}, "Head": {"_count": 1, "Boy": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "were": {"_count": 1}}, "Winner": {"_count": 1, "of": {"_count": 1}}}, "Because": {"_count": 113, "hes": {"_count": 4, "a": {"_count": 1}, "being": {"_count": 1}, "stopped": {"_count": 1}, "told": {"_count": 1}}, "theyre": {"_count": 2, "here": {"_count": 1}, "REAL": {"_count": 1}}, "because": {"_count": 1, "Harry": {"_count": 1}}, "a": {"_count": 2, "cat": {"_count": 1}, "Horcrux": {"_count": 1}}, "Filch": {"_count": 1, "made": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "if": {"_count": 7, "he": {"_count": 2}, "Harry": {"_count": 1}, "you": {"_count": 2}, "taken": {"_count": 1}, "it": {"_count": 1}}, "Harry": {"_count": 3, "couldnt": {"_count": 1}, "knew": {"_count": 1}, "hesitated": {"_count": 1}}, "my": {"_count": 1, "mother": {"_count": 1}}, "you": {"_count": 6, "gave": {"_count": 1}, "never": {"_count": 1}, "and": {"_count": 1}, "are": {"_count": 1}, "yourself": {"_count": 1}, "got": {"_count": 1}}, "the": {"_count": 5, "castles": {"_count": 1}, "Marauders": {"_count": 1}, "Ministry": {"_count": 1}, "headmaster": {"_count": 1}, "only": {"_count": 1}}, "Black": {"_count": 1, "turned": {"_count": 1}}, "Blacks": {"_count": 1, "not": {"_count": 1}}, "I": {"_count": 15, "thought": {"_count": 2}, "was": {"_count": 1}, "want": {"_count": 1}, "dont": {"_count": 1}, "did": {"_count": 1}, "used": {"_count": 1}, "hated": {"_count": 1}, "saw": {"_count": 1}, "recognized": {"_count": 1}, "have": {"_count": 1}, "think": {"_count": 1}, "am": {"_count": 1}, "knew": {"_count": 1}, "know": {"_count": 1}}, "her": {"_count": 1, "cat": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "he": {"_count": 4, "knew": {"_count": 1}, "doesnt": {"_count": 1}, "didnt": {"_count": 1}, "was": {"_count": 1}}, "fool": {"_count": 1, "at": {"_count": 1}}, "youre": {"_count": 2, "not": {"_count": 1}, "the": {"_count": 1}}, "youve": {"_count": 2, "got": {"_count": 2}}, "of": {"_count": 5, "": {"_count": 1}, "the": {"_count": 3}, "what": {"_count": 1}}, "they": {"_count": 3, "hoodwinked": {"_count": 1}, "got": {"_count": 1}, "know": {"_count": 1}}, "Moodys": {"_count": 1, "right": {"_count": 1}}, "George": {"_count": 1, "wants": {"_count": 1}}, "we": {"_count": 3, "want": {"_count": 1}, "used": {"_count": 1}, "saw": {"_count": 1}}, "oh": {"_count": 1, "shut": {"_count": 1}}, "Rita": {"_count": 1, "Skeeters": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "accepting": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 4, "means": {"_count": 2}, "is": {"_count": 1}, "would": {"_count": 1}}, "that": {"_count": 2, "is": {"_count": 1}, "things": {"_count": 1}}, "were": {"_count": 2, "prefects": {"_count": 1}, "with": {"_count": 1}}, "youll": {"_count": 1, "keep": {"_count": 1}}, "shell": {"_count": 1, "never": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "detentions": {"_count": 1, "do": {"_count": 1}}, "said": {"_count": 4, "Hermione": {"_count": 1}, "Harry": {"_count": 2}, "Krum": {"_count": 1}}, "Lord": {"_count": 1, "Voldemorts": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "Cho": {"_count": 1, "spends": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "Griselda": {"_count": 1, "Marchbanks": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "its": {"_count": 1, "probably": {"_count": 1}}, "hell": {"_count": 1, "just": {"_count": 1}}, "Morfin": {"_count": 1, "could": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "e": {"_count": 1, "will": {"_count": 1}}, "Snitches": {"_count": 1, "have": {"_count": 1}}, "whatevers": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}}, "fondly": {"_count": 13, "": {"_count": 7, ".": {"_count": 7}}, "leading": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 3, "them": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "ruffling": {"_count": 1, "Rons": {"_count": 1}}, "and": {"_count": 1, "when": {"_count": 1}}}, "behave": {"_count": 13, "yourselves": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "yourself": {"_count": 2, "got": {"_count": 1}, "": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "it": {"_count": 1, "now": {"_count": 1}}, "myself": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "if": {"_count": 1, "Umbridge": {"_count": 1}}, "as": {"_count": 1, "Katie": {"_count": 1}}, "I": {"_count": 1, "spose": {"_count": 1}}}, "yourselves": {"_count": 32, "": {"_count": 7, ".": {"_count": 4}, "?": {"_count": 2}, "!": {"_count": 1}}, "up": {"_count": 2, "as": {"_count": 1}, "a": {"_count": 1}}, "dont": {"_count": 1, "want": {"_count": 1}}, "facing": {"_count": 1, "your": {"_count": 1}}, "as": {"_count": 2, "I": {"_count": 1}, "investigators": {"_count": 1}}, "she": {"_count": 1, "called": {"_count": 1}}, "at": {"_count": 1, "home": {"_count": 1}}, "call": {"_count": 1, "me": {"_count": 1}}, "said": {"_count": 2, "Lupin": {"_count": 2}}, "but": {"_count": 1, "youre": {"_count": 1}}, "justice": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "properly": {"_count": 1, "is": {"_count": 1}}, "than": {"_count": 1, "sitting": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "always": {"_count": 1, "with": {"_count": 1}}, "now": {"_count": 1, "so": {"_count": 1}}, "and": {"_count": 2, "Ginny": {"_count": 1}, "run": {"_count": 1}}, "here": {"_count": 1, "they": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 1, "sugar": {"_count": 1}}}, "Ronniekins": {"_count": 1, "is": {"_count": 1, "safe": {"_count": 1}}}, "rubbed": {"_count": 16, "it": {"_count": 1, "": {"_count": 1}}, "hard": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 10, "eyes": {"_count": 2}, "shadowed": {"_count": 1}, "left": {"_count": 1}, "forehead": {"_count": 4}, "nose": {"_count": 1}, "scar": {"_count": 1}}, "raw": {"_count": 1, "said": {"_count": 1}}, "vigorously": {"_count": 1, "then": {"_count": 1}}, "the": {"_count": 1, "lightningshaped": {"_count": 1}}, "along": {"_count": 1, "as": {"_count": 1}}}, "Hey": {"_count": 53, "Mom": {"_count": 1, "guess": {"_count": 1}}, "Ron": {"_count": 3, "": {"_count": 1}, "what": {"_count": 1}, "said": {"_count": 1}}, "Potter": {"_count": 4, "come": {"_count": 1}, "": {"_count": 2}, "hows": {"_count": 1}}, "look": {"_count": 1, "Harrys": {"_count": 1}}, "wherere": {"_count": 1, "yeh": {"_count": 1}}, "Harry": {"_count": 12, "come": {"_count": 1}, "said": {"_count": 3}, "Ron": {"_count": 1}, "": {"_count": 3}, "whats": {"_count": 1}, "Hermione": {"_count": 1}, "there": {"_count": 1}, "Im": {"_count": 1}}, "Colin": {"_count": 1, "looked": {"_count": 1}}, "thats": {"_count": 2, "mine": {"_count": 1}, "an": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "guess": {"_count": 1, "who": {"_count": 1}}, "Winky": {"_count": 1, "said": {"_count": 1}}, "Hermione": {"_count": 1, "I": {"_count": 1}}, "Big": {"_count": 1, "D": {"_count": 1}}, "hey": {"_count": 2, "you": {"_count": 1}, "Nick": {"_count": 1}}, "I": {"_count": 1, "forgot": {"_count": 1}}, "has": {"_count": 1, "Gryffindor": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 5}, ".": {"_count": 2}}, "Johnson": {"_count": 1, "whats": {"_count": 1}}, "Potty": {"_count": 1, "I": {"_count": 1}}, "CHO": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "says": {"_count": 1}}, "Professor": {"_count": 1, "PROFESSOR": {"_count": 1}}, "EVANS": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "did": {"_count": 1, "someone": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "its": {"_count": 1, "from": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "wait": {"_count": 1, "come": {"_count": 1}}}, "Guess": {"_count": 8, "who": {"_count": 3, "we": {"_count": 1}, "I": {"_count": 1}, "WonWon": {"_count": 1}}, "oo": {"_count": 1, "Neville": {"_count": 1}}, "what": {"_count": 4, "Harry": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}}, "blackhaired": {"_count": 14, "boy": {"_count": 3, "who": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}}, "witch": {"_count": 2, "in": {"_count": 1}, "waved": {"_count": 1}}, "man": {"_count": 3, "standing": {"_count": 1}, "stared": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 1, "bodied": {"_count": 1}}, "bespectacled": {"_count": 1, "boy": {"_count": 1}}, "boys": {"_count": 1, "head": {"_count": 1}}, "woman": {"_count": 1, "descended": {"_count": 1}}, "baby": {"_count": 1, "was": {"_count": 1}}, "like": {"_count": 1, "Snape": {"_count": 1}}}, "Potted": {"_count": 3, "Harry": {"_count": 1, "heard": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}}, "girls": {"_count": 155, "voice": {"_count": 4, "": {"_count": 1}, "reproachfully": {"_count": 1}, "as": {"_count": 1}, "again": {"_count": 1}}, "Path": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 1, "one": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "bathroom": {"_count": 12, "and": {"_count": 1}, "": {"_count": 5}, "on": {"_count": 2}, "she": {"_count": 1}, "the": {"_count": 1}, "moreover": {"_count": 1}, "just": {"_count": 1}}, "dormitories": {"_count": 11, "": {"_count": 4}, "and": {"_count": 1}, "again": {"_count": 1}, "then": {"_count": 1}, "said": {"_count": 1}, "wearing": {"_count": 1}, "banging": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "toilet": {"_count": 2, "": {"_count": 2}}, "": {"_count": 13, ".": {"_count": 10}, "?": {"_count": 2}, "!": {"_count": 1}}, "parents": {"_count": 1, "will": {"_count": 1}}, "and": {"_count": 3, "boys": {"_count": 1}, "Ron": {"_count": 1}, "with": {"_count": 1}}, "had": {"_count": 1, "come": {"_count": 1}}, "who": {"_count": 9, "had": {"_count": 5}, "screamed": {"_count": 1}, "were": {"_count": 1}, "didnt": {"_count": 1}, "giggled": {"_count": 1}}, "appeared": {"_count": 2, "in": {"_count": 2}}, "got": {"_count": 1, "to": {"_count": 1}}, "tent": {"_count": 1, "which": {"_count": 1}}, "toes": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "varying": {"_count": 1}}, "dormitory": {"_count": 5, "": {"_count": 3}, "without": {"_count": 1}, "wondering": {"_count": 1}}, "into": {"_count": 1, "hysterics": {"_count": 1}}, "all": {"_count": 3, "by": {"_count": 1}, "of": {"_count": 1}, "looked": {"_count": 1}}, "were": {"_count": 7, "frantically": {"_count": 1}, "doubled": {"_count": 1}, "lurking": {"_count": 1}, "and": {"_count": 1}, "all": {"_count": 1}, "having": {"_count": 1}, "swinging": {"_count": 1}}, "now": {"_count": 1, "squabbling": {"_count": 1}}, "still": {"_count": 1, "clutching": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "often": {"_count": 1, "turned": {"_count": 1}}, "tiptoed": {"_count": 1, "past": {"_count": 1}}, "Hogwarts": {"_count": 1, "suddenly": {"_count": 1}}, "shrieking": {"_count": 1, "with": {"_count": 1}}, "excitedly": {"_count": 1, "comparing": {"_count": 1}}, "walked": {"_count": 2, "past": {"_count": 1}, "slowly": {"_count": 1}}, "asked": {"_count": 1, "him": {"_count": 1}}, "staircase": {"_count": 3, "without": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "toilets": {"_count": 2, "on": {"_count": 1}, "had": {"_count": 1}}, "around": {"_count": 1, "Cho": {"_count": 1}}, "they": {"_count": 1, "asked": {"_count": 1}}, "paused": {"_count": 1, "and": {"_count": 1}}, "scuttled": {"_count": 1, "away": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "there": {"_count": 1}}, "ooooohed": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "tied": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 3, "remembered": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}}, "came": {"_count": 1, "zooming": {"_count": 1}}, "headed": {"_count": 1, "off": {"_count": 1}}, "voices": {"_count": 1, "screaming": {"_count": 1}}, "brains": {"_count": 1, "work": {"_count": 1}}, "screamed": {"_count": 1, "but": {"_count": 1}}, "passed": {"_count": 1, "them": {"_count": 1}}, "right": {"_count": 1, "after": {"_count": 1}}, "Hermione": {"_count": 1, "told": {"_count": 1}}, "do": {"_count": 1, "so": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "ones": {"_count": 1, "off": {"_count": 1}}, "separated": {"_count": 1, "Snape": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "shriek": {"_count": 1, "behind": {"_count": 1}}, "found": {"_count": 1, "our": {"_count": 1}}, "was": {"_count": 3, "giggling": {"_count": 1}, "whispering": {"_count": 1}, "standing": {"_count": 1}}, "than": {"_count": 1, "a": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 2, "encircled": {"_count": 1}, "echoed": {"_count": 1}}, "tended": {"_count": 1, "to": {"_count": 1}}, "are": {"_count": 4, "able": {"_count": 1}, "getting": {"_count": 1}, "clever": {"_count": 1}, "taken": {"_count": 1}}, "would": {"_count": 1, "sink": {"_count": 1}}, "lurking": {"_count": 1, "there": {"_count": 1}}, "a": {"_count": 1, "rather": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "gave": {"_count": 1, "an": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "yet": {"_count": 1, "Harry": {"_count": 1}}, "death": {"_count": 1, "and": {"_count": 1}}, "started": {"_count": 1, "turning": {"_count": 1}}, "swinging": {"_count": 1, "higher": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "looking": {"_count": 1, "ludicrously": {"_count": 1}}, "stood": {"_count": 1, "a": {"_count": 1}}}, "Youve": {"_count": 140, "already": {"_count": 3, "seen": {"_count": 1}, "asked": {"_count": 1}, "told": {"_count": 1}}, "met": {"_count": 2, "Malfoy": {"_count": 1}, "Mundungus": {"_count": 1}}, "got": {"_count": 63, "some": {"_count": 1}, "to": {"_count": 34}, "a": {"_count": 12}, "competition": {"_count": 1}, "him": {"_count": 2}, "that": {"_count": 1}, "someone": {"_count": 1}, "until": {"_count": 1}, "just": {"_count": 1}, "the": {"_count": 2}, "three": {"_count": 1}, "enough": {"_count": 1}, "exams": {"_count": 1}, "My": {"_count": 1}, "nerve": {"_count": 1}, "half": {"_count": 1}, "loads": {"_count": 1}}, "had": {"_count": 6, "nearly": {"_count": 1}, "ten": {"_count": 1}, "enough": {"_count": 1}, "an": {"_count": 1}, "it": {"_count": 1}, "your": {"_count": 1}}, "forgotten": {"_count": 2, "the": {"_count": 1}, "pimply": {"_count": 1}}, "just": {"_count": 7, "ruined": {"_count": 1}, "beaten": {"_count": 1}, "had": {"_count": 1}, "got": {"_count": 3}, "eaten": {"_count": 1}}, "been": {"_count": 16, "told": {"_count": 1}, "wondering": {"_count": 1}, "hiding": {"_count": 1}, "ages": {"_count": 1}, "caught": {"_count": 1}, "stealing": {"_count": 1}, "avoiding": {"_count": 1}, "reading": {"_count": 1}, "popping": {"_count": 1}, "a": {"_count": 1}, "off": {"_count": 1}, "taking": {"_count": 1}, "": {"_count": 1}, "ill": {"_count": 1}, "shouting": {"_count": 1}, "so": {"_count": 1}}, "read": {"_count": 1, "his": {"_count": 1}}, "murdered": {"_count": 1, "my": {"_count": 1}}, "killed": {"_count": 1, "her": {"_count": 1}}, "used": {"_count": 1, "spiders": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "lost": {"_count": 1, "me": {"_count": 1}}, "done": {"_count": 3, "murder": {"_count": 1}, "brilliantly": {"_count": 1}, "really": {"_count": 1}}, "seen": {"_count": 3, "her": {"_count": 1}, "Snape": {"_count": 1}, "how": {"_count": 1}}, "only": {"_count": 1, "done": {"_count": 1}}, "gone": {"_count": 1, "and": {"_count": 1}}, "dropped": {"_count": 1, "something": {"_count": 1}}, "Wised": {"_count": 1, "Up": {"_count": 1}}, "picked": {"_count": 1, "the": {"_count": 1}}, "given": {"_count": 2, "Harry": {"_count": 1}, "me": {"_count": 1}}, "never": {"_count": 6, "been": {"_count": 3}, "taken": {"_count": 1}, "heard": {"_count": 1}, "seen": {"_count": 1}}, "found": {"_count": 4, "": {"_count": 2}, "one": {"_count": 1}, "a": {"_count": 1}}, "dreamed": {"_count": 1, "about": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "ddone": {"_count": 1, "it": {"_count": 1}}, "made": {"_count": 1, "your": {"_count": 1}}, "still": {"_count": 2, "got": {"_count": 2}}, "really": {"_count": 1, "got": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "saved": {"_count": 1, "our": {"_count": 1}}, "chosen": {"_count": 1, "your": {"_count": 1}}, "missed": {"_count": 1, "your": {"_count": 1}}}, "goggle": {"_count": 1, "at": {"_count": 1, "in": {"_count": 1}}}, "Asked": {"_count": 2, "him": {"_count": 1, "": {"_count": 1}}, "Alicia": {"_count": 1, "a": {"_count": 1}}}, "Saw": {"_count": 4, "his": {"_count": 1, "scar": {"_count": 1}}, "her": {"_count": 1, "running": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "dad": {"_count": 1}}}, "polite": {"_count": 21, "when": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 3, "refuse": {"_count": 1}, "your": {"_count": 1}, "me": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "applause": {"_count": 1, "and": {"_count": 1}}, "its": {"_count": 1, "time": {"_count": 1}}, "voices": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "stick": {"_count": 1}}, "interest": {"_count": 2, "": {"_count": 1}, "over": {"_count": 1}}, "but": {"_count": 1, "fairly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "voice": {"_count": 1, "Im": {"_count": 1}}, "calm": {"_count": 1, "voice": {"_count": 1}}, "quiet": {"_count": 1, "and": {"_count": 1}}, "conversation": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "took": {"_count": 1}}, "Harry": {"_count": 1, "whispered": {"_count": 1}}, "indifference": {"_count": 1, "as": {"_count": 1}}, "refusal": {"_count": 1, "to": {"_count": 1}}}, "reminding": {"_count": 17, "of": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "himself": {"_count": 2, "that": {"_count": 1}, "irresistibly": {"_count": 1}}, "Ron": {"_count": 1, "what": {"_count": 1}}, "us": {"_count": 1, "all": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 2, "the": {"_count": 1}, "producing": {"_count": 1}}, "him": {"_count": 3, "of": {"_count": 2}, "horribly": {"_count": 1}}, "but": {"_count": 1, "also": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "her": {"_count": 2, "that": {"_count": 2}}, "Harry": {"_count": 1, "a": {"_count": 1}}}, "whistle": {"_count": 59, "sounded": {"_count": 5, "": {"_count": 3}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "you": {"_count": 1, "kick": {"_count": 1}}, "three": {"_count": 1, "two": {"_count": 1}}, "had": {"_count": 3, "touched": {"_count": 1}, "blown": {"_count": 1}, "been": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 12}, "!": {"_count": 1}}, "said": {"_count": 1, "Madam": {"_count": 1}}, "rang": {"_count": 2, "out": {"_count": 2}}, "Harry": {"_count": 4, "kicked": {"_count": 1}, "could": {"_count": 1}, "and": {"_count": 1}, "released": {"_count": 1}}, "was": {"_count": 3, "coming": {"_count": 1}, "lost": {"_count": 1}, "protruding": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 2, "Alicia": {"_count": 1}, "Harry": {"_count": 1}}, "Mostafa": {"_count": 1, "shot": {"_count": 1}}, "again": {"_count": 1, "the": {"_count": 1}}, "blast": {"_count": 1, "told": {"_count": 1}}, "blew": {"_count": 3, "and": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "blow": {"_count": 1, "": {"_count": 1}}, "echoed": {"_count": 1, "shrilly": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "brought": {"_count": 1, "him": {"_count": 1}}, "shouted": {"_count": 1, "Angelina": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}, "everybody": {"_count": 1, "stopped": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "one": {"_count": 1}}, "an": {"_count": 1, "uproar": {"_count": 1}}, "blowing": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "steam": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "merely": {"_count": 1, "fell": {"_count": 1}}, "that": {"_count": 1, "signaled": {"_count": 1}}, "kicked": {"_count": 1, "off": {"_count": 1}}}, "loads": {"_count": 74, "of": {"_count": 47, "owls": {"_count": 1}, "magic": {"_count": 2}, "people": {"_count": 7}, "them": {"_count": 4}, "enchantments": {"_count": 1}, "points": {"_count": 1}, "pictures": {"_count": 1}, "practice": {"_count": 1}, "times": {"_count": 5}, "filthy": {"_count": 1}, "fog": {"_count": 1}, "stuff": {"_count": 4}, "enemies": {"_count": 1}, "misery": {"_count": 1}, "trouble": {"_count": 2}, "horrible": {"_count": 1}, "different": {"_count": 1}, "gold": {"_count": 1}, "terrible": {"_count": 1}, "": {"_count": 1}, "homework": {"_count": 1}, "Chocolate": {"_count": 1}, "Galleons": {"_count": 1}, "reasons": {"_count": 1}, "things": {"_count": 1}, "nights": {"_count": 1}, "other": {"_count": 1}, "pressure": {"_count": 1}, "wands": {"_count": 1}}, "to": {"_count": 3, "learn": {"_count": 1}, "tell": {"_count": 2}}, "": {"_count": 5, ".": {"_count": 5}}, "their": {"_count": 1, "tears": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "better": {"_count": 6, "Hermione": {"_count": 1}, "lately": {"_count": 1}, "settlin": {"_count": 1}, "behaved": {"_count": 1}, "cronies": {"_count": 1}, "": {"_count": 1}}, "off": {"_count": 1, "Professor": {"_count": 1}}, "got": {"_count": 1, "themselves": {"_count": 1}}, "more": {"_count": 2, "doxies": {"_count": 1}, "than": {"_count": 1}}, "Your": {"_count": 1, "hand": {"_count": 1}}, "once": {"_count": 1, "musta": {"_count": 1}}, "o": {"_count": 1, "good": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "loads": {"_count": 1}}, "betterlooking": {"_count": 1, "now": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}}, "Georg": {"_count": 1, "e": {"_count": 1, "Only": {"_count": 1}}}, "e": {"_count": 24, "Only": {"_count": 1, "joking": {"_count": 1}}, "was": {"_count": 1, "on": {"_count": 1}}, "blasted": {"_count": 1, "alf": {"_count": 1}}, "went": {"_count": 1, "wiv": {"_count": 1}}, "did": {"_count": 1, "it": {"_count": 1}}, "is": {"_count": 4, "lying": {"_count": 1}, "too": {"_count": 1}, "only": {"_count": 1}, "marrying": {"_count": 1}}, "complain": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "as": {"_count": 1, "": {"_count": 1}}, "says": {"_count": 3, "to": {"_count": 1}, "\u2018ere": {"_count": 1}, "e": {"_count": 1}}, "paid": {"_count": 1, "in": {"_count": 1}}, "translated": {"_count": 1, "fer": {"_count": 1}}, "will": {"_count": 1, "": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}}, "waving": {"_count": 109, "and": {"_count": 4, "their": {"_count": 1}, "grinning": {"_count": 1}, "twiddling": {"_count": 1}, "twirling": {"_count": 1}}, "merrily": {"_count": 1, "at": {"_count": 1}}, "your": {"_count": 1, "wand": {"_count": 1}}, "here": {"_count": 1, "many": {"_count": 1}}, "his": {"_count": 17, "long": {"_count": 2}, "crumpet": {"_count": 1}, "own": {"_count": 1}, "glasses": {"_count": 1}, "hand": {"_count": 1}, "arms": {"_count": 1}, "wand": {"_count": 7}, "blackened": {"_count": 1}, "hat": {"_count": 1}, "eartrumpet": {"_count": 1}}, "it": {"_count": 5, "above": {"_count": 1}, "so": {"_count": 1}, "before": {"_count": 1}, "over": {"_count": 1}, "in": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 12, "him": {"_count": 6}, "Mrs": {"_count": 1}, "the": {"_count": 2}, "you": {"_count": 1}, "them": {"_count": 1}, "relatives": {"_count": 1}}, "energetically": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "quiet": {"_count": 1}, "silence": {"_count": 1}}, "feebly": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "her": {"_count": 12, "hand": {"_count": 1}, "arms": {"_count": 3}, "wand": {"_count": 5}, "handbag": {"_count": 1}, "stubby": {"_count": 1}, "hands": {"_count": 1}}, "the": {"_count": 7, "rooster": {"_count": 1}, "diary": {"_count": 1}, "word": {"_count": 1}, "fist": {"_count": 1}, "piece": {"_count": 1}, "silver": {"_count": 1}, "new": {"_count": 1}}, "furiously": {"_count": 1, "at": {"_count": 1}}, "frantically": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 5, "hand": {"_count": 3}, "threatening": {"_count": 1}, "little": {"_count": 1}}, "up": {"_count": 2, "at": {"_count": 2}}, "Harrys": {"_count": 1, "apology": {"_count": 1}}, "scarlet": {"_count": 1, "flags": {"_count": 1}}, "an": {"_count": 6, "impatient": {"_count": 1}, "enormous": {"_count": 1}, "airy": {"_count": 4}}, "its": {"_count": 1, "tentacles": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "their": {"_count": 1, "lanterns": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 1, "toward": {"_count": 1}}, "to": {"_count": 3, "somebody": {"_count": 1}, "their": {"_count": 1}, "Rose": {"_count": 1}}, "goodbye": {"_count": 1, "to": {"_count": 1}}, "making": {"_count": 1, "his": {"_count": 1}}, "happily": {"_count": 1, "out": {"_count": 1}}, "around": {"_count": 1, "an": {"_count": 1}}, "Hermiones": {"_count": 1, "wand": {"_count": 1}}, "wildly": {"_count": 1, "like": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "away": {"_count": 2, "Harrys": {"_count": 1}, "Malfoy": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "legs": {"_count": 1, "and": {"_count": 1}}, "fat": {"_count": 1, "fists": {"_count": 1}}, "carving": {"_count": 1, "knives": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}}, "gathered": {"_count": 37, "too": {"_count": 1, "much": {"_count": 1}}, "around": {"_count": 16, "her": {"_count": 1}, "Ron": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 4}, "Lavender": {"_count": 1}, "his": {"_count": 1}, "Wood": {"_count": 1}, "Basil": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}, "Dumbledores": {"_count": 1}, "another": {"_count": 1}}, "up": {"_count": 5, "the": {"_count": 2}, "all": {"_count": 1}, "their": {"_count": 1}, "Crookshanks": {"_count": 1}}, "together": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 3, "they": {"_count": 1}, "Fred": {"_count": 1}, "she": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "fistful": {"_count": 1}}, "round": {"_count": 1, "an": {"_count": 1}}, "momentum": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "him": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "here": {"_count": 1, "today": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "himself": {"_count": 1, "for": {"_count": 1}}, "their": {"_count": 1, "robes": {"_count": 1}}, "the": {"_count": 1, "Cloak": {"_count": 1}}}, "disappear": {"_count": 29, "as": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "ah": {"_count": 1, "Mr": {"_count": 1}}, "casually": {"_count": 1, "through": {"_count": 1}}, "then": {"_count": 1, "headed": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "The": {"_count": 1, "true": {"_count": 1}}, "from": {"_count": 3, "view": {"_count": 3}}, "to": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "Wizards": {"_count": 1, "can": {"_count": 1}}, "between": {"_count": 1, "what": {"_count": 1}}, "and": {"_count": 1, "rematerialize": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "their": {"_count": 1, "children": {"_count": 1}}, "please": {"_count": 1, "we": {"_count": 1}}}, "rounded": {"_count": 38, "the": {"_count": 9, "corner": {"_count": 6}, "Ravenclaw": {"_count": 1}, "clump": {"_count": 1}, "desk": {"_count": 1}}, "on": {"_count": 19, "Harry": {"_count": 5}, "him": {"_count": 2}, "her": {"_count": 2}, "Hermione": {"_count": 4}, "Ron": {"_count": 3}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}}, "bottle": {"_count": 1, "at": {"_count": 1}}, "off": {"_count": 3, "the": {"_count": 3}}, "another": {"_count": 1, "corner": {"_count": 1}}, "up": {"_count": 3, "and": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}}, "a": {"_count": 2, "corner": {"_count": 2}}}, "flashed": {"_count": 38, "past": {"_count": 4, "the": {"_count": 1}, "him": {"_count": 1}, "sending": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "Harrys": {"_count": 1}, "midair": {"_count": 1}}, "furiously": {"_count": 1, "how": {"_count": 1}}, "different": {"_count": 1, "colors": {"_count": 1}}, "menacingly": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "across": {"_count": 7, "the": {"_count": 3}, "it": {"_count": 1}, "Siriuss": {"_count": 1}, "his": {"_count": 2}}, "up": {"_count": 1, "next": {"_count": 1}}, "illuminating": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "dangerously": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "into": {"_count": 2, "sight": {"_count": 1}, "Harrys": {"_count": 1}}, "and": {"_count": 1, "clicked": {"_count": 1}}, "a": {"_count": 3, "look": {"_count": 1}, "different": {"_count": 1}, "warning": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "bounced": {"_count": 1, "and": {"_count": 1}}, "scarlet": {"_count": 1, "at": {"_count": 1}}, "plunged": {"_count": 1, "Harry": {"_count": 1}}}, "redheaded": {"_count": 6, "boy": {"_count": 1, "came": {"_count": 1}}, "figure": {"_count": 1, "in": {"_count": 1}}, "Muggle": {"_count": 1, "boy": {"_count": 1}}, "Weasley": {"_count": 1, "cousin": {"_count": 1}}, "men": {"_count": 1, "were": {"_count": 1}}, "girl": {"_count": 1, "trailed": {"_count": 1}}}, "Anyone": {"_count": 23, "sitting": {"_count": 1, "there": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "messing": {"_count": 1, "around": {"_count": 1}}, "would": {"_count": 2, "want": {"_count": 1}, "have": {"_count": 1}}, "want": {"_count": 1, "a": {"_count": 1}}, "can": {"_count": 3, "make": {"_count": 1}, "speak": {"_count": 1}, "have": {"_count": 1}}, "who": {"_count": 4, "has": {"_count": 1}, "thought": {"_count": 1}, "knew": {"_count": 1}, "continues": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "else": {"_count": 3, "know": {"_count": 1}, "": {"_count": 1}, "we": {"_count": 1}}, "put": {"_count": 1, "their": {"_count": 1}}, "elses": {"_count": 1, "parents": {"_count": 1}}, "tell": {"_count": 1, "me": {"_count": 1}}, "we": {"_count": 2, "know": {"_count": 2}}, "still": {"_count": 1, "got": {"_count": 1}}}, "Everywhere": {"_count": 5, "else": {"_count": 1, "is": {"_count": 1}}, "Harry": {"_count": 2, "went": {"_count": 1}, "looked": {"_count": 1}}, "s": {"_count": 1, "full": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}}, "glanced": {"_count": 195, "at": {"_count": 54, "Harry": {"_count": 6}, "Ron": {"_count": 7}, "his": {"_count": 4}, "the": {"_count": 13}, "Snape": {"_count": 1}, "each": {"_count": 1}, "Hermione": {"_count": 7}, "Cedric": {"_count": 1}, "it": {"_count": 2}, "Fawkes": {"_count": 1}, "Mrs": {"_count": 1}, "Uncle": {"_count": 1}, "Madam": {"_count": 1}, "one": {"_count": 2}, "Malfoy": {"_count": 1}, "Ginny": {"_count": 1}, "Hagrid": {"_count": 1}, "Cho": {"_count": 1}, "Snapes": {"_count": 1}, "him": {"_count": 1}}, "down": {"_count": 9, "at": {"_count": 4}, "into": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}, "Rons": {"_count": 1}, "and": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 3}, "it": {"_count": 1}}, "over": {"_count": 20, "his": {"_count": 10}, "at": {"_count": 8}, "to": {"_count": 1}, "her": {"_count": 1}}, "witheringly": {"_count": 1, "at": {"_count": 1}}, "nervously": {"_count": 3, "at": {"_count": 2}, "over": {"_count": 1}}, "up": {"_count": 15, "and": {"_count": 3}, "at": {"_count": 9}, "just": {"_count": 1}, "from": {"_count": 1}, "saw": {"_count": 1}}, "back": {"_count": 14, "at": {"_count": 8}, "as": {"_count": 2}, "over": {"_count": 1}, "when": {"_count": 1}, "repeatedly": {"_count": 1}, "and": {"_count": 1}}, "grinning": {"_count": 1, "at": {"_count": 1}}, "sideways": {"_count": 10, "at": {"_count": 9}, "and": {"_count": 1}}, "quickly": {"_count": 4, "up": {"_count": 1}, "at": {"_count": 3}}, "around": {"_count": 34, "the": {"_count": 2}, "saw": {"_count": 1}, "at": {"_count": 12}, "as": {"_count": 1}, "": {"_count": 8}, "to": {"_count": 4}, "automatically": {"_count": 1}, "then": {"_count": 1}, "surreptitiously": {"_count": 1}, "again": {"_count": 1}, "grinning": {"_count": 1}, "constantly": {"_count": 1}}, "toward": {"_count": 6, "the": {"_count": 4}, "Hermione": {"_count": 1}, "her": {"_count": 1}}, "despairingly": {"_count": 1, "at": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "through": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 1, "and": {"_count": 1}}, "maliciously": {"_count": 1, "at": {"_count": 1}}, "hopefully": {"_count": 1, "at": {"_count": 1}}, "swiftly": {"_count": 1, "and": {"_count": 1}}, "along": {"_count": 1, "at": {"_count": 1}}, "off": {"_count": 2, "its": {"_count": 2}}, "again": {"_count": 2, "and": {"_count": 1}, "at": {"_count": 1}}, "from": {"_count": 1, "Ron": {"_count": 1}}, "automatically": {"_count": 1, "at": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "vaguely": {"_count": 1, "around": {"_count": 1}}, "hopelessly": {"_count": 1, "at": {"_count": 1}}}, "Jordans": {"_count": 4, "got": {"_count": 1, "a": {"_count": 1}}, "dad": {"_count": 1, "had": {"_count": 1}}, "commentary": {"_count": 1, "rang": {"_count": 1}}, "Harry": {"_count": 1, "recognized": {"_count": 1}}}, "tarantula": {"_count": 2, "down": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "introduce": {"_count": 24, "ourselves": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 6, "Petunia": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 1}, "Wha": {"_count": 1}, "said": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "assistant": {"_count": 1}}, "the": {"_count": 1, "crystal": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "our": {"_count": 1, "new": {"_count": 1}}, "for": {"_count": 1, "those": {"_count": 1}}, "incredible": {"_count": 1, "though": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "Harry": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 1, "new": {"_count": 1}}}, "ourselves": {"_count": 47, "": {"_count": 12, "?": {"_count": 2}, ".": {"_count": 10}}, "then": {"_count": 1, "said": {"_count": 1}}, "well": {"_count": 2, "be": {"_count": 1}, "enough": {"_count": 1}}, "against": {"_count": 3, "the": {"_count": 1}, "VVoldemort": {"_count": 1}, "VVoldemorts": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "what": {"_count": 1}}, "leaving": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Hagrid": {"_count": 1}}, "in": {"_count": 2, "": {"_count": 2}}, "why": {"_count": 1, "somebody": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Ron": {"_count": 1}}, "like": {"_count": 1, "Harry": {"_count": 1}}, "properly": {"_count": 1, "not": {"_count": 1}}, "as": {"_count": 1, "we": {"_count": 1}}, "a": {"_count": 1, "nice": {"_count": 1}}, "most": {"_count": 1, "unfortunately": {"_count": 1}}, "of": {"_count": 1, "disrupting": {"_count": 1}}, "sometimes": {"_count": 1, "": {"_count": 1}}, "be": {"_count": 1, "pushed": {"_count": 1}}, "have": {"_count": 1, "placed": {"_count": 1}}, "on": {"_count": 1, "normal": {"_count": 1}}, "she": {"_count": 1, "has": {"_count": 1}}, "too": {"_count": 1, "heartily": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "be": {"_count": 1}}, "away": {"_count": 1, "when": {"_count": 1}}, "into": {"_count": 1, "going": {"_count": 1}}, "Dumbledore": {"_count": 1, "left": {"_count": 1}}, "another": {"_count": 1, "secure": {"_count": 1}}, "lucky": {"_count": 1, "he": {"_count": 1}}}, "Weasley": {"_count": 1483, "": {"_count": 227, ".": {"_count": 197}, "?": {"_count": 20}, "!": {"_count": 10}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "twins": {"_count": 15, "yelled": {"_count": 1}, "": {"_count": 2}, "were": {"_count": 3}, "and": {"_count": 3}, "insisted": {"_count": 1}, "are": {"_count": 1}, "friend": {"_count": 3}, "to": {"_count": 1}}, "pompously": {"_count": 1, "across": {"_count": 1}}, "and": {"_count": 69, "Hermione": {"_count": 2}, "he": {"_count": 2}, "be": {"_count": 1}, "thats": {"_count": 1}, "Miss": {"_count": 5}, "Ginny": {"_count": 6}, "Mr": {"_count": 3}, "tell": {"_count": 1}, "a": {"_count": 1}, "both": {"_count": 1}, "his": {"_count": 2}, "as": {"_count": 1}, "drove": {"_count": 1}, "Wood": {"_count": 1}, "Granger": {"_count": 1}, "headed": {"_count": 1}, "behave": {"_count": 1}, "then": {"_count": 1}, "continued": {"_count": 1}, "staring": {"_count": 1}, "Professor": {"_count": 1}, "Bill": {"_count": 6}, "the": {"_count": 3}, "Harry": {"_count": 2}, "Sirius": {"_count": 2}, "Tonks": {"_count": 2}, "Mundungus": {"_count": 1}, "they": {"_count": 2}, "pulling": {"_count": 1}, "she": {"_count": 2}, "handed": {"_count": 1}, "if": {"_count": 1}, "felt": {"_count": 1}, "send": {"_count": 1}, "withdrew": {"_count": 1}, "peered": {"_count": 1}, "that": {"_count": 1}, "Hagrid": {"_count": 1}, "Kingsley": {"_count": 1}, "Madame": {"_count": 1}, "Fleurs": {"_count": 1}, "I": {"_count": 1}, "Lupin": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "complain": {"_count": 1, "about": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "now": {"_count": 3, "came": {"_count": 2}, "spooning": {"_count": 1}}, "you": {"_count": 12, "couldnt": {"_count": 1}, "made": {"_count": 1}, "can": {"_count": 2}, "heard": {"_count": 1}, "and": {"_count": 1}, "werent": {"_count": 1}, "stay": {"_count": 1}, "didnt": {"_count": 1}, "go": {"_count": 1}, "ought": {"_count": 1}, "know": {"_count": 1}}, "cant": {"_count": 1, "tell": {"_count": 1}}, "came": {"_count": 8, "chasing": {"_count": 1}, "to": {"_count": 1}, "over": {"_count": 1}, "into": {"_count": 2}, "clattering": {"_count": 1}, "racing": {"_count": 1}, "hurrying": {"_count": 1}}, "were": {"_count": 14, "going": {"_count": 1}, "responsible": {"_count": 1}, "sitting": {"_count": 1}, "climbing": {"_count": 1}, "dealing": {"_count": 1}, "swooping": {"_count": 1}, "none": {"_count": 1}, "all": {"_count": 1}, "both": {"_count": 1}, "pinning": {"_count": 1}, "in": {"_count": 1}, "lost": {"_count": 1}, "striding": {"_count": 1}, "now": {"_count": 1}}, "sweater": {"_count": 2, "": {"_count": 1}, "too": {"_count": 1}}, "bounded": {"_count": 1, "in": {"_count": 1}}, "stuck": {"_count": 1, "his": {"_count": 1}}, "who": {"_count": 34, "has": {"_count": 1}, "had": {"_count": 8}, "sat": {"_count": 1}, "was": {"_count": 9}, "worked": {"_count": 1}, "on": {"_count": 1}, "looked": {"_count": 3}, "ducked": {"_count": 1}, "said": {"_count": 2}, "spoke": {"_count": 1}, "did": {"_count": 1}, "could": {"_count": 1}, "seemed": {"_count": 1}, "shook": {"_count": 1}, "appeared": {"_count": 1}, "works": {"_count": 1}}, "really": {"_count": 1, "did": {"_count": 1}}, "peering": {"_count": 1, "out": {"_count": 1}}, "didnt": {"_count": 1, "see": {"_count": 1}}, "had": {"_count": 55, "hit": {"_count": 1}, "shouted": {"_count": 1}, "appeared": {"_count": 2}, "thrown": {"_count": 1}, "a": {"_count": 2}, "added": {"_count": 1}, "bewitched": {"_count": 1}, "done": {"_count": 1}, "an": {"_count": 1}, "stopped": {"_count": 1}, "banged": {"_count": 1}, "just": {"_count": 3}, "said": {"_count": 2}, "been": {"_count": 5}, "sent": {"_count": 3}, "told": {"_count": 2}, "squeezed": {"_count": 1}, "borrowed": {"_count": 1}, "to": {"_count": 1}, "bought": {"_count": 1}, "braved": {"_count": 1}, "had": {"_count": 1}, "his": {"_count": 1}, "abandoned": {"_count": 1}, "seen": {"_count": 1}, "answered": {"_count": 1}, "laid": {"_count": 2}, "hung": {"_count": 1}, "cast": {"_count": 1}, "singlehandedly": {"_count": 1}, "taken": {"_count": 1}, "turned": {"_count": 1}, "not": {"_count": 1}, "eyes": {"_count": 1}, "come": {"_count": 1}, "once": {"_count": 1}, "staunched": {"_count": 1}, "gone": {"_count": 1}, "explained": {"_count": 1}, "therefore": {"_count": 1}, "given": {"_count": 1}, "known": {"_count": 1}}, "Potters": {"_count": 1, "obviously": {"_count": 1}}, "from": {"_count": 2, "my": {"_count": 1}, "the": {"_count": 1}}, "sadly": {"_count": 2, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "Rons": {"_count": 2, "younger": {"_count": 1}, "second": {"_count": 1}}, "smiled": {"_count": 3, "down": {"_count": 1}, "encouragingly": {"_count": 1}, "tremulously": {"_count": 1}}, "was": {"_count": 76, "outside": {"_count": 1}, "marching": {"_count": 1}, "clattering": {"_count": 1}, "slumped": {"_count": 1}, "insisting": {"_count": 1}, "shrieking": {"_count": 1}, "facing": {"_count": 1}, "waiting": {"_count": 1}, "unavailable": {"_count": 1}, "eager": {"_count": 1}, "sitting": {"_count": 3}, "perfectly": {"_count": 1}, "saying": {"_count": 2}, "reading": {"_count": 1}, "telling": {"_count": 1}, "looking": {"_count": 2}, "a": {"_count": 1}, "mad": {"_count": 1}, "arguing": {"_count": 1}, "stirring": {"_count": 1}, "still": {"_count": 2}, "shaking": {"_count": 1}, "more": {"_count": 1}, "having": {"_count": 1}, "carrying": {"_count": 1}, "shouting": {"_count": 2}, "forced": {"_count": 1}, "intrigued": {"_count": 1}, "on": {"_count": 1}, "close": {"_count": 1}, "leaning": {"_count": 1}, "now": {"_count": 2}, "plainly": {"_count": 1}, "bending": {"_count": 1}, "not": {"_count": 4}, "attacking": {"_count": 1}, "hard": {"_count": 1}, "wiping": {"_count": 1}, "in": {"_count": 3}, "gulping": {"_count": 1}, "born": {"_count": 1}, "asleep": {"_count": 1}, "bleeding": {"_count": 1}, "probably": {"_count": 1}, "found": {"_count": 1}, "hovering": {"_count": 1}, "supposed": {"_count": 1}, "occupying": {"_count": 1}, "the": {"_count": 2}, "attacked": {"_count": 1}, "holding": {"_count": 1}, "revealed": {"_count": 1}, "delightedly": {"_count": 1}, "humoring": {"_count": 1}, "fighting": {"_count": 1}, "there": {"_count": 2}, "going": {"_count": 1}, "nowhere": {"_count": 1}, "suspending": {"_count": 1}, "wearing": {"_count": 1}, "struggling": {"_count": 1}, "lying": {"_count": 1}}, "in": {"_count": 11, "a": {"_count": 6}, "the": {"_count": 3}, "exasperation": {"_count": 1}, "an": {"_count": 1}}, "prodding": {"_count": 1, "a": {"_count": 1}}, "snapped": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 10, "it": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "obviously": {"_count": 1}, "most": {"_count": 1}, "chose": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}, "Mrs": {"_count": 1}, "I": {"_count": 1}}, "beamed": {"_count": 2, "down": {"_count": 1}, "at": {"_count": 1}}, "her": {"_count": 7, "cheeks": {"_count": 1}, "eyes": {"_count": 2}, "voice": {"_count": 3}, "lip": {"_count": 1}}, "took": {"_count": 7, "a": {"_count": 4}, "Harrys": {"_count": 1}, "the": {"_count": 2}}, "blinked": {"_count": 2, "": {"_count": 1}, "rather": {"_count": 1}}, "blankly": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "eagerly": {"_count": 2, "": {"_count": 2}}, "swelled": {"_count": 1, "like": {"_count": 1}}, "fussed": {"_count": 1, "over": {"_count": 1}}, "liked": {"_count": 1, "Harry": {"_count": 1}}, "offered": {"_count": 1, "him": {"_count": 1}}, "passing": {"_count": 1, "Harry": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "brother": {"_count": 4, "": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 1}, "had": {"_count": 1}}, "woke": {"_count": 2, "them": {"_count": 2}}, "told": {"_count": 4, "Harry": {"_count": 3}, "the": {"_count": 1}}, "helping": {"_count": 1, "himself": {"_count": 1}}, "is": {"_count": 13, "behind": {"_count": 1}, "our": {"_count": 12}}, "panted": {"_count": 1, "": {"_count": 1}}, "Knockturn": {"_count": 1, "Alley": {"_count": 1}}, "sharply": {"_count": 8, "behind": {"_count": 1}, "as": {"_count": 3}, "and": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 2}}, "with": {"_count": 14, "grim": {"_count": 1}, "all": {"_count": 1}, "terrified": {"_count": 1}, "a": {"_count": 9}, "their": {"_count": 1}, "an": {"_count": 1}}, "indignantly": {"_count": 1, "but": {"_count": 1}}, "delightedly": {"_count": 1, "": {"_count": 1}}, "felt": {"_count": 2, "right": {"_count": 1}, "sympathy": {"_count": 1}}, "setting": {"_count": 3, "off": {"_count": 1}, "a": {"_count": 1}, "down": {"_count": 1}}, "retorted": {"_count": 1, "Malfoy": {"_count": 1}}, "struggling": {"_count": 1, "over": {"_count": 1}}, "nodding": {"_count": 2, "coldly": {"_count": 1}, "wisely": {"_count": 1}}, "flushed": {"_count": 1, "darker": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "beside": {"_count": 1, "herself": {"_count": 1}}, "started": {"_count": 2, "to": {"_count": 1}, "up": {"_count": 1}}, "conjured": {"_count": 2, "up": {"_count": 2}}, "dashed": {"_count": 2, "about": {"_count": 1}, "across": {"_count": 1}}, "nearly": {"_count": 1, "broke": {"_count": 1}}, "glanced": {"_count": 3, "into": {"_count": 1}, "at": {"_count": 2}}, "looking": {"_count": 13, "nervously": {"_count": 1}, "extremely": {"_count": 2}, "anxious": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}, "alarmed": {"_count": 1}, "rather": {"_count": 1}, "very": {"_count": 1}, "down": {"_count": 1}, "thoroughly": {"_count": 1}, "around": {"_count": 1}, "worried": {"_count": 1}}, "went": {"_count": 2, "next": {"_count": 1}, "on": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "owned": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 42, "Dumbledore": {"_count": 1}, "Malfoy": {"_count": 3}, "Lockhart": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 8}, "the": {"_count": 1}, "suddenly": {"_count": 1}, "to": {"_count": 3}, "Hermione": {"_count": 2}, "quietly": {"_count": 1}, "more": {"_count": 1}, "starting": {"_count": 1}, "and": {"_count": 1}, "his": {"_count": 1}, "excitedly": {"_count": 1}, "angrily": {"_count": 1}, "at": {"_count": 1}, "hurrying": {"_count": 1}, "lifting": {"_count": 1}, "bracingly": {"_count": 1}, "Kingsley": {"_count": 1}, "Ron": {"_count": 1}, "Katie": {"_count": 1}, "hastily": {"_count": 1}, "Fred": {"_count": 1}, "": {"_count": 1}, "Snape": {"_count": 1}, "in": {"_count": 1}, "tentatively": {"_count": 1}, "I": {"_count": 1}}, "youre": {"_count": 2, "bleeding": {"_count": 1}, "quite": {"_count": 1}}, "sneered": {"_count": 1, "Malfoy": {"_count": 1}}, "would": {"_count": 6, "like": {"_count": 1}, "fuss": {"_count": 1}, "want": {"_count": 1}, "ask": {"_count": 1}, "kill": {"_count": 1}, "never": {"_count": 1}}, "are": {"_count": 2, "the": {"_count": 1}, "outofbounds": {"_count": 1}}, "elbow": {"_count": 1, "grease": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "Miss": {"_count": 2, "Granger": {"_count": 2}}, "seemed": {"_count": 2, "very": {"_count": 1}, "to": {"_count": 1}}, "wrestling": {"_count": 1, "the": {"_count": 1}}, "strolled": {"_count": 3, "out": {"_count": 1}, "toward": {"_count": 1}, "up": {"_count": 1}}, "Percy": {"_count": 1, "Ron": {"_count": 1}}, "Head": {"_count": 2, "of": {"_count": 2}}, "has": {"_count": 3, "brought": {"_count": 1}, "been": {"_count": 2}}, "loves": {"_count": 1, "Muggles": {"_count": 1}}, "Harry": {"_count": 2, "tried": {"_count": 1}, "and": {"_count": 1}}, "arrived": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 8, "his": {"_count": 1}, "not": {"_count": 7}}, "appeared": {"_count": 4, "looking": {"_count": 1}, "out": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 1}}, "I": {"_count": 7, "think": {"_count": 2}, "daresay": {"_count": 1}, "had": {"_count": 1}, "thought": {"_count": 1}, "mean": {"_count": 1}, "leave": {"_count": 1}}, "then": {"_count": 1, "shut": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 2}, "was": {"_count": 1}}, "a": {"_count": 6, "few": {"_count": 1}, "cup": {"_count": 1}, "little": {"_count": 1}, "bow": {"_count": 1}, "large": {"_count": 1}, "dazzling": {"_count": 1}}, "opened": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "let": {"_count": 6, "go": {"_count": 2}, "out": {"_count": 4}}, "s": {"_count": 6, "shoulder": {"_count": 1}, "would": {"_count": 1}, "outstretched": {"_count": 1}, "voice": {"_count": 1}, "pale": {"_count": 1}, "sentence": {"_count": 1}}, "flabbergasted": {"_count": 1, "": {"_count": 1}}, "should": {"_count": 1, "go": {"_count": 1}}, "led": {"_count": 3, "Ginny": {"_count": 1}, "him": {"_count": 1}, "Madame": {"_count": 1}}, "followed": {"_count": 2, "still": {"_count": 1}, "them": {"_count": 1}}, "shall": {"_count": 1, "I": {"_count": 1}}, "might": {"_count": 4, "have": {"_count": 2}, "suddenly": {"_count": 1}, "not": {"_count": 1}}, "for": {"_count": 3, "one": {"_count": 1}, "years": {"_count": 1}, "our": {"_count": 1}}, "family": {"_count": 8, "": {"_count": 1}, "will": {"_count": 1}, "knowing": {"_count": 1}, "stood": {"_count": 1}, "members": {"_count": 1}, "plus": {"_count": 1}, "previously": {"_count": 1}, "had": {"_count": 1}}, "children": {"_count": 2, "currently": {"_count": 1}, "": {"_count": 1}}, "tall": {"_count": 1, "balding": {"_count": 1}}, "six": {"_count": 1, "sons": {"_count": 1}}, "sitting": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "put": {"_count": 3, "down": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}}, "entered": {"_count": 5, "the": {"_count": 4}, "carrying": {"_count": 1}}, "depositing": {"_count": 1, "her": {"_count": 1}}, "frowning": {"_count": 4, "suddenly": {"_count": 1}, "": {"_count": 2}, "perhaps": {"_count": 1}}, "snorted": {"_count": 1, "into": {"_count": 1}}, "briskly": {"_count": 1, "": {"_count": 1}}, "called": {"_count": 6, "down": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}, "fits": {"_count": 1}, "over": {"_count": 1}}, "shrilly": {"_count": 1, "": {"_count": 1}}, "heavily": {"_count": 2, "": {"_count": 2}}, "wearily": {"_count": 2, "": {"_count": 2}}, "obviously": {"_count": 1, "thought": {"_count": 1}}, "that": {"_count": 3, "the": {"_count": 1}, "Muggle": {"_count": 1}, "Snape": {"_count": 1}}, "marched": {"_count": 1, "Harry": {"_count": 1}}, "glancing": {"_count": 1, "up": {"_count": 1}}, "kept": {"_count": 10, "close": {"_count": 1}, "checking": {"_count": 1}, "up": {"_count": 1}, "shaking": {"_count": 1}, "them": {"_count": 1}, "his": {"_count": 1}, "anxiously": {"_count": 1}, "watch": {"_count": 1}, "pointing": {"_count": 1}, "Harry": {"_count": 1}}, "kissed": {"_count": 1, "all": {"_count": 1}}, "quietly": {"_count": 6, "come": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 2}, "but": {"_count": 1}}, "talking": {"_count": 2, "last": {"_count": 1}, "more": {"_count": 1}}, "flinched": {"_count": 1, "at": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "cut": {"_count": 2, "up": {"_count": 1}, "across": {"_count": 1}}, "slice": {"_count": 1, "my": {"_count": 1}}, "together": {"_count": 1, "pretending": {"_count": 1}}, "made": {"_count": 3, "a": {"_count": 2}, "sure": {"_count": 1}}, "careful": {"_count": 1, "": {"_count": 1}}, "acting": {"_count": 1, "Harry": {"_count": 1}}, "works": {"_count": 1, "for": {"_count": 1}}, "Snape": {"_count": 1, "said": {"_count": 1}}, "stay": {"_count": 1, "behind": {"_count": 1}}, "blushing": {"_count": 1, "furiously": {"_count": 1}}, "say": {"_count": 1, "came": {"_count": 1}}, "could": {"_count": 7, "give": {"_count": 1}, "you": {"_count": 1}, "be": {"_count": 1}, "do": {"_count": 1}, "get": {"_count": 1}, "no": {"_count": 1}, "not": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "pointed": {"_count": 5, "out": {"_count": 1}, "her": {"_count": 2}, "ahead": {"_count": 1}, "at": {"_count": 1}}, "vented": {"_count": 1, "his": {"_count": 1}}, "disappeared": {"_count": 1, "for": {"_count": 1}}, "brightly": {"_count": 8, "": {"_count": 4}, "pointing": {"_count": 1}, "as": {"_count": 1}, "holding": {"_count": 1}, "and": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "apparently": {"_count": 1, "alone": {"_count": 1}}, "when": {"_count": 4, "a": {"_count": 1}, "he": {"_count": 1}, "everyone": {"_count": 1}, "youre": {"_count": 1}}, "Weasley": {"_count": 1, "and": {"_count": 1}}, "Warrington": {"_count": 1, "drops": {"_count": 1}}, "chucked": {"_count": 1, "his": {"_count": 1}}, "elbowed": {"_count": 1, "Bole": {"_count": 1}}, "pelted": {"_count": 1, "a": {"_count": 1}}, "meanwhile": {"_count": 1, "had": {"_count": 1}}, "eyeing": {"_count": 1, "them": {"_count": 1}}, "hugged": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "however": {"_count": 2, "had": {"_count": 1}, "seemed": {"_count": 1}}, "P": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 3, "year": {"_count": 1}, "night": {"_count": 2}}, "wearing": {"_count": 1, "anything": {"_count": 1}}, "usually": {"_count": 1, "wore": {"_count": 1}}, "drove": {"_count": 1, "he": {"_count": 1}}, "even": {"_count": 2, "if": {"_count": 2}}, "its": {"_count": 1, "Harry": {"_count": 1}}, "vaguely": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 5, "George": {"_count": 3}, "and": {"_count": 2}}, "brushing": {"_count": 1, "dust": {"_count": 1}}, "lowering": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "thunderstruck": {"_count": 1, "": {"_count": 1}}, "swinging": {"_count": 1, "his": {"_count": 1}}, "taking": {"_count": 3, "another": {"_count": 1}, "off": {"_count": 1}, "two": {"_count": 1}}, "thought": {"_count": 1, "Dudley": {"_count": 1}}, "pointing": {"_count": 2, "his": {"_count": 1}, "out": {"_count": 1}}, "alone": {"_count": 2, "remained": {"_count": 1}, "in": {"_count": 1}}, "desperately": {"_count": 1, "": {"_count": 1}}, "angrily": {"_count": 5, "brandishing": {"_count": 1}, "": {"_count": 3}, "snatching": {"_count": 1}}, "shouted": {"_count": 4, "his": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}, "at": {"_count": 1}}, "blasting": {"_count": 1, "a": {"_count": 1}}, "brothers": {"_count": 1, "": {"_count": 1}}, "hesitated": {"_count": 4, "": {"_count": 1}, "looking": {"_count": 1}, "then": {"_count": 1}, "at": {"_count": 1}}, "what": {"_count": 2, "had": {"_count": 1}, "did": {"_count": 1}}, "eyed": {"_count": 1, "his": {"_count": 1}}, "repeated": {"_count": 1, "in": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "slammed": {"_count": 1, "a": {"_count": 1}}, "jabbed": {"_count": 1, "her": {"_count": 1}}, "putting": {"_count": 1, "down": {"_count": 1}}, "mildly": {"_count": 1, "": {"_count": 1}}, "fingering": {"_count": 1, "her": {"_count": 1}}, "heaving": {"_count": 1, "the": {"_count": 1}}, "tucking": {"_count": 1, "the": {"_count": 1}}, "matteroffactly": {"_count": 1, "": {"_count": 1}}, "marching": {"_count": 1, "back": {"_count": 1}}, "smiling": {"_count": 7, "": {"_count": 4}, "as": {"_count": 1}, "and": {"_count": 1}, "slightly": {"_count": 1}}, "furiously": {"_count": 1, "holding": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 3}, "a": {"_count": 1}, "highheeled": {"_count": 1}}, "as": {"_count": 11, "he": {"_count": 3}, "the": {"_count": 2}, "though": {"_count": 1}, "they": {"_count": 2}, "Mr": {"_count": 1}, "Mrs": {"_count": 1}, "she": {"_count": 1}}, "replacing": {"_count": 1, "his": {"_count": 1}}, "boys": {"_count": 2, "Harry": {"_count": 1}, "and": {"_count": 1}}, "quickly": {"_count": 4, "pulling": {"_count": 1}, "": {"_count": 1}, "beckoning": {"_count": 1}, "wiping": {"_count": 1}}, "one": {"_count": 1, "eye": {"_count": 1}}, "Mr": {"_count": 1, "Diggory": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "two": {"_count": 1, "tents": {"_count": 1}}, "returned": {"_count": 2, "with": {"_count": 1}, "from": {"_count": 1}}, "puzzled": {"_count": 1, "": {"_count": 1}}, "closely": {"_count": 1, "": {"_count": 1}}, "nervously": {"_count": 2, "": {"_count": 1}, "consulting": {"_count": 1}}, "his": {"_count": 3, "hand": {"_count": 1}, "face": {"_count": 1}, "eyes": {"_count": 1}}, "anxiously": {"_count": 3, "": {"_count": 1}, "staring": {"_count": 1}, "clearly": {"_count": 1}}, "Been": {"_count": 1, "having": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "dropped": {"_count": 3, "to": {"_count": 2}, "into": {"_count": 1}}, "mopping": {"_count": 1, "his": {"_count": 1}}, "handed": {"_count": 1, "over": {"_count": 1}}, "cordially": {"_count": 1, "as": {"_count": 1}}, "jumped": {"_count": 2, "to": {"_count": 1}, "up": {"_count": 1}}, "grinning": {"_count": 1, "this": {"_count": 1}}, "continued": {"_count": 1, "this": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "looked": {"_count": 12, "on": {"_count": 1}, "around": {"_count": 4}, "for": {"_count": 1}, "most": {"_count": 1}, "stern": {"_count": 1}, "at": {"_count": 1}, "troubled": {"_count": 1}, "taken": {"_count": 1}, "bewildered": {"_count": 1}}, "asked": {"_count": 3, "as": {"_count": 1}, "Professor": {"_count": 1}, "looking": {"_count": 1}}, "suggested": {"_count": 1, "tentatively": {"_count": 1}}, "heaved": {"_count": 1, "a": {"_count": 1}}, "spotting": {"_count": 1, "the": {"_count": 1}}, "leaning": {"_count": 2, "forward": {"_count": 1}, "across": {"_count": 1}}, "over": {"_count": 6, "the": {"_count": 4}, "his": {"_count": 1}, "Fleurs": {"_count": 1}}, "implored": {"_count": 1, "Fred": {"_count": 1}}, "agreed": {"_count": 1, "that": {"_count": 1}}, "got": {"_count": 1, "drawn": {"_count": 1}}, "sleepily": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "tore": {"_count": 1, "after": {"_count": 1}}, "Language": {"_count": 1, "Weasley": {"_count": 1}}, "striding": {"_count": 2, "toward": {"_count": 1}, "across": {"_count": 1}}, "very": {"_count": 1, "angrily": {"_count": 1}}, "loudly": {"_count": 5, "think": {"_count": 1}, "": {"_count": 2}, "cutting": {"_count": 1}, "leaping": {"_count": 1}}, "tensely": {"_count": 1, "": {"_count": 1}}, "coming": {"_count": 2, "toward": {"_count": 1}, "through": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "bending": {"_count": 3, "down": {"_count": 2}, "over": {"_count": 1}}, "explained": {"_count": 2, "what": {"_count": 1}, "it": {"_count": 1}}, "winced": {"_count": 1, "": {"_count": 1}}, "muttered": {"_count": 2, "distractedly": {"_count": 1}, "to": {"_count": 1}}, "soothingly": {"_count": 2, "prising": {"_count": 1}, "": {"_count": 1}}, "insisted": {"_count": 1, "on": {"_count": 1}}, "scanned": {"_count": 1, "the": {"_count": 1}}, "choking": {"_count": 1, "on": {"_count": 1}}, "distractedly": {"_count": 2, "": {"_count": 1}, "hugging": {"_count": 1}}, "nor": {"_count": 1, "Percy": {"_count": 1}}, "familys": {"_count": 1, "names": {"_count": 1}}, "sighed": {"_count": 1, "": {"_count": 1}}, "flaring": {"_count": 1, "up": {"_count": 1}}, "gently": {"_count": 2, "": {"_count": 2}}, "shrewdly": {"_count": 1, "": {"_count": 1}}, "hurrying": {"_count": 3, "out": {"_count": 1}, "to": {"_count": 1}, "forward": {"_count": 1}}, "irritably": {"_count": 1, "": {"_count": 1}}, "breaking": {"_count": 1, "up": {"_count": 1}}, "crossly": {"_count": 2, "": {"_count": 2}}, "fondly": {"_count": 2, "": {"_count": 2}}, "flushing": {"_count": 1, "": {"_count": 1}}, "rummaging": {"_count": 1, "anxiously": {"_count": 1}}, "breathlessly": {"_count": 1, "pushing": {"_count": 1}}, "unscrewing": {"_count": 1, "the": {"_count": 1}}, "scribbling": {"_count": 1, "frantically": {"_count": 1}}, "groaned": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 5, "writing": {"_count": 1}, "feel": {"_count": 1}, "smiling": {"_count": 1}, "at": {"_count": 1}, "pink": {"_count": 1}}, "calling": {"_count": 2, "hurried": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 5, "Harry": {"_count": 1}, "the": {"_count": 2}, "give": {"_count": 1}, "invite": {"_count": 1}}, "vanished": {"_count": 1, "Bill": {"_count": 1}}, "sternly": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 5, "the": {"_count": 4}, "them": {"_count": 1}}, "whispered": {"_count": 5, "to": {"_count": 1}, "": {"_count": 1}, "distractedly": {"_count": 1}, "meeting": {"_count": 1}, "hugging": {"_count": 1}}, "Bill": {"_count": 7, "and": {"_count": 3}, "Ron": {"_count": 2}, "muttered": {"_count": 1}, "supported": {"_count": 1}}, "chivvied": {"_count": 1, "them": {"_count": 1}}, "only": {"_count": 1, "smiled": {"_count": 1}}, "hissed": {"_count": 1, "down": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "appears": {"_count": 1, "to": {"_count": 1}}, "found": {"_count": 1, "upon": {"_count": 1}}, "straighten": {"_count": 1, "your": {"_count": 1}}, "Hog": {"_count": 1, "warts": {"_count": 1}}, "have": {"_count": 2, "been": {"_count": 1}, "you": {"_count": 1}}, "pursing": {"_count": 1, "her": {"_count": 1}}, "grinned": {"_count": 1, "her": {"_count": 1}}, "showing": {"_count": 1, "them": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "whiled": {"_count": 1, "away": {"_count": 1}}, "nodded": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "forced": {"_count": 1, "him": {"_count": 1}}, "screamed": {"_count": 1, "and": {"_count": 1}}, "set": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "held": {"_count": 2, "him": {"_count": 2}}, "Dumbledore": {"_count": 1, "was": {"_count": 1}}, "emerged": {"_count": 2, "from": {"_count": 1}, "onto": {"_count": 1}}, "why": {"_count": 1, "": {"_count": 1}}, "exasperatedly": {"_count": 1, "turning": {"_count": 1}}, "darted": {"_count": 1, "forward": {"_count": 1}}, "abandoned": {"_count": 1, "the": {"_count": 1}}, "cleared": {"_count": 1, "her": {"_count": 1}}, "sounding": {"_count": 4, "exasperated": {"_count": 1}, "relieved": {"_count": 1}, "resigned": {"_count": 1}, "slightly": {"_count": 1}}, "will": {"_count": 2, "you": {"_count": 1}, "make": {"_count": 1}}, "while": {"_count": 2, "Mrs": {"_count": 1}, "he": {"_count": 1}}, "stirred": {"_count": 1, "a": {"_count": 1}}, "shrieked": {"_count": 1, "": {"_count": 1}}, "raged": {"_count": 1, "at": {"_count": 1}}, "turned": {"_count": 6, "to": {"_count": 2}, "quickly": {"_count": 1}, "hopefully": {"_count": 1}, "away": {"_count": 1}, "radish": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}, "threw": {"_count": 3, "a": {"_count": 1}, "him": {"_count": 1}, "off": {"_count": 1}}, "placing": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 5, "color": {"_count": 1}, "delay": {"_count": 1}, "usual": {"_count": 1}, "smile": {"_count": 1}, "boy": {"_count": 1}}, "rounding": {"_count": 1, "on": {"_count": 1}}, "breathing": {"_count": 1, "deeply": {"_count": 1}}, "fiercely": {"_count": 2, "": {"_count": 2}}, "standing": {"_count": 1, "up": {"_count": 1}}, "Sirius": {"_count": 2, "Bill": {"_count": 1}, "Lupin": {"_count": 1}}, "shortly": {"_count": 2, "": {"_count": 2}}, "spoke": {"_count": 1, "from": {"_count": 1}}, "beckoned": {"_count": 1, "imperiously": {"_count": 1}}, "closed": {"_count": 2, "the": {"_count": 2}}, "Hermione": {"_count": 3, "Ginny": {"_count": 1}, "Granger": {"_count": 1}, "and": {"_count": 1}}, "at": {"_count": 4, "these": {"_count": 1}, "once": {"_count": 3}}, "mopped": {"_count": 1, "her": {"_count": 1}}, "finally": {"_count": 1, "removed": {"_count": 1}}, "recalled": {"_count": 1, "them": {"_count": 1}}, "pursed": {"_count": 2, "her": {"_count": 2}}, "placed": {"_count": 1, "a": {"_count": 1}}, "sat": {"_count": 2, "down": {"_count": 2}}, "checked": {"_count": 1, "his": {"_count": 1}}, "upstairs": {"_count": 1, "and": {"_count": 1}}, "unbolted": {"_count": 1, "the": {"_count": 1}}, "beaming": {"_count": 2, "fondly": {"_count": 1}, "at": {"_count": 1}}, "delighted": {"_count": 1, "with": {"_count": 1}}, "folded": {"_count": 1, "himself": {"_count": 1}}, "reached": {"_count": 2, "past": {"_count": 1}, "out": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "clearly": {"_count": 1, "uncertain": {"_count": 1}}, "Misuse": {"_count": 1, "of": {"_count": 1}}, "stepped": {"_count": 1, "out": {"_count": 1}}, "gesturing": {"_count": 1, "toward": {"_count": 1}}, "firmly": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "through": {"_count": 2, "the": {"_count": 2}}, "joined": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "moved": {"_count": 3, "inside": {"_count": 1}, "forward": {"_count": 1}, "aside": {"_count": 1}}, "those": {"_count": 1, "are": {"_count": 1}}, "Im": {"_count": 2, "in": {"_count": 1}, "sorry": {"_count": 1}}, "stood": {"_count": 2, "on": {"_count": 1}, "chatting": {"_count": 1}}, "shoving": {"_count": 1, "a": {"_count": 1}}, "coolly": {"_count": 1, "": {"_count": 1}}, "apologetically": {"_count": 1, "taking": {"_count": 1}}, "rifled": {"_count": 1, "through": {"_count": 1}}, "unfolded": {"_count": 1, "it": {"_count": 1}}, "skidded": {"_count": 1, "to": {"_count": 1}}, "cursed": {"_count": 1, "furiously": {"_count": 1}}, "seized": {"_count": 3, "him": {"_count": 1}, "Harry": {"_count": 1}, "hold": {"_count": 1}}, "stumbled": {"_count": 1, "to": {"_count": 1}}, "Witness": {"_count": 1, "for": {"_count": 1}}, "broke": {"_count": 3, "off": {"_count": 3}}, "wonderingly": {"_count": 1, "pulling": {"_count": 1}}, "gripped": {"_count": 1, "Harrys": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "curtly": {"_count": 1, "his": {"_count": 1}}, "though": {"_count": 3, "he": {"_count": 1}, "with": {"_count": 1}, "she": {"_count": 1}}, "backed": {"_count": 1, "into": {"_count": 1}}, "absently": {"_count": 1, "rolling": {"_count": 1}}, "yawned": {"_count": 1, "widely": {"_count": 1}}, "sobbed": {"_count": 6, "pointing": {"_count": 1}, "harder": {"_count": 3}, "over": {"_count": 1}, "into": {"_count": 1}}, "moaned": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "just": {"_count": 2, "get": {"_count": 1}, "a": {"_count": 1}}, "gave": {"_count": 3, "a": {"_count": 2}, "Harry": {"_count": 1}}, "silly": {"_count": 1, "": {"_count": 1}}, "bellowed": {"_count": 1, "and": {"_count": 1}}, "despairingly": {"_count": 1, "well": {"_count": 1}}, "stiffly": {"_count": 1, "averting": {"_count": 1}}, "lengthening": {"_count": 1, "her": {"_count": 1}}, "shoved": {"_count": 1, "Harry": {"_count": 1}}, "shrank": {"_count": 1, "rapidly": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "Gryffindor": {"_count": 2, "common": {"_count": 1}, "House": {"_count": 1}}, "dyou": {"_count": 1, "know": {"_count": 1}}, "Longbottom": {"_count": 1, "": {"_count": 1}}, "thats": {"_count": 1, "a": {"_count": 1}}, "cannot": {"_count": 3, "save": {"_count": 3}}, "oh": {"_count": 1, "who": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "Is": {"_count": 10, "Our": {"_count": 10}}, "we": {"_count": 2, "were": {"_count": 1}, "are": {"_count": 1}}, "wasnt": {"_count": 1, "going": {"_count": 1}}, "injured": {"_count": 1, "wife": {"_count": 1}}, "must": {"_count": 1, "long": {"_count": 1}}, "lifted": {"_count": 1, "them": {"_count": 1}}, "something": {"_count": 1, "he": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "party": {"_count": 2, "as": {"_count": 1}, "moved": {"_count": 1}}, "cheerfully": {"_count": 1, "reaching": {"_count": 1}}, "reminded": {"_count": 1, "her": {"_count": 1}}, "warningly": {"_count": 1, "": {"_count": 1}}, "grimly": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 1, "visit": {"_count": 1}}, "propped": {"_count": 1, "up": {"_count": 1}}, "after": {"_count": 2, "they": {"_count": 1}, "a": {"_count": 1}}, "suspiciously": {"_count": 1, "why": {"_count": 1}}, "airily": {"_count": 1, "starting": {"_count": 1}}, "imploringly": {"_count": 1, "": {"_count": 1}}, "shriek": {"_count": 1, "WHAT": {"_count": 1}}, "poking": {"_count": 1, "her": {"_count": 1}}, "reprovingly": {"_count": 1, "": {"_count": 1}}, "withdrew": {"_count": 1, "from": {"_count": 1}}, "walking": {"_count": 1, "proudly": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "leading": {"_count": 1, "her": {"_count": 1}}, "meekly": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 2, "amongst": {"_count": 1}, "into": {"_count": 1}}, "their": {"_count": 1, "congratulations": {"_count": 1}}, "hugging": {"_count": 1, "him": {"_count": 1}}, "genially": {"_count": 1, "shaking": {"_count": 1}}, "or": {"_count": 1, "I": {"_count": 1}}, "hovered": {"_count": 1, "excitedly": {"_count": 1}}, "your": {"_count": 1, "shirts": {"_count": 1}}, "rocket": {"_count": 1, "zoomed": {"_count": 1}}, "appealing": {"_count": 1, "to": {"_count": 1}}, "can": {"_count": 2, "save": {"_count": 1}, "I": {"_count": 1}}, "Neville": {"_count": 1, "Longbottom": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "turning": {"_count": 1, "from": {"_count": 1}}, "pleasantly": {"_count": 1, "to": {"_count": 1}}, "short": {"_count": 1, "plump": {"_count": 1}}, "rapping": {"_count": 1, "a": {"_count": 1}}, "slid": {"_count": 1, "a": {"_count": 1}}, "possibly": {"_count": 1, "taking": {"_count": 1}}, "ended": {"_count": 1, "her": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "hesitantly": {"_count": 1, "": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "good": {"_count": 1, "night": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "popped": {"_count": 1, "her": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "patiently": {"_count": 1, "": {"_count": 1}}, "squeezed": {"_count": 1, "past": {"_count": 1}}, "proudly": {"_count": 1, "ruffling": {"_count": 1}}, "brought": {"_count": 1, "home": {"_count": 1}}, "passed": {"_count": 1, "him": {"_count": 1}}, "pointedly": {"_count": 1, "glared": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "firing": {"_count": 1, "up": {"_count": 1}}, "glaring": {"_count": 1, "angrily": {"_count": 1}}, "checking": {"_count": 1, "her": {"_count": 1}}, "gazing": {"_count": 1, "dumbfounded": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "warily": {"_count": 1, "": {"_count": 1}}, "tartly": {"_count": 1, "cutting": {"_count": 1}}, "consulting": {"_count": 1, "her": {"_count": 1}}, "exploding": {"_count": 1, "with": {"_count": 1}}, "forestalled": {"_count": 1, "him": {"_count": 1}}, "slowly": {"_count": 1, "": {"_count": 1}}, "cried": {"_count": 2, "Harry": {"_count": 1}, "as": {"_count": 1}}, "helped": {"_count": 1, "him": {"_count": 1}}, "girl": {"_count": 3, "finished": {"_count": 1}, "": {"_count": 1}, "have": {"_count": 1}}, "playing": {"_count": 1, "with": {"_count": 1}}, "saves": {"_count": 1, "it": {"_count": 1}}, "wiping": {"_count": 1, "her": {"_count": 1}}, "whose": {"_count": 2, "head": {"_count": 1}, "hair": {"_count": 1}}, "everything": {"_count": 1, "he": {"_count": 1}}, "bustled": {"_count": 1, "off": {"_count": 1}}, "herself": {"_count": 1, "who": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "straightening": {"_count": 1, "her": {"_count": 1}}, "tearfully": {"_count": 1, "reaching": {"_count": 1}}, "dissolved": {"_count": 1, "into": {"_count": 1}}, "hurried": {"_count": 2, "up": {"_count": 1}, "after": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "flew": {"_count": 1, "into": {"_count": 1}}, "darting": {"_count": 1, "past": {"_count": 1}}, "bent": {"_count": 2, "over": {"_count": 2}}, "raised": {"_count": 1, "her": {"_count": 1}}, "aside": {"_count": 1, "and": {"_count": 1}}, "fell": {"_count": 1, "back": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "kindfaced": {"_count": 1, "balding": {"_count": 1}}, "overstretch": {"_count": 1, "himself": {"_count": 1}}, "reappeared": {"_count": 1, "carrying": {"_count": 1}}, "shout": {"_count": 1, "like": {"_count": 1}}, "ran": {"_count": 2, "forward": {"_count": 1}, "in": {"_count": 1}}, "detached": {"_count": 1, "Harry": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "cook": {"_count": 1, "vast": {"_count": 1}}, "Kingsley": {"_count": 1, "and": {"_count": 1}}, "replied": {"_count": 1, "terrified": {"_count": 1}}, "magicked": {"_count": 1, "the": {"_count": 1}}, "shouting": {"_count": 1, "from": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "force": {"_count": 1, "Charlie": {"_count": 1}}, "exchange": {"_count": 1, "a": {"_count": 1}}, "normally": {"_count": 1, "occupied": {"_count": 1}}, "examined": {"_count": 1, "the": {"_count": 1}}, "restore": {"_count": 1, "the": {"_count": 1}}, "relatives": {"_count": 1, "to": {"_count": 1}}, "repaired": {"_count": 1, "the": {"_count": 1}}, "cousin": {"_count": 1, "jumped": {"_count": 1}}, "walked": {"_count": 1, "inside": {"_count": 1}}, "glare": {"_count": 1, "at": {"_count": 1}}, "strode": {"_count": 1, "into": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "stroking": {"_count": 1, "her": {"_count": 1}}, "overtaking": {"_count": 1, "Horace": {"_count": 1}}}, "Bye": {"_count": 13, "said": {"_count": 3, "Harry": {"_count": 3}}, "Harry": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "Ron": {"_count": 1, "Harry": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "bye": {"_count": 1, "she": {"_count": 1}}, "Dud": {"_count": 1, "": {"_count": 1}}, "Al": {"_count": 1, "said": {"_count": 1}}}, "blurted": {"_count": 11, "out": {"_count": 10, "": {"_count": 9}, "But": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "Georges": {"_count": 61, "jokes": {"_count": 4, "said": {"_count": 1}, "stared": {"_count": 1}, "": {"_count": 1}, "or": {"_count": 1}}, "bedroom": {"_count": 2, "were": {"_count": 1}, "was": {"_count": 1}}, "jealous": {"_count": 1, "faces": {"_count": 1}}, "Filibuster": {"_count": 1, "fireworks": {"_count": 1}}, "head": {"_count": 2, "": {"_count": 1}, "Ginny": {"_count": 1}}, "other": {"_count": 1, "side": {"_count": 1}}, "wand": {"_count": 1, "had": {"_count": 1}}, "wildest": {"_count": 1, "dreams": {"_count": 1}}, "absence": {"_count": 1, "to": {"_count": 1}}, "shoulder": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 3, "said": {"_count": 1}, "all": {"_count": 1}, "with": {"_count": 1}}, "pocket": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "jacket": {"_count": 1, "and": {"_count": 1}}, "mutinous": {"_count": 1, "faces": {"_count": 1}}, "fake": {"_count": 1, "wands": {"_count": 1}}, "plans": {"_count": 1, "had": {"_count": 1}}, "right": {"_count": 1, "you": {"_count": 1}}, "owl": {"_count": 1, "had": {"_count": 1}}, "hands": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "heads": {"_count": 1, "turned": {"_count": 1}}, "loud": {"_count": 1, "voice": {"_count": 1}}, "palm": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "bucket": {"_count": 1, "were": {"_count": 1}}, "Cleansweeps": {"_count": 2, "which": {"_count": 1}, "had": {"_count": 1}}, "broomsticks": {"_count": 1, "one": {"_count": 1}}, "flight": {"_count": 1, "to": {"_count": 1}}, "Wildfire": {"_count": 1, "Whiz": {"_count": 1}}, "example": {"_count": 1, "a": {"_count": 1}}, "departure": {"_count": 1, "Harry": {"_count": 1}}, "dramatic": {"_count": 1, "departure": {"_count": 1}}, "swamp": {"_count": 1, "said": {"_count": 1}}, "boxes": {"_count": 1, "though": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "shop": {"_count": 2, "": {"_count": 2}}, "stick": {"_count": 1, "close": {"_count": 1}}, "windows": {"_count": 1, "hit": {"_count": 1}}, "elbow": {"_count": 1, "laden": {"_count": 1}}, "products": {"_count": 1, "": {"_count": 1}}, "love": {"_count": 1, "potions": {"_count": 1}}, "SpellCheck": {"_count": 1, "ones": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "ears": {"_count": 1, "was": {"_count": 1}}, "ear": {"_count": 1, "had": {"_count": 1}}, "fingers": {"_count": 1, "groped": {"_count": 1}}, "grin": {"_count": 1, "faded": {"_count": 1}}, "wound": {"_count": 1, "was": {"_count": 1}}, "friend": {"_count": 1, "Lee": {"_count": 1}}}, "jokes": {"_count": 12, "said": {"_count": 1, "Ron": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "tricks": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "you": {"_count": 1}}, "or": {"_count": 1, "offering": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "all": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "Wow": {"_count": 22, "said": {"_count": 4, "Ron": {"_count": 2}, "Dennis": {"_count": 1}, "Harry": {"_count": 1}}, "Ron": {"_count": 1, "sighed": {"_count": 1}}, "Harry": {"_count": 2, "that": {"_count": 1}, "He": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 2}, ".": {"_count": 3}}, "hope": {"_count": 1, "it": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "I": {"_count": 2, "wonder": {"_count": 1}, "remember": {"_count": 1}}, "scary": {"_count": 1, "thought": {"_count": 1}}, "you": {"_count": 1, "like": {"_count": 1}}, "were": {"_count": 1, "identical": {"_count": 1}}, "thats": {"_count": 1, "right": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}}, "moments": {"_count": 112, "then": {"_count": 4, "as": {"_count": 1}, "waved": {"_count": 1}, "set": {"_count": 1}, "said": {"_count": 1}}, "pause": {"_count": 3, "HUFFLEPUFF": {"_count": 1}, "in": {"_count": 1}, "will": {"_count": 1}}, "between": {"_count": 1, "lessons": {"_count": 1}}, "later": {"_count": 23, "": {"_count": 2}, "found": {"_count": 1}, "Malfoy": {"_count": 1}, "it": {"_count": 1}, "Hagrids": {"_count": 1}, "right": {"_count": 1}, "and": {"_count": 2}, "Mr": {"_count": 1}, "with": {"_count": 2}, "they": {"_count": 2}, "Harry": {"_count": 1}, "the": {"_count": 1}, "onto": {"_count": 1}, "laden": {"_count": 1}, "during": {"_count": 1}, "from": {"_count": 1}, "he": {"_count": 2}, "clean": {"_count": 1}}, "and": {"_count": 2, "every": {"_count": 1}, "then": {"_count": 1}}, "of": {"_count": 6, "his": {"_count": 2}, "terrified": {"_count": 1}, "their": {"_count": 1}, "your": {"_count": 1}, "apparently": {"_count": 1}}, "silence": {"_count": 9, "then": {"_count": 2}, "": {"_count": 5}, "which": {"_count": 1}, "during": {"_count": 1}}, "replayed": {"_count": 1, "inside": {"_count": 1}}, "indecision": {"_count": 1, "but": {"_count": 1}}, "to": {"_count": 3, "make": {"_count": 1}, "realize": {"_count": 1}, "compose": {"_count": 1}}, "pain": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 9, "I": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 1}, "Hermione": {"_count": 1}, "he": {"_count": 4}, "": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "too": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 5, "lay": {"_count": 1}, "gazed": {"_count": 1}, "muttered": {"_count": 1}, "spent": {"_count": 1}, "said": {"_count": 1}}, "passed": {"_count": 1, "Harry": {"_count": 1}}, "pressure": {"_count": 1, "on": {"_count": 1}}, "still": {"_count": 1, "tracing": {"_count": 1}}, "abusing": {"_count": 1, "her": {"_count": 1}}, "but": {"_count": 1, "stared": {"_count": 1}}, "had": {"_count": 2, "passed": {"_count": 1}, "come": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "wishing": {"_count": 1, "they": {"_count": 1}}, "hesitation": {"_count": 2, "the": {"_count": 1}, "but": {"_count": 1}}, "Slughorn": {"_count": 1, "got": {"_count": 1}}, "foraging": {"_count": 1, "emerged": {"_count": 1}}, "you": {"_count": 1, "need": {"_count": 1}}, "painful": {"_count": 1, "silence": {"_count": 1}}, "after": {"_count": 3, "their": {"_count": 1}, "Dumbledore": {"_count": 2}}, "or": {"_count": 1, "it": {"_count": 1}}, "Harry": {"_count": 2, "could": {"_count": 1}, "felt": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "when": {"_count": 5, "the": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 2}, "she": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "notice": {"_count": 1, "which": {"_count": 1}}, "thought": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "took": {"_count": 1}}, "Ron": {"_count": 1, "spoke": {"_count": 1}}, "bewilderment": {"_count": 1, "he": {"_count": 1}}, "seconds": {"_count": 1, "before": {"_count": 1}}, "warning": {"_count": 1, "": {"_count": 1}}}, "Moms": {"_count": 1, "got": {"_count": 1, "a": {"_count": 1}}}, "whos": {"_count": 67, "an": {"_count": 1, "accountant": {"_count": 1}}, "yours": {"_count": 1, "": {"_count": 1}}, "called": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 5, "no": {"_count": 1}, "it": {"_count": 2}, "a": {"_count": 1}, "to": {"_count": 1}}, "supposed": {"_count": 2, "to": {"_count": 2}}, "behind": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 1}}, "doing": {"_count": 1, "the": {"_count": 1}}, "ever": {"_count": 1, "bothered": {"_count": 1}}, "in": {"_count": 3, "there": {"_count": 1}, "league": {"_count": 1}, "the": {"_count": 1}}, "guilty": {"_count": 1, "an": {"_count": 1}}, "not": {"_count": 3, "": {"_count": 1}, "from": {"_count": 1}, "allowed": {"_count": 1}}, "had": {"_count": 1, "trouble": {"_count": 1}}, "going": {"_count": 4, "to": {"_count": 4}}, "read": {"_count": 1, "Hogwarts": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "arrived": {"_count": 1}}, "gone": {"_count": 1, "missing": {"_count": 1}}, "getting": {"_count": 1, "worried": {"_count": 1}}, "working": {"_count": 1, "for": {"_count": 1}}, "missin": {"_count": 1, "": {"_count": 1}}, "mad": {"_count": 1, "now": {"_count": 1}}, "lost": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 2, "bit": {"_count": 1}, "Slytherin": {"_count": 1}}, "left": {"_count": 1, "all": {"_count": 1}}, "gggoing": {"_count": 1, "to": {"_count": 1}}, "actually": {"_count": 1, "refusing": {"_count": 1}}, "laughing": {"_count": 1, "after": {"_count": 1}}, "interested": {"_count": 1, "to": {"_count": 1}}, "taking": {"_count": 1, "anything": {"_count": 1}}, "talking": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "insulting": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Ive": {"_count": 1}}, "managed": {"_count": 1, "ter": {"_count": 1}}, "serious": {"_count": 1, "about": {"_count": 1}}, "been": {"_count": 2, "possessed": {"_count": 1}, "traveling": {"_count": 1}}, "Divination": {"_count": 1, "teacher": {"_count": 1}}, "earned": {"_count": 1, "the": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "nervous": {"_count": 1, "": {"_count": 1}}, "stationed": {"_count": 1, "up": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "tightened": {"_count": 1, "security": {"_count": 1}}, "against": {"_count": 1, "YouKnowWho": {"_count": 1}}, "vanished": {"_count": 1, "off": {"_count": 1}}, "to": {"_count": 1, "say": {"_count": 1}}, "boasting": {"_count": 1, "about": {"_count": 1}}, "buried": {"_count": 1, "in": {"_count": 1}}, "pretending": {"_count": 2, "differents": {"_count": 2}}, "Disapparating": {"_count": 1, "out": {"_count": 1}}}, "accountant": {"_count": 1, "but": {"_count": 1, "we": {"_count": 1}}}, "Weasleys": {"_count": 214, "were": {"_count": 6, "clearly": {"_count": 1}, "standing": {"_count": 1}, "purebloods": {"_count": 1}, "Harrys": {"_count": 1}, "only": {"_count": 1}, "still": {"_count": 1}}, "have": {"_count": 1, "red": {"_count": 1}}, "and": {"_count": 11, "that": {"_count": 1}, "Chaser": {"_count": 1}, "Harry": {"_count": 2}, "all": {"_count": 1}, "Hermione": {"_count": 3}, "their": {"_count": 1}, "above": {"_count": 1}, "Hagrid": {"_count": 1}}, "are": {"_count": 2, "more": {"_count": 1}, "one": {"_count": 1}}, "wristwatches": {"_count": 1, "and": {"_count": 1}}, "flew": {"_count": 1, "up": {"_count": 1}}, "spent": {"_count": 1, "a": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "complained": {"_count": 1, "that": {"_count": 1}}, "who": {"_count": 3, "kept": {"_count": 1}, "were": {"_count": 2}}, "whove": {"_count": 1, "got": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "roared": {"_count": 2, "with": {"_count": 2}}, "sons": {"_count": 1, "were": {"_count": 1}}, "book": {"_count": 1, "": {"_count": 1}}, "slouched": {"_count": 1, "outside": {"_count": 1}}, "eyes": {"_count": 5, "jerked": {"_count": 1}, "that": {"_count": 1}, "filled": {"_count": 1}, "on": {"_count": 1}, "by": {"_count": 1}}, "hedge": {"_count": 1, "": {"_count": 1}}, "house": {"_count": 1, "burst": {"_count": 1}}, "owned": {"_count": 1, "": {"_count": 1}}, "fire": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 3, "we": {"_count": 1}, "Lockhart": {"_count": 1}, "he": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "vault": {"_count": 1, "but": {"_count": 1}}, "age": {"_count": 1, "": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "face": {"_count": 4, "": {"_count": 3}, "fell": {"_count": 1}}, "yells": {"_count": 1, "a": {"_count": 1}}, "head": {"_count": 2, "drooped": {"_count": 1}, "as": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}, "car": {"_count": 3, "which": {"_count": 1}, "was": {"_count": 2}}, "resignation": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "nobody": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "tight": {"_count": 1, "embrace": {"_count": 1}}, "daughter": {"_count": 2, "had": {"_count": 1}, "he": {"_count": 1}}, "waving": {"_count": 1, "furiously": {"_count": 1}}, "youngest": {"_count": 1, "child": {"_count": 1}}, "Harry": {"_count": 2, "and": {"_count": 2}}, "ears": {"_count": 1, "had": {"_count": 1}}, "bedroom": {"_count": 1, "door": {"_count": 1}}, "could": {"_count": 2, "look": {"_count": 1}, "not": {"_count": 1}}, "argument": {"_count": 1, "and": {"_count": 1}}, "mutilating": {"_count": 1, "my": {"_count": 1}}, "reaction": {"_count": 1, "and": {"_count": 1}}, "letter": {"_count": 2, "had": {"_count": 1}, "again": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "theyre": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "voice": {"_count": 6, "": {"_count": 4}, "excitedly": {"_count": 1}, "was": {"_count": 1}}, "all": {"_count": 4, "of": {"_count": 1}, "seven": {"_count": 1}, "tucking": {"_count": 1}, "sitting": {"_count": 1}}, "wand": {"_count": 2, "was": {"_count": 1}, "slashed": {"_count": 1}}, "kitchen": {"_count": 3, "fire": {"_count": 1}, "it": {"_count": 1}, "and": {"_count": 1}}, "Wizard": {"_count": 12, "Wheezes": {"_count": 12}}, "excellent": {"_count": 1, "cooking": {"_count": 1}}, "tents": {"_count": 1, "": {"_count": 1}}, "party": {"_count": 1, "kept": {"_count": 1}}, "looked": {"_count": 1, "down": {"_count": 1}}, "changed": {"_count": 1, "into": {"_count": 1}}, "always": {"_count": 1, "avoided": {"_count": 1}}, "neck": {"_count": 2, "and": {"_count": 1}, "havent": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "hand": {"_count": 5, "had": {"_count": 2}, "but": {"_count": 1}, "must": {"_count": 1}, "between": {"_count": 1}}, "hands": {"_count": 1, "": {"_count": 1}}, "son": {"_count": 2, "eh": {"_count": 1}, "whats": {"_count": 1}}, "usual": {"_count": 1, "package": {"_count": 1}}, "snowball": {"_count": 1, "fight": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "charm": {"_count": 1, "Harry": {"_count": 1}}, "purge": {"_count": 1, "": {"_count": 1}}, "lower": {"_count": 1, "lip": {"_count": 1}}, "back": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "continual": {"_count": 1, "references": {"_count": 1}}, "dingy": {"_count": 1, "office": {"_count": 1}}, "obsessions": {"_count": 1, "there": {"_count": 1}}, "overflowing": {"_count": 1, "intray": {"_count": 1}}, "mouth": {"_count": 1, "tightened": {"_count": 1}}, "shoulder": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "preoccupation": {"_count": 1, "about": {"_count": 1}}, "body": {"_count": 1, "replaced": {"_count": 1}}, "family": {"_count": 1, "in": {"_count": 1}}, "patched": {"_count": 1, "her": {"_count": 1}}, "Lupin": {"_count": 1, "Tonks": {"_count": 1}}, "riding": {"_count": 1, "": {"_count": 1}}, "new": {"_count": 1, "advertisement": {"_count": 1}}, "dispersed": {"_count": 1, "and": {"_count": 1}}, "dont": {"_count": 3, "you": {"_count": 1}, "need": {"_count": 2}}, "hovel": {"_count": 1, "smells": {"_count": 1}}, "pigsty": {"_count": 1, "reminds": {"_count": 1}}, "boggart": {"_count": 1, "turning": {"_count": 1}}, "lifeless": {"_count": 1, "body": {"_count": 1}}, "looks": {"_count": 1, "of": {"_count": 1}}, "happiness": {"_count": 1, "and": {"_count": 1}}, "old": {"_count": 2, "Ford": {"_count": 1}, "Ministry": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "piercing": {"_count": 1, "gaze": {"_count": 1}}, "ward": {"_count": 1, "the": {"_count": 1}}, "Mrs": {"_count": 1, "Longbottom": {"_count": 1}}, "froze": {"_count": 1, "on": {"_count": 1}}, "without": {"_count": 1, "comment": {"_count": 1}}, "Wildfire": {"_count": 1, "WhizBangs": {"_count": 1}}, "Wizarding": {"_count": 1, "Wheezes": {"_count": 1}}, "attack": {"_count": 1, "": {"_count": 1}}, "Longbottom": {"_count": 1, "and": {"_count": 1}}, "kept": {"_count": 1, "their": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "weary": {"_count": 1, "voice": {"_count": 1}}, "orchard": {"_count": 1, "he": {"_count": 1}}, "displeasure": {"_count": 1, "Harrys": {"_count": 1}}, "walked": {"_count": 1, "through": {"_count": 1}}, "accusations": {"_count": 1, "that": {"_count": 1}}, "joined": {"_count": 1, "him": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "handknitted": {"_count": 1, "sweaters": {"_count": 1}}, "patchy": {"_count": 1, "performance": {"_count": 1}}, "favorite": {"_count": 1, "singer": {"_count": 1}}, "expression": {"_count": 1, "to": {"_count": 1}}, "overgrown": {"_count": 1, "snowcovered": {"_count": 1}}, "tearful": {"_count": 1, "face": {"_count": 1}}, "birthday": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "Ron": {"_count": 1}}, "vests": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 1, "stopped": {"_count": 1}}, "ministrations": {"_count": 1, "Georges": {"_count": 1}}, "to": {"_count": 1, "invite": {"_count": 1}}, "Patronus": {"_count": 1, "and": {"_count": 1}}, "file": {"_count": 1, "": {"_count": 1}}, "folder": {"_count": 1, "and": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}, "anger": {"_count": 1, "was": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "mishap": {"_count": 1, "Snape": {"_count": 1}}, "no": {"_count": 1, "Luna": {"_count": 1}}}, "Horrible": {"_count": 4, "well": {"_count": 1, "not": {"_count": 1}}, "temper": {"_count": 1, "said": {"_count": 1}}, "pictures": {"_count": 1, "formed": {"_count": 1}}, "croaked": {"_count": 1, "Dudley": {"_count": 1}}}, "Wish": {"_count": 20, "Id": {"_count": 2, "had": {"_count": 1}, "followed": {"_count": 1}}, "McGonagall": {"_count": 1, "favored": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "I": {"_count": 6, "knew": {"_count": 2}, "hadnt": {"_count": 1}, "could": {"_count": 2}, "had": {"_count": 1}}, "we": {"_count": 3, "couldve": {"_count": 1}, "could": {"_count": 2}}, "Dobby": {"_count": 1, "d": {"_count": 1}}, "shed": {"_count": 1, "hurry": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "lunch": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "Dad": {"_count": 1, "would": {"_count": 1}}}, "brothers": {"_count": 65, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "in": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "do": {"_count": 1, "now": {"_count": 1}}, "and": {"_count": 5, "the": {"_count": 1}, "everyone": {"_count": 1}, "sisters": {"_count": 2}, "he": {"_count": 1}}, "catcalling": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "have": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 6, "staying": {"_count": 1}, "enthusiastic": {"_count": 1}, "not": {"_count": 1}, "learned": {"_count": 1}, "the": {"_count": 1}, "simply": {"_count": 1}}, "sees": {"_count": 1, "himself": {"_count": 1}}, "tease": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 3, "set": {"_count": 1}, "compete": {"_count": 1}, "continue": {"_count": 1}}, "might": {"_count": 1, "think": {"_count": 1}}, "starting": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "who": {"_count": 4, "were": {"_count": 2}, "wanted": {"_count": 1}, "deflected": {"_count": 1}}, "had": {"_count": 2, "managed": {"_count": 1}, "materialized": {"_count": 1}}, "werent": {"_count": 1, "bothering": {"_count": 1}}, "wedding": {"_count": 3, "But": {"_count": 1}, "here": {"_count": 1}, "he": {"_count": 1}}, "Crouchs": {"_count": 2, "personal": {"_count": 2}}, "but": {"_count": 1, "he": {"_count": 1}}, "caused": {"_count": 1, "this": {"_count": 1}}, "Colin": {"_count": 1, "and": {"_count": 1}}, "exchanged": {"_count": 1, "awestruck": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "stared": {"_count": 1, "in": {"_count": 1}}, "face": {"_count": 1, "as": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "reached": {"_count": 1, "a": {"_count": 1}}, "upon": {"_count": 1, "their": {"_count": 1}}, "separated": {"_count": 1, "each": {"_count": 1}}, "throat": {"_count": 1, "": {"_count": 1}}, "Antioch": {"_count": 1, "Cadmus": {"_count": 1}}, "every": {"_count": 1, "orifice": {"_count": 1}}, "The": {"_count": 1, "bright": {"_count": 1}}, "best": {"_count": 1, "friend": {"_count": 1}}, "shoulders": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "clutching": {"_count": 1, "her": {"_count": 1}}}, "sixth": {"_count": 34, "in": {"_count": 1, "our": {"_count": 1}}, "year": {"_count": 9, "and": {"_count": 2}, "before": {"_count": 1}, "ended": {"_count": 1}, "": {"_count": 2}, "pointing": {"_count": 1}, "Eddie": {"_count": 1}, "is": {"_count": 1}}, "years": {"_count": 10, "and": {"_count": 2}, "could": {"_count": 1}, "passed": {"_count": 1}, "free": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "first": {"_count": 1}, "": {"_count": 1}, "who": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "June": {"_count": 1}}, "and": {"_count": 3, "seventh": {"_count": 3}}, "cauldron": {"_count": 1, "in": {"_count": 1}}, "keys": {"_count": 1, "in": {"_count": 1}}, "stair": {"_count": 1, "when": {"_count": 1}}, "one": {"_count": 1, "we": {"_count": 1}}, "time": {"_count": 1, "I": {"_count": 1}}, "Horcrux": {"_count": 2, "said": {"_count": 1}, "is": {"_count": 1}}, "gobletful": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "Bill": {"_count": 266, "and": {"_count": 64, "Charlie": {"_count": 16}, "Mrs": {"_count": 2}, "immediately": {"_count": 1}, "Lupin": {"_count": 2}, "Percy": {"_count": 1}, "I": {"_count": 3}, "Fleur": {"_count": 20}, "Mr": {"_count": 1}, "Phlegm": {"_count": 1}, "Nymphadora": {"_count": 1}, "Fleurs": {"_count": 13}, "Monsieur": {"_count": 1}, "Ollivander": {"_count": 1}, "he": {"_count": 1}}, "was": {"_count": 9, "head": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "sitting": {"_count": 1}, "under": {"_count": 1}, "making": {"_count": 1}, "wearing": {"_count": 1}, "hurrying": {"_count": 1}, "soon": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 2, "Charlie": {"_count": 1}, "else": {"_count": 1}}, "got": {"_count": 2, "twelve": {"_count": 1}, "to": {"_count": 1}}, "in": {"_count": 4, "Egypt": {"_count": 3}, "thanks": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 28}, "!": {"_count": 2}, "?": {"_count": 3}}, "works": {"_count": 1, "as": {"_count": 1}}, "says": {"_count": 1, "its": {"_count": 1}}, "came": {"_count": 1, "as": {"_count": 1}}, "had": {"_count": 8, "been": {"_count": 2}, "a": {"_count": 2}, "just": {"_count": 1}, "shown": {"_count": 1}, "soon": {"_count": 1}, "lent": {"_count": 1}}, "to": {"_count": 2, "be": {"_count": 1}, "make": {"_count": 1}}, "grinning": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "reattached": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "what": {"_count": 1, "do": {"_count": 1}}, "patiently": {"_count": 1, "": {"_count": 1}}, "Charlie": {"_count": 9, "and": {"_count": 7}, "Ron": {"_count": 1}, "Percy": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "removing": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 5, "Mr": {"_count": 1}, "Harry": {"_count": 1}, "goodbye": {"_count": 1}, "but": {"_count": 1}, "All": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "handed": {"_count": 1, "his": {"_count": 1}}, "yawning": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 6, "was": {"_count": 3}, "still": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}}, "asked": {"_count": 1, "": {"_count": 1}}, "hands": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "standing": {"_count": 2, "in": {"_count": 1}, "up": {"_count": 1}}, "with": {"_count": 3, "great": {"_count": 1}, "good": {"_count": 1}, "a": {"_count": 1}}, "looking": {"_count": 2, "around": {"_count": 1}, "down": {"_count": 1}}, "surveying": {"_count": 1, "his": {"_count": 1}}, "Ron": {"_count": 3, "and": {"_count": 3}}, "too": {"_count": 1, "you": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "they": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "pulled": {"_count": 2, "back": {"_count": 1}, "the": {"_count": 1}}, "all": {"_count": 1, "jumped": {"_count": 1}}, "doesnt": {"_count": 1, "like": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "talking": {"_count": 1}, "having": {"_count": 1}}, "called": {"_count": 2, "trying": {"_count": 1}, "": {"_count": 1}}, "took": {"_count": 1, "out": {"_count": 1}}, "didnt": {"_count": 1, "feel": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "incredulously": {"_count": 1, "": {"_count": 1}}, "Mundungus": {"_count": 1, "Lupin": {"_count": 1}}, "are": {"_count": 1, "on": {"_count": 1}}, "told": {"_count": 5, "me": {"_count": 3}, "Mum": {"_count": 1}, "her": {"_count": 1}}, "just": {"_count": 1, "left": {"_count": 1}}, "muttered": {"_count": 1, "something": {"_count": 1}}, "is": {"_count": 1, "very": {"_count": 1}}, "will": {"_count": 5, "fall": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}, "not": {"_count": 2}}, "while": {"_count": 1, "Mrs": {"_count": 1}}, "waved": {"_count": 1, "his": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "wont": {"_count": 1, "be": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "fought": {"_count": 1, "those": {"_count": 1}}, "whispered": {"_count": 1, "Mrs": {"_count": 1}}, "loving": {"_count": 1, "me": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 2}}, "remained": {"_count": 1, "under": {"_count": 1}}, "supported": {"_count": 1, "by": {"_count": 1}}, "badly": {"_count": 1, "scarred": {"_count": 1}}, "dont": {"_count": 1, "look": {"_count": 1}}, "Fleur": {"_count": 6, "Tonks": {"_count": 1}, "Mad": {"_count": 1}, "nodded": {"_count": 1}, "Luna": {"_count": 2}, "and": {"_count": 1}}, "huddled": {"_count": 1, "round": {"_count": 1}}, "bestowed": {"_count": 1, "upon": {"_count": 1}}, "walked": {"_count": 2, "over": {"_count": 1}, "in": {"_count": 1}}, "Theres": {"_count": 1, "work": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "went": {"_count": 2, "on": {"_count": 2}}, "saw": {"_count": 1, "him": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "Weasley": {"_count": 1, "who": {"_count": 1}}, "reckons": {"_count": 1, "some": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "looked": {"_count": 1, "startled": {"_count": 1}}, "leading": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "opening": {"_count": 1, "the": {"_count": 1}}, "reappeared": {"_count": 1, "carrying": {"_count": 1}}, "left": {"_count": 1, "closing": {"_count": 1}}, "following": {"_count": 1, "an": {"_count": 1}}, "Fred": {"_count": 2, "George": {"_count": 1}, "and": {"_count": 1}}, "appeared": {"_count": 1, "leading": {"_count": 1}}, "quietly": {"_count": 1, "and": {"_count": 1}}, "returned": {"_count": 1, "before": {"_count": 1}}, "jumped": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 1, "to": {"_count": 1}}, "hesitated": {"_count": 2, "": {"_count": 2}}, "waiting": {"_count": 1, "": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "guessed": {"_count": 1, "more": {"_count": 1}}, "setting": {"_count": 1, "his": {"_count": 1}}, "opened": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "gently": {"_count": 1, "": {"_count": 1}}}, "Charlie": {"_count": 92, "have": {"_count": 1, "already": {"_count": 1}}, "was": {"_count": 5, "captain": {"_count": 1}, "in": {"_count": 1}, "always": {"_count": 1}, "built": {"_count": 1}, "darning": {"_count": 1}}, "": {"_count": 15, "?": {"_count": 2}, ".": {"_count": 11}, "!": {"_count": 2}}, "Weasley": {"_count": 6, "couldnt": {"_count": 1}, "and": {"_count": 1}, "Rons": {"_count": 1}, "": {"_count": 1}, "hurrying": {"_count": 1}, "overtaking": {"_count": 1}}, "left": {"_count": 1, "but": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "your": {"_count": 1, "brother": {"_count": 1}}, "can": {"_count": 1, "take": {"_count": 1}}, "to": {"_count": 1, "ask": {"_count": 1}}, "They": {"_count": 1, "looked": {"_count": 1}}, "another": {"_count": 1, "owl": {"_count": 1}}, "or": {"_count": 1, "Percy": {"_count": 1}}, "had": {"_count": 5, "already": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}, "Disapparated": {"_count": 1}, "told": {"_count": 1}}, "the": {"_count": 1, "two": {"_count": 1}}, "who": {"_count": 1, "worked": {"_count": 1}}, "are": {"_count": 2, "in": {"_count": 1}, "setting": {"_count": 1}}, "both": {"_count": 1, "had": {"_count": 1}}, "directed": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "all": {"_count": 1}}, "thickly": {"_count": 1, "through": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "gloomily": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 11, "PerPerPercy": {"_count": 1}, "Percy": {"_count": 7}, "Ginny": {"_count": 1}, "it": {"_count": 1}, "Fred": {"_count": 1}}, "Ron": {"_count": 1, "my": {"_count": 1}}, "said": {"_count": 3, "reassuringly": {"_count": 1}, "frowning": {"_count": 1}, "that": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "Percy": {"_count": 1, "and": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "grinning": {"_count": 1, "as": {"_count": 1}}, "sped": {"_count": 1, "away": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "pointed": {"_count": 1, "toward": {"_count": 1}}, "sternly": {"_count": 1, "": {"_count": 1}}, "grimly": {"_count": 1, "looking": {"_count": 1}}, "imitated": {"_count": 1, "his": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "didnt": {"_count": 1, "Charm": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "wore": {"_count": 1, "one": {"_count": 1}}, "isnt": {"_count": 1, "coming": {"_count": 1}}, "failed": {"_count": 1, "though": {"_count": 1}}, "his": {"_count": 1, "best": {"_count": 1}}, "arrived": {"_count": 1, "from": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "Lupin": {"_count": 1, "Tonks": {"_count": 1}}, "approached": {"_count": 1, "running": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "Mums": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "Hagrid": {"_count": 1, "and": {"_count": 1}}}, "captain": {"_count": 6, "of": {"_count": 3, "Quidditch": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Roger": {"_count": 1, "Davies": {"_count": 1}}, "Montague": {"_count": 1, "was": {"_count": 1}}}, "Percys": {"_count": 42, "a": {"_count": 1, "prefect": {"_count": 1}}, "old": {"_count": 2, "rat": {"_count": 1}, "room": {"_count": 1}}, "been": {"_count": 3, "acting": {"_count": 1}, "hauled": {"_count": 1}, "under": {"_count": 1}}, "direction": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "shock": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "Head": {"_count": 2, "Boy": {"_count": 2}}, "really": {"_count": 2, "pleased": {"_count": 1}, "ambitious": {"_count": 1}}, "chest": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "screech": {"_count": 1, "owl": {"_count": 1}}, "voice": {"_count": 1, "and": {"_count": 1}}, "face": {"_count": 1, "rapt": {"_count": 1}}, "Ravenclaw": {"_count": 1, "girlfriend": {"_count": 1}}, "started": {"_count": 1, "work": {"_count": 1}}, "enjoying": {"_count": 1, "work": {"_count": 1}}, "head": {"_count": 1, "poking": {"_count": 1}}, "boss": {"_count": 1, "was": {"_count": 1}}, "cauldronbottom": {"_count": 1, "report": {"_count": 1}}, "poisoning": {"_count": 1, "him": {"_count": 1}}, "clutches": {"_count": 1, "she": {"_count": 1}}, "letter": {"_count": 5, "was": {"_count": 2}, "": {"_count": 2}, "in": {"_count": 1}}, "written": {"_count": 1, "": {"_count": 1}}, "names": {"_count": 1, "mentioned": {"_count": 1}}, "eyes": {"_count": 1, "behind": {"_count": 1}}, "sanctimonious": {"_count": 1, "little": {"_count": 1}}, "heels": {"_count": 1, "disappeared": {"_count": 1}}, "handwriting": {"_count": 1, "said": {"_count": 1}}, "writing": {"_count": 1, "about": {"_count": 1}}, "nothing": {"_count": 1, "more": {"_count": 1}}, "wake": {"_count": 1, "limping": {"_count": 1}}, "most": {"_count": 1, "pompous": {"_count": 1}}}, "expects": {"_count": 6, "me": {"_count": 2, "to": {"_count": 2}}, "so": {"_count": 1, "sir": {"_count": 1}}, "Devils": {"_count": 1, "Snare": {"_count": 1}}, "we": {"_count": 1, "fools": {"_count": 1}}, "us": {"_count": 1, "to": {"_count": 1}}}, "deal": {"_count": 97, "because": {"_count": 1, "they": {"_count": 1}}, "with": {"_count": 31, "it": {"_count": 2}, "facts": {"_count": 1}, "the": {"_count": 7}, "that": {"_count": 2}, "Muggle": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 1}, "them": {"_count": 2}, "these": {"_count": 1}, "Red": {"_count": 1}, "her": {"_count": 1}, "Dark": {"_count": 1}, "Harry": {"_count": 1}, "all": {"_count": 2}, "him": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "things": {"_count": 1}, "you": {"_count": 1}, "dementors": {"_count": 1}, "Griphook": {"_count": 1}}, "of": {"_count": 29, "bravery": {"_count": 1}, "my": {"_count": 1}, "pain": {"_count": 1}, "whistling": {"_count": 1}, "mutinous": {"_count": 1}, "excited": {"_count": 1}, "noise": {"_count": 3}, "thought": {"_count": 2}, "mess": {"_count": 1}, "Page": {"_count": 1}, "long": {"_count": 1}, "appreciative": {"_count": 1}, "the": {"_count": 1}, "fan": {"_count": 1}, "difference": {"_count": 1}, "shouting": {"_count": 1}, "angry": {"_count": 1}, "emphasis": {"_count": 1}, "nerve": {"_count": 1}, "store": {"_count": 1}, "skilled": {"_count": 1}, "acrid": {"_count": 1}, "thumping": {"_count": 1}, "clattering": {"_count": 1}, "puffing": {"_count": 1}, "whispering": {"_count": 1}}, "signed": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 2}, "Professor": {"_count": 1}}, "to": {"_count": 5, "do": {"_count": 2}, "be": {"_count": 2}, "chance": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 6}, "!": {"_count": 3}, "?": {"_count": 2}}, "about": {"_count": 1, "medieval": {"_count": 1}}, "less": {"_count": 1, "misty": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "before": {"_count": 1, "now": {"_count": 1}}, "from": {"_count": 2, "Harry": {"_count": 1}, "my": {"_count": 1}}, "calmer": {"_count": 1, "than": {"_count": 1}}, "happier": {"_count": 1, "than": {"_count": 1}}, "more": {"_count": 1, "effort": {"_count": 1}}, "yet": {"_count": 1, "Miss": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "Bellatrix": {"_count": 1, "from": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "granted": {"_count": 1}}}, "Bills": {"_count": 34, "old": {"_count": 1, "robes": {"_count": 1}}, "in": {"_count": 1, "Africa": {"_count": 1}}, "taken": {"_count": 1, "us": {"_count": 1}}, "clothes": {"_count": 1, "would": {"_count": 1}}, "table": {"_count": 1, "caught": {"_count": 1}}, "but": {"_count": 1, "found": {"_count": 1}}, "been": {"_count": 1, "giving": {"_count": 1}}, "heavily": {"_count": 1, "laden": {"_count": 1}}, "words": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "sitting": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "spreadeagled": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 1, "glasses": {"_count": 1}}, "sitting": {"_count": 1, "with": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "pillow": {"_count": 1, "so": {"_count": 1}}, "bed": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "mangled": {"_count": 1, "face": {"_count": 1}}, "wounds": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "mutilated": {"_count": 1, "face": {"_count": 1}}, "pillows": {"_count": 1, "because": {"_count": 1}}, "voice": {"_count": 1, "broke": {"_count": 1}}, "escorting": {"_count": 1, "them": {"_count": 1}}, "younger": {"_count": 1, "sister": {"_count": 1}}, "already": {"_count": 1, "scarred": {"_count": 1}}, "always": {"_count": 1, "been": {"_count": 1}}, "eyes": {"_count": 2, "on": {"_count": 1}, "following": {"_count": 1}}, "arm": {"_count": 1, "as": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "warning": {"_count": 1, "in": {"_count": 1}}}, "Charlies": {"_count": 18, "old": {"_count": 3, "wand": {"_count": 1}, "broom": {"_count": 1}, "ones": {"_count": 1}}, "in": {"_count": 2, "Romania": {"_count": 1}, "the": {"_count": 1}}, "work": {"_count": 1, "with": {"_count": 1}}, "got": {"_count": 1, "off": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "letter": {"_count": 2, "was": {"_count": 1}, "his": {"_count": 1}}, "friends": {"_count": 1, "were": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "head": {"_count": 1, "was": {"_count": 1}}, "snores": {"_count": 1, "filled": {"_count": 1}}, "fellow": {"_count": 1, "keepers": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "bigger": {"_count": 1, "than": {"_count": 1}}, "arrival": {"_count": 1, "came": {"_count": 1}}}, "Scabbers": {"_count": 124, "and": {"_count": 4, "hes": {"_count": 1}, "Hermione": {"_count": 1}, "when": {"_count": 1}, "Lupin": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "stayed": {"_count": 1, "gray": {"_count": 1}}, "whiskers": {"_count": 1, "are": {"_count": 1}}, "the": {"_count": 4, "rat": {"_count": 4}}, "round": {"_count": 1, "and": {"_count": 1}}, "finally": {"_count": 1, "flew": {"_count": 1}}, "by": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 13}, "!": {"_count": 6}, "?": {"_count": 3}}, "has": {"_count": 2, "been": {"_count": 1}, "gone": {"_count": 1}}, "had": {"_count": 5, "ruined": {"_count": 1}, "never": {"_count": 1}, "powers": {"_count": 1}, "been": {"_count": 2}}, "off": {"_count": 1, "his": {"_count": 1}}, "who": {"_count": 4, "was": {"_count": 3}, "had": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 13, "looking": {"_count": 1}, "out": {"_count": 1}, "curled": {"_count": 1}, "in": {"_count": 1}, "here": {"_count": 2}, "huddled": {"_count": 1}, "both": {"_count": 1}, "said": {"_count": 1}, "plainly": {"_count": 1}, "back": {"_count": 1}, "fighting": {"_count": 1}, "frozen": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "by": {"_count": 1}}, "closely": {"_count": 1, "": {"_count": 1}}, "s": {"_count": 2, "tattered": {"_count": 1}, "fur": {"_count": 1}}, "shot": {"_count": 1, "from": {"_count": 1}}, "in": {"_count": 4, "yours": {"_count": 1}, "front": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "asleep": {"_count": 1, "in": {"_count": 1}}, "came": {"_count": 1, "flying": {"_count": 1}}, "streaked": {"_count": 1, "through": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "poked": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "attempted": {"_count": 1, "a": {"_count": 1}}, "once": {"_count": 1, "so": {"_count": 1}}, "died": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "rat": {"_count": 1}}, "seriously": {"_count": 1, "hadnt": {"_count": 1}}, "under": {"_count": 1, "all": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "everythings": {"_count": 1, "my": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "hadnt": {"_count": 1, "just": {"_count": 1}}, "what": {"_count": 1, "are": {"_count": 1}}, "looked": {"_count": 1, "dreadful": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "wont": {"_count": 1}}, "its": {"_count": 1, "me": {"_count": 1}}, "stay": {"_count": 1, "put": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "keep": {"_count": 1, "still": {"_count": 1}}, "deeper": {"_count": 1, "into": {"_count": 1}}, "NO": {"_count": 1, "": {"_count": 1}}, "come": {"_count": 2, "here": {"_count": 2}}, "got": {"_count": 1, "to": {"_count": 1}}, "emerged": {"_count": 1, "thrashing": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "Ron": {"_count": 1, "yelled": {"_count": 1}}, "struggling": {"_count": 1, "in": {"_count": 1}}, "be": {"_count": 1, "Peter": {"_count": 1}}, "cant": {"_count": 1, "be": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "probably": {"_count": 1, "had": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "tightly": {"_count": 1, "in": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "but": {"_count": 1, "had": {"_count": 1}}, "Mum": {"_count": 1, "said": {"_count": 1}}}, "useless": {"_count": 29, "he": {"_count": 3, "hardly": {"_count": 1}, "added": {"_count": 1}, "was": {"_count": 1}}, "thing": {"_count": 1, "Write": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "without": {"_count": 1, "Crabbes": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "if": {"_count": 2, "you": {"_count": 2}}, "pretty": {"_count": 1, "boy": {"_count": 1}}, "to": {"_count": 1, "speculate": {"_count": 1}}, "lump": {"_count": 1, "get": {"_count": 1}}, "skiving": {"_count": 1, "sneak": {"_count": 1}}, "parents": {"_count": 1, "Ive": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "teacher": {"_count": 1, "upon": {"_count": 1}}, "loser": {"_count": 1, "either": {"_count": 1}}, "potions": {"_count": 1, "": {"_count": 1}}, "sack": {"_count": 1, "of": {"_count": 1}}, "boring": {"_count": 1, "work": {"_count": 1}}, "items": {"_count": 1, "and": {"_count": 1}}, "objects": {"_count": 1, "to": {"_count": 1}}, "like": {"_count": 1, "everything": {"_count": 1}}, "owner": {"_count": 1, "Pettigrew": {"_count": 1}}, "hand": {"_count": 1, "and": {"_count": 1}}}, "wakes": {"_count": 3, "up": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}}, "aff": {"_count": 1, "I": {"_count": 1, "mean": {"_count": 1}}}, "ears": {"_count": 201, "went": {"_count": 6, "pink": {"_count": 3}, "red": {"_count": 2}, "flying": {"_count": 1}}, "": {"_count": 63, ".": {"_count": 60}, "?": {"_count": 2}, "!": {"_count": 1}}, "mingled": {"_count": 1, "with": {"_count": 1}}, "against": {"_count": 1, "it": {"_count": 1}}, "making": {"_count": 1, "up": {"_count": 1}}, "to": {"_count": 10, "the": {"_count": 2}, "hear": {"_count": 2}, "his": {"_count": 1}, "quieten": {"_count": 1}, "catch": {"_count": 2}, "droop": {"_count": 1}, "distinguish": {"_count": 1}}, "straining": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "seemed": {"_count": 1, "sharper": {"_count": 1}}, "and": {"_count": 17, "bulging": {"_count": 1}, "moaned": {"_count": 1}, "lifted": {"_count": 1}, "he": {"_count": 1}, "quite": {"_count": 1}, "kicked": {"_count": 1}, "hummed": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 1}, "hold": {"_count": 1}, "enormous": {"_count": 1}, "neck": {"_count": 1}, "make": {"_count": 1}, "fed": {"_count": 1}, "then": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "punishment": {"_count": 1}}, "flapped": {"_count": 2, "": {"_count": 2}}, "were": {"_count": 12, "deceiving": {"_count": 1}, "now": {"_count": 2}, "pounding": {"_count": 1}, "oddly": {"_count": 1}, "ringing": {"_count": 1}, "not": {"_count": 1}, "starting": {"_count": 1}, "still": {"_count": 2}, "scarlet": {"_count": 1}, "assaulted": {"_count": 1}}, "was": {"_count": 2, "deafening": {"_count": 1}, "missing": {"_count": 1}}, "are": {"_count": 2, "completely": {"_count": 1}, "lopsided": {"_count": 1}}, "rolled": {"_count": 1, "up": {"_count": 1}}, "for": {"_count": 3, "several": {"_count": 1}, "further": {"_count": 1}, "you": {"_count": 1}}, "flapping": {"_count": 4, "": {"_count": 2}, "as": {"_count": 1}, "in": {"_count": 1}}, "quivering": {"_count": 1, "": {"_count": 1}}, "poking": {"_count": 1, "through": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "had": {"_count": 3, "gone": {"_count": 1}, "turned": {"_count": 2}}, "as": {"_count": 9, "though": {"_count": 2}, "he": {"_count": 2}, "the": {"_count": 1}, "they": {"_count": 1}, "well": {"_count": 1}, "she": {"_count": 1}, "his": {"_count": 1}}, "he": {"_count": 1, "stretched": {"_count": 1}}, "that": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "pricked": {"_count": 1, "for": {"_count": 1}}, "pressed": {"_count": 1, "against": {"_count": 1}}, "shrivel": {"_count": 1, "up": {"_count": 1}}, "busied": {"_count": 1, "himself": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "Ive": {"_count": 1, "never": {"_count": 1}}, "punctuated": {"_count": 1, "by": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "onto": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "long": {"_count": 1}}, "so": {"_count": 4, "that": {"_count": 4}}, "with": {"_count": 3, "every": {"_count": 2}, "his": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "again": {"_count": 1, "then": {"_count": 1}}, "going": {"_count": 1, "red": {"_count": 1}}, "drooping": {"_count": 2, "slightly": {"_count": 1}, "Dobby": {"_count": 1}}, "then": {"_count": 1, "his": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "ache": {"_count": 1, "": {"_count": 1}}, "turn": {"_count": 2, "into": {"_count": 1}, "red": {"_count": 1}}, "deceive": {"_count": 1, "me": {"_count": 1}}, "reddening": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "resembling": {"_count": 1}}, "drooped": {"_count": 1, "slightly": {"_count": 1}}, "waggling": {"_count": 1, "happily": {"_count": 1}}, "until": {"_count": 1, "she": {"_count": 1}}, "glowed": {"_count": 1, "red": {"_count": 1}}, "turned": {"_count": 2, "scarlet": {"_count": 1}, "bright": {"_count": 1}}, "looking": {"_count": 1, "suddenly": {"_count": 1}}, "turning": {"_count": 1, "red": {"_count": 1}}, "scratched": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "lips": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "which": {"_count": 1, "felt": {"_count": 1}}, "fall": {"_count": 1, "off": {"_count": 1}}, "of": {"_count": 2, "water": {"_count": 1}, "anyone": {"_count": 1}}, "bright": {"_count": 1, "red": {"_count": 1}}, "Dumbledore": {"_count": 1, "muttering": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "Luna": {"_count": 1, "was": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}}, "afford": {"_count": 20, "an": {"_count": 1, "owl": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 9, "lose": {"_count": 3}, "waste": {"_count": 1}, "let": {"_count": 1}, "go": {"_count": 1}, "fall": {"_count": 1}, "get": {"_count": 1}, "wait": {"_count": 1}}, "all": {"_count": 1, "our": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "houseelf": {"_count": 1}, "Nimbus": {"_count": 1}}, "some": {"_count": 1, "decent": {"_count": 1}}, "the": {"_count": 1, "rent": {"_count": 1}}, "mistakes": {"_count": 1, "Draco": {"_count": 1}}}, "YouKnowWhos": {"_count": 17, "name": {"_count": 1, "said": {"_count": 1}}, "behind": {"_count": 1, "it": {"_count": 1}}, "sign": {"_count": 1, "": {"_count": 1}}, "symbol": {"_count": 1, "Ron": {"_count": 1}}, "back": {"_count": 2, "": {"_count": 2}}, "mind": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "attack": {"_count": 1, "Harry": {"_count": 1}}, "after": {"_count": 3, "": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "made": {"_count": 1}}, "chasing": {"_count": 1, "the": {"_count": 1}}, "strategy": {"_count": 1, "of": {"_count": 1}}, "running": {"_count": 1, "around": {"_count": 1}}, "won": {"_count": 1, "its": {"_count": 1}}}, "impressed": {"_count": 53, "": {"_count": 22, ".": {"_count": 22}}, "and": {"_count": 3, "couldnt": {"_count": 1}, "moved": {"_count": 1}, "said": {"_count": 1}}, "he": {"_count": 1, "just": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "how": {"_count": 1}}, "youve": {"_count": 1, "learned": {"_count": 1}}, "by": {"_count": 8, "that": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 2}, "Ginnys": {"_count": 1}, "him": {"_count": 1}, "Dumbledores": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "Fred": {"_count": 1}, "you": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "against": {"_count": 1, "her": {"_count": 1}}, "agreement": {"_count": 1, "around": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "learn": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "his": {"_count": 2, "neighbor": {"_count": 1}, "uncle": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}}, "brave": {"_count": 57, "or": {"_count": 2, "anything": {"_count": 1}, "quickwitted": {"_count": 1}}, "enough": {"_count": 5, "to": {"_count": 5}}, "at": {"_count": 3, "heart": {"_count": 2}, "night": {"_count": 1}}, "and": {"_count": 5, "very": {"_count": 1}, "noble": {"_count": 2}, "all": {"_count": 1}, "quickthinking": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "?": {"_count": 1}, "!": {"_count": 1}}, "chap": {"_count": 1, "": {"_count": 1}}, "school": {"_count": 1, "prefect": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "like": {"_count": 2, "you": {"_count": 1}, "my": {"_count": 1}}, "stab": {"_count": 1, "at": {"_count": 1}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "face": {"_count": 1, "to": {"_count": 1}}, "pawns": {"_count": 1, "and": {"_count": 1}}, "Azkaban": {"_count": 1, "for": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "bed": {"_count": 1}}, "deeds": {"_count": 1, "to": {"_count": 1}}, "standing": {"_count": 2, "up": {"_count": 2}}, "attempt": {"_count": 3, "at": {"_count": 3}}, "of": {"_count": 3, "yeh": {"_count": 1}, "you": {"_count": 1}, "them": {"_count": 1}}, "then": {"_count": 1, "either": {"_count": 1}}, "yes": {"_count": 1, "but": {"_count": 1}}, "clever": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "consummate": {"_count": 1}}, "little": {"_count": 1, "first": {"_count": 1}}, "brave": {"_count": 1, "man": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "Regulus": {"_count": 1, "": {"_count": 1}}}, "voicing": {"_count": 4, "for": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "opinion": {"_count": 1}}, "it": {"_count": 1, "this": {"_count": 1}}, "whenever": {"_count": 1, "they": {"_count": 1}}}, "quick": {"_count": 95, "enough": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "as": {"_count": 4, "I": {"_count": 2}, "there": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 3, "notice": {"_count": 1}, "comment": {"_count": 1}, "lower": {"_count": 1}}, "footsteps": {"_count": 2, "behind": {"_count": 1}, "approaching": {"_count": 1}}, "Calm": {"_count": 1, "yourself": {"_count": 1}}, "look": {"_count": 8, "at": {"_count": 3}, "around": {"_count": 3}, "over": {"_count": 1}, "": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "wash": {"_count": 1, "and": {"_count": 1}}, "talk": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 2, "clean": {"_count": 1}, "shallow": {"_count": 1}}, "glance": {"_count": 2, "at": {"_count": 1}, "across": {"_count": 1}}, "prod": {"_count": 1, "with": {"_count": 1}}, "for": {"_count": 5, "her": {"_count": 1}, "him": {"_count": 3}, "Neville": {"_count": 1}}, "Professor": {"_count": 1, "weve": {"_count": 1}}, "word": {"_count": 9, "with": {"_count": 5}, "": {"_count": 4}}, "": {"_count": 11, "!": {"_count": 4}, ".": {"_count": 7}}, "step": {"_count": 1, "behind": {"_count": 1}}, "See": {"_count": 1, "you": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "clean": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "told": {"_count": 1}}, "Remus": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 5, "panted": {"_count": 2}, "looked": {"_count": 1}, "Lupin": {"_count": 1}, "": {"_count": 1}}, "tour": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "we": {"_count": 1}}, "at": {"_count": 1, "whatever": {"_count": 1}}, "few": {"_count": 1, "words": {"_count": 1}}, "private": {"_count": 1, "word": {"_count": 1}}, "squeeze": {"_count": 1, "and": {"_count": 1}}, "succession": {"_count": 2, "": {"_count": 2}}, "before": {"_count": 2, "they": {"_count": 1}, "were": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Harry": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "march": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "grateful": {"_count": 1, "pat": {"_count": 1}}, "strides": {"_count": 1, "its": {"_count": 1}}, "scared": {"_count": 1, "looks": {"_count": 1}}, "escape": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "hes": {"_count": 1, "here": {"_count": 1}}, "drink": {"_count": 1, "in": {"_count": 1}}, "hide": {"_count": 1, "me": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "headcount": {"_count": 1, "fourteen": {"_count": 1}}, "getaway": {"_count": 1, "": {"_count": 1}}, "painless": {"_count": 1, "exit": {"_count": 1}}}, "fields": {"_count": 7, "full": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 3, "lanes": {"_count": 1}, "clumps": {"_count": 1}, "hills": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "that": {"_count": 1, "gave": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cows": {"_count": 2, "and": {"_count": 1, "sheep": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sheep": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "lanes": {"_count": 1, "flick": {"_count": 1, "past": {"_count": 1}}}, "flick": {"_count": 26, "past": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "remember": {"_count": 1, "swish": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "through": {"_count": 3, "the": {"_count": 2}, "each": {"_count": 1}}, "of": {"_count": 10, "his": {"_count": 8}, "the": {"_count": 1}, "her": {"_count": 1}}, "upward": {"_count": 1, "to": {"_count": 1}}, "She": {"_count": 1, "flicked": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "said": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "sofa": {"_count": 1}}, "off": {"_count": 1, "an": {"_count": 1}}}, "Around": {"_count": 8, "half": {"_count": 1, "past": {"_count": 1}}, "the": {"_count": 2, "front": {"_count": 1}, "sting": {"_count": 1}}, "three": {"_count": 1, "in": {"_count": 1}}, "fifty": {"_count": 1, "centaurs": {"_count": 1}}, "that": {"_count": 1, "time": {"_count": 1}}, "him": {"_count": 1, "brooms": {"_count": 1}}, "them": {"_count": 1, "stood": {"_count": 1}}}, "clattering": {"_count": 18, "outside": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 2, "cooking": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 1, "and": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "past": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 2, "whirring": {"_count": 1}, "lift": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "knives": {"_count": 1}}, "and": {"_count": 4, "banging": {"_count": 2}, "pounding": {"_count": 1}, "tinkling": {"_count": 1}}, "loudly": {"_count": 1, "on": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "spoon": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}}, "corridor": {"_count": 307, "and": {"_count": 30, "a": {"_count": 3}, "hurried": {"_count": 1}, "disappeared": {"_count": 1}, "if": {"_count": 1}, "the": {"_count": 1}, "back": {"_count": 1}, "saw": {"_count": 1}, "people": {"_count": 1}, "they": {"_count": 1}, "it": {"_count": 2}, "out": {"_count": 2}, "around": {"_count": 2}, "stopped": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "down": {"_count": 1}, "skidding": {"_count": 1}, "finally": {"_count": 1}, "Cornelius": {"_count": 1}, "slipped": {"_count": 1}, "into": {"_count": 1}, "heard": {"_count": 1}, "within": {"_count": 1}, "flew": {"_count": 1}, "raised": {"_count": 1}}, "": {"_count": 62, ".": {"_count": 61}, "?": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 5}}, "hung": {"_count": 1, "a": {"_count": 1}}, "Wood": {"_count": 1, "looking": {"_count": 1}}, "when": {"_count": 5, "Hermione": {"_count": 1}, "a": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}}, "then": {"_count": 5, "another": {"_count": 1}, "tucked": {"_count": 1}, "they": {"_count": 1}, "came": {"_count": 1}, "when": {"_count": 1}}, "where": {"_count": 13, "they": {"_count": 2}, "the": {"_count": 5}, "Umbridges": {"_count": 1}, "he": {"_count": 2}, "nothing": {"_count": 1}, "a": {"_count": 2}}, "shes": {"_count": 1, "a": {"_count": 1}}, "after": {"_count": 1, "Snape": {"_count": 1}}, "ahead": {"_count": 3, "": {"_count": 2}, "his": {"_count": 1}}, "to": {"_count": 14, "see": {"_count": 2}, "Lockharts": {"_count": 1}, "go": {"_count": 1}, "Gryffindor": {"_count": 1}, "the": {"_count": 6}, "escape": {"_count": 1}, "Malfoy": {"_count": 1}, "find": {"_count": 1}}, "outside": {"_count": 9, "stuffing": {"_count": 1}, "": {"_count": 2}, "next": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 1}, "Umb": {"_count": 1}, "seemed": {"_count": 1}, "grunted": {"_count": 1}}, "the": {"_count": 6, "books": {"_count": 1}, "note": {"_count": 1}, "noise": {"_count": 1}, "statues": {"_count": 1}, "whole": {"_count": 1}, "little": {"_count": 1}}, "put": {"_count": 1, "an": {"_count": 1}}, "Harry": {"_count": 4, "Ron": {"_count": 1}, "told": {"_count": 1}, "examined": {"_count": 1}, "pulled": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "Filchs": {"_count": 1, "face": {"_count": 1}}, "lined": {"_count": 2, "with": {"_count": 2}}, "he": {"_count": 6, "came": {"_count": 1}, "broke": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "emerged": {"_count": 1}, "dashed": {"_count": 1}}, "together": {"_count": 2, "": {"_count": 2}}, "as": {"_count": 2, "silence": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 2}, "the": {"_count": 1}}, "was": {"_count": 7, "deserted": {"_count": 1}, "almost": {"_count": 1}, "empty": {"_count": 1}, "quite": {"_count": 1}, "Gregory": {"_count": 1}, "full": {"_count": 1}, "flung": {"_count": 1}}, "barely": {"_count": 1, "noticing": {"_count": 1}}, "in": {"_count": 6, "his": {"_count": 1}, "a": {"_count": 1}, "boisterous": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 1}, "stout": {"_count": 1}}, "which": {"_count": 4, "was": {"_count": 3}, "bore": {"_count": 1}}, "with": {"_count": 9, "a": {"_count": 1}, "Madam": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "various": {"_count": 1}, "very": {"_count": 1}, "himself": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "they": {"_count": 2, "went": {"_count": 1}, "saw": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "again": {"_count": 3, "and": {"_count": 2}, "passing": {"_count": 1}}, "following": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 8, "ended": {"_count": 1}, "was": {"_count": 3}, "led": {"_count": 1}, "also": {"_count": 1}, "day": {"_count": 1}, "had": {"_count": 1}}, "Diggory": {"_count": 1, "was": {"_count": 1}}, "heading": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "Frank": {"_count": 1, "suddenly": {"_count": 1}}, "floor": {"_count": 2, "and": {"_count": 1}, "neither": {"_count": 1}}, "finally": {"_count": 1, "arriving": {"_count": 1}}, "for": {"_count": 1, "in": {"_count": 1}}, "having": {"_count": 1, "had": {"_count": 1}}, "without": {"_count": 1, "being": {"_count": 1}}, "brightly": {"_count": 1, "lit": {"_count": 1}}, "below": {"_count": 4, "pushed": {"_count": 1}, "": {"_count": 3}}, "some": {"_count": 1, "time": {"_count": 1}}, "Filch": {"_count": 1, "handed": {"_count": 1}}, "behind": {"_count": 4, "Harry": {"_count": 1}, "them": {"_count": 2}, "it": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "turned": {"_count": 1, "right": {"_count": 1}}, "ending": {"_count": 3, "in": {"_count": 3}}, "peering": {"_count": 3, "through": {"_count": 2}, "out": {"_count": 1}}, "leering": {"_count": 1, "as": {"_count": 1}}, "pausing": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "his": {"_count": 2, "footsteps": {"_count": 1}, "sallow": {"_count": 1}}, "beyond": {"_count": 5, "which": {"_count": 1}, "were": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 2}}, "wall": {"_count": 1, "his": {"_count": 1}}, "toward": {"_count": 6, "a": {"_count": 1}, "the": {"_count": 3}, "their": {"_count": 1}, "them": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "signposted": {"_count": 1, "SPELL": {"_count": 1}}, "smiling": {"_count": 1, "warmly": {"_count": 1}}, "down": {"_count": 1, "which": {"_count": 1}}, "leading": {"_count": 4, "to": {"_count": 2}, "off": {"_count": 1}, "back": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "every": {"_count": 1, "night": {"_count": 1}}, "really": {"_count": 1, "had": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "stopping": {"_count": 1, "only": {"_count": 1}}, "round": {"_count": 1, "about": {"_count": 1}}, "until": {"_count": 2, "he": {"_count": 1}, "with": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 1}, "which": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 1, "right": {"_count": 1}}, "ignoring": {"_count": 2, "the": {"_count": 2}}, "chatting": {"_count": 1, "to": {"_count": 1}}, "Zabini": {"_count": 1, "shot": {"_count": 1}}, "till": {"_count": 1, "you": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "windows": {"_count": 1, "as": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "wont": {"_count": 1, "you": {"_count": 1}}, "checking": {"_count": 1, "the": {"_count": 1}}, "nearby": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 2, "then": {"_count": 1}, "to": {"_count": 1}}, "trailing": {"_count": 1, "the": {"_count": 1}}, "Fang": {"_count": 1, "lolloping": {"_count": 1}}, "upstairs": {"_count": 1, "that": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "dissolved": {"_count": 1, "and": {"_count": 1}}}, "dimpled": {"_count": 1, "woman": {"_count": 1, "slid": {"_count": 1}}}, "Anything": {"_count": 25, "off": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "do": {"_count": 1}}, "I": {"_count": 3, "can": {"_count": 3}}, "at": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "else": {"_count": 3, "": {"_count": 2}, "broken": {"_count": 1}}, "worrying": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "threatened": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}, "good": {"_count": 1, "in": {"_count": 1}}, "interesting": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "wrong": {"_count": 1, "Professor": {"_count": 1}}, "new": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}}, "dears": {"_count": 8, "": {"_count": 3, "?": {"_count": 1}, "!": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 1, "allow": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Professor": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "but": {"_count": 1, "Remus": {"_count": 1}}}, "sandwiches": {"_count": 15, "": {"_count": 5, ".": {"_count": 5}}, "inside": {"_count": 1, "": {"_count": 1}}, "lay": {"_count": 1, "forgotten": {"_count": 1}}, "crumpets": {"_count": 1, "trifle": {"_count": 1}}, "which": {"_count": 1, "they": {"_count": 1}}, "each": {"_count": 1, "they": {"_count": 1}}, "were": {"_count": 1, "churning": {"_count": 1}}, "two": {"_count": 1, "silver": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 2, "cake": {"_count": 1}, "thought": {"_count": 1}}}, "candy": {"_count": 5, "with": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "shop": {"_count": 1, "": {"_count": 1}}, "boxes": {"_count": 1, "": {"_count": 1}}, "wrappers": {"_count": 1, "that": {"_count": 1}}}, "Mars": {"_count": 12, "Bars": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "is": {"_count": 3, "bright": {"_count": 3}}, "and": {"_count": 1, "Jupiter": {"_count": 1}}, "with": {"_count": 1, "relation": {"_count": 1}}, "for": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "making": {"_count": 1}}, "causes": {"_count": 1, "accidents": {"_count": 1}}, "bringer": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Bars": {"_count": 2, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Bertie": {"_count": 9, "Botts": {"_count": 7, "Every": {"_count": 7}}, "Higgs": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "Rufus": {"_count": 1}}}, "Botts": {"_count": 7, "Every": {"_count": 7, "Flavor": {"_count": 7}}}, "Flavor": {"_count": 11, "Beans": {"_count": 11, "Droobles": {"_count": 1}, "": {"_count": 5}, "hed": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "A": {"_count": 1}, "Chocolate": {"_count": 1}}}, "Beans": {"_count": 12, "Droobles": {"_count": 1, "Best": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "hed": {"_count": 1, "gotten": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 1, "another": {"_count": 1}}, "A": {"_count": 1, "Risk": {"_count": 1}}, "Chocolate": {"_count": 1, "Frogs": {"_count": 1}}, "Mr": {"_count": 1, "and": {"_count": 1}}}, "Droobles": {"_count": 5, "Best": {"_count": 4, "Blowing": {"_count": 4}}, "Blowing": {"_count": 1, "Gum": {"_count": 1}}}, "Blowing": {"_count": 5, "Gum": {"_count": 5, "Chocolate": {"_count": 1}, "which": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "wrapper": {"_count": 1}}}, "Gum": {"_count": 5, "Chocolate": {"_count": 1, "Frogs": {"_count": 1}}, "which": {"_count": 1, "filled": {"_count": 1}}, "and": {"_count": 1, "Fizzing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wrapper": {"_count": 1, "": {"_count": 1}}}, "Chocolate": {"_count": 34, "Frogs": {"_count": 8, "Pumpkin": {"_count": 1}, "": {"_count": 1}, "have": {"_count": 1}, "waiting": {"_count": 1}, "next": {"_count": 1}, "from": {"_count": 2}, "Droobles": {"_count": 1}}, "Frog": {"_count": 18, "and": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}, "Ive": {"_count": 1}, "": {"_count": 3}, "into": {"_count": 1}, "cards": {"_count": 6}, "from": {"_count": 1}, "card": {"_count": 2}, "wrapper": {"_count": 1}}, "gateau": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Cauldrons": {"_count": 6, "theyve": {"_count": 1}, "": {"_count": 2}, "then": {"_count": 1}, "havent": {"_count": 1}, "Romilda": {"_count": 1}}}, "Frogs": {"_count": 11, "Pumpkin": {"_count": 1, "Pasties": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "have": {"_count": 1, "cards": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "head": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Droobles": {"_count": 1, "Best": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}}, "Pumpkin": {"_count": 6, "Pasties": {"_count": 3, "Cauldron": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "juice": {"_count": 3, "spread": {"_count": 1}, "": {"_count": 2}}}, "Pasties": {"_count": 3, "Cauldron": {"_count": 1, "Cakes": {"_count": 1}}, "and": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Cakes": {"_count": 6, "Licorice": {"_count": 1, "Wands": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 2, "squashing": {"_count": 1}, "Pumpkin": {"_count": 1}}, "says": {"_count": 1, "Bathilda": {"_count": 1}}}, "Licorice": {"_count": 2, "Wands": {"_count": 1, "and": {"_count": 1}}, "Wand": {"_count": 1, "": {"_count": 1}}}, "miss": {"_count": 69, "anything": {"_count": 2, "he": {"_count": 1}, "else": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 3}, "for": {"_count": 1}, "dont": {"_count": 1}}, "a": {"_count": 5, "single": {"_count": 1}, "trick": {"_count": 1}, "word": {"_count": 1}, "chance": {"_count": 1}, "trip": {"_count": 1}}, "the": {"_count": 8, "train": {"_count": 3}, "World": {"_count": 1}, "fun": {"_count": 2}, "good": {"_count": 1}, "sound": {"_count": 1}}, "your": {"_count": 2, "first": {"_count": 1}, "er": {"_count": 1}}, "said": {"_count": 3, "Ernie": {"_count": 1}, "Dobby": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 2, "shiny": {"_count": 1}, "friendship": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 5}, "!": {"_count": 5}}, "things": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "BlastEnded": {"_count": 1}}, "such": {"_count": 1, "an": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "as": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "very": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 2, "likes": {"_count": 1}, "twinkled": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 1}, "Mr": {"_count": 1}}, "An": {"_count": 1, "hour": {"_count": 1}}, "most": {"_count": 1, "sir": {"_count": 1}}, "that": {"_count": 3, "she": {"_count": 1}, "fourth": {"_count": 1}, "he": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "more": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "Hogwarts": {"_count": 1, "in": {"_count": 1}}, "dealing": {"_count": 1, "with": {"_count": 1}}, "spark": {"_count": 1, "plugs": {"_count": 1}}, "what": {"_count": 1, "hes": {"_count": 1}}, "having": {"_count": 1, "you": {"_count": 1}}, "us": {"_count": 1, "They": {"_count": 1}}, "out": {"_count": 1, "on": {"_count": 1}}, "my": {"_count": 1, "wand": {"_count": 1}}, "Bill": {"_count": 1, "Fleur": {"_count": 1}}, "their": {"_count": 1, "chance": {"_count": 1}}}, "tipped": {"_count": 34, "it": {"_count": 3, "onto": {"_count": 1}, "into": {"_count": 1}, "so": {"_count": 1}}, "him": {"_count": 3, "off": {"_count": 3}}, "the": {"_count": 9, "soggy": {"_count": 1}, "powdered": {"_count": 1}, "silvery": {"_count": 1}, "contents": {"_count": 3}, "swirling": {"_count": 1}, "seventh": {"_count": 1}, "water": {"_count": 1}}, "his": {"_count": 2, "books": {"_count": 1}, "ginger": {"_count": 1}}, "a": {"_count": 2, "dozen": {"_count": 1}, "goblet": {"_count": 1}}, "off": {"_count": 3, "a": {"_count": 1}, "you": {"_count": 1}, "Umbridge": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "Krum": {"_count": 1, "onto": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "an": {"_count": 1}}, "me": {"_count": 2, "off": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "poured": {"_count": 1}}, "over": {"_count": 1, "Mrs": {"_count": 1}}, "something": {"_count": 1, "into": {"_count": 1}}, "you": {"_count": 1, "off": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}}, "Hungry": {"_count": 1, "are": {"_count": 1, "you": {"_count": 1}}}, "Starving": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "pumpkin": {"_count": 41, "pasty": {"_count": 1, "": {"_count": 1}}, "pasties": {"_count": 1, "seemed": {"_count": 1}}, "wafting": {"_count": 1, "through": {"_count": 1}}, "juice": {"_count": 21, "from": {"_count": 2}, "appeared": {"_count": 1}, "": {"_count": 8}, "they": {"_count": 1}, "perhaps": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 3}, "all": {"_count": 1}, "he": {"_count": 1}, "butterbeer": {"_count": 1}, "she": {"_count": 1}}, "patch": {"_count": 12, "": {"_count": 6}, "throw": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}, "next": {"_count": 1}, "now": {"_count": 1}, "I": {"_count": 1}}, "tart": {"_count": 1, "had": {"_count": 1}}, "fizz": {"_count": 1, "and": {"_count": 1}}, "plants": {"_count": 1, "nearby": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "pasty": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Worple": {"_count": 1}}, "face": {"_count": 2, "went": {"_count": 1}, "you": {"_count": 1}}, "while": {"_count": 1, "Mrs": {"_count": 1}}}, "unwrapped": {"_count": 13, "it": {"_count": 4, "": {"_count": 4}}, "his": {"_count": 2, "Chocolate": {"_count": 1}, "Easter": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 3, "frog": {"_count": 1}, "package": {"_count": 1}, "tiny": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "carelessly": {"_count": 1}}}, "forgets": {"_count": 3, "I": {"_count": 1, "dont": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "she": {"_count": 1, "is": {"_count": 1}}}, "corned": {"_count": 2, "beef": {"_count": 2, "": {"_count": 2}}}, "beef": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "roast": {"_count": 1, "chicken": {"_count": 1}}, "casserole": {"_count": 2, "onto": {"_count": 1}, "but": {"_count": 1}}, "and": {"_count": 1, "Yorkshire": {"_count": 1}}, "made": {"_count": 1, "Harrys": {"_count": 1}}}, "Swap": {"_count": 1, "you": {"_count": 1, "for": {"_count": 1}}}, "share": {"_count": 30, "before": {"_count": 1, "or": {"_count": 1}}, "it": {"_count": 3, "with": {"_count": 3}}, "without": {"_count": 1, "ending": {"_count": 1}}, "anothers": {"_count": 1, "body": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "his": {"_count": 3, "experience": {"_count": 1}, "dreams": {"_count": 1}, "book": {"_count": 1}}, "my": {"_count": 2, "toilet": {"_count": 1}, "knowledge": {"_count": 1}}, "of": {"_count": 1, "unpleasantness": {"_count": 1}}, "Harrys": {"_count": 1, "limelight": {"_count": 1}}, "their": {"_count": 1, "feelings": {"_count": 1}}, "cores": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "joke": {"_count": 1}, "connection": {"_count": 1}, "secrets": {"_count": 1}}, "a": {"_count": 5, "dormitory": {"_count": 1}, "table": {"_count": 1}, "desk": {"_count": 1}, "dislike": {"_count": 1}, "room": {"_count": 1}}, "someone": {"_count": 1, "elses": {"_count": 1}}, "classes": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "view": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}}, "eating": {"_count": 58, "their": {"_count": 1, "way": {"_count": 1}}, "the": {"_count": 5, "frogs": {"_count": 1}, "Every": {"_count": 1}, "food": {"_count": 1}, "wilting": {"_count": 1}, "stupid": {"_count": 1}}, "and": {"_count": 5, "then": {"_count": 1}, "drinking": {"_count": 1}, "the": {"_count": 1}, "took": {"_count": 1}, "Ill": {"_count": 1}}, "anything": {"_count": 5, "they": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "more": {"_count": 1}}, "dead": {"_count": 1, "rats": {"_count": 1}}, "Bertie": {"_count": 1, "Botts": {"_count": 1}}, "banquets": {"_count": 1, "in": {"_count": 1}}, "ice": {"_count": 1, "cream": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 2}}, "for": {"_count": 1, "breakfast": {"_count": 1}}, "you": {"_count": 1, "may": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "Ill": {"_count": 1, "take": {"_count": 1}}, "his": {"_count": 2, "fourth": {"_count": 1}, "chops": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "Peppermint": {"_count": 1}}, "it": {"_count": 2, "savoring": {"_count": 1}, "": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "again": {"_count": 1, "I": {"_count": 1}}, "toast": {"_count": 1, "all": {"_count": 1}}, "yet": {"_count": 1, "Harry": {"_count": 1}}, "large": {"_count": 1, "creamfilled": {"_count": 1}}, "breakfast": {"_count": 3, "with": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "roast": {"_count": 1, "potatoes": {"_count": 1}}, "between": {"_count": 1, "Ron": {"_count": 1}}, "porridge": {"_count": 1, "apparently": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "lunch": {"_count": 1, "so": {"_count": 1}}, "my": {"_count": 1, "OUCH": {"_count": 1}}, "him": {"_count": 1, "from": {"_count": 1}}, "some": {"_count": 1, "after": {"_count": 1}}, "sweets": {"_count": 1, "looked": {"_count": 1}}, "triple": {"_count": 1, "helpings": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "your": {"_count": 1, "words": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}}, "pasties": {"_count": 2, "cakes": {"_count": 1, "and": {"_count": 1}}, "seemed": {"_count": 1, "ages": {"_count": 1}}}, "cakes": {"_count": 25, "and": {"_count": 6, "candies": {"_count": 1}, "stuff": {"_count": 1}, "flagons": {"_count": 1}, "pies": {"_count": 1}, "some": {"_count": 1}, "giant": {"_count": 1}}, "onto": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "shapeless": {"_count": 1}}, "theyd": {"_count": 1, "been": {"_count": 1}}, "burned": {"_count": 1, "charcoalblack": {"_count": 1}}, "sweets": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "on": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Goyle": {"_count": 1}}, "whole": {"_count": 1, "into": {"_count": 1}}, "chocolate": {"_count": 1, "bars": {"_count": 1}}, "one": {"_count": 1, "each": {"_count": 1}}, "from": {"_count": 1, "home": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "she": {"_count": 1}}}, "candies": {"_count": 1, "the": {"_count": 1, "sandwiches": {"_count": 1}}}, "frogs": {"_count": 6, "are": {"_count": 1, "they": {"_count": 1}}, "than": {"_count": 1, "looking": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "to": {"_count": 1, "prove": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "card": {"_count": 39, "is": {"_count": 1, "": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 6}, "!": {"_count": 2}, "?": {"_count": 1}}, "and": {"_count": 5, "read": {"_count": 1}, "gave": {"_count": 1}, "youre": {"_count": 1}, "a": {"_count": 1}, "rope": {"_count": 1}}, "back": {"_count": 1, "over": {"_count": 1}}, "hed": {"_count": 1, "gotten": {"_count": 1}}, "you": {"_count": 1, "collect": {"_count": 1}}, "reading": {"_count": 1, "UNDERAGE": {"_count": 1}}, "propped": {"_count": 1, "on": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "up": {"_count": 1, "next": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "little": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "castle": {"_count": 2, "out": {"_count": 1}, "at": {"_count": 1}}, "from": {"_count": 2, "Sirius": {"_count": 1}, "one": {"_count": 1}}, "but": {"_count": 1, "how": {"_count": 1}}, "featuring": {"_count": 1, "Dumbledore": {"_count": 1}}, "tricks": {"_count": 1, "are": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "dramatically": {"_count": 1, "from": {"_count": 1}}, "that": {"_count": 1, "identified": {"_count": 1}}}, "Agrippa": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "Ptolemy": {"_count": 1}}, "thanks": {"_count": 1, "Harry": {"_count": 1}}}, "cards": {"_count": 31, "inside": {"_count": 1, "them": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "look": {"_count": 1}}, "fer": {"_count": 1, "it": {"_count": 1}}, "no": {"_count": 1, "presents": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 1}, "!": {"_count": 1}, ".": {"_count": 4}}, "on": {"_count": 2, "the": {"_count": 1}, "top": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "hid": {"_count": 1}}, "countless": {"_count": 1, "silvery": {"_count": 1}}, "his": {"_count": 1, "two": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Bill": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "others": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "look": {"_count": 1, "And": {"_count": 1}}, "from": {"_count": 1, "inside": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "reading": {"_count": 1, "them": {"_count": 1}}, "have": {"_count": 1, "suffered": {"_count": 1}}, "show": {"_count": 1, "Her": {"_count": 1}}}, "collect": {"_count": 23, "famous": {"_count": 1, "witches": {"_count": 1}}, "them": {"_count": 1, "dont": {"_count": 1}}, "his": {"_count": 1, "Quidditch": {"_count": 1}}, "bags": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "from": {"_count": 1}, "Harry": {"_count": 1}}, "plugs": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 3, "pus": {"_count": 2}, "golden": {"_count": 1}}, "information": {"_count": 1, "But": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "some": {"_count": 1, "robes": {"_count": 1}}, "one": {"_count": 1, "from": {"_count": 1}}, "your": {"_count": 2, "parchment": {"_count": 1}, "examination": {"_count": 1}}, "trophies": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "this": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "hair": {"_count": 1, "from": {"_count": 1}}, "possessions": {"_count": 1, "said": {"_count": 1}}}, "Ptolemy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Frog": {"_count": 23, "and": {"_count": 1, "picked": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "very": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 2}}, "Spawn": {"_count": 1, "Soap": {"_count": 1}}, "cards": {"_count": 6, "at": {"_count": 1}, "said": {"_count": 1}, "when": {"_count": 1}, "for": {"_count": 1}, "if": {"_count": 1}, "look": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "card": {"_count": 2, "featuring": {"_count": 1}, "": {"_count": 1}}, "wrapper": {"_count": 1, "and": {"_count": 1}}}, "flowing": {"_count": 3, "silver": {"_count": 1, "hair": {"_count": 1}}, "gown": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}}, "Underneath": {"_count": 5, "the": {"_count": 3, "picture": {"_count": 1}, "cloak": {"_count": 1}, "photograph": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}}, "picture": {"_count": 133, "was": {"_count": 8, "the": {"_count": 1}, "Ron": {"_count": 1}, "of": {"_count": 1}, "unmistakable": {"_count": 1}, "captioned": {"_count": 1}, "moving": {"_count": 1}, "": {"_count": 1}, "dusty": {"_count": 1}}, "on": {"_count": 8, "his": {"_count": 1}, "the": {"_count": 6}, "a": {"_count": 1}}, "": {"_count": 15, "?": {"_count": 4}, ".": {"_count": 9}, "!": {"_count": 2}}, "as": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 2, "picture": {"_count": 1}, "his": {"_count": 1}}, "the": {"_count": 1, "sound": {"_count": 1}}, "of": {"_count": 42, "his": {"_count": 2}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "Blacks": {"_count": 1}, "Sirius": {"_count": 2}, "a": {"_count": 10}, "that": {"_count": 1}, "him": {"_count": 1}, "your": {"_count": 1}, "himself": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 6}, "Hagrid": {"_count": 1}, "my": {"_count": 1}, "Sir": {"_count": 1}, "Cornelius": {"_count": 1}, "Harrys": {"_count": 1}, "what": {"_count": 2}, "Auntie": {"_count": 1}, "drunk": {"_count": 1}, "Dumbledore": {"_count": 1}, "Dumbledores": {"_count": 1}, "Gwenog": {"_count": 1}, "four": {"_count": 1}, "an": {"_count": 1}}, "hed": {"_count": 1, "seen": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "moving": {"_count": 1}, "the": {"_count": 1}}, "didnt": {"_count": 1, "show": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "hung": {"_count": 1, "on": {"_count": 1}}, "those": {"_count": 1, "clothes": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "us": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 4}, "his": {"_count": 1}}, "coming": {"_count": 1, "home": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 6, "into": {"_count": 1}, "the": {"_count": 1}, "marched": {"_count": 1}, "leave": {"_count": 1}, "saw": {"_count": 1}, "back": {"_count": 1}}, "lining": {"_count": 1, "seven": {"_count": 1}}, "swung": {"_count": 1, "forward": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "appears": {"_count": 1, "in": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "form": {"_count": 1, "in": {"_count": 1}}, "faded": {"_count": 1, "and": {"_count": 1}}, "frame": {"_count": 2, "was": {"_count": 1}, "came": {"_count": 1}}, "could": {"_count": 1, "never": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "Hagrid": {"_count": 1, "was": {"_count": 1}}, "too": {"_count": 1, "she": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "looking": {"_count": 1, "bored": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "frames": {"_count": 1, "flew": {"_count": 1}}, "showed": {"_count": 1, "a": {"_count": 1}}, "belonged": {"_count": 1, "it": {"_count": 1}}, "accompanying": {"_count": 1, "the": {"_count": 1}}, "formed": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "you": {"_count": 1}}, "more": {"_count": 1, "carefully": {"_count": 1}}, "which": {"_count": 1, "she": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "its": {"_count": 1}}, "than": {"_count": 1, "Harry": {"_count": 1}}, "emblazoned": {"_count": 1, "with": {"_count": 1}}, "looks": {"_count": 1, "a": {"_count": 1}}}, "CURRENTLY": {"_count": 1, "HEADMASTER": {"_count": 1, "OF": {"_count": 1}}}, "HEADMASTER": {"_count": 2, "OF": {"_count": 1, "HOGWARTS": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}}, "Considered": {"_count": 1, "by": {"_count": 1, "many": {"_count": 1}}}, "modern": {"_count": 2, "times": {"_count": 1, "Dumbledore": {"_count": 1}}, "magic": {"_count": 1, "": {"_count": 1}}}, "particularly": {"_count": 111, "famous": {"_count": 2, "for": {"_count": 2}}, "interested": {"_count": 1, "in": {"_count": 1}}, "hungry": {"_count": 1, "after": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "wet": {"_count": 1, "and": {"_count": 1}}, "dense": {"_count": 1, "patch": {"_count": 1}}, "unusual": {"_count": 1, "even": {"_count": 1}}, "loud": {"_count": 3, "screech": {"_count": 1}, "groan": {"_count": 1}, "grunting": {"_count": 1}}, "fat": {"_count": 1, "one": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "dark": {"_count": 1, "the": {"_count": 1}}, "difficult": {"_count": 3, "to": {"_count": 1}, "lesson": {"_count": 1}, "catch": {"_count": 1}}, "loudly": {"_count": 1, "as": {"_count": 1}}, "grim": {"_count": 1, "looking": {"_count": 1}}, "if": {"_count": 3, "theyre": {"_count": 1}, "one": {"_count": 1}, "that": {"_count": 1}}, "tense": {"_count": 1, "moment": {"_count": 1}}, "afraid": {"_count": 1, "of": {"_count": 1}}, "nasty": {"_count": 2, "one": {"_count": 1}, "throb": {"_count": 1}}, "keen": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "smug": {"_count": 1, "": {"_count": 1}}, "horrible": {"_count": 1, "pair": {"_count": 1}}, "large": {"_count": 4, "piece": {"_count": 1}, "ruff": {"_count": 1}, "BlastEnded": {"_count": 1}, "and": {"_count": 1}}, "shabby": {"_count": 1, "next": {"_count": 1}}, "wild": {"_count": 2, "swing": {"_count": 1}, "and": {"_count": 1}}, "vindictive": {"_count": 1, "mood": {"_count": 1}}, "complex": {"_count": 1, "": {"_count": 1}}, "sloppy": {"_count": 1, "puddle": {"_count": 1}}, "refined": {"_count": 1, "art": {"_count": 1}}, "bad": {"_count": 1, "time": {"_count": 1}}, "violent": {"_count": 1, "spirits": {"_count": 1}}, "clearly": {"_count": 1, "in": {"_count": 1}}, "Moodys": {"_count": 1, "Defense": {"_count": 1}}, "satisfying": {"_count": 1, "especially": {"_count": 1}}, "guests": {"_count": 1, "said": {"_count": 1}}, "enjoyed": {"_count": 2, "your": {"_count": 1}, "it": {"_count": 1}}, "fine": {"_count": 2, "male": {"_count": 1}, "spring": {"_count": 1}}, "obvious": {"_count": 1, "at": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "looking": {"_count": 1}}, "knobbly": {"_count": 1, "rolledup": {"_count": 1}}, "enjoying": {"_count": 1, "the": {"_count": 1}}, "jagged": {"_count": 1, "one": {"_count": 1}}, "hard": {"_count": 2, "looking": {"_count": 1}, "at": {"_count": 1}}, "efficient": {"_count": 1, "it": {"_count": 1}}, "strong": {"_count": 1, "surge": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "murderous": {"_count": 1, "": {"_count": 1}}, "painful": {"_count": 3, "way": {"_count": 1}, "poke": {"_count": 1}, "twinge": {"_count": 1}}, "juicy": {"_count": 2, "fly": {"_count": 2}}, "the": {"_count": 2, "bit": {"_count": 1}, "firecrackers": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "strongly": {"_count": 1, "in": {"_count": 1}}, "annoyed": {"_count": 1, "both": {"_count": 1}}, "well": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "and": {"_count": 1}}, "ugly": {"_count": 1, "female": {"_count": 1}}, "uneven": {"_count": 1, "motheaten": {"_count": 1}}, "carefully": {"_count": 1, "": {"_count": 1}}, "dismal": {"_count": 1, "funeral": {"_count": 1}}, "every": {"_count": 1, "night": {"_count": 1}}, "stubborn": {"_count": 1, "bit": {"_count": 1}}, "vicious": {"_count": 1, "mountain": {"_count": 1}}, "since": {"_count": 1, "your": {"_count": 1}}, "minuscule": {"_count": 1, "firstyear": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "good": {"_count": 3, "at": {"_count": 1}, "save": {"_count": 1}, "mood": {"_count": 1}}, "unpleasant": {"_count": 1, "bits": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "bothered": {"_count": 1, "but": {"_count": 1}}, "jazzy": {"_count": 1, "number": {"_count": 1}}, "long": {"_count": 1, "interrogation": {"_count": 1}}, "foulmouthed": {"_count": 1, "ghost": {"_count": 1}}, "fierce": {"_count": 1, "about": {"_count": 1}}, "wanted": {"_count": 1, "from": {"_count": 1}}, "significant": {"_count": 1, "deaths": {"_count": 1}}, "pleased": {"_count": 1, "to": {"_count": 1}}, "happy": {"_count": 1, "hour": {"_count": 1}}, "irksome": {"_count": 1, "because": {"_count": 1}}, "in": {"_count": 1, "light": {"_count": 1}}, "reassured": {"_count": 1, "but": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "infuriated": {"_count": 1, "Hermione": {"_count": 1}}, "confident": {"_count": 1, "himself": {"_count": 1}}, "deep": {"_count": 1, "gash": {"_count": 1}}, "powerful": {"_count": 1, "": {"_count": 1}}, "sumptuous": {"_count": 1, "tree": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}}, "defeat": {"_count": 14, "of": {"_count": 4, "the": {"_count": 3}, "Grindelwald": {"_count": 1}}, "in": {"_count": 2, "three": {"_count": 1}, "two": {"_count": 1}}, "was": {"_count": 1, "clearly": {"_count": 1}}, "the": {"_count": 2, "greatest": {"_count": 1}, "Heir": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "unhinged": {"_count": 1, "him": {"_count": 1}}, "followed": {"_count": 1, "suit": {"_count": 1}}, "Voldemort": {"_count": 1, "wont": {"_count": 1}}}, "Grindelwald": {"_count": 59, "in": {"_count": 4, "1945": {"_count": 2}, "1": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 6, "Harry": {"_count": 1}, "he": {"_count": 1}, "Godrics": {"_count": 1}, "beat": {"_count": 1}, "I": {"_count": 1}, "Dumbledore": {"_count": 1}}, "": {"_count": 12, "?": {"_count": 2}, ".": {"_count": 10}}, "says": {"_count": 1, "Skeeter": {"_count": 1}}, "simply": {"_count": 1, "conjured": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 1}, "built": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "is": {"_count": 1, "justly": {"_count": 1}}, "never": {"_count": 1, "extended": {"_count": 1}}, "showed": {"_count": 1, "himself": {"_count": 1}}, "devoted": {"_count": 1, "himself": {"_count": 1}}, "s": {"_count": 3, "next": {"_count": 1}, "slogan": {"_count": 1}, "mark": {"_count": 1}}, "chose": {"_count": 1, "to": {"_count": 1}}, "parted": {"_count": 1, "never": {"_count": 1}}, "he": {"_count": 1, "wanted": {"_count": 1}}, "expelled": {"_count": 1, "from": {"_count": 1}}, "ever": {"_count": 1, "seems": {"_count": 1}}, "didnt": {"_count": 2, "you": {"_count": 1}, "like": {"_count": 1}}, "rise": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "one": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "now": {"_count": 1}}, "with": {"_count": 1, "Dumbledore": {"_count": 1}}, "came": {"_count": 1, "along": {"_count": 1}}, "what": {"_count": 1, "it": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "used": {"_count": 1, "the": {"_count": 1}}, "scarpered": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "hurting": {"_count": 1, "you": {"_count": 1}}, "was": {"_count": 3, "looking": {"_count": 1}, "": {"_count": 1}, "raising": {"_count": 1}}, "lost": {"_count": 1, "control": {"_count": 1}}, "fled": {"_count": 1, "as": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}}, "1945": {"_count": 2, "for": {"_count": 2, "the": {"_count": 2}}}, "discovery": {"_count": 7, "of": {"_count": 6, "the": {"_count": 4}, "Hermiones": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "uses": {"_count": 21, "of": {"_count": 7, "dragons": {"_count": 5}, "moonstones": {"_count": 1}, "scurvygrass": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 1, "it": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 2, "potionmaking": {"_count": 2}}, "the": {"_count": 3, "Department": {"_count": 1}, "Floo": {"_count": 1}, "symbol": {"_count": 1}}, "to": {"_count": 1, "which": {"_count": 1}}, "that": {"_count": 1, "name": {"_count": 1}}, "people": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}}, "blood": {"_count": 204, "and": {"_count": 10, "his": {"_count": 3}, "slime": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}, "water": {"_count": 1}, "bodies": {"_count": 1}, "he": {"_count": 1}, "rebuilt": {"_count": 1}}, "": {"_count": 42, ".": {"_count": 36}, "?": {"_count": 4}, "!": {"_count": 2}}, "in": {"_count": 5, "him": {"_count": 1}, "it": {"_count": 1}, "their": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}}, "drain": {"_count": 1, "out": {"_count": 1}}, "or": {"_count": 1, "practicing": {"_count": 1}}, "every": {"_count": 1, "half": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 2}}, "on": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "seemed": {"_count": 3, "to": {"_count": 3}}, "was": {"_count": 6, "dribbling": {"_count": 1}, "streaming": {"_count": 1}, "sprayed": {"_count": 1}, "that": {"_count": 1}, "wettest": {"_count": 1}, "leaking": {"_count": 1}}, "is": {"_count": 5, "used": {"_count": 1}, "counting": {"_count": 1}, "worth": {"_count": 1}, "pure": {"_count": 1}, "": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 2}, "Salazar": {"_count": 1}, "the": {"_count": 1}}, "touches": {"_count": 1, "your": {"_count": 1}}, "red": {"_count": 1, "stone": {"_count": 1}}, "has": {"_count": 1, "strengthened": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "the": {"_count": 3, "serpent": {"_count": 1}, "strongest": {"_count": 1}, "archway": {"_count": 1}}, "spattered": {"_count": 1, "the": {"_count": 1}}, "poured": {"_count": 1, "from": {"_count": 1}}, "drenched": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "soaking": {"_count": 1, "his": {"_count": 1}}, "relative": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 2, "I": {"_count": 1}, "they": {"_count": 1}}, "will": {"_count": 3, "out": {"_count": 1}, "it": {"_count": 1}, "benefit": {"_count": 1}}, "blossoming": {"_count": 1, "over": {"_count": 1}}, "splattered": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "oozing": {"_count": 1, "from": {"_count": 1}}, "everywhere": {"_count": 3, "but": {"_count": 1}, "": {"_count": 2}}, "flying": {"_count": 1, "through": {"_count": 1}}, "from": {"_count": 7, "his": {"_count": 3}, "the": {"_count": 3}, "both": {"_count": 1}}, "rushed": {"_count": 2, "to": {"_count": 2}}, "pounding": {"_count": 1, "in": {"_count": 1}}, "seeping": {"_count": 1, "down": {"_count": 1}}, "fell": {"_count": 1, "into": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "would": {"_count": 1, "make": {"_count": 1}}, "family": {"_count": 1, "as": {"_count": 1}}, "traitors": {"_count": 7, "children": {"_count": 1}, "and": {"_count": 1}, "its": {"_count": 1}, "": {"_count": 1}, "are": {"_count": 1}, "theres": {"_count": 1}, "even": {"_count": 1}}, "traitor": {"_count": 4, "with": {"_count": 1}, "it": {"_count": 1}, "brats": {"_count": 1}, "like": {"_count": 1}}, "running": {"_count": 2, "down": {"_count": 2}}, "that": {"_count": 3, "runs": {"_count": 1}, "we": {"_count": 1}, "had": {"_count": 1}}, "surge": {"_count": 1, "to": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 2, "him": {"_count": 1}, "you": {"_count": 1}}, "trickled": {"_count": 1, "down": {"_count": 1}}, "dripped": {"_count": 1, "gently": {"_count": 1}}, "he": {"_count": 1, "collapsed": {"_count": 1}}, "I": {"_count": 1, "ran": {"_count": 1}}, "pressure": {"_count": 1, "rising": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "showered": {"_count": 1, "Harry": {"_count": 1}}, "ran": {"_count": 1, "all": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "pouring": {"_count": 3, "down": {"_count": 1}, "out": {"_count": 1}, "from": {"_count": 1}}, "streaming": {"_count": 1, "from": {"_count": 1}}, "spattering": {"_count": 1, "from": {"_count": 1}}, "grew": {"_count": 1, "at": {"_count": 1}}, "dwells": {"_count": 1, "there": {"_count": 1}}, "but": {"_count": 4, "it": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 1}}, "became": {"_count": 1, "your": {"_count": 1}}, "to": {"_count": 2, "regenerate": {"_count": 1}, "spill": {"_count": 1}}, "spurted": {"_count": 1, "everywhere": {"_count": 1}}, "dripping": {"_count": 1, "sickeningly": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "traitoA": {"_count": 1, "": {"_count": 1}}, "croaked": {"_count": 1, "Kreacher": {"_count": 1}}, "soaked": {"_count": 1, "chest": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "filling": {"_count": 1, "his": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "trickling": {"_count": 1, "down": {"_count": 1}}, "side": {"_count": 1, "so": {"_count": 1}}, "mother": {"_count": 1, "Muggle": {"_count": 1}}, "remain": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "Dumbledore": {"_count": 1}}, "limping": {"_count": 1, "a": {"_count": 1}}, "surging": {"_count": 1, "into": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "pulsing": {"_count": 1, "through": {"_count": 1}}, "more": {"_count": 1, "times": {"_count": 1}}, "status": {"_count": 1, "": {"_count": 1}}, "appear": {"_count": 1, "there": {"_count": 1}}, "so": {"_count": 1, "theyll": {"_count": 1}}, "thundering": {"_count": 1, "through": {"_count": 1}}, "gushing": {"_count": 1, "from": {"_count": 1}}, "biting": {"_count": 1, "down": {"_count": 1}}, "left": {"_count": 1, "in": {"_count": 1}}, "spilled": {"_count": 1, "is": {"_count": 1}}, "believing": {"_count": 1, "it": {"_count": 1}}, "worthier": {"_count": 1, "of": {"_count": 1}}}, "alchemy": {"_count": 3, "with": {"_count": 2, "his": {"_count": 2}}, "is": {"_count": 1, "concerned": {"_count": 1}}}, "partner": {"_count": 15, "Nicolas": {"_count": 2, "Flamel": {"_count": 1}, "FlamelV": {"_count": 1}}, "was": {"_count": 1, "Seamus": {"_count": 1}}, "Finnigan": {"_count": 1, "": {"_count": 1}}, "Miss": {"_count": 1, "Bulstrode": {"_count": 1}}, "to": {"_count": 1, "read": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "though": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "will": {"_count": 1, "attempt": {"_count": 1}}}, "Nicolas": {"_count": 17, "Flamel": {"_count": 13, "": {"_count": 3}, "\u25a0": {"_count": 1}, "involved": {"_count": 1}, "weve": {"_count": 1}, "is": {"_count": 1}, "was": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 2}, "are": {"_count": 1}, "Oh": {"_count": 1}}, "FlamelV": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "and": {"_count": 2, "I": {"_count": 1}, "Perenelle": {"_count": 1}}}, "Flamel": {"_count": 25, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 1}, "?": {"_count": 1}}, "\u25a0": {"_count": 1, "Aha": {"_count": 1}}, "involved": {"_count": 1, "is": {"_count": 1}}, "weve": {"_count": 1, "been": {"_count": 1}}, "is": {"_count": 2, "thats": {"_count": 1}, "said": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "wasnt": {"_count": 1, "somewhere": {"_count": 1}}, "was": {"_count": 2, "": {"_count": 2}}, "though": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "that": {"_count": 1}}, "she": {"_count": 1, "whispered": {"_count": 1}}, "the": {"_count": 2, "noted": {"_count": 1}, "celebrated": {"_count": 1}}, "who": {"_count": 1, "celebrated": {"_count": 1}}, "are": {"_count": 1, "yeh": {"_count": 1}}, "Oh": {"_count": 1, "you": {"_count": 1}}}, "enjoys": {"_count": 5, "chamber": {"_count": 1, "music": {"_count": 1}}, "a": {"_count": 1, "quiet": {"_count": 1}}, "ripping": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 1, "feeling": {"_count": 1}}, "Acid": {"_count": 1, "Pops": {"_count": 1}}}, "chamber": {"_count": 43, "music": {"_count": 1, "and": {"_count": 1}}, "off": {"_count": 5, "the": {"_count": 5}}, "": {"_count": 8, ".": {"_count": 8}}, "back": {"_count": 2, "across": {"_count": 1}, "there": {"_count": 1}}, "theyd": {"_count": 1, "just": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "didnt": {"_count": 1}, "entered": {"_count": 1}}, "its": {"_count": 1, "ceiling": {"_count": 1}}, "was": {"_count": 2, "a": {"_count": 1}, "so": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "Chreestmas": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "many": {"_count": 1, "times": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "indicated": {"_count": 1}}, "silence": {"_count": 1, "fell": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "pots": {"_count": 2, "": {"_count": 2}}, "opened": {"_count": 1, "and": {"_count": 1}}, "Violet": {"_count": 1, "the": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "Anthony": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "pot": {"_count": 1, "protruding": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}}, "bowling": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "along": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "firstyears": {"_count": 1}}}, "astonishment": {"_count": 19, "that": {"_count": 4, "Dumbledore": {"_count": 2}, "a": {"_count": 1}, "an": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "so": {"_count": 1, "that": {"_count": 1}}, "Dumbledore": {"_count": 1, "smiled": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "at": {"_count": 2, "what": {"_count": 1}, "the": {"_count": 1}}, "Dobby": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "fear": {"_count": 1}}, "it": {"_count": 1, "immediately": {"_count": 1}}, "was": {"_count": 1, "Tonks": {"_count": 1}}, "she": {"_count": 1, "pulled": {"_count": 1}}, "broken": {"_count": 1, "by": {"_count": 1}}}, "hang": {"_count": 41, "around": {"_count": 10, "all": {"_count": 1}, "with": {"_count": 4}, "once": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "showing": {"_count": 1}}, "glider": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 16, "to": {"_count": 1}, "much": {"_count": 1}, "": {"_count": 4}, "yeah": {"_count": 1}, "He": {"_count": 1}, "A": {"_count": 1}, "I": {"_count": 1}, "how": {"_count": 1}, "\u2018er": {"_count": 1}, "this": {"_count": 1}, "said": {"_count": 1}, "till": {"_count": 1}, "password": {"_count": 1}}, "you": {"_count": 1, "by": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 1}, "these": {"_count": 1}, "Apparition": {"_count": 1}, "it": {"_count": 1}}, "here": {"_count": 1, "wide": {"_count": 1}}, "itself": {"_count": 1, "from": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 2, "after": {"_count": 2}}, "suspended": {"_count": 1, "beneath": {"_count": 1}}, "themselves": {"_count": 1, "up": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}, "it": {"_count": 1, "on": {"_count": 1}}}, "Morgana": {"_count": 2, "again": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "Hengist": {"_count": 1}}}, "strayed": {"_count": 7, "to": {"_count": 2, "the": {"_count": 1}, "Ginny": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "longingly": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 1, "that": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "inadvertently": {"_count": 1, "close": {"_count": 1}}}, "Help": {"_count": 23, "yourself": {"_count": 3, "said": {"_count": 2}, "Tom": {"_count": 1}}, "me": {"_count": 12, "Master": {"_count": 1}, "help": {"_count": 2}, "": {"_count": 4}, "Harry": {"_count": 1}, "will": {"_count": 1}, "Dad": {"_count": 1}, "find": {"_count": 1}, "protect": {"_count": 1}}, "will": {"_count": 2, "always": {"_count": 2}}, "yerself": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 1}, "!": {"_count": 1}}, "he": {"_count": 1, "murmured": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}}, "photos": {"_count": 13, "": {"_count": 7, ".": {"_count": 3}, "?": {"_count": 2}, "!": {"_count": 2}}, "Potter": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "of": {"_count": 2, "him": {"_count": 1}, "Native": {"_count": 1}}, "for": {"_count": 1, "Colin": {"_count": 1}}}, "amazed": {"_count": 27, "": {"_count": 10, ".": {"_count": 10}}, "so": {"_count": 2, "impressed": {"_count": 1}, "grateful": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "saw": {"_count": 2, "that": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "always": {"_count": 1}}, "Harry": {"_count": 2, "wasnt": {"_count": 1}, "wanted": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "impressed": {"_count": 1}}, "the": {"_count": 3, "thing": {"_count": 1}, "statues": {"_count": 1}, "shriveled": {"_count": 1}}, "still": {"_count": 1, "": {"_count": 1}}, "looks": {"_count": 1, "of": {"_count": 1}}}, "Weird": {"_count": 21, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "wasnt": {"_count": 1}}, "enjoyed": {"_count": 1, "being": {"_count": 1}}, "and": {"_count": 1, "paused": {"_count": 1}}, "things": {"_count": 1, "arent": {"_count": 1}}, "Sisters": {"_count": 11, "": {"_count": 2}, "were": {"_count": 1}, "now": {"_count": 1}, "struck": {"_count": 2}, "stopped": {"_count": 1}, "finished": {"_count": 1}, "getting": {"_count": 1}, "Ernie": {"_count": 1}, "on": {"_count": 1}}, "Wizarding": {"_count": 2, "Dilemmas": {"_count": 2}}, "place": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 1, "being": {"_count": 1}}}, "sidled": {"_count": 9, "back": {"_count": 1, "into": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 4}}, "toward": {"_count": 1, "them": {"_count": 1}}, "past": {"_count": 1, "her": {"_count": 1}}, "sideways": {"_count": 1, "to": {"_count": 1}}}, "Witches": {"_count": 5, "and": {"_count": 3, "Wizards": {"_count": 1}, "wizards": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "caught": {"_count": 1}}}, "Hengist": {"_count": 1, "of": {"_count": 1, "Woodcraft": {"_count": 1}}}, "Woodcraft": {"_count": 1, "Alberic": {"_count": 1, "Grunnion": {"_count": 1}}}, "Alberic": {"_count": 1, "Grunnion": {"_count": 1, "Circe": {"_count": 1}}}, "Grunnion": {"_count": 1, "Circe": {"_count": 1, "Paracelsus": {"_count": 1}}}, "Circe": {"_count": 1, "Paracelsus": {"_count": 1, "and": {"_count": 1}}}, "Paracelsus": {"_count": 3, "and": {"_count": 1, "Merlin": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "falling": {"_count": 1, "on": {"_count": 1}}}, "tore": {"_count": 43, "his": {"_count": 4, "eyes": {"_count": 4}}, "it": {"_count": 4, "open": {"_count": 1}, "into": {"_count": 2}, "from": {"_count": 1}}, "back": {"_count": 3, "across": {"_count": 1}, "down": {"_count": 1}, "the": {"_count": 1}}, "pictures": {"_count": 1, "from": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 4, "it": {"_count": 1}, "him": {"_count": 1}, "them": {"_count": 2}}, "open": {"_count": 4, "the": {"_count": 2}, "": {"_count": 1}, "Rons": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "second": {"_count": 1}, "strip": {"_count": 1}}, "this": {"_count": 1, "off": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 2, "place": {"_count": 1}, "obituary": {"_count": 1}}, "at": {"_count": 4, "them": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 1}, "every": {"_count": 1}}, "all": {"_count": 1, "along": {"_count": 1}}, "sobbed": {"_count": 1, "Leanne": {"_count": 1}}, "past": {"_count": 1, "Hagrid": {"_count": 1}}, "apart": {"_count": 1, "their": {"_count": 1}}, "away": {"_count": 1, "in": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}}, "druidess": {"_count": 1, "Cliodna": {"_count": 1, "who": {"_count": 1}}}, "Cliodna": {"_count": 1, "who": {"_count": 1, "was": {"_count": 1}}}, "flavor": {"_count": 6, "they": {"_count": 1, "mean": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "could": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "of": {"_count": 1, "jam": {"_count": 1}}}, "spinach": {"_count": 1, "and": {"_count": 1, "liver": {"_count": 1}}}, "tripe": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}}, "reckons": {"_count": 30, "he": {"_count": 5, "had": {"_count": 1}, "was": {"_count": 1}, "might": {"_count": 1}, "dueled": {"_count": 1}, "could": {"_count": 1}}, "hes": {"_count": 2, "found": {"_count": 1}, "brilliant": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 3, "shouldnt": {"_count": 1}, "can": {"_count": 1}, "should": {"_count": 1}}, "its": {"_count": 1, "sweet": {"_count": 1}}, "you": {"_count": 3, "can": {"_count": 1}, "look": {"_count": 1}, "only": {"_count": 1}}, "wrong": {"_count": 1, "with": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "You": {"_count": 1, "Know": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "Fudge": {"_count": 1, "only": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "Harrys": {"_count": 1, "lying": {"_count": 1}}, "there": {"_count": 1, "will": {"_count": 1}}, "Trelawneys": {"_count": 1, "an": {"_count": 1}}, "in": {"_count": 1, "league": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "Voldemort": {"_count": 2, "really": {"_count": 1}, "wanted": {"_count": 1}}, "his": {"_count": 1, "left": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}}, "boogerflavored": {"_count": 1, "one": {"_count": 1, "once": {"_count": 1}}}, "bean": {"_count": 8, "looked": {"_count": 1, "at": {"_count": 1}}, "strawberry": {"_count": 1, "curry": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "do": {"_count": 1, "\u25a0": {"_count": 1}}, "and": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 1, "proving": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}}, "Bleaargh": {"_count": 1, "see": {"_count": 1, "": {"_count": 1}}}, "Sprouts": {"_count": 10, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "arms": {"_count": 1, "were": {"_count": 1}}, "scowl": {"_count": 1, "she": {"_count": 1}}, "eyebrows": {"_count": 1, "had": {"_count": 1}}, "preferred": {"_count": 1, "brand": {"_count": 1}}, "got": {"_count": 2, "nice": {"_count": 1}, "the": {"_count": 1}}, "head": {"_count": 1, "and": {"_count": 1}}, "yells": {"_count": 1, "of": {"_count": 1}}}, "coconut": {"_count": 3, "baked": {"_count": 1, "bean": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "ice": {"_count": 1, "fat": {"_count": 1}}}, "baked": {"_count": 4, "bean": {"_count": 1, "strawberry": {"_count": 1}}, "potato": {"_count": 3, "when": {"_count": 1}, "": {"_count": 2}}}, "strawberry": {"_count": 3, "curry": {"_count": 1, "grass": {"_count": 1}}, "mousse": {"_count": 1, "and": {"_count": 1}}, "ice": {"_count": 1, "cream": {"_count": 1}}}, "curry": {"_count": 1, "grass": {"_count": 1, "coffee": {"_count": 1}}}, "grass": {"_count": 99, "coffee": {"_count": 1, "sardine": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "rippled": {"_count": 1, "under": {"_count": 1}}, "in": {"_count": 8, "a": {"_count": 1}, "the": {"_count": 5}, "his": {"_count": 1}, "front": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 26}, "?": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "several": {"_count": 1}}, "reliving": {"_count": 1, "the": {"_count": 1}}, "needed": {"_count": 1, "cutting": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "where": {"_count": 1}}, "we": {"_count": 1, "might": {"_count": 1}}, "hanging": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 10, "was": {"_count": 1}, "though": {"_count": 1}, "push": {"_count": 1}, "Hagrid": {"_count": 1}, "honeysuckle": {"_count": 1}, "the": {"_count": 1}, "wondered": {"_count": 1}, "new": {"_count": 1}, "hedgerow": {"_count": 1}, "scrambled": {"_count": 1}}, "stains": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 2, "springy": {"_count": 1}, "still": {"_count": 1}}, "blood": {"_count": 1, "blossoming": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 2, "before": {"_count": 1}, "the": {"_count": 1}}, "below": {"_count": 1, "was": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "flatten": {"_count": 1, "in": {"_count": 1}}, "end": {"_count": 1, "to": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "beside": {"_count": 1, "them": {"_count": 1}}, "Barty": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "snake": {"_count": 1, "just": {"_count": 1}}, "circling": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "smell": {"_count": 1}, "cool": {"_count": 1}}, "waiting": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "some": {"_count": 1, "distance": {"_count": 1}}, "crunched": {"_count": 2, "under": {"_count": 1}, "underfoot": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 1, "rather": {"_count": 1}}, "Sirius": {"_count": 1, "and": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "before": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "Umbridge": {"_count": 1, "jogging": {"_count": 1}}, "sunbathing": {"_count": 1, "talking": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "lake": {"_count": 1, "water": {"_count": 1}}, "or": {"_count": 1, "sand": {"_count": 1}}, "clutching": {"_count": 1, "his": {"_count": 1}}, "discarding": {"_count": 1, "twigs": {"_count": 1}}, "there": {"_count": 1, "though": {"_count": 1}}, "pierced": {"_count": 1, "by": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}}, "coffee": {"_count": 14, "sardine": {"_count": 1, "and": {"_count": 1}}, "Petunia": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 3, "Uncle": {"_count": 1}, "Harry": {"_count": 1}, "hot": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "table": {"_count": 2, "Uncle": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "sardine": {"_count": 1, "and": {"_count": 1, "was": {"_count": 1}}}, "nibble": {"_count": 2, "the": {"_count": 1, "end": {"_count": 1}}, "his": {"_count": 1, "ear": {"_count": 1}}}, "pepper": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "breath": {"_count": 1, "": {"_count": 1}}, "pot": {"_count": 1, "": {"_count": 1}}}, "countryside": {"_count": 13, "now": {"_count": 1, "flying": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "became": {"_count": 1, "greener": {"_count": 1}}, "to": {"_count": 1, "Hogwarts": {"_count": 1}}, "around": {"_count": 1, "Hogsmeade": {"_count": 1}}, "spreading": {"_count": 1, "despair": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "pitching": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "parceled": {"_count": 1, "out": {"_count": 1}}}, "becoming": {"_count": 57, "wilder": {"_count": 1, "": {"_count": 1}}, "almost": {"_count": 1, "unbearable": {"_count": 1}}, "wizards": {"_count": 1, "while": {"_count": 1}}, "more": {"_count": 9, "and": {"_count": 4}, "difficult": {"_count": 1}, "painful": {"_count": 1}, "dangerously": {"_count": 1}, "sweetly": {"_count": 1}, "flustered": {"_count": 1}}, "a": {"_count": 5, "fanatic": {"_count": 1}, "single": {"_count": 1}, "werewolf": {"_count": 1}, "gale": {"_count": 1}, "prefect": {"_count": 1}}, "moody": {"_count": 1, "and": {"_count": 1}}, "untidier": {"_count": 1, "as": {"_count": 1}}, "drowsy": {"_count": 2, "when": {"_count": 1}, "at": {"_count": 1}}, "clearer": {"_count": 1, "more": {"_count": 1}}, "increasingly": {"_count": 5, "edgy": {"_count": 1}, "overgrown": {"_count": 1}, "badtempered": {"_count": 1}, "restricted": {"_count": 1}, "repetitive": {"_count": 1}}, "Animagi": {"_count": 1, "illegally": {"_count": 1}}, "confused": {"_count": 1, "": {"_count": 1}}, "champion": {"_count": 1, "": {"_count": 1}}, "seriously": {"_count": 1, "concerned": {"_count": 1}}, "louder": {"_count": 3, "and": {"_count": 1}, "without": {"_count": 1}, "but": {"_count": 1}}, "very": {"_count": 1, "aware": {"_count": 1}}, "Minister": {"_count": 2, "of": {"_count": 2}}, "so": {"_count": 1, "full": {"_count": 1}}, "smooth": {"_count": 1, "the": {"_count": 1}}, "curiously": {"_count": 1, "weak": {"_count": 1}}, "prefect": {"_count": 1, "": {"_count": 1}}, "aware": {"_count": 1, "as": {"_count": 1}}, "steadily": {"_count": 1, "dirtier": {"_count": 1}}, "careless": {"_count": 1, "with": {"_count": 1}}, "reckless": {"_count": 1, "cooped": {"_count": 1}}, "an": {"_count": 2, "Auror": {"_count": 2}}, "sorer": {"_count": 1, "by": {"_count": 1}}, "easier": {"_count": 1, "with": {"_count": 1}}, "suddenly": {"_count": 1, "stern": {"_count": 1}}, "obsessed": {"_count": 1, "with": {"_count": 1}}, "expansive": {"_count": 1, "under": {"_count": 1}}, "stronger": {"_count": 1, "by": {"_count": 1}}, "colder": {"_count": 1, "and": {"_count": 1}}, "little": {"_count": 1, "more": {"_count": 1}}, "overwhelming": {"_count": 1, "Below": {"_count": 1}}, "darker": {"_count": 1, "too": {"_count": 1}}}, "wilder": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 4, "darker": {"_count": 1}, "wilder": {"_count": 2}, "more": {"_count": 1}}, "Hannah": {"_count": 1, "Abbott": {"_count": 1}}, "hedgerows": {"_count": 1, "than": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}}, "woods": {"_count": 19, "twisting": {"_count": 1, "rivers": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 3, "at": {"_count": 1}, "stick": {"_count": 1}, "he": {"_count": 1}}, "fleeing": {"_count": 1, "something": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "an": {"_count": 1, "hour": {"_count": 1}}, "soaring": {"_count": 1, "into": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "were": {"_count": 1, "muffled": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "another": {"_count": 1, "little": {"_count": 1}}, "have": {"_count": 1, "seemed": {"_count": 1}}}, "rivers": {"_count": 2, "and": {"_count": 1, "dark": {"_count": 1}}, "winding": {"_count": 1, "through": {"_count": 1}}}, "hills": {"_count": 10, "": {"_count": 4, ".": {"_count": 4}}, "outside": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "to": {"_count": 1}}, "its": {"_count": 1, "church": {"_count": 1}}, "a": {"_count": 1, "rippling": {"_count": 1}}, "whenever": {"_count": 1, "they": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}}, "tearful": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "again": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "face": {"_count": 1, "before": {"_count": 1}}, "farewells": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}}, "keeps": {"_count": 49, "getting": {"_count": 1, "away": {"_count": 1}}, "hurting": {"_count": 1, "its": {"_count": 1}}, "shrinking": {"_count": 2, "to": {"_count": 1}, "theyll": {"_count": 1}}, "having": {"_count": 1, "tantrums": {"_count": 1}}, "a": {"_count": 2, "low": {"_count": 1}, "close": {"_count": 1}}, "telling": {"_count": 4, "me": {"_count": 1}, "the": {"_count": 1}, "everyone": {"_count": 2}}, "its": {"_count": 2, "brain": {"_count": 2}}, "changing": {"_count": 1, "them": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 2}}, "tabs": {"_count": 1, "on": {"_count": 1}}, "doing": {"_count": 2, "it": {"_count": 1}, "odd": {"_count": 1}}, "laughing": {"_count": 1, "and": {"_count": 1}}, "saying": {"_count": 2, "that": {"_count": 1}, "Umbridge": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "popping": {"_count": 1, "up": {"_count": 1}}, "their": {"_count": 1, "secrets": {"_count": 1}}, "her": {"_count": 3, "masters": {"_count": 1}, "silence": {"_count": 1}, "sacrifice": {"_count": 1}}, "it": {"_count": 3, "quiet": {"_count": 1}, "on": {"_count": 1}, "safe": {"_count": 1}}, "offering": {"_count": 1, "to": {"_count": 1}}, "hie": {"_count": 1, "her": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "talking": {"_count": 1, "like": {"_count": 1}}, "sticking": {"_count": 1, "ever": {"_count": 1}}, "rattling": {"_count": 1, "and": {"_count": 1}}, "reminding": {"_count": 1, "you": {"_count": 1}}, "wounds": {"_count": 1, "open": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "snogging": {"_count": 1, "you": {"_count": 1}}, "coming": {"_count": 2, "secretly": {"_count": 2}}, "me": {"_count": 1, "safe": {"_count": 1}}, "cropping": {"_count": 1, "up": {"_count": 1}}, "appearing": {"_count": 1, "Harry": {"_count": 1}}, "being": {"_count": 1, "sighted": {"_count": 1}}}, "bothered": {"_count": 28, "said": {"_count": 1, "Ron": {"_count": 1}}, "them": {"_count": 2, "none": {"_count": 1}, "but": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Harry": {"_count": 2, "couldnt": {"_count": 1}, "most": {"_count": 1}}, "filling": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 8, "read": {"_count": 1}, "keep": {"_count": 1}, "give": {"_count": 1}, "find": {"_count": 1}, "tot": {"_count": 1}, "take": {"_count": 1}, "inquire": {"_count": 1}, "say": {"_count": 1}}, "him": {"_count": 1, "Harry": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "was": {"_count": 1, "soon": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "tidying": {"_count": 1, "up": {"_count": 1}}, "by": {"_count": 2, "this": {"_count": 1}, "mosquitoes": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 1, "all": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "what": {"_count": 1, "it": {"_count": 1}}}, "Mind": {"_count": 20, "you": {"_count": 12, "I": {"_count": 1}, "we": {"_count": 2}, "shell": {"_count": 1}, "theyd": {"_count": 1}, "looks": {"_count": 1}, "he": {"_count": 1}, "shes": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "return": {"_count": 1}, "if": {"_count": 1}}, "yer": {"_count": 2, "step": {"_count": 1}, "own": {"_count": 1}}, "I": {"_count": 2, "dont": {"_count": 1}, "don": {"_count": 1}}, "the": {"_count": 1, "dementors": {"_count": 1}}, "works": {"_count": 1, "the": {"_count": 1}}, "your": {"_count": 1, "own": {"_count": 1}}, "whos": {"_count": 1, "to": {"_count": 1}}}, "snoozing": {"_count": 10, "on": {"_count": 1, "Rons": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 3}}, "gently": {"_count": 1, "in": {"_count": 1}}, "mermaid": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "not": {"_count": 1}}}, "rummaged": {"_count": 16, "around": {"_count": 2, "in": {"_count": 2}}, "once": {"_count": 1, "more": {"_count": 1}}, "in": {"_count": 8, "his": {"_count": 2}, "their": {"_count": 1}, "her": {"_count": 3}, "the": {"_count": 2}}, "within": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 3}}, "through": {"_count": 1, "his": {"_count": 1}}}, "batteredlooking": {"_count": 1, "wand": {"_count": 1, "": {"_count": 1}}}, "Unicorn": {"_count": 2, "hairs": {"_count": 1, "nearly": {"_count": 1}}, "blood": {"_count": 1, "has": {"_count": 1}}}, "toadless": {"_count": 3, "boy": {"_count": 3, "was": {"_count": 1}, "with": {"_count": 1}, "or": {"_count": 1}}}, "Has": {"_count": 26, "anyone": {"_count": 4, "seen": {"_count": 1}, "ever": {"_count": 2}, "heard": {"_count": 1}}, "Claimed": {"_count": 1, "the": {"_count": 1}}, "Been": {"_count": 2, "Opened": {"_count": 2}}, "something": {"_count": 1, "gone": {"_count": 1}}, "she": {"_count": 2, "always": {"_count": 1}, "banned": {"_count": 1}}, "Neville": {"_count": 1, "never": {"_count": 1}}, "everybody": {"_count": 1, "got": {"_count": 1}}, "it": {"_count": 5, "occurred": {"_count": 2}, "not": {"_count": 1}, "been": {"_count": 1}, "started": {"_count": 1}}, "your": {"_count": 1, "dad": {"_count": 1}}, "Ron": {"_count": 1, "saved": {"_count": 1}}, "someone": {"_count": 2, "been": {"_count": 1}, "definitely": {"_count": 1}}, "YouKnowWho": {"_count": 1, "got": {"_count": 1}}, "an": {"_count": 1, "Inferius": {"_count": 1}}, "he": {"_count": 3, "been": {"_count": 2}, "": {"_count": 1}}}, "Nevilles": {"_count": 103, "lost": {"_count": 1, "one": {"_count": 1}}, "toad": {"_count": 4, "": {"_count": 1}, "zoom": {"_count": 1}, "was": {"_count": 1}, "Trevor": {"_count": 1}}, "cloak": {"_count": 1, "which": {"_count": 1}}, "head": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "so": {"_count": 1}}, "hadnt": {"_count": 1, "moved": {"_count": 1}}, "voice": {"_count": 2, "that": {"_count": 1}, "again": {"_count": 1}}, "robes": {"_count": 4, "had": {"_count": 1}, "Neville": {"_count": 1}, "": {"_count": 1}, "tore": {"_count": 1}}, "Remembrall": {"_count": 1, "I": {"_count": 1}}, "legs": {"_count": 7, "sprang": {"_count": 1}, "jerked": {"_count": 1}, "were": {"_count": 1}, "waving": {"_count": 1}, "twitched": {"_count": 1}, "he": {"_count": 1}, "fell": {"_count": 1}}, "lips": {"_count": 2, "twitched": {"_count": 1}, "moved": {"_count": 1}}, "eye": {"_count": 1, "and": {"_count": 1}}, "arms": {"_count": 2, "snapped": {"_count": 1}, "together": {"_count": 1}}, "jaws": {"_count": 1, "were": {"_count": 1}}, "round": {"_count": 2, "pink": {"_count": 1}, "face": {"_count": 1}}, "snuffling": {"_count": 1, "snores": {"_count": 1}}, "pet": {"_count": 1, "toad": {"_count": 1}}, "cup": {"_count": 1, "": {"_count": 1}}, "potion": {"_count": 1, "which": {"_count": 1}}, "face": {"_count": 3, "went": {"_count": 1}, "was": {"_count": 1}, "Professor": {"_count": 1}}, "small": {"_count": 1, "sputter": {"_count": 1}}, "grandmothers": {"_count": 1, "voice": {"_count": 1}}, "cornflakes": {"_count": 1, "": {"_count": 1}}, "gloomy": {"_count": 1, "voice": {"_count": 1}}, "foot": {"_count": 1, "had": {"_count": 1}}, "memory": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "hands": {"_count": 1, "were": {"_count": 1}}, "usual": {"_count": 1, "snores": {"_count": 1}}, "still": {"_count": 1, "had": {"_count": 1}}, "right": {"_count": 2, "you": {"_count": 1}, "eye": {"_count": 1}}, "aim": {"_count": 1, "was": {"_count": 1}}, "parents": {"_count": 8, "": {"_count": 2}, "said": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "until": {"_count": 1}, "ever": {"_count": 1}, "well": {"_count": 1}}, "bed": {"_count": 3, "": {"_count": 2}, "staring": {"_count": 1}}, "snores": {"_count": 1, "he": {"_count": 1}}, "grandmother": {"_count": 4, "had": {"_count": 1}, "graciously": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "favorite": {"_count": 1, "subject": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "neck": {"_count": 1, "and": {"_count": 1}}, "secret": {"_count": 1, "": {"_count": 1}}, "chest": {"_count": 1, "with": {"_count": 1}}, "opponent": {"_count": 1, "was": {"_count": 1}}, "gone": {"_count": 1, "for": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "mother": {"_count": 2, "had": {"_count": 1}, "have": {"_count": 1}}, "arm": {"_count": 1, "was": {"_count": 1}}, "wand": {"_count": 1, "in": {"_count": 1}}, "shoulders": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 2, "youd": {"_count": 1}, "had": {"_count": 1}}, "screams": {"_count": 1, "stopped": {"_count": 1}}, "jerking": {"_count": 1, "legs": {"_count": 1}}, "ear": {"_count": 1, "as": {"_count": 1}}, "floundering": {"_count": 1, "feet": {"_count": 1}}, "bottom": {"_count": 1, "which": {"_count": 1}}, "childhood": {"_count": 1, "had": {"_count": 1}}, "turn": {"_count": 1, "next": {"_count": 1}}, "interview": {"_count": 1, "Harry": {"_count": 1}}, "muttered": {"_count": 1, "JellyLegs": {"_count": 1}}, "already": {"_count": 1, "got": {"_count": 1}}, "pale": {"_count": 1, "round": {"_count": 1}}, "mum": {"_count": 1, "and": {"_count": 1}}, "injuries": {"_count": 1, "were": {"_count": 1}}, "the": {"_count": 1, "man": {"_count": 1}}, "brows": {"_count": 1, "contracted": {"_count": 1}}}, "bossy": {"_count": 4, "sort": {"_count": 1, "of": {"_count": 1}}, "knowitall": {"_count": 1, "that": {"_count": 1}}, "disapproving": {"_count": 1, "voice": {"_count": 1}}, "woman": {"_count": 1, "up": {"_count": 1}}}, "Lets": {"_count": 119, "see": {"_count": 18, "it": {"_count": 1}, "": {"_count": 7}, "what": {"_count": 3}, "he": {"_count": 2}, "now": {"_count": 1}, "if": {"_count": 2}, "Umbridge": {"_count": 1}, "said": {"_count": 1}}, "try": {"_count": 7, "again": {"_count": 3}, "you": {"_count": 1}, "some": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}}, "go": {"_count": 28, "": {"_count": 6}, "together": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}, "and": {"_count": 5}, "to": {"_count": 2}, "for": {"_count": 1}, "then": {"_count": 1}, "again": {"_count": 1}, "he": {"_count": 2}, "called": {"_count": 1}, "this": {"_count": 2}, "up": {"_count": 1}, "downstairs": {"_count": 1}, "through": {"_count": 1}}, "forget": {"_count": 1, "it": {"_count": 1}}, "find": {"_count": 3, "an": {"_count": 1}, "seats": {"_count": 1}, "out": {"_count": 1}}, "leave": {"_count": 1, "them": {"_count": 1}}, "get": {"_count": 15, "out": {"_count": 3}, "back": {"_count": 1}, "downstairs": {"_count": 1}, "to": {"_count": 1}, "this": {"_count": 1}, "on": {"_count": 1}, "away": {"_count": 1}, "goin": {"_count": 1}, "something": {"_count": 1}, "inside": {"_count": 1}, "undercover": {"_count": 1}, "going": {"_count": 1}, "rid": {"_count": 1}}, "think": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "ask": {"_count": 1, "for": {"_count": 1}}, "have": {"_count": 3, "a": {"_count": 2}, "no": {"_count": 1}}, "all": {"_count": 1, "throw": {"_count": 1}}, "do": {"_count": 2, "it": {"_count": 1}, "this": {"_count": 1}}, "hear": {"_count": 2, "what": {"_count": 1}, "his": {"_count": 1}}, "match": {"_count": 1, "the": {"_count": 1}}, "lets": {"_count": 3, "go": {"_count": 1}, "find": {"_count": 1}, "get": {"_count": 1}}, "move": {"_count": 2, "along": {"_count": 1}, "NOW": {"_count": 1}}, "just": {"_count": 7, "keep": {"_count": 1}, "try": {"_count": 1}, "see": {"_count": 1}, "take": {"_count": 1}, "do": {"_count": 1}, "say": {"_count": 1}, "leave": {"_count": 1}}, "hope": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "sit": {"_count": 3, "down": {"_count": 3}}, "give": {"_count": 1, "it": {"_count": 1}}, "Stun": {"_count": 1, "her": {"_count": 1}}, "eat": {"_count": 1, "said": {"_count": 1}}, "crack": {"_count": 1, "on": {"_count": 1}}, "say": {"_count": 2, "I": {"_count": 1}, "next": {"_count": 1}}, "not": {"_count": 2, "stay": {"_count": 1}, "worry": {"_count": 1}}, "talk": {"_count": 1, "about": {"_count": 1}}, "stay": {"_count": 2, "here": {"_count": 2}}, "fast": {"_count": 1, "forward": {"_count": 1}}, "take": {"_count": 1, "off": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "split": {"_count": 1, "up": {"_count": 1}}, "stick": {"_count": 1, "together": {"_count": 1}}}, "aback": {"_count": 31, "": {"_count": 15, ".": {"_count": 15}}, "by": {"_count": 3, "the": {"_count": 2}, "this": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "at": {"_count": 4, "his": {"_count": 1}, "being": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 3, "pleased": {"_count": 2}, "promised": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "as": {"_count": 1, "something": {"_count": 1}}, "Harry": {"_count": 1, "hesitated": {"_count": 1}}}, "Sunshine": {"_count": 2, "daisies": {"_count": 1, "butter": {"_count": 1}}, "was": {"_count": 1, "streaming": {"_count": 1}}}, "daisies": {"_count": 1, "butter": {"_count": 1, "mellow": {"_count": 1}}}, "butter": {"_count": 3, "mellow": {"_count": 1, "Turn": {"_count": 1}}, "dish": {"_count": 1, "": {"_count": 1}}, "knocking": {"_count": 1, "over": {"_count": 1}}}, "mellow": {"_count": 3, "Turn": {"_count": 1, "this": {"_count": 1}}, "and": {"_count": 1, "pleasant": {"_count": 1}}, "voiced": {"_count": 1, "Ted": {"_count": 1}}}, "Turn": {"_count": 10, "this": {"_count": 1, "stupid": {"_count": 1}}, "back": {"_count": 1, "turn": {"_count": 1}}, "Foul": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 2, "your": {"_count": 2}}, "round": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "cup": {"_count": 1}}, "please": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 1, "your": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "simple": {"_count": 58, "spells": {"_count": 5, "just": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "I": {"_count": 1}, "were": {"_count": 1}}, "potion": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "sentence": {"_count": 1, "on": {"_count": 1}}, "matter": {"_count": 4, "if": {"_count": 1}, "of": {"_count": 3}}, "Transylvanian": {"_count": 1, "villager": {"_count": 1}}, "charm": {"_count": 1, "Ive": {"_count": 1}}, "Sleeping": {"_count": 1, "Draught": {"_count": 1}}, "as": {"_count": 5, "that": {"_count": 3}, "he": {"_count": 1}, "hiding": {"_count": 1}}, "yet": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "so": {"_count": 1}}, "reason": {"_count": 1, "for": {"_count": 1}}, "process": {"_count": 1, "it": {"_count": 1}}, "way": {"_count": 1, "of": {"_count": 1}}, "Switching": {"_count": 1, "Spell": {"_count": 1}}, "Karkaroff": {"_count": 1, "": {"_count": 1}}, "spell": {"_count": 2, "that": {"_count": 2}}, "one": {"_count": 3, "would": {"_count": 1}, "of": {"_count": 1}, "said": {"_count": 1}}, "spellbooks": {"_count": 1, "then": {"_count": 1}}, "enough": {"_count": 1, "antijinx": {"_count": 1}}, "thing": {"_count": 1, "to": {"_count": 1}}, "question": {"_count": 1, "": {"_count": 1}}, "parttime": {"_count": 1, "virtually": {"_count": 1}}, "Id": {"_count": 1, "had": {"_count": 1}}, "explanation": {"_count": 1, "involving": {"_count": 1}}, "to": {"_count": 1, "somebody": {"_count": 1}}, "pleasure": {"_count": 1, "of": {"_count": 1}}, "combination": {"_count": 1, "of": {"_count": 1}}, "security": {"_count": 1, "guidelines": {"_count": 1}}, "test": {"_count": 2, "": {"_count": 1}, "Check": {"_count": 1}}, "Freezing": {"_count": 1, "Charm": {"_count": 1}}, "incantation": {"_count": 1, "and": {"_count": 1}}, "click": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 1, "dress": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "truth": {"_count": 1, "of": {"_count": 1}}, "movement": {"_count": 1, "and": {"_count": 1}}, "fact": {"_count": 1, "that": {"_count": 1}}, "measures": {"_count": 1, "are": {"_count": 1}}, "expedient": {"_count": 1, "of": {"_count": 1}}, "word": {"_count": 1, "would": {"_count": 1}}}, "spells": {"_count": 108, "just": {"_count": 1, "for": {"_count": 1}}, "shed": {"_count": 1, "learned": {"_count": 1}}, "on": {"_count": 3, "Muggles": {"_count": 1}, "it": {"_count": 2}}, "by": {"_count": 1, "heart": {"_count": 1}}, "outside": {"_count": 2, "school": {"_count": 2}}, "": {"_count": 16, "?": {"_count": 3}, ".": {"_count": 13}}, "said": {"_count": 1, "Lockhart": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "all": {"_count": 2, "you": {"_count": 1}, "over": {"_count": 1}}, "can": {"_count": 1, "penetrate": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "hidden": {"_count": 1, "from": {"_count": 1}}, "that": {"_count": 6, "must": {"_count": 1}, "had": {"_count": 2}, "have": {"_count": 1}, "the": {"_count": 1}, "would": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 4, "had": {"_count": 3}, "invented": {"_count": 1}}, "were": {"_count": 3, "doing": {"_count": 1}, "now": {"_count": 1}, "enough": {"_count": 1}}, "combined": {"_count": 1, "did": {"_count": 1}}, "hit": {"_count": 3, "it": {"_count": 1}, "books": {"_count": 1}, "them": {"_count": 1}}, "to": {"_count": 2, "subdue": {"_count": 1}, "use": {"_count": 1}}, "came": {"_count": 1, "through": {"_count": 1}}, "it": {"_count": 1, "has": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "under": {"_count": 1, "carefully": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 1}, "me": {"_count": 1}}, "and": {"_count": 9, "correct": {"_count": 1}, "throwing": {"_count": 1}, "charms": {"_count": 3}, "curses": {"_count": 1}, "weve": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}}, "You": {"_count": 1, "want": {"_count": 1}}, "We": {"_count": 1, "think": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "bounced": {"_count": 1, "off": {"_count": 1}}, "down": {"_count": 2, "upon": {"_count": 1}, "at": {"_count": 1}}, "of": {"_count": 2, "such": {"_count": 1}, "concealment": {"_count": 1}}, "streaming": {"_count": 1, "uselessly": {"_count": 1}}, "went": {"_count": 1, "rather": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "without": {"_count": 2, "speaking": {"_count": 1}, "fear": {"_count": 1}}, "forgotten": {"_count": 1, "he": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "said": {"_count": 1}, "put": {"_count": 1}}, "work": {"_count": 2, "without": {"_count": 1}, "anyway": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "something": {"_count": 1, "Snape": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "come": {"_count": 1, "and": {"_count": 1}}, "He": {"_count": 1, "didnt": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "shattered": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "she": {"_count": 1, "usually": {"_count": 1}}, "are": {"_count": 2, "cast": {"_count": 2}}, "so": {"_count": 1, "theyve": {"_count": 1}}, "theyve": {"_count": 1, "cast": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "collided": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Hagrid": {"_count": 1, "buried": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "dragging": {"_count": 1, "arrows": {"_count": 1}}}, "familys": {"_count": 10, "magic": {"_count": 1, "at": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "trouble": {"_count": 1, "": {"_count": 1}}, "whole": {"_count": 1, "house": {"_count": 1}}, "names": {"_count": 1, "": {"_count": 1}}, "honor": {"_count": 1, "and": {"_count": 1}}, "house": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Disapparition": {"_count": 1, "Harry": {"_count": 1}}, "here": {"_count": 1, "I": {"_count": 1}}}, "Hermione": {"_count": 5097, "Granger": {"_count": 41, "by": {"_count": 2}, "this": {"_count": 1}, "had": {"_count": 2}, "who": {"_count": 1}, "was": {"_count": 3}, "": {"_count": 14}, "wearing": {"_count": 1}, "telling": {"_count": 1}, "became": {"_count": 1}, "I": {"_count": 1}, "standing": {"_count": 1}, "always": {"_count": 1}, "knew": {"_count": 1}, "and": {"_count": 2}, "hadnt": {"_count": 1}, "a": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 1}, "there": {"_count": 1}, "Harry": {"_count": 1}, "told": {"_count": 1}, "sir": {"_count": 1}, "still": {"_count": 1}}, "": {"_count": 726, ".": {"_count": 640}, "!": {"_count": 31}, "?": {"_count": 55}}, "in": {"_count": 100, "a": {"_count": 65}, "the": {"_count": 10}, "alarm": {"_count": 1}, "": {"_count": 1}, "an": {"_count": 9}, "several": {"_count": 1}, "surprise": {"_count": 3}, "amazement": {"_count": 1}, "unflattering": {"_count": 1}, "half": {"_count": 1}, "conversation": {"_count": 1}, "Gryffindor": {"_count": 1}, "turn": {"_count": 1}, "Transfiguration": {"_count": 1}, "exasperation": {"_count": 1}, "Bellatrixs": {"_count": 1}, "desperation": {"_count": 1}}, "whisper": {"_count": 1, "Its": {"_count": 1}}, "almost": {"_count": 2, "ran": {"_count": 1}, "fell": {"_count": 1}}, "were": {"_count": 66, "talking": {"_count": 1}, "wondering": {"_count": 1}, "thinking": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "joined": {"_count": 1}, "planning": {"_count": 2}, "crossing": {"_count": 1}, "waiting": {"_count": 3}, "walking": {"_count": 1}, "all": {"_count": 2}, "looking": {"_count": 3}, "kneeling": {"_count": 1}, "the": {"_count": 2}, "working": {"_count": 1}, "also": {"_count": 1}, "standing": {"_count": 1}, "going": {"_count": 1}, "settling": {"_count": 1}, "sitting": {"_count": 5}, "wet": {"_count": 1}, "soon": {"_count": 1}, "supposed": {"_count": 2}, "staring": {"_count": 3}, "on": {"_count": 1}, "with": {"_count": 1}, "bickering": {"_count": 1}, "holding": {"_count": 1}, "both": {"_count": 1}, "still": {"_count": 2}, "left": {"_count": 1}, "there": {"_count": 1}, "struggling": {"_count": 1}, "now": {"_count": 1}, "more": {"_count": 1}, "cloistered": {"_count": 1}, "not": {"_count": 1}, "you": {"_count": 1}, "exchanging": {"_count": 1}, "hurrying": {"_count": 1}, "at": {"_count": 1}, "or": {"_count": 1}, "surrounded": {"_count": 1}, "lying": {"_count": 1}, "having": {"_count": 1}, "gone": {"_count": 1}, "squeezed": {"_count": 1}, "laying": {"_count": 1}, "waistdeep": {"_count": 1}, "engulfed": {"_count": 1}, "following": {"_count": 1}}, "a": {"_count": 15, "rare": {"_count": 1}, "knowitall": {"_count": 1}, "girl": {"_count": 1}, "wizard": {"_count": 1}, "milk": {"_count": 1}, "dark": {"_count": 1}, "note": {"_count": 1}, "long": {"_count": 1}, "sanctimonious": {"_count": 1}, "little": {"_count": 4}, "book": {"_count": 1}, "tentative": {"_count": 1}}, "s": {"_count": 120, "hand": {"_count": 8}, "lecture": {"_count": 1}, "": {"_count": 6}, "right": {"_count": 1}, "cheers": {"_count": 1}, "eyes": {"_count": 4}, "eye": {"_count": 2}, "face": {"_count": 9}, "usual": {"_count": 1}, "rigid": {"_count": 1}, "letter": {"_count": 1}, "arms": {"_count": 2}, "not": {"_count": 2}, "spell": {"_count": 1}, "nose": {"_count": 2}, "rune": {"_count": 1}, "boggart": {"_count": 1}, "breathing": {"_count": 1}, "grip": {"_count": 2}, "and": {"_count": 2}, "foot": {"_count": 1}, "shriek": {"_count": 1}, "white": {"_count": 1}, "mouth": {"_count": 2}, "terrified": {"_count": 2}, "determination": {"_count": 1}, "front": {"_count": 1}, "crime": {"_count": 1}, "bushy": {"_count": 1}, "shoulder": {"_count": 3}, "goblet": {"_count": 1}, "part": {"_count": 1}, "voice": {"_count": 1}, "shocked": {"_count": 1}, "lap": {"_count": 1}, "threat": {"_count": 1}, "winces": {"_count": 1}, "but": {"_count": 1}, "smiles": {"_count": 1}, "whispered": {"_count": 1}, "words": {"_count": 2}, "prefect": {"_count": 1}, "drink": {"_count": 1}, "bad": {"_count": 1}, "offer": {"_count": 1}, "shoulders": {"_count": 3}, "remonstration": {"_count": 1}, "increasing": {"_count": 1}, "arm": {"_count": 2}, "creation": {"_count": 1}, "haughty": {"_count": 1}, "gasps": {"_count": 1}, "summons": {"_count": 1}, "Quidditch": {"_count": 1}, "free": {"_count": 1}, "my": {"_count": 1}, "unspoken": {"_count": 1}, "head": {"_count": 1}, "silent": {"_count": 1}, "nonreappearance": {"_count": 1}, "hands": {"_count": 1}, "wand": {"_count": 3}, "Patronus": {"_count": 1}, "fingers": {"_count": 1}, "feelings": {"_count": 1}, "sleeve": {"_count": 1}, "glower": {"_count": 1}, "beaded": {"_count": 1}, "buttonedup": {"_count": 1}, "solicitousness": {"_count": 1}, "answer": {"_count": 1}, "insistence": {"_count": 1}, "comprehension": {"_count": 1}, "flat": {"_count": 1}, "screams": {"_count": 1}, "throat": {"_count": 1}, "had": {"_count": 1}, "problem": {"_count": 1}, "ear": {"_count": 1}, "long": {"_count": 1}, "second": {"_count": 1}}, "stretched": {"_count": 1, "her": {"_count": 1}}, "stood": {"_count": 13, "up": {"_count": 6}, "alone": {"_count": 1}, "nervously": {"_count": 1}, "hidden": {"_count": 1}, "as": {"_count": 1}, "pressed": {"_count": 1}, "is": {"_count": 1}, "at": {"_count": 1}}, "does": {"_count": 2, "though": {"_count": 1}, "said": {"_count": 1}}, "Grangers": {"_count": 3, "had": {"_count": 1}, "voice": {"_count": 1}, "said": {"_count": 1}}, "ignored": {"_count": 5, "him": {"_count": 4}, "them": {"_count": 1}}, "snapped": {"_count": 10, "Percy": {"_count": 1}, "": {"_count": 4}, "at": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "starting": {"_count": 1}}, "wasnt": {"_count": 8, "going": {"_count": 1}, "listening": {"_count": 1}, "at": {"_count": 2}, "there": {"_count": 1}, "looking": {"_count": 1}, "his": {"_count": 1}, "taking": {"_count": 1}}, "had": {"_count": 189, "turned": {"_count": 5}, "got": {"_count": 1}, "given": {"_count": 6}, "sunk": {"_count": 1}, "managed": {"_count": 5}, "become": {"_count": 1}, "performed": {"_count": 1}, "disappeared": {"_count": 1}, "fought": {"_count": 1}, "already": {"_count": 7}, "been": {"_count": 12}, "now": {"_count": 1}, "ever": {"_count": 3}, "stopped": {"_count": 2}, "made": {"_count": 2}, "forgotten": {"_count": 1}, "only": {"_count": 1}, "brought": {"_count": 1}, "overridden": {"_count": 1}, "bought": {"_count": 1}, "a": {"_count": 1}, "bustled": {"_count": 1}, "said": {"_count": 6}, "always": {"_count": 2}, "just": {"_count": 6}, "scribbled": {"_count": 2}, "finally": {"_count": 2}, "joined": {"_count": 1}, "her": {"_count": 4}, "misgivings": {"_count": 1}, "decided": {"_count": 1}, "paid": {"_count": 1}, "both": {"_count": 1}, "hoped": {"_count": 1}, "shut": {"_count": 1}, "meant": {"_count": 1}, "never": {"_count": 2}, "put": {"_count": 1}, "simply": {"_count": 1}, "tried": {"_count": 2}, "done": {"_count": 2}, "gone": {"_count": 4}, "passed": {"_count": 1}, "seized": {"_count": 1}, "conjured": {"_count": 2}, "knocked": {"_count": 1}, "grabbed": {"_count": 1}, "come": {"_count": 2}, "not": {"_count": 9}, "swallowed": {"_count": 1}, "gotten": {"_count": 1}, "found": {"_count": 2}, "taken": {"_count": 4}, "insulted": {"_count": 1}, "left": {"_count": 3}, "crept": {"_count": 1}, "thrown": {"_count": 1}, "had": {"_count": 3}, "predicted": {"_count": 2}, "snatched": {"_count": 1}, "sat": {"_count": 1}, "actually": {"_count": 1}, "proposed": {"_count": 1}, "barely": {"_count": 1}, "kissed": {"_count": 1}, "tears": {"_count": 1}, "to": {"_count": 2}, "spent": {"_count": 1}, "wanted": {"_count": 1}, "confiscated": {"_count": 1}, "noticed": {"_count": 1}, "lent": {"_count": 1}, "seen": {"_count": 3}, "charmed": {"_count": 1}, "darted": {"_count": 1}, "punched": {"_count": 1}, "so": {"_count": 2}, "opened": {"_count": 1}, "changed": {"_count": 1}, "recited": {"_count": 1}, "set": {"_count": 1}, "told": {"_count": 2}, "you": {"_count": 1}, "appeared": {"_count": 1}, "resumed": {"_count": 1}, "let": {"_count": 1}, "landed": {"_count": 1}, "thought": {"_count": 1}, "cast": {"_count": 1}, "used": {"_count": 1}, "spread": {"_count": 1}, "collected": {"_count": 1}, "raised": {"_count": 1}, "other": {"_count": 1}, "pointed": {"_count": 1}, "reached": {"_count": 1}, "mentioned": {"_count": 1}, "since": {"_count": 1}, "little": {"_count": 1}, "returned": {"_count": 1}, "leapt": {"_count": 1}, "dismissed": {"_count": 1}, "protected": {"_count": 1}, "drawn": {"_count": 1}, "no": {"_count": 1}, "lit": {"_count": 1}, "fallen": {"_count": 1}, "momentarily": {"_count": 1}, "run": {"_count": 1}}, "was": {"_count": 152, "locked": {"_count": 1}, "now": {"_count": 7}, "stomping": {"_count": 1}, "angrier": {"_count": 1}, "crying": {"_count": 1}, "the": {"_count": 2}, "checking": {"_count": 2}, "trembling": {"_count": 1}, "testing": {"_count": 1}, "running": {"_count": 1}, "skimming": {"_count": 1}, "painful": {"_count": 1}, "pointing": {"_count": 3}, "obviously": {"_count": 1}, "dancing": {"_count": 1}, "whimpering": {"_count": 1}, "stirring": {"_count": 1}, "spared": {"_count": 1}, "pulling": {"_count": 1}, "saying": {"_count": 4}, "leaning": {"_count": 2}, "examining": {"_count": 1}, "muttering": {"_count": 1}, "panting": {"_count": 1}, "to": {"_count": 1}, "barely": {"_count": 1}, "well": {"_count": 1}, "walking": {"_count": 2}, "sitting": {"_count": 3}, "right": {"_count": 3}, "trying": {"_count": 4}, "screaming": {"_count": 3}, "quite": {"_count": 3}, "holding": {"_count": 2}, "fumbling": {"_count": 1}, "still": {"_count": 3}, "tugging": {"_count": 2}, "hovering": {"_count": 1}, "overcome": {"_count": 1}, "in": {"_count": 1}, "immersed": {"_count": 1}, "furious": {"_count": 1}, "your": {"_count": 1}, "once": {"_count": 1}, "very": {"_count": 1}, "blushing": {"_count": 1}, "having": {"_count": 2}, "looking": {"_count": 5}, "standing": {"_count": 1}, "going": {"_count": 2}, "talking": {"_count": 1}, "already": {"_count": 6}, "not": {"_count": 5}, "dozing": {"_count": 1}, "just": {"_count": 2}, "breathing": {"_count": 1}, "disposed": {"_count": 1}, "whispering": {"_count": 1}, "performing": {"_count": 1}, "writing": {"_count": 1}, "lying": {"_count": 3}, "waving": {"_count": 1}, "much": {"_count": 1}, "rereading": {"_count": 1}, "gazing": {"_count": 1}, "attempting": {"_count": 1}, "sobbing": {"_count": 1}, "planning": {"_count": 1}, "reading": {"_count": 1}, "peering": {"_count": 1}, "dreadful": {"_count": 1}, "up": {"_count": 1}, "immediately": {"_count": 1}, "delighted": {"_count": 1}, "staring": {"_count": 1}, "beaming": {"_count": 2}, "hurrying": {"_count": 1}, "Malfoy": {"_count": 1}, "at": {"_count": 1}, "friends": {"_count": 1}, "acting": {"_count": 1}, "rather": {"_count": 1}, "silently": {"_count": 1}, "quickest": {"_count": 1}, "biting": {"_count": 1}, "watching": {"_count": 2}, "pounding": {"_count": 1}, "stuck": {"_count": 1}, "getting": {"_count": 1}, "squashing": {"_count": 1}, "two": {"_count": 1}, "glad": {"_count": 1}, "nowhere": {"_count": 1}, "so": {"_count": 1}, "fast": {"_count": 1}, "waiting": {"_count": 1}, "being": {"_count": 1}, "wrapped": {"_count": 1}, "giving": {"_count": 1}, "all": {"_count": 1}, "struggling": {"_count": 1}, "able": {"_count": 1}}, "caught": {"_count": 9, "up": {"_count": 4}, "Harrys": {"_count": 1}, "by": {"_count": 1}, "his": {"_count": 1}, "sight": {"_count": 1}, "it": {"_count": 1}}, "and": {"_count": 221, "Neville": {"_count": 9}, "I": {"_count": 6}, "Harry": {"_count": 6}, "Hagrid": {"_count": 4}, "hoisted": {"_count": 1}, "she": {"_count": 8}, "the": {"_count": 16}, "giving": {"_count": 1}, "detached": {"_count": 1}, "smiling": {"_count": 1}, "Madam": {"_count": 1}, "Ron": {"_count": 26}, "Millicent": {"_count": 1}, "a": {"_count": 3}, "that": {"_count": 2}, "Lucius": {"_count": 1}, "his": {"_count": 2}, "Ginny": {"_count": 38}, "finally": {"_count": 1}, "he": {"_count": 4}, "hitting": {"_count": 2}, "said": {"_count": 3}, "were": {"_count": 1}, "Buckbeak": {"_count": 2}, "saw": {"_count": 2}, "Black": {"_count": 2}, "Professor": {"_count": 1}, "Fred": {"_count": 2}, "George": {"_count": 1}, "at": {"_count": 1}, "amusement": {"_count": 1}, "fixing": {"_count": 1}, "everyone": {"_count": 1}, "lets": {"_count": 1}, "her": {"_count": 2}, "Krum": {"_count": 1}, "Cho": {"_count": 1}, "began": {"_count": 2}, "Dobby": {"_count": 1}, "of": {"_count": 2}, "Bill": {"_count": 2}, "they": {"_count": 3}, "dont": {"_count": 1}, "Hedwig": {"_count": 1}, "then": {"_count": 2}, "followed": {"_count": 1}, "me": {"_count": 3}, "up": {"_count": 1}, "slamming": {"_count": 1}, "back": {"_count": 1}, "all": {"_count": 1}, "stacked": {"_count": 1}, "Ernie": {"_count": 2}, "Umbridge": {"_count": 1}, "pulled": {"_count": 2}, "Ginnys": {"_count": 2}, "Leanne": {"_count": 4}, "to": {"_count": 2}, "Lupin": {"_count": 2}, "stroking": {"_count": 1}, "Mundungus": {"_count": 1}, "Kingsley": {"_count": 2}, "stumped": {"_count": 1}, "which": {"_count": 1}, "as": {"_count": 2}, "here": {"_count": 1}, "Mrs": {"_count": 1}, "him": {"_count": 1}, "Bathilda": {"_count": 1}, "it": {"_count": 2}, "something": {"_count": 1}, "Luna": {"_count": 1}, "Fleur": {"_count": 1}, "Griphook": {"_count": 1}, "drew": {"_count": 1}, "Rons": {"_count": 1}, "with": {"_count": 2}, "helped": {"_count": 1}, "Goyle": {"_count": 2}, "Ill": {"_count": 1}}, "opened": {"_count": 10, "her": {"_count": 7}, "Moste": {"_count": 1}, "the": {"_count": 2}}, "gasped": {"_count": 17, "clutching": {"_count": 1}, "Snape": {"_count": 1}, "": {"_count": 6}, "pointing": {"_count": 1}, "she": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "massaging": {"_count": 1}, "as": {"_count": 1}, "her": {"_count": 1}, "Harry": {"_count": 1}, "both": {"_count": 1}}, "said": {"_count": 148, "to": {"_count": 4}, "Thats": {"_count": 1}, "anxiously": {"_count": 1}, "Harry": {"_count": 17}, "": {"_count": 5}, "Ron": {"_count": 18}, "holding": {"_count": 3}, "slowly": {"_count": 1}, "in": {"_count": 5}, "peering": {"_count": 1}, "timidly": {"_count": 1}, "Hagrid": {"_count": 2}, "shrilly": {"_count": 2}, "quietly": {"_count": 4}, "Shh": {"_count": 2}, "Lupin": {"_count": 1}, "she": {"_count": 1}, "desperately": {"_count": 1}, "leaning": {"_count": 1}, "Mr": {"_count": 1}, "gently": {"_count": 2}, "loftily": {"_count": 1}, "Angelina": {"_count": 1}, "over": {"_count": 1}, "despairingly": {"_count": 1}, "shortly": {"_count": 2}, "sarcastically": {"_count": 1}, "warningly": {"_count": 1}, "impatiently": {"_count": 2}, "thoughtfully": {"_count": 1}, "looking": {"_count": 1}, "squeakily": {"_count": 1}, "swiftly": {"_count": 1}, "smiling": {"_count": 1}, "bristling": {"_count": 1}, "very": {"_count": 2}, "no": {"_count": 1}, "loudly": {"_count": 1}, "this": {"_count": 1}, "when": {"_count": 1}, "About": {"_count": 1}, "crossly": {"_count": 1}, "snapping": {"_count": 1}, "severely": {"_count": 1}, "taking": {"_count": 1}, "as": {"_count": 1}, "encouragingly": {"_count": 1}, "gazing": {"_count": 1}, "Mrs": {"_count": 1}, "weakly": {"_count": 1}, "Sirius": {"_count": 2}, "awkwardly": {"_count": 1}, "Fred": {"_count": 1}, "we": {"_count": 1}, "forcefully": {"_count": 1}, "acidly": {"_count": 1}, "But": {"_count": 1}, "quickly": {"_count": 1}, "suddenly": {"_count": 1}, "Listen": {"_count": 1}, "together": {"_count": 1}, "wow": {"_count": 1}, "What": {"_count": 1}, "nothing": {"_count": 2}, "now": {"_count": 1}, "tentatively": {"_count": 1}, "a": {"_count": 2}, "furiously": {"_count": 1}, "Ginny": {"_count": 1}, "urgently": {"_count": 1}, "brightly": {"_count": 2}, "such": {"_count": 1}, "again": {"_count": 1}, "getting": {"_count": 1}, "evidently": {"_count": 1}, "at": {"_count": 1}, "sadly": {"_count": 1}, "hastily": {"_count": 1}, "Of": {"_count": 1}, "passing": {"_count": 1}, "but": {"_count": 1}, "her": {"_count": 1}, "closing": {"_count": 1}, "and": {"_count": 1}, "Ive": {"_count": 1}, "the": {"_count": 2}, "miserably": {"_count": 1}}, "snarled": {"_count": 1, "": {"_count": 1}}, "showed": {"_count": 4, "the": {"_count": 1}, "signs": {"_count": 1}, "every": {"_count": 1}, "him": {"_count": 1}}, "marched": {"_count": 2, "away": {"_count": 1}, "purposefully": {"_count": 1}}, "snap": {"_count": 1, "": {"_count": 1}}, "rolled": {"_count": 4, "up": {"_count": 1}, "her": {"_count": 2}, "around": {"_count": 1}}, "didnt": {"_count": 17, "turn": {"_count": 3}, "": {"_count": 2}, "get": {"_count": 1}, "seem": {"_count": 4}, "speak": {"_count": 1}, "have": {"_count": 1}, "answer": {"_count": 2}, "really": {"_count": 1}, "wait": {"_count": 1}, "believe": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 3}, "in": {"_count": 1}}, "trying": {"_count": 4, "to": {"_count": 4}}, "who": {"_count": 108, "spoke": {"_count": 1}, "came": {"_count": 1}, "leapt": {"_count": 1}, "had": {"_count": 25}, "was": {"_count": 29}, "were": {"_count": 7}, "nodded": {"_count": 2}, "burst": {"_count": 1}, "looked": {"_count": 9}, "opened": {"_count": 1}, "disapproved": {"_count": 1}, "quickly": {"_count": 1}, "each": {"_count": 1}, "remained": {"_count": 1}, "went": {"_count": 1}, "hadnt": {"_count": 1}, "turned": {"_count": 1}, "stared": {"_count": 1}, "seemed": {"_count": 4}, "are": {"_count": 1}, "caught": {"_count": 1}, "though": {"_count": 1}, "awoke": {"_count": 1}, "leaned": {"_count": 1}, "plowed": {"_count": 1}, "unlike": {"_count": 1}, "of": {"_count": 1}, "sighed": {"_count": 1}, "said": {"_count": 1}, "sounded": {"_count": 1}, "peered": {"_count": 1}, "answered": {"_count": 1}, "maintained": {"_count": 1}, "continued": {"_count": 1}, "for": {"_count": 2}, "stood": {"_count": 1}, "murmured": {"_count": 1}}, "hung": {"_count": 2, "her": {"_count": 1}, "back": {"_count": 1}}, "left": {"_count": 16, "": {"_count": 1}, "the": {"_count": 10}, "Harrys": {"_count": 1}, "them": {"_count": 1}, "in": {"_count": 1}, "him": {"_count": 1}, "before": {"_count": 1}}, "however": {"_count": 23, "stood": {"_count": 1}, "had": {"_count": 2}, "said": {"_count": 2}, "clapped": {"_count": 1}, "were": {"_count": 3}, "approached": {"_count": 1}, "took": {"_count": 2}, "leaned": {"_count": 1}, "did": {"_count": 1}, "squared": {"_count": 1}, "merely": {"_count": 1}, "looked": {"_count": 4}, "gave": {"_count": 1}, "answered": {"_count": 1}, "was": {"_count": 1}}, "as": {"_count": 65, "a": {"_count": 3}, "they": {"_count": 20}, "the": {"_count": 5}, "though": {"_count": 9}, "well": {"_count": 1}, "she": {"_count": 8}, "Ron": {"_count": 6}, "Ginny": {"_count": 1}, "he": {"_count": 2}, "was": {"_count": 1}, "Harry": {"_count": 5}, "Mundungus": {"_count": 1}, "Mrs": {"_count": 1}, "did": {"_count": 1}, "Bellatrix": {"_count": 1}}, "moved": {"_count": 8, "closer": {"_count": 4}, "nearer": {"_count": 1}, "instinctively": {"_count": 1}, "her": {"_count": 1}, "Bathilda": {"_count": 1}}, "sat": {"_count": 24, "together": {"_count": 1}, "down": {"_count": 10}, "themselves": {"_count": 2}, "with": {"_count": 1}, "between": {"_count": 1}, "apart": {"_count": 1}, "up": {"_count": 3}, "her": {"_count": 1}, "in": {"_count": 1}, "looking": {"_count": 1}, "beside": {"_count": 1}, "panting": {"_count": 1}}, "he": {"_count": 23, "was": {"_count": 3}, "didnt": {"_count": 1}, "said": {"_count": 5}, "fell": {"_count": 1}, "muttered": {"_count": 1}, "and": {"_count": 1}, "seemed": {"_count": 1}, "attempted": {"_count": 1}, "knows": {"_count": 1}, "stopped": {"_count": 1}, "caught": {"_count": 1}, "could": {"_count": 2}, "added": {"_count": 1}, "fished": {"_count": 1}, "seized": {"_count": 1}, "looked": {"_count": 1}}, "you": {"_count": 9, "think": {"_count": 1}, "go": {"_count": 1}, "and": {"_count": 1}, "have": {"_count": 1}, "stick": {"_count": 1}, "are": {"_count": 1}, "left": {"_count": 1}, "packed": {"_count": 1}, "shouldnt": {"_count": 1}}, "joined": {"_count": 11, "Neville": {"_count": 1}, "him": {"_count": 4}, "Mr": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 2}, "it": {"_count": 1}, "in": {"_count": 1}}, "squeezed": {"_count": 3, "together": {"_count": 1}, "inside": {"_count": 1}, "their": {"_count": 1}}, "seized": {"_count": 9, "Hagrid": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 3}, "Harrys": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}}, "Ron": {"_count": 9, "muttered": {"_count": 1}, "and": {"_count": 6}, "hurrying": {"_count": 1}, "Ginny": {"_count": 1}}, "looked": {"_count": 87, "at": {"_count": 22}, "convinced": {"_count": 1}, "very": {"_count": 3}, "ready": {"_count": 1}, "around": {"_count": 3}, "back": {"_count": 1}, "up": {"_count": 6}, "aghast": {"_count": 1}, "slightly": {"_count": 1}, "quickly": {"_count": 2}, "rather": {"_count": 6}, "curiously": {"_count": 1}, "down": {"_count": 1}, "doubtfully": {"_count": 1}, "severely": {"_count": 1}, "as": {"_count": 3}, "simply": {"_count": 2}, "sadly": {"_count": 1}, "on": {"_count": 1}, "revolted": {"_count": 2}, "upset": {"_count": 1}, "heartened": {"_count": 1}, "alarmed": {"_count": 1}, "tense": {"_count": 1}, "surprised": {"_count": 1}, "nervous": {"_count": 2}, "scandalized": {"_count": 1}, "flustered": {"_count": 1}, "distinctly": {"_count": 1}, "indignant": {"_count": 1}, "even": {"_count": 1}, "reassured": {"_count": 1}, "pleasurably": {"_count": 1}, "gleeful": {"_count": 1}, "sympathetic": {"_count": 1}, "outraged": {"_count": 2}, "astonished": {"_count": 1}, "frightened": {"_count": 2}, "exasperated": {"_count": 1}, "bewildered": {"_count": 2}, "after": {"_count": 1}, "utterly": {"_count": 1}, "across": {"_count": 1}}, "took": {"_count": 22, "out": {"_count": 1}, "": {"_count": 1}, "nobodys": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 2}, "flight": {"_count": 1}, "the": {"_count": 3}, "their": {"_count": 3}, "matters": {"_count": 1}, "hold": {"_count": 1}, "to": {"_count": 2}, "him": {"_count": 1}, "it": {"_count": 3}, "over": {"_count": 1}}, "playing": {"_count": 1, "chess": {"_count": 1}}, "ever": {"_count": 2, "lost": {"_count": 1}, "neglecting": {"_count": 1}}, "at": {"_count": 26, "once": {"_count": 17}, "the": {"_count": 4}, "least": {"_count": 1}, "all": {"_count": 1}, "last": {"_count": 1}, "ten": {"_count": 1}, "its": {"_count": 1}}, "suggested": {"_count": 6, "": {"_count": 2}, "anxiously": {"_count": 1}, "sending": {"_count": 1}, "after": {"_count": 1}, "halfheartedly": {"_count": 1}}, "asked": {"_count": 33, "him": {"_count": 6}, "breathlessly": {"_count": 3}, "timidly": {"_count": 1}, "": {"_count": 5}, "kindly": {"_count": 1}, "nervously": {"_count": 1}, "still": {"_count": 1}, "the": {"_count": 1}, "together": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "peering": {"_count": 1}, "apprehensively": {"_count": 1}, "Harry": {"_count": 1}, "eventually": {"_count": 1}, "ignoring": {"_count": 1}, "close": {"_count": 1}, "looking": {"_count": 1}, "her": {"_count": 1}, "stiffly": {"_count": 1}, "as": {"_count": 1}, "hopefully": {"_count": 1}}, "urged": {"_count": 2, "Neville": {"_count": 1}, "him": {"_count": 1}}, "jumped": {"_count": 9, "to": {"_count": 3}, "back": {"_count": 1}, "as": {"_count": 1}, "up": {"_count": 2}, "and": {"_count": 2}}, "told": {"_count": 14, "him": {"_count": 4}, "Harry": {"_count": 6}, "Sirius": {"_count": 1}, "me": {"_count": 2}, "Rita": {"_count": 1}}, "when": {"_count": 8, "Harry": {"_count": 1}, "they": {"_count": 2}, "are": {"_count": 1}, "finally": {"_count": 1}, "she": {"_count": 1}, "Lavender": {"_count": 1}, "he": {"_count": 1}}, "meanwhile": {"_count": 5, "had": {"_count": 1}, "maintained": {"_count": 1}, "was": {"_count": 2}, "the": {"_count": 1}}, "muttered": {"_count": 6, "as": {"_count": 2}, "I": {"_count": 1}, "moving": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "suddenly": {"_count": 14, "Harry": {"_count": 1}, "severe": {"_count": 1}, "became": {"_count": 1}, "getting": {"_count": 1}, "grabbed": {"_count": 1}, "peering": {"_count": 1}, "": {"_count": 4}, "smiled": {"_count": 1}, "sounding": {"_count": 1}, "stern": {"_count": 1}, "impatient": {"_count": 1}}, "screamed": {"_count": 22, "leaping": {"_count": 1}, "but": {"_count": 2}, "out": {"_count": 1}, "suddenly": {"_count": 1}, "": {"_count": 7}, "and": {"_count": 3}, "ConfringoV": {"_count": 1}, "No": {"_count": 1}, "again": {"_count": 3}, "in": {"_count": 1}, "over": {"_count": 1}}, "dancing": {"_count": 1, "up": {"_count": 1}}, "squeaked": {"_count": 4, "": {"_count": 3}, "looking": {"_count": 1}}, "would": {"_count": 22, "press": {"_count": 1}, "be": {"_count": 3}, "want": {"_count": 1}, "scoff": {"_count": 1}, "rather": {"_count": 1}, "say": {"_count": 2}, "feel": {"_count": 1}, "not": {"_count": 3}, "continue": {"_count": 1}, "think": {"_count": 1}, "have": {"_count": 1}, "make": {"_count": 1}, "said": {"_count": 1}, "soon": {"_count": 1}, "never": {"_count": 1}, "need": {"_count": 1}, "know": {"_count": 1}}, "the": {"_count": 19, "exams": {"_count": 1}, "harness": {"_count": 1}, "cleverest": {"_count": 1}, "whole": {"_count": 1}, "Honeydukes": {"_count": 1}, "only": {"_count": 1}, "chain": {"_count": 1}, "moment": {"_count": 3}, "most": {"_count": 1}, "pink": {"_count": 1}, "hairy": {"_count": 1}, "new": {"_count": 1}, "corners": {"_count": 1}, "task": {"_count": 1}, "note": {"_count": 1}, "more": {"_count": 1}, "tears": {"_count": 1}}, "next": {"_count": 4, "to": {"_count": 3}, "day": {"_count": 1}}, "thoughtfully": {"_count": 5, "": {"_count": 4}, "where": {"_count": 1}}, "went": {"_count": 16, "on": {"_count": 3}, "over": {"_count": 1}, "as": {"_count": 1}, "very": {"_count": 2}, "to": {"_count": 3}, "back": {"_count": 1}, "slightly": {"_count": 2}, "up": {"_count": 2}, "off": {"_count": 1}}, "wouldnt": {"_count": 2, "hear": {"_count": 1}, "let": {"_count": 1}}, "how": {"_count": 9, "many": {"_count": 2}, "fast": {"_count": 1}, "Colin": {"_count": 1}, "can": {"_count": 1}, "it": {"_count": 1}, "do": {"_count": 1}, "are": {"_count": 1}, "does": {"_count": 1}}, "argued": {"_count": 1, "all": {"_count": 1}}, "agreed": {"_count": 4, "to": {"_count": 2}, "": {"_count": 1}, "Harry": {"_count": 1}}, "very": {"_count": 7, "nervous": {"_count": 1}, "brown": {"_count": 1}, "seriously": {"_count": 1}, "much": {"_count": 1}, "fast": {"_count": 1}, "skeptically": {"_count": 1}, "quietly": {"_count": 1}}, "rushed": {"_count": 2, "up": {"_count": 1}, "forward": {"_count": 1}}, "tried": {"_count": 3, "to": {"_count": 2}, "her": {"_count": 1}}, "but": {"_count": 33, "this": {"_count": 1}, "she": {"_count": 5}, "Hermione": {"_count": 1}, "visitors": {"_count": 1}, "no": {"_count": 1}, "not": {"_count": 1}, "I": {"_count": 4}, "they": {"_count": 2}, "her": {"_count": 1}, "he": {"_count": 3}, "Oh": {"_count": 1}, "Hagrid": {"_count": 1}, "neither": {"_count": 1}, "it": {"_count": 4}, "before": {"_count": 1}, "hes": {"_count": 1}, "you": {"_count": 2}, "its": {"_count": 1}, "if": {"_count": 1}}, "walked": {"_count": 8, "back": {"_count": 1}, "straight": {"_count": 2}, "around": {"_count": 1}, "past": {"_count": 1}, "right": {"_count": 1}, "forward": {"_count": 1}, "away": {"_count": 1}}, "covered": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 1}, "Rons": {"_count": 1}}, "did": {"_count": 19, "a": {"_count": 1}, "not": {"_count": 14}, "everything": {"_count": 1}, "it": {"_count": 1}, "snog": {"_count": 1}, "the": {"_count": 1}}, "shook": {"_count": 8, "hands": {"_count": 1}, "their": {"_count": 3}, "her": {"_count": 4}}, "kept": {"_count": 9, "to": {"_count": 1}, "looking": {"_count": 1}, "shooting": {"_count": 1}, "tutting": {"_count": 1}, "patting": {"_count": 1}, "on": {"_count": 1}, "asking": {"_count": 1}, "telling": {"_count": 2}}, "answered": {"_count": 5, "before": {"_count": 1}, "my": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 1}, "him": {"_count": 1}}, "to": {"_count": 46, "complain": {"_count": 1}, "introduce": {"_count": 1}, "scramble": {"_count": 1}, "spend": {"_count": 1}, "read": {"_count": 1}, "help": {"_count": 3}, "leave": {"_count": 1}, "go": {"_count": 2}, "block": {"_count": 1}, "sit": {"_count": 2}, "pass": {"_count": 1}, "cover": {"_count": 1}, "find": {"_count": 2}, "show": {"_count": 1}, "see": {"_count": 2}, "rush": {"_count": 1}, "tell": {"_count": 2}, "write": {"_count": 1}, "notice": {"_count": 2}, "her": {"_count": 1}, "join": {"_count": 1}, "follow": {"_count": 1}, "share": {"_count": 1}, "Harry": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 1}, "put": {"_count": 1}, "be": {"_count": 1}, "squeeze": {"_count": 1}, "claw": {"_count": 1}, "come": {"_count": 1}, "gasp": {"_count": 1}, "this": {"_count": 1}, "do": {"_count": 1}, "decipher": {"_count": 1}, "Ron": {"_count": 1}, "understand": {"_count": 1}, "keep": {"_count": 1}}, "faintly": {"_count": 4, "": {"_count": 4}}, "timidly": {"_count": 4, "": {"_count": 3}, "when": {"_count": 1}}, "followed": {"_count": 8, "him": {"_count": 1}, "somewhat": {"_count": 1}, "suit": {"_count": 1}, "the": {"_count": 2}, "closely": {"_count": 1}, "her": {"_count": 1}, "Bill": {"_count": 1}}, "grabbed": {"_count": 6, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "Crookshanks": {"_count": 1}, "Harrys": {"_count": 2}}, "Harry": {"_count": 13, "you": {"_count": 1}, "said": {"_count": 2}, "whispered": {"_count": 1}, "and": {"_count": 2}, "caught": {"_count": 1}, "muttered": {"_count": 1}, "": {"_count": 1}, "looked": {"_count": 1}, "seized": {"_count": 1}, "reflected": {"_count": 1}, "would": {"_count": 1}}, "what": {"_count": 8, "had": {"_count": 2}, "": {"_count": 1}, "happened": {"_count": 1}, "he": {"_count": 4}}, "always": {"_count": 1, "liked": {"_count": 1}}, "hurrying": {"_count": 5, "to": {"_count": 1}, "alongside": {"_count": 1}, "over": {"_count": 1}, "along": {"_count": 1}, "into": {"_count": 1}}, "rather": {"_count": 7, "bravely": {"_count": 1}, "breathlessly": {"_count": 1}, "than": {"_count": 1}, "coolly": {"_count": 1}, "snappishly": {"_count": 1}, "crossly": {"_count": 1}, "timidly": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "came": {"_count": 14, "in": {"_count": 2}, "hurrying": {"_count": 3}, "out": {"_count": 1}, "back": {"_count": 1}, "over": {"_count": 2}, "tearing": {"_count": 1}, "inside": {"_count": 1}, "running": {"_count": 2}, "crashing": {"_count": 1}}, "briskly": {"_count": 9, "": {"_count": 3}, "as": {"_count": 1}, "buttering": {"_count": 1}, "Ive": {"_count": 1}, "youll": {"_count": 1}, "and": {"_count": 1}, "getting": {"_count": 1}}, "grimly": {"_count": 11, "": {"_count": 9}, "taking": {"_count": 1}, "over": {"_count": 1}}, "stepped": {"_count": 3, "forward": {"_count": 2}, "back": {"_count": 1}}, "ran": {"_count": 8, "to": {"_count": 4}, "forward": {"_count": 2}, "away": {"_count": 1}, "back": {"_count": 1}}, "miserably": {"_count": 4, "": {"_count": 3}, "havent": {"_count": 1}}, "whispered": {"_count": 59, "": {"_count": 30}, "frantically": {"_count": 2}, "anxiously": {"_count": 1}, "Mobiliarbus": {"_count": 1}, "urgently": {"_count": 2}, "uncertainly": {"_count": 1}, "expecto": {"_count": 1}, "lifting": {"_count": 1}, "and": {"_count": 2}, "suddenly": {"_count": 2}, "looking": {"_count": 1}, "bristling": {"_count": 1}, "giving": {"_count": 1}, "but": {"_count": 1}, "hes": {"_count": 1}, "in": {"_count": 1}, "imploringly": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}, "to": {"_count": 2}, "Good": {"_count": 1}, "pointing": {"_count": 1}, "beneath": {"_count": 1}, "so": {"_count": 1}, "give": {"_count": 1}}, "so": {"_count": 5, "she": {"_count": 1}, "he": {"_count": 1}, "try": {"_count": 1}, "busy": {"_count": 1}, "out": {"_count": 1}}, "began": {"_count": 18, "to": {"_count": 4}, "": {"_count": 8}, "hotly": {"_count": 2}, "doling": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}, "again": {"_count": 1}}, "ordered": {"_count": 3, "them": {"_count": 1}, "three": {"_count": 1}, "two": {"_count": 1}}, "cried": {"_count": 14, "wringing": {"_count": 1}, "": {"_count": 5}, "suddenly": {"_count": 1}, "Katie": {"_count": 1}, "as": {"_count": 1}, "out": {"_count": 2}, "but": {"_count": 1}, "her": {"_count": 1}, "Obscuro": {"_count": 1}}, "stay": {"_count": 1, "below": {"_count": 1}}, "rocketed": {"_count": 1, "upward": {"_count": 1}}, "shivered": {"_count": 1, "slightly": {"_count": 1}}, "nervously": {"_count": 11, "": {"_count": 9}, "rereading": {"_count": 1}, "and": {"_count": 1}}, "stayed": {"_count": 2, "quiet": {"_count": 1}, "behind": {"_count": 1}}, "go": {"_count": 3, "on": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}}, "shouted": {"_count": 5, "": {"_count": 1}, "together": {"_count": 1}, "indignantly": {"_count": 1}, "pounding": {"_count": 1}, "Glisseo": {"_count": 1}}, "charged": {"_count": 2, "through": {"_count": 1}, "toward": {"_count": 1}}, "let": {"_count": 13, "out": {"_count": 9}, "me": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 1}}, "read": {"_count": 6, "the": {"_count": 3}, "from": {"_count": 1}, "aloud": {"_count": 1}, "out": {"_count": 1}}, "pointed": {"_count": 5, "at": {"_count": 1}, "ahead": {"_count": 1}, "her": {"_count": 2}, "their": {"_count": 1}}, "turned": {"_count": 22, "and": {"_count": 3}, "around": {"_count": 1}, "the": {"_count": 4}, "quickly": {"_count": 1}, "to": {"_count": 3}, "sharply": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 1}, "away": {"_count": 1}, "automatically": {"_count": 1}, "a": {"_count": 2}, "faintly": {"_count": 1}, "pink": {"_count": 1}}, "exploded": {"_count": 1, "if": {"_count": 1}}, "buried": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 2}}, "passed": {"_count": 2, "through": {"_count": 1}, "he": {"_count": 1}}, "looking": {"_count": 67, "uncertainly": {"_count": 2}, "at": {"_count": 4}, "happier": {"_count": 1}, "desperately": {"_count": 1}, "anxious": {"_count": 2}, "very": {"_count": 2}, "stricken": {"_count": 2}, "scandalized": {"_count": 1}, "around": {"_count": 1}, "pensive": {"_count": 1}, "right": {"_count": 1}, "startled": {"_count": 2}, "outraged": {"_count": 1}, "impressed": {"_count": 1}, "surprised": {"_count": 1}, "shocked": {"_count": 3}, "scared": {"_count": 1}, "slightly": {"_count": 1}, "alarmed": {"_count": 2}, "thoroughly": {"_count": 2}, "embarrassed": {"_count": 1}, "from": {"_count": 2}, "relieved": {"_count": 4}, "taken": {"_count": 1}, "furious": {"_count": 1}, "appalled": {"_count": 1}, "up": {"_count": 5}, "shaken": {"_count": 1}, "concerned": {"_count": 1}, "disappointed": {"_count": 1}, "thunderstruck": {"_count": 1}, "beadily": {"_count": 1}, "aghast": {"_count": 1}, "over": {"_count": 1}, "apologetic": {"_count": 1}, "upset": {"_count": 1}, "amused": {"_count": 1}, "troubled": {"_count": 1}, "worried": {"_count": 1}, "down": {"_count": 2}, "terrified": {"_count": 1}, "both": {"_count": 1}, "interested": {"_count": 1}, "nervous": {"_count": 1}, "skeptical": {"_count": 1}, "back": {"_count": 1}}, "with": {"_count": 39, "a": {"_count": 18}, "mounting": {"_count": 1}, "streaming": {"_count": 1}, "unmistakable": {"_count": 1}, "as": {"_count": 1}, "dignity": {"_count": 2}, "something": {"_count": 1}, "the": {"_count": 3}, "an": {"_count": 2}, "her": {"_count": 3}, "no": {"_count": 1}, "you": {"_count": 1}, "half": {"_count": 1}, "him": {"_count": 2}, "awful": {"_count": 1}}, "she": {"_count": 6, "But": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "cleared": {"_count": 1}, "got": {"_count": 1}, "threw": {"_count": 1}}, "strolled": {"_count": 3, "off": {"_count": 1}, "through": {"_count": 2}}, "dragged": {"_count": 3, "them": {"_count": 1}, "their": {"_count": 1}, "Goyle": {"_count": 1}}, "squealed": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}, "fought": {"_count": 2, "their": {"_count": 1}, "her": {"_count": 1}}, "dashing": {"_count": 2, "toward": {"_count": 2}}, "sounding": {"_count": 13, "almost": {"_count": 1}, "as": {"_count": 1}, "puzzled": {"_count": 1}, "slightly": {"_count": 1}, "amazed": {"_count": 1}, "squeamish": {"_count": 1}, "thoroughly": {"_count": 1}, "shocked": {"_count": 2}, "startled": {"_count": 1}, "stunned": {"_count": 1}, "confused": {"_count": 1}, "frightened": {"_count": 1}}, "impatiently": {"_count": 9, "but": {"_count": 1}, "": {"_count": 5}, "rearranging": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}}, "prodding": {"_count": 3, "Errol": {"_count": 1}, "leeches": {"_count": 1}, "Ron": {"_count": 1}}, "closed": {"_count": 4, "Voyages": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}}, "seemed": {"_count": 18, "to": {"_count": 13}, "frightened": {"_count": 1}, "quite": {"_count": 1}, "cheery": {"_count": 1}, "unable": {"_count": 1}, "a": {"_count": 1}}, "inside": {"_count": 1, "when": {"_count": 1}}, "meant": {"_count": 1, "by": {"_count": 1}}, "beamed": {"_count": 5, "as": {"_count": 2}, "at": {"_count": 2}, "": {"_count": 1}}, "snatched": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 1}, "up": {"_count": 1}}, "shut": {"_count": 3, "Voyages": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}}, "on": {"_count": 9, "the": {"_count": 7}, "either": {"_count": 1}, "his": {"_count": 1}}, "raised": {"_count": 15, "a": {"_count": 1}, "her": {"_count": 9}, "their": {"_count": 3}, "the": {"_count": 1}, "his": {"_count": 1}}, "immobilizing": {"_count": 1, "two": {"_count": 1}}, "sitting": {"_count": 5, "in": {"_count": 1}, "down": {"_count": 1}, "next": {"_count": 1}, "up": {"_count": 1}, "at": {"_count": 1}}, "sharply": {"_count": 18, "": {"_count": 12}, "over": {"_count": 1}, "looking": {"_count": 1}, "as": {"_count": 3}, "freezing": {"_count": 1}}, "supported": {"_count": 2, "Ron": {"_count": 2}}, "anxiously": {"_count": 18, "watching": {"_count": 1}, "not": {"_count": 1}, "as": {"_count": 2}, "stopping": {"_count": 1}, "": {"_count": 7}, "the": {"_count": 1}, "hitching": {"_count": 1}, "springing": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}, "holding": {"_count": 1}}, "something": {"_count": 1, "it": {"_count": 1}}, "can": {"_count": 4, "do": {"_count": 1}, "get": {"_count": 1}, "stay": {"_count": 1}, "wait": {"_count": 1}}, "finished": {"_count": 5, "the": {"_count": 1}, "reading": {"_count": 1}, "ignoring": {"_count": 1}, "with": {"_count": 1}, "for": {"_count": 1}}, "halfway": {"_count": 1, "between": {"_count": 1}}, "behind": {"_count": 4, "them": {"_count": 1}, "him": {"_count": 3}}, "keenly": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "about": {"_count": 12, "Filch": {"_count": 1}, "Colin": {"_count": 1}, "his": {"_count": 2}, "houseelves": {"_count": 1}, "the": {"_count": 2}, "Nevilles": {"_count": 1}, "their": {"_count": 1}, "that": {"_count": 1}, "setting": {"_count": 1}, "where": {"_count": 1}}, "reminded": {"_count": 3, "Harry": {"_count": 1}, "him": {"_count": 2}}, "stopping": {"_count": 1, "abruptly": {"_count": 1}}, "knowledgeably": {"_count": 1, "pinching": {"_count": 1}}, "glaring": {"_count": 2, "at": {"_count": 2}}, "suspiciously": {"_count": 2, "": {"_count": 2}}, "nudging": {"_count": 1, "Harry": {"_count": 1}}, "sadly": {"_count": 2, "": {"_count": 2}}, "froze": {"_count": 1, "watching": {"_count": 1}}, "clattering": {"_count": 1, "behind": {"_count": 1}}, "panting": {"_count": 1, "behind": {"_count": 1}}, "gave": {"_count": 25, "a": {"_count": 12}, "her": {"_count": 1}, "Harry": {"_count": 2}, "him": {"_count": 4}, "Ron": {"_count": 2}, "them": {"_count": 1}, "his": {"_count": 1}, "an": {"_count": 1}, "roars": {"_count": 1}}, "exchanged": {"_count": 11, "tense": {"_count": 1}, "darkly": {"_count": 1}, "looks": {"_count": 4}, "smirks": {"_count": 1}, "slightly": {"_count": 1}, "worried": {"_count": 1}, "miserable": {"_count": 1}, "another": {"_count": 1}}, "all": {"_count": 5, "launched": {"_count": 1}, "wished": {"_count": 1}, "through": {"_count": 1}, "three": {"_count": 1}, "jumped": {"_count": 1}}, "emerged": {"_count": 7, "from": {"_count": 1}, "shinyfaced": {"_count": 1}, "sobbing": {"_count": 1}, "looking": {"_count": 1}, "panting": {"_count": 1}, "coughing": {"_count": 1}, "spluttering": {"_count": 1}}, "biting": {"_count": 2, "her": {"_count": 2}}, "led": {"_count": 2, "the": {"_count": 2}}, "put": {"_count": 11, "up": {"_count": 3}, "her": {"_count": 3}, "it": {"_count": 2}, "their": {"_count": 1}, "into": {"_count": 1}, "the": {"_count": 1}}, "nodded": {"_count": 8, "fervently": {"_count": 1}, "beaming": {"_count": 1}, "vigorously": {"_count": 2}, "apparently": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "that": {"_count": 15, "the": {"_count": 2}, "if": {"_count": 1}, "thing": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 3}, "what": {"_count": 2}, "she": {"_count": 1}, "it": {"_count": 1}, "they": {"_count": 1}, "youre": {"_count": 1}, "could": {"_count": 1}}, "wondered": {"_count": 1, "": {"_count": 1}}, "wonderingly": {"_count": 2, "": {"_count": 1}, "still": {"_count": 1}}, "giggled": {"_count": 1, "": {"_count": 1}}, "standing": {"_count": 6, "up": {"_count": 3}, "on": {"_count": 2}, "exactly": {"_count": 1}}, "quickly": {"_count": 16, "": {"_count": 8}, "and": {"_count": 1}, "hurrying": {"_count": 1}, "seizing": {"_count": 1}, "trying": {"_count": 2}, "looking": {"_count": 2}, "mending": {"_count": 1}}, "shrugged": {"_count": 3, "wearily": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "chose": {"_count": 3, "seats": {"_count": 1}, "to": {"_count": 1}, "a": {"_count": 1}}, "skeptically": {"_count": 4, "": {"_count": 3}, "rolling": {"_count": 1}}, "cautiously": {"_count": 2, "I": {"_count": 1}, "but": {"_count": 1}}, "slowly": {"_count": 7, "dropping": {"_count": 1}, "but": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}}, "coldly": {"_count": 6, "": {"_count": 5}, "holding": {"_count": 1}}, "waving": {"_count": 1, "her": {"_count": 1}}, "stammered": {"_count": 2, "": {"_count": 1}, "That": {"_count": 1}}, "eagerly": {"_count": 6, "": {"_count": 4}, "or": {"_count": 1}, "Harry": {"_count": 1}}, "folded": {"_count": 1, "the": {"_count": 1}}, "shrilly": {"_count": 7, "as": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "looking": {"_count": 1}}, "excitedly": {"_count": 7, "as": {"_count": 1}, "": {"_count": 5}, "running": {"_count": 1}}, "continued": {"_count": 9, "as": {"_count": 2}, "in": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 5}}, "waited": {"_count": 4, "outside": {"_count": 1}, "examining": {"_count": 1}, "a": {"_count": 1}, "until": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "darkly": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "have": {"_count": 3, "you": {"_count": 2}, "stopped": {"_count": 1}}, "interrupted": {"_count": 3, "": {"_count": 1}, "them": {"_count": 1}, "Borgin": {"_count": 1}}, "tearing": {"_count": 1, "bundles": {"_count": 1}}, "signed": {"_count": 1, "her": {"_count": 1}}, "slip": {"_count": 1, "quietly": {"_count": 1}}, "slide": {"_count": 1, "back": {"_count": 1}}, "threw": {"_count": 6, "the": {"_count": 2}, "her": {"_count": 1}, "him": {"_count": 1}, "themselves": {"_count": 1}, "herself": {"_count": 1}}, "explained": {"_count": 3, "anything": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}}, "speaking": {"_count": 3, "at": {"_count": 1}, "even": {"_count": 1}, "for": {"_count": 1}}, "used": {"_count": 1, "their": {"_count": 1}}, "exasperated": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "youre": {"_count": 3, "not": {"_count": 1}, "a": {"_count": 2}}, "throwing": {"_count": 3, "him": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}}, "shirting": {"_count": 1, "Scabbers": {"_count": 1}}, "ushered": {"_count": 1, "them": {"_count": 1}}, "matteroffactly": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 23, "dont": {"_count": 2}, "agree": {"_count": 1}, "must": {"_count": 1}, "had": {"_count": 3}, "need": {"_count": 2}, "was": {"_count": 2}, "think": {"_count": 2}, "havent": {"_count": 1}, "couldn": {"_count": 1}, "thought": {"_count": 1}, "know": {"_count": 2}, "can": {"_count": 1}, "wasnt": {"_count": 1}, "forget": {"_count": 1}, "cant": {"_count": 1}, "want": {"_count": 1}}, "brightly": {"_count": 7, "pulling": {"_count": 1}, "catching": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}, "glancing": {"_count": 1}, "as": {"_count": 1}}, "ladled": {"_count": 1, "large": {"_count": 1}}, "reached": {"_count": 2, "for": {"_count": 1}, "out": {"_count": 1}}, "we": {"_count": 7, "know": {"_count": 2}, "just": {"_count": 1}, "cant": {"_count": 1}, "wanted": {"_count": 1}, "havent": {"_count": 1}, "dont": {"_count": 1}}, "are": {"_count": 7, "you": {"_count": 2}, "able": {"_count": 1}, "upstairs": {"_count": 1}, "both": {"_count": 1}, "okay": {"_count": 1}, "in": {"_count": 1}}, "come": {"_count": 3, "out": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}}, "remained": {"_count": 2, "in": {"_count": 2}}, "hastily": {"_count": 8, "trying": {"_count": 1}, "dropped": {"_count": 2}, "rifled": {"_count": 1}, "": {"_count": 2}, "moving": {"_count": 1}, "pointing": {"_count": 1}}, "disgusted": {"_count": 1, "": {"_count": 1}}, "enthusiastically": {"_count": 2, "taking": {"_count": 1}, "and": {"_count": 1}}, "tapping": {"_count": 1, "it": {"_count": 1}}, "shoved": {"_count": 2, "her": {"_count": 1}, "him": {"_count": 1}}, "tell": {"_count": 1, "me": {"_count": 1}}, "made": {"_count": 12, "him": {"_count": 1}, "a": {"_count": 3}, "their": {"_count": 2}, "an": {"_count": 1}, "it": {"_count": 1}, "no": {"_count": 2}, "to": {"_count": 1}, "purple": {"_count": 1}}, "voiced": {"_count": 1, "the": {"_count": 1}}, "shocked": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "both": {"_count": 13, "jumped": {"_count": 1}, "laughed": {"_count": 1}, "gave": {"_count": 1}, "started": {"_count": 1}, "made": {"_count": 1}, "pushed": {"_count": 1}, "hurried": {"_count": 1}, "luck": {"_count": 1}, "roared": {"_count": 1}, "of": {"_count": 1}, "looked": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}}, "lay": {"_count": 1, "utterly": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}, "should": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "running": {"_count": 3, "toward": {"_count": 2}, "her": {"_count": 1}}, "or": {"_count": 7, "Dumbledore": {"_count": 1}, "Sirius": {"_count": 3}, "anyone": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}}, "Fred": {"_count": 10, "George": {"_count": 6}, "and": {"_count": 4}}, "not": {"_count": 2, "to": {"_count": 2}}, "PS": {"_count": 1, "": {"_count": 1}}, "tomorrow": {"_count": 1, "on": {"_count": 1}}, "earnestly": {"_count": 9, "": {"_count": 9}}, "composedly": {"_count": 2, "": {"_count": 2}}, "glowing": {"_count": 1, "": {"_count": 1}}, "slapping": {"_count": 1, "the": {"_count": 1}}, "ate": {"_count": 2, "their": {"_count": 1}, "breakfast": {"_count": 1}}, "cooed": {"_count": 1, "through": {"_count": 1}}, "set": {"_count": 9, "off": {"_count": 8}, "about": {"_count": 1}}, "checked": {"_count": 2, "on": {"_count": 1}, "her": {"_count": 1}}, "interestedly": {"_count": 1, "standing": {"_count": 1}}, "shrewdly": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "pressed": {"_count": 3, "on": {"_count": 2}, "her": {"_count": 1}}, "Black": {"_count": 1, "wouldnt": {"_count": 1}}, "angrily": {"_count": 12, "": {"_count": 9}, "at": {"_count": 1}, "stopping": {"_count": 1}, "it": {"_count": 1}}, "approached": {"_count": 3, "Professor": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "taking": {"_count": 6, "the": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 2}, "deep": {"_count": 1}, "it": {"_count": 1}}, "pointing": {"_count": 6, "at": {"_count": 2}, "into": {"_count": 1}, "her": {"_count": 3}}, "checking": {"_count": 3, "her": {"_count": 2}, "that": {"_count": 1}}, "heaved": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "watching": {"_count": 4, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "prodded": {"_count": 1, "Ron": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "softly": {"_count": 1, "weve": {"_count": 1}}, "stared": {"_count": 10, "at": {"_count": 9}, "down": {"_count": 1}}, "entered": {"_count": 8, "the": {"_count": 5}, "after": {"_count": 1}, "": {"_count": 1}, "theirs": {"_count": 1}}, "shortly": {"_count": 2, "": {"_count": 2}}, "peering": {"_count": 3, "down": {"_count": 1}, "over": {"_count": 1}, "through": {"_count": 1}}, "climbed": {"_count": 7, "the": {"_count": 2}, "into": {"_count": 1}, "in": {"_count": 1}, "over": {"_count": 1}, "down": {"_count": 1}, "as": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "descended": {"_count": 1, "Professor": {"_count": 1}}, "laughed": {"_count": 9, "": {"_count": 5}, "and": {"_count": 1}, "unkindly": {"_count": 1}, "derisively": {"_count": 1}, "pain": {"_count": 1}}, "pushing": {"_count": 1, "a": {"_count": 1}}, "calmly": {"_count": 4, "": {"_count": 2}, "I": {"_count": 1}, "taking": {"_count": 1}}, "if": {"_count": 5, "Harrys": {"_count": 1}, "we": {"_count": 2}, "you": {"_count": 2}}, "airily": {"_count": 2, "pouring": {"_count": 1}, "pulling": {"_count": 1}}, "coolly": {"_count": 6, "": {"_count": 5}, "though": {"_count": 1}}, "slammed": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "werent": {"_count": 1, "speaking": {"_count": 1}}, "practiced": {"_count": 1, "on": {"_count": 1}}, "proceeded": {"_count": 2, "upstairs": {"_count": 1}, "up": {"_count": 1}}, "firmly": {"_count": 11, "": {"_count": 5}, "Just": {"_count": 1}, "Im": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "late": {"_count": 1}, "until": {"_count": 1}}, "unsteadily": {"_count": 1, "outside": {"_count": 1}}, "putting": {"_count": 2, "the": {"_count": 1}, "down": {"_count": 1}}, "please": {"_count": 1, "I": {"_count": 1}}, "joining": {"_count": 2, "them": {"_count": 2}}, "breathlessly": {"_count": 12, "": {"_count": 8}, "plunging": {"_count": 1}, "skirting": {"_count": 1}, "please": {"_count": 1}, "pulling": {"_count": 1}}, "vaguely": {"_count": 7, "but": {"_count": 1}, "now": {"_count": 2}, "sitting": {"_count": 1}, "": {"_count": 1}, "Harrys": {"_count": 1}, "she": {"_count": 1}}, "glowed": {"_count": 1, "": {"_count": 1}}, "approvingly": {"_count": 1, "": {"_count": 1}}, "hurried": {"_count": 9, "over": {"_count": 3}, "up": {"_count": 1}, "out": {"_count": 2}, "on": {"_count": 2}, "back": {"_count": 1}}, "dangling": {"_count": 1, "Scabbers": {"_count": 1}}, "her": {"_count": 25, "voice": {"_count": 6}, "eyes": {"_count": 6}, "ear": {"_count": 2}, "hair": {"_count": 1}, "smile": {"_count": 1}, "jaw": {"_count": 1}, "eyebrows": {"_count": 1}, "wand": {"_count": 1}, "hand": {"_count": 1}, "cheeks": {"_count": 1}, "arm": {"_count": 1}, "bushy": {"_count": 1}, "fingers": {"_count": 1}, "tone": {"_count": 1}}, "Im": {"_count": 5, "sorry": {"_count": 4}, "up": {"_count": 1}}, "hesitated": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "turning": {"_count": 3, "to": {"_count": 2}, "away": {"_count": 1}}, "Lavender": {"_count": 1, "said": {"_count": 1}}, "Hermione": {"_count": 2, "assumed": {"_count": 1}, "put": {"_count": 1}}, "assumed": {"_count": 1, "an": {"_count": 1}}, "stamped": {"_count": 1, "on": {"_count": 1}}, "dropped": {"_count": 5, "her": {"_count": 3}, "into": {"_count": 1}, "Harrys": {"_count": 1}}, "they": {"_count": 2, "seized": {"_count": 1}, "had": {"_count": 1}}, "shuddered": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "crossly": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "seemingly": {"_count": 1, "unable": {"_count": 1}}, "whose": {"_count": 7, "hand": {"_count": 2}, "immense": {"_count": 1}, "face": {"_count": 2}, "bushy": {"_count": 1}, "eyes": {"_count": 1}}, "pensively": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 4, "Ron": {"_count": 1}, "about": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "appeared": {"_count": 1, "at": {"_count": 1}}, "tapped": {"_count": 2, "them": {"_count": 1}, "on": {"_count": 1}}, "hesitantly": {"_count": 2, "": {"_count": 2}}, "because": {"_count": 1, "he": {"_count": 1}}, "peered": {"_count": 2, "around": {"_count": 1}, "through": {"_count": 1}}, "insisted": {"_count": 3, "she": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "hissed": {"_count": 3, "": {"_count": 3}}, "its": {"_count": 4, "Christmas": {"_count": 1}, "the": {"_count": 2}, "five": {"_count": 1}}, "bit": {"_count": 3, "her": {"_count": 3}}, "shouting": {"_count": 1, "through": {"_count": 1}}, "watched": {"_count": 7, "Harry": {"_count": 1}, "him": {"_count": 2}, "Katie": {"_count": 1}, "them": {"_count": 1}, "Grawp": {"_count": 1}, "from": {"_count": 1}}, "exchanging": {"_count": 2, "a": {"_count": 1}, "skeptical": {"_count": 1}}, "aghast": {"_count": 1, "": {"_count": 1}}, "whip": {"_count": 1, "around": {"_count": 1}}, "could": {"_count": 21, "answer": {"_count": 6}, "stop": {"_count": 1}, "hear": {"_count": 1}, "research": {"_count": 1}, "ask": {"_count": 1}, "not": {"_count": 1}, "say": {"_count": 1}, "speak": {"_count": 1}, "intervene": {"_count": 1}, "see": {"_count": 1}, "start": {"_count": 1}, "retort": {"_count": 1}, "have": {"_count": 1}, "carry": {"_count": 1}, "get": {"_count": 1}, "still": {"_count": 1}}, "strode": {"_count": 2, "out": {"_count": 1}, "over": {"_count": 1}}, "too": {"_count": 7, "": {"_count": 3}, "had": {"_count": 1}, "lacked": {"_count": 1}, "was": {"_count": 2}}, "haughtily": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "cantve": {"_count": 1, "been": {"_count": 1}}, "rushing": {"_count": 1, "past": {"_count": 1}}, "brought": {"_count": 2, "me": {"_count": 1}, "up": {"_count": 1}}, "moving": {"_count": 4, "a": {"_count": 1}, "along": {"_count": 1}, "his": {"_count": 1}, "across": {"_count": 1}}, "incredibly": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 19, "sounding": {"_count": 2}, "": {"_count": 1}, "disbelief": {"_count": 1}, "blushing": {"_count": 1}, "striding": {"_count": 1}, "looking": {"_count": 1}, "sobbing": {"_count": 1}, "moving": {"_count": 1}, "scanning": {"_count": 1}, "I": {"_count": 1}, "putting": {"_count": 1}, "Obviously": {"_count": 1}, "returning": {"_count": 1}, "weighing": {"_count": 1}, "turning": {"_count": 1}, "flicking": {"_count": 1}, "performing": {"_count": 1}, "talking": {"_count": 1}}, "burst": {"_count": 5, "into": {"_count": 2}, "out": {"_count": 2}, "inside": {"_count": 1}}, "has": {"_count": 1, "an": {"_count": 1}}, "We": {"_count": 1, "lost": {"_count": 1}}, "wiping": {"_count": 2, "her": {"_count": 2}}, "flung": {"_count": 3, "her": {"_count": 2}, "herself": {"_count": 1}}, "drew": {"_count": 5, "away": {"_count": 1}, "herself": {"_count": 1}, "closer": {"_count": 1}, "their": {"_count": 1}, "out": {"_count": 1}}, "got": {"_count": 8, "there": {"_count": 1}, "up": {"_count": 4}, "loads": {"_count": 1}, "together": {"_count": 1}, "to": {"_count": 1}}, "pulled": {"_count": 8, "out": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "Crookshanks": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 1}}, "gone": {"_count": 2, "": {"_count": 2}}, "hadnt": {"_count": 2, "entered": {"_count": 1}, "discussed": {"_count": 1}}, "waking": {"_count": 1, "with": {"_count": 1}}, "why": {"_count": 3, "didnt": {"_count": 1}, "are": {"_count": 2}}, "wailed": {"_count": 1, "": {"_count": 1}}, "brushing": {"_count": 1, "her": {"_count": 1}}, "snorted": {"_count": 2, "": {"_count": 2}}, "loudly": {"_count": 2, "": {"_count": 2}}, "removed": {"_count": 1, "from": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "started": {"_count": 4, "shifting": {"_count": 1}, "to": {"_count": 2}, "going": {"_count": 1}}, "still": {"_count": 16, "looking": {"_count": 3}, "thought": {"_count": 1}, "giggling": {"_count": 1}, "beaming": {"_count": 1}, "hasnt": {"_count": 1}, "with": {"_count": 1}, "hadnt": {"_count": 1}, "staring": {"_count": 1}, "concentrating": {"_count": 1}, "refused": {"_count": 1}, "wiping": {"_count": 1}, "watching": {"_count": 1}, "holding": {"_count": 1}, "clinging": {"_count": 1}}, "irritated": {"_count": 1, "the": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "down": {"_count": 3, "": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "nudged": {"_count": 4, "him": {"_count": 3}, "Harry": {"_count": 1}}, "lost": {"_count": 1, "in": {"_count": 1}}, "getting": {"_count": 5, "to": {"_count": 3}, "a": {"_count": 1}, "the": {"_count": 1}}, "returned": {"_count": 8, "a": {"_count": 1}, "to": {"_count": 4}, "from": {"_count": 2}, "in": {"_count": 1}}, "poked": {"_count": 1, "her": {"_count": 1}}, "carried": {"_count": 1, "the": {"_count": 1}}, "whipped": {"_count": 3, "around": {"_count": 3}}, "picked": {"_count": 1, "up": {"_count": 1}}, "breathed": {"_count": 4, "": {"_count": 3}, "a": {"_count": 1}}, "swayed": {"_count": 1, "on": {"_count": 1}}, "moaned": {"_count": 7, "": {"_count": 2}, "darting": {"_count": 1}, "checking": {"_count": 1}, "pulling": {"_count": 1}, "grabbing": {"_count": 1}, "with": {"_count": 1}}, "panted": {"_count": 3, "": {"_count": 2}, "five": {"_count": 1}}, "shriek": {"_count": 2, "with": {"_count": 1}, "something": {"_count": 1}}, "slithered": {"_count": 1, "down": {"_count": 1}}, "paused": {"_count": 1, "gasping": {"_count": 1}}, "dashed": {"_count": 2, "across": {"_count": 1}, "over": {"_count": 1}}, "whimpered": {"_count": 3, "": {"_count": 1}, "staring": {"_count": 1}, "as": {"_count": 1}}, "gasping": {"_count": 1, "for": {"_count": 1}}, "cowering": {"_count": 1, "next": {"_count": 1}}, "calm": {"_count": 1, "down": {"_count": 1}}, "shrieked": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "might": {"_count": 5, "try": {"_count": 1}, "look": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 2}}, "for": {"_count": 8, "support": {"_count": 2}, "a": {"_count": 1}, "another": {"_count": 1}, "the": {"_count": 1}, "assistance": {"_count": 1}, "help": {"_count": 2}}, "spoke": {"_count": 6, "in": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}, "sharply": {"_count": 1}, "and": {"_count": 1}, "but": {"_count": 1}}, "worked": {"_count": 2, "out": {"_count": 2}}, "cut": {"_count": 1, "him": {"_count": 1}}, "fell": {"_count": 2, "silent": {"_count": 2}}, "stop": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "think": {"_count": 1, "of": {"_count": 1}}, "help": {"_count": 1, "me": {"_count": 1}}, "collapse": {"_count": 1, "next": {"_count": 1}}, "together": {"_count": 15, "": {"_count": 7}, "very": {"_count": 1}, "staring": {"_count": 1}, "turning": {"_count": 1}, "and": {"_count": 1}, "looking": {"_count": 2}, "both": {"_count": 1}, "automatically": {"_count": 1}}, "alone": {"_count": 5, "said": {"_count": 1}, "Dumbledore": {"_count": 1}, "": {"_count": 2}, "together": {"_count": 1}}, "is": {"_count": 3, "more": {"_count": 1}, "there": {"_count": 1}, "that": {"_count": 1}}, "arrived": {"_count": 4, "beside": {"_count": 1}, "at": {"_count": 1}, "there": {"_count": 1}, "in": {"_count": 1}}, "walking": {"_count": 3, "out": {"_count": 1}, "any": {"_count": 1}, "on": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "tightened": {"_count": 1, "their": {"_count": 1}}, "listened": {"_count": 3, "closely": {"_count": 2}, "to": {"_count": 1}}, "chasing": {"_count": 1, "after": {"_count": 1}}, "fiercely": {"_count": 2, "": {"_count": 2}}, "quietly": {"_count": 19, "": {"_count": 14}, "please": {"_count": 1}, "when": {"_count": 1}, "after": {"_count": 1}, "shaking": {"_count": 1}, "that": {"_count": 1}}, "tensely": {"_count": 2, "looking": {"_count": 1}, "": {"_count": 1}}, "called": {"_count": 5, "to": {"_count": 1}, "commandingly": {"_count": 1}, "from": {"_count": 1}, "half": {"_count": 1}, "over": {"_count": 1}}, "slid": {"_count": 3, "off": {"_count": 2}, "out": {"_count": 1}}, "whatll": {"_count": 1, "happen": {"_count": 1}}, "slipped": {"_count": 2, "back": {"_count": 1}, "and": {"_count": 1}}, "crept": {"_count": 1, "back": {"_count": 1}}, "tucking": {"_count": 1, "the": {"_count": 1}}, "thought": {"_count": 1, "it": {"_count": 1}}, "felt": {"_count": 3, "like": {"_count": 1}, "she": {"_count": 1}, "that": {"_count": 1}}, "giving": {"_count": 4, "Ron": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}}, "will": {"_count": 5, "find": {"_count": 1}, "you": {"_count": 3}, "explain": {"_count": 1}}, "severely": {"_count": 3, "": {"_count": 3}}, "triumphantly": {"_count": 1, "": {"_count": 1}}, "goodbye": {"_count": 1, "then": {"_count": 1}}, "knew": {"_count": 4, "otherwise": {"_count": 1}, "Hagrid": {"_count": 1}, "only": {"_count": 1}, "how": {"_count": 1}}, "Hagrid": {"_count": 2, "and": {"_count": 2}}, "from": {"_count": 11, "the": {"_count": 4}, "glowering": {"_count": 1}, "behind": {"_count": 2}, "halfway": {"_count": 1}, "a": {"_count": 1}, "out": {"_count": 1}, "either": {"_count": 1}}, "pointedly": {"_count": 1, "": {"_count": 1}}, "Hes": {"_count": 1, "been": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}, "beadily": {"_count": 1, "": {"_count": 1}}, "kindly": {"_count": 4, "taking": {"_count": 1}, "hurrying": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}}, "spun": {"_count": 1, "around": {"_count": 1}}, "secondclass": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "contemptuous": {"_count": 1}}, "defiantly": {"_count": 3, "": {"_count": 1}, "she": {"_count": 1}, "swinging": {"_count": 1}}, "repeated": {"_count": 5, "and": {"_count": 1}, "frowning": {"_count": 1}, "": {"_count": 2}, "checking": {"_count": 1}}, "fervently": {"_count": 2, "": {"_count": 1}, "shivering": {"_count": 1}}, "indignantly": {"_count": 5, "": {"_count": 5}}, "frowning": {"_count": 9, "": {"_count": 3}, "at": {"_count": 4}, "I": {"_count": 1}, "youre": {"_count": 1}}, "after": {"_count": 6, "a": {"_count": 3}, "Ritas": {"_count": 1}, "that": {"_count": 1}, "lunch": {"_count": 1}}, "shakily": {"_count": 4, "pointing": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 2}}, "gasp": {"_count": 2, "horrified": {"_count": 1}, "and": {"_count": 1}}, "furiously": {"_count": 6, "": {"_count": 4}, "staring": {"_count": 1}, "striding": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "through": {"_count": 7, "the": {"_count": 2}, "her": {"_count": 2}, "gritted": {"_count": 1}, "Bellatrixs": {"_count": 1}, "": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "before": {"_count": 6, "anyone": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}, "catching": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "look": {"_count": 3, "any": {"_count": 1}, "on": {"_count": 1}, "even": {"_count": 1}}, "reasonably": {"_count": 1, "": {"_count": 1}}, "sniffily": {"_count": 1, "and": {"_count": 1}}, "raising": {"_count": 3, "her": {"_count": 3}}, "shrugging": {"_count": 1, "or": {"_count": 1}}, "growing": {"_count": 1, "tired": {"_count": 1}}, "testily": {"_count": 3, "over": {"_count": 1}, "": {"_count": 2}}, "reproachfully": {"_count": 1, "and": {"_count": 1}}, "bundled": {"_count": 1, "up": {"_count": 1}}, "it": {"_count": 7, "burst": {"_count": 1}, "was": {"_count": 1}, "doesnt": {"_count": 1}, "made": {"_count": 1}, "fits": {"_count": 1}, "can": {"_count": 1}, "makes": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "loaded": {"_count": 1, "their": {"_count": 1}}, "paid": {"_count": 1, "no": {"_count": 1}}, "breathing": {"_count": 1, "hard": {"_count": 1}}, "well": {"_count": 2, "be": {"_count": 1}, "then": {"_count": 1}}, "cast": {"_count": 3, "the": {"_count": 1}, "an": {"_count": 1}, "him": {"_count": 1}}, "examined": {"_count": 1, "their": {"_count": 1}}, "adding": {"_count": 1, "liberal": {"_count": 1}}, "pick": {"_count": 1, "up": {"_count": 1}}, "thickly": {"_count": 1, "": {"_count": 1}}, "teaching": {"_count": 1, "Neville": {"_count": 1}}, "curtly": {"_count": 2, "pointing": {"_count": 1}, "I": {"_count": 1}}, "hotly": {"_count": 5, "": {"_count": 5}}, "open": {"_count": 1, "your": {"_count": 1}}, "happily": {"_count": 7, "": {"_count": 4}, "brandishing": {"_count": 1}, "as": {"_count": 1}, "dyou": {"_count": 1}}, "heeded": {"_count": 1, "him": {"_count": 1}}, "uncertainly": {"_count": 1, "as": {"_count": 1}}, "more": {"_count": 4, "vociferous": {"_count": 1}, "forcefully": {"_count": 1}, "urgently": {"_count": 1}, "loudly": {"_count": 1}}, "stopped": {"_count": 6, "talking": {"_count": 1}, "looking": {"_count": 1}, "bickering": {"_count": 1}, "dead": {"_count": 3}}, "hes": {"_count": 4, "one": {"_count": 1}, "earned": {"_count": 1}, "got": {"_count": 1}, "comingl": {"_count": 1}}, "defensively": {"_count": 3, "": {"_count": 3}}, "budge": {"_count": 1, "up": {"_count": 1}}, "tartly": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "warningly": {"_count": 1, "Im": {"_count": 1}}, "also": {"_count": 3, "chortling": {"_count": 1}, "reading": {"_count": 1}, "on": {"_count": 1}}, "goggled": {"_count": 1, "at": {"_count": 1}}, "shooting": {"_count": 1, "a": {"_count": 1}}, "unearthed": {"_count": 1, "a": {"_count": 1}}, "decided": {"_count": 1, "it": {"_count": 1}}, "beyond": {"_count": 1, "them": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 2}}, "exactly": {"_count": 3, "what": {"_count": 3}}, "accepted": {"_count": 1, "his": {"_count": 1}}, "awkwardly": {"_count": 1, "": {"_count": 1}}, "patiently": {"_count": 3, "its": {"_count": 1}, "grabbing": {"_count": 1}, "": {"_count": 1}}, "sternly": {"_count": 3, "": {"_count": 2}, "after": {"_count": 1}}, "whimpering": {"_count": 1, "in": {"_count": 1}}, "then": {"_count": 4, "said": {"_count": 2}, "did": {"_count": 1}, "at": {"_count": 1}}, "spent": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 2}, "fruitless": {"_count": 1}}, "often": {"_count": 1, "complained": {"_count": 1}}, "found": {"_count": 4, "the": {"_count": 1}, "what": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}}, "talking": {"_count": 3, "about": {"_count": 2}, "firmly": {"_count": 1}}, "grumpily": {"_count": 1, "as": {"_count": 1}}, "without": {"_count": 2, "looking": {"_count": 2}}, "lapsed": {"_count": 1, "into": {"_count": 1}}, "smiling": {"_count": 2, "back": {"_count": 1}, "slightly": {"_count": 1}}, "winked": {"_count": 1, "and": {"_count": 1}}, "locating": {"_count": 1, "her": {"_count": 1}}, "whispering": {"_count": 1, "nonstop": {"_count": 1}}, "irritably": {"_count": 8, "as": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 2}, "turning": {"_count": 1}, "overhearing": {"_count": 1}}, "Ill": {"_count": 3, "see": {"_count": 2}, "be": {"_count": 1}}, "refused": {"_count": 3, "pointblank": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}}, "using": {"_count": 1, "the": {"_count": 1}}, "delightedly": {"_count": 1, "": {"_count": 1}}, "desperately": {"_count": 10, "": {"_count": 7}, "opening": {"_count": 1}, "her": {"_count": 1}, "looking": {"_count": 1}}, "where": {"_count": 2, "are": {"_count": 1}, "else": {"_count": 1}}, "frowned": {"_count": 5, "at": {"_count": 3}, "": {"_count": 1}, "from": {"_count": 1}}, "blankly": {"_count": 1, "": {"_count": 1}}, "leading": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 7, "she": {"_count": 5}, "any": {"_count": 1}, "it": {"_count": 1}}, "Ive": {"_count": 4, "got": {"_count": 1}, "told": {"_count": 1}, "been": {"_count": 2}}, "loftily": {"_count": 2, "": {"_count": 2}}, "Nevilles": {"_count": 1, "right": {"_count": 1}}, "merely": {"_count": 3, "frowned": {"_count": 1}, "shrugged": {"_count": 1}, "strode": {"_count": 1}}, "scathingly": {"_count": 4, "and": {"_count": 1}, "before": {"_count": 1}, "": {"_count": 2}}, "looks": {"_count": 2, "of": {"_count": 1}, "as": {"_count": 1}}, "pass": {"_count": 1, "with": {"_count": 1}}, "draw": {"_count": 1, "nearer": {"_count": 1}}, "fanning": {"_count": 1, "herself": {"_count": 1}}, "coming": {"_count": 3, "with": {"_count": 1}, "out": {"_count": 2}}, "saying": {"_count": 1, "good": {"_count": 1}}, "having": {"_count": 2, "a": {"_count": 1}, "dashed": {"_count": 1}}, "added": {"_count": 3, "hastily": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}}, "noticed": {"_count": 1, "his": {"_count": 1}}, "sipping": {"_count": 1, "her": {"_count": 1}}, "sarcastically": {"_count": 1, "": {"_count": 1}}, "cmon": {"_count": 1, "Harry": {"_count": 1}}, "shell": {"_count": 1, "dig": {"_count": 1}}, "drawing": {"_count": 1, "out": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "shaking": {"_count": 5, "her": {"_count": 3}, "their": {"_count": 1}, "as": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "ignoring": {"_count": 3, "Ron": {"_count": 3}}, "sending": {"_count": 1, "her": {"_count": 1}}, "squashed": {"_count": 1, "this": {"_count": 1}}, "seriously": {"_count": 3, "": {"_count": 2}, "youre": {"_count": 1}}, "searched": {"_count": 1, "through": {"_count": 1}}, "off": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "an": {"_count": 4, "enormous": {"_count": 1}, "edge": {"_count": 2}, "hour": {"_count": 1}}, "free": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}, "Krum": {"_count": 1, "Cedric": {"_count": 1}}, "brushed": {"_count": 1, "away": {"_count": 1}}, "waspishly": {"_count": 2, "": {"_count": 2}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "blushed": {"_count": 2, "scarlet": {"_count": 1}, "": {"_count": 1}}, "shot": {"_count": 4, "back": {"_count": 1}, "them": {"_count": 1}, "him": {"_count": 2}}, "stubbornly": {"_count": 3, "": {"_count": 3}}, "broke": {"_count": 2, "in": {"_count": 1}, "apart": {"_count": 1}}, "sniping": {"_count": 1, "at": {"_count": 1}}, "snarling": {"_count": 1, "at": {"_count": 1}}, "tears": {"_count": 2, "starting": {"_count": 1}, "in": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 2}, "to": {"_count": 1}}, "rubbing": {"_count": 1, "her": {"_count": 1}}, "flushed": {"_count": 1, "pink": {"_count": 1}}, "helped": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 4, "a": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}}, "do": {"_count": 2, "not": {"_count": 1}, "you": {"_count": 1}}, "managed": {"_count": 4, "to": {"_count": 4}}, "carrying": {"_count": 1, "her": {"_count": 1}}, "applauding": {"_count": 1, "Fleur": {"_count": 1}}, "grouped": {"_count": 1, "around": {"_count": 1}}, "Bill": {"_count": 1, "Mrs": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "scowled": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "talked": {"_count": 1, "more": {"_count": 1}}, "seeing": {"_count": 1, "him": {"_count": 1}}, "beaming": {"_count": 1, "": {"_count": 1}}, "placed": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "struggled": {"_count": 1, "out": {"_count": 1}}, "busy": {"_count": 1, "with": {"_count": 1}}, "again": {"_count": 9, "And": {"_count": 1}, "": {"_count": 3}, "so": {"_count": 1}, "because": {"_count": 1}, "indeed": {"_count": 1}, "a": {"_count": 1}, "but": {"_count": 1}}, "glanced": {"_count": 5, "at": {"_count": 2}, "nervously": {"_count": 1}, "over": {"_count": 1}, "around": {"_count": 1}}, "winced": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "reprovingly": {"_count": 1, "": {"_count": 1}}, "heatedly": {"_count": 1, "": {"_count": 1}}, "everything": {"_count": 4, "you": {"_count": 1}, "youve": {"_count": 1}, "that": {"_count": 2}}, "bade": {"_count": 3, "them": {"_count": 1}, "goodbye": {"_count": 1}, "him": {"_count": 1}}, "Ginny": {"_count": 7, "Fred": {"_count": 1}, "and": {"_count": 6}}, "tentatively": {"_count": 9, "": {"_count": 5}, "and": {"_count": 1}, "but": {"_count": 1}, "whether": {"_count": 1}, "is": {"_count": 1}}, "pleadingly": {"_count": 1, "I": {"_count": 1}}, "hopefully": {"_count": 2, "maybe": {"_count": 1}, "as": {"_count": 1}}, "wisely": {"_count": 1, "": {"_count": 1}}, "simply": {"_count": 2, "": {"_count": 1}, "stared": {"_count": 1}}, "blushing": {"_count": 1, "harder": {"_count": 1}}, "crossed": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "corrected": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "distractedly": {"_count": 2, "looking": {"_count": 1}, "": {"_count": 1}}, "dragging": {"_count": 1, "his": {"_count": 1}}, "viciously": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "relieving": {"_count": 1, "Ginny": {"_count": 1}}, "scanned": {"_count": 3, "the": {"_count": 3}}, "uneasily": {"_count": 1, "": {"_count": 1}}, "ominously": {"_count": 1, "": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "whom": {"_count": 1, "Harry": {"_count": 1}}, "sighed": {"_count": 4, "again": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "eyeing": {"_count": 1, "Fred": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "consolingly": {"_count": 2, "sitting": {"_count": 1}, "as": {"_count": 1}}, "says": {"_count": 1, "she": {"_count": 1}}, "bluntly": {"_count": 1, "": {"_count": 1}}, "immediately": {"_count": 2, "raised": {"_count": 1}, "let": {"_count": 1}}, "wearily": {"_count": 3, "": {"_count": 3}}, "theyre": {"_count": 1, "fine": {"_count": 1}}, "yawned": {"_count": 1, "widely": {"_count": 1}}, "promptly": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "pushed": {"_count": 3, "a": {"_count": 1}, "it": {"_count": 2}}, "concluded": {"_count": 1, "laying": {"_count": 1}}, "bent": {"_count": 2, "closer": {"_count": 1}, "double": {"_count": 1}}, "casting": {"_count": 1, "a": {"_count": 1}}, "considered": {"_count": 1, "this": {"_count": 1}}, "wandered": {"_count": 1, "over": {"_count": 1}}, "clapped": {"_count": 3, "a": {"_count": 1}, "her": {"_count": 2}}, "accusingly": {"_count": 1, "": {"_count": 1}}, "jumping": {"_count": 4, "up": {"_count": 3}, "down": {"_count": 1}}, "doesnt": {"_count": 1, "P": {"_count": 1}}, "groaned": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "elaborated": {"_count": 1, "on": {"_count": 1}}, "smirking": {"_count": 1, "slightly": {"_count": 1}}, "gently": {"_count": 2, "but": {"_count": 1}, "on": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "slightly": {"_count": 2, "nervously": {"_count": 1}, "impatiently": {"_count": 1}}, "retreated": {"_count": 3, "to": {"_count": 1}, "as": {"_count": 1}, "down": {"_count": 1}}, "soothingly": {"_count": 2, "but": {"_count": 1}, "it": {"_count": 1}}, "some": {"_count": 2, "looking": {"_count": 1}, "twenty": {"_count": 1}}, "intervening": {"_count": 1, "swiftly": {"_count": 1}}, "under": {"_count": 3, "her": {"_count": 2}, "his": {"_count": 1}}, "along": {"_count": 2, "a": {"_count": 1}, "with": {"_count": 1}}, "itll": {"_count": 1, "make": {"_count": 1}}, "even": {"_count": 3, "put": {"_count": 1}, "reported": {"_count": 1}, "escorted": {"_count": 1}}, "already": {"_count": 1, "standing": {"_count": 1}}, "his": {"_count": 3, "eyebrows": {"_count": 1}, "mouth": {"_count": 1}, "voice": {"_count": 1}}, "disparagingly": {"_count": 1, "": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "finally": {"_count": 2, "had": {"_count": 1}, "hiccuping": {"_count": 1}}, "this": {"_count": 2, "whole": {"_count": 1}, "time": {"_count": 1}}, "seizing": {"_count": 1, "Rons": {"_count": 1}}, "twisting": {"_count": 2, "her": {"_count": 2}}, "staring": {"_count": 2, "at": {"_count": 1}, "after": {"_count": 1}}, "carefully": {"_count": 1, "marked": {"_count": 1}}, "unperturbed": {"_count": 1, "": {"_count": 1}}, "bossily": {"_count": 1, "kneeling": {"_count": 1}}, "stung": {"_count": 1, "": {"_count": 1}}, "soon": {"_count": 1, "devised": {"_count": 1}}, "laugh": {"_count": 1, "and": {"_count": 1}}, "heartily": {"_count": 1, "": {"_count": 1}}, "apologetically": {"_count": 1, "": {"_count": 1}}, "interjected": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "while": {"_count": 5, "Ron": {"_count": 1}, "at": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}}, "urgently": {"_count": 2, "dropping": {"_count": 1}, "": {"_count": 1}}, "determinedly": {"_count": 1, "": {"_count": 1}}, "plowed": {"_count": 1, "her": {"_count": 1}}, "headed": {"_count": 1, "down": {"_count": 1}}, "Pansy": {"_count": 1, "had": {"_count": 1}}, "actually": {"_count": 3, "shaking": {"_count": 1}, "stepped": {"_count": 1}, "stamping": {"_count": 1}}, "half": {"_count": 3, "an": {"_count": 1}, "carried": {"_count": 1}, "stern": {"_count": 1}}, "pulling": {"_count": 6, "out": {"_count": 1}, "open": {"_count": 1}, "Rons": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}}, "absently": {"_count": 2, "still": {"_count": 1}, "": {"_count": 1}}, "nastily": {"_count": 2, "picking": {"_count": 1}, "": {"_count": 1}}, "distantly": {"_count": 1, "buried": {"_count": 1}}, "hitched": {"_count": 1, "it": {"_count": 1}}, "writing": {"_count": 1, "steadily": {"_count": 1}}, "yawning": {"_count": 1, "widely": {"_count": 1}}, "although": {"_count": 1, "if": {"_count": 1}}, "laying": {"_count": 1, "the": {"_count": 1}}, "fairly": {"_count": 1, "": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "horrified": {"_count": 1, "": {"_count": 1}}, "forward": {"_count": 2, "": {"_count": 2}}, "cover": {"_count": 1, "her": {"_count": 1}}, "admitted": {"_count": 1, "": {"_count": 1}}, "sympathetically": {"_count": 2, "": {"_count": 2}}, "distracted": {"_count": 1, "from": {"_count": 1}}, "encouragingly": {"_count": 1, "": {"_count": 1}}, "bitterly": {"_count": 3, "": {"_count": 2}, "flopping": {"_count": 1}}, "ripped": {"_count": 1, "open": {"_count": 1}}, "swinging": {"_count": 1, "her": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "mastered": {"_count": 1, "the": {"_count": 1}}, "GGranger": {"_count": 1, "like": {"_count": 1}}, "indifferently": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "Little": {"_count": 1, "Miss": {"_count": 1}}, "sweetly": {"_count": 2, "thats": {"_count": 1}, "": {"_count": 1}}, "pleasantly": {"_count": 1, "": {"_count": 1}}, "serenely": {"_count": 1, "fishing": {"_count": 1}}, "absentmindedly": {"_count": 1, "once": {"_count": 1}}, "gleefully": {"_count": 1, "as": {"_count": 1}}, "closing": {"_count": 1, "the": {"_count": 1}}, "departed": {"_count": 2, "for": {"_count": 2}}, "persisted": {"_count": 2, "in": {"_count": 1}, "why": {"_count": 1}}, "months": {"_count": 1, "before": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "demanded": {"_count": 3, "as": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "straightening": {"_count": 1, "up": {"_count": 1}}, "any": {"_count": 1, "longer": {"_count": 1}}, "weakly": {"_count": 2, "": {"_count": 1}, "pointing": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "allowing": {"_count": 1, "her": {"_count": 1}}, "edged": {"_count": 1, "back": {"_count": 1}}, "perplexed": {"_count": 1, "": {"_count": 1}}, "curiously": {"_count": 1, "": {"_count": 1}}, "cause": {"_count": 1, "hes": {"_count": 1}}, "flopping": {"_count": 1, "down": {"_count": 1}}, "inquired": {"_count": 1, "": {"_count": 1}}, "squeal": {"_count": 1, "terrified": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "clung": {"_count": 1, "to": {"_count": 1}}, "stretching": {"_count": 2, "out": {"_count": 2}}, "clambered": {"_count": 1, "in": {"_count": 1}}, "snappishly": {"_count": 1, "": {"_count": 1}}, "Parvati": {"_count": 1, "and": {"_count": 1}}, "forced": {"_count": 1, "their": {"_count": 1}}, "Harrys": {"_count": 1, "seen": {"_count": 1}}, "Sirius": {"_count": 2, "is": {"_count": 2}}, "Okay": {"_count": 1, "if": {"_count": 1}}, "tugging": {"_count": 1, "at": {"_count": 1}}, "pinioned": {"_count": 1, "against": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "into": {"_count": 4, "her": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "holding": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "up": {"_count": 1}}, "sniffing": {"_count": 1, "loudly": {"_count": 1}}, "keep": {"_count": 1, "your": {"_count": 1}}, "real": {"_count": 1, "tears": {"_count": 1}}, "gripped": {"_count": 2, "his": {"_count": 1}, "each": {"_count": 1}}, "gripping": {"_count": 1, "Harrys": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}, "quaking": {"_count": 1, "so": {"_count": 1}}, "keen": {"_count": 1, "to": {"_count": 1}}, "hopelessly": {"_count": 1, "dragging": {"_count": 1}}, "Neville": {"_count": 2, "and": {"_count": 1}, "Ginny": {"_count": 1}}, "scooped": {"_count": 1, "them": {"_count": 1}}, "decisively": {"_count": 1, "": {"_count": 1}}, "marking": {"_count": 1, "the": {"_count": 1}}, "squinting": {"_count": 1, "to": {"_count": 1}}, "passing": {"_count": 1, "his": {"_count": 1}}, "shout": {"_count": 1, "Stupefy": {"_count": 1}}, "terror": {"_count": 1, "in": {"_count": 1}}, "smashed": {"_count": 1, "into": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "Well": {"_count": 1, "dake": {"_count": 1}}, "just": {"_count": 2, "as": {"_count": 1}, "like": {"_count": 1}}, "folding": {"_count": 1, "up": {"_count": 1}}, "gloomily": {"_count": 1, "folding": {"_count": 1}}, "disengaged": {"_count": 1, "herself": {"_count": 1}}, "perched": {"_count": 1, "herself": {"_count": 1}}, "flashed": {"_count": 1, "a": {"_count": 1}}, "dropping": {"_count": 1, "her": {"_count": 1}}, "exchange": {"_count": 1, "looks": {"_count": 1}}, "vanished": {"_count": 1, "behind": {"_count": 1}}, "feverishly": {"_count": 1, "I": {"_count": 1}}, "flapping": {"_count": 1, "her": {"_count": 1}}, "against": {"_count": 1, "Ron": {"_count": 1}}, "wants": {"_count": 1, "new": {"_count": 1}}, "reflected": {"_count": 1, "over": {"_count": 1}}, "grabbing": {"_count": 2, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "wizards": {"_count": 1, "dress": {"_count": 1}}, "dabbing": {"_count": 1, "her": {"_count": 1}}, "momentarily": {"_count": 1, "had": {"_count": 1}}, "shuffled": {"_count": 2, "sideways": {"_count": 1}, "her": {"_count": 1}}, "bickered": {"_count": 1, "all": {"_count": 1}}, "disappeared": {"_count": 1, "to": {"_count": 1}}, "sped": {"_count": 3, "along": {"_count": 1}, "up": {"_count": 1}, "down": {"_count": 1}}, "which": {"_count": 2, "gives": {"_count": 1}, "had": {"_count": 1}}, "unrolling": {"_count": 1, "the": {"_count": 1}}, "sniffed": {"_count": 1, "interestedly": {"_count": 1}}, "smiled": {"_count": 3, "but": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "perking": {"_count": 1, "up": {"_count": 1}}, "spared": {"_count": 1, "him": {"_count": 1}}, "delighted": {"_count": 1, "": {"_count": 1}}, "scurried": {"_count": 1, "in": {"_count": 1}}, "tremulously": {"_count": 1, "": {"_count": 1}}, "leaping": {"_count": 1, "up": {"_count": 1}}, "patted": {"_count": 2, "Hagrids": {"_count": 1}, "her": {"_count": 1}}, "choked": {"_count": 1, "Hagrid": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "staggered": {"_count": 1, "in": {"_count": 1}}, "helplessly": {"_count": 1, "theyre": {"_count": 1}}, "clearly": {"_count": 3, "pleased": {"_count": 1}, "stung": {"_count": 1}, "hopeful": {"_count": 1}}, "drummed": {"_count": 1, "her": {"_count": 1}}, "despairingly": {"_count": 1, "it": {"_count": 1}}, "plunged": {"_count": 1, "her": {"_count": 1}}, "continuing": {"_count": 1, "their": {"_count": 1}}, "hurriedly": {"_count": 1, "": {"_count": 1}}, "snogged": {"_count": 1, "Viktor": {"_count": 1}}, "imitating": {"_count": 1, "her": {"_count": 1}}, "blinking": {"_count": 1, "back": {"_count": 1}}, "wrenched": {"_count": 1, "open": {"_count": 1}}, "anything": {"_count": 1, "Ron": {"_count": 1}}, "scornfully": {"_count": 1, "": {"_count": 1}}, "Secrecy": {"_count": 1, "Sensors": {"_count": 1}}, "succinctly": {"_count": 1, "": {"_count": 1}}, "acted": {"_count": 1, "as": {"_count": 1}}, "dispassionately": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 2, "going": {"_count": 1}, "understood": {"_count": 1}}, "neither": {"_count": 1, "looking": {"_count": 1}}, "rolling": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "cant": {"_count": 2, "you": {"_count": 2}}, "like": {"_count": 1, "Ron": {"_count": 1}}, "stalking": {"_count": 1, "off": {"_count": 1}}, "recited": {"_count": 2, "at": {"_count": 1}, "immediately": {"_count": 1}}, "wished": {"_count": 1, "him": {"_count": 1}}, "stalked": {"_count": 1, "past": {"_count": 1}}, "rose": {"_count": 1, "at": {"_count": 1}}, "tersely": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "he": {"_count": 1}}, "dismissively": {"_count": 1, "": {"_count": 1}}, "silently": {"_count": 1, "tapping": {"_count": 1}}, "causing": {"_count": 1, "both": {"_count": 1}}, "mysteriously": {"_count": 1, "melted": {"_count": 1}}, "Aragog": {"_count": 1, "died": {"_count": 1}}, "laughing": {"_count": 1, "": {"_count": 1}}, "emerging": {"_count": 1, "together": {"_count": 1}}, "couldnt": {"_count": 2, "though": {"_count": 1}, "you": {"_count": 1}}, "flatly": {"_count": 1, "putting": {"_count": 1}}, "spotted": {"_count": 1, "him": {"_count": 1}}, "lecturing": {"_count": 1, "him": {"_count": 1}}, "PrinceV": {"_count": 1, "Right": {"_count": 1}}, "red": {"_count": 1, "patches": {"_count": 1}}, "predictably": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 1, "contact": {"_count": 1}}, "Felix": {"_count": 1, "Felicis": {"_count": 1}}, "Luna": {"_count": 1, "Tonks": {"_count": 1}}, "leaned": {"_count": 1, "forward": {"_count": 1}}, "Rons": {"_count": 1, "face": {"_count": 1}}, "Look": {"_count": 1, "let": {"_count": 1}}, "grinned": {"_count": 1, "a": {"_count": 1}}, "stifled": {"_count": 1, "a": {"_count": 1}}, "theres": {"_count": 1, "obviously": {"_count": 1}}, "flew": {"_count": 1, "at": {"_count": 1}}, "gazing": {"_count": 1, "up": {"_count": 1}}, "downright": {"_count": 1, "terrified": {"_count": 1}}, "seem": {"_count": 1, "to": {"_count": 1}}, "know": {"_count": 2, "about": {"_count": 1}, "that": {"_count": 1}}, "dont": {"_count": 1, "have": {"_count": 1}}, "Id": {"_count": 1, "be": {"_count": 1}}, "mopping": {"_count": 1, "her": {"_count": 1}}, "slamming": {"_count": 1, "Travels": {"_count": 1}}, "tossing": {"_count": 1, "Defensive": {"_count": 1}}, "rummaged": {"_count": 1, "for": {"_count": 1}}, "trotting": {"_count": 1, "along": {"_count": 1}}, "Jean": {"_count": 1, "Granger": {"_count": 1}}, "making": {"_count": 1, "to": {"_count": 1}}, "The": {"_count": 2, "Tales": {"_count": 1}, "force": {"_count": 1}}, "giggling": {"_count": 1, "": {"_count": 1}}, "bending": {"_count": 1, "again": {"_count": 1}}, "You": {"_count": 1, "look": {"_count": 1}}, "swiveling": {"_count": 1, "around": {"_count": 1}}, "cop": {"_count": 1, "hold": {"_count": 1}}, "aimed": {"_count": 1, "a": {"_count": 1}}, "managing": {"_count": 1, "a": {"_count": 1}}, "cringing": {"_count": 1, "as": {"_count": 1}}, "reaching": {"_count": 1, "for": {"_count": 1}}, "sideways": {"_count": 1, "onto": {"_count": 1}}, "crawled": {"_count": 1, "out": {"_count": 1}}, "earlier": {"_count": 1, "yelling": {"_count": 1}}, "crouched": {"_count": 1, "on": {"_count": 1}}, "waved": {"_count": 1, "her": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "sleep": {"_count": 1, "on": {"_count": 1}}, "otherwise": {"_count": 1, "hed": {"_count": 1}}, "their": {"_count": 1, "expressions": {"_count": 1}}, "begged": {"_count": 2, "him": {"_count": 2}}, "launching": {"_count": 1, "herself": {"_count": 1}}, "reentering": {"_count": 1, "the": {"_count": 1}}, "toppled": {"_count": 1, "inside": {"_count": 1}}, "downstairs": {"_count": 1, "in": {"_count": 1}}, "Disapparated": {"_count": 1, "with": {"_count": 1}}, "plucked": {"_count": 1, "a": {"_count": 1}}, "drank": {"_count": 1, "the": {"_count": 1}}, "aggressively": {"_count": 1, "shaking": {"_count": 1}}, "yanked": {"_count": 1, "a": {"_count": 1}}, "alarmed": {"_count": 1, "": {"_count": 1}}, "reappeared": {"_count": 1, "": {"_count": 1}}, "give": {"_count": 2, "Ron": {"_count": 1}, "it": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "jump": {"_count": 1, "": {"_count": 1}}, "alarm": {"_count": 1, "": {"_count": 1}}, "laid": {"_count": 1, "bare": {"_count": 1}}, "recoiled": {"_count": 1, "looking": {"_count": 1}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "huddled": {"_count": 1, "in": {"_count": 1}}, "therefore": {"_count": 1, "removed": {"_count": 1}}, "clapping": {"_count": 1, "a": {"_count": 1}}, "bore": {"_count": 1, "up": {"_count": 1}}, "stole": {"_count": 1, "into": {"_count": 1}}, "be": {"_count": 1, "quiet": {"_count": 1}}, "mouthed": {"_count": 1, "at": {"_count": 1}}, "reeled": {"_count": 1, "in": {"_count": 1}}, "knelt": {"_count": 1, "down": {"_count": 1}}, "simple": {"_count": 1, "said": {"_count": 1}}, "forcing": {"_count": 1, "her": {"_count": 1}}, "dawdling": {"_count": 1, "": {"_count": 1}}, "lit": {"_count": 1, "her": {"_count": 1}}, "murmured": {"_count": 1, "Lets": {"_count": 1}}, "indignant": {"_count": 1, "": {"_count": 1}}, "aside": {"_count": 1, "as": {"_count": 1}}, "light": {"_count": 1, "the": {"_count": 1}}, "Bathilda": {"_count": 1, "now": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "call": {"_count": 1, "Harry": {"_count": 1}}, "dived": {"_count": 1, "aside": {"_count": 1}}, "She": {"_count": 2, "shrieked": {"_count": 1}, "swayed": {"_count": 1}}, "uncomfortably": {"_count": 1, "": {"_count": 1}}, "try": {"_count": 1, "": {"_count": 1}}, "handed": {"_count": 2, "over": {"_count": 1}, "Harry": {"_count": 1}}, "weirdly": {"_count": 1, "distorted": {"_count": 1}}, "launched": {"_count": 1, "herself": {"_count": 1}}, "OW": {"_count": 1, "": {"_count": 1}}, "advanced": {"_count": 1, "": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "nose": {"_count": 1, "buried": {"_count": 1}}, "many": {"_count": 1, "covert": {"_count": 1}}, "quelled": {"_count": 1, "him": {"_count": 1}}, "surprised": {"_count": 1, "": {"_count": 1}}, "disconcerted": {"_count": 1, "": {"_count": 1}}, "stooped": {"_count": 1, "down": {"_count": 1}}, "coated": {"_count": 1, "in": {"_count": 1}}, "twisted": {"_count": 1, "in": {"_count": 1}}, "centuries": {"_count": 1, "ago": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "Their": {"_count": 1, "determined": {"_count": 1}}, "understand": {"_count": 1, "": {"_count": 1}}, "retorted": {"_count": 1, "and": {"_count": 1}}, "prized": {"_count": 1, "": {"_count": 1}}, "raked": {"_count": 1, "over": {"_count": 1}}, "pestering": {"_count": 1, "him": {"_count": 1}}, "kneeling": {"_count": 1, "on": {"_count": 1}}, "gazed": {"_count": 1, "at": {"_count": 1}}, "hushing": {"_count": 1, "him": {"_count": 1}}, "forestalled": {"_count": 1, "him": {"_count": 1}}, "admiringly": {"_count": 1, "": {"_count": 1}}, "point": {"_count": 1, "her": {"_count": 1}}, "outside": {"_count": 1, "too": {"_count": 1}}, "Dean": {"_count": 1, "and": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "sobbed": {"_count": 1, "": {"_count": 1}}, "tilting": {"_count": 1, "the": {"_count": 1}}, "only": {"_count": 1, "emerged": {"_count": 1}}, "disapproved": {"_count": 1, "so": {"_count": 1}}, "swept": {"_count": 1, "forward": {"_count": 1}}, "allowed": {"_count": 1, "Travers": {"_count": 1}}, "crammed": {"_count": 1, "together": {"_count": 1}}, "spluttered": {"_count": 1, "as": {"_count": 1}}, "sucking": {"_count": 1, "her": {"_count": 1}}, "fumbled": {"_count": 1, "inside": {"_count": 1}}, "hoisted": {"_count": 1, "herself": {"_count": 1}}, "flat": {"_count": 1, "on": {"_count": 1}}, "yelling": {"_count": 1, "Defodiol": {"_count": 1}}, "struck": {"_count": 1, "out": {"_count": 1}}, "collapsed": {"_count": 1, "coughing": {"_count": 1}}, "backed": {"_count": 1, "as": {"_count": 1}}, "take": {"_count": 1, "hold": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "stabbed": {"_count": 1, "it": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "dive": {"_count": 1, "aside": {"_count": 1}}, "pelted": {"_count": 1, "along": {"_count": 1}}, "onto": {"_count": 1, "it": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "outraged": {"_count": 1, "": {"_count": 1}}, "flattened": {"_count": 1, "themselves": {"_count": 1}}, "gathered": {"_count": 1, "the": {"_count": 1}}, "tugged": {"_count": 1, "at": {"_count": 1}}, "wildly": {"_count": 1, "": {"_count": 1}}, "approach": {"_count": 1, "Ginny": {"_count": 1}}, "helping": {"_count": 1, "him": {"_count": 1}}}, "Granger": {"_count": 133, "by": {"_count": 2, "the": {"_count": 2}}, "this": {"_count": 1, "time": {"_count": 1}}, "had": {"_count": 2, "come": {"_count": 1}, "made": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "were": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 5, "on": {"_count": 1}, "almost": {"_count": 1}, "shrinking": {"_count": 1}, "just": {"_count": 1}, "shouting": {"_count": 1}}, "": {"_count": 43, ".": {"_count": 17}, "!": {"_count": 7}, "?": {"_count": 19}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "telling": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 4, "foolish": {"_count": 1}, "can": {"_count": 1}, "are": {"_count": 1}, "know": {"_count": 1}}, "five": {"_count": 1, "points": {"_count": 1}}, "became": {"_count": 1, "their": {"_count": 1}}, "I": {"_count": 5, "thought": {"_count": 1}, "would": {"_count": 1}, "think": {"_count": 1}, "am": {"_count": 1}, "leave": {"_count": 1}}, "accidentally": {"_count": 1, "knocked": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "favor": {"_count": 1}}, "standing": {"_count": 1, "at": {"_count": 1}}, "always": {"_count": 1, "top": {"_count": 1}}, "knew": {"_count": 1, "my": {"_count": 1}}, "would": {"_count": 4, "be": {"_count": 2}, "you": {"_count": 1}, "agree": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "myths": {"_count": 1}}, "Mudblood": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "wishing": {"_count": 1, "you": {"_count": 1}}, "The": {"_count": 1, "bell": {"_count": 1}}, "and": {"_count": 2, "I": {"_count": 1}, "Harry": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "about": {"_count": 1, "her": {"_count": 1}}, "said": {"_count": 10, "Snape": {"_count": 3}, "Dumbledore": {"_count": 1}, "an": {"_count": 1}, "Draco": {"_count": 1}, "Hermione": {"_count": 1}, "Malfoy": {"_count": 1}, "Professor": {"_count": 1}, "Slughorn": {"_count": 1}}, "is": {"_count": 1, "hissing": {"_count": 1}}, "has": {"_count": 3, "just": {"_count": 1}, "been": {"_count": 1}, "already": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "HOLD": {"_count": 1, "YOUR": {"_count": 1}}, "three": {"_count": 2, "turns": {"_count": 2}}, "theyre": {"_count": 1, "after": {"_count": 1}}, "sneered": {"_count": 1, "Malfoy": {"_count": 1}}, "Thats": {"_count": 1, "all": {"_count": 1}}, "remains": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "stunningly": {"_count": 1}, "plain": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "rightly": {"_count": 1, "says": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 1, "have": {"_count": 1}}, "so": {"_count": 1, "ten": {"_count": 1}}, "breathed": {"_count": 1, "Malfoy": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "proved": {"_count": 1}}, "loves": {"_count": 1, "them": {"_count": 1}}, "can": {"_count": 1, "of": {"_count": 1}}, "still": {"_count": 1, "visiting": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "with": {"_count": 1, "Kingsley": {"_count": 1}}, "Scabior": {"_count": 1, "was": {"_count": 1}}, "girl": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "to": {"_count": 1, "slow": {"_count": 1}}}, "stunned": {"_count": 57, "face": {"_count": 2, "that": {"_count": 1}, "with": {"_count": 1}}, "looks": {"_count": 2, "on": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 22}}, "and": {"_count": 5, "hurt": {"_count": 1}, "raised": {"_count": 1}, "horrified": {"_count": 1}, "impressed": {"_count": 1}, "at": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "he": {"_count": 2}}, "for": {"_count": 2, "a": {"_count": 2}}, "look": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 2, "what": {"_count": 1}, "this": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "Im": {"_count": 1, "betting": {"_count": 1}}, "silence": {"_count": 3, "": {"_count": 1}, "both": {"_count": 1}, "greeted": {"_count": 1}}, "crowd": {"_count": 1, "": {"_count": 1}}, "disapproval": {"_count": 1, "": {"_count": 1}}, "dragons": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 4, "his": {"_count": 1}, "a": {"_count": 1}, "Malfoys": {"_count": 1}, "what": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "disbelief": {"_count": 1, "Harry": {"_count": 1}}, "into": {"_count": 1, "silence": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "his": {"_count": 1}}}, "extra": {"_count": 66, "books": {"_count": 2, "for": {"_count": 1}, "in": {"_count": 1}}, "hundred": {"_count": 2, "and": {"_count": 2}}, "spurt": {"_count": 1, "of": {"_count": 1}}, "money": {"_count": 2, "Weasley": {"_count": 1}, "": {"_count": 1}}, "work": {"_count": 4, "": {"_count": 2}, "on": {"_count": 1}, "for": {"_count": 1}}, "homework": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "punishments": {"_count": 1, "": {"_count": 1}}, "rooms": {"_count": 1, "had": {"_count": 1}}, "hour": {"_count": 1, "scrubbing": {"_count": 1}}, "help": {"_count": 1, "said": {"_count": 1}}, "pairs": {"_count": 1, "of": {"_count": 1}}, "heads": {"_count": 1, "and": {"_count": 1}}, "hug": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "hundred": {"_count": 1}}, "torches": {"_count": 1, "and": {"_count": 1}}, "arm": {"_count": 1, "to": {"_count": 1}}, "protection": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}}, "nourishment": {"_count": 1, "Dudley": {"_count": 1}}, "large": {"_count": 2, "toy": {"_count": 1}, "gulp": {"_count": 1}}, "people": {"_count": 1, "Harry": {"_count": 1}}, "safety": {"_count": 1, "measure": {"_count": 1}}, "precaution": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "curl": {"_count": 1, "Krum": {"_count": 1}}, "powers": {"_count": 1, "": {"_count": 1}}, "weapon": {"_count": 1, "": {"_count": 1}}, "squiggly": {"_count": 1, "golden": {"_count": 1}}, "food": {"_count": 2, "could": {"_count": 1}, "": {"_count": 1}}, "hard": {"_count": 1, "now": {"_count": 1}}, "house": {"_count": 1, "had": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "measure": {"_count": 1, "of": {"_count": 1}}, "Potions": {"_count": 2, "": {"_count": 1}, "lessons": {"_count": 1}}, "cleaning": {"_count": 1, "materials": {"_count": 1}}, "time": {"_count": 1, "to": {"_count": 1}}, "authority": {"_count": 1, "": {"_count": 1}}, "chairs": {"_count": 2, "": {"_count": 1}, "appeared": {"_count": 1}}, "hands": {"_count": 1, "sticking": {"_count": 1}}, "lessons": {"_count": 1, "does": {"_count": 1}}, "careful": {"_count": 1, "when": {"_count": 1}}, "classes": {"_count": 1, "with": {"_count": 1}}, "security": {"_count": 2, "after": {"_count": 1}, "and": {"_count": 1}}, "helpings": {"_count": 1, "from": {"_count": 1}}, "lamps": {"_count": 1, "with": {"_count": 1}}, "protective": {"_count": 1, "spells": {"_count": 1}}, "jabs": {"_count": 1, "with": {"_count": 1}}, "ten": {"_count": 1, "points": {"_count": 1}}, "practice": {"_count": 1, "sessions": {"_count": 1}}, "slowly": {"_count": 1, "": {"_count": 1}}, "day": {"_count": 1, "said": {"_count": 1}}, "powerful": {"_count": 1, "wands": {"_count": 1}}, "wisdom": {"_count": 1, "never": {"_count": 1}}}, "background": {"_count": 8, "reading": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "information": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "one": {"_count": 1}}}, "Modern": {"_count": 2, "Magical": {"_count": 2, "History": {"_count": 1}, "Discoveries": {"_count": 1}}}, "Rise": {"_count": 4, "and": {"_count": 3, "Fall": {"_count": 3}}, "again": {"_count": 1, "indeed": {"_count": 1}}}, "Fall": {"_count": 3, "of": {"_count": 3, "the": {"_count": 3}}}, "Wizarding": {"_count": 118, "Events": {"_count": 1, "of": {"_count": 1}}, "Levels": {"_count": 4, "George": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "are": {"_count": 1}}, "Joke": {"_count": 1, "Shop": {"_count": 1}}, "Bank": {"_count": 4, "": {"_count": 1}, "in": {"_count": 1}, "Gringotts": {"_count": 1}, "who": {"_count": 1}}, "Level": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "Tests": {"_count": 1, "the": {"_count": 1}}, "Wireless": {"_count": 2, "Network": {"_count": 2}}, "Crackers": {"_count": 1, "": {"_count": 1}}, "Secrecy": {"_count": 1, "it": {"_count": 1}}, "Dilemmas": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "community": {"_count": 19, "are": {"_count": 1}, "must": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 2}, "Mrs": {"_count": 1}, "of": {"_count": 2}, "which": {"_count": 1}, "and": {"_count": 1}, "has": {"_count": 1}, "preferred": {"_count": 1}, "believe": {"_count": 1}, "though": {"_count": 1}, "is": {"_count": 2}, "at": {"_count": 1}, "to": {"_count": 1}}, "race": {"_count": 1, "getting": {"_count": 1}}, "Genealogy": {"_count": 3, "": {"_count": 3}}, "photograph": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "world": {"_count": 20, "thought": {"_count": 1}, "to": {"_count": 1}, "we": {"_count": 1}, "has": {"_count": 1}, "": {"_count": 5}, "said": {"_count": 1}, "are": {"_count": 1}, "was": {"_count": 1}, "rest": {"_count": 1}, "where": {"_count": 1}, "Harry": {"_count": 1}, "against": {"_count": 1}, "sees": {"_count": 1}, "at": {"_count": 1}, "Bathilda": {"_count": 1}, "during": {"_count": 1}}, "school": {"_count": 1, "": {"_count": 1}}, "institutions": {"_count": 1, "": {"_count": 1}}, "families": {"_count": 5, "had": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}, "who": {"_count": 1}, "store": {"_count": 1}}, "careers": {"_count": 1, "appeared": {"_count": 1}}, "fireplaces": {"_count": 1, "that": {"_count": 1}}, "Wheezes": {"_count": 1, "he": {"_count": 1}}, "Examinations": {"_count": 2, "Authority": {"_count": 1}, "Authoritys": {"_count": 1}}, "hospital": {"_count": 1, "": {"_count": 1}}, "family": {"_count": 3, "not": {"_count": 1}, "noted": {"_count": 1}, "represented": {"_count": 1}}, "homes": {"_count": 1, "within": {"_count": 1}}, "dwellings": {"_count": 1, "are": {"_count": 1}}, "law": {"_count": 4, "which": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "conveyance": {"_count": 1, "the": {"_count": 1}}, "princes": {"_count": 1, "said": {"_count": 1}}, "rooms": {"_count": 1, "which": {"_count": 1}}, "history": {"_count": 4, "": {"_count": 3}, "often": {"_count": 1}}, "stock": {"_count": 1, "abilities": {"_count": 1}}, "group": {"_count": 1, "the": {"_count": 1}}, "children": {"_count": 1, "last": {"_count": 1}}, "knowledge": {"_count": 1, "including": {"_count": 1}}, "duel": {"_count": 1, "ever": {"_count": 1}}, "worlds": {"_count": 1, "": {"_count": 1}}, "band": {"_count": 1, "the": {"_count": 1}}, "celebrations": {"_count": 1, "differed": {"_count": 1}}, "wills": {"_count": 1, "are": {"_count": 1}}, "ancestry": {"_count": 1, "exists": {"_count": 1}}, "relative": {"_count": 1, "you": {"_count": 1}}, "population": {"_count": 1, "under": {"_count": 1}}, "neighbors": {"_count": 1, "she": {"_count": 1}}, "traditions": {"_count": 1, "and": {"_count": 1}}, "bank": {"_count": 1, "with": {"_count": 1}}, "master": {"_count": 1, "": {"_count": 1}}, "smith": {"_count": 1, "forged": {"_count": 1}}, "secret": {"_count": 1, "": {"_count": 1}}, "village": {"_count": 1, "he": {"_count": 1}}, "territory": {"_count": 1, "brought": {"_count": 1}}, "order": {"_count": 2, "is": {"_count": 1}, "and": {"_count": 1}}, "rule": {"_count": 1, "houseelves": {"_count": 1}}, "arrogance": {"_count": 1, "again": {"_count": 1}}}, "Events": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Twentieth": {"_count": 2, "Century": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}}, "Century": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "Notable": {"_count": 1}}, "Was": {"_count": 1, "Completely": {"_count": 1}}}, "Am": {"_count": 9, "I": {"_count": 9, "": {"_count": 1}, "a": {"_count": 1}, "just": {"_count": 1}, "allowed": {"_count": 1}, "to": {"_count": 2}, "about": {"_count": 1}, "meant": {"_count": 1}, "too": {"_count": 1}}}, "dazed": {"_count": 18, "": {"_count": 4, ".": {"_count": 4}}, "Harry": {"_count": 1, "left": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "look": {"_count": 2, "about": {"_count": 1}, "on": {"_count": 1}}, "grindylow": {"_count": 1, "floating": {"_count": 1}}, "and": {"_count": 4, "ruffledlooking": {"_count": 1}, "confused": {"_count": 2}, "swayed": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "voice": {"_count": 1, "Yeah": {"_count": 1}}}, "Goodness": {"_count": 5, "didnt": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "knows": {"_count": 1, "I": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "only": {"_count": 1, "knows": {"_count": 1}}}, "Gryffindor": {"_count": 562, "it": {"_count": 1, "sounds": {"_count": 1}}, "said": {"_count": 11, "Ron": {"_count": 1}, "Professor": {"_count": 2}, "Harry": {"_count": 2}, "Dumbledore": {"_count": 1}, "Snape": {"_count": 2}, "Luna": {"_count": 1}, "Zabini": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "Hufflepuff": {"_count": 2, "Ravenclaw": {"_count": 2}}, "Where": {"_count": 1, "dwell": {"_count": 1}}, "and": {"_count": 15, "the": {"_count": 1}, "Slytherin": {"_count": 4}, "if": {"_count": 1}, "Hufflepuff": {"_count": 5}, "a": {"_count": 1}, "another": {"_count": 1}, "Ravenclaw": {"_count": 1}, "wore": {"_count": 1}}, "": {"_count": 51, ".": {"_count": 37}, "!": {"_count": 12}, "?": {"_count": 2}}, "table": {"_count": 50, "": {"_count": 12}, "snatched": {"_count": 1}, "and": {"_count": 8}, "next": {"_count": 2}, "handing": {"_count": 1}, "where": {"_count": 2}, "loading": {"_count": 1}, "wondering": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 3}, "was": {"_count": 1}, "a": {"_count": 3}, "all": {"_count": 1}, "the": {"_count": 1}, "because": {"_count": 1}, "on": {"_count": 1}, "toward": {"_count": 1}, "for": {"_count": 3}, "leaned": {"_count": 1}, "which": {"_count": 1}, "just": {"_count": 1}, "five": {"_count": 1}, "when": {"_count": 1}, "still": {"_count": 1}}, "Tower": {"_count": 78, "": {"_count": 23}, "said": {"_count": 4}, "because": {"_count": 1}, "was": {"_count": 3}, "drenched": {"_count": 1}, "desperate": {"_count": 1}, "which": {"_count": 2}, "Harry": {"_count": 1}, "collected": {"_count": 1}, "ever": {"_count": 1}, "but": {"_count": 2}, "became": {"_count": 1}, "for": {"_count": 2}, "and": {"_count": 7}, "slept": {"_count": 1}, "passed": {"_count": 1}, "where": {"_count": 2}, "at": {"_count": 3}, "Professor": {"_count": 1}, "afterward": {"_count": 1}, "with": {"_count": 2}, "deposited": {"_count": 1}, "thinking": {"_count": 1}, "Chos": {"_count": 1}, "to": {"_count": 2}, "alone": {"_count": 1}, "when": {"_count": 1}, "lost": {"_count": 1}, "after": {"_count": 1}, "the": {"_count": 1}, "so": {"_count": 2}, "he": {"_count": 1}, "anymore": {"_count": 1}, "shortly": {"_count": 1}, "however": {"_count": 1}, "stood": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "common": {"_count": 43, "room": {"_count": 43}}, "House": {"_count": 24, "but": {"_count": 1}, "for": {"_count": 1}, "fifty": {"_count": 2}, "sixty": {"_count": 1}, "they": {"_count": 1}, "was": {"_count": 4}, "Harry": {"_count": 1}, "took": {"_count": 1}, "meanwhile": {"_count": 1}, "Quidditch": {"_count": 1}, "team": {"_count": 1}, "had": {"_count": 1}, "all": {"_count": 1}, "ghost": {"_count": 1}, "as": {"_count": 1}, "Hogwarts": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "seemed": {"_count": 1}}, "in": {"_count": 12, "his": {"_count": 1}, "the": {"_count": 4}, "last": {"_count": 1}, "possession": {"_count": 5}, "one": {"_count": 1}}, "team": {"_count": 25, "Professor": {"_count": 1}, "": {"_count": 3}, "were": {"_count": 1}, "could": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 2}, "huddled": {"_count": 2}, "called": {"_count": 1}, "was": {"_count": 2}, "visited": {"_count": 1}, "gathered": {"_count": 1}, "laughed": {"_count": 1}, "set": {"_count": 1}, "entered": {"_count": 2}, "sank": {"_count": 1}, "reforming": {"_count": 1}, "Harry": {"_count": 1}, "landed": {"_count": 1}, "left": {"_count": 1}}, "if": {"_count": 2, "youre": {"_count": 1}, "I": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "faded": {"_count": 1, "quickly": {"_count": 1}}, "for": {"_count": 6, "this": {"_count": 1}, "every": {"_count": 1}, "being": {"_count": 1}, "an": {"_count": 1}, "lateness": {"_count": 1}, "sheer": {"_count": 1}}, "five": {"_count": 1, "points": {"_count": 1}}, "versus": {"_count": 4, "Slytherin": {"_count": 3}, "Ravenclaw": {"_count": 1}}, "won": {"_count": 3, "they": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "lion": {"_count": 6, "underneath": {"_count": 1}, "took": {"_count": 1}, "knitted": {"_count": 1}, "upon": {"_count": 1}, "": {"_count": 1}, "emblazoned": {"_count": 1}}, "what": {"_count": 1, "an": {"_count": 1}}, "Keeper": {"_count": 4, "Wood": {"_count": 1}, "now": {"_count": 1}, "Weasley": {"_count": 1}, "": {"_count": 1}}, "there": {"_count": 1, "nice": {"_count": 1}}, "Beater": {"_count": 1, "anyway": {"_count": 1}}, "cheers": {"_count": 3, "filled": {"_count": 1}, "nearly": {"_count": 1}, "and": {"_count": 1}}, "Seeker": {"_count": 3, "which": {"_count": 1}, "arent": {"_count": 1}, "": {"_count": 1}}, "taken": {"_count": 1, "by": {"_count": 1}}, "still": {"_count": 1, "in": {"_count": 1}}, "goal": {"_count": 7, "posts": {"_count": 6}, "post": {"_count": 1}}, "had": {"_count": 10, "won": {"_count": 5}, "had": {"_count": 1}, "been": {"_count": 2}, "taken": {"_count": 1}, "lost": {"_count": 1}}, "Weasley": {"_count": 1, "and": {"_count": 1}}, "cant": {"_count": 1, "play": {"_count": 1}}, "Malfoys": {"_count": 1, "already": {"_count": 1}}, "didnt": {"_count": 2, "it": {"_count": 1}, "take": {"_count": 1}}, "is": {"_count": 3, "in": {"_count": 1}, "an": {"_count": 1}, "it": {"_count": 1}}, "meant": {"_count": 1, "more": {"_count": 1}}, "students": {"_count": 1, "": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "really": {"_count": 1, "cant": {"_count": 1}}, "wins": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "from": {"_count": 5, "winning": {"_count": 1}, "wild": {"_count": 1}, "Professor": {"_count": 1}, "any": {"_count": 1}, "beside": {"_count": 1}}, "with": {"_count": 4, "three": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}}, "now": {"_count": 1, "had": {"_count": 1}}, "before": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "win": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 2}}, "shouldnt": {"_count": 1, "really": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "prefect": {"_count": 1, "yet": {"_count": 1}}, "boys": {"_count": 2, "Seamus": {"_count": 1}, "pointed": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 15, "team": {"_count": 13}, "Captain": {"_count": 1}, "player": {"_count": 1}}, "Beaters": {"_count": 1, "": {"_count": 1}}, "Helga": {"_count": 1, "Hufflepuff": {"_count": 1}}, "against": {"_count": 1, "Slytherin": {"_count": 1}}, "lost": {"_count": 1, "but": {"_count": 1}}, "robes": {"_count": 1, "then": {"_count": 1}}, "has": {"_count": 1, "just": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "any": {"_count": 1, "day": {"_count": 1}}, "dormitory": {"_count": 1, "Riddles": {"_count": 1}}, "could": {"_count": 5, "have": {"_count": 3}, "do": {"_count": 1}, "defeat": {"_count": 1}}, "ghost": {"_count": 4, "one": {"_count": 1}, "had": {"_count": 2}, "": {"_count": 1}}, "Im": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 2, "suggest": {"_count": 1}, "expect": {"_count": 1}}, "securing": {"_count": 1, "the": {"_count": 1}}, "Ravenclaw": {"_count": 1, "Hufflepuff": {"_count": 1}}, "because": {"_count": 2, "the": {"_count": 1}, "Im": {"_count": 1}}, "hasnt": {"_count": 1, "won": {"_count": 1}}, "portrait": {"_count": 1, "hole": {"_count": 1}}, "teams": {"_count": 3, "prospects": {"_count": 1}, "final": {"_count": 1}, "faces": {"_count": 1}}, "were": {"_count": 2, "not": {"_count": 1}, "leading": {"_count": 1}}, "to": {"_count": 3, "win": {"_count": 1}, "catch": {"_count": 1}, "their": {"_count": 1}}, "winning": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 2, "would": {"_count": 1}, "found": {"_count": 1}}, "victory": {"_count": 1, "against": {"_count": 1}}, "practices": {"_count": 1, "to": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "end": {"_count": 2, "of": {"_count": 1}, "coupled": {"_count": 1}}, "supporters": {"_count": 2, "but": {"_count": 1}, "sprinting": {"_count": 1}}, "leads": {"_count": 2, "by": {"_count": 2}}, "only": {"_count": 2, "fifty": {"_count": 1}, "lost": {"_count": 1}}, "party": {"_count": 1, "ended": {"_count": 1}}, "Slytherin": {"_count": 1, "match": {"_count": 1}}, "hadnt": {"_count": 1, "won": {"_count": 1}}, "fourth": {"_count": 3, "year": {"_count": 2}, "years": {"_count": 1}}, "back": {"_count": 3, "in": {"_count": 3}}, "was": {"_count": 8, "more": {"_count": 1}, "fifty": {"_count": 1}, "sixty": {"_count": 1}, "not": {"_count": 1}, "only": {"_count": 1}, "hidden": {"_count": 1}, "born": {"_count": 1}, "lying": {"_count": 1}}, "penalty": {"_count": 1, "": {"_count": 1}}, "crowd": {"_count": 1, "below": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "flag": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "bravest": {"_count": 1}}, "at": {"_count": 1, "Quidditch": {"_count": 1}}, "blue": {"_count": 1, "with": {"_count": 1}}, "Youll": {"_count": 1, "be": {"_count": 1}}, "Chasers": {"_count": 1, "": {"_count": 1}}, "banner": {"_count": 2, "from": {"_count": 1}, "that": {"_count": 1}}, "once": {"_count": 1, "at": {"_count": 1}}, "beat": {"_count": 2, "them": {"_count": 1}, "Ravenclaw": {"_count": 1}}, "student": {"_count": 1, "embarrasses": {"_count": 1}}, "founder": {"_count": 1, "of": {"_count": 1}}, "prefects": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "round": {"_count": 1}}, "Well": {"_count": 1, "teach": {"_count": 1}}, "notice": {"_count": 2, "board": {"_count": 2}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "are": {"_count": 4, "losers": {"_count": 3}, "allowed": {"_count": 1}}, "line": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "players": {"_count": 1, "in": {"_count": 1}}, "reverse": {"_count": 1, "passes": {"_count": 1}}, "block": {"_count": 1, "him": {"_count": 1}}, "dodges": {"_count": 1, "Pucey": {"_count": 1}}, "spectators": {"_count": 2, "screamed": {"_count": 1}, "had": {"_count": 1}}, "scarf": {"_count": 3, "but": {"_count": 1}, "aside": {"_count": 1}, "in": {"_count": 1}}, "changing": {"_count": 1, "room": {"_count": 1}}, "twenty": {"_count": 1, "points": {"_count": 1}}, "hourglass": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "had": {"_count": 1}}, "fire": {"_count": 1, "in": {"_count": 1}}, "should": {"_count": 1, "he": {"_count": 1}}, "scrape": {"_count": 1, "the": {"_count": 1}}, "resided": {"_count": 1, "gleamed": {"_count": 1}}, "beating": {"_count": 1, "Ravenclaw": {"_count": 1}}, "like": {"_count": 1, "her": {"_count": 1}}, "ears": {"_count": 1, "": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "roared": {"_count": 1, "Harry": {"_count": 1}}, "celebration": {"_count": 1, "party": {"_count": 1}}, "Keepers": {"_count": 1, "got": {"_count": 1}}, "or": {"_count": 1, "Ravenclaw": {"_count": 1}}, "remains": {"_count": 1, "safe": {"_count": 1}}, "rubies": {"_count": 1, "glistened": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "banners": {"_count": 1, "faded": {"_count": 1}}, "leave": {"_count": 1, "its": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "Gryffindors": {"_count": 1, "sword": {"_count": 1}}, "just": {"_count": 1, "for": {"_count": 1}}, "gripped": {"_count": 1, "tightly": {"_count": 1}}, "stole": {"_count": 1, "the": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "Gryffindor": {"_count": 1, "had": {"_count": 1}}, "lying": {"_count": 2, "on": {"_count": 1}, "beside": {"_count": 1}}, "hangings": {"_count": 1, "": {"_count": 1}}, "remained": {"_count": 1, "in": {"_count": 1}}, "where": {"_count": 1, "theyll": {"_count": 1}}, "lay": {"_count": 1, "beside": {"_count": 1}}, "well": {"_count": 1, "disinherit": {"_count": 1}}, "over": {"_count": 1, "Slytherin": {"_count": 1}}}, "sounds": {"_count": 83, "by": {"_count": 1, "far": {"_count": 1}}, "like": {"_count": 11, "fortunetelling": {"_count": 1}, "wings": {"_count": 1}, "Percy": {"_count": 1}, "something": {"_count": 1}, "Malfoys": {"_count": 1}, "were": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "its": {"_count": 1}, "it": {"_count": 1}}, "fascinating": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 3, "bit": {"_count": 1}, "rather": {"_count": 1}, "real": {"_count": 1}}, "were": {"_count": 5, "the": {"_count": 3}, "those": {"_count": 1}, "now": {"_count": 1}}, "of": {"_count": 34, "two": {"_count": 1}, "the": {"_count": 13}, "someone": {"_count": 1}, "movement": {"_count": 2}, "thousands": {"_count": 1}, "Hagrid": {"_count": 1}, "hundreds": {"_count": 1}, "retching": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "cheering": {"_count": 1}, "more": {"_count": 1}, "horses": {"_count": 1}, "laughter": {"_count": 1}, "scuffling": {"_count": 2}, "an": {"_count": 1}, "Mrs": {"_count": 1}, "fish": {"_count": 1}, "munching": {"_count": 1}, "fighting": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 3}}, "drifting": {"_count": 1, "from": {"_count": 1}}, "crazy": {"_count": 1, "said": {"_count": 1}}, "had": {"_count": 1, "scared": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "right": {"_count": 1}}, "exactly": {"_count": 1, "like": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "none": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "great": {"_count": 1, "when": {"_count": 1}}, "cool": {"_count": 1, "said": {"_count": 1}}, "brilliant": {"_count": 1, "said": {"_count": 1}}, "perfect": {"_count": 1, "Dobby": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Hagrid": {"_count": 1, "was": {"_count": 1}}, "lovely": {"_count": 1, "": {"_count": 1}}, "excellent": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "expression": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "good": {"_count": 1, "sir": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "cooler": {"_count": 1, "than": {"_count": 1}}}, "Ravenclaw": {"_count": 127, "wouldnt": {"_count": 1, "be": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 1}, "win": {"_count": 1}}, "and": {"_count": 15, "Slytherin": {"_count": 4}, "then": {"_count": 1}, "Hufflepuff": {"_count": 5}, "Salazar": {"_count": 1}, "one": {"_count": 1}, "we": {"_count": 1}, "theyre": {"_count": 1}, "Mr": {"_count": 1}}, "If": {"_count": 1, "youve": {"_count": 1}}, "too": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "without": {"_count": 1, "you": {"_count": 1}}, "has": {"_count": 1, "four": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 10}, "!": {"_count": 2}, "?": {"_count": 6}}, "theyd": {"_count": 1, "accidentally": {"_count": 1}}, "girl": {"_count": 1, "Penelope": {"_count": 1}}, "table": {"_count": 15, "": {"_count": 8}, "where": {"_count": 1}, "too": {"_count": 1}, "and": {"_count": 1}, "Cho": {"_count": 1}, "Harry": {"_count": 1}, "what": {"_count": 1}, "this": {"_count": 1}}, "prefect": {"_count": 2, "were": {"_count": 1}, "Penelope": {"_count": 1}}, "Hufflepuff": {"_count": 1, "or": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "is": {"_count": 4, "too": {"_count": 1}, "playing": {"_count": 1}, "": {"_count": 2}}, "flattened": {"_count": 1, "Hufflepuff": {"_count": 1}}, "played": {"_count": 1, "Slytherin": {"_count": 1}}, "was": {"_count": 4, "drawing": {"_count": 1}, "pulling": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "match": {"_count": 1, "so": {"_count": 1}}, "girlfriend": {"_count": 1, "Penelope": {"_count": 1}}, "team": {"_count": 2, "dressed": {"_count": 1}, "": {"_count": 1}}, "Captain": {"_count": 2, "": {"_count": 1}, "Davies": {"_count": 1}}, "goal": {"_count": 1, "posts": {"_count": 1}}, "Beaters": {"_count": 1, "came": {"_count": 1}}, "end": {"_count": 2, "": {"_count": 2}}, "Chaser": {"_count": 1, "scanning": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 2, "glen": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "cleverest": {"_count": 1}}, "Seeker": {"_count": 1, "cheering": {"_count": 1}}, "yellow": {"_count": 1, "with": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 4, "captain": {"_count": 1}, "team": {"_count": 2}, "Captain": {"_count": 1}}, "Fawcett": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Luna": {"_count": 1}, "Harry": {"_count": 1}}, "Well": {"_count": 1, "teach": {"_count": 1}}, "While": {"_count": 1, "the": {"_count": 1}}, "boys": {"_count": 1, "he": {"_count": 1}}, "blokes": {"_count": 1, "and": {"_count": 1}}, "during": {"_count": 1, "my": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "sixth": {"_count": 1, "year": {"_count": 1}}, "at": {"_count": 2, "Quidditch": {"_count": 1}, "Xenophiliuss": {"_count": 1}}, "Not": {"_count": 1, "him": {"_count": 1}}, "which": {"_count": 1, "means": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "Harry": {"_count": 1, "found": {"_count": 1}}, "lay": {"_count": 1, "beside": {"_count": 1}}, "on": {"_count": 1, "blue": {"_count": 1}}, "herself": {"_count": 1, "": {"_count": 1}}, "common": {"_count": 2, "room": {"_count": 2}}, "froze": {"_count": 1, "": {"_count": 1}}, "Tower": {"_count": 7, "and": {"_count": 1}, "": {"_count": 4}, "but": {"_count": 1}, "with": {"_count": 1}}, "Astronomy": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "Whatever": {"_count": 20, "House": {"_count": 1, "Im": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "youve": {"_count": 2, "heard": {"_count": 2}}, "said": {"_count": 1, "Malfoy": {"_count": 1}}, "happened": {"_count": 1, "was": {"_count": 1}}, "you": {"_count": 2, "do": {"_count": 1}, "like": {"_count": 1}}, "Master": {"_count": 1, "says": {"_count": 1}}, "Mrs": {"_count": 1, "Figg": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "Snape": {"_count": 1, "said": {"_count": 1}}, "yeh": {"_count": 1, "say": {"_count": 1}}, "Dumbledore": {"_count": 2, "said": {"_count": 2}}, "the": {"_count": 2, "press": {"_count": 1}, "source": {"_count": 1}}, "repeated": {"_count": 1, "Dumbledore": {"_count": 1}}, "Morfin": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 1, "wrong": {"_count": 1}}}, "shes": {"_count": 217, "not": {"_count": 15, "in": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}, "coming": {"_count": 1}, "said": {"_count": 1}, "supposed": {"_count": 1}, "there": {"_count": 1}, "allowed": {"_count": 1}, "Oh": {"_count": 1}, "writing": {"_count": 1}, "afraid": {"_count": 1}, "taking": {"_count": 1}, "exactly": {"_count": 1}, "is": {"_count": 1}, "expecting": {"_count": 1}}, "a": {"_count": 9, "witch": {"_count": 1}, "nightmare": {"_count": 1}, "prefect": {"_count": 1}, "right": {"_count": 1}, "nasty": {"_count": 1}, "fine": {"_count": 1}, "laugh": {"_count": 1}, "fascinating": {"_count": 1}, "bit": {"_count": 1}}, "got": {"_count": 19, "no": {"_count": 1}, "to": {"_count": 4}, "some": {"_count": 2}, "like": {"_count": 1}, "dung": {"_count": 1}, "used": {"_count": 1}, "an": {"_count": 1}, "any": {"_count": 1}, "Moodys": {"_count": 1}, "the": {"_count": 1}, "just": {"_count": 1}, "me": {"_count": 1}, "her": {"_count": 1}, "rather": {"_count": 1}, "plenty": {"_count": 1}}, "taken": {"_count": 1, "off": {"_count": 1}}, "really": {"_count": 3, "belting": {"_count": 1}, "flying": {"_count": 1}, "nice": {"_count": 1}}, "made": {"_count": 1, "you": {"_count": 1}}, "cleaning": {"_count": 1, "": {"_count": 1}}, "coming": {"_count": 2, "now": {"_count": 1}, "to": {"_count": 1}}, "sent": {"_count": 3, "me": {"_count": 1}, "up": {"_count": 1}, "a": {"_count": 1}}, "begun": {"_count": 1, "to": {"_count": 1}}, "trying": {"_count": 3, "to": {"_count": 3}}, "gone": {"_count": 2, "home": {"_count": 1}, "and": {"_count": 1}}, "only": {"_count": 1, "filling": {"_count": 1}}, "still": {"_count": 5, "there": {"_count": 1}, "sticking": {"_count": 1}, "really": {"_count": 1}, "alive": {"_count": 2}}, "talking": {"_count": 1, "to": {"_count": 1}}, "here": {"_count": 3, "": {"_count": 1}, "to": {"_count": 2}}, "right": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "calmed": {"_count": 1, "down": {"_count": 1}}, "never": {"_count": 4, "missed": {"_count": 2}, "been": {"_count": 1}, "mentioned": {"_count": 1}}, "pretty": {"_count": 2, "good": {"_count": 2}}, "had": {"_count": 3, "some": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}}, "wrong": {"_count": 1, "Hermione": {"_count": 1}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "streaking": {"_count": 1, "up": {"_count": 1}}, "offhunting": {"_count": 1, "at": {"_count": 1}}, "been": {"_count": 11, "shunted": {"_count": 1}, "getting": {"_count": 1}, "dying": {"_count": 1}, "an": {"_count": 1}, "flying": {"_count": 1}, "already": {"_count": 1}, "helping": {"_count": 1}, "stationed": {"_count": 1}, "in": {"_count": 1}, "there": {"_count": 1}, "tortured": {"_count": 1}}, "worth": {"_count": 1, "": {"_count": 1}}, "printed": {"_count": 1, "that": {"_count": 1}}, "found": {"_count": 4, "out": {"_count": 2}, "a": {"_count": 2}}, "washed": {"_count": 1, "all": {"_count": 1}}, "already": {"_count": 4, "told": {"_count": 1}, "having": {"_count": 1}, "got": {"_count": 1}, "gone": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "completely": {"_count": 1, "horrible": {"_count": 1}}, "always": {"_count": 1, "been": {"_count": 1}}, "kidding": {"_count": 1, "Harry": {"_count": 1}}, "quite": {"_count": 2, "brainy": {"_count": 1}, "goodlooking": {"_count": 1}}, "doing": {"_count": 1, "it": {"_count": 1}}, "losing": {"_count": 1, "her": {"_count": 1}}, "obsessed": {"_count": 1, "with": {"_count": 1}}, "changed": {"_count": 1, "since": {"_count": 1}}, "listening": {"_count": 1, "into": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "bringing": {"_count": 1, "now": {"_count": 1}}, "definitely": {"_count": 2, "got": {"_count": 1}, "not": {"_count": 1}}, "part": {"_count": 1, "giant": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}, "kept": {"_count": 1, "her": {"_count": 1}}, "too": {"_count": 3, "young": {"_count": 2}, "important": {"_count": 1}}, "no": {"_count": 2, "better": {"_count": 1}, "Death": {"_count": 1}}, "my": {"_count": 2, "cousin": {"_count": 1}, "sister": {"_count": 1}}, "the": {"_count": 3, "one": {"_count": 1}, "best": {"_count": 2}}, "all": {"_count": 2, "right": {"_count": 2}}, "thicker": {"_count": 1, "than": {"_count": 1}}, "given": {"_count": 2, "you": {"_count": 1}, "us": {"_count": 1}}, "an": {"_count": 3, "evil": {"_count": 1}, "absolutely": {"_count": 1}, "Auror": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "done": {"_count": 1, "": {"_count": 1}}, "inspecting": {"_count": 1, "Binnss": {"_count": 1}}, "bang": {"_count": 1, "out": {"_count": 1}}, "seeing": {"_count": 2, "Michael": {"_count": 1}, "someone": {"_count": 1}}, "including": {"_count": 1, "Quidditch": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 2, "beautiful": {"_count": 1}, "excited": {"_count": 1}}, "injured": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 2, "her": {"_count": 1}, "in": {"_count": 1}}, "on": {"_count": 3, "duty": {"_count": 1}, "a": {"_count": 1}, "er": {"_count": 1}}, "ducked": {"_count": 1, "Warrington": {"_count": 1}}, "passed": {"_count": 1, "Montague": {"_count": 1}}, "ouch": {"_count": 1, "been": {"_count": 1}}, "past": {"_count": 1, "Warrington": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "somethin": {"_count": 1, "when": {"_count": 1}}, "roused": {"_count": 1, "Olympe": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 2}}, "feeling": {"_count": 2, "very": {"_count": 1}, "confused": {"_count": 1}}, "afraid": {"_count": 1, "shes": {"_count": 1}}, "going": {"_count": 3, "to": {"_count": 2}, "out": {"_count": 1}}, "crying": {"_count": 1, "all": {"_count": 1}}, "decorated": {"_count": 1, "it": {"_count": 1}}, "asked": {"_count": 1, "the": {"_count": 1}}, "bewitched": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "no": {"_count": 1}}, "left": {"_count": 1, "it": {"_count": 1}}, "bin": {"_count": 1, "lookin": {"_count": 1}}, "go": {"_count": 1, "the": {"_count": 1}}, "gonna": {"_count": 1, "be": {"_count": 1}}, "like": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 3, "in": {"_count": 1}, "going": {"_count": 1}, "told": {"_count": 1}}, "A": {"_count": 1, "cow": {"_count": 1}}, "staying": {"_count": 1, "in": {"_count": 1}}, "hoping": {"_count": 1, "Bill": {"_count": 1}}, "more": {"_count": 1, "intelligent": {"_count": 1}}, "looked": {"_count": 1, "more": {"_count": 1}}, "good": {"_count": 1, "at": {"_count": 1}}, "goodlooking": {"_count": 1, "dont": {"_count": 1}}, "Rons": {"_count": 2, "sister": {"_count": 2}}, "barking": {"_count": 1, "mad": {"_count": 1}}, "very": {"_count": 1, "nice": {"_count": 1}}, "grown": {"_count": 1, "on": {"_count": 1}}, "insane": {"_count": 1, "but": {"_count": 1}}, "cracking": {"_count": 1, "up": {"_count": 1}}, "ditched": {"_count": 1, "Dean": {"_count": 1}}, "Dorall": {"_count": 1, "be": {"_count": 1}}, "holding": {"_count": 1, "us": {"_count": 1}}, "rude": {"_count": 1, "to": {"_count": 1}}, "written": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 1, "possessed": {"_count": 1}}, "pureblood": {"_count": 1, "": {"_count": 1}}, "getting": {"_count": 1, "pretty": {"_count": 1}}, "finished": {"_count": 1, "with": {"_count": 1}}, "safe": {"_count": 1, "too": {"_count": 1}}}, "Stupid": {"_count": 8, "spell": {"_count": 1, "George": {"_count": 1}}, "useless": {"_count": 1, "thing": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "thing": {"_count": 1, "to": {"_count": 1}}, "little": {"_count": 1, "feathery": {"_count": 1}}, "git": {"_count": 1, "": {"_count": 1}}, "idiot": {"_count": 1, "": {"_count": 1}}, "idea": {"_count": 1, "he": {"_count": 1}}}, "dud": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Gloom": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "settling": {"_count": 8, "on": {"_count": 1, "him": {"_count": 1}}, "itself": {"_count": 1, "down": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "themselves": {"_count": 1, "down": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "himself": {"_count": 2, "in": {"_count": 1}, "ostentatiously": {"_count": 1}}, "it": {"_count": 1, "carefully": {"_count": 1}}}, "flopped": {"_count": 7, "back": {"_count": 2, "into": {"_count": 1}, "on": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "straight": {"_count": 1, "off": {"_count": 1}}, "off": {"_count": 1, "dangling": {"_count": 1}}, "sodden": {"_count": 1, "panting": {"_count": 1}}}, "depressed": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "though": {"_count": 1, "doing": {"_count": 1}}, "Hagrid": {"_count": 1, "told": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}}, "whiskers": {"_count": 7, "are": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Id": {"_count": 1, "take": {"_count": 1}}, "whose": {"_count": 1, "black": {"_count": 1}}, "with": {"_count": 1, "pointed": {"_count": 1}}}, "Romania": {"_count": 9, "studying": {"_count": 2, "dragons": {"_count": 2}}, "and": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "visit": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "Dumbledore": {"_count": 1, "wants": {"_count": 1}}}, "studying": {"_count": 37, "dragons": {"_count": 2, "and": {"_count": 2}}, "advanced": {"_count": 1, "Defense": {"_count": 1}}, "for": {"_count": 6, "you": {"_count": 1}, "": {"_count": 1}, "Care": {"_count": 1}, "their": {"_count": 1}, "Transfiguration": {"_count": 1}, "Potions": {"_count": 1}}, "a": {"_count": 1, "month": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "lost": {"_count": 1, "but": {"_count": 1}}, "they": {"_count": 1, "didnt": {"_count": 1}}, "Ron": {"_count": 2, "sighed": {"_count": 1}, "": {"_count": 1}}, "hard": {"_count": 1, "": {"_count": 1}}, "magic": {"_count": 1, "by": {"_count": 1}}, "it": {"_count": 1, "much": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "or": {"_count": 2, "was": {"_count": 1}, "homework": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "Occlumency": {"_count": 1, "his": {"_count": 1}}, "themselves": {"_count": 1, "his": {"_count": 1}}, "too": {"_count": 1, "which": {"_count": 1}}, "his": {"_count": 1, "mind": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "nobody": {"_count": 1}}, "so": {"_count": 1, "instead": {"_count": 1}}, "Potions": {"_count": 1, "but": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "The": {"_count": 1, "Tales": {"_count": 1}}, "and": {"_count": 1, "duplicating": {"_count": 1}}}, "Africa": {"_count": 2, "doing": {"_count": 1, "something": {"_count": 1}}, "or": {"_count": 1, "somewhere": {"_count": 1}}}, "mustve": {"_count": 46, "been": {"_count": 16, "a": {"_count": 1}, "through": {"_count": 1}, "easy": {"_count": 1}, "fifty": {"_count": 1}, "really": {"_count": 2}, "Muggleborn": {"_count": 1}, "twelve": {"_count": 1}, "Crouch": {"_count": 1}, "an": {"_count": 1}, "mental": {"_count": 1}, "cramped": {"_count": 1}, "him": {"_count": 1}, "inside": {"_count": 1}, "something": {"_count": 1}, "dead": {"_count": 1}}, "noticed": {"_count": 1, "shes": {"_count": 1}}, "cost": {"_count": 1, "you": {"_count": 1}}, "bin": {"_count": 1, "staggerin": {"_count": 1}}, "put": {"_count": 1, "charms": {"_count": 1}}, "thought": {"_count": 1, "He": {"_count": 1}}, "flown": {"_count": 1, "that": {"_count": 1}}, "opened": {"_count": 1, "the": {"_count": 1}}, "stopped": {"_count": 1, "after": {"_count": 1}}, "seen": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "known": {"_count": 5, "Sirius": {"_count": 1}, "hed": {"_count": 1}, "where": {"_count": 1}, "Id": {"_count": 1}, "youd": {"_count": 1}}, "dropped": {"_count": 2, "them": {"_count": 1}, "it": {"_count": 1}}, "done": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "counted": {"_count": 1, "against": {"_count": 1}}, "upset": {"_count": 1, "them": {"_count": 1}}, "had": {"_count": 1, "an": {"_count": 1}}, "looked": {"_count": 1, "funny": {"_count": 1}}, "forgotten": {"_count": 1, "to": {"_count": 1}}, "heard": {"_count": 2, "of": {"_count": 1}, "them": {"_count": 1}}, "dozed": {"_count": 1, "off": {"_count": 1}}, "hidden": {"_count": 1, "the": {"_count": 1}}}, "prickle": {"_count": 7, "of": {"_count": 1, "fear": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 2, "Im": {"_count": 1}, "throb": {"_count": 1}}, "unpleasantly": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "although": {"_count": 1}}}, "mentioned": {"_count": 58, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 2}}, "a": {"_count": 3, "House": {"_count": 1}, "deal": {"_count": 1}, "friendship": {"_count": 1}}, "the": {"_count": 5, "date": {"_count": 1}, "fact": {"_count": 1}, "name": {"_count": 1}, "Malfoys": {"_count": 1}, "place": {"_count": 1}}, "Nicolas": {"_count": 1, "Flamel": {"_count": 1}}, "his": {"_count": 7, "Gringotts": {"_count": 1}, "son": {"_count": 2}, "meeting": {"_count": 1}, "name": {"_count": 2}, "MalfoyIsaDeathEater": {"_count": 1}}, "her": {"_count": 3, "name": {"_count": 2}, "to": {"_count": 1}}, "it": {"_count": 7, "in": {"_count": 1}, "": {"_count": 2}, "yeah": {"_count": 1}, "to": {"_count": 1}, "at": {"_count": 1}, "when": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "yet": {"_count": 1}}, "Black": {"_count": 2, "when": {"_count": 1}, "as": {"_count": 1}}, "something": {"_count": 1, "about": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "how": {"_count": 3, "to": {"_count": 2}, "very": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "in": {"_count": 2, "connection": {"_count": 1}, "his": {"_count": 1}}, "Dad": {"_count": 1, "breaks": {"_count": 1}}, "anything": {"_count": 1, "about": {"_count": 1}}, "Umbridge": {"_count": 1, "Harry": {"_count": 1}}, "Voldemort": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "another": {"_count": 1}}, "Ginny": {"_count": 1, "or": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "Grindelwald": {"_count": 1, "says": {"_count": 1}}, "before": {"_count": 1, "so": {"_count": 1}}, "there": {"_count": 1, "he": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "their": {"_count": 1, "destination": {"_count": 1}}}, "team": {"_count": 240, "": {"_count": 47, "?": {"_count": 5}, ".": {"_count": 39}, "!": {"_count": 3}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "than": {"_count": 2, "last": {"_count": 1}, "Ron": {"_count": 1}}, "too": {"_count": 1, "Beaters": {"_count": 1}}, "is": {"_count": 2, "going": {"_count": 1}, "the": {"_count": 1}}, "practice": {"_count": 2, "three": {"_count": 1}, "an": {"_count": 1}}, "from": {"_count": 1, "scoring": {"_count": 1}}, "the": {"_count": 5, "Weasley": {"_count": 1}, "same": {"_count": 1}, "rest": {"_count": 1}, "Chudley": {"_count": 1}, "Holyhead": {"_count": 1}}, "Harry": {"_count": 2, "reeled": {"_count": 1}, "had": {"_count": 1}}, "an": {"_count": 3, "extra": {"_count": 3}}, "were": {"_count": 8, "changing": {"_count": 1}, "already": {"_count": 1}, "paralyzed": {"_count": 1}, "all": {"_count": 1}, "hoisted": {"_count": 1}, "howling": {"_count": 1}, "standing": {"_count": 1}, "out": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "Gryffindors": {"_count": 1, "had": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "a": {"_count": 2, "bit": {"_count": 1}, "hundred": {"_count": 1}}, "landed": {"_count": 2, "next": {"_count": 1}, "beside": {"_count": 1}}, "hung": {"_count": 1, "back": {"_count": 1}}, "that": {"_count": 4, "Harry": {"_count": 2}, "they": {"_count": 1}, "Potters": {"_count": 1}}, "wasnt": {"_count": 1, "too": {"_count": 1}}, "Longbottom": {"_count": 1, "youve": {"_count": 1}}, "wouldnt": {"_count": 1, "speak": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 1}, "shes": {"_count": 1}}, "robes": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "who": {"_count": 5, "carry": {"_count": 1}, "stood": {"_count": 1}, "put": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 1}}, "throw": {"_count": 1, "the": {"_count": 1}}, "followed": {"_count": 1, "": {"_count": 1}}, "permission": {"_count": 2, "to": {"_count": 2}}, "smiled": {"_count": 1, "still": {"_count": 1}}, "could": {"_count": 2, "think": {"_count": 1}, "they": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "howled": {"_count": 1, "with": {"_count": 1}}, "had": {"_count": 6, "to": {"_count": 1}, "seen": {"_count": 1}, "arrived": {"_count": 1}, "turned": {"_count": 1}, "left": {"_count": 1}, "been": {"_count": 1}}, "was": {"_count": 12, "no": {"_count": 1}, "training": {"_count": 1}, "looking": {"_count": 1}, "hugging": {"_count": 1}, "losing": {"_count": 1}, "pinned": {"_count": 1}, "quite": {"_count": 1}, "hurrying": {"_count": 1}, "sitting": {"_count": 1}, "changed": {"_count": 1}, "so": {"_count": 1}, "smiling": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "mounted": {"_count": 1, "on": {"_count": 1}}, "huddled": {"_count": 2, "at": {"_count": 1}, "together": {"_count": 1}}, "pulled": {"_count": 1, "on": {"_count": 1}}, "jeering": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 10, "let": {"_count": 1}, "Hermione": {"_count": 1}, "find": {"_count": 1}, "assorted": {"_count": 1}, "doing": {"_count": 1}, "bringing": {"_count": 1}, "at": {"_count": 1}, "headed": {"_count": 1}, "Dean": {"_count": 1}, "hugged": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 1}, "suppose": {"_count": 1}}, "practices": {"_count": 3, "every": {"_count": 1}, "to": {"_count": 1}, "too": {"_count": 1}}, "called": {"_count": 1, "a": {"_count": 1}}, "three": {"_count": 1, "Chasers": {"_count": 1}}, "members": {"_count": 4, "in": {"_count": 1}, "its": {"_count": 1}, "were": {"_count": 1}, "themselves": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Ive": {"_count": 2, "thought": {"_count": 1}, "ever": {"_count": 1}}, "started": {"_count": 1, "training": {"_count": 1}}, "some": {"_count": 1, "unwelcome": {"_count": 1}}, "changed": {"_count": 1, "into": {"_count": 1}}, "splashed": {"_count": 1, "down": {"_count": 1}}, "watched": {"_count": 1, "in": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "spattered": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 7, "leave": {"_count": 1}, "eat": {"_count": 1}, "put": {"_count": 1}, "upset": {"_count": 1}, "reform": {"_count": 1}, "divide": {"_count": 1}, "fly": {"_count": 1}}, "trooped": {"_count": 1, "out": {"_count": 1}}, "visited": {"_count": 1, "again": {"_count": 1}}, "as": {"_count": 2, "hard": {"_count": 1}, "Chaser": {"_count": 1}}, "gathered": {"_count": 1, "around": {"_count": 1}}, "cheered": {"_count": 1, "madly": {"_count": 1}}, "inspired": {"_count": 1, "by": {"_count": 1}}, "headed": {"_count": 1, "off": {"_count": 1}}, "laughed": {"_count": 1, "loudly": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "Captain": {"_count": 1, "all": {"_count": 1}}, "led": {"_count": 2, "the": {"_count": 1}, "by": {"_count": 1}}, "arrived": {"_count": 1, "for": {"_count": 1}}, "definitely": {"_count": 1, "wouldnt": {"_count": 1}}, "entered": {"_count": 2, "the": {"_count": 2}}, "behind": {"_count": 1, "him": {"_count": 1}}, "Hogwarts": {"_count": 1, "has": {"_count": 1}}, "sank": {"_count": 1, "yelling": {"_count": 1}}, "of": {"_count": 2, "doctors": {"_count": 1}, "Healers": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "lunch": {"_count": 1}}, "Gryffindor": {"_count": 1, "in": {"_count": 1}}, "mascots": {"_count": 2, "will": {"_count": 1}, "": {"_count": 1}}, "their": {"_count": 1, "movements": {"_count": 1}}, "performs": {"_count": 1, "a": {"_count": 1}}, "Angelina": {"_count": 1, "came": {"_count": 1}}, "there": {"_count": 1, "all": {"_count": 1}}, "for": {"_count": 1, "": {"_count": 1}}, "soaring": {"_count": 1, "up": {"_count": 1}}, "please": {"_count": 1, "Hey": {"_count": 1}}, "Captaincy": {"_count": 1, "": {"_count": 1}}, "training": {"_count": 1, "schedule": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "filed": {"_count": 1, "back": {"_count": 1}}, "spirit": {"_count": 1, "and": {"_count": 1}}, "felt": {"_count": 1, "this": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "rose": {"_count": 1, "shouldered": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "be": {"_count": 1, "allowed": {"_count": 1}}, "reforming": {"_count": 1, "": {"_count": 1}}, "can": {"_count": 1, "continue": {"_count": 1}}, "themselves": {"_count": 1, "were": {"_count": 1}}, "Ginny": {"_count": 1, "Ive": {"_count": 1}}, "Snape": {"_count": 1, "would": {"_count": 1}}, "reported": {"_count": 1, "to": {"_count": 1}}, "after": {"_count": 1, "an": {"_count": 1}}, "member": {"_count": 1, "": {"_count": 1}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "Well": {"_count": 1, "you": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "but": {"_count": 2, "of": {"_count": 1}, "Ginny": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "George": {"_count": 1}, "Hermione": {"_count": 1}}, "punished": {"_count": 1, "soundly": {"_count": 1}}, "streaking": {"_count": 1, "around": {"_count": 1}}, "mightve": {"_count": 1, "dealt": {"_count": 1}}, "messed": {"_count": 1, "up": {"_count": 1}}, "usually": {"_count": 1, "celebrated": {"_count": 1}}, "all": {"_count": 1, "with": {"_count": 1}}}, "confessed": {"_count": 8, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "to": {"_count": 3, "Harry": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "her": {"_count": 1, "feelings": {"_count": 1}}, "sneered": {"_count": 1, "RiddleHarry": {"_count": 1}}}, "dumbfounded": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 1, "the": {"_count": 1}}}, "explaining": {"_count": 23, "all": {"_count": 2, "about": {"_count": 2}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "where": {"_count": 1, "hed": {"_count": 1}}, "the": {"_count": 3, "complicated": {"_count": 1}, "obvious": {"_count": 1}, "many": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "that": {"_count": 3, "one": {"_count": 2}, "he": {"_count": 1}}, "something": {"_count": 2, "to": {"_count": 1}, "very": {"_count": 1}}, "about": {"_count": 2, "hidden": {"_count": 1}, "his": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}, "everything": {"_count": 1, "the": {"_count": 1}}, "how": {"_count": 1, "he": {"_count": 1}}, "what": {"_count": 1, "she": {"_count": 1}}, "Luna": {"_count": 1, "and": {"_count": 1}}, "features": {"_count": 1, "of": {"_count": 1}}}, "positions": {"_count": 8, "of": {"_count": 3, "the": {"_count": 2}, "TroublemakersinChief": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "lest": {"_count": 1, "he": {"_count": 1}}, "himself": {"_count": 1, "close": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "which": {"_count": 1}}}, "players": {"_count": 34, "describing": {"_count": 1, "famous": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "each": {"_count": 1}, "broomsticks": {"_count": 1}}, "off": {"_count": 1, "their": {"_count": 1}}, "could": {"_count": 1, "get": {"_count": 1}}, "and": {"_count": 3, "that": {"_count": 1}, "a": {"_count": 1}, "provide": {"_count": 1}}, "slumped": {"_count": 1, "along": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "rose": {"_count": 1, "toward": {"_count": 1}}, "face": {"_count": 1, "when": {"_count": 1}}, "a": {"_count": 1, "Keeper": {"_count": 1}}, "pointed": {"_count": 1, "green": {"_count": 1}}, "which": {"_count": 1, "strolled": {"_count": 1}}, "down": {"_count": 1, "enough": {"_count": 1}}, "was": {"_count": 1, "incredible": {"_count": 1}}, "were": {"_count": 1, "dancing": {"_count": 1}}, "who": {"_count": 1, "wished": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "pursuit": {"_count": 1}}, "shot": {"_count": 1, "upward": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "left": {"_count": 1, "on": {"_count": 1}}, "with": {"_count": 1, "something": {"_count": 1}}, "missing": {"_count": 1, "and": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "Hermione": {"_count": 1, "corrected": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}, "being": {"_count": 1, "rehearsed": {"_count": 1}}}, "describing": {"_count": 6, "famous": {"_count": 1, "games": {"_count": 1}}, "the": {"_count": 1, "different": {"_count": 1}}, "his": {"_count": 2, "examiners": {"_count": 1}, "conversation": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "perhaps": {"_count": 1, "insensitively": {"_count": 1}}}, "broomstick": {"_count": 101, "hed": {"_count": 1, "like": {"_count": 1}}, "in": {"_count": 4, "front": {"_count": 1}, "his": {"_count": 1}, "private": {"_count": 1}, "Harrys": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 25}, "?": {"_count": 1}}, "later": {"_count": 1, "but": {"_count": 1}}, "was": {"_count": 3, "still": {"_count": 1}, "lying": {"_count": 1}, "feet": {"_count": 1}}, "and": {"_count": 9, "taken": {"_count": 1}, "kicked": {"_count": 4}, "leading": {"_count": 1}, "Harry": {"_count": 1}, "set": {"_count": 1}, "bag": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "sharply": {"_count": 1, "to": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 2}}, "or": {"_count": 4, "theyll": {"_count": 1}, "indeed": {"_count": 1}, "thestral": {"_count": 2}}, "he": {"_count": 6, "said": {"_count": 2}, "let": {"_count": 1}, "had": {"_count": 1}, "looked": {"_count": 1}, "was": {"_count": 1}}, "Professor": {"_count": 1, "said": {"_count": 1}}, "rolled": {"_count": 2, "onto": {"_count": 1}, "out": {"_count": 1}}, "had": {"_count": 2, "arrived": {"_count": 1}, "been": {"_count": 1}}, "except": {"_count": 1, "powerful": {"_count": 1}}, "muttering": {"_count": 1, "he": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Where": {"_count": 1, "is": {"_count": 1}}, "You": {"_count": 1, "have": {"_count": 1}}, "for": {"_count": 1, "support": {"_count": 1}}, "feeling": {"_count": 1, "Gryffindors": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "covered": {"_count": 1, "himself": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "black": {"_count": 1, "robes": {"_count": 1}}, "moving": {"_count": 1, "so": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "thatll": {"_count": 1, "reach": {"_count": 1}}, "servicing": {"_count": 2, "kit": {"_count": 2}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "thatd": {"_count": 1, "hold": {"_count": 1}}, "ENOUGH": {"_count": 1, "": {"_count": 1}}, "showing": {"_count": 1, "off": {"_count": 1}}, "can": {"_count": 1, "get": {"_count": 1}}, "that": {"_count": 1, "isnt": {"_count": 1}}, "handle": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "down": {"_count": 1, "by": {"_count": 1}}, "spun": {"_count": 1, "to": {"_count": 1}}, "broken": {"_count": 1, "into": {"_count": 1}}, "Barely": {"_count": 1, "gripping": {"_count": 1}}, "could": {"_count": 1, "hardly": {"_count": 1}}, "designer": {"_count": 1, "look": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "regulations": {"_count": 1, "and": {"_count": 1}}}, "points": {"_count": 158, "of": {"_count": 3, "the": {"_count": 1}, "what": {"_count": 1}, "our": {"_count": 1}}, "while": {"_count": 2, "any": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 19}, "!": {"_count": 1}}, "is": {"_count": 1, "awarded": {"_count": 1}}, "for": {"_count": 10, "Gryffindor": {"_count": 9}, "them": {"_count": 1}}, "off": {"_count": 3, "Fred": {"_count": 1}, "Gryffindor": {"_count": 2}}, "youll": {"_count": 1, "lose": {"_count": 1}}, "I": {"_count": 1, "got": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "will": {"_count": 3, "be": {"_count": 2}, "get": {"_count": 1}}, "Ron": {"_count": 1, "grumbled": {"_count": 1}}, "from": {"_count": 37, "Gryffindor": {"_count": 28}, "Slytherin": {"_count": 2}, "Ravenclaw": {"_count": 1}, "Hufflepuff": {"_count": 2}, "Harry": {"_count": 1}, "you": {"_count": 1}, "Houses": {"_count": 1}, "Gryff": {"_count": 1}}, "to": {"_count": 15, "sixty": {"_count": 1}, "dish": {"_count": 1}, "Mr": {"_count": 1}, "Gryffindor": {"_count": 3}, "zero": {"_count": 3}, "ten": {"_count": 2}, "twenty": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}, "Slytherin": {"_count": 1}}, "each": {"_count": 2, "said": {"_count": 1}, "Mr": {"_count": 1}}, "lost": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "next": {"_count": 1}, "scenes": {"_count": 1}}, "fewer": {"_count": 1, "than": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 5, "all": {"_count": 1}, "one": {"_count": 1}, "third": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "back": {"_count": 1, "if": {"_count": 1}}, "theyd": {"_count": 1, "lost": {"_count": 1}}, "were": {"_count": 1, "given": {"_count": 1}}, "can": {"_count": 1, "it": {"_count": 1}}, "doesnt": {"_count": 1, "matter": {"_count": 1}}, "are": {"_count": 2, "all": {"_count": 1}, "you": {"_count": 1}}, "stand": {"_count": 1, "thus": {"_count": 1}}, "up": {"_count": 6, "": {"_count": 1}, "said": {"_count": 1}, "Wood": {"_count": 1}, "Harry": {"_count": 1}, "Gryffindor": {"_count": 1}, "if": {"_count": 1}}, "exactly": {"_count": 1, "the": {"_count": 1}}, "taken": {"_count": 1, "from": {"_count": 1}}, "said": {"_count": 3, "Professor": {"_count": 1}, "George": {"_count": 1}, "Harry": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "if": {"_count": 3, "you": {"_count": 2}, "it": {"_count": 1}}, "apiece": {"_count": 2, "for": {"_count": 2}}, "right": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "margin": {"_count": 1}, "tall": {"_count": 1}}, "ahead": {"_count": 3, "if": {"_count": 1}, "Katie": {"_count": 1}, "the": {"_count": 1}}, "around": {"_count": 1, "Britain": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "currently": {"_count": 1, "stand": {"_count": 1}}, "Mr": {"_count": 1, "Viktor": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "ter": {"_count": 1, "Gryffindor": {"_count": 1}}, "Ginny": {"_count": 1, "managed": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "Weasel": {"_count": 1, "King": {"_count": 1}}, "left": {"_count": 1, "in": {"_count": 1}}, "youd": {"_count": 1, "like": {"_count": 1}}, "they": {"_count": 2, "would": {"_count": 2}}, "spilled": {"_count": 1, "its": {"_count": 1}}}, "recognized": {"_count": 109, "the": {"_count": 23, "middle": {"_count": 1}, "figures": {"_count": 1}, "unconscious": {"_count": 1}, "untidy": {"_count": 1}, "letter": {"_count": 1}, "bottlebrush": {"_count": 1}, "symptoms": {"_count": 2}, "pimply": {"_count": 1}, "tea": {"_count": 1}, "goatee": {"_count": 1}, "sounds": {"_count": 1}, "blackbodied": {"_count": 1}, "walk": {"_count": 1}, "long": {"_count": 1}, "danger": {"_count": 1}, "thin": {"_count": 1}, "slowbubbling": {"_count": 1}, "barman": {"_count": 1}, "initials": {"_count": 1}, "triangular": {"_count": 1}, "voice": {"_count": 1}, "dismissal": {"_count": 1}}, "him": {"_count": 6, "at": {"_count": 1}, "because": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "when": {"_count": 1}}, "at": {"_count": 6, "once": {"_count": 6}}, "as": {"_count": 15, "his": {"_count": 2}, "Hermiones": {"_count": 1}, "Hagrids": {"_count": 1}, "the": {"_count": 2}, "Kingsley": {"_count": 1}, "errors": {"_count": 1}, "Dumbledores": {"_count": 2}, "Grawp": {"_count": 1}, "Bane": {"_count": 1}, "Mrs": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}}, "her": {"_count": 2, "as": {"_count": 2}}, "them": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "Peter": {"_count": 1, "for": {"_count": 1}}, "Rons": {"_count": 1, "handwriting": {"_count": 1}}, "his": {"_count": 4, "boots": {"_count": 1}, "writing": {"_count": 1}, "father": {"_count": 1}, "voice": {"_count": 1}}, "it": {"_count": 13, "instantly": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 5}, "for": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}, "partly": {"_count": 1}, "as": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 2}, "as": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "though": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "what": {"_count": 1}}, "vaguely": {"_count": 1, "as": {"_count": 1}}, "you": {"_count": 2, "last": {"_count": 1}, "": {"_count": 1}}, "Harrys": {"_count": 1, "voice": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "a": {"_count": 6, "Slytherin": {"_count": 1}, "Horcrux": {"_count": 1}, "surname": {"_count": 1}, "Snargaluff": {"_count": 1}, "man": {"_count": 1}, "new": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "Parseltongue": {"_count": 1, "even": {"_count": 1}}, "immediately": {"_count": 2, "from": {"_count": 1}, "as": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 1, "at": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "Lunas": {"_count": 1, "style": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "many": {"_count": 1, "familiar": {"_count": 1}}, "Rowena": {"_count": 1, "Ravenclaw": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}}, "interest": {"_count": 69, "than": {"_count": 1, "hed": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 20}}, "in": {"_count": 11, "what": {"_count": 1}, "the": {"_count": 6}, "it": {"_count": 1}, "his": {"_count": 1}, "Potter": {"_count": 1}, "locating": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "all": {"_count": 1}}, "the": {"_count": 1, "police": {"_count": 1}}, "she": {"_count": 1, "worked": {"_count": 1}}, "you": {"_count": 5, "": {"_count": 2}, "in": {"_count": 1}, "he": {"_count": 1}, "know": {"_count": 1}}, "a": {"_count": 2, "couple": {"_count": 1}, "great": {"_count": 1}}, "rose": {"_count": 1, "from": {"_count": 1}}, "all": {"_count": 1, "looked": {"_count": 1}}, "himself": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 2}}, "others": {"_count": 1, "with": {"_count": 1}}, "over": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 5, "excitement": {"_count": 2}, "that": {"_count": 1}, "shes": {"_count": 1}, "Zabini": {"_count": 1}}, "before": {"_count": 1, "tapping": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "had": {"_count": 1, "straightened": {"_count": 1}}, "or": {"_count": 1, "notice": {"_count": 1}}, "looking": {"_count": 1, "from": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "stopped": {"_count": 1, "mopping": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "why": {"_count": 1, "Tottenham": {"_count": 1}}, "perhaps": {"_count": 1, "thinking": {"_count": 1}}, "making": {"_count": 1, "decisions": {"_count": 1}}, "pulling": {"_count": 1, "off": {"_count": 1}}}, "shown": {"_count": 50, "back": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 4, "red": {"_count": 1}, "faintest": {"_count": 1}, "slightest": {"_count": 1}, "book": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 3, "real": {"_count": 1}, "mercy": {"_count": 1}, "whats": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "true": {"_count": 1}}, "himself": {"_count": 1, "before": {"_count": 1}}, "it": {"_count": 2, "but": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Harry": {"_count": 3, "the": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 4, "the": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "reasonably": {"_count": 1}}, "him": {"_count": 3, "the": {"_count": 1}, "afterward": {"_count": 1}, "at": {"_count": 1}}, "bravery": {"_count": 3, "beyond": {"_count": 2}, "equal": {"_count": 1}}, "in": {"_count": 2, "facing": {"_count": 1}, "his": {"_count": 1}}, "confidence": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 4, "on": {"_count": 1}, "nothing": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "aptitude": {"_count": 1, "at": {"_count": 1}}, "much": {"_count": 1, "inclination": {"_count": 1}}, "themselves": {"_count": 1, "averse": {"_count": 1}}, "her": {"_count": 1, "Harry": {"_count": 1}}, "any": {"_count": 1, "inclination": {"_count": 1}}, "respect": {"_count": 1, "even": {"_count": 1}}, "no": {"_count": 2, "hint": {"_count": 1}, "interest": {"_count": 1}}, "Mr": {"_count": 1, "Burke": {"_count": 1}}, "Hermione": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "dozen": {"_count": 1}}, "this": {"_count": 1, "night": {"_count": 1}}, "an": {"_count": 1, "interesting": {"_count": 1}}}, "Both": {"_count": 65, "of": {"_count": 17, "them": {"_count": 11}, "Moodys": {"_count": 1}, "us": {"_count": 4}, "you": {"_count": 1}}, "Harry": {"_count": 5, "and": {"_count": 5}}, "trolleys": {"_count": 1, "hit": {"_count": 1}}, "he": {"_count": 3, "and": {"_count": 3}}, "Neville": {"_count": 1, "and": {"_count": 1}}, "glasses": {"_count": 1, "hissed": {"_count": 1}}, "halfbloods": {"_count": 1, "orphans": {"_count": 1}}, "Ron": {"_count": 6, "and": {"_count": 6}}, "very": {"_count": 1, "bright": {"_count": 1}}, "raised": {"_count": 2, "their": {"_count": 2}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "Black": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "angry": {"_count": 1}}, "were": {"_count": 2, "dressed": {"_count": 1}, "looking": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "Cedric": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "and": {"_count": 1}}, "come": {"_count": 1, "from": {"_count": 1}}, "Harrys": {"_count": 2, "and": {"_count": 2}}, "turned": {"_count": 1, "at": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "buttocks": {"_count": 1, "still": {"_count": 1}}, "the": {"_count": 1, "chandelier": {"_count": 1}}, "nodded": {"_count": 1, "and": {"_count": 1}}, "Sirius": {"_count": 1, "and": {"_count": 1}}, "outsiders": {"_count": 1, "like": {"_count": 1}}, "adults": {"_count": 1, "yelled": {"_count": 1}}, "slid": {"_count": 1, "off": {"_count": 1}}, "scrambled": {"_count": 1, "away": {"_count": 1}}, "fell": {"_count": 1, "backward": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Slughorn": {"_count": 1, "and": {"_count": 1}}, "parents": {"_count": 1, "hugged": {"_count": 1}}, "Patil": {"_count": 1, "twins": {"_count": 1}}}, "thickset": {"_count": 3, "and": {"_count": 1, "looked": {"_count": 1}}, "man": {"_count": 1, "who": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "extremely": {"_count": 124, "mean": {"_count": 1, "": {"_count": 1}}, "dirty": {"_count": 2, "": {"_count": 2}}, "miffed": {"_count": 1, "as": {"_count": 1}}, "worried": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "odd": {"_count": 4, "ferrets": {"_count": 1}, "going": {"_count": 1}, "carrying": {"_count": 1}, "things": {"_count": 1}}, "thirsty": {"_count": 1, "and": {"_count": 1}}, "sick": {"_count": 1, "": {"_count": 1}}, "strict": {"_count": 1, "": {"_count": 1}}, "ugly": {"_count": 2, "baby": {"_count": 1}, "stone": {"_count": 1}}, "easy": {"_count": 1, "but": {"_count": 1}}, "talkative": {"_count": 1, "shadow": {"_count": 1}}, "valuable": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "pleased": {"_count": 2, "with": {"_count": 2}}, "poor": {"_count": 1, "": {"_count": 1}}, "dangerous": {"_count": 2, "": {"_count": 1}, "halfbreeds": {"_count": 1}}, "tense": {"_count": 4, "": {"_count": 3}, "silence": {"_count": 1}}, "angry": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "grave": {"_count": 2, "": {"_count": 2}}, "shabby": {"_count": 1, "set": {"_count": 1}}, "crooked": {"_count": 1, "nose": {"_count": 1}}, "dull": {"_count": 1, "": {"_count": 1}}, "confused": {"_count": 1, "": {"_count": 1}}, "pompous": {"_count": 2, "guard": {"_count": 1}, "": {"_count": 1}}, "early": {"_count": 1, "the": {"_count": 1}}, "white": {"_count": 1, "underneath": {"_count": 1}}, "bloodshot": {"_count": 1, "": {"_count": 1}}, "crowded": {"_count": 1, "noisy": {"_count": 1}}, "nervouslooking": {"_count": 1, "first": {"_count": 1}}, "disappointed": {"_count": 1, "and": {"_count": 1}}, "pretty": {"_count": 1, "": {"_count": 1}}, "nervous": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "entertaining": {"_count": 1, "": {"_count": 1}}, "harassed": {"_count": 1, "": {"_count": 1}}, "foolish": {"_count": 1, "staring": {"_count": 1}}, "wriggly": {"_count": 1, "for": {"_count": 1}}, "hard": {"_count": 3, "to": {"_count": 3}}, "baggy": {"_count": 1, "jeans": {"_count": 1}}, "large": {"_count": 1, "frog": {"_count": 1}}, "badtempered": {"_count": 1, "": {"_count": 1}}, "busy": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "well": {"_count": 5, "fed": {"_count": 1}, "trained": {"_count": 1}, "": {"_count": 3}}, "handsome": {"_count": 1, "boy": {"_count": 1}}, "nasty": {"_count": 1, "look": {"_count": 1}}, "forgetful": {"_count": 1, "boy": {"_count": 1}}, "old": {"_count": 4, "dirty": {"_count": 1}, "": {"_count": 1}, "woman": {"_count": 1}, "weathered": {"_count": 1}}, "comfortable": {"_count": 2, "lying": {"_count": 1}, "": {"_count": 1}}, "annoying": {"_count": 1, "": {"_count": 1}}, "apprehensive": {"_count": 2, "but": {"_count": 1}, "Krum": {"_count": 1}}, "offended": {"_count": 1, "look": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "excited": {"_count": 1, "": {"_count": 1}}, "anxious": {"_count": 1, "": {"_count": 1}}, "powerful": {"_count": 2, "": {"_count": 1}, "wizard": {"_count": 1}}, "stupid": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 2, "to": {"_count": 1}, "just": {"_count": 1}}, "put": {"_count": 2, "out": {"_count": 2}}, "miserable": {"_count": 1, "": {"_count": 1}}, "tipsy": {"_count": 1, "empty": {"_count": 1}}, "hairy": {"_count": 1, "and": {"_count": 1}}, "ungainly": {"_count": 1, "twostep": {"_count": 1}}, "strange": {"_count": 1, "advice": {"_count": 1}}, "irritated": {"_count": 1, "": {"_count": 1}}, "shifty": {"_count": 1, "": {"_count": 1}}, "relieved": {"_count": 1, "that": {"_count": 1}}, "hopeful": {"_count": 1, "yeah": {"_count": 1}}, "sulky": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 2, "if": {"_count": 1}, "": {"_count": 1}}, "twitchy": {"_count": 1, "jumping": {"_count": 1}}, "long": {"_count": 1, "piece": {"_count": 1}}, "agitated": {"_count": 1, "as": {"_count": 1}}, "shocked": {"_count": 1, "": {"_count": 1}}, "realistic": {"_count": 1, "roar": {"_count": 1}}, "frightened": {"_count": 1, "": {"_count": 1}}, "pale": {"_count": 1, "but": {"_count": 1}}, "unhappy": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "mood": {"_count": 1}}, "accurately": {"_count": 1, "having": {"_count": 1}}, "unnerving": {"_count": 1, "": {"_count": 1}}, "gloomy": {"_count": 1, "week": {"_count": 1}}, "dim": {"_count": 1, "the": {"_count": 1}}, "hungry": {"_count": 1, "he": {"_count": 1}}, "able": {"_count": 1, "wizard": {"_count": 1}}, "high": {"_count": 1, "throughout": {"_count": 1}}, "interesting": {"_count": 1, "was": {"_count": 1}}, "murky": {"_count": 1, "past": {"_count": 1}}, "uncomfortable": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "plump": {"_count": 1, "with": {"_count": 1}}, "fortunate": {"_count": 1, "that": {"_count": 1}}, "famous": {"_count": 1, "": {"_count": 1}}}, "bodyguards": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Crabbe": {"_count": 218, "and": {"_count": 142, "this": {"_count": 1}, "Goyle": {"_count": 133}, "Malfoy": {"_count": 1}, "Goyles": {"_count": 2}, "Goylesize": {"_count": 1}, "Gregory": {"_count": 1}, "that": {"_count": 1}, "looked": {"_count": 1}, "Zabini": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "werent": {"_count": 1, "there": {"_count": 1}}, "s": {"_count": 7, "neck": {"_count": 1}, "hairs": {"_count": 1}, "flat": {"_count": 1}, "gigantic": {"_count": 1}, "back": {"_count": 1}, "chest": {"_count": 1}, "head": {"_count": 1}}, "stopped": {"_count": 1, "laughing": {"_count": 1}}, "gleefully": {"_count": 1, "pointed": {"_count": 1}}, "from": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "holds": {"_count": 1, "them": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 2}, ".": {"_count": 5}}, "looked": {"_count": 1, "even": {"_count": 1}}, "was": {"_count": 4, "taller": {"_count": 1}, "sniggering": {"_count": 1}, "cackling": {"_count": 1}, "smiling": {"_count": 1}}, "Goyle": {"_count": 9, "and": {"_count": 5}, "You": {"_count": 1}, "Pansy": {"_count": 1}, "She": {"_count": 1}, "Zabini": {"_count": 1}}, "blundered": {"_count": 1, "forward": {"_count": 1}}, "did": {"_count": 1, "a": {"_count": 1}}, "could": {"_count": 1, "see": {"_count": 1}}, "stumbled": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 1}, "lurched": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "getting": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 4, "sent": {"_count": 1}, "a": {"_count": 1}, "aimed": {"_count": 1}, "used": {"_count": 1}}, "said": {"_count": 1, "Angelina": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "loosen": {"_count": 1, "your": {"_count": 1}}, "Rabastan": {"_count": 1, "go": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 4, "Goyle": {"_count": 4}}, "with": {"_count": 1, "whom": {"_count": 1}}, "standing": {"_count": 1, "five": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "you": {"_count": 1, "and": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "it": {"_count": 1, "wasnt": {"_count": 1}}, "His": {"_count": 1, "voice": {"_count": 1}}, "pointed": {"_count": 1, "his": {"_count": 1}}, "tugging": {"_count": 1, "himself": {"_count": 1}}, "turned": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}, "throwing": {"_count": 1, "off": {"_count": 1}}, "which": {"_count": 1, "narrowly": {"_count": 1}}, "wheeled": {"_count": 1, "around": {"_count": 1}}, "running": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "outstripped": {"_count": 1, "all": {"_count": 1}}, "know": {"_count": 1, "how": {"_count": 1}}}, "Goyle": {"_count": 214, "said": {"_count": 3, "the": {"_count": 1}, "Ron": {"_count": 1}, "Malfoy": {"_count": 1}}, "were": {"_count": 18, "a": {"_count": 1}, "sniggering": {"_count": 1}, "always": {"_count": 1}, "looking": {"_count": 1}, "chuckling": {"_count": 1}, "standing": {"_count": 5}, "both": {"_count": 2}, "laughing": {"_count": 1}, "all": {"_count": 1}, "now": {"_count": 1}, "walking": {"_count": 1}, "gawping": {"_count": 1}, "muttering": {"_count": 1}}, "reached": {"_count": 1, "toward": {"_count": 1}}, "Goyle": {"_count": 1, "let": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "s": {"_count": 10, "knuckle": {"_count": 1}, "forehead": {"_count": 1}, "dull": {"_count": 1}, "finger": {"_count": 1}, "shoulders": {"_count": 1}, "broad": {"_count": 1}, "shadow": {"_count": 1}, "low": {"_count": 1}, "potion": {"_count": 1}, "wand": {"_count": 1}}, "swung": {"_count": 1, "Scabbers": {"_count": 1}}, "looking": {"_count": 2, "pleased": {"_count": 1}, "very": {"_count": 1}}, "sniggered": {"_count": 4, "behind": {"_count": 1}, "": {"_count": 3}}, "who": {"_count": 11, "were": {"_count": 5}, "was": {"_count": 2}, "always": {"_count": 1}, "had": {"_count": 3}}, "behind": {"_count": 2, "him": {"_count": 2}}, "up": {"_count": 1, "here": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 25}, "?": {"_count": 1}, "!": {"_count": 1}}, "but": {"_count": 2, "as": {"_count": 1}, "by": {"_count": 1}}, "sizing": {"_count": 1, "them": {"_count": 1}}, "chuckled": {"_count": 2, "": {"_count": 1}, "trollishly": {"_count": 1}}, "pushed": {"_count": 1, "roughly": {"_count": 1}}, "howled": {"_count": 1, "with": {"_count": 1}}, "single": {"_count": 1, "handed": {"_count": 1}}, "blundered": {"_count": 1, "around": {"_count": 1}}, "cant": {"_count": 1, "burst": {"_count": 1}}, "find": {"_count": 1, "them": {"_count": 1}}, "coming": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 15, "grabbed": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 1}, "led": {"_count": 1}, "Marcus": {"_count": 1}, "kept": {"_count": 1}, "the": {"_count": 2}, "many": {"_count": 1}, "into": {"_count": 1}, "Pansy": {"_count": 2}, "Daphne": {"_count": 1}, "Zabini": {"_count": 1}, "dragged": {"_count": 1}}, "we": {"_count": 1, "wont": {"_count": 1}}, "obviously": {"_count": 1, "didnt": {"_count": 1}}, "stared": {"_count": 1, "back": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 1, "many": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "had": {"_count": 9, "short": {"_count": 1}, "taken": {"_count": 1}, "been": {"_count": 1}, "all": {"_count": 1}, "evidently": {"_count": 1}, "vanished": {"_count": 3}, "done": {"_count": 1}}, "werent": {"_count": 1, "listening": {"_count": 1}}, "cheered": {"_count": 1, "": {"_count": 1}}, "flexed": {"_count": 1, "their": {"_count": 1}}, "was": {"_count": 4, "huddled": {"_count": 1}, "watching": {"_count": 1}, "standing": {"_count": 1}, "too": {"_count": 1}}, "when": {"_count": 1, "Pansy": {"_count": 1}}, "laughed": {"_count": 1, "openly": {"_count": 1}}, "laughing": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 3, "us": {"_count": 1}, "an": {"_count": 1}, "something": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "spun": {"_count": 1, "stupidly": {"_count": 1}}, "caught": {"_count": 1, "some": {"_count": 1}}, "hopped": {"_count": 1, "furiously": {"_count": 1}}, "stood": {"_count": 1, "flabbergasted": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "kept": {"_count": 1, "popping": {"_count": 1}}, "his": {"_count": 1, "enormous": {"_count": 1}}, "Weasley": {"_count": 1, "you": {"_count": 1}}, "guffawed": {"_count": 2, "stupidly": {"_count": 1}, "sycophantically": {"_count": 1}}, "the": {"_count": 2, "moment": {"_count": 1}, "pair": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "bellowed": {"_count": 1, "and": {"_count": 1}}, "look": {"_count": 1, "Snape": {"_count": 1}}, "whose": {"_count": 1, "face": {"_count": 1}}, "Snape": {"_count": 1, "said": {"_count": 1}}, "descending": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "added": {"_count": 1}, "would": {"_count": 1}}, "emptied": {"_count": 1, "his": {"_count": 1}}, "You": {"_count": 1, "are": {"_count": 1}}, "leered": {"_count": 1, "": {"_count": 1}}, "during": {"_count": 1, "Dumbledores": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "carrying": {"_count": 1, "their": {"_count": 1}}, "do": {"_count": 1, "lines": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "lumbering": {"_count": 1, "in": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "Now": {"_count": 1, "I": {"_count": 1}}, "gave": {"_count": 3, "a": {"_count": 2}, "their": {"_count": 1}}, "concentrating": {"_count": 1, "": {"_count": 1}}, "wouldve": {"_count": 1, "torn": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "are": {"_count": 1, "in": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "Slytherin": {"_count": 1}}, "a": {"_count": 1, "trace": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "cracked": {"_count": 1, "his": {"_count": 1}}, "loudly": {"_count": 1, "outside": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "flanking": {"_count": 1, "him": {"_count": 1}}, "She": {"_count": 1, "beckoned": {"_count": 1}}, "resembled": {"_count": 1, "nothing": {"_count": 1}}, "slammed": {"_count": 1, "the": {"_count": 1}}, "reaching": {"_count": 1, "up": {"_count": 1}}, "threw": {"_count": 1, "the": {"_count": 1}}, "Zabini": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "come": {"_count": 1}}, "now": {"_count": 1, "hes": {"_count": 1}}, "with": {"_count": 2, "me": {"_count": 1}, "a": {"_count": 1}}, "intend": {"_count": 1, "to": {"_count": 1}}, "Theyre": {"_count": 1, "not": {"_count": 1}}, "just": {"_count": 1, "do": {"_count": 1}}, "as": {"_count": 2, "lookouts": {"_count": 1}, "usual": {"_count": 1}}, "keeping": {"_count": 1, "watch": {"_count": 1}}, "moving": {"_count": 1, "around": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "transforming": {"_count": 1, "into": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "love": {"_count": 1, "it": {"_count": 1}}, "leapt": {"_count": 1, "foolishly": {"_count": 1}}, "anywhere": {"_count": 1, "He": {"_count": 1}}, "onto": {"_count": 1, "their": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "remained": {"_count": 1, "slumped": {"_count": 1}}}, "carelessly": {"_count": 10, "noticing": {"_count": 1, "where": {"_count": 1}}, "flicking": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "glancing": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "rewrapped": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "up": {"_count": 1, "against": {"_count": 1}}, "handsome": {"_count": 1, "his": {"_count": 1}}}, "Malfoy": {"_count": 1181, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "": {"_count": 153, ".": {"_count": 128}, "?": {"_count": 21}, "!": {"_count": 4}}, "looked": {"_count": 19, "at": {"_count": 4}, "stunned": {"_count": 1}, "up": {"_count": 5}, "even": {"_count": 1}, "as": {"_count": 2}, "angrier": {"_count": 1}, "angry": {"_count": 1}, "rather": {"_count": 1}, "nervously": {"_count": 1}, "in": {"_count": 1}, "around": {"_count": 1}}, "didnt": {"_count": 6, "go": {"_count": 1}, "move": {"_count": 1}, "seem": {"_count": 1}, "notice": {"_count": 1}, "reappear": {"_count": 1}, "dare": {"_count": 1}}, "sneered": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "backed": {"_count": 1, "away": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "swaggered": {"_count": 1, "forward": {"_count": 1}}, "went": {"_count": 6, "to": {"_count": 1}, "on": {"_count": 1}, "unnoticed": {"_count": 1}, "even": {"_count": 1}, "haring": {"_count": 1}, "pale": {"_count": 1}}, "who": {"_count": 33, "Harry": {"_count": 2}, "was": {"_count": 14}, "couldnt": {"_count": 1}, "had": {"_count": 2}, "didnt": {"_count": 1}, "looked": {"_count": 3}, "said": {"_count": 1}, "obviously": {"_count": 1}, "seemed": {"_count": 1}, "lay": {"_count": 1}, "shouted": {"_count": 1}, "smiled": {"_count": 1}, "turned": {"_count": 1}, "hopefully": {"_count": 1}, "bizarrely": {"_count": 1}, "must": {"_count": 1}}, "laughing": {"_count": 1, "at": {"_count": 1}}, "turned": {"_count": 5, "into": {"_count": 1}, "his": {"_count": 2}, "and": {"_count": 1}, "slowly": {"_count": 1}}, "and": {"_count": 48, "his": {"_count": 6}, "Crabbe": {"_count": 1}, "to": {"_count": 1}, "Snape": {"_count": 5}, "Ron": {"_count": 1}, "Fang": {"_count": 2}, "if": {"_count": 1}, "some": {"_count": 1}, "shouted": {"_count": 1}, "Potter": {"_count": 1}, "that": {"_count": 2}, "then": {"_count": 1}, "Harry": {"_count": 3}, "Ill": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 7}, "said": {"_count": 1}, "even": {"_count": 1}, "a": {"_count": 2}, "Pansy": {"_count": 2}, "Bellatrixs": {"_count": 1}, "there": {"_count": 1}, "Nott": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "Goyle": {"_count": 2}}, "Crabbe": {"_count": 38, "and": {"_count": 35}, "Goyle": {"_count": 2}, "or": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 56, "stewed": {"_count": 1}, "been": {"_count": 10}, "leapt": {"_count": 1}, "gone": {"_count": 1}, "seen": {"_count": 1}, "gotten": {"_count": 1}, "said": {"_count": 4}, "already": {"_count": 2}, "set": {"_count": 1}, "no": {"_count": 1}, "faced": {"_count": 1}, "definitely": {"_count": 1}, "always": {"_count": 1}, "arrived": {"_count": 1}, "appeared": {"_count": 2}, "tipped": {"_count": 1}, "thrown": {"_count": 1}, "reappeared": {"_count": 1}, "done": {"_count": 1}, "to": {"_count": 1}, "noticed": {"_count": 1}, "just": {"_count": 1}, "landed": {"_count": 1}, "entered": {"_count": 1}, "a": {"_count": 1}, "slid": {"_count": 1}, "found": {"_count": 1}, "deflected": {"_count": 1}, "disappeared": {"_count": 1}, "glanced": {"_count": 1}, "": {"_count": 1}, "more": {"_count": 1}, "expected": {"_count": 1}, "broken": {"_count": 1}, "asked": {"_count": 1}, "once": {"_count": 1}, "composed": {"_count": 1}, "dark": {"_count": 1}, "flushed": {"_count": 1}, "vanished": {"_count": 1}, "stepped": {"_count": 1}, "mended": {"_count": 1}}, "much": {"_count": 2, "": {"_count": 1}, "thought": {"_count": 1}}, "certainly": {"_count": 1, "did": {"_count": 1}}, "s": {"_count": 11, "eagle": {"_count": 1}, "shoes": {"_count": 1}, "fault": {"_count": 1}, "advice": {"_count": 1}, "pocket": {"_count": 1}, "steeds": {"_count": 1}, "thanks": {"_count": 1}, "using": {"_count": 1}, "": {"_count": 1}, "doing": {"_count": 1}, "hand": {"_count": 1}}, "but": {"_count": 10, "Professor": {"_count": 1}, "Harry": {"_count": 2}, "Hermione": {"_count": 1}, "couldnt": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "watched": {"_count": 1}, "unfortunately": {"_count": 1}, "you": {"_count": 1}}, "quickly": {"_count": 4, "dropped": {"_count": 1}, "": {"_count": 2}, "looking": {"_count": 1}}, "hed": {"_count": 2, "been": {"_count": 1}, "think": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "snapped": {"_count": 2, "Parvati": {"_count": 1}, "back": {"_count": 1}}, "darting": {"_count": 1, "forward": {"_count": 1}}, "said": {"_count": 33, "Harry": {"_count": 9}, "Neville": {"_count": 1}, "": {"_count": 2}, "Ron": {"_count": 5}, "Percy": {"_count": 1}, "Snape": {"_count": 1}, "nothing": {"_count": 2}, "it": {"_count": 1}, "to": {"_count": 1}, "anything": {"_count": 1}, "Hermione": {"_count": 2}, "quietly": {"_count": 1}, "on": {"_count": 2}, "Ernie": {"_count": 1}, "about": {"_count": 1}, "no": {"_count": 1}, "he": {"_count": 1}}, "smiled": {"_count": 2, "nastily": {"_count": 1}, "unpleasantly": {"_count": 1}}, "in": {"_count": 16, "midair": {"_count": 1}, "detention": {"_count": 1}, "hatred": {"_count": 1}, "case": {"_count": 2}, "the": {"_count": 3}, "his": {"_count": 1}, "a": {"_count": 3}, "front": {"_count": 1}, "ecstasy": {"_count": 1}, "an": {"_count": 1}, "Harrys": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "like": {"_count": 4, "a": {"_count": 2}, "him": {"_count": 1}, "Tonks": {"_count": 1}}, "only": {"_count": 1, "just": {"_count": 1}}, "Harry": {"_count": 12, "called": {"_count": 1}, "said": {"_count": 1}, "explained": {"_count": 1}, "shot": {"_count": 1}, "glancing": {"_count": 1}, "overheard": {"_count": 1}, "": {"_count": 2}, "repeated": {"_count": 1}, "flattened": {"_count": 1}, "told": {"_count": 2}}, "Thats": {"_count": 1, "enough": {"_count": 1}}, "flanked": {"_count": 2, "by": {"_count": 2}}, "were": {"_count": 3, "saying": {"_count": 1}, "now": {"_count": 1}, "alone": {"_count": 1}}, "facetoface": {"_count": 1, "": {"_count": 1}}, "leapt": {"_count": 1, "in": {"_count": 1}}, "tricked": {"_count": 1, "you": {"_count": 1}}, "must": {"_count": 2, "have": {"_count": 2}}, "couldnt": {"_count": 1, "believe": {"_count": 1}}, "seized": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 8, "Comet": {"_count": 1}, "black": {"_count": 1}, "few": {"_count": 1}, "governor": {"_count": 1}, "fourthyear": {"_count": 1}, "Hogwarts": {"_count": 1}, "disgusted": {"_count": 1}, "prefect": {"_count": 1}}, "here": {"_count": 1, "that": {"_count": 1}}, "one": {"_count": 2, "Potions": {"_count": 1}, "more": {"_count": 1}}, "jealous": {"_count": 1, "and": {"_count": 1}}, "just": {"_count": 3, "as": {"_count": 1}, "to": {"_count": 1}, "docked": {"_count": 1}}, "was": {"_count": 88, "insultin": {"_count": 1}, "only": {"_count": 1}, "smirking": {"_count": 2}, "on": {"_count": 1}, "staying": {"_count": 1}, "making": {"_count": 1}, "strolling": {"_count": 1}, "going": {"_count": 1}, "surely": {"_count": 1}, "looking": {"_count": 2}, "strutting": {"_count": 1}, "thrown": {"_count": 1}, "talking": {"_count": 2}, "almost": {"_count": 1}, "speaking": {"_count": 1}, "staring": {"_count": 1}, "at": {"_count": 2}, "still": {"_count": 4}, "easily": {"_count": 1}, "panting": {"_count": 1}, "sliding": {"_count": 1}, "streaking": {"_count": 2}, "diving": {"_count": 1}, "miles": {"_count": 1}, "certain": {"_count": 1}, "furious": {"_count": 1}, "standing": {"_count": 3}, "too": {"_count": 1}, "particularly": {"_count": 1}, "in": {"_count": 1}, "gloating": {"_count": 1}, "holding": {"_count": 3}, "cleared": {"_count": 1}, "a": {"_count": 1}, "being": {"_count": 1}, "whispering": {"_count": 1}, "doing": {"_count": 5}, "curled": {"_count": 1}, "leaning": {"_count": 1}, "watching": {"_count": 1}, "blasted": {"_count": 1}, "hurrying": {"_count": 1}, "sure": {"_count": 1}, "sneering": {"_count": 1}, "up": {"_count": 5}, "arrested": {"_count": 1}, "riding": {"_count": 1}, "miming": {"_count": 1}, "not": {"_count": 3}, "the": {"_count": 1}, "within": {"_count": 1}, "striding": {"_count": 1}, "definitely": {"_count": 1}, "and": {"_count": 1}, "actually": {"_count": 1}, "using": {"_count": 1}, "now": {"_count": 1}, "begrudging": {"_count": 1}, "already": {"_count": 1}, "crying": {"_count": 1}, "trying": {"_count": 1}, "great": {"_count": 1}, "showing": {"_count": 2}, "buffeted": {"_count": 1}, "screaming": {"_count": 1}}, "expelled": {"_count": 1, "which": {"_count": 1}}, "using": {"_count": 1, "it": {"_count": 1}}, "grinned": {"_count": 1, "broadly": {"_count": 1}}, "loudly": {"_count": 7, "a": {"_count": 1}, "": {"_count": 4}, "as": {"_count": 1}, "and": {"_count": 1}}, "he": {"_count": 6, "stammered": {"_count": 1}, "said": {"_count": 1}, "gasped": {"_count": 1}, "could": {"_count": 1}, "did": {"_count": 1}, "was": {"_count": 1}}, "knew": {"_count": 1, "what": {"_count": 1}}, "could": {"_count": 6, "go": {"_count": 1}, "have": {"_count": 2}, "hear": {"_count": 1}, "open": {"_count": 1}, "see": {"_count": 1}}, "told": {"_count": 4, "Madam": {"_count": 1}, "our": {"_count": 1}, "Pansy": {"_count": 1}, "her": {"_count": 1}}, "took": {"_count": 3, "hes": {"_count": 1}, "the": {"_count": 1}, "something": {"_count": 1}}, "doesnt": {"_count": 1, "know": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 2}, "force": {"_count": 1}}, "they": {"_count": 1, "waited": {"_count": 1}}, "saying": {"_count": 3, "he": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}}, "some": {"_count": 1, "cockand": {"_count": 1}}, "stopped": {"_count": 4, "dead": {"_count": 1}, "laughing": {"_count": 1}, "talking": {"_count": 1}, "short": {"_count": 1}}, "now": {"_count": 2, "turned": {"_count": 1}, "and": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "Neville": {"_count": 2, "and": {"_count": 2}}, "has": {"_count": 2, "but": {"_count": 1}, "just": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}, "let": {"_count": 3, "out": {"_count": 3}}, "banging": {"_count": 1, "his": {"_count": 1}}, "came": {"_count": 4, "back": {"_count": 3}, "through": {"_count": 1}}, "made": {"_count": 4, "Dudley": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 2}}, "usually": {"_count": 1, "had": {"_count": 1}}, "strutting": {"_count": 1, "around": {"_count": 1}}, "would": {"_count": 11, "do": {"_count": 1}, "probably": {"_count": 1}, "be": {"_count": 2}, "say": {"_count": 2}, "get": {"_count": 1}, "not": {"_count": 1}, "spread": {"_count": 1}, "have": {"_count": 2}}, "stepped": {"_count": 3, "into": {"_count": 1}, "backward": {"_count": 1}, "forward": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 4, "sulky": {"_count": 2}, "at": {"_count": 1}, "resentful": {"_count": 1}}, "bent": {"_count": 3, "down": {"_count": 2}, "forward": {"_count": 1}}, "with": {"_count": 10, "a": {"_count": 3}, "dislike": {"_count": 1}, "great": {"_count": 1}, "his": {"_count": 2}, "the": {"_count": 1}, "ill": {"_count": 1}, "undisguised": {"_count": 1}}, "what": {"_count": 2, "a": {"_count": 1}, "did": {"_count": 1}}, "too": {"_count": 1, "charmed": {"_count": 1}}, "taking": {"_count": 4, "a": {"_count": 1}, "in": {"_count": 1}, "an": {"_count": 1}, "care": {"_count": 1}}, "still": {"_count": 2, "commands": {"_count": 1}, "for": {"_count": 1}}, "coldly": {"_count": 1, "and": {"_count": 1}}, "more": {"_count": 3, "coldly": {"_count": 1}, "than": {"_count": 1}, "forcefully": {"_count": 1}}, "his": {"_count": 13, "long": {"_count": 1}, "pale": {"_count": 4}, "voice": {"_count": 3}, "son": {"_count": 1}, "eyes": {"_count": 1}, "fingers": {"_count": 1}, "face": {"_count": 1}, "wand": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 1}, "once": {"_count": 2}, "Quidditch": {"_count": 1}}, "buy": {"_count": 2, "anything": {"_count": 1}, "his": {"_count": 1}}, "for": {"_count": 2, "something": {"_count": 1}, "me": {"_count": 1}}, "as": {"_count": 11, "if": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 2}, "much": {"_count": 1}, "well": {"_count": 1}, "though": {"_count": 3}, "Dumbledore": {"_count": 1}, "soon": {"_count": 1}}, "knocking": {"_count": 1, "him": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}, "roared": {"_count": 3, "to": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "slide": {"_count": 1, "smirking": {"_count": 1}}, "smugly": {"_count": 1, "": {"_count": 1}}, "smoothly": {"_count": 2, "": {"_count": 2}}, "to": {"_count": 14, "stop": {"_count": 1}, "Harry": {"_count": 1}, "mess": {"_count": 1}, "milk": {"_count": 1}, "do": {"_count": 1}, "put": {"_count": 1}, "pass": {"_count": 1}, "allow": {"_count": 1}, "make": {"_count": 1}, "Borgin": {"_count": 1}, "his": {"_count": 1}, "hear": {"_count": 1}, "smuggle": {"_count": 1}, "find": {"_count": 1}}, "called": {"_count": 6, "Hermione": {"_count": 1}, "her": {"_count": 1}, "sir": {"_count": 1}, "in": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}}, "wouldve": {"_count": 1, "come": {"_count": 1}}, "Of": {"_count": 1, "course": {"_count": 1}}, "the": {"_count": 5, "Heir": {"_count": 1}, "better": {"_count": 1}, "amazing": {"_count": 1}, "panic": {"_count": 1}, "truth": {"_count": 1}}, "Ill": {"_count": 2, "go": {"_count": 1}, "bet": {"_count": 1}}, "off": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "or": {"_count": 4, "die": {"_count": 1}, "Snape": {"_count": 1}, "even": {"_count": 1}, "somebody": {"_count": 1}}, "shooting": {"_count": 1, "underneath": {"_count": 1}}, "busy": {"_count": 1, "laughing": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "mustve": {"_count": 2, "opened": {"_count": 1}, "been": {"_count": 1}}, "got": {"_count": 5, "a": {"_count": 1}, "Hermione": {"_count": 1}, "him": {"_count": 1}, "into": {"_count": 1}, "past": {"_count": 1}}, "hurry": {"_count": 1, "forward": {"_count": 1}}, "come": {"_count": 1, "over": {"_count": 1}}, "strutted": {"_count": 1, "over": {"_count": 1}}, "barely": {"_count": 1, "inclined": {"_count": 1}}, "sank": {"_count": 2, "to": {"_count": 1}, "back": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "pointed": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "into": {"_count": 5, "the": {"_count": 1}, "giving": {"_count": 1}, "telling": {"_count": 2}, "a": {"_count": 1}}, "smirked": {"_count": 2, "too": {"_count": 1}, "across": {"_count": 1}}, "so": {"_count": 4, "that": {"_count": 1}, "closely": {"_count": 1}, "dont": {"_count": 1}, "excited": {"_count": 1}}, "raised": {"_count": 2, "his": {"_count": 2}}, "shouting": {"_count": 1, "Youll": {"_count": 1}}, "did": {"_count": 8, "had": {"_count": 1}, "a": {"_count": 2}, "yet": {"_count": 1}, "something": {"_count": 1}, "after": {"_count": 1}, "nothing": {"_count": 1}, "not": {"_count": 1}}, "dont": {"_count": 2, "you": {"_count": 1}, "forget": {"_count": 1}}, "glanced": {"_count": 3, "witheringly": {"_count": 1}, "around": {"_count": 1}, "sideways": {"_count": 1}}, "paused": {"_count": 1, "by": {"_count": 1}}, "not": {"_count": 3, "listening": {"_count": 1}, "playing": {"_count": 1}, "to": {"_count": 1}}, "marched": {"_count": 2, "through": {"_count": 1}, "inside": {"_count": 1}}, "impatiently": {"_count": 1, "as": {"_count": 1}}, "scornfully": {"_count": 1, "": {"_count": 1}}, "snickering": {"_count": 1, "": {"_count": 1}}, "started": {"_count": 1, "taking": {"_count": 1}}, "seemed": {"_count": 3, "satisfied": {"_count": 1}, "to": {"_count": 2}}, "slowly": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "advancing": {"_count": 1}}, "petulantly": {"_count": 1, "": {"_count": 1}}, "hadnt": {"_count": 2, "noticed": {"_count": 1}, "joined": {"_count": 1}}, "stoop": {"_count": 1, "and": {"_count": 1}}, "waving": {"_count": 1, "the": {"_count": 1}}, "found": {"_count": 1, "the": {"_count": 1}}, "strode": {"_count": 1, "into": {"_count": 1}}, "sneering": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "lazily": {"_count": 1, "taking": {"_count": 1}}, "if": {"_count": 2, "Dumbledore": {"_count": 1}, "hes": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "bowing": {"_count": 1, "": {"_count": 1}}, "smirking": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "character": {"_count": 1, "said": {"_count": 1}}, "stood": {"_count": 5, "there": {"_count": 1}, "for": {"_count": 1}, "frozen": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 1}}, "almost": {"_count": 1, "knocked": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "closely": {"_count": 1, "": {"_count": 1}}, "straight": {"_count": 1, "in": {"_count": 1}}, "shot": {"_count": 2, "Harry": {"_count": 1}, "at": {"_count": 1}}, "forced": {"_count": 1, "himself": {"_count": 1}}, "then": {"_count": 4, "punching": {"_count": 1}, "took": {"_count": 1}, "saw": {"_count": 1}, "you": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "ripped": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "elbowed": {"_count": 1, "past": {"_count": 1}}, "gave": {"_count": 6, "Professor": {"_count": 1}, "me": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 2}, "Katie": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "looks": {"_count": 1, "after": {"_count": 1}}, "repeated": {"_count": 3, "": {"_count": 3}}, "drawled": {"_count": 1, "loud": {"_count": 1}}, "yelled": {"_count": 3, "as": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "putting": {"_count": 1, "on": {"_count": 1}}, "set": {"_count": 1, "up": {"_count": 1}}, "Weasleys": {"_count": 1, "mutilating": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 1, "speaking": {"_count": 1}}, "lowering": {"_count": 1, "his": {"_count": 1}}, "watching": {"_count": 1, "closely": {"_count": 1}}, "mean": {"_count": 1, "": {"_count": 1}}, "passed": {"_count": 1, "them": {"_count": 1}}, "spent": {"_count": 1, "much": {"_count": 1}}, "which": {"_count": 1, "hit": {"_count": 1}}, "knows": {"_count": 3, "he": {"_count": 1}, "about": {"_count": 1}, "of": {"_count": 1}}, "thinks": {"_count": 1, "is": {"_count": 1}}, "eyes": {"_count": 1, "glittering": {"_count": 1}}, "whether": {"_count": 1, "Harrys": {"_count": 1}}, "quite": {"_count": 1, "a": {"_count": 1}}, "fighting": {"_count": 1, "to": {"_count": 1}}, "suddenly": {"_count": 1, "caught": {"_count": 1}}, "wiping": {"_count": 1, "his": {"_count": 1}}, "stared": {"_count": 2, "at": {"_count": 2}}, "tells": {"_count": 1, "anyone": {"_count": 1}}, "believe": {"_count": 1, "what": {"_count": 1}}, "states": {"_count": 1, "that": {"_count": 1}}, "is": {"_count": 5, "not": {"_count": 2}, "anyway": {"_count": 1}, "a": {"_count": 1}, "doing": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}, "staggered": {"_count": 1, "": {"_count": 1}}, "muttered": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 3, "was": {"_count": 2}, "think": {"_count": 1}}, "on": {"_count": 5, "his": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 2}}, "saw": {"_count": 2, "it": {"_count": 1}, "him": {"_count": 1}}, "speeding": {"_count": 1, "along": {"_count": 1}}, "anywhere": {"_count": 3, "near": {"_count": 1}, "suspicious": {"_count": 1}, "and": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "family": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 2, "out": {"_count": 2}}, "grinning": {"_count": 1, "maliciously": {"_count": 1}}, "chuckled": {"_count": 1, "softly": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "pointing": {"_count": 3, "at": {"_count": 1}, "toward": {"_count": 1}, "his": {"_count": 1}}, "howled": {"_count": 1, "with": {"_count": 1}}, "beckoned": {"_count": 1, "to": {"_count": 1}}, "get": {"_count": 1, "to": {"_count": 1}}, "clapping": {"_count": 1, "as": {"_count": 1}}, "sarcastically": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "said": {"_count": 1}}, "brandishing": {"_count": 1, "a": {"_count": 1}}, "straightened": {"_count": 1, "the": {"_count": 1}}, "flipping": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "expression": {"_count": 1}}, "whose": {"_count": 3, "pale": {"_count": 1}, "sleek": {"_count": 1}, "face": {"_count": 1}}, "resentfully": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "flatly": {"_count": 1, "when": {"_count": 1}}, "flushed": {"_count": 1, "with": {"_count": 1}}, "arrived": {"_count": 1, "at": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "softly": {"_count": 4, "": {"_count": 3}, "looking": {"_count": 1}}, "put": {"_count": 2, "his": {"_count": 2}}, "around": {"_count": 2, "the": {"_count": 1}, "school": {"_count": 1}}, "flashing": {"_count": 1, "his": {"_count": 1}}, "doing": {"_count": 1, "": {"_count": 1}}, "shouted": {"_count": 2, "across": {"_count": 1}, "at": {"_count": 1}}, "Snape": {"_count": 1, "made": {"_count": 1}}, "muttering": {"_count": 1, "something": {"_count": 1}}, "under": {"_count": 1, "that": {"_count": 1}}, "since": {"_count": 1, "he": {"_count": 1}}, "coolly": {"_count": 2, "": {"_count": 2}}, "dared": {"_count": 1, "look": {"_count": 1}}, "raising": {"_count": 2, "his": {"_count": 2}}, "smoothing": {"_count": 1, "the": {"_count": 1}}, "swelled": {"_count": 1, "again": {"_count": 1}}, "replied": {"_count": 1, "Harry": {"_count": 1}}, "wont": {"_count": 1, "abuse": {"_count": 1}}, "followed": {"_count": 2, "by": {"_count": 1}, "how": {"_count": 1}}, "laughed": {"_count": 3, "": {"_count": 1}, "loudly": {"_count": 1}, "even": {"_count": 1}}, "striding": {"_count": 1, "toward": {"_count": 1}}, "leaned": {"_count": 1, "across": {"_count": 1}}, "walked": {"_count": 2, "away": {"_count": 2}}, "know": {"_count": 1, "something": {"_count": 1}}, "recognizes": {"_count": 1, "you": {"_count": 1}}, "41": {"_count": 1, "speaking": {"_count": 1}}, "sniggered": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "look": {"_count": 4, "up": {"_count": 1}, "so": {"_count": 1}, "that": {"_count": 1}, "almost": {"_count": 1}}, "hastened": {"_count": 1, "to": {"_count": 1}}, "faces": {"_count": 1, "set": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}, "imitated": {"_count": 1, "Ron": {"_count": 1}}, "singing": {"_count": 1, "loudly": {"_count": 1}}, "leering": {"_count": 1, "as": {"_count": 1}}, "yelling": {"_count": 1, "George": {"_count": 1}}, "provoked": {"_count": 1, "us": {"_count": 1}}, "offered": {"_count": 1, "you": {"_count": 1}}, "say": {"_count": 1, "sharply": {"_count": 1}}, "discomfort": {"_count": 1, "was": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "recognized": {"_count": 1, "you": {"_count": 1}}, "prominent": {"_count": 1, "among": {"_count": 1}}, "whispered": {"_count": 1, "something": {"_count": 1}}, "heard": {"_count": 1, "him": {"_count": 1}}, "concealed": {"_count": 1, "in": {"_count": 1}}, "boy": {"_count": 6, "cornered": {"_count": 1}, "oh": {"_count": 1}, "is": {"_count": 2}, "had": {"_count": 1}, "murder": {"_count": 1}}, "sped": {"_count": 1, "in": {"_count": 1}}, "mouthed": {"_count": 1, "Remedial": {"_count": 1}}, "telling": {"_count": 1, "the": {"_count": 1}}, "throw": {"_count": 1, "a": {"_count": 1}}, "stowed": {"_count": 1, "Harrys": {"_count": 1}}, "always": {"_count": 1, "speaks": {"_count": 1}}, "eagerly": {"_count": 1, "Professor": {"_count": 1}}, "do": {"_count": 2, "you": {"_count": 1}, "that": {"_count": 1}}, "BatBogey": {"_count": 1, "Hex": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "sneeringly": {"_count": 1, "": {"_count": 1}}, "sounding": {"_count": 1, "maliciously": {"_count": 1}}, "sounded": {"_count": 1, "incredulously": {"_count": 1}}, "roar": {"_count": 1, "Leave": {"_count": 1}}, "pulling": {"_count": 1, "off": {"_count": 1}}, "jumped": {"_count": 2, "forward": {"_count": 1}, "out": {"_count": 1}}, "smash": {"_count": 1, "into": {"_count": 1}}, "aimed": {"_count": 1, "his": {"_count": 1}}, "advancing": {"_count": 1, "now": {"_count": 1}}, "quietly": {"_count": 2, "": {"_count": 2}}, "sir": {"_count": 1, "said": {"_count": 1}}, "squirm": {"_count": 1, "above": {"_count": 1}}, "docking": {"_count": 1, "points": {"_count": 1}}, "strolled": {"_count": 1, "out": {"_count": 1}}, "snarled": {"_count": 1, "": {"_count": 1}}, "slapping": {"_count": 1, "her": {"_count": 1}}, "stalked": {"_count": 1, "out": {"_count": 1}}, "well": {"_count": 1, "hes": {"_count": 1}}, "wants": {"_count": 2, "both": {"_count": 1}, "something": {"_count": 1}}, "revenge": {"_count": 1, "": {"_count": 1}}, "join": {"_count": 2, "": {"_count": 2}}, "jump": {"_count": 1, "about": {"_count": 1}}, "sniggering": {"_count": 1, "lay": {"_count": 1}}, "sat": {"_count": 1, "up": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "Harry": {"_count": 1}}, "yawned": {"_count": 1, "ostentatiously": {"_count": 1}}, "apparently": {"_count": 1, "they": {"_count": 1}}, "shrugged": {"_count": 1, "": {"_count": 1}}, "clearly": {"_count": 1, "relishing": {"_count": 1}}, "moved": {"_count": 1, "over": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "dragged": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 2, "the": {"_count": 1}, "at": {"_count": 1}}, "oneonone": {"_count": 1, "": {"_count": 1}}, "miming": {"_count": 1, "something": {"_count": 1}}, "lean": {"_count": 1, "close": {"_count": 1}}, "riffling": {"_count": 1, "feverishly": {"_count": 1}}, "really": {"_count": 1, "wanted": {"_count": 1}}, "cutting": {"_count": 1, "up": {"_count": 1}}, "cant": {"_count": 1, "have": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "couldve": {"_count": 1, "sent": {"_count": 1}}, "purely": {"_count": 1, "because": {"_count": 1}}, "wasnt": {"_count": 1, "in": {"_count": 1}}, "been": {"_count": 1, "one": {"_count": 1}}, "pay": {"_count": 1, "you": {"_count": 1}}, "have": {"_count": 1, "brought": {"_count": 1}}, "being": {"_count": 1, "dragged": {"_count": 1}}, "pulled": {"_count": 2, "himself": {"_count": 1}, "him": {"_count": 1}}, "close": {"_count": 1, "up": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "threatened": {"_count": 1, "Borgin": {"_count": 1}}, "Dumbledore": {"_count": 1, "spoke": {"_count": 1}}, "be": {"_count": 1, "quiet": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "spun": {"_count": 1, "around": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "simply": {"_count": 1, "vanished": {"_count": 1}}, "walking": {"_count": 1, "toward": {"_count": 1}}, "pushed": {"_count": 1, "past": {"_count": 1}}, "skulking": {"_count": 1, "off": {"_count": 1}}, "sneaking": {"_count": 1, "off": {"_count": 1}}, "youre": {"_count": 1, "the": {"_count": 1}}, "houseelves": {"_count": 1, "were": {"_count": 1}}, "moves": {"_count": 1, "with": {"_count": 1}}, "eats": {"_count": 1, "in": {"_count": 1}}, "already": {"_count": 1, "knew": {"_count": 1}}, "goes": {"_count": 1, "in": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "keeps": {"_count": 2, "coming": {"_count": 2}}, "might": {"_count": 2, "be": {"_count": 1}, "decide": {"_count": 1}}, "Hermione": {"_count": 1, "told": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "gasped": {"_count": 1, "and": {"_count": 1}}, "wheeled": {"_count": 1, "around": {"_count": 1}}, "blocked": {"_count": 1, "the": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "whooping": {"_count": 1, "celebrating": {"_count": 1}}, "celebrating": {"_count": 1, "in": {"_count": 1}}, "vehemently": {"_count": 1, "": {"_count": 1}}, "stiffened": {"_count": 1, "and": {"_count": 1}}, "merely": {"_count": 1, "stared": {"_count": 1}}, "neither": {"_count": 1, "moved": {"_count": 1}}, "demanded": {"_count": 1, "": {"_count": 1}}, "taunted": {"_count": 1, "": {"_count": 1}}, "winced": {"_count": 1, "at": {"_count": 1}}, "roughly": {"_count": 1, "out": {"_count": 1}}, "however": {"_count": 1, "were": {"_count": 1}}, "obviously": {"_count": 1, "hadnt": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "scrutinizing": {"_count": 1, "his": {"_count": 1}}, "fell": {"_count": 3, "on": {"_count": 1}, "off": {"_count": 1}, "backward": {"_count": 1}}, "interjected": {"_count": 1, "Greyback": {"_count": 1}}, "Manor": {"_count": 4, "help": {"_count": 1}, "": {"_count": 1}, "lay": {"_count": 1}, "were": {"_count": 1}}, "from": {"_count": 2, "over": {"_count": 1}, "above": {"_count": 1}}, "collapsed": {"_count": 1, "onto": {"_count": 1}}, "threw": {"_count": 1, "others": {"_count": 1}}, "Didnt": {"_count": 1, "their": {"_count": 1}}, "staying": {"_count": 1, "Crabbes": {"_count": 1}}, "cowered": {"_count": 1, "behind": {"_count": 1}}, "grabbed": {"_count": 1, "the": {"_count": 1}}, "clambered": {"_count": 1, "up": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "Im": {"_count": 1, "Draco": {"_count": 1}}, "running": {"_count": 1, "through": {"_count": 1}}}, "Draco": {"_count": 219, "Malfoy": {"_count": 101, "": {"_count": 25}, "looked": {"_count": 3}, "didnt": {"_count": 1}, "and": {"_count": 4}, "who": {"_count": 6}, "one": {"_count": 1}, "some": {"_count": 1}, "banging": {"_count": 1}, "just": {"_count": 1}, "Harry": {"_count": 1}, "usually": {"_count": 1}, "was": {"_count": 12}, "character": {"_count": 1}, "hadnt": {"_count": 1}, "flanked": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 8}, "in": {"_count": 1}, "the": {"_count": 1}, "flatly": {"_count": 1}, "of": {"_count": 1}, "a": {"_count": 2}, "around": {"_count": 1}, "shouted": {"_count": 1}, "muttering": {"_count": 1}, "smirking": {"_count": 1}, "followed": {"_count": 1}, "laughed": {"_count": 1}, "striding": {"_count": 1}, "leaned": {"_count": 1}, "imitated": {"_count": 1}, "prominent": {"_count": 1}, "sped": {"_count": 1}, "came": {"_count": 1}, "with": {"_count": 1}, "well": {"_count": 1}, "said": {"_count": 1}, "gave": {"_count": 1}, "but": {"_count": 1}, "at": {"_count": 1}, "being": {"_count": 1}, "is": {"_count": 3}, "right": {"_count": 1}, "did": {"_count": 1}, "by": {"_count": 1}, "Im": {"_count": 1}}, "Neville": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 18}, "?": {"_count": 6}, "!": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "looking": {"_count": 1, "both": {"_count": 1}}, "drew": {"_count": 1, "nearer": {"_count": 1}}, "paused": {"_count": 1, "to": {"_count": 1}}, "turned": {"_count": 2, "away": {"_count": 2}}, "Harry": {"_count": 1, "wiped": {"_count": 1}}, "and": {"_count": 6, "swept": {"_count": 1}, "a": {"_count": 1}, "we": {"_count": 1}, "quickly": {"_count": 1}, "turned": {"_count": 1}, "Greyback": {"_count": 1}}, "Malfoys": {"_count": 3, "voice": {"_count": 1}, "taunting": {"_count": 1}, "eagle": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "points": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 3, "no": {"_count": 1}, "now": {"_count": 1}, "on": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 2}}, "greatly": {"_count": 1, "resembled": {"_count": 1}}, "shot": {"_count": 1, "Harry": {"_count": 1}}, "what": {"_count": 2, "if": {"_count": 1}, "is": {"_count": 1}}, "excellent": {"_count": 1, "oh": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 5, "Snape": {"_count": 2}, "Narcissa": {"_count": 2}, "Dumbledore": {"_count": 1}}, "fetch": {"_count": 2, "Professor": {"_count": 1}, "the": {"_count": 1}}, "should": {"_count": 2, "be": {"_count": 1}, "try": {"_count": 1}}, "He": {"_count": 1, "isnt": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "succeeds": {"_count": 2, "said": {"_count": 1}, "I": {"_count": 1}}, "in": {"_count": 1, "revenge": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 3, "killed": {"_count": 1}, "home": {"_count": 1}, "up": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "much": {"_count": 1}}, "will": {"_count": 1, "fail": {"_count": 1}}, "to": {"_count": 2, "perform": {"_count": 1}, "succeed": {"_count": 1}}, "because": {"_count": 1, "if": {"_count": 1}}, "So": {"_count": 1, "put": {"_count": 1}}, "Looks": {"_count": 1, "like": {"_count": 1}}, "Draco": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 2, "are": {"_count": 1}, "have": {"_count": 1}}, "but": {"_count": 3, "they": {"_count": 1}, "Hes": {"_count": 1}, "saw": {"_count": 1}}, "well": {"_count": 1, "done": {"_count": 1}}, "here": {"_count": 1, "invited": {"_count": 1}}, "do": {"_count": 3, "it": {"_count": 3}}, "quickly": {"_count": 1, "": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "fell": {"_count": 1, "out": {"_count": 1}}, "give": {"_count": 1, "Rowle": {"_count": 1}}, "come": {"_count": 2, "here": {"_count": 2}}, "if": {"_count": 1, "we": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "again": {"_count": 1, "his": {"_count": 1}}, "move": {"_count": 1, "this": {"_count": 1}}, "like": {"_count": 1, "said": {"_count": 1}}, "marching": {"_count": 1, "Griphook": {"_count": 1}}, "no": {"_count": 1, "call": {"_count": 1}}, "pick": {"_count": 1, "them": {"_count": 1}}, "hurried": {"_count": 1, "back": {"_count": 1}}, "doubled": {"_count": 1, "over": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 1, "on": {"_count": 1}}, "fails": {"_count": 1, "is": {"_count": 1}}, "blames": {"_count": 1, "me": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "weeks": {"_count": 1, "ago": {"_count": 1}}, "caught": {"_count": 1, "sight": {"_count": 1}}}, "cough": {"_count": 27, "which": {"_count": 2, "might": {"_count": 1}, "sounded": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 2, "splutter": {"_count": 1}, "began": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "though": {"_count": 1}}, "owing": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "before": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "drop": {"_count": 2, "Dolores": {"_count": 2}}, "behind": {"_count": 2, "him": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "potions": {"_count": 1, "said": {"_count": 1}}, "potion": {"_count": 1, "and": {"_count": 1}}}, "snigger": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "uncontrollably": {"_count": 1, "and": {"_count": 1}}, "heartily": {"_count": 1, "as": {"_count": 1}}}, "Think": {"_count": 39, "my": {"_count": 1, "names": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "told": {"_count": 2}}, "about": {"_count": 4, "it": {"_count": 1}, "Hogsmeade": {"_count": 1}, "what": {"_count": 2}}, "": {"_count": 8, ".": {"_count": 3}, "!": {"_count": 5}}, "you": {"_count": 2, "might": {"_count": 1}, "knew": {"_count": 1}}, "itll": {"_count": 1, "damage": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "that": {"_count": 1, "matters": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "its": {"_count": 1, "funny": {"_count": 1}}, "111": {"_count": 1, "go": {"_count": 1}}, "we": {"_count": 1, "should": {"_count": 1}}, "I": {"_count": 2, "got": {"_count": 1}, "did": {"_count": 1}}, "how": {"_count": 2, "many": {"_count": 1}, "much": {"_count": 1}}, "youre": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "little": {"_count": 1}}, "what": {"_count": 2, "you": {"_count": 1}, "that": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "try": {"_count": 1}}}, "children": {"_count": 64, "than": {"_count": 1, "they": {"_count": 1}}, "blew": {"_count": 1, "bubbles": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 12}, "!": {"_count": 1}, "?": {"_count": 1}}, "currently": {"_count": 1, "attend": {"_count": 1}}, "out": {"_count": 1, "alone": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "Hermione": {"_count": 1}}, "sit": {"_count": 1, "she": {"_count": 1}}, "exposed": {"_count": 1, "to": {"_count": 1}}, "need": {"_count": 1, "care": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "with": {"_count": 3, "red": {"_count": 1}, "him": {"_count": 1}, "sunken": {"_count": 1}}, "might": {"_count": 1, "don": {"_count": 1}}, "knew": {"_count": 1, "too": {"_count": 1}}, "were": {"_count": 1, "crying": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 1}, "with": {"_count": 1}}, "of": {"_count": 2, "filth": {"_count": 1}, "witches": {"_count": 1}}, "like": {"_count": 1, "yourselves": {"_count": 1}}, "leaned": {"_count": 1, "against": {"_count": 1}}, "and": {"_count": 6, "Harry": {"_count": 3}, "to": {"_count": 1}, "get": {"_count": 1}, "why": {"_count": 1}}, "knowing": {"_count": 1, "about": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "she": {"_count": 1}}, "tightly": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "his": {"_count": 1}, "home": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "last": {"_count": 1, "week": {"_count": 1}}, "often": {"_count": 1, "find": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "came": {"_count": 1, "running": {"_count": 1}}, "two": {"_count": 1, "youngest": {"_count": 1}}, "dressed": {"_count": 1, "as": {"_count": 1}}, "sat": {"_count": 1, "facing": {"_count": 1}}, "your": {"_count": 1, "brothers": {"_count": 1}}, "when": {"_count": 1, "Ive": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Albus": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "before": {"_count": 1}}}, "coolly": {"_count": 44, "": {"_count": 31, ".": {"_count": 31}}, "shutting": {"_count": 1, "his": {"_count": 1}}, "turning": {"_count": 1, "back": {"_count": 1}}, "watching": {"_count": 1, "Wormtail": {"_count": 1}}, "while": {"_count": 1, "Fudge": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "though": {"_count": 1, "her": {"_count": 1}}, "through": {"_count": 2, "Hagrids": {"_count": 1}, "his": {"_count": 1}}, "rummaging": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "near": {"_count": 1}}, "and": {"_count": 1, "we": {"_count": 1}}, "intimidating": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "if": {"_count": 1}}}, "tinge": {"_count": 5, "appeared": {"_count": 1, "in": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "probably": {"_count": 1, "because": {"_count": 1}}, "cast": {"_count": 1, "by": {"_count": 1}}}, "cheeks": {"_count": 35, "": {"_count": 8, ".": {"_count": 8}}, "rather": {"_count": 1, "pink": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "her": {"_count": 2}, "into": {"_count": 1}}, "blew": {"_count": 1, "hard": {"_count": 1}}, "glowing": {"_count": 1, "more": {"_count": 1}}, "flushed": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "jowls": {"_count": 1}}, "trembling": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 1, "form": {"_count": 1}}, "smooth": {"_count": 1, "his": {"_count": 1}}, "reddening": {"_count": 1, "": {"_count": 1}}, "grew": {"_count": 1, "rosier": {"_count": 1}}, "were": {"_count": 2, "flushed": {"_count": 1}, "hollowed": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "her": {"_count": 1, "skin": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 3, "she": {"_count": 2}, "he": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "bulging": {"_count": 1, "Ermynee": {"_count": 1}}, "became": {"_count": 1, "more": {"_count": 1}}}, "Unless": {"_count": 20, "youre": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 4, "get": {"_count": 1}, "are": {"_count": 1}, "swapped": {"_count": 1}, "wish": {"_count": 1}}, "youd": {"_count": 1, "like": {"_count": 1}}, "Im": {"_count": 1, "much": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harrys": {"_count": 1, "eyes": {"_count": 1}}, "Lupins": {"_count": 1, "eyes": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "Crouch": {"_count": 1, "was": {"_count": 1}}, "anyone": {"_count": 1, "brought": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 2}, "got": {"_count": 1}}, "Potter": {"_count": 1, "wants": {"_count": 1}}, "Oh": {"_count": 1, "come": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "politer": {"_count": 2, "youll": {"_count": 1, "go": {"_count": 1}}, "to": {"_count": 1, "each": {"_count": 1}}}, "riffraff": {"_count": 3, "like": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "rub": {"_count": 8, "off": {"_count": 1, "on": {"_count": 1}}, "it": {"_count": 4, "out": {"_count": 1}, "clean": {"_count": 1}, "in": {"_count": 2}}, "the": {"_count": 1, "pus": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "own": {"_count": 1}}}, "Say": {"_count": 16, "that": {"_count": 2, "again": {"_count": 2}}, "\u2018please": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 1, "ill": {"_count": 1}}, "you": {"_count": 1, "wont": {"_count": 1}}, "it": {"_count": 4, "sir": {"_count": 1}, "again": {"_count": 3}}, "something": {"_count": 1, "": {"_count": 1}}, "YouKnotuWho": {"_count": 1, "will": {"_count": 1}}, "hello": {"_count": 2, "to": {"_count": 2}}, "no": {"_count": 1, "more": {"_count": 1}}, "goodbye": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "Cloak": {"_count": 1}}}, "bravely": {"_count": 6, "than": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 1, "this": {"_count": 1}}}, "eaten": {"_count": 22, "all": {"_count": 1, "our": {"_count": 1}}, "for": {"_count": 2, "nearly": {"_count": 1}, "days": {"_count": 1}}, "as": {"_count": 2, "much": {"_count": 1}, "many": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "Scabbers": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "something": {"_count": 1, "extremely": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 1, "however": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 2}}, "less": {"_count": 1, "breakfast": {"_count": 1}}, "they": {"_count": 1, "remained": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "much": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "an": {"_count": 1, "unusually": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "their": {"_count": 1, "fill": {"_count": 1}}}, "yell": {"_count": 46, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 6, "paused": {"_count": 1}, "cheer": {"_count": 1}, "Dudleys": {"_count": 1}, "leapt": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 9, "Get": {"_count": 1}, "triumph": {"_count": 1}, "OWLS": {"_count": 1}, "laughter": {"_count": 1}, "mirthless": {"_count": 1}, "rage": {"_count": 1}, "fury": {"_count": 1}, "mingled": {"_count": 1}, "shock": {"_count": 1}}, "from": {"_count": 6, "the": {"_count": 2}, "somewhere": {"_count": 2}, "behind": {"_count": 1}, "below": {"_count": 1}}, "he": {"_count": 2, "rolled": {"_count": 1}, "thought": {"_count": 1}}, "echoed": {"_count": 1, "down": {"_count": 1}}, "but": {"_count": 1, "couldnt": {"_count": 1}}, "with": {"_count": 3, "pain": {"_count": 1}, "fright": {"_count": 1}, "fury": {"_count": 1}}, "had": {"_count": 1, "awoken": {"_count": 1}}, "Fairy": {"_count": 1, "lights": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "too": {"_count": 1, "so": {"_count": 1}}, "hes": {"_count": 1, "just": {"_count": 1}}, "fer": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "Dumbledore": {"_count": 1}}, "this": {"_count": 1, "cold": {"_count": 1}}, "the": {"_count": 1, "curtains": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "came": {"_count": 1, "loudest": {"_count": 1}}}, "knuckle": {"_count": 1, "Crabbe": {"_count": 1, "and": {"_count": 1}}}, "lurking": {"_count": 32, "among": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 11, "a": {"_count": 3}, "this": {"_count": 1}, "Privet": {"_count": 1}, "the": {"_count": 4}, "an": {"_count": 2}}, "on": {"_count": 1, "Malfoys": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "Peeves": {"_count": 1, "stopped": {"_count": 1}}, "somewhere": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}, "doubt": {"_count": 1, "resurfacing": {"_count": 1}}, "inside": {"_count": 1, "Mr": {"_count": 1}}, "near": {"_count": 1, "Katie": {"_count": 1}}, "nearby": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "unnoticed": {"_count": 1, "in": {"_count": 1}}, "worry": {"_count": 1, "of": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "all": {"_count": 1}}, "under": {"_count": 1, "our": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "around": {"_count": 1, "outside": {"_count": 1}}}, "among": {"_count": 71, "the": {"_count": 35, "sweets": {"_count": 1}, "students": {"_count": 6}, "leaves": {"_count": 1}, "staff": {"_count": 1}, "mass": {"_count": 2}, "buckets": {"_count": 2}, "excited": {"_count": 1}, "first": {"_count": 1}, "foulest": {"_count": 1}, "budding": {"_count": 1}, "other": {"_count": 1}, "dusty": {"_count": 1}, "champions": {"_count": 1}, "pixies": {"_count": 1}, "stars": {"_count": 1}, "most": {"_count": 1}, "stickcreatures": {"_count": 1}, "material": {"_count": 1}, "Hogwarts": {"_count": 1}, "onlookers": {"_count": 1}, "fifth": {"_count": 1}, "tangled": {"_count": 1}, "tables": {"_count": 1}, "great": {"_count": 1}, "dark": {"_count": 1}, "werewolves": {"_count": 1}, "younger": {"_count": 1}, "trees": {"_count": 1}}, "us": {"_count": 4, "seven": {"_count": 1}, "Feeding": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}}, "our": {"_count": 1, "number": {"_count": 1}}, "them": {"_count": 14, "easily": {"_count": 1}, "": {"_count": 4}, "but": {"_count": 1}, "looking": {"_count": 1}, "the": {"_count": 1}, "Get": {"_count": 1}, "passing": {"_count": 1}, "tears": {"_count": 1}, "seemed": {"_count": 1}, "watching": {"_count": 1}, "who": {"_count": 1}}, "a": {"_count": 2, "display": {"_count": 1}, "dozen": {"_count": 1}}, "you": {"_count": 1, "helping": {"_count": 1}}, "those": {"_count": 2, "who": {"_count": 2}}, "yourselves": {"_count": 1, "call": {"_count": 1}}, "my": {"_count": 2, "enemies": {"_count": 1}, "fellows": {"_count": 1}}, "wizards": {"_count": 2, "will": {"_count": 1}, "you": {"_count": 1}}, "Aunt": {"_count": 1, "Petunias": {"_count": 1}}, "dying": {"_count": 1, "begonias": {"_count": 1}}, "themselves": {"_count": 2, "and": {"_count": 1}, "every": {"_count": 1}}, "ourselves": {"_count": 1, "": {"_count": 1}}, "humans": {"_count": 1, "said": {"_count": 1}}, "some": {"_count": 1, "goblins": {"_count": 1}}}, "perhaps": {"_count": 193, "theyd": {"_count": 1, "heard": {"_count": 1}}, "in": {"_count": 2, "Slytherin": {"_count": 1}, "an": {"_count": 1}}, "the": {"_count": 13, "Weasley": {"_count": 1}, "Gryffindor": {"_count": 1}, "task": {"_count": 1}, "riot": {"_count": 1}, "fly": {"_count": 1}, "most": {"_count": 4}, "magazine": {"_count": 1}, "hundredth": {"_count": 1}, "Room": {"_count": 1}, "least": {"_count": 1}}, "to": {"_count": 7, "tell": {"_count": 1}, "remind": {"_count": 1}, "send": {"_count": 1}, "confess": {"_count": 1}, "investigate": {"_count": 1}, "hide": {"_count": 1}, "the": {"_count": 1}}, "Hogwarts": {"_count": 1, "": {"_count": 1}}, "thirty": {"_count": 1, "seconds": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "not": {"_count": 3, "Snape": {"_count": 1}, "": {"_count": 1}, "my": {"_count": 1}}, "it": {"_count": 11, "would": {"_count": 3}, "will": {"_count": 3}, "wasnt": {"_count": 1}, "was": {"_count": 3}, "had": {"_count": 1}}, "we": {"_count": 5, "can": {"_count": 1}, "should": {"_count": 2}, "ought": {"_count": 2}}, "happening": {"_count": 1, "already": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "youd": {"_count": 1, "better": {"_count": 1}}, "a": {"_count": 6, "large": {"_count": 1}, "little": {"_count": 2}, "Dungbomb": {"_count": 1}, "human": {"_count": 1}, "gigantic": {"_count": 1}}, "soaring": {"_count": 1, "back": {"_count": 1}}, "because": {"_count": 4, "he": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "spend": {"_count": 1, "tonight": {"_count": 1}}, "lucky": {"_count": 1, "Hermione": {"_count": 1}}, "written": {"_count": 1, "in": {"_count": 1}}, "playing": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "being": {"_count": 1}}, "how": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 12, "was": {"_count": 1}, "made": {"_count": 1}, "both": {"_count": 1}, "champion": {"_count": 1}, "had": {"_count": 1}, "their": {"_count": 1}, "will": {"_count": 2}, "very": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "I": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "sooner": {"_count": 1, "than": {"_count": 1}}, "he": {"_count": 10, "would": {"_count": 1}, "had": {"_count": 4}, "didnt": {"_count": 1}, "Harry": {"_count": 1}, "doesnt": {"_count": 1}, "was": {"_count": 1}, "did": {"_count": 1}}, "rather": {"_count": 1, "harder": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 2}, "casting": {"_count": 1}}, "you": {"_count": 5, "were": {"_count": 1}, "actually": {"_count": 1}, "will": {"_count": 1}, "think": {"_count": 1}, "have": {"_count": 1}}, "some": {"_count": 1, "individual": {"_count": 1}}, "Malfoy": {"_count": 1, "or": {"_count": 1}}, "ambush": {"_count": 1, "her": {"_count": 1}}, "eat": {"_count": 1, "humans": {"_count": 1}}, "yet": {"_count": 2, "a": {"_count": 1}, "alive": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "one": {"_count": 1, "more": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "taking": {"_count": 1, "heart": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "they": {"_count": 2, "believed": {"_count": 1}, "now": {"_count": 1}}, "my": {"_count": 1, "darkest": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "very": {"_count": 1, "comfortable": {"_count": 1}}, "or": {"_count": 2, "some": {"_count": 1}, "even": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "be": {"_count": 1, "satisfied": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 5, "thought": {"_count": 1}, "was": {"_count": 1}, "could": {"_count": 1}, "understood": {"_count": 1}, "wasnt": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Malfoy": {"_count": 1}}, "been": {"_count": 1, "attacked": {"_count": 1}}, "pulling": {"_count": 1, "a": {"_count": 1}}, "standing": {"_count": 1, "beside": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}, "earned": {"_count": 1, "a": {"_count": 1}}, "Azkaban": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 3, "always": {"_count": 1}, "not": {"_count": 1}, "his": {"_count": 1}}, "from": {"_count": 2, "portrait": {"_count": 1}, "Voldemort": {"_count": 1}}, "anyone": {"_count": 1, "but": {"_count": 1}}, "more": {"_count": 1, "extensive": {"_count": 1}}, "have": {"_count": 3, "told": {"_count": 1}, "wondered": {"_count": 1}, "dared": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "an": {"_count": 2, "Auror": {"_count": 1}, "unexpected": {"_count": 1}}, "impossible": {"_count": 1, "": {"_count": 1}}, "youve": {"_count": 1, "come": {"_count": 1}}, "even": {"_count": 1, "hoped": {"_count": 1}}, "most": {"_count": 2, "useful": {"_count": 1}, "prone": {"_count": 1}}, "instantly": {"_count": 1, "": {"_count": 1}}, "somehow": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "realized": {"_count": 2, "it": {"_count": 1}, "there": {"_count": 1}}, "disappointment": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 3, "Professor": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "as": {"_count": 2, "fond": {"_count": 1}, "soon": {"_count": 1}}, "would": {"_count": 1, "say": {"_count": 1}}, "Snape": {"_count": 1, "had": {"_count": 1}}, "Dumbledore": {"_count": 1, "knew": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "given": {"_count": 1, "how": {"_count": 1}}, "insensitively": {"_count": 1, "the": {"_count": 1}}, "walked": {"_count": 1, "past": {"_count": 1}}, "Mundungus": {"_count": 1, "who": {"_count": 1}}, "never": {"_count": 1, "see": {"_count": 1}}, "wondering": {"_count": 1, "where": {"_count": 1}}, "imagined": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 1, "his": {"_count": 1}}, "their": {"_count": 1, "defenses": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}, "Disillusionment": {"_count": 1, "Charms": {"_count": 1}}, "already": {"_count": 1, "at": {"_count": 1}}, "thinking": {"_count": 1, "that": {"_count": 1}}, "taken": {"_count": 1, "the": {"_count": 1}}, "seconds": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 1, "who": {"_count": 1}}}, "footsteps": {"_count": 119, "because": {"_count": 1, "a": {"_count": 1}}, "Filch": {"_count": 1, "running": {"_count": 1}}, "behind": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 17}}, "made": {"_count": 3, "the": {"_count": 1}, "no": {"_count": 1}, "echoing": {"_count": 1}}, "coming": {"_count": 7, "down": {"_count": 4}, "nearer": {"_count": 1}, "up": {"_count": 2}}, "dying": {"_count": 1, "away": {"_count": 1}}, "had": {"_count": 3, "disappeared": {"_count": 1}, "died": {"_count": 1}, "stopped": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 3, "told": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 1, "hurtled": {"_count": 1}}, "drew": {"_count": 2, "nearer": {"_count": 2}}, "echoing": {"_count": 4, "particularly": {"_count": 1}, "off": {"_count": 1}, "in": {"_count": 1}, "through": {"_count": 1}}, "receded": {"_count": 1, "along": {"_count": 1}}, "until": {"_count": 1, "Riddle": {"_count": 1}}, "slapping": {"_count": 1, "loudly": {"_count": 1}}, "and": {"_count": 7, "finish": {"_count": 1}, "then": {"_count": 3}, "Rons": {"_count": 1}, "in": {"_count": 1}, "crashes": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 4}}, "told": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "case": {"_count": 1}}, "to": {"_count": 1, "pass": {"_count": 1}}, "then": {"_count": 2, "the": {"_count": 2}}, "growing": {"_count": 2, "louder": {"_count": 2}}, "approaching": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 7, "echoing": {"_count": 1}, "thundering": {"_count": 2}, "muffled": {"_count": 1}, "heard": {"_count": 1}, "dying": {"_count": 1}, "growing": {"_count": 1}}, "stopped": {"_count": 2, "": {"_count": 2}}, "the": {"_count": 1, "soft": {"_count": 1}}, "quite": {"_count": 1, "close": {"_count": 1}}, "died": {"_count": 1, "away": {"_count": 1}}, "or": {"_count": 2, "voices": {"_count": 2}}, "down": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "turned": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 4, "Mr": {"_count": 1}, "hundreds": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "halted": {"_count": 1, "there": {"_count": 1}}, "soon": {"_count": 1, "died": {"_count": 1}}, "screams": {"_count": 1, "": {"_count": 1}}, "walking": {"_count": 1, "heavily": {"_count": 1}}, "echoed": {"_count": 3, "loudly": {"_count": 2}, "on": {"_count": 1}}, "so": {"_count": 1, "you": {"_count": 1}}, "mounting": {"_count": 1, "the": {"_count": 1}}, "leading": {"_count": 1, "away": {"_count": 1}}, "running": {"_count": 4, "out": {"_count": 1}, "along": {"_count": 1}, "up": {"_count": 2}}, "a": {"_count": 1, "groan": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "but": {"_count": 1, "all": {"_count": 1}}, "here": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "everything": {"_count": 1, "going": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "corners": {"_count": 1}}, "joined": {"_count": 1, "theirs": {"_count": 1}}, "shouts": {"_count": 1, "through": {"_count": 1}}, "whispers": {"_count": 1, "and": {"_count": 1}}, "Several": {"_count": 1, "people": {"_count": 1}}, "signs": {"_count": 1, "of": {"_count": 1}}}, "picking": {"_count": 51, "up": {"_count": 33, "Scabbers": {"_count": 2}, "every": {"_count": 1}, "a": {"_count": 5}, "the": {"_count": 8}, "his": {"_count": 7}, "one": {"_count": 1}, "more": {"_count": 1}, "books": {"_count": 2}, "Hedwigs": {"_count": 1}, "he": {"_count": 1}, "even": {"_count": 1}, "her": {"_count": 1}, "MAKE": {"_count": 1}, "An": {"_count": 1}}, "a": {"_count": 2, "spot": {"_count": 1}, "row": {"_count": 1}}, "it": {"_count": 3, "up": {"_count": 3}}, "the": {"_count": 1, "subjects": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "us": {"_count": 1, "off": {"_count": 1}}, "himself": {"_count": 1, "up": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}, "runner": {"_count": 1, "beans": {"_count": 1}}, "his": {"_count": 1, "scabs": {"_count": 1}}, "moodily": {"_count": 1, "at": {"_count": 1}}, "apparently": {"_count": 1, "unconsciously": {"_count": 1}}, "Plangentines": {"_count": 1, "by": {"_count": 1}}, "her": {"_count": 1, "way": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}}, "Said": {"_count": 17, "theyd": {"_count": 1, "been": {"_count": 1}}, "he": {"_count": 3, "needed": {"_count": 1}, "wants": {"_count": 2}}, "she": {"_count": 1, "was": {"_count": 1}}, "an": {"_count": 1, "incantation": {"_count": 1}}, "that": {"_count": 1, "did": {"_count": 1}}, "shes": {"_count": 1, "always": {"_count": 1}}, "Slytherin": {"_count": 1, "Well": {"_count": 1}}, "Ravenclaw": {"_count": 1, "Well": {"_count": 1}}, "Gryffindor": {"_count": 1, "Well": {"_count": 1}}, "Hufflepuff": {"_count": 1, "111": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "hed": {"_count": 1, "give": {"_count": 1}}, "Mrs": {"_count": 1, "Augusta": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}}, "bewitched": {"_count": 31, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 5, "look": {"_count": 1}, "sing": {"_count": 1}, "resemble": {"_count": 1}, "remove": {"_count": 1}, "do": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "keys": {"_count": 1, "darted": {"_count": 1}}, "ceiling": {"_count": 2, "the": {"_count": 1}, "which": {"_count": 1}}, "the": {"_count": 4, "car": {"_count": 1}, "trunk": {"_count": 1}, "clocks": {"_count": 1}, "door": {"_count": 1}}, "car": {"_count": 1, "making": {"_count": 1}}, "his": {"_count": 1, "prefect": {"_count": 1}}, "them": {"_count": 2, "I": {"_count": 1}, "himself": {"_count": 1}}, "so": {"_count": 2, "she": {"_count": 1}, "as": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "sleep": {"_count": 2, "in": {"_count": 1}, "version": {"_count": 1}}, "a": {"_count": 2, "large": {"_count": 1}, "number": {"_count": 1}}, "into": {"_count": 1, "following": {"_count": 1}}, "their": {"_count": 1, "trunks": {"_count": 1}}, "her": {"_count": 1, "knitting": {"_count": 1}}, "this": {"_count": 1, "branch": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "birds": {"_count": 1, "fluttered": {"_count": 1}}}, "doesnt": {"_count": 262, "believe": {"_count": 2, "it": {"_count": 1}, "in": {"_count": 1}}, "want": {"_count": 22, "to": {"_count": 12}, "me": {"_count": 1}, "a": {"_count": 1}, "Of": {"_count": 1}, "too": {"_count": 1}, "passed": {"_count": 1}, "you": {"_count": 2}, "that": {"_count": 1}, "us": {"_count": 1}, "them": {"_count": 1}}, "know": {"_count": 18, "about": {"_count": 2}, "how": {"_count": 1}, "anything": {"_count": 1}, "why": {"_count": 1}, "said": {"_count": 1}, "Dumbledore": {"_count": 1}, "ways": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 4}, "wont": {"_count": 1}, "quite": {"_count": 1}, "were": {"_count": 1}, "that": {"_count": 1}}, "take": {"_count": 1, "a": {"_count": 1}}, "stop": {"_count": 4, "him": {"_count": 1}, "trying": {"_count": 1}, "soon": {"_count": 1}, "here": {"_count": 1}}, "matter": {"_count": 22, "anymore": {"_count": 1}, "to": {"_count": 3}, "Harry": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 4}, "Hermione": {"_count": 1}, "dont": {"_count": 1}, "pick": {"_count": 1}, "if": {"_count": 2}, "anyway": {"_count": 1}, "now": {"_count": 1}, "Sirius": {"_count": 1}, "how": {"_count": 1}, "honestly": {"_count": 1}}, "lose": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 14, "": {"_count": 11}, "might": {"_count": 1}, "use": {"_count": 1}, "take": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "count": {"_count": 1, "said": {"_count": 1}}, "hurt": {"_count": 3, "them": {"_count": 1}, "anymore": {"_count": 1}, "that": {"_count": 1}}, "miss": {"_count": 1, "a": {"_count": 1}}, "meet": {"_count": 1, "Ginny": {"_count": 1}}, "end": {"_count": 2, "until": {"_count": 1}, "here": {"_count": 1}}, "make": {"_count": 6, "any": {"_count": 2}, "sense": {"_count": 2}, "very": {"_count": 1}, "it": {"_count": 1}}, "often": {"_count": 1, "happen": {"_count": 1}}, "use": {"_count": 1, "Dark": {"_count": 1}}, "mean": {"_count": 15, "he": {"_count": 2}, "she": {"_count": 1}, "theyre": {"_count": 1}, "no": {"_count": 1}, "a": {"_count": 1}, "we": {"_count": 1}, "anything": {"_count": 2}, "I": {"_count": 2}, "much": {"_count": 1}, "defeating": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}}, "do": {"_count": 1, "anything": {"_count": 1}}, "have": {"_count": 5, "to": {"_count": 5}}, "seem": {"_count": 13, "too": {"_count": 1}, "to": {"_count": 5}, "the": {"_count": 1}, "like": {"_count": 1}, "fair": {"_count": 1}, "possible": {"_count": 1}, "as": {"_count": 1}, "able": {"_count": 1}, "likely": {"_count": 1}}, "understand": {"_count": 1, "its": {"_count": 1}}, "think": {"_count": 9, "other": {"_count": 1}, "wed": {"_count": 1}, "that": {"_count": 1}, "its": {"_count": 1}, "you": {"_count": 1}, "anyones": {"_count": 1}, "Stan": {"_count": 1}, "like": {"_count": 1}, "he": {"_count": 1}}, "like": {"_count": 8, "being": {"_count": 1}, "you": {"_count": 2}, "them": {"_count": 1}, "him": {"_count": 1}, "jinxes": {"_count": 1}, "what": {"_count": 1}, "anything": {"_count": 1}}, "come": {"_count": 2, "with": {"_count": 1}, "home": {"_count": 1}}, "sound": {"_count": 2, "like": {"_count": 2}}, "it": {"_count": 19, "": {"_count": 18}, "work": {"_count": 1}}, "anyone": {"_count": 1, "do": {"_count": 1}}, "admit": {"_count": 1, "that": {"_count": 1}}, "ask": {"_count": 1, "us": {"_count": 1}}, "work": {"_count": 2, "like": {"_count": 1}, "properly": {"_count": 1}}, "strike": {"_count": 1, "me": {"_count": 1}}, "Dobby": {"_count": 1, "and": {"_count": 1}}, "care": {"_count": 8, "what": {"_count": 3}, "": {"_count": 2}, "about": {"_count": 2}, "if": {"_count": 1}}, "she": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "bother": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "tell": {"_count": 1}}, "read": {"_count": 1, "Witch": {"_count": 1}}, "Shh": {"_count": 1, "": {"_count": 1}}, "win": {"_count": 1, "said": {"_count": 1}}, "look": {"_count": 6, "like": {"_count": 3}, "as": {"_count": 2}, "good": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Mr": {"_count": 1}}, "expect": {"_count": 1, "the": {"_count": 1}}, "approve": {"_count": 1, "of": {"_count": 1}}, "march": {"_count": 1, "up": {"_count": 1}}, "need": {"_count": 3, "anything": {"_count": 1}, "someone": {"_count": 1}, "to": {"_count": 1}}, "trust": {"_count": 1, "us": {"_count": 1}}, "even": {"_count": 3, "come": {"_count": 1}, "know": {"_count": 1}, "want": {"_count": 1}}, "choose": {"_count": 1, "prefects": {"_count": 1}}, "share": {"_count": 1, "it": {"_count": 1}}, "keep": {"_count": 1, "me": {"_count": 1}}, "necessarily": {"_count": 1, "mean": {"_count": 1}}, "P": {"_count": 1, "stand": {"_count": 1}}, "clash": {"_count": 1, "with": {"_count": 1}}, "really": {"_count": 4, "want": {"_count": 1}, "look": {"_count": 1}, "create": {"_count": 1}, "do": {"_count": 1}}, "get": {"_count": 2, "it": {"_count": 1}, "them": {"_count": 1}}, "Hagrid": {"_count": 1, "call": {"_count": 1}}, "tell": {"_count": 1, "me": {"_count": 1}}, "realize": {"_count": 2, "what": {"_count": 1}, "": {"_count": 1}}, "explain": {"_count": 2, "how": {"_count": 1}, "": {"_count": 1}}, "usually": {"_count": 1, "give": {"_count": 1}}, "depend": {"_count": 1, "on": {"_count": 1}}, "recover": {"_count": 1, "before": {"_count": 1}}, "surprise": {"_count": 1, "me": {"_count": 1}}, "love": {"_count": 1, "me": {"_count": 1}}, "give": {"_count": 1, "a": {"_count": 1}}, "everyone": {"_count": 1, "come": {"_count": 1}}, "turn": {"_count": 1, "eighteen": {"_count": 1}}, "mind": {"_count": 1, "dirty": {"_count": 1}}, "begin": {"_count": 1, "O": {"_count": 1}}, "pop": {"_count": 1, "the": {"_count": 1}}, "agree": {"_count": 1, "I": {"_count": 1}}, "actually": {"_count": 1, "know": {"_count": 1}}, "fit": {"_count": 1, "because": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "somethings": {"_count": 1, "gone": {"_count": 1}}, "cover": {"_count": 1, "anything": {"_count": 1}}, "just": {"_count": 1, "turn": {"_count": 1}}, "snapped": {"_count": 1, "Hermione": {"_count": 1}}, "exist": {"_count": 2, "": {"_count": 2}}, "Harry": {"_count": 1, "youre": {"_count": 1}}, "already": {"_count": 1, "that": {"_count": 1}}, "Ginny": {"_count": 1, "stay": {"_count": 1}}}, "Malfoys": {"_count": 176, "father": {"_count": 1, "didnt": {"_count": 1}}, "always": {"_count": 1, "going": {"_count": 1}}, "got": {"_count": 3, "my": {"_count": 1}, "detention": {"_count": 1}, "": {"_count": 1}}, "sneering": {"_count": 1, "face": {"_count": 1}}, "elbow": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 9, "": {"_count": 3}, "at": {"_count": 1}, "during": {"_count": 1}, "flickered": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 2}}, "obvious": {"_count": 1, "rage": {"_count": 1}}, "cold": {"_count": 3, "drawl": {"_count": 1}, "gray": {"_count": 2}}, "robes": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "one": {"_count": 1}}, "already": {"_count": 1, "done": {"_count": 1}}, "son": {"_count": 2, "": {"_count": 2}}, "family": {"_count": 2, "before": {"_count": 1}, "who": {"_count": 1}}, "own": {"_count": 1, "a": {"_count": 1}}, "lip": {"_count": 3, "curled": {"_count": 2}, "curl": {"_count": 1}}, "list": {"_count": 1, "and": {"_count": 1}}, "worth": {"_count": 1, "listenin": {"_count": 1}}, "voice": {"_count": 8, "echoed": {"_count": 1}, "": {"_count": 1}, "swiftly": {"_count": 1}, "spoke": {"_count": 1}, "in": {"_count": 1}, "could": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 1}}, "shout": {"_count": 1, "Argus": {"_count": 1}}, "left": {"_count": 2, "ear": {"_count": 1}, "his": {"_count": 1}}, "best": {"_count": 1, "friends": {"_count": 1}}, "drawing": {"_count": 1, "room": {"_count": 1}}, "last": {"_count": 1, "words": {"_count": 1}}, "white": {"_count": 1, "hands": {"_count": 1}}, "hand": {"_count": 3, "": {"_count": 1}, "flew": {"_count": 1}, "was": {"_count": 1}}, "bidding": {"_count": 1, "": {"_count": 1}}, "pale": {"_count": 5, "eyes": {"_count": 3}, "face": {"_count": 2}}, "eyes": {"_count": 4, "were": {"_count": 2}, "had": {"_count": 1}, "follow": {"_count": 1}}, "arm": {"_count": 5, "blood": {"_count": 1}, "": {"_count": 2}, "out": {"_count": 1}, "extended": {"_count": 1}}, "fault": {"_count": 1, "": {"_count": 1}}, "problem": {"_count": 1, "that": {"_count": 1}}, "roots": {"_count": 2, "for": {"_count": 1}, "toward": {"_count": 1}}, "shrivelfig": {"_count": 2, "said": {"_count": 1}, "as": {"_count": 1}}, "thin": {"_count": 1, "mouth": {"_count": 1}}, "taunting": {"_count": 1, "": {"_count": 1}}, "dad": {"_count": 2, "must": {"_count": 1}, "put": {"_count": 1}}, "knew": {"_count": 1, "Black": {"_count": 1}}, "just": {"_count": 1, "hoping": {"_count": 1}}, "pocket": {"_count": 1, "": {"_count": 1}}, "head": {"_count": 1, "jerked": {"_count": 1}}, "having": {"_count": 1, "hallucin": {"_count": 1}}, "dads": {"_count": 1, "frightened": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "direction": {"_count": 1, "her": {"_count": 1}}, "foul": {"_count": 1, "on": {"_count": 1}}, "ankles": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 1, "": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 4}, "!": {"_count": 3}, "?": {"_count": 3}}, "prided": {"_count": 1, "themselves": {"_count": 1}}, "wouldnt": {"_count": 1, "like": {"_count": 1}}, "were": {"_count": 1, "right": {"_count": 1}}, "grip": {"_count": 1, "": {"_count": 1}}, "eagle": {"_count": 1, "owl": {"_count": 1}}, "upper": {"_count": 1, "arm": {"_count": 1}}, "hit": {"_count": 1, "Hermione": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "shoulder": {"_count": 1, "Hello": {"_count": 1}}, "been": {"_count": 2, "talking": {"_count": 1}, "giving": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "hands": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "clear": {"_count": 1, "drawl": {"_count": 1}}, "derisive": {"_count": 1, "laughter": {"_count": 1}}, "team": {"_count": 1, "": {"_count": 1}}, "fingernails": {"_count": 1, "scrabbled": {"_count": 1}}, "stomach": {"_count": 1, "Harry": {"_count": 1}}, "jaw": {"_count": 1, "looking": {"_count": 1}}, "to": {"_count": 1, "give": {"_count": 1}}, "Imperius": {"_count": 1, "Curse": {"_count": 1}}, "jeering": {"_count": 1, "face": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "stuck": {"_count": 1, "back": {"_count": 1}}, "gray": {"_count": 1, "eyes": {"_count": 1}}, "wand": {"_count": 4, "pressing": {"_count": 1}, "pointed": {"_count": 1}, "and": {"_count": 1}, "out": {"_count": 1}}, "our": {"_count": 1, "whereabouts": {"_count": 1}}, "undoubtedly": {"_count": 1, "on": {"_count": 1}}, "fingers": {"_count": 1, "had": {"_count": 1}}, "mothers": {"_count": 1, "face": {"_count": 1}}, "behavior": {"_count": 1, "in": {"_count": 1}}, "activities": {"_count": 1, "as": {"_count": 1}}, "fathers": {"_count": 1, "in": {"_count": 1}}, "not": {"_count": 1, "doing": {"_count": 1}}, "forehead": {"_count": 1, "smirking": {"_count": 1}}, "hair": {"_count": 1, "looking": {"_count": 1}}, "feet": {"_count": 1, "the": {"_count": 1}}, "boasts": {"_count": 1, "": {"_count": 1}}, "house": {"_count": 2, "": {"_count": 2}}, "gone": {"_count": 2, "off": {"_count": 1}, "again": {"_count": 1}}, "footsteps": {"_count": 1, "on": {"_count": 1}}, "mother": {"_count": 1, "to": {"_count": 1}}, "actually": {"_count": 1, "doing": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 2}}, "planning": {"_count": 1, "something": {"_count": 1}}, "a": {"_count": 1, "Death": {"_count": 1}}, "rudeness": {"_count": 1, "than": {"_count": 1}}, "periodic": {"_count": 1, "disappearances": {"_count": 1}}, "doing": {"_count": 4, "": {"_count": 2}, "in": {"_count": 2}}, "going": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "tiny": {"_count": 1, "labeled": {"_count": 1}}, "hex": {"_count": 1, "missed": {"_count": 1}}, "ear": {"_count": 1, "and": {"_count": 1}}, "celebrating": {"_count": 1, "I": {"_count": 1}}, "wounds": {"_count": 1, "": {"_count": 1}}, "mouth": {"_count": 1, "contorted": {"_count": 1}}, "Sectumsempra": {"_count": 1, "wounds": {"_count": 1}}, "look": {"_count": 1, "so": {"_count": 1}}, "humiliation": {"_count": 1, "": {"_count": 1}}, "gaunt": {"_count": 1, "petrified": {"_count": 1}}, "place": {"_count": 1, "as": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "restraining": {"_count": 1, "arm": {"_count": 1}}, "stand": {"_count": 1, "": {"_count": 1}}, "huddled": {"_count": 1, "together": {"_count": 1}}}, "conductor": {"_count": 9, "and": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 1, "eve": {"_count": 1}}, "stopped": {"_count": 1, "abruptly": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "who": {"_count": 1, "goggled": {"_count": 1}}, "followed": {"_count": 1, "Harry": {"_count": 1}}}, "scowling": {"_count": 20, "at": {"_count": 5, "her": {"_count": 1}, "them": {"_count": 2}, "the": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "again": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "girl": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "set": {"_count": 1}}, "and": {"_count": 1, "hoisting": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "boy": {"_count": 1, "handed": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "slightly": {"_count": 1, "brutish": {"_count": 1}}}, "childishly": {"_count": 2, "racing": {"_count": 1, "up": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}}, "corridors": {"_count": 107, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 9}, "?": {"_count": 1}, "!": {"_count": 1}}, "whispered": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "staring": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 4, "Harry": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "only": {"_count": 1}}, "striped": {"_count": 1, "with": {"_count": 1}}, "had": {"_count": 1, "become": {"_count": 1}}, "lunging": {"_count": 1, "out": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "night": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "the": {"_count": 1}}, "shouting": {"_count": 1, "Make": {"_count": 1}}, "these": {"_count": 3, "days": {"_count": 3}}, "singing": {"_count": 2, "Oh": {"_count": 1}, "a": {"_count": 1}}, "wasnt": {"_count": 1, "enjoyable": {"_count": 1}}, "in": {"_count": 3, "pairs": {"_count": 1}, "shifts": {"_count": 1}, "itself": {"_count": 1}}, "sounded": {"_count": 1, "shrill": {"_count": 1}}, "where": {"_count": 1, "watchful": {"_count": 1}}, "came": {"_count": 1, "Professor": {"_count": 1}}, "and": {"_count": 10, "over": {"_count": 1}, "back": {"_count": 1}, "classrooms": {"_count": 2}, "by": {"_count": 1}, "locked": {"_count": 2}, "hoped": {"_count": 1}, "hexing": {"_count": 1}, "met": {"_count": 1}}, "up": {"_count": 1, "more": {"_count": 1}}, "he": {"_count": 3, "noticed": {"_count": 1}, "had": {"_count": 2}}, "mysterious": {"_count": 1, "lights": {"_count": 1}}, "boarding": {"_count": 1, "up": {"_count": 1}}, "culminating": {"_count": 1, "in": {"_count": 1}}, "she": {"_count": 1, "looked": {"_count": 1}}, "girls": {"_count": 1, "shrieking": {"_count": 1}}, "anymore": {"_count": 1, "which": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "hand": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "fast": {"_count": 1}}, "were": {"_count": 3, "empty": {"_count": 1}, "almost": {"_count": 1}, "as": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "avoiding": {"_count": 1, "his": {"_count": 1}}, "all": {"_count": 2, "finishing": {"_count": 1}, "around": {"_count": 1}}, "from": {"_count": 1, "time": {"_count": 1}}, "every": {"_count": 1, "so": {"_count": 1}}, "between": {"_count": 3, "classes": {"_count": 2}, "lessons": {"_count": 1}}, "back": {"_count": 2, "to": {"_count": 2}}, "until": {"_count": 1, "nine": {"_count": 1}}, "Got": {"_count": 1, "your": {"_count": 1}}, "now": {"_count": 1, "the": {"_count": 1}}, "Susan": {"_count": 1, "Bones": {"_count": 1}}, "breaking": {"_count": 1, "off": {"_count": 1}}, "today": {"_count": 1, "they": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "emitting": {"_count": 1, "loud": {"_count": 1}}, "Harry": {"_count": 1, "well": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "above": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "filling": {"_count": 1, "up": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "or": {"_count": 1, "out": {"_count": 1}}, "fortunately": {"_count": 1, "however": {"_count": 1}}, "without": {"_count": 1, "lookouts": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "whole": {"_count": 1}}, "unpleasant": {"_count": 1, "chants": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "outside": {"_count": 1, "were": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "of": {"_count": 1, "Hogwarts": {"_count": 1}}, "they": {"_count": 1, "raced": {"_count": 1}}, "Minerva": {"_count": 1, "": {"_count": 1}}}, "sniffy": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "dirt": {"_count": 13, "on": {"_count": 3, "your": {"_count": 2}, "Dumbledore": {"_count": 1}}, "darling": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "vileness": {"_count": 1}}, "has": {"_count": 1, "asked": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "spattered": {"_count": 1, "he": {"_count": 1}}, "track": {"_count": 1, "bordered": {"_count": 1}}, "it": {"_count": 1, "could": {"_count": 1}}, "sweat": {"_count": 2, "and": {"_count": 2}}, "imbibing": {"_count": 1, "only": {"_count": 1}}}, "glared": {"_count": 55, "at": {"_count": 44, "her": {"_count": 8}, "them": {"_count": 6}, "Snape": {"_count": 1}, "Hermione": {"_count": 3}, "Harry": {"_count": 6}, "him": {"_count": 11}, "Seamus": {"_count": 1}, "Cho": {"_count": 1}, "Sirius": {"_count": 1}, "each": {"_count": 4}, "Mr": {"_count": 1}, "Bill": {"_count": 1}}, "furiously": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "back": {"_count": 1, "feeling": {"_count": 1}}, "right": {"_count": 1, "back": {"_count": 1}}, "after": {"_count": 2, "him": {"_count": 2}}, "up": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "from": {"_count": 1, "either": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}}, "mountains": {"_count": 24, "and": {"_count": 5, "forests": {"_count": 1}, "gullies": {"_count": 1}, "the": {"_count": 1}, "lakes": {"_count": 1}, "youll": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "of": {"_count": 4, "roast": {"_count": 1}, "toast": {"_count": 1}, "cakes": {"_count": 1}, "other": {"_count": 1}}, "Now": {"_count": 1, "now": {"_count": 1}}, "mostly": {"_count": 1, "": {"_count": 1}}, "surrounding": {"_count": 1, "the": {"_count": 1}}, "lookin": {"_count": 2, "fer": {"_count": 2}}, "see": {"_count": 1, "beside": {"_count": 1}}, "an": {"_count": 1, "theres": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "now": {"_count": 1, "Dumbledore": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}}, "forests": {"_count": 5, "under": {"_count": 1, "a": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "turned": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 2, "Albania": {"_count": 1}, "rippling": {"_count": 1}}}, "slowing": {"_count": 8, "down": {"_count": 7, "": {"_count": 1}, "again": {"_count": 1}, "Horrified": {"_count": 1}, "he": {"_count": 1}, "as": {"_count": 1}, "finally": {"_count": 1}, "only": {"_count": 1}}, "to": {"_count": 1, "hover": {"_count": 1}}}, "jackets": {"_count": 10, "and": {"_count": 4, "pulled": {"_count": 1}, "coats": {"_count": 1}, "scarves": {"_count": 1}, "had": {"_count": 1}}, "for": {"_count": 1, "Dudley": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 1, "some": {"_count": 1}}, "of": {"_count": 1, "black": {"_count": 1}}}, "sneakers": {"_count": 3, "underneath": {"_count": 1, "them": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "emptying": {"_count": 1}}}, "echoed": {"_count": 96, "through": {"_count": 13, "the": {"_count": 13}}, "from": {"_count": 7, "the": {"_count": 3}, "within": {"_count": 1}, "out": {"_count": 1}, "behind": {"_count": 1}, "close": {"_count": 1}}, "around": {"_count": 9, "the": {"_count": 9}}, "deafeningly": {"_count": 1, "off": {"_count": 1}}, "behind": {"_count": 2, "Harry": {"_count": 1}, "them": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "loudly": {"_count": 7, "off": {"_count": 1}, "around": {"_count": 2}, "as": {"_count": 2}, "and": {"_count": 1}, "over": {"_count": 1}}, "with": {"_count": 2, "talk": {"_count": 1}, "jeers": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 4, "to": {"_count": 1}, "through": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "over": {"_count": 1, "them": {"_count": 1}}, "Ludo": {"_count": 1, "Bagmans": {"_count": 1}}, "throughout": {"_count": 2, "the": {"_count": 2}}, "along": {"_count": 1, "the": {"_count": 1}}, "dismally": {"_count": 1, "into": {"_count": 1}}, "so": {"_count": 2, "much": {"_count": 1}, "horribly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "strangely": {"_count": 1, "across": {"_count": 1}}, "shrilly": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 4, "around": {"_count": 3}, "over": {"_count": 1}}, "as": {"_count": 1, "Snapes": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 2, "Cedrics": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 5, "one": {"_count": 1}, "the": {"_count": 2}, "many": {"_count": 1}, "his": {"_count": 1}}, "Harrys": {"_count": 1, "mood": {"_count": 1}}, "distantly": {"_count": 2, "over": {"_count": 1}, "from": {"_count": 1}}, "blankly": {"_count": 1, "looking": {"_count": 1}}, "across": {"_count": 4, "the": {"_count": 4}}, "Malfoy": {"_count": 1, "softly": {"_count": 1}}, "off": {"_count": 4, "the": {"_count": 4}}, "on": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "noisily": {"_count": 1, "off": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "elation": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "impressively": {"_count": 1, "through": {"_count": 1}}, "the": {"_count": 2, "RiddleHermione": {"_count": 1}, "relationship": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "suddenly": {"_count": 1, "from": {"_count": 1}}}, "luggage": {"_count": 30, "on": {"_count": 1, "the": {"_count": 1}}, "fitted": {"_count": 1, "easily": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "youve": {"_count": 1, "all": {"_count": 1}}, "rack": {"_count": 13, "then": {"_count": 1}, "over": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 4}, "hissing": {"_count": 1}, "under": {"_count": 1}, "frowning": {"_count": 1}, "his": {"_count": 1}}, "racks": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "fallen": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "cart": {"_count": 1, "when": {"_count": 1}}, "and": {"_count": 3, "pets": {"_count": 1}, "then": {"_count": 1}, "leading": {"_count": 1}}, "rose": {"_count": 1, "into": {"_count": 1}}, "trolley": {"_count": 1, "": {"_count": 1}}}, "separately": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "Neville": {"_count": 1, "informed": {"_count": 1}}, "for": {"_count": 1, "Hermione": {"_count": 1}}, "concealed": {"_count": 1, "Horcruxes": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}}, "lurched": {"_count": 15, "with": {"_count": 1, "nerves": {"_count": 1}}, "Its": {"_count": 1, "going": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "forward": {"_count": 2, "his": {"_count": 1}, "to": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "tipping": {"_count": 1, "Harry": {"_count": 1}}, "past": {"_count": 1, "dueling": {"_count": 1}}, "causing": {"_count": 1, "Harry": {"_count": 1}}, "One": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "one": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "nerves": {"_count": 21, "and": {"_count": 3, "Ron": {"_count": 2}, "a": {"_count": 1}}, "about": {"_count": 1, "tomorrow": {"_count": 1}}, "were": {"_count": 1, "already": {"_count": 1}}, "because": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "left": {"_count": 1, "him": {"_count": 1}}, "jangling": {"_count": 1, "": {"_count": 1}}, "couldnt": {"_count": 1, "stand": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "he": {"_count": 1, "reckons": {"_count": 1}}, "like": {"_count": 1, "these": {"_count": 1}}, "mounted": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "keep": {"_count": 1, "you": {"_count": 1}}}, "joined": {"_count": 136, "the": {"_count": 49, "crowd": {"_count": 11}, "Hufflepuffs": {"_count": 1}, "crowds": {"_count": 2}, "large": {"_count": 1}, "Gryffindors": {"_count": 1}, "team": {"_count": 1}, "line": {"_count": 1}, "fray": {"_count": 1}, "others": {"_count": 2}, "queue": {"_count": 4}, "Slytherins": {"_count": 1}, "Gryffindor": {"_count": 2}, "end": {"_count": 1}, "champions": {"_count": 1}, "ranks": {"_count": 2}, "staff": {"_count": 1}, "Ministry": {"_count": 1}, "Death": {"_count": 3}, "throng": {"_count": 1}, "school": {"_count": 1}, "rest": {"_count": 1}, "chase": {"_count": 1}, "Dark": {"_count": 1}, "stream": {"_count": 1}, "nearest": {"_count": 1}, "goblets": {"_count": 1}, "fight": {"_count": 2}, "mass": {"_count": 1}, "group": {"_count": 1}}, "them": {"_count": 15, "": {"_count": 7}, "when": {"_count": 1}, "Harry": {"_count": 1}, "at": {"_count": 3}, "for": {"_count": 2}, "just": {"_count": 1}}, "Harry": {"_count": 2, "at": {"_count": 1}, "Ron": {"_count": 1}}, "in": {"_count": 17, "": {"_count": 3}, "the": {"_count": 3}, "with": {"_count": 3}, "once": {"_count": 1}, "laughing": {"_count": 1}, "but": {"_count": 1}, "his": {"_count": 1}, "on": {"_count": 1}, "Gornuk": {"_count": 1}, "Jets": {"_count": 1}, "history": {"_count": 1}}, "Neville": {"_count": 1, "Seamus": {"_count": 1}}, "him": {"_count": 7, "shaking": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 2}, "within": {"_count": 1}, "gripping": {"_count": 1}}, "her": {"_count": 5, "by": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "at": {"_count": 1, "their": {"_count": 1}}, "Hermione": {"_count": 3, "who": {"_count": 2}, "and": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "by": {"_count": 3, "Hermione": {"_count": 1}, "those": {"_count": 1}, "other": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 2}}, "it": {"_count": 1, "right": {"_count": 1}}, "your": {"_count": 1, "fan": {"_count": 1}}, "us": {"_count": 1, "for": {"_count": 1}}, "Voldemort": {"_count": 1, "as": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "smoothly": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 3, "stream": {"_count": 1}, "small": {"_count": 1}, "number": {"_count": 1}}, "HeWhoMust": {"_count": 1, "NotBeNamed": {"_count": 1}}, "forces": {"_count": 3, "with": {"_count": 3}}, "as": {"_count": 1, "you": {"_count": 1}}, "his": {"_count": 1, "staff": {"_count": 1}}, "those": {"_count": 2, "highly": {"_count": 1}, "cast": {"_count": 1}}, "Katie": {"_count": 1, "Demelza": {"_count": 1}}, "up": {"_count": 2, "Ron": {"_count": 1}, "when": {"_count": 1}}, "here": {"_count": 1, "tonight": {"_count": 1}}, "their": {"_count": 1, "silent": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "Master": {"_count": 1, "Regulus": {"_count": 1}}, "me": {"_count": 1, "here": {"_count": 1}}, "theirs": {"_count": 1, "": {"_count": 1}}, "Bill": {"_count": 1, "Fleur": {"_count": 1}}}, "thronging": {"_count": 3, "the": {"_count": 1, "corridor": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "slowed": {"_count": 19, "right": {"_count": 1, "down": {"_count": 1}}, "to": {"_count": 3, "a": {"_count": 2}, "save": {"_count": 1}}, "and": {"_count": 3, "finally": {"_count": 1}, "died": {"_count": 1}, "walked": {"_count": 1}}, "down": {"_count": 8, "before": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 1}, "searching": {"_count": 1}, "coming": {"_count": 1}, "skirting": {"_count": 1}}, "the": {"_count": 1, "players": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "Charing": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}}, "familiar": {"_count": 84, "voice": {"_count": 13, "Firs": {"_count": 1}, "as": {"_count": 2}, "": {"_count": 2}, "from": {"_count": 2}, "issuing": {"_count": 1}, "was": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 2}, "rang": {"_count": 1}}, "snowwhite": {"_count": 1, "marble": {"_count": 1}}, "path": {"_count": 2, "to": {"_count": 1}, "down": {"_count": 1}}, "circular": {"_count": 2, "room": {"_count": 1}, "dormitory": {"_count": 1}}, "clicking": {"_count": 1, "noise": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "?": {"_count": 2}}, "picture": {"_count": 1, "of": {"_count": 1}}, "wave": {"_count": 1, "of": {"_count": 1}}, "corridors": {"_count": 1, "he": {"_count": 1}}, "misty": {"_count": 2, "voice": {"_count": 2}}, "icy": {"_count": 1, "cold": {"_count": 1}}, "screaming": {"_count": 1, "": {"_count": 1}}, "faces": {"_count": 2, "other": {"_count": 1}, "": {"_count": 1}}, "flick": {"_count": 1, "upward": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "clause": {"_count": 1}, "The": {"_count": 1}}, "drawling": {"_count": 2, "voice": {"_count": 2}}, "sweet": {"_count": 1, "perfume": {"_count": 1}}, "feeling": {"_count": 1, "of": {"_count": 1}}, "sneer": {"_count": 2, "firmly": {"_count": 1}, "curling": {"_count": 1}}, "clunking": {"_count": 1, "noise": {"_count": 1}}, "unctuous": {"_count": 1, "note": {"_count": 1}}, "gvoice": {"_count": 1, "saying": {"_count": 1}}, "smell": {"_count": 1, "and": {"_count": 1}}, "call": {"_count": 1, "of": {"_count": 1}}, "song": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 5, "Harry": {"_count": 4}, "anybody": {"_count": 1}}, "swooping": {"_count": 1, "sensation": {"_count": 1}}, "sensation": {"_count": 2, "of": {"_count": 2}}, "litter": {"_count": 1, "of": {"_count": 1}}, "shallow": {"_count": 1, "stone": {"_count": 1}}, "thin": {"_count": 2, "slanting": {"_count": 2}}, "Thank": {"_count": 1, "you": {"_count": 1}}, "guilty": {"_count": 1, "expression": {"_count": 1}}, "office": {"_count": 1, "that": {"_count": 1}}, "names": {"_count": 1, "in": {"_count": 1}}, "boiling": {"_count": 1, "sensation": {"_count": 1}}, "kindly": {"_count": 1, "smile": {"_count": 1}}, "Racking": {"_count": 1, "his": {"_count": 1}}, "small": {"_count": 1, "and": {"_count": 1}}, "dreadfully": {"_count": 1, "altered": {"_count": 1}}, "hooknosed": {"_count": 1, "blackhaired": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "friendly": {"_count": 1}}, "friendly": {"_count": 1, "voices": {"_count": 1}}, "rasping": {"_count": 1, "voice": {"_count": 1}}, "landscape": {"_count": 1, "": {"_count": 1}}, "Hogsmeade": {"_count": 1, "High": {"_count": 1}}, "room": {"_count": 1, "with": {"_count": 1}}, "place": {"_count": 1, "scene": {"_count": 1}}}, "Firs": {"_count": 9, "years": {"_count": 5, "": {"_count": 1}, "over": {"_count": 2}, "follow": {"_count": 1}, "this": {"_count": 1}}, "yeh": {"_count": 1, "weren": {"_count": 1}}, "task": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "presented": {"_count": 1}}, "Katie": {"_count": 1, "now": {"_count": 1}}}, "beamed": {"_count": 47, "over": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 18, "the": {"_count": 2}, "Hermione": {"_count": 1}, "him": {"_count": 8}, "them": {"_count": 2}, "Harry": {"_count": 2}, "one": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}}, "down": {"_count": 2, "at": {"_count": 2}}, "Seamus": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 3, "she": {"_count": 1}, "Harry": {"_count": 1}, "everyone": {"_count": 1}}, "Lockhart": {"_count": 2, "": {"_count": 2}}, "and": {"_count": 2, "waved": {"_count": 1}, "looked": {"_count": 1}}, "up": {"_count": 2, "at": {"_count": 2}}, "very": {"_count": 1, "brightly": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Mrs": {"_count": 2, "Weasley": {"_count": 2}}, "again": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "pleasure": {"_count": 1}}, "reminiscently": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 2, "now": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 1, "became": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}}, "Cmon": {"_count": 45, "follow": {"_count": 1, "me": {"_count": 1}}, "lets": {"_count": 3, "go": {"_count": 3}}, "we": {"_count": 1, "need": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 9}, "!": {"_count": 2}}, "now": {"_count": 3, "": {"_count": 1}, "get": {"_count": 1}, "quick": {"_count": 1}}, "Fang": {"_count": 1, "were": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "muttered": {"_count": 1}}, "Ginny": {"_count": 2, "lets": {"_count": 1}, "Demelza": {"_count": 1}}, "Ron": {"_count": 3, "said": {"_count": 2}, "": {"_count": 1}}, "Harry": {"_count": 6, "youve": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 2}, "muttered": {"_count": 1}}, "Malfoy": {"_count": 1, "muttered": {"_count": 1}}, "said": {"_count": 4, "Fred": {"_count": 1}, "Harry": {"_count": 3}}, "quick": {"_count": 1, "or": {"_count": 1}}, "then": {"_count": 1, "Ill": {"_count": 1}}, "move": {"_count": 1, "in": {"_count": 1}}, "Im": {"_count": 1, "starving": {"_count": 1}}, "George": {"_count": 1, "if": {"_count": 1}}, "everyone": {"_count": 1, "": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}}, "firs": {"_count": 17, "years": {"_count": 3, "": {"_count": 2}, "Professor": {"_count": 1}}, "sight": {"_count": 1, "o": {"_count": 1}}, "ever": {"_count": 1, "lesson": {"_count": 1}}, "thing": {"_count": 3, "yehll": {"_count": 1}, "yeh": {"_count": 1}, "this": {"_count": 1}}, "move": {"_count": 1, "Hagrid": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "met": {"_count": 1, "you": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "day": {"_count": 1, "we": {"_count": 1}}, "present": {"_count": 1, "an": {"_count": 1}}, "one": {"_count": 2, "an": {"_count": 1}, "born": {"_count": 1}}, "lessons": {"_count": 1, "straight": {"_count": 1}}}, "Slipping": {"_count": 4, "and": {"_count": 3, "stumbling": {"_count": 1}, "sliding": {"_count": 1}, "staggering": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "stumbling": {"_count": 9, "they": {"_count": 1, "followed": {"_count": 1}}, "and": {"_count": 1, "tripping": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "forward": {"_count": 1, "and": {"_count": 1}}, "occasionally": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "steep": {"_count": 18, "narrow": {"_count": 2, "path": {"_count": 1}, "street": {"_count": 1}}, "dive": {"_count": 1, "racing": {"_count": 1}}, "spiral": {"_count": 1, "staircase": {"_count": 1}}, "slope": {"_count": 1, "toward": {"_count": 1}}, "winding": {"_count": 1, "and": {"_count": 1}}, "steps": {"_count": 1, "like": {"_count": 1}}, "stone": {"_count": 2, "step": {"_count": 2}}, "side": {"_count": 1, "street": {"_count": 1}}, "hills": {"_count": 1, "its": {"_count": 1}}, "downward": {"_count": 1, "slope": {"_count": 1}}, "wooded": {"_count": 1, "slope": {"_count": 1}}, "and": {"_count": 1, "narrow": {"_count": 1}}, "flight": {"_count": 1, "of": {"_count": 1}}, "stairs": {"_count": 1, "onto": {"_count": 1}}, "staircase": {"_count": 2, "": {"_count": 2}}}, "path": {"_count": 109, "": {"_count": 21, ".": {"_count": 20}, "!": {"_count": 1}}, "had": {"_count": 1, "opened": {"_count": 1}}, "and": {"_count": 14, "Harry": {"_count": 1}, "leprechauns": {"_count": 1}, "saw": {"_count": 1}, "whether": {"_count": 1}, "hit": {"_count": 1}, "recited": {"_count": 1}, "began": {"_count": 2}, "after": {"_count": 1}, "the": {"_count": 1}, "felt": {"_count": 1}, "erupted": {"_count": 1}, "run": {"_count": 1}, "did": {"_count": 1}}, "while": {"_count": 1, "Malfoy": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 2, "after": {"_count": 1}, "kept": {"_count": 1}}, "when": {"_count": 1, "Hermione": {"_count": 1}}, "Ill": {"_count": 1, "come": {"_count": 1}}, "became": {"_count": 1, "almost": {"_count": 1}}, "Hagrid": {"_count": 1, "puffing": {"_count": 1}}, "to": {"_count": 7, "Gryffindor": {"_count": 2}, "Harry": {"_count": 1}, "the": {"_count": 4}}, "for": {"_count": 3, "signs": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "through": {"_count": 5, "the": {"_count": 3}, "them": {"_count": 1}, "a": {"_count": 1}}, "it": {"_count": 1, "obviously": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}, "toward": {"_count": 1, "Hogsmeade": {"_count": 1}}, "Moran": {"_count": 1, "ducked": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 3, "packed": {"_count": 1}, "becoming": {"_count": 1}, "crooked": {"_count": 1}}, "panting": {"_count": 1, "and": {"_count": 1}}, "deeper": {"_count": 1, "into": {"_count": 1}}, "they": {"_count": 2, "walked": {"_count": 1}, "had": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "ahead": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "following": {"_count": 1, "Siriuss": {"_count": 1}}, "seemed": {"_count": 1, "completely": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 5, "would": {"_count": 1}, "intersected": {"_count": 1}, "leads": {"_count": 2}, "he": {"_count": 1}}, "running": {"_count": 1, "parallel": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "without": {"_count": 1, "speaking": {"_count": 1}}, "he": {"_count": 2, "saw": {"_count": 2}}, "blocking": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "Lord": {"_count": 1}}, "down": {"_count": 2, "to": {"_count": 2}}, "Potter": {"_count": 1, "they": {"_count": 1}}, "Harry": {"_count": 1, "at": {"_count": 1}}, "Slughorn": {"_count": 1, "s": {"_count": 1}}, "leading": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "stretching": {"_count": 1, "ahead": {"_count": 1}}, "blocked": {"_count": 2, "as": {"_count": 1}, "by": {"_count": 1}}, "laid": {"_count": 1, "out": {"_count": 1}}, "his": {"_count": 1, "black": {"_count": 1}}, "indicated": {"_count": 1, "for": {"_count": 1}}}, "trees": {"_count": 176, "there": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 6, "swaying": {"_count": 1}, "so": {"_count": 2}, "as": {"_count": 1}, "growing": {"_count": 1}, "beginning": {"_count": 1}}, "stood": {"_count": 3, "around": {"_count": 1}, "so": {"_count": 1}, "Firenze": {"_count": 1}}, "until": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 37, ".": {"_count": 37}}, "behind": {"_count": 7, "Ronan": {"_count": 1}, "him": {"_count": 2}, "which": {"_count": 2}, "Hagrid": {"_count": 1}, "the": {"_count": 1}}, "blocked": {"_count": 1, "their": {"_count": 1}}, "their": {"_count": 2, "flanks": {"_count": 1}, "white": {"_count": 1}}, "leaving": {"_count": 1, "Ronan": {"_count": 1}}, "in": {"_count": 6, "silence": {"_count": 1}, "the": {"_count": 4}, "front": {"_count": 1}}, "however": {"_count": 1, "when": {"_count": 1}}, "he": {"_count": 3, "seemed": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 2}}, "that": {"_count": 5, "blocked": {"_count": 1}, "was": {"_count": 1}, "lined": {"_count": 1}, "surrounded": {"_count": 1}, "grew": {"_count": 1}}, "we": {"_count": 1, "couldve": {"_count": 1}}, "larger": {"_count": 1, "branches": {"_count": 1}}, "and": {"_count": 18, "thick": {"_count": 1}, "Harry": {"_count": 2}, "five": {"_count": 1}, "white": {"_count": 1}, "came": {"_count": 1}, "started": {"_count": 1}, "then": {"_count": 1}, "turned": {"_count": 1}, "was": {"_count": 1}, "after": {"_count": 1}, "knows": {"_count": 1}, "soared": {"_count": 1}, "bushes": {"_count": 2}, "stewed": {"_count": 1}, "surrounded": {"_count": 1}, "soon": {"_count": 1}}, "had": {"_count": 2, "become": {"_count": 1}, "gone": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "thinned": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 3, "Hagrids": {"_count": 2}, "which": {"_count": 1}}, "leaping": {"_count": 1, "out": {"_count": 1}}, "glittering": {"_count": 1, "with": {"_count": 1}}, "ahead": {"_count": 2, "and": {"_count": 1}, "cast": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "an": {"_count": 1}}, "blows": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "turned": {"_count": 1}, "tried": {"_count": 1}}, "keeping": {"_count": 1, "to": {"_count": 1}}, "could": {"_count": 1, "now": {"_count": 1}}, "through": {"_count": 2, "which": {"_count": 1}, "a": {"_count": 1}}, "lighting": {"_count": 1, "a": {"_count": 1}}, "children": {"_count": 1, "were": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "they": {"_count": 1, "saw": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "Fang": {"_count": 1, "trotting": {"_count": 1}}, "near": {"_count": 1, "us": {"_count": 1}}, "where": {"_count": 1, "Winky": {"_count": 1}}, "whose": {"_count": 1, "wood": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "Dumbledore": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}}, "folded": {"_count": 1, "its": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "grew": {"_count": 1, "so": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "roots": {"_count": 2, "beginning": {"_count": 1}, "": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}}, "moving": {"_count": 1, "at": {"_count": 1}}, "by": {"_count": 2, "Bane": {"_count": 1}, "the": {"_count": 1}}, "aside": {"_count": 1, "as": {"_count": 1}}, "now": {"_count": 2, "their": {"_count": 1}, "and": {"_count": 1}}, "supporting": {"_count": 1, "Professor": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "growing": {"_count": 2, "nearby": {"_count": 1}, "close": {"_count": 1}}, "slid": {"_count": 1, "over": {"_count": 1}}, "broke": {"_count": 1, "the": {"_count": 1}}, "become": {"_count": 1, "a": {"_count": 1}}, "looked": {"_count": 1, "younger": {"_count": 1}}, "would": {"_count": 1, "give": {"_count": 1}}, "twinkling": {"_count": 1, "from": {"_count": 1}}, "dark": {"_count": 1, "through": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}, "the": {"_count": 1, "sword": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "bent": {"_count": 1, "with": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "back": {"_count": 1, "through": {"_count": 1}}, "creaking": {"_count": 1, "and": {"_count": 1}}}, "losing": {"_count": 57, "his": {"_count": 8, "toad": {"_count": 2}, "nerve": {"_count": 1}, "mind": {"_count": 1}, "grip": {"_count": 1}, "marbles": {"_count": 1}, "ring": {"_count": 1}, "wand": {"_count": 1}}, "spectacularly": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 3, "too": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "battle": {"_count": 3, "next": {"_count": 1}, "there": {"_count": 1}, "not": {"_count": 1}}, "speed": {"_count": 1, "": {"_count": 1}}, "altitude": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 1, "Slytherin": {"_count": 1}}, "your": {"_count": 3, "touch": {"_count": 1}, "badge": {"_count": 1}, "grip": {"_count": 1}}, "on": {"_count": 1, "purpose": {"_count": 1}}, "patience": {"_count": 2, "I": {"_count": 1}, "and": {"_count": 1}}, "my": {"_count": 3, "memory": {"_count": 1}, "mind": {"_count": 1}, "temper": {"_count": 1}}, "concentration": {"_count": 1, "and": {"_count": 1}}, "feeling": {"_count": 1, "in": {"_count": 1}}, "weight": {"_count": 1, "ever": {"_count": 1}}, "a": {"_count": 4, "member": {"_count": 1}, "bit": {"_count": 1}, "Knut": {"_count": 1}, "little": {"_count": 1}}, "her": {"_count": 2, "head": {"_count": 1}, "touch": {"_count": 1}}, "heart": {"_count": 1, "halfway": {"_count": 1}}, "side": {"_count": 1, "Potter": {"_count": 1}}, "the": {"_count": 4, "team": {"_count": 1}, "thread": {"_count": 1}, "hope": {"_count": 1}, "little": {"_count": 1}}, "track": {"_count": 2, "of": {"_count": 2}}, "interest": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "prophecy": {"_count": 1}}, "family": {"_count": 1, "members": {"_count": 1}}, "Amelia": {"_count": 1, "Bones": {"_count": 1}}, "control": {"_count": 1, "and": {"_count": 1}}, "hope": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 1, "Tonks": {"_count": 1}}, "confidence": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "MadEye": {"_count": 1, "hung": {"_count": 1}}, "fingernails": {"_count": 1, "Harry": {"_count": 1}}, "height": {"_count": 1, "": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}}, "Yehll": {"_count": 6, "get": {"_count": 1, "yer": {"_count": 1}}, "do": {"_count": 3, "summat": {"_count": 1}, "whayer": {"_count": 1}, "it": {"_count": 1}}, "enjoy": {"_count": 1, "this": {"_count": 1}}, "be": {"_count": 1, "amazed": {"_count": 1}}}, "sec": {"_count": 2, "Hagrid": {"_count": 1, "called": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bend": {"_count": 16, "here": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "firstyear": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "over": {"_count": 2, "the": {"_count": 1}, "me": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "to": {"_count": 3, "see": {"_count": 1}, "kiss": {"_count": 1}, "my": {"_count": 1}}, "its": {"_count": 2, "knees": {"_count": 1}, "will": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "speed": {"_count": 1}}}, "Oooooh": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "atop": {"_count": 2, "a": {"_count": 1, "high": {"_count": 1}}, "her": {"_count": 1, "ironcolored": {"_count": 1}}}, "mountain": {"_count": 29, "on": {"_count": 1, "the": {"_count": 1}}, "troll": {"_count": 4, "on": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}, "and": {"_count": 1}}, "trolls": {"_count": 2, "": {"_count": 2}}, "of": {"_count": 7, "cream": {"_count": 1}, "homework": {"_count": 2}, "Frogs": {"_count": 1}, "sprouts": {"_count": 1}, "old": {"_count": 1}, "broken": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "ranges": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "whose": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "himself": {"_count": 1}}, "for": {"_count": 1, "Sirius": {"_count": 1}}, "movin": {"_count": 1, "": {"_count": 1}}, "lake": {"_count": 1, "an": {"_count": 1}}, "road": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}}, "starry": {"_count": 19, "sky": {"_count": 10, "was": {"_count": 1}, "for": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 2}, "visible": {"_count": 2}, "Harry": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "ceiling": {"_count": 2, "": {"_count": 1}, "toward": {"_count": 1}}, "black": {"_count": 2, "ceiling": {"_count": 2}}, "room": {"_count": 1, "vanished": {"_count": 1}}, "transparent": {"_count": 1, "sphere": {"_count": 1}}, "sphere": {"_count": 1, "which": {"_count": 1}}, "cage": {"_count": 1, "holding": {"_count": 1}}}, "castle": {"_count": 404, "with": {"_count": 9, "many": {"_count": 1}, "its": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 2}, "Ron": {"_count": 1}, "a": {"_count": 1}}, "overhead": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 2, "they": {"_count": 1}, "Black": {"_count": 1}}, "": {"_count": 105, ".": {"_count": 94}, "?": {"_count": 8}, "!": {"_count": 3}}, "door": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 13, "study": {"_count": 1}, "be": {"_count": 1}, "follow": {"_count": 1}, "North": {"_count": 1}, "practice": {"_count": 1}, "visit": {"_count": 1}, "greet": {"_count": 1}, "get": {"_count": 1}, "report": {"_count": 1}, "teach": {"_count": 1}, "see": {"_count": 1}, "tell": {"_count": 1}, "you": {"_count": 1}}, "and": {"_count": 35, "would": {"_count": 1}, "made": {"_count": 1}, "set": {"_count": 1}, "started": {"_count": 1}, "they": {"_count": 2}, "grounds": {"_count": 2}, "out": {"_count": 1}, "I": {"_count": 1}, "tell": {"_count": 1}, "began": {"_count": 1}, "smiling": {"_count": 1}, "leave": {"_count": 1}, "the": {"_count": 3}, "Im": {"_count": 1}, "its": {"_count": 1}, "then": {"_count": 2}, "sure": {"_count": 1}, "Rons": {"_count": 1}, "by": {"_count": 1}, "a": {"_count": 2}, "both": {"_count": 1}, "Harry": {"_count": 1}, "seek": {"_count": 1}, "learn": {"_count": 1}, "strayed": {"_count": 1}, "show": {"_count": 1}, "strained": {"_count": 1}, "as": {"_count": 1}, "yelled": {"_count": 1}}, "for": {"_count": 11, "dinner": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 3}, "lunch": {"_count": 3}, "Rita": {"_count": 1}, "break": {"_count": 1}}, "felt": {"_count": 1, "more": {"_count": 1}}, "he": {"_count": 8, "saw": {"_count": 1}, "thought": {"_count": 1}, "wants": {"_count": 1}, "jerked": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}, "still": {"_count": 1}, "did": {"_count": 1}}, "at": {"_count": 9, "the": {"_count": 2}, "night": {"_count": 3}, "Harry": {"_count": 1}, "its": {"_count": 1}, "noon": {"_count": 1}, "once": {"_count": 1}}, "feeling": {"_count": 1, "Saturday": {"_count": 1}}, "they": {"_count": 3, "never": {"_count": 1}, "saw": {"_count": 1}, "spotted": {"_count": 1}}, "his": {"_count": 3, "lamp": {"_count": 1}, "face": {"_count": 1}, "first": {"_count": 1}}, "an": {"_count": 4, "pack": {"_count": 1}, "Sirius": {"_count": 1}, "hour": {"_count": 1}, "don": {"_count": 1}}, "turned": {"_count": 1, "their": {"_count": 1}}, "was": {"_count": 10, "right": {"_count": 1}, "quiet": {"_count": 1}, "darker": {"_count": 1}, "very": {"_count": 1}, "being": {"_count": 1}, "wearing": {"_count": 1}, "closed": {"_count": 1}, "unnaturally": {"_count": 1}, "completely": {"_count": 1}, "empty": {"_count": 1}}, "wall": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "together": {"_count": 3, "crossed": {"_count": 1}, "far": {"_count": 1}, "on": {"_count": 1}}, "Ron": {"_count": 4, "hiccoughing": {"_count": 1}, "": {"_count": 1}, "Yeah": {"_count": 1}, "Hermione": {"_count": 1}}, "windows": {"_count": 6, "for": {"_count": 1}, "striding": {"_count": 1}, "hit": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "of": {"_count": 1, "which": {"_count": 1}}, "in": {"_count": 4, "tightknit": {"_count": 1}, "a": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 5, "mood": {"_count": 1}, "usual": {"_count": 1}, "red": {"_count": 1}, "night": {"_count": 1}, "secret": {"_count": 1}}, "when": {"_count": 2, "term": {"_count": 1}, "Harry": {"_count": 1}}, "Harry": {"_count": 3, "was": {"_count": 1}, "glanced": {"_count": 1}, "saw": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "corridors": {"_count": 1, "wasnt": {"_count": 1}}, "sky": {"_count": 1, "and": {"_count": 1}}, "where": {"_count": 2, "things": {"_count": 1}, "the": {"_count": 1}}, "walls": {"_count": 2, "outside": {"_count": 1}, "and": {"_count": 1}}, "dodging": {"_count": 1, "all": {"_count": 1}}, "feeding": {"_count": 1, "me": {"_count": 1}}, "but": {"_count": 7, "the": {"_count": 1}, "they": {"_count": 1}, "off": {"_count": 1}, "Harry": {"_count": 1}, "My": {"_count": 1}, "what": {"_count": 1}, "from": {"_count": 1}}, "said": {"_count": 3, "Aragog": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 1}}, "loomed": {"_count": 1, "nearer": {"_count": 1}}, "once": {"_count": 6, "the": {"_count": 1}, "more": {"_count": 3}, "youd": {"_count": 1}, "and": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 1}, "one": {"_count": 1}, "his": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "after": {"_count": 1, "lunch": {"_count": 1}}, "Professor": {"_count": 2, "Dumbledore": {"_count": 1}, "McGonagall": {"_count": 1}}, "would": {"_count": 3, "have": {"_count": 1}, "mean": {"_count": 1}, "hear": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "became": {"_count": 1, "wilder": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "grounds": {"_count": 5, "": {"_count": 1}, "were": {"_count": 1}, "for": {"_count": 1}, "by": {"_count": 1}, "said": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "quick": {"_count": 1, "See": {"_count": 1}}, "lying": {"_count": 1, "around": {"_count": 1}}, "steps": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "at": {"_count": 1}}, "doors": {"_count": 5, "listening": {"_count": 1}, "behind": {"_count": 1}, "flew": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "open": {"_count": 1, "in": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "walking": {"_count": 1, "slowly": {"_count": 1}}, "into": {"_count": 1, "this": {"_count": 1}}, "every": {"_count": 1, "month": {"_count": 1}}, "Lupin": {"_count": 1, "and": {"_count": 1}}, "lights": {"_count": 1, "growing": {"_count": 1}}, "behind": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "singing": {"_count": 1, "at": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "you": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 1, "this": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "seemed": {"_count": 4, "to": {"_count": 3}, "very": {"_count": 1}}, "growing": {"_count": 1, "larger": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 2, "I": {"_count": 1}, "hes": {"_count": 1}}, "slipped": {"_count": 1, "in": {"_count": 1}}, "always": {"_count": 1, "was": {"_count": 1}}, "signaling": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 4, "been": {"_count": 2}, "done": {"_count": 1}, "deteriorated": {"_count": 1}}, "also": {"_count": 1, "not": {"_count": 1}}, "later": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 3, "minuscule": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "got": {"_count": 1, "blocked": {"_count": 1}}, "a": {"_count": 1, "quarter": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "on": {"_count": 3, "my": {"_count": 1}, "their": {"_count": 1}, "Dumbledores": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "were": {"_count": 2, "gone": {"_count": 1}, "muffled": {"_count": 1}}, "Cho": {"_count": 1, "said": {"_count": 1}}, "supporting": {"_count": 1, "Katie": {"_count": 1}}, "dropped": {"_count": 1, "so": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 4}}, "You": {"_count": 1, "try": {"_count": 1}}, "dragging": {"_count": 1, "their": {"_count": 1}}, "forever": {"_count": 1, "than": {"_count": 1}}, "quite": {"_count": 1, "convinced": {"_count": 1}}, "next": {"_count": 1, "day": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 2}}, "opened": {"_count": 1, "directly": {"_count": 1}}, "we": {"_count": 1, "watched": {"_count": 1}}, "its": {"_count": 2, "wide": {"_count": 1}, "me": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "wiping": {"_count": 1, "his": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "that": {"_count": 2, "Ive": {"_count": 1}, "he": {"_count": 1}}, "seize": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "turrets": {"_count": 1, "but": {"_count": 1}}, "so": {"_count": 3, "they": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}}, "below": {"_count": 1, "Harry": {"_count": 1}}, "front": {"_count": 1, "Fang": {"_count": 1}}, "I": {"_count": 3, "dont": {"_count": 1}, "had": {"_count": 1}, "have": {"_count": 1}}, "ghosts": {"_count": 1, "were": {"_count": 1}}, "saw": {"_count": 1, "Potter": {"_count": 1}}, "except": {"_count": 1, "to": {"_count": 1}}, "protected": {"_count": 1, "by": {"_count": 1}}, "shortly": {"_count": 1, "he": {"_count": 1}}, "then": {"_count": 1, "Horace": {"_count": 1}}, "shook": {"_count": 1, "and": {"_count": 1}}, "quaked": {"_count": 1, "again": {"_count": 1}}, "fallen": {"_count": 1, "silent": {"_count": 1}}, "stood": {"_count": 1, "but": {"_count": 1}}, "HAGGER": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "now": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "must": {"_count": 1, "all": {"_count": 1}}, "courtyard": {"_count": 1, "evidently": {"_count": 1}}, "now": {"_count": 1, "kneel": {"_count": 1}}, "uttering": {"_count": 1, "loud": {"_count": 1}}}, "turrets": {"_count": 7, "and": {"_count": 4, "towers": {"_count": 3}, "a": {"_count": 1}}, "of": {"_count": 1, "snowy": {"_count": 1}}, "jetblack": {"_count": 1, "against": {"_count": 1}}, "but": {"_count": 1, "these": {"_count": 1}}}, "towers": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "of": {"_count": 1, "Hogwarts": {"_count": 1}}, "draw": {"_count": 1, "nearer": {"_count": 1}}, "Ravenclaw": {"_count": 1, "Astronomy": {"_count": 1}}}, "moren": {"_count": 8, "four": {"_count": 1, "to": {"_count": 1}}, "enough": {"_count": 1, "fer": {"_count": 1}}, "she": {"_count": 2, "can": {"_count": 1}, "liked": {"_count": 1}}, "broomsticks": {"_count": 1, "or": {"_count": 1}}, "yeh": {"_count": 1, "oughta": {"_count": 1}}, "I": {"_count": 1, "expected": {"_count": 1}}, "that": {"_count": 1, "ter": {"_count": 1}}}, "fleet": {"_count": 4, "of": {"_count": 4, "little": {"_count": 2}, "boats": {"_count": 1}, "carriages": {"_count": 1}}}, "boats": {"_count": 10, "sitting": {"_count": 1, "in": {"_count": 1}}, "moved": {"_count": 1, "off": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "carried": {"_count": 1, "them": {"_count": 1}}, "as": {"_count": 1, "people": {"_count": 1}}, "of": {"_count": 1, "thick": {"_count": 1}}, "that": {"_count": 1, "sailed": {"_count": 1}}, "cannot": {"_count": 1, "approach": {"_count": 1}}, "prow": {"_count": 1, "cleaving": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "shore": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "Voldemort": {"_count": 1}}}, "FORWARD": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "gliding": {"_count": 35, "across": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 1}, "like": {"_count": 1}, "to": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 3}, "onto": {"_count": 1}}, "noiselessly": {"_count": 2, "behind": {"_count": 1}, "came": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "toward": {"_count": 8, "them": {"_count": 3}, "him": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}}, "around": {"_count": 2, "the": {"_count": 2}}, "quietly": {"_count": 1, "toward": {"_count": 1}}, "slowly": {"_count": 1, "toward": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "smoothly": {"_count": 2, "toward": {"_count": 1}, "away": {"_count": 1}}, "along": {"_count": 3, "absentmindedly": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}}, "between": {"_count": 1, "shining": {"_count": 1}}, "Monsieur": {"_count": 1, "Delacour": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}}, "smooth": {"_count": 44, "as": {"_count": 3, "glass": {"_count": 1}, "velvet": {"_count": 1}, "they": {"_count": 1}}, "damp": {"_count": 1, "grass": {"_count": 1}}, "flat": {"_count": 1, "lawn": {"_count": 1}}, "black": {"_count": 3, "glassy": {"_count": 1}, "surface": {"_count": 1}, "currantcolored": {"_count": 1}}, "Chamber": {"_count": 1, "floor": {"_count": 1}}, "action": {"_count": 2, "of": {"_count": 1}, "its": {"_count": 1}}, "neck": {"_count": 1, "lowered": {"_count": 1}}, "streamlined": {"_count": 1, "birch": {"_count": 1}}, "surface": {"_count": 3, "of": {"_count": 3}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "all": {"_count": 1}}, "chin": {"_count": 1, "and": {"_count": 1}}, "scaled": {"_count": 1, "green": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "and": {"_count": 3, "flat": {"_count": 1}, "blank": {"_count": 1}, "virtually": {"_count": 1}}, "was": {"_count": 1, "it": {"_count": 1}}, "cold": {"_count": 1, "handle": {"_count": 1}}, "the": {"_count": 1, "mangled": {"_count": 1}}, "yellowish": {"_count": 1, "surface": {"_count": 1}}, "stone": {"_count": 2, "slide": {"_count": 1}, "steps": {"_count": 1}}, "powerful": {"_count": 1, "and": {"_count": 1}}, "mound": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "skull": {"_count": 1}}, "circles": {"_count": 1, "up": {"_count": 1}}, "crimson": {"_count": 1, "velvet": {"_count": 1}}, "glassy": {"_count": 1, "blackness": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "rock": {"_count": 1, "in": {"_count": 1}}, "soaked": {"_count": 1, "surface": {"_count": 1}}, "golden": {"_count": 1, "surface": {"_count": 1}}, "mass": {"_count": 1, "smashed": {"_count": 1}}}, "sailed": {"_count": 8, "nearer": {"_count": 1, "and": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "within": {"_count": 1, "an": {"_count": 1}}, "away": {"_count": 1, "leaving": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "over": {"_count": 1, "Harrys": {"_count": 1}}, "through": {"_count": 1, "another": {"_count": 1}}}, "cliff": {"_count": 19, "on": {"_count": 1, "which": {"_count": 1}}, "they": {"_count": 1, "all": {"_count": 1}}, "face": {"_count": 3, "": {"_count": 2}, "at": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "stood": {"_count": 1, "behind": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "into": {"_count": 1, "which": {"_count": 1}}, "top": {"_count": 1, "garden": {"_count": 1}}, "overlooking": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "Ron": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "Heads": {"_count": 27, "down": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 18, "Houses": {"_count": 9}, "the": {"_count": 1}, "House": {"_count": 7}, "all": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "turned": {"_count": 2, "as": {"_count": 2}}, "office": {"_count": 2, "has": {"_count": 1}, "said": {"_count": 1}}, "o": {"_count": 1, "Houses": {"_count": 1}}, "sign": {"_count": 1, "creaked": {"_count": 1}}, "barman": {"_count": 1, "was": {"_count": 1}}}, "curtain": {"_count": 24, "of": {"_count": 4, "ivy": {"_count": 1}, "rain": {"_count": 1}, "greasy": {"_count": 1}, "hair": {"_count": 1}}, "drawn": {"_count": 1, "around": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "over": {"_count": 1, "the": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "an": {"_count": 1, "inch": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "or": {"_count": 1, "veil": {"_count": 1}}, "he": {"_count": 2, "Harry": {"_count": 1}, "had": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "to": {"_count": 1, "help": {"_count": 1}}, "and": {"_count": 1, "drawing": {"_count": 1}}, "aside": {"_count": 1, "an": {"_count": 1}}, "fell": {"_count": 1, "on": {"_count": 1}}}, "ivy": {"_count": 5, "that": {"_count": 1, "hid": {"_count": 1}}, "spreading": {"_count": 1, "unchecked": {"_count": 1}}, "took": {"_count": 1, "out": {"_count": 1}}, "crossing": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "snow": {"_count": 1}}}, "opening": {"_count": 71, "in": {"_count": 4, "the": {"_count": 2}, "which": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 3, "door": {"_count": 1}, "nearby": {"_count": 1}, "bottle": {"_count": 1}}, "the": {"_count": 10, "door": {"_count": 4}, "Chamber": {"_count": 2}, "front": {"_count": 1}, "cabin": {"_count": 1}, "neck": {"_count": 1}, "ball": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "wider": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 11, "": {"_count": 3}, "and": {"_count": 5}, "grabbing": {"_count": 1}, "several": {"_count": 1}, "than": {"_count": 1}}, "his": {"_count": 9, "lips": {"_count": 2}, "desk": {"_count": 1}, "own": {"_count": 1}, "potion": {"_count": 1}, "mouth": {"_count": 2}, "eyes": {"_count": 2}}, "and": {"_count": 5, "shutting": {"_count": 1}, "closing": {"_count": 2}, "reading": {"_count": 1}, "peered": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "one": {"_count": 1, "letter": {"_count": 1}}, "he": {"_count": 1, "struggled": {"_count": 1}}, "notes": {"_count": 1, "of": {"_count": 1}}, "leading": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 2}, "the": {"_count": 2}}, "its": {"_count": 1, "mouth": {"_count": 1}}, "match": {"_count": 2, "against": {"_count": 2}}, "game": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "what": {"_count": 1}}, "they": {"_count": 1, "all": {"_count": 1}}, "empty": {"_count": 1, "drawers": {"_count": 1}}, "hostilities": {"_count": 1, "this": {"_count": 1}}, "again": {"_count": 1, "whenever": {"_count": 1}}, "your": {"_count": 1, "mind": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "another": {"_count": 1, "bottle": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "crammed": {"_count": 1, "from": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "he": {"_count": 1}}}, "tunnel": {"_count": 52, "which": {"_count": 1, "seemed": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "large": {"_count": 1, "enough": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "was": {"_count": 5, "so": {"_count": 1}, "quiet": {"_count": 1}, "difficult": {"_count": 1}, "revealed": {"_count": 1}, "lowceilinged": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "ceiling": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "caved": {"_count": 1, "in": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "end": {"_count": 1}}, "a": {"_count": 1, "distant": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "into": {"_count": 1}, "join": {"_count": 1}, "now": {"_count": 1}, "his": {"_count": 1}}, "come": {"_count": 1, "out": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "that": {"_count": 2, "leads": {"_count": 1}, "Harry": {"_count": 1}}, "mouth": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "single": {"_count": 1}}, "whose": {"_count": 1, "floors": {"_count": 1}}, "painted": {"_count": 1, "behind": {"_count": 1}}, "Ron": {"_count": 1, "followed": {"_count": 1}}, "door": {"_count": 1, "had": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "overbalanced": {"_count": 1, "slightly": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "entrance": {"_count": 1, "": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}}, "rocks": {"_count": 9, "and": {"_count": 1, "pebbles": {"_count": 1}}, "by": {"_count": 1, "magic": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 1, "gone": {"_count": 1}}, "littering": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "slippery": {"_count": 1}}, "surface": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}}, "pebbles": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "around": {"_count": 1, "their": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Trevor": {"_count": 17, "": {"_count": 4, "!": {"_count": 2}, ".": {"_count": 2}}, "the": {"_count": 4, "toad": {"_count": 3}, "tadpole": {"_count": 1}}, "gulped": {"_count": 1, "then": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "Luna": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "received": {"_count": 1, "a": {"_count": 1}}, "free": {"_count": 1, "hand": {"_count": 1}}, "carefully": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "blissfully": {"_count": 2, "holding": {"_count": 1, "out": {"_count": 1}}, "blank": {"_count": 1, "": {"_count": 1}}}, "shadow": {"_count": 66, "of": {"_count": 23, "the": {"_count": 6}, "a": {"_count": 11}, "his": {"_count": 1}, "Bertha": {"_count": 1}, "Harrys": {"_count": 1}, "somebody": {"_count": 1}, "him": {"_count": 1}, "Argus": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}, "and": {"_count": 4, "vapor": {"_count": 1}, "Harry": {"_count": 1}, "felt": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "beneath": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "edged": {"_count": 1, "through": {"_count": 1}}, "moved": {"_count": 2, "in": {"_count": 1}, "slightly": {"_count": 1}}, "came": {"_count": 1, "bursting": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "fell": {"_count": 1, "across": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "wherever": {"_count": 1, "she": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "Hogsmeade": {"_count": 1, "lay": {"_count": 1}}, "flicker": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 2, "possessed": {"_count": 1}, "crossed": {"_count": 1}}, "or": {"_count": 1, "whatever": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "quivered": {"_count": 1, "in": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "cannot": {"_count": 1, "have": {"_count": 1}}, "he": {"_count": 1, "buried": {"_count": 1}}, "than": {"_count": 1, "substance": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "moving": {"_count": 1, "closer": {"_count": 1}}, "sliding": {"_count": 1, "over": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}}, "flight": {"_count": 40, "of": {"_count": 18, "stone": {"_count": 5}, "steps": {"_count": 4}, "stairs": {"_count": 8}, "narrow": {"_count": 1}}, "again": {"_count": 3, "looking": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "he": {"_count": 1, "glanced": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "alarm": {"_count": 1}}, "clearly": {"_count": 1, "afraid": {"_count": 1}}, "then": {"_count": 2, "said": {"_count": 1}, "the": {"_count": 1}}, "before": {"_count": 1, "has": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "and": {"_count": 1, "though": {"_count": 1}}, "to": {"_count": 2, "freedom": {"_count": 1}, "the": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "McGonagall": {"_count": 1, "Flitwick": {"_count": 1}}, "as": {"_count": 1, "slivers": {"_count": 1}}}, "oak": {"_count": 37, "front": {"_count": 18, "door": {"_count": 1}, "doors": {"_count": 17}}, "he": {"_count": 1, "called": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "door": {"_count": 4, "ahead": {"_count": 1}, "with": {"_count": 2}, "": {"_count": 1}}, "trunk": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "furniture": {"_count": 1, "a": {"_count": 1}}, "doors": {"_count": 3, "to": {"_count": 1}, "and": {"_count": 1}, "into": {"_count": 1}}, "with": {"_count": 1, "antijinx": {"_count": 1}}, "and": {"_count": 1, "there": {"_count": 1}}, "matured": {"_count": 1, "mead": {"_count": 1}}}, "fist": {"_count": 57, "and": {"_count": 6, "knocked": {"_count": 2}, "went": {"_count": 1}, "began": {"_count": 1}, "displayed": {"_count": 1}, "punched": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "had": {"_count": 1, "clenched": {"_count": 1}}, "was": {"_count": 2, "suddenly": {"_count": 1}, "drawn": {"_count": 1}}, "that": {"_count": 1, "hangings": {"_count": 1}}, "raised": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "raised": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "into": {"_count": 4, "his": {"_count": 3}, "Kreachers": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 3}}, "beating": {"_count": 1, "its": {"_count": 1}}, "held": {"_count": 1, "high": {"_count": 1}}, "jolting": {"_count": 1, "Hedwig": {"_count": 1}}, "holding": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "made": {"_count": 1, "contact": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "clutching": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "onto": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 1, "seized": {"_count": 1}}, "scraped": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "raining": {"_count": 1, "down": {"_count": 1}}, "through": {"_count": 1, "an": {"_count": 1}}}, "SORTING": {"_count": 2, "HAT": {"_count": 1, "The": {"_count": 1}}, "HATS": {"_count": 1, "NEW": {"_count": 1}}}, "HAT": {"_count": 1, "The": {"_count": 1, "door": {"_count": 1}}}, "cross": {"_count": 35, "": {"_count": 4, ".": {"_count": 4}}, "legged": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "the": {"_count": 5, "room": {"_count": 1}, "threshold": {"_count": 1}, "grounds": {"_count": 1}, "lake": {"_count": 2}}, "off": {"_count": 2, "another": {"_count": 1}, "the": {"_count": 1}}, "between": {"_count": 3, "someones": {"_count": 1}, "giant": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 1, "series": {"_count": 1}}, "this": {"_count": 1, "line": {"_count": 1}}, "indeed": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 1, "burned": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "whisper": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 1}, "face": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "sullen": {"_count": 1}}, "in": {"_count": 2, "Voldemorts": {"_count": 1}, "the": {"_count": 1}}, "eyed": {"_count": 2, "with": {"_count": 1}, "trying": {"_count": 1}}, "section": {"_count": 2, "of": {"_count": 2}}, "him": {"_count": 1, "": {"_count": 1}}, "His": {"_count": 1, "heart": {"_count": 1}}}, "magnificent": {"_count": 31, "marble": {"_count": 3, "staircase": {"_count": 3}}, "mirror": {"_count": 1, "as": {"_count": 1}}, "necklace": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "broom": {"_count": 1, "he": {"_count": 1}}, "wrought": {"_count": 1, "iron": {"_count": 1}}, "Christmas": {"_count": 1, "decorations": {"_count": 1}}, "gleaming": {"_count": 1, "broomstick": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "fourposter": {"_count": 1, "bed": {"_count": 1}}, "deep": {"_count": 1, "green": {"_count": 1}}, "opals": {"_count": 1, "gleamed": {"_count": 1}}, "lunch": {"_count": 1, "which": {"_count": 1}}, "collection": {"_count": 1, "of": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "scarletandgold": {"_count": 1, "plumage": {"_count": 1}}, "silver": {"_count": 1, "sword": {"_count": 1}}, "feast": {"_count": 1, "I": {"_count": 1}}, "redandgold": {"_count": 1, "bird": {"_count": 1}}, "sleeping": {"_count": 1, "bird": {"_count": 1}}, "snowy": {"_count": 1, "owl": {"_count": 1}}, "phoenix": {"_count": 1, "Fawkes": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "long": {"_count": 1, "emerald": {"_count": 1}}, "carpet": {"_count": 1, "covering": {"_count": 1}}, "battery": {"_count": 1, "and": {"_count": 1}}, "sweeping": {"_count": 1, "robes": {"_count": 1}}, "robes": {"_count": 1, "of": {"_count": 1}}, "imitation": {"_count": 1, "of": {"_count": 1}}}, "staircase": {"_count": 207, "facing": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 60, ".": {"_count": 60}}, "they": {"_count": 3, "were": {"_count": 1}, "went": {"_count": 1}, "heard": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "inside": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 19, "into": {"_count": 1}, "the": {"_count": 1}, "piling": {"_count": 1}, "along": {"_count": 2}, "very": {"_count": 1}, "emerged": {"_count": 1}, "found": {"_count": 3}, "hurried": {"_count": 1}, "hesitated": {"_count": 1}, "joined": {"_count": 1}, "then": {"_count": 1}, "stopped": {"_count": 1}, "entered": {"_count": 1}, "off": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 17, "the": {"_count": 10}, "a": {"_count": 2}, "Professor": {"_count": 1}, "bed": {"_count": 1}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}, "their": {"_count": 1}}, "If": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "then": {"_count": 2, "another": {"_count": 2}}, "up": {"_count": 3, "to": {"_count": 3}}, "their": {"_count": 1, "hearts": {"_count": 1}}, "which": {"_count": 4, "wound": {"_count": 1}, "moved": {"_count": 1}, "was": {"_count": 2}}, "that": {"_count": 10, "led": {"_count": 5}, "was": {"_count": 2}, "zigzagged": {"_count": 1}, "they": {"_count": 1}, "moved": {"_count": 1}}, "his": {"_count": 1, "camera": {"_count": 1}}, "without": {"_count": 5, "difficulty": {"_count": 1}, "another": {"_count": 1}, "speaking": {"_count": 1}, "a": {"_count": 1}, "having": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 5, "Moaning": {"_count": 1}, "Professor": {"_count": 1}, "Lavender": {"_count": 1}, "the": {"_count": 2}}, "when": {"_count": 2, "he": {"_count": 2}}, "holding": {"_count": 1, "their": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "thinking": {"_count": 1, "vaguely": {"_count": 1}}, "with": {"_count": 6, "his": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "silvery": {"_count": 1}, "Bill": {"_count": 1}, "them": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "determined": {"_count": 1}}, "alone": {"_count": 1, "and": {"_count": 1}}, "pulling": {"_count": 1, "on": {"_count": 1}}, "together": {"_count": 1, "Hermione": {"_count": 1}}, "wondering": {"_count": 1, "": {"_count": 1}}, "cackling": {"_count": 1, "insanely": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "a": {"_count": 2, "silver": {"_count": 1}, "shortcut": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "Cedric": {"_count": 2, "headed": {"_count": 1}, "was": {"_count": 1}}, "into": {"_count": 6, "the": {"_count": 6}}, "behind": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "beneath": {"_count": 1, "Professor": {"_count": 1}}, "the": {"_count": 1, "usual": {"_count": 1}}, "laughing": {"_count": 1, "heartily": {"_count": 1}}, "Harry": {"_count": 2, "heard": {"_count": 1}, "and": {"_count": 1}}, "not": {"_count": 1, "thinking": {"_count": 1}}, "burst": {"_count": 1, "open": {"_count": 1}}, "six": {"_count": 1, "steps": {"_count": 1}}, "soon": {"_count": 1, "his": {"_count": 1}}, "POTTER": {"_count": 1, "": {"_count": 1}}, "passing": {"_count": 1, "a": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "two": {"_count": 2, "steps": {"_count": 2}}, "tapping": {"_count": 1, "it": {"_count": 1}}, "lined": {"_count": 1, "with": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 1, "slowly": {"_count": 1}}, "someones": {"_count": 1, "let": {"_count": 1}}, "leading": {"_count": 1, "down": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 1, "which": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "revealed": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "looking": {"_count": 1, "thunderous": {"_count": 1}}, "whether": {"_count": 1, "Gryffindor": {"_count": 1}}, "three": {"_count": 1, "steps": {"_count": 1}}, "but": {"_count": 2, "his": {"_count": 1}, "before": {"_count": 1}}, "ahead": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "burst": {"_count": 1}}, "led": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "Glass": {"_count": 1, "shattered": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}}, "upper": {"_count": 34, "floors": {"_count": 5, "": {"_count": 2}, "to": {"_count": 1}, "of": {"_count": 1}, "looked": {"_count": 1}}, "windows": {"_count": 4, "GILDEROY": {"_count": 1}, "": {"_count": 3}}, "lip": {"_count": 3, "was": {"_count": 2}, "": {"_count": 1}}, "stories": {"_count": 1, "": {"_count": 1}}, "arm": {"_count": 8, "and": {"_count": 3}, "in": {"_count": 1}, "closed": {"_count": 1}, "": {"_count": 1}, "pulling": {"_count": 1}, "where": {"_count": 1}}, "story": {"_count": 1, "of": {"_count": 1}}, "window": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "corner": {"_count": 1, "": {"_count": 1}}, "branches": {"_count": 1, "of": {"_count": 1}}, "arms": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "bulb": {"_count": 1, "leaving": {"_count": 1}}, "bunk": {"_count": 1, "": {"_count": 1}}, "landing": {"_count": 2, "turned": {"_count": 1}, "pleading": {"_count": 1}}, "floor": {"_count": 1, "trapped": {"_count": 1}}, "levels": {"_count": 1, "": {"_count": 1}}}, "flagged": {"_count": 6, "stone": {"_count": 4, "floor": {"_count": 4}}, "us": {"_count": 1, "down": {"_count": 1}}, "entrance": {"_count": 1, "hall": {"_count": 1}}}, "drone": {"_count": 3, "of": {"_count": 1, "hundreds": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "on": {"_count": 1, "giant": {"_count": 1}}}, "startofterm": {"_count": 11, "banquet": {"_count": 3, "will": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "notices": {"_count": 2, "to": {"_count": 1}, "said": {"_count": 1}}, "feast": {"_count": 6, "": {"_count": 3}, "Potter": {"_count": 1}, "just": {"_count": 1}, "before": {"_count": 1}}}, "banquet": {"_count": 4, "will": {"_count": 1, "begin": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "begin": {"_count": 27, "shortly": {"_count": 1, "but": {"_count": 1}}, "our": {"_count": 1, "banquet": {"_count": 1}}, "not": {"_count": 1, "knowing": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 8}, "!": {"_count": 3}, "?": {"_count": 1}}, "on": {"_count": 1, "September": {"_count": 1}}, "his": {"_count": 1, "life": {"_count": 1}}, "todays": {"_count": 1, "lesson": {"_count": 1}}, "again": {"_count": 1, "from": {"_count": 1}}, "said": {"_count": 1, "Firenze": {"_count": 1}}, "and": {"_count": 1, "turned": {"_count": 1}}, "beating": {"_count": 1, "up": {"_count": 1}}, "muttered": {"_count": 1, "Fudge": {"_count": 1}}, "to": {"_count": 2, "build": {"_count": 1}, "steal": {"_count": 1}}, "O": {"_count": 1, "R": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}}, "Hall": {"_count": 298, "you": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 74, ".": {"_count": 71}, "?": {"_count": 2}, "!": {"_count": 1}}, "didnt": {"_count": 1, "simply": {"_count": 1}}, "and": {"_count": 16, "up": {"_count": 1}, "lunch": {"_count": 1}, "the": {"_count": 3}, "dinner": {"_count": 1}, "settled": {"_count": 1}, "found": {"_count": 1}, "facing": {"_count": 1}, "were": {"_count": 1}, "opened": {"_count": 1}, "out": {"_count": 1}, "looking": {"_count": 1}, "that": {"_count": 1}, "knew": {"_count": 1}, "Voldemort": {"_count": 1}}, "for": {"_count": 14, "breakfast": {"_count": 3}, "the": {"_count": 2}, "their": {"_count": 1}, "lunch": {"_count": 4}, "a": {"_count": 1}, "History": {"_count": 1}, "an": {"_count": 1}, "one": {"_count": 1}}, "during": {"_count": 2, "breakfast": {"_count": 2}}, "as": {"_count": 4, "usual": {"_count": 1}, "a": {"_count": 1}, "people": {"_count": 2}}, "where": {"_count": 10, "the": {"_count": 3}, "Professor": {"_count": 2}, "they": {"_count": 3}, "she": {"_count": 1}, "dinner": {"_count": 1}}, "was": {"_count": 12, "full": {"_count": 1}, "already": {"_count": 1}, "filled": {"_count": 2}, "still": {"_count": 1}, "deserted": {"_count": 1}, "normally": {"_count": 1}, "turned": {"_count": 1}, "filling": {"_count": 1}, "serenely": {"_count": 1}, "suddenly": {"_count": 1}, "dark": {"_count": 1}}, "had": {"_count": 7, "roaring": {"_count": 1}, "been": {"_count": 2}, "changed": {"_count": 1}, "turned": {"_count": 1}, "all": {"_count": 1}, "erupted": {"_count": 1}}, "looks": {"_count": 1, "a": {"_count": 1}}, "might": {"_count": 1, "well": {"_count": 1}}, "sleeping": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 3, "Snape": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 4, "states": {"_count": 1}, "procession": {"_count": 1}, "twenty": {"_count": 2}}, "which": {"_count": 4, "was": {"_count": 2}, "died": {"_count": 1}, "in": {"_count": 1}}, "they": {"_count": 3, "heard": {"_count": 1}, "saw": {"_count": 1}, "could": {"_count": 1}}, "looked": {"_count": 3, "magnificent": {"_count": 1}, "its": {"_count": 1}, "up": {"_count": 1}}, "Harry": {"_count": 3, "and": {"_count": 1}, "saw": {"_count": 1}, "had": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "slightly": {"_count": 1, "late": {"_count": 1}}, "with": {"_count": 6, "Ron": {"_count": 1}, "glum": {"_count": 1}, "Professor": {"_count": 1}, "Cedric": {"_count": 1}, "its": {"_count": 1}, "that": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "instead": {"_count": 2, "of": {"_count": 2}}, "stood": {"_count": 2, "open": {"_count": 1}, "and": {"_count": 1}}, "at": {"_count": 5, "dinnertime": {"_count": 1}, "breakfast": {"_count": 1}, "the": {"_count": 1}, "two": {"_count": 1}, "dinner": {"_count": 1}}, "to": {"_count": 5, "find": {"_count": 1}, "the": {"_count": 1}, "hear": {"_count": 1}, "talk": {"_count": 1}, "get": {"_count": 1}}, "opened": {"_count": 3, "again": {"_count": 1}, "and": {"_count": 1}, "Krums": {"_count": 1}}, "heads": {"_count": 1, "turned": {"_count": 1}}, "carrying": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 4, "next": {"_count": 1}, "staff": {"_count": 1}, "sparkling": {"_count": 1}, "letter": {"_count": 1}}, "everyone": {"_count": 1, "applauded": {"_count": 1}}, "she": {"_count": 1, "skidded": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "rang": {"_count": 1, "with": {"_count": 1}}, "through": {"_count": 2, "a": {"_count": 2}}, "ceased": {"_count": 1, "almost": {"_count": 1}}, "banged": {"_count": 1, "open": {"_count": 1}}, "swiveled": {"_count": 1, "toward": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "many": {"_count": 2, "of": {"_count": 1}, "boys": {"_count": 1}}, "quieted": {"_count": 1, "once": {"_count": 1}}, "Draco": {"_count": 1, "Malfoys": {"_count": 1}}, "when": {"_count": 3, "he": {"_count": 1}, "it": {"_count": 1}, "Dumbledore": {"_count": 1}}, "seemed": {"_count": 2, "somehow": {"_count": 1}, "to": {"_count": 1}}, "now": {"_count": 3, "": {"_count": 1}, "approached": {"_count": 1}, "the": {"_count": 1}}, "were": {"_count": 4, "now": {"_count": 1}, "bedecked": {"_count": 1}, "filling": {"_count": 1}, "sitting": {"_count": 1}}, "grinning": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 2}}, "judging": {"_count": 1, "by": {"_count": 1}}, "walk": {"_count": 1, "along": {"_count": 1}}, "some": {"_count": 1, "students": {"_count": 1}}, "above": {"_count": 1, "it": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "applauded": {"_count": 1, "as": {"_count": 1}}, "after": {"_count": 4, "breakfast": {"_count": 2}, "him": {"_count": 1}, "sitting": {"_count": 1}}, "cradling": {"_count": 1, "her": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "followed": {"_count": 1, "suit": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "have": {"_count": 1, "already": {"_count": 1}}, "nearly": {"_count": 1, "fifteen": {"_count": 1}}, "faded": {"_count": 1, "away": {"_count": 1}}, "students": {"_count": 1, "were": {"_count": 1}}, "alone": {"_count": 1, "doing": {"_count": 1}}, "looking": {"_count": 2, "instinctively": {"_count": 1}, "for": {"_count": 1}}, "bringing": {"_count": 1, "letters": {"_count": 1}}, "shortly": {"_count": 1, "afterward": {"_count": 1}}, "that": {"_count": 2, "night": {"_count": 1}, "Umbridges": {"_count": 1}}, "however": {"_count": 1, "when": {"_count": 1}}, "turned": {"_count": 1, "a": {"_count": 1}}, "splattered": {"_count": 1, "with": {"_count": 1}}, "Hogwarts": {"_count": 1, "School": {"_count": 1}}, "clutching": {"_count": 1, "his": {"_count": 1}}, "flicking": {"_count": 1, "over": {"_count": 1}}, "erupted": {"_count": 1, "all": {"_count": 1}}, "then": {"_count": 2, "ran": {"_count": 2}}, "of": {"_count": 6, "Prophecy": {"_count": 6}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "died": {"_count": 2, "away": {"_count": 2}}, "knows": {"_count": 1, "Lord": {"_count": 1}}, "toward": {"_count": 1, "their": {"_count": 1}}, "very": {"_count": 1, "hot": {"_count": 1}}, "garlands": {"_count": 1, "of": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "eating": {"_count": 1, "breakfast": {"_count": 1}}, "he": {"_count": 1, "sleeps": {"_count": 1}}, "already": {"_count": 2, "halfway": {"_count": 1}, "Mr": {"_count": 1}}, "subdued": {"_count": 1, "": {"_count": 1}}, "Filius": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "shall": {"_count": 1}}, "by": {"_count": 1, "teachers": {"_count": 1}}, "alongside": {"_count": 1, "the": {"_count": 1}}, "first": {"_count": 1, "with": {"_count": 1}}, "again": {"_count": 1, "into": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "forced": {"_count": 1, "their": {"_count": 1}}, "still": {"_count": 1, "screaming": {"_count": 1}}, "became": {"_count": 1, "more": {"_count": 1}}, "nobody": {"_count": 1, "seemed": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "blazed": {"_count": 1, "with": {"_count": 1}}, "without": {"_count": 1, "interference": {"_count": 1}}}, "sorted": {"_count": 17, "into": {"_count": 4, "your": {"_count": 1}, "Houses": {"_count": 1}, "Hufflepuff": {"_count": 1}, "when": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "new": {"_count": 1, "students": {"_count": 1}}, "out": {"_count": 2, "your": {"_count": 1}, "much": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "this": {"_count": 1, "out": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 1, "out": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}}, "Sorting": {"_count": 66, "is": {"_count": 1, "a": {"_count": 1}}, "Ceremony": {"_count": 2, "will": {"_count": 1}, "is": {"_count": 1}}, "Ceremonys": {"_count": 1, "about": {"_count": 1}}, "Hat": {"_count": 46, "And": {"_count": 1}, "cant": {"_count": 1}, "away": {"_count": 1}, "chose": {"_count": 1}, "on": {"_count": 2}, "last": {"_count": 1}, "had": {"_count": 2}, "wouldnt": {"_count": 1}, "wanted": {"_count": 1}, "Harry": {"_count": 1}, "So": {"_count": 1}, "were": {"_count": 1}, "neither": {"_count": 1}, "then": {"_count": 1}, "into": {"_count": 2}, "and": {"_count": 3}, "the": {"_count": 1}, "giving": {"_count": 1}, "told": {"_count": 1}, "could": {"_count": 1}, "placed": {"_count": 1}, "which": {"_count": 1}, "finished": {"_count": 1}, "put": {"_count": 1}, "": {"_count": 4}, "now": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}, "burst": {"_count": 1}, "is": {"_count": 1}, "usually": {"_count": 1}, "did": {"_count": 1}, "touched": {"_count": 1}, "sat": {"_count": 1}, "According": {"_count": 1}, "onto": {"_count": 1}, "to": {"_count": 1}, "takes": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 2}, ".": {"_count": 2}, "?": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "Emma": {"_count": 1, "Dobbs": {"_count": 1}}, "continued": {"_count": 1, "boys": {"_count": 1}}, "ended": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "begin": {"_count": 1}}, "Hats": {"_count": 2, "decisions": {"_count": 1}, "warning": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "anyway": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "ceremony": {"_count": 3, "because": {"_count": 1, "while": {"_count": 1}}, "the": {"_count": 1, "rest": {"_count": 1}}, "but": {"_count": 1, "under": {"_count": 1}}}, "within": {"_count": 190, "Hogwarts": {"_count": 5, "": {"_count": 2}, "that": {"_count": 1}, "itself": {"_count": 1}, "has": {"_count": 1}}, "an": {"_count": 5, "inch": {"_count": 4}, "hour": {"_count": 1}}, "the": {"_count": 47, "law": {"_count": 1}, "Chamber": {"_count": 1}, "stall": {"_count": 1}, "grounds": {"_count": 3}, "cabin": {"_count": 2}, "hospital": {"_count": 1}, "room": {"_count": 3}, "Hall": {"_count": 1}, "confines": {"_count": 2}, "walls": {"_count": 1}, "set": {"_count": 1}, "basin": {"_count": 1}, "Pensieve": {"_count": 1}, "maze": {"_count": 1}, "compartment": {"_count": 1}, "Ministry": {"_count": 2}, "first": {"_count": 1}, "Wizarding": {"_count": 1}, "school": {"_count": 1}, "tea": {"_count": 1}, "castle": {"_count": 7}, "building": {"_count": 1}, "office": {"_count": 1}, "coming": {"_count": 1}, "flames": {"_count": 1}, "place": {"_count": 1}, "hour": {"_count": 2}, "Great": {"_count": 1}, "Department": {"_count": 1}, "boundaries": {"_count": 1}, "last": {"_count": 1}, "Lestranges": {"_count": 1}, "enchanted": {"_count": 1}}, "minutes": {"_count": 11, "half": {"_count": 1}, "was": {"_count": 1}, "their": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 2}, "": {"_count": 2}, "followed": {"_count": 1}, "the": {"_count": 1}, "whenever": {"_count": 1}}, "twenty": {"_count": 3, "feet": {"_count": 2}, "years": {"_count": 1}}, "allmagic": {"_count": 1, "families": {"_count": 1}}, "and": {"_count": 2, "use": {"_count": 1}, "read": {"_count": 1}}, "five": {"_count": 2, "minutes": {"_count": 2}}, "": {"_count": 12, ".": {"_count": 11}, "!": {"_count": 1}}, "has": {"_count": 1, "not": {"_count": 1}}, "weeks": {"_count": 1, "": {"_count": 1}}, "ten": {"_count": 4, "seconds": {"_count": 1}, "minutes": {"_count": 2}, "days": {"_count": 1}}, "it": {"_count": 9, "": {"_count": 4}, "before": {"_count": 1}, "pushing": {"_count": 1}, "simply": {"_count": 1}, "in": {"_count": 1}, "but": {"_count": 1}}, "their": {"_count": 5, "Orb": {"_count": 1}, "rights": {"_count": 1}, "sights": {"_count": 1}, "walls": {"_count": 1}, "pictures": {"_count": 1}}, "earshot": {"_count": 4, "of": {"_count": 2}, "": {"_count": 2}}, "a": {"_count": 11, "glass": {"_count": 2}, "black": {"_count": 1}, "few": {"_count": 5}, "hundred": {"_count": 1}, "community": {"_count": 1}, "year": {"_count": 1}}, "this": {"_count": 5, "court": {"_count": 1}, "classroom": {"_count": 1}, "school": {"_count": 1}, "world": {"_count": 1}, "castle": {"_count": 1}}, "these": {"_count": 1, "very": {"_count": 1}}, "his": {"_count": 4, "power": {"_count": 1}, "sights": {"_count": 1}, "worthless": {"_count": 1}, "own": {"_count": 1}}, "Harrys": {"_count": 1, "range": {"_count": 1}}, "turned": {"_count": 1, "instantly": {"_count": 1}}, "hailing": {"_count": 1, "distance": {"_count": 1}}, "seconds": {"_count": 12, "Mrs": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "": {"_count": 4}, "he": {"_count": 1}, "stood": {"_count": 1}, "they": {"_count": 1}}, "number": {"_count": 1, "twelve": {"_count": 1}}, "Hagrids": {"_count": 1, "cabin": {"_count": 1}}, "sight": {"_count": 2, "of": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "two": {"_count": 1, "inches": {"_count": 1}}, "Harry": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 1, "said": {"_count": 1}}, "reach": {"_count": 6, "toward": {"_count": 1}, "of": {"_count": 2}, "from": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "was": {"_count": 3, "swirling": {"_count": 1}, "warming": {"_count": 1}, "splashing": {"_count": 1}}, "her": {"_count": 2, "robes": {"_count": 2}}, "began": {"_count": 1, "to": {"_count": 1}}, "six": {"_count": 1, "feet": {"_count": 1}}, "as": {"_count": 1, "blown": {"_count": 1}}, "that": {"_count": 1, "room": {"_count": 1}}, "hers": {"_count": 1, "but": {"_count": 1}}, "hours": {"_count": 3, "of": {"_count": 1}, "": {"_count": 1}, "Did": {"_count": 1}}, "or": {"_count": 1, "outside": {"_count": 1}}, "fifteen": {"_count": 1, "minutes": {"_count": 1}}, "about": {"_count": 1, "five": {"_count": 1}}, "months": {"_count": 1, "": {"_count": 1}}, "using": {"_count": 1, "a": {"_count": 1}}, "its": {"_count": 1, "walls": {"_count": 1}}, "date": {"_count": 1, "": {"_count": 1}}, "chimed": {"_count": 1, "eight": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "range": {"_count": 1, "of": {"_count": 1}}, "blinked": {"_count": 1, "a": {"_count": 1}}, "occasional": {"_count": 1, "sight": {"_count": 1}}, "Gringotts": {"_count": 1, "they": {"_count": 1}}, "inches": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "classes": {"_count": 64, "with": {"_count": 4, "the": {"_count": 1}, "Snape": {"_count": 2}, "me": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 1}, "detention": {"_count": 1}, "droves": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 1}}, "themselves": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "though": {"_count": 1, "perhaps": {"_count": 1}}, "were": {"_count": 2, "always": {"_count": 1}, "canceled": {"_count": 1}}, "was": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 2, "either": {"_count": 1}, "time": {"_count": 1}}, "to": {"_count": 3, "deliver": {"_count": 1}, "Neville": {"_count": 1}, "throw": {"_count": 1}}, "and": {"_count": 4, "standing": {"_count": 1}, "Black": {"_count": 1}, "giving": {"_count": 1}, "even": {"_count": 1}}, "at": {"_count": 3, "once": {"_count": 3}}, "will": {"_count": 1, "be": {"_count": 1}}, "my": {"_count": 1, "fatherll": {"_count": 1}}, "until": {"_count": 1, "late": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "let": {"_count": 1, "alone": {"_count": 1}}, "We": {"_count": 1, "do": {"_count": 1}}, "yawned": {"_count": 1, "Ron": {"_count": 1}}, "which": {"_count": 1, "in": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "nor": {"_count": 1, "are": {"_count": 1}}, "are": {"_count": 1, "normally": {"_count": 1}}, "what": {"_count": 1, "its": {"_count": 1}}, "could": {"_count": 1, "deny": {"_count": 1}}, "asking": {"_count": 1, "hopefully": {"_count": 1}}, "discussing": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "day": {"_count": 1}}, "unless": {"_count": 1, "they": {"_count": 1}}, "because": {"_count": 1, "we": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Prince": {"_count": 1}}, "Harry": {"_count": 1, "she": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}}, "dormitory": {"_count": 120, "and": {"_count": 8, "spend": {"_count": 1}, "the": {"_count": 1}, "Scabbers": {"_count": 1}, "headed": {"_count": 1}, "stopped": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 1}, "down": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "about": {"_count": 1, "soccer": {"_count": 1}}, "where": {"_count": 2, "his": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 21, "?": {"_count": 3}, ".": {"_count": 17}, "!": {"_count": 1}}, "to": {"_count": 4, "themselves": {"_count": 1}, "drop": {"_count": 1}, "fetch": {"_count": 2}}, "door": {"_count": 10, "was": {"_count": 1}, "flew": {"_count": 1}, "opened": {"_count": 3}, "and": {"_count": 1}, "slam": {"_count": 1}, "first": {"_count": 1}, "closed": {"_count": 1}, "when": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 2}}, "visiting": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "which": {"_count": 3, "now": {"_count": 1}, "was": {"_count": 2}}, "said": {"_count": 1, "if": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "blazing": {"_count": 1, "with": {"_count": 1}}, "were": {"_count": 1, "woken": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "Riddles": {"_count": 1, "diary": {"_count": 1}}, "he": {"_count": 3, "met": {"_count": 1}, "pulled": {"_count": 1}, "came": {"_count": 1}}, "doors": {"_count": 3, "closing": {"_count": 1}, "flew": {"_count": 1}, "opened": {"_count": 1}}, "was": {"_count": 6, "deserted": {"_count": 1}, "completely": {"_count": 1}, "empty": {"_count": 1}, "full": {"_count": 1}, "quite": {"_count": 1}, "as": {"_count": 1}}, "with": {"_count": 5, "its": {"_count": 1}, "Ron": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "Hermione": {"_count": 1}}, "deserted": {"_count": 1, "dressed": {"_count": 1}}, "but": {"_count": 1, "was": {"_count": 1}}, "collected": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 3, "of": {"_count": 2}, "along": {"_count": 1}}, "still": {"_count": 2, "discussing": {"_count": 1}, "fully": {"_count": 1}}, "for": {"_count": 2, "three": {"_count": 1}, "the": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "a": {"_count": 1, "short": {"_count": 1}}, "without": {"_count": 2, "waking": {"_count": 1}, "another": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 2}, "looked": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "went": {"_count": 1, "back": {"_count": 1}}, "waving": {"_count": 1, "goodbye": {"_count": 1}}, "opening": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 2, "four": {"_count": 2}}, "tonight": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "first": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "muttered": {"_count": 1, "something": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "together": {"_count": 1, "discussing": {"_count": 1}}, "how": {"_count": 1, "come": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "himself": {"_count": 1, "so": {"_count": 1}}, "spoke": {"_count": 1, "and": {"_count": 1}}, "window": {"_count": 2, "said": {"_count": 1}, "at": {"_count": 1}}, "after": {"_count": 1, "swearing": {"_count": 1}}, "bringing": {"_count": 1, "with": {"_count": 1}}, "closely": {"_count": 1, "for": {"_count": 1}}, "one": {"_count": 1, "wearing": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}}, "history": {"_count": 25, "and": {"_count": 1, "each": {"_count": 1}}, "to": {"_count": 2, "solid": {"_count": 1}, "match": {"_count": 1}}, "is": {"_count": 2, "to": {"_count": 1}, "bloody": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 10}, "!": {"_count": 1}, "?": {"_count": 1}}, "of": {"_count": 1, "witchcraft": {"_count": 1}}, "lost": {"_count": 1, "his": {"_count": 1}}, "will": {"_count": 1, "remember": {"_count": 1}}, "shows": {"_count": 1, "For": {"_count": 1}}, "not": {"_count": 1, "how": {"_count": 1}}, "these": {"_count": 1, "things": {"_count": 1}}, "often": {"_count": 1, "skates": {"_count": 1}}, "Voldemort": {"_count": 1, "proceeded": {"_count": 1}}}, "produced": {"_count": 15, "outstanding": {"_count": 1, "witches": {"_count": 1}}, "in": {"_count": 1, "T": {"_count": 1}}, "the": {"_count": 1, "worlds": {"_count": 1}}, "someone": {"_count": 1, "halfway": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "a": {"_count": 5, "fully": {"_count": 1}, "Patronus": {"_count": 2}, "Squib": {"_count": 1}, "woolen": {"_count": 1}}, "silver": {"_count": 1, "vapor": {"_count": 1}}, "parchment": {"_count": 1, "and": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "outstanding": {"_count": 4, "witches": {"_count": 1, "and": {"_count": 1}}, "courage": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "triumphs": {"_count": 3, "will": {"_count": 1, "earn": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "awarded": {"_count": 9, "the": {"_count": 1, "House": {"_count": 1}}, "Hufflepuff": {"_count": 2, "a": {"_count": 1}, "another": {"_count": 1}}, "both": {"_count": 1, "teams": {"_count": 1}}, "points": {"_count": 1, "according": {"_count": 1}}, "to": {"_count": 1, "Siriuss": {"_count": 1}}, "full": {"_count": 1, "marks": {"_count": 1}}, "you": {"_count": 1, "the": {"_count": 1}}, "Gryffindor": {"_count": 1, "twenty": {"_count": 1}}}, "credit": {"_count": 13, "to": {"_count": 1, "whichever": {"_count": 1}}, "for": {"_count": 6, "dont": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 1}, "finishing": {"_count": 1}, "answering": {"_count": 1}, "all": {"_count": 1}}, "must": {"_count": 1, "go": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "makes": {"_count": 1}}, "and": {"_count": 1, "we": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}}, "whichever": {"_count": 7, "House": {"_count": 1, "becomes": {"_count": 1}}, "Seeker": {"_count": 1, "catches": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "teams": {"_count": 1, "Seeker": {"_count": 1}}, "words": {"_count": 1, "I": {"_count": 1}}, "carriage": {"_count": 1, "Malfoy": {"_count": 1}}, "twin": {"_count": 1, "it": {"_count": 1}}}, "becomes": {"_count": 9, "yours": {"_count": 1, "": {"_count": 1}}, "confused": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "resist": {"_count": 1}}, "easier": {"_count": 1, "to": {"_count": 1}}, "more": {"_count": 1, "difficult": {"_count": 1}}, "a": {"_count": 1, "man": {"_count": 1}}, "extraordinary": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "Malfoy": {"_count": 1}}, "ever": {"_count": 1, "more": {"_count": 1}}}, "Ceremony": {"_count": 2, "will": {"_count": 1, "take": {"_count": 1}}, "is": {"_count": 1, "over": {"_count": 1}}}, "smarten": {"_count": 1, "yourselves": {"_count": 1, "up": {"_count": 1}}}, "lingered": {"_count": 20, "for": {"_count": 6, "a": {"_count": 6}}, "about": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "Harry": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "upon": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "casually": {"_count": 1, "beside": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "maliciously": {"_count": 1, "upon": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 1, "good": {"_count": 1}}}, "fastened": {"_count": 11, "under": {"_count": 1, "his": {"_count": 1}}, "instead": {"_count": 1, "around": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "Mr": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 2, "pinstriped": {"_count": 1}, "cloak": {"_count": 1}}, "a": {"_count": 1, "thick": {"_count": 1}}, "upon": {"_count": 1, "Snape": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "the": {"_count": 1, "clasp": {"_count": 1}}}, "smudged": {"_count": 4, "nose": {"_count": 1, "": {"_count": 1}}, "ink": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "ink": {"_count": 1}}, "sign": {"_count": 1, "beside": {"_count": 1}}}, "flatten": {"_count": 7, "his": {"_count": 3, "hair": {"_count": 3}}, "it": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 1, "patches": {"_count": 1}}, "Slytherin": {"_count": 1, "he": {"_count": 1}}}, "return": {"_count": 175, "when": {"_count": 3, "we": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 13}, "?": {"_count": 7}, "!": {"_count": 1}}, "to": {"_count": 69, "power": {"_count": 4}, "Hogwarts": {"_count": 11}, "my": {"_count": 3}, "the": {"_count": 21}, "their": {"_count": 2}, "school": {"_count": 2}, "her": {"_count": 3}, "Gryffindor": {"_count": 3}, "him": {"_count": 2}, "consciousness": {"_count": 1}, "Azkaban": {"_count": 1}, "us": {"_count": 1}, "his": {"_count": 4}, "Privet": {"_count": 2}, "normality": {"_count": 1}, "living": {"_count": 1}, "work": {"_count": 1}, "full": {"_count": 1}, "this": {"_count": 1}, "Godrics": {"_count": 1}, "steal": {"_count": 1}, "each": {"_count": 1}, "your": {"_count": 1}}, "people": {"_count": 1, "who": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "next": {"_count": 2, "year": {"_count": 1}, "morning": {"_count": 1}}, "trip": {"_count": 1, "seemed": {"_count": 1}}, "Perhaps": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 7, "Egypt": {"_count": 1}, "taking": {"_count": 1}, "such": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 2}, "wherever": {"_count": 1}}, "their": {"_count": 1, "bags": {"_count": 1}}, "the": {"_count": 4, "names": {"_count": 1}, "moment": {"_count": 1}, "knowledge": {"_count": 1}, "following": {"_count": 1}}, "it": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 5, "the": {"_count": 1}, "YouKnowWho": {"_count": 1}, "You": {"_count": 1}, "this": {"_count": 1}, "my": {"_count": 1}}, "owl": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "and": {"_count": 4, "moved": {"_count": 1}, "live": {"_count": 1}, "make": {"_count": 1}, "Harry": {"_count": 1}}, "with": {"_count": 4, "his": {"_count": 2}, "a": {"_count": 1}, "him": {"_count": 1}}, "was": {"_count": 1, "due": {"_count": 1}}, "all": {"_count": 2, "hostages": {"_count": 1}, "the": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 2, "to": {"_count": 2}}, "seemed": {"_count": 1, "assured": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "Cedrics": {"_count": 1, "body": {"_count": 1}}, "such": {"_count": 1, "ties": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "journey": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 4, "an": {"_count": 1}, "his": {"_count": 2}, "your": {"_count": 1}}, "my": {"_count": 2, "best": {"_count": 1}, "rise": {"_count": 1}}, "Harry": {"_count": 1, "Potters": {"_count": 1}}, "And": {"_count": 1, "he": {"_count": 1}}, "afterward": {"_count": 1, "so": {"_count": 1}}, "there": {"_count": 3, "only": {"_count": 1}, "every": {"_count": 1}, "is": {"_count": 1}}, "more": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "this": {"_count": 1, "compliment": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "whether": {"_count": 1, "a": {"_count": 1}}, "here": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "them": {"_count": 2, "to": {"_count": 2}}, "but": {"_count": 1, "their": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "anything": {"_count": 1, "you": {"_count": 1}}, "students": {"_count": 1, "quickly": {"_count": 1}}, "a": {"_count": 2, "book": {"_count": 1}, "different": {"_count": 1}}, "that": {"_count": 1, "morning": {"_count": 1}}, "visit": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "watery": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}}, "test": {"_count": 51, "I": {"_count": 1, "think": {"_count": 1}}, "": {"_count": 11, "?": {"_count": 3}, ".": {"_count": 8}}, "papers": {"_count": 1, "he": {"_count": 1}}, "Longbottoms": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 3, "on": {"_count": 2}, "": {"_count": 1}}, "their": {"_count": 1, "flobberworm": {"_count": 1}}, "snapped": {"_count": 1, "Mrs": {"_count": 1}}, "to": {"_count": 1, "Apparate": {"_count": 1}}, "twice": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 1, "champions": {"_count": 1}}, "your": {"_count": 3, "daring": {"_count": 1}, "antidote": {"_count": 1}, "rubbish": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "us": {"_count": 1}}, "and": {"_count": 2, "consequently": {"_count": 1}, "had": {"_count": 1}}, "it": {"_count": 2, "a": {"_count": 1}, "around": {"_count": 1}}, "of": {"_count": 1, "hexdeflection": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "Actually": {"_count": 1, "I": {"_count": 1}}, "results": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 2, "new": {"_count": 1}, "instance": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "talents": {"_count": 1}}, "Hermione": {"_count": 1, "after": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "asking": {"_count": 1, "all": {"_count": 1}}, "first": {"_count": 1, "time": {"_count": 1}}, "date": {"_count": 1, "the": {"_count": 1}}, "whether": {"_count": 1, "ready": {"_count": 1}}, "do": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "Check": {"_count": 1, "whether": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "Rosie": {"_count": 1, "": {"_count": 1}}}, "hurts": {"_count": 9, "a": {"_count": 1, "lot": {"_count": 1}}, "and": {"_count": 1, "three": {"_count": 1}}, "again": {"_count": 1, "go": {"_count": 1}}, "get": {"_count": 1, "off": {"_count": 1}}, "both": {"_count": 1, "when": {"_count": 1}}, "him": {"_count": 1, "when": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "tiny": {"_count": 1, "human": {"_count": 1}}}, "jolt": {"_count": 24, "": {"_count": 5, ".": {"_count": 5}}, "of": {"_count": 9, "the": {"_count": 2}, "panic": {"_count": 1}, "excitement": {"_count": 2}, "surprise": {"_count": 1}, "dread": {"_count": 2}, "fury": {"_count": 1}}, "and": {"_count": 1, "distant": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "seemed": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 2, "saw": {"_count": 1}, "realized": {"_count": 1}}, "an": {"_count": 1, "exboyfriend": {"_count": 1}}}, "anxiously": {"_count": 77, "and": {"_count": 2, "saw": {"_count": 1}, "at": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 30}}, "up": {"_count": 1, "at": {"_count": 1}}, "but": {"_count": 3, "there": {"_count": 1}, "I": {"_count": 1}, "after": {"_count": 1}}, "watching": {"_count": 1, "Ron": {"_count": 1}}, "at": {"_count": 2, "Harry": {"_count": 1}, "Umbridge": {"_count": 1}}, "not": {"_count": 1, "touching": {"_count": 1}}, "as": {"_count": 6, "she": {"_count": 2}, "they": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 2}}, "stopping": {"_count": 1, "so": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "after": {"_count": 1, "them": {"_count": 1}}, "around": {"_count": 2, "every": {"_count": 1}, "the": {"_count": 1}}, "jumping": {"_count": 1, "backward": {"_count": 1}}, "checking": {"_count": 1, "and": {"_count": 1}}, "probing": {"_count": 1, "his": {"_count": 1}}, "staring": {"_count": 1, "behind": {"_count": 1}}, "pushing": {"_count": 1, "a": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "moment": {"_count": 1}}, "hitching": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "springing": {"_count": 1, "up": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "shaking": {"_count": 1, "Harrys": {"_count": 1}}, "standing": {"_count": 1, "over": {"_count": 1}}, "clearly": {"_count": 1, "torn": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}, "hurrying": {"_count": 1, "to": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}, "bobbing": {"_count": 1, "up": {"_count": 1}}, "from": {"_count": 1, "beside": {"_count": 1}}, "peering": {"_count": 1, "at": {"_count": 1}}}, "lead": {"_count": 64, "him": {"_count": 5, "to": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}, "exactly": {"_count": 1}}, "Harry": {"_count": 1, "got": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}, "without": {"_count": 1, "any": {"_count": 1}}, "your": {"_count": 1, "Houses": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 4}}, "the": {"_count": 5, "lead": {"_count": 1}, "Slytherins": {"_count": 1}, "houseelves": {"_count": 1}, "group": {"_count": 1}, "way": {"_count": 1}}, "hed": {"_count": 1, "won": {"_count": 1}}, "them": {"_count": 2, "into": {"_count": 2}}, "to": {"_count": 6, "expulsion": {"_count": 1}, "nasty": {"_count": 1}, "thirtyzero": {"_count": 1}, "awkward": {"_count": 1}, "tricky": {"_count": 1}, "better": {"_count": 1}}, "sixty": {"_count": 1, "points": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "you": {"_count": 1, "into": {"_count": 1}}, "em": {"_count": 2, "right": {"_count": 1}, "in": {"_count": 1}}, "another": {"_count": 1, "in": {"_count": 1}}, "Right": {"_count": 1, "into": {"_count": 1}}, "thirty": {"_count": 1, "points": {"_count": 1}}, "and": {"_count": 2, "if": {"_count": 1}, "murmured": {"_count": 1}}, "his": {"_count": 1, "eyelids": {"_count": 1}}, "they": {"_count": 1, "all": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "had": {"_count": 1, "fled": {"_count": 1}}, "in": {"_count": 3, "their": {"_count": 1}, "a": {"_count": 1}, "not": {"_count": 1}}, "perhaps": {"_count": 1, "youll": {"_count": 1}}, "singer": {"_count": 2, "of": {"_count": 2}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "an": {"_count": 1, "almost": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 1, "morning": {"_count": 1}}, "weight": {"_count": 1, "had": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "somehow": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "Im": {"_count": 1}}, "at": {"_count": 1, "times": {"_count": 1}}, "a": {"_count": 1, "group": {"_count": 1}}, "monster": {"_count": 1, "into": {"_count": 1}}, "us": {"_count": 1, "to": {"_count": 1}}}, "doom": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "ghosts": {"_count": 39, "had": {"_count": 1, "just": {"_count": 1}}, "floated": {"_count": 1, "away": {"_count": 1}}, "shone": {"_count": 1, "misty": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "didnt": {"_count": 1, "help": {"_count": 1}}, "his": {"_count": 1, "classes": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "swept": {"_count": 1, "back": {"_count": 1}}, "theyll": {"_count": 1, "tell": {"_count": 1}}, "provided": {"_count": 1, "food": {"_count": 1}}, "were": {"_count": 3, "marching": {"_count": 1}, "also": {"_count": 1}, "there": {"_count": 1}}, "who": {"_count": 2, "were": {"_count": 2}}, "avoid": {"_count": 1, "it": {"_count": 1}}, "council": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "most": {"_count": 1}, "parents": {"_count": 1}}, "he": {"_count": 1, "knew": {"_count": 1}}, "though": {"_count": 1, "we": {"_count": 1}}, "fluid": {"_count": 1, "as": {"_count": 1}}, "whenever": {"_count": 1, "you": {"_count": 1}}, "interrupted": {"_count": 1, "Nearly": {"_count": 1}}, "are": {"_count": 2, "transparent": {"_count": 2}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 1, "moved": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "streamed": {"_count": 8, "through": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "circling": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 2, "Snapes": {"_count": 1}, "her": {"_count": 1}}, "upon": {"_count": 1, "him": {"_count": 1}}}, "Pearlywhite": {"_count": 1, "and": {"_count": 1, "slightly": {"_count": 1}}}, "transparent": {"_count": 22, "they": {"_count": 1, "glided": {"_count": 1}}, "letter": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "but": {"_count": 3, "black": {"_count": 1}, "beaming": {"_count": 1}, "Inferi": {"_count": 1}}, "barrier": {"_count": 2, "like": {"_count": 1}, "as": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}, "eyelashes": {"_count": 1, "wispy": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "bubble": {"_count": 1, "": {"_count": 1}}, "skin": {"_count": 1, "and": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "pointing": {"_count": 1, "finger": {"_count": 1}}, "cheeks": {"_count": 1, "became": {"_count": 1}}, "figures": {"_count": 1, "galloped": {"_count": 1}}, "sphere": {"_count": 1, "somewhere": {"_count": 1}}}, "glided": {"_count": 19, "across": {"_count": 1, "the": {"_count": 1}}, "suddenly": {"_count": 2, "through": {"_count": 2}}, "toward": {"_count": 1, "them": {"_count": 1}}, "over": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "away": {"_count": 4, "": {"_count": 1}, "through": {"_count": 1}, "from": {"_count": 1}, "down": {"_count": 1}}, "forward": {"_count": 2, "drawing": {"_count": 1}, "and": {"_count": 1}}, "back": {"_count": 3, "to": {"_count": 1}, "out": {"_count": 1}, "toward": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "alongside": {"_count": 1, "Snape": {"_count": 1}}}, "arguing": {"_count": 31, "": {"_count": 5, ".": {"_count": 5}}, "I": {"_count": 1, "hope": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 7, "this": {"_count": 1}, "Bill": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}, "Crabbe": {"_count": 1}, "Griphook": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Snape": {"_count": 1}}, "furiously": {"_count": 1, "with": {"_count": 1}}, "enjoyably": {"_count": 1, "about": {"_count": 1}}, "vociferously": {"_count": 1, "a": {"_count": 1}}, "coming": {"_count": 1, "closer": {"_count": 1}}, "about": {"_count": 3, "": {"_count": 1}, "how": {"_count": 1}, "whether": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 1, "case": {"_count": 1}}, "further": {"_count": 1, "": {"_count": 1}}, "She": {"_count": 1, "dropped": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}}, "monk": {"_count": 1, "was": {"_count": 1, "saying": {"_count": 1}}}, "Forgive": {"_count": 8, "and": {"_count": 1, "forget": {"_count": 1}}, "me": {"_count": 6, "Remus": {"_count": 1}, "but": {"_count": 2}, "Draco": {"_count": 1}, "": {"_count": 1}, "Madam": {"_count": 1}}, "us": {"_count": 1, "all": {"_count": 1}}}, "forget": {"_count": 97, "I": {"_count": 1, "say": {"_count": 1}}, "things": {"_count": 1, "this": {"_count": 1}}, "that": {"_count": 12, "nice": {"_count": 1}, "dog": {"_count": 1}, "when": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}, "during": {"_count": 1}, "what": {"_count": 1}, "it": {"_count": 2}, "Lord": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 1}}, "Wizard": {"_count": 1, "Baruffio": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 6}, "!": {"_count": 3}, "?": {"_count": 1}}, "what": {"_count": 8, "its": {"_count": 1}, "hed": {"_count": 1}, "I": {"_count": 3}, "shed": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}}, "your": {"_count": 3, "name": {"_count": 1}, "copies": {"_count": 1}, "protective": {"_count": 1}}, "it": {"_count": 10, "and": {"_count": 1}, "": {"_count": 3}, "in": {"_count": 1}, "until": {"_count": 1}, "said": {"_count": 1}, "can": {"_count": 1}, "Dead": {"_count": 1}, "then": {"_count": 1}}, "to": {"_count": 10, "live": {"_count": 1}, "give": {"_count": 2}, "wipe": {"_count": 1}, "keep": {"_count": 4}, "pack": {"_count": 1}, "call": {"_count": 1}}, "its": {"_count": 1, "Locomotor": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 6, "cloak": {"_count": 1}, "look": {"_count": 1}, "egg": {"_count": 1}, "signal": {"_count": 1}, "glasses": {"_count": 1}, "Deathly": {"_count": 1}}, "this": {"_count": 1, "in": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "Ive": {"_count": 1}}, "menot": {"_count": 1, "blue": {"_count": 1}}, "their": {"_count": 2, "bargain": {"_count": 1}, "charges": {"_count": 1}}, "all": {"_count": 3, "the": {"_count": 1}, "of": {"_count": 1}, "about": {"_count": 1}}, "my": {"_count": 1, "guilty": {"_count": 1}}, "about": {"_count": 4, "the": {"_count": 1}, "it": {"_count": 1}, "Malfoy": {"_count": 1}, "this": {"_count": 1}}, "Myrtles": {"_count": 1, "dead": {"_count": 1}}, "if": {"_count": 1, "youre": {"_count": 1}}, "Rita": {"_count": 1, "Skeeters": {"_count": 1}}, "hes": {"_count": 1, "a": {"_count": 1}}, "ter": {"_count": 1, "wipe": {"_count": 1}}, "them": {"_count": 1, "very": {"_count": 1}}, "be": {"_count": 1, "gentle": {"_count": 1}}, "his": {"_count": 1, "Muggle": {"_count": 1}}, "any": {"_count": 1, "punishment": {"_count": 1}}, "Destination": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "heaved": {"_count": 1}}, "though": {"_count": 1, "that": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "one": {"_count": 1, "little": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "this": {"_count": 1}}, "he": {"_count": 1, "trusted": {"_count": 1}}, "Hagrids": {"_count": 1, "invited": {"_count": 1}}}, "Friar": {"_count": 7, "havent": {"_count": 1, "we": {"_count": 1}}, "smiling": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "waving": {"_count": 1, "merrily": {"_count": 1}}, "a": {"_count": 1, "cheerful": {"_count": 1}}, "was": {"_count": 1, "all": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}}, "Peeves": {"_count": 155, "all": {"_count": 1, "the": {"_count": 1}}, "Percy": {"_count": 1, "whispered": {"_count": 1}}, "show": {"_count": 1, "yourself": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "stuck": {"_count": 2, "out": {"_count": 2}}, "said": {"_count": 2, "Percy": {"_count": 1}, "Harry": {"_count": 1}}, "the": {"_count": 11, "Poltergeist": {"_count": 11}}, "if": {"_count": 1, "that": {"_count": 1}}, "who": {"_count": 9, "was": {"_count": 4}, "tried": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 1}, "swooped": {"_count": 2}}, "": {"_count": 21, "!": {"_count": 3}, ".": {"_count": 15}, "?": {"_count": 3}}, "threw": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "please": {"_count": 2, "youll": {"_count": 1}, "": {"_count": 1}}, "cackled": {"_count": 2, "": {"_count": 1}, "gleefully": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "bellowed": {"_count": 1, "STUDENTS": {"_count": 1}}, "they": {"_count": 1, "ran": {"_count": 1}}, "s": {"_count": 4, "shouts": {"_count": 1}, "left": {"_count": 1}, "gloating": {"_count": 1}, "strong": {"_count": 1}}, "now": {"_count": 1, "where": {"_count": 1}}, "whooshing": {"_count": 1, "away": {"_count": 1}}, "let": {"_count": 1, "it": {"_count": 1}}, "wasnt": {"_count": 2, "inside": {"_count": 1}, "helping": {"_count": 1}}, "to": {"_count": 3, "get": {"_count": 1}, "crash": {"_count": 1}, "do": {"_count": 1}}, "swooping": {"_count": 1, "down": {"_count": 1}}, "was": {"_count": 6, "bobbing": {"_count": 2}, "the": {"_count": 1}, "not": {"_count": 1}, "up": {"_count": 1}, "floating": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 2}, "rolled": {"_count": 1}}, "almost": {"_count": 1, "fell": {"_count": 1}}, "croaked": {"_count": 1, "Harry": {"_count": 1}}, "rising": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 1, "couldnt": {"_count": 1}}, "had": {"_count": 4, "done": {"_count": 1}, "finally": {"_count": 1}, "borrowed": {"_count": 1}, "vanished": {"_count": 1}}, "out": {"_count": 1, "this": {"_count": 1}}, "report": {"_count": 1, "go": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "dont": {"_count": 1, "tell": {"_count": 1}}, "slyly": {"_count": 1, "in": {"_count": 1}}, "chuckled": {"_count": 1, "happily": {"_count": 1}}, "hissed": {"_count": 1, "in": {"_count": 1}}, "shot": {"_count": 1, "after": {"_count": 1}}, "upset": {"_count": 1, "me": {"_count": 1}}, "knocking": {"_count": 1, "Harrys": {"_count": 1}}, "stopped": {"_count": 1, "halfway": {"_count": 1}}, "always": {"_count": 1, "loved": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "zoomed": {"_count": 1, "away": {"_count": 1}}, "didnt": {"_count": 1, "look": {"_count": 1}}, "sang": {"_count": 1, "": {"_count": 1}}, "usually": {"_count": 1, "showed": {"_count": 1}}, "paid": {"_count": 1, "no": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "flipped": {"_count": 1, "over": {"_count": 1}}, "puffed": {"_count": 1, "out": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "hacked": {"_count": 1}}, "come": {"_count": 1, "down": {"_count": 1}}, "get": {"_count": 1, "down": {"_count": 1}}, "lobbing": {"_count": 1, "a": {"_count": 1}}, "Peeves": {"_count": 1, "stuck": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "from": {"_count": 1, "inside": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "Ill": {"_count": 1, "have": {"_count": 1}}, "Professor": {"_count": 1, "Filch": {"_count": 1}}, "couldnt": {"_count": 2, "get": {"_count": 1}, "I": {"_count": 1}}, "has": {"_count": 2, "been": {"_count": 1}, "got": {"_count": 1}}, "treachery": {"_count": 1, "": {"_count": 1}}, "allowing": {"_count": 1, "two": {"_count": 1}}, "pursuing": {"_count": 1, "Harry": {"_count": 1}}, "blew": {"_count": 1, "a": {"_count": 1}}, "merely": {"_count": 1, "slid": {"_count": 1}}, "is": {"_count": 4, "planning": {"_count": 1}, "up": {"_count": 1}, "smashing": {"_count": 1}, "how": {"_count": 1}}, "blowing": {"_count": 1, "a": {"_count": 1}}, "which": {"_count": 1, "hit": {"_count": 1}}, "floated": {"_count": 1, "over": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "swooped": {"_count": 1, "down": {"_count": 1}}, "whom": {"_count": 1, "Harry": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "happily": {"_count": 1, "now": {"_count": 1}}, "and": {"_count": 3, "said": {"_count": 1}, "only": {"_count": 1}, "he": {"_count": 1}}, "clutched": {"_count": 1, "at": {"_count": 1}}, "bellowing": {"_count": 1, "rude": {"_count": 1}}, "you": {"_count": 1, "fool": {"_count": 1}}, "zooming": {"_count": 2, "over": {"_count": 1}, "through": {"_count": 1}}}, "chances": {"_count": 20, "he": {"_count": 1, "deserves": {"_count": 1}}, "of": {"_count": 6, "being": {"_count": 1}, "getting": {"_count": 2}, "visiting": {"_count": 1}, "winning": {"_count": 1}, "defeating": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "against": {"_count": 1, "them": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "though": {"_count": 1, "will": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "preventing": {"_count": 1}}}, "deserves": {"_count": 10, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "a": {"_count": 1, "break": {"_count": 1}}, "it": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 2, "": {"_count": 1}, "place": {"_count": 1}}, "unswerving": {"_count": 1, "obedience": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "somebody": {"_count": 1, "young": {"_count": 1}}}, "ghost": {"_count": 76, "I": {"_count": 1, "say": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 18, "the": {"_count": 2}, "Gryffindor": {"_count": 3}, "a": {"_count": 8}, "Professor": {"_count": 1}, "Cedric": {"_count": 1}, "Ravenclaw": {"_count": 2}, "his": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "patted": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 15}, "?": {"_count": 6}, "!": {"_count": 1}}, "began": {"_count": 1, "stiffly": {"_count": 1}}, "sitting": {"_count": 1, "there": {"_count": 1}}, "who": {"_count": 5, "was": {"_count": 1}, "held": {"_count": 1}, "taught": {"_count": 1}, "haunted": {"_count": 1}, "caught": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "approached": {"_count": 1, "the": {"_count": 1}}, "sadly": {"_count": 1, "and": {"_count": 1}}, "horses": {"_count": 1, "each": {"_count": 1}}, "leapt": {"_count": 1, "down": {"_count": 1}}, "teacher": {"_count": 2, "and": {"_count": 1}, "had": {"_count": 1}}, "one": {"_count": 1, "Ravenclaw": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 1}, "come": {"_count": 1}}, "a": {"_count": 1, "gaunt": {"_count": 1}}, "orchestra": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "or": {"_count": 1, "his": {"_count": 1}}, "Cedric": {"_count": 1, "or": {"_count": 1}}, "and": {"_count": 1, "Parvati": {"_count": 1}}, "lean": {"_count": 1, "through": {"_count": 1}}, "stuck": {"_count": 1, "its": {"_count": 1}}, "but": {"_count": 1, "much": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 1, "pass": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "nor": {"_count": 1, "truly": {"_count": 1}}}, "ruff": {"_count": 13, "and": {"_count": 2, "tights": {"_count": 1}, "cuffs": {"_count": 1}}, "hed": {"_count": 1, "seen": {"_count": 1}}, "sadly": {"_count": 1, "watching": {"_count": 1}}, "which": {"_count": 2, "concealed": {"_count": 1}, "served": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "slipped": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "tights": {"_count": 1, "had": {"_count": 1, "suddenly": {"_count": 1}}}, "answered": {"_count": 57, "": {"_count": 15, ".": {"_count": 14}, "?": {"_count": 1}}, "before": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "after": {"_count": 1}}, "him": {"_count": 5, "": {"_count": 4}, "Their": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "the": {"_count": 4, "call": {"_count": 1}, "unfinished": {"_count": 1}, "door": {"_count": 1}, "very": {"_count": 1}}, "my": {"_count": 1, "questions": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "almost": {"_count": 1, "instantly": {"_count": 1}}, "instantly": {"_count": 1, "Bout": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "her": {"_count": 2, "normally": {"_count": 1}, "": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "she": {"_count": 1, "pressed": {"_count": 1}}, "them": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "ourselves": {"_count": 1, "": {"_count": 1}}, "quietly": {"_count": 1, "as": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "slowly": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 3, "office": {"_count": 1}, "own": {"_count": 1}, "unspoken": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "Enter": {"_count": 1, "after": {"_count": 1}}, "honestly": {"_count": 1, "What": {"_count": 1}}, "Kingsleys": {"_count": 1, "smile": {"_count": 1}}, "Harry": {"_count": 2, "thought": {"_count": 1}, "": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "by": {"_count": 1, "roars": {"_count": 1}}}, "New": {"_count": 11, "students": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "teacher": {"_count": 2, "said": {"_count": 2}}, "thirdyear": {"_count": 1, "course": {"_count": 1}}, "Year": {"_count": 2, "and": {"_count": 1}, "Harry": {"_count": 1}}, "Theory": {"_count": 1, "of": {"_count": 1}}, "Head": {"_count": 1, "new": {"_count": 1}}, "pictures": {"_count": 1, "adorned": {"_count": 1}}, "Years": {"_count": 1, "Eve": {"_count": 1}}}, "Fat": {"_count": 79, "Friar": {"_count": 5, "smiling": {"_count": 1}, "waving": {"_count": 1}, "a": {"_count": 1}, "was": {"_count": 1}, "told": {"_count": 1}}, "Lady": {"_count": 62, "and": {"_count": 5}, "to": {"_count": 1}, "had": {"_count": 3}, "on": {"_count": 1}, "": {"_count": 12}, "swung": {"_count": 4}, "jerking": {"_count": 1}, "called": {"_count": 2}, "they": {"_count": 1}, "sir": {"_count": 1}, "was": {"_count": 3}, "by": {"_count": 1}, "the": {"_count": 3}, "entering": {"_count": 1}, "already": {"_count": 1}, "were": {"_count": 1}, "Violets": {"_count": 1}, "soothingly": {"_count": 1}, "for": {"_count": 1}, "who": {"_count": 9}, "stared": {"_count": 1}, "before": {"_count": 1}, "could": {"_count": 1}, "this": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}, "wondering": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}}, "Ladys": {"_count": 9, "gone": {"_count": 1}, "ripped": {"_count": 1}, "portrait": {"_count": 2}, "that": {"_count": 1}, "friend": {"_count": 1}, "corridor": {"_count": 2}, "moonlit": {"_count": 1}}, "Myrtle": {"_count": 1, "": {"_count": 1}}, "chance": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}}, "Sorted": {"_count": 4, "I": {"_count": 1, "suppose": {"_count": 1}}, "The": {"_count": 1, "Sorting": {"_count": 1}}, "things": {"_count": 1, "out": {"_count": 1}}, "us": {"_count": 1, "said": {"_count": 1}}}, "mutely": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "confirmation": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "Move": {"_count": 9, "along": {"_count": 3, "now": {"_count": 1}, "all": {"_count": 1}, "there": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "me": {"_count": 1, "closer": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "from": {"_count": 1, "Muggle": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}}, "Ceremonys": {"_count": 1, "about": {"_count": 1, "to": {"_count": 1}}}, "returned": {"_count": 229, "": {"_count": 20, ".": {"_count": 14}, "?": {"_count": 5}, "!": {"_count": 1}}, "to": {"_count": 117, "you": {"_count": 1}, "the": {"_count": 53}, "full": {"_count": 2}, "his": {"_count": 12}, "me": {"_count": 4}, "Hermione": {"_count": 1}, "their": {"_count": 6}, "Gryffindor": {"_count": 2}, "normal": {"_count": 2}, "work": {"_count": 2}, "Azkaban": {"_count": 1}, "my": {"_count": 2}, "an": {"_count": 1}, "care": {"_count": 1}, "power": {"_count": 2}, "him": {"_count": 4}, "put": {"_count": 1}, "Hogwarts": {"_count": 4}, "playing": {"_count": 1}, "her": {"_count": 3}, "face": {"_count": 1}, "this": {"_count": 2}, "its": {"_count": 1}, "wiping": {"_count": 1}, "Divination": {"_count": 1}, "it": {"_count": 1}, "vividest": {"_count": 1}, "Privet": {"_count": 1}, "Godrics": {"_count": 1}, "a": {"_count": 1}, "fight": {"_count": 1}}, "them": {"_count": 2, "good": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 2, "sure": {"_count": 1}, "it": {"_count": 1}}, "several": {"_count": 1, "minutes": {"_count": 1}}, "almost": {"_count": 1, "every": {"_count": 1}}, "with": {"_count": 10, "annoyingly": {"_count": 1}, "armfuls": {"_count": 1}, "the": {"_count": 2}, "Harrys": {"_count": 1}, "me": {"_count": 1}, "Winky": {"_count": 1}, "Sirius": {"_count": 1}, "interest": {"_count": 1}, "reinforcements": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "a": {"_count": 3, "quarter": {"_count": 1}, "rather": {"_count": 1}, "moment": {"_count": 1}}, "from": {"_count": 11, "Hermiones": {"_count": 1}, "it": {"_count": 1}, "dealing": {"_count": 1}, "the": {"_count": 2}, "Diagon": {"_count": 1}, "hunting": {"_count": 1}, "Hagrids": {"_count": 1}, "Azkaban": {"_count": 1}, "Hogsmeade": {"_count": 1}, "St": {"_count": 1}}, "when": {"_count": 1, "Archie": {"_count": 1}}, "emptyhanded": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "after": {"_count": 1}}, "the": {"_count": 4, "books": {"_count": 1}, "grin": {"_count": 1}, "smile": {"_count": 1}, "pressure": {"_count": 1}}, "in": {"_count": 4, "full": {"_count": 2}, "the": {"_count": 2}}, "feeling": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "minute": {"_count": 1}}, "last": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "his": {"_count": 4, "wand": {"_count": 1}, "cheery": {"_count": 1}, "gaze": {"_count": 1}, "attention": {"_count": 1}}, "holding": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "Dumbledores": {"_count": 1}}, "Dumbledore": {"_count": 1, "repeated": {"_count": 1}}, "or": {"_count": 1, "because": {"_count": 1}}, "quite": {"_count": 1, "soon": {"_count": 1}}, "closing": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "coins": {"_count": 2, "usually": {"_count": 2}}, "followed": {"_count": 1, "by": {"_count": 1}}, "slowly": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "Ron": {"_count": 1}, "I": {"_count": 1}}, "Hedwig": {"_count": 1, "to": {"_count": 1}}, "hungrily": {"_count": 1, "to": {"_count": 1}}, "safely": {"_count": 1, "to": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 2, "am": {"_count": 1}, "must": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "the": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "two": {"_count": 1, "hours": {"_count": 1}}, "it": {"_count": 1, "hands": {"_count": 1}}, "meekly": {"_count": 1, "to": {"_count": 1}}, "annually": {"_count": 1, "and": {"_count": 1}}, "within": {"_count": 1, "minutes": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "nevertheless": {"_count": 1, "to": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "But": {"_count": 1, "hes": {"_count": 1}}, "home": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 1, "sopping": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "er": {"_count": 1, "tiara": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "secretly": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}}, "floated": {"_count": 28, "away": {"_count": 1, "through": {"_count": 1}}, "there": {"_count": 2, "squinting": {"_count": 1}, "their": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "manner": {"_count": 1}}, "unconscious": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "each": {"_count": 1}}, "in": {"_count": 3, "midair": {"_count": 1}, "front": {"_count": 1}, "her": {"_count": 1}}, "over": {"_count": 2, "them": {"_count": 1}, "their": {"_count": 1}}, "gently": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "on": {"_count": 1}}, "slimy": {"_count": 1, "bits": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "with": {"_count": 1, "barely": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "gracefully": {"_count": 1, "back": {"_count": 1}}, "unsupported": {"_count": 2, "through": {"_count": 1}, "in": {"_count": 1}}, "toward": {"_count": 1, "me": {"_count": 1}}}, "form": {"_count": 88, "a": {"_count": 5, "line": {"_count": 1}, "large": {"_count": 1}, "tighter": {"_count": 1}, "gleaming": {"_count": 1}, "stack": {"_count": 1}}, "only": {"_count": 1, "when": {"_count": 1}}, "of": {"_count": 23, "a": {"_count": 4}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "entertainment": {"_count": 1}, "Professor": {"_count": 1}, "Transfiguration": {"_count": 1}, "James": {"_count": 1}, "MadEye": {"_count": 1}, "Cedric": {"_count": 1}, "their": {"_count": 1}, "Percy": {"_count": 1}, "sign": {"_count": 1}, "Grawp": {"_count": 1}, "Sirius": {"_count": 1}, "Rubeus": {"_count": 1}, "words": {"_count": 1}, "transport": {"_count": 1}, "openmouthed": {"_count": 1}, "sea": {"_count": 1}, "my": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 11}, "?": {"_count": 2}, "!": {"_count": 1}}, "to": {"_count": 1, "your": {"_count": 1}}, "and": {"_count": 5, "looked": {"_count": 1}, "Fudge": {"_count": 1}, "strong": {"_count": 1}, "put": {"_count": 1}, "Ive": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "went": {"_count": 1}}, "stopped": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 3, "told": {"_count": 2}, "said": {"_count": 1}}, "wasnt": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 2, "visiting": {"_count": 2}}, "clearly": {"_count": 1, "states": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 4, "words": {"_count": 3}, "word": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "twisting": {"_count": 1, "madly": {"_count": 1}}, "your": {"_count": 1, "Patronus": {"_count": 1}}, "for": {"_count": 2, "me": {"_count": 1}, "Weasleys": {"_count": 1}}, "which": {"_count": 1, "meant": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 1, "thank": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "does": {"_count": 1, "your": {"_count": 1}}, "one": {"_count": 1, "long": {"_count": 1}}, "During": {"_count": 1, "one": {"_count": 1}}, "thats": {"_count": 1, "why": {"_count": 1}}, "Headmistress": {"_count": 1, "he": {"_count": 1}}, "lying": {"_count": 1, "asleep": {"_count": 1}}, "over": {"_count": 1, "Nevilles": {"_count": 1}}, "toppling": {"_count": 1, "from": {"_count": 1}}, "unfolded": {"_count": 1, "itself": {"_count": 1}}, "an": {"_count": 1, "archway": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "confessed": {"_count": 1, "her": {"_count": 1}}, "words": {"_count": 1, "": {"_count": 1}}}, "Feeling": {"_count": 25, "oddly": {"_count": 1, "as": {"_count": 1}}, "jumpy": {"_count": 1, "Harry": {"_count": 1}}, "dazed": {"_count": 1, "Harry": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 3, "it": {"_count": 1}, "a": {"_count": 1}, "at": {"_count": 1}}, "slightly": {"_count": 2, "more": {"_count": 1}, "guilty": {"_count": 1}}, "considerably": {"_count": 1, "more": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 1, "queasy": {"_count": 1}}, "all": {"_count": 2, "right": {"_count": 2}}, "enormously": {"_count": 1, "relieved": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "rather": {"_count": 3, "sick": {"_count": 2}, "depressed": {"_count": 1}}, "immensely": {"_count": 1, "thankful": {"_count": 1}}, "cheerful": {"_count": 1, "he": {"_count": 1}}, "both": {"_count": 1, "panicky": {"_count": 1}}, "disappointed": {"_count": 1, "Harry": {"_count": 1}}, "nervous": {"_count": 1, "Harry": {"_count": 1}}, "exceptionally": {"_count": 1, "foolish": {"_count": 1}}}, "sandy": {"_count": 1, "hair": {"_count": 1, "with": {"_count": 1}}}, "double": {"_count": 61, "doors": {"_count": 12, "into": {"_count": 3}, "on": {"_count": 1}, "to": {"_count": 2}, "beside": {"_count": 1}, "and": {"_count": 2}, "that": {"_count": 1}, "like": {"_count": 1}, "trying": {"_count": 1}}, "wheezing": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 2, "its": {"_count": 1}, "triplechecked": {"_count": 1}}, "Herbology": {"_count": 2, "with": {"_count": 1}, "where": {"_count": 1}}, "portrait": {"_count": 1, "cant": {"_count": 1}}, "Potions": {"_count": 6, "lesson": {"_count": 1}, "": {"_count": 1}, "feeling": {"_count": 1}, "Divination": {"_count": 1}, "where": {"_count": 1}, "and": {"_count": 1}}, "attack": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "act": {"_count": 1, "Sirius": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "crosser": {"_count": 1, "doublecrossed": {"_count": 1}}, "takes": {"_count": 1, "when": {"_count": 1}}, "thumbsup": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "speed": {"_count": 1, "": {"_count": 1}}, "Divination": {"_count": 1, "that": {"_count": 1}}, "oak": {"_count": 1, "doors": {"_count": 1}}, "period": {"_count": 3, "": {"_count": 2}, "neither": {"_count": 1}}, "back": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "line": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "listening": {"_count": 1, "the": {"_count": 1}}, "take": {"_count": 1, "": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "gold": {"_count": 1, "T": {"_count": 1}}, "Transfiguration": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "over": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "cell": {"_count": 1, "in": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "agent": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 1}, "Mafalda": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}, "clutching": {"_count": 1, "her": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}}, "imagined": {"_count": 54, "such": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 8, "watching": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "because": {"_count": 2}, "he": {"_count": 1}, "there": {"_count": 1}, "said": {"_count": 1}}, "the": {"_count": 7, "looks": {"_count": 1}, "look": {"_count": 1}, "sensation": {"_count": 1}, "noise": {"_count": 1}, "convoy": {"_count": 1}, "houseelf": {"_count": 1}, "eye": {"_count": 1}}, "that": {"_count": 6, "people": {"_count": 1}, "he": {"_count": 2}, "there": {"_count": 1}, "marble": {"_count": 1}, "I": {"_count": 1}}, "Bill": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "them": {"_count": 1, "back": {"_count": 1}}, "my": {"_count": 1, "scar": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "how": {"_count": 3, "it": {"_count": 3}}, "sitting": {"_count": 2, "there": {"_count": 1}, "in": {"_count": 1}}, "Harry": {"_count": 2, "winning": {"_count": 1}, "said": {"_count": 1}}, "himself": {"_count": 1, "explaining": {"_count": 1}}, "he": {"_count": 2, "would": {"_count": 1}, "could": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "these": {"_count": 1, "creatures": {"_count": 1}}, "a": {"_count": 1, "scene": {"_count": 1}}, "Luna": {"_count": 1, "Lovegood": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 1, "being": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "handing": {"_count": 1, "over": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}, "Voldemort": {"_count": 1, "a": {"_count": 1}}, "MadEyes": {"_count": 1, "body": {"_count": 1}}, "MadEye": {"_count": 1, "dying": {"_count": 1}}, "simply": {"_count": 1, "going": {"_count": 1}}, "coming": {"_count": 1, "here": {"_count": 1}}}, "splendid": {"_count": 10, "place": {"_count": 1, "": {"_count": 1}}, "sight": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "robes": {"_count": 1, "of": {"_count": 1}}, "self": {"_count": 1, "decorated": {"_count": 1}}, "performance": {"_count": 2, "against": {"_count": 1}, "for": {"_count": 1}}, "candlefilled": {"_count": 1, "chandelier": {"_count": 1}}, "hall": {"_count": 1, "with": {"_count": 1}}, "picture": {"_count": 1, "of": {"_count": 1}}}, "candles": {"_count": 39, "that": {"_count": 3, "were": {"_count": 1}, "floated": {"_count": 1}, "made": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "told": {"_count": 1, "him": {"_count": 1}}, "were": {"_count": 2, "hovering": {"_count": 1}, "countless": {"_count": 1}}, "burned": {"_count": 1, "lower": {"_count": 1}}, "and": {"_count": 3, "Lockharts": {"_count": 1}, "directed": {"_count": 1}, "there": {"_count": 1}}, "too": {"_count": 1, "though": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "burning": {"_count": 1, "low": {"_count": 1}}, "floating": {"_count": 2, "overhead": {"_count": 1}, "over": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 1}, "burned": {"_count": 1}, "all": {"_count": 1}}, "which": {"_count": 2, "were": {"_count": 1}, "she": {"_count": 1}}, "many": {"_count": 1, "packs": {"_count": 1}}, "all": {"_count": 1, "went": {"_count": 1}}, "hanging": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "light": {"_count": 1}}, "except": {"_count": 1, "those": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "knelt": {"_count": 1, "a": {"_count": 1}}, "juggled": {"_count": 1, "burning": {"_count": 1}}, "whose": {"_count": 1, "flames": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "glowed": {"_count": 1, "from": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "clumsily": {"_count": 1, "by": {"_count": 1}}}, "midair": {"_count": 88, "over": {"_count": 3, "four": {"_count": 2}, "the": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 24, ".": {"_count": 23}, "?": {"_count": 1}}, "to": {"_count": 3, "watch": {"_count": 1}, "dodge": {"_count": 1}, "avoid": {"_count": 1}}, "his": {"_count": 3, "body": {"_count": 1}, "small": {"_count": 1}, "feet": {"_count": 1}}, "and": {"_count": 11, "even": {"_count": 1}, "shot": {"_count": 1}, "stuffing": {"_count": 1}, "saw": {"_count": 1}, "ricocheted": {"_count": 1}, "suddenly": {"_count": 1}, "fell": {"_count": 1}, "a": {"_count": 1}, "then": {"_count": 1}, "the": {"_count": 1}, "fade": {"_count": 1}}, "before": {"_count": 1, "them": {"_count": 1}}, "not": {"_count": 1, "daring": {"_count": 1}}, "somersault": {"_count": 1, "": {"_count": 1}}, "unsupported": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "reversed": {"_count": 1, "and": {"_count": 1}}, "four": {"_count": 1, "struggling": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "beside": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "all": {"_count": 1, "along": {"_count": 1}}, "juggling": {"_count": 1, "several": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "a": {"_count": 1}}, "for": {"_count": 1, "more": {"_count": 1}}, "illuminated": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "their": {"_count": 1}}, "it": {"_count": 1, "exploded": {"_count": 1}}, "within": {"_count": 1, "seconds": {"_count": 1}}, "like": {"_count": 1, "thick": {"_count": 1}}, "then": {"_count": 1, "it": {"_count": 1}}, "above": {"_count": 2, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "feathers": {"_count": 1, "zoomed": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 2}, "he": {"_count": 1}, "Ron": {"_count": 1}}, "hug": {"_count": 1, "with": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 1}, "down": {"_count": 1}}, "upon": {"_count": 1, "something": {"_count": 1}}, "Dumbledore": {"_count": 1, "raised": {"_count": 1}}, "formed": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "flash": {"_count": 1}}, "though": {"_count": 1, "there": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "unconnected": {"_count": 1, "to": {"_count": 1}}, "twisting": {"_count": 1, "gracefully": {"_count": 1}}}, "tables": {"_count": 98, "where": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 14, "laid": {"_count": 1}, "laden": {"_count": 1}, "crammed": {"_count": 1}, "soon": {"_count": 1}, "applauding": {"_count": 1}, "groaning": {"_count": 2}, "packed": {"_count": 1}, "silent": {"_count": 1}, "gone": {"_count": 2}, "placed": {"_count": 1}, "occupied": {"_count": 1}, "lined": {"_count": 1}}, "and": {"_count": 7, "then": {"_count": 1}, "twisted": {"_count": 1}, "squashy": {"_count": 1}, "pulled": {"_count": 1}, "reignited": {"_count": 1}, "its": {"_count": 1}, "an": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 6, "low": {"_count": 1}, "midair": {"_count": 2}, "the": {"_count": 2}, "Gryffindor": {"_count": 1}}, "making": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 7, "vanished": {"_count": 2}, "been": {"_count": 3}, "gone": {"_count": 1}, "disappeared": {"_count": 1}}, "whirring": {"_count": 1, "and": {"_count": 1}}, "together": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 1, "lined": {"_count": 1}}, "to": {"_count": 3, "do": {"_count": 1}, "where": {"_count": 1}, "wring": {"_count": 1}}, "flew": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "spread": {"_count": 1, "with": {"_count": 1}}, "fly": {"_count": 1, "high": {"_count": 1}}, "safely": {"_count": 1, "onto": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 2, "staff": {"_count": 1}, "three": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "that": {"_count": 2, "stood": {"_count": 1}, "supported": {"_count": 1}}, "Harry": {"_count": 1, "noticed": {"_count": 1}}, "above": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "walked": {"_count": 1}}, "zoomed": {"_count": 1, "back": {"_count": 1}}, "told": {"_count": 1, "Harry": {"_count": 1}}, "illuminating": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "all": {"_count": 2, "of": {"_count": 1}, "facing": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "chairs": {"_count": 2, "and": {"_count": 2}}, "before": {"_count": 1, "you": {"_count": 1}}, "conferring": {"_count": 1, "on": {"_count": 1}}, "nearby": {"_count": 1, "noses": {"_count": 1}}, "occasionally": {"_count": 1, "throwing": {"_count": 1}}, "away": {"_count": 2, "when": {"_count": 1}, "she": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "bursting": {"_count": 1, "out": {"_count": 1}}, "for": {"_count": 1, "one": {"_count": 1}}, "reappeared": {"_count": 1, "over": {"_count": 1}}, "flying": {"_count": 1, "but": {"_count": 1}}, "puffing": {"_count": 2, "and": {"_count": 1}, "smoke": {"_count": 1}}, "peering": {"_count": 1, "into": {"_count": 1}}, "pouffes": {"_count": 1, "and": {"_count": 1}}, "Gryffindors": {"_count": 1, "sword": {"_count": 1}}, "which": {"_count": 1, "all": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "nobody": {"_count": 1}}, "crammed": {"_count": 1, "with": {"_count": 1}}, "emptied": {"_count": 1, "": {"_count": 1}}, "lined": {"_count": 1, "with": {"_count": 1}}}, "glittering": {"_count": 85, "golden": {"_count": 3, "plates": {"_count": 2}, "tail": {"_count": 1}}, "with": {"_count": 8, "hundreds": {"_count": 1}, "malice": {"_count": 1}, "rubies": {"_count": 1}, "golden": {"_count": 1}, "strings": {"_count": 1}, "beads": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "glittering": {"_count": 1, "": {"_count": 1}}, "powder": {"_count": 2, "out": {"_count": 1}, "from": {"_count": 1}}, "below": {"_count": 1, "them": {"_count": 1}}, "invitingly": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "lines": {"_count": 1}}, "venomous": {"_count": 1, "It": {"_count": 1}}, "sword": {"_count": 1, "from": {"_count": 1}}, "weapon": {"_count": 1, "in": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "insect": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 3, "watch": {"_count": 1}, "there": {"_count": 1}, "twinkling": {"_count": 1}}, "frost": {"_count": 1, "": {"_count": 1}}, "heels": {"_count": 2, "march": {"_count": 1}, "disappeared": {"_count": 1}}, "powdery": {"_count": 1, "snow": {"_count": 1}}, "oversized": {"_count": 1, "dragonfly": {"_count": 1}}, "maliciously": {"_count": 1, "": {"_count": 1}}, "way": {"_count": 1, "above": {"_count": 1}}, "purple": {"_count": 1, "lettering": {"_count": 1}}, "shamrock": {"_count": 1, "": {"_count": 1}}, "hornets": {"_count": 1, "when": {"_count": 1}}, "erupted": {"_count": 1, "from": {"_count": 1}}, "unpleasantly": {"_count": 1, "": {"_count": 1}}, "brass": {"_count": 1, "pots": {"_count": 1}}, "around": {"_count": 1, "ze": {"_count": 1}}, "dangerously": {"_count": 1, "again": {"_count": 1}}, "eyes": {"_count": 1, "in": {"_count": 1}}, "spiderweb": {"_count": 1, "of": {"_count": 1}}, "malevolently": {"_count": 1, "in": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "Floo": {"_count": 1, "powder": {"_count": 1}}, "shimmering": {"_count": 1, "lights": {"_count": 1}}, "wind": {"_count": 2, "": {"_count": 2}}, "light": {"_count": 1, "of": {"_count": 1}}, "bell": {"_count": 1, "jar": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "photograph": {"_count": 1, "frames": {"_count": 1}}, "window": {"_count": 1, "displays": {"_count": 1}}, "robes": {"_count": 1, "swooshing": {"_count": 1}}, "beads": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "directly": {"_count": 1, "above": {"_count": 1}}, "grit": {"_count": 1, "": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "rubies": {"_count": 1, "in": {"_count": 1}}, "green": {"_count": 1, "stones": {"_count": 1}}, "ribbon": {"_count": 1, "lying": {"_count": 1}}, "blue": {"_count": 1, "wings": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "jewels": {"_count": 1, "he": {"_count": 1}}, "cage": {"_count": 2, "and": {"_count": 1}, "behind": {"_count": 1}}, "through": {"_count": 1, "their": {"_count": 1}}, "charmed": {"_count": 1, "cage": {"_count": 1}}, "rubied": {"_count": 1, "handle": {"_count": 1}}}, "goblets": {"_count": 25, "": {"_count": 2, ".": {"_count": 2}}, "sparkle": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 7, "a": {"_count": 1}, "examining": {"_count": 1}, "echoed": {"_count": 1}, "food": {"_count": 1}, "plates": {"_count": 1}, "now": {"_count": 1}, "the": {"_count": 1}}, "before": {"_count": 1, "them": {"_count": 1}}, "gleamed": {"_count": 1, "by": {"_count": 1}}, "untouched": {"_count": 1, "": {"_count": 1}}, "empty": {"_count": 1, "wine": {"_count": 1}}, "of": {"_count": 2, "butterbeer": {"_count": 1}, "mead": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "either": {"_count": 1, "although": {"_count": 1}}, "they": {"_count": 1, "stood": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "silver": {"_count": 1, "armor": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "lanterns": {"_count": 16, "in": {"_count": 1, "the": {"_count": 1}}, "large": {"_count": 1, "enough": {"_count": 1}}, "flickered": {"_count": 1, "into": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "were": {"_count": 2, "lit": {"_count": 2}}, "blazed": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 1, "snuffed": {"_count": 1}}, "soared": {"_count": 1, "onto": {"_count": 1}}, "swinging": {"_count": 1, "from": {"_count": 1}}, "all": {"_count": 1, "emblazoned": {"_count": 1}}, "the": {"_count": 1, "revelry": {"_count": 1}}, "light": {"_count": 1, "illuminated": {"_count": 1}}}, "candlelight": {"_count": 18, "": {"_count": 11, ".": {"_count": 11}}, "watching": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "read": {"_count": 1}}, "shimmering": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 2, "magnificent": {"_count": 1}, "big": {"_count": 1}}, "illuminating": {"_count": 1, "the": {"_count": 1}}}, "Dotted": {"_count": 1, "here": {"_count": 1, "and": {"_count": 1}}}, "Mainly": {"_count": 1, "to": {"_count": 1, "avoid": {"_count": 1}}}, "avoid": {"_count": 78, "all": {"_count": 2, "the": {"_count": 2}}, "looking": {"_count": 2, "at": {"_count": 2}}, "was": {"_count": 1, "Colin": {"_count": 1}}, "it": {"_count": 16, "its": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 8}, "said": {"_count": 1}, "an": {"_count": 1}, "but": {"_count": 2}, "as": {"_count": 1}}, "the": {"_count": 16, "mad": {"_count": 1}, "bus": {"_count": 1}, "Bludger": {"_count": 1}, "rest": {"_count": 1}, "teachers": {"_count": 1}, "jets": {"_count": 1}, "stares": {"_count": 1}, "motorway": {"_count": 1}, "barrel": {"_count": 1}, "deadly": {"_count": 1}, "place": {"_count": 1}, "puddles": {"_count": 1}, "swelling": {"_count": 1}, "jet": {"_count": 1}, "curses": {"_count": 2}}, "trouble": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "a": {"_count": 4, "collision": {"_count": 2}, "spurt": {"_count": 1}, "row": {"_count": 1}}, "attracting": {"_count": 1, "Muggle": {"_count": 1}}, "being": {"_count": 1, "hit": {"_count": 1}}, "us": {"_count": 1, "forever": {"_count": 1}}, "Snapes": {"_count": 1, "fingertips": {"_count": 1}}, "an": {"_count": 1, "awful": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "him": {"_count": 1, "Uncle": {"_count": 1}}, "colliding": {"_count": 1, "with": {"_count": 1}}, "catching": {"_count": 1, "anyones": {"_count": 1}}, "awkward": {"_count": 1, "questions": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 2, "scene": {"_count": 1}, "shower": {"_count": 1}}, "sliding": {"_count": 1, "backward": {"_count": 1}}, "Harrys": {"_count": 1, "spell": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "anyone": {"_count": 1, "at": {"_count": 1}}, "Malfoy": {"_count": 1, "and": {"_count": 1}}, "watching": {"_count": 1, "this": {"_count": 1}}, "breathing": {"_count": 1, "in": {"_count": 1}}, "detection": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "that": {"_count": 1}}, "hitting": {"_count": 3, "his": {"_count": 2}, "him": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "answering": {"_count": 1, "": {"_count": 1}}, "brushing": {"_count": 1, "her": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "capture": {"_count": 1, "has": {"_count": 1}}, "telling": {"_count": 1, "him": {"_count": 1}}, "pain": {"_count": 1, "and": {"_count": 1}}}, "upward": {"_count": 87, "and": {"_count": 9, "saw": {"_count": 1}, "was": {"_count": 1}, "broke": {"_count": 1}, "out": {"_count": 1}, "stared": {"_count": 1}, "when": {"_count": 1}, "then": {"_count": 1}, "straight": {"_count": 1}, "Harry": {"_count": 1}}, "then": {"_count": 1, "sighed": {"_count": 1}}, "the": {"_count": 3, "key": {"_count": 1}, "fourteen": {"_count": 1}, "wind": {"_count": 1}}, "again": {"_count": 7, "but": {"_count": 1}, "high": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 13}, "?": {"_count": 1}}, "like": {"_count": 3, "an": {"_count": 2}, "a": {"_count": 1}}, "in": {"_count": 5, "circles": {"_count": 1}, "tight": {"_count": 1}, "silence": {"_count": 1}, "his": {"_count": 1}, "time": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 1}, "her": {"_count": 1}, "icy": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 5}, "random": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "without": {"_count": 1, "any": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 3}, "cover": {"_count": 1}, "shake": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 2}, "an": {"_count": 1}}, "was": {"_count": 1, "marching": {"_count": 1}}, "once": {"_count": 3, "more": {"_count": 3}}, "as": {"_count": 2, "the": {"_count": 2}}, "into": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "was": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "holding": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "reducing": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "flick": {"_count": 1, "and": {"_count": 1}}, "every": {"_count": 1, "minute": {"_count": 1}}, "Ron": {"_count": 1, "Fred": {"_count": 1}}, "too": {"_count": 1, "the": {"_count": 1}}, "frozen": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "Harry": {"_count": 1, "slapped": {"_count": 1}}, "off": {"_count": 1, "Snape": {"_count": 1}}}, "velvety": {"_count": 8, "black": {"_count": 2, "ceiling": {"_count": 1}, "once": {"_count": 1}}, "blue": {"_count": 1, "to": {"_count": 1}}, "blackness": {"_count": 3, "": {"_count": 1}, "though": {"_count": 1}, "that": {"_count": 1}}, "night": {"_count": 1, "fell": {"_count": 1}}, "green": {"_count": 1, "lawn": {"_count": 1}}}, "dotted": {"_count": 6, "with": {"_count": 3, "stars": {"_count": 1}, "blood": {"_count": 1}, "broken": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "is": {"_count": 1}}, "an": {"_count": 1, "i": {"_count": 1}}}, "heavens": {"_count": 34, "": {"_count": 6, ".": {"_count": 6}}, "yes": {"_count": 1, "": {"_count": 1}}, "sake": {"_count": 21, "Harry": {"_count": 2}, "hes": {"_count": 1}, "": {"_count": 4}, "she": {"_count": 2}, "Ron": {"_count": 3}, "Dumbledore": {"_count": 1}, "Sirius": {"_count": 1}, "act": {"_count": 1}, "Potter": {"_count": 1}, "youre": {"_count": 1}, "keep": {"_count": 1}, "this": {"_count": 1}, "Filch": {"_count": 1}, "said": {"_count": 1}}, "for": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "stretched": {"_count": 1, "endlessly": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "above": {"_count": 1, "it": {"_count": 1}}, "pointing": {"_count": 1, "Dracos": {"_count": 1}}}, "placed": {"_count": 122, "a": {"_count": 13, "fourlegged": {"_count": 1}, "hand": {"_count": 3}, "threelegged": {"_count": 1}, "foot": {"_count": 2}, "second": {"_count": 1}, "couple": {"_count": 1}, "horrible": {"_count": 1}, "seethrough": {"_count": 1}, "Knut": {"_count": 1}, "wig": {"_count": 1}}, "the": {"_count": 26, "hat": {"_count": 1}, "tray": {"_count": 1}, "chocolate": {"_count": 1}, "chest": {"_count": 1}, "goblet": {"_count": 1}, "last": {"_count": 1}, "man": {"_count": 1}, "tip": {"_count": 2}, "third": {"_count": 1}, "seventh": {"_count": 1}, "beetle": {"_count": 1}, "stool": {"_count": 1}, "point": {"_count": 1}, "quill": {"_count": 1}, "burden": {"_count": 1}, "Pensieve": {"_count": 2}, "body": {"_count": 1}, "fragment": {"_count": 1}, "Snitch": {"_count": 1}, "note": {"_count": 1}, "Decoy": {"_count": 1}, "pouch": {"_count": 1}, "elf": {"_count": 1}, "two": {"_count": 1}}, "them": {"_count": 3, "around": {"_count": 1}, "carefully": {"_count": 2}}, "you": {"_count": 2, "in": {"_count": 1}, "here": {"_count": 1}}, "him": {"_count": 3, "next": {"_count": 1}, "several": {"_count": 1}, "in": {"_count": 1}}, "his": {"_count": 12, "tatty": {"_count": 1}, "front": {"_count": 1}, "foot": {"_count": 1}, "staff": {"_count": 1}, "long": {"_count": 1}, "wand": {"_count": 1}, "Mimbulus": {"_count": 1}, "bleeding": {"_count": 1}, "hand": {"_count": 2}, "empty": {"_count": 1}, "wet": {"_count": 1}}, "hands": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "strategic": {"_count": 1}}, "Flying": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 11, "tip": {"_count": 1}, "back": {"_count": 2}, "upon": {"_count": 3}, "upright": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}, "around": {"_count": 2}}, "warming": {"_count": 1, "pans": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 5}, "front": {"_count": 1}, "Slytherin": {"_count": 1}, "our": {"_count": 1}}, "endtoend": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "orders": {"_count": 1}}, "one": {"_count": 1, "around": {"_count": 1}}, "most": {"_count": 1, "interestingly": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "upon": {"_count": 8, "her": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}, "him": {"_count": 1}, "Dawlish": {"_count": 1}, "the": {"_count": 2}}, "under": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "contact": {"_count": 1}, "help": {"_count": 1}}, "its": {"_count": 2, "front": {"_count": 1}, "tip": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 1, "Head": {"_count": 1}}, "her": {"_count": 2, "whistle": {"_count": 1}, "fingers": {"_count": 1}}, "almost": {"_count": 1, "over": {"_count": 1}}, "carefully": {"_count": 2, "upon": {"_count": 2}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "gently": {"_count": 1, "on": {"_count": 1}}, "he": {"_count": 1, "still": {"_count": 1}}, "sources": {"_count": 1, "within": {"_count": 1}}, "on": {"_count": 2, "a": {"_count": 1}, "anything": {"_count": 1}}, "himself": {"_count": 1, "forever": {"_count": 1}}, "within": {"_count": 1, "it": {"_count": 1}}, "end": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "Hermiones": {"_count": 1, "wand": {"_count": 1}}, "protection": {"_count": 1, "around": {"_count": 1}}}, "fourlegged": {"_count": 3, "stool": {"_count": 1, "in": {"_count": 1}}, "creature": {"_count": 1, "erupted": {"_count": 1}}, "thing": {"_count": 1, "now": {"_count": 1}}}, "patched": {"_count": 13, "and": {"_count": 5, "frayed": {"_count": 2}, "ragged": {"_count": 1}, "shabbier": {"_count": 1}, "darned": {"_count": 1}}, "frayed": {"_count": 1, "and": {"_count": 1}}, "hat": {"_count": 2, "over": {"_count": 1}, "": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "wizards": {"_count": 1, "hat": {"_count": 1}}, "her": {"_count": 1, "up": {"_count": 1}}, "jeans": {"_count": 1, "and": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}}, "frayed": {"_count": 7, "and": {"_count": 3, "extremely": {"_count": 1}, "dirty": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "neck": {"_count": 1, "and": {"_count": 1}}, "brim": {"_count": 1, "": {"_count": 1}}}, "rabbit": {"_count": 14, "out": {"_count": 1, "of": {"_count": 1}}, "fur": {"_count": 1, "gloves": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "kept": {"_count": 1, "changing": {"_count": 1}}, "Binky": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "anything": {"_count": 1}}, "food": {"_count": 1, "": {"_count": 1}}, "holes": {"_count": 1, "slipping": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "rip": {"_count": 20, "near": {"_count": 4, "the": {"_count": 4}}, "him": {"_count": 1, "off": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "our": {"_count": 1, "hands": {"_count": 1}}, "it": {"_count": 3, "out": {"_count": 1}, "off": {"_count": 1}, "into": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "in": {"_count": 1}}, "off": {"_count": 2, "another": {"_count": 1}, "more": {"_count": 1}}, "Dean": {"_count": 1, "limb": {"_count": 1}}, "his": {"_count": 1, "soul": {"_count": 1}}, "out": {"_count": 1, "his": {"_count": 1}}}, "brim": {"_count": 12, "opened": {"_count": 5, "wide": {"_count": 4}, "again": {"_count": 1}}, "with": {"_count": 1, "dancing": {"_count": 1}}, "of": {"_count": 2, "her": {"_count": 1}, "icy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Dumbledore": {"_count": 1, "lifted": {"_count": 1}}, "remained": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "Snape": {"_count": 1}}}, "sing": {"_count": 10, "Oh": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "school": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "carols": {"_count": 1, "whenever": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "Weasley": {"_count": 3, "is": {"_count": 2}, "cannot": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "opera": {"_count": 1, "or": {"_count": 1}}}, "pretty": {"_count": 96, "But": {"_count": 1, "dont": {"_count": 1}}, "woman": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "the": {"_count": 1, "snuffbox": {"_count": 1}}, "good": {"_count": 9, "idea": {"_count": 2}, "": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "actually": {"_count": 1}, "case": {"_count": 1}, "bathroom": {"_count": 1}}, "nasty": {"_count": 2, "stuff": {"_count": 1}, "said": {"_count": 1}}, "face": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 1}, "!": {"_count": 1}}, "girl": {"_count": 5, "who": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}, "riding": {"_count": 1}, "working": {"_count": 1}}, "boring": {"_count": 1, "life": {"_count": 1}}, "it": {"_count": 1, "doesnt": {"_count": 1}}, "thorough": {"_count": 1, "grounding": {"_count": 1}}, "sight": {"_count": 1, "": {"_count": 1}}, "Muggleborn": {"_count": 1, "girl": {"_count": 1}}, "landlady": {"_count": 1, "didnt": {"_count": 1}}, "cool": {"_count": 1, "bit": {"_count": 1}}, "chilly": {"_count": 1, "too": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "looked": {"_count": 1}}, "boy": {"_count": 1, "who": {"_count": 1}}, "now": {"_count": 1, "is": {"_count": 1}}, "indeed": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "Parvati": {"_count": 1}}, "thoroughly": {"_count": 1, "yourself": {"_count": 1}}, "and": {"_count": 1, "vivacious": {"_count": 1}}, "sickly": {"_count": 1, "when": {"_count": 1}}, "well": {"_count": 3, "but": {"_count": 1}, "when": {"_count": 1}, "known": {"_count": 1}}, "antiwizard": {"_count": 1, "at": {"_count": 1}}, "sure": {"_count": 4, "this": {"_count": 1}, "were": {"_count": 1}, "that": {"_count": 1}, "my": {"_count": 1}}, "certain": {"_count": 1, "that": {"_count": 1}}, "much": {"_count": 3, "automatic": {"_count": 1}, "everything": {"_count": 1}, "what": {"_count": 1}}, "roomy": {"_count": 1, "secret": {"_count": 1}}, "basic": {"_count": 1, "but": {"_count": 1}}, "high": {"_count": 1, "mountains": {"_count": 1}}, "rare": {"_count": 2, "I": {"_count": 1}, "its": {"_count": 1}}, "even": {"_count": 1, "when": {"_count": 1}}, "quiet": {"_count": 1, "said": {"_count": 1}}, "with": {"_count": 3, "her": {"_count": 1}, "hives": {"_count": 1}, "a": {"_count": 1}}, "blonde": {"_count": 1, "girl": {"_count": 1}}, "theyre": {"_count": 1, "supposed": {"_count": 1}}, "talking": {"_count": 1, "horses": {"_count": 1}}, "low": {"_count": 1, "at": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "neck": {"_count": 1, "": {"_count": 1}}, "lame": {"_count": 1, "story": {"_count": 1}}, "far": {"_count": 1, "along": {"_count": 1}}, "eventful": {"_count": 1, "Rufus": {"_count": 1}}, "suspicious": {"_count": 1, "breathed": {"_count": 1}}, "tired": {"_count": 1, "now": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "upset": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 1, "while": {"_count": 1}}, "Impedimenta": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 1, "magic": {"_count": 1}}, "thin": {"_count": 1, "on": {"_count": 1}}, "French": {"_count": 1, "girls": {"_count": 1}}, "interesting": {"_count": 1, "to": {"_count": 1}}, "ashamed": {"_count": 1, "of": {"_count": 1}}, "tall": {"_count": 1, "youll": {"_count": 1}}, "confident": {"_count": 1, "Ill": {"_count": 1}}, "Dolores": {"_count": 1, "she": {"_count": 1}}, "lights": {"_count": 1, "and": {"_count": 1}}, "useful": {"_count": 1, "piped": {"_count": 1}}, "big": {"_count": 1, "too": {"_count": 1}}, "little": {"_count": 1, "friend": {"_count": 1}}, "powerful": {"_count": 1, "said": {"_count": 1}}, "convincing": {"_count": 1, "": {"_count": 1}}, "badly": {"_count": 1, "": {"_count": 1}}, "skint": {"_count": 1, "witless": {"_count": 1}}}, "judge": {"_count": 24, "on": {"_count": 1, "what": {"_count": 1}}, "by": {"_count": 1, "their": {"_count": 1}}, "other": {"_count": 1, "men": {"_count": 1}}, "will": {"_count": 1, "decide": {"_count": 1}}, "into": {"_count": 2, "making": {"_count": 1}, "believing": {"_count": 1}}, "whos": {"_count": 1, "going": {"_count": 1}}, "knows": {"_count": 1, "who": {"_count": 1}}, "the": {"_count": 3, "champions": {"_count": 1}, "tournament": {"_count": 1}, "Triwizard": {"_count": 1}}, "isnt": {"_count": 1, "she": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "not": {"_count": 1, "showing": {"_count": 1}}, "us": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}, "tonight": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "her": {"_count": 1, "too": {"_count": 1}}, "how": {"_count": 1, "Wizarding": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "smarter": {"_count": 2, "hat": {"_count": 1, "than": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}}, "bowlers": {"_count": 1, "black": {"_count": 1, "Your": {"_count": 1}}}, "sleek": {"_count": 17, "and": {"_count": 4, "tall": {"_count": 1}, "silver": {"_count": 1}, "shiny": {"_count": 2}}, "as": {"_count": 1, "usual": {"_count": 1}}, "hair": {"_count": 1, "was": {"_count": 1}}, "black": {"_count": 2, "leather": {"_count": 1}, "rats": {"_count": 1}}, "neck": {"_count": 1, "to": {"_count": 1}}, "blond": {"_count": 5, "hair": {"_count": 4}, "head": {"_count": 1}}, "silver": {"_count": 1, "furs": {"_count": 1}}, "furs": {"_count": 1, "but": {"_count": 1}}, "thick": {"_count": 1, "and": {"_count": 1}}}, "Hat": {"_count": 48, "And": {"_count": 1, "I": {"_count": 1}}, "cant": {"_count": 1, "see": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "chose": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 3, "a": {"_count": 2}, "him": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "had": {"_count": 2, "tried": {"_count": 1}, "seriously": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "hesitated": {"_count": 1}}, "So": {"_count": 1, "it": {"_count": 1}}, "were": {"_count": 1, "but": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "then": {"_count": 1, "walked": {"_count": 1}}, "into": {"_count": 2, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 3, "with": {"_count": 1}, "it": {"_count": 1}, "unless": {"_count": 1}}, "the": {"_count": 1, "rubyencrusted": {"_count": 1}}, "giving": {"_count": 1, "him": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "could": {"_count": 1, "see": {"_count": 1}}, "placed": {"_count": 1, "you": {"_count": 1}}, "which": {"_count": 1, "shouted": {"_count": 1}}, "finished": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "now": {"_count": 1, "Sorting": {"_count": 1}}, "was": {"_count": 1, "standing": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "is": {"_count": 1, "here": {"_count": 1}}, "usually": {"_count": 1, "confined": {"_count": 1}}, "did": {"_count": 1, "seriously": {"_count": 1}}, "say": {"_count": 1, "anything": {"_count": 1}}, "touched": {"_count": 1, "his": {"_count": 1}}, "sat": {"_count": 1, "ancient": {"_count": 1}}, "According": {"_count": 1, "to": {"_count": 1}}, "onto": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 1, "burst": {"_count": 1}}, "takes": {"_count": 1, "your": {"_count": 1}}}, "cap": {"_count": 8, "them": {"_count": 1, "all": {"_count": 1}}, "it": {"_count": 3, "all": {"_count": 3}}, "was": {"_count": 1, "screaming": {"_count": 1}}, "pulled": {"_count": 1, "low": {"_count": 1}}, "matters": {"_count": 1, "Montague": {"_count": 1}}, "whose": {"_count": 1, "tassel": {"_count": 1}}}, "dwell": {"_count": 9, "the": {"_count": 2, "brave": {"_count": 2}}, "on": {"_count": 3, "dreams": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 1, "on": {"_count": 1}}, "within": {"_count": 1, "them": {"_count": 1}}, "ever": {"_count": 1, "more": {"_count": 1}}, "in": {"_count": 1, "cold": {"_count": 1}}}, "daring": {"_count": 30, "nerve": {"_count": 2, "and": {"_count": 2}}, "to": {"_count": 15, "take": {"_count": 1}, "look": {"_count": 2}, "believe": {"_count": 2}, "speed": {"_count": 1}, "move": {"_count": 1}, "talk": {"_count": 1}, "become": {"_count": 1}, "hope": {"_count": 1}, "bewitch": {"_count": 1}, "breathe": {"_count": 3}, "make": {"_count": 1}}, "even": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "plan": {"_count": 1, "To": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "their": {"_count": 1, "powers": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "Gryffindor": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "seized": {"_count": 1, "him": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}}, "chivalry": {"_count": 3, "Set": {"_count": 1, "Gryffindors": {"_count": 1}}, "set": {"_count": 1, "Gryffindors": {"_count": 1}}, "entered": {"_count": 1, "into": {"_count": 1}}}, "Set": {"_count": 4, "Gryffindors": {"_count": 1, "apart": {"_count": 1}}, "him": {"_count": 2, "free": {"_count": 1}, "down": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "Gryffindors": {"_count": 113, "apart": {"_count": 2, "You": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 10, "!": {"_count": 2}, ".": {"_count": 7}, "?": {"_count": 1}}, "have": {"_count": 1, "never": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 3}, "Quality": {"_count": 1}, "one": {"_count": 1}, "front": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "Dennis": {"_count": 1}}, "only": {"_count": 1, "had": {"_count": 1}}, "hurried": {"_count": 2, "down": {"_count": 1}, "off": {"_count": 1}}, "had": {"_count": 7, "in": {"_count": 1}, "anything": {"_count": 1}, "nowhere": {"_count": 1}, "turned": {"_count": 1}, "learned": {"_count": 1}, "arrived": {"_count": 1}, "difficulty": {"_count": 1}}, "take": {"_count": 1, "the": {"_count": 1}}, "below": {"_count": 2, "Marcus": {"_count": 1}, "shouted": {"_count": 1}}, "came": {"_count": 1, "spilling": {"_count": 1}}, "running": {"_count": 1, "to": {"_count": 1}}, "passing": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "leering": {"_count": 1, "to": {"_count": 1}}, "noses": {"_count": 1, "in": {"_count": 1}}, "were": {"_count": 7, "gathered": {"_count": 1}, "lining": {"_count": 1}, "walking": {"_count": 1}, "halfway": {"_count": 1}, "telling": {"_count": 1}, "sick": {"_count": 1}, "generally": {"_count": 1}}, "pressing": {"_count": 1, "around": {"_count": 1}}, "work": {"_count": 1, "while": {"_count": 1}}, "next": {"_count": 1, "Quidditch": {"_count": 1}}, "chances": {"_count": 2, "for": {"_count": 1}, "they": {"_count": 1}}, "packed": {"_count": 1, "inside": {"_count": 1}}, "began": {"_count": 1, "talking": {"_count": 1}}, "down": {"_count": 1, "not": {"_count": 1}}, "draw": {"_count": 1, "ahead": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "streaming": {"_count": 1, "up": {"_count": 1}}, "watched": {"_count": 1, "fearfully": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 2}}, "squeezed": {"_count": 1, "together": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "defeat": {"_count": 1, "": {"_count": 1}}, "victory": {"_count": 1, "it": {"_count": 1}}, "improved": {"_count": 1, "chances": {"_count": 1}}, "penalty": {"_count": 1, "but": {"_count": 1}}, "triumph": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "up": {"_count": 1}}, "heading": {"_count": 1, "in": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "entering": {"_count": 1, "said": {"_count": 1}}, "all": {"_count": 3, "treating": {"_count": 1}, "along": {"_count": 1}, "sing": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "however": {"_count": 1, "they": {"_count": 1}}, "cheering": {"_count": 1, "in": {"_count": 1}}, "where": {"_count": 1, "Karkaroff": {"_count": 1}}, "Ginny": {"_count": 1, "was": {"_count": 1}}, "trooped": {"_count": 1, "back": {"_count": 1}}, "spent": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "abysmal": {"_count": 1, "performance": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "walking": {"_count": 1, "past": {"_count": 1}}, "hourglass": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "draw": {"_count": 1}}, "six": {"_count": 1, "goals": {"_count": 1}}, "that": {"_count": 1, "leaves": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "sword": {"_count": 11, "in": {"_count": 2}, "out": {"_count": 1}, "but": {"_count": 1}, "dont": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "bumping": {"_count": 1}, "which": {"_count": 1}, "remained": {"_count": 1}, "as": {"_count": 1}}, "or": {"_count": 2, "Ravenclaws": {"_count": 2}}, "after": {"_count": 1, "me": {"_count": 1}}, "birthplace": {"_count": 1, "Really": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "And": {"_count": 1, "before": {"_count": 1}}, "whose": {"_count": 1, "was": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}}, "loyal": {"_count": 13, "Those": {"_count": 1, "patient": {"_count": 1}}, "to": {"_count": 8, "me": {"_count": 2}, "you": {"_count": 2}, "Dumbledore": {"_count": 2}, "him": {"_count": 1}, "people": {"_count": 1}}, "friend": {"_count": 1, "a": {"_count": 1}}, "servant": {"_count": 1, "I": {"_count": 1}}, "his": {"_count": 1, "most": {"_count": 1}}, "now": {"_count": 1, "but": {"_count": 1}}}, "patient": {"_count": 6, "Hufflepuffs": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "visitor": {"_count": 1}}, "air": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}}, "Hufflepuffs": {"_count": 43, "are": {"_count": 2, "true": {"_count": 1}, "talking": {"_count": 1}}, "Harry": {"_count": 1, "suddenly": {"_count": 1}}, "going": {"_count": 1, "the": {"_count": 1}}, "turned": {"_count": 1, "on": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 3, "should": {"_count": 1}, "played": {"_count": 1}, "were": {"_count": 1}}, "bent": {"_count": 1, "closer": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "worst": {"_count": 1, "fears": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "heard": {"_count": 1}}, "to": {"_count": 3, "pass": {"_count": 1}, "leave": {"_count": 1}, "the": {"_count": 1}}, "were": {"_count": 2, "approaching": {"_count": 1}, "taking": {"_count": 1}}, "and": {"_count": 5, "sat": {"_count": 1}, "Care": {"_count": 1}, "Ravenclaws": {"_count": 2}, "Slytherins": {"_count": 1}}, "climbing": {"_count": 1, "the": {"_count": 1}}, "passing": {"_count": 1, "their": {"_count": 1}}, "felt": {"_count": 1, "that": {"_count": 1}}, "attitude": {"_count": 1, "even": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "enjoying": {"_count": 1, "our": {"_count": 1}}, "heading": {"_count": 1, "back": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "into": {"_count": 1, "line": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "cup": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "hooking": {"_count": 1}}, "stood": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "looking": {"_count": 1, "so": {"_count": 1}}, "stayed": {"_count": 1, "behind": {"_count": 1}}}, "unafraid": {"_count": 1, "of": {"_count": 1, "toil": {"_count": 1}}}, "toil": {"_count": 1, "Or": {"_count": 1, "yet": {"_count": 1}}}, "wit": {"_count": 2, "and": {"_count": 1, "learning": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "learning": {"_count": 28, "Will": {"_count": 1, "always": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 7, "fly": {"_count": 1}, "play": {"_count": 1}, "punch": {"_count": 1}, "defend": {"_count": 2}, "close": {"_count": 1}, "peel": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "loads": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 3, "to": {"_count": 3}}, "the": {"_count": 3, "theory": {"_count": 1}, "Summoning": {"_count": 1}, "secrets": {"_count": 1}}, "that": {"_count": 2, "have": {"_count": 1}, "he": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "about": {"_count": 1, "defensive": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "defense": {"_count": 1, "but": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "Occlumency": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Will": {"_count": 52, "always": {"_count": 1, "find": {"_count": 1}}, "you": {"_count": 34, "look": {"_count": 2}, "stop": {"_count": 5}, "sign": {"_count": 1}, "be": {"_count": 1}, "let": {"_count": 3}, "keep": {"_count": 1}, "please": {"_count": 3}, "pay": {"_count": 1}, "come": {"_count": 3}, "go": {"_count": 1}, "": {"_count": 1}, "shut": {"_count": 1}, "teach": {"_count": 1}, "step": {"_count": 1}, "speak": {"_count": 1}, "make": {"_count": 1}, "Severus": {"_count": 1}, "get": {"_count": 1}, "give": {"_count": 1}, "promise": {"_count": 1}, "babysit": {"_count": 1}, "summon": {"_count": 1}, "help": {"_count": 1}}, "the": {"_count": 4, "rest": {"_count": 1}, "champions": {"_count": 1}, "Ministry": {"_count": 1}, "old": {"_count": 1}}, "your": {"_count": 1, "aunt": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "what": {"_count": 1, "next": {"_count": 1}}, "nicked": {"_count": 1, "em": {"_count": 1}}, "it": {"_count": 4, "be": {"_count": 2}, "help": {"_count": 1}, "hold": {"_count": 1}}, "Fudge": {"_count": 1, "Go": {"_count": 1}}, "we": {"_count": 1, "be": {"_count": 1}}, "George": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 1, "Testament": {"_count": 1}}, "three": {"_count": 1, "become": {"_count": 1}}}, "cunning": {"_count": 10, "folk": {"_count": 1, "use": {"_count": 1}}, "still": {"_count": 1, "determined": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "possess": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "unplumbed": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "inquisitive": {"_count": 1}}}, "means": {"_count": 122, "To": {"_count": 1, "achieve": {"_count": 1}}, "": {"_count": 15, "?": {"_count": 4}, ".": {"_count": 10}, "!": {"_count": 1}}, "he": {"_count": 4, "burst": {"_count": 1}, "and": {"_count": 1}, "gave": {"_count": 1}, "could": {"_count": 1}}, "dangers": {"_count": 1, "coming": {"_count": 1}}, "Ill": {"_count": 1, "see": {"_count": 1}}, "Dumbledore": {"_count": 1, "called": {"_count": 1}}, "of": {"_count": 20, "small": {"_count": 1}, "this": {"_count": 1}, "contacting": {"_count": 1}, "escape": {"_count": 1}, "distinguishing": {"_count": 1}, "summoning": {"_count": 1}, "divining": {"_count": 1}, "distracting": {"_count": 1}, "deflecting": {"_count": 1}, "removing": {"_count": 1}, "transport": {"_count": 2}, "support": {"_count": 1}, "recalling": {"_count": 1}, "keeping": {"_count": 1}, "course": {"_count": 1}, "passing": {"_count": 1}, "destroying": {"_count": 1}, "steering": {"_count": 1}, "communication": {"_count": 1}}, "the": {"_count": 6, "only": {"_count": 1}, "Ministrys": {"_count": 1}, "chief": {"_count": 1}, "eldest": {"_count": 1}, "Death": {"_count": 1}, "names": {"_count": 1}}, "to": {"_count": 7, "us": {"_count": 1}, "take": {"_count": 1}, "help": {"_count": 1}, "spy": {"_count": 1}, "cross": {"_count": 1}, "control": {"_count": 1}, "him": {"_count": 1}}, "said": {"_count": 7, "Dumbledore": {"_count": 2}, "Harry": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "Luna": {"_count": 1}}, "finding": {"_count": 1, "out": {"_count": 1}}, "you": {"_count": 3, "said": {"_count": 1}, "too": {"_count": 1}, "would": {"_count": 1}}, "youre": {"_count": 1, "going": {"_count": 1}}, "\u2018great": {"_count": 1, "happiness": {"_count": 1}}, "I": {"_count": 8, "have": {"_count": 1}, "used": {"_count": 1}, "can": {"_count": 2}, "wont": {"_count": 1}, "only": {"_count": 1}, "know": {"_count": 1}, "dont": {"_count": 1}}, "forgotten": {"_count": 1, "about": {"_count": 1}}, "weve": {"_count": 1, "finished": {"_count": 1}}, "that": {"_count": 9, "you": {"_count": 1}, "I": {"_count": 3}, "some": {"_count": 1}, "this": {"_count": 2}, "people": {"_count": 1}, "Harry": {"_count": 1}}, "clothes": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "reading": {"_count": 1}}, "\u2018pickax": {"_count": 1, "": {"_count": 1}}, "much": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "my": {"_count": 1}, "Harry": {"_count": 1}}, "banished": {"_count": 1, "": {"_count": 1}}, "Dumbledores": {"_count": 1, "found": {"_count": 1}}, "were": {"_count": 3, "supposed": {"_count": 1}, "not": {"_count": 1}, "the": {"_count": 1}}, "theyre": {"_count": 1, "not": {"_count": 1}}, "come": {"_count": 1, "and": {"_count": 1}}, "youd": {"_count": 1, "have": {"_count": 1}}, "but": {"_count": 1, "if": {"_count": 1}}, "stay": {"_count": 1, "Black": {"_count": 1}}, "open": {"_count": 1, "this": {"_count": 1}}, "\u2018partnership": {"_count": 1, "not": {"_count": 1}}, "continue": {"_count": 1, "destroying": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "it": {"_count": 1}}, "a": {"_count": 2, "lot": {"_count": 1}, "great": {"_count": 1}}, "tell": {"_count": 1, "Dumbledore": {"_count": 1}}, "love": {"_count": 1, "": {"_count": 1}}, "If": {"_count": 1, "Voldemort": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}, "dead": {"_count": 1, "bodies": {"_count": 1}}, "youve": {"_count": 1, "still": {"_count": 1}}, "anything": {"_count": 1, "new": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "Lily": {"_count": 1, "Evans": {"_count": 1}}, "her": {"_count": 1, "son": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}}, "achieve": {"_count": 8, "their": {"_count": 1, "ends": {"_count": 1}}, "this": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "nothing": {"_count": 1, "except": {"_count": 1}}, "an": {"_count": 1, "O": {"_count": 1}}, "a": {"_count": 1, "sacking": {"_count": 1}}, "the": {"_count": 2, "required": {"_count": 2}}}, "l": {"_count": 2, "And": {"_count": 1, "dont": {"_count": 1}}, "The": {"_count": 1, "locket": {"_count": 1}}}, "flap": {"_count": 7, "Youre": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 2, "snap": {"_count": 1}, "felt": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "her": {"_count": 1, "wings": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}}, "Thinking": {"_count": 8, "Cap": {"_count": 1, "The": {"_count": 1}}, "about": {"_count": 1, "Ron": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "of": {"_count": 3, "trying": {"_count": 1}, "starting": {"_count": 1}, "dementors": {"_count": 1}}}, "Cap": {"_count": 1, "The": {"_count": 1, "whole": {"_count": 1}}}, "applause": {"_count": 55, "as": {"_count": 3, "the": {"_count": 2}, "Dumbledore": {"_count": 1}}, "for": {"_count": 5, "even": {"_count": 1}, "Professor": {"_count": 1}, "their": {"_count": 1}, "Bagman": {"_count": 1}, "Cedric": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "except": {"_count": 1, "applause": {"_count": 1}}, "didnt": {"_count": 1, "usually": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "from": {"_count": 7, "a": {"_count": 1}, "the": {"_count": 6}}, "all": {"_count": 1, "except": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 5, "cheers": {"_count": 1}, "Mr": {"_count": 1}, "cheering": {"_count": 1}, "started": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 1, "none": {"_count": 1}}, "too": {"_count": 1, "many": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "looking": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "sent": {"_count": 1, "birds": {"_count": 1}}, "broke": {"_count": 1, "out": {"_count": 1}}, "during": {"_count": 1, "which": {"_count": 1}}, "on": {"_count": 1, "an": {"_count": 1}}, "issued": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 1, "golden": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}}, "song": {"_count": 44, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "at": {"_count": 1, "different": {"_count": 1}}, "Oh": {"_count": 1, "Potter": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "jabbing": {"_count": 1, "here": {"_count": 1}}, "A": {"_count": 1, "thousand": {"_count": 1}}, "it": {"_count": 1, "sang": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "ended": {"_count": 2, "she": {"_count": 1}, "everybody": {"_count": 1}}, "was": {"_count": 2, "coming": {"_count": 1}, "growing": {"_count": 1}}, "whose": {"_count": 1, "words": {"_count": 1}}, "before": {"_count": 2, "Harry": {"_count": 1}, "that": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "hostages": {"_count": 1}}, "thing": {"_count": 1, "seriously": {"_count": 1}}, "said": {"_count": 3, "It": {"_count": 1}, "Hermione": {"_count": 1}, "Luna": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "inside": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "died": {"_count": 1, "but": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "In": {"_count": 1, "times": {"_count": 1}}, "Though": {"_count": 1, "condemned": {"_count": 1}}, "rose": {"_count": 2, "loud": {"_count": 1}, "from": {"_count": 1}}, "that": {"_count": 2, "wound": {"_count": 1}, "echoed": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "wrestling": {"_count": 14, "a": {"_count": 1, "troll": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 5, "it": {"_count": 1}, "me": {"_count": 1}, "Neville": {"_count": 1}, "Ron": {"_count": 1}, "Mrs": {"_count": 1}}, "the": {"_count": 1, "rogue": {"_count": 1}}, "matches": {"_count": 1, "and": {"_count": 1}}, "Buckbeak": {"_count": 1, "back": {"_count": 1}}, "match": {"_count": 1, "Harry": {"_count": 1}}, "elves": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "together": {"_count": 1, "and": {"_count": 1}}}, "troll": {"_count": 44, "": {"_count": 7, ".": {"_count": 7}}, "if": {"_count": 1, "you": {"_count": 1}}, "get": {"_count": 1, "in": {"_count": 1}}, "stopped": {"_count": 2, "next": {"_count": 1}, "a": {"_count": 1}}, "wasnt": {"_count": 1, "about": {"_count": 1}}, "was": {"_count": 2, "advancing": {"_count": 1}, "going": {"_count": 1}}, "didnt": {"_count": 1, "even": {"_count": 1}}, "berserk": {"_count": 1, "": {"_count": 1}}, "couldnt": {"_count": 1, "feel": {"_count": 1}}, "will": {"_count": 1, "notice": {"_count": 1}}, "twisted": {"_count": 1, "and": {"_count": 1}}, "swayed": {"_count": 1, "on": {"_count": 1}}, "boogers": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "quite": {"_count": 1, "apart": {"_count": 1}}, "is": {"_count": 1, "one": {"_count": 1}}, "and": {"_count": 2, "she": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "blood": {"_count": 1, "in": {"_count": 1}}, "got": {"_count": 1, "in": {"_count": 1}}, "even": {"_count": 1, "larger": {"_count": 1}}, "fail": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "hag": {"_count": 1}}, "paused": {"_count": 1, "in": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "to": {"_count": 1, "guard": {"_count": 1}}, "hunting": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "Ive": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "ran": {"_count": 1, "on": {"_count": 1}}, "leg": {"_count": 1, "downstairs": {"_count": 1}}, "the": {"_count": 1, "smell": {"_count": 1}}}, "weakly": {"_count": 42, "": {"_count": 22, ".": {"_count": 22}}, "but": {"_count": 1, "Lockhart": {"_count": 1}}, "on": {"_count": 1, "Hogwarts": {"_count": 1}}, "wiping": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 4, "he": {"_count": 1}, "if": {"_count": 1}, "shook": {"_count": 1}, "when": {"_count": 1}}, "though": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "weighing": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "passing": {"_count": 1, "over": {"_count": 1}}, "wishing": {"_count": 1, "Roger": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "lurching": {"_count": 1, "forward": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "while": {"_count": 1, "Dean": {"_count": 1}}, "pointing": {"_count": 1, "her": {"_count": 1}}}, "wish": {"_count": 131, "they": {"_count": 2, "could": {"_count": 1}, "had": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "to": {"_count": 39, "die": {"_count": 1}, "stay": {"_count": 3}, "destroy": {"_count": 1}, "speak": {"_count": 3}, "leave": {"_count": 2}, "feel": {"_count": 1}, "impress": {"_count": 1}, "be": {"_count": 4}, "help": {"_count": 1}, "meet": {"_count": 1}, "bring": {"_count": 1}, "come": {"_count": 2}, "skive": {"_count": 1}, "criticize": {"_count": 1}, "interrogate": {"_count": 1}, "poison": {"_count": 1}, "remain": {"_count": 1}, "tell": {"_count": 1}, "do": {"_count": 2}, "": {"_count": 1}, "discuss": {"_count": 2}, "stick": {"_count": 1}, "proceed": {"_count": 1}, "believe": {"_count": 1}, "marry": {"_count": 1}, "give": {"_count": 1}, "join": {"_count": 1}, "enter": {"_count": 1}}, "I": {"_count": 17, "knew": {"_count": 4}, "hadnt": {"_count": 2}, "could": {"_count": 9}, "were": {"_count": 1}, "was": {"_count": 1}}, "youd": {"_count": 3, "never": {"_count": 1}, "let": {"_count": 1}, "invite": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "people": {"_count": 1, "would": {"_count": 1}}, "Harry": {"_count": 3, "good": {"_count": 2}, "Potter": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 4, "was": {"_count": 2}, "had": {"_count": 2}}, "you": {"_count": 9, "could": {"_count": 2}, "hadnt": {"_count": 1}, "to": {"_count": 4}, "luck": {"_count": 1}, "a": {"_count": 1}}, "that": {"_count": 6, "I": {"_count": 1}, "the": {"_count": 1}, "Professor": {"_count": 1}, "you": {"_count": 2}, "had": {"_count": 1}}, "of": {"_count": 2, "keeping": {"_count": 1}, "hearing": {"_count": 1}}, "England": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "you": {"_count": 1}, "better": {"_count": 1}}, "a": {"_count": 1, "hope": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "him": {"_count": 3, "luck": {"_count": 2}, "to": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "me": {"_count": 2, "to": {"_count": 2}}, "it": {"_count": 3, "were": {"_count": 1}, "of": {"_count": 1}, "said": {"_count": 1}}, "hed": {"_count": 2, "talked": {"_count": 1}, "never": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 1, "would": {"_count": 1}}, "she": {"_count": 1, "hadnt": {"_count": 1}}, "the": {"_count": 2, "door": {"_count": 1}, "battle": {"_count": 1}}, "we": {"_count": 1, "had": {"_count": 1}}, "theyd": {"_count": 2, "stop": {"_count": 1}, "shut": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "yehd": {"_count": 1, "stop": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "Id": {"_count": 4, "chosen": {"_count": 1}, "asked": {"_count": 1}, "got": {"_count": 1}, "understood": {"_count": 1}}, "her": {"_count": 1, "a": {"_count": 1}}, "old": {"_count": 1, "Uncle": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}, "this": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "dead": {"_count": 1}}, "formed": {"_count": 1, "in": {"_count": 1}}}, "quickwitted": {"_count": 2, "or": {"_count": 1, "any": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}}, "queasy": {"_count": 4, "that": {"_count": 1, "would": {"_count": 1}}, "to": {"_count": 2, "eat": {"_count": 1}, "watch": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "Abbott": {"_count": 17, "Hannah": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "Hufflepuff": {"_count": 1}}, "a": {"_count": 1, "Hufflepuff": {"_count": 1}}, "were": {"_count": 1, "swapping": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 2}}, "and": {"_count": 1, "a": {"_count": 1}}, "became": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "lost": {"_count": 1, "her": {"_count": 1}}, "Susan": {"_count": 1, "Bones": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "standing": {"_count": 1, "beside": {"_count": 1}}, "darted": {"_count": 1, "past": {"_count": 1}}}, "Hannah": {"_count": 25, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "went": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "uncertainly": {"_count": 1, "and": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "stared": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "listening": {"_count": 1}}, "Abbott": {"_count": 13, "from": {"_count": 1}, "a": {"_count": 1}, "were": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 1}, "became": {"_count": 1}, "": {"_count": 1}, "lost": {"_count": 1}, "Susan": {"_count": 1}, "had": {"_count": 1}, "standing": {"_count": 1}, "darted": {"_count": 1}}, "Abbotts": {"_count": 1, "eyes": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "gesturing": {"_count": 1, "frantically": {"_count": 1}}, "since": {"_count": 1, "": {"_count": 1}}}, "pinkfaced": {"_count": 3, "girl": {"_count": 1, "with": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "wearing": {"_count": 1}}}, "pigtails": {"_count": 2, "stumbled": {"_count": 1, "out": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}}, "HUFFLEPUFF": {"_count": 6, "": {"_count": 6, "!": {"_count": 6}}}, "Susan": {"_count": 9, "": {"_count": 1, "!": {"_count": 1}}, "scuttled": {"_count": 1, "off": {"_count": 1}}, "Bones": {"_count": 6, "Head": {"_count": 1}, "": {"_count": 2}, "who": {"_count": 1}, "Justin": {"_count": 1}, "of": {"_count": 1}}, "sobbing": {"_count": 1, "reunited": {"_count": 1}}}, "Boot": {"_count": 11, "Terry": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "Ginny": {"_count": 1, "followed": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "had": {"_count": 1, "finished": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "beaten": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}}, "Terry": {"_count": 13, "": {"_count": 1, "!": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Boot": {"_count": 9, "Ginny": {"_count": 1}, "gave": {"_count": 1}, "": {"_count": 3}, "had": {"_count": 1}, "eagerly": {"_count": 1}, "got": {"_count": 1}, "Ernie": {"_count": 1}}, "Boots": {"_count": 1, "wand": {"_count": 1}}, "and": {"_count": 1, "Cho": {"_count": 1}}}, "RAVENCLAW": {"_count": 4, "": {"_count": 3, "!": {"_count": 3}}, "It": {"_count": 1, "looked": {"_count": 1}}}, "Ravenclaws": {"_count": 44, "stood": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 3, "Hufflepuffs": {"_count": 2}, "the": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 2, "crossing": {"_count": 1}, "supposed": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "to": {"_count": 3, "a": {"_count": 1}, "pass": {"_count": 1}, "Padma": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "glass": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 3, "there": {"_count": 1}, "whispering": {"_count": 1}, "all": {"_count": 1}}, "went": {"_count": 1, "sprinting": {"_count": 1}}, "had": {"_count": 1, "taken": {"_count": 1}}, "all": {"_count": 3, "of": {"_count": 2}, "in": {"_count": 1}}, "in": {"_count": 2, "another": {"_count": 1}, "the": {"_count": 1}}, "or": {"_count": 2, "of": {"_count": 1}, "Gryffindors": {"_count": 1}}, "symbol": {"_count": 1, "anywhere": {"_count": 1}}, "nobodys": {"_count": 1, "ever": {"_count": 1}}, "wearing": {"_count": 1, "it": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "plinth": {"_count": 1, "to": {"_count": 1}}, "sleeping": {"_count": 1, "above": {"_count": 1}}, "crowded": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "follow": {"_count": 1, "on": {"_count": 1}}, "remained": {"_count": 1, "seated": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}}, "Brocklehurst": {"_count": 1, "Mandy": {"_count": 1, "went": {"_count": 1}}}, "Mandy": {"_count": 1, "went": {"_count": 1, "to": {"_count": 1}}}, "Lavender": {"_count": 134, "became": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 3, "Hermione": {"_count": 1}, "he": {"_count": 1}, "took": {"_count": 1}}, "Browns": {"_count": 2, "head": {"_count": 1}, "face": {"_count": 1}}, "Brown": {"_count": 31, "who": {"_count": 2}, "looked": {"_count": 1}, "clapped": {"_count": 1}, "pointing": {"_count": 1}, "squealed": {"_count": 1}, "had": {"_count": 2}, "seemed": {"_count": 1}, "jumping": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 2}, "Oh": {"_count": 1}, "imitated": {"_count": 1}, "let": {"_count": 1}, "": {"_count": 6}, "the": {"_count": 1}, "uttered": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 1}, "came": {"_count": 1}, "was": {"_count": 1}, "staring": {"_count": 1}, "Harry": {"_count": 1}, "whom": {"_count": 1}}, "looking": {"_count": 2, "relieved": {"_count": 1}, "up": {"_count": 1}}, "trembled": {"_count": 1, "": {"_count": 1}}, "whispered": {"_count": 1, "But": {"_count": 1}}, "and": {"_count": 11, "Parvati": {"_count": 6}, "they": {"_count": 1}, "both": {"_count": 1}, "she": {"_count": 1}, "Hermione": {"_count": 1}, "I": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, "?": {"_count": 2}, ".": {"_count": 5}, "!": {"_count": 1}}, "tragically": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "got": {"_count": 1}}, "wailed": {"_count": 1, "loudly": {"_count": 1}}, "said": {"_count": 4, "Ron": {"_count": 3}, "Hermione": {"_count": 1}}, "quivered": {"_count": 1, "with": {"_count": 1}}, "were": {"_count": 3, "looking": {"_count": 1}, "laughing": {"_count": 1}, "not": {"_count": 1}}, "suddenly": {"_count": 1, "making": {"_count": 1}}, "quickly": {"_count": 1, "withdrew": {"_count": 1}}, "jumped": {"_count": 1, "and": {"_count": 1}}, "whose": {"_count": 1, "robes": {"_count": 1}}, "both": {"_count": 1, "put": {"_count": 1}}, "giggled": {"_count": 1, "harder": {"_count": 1}}, "come": {"_count": 1, "in": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "went": {"_count": 1, "into": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "thinks": {"_count": 1, "so": {"_count": 1}}, "thoroughly": {"_count": 1, "irritating": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "who": {"_count": 6, "were": {"_count": 4}, "was": {"_count": 1}, "looked": {"_count": 1}}, "was": {"_count": 2, "passing": {"_count": 1}, "waiting": {"_count": 1}}, "sigh": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 4, "always": {"_count": 1}, "just": {"_count": 1}, "been": {"_count": 2}}, "shot": {"_count": 1, "him": {"_count": 1}}, "Parvati": {"_count": 1, "and": {"_count": 1}}, "exchanged": {"_count": 1, "gloomy": {"_count": 1}}, "sounding": {"_count": 1, "shocked": {"_count": 1}}, "assured": {"_count": 1, "her": {"_count": 1}}, "sympathetically": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 1, "screamed": {"_count": 1}}, "tearfully": {"_count": 1, "": {"_count": 1}}, "walking": {"_count": 1, "off": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "waiting": {"_count": 1, "outside": {"_count": 1}}, "flung": {"_count": 1, "her": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "locked": {"_count": 1, "in": {"_count": 1}}, "tickling": {"_count": 1, "Ron": {"_count": 1}}, "crept": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 2, "to": {"_count": 1}, "it": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "LavLav": {"_count": 1, "he": {"_count": 1}}, "kept": {"_count": 1, "sidling": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "fretfully": {"_count": 1, "": {"_count": 1}}, "demanded": {"_count": 1, "suddenly": {"_count": 1}}, "scornfully": {"_count": 1, "": {"_count": 1}}, "nor": {"_count": 1, "McLaggen": {"_count": 1}}, "comes": {"_count": 1, "to": {"_count": 1}}, "say": {"_count": 1, "Why": {"_count": 1}}, "Harry": {"_count": 1, "did": {"_count": 1}}, "hear": {"_count": 1, "you": {"_count": 1}}, "caught": {"_count": 1, "up": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "thrashing": {"_count": 1, "around": {"_count": 1}}}, "cheers": {"_count": 28, "Harry": {"_count": 2, "could": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "filled": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 4}}, "echoed": {"_count": 1, "around": {"_count": 1}}, "nearly": {"_count": 1, "raised": {"_count": 1}}, "because": {"_count": 1, "Ravenclaw": {"_count": 1}}, "me": {"_count": 1, "up": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "triumph": {"_count": 1}}, "and": {"_count": 9, "yells": {"_count": 1}, "applause": {"_count": 2}, "sound": {"_count": 1}, "whistles": {"_count": 1}, "felt": {"_count": 1}, "clapping": {"_count": 1}, "boos": {"_count": 1}, "the": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "screams": {"_count": 1}}}, "catcalling": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Bulstrode": {"_count": 10, "Millicent": {"_count": 1, "then": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "were": {"_count": 1, "still": {"_count": 1}}, "wrestling": {"_count": 1, "with": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "mmust": {"_count": 1, "have": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}, "s": {"_count": 1, "robes": {"_count": 1}}}, "Millicent": {"_count": 15, "then": {"_count": 1, "became": {"_count": 1}}, "Bulstrode": {"_count": 7, "were": {"_count": 1}, "wrestling": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 2}, "off": {"_count": 1}, "s": {"_count": 1}}, "had": {"_count": 1, "Hermione": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "Bulstrodes": {"_count": 3, "hair": {"_count": 1}, "no": {"_count": 1}, "ugly": {"_count": 1}}, "Bagnold": {"_count": 1, "retired": {"_count": 1}}, "stopped": {"_count": 1, "trying": {"_count": 1}}}, "unpleasant": {"_count": 61, "lot": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "jolt": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "thought": {"_count": 1, "struck": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "illustrations": {"_count": 1, "which": {"_count": 1}}, "sensation": {"_count": 2, "started": {"_count": 1}, "": {"_count": 1}}, "bump": {"_count": 1, "": {"_count": 1}}, "experiences": {"_count": 1, "in": {"_count": 1}}, "smile": {"_count": 4, "from": {"_count": 1}, "curled": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "thoughts": {"_count": 1, "of": {"_count": 1}}, "sight": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 2, "precious": {"_count": 1}, "Harry": {"_count": 1}}, "mission": {"_count": 1, "Harry": {"_count": 1}}, "turn": {"_count": 1, "since": {"_count": 1}}, "scene": {"_count": 1, "the": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "thing": {"_count": 1, "Harry": {"_count": 1}}, "laughter": {"_count": 1, "reached": {"_count": 1}}, "truth": {"_count": 1, "about": {"_count": 1}}, "as": {"_count": 2, "ever": {"_count": 2}}, "lies": {"_count": 1, "ahead": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "crusty": {"_count": 1, "covering": {"_count": 1}}, "habit": {"_count": 1, "of": {"_count": 1}}, "surprise": {"_count": 1, "a": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "heat": {"_count": 1, "creeping": {"_count": 1}}, "constricted": {"_count": 1, "sensation": {"_count": 1}}, "mixture": {"_count": 1, "of": {"_count": 1}}, "lurch": {"_count": 1, "but": {"_count": 1}}, "little": {"_count": 1, "laugh": {"_count": 1}}, "memories": {"_count": 1, "of": {"_count": 1}}, "simper": {"_count": 1, "": {"_count": 1}}, "Azkaban": {"_count": 1, "is": {"_count": 1}}, "dose": {"_count": 1, "of": {"_count": 1}}, "retorts": {"_count": 1, "but": {"_count": 1}}, "orange": {"_count": 1, "color": {"_count": 1}}, "hollow": {"_count": 1, "sensation": {"_count": 1}}, "smell": {"_count": 2, "of": {"_count": 1}, "like": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "behavior": {"_count": 1, "that": {"_count": 1}}, "chants": {"_count": 1, "about": {"_count": 1}}, "minutes": {"_count": 1, "in": {"_count": 1}}, "shock": {"_count": 1, "to": {"_count": 1}}, "stranger": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 1, "is": {"_count": 1}}, "agitating": {"_count": 1, "sensation": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}}, "definitely": {"_count": 89, "sick": {"_count": 1, "now": {"_count": 1}}, "didnt": {"_count": 3, "meet": {"_count": 1}, "sound": {"_count": 1}, "want": {"_count": 1}}, "moved": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 7, "Diagon": {"_count": 1}, "in": {"_count": 1}, "using": {"_count": 1}, "allowed": {"_count": 1}, "interested": {"_count": 1}, "showing": {"_count": 1}, "thinking": {"_count": 1}}, "wasnt": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 5, "curse": {"_count": 1}, "bit": {"_count": 1}, "start": {"_count": 1}, "sulky": {"_count": 1}, "Snorkack": {"_count": 1}}, "evil": {"_count": 1, "enough": {"_count": 1}}, "think": {"_count": 1, "it": {"_count": 1}}, "come": {"_count": 1, "off": {"_count": 1}}, "needed": {"_count": 1, "a": {"_count": 1}}, "hear": {"_count": 1, "voices": {"_count": 1}}, "thin": {"_count": 1, "on": {"_count": 1}}, "qualified": {"_count": 1, "as": {"_count": 1}}, "wouldnt": {"_count": 1, "be": {"_count": 1}}, "alive": {"_count": 1, "they": {"_count": 1}}, "good": {"_count": 1, "news": {"_count": 1}}, "been": {"_count": 2, "an": {"_count": 1}, "Professor": {"_count": 1}}, "no": {"_count": 2, "new": {"_count": 1}, "sign": {"_count": 1}}, "havent": {"_count": 1, "came": {"_count": 1}}, "irritated": {"_count": 1, "that": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "foreign": {"_count": 1, "": {"_count": 1}}, "something": {"_count": 3, "wrong": {"_count": 1}, "in": {"_count": 1}, "hairy": {"_count": 1}}, "where": {"_count": 1, "Voldemort": {"_count": 1}}, "improved": {"_count": 1, "since": {"_count": 1}}, "is": {"_count": 1, "": {"_count": 1}}, "arrived": {"_count": 1, "in": {"_count": 1}}, "doing": {"_count": 1, "it": {"_count": 1}}, "loathed": {"_count": 1, "him": {"_count": 1}}, "thinning": {"_count": 1, "now": {"_count": 1}}, "caught": {"_count": 1, "in": {"_count": 1}}, "somewhere": {"_count": 2, "around": {"_count": 1}, "near": {"_count": 1}}, "mentioned": {"_count": 1, "Bertha": {"_count": 1}}, "got": {"_count": 2, "giant": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "expelled": {"_count": 1, "though": {"_count": 1}}, "true": {"_count": 1, "Harry": {"_count": 1}}, "done": {"_count": 1, "more": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "your": {"_count": 1}}, "chosen": {"_count": 1, "to": {"_count": 1}}, "Percys": {"_count": 1, "handwriting": {"_count": 1}}, "allowed": {"_count": 1, "": {"_count": 1}}, "werent": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "same": {"_count": 1}}, "happened": {"_count": 1, "Yes": {"_count": 1}}, "answer": {"_count": 1, "and": {"_count": 1}}, "remember": {"_count": 1, "Ron": {"_count": 1}}, "his": {"_count": 2, "own": {"_count": 2}}, "made": {"_count": 1, "at": {"_count": 1}}, "owls": {"_count": 1, "said": {"_count": 1}}, "one": {"_count": 1, "boy": {"_count": 1}}, "offering": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "wear": {"_count": 1, "it": {"_count": 1}}, "proves": {"_count": 1, "Malfoys": {"_count": 1}}, "still": {"_count": 1, "trust": {"_count": 1}}, "alarmed": {"_count": 1, "": {"_count": 1}}, "knows": {"_count": 1, "you": {"_count": 1}}, "wanted": {"_count": 1, "the": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "two": {"_count": 1}}, "went": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "injured": {"_count": 1, "Rodolphus": {"_count": 1}}, "part": {"_count": 1, "troll": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}}, "teams": {"_count": 33, "during": {"_count": 1, "gym": {"_count": 1}}, "should": {"_count": 2, "contact": {"_count": 1}, "give": {"_count": 1}}, "and": {"_count": 3, "told": {"_count": 1}, "their": {"_count": 1}, "articles": {"_count": 1}}, "Seeker": {"_count": 2, "because": {"_count": 1}, "gets": {"_count": 1}}, "her": {"_count": 1, "broom": {"_count": 1}}, "marched": {"_count": 1, "onto": {"_count": 1}}, "have": {"_count": 2, "started": {"_count": 1}, "been": {"_count": 1}}, "plates": {"_count": 1, "with": {"_count": 1}}, "walked": {"_count": 1, "onto": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "prospects": {"_count": 1, "it": {"_count": 1}}, "final": {"_count": 1, "practice": {"_count": 1}}, "faced": {"_count": 1, "each": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "penalties": {"_count": 1, "and": {"_count": 1}}, "bring": {"_count": 1, "creatures": {"_count": 1}}, "tacked": {"_count": 1, "lopsidedly": {"_count": 1}}, "will": {"_count": 1, "take": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "secret": {"_count": 1}}, "practices": {"_count": 1, "which": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 1, "they": {"_count": 1}}, "zoomed": {"_count": 1, "out": {"_count": 1}}, "of": {"_count": 1, "Obliviators": {"_count": 1}}, "this": {"_count": 1, "popular": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "faces": {"_count": 1, "when": {"_count": 1}}}, "gym": {"_count": 1, "at": {"_count": 1, "his": {"_count": 1}}}, "chosen": {"_count": 47, "not": {"_count": 1, "because": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 1, "not": {"_count": 1}}, "to": {"_count": 11, "stay": {"_count": 1}, "study": {"_count": 1}, "compete": {"_count": 1}, "pass": {"_count": 1}, "wear": {"_count": 1}, "be": {"_count": 1}, "come": {"_count": 2}, "believe": {"_count": 1}, "accompany": {"_count": 1}, "make": {"_count": 1}}, "for": {"_count": 2, "you": {"_count": 1}, "weeks": {"_count": 1}}, "person": {"_count": 1, "or": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "seats": {"_count": 1, "at": {"_count": 1}}, "by": {"_count": 2, "an": {"_count": 1}, "inexperienced": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "as": {"_count": 1, "school": {"_count": 1}}, "path": {"_count": 1, "seemed": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "friends": {"_count": 1}}, "any": {"_count": 1, "members": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "this": {"_count": 1, "week": {"_count": 1}}, "Draco": {"_count": 2, "isnt": {"_count": 1}, "in": {"_count": 1}}, "that": {"_count": 1, "moment": {"_count": 1}}, "Neville": {"_count": 1, "it": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "Beaters": {"_count": 1, "had": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 1, "McLaggen": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "name": {"_count": 1, "was": {"_count": 1}}, "his": {"_count": 2, "Horcruxes": {"_count": 1}, "path": {"_count": 1}}, "them": {"_count": 2, "as": {"_count": 1}, "though": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "way": {"_count": 1}}, "mine": {"_count": 1, "": {"_count": 1}}}, "FinchFletchley": {"_count": 12, "Justin": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "running": {"_count": 1, "away": {"_count": 1}}, "had": {"_count": 1, "run": {"_count": 1}}, "how": {"_count": 1, "about": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "raised": {"_count": 1}}, "was": {"_count": 1, "lying": {"_count": 1}}, "Hannah": {"_count": 1, "Abbott": {"_count": 1}}, "whistled": {"_count": 1, "the": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "Anthony": {"_count": 1, "Goldstein": {"_count": 1}}}, "Justin": {"_count": 44, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "FinchFletchley": {"_count": 8, "he": {"_count": 1}, "running": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "Hannah": {"_count": 1}, "whistled": {"_count": 1}, "attempted": {"_count": 1}}, "happily": {"_count": 1, "as": {"_count": 1}}, "Finch": {"_count": 4, "Fletchley": {"_count": 4}}, "caught": {"_count": 1, "sight": {"_count": 1}}, "were": {"_count": 1, "lying": {"_count": 1}}, "grinning": {"_count": 1, "expecting": {"_count": 1}}, "looking": {"_count": 1, "relieved": {"_count": 1}}, "had": {"_count": 1, "turned": {"_count": 1}}, "Oh": {"_count": 1, "thats": {"_count": 1}}, "panicked": {"_count": 1, "you": {"_count": 1}}, "doesnt": {"_count": 1, "have": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "if": {"_count": 1, "its": {"_count": 1}}, "might": {"_count": 2, "be": {"_count": 2}}, "was": {"_count": 3, "among": {"_count": 1}, "in": {"_count": 1}, "carried": {"_count": 1}}, "to": {"_count": 1, "hide": {"_count": 1}}, "actually": {"_count": 1, "told": {"_count": 1}}, "and": {"_count": 6, "Nearly": {"_count": 5}, "Hermione": {"_count": 1}}, "mustve": {"_count": 1, "seen": {"_count": 1}}, "hurrying": {"_count": 1, "over": {"_count": 1}}, "FinchFletchleys": {"_count": 1, "wand": {"_count": 1}}, "Page": {"_count": 1, "llOOHarry": {"_count": 1}}, "hoisted": {"_count": 1, "them": {"_count": 1}}}, "Finnigan": {"_count": 40, "Seamus": {"_count": 1, "the": {"_count": 1}}, "interrupted": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 1, "eagerly": {"_count": 1}}, "told": {"_count": 1, "it": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "had": {"_count": 3, "lent": {"_count": 1}, "reached": {"_count": 1}, "no": {"_count": 1}}, "Dean": {"_count": 2, "Thomas": {"_count": 2}}, "and": {"_count": 5, "Dean": {"_count": 4}, "Hannah": {"_count": 1}}, "couldnt": {"_count": 1, "control": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 1, "tilting": {"_count": 1}}, "leaning": {"_count": 1, "over": {"_count": 1}}, "eyed": {"_count": 1, "the": {"_count": 1}}, "angrily": {"_count": 1, "to": {"_count": 1}}, "roared": {"_count": 1, "at": {"_count": 1}}, "gloomily": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "fellow": {"_count": 1}}, "sounding": {"_count": 1, "revolted": {"_count": 1}}, "pus": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "leaning": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "kindly": {"_count": 1, "come": {"_count": 1}}, "slamming": {"_count": 1, "his": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "whom": {"_count": 1, "Harry": {"_count": 1}}}, "Seamus": {"_count": 166, "the": {"_count": 1, "sandyhaired": {"_count": 1}}, "Finnigan": {"_count": 32, "interrupted": {"_count": 1}, "asked": {"_count": 1}, "told": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 3}, "had": {"_count": 2}, "Dean": {"_count": 2}, "and": {"_count": 5}, "couldnt": {"_count": 1}, "if": {"_count": 1}, "who": {"_count": 1}, "was": {"_count": 1}, "leaning": {"_count": 1}, "eyed": {"_count": 1}, "angrily": {"_count": 1}, "roared": {"_count": 1}, "gloomily": {"_count": 1}, "their": {"_count": 1}, "sounding": {"_count": 1}, "said": {"_count": 1}, "staring": {"_count": 1}, "slamming": {"_count": 1}, "on": {"_count": 1}, "whom": {"_count": 1}}, "with": {"_count": 1, "great": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 16}, "!": {"_count": 1}, "?": {"_count": 1}}, "winked": {"_count": 1, "": {"_count": 1}}, "falling": {"_count": 1, "asleep": {"_count": 1}}, "swished": {"_count": 1, "and": {"_count": 1}}, "got": {"_count": 2, "so": {"_count": 1}, "out": {"_count": 1}}, "said": {"_count": 5, "Harry": {"_count": 1}, "Parvati": {"_count": 1}, "Look": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}}, "pile": {"_count": 1, "ketchup": {"_count": 1}}, "and": {"_count": 14, "Dean": {"_count": 9}, "Snape": {"_count": 1}, "Neville": {"_count": 2}, "he": {"_count": 1}, "it": {"_count": 1}}, "whispered": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 6, "stopped": {"_count": 2}, "left": {"_count": 1}, "pinned": {"_count": 1}, "opened": {"_count": 1}, "only": {"_count": 1}}, "choked": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "apologizing": {"_count": 1, "for": {"_count": 1}}, "came": {"_count": 2, "in": {"_count": 2}}, "who": {"_count": 7, "looked": {"_count": 1}, "were": {"_count": 1}, "was": {"_count": 3}, "in": {"_count": 1}, "had": {"_count": 1}}, "darted": {"_count": 1, "past": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "Finnigans": {"_count": 1, "voice": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 6, "still": {"_count": 1}, "and": {"_count": 1}, "feverishly": {"_count": 1}, "shoveling": {"_count": 1}, "lying": {"_count": 1}, "not": {"_count": 1}}, "were": {"_count": 6, "already": {"_count": 1}, "still": {"_count": 1}, "not": {"_count": 1}, "listening": {"_count": 1}, "all": {"_count": 1}, "muttering": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "contemptuously": {"_count": 1, "": {"_count": 1}}, "causing": {"_count": 1, "several": {"_count": 1}}, "instead": {"_count": 1, "leaving": {"_count": 1}}, "Dean": {"_count": 4, "and": {"_count": 3}, "or": {"_count": 1}}, "asked": {"_count": 1, "sleepily": {"_count": 1}}, "spotting": {"_count": 1, "the": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "turned": {"_count": 1, "away": {"_count": 1}}, "again": {"_count": 1, "still": {"_count": 1}}, "looked": {"_count": 4, "up": {"_count": 2}, "for": {"_count": 1}, "halfscared": {"_count": 1}}, "sounded": {"_count": 1, "nervous": {"_count": 1}}, "to": {"_count": 2, "Seamus": {"_count": 1}, "waste": {"_count": 1}}, "yelled": {"_count": 1, "": {"_count": 1}}, "heatedly": {"_count": 1, "casting": {"_count": 1}}, "in": {"_count": 1, "disgust": {"_count": 1}}, "then": {"_count": 1, "looked": {"_count": 1}}, "snapped": {"_count": 1, "at": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "dressed": {"_count": 1, "at": {"_count": 1}}, "reckons": {"_count": 1, "Harrys": {"_count": 1}}, "as": {"_count": 1, "Hermione": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "handed": {"_count": 1, "back": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "stepped": {"_count": 1, "out": {"_count": 1}}, "clattered": {"_count": 1, "around": {"_count": 1}}, "for": {"_count": 1, "lunch": {"_count": 1}}, "grinned": {"_count": 1, "appreciatively": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "alone": {"_count": 1, "together": {"_count": 1}}, "clicked": {"_count": 1, "his": {"_count": 1}}, "after": {"_count": 1, "Professor": {"_count": 1}}, "lines": {"_count": 1, "I": {"_count": 1}}, "having": {"_count": 1, "just": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "told": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 1, "worse": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "just": {"_count": 1}}}, "sandyhaired": {"_count": 3, "boy": {"_count": 1, "next": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "woman": {"_count": 1, "who": {"_count": 1}}}, "declared": {"_count": 3, "him": {"_count": 1, "a": {"_count": 1}}, "themselves": {"_count": 1, "present": {"_count": 1}}, "the": {"_count": 1, "Prime": {"_count": 1}}}, "jammed": {"_count": 15, "the": {"_count": 1, "hat": {"_count": 1}}, "together": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "students": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "onto": {"_count": 1}}, "tightly": {"_count": 1, "in": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "up": {"_count": 1, "her": {"_count": 1}}, "inside": {"_count": 2, "a": {"_count": 1}, "again": {"_count": 1}}, "a": {"_count": 1, "door": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "GRYFFINDOR": {"_count": 10, "": {"_count": 7, "!": {"_count": 7}}, "Neville": {"_count": 1, "ran": {"_count": 1}}, "VERSUS": {"_count": 1, "RAVENCLAW": {"_count": 1}}, "SCORE": {"_count": 1, "": {"_count": 1}}}, "thoughts": {"_count": 93, "always": {"_count": 1, "do": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 1}, "drifted": {"_count": 1}, "suddenly": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 4, "Gryffindor": {"_count": 1}, "what": {"_count": 2}, "this": {"_count": 1}}, "wandered": {"_count": 1, "back": {"_count": 1}}, "of": {"_count": 3, "what": {"_count": 1}, "MadEye": {"_count": 1}, "their": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 12}, "?": {"_count": 2}}, "started": {"_count": 1, "chasing": {"_count": 1}}, "and": {"_count": 12, "memories": {"_count": 3}, "emotions": {"_count": 1}, "feelings": {"_count": 3}, "placing": {"_count": 1}, "I": {"_count": 1}, "then": {"_count": 1}, "tried": {"_count": 1}, "he": {"_count": 1}}, "from": {"_count": 1, "ones": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "wanted": {"_count": 1}}, "inside": {"_count": 1, "began": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}, "that": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "whirled": {"_count": 2, "around": {"_count": 1}, "through": {"_count": 1}}, "were": {"_count": 3, "still": {"_count": 1}, "all": {"_count": 1}, "interrupted": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "without": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "Im": {"_count": 1, "sharing": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "moods": {"_count": 1}}, "before": {"_count": 1, "starting": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "swirl": {"_count": 1, "and": {"_count": 1}}, "could": {"_count": 2, "leave": {"_count": 1}, "not": {"_count": 1}}, "strayed": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 3, "himself": {"_count": 1}, "stray": {"_count": 1}, "find": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "Celestina": {"_count": 1, "Warbeck": {"_count": 1}}, "precisely": {"_count": 1, "said": {"_count": 1}}, "his": {"_count": 1, "ambitions": {"_count": 1}}, "slunk": {"_count": 1, "into": {"_count": 1}}, "but": {"_count": 2, "Harry": {"_count": 1}, "Lupin": {"_count": 1}}, "too": {"_count": 1, "unwieldy": {"_count": 1}}, "go": {"_count": 1, "with": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "company": {"_count": 1}}, "dwelled": {"_count": 1, "as": {"_count": 1}}, "because": {"_count": 1, "for": {"_count": 1}}, "turned": {"_count": 1, "again": {"_count": 1}}, "pulling": {"_count": 1, "himself": {"_count": 1}}, "It": {"_count": 1, "had": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}, "northward": {"_count": 1, "and": {"_count": 1}}, "buzzed": {"_count": 1, "as": {"_count": 1}}, "pattered": {"_count": 1, "against": {"_count": 1}}}, "ages": {"_count": 57, "until": {"_count": 1, "Professor": {"_count": 1}}, "ago": {"_count": 10, "": {"_count": 7}, "said": {"_count": 1}, "Professor": {"_count": 1}, "Who": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 14}, "!": {"_count": 3}}, "I": {"_count": 1, "think": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "whatre": {"_count": 1}}, "thats": {"_count": 1, "like": {"_count": 1}}, "past": {"_count": 1, "so": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "find": {"_count": 1}}, "Professor": {"_count": 1, "Harry": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "but": {"_count": 4, "Harry": {"_count": 1}, "we": {"_count": 1}, "they": {"_count": 1}, "whenever": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "and": {"_count": 1}, "now": {"_count": 1}}, "reading": {"_count": 1, "up": {"_count": 1}}, "right": {"_count": 1, "Twelve": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "stuffs": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 1, "you": {"_count": 1}}, "havent": {"_count": 1, "you": {"_count": 1}}, "But": {"_count": 1, "why": {"_count": 1}}, "started": {"_count": 1, "around": {"_count": 1}}, "outside": {"_count": 1, "it": {"_count": 1}}, "father": {"_count": 1, "to": {"_count": 1}}}, "Longbottom": {"_count": 85, "the": {"_count": 1, "boy": {"_count": 1}}, "": {"_count": 19, "?": {"_count": 8}, ".": {"_count": 10}, "!": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "if": {"_count": 1, "brains": {"_count": 1}}, "here": {"_count": 1, "heard": {"_count": 1}}, "nothing": {"_count": 1, "gives": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "hes": {"_count": 1, "pureblood": {"_count": 1}}, "bought": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 6, "FinchFletchley": {"_count": 1}, "deposited": {"_count": 1}, "subjecting": {"_count": 1}, "Miss": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "causes": {"_count": 1, "devastation": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "gave": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 1}, "Snape": {"_count": 1}, "Professor": {"_count": 2}}, "Ern": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "roundfaced": {"_count": 1}, "round": {"_count": 1}}, "telling": {"_count": 1, "the": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "pleading": {"_count": 1, "with": {"_count": 1}}, "trembling": {"_count": 1, "from": {"_count": 1}}, "seemed": {"_count": 1, "close": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "kindly": {"_count": 1, "do": {"_count": 1}}, "have": {"_count": 1, "set": {"_count": 1}}, "boy": {"_count": 1, "dont": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "Harrys": {"_count": 2, "stomach": {"_count": 1}, "fellow": {"_count": 1}}, "he": {"_count": 1, "knew": {"_count": 1}}, "Luna": {"_count": 2, "Lovegood": {"_count": 2}}, "Potter": {"_count": 2, "or": {"_count": 1}, "and": {"_count": 1}}, "can": {"_count": 1, "you": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "continued": {"_count": 1, "proffering": {"_count": 1}}, "knew": {"_count": 1, "her": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "sounding": {"_count": 1, "slightly": {"_count": 1}}, "drawing": {"_count": 1, "on": {"_count": 1}}, "suffocates": {"_count": 1, "it": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "lasts": {"_count": 1, "before": {"_count": 1}}, "My": {"_count": 1, "grandson": {"_count": 1}}, "was": {"_count": 1, "there": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 2, "an": {"_count": 1}, "I": {"_count": 1}}, "my": {"_count": 1, "Lord": {"_count": 1}}, "we": {"_count": 1, "revert": {"_count": 1}}}, "jog": {"_count": 6, "back": {"_count": 1, "amid": {"_count": 1}}, "to": {"_count": 2, "keep": {"_count": 2}}, "Ron": {"_count": 1, "back": {"_count": 1}}, "along": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "neat": {"_count": 1}}}, "amid": {"_count": 14, "gales": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 5, "glossy": {"_count": 1}, "light": {"_count": 1}, "cheering": {"_count": 1}, "torrent": {"_count": 1}, "frozen": {"_count": 1}}, "decorations": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 4, "cloud": {"_count": 1}, "pile": {"_count": 1}, "mass": {"_count": 1}, "crowd": {"_count": 1}}, "hearty": {"_count": 1, "sniggers": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "fresh": {"_count": 1, "shrieks": {"_count": 1}}}, "gales": {"_count": 2, "of": {"_count": 2, "laughter": {"_count": 2}}}, "laughter": {"_count": 150, "to": {"_count": 2, "give": {"_count": 1}, "Dudleys": {"_count": 1}}, "": {"_count": 61, ".": {"_count": 61}}, "at": {"_count": 9, "Malfoys": {"_count": 1}, "the": {"_count": 4}, "this": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}, "some": {"_count": 1}}, "but": {"_count": 2, "Ron": {"_count": 1}, "even": {"_count": 1}}, "and": {"_count": 18, "Harry": {"_count": 2}, "the": {"_count": 3}, "had": {"_count": 1}, "drunken": {"_count": 1}, "a": {"_count": 2}, "an": {"_count": 1}, "excitement": {"_count": 1}, "splashes": {"_count": 1}, "of": {"_count": 1}, "applause": {"_count": 1}, "Neville": {"_count": 1}, "pop": {"_count": 1}, "instead": {"_count": 1}, "after": {"_count": 1}}, "that": {"_count": 5, "even": {"_count": 1}, "rang": {"_count": 1}, "turned": {"_count": 1}, "made": {"_count": 1}, "night": {"_count": 1}}, "from": {"_count": 5, "the": {"_count": 3}, "his": {"_count": 1}, "around": {"_count": 1}}, "as": {"_count": 6, "they": {"_count": 3}, "Percy": {"_count": 1}, "Crabbe": {"_count": 1}, "boys": {"_count": 1}}, "followed": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "boggart": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "Malfoyl": {"_count": 1, "Wait": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "looked": {"_count": 1}, "hissed": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "snatches": {"_count": 1, "of": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "died": {"_count": 2, "away": {"_count": 1}, "at": {"_count": 1}}, "reached": {"_count": 1, "Harrys": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "was": {"_count": 5, "becoming": {"_count": 1}, "growing": {"_count": 1}, "ringing": {"_count": 1}, "punctuated": {"_count": 1}, "coming": {"_count": 1}}, "then": {"_count": 1, "adopted": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "Luna": {"_count": 1}}, "sounded": {"_count": 1, "behind": {"_count": 1}}, "still": {"_count": 1, "ringing": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "indeed": {"_count": 1, "her": {"_count": 1}}, "Hermione": {"_count": 1, "actually": {"_count": 1}}, "continued": {"_count": 1, "": {"_count": 1}}, "echoing": {"_count": 2, "around": {"_count": 2}}, "had": {"_count": 2, "not": {"_count": 1}, "died": {"_count": 1}}, "he": {"_count": 1, "clambered": {"_count": 1}}, "issuing": {"_count": 1, "from": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "music": {"_count": 1, "and": {"_count": 1}}, "instantly": {"_count": 1, "quelled": {"_count": 1}}}, "MacDougal": {"_count": 1, "Morag": {"_count": 1, "": {"_count": 1}}}, "Morag": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "swaggered": {"_count": 2, "forward": {"_count": 1, "when": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "barely": {"_count": 170, "touched": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "more": {"_count": 4, "than": {"_count": 4}}, "whipped": {"_count": 1, "round": {"_count": 1}}, "had": {"_count": 9, "time": {"_count": 8}, "emotion": {"_count": 1}}, "lasted": {"_count": 1, "five": {"_count": 1}}, "came": {"_count": 1, "up": {"_count": 1}}, "grinned": {"_count": 1, "once": {"_count": 1}}, "set": {"_count": 1, "foot": {"_count": 1}}, "turned": {"_count": 1, "around": {"_count": 1}}, "an": {"_count": 4, "inch": {"_count": 3}, "hour": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "inclined": {"_count": 1, "their": {"_count": 1}}, "move": {"_count": 1, "for": {"_count": 1}}, "noticing": {"_count": 3, "where": {"_count": 1}, "": {"_count": 1}, "what": {"_count": 1}}, "finished": {"_count": 1, "their": {"_count": 1}}, "left": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 9, "face": {"_count": 1}, "week": {"_count": 1}, "second": {"_count": 2}, "dozen": {"_count": 1}, "foot": {"_count": 1}, "page": {"_count": 1}, "seconds": {"_count": 1}, "ripple": {"_count": 1}}, "visible": {"_count": 4, "in": {"_count": 2}, "behind": {"_count": 1}, "over": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "alive": {"_count": 2, "": {"_count": 2}}, "feet": {"_count": 2, "from": {"_count": 2}}, "recognizable": {"_count": 2, "": {"_count": 2}}, "glimpsed": {"_count": 2, "the": {"_count": 1}, "todays": {"_count": 1}}, "talked": {"_count": 1, "to": {"_count": 1}}, "opening": {"_count": 2, "his": {"_count": 2}}, "spoke": {"_count": 3, "to": {"_count": 2}, "during": {"_count": 1}}, "ten": {"_count": 2, "feet": {"_count": 1}, "minutes": {"_count": 1}}, "audible": {"_count": 4, "now": {"_count": 1}, "over": {"_count": 2}, "her": {"_count": 1}}, "lain": {"_count": 1, "down": {"_count": 1}}, "older": {"_count": 1, "than": {"_count": 1}}, "heard": {"_count": 2, "over": {"_count": 1}, "them": {"_count": 1}}, "moving": {"_count": 4, "his": {"_count": 3}, "at": {"_count": 1}}, "to": {"_count": 1, "bend": {"_count": 1}}, "twenty": {"_count": 1, "additional": {"_count": 1}}, "worth": {"_count": 1, "his": {"_count": 1}}, "noticed": {"_count": 2, "where": {"_count": 1}, "that": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "controlled": {"_count": 1, "panic": {"_count": 1}}, "slept": {"_count": 1, "that": {"_count": 1}}, "begun": {"_count": 1, "to": {"_count": 1}}, "distinguishable": {"_count": 1, "": {"_count": 1}}, "tickled": {"_count": 1, "her": {"_count": 1}}, "These": {"_count": 1, "names": {"_count": 1}}, "staggered": {"_count": 1, "upright": {"_count": 1}}, "hear": {"_count": 1, "him": {"_count": 1}}, "walk": {"_count": 1, "under": {"_count": 1}}, "room": {"_count": 1, "to": {"_count": 1}}, "started": {"_count": 1, "The": {"_count": 1}}, "concealing": {"_count": 2, "grins": {"_count": 1}, "his": {"_count": 1}}, "reached": {"_count": 6, "the": {"_count": 3}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}, "for": {"_count": 1}}, "aware": {"_count": 2, "of": {"_count": 1}, "that": {"_count": 1}}, "three": {"_count": 2, "minutes": {"_count": 1}, "feet": {"_count": 1}}, "cleared": {"_count": 1, "the": {"_count": 1}}, "healed": {"_count": 1, "and": {"_count": 1}}, "keeping": {"_count": 1, "up": {"_count": 1}}, "taken": {"_count": 3, "their": {"_count": 1}, "plates": {"_count": 1}, "three": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "listening": {"_count": 3, "": {"_count": 1}, "to": {"_count": 2}}, "recognized": {"_count": 1, "him": {"_count": 1}}, "hidden": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "containing": {"_count": 1, "his": {"_count": 1}}, "flapping": {"_count": 1, "its": {"_count": 1}}, "supported": {"_count": 1, "him": {"_count": 1}}, "touching": {"_count": 1, "the": {"_count": 1}}, "understanding": {"_count": 1, "what": {"_count": 1}}, "louder": {"_count": 2, "than": {"_count": 2}}, "resumed": {"_count": 1, "his": {"_count": 1}}, "flinched": {"_count": 1, "as": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "saw": {"_count": 1, "it": {"_count": 1}}, "knew": {"_count": 1, "each": {"_count": 1}}, "nine": {"_count": 1, "theres": {"_count": 1}}, "scratched": {"_count": 1, "the": {"_count": 1}}, "connected": {"_count": 2, "head": {"_count": 1}, "halves": {"_count": 1}}, "understood": {"_count": 1, "half": {"_count": 1}}, "glanced": {"_count": 1, "up": {"_count": 1}}, "stirring": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "registered": {"_count": 1, "the": {"_count": 1}}, "aim": {"_count": 1, "": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "missing": {"_count": 1, "us": {"_count": 1}}, "repressed": {"_count": 1, "a": {"_count": 1}}, "known": {"_count": 1, "him": {"_count": 1}}, "conscious": {"_count": 3, "of": {"_count": 1}, "kept": {"_count": 1}, "": {"_count": 1}}, "holding": {"_count": 1, "them": {"_count": 1}}, "maintaining": {"_count": 1, "his": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "of": {"_count": 1, "age": {"_count": 1}}, "cut": {"_count": 1, "his": {"_count": 1}}, "read": {"_count": 1, "them": {"_count": 1}}, "made": {"_count": 1, "it": {"_count": 1}}, "talk": {"_count": 1, "to": {"_count": 1}}, "seven": {"_count": 1, "years": {"_count": 1}}, "joined": {"_count": 1, "the": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "level": {"_count": 1, "with": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "breathe": {"_count": 3, "or": {"_count": 1}, "Could": {"_count": 1}, "": {"_count": 1}}, "see": {"_count": 3, "his": {"_count": 1}, "would": {"_count": 1}, "out": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "controllable": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 1, "room": {"_count": 1}}, "time": {"_count": 1, "for": {"_count": 1}}, "disturbed": {"_count": 1, "Harry": {"_count": 1}}}, "SLYTHERIN": {"_count": 4, "": {"_count": 3, "!": {"_count": 3}}, "He": {"_count": 1, "was": {"_count": 1}}}, "Moon": {"_count": 2, "Nott": {"_count": 1, "": {"_count": 1}}, "stars": {"_count": 1, "and": {"_count": 1}}}, "Nott": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}, "Crabbe": {"_count": 1, "Goyle": {"_count": 1}}, "leave": {"_count": 1, "him": {"_count": 1}}, "didnt": {"_count": 1, "get": {"_count": 1}}, "and": {"_count": 1, "whisper": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "Rosier": {"_count": 1, "Mulciber": {"_count": 1}}}, "Parkinson": {"_count": 43, "": {"_count": 7, ".": {"_count": 7}}, "a": {"_count": 3, "hardfaced": {"_count": 1}, "Slytherin": {"_count": 1}, "pretty": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 5, "her": {"_count": 1}, "the": {"_count": 2}, "began": {"_count": 1}, "Zabini": {"_count": 1}}, "had": {"_count": 2, "shrieked": {"_count": 1}, "to": {"_count": 1}}, "in": {"_count": 2, "very": {"_count": 1}, "fits": {"_count": 1}}, "gaped": {"_count": 1, "at": {"_count": 1}}, "was": {"_count": 4, "whispering": {"_count": 1}, "listening": {"_count": 1}, "watching": {"_count": 1}, "pushing": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Professor": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "guffawed": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "below": {"_count": 1}}, "shrieked": {"_count": 1, "with": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "were": {"_count": 1, "having": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "collapsed": {"_count": 1, "in": {"_count": 1}}, "can": {"_count": 1, "do": {"_count": 1}}, "ran": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 1, "Hermiones": {"_count": 1}}, "Pansy": {"_count": 1, "Patil": {"_count": 1}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}}, "Path": {"_count": 2, "and": {"_count": 1, "Path": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Perks": {"_count": 1, "Sally": {"_count": 1, "Anne": {"_count": 1}}}, "Sally": {"_count": 1, "Anne": {"_count": 1, "": {"_count": 1}}}, "Anne": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "whispers": {"_count": 13, "suddenly": {"_count": 1, "broke": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "followed": {"_count": 1, "him": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}, "with": {"_count": 1, "Harry": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "of": {"_count": 2, "Hey": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "moved": {"_count": 1}}, "and": {"_count": 1, "solicitous": {"_count": 1}}}, "fires": {"_count": 22, "all": {"_count": 2, "over": {"_count": 1}, "week": {"_count": 1}}, "the": {"_count": 1, "drafty": {"_count": 1}}, "to": {"_count": 1, "choose": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "outdoors": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 5, "so": {"_count": 1}, "thick": {"_count": 1}, "mops": {"_count": 1}, "reading": {"_count": 1}, "frisking": {"_count": 1}}, "lit": {"_count": 2, "your": {"_count": 1}, "but": {"_count": 1}}, "are": {"_count": 1, "lit": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "burnin": {"_count": 1, "below": {"_count": 1}}, "an": {"_count": 1, "sleepin": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "or": {"_count": 1, "out": {"_count": 1}}, "burning": {"_count": 1, "under": {"_count": 1}}}, "Hmm": {"_count": 18, "said": {"_count": 7, "a": {"_count": 1}, "Mr": {"_count": 1}, "Sirius": {"_count": 1}, "Mrs": {"_count": 1}, "Professor": {"_count": 2}, "Hermione": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "?": {"_count": 2}}, "lets": {"_count": 1, "think": {"_count": 1}}}, "Difficult": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "dangerous": {"_count": 1}}, "to": {"_count": 1, "know": {"_count": 1}}}, "Plenty": {"_count": 7, "of": {"_count": 5, "courage": {"_count": 1}, "time": {"_count": 1}, "room": {"_count": 1}, "Hogwarts": {"_count": 1}, "them": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}, "plenty": {"_count": 1, "said": {"_count": 1}}}, "talent": {"_count": 17, "oh": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "managed": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "had": {"_count": 1, "wrought": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "ripping": {"_count": 1}}, "to": {"_count": 1, "win": {"_count": 1}}, "compared": {"_count": 1, "to": {"_count": 1}}, "today": {"_count": 1, "perhaps": {"_count": 1}}}, "thirst": {"_count": 4, "to": {"_count": 1, "prove": {"_count": 1}}, "for": {"_count": 1, "information": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "prove": {"_count": 36, "yourself": {"_count": 2, "now": {"_count": 1}, "": {"_count": 1}}, "Ive": {"_count": 1, "met": {"_count": 1}}, "it": {"_count": 10, "": {"_count": 3}, "was": {"_count": 2}, "had": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "doesnt": {"_count": 1}, "to": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "she": {"_count": 1, "hadnt": {"_count": 1}}, "Buckbeak": {"_count": 1, "is": {"_count": 1}}, "what": {"_count": 1, "really": {"_count": 1}}, "he": {"_count": 2, "can": {"_count": 1}, "could": {"_count": 1}}, "hes": {"_count": 1, "only": {"_count": 1}}, "my": {"_count": 1, "power": {"_count": 1}}, "myself": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 2, "much": {"_count": 1}, "unwise": {"_count": 1}}, "more": {"_count": 1, "adept": {"_count": 1}}, "an": {"_count": 1, "important": {"_count": 1}}, "himself": {"_count": 2, "excited": {"_count": 1}, "brilliant": {"_count": 1}}, "necessary": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "suspicions": {"_count": 1}}, "who": {"_count": 1, "I": {"_count": 1}}, "theyre": {"_count": 1, "dangerous": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 1, "Hermione": {"_count": 1}}, "Voldemorts": {"_count": 1, "victory": {"_count": 1}}}, "edges": {"_count": 20, "of": {"_count": 14, "the": {"_count": 8}, "his": {"_count": 3}, "their": {"_count": 1}, "Harrys": {"_count": 1}, "doors": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "still": {"_count": 1, "looked": {"_count": 1}}, "each": {"_count": 1, "with": {"_count": 1}}, "disappeared": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}}, "greatness": {"_count": 5, "no": {"_count": 2, "doubt": {"_count": 2}}, "sir": {"_count": 1, "but": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "heart": {"_count": 1}}}, "doubt": {"_count": 107, "about": {"_count": 5, "that": {"_count": 2}, "it": {"_count": 1}, "where": {"_count": 1}, "his": {"_count": 1}}, "that": {"_count": 21, "Fluffy": {"_count": 1}, "flea": {"_count": 1}, "said": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 2}, "Professor": {"_count": 1}, "it": {"_count": 4}, "speech": {"_count": 1}, "the": {"_count": 2}, "Mrs": {"_count": 1}, "one": {"_count": 1}, "Dumbledore": {"_count": 2}, "Riddle": {"_count": 1}, "Skeeter": {"_count": 1}, "I": {"_count": 1}}, "they": {"_count": 1, "thought": {"_count": 1}}, "by": {"_count": 1, "Malfoys": {"_count": 1}}, "go": {"_count": 1, "to": {"_count": 1}}, "carrying": {"_count": 1, "Ron": {"_count": 1}}, "resurfacing": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 7, "has": {"_count": 1}, "was": {"_count": 1}, "will": {"_count": 1}, "knows": {"_count": 1}, "invented": {"_count": 1}, "can": {"_count": 1}, "thought": {"_count": 1}}, "why": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "knowing": {"_count": 1}, "fear": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}}, "it": {"_count": 9, "will": {"_count": 1}, "said": {"_count": 3}, "shouted": {"_count": 1}, "was": {"_count": 1}, "to": {"_count": 1}, "if": {"_count": 1}, "would": {"_count": 1}}, "asking": {"_count": 1, "Malfoy": {"_count": 1}}, "whether": {"_count": 4, "any": {"_count": 1}, "YouKnowWho": {"_count": 1}, "even": {"_count": 1}, "there": {"_count": 1}}, "the": {"_count": 1, "strangest": {"_count": 1}}, "bearing": {"_count": 1, "Ron": {"_count": 1}}, "to": {"_count": 2, "a": {"_count": 1}, "return": {"_count": 1}}, "barely": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "had": {"_count": 1, "placed": {"_count": 1}}, "Id": {"_count": 1, "get": {"_count": 1}}, "you": {"_count": 2, "had": {"_count": 1}, "will": {"_count": 1}}, "hes": {"_count": 1, "going": {"_count": 1}}, "whatsoever": {"_count": 1, "what": {"_count": 1}}, "even": {"_count": 1, "Professor": {"_count": 1}}, "hoping": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "which": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "if": {"_count": 1}}, "Regulus": {"_count": 1, "was": {"_count": 1}}, "You": {"_count": 1, "have": {"_count": 1}}, "her": {"_count": 1, "truthfulness": {"_count": 1}}, "dont": {"_count": 1, "put": {"_count": 1}}, "anyone": {"_count": 1, "except": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "Molly": {"_count": 1, "would": {"_count": 1}}, "be": {"_count": 1, "aware": {"_count": 1}}, "given": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "youd": {"_count": 1, "find": {"_count": 1}}, "banned": {"_count": 1, "or": {"_count": 1}}, "hoped": {"_count": 1, "to": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "a": {"_count": 1, "Confundus": {"_count": 1}}, "werewolves": {"_count": 1, "": {"_count": 1}}, "whom": {"_count": 1, "his": {"_count": 1}}, "Ariana": {"_count": 1, "murdered": {"_count": 1}}, "sitting": {"_count": 1, "right": {"_count": 1}}, "than": {"_count": 1, "it": {"_count": 1}}, "Umbridge": {"_count": 1, "knew": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "Hermiones": {"_count": 1}}, "those": {"_count": 1, "determined": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "its": {"_count": 1, "im": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}}, "shakily": {"_count": 20, "toward": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "looking": {"_count": 1, "round": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 2, "dont": {"_count": 1}, "probably": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}}, "loudest": {"_count": 7, "cheer": {"_count": 1, "yet": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "silences": {"_count": 1, "Harry": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "cackle": {"_count": 1, "yet": {"_count": 1}}, "of": {"_count": 2, "all": {"_count": 2}}}, "earlier": {"_count": 41, "": {"_count": 12, ".": {"_count": 10}, "?": {"_count": 2}}, "that": {"_count": 1, "same": {"_count": 1}}, "than": {"_count": 7, "he": {"_count": 1}, "I": {"_count": 1}, "that": {"_count": 1}, "anyone": {"_count": 1}, "they": {"_count": 2}, "this": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "evening": {"_count": 1}}, "But": {"_count": 1, "Snape": {"_count": 1}}, "had": {"_count": 1, "flown": {"_count": 1}}, "stumbled": {"_count": 1, "forward": {"_count": 1}}, "Potter": {"_count": 2, "she": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "but": {"_count": 1, "dont": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "an": {"_count": 1, "I": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "Harry": {"_count": 1, "heard": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "yelling": {"_count": 1, "at": {"_count": 1}}, "Fragments": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "might": {"_count": 1}}}, "bucket": {"_count": 17, "of": {"_count": 3, "icecold": {"_count": 1}, "leaping": {"_count": 1}, "wine": {"_count": 1}}, "o": {"_count": 1, "brandy": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "looking": {"_count": 1, "desperately": {"_count": 1}}, "pushing": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "were": {"_count": 1, "punctuated": {"_count": 1}}, "gulp": {"_count": 1, "down": {"_count": 1}}, "and": {"_count": 1, "sighed": {"_count": 1}}, "sized": {"_count": 2, "mugs": {"_count": 1}, "glass": {"_count": 1}}}, "icecold": {"_count": 4, "water": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "pumpkin": {"_count": 1, "juice": {"_count": 1}}, "venom": {"_count": 1, "": {"_count": 1}}}, "Table": {"_count": 6, "properly": {"_count": 1, "now": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "full": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "properly": {"_count": 83, "now": {"_count": 2, "": {"_count": 2}}, "": {"_count": 28, ".": {"_count": 24}, "?": {"_count": 1}, "!": {"_count": 3}}, "is": {"_count": 2, "very": {"_count": 1}, "a": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 2, "mean": {"_count": 1}, "was": {"_count": 1}}, "before": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "dry": {"_count": 1, "since": {"_count": 1}}, "the": {"_count": 3, "parcel": {"_count": 1}, "others": {"_count": 1}, "only": {"_count": 1}}, "he": {"_count": 3, "added": {"_count": 1}, "kept": {"_count": 1}, "recognized": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "because": {"_count": 1}}, "they": {"_count": 1, "cant": {"_count": 1}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Hermione": {"_count": 1}}, "these": {"_count": 1, "people": {"_count": 1}}, "it": {"_count": 1, "can": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 2, "being": {"_count": 1}, "anyway": {"_count": 1}}, "Wonder": {"_count": 1, "why": {"_count": 1}}, "by": {"_count": 1, "tomorrow": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "aware": {"_count": 1, "of": {"_count": 1}}, "hungry": {"_count": 1, "and": {"_count": 1}}, "ashamed": {"_count": 1, "of": {"_count": 1}}, "against": {"_count": 1, "each": {"_count": 1}}, "tripping": {"_count": 1, "over": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "alive": {"_count": 1, "again": {"_count": 1}}, "not": {"_count": 1, "just": {"_count": 1}}, "trained": {"_count": 1, "in": {"_count": 1}}, "youd": {"_count": 1, "never": {"_count": 1}}, "from": {"_count": 1, "here": {"_count": 1}}, "since": {"_count": 2, "he": {"_count": 1}, "escaping": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 1}, "me": {"_count": 1}, "you": {"_count": 1}}, "destroyed": {"_count": 1, "the": {"_count": 1}}, "cleaned": {"_count": 1, "in": {"_count": 1}}, "Everything": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "make": {"_count": 1, "them": {"_count": 1}}, "Severus": {"_count": 1, "because": {"_count": 1}}}, "eye": {"_count": 324, "and": {"_count": 29, "gave": {"_count": 1}, "Seamus": {"_count": 1}, "Neville": {"_count": 1}, "tried": {"_count": 1}, "Harry": {"_count": 1}, "bent": {"_count": 1}, "quickly": {"_count": 1}, "nodded": {"_count": 1}, "they": {"_count": 2}, "we": {"_count": 1}, "was": {"_count": 1}, "his": {"_count": 1}, "then": {"_count": 1}, "grinning": {"_count": 2}, "knew": {"_count": 1}, "smirked": {"_count": 1}, "assuring": {"_count": 1}, "opened": {"_count": 1}, "looked": {"_count": 2}, "returned": {"_count": 1}, "grinned": {"_count": 2}, "marked": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}, "fell": {"_count": 1}}, "": {"_count": 49, ".": {"_count": 47}, "?": {"_count": 1}, "!": {"_count": 1}}, "he": {"_count": 7, "saw": {"_count": 3}, "could": {"_count": 1}, "looked": {"_count": 1}, "watched": {"_count": 1}, "nodded": {"_count": 1}}, "contact": {"_count": 11, "and": {"_count": 1}, "with": {"_count": 4}, "now": {"_count": 1}, "being": {"_count": 1}, "": {"_count": 2}, "or": {"_count": 1}, "at": {"_count": 1}}, "on": {"_count": 30, "Snape": {"_count": 2}, "you": {"_count": 4}, "him": {"_count": 6}, "Harry": {"_count": 2}, "his": {"_count": 2}, "the": {"_count": 5}, "Ron": {"_count": 2}, "things": {"_count": 1}, "Mrs": {"_count": 1}, "Malfoy": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harper": {"_count": 1}, "Quirrell": {"_count": 1}, "our": {"_count": 1}}, "said": {"_count": 1, "I": {"_count": 1}}, "by": {"_count": 2, "an": {"_count": 1}, "mistake": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "with": {"_count": 5, "his": {"_count": 1}, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "paste": {"_count": 1}, "a": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "to": {"_count": 6, "eye": {"_count": 3}, "examine": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}}, "not": {"_count": 1, "unlike": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "shall": {"_count": 1, "suffer": {"_count": 1}}, "sockets": {"_count": 3, "of": {"_count": 1}, "see": {"_count": 1}, "Horribly": {"_count": 1}}, "over": {"_count": 2, "Fawkes": {"_count": 1}, "the": {"_count": 1}}, "gave": {"_count": 2, "a": {"_count": 2}}, "at": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 7, "didnt": {"_count": 1}, "saw": {"_count": 3}, "distinctly": {"_count": 1}, "leaned": {"_count": 1}, "seemed": {"_count": 1}}, "of": {"_count": 2, "Madam": {"_count": 1}, "the": {"_count": 1}}, "Angelina": {"_count": 1, "": {"_count": 1}}, "paused": {"_count": 1, "on": {"_count": 1}}, "still": {"_count": 3, "on": {"_count": 1}, "whizzing": {"_count": 2}}, "out": {"_count": 8, "for": {"_count": 6}, "said": {"_count": 1}, "its": {"_count": 1}}, "level": {"_count": 3, "was": {"_count": 1}, "": {"_count": 1}, "an": {"_count": 1}}, "was": {"_count": 22, "moving": {"_count": 1}, "fixed": {"_count": 3}, "still": {"_count": 2}, "looking": {"_count": 1}, "magical": {"_count": 1}, "dancing": {"_count": 1}, "drooping": {"_count": 1}, "upon": {"_count": 3}, "bulging": {"_count": 1}, "talking": {"_count": 1}, "now": {"_count": 1}, "rolling": {"_count": 1}, "magnified": {"_count": 1}, "evidently": {"_count": 1}, "spinning": {"_count": 1}, "gleaming": {"_count": 1}, "gazing": {"_count": 1}}, "sees": {"_count": 1, "past": {"_count": 1}}, "whether": {"_count": 1, "magical": {"_count": 1}}, "moving": {"_count": 1, "steadily": {"_count": 1}}, "swiveled": {"_count": 4, "around": {"_count": 2}, "onto": {"_count": 1}, "upward": {"_count": 1}}, "spun": {"_count": 1, "around": {"_count": 1}}, "could": {"_count": 2, "see": {"_count": 1}, "not": {"_count": 1}}, "rolling": {"_count": 1, "right": {"_count": 1}}, "swooping": {"_count": 1, "down": {"_count": 1}}, "upon": {"_count": 4, "Harry": {"_count": 1}, "Snape": {"_count": 1}, "him": {"_count": 2}}, "quivered": {"_count": 2, "slightly": {"_count": 1}, "as": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "swiveling": {"_count": 2, "onto": {"_count": 1}, "around": {"_count": 1}}, "glaring": {"_count": 1, "unblinkingly": {"_count": 1}}, "fixed": {"_count": 3, "upon": {"_count": 3}}, "I": {"_count": 1, "mean": {"_count": 1}}, "barely": {"_count": 1, "moving": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "staring": {"_count": 3, "through": {"_count": 1}, "sideways": {"_count": 1}, "hard": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "Hagrid": {"_count": 1, "has": {"_count": 1}}, "travel": {"_count": 1, "over": {"_count": 1}}, "Dumbledore": {"_count": 1, "happens": {"_count": 1}}, "going": {"_count": 2, "haywire": {"_count": 2}}, "whizzed": {"_count": 2, "over": {"_count": 1}, "around": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "roved": {"_count": 1, "back": {"_count": 1}}, "flashed": {"_count": 1, "at": {"_count": 1}}, "followed": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 4, "two": {"_count": 1}, "Dumbledore": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "swung": {"_count": 1, "around": {"_count": 1}}, "had": {"_count": 4, "now": {"_count": 1}, "followed": {"_count": 1}, "been": {"_count": 1}, "looked": {"_count": 1}}, "looked": {"_count": 1, "empty": {"_count": 1}}, "replaced": {"_count": 1, "it": {"_count": 1}}, "were": {"_count": 1, "lying": {"_count": 1}}, "back": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "that": {"_count": 4, "could": {"_count": 1}, "was": {"_count": 3}}, "spinning": {"_count": 3, "in": {"_count": 2}, "away": {"_count": 1}}, "remained": {"_count": 1, "pointing": {"_count": 1}}, "it": {"_count": 1, "keeps": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 2}}, "scanning": {"_count": 1, "the": {"_count": 1}}, "flattening": {"_count": 1, "his": {"_count": 1}}, "or": {"_count": 1, "Madam": {"_count": 1}}, "authority": {"_count": 1, "figures": {"_count": 1}}, "than": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 5, "frog": {"_count": 1}, "occupant": {"_count": 1}, "portrait": {"_count": 1}, "last": {"_count": 1}, "expression": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 2}, "she": {"_count": 1}}, "rested": {"_count": 1, "upon": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "she": {"_count": 1, "gave": {"_count": 1}}, "walking": {"_count": 1, "into": {"_count": 1}}, "Rons": {"_count": 1, "lip": {"_count": 1}}, "Granger": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "Scrimgeour": {"_count": 1, "squinting": {"_count": 1}}, "imploded": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "for": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "instead": {"_count": 1, "exchanging": {"_count": 1}}, "his": {"_count": 1, "black": {"_count": 1}}, "reflected": {"_count": 1, "back": {"_count": 1}}, "looking": {"_count": 1, "back": {"_count": 1}}, "whizzing": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 2, "quivering": {"_count": 1}, "": {"_count": 1}}, "swerved": {"_count": 1, "sideways": {"_count": 1}}, "glistened": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "telescopic": {"_count": 1}}, "its": {"_count": 1, "pupil": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "panic": {"_count": 1, "made": {"_count": 1}}, "dark": {"_count": 1, "and": {"_count": 1}}, "moved": {"_count": 1, "again": {"_count": 1}}, "blinked": {"_count": 1, "and": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "living": {"_count": 1, "and": {"_count": 1}}}, "thumbs": {"_count": 8, "up": {"_count": 2, "": {"_count": 2}}, "watching": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "staring": {"_count": 1}, "fidgeted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}}, "center": {"_count": 53, "of": {"_count": 35, "the": {"_count": 26}, "attention": {"_count": 3}, "things": {"_count": 1}, "London": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "which": {"_count": 1}, "them": {"_count": 1}}, "watching": {"_count": 1, "Mr": {"_count": 1}}, "slightly": {"_count": 1, "ahead": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "great": {"_count": 1, "bubbles": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 1, "George": {"_count": 1}}, "pages": {"_count": 1, "Hermione": {"_count": 1}}, "position": {"_count": 1, "until": {"_count": 1}}, "hoop": {"_count": 1, "at": {"_count": 1}}, "making": {"_count": 1, "introductions": {"_count": 1}}, "Including": {"_count": 1, "you": {"_count": 1}}, "cleared": {"_count": 1, "her": {"_count": 1}}, "casting": {"_count": 1, "the": {"_count": 1}}, "sat": {"_count": 1, "in": {"_count": 1}}}, "turban": {"_count": 16, "": {"_count": 5, ".": {"_count": 5}}, "was": {"_count": 1, "talking": {"_count": 1}}, "straight": {"_count": 1, "into": {"_count": 1}}, "which": {"_count": 1, "kept": {"_count": 1}}, "he": {"_count": 2, "didnt": {"_count": 1}, "told": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "askew": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "fell": {"_count": 1, "away": {"_count": 1}}, "Hermione": {"_count": 1, "screamed": {"_count": 1}}, "of": {"_count": 1, "bandages": {"_count": 1}}}, "Thomas": {"_count": 47, "Dean": {"_count": 1, "a": {"_count": 1}}, "who": {"_count": 7, "shared": {"_count": 1}, "were": {"_count": 2}, "had": {"_count": 1}, "like": {"_count": 1}, "was": {"_count": 2}}, "was": {"_count": 1, "yelling": {"_count": 1}}, "and": {"_count": 4, "Neville": {"_count": 2}, "Seamus": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 2, "Professor": {"_count": 1}, "believe": {"_count": 1}}, "beckoned": {"_count": 1, "them": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "fellow": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "shrugged": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 3}, "?": {"_count": 2}, "!": {"_count": 1}}, "in": {"_count": 2, "amazement": {"_count": 1}, "an": {"_count": 1}}, "boldly": {"_count": 1, "and": {"_count": 1}}, "lit": {"_count": 1, "his": {"_count": 1}}, "hopefully": {"_count": 1, "": {"_count": 1}}, "also": {"_count": 1, "of": {"_count": 1}}, "after": {"_count": 2, "about": {"_count": 1}, "Transfiguration": {"_count": 1}}, "hopped": {"_count": 1, "three": {"_count": 1}}, "indignantly": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "curls": {"_count": 1}}, "angrily": {"_count": 1, "he": {"_count": 1}}, "hotly": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "how": {"_count": 1, "do": {"_count": 1}}, "eagerly": {"_count": 1, "and": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "roaring": {"_count": 1, "with": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "holding": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 1, "fellow": {"_count": 1}}}, "Dean": {"_count": 204, "a": {"_count": 1, "Black": {"_count": 1}}, "Thomas": {"_count": 42, "who": {"_count": 7}, "was": {"_count": 1}, "and": {"_count": 4}, "but": {"_count": 1}, "beckoned": {"_count": 1}, "loudly": {"_count": 1}, "his": {"_count": 1}, "at": {"_count": 1}, "shrugged": {"_count": 1}, "": {"_count": 4}, "in": {"_count": 2}, "boldly": {"_count": 1}, "lit": {"_count": 1}, "hopefully": {"_count": 1}, "also": {"_count": 1}, "after": {"_count": 2}, "hopped": {"_count": 1}, "indignantly": {"_count": 1}, "angrily": {"_count": 1}, "hotly": {"_count": 1}, "if": {"_count": 1}, "how": {"_count": 1}, "eagerly": {"_count": 1}, "would": {"_count": 1}, "roaring": {"_count": 1}, "because": {"_count": 1}, "holding": {"_count": 1}, "their": {"_count": 1}}, "and": {"_count": 39, "Seamus": {"_count": 22}, "Neville": {"_count": 6}, "Lavender": {"_count": 1}, "Ginny": {"_count": 2}, "Ron": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 1}, "Griphook": {"_count": 2}, "Mr": {"_count": 1}, "Ollivander": {"_count": 1}, "Luna": {"_count": 1}}, "the": {"_count": 1, "West": {"_count": 1}}, "who": {"_count": 9, "was": {"_count": 2}, "were": {"_count": 1}, "had": {"_count": 4}, "seemed": {"_count": 1}, "hailed": {"_count": 1}}, "": {"_count": 31, "?": {"_count": 2}, ".": {"_count": 25}, "!": {"_count": 4}}, "furiously": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "reminded": {"_count": 1}}, "swore": {"_count": 1, "loudly": {"_count": 1}}, "hung": {"_count": 1, "onto": {"_count": 1}}, "bringing": {"_count": 1, "up": {"_count": 1}}, "said": {"_count": 3, "Professor": {"_count": 1}, "Ginny": {"_count": 2}}, "hurried": {"_count": 1, "forward": {"_count": 1}}, "waving": {"_count": 2, "his": {"_count": 1}, "at": {"_count": 1}}, "had": {"_count": 5, "tacked": {"_count": 1}, "paired": {"_count": 1}, "arrived": {"_count": 1}, "outflown": {"_count": 1}, "won": {"_count": 1}}, "angrily": {"_count": 1, "showing": {"_count": 1}}, "told": {"_count": 1, "Harry": {"_count": 1}}, "shrugging": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "into": {"_count": 1}}, "muttered": {"_count": 1, "hoisting": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "Thomass": {"_count": 1, "cauldron": {"_count": 1}}, "narrowly": {"_count": 1, "avoiding": {"_count": 1}}, "staring": {"_count": 1, "around": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "whom": {"_count": 1}}, "Seamus": {"_count": 2, "and": {"_count": 2}}, "muttering": {"_count": 1, "but": {"_count": 1}}, "or": {"_count": 1, "Neville": {"_count": 1}}, "sounding": {"_count": 1, "awestruck": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "scramble": {"_count": 1, "out": {"_count": 1}}, "checked": {"_count": 1, "it": {"_count": 1}}, "might": {"_count": 1, "see": {"_count": 1}}, "were": {"_count": 1, "cozily": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "play": {"_count": 1}, "split": {"_count": 1}}, "fly": {"_count": 1, "that": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 2, "looking": {"_count": 1}, "laughing": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "left": {"_count": 1, "looking": {"_count": 1}}, "because": {"_count": 1, "shes": {"_count": 1}}, "limb": {"_count": 1, "from": {"_count": 1}}, "but": {"_count": 1, "also": {"_count": 1}}, "exuberantly": {"_count": 1, "": {"_count": 1}}, "leaving": {"_count": 1, "noisily": {"_count": 1}}, "row": {"_count": 1, "about": {"_count": 1}}, "came": {"_count": 1, "through": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "make": {"_count": 1, "an": {"_count": 1}}, "split": {"_count": 1, "up": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "arent": {"_count": 1, "speaking": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 1}, "make": {"_count": 1}}, "here": {"_count": 1, "what": {"_count": 1}}, "joined": {"_count": 1, "in": {"_count": 1}}, "obliged": {"_count": 1, "he": {"_count": 1}}, "is": {"_count": 1, "listening": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "carried": {"_count": 1, "the": {"_count": 1}}, "produced": {"_count": 1, "a": {"_count": 1}}, "sitting": {"_count": 1, "at": {"_count": 1}}, "can": {"_count": 1, "take": {"_count": 1}}, "entered": {"_count": 1, "their": {"_count": 1}}, "shrugged": {"_count": 1, "at": {"_count": 1}}, "relaid": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "Harry": {"_count": 1}}, "taking": {"_count": 1, "out": {"_count": 1}}, "called": {"_count": 1, "as": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}}, "taller": {"_count": 24, "than": {"_count": 15, "Ron": {"_count": 1}, "they": {"_count": 1}, "she": {"_count": 2}, "anyone": {"_count": 1}, "Harry": {"_count": 2}, "me": {"_count": 1}, "Snape": {"_count": 1}, "everybody": {"_count": 1}, "usual": {"_count": 1}, "any": {"_count": 2}, "he": {"_count": 2}}, "with": {"_count": 1, "a": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "much": {"_count": 1}}, "and": {"_count": 2, "youre": {"_count": 1}, "more": {"_count": 1}}, "standing": {"_count": 1, "than": {"_count": 1}}, "from": {"_count": 1, "where": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "both": {"_count": 1}}}, "Turpin": {"_count": 1, "Lisa": {"_count": 1, "became": {"_count": 1}}}, "Lisa": {"_count": 1, "became": {"_count": 1, "a": {"_count": 1}}}, "pompously": {"_count": 6, "across": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "shaking": {"_count": 1, "hands": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "recovering": {"_count": 1, "himself": {"_count": 1}}}, "Zabini": {"_count": 42, "Blaise": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 1, "in": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 2}}, "were": {"_count": 2, "all": {"_count": 1}, "snarling": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "because": {"_count": 1, "youre": {"_count": 1}}, "around": {"_count": 1, "Slughorn": {"_count": 1}}, "merely": {"_count": 1, "looked": {"_count": 1}}, "shot": {"_count": 1, "him": {"_count": 1}}, "back": {"_count": 1, "along": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "s": {"_count": 1, "head": {"_count": 1}}, "was": {"_count": 3, "going": {"_count": 1}, "already": {"_count": 1}, "lolling": {"_count": 1}}, "as": {"_count": 1, "quietly": {"_count": 1}}, "without": {"_count": 1, "touching": {"_count": 1}}, "opened": {"_count": 1, "the": {"_count": 1}}, "angrily": {"_count": 1, "as": {"_count": 1}}, "still": {"_count": 1, "clinging": {"_count": 1}}, "off": {"_count": 1, "him": {"_count": 1}}, "collapsed": {"_count": 1, "into": {"_count": 1}}, "said": {"_count": 1, "Malfoy": {"_count": 1}}, "indifferently": {"_count": 1, "": {"_count": 1}}, "shrugged": {"_count": 1, "": {"_count": 1}}, "coldly": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "allowed": {"_count": 1}}, "scathingly": {"_count": 1, "": {"_count": 1}}, "followed": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "and": {"_count": 2, "Pansy": {"_count": 1}, "Crabbe": {"_count": 1}}, "with": {"_count": 1, "particular": {"_count": 1}}, "perhaps": {"_count": 1, "even": {"_count": 1}}, "the": {"_count": 1, "charming": {"_count": 1}}}, "Blaise": {"_count": 6, "was": {"_count": 1, "made": {"_count": 1}}, "Zabini": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "any": {"_count": 1, "time": {"_count": 1}}, "and": {"_count": 1, "we": {"_count": 1}}}, "scroll": {"_count": 23, "and": {"_count": 2, "took": {"_count": 1}, "began": {"_count": 1}}, "of": {"_count": 13, "parchment": {"_count": 13}}, "To": {"_count": 1, "Ronald": {"_count": 1}}, "tied": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "by": {"_count": 1, "magic": {"_count": 1}}, "from": {"_count": 1, "within": {"_count": 1}}, "it": {"_count": 1, "now": {"_count": 1}}, "addressed": {"_count": 1, "to": {"_count": 1}}}, "plate": {"_count": 63, "": {"_count": 10, ".": {"_count": 10}}, "with": {"_count": 3, "a": {"_count": 3}}, "flying": {"_count": 1, "an": {"_count": 1}}, "without": {"_count": 2, "another": {"_count": 1}, "Sirius": {"_count": 1}}, "of": {"_count": 17, "sandwiches": {"_count": 1}, "treacle": {"_count": 1}, "raw": {"_count": 1}, "dead": {"_count": 1}, "Bath": {"_count": 1}, "food": {"_count": 2}, "sausages": {"_count": 1}, "biscuits": {"_count": 1}, "goulash": {"_count": 1}, "cakes": {"_count": 1}, "doughy": {"_count": 1}, "roast": {"_count": 1}, "chops": {"_count": 1}, "toast": {"_count": 1}, "eggs": {"_count": 1}, "his": {"_count": 1}}, "kept": {"_count": 1, "refilling": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 2, "there": {"_count": 1}, "we": {"_count": 1}}, "a": {"_count": 1, "funny": {"_count": 1}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 7, "picked": {"_count": 1}, "departed": {"_count": 1}, "splashing": {"_count": 1}, "Harry": {"_count": 1}, "turning": {"_count": 1}, "wondered": {"_count": 1}, "starting": {"_count": 1}}, "what": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "Pork": {"_count": 1, "chops": {"_count": 1}}, "closely": {"_count": 1, "followed": {"_count": 1}}, "for": {"_count": 2, "her": {"_count": 1}, "food": {"_count": 1}}, "feeling": {"_count": 1, "unusually": {"_count": 1}}, "watched": {"_count": 1, "wistfully": {"_count": 1}}, "since": {"_count": 1, "when": {"_count": 1}}, "shes": {"_count": 1, "bang": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "mutate": {"_count": 1}}, "already": {"_count": 1, "without": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "Nitwit": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Blubber": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Oddment": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Tweak": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "uncertainly": {"_count": 35, "": {"_count": 14, ".": {"_count": 14}}, "after": {"_count": 1, "Uncle": {"_count": 1}}, "and": {"_count": 2, "well": {"_count": 1}, "looked": {"_count": 1}}, "at": {"_count": 3, "him": {"_count": 1}, "Dumbledore": {"_count": 1}, "Lupin": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Hermione": {"_count": 1}}, "plainly": {"_count": 1, "wondering": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Moody": {"_count": 1}}, "meeting": {"_count": 1, "Harrys": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 3, "mean": {"_count": 2}, "dont": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "toward": {"_count": 1, "Mrs": {"_count": 1}}, "dressinggowned": {"_count": 1, "people": {"_count": 1}}}, "Mad": {"_count": 15, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "Muggle": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "to": {"_count": 1}}, "Eye": {"_count": 6, "well": {"_count": 1}, "Moody": {"_count": 1}, "to": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "you": {"_count": 1}}, "Eyes": {"_count": 1, "eye": {"_count": 1}}}, "airily": {"_count": 11, "": {"_count": 4, ".": {"_count": 4}}, "pouring": {"_count": 1, "herself": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}, "oh": {"_count": 1, "no": {"_count": 1}}, "fetching": {"_count": 1, "more": {"_count": 1}}, "pulling": {"_count": 1, "off": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 1, "handing": {"_count": 1}}}, "genius": {"_count": 11, "": {"_count": 1, "!": {"_count": 1}}, "to": {"_count": 2, "work": {"_count": 1}, "tell": {"_count": 1}}, "you": {"_count": 1, "wait": {"_count": 1}}, "and": {"_count": 1, "everything": {"_count": 1}}, "the": {"_count": 1, "Prince": {"_count": 1}}, "considered": {"_count": 1, "by": {"_count": 1}}, "a": {"_count": 1, "total": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "Ron": {"_count": 1, "repeated": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Potatoes": {"_count": 1, "Harry": {"_count": 1, "": {"_count": 1}}}, "dishes": {"_count": 9, "in": {"_count": 3, "front": {"_count": 2}, "the": {"_count": 1}}, "of": {"_count": 3, "eggs": {"_count": 1}, "Mrs": {"_count": 1}, "vegetables": {"_count": 1}}, "and": {"_count": 1, "dishes": {"_count": 1}}, "filled": {"_count": 1, "magically": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}}, "roast": {"_count": 14, "beef": {"_count": 3, "roast": {"_count": 1}, "and": {"_count": 1}, "made": {"_count": 1}}, "chicken": {"_count": 2, "pork": {"_count": 1}, "down": {"_count": 1}}, "potatoes": {"_count": 3, "fries": {"_count": 1}, "the": {"_count": 1}, "with": {"_count": 1}}, "turkeys": {"_count": 1, "mountains": {"_count": 1}}, "and": {"_count": 1, "boiled": {"_count": 1}}, "pork": {"_count": 1, "was": {"_count": 1}}, "ox": {"_count": 1, "if": {"_count": 1}}, "potato": {"_count": 1, "on": {"_count": 1}}, "pike": {"_count": 1, "slid": {"_count": 1}}}, "chicken": {"_count": 26, "pork": {"_count": 1, "chops": {"_count": 1}}, "blood": {"_count": 1, "every": {"_count": 1}}, "feathers": {"_count": 1, "all": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 3, "ham": {"_count": 2}, "he": {"_count": 1}}, "out": {"_count": 1, "fine": {"_count": 1}}, "Bagman": {"_count": 1, "roared": {"_count": 1}}, "casserole": {"_count": 1, "onto": {"_count": 1}}, "legs": {"_count": 3, "a": {"_count": 1}, "and": {"_count": 2}}, "bone": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "leg": {"_count": 3, "": {"_count": 2}, "with": {"_count": 1}}, "bones": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "egg": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "it": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "pox": {"_count": 1, "on": {"_count": 1}}, "coop": {"_count": 1, "": {"_count": 1}}}, "pork": {"_count": 3, "chops": {"_count": 2, "and": {"_count": 1}, "appeared": {"_count": 1}}, "was": {"_count": 1, "sizzling": {"_count": 1}}}, "chops": {"_count": 8, "and": {"_count": 3, "lamb": {"_count": 1}, "potatoes": {"_count": 1}, "began": {"_count": 1}}, "sausages": {"_count": 1, "bacon": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "appeared": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}}, "lamb": {"_count": 4, "chops": {"_count": 3, "sausages": {"_count": 1}, "and": {"_count": 1}, "onto": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "steak": {"_count": 21, "boiled": {"_count": 1, "potatoes": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 3, "kidney": {"_count": 1}, "slapped": {"_count": 1}, "it": {"_count": 1}}, "slightly": {"_count": 1, "larger": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 2}}, "a": {"_count": 1, "little": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "slid": {"_count": 1, "with": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "pressed": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}}, "boiled": {"_count": 5, "potatoes": {"_count": 3, "roast": {"_count": 1}, "platters": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 1, "frog": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}}, "potatoes": {"_count": 15, "roast": {"_count": 1, "potatoes": {"_count": 1}}, "fries": {"_count": 1, "Yorkshire": {"_count": 1}}, "platters": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "doors": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "which": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 2, "salad": {"_count": 1}, "was": {"_count": 1}}, "onto": {"_count": 1, "everyones": {"_count": 1}}, "with": {"_count": 2, "almost": {"_count": 1}, "a": {"_count": 1}}, "translating": {"_count": 1, "mad": {"_count": 1}}}, "fries": {"_count": 1, "Yorkshire": {"_count": 1, "pudding": {"_count": 1}}}, "pudding": {"_count": 22, "peas": {"_count": 1, "carrots": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "a": {"_count": 1, "huge": {"_count": 1}}, "the": {"_count": 1, "mountain": {"_count": 1}}, "fell": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "Hermione": {"_count": 1}}, "bowl": {"_count": 1, "haircut": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "and": {"_count": 2, "trifle": {"_count": 1}, "wait": {"_count": 1}}}, "peas": {"_count": 4, "carrots": {"_count": 1, "gravy": {"_count": 1}}, "silver": {"_count": 1, "boats": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "carrots": {"_count": 3, "gravy": {"_count": 1, "ketchup": {"_count": 1}}, "for": {"_count": 1, "Christmas": {"_count": 1}}, "with": {"_count": 1, "unnecessary": {"_count": 1}}}, "gravy": {"_count": 5, "ketchup": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "cranberry": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "boat": {"_count": 1, "flying": {"_count": 1}}, "soared": {"_count": 1, "up": {"_count": 1}}}, "ketchup": {"_count": 4, "and": {"_count": 2, "for": {"_count": 1}, "was": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "bottle": {"_count": 1, "over": {"_count": 1}}}, "starved": {"_count": 3, "Harry": {"_count": 1, "but": {"_count": 1}}, "mask": {"_count": 1, "for": {"_count": 1}}, "in": {"_count": 1, "appearance": {"_count": 1}}}, "peppermints": {"_count": 1, "and": {"_count": 1, "began": {"_count": 1}}}, "delicious": {"_count": 15, "": {"_count": 2, ".": {"_count": 2}}, "smell": {"_count": 5, "of": {"_count": 5}}, "feast": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "looking": {"_count": 1, "custard": {"_count": 1}}, "courses": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "Hermione": {"_count": 1}}, "thing": {"_count": 1, "hed": {"_count": 1}}, "smells": {"_count": 1, "of": {"_count": 1}}, "meals": {"_count": 1, "a": {"_count": 1}}}, "Sir": {"_count": 91, "Nicholas": {"_count": 5, "de": {"_count": 4}, "looked": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 8, "!": {"_count": 1}, "?": {"_count": 6}, ".": {"_count": 1}}, "quick": {"_count": 1, "Calm": {"_count": 1}}, "I": {"_count": 9, "Harry": {"_count": 1}, "saw": {"_count": 1}, "got": {"_count": 1}, "think": {"_count": 1}, "wanted": {"_count": 2}, "wondered": {"_count": 3}}, "even": {"_count": 1, "if": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "Patrick": {"_count": 4, "Delaney": {"_count": 1}, "how": {"_count": 1}, "spotting": {"_count": 1}, "and": {"_count": 1}}, "Properly": {"_count": 1, "DecapitatedPodmore": {"_count": 1}}, "Patricks": {"_count": 4, "rejection": {"_count": 1}, "head": {"_count": 3}}, "what": {"_count": 2, "exactly": {"_count": 1}, "happened": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 8, "Malfoy": {"_count": 1}, "Harry": {"_count": 6}, "Seamus": {"_count": 1}}, "why": {"_count": 1, "dont": {"_count": 1}}, "Cadogan": {"_count": 22, "": {"_count": 5}, "and": {"_count": 1}, "spent": {"_count": 1}, "was": {"_count": 1}, "however": {"_count": 1}, "enjoying": {"_count": 1}, "as": {"_count": 1}, "who": {"_count": 2}, "did": {"_count": 1}, "proudly": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 2}, "drew": {"_count": 1}, "in": {"_count": 1}, "attempted": {"_count": 1}, "rushed": {"_count": 1}}, "Malfoy": {"_count": 1, "called": {"_count": 1}}, "Cadogans": {"_count": 1, "picture": {"_count": 1}}, "sir": {"_count": 1, "Mr": {"_count": 1}}, "is": {"_count": 3, "very": {"_count": 1}, "it": {"_count": 2}}, "you": {"_count": 1, "havent": {"_count": 1}}, "he": {"_count": 2, "added": {"_count": 1}, "said": {"_count": 1}}, "how": {"_count": 2, "did": {"_count": 1}, "exactly": {"_count": 1}}, "does": {"_count": 1, "that": {"_count": 1}}, "am": {"_count": 1, "I": {"_count": 1}}, "Harry": {"_count": 1, "began": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "no": {"_count": 1, "dont": {"_count": 1}}, "are": {"_count": 2, "you": {"_count": 2}}, "Im": {"_count": 1, "trying": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "panted": {"_count": 1, "Harry": {"_count": 1}}, "its": {"_count": 1, "okay": {"_count": 1}}}, "Nicholas": {"_count": 5, "de": {"_count": 4, "MimsyPorpington": {"_count": 1}, "Mimsy": {"_count": 3}}, "looked": {"_count": 1, "extremely": {"_count": 1}}}, "de": {"_count": 8, "MimsyPorpington": {"_count": 1, "at": {"_count": 1}}, "Mimsy": {"_count": 3, "the": {"_count": 1}, "Porpington": {"_count": 2}}, "gnome": {"_count": 1, "the": {"_count": 1}}, "cologne": {"_count": 2, "Hagrid": {"_count": 1}, "": {"_count": 1}}, "gnoming": {"_count": 1, "the": {"_count": 1}}}, "MimsyPorpington": {"_count": 1, "at": {"_count": 1, "your": {"_count": 1}}}, "service": {"_count": 20, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 1}, "?": {"_count": 1}}, "worked": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "death": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Firenze": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "me": {"_count": 1}}, "he": {"_count": 1, "received": {"_count": 1}}, "Harry": {"_count": 1, "laughed": {"_count": 1}}, "I": {"_count": 1, "require": {"_count": 1}}, "who": {"_count": 1, "take": {"_count": 1}}}, "Resident": {"_count": 1, "ghost": {"_count": 1, "of": {"_count": 1}}}, "Tower": {"_count": 112, "": {"_count": 40, ".": {"_count": 34}, "?": {"_count": 5}, "!": {"_count": 1}}, "said": {"_count": 4, "Ron": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "Umbridge": {"_count": 1}}, "because": {"_count": 2, "theyd": {"_count": 1}, "thats": {"_count": 1}}, "which": {"_count": 3, "was": {"_count": 2}, "meant": {"_count": 1}}, "was": {"_count": 4, "hidden": {"_count": 1}, "staring": {"_count": 1}, "a": {"_count": 1}, "hardly": {"_count": 1}}, "drenched": {"_count": 1, "to": {"_count": 1}}, "desperate": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "showed": {"_count": 1}}, "collected": {"_count": 1, "his": {"_count": 1}}, "ever": {"_count": 1, "been": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 4, "when": {"_count": 1}, "he": {"_count": 1}, "it": {"_count": 1}, "if": {"_count": 1}}, "became": {"_count": 1, "crowded": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "me": {"_count": 1}}, "and": {"_count": 10, "saw": {"_count": 1}, "Harry": {"_count": 1}, "listen": {"_count": 1}, "went": {"_count": 1}, "Divination": {"_count": 1}, "consequently": {"_count": 1}, "rap": {"_count": 1}, "hoping": {"_count": 1}, "to": {"_count": 1}, "wondering": {"_count": 1}}, "slept": {"_count": 1, "that": {"_count": 1}}, "passed": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 4, "you": {"_count": 1}, "at": {"_count": 1}, "everyone": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 4, "break": {"_count": 1}, "one": {"_count": 1}, "eleven": {"_count": 1}, "a": {"_count": 1}}, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "afterward": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "deposited": {"_count": 1, "their": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}, "Chos": {"_count": 1, "voice": {"_count": 1}}, "to": {"_count": 2, "read": {"_count": 1}, "review": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "something": {"_count": 1}}, "lost": {"_count": 1, "in": {"_count": 1}}, "after": {"_count": 1, "hours": {"_count": 1}}, "the": {"_count": 2, "following": {"_count": 1}, "highest": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "early": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "anymore": {"_count": 1, "not": {"_count": 1}}, "than": {"_count": 1, "admit": {"_count": 1}}, "shortly": {"_count": 1, "before": {"_count": 1}}, "however": {"_count": 1, "they": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "stood": {"_count": 1, "waiting": {"_count": 1}}}, "Headless": {"_count": 81, "Nick": {"_count": 69, "": {"_count": 12}, "flipped": {"_count": 1}, "delicately": {"_count": 1}, "was": {"_count": 2}, "the": {"_count": 5}, "starting": {"_count": 1}, "waved": {"_count": 1}, "shook": {"_count": 1}, "stuffed": {"_count": 1}, "took": {"_count": 1}, "and": {"_count": 2}, "came": {"_count": 1}, "Harry": {"_count": 1}, "stopped": {"_count": 1}, "drawing": {"_count": 1}, "beamed": {"_count": 1}, "standing": {"_count": 1}, "now": {"_count": 2}, "proudly": {"_count": 1}, "bitterly": {"_count": 1}, "squashing": {"_count": 1}, "on": {"_count": 1}, "darkly": {"_count": 1}, "loudly": {"_count": 1}, "tried": {"_count": 1}, "no": {"_count": 1}, "examining": {"_count": 1}, "up": {"_count": 1}, "turned": {"_count": 1}, "had": {"_count": 1}, "as": {"_count": 1}, "applauding": {"_count": 1}, "watched": {"_count": 1}, "shaking": {"_count": 1}, "shrugging": {"_count": 1}, "looking": {"_count": 1}, "chortled": {"_count": 1}, "knowledgeably": {"_count": 1}, "placed": {"_count": 1}, "politely": {"_count": 1}, "looked": {"_count": 2}, "drifting": {"_count": 1}, "in": {"_count": 2}, "who": {"_count": 1}, "sighed": {"_count": 1}, "quietly": {"_count": 1}, "hesitated": {"_count": 1}, "inclining": {"_count": 1}, "ghost": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Hunt": {"_count": 5, "": {"_count": 2}, "Harry": {"_count": 1}, "had": {"_count": 2}}, "Nicks": {"_count": 4, "party": {"_count": 1}, "fate": {"_count": 1}, "deathday": {"_count": 1}, "face": {"_count": 1}}, "Hats": {"_count": 1, "": {"_count": 1}}, "Hat": {"_count": 1, "on": {"_count": 1}}}, "Nick": {"_count": 107, "": {"_count": 22, "!": {"_count": 7}, ".": {"_count": 15}}, "flipped": {"_count": 1, "his": {"_count": 1}}, "delicately": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 3, "always": {"_count": 1}, "dressed": {"_count": 1}, "gliding": {"_count": 1}}, "the": {"_count": 5, "ghost": {"_count": 1}, "Gryffindor": {"_count": 4}}, "said": {"_count": 2, "Harry": {"_count": 1}, "nothing": {"_count": 1}}, "starting": {"_count": 1, "and": {"_count": 1}}, "folding": {"_count": 1, "a": {"_count": 1}}, "waved": {"_count": 1, "an": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "stuffed": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 1, "several": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "followed": {"_count": 1}, "Madam": {"_count": 1}}, "came": {"_count": 1, "gliding": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "noticed": {"_count": 1}}, "stopped": {"_count": 1, "in": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "drawing": {"_count": 1, "himself": {"_count": 1}}, "beamed": {"_count": 1, "at": {"_count": 1}}, "standing": {"_count": 1, "at": {"_count": 1}}, "now": {"_count": 3, "drifted": {"_count": 1}, "so": {"_count": 1}, "gliding": {"_count": 1}}, "proudly": {"_count": 1, "": {"_count": 1}}, "bitterly": {"_count": 1, "": {"_count": 1}}, "squashing": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "stiffly": {"_count": 1, "": {"_count": 1}}, "darkly": {"_count": 1, "": {"_count": 1}}, "Nicks": {"_count": 1, "very": {"_count": 1}}, "loudly": {"_count": 1, "striding": {"_count": 1}}, "tried": {"_count": 1, "vainly": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "examining": {"_count": 1, "them": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "like": {"_count": 1}}, "turned": {"_count": 2, "what": {"_count": 1}, "away": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "disappeared": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Madley": {"_count": 1}}, "applauding": {"_count": 1, "as": {"_count": 1}}, "watched": {"_count": 1, "mournfully": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "shrugging": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 2, "surprised": {"_count": 1}, "discomforted": {"_count": 1}}, "chortled": {"_count": 1, "so": {"_count": 1}}, "knowledgeably": {"_count": 1, "leaning": {"_count": 1}}, "placed": {"_count": 1, "a": {"_count": 1}}, "who": {"_count": 2, "seemed": {"_count": 1}, "was": {"_count": 1}}, "politely": {"_count": 1, "while": {"_count": 1}}, "reprovingly": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 2, "highly": {"_count": 1}, "surprised": {"_count": 1}}, "he": {"_count": 1, "wasnt": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "drifting": {"_count": 1, "disconcertingly": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "affronted": {"_count": 1}}, "can": {"_count": 1, "I": {"_count": 1}}, "please": {"_count": 1, "said": {"_count": 1}}, "sighed": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "quietly": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "miserably": {"_count": 1, "": {"_count": 1}}, "gently": {"_count": 1, "": {"_count": 1}}, "inclining": {"_count": 1, "his": {"_count": 1}}, "ghost": {"_count": 1, "of": {"_count": 1}}, "made": {"_count": 1, "to": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}}, "prefer": {"_count": 32, "you": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 3, "this": {"_count": 1}, "if": {"_count": 2}}, "to": {"_count": 4, "step": {"_count": 1}, "watch": {"_count": 1}, "make": {"_count": 1}, "think": {"_count": 1}}, "the": {"_count": 3, "womans": {"_count": 1}, "dark": {"_count": 1}, "savory": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "Dumbledore": {"_count": 1, "Amos": {"_count": 1}}, "not": {"_count": 3, "to": {"_count": 3}}, "this": {"_count": 1, "place": {"_count": 1}}, "your": {"_count": 1, "way": {"_count": 1}}, "goalscoring": {"_count": 1, "to": {"_count": 1}}, "lodgings": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 2, "to": {"_count": 1}, "what": {"_count": 1}}, "brooms": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "your": {"_count": 1}}, "flying": {"_count": 1, "said": {"_count": 1}}, "objects": {"_count": 1, "that": {"_count": 1}}, "fewer": {"_count": 1, "visits": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 2, "waltz": {"_count": 1}, "quick": {"_count": 1}}}, "Mimsy": {"_count": 3, "the": {"_count": 1, "ghost": {"_count": 1}}, "Porpington": {"_count": 2, "have": {"_count": 1}, "": {"_count": 1}}}, "interrupted": {"_count": 55, "": {"_count": 9, ".": {"_count": 9}}, "by": {"_count": 8, "the": {"_count": 3}, "Fred": {"_count": 1}, "a": {"_count": 3}, "Severus": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 2}, "before": {"_count": 1}, "again": {"_count": 1}}, "Draco": {"_count": 1, "pointing": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 2}, "something": {"_count": 1}}, "Professor": {"_count": 3, "Lupin": {"_count": 1}, "McGonagalls": {"_count": 1}, "McGonagall": {"_count": 1}}, "again": {"_count": 2, "this": {"_count": 1}, "": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "stepping": {"_count": 1, "forward": {"_count": 1}}, "loudly": {"_count": 1, "whats": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "his": {"_count": 1, "musings": {"_count": 1}}, "George": {"_count": 1, "loudly": {"_count": 1}}, "Dumbledore": {"_count": 3, "before": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 2, "killed": {"_count": 1}, "know": {"_count": 1}}, "the": {"_count": 1, "girl": {"_count": 1}}, "Parvati": {"_count": 1, "looking": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "before": {"_count": 1}}, "Bane": {"_count": 1, "contemptuously": {"_count": 1}}, "said": {"_count": 1, "Scrimgeour": {"_count": 1}}, "Harry": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "Borgin": {"_count": 1, "asked": {"_count": 1}}, "Riddle": {"_count": 1, "who": {"_count": 1}}, "conversation": {"_count": 1, "as": {"_count": 1}}, "Snape": {"_count": 1, "his": {"_count": 1}}}, "headless": {"_count": 10, "": {"_count": 1, "?": {"_count": 1}}, "horseman": {"_count": 1, "": {"_count": 1}}, "corpse": {"_count": 1, "or": {"_count": 1}}, "rubber": {"_count": 1, "haddock": {"_count": 1}}, "and": {"_count": 1, "selling": {"_count": 1}}, "wizard": {"_count": 1, "and": {"_count": 1}}, "golden": {"_count": 1, "statue": {"_count": 1}}, "statue": {"_count": 2, "thrust": {"_count": 1}, "that": {"_count": 1}}, "guard": {"_count": 1, "kept": {"_count": 1}}}, "miffed": {"_count": 1, "as": {"_count": 1, "if": {"_count": 1}}}, "chat": {"_count": 21, "wasnt": {"_count": 1, "going": {"_count": 1}}, "soon": {"_count": 1, "when": {"_count": 1}}, "and": {"_count": 1, "agreed": {"_count": 1}}, "Neville": {"_count": 1, "appeared": {"_count": 1}}, "Peter": {"_count": 1, "about": {"_count": 1}}, "with": {"_count": 7, "old": {"_count": 1}, "her": {"_count": 1}, "Sirius": {"_count": 2}, "him": {"_count": 1}, "his": {"_count": 1}, "your": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "between": {"_count": 1, "two": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "those": {"_count": 1}}, "just": {"_count": 1, "hurrying": {"_count": 1}}, "over": {"_count": 1, "here": {"_count": 1}}, "about": {"_count": 1, "ways": {"_count": 1}}}, "hinge": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "behead": {"_count": 1, "him": {"_count": 1, "but": {"_count": 1}}}, "Looking": {"_count": 36, "pleased": {"_count": 1, "at": {"_count": 1}}, "down": {"_count": 7, "at": {"_count": 1}, "Harry": {"_count": 4}, "into": {"_count": 1}, "on": {"_count": 1}}, "up": {"_count": 2, "he": {"_count": 2}}, "for": {"_count": 5, "another": {"_count": 1}, "Crouch": {"_count": 1}, "you": {"_count": 1}, "these": {"_count": 1}, "Ron": {"_count": 1}}, "breathless": {"_count": 1, "and": {"_count": 1}}, "good": {"_count": 1, "": {"_count": 1}}, "extremely": {"_count": 1, "apprehensive": {"_count": 1}}, "supremely": {"_count": 1, "unconcerned": {"_count": 1}}, "politely": {"_count": 1, "incredulous": {"_count": 1}}, "scared": {"_count": 1, "Ron": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "highly": {"_count": 1, "disconcerted": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "careworn": {"_count": 1, "she": {"_count": 1}}, "Slughorn": {"_count": 1, "straight": {"_count": 1}}, "around": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "sideways": {"_count": 1, "he": {"_count": 1}}, "directly": {"_count": 1, "at": {"_count": 1}}, "rather": {"_count": 2, "pleased": {"_count": 1}, "alarmed": {"_count": 1}}, "relieved": {"_count": 1, "Hermione": {"_count": 1}}, "uncomfortable": {"_count": 1, "Dean": {"_count": 1}}}, "coughed": {"_count": 12, "and": {"_count": 3, "said": {"_count": 1}, "something": {"_count": 1}, "spluttered": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "squelchily": {"_count": 1, "into": {"_count": 1}}, "a": {"_count": 1, "peppery": {"_count": 1}}, "her": {"_count": 1, "loudest": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "feebly": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "heard": {"_count": 1}}}, "win": {"_count": 61, "the": {"_count": 17, "House": {"_count": 3}, "Quidditch": {"_count": 3}, "Cup": {"_count": 2}, "match": {"_count": 2}, "Triwizard": {"_count": 1}, "tournament": {"_count": 3}, "bottle": {"_count": 1}, "Championship": {"_count": 1}, "duel": {"_count": 1}}, "that": {"_count": 1, "Quidditch": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 6}, "!": {"_count": 3}, "?": {"_count": 2}}, "Gryffindor": {"_count": 1, "five": {"_count": 1}}, "Harry": {"_count": 2, "found": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "Quidditch": {"_count": 1}}, "today": {"_count": 1, "weve": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "us": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "case": {"_count": 1}}, "as": {"_count": 2, "much": {"_count": 2}}, "wont": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 2, "Percy": {"_count": 1}, "Moody": {"_count": 1}}, "but": {"_count": 2, "Krum": {"_count": 2}}, "my": {"_count": 2, "fight": {"_count": 1}, "fabulous": {"_count": 1}}, "this": {"_count": 1, "tournament": {"_count": 1}}, "I": {"_count": 1, "really": {"_count": 1}}, "Hagrid": {"_count": 1, "growled": {"_count": 1}}, "any": {"_count": 1, "races": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "outright": {"_count": 1, "": {"_count": 1}}, "Weasley": {"_count": 1, "is": {"_count": 1}}, "for": {"_count": 1, "Gryffindor": {"_count": 1}}, "against": {"_count": 1, "me": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 1, "Felix": {"_count": 1}}, "your": {"_count": 1, "first": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "duels": {"_count": 1, "for": {"_count": 1}}, "you": {"_count": 1, "cannot": {"_count": 1}}}, "Championship": {"_count": 12, "this": {"_count": 1, "year": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "for": {"_count": 2, "the": {"_count": 2}}, "was": {"_count": 1, "wonderful": {"_count": 1}}, "beating": {"_count": 1, "Slytherin": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "Jordan": {"_count": 1, "would": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}}, "winning": {"_count": 27, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "fifty": {"_count": 1, "points": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "the": {"_count": 13, "House": {"_count": 1}, "huge": {"_count": 1}, "Cup": {"_count": 2}, "Quidditch": {"_count": 4}, "Triwizard": {"_count": 1}, "tournament": {"_count": 2}, "league": {"_count": 1}, "war": {"_count": 1}}, "at": {"_count": 1, "Quidditch": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "Witch": {"_count": 1, "Weeklys": {"_count": 1}}, "and": {"_count": 1, "not": {"_count": 1}}, "gaining": {"_count": 1, "on": {"_count": 1}}, "fell": {"_count": 1, "largely": {"_count": 1}}, "streak": {"_count": 1, "do": {"_count": 1}}, "Houses": {"_count": 1, "colors": {"_count": 1}}, "their": {"_count": 1, "final": {"_count": 1}}, "were": {"_count": 1, "very": {"_count": 1}}}, "Slytherins": {"_count": 145, "have": {"_count": 2, "got": {"_count": 1}, "taken": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Hermione": {"_count": 1}}, "so": {"_count": 2, "they": {"_count": 1}, "much": {"_count": 1}}, "were": {"_count": 10, "already": {"_count": 1}, "cheering": {"_count": 2}, "silhouetted": {"_count": 1}, "all": {"_count": 1}, "rapidly": {"_count": 1}, "thinking": {"_count": 1}, "joining": {"_count": 1}, "stamping": {"_count": 1}, "singing": {"_count": 1}}, "joined": {"_count": 1, "in": {"_count": 1}}, "thats": {"_count": 1, "Adrian": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 21}, "!": {"_count": 1}}, "score": {"_count": 1, "oh": {"_count": 1}}, "had": {"_count": 5, "lost": {"_count": 1}, "anything": {"_count": 1}, "arrived": {"_count": 1}, "remained": {"_count": 1}, "made": {"_count": 1}}, "will": {"_count": 1, "think": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "smiles": {"_count": 1, "faded": {"_count": 1}}, "dont": {"_count": 1, "need": {"_count": 1}}, "true": {"_count": 1, "heir": {"_count": 1}}, "heir": {"_count": 8, "I": {"_count": 1}, "on": {"_count": 1}, "single": {"_count": 1}, "": {"_count": 3}, "for": {"_count": 1}, "because": {"_count": 1}}, "descendants": {"_count": 1, "": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 4}, "it": {"_count": 1}}, "superior": {"_count": 1, "brooms": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "legendary": {"_count": 1, "monster": {"_count": 1}}, "sniggered": {"_count": 1, "appreciatively": {"_count": 1}}, "monster": {"_count": 3, "can": {"_count": 1}, "would": {"_count": 1}, "living": {"_count": 1}}, "cheered": {"_count": 1, "": {"_count": 1}}, "Ive": {"_count": 1, "decided": {"_count": 1}}, "always": {"_count": 1, "come": {"_count": 1}}, "are": {"_count": 2, "all": {"_count": 1}, "brave": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "too": {"_count": 1}}, "noble": {"_count": 1, "work": {"_count": 1}}, "gigantic": {"_count": 1, "stone": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "displays": {"_count": 1}}, "still": {"_count": 1, "muttering": {"_count": 1}}, "and": {"_count": 3, "Gryffindors": {"_count": 2}, "saw": {"_count": 1}}, "looked": {"_count": 1, "excited": {"_count": 1}}, "brooms": {"_count": 1, "put": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "delighted": {"_count": 1, "by": {"_count": 1}}, "this": {"_count": 1, "mornin": {"_count": 1}}, "the": {"_count": 1, "Ravenclaws": {"_count": 1}}, "they": {"_count": 1, "won": {"_count": 1}}, "too": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "could": {"_count": 1}}, "all": {"_count": 2, "of": {"_count": 1}, "sing": {"_count": 1}}, "waiting": {"_count": 1, "outside": {"_count": 1}}, "howled": {"_count": 1, "with": {"_count": 1}}, "clamored": {"_count": 1, "to": {"_count": 1}}, "mainly": {"_count": 1, "quoting": {"_count": 1}}, "came": {"_count": 1, "up": {"_count": 1}}, "broke": {"_count": 1, "apart": {"_count": 1}}, "who": {"_count": 4, "were": {"_count": 2}, "nearly": {"_count": 1}, "had": {"_count": 1}}, "laughter": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "hearty": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "fat": {"_count": 1, "chance": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "led": {"_count": 1, "by": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "permission": {"_count": 1, "why": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "badges": {"_count": 1, "she": {"_count": 1}}, "sang": {"_count": 1, "even": {"_count": 1}}, "murmured": {"_count": 1, "agreement": {"_count": 1}}, "cause": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "from": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "entered": {"_count": 1, "each": {"_count": 1}}, "efforts": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 1, "her": {"_count": 1}}, "we": {"_count": 1, "saw": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "faces": {"_count": 1, "and": {"_count": 1}}, "hissed": {"_count": 1, "and": {"_count": 1}}, "better": {"_count": 1, "": {"_count": 1}}, "seen": {"_count": 1, "the": {"_count": 1}}, "surviving": {"_count": 1, "line": {"_count": 1}}, "locket": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "below": {"_count": 1, "in": {"_count": 1}}, "mark": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "trooping": {"_count": 1, "out": {"_count": 1}}, "hostage": {"_count": 1, "": {"_count": 1}}}, "Bloody": {"_count": 15, "Barons": {"_count": 3, "becoming": {"_count": 1}, "the": {"_count": 1}, "been": {"_count": 1}}, "Baron": {"_count": 12, "": {"_count": 4}, "has": {"_count": 1}, "a": {"_count": 1}, "put": {"_count": 1}, "was": {"_count": 1}, "going": {"_count": 1}, "who": {"_count": 1}, "Dumbledore": {"_count": 1}, "yes": {"_count": 1}}}, "Barons": {"_count": 3, "becoming": {"_count": 1, "almost": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "been": {"_count": 1, "past": {"_count": 1}}}, "unbearable": {"_count": 4, "hes": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "him": {"_count": 1}, "turn": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}}, "blank": {"_count": 73, "staring": {"_count": 1, "eyes": {"_count": 1}}, "face": {"_count": 2, "toward": {"_count": 1}, "of": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "he": {"_count": 1, "kept": {"_count": 1}}, "pages": {"_count": 1, "not": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "again": {"_count": 1, "then": {"_count": 1}}, "with": {"_count": 1, "shock": {"_count": 1}}, "as": {"_count": 3, "possible": {"_count": 1}, "footsteps": {"_count": 1}, "he": {"_count": 1}}, "blackboard": {"_count": 1, "as": {"_count": 1}}, "buzzing": {"_count": 1, "which": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 5, "expressionless": {"_count": 1}, "pitiless": {"_count": 1}, "calm": {"_count": 1}, "said": {"_count": 1}, "empty": {"_count": 1}}, "red": {"_count": 1, "eyes": {"_count": 1}}, "when": {"_count": 1, "his": {"_count": 1}}, "stretch": {"_count": 2, "of": {"_count": 2}}, "picture": {"_count": 3, "on": {"_count": 3}}, "white": {"_count": 2, "eyes": {"_count": 1}, "shining": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "parchment": {"_count": 3, "lay": {"_count": 2}, "which": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "wall": {"_count": 4, "opposite": {"_count": 1}, "": {"_count": 2}, "behind": {"_count": 1}}, "silence": {"_count": 1, "greeted": {"_count": 1}}, "periods": {"_count": 1, "where": {"_count": 1}}, "eyes": {"_count": 3, "staring": {"_count": 2}, "": {"_count": 1}}, "until": {"_count": 2, "they": {"_count": 1}, "about": {"_count": 1}}, "stone": {"_count": 1, "walls": {"_count": 1}}, "crystal": {"_count": 1, "ball": {"_count": 1}}, "star": {"_count": 1, "chart": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "unreadable": {"_count": 1, "": {"_count": 1}}, "schedule": {"_count": 1, "with": {"_count": 1}}, "paper": {"_count": 2, "from": {"_count": 1}, "for": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "frosted": {"_count": 1, "eyes": {"_count": 1}}, "uncomprehending": {"_count": 1, "": {"_count": 1}}, "stretches": {"_count": 1, "of": {"_count": 1}}, "television": {"_count": 1, "screen": {"_count": 1}}, "Snape": {"_count": 1, "frowning": {"_count": 1}}, "something": {"_count": 1, "on": {"_count": 1}}}, "gaunt": {"_count": 16, "face": {"_count": 7, "and": {"_count": 1}, "": {"_count": 3}, "was": {"_count": 1}, "again": {"_count": 1}, "broke": {"_count": 1}}, "staring": {"_count": 1, "Slytherin": {"_count": 1}}, "and": {"_count": 4, "silent": {"_count": 1}, "sunken": {"_count": 1}, "skull": {"_count": 1}, "grim": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "twisted": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "scarlet": {"_count": 1}}, "petrified": {"_count": 1, "face": {"_count": 1}}}, "stained": {"_count": 11, "with": {"_count": 3, "silver": {"_count": 1}, "algae": {"_count": 1}, "blood": {"_count": 1}}, "rag": {"_count": 1, "with": {"_count": 1}}, "blouse": {"_count": 1, "": {"_count": 1}}, "awning": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "peeling": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "glass": {"_count": 1, "hit": {"_count": 1}}, "silk": {"_count": 1, "lining": {"_count": 1}}, "nightshirt": {"_count": 1, "His": {"_count": 1}}}, "seating": {"_count": 5, "arrangements": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "behind": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "plan": {"_count": 1, "to": {"_count": 1}}, "plans": {"_count": 1, "so": {"_count": 1}}}, "arrangements": {"_count": 15, "": {"_count": 2, ".": {"_count": 2}}, "might": {"_count": 1, "have": {"_count": 1}}, "for": {"_count": 5, "the": {"_count": 3}, "each": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 4, "meet": {"_count": 3}, "have": {"_count": 1}}, "around": {"_count": 1, "your": {"_count": 1}}, "No": {"_count": 1, "said": {"_count": 1}}, "What": {"_count": 1, "dyou": {"_count": 1}}}, "covered": {"_count": 153, "in": {"_count": 79, "blood": {"_count": 6}, "what": {"_count": 1}, "frost": {"_count": 1}, "several": {"_count": 1}, "the": {"_count": 3}, "soot": {"_count": 2}, "potion": {"_count": 1}, "earth": {"_count": 1}, "silver": {"_count": 2}, "black": {"_count": 2}, "furry": {"_count": 1}, "fungus": {"_count": 1}, "slime": {"_count": 1}, "muck": {"_count": 1}, "bandages": {"_count": 2}, "hair": {"_count": 1}, "glittering": {"_count": 1}, "a": {"_count": 5}, "stamps": {"_count": 1}, "white": {"_count": 1}, "dust": {"_count": 2}, "potato": {"_count": 1}, "straw": {"_count": 1}, "pink": {"_count": 1}, "sparkling": {"_count": 1}, "condensation": {"_count": 1}, "goose": {"_count": 1}, "painful": {"_count": 1}, "hex": {"_count": 1}, "dirt": {"_count": 1}, "dirty": {"_count": 1}, "chains": {"_count": 1}, "Stinksap": {"_count": 1}, "her": {"_count": 1}, "ice": {"_count": 1}, "ugly": {"_count": 1}, "snow": {"_count": 1}, "icy": {"_count": 1}, "notices": {"_count": 1}, "magical": {"_count": 1}, "fur": {"_count": 1}, "small": {"_count": 2}, "injuries": {"_count": 1}, "these": {"_count": 1}, "books": {"_count": 1}, "thin": {"_count": 1}, "grimy": {"_count": 1}, "darkness": {"_count": 1}, "one": {"_count": 1}, "mud": {"_count": 2}, "angry": {"_count": 1}, "pustules": {"_count": 1}, "names": {"_count": 1}, "dark": {"_count": 1}, "paper": {"_count": 1}, "magically": {"_count": 1}, "matted": {"_count": 1}, "flowers": {"_count": 1}, "identical": {"_count": 1}, "bright": {"_count": 1}, "sweat": {"_count": 1}}, "the": {"_count": 9, "crate": {"_count": 1}, "wall": {"_count": 1}, "walls": {"_count": 1}, "distance": {"_count": 1}, "common": {"_count": 1}, "worst": {"_count": 1}, "necklace": {"_count": 1}, "floor": {"_count": 1}, "pictures": {"_count": 1}}, "his": {"_count": 4, "face": {"_count": 2}, "eyes": {"_count": 2}}, "from": {"_count": 3, "head": {"_count": 3}}, "nearly": {"_count": 1, "every": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "up": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "cage": {"_count": 1, "onto": {"_count": 1}}, "balaclava": {"_count": 1, "but": {"_count": 1}}, "with": {"_count": 18, "portraits": {"_count": 1}, "large": {"_count": 1}, "feathers": {"_count": 1}, "hundreds": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 5}, "all": {"_count": 1}, "that": {"_count": 1}, "boulders": {"_count": 1}, "thick": {"_count": 2}, "what": {"_count": 1}, "tightly": {"_count": 1}, "leaves": {"_count": 1}}, "Goyle": {"_count": 1, "s": {"_count": 1}}, "her": {"_count": 4, "face": {"_count": 4}}, "himself": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "so": {"_count": 1, "far": {"_count": 1}}, "them": {"_count": 2, "yet": {"_count": 1}, "with": {"_count": 1}}, "tent": {"_count": 1, "with": {"_count": 1}}, "boggarts": {"_count": 1, "Red": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "table": {"_count": 2, "where": {"_count": 1}, "the": {"_count": 1}}, "before": {"_count": 1, "hoisting": {"_count": 1}}, "Winky": {"_count": 1, "with": {"_count": 1}}, "Moody": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "cubicle": {"_count": 1}}, "by": {"_count": 3, "scarves": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "floor": {"_count": 1, "crunched": {"_count": 1}}, "everything": {"_count": 1, "else": {"_count": 1}}, "themselves": {"_count": 1, "hastily": {"_count": 1}}, "Voldemort": {"_count": 1, "like": {"_count": 1}}, "Rons": {"_count": 1, "hand": {"_count": 1}}, "every": {"_count": 1, "available": {"_count": 1}}, "Dobby": {"_count": 2, "in": {"_count": 1}, "lay": {"_count": 1}}, "at": {"_count": 1, "both": {"_count": 1}}}, "delicately": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "rearranged": {"_count": 1, "her": {"_count": 1}}, "leaving": {"_count": 1, "them": {"_count": 1}}, "inflected": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "precisely": {"_count": 1}}}, "remains": {"_count": 32, "of": {"_count": 14, "the": {"_count": 8}, "Harrys": {"_count": 1}, "my": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "Bathilda": {"_count": 1}, "Hufflepuffs": {"_count": 1}}, "to": {"_count": 2, "be": {"_count": 2}}, "said": {"_count": 1, "Fudge": {"_count": 1}}, "the": {"_count": 2, "only": {"_count": 2}}, "as": {"_count": 1, "great": {"_count": 1}}, "my": {"_count": 1, "most": {"_count": 1}}, "that": {"_count": 1, "Im": {"_count": 1}}, "earthbound": {"_count": 1, "and": {"_count": 1}}, "safe": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "unlikely": {"_count": 1, "that": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "lay": {"_count": 1, "beneath": {"_count": 1}}, "a": {"_count": 1, "symbol": {"_count": 1}}, "he": {"_count": 1, "can": {"_count": 1}}, "stirred": {"_count": 1, "feebly": {"_count": 1}}, "attached": {"_count": 1, "to": {"_count": 1}}}, "desserts": {"_count": 3, "appeared": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 2, "disappeared": {"_count": 1}, "": {"_count": 1}}}, "Blocks": {"_count": 1, "of": {"_count": 1, "ice": {"_count": 1}}}, "apple": {"_count": 14, "pies": {"_count": 1, "treacle": {"_count": 1}}, "pie": {"_count": 2, "the": {"_count": 1}, "but": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 4}}, "tree": {"_count": 1, "beside": {"_count": 1}}, "cores": {"_count": 1, "and": {"_count": 1}}, "tart": {"_count": 2, "": {"_count": 2}}, "trees": {"_count": 1, "bent": {"_count": 1}}, "and": {"_count": 1, "as": {"_count": 1}}}, "pies": {"_count": 10, "treacle": {"_count": 1, "tarts": {"_count": 1}}, "some": {"_count": 1, "Christmas": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 2, "dishes": {"_count": 1}, "Dobby": {"_count": 1}}, "somehow": {"_count": 1, "Belby": {"_count": 1}}}, "treacle": {"_count": 16, "tarts": {"_count": 1, "chocolate": {"_count": 1}}, "tart": {"_count": 8, "the": {"_count": 2}, "but": {"_count": 1}, "": {"_count": 3}, "his": {"_count": 1}, "to": {"_count": 1}}, "pudding": {"_count": 1, "": {"_count": 1}}, "toffee": {"_count": 5, "while": {"_count": 1}, "had": {"_count": 1}, "since": {"_count": 1}, "which": {"_count": 1}, "from": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}}, "tarts": {"_count": 2, "chocolate": {"_count": 1, "eclairs": {"_count": 1}}, "and": {"_count": 1, "sandwiches": {"_count": 1}}}, "eclairs": {"_count": 6, "and": {"_count": 2, "jam": {"_count": 1}, "Harry": {"_count": 1}}, "is": {"_count": 1, "there": {"_count": 1}}, "was": {"_count": 1, "already": {"_count": 1}}, "gave": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 1, "Dumbledores": {"_count": 1}}}, "doughnuts": {"_count": 2, "trifle": {"_count": 1, "strawberries": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "trifle": {"_count": 6, "strawberries": {"_count": 1, "Jell": {"_count": 1}}, "and": {"_count": 1, "Christmas": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "or": {"_count": 1, "his": {"_count": 1}}, "having": {"_count": 1, "managed": {"_count": 1}}}, "strawberries": {"_count": 1, "Jell": {"_count": 1, "0": {"_count": 1}}}, "Jell": {"_count": 1, "0": {"_count": 1, "rice": {"_count": 1}}}, "0": {"_count": 3, "rice": {"_count": 1, "pudding": {"_count": 1}}, "IRELAND": {"_count": 1, "0": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "rice": {"_count": 3, "pudding": {"_count": 1, "": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "moving": {"_count": 1}}}, "tart": {"_count": 15, "the": {"_count": 2, "talk": {"_count": 1}, "woody": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "want": {"_count": 1}}, "had": {"_count": 1, "melted": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 2}}, "": {"_count": 6, ".": {"_count": 6}}, "his": {"_count": 1, "insides": {"_count": 1}}, "to": {"_count": 1, "which": {"_count": 1}}}, "halfandhalf": {"_count": 1, "said": {"_count": 1, "Seamus": {"_count": 1}}}, "Me": {"_count": 36, "dads": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 12, "!": {"_count": 1}, ".": {"_count": 2}, "?": {"_count": 9}}, "he": {"_count": 3, "said": {"_count": 2}, "whispered": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 3, "said": {"_count": 2}, "Harry": {"_count": 1}}, "a": {"_count": 2, "teacher": {"_count": 1}, "spy": {"_count": 1}}, "said": {"_count": 4, "Harry": {"_count": 2}, "Moody": {"_count": 1}, "Ron": {"_count": 1}}, "dad": {"_count": 3, "was": {"_count": 3}}, "and": {"_count": 2, "Hermione": {"_count": 2}}, "mam": {"_count": 1, "didnt": {"_count": 1}}, "an": {"_count": 1, "Olympe": {"_count": 1}}, "mentioning": {"_count": 1, "Cedric": {"_count": 1}}, "tactless": {"_count": 1, "": {"_count": 1}}, "cousin": {"_count": 1, "Fergus": {"_count": 1}}}, "dads": {"_count": 19, "a": {"_count": 2, "Muggle": {"_count": 1}, "milkman": {"_count": 1}}, "old": {"_count": 2, "cloak": {"_count": 1}, "wand": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "frightened": {"_count": 1, "the": {"_count": 1}}, "well": {"_count": 1, "dead": {"_count": 1}}, "best": {"_count": 1, "friend": {"_count": 1}}, "got": {"_count": 1, "us": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "here": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Muggleborn": {"_count": 1, "and": {"_count": 1}}, "place": {"_count": 1, "said": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "been": {"_count": 1, "hurt": {"_count": 1}}, "mate": {"_count": 1, "isnt": {"_count": 1}}, "house": {"_count": 1, "before": {"_count": 1}}}, "til": {"_count": 2, "after": {"_count": 1, "they": {"_count": 1}}, "you": {"_count": 1, "hear": {"_count": 1}}}, "Bit": {"_count": 16, "of": {"_count": 4, "a": {"_count": 4}}, "keen": {"_count": 1, "arent": {"_count": 1}}, "stupid": {"_count": 1, "really": {"_count": 1}}, "embarrassing": {"_count": 1, "Mr": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "unnatural": {"_count": 1, "": {"_count": 1}}, "o": {"_count": 1, "sun": {"_count": 1}}, "more": {"_count": 1, "sheltered": {"_count": 1}}, "grouchy": {"_count": 1, "yeah": {"_count": 1}}, "further": {"_count": 1, "said": {"_count": 1}}, "like": {"_count": 1, "Gran": {"_count": 1}}, "dusty": {"_count": 1, "": {"_count": 1}}, "unfortunate": {"_count": 1, "really": {"_count": 1}}}, "gran": {"_count": 6, "brought": {"_count": 1, "me": {"_count": 1}}, "sent": {"_count": 3, "him": {"_count": 1}, "me": {"_count": 1}, "them": {"_count": 1}}, "says": {"_count": 1, "thats": {"_count": 1}}, "talk": {"_count": 1, "about": {"_count": 1}}}, "Algie": {"_count": 4, "kept": {"_count": 1, "trying": {"_count": 1}}, "came": {"_count": 1, "round": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}, "got": {"_count": 1, "it": {"_count": 1}}}, "Blackpool": {"_count": 1, "pier": {"_count": 1, "once": {"_count": 1}}}, "pier": {"_count": 1, "once": {"_count": 1, "I": {"_count": 1}}}, "ankles": {"_count": 29, "when": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "were": {"_count": 2, "too": {"_count": 1}, "attached": {"_count": 1}}, "and": {"_count": 3, "turned": {"_count": 1}, "he": {"_count": 1}, "shins": {"_count": 1}}, "It": {"_count": 1, "flew": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "pulled": {"_count": 1, "on": {"_count": 1}}, "they": {"_count": 1, "stepped": {"_count": 1}}, "he": {"_count": 3, "fixed": {"_count": 1}, "was": {"_count": 1}, "overbalanced": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "broken": {"_count": 1, "I": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}}, "Enid": {"_count": 3, "offered": {"_count": 1, "him": {"_count": 1}}, "Smeek": {"_count": 1, "whose": {"_count": 1}}, "Smeeks": {"_count": 1, "slightly": {"_count": 1}}}, "offered": {"_count": 51, "him": {"_count": 8, "a": {"_count": 3}, "another": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "nice": {"_count": 1}, "but": {"_count": 1}}, "them": {"_count": 3, "stoat": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}}, "to": {"_count": 11, "resign": {"_count": 1}, "forge": {"_count": 1}, "crystal": {"_count": 1}, "help": {"_count": 1}, "carry": {"_count": 1}, "attach": {"_count": 1}, "sell": {"_count": 1}, "them": {"_count": 1}, "share": {"_count": 1}, "set": {"_count": 1}, "show": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "you": {"_count": 4, "some": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 1}}, "it": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "Hedwig": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "his": {"_count": 1}}, "Dobby": {"_count": 1, "ten": {"_count": 1}}, "Cedric": {"_count": 1, "help": {"_count": 1}}, "around": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 2, "position": {"_count": 1}, "thousandGalleon": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "freedoms": {"_count": 1, "weve": {"_count": 1}}, "this": {"_count": 1, "position": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}, "the": {"_count": 3, "post": {"_count": 2}, "sword": {"_count": 1}}, "Harry": {"_count": 2, "a": {"_count": 1}, "and": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "serious": {"_count": 1, "protection": {"_count": 1}}, "us": {"_count": 1, "proof": {"_count": 1}}}, "meringue": {"_count": 2, "and": {"_count": 1, "he": {"_count": 1}}, "pie": {"_count": 1, "Uncle": {"_count": 1}}}, "accidentally": {"_count": 32, "let": {"_count": 3, "go": {"_count": 1}, "something": {"_count": 1}, "slip": {"_count": 1}}, "knocked": {"_count": 2, "me": {"_count": 1}, "her": {"_count": 1}}, "squashed": {"_count": 1, "his": {"_count": 1}}, "plastered": {"_count": 1, "frog": {"_count": 1}}, "set": {"_count": 1, "a": {"_count": 1}}, "asked": {"_count": 1, "for": {"_count": 1}}, "trodden": {"_count": 1, "on": {"_count": 1}}, "beheading": {"_count": 1, "a": {"_count": 1}}, "spat": {"_count": 1, "out": {"_count": 1}}, "cracking": {"_count": 1, "his": {"_count": 1}}, "spraying": {"_count": 1, "Harry": {"_count": 1}}, "transplanted": {"_count": 1, "his": {"_count": 1}}, "trod": {"_count": 1, "on": {"_count": 1}}, "sending": {"_count": 1, "much": {"_count": 1}}, "splattering": {"_count": 1, "Fleurs": {"_count": 1}}, "or": {"_count": 1, "on": {"_count": 1}}, "spilling": {"_count": 1, "scrambled": {"_count": 1}}, "pick": {"_count": 1, "them": {"_count": 1}}, "spend": {"_count": 1, "them": {"_count": 1}}, "put": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "didnt": {"_count": 1, "it": {"_count": 1}}, "against": {"_count": 1, "Ginny": {"_count": 1}}, "upon": {"_count": 1, "them": {"_count": 1}}, "nudged": {"_count": 1, "one": {"_count": 1}}, "by": {"_count": 1, "one": {"_count": 1}}}, "bounced": {"_count": 24, "all": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "ceiling": {"_count": 1}}, "backward": {"_count": 1, "Rons": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "off": {"_count": 6, "Nevilles": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 3}, "him": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}, "back": {"_count": 2, "off": {"_count": 1}, "at": {"_count": 1}}, "upward": {"_count": 2, "once": {"_count": 1}, "again": {"_count": 1}}, "higher": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "all": {"_count": 1}}, "nervously": {"_count": 1, "up": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "up": {"_count": 2, "and": {"_count": 2}}, "and": {"_count": 2, "shrieked": {"_count": 1}, "smashed": {"_count": 1}}}, "lessons": {"_count": 131, "I": {"_count": 1, "do": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}, "took": {"_count": 2, "place": {"_count": 2}}, "": {"_count": 21, ".": {"_count": 12}, "?": {"_count": 6}, "!": {"_count": 3}}, "hed": {"_count": 1, "had": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 2}}, "that": {"_count": 2, "day": {"_count": 1}, "many": {"_count": 1}}, "too": {"_count": 1, "were": {"_count": 1}}, "it": {"_count": 2, "wasnt": {"_count": 1}, "was": {"_count": 1}}, "were": {"_count": 10, "turning": {"_count": 1}, "taking": {"_count": 1}, "just": {"_count": 1}, "not": {"_count": 1}, "becoming": {"_count": 1}, "devoted": {"_count": 1}, "leading": {"_count": 1}, "so": {"_count": 1}, "uncomfortable": {"_count": 1}, "suspended": {"_count": 1}}, "well": {"_count": 1, "get": {"_count": 1}}, "in": {"_count": 3, "little": {"_count": 1}, "his": {"_count": 1}, "which": {"_count": 1}}, "they": {"_count": 1, "might": {"_count": 1}}, "with": {"_count": 12, "the": {"_count": 1}, "Snape": {"_count": 5}, "Professor": {"_count": 1}, "him": {"_count": 2}, "me": {"_count": 1}, "you": {"_count": 1}, "Dumbledore": {"_count": 1}}, "from": {"_count": 2, "Lupin": {"_count": 1}, "Harry": {"_count": 1}}, "as": {"_count": 1, "soon": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "tomorrow": {"_count": 2, "morning": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 3, "and": {"_count": 1}, "thought": {"_count": 1}, "continued": {"_count": 1}}, "thanks": {"_count": 1, "": {"_count": 1}}, "being": {"_count": 1, "much": {"_count": 1}}, "and": {"_count": 4, "it": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}, "Quidditch": {"_count": 1}}, "now": {"_count": 2, "or": {"_count": 1}, "Im": {"_count": 1}}, "has": {"_count": 1, "he": {"_count": 1}}, "weighed": {"_count": 1, "down": {"_count": 1}}, "are": {"_count": 1, "any": {"_count": 1}}, "on": {"_count": 2, "unicorns": {"_count": 1}, "Apparition": {"_count": 1}}, "free": {"_count": 1, "": {"_count": 1}}, "sniggered": {"_count": 1, "Fred": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Luna": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "two": {"_count": 1}, "him": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "but": {"_count": 2, "lectured": {"_count": 1}, "I": {"_count": 1}}, "lecturing": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "dwelled": {"_count": 1}, "was": {"_count": 1}}, "planned": {"_count": 2, "said": {"_count": 1}, "for": {"_count": 1}}, "once": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 4, "give": {"_count": 1}, "struggle": {"_count": 1}, "search": {"_count": 1}, "nobody": {"_count": 1}}, "does": {"_count": 1, "he": {"_count": 1}}, "walking": {"_count": 1, "in": {"_count": 1}}, "ter": {"_count": 1, "prepare": {"_count": 1}}, "losing": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "Hermione": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}, "so": {"_count": 1, "it": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "when": {"_count": 1, "Dumbledore": {"_count": 1}}, "which": {"_count": 1, "ensured": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "whether": {"_count": 1, "Lupin": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "Saturday": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "straight": {"_count": 1, "after": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "themselves": {"_count": 1, "had": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "Quidditch": {"_count": 1, "practice": {"_count": 1}}, "or": {"_count": 1, "from": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "until": {"_count": 1, "I": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "growled": {"_count": 1, "Ron": {"_count": 1}}}, "matches": {"_count": 11, "into": {"_count": 1, "needles": {"_count": 1}}, "had": {"_count": 1, "lost": {"_count": 1}}, "are": {"_count": 2, "to": {"_count": 1}, "back": {"_count": 1}}, "and": {"_count": 1, "snapping": {"_count": 1}}, "werent": {"_count": 1, "called": {"_count": 1}}, "with": {"_count": 1, "dubious": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "littered": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}}, "needles": {"_count": 6, "and": {"_count": 2, "that": {"_count": 1}, "looked": {"_count": 1}}, "everywhere": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "flashed": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "warm": {"_count": 64, "and": {"_count": 15, "sleepy": {"_count": 1}, "dry": {"_count": 3}, "the": {"_count": 1}, "smoky": {"_count": 1}, "contented": {"_count": 1}, "soft": {"_count": 1}, "faked": {"_count": 1}, "comfortable": {"_count": 4}, "alive": {"_count": 1}, "light": {"_count": 1}}, "when": {"_count": 1, "Snape": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "day": {"_count": 2, "there": {"_count": 1}, "they": {"_count": 1}}, "flattering": {"_count": 1, "voice": {"_count": 1}}, "shallows": {"_count": 1, "": {"_count": 1}}, "breeze": {"_count": 2, "he": {"_count": 1}, "swept": {"_count": 1}}, "up": {"_count": 3, "his": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "blood": {"_count": 1, "drenched": {"_count": 1}}, "sweeping": {"_count": 1, "glorious": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "breath": {"_count": 1, "": {"_count": 1}}, "air": {"_count": 1, "was": {"_count": 1}}, "living": {"_count": 1, "room": {"_count": 1}}, "welcome": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "weight": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "very": {"_count": 1}}, "dry": {"_count": 1, "grass": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "glow": {"_count": 1, "that": {"_count": 1}}, "ball": {"_count": 1, "under": {"_count": 1}}, "summers": {"_count": 1, "night": {"_count": 1}}, "weather": {"_count": 1, "": {"_count": 1}}, "autumn": {"_count": 1, "air": {"_count": 1}}, "gush": {"_count": 1, "of": {"_count": 1}}, "summer": {"_count": 1, "air": {"_count": 1}}, "glass": {"_count": 1, "sphere": {"_count": 1}}, "yet": {"_count": 1, "did": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "common": {"_count": 1, "room": {"_count": 1}}, "toffeescented": {"_count": 1, "air": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "grass": {"_count": 1, "lake": {"_count": 1}}, "tent": {"_count": 1, "the": {"_count": 1}}, "hand": {"_count": 1, "had": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "ground": {"_count": 1, "": {"_count": 1}}, "nor": {"_count": 1, "cold": {"_count": 1}}}, "sleepy": {"_count": 21, "looked": {"_count": 1, "up": {"_count": 1}}, "even": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 3, "do": {"_count": 1}, "talk": {"_count": 1}, "pay": {"_count": 1}}, "silence": {"_count": 3, "that": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "grunt": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 2, "stupid": {"_count": 1}, "dullwitted": {"_count": 1}}, "voices": {"_count": 1, "called": {"_count": 1}}, "but": {"_count": 1, "then": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "until": {"_count": 1, "Ginny": {"_count": 1}}, "looking": {"_count": 1, "guard": {"_count": 1}}, "too": {"_count": 1, "though": {"_count": 1}}, "chickens": {"_count": 1, "coming": {"_count": 1}}}, "deeply": {"_count": 81, "from": {"_count": 2, "his": {"_count": 2}}, "listening": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "immersed": {"_count": 2, "in": {"_count": 2}}, "boring": {"_count": 1, "book": {"_count": 1}}, "disapproving": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "shaken": {"_count": 2, "": {"_count": 1}, "Frank": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "disappointed": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "awe": {"_count": 1}, "love": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "fists": {"_count": 1}}, "impressed": {"_count": 6, "and": {"_count": 1}, "": {"_count": 3}, "that": {"_count": 1}, "of": {"_count": 1}}, "and": {"_count": 4, "looked": {"_count": 1}, "started": {"_count": 1}, "looking": {"_count": 1}, "that": {"_count": 1}}, "mistrusted": {"_count": 1, "the": {"_count": 1}}, "involved": {"_count": 1, "in": {"_count": 1}}, "unpleasant": {"_count": 1, "silence": {"_count": 1}}, "etched": {"_count": 1, "": {"_count": 1}}, "admired": {"_count": 1, "Professor": {"_count": 1}}, "relieved": {"_count": 1, "": {"_count": 1}}, "amused": {"_count": 1, "when": {"_count": 1}}, "to": {"_count": 2, "Ron": {"_count": 1}, "heart": {"_count": 1}}, "that": {"_count": 3, "she": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "again": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "uncomfortable": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 2, "turned": {"_count": 2}}, "as": {"_count": 2, "though": {"_count": 1}, "a": {"_count": 1}}, "appreciate": {"_count": 1, "a": {"_count": 1}}, "resentful": {"_count": 1, "tone": {"_count": 1}}, "That": {"_count": 1, "night": {"_count": 1}}, "regrets": {"_count": 1, "the": {"_count": 1}}, "lined": {"_count": 1, "face": {"_count": 1}}, "thankful": {"_count": 1, "that": {"_count": 1}}, "regret": {"_count": 1, "that": {"_count": 1}}, "asleep": {"_count": 2, "to": {"_count": 1}, "but": {"_count": 1}}, "amusing": {"_count": 1, "and": {"_count": 1}}, "wounded": {"_count": 1, "voice": {"_count": 1}}, "ashamed": {"_count": 1, "that": {"_count": 1}}, "troubled": {"_count": 1, "now": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "ingrained": {"_count": 1, "habit": {"_count": 1}}, "uninviting": {"_count": 1, "": {"_count": 1}}, "purple": {"_count": 1, "as": {"_count": 1}}, "scarred": {"_count": 1, "face": {"_count": 1}}}, "goblet": {"_count": 91, "": {"_count": 23, ".": {"_count": 20}, "!": {"_count": 1}, "?": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 6, "eggnog": {"_count": 1}, "orange": {"_count": 1}, "wine": {"_count": 2}, "champagne": {"_count": 2}}, "which": {"_count": 2, "was": {"_count": 1}, "seconds": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "and": {"_count": 7, "sniffed": {"_count": 1}, "pulled": {"_count": 1}, "was": {"_count": 1}, "drank": {"_count": 1}, "he": {"_count": 1}, "getting": {"_count": 1}, "clicked": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "was": {"_count": 2, "still": {"_count": 1}, "slackening": {"_count": 1}}, "carefully": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "will": {"_count": 2, "return": {"_count": 1}, "be": {"_count": 1}}, "constitutes": {"_count": 1, "a": {"_count": 1}}, "youre": {"_count": 1, "laughing": {"_count": 1}}, "just": {"_count": 1, "gobbed": {"_count": 1}}, "is": {"_count": 1, "almost": {"_count": 1}}, "turned": {"_count": 1, "suddenly": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "knowing": {"_count": 1, "hed": {"_count": 1}}, "into": {"_count": 5, "forgetting": {"_count": 1}, "accepting": {"_count": 1}, "the": {"_count": 2}, "Dumbledore": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "Dumbledore": {"_count": 1}}, "not": {"_count": 1, "one": {"_count": 1}}, "did": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "I": {"_count": 1}}, "hes": {"_count": 1, "going": {"_count": 1}}, "shouldnt": {"_count": 1, "be": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "slowly": {"_count": 1, "looking": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 4, "was": {"_count": 1}, "staggered": {"_count": 1}, "sank": {"_count": 1}, "had": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "coughing": {"_count": 1, "sopping": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 2, "toward": {"_count": 1}, "into": {"_count": 1}}, "from": {"_count": 1, "Harrys": {"_count": 1}}, "drained": {"_count": 1, "every": {"_count": 1}}, "again": {"_count": 1, "instead": {"_count": 1}}, "filled": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "tumbling": {"_count": 1, "from": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}}, "absurd": {"_count": 9, "turban": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "impossible": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "ease": {"_count": 1, "Potter": {"_count": 1}}, "burglar": {"_count": 1, "alarms": {"_count": 1}}, "turtle": {"_count": 1, "on": {"_count": 1}}}, "teacher": {"_count": 149, "with": {"_count": 3, "greasy": {"_count": 1}, "the": {"_count": 1}, "whom": {"_count": 1}}, "looked": {"_count": 1, "past": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "Snape": {"_count": 1, "whose": {"_count": 1}}, "was": {"_count": 3, "a": {"_count": 1}, "sitting": {"_count": 1}, "saying": {"_count": 1}}, "to": {"_count": 4, "cross": {"_count": 1}, "sign": {"_count": 1}, "watch": {"_count": 1}, "come": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "Madam": {"_count": 1, "Hooch": {"_count": 1}}, "": {"_count": 33, "?": {"_count": 5}, ".": {"_count": 23}, "!": {"_count": 5}}, "hed": {"_count": 1, "do": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "at": {"_count": 6, "Hogwarts": {"_count": 5}, "Dumbledores": {"_count": 1}}, "and": {"_count": 9, "Harry": {"_count": 1}, "the": {"_count": 1}, "head": {"_count": 1}, "Hagrid": {"_count": 1}, "has": {"_count": 1}, "a": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}, "if": {"_count": 1}}, "asked": {"_count": 1, "Flint": {"_count": 1}}, "asks": {"_count": 1, "him": {"_count": 1}}, "Professor": {"_count": 6, "Gilderoy": {"_count": 1}, "Snape": {"_count": 1}, "McGonagall": {"_count": 1}, "Umbridge": {"_count": 2}, "Trelawney": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "about": {"_count": 1}}, "here": {"_count": 1, "sir": {"_count": 1}}, "Dumbledore": {"_count": 2, "seemed": {"_count": 1}, "but": {"_count": 1}}, "said": {"_count": 6, "Harry": {"_count": 3}, "Hermione": {"_count": 1}, "George": {"_count": 1}, "Dumbledore": {"_count": 1}}, "who": {"_count": 6, "knows": {"_count": 1}, "lasted": {"_count": 1}, "had": {"_count": 1}, "actually": {"_count": 1}, "is": {"_count": 1}, "needs": {"_count": 1}}, "retired": {"_count": 1, "at": {"_count": 1}}, "would": {"_count": 2, "mean": {"_count": 1}, "reappear": {"_count": 1}}, "Harry": {"_count": 3, "read": {"_count": 1}, "had": {"_count": 1}, "would": {"_count": 1}}, "like": {"_count": 2, "that": {"_count": 1}, "GrubblyPlank": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "had": {"_count": 6, "brought": {"_count": 1}, "already": {"_count": 1}, "once": {"_count": 1}, "ever": {"_count": 1}, "a": {"_count": 1}, "had": {"_count": 1}}, "were": {"_count": 1, "present": {"_count": 1}}, "weve": {"_count": 2, "ever": {"_count": 2}}, "he": {"_count": 2, "hid": {"_count": 1}, "would": {"_count": 1}}, "so": {"_count": 2, "I": {"_count": 1}, "that": {"_count": 1}}, "whose": {"_count": 1, "hat": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "so": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "questioned": {"_count": 1, "Neville": {"_count": 1}}, "standing": {"_count": 1, "in": {"_count": 1}}, "she": {"_count": 2, "is": {"_count": 1}, "that": {"_count": 1}}, "a": {"_count": 1, "proper": {"_count": 1}}, "I": {"_count": 2, "cant": {"_count": 1}, "quite": {"_count": 1}}, "upon": {"_count": 1, "us": {"_count": 1}}, "present": {"_count": 1, "when": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "Thas": {"_count": 1, "brave": {"_count": 1}}, "has": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "pushed": {"_count": 1, "open": {"_count": 1}}, "without": {"_count": 1, "consulting": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "witnesses": {"_count": 1, "attempted": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "dont": {"_count": 1, "we": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "Snape": {"_count": 1}}, "aren": {"_count": 1, "I": {"_count": 1}}, "can": {"_count": 1, "play": {"_count": 1}}, "for": {"_count": 1, "longer": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "Alecto": {"_count": 1, "Carrow": {"_count": 1}}, "You": {"_count": 1, "were": {"_count": 1}}}, "greasy": {"_count": 16, "black": {"_count": 6, "hair": {"_count": 6}}, "voice": {"_count": 1, "was": {"_count": 1}}, "hair": {"_count": 3, "back": {"_count": 1}, "who": {"_count": 1}, "of": {"_count": 1}}, "shoulderlength": {"_count": 1, "black": {"_count": 1}}, "head": {"_count": 1, "And": {"_count": 1}}, "temple": {"_count": 1, "": {"_count": 1}}, "roots": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "curtains": {"_count": 1, "of": {"_count": 1}}}, "hooked": {"_count": 15, "nose": {"_count": 11, "and": {"_count": 3}, "at": {"_count": 4}, "": {"_count": 1}, "barely": {"_count": 1}, "illuminated": {"_count": 1}, "as": {"_count": 1}}, "around": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}, "up": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "cup": {"_count": 1}}}, "sallow": {"_count": 11, "skin": {"_count": 4, "": {"_count": 1}, "a": {"_count": 1}, "had": {"_count": 1}, "his": {"_count": 1}}, "face": {"_count": 5, "": {"_count": 2}, "turn": {"_count": 1}, "and": {"_count": 1}, "framed": {"_count": 1}}, "small": {"_count": 1, "stringy": {"_count": 1}}, "cheeks": {"_count": 1, "as": {"_count": 1}}}, "hooknosed": {"_count": 4, "teacher": {"_count": 2, "looked": {"_count": 1}, "Snape": {"_count": 1}}, "man": {"_count": 1, "was": {"_count": 1}}, "blackhaired": {"_count": 1, "man": {"_count": 1}}}, "Quirrells": {"_count": 23, "turban": {"_count": 4, "straight": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}, "Hermione": {"_count": 1}}, "job": {"_count": 1, "": {"_count": 1}}, "lessons": {"_count": 1, "turned": {"_count": 1}}, "\u2018hocuspocus": {"_count": 1, "I": {"_count": 1}}, "stutter": {"_count": 1, "": {"_count": 1}}, "spell": {"_count": 2, "and": {"_count": 2}}, "voice": {"_count": 2, "": {"_count": 1}, "trailed": {"_count": 1}}, "footsteps": {"_count": 1, "had": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "too": {"_count": 1, "scared": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 1}, "aaRGH": {"_count": 1}}, "head": {"_count": 3, "looked": {"_count": 1}, "there": {"_count": 1}, "and": {"_count": 1}}, "hand": {"_count": 1, "close": {"_count": 1}}, "terrible": {"_count": 1, "shrieks": {"_count": 1}}, "arm": {"_count": 1, "wrenched": {"_count": 1}}}, "Ouch": {"_count": 22, "": {"_count": 14, "!": {"_count": 14}}, "What": {"_count": 1, "re": {"_count": 1}}, "sorry": {"_count": 2, "Hullo": {"_count": 1}, "Miss": {"_count": 1}}, "look": {"_count": 1, "I": {"_count": 1}}, "Mum": {"_count": 1, "youre": {"_count": 1}}, "yelled": {"_count": 1, "Dean": {"_count": 1}}, "gerroff": {"_count": 1, "gerroff": {"_count": 1}}, "ow": {"_count": 1, "gerroff": {"_count": 1}}}, "Nnothing": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Harder": {"_count": 2, "to": {"_count": 2, "shake": {"_count": 1}, "avoid": {"_count": 1}}}, "Snape": {"_count": 1629, "": {"_count": 248, ".": {"_count": 200}, "?": {"_count": 32}, "!": {"_count": 16}}, "for": {"_count": 7, "a": {"_count": 2}, "company": {"_count": 1}, "answers": {"_count": 1}, "no": {"_count": 1}, "Malfoys": {"_count": 1}, "so": {"_count": 1}}, "didnt": {"_count": 4, "look": {"_count": 1}, "dislike": {"_count": 1}, "seem": {"_count": 1}, "reply": {"_count": 1}}, "whose": {"_count": 3, "laugh": {"_count": 1}, "black": {"_count": 1}, "voice": {"_count": 1}}, "disliked": {"_count": 1, "him": {"_count": 1}}, "like": {"_count": 2, "Flitwick": {"_count": 1}, "this": {"_count": 1}}, "finished": {"_count": 2, "calling": {"_count": 1}, "him": {"_count": 1}}, "had": {"_count": 90, "the": {"_count": 1}, "started": {"_count": 1}, "left": {"_count": 2}, "just": {"_count": 3}, "gone": {"_count": 2}, "been": {"_count": 7}, "given": {"_count": 2}, "to": {"_count": 4}, "made": {"_count": 1}, "disarmed": {"_count": 1}, "seen": {"_count": 3}, "acquired": {"_count": 1}, "no": {"_count": 2}, "picked": {"_count": 1}, "entered": {"_count": 1}, "regained": {"_count": 1}, "disliked": {"_count": 1}, "arrived": {"_count": 1}, "his": {"_count": 1}, "reached": {"_count": 1}, "saved": {"_count": 1}, "turned": {"_count": 2}, "glided": {"_count": 1}, "suspected": {"_count": 1}, "drawn": {"_count": 1}, "returned": {"_count": 1}, "told": {"_count": 2}, "said": {"_count": 2}, "not": {"_count": 3}, "looked": {"_count": 1}, "done": {"_count": 1}, "already": {"_count": 2}, "once": {"_count": 1}, "moved": {"_count": 1}, "struck": {"_count": 1}, "lifted": {"_count": 1}, "settled": {"_count": 1}, "directed": {"_count": 1}, "felt": {"_count": 1}, "always": {"_count": 1}, "thrown": {"_count": 2}, "ignored": {"_count": 1}, "stopped": {"_count": 1}, "emerged": {"_count": 1}, "gotten": {"_count": 1}, "placed": {"_count": 1}, "come": {"_count": 1}, "finally": {"_count": 1}, "imposed": {"_count": 1}, "taken": {"_count": 2}, "tried": {"_count": 1}, "burst": {"_count": 1}, "performed": {"_count": 1}, "clearly": {"_count": 1}, "bewitched": {"_count": 1}, "healed": {"_count": 1}, "an": {"_count": 2}, "managed": {"_count": 1}, "mended": {"_count": 1}, "reinstated": {"_count": 1}, "removed": {"_count": 1}, "jumped": {"_count": 1}, "even": {"_count": 1}, "dropped": {"_count": 1}}, "suddenly": {"_count": 3, "": {"_count": 2}, "did": {"_count": 1}}, "s": {"_count": 78, "lips": {"_count": 1}, "fading": {"_count": 1}, "face": {"_count": 3}, "robes": {"_count": 1}, "sudden": {"_count": 1}, "leg": {"_count": 1}, "feelings": {"_count": 1}, "least": {"_count": 1}, "desk": {"_count": 7}, "upper": {"_count": 1}, "classes": {"_count": 1}, "palm": {"_count": 1}, "eyes": {"_count": 4}, "profile": {"_count": 2}, "black": {"_count": 3}, "never": {"_count": 1}, "mouth": {"_count": 2}, "office": {"_count": 8}, "wand": {"_count": 3}, "hatred": {"_count": 1}, "overlarge": {"_count": 1}, "other": {"_count": 1}, "in": {"_count": 1}, "dungeon": {"_count": 1}, "back": {"_count": 3}, "greasy": {"_count": 1}, "sallow": {"_count": 1}, "outstretched": {"_count": 1}, "always": {"_count": 1}, "certainly": {"_count": 1}, "arm": {"_count": 1}, "lip": {"_count": 2}, "pallid": {"_count": 1}, "I": {"_count": 1}, "cold": {"_count": 1}, "eye": {"_count": 1}, "feet": {"_count": 1}, "snide": {"_count": 1}, "punishment": {"_count": 1}, "involved": {"_count": 1}, "history": {"_count": 1}, "repentance": {"_count": 1}, "duplicity": {"_count": 1}, "mother": {"_count": 1}, "new": {"_count": 1}, "trustworthiness": {"_count": 1}, "crackdown": {"_count": 1}, "figure": {"_count": 1}, "appearance": {"_count": 1}, "bitter": {"_count": 1}, "supposed": {"_count": 1}}, "expect": {"_count": 1, "him": {"_count": 1}}, "was": {"_count": 119, "still": {"_count": 2}, "limping": {"_count": 1}, "holding": {"_count": 1}, "saying": {"_count": 5}, "in": {"_count": 3}, "trying": {"_count": 8}, "following": {"_count": 1}, "so": {"_count": 2}, "looking": {"_count": 5}, "sweeping": {"_count": 1}, "standing": {"_count": 2}, "threatening": {"_count": 1}, "shaking": {"_count": 2}, "Harrys": {"_count": 1}, "startled": {"_count": 1}, "head": {"_count": 2}, "sitting": {"_count": 1}, "bearing": {"_count": 1}, "back": {"_count": 1}, "kind": {"_count": 1}, "running": {"_count": 1}, "now": {"_count": 2}, "hanging": {"_count": 2}, "talking": {"_count": 1}, "at": {"_count": 1}, "pulling": {"_count": 1}, "slightly": {"_count": 1}, "lifted": {"_count": 1}, "beside": {"_count": 1}, "matched": {"_count": 1}, "avoiding": {"_count": 1}, "forcing": {"_count": 1}, "going": {"_count": 4}, "concealing": {"_count": 1}, "pausing": {"_count": 1}, "about": {"_count": 2}, "teaching": {"_count": 2}, "never": {"_count": 2}, "thoroughly": {"_count": 1}, "indeed": {"_count": 1}, "truly": {"_count": 1}, "doing": {"_count": 2}, "likely": {"_count": 1}, "no": {"_count": 2}, "goading": {"_count": 1}, "as": {"_count": 1}, "angry": {"_count": 1}, "unnerved": {"_count": 1}, "growing": {"_count": 1}, "determined": {"_count": 1}, "on": {"_count": 2}, "clearly": {"_count": 1}, "beginning": {"_count": 1}, "once": {"_count": 1}, "watching": {"_count": 1}, "just": {"_count": 1}, "a": {"_count": 3}, "thinking": {"_count": 1}, "knocked": {"_count": 1}, "able": {"_count": 1}, "offering": {"_count": 2}, "simply": {"_count": 1}, "feelin": {"_count": 1}, "shouting": {"_count": 1}, "involved": {"_count": 1}, "sorry": {"_count": 1}, "there": {"_count": 1}, "too": {"_count": 1}, "smiling": {"_count": 1}, "forced": {"_count": 1}, "inches": {"_count": 1}, "not": {"_count": 1}, "staring": {"_count": 1}, "hurrying": {"_count": 1}, "panting": {"_count": 1}, "waiting": {"_count": 1}, "wringing": {"_count": 1}, "slumped": {"_count": 1}, "pacing": {"_count": 1}, "muttering": {"_count": 1}, "kneeling": {"_count": 1}, "Dumbledores": {"_count": 1}, "mine": {"_count": 1}}, "however": {"_count": 4, "was": {"_count": 1}, "remained": {"_count": 1}, "Ron": {"_count": 1}, "looked": {"_count": 1}}, "said": {"_count": 42, "And": {"_count": 1}, "Hagrid": {"_count": 2}, "it": {"_count": 1}, "Lockhart": {"_count": 1}, "Leave": {"_count": 1}, "Lupin": {"_count": 1}, "ignoring": {"_count": 1}, "silkily": {"_count": 1}, "suddenly": {"_count": 1}, "tapping": {"_count": 1}, "hitting": {"_count": 1}, "Fudge": {"_count": 1}, "calmly": {"_count": 1}, "Harry": {"_count": 2}, "curtly": {"_count": 1}, "Moodys": {"_count": 1}, "his": {"_count": 1}, "something": {"_count": 1}, "stopping": {"_count": 1}, "in": {"_count": 1}, "sleekly": {"_count": 1}, "that": {"_count": 1}, "Legilimency": {"_count": 1}, "Umbridge": {"_count": 1}, "Dumbledore": {"_count": 1}, "Professor": {"_count": 1}, "nothing": {"_count": 4}, "No": {"_count": 1}, "Demelza": {"_count": 1}, "quietly": {"_count": 1}, "You": {"_count": 1}, "coldly": {"_count": 1}, "so": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "The": {"_count": 1}, "I": {"_count": 1}}, "put": {"_count": 2, "them": {"_count": 1}, "your": {"_count": 1}}, "clearing": {"_count": 1, "the": {"_count": 1}}, "spat": {"_count": 3, "at": {"_count": 1}, "bitterly": {"_count": 1}, "": {"_count": 1}}, "can": {"_count": 4, "turn": {"_count": 1}, "favor": {"_count": 1}, "get": {"_count": 2}}, "hate": {"_count": 1, "him": {"_count": 1}}, "liked": {"_count": 1, "hardly": {"_count": 1}}, "that": {"_count": 9, "he": {"_count": 2}, "they": {"_count": 1}, "are": {"_count": 1}, "cryptic": {"_count": 1}, "you": {"_count": 1}, "Harry": {"_count": 1}, "we": {"_count": 1}, "Alecto": {"_count": 1}}, "in": {"_count": 24, "the": {"_count": 3}, "his": {"_count": 5}, "that": {"_count": 1}, "a": {"_count": 8}, "my": {"_count": 1}, "sight": {"_count": 1}, "our": {"_count": 1}, "case": {"_count": 1}, "after": {"_count": 1}, "Dumbledores": {"_count": 1}, "charge": {"_count": 1}}, "with": {"_count": 11, "Quirrell": {"_count": 1}, "a": {"_count": 5}, "frightened": {"_count": 1}, "ten": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}}, "bent": {"_count": 1, "over": {"_count": 1}}, "gave": {"_count": 5, "Harry": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "another": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "limped": {"_count": 1, "away": {"_count": 1}}, "if": {"_count": 3, "he": {"_count": 2}, "youd": {"_count": 1}}, "wouldnt": {"_count": 3, "refuse": {"_count": 1}, "have": {"_count": 1}, "see": {"_count": 1}}, "and": {"_count": 69, "Filch": {"_count": 2}, "Mrs": {"_count": 1}, "the": {"_count": 6}, "McGonagall": {"_count": 2}, "he": {"_count": 1}, "begs": {"_count": 1}, "pulled": {"_count": 1}, "said": {"_count": 1}, "checking": {"_count": 1}, "Dumbledore": {"_count": 3}, "Sirius": {"_count": 1}, "pressed": {"_count": 1}, "Karkaroff": {"_count": 1}, "I": {"_count": 2}, "then": {"_count": 2}, "Moody": {"_count": 3}, "Crouch": {"_count": 1}, "myself": {"_count": 1}, "Professor": {"_count": 1}, "Harrys": {"_count": 1}, "Umbridge": {"_count": 1}, "when": {"_count": 1}, "beckoning": {"_count": 1}, "Harry": {"_count": 1}, "read": {"_count": 1}, "muttered": {"_count": 1}, "tell": {"_count": 1}, "ask": {"_count": 1}, "to": {"_count": 1}, "Malfoy": {"_count": 8}, "therein": {"_count": 1}, "seized": {"_count": 1}, "his": {"_count": 3}, "Mundungus": {"_count": 1}, "Peter": {"_count": 1}, "Snape": {"_count": 1}, "got": {"_count": 1}, "Yaxley": {"_count": 3}, "it": {"_count": 1}, "Voldemort": {"_count": 1}, "where": {"_count": 1}, "even": {"_count": 1}, "there": {"_count": 1}, "real": {"_count": 1}, "raised": {"_count": 1}}, "bandages": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 15, "take": {"_count": 2}, "read": {"_count": 1}, "never": {"_count": 1}, "": {"_count": 1}, "be": {"_count": 2}, "speak": {"_count": 1}, "hardly": {"_count": 1}, "overcome": {"_count": 1}, "not": {"_count": 1}, "change": {"_count": 1}, "send": {"_count": 1}, "do": {"_count": 1}, "no": {"_count": 1}}, "look": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "stood": {"_count": 7, "and": {"_count": 1}, "standing": {"_count": 1}, "for": {"_count": 1}, "there": {"_count": 1}, "beside": {"_count": 1}, "nearby": {"_count": 1}, "again": {"_count": 1}}, "she": {"_count": 3, "crouched": {"_count": 1}, "didnt": {"_count": 1}, "said": {"_count": 1}}, "to": {"_count": 16, "realize": {"_count": 1}, "steal": {"_count": 1}, "show": {"_count": 1}, "take": {"_count": 1}, "slip": {"_count": 1}, "teach": {"_count": 1}, "penetrate": {"_count": 1}, "release": {"_count": 1}, "mark": {"_count": 1}, "read": {"_count": 1}, "hate": {"_count": 1}, "start": {"_count": 1}, "find": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}, "Lily": {"_count": 1}}, "would": {"_count": 7, "never": {"_count": 1}, "dare": {"_count": 1}, "be": {"_count": 1}, "like": {"_count": 1}, "accept": {"_count": 1}, "want": {"_count": 1}, "": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "do": {"_count": 1, "somethin": {"_count": 1}}, "wasnt": {"_count": 2, "blinking": {"_count": 1}, "yours": {"_count": 1}}, "wouldn": {"_count": 1, "try": {"_count": 1}}, "came": {"_count": 6, "up": {"_count": 1}, "around": {"_count": 1}, "out": {"_count": 1}, "in": {"_count": 1}, "charging": {"_count": 1}, "hurtling": {"_count": 1}}, "silkily": {"_count": 4, "": {"_count": 4}}, "hearing": {"_count": 1, "what": {"_count": 1}}, "who": {"_count": 23, "replied": {"_count": 1}, "already": {"_count": 1}, "would": {"_count": 1}, "was": {"_count": 7}, "took": {"_count": 1}, "seemed": {"_count": 1}, "Harry": {"_count": 1}, "had": {"_count": 5}, "also": {"_count": 1}, "held": {"_count": 1}, "staggered": {"_count": 1}, "for": {"_count": 1}, "fell": {"_count": 1}}, "Harry": {"_count": 10, "moved": {"_count": 1}, "": {"_count": 2}, "resumed": {"_count": 1}, "threw": {"_count": 1}, "added": {"_count": 1}, "Dumbledore": {"_count": 1}, "and": {"_count": 1}, "an": {"_count": 1}, "reminded": {"_count": 1}}, "stole": {"_count": 1, "it": {"_count": 1}}, "hasnt": {"_count": 1, "got": {"_count": 1}}, "near": {"_count": 1, "him": {"_count": 1}}, "wherever": {"_count": 1, "he": {"_count": 1}}, "possibly": {"_count": 1, "know": {"_count": 1}}, "awarded": {"_count": 1, "Hufflepuff": {"_count": 1}}, "turned": {"_count": 10, "on": {"_count": 2}, "and": {"_count": 1}, "to": {"_count": 2}, "it": {"_count": 1}, "again": {"_count": 1}, "back": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}}, "land": {"_count": 1, "nearby": {"_count": 1}}, "sneaking": {"_count": 1, "into": {"_count": 1}}, "enter": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 14, "he": {"_count": 5}, "she": {"_count": 1}, "if": {"_count": 1}, "there": {"_count": 1}, "Snape": {"_count": 2}, "as": {"_count": 1}, "Im": {"_count": 1}, "no": {"_count": 1}, "with": {"_count": 1}}, "his": {"_count": 23, "voice": {"_count": 4}, "black": {"_count": 5}, "long": {"_count": 1}, "face": {"_count": 1}, "eyes": {"_count": 2}, "thin": {"_count": 1}, "cold": {"_count": 1}, "dark": {"_count": 2}, "lip": {"_count": 3}, "wand": {"_count": 2}, "desire": {"_count": 1}}, "interrupted": {"_count": 1, "him": {"_count": 1}}, "taking": {"_count": 2, "a": {"_count": 1}, "out": {"_count": 1}}, "say": {"_count": 1, "your": {"_count": 1}}, "cut": {"_count": 3, "in": {"_count": 1}, "up": {"_count": 1}, "across": {"_count": 1}}, "needs": {"_count": 1, "to": {"_count": 1}}, "helped": {"_count": 1, "protect": {"_count": 1}}, "about": {"_count": 1, "you": {"_count": 1}}, "wants": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "just": {"_count": 1, "wanted": {"_count": 1}}, "made": {"_count": 9, "them": {"_count": 1}, "things": {"_count": 1}, "a": {"_count": 6}, "it": {"_count": 1}}, "or": {"_count": 7, "anyone": {"_count": 1}, "Voldemort": {"_count": 1}, "not": {"_count": 1}, "McGonagall": {"_count": 1}, "Slughorn": {"_count": 1}, "Phineas": {"_count": 1}, "indeed": {"_count": 1}}, "found": {"_count": 2, "out": {"_count": 1}, "that": {"_count": 1}}, "called": {"_count": 3, "them": {"_count": 1}, "You": {"_count": 1}, "into": {"_count": 1}}, "wait": {"_count": 1, "outside": {"_count": 1}}, "went": {"_count": 8, "to": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 5}, "quiet": {"_count": 1}}, "have": {"_count": 1, "said": {"_count": 1}}, "gets": {"_count": 1, "hold": {"_count": 1}}, "might": {"_count": 3, "even": {"_count": 1}, "refer": {"_count": 1}, "just": {"_count": 1}}, "must": {"_count": 5, "have": {"_count": 3}, "not": {"_count": 1}, "crumple": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 2}, "that": {"_count": 1}, "exactly": {"_count": 1}, "once": {"_count": 2}}, "off": {"_count": 1, "for": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "tried": {"_count": 2, "to": {"_count": 1}, "it": {"_count": 1}}, "hadnt": {"_count": 3, "been": {"_count": 1}, "moved": {"_count": 1}, "held": {"_count": 1}}, "always": {"_count": 1, "seemed": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "couldnt": {"_count": 1, "bear": {"_count": 1}}, "the": {"_count": 9, "Potions": {"_count": 2}, "sodden": {"_count": 1}, "familiar": {"_count": 1}, "malice": {"_count": 1}, "man": {"_count": 1}, "sleeping": {"_count": 1}, "first": {"_count": 1}, "abandoned": {"_count": 1}}, "taught": {"_count": 1, "Potions": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 1}, "through": {"_count": 2}}, "led": {"_count": 1, "them": {"_count": 1}}, "closed": {"_count": 3, "the": {"_count": 2}, "in": {"_count": 1}}, "coldly": {"_count": 12, "": {"_count": 6}, "and": {"_count": 1}, "shutting": {"_count": 1}, "because": {"_count": 1}, "as": {"_count": 3}}, "unrolled": {"_count": 1, "todays": {"_count": 1}}, "again": {"_count": 5, "": {"_count": 4}, "in": {"_count": 1}}, "returned": {"_count": 2, "and": {"_count": 1}, "ten": {"_count": 1}}, "now": {"_count": 1, "looking": {"_count": 1}}, "looked": {"_count": 33, "as": {"_count": 3}, "furious": {"_count": 2}, "around": {"_count": 5}, "more": {"_count": 1}, "coldly": {"_count": 1}, "up": {"_count": 1}, "angry": {"_count": 2}, "back": {"_count": 4}, "paler": {"_count": 1}, "agitated": {"_count": 1}, "away": {"_count": 2}, "toward": {"_count": 1}, "down": {"_count": 1}, "into": {"_count": 1}, "at": {"_count": 1}, "no": {"_count": 1}, "miserable": {"_count": 1}, "sideways": {"_count": 1}, "utterly": {"_count": 1}, "astonished": {"_count": 1}, "horrified": {"_count": 1}}, "shot": {"_count": 2, "a": {"_count": 2}}, "give": {"_count": 1, "the": {"_count": 1}}, "loomed": {"_count": 1, "behind": {"_count": 1}}, "from": {"_count": 5, "the": {"_count": 1}, "slipping": {"_count": 1}, "James": {"_count": 1}, "now": {"_count": 1}, "their": {"_count": 1}}, "a": {"_count": 5, "triumphant": {"_count": 1}, "short": {"_count": 1}, "little": {"_count": 1}, "malicious": {"_count": 1}, "man": {"_count": 1}}, "icily": {"_count": 1, "": {"_count": 1}}, "comes": {"_count": 1, "along": {"_count": 1}}, "mentioned": {"_count": 2, "it": {"_count": 1}, "them": {"_count": 1}}, "catch": {"_count": 1, "him": {"_count": 1}}, "busy": {"_count": 1, "for": {"_count": 1}}, "prowled": {"_count": 2, "through": {"_count": 1}, "up": {"_count": 1}}, "paused": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "roared": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "swept": {"_count": 5, "over": {"_count": 1}, "past": {"_count": 1}, "downstairs": {"_count": 1}, "wordlessly": {"_count": 1}, "by": {"_count": 1}}, "whispered": {"_count": 2, "I": {"_count": 1}, "his": {"_count": 1}}, "cant": {"_count": 1, "prove": {"_count": 1}}, "something": {"_count": 5, "foul": {"_count": 1}, "that": {"_count": 1}, "on": {"_count": 3}}, "wearing": {"_count": 1, "his": {"_count": 1}}, "jerked": {"_count": 1, "his": {"_count": 1}}, "baring": {"_count": 1, "his": {"_count": 1}}, "cried": {"_count": 1, "ExpelliarmusV": {"_count": 1}}, "reached": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "smiling": {"_count": 1, "coldly": {"_count": 1}}, "took": {"_count": 4, "charge": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "gliding": {"_count": 1, "over": {"_count": 1}}, "smirked": {"_count": 2, "as": {"_count": 2}}, "moved": {"_count": 5, "closer": {"_count": 1}, "away": {"_count": 1}, "toward": {"_count": 1}, "no": {"_count": 1}, "off": {"_count": 1}}, "lazily": {"_count": 3, "clearly": {"_count": 1}, "": {"_count": 2}}, "stepped": {"_count": 5, "forward": {"_count": 2}, "out": {"_count": 1}, "into": {"_count": 1}, "nearer": {"_count": 1}}, "too": {"_count": 3, "was": {"_count": 1}, "": {"_count": 2}}, "sneezed": {"_count": 1, "at": {"_count": 1}}, "though": {"_count": 4, "he": {"_count": 2}, "Harry": {"_count": 1}, "his": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "gripped": {"_count": 1, "the": {"_count": 1}}, "teach": {"_count": 2, "us": {"_count": 1}, "at": {"_count": 1}}, "wanted": {"_count": 2, "the": {"_count": 1}, "to": {"_count": 1}}, "wore": {"_count": 1, "every": {"_count": 1}}, "idly": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 3, "looking": {"_count": 2}, "preamble": {"_count": 1}}, "approached": {"_count": 1, "their": {"_count": 1}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "ladling": {"_count": 1, "some": {"_count": 1}}, "strode": {"_count": 4, "over": {"_count": 1}, "forward": {"_count": 1}, "to": {"_count": 1}, "past": {"_count": 1}}, "picked": {"_count": 2, "up": {"_count": 2}}, "looking": {"_count": 6, "sour": {"_count": 1}, "around": {"_count": 2}, "toward": {"_count": 1}, "at": {"_count": 1}, "stricken": {"_count": 1}}, "which": {"_count": 4, "wiped": {"_count": 1}, "had": {"_count": 1}, "felt": {"_count": 1}, "means": {"_count": 1}}, "it": {"_count": 5, "was": {"_count": 2}, "it": {"_count": 1}, "will": {"_count": 1}, "seemed": {"_count": 1}}, "will": {"_count": 4, "be": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}, "have": {"_count": 1}}, "stumbled": {"_count": 1, "he": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "set": {"_count": 3, "down": {"_count": 1}, "his": {"_count": 1}, "off": {"_count": 1}}, "continued": {"_count": 4, "": {"_count": 2}, "in": {"_count": 1}, "to": {"_count": 1}}, "has": {"_count": 5, "very": {"_count": 1}, "been": {"_count": 3}, "more": {"_count": 1}}, "there": {"_count": 1, "arent": {"_count": 1}}, "sat": {"_count": 4, "": {"_count": 1}, "in": {"_count": 1}, "down": {"_count": 1}, "quite": {"_count": 1}}, "hurrying": {"_count": 1, "toward": {"_count": 1}}, "coolly": {"_count": 3, "": {"_count": 3}}, "advanced": {"_count": 1, "on": {"_count": 1}}, "held": {"_count": 2, "them": {"_count": 1}, "up": {"_count": 1}}, "we": {"_count": 3, "havent": {"_count": 1}, "shall": {"_count": 2}}, "remember": {"_count": 1, "": {"_count": 1}}, "Sprout": {"_count": 1, "and": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "noticing": {"_count": 1, "": {"_count": 1}}, "softly": {"_count": 11, "": {"_count": 6}, "staring": {"_count": 1}, "so": {"_count": 1}, "can": {"_count": 1}, "did": {"_count": 1}, "and": {"_count": 1}}, "seemed": {"_count": 7, "to": {"_count": 6}, "even": {"_count": 1}}, "saw": {"_count": 2, "him": {"_count": 1}, "it": {"_count": 1}}, "master": {"_count": 1, "of": {"_count": 1}}, "froze": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 5, "an": {"_count": 1}, "a": {"_count": 2}, "Harry": {"_count": 1}, "now": {"_count": 1}}, "good": {"_count": 1, "day": {"_count": 1}}, "pointed": {"_count": 3, "at": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 14, "they": {"_count": 3}, "the": {"_count": 2}, "well": {"_count": 1}, "he": {"_count": 4}, "she": {"_count": 2}, "you": {"_count": 1}, "headmaster": {"_count": 1}}, "think": {"_count": 1, "Id": {"_count": 1}}, "standing": {"_count": 5, "watch": {"_count": 1}, "next": {"_count": 1}, "in": {"_count": 1}, "right": {"_count": 1}, "back": {"_count": 1}}, "sees": {"_count": 1, "me": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "he": {"_count": 1}}, "glimpsed": {"_count": 1, "me": {"_count": 1}}, "doesnt": {"_count": 2, "like": {"_count": 1}, "usually": {"_count": 1}}, "throwing": {"_count": 1, "the": {"_count": 1}}, "overrode": {"_count": 1, "him": {"_count": 1}}, "shouted": {"_count": 2, "looking": {"_count": 1}, "Run": {"_count": 1}}, "breathed": {"_count": 1, "at": {"_count": 1}}, "shrieked": {"_count": 1, "looking": {"_count": 1}}, "take": {"_count": 1, "you": {"_count": 1}}, "drifting": {"_count": 2, "creepily": {"_count": 1}, "weirdly": {"_count": 1}}, "drift": {"_count": 1, "along": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "were": {"_count": 4, "coming": {"_count": 1}, "at": {"_count": 1}, "eyeing": {"_count": 1}, "walking": {"_count": 1}}, "closely": {"_count": 2, "through": {"_count": 1}, "for": {"_count": 1}}, "skid": {"_count": 1, "to": {"_count": 1}}, "seized": {"_count": 2, "the": {"_count": 2}}, "be": {"_count": 2, "reasonable": {"_count": 1}, "given": {"_count": 1}}, "howled": {"_count": 1, "pointing": {"_count": 1}}, "whirled": {"_count": 1, "about": {"_count": 1}}, "told": {"_count": 4, "all": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 1}, "Dumbledore": {"_count": 1}}, "failing": {"_count": 1, "him": {"_count": 1}}, "Harrys": {"_count": 1, "least": {"_count": 1}}, "really": {"_count": 1, "wanted": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 2}}, "wont": {"_count": 1, "have": {"_count": 1}}, "examined": {"_count": 1, "Goyle": {"_count": 1}}, "her": {"_count": 1, "teeth": {"_count": 1}}, "walked": {"_count": 1, "with": {"_count": 1}}, "flat": {"_count": 1, "on": {"_count": 1}}, "curtly": {"_count": 3, "": {"_count": 3}}, "stared": {"_count": 3, "down": {"_count": 1}, "at": {"_count": 2}}, "snapped": {"_count": 4, "": {"_count": 3}, "again": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "snarled": {"_count": 3, "as": {"_count": 1}, "and": {"_count": 2}}, "shortly": {"_count": 1, "": {"_count": 1}}, "been": {"_count": 1, "on": {"_count": 1}}, "climbed": {"_count": 1, "up": {"_count": 1}}, "stopped": {"_count": 3, "talking": {"_count": 1}, "looking": {"_count": 1}, "giving": {"_count": 1}}, "discovered": {"_count": 2, "that": {"_count": 1}, "Dumbledore": {"_count": 1}}, "hissed": {"_count": 4, "to": {"_count": 1}, "letting": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}}, "through": {"_count": 1, "clenched": {"_count": 1}}, "stretched": {"_count": 1, "out": {"_count": 1}}, "slowly": {"_count": 2, "lowered": {"_count": 1}, "would": {"_count": 1}}, "walking": {"_count": 1, "away": {"_count": 1}}, "stay": {"_count": 1, "here": {"_count": 1}}, "definitely": {"_count": 2, "loathed": {"_count": 1}, "said": {"_count": 1}}, "loved": {"_count": 1, "taking": {"_count": 1}}, "even": {"_count": 2, "if": {"_count": 1}, "though": {"_count": 1}}, "did": {"_count": 11, "with": {"_count": 1}, "it": {"_count": 3}, "not": {"_count": 7}}, "beckoned": {"_count": 1, "them": {"_count": 1}}, "added": {"_count": 1, "snatching": {"_count": 1}}, "rolling": {"_count": 1, "up": {"_count": 1}}, "followed": {"_count": 3, "sat": {"_count": 1}, "him": {"_count": 1}, "still": {"_count": 1}}, "quietly": {"_count": 5, "once": {"_count": 1}, "": {"_count": 2}, "barely": {"_count": 1}, "his": {"_count": 1}}, "determined": {"_count": 1, "not": {"_count": 1}}, "viciously": {"_count": 1, "": {"_count": 1}}, "muttered": {"_count": 3, "but": {"_count": 1}, "": {"_count": 1}, "Professor": {"_count": 1}}, "hiss": {"_count": 1, "at": {"_count": 1}}, "why": {"_count": 3, "hasnt": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "Oh": {"_count": 1, "give": {"_count": 1}}, "save": {"_count": 1, "Harrys": {"_count": 1}}, "knew": {"_count": 3, "more": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "knows": {"_count": 3, "Karkaroff": {"_count": 1}, "much": {"_count": 1}, "how": {"_count": 1}}, "he": {"_count": 3, "says": {"_count": 1}, "said": {"_count": 1}, "didnt": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "slid": {"_count": 2, "open": {"_count": 2}}, "before": {"_count": 1, "Snape": {"_count": 1}}, "handed": {"_count": 1, "Dumbledore": {"_count": 1}}, "please": {"_count": 1, "tell": {"_count": 1}}, "nodded": {"_count": 2, "silently": {"_count": 1}, "but": {"_count": 1}}, "harshly": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 3, "know": {"_count": 1}, "saw": {"_count": 1}, "meant": {"_count": 1}}, "never": {"_count": 2, "eats": {"_count": 1}, "beat": {"_count": 1}}, "flitted": {"_count": 1, "in": {"_count": 1}}, "Trelawney": {"_count": 1, "and": {"_count": 1}}, "sweeping": {"_count": 1, "over": {"_count": 1}}, "flicked": {"_count": 2, "his": {"_count": 2}}, "taunt": {"_count": 1, "Harry": {"_count": 1}}, "ever": {"_count": 1, "been": {"_count": 1}}, "wheres": {"_count": 1, "the": {"_count": 1}}, "treat": {"_count": 1, "you": {"_count": 1}}, "today": {"_count": 1, "said": {"_count": 1}}, "next": {"_count": 2, "": {"_count": 2}}, "an": {"_count": 1, "excuse": {"_count": 1}}, "appeared": {"_count": 1, "there": {"_count": 1}}, "so": {"_count": 5, "interested": {"_count": 1}, "use": {"_count": 1}, "there": {"_count": 1}, "far": {"_count": 1}, "conspicuously": {"_count": 1}}, "straightened": {"_count": 2, "up": {"_count": 1}, "the": {"_count": 1}}, "replied": {"_count": 1, "": {"_count": 1}}, "jerkily": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 4, "his": {"_count": 1}, "quietly": {"_count": 1}, "settling": {"_count": 1}, "abruptly": {"_count": 1}}, "maliciously": {"_count": 1, "emptying": {"_count": 1}}, "kept": {"_count": 3, "using": {"_count": 1}, "instructing": {"_count": 1}, "calling": {"_count": 1}}, "insisted": {"_count": 1, "that": {"_count": 1}}, "dear": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "pursue": {"_count": 1, "him": {"_count": 1}}, "both": {"_count": 1, "seated": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "laid": {"_count": 1, "a": {"_count": 1}}, "smoothly": {"_count": 4, "": {"_count": 3}, "that": {"_count": 1}}, "raised": {"_count": 6, "an": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 4}}, "what": {"_count": 1, "on": {"_count": 1}}, "sneered": {"_count": 2, "": {"_count": 2}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "whipped": {"_count": 1, "out": {"_count": 1}}, "calculating": {"_count": 1, "his": {"_count": 1}}, "lowered": {"_count": 2, "their": {"_count": 1}, "himself": {"_count": 1}}, "pocketed": {"_count": 1, "his": {"_count": 1}}, "treated": {"_count": 1, "him": {"_count": 1}}, "eyed": {"_count": 1, "Harry": {"_count": 1}}, "rigid": {"_count": 1, "in": {"_count": 1}}, "repressively": {"_count": 1, "": {"_count": 1}}, "sounding": {"_count": 1, "cold": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "merely": {"_count": 1, "raised": {"_count": 1}}, "contemptuously": {"_count": 1, "": {"_count": 1}}, "raising": {"_count": 2, "his": {"_count": 2}}, "dangerously": {"_count": 1, "": {"_count": 1}}, "faced": {"_count": 2, "him": {"_count": 1}, "each": {"_count": 1}}, "sharply": {"_count": 2, "": {"_count": 2}}, "savagely": {"_count": 1, "": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "isnt": {"_count": 2, "really": {"_count": 2}}, "January": {"_count": 1, "seemed": {"_count": 1}}, "on": {"_count": 5, "top": {"_count": 1}, "dates": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}}, "hating": {"_count": 1, "him": {"_count": 1}}, "staggered": {"_count": 1, "his": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "tells": {"_count": 1, "you": {"_count": 1}}, "sir": {"_count": 1, "oh": {"_count": 1}}, "lowering": {"_count": 1, "his": {"_count": 1}}, "remained": {"_count": 2, "close": {"_count": 1}, "on": {"_count": 1}}, "chose": {"_count": 1, "to": {"_count": 1}}, "reacted": {"_count": 1, "so": {"_count": 1}}, "lay": {"_count": 1, "panting": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 2}}, "fell": {"_count": 1, "into": {"_count": 1}}, "keeled": {"_count": 1, "over": {"_count": 1}}, "struggled": {"_count": 2, "to": {"_count": 1}, "free": {"_count": 1}}, "gripping": {"_count": 1, "Harrys": {"_count": 1}}, "shaking": {"_count": 1, "Harry": {"_count": 1}}, "threw": {"_count": 1, "Harry": {"_count": 1}}, "bellowed": {"_count": 1, "": {"_count": 1}}, "reckons": {"_count": 1, "I": {"_count": 1}}, "should": {"_count": 2, "stop": {"_count": 1}, "be": {"_count": 1}}, "having": {"_count": 1, "deserved": {"_count": 1}}, "since": {"_count": 1, "Snape": {"_count": 1}}, "meanwhile": {"_count": 2, "seemed": {"_count": 1}, "said": {"_count": 1}}, "absolutely": {"_count": 1, "refuses": {"_count": 1}}, "hated": {"_count": 3, "each": {"_count": 1}, "James": {"_count": 1}, "it": {"_count": 1}}, "react": {"_count": 1, "when": {"_count": 1}}, "absent": {"_count": 1, "from": {"_count": 1}}, "showing": {"_count": 1, "his": {"_count": 1}}, "grew": {"_count": 1, "worried": {"_count": 1}}, "requested": {"_count": 1, "that": {"_count": 1}}, "intended": {"_count": 1, "to": {"_count": 1}}, "Snape": {"_count": 1, "ggoaded": {"_count": 1}}, "ggoaded": {"_count": 1, "Sirius": {"_count": 1}}, "striding": {"_count": 1, "forward": {"_count": 1}}, "gestured": {"_count": 1, "Narcissa": {"_count": 1}}, "sneering": {"_count": 1, "": {"_count": 1}}, "poured": {"_count": 1, "out": {"_count": 1}}, "refilled": {"_count": 1, "their": {"_count": 1}}, "sardonically": {"_count": 1, "": {"_count": 1}}, "smiled": {"_count": 1, "": {"_count": 1}}, "forestalled": {"_count": 1, "her": {"_count": 1}}, "calmly": {"_count": 1, "": {"_count": 1}}, "although": {"_count": 1, "the": {"_count": 1}}, "betraying": {"_count": 1, "a": {"_count": 1}}, "impatient": {"_count": 1, "again": {"_count": 1}}, "says": {"_count": 1, "so": {"_count": 1}}, "still": {"_count": 2, "looking": {"_count": 1}, "been": {"_count": 1}}, "flatly": {"_count": 1, "": {"_count": 1}}, "caught": {"_count": 2, "hold": {"_count": 1}, "them": {"_count": 1}}, "stooped": {"_count": 1, "seized": {"_count": 1}}, "swung": {"_count": 1, "the": {"_count": 1}}, "ll": {"_count": 1, "be": {"_count": 1}}, "gives": {"_count": 1, "us": {"_count": 1}}, "closing": {"_count": 1, "the": {"_count": 1}}, "hoping": {"_count": 1, "youd": {"_count": 1}}, "are": {"_count": 1, "many": {"_count": 1}}, "dismissively": {"_count": 1, "over": {"_count": 1}}, "until": {"_count": 2, "Snape": {"_count": 1}, "that": {"_count": 1}}, "ignored": {"_count": 2, "": {"_count": 1}, "this": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "righted": {"_count": 1, "himself": {"_count": 1}}, "tonight": {"_count": 2, "I": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "leading": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "whom": {"_count": 1}}, "emerged": {"_count": 1, "slowly": {"_count": 1}}, "People": {"_count": 1, "have": {"_count": 1}}, "Stan": {"_count": 1, "Shunpike": {"_count": 1}}, "Flitwick": {"_count": 1, "and": {"_count": 1}}, "done": {"_count": 1, "": {"_count": 1}}, "sayin": {"_count": 1, "Dumbledore": {"_count": 1}}, "didn": {"_count": 1, "wan": {"_count": 1}}, "makin": {"_count": 1, "investigations": {"_count": 1}}, "completely": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 1, "never": {"_count": 1}}, "waving": {"_count": 1, "his": {"_count": 1}}, "pointing": {"_count": 1, "suddenly": {"_count": 1}}, "smirking": {"_count": 1, "a": {"_count": 1}}, "hotly": {"_count": 1, "for": {"_count": 1}}, "wiped": {"_count": 1, "the": {"_count": 1}}, "extracted": {"_count": 1, "Harrys": {"_count": 1}}, "does": {"_count": 1, "it": {"_count": 1}}, "very": {"_count": 1, "quietly": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "despite": {"_count": 1, "teaching": {"_count": 1}}, "this": {"_count": 1, "Saturday": {"_count": 1}}, "hates": {"_count": 1, "tend": {"_count": 1}}, "felt": {"_count": 1, "when": {"_count": 1}}, "whom": {"_count": 1, "I": {"_count": 1}}, "Well": {"_count": 1, "youre": {"_count": 1}}, "gazed": {"_count": 1, "for": {"_count": 1}}, "disappearing": {"_count": 1, "around": {"_count": 1}}, "Take": {"_count": 1, "that": {"_count": 1}}, "n": {"_count": 1, "Malfoy": {"_count": 1}}, "parried": {"_count": 1, "the": {"_count": 1}}, "blocked": {"_count": 1, "the": {"_count": 1}}, "deflected": {"_count": 1, "the": {"_count": 1}}, "deflecting": {"_count": 1, "the": {"_count": 1}}, "running": {"_count": 2, "as": {"_count": 1}, "up": {"_count": 1}}, "doin": {"_count": 1, "with": {"_count": 1}}, "killed": {"_count": 7, "": {"_count": 2}, "him": {"_count": 2}, "Dumbledore": {"_count": 3}}, "kill": {"_count": 1, "Dumbledore": {"_count": 1}}, "ter": {"_count": 1, "go": {"_count": 1}}, "repeated": {"_count": 1, "McGonagall": {"_count": 1}}, "passed": {"_count": 1, "Voldemort": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "shout": {"_count": 2, "something": {"_count": 1}, "at": {"_count": 1}}, "till": {"_count": 1, "they": {"_count": 1}}, "pretended": {"_count": 2, "it": {"_count": 1}, "not": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "already": {"_count": 1, "blasted": {"_count": 1}}, "longstanding": {"_count": 1, "Potions": {"_count": 1}}, "headmaster": {"_count": 1, "": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "decided": {"_count": 1, "the": {"_count": 1}}, "punish": {"_count": 1, "Ginny": {"_count": 1}}, "sent": {"_count": 2, "them": {"_count": 1}, "it": {"_count": 1}}, "mightve": {"_count": 1, "thought": {"_count": 1}}, "confronted": {"_count": 1, "with": {"_count": 1}}, "bowed": {"_count": 1, "and": {"_count": 1}}, "Let": {"_count": 1, "me": {"_count": 1}}, "Then": {"_count": 1, "it": {"_count": 1}}, "avoided": {"_count": 1, "them": {"_count": 1}}, "mmy": {"_count": 1, "Lord": {"_count": 1}}, "spoke": {"_count": 1, "and": {"_count": 1}}, "blankly": {"_count": 1, "": {"_count": 1}}, "sensed": {"_count": 1, "danger": {"_count": 1}}, "protested": {"_count": 1, "raising": {"_count": 1}}, "lurked": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 2, "": {"_count": 2}}, "hot": {"_count": 1, "and": {"_count": 1}}, "hesitated": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "encouraged": {"_count": 1, "that": {"_count": 1}}, "backtracked": {"_count": 1, "at": {"_count": 1}}, "left": {"_count": 2, "the": {"_count": 2}}, "gaped": {"_count": 1, "at": {"_count": 1}}, "regained": {"_count": 1, "control": {"_count": 1}}, "sounded": {"_count": 1, "furious": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "roughly": {"_count": 1, "why": {"_count": 1}}, "quite": {"_count": 1, "calmly": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "frowning": {"_count": 1, "in": {"_count": 1}}, "murmured": {"_count": 1, "that": {"_count": 1}}, "cast": {"_count": 1, "a": {"_count": 1}}, "three": {"_count": 1, "hours": {"_count": 1}}}, "teaches": {"_count": 7, "Potions": {"_count": 1, "but": {"_count": 1}}, "you": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "what": {"_count": 1, "used": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}}, "Knows": {"_count": 5, "an": {"_count": 1, "awful": {"_count": 1}}, "what": {"_count": 2, "": {"_count": 1}, "its": {"_count": 1}}, "people": {"_count": 1, "can": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "awful": {"_count": 40, "lot": {"_count": 7, "about": {"_count": 1}, "of": {"_count": 5}, "too": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "They": {"_count": 1, "heard": {"_count": 1}}, "loss": {"_count": 1, "that": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "things": {"_count": 2, "have": {"_count": 1}, "we": {"_count": 1}}, "boy": {"_count": 1, "telling": {"_count": 1}}, "voice": {"_count": 1, "filled": {"_count": 1}}, "said": {"_count": 2, "Ginny": {"_count": 1}, "Hermione": {"_count": 1}}, "risk": {"_count": 1, "Hermione": {"_count": 1}}, "woman": {"_count": 1, "said": {"_count": 1}}, "twisted": {"_count": 1, "vicious": {"_count": 1}}, "paper": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "I": {"_count": 1, "really": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "finality": {"_count": 1, "Mr": {"_count": 1}}, "waste": {"_count": 1, "not": {"_count": 1}}, "pressing": {"_count": 1, "feeling": {"_count": 1}}, "shriveled": {"_count": 1, "arm": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "frustration": {"_count": 1, "": {"_count": 1}}, "shock": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 1, "that": {"_count": 1}}, "sarcasm": {"_count": 1, "": {"_count": 1}}, "scream": {"_count": 1, "drowned": {"_count": 1}}, "lurch": {"_count": 1, "the": {"_count": 1}}, "coldness": {"_count": 1, "": {"_count": 1}}, "discomfort": {"_count": 1, "": {"_count": 1}}}, "Ahem": {"_count": 3, "just": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "twenty": {"_count": 1, "minutes": {"_count": 1}}}, "fed": {"_count": 18, "and": {"_count": 4, "watered": {"_count": 2}, "at": {"_count": 1}, "having": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "a": {"_count": 1, "Filibuster": {"_count": 1}}, "himself": {"_count": 1, "porridge": {"_count": 1}}, "him": {"_count": 2, "a": {"_count": 1}, "treacle": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 2}, "it": {"_count": 1}, "a": {"_count": 1}}, "Buckbeak": {"_count": 1, "dead": {"_count": 1}}, "the": {"_count": 3, "Extendable": {"_count": 1}, "chickens": {"_count": 1}, "other": {"_count": 1}}, "The": {"_count": 1, "argument": {"_count": 1}}}, "watered": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "roses": {"_count": 1}}, "Hmph": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "ink": {"_count": 1, "somewhere": {"_count": 1}}}, "notices": {"_count": 8, "to": {"_count": 1, "give": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "and": {"_count": 1, "posters": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "concerning": {"_count": 1, "various": {"_count": 1}}}, "Filch": {"_count": 260, "the": {"_count": 15, "caretaker": {"_count": 14}, "Quidditch": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 15}, "?": {"_count": 3}, "!": {"_count": 2}}, "found": {"_count": 1, "them": {"_count": 1}}, "owned": {"_count": 1, "a": {"_count": 1}}, "whod": {"_count": 1, "appear": {"_count": 1}}, "knew": {"_count": 2, "the": {"_count": 1}, "someone": {"_count": 1}}, "that": {"_count": 1, "old": {"_count": 1}}, "puts": {"_count": 1, "her": {"_count": 1}}, "or": {"_count": 3, "Mrs": {"_count": 3}}, "to": {"_count": 3, "catch": {"_count": 1}, "come": {"_count": 1}, "realize": {"_count": 1}}, "speaking": {"_count": 1, "to": {"_count": 1}}, "enter": {"_count": 1, "the": {"_count": 1}}, "getting": {"_count": 1, "nearer": {"_count": 1}}, "was": {"_count": 13, "following": {"_count": 1}, "saying": {"_count": 1}, "handing": {"_count": 1}, "already": {"_count": 1}, "coming": {"_count": 1}, "looking": {"_count": 1}, "the": {"_count": 1}, "suddenly": {"_count": 1}, "going": {"_count": 2}, "best": {"_count": 1}, "standing": {"_count": 1}, "triplechecking": {"_count": 1}}, "I": {"_count": 4, "should": {"_count": 2}, "bet": {"_count": 1}, "dont": {"_count": 1}}, "running": {"_count": 1, "as": {"_count": 1}}, "cursing": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 13, "death": {"_count": 1}, "Snape": {"_count": 2}, "the": {"_count": 3}, "he": {"_count": 1}, "went": {"_count": 1}, "his": {"_count": 1}, "Umbridge": {"_count": 1}, "perhaps": {"_count": 1}, "Madam": {"_count": 2}}, "must": {"_count": 2, "have": {"_count": 1}, "know": {"_count": 1}}, "were": {"_count": 1, "inside": {"_count": 1}}, "would": {"_count": 5, "never": {"_count": 1}, "know": {"_count": 1}, "skin": {"_count": 1}, "object": {"_count": 1}, "not": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 1}, "here": {"_count": 1}}, "Snape": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 12, "caught": {"_count": 1}, "ever": {"_count": 1}, "never": {"_count": 1}, "clearly": {"_count": 1}, "been": {"_count": 2}, "stopped": {"_count": 1}, "picked": {"_count": 1}, "banned": {"_count": 2}, "turned": {"_count": 1}, "forgotten": {"_count": 1}}, "took": {"_count": 1, "them": {"_count": 1}}, "says": {"_count": 1, "you": {"_count": 1}}, "wouldnt": {"_count": 2, "help": {"_count": 1}, "be": {"_count": 1}}, "lighting": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 4, "I": {"_count": 1}, "Professor": {"_count": 1}, "quietly": {"_count": 1}, "Hagrid": {"_count": 1}}, "his": {"_count": 4, "voice": {"_count": 1}, "jowls": {"_count": 2}, "face": {"_count": 1}}, "coldly": {"_count": 1, "theyre": {"_count": 1}}, "for": {"_count": 2, "whats": {"_count": 1}, "being": {"_count": 1}}, "spots": {"_count": 1, "one": {"_count": 1}}, "every": {"_count": 1, "distant": {"_count": 1}}, "ll": {"_count": 1, "have": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "though": {"_count": 1}}, "isnt": {"_count": 1, "in": {"_count": 1}}, "burst": {"_count": 2, "suddenly": {"_count": 1}, "into": {"_count": 1}}, "back": {"_count": 2, "downstairs": {"_count": 1}, "into": {"_count": 1}}, "grabbed": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 2, "drip": {"_count": 1}, "statement": {"_count": 1}}, "squinted": {"_count": 1, "unpleasantly": {"_count": 1}}, "lowered": {"_count": 1, "his": {"_count": 1}}, "roared": {"_count": 2, "flinging": {"_count": 1}, "gleefully": {"_count": 1}}, "ran": {"_count": 2, "flatfooted": {"_count": 1}, "over": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "wasnt": {"_count": 2, "on": {"_count": 1}, "guarding": {"_count": 1}}, "want": {"_count": 1, "a": {"_count": 1}}, "s": {"_count": 15, "pasty": {"_count": 1}, "knobbly": {"_count": 1}, "office": {"_count": 2}, "dry": {"_count": 1}, "face": {"_count": 1}, "trying": {"_count": 1}, "cats": {"_count": 1}, "footsteps": {"_count": 1}, "legs": {"_count": 1}, "cat": {"_count": 1}, "shuffling": {"_count": 1}, "grip": {"_count": 1}, "expression": {"_count": 1}, "filing": {"_count": 1}}, "hobbled": {"_count": 1, "across": {"_count": 1}}, "came": {"_count": 2, "shouldering": {"_count": 1}, "shuffling": {"_count": 1}}, "Harry": {"_count": 2, "couldnt": {"_count": 1}, "muttered": {"_count": 1}}, "he": {"_count": 2, "would": {"_count": 1}, "said": {"_count": 1}}, "looking": {"_count": 1, "through": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "spat": {"_count": 1, "his": {"_count": 1}}, "kept": {"_count": 1, "it": {"_count": 1}}, "before": {"_count": 1, "hes": {"_count": 1}}, "has": {"_count": 5, "been": {"_count": 2}, "done": {"_count": 1}, "found": {"_count": 1}, "banned": {"_count": 1}}, "nor": {"_count": 1, "any": {"_count": 1}}, "first": {"_count": 1, "Neville": {"_count": 1}}, "made": {"_count": 2, "me": {"_count": 1}, "a": {"_count": 1}}, "kindly": {"_count": 1, "one": {"_count": 1}}, "wont": {"_count": 1, "be": {"_count": 1}}, "who": {"_count": 7, "had": {"_count": 2}, "matched": {"_count": 1}, "suspected": {"_count": 1}, "was": {"_count": 3}}, "snarled": {"_count": 1, "suspiciously": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 2}}, "knows": {"_count": 2, "all": {"_count": 1}, "about": {"_count": 1}}, "restore": {"_count": 1, "her": {"_count": 1}}, "ever": {"_count": 1, "found": {"_count": 1}}, "really": {"_count": 1, "didnt": {"_count": 1}}, "already": {"_count": 1, "knows": {"_count": 1}}, "hasnt": {"_count": 1, "done": {"_count": 1}}, "many": {"_count": 1, "years": {"_count": 1}}, "putting": {"_count": 1, "out": {"_count": 1}}, "placed": {"_count": 1, "the": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "deserted": {"_count": 1, "staircase": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "drawing": {"_count": 1, "nearer": {"_count": 1}}, "stopped": {"_count": 1, "a": {"_count": 1}}, "whispered": {"_count": 1, "malevolently": {"_count": 1}}, "looked": {"_count": 1, "yearningly": {"_count": 1}}, "plaintively": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 2, "looked": {"_count": 1}, "turned": {"_count": 1}}, "clutching": {"_count": 2, "the": {"_count": 2}}, "if": {"_count": 1, "youll": {"_count": 1}}, "handed": {"_count": 1, "Moody": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "also": {"_count": 1, "frowning": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "sniffing": {"_count": 1, "you": {"_count": 1}}, "bursting": {"_count": 1, "in": {"_count": 1}}, "accused": {"_count": 1, "you": {"_count": 1}}, "let": {"_count": 1, "him": {"_count": 1}}, "is": {"_count": 4, "on": {"_count": 1}, "observing": {"_count": 1}, "happy": {"_count": 1}, "being": {"_count": 1}}, "occasionally": {"_count": 1, "catching": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "chuckling": {"_count": 1, "nastily": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "bowing": {"_count": 1, "as": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "hurry": {"_count": 1, "": {"_count": 1}}, "elbowed": {"_count": 1, "his": {"_count": 1}}, "gnashing": {"_count": 1, "his": {"_count": 1}}, "fitted": {"_count": 1, "a": {"_count": 1}}, "prowled": {"_count": 1, "the": {"_count": 1}}, "having": {"_count": 1, "just": {"_count": 1}}, "our": {"_count": 1, "caretaker": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "theyre": {"_count": 1, "with": {"_count": 1}}, "searching": {"_count": 1, "everyone": {"_count": 1}}, "looming": {"_count": 1, "over": {"_count": 1}}, "obnoxiously": {"_count": 1, "": {"_count": 1}}, "swelled": {"_count": 1, "with": {"_count": 1}}, "mustve": {"_count": 1, "forgotten": {"_count": 1}}, "turn": {"_count": 1, "up": {"_count": 1}}, "not": {"_count": 2, "recognizing": {"_count": 1}, "now": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "she": {"_count": 1, "in": {"_count": 1}}, "moving": {"_count": 1, "away": {"_count": 1}}, "evidently": {"_count": 1, "thought": {"_count": 1}}}, "caretaker": {"_count": 25, "to": {"_count": 1, "remind": {"_count": 1}}, "Argus": {"_count": 2, "Filch": {"_count": 2}}, "was": {"_count": 4, "loathed": {"_count": 1}, "standing": {"_count": 1}, "behaving": {"_count": 1}, "adding": {"_count": 1}}, "a": {"_count": 1, "badtempered": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "has": {"_count": 3, "asked": {"_count": 3}}, "had": {"_count": 2, "to": {"_count": 1}, "just": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "those": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "came": {"_count": 1, "wheezing": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}}, "remind": {"_count": 24, "you": {"_count": 13, "all": {"_count": 4}, "that": {"_count": 7}, "how": {"_count": 1}, "Dumbledore": {"_count": 1}}, "me": {"_count": 5, "only": {"_count": 1}, "what": {"_count": 2}, "of": {"_count": 1}, "a": {"_count": 1}}, "her": {"_count": 2, "that": {"_count": 2}}, "him": {"_count": 3, "that": {"_count": 1}, "of": {"_count": 1}, "who": {"_count": 1}}, "everybody": {"_count": 1, "that": {"_count": 1}}}, "trials": {"_count": 10, "will": {"_count": 1, "be": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 2}, "?": {"_count": 1}, ".": {"_count": 1}}, "at": {"_count": 1, "your": {"_count": 1}}, "might": {"_count": 1, "take": {"_count": 1}}, "took": {"_count": 1, "most": {"_count": 1}}, "said": {"_count": 1, "McLaggen": {"_count": 1}}}, "contact": {"_count": 68, "Madam": {"_count": 1, "Hooch": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 1, "Snape": {"_count": 1}}, "with": {"_count": 33, "you": {"_count": 1}, "them": {"_count": 1}, "Bludger": {"_count": 1}, "the": {"_count": 7}, "each": {"_count": 1}, "Sirius": {"_count": 1}, "him": {"_count": 3}, "it": {"_count": 1}, "Dumbledore": {"_count": 2}, "any": {"_count": 2}, "Umbridges": {"_count": 1}, "his": {"_count": 1}, "something": {"_count": 1}, "anybody": {"_count": 1}, "Greyback": {"_count": 1}, "Kreacher": {"_count": 1}, "its": {"_count": 1}, "an": {"_count": 1}, "Harrys": {"_count": 1}, "was": {"_count": 1}, "Draco": {"_count": 1}, "Aberforth": {"_count": 1}, "a": {"_count": 1}}, "Dumbledore": {"_count": 1, "when": {"_count": 1}}, "now": {"_count": 1, "try": {"_count": 1}}, "me": {"_count": 2, "Ill": {"_count": 1}, "at": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 1}, "he": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}}, "those": {"_count": 1, "at": {"_count": 1}}, "you": {"_count": 1, "there": {"_count": 1}}, "why": {"_count": 1, "were": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "doors": {"_count": 1}, "Auror": {"_count": 1}}, "is": {"_count": 1, "often": {"_count": 1}}, "being": {"_count": 1, "crucial": {"_count": 1}}, "but": {"_count": 1, "dived": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "Sirius": {"_count": 1, "at": {"_count": 1}}, "or": {"_count": 1, "blinking": {"_count": 1}}, "Galleons": {"_count": 1, "will": {"_count": 1}}, "not": {"_count": 1, "only": {"_count": 1}}, "during": {"_count": 1, "this": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "has": {"_count": 1, "stayed": {"_count": 1}}, "led": {"_count": 1, "to": {"_count": 1}}}, "Hooch": {"_count": 41, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "arrived": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "showed": {"_count": 1}}, "was": {"_count": 5, "bending": {"_count": 1}, "refereeing": {"_count": 1}, "walking": {"_count": 1}, "beside": {"_count": 1}, "zooming": {"_count": 1}}, "who": {"_count": 3, "had": {"_count": 2}, "was": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "spoke": {"_count": 1, "angrily": {"_count": 1}}, "the": {"_count": 2, "Quidditch": {"_count": 1}, "referee": {"_count": 1}}, "had": {"_count": 2, "joined": {"_count": 1}, "fallen": {"_count": 1}}, "released": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "oversee": {"_count": 1}, "sort": {"_count": 1}}, "put": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "Professor": {"_count": 1}}, "awoke": {"_count": 1, "with": {"_count": 1}}, "said": {"_count": 1, "briskly": {"_count": 1}}, "zooming": {"_count": 1, "between": {"_count": 1}}, "blew": {"_count": 1, "her": {"_count": 1}}, "awarded": {"_count": 1, "both": {"_count": 1}}, "screeched": {"_count": 1, "shooting": {"_count": 1}}, "as": {"_count": 2, "Angelina": {"_count": 1}, "Harry": {"_count": 1}}, "placed": {"_count": 1, "her": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}}, "righthand": {"_count": 10, "side": {"_count": 8, "is": {"_count": 1}, "of": {"_count": 3}, "": {"_count": 3}, "short": {"_count": 1}}, "man": {"_count": 1, "would": {"_count": 1}}, "window": {"_count": 1, "was": {"_count": 1}}}, "bounds": {"_count": 3, "to": {"_count": 2, "everyone": {"_count": 1}, "students": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "serious": {"_count": 75, "": {"_count": 15, "?": {"_count": 3}, ".": {"_count": 9}, "!": {"_count": 3}}, "Professor": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 1, "accidents": {"_count": 1}}, "Harry": {"_count": 3, "dont": {"_count": 1}, "": {"_count": 2}}, "offense": {"_count": 1, "under": {"_count": 1}}, "damage": {"_count": 1, "to": {"_count": 1}}, "argument": {"_count": 1, "on": {"_count": 1}}, "thinking": {"_count": 1, "": {"_count": 1}}, "worry": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 3, "was": {"_count": 1}, "anxious": {"_count": 1}, "purposeful": {"_count": 1}}, "magic": {"_count": 1, "which": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 2}, "you": {"_count": 1}}, "than": {"_count": 2, "Harry": {"_count": 1}, "this": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 1}, "saw": {"_count": 1}}, "was": {"_count": 1, "it": {"_count": 1}}, "trouble": {"_count": 4, "then": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 1, "Frank": {"_count": 1}}, "conversation": {"_count": 1, "all": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "shell": {"_count": 1}}, "theyd": {"_count": 1, "tell": {"_count": 1}}, "breach": {"_count": 2, "of": {"_count": 2}}, "miscarriage": {"_count": 1, "of": {"_count": 1}}, "thought": {"_count": 1, "to": {"_count": 1}}, "application": {"_count": 1, "practice": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "standing": {"_count": 1}}, "injury": {"_count": 3, "and": {"_count": 1}, "because": {"_count": 1}, "as": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "burns": {"_count": 1, "and": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "mistranslation": {"_count": 1, "": {"_count": 1}}, "line": {"_count": 1, "said": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "accusation": {"_count": 1, "Potter": {"_count": 1}}, "business": {"_count": 1, "Quidditch": {"_count": 1}}, "of": {"_count": 1, "which": {"_count": 1}}, "Helpfully": {"_count": 1, "Ron": {"_count": 1}}, "look": {"_count": 1, "that": {"_count": 1}}, "flaw": {"_count": 1, "in": {"_count": 1}}, "protection": {"_count": 1, "the": {"_count": 1}}, "blow": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "do": {"_count": 1}}, "problem": {"_count": 1, "": {"_count": 1}}, "thing": {"_count": 1, "to": {"_count": 1}}, "threat": {"_count": 1, "to": {"_count": 1}}}, "frowning": {"_count": 103, "at": {"_count": 23, "Dumbledore": {"_count": 1}, "Filch": {"_count": 1}, "Fudge": {"_count": 1}, "Harry": {"_count": 5}, "Professor": {"_count": 1}, "this": {"_count": 1}, "her": {"_count": 4}, "the": {"_count": 3}, "Fred": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "Xenophilius": {"_count": 1}, "him": {"_count": 1}, "Arianas": {"_count": 1}}, "as": {"_count": 5, "he": {"_count": 5}}, "": {"_count": 35, ".": {"_count": 35}}, "in": {"_count": 2, "the": {"_count": 1}, "concentration": {"_count": 1}}, "slightly": {"_count": 15, "": {"_count": 7}, "I": {"_count": 1}, "at": {"_count": 2}, "as": {"_count": 2}, "apparently": {"_count": 1}, "but": {"_count": 1}, "well": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Seamus": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "your": {"_count": 1, "teeth": {"_count": 1}}, "more": {"_count": 1, "deeply": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "after": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 2, "muttering": {"_count": 1}, "shaking": {"_count": 1}}, "with": {"_count": 1, "concentration": {"_count": 1}}, "now": {"_count": 1, "murmured": {"_count": 1}}, "look": {"_count": 1, "that": {"_count": 1}}, "slit": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "barn": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "I": {"_count": 1, "notice": {"_count": 1}}, "perhaps": {"_count": 1, "we": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "it": {"_count": 1, "seems": {"_count": 1}}, "youre": {"_count": 1, "married": {"_count": 1}}, "wizard": {"_count": 1, "who": {"_count": 1}}}, "beasts": {"_count": 15, "everyone": {"_count": 1, "knows": {"_count": 1}}, "eyes": {"_count": 1, "began": {"_count": 1}}, "and": {"_count": 1, "monsters": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 1}, "always": {"_count": 1}}, "speaking": {"_count": 1, "occasionally": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "are": {"_count": 1}}, "strong": {"_count": 1, "enough": {"_count": 1}}, "winged": {"_count": 1, "yeh": {"_count": 1}}, "would": {"_count": 1, "never": {"_count": 1}}, "well": {"_count": 1, "not": {"_count": 1}}, "scales": {"_count": 1, "had": {"_count": 1}}, "neck": {"_count": 1, "he": {"_count": 1}}, "Flaming": {"_count": 1, "serpents": {"_count": 1}}}, "smiles": {"_count": 10, "had": {"_count": 3, "become": {"_count": 1}, "vanished": {"_count": 2}}, "off": {"_count": 1, "their": {"_count": 1}}, "faded": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "every": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "evident": {"_count": 1, "even": {"_count": 1}}, "fading": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "glazed": {"_count": 1}}}, "fly": {"_count": 98, "off": {"_count": 8, "the": {"_count": 2}, "again": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "him": {"_count": 1}, "Mundunguss": {"_count": 1}, "toward": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 9}, "!": {"_count": 3}}, "well": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "around": {"_count": 3, "our": {"_count": 1}, "trying": {"_count": 1}, "the": {"_count": 1}}, "something": {"_count": 1, "they": {"_count": 1}}, "behind": {"_count": 1, "us": {"_count": 1}}, "that": {"_count": 2, "wretched": {"_count": 1}, "evening": {"_count": 1}}, "the": {"_count": 3, "car": {"_count": 2}, "Bludger": {"_count": 1}}, "wouldnt": {"_count": 1, "Arthur": {"_count": 1}}, "too": {"_count": 1, "high": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "too": {"_count": 1}, "": {"_count": 1}}, "away": {"_count": 3, "": {"_count": 1}, "become": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 2, "one": {"_count": 1}, "Rons": {"_count": 1}}, "like": {"_count": 2, "you": {"_count": 1}, "that": {"_count": 1}}, "back": {"_count": 2, "off": {"_count": 1}, "to": {"_count": 1}}, "forward": {"_count": 1, "to": {"_count": 1}}, "buzzing": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 2, "well": {"_count": 1}, "much": {"_count": 1}}, "Buckbeak": {"_count": 2, "up": {"_count": 2}}, "high": {"_count": 2, "above": {"_count": 1}, "dark": {"_count": 1}}, "out": {"_count": 9, "of": {"_count": 9}}, "from": {"_count": 2, "it": {"_count": 1}, "Professor": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "zoom": {"_count": 1, "straight": {"_count": 1}}, "was": {"_count": 1, "just": {"_count": 1}}, "first": {"_count": 1, "this": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 2}}, "very": {"_count": 1, "veil": {"_count": 1}}, "his": {"_count": 1, "mind": {"_count": 1}}, "downstairs": {"_count": 1, "to": {"_count": 1}}, "perched": {"_count": 1, "unwisely": {"_count": 1}}, "at": {"_count": 2, "me": {"_count": 1}, "Dumbledore": {"_count": 1}}, "particularly": {"_count": 1, "well": {"_count": 1}}, "meself": {"_count": 1, "": {"_count": 1}}, "upward": {"_count": 1, "from": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "wont": {"_count": 1, "we": {"_count": 1}}, "without": {"_count": 2, "a": {"_count": 1}, "landing": {"_count": 1}}, "said": {"_count": 1, "Luna": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 1, "around": {"_count": 1}}, "better": {"_count": 1, "then": {"_count": 1}}, "joyfully": {"_count": 1, "into": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}, "went": {"_count": 1, "straight": {"_count": 1}}, "by": {"_count": 1, "hand": {"_count": 1}}, "through": {"_count": 1, "shifting": {"_count": 1}}}, "ribbon": {"_count": 6, "flew": {"_count": 1, "out": {"_count": 1}}, "shot": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "top": {"_count": 1}}, "lying": {"_count": 1, "far": {"_count": 1}}}, "snakelike": {"_count": 18, "into": {"_count": 1, "words": {"_count": 1}}, "tendrils": {"_count": 1, "around": {"_count": 1}}, "cords": {"_count": 1, "burst": {"_count": 1}}, "with": {"_count": 2, "gleaming": {"_count": 1}, "slits": {"_count": 1}}, "face": {"_count": 9, "": {"_count": 1}, "upturned": {"_count": 1}, "around": {"_count": 1}, "of": {"_count": 1}, "white": {"_count": 1}, "gleaming": {"_count": 1}, "vanishing": {"_count": 1}, "though": {"_count": 1}, "vacant": {"_count": 1}}, "longing": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "eyes": {"_count": 1}}, "language": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}}, "pick": {"_count": 49, "their": {"_count": 1, "favorite": {"_count": 1}}, "on": {"_count": 1, "us": {"_count": 1}}, "them": {"_count": 3, "up": {"_count": 3}}, "up": {"_count": 24, "the": {"_count": 7}, "a": {"_count": 1}, "said": {"_count": 1}, "Hedwig": {"_count": 1}, "Scabbers": {"_count": 1}, "my": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 2}, "that": {"_count": 1}, "squelchy": {"_count": 1}, "Ron": {"_count": 1}, "speed": {"_count": 1}, "tips": {"_count": 2}, "two": {"_count": 1}, "not": {"_count": 1}, "Hermiones": {"_count": 1}}, "the": {"_count": 2, "lock": {"_count": 1}, "worthy": {"_count": 1}}, "with": {"_count": 1, "yeh": {"_count": 1}}, "it": {"_count": 7, "up": {"_count": 5}, "all": {"_count": 1}, "out": {"_count": 1}}, "a": {"_count": 1, "fight": {"_count": 1}}, "you": {"_count": 2, "up": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 1, "nose": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "and": {"_count": 1}}, "fights": {"_count": 1, "dont": {"_count": 1}}, "once": {"_count": 1, "we": {"_count": 1}}, "her": {"_count": 1, "brains": {"_count": 1}}}, "tune": {"_count": 12, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "but": {"_count": 1, "from": {"_count": 1}}, "Harry": {"_count": 1, "walked": {"_count": 1}}, "when": {"_count": 1, "wound": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "soon": {"_count": 1, "enough": {"_count": 1}}, "to": {"_count": 1, "save": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "bellowed": {"_count": 117, "Hogwarts": {"_count": 1, "Hogwarts": {"_count": 1}}, "STUDENTS": {"_count": 1, "OUT": {"_count": 1}}, "at": {"_count": 8, "Bane": {"_count": 1}, "the": {"_count": 3}, "her": {"_count": 1}, "Ogden": {"_count": 1}, "everybody": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "and": {"_count": 10, "Hagrid": {"_count": 1}, "he": {"_count": 3}, "put": {"_count": 1}, "with": {"_count": 1}, "even": {"_count": 1}, "Hermione": {"_count": 1}, "through": {"_count": 1}, "Ron": {"_count": 1}}, "lunging": {"_count": 1, "for": {"_count": 1}}, "Peskipiksi": {"_count": 1, "Pesternomti": {"_count": 1}}, "OY": {"_count": 1, "": {"_count": 1}}, "Serpensortial": {"_count": 1, "The": {"_count": 1}}, "Expelliarmus": {"_count": 1, "Lockhart": {"_count": 1}}, "back": {"_count": 3, "as": {"_count": 1}, "waving": {"_count": 1}, "": {"_count": 1}}, "Uncle": {"_count": 5, "Vernon": {"_count": 5}}, "Ron": {"_count": 5, "and": {"_count": 1}, "finally": {"_count": 1}, "bypassing": {"_count": 1}, "drowning": {"_count": 1}, "though": {"_count": 1}}, "as": {"_count": 2, "Crookshanks": {"_count": 1}, "somewhere": {"_count": 1}}, "striding": {"_count": 1, "over": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 3, "Weasley": {"_count": 1}, "Crouch": {"_count": 2}}, "Charlie": {"_count": 1, "along": {"_count": 1}}, "even": {"_count": 1, "as": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Fred": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "finally": {"_count": 1, "after": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "pointing": {"_count": 3, "at": {"_count": 2}, "his": {"_count": 1}}, "oath": {"_count": 1, "and": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "Lee": {"_count": 1, "who": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "Hagrid": {"_count": 5, "his": {"_count": 1}, "slopping": {"_count": 1}, "and": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 6, "": {"_count": 3}, "who": {"_count": 1}, "wheeling": {"_count": 1}, "from": {"_count": 1}}, "the": {"_count": 3, "hardfaced": {"_count": 1}, "last": {"_count": 1}, "Death": {"_count": 1}}, "their": {"_count": 1, "approval": {"_count": 1}}, "Bane": {"_count": 1, "": {"_count": 1}}, "You": {"_count": 1, "see": {"_count": 1}}, "HAGGER": {"_count": 1, "": {"_count": 1}}, "REDUCTOl": {"_count": 1, "Five": {"_count": 1}}, "in": {"_count": 1, "Nevilles": {"_count": 1}}, "SIRIUS": {"_count": 1, "": {"_count": 1}}, "CrucioV": {"_count": 1, "Bellatrix": {"_count": 1}}, "Stay": {"_count": 1, "where": {"_count": 1}}, "What": {"_count": 1, "the": {"_count": 1}}, "Malfoy": {"_count": 1, "slapping": {"_count": 1}}, "Gaunt": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "again": {"_count": 1, "backing": {"_count": 1}}, "BOY": {"_count": 1, "": {"_count": 1}}, "directing": {"_count": 1, "his": {"_count": 1}}, "louder": {"_count": 1, "than": {"_count": 1}}, "writhing": {"_count": 1, "in": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "leaping": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "shaking": {"_count": 1, "the": {"_count": 1}}, "Amycus": {"_count": 1, "": {"_count": 1}}, "fighting": {"_count": 1, "off": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "Percy": {"_count": 1, "sending": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}}, "Hoggy": {"_count": 1, "Warty": {"_count": 1, "Hogwarts": {"_count": 1}}}, "Warty": {"_count": 2, "Hogwarts": {"_count": 1, "Teach": {"_count": 1}}, "Harris": {"_count": 1, "in": {"_count": 1}}}, "Teach": {"_count": 4, "us": {"_count": 1, "something": {"_count": 1}}, "Moody": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "him": {"_count": 1, "English": {"_count": 1}}}, "Whether": {"_count": 13, "we": {"_count": 1, "be": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "was": {"_count": 1}}, "this": {"_count": 1, "statement": {"_count": 1}}, "Hagrid": {"_count": 1, "was": {"_count": 1}}, "one": {"_count": 1, "minute": {"_count": 1}}, "it": {"_count": 2, "had": {"_count": 1}, "needs": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "hed": {"_count": 1, "managed": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "survives": {"_count": 1}}, "they": {"_count": 1, "met": {"_count": 1}}}, "scabby": {"_count": 1, "knees": {"_count": 1, "Our": {"_count": 1}}}, "Our": {"_count": 53, "heads": {"_count": 1, "could": {"_count": 1}}, "new": {"_count": 3, "celebrity": {"_count": 1}, "premises": {"_count": 1}, "headmistress": {"_count": 1}}, "Time": {"_count": 1, "he": {"_count": 1}}, "kind": {"_count": 2, "have": {"_count": 1}, "like": {"_count": 1}}, "owl": {"_count": 1, "": {"_count": 1}}, "common": {"_count": 1, "room": {"_count": 1}}, "Stunners": {"_count": 1, "went": {"_count": 1}}, "Fellow": {"_count": 1, "Magical": {"_count": 1}}, "shortterm": {"_count": 1, "aims": {"_count": 1}}, "longterm": {"_count": 1, "aims": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "readers": {"_count": 2, "love": {"_count": 1}, "have": {"_count": 1}}, "youngest": {"_count": 1, "champion": {"_count": 1}}, "departments": {"_count": 1, "quite": {"_count": 1}}, "examination": {"_count": 1, "of": {"_count": 1}}, "jobs": {"_count": 1, "to": {"_count": 1}}, "letters": {"_count": 1, "said": {"_count": 1}}, "information": {"_count": 2, "from": {"_count": 1}, "he": {"_count": 1}}, "King": {"_count": 10, "": {"_count": 3}, "dreamily": {"_count": 1}, "sung": {"_count": 1}, "so": {"_count": 1}, "died": {"_count": 1}, "but": {"_count": 1}, "if": {"_count": 1}, "he": {"_count": 1}}, "findings": {"_count": 1, "teach": {"_count": 1}}, "ways": {"_count": 1, "are": {"_count": 1}}, "intelligence": {"_count": 1, "thankfully": {"_count": 1}}, "newspapers": {"_count": 1, "": {"_count": 1}}, "problem": {"_count": 2, "he": {"_count": 1}, "is": {"_count": 1}}, "greatly": {"_count": 1, "increased": {"_count": 1}}, "feetll": {"_count": 1, "be": {"_count": 1}}, "little": {"_count": 1, "adventure": {"_count": 1}}, "GreatAuntie": {"_count": 1, "Muriel": {"_count": 1}}, "students": {"_count": 1, "should": {"_count": 1}}, "mutual": {"_count": 1, "attraction": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "thoughts": {"_count": 1, "go": {"_count": 1}}, "only": {"_count": 1, "chance": {"_count": 1}}, "age": {"_count": 1, "said": {"_count": 1}}, "headmaster": {"_count": 1, "is": {"_count": 1}}, "trunks": {"_count": 1, "our": {"_count": 1}}, "Teddy": {"_count": 1, "": {"_count": 1}}, "cousin": {"_count": 1, "": {"_count": 1}}}, "filling": {"_count": 33, "With": {"_count": 1, "some": {"_count": 1}}, "their": {"_count": 1, "plant": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 3, "": {"_count": 1}, "why": {"_count": 1}, "the": {"_count": 1}}, "Harrys": {"_count": 1, "brain": {"_count": 1}}, "the": {"_count": 12, "room": {"_count": 2}, "kettle": {"_count": 1}, "packed": {"_count": 1}, "stadium": {"_count": 1}, "clearing": {"_count": 2}, "Hall": {"_count": 1}, "dungeon": {"_count": 1}, "whole": {"_count": 1}, "cramped": {"_count": 1}, "spiral": {"_count": 1}}, "up": {"_count": 5, "with": {"_count": 1}, "under": {"_count": 1}, "fast": {"_count": 1}, "the": {"_count": 1}, "again": {"_count": 1}}, "with": {"_count": 2, "mead": {"_count": 1}, "people": {"_count": 1}}, "his": {"_count": 2, "own": {"_count": 1}, "nose": {"_count": 1}}, "him": {"_count": 3, "with": {"_count": 1}, "up": {"_count": 1}, "expanding": {"_count": 1}}, "Harry": {"_count": 1, "in": {"_count": 1}}, "train": {"_count": 1, "": {"_count": 1}}}, "bare": {"_count": 26, "and": {"_count": 2, "full": {"_count": 1}, "solid": {"_count": 1}}, "skin": {"_count": 2, "not": {"_count": 1}, "before": {"_count": 1}}, "damp": {"_count": 1, "stone": {"_count": 1}}, "hands": {"_count": 1, "Hurry": {"_count": 1}}, "stretch": {"_count": 1, "of": {"_count": 1}}, "ankle": {"_count": 1, "showing": {"_count": 1}}, "chest": {"_count": 3, "a": {"_count": 1}, "": {"_count": 2}}, "minimum": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 4, "they": {"_count": 1}, "hard": {"_count": 1}, "large": {"_count": 1}, "": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "patch": {"_count": 1, "of": {"_count": 1}}, "pink": {"_count": 1, "feet": {"_count": 1}}, "courtyard": {"_count": 1, "that": {"_count": 1}}, "room": {"_count": 1, "with": {"_count": 1}}, "polished": {"_count": 1, "surface": {"_count": 1}}, "hand": {"_count": 1, "in": {"_count": 1}}, "Rons": {"_count": 1, "upper": {"_count": 1}}, "flesh": {"_count": 1, "of": {"_count": 1}}, "hedges": {"_count": 1, "for": {"_count": 1}}}, "Dead": {"_count": 14, "flies": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "the": {"_count": 1}}, "sure": {"_count": 1, "said": {"_count": 1}}, "twins": {"_count": 1, "": {"_count": 1}}, "Percy": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "goats": {"_count": 1, "an": {"_count": 1}}, "Hagrid": {"_count": 1, "grunted": {"_count": 1}}, "bodies": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "sleeping": {"_count": 1}}}, "flies": {"_count": 5, "and": {"_count": 1, "bits": {"_count": 1}}, "leeches": {"_count": 1, "fluxweed": {"_count": 1}}, "up": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "fluff": {"_count": 3, "So": {"_count": 1, "teach": {"_count": 1}}, "in": {"_count": 1, "shades": {"_count": 1}}, "and": {"_count": 1, "dust": {"_count": 1}}}, "Bring": {"_count": 8, "back": {"_count": 1, "what": {"_count": 1}}, "as": {"_count": 2, "many": {"_count": 1}, "much": {"_count": 1}}, "them": {"_count": 3, "in": {"_count": 2}, "to": {"_count": 1}}, "andFly": {"_count": 1, "Sale": {"_count": 1}}, "me": {"_count": 1, "your": {"_count": 1}}}, "forgot": {"_count": 64, "Just": {"_count": 1, "do": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 6}, "!": {"_count": 4}}, "the": {"_count": 3, "giant": {"_count": 1}, "hellebore": {"_count": 1}, "definition": {"_count": 1}}, "He": {"_count": 1, "looked": {"_count": 1}}, "Forgot": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "rat": {"_count": 1}}, "to": {"_count": 16, "sign": {"_count": 1}, "go": {"_count": 1}, "be": {"_count": 1}, "take": {"_count": 2}, "pack": {"_count": 1}, "wipe": {"_count": 1}, "add": {"_count": 1}, "wrap": {"_count": 1}, "jump": {"_count": 1}, "tell": {"_count": 1}, "ask": {"_count": 1}, "mention": {"_count": 1}, "look": {"_count": 2}, "keep": {"_count": 1}}, "about": {"_count": 3, "that": {"_count": 1}, "those": {"_count": 1}, "fire": {"_count": 1}}, "you": {"_count": 2, "werent": {"_count": 1}, "were": {"_count": 1}}, "I": {"_count": 1, "finished": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "did": {"_count": 1, "she": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "his": {"_count": 3, "anger": {"_count": 1}, "plan": {"_count": 1}, "dislike": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "myself": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "Madam": {"_count": 1, "Pince": {"_count": 1}}, "another": {"_count": 1, "old": {"_count": 1}}, "Fudge": {"_count": 1, "had": {"_count": 1}}, "youd": {"_count": 1, "already": {"_count": 1}}, "that": {"_count": 4, "she": {"_count": 2}, "he": {"_count": 1}, "it": {"_count": 1}}, "lied": {"_count": 1, "Harry": {"_count": 1}}, "well": {"_count": 1, "be": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "what": {"_count": 1, "you": {"_count": 1}}, "everything": {"_count": 1, "else": {"_count": 1}}}, "brains": {"_count": 46, "all": {"_count": 2, "rot": {"_count": 1}, "over": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "were": {"_count": 3, "gold": {"_count": 1}, "now": {"_count": 1}, "swimming": {"_count": 1}}, "or": {"_count": 2, "the": {"_count": 1}, "your": {"_count": 1}}, "into": {"_count": 1, "concentrating": {"_count": 1}}, "somebody": {"_count": 1, "whose": {"_count": 1}}, "she": {"_count": 2, "continued": {"_count": 1}, "concedes": {"_count": 1}}, "Ron": {"_count": 2, "said": {"_count": 1}, "that": {"_count": 1}}, "in": {"_count": 3, "me": {"_count": 1}, "Snapes": {"_count": 1}, "here": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "none": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 3, "fill": {"_count": 1}, "think": {"_count": 1}, "remember": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "was": {"_count": 1, "highly": {"_count": 1}}, "like": {"_count": 1, "yours": {"_count": 1}}, "that": {"_count": 1, "one": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "swam": {"_count": 1, "yet": {"_count": 1}}, "look": {"_count": 1, "Accio": {"_count": 1}}, "slipped": {"_count": 1, "and": {"_count": 1}}, "tentacles": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "sometimes": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 1, "your": {"_count": 1}}, "got": {"_count": 1, "hold": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "suddenly": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "how": {"_count": 1}}}, "rot": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 1, "give": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "Im": {"_count": 1}}}, "singing": {"_count": 53, "along": {"_count": 2, "to": {"_count": 1}, "with": {"_count": 1}}, "it": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "sorceress": {"_count": 1, "Celestina": {"_count": 1}}, "Oh": {"_count": 1, "Potter": {"_count": 1}}, "causing": {"_count": 1, "something": {"_count": 1}}, "valentine": {"_count": 1, "His": {"_count": 1}}, "His": {"_count": 1, "eyes": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 2, "borne": {"_count": 1}, "now": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "nosetweaking": {"_count": 1}, "weaving": {"_count": 1}}, "had": {"_count": 1, "stopped": {"_count": 1}}, "the": {"_count": 3, "national": {"_count": 1}, "crowd": {"_count": 1}, "carol": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 2}}, "their": {"_count": 1, "horrible": {"_count": 1}}, "a": {"_count": 4, "loud": {"_count": 1}, "different": {"_count": 1}, "slow": {"_count": 1}, "victory": {"_count": 1}}, "sensation": {"_count": 1, "": {"_count": 1}}, "group": {"_count": 1, "The": {"_count": 1}}, "though": {"_count": 2, "Harry": {"_count": 1}, "it": {"_count": 1}}, "dodges": {"_count": 1, "Warrington": {"_count": 1}}, "from": {"_count": 1, "below": {"_count": 1}}, "loudly": {"_count": 1, "WEASLEY": {"_count": 1}}, "carols": {"_count": 1, "apparently": {"_count": 1}}, "God": {"_count": 1, "Rest": {"_count": 1}}, "Weasley": {"_count": 1, "Is": {"_count": 1}}, "softly": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "stupid": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "A": {"_count": 1, "Cauldron": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Odo": {"_count": 1, "the": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "\u2018Ive": {"_count": 1, "got": {"_count": 1}}}, "funeral": {"_count": 24, "march": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "and": {"_count": 4, "landed": {"_count": 1}, "the": {"_count": 1}, "yet": {"_count": 1}, "then": {"_count": 1}}, "before": {"_count": 1, "there": {"_count": 1}}, "then": {"_count": 1, "left": {"_count": 1}}, "for": {"_count": 2, "Moody": {"_count": 1}, "her": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "now": {"_count": 1, "standing": {"_count": 1}}, "were": {"_count": 1, "you": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "raises": {"_count": 1, "several": {"_count": 1}}, "drum": {"_count": 1, "pounding": {"_count": 1}}}, "march": {"_count": 10, "": {"_count": 1, ".": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "away": {"_count": 2, "and": {"_count": 1}, "along": {"_count": 1}}, "and": {"_count": 1, "Voldemorts": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 2}}, "the": {"_count": 1, "other": {"_count": 1}}, "inter": {"_count": 1, "camp": {"_count": 1}}, "out": {"_count": 1, "carrying": {"_count": 1}}}, "conducted": {"_count": 4, "their": {"_count": 1, "last": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "Slytherin": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "lines": {"_count": 44, "with": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}}, "as": {"_count": 3, "Hermione": {"_count": 1}, "Dudley": {"_count": 1}, "the": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 1}, ".": {"_count": 4}, "?": {"_count": 2}}, "arrows": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 11, "high": {"_count": 1}, "lampposts": {"_count": 1}, "Crabbe": {"_count": 1}, "perches": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}, "desks": {"_count": 1}, "his": {"_count": 1}, "misery": {"_count": 1}, "spiky": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "ever": {"_count": 2, "since": {"_count": 2}}, "said": {"_count": 2, "quickly": {"_count": 1}, "Hermione": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 1, "grids": {"_count": 1}}, "around": {"_count": 1, "Mr": {"_count": 1}}, "itll": {"_count": 1, "kill": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "I": {"_count": 2, "heard": {"_count": 1}, "am": {"_count": 1}}, "Id": {"_count": 1, "say": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "gouged": {"_count": 1, "deeply": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}}, "wiping": {"_count": 50, "his": {"_count": 17, "eyes": {"_count": 5}, "forehead": {"_count": 2}, "sweaty": {"_count": 1}, "mouth": {"_count": 4}, "shining": {"_count": 1}, "face": {"_count": 3}, "streaming": {"_count": 1}}, "you": {"_count": 1, "off": {"_count": 1}}, "sweat": {"_count": 3, "off": {"_count": 2}, "from": {"_count": 1}}, "the": {"_count": 4, "cut": {"_count": 1}, "water": {"_count": 1}, "same": {"_count": 1}, "sweat": {"_count": 1}}, "confetti": {"_count": 1, "off": {"_count": 1}}, "flecks": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 12, "chin": {"_count": 1}, "eyes": {"_count": 9}, "face": {"_count": 1}, "mouth": {"_count": 1}}, "a": {"_count": 1, "patch": {"_count": 1}}, "more": {"_count": 1, "sweat": {"_count": 1}}, "them": {"_count": 3, "off": {"_count": 2}, "on": {"_count": 1}}, "it": {"_count": 1, "off": {"_count": 1}}, "large": {"_count": 1, "tears": {"_count": 1}}, "out": {"_count": 2, "a": {"_count": 1}, "every": {"_count": 1}}, "tears": {"_count": 1, "of": {"_count": 1}}, "glasses": {"_count": 1, "Harry": {"_count": 1}}}, "beyond": {"_count": 135, "all": {"_count": 7, "we": {"_count": 1}, "his": {"_count": 1}, "other": {"_count": 1}, "recognition": {"_count": 1}, "of": {"_count": 1}, "possible": {"_count": 1}, "things": {"_count": 1}}, "that": {"_count": 3, "stump": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 4, "bacon": {"_count": 1}, "wits": {"_count": 1}, "dreams": {"_count": 1}, "own": {"_count": 1}}, "repair": {"_count": 5, "": {"_count": 2}, "but": {"_count": 1}, "his": {"_count": 1}, "said": {"_count": 1}}, "our": {"_count": 1, "control": {"_count": 1}}, "the": {"_count": 45, "door": {"_count": 3}, "range": {"_count": 2}, "glass": {"_count": 1}, "village": {"_count": 2}, "woods": {"_count": 1}, "rest": {"_count": 1}, "headstone": {"_count": 1}, "reach": {"_count": 3}, "dreams": {"_count": 1}, "barrier": {"_count": 1}, "park": {"_count": 1}, "window": {"_count": 1}, "blank": {"_count": 1}, "boundaries": {"_count": 1}, "office": {"_count": 1}, "doorstep": {"_count": 1}, "scope": {"_count": 1}, "very": {"_count": 1}, "train": {"_count": 1}, "ordinary": {"_count": 1}, "possibility": {"_count": 1}, "windows": {"_count": 4}, "portrait": {"_count": 1}, "pumpkin": {"_count": 1}, "realms": {"_count": 1}, "gates": {"_count": 1}, "schools": {"_count": 1}, "pair": {"_count": 1}, "hedge": {"_count": 1}, "Burrows": {"_count": 1}, "cave": {"_count": 1}, "Ministry": {"_count": 1}, "canvas": {"_count": 1}, "boundary": {"_count": 1}, "entrance": {"_count": 1}, "passage": {"_count": 1}}, "anger": {"_count": 1, "it": {"_count": 1}}, "Ordinary": {"_count": 1, "Wizarding": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "Black": {"_count": 1, "something": {"_count": 1}}, "reason": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 7, "they": {"_count": 1}, "he": {"_count": 3}, "Harry": {"_count": 1}, "I": {"_count": 2}}, "them": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 2, "then": {"_count": 1}, "looked": {"_count": 1}}, "where": {"_count": 2, "the": {"_count": 1}, "at": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 1}, "revelation": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "him": {"_count": 2, "glinting": {"_count": 1}, "a": {"_count": 1}}, "their": {"_count": 1, "dreams": {"_count": 1}}, "pain": {"_count": 1, "my": {"_count": 1}}, "my": {"_count": 3, "wildest": {"_count": 2}, "mothers": {"_count": 1}}, "fear": {"_count": 1, "or": {"_count": 1}}, "which": {"_count": 7, "the": {"_count": 2}, "was": {"_count": 2}, "they": {"_count": 1}, "who": {"_count": 2}}, "tears": {"_count": 1, "": {"_count": 1}}, "glowed": {"_count": 1, "momentarily": {"_count": 1}}, "measure": {"_count": 4, "is": {"_count": 3}, "he": {"_count": 1}}, "Grimmauld": {"_count": 2, "Place": {"_count": 2}}, "were": {"_count": 1, "completely": {"_count": 1}}, "her": {"_count": 1, "was": {"_count": 1}}, "imagining": {"_count": 1, "pain": {"_count": 1}}, "hope": {"_count": 1, "that": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "doubt": {"_count": 1, "that": {"_count": 1}}, "belief": {"_count": 2, "Malfoy": {"_count": 1}, "that": {"_count": 1}}, "usual": {"_count": 1, "evil": {"_count": 1}}, "magical": {"_count": 1, "repair": {"_count": 1}}, "excitement": {"_count": 1, "more": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}, "another": {"_count": 1, "line": {"_count": 1}}, "Bottom": {"_count": 1, "Bridge": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "dimly": {"_count": 1}}, "either": {"_count": 1, "of": {"_count": 1}}}, "bedtime": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "reading": {"_count": 1, "said": {"_count": 1}}, "wipedown": {"_count": 1, "of": {"_count": 1}}}, "Off": {"_count": 12, "you": {"_count": 9, "trot": {"_count": 1}, "go": {"_count": 8}}, "to": {"_count": 1, "bed": {"_count": 1}}, "with": {"_count": 1, "some": {"_count": 1}}, "being": {"_count": 1, "brilliant": {"_count": 1}}}, "trot": {"_count": 7, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "carpet": {"_count": 1, "slippers": {"_count": 1}}, "along": {"_count": 1, "to": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "turning": {"_count": 1, "the": {"_count": 1}}}, "crowds": {"_count": 16, "out": {"_count": 1, "of": {"_count": 1}}, "flocking": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "loud": {"_count": 1}}, "now": {"_count": 1, "flooding": {"_count": 1}}, "descending": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "faces": {"_count": 1, "became": {"_count": 1}}, "at": {"_count": 1, "which": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "babble": {"_count": 1, "his": {"_count": 1}}, "behind": {"_count": 1, "": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "attention": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 2, "them": {"_count": 1}, "students": {"_count": 1}}}, "portraits": {"_count": 54, "along": {"_count": 1, "the": {"_count": 1}}, "kept": {"_count": 1, "going": {"_count": 1}}, "and": {"_count": 1, "creaking": {"_count": 1}}, "of": {"_count": 11, "old": {"_count": 4}, "its": {"_count": 1}, "famous": {"_count": 1}, "brutallooking": {"_count": 1}, "the": {"_count": 1}, "previous": {"_count": 2}, "Hogwarts": {"_count": 1}}, "was": {"_count": 1, "Dumbledores": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "stirred": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}, "still": {"_count": 1, "turned": {"_count": 1}}, "hung": {"_count": 1, "crooked": {"_count": 1}}, "awoke": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 7, "the": {"_count": 6}, "either": {"_count": 1}}, "hanging": {"_count": 2, "very": {"_count": 1}, "in": {"_count": 1}}, "they": {"_count": 1, "can": {"_count": 1}}, "follow": {"_count": 1, "him": {"_count": 1}}, "down": {"_count": 1, "there": {"_count": 1}}, "lining": {"_count": 1, "the": {"_count": 1}}, "shoving": {"_count": 1, "the": {"_count": 1}}, "yelled": {"_count": 1, "Fawkes": {"_count": 1}}, "hissed": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 1, "passed": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "all": {"_count": 1, "around": {"_count": 1}}, "covering": {"_count": 1, "the": {"_count": 1}}, "followed": {"_count": 1, "him": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "usually": {"_count": 1, "did": {"_count": 1}}, "that": {"_count": 1, "hung": {"_count": 1}}, "fell": {"_count": 1, "respectfully": {"_count": 1}}, "thinking": {"_count": 1, "now": {"_count": 1}}}, "doorways": {"_count": 7, "hidden": {"_count": 1, "behind": {"_count": 1}}, "on": {"_count": 1, "either": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "like": {"_count": 1, "some": {"_count": 1}}, "and": {"_count": 2, "at": {"_count": 1}, "began": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "panels": {"_count": 1, "and": {"_count": 1, "hanging": {"_count": 1}}}, "tapestries": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "staircases": {"_count": 8, "yawning": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "reach": {"_count": 1}}, "pausing": {"_count": 1, "at": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "along": {"_count": 1}}}, "yawning": {"_count": 23, "and": {"_count": 6, "dragging": {"_count": 1}, "stretching": {"_count": 2}, "shut": {"_count": 1}, "said": {"_count": 1}, "rubbing": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "side": {"_count": 1, "by": {"_count": 1}}, "his": {"_count": 1, "team": {"_count": 1}}, "widely": {"_count": 2, "her": {"_count": 1}, "and": {"_count": 1}}, "hugely": {"_count": 1, "again": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "when": {"_count": 1, "Crack": {"_count": 1}}, "serpent": {"_count": 1, "and": {"_count": 1}}}, "dragging": {"_count": 42, "their": {"_count": 2, "feet": {"_count": 1}, "trunks": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "Ron": {"_count": 4, "behind": {"_count": 1}, "away": {"_count": 1}, "backward": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 6, "feet": {"_count": 1}, "trunk": {"_count": 4}, "leg": {"_count": 1}}, "its": {"_count": 1, "feet": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "Black": {"_count": 1, "away": {"_count": 1}}, "Buckbeak": {"_count": 1, "behind": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "a": {"_count": 1, "comb": {"_count": 1}}, "Hermione": {"_count": 3, "s": {"_count": 1}, "along": {"_count": 1}, "with": {"_count": 1}}, "Harry": {"_count": 3, "into": {"_count": 1}, "toward": {"_count": 1}, "and": {"_count": 1}}, "him": {"_count": 4, "back": {"_count": 2}, "closer": {"_count": 1}, "backward": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "huge": {"_count": 1}, "heels": {"_count": 1}}, "her": {"_count": 2, "over": {"_count": 1}, "toward": {"_count": 1}}, "Neville": {"_count": 1, "back": {"_count": 1}}, "herself": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "his": {"_count": 1}}, "Griphook": {"_count": 1, "with": {"_count": 1}}, "rattling": {"_count": 1, "breaths": {"_count": 1}}, "injured": {"_count": 1, "friends": {"_count": 1}}, "arrows": {"_count": 1, "from": {"_count": 1}}}, "farther": {"_count": 55, "they": {"_count": 3, "had": {"_count": 2}, "walked": {"_count": 1}}, "and": {"_count": 6, "farther": {"_count": 6}}, "north": {"_count": 7, "each": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 5}}, "away": {"_count": 6, "in": {"_count": 1}, "than": {"_count": 1}, "from": {"_count": 1}, "almost": {"_count": 1}, "like": {"_count": 1}, "that": {"_count": 1}}, "underground": {"_count": 1, "but": {"_count": 1}}, "on": {"_count": 5, "they": {"_count": 3}, "the": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 3}}, "down": {"_count": 1, "the": {"_count": 1}}, "upstairs": {"_count": 1, "and": {"_count": 1}}, "backward": {"_count": 1, "some": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "to": {"_count": 1, "grab": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "ends": {"_count": 1, "of": {"_count": 1}}, "up": {"_count": 2, "her": {"_count": 2}}, "he": {"_count": 1, "felt": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "than": {"_count": 2, "he": {"_count": 1}, "Ron": {"_count": 1}}}, "ahead": {"_count": 166, "of": {"_count": 55, "them": {"_count": 18}, "Harry": {"_count": 2}, "him": {"_count": 22}, "Black": {"_count": 1}, "Mullet": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 3}, "us": {"_count": 1}, "me": {"_count": 2}, "the": {"_count": 1}, "it": {"_count": 1}, "Snape": {"_count": 1}, "you": {"_count": 1}}, "and": {"_count": 12, "off": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}, "all": {"_count": 1}, "smoke": {"_count": 1}, "Hermione": {"_count": 1}, "they": {"_count": 1}, "carried": {"_count": 1}, "aimed": {"_count": 1}, "Harry": {"_count": 1}, "Yaxley": {"_count": 1}, "Hagrid": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "he": {"_count": 5, "put": {"_count": 1}, "was": {"_count": 1}, "heard": {"_count": 1}, "could": {"_count": 2}}, "": {"_count": 30, ".": {"_count": 27}, "!": {"_count": 2}, "?": {"_count": 1}}, "something": {"_count": 1, "definitely": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 2, "can": {"_count": 1}, "say": {"_count": 1}}, "clear": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "Another": {"_count": 1, "will": {"_count": 1}}, "to": {"_count": 4, "get": {"_count": 1}, "say": {"_count": 1}, "the": {"_count": 1}, "fulfill": {"_count": 1}}, "but": {"_count": 2, "their": {"_count": 1}, "just": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "put": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "people": {"_count": 1, "follow": {"_count": 1}}, "if": {"_count": 1, "Cho": {"_count": 1}}, "Katie": {"_count": 1, "scored": {"_count": 1}}, "Go": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "ten": {"_count": 1}}, "the": {"_count": 3, "idiot": {"_count": 1}, "dragons": {"_count": 1}, "blistered": {"_count": 1}}, "for": {"_count": 3, "you": {"_count": 1}, "a": {"_count": 1}, "himself": {"_count": 1}}, "said": {"_count": 1, "Bagman": {"_count": 1}}, "as": {"_count": 2, "possible": {"_count": 1}, "he": {"_count": 1}}, "was": {"_count": 1, "empty": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "his": {"_count": 1}}, "A": {"_count": 1, "great": {"_count": 1}}, "his": {"_count": 3, "chin": {"_count": 1}, "silver": {"_count": 1}, "wand": {"_count": 1}}, "Harry": {"_count": 3, "got": {"_count": 1}, "had": {"_count": 1}, "could": {"_count": 1}}, "taking": {"_count": 1, "one": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "Macnair": {"_count": 1, "and": {"_count": 1}}, "flung": {"_count": 1, "Ron": {"_count": 1}}, "fastening": {"_count": 1, "a": {"_count": 1}}, "cast": {"_count": 1, "deep": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "illuminated": {"_count": 2, "for": {"_count": 1}, "in": {"_count": 1}}, "that": {"_count": 2, "only": {"_count": 1}, "led": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}, "far": {"_count": 1, "beyond": {"_count": 1}}, "filling": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 1, "two": {"_count": 1}}, "were": {"_count": 1, "Lupin": {"_count": 1}}}, "poltergeist": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "a": {"_count": 1, "grinning": {"_count": 1}}, "ever": {"_count": 1, "entaired": {"_count": 1}}, "its": {"_count": 1, "my": {"_count": 1}}, "bobbing": {"_count": 1, "on": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 1, "wreaking": {"_count": 1}}}, "Baron": {"_count": 19, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 3}}, "has": {"_count": 1, "his": {"_count": 1}}, "sir": {"_count": 1, "he": {"_count": 1}}, "Ill": {"_count": 1, "not": {"_count": 1}}, "a": {"_count": 1, "gaunt": {"_count": 1}}, "put": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 2, "the": {"_count": 1}, "always": {"_count": 1}}, "going": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 1, "saw": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "that": {"_count": 1}}, "yes": {"_count": 1, "said": {"_count": 1}}, "blundering": {"_count": 1, "through": {"_count": 1}}}, "legged": {"_count": 6, "in": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "tables": {"_count": 2, "puffing": {"_count": 1}, "that": {"_count": 1}}, "his": {"_count": 1, "bright": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "Oooooooh": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "cackle": {"_count": 10, "": {"_count": 4, ".": {"_count": 4}}, "of": {"_count": 5, "highpitched": {"_count": 1}, "mad": {"_count": 2}, "triumphant": {"_count": 1}, "laughter": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}}, "Firsties": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}}, "Baronll": {"_count": 1, "hear": {"_count": 1, "about": {"_count": 1}}}, "dropping": {"_count": 51, "the": {"_count": 8, "walking": {"_count": 1}, "box": {"_count": 1}, "Quaffle": {"_count": 2}, "end": {"_count": 1}, "elf": {"_count": 1}, "locket": {"_count": 1}, "money": {"_count": 1}}, "letters": {"_count": 2, "and": {"_count": 2}}, "out": {"_count": 2, "of": {"_count": 2}}, "his": {"_count": 13, "trunk": {"_count": 1}, "bag": {"_count": 1}, "professional": {"_count": 1}, "pestle": {"_count": 1}, "top": {"_count": 1}, "voice": {"_count": 6}, "toast": {"_count": 1}, "knife": {"_count": 1}}, "another": {"_count": 2, "inch": {"_count": 1}, "Dungbomb": {"_count": 1}}, "her": {"_count": 3, "voice": {"_count": 3}}, "to": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "poisonous": {"_count": 1}}, "you": {"_count": 1, "off": {"_count": 1}}, "like": {"_count": 1, "stones": {"_count": 1}}, "heavily": {"_count": 1, "onto": {"_count": 1}}, "it": {"_count": 3, "onto": {"_count": 1}, "back": {"_count": 1}, "said": {"_count": 1}}, "in": {"_count": 3, "for": {"_count": 1}, "from": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "strewn": {"_count": 1, "floor": {"_count": 1}}, "all": {"_count": 2, "pretense": {"_count": 2}}, "Divination": {"_count": 1, "": {"_count": 1}}, "landed": {"_count": 1, "on": {"_count": 1}}, "Hermione": {"_count": 1, "she": {"_count": 1}}, "Snargaluff": {"_count": 1, "pods": {"_count": 1}}}, "zooming": {"_count": 31, "away": {"_count": 1, "rattling": {"_count": 1}}, "around": {"_count": 8, "the": {"_count": 4}, "their": {"_count": 1}, "his": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "toward": {"_count": 3, "him": {"_count": 1}, "them": {"_count": 1}, "one": {"_count": 1}}, "in": {"_count": 5, "and": {"_count": 5}}, "into": {"_count": 2, "the": {"_count": 2}}, "delightedly": {"_count": 1, "all": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "neatly": {"_count": 1, "into": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "forward": {"_count": 1, "to": {"_count": 1}}, "gleefully": {"_count": 1, "down": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "along": {"_count": 1, "on": {"_count": 1}}, "over": {"_count": 1, "them": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "coats": {"_count": 10, "of": {"_count": 2, "armor": {"_count": 2}}, "pulling": {"_count": 1, "into": {"_count": 1}}, "Mr": {"_count": 2, "and": {"_count": 2}}, "and": {"_count": 1, "Mrs": {"_count": 1}}, "changing": {"_count": 1, "smoothly": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}, "clinging": {"_count": 1, "to": {"_count": 1}}, "crouched": {"_count": 1, "down": {"_count": 1}}}, "armor": {"_count": 48, "as": {"_count": 1, "he": {"_count": 1}}, "could": {"_count": 1, "walk": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "near": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 8, "climbed": {"_count": 1}, "the": {"_count": 1}, "sank": {"_count": 1}, "rebounded": {"_count": 1}, "along": {"_count": 1}, "great": {"_count": 1}, "replicas": {"_count": 1}, "cloaks": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "clanked": {"_count": 1, "into": {"_count": 1}}, "repacking": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "suddenly": {"_count": 1}}, "their": {"_count": 1, "powerful": {"_count": 1}}, "had": {"_count": 2, "all": {"_count": 1}, "stood": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 2, "ze": {"_count": 1}, "front": {"_count": 1}}, "glinted": {"_count": 1, "in": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "whose": {"_count": 2, "helmet": {"_count": 1}, "helmets": {"_count": 1}}, "from": {"_count": 1, "which": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}, "that": {"_count": 1, "exploded": {"_count": 1}}, "Harry": {"_count": 1, "heard": {"_count": 1}}, "possesses": {"_count": 1, "": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "way": {"_count": 1}, "skins": {"_count": 1}}, "stepped": {"_count": 1, "Severus": {"_count": 1}}, "behind": {"_count": 1, "which": {"_count": 1}}, "jumped": {"_count": 1, "down": {"_count": 1}}, "brandished": {"_count": 1, "swords": {"_count": 1}}, "screaming": {"_count": 1, "encouragement": {"_count": 1}}}, "Here": {"_count": 119, "we": {"_count": 9, "are": {"_count": 4}, "come": {"_count": 1}, "go": {"_count": 4}}, "I": {"_count": 4, "go": {"_count": 1}, "come": {"_count": 1}, "am": {"_count": 1}, "brought": {"_count": 1}}, "girl": {"_count": 1, "take": {"_count": 1}}, "and": {"_count": 9, "here": {"_count": 1}, "there": {"_count": 8}}, "it": {"_count": 1, "is": {"_count": 1}}, "is": {"_count": 2, "your": {"_count": 1}, "written": {"_count": 1}}, "you": {"_count": 13, "are": {"_count": 10}, "go": {"_count": 2}, "see": {"_count": 1}}, "he": {"_count": 13, "said": {"_count": 5}, "took": {"_count": 2}, "allowed": {"_count": 1}, "spotted": {"_count": 1}, "began": {"_count": 1}, "seized": {"_count": 1}, "goes": {"_count": 1}, "pointed": {"_count": 1}}, "": {"_count": 15, "!": {"_count": 5}, ".": {"_count": 9}, "?": {"_count": 1}}, "Lupin": {"_count": 1, "handed": {"_count": 1}}, "He": {"_count": 5, "handed": {"_count": 1}, "rapped": {"_count": 1}, "gave": {"_count": 1}, "pulled": {"_count": 1}, "shoved": {"_count": 1}}, "youve": {"_count": 1, "earned": {"_count": 1}}, "She": {"_count": 1, "had": {"_count": 1}}, "comes": {"_count": 3, "Lupin": {"_count": 1}, "Gilbert": {"_count": 1}, "Ernie": {"_count": 1}}, "Harry": {"_count": 3, "where": {"_count": 1}, "pulled": {"_count": 1}, "couldn": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "last": {"_count": 1}}, "take": {"_count": 4, "it": {"_count": 1}, "my": {"_count": 1}, "this": {"_count": 1}, "a": {"_count": 1}}, "Moody": {"_count": 1, "muttered": {"_count": 1}}, "dear": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 7, "Kingsley": {"_count": 1}, "Lupin": {"_count": 1}, "Professor": {"_count": 1}, "George": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}}, "stood": {"_count": 1, "the": {"_count": 1}}, "hold": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "And": {"_count": 2, "he": {"_count": 1}, "with": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "swap": {"_count": 1, "Harry": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "have": {"_count": 2, "a": {"_count": 2}}, "again": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "madam": {"_count": 1, "squeaked": {"_count": 1}}, "Hokey": {"_count": 1, "take": {"_count": 1}}, "drink": {"_count": 1, "this": {"_count": 1}}, "permettezmoi": {"_count": 1, "to": {"_count": 1}}, "hes": {"_count": 1, "pretty": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "Griphook": {"_count": 1, "Gornuk": {"_count": 1}}, "too": {"_count": 1, "snow": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}}, "portrait": {"_count": 177, "of": {"_count": 34, "a": {"_count": 5}, "the": {"_count": 15}, "Sir": {"_count": 1}, "your": {"_count": 1}, "Siriuss": {"_count": 4}, "Armando": {"_count": 2}, "Mrs": {"_count": 1}, "Phineas": {"_count": 1}, "Ariana": {"_count": 1}, "Dumbledore": {"_count": 3}}, "swung": {"_count": 8, "forward": {"_count": 3}, "open": {"_count": 4}, "closed": {"_count": 1}}, "hole": {"_count": 74, "when": {"_count": 2}, "hissing": {"_count": 1}, "": {"_count": 26}, "was": {"_count": 3}, "burst": {"_count": 1}, "to": {"_count": 3}, "wondering": {"_count": 1}, "and": {"_count": 12}, "glad": {"_count": 1}, "again": {"_count": 1}, "alone": {"_count": 1}, "Stand": {"_count": 1}, "they": {"_count": 1}, "opened": {"_count": 3}, "which": {"_count": 1}, "into": {"_count": 6}, "up": {"_count": 1}, "pushed": {"_count": 1}, "her": {"_count": 1}, "but": {"_count": 1}, "still": {"_count": 1}, "while": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "like": {"_count": 1}, "is": {"_count": 1}}, "cant": {"_count": 1, "do": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "Gryffindors": {"_count": 1}}, "which": {"_count": 2, "had": {"_count": 1}, "suddenly": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "back": {"_count": 2, "open": {"_count": 1}, "into": {"_count": 1}}, "had": {"_count": 4, "been": {"_count": 1}, "proved": {"_count": 1}, "once": {"_count": 1}, "joined": {"_count": 1}}, "and": {"_count": 9, "vanished": {"_count": 2}, "talking": {"_count": 1}, "disappeared": {"_count": 1}, "was": {"_count": 1}, "it": {"_count": 1}, "knew": {"_count": 1}, "propping": {"_count": 1}, "the": {"_count": 1}}, "opened": {"_count": 1, "almost": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "restore": {"_count": 1}, "get": {"_count": 1}, "portrait": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "should": {"_count": 2, "give": {"_count": 1}, "have": {"_count": 1}}, "was": {"_count": 2, "howling": {"_count": 1}, "unbearable": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "panting": {"_count": 1, "slightly": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "again": {"_count": 1, "Phineas": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Hell": {"_count": 1}}, "his": {"_count": 1, "brain": {"_count": 1}}, "calling": {"_count": 1, "for": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "talking": {"_count": 2, "to": {"_count": 2}}, "in": {"_count": 2, "number": {"_count": 1}, "Grimmauld": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "that": {"_count": 1, "sometimes": {"_count": 1}}, "couldnt": {"_count": 1, "you": {"_count": 1}}, "after": {"_count": 1, "portrait": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "directly": {"_count": 1, "behind": {"_count": 1}}}, "dress": {"_count": 59, "": {"_count": 9, ".": {"_count": 9}}, "Mrs": {"_count": 1, "Mason": {"_count": 1}}, "sense": {"_count": 1, "at": {"_count": 1}}, "asked": {"_count": 1, "them": {"_count": 1}}, "with": {"_count": 2, "that": {"_count": 1}, "matching": {"_count": 1}}, "and": {"_count": 4, "a": {"_count": 1}, "coat": {"_count": 1}, "looked": {"_count": 1}, "seemed": {"_count": 1}}, "before": {"_count": 1, "Neville": {"_count": 1}}, "in": {"_count": 2, "honor": {"_count": 1}, "the": {"_count": 1}}, "properly": {"_count": 1, "these": {"_count": 1}}, "as": {"_count": 2, "long": {"_count": 1}, "Muggles": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "robes": {"_count": 28, "this": {"_count": 2}, "theyre": {"_count": 1}, "didnt": {"_count": 1}, "and": {"_count": 5}, "was": {"_count": 1}, "as": {"_count": 3}, "over": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 3}, "up": {"_count": 1}, "of": {"_count": 2}, "to": {"_count": 2}, "in": {"_count": 1}, "instead": {"_count": 1}, "felt": {"_count": 1}, "but": {"_count": 1}, "with": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "than": {"_count": 1, "anything": {"_count": 1}}, "a": {"_count": 1, "motheaten": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "marrying": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 1, "far": {"_count": 1}}}, "Password": {"_count": 8, "": {"_count": 7, "?": {"_count": 7}}, "was": {"_count": 1, "Altars": {"_count": 1}}}, "Caput": {"_count": 1, "Draconis": {"_count": 1, "said": {"_count": 1}}}, "Draconis": {"_count": 1, "said": {"_count": 1, "Percy": {"_count": 1}}}, "reveal": {"_count": 41, "a": {"_count": 10, "round": {"_count": 1}, "large": {"_count": 2}, "hole": {"_count": 1}, "stone": {"_count": 1}, "thick": {"_count": 1}, "new": {"_count": 1}, "greenish": {"_count": 1}, "cavelike": {"_count": 1}, "single": {"_count": 1}}, "an": {"_count": 1, "astonishing": {"_count": 1}}, "voluminous": {"_count": 1, "drawers": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 9, "entrance": {"_count": 1}, "hole": {"_count": 1}, "whereabouts": {"_count": 1}, "tips": {"_count": 1}, "portrait": {"_count": 1}, "Resurrection": {"_count": 1}, "thin": {"_count": 1}, "smock": {"_count": 1}, "best": {"_count": 1}}, "that": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "is": {"_count": 1, "none": {"_count": 1}}, "regularly": {"_count": 1, "collapses": {"_count": 1}}, "her": {"_count": 2, "horsey": {"_count": 1}, "husband": {"_count": 1}}, "skinny": {"_count": 1, "pallid": {"_count": 1}}, "himself": {"_count": 3, "to": {"_count": 2}, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "sinisterly": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "Susan": {"_count": 1, "sobbing": {"_count": 1}}, "in": {"_count": 1, "chapter": {"_count": 1}}, "itself": {"_count": 1, "but": {"_count": 1}}, "human": {"_count": 1, "presence": {"_count": 1}}, "oneself": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "great": {"_count": 1}}}, "cozy": {"_count": 17, "round": {"_count": 1, "room": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "sitting": {"_count": 1, "by": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "little": {"_count": 2, "library": {"_count": 1}, "gathering": {"_count": 1}}, "circular": {"_count": 1, "tower": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "said": {"_count": 1}}, "spot": {"_count": 1, "for": {"_count": 1}}, "home": {"_count": 1, "she": {"_count": 1}}, "catchup": {"_count": 1, "later": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}}, "armchairs": {"_count": 16, "": {"_count": 2, ".": {"_count": 2}}, "into": {"_count": 1, "hunched": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "where": {"_count": 1, "people": {"_count": 1}}, "and": {"_count": 3, "fat": {"_count": 1}, "tables": {"_count": 1}, "rickety": {"_count": 1}}, "or": {"_count": 2, "sank": {"_count": 1}, "against": {"_count": 1}}, "to": {"_count": 1, "vanish": {"_count": 1}}, "that": {"_count": 1, "Dumbledore": {"_count": 1}}, "feeling": {"_count": 1, "more": {"_count": 1}}, "with": {"_count": 1, "The": {"_count": 1}}}, "directed": {"_count": 24, "the": {"_count": 3, "girls": {"_count": 1}, "tables": {"_count": 1}, "wand": {"_count": 1}}, "their": {"_count": 3, "steps": {"_count": 2}, "wands": {"_count": 1}}, "it": {"_count": 3, "straight": {"_count": 1}, "at": {"_count": 2}}, "Aunt": {"_count": 1, "Marges": {"_count": 1}}, "its": {"_count": 1, "narrow": {"_count": 1}}, "toward": {"_count": 1, "finding": {"_count": 1}}, "his": {"_count": 5, "wand": {"_count": 2}, "feet": {"_count": 1}, "steps": {"_count": 1}, "words": {"_count": 1}}, "him": {"_count": 1, "toward": {"_count": 1}}, "at": {"_count": 3, "each": {"_count": 1}, "its": {"_count": 1}, "Harry": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "a": {"_count": 1, "Stunning": {"_count": 1}}, "only": {"_count": 1, "at": {"_count": 1}}}, "spiral": {"_count": 54, "staircase": {"_count": 44, "they": {"_count": 3}, "and": {"_count": 6}, "up": {"_count": 1}, "their": {"_count": 1}, "to": {"_count": 5}, "his": {"_count": 1}, "that": {"_count": 3}, "": {"_count": 9}, "with": {"_count": 2}, "toward": {"_count": 1}, "wondering": {"_count": 1}, "until": {"_count": 1}, "into": {"_count": 2}, "behind": {"_count": 2}, "without": {"_count": 1}, "hitting": {"_count": 1}, "two": {"_count": 1}, "three": {"_count": 1}, "but": {"_count": 1}, "led": {"_count": 1}}, "stair": {"_count": 2, "with": {"_count": 1}, "he": {"_count": 1}}, "stone": {"_count": 3, "staircase": {"_count": 3}}, "horribly": {"_count": 1, "before": {"_count": 1}}, "stairs": {"_count": 2, "into": {"_count": 1}, "": {"_count": 1}}, "escalator": {"_count": 1, "": {"_count": 1}}, "horn": {"_count": 1, "not": {"_count": 1}}}, "posters": {"_count": 16, "hung": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 6, "the": {"_count": 1}, "Rons": {"_count": 1}, "Quidditch": {"_count": 1}, "their": {"_count": 1}, "cars": {"_count": 1}, "bikiniclad": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "photographs": {"_count": 1}, "pictures": {"_count": 1}}, "saying": {"_count": 1, "things": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "carried": {"_count": 1, "blownup": {"_count": 1}}, "bright": {"_count": 1, "blue": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "plastered": {"_count": 1, "over": {"_count": 1}}}, "velvet": {"_count": 36, "curtains": {"_count": 5, "": {"_count": 1}, "now": {"_count": 1}, "Harry": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 1, "its": {"_count": 1}}, "drapes": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "from": {"_count": 1, "their": {"_count": 1}}, "trimmed": {"_count": 1, "with": {"_count": 1}}, "dress": {"_count": 1, "": {"_count": 1}}, "covered": {"_count": 1, "table": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "bow": {"_count": 5, "perched": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}, "set": {"_count": 1}, "in": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "jacket": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "suit": {"_count": 1, "at": {"_count": 1}}, "hat": {"_count": 2, "to": {"_count": 1}, "a": {"_count": 1}}, "pouffe": {"_count": 2, "he": {"_count": 1}, "a": {"_count": 1}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "lay": {"_count": 1, "a": {"_count": 1}}, "cushion": {"_count": 1, "": {"_count": 1}}, "smoking": {"_count": 1, "jackets": {"_count": 1}}, "spangled": {"_count": 1, "with": {"_count": 1}}, "curtain": {"_count": 1, "aside": {"_count": 1}}, "hairbow": {"_count": 1, "level": {"_count": 1}}, "case": {"_count": 1, "which": {"_count": 1}}}, "curtains": {"_count": 71, "": {"_count": 8, ".": {"_count": 5}, "!": {"_count": 3}}, "of": {"_count": 7, "his": {"_count": 3}, "rain": {"_count": 1}, "greasy": {"_count": 2}, "black": {"_count": 1}}, "were": {"_count": 8, "closed": {"_count": 4}, "all": {"_count": 1}, "still": {"_count": 1}, "buzzing": {"_count": 1}, "no": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 2}}, "around": {"_count": 5, "his": {"_count": 4}, "a": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 2, "ripped": {"_count": 1}, "saw": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "survey": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}, "now": {"_count": 1, "hiding": {"_count": 1}}, "hung": {"_count": 1, "at": {"_count": 1}}, "behind": {"_count": 1, "which": {"_count": 1}}, "shut": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 3, "hurried": {"_count": 1}, "beckoned": {"_count": 1}, "a": {"_count": 1}}, "closed": {"_count": 1, "again": {"_count": 1}}, "in": {"_count": 2, "there": {"_count": 1}, "a": {"_count": 1}}, "over": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "took": {"_count": 1, "most": {"_count": 1}}, "drawn": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 3}}, "swept": {"_count": 1, "across": {"_count": 1}}, "being": {"_count": 1, "pulled": {"_count": 1}}, "closing": {"_count": 1, "themselves": {"_count": 1}}, "concealed": {"_count": 1, "the": {"_count": 1}}, "flying": {"_count": 1, "open": {"_count": 1}}, "swung": {"_count": 1, "shut": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "looked": {"_count": 1, "disappointed": {"_count": 1}}, "hiding": {"_count": 1, "her": {"_count": 1}}, "swished": {"_count": 1, "shut": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "tight": {"_count": 1, "shut": {"_count": 1}}}, "pajamas": {"_count": 47, "and": {"_count": 12, "fell": {"_count": 1}, "the": {"_count": 1}, "Scabbers": {"_count": 1}, "clambered": {"_count": 1}, "into": {"_count": 1}, "got": {"_count": 3}, "Harry": {"_count": 1}, "dressing": {"_count": 1}, "pulling": {"_count": 1}, "shaking": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 16}, "?": {"_count": 1}}, "got": {"_count": 1, "into": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 2, "No": {"_count": 1}, "George": {"_count": 1}}, "was": {"_count": 1, "arguing": {"_count": 1}}, "Ron": {"_count": 1, "stopped": {"_count": 1}}, "slippers": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "took": {"_count": 1, "off": {"_count": 1}}, "these": {"_count": 1, "are": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "silence": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "covered": {"_count": 1, "by": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "looked": {"_count": 1, "oddly": {"_count": 1}}, "being": {"_count": 1, "shepherded": {"_count": 1}}}, "hangings": {"_count": 26, "": {"_count": 2, ".": {"_count": 2}}, "became": {"_count": 1, "scarlet": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "were": {"_count": 1, "hiding": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "lamps": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "torn": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 2, "my": {"_count": 1}, "his": {"_count": 1}}, "lay": {"_count": 1, "Crookshanks": {"_count": 1}}, "and": {"_count": 4, "scrapings": {"_count": 1}, "vanished": {"_count": 1}, "savored": {"_count": 1}, "fell": {"_count": 1}}, "stood": {"_count": 1, "against": {"_count": 1}}, "shut": {"_count": 2, "around": {"_count": 1}, "with": {"_count": 1}}, "heavyeyed": {"_count": 1, "and": {"_count": 1}}, "closed": {"_count": 2, "around": {"_count": 2}}, "apart": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}}, "chewing": {"_count": 16, "my": {"_count": 1, "sheets": {"_count": 1}}, "gum": {"_count": 2, "": {"_count": 1}, "shot": {"_count": 1}}, "her": {"_count": 2, "tongue": {"_count": 2}}, "the": {"_count": 2, "gillyweed": {"_count": 1}, "words": {"_count": 1}}, "carpet": {"_count": 1, "": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 3, "fingernails": {"_count": 1}, "turkey": {"_count": 1}, "long": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "transfer": {"_count": 2, "to": {"_count": 1, "Slytherin": {"_count": 1}}, "the": {"_count": 1, "boy": {"_count": 1}}}, "destiny": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "may": {"_count": 1, "be": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "heavier": {"_count": 8, "and": {"_count": 2, "heavier": {"_count": 2}}, "he": {"_count": 1, "tried": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 2, "usual": {"_count": 1}, "ever": {"_count": 1}}, "things": {"_count": 1, "flying": {"_count": 1}}, "it": {"_count": 1, "pattered": {"_count": 1}}}, "struggled": {"_count": 57, "with": {"_count": 2, "it": {"_count": 1}, "all": {"_count": 1}}, "through": {"_count": 4, "all": {"_count": 1}, "one": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "toward": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "against": {"_count": 3, "the": {"_count": 1}, "for": {"_count": 1}, "Warringtons": {"_count": 1}}, "and": {"_count": 4, "cried": {"_count": 1}, "the": {"_count": 1}, "kicked": {"_count": 1}, "yelled": {"_count": 1}}, "to": {"_count": 20, "his": {"_count": 5}, "cover": {"_count": 1}, "touch": {"_count": 1}, "fight": {"_count": 1}, "find": {"_count": 2}, "get": {"_count": 2}, "contain": {"_count": 1}, "repel": {"_count": 1}, "block": {"_count": 1}, "remain": {"_count": 1}, "raise": {"_count": 1}, "think": {"_count": 1}, "pull": {"_count": 1}, "return": {"_count": 1}}, "for": {"_count": 2, "words": {"_count": 1}, "a": {"_count": 1}}, "singlehandedly": {"_count": 1, "against": {"_count": 1}}, "out": {"_count": 1, "past": {"_count": 1}}, "Harry": {"_count": 1, "pulling": {"_count": 1}}, "off": {"_count": 1, "down": {"_count": 1}}, "frantically": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 3, "from": {"_count": 1}, "the": {"_count": 1}, "shivering": {"_count": 1}}, "around": {"_count": 1, "to": {"_count": 1}}, "hard": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 1, "went": {"_count": 1}}, "fruitlessly": {"_count": 1, "mutely": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "Wormtails": {"_count": 1, "wand": {"_count": 1}}, "upward": {"_count": 1, "toward": {"_count": 1}}, "free": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "desperate": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sweating": {"_count": 16, "and": {"_count": 4, "shaking": {"_count": 2}, "shivering": {"_count": 1}, "vomiting": {"_count": 1}}, "now": {"_count": 1, "I": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "profusely": {"_count": 1, "looked": {"_count": 1}}, "brow": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "rather": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "POTIONS": {"_count": 2, "MASTER": {"_count": 1, "There": {"_count": 1}}, "FROM": {"_count": 1, "BECOMING": {"_count": 1}}}, "MASTER": {"_count": 4, "There": {"_count": 1, "look": {"_count": 1}}, "I": {"_count": 1, "TRIED": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "FROM": {"_count": 1, "KREACHER": {"_count": 1}}}, "Wearing": {"_count": 1, "the": {"_count": 1, "glasses": {"_count": 1}}}, "Whispers": {"_count": 2, "followed": {"_count": 1, "Harry": {"_count": 1}}, "swept": {"_count": 1, "the": {"_count": 1}}}, "lining": {"_count": 11, "up": {"_count": 3, "outside": {"_count": 2}, "for": {"_count": 1}}, "of": {"_count": 2, "Georges": {"_count": 1}, "the": {"_count": 1}}, "seven": {"_count": 1, "staircases": {"_count": 1}}, "the": {"_count": 3, "walls": {"_count": 1}, "room": {"_count": 1}, "clearing": {"_count": 1}}, "these": {"_count": 1, "shelves": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}}, "classrooms": {"_count": 10, "stood": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "where": {"_count": 1, "lessons": {"_count": 1}}, "that": {"_count": 2, "extra": {"_count": 1}, "were": {"_count": 1}}, "cleaned": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 1, "they": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}}, "tiptoe": {"_count": 11, "to": {"_count": 4, "get": {"_count": 1}, "see": {"_count": 2}, "look": {"_count": 1}}, "slipped": {"_count": 1, "inside": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "better": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "kissing": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}}, "doubled": {"_count": 13, "back": {"_count": 3, "to": {"_count": 2}, "and": {"_count": 1}}, "up": {"_count": 7, "hanging": {"_count": 1}, "wheezing": {"_count": 1}, "he": {"_count": 1}, "with": {"_count": 3}, "back": {"_count": 1}}, "around": {"_count": 1, "behind": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "bond": {"_count": 1}}}, "pass": {"_count": 99, "him": {"_count": 5, "in": {"_count": 1}, "heard": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}, "I": {"_count": 1}}, "to": {"_count": 2, "Alicia": {"_count": 1}, "the": {"_count": 1}}, "these": {"_count": 1, "exams": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "on": {"_count": 4, "my": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "right": {"_count": 1}}, "out": {"_count": 5, "": {"_count": 1}, "again": {"_count": 2}, "though": {"_count": 1}, "as": {"_count": 1}}, "Dobby": {"_count": 1, "even": {"_count": 1}}, "the": {"_count": 8, "dungeon": {"_count": 1}, "dementors": {"_count": 1}, "test": {"_count": 1}, "dragon": {"_count": 1}, "information": {"_count": 1}, "bust": {"_count": 1}, "list": {"_count": 1}, "vegetable": {"_count": 1}}, "a": {"_count": 3, "bucket": {"_count": 1}, "test": {"_count": 1}, "Muggle": {"_count": 1}}, "up": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "me": {"_count": 2, "the": {"_count": 1}, "said": {"_count": 1}}, "them": {"_count": 2, "heading": {"_count": 1}, "to": {"_count": 1}}, "very": {"_count": 1, "difficult": {"_count": 1}}, "watching": {"_count": 1, "eagerly": {"_count": 1}}, "with": {"_count": 1, "narrowed": {"_count": 1}}, "smoothly": {"_count": 1, "through": {"_count": 1}}, "judgment": {"_count": 1, "on": {"_count": 1}}, "information": {"_count": 3, "on": {"_count": 2}, "to": {"_count": 1}}, "directly": {"_count": 1, "over": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "was": {"_count": 1, "Percy": {"_count": 1}}, "this": {"_count": 1, "compartment": {"_count": 1}}, "along": {"_count": 1, "their": {"_count": 1}}, "an": {"_count": 2, "O": {"_count": 1}, "we": {"_count": 1}}, "is": {"_count": 1, "quite": {"_count": 1}}, "grade": {"_count": 1, "isnt": {"_count": 1}}, "another": {"_count": 1, "Decree": {"_count": 1}}, "your": {"_count": 1, "Defense": {"_count": 1}}, "Umbridges": {"_count": 1, "inspection": {"_count": 1}}, "today": {"_count": 1, "because": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 2, "your": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 3, "off": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}, "over": {"_count": 1, "McLaggens": {"_count": 1}}, "their": {"_count": 1, "Defense": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 3}}, "my": {"_count": 1, "test": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "not": {"_count": 2, "a": {"_count": 1}, "even": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "from": {"_count": 1, "Borgin": {"_count": 1}}, "that": {"_count": 1, "necklace": {"_count": 1}}, "said": {"_count": 1, "Tonks": {"_count": 1}}, "us": {"_count": 1, "something": {"_count": 1}}, "off": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}}, "by": {"_count": 1, "murder": {"_count": 1}}, "without": {"_count": 1, "drawing": {"_count": 1}}, "safely": {"_count": 1, "through": {"_count": 1}}, "he": {"_count": 1, "dared": {"_count": 1}}}, "fortytwo": {"_count": 1, "staircases": {"_count": 1, "at": {"_count": 1}}}, "sweeping": {"_count": 45, "ones": {"_count": 1, "narrow": {"_count": 1}}, "along": {"_count": 1, "without": {"_count": 1}}, "about": {"_count": 1, "in": {"_count": 1}}, "off": {"_count": 2, "the": {"_count": 1}, "toward": {"_count": 1}}, "the": {"_count": 8, "whole": {"_count": 1}, "school": {"_count": 1}, "jumble": {"_count": 1}, "classroom": {"_count": 1}, "graveyard": {"_count": 1}, "grounds": {"_count": 1}, "cabin": {"_count": 1}, "Great": {"_count": 1}}, "lawn": {"_count": 1, "in": {"_count": 1}}, "robes": {"_count": 3, "of": {"_count": 2}, "which": {"_count": 1}}, "over": {"_count": 3, "with": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "auburn": {"_count": 1, "hair": {"_count": 1}}, "stone": {"_count": 1, "robes": {"_count": 1}}, "glorious": {"_count": 1, "relief": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "drive": {"_count": 1, "the": {"_count": 1}}, "silver": {"_count": 1, "hair": {"_count": 1}}, "wave": {"_count": 1, "with": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "Hedwigs": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "movement": {"_count": 2, "over": {"_count": 1}, "that": {"_count": 1}}, "his": {"_count": 3, "long": {"_count": 2}, "hair": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}, "Harry": {"_count": 2, "Ron": {"_count": 1}, "into": {"_count": 1}}, "around": {"_count": 1, "Harry": {"_count": 1}}, "motion": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "look": {"_count": 2, "and": {"_count": 2}}, "gaze": {"_count": 1, "at": {"_count": 1}}}, "rickety": {"_count": 12, "ones": {"_count": 1, "some": {"_count": 1}}, "table": {"_count": 4, "": {"_count": 1}, "nearby": {"_count": 1}, "stood": {"_count": 1}, "and": {"_count": 1}}, "staircase": {"_count": 2, "that": {"_count": 1}, "lined": {"_count": 1}}, "old": {"_count": 1, "tables": {"_count": 1}}, "wooden": {"_count": 2, "chairs": {"_count": 1}, "staircase": {"_count": 1}}, "chair": {"_count": 1, "and": {"_count": 1}}, "stool": {"_count": 1, "": {"_count": 1}}}, "vanishing": {"_count": 22, "step": {"_count": 2, "halfway": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "cabinet": {"_count": 1, "was": {"_count": 1}}, "from": {"_count": 5, "sight": {"_count": 4}, "view": {"_count": 1}}, "flew": {"_count": 1, "ten": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "kittens": {"_count": 1, "before": {"_count": 1}}, "the": {"_count": 1, "vomit": {"_count": 1}}, "into": {"_count": 2, "thin": {"_count": 1}, "darkness": {"_count": 1}}, "sickness": {"_count": 1, "scrofungulus": {"_count": 1}}, "at": {"_count": 1, "precisely": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "behind": {"_count": 1, "it": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}}, "politely": {"_count": 24, "or": {"_count": 1, "tickled": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 2, "pass": {"_count": 1}, "Professor": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "with": {"_count": 1}}, "puzzled": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "bewildered": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "like": {"_count": 1, "the": {"_count": 1}}, "halfway": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "while": {"_count": 1, "Hermione": {"_count": 1}}, "incredulous": {"_count": 1, "Umbridge": {"_count": 1}}, "interested": {"_count": 1, "voice": {"_count": 1}}, "holding": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "tickled": {"_count": 5, "them": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "huge": {"_count": 1}}, "her": {"_count": 1, "chin": {"_count": 1}}, "Crookshanks": {"_count": 1, "behind": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}}, "Poltergeist": {"_count": 11, "was": {"_count": 3, "worth": {"_count": 1}, "the": {"_count": 1}, "currently": {"_count": 1}}, "came": {"_count": 1, "shooting": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "bobbing": {"_count": 1, "over": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "a": {"_count": 2, "little": {"_count": 1}, "wide": {"_count": 1}}, "throwing": {"_count": 1, "things": {"_count": 1}}, "appeared": {"_count": 1, "in": {"_count": 1}}}, "wastepaper": {"_count": 7, "baskets": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "basket": {"_count": 4, "but": {"_count": 1}, "in": {"_count": 2}, "Firenze": {"_count": 1}}, "bin": {"_count": 1, "outside": {"_count": 1}}}, "baskets": {"_count": 3, "on": {"_count": 1, "your": {"_count": 1}}, "and": {"_count": 1, "lunascopes": {"_count": 1}}, "of": {"_count": 1, "dried": {"_count": 1}}}, "rugs": {"_count": 1, "from": {"_count": 1, "under": {"_count": 1}}}, "pelt": {"_count": 1, "you": {"_count": 1, "with": {"_count": 1}}}, "chalk": {"_count": 9, "or": {"_count": 1, "sneak": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "white": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "snapping": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}}, "sneak": {"_count": 33, "up": {"_count": 5, "behind": {"_count": 1}, "here": {"_count": 2}, "on": {"_count": 2}}, "into": {"_count": 5, "Snapes": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 3}}, "illegal": {"_count": 1, "dragon": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 2}, "at": {"_count": 2}}, "around": {"_count": 1, "people": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 1, "that": {"_count": 1}}, "Potter": {"_count": 1, "into": {"_count": 1}}, "thief": {"_count": 3, "": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 1}}, "upstairs": {"_count": 2, "and": {"_count": 1}, "too": {"_count": 1}}, "something": {"_count": 2, "off": {"_count": 1}, "tasty": {"_count": 1}}, "the": {"_count": 1, "box": {"_count": 1}}, "before": {"_count": 1, "Mrs": {"_count": 1}}, "down": {"_count": 2, "to": {"_count": 1}, "and": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "Daily": {"_count": 1}}}, "invisible": {"_count": 96, "grab": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 10}, "?": {"_count": 1}, "!": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "can": {"_count": 1, "make": {"_count": 1}}, "said": {"_count": 4, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 2}}, "they": {"_count": 1, "shrank": {"_count": 1}}, "forgive": {"_count": 1, "old": {"_count": 1}}, "woman": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "wouldve": {"_count": 1, "had": {"_count": 1}}, "ink": {"_count": 2, "": {"_count": 2}}, "to": {"_count": 4, "the": {"_count": 1}, "passersby": {"_count": 1}, "Muggles": {"_count": 1}, "her": {"_count": 1}}, "stranger": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 4, "was": {"_count": 1}, "were": {"_count": 2}, "had": {"_count": 1}}, "crowd": {"_count": 1, "below": {"_count": 1}}, "horse": {"_count": 1, "because": {"_count": 1}}, "strings": {"_count": 2, "were": {"_count": 1}, "that": {"_count": 1}}, "giants": {"_count": 1, "hand": {"_count": 1}}, "were": {"_count": 1, "trying": {"_count": 1}}, "something": {"_count": 1, "was": {"_count": 1}}, "shotputter": {"_count": 1, "": {"_count": 1}}, "pillow": {"_count": 1, "had": {"_count": 1}}, "wall": {"_count": 3, "around": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "walkietalkie": {"_count": 1, "": {"_count": 1}}, "beam": {"_count": 1, "of": {"_count": 1}}, "force": {"_count": 1, "seemed": {"_count": 1}}, "it": {"_count": 2, "had": {"_count": 1}, "would": {"_count": 1}}, "occupant": {"_count": 1, "was": {"_count": 1}}, "bees": {"_count": 1, "": {"_count": 1}}, "why": {"_count": 1, "then": {"_count": 1}}, "mallets": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 5, "Malfoy": {"_count": 1}, "endures": {"_count": 2}, "irresistible": {"_count": 1}, "the": {"_count": 1}}, "dementors": {"_count": 1, "": {"_count": 1}}, "ropes": {"_count": 2, "": {"_count": 2}}, "line": {"_count": 2, "Only": {"_count": 1}, "": {"_count": 1}}, "barrier": {"_count": 3, "separated": {"_count": 1}, "that": {"_count": 1}, "One": {"_count": 1}}, "creatures": {"_count": 1, "swooping": {"_count": 1}}, "moths": {"_count": 1, "": {"_count": 1}}, "hook": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "sword": {"_count": 2, "": {"_count": 2}}, "bands": {"_count": 1, "seemed": {"_count": 1}}, "rope": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "torturers": {"_count": 1, "surrounded": {"_count": 1}}, "paralyzed": {"_count": 1, "body": {"_count": 1}}, "chest": {"_count": 1, "": {"_count": 1}}, "bonds": {"_count": 1, "": {"_count": 1}}, "yelled": {"_count": 1, "Stupefyl": {"_count": 1}}, "shield": {"_count": 2, "expanded": {"_count": 1}, "erupted": {"_count": 1}}, "beyond": {"_count": 1, "another": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 1, "were": {"_count": 1}}, "without": {"_count": 1, "one": {"_count": 1}}, "beams": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "torn": {"_count": 1, "between": {"_count": 1}}}, "screech": {"_count": 16, "GOT": {"_count": 1, "YOUR": {"_count": 1}}, "owls": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "and": {"_count": 2, "was": {"_count": 1}, "sped": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "owl": {"_count": 6, "perched": {"_count": 1}, "arrived": {"_count": 1}, "swooped": {"_count": 1}, "which": {"_count": 1}, "was": {"_count": 1}, "bearing": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "pain": {"_count": 1}}, "Harry": {"_count": 1, "struggled": {"_count": 1}}}, "GOT": {"_count": 15, "YOUR": {"_count": 1, "CONK": {"_count": 1}}, "THE": {"_count": 3, "WRONG": {"_count": 1}, "TICKETS": {"_count": 1}, "PROPHECY": {"_count": 1}}, "RID": {"_count": 1, "OF": {"_count": 1}}, "ENOUGH": {"_count": 1, "TO": {"_count": 1}}, "OFF": {"_count": 3, "HE": {"_count": 2}, "SHUT": {"_count": 1}}, "WHAT": {"_count": 1, "IT": {"_count": 1}}, "HIM": {"_count": 1, "": {"_count": 1}}, "THEM": {"_count": 1, "THEYRE": {"_count": 1}}, "IT": {"_count": 1, "POTTER": {"_count": 1}}, "TO": {"_count": 1, "SAY": {"_count": 1}}, "DID": {"_count": 1, "HE": {"_count": 1}}}, "YOUR": {"_count": 20, "CONK": {"_count": 1, "": {"_count": 1}}, "ABNORMALITY": {"_count": 1, "UNDER": {"_count": 1}}, "FATHER": {"_count": 2, "AND": {"_count": 1}, "WOULD": {"_count": 1}}, "FATHERS": {"_count": 1, "FACING": {"_count": 1}}, "FAULT": {"_count": 1, "AND": {"_count": 1}}, "LIVES": {"_count": 1, "": {"_count": 1}}, "OWN": {"_count": 2, "Cheers": {"_count": 1}, "MISTLETOE": {"_count": 1}}, "FRIENDS": {"_count": 1, "AS": {"_count": 1}}, "TONGUE": {"_count": 1, "": {"_count": 1}}, "MOUTH": {"_count": 2, "SHUT": {"_count": 2}}, "AUNT": {"_count": 2, "AND": {"_count": 1}, "NOW": {"_count": 1}}, "WAND": {"_count": 1, "": {"_count": 1}}, "A": {"_count": 1, "UNT": {"_count": 1}}, "SKINS": {"_count": 1, "FROM": {"_count": 1}}, "WANDS": {"_count": 1, "OUT": {"_count": 1}}, "HOME": {"_count": 1, "AND": {"_count": 1}}}, "CONK": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Argus": {"_count": 18, "Filch": {"_count": 11, "": {"_count": 2}, "the": {"_count": 3}, "as": {"_count": 1}, "burst": {"_count": 1}, "came": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}, "looming": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "thats": {"_count": 1, "all": {"_count": 1}}}, "unluckily": {"_count": 2, "turned": {"_count": 1, "out": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}}, "outofbounds": {"_count": 10, "corridor": {"_count": 1, "on": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "night": {"_count": 1}}, "to": {"_count": 1, "students": {"_count": 1}}, "by": {"_count": 1, "Filch": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "I": {"_count": 1, "specifically": {"_count": 1}}}, "break": {"_count": 141, "into": {"_count": 14, "it": {"_count": 1}, "Snapes": {"_count": 1}, "Hogwarts": {"_count": 2}, "Honeydukes": {"_count": 1}, "his": {"_count": 1}, "your": {"_count": 2}, "her": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "Gringotts": {"_count": 3}}, "and": {"_count": 6, "she": {"_count": 1}, "forbid": {"_count": 1}, "then": {"_count": 1}, "were": {"_count": 1}, "that": {"_count": 1}, "they": {"_count": 1}}, "your": {"_count": 3, "leg": {"_count": 2}, "promise": {"_count": 1}}, "through": {"_count": 5, "So": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 2}, "said": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 12}, "?": {"_count": 1}, "!": {"_count": 2}}, "his": {"_count": 6, "AntiDark": {"_count": 1}, "fall": {"_count": 2}, "word": {"_count": 1}, "grip": {"_count": 1}, "glasses": {"_count": 1}}, "the": {"_count": 19, "fall": {"_count": 1}, "others": {"_count": 1}, "silence": {"_count": 3}, "very": {"_count": 1}, "surface": {"_count": 1}, "Memory": {"_count": 1}, "thread": {"_count": 1}, "connection": {"_count": 1}, "habit": {"_count": 1}, "law": {"_count": 1}, "moment": {"_count": 1}, "nasty": {"_count": 1}, "flow": {"_count": 1}, "tension": {"_count": 1}, "tradition": {"_count": 1}, "curse": {"_count": 1}, "wand": {"_count": 1}}, "it": {"_count": 8, "": {"_count": 2}, "up": {"_count": 1}, "to": {"_count": 2}, "then": {"_count": 2}, "early": {"_count": 1}}, "for": {"_count": 2, "it": {"_count": 2}}, "rules": {"_count": 3, "you": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "from": {"_count": 3, "work": {"_count": 1}, "studying": {"_count": 1}, "wearing": {"_count": 1}}, "he": {"_count": 1, "headed": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "when": {"_count": 1}}, "never": {"_count": 1, "came": {"_count": 1}}, "apart": {"_count": 2, "anything": {"_count": 1}, "in": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 5}, "again": {"_count": 1}, "replied": {"_count": 1}}, "times": {"_count": 2, "to": {"_count": 1}, "inside": {"_count": 1}}, "free": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 1}, "from": {"_count": 1}}, "our": {"_count": 1, "winning": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 4, "Ron": {"_count": 1}, "Voldemort": {"_count": 1}, "George": {"_count": 1}, "Professor": {"_count": 1}}, "down": {"_count": 3, "the": {"_count": 1}, "my": {"_count": 1}, "as": {"_count": 1}}, "them": {"_count": 1, "for": {"_count": 1}}, "coiled": {"_count": 1, "one": {"_count": 1}}, "that": {"_count": 1, "plate": {"_count": 1}}, "ranks": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "Binns": {"_count": 1, "drifting": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "Were": {"_count": 1, "not": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "reading": {"_count": 1, "all": {"_count": 1}}, "spent": {"_count": 1, "hours": {"_count": 1}}, "him": {"_count": 1, "too": {"_count": 1}}, "blood": {"_count": 1, "spurted": {"_count": 1}}, "a": {"_count": 1, "short": {"_count": 1}}, "speculating": {"_count": 1, "on": {"_count": 1}}, "she": {"_count": 1, "went": {"_count": 1}}, "would": {"_count": 1, "give": {"_count": 1}}, "an": {"_count": 1, "Unbreakable": {"_count": 1}}, "Dumbledores": {"_count": 1, "concentration": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "two": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "this": {"_count": 1}}, "open": {"_count": 3, "a": {"_count": 2}, "to": {"_count": 1}}, "Albus": {"_count": 1, "s": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "to": {"_count": 1}}}, "threatening": {"_count": 34, "to": {"_count": 8, "lock": {"_count": 1}, "tell": {"_count": 1}, "do": {"_count": 1}, "fall": {"_count": 1}, "overpower": {"_count": 1}, "split": {"_count": 1}, "overwhelm": {"_count": 1}, "sleep": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "Muggle": {"_count": 1, "borns": {"_count": 1}}, "stares": {"_count": 1, "and": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "messages": {"_count": 1, "on": {"_count": 1}}, "finger": {"_count": 2, "": {"_count": 2}}, "Harry": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 1, "with": {"_count": 1}}, "atmosphere": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "situations": {"_count": 2, "Let": {"_count": 1}, "": {"_count": 1}}, "look": {"_count": 3, "at": {"_count": 1}, "on": {"_count": 1}, "he": {"_count": 1}}, "kind": {"_count": 1, "of": {"_count": 1}}, "snow": {"_count": 1, "all": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 1, "sir": {"_count": 1}}, "manner": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "dungeons": {"_count": 35, "when": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "thought": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "where": {"_count": 2, "their": {"_count": 1}, "it": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 1, "castles": {"_count": 1}}, "nothing": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 3, "then": {"_count": 1}, "the": {"_count": 1}, "walk": {"_count": 1}}, "for": {"_count": 1, "Potions": {"_count": 1}}, "eight": {"_count": 1, "floors": {"_count": 1}}, "neither": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "he": {"_count": 1, "attends": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "rescued": {"_count": 13, "by": {"_count": 2, "Professor": {"_count": 1}, "Ron": {"_count": 1}}, "the": {"_count": 1, "brilliant": {"_count": 1}}, "Harry": {"_count": 1, "from": {"_count": 1}}, "him": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 1, "from": {"_count": 1}}, "send": {"_count": 1, "red": {"_count": 1}}, "and": {"_count": 1, "disqualified": {"_count": 1}}, "yowling": {"_count": 1, "loudly": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "goblin": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}}, "Norris": {"_count": 55, "a": {"_count": 2, "scrawny": {"_count": 1}, "good": {"_count": 1}}, "Id": {"_count": 1, "like": {"_count": 1}}, "and": {"_count": 4, "Harry": {"_count": 1}, "fell": {"_count": 1}, "that": {"_count": 1}, "Colin": {"_count": 1}}, "": {"_count": 13, "?": {"_count": 4}, ".": {"_count": 8}, "!": {"_count": 1}}, "but": {"_count": 2, "they": {"_count": 1}, "not": {"_count": 1}}, "came": {"_count": 2, "round": {"_count": 1}, "trotting": {"_count": 1}}, "are": {"_count": 1, "wandering": {"_count": 1}}, "skulking": {"_count": 1, "near": {"_count": 1}}, "turned": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 2, "skeletal": {"_count": 1}, "caretakers": {"_count": 1}}, "streaking": {"_count": 1, "alongside": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "Ron": {"_count": 1, "told": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "arrived": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "only": {"_count": 1, "saw": {"_count": 1}}, "was": {"_count": 4, "pthe": {"_count": 1}, "obviously": {"_count": 1}, "peering": {"_count": 1}, "hissing": {"_count": 1}}, "turn": {"_count": 1, "left": {"_count": 1}}, "were": {"_count": 1, "safely": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "who": {"_count": 2, "stared": {"_count": 1}, "turned": {"_count": 1}}, "slinking": {"_count": 1, "past": {"_count": 1}}, "cast": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 1, "on": {"_count": 1}}, "slunk": {"_count": 1, "away": {"_count": 1}}, "inside": {"_count": 1, "suits": {"_count": 1}}, "Filch": {"_count": 1, "s": {"_count": 1}}, "or": {"_count": 1, "Peeves": {"_count": 1}}}, "colored": {"_count": 31, "creature": {"_count": 1, "with": {"_count": 1}}, "umbrellas": {"_count": 1, "outside": {"_count": 1}}, "sweets": {"_count": 1, "fell": {"_count": 1}}, "tropical": {"_count": 1, "birds": {"_count": 1}}, "wrappers": {"_count": 1, "": {"_count": 1}}, "toffee": {"_count": 1, "wrapper": {"_count": 1}}, "objects": {"_count": 1, "zoomed": {"_count": 1}}, "lanterns": {"_count": 1, "that": {"_count": 1}}, "uniforms": {"_count": 1, "stood": {"_count": 1}}, "life": {"_count": 1, "story": {"_count": 1}}, "dream": {"_count": 1, "": {"_count": 1}}, "jewel": {"_count": 1, "set": {"_count": 1}}, "steam": {"_count": 1, "wafting": {"_count": 1}}, "cat": {"_count": 1, "at": {"_count": 1}}, "hair": {"_count": 2, "winked": {"_count": 1}, "and": {"_count": 1}}, "potions": {"_count": 2, "": {"_count": 1}, "all": {"_count": 1}}, "tentacles": {"_count": 1, "but": {"_count": 1}}, "picture": {"_count": 1, "of": {"_count": 1}}, "spectacles": {"_count": 1, "": {"_count": 1}}, "figures": {"_count": 1, "were": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "paper": {"_count": 1, "were": {"_count": 1}}, "beribboned": {"_count": 1, "kitten": {"_count": 1}}, "strings": {"_count": 1, "into": {"_count": 1}}, "lights": {"_count": 1, "there": {"_count": 1}}, "smoke": {"_count": 1, "erupt": {"_count": 1}}, "dots": {"_count": 1, "which": {"_count": 1}}, "hangings": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}}, "creature": {"_count": 73, "with": {"_count": 3, "bulging": {"_count": 1}, "sharp": {"_count": 1}, "red": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 1}, "vanished": {"_count": 1}, "stirred": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "slipped": {"_count": 1, "off": {"_count": 1}}, "in": {"_count": 7, "a": {"_count": 2}, "this": {"_count": 2}, "sight": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "lives": {"_count": 1, "in": {"_count": 1}}, "we": {"_count": 1, "spiders": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 4, "was": {"_count": 1}, "had": {"_count": 2}, "sometimes": {"_count": 1}}, "and": {"_count": 2, "it": {"_count": 1}, "its": {"_count": 1}}, "soared": {"_count": 1, "over": {"_count": 1}}, "shop": {"_count": 1, "just": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 3, "looked": {"_count": 1}, "is": {"_count": 2}}, "it": {"_count": 1, "vanished": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "whose": {"_count": 2, "legs": {"_count": 1}, "venom": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "is": {"_count": 2, "permitted": {"_count": 1}, "of": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "one": {"_count": 1, "which": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 2, "wouldnt": {"_count": 2}}, "to": {"_count": 2, "the": {"_count": 1}, "whom": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "alive": {"_count": 1, "and": {"_count": 1}}, "indistinguishable": {"_count": 1, "from": {"_count": 1}}, "their": {"_count": 1, "absence": {"_count": 1}}, "before": {"_count": 1, "them": {"_count": 1}}, "enter": {"_count": 1, "my": {"_count": 1}}, "spoke": {"_count": 1, "it": {"_count": 1}}, "use": {"_count": 1, "him": {"_count": 1}}, "might": {"_count": 1, "run": {"_count": 1}}, "comforts": {"_count": 1, "": {"_count": 1}}, "erupted": {"_count": 1, "from": {"_count": 1}}, "gets": {"_count": 1, "injured": {"_count": 1}}, "absently": {"_count": 1, "with": {"_count": 1}}, "sat": {"_count": 1, "in": {"_count": 1}}, "curled": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 1, "houseelf": {"_count": 1}}, "but": {"_count": 1, "saw": {"_count": 1}}, "filled": {"_count": 1, "with": {"_count": 1}}, "Griphook": {"_count": 1, "gave": {"_count": 1}}, "trembled": {"_count": 1, "under": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 5, "them": {"_count": 5}}}, "bulging": {"_count": 38, "lamplike": {"_count": 1, "eyes": {"_count": 1}}, "orange": {"_count": 1, "eyes": {"_count": 1}}, "green": {"_count": 1, "eyes": {"_count": 1}}, "eyes": {"_count": 7, "and": {"_count": 1}, "narrowed": {"_count": 1}, "": {"_count": 1}, "rolling": {"_count": 2}, "resting": {"_count": 1}, "I": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "like": {"_count": 1, "bolts": {"_count": 1}}, "bags": {"_count": 1, "in": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 4, "Dungbombs": {"_count": 1}, "sprouts": {"_count": 1}, "either": {"_count": 1}, "what": {"_count": 1}}, "muscles": {"_count": 1, "were": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "bag": {"_count": 1, "of": {"_count": 1}}, "pale": {"_count": 1, "eyes": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "magical": {"_count": 1}}, "bin": {"_count": 1, "bags": {"_count": 1}}, "toads": {"_count": 1, "eyes": {"_count": 1}}, "chest": {"_count": 1, "so": {"_count": 1}}, "stocking": {"_count": 1, "lying": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "sacks": {"_count": 1, "and": {"_count": 1}}, "Ermynee": {"_count": 1, "oo": {"_count": 1}}, "bookcases": {"_count": 1, "a": {"_count": 1}}}, "lamplike": {"_count": 6, "eyes": {"_count": 4, "just": {"_count": 1}, "on": {"_count": 1}, "so": {"_count": 1}, "upon": {"_count": 1}}, "yellow": {"_count": 2, "eyes": {"_count": 2}}}, "Filchs": {"_count": 20, "": {"_count": 1, ".": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "pale": {"_count": 1, "wild": {"_count": 1}}, "outstretched": {"_count": 1, "arm": {"_count": 1}}, "face": {"_count": 1, "loomed": {"_count": 1}}, "office": {"_count": 3, "before": {"_count": 1}, "said": {"_count": 1}, "door": {"_count": 1}}, "desk": {"_count": 1, "": {"_count": 1}}, "chair": {"_count": 1, "and": {"_count": 1}}, "filing": {"_count": 1, "cabinet": {"_count": 1}}, "hands": {"_count": 1, "": {"_count": 1}}, "arms": {"_count": 1, "to": {"_count": 1}}, "legs": {"_count": 1, "looking": {"_count": 1}}, "jowls": {"_count": 1, "wobbled": {"_count": 1}}, "yells": {"_count": 1, "and": {"_count": 1}}, "wheezy": {"_count": 1, "criticisms": {"_count": 1}}, "skinny": {"_count": 1, "ankles": {"_count": 1}}, "raised": {"_count": 1, "voices": {"_count": 1}}}, "patrolled": {"_count": 5, "the": {"_count": 2, "corridors": {"_count": 1}, "outer": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}}, "Break": {"_count": 6, "a": {"_count": 1, "rule": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "it": {"_count": 1, "up": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "curfew": {"_count": 1, "again": {"_count": 1}}}, "toe": {"_count": 14, "out": {"_count": 2, "of": {"_count": 2}}, "only": {"_count": 1, "yards": {"_count": 1}}, "missing": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "to": {"_count": 1, "deal": {"_count": 1}}, "across": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "mustve": {"_count": 1}}}, "whisk": {"_count": 1, "off": {"_count": 1, "for": {"_count": 1}}}, "whod": {"_count": 36, "appear": {"_count": 1, "wheezing": {"_count": 1}}, "listen": {"_count": 2, "about": {"_count": 1}, "that": {"_count": 1}}, "had": {"_count": 2, "enough": {"_count": 1}, "three": {"_count": 1}}, "be": {"_count": 1, "that": {"_count": 1}}, "invented": {"_count": 1, "selfstirring": {"_count": 1}}, "opened": {"_count": 1, "the": {"_count": 1}}, "been": {"_count": 3, "strangling": {"_count": 1}, "opening": {"_count": 1}, "killed": {"_count": 1}}, "made": {"_count": 1, "her": {"_count": 1}}, "broken": {"_count": 1, "in": {"_count": 1}}, "believe": {"_count": 1, "him": {"_count": 1}}, "suggested": {"_count": 1, "him": {"_count": 1}}, "spend": {"_count": 1, "that": {"_count": 1}}, "send": {"_count": 1, "Harry": {"_count": 1}}, "heard": {"_count": 1, "what": {"_count": 1}}, "look": {"_count": 1, "after": {"_count": 1}}, "lost": {"_count": 1, "all": {"_count": 1}}, "dare": {"_count": 1, "say": {"_count": 1}}, "conjured": {"_count": 1, "my": {"_count": 1}}, "take": {"_count": 1, "freedom": {"_count": 1}}, "go": {"_count": 3, "back": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}}, "always": {"_count": 1, "hold": {"_count": 1}}, "even": {"_count": 1, "pretend": {"_count": 1}}, "looked": {"_count": 1, "more": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "have": {"_count": 1, "let": {"_count": 1}}, "like": {"_count": 3, "ter": {"_count": 1}, "to": {"_count": 2}}, "given": {"_count": 1, "it": {"_count": 1}}, "escaped": {"_count": 1, "up": {"_count": 1}}}, "appear": {"_count": 53, "wheezing": {"_count": 1, "two": {"_count": 1}}, "less": {"_count": 1, "than": {"_count": 1}}, "I": {"_count": 1, "understand": {"_count": 1}}, "since": {"_count": 1, "we": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "either": {"_count": 1, "excited": {"_count": 1}}, "to": {"_count": 14, "": {"_count": 2}, "share": {"_count": 1}, "have": {"_count": 6}, "be": {"_count": 3}, "work": {"_count": 1}, "touch": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "well": {"_count": 2, "away": {"_count": 1}, "informed": {"_count": 1}}, "far": {"_count": 1, "too": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "The": {"_count": 1}, "my": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "inadvertently": {"_count": 1, "I": {"_count": 1}}, "cheered": {"_count": 1, "by": {"_count": 1}}, "there": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "cool": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "over": {"_count": 2, "any": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "alone": {"_count": 1, "at": {"_count": 1}}, "here": {"_count": 1, "until": {"_count": 1}}, "busy": {"_count": 2, "collecting": {"_count": 1}, "plotting": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "wheezing": {"_count": 11, "two": {"_count": 1, "seconds": {"_count": 1}}, "and": {"_count": 4, "spluttering": {"_count": 1}, "looking": {"_count": 1}, "occasionally": {"_count": 1}, "sobbing": {"_count": 1}}, "waffle": {"_count": 1, "before": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "giggles": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "passageways": {"_count": 10, "of": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "nearly": {"_count": 1}}, "and": {"_count": 3, "ghosts": {"_count": 1}, "most": {"_count": 1}, "hiding": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "covered": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "dearest": {"_count": 5, "ambition": {"_count": 3, "of": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "closest": {"_count": 1}}, "wish": {"_count": 1, "": {"_count": 1}}}, "ambition": {"_count": 21, "of": {"_count": 2, "many": {"_count": 1}, "collecting": {"_count": 1}}, "sharing": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "is": {"_count": 4, "to": {"_count": 4}}, "unless": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 5, "serve": {"_count": 1}, "open": {"_count": 1}, "become": {"_count": 3}}, "and": {"_count": 1, "thats": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "their": {"_count": 1}}, "finding": {"_count": 1, "out": {"_count": 1}}}, "skies": {"_count": 13, "through": {"_count": 1, "their": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "some": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "tonight": {"_count": 1, "each": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}}, "Wednesday": {"_count": 19, "at": {"_count": 1, "midnight": {"_count": 1}}, "night": {"_count": 2, "found": {"_count": 1}, "then": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "to": {"_count": 1, "buy": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "morning": {"_count": 2, "in": {"_count": 1}, "went": {"_count": 1}}, "afternoon": {"_count": 1, "meant": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "as": {"_count": 1, "Im": {"_count": 1}}, "and": {"_count": 2, "spent": {"_count": 1}, "we": {"_count": 1}}, "evening": {"_count": 1, "and": {"_count": 1}}, "\u25a0": {"_count": 1, "Harry": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "was": {"_count": 1, "receiving": {"_count": 1}}}, "movements": {"_count": 26, "of": {"_count": 4, "the": {"_count": 3}, "Malfoys": {"_count": 1}}, "that": {"_count": 1, "almost": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "around": {"_count": 2, "him": {"_count": 2}}, "so": {"_count": 1, "well": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 2, "centuries": {"_count": 1}, "the": {"_count": 1}}, "occasionally": {"_count": 1, "poking": {"_count": 1}}, "with": {"_count": 2, "anxious": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "are": {"_count": 1, "being": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "is": {"_count": 1, "that": {"_count": 1}}}, "greenhouses": {"_count": 18, "behind": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 2, "saw": {"_count": 1}, "were": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "paused": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "last": {"_count": 1, "Thursday": {"_count": 1}}, "and": {"_count": 1, "Slughorn": {"_count": 1}}}, "Herbology": {"_count": 48, "with": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}}, "and": {"_count": 5, "go": {"_count": 1}, "in": {"_count": 1}, "hed": {"_count": 1}, "sobbed": {"_count": 1}, "give": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "mark": {"_count": 1, "making": {"_count": 1}}, "than": {"_count": 1, "she": {"_count": 1}}, "coming": {"_count": 1, "toward": {"_count": 1}}, "lesson": {"_count": 2, "of": {"_count": 1}, "was": {"_count": 1}}, "were": {"_count": 1, "indeed": {"_count": 1}}, "one": {"_count": 1, "day": {"_count": 1}}, "barked": {"_count": 1, "Snape": {"_count": 1}}, "class": {"_count": 2, "was": {"_count": 1}, "telling": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "teacher": {"_count": 1, "whose": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "Neville": {"_count": 1, "said": {"_count": 1}}, "Never": {"_count": 1, "mind": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "greenhouses": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "for": {"_count": 1}, "at": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "after": {"_count": 1, "listening": {"_count": 1}}, "Transfiguration": {"_count": 2, "Charms": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "manic": {"_count": 1}}, "exam": {"_count": 1, "on": {"_count": 1}}, "E": {"_count": 1, "History": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "Arithmancy": {"_count": 1, "Ancient": {"_count": 1}}, "fine": {"_count": 1, "she": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "first": {"_count": 1, "thing": {"_count": 1}}, "essay": {"_count": 1, "something": {"_count": 1}}, "homework": {"_count": 1, "but": {"_count": 1}}}, "dumpy": {"_count": 3, "little": {"_count": 1, "witch": {"_count": 1}}, "when": {"_count": 1, "his": {"_count": 1}}, "wizard": {"_count": 1, "with": {"_count": 1}}}, "Sprout": {"_count": 79, "where": {"_count": 2, "they": {"_count": 1}, "youve": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 13}, "?": {"_count": 1}}, "was": {"_count": 3, "a": {"_count": 1}, "standing": {"_count": 1}, "saying": {"_count": 1}}, "the": {"_count": 3, "right": {"_count": 1}, "Herbology": {"_count": 1}, "Heads": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 3}}, "took": {"_count": 2, "a": {"_count": 2}}, "put": {"_count": 1, "the": {"_count": 1}}, "dusted": {"_count": 1, "off": {"_count": 1}}, "had": {"_count": 4, "made": {"_count": 1}, "indicated": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}}, "recently": {"_count": 1, "managed": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "very": {"_count": 1, "happy": {"_count": 1}}, "set": {"_count": 1, "them": {"_count": 1}}, "escorted": {"_count": 1, "the": {"_count": 1}}, "has": {"_count": 1, "informed": {"_count": 1}}, "clapped": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 1}, "Umbridge": {"_count": 1}}, "and": {"_count": 5, "Flitwick": {"_count": 2}, "its": {"_count": 1}, "McGonagall": {"_count": 1}, "Harry": {"_count": 1}}, "showing": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 3, "them": {"_count": 1}, "Professor": {"_count": 1}, "me": {"_count": 1}}, "stoppering": {"_count": 1, "the": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "seemed": {"_count": 1, "distant": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "started": {"_count": 1, "their": {"_count": 1}}, "gave": {"_count": 1, "them": {"_count": 1}}, "on": {"_count": 1, "SelfFertilizing": {"_count": 1}}, "huddled": {"_count": 1, "together": {"_count": 1}}, "were": {"_count": 2, "waltzing": {"_count": 1}, "standing": {"_count": 1}}, "awarded": {"_count": 1, "Gryffindor": {"_count": 1}}, "came": {"_count": 1, "hurrying": {"_count": 1}}, "ushered": {"_count": 1, "them": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "briskly": {"_count": 1, "bustling": {"_count": 1}}, "warmly": {"_count": 1, "": {"_count": 1}}, "headed": {"_count": 1, "off": {"_count": 1}}, "Flitwick": {"_count": 1, "and": {"_count": 1}}, "completed": {"_count": 1, "the": {"_count": 1}}, "Head": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 2, "know": {"_count": 1}, "thundering": {"_count": 1}}, "sprinting": {"_count": 1, "up": {"_count": 1}}, "already": {"_count": 1, "hurrying": {"_count": 1}}}, "plants": {"_count": 19, "and": {"_count": 2, "fungi": {"_count": 1}, "emptied": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 2}}, "were": {"_count": 1, "kept": {"_count": 1}}, "on": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "purplish": {"_count": 1, "green": {"_count": 1}}, "firmly": {"_count": 1, "and": {"_count": 1}}, "than": {"_count": 2, "thick": {"_count": 1}, "ever": {"_count": 1}}, "nearby": {"_count": 1, "": {"_count": 1}}, "suspended": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "brass": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "including": {"_count": 1, "a": {"_count": 1}}}, "fungi": {"_count": 4, "and": {"_count": 1, "found": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "could": {"_count": 1, "not": {"_count": 1}}}, "Easily": {"_count": 2, "the": {"_count": 1, "most": {"_count": 1}}, "offended": {"_count": 1, "hippogriffs": {"_count": 1}}}, "taught": {"_count": 58, "by": {"_count": 3, "a": {"_count": 1}, "Ravenclaw": {"_count": 1}, "me": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 5, "Hogwarts": {"_count": 3}, "least": {"_count": 1}, "the": {"_count": 1}}, "us": {"_count": 3, "enough": {"_count": 1}, "more": {"_count": 1}, "that": {"_count": 1}}, "Potions": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "him": {"_count": 6, "myself": {"_count": 1}, "a": {"_count": 2}, "to": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 6, "anything": {"_count": 2}, "the": {"_count": 1}, "how": {"_count": 2}, "that": {"_count": 1}}, "them": {"_count": 8, "everything": {"_count": 1}, "all": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "Malfoy": {"_count": 1}, "those": {"_count": 1}, "better": {"_count": 1}, "My": {"_count": 1}}, "consideration": {"_count": 1, "by": {"_count": 1}}, "what": {"_count": 1, "it": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "yeh": {"_count": 1, "nothin": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "walk": {"_count": 1}, "fear": {"_count": 1}}, "me": {"_count": 3, "in": {"_count": 2}, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Arthur": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "anyone": {"_count": 1, "so": {"_count": 1}}, "a": {"_count": 2, "filthy": {"_count": 1}, "few": {"_count": 1}}, "nor": {"_count": 1, "tolerated": {"_count": 1}}, "Harry": {"_count": 2, "so": {"_count": 1}, "something": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "the": {"_count": 2, "children": {"_count": 1}, "Muggles": {"_count": 1}}, "thousands": {"_count": 1, "of": {"_count": 1}}, "different": {"_count": 1, "superstitions": {"_count": 1}}}, "Binns": {"_count": 44, "had": {"_count": 3, "been": {"_count": 1}, "asked": {"_count": 1}, "had": {"_count": 1}}, "droned": {"_count": 1, "on": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "who": {"_count": 2, "taught": {"_count": 1}, "continued": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "glancing": {"_count": 1, "up": {"_count": 1}}, "blinked": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "looking": {"_count": 1}}, "slowly": {"_count": 1, "yes": {"_count": 1}}, "s": {"_count": 3, "every": {"_count": 1}, "classes": {"_count": 1}, "voice": {"_count": 1}}, "paused": {"_count": 1, "again": {"_count": 1}}, "looked": {"_count": 1, "faintly": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "an": {"_count": 1}, "History": {"_count": 1}}, "shuffling": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "where": {"_count": 1, "youve": {"_count": 1}}, "asked": {"_count": 1, "for": {"_count": 1}}, "desk": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "ghost": {"_count": 1}}, "for": {"_count": 1, "example": {"_count": 1}}, "hadnt": {"_count": 1, "let": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "Snape": {"_count": 1, "Trelawney": {"_count": 1}}, "their": {"_count": 1, "ghost": {"_count": 1}}, "drifting": {"_count": 1, "away": {"_count": 1}}, "set": {"_count": 1, "us": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "floating": {"_count": 1, "an": {"_count": 1}}, "crouched": {"_count": 1, "low": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "clearly": {"_count": 1, "very": {"_count": 1}}, "or": {"_count": 1, "am": {"_count": 1}}, "mentioned": {"_count": 1, "some": {"_count": 1}}}, "fallen": {"_count": 108, "asleep": {"_count": 10, "in": {"_count": 3}, "then": {"_count": 1}, "Professor": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "holding": {"_count": 1}, "slumped": {"_count": 1}}, "and": {"_count": 4, "they": {"_count": 1}, "its": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}}, "leaves": {"_count": 3, "": {"_count": 3}}, "books": {"_count": 2, "": {"_count": 1}, "causing": {"_count": 1}}, "off": {"_count": 7, "and": {"_count": 2}, "": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}}, "over": {"_count": 4, "and": {"_count": 2}, "about": {"_count": 1}, "when": {"_count": 1}}, "on": {"_count": 2, "another": {"_count": 1}, "the": {"_count": 1}}, "sideways": {"_count": 1, "through": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 4}, "too": {"_count": 1}, "leaving": {"_count": 1}, "with": {"_count": 1}}, "fifty": {"_count": 2, "feet": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 3, "Madam": {"_count": 1}, "he": {"_count": 1}, "next": {"_count": 1}}, "to": {"_count": 6, "his": {"_count": 1}, "me": {"_count": 1}, "the": {"_count": 4}}, "charges": {"_count": 1, "each": {"_count": 1}}, "into": {"_count": 3, "his": {"_count": 1}, "urgent": {"_count": 1}, "the": {"_count": 1}}, "through": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 13}, "?": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "silent": {"_count": 4, "": {"_count": 2}, "now": {"_count": 1}, "in": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "wand": {"_count": 2, "": {"_count": 1}, "spitting": {"_count": 1}}, "sapling": {"_count": 1, "": {"_count": 1}}, "statue": {"_count": 1, "that": {"_count": 1}}, "down": {"_count": 1, "": {"_count": 1}}, "telescope": {"_count": 1, "and": {"_count": 1}}, "chandelier": {"_count": 1, "glittered": {"_count": 1}}, "robes": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 4, "love": {"_count": 2}, "and": {"_count": 2}}, "case": {"_count": 1, "then": {"_count": 1}}, "thick": {"_count": 1, "and": {"_count": 1}}, "short": {"_count": 1, "of": {"_count": 1}}, "bodies": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "next": {"_count": 1}}, "back": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "given": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "down": {"_count": 1}}, "goblets": {"_count": 1, "with": {"_count": 1}}, "exactly": {"_count": 1, "where": {"_count": 1}}, "flower": {"_count": 1, "from": {"_count": 1}}, "twig": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "Harrys": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "briefly": {"_count": 1, "unconscious": {"_count": 1}}}, "staff": {"_count": 99, "room": {"_count": 1, "fire": {"_count": 1}}, "table": {"_count": 51, "his": {"_count": 1}, "": {"_count": 14}, "and": {"_count": 7}, "at": {"_count": 4}, "still": {"_count": 1}, "Filch": {"_count": 1}, "twenty": {"_count": 1}, "where": {"_count": 1}, "finishing": {"_count": 1}, "now": {"_count": 2}, "that": {"_count": 1}, "too": {"_count": 1}, "as": {"_count": 3}, "wearing": {"_count": 1}, "her": {"_count": 1}, "she": {"_count": 1}, "facing": {"_count": 1}, "automatically": {"_count": 1}, "after": {"_count": 1}, "set": {"_count": 1}, "incensed": {"_count": 1}, "ten": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "over": {"_count": 1}, "empty": {"_count": 1}}, "and": {"_count": 1, "students": {"_count": 1}}, "would": {"_count": 1, "leave": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 1, "so": {"_count": 1}}, "sat": {"_count": 1, "along": {"_count": 1}}, "shrouded": {"_count": 1, "in": {"_count": 1}}, "members": {"_count": 3, "to": {"_count": 1}, "none": {"_count": 1}, "": {"_count": 1}}, "or": {"_count": 1, "students": {"_count": 1}}, "seemed": {"_count": 1, "oddly": {"_count": 1}}, "entered": {"_count": 1, "filing": {"_count": 1}}, "his": {"_count": 3, "magical": {"_count": 1}, "wand": {"_count": 1}, "body": {"_count": 1}}, "demonstrating": {"_count": 1, "a": {"_count": 1}}, "tables": {"_count": 1, "he": {"_count": 1}}, "appointments": {"_count": 3, "writes": {"_count": 1}, "previously": {"_count": 1}, "but": {"_count": 1}}, "as": {"_count": 2, "usual": {"_count": 1}, "she": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 3, "playing": {"_count": 1}, "safer": {"_count": 1}, "sending": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "followed": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "an": {"_count": 1, "objective": {"_count": 1}}, "but": {"_count": 1, "Filch": {"_count": 1}}, "fresh": {"_count": 1, "from": {"_count": 1}}, "short": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "robes": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "almost": {"_count": 1, "from": {"_count": 1}}, "you": {"_count": 2, "are": {"_count": 2}}, "to": {"_count": 1, "sixteen": {"_count": 1}}, "knew": {"_count": 1, "Voldemort": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "precisely": {"_count": 1, "what": {"_count": 1}}, "was": {"_count": 1, "seated": {"_count": 1}}}, "droned": {"_count": 3, "on": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}}, "dates": {"_count": 14, "and": {"_count": 2, "got": {"_count": 1}, "times": {"_count": 1}}, "of": {"_count": 5, "magical": {"_count": 1}, "the": {"_count": 3}, "birth": {"_count": 1}}, "yeh": {"_count": 1, "looked": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Evil": {"_count": 4, "and": {"_count": 1, "Uric": {"_count": 1}}, "he": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Sev": {"_count": 1, "": {"_count": 1}}}, "Uric": {"_count": 1, "the": {"_count": 1, "Oddball": {"_count": 1}}}, "Oddball": {"_count": 1, "mixed": {"_count": 1, "up": {"_count": 1}}}, "Flitwick": {"_count": 116, "the": {"_count": 4, "Charms": {"_count": 4}}, "started": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "paused": {"_count": 1}, "turned": {"_count": 1}}, "could": {"_count": 3, "I": {"_count": 1}, "be": {"_count": 1}, "have": {"_count": 1}}, "appeared": {"_count": 1, "at": {"_count": 1}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "announced": {"_count": 1, "in": {"_count": 1}}, "put": {"_count": 1, "the": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "clapping": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 3, "busy": {"_count": 1}, "there": {"_count": 1}, "bound": {"_count": 1}}, "who": {"_count": 3, "had": {"_count": 1}, "was": {"_count": 2}}, "had": {"_count": 8, "just": {"_count": 2}, "asked": {"_count": 1}, "given": {"_count": 1}, "left": {"_count": 1}, "dried": {"_count": 1}, "collapsed": {"_count": 1}, "unleashed": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "called": {"_count": 2, "them": {"_count": 1}, "Parkinson": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "Im": {"_count": 2, "so": {"_count": 1}, "coming": {"_count": 1}}, "and": {"_count": 14, "Snape": {"_count": 1}, "Professor": {"_count": 2}, "say": {"_count": 1}, "Sprout": {"_count": 7}, "found": {"_count": 1}, "Slughorn": {"_count": 1}, "although": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "mustve": {"_count": 1, "put": {"_count": 1}}, "squarely": {"_count": 1, "between": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "was": {"_count": 3, "a": {"_count": 1}, "walking": {"_count": 1}, "making": {"_count": 1}}, "knows": {"_count": 1, "more": {"_count": 1}}, "buried": {"_count": 1, "his": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 1}, "her": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 10}, "!": {"_count": 2}}, "closed": {"_count": 1, "all": {"_count": 1}}, "brought": {"_count": 1, "it": {"_count": 1}}, "smacking": {"_count": 1, "his": {"_count": 1}}, "whose": {"_count": 1, "feet": {"_count": 1}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "will": {"_count": 1, "strip": {"_count": 1}}, "believes": {"_count": 1, "the": {"_count": 1}}, "reprovingly": {"_count": 1, "as": {"_count": 1}}, "angry": {"_count": 1, "": {"_count": 1}}, "hinted": {"_count": 1, "they": {"_count": 1}}, "did": {"_count": 1, "indeed": {"_count": 1}}, "came": {"_count": 3, "out": {"_count": 1}, "walking": {"_count": 1}, "sprinting": {"_count": 1}}, "gave": {"_count": 1, "up": {"_count": 1}}, "for": {"_count": 1, "instance": {"_count": 1}}, "went": {"_count": 2, "whizzing": {"_count": 1}, "scurrying": {"_count": 1}}, "squeakily": {"_count": 1, "perched": {"_count": 1}}, "finish": {"_count": 1, "the": {"_count": 1}}, "getting": {"_count": 1, "marked": {"_count": 1}}, "whether": {"_count": 1, "students": {"_count": 1}}, "pressed": {"_count": 1, "a": {"_count": 1}}, "bringing": {"_count": 1, "up": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "has": {"_count": 1, "graded": {"_count": 1}}, "flat": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "reproachfully": {"_count": 1, "": {"_count": 1}}, "reemerging": {"_count": 1, "from": {"_count": 1}}, "are": {"_count": 1, "both": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "says": {"_count": 1, "the": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "gasped": {"_count": 1, "Slughorn": {"_count": 1}}, "Sprout": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "Dumbledore": {"_count": 1}}, "those": {"_count": 1, "model": {"_count": 1}}, "a": {"_count": 1, "masked": {"_count": 1}}}, "Charms": {"_count": 92, "teacher": {"_count": 4, "was": {"_count": 2}, "": {"_count": 1}, "had": {"_count": 1}}, "classroom": {"_count": 4, "which": {"_count": 1}, "having": {"_count": 1}, "one": {"_count": 1}, "he": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 2}}, "homework": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "ever": {"_count": 1}}, "and": {"_count": 7, "all": {"_count": 1}, "hitting": {"_count": 1}, "Defense": {"_count": 1}, "in": {"_count": 1}, "Transfiguration": {"_count": 1}, "walked": {"_count": 1}, "Voldemorts": {"_count": 1}}, "thank": {"_count": 1, "goodness": {"_count": 1}}, "was": {"_count": 4, "distraught": {"_count": 1}, "succeeded": {"_count": 1}, "always": {"_count": 1}, "scheduled": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "belching": {"_count": 1, "slugs": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 6}, "?": {"_count": 2}, "!": {"_count": 2}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Shh": {"_count": 1}, "Professor": {"_count": 1}}, "today": {"_count": 1, "weve": {"_count": 1}}, "had": {"_count": 1, "left": {"_count": 1}}, "were": {"_count": 1, "wearing": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "1": {"_count": 1, "oclock": {"_count": 1}}, "exam": {"_count": 1, "": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "hes": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 3, "every": {"_count": 1}, "its": {"_count": 1}, "themselves": {"_count": 1}}, "in": {"_count": 1, "Professor": {"_count": 1}}, "he": {"_count": 1, "seemed": {"_count": 1}}, "corridor": {"_count": 2, "": {"_count": 2}}, "perhaps": {"_count": 1, "the": {"_count": 1}}, "class": {"_count": 1, "with": {"_count": 1}}, "or": {"_count": 1, "in": {"_count": 1}}, "which": {"_count": 1, "according": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}, "to": {"_count": 2, "practice": {"_count": 1}, "prevent": {"_count": 1}}, "always": {"_count": 1, "useful": {"_count": 1}}, "window": {"_count": 1, "so": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "notes": {"_count": 1, "with": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "just": {"_count": 1}}, "tests": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "E": {"_count": 1, "Defense": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 2}}, "however": {"_count": 1, "why": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "old": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "Transfiguration": {"_count": 1, "Herbology": {"_count": 1}}, "lesson": {"_count": 2, "he": {"_count": 1}, "having": {"_count": 1}}, "master": {"_count": 2, "was": {"_count": 1}, "Professor": {"_count": 1}}, "lifted": {"_count": 1, "": {"_count": 1}}, "theyre": {"_count": 1, "so": {"_count": 1}}, "protection": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "unable": {"_count": 1}}}, "squeak": {"_count": 19, "and": {"_count": 6, "toppled": {"_count": 1}, "broke": {"_count": 1}, "much": {"_count": 1}, "turned": {"_count": 1}, "took": {"_count": 1}, "imitated": {"_count": 1}}, "See": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "discomfort": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "without": {"_count": 1, "stopping": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 2}, "fright": {"_count": 1}, "horror": {"_count": 1}}, "but": {"_count": 1, "Umbridge": {"_count": 1}}, "was": {"_count": 1, "as": {"_count": 1}}}, "toppled": {"_count": 25, "out": {"_count": 5, "of": {"_count": 4}, "and": {"_count": 1}}, "gently": {"_count": 1, "onto": {"_count": 1}}, "right": {"_count": 2, "into": {"_count": 1}, "over": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 2}}, "backward": {"_count": 2, "off": {"_count": 1}, "through": {"_count": 1}}, "over": {"_count": 6, "backward": {"_count": 2}, "sideways": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "immediately": {"_count": 1, "off": {"_count": 1}}, "forward": {"_count": 1, "across": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "Strict": {"_count": 1, "and": {"_count": 1, "clever": {"_count": 1}}}, "complex": {"_count": 16, "and": {"_count": 4, "dangerous": {"_count": 1}, "manylayered": {"_count": 1}, "powerful": {"_count": 1}, "mysterious": {"_count": 1}}, "Homorphus": {"_count": 1, "Charm": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "spell": {"_count": 2, "he": {"_count": 1}, "models": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "inappropriate": {"_count": 1, "to": {"_count": 1}}, "array": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "than": {"_count": 1, "anything": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "mission": {"_count": 1, "Dumbledore": {"_count": 1}}}, "messing": {"_count": 16, "around": {"_count": 7, "in": {"_count": 2}, "": {"_count": 2}, "with": {"_count": 2}, "outside": {"_count": 1}}, "up": {"_count": 2, "my": {"_count": 1}, "his": {"_count": 1}}, "with": {"_count": 1, "stuff": {"_count": 1}}, "things": {"_count": 1, "up": {"_count": 1}}, "about": {"_count": 3, "with": {"_count": 1}, "Molly": {"_count": 1}, "together": {"_count": 1}}, "her": {"_count": 2, "around": {"_count": 2}}}, "changing": {"_count": 46, "the": {"_count": 5, "furniture": {"_count": 1}, "subject": {"_count": 2}, "law": {"_count": 1}, "color": {"_count": 1}}, "into": {"_count": 5, "their": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 1}, "guinea": {"_count": 1}}, "Muggle": {"_count": 1, "money": {"_count": 1}}, "rooms": {"_count": 8, "Colin": {"_count": 1}, "": {"_count": 4}, "even": {"_count": 1}, "insisting": {"_count": 1}, "alone": {"_count": 1}}, "room": {"_count": 12, "": {"_count": 3}, "and": {"_count": 2}, "when": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 2}, "as": {"_count": 1}, "looking": {"_count": 1}, "too": {"_count": 1}}, "rapidly": {"_count": 1, "from": {"_count": 1}}, "smoothly": {"_count": 1, "from": {"_count": 1}}, "them": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "owls": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "like": {"_count": 1, "some": {"_count": 1}}, "of": {"_count": 1, "teachers": {"_count": 1}}, "around": {"_count": 1, "here": {"_count": 1}}, "and": {"_count": 1, "eternal": {"_count": 1}}, "your": {"_count": 1, "name": {"_count": 1}}, "his": {"_count": 1, "mind": {"_count": 1}}, "locations": {"_count": 1, "in": {"_count": 1}}, "color": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "one": {"_count": 1}}}, "furniture": {"_count": 11, "into": {"_count": 1, "animals": {"_count": 1}}, "a": {"_count": 1, "cheerfully": {"_count": 1}}, "was": {"_count": 2, "broken": {"_count": 1}, "old": {"_count": 1}}, "flew": {"_count": 1, "back": {"_count": 1}}, "stowed": {"_count": 1, "away": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "rained": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 1, "broken": {"_count": 1}}, "and": {"_count": 1, "boxes": {"_count": 1}}}, "complicated": {"_count": 17, "notes": {"_count": 1, "they": {"_count": 1}}, "potions": {"_count": 1, "learn": {"_count": 1}}, "rules": {"_count": 1, "of": {"_count": 1}}, "potion": {"_count": 1, "Ive": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "passwords": {"_count": 1, "which": {"_count": 1}}, "so": {"_count": 1, "diverse": {"_count": 1}}, "circular": {"_count": 1, "chart": {"_count": 1}}, "method": {"_count": 1, "of": {"_count": 1}}, "little": {"_count": 1, "wave": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "point": {"_count": 1, "beyond": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "movements": {"_count": 1, "over": {"_count": 1}}, "figureofeight": {"_count": 1, "movements": {"_count": 1}}}, "needle": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "thick": {"_count": 1}}, "sharp": {"_count": 1, "teeth": {"_count": 1}}, "and": {"_count": 1, "torment": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "lesson": {"_count": 173, "only": {"_count": 1, "Hermione": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}, "he": {"_count": 3, "knew": {"_count": 1}, "scooped": {"_count": 1}, "let": {"_count": 1}}, "continued": {"_count": 1, "": {"_count": 1}}, "": {"_count": 43, ".": {"_count": 37}, "!": {"_count": 3}, "?": {"_count": 3}}, "the": {"_count": 1, "three": {"_count": 1}}, "to": {"_count": 3, "drop": {"_count": 1}, "be": {"_count": 1}, "ask": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "loomed": {"_count": 1, "nearer": {"_count": 1}}, "proceeded": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 6, "the": {"_count": 6}}, "by": {"_count": 3, "a": {"_count": 1}, "setting": {"_count": 1}, "lecturing": {"_count": 1}}, "about": {"_count": 2, "two": {"_count": 1}, "dabbling": {"_count": 1}}, "Professor": {"_count": 1, "Sprout": {"_count": 1}}, "Transfiguration": {"_count": 1, "that": {"_count": 1}}, "here": {"_count": 1, "for": {"_count": 1}}, "was": {"_count": 6, "absolute": {"_count": 1}, "enough": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "now": {"_count": 1}, "a": {"_count": 1}}, "cornin": {"_count": 1, "up": {"_count": 1}}, "we": {"_count": 1, "will": {"_count": 1}}, "in": {"_count": 2, "sight": {"_count": 1}, "high": {"_count": 1}}, "weve": {"_count": 1, "ever": {"_count": 1}}, "after": {"_count": 1, "lesson": {"_count": 1}}, "learning": {"_count": 1, "how": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 4, "it": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "having": {"_count": 1}}, "began": {"_count": 2, "ten": {"_count": 1}, "picturing": {"_count": 1}}, "not": {"_count": 1, "you": {"_count": 1}}, "collecting": {"_count": 1, "dry": {"_count": 1}}, "Ron": {"_count": 1, "standing": {"_count": 1}}, "have": {"_count": 1, "we": {"_count": 1}}, "had": {"_count": 2, "collected": {"_count": 1}, "ended": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "was": {"_count": 2}, "virtually": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 2, "it": {"_count": 1}, "that": {"_count": 1}}, "so": {"_count": 2, "much": {"_count": 1}, "thestrals": {"_count": 1}}, "taking": {"_count": 1, "notes": {"_count": 1}}, "Harry": {"_count": 5, "thought": {"_count": 1}, "told": {"_count": 1}, "read": {"_count": 1}, "had": {"_count": 2}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "whats": {"_count": 1, "for": {"_count": 1}}, "though": {"_count": 2, "eh": {"_count": 1}, "still": {"_count": 1}}, "on": {"_count": 2, "Summoning": {"_count": 1}, "Wednesday": {"_count": 1}}, "during": {"_count": 1, "which": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "that": {"_count": 4, "he": {"_count": 1}, "they": {"_count": 1}, "afternoon": {"_count": 1}, "week": {"_count": 1}}, "telling": {"_count": 1, "everyone": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 2}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Snape": {"_count": 1}, "Slughorn": {"_count": 1}}, "for": {"_count": 3, "once": {"_count": 1}, "the": {"_count": 1}, "whats": {"_count": 1}}, "Karkaroff": {"_count": 1, "Snape": {"_count": 1}}, "Snape": {"_count": 1, "snapped": {"_count": 1}}, "your": {"_count": 1, "Daily": {"_count": 1}}, "I": {"_count": 3, "am": {"_count": 1}, "would": {"_count": 1}, "thought": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 2}}, "with": {"_count": 8, "a": {"_count": 1}, "Snape": {"_count": 1}, "Firenze": {"_count": 1}, "Dumbledore": {"_count": 4}, "them": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "correctly": {"_count": 1}}, "making": {"_count": 1, "notes": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "striding": {"_count": 1, "among": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "did": {"_count": 1, "nothing": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "before": {"_count": 1, "Easter": {"_count": 1}}, "There": {"_count": 1, "had": {"_count": 1}}, "tomorrow": {"_count": 1, "evening": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "Hermione": {"_count": 1, "managed": {"_count": 1}}, "Slughorn": {"_count": 1, "was": {"_count": 1}}, "thats": {"_count": 1, "illegal": {"_count": 1}}, "a": {"_count": 1, "week": {"_count": 1}}, "passed": {"_count": 1, "without": {"_count": 1}}, "Draught": {"_count": 1, "of": {"_count": 1}}, "poised": {"_count": 1, "on": {"_count": 1}}, "Lavender": {"_count": 1, "caught": {"_count": 1}}, "having": {"_count": 1, "first": {"_count": 1}}}, "pointy": {"_count": 2, "and": {"_count": 1, "gave": {"_count": 1}}, "thing": {"_count": 1, "on": {"_count": 1}}}, "rare": {"_count": 24, "smile": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "really": {"_count": 1}, "Professor": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "occasions": {"_count": 3, "when": {"_count": 2}, "that": {"_count": 1}}, "gift": {"_count": 1, "Parseltongue": {"_count": 1}}, "occasion": {"_count": 1, "that": {"_count": 1}}, "effect": {"_count": 1, "will": {"_count": 1}}, "theyre": {"_count": 1, "born": {"_count": 1}}, "said": {"_count": 1, "Neville": {"_count": 1}}, "gifts": {"_count": 1, "with": {"_count": 1}}, "I": {"_count": 1, "reckon": {"_count": 1}}, "ability": {"_count": 1, "and": {"_count": 1}}, "its": {"_count": 1, "still": {"_count": 1}}, "joint": {"_count": 1, "free": {"_count": 1}}, "steaks": {"_count": 1, "": {"_count": 1}}, "treat": {"_count": 1, "Pausing": {"_count": 1}}, "\u25a1": {"_count": 1, "phoenix": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "yet": {"_count": 1, "why": {"_count": 1}}}, "Defense": {"_count": 135, "Against": {"_count": 126, "the": {"_count": 126}}, "League": {"_count": 3, "and": {"_count": 2}, "who": {"_count": 1}}, "because": {"_count": 1, "": {"_count": 1}}, "lessons": {"_count": 1, "": {"_count": 1}}, "meeting": {"_count": 1, "": {"_count": 1}}, "Association": {"_count": 1, "": {"_count": 1}}, "against": {"_count": 1, "external": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "classroom": {"_count": 119, "smelled": {"_count": 1, "strongly": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 25}, "!": {"_count": 1}, "?": {"_count": 2}}, "that": {"_count": 4, "was": {"_count": 1}, "early": {"_count": 1}, "would": {"_count": 1}, "had": {"_count": 1}}, "which": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "the": {"_count": 1}}, "up": {"_count": 1, "ahead": {"_count": 1}}, "straightening": {"_count": 1, "his": {"_count": 1}}, "where": {"_count": 3, "they": {"_count": 1}, "Harry": {"_count": 1}, "Professors": {"_count": 1}}, "with": {"_count": 3, "you": {"_count": 1}, "shimmering": {"_count": 1}, "Hermione": {"_count": 1}}, "except": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 7, "he": {"_count": 1}, "closed": {"_count": 1}, "the": {"_count": 1}, "hurried": {"_count": 1}, "found": {"_count": 1}, "Nearly": {"_count": 1}, "Ill": {"_count": 1}}, "more": {"_count": 1, "effectively": {"_count": 1}}, "he": {"_count": 4, "yelled": {"_count": 1}, "had": {"_count": 1}, "came": {"_count": 1}, "tried": {"_count": 1}}, "one": {"_count": 2, "day": {"_count": 2}}, "at": {"_count": 2, "all": {"_count": 1}, "lunchtimes": {"_count": 1}}, "to": {"_count": 3, "get": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}}, "door": {"_count": 12, "at": {"_count": 1}, "": {"_count": 2}, "with": {"_count": 1}, "she": {"_count": 1}, "shut": {"_count": 1}, "waving": {"_count": 1}, "and": {"_count": 2}, "in": {"_count": 1}, "opened": {"_count": 2}}, "pulled": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "lunch": {"_count": 1}}, "illuminating": {"_count": 1, "Lupins": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "flickered": {"_count": 1, "and": {"_count": 1}}, "lamps": {"_count": 1, "were": {"_count": 1}}, "floor": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}}, "walking": {"_count": 1, "along": {"_count": 1}}, "yet": {"_count": 1, "Harry": {"_count": 1}}, "twenty": {"_count": 1, "minutes": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "shortened": {"_count": 1, "very": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "torrent": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "which": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "window": {"_count": 1, "a": {"_count": 1}}, "limped": {"_count": 1, "in": {"_count": 1}}, "having": {"_count": 1, "just": {"_count": 1}}, "for": {"_count": 3, "break": {"_count": 1}, "us": {"_count": 1}, "the": {"_count": 1}}, "behind": {"_count": 1, "Ron": {"_count": 1}}, "when": {"_count": 2, "the": {"_count": 1}, "they": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "was": {"_count": 1, "silent": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "feeling": {"_count": 1, "angry": {"_count": 1}}, "windows": {"_count": 1, "Harry": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "eleven": {"_count": 1, "now": {"_count": 1}}, "emitting": {"_count": 1, "loud": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "four": {"_count": 1, "floors": {"_count": 1}}, "toward": {"_count": 1, "his": {"_count": 1}}}, "garlic": {"_count": 4, "which": {"_count": 1, "everyone": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}}, "ward": {"_count": 47, "off": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "recollections": {"_count": 1}}, "Harry": {"_count": 1, "off": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "to": {"_count": 1, "Harrys": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 12}, "?": {"_count": 2}}, "slamming": {"_count": 1, "the": {"_count": 1}}, "dissolved": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "anybody": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "for": {"_count": 1, "people": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "was": {"_count": 1, "small": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "theyre": {"_count": 1, "in": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "doors": {"_count": 1, "shall": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "and": {"_count": 3, "muttered": {"_count": 1}, "two": {"_count": 1}, "asks": {"_count": 1}}, "she": {"_count": 1, "informed": {"_count": 1}}, "bore": {"_count": 1, "unmistakable": {"_count": 1}}, "the": {"_count": 1, "wall": {"_count": 1}}, "flowery": {"_count": 1, "curtains": {"_count": 1}}, "unnoticed": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "St": {"_count": 1}}, "humming": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "Mrs": {"_count": 1}}, "Fleur": {"_count": 1, "just": {"_count": 1}}}, "vampire": {"_count": 14, "hed": {"_count": 1, "met": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "who": {"_count": 1}}, "essay": {"_count": 3, "for": {"_count": 1}, "in": {"_count": 1}, "excuse": {"_count": 1}}, "suggested": {"_count": 1, "Dean": {"_count": 1}}, "hunter": {"_count": 1, "Ive": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "coming": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Luna": {"_count": 1}}, "Sanguini": {"_count": 1, "who": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "African": {"_count": 2, "prince": {"_count": 1, "as": {"_count": 1}}, "wizards": {"_count": 1, "sat": {"_count": 1}}}, "prince": {"_count": 2, "as": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}}, "thankyou": {"_count": 1, "for": {"_count": 1, "getting": {"_count": 1}}}, "rid": {"_count": 76, "of": {"_count": 66, "a": {"_count": 4}, "her": {"_count": 1}, "it": {"_count": 12}, "Norbert": {"_count": 3}, "the": {"_count": 12}, "him": {"_count": 5}, "Dumbledore": {"_count": 1}, "that": {"_count": 1}, "an": {"_count": 1}, "Neville": {"_count": 1}, "his": {"_count": 1}, "dementors": {"_count": 1}, "Muggleborns": {"_count": 1}, "since": {"_count": 1}, "all": {"_count": 2}, "those": {"_count": 2}, "them": {"_count": 2}, "teachers": {"_count": 1}, "this": {"_count": 1}, "me": {"_count": 1}, "Fred": {"_count": 1}, "Trelawney": {"_count": 1}, "Kingsley": {"_count": 1}, "Umbridge": {"_count": 1}, "McLaggen": {"_count": 1}, "Lavender": {"_count": 1}, "when": {"_count": 1}, "these": {"_count": 1}, "Horcruxes": {"_count": 2}, "Griphook": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "the": {"_count": 1, "world": {"_count": 1}}, "it": {"_count": 1, "of": {"_count": 1}}, "themselves": {"_count": 1, "of": {"_count": 1}}, "himself": {"_count": 3, "of": {"_count": 3}}, "your": {"_count": 1, "mind": {"_count": 1}}, "their": {"_count": 1, "rooms": {"_count": 1}}, "us": {"_count": 1, "of": {"_count": 1}}, "its": {"_count": 1, "ears": {"_count": 1}}}, "troublesome": {"_count": 2, "zombie": {"_count": 1, "but": {"_count": 1}}, "said": {"_count": 1, "Travers": {"_count": 1}}}, "zombie": {"_count": 3, "but": {"_count": 1, "they": {"_count": 1}}, "Quirrell": {"_count": 1, "went": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "believed": {"_count": 74, "this": {"_count": 2, "story": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 4, "be": {"_count": 3}, "have": {"_count": 1}}, "he": {"_count": 4, "would": {"_count": 2}, "hadnt": {"_count": 1}, "was": {"_count": 1}}, "it": {"_count": 10, "of": {"_count": 2}, "too": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}, "possible": {"_count": 1}, "myself": {"_count": 1}, "could": {"_count": 1}, "much": {"_count": 1}}, "Filch": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 12, "magical": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}, "if": {"_count": 1}, "HeWhoMustNotBeNamed": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "only": {"_count": 1}, "Muggleborn": {"_count": 1}, "Ollivander": {"_count": 1}}, "him": {"_count": 5, "": {"_count": 1}, "thought": {"_count": 1}, "finished": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 5, "boys": {"_count": 1}, "stories": {"_count": 1}, "beasts": {"_count": 1}, "story": {"_count": 1}, "time": {"_count": 1}}, "dead": {"_count": 3, "": {"_count": 3}}, "their": {"_count": 1, "story": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "possible": {"_count": 2, "he": {"_count": 1}, "an": {"_count": 1}}, "Sirius": {"_count": 2, "to": {"_count": 2}}, "me": {"_count": 1, "broken": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "a": {"_count": 2, "still": {"_count": 1}, "different": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}, "Rita": {"_count": 1, "Skeeters": {"_count": 1}}, "guilty": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "announced": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "but": {"_count": 1, "recruiting": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "do": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 1, "Dumbledore": {"_count": 1}}, "Her": {"_count": 1, "wand": {"_count": 1}}, "would": {"_count": 1, "remain": {"_count": 1}}}, "fought": {"_count": 56, "off": {"_count": 3, "the": {"_count": 1}, "about": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "her": {"_count": 3, "way": {"_count": 3}}, "to": {"_count": 7, "pull": {"_count": 1}, "keep": {"_count": 3}, "remember": {"_count": 1}, "break": {"_count": 1}, "suppress": {"_count": 1}}, "their": {"_count": 2, "way": {"_count": 2}}, "his": {"_count": 5, "way": {"_count": 5}}, "the": {"_count": 4, "boggart": {"_count": 1}, "force": {"_count": 1}, "dementors": {"_count": 1}, "Death": {"_count": 1}}, "free": {"_count": 1, "of": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "bravely": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 1, "Ill": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "it": {"_count": 2, "and": {"_count": 1}, "It": {"_count": 1}}, "hard": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "violence": {"_count": 1, "with": {"_count": 1}}, "for": {"_count": 1, "breath": {"_count": 1}}, "against": {"_count": 1, "YouKnowWho": {"_count": 1}}, "like": {"_count": 1, "heroes": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "twice": {"_count": 1}, "off": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 3, "hard": {"_count": 2}, "that": {"_count": 1}}, "YouKnowWho": {"_count": 2, "over": {"_count": 1}, "from": {"_count": 1}}, "Lupin": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 2, "mans": {"_count": 1}, "strong": {"_count": 1}}, "Dark": {"_count": 1, "wizards": {"_count": 1}}, "shock": {"_count": 1, "and": {"_count": 1}}, "those": {"_count": 1, "maniacs": {"_count": 1}}, "dirty": {"_count": 1, "too": {"_count": 1}}, "its": {"_count": 1, "way": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}}, "insisted": {"_count": 29, "that": {"_count": 13, "it": {"_count": 1}, "nothing": {"_count": 1}, "they": {"_count": 2}, "Dudley": {"_count": 1}, "the": {"_count": 3}, "everyone": {"_count": 1}, "learning": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}, "Hermione": {"_count": 1}}, "on": {"_count": 10, "keeping": {"_count": 1}, "using": {"_count": 1}, "pouring": {"_count": 1}, "putting": {"_count": 1}, "draping": {"_count": 1}, "separate": {"_count": 1}, "summoning": {"_count": 1}, "almost": {"_count": 1}, "discussing": {"_count": 1}, "journeying": {"_count": 1}}, "she": {"_count": 1, "needed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "answer": {"_count": 1}}, "upon": {"_count": 1, "arguing": {"_count": 1}}, "they": {"_count": 1, "take": {"_count": 1}}}, "stuffed": {"_count": 56, "full": {"_count": 2, "of": {"_count": 2}}, "the": {"_count": 10, "cloak": {"_count": 1}, "letter": {"_count": 1}, "cakes": {"_count": 1}, "diary": {"_count": 1}, "trembling": {"_count": 1}, "Sneakoscope": {"_count": 2}, "Marauders": {"_count": 1}, "parchment": {"_count": 1}, "HalfBlood": {"_count": 1}}, "roughly": {"_count": 1, "into": {"_count": 1}}, "his": {"_count": 7, "fingers": {"_count": 1}, "wand": {"_count": 3}, "quill": {"_count": 1}, "handkerchief": {"_count": 1}, "rucksack": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "vulture": {"_count": 4, "on": {"_count": 2}, "": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 11, "inside": {"_count": 1}, "back": {"_count": 1}, "into": {"_count": 7}, "roughly": {"_count": 1}, "beneath": {"_count": 1}}, "Scabbers": {"_count": 1, "into": {"_count": 1}}, "a": {"_count": 2, "large": {"_count": 1}, "bent": {"_count": 1}}, "their": {"_count": 1, "fingers": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 3, "box": {"_count": 1}, "unceremoniously": {"_count": 1}, "knuckles": {"_count": 1}}, "elf": {"_count": 2, "heads": {"_count": 2}}, "them": {"_count": 1, "angrily": {"_count": 1}}, "troll": {"_count": 2, "ran": {"_count": 1}, "and": {"_count": 1}}, "snowy": {"_count": 1, "owl": {"_count": 1}}, "him": {"_count": 1, "Dont": {"_count": 1}}, "frogs": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}}, "protected": {"_count": 26, "wherever": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 2}}, "me": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 5, "more": {"_count": 1}, "an": {"_count": 1}, "many": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}}, "And": {"_count": 1, "so": {"_count": 1}}, "than": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 3, "ways": {"_count": 1}, "new": {"_count": 1}, "short": {"_count": 1}}, "from": {"_count": 4, "unwanted": {"_count": 1}, "the": {"_count": 2}, "you": {"_count": 1}}, "clearing": {"_count": 1, "": {"_count": 1}}, "space": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "secret": {"_count": 1}}, "him": {"_count": 1, "because": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}}, "wherever": {"_count": 37, "he": {"_count": 14, "went": {"_count": 8}, "wanted": {"_count": 1}, "sent": {"_count": 1}, "pleased": {"_count": 1}, "wants": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "I": {"_count": 1, "go": {"_count": 1}}, "you": {"_count": 3, "go": {"_count": 1}, "like": {"_count": 1}, "are": {"_count": 1}}, "youre": {"_count": 2, "hiding": {"_count": 1}, "going": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "there": {"_count": 1, "had": {"_count": 1}}, "Sirius": {"_count": 1, "was": {"_count": 1}}, "hes": {"_count": 1, "hiding": {"_count": 1}}, "they": {"_count": 5, "come": {"_count": 1}, "were": {"_count": 1}, "deviated": {"_count": 1}, "had": {"_count": 1}, "went": {"_count": 1}}, "she": {"_count": 1, "stood": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "we": {"_count": 2, "find": {"_count": 2}}, "Malfoy": {"_count": 1, "happened": {"_count": 1}}, "else": {"_count": 1, "we": {"_count": 1}}, "the": {"_count": 1, "reflections": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}}, "Lots": {"_count": 4, "of": {"_count": 4, "people": {"_count": 2}, "homework": {"_count": 1}, "love": {"_count": 1}}}, "poured": {"_count": 30, "sugar": {"_count": 1, "on": {"_count": 1}}, "them": {"_count": 2, "both": {"_count": 1}, "tea": {"_count": 1}}, "out": {"_count": 3, "her": {"_count": 1}, "enough": {"_count": 1}, "three": {"_count": 1}}, "from": {"_count": 3, "its": {"_count": 1}, "the": {"_count": 2}}, "it": {"_count": 3, "all": {"_count": 1}, "inside": {"_count": 1}, "out": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 1}, "generous": {"_count": 1}}, "icewhite": {"_count": 1, "foam": {"_count": 1}}, "three": {"_count": 2, "drops": {"_count": 2}}, "herself": {"_count": 1, "some": {"_count": 1}}, "the": {"_count": 3, "contents": {"_count": 1}, "fresh": {"_count": 1}, "gleaming": {"_count": 1}}, "her": {"_count": 2, "more": {"_count": 1}, "heart": {"_count": 1}}, "one": {"_count": 1, "for": {"_count": 1}}, "everywhere": {"_count": 1, "and": {"_count": 1}}, "water": {"_count": 1, "on": {"_count": 1}}, "Harry": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "blood": {"_count": 1, "and": {"_count": 1}}, "Snapes": {"_count": 1, "memories": {"_count": 1}}}, "sugar": {"_count": 16, "on": {"_count": 1, "his": {"_count": 1}}, "bowl": {"_count": 4, "and": {"_count": 2}, "": {"_count": 1}, "to": {"_count": 1}}, "tongs": {"_count": 1, "clamped": {"_count": 1}}, "quills": {"_count": 3, "which": {"_count": 1}, "those": {"_count": 1}, "than": {"_count": 1}}, "makes": {"_count": 1, "it": {"_count": 1}}, "lumps": {"_count": 1, "": {"_count": 1}}, "mice": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "Double": {"_count": 6, "Potions": {"_count": 3, "with": {"_count": 1}, "to": {"_count": 1}, "was": {"_count": 1}}, "Divination": {"_count": 1, "this": {"_count": 1}}, "Charms": {"_count": 1, "was": {"_count": 1}}, "detention": {"_count": 1, "": {"_count": 1}}}, "Snapes": {"_count": 189, "Head": {"_count": 1, "of": {"_count": 1}}, "always": {"_count": 1, "taking": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "eye": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 10, "when": {"_count": 3}, "had": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}, "was": {"_count": 3}, "clearly": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "a": {"_count": 2, "Hogwarts": {"_count": 1}, "bit": {"_count": 1}}, "classes": {"_count": 1, "down": {"_count": 1}}, "refereeing": {"_count": 2, "this": {"_count": 1}, "": {"_count": 1}}, "after": {"_count": 1, "it": {"_count": 1}}, "done": {"_count": 1, "it": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "only": {"_count": 2, "got": {"_count": 1}, "one": {"_count": 1}}, "going": {"_count": 1, "through": {"_count": 1}}, "tail": {"_count": 1, "when": {"_count": 1}}, "already": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "office": {"_count": 18, "shivering": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 6}, "eh": {"_count": 1}, "did": {"_count": 1}, "one": {"_count": 1}, "floor": {"_count": 1}, "trying": {"_count": 1}, "door": {"_count": 1}, "yes": {"_count": 1}}, "desk": {"_count": 7, "": {"_count": 2}, "at": {"_count": 2}, "with": {"_count": 1}, "in": {"_count": 1}, "for": {"_count": 1}}, "nasty": {"_count": 1, "smile": {"_count": 1}}, "private": {"_count": 2, "stores": {"_count": 2}}, "Potions": {"_count": 2, "class": {"_count": 1}, "test": {"_count": 1}}, "favorite": {"_count": 1, "student": {"_count": 1}}, "lip": {"_count": 1, "curled": {"_count": 1}}, "shape": {"_count": 1, "and": {"_count": 1}}, "very": {"_count": 1, "interested": {"_count": 1}}, "teaching": {"_count": 1, "Defense": {"_count": 1}}, "behavior": {"_count": 2, "while": {"_count": 1}, "toward": {"_count": 1}}, "essay": {"_count": 6, "": {"_count": 4}, "instead": {"_count": 1}, "to": {"_count": 1}}, "black": {"_count": 3, "eyes": {"_count": 3}}, "eyes": {"_count": 4, "were": {"_count": 1}, "met": {"_count": 1}, "flashed": {"_count": 1}, "flew": {"_count": 1}}, "thin": {"_count": 3, "mouth": {"_count": 3}}, "sallow": {"_count": 1, "skin": {"_count": 1}}, "uneven": {"_count": 1, "yellowish": {"_count": 1}}, "been": {"_count": 4, "right": {"_count": 1}, "avoiding": {"_count": 1}, "up": {"_count": 1}, "fiddling": {"_count": 1}}, "wand": {"_count": 3, "and": {"_count": 2}, "from": {"_count": 1}}, "prone": {"_count": 1, "figure": {"_count": 1}}, "wrists": {"_count": 1, "neck": {"_count": 1}}, "head": {"_count": 3, "was": {"_count": 1}, "jerked": {"_count": 1}, "Snape": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "smirk": {"_count": 1, "as": {"_count": 1}}, "dislike": {"_count": 1, "for": {"_count": 1}}, "greasy": {"_count": 1, "head": {"_count": 1}}, "dungeon": {"_count": 9, "said": {"_count": 1}, "but": {"_count": 1}, "they": {"_count": 1}, "at": {"_count": 1}, "which": {"_count": 1}, "door": {"_count": 1}, "when": {"_count": 1}, "and": {"_count": 2}}, "detentions": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 2, "curtly": {"_count": 1}, "and": {"_count": 1}}, "fingertips": {"_count": 1, "but": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "conversation": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "opened": {"_count": 1}}, "had": {"_count": 2, "done": {"_count": 1}, "plenty": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "reports": {"_count": 1, "having": {"_count": 1}}, "shrank": {"_count": 1, "to": {"_count": 1}}, "classroom": {"_count": 2, "door": {"_count": 2}}, "mere": {"_count": 1, "presence": {"_count": 1}}, "stuff": {"_count": 1, "first": {"_count": 1}}, "moonstone": {"_count": 1, "essay": {"_count": 1}}, "punishment": {"_count": 1, "essay": {"_count": 1}}, "sneer": {"_count": 1, "became": {"_count": 1}}, "accusation": {"_count": 1, "of": {"_count": 1}}, "giving": {"_count": 1, "you": {"_count": 1}}, "cold": {"_count": 1, "voice": {"_count": 1}}, "dark": {"_count": 2, "cold": {"_count": 1}, "eyes": {"_count": 1}}, "walls": {"_count": 1, "and": {"_count": 1}}, "memories": {"_count": 2, "that": {"_count": 1}, "into": {"_count": 1}}, "childhood": {"_count": 1, "and": {"_count": 1}}, "thoughts": {"_count": 3, "": {"_count": 3}}, "defenses": {"_count": 1, "accidentally": {"_count": 1}}, "memory": {"_count": 1, "and": {"_count": 1}}, "mouth": {"_count": 1, "at": {"_count": 1}}, "pants": {"_count": 1, "Harry": {"_count": 1}}, "hand": {"_count": 2, "still": {"_count": 1}, "twitched": {"_count": 1}}, "lips": {"_count": 1, "were": {"_count": 1}}, "aspersions": {"_count": 1, "on": {"_count": 1}}, "expression": {"_count": 1, "was": {"_count": 1}}, "not": {"_count": 1, "going": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "row": {"_count": 1, "and": {"_count": 1}}, "dementor": {"_count": 1, "essay": {"_count": 1}}, "right": {"_count": 1, "though": {"_count": 1}}, "timely": {"_count": 1, "action": {"_count": 1}}, "whats": {"_count": 1, "happened": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "our": {"_count": 1}}, "name": {"_count": 1, "quite": {"_count": 1}}, "back": {"_count": 1, "and": {"_count": 1}}, "pale": {"_count": 2, "face": {"_count": 2}}, "old": {"_count": 1, "classroom": {"_count": 1}}, "place": {"_count": 1, "had": {"_count": 1}}, "work": {"_count": 1, "said": {"_count": 1}}, "track": {"_count": 1, "record": {"_count": 1}}, "school": {"_count": 1, "said": {"_count": 1}}, "regime": {"_count": 1, "Being": {"_count": 1}}, "there": {"_count": 1, "because": {"_count": 1}}, "run": {"_count": 1, "for": {"_count": 1}}, "white": {"_count": 1, "face": {"_count": 1}}, "throat": {"_count": 1, "": {"_count": 1}}, "side": {"_count": 1, "simply": {"_count": 1}}, "body": {"_count": 1, "then": {"_count": 1}}, "last": {"_count": 1, "thoughts": {"_count": 1}}, "chest": {"_count": 1, "": {"_count": 1}}, "whole": {"_count": 1, "face": {"_count": 1}}, "bitterness": {"_count": 1, "and": {"_count": 1}}, "step": {"_count": 1, "": {"_count": 1}}, "defense": {"_count": 1, "": {"_count": 1}}, "breathing": {"_count": 1, "was": {"_count": 1}}, "ferocious": {"_count": 1, "anguished": {"_count": 1}}, "Patronus": {"_count": 1, "was": {"_count": 1}}}, "favors": {"_count": 6, "them": {"_count": 1, "well": {"_count": 1}}, "were": {"_count": 1, "nothing": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "ribbons": {"_count": 1, "and": {"_count": 1}}}, "homework": {"_count": 117, "the": {"_count": 3, "day": {"_count": 1}, "Ministry": {"_count": 1}, "only": {"_count": 1}}, "but": {"_count": 4, "Harry": {"_count": 1}, "was": {"_count": 2}, "in": {"_count": 1}}, "without": {"_count": 1, "her": {"_count": 1}}, "for": {"_count": 3, "them": {"_count": 1}, "the": {"_count": 1}, "Runes": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 21}, "?": {"_count": 4}, "!": {"_count": 1}}, "on": {"_count": 1, "them": {"_count": 1}}, "they": {"_count": 5, "were": {"_count": 2}, "had": {"_count": 3}}, "done": {"_count": 2, "": {"_count": 1}, "during": {"_count": 1}}, "and": {"_count": 8, "grumpy": {"_count": 1}, "he": {"_count": 1}, "watching": {"_count": 1}, "Quidditch": {"_count": 1}, "scurried": {"_count": 1}, "threw": {"_count": 1}, "Apparition": {"_count": 1}, "the": {"_count": 1}}, "or": {"_count": 1, "in": {"_count": 1}}, "Ron": {"_count": 1, "slammed": {"_count": 1}}, "Harry": {"_count": 2, "thought": {"_count": 1}, "": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "that": {"_count": 4, "only": {"_count": 1}, "the": {"_count": 1}, "night": {"_count": 1}, "frequently": {"_count": 1}}, "over": {"_count": 1, "three": {"_count": 1}}, "around": {"_count": 1, "Quidditch": {"_count": 1}}, "when": {"_count": 1, "Lupin": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "lay": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 3, "their": {"_count": 1}, "the": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 2, "he": {"_count": 2}}, "weve": {"_count": 2, "got": {"_count": 2}}, "to": {"_count": 3, "do": {"_count": 3}}, "get": {"_count": 1, "it": {"_count": 1}}, "tonight": {"_count": 1, "when": {"_count": 1}}, "ever": {"_count": 1, "": {"_count": 1}}, "everybody": {"_count": 1, "else": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 2}}, "which": {"_count": 1, "he": {"_count": 1}}, "situation": {"_count": 1, "however": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "awaiting": {"_count": 1, "him": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 2}, "Professor": {"_count": 1}}, "this": {"_count": 1, "late": {"_count": 1}}, "was": {"_count": 1, "abysmal": {"_count": 1}}, "didnt": {"_count": 1, "go": {"_count": 1}}, "Miss": {"_count": 1, "Brown": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 2}}, "groups": {"_count": 2, "and": {"_count": 1}, "being": {"_count": 1}}, "group": {"_count": 1, "youre": {"_count": 1}}, "had": {"_count": 1, "reached": {"_count": 1}}, "planner": {"_count": 3, "Harry": {"_count": 1}, "then": {"_count": 1}, "back": {"_count": 1}}, "diary": {"_count": 1, "at": {"_count": 1}}, "would": {"_count": 1, "increase": {"_count": 1}}, "perhaps": {"_count": 1, "earned": {"_count": 1}}, "might": {"_count": 1, "spring": {"_count": 1}}, "lessons": {"_count": 1, "were": {"_count": 1}}, "twice": {"_count": 1, "in": {"_count": 1}}, "project": {"_count": 1, "": {"_count": 1}}, "lifted": {"_count": 1, "": {"_count": 1}}}, "circling": {"_count": 20, "the": {"_count": 9, "tables": {"_count": 1}, "game": {"_count": 1}, "hall": {"_count": 1}, "Gryffindor": {"_count": 1}, "headstone": {"_count": 1}, "opposite": {"_count": 1}, "pitch": {"_count": 1}, "stadium": {"_count": 1}, "gates": {"_count": 1}}, "its": {"_count": 1, "head": {"_count": 1}}, "around": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "Harry": {"_count": 1, "again": {"_count": 1}}, "snake": {"_count": 1, "a": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "continuously": {"_count": 1, "like": {"_count": 1}}, "amongst": {"_count": 1, "all": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}, "them": {"_count": 1, "drawing": {"_count": 1}}}, "owners": {"_count": 22, "and": {"_count": 2, "dropping": {"_count": 1}, "showering": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "hear": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "said": {"_count": 1, "there": {"_count": 1}}, "had": {"_count": 1, "clearly": {"_count": 1}}, "the": {"_count": 1, "Malfoy": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "trunk": {"_count": 1, "at": {"_count": 1}}, "talking": {"_count": 1, "excitedly": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "this": {"_count": 1}}, "who": {"_count": 1, "drove": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "name": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "fewer": {"_count": 1}}, "pocket": {"_count": 1, "Hermione": {"_count": 1}}, "arms": {"_count": 1, "over": {"_count": 1}}, "voices": {"_count": 1, "sounded": {"_count": 1}}}, "laps": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "owlery": {"_count": 4, "with": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "send": {"_count": 2}}, "to": {"_count": 1, "contact": {"_count": 1}}}, "untidy": {"_count": 20, "scrawl": {"_count": 3, "Dear": {"_count": 1}, "and": {"_count": 1}, "on": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "whatever": {"_count": 1, "he": {"_count": 1}}, "hair": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "black": {"_count": 6, "hair": {"_count": 6}}, "and": {"_count": 3, "matted": {"_count": 1}, "there": {"_count": 1}, "ruffled": {"_count": 1}}, "looking": {"_count": 1, "corridor": {"_count": 1}}, "dark": {"_count": 1, "head": {"_count": 1}}, "sprawl": {"_count": 1, "very": {"_count": 1}}}, "scrawl": {"_count": 3, "Dear": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "even": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "afternoons": {"_count": 8, "off": {"_count": 1, "so": {"_count": 1}}, "events": {"_count": 1, "certainly": {"_count": 1}}, "double": {"_count": 2, "Potions": {"_count": 2}}, "lesson": {"_count": 1, "proceeded": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "spent": {"_count": 1, "alone": {"_count": 1}}}, "Send": {"_count": 7, "us": {"_count": 1, "an": {"_count": 1}}, "him": {"_count": 2, "off": {"_count": 1}, "we": {"_count": 1}}, "me": {"_count": 1, "an": {"_count": 1}}, "word": {"_count": 1, "with": {"_count": 1}}, "date": {"_count": 1, "of": {"_count": 1}}, "Avery": {"_count": 1, "to": {"_count": 1}}}, "borrowed": {"_count": 19, "Rons": {"_count": 1, "quill": {"_count": 1}}, "Fluffy": {"_count": 1, "from": {"_count": 1}}, "Spellotape": {"_count": 1, "but": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "copy": {"_count": 1}, "Ministry": {"_count": 1}}, "it": {"_count": 3, "for": {"_count": 1}, "from": {"_count": 1}, "to": {"_count": 1}}, "this": {"_count": 1, "from": {"_count": 1}}, "her": {"_count": 1, "walking": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "wand": {"_count": 4, "something": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "did": {"_count": 1}}, "the": {"_count": 1, "Cloak": {"_count": 1}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "sent": {"_count": 208, "Hedwig": {"_count": 4, "off": {"_count": 1}, "to": {"_count": 1}, "yesterday": {"_count": 1}, "back": {"_count": 1}}, "him": {"_count": 17, "": {"_count": 1}, "letters": {"_count": 1}, "a": {"_count": 6}, "at": {"_count": 1}, "an": {"_count": 1}, "into": {"_count": 1}, "straight": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}, "flying": {"_count": 1}, "to": {"_count": 2}}, "a": {"_count": 18, "broomstick": {"_count": 2}, "jet": {"_count": 2}, "Bludger": {"_count": 1}, "stream": {"_count": 1}, "messenger": {"_count": 1}, "furry": {"_count": 1}, "potted": {"_count": 1}, "copy": {"_count": 1}, "Howler": {"_count": 1}, "Stunning": {"_count": 2}, "message": {"_count": 1}, "great": {"_count": 1}, "doe": {"_count": 1}, "man": {"_count": 1}, "well": {"_count": 1}}, "it": {"_count": 17, "zigzagging": {"_count": 1}, "": {"_count": 6}, "to": {"_count": 6}, "into": {"_count": 1}, "as": {"_count": 1}, "down": {"_count": 1}, "flying": {"_count": 1}}, "up": {"_count": 4, "": {"_count": 1}, "the": {"_count": 1}, "through": {"_count": 1}, "sandwiches": {"_count": 1}}, "his": {"_count": 3, "way": {"_count": 1}, "ink": {"_count": 1}, "Death": {"_count": 1}}, "these": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 6, "cloak": {"_count": 1}, "family": {"_count": 1}, "Dark": {"_count": 1}, "dementors": {"_count": 1}, "bottle": {"_count": 1}, "wand": {"_count": 1}}, "to": {"_count": 26, "see": {"_count": 3}, "stop": {"_count": 1}, "Harry": {"_count": 1}, "Sirius": {"_count": 2}, "Azkaban": {"_count": 9}, "get": {"_count": 1}, "you": {"_count": 3}, "your": {"_count": 1}, "steal": {"_count": 1}, "persuade": {"_count": 1}, "do": {"_count": 1}, "safety": {"_count": 1}, "verify": {"_count": 1}}, "that": {"_count": 6, "note": {"_count": 1}, "Patronus": {"_count": 1}, "Howler": {"_count": 1}, "necklace": {"_count": 1}, "doe": {"_count": 2}}, "them": {"_count": 8, "": {"_count": 2}, "said": {"_count": 1}, "both": {"_count": 1}, "flying": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}, "running": {"_count": 1}}, "me": {"_count": 13, "a": {"_count": 2}, "one": {"_count": 1}, "cards": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 1}, "word": {"_count": 1}, "to": {"_count": 2}, "on": {"_count": 1}, "all": {"_count": 1}, "most": {"_count": 1}, "for": {"_count": 1}}, "home": {"_count": 3, "grievously": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "Harry": {"_count": 2, "a": {"_count": 1}, "back": {"_count": 1}}, "letters": {"_count": 2, "from": {"_count": 1}, "by": {"_count": 1}}, "men": {"_count": 1, "into": {"_count": 1}}, "you": {"_count": 9, "": {"_count": 1}, "the": {"_count": 2}, "that": {"_count": 1}, "up": {"_count": 1}, "a": {"_count": 2}, "here": {"_count": 1}, "did": {"_count": 1}}, "Lockhart": {"_count": 1, "in": {"_count": 1}}, "an": {"_count": 6, "owl": {"_count": 6}}, "yours": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Voldemort": {"_count": 3, "after": {"_count": 1}, "a": {"_count": 1}, "hunting": {"_count": 1}}, "Neville": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 2, "": {"_count": 1}, "buffoon": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "someone": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 2}}, "heavily": {"_count": 1, "perfumed": {"_count": 1}}, "outside": {"_count": 1, "again": {"_count": 1}}, "Howlers": {"_count": 1, "which": {"_count": 1}}, "word": {"_count": 1, "there": {"_count": 1}}, "their": {"_count": 1, "owl": {"_count": 1}}, "birds": {"_count": 1, "from": {"_count": 1}}, "sparks": {"_count": 1, "in": {"_count": 1}}, "another": {"_count": 5, "wizard": {"_count": 1}, "jet": {"_count": 2}, "Killing": {"_count": 1}, "Stunning": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "packing": {"_count": 1, "straight": {"_count": 1}}, "rocketing": {"_count": 1, "in": {"_count": 1}}, "ter": {"_count": 1, "kill": {"_count": 1}}, "back": {"_count": 3, "his": {"_count": 2}, "home": {"_count": 1}}, "anonymously": {"_count": 1, "hows": {"_count": 1}}, "one": {"_count": 1, "last": {"_count": 1}}, "streams": {"_count": 1, "of": {"_count": 1}}, "spells": {"_count": 1, "streaming": {"_count": 1}}, "here": {"_count": 1, "tonight": {"_count": 1}}, "her": {"_count": 1, "an": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "over": {"_count": 1}}, "Advanced": {"_count": 1, "PotionMaking": {"_count": 1}}, "off": {"_count": 1, "for": {"_count": 1}}, "Ron": {"_count": 1, "crashing": {"_count": 1}}, "Filius": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 3, "him": {"_count": 2}, "her": {"_count": 1}}, "Stunning": {"_count": 2, "Spell": {"_count": 1}, "Spells": {"_count": 1}}, "earth": {"_count": 1, "and": {"_count": 1}}, "twelve": {"_count": 1, "full": {"_count": 1}}, "Rons": {"_count": 1, "possessions": {"_count": 1}}, "joy": {"_count": 1, "and": {"_count": 1}}, "Snape": {"_count": 1, "in": {"_count": 1}}, "Gellert": {"_count": 1, "Grindelwald": {"_count": 1}}, "Luna": {"_count": 1, "a": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "messages": {"_count": 1, "to": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "curses": {"_count": 1, "flying": {"_count": 1}}}, "disliked": {"_count": 8, "him": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "everybody": {"_count": 1}}, "taking": {"_count": 1, "students": {"_count": 1}}, "James": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "over": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "feeling": {"_count": 1}}}, "dislike": {"_count": 34, "Harry": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 14}, "?": {"_count": 1}}, "for": {"_count": 2, "him": {"_count": 1}, "normal": {"_count": 1}}, "of": {"_count": 5, "crowds": {"_count": 1}, "Umbridge": {"_count": 1}, "traveling": {"_count": 1}, "the": {"_count": 2}}, "upon": {"_count": 1, "his": {"_count": 1}}, "pouring": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "or": {"_count": 1, "anger": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "etched": {"_count": 1, "in": {"_count": 1}}, "Fudges": {"_count": 1, "visits": {"_count": 1}}, "the": {"_count": 1, "name": {"_count": 1}}, "Severus": {"_count": 1, "said": {"_count": 1}}, "wizards": {"_count": 1, "Ron": {"_count": 1}}, "were": {"_count": 1, "rendering": {"_count": 1}}}, "pickled": {"_count": 5, "animals": {"_count": 1, "floating": {"_count": 1}}, "toad": {"_count": 2, "His": {"_count": 1}, "one": {"_count": 1}}, "murtlap": {"_count": 1, "tentacles": {"_count": 1}}, "slimy": {"_count": 1, "thing": {"_count": 1}}}, "paused": {"_count": 70, "at": {"_count": 6, "Harrys": {"_count": 1}, "the": {"_count": 2}, "this": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "again": {"_count": 5, "turning": {"_count": 1}, "pursing": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "to": {"_count": 9, "examine": {"_count": 1}, "sneer": {"_count": 1}, "listen": {"_count": 3}, "help": {"_count": 1}, "understand": {"_count": 1}, "restart": {"_count": 1}, "watch": {"_count": 1}}, "gazed": {"_count": 1, "blearily": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 8, "a": {"_count": 7}, "breath": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "so": {"_count": 1, "you": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 7, "Harry": {"_count": 1}, "said": {"_count": 1}, "his": {"_count": 1}, "looked": {"_count": 2}, "although": {"_count": 1}, "then": {"_count": 1}}, "confused": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "gasping": {"_count": 1, "for": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "wondering": {"_count": 1, "how": {"_count": 1}}, "his": {"_count": 1, "magical": {"_count": 1}}, "before": {"_count": 1, "others": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "looked": {"_count": 1, "sideways": {"_count": 1}}, "outside": {"_count": 2, "Scrivenshafts": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 2}, "the": {"_count": 2}, "their": {"_count": 1}}, "while": {"_count": 1, "feeling": {"_count": 1}}, "looking": {"_count": 2, "faintly": {"_count": 1}, "around": {"_count": 1}}, "her": {"_count": 1, "chest": {"_count": 1}}, "beside": {"_count": 1, "Harrys": {"_count": 1}}, "biting": {"_count": 1, "his": {"_count": 1}}, "pondering": {"_count": 1, "his": {"_count": 1}}}, "celebrity": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "does": {"_count": 1, "remember": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}}, "calling": {"_count": 62, "the": {"_count": 4, "names": {"_count": 1}, "snake": {"_count": 1}, "champions": {"_count": 1}, "falling": {"_count": 1}}, "him": {"_count": 8, "by": {"_count": 1}, "": {"_count": 3}, "a": {"_count": 2}, "V": {"_count": 1}, "back": {"_count": 1}}, "Dudley": {"_count": 1, "must": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 4, "": {"_count": 1}, "a": {"_count": 1}, "mental": {"_count": 1}, "\u2018Loony": {"_count": 1}}, "you": {"_count": 3, "a": {"_count": 1}, "now": {"_count": 1}, "\u2018the": {"_count": 1}}, "that": {"_count": 1, "owl": {"_count": 1}}, "her": {"_count": 4, "\u2018elf": {"_count": 1}, "Hermyown": {"_count": 1}, "that": {"_count": 1}, "frail": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "hurried": {"_count": 1, "good": {"_count": 1}}, "Percy": {"_count": 1, "Weatherby": {"_count": 1}}, "at": {"_count": 3, "your": {"_count": 2}, "this": {"_count": 1}}, "Dumbledores": {"_count": 1, "rumormongering": {"_count": 1}}, "Sirius": {"_count": 1, "names": {"_count": 1}}, "in": {"_count": 1, "those": {"_count": 1}}, "First": {"_count": 1, "years": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "his": {"_count": 3, "name": {"_count": 2}, "own": {"_count": 1}}, "Merry": {"_count": 1, "Christmas": {"_count": 1}}, "gruesome": {"_count": 1, "": {"_count": 1}}, "forth": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "investigate": {"_count": 1}}, "loudly": {"_count": 1, "over": {"_count": 1}}, "for": {"_count": 4, "him": {"_count": 1}, "Sirius": {"_count": 1}, "silence": {"_count": 1}, "Hermione": {"_count": 1}}, "itself": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 2, "instructions": {"_count": 1}, "": {"_count": 1}}, "Lavender": {"_count": 1, "LavLav": {"_count": 1}}, "When": {"_count": 1, "theres": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "upon": {"_count": 1, "me": {"_count": 1}}, "nevertheless": {"_count": 1, "he": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "YouKnow": {"_count": 1, "Who": {"_count": 1}}, "Rons": {"_count": 1, "name": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}}, "tunnels": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "reckons": {"_count": 1}}}, "subtle": {"_count": 1, "science": {"_count": 1, "and": {"_count": 1}}}, "science": {"_count": 1, "and": {"_count": 1, "exact": {"_count": 1}}}, "exact": {"_count": 6, "art": {"_count": 1, "of": {"_count": 1}}, "size": {"_count": 1, "and": {"_count": 1}}, "color": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "wording": {"_count": 1, "": {"_count": 1}}, "point": {"_count": 1, "where": {"_count": 1}}}, "art": {"_count": 6, "of": {"_count": 3, "potionmaking": {"_count": 1}, "Divination": {"_count": 1}, "divination": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "historian": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "potionmaking": {"_count": 9, "he": {"_count": 1, "began": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "its": {"_count": 1, "undoubtedly": {"_count": 1}}, "kit": {"_count": 1, "certain": {"_count": 1}}}, "gift": {"_count": 28, "of": {"_count": 3, "keeping": {"_count": 1}, "wood": {"_count": 1}, "fusewire": {"_count": 1}}, "with": {"_count": 1, "trolls": {"_count": 1}}, "be": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "hes": {"_count": 1, "made": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Parseltongue": {"_count": 1, "resourcefulness": {"_count": 1}}, "from": {"_count": 2, "Mr": {"_count": 1}, "Sirius": {"_count": 1}}, "beyond": {"_count": 1, "my": {"_count": 1}}, "for": {"_count": 2, "spreading": {"_count": 2}}, "up": {"_count": 1, "high": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "fer": {"_count": 1, "the": {"_count": 1}}, "herself": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "Rons": {"_count": 1}}, "any": {"_count": 1, "Death": {"_count": 1}}, "except": {"_count": 1, "powdered": {"_count": 1}}, "is": {"_count": 1, "best": {"_count": 1}}, "and": {"_count": 1, "shock": {"_count": 1}}, "wrap": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 1, "possessed": {"_count": 1}}}, "effort": {"_count": 75, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "if": {"_count": 1, "youre": {"_count": 1}}, "involved": {"_count": 1, "nearly": {"_count": 1}}, "to": {"_count": 23, "keep": {"_count": 5}, "cheer": {"_count": 1}, "stop": {"_count": 1}, "get": {"_count": 1}, "prevent": {"_count": 1}, "stem": {"_count": 1}, "drag": {"_count": 1}, "improve": {"_count": 1}, "remember": {"_count": 2}, "speed": {"_count": 1}, "free": {"_count": 1}, "steady": {"_count": 1}, "hide": {"_count": 2}, "catch": {"_count": 1}, "form": {"_count": 1}, "pull": {"_count": 1}, "control": {"_count": 1}}, "of": {"_count": 10, "dragging": {"_count": 2}, "holding": {"_count": 3}, "standing": {"_count": 1}, "keeping": {"_count": 2}, "pulling": {"_count": 1}, "will": {"_count": 1}}, "he": {"_count": 12, "broke": {"_count": 1}, "turned": {"_count": 1}, "fought": {"_count": 1}, "pulled": {"_count": 2}, "managed": {"_count": 1}, "and": {"_count": 1}, "smiled": {"_count": 1}, "said": {"_count": 1}, "sat": {"_count": 1}, "pushed": {"_count": 1}, "straightened": {"_count": 1}}, "Hermione": {"_count": 2, "put": {"_count": 1}, "seemed": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "Harry": {"_count": 2, "looked": {"_count": 1}, "forced": {"_count": 1}}, "with": {"_count": 1, "Kreacher": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}, "how": {"_count": 1, "Parvati": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "on": {"_count": 2, "your": {"_count": 2}}, "that": {"_count": 1, "there": {"_count": 1}}, "it": {"_count": 2, "seemed": {"_count": 1}, "had": {"_count": 1}}, "in": {"_count": 1, "classes": {"_count": 1}}, "after": {"_count": 1, "tracing": {"_count": 1}}, "suceeded": {"_count": 1, "in": {"_count": 1}}, "I": {"_count": 1, "put": {"_count": 1}}, "now": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "seeking": {"_count": 1, "one": {"_count": 1}}}, "beauty": {"_count": 8, "of": {"_count": 2, "the": {"_count": 2}}, "contestant": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "about": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "simmering": {"_count": 5, "cauldron": {"_count": 1, "with": {"_count": 1}}, "away": {"_count": 1, "in": {"_count": 1}}, "sending": {"_count": 1, "its": {"_count": 1}}, "had": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "shimmering": {"_count": 31, "fumes": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "strange": {"_count": 1}, "a": {"_count": 1}}, "sneering": {"_count": 1, "face": {"_count": 1}}, "words": {"_count": 1, "tom": {"_count": 1}}, "gray": {"_count": 1, "which": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "lights": {"_count": 2, "that": {"_count": 1}, "such": {"_count": 1}}, "pink": {"_count": 1, "squares": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "shamrock": {"_count": 1, "which": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "transparent": {"_count": 1, "barrier": {"_count": 1}}, "golden": {"_count": 1, "light": {"_count": 1}}, "mist": {"_count": 1, "of": {"_count": 1}}, "light": {"_count": 1, "reflected": {"_count": 1}}, "bell": {"_count": 1, "jar": {"_count": 1}}, "and": {"_count": 1, "indistinct": {"_count": 1}}, "blur": {"_count": 1, "to": {"_count": 1}}, "vapors": {"_count": 1, "": {"_count": 1}}, "shrinking": {"_count": 1, "light": {"_count": 1}}, "insubstantially": {"_count": 1, "on": {"_count": 1}}, "between": {"_count": 1, "fields": {"_count": 1}}, "spots": {"_count": 1, "of": {"_count": 1}}, "silver": {"_count": 1, "rope": {"_count": 1}}}, "fumes": {"_count": 12, "the": {"_count": 1, "delicate": {"_count": 1}}, "making": {"_count": 1, "waspish": {"_count": 1}}, "from": {"_count": 3, "Professor": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}}, "wafting": {"_count": 1, "from": {"_count": 1}}, "washed": {"_count": 1, "over": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "issuing": {"_count": 1, "from": {"_count": 1}}, "of": {"_count": 1, "car": {"_count": 1}}}, "delicate": {"_count": 15, "power": {"_count": 1, "of": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "ears": {"_count": 1, "": {"_count": 1}}, "shade": {"_count": 2, "of": {"_count": 2}}, "stress": {"_count": 1, "on": {"_count": 1}}, "silver": {"_count": 4, "instruments": {"_count": 3}, "magical": {"_count": 1}}, "tables": {"_count": 1, "and": {"_count": 1}}, "looking": {"_count": 1, "circlet": {"_count": 1}}}, "liquids": {"_count": 1, "that": {"_count": 1, "creep": {"_count": 1}}}, "creep": {"_count": 10, "through": {"_count": 1, "human": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 1}, "for": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "into": {"_count": 1}}, "upward": {"_count": 1, "again": {"_count": 1}}, "very": {"_count": 1, "slowly": {"_count": 1}}}, "veins": {"_count": 15, "bewitching": {"_count": 1, "the": {"_count": 1}}, "throbbing": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 2, "as": {"_count": 1}, "liver": {"_count": 1}}, "runs": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "wouldnt": {"_count": 1}}, "What": {"_count": 1, "blood": {"_count": 1}}, "chilling": {"_count": 1, "him": {"_count": 1}}, "like": {"_count": 1, "venom": {"_count": 1}}, "to": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "connecting": {"_count": 1, "him": {"_count": 1}}, "Harry": {"_count": 1, "Lilys": {"_count": 1}}}, "bewitching": {"_count": 9, "the": {"_count": 2, "mind": {"_count": 1}, "doors": {"_count": 1}}, "several": {"_count": 1, "snowballs": {"_count": 1}}, "things": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 1, "Muggle": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "snowballs": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 1, "or": {"_count": 1}}, "its": {"_count": 1, "whereabouts": {"_count": 1}}}, "ensnaring": {"_count": 1, "the": {"_count": 1, "senses": {"_count": 1}}}, "senses": {"_count": 23, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "and": {"_count": 1, "ran": {"_count": 1}}, "he": {"_count": 1, "didnt": {"_count": 1}}, "vibrating": {"_count": 1, "taking": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "o": {"_count": 1, "direction": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "Harry": {"_count": 1, "realized": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "seemed": {"_count": 1, "more": {"_count": 1}}, "but": {"_count": 1, "hobbled": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "straining": {"_count": 1, "expecting": {"_count": 1}}, "to": {"_count": 1, "explore": {"_count": 1}}}, "fame": {"_count": 8, "brew": {"_count": 1, "glory": {"_count": 1}}, "clearly": {"_count": 1, "isnt": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "by": {"_count": 1, "tricking": {"_count": 1}}, "had": {"_count": 1, "begun": {"_count": 1}}}, "brew": {"_count": 6, "glory": {"_count": 1, "even": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "them": {"_count": 1, "carefully": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "the": {"_count": 1, "most": {"_count": 1}}, "me": {"_count": 1, "up": {"_count": 1}}}, "stopper": {"_count": 5, "death": {"_count": 1, "if": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}}, "dunderheads": {"_count": 1, "as": {"_count": 1, "I": {"_count": 1}}}, "speech": {"_count": 42, "": {"_count": 15, ".": {"_count": 13}, "!": {"_count": 2}}, "by": {"_count": 1, "heart": {"_count": 1}}, "about": {"_count": 2, "his": {"_count": 1}, "Cedric": {"_count": 1}}, "Id": {"_count": 1, "better": {"_count": 1}}, "next": {"_count": 1, "second": {"_count": 1}}, "bubble": {"_count": 1, "had": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 3}, "which": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "announcing": {"_count": 1, "Voldemorts": {"_count": 1}}, "making": {"_count": 1, "but": {"_count": 1}}, "not": {"_count": 1, "having": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "then": {"_count": 1, "Ron": {"_count": 1}}, "or": {"_count": 1, "unable": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "and": {"_count": 1, "mobility": {"_count": 1}}, "but": {"_count": 3, "why": {"_count": 1}, "then": {"_count": 1}, "with": {"_count": 1}}, "would": {"_count": 1, "return": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "snakes": {"_count": 1}}, "for": {"_count": 1, "after": {"_count": 1}}, "was": {"_count": 1, "lost": {"_count": 1}}}, "exchanged": {"_count": 43, "looks": {"_count": 13, "with": {"_count": 1}, "full": {"_count": 2}, "of": {"_count": 3}, "": {"_count": 3}, "at": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}}, "dark": {"_count": 2, "looks": {"_count": 2}}, "nervous": {"_count": 2, "glances": {"_count": 1}, "looks": {"_count": 1}}, "tense": {"_count": 1, "looks": {"_count": 1}}, "excited": {"_count": 1, "looks": {"_count": 1}}, "panicstricken": {"_count": 1, "looks": {"_count": 1}}, "a": {"_count": 3, "dark": {"_count": 1}, "last": {"_count": 1}, "look": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "uncomfortable": {"_count": 1, "looks": {"_count": 1}}, "glances": {"_count": 1, "and": {"_count": 1}}, "darkly": {"_count": 1, "significant": {"_count": 1}}, "another": {"_count": 2, "nervous": {"_count": 1}, "look": {"_count": 1}}, "smirks": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 1, "panicked": {"_count": 1}}, "gloomy": {"_count": 2, "looks": {"_count": 2}}, "worried": {"_count": 1, "looks": {"_count": 1}}, "uneasy": {"_count": 1, "looks": {"_count": 1}}, "awestruck": {"_count": 1, "looks": {"_count": 1}}, "significant": {"_count": 1, "looks": {"_count": 1}}, "lastminute": {"_count": 1, "goodbyes": {"_count": 1}}, "miserable": {"_count": 1, "looks": {"_count": 1}}, "an": {"_count": 1, "incredulous": {"_count": 1}}, "the": {"_count": 1, "dream": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "loving": {"_count": 1, "possibly": {"_count": 1}}}, "proving": {"_count": 8, "that": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "it": {"_count": 1, "there": {"_count": 1}}, "tricky": {"_count": 1, "though": {"_count": 1}}, "very": {"_count": 1, "difficult": {"_count": 1}}, "stormy": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "difficult": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}}, "dunderhead": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "powdered": {"_count": 9, "root": {"_count": 1, "of": {"_count": 1}}, "spine": {"_count": 1, "of": {"_count": 1}}, "horn": {"_count": 1, "of": {"_count": 1}}, "beetles": {"_count": 1, "into": {"_count": 1}}, "moonstone": {"_count": 1, "stir": {"_count": 1}}, "griffin": {"_count": 1, "claw": {"_count": 1}}, "dragon": {"_count": 2, "claw": {"_count": 2}}, "glass": {"_count": 1, "which": {"_count": 1}}}, "root": {"_count": 9, "of": {"_count": 3, "asphodel": {"_count": 1}, "what": {"_count": 1}, "this": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "such": {"_count": 1}}, "swaying": {"_count": 1, "over": {"_count": 1}}}, "asphodel": {"_count": 2, "to": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 1, "wormwood": {"_count": 1}}}, "infusion": {"_count": 5, "of": {"_count": 3, "wormwood": {"_count": 1}, "what": {"_count": 1}, "Gurdyroots": {"_count": 1}}, "and": {"_count": 1, "drank": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wormwood": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "make": {"_count": 1, "a": {"_count": 1}}}, "Powdered": {"_count": 1, "root": {"_count": 1, "of": {"_count": 1}}}, "curled": {"_count": 60, "into": {"_count": 7, "a": {"_count": 3}, "ashes": {"_count": 1}, "fists": {"_count": 2}, "flames": {"_count": 1}}, "up": {"_count": 19, "on": {"_count": 5}, "in": {"_count": 4}, "and": {"_count": 2}, "purring": {"_count": 1}, "": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 1}, "under": {"_count": 2}, "at": {"_count": 1}, "a": {"_count": 1}}, "around": {"_count": 2, "his": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 2, "empty": {"_count": 1}, "tangled": {"_count": 1}}, "the": {"_count": 2, "corners": {"_count": 1}, "lipless": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 1}, "a": {"_count": 3}, "triumph": {"_count": 1}, "cold": {"_count": 1}, "fists": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Snapes": {"_count": 1, "thin": {"_count": 1}}, "over": {"_count": 1, "its": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 5}}, "gray": {"_count": 1, "hair": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "uncomfortably": {"_count": 1, "under": {"_count": 1}}, "absurdly": {"_count": 1, "into": {"_count": 1}}, "beneath": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "backward": {"_count": 1, "on": {"_count": 1}}, "upon": {"_count": 2, "the": {"_count": 2}}}, "Tut": {"_count": 6, "tut": {"_count": 6, "fame": {"_count": 1}, "tut": {"_count": 1}, "hardly": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}}, "tut": {"_count": 7, "fame": {"_count": 1, "clearly": {"_count": 1}}, "tut": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "hardly": {"_count": 1, "any": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}}, "bezoar": {"_count": 18, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "was": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "meaning": {"_count": 1, "that": {"_count": 1}}, "down": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "clutched": {"_count": 1, "in": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "holding": {"_count": 1}}, "would": {"_count": 1, "certainly": {"_count": 1}}, "all": {"_count": 1, "by": {"_count": 1}}, "to": {"_count": 1, "hand": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "she": {"_count": 1, "sobbed": {"_count": 1}}, "tip": {"_count": 1, "": {"_count": 1}}}, "faintest": {"_count": 16, "idea": {"_count": 5, "what": {"_count": 4}, "where": {"_count": 1}}, "sound": {"_count": 1, "": {"_count": 1}}, "trace": {"_count": 4, "of": {"_count": 4}}, "inkling": {"_count": 1, "that": {"_count": 1}}, "slimmest": {"_count": 1, "wildest": {"_count": 1}}, "sneer": {"_count": 1, "": {"_count": 1}}, "pop": {"_count": 1, "as": {"_count": 1}}, "most": {"_count": 1, "distant": {"_count": 1}}, "possibility": {"_count": 1, "that": {"_count": 1}}}, "Thought": {"_count": 30, "you": {"_count": 3, "wouldnt": {"_count": 1}, "lotd": {"_count": 1}, "didnt": {"_count": 1}}, "hed": {"_count": 3, "make": {"_count": 1}, "jus": {"_count": 1}, "be": {"_count": 1}}, "Id": {"_count": 2, "apply": {"_count": 1}, "send": {"_count": 1}}, "it": {"_count": 1, "might": {"_count": 1}}, "I": {"_count": 2, "was": {"_count": 1}, "might": {"_count": 1}}, "o": {"_count": 1, "jus": {"_count": 1}}, "he": {"_count": 1, "oughta": {"_count": 1}}, "everyone": {"_count": 1, "d": {"_count": 1}}, "wed": {"_count": 6, "make": {"_count": 1}, "jus": {"_count": 1}, "have": {"_count": 1}, "come": {"_count": 1}, "see": {"_count": 1}, "go": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "people": {"_count": 1, "might": {"_count": 1}}, "never": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 2, "must": {"_count": 1}, "should": {"_count": 1}}, "wrong": {"_count": 2, "then": {"_count": 2}}, "youd": {"_count": 1, "lure": {"_count": 1}}, "the": {"_count": 1, "sun": {"_count": 1}}}, "ignoring": {"_count": 51, "Hermiones": {"_count": 5, "quivering": {"_count": 1}, "protests": {"_count": 1}, "affronted": {"_count": 1}, "frequent": {"_count": 1}, "embarrassment": {"_count": 1}}, "Rons": {"_count": 3, "and": {"_count": 1}, "frantic": {"_count": 1}, "gasp": {"_count": 1}}, "the": {"_count": 14, "large": {"_count": 1}, "people": {"_count": 1}, "renewed": {"_count": 1}, "huffy": {"_count": 1}, "Slytherins": {"_count": 1}, "rising": {"_count": 1}, "scandalized": {"_count": 1}, "Fat": {"_count": 2}, "mutterings": {"_count": 1}, "portraits": {"_count": 1}, "amazed": {"_count": 1}, "bangs": {"_count": 1}, "jets": {"_count": 1}}, "her": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Harrys": {"_count": 2, "and": {"_count": 1}, "interruption": {"_count": 1}}, "Nevilles": {"_count": 1, "snuffling": {"_count": 1}}, "this": {"_count": 2, "and": {"_count": 1}, "interruption": {"_count": 1}}, "Hermione": {"_count": 3, "": {"_count": 3}}, "Ron": {"_count": 8, "": {"_count": 6}, "who": {"_count": 1}, "and": {"_count": 1}}, "misleading": {"_count": 1, "directions": {"_count": 1}}, "Black": {"_count": 1, "Harry": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "Wormtails": {"_count": 1, "uncontrollable": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "return": {"_count": 1}, "silent": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "Flitwicks": {"_count": 1, "and": {"_count": 1}}}, "Hermiones": {"_count": 237, "quivering": {"_count": 1, "hand": {"_count": 1}}, "eyes": {"_count": 4, "were": {"_count": 2}, "slid": {"_count": 1}, "narrow": {"_count": 1}}, "jaws": {"_count": 1, "dropped": {"_count": 1}}, "on": {"_count": 1, "Snapes": {"_count": 1}}, "lip": {"_count": 1, "trembled": {"_count": 1}}, "owl": {"_count": 1, "": {"_count": 1}}, "neat": {"_count": 1, "writing": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "letter": {"_count": 1, "and": {"_count": 1}}, "parents": {"_count": 3, "who": {"_count": 1}, "were": {"_count": 1}, "whom": {"_count": 1}}, "jug": {"_count": 1, "spraying": {"_count": 1}}, "hand": {"_count": 13, "was": {"_count": 5}, "narrowly": {"_count": 1}, "flew": {"_count": 1}, "shook": {"_count": 1}, "shot": {"_count": 1}, "punched": {"_count": 1}, "as": {"_count": 2}, "and": {"_count": 1}}, "showing": {"_count": 1, "them": {"_count": 1}}, "bewildered": {"_count": 1, "faces": {"_count": 1}}, "done": {"_count": 1, "four": {"_count": 1}}, "signal": {"_count": 1, "and": {"_count": 1}}, "voices": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "stall": {"_count": 1, "": {"_count": 1}}, "bed": {"_count": 2, "to": {"_count": 1}, "Neville": {"_count": 1}}, "bedside": {"_count": 1, "table": {"_count": 1}}, "pillow": {"_count": 1, "": {"_count": 1}}, "empty": {"_count": 1, "seat": {"_count": 1}}, "face": {"_count": 8, "": {"_count": 2}, "she": {"_count": 1}, "was": {"_count": 2}, "became": {"_count": 1}, "if": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "grinning": {"_count": 1, "more": {"_count": 1}}, "there": {"_count": 1, "as": {"_count": 1}}, "voice": {"_count": 10, "": {"_count": 2}, "from": {"_count": 2}, "while": {"_count": 1}, "became": {"_count": 1}, "now": {"_count": 1}, "urging": {"_count": 1}, "rang": {"_count": 1}, "came": {"_count": 1}}, "copy": {"_count": 1, "and": {"_count": 1}}, "bag": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "leg": {"_count": 1, "gave": {"_count": 1}}, "faces": {"_count": 3, "appeared": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "right": {"_count": 3, "you": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}, "impossible": {"_count": 1, "schedule": {"_count": 1}}, "table": {"_count": 2, "": {"_count": 2}}, "friendship": {"_count": 1, "": {"_count": 1}}, "having": {"_count": 1, "eh": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "wands": {"_count": 2, "shot": {"_count": 1}, "and": {"_count": 1}}, "robes": {"_count": 3, "": {"_count": 1}, "frequently": {"_count": 1}, "and": {"_count": 1}}, "scream": {"_count": 3, "that": {"_count": 1}, "mingled": {"_count": 1}, "Rons": {"_count": 1}}, "hiding": {"_count": 1, "place": {"_count": 1}}, "wrist": {"_count": 2, "": {"_count": 2}}, "great": {"_count": 1, "surprise": {"_count": 1}}, "advice": {"_count": 2, "Go": {"_count": 1}, "and": {"_count": 1}}, "house": {"_count": 1, "with": {"_count": 1}}, "arriving": {"_count": 1, "this": {"_count": 1}}, "cat": {"_count": 2, "Crookshanks": {"_count": 2}}, "bandylegged": {"_count": 2, "ginger": {"_count": 2}}, "benefit": {"_count": 1, "his": {"_count": 1}}, "hands": {"_count": 4, "": {"_count": 2}, "were": {"_count": 1}, "leapt": {"_count": 1}}, "a": {"_count": 1, "witch": {"_count": 1}}, "and": {"_count": 3, "squinting": {"_count": 1}, "Fleurs": {"_count": 1}, "Ginnys": {"_count": 1}}, "words": {"_count": 2, "they": {"_count": 1}, "about": {"_count": 1}}, "reactions": {"_count": 1, "were": {"_count": 1}}, "reappearance": {"_count": 1, "with": {"_count": 1}}, "arrival": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "by": {"_count": 1}}, "mouth": {"_count": 1, "fell": {"_count": 1}}, "hair": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "story": {"_count": 1, "anyway": {"_count": 1}}, "obsessed": {"_count": 1, "with": {"_count": 1}}, "bad": {"_count": 1, "moods": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}, "answers": {"_count": 1, "": {"_count": 1}}, "already": {"_count": 1, "said": {"_count": 1}}, "protests": {"_count": 1, "seized": {"_count": 1}}, "notes": {"_count": 2, "before": {"_count": 1}, "on": {"_count": 1}}, "potion": {"_count": 2, "however": {"_count": 1}, "he": {"_count": 1}}, "mute": {"_count": 1, "attempt": {"_count": 1}}, "elf": {"_count": 1, "hats": {"_count": 1}}, "dire": {"_count": 1, "warnings": {"_count": 1}}, "quill": {"_count": 2, "scratching": {"_count": 1}, "": {"_count": 1}}, "affronted": {"_count": 1, "look": {"_count": 1}}, "Daily": {"_count": 2, "Prophet": {"_count": 2}}, "direction": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "seen": {"_count": 1, "this": {"_count": 1}}, "allowed": {"_count": 1, "in": {"_count": 1}}, "frequent": {"_count": 1, "glares": {"_count": 1}}, "been": {"_count": 2, "leaving": {"_count": 1}, "doing": {"_count": 1}}, "whispered": {"_count": 1, "in": {"_count": 1}}, "expression": {"_count": 3, "cleared": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 1}}, "mug": {"_count": 1, "": {"_count": 1}}, "slight": {"_count": 1, "frown": {"_count": 1}}, "explanation": {"_count": 1, "had": {"_count": 1}}, "shes": {"_count": 1, "got": {"_count": 1}}, "handwriting": {"_count": 2, "on": {"_count": 1}, "The": {"_count": 1}}, "shoulder": {"_count": 5, "instead": {"_count": 1}, "which": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}, "I": {"_count": 1}}, "least": {"_count": 1, "favorite": {"_count": 1}}, "Patronus": {"_count": 1, "a": {"_count": 1}}, "jinxing": {"_count": 1, "ability": {"_count": 1}}, "idea": {"_count": 1, "Dont": {"_count": 1}}, "chair": {"_count": 2, "": {"_count": 2}}, "almost": {"_count": 1, "continual": {"_count": 1}}, "delight": {"_count": 1, "missed": {"_count": 1}}, "teacup": {"_count": 1, "jogged": {"_count": 1}}, "name": {"_count": 1, "was": {"_count": 1}}, "wand": {"_count": 12, "too": {"_count": 1}, "from": {"_count": 1}, "at": {"_count": 2}, "held": {"_count": 1}, "hard": {"_count": 1}, "": {"_count": 2}, "on": {"_count": 1}, "and": {"_count": 2}, "high": {"_count": 1}}, "chest": {"_count": 1, "she": {"_count": 1}}, "arms": {"_count": 4, "glared": {"_count": 1}, "and": {"_count": 1}, "it": {"_count": 1}, "great": {"_count": 1}}, "limp": {"_count": 1, "form": {"_count": 1}}, "weight": {"_count": 1, "": {"_count": 1}}, "fiery": {"_count": 1, "crosses": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "wellpracticed": {"_count": 1, "hand": {"_count": 1}}, "embarrassment": {"_count": 1, "": {"_count": 1}}, "canaries": {"_count": 1, "whizzed": {"_count": 1}}, "bird": {"_count": 1, "attack": {"_count": 1}}, "schedule": {"_count": 1, "was": {"_count": 1}}, "mania": {"_count": 1, "for": {"_count": 1}}, "attitudes": {"_count": 1, "Harry": {"_count": 1}}, "territory": {"_count": 1, "than": {"_count": 1}}, "help": {"_count": 1, "but": {"_count": 1}}, "laps": {"_count": 1, "": {"_count": 1}}, "eye": {"_count": 1, "and": {"_count": 1}}, "gazes": {"_count": 1, "as": {"_count": 1}}, "mind": {"_count": 1, "he": {"_count": 1}}, "slow": {"_count": 1, "deep": {"_count": 1}}, "cheeks": {"_count": 1, "as": {"_count": 1}}, "opinions": {"_count": 1, "when": {"_count": 1}}, "tension": {"_count": 1, "and": {"_count": 1}}, "anxious": {"_count": 1, "face": {"_count": 1}}, "ear": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "whereabouts": {"_count": 1, "": {"_count": 1}}, "theory": {"_count": 1, "not": {"_count": 1}}, "shoulders": {"_count": 1, "and": {"_count": 1}}, "pinch": {"_count": 1, "to": {"_count": 1}}, "offer": {"_count": 1, "to": {"_count": 1}}, "muffled": {"_count": 1, "voice": {"_count": 1}}, "anger": {"_count": 1, "to": {"_count": 1}}, "sulkiness": {"_count": 1, "could": {"_count": 1}}, "baleful": {"_count": 1, "presence": {"_count": 1}}, "various": {"_count": 1, "wanderings": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "breathing": {"_count": 1, "fast": {"_count": 1}}, "jinx": {"_count": 1, "": {"_count": 1}}, "throat": {"_count": 1, "Harry": {"_count": 1}}, "support": {"_count": 1, "made": {"_count": 1}}, "united": {"_count": 1, "voices": {"_count": 1}}, "names": {"_count": 1, "anywhere": {"_count": 1}}, "was": {"_count": 1, "singed": {"_count": 1}}, "otter": {"_count": 1, "twist": {"_count": 1}}, "heads": {"_count": 1, "The": {"_count": 1}}}, "monkshood": {"_count": 2, "and": {"_count": 2, "wolfsbane": {"_count": 2}}}, "wolfsbane": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "they": {"_count": 1, "are": {"_count": 1}}}, "stretching": {"_count": 32, "toward": {"_count": 2, "the": {"_count": 2}}, "out": {"_count": 9, "on": {"_count": 1}, "his": {"_count": 4}, "her": {"_count": 1}, "a": {"_count": 3}}, "and": {"_count": 2, "yawning": {"_count": 1}, "smiling": {"_count": 1}}, "his": {"_count": 2, "arm": {"_count": 1}, "arms": {"_count": 1}}, "wide": {"_count": 1, "wide": {"_count": 1}}, "the": {"_count": 2, "four": {"_count": 1}, "truth": {"_count": 1}}, "before": {"_count": 1, "Harrys": {"_count": 1}}, "even": {"_count": 1, "wider": {"_count": 1}}, "her": {"_count": 3, "wide": {"_count": 2}, "toadlike": {"_count": 1}}, "from": {"_count": 2, "temple": {"_count": 1}, "around": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "luxuriously": {"_count": 1, "as": {"_count": 1}}, "ahead": {"_count": 2, "of": {"_count": 1}, "for": {"_count": 1}}, "to": {"_count": 1, "earth": {"_count": 1}}}, "dungeon": {"_count": 87, "ceiling": {"_count": 1, "": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 19}}, "an": {"_count": 1, "hour": {"_count": 1}}, "five": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 5, "full": {"_count": 1}, "a": {"_count": 1}, "dissolving": {"_count": 1}, "ringing": {"_count": 1}, "most": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "wall": {"_count": 1, "burst": {"_count": 1}}, "the": {"_count": 1, "front": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "fortunately": {"_count": 1, "not": {"_count": 1}}, "common": {"_count": 2, "room": {"_count": 2}}, "his": {"_count": 1, "right": {"_count": 1}}, "Ron": {"_count": 1, "finally": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "after": {"_count": 1, "lunch": {"_count": 1}}, "and": {"_count": 8, "slammed": {"_count": 1}, "the": {"_count": 1}, "had": {"_count": 1}, "made": {"_count": 1}, "Harry": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}, "walked": {"_count": 1}}, "Malfoy": {"_count": 1, "turned": {"_count": 1}}, "door": {"_count": 12, "burst": {"_count": 1}, "behind": {"_count": 2}, "": {"_count": 4}, "opened": {"_count": 3}, "creaking": {"_count": 1}, "with": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "as": {"_count": 2, "usual": {"_count": 1}, "it": {"_count": 1}}, "at": {"_count": 2, "Harry": {"_count": 1}, "Hogwarts": {"_count": 1}}, "rang": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "a": {"_count": 1}}, "opened": {"_count": 1, "and": {"_count": 1}}, "returned": {"_count": 1, "": {"_count": 1}}, "dissolved": {"_count": 2, "again": {"_count": 1}, "around": {"_count": 1}}, "floor": {"_count": 2, "": {"_count": 2}}, "raised": {"_count": 1, "their": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "which": {"_count": 1, "gave": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "classroom": {"_count": 1, "that": {"_count": 1}}, "preparing": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "doors": {"_count": 1, "on": {"_count": 1}}, "As": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}}, "Seamuss": {"_count": 14, "eye": {"_count": 1, "and": {"_count": 1}}, "cauldron": {"_count": 1, "into": {"_count": 1}}, "empty": {"_count": 1, "bed": {"_count": 1}}, "bed": {"_count": 1, "right": {"_count": 1}}, "and": {"_count": 1, "Rons": {"_count": 1}}, "anyway": {"_count": 1, "he": {"_count": 1}}, "mother": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "robes": {"_count": 1, "whipped": {"_count": 1}}, "expression": {"_count": 1, "which": {"_count": 1}}, "head": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "very": {"_count": 1, "first": {"_count": 1}}, "face": {"_count": 1, "was": {"_count": 1}}}, "Sit": {"_count": 24, "down": {"_count": 20, "he": {"_count": 1}, "said": {"_count": 7}, "Ill": {"_count": 1}, "Harry": {"_count": 3}, "": {"_count": 2}, "sit": {"_count": 2}, "you": {"_count": 1}, "Potter": {"_count": 2}, "dear": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "my": {"_count": 1, "children": {"_count": 1}}, "said": {"_count": 2, "Snape": {"_count": 1}, "Umbridge": {"_count": 1}}}, "information": {"_count": 131, "Potter": {"_count": 1, "asphodel": {"_count": 1}}, "Harry": {"_count": 2, "arrived": {"_count": 1}, "youll": {"_count": 1}}, "": {"_count": 24, ".": {"_count": 20}, "?": {"_count": 3}, "!": {"_count": 1}}, "for": {"_count": 4, "you": {"_count": 1}, "us": {"_count": 1}, "our": {"_count": 1}, "him": {"_count": 1}}, "is": {"_count": 2, "hidden": {"_count": 1}, "faulty": {"_count": 1}}, "to": {"_count": 6, "YouKnowWho": {"_count": 1}, "Lord": {"_count": 1}, "the": {"_count": 1}, "come": {"_count": 1}, "make": {"_count": 1}, "Voldemort": {"_count": 1}}, "that": {"_count": 7, "a": {"_count": 1}, "Sirius": {"_count": 1}, "Black": {"_count": 1}, "is": {"_count": 1}, "had": {"_count": 2}, "made": {"_count": 1}}, "the": {"_count": 2, "Firebolt": {"_count": 1}, "crucial": {"_count": 1}}, "you": {"_count": 2, "conceal": {"_count": 1}, "can": {"_count": 1}}, "about": {"_count": 8, "the": {"_count": 5}, "Voldemorts": {"_count": 1}, "Hagrid": {"_count": 1}, "Dirk": {"_count": 1}}, "was": {"_count": 4, "invaluable": {"_count": 1}, "Herbology": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}}, "I": {"_count": 4, "extracted": {"_count": 1}, "say": {"_count": 1}, "have": {"_count": 1}, "must": {"_count": 1}}, "until": {"_count": 2, "such": {"_count": 2}}, "with": {"_count": 1, "anybody": {"_count": 1}}, "on": {"_count": 16, "him": {"_count": 1}, "the": {"_count": 4}, "purpose": {"_count": 1}, "to": {"_count": 1}, "motorcycles": {"_count": 1}, "Dumbledore": {"_count": 5}, "this": {"_count": 1}, "where": {"_count": 1}, "you": {"_count": 1}}, "he": {"_count": 3, "hasnt": {"_count": 1}, "did": {"_count": 1}, "glanced": {"_count": 1}}, "outside": {"_count": 1, "Hogwarts": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 1}, "possible": {"_count": 1}, "to": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "from": {"_count": 4, "inside": {"_count": 2}, "her": {"_count": 1}, "another": {"_count": 1}}, "But": {"_count": 1, "Travers": {"_count": 1}}, "of": {"_count": 3, "course": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}}, "Bertha": {"_count": 1, "had": {"_count": 1}}, "snarled": {"_count": 1, "Dudley": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "private": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "theyll": {"_count": 1}}, "relating": {"_count": 2, "to": {"_count": 2}}, "when": {"_count": 1, "he": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "have": {"_count": 1, "we": {"_count": 1}}, "has": {"_count": 2, "been": {"_count": 1}, "included": {"_count": 1}}, "however": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 2, "more": {"_count": 2}}, "very": {"_count": 1, "very": {"_count": 1}}, "comes": {"_count": 1, "from": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "in": {"_count": 1, "exchange": {"_count": 1}}, "Elphias": {"_count": 1, "my": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 1, "Griphook": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "Hermione": {"_count": 1}}, "while": {"_count": 1, "withholding": {"_count": 1}}}, "Draught": {"_count": 11, "of": {"_count": 5, "Living": {"_count": 3}, "Peace": {"_count": 2}}, "in": {"_count": 1, "my": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "from": {"_count": 1, "Madam": {"_count": 1}}, "quite": {"_count": 1, "easily": {"_count": 1}}}, "Living": {"_count": 5, "Death": {"_count": 3, "": {"_count": 2}, "never": {"_count": 1}}, "proof": {"_count": 1, "of": {"_count": 1}}, "after": {"_count": 1, "death": {"_count": 1}}}, "Death": {"_count": 565, "": {"_count": 13, ".": {"_count": 9}, "!": {"_count": 2}, "?": {"_count": 2}}, "Omens": {"_count": 2, "What": {"_count": 1}, "in": {"_count": 1}}, "Eaters": {"_count": 360, "away": {"_count": 3}, "": {"_count": 50}, "why": {"_count": 1}, "they": {"_count": 1}, "or": {"_count": 2}, "who": {"_count": 11}, "are": {"_count": 4}, "seem": {"_count": 2}, "and": {"_count": 14}, "whod": {"_count": 2}, "but": {"_count": 2}, "said": {"_count": 6}, "fell": {"_count": 2}, "behind": {"_count": 1}, "he": {"_count": 2}, "stirred": {"_count": 1}, "would": {"_count": 3}, "were": {"_count": 23}, "cared": {"_count": 1}, "laughter": {"_count": 2}, "stood": {"_count": 2}, "closed": {"_count": 1}, "should": {"_count": 1}, "outnumbered": {"_count": 1}, "laughed": {"_count": 6}, "circled": {"_count": 1}, "paround": {"_count": 1}, "flitted": {"_count": 1}, "aside": {"_count": 1}, "running": {"_count": 2}, "came": {"_count": 3}, "what": {"_count": 1}, "Apparating": {"_count": 1}, "thirteen": {"_count": 1}, "to": {"_count": 7}, "perhaps": {"_count": 1}, "keeping": {"_count": 1}, "was": {"_count": 2}, "a": {"_count": 1}, "if": {"_count": 3}, "its": {"_count": 1}, "as": {"_count": 2}, "hood": {"_count": 1}, "like": {"_count": 1}, "found": {"_count": 2}, "again": {"_count": 1}, "Well": {"_count": 1}, "scars": {"_count": 1}, "around": {"_count": 1}, "had": {"_count": 14}, "on": {"_count": 1}, "whose": {"_count": 2}, "spoken": {"_count": 1}, "escape": {"_count": 1}, "there": {"_count": 1}, "Still": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 5}, "call": {"_count": 1}, "did": {"_count": 3}, "wanted": {"_count": 1}, "beside": {"_count": 1}, "let": {"_count": 1}, "robes": {"_count": 2}, "bend": {"_count": 1}, "wands": {"_count": 3}, "shoulder": {"_count": 1}, "head": {"_count": 1}, "come": {"_count": 1}, "sped": {"_count": 1}, "turned": {"_count": 1}, "shot": {"_count": 1}, "two": {"_count": 1}, "themselves": {"_count": 1}, "within": {"_count": 1}, "all": {"_count": 1}, "seized": {"_count": 1}, "mask": {"_count": 1}, "nearest": {"_count": 1}, "ran": {"_count": 2}, "grouped": {"_count": 1}, "have": {"_count": 6}, "contained": {"_count": 1}, "gained": {"_count": 1}, "killed": {"_count": 1}, "you": {"_count": 1}, "knew": {"_count": 2}, "now": {"_count": 1}, "alongside": {"_count": 1}, "masquerading": {"_count": 1}, "may": {"_count": 1}, "really": {"_count": 1}, "benefit": {"_count": 1}, "want": {"_count": 1}, "HeWho": {"_count": 1}, "with": {"_count": 1}, "Siriuss": {"_count": 1}, "known": {"_count": 1}, "secret": {"_count": 1}, "residence": {"_count": 1}, "at": {"_count": 2}, "cant": {"_count": 1}, "claiming": {"_count": 1}, "before": {"_count": 1}, "after": {"_count": 1}, "left": {"_count": 1}, "here": {"_count": 1}, "distant": {"_count": 1}, "into": {"_count": 1}, "including": {"_count": 1}, "retreating": {"_count": 1}, "escaping": {"_count": 1}, "runnin": {"_count": 1}, "Hagrid": {"_count": 1}, "dead": {"_count": 1}, "arrived": {"_count": 3}, "side": {"_count": 1}, "can": {"_count": 1}, "out": {"_count": 2}, "minutes": {"_count": 1}, "She": {"_count": 1}, "seemed": {"_count": 1}, "jinx": {"_count": 1}, "thats": {"_count": 1}, "spat": {"_count": 1}, "leapt": {"_count": 1}, "dementors": {"_count": 1}, "patrolling": {"_count": 1}, "we": {"_count": 1}, "will": {"_count": 2}, "scattering": {"_count": 1}, "swerved": {"_count": 1}, "swerve": {"_count": 1}, "Harry": {"_count": 2}, "emerged": {"_count": 1}, "shout": {"_count": 1}, "loads": {"_count": 1}, "pursuing": {"_count": 2}, "witnessed": {"_count": 1}, "frankly": {"_count": 1}, "straight": {"_count": 1}, "took": {"_count": 2}, "the": {"_count": 1}, "probably": {"_count": 1}, "spells": {"_count": 1}, "back": {"_count": 1}, "could": {"_count": 1}, "for": {"_count": 1}, "outside": {"_count": 1}, "searched": {"_count": 1}, "got": {"_count": 1}, "might": {"_count": 1}, "watching": {"_count": 2}, "werent": {"_count": 1}, "tortured": {"_count": 1}, "then": {"_count": 1}, "this": {"_count": 1}, "mean": {"_count": 1}, "cornered": {"_count": 1}, "find": {"_count": 1}, "yeah": {"_count": 1}, "know": {"_count": 1}, "dashed": {"_count": 1}, "waved": {"_count": 1}, "missed": {"_count": 1}, "searching": {"_count": 1}, "worry": {"_count": 1}, "strode": {"_count": 1}, "fighting": {"_count": 1}, "youve": {"_count": 1}, "must": {"_count": 2}, "His": {"_count": 1}, "Stunning": {"_count": 1}, "both": {"_count": 1}, "momentary": {"_count": 1}, "everywhere": {"_count": 1}, "wand": {"_count": 1}, "rose": {"_count": 1}, "moved": {"_count": 1}, "crowed": {"_count": 1}, "called": {"_count": 1}, "outnumber": {"_count": 1}, "until": {"_count": 1}, "raised": {"_count": 1}, "everyone": {"_count": 1}, "alike": {"_count": 1}, "their": {"_count": 1}}, "Eater": {"_count": 162, "once": {"_count": 1}, "": {"_count": 23}, "by": {"_count": 1}, "who": {"_count": 5}, "not": {"_count": 1}, "than": {"_count": 1}, "on": {"_count": 3}, "lay": {"_count": 1}, "sent": {"_count": 1}, "to": {"_count": 5}, "stationed": {"_count": 1}, "had": {"_count": 8}, "at": {"_count": 1}, "here": {"_count": 1}, "is": {"_count": 1}, "responsible": {"_count": 1}, "we": {"_count": 1}, "impersonating": {"_count": 1}, "after": {"_count": 1}, "Shes": {"_count": 1}, "said": {"_count": 3}, "wasnt": {"_count": 1}, "shrieked": {"_count": 1}, "looking": {"_count": 1}, "lunged": {"_count": 1}, "he": {"_count": 5}, "however": {"_count": 1}, "around": {"_count": 1}, "in": {"_count": 7}, "as": {"_count": 3}, "shook": {"_count": 1}, "staggering": {"_count": 1}, "nearest": {"_count": 2}, "raised": {"_count": 1}, "Hermione": {"_count": 1}, "kicked": {"_count": 1}, "blundered": {"_count": 1}, "was": {"_count": 7}, "shouted": {"_count": 2}, "holding": {"_count": 1}, "dropped": {"_count": 1}, "some": {"_count": 1}, "keeled": {"_count": 1}, "lurched": {"_count": 1}, "days": {"_count": 1}, "I": {"_count": 1}, "dear": {"_count": 1}, "might": {"_count": 1}, "pals": {"_count": 1}, "and": {"_count": 7}, "cronies": {"_count": 1}, "activity": {"_count": 1}, "hell": {"_count": 1}, "only": {"_count": 1}, "how": {"_count": 1}, "would": {"_count": 1}, "sharply": {"_count": 1}, "suddenly": {"_count": 1}, "last": {"_count": 1}, "buckled": {"_count": 1}, "Amycus": {"_count": 1}, "Alecto": {"_count": 1}, "behind": {"_count": 2}, "obeyed": {"_count": 1}, "or": {"_count": 1}, "shot": {"_count": 1}, "swerved": {"_count": 1}, "appeared": {"_count": 1}, "falling": {"_count": 1}, "swooping": {"_count": 1}, "yelled": {"_count": 1}, "with": {"_count": 2}, "fell": {"_count": 1}, "tailing": {"_count": 1}, "everything": {"_count": 1}, "up": {"_count": 1}, "unzipping": {"_count": 1}, "idea": {"_count": 1}, "wed": {"_count": 1}, "robes": {"_count": 2}, "breathed": {"_count": 1}, "looked": {"_count": 1}, "though": {"_count": 1}, "son": {"_count": 1}, "could": {"_count": 1}, "pointing": {"_count": 1}, "his": {"_count": 1}, "dueling": {"_count": 1}, "it": {"_count": 1}, "friends": {"_count": 1}, "make": {"_count": 1}, "moved": {"_count": 1}}, "toll": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "dears": {"_count": 1}}, "is": {"_count": 1, "nothing": {"_count": 1}}, "Chamber": {"_count": 1, "bound": {"_count": 1}}, "Room": {"_count": 1, "and": {"_count": 1}}, "never": {"_count": 1, "had": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "Eatersll": {"_count": 2, "want": {"_count": 1}, "be": {"_count": 1}}, "spoke": {"_count": 3, "to": {"_count": 3}}, "was": {"_count": 2, "cunning": {"_count": 1}, "impatient": {"_count": 1}}, "crossed": {"_count": 1, "to": {"_count": 1}}, "still": {"_count": 1, "further": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "asked": {"_count": 1, "the": {"_count": 1}}, "most": {"_count": 1, "unwillingly": {"_count": 1}}, "stood": {"_count": 1, "aside": {"_count": 1}}, "himself": {"_count": 1, "and": {"_count": 1}}, "took": {"_count": 2, "the": {"_count": 2}}, "searched": {"_count": 1, "for": {"_count": 1}}, "as": {"_count": 1, "an": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "Harry": {"_count": 1, "why": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}}, "goat": {"_count": 7, "and": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "which": {"_count": 1, "will": {"_count": 1}}, "dung": {"_count": 1, "at": {"_count": 1}}, "idiot": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "second": {"_count": 1}}}, "save": {"_count": 97, "you": {"_count": 9, "from": {"_count": 1}, "": {"_count": 4}, "made": {"_count": 1}, "something": {"_count": 1}, "more": {"_count": 1}, "this": {"_count": 1}}, "your": {"_count": 8, "neck": {"_count": 1}, "own": {"_count": 2}, "life": {"_count": 1}, "skin": {"_count": 1}, "lives": {"_count": 1}, "breath": {"_count": 2}}, "up": {"_count": 1, "twig": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 1}, "own": {"_count": 1}}, "us": {"_count": 1, "the": {"_count": 1}}, "yourself": {"_count": 3, "and": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "me": {"_count": 3, "": {"_count": 3}}, "it": {"_count": 4, "for": {"_count": 2}, "that": {"_count": 1}, "Kreacher": {"_count": 1}}, "Harry": {"_count": 4, "Potters": {"_count": 1}, "then": {"_count": 1}, "from": {"_count": 1}, "Potter": {"_count": 1}}, "himself": {"_count": 4, "he": {"_count": 1}, "from": {"_count": 1}, "while": {"_count": 1}, "But": {"_count": 1}}, "a": {"_count": 5, "village": {"_count": 1}, "bit": {"_count": 1}, "thing": {"_count": 3}}, "the": {"_count": 4, "girl": {"_count": 1}, "situation": {"_count": 1}, "bother": {"_count": 1}, "small": {"_count": 1}}, "my": {"_count": 3, "life": {"_count": 3}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "making": {"_count": 1, "the": {"_count": 1}}, "more": {"_count": 2, "than": {"_count": 2}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 12, "a": {"_count": 1}, "and": {"_count": 2}, "would": {"_count": 1}, "from": {"_count": 2}, "Sirius": {"_count": 1}, "hes": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "he": {"_count": 1}}, "Harrys": {"_count": 2, "life": {"_count": 1}, "Hagrid": {"_count": 1}}, "them": {"_count": 1, "places": {"_count": 1}}, "compared": {"_count": 1, "favorably": {"_count": 1}}, "our": {"_count": 2, "own": {"_count": 1}, "news": {"_count": 1}}, "Sloper": {"_count": 1, "missing": {"_count": 1}}, "anything": {"_count": 2, "He": {"_count": 1}, "when": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "little": {"_count": 1}}, "Sirius": {"_count": 3, "were": {"_count": 1}, "tonight": {"_count": 1}, "Sirius": {"_count": 1}}, "someone": {"_count": 2, "unless": {"_count": 1}, "he": {"_count": 1}}, "tedious": {"_count": 1, "interruptions": {"_count": 1}}, "every": {"_count": 1, "single": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "goals": {"_count": 1, "without": {"_count": 1}}, "Ron": {"_count": 1, "from": {"_count": 1}}, "their": {"_count": 1, "unconscious": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "em": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "Norbert": {"_count": 1, "": {"_count": 1}}, "others": {"_count": 1, "from": {"_count": 1}}}, "poisons": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "might": {"_count": 1, "make": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "without": {"_count": 1, "antidotes": {"_count": 1}}, "when": {"_count": 1, "my": {"_count": 1}}}, "plant": {"_count": 29, "which": {"_count": 1, "also": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "thing": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "here": {"_count": 1}}, "had": {"_count": 1, "started": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "off": {"_count": 1, "them": {"_count": 1}}, "wound": {"_count": 1, "around": {"_count": 1}}, "from": {"_count": 1, "curling": {"_count": 1}}, "pot": {"_count": 1, "from": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "pots": {"_count": 1, "with": {"_count": 1}}, "life": {"_count": 1, "but": {"_count": 1}}, "a": {"_count": 2, "sharp": {"_count": 1}, "very": {"_count": 1}}, "thick": {"_count": 1, "stinking": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "long": {"_count": 1}}, "on": {"_count": 2, "Mr": {"_count": 1}, "the": {"_count": 1}}, "himself": {"_count": 1, "unaware": {"_count": 1}}, "was": {"_count": 1, "sent": {"_count": 1}}, "kept": {"_count": 1, "in": {"_count": 1}}, "false": {"_count": 1, "images": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "idea": {"_count": 1}}}, "aconite": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "copying": {"_count": 9, "that": {"_count": 1, "down": {"_count": 1}}, "down": {"_count": 1, "different": {"_count": 1}}, "lines": {"_count": 1, "or": {"_count": 1}}, "pursed": {"_count": 1, "her": {"_count": 1}}, "it": {"_count": 1, "down": {"_count": 1}}, "Hermiones": {"_count": 1, "notes": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "them": {"_count": 1, "so": {"_count": 1}}}, "Over": {"_count": 39, "the": {"_count": 6, "noise": {"_count": 1}, "rustling": {"_count": 1}, "Nastier": {"_count": 1}, "next": {"_count": 1}, "plunging": {"_count": 1}, "murmur": {"_count": 1}}, "and": {"_count": 1, "over": {"_count": 1}}, "here": {"_count": 13, "": {"_count": 5}, "Arthur": {"_count": 1}, "son": {"_count": 1}, "said": {"_count": 2}, "Harry": {"_count": 1}, "Professor": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "her": {"_count": 3, "shoulder": {"_count": 3}}, "in": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 2, "said": {"_count": 1}, "shes": {"_count": 1}}, "a": {"_count": 1, "hundred": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 4}}, "his": {"_count": 2, "shoulder": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "pages": {"_count": 1, "two": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Deans": {"_count": 1, "shoulder": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}}, "continued": {"_count": 249, "": {"_count": 17, ".": {"_count": 16}, "?": {"_count": 1}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 127, "peer": {"_count": 3}, "look": {"_count": 11}, "watch": {"_count": 2}, "read": {"_count": 2}, "shout": {"_count": 1}, "inch": {"_count": 1}, "stare": {"_count": 8}, "turn": {"_count": 1}, "sob": {"_count": 2}, "dart": {"_count": 2}, "pay": {"_count": 1}, "glare": {"_count": 2}, "shovel": {"_count": 1}, "twitch": {"_count": 1}, "make": {"_count": 2}, "climb": {"_count": 1}, "take": {"_count": 1}, "search": {"_count": 1}, "pound": {"_count": 3}, "pace": {"_count": 3}, "dive": {"_count": 1}, "arrive": {"_count": 1}, "talk": {"_count": 2}, "struggle": {"_count": 2}, "circle": {"_count": 3}, "swivel": {"_count": 1}, "grin": {"_count": 1}, "mutter": {"_count": 1}, "soar": {"_count": 1}, "snigger": {"_count": 1}, "race": {"_count": 1}, "chant": {"_count": 1}, "give": {"_count": 1}, "smile": {"_count": 3}, "gaze": {"_count": 7}, "chunter": {"_count": 1}, "open": {"_count": 1}, "feign": {"_count": 1}, "scribble": {"_count": 1}, "burn": {"_count": 2}, "stride": {"_count": 1}, "twist": {"_count": 1}, "gush": {"_count": 1}, "flutter": {"_count": 1}, "mouth": {"_count": 1}, "fall": {"_count": 1}, "giggle": {"_count": 1}, "flounder": {"_count": 1}, "say": {"_count": 1}, "glower": {"_count": 1}, "clutch": {"_count": 2}, "Harry": {"_count": 1}, "laugh": {"_count": 1}, "follow": {"_count": 1}, "roar": {"_count": 1}, "twitter": {"_count": 1}, "scratch": {"_count": 1}, "try": {"_count": 2}, "warble": {"_count": 1}, "wail": {"_count": 1}, "swim": {"_count": 1}, "revolve": {"_count": 1}, "run": {"_count": 1}, "swell": {"_count": 1}, "sit": {"_count": 1}, "prickle": {"_count": 1}, "throw": {"_count": 1}, "scream": {"_count": 1}, "hoot": {"_count": 1}, "move": {"_count": 1}, "occur": {"_count": 1}, "meander": {"_count": 1}, "pore": {"_count": 1}, "be": {"_count": 1}, "step": {"_count": 1}, "strip": {"_count": 1}, "practice": {"_count": 1}, "frown": {"_count": 1}, "request": {"_count": 1}, "stand": {"_count": 1}, "illuminate": {"_count": 1}, "chip": {"_count": 1}, "whimper": {"_count": 1}}, "I": {"_count": 2, "mean": {"_count": 1}, "am": {"_count": 1}}, "In": {"_count": 1, "September": {"_count": 1}}, "as": {"_count": 6, "though": {"_count": 4}, "the": {"_count": 1}, "they": {"_count": 1}}, "in": {"_count": 8, "a": {"_count": 6}, "this": {"_count": 1}, "the": {"_count": 1}}, "As": {"_count": 2, "you": {"_count": 1}, "ever": {"_count": 1}}, "and": {"_count": 3, "while": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "So": {"_count": 1, "you": {"_count": 1}}, "placidly": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 2, "Patronus": {"_count": 1}, "Triwizard": {"_count": 1}}, "doggedly": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "as": {"_count": 1}}, "irritably": {"_count": 1, "taking": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 2}}, "for": {"_count": 1, "the": {"_count": 1}}, "boys": {"_count": 1, "and": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "lowering": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "screaming": {"_count": 1, "and": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "Harry": {"_count": 1}}, "Bagman": {"_count": 1, "": {"_count": 1}}, "gales": {"_count": 1, "of": {"_count": 1}}, "wiping": {"_count": 1, "his": {"_count": 1}}, "addressing": {"_count": 2, "the": {"_count": 2}}, "rise": {"_count": 1, "of": {"_count": 1}}, "sobs": {"_count": 1, "": {"_count": 1}}, "existence": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "pointing": {"_count": 2, "toward": {"_count": 1}, "at": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "Tryouts": {"_count": 1, "for": {"_count": 1}}, "Well": {"_count": 1, "it": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "fraternization": {"_count": 1, "with": {"_count": 1}}, "turning": {"_count": 1, "back": {"_count": 1}}, "heavily": {"_count": 1, "": {"_count": 1}}, "proffering": {"_count": 1, "her": {"_count": 1}}, "Firenze": {"_count": 1, "and": {"_count": 1}}, "attending": {"_count": 1, "all": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "briskly": {"_count": 2, "": {"_count": 2}}, "absence": {"_count": 2, "of": {"_count": 2}}, "Law": {"_count": 1, "Fifteen": {"_count": 1}}, "Dumbledore": {"_count": 4, "heavily": {"_count": 1}, "as": {"_count": 1}, "waving": {"_count": 1}, "": {"_count": 1}}, "But": {"_count": 1, "Blacks": {"_count": 1}}, "You": {"_count": 1, "ask": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "croaks": {"_count": 1, "of": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "On": {"_count": 1, "a": {"_count": 1}}, "still": {"_count": 1, "speaking": {"_count": 1}}, "George": {"_count": 1, "enthusiastically": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "shifting": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 2, "new": {"_count": 1}, "ongoing": {"_count": 1}}, "thievery": {"_count": 1, "when": {"_count": 1}}, "now": {"_count": 1, "bustling": {"_count": 1}}, "walking": {"_count": 1, "": {"_count": 1}}, "calmly": {"_count": 2, "though": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "contemplation": {"_count": 1}}, "Voldemort": {"_count": 1, "looking": {"_count": 1}}, "will": {"_count": 1, "wait": {"_count": 1}}, "Arthur": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "man": {"_count": 1}}, "imprisonment": {"_count": 1, "of": {"_count": 1}}, "chugging": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "laying": {"_count": 1, "down": {"_count": 1}}, "pounding": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "pairs": {"_count": 36, "and": {"_count": 4, "set": {"_count": 1}, "to": {"_count": 1}, "practice": {"_count": 1}, "search": {"_count": 1}}, "of": {"_count": 16, "rolling": {"_count": 1}, "green": {"_count": 1}, "differentcolored": {"_count": 1}, "arms": {"_count": 1}, "legs": {"_count": 1}, "feet": {"_count": 3}, "hands": {"_count": 2}, "strong": {"_count": 1}, "struggling": {"_count": 1}, "knees": {"_count": 1}, "briefs": {"_count": 1}, "people": {"_count": 1}, "startled": {"_count": 1}}, "to": {"_count": 1, "practice": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "staring": {"_count": 1, "around": {"_count": 1}}, "as": {"_count": 1, "there": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "please": {"_count": 1, "and": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "work": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "cure": {"_count": 12, "boils": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 2, "cant": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 1, "Argus": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "seasickness": {"_count": 1, "or": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Hedwig": {"_count": 1, "would": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "for": {"_count": 1, "werewolf": {"_count": 1}}}, "boils": {"_count": 12, "": {"_count": 2, ".": {"_count": 2}}, "sprang": {"_count": 1, "up": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "jumping": {"_count": 1}}, "were": {"_count": 1, "springing": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "dyou": {"_count": 1, "remember": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "just": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "blackheads": {"_count": 1}}}, "weigh": {"_count": 2, "dried": {"_count": 1, "nettles": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}}, "nettles": {"_count": 4, "and": {"_count": 2, "crush": {"_count": 1}, "weeds": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}}, "crush": {"_count": 4, "snake": {"_count": 1, "fangs": {"_count": 1}}, "Angelinas": {"_count": 1, "fingers": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "people": {"_count": 1, "on": {"_count": 1}}}, "criticizing": {"_count": 5, "almost": {"_count": 1, "everyone": {"_count": 1}}, "him": {"_count": 1, "so": {"_count": 1}}, "her": {"_count": 1, "cat": {"_count": 1}}, "the": {"_count": 2, "Hogwarts": {"_count": 1}, "Dursleys": {"_count": 1}}}, "whom": {"_count": 169, "he": {"_count": 35, "seemed": {"_count": 1}, "had": {"_count": 17}, "was": {"_count": 5}, "could": {"_count": 3}, "placed": {"_count": 1}, "heartily": {"_count": 1}, "appeared": {"_count": 1}, "heard": {"_count": 1}, "has": {"_count": 1}, "loved": {"_count": 1}, "trusted": {"_count": 1}, "set": {"_count": 1}, "yearned": {"_count": 1}}, "stone": {"_count": 1, "ceilings": {"_count": 1}}, "Lockhart": {"_count": 1, "had": {"_count": 1}}, "still": {"_count": 1, "had": {"_count": 1}}, "were": {"_count": 23, "snoozing": {"_count": 1}, "crying": {"_count": 1}, "asleep": {"_count": 1}, "still": {"_count": 2}, "talking": {"_count": 1}, "applauding": {"_count": 1}, "screaming": {"_count": 1}, "wrapped": {"_count": 1}, "jostling": {"_count": 1}, "fast": {"_count": 1}, "staring": {"_count": 1}, "wearing": {"_count": 1}, "carrying": {"_count": 2}, "chewing": {"_count": 1}, "creeping": {"_count": 1}, "gaping": {"_count": 1}, "eating": {"_count": 1}, "smirking": {"_count": 1}, "clutching": {"_count": 2}, "holding": {"_count": 1}}, "had": {"_count": 6, "lasted": {"_count": 1}, "bright": {"_count": 1}, "been": {"_count": 2}, "their": {"_count": 1}, "parents": {"_count": 1}}, "seemed": {"_count": 5, "to": {"_count": 3}, "determined": {"_count": 1}, "able": {"_count": 1}}, "to": {"_count": 3, "believe": {"_count": 1}, "test": {"_count": 1}, "trust": {"_count": 1}}, "nearly": {"_count": 1, "everybody": {"_count": 1}}, "was": {"_count": 3, "holding": {"_count": 1}, "Potter": {"_count": 1}, "battling": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 22, "was": {"_count": 2}, "normally": {"_count": 1}, "had": {"_count": 8}, "would": {"_count": 1}, "recognized": {"_count": 4}, "realized": {"_count": 1}, "and": {"_count": 1}, "liked": {"_count": 1}, "took": {"_count": 1}, "merely": {"_count": 1}, "now": {"_count": 1}}, "their": {"_count": 1, "letters": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "looked": {"_count": 5, "at": {"_count": 1}, "distinctly": {"_count": 1}, "up": {"_count": 1}, "sulky": {"_count": 1}, "devastated": {"_count": 1}}, "hed": {"_count": 1, "like": {"_count": 1}}, "they": {"_count": 5, "swore": {"_count": 1}, "had": {"_count": 1}, "are": {"_count": 1}, "seemed": {"_count": 1}, "refer": {"_count": 1}}, "all": {"_count": 1, "fear": {"_count": 1}}, "I": {"_count": 6, "intend": {"_count": 1}, "could": {"_count": 2}, "need": {"_count": 1}, "am": {"_count": 1}, "would": {"_count": 1}}, "gave": {"_count": 1, "Harry": {"_count": 1}}, "bowed": {"_count": 1, "back": {"_count": 1}}, "ignored": {"_count": 1, "them": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "she": {"_count": 5, "is": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "seemed": {"_count": 1}, "so": {"_count": 1}}, "we": {"_count": 2, "can": {"_count": 1}, "left": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "it": {"_count": 7, "was": {"_count": 2}, "would": {"_count": 1}, "appeared": {"_count": 1}, "belonged": {"_count": 1}, "must": {"_count": 1}, "had": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "did": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "James": {"_count": 1, "would": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "sent": {"_count": 1, "streams": {"_count": 1}}, "you": {"_count": 4, "would": {"_count": 1}, "spoke": {"_count": 1}, "will": {"_count": 1}, "command": {"_count": 1}}, "Sibyll": {"_count": 1, "was": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "Merope": {"_count": 1, "Gaunt": {"_count": 1}}, "shouted": {"_count": 1, "congratulations": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "then": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "Lucius": {"_count": 1, "believed": {"_count": 1}}, "his": {"_count": 1, "uncle": {"_count": 1}}, "Moody": {"_count": 1, "was": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "Fred": {"_count": 1, "had": {"_count": 1}}, "moved": {"_count": 1, "": {"_count": 1}}, "clutched": {"_count": 1, "each": {"_count": 1}}, "would": {"_count": 1, "he": {"_count": 1}}, "Voldemorts": {"_count": 1, "Silencing": {"_count": 1}}}, "stewed": {"_count": 3, "his": {"_count": 1, "horned": {"_count": 1}}, "for": {"_count": 1, "twentyone": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "horned": {"_count": 9, "slugs": {"_count": 1, "when": {"_count": 1}}, "toads": {"_count": 1, "": {"_count": 1}}, "toad": {"_count": 1, "said": {"_count": 1}}, "head": {"_count": 2, "": {"_count": 1}, "toward": {"_count": 1}}, "water": {"_count": 1, "demon": {"_count": 1}}, "skull": {"_count": 1, "and": {"_count": 1}}, "erupted": {"_count": 1, "from": {"_count": 1}}, "beak": {"_count": 1, "of": {"_count": 1}}}, "slugs": {"_count": 16, "when": {"_count": 1, "clouds": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "dribbled": {"_count": 2, "out": {"_count": 1}, "down": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "made": {"_count": 1, "their": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "pouring": {"_count": 1, "out": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 2, "rolled": {"_count": 1}, "Hermione": {"_count": 1}}, "protruding": {"_count": 1, "vertically": {"_count": 1}}, "squeezed": {"_count": 1, "into": {"_count": 1}}}, "clouds": {"_count": 37, "of": {"_count": 8, "acid": {"_count": 1}, "steam": {"_count": 2}, "pewter": {"_count": 1}, "different": {"_count": 1}, "silvery": {"_count": 1}, "greenish": {"_count": 1}, "dust": {"_count": 1}}, "making": {"_count": 1, "the": {"_count": 1}}, "scudding": {"_count": 1, "across": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "and": {"_count": 3, "everything": {"_count": 1}, "twisted": {"_count": 1}, "the": {"_count": 1}}, "showing": {"_count": 1, "them": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "overhead": {"_count": 1, "thickened": {"_count": 1}}, "my": {"_count": 1, "Inner": {"_count": 1}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "were": {"_count": 2, "swirling": {"_count": 1}, "patchy": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "hovering": {"_count": 1, "over": {"_count": 1}}, "separated": {"_count": 1, "and": {"_count": 1}}, "drifted": {"_count": 1, "over": {"_count": 1}}, "when": {"_count": 1, "somebody": {"_count": 1}}, "beautiful": {"_count": 1, "and": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "hung": {"_count": 1, "low": {"_count": 1}}, "the": {"_count": 1, "blond": {"_count": 1}}}, "acid": {"_count": 5, "green": {"_count": 3, "smoke": {"_count": 1}, "had": {"_count": 1}, "quill": {"_count": 1}}, "thrown": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "melt": {"_count": 7, "Seamuss": {"_count": 1, "cauldron": {"_count": 1}}, "away": {"_count": 2, "and": {"_count": 1}, "before": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "them": {"_count": 1, "an": {"_count": 1}}}, "blob": {"_count": 2, "and": {"_count": 1, "their": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}}, "seeping": {"_count": 3, "across": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "under": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}}, "holes": {"_count": 13, "in": {"_count": 7, "peoples": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 2}, "her": {"_count": 1}, "Umbridge": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "slipping": {"_count": 1, "on": {"_count": 1}}, "beneath": {"_count": 1, "their": {"_count": 1}}, "healed": {"_count": 1, "everywhere": {"_count": 1}}}, "drenched": {"_count": 13, "in": {"_count": 7, "the": {"_count": 1}, "cold": {"_count": 1}, "scarlet": {"_count": 1}, "sweat": {"_count": 2}, "water": {"_count": 1}, "wet": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "broom": {"_count": 1, "one": {"_count": 1}}, "Harrys": {"_count": 1, "arms": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "whole": {"_count": 1}}}, "sprang": {"_count": 47, "up": {"_count": 5, "all": {"_count": 1}, "behind": {"_count": 1}, "between": {"_count": 1}, "again": {"_count": 1}, "instantly": {"_count": 1}}, "apart": {"_count": 1, "and": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 16, "life": {"_count": 5}, "his": {"_count": 6}, "her": {"_count": 3}, "a": {"_count": 1}, "mind": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "and": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 2, "him": {"_count": 2}}, "back": {"_count": 5, "into": {"_count": 1}, "toward": {"_count": 1}, "respectfully": {"_count": 1}, "up": {"_count": 1}, "together": {"_count": 1}}, "suddenly": {"_count": 1, "to": {"_count": 1}}, "onto": {"_count": 1, "Rons": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "Seamuss": {"_count": 1}}, "open": {"_count": 6, "": {"_count": 1}, "causing": {"_count": 1}, "several": {"_count": 1}, "and": {"_count": 2}, "you": {"_count": 1}}, "aside": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 3, "Harrys": {"_count": 1}, "life": {"_count": 1}, "terrible": {"_count": 1}}}, "Idiot": {"_count": 2, "boy": {"_count": 1, "": {"_count": 1}}, "girl": {"_count": 1, "Dumbledore": {"_count": 1}}}, "clearing": {"_count": 58, "the": {"_count": 3, "spilled": {"_count": 1}, "floor": {"_count": 1}, "accused": {"_count": 1}}, "stood": {"_count": 1, "Snape": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 18}}, "ahead": {"_count": 2, "something": {"_count": 1}, "through": {"_count": 1}}, "came": {"_count": 1, "was": {"_count": 1}}, "staring": {"_count": 1, "over": {"_count": 1}}, "quivered": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 7, "aaRRRRRRRRRRRRGGGGGHHHHH": {"_count": 1}, "sitting": {"_count": 1}, "disappeared": {"_count": 1}, "burst": {"_count": 1}, "off": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}}, "a": {"_count": 1, "space": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 2, "at": {"_count": 1}, "around": {"_count": 1}}, "who": {"_count": 1, "are": {"_count": 1}}, "it": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 1, "throat": {"_count": 1}}, "his": {"_count": 1, "throat": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "by": {"_count": 1, "twilight": {"_count": 1}}, "where": {"_count": 1, "Hagrid": {"_count": 1}}, "Umbridge": {"_count": 1, "uttering": {"_count": 1}}, "so": {"_count": 1, "loud": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "echoed": {"_count": 1, "with": {"_count": 1}}}, "spilled": {"_count": 24, "potion": {"_count": 2, "away": {"_count": 1}, "I": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "all": {"_count": 1, "her": {"_count": 1}}, "their": {"_count": 1, "candle": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 5}, "onto": {"_count": 1}, "over": {"_count": 1}}, "hot": {"_count": 1, "chocolate": {"_count": 1}}, "sausage": {"_count": 1, "rolls": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "ink": {"_count": 1, "all": {"_count": 1}}, "over": {"_count": 1, "all": {"_count": 1}}, "the": {"_count": 1, "beans": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "its": {"_count": 1, "emeralds": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}}, "porcupine": {"_count": 1, "quills": {"_count": 1, "before": {"_count": 1}}}, "whimpered": {"_count": 12, "as": {"_count": 2, "boils": {"_count": 1}, "Ron": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "staring": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "elf": {"_count": 1}}, "piteously": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "beat": {"_count": 1}}, "Hermione": {"_count": 1, "her": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}}, "spat": {"_count": 43, "at": {"_count": 6, "Seamus": {"_count": 1}, "Malfoy": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "you": {"_count": 1}, "her": {"_count": 1}}, "bitterly": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "his": {"_count": 1, "pouchy": {"_count": 1}}, "fists": {"_count": 1, "still": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "Filch": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 2, "a": {"_count": 2}}, "a": {"_count": 3, "few": {"_count": 1}, "mouthful": {"_count": 1}, "jet": {"_count": 1}}, "suddenly": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "throwing": {"_count": 1, "Pettigrews": {"_count": 1}}, "Snape": {"_count": 5, "": {"_count": 4}, "for": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "And": {"_count": 1, "why": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "unexpectedly": {"_count": 1, "upon": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "blood": {"_count": 1, "out": {"_count": 1}}, "Yaxley": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}}, "add": {"_count": 33, "the": {"_count": 4, "quills": {"_count": 1}, "hairs": {"_count": 1}, "key": {"_count": 1}, "piece": {"_count": 1}}, "up": {"_count": 2, "while": {"_count": 1}, "to": {"_count": 1}}, "those": {"_count": 1, "bits": {"_count": 1}}, "that": {"_count": 5, "to": {"_count": 1}, "I": {"_count": 1}, "Professor": {"_count": 1}, "werewolves": {"_count": 1}, "while": {"_count": 1}}, "to": {"_count": 3, "a": {"_count": 1}, "your": {"_count": 1}, "his": {"_count": 1}}, "tea": {"_count": 1, "bags": {"_count": 1}}, "but": {"_count": 1, "how": {"_count": 1}}, "five": {"_count": 1, "Galleons": {"_count": 1}}, "another": {"_count": 2, "twelve": {"_count": 1}, "the": {"_count": 1}}, "insult": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 3, "bit": {"_count": 1}, "reasonable": {"_count": 1}, "clockwise": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "much": {"_count": 1, "to": {"_count": 1}}, "two": {"_count": 2, "drops": {"_count": 1}, "and": {"_count": 1}}, "your": {"_count": 2, "age": {"_count": 1}, "name": {"_count": 1}}, "interest": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}}, "unfair": {"_count": 7, "that": {"_count": 2, "Harry": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Alicia": {"_count": 1}}, "you": {"_count": 1, "couldnt": {"_count": 1}}}, "push": {"_count": 37, "it": {"_count": 6, "he": {"_count": 1}, "too": {"_count": 1}, "back": {"_count": 1}, "wide": {"_count": 1}, "down": {"_count": 1}, "off": {"_count": 1}}, "me": {"_count": 2, "A": {"_count": 1}, "please": {"_count": 1}}, "Harry": {"_count": 3, "and": {"_count": 1}, "out": {"_count": 2}}, "there": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 2}}, "his": {"_count": 2, "glasses": {"_count": 1}, "ear": {"_count": 1}}, "himself": {"_count": 5, "back": {"_count": 2}, "straight": {"_count": 1}, "onto": {"_count": 1}, "into": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "Crookshanks": {"_count": 1, "off": {"_count": 1}}, "Malfoy": {"_count": 1, "off": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "the": {"_count": 4, "paper": {"_count": 1}, "matter": {"_count": 1}, "door": {"_count": 1}, "enchanted": {"_count": 1}}, "her": {"_count": 1, "away": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 1, "her": {"_count": 1}}, "them": {"_count": 1, "away": {"_count": 1}}, "these": {"_count": 1, "away": {"_count": 1}}}, "spirits": {"_count": 31, "were": {"_count": 2, "low": {"_count": 1}, "greatly": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "than": {"_count": 1, "last": {"_count": 1}}, "ebbing": {"_count": 1, "away": {"_count": 1}}, "laughing": {"_count": 1, "his": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "seeing": {"_count": 1, "Hagrid": {"_count": 1}}, "slip": {"_count": 1, "a": {"_count": 1}}, "couldnt": {"_count": 1, "help": {"_count": 1}}, "soar": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "somehow": {"_count": 1}}, "rose": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "sank": {"_count": 1, "slightly": {"_count": 1}}, "lifted": {"_count": 1, "somewhat": {"_count": 1}}, "of": {"_count": 1, "fire": {"_count": 1}}, "the": {"_count": 1, "cheers": {"_count": 1}}, "soared": {"_count": 1, "The": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "even": {"_count": 1, "higher": {"_count": 1}}, "though": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 1, "empty": {"_count": 1}}, "The": {"_count": 1, "sudden": {"_count": 1}}, "but": {"_count": 1, "neither": {"_count": 1}}, "plummeted": {"_count": 1, "": {"_count": 1}}}, "Cheer": {"_count": 3, "up": {"_count": 3, "said": {"_count": 1}, "Ron": {"_count": 1}, "its": {"_count": 1}}}, "crossbow": {"_count": 18, "and": {"_count": 3, "a": {"_count": 2}, "flung": {"_count": 1}}, "raising": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "with": {"_count": 1, "them": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "day": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "uncomfortably": {"_count": 1, "in": {"_count": 1}}}, "galoshes": {"_count": 2, "were": {"_count": 1, "outside": {"_count": 1}}, "his": {"_count": 1, "colleague": {"_count": 1}}}, "frantic": {"_count": 19, "scrabbling": {"_count": 1, "from": {"_count": 1}}, "its": {"_count": 1, "only": {"_count": 1}}, "shes": {"_count": 1, "coming": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "thumping": {"_count": 1, "of": {"_count": 1}}, "searching": {"_count": 1, "spotted": {"_count": 1}}, "squeak": {"_count": 1, "and": {"_count": 1}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "scouring": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "hushing": {"_count": 1, "noises": {"_count": 1}}, "to": {"_count": 1, "communicate": {"_count": 1}}, "gulping": {"_count": 1, "he": {"_count": 1}}, "hours": {"_count": 1, "of": {"_count": 1}}, "grimaces": {"_count": 1, "and": {"_count": 1}}, "mice": {"_count": 1, "trapped": {"_count": 1}}, "instructions": {"_count": 1, "to": {"_count": 1}}, "heart": {"_count": 1, "and": {"_count": 1}}, "bird": {"_count": 1, "": {"_count": 1}}}, "scrabbling": {"_count": 7, "from": {"_count": 1, "inside": {"_count": 1}}, "around": {"_count": 2, "for": {"_count": 1}, "on": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}}, "booming": {"_count": 18, "barks": {"_count": 4, "": {"_count": 1}, "they": {"_count": 1}, "answered": {"_count": 2}}, "more": {"_count": 1, "and": {"_count": 1}}, "gong": {"_count": 1, "sounded": {"_count": 1}}, "into": {"_count": 1, "every": {"_count": 1}}, "bell": {"_count": 1, "echoed": {"_count": 1}}, "laugh": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 5, "": {"_count": 4}, "from": {"_count": 1}}, "chorus": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "we": {"_count": 1}}, "bark": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "welcome": {"_count": 1}}}, "barks": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "they": {"_count": 1, "hastily": {"_count": 1}}, "answered": {"_count": 2, "instantly": {"_count": 1}, "": {"_count": 1}}}, "Back": {"_count": 23, "Fang": {"_count": 2, "back": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 4}, "Dumbledores": {"_count": 1}, "Knockturn": {"_count": 1}, "his": {"_count": 1}}, "outside": {"_count": 1, "on": {"_count": 1}}, "there": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 1, "rogue": {"_count": 1}}, "into": {"_count": 1, "Honeydukes": {"_count": 1}}, "to": {"_count": 5, "Hagrids": {"_count": 1}, "Mullet": {"_count": 1}, "the": {"_count": 1}, "lunch": {"_count": 1}, "normal": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}, "again": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}}, "Fang": {"_count": 91, "back": {"_count": 1, "": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 10}, "!": {"_count": 2}, "?": {"_count": 1}}, "who": {"_count": 3, "bounded": {"_count": 1}, "had": {"_count": 2}}, "was": {"_count": 10, "clearly": {"_count": 1}, "slobbering": {"_count": 1}, "trembling": {"_count": 1}, "whimpering": {"_count": 1}, "drooling": {"_count": 1}, "barking": {"_count": 1}, "now": {"_count": 1}, "sniffing": {"_count": 1}, "at": {"_count": 1}, "jumping": {"_count": 1}}, "rested": {"_count": 1, "his": {"_count": 1}}, "sometime": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 7, "boarhound": {"_count": 6}, "boarhounds": {"_count": 1}}, "at": {"_count": 3, "his": {"_count": 3}}, "said": {"_count": 3, "Hagrid": {"_count": 2}, "Malfoy": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 2, "with": {"_count": 1}, "going": {"_count": 1}}, "an": {"_count": 2, "this": {"_count": 1}, "me": {"_count": 1}}, "stood": {"_count": 1, "transfixed": {"_count": 1}}, "started": {"_count": 2, "to": {"_count": 1}, "howling": {"_count": 1}}, "while": {"_count": 1, "Im": {"_count": 1}}, "with": {"_count": 3, "us": {"_count": 1}, "one": {"_count": 1}, "yeh": {"_count": 1}}, "went": {"_count": 1, "mad": {"_count": 1}}, "bounded": {"_count": 2, "happily": {"_count": 1}, "out": {"_count": 1}}, "scampering": {"_count": 1, "around": {"_count": 1}}, "suddenly": {"_count": 1, "let": {"_count": 1}}, "yelped": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "whimpering": {"_count": 1, "and": {"_count": 1}}, "fighting": {"_count": 1, "to": {"_count": 1}}, "thudded": {"_count": 1, "down": {"_count": 1}}, "wasnt": {"_count": 1, "howling": {"_count": 1}}, "howling": {"_count": 2, "loudly": {"_count": 1}, "as": {"_count": 1}}, "flung": {"_count": 1, "himself": {"_count": 1}}, "had": {"_count": 1, "his": {"_count": 1}}, "its": {"_count": 2, "us": {"_count": 1}, "all": {"_count": 1}}, "he": {"_count": 1, "won": {"_count": 1}}, "scratching": {"_count": 1, "at": {"_count": 1}}, "barking": {"_count": 1, "as": {"_count": 1}}, "launched": {"_count": 1, "himself": {"_count": 1}}, "and": {"_count": 1, "looked": {"_count": 1}}, "trotting": {"_count": 1, "after": {"_count": 1}}, "returning": {"_count": 1, "": {"_count": 1}}, "danced": {"_count": 1, "around": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "still": {"_count": 1, "hung": {"_count": 1}}, "came": {"_count": 1, "charging": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "laying": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "keeping": {"_count": 1, "as": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "lolloping": {"_count": 1, "beside": {"_count": 1}}, "galloping": {"_count": 1, "behind": {"_count": 1}}, "scrabbling": {"_count": 1, "at": {"_count": 1}}}, "struggling": {"_count": 69, "to": {"_count": 25, "keep": {"_count": 4}, "find": {"_count": 2}, "remove": {"_count": 1}, "penetrate": {"_count": 1}, "absorb": {"_count": 1}, "remember": {"_count": 2}, "bring": {"_count": 1}, "regain": {"_count": 1}, "wake": {"_count": 1}, "understand": {"_count": 1}, "his": {"_count": 1}, "throw": {"_count": 1}, "make": {"_count": 1}, "see": {"_count": 1}, "finish": {"_count": 1}, "cling": {"_count": 1}, "fit": {"_count": 1}, "get": {"_count": 1}, "do": {"_count": 1}, "her": {"_count": 1}}, "Bludger": {"_count": 1, "back": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "Rons": {"_count": 1}}, "with": {"_count": 6, "all": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "concepts": {"_count": 1}, "Ginny": {"_count": 1}}, "over": {"_count": 1, "with": {"_count": 1}}, "book": {"_count": 1, "tightly": {"_count": 1}}, "Snitch": {"_count": 1, "": {"_count": 1}}, "rat": {"_count": 2, "and": {"_count": 2}}, "though": {"_count": 1, "his": {"_count": 1}}, "Scabbers": {"_count": 1, "": {"_count": 1}}, "against": {"_count": 2, "his": {"_count": 1}, "Lupin": {"_count": 1}}, "figures": {"_count": 1, "were": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "madly": {"_count": 1, "he": {"_count": 1}}, "hopelessly": {"_count": 1, "at": {"_count": 1}}, "doxy": {"_count": 1, "between": {"_count": 1}}, "toad": {"_count": 1, "Trevor": {"_count": 1}}, "toward": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "ball": {"_count": 2, "Malfoys": {"_count": 1}, "in": {"_count": 1}}, "for": {"_count": 3, "release": {"_count": 1}, "something": {"_count": 1}, "breath": {"_count": 1}}, "Golden": {"_count": 1, "Snitch": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "students": {"_count": 1, "with": {"_count": 1}}, "pair": {"_count": 1, "he": {"_count": 1}}, "under": {"_count": 1, "more": {"_count": 1}}, "limbs": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 2, "looked": {"_count": 1}, "Bellatrix": {"_count": 1}}, "her": {"_count": 1, "dark": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "prisoners": {"_count": 1, "and": {"_count": 1}}}, "collar": {"_count": 18, "of": {"_count": 5, "an": {"_count": 1}, "his": {"_count": 4}}, "on": {"_count": 1, "it": {"_count": 1}}, "around": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 1, "reins": {"_count": 1}}, "and": {"_count": 1, "matching": {"_count": 1}}, "looking": {"_count": 1, "almost": {"_count": 1}}, "apparently": {"_count": 1, "keen": {"_count": 1}}, "today": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "clutching": {"_count": 1, "a": {"_count": 1}}}, "boarhound": {"_count": 13, "": {"_count": 1, ".": {"_count": 1}}, "sitting": {"_count": 1, "outside": {"_count": 1}}, "Fang": {"_count": 4, "was": {"_count": 2}, "had": {"_count": 1}, "": {"_count": 1}}, "barked": {"_count": 2, "loudly": {"_count": 2}}, "cower": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "came": {"_count": 1, "timidly": {"_count": 1}}, "had": {"_count": 1, "taken": {"_count": 1}}}, "Hams": {"_count": 1, "and": {"_count": 1, "pheasants": {"_count": 1}}}, "pheasants": {"_count": 1, "were": {"_count": 1, "hanging": {"_count": 1}}}, "boiling": {"_count": 20, "on": {"_count": 1, "the": {"_count": 1}}, "water": {"_count": 6, "into": {"_count": 2}, "he": {"_count": 1}, "for": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "tea": {"_count": 1, "all": {"_count": 1}}, "kettle": {"_count": 1, "and": {"_count": 1}}, "hate": {"_count": 1, "erupted": {"_count": 1}}, "in": {"_count": 1, "Trelawneys": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "what": {"_count": 1}}, "away": {"_count": 1, "inside": {"_count": 1}}, "scarlet": {"_count": 1, "and": {"_count": 1}}, "Yeah": {"_count": 1, "ghosts": {"_count": 1}}, "sensation": {"_count": 1, "in": {"_count": 1}}, "hot": {"_count": 1, "then": {"_count": 1}}, "brain": {"_count": 1, "the": {"_count": 1}}}, "massive": {"_count": 51, "bed": {"_count": 1, "with": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "form": {"_count": 1, "of": {"_count": 1}}, "snake": {"_count": 1, "biting": {"_count": 1}}, "gloved": {"_count": 1, "hands": {"_count": 1}}, "hand": {"_count": 3, "": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}}, "specimen": {"_count": 1, "that": {"_count": 1}}, "He": {"_count": 1, "looked": {"_count": 1}}, "sherbet": {"_count": 1, "balls": {"_count": 1}}, "forearm": {"_count": 1, "": {"_count": 1}}, "backside": {"_count": 1, "": {"_count": 1}}, "organizational": {"_count": 1, "problem": {"_count": 1}}, "effort": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "mus": {"_count": 1, "be": {"_count": 1}}, "bone": {"_count": 1, "needle": {"_count": 1}}, "shoulders": {"_count": 3, "": {"_count": 3}}, "brown": {"_count": 1, "eyes": {"_count": 1}}, "piles": {"_count": 1, "of": {"_count": 1}}, "fist": {"_count": 2, "at": {"_count": 1}, "through": {"_count": 1}}, "arms": {"_count": 2, "in": {"_count": 1}, "around": {"_count": 1}}, "chest": {"_count": 2, "": {"_count": 2}}, "leatherclad": {"_count": 1, "shoulders": {"_count": 1}}, "purple": {"_count": 1, "face": {"_count": 1}}, "order": {"_count": 1, "for": {"_count": 1}}, "pusfilled": {"_count": 1, "boils": {"_count": 1}}, "forearms": {"_count": 1, "like": {"_count": 1}}, "Warrington": {"_count": 1, "pelted": {"_count": 1}}, "one": {"_count": 2, "o": {"_count": 1}, "": {"_count": 1}}, "dark": {"_count": 1, "shape": {"_count": 1}}, "figure": {"_count": 1, "roaring": {"_count": 1}}, "swipes": {"_count": 1, "at": {"_count": 1}}, "hands": {"_count": 1, "swooped": {"_count": 1}}, "orders": {"_count": 1, "": {"_count": 1}}, "outline": {"_count": 1, "was": {"_count": 1}}, "than": {"_count": 1, "it": {"_count": 1}}, "pit": {"_count": 1, "beside": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "spiders": {"_count": 1, "again": {"_count": 1}}, "movement": {"_count": 1, "": {"_count": 1}}, "shadows": {"_count": 1, "over": {"_count": 1}}, "body": {"_count": 1, "shook": {"_count": 1}}}, "patchwork": {"_count": 6, "quilt": {"_count": 4, "over": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}}, "of": {"_count": 2, "fields": {"_count": 1}, "dark": {"_count": 1}}}, "quilt": {"_count": 4, "over": {"_count": 1, "it": {"_count": 1}}, "his": {"_count": 1, "enormous": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}}, "yerselves": {"_count": 3, "at": {"_count": 1, "home": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "now": {"_count": 1, "theres": {"_count": 1}}}, "letting": {"_count": 38, "go": {"_count": 4, "of": {"_count": 4}}, "them": {"_count": 2, "go": {"_count": 1}, "take": {"_count": 1}}, "something": {"_count": 1, "slip": {"_count": 1}}, "us": {"_count": 2, "through": {"_count": 1}, "use": {"_count": 1}}, "Buckbeak": {"_count": 1, "go": {"_count": 1}}, "the": {"_count": 3, "Snitch": {"_count": 1}, "Order": {"_count": 1}, "words": {"_count": 1}}, "him": {"_count": 4, "wander": {"_count": 1}, "fill": {"_count": 1}, "sit": {"_count": 1}, "teach": {"_count": 1}}, "me": {"_count": 2, "mime": {"_count": 1}, "know": {"_count": 1}}, "you": {"_count": 2, "enter": {"_count": 1}, "off": {"_count": 1}}, "off": {"_count": 2, "more": {"_count": 1}, "a": {"_count": 1}}, "Snape": {"_count": 1, "teach": {"_count": 1}}, "people": {"_count": 1, "know": {"_count": 1}}, "her": {"_count": 2, "get": {"_count": 1}, "daughter": {"_count": 1}}, "Hagrid": {"_count": 1, "down": {"_count": 1}}, "Molly": {"_count": 1, "know": {"_count": 1}}, "his": {"_count": 1, "chair": {"_count": 1}}, "it": {"_count": 1, "zoom": {"_count": 1}}, "on": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "half": {"_count": 1}}, "out": {"_count": 2, "an": {"_count": 1}, "a": {"_count": 1}}, "Ron": {"_count": 1, "down": {"_count": 1}}}, "bounded": {"_count": 16, "straight": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 2, "the": {"_count": 2}}, "into": {"_count": 1, "the": {"_count": 1}}, "happily": {"_count": 1, "out": {"_count": 1}}, "forward": {"_count": 4, "": {"_count": 3}, "pulled": {"_count": 1}}, "out": {"_count": 2, "from": {"_count": 1}, "of": {"_count": 1}}, "back": {"_count": 1, "through": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "once": {"_count": 1, "across": {"_count": 1}}}, "pouring": {"_count": 35, "boiling": {"_count": 1, "water": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 5}, "a": {"_count": 1}, "tea": {"_count": 1}}, "from": {"_count": 7, "under": {"_count": 1}, "the": {"_count": 4}, "her": {"_count": 1}, "his": {"_count": 1}}, "dead": {"_count": 1, "lacewings": {"_count": 1}}, "a": {"_count": 3, "little": {"_count": 2}, "shot": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "herself": {"_count": 1, "some": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "silently": {"_count": 1, "down": {"_count": 1}}, "down": {"_count": 4, "her": {"_count": 1}, "his": {"_count": 1}, "either": {"_count": 1}, "Hermiones": {"_count": 1}}, "rain": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "more": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "like": {"_count": 1, "blood": {"_count": 1}}}, "chasin": {"_count": 2, "yer": {"_count": 1, "twin": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}}, "shapeless": {"_count": 7, "lumps": {"_count": 1, "with": {"_count": 1}}, "hole": {"_count": 1, "sucking": {"_count": 1}}, "cloud": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "writhed": {"_count": 1}}, "elf": {"_count": 1, "socks": {"_count": 1}}, "the": {"_count": 1, "mouth": {"_count": 1}}, "mass": {"_count": 1, "": {"_count": 1}}}, "lumps": {"_count": 8, "with": {"_count": 1, "raisins": {"_count": 1}}, "of": {"_count": 5, "dragon": {"_count": 1}, "charred": {"_count": 1}, "sugar": {"_count": 1}, "raw": {"_count": 1}, "rock": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "raisins": {"_count": 1, "that": {"_count": 1, "almost": {"_count": 1}}}, "enjoying": {"_count": 48, "them": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "yourself": {"_count": 2, "with": {"_count": 1}, "Potter": {"_count": 1}}, "the": {"_count": 9, "sight": {"_count": 1}, "atmosphere": {"_count": 1}, "ride": {"_count": 1}, "experience": {"_count": 1}, "effect": {"_count": 1}, "attention": {"_count": 1}, "end": {"_count": 1}, "celebrations": {"_count": 1}, "sport": {"_count": 1}}, "a": {"_count": 5, "gentle": {"_count": 1}, "Christmas": {"_count": 1}, "large": {"_count": 1}, "romantic": {"_count": 1}, "private": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "Im": {"_count": 1}}, "himself": {"_count": 7, "": {"_count": 4}, "as": {"_count": 1}, "denying": {"_count": 1}, "at": {"_count": 1}}, "work": {"_count": 1, "then": {"_count": 1}}, "myself": {"_count": 1, "once": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 2}}, "their": {"_count": 2, "free": {"_count": 1}, "presents": {"_count": 1}}, "herself": {"_count": 4, "she": {"_count": 1}, "as": {"_count": 1}, "now": {"_count": 1}, "hugely": {"_count": 1}}, "bossing": {"_count": 1, "him": {"_count": 1}}, "our": {"_count": 1, "feast": {"_count": 1}}, "what": {"_count": 1, "might": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "themselves": {"_count": 1, "skating": {"_count": 1}}, "being": {"_count": 1, "patted": {"_count": 1}}, "dinner": {"_count": 1, "celebrating": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "your": {"_count": 1, "first": {"_count": 1}}, "commentary": {"_count": 1, "more": {"_count": 1}}, "keeping": {"_count": 1, "us": {"_count": 1}}}, "rested": {"_count": 14, "his": {"_count": 2, "head": {"_count": 1}, "forehead": {"_count": 1}}, "upon": {"_count": 3, "Harrys": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "against": {"_count": 1, "his": {"_count": 1}}}, "drooled": {"_count": 1, "all": {"_count": 1, "over": {"_count": 1}}}, "delighted": {"_count": 68, "to": {"_count": 20, "hear": {"_count": 4}, "have": {"_count": 1}, "say": {"_count": 2}, "take": {"_count": 1}, "introduce": {"_count": 1}, "see": {"_count": 4}, "be": {"_count": 1}, "raise": {"_count": 1}, "join": {"_count": 1}, "write": {"_count": 1}, "place": {"_count": 1}, "leave": {"_count": 1}, "find": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 11}, "!": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "in": {"_count": 1, "comparing": {"_count": 1}}, "voice": {"_count": 1, "sounded": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 2, "Gryffindor": {"_count": 1}, "he": {"_count": 1}}, "by": {"_count": 2, "Malfoys": {"_count": 1}, "this": {"_count": 1}}, "said": {"_count": 3, "Lupin": {"_count": 1}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}}, "about": {"_count": 3, "it": {"_count": 1}, "something": {"_count": 2}}, "and": {"_count": 1, "as": {"_count": 1}}, "they": {"_count": 1, "bowed": {"_count": 1}}, "with": {"_count": 4, "the": {"_count": 1}, "himself": {"_count": 2}, "his": {"_count": 1}}, "at": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 1, "lapdogs": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "niece": {"_count": 1, "and": {"_count": 1}}, "tenyearolds": {"_count": 1, "was": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "incredulity": {"_count": 1, "on": {"_count": 1}}, "apparently": {"_count": 1, "at": {"_count": 1}}, "surprise": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "now": {"_count": 1, "Bill": {"_count": 1}}, "faces": {"_count": 1, "the": {"_count": 1}}, "laugh": {"_count": 1, "": {"_count": 1}}}, "git": {"_count": 19, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 2}}, "how": {"_count": 1, "ter": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "George": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "like": {"_count": 2, "Malfoy": {"_count": 1}, "you": {"_count": 1}}, "paid": {"_count": 1, "us": {"_count": 1}}, "so": {"_count": 1, "get": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "who": {"_count": 1, "lived": {"_count": 1}}, "whispered": {"_count": 1, "Ron": {"_count": 1}}}, "sometime": {"_count": 7, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "in": {"_count": 1, "October": {"_count": 1}}, "Snape": {"_count": 1, "trying": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}}, "puts": {"_count": 12, "her": {"_count": 1, "up": {"_count": 1}}, "it": {"_count": 2, "away": {"_count": 1}, "back": {"_count": 1}}, "spells": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "up": {"_count": 1, "with": {"_count": 1}}, "out": {"_count": 1, "that": {"_count": 1}}, "Imperturbable": {"_count": 1, "Charms": {"_count": 1}}, "their": {"_count": 1, "time": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "Kendras": {"_count": 1, "premature": {"_count": 1}}, "our": {"_count": 1, "sufferings": {"_count": 1}}}, "Rubbish": {"_count": 8, "": {"_count": 2, "!": {"_count": 2}}, "said": {"_count": 6, "Hagrid": {"_count": 2}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "Harry": {"_count": 1}}}, "cutting": {"_count": 33, "from": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "bread": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "into": {"_count": 5, "Goyles": {"_count": 1}, "his": {"_count": 3}, "the": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 2, "last": {"_count": 1}, "his": {"_count": 1}}, "up": {"_count": 3, "these": {"_count": 1}, "his": {"_count": 1}, "valerian": {"_count": 1}}, "across": {"_count": 5, "him": {"_count": 1}, "Fleurs": {"_count": 1}, "Fleur": {"_count": 1}, "Kreacher": {"_count": 1}, "Snape": {"_count": 1}}, "a": {"_count": 2, "grapefruit": {"_count": 1}, "wide": {"_count": 1}}, "Bagmans": {"_count": 1, "remarks": {"_count": 1}}, "his": {"_count": 1, "meeting": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 3, "off": {"_count": 1}, "very": {"_count": 1}, "fine": {"_count": 1}}, "open": {"_count": 1, "his": {"_count": 1}}, "coolly": {"_count": 1, "through": {"_count": 1}}, "of": {"_count": 1, "Devils": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "off": {"_count": 2, "peoples": {"_count": 1}, "his": {"_count": 1}}}, "GRINGOTTS": {"_count": 2, "BREAKIN": {"_count": 1, "LATEST": {"_count": 1}}, "Their": {"_count": 1, "plans": {"_count": 1}}}, "BREAKIN": {"_count": 1, "LATEST": {"_count": 1, "Investigations": {"_count": 1}}}, "LATEST": {"_count": 1, "Investigations": {"_count": 1, "continue": {"_count": 1}}}, "Investigations": {"_count": 1, "continue": {"_count": 1, "into": {"_count": 1}}}, "continue": {"_count": 62, "into": {"_count": 2, "the": {"_count": 1}, "sixth": {"_count": 1}}, "play": {"_count": 1, "Gryffindor": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}, "adding": {"_count": 1, "names": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "studying": {"_count": 1, "": {"_count": 1}}, "making": {"_count": 1, "the": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 15, "wriggle": {"_count": 1}, "interrupt": {"_count": 1}, "live": {"_count": 1}, "fly": {"_count": 1}, "N": {"_count": 1}, "rely": {"_count": 1}, "hunt": {"_count": 1}, "work": {"_count": 1}, "sustain": {"_count": 1}, "hear": {"_count": 1}, "show": {"_count": 1}, "handle": {"_count": 1}, "resist": {"_count": 1}, "fight": {"_count": 1}, "oppose": {"_count": 1}}, "your": {"_count": 1, "reading": {"_count": 1}}, "his": {"_count": 2, "monotonous": {"_count": 1}, "argument": {"_count": 1}}, "playing": {"_count": 2, "straightaway": {"_count": 1}, "I": {"_count": 1}}, "with": {"_count": 6, "your": {"_count": 1}, "their": {"_count": 1}, "Charms": {"_count": 1}, "Transfiguration": {"_count": 1}, "Potions": {"_count": 1}, "our": {"_count": 1}}, "teaching": {"_count": 1, "as": {"_count": 1}}, "work": {"_count": 1, "then": {"_count": 1}}, "Hagrids": {"_count": 1, "totally": {"_count": 1}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "its": {"_count": 1, "eager": {"_count": 1}}, "Siriuss": {"_count": 1, "duel": {"_count": 1}}, "destroying": {"_count": 1, "my": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "ten": {"_count": 1}}, "Bellatrix": {"_count": 1, "said": {"_count": 1}}, "Care": {"_count": 2, "of": {"_count": 2}}, "this": {"_count": 1, "discussion": {"_count": 1}}, "enslaving": {"_count": 1, "him": {"_count": 1}}, "smiling": {"_count": 1, "pleasantly": {"_count": 1}}, "the": {"_count": 1, "tale": {"_count": 1}}, "fighting": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "Dumbledores": {"_count": 1, "Army": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "broke": {"_count": 1}}}, "breakin": {"_count": 6, "at": {"_count": 1, "Gringotts": {"_count": 1}}, "happened": {"_count": 1, "on": {"_count": 1}}, "wouldnt": {"_count": 1, "they": {"_count": 1}}, "the": {"_count": 1, "law": {"_count": 1}}, "she": {"_count": 1, "sent": {"_count": 1}}, "made": {"_count": 1, "it": {"_count": 1}}}, "widely": {"_count": 35, "believed": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "This": {"_count": 1}}, "at": {"_count": 2, "her": {"_count": 1}, "their": {"_count": 1}}, "known": {"_count": 4, "": {"_count": 1}, "that": {"_count": 1}, "for": {"_count": 1}, "here": {"_count": 1}}, "took": {"_count": 1, "off": {"_count": 1}}, "scattered": {"_count": 1, "now": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 7, "obviously": {"_count": 1}, "poured": {"_count": 1}, "blinking": {"_count": 1}, "cast": {"_count": 1}, "she": {"_count": 1}, "looked": {"_count": 1}, "standing": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "her": {"_count": 1, "nose": {"_count": 1}}, "their": {"_count": 1, "possessions": {"_count": 1}}, "turned": {"_count": 1, "her": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 1}, "before": {"_count": 1}, "possible": {"_count": 2}}, "hoped": {"_count": 1, "and": {"_count": 1}}, "visiting": {"_count": 1, "those": {"_count": 1}}, "publicized": {"_count": 1, "remarks": {"_count": 1}}, "spaced": {"_count": 1, "the": {"_count": 1}}}, "searched": {"_count": 36, "had": {"_count": 2, "in": {"_count": 2}}, "for": {"_count": 4, "evidence": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "the": {"_count": 10, "whole": {"_count": 2}, "bushes": {"_count": 1}, "castle": {"_count": 1}, "Malfoys": {"_count": 1}, "Slytherin": {"_count": 1}, "house": {"_count": 1}, "room": {"_count": 1}, "Burrow": {"_count": 1}, "pages": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "my": {"_count": 1, "office": {"_count": 1}}, "his": {"_count": 2, "office": {"_count": 1}, "face": {"_count": 1}}, "through": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 1, "single": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "when": {"_count": 1, "we": {"_count": 1}}, "in": {"_count": 1, "vain": {"_count": 1}}, "too": {"_count": 1, "although": {"_count": 1}}, "before": {"_count": 2, "me": {"_count": 1}, "them": {"_count": 1}}, "and": {"_count": 1, "located": {"_count": 1}}}, "emptied": {"_count": 23, "the": {"_count": 7, "same": {"_count": 1}, "bottle": {"_count": 1}, "shining": {"_count": 1}, "glass": {"_count": 1}, "phial": {"_count": 1}, "last": {"_count": 1}, "cauldron": {"_count": 1}}, "earlier": {"_count": 1, "that": {"_count": 1}}, "vault": {"_count": 1, "seven": {"_count": 1}}, "as": {"_count": 2, "people": {"_count": 2}}, "of": {"_count": 1, "all": {"_count": 1}}, "his": {"_count": 3, "hiding": {"_count": 1}, "pockets": {"_count": 2}}, "repeatedly": {"_count": 1, "over": {"_count": 1}}, "slowly": {"_count": 1, "around": {"_count": 1}}, "not": {"_count": 1, "just": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "an": {"_count": 1, "entire": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "once": {"_count": 1, "more": {"_count": 1}}}, "spokesgoblin": {"_count": 1, "this": {"_count": 1, "afternoon": {"_count": 1}}}, "date": {"_count": 40, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 2}}, "o": {"_count": 1, "course": {"_count": 1}}, "then": {"_count": 1, "falling": {"_count": 1}}, "is": {"_count": 1, "uncertain": {"_count": 1}}, "to": {"_count": 2, "be": {"_count": 1}, "an": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 11, "next": {"_count": 1}, "death": {"_count": 1}, "birth": {"_count": 1}, "the": {"_count": 4}, "your": {"_count": 1}, "their": {"_count": 1}, "some": {"_count": 1}, "Harrys": {"_count": 1}}, "you": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "time": {"_count": 1}}, "with": {"_count": 2, "all": {"_count": 1}, "Cho": {"_count": 1}}, "changes": {"_count": 1, "so": {"_count": 1}}, "on": {"_count": 2, "bits": {"_count": 1}, "recent": {"_count": 1}}, "copies": {"_count": 1, "of": {"_count": 1}}, "this": {"_count": 1, "increased": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 1, "their": {"_count": 1}}, "the": {"_count": 1, "twentyfirst": {"_count": 1}}, "wrong": {"_count": 1, "hes": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}, "textbooks": {"_count": 1, "that": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}}, "mightve": {"_count": 24, "been": {"_count": 4, "happening": {"_count": 1}, "Bill": {"_count": 1}, "good": {"_count": 1}, "arrested": {"_count": 1}}, "left": {"_count": 1, "it": {"_count": 1}}, "noticed": {"_count": 1, "the": {"_count": 1}}, "heard": {"_count": 1, "about": {"_count": 1}}, "had": {"_count": 1, "an": {"_count": 1}}, "picked": {"_count": 1, "it": {"_count": 1}}, "mentioned": {"_count": 1, "it": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "bent": {"_count": 1, "a": {"_count": 1}}, "got": {"_count": 3, "there": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "cracked": {"_count": 1, "and": {"_count": 1}}, "run": {"_count": 1, "straight": {"_count": 1}}, "done": {"_count": 2, "something": {"_count": 1}, "the": {"_count": 1}}, "dealt": {"_count": 1, "with": {"_count": 1}}, "killed": {"_count": 1, "one": {"_count": 1}}, "thought": {"_count": 1, "that": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}}, "Had": {"_count": 68, "that": {"_count": 1, "been": {"_count": 1}}, "Hagrid": {"_count": 3, "collected": {"_count": 1}, "wanted": {"_count": 1}, "perhaps": {"_count": 1}}, "it": {"_count": 6, "really": {"_count": 1}, "in": {"_count": 1}, "not": {"_count": 1}, "worked": {"_count": 1}, "simply": {"_count": 1}, "been": {"_count": 1}}, "Harry": {"_count": 2, "thought": {"_count": 1}, "been": {"_count": 1}}, "to": {"_count": 5, "let": {"_count": 1}, "come": {"_count": 1}, "wait": {"_count": 1}, "get": {"_count": 1}, "look": {"_count": 1}}, "the": {"_count": 5, "story": {"_count": 1}, "whole": {"_count": 1}, "Ministry": {"_count": 1}, "Order": {"_count": 1}, "old": {"_count": 1}}, "he": {"_count": 10, "thought": {"_count": 3}, "already": {"_count": 1}, "been": {"_count": 2}, "overheard": {"_count": 1}, "made": {"_count": 1}, "told": {"_count": 1}, "not": {"_count": 1}}, "a": {"_count": 8, "good": {"_count": 4}, "nice": {"_count": 1}, "nightmare": {"_count": 1}, "bad": {"_count": 1}, "houseelf": {"_count": 1}}, "their": {"_count": 1, "joke": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "all": {"_count": 1, "four": {"_count": 1}}, "they": {"_count": 5, "been": {"_count": 2}, "simply": {"_count": 1}, "all": {"_count": 1}, "taken": {"_count": 1}}, "and": {"_count": 1, "What": {"_count": 1}}, "there": {"_count": 1, "been": {"_count": 1}}, "once": {"_count": 1, "held": {"_count": 1}}, "Dumbledore": {"_count": 6, "suffered": {"_count": 1}, "forgotten": {"_count": 1}, "expected": {"_count": 1}, "visited": {"_count": 1}, "actually": {"_count": 1}, "come": {"_count": 1}}, "she": {"_count": 3, "been": {"_count": 1}, "put": {"_count": 1}, "enticed": {"_count": 1}}, "his": {"_count": 1, "last": {"_count": 1}}, "Voldemort": {"_count": 2, "chosen": {"_count": 1}, "too": {"_count": 1}}, "Lucius": {"_count": 1, "known": {"_count": 1}}, "Ron": {"_count": 1, "Hermione": {"_count": 1}}, "Dumbledores": {"_count": 1, "sister": {"_count": 1}}, "some": {"_count": 1, "unknown": {"_count": 1}}, "Lupin": {"_count": 1, "forgiven": {"_count": 1}}}, "thieves": {"_count": 5, "were": {"_count": 1, "looking": {"_count": 1}}, "and": {"_count": 1, "plunderers": {"_count": 1}}, "poor": {"_count": 1, "old": {"_count": 1}}, "of": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "weighed": {"_count": 9, "down": {"_count": 2, "with": {"_count": 2}}, "more": {"_count": 1, "heavily": {"_count": 1}}, "him": {"_count": 2, "down": {"_count": 2}}, "his": {"_count": 1, "chances": {"_count": 1}}, "every": {"_count": 1, "word": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "refuse": {"_count": 17, "Harry": {"_count": 1, "thought": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "there": {"_count": 1}}, "the": {"_count": 1, "promptings": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 7, "talk": {"_count": 1}, "accept": {"_count": 2}, "believe": {"_count": 1}, "surrender": {"_count": 1}, "share": {"_count": 1}, "tell": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 1, "anything": {"_count": 1}}, "and": {"_count": 1, "But": {"_count": 1}}}, "collected": {"_count": 14, "that": {"_count": 1, "package": {"_count": 1}}, "the": {"_count": 2, "papers": {"_count": 1}, "Firebolt": {"_count": 1}}, "his": {"_count": 2, "Nimbus": {"_count": 1}, "water": {"_count": 1}}, "several": {"_count": 1, "pints": {"_count": 1}}, "glasses": {"_count": 1, "from": {"_count": 1}}, "their": {"_count": 1, "schoolbags": {"_count": 1}}, "balls": {"_count": 1, "from": {"_count": 1}}, "gold": {"_count": 1, "from": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "amongst": {"_count": 1}}}, "9": {"_count": 9, "THE": {"_count": 4, "MIDNIGHT": {"_count": 1}, "WRITING": {"_count": 1}, "DARK": {"_count": 1}, "HALFBLOOD": {"_count": 1}}, "GRIM": {"_count": 1, "DEFEAT": {"_count": 1}}, "oclock": {"_count": 2, "Arithmancy": {"_count": 1}, "Transfiguration": {"_count": 1}}, "a": {"_count": 1, "": {"_count": 1}}, "A": {"_count": 1, "PLACE": {"_count": 1}}}, "MIDNIGHT": {"_count": 1, "DUEL": {"_count": 1, "Harry": {"_count": 1}}}, "DUEL": {"_count": 1, "Harry": {"_count": 1, "had": {"_count": 1}}}, "firstyear": {"_count": 6, "Gryffindors": {"_count": 1, "only": {"_count": 1}}, "rule": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 2, "went": {"_count": 1}, "as": {"_count": 1}}, "girls": {"_count": 1, "into": {"_count": 1}}, "theyd": {"_count": 1, "chained": {"_count": 1}}}, "groan": {"_count": 19, "": {"_count": 7, ".": {"_count": 7}}, "Gilderoy": {"_count": 1, "Lockhart": {"_count": 1}}, "rose": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 5, "pulled": {"_count": 1}, "silence": {"_count": 1}, "began": {"_count": 1}, "dropped": {"_count": 1}, "Harry": {"_count": 1}}, "of": {"_count": 2, "bedsprings": {"_count": 1}, "longing": {"_count": 1}}}, "Flying": {"_count": 8, "lessons": {"_count": 1, "would": {"_count": 1}}, "a": {"_count": 2, "car": {"_count": 2}}, "with": {"_count": 3, "the": {"_count": 3}}, "came": {"_count": 1, "more": {"_count": 1}}, "Charm": {"_count": 1, "on": {"_count": 1}}}, "Thursday": {"_count": 20, "and": {"_count": 2, "Gryffindor": {"_count": 1}, "Harry": {"_count": 1}}, "she": {"_count": 1, "bored": {"_count": 1}}, "afternoons": {"_count": 2, "double": {"_count": 1}, "lesson": {"_count": 1}}, "morning": {"_count": 2, "when": {"_count": 1}, "was": {"_count": 1}}, "evening": {"_count": 4, "to": {"_count": 1}, "": {"_count": 2}, "Harry": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "lunchtime": {"_count": 1, "and": {"_count": 1}}, "night": {"_count": 1, "Harry": {"_count": 1}}, "afternoon": {"_count": 1, "to": {"_count": 1}}, "passed": {"_count": 1, "in": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}}, "Typical": {"_count": 3, "said": {"_count": 2, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "Dad": {"_count": 1, "said": {"_count": 1}}}, "fool": {"_count": 37, "of": {"_count": 6, "myself": {"_count": 1}, "yourself": {"_count": 1}, "himself": {"_count": 2}, "a": {"_count": 1}, "He": {"_count": 1}}, "snarled": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "be": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "enough": {"_count": 2, "to": {"_count": 2}}, "those": {"_count": 1, "dementors": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 4}, "!": {"_count": 2}, "?": {"_count": 2}}, "the": {"_count": 1, "Goblet": {"_count": 1}}, "so": {"_count": 1, "Cho": {"_count": 1}}, "him": {"_count": 1, "Why": {"_count": 1}}, "who": {"_count": 1, "gave": {"_count": 1}}, "from": {"_count": 1, "morning": {"_count": 1}}, "even": {"_count": 1, "Dumbledore": {"_count": 1}}, "himself": {"_count": 2, "that": {"_count": 2}}, "honestly": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "risk": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "imagined": {"_count": 1, "that": {"_count": 1}}, "Peevesl": {"_count": 1, "Havent": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "reasonably": {"_count": 20, "": {"_count": 8, ".": {"_count": 8}}, "priced": {"_count": 1, "Im": {"_count": 1}}, "ignore": {"_count": 1, "it": {"_count": 1}}, "well": {"_count": 3, "and": {"_count": 1}, "matched": {"_count": 1}, "on": {"_count": 1}}, "pleased": {"_count": 1, "with": {"_count": 1}}, "wellcared": {"_count": 1, "for": {"_count": 1}}, "happy": {"_count": 1, "with": {"_count": 1}}, "firm": {"_count": 1, "sources": {"_count": 1}}, "confident": {"_count": 1, "that": {"_count": 1}}, "wellknown": {"_count": 1, "wizards": {"_count": 1}}, "talented": {"_count": 1, "": {"_count": 1}}}, "boastful": {"_count": 2, "stories": {"_count": 1, "that": {"_count": 1}}, "confession": {"_count": 1, "": {"_count": 1}}}, "stories": {"_count": 44, "that": {"_count": 2, "always": {"_count": 1}, "he": {"_count": 1}}, "chased": {"_count": 1, "each": {"_count": 1}}, "high": {"_count": 1, "and": {"_count": 1}}, "are": {"_count": 2, "true": {"_count": 1}, "supposed": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 3}, "!": {"_count": 2}, "?": {"_count": 4}}, "make": {"_count": 1, "sense": {"_count": 1}}, "all": {"_count": 1, "year": {"_count": 1}}, "about": {"_count": 7, "him": {"_count": 1}, "Harry": {"_count": 2}, "Dumbledore": {"_count": 2}, "extra": {"_count": 1}, "a": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 1, "boy": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "thinks": {"_count": 1}}, "circulating": {"_count": 1, "about": {"_count": 1}}, "of": {"_count": 5, "disappearances": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}, "hauntings": {"_count": 1}, "wizards": {"_count": 1}}, "so": {"_count": 1, "sensational": {"_count": 1}}, "they": {"_count": 1, "tell": {"_count": 1}}, "get": {"_count": 1, "distorted": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "have": {"_count": 1, "little": {"_count": 1}}, "I": {"_count": 1, "knew": {"_count": 1}}, "weve": {"_count": 1, "been": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "narrowly": {"_count": 27, "escaping": {"_count": 1, "Muggles": {"_count": 1}}, "missed": {"_count": 6, "Harrys": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}, "concussing": {"_count": 1}, "Sirius": {"_count": 1}, "": {"_count": 1}}, "avoiding": {"_count": 6, "being": {"_count": 1}, "a": {"_count": 2}, "Seamuss": {"_count": 1}, "the": {"_count": 2}}, "that": {"_count": 1, "he": {"_count": 1}}, "missing": {"_count": 3, "Harry": {"_count": 2}, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "dodged": {"_count": 1, "an": {"_count": 1}}, "avoided": {"_count": 2, "falling": {"_count": 1}, "detection": {"_count": 1}}, "defeated": {"_count": 1, "by": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "escaped": {"_count": 4, "Voldemort": {"_count": 1}, "four": {"_count": 1}, "death": {"_count": 1}, "arrest": {"_count": 1}}}, "helicopters": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "childhood": {"_count": 8, "zooming": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "before": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "or": {"_count": 1, "youth": {"_count": 1}}, "the": {"_count": 1, "lawless": {"_count": 1}}}, "glider": {"_count": 1, "on": {"_count": 1, "Charlies": {"_count": 1}}}, "constantly": {"_count": 14, "": {"_count": 2, ".": {"_count": 2}}, "checking": {"_count": 1, "their": {"_count": 1}}, "repeated": {"_count": 1, "Dumbledores": {"_count": 1}}, "on": {"_count": 2, "revenge": {"_count": 1}, "the": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "reminded": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "flexing": {"_count": 1, "his": {"_count": 1}}, "craning": {"_count": 1, "necks": {"_count": 1}}, "telling": {"_count": 1, "the": {"_count": 1}}, "painfully": {"_count": 1, "on": {"_count": 1}}, "imagining": {"_count": 1, "that": {"_count": 1}}}, "argument": {"_count": 36, "with": {"_count": 5, "Dean": {"_count": 1}, "the": {"_count": 1}, "Seamus": {"_count": 1}, "Crabbe": {"_count": 1}, "his": {"_count": 1}}, "had": {"_count": 1, "broken": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "averted": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "you": {"_count": 1, "know": {"_count": 1}}, "then": {"_count": 1, "stomped": {"_count": 1}}, "down": {"_count": 1, "into": {"_count": 1}}, "about": {"_count": 3, "Bills": {"_count": 1}, "something": {"_count": 1}, "the": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "culminating": {"_count": 1, "in": {"_count": 1}}, "is": {"_count": 1, "making": {"_count": 1}}, "against": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "kept": {"_count": 1}}, "for": {"_count": 1, "doing": {"_count": 1}}, "we": {"_count": 1, "accept": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}}, "exciting": {"_count": 19, "about": {"_count": 1, "a": {"_count": 1}}, "than": {"_count": 2, "the": {"_count": 1}, "water": {"_count": 1}}, "thing": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "played": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "possibilities": {"_count": 1, "were": {"_count": 1}}, "player": {"_count": 1, "on": {"_count": 1}}, "mind": {"_count": 1, "you": {"_count": 1}}, "event": {"_count": 1, "over": {"_count": 1}}, "here": {"_count": 1, "than": {"_count": 1}}, "checkmate": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "new": {"_count": 1, "phase": {"_count": 1}}, "that": {"_count": 1, "might": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "saw": {"_count": 1, "a": {"_count": 1}}, "things": {"_count": 1, "are": {"_count": 1}}, "happen": {"_count": 1, "": {"_count": 1}}}, "prodding": {"_count": 17, "Deans": {"_count": 1, "poster": {"_count": 1}}, "a": {"_count": 1, "finger": {"_count": 1}}, "Errol": {"_count": 1, "gently": {"_count": 1}}, "and": {"_count": 1, "poking": {"_count": 1}}, "leeches": {"_count": 1, "to": {"_count": 1}}, "Crabbe": {"_count": 1, "s": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "little": {"_count": 1, "figures": {"_count": 1}}, "the": {"_count": 3, "thoughts": {"_count": 1}, "flames": {"_count": 1}, "parcel": {"_count": 1}}, "Harry": {"_count": 1, "in": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 2, "queen": {"_count": 2}}, "Ron": {"_count": 1, "out": {"_count": 1}}, "act": {"_count": 1, "with": {"_count": 1}}}, "Deans": {"_count": 6, "poster": {"_count": 1, "of": {"_count": 1}}, "side": {"_count": 1, "": {"_count": 1}}, "Seamuss": {"_count": 1, "and": {"_count": 1}}, "other": {"_count": 1, "side": {"_count": 1}}, "shoulder": {"_count": 1, "Harry": {"_count": 1}}, "instant": {"_count": 1, "dismissal": {"_count": 1}}}, "poster": {"_count": 24, "of": {"_count": 8, "West": {"_count": 1}, "himself": {"_count": 2}, "a": {"_count": 1}, "Viktor": {"_count": 1}, "the": {"_count": 3}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 3, "went": {"_count": 1}, "collapsed": {"_count": 1}, "pulled": {"_count": 1}}, "attached": {"_count": 1, "to": {"_count": 1}}, "beds": {"_count": 1, "with": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "shut": {"_count": 1, "Harry": {"_count": 1}}, "took": {"_count": 1, "his": {"_count": 1}}, "giving": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "By": {"_count": 1, "Order": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "purple": {"_count": 1, "like": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}}, "West": {"_count": 12, "Ham": {"_count": 4, "soccer": {"_count": 1}, "fan": {"_count": 1}, "football": {"_count": 1}, "colors": {"_count": 1}}, "Tower": {"_count": 4, "": {"_count": 4}}, "Country": {"_count": 4, "that": {"_count": 1}, "": {"_count": 1}, "too": {"_count": 1}, "village": {"_count": 1}}}, "Ham": {"_count": 4, "soccer": {"_count": 1, "team": {"_count": 1}}, "fan": {"_count": 1, "up": {"_count": 1}}, "football": {"_count": 1, "team": {"_count": 1}}, "colors": {"_count": 1, "": {"_count": 1}}}, "grandmother": {"_count": 22, "had": {"_count": 3, "never": {"_count": 1}, "in": {"_count": 1}, "sent": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 2}}, "well": {"_count": 1, "": {"_count": 1}}, "usually": {"_count": 1, "wears": {"_count": 1}}, "sent": {"_count": 1, "yours": {"_count": 1}}, "is": {"_count": 2, "doing": {"_count": 1}, "used": {"_count": 1}}, "was": {"_count": 1, "one": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "graciously": {"_count": 1, "bearing": {"_count": 1}}, "looking": {"_count": 1, "closely": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "wants": {"_count": 1, "": {"_count": 1}}, "learned": {"_count": 1, "to": {"_count": 1}}, "thinks": {"_count": 1, "Charms": {"_count": 1}}}, "Privately": {"_count": 2, "Harry": {"_count": 1, "felt": {"_count": 1}}, "and": {"_count": 1, "separately": {"_count": 1}}}, "accidents": {"_count": 15, "even": {"_count": 2, "with": {"_count": 1}, "of": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "first": {"_count": 1}, "crashes": {"_count": 1}}, "and": {"_count": 2, "injuries": {"_count": 1}, "burns": {"_count": 1}}, "when": {"_count": 1, "objects": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "aren": {"_count": 1, "they": {"_count": 1}}, "working": {"_count": 1, "harder": {"_count": 1}}, "said": {"_count": 1, "Firenze": {"_count": 1}}, "don": {"_count": 1, "yeh": {"_count": 1}}, "arent": {"_count": 1, "accidents": {"_count": 1}}}, "tips": {"_count": 30, "shed": {"_count": 1, "gotten": {"_count": 1}}, "of": {"_count": 18, "his": {"_count": 12}, "Dumbledore": {"_count": 2}, "its": {"_count": 1}, "Harrys": {"_count": 1}, "those": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 1}, "!": {"_count": 1}}, "away": {"_count": 1, "the": {"_count": 1}}, "ignited": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "pointing": {"_count": 1}}, "Dolohov": {"_count": 1, "drew": {"_count": 1}}, "written": {"_count": 1, "in": {"_count": 1}}, "reaching": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}}, "Ages": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "which": {"_count": 1, "turned": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "and": {"_count": 1, "ages": {"_count": 1}}}, "everybody": {"_count": 73, "else": {"_count": 15, "was": {"_count": 3}, "clapped": {"_count": 1}, "proceeded": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 2}, "had": {"_count": 2}, "making": {"_count": 1}, "has": {"_count": 1}, "stretched": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 1}}, "knowing": {"_count": 1, "youve": {"_count": 1}}, "started": {"_count": 1, "talking": {"_count": 1}}, "there": {"_count": 1, "seemed": {"_count": 1}}, "except": {"_count": 4, "the": {"_count": 1}, "Harry": {"_count": 1}, "Luna": {"_count": 1}, "each": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "should": {"_count": 2, "start": {"_count": 1}, "write": {"_count": 1}}, "up": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "celebrated": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "believed": {"_count": 1}}, "from": {"_count": 1, "Albus": {"_count": 1}}, "what": {"_count": 1, "had": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "steering": {"_count": 1, "Harry": {"_count": 1}}, "applauded": {"_count": 1, "once": {"_count": 1}}, "sat": {"_count": 2, "down": {"_count": 1}, "in": {"_count": 1}}, "was": {"_count": 2, "very": {"_count": 1}, "watching": {"_count": 1}}, "still": {"_count": 1, "staring": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "Harry": {"_count": 1}}, "moved": {"_count": 2, "toward": {"_count": 1}, "forward": {"_count": 1}}, "scrambled": {"_count": 1, "to": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 3, "this": {"_count": 2}, "the": {"_count": 1}}, "had": {"_count": 3, "pulled": {"_count": 1}, "been": {"_count": 1}, "achieved": {"_count": 1}}, "looked": {"_count": 3, "stunned": {"_count": 1}, "around": {"_count": 1}, "at": {"_count": 1}}, "when": {"_count": 1, "weve": {"_count": 1}}, "fell": {"_count": 2, "silent": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "stopped": {"_count": 1, "shouting": {"_count": 1}}, "about": {"_count": 1, "You": {"_count": 1}}, "youre": {"_count": 1, "free": {"_count": 1}}, "gazing": {"_count": 1, "openmouthed": {"_count": 1}}, "since": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 1, "but": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "so": {"_count": 2, "much": {"_count": 1}, "determined": {"_count": 1}}, "elses": {"_count": 1, "heads": {"_count": 1}}, "and": {"_count": 1, "do": {"_count": 1}}, "expected": {"_count": 1, "spectacular": {"_count": 1}}, "it": {"_count": 1, "fell": {"_count": 1}}}, "lecture": {"_count": 5, "was": {"_count": 1, "interrupted": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 2, "about": {"_count": 2}}}, "arrival": {"_count": 40, "of": {"_count": 17, "the": {"_count": 8}, "twenty": {"_count": 1}, "dementors": {"_count": 1}, "his": {"_count": 1}, "Angelina": {"_count": 1}, "Ron": {"_count": 1}, "Fudge": {"_count": 1}, "an": {"_count": 1}, "Madame": {"_count": 1}, "Charlie": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 2, "about": {"_count": 1}, "flung": {"_count": 1}}, "at": {"_count": 4, "their": {"_count": 1}, "Mr": {"_count": 1}, "Hogwarts": {"_count": 1}, "the": {"_count": 1}}, "suddenly": {"_count": 1, "broke": {"_count": 1}}, "that": {"_count": 1, "evening": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "however": {"_count": 1, "because": {"_count": 1}}, "straighten": {"_count": 1, "up": {"_count": 1}}, "three": {"_count": 1, "days": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "George": {"_count": 1, "stirred": {"_count": 1}}, "came": {"_count": 1, "as": {"_count": 1}}, "had": {"_count": 1, "drained": {"_count": 1}}}, "gloatingly": {"_count": 2, "at": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "strode": {"_count": 1}}}, "barn": {"_count": 16, "owl": {"_count": 13, "brought": {"_count": 1}, "swooped": {"_count": 1}, "landed": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}, "had": {"_count": 1}, "was": {"_count": 2}, "took": {"_count": 1}, "over": {"_count": 1}, "bearing": {"_count": 1}, "on": {"_count": 1}}, "owls": {"_count": 3, "a": {"_count": 1}, "": {"_count": 1}, "other": {"_count": 1}}}, "Remembrall": {"_count": 9, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "had": {"_count": 1, "suddenly": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "glittered": {"_count": 1, "in": {"_count": 1}}, "clutched": {"_count": 1, "safely": {"_count": 1}}, "I": {"_count": 1, "wouldnt": {"_count": 1}}}, "tells": {"_count": 22, "you": {"_count": 3, "if": {"_count": 1}, "and": {"_count": 1}, "about": {"_count": 1}}, "me": {"_count": 9, "youre": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 3}, "": {"_count": 1}, "is": {"_count": 1}, "she": {"_count": 1}, "anything": {"_count": 1}}, "anyone": {"_count": 1, "youd": {"_count": 1}}, "naught": {"_count": 1, "but": {"_count": 1}}, "ridiculous": {"_count": 1, "tall": {"_count": 1}}, "them": {"_count": 1, "personally": {"_count": 1}}, "him": {"_count": 1, "we": {"_count": 1}}, "em": {"_count": 1, "to": {"_count": 1}}, "us": {"_count": 2, "transparent": {"_count": 1}, "you": {"_count": 1}}, "the": {"_count": 2, "news": {"_count": 1}, "truth": {"_count": 1}}}, "turns": {"_count": 34, "red": {"_count": 1, "oh": {"_count": 1}}, "up": {"_count": 8, "who": {"_count": 1}, "": {"_count": 2}, "today": {"_count": 1}, "on": {"_count": 1}, "this": {"_count": 1}, "Impedi": {"_count": 1}, "there": {"_count": 1}}, "riding": {"_count": 1, "Harrys": {"_count": 1}}, "covering": {"_count": 1, "themselves": {"_count": 1}}, "out": {"_count": 3, "it": {"_count": 1}, "you": {"_count": 2}}, "should": {"_count": 2, "do": {"_count": 2}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "to": {"_count": 10, "host": {"_count": 1}, "the": {"_count": 1}, "demonstrate": {"_count": 1}, "practice": {"_count": 1}, "point": {"_count": 1}, "look": {"_count": 1}, "hug": {"_count": 1}, "write": {"_count": 1}, "don": {"_count": 1}, "keep": {"_count": 1}}, "a": {"_count": 1, "blind": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "seventeen": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "wearing": {"_count": 1, "it": {"_count": 1}}, "opaque": {"_count": 1, "": {"_count": 1}}}, "quicker": {"_count": 13, "than": {"_count": 2, "any": {"_count": 1}, "I": {"_count": 1}}, "at": {"_count": 2, "thinking": {"_count": 1}, "remembering": {"_count": 1}}, "this": {"_count": 1, "way": {"_count": 1}}, "he": {"_count": 1, "leaves": {"_count": 1}}, "dear": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "just": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "we": {"_count": 1, "get": {"_count": 1}}}, "Scowling": {"_count": 4, "Malfoy": {"_count": 1, "quickly": {"_count": 1}}, "Harry": {"_count": 1, "readjusted": {"_count": 1}}, "he": {"_count": 1, "bowed": {"_count": 1}}, "Snape": {"_count": 1, "said": {"_count": 1}}}, "threethirty": {"_count": 1, "that": {"_count": 1, "afternoon": {"_count": 1}}}, "breezy": {"_count": 6, "day": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "neither": {"_count": 1}, "as": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "courtyard": {"_count": 1, "Harry": {"_count": 1}}, "hillside": {"_count": 1, "to": {"_count": 1}}}, "rippled": {"_count": 7, "under": {"_count": 1, "their": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "occasionally": {"_count": 1, "in": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "fanlike": {"_count": 1, "across": {"_count": 1}}}, "sloping": {"_count": 18, "lawns": {"_count": 7, "toward": {"_count": 3}, "to": {"_count": 2}, "": {"_count": 1}, "from": {"_count": 1}}, "ceiling": {"_count": 2, "and": {"_count": 2}}, "downward": {"_count": 2, "though": {"_count": 1}, "all": {"_count": 1}}, "steeply": {"_count": 2, "downward": {"_count": 1}, "down": {"_count": 1}}, "drive": {"_count": 1, "up": {"_count": 1}}, "lawn": {"_count": 3, "toward": {"_count": 3}}, "downhill": {"_count": 1, "like": {"_count": 1}}}, "lawns": {"_count": 20, "toward": {"_count": 6, "a": {"_count": 1}, "the": {"_count": 4}, "Hagrids": {"_count": 1}}, "losing": {"_count": 1, "altitude": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "Hagrids": {"_count": 1}, "Madame": {"_count": 1}}, "Frank": {"_count": 1, "worked": {"_count": 1}}, "overlooking": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}, "all": {"_count": 1, "owned": {"_count": 1}}, "not": {"_count": 1, "talking": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "rippled": {"_count": 1, "occasionally": {"_count": 1}}, "slippery": {"_count": 1, "and": {"_count": 1}}}, "lawn": {"_count": 55, "on": {"_count": 2, "the": {"_count": 2}}, "slumped": {"_count": 1, "down": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "trimmed": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "Crookshanks": {"_count": 1, "trotting": {"_count": 1}}, "toward": {"_count": 8, "the": {"_count": 5}, "Hagrid": {"_count": 1}, "Hagrids": {"_count": 1}, "them": {"_count": 1}}, "and": {"_count": 3, "its": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "smashing": {"_count": 1, "into": {"_count": 1}}, "with": {"_count": 1, "Madame": {"_count": 1}}, "the": {"_count": 1, "class": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "past": {"_count": 1, "the": {"_count": 1}}, "stepped": {"_count": 1, "over": {"_count": 1}}, "competition": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 1, "Cedrics": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "there": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "mower": {"_count": 2, "look": {"_count": 1}, "stalled": {"_count": 1}}, "Ron": {"_count": 1, "rounded": {"_count": 1}}, "once": {"_count": 1, "keeping": {"_count": 1}}, "at": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}}, "swaying": {"_count": 29, "darkly": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "in": {"_count": 3, "procession": {"_count": 1}, "time": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "dangerously": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "slightly": {"_count": 3, "on": {"_count": 1}, "until": {"_count": 1}, "and": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "very": {"_count": 1, "heavily": {"_count": 1}}, "lamp": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "carriages": {"_count": 1}}, "tentacles": {"_count": 1, "on": {"_count": 1}}, "ominously": {"_count": 1, "": {"_count": 1}}, "happily": {"_count": 1, "on": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "veil": {"_count": 2, "": {"_count": 2}}, "where": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "over": {"_count": 1, "Ron": {"_count": 1}}, "more": {"_count": 1, "frightened": {"_count": 1}}, "branches": {"_count": 1, "": {"_count": 1}}}, "vibrate": {"_count": 7, "if": {"_count": 1, "you": {"_count": 1}}, "more": {"_count": 1, "powerfully": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "violently": {"_count": 1, "then": {"_count": 1}}}, "hawk": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}}, "twigs": {"_count": 22, "stuck": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 5, "Nimbus": {"_count": 1}, "a": {"_count": 1}, "rustling": {"_count": 1}, "leaves": {"_count": 2}}, "he": {"_count": 2, "seems": {"_count": 1}, "knew": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}, "to": {"_count": 1, "clip": {"_count": 1}}, "clenched": {"_count": 1, "like": {"_count": 1}}, "the": {"_count": 1, "rustling": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 1, "front": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "poor": {"_count": 1, "little": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "soft": {"_count": 1, "swishes": {"_count": 1}}}, "angles": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "where": {"_count": 1, "it": {"_count": 1}}, "Harrys": {"_count": 1, "hit": {"_count": 1}}, "of": {"_count": 1, "her": {"_count": 1}}}, "Stick": {"_count": 4, "out": {"_count": 1, "your": {"_count": 1}}, "together": {"_count": 1, "first": {"_count": 1}}, "it": {"_count": 1, "back": {"_count": 1}}, "your": {"_count": 1, "fingers": {"_count": 1}}}, "\u2018Up": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "UP": {"_count": 15, "": {"_count": 10, "!": {"_count": 9}, ".": {"_count": 1}}, "TO": {"_count": 1, "BEHAVE": {"_count": 1}}, "AND": {"_count": 1, "SIRIUS": {"_count": 1}}, "HERE": {"_count": 3, "": {"_count": 1}, "SIRIUS": {"_count": 1}, "TOGETHER": {"_count": 1}}}, "Grangers": {"_count": 9, "had": {"_count": 1, "simply": {"_count": 1}}, "done": {"_count": 1, "it": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "shaking": {"_count": 1, "with": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "voice": {"_count": 1, "seemed": {"_count": 1}}, "doubtful": {"_count": 1, "natural": {"_count": 1}}, "said": {"_count": 1, "Cho": {"_count": 1}}}, "horses": {"_count": 44, "could": {"_count": 1, "tell": {"_count": 1}}, "gleaming": {"_count": 1, "chestnut": {"_count": 1}}, "each": {"_count": 1, "ridden": {"_count": 1}}, "galloped": {"_count": 1, "into": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "palominos": {"_count": 1}}, "hooves": {"_count": 1, "larger": {"_count": 1}}, "tossed": {"_count": 1, "their": {"_count": 1}}, "was": {"_count": 1, "immediately": {"_count": 1}}, "are": {"_count": 1, "going": {"_count": 1}}, "snorting": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 1, "Harry": {"_count": 1}}, "well": {"_count": 1, "provided": {"_count": 1}}, "were": {"_count": 2, "shivering": {"_count": 1}, "standing": {"_count": 1}}, "paddock": {"_count": 1, "Krum": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "though": {"_count": 1, "there": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "moving": {"_count": 1, "beyond": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 2}}, "I": {"_count": 1, "dunno": {"_count": 1}}, "Harry": {"_count": 1, "raised": {"_count": 1}}, "came": {"_count": 1, "quietly": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "who": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "chestnut": {"_count": 1, "body": {"_count": 1}}, "silken": {"_count": 1, "back": {"_count": 1}}, "manes": {"_count": 1, "and": {"_count": 1}}, "neck": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "silky": {"_count": 1, "mane": {"_count": 1}}, "and": {"_count": 1, "loud": {"_count": 1}}, "flank": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}}, "quaver": {"_count": 1, "in": {"_count": 1, "Nevilles": {"_count": 1}}}, "mount": {"_count": 6, "their": {"_count": 2, "brooms": {"_count": 2}}, "the": {"_count": 1, "fat": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "bucking": {"_count": 1}}}, "rows": {"_count": 39, "correcting": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "of": {"_count": 16, "books": {"_count": 1}, "desks": {"_count": 1}, "tents": {"_count": 1}, "seats": {"_count": 1}, "students": {"_count": 1}, "witches": {"_count": 2}, "benches": {"_count": 2}, "towering": {"_count": 1}, "shelves": {"_count": 1}, "glass": {"_count": 1}, "dilapidated": {"_count": 1}, "fragile": {"_count": 1}, "tombstones": {"_count": 1}, "golden": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "staring": {"_count": 2, "eagerly": {"_count": 1}, "down": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 6, "rows": {"_count": 5}, "bits": {"_count": 1}}, "asking": {"_count": 1, "questions": {"_count": 1}}, "below": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "expression": {"_count": 1}}, "at": {"_count": 1, "small": {"_count": 1}}, "behind": {"_count": 1, "Kendra": {"_count": 1}}}, "correcting": {"_count": 1, "their": {"_count": 1, "grips": {"_count": 1}}}, "grips": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "what": {"_count": 1}}}, "Keep": {"_count": 45, "your": {"_count": 19, "brooms": {"_count": 1}, "voice": {"_count": 7}, "fingers": {"_count": 1}, "fat": {"_count": 1}, "eyes": {"_count": 2}, "head": {"_count": 1}, "nose": {"_count": 1}, "wand": {"_count": 2}, "airnet": {"_count": 1}, "wands": {"_count": 1}, "seat": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "the": {"_count": 1, "egg": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "playing": {"_count": 1, "Ron": {"_count": 1}}, "to": {"_count": 1, "Diagon": {"_count": 1}}, "talking": {"_count": 1, "Malfoy": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "big": {"_count": 1}}, "back": {"_count": 1, "there": {"_count": 1}}, "in": {"_count": 3, "touch": {"_count": 3}}, "walking": {"_count": 1, "then": {"_count": 1}}, "pecking": {"_count": 1, "them": {"_count": 1}}, "muttering": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "going": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "safe": {"_count": 1}}, "twiddling": {"_count": 1, "those": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "faith": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "them": {"_count": 1}}, "an": {"_count": 1, "eye": {"_count": 1}}}, "steady": {"_count": 33, "rise": {"_count": 2, "a": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "trickle": {"_count": 1, "of": {"_count": 1}}, "drip": {"_count": 1, "drip": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "girlfriend": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 1, "tightened": {"_count": 1}}, "and": {"_count": 1, "carry": {"_count": 1}}, "is": {"_count": 1, "why": {"_count": 1}}, "stream": {"_count": 1, "of": {"_count": 1}}, "rush": {"_count": 1, "of": {"_count": 1}}, "business": {"_count": 1, "theyre": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "himself": {"_count": 3, "": {"_count": 2}, "trying": {"_count": 1}}, "prevented": {"_count": 1, "her": {"_count": 1}}, "dripping": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "rhythm": {"_count": 1, "of": {"_count": 1}}, "pounding": {"_count": 1, "of": {"_count": 1}}}, "rise": {"_count": 42, "a": {"_count": 1, "few": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "again": {"_count": 8, "": {"_count": 4}, "with": {"_count": 1}, "Crouch": {"_count": 1}, "and": {"_count": 1}, "more": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "moments": {"_count": 1, "later": {"_count": 1}}, "to": {"_count": 8, "power": {"_count": 6}, "Minister": {"_count": 1}, "his": {"_count": 1}}, "Bagman": {"_count": 1, "struggled": {"_count": 1}}, "slowly": {"_count": 1, "out": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "rapidly": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "wasnt": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "out": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "form": {"_count": 1}}}, "jumpy": {"_count": 5, "and": {"_count": 1, "frightened": {"_count": 1}}, "Harry": {"_count": 1, "set": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "lessons": {"_count": 1}}}, "Hoochs": {"_count": 12, "lips": {"_count": 1, "": {"_count": 1}}, "whistle": {"_count": 7, "rang": {"_count": 2}, "Harry": {"_count": 2}, "sounded": {"_count": 1}, "": {"_count": 1}, "kicked": {"_count": 1}}, "office": {"_count": 1, "since": {"_count": 1}}, "mouth": {"_count": 1, "form": {"_count": 1}}, "shrill": {"_count": 1, "whistle": {"_count": 1}}, "back": {"_count": 1, "was": {"_count": 1}}}, "rising": {"_count": 85, "straight": {"_count": 1, "up": {"_count": 1}}, "higher": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 7, "in": {"_count": 1}, "his": {"_count": 2}, "and": {"_count": 1}, "the": {"_count": 1}, "out": {"_count": 1}, "to": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "RiddikulusV": {"_count": 1, "cried": {"_count": 1}}, "in": {"_count": 8, "his": {"_count": 3}, "stands": {"_count": 1}, "levels": {"_count": 2}, "her": {"_count": 1}, "characteristic": {"_count": 1}}, "thirty": {"_count": 1, "forty": {"_count": 1}}, "around": {"_count": 1, "Blacks": {"_count": 1}}, "powerfully": {"_count": 1, "beneath": {"_count": 1}}, "squeakily": {"_count": 1, "": {"_count": 1}}, "gently": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "passionately": {"_count": 1, "because": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 3}}, "much": {"_count": 1, "earlier": {"_count": 1}}, "into": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "with": {"_count": 2, "him": {"_count": 1}, "every": {"_count": 1}}, "from": {"_count": 7, "Hagrids": {"_count": 1}, "the": {"_count": 3}, "its": {"_count": 1}, "your": {"_count": 1}, "an": {"_count": 1}}, "and": {"_count": 5, "falling": {"_count": 4}, "before": {"_count": 1}}, "slowly": {"_count": 1, "from": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "uncontrollably": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "fists": {"_count": 1}}, "to": {"_count": 3, "greet": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "apparently": {"_count": 1, "under": {"_count": 1}}, "rapidly": {"_count": 2, "inside": {"_count": 1}, "and": {"_count": 1}}, "like": {"_count": 1, "bile": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "panic": {"_count": 1, "in": {"_count": 1}}, "properly": {"_count": 1, "now": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "angrily": {"_count": 1, "": {"_count": 1}}, "stars": {"_count": 1, "Ive": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "ominously": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "color": {"_count": 1, "": {"_count": 1}}, "sun": {"_count": 1, "was": {"_count": 1}}, "tide": {"_count": 2, "of": {"_count": 1}, "but": {"_count": 1}}, "a": {"_count": 1, "terrible": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}}, "cork": {"_count": 10, "shot": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 2, "bubbly": {"_count": 1}, "it": {"_count": 1}}, "flew": {"_count": 2, "out": {"_count": 2}}, "was": {"_count": 1, "still": {"_count": 1}}, "necklace": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "pull": {"_count": 1}}, "unsteerable": {"_count": 1, "but": {"_count": 1}}}, "falling": {"_count": 105, "away": {"_count": 1, "saw": {"_count": 1}}, "asleep": {"_count": 4, "Neville": {"_count": 1}, "again": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "gathering": {"_count": 1, "speed": {"_count": 1}}, "more": {"_count": 1, "heavily": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "top": {"_count": 2}}, "limply": {"_count": 1, "at": {"_count": 1}}, "warm": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 5, "the": {"_count": 2}, "it": {"_count": 1}, "its": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 2, "with": {"_count": 1}, "a": {"_count": 1}}, "silent": {"_count": 1, "erupted": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 2}}, "over": {"_count": 3, "his": {"_count": 2}, "her": {"_count": 1}}, "deeper": {"_count": 1, "below": {"_count": 1}}, "its": {"_count": 1, "body": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "falling": {"_count": 3, "through": {"_count": 3}}, "through": {"_count": 11, "the": {"_count": 6}, "something": {"_count": 1}, "cold": {"_count": 1}, "whirling": {"_count": 1}, "darkness": {"_count": 1}, "nothingness": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "outside": {"_count": 2, "the": {"_count": 1}, "now": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 2}}, "again": {"_count": 1, "through": {"_count": 1}}, "sharply": {"_count": 1, "away": {"_count": 1}}, "thickly": {"_count": 5, "around": {"_count": 1}, "upon": {"_count": 1}, "outside": {"_count": 1}, "and": {"_count": 1}, "through": {"_count": 1}}, "back": {"_count": 2, "scattering": {"_count": 1}, "on": {"_count": 1}}, "face": {"_count": 1, "forward": {"_count": 1}}, "upon": {"_count": 1, "Mr": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "onto": {"_count": 4, "his": {"_count": 3}, "Bills": {"_count": 1}}, "gently": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 4, "step": {"_count": 1}, "her": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}}, "water": {"_count": 1, "was": {"_count": 1}}, "out": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "right": {"_count": 1, "down": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "standards": {"_count": 1, "at": {"_count": 1}}, "by": {"_count": 1, "seizing": {"_count": 1}}, "backward": {"_count": 2, "off": {"_count": 1}, "into": {"_count": 1}}, "apart": {"_count": 1, "at": {"_count": 1}}, "eggs": {"_count": 1, "Ive": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "darkness": {"_count": 1, "Harry": {"_count": 1}}, "body": {"_count": 1, "": {"_count": 1}}, "rapidly": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "then": {"_count": 1}}, "down": {"_count": 2, "steep": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "comically": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "each": {"_count": 1}}, "in": {"_count": 1, "earnest": {"_count": 1}}, "thick": {"_count": 1, "and": {"_count": 1}}, "sidecar": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "couldnt": {"_count": 1}}, "harder": {"_count": 1, "and": {"_count": 1}}, "forward": {"_count": 1, "she": {"_count": 1}}, "masonry": {"_count": 1, "glass": {"_count": 1}}, "stone": {"_count": 1, "the": {"_count": 1}}, "snow": {"_count": 1, "": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}}, "slip": {"_count": 58, "sideways": {"_count": 1, "off": {"_count": 1}}, "because": {"_count": 1, "how": {"_count": 1}}, "he": {"_count": 1, "started": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "Potter": {"_count": 2}}, "quietly": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "off": {"_count": 2, "over": {"_count": 1}, "Severus": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "bitten": {"_count": 1}, "I": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "that": {"_count": 4, "I": {"_count": 1}, "youre": {"_count": 1}, "youd": {"_count": 1}, "Potter": {"_count": 1}}, "dragon": {"_count": 1, "dung": {"_count": 1}}, "of": {"_count": 4, "parchment": {"_count": 4}}, "me": {"_count": 1, "snug": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "it": {"_count": 1}}, "the": {"_count": 3, "parchment": {"_count": 1}, "rope": {"_count": 1}, "wrapper": {"_count": 1}}, "by": {"_count": 2, "as": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 3, "further": {"_count": 1}, "disgusting": {"_count": 1}, "hairy": {"_count": 1}}, "him": {"_count": 1, "some": {"_count": 1}}, "inside": {"_count": 1, "just": {"_count": 1}}, "you": {"_count": 2, "in": {"_count": 1}, "a": {"_count": 1}}, "more": {"_count": 1, "like": {"_count": 1}}, "when": {"_count": 1, "telling": {"_count": 1}}, "round": {"_count": 1, "abou": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "Voldemorts": {"_count": 1}}, "his": {"_count": 2, "Invisibility": {"_count": 1}, "wand": {"_count": 1}}, "something": {"_count": 1, "into": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "Katie": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "inch": {"_count": 1}}, "ze": {"_count": 1, "date": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "after": {"_count": 1, "zey": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "WHAM": {"_count": 6, "a": {"_count": 1, "thud": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "A": {"_count": 2, "fist": {"_count": 1}, "Bludger": {"_count": 1}}}, "thud": {"_count": 38, "and": {"_count": 7, "a": {"_count": 3}, "another": {"_count": 1}, "two": {"_count": 1}, "they": {"_count": 1}, "somebody": {"_count": 1}}, "that": {"_count": 3, "made": {"_count": 1}, "could": {"_count": 1}, "Harry": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "front": {"_count": 1}}, "of": {"_count": 5, "metal": {"_count": 1}, "an": {"_count": 2}, "a": {"_count": 1}, "their": {"_count": 1}}, "he": {"_count": 1, "hit": {"_count": 1}}, "closed": {"_count": 1, "behind": {"_count": 1}}, "landing": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 3, "wood": {"_count": 1}, "the": {"_count": 2}}, "as": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "Professors": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "shut": {"_count": 1, "behind": {"_count": 1}}, "then": {"_count": 1, "Angelinas": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}}, "facedown": {"_count": 19, "on": {"_count": 7, "the": {"_count": 6}, "Saucy": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "lay": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "gasping": {"_count": 1, "coughing": {"_count": 1}}, "listening": {"_count": 1, "to": {"_count": 1}}}, "drift": {"_count": 9, "lazily": {"_count": 1, "toward": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "ahead": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "vaguely": {"_count": 1, "off": {"_count": 1}}, "almost": {"_count": 1, "casually": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}}, "lazily": {"_count": 24, "toward": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "clearly": {"_count": 1, "enjoying": {"_count": 1}}, "taking": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "Professor": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "across": {"_count": 1, "the": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "Mr": {"_count": 1}}, "over": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "vanishing": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "thats": {"_count": 1, "only": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "giving": {"_count": 1, "an": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}}, "bending": {"_count": 38, "over": {"_count": 15, "Neville": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 2}, "Snape": {"_count": 1}, "something": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 1}, "Dean": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "another": {"_count": 1}}, "down": {"_count": 8, "to": {"_count": 5}, "and": {"_count": 2}, "you": {"_count": 1}}, "and": {"_count": 1, "stretching": {"_count": 1}}, "closer": {"_count": 1, "he": {"_count": 1}}, "low": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "his": {"_count": 3, "knees": {"_count": 1}, "head": {"_count": 1}, "neck": {"_count": 1}}, "to": {"_count": 1, "examine": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "him": {"_count": 1, "ruthlessly": {"_count": 1}}, "forward": {"_count": 1, "now": {"_count": 1}}, "Harrys": {"_count": 1, "neck": {"_count": 1}}, "lower": {"_count": 1, "to": {"_count": 1}}, "very": {"_count": 1, "low": {"_count": 1}}, "again": {"_count": 1, "over": {"_count": 1}}}, "Broken": {"_count": 4, "wrist": {"_count": 1, "Harry": {"_count": 1}}, "Balls": {"_count": 1, "When": {"_count": 1}}, "ropes": {"_count": 1, "trailed": {"_count": 1}}, "images": {"_count": 1, "were": {"_count": 1}}}, "\u2018Quidditch": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tearstreaked": {"_count": 1, "clutching": {"_count": 1, "his": {"_count": 1}}}, "hobbled": {"_count": 6, "off": {"_count": 2, "with": {"_count": 1}, "back": {"_count": 1}}, "across": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "pranced": {"_count": 1}}, "away": {"_count": 1, "hunch": {"_count": 1}}}, "sooner": {"_count": 39, "were": {"_count": 1, "they": {"_count": 1}}, "had": {"_count": 11, "they": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 3}, "she": {"_count": 1}, "he": {"_count": 4}, "Mrs": {"_count": 1}}, "he": {"_count": 1, "got": {"_count": 1}}, "we": {"_count": 2, "get": {"_count": 2}}, "than": {"_count": 6, "later": {"_count": 1}, "he": {"_count": 2}, "you": {"_count": 2}, "I": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "let": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "torn": {"_count": 1, "off": {"_count": 1}}, "have": {"_count": 1, "picked": {"_count": 1}}, "much": {"_count": 1, "sooner": {"_count": 1}}, "or": {"_count": 3, "later": {"_count": 3}}, "theyll": {"_count": 1, "all": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "be": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 1, "weddings": {"_count": 1}}}, "earshot": {"_count": 22, "than": {"_count": 1, "Malfoy": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "then": {"_count": 1, "burst": {"_count": 1}}, "of": {"_count": 8, "Mr": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}, "Sirius": {"_count": 1}, "Hagrid": {"_count": 1}, "the": {"_count": 1}, "anyone": {"_count": 1}, "Mrs": {"_count": 1}}, "and": {"_count": 1, "went": {"_count": 1}}, "Harry": {"_count": 1, "turned": {"_count": 1}}, "whether": {"_count": 1, "Extendable": {"_count": 1}}, "before": {"_count": 1, "saying": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}}, "Parvati": {"_count": 125, "Patil": {"_count": 18, "": {"_count": 2}, "telling": {"_count": 1}, "in": {"_count": 3}, "youd": {"_count": 1}, "beware": {"_count": 1}, "and": {"_count": 3}, "who": {"_count": 1}, "nudged": {"_count": 1}, "when": {"_count": 1}, "had": {"_count": 1}, "wearily": {"_count": 1}, "whose": {"_count": 2}}, "": {"_count": 14, ".": {"_count": 10}, "!": {"_count": 3}, "?": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "whispered": {"_count": 5, "Oooh": {"_count": 1}, "": {"_count": 1}, "something": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 1}}, "walked": {"_count": 1, "forward": {"_count": 1}}, "and": {"_count": 23, "it": {"_count": 1}, "Lavender": {"_count": 15}, "said": {"_count": 1}, "the": {"_count": 2}, "she": {"_count": 1}, "Padma": {"_count": 2}, "Dean": {"_count": 1}}, "had": {"_count": 3, "her": {"_count": 1}, "seized": {"_count": 1}, "been": {"_count": 1}}, "tightened": {"_count": 1, "her": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "suddenly": {"_count": 2, "we": {"_count": 1}, "nudged": {"_count": 1}}, "looked": {"_count": 3, "deeply": {"_count": 1}, "astonished": {"_count": 1}, "scornfully": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "Patils": {"_count": 1, "twins": {"_count": 1}}, "her": {"_count": 1, "completed": {"_count": 1}}, "scowled": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "address": {"_count": 1}}, "went": {"_count": 1, "into": {"_count": 1}}, "slowly": {"_count": 1, "I": {"_count": 1}}, "was": {"_count": 5, "waiting": {"_count": 1}, "gazing": {"_count": 1}, "steering": {"_count": 1}, "curling": {"_count": 1}, "practicing": {"_count": 1}}, "shrugged": {"_count": 1, "": {"_count": 1}}, "found": {"_count": 2, "her": {"_count": 1}, "deeply": {"_count": 1}}, "in": {"_count": 3, "robes": {"_count": 1}, "a": {"_count": 2}}, "readjusted": {"_count": 1, "her": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "hissed": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "said": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "whose": {"_count": 1, "hand": {"_count": 1}}, "incredulously": {"_count": 1, "": {"_count": 1}}, "angry": {"_count": 1, "tears": {"_count": 1}}, "timidly": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "squealed": {"_count": 1, "": {"_count": 1}}, "demanded": {"_count": 1, "in": {"_count": 1}}, "looking": {"_count": 2, "alarmed": {"_count": 1}, "positively": {"_count": 1}}, "who": {"_count": 3, "shivered": {"_count": 1}, "was": {"_count": 1}, "like": {"_count": 1}}, "were": {"_count": 1, "both": {"_count": 1}}, "smirking": {"_count": 1, "": {"_count": 1}}, "bypassed": {"_count": 1, "the": {"_count": 1}}, "breathlessly": {"_count": 1, "raising": {"_count": 1}}, "raised": {"_count": 1, "her": {"_count": 1}}, "excitedly": {"_count": 1, "raising": {"_count": 1}}, "Potter": {"_count": 1, "Harry": {"_count": 1}}, "s": {"_count": 1, "head": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "a": {"_count": 1, "rather": {"_count": 1}}, "positively": {"_count": 1, "beamed": {"_count": 1}}, "gloomily": {"_count": 1, "": {"_count": 1}}, "wideeyed": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 1, "their": {"_count": 1}}, "with": {"_count": 1, "Travers": {"_count": 1}}, "shot": {"_count": 1, "a": {"_count": 1}}}, "Patil": {"_count": 32, "": {"_count": 2, ".": {"_count": 2}}, "But": {"_count": 1, "Malfoy": {"_count": 1}}, "telling": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 2}}, "youd": {"_count": 1, "probably": {"_count": 1}}, "beware": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 3, "Lavender": {"_count": 2}, "isnt": {"_count": 1}}, "who": {"_count": 2, "deeply": {"_count": 1}, "seemed": {"_count": 1}}, "take": {"_count": 1, "that": {"_count": 1}}, "nudged": {"_count": 1, "her": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "Ravenclaw": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "Harrys": {"_count": 1}}, "shuddered": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "produced": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "Padma": {"_count": 1, "Patil": {"_count": 1}}, "Parvati": {"_count": 1, "Potter": {"_count": 1}}, "wearily": {"_count": 1, "as": {"_count": 1}}, "whose": {"_count": 2, "long": {"_count": 1}, "first": {"_count": 1}}, "twins": {"_count": 4, "parents": {"_count": 2}, "were": {"_count": 2}}}, "Ooh": {"_count": 4, "sticking": {"_count": 1, "up": {"_count": 1}}, "good": {"_count": 1, "were": {"_count": 1}}, "its": {"_count": 1, "them": {"_count": 1}}, "you": {"_count": 1, "look": {"_count": 1}}}, "sticking": {"_count": 41, "up": {"_count": 5, "for": {"_count": 3}, "the": {"_count": 1}, "on": {"_count": 1}}, "out": {"_count": 19, "at": {"_count": 1}, "of": {"_count": 9}, "from": {"_count": 4}, "": {"_count": 1}, "their": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "sharply": {"_count": 1}}, "his": {"_count": 5, "head": {"_count": 2}, "huge": {"_count": 1}, "own": {"_count": 1}, "hand": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "that": {"_count": 1}, "him": {"_count": 1}}, "curiously": {"_count": 1, "out": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "that": {"_count": 1, "pin": {"_count": 1}}, "a": {"_count": 1, "sword": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "it": {"_count": 1, "on": {"_count": 1}}, "my": {"_count": 1, "nose": {"_count": 1}}}, "Pansy": {"_count": 57, "Parkinson": {"_count": 34, "a": {"_count": 3}, "who": {"_count": 2}, "": {"_count": 4}, "and": {"_count": 4}, "had": {"_count": 2}, "in": {"_count": 2}, "gaped": {"_count": 1}, "was": {"_count": 4}, "said": {"_count": 1}, "gave": {"_count": 1}, "guffawed": {"_count": 1}, "from": {"_count": 1}, "shrieked": {"_count": 1}, "right": {"_count": 1}, "were": {"_count": 1}, "that": {"_count": 1}, "collapsed": {"_count": 1}, "to": {"_count": 1}, "let": {"_count": 1}, "as": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "had": {"_count": 3, "looked": {"_count": 1}, "a": {"_count": 1}, "tears": {"_count": 1}}, "Parkinsons": {"_count": 4, "gang": {"_count": 1}, "watch": {"_count": 1}, "face": {"_count": 1}, "lap": {"_count": 1}}, "said": {"_count": 1, "loudly": {"_count": 1}}, "called": {"_count": 1, "Potter": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "Patil": {"_count": 1, "Padma": {"_count": 1}}, "stroke": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "watching": {"_count": 1, "Malfoy": {"_count": 1}}, "looked": {"_count": 1, "pleased": {"_count": 1}}, "indignantly": {"_count": 1, "ceasing": {"_count": 1}}, "resumed": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "gazing": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "instead": {"_count": 1, "and": {"_count": 1}}}, "hardfaced": {"_count": 3, "Slytherin": {"_count": 1, "girl": {"_count": 1}}, "gray": {"_count": 2, "centaur": {"_count": 2}}}, "crybabies": {"_count": 1, "Parvati": {"_count": 1, "": {"_count": 1}}}, "darting": {"_count": 24, "forward": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "ahead": {"_count": 1}}, "shadows": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 2}}, "here": {"_count": 2, "and": {"_count": 2}}, "out": {"_count": 1, "from": {"_count": 1}}, "between": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "restlessly": {"_count": 1, "around": {"_count": 1}}, "around": {"_count": 3, "them": {"_count": 1}, "the": {"_count": 1}, "so": {"_count": 1}}, "inside": {"_count": 1, "Hermione": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 1}, "grave": {"_count": 1}, "Siriuss": {"_count": 1}}, "bodies": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "an": {"_count": 1}}, "after": {"_count": 1, "Zabini": {"_count": 1}}, "past": {"_count": 2, "Professor": {"_count": 1}, "the": {"_count": 1}}, "across": {"_count": 1, "a": {"_count": 1}}}, "snatching": {"_count": 23, "something": {"_count": 1, "out": {"_count": 1}}, "Harrys": {"_count": 1, "cup": {"_count": 1}}, "Scabbers": {"_count": 1, "from": {"_count": 1}}, "up": {"_count": 9, "her": {"_count": 2}, "Pigwidgeon": {"_count": 1}, "the": {"_count": 4}, "Hermiones": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 4, "letter": {"_count": 1}, "book": {"_count": 1}, "goblet": {"_count": 1}, "ointment": {"_count": 1}}, "movements": {"_count": 1, "amongst": {"_count": 1}}, "blindly": {"_count": 1, "at": {"_count": 1}}, "anything": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "off": {"_count": 1}}, "his": {"_count": 1, "copy": {"_count": 1}}, "three": {"_count": 1, "butterbeers": {"_count": 1}}}, "Longbottoms": {"_count": 10, "gran": {"_count": 1, "sent": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "elbow": {"_count": 1, "slipped": {"_count": 1}}, "wand": {"_count": 1, "slipped": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "toad": {"_count": 1, "": {"_count": 1}}, "wife": {"_count": 1, "when": {"_count": 1}}, "were": {"_count": 1, "very": {"_count": 1}}, "evidence": {"_count": 1, "was": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "glittered": {"_count": 18, "in": {"_count": 4, "the": {"_count": 2}, "heaps": {"_count": 1}, "every": {"_count": 1}}, "wickedly": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "upon": {"_count": 1, "her": {"_count": 1}}, "strangely": {"_count": 1, "": {"_count": 1}}, "nearby": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "pins": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "from": {"_count": 1, "many": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}}, "nastily": {"_count": 12, "": {"_count": 7, ".": {"_count": 7}}, "and": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 1, "Fred": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "straightening": {"_count": 1, "his": {"_count": 1}}}, "tree": {"_count": 141, "": {"_count": 30, "?": {"_count": 4}, ".": {"_count": 26}}, "trunks": {"_count": 4, "with": {"_count": 1}, "rebounding": {"_count": 1}, "or": {"_count": 1}, "parted": {"_count": 1}}, "frog": {"_count": 1, "would": {"_count": 1}}, "blocking": {"_count": 1, "the": {"_count": 1}}, "scattering": {"_count": 1, "needles": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "stump": {"_count": 2, "": {"_count": 1}, "beside": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "she": {"_count": 1}}, "trunk": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 2}}, "was": {"_count": 3, "still": {"_count": 1}, "placed": {"_count": 1}, "actually": {"_count": 1}}, "which": {"_count": 4, "was": {"_count": 1}, "stood": {"_count": 1}, "resisted": {"_count": 1}, "swayed": {"_count": 1}}, "did": {"_count": 1, "more": {"_count": 1}}, "surely": {"_count": 1, "acts": {"_count": 1}}, "roots": {"_count": 5, "and": {"_count": 2}, "without": {"_count": 1}, "": {"_count": 2}}, "on": {"_count": 7, "the": {"_count": 7}}, "and": {"_count": 11, "Aunt": {"_count": 1}, "illuminated": {"_count": 1}, "watching": {"_count": 1}, "so": {"_count": 1}, "Karkaroff": {"_count": 1}, "waited": {"_count": 1}, "the": {"_count": 1}, "burying": {"_count": 1}, "was": {"_count": 1}, "sat": {"_count": 1}, "wait": {"_count": 1}}, "that": {"_count": 2, "stood": {"_count": 1}, "would": {"_count": 1}}, "smashed": {"_count": 1, "it": {"_count": 1}}, "beside": {"_count": 2, "their": {"_count": 1}, "him": {"_count": 1}}, "smattered": {"_count": 1, "with": {"_count": 1}}, "behind": {"_count": 1, "Hagrids": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "lost": {"_count": 1}}, "or": {"_count": 2, "something": {"_count": 1}, "sweep": {"_count": 1}}, "vaulted": {"_count": 1, "the": {"_count": 1}}, "seizing": {"_count": 1, "the": {"_count": 1}}, "froze": {"_count": 1, "": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "stopped": {"_count": 1, "fighting": {"_count": 1}}, "looking": {"_count": 2, "around": {"_count": 1}, "utterly": {"_count": 1}}, "prodded": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "sat": {"_count": 1}}, "root": {"_count": 1, "he": {"_count": 1}}, "right": {"_count": 1, "ahead": {"_count": 1}}, "took": {"_count": 1, "flight": {"_count": 1}}, "muttering": {"_count": 1, "soundlessly": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "apparently": {"_count": 1, "convinced": {"_count": 1}}, "tangled": {"_count": 1, "in": {"_count": 1}}, "below": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "to": {"_count": 3, "their": {"_count": 1}, "tree": {"_count": 1}, "gold": {"_count": 1}}, "in": {"_count": 5, "every": {"_count": 1}, "which": {"_count": 2}, "temper": {"_count": 1}, "the": {"_count": 1}}, "dating": {"_count": 1, "back": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "last": {"_count": 1}}, "guardians": {"_count": 1, "usually": {"_count": 1}}, "peering": {"_count": 1, "around": {"_count": 1}}, "saying": {"_count": 1, "I": {"_count": 1}}, "obtained": {"_count": 1, "by": {"_count": 1}}, "from": {"_count": 1, "view": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "you": {"_count": 1}}, "shaking": {"_count": 1, "and": {"_count": 1}}, "canopy": {"_count": 1, "blocked": {"_count": 1}}, "just": {"_count": 1, "over": {"_count": 1}}, "landing": {"_count": 1, "on": {"_count": 1}}, "under": {"_count": 1, "which": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "examined": {"_count": 1, "like": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "house": {"_count": 1, "or": {"_count": 1}}, "first": {"_count": 1, "the": {"_count": 1}}, "became": {"_count": 1, "still": {"_count": 1}}, "where": {"_count": 1, "James": {"_count": 1}}, "Their": {"_count": 1, "wands": {"_count": 1}}, "nearby": {"_count": 1, "": {"_count": 1}}}, "Hovering": {"_count": 1, "level": {"_count": 1, "with": {"_count": 1}}}, "topmost": {"_count": 19, "branches": {"_count": 2, "of": {"_count": 2}}, "pane": {"_count": 1, "where": {"_count": 1}}, "empty": {"_count": 1, "row": {"_count": 1}}, "bar": {"_count": 1, "was": {"_count": 1}}, "sail": {"_count": 1, "of": {"_count": 1}}, "bobble": {"_count": 1, "sat": {"_count": 1}}, "row": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "tier": {"_count": 1, "of": {"_count": 1}}, "shelf": {"_count": 1, "above": {"_count": 1}}, "tower": {"_count": 1, "Harry": {"_count": 1}}, "boxes": {"_count": 1, "with": {"_count": 1}}, "stone": {"_count": 1, "step": {"_count": 1}}, "three": {"_count": 1, "quarters": {"_count": 1}}, "landing": {"_count": 1, "where": {"_count": 1}}, "window": {"_count": 1, "the": {"_count": 1}}, "cell": {"_count": 1, "of": {"_count": 1}}}, "branches": {"_count": 48, "of": {"_count": 13, "an": {"_count": 2}, "the": {"_count": 5}, "trees": {"_count": 1}, "magic": {"_count": 1}, "a": {"_count": 2}, "candles": {"_count": 1}, "overhanging": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "holding": {"_count": 1, "tight": {"_count": 1}}, "above": {"_count": 1, "lit": {"_count": 1}}, "but": {"_count": 2, "did": {"_count": 1}, "he": {"_count": 1}}, "threateningly": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 3, "brambles": {"_count": 1}, "touch": {"_count": 1}, "thickets": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "its": {"_count": 1, "headlights": {"_count": 1}}, "whipping": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "there": {"_count": 1, "crouching": {"_count": 1}}, "were": {"_count": 1, "creaking": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "fanned": {"_count": 1, "across": {"_count": 1}}, "Hermione": {"_count": 1, "plunged": {"_count": 1}}, "an": {"_count": 1, "stuff": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "still": {"_count": 1, "flew": {"_count": 1}}, "tangled": {"_count": 1, "their": {"_count": 1}}, "overhead": {"_count": 1, "as": {"_count": 1}}}, "iVo": {"_count": 7, "": {"_count": 7, "!": {"_count": 7}}}, "Blood": {"_count": 20, "was": {"_count": 2, "pounding": {"_count": 1}, "splattering": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "traitor": {"_count": 2, "abomination": {"_count": 1}, "is": {"_count": 1}}, "trickled": {"_count": 2, "down": {"_count": 2}}, "Blisterpod": {"_count": 1, "by": {"_count": 1}}, "rushed": {"_count": 1, "into": {"_count": 1}}, "Prince": {"_count": 4, "possibly": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 1}, "business": {"_count": 1}}, "Brothers": {"_count": 1, "My": {"_count": 1}}, "Princes": {"_count": 1, "notes": {"_count": 1}}, "spurted": {"_count": 1, "from": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Status": {"_count": 2, "meaning": {"_count": 1}, "will": {"_count": 1}}}, "pounding": {"_count": 50, "in": {"_count": 7, "his": {"_count": 6}, "the": {"_count": 1}}, "far": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 4, "table": {"_count": 3}, "tent": {"_count": 1}}, "furiously": {"_count": 1, "on": {"_count": 1}}, "footsteps": {"_count": 1, "Harry": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "of": {"_count": 6, "the": {"_count": 2}, "gigantic": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "life": {"_count": 1}}, "uncomfortably": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "excitement": {"_count": 1}}, "he": {"_count": 1, "tried": {"_count": 1}}, "rain": {"_count": 1, "could": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "his": {"_count": 4, "eardrums": {"_count": 1}, "pestle": {"_count": 1}, "brain": {"_count": 1}, "bandage": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "somewhere": {"_count": 1, "in": {"_count": 1}}, "pain": {"_count": 1, "was": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "sounds": {"_count": 1, "of": {"_count": 1}}, "feet": {"_count": 1, "his": {"_count": 1}}, "forehead": {"_count": 1, "and": {"_count": 1}}, "head": {"_count": 1, "and": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "at": {"_count": 1}}, "fiercely": {"_count": 1, "in": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}}, "mounted": {"_count": 25, "the": {"_count": 9, "broom": {"_count": 3}, "most": {"_count": 1}, "marble": {"_count": 1}, "stairs": {"_count": 1}, "verges": {"_count": 1}, "few": {"_count": 1}, "sallow": {"_count": 1}}, "his": {"_count": 7, "broomstick": {"_count": 3}, "Firebolt": {"_count": 2}, "broom": {"_count": 1}, "Cleansweep": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "plaques": {"_count": 1}}, "so": {"_count": 1, "high": {"_count": 1}}, "as": {"_count": 1, "June": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "their": {"_count": 1, "brooms": {"_count": 1}}, "to": {"_count": 1, "block": {"_count": 1}}, "in": {"_count": 1, "Harry": {"_count": 1}}}, "soared": {"_count": 82, "air": {"_count": 1, "rushed": {"_count": 1}}, "down": {"_count": 4, "and": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 1}, "onto": {"_count": 1}}, "joyfully": {"_count": 1, "out": {"_count": 1}}, "right": {"_count": 2, "around": {"_count": 1}, "so": {"_count": 1}}, "back": {"_count": 2, "overhead": {"_count": 1}, "toward": {"_count": 1}}, "over": {"_count": 6, "one": {"_count": 1}, "to": {"_count": 2}, "the": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}}, "three": {"_count": 1, "owls": {"_count": 1}}, "out": {"_count": 6, "of": {"_count": 5}, "into": {"_count": 1}}, "around": {"_count": 5, "the": {"_count": 4}, "her": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 2}, "wide": {"_count": 1}}, "straight": {"_count": 5, "into": {"_count": 1}, "over": {"_count": 1}, "for": {"_count": 1}, "through": {"_count": 1}, "out": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 3}}, "up": {"_count": 3, "into": {"_count": 2}, "in": {"_count": 1}}, "upward": {"_count": 5, "as": {"_count": 1}, "he": {"_count": 1}, "away": {"_count": 1}, "and": {"_count": 2}}, "higher": {"_count": 1, "in": {"_count": 1}}, "through": {"_count": 5, "the": {"_count": 3}, "it": {"_count": 2}}, "into": {"_count": 6, "the": {"_count": 5}, "sight": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}}, "downward": {"_count": 1, "and": {"_count": 1}}, "away": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 4}}, "off": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 1, "length": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "The": {"_count": 1, "thought": {"_count": 1}}, "inches": {"_count": 1, "over": {"_count": 1}}, "onto": {"_count": 1, "side": {"_count": 1}}, "gracefully": {"_count": 1, "onto": {"_count": 1}}, "past": {"_count": 2, "Snapes": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 1, "land": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "beneath": {"_count": 1, "Bellatrixs": {"_count": 1}}}, "rush": {"_count": 47, "of": {"_count": 34, "fierce": {"_count": 2}, "excitement": {"_count": 2}, "water": {"_count": 2}, "wings": {"_count": 4}, "emeraldgreen": {"_count": 1}, "speeding": {"_count": 1}, "gratitude": {"_count": 3}, "anger": {"_count": 1}, "air": {"_count": 2}, "icy": {"_count": 1}, "hope": {"_count": 1}, "dislike": {"_count": 1}, "a": {"_count": 1}, "voices": {"_count": 1}, "howling": {"_count": 1}, "wind": {"_count": 1}, "understanding": {"_count": 1}, "images": {"_count": 1}, "cold": {"_count": 1}, "hatred": {"_count": 1}, "pure": {"_count": 1}, "affection": {"_count": 2}, "controlled": {"_count": 1}, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 3, "buy": {"_count": 1}, "spill": {"_count": 1}, "Harrys": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "forward": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}, "at": {"_count": 1, "Dumbledore": {"_count": 1}}, "Severus": {"_count": 1, "Im": {"_count": 1}}, "He": {"_count": 1, "scares": {"_count": 1}}, "and": {"_count": 1, "gush": {"_count": 1}}}, "joy": {"_count": 8, "he": {"_count": 1, "realized": {"_count": 1}}, "half": {"_count": 1, "terrible": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "gift": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 2, "grief": {"_count": 1}, "spoke": {"_count": 1}}}, "screams": {"_count": 42, "and": {"_count": 12, "gasps": {"_count": 1}, "howls": {"_count": 1}, "the": {"_count": 4}, "wails": {"_count": 1}, "applause": {"_count": 1}, "yells": {"_count": 4}}, "of": {"_count": 6, "people": {"_count": 1}, "delight": {"_count": 1}, "pain": {"_count": 3}, "the": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "were": {"_count": 1, "indeed": {"_count": 1}}, "stopped": {"_count": 1, "and": {"_count": 1}}, "echoing": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 1, "died": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "echoed": {"_count": 3, "out": {"_count": 1}, "off": {"_count": 1}, "from": {"_count": 1}}, "subsided": {"_count": 1, "but": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "those": {"_count": 1}}, "or": {"_count": 1, "shouts": {"_count": 1}}, "on": {"_count": 1, "every": {"_count": 1}}, "humorless": {"_count": 1, "and": {"_count": 1}}}, "gasps": {"_count": 9, "of": {"_count": 2, "girls": {"_count": 1}, "horror": {"_count": 1}}, "and": {"_count": 3, "cheers": {"_count": 1}, "Ron": {"_count": 1}, "cries": {"_count": 1}}, "clutching": {"_count": 1, "her": {"_count": 1}}, "running": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "even": {"_count": 1, "laughter": {"_count": 1}}}, "whoop": {"_count": 4, "from": {"_count": 1, "Ron": {"_count": 1}}, "of": {"_count": 2, "laughter": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "grasped": {"_count": 25, "the": {"_count": 7, "broom": {"_count": 1}, "lid": {"_count": 1}, "back": {"_count": 1}, "phoenixs": {"_count": 1}, "crystal": {"_count": 1}, "brilliance": {"_count": 1}, "snowy": {"_count": 1}}, "it": {"_count": 4, "around": {"_count": 1}, "two": {"_count": 1}, "briefly": {"_count": 1}, "he": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "each": {"_count": 1, "others": {"_count": 1}}, "Harrys": {"_count": 2, "arm": {"_count": 2}}, "a": {"_count": 1, "handle": {"_count": 1}}, "his": {"_count": 3, "hand": {"_count": 1}, "wand": {"_count": 1}, "pounding": {"_count": 1}}, "this": {"_count": 1, "fact": {"_count": 1}}, "right": {"_count": 1, "hands": {"_count": 1}}, "Harry": {"_count": 1, "once": {"_count": 1}}, "her": {"_count": 1, "chin": {"_count": 1}}, "hands": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "javelin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Catch": {"_count": 1, "it": {"_count": 1, "if": {"_count": 1}}}, "streaked": {"_count": 24, "back": {"_count": 1, "toward": {"_count": 1}}, "off": {"_count": 3, "up": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "after": {"_count": 2, "it": {"_count": 1}, "him": {"_count": 1}}, "through": {"_count": 1, "twenty": {"_count": 1}}, "past": {"_count": 4, "Katie": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "away": {"_count": 1, "under": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "liberally": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 4, "frail": {"_count": 1}, "crimson": {"_count": 1}, "silver": {"_count": 1}, "tears": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "hair": {"_count": 1, "Hello": {"_count": 1}}}, "motion": {"_count": 13, "the": {"_count": 1, "ball": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "while": {"_count": 1, "glittering": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 1, "the": {"_count": 1}}, "passed": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "toppled": {"_count": 1}, "saw": {"_count": 1}}, "rose": {"_count": 1, "into": {"_count": 1}}, "turning": {"_count": 1, "and": {"_count": 1}}, "Neville": {"_count": 1, "broke": {"_count": 1}}}, "handle": {"_count": 57, "down": {"_count": 1, "next": {"_count": 1}}, "Malfoy": {"_count": 1, "snapped": {"_count": 1}}, "it": {"_count": 3, "had": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "but": {"_count": 2, "it": {"_count": 1}, "how": {"_count": 1}}, "turned": {"_count": 1, "": {"_count": 1}}, "Done": {"_count": 1, "said": {"_count": 1}}, "glittering": {"_count": 1, "with": {"_count": 1}}, "however": {"_count": 1, "when": {"_count": 1}}, "of": {"_count": 10, "ash": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 5}, "Siriuss": {"_count": 1}, "Hufflepuffs": {"_count": 1}}, "and": {"_count": 7, "his": {"_count": 1}, "kicked": {"_count": 1}, "stepped": {"_count": 1}, "looked": {"_count": 1}, "something": {"_count": 1}, "said": {"_count": 1}, "no": {"_count": 1}}, "glittered": {"_count": 1, "as": {"_count": 1}}, "right": {"_count": 1, "down": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}, "to": {"_count": 1, "twigends": {"_count": 1}}, "too": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "Bole": {"_count": 1}}, "this": {"_count": 1, "without": {"_count": 1}}, "them": {"_count": 1, "said": {"_count": 1}}, "He": {"_count": 1, "heard": {"_count": 1}}, "he": {"_count": 1, "turned": {"_count": 1}}, "tightly": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "Harry": {"_count": 1}}, "pulled": {"_count": 1, "open": {"_count": 1}}, "toppled": {"_count": 1, "over": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "treasure": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 1, "slash": {"_count": 1}}}, "dive": {"_count": 27, "racing": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "around": {"_count": 1, "Flint": {"_count": 1}}, "which": {"_count": 1, "drew": {"_count": 1}}, "his": {"_count": 2, "arm": {"_count": 1}, "hand": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "brushing": {"_count": 1, "the": {"_count": 1}}, "very": {"_count": 1, "sharply": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 3, "spiraled": {"_count": 1}, "Harry": {"_count": 1}, "started": {"_count": 1}}, "just": {"_count": 2, "in": {"_count": 2}}, "for": {"_count": 1, "it": {"_count": 1}}, "untidily": {"_count": 1, "so": {"_count": 1}}, "toward": {"_count": 1, "his": {"_count": 1}}, "into": {"_count": 1, "it": {"_count": 1}}, "once": {"_count": 1, "": {"_count": 1}}, "sideways": {"_count": 1, "to": {"_count": 1}}, "aside": {"_count": 1, "and": {"_count": 1}}}, "mingled": {"_count": 25, "with": {"_count": 6, "the": {"_count": 3}, "his": {"_count": 1}, "a": {"_count": 1}, "Kreachers": {"_count": 1}}, "fury": {"_count": 3, "and": {"_count": 3}}, "drink": {"_count": 1, "and": {"_count": 1}}, "dread": {"_count": 1, "and": {"_count": 1}}, "defiance": {"_count": 1, "and": {"_count": 1}}, "curiosity": {"_count": 1, "and": {"_count": 1}}, "panic": {"_count": 1, "and": {"_count": 1}}, "disgust": {"_count": 1, "and": {"_count": 1}}, "disappointment": {"_count": 1, "and": {"_count": 1}}, "fear": {"_count": 1, "and": {"_count": 1}}, "resentment": {"_count": 1, "and": {"_count": 1}}, "exasperation": {"_count": 1, "and": {"_count": 1}}, "surprise": {"_count": 1, "and": {"_count": 1}}, "oaths": {"_count": 1, "and": {"_count": 1}}, "shock": {"_count": 1, "and": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "relief": {"_count": 1, "and": {"_count": 1}}, "outpourings": {"_count": 1, "of": {"_count": 1}}}, "HARRY": {"_count": 34, "POTTER": {"_count": 8, "": {"_count": 2}, "HERE": {"_count": 1}, "DISTURBED": {"_count": 1}, "I": {"_count": 1}, "SPEAKS": {"_count": 1}, "RESCUE": {"_count": 1}, "THE": {"_count": 1}}, "": {"_count": 19, "!": {"_count": 17}, "?": {"_count": 2}}, "COULD": {"_count": 1, "BOTH": {"_count": 1}}, "THIS": {"_count": 1, "IS": {"_count": 1}}, "CHRISTMAS": {"_count": 1, "": {"_count": 1}}, "NO": {"_count": 1, "": {"_count": 1}}, "COME": {"_count": 1, "ON": {"_count": 1}}, "WHATRE": {"_count": 1, "YEH": {"_count": 1}}, "WHERES": {"_count": 1, "HARRY": {"_count": 1}}}, "POTTER": {"_count": 30, "": {"_count": 11, "!": {"_count": 11}}, "HERE": {"_count": 1, "": {"_count": 1}}, "STINKS": {"_count": 8, "The": {"_count": 1}, "was": {"_count": 1}, "flashed": {"_count": 2}, "": {"_count": 1}, "badge": {"_count": 1}, "across": {"_count": 1}, "a": {"_count": 1}}, "REALLY": {"_count": 2, "STINKS": {"_count": 2}}, "DISTURBED": {"_count": 1, "AND": {"_count": 1}}, "I": {"_count": 1, "DUDLEY": {"_count": 1}}, "SPEAKS": {"_count": 1, "OUT": {"_count": 1}}, "RESCUE": {"_count": 1, "MISSION": {"_count": 1}}, "AND": {"_count": 1, "YOU": {"_count": 1}}, "THE": {"_count": 1, "CHOSEN": {"_count": 1}}, "BORN": {"_count": 2, "27": {"_count": 1}, "30": {"_count": 1}}}, "dived": {"_count": 69, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "downward": {"_count": 1, "after": {"_count": 1}}, "at": {"_count": 5, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "so": {"_count": 2, "quickly": {"_count": 1}, "low": {"_count": 1}}, "Hermione": {"_count": 1, "rocketed": {"_count": 1}}, "under": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "desks": {"_count": 1}}, "forward": {"_count": 1, "seized": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "headfirst": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 10, "the": {"_count": 6}, "Lupins": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 2}}, "Cho": {"_count": 1, "saw": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "headlong": {"_count": 1, "into": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "its": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 3, "snatched": {"_count": 1}, "raised": {"_count": 1}, "caught": {"_count": 1}}, "in": {"_count": 2, "and": {"_count": 2}}, "back": {"_count": 2, "into": {"_count": 2}}, "behind": {"_count": 3, "a": {"_count": 2}, "her": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "wildly": {"_count": 1, "his": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "closing": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "Dumbledore": {"_count": 1}}, "aside": {"_count": 1, "with": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "speechless": {"_count": 7, "with": {"_count": 1, "shock": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "throughout": {"_count": 1, "Fudges": {"_count": 1}}, "and": {"_count": 1, "Ron": {"_count": 1}}}, "fault": {"_count": 90, "Professor": {"_count": 1, "Be": {"_count": 1}}, "said": {"_count": 6, "Wood": {"_count": 1}, "Ron": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "Professor": {"_count": 1}, "Lupin": {"_count": 1}}, "hes": {"_count": 1, "here": {"_count": 1}}, "": {"_count": 28, "!": {"_count": 5}, ".": {"_count": 23}}, "at": {"_count": 2, "first": {"_count": 1}, "all": {"_count": 1}}, "youve": {"_count": 1, "been": {"_count": 1}}, "retorted": {"_count": 1, "Draco": {"_count": 1}}, "your": {"_count": 1, "wand": {"_count": 1}}, "George": {"_count": 1, "said": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "its": {"_count": 2, "a": {"_count": 1}, "all": {"_count": 1}}, "if": {"_count": 2, "Voldemort": {"_count": 1}, "shes": {"_count": 1}}, "he": {"_count": 6, "no": {"_count": 1}, "went": {"_count": 1}, "cant": {"_count": 1}, "died": {"_count": 1}, "sobbed": {"_count": 1}, "repeated": {"_count": 1}}, "but": {"_count": 1, "Potters": {"_count": 1}}, "she": {"_count": 3, "added": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "I": {"_count": 3, "bet": {"_count": 1}, "didnt": {"_count": 1}, "will": {"_count": 1}}, "Harry": {"_count": 2, "Mrs": {"_count": 1}, "Mum": {"_count": 1}}, "Ron": {"_count": 1, "rolled": {"_count": 1}}, "you": {"_count": 2, "havent": {"_count": 1}, "": {"_count": 1}}, "how": {"_count": 1, "Seamus": {"_count": 1}}, "You": {"_count": 1, "didnt": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "whoever": {"_count": 1, "sent": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 6, "Sirius": {"_count": 1}, "one": {"_count": 1}, "you": {"_count": 1}, "Ariana": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "those": {"_count": 1, "people": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "than": {"_count": 1, "anyone": {"_count": 1}}, "Slughorn": {"_count": 1, "invited": {"_count": 1}}, "shes": {"_count": 1, "barking": {"_count": 1}}, "No": {"_count": 1, "no": {"_count": 1}}, "all": {"_count": 2, "my": {"_count": 1}, "his": {"_count": 1}}, "hurt": {"_count": 1, "me": {"_count": 1}}, "Minerva": {"_count": 1, "said": {"_count": 1}}, "Hermione": {"_count": 1, "Im": {"_count": 1}}, "on": {"_count": 1, "both": {"_count": 1}}}, "Miss": {"_count": 124, "Patil": {"_count": 2, "But": {"_count": 1}, "take": {"_count": 1}}, "Grangers": {"_count": 2, "done": {"_count": 1}, "doubtful": {"_count": 1}}, "Granger": {"_count": 61, "": {"_count": 18}, "you": {"_count": 4}, "five": {"_count": 1}, "I": {"_count": 3}, "accidentally": {"_count": 1}, "will": {"_count": 2}, "would": {"_count": 3}, "was": {"_count": 2}, "not": {"_count": 1}, "wishing": {"_count": 1}, "about": {"_count": 1}, "said": {"_count": 7}, "is": {"_count": 1}, "has": {"_count": 3}, "HOLD": {"_count": 1}, "three": {"_count": 2}, "Thats": {"_count": 1}, "remains": {"_count": 1}, "a": {"_count": 1}, "over": {"_count": 1}, "rightly": {"_count": 1}, "have": {"_count": 1}, "loves": {"_count": 1}, "can": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}}, "Hermione": {"_count": 6, "Granger": {"_count": 5}, "Jean": {"_count": 1}}, "er": {"_count": 1, "": {"_count": 1}}, "Grant": {"_count": 1, "": {"_count": 1}}, "Pennyfeather": {"_count": 1, "snapped": {"_count": 1}}, "Brown": {"_count": 4, "yes": {"_count": 1}, "when": {"_count": 1}, "please": {"_count": 1}, "would": {"_count": 1}}, "Bulstrode": {"_count": 1, "": {"_count": 1}}, "Fawcett": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "Weasley": {"_count": 3, "": {"_count": 1}, "a": {"_count": 1}, "should": {"_count": 1}}, "Marjorie": {"_count": 1, "Dursley": {"_count": 1}}, "Dursley": {"_count": 1, "has": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "Delacour": {"_count": 3, "if": {"_count": 1}, "": {"_count": 1}, "Im": {"_count": 1}}, "Parkinson": {"_count": 4, "": {"_count": 1}, "can": {"_count": 1}, "ran": {"_count": 1}, "said": {"_count": 1}}, "will": {"_count": 1, "please": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "Grangeii": {"_count": 1, "Hermione": {"_count": 1}}, "Johnson": {"_count": 2, "how": {"_count": 1}, "you": {"_count": 1}}, "Perfect": {"_count": 3, "was": {"_count": 1}, "wouldnt": {"_count": 1}, "does": {"_count": 1}}, "Prissy": {"_count": 1, "you": {"_count": 1}}, "Edgecombe": {"_count": 8, "here": {"_count": 1}, "is": {"_count": 2}, "said": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "tipped": {"_count": 1}, "of": {"_count": 1}}, "Edgecombes": {"_count": 1, "memory": {"_count": 1}}, "QuestionAll": {"_count": 1, "is": {"_count": 1}}, "Lovegood": {"_count": 2, "I": {"_count": 1}, "had": {"_count": 1}}, "Bellatrix": {"_count": 1, "oh": {"_count": 1}}, "Hepzibah": {"_count": 1, "shows": {"_count": 1}}, "Bellas": {"_count": 1, "and": {"_count": 1}}, "Cissys": {"_count": 1, "pictures": {"_count": 1}}, "Bagshot": {"_count": 3, "": {"_count": 3}}, "Mudblood": {"_count": 1, "": {"_count": 1}}}, "Goyles": {"_count": 22, "triumphant": {"_count": 1, "faces": {"_count": 1}}, "cauldron": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "potion": {"_count": 1, "exploded": {"_count": 1}}, "theyre": {"_count": 1, "Malfoys": {"_count": 1}}, "hair": {"_count": 3, "she": {"_count": 1}, "": {"_count": 1}, "into": {"_count": 1}}, "turned": {"_count": 1, "the": {"_count": 1}}, "boatlike": {"_count": 1, "shoes": {"_count": 1}}, "low": {"_count": 1, "rasp": {"_count": 1}}, "thick": {"_count": 1, "wrist": {"_count": 1}}, "huge": {"_count": 2, "feet": {"_count": 1}, "shoes": {"_count": 1}}, "head": {"_count": 1, "still": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "reactions": {"_count": 1, "": {"_count": 1}}, "take": {"_count": 1, "these": {"_count": 1}}, "mumll": {"_count": 1, "be": {"_count": 1}}, "lap": {"_count": 1, "and": {"_count": 1}}, "trunk": {"_count": 1, "hit": {"_count": 1}}, "prance": {"_count": 1, "past": {"_count": 1}}}, "triumphant": {"_count": 22, "faces": {"_count": 1, "as": {"_count": 1}}, "arrival": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "smile": {"_count": 2, "flickering": {"_count": 1}, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "whisper": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "air": {"_count": 1, "of": {"_count": 1}}, "gesture": {"_count": 1, "with": {"_count": 1}}, "glances": {"_count": 1, "at": {"_count": 1}}, "running": {"_count": 1, "back": {"_count": 1}}, "scream": {"_count": 1, "but": {"_count": 1}}, "laughter": {"_count": 1, "": {"_count": 1}}, "possession": {"_count": 1, "of": {"_count": 1}}, "trickery": {"_count": 1, "about": {"_count": 1}}, "yell": {"_count": 1, "from": {"_count": 1}}}, "numbly": {"_count": 4, "in": {"_count": 1, "Professor": {"_count": 1}}, "at": {"_count": 1, "Riddle": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "defend": {"_count": 28, "himself": {"_count": 9, "but": {"_count": 3}, "": {"_count": 2}, "before": {"_count": 1}, "even": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "yourselves": {"_count": 3, "as": {"_count": 1}, "properly": {"_count": 1}, "than": {"_count": 1}}, "yourself": {"_count": 3, "against": {"_count": 1}, "later": {"_count": 1}, "in": {"_count": 1}}, "you": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 1, "hoop": {"_count": 1}}, "ourselves": {"_count": 3, "": {"_count": 1}, "properly": {"_count": 1}, "against": {"_count": 1}}, "Hagrid": {"_count": 1, "leaping": {"_count": 1}}, "her": {"_count": 1, "snapped": {"_count": 1}}, "myself": {"_count": 3, "": {"_count": 2}, "tonight": {"_count": 1}}, "the": {"_count": 1, "place": {"_count": 1}}, "what": {"_count": 1, "Dumbledore": {"_count": 1}}, "Dumbledore": {"_count": 1, "from": {"_count": 1}}}, "lasted": {"_count": 16, "two": {"_count": 1, "weeks": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}, "long": {"_count": 2, "fer": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}, "all": {"_count": 2, "night": {"_count": 1}, "the": {"_count": 1}}, "only": {"_count": 1, "one": {"_count": 1}}, "ony": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "longer": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 2, "than": {"_count": 2}}, "a": {"_count": 1, "week": {"_count": 1}}, "this": {"_count": 1, "long": {"_count": 1}}, "much": {"_count": 1, "much": {"_count": 1}}}, "packing": {"_count": 22, "his": {"_count": 2, "bags": {"_count": 1}, "trunk": {"_count": 1}}, "their": {"_count": 1, "bags": {"_count": 1}}, "case": {"_count": 4, "which": {"_count": 1}, "and": {"_count": 1}, "once": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "she": {"_count": 1, "added": {"_count": 1}}, "them": {"_count": 1, "away": {"_count": 1}}, "straight": {"_count": 1, "away": {"_count": 1}}, "and": {"_count": 3, "were": {"_count": 1}, "then": {"_count": 1}, "unpacking": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 2, "sourfaced": {"_count": 1}, "early": {"_count": 1}}, "for": {"_count": 1, "days": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "trotting": {"_count": 8, "miserably": {"_count": 1, "behind": {"_count": 1}}, "alongside": {"_count": 1, "him": {"_count": 1}}, "at": {"_count": 2, "its": {"_count": 1}, "his": {"_count": 1}}, "up": {"_count": 1, "behind": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "along": {"_count": 1, "behind": {"_count": 1}}, "invisibly": {"_count": 1, "behind": {"_count": 1}}}, "assistant": {"_count": 15, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "and": {"_count": 2, "then": {"_count": 1}, "Im": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "nearly": {"_count": 1, "cried": {"_count": 1}}, "says": {"_count": 1, "hes": {"_count": 1}}, "Ron": {"_count": 1, "informed": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "madam": {"_count": 1, "who": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "borrow": {"_count": 26, "Wood": {"_count": 1, "for": {"_count": 1}}, "one": {"_count": 3, "of": {"_count": 3}}, "Hermes": {"_count": 1, "Who": {"_count": 1}}, "Harrys": {"_count": 1, "brass": {"_count": 1}}, "a": {"_count": 3, "pair": {"_count": 1}, "car": {"_count": 1}, "wand": {"_count": 1}}, "Ministry": {"_count": 1, "cars": {"_count": 1}}, "Pigwidgeon": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "spear": {"_count": 1}}, "her": {"_count": 1, "Harry": {"_count": 1}}, "Hedwig": {"_count": 1, "so": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "that": {"_count": 2, "cardigan": {"_count": 1}, "book": {"_count": 1}}, "your": {"_count": 2, "silver": {"_count": 1}, "quill": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "yours": {"_count": 1, "for": {"_count": 1}}, "another": {"_count": 1, "wizards": {"_count": 1}}}, "Wood": {"_count": 174, "for": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 23, "?": {"_count": 2}, ".": {"_count": 21}}, "a": {"_count": 1, "cane": {"_count": 1}}, "turned": {"_count": 2, "out": {"_count": 1}, "to": {"_count": 1}}, "looking": {"_count": 2, "curiously": {"_count": 1}, "devastated": {"_count": 1}}, "Ive": {"_count": 1, "found": {"_count": 1}}, "was": {"_count": 16, "now": {"_count": 1}, "almost": {"_count": 1}, "delighted": {"_count": 1}, "making": {"_count": 1}, "working": {"_count": 1}, "becoming": {"_count": 1}, "the": {"_count": 1}, "holding": {"_count": 1}, "looking": {"_count": 1}, "insisting": {"_count": 1}, "a": {"_count": 1}, "crouched": {"_count": 1}, "yelling": {"_count": 1}, "saying": {"_count": 1}, "hovering": {"_count": 1}, "speeding": {"_count": 1}}, "now": {"_count": 2, "walking": {"_count": 1}, "looked": {"_count": 1}}, "told": {"_count": 4, "me": {"_count": 1}, "us": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "will": {"_count": 1, "meet": {"_count": 1}}, "Harry": {"_count": 1, "mounted": {"_count": 1}}, "had": {"_count": 9, "arrived": {"_count": 1}, "decided": {"_count": 1}, "said": {"_count": 1}, "taken": {"_count": 1}, "obviously": {"_count": 1}, "pointed": {"_count": 1}, "given": {"_count": 1}, "never": {"_count": 1}, "left": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 1}, "expression": {"_count": 1}}, "took": {"_count": 3, "out": {"_count": 1}, "a": {"_count": 1}, "off": {"_count": 1}}, "curiously": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "": {"_count": 1}, "But": {"_count": 1}, "Er": {"_count": 1}}, "warned": {"_count": 1, "Harry": {"_count": 1}}, "who": {"_count": 4, "dived": {"_count": 1}, "couldnt": {"_count": 1}, "wasnt": {"_count": 1}, "told": {"_count": 1}}, "panted": {"_count": 1, "forcing": {"_count": 1}}, "reached": {"_count": 1, "into": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "carefully": {"_count": 1, "shutting": {"_count": 1}}, "throwing": {"_count": 1, "the": {"_count": 1}}, "happily": {"_count": 1, "as": {"_count": 1}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "agreed": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 7, "the": {"_count": 1}, "offered": {"_count": 1}, "stop": {"_count": 1}, "decided": {"_count": 1}, "within": {"_count": 1}, "while": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 2, "call": {"_count": 1}, "shake": {"_count": 1}}, "gave": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "thundered": {"_count": 1, "": {"_count": 1}}, "Captain": {"_count": 2, "of": {"_count": 2}}, "heartily": {"_count": 1, "": {"_count": 1}}, "briskly": {"_count": 1, "": {"_count": 1}}, "launched": {"_count": 1, "into": {"_count": 1}}, "droned": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "long": {"_count": 1}}, "wasnt": {"_count": 1, "pleased": {"_count": 1}}, "shouted": {"_count": 2, "seizing": {"_count": 1}, "his": {"_count": 1}}, "frowning": {"_count": 2, "as": {"_count": 1}, "at": {"_count": 1}}, "testily": {"_count": 1, "": {"_count": 1}}, "hissed": {"_count": 1, "in": {"_count": 1}}, "shot": {"_count": 1, "toward": {"_count": 1}}, "bellowed": {"_count": 1, "at": {"_count": 1}}, "positively": {"_count": 1, "spitting": {"_count": 1}}, "distracted": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "say": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "they": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "A": {"_count": 1, "whistling": {"_count": 1}}, "enthusiastically": {"_count": 1, "at": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "swallowed": {"_count": 1, "as": {"_count": 1}}, "pointed": {"_count": 1, "at": {"_count": 1}}, "rumbled": {"_count": 1, "glaring": {"_count": 1}}, "went": {"_count": 2, "on": {"_count": 1}, "pale": {"_count": 1}}, "spoke": {"_count": 2, "so": {"_count": 1}, "they": {"_count": 1}}, "grinding": {"_count": 1, "his": {"_count": 1}}, "bitterly": {"_count": 1, "": {"_count": 1}}, "kept": {"_count": 2, "hurrying": {"_count": 1}, "yelling": {"_count": 1}}, "talked": {"_count": 1, "for": {"_count": 1}}, "shouting": {"_count": 1, "after": {"_count": 1}}, "but": {"_count": 2, "Wood": {"_count": 1}, "unless": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "roared": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "admits": {"_count": 1, "it": {"_count": 1}}, "became": {"_count": 1, "repossessed": {"_count": 1}}, "sought": {"_count": 1, "Harry": {"_count": 1}}, "broke": {"_count": 1, "off": {"_count": 1}}, "he": {"_count": 1, "wanted": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "shook": {"_count": 2, "his": {"_count": 1}, "hands": {"_count": 1}}, "scowled": {"_count": 1, "his": {"_count": 1}}, "called": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 1, "have": {"_count": 1}}, "too": {"_count": 1, "was": {"_count": 1}}, "Davies": {"_count": 1, "shake": {"_count": 1}}, "constantly": {"_count": 1, "reminded": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "suddenly": {"_count": 1, "stood": {"_count": 1}}, "spent": {"_count": 1, "the": {"_count": 1}}, "paced": {"_count": 1, "the": {"_count": 1}}, "tersely": {"_count": 1, "": {"_count": 1}}, "approached": {"_count": 1, "each": {"_count": 1}}, "save": {"_count": 1, "": {"_count": 1}}, "pulled": {"_count": 1, "off": {"_count": 1}}, "they": {"_count": 1, "caught": {"_count": 1}}, "wiping": {"_count": 1, "her": {"_count": 1}}, "passed": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "old": {"_count": 1}}, "lice": {"_count": 1, "said": {"_count": 1}}, "sometimes": {"_count": 1, "": {"_count": 1}}, "mightve": {"_count": 1, "done": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}}, "cane": {"_count": 2, "she": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "St": {"_count": 1}}}, "burly": {"_count": 4, "fifthyear": {"_count": 1, "boy": {"_count": 1}}, "sixth": {"_count": 1, "year": {"_count": 1}}, "seventeenyearold": {"_count": 1, "now": {"_count": 1}}, "workmen": {"_count": 1, "entered": {"_count": 1}}}, "fifthyear": {"_count": 4, "boy": {"_count": 1, "who": {"_count": 1}}, "girls": {"_count": 1, "who": {"_count": 1}}, "Gryffindor": {"_count": 1, "his": {"_count": 1}}, "prefects": {"_count": 1, "from": {"_count": 1}}}, "Flitwicks": {"_count": 21, "class": {"_count": 4, "looking": {"_count": 1}, "that": {"_count": 2}, "she": {"_count": 1}}, "classroom": {"_count": 2, "": {"_count": 2}}, "office": {"_count": 3, "on": {"_count": 1}, "": {"_count": 1}, "any": {"_count": 1}}, "desk": {"_count": 1, "": {"_count": 1}}, "cupboard": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "he": {"_count": 1}}, "squeaky": {"_count": 1, "little": {"_count": 1}}, "mentioned": {"_count": 1, "it": {"_count": 1}}, "head": {"_count": 1, "moving": {"_count": 1}}, "outstretched": {"_count": 1, "arms": {"_count": 1}}, "got": {"_count": 1, "rid": {"_count": 1}}, "lyin": {"_count": 1, "down": {"_count": 1}}, "spell": {"_count": 1, "hit": {"_count": 1}}, "and": {"_count": 1, "Sprouts": {"_count": 1}}, "hands": {"_count": 1, "saw": {"_count": 1}}}, "Follow": {"_count": 15, "me": {"_count": 13, "you": {"_count": 1}, "": {"_count": 3}, "said": {"_count": 3}, "over": {"_count": 1}, "Potter": {"_count": 1}, "please": {"_count": 1}, "ladies": {"_count": 1}, "Draco": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 1, "spiders": {"_count": 1}}, "Tonks": {"_count": 1, "Harry": {"_count": 1}}}, "blackboard": {"_count": 20, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 3, "then": {"_count": 1}, "covered": {"_count": 1}, "settled": {"_count": 1}}, "opposite": {"_count": 1, "them": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "Describe": {"_count": 1, "with": {"_count": 1}}, "Hermione": {"_count": 1, "hastily": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "they": {"_count": 1, "appeared": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "sharply": {"_count": 1, "with": {"_count": 1}}, "again": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "your": {"_count": 1, "O": {"_count": 1}}}, "bin": {"_count": 77, "which": {"_count": 1, "clanged": {"_count": 1}}, "doin": {"_count": 1, "some": {"_count": 1}}, "waitin": {"_count": 1, "fer": {"_count": 1}}, "hurt": {"_count": 2, "badly": {"_count": 1}, "you": {"_count": 1}}, "staggerin": {"_count": 1, "around": {"_count": 1}}, "askin": {"_count": 1, "Ronan": {"_count": 1}}, "injured": {"_count": 1, "would": {"_count": 1}}, "killin": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 4, "dragon": {"_count": 1}, "hundred": {"_count": 1}, "long": {"_count": 1}, "bit": {"_count": 1}}, "Professor": {"_count": 1, "Lockhart": {"_count": 1}}, "givin": {"_count": 2, "out": {"_count": 1}, "them": {"_count": 1}}, "growin": {"_count": 1, "said": {"_count": 1}}, "him": {"_count": 1, "Ill": {"_count": 1}}, "expectin": {"_count": 1, "doesn": {"_count": 1}}, "and": {"_count": 1, "stand": {"_count": 1}}, "outside": {"_count": 1, "Quality": {"_count": 1}}, "able": {"_count": 1, "ter": {"_count": 1}}, "told": {"_count": 1, "o": {"_count": 1}}, "the": {"_count": 2, "last": {"_count": 1}, "Potters": {"_count": 1}}, "Lily": {"_count": 1, "an": {"_count": 1}}, "meself": {"_count": 1, "lately": {"_count": 1}}, "anywhere": {"_count": 1, "like": {"_count": 1}}, "cornin": {"_count": 1, "down": {"_count": 1}}, "stupid": {"_count": 1, "": {"_count": 1}}, "ashamed": {"_count": 1, "o": {"_count": 1}}, "behavin": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 2, "idiot": {"_count": 1}, "area": {"_count": 1}}, "worried": {"_count": 2, "before": {"_count": 1}, "abou": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "bags": {"_count": 1, "just": {"_count": 1}}, "He": {"_count": 1, "always": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "talkin": {"_count": 1, "to": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "smoother": {"_count": 1, "": {"_count": 1}}, "twentyfive": {"_count": 1, "": {"_count": 1}}, "dyin": {"_count": 1, "out": {"_count": 1}}, "there": {"_count": 1, "said": {"_count": 1}}, "hidin": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 2, "any": {"_count": 1}, "a": {"_count": 1}}, "attacked": {"_count": 1, "": {"_count": 1}}, "keepin": {"_count": 1, "a": {"_count": 1}}, "bringin": {"_count": 1, "em": {"_count": 1}}, "savin": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "must": {"_count": 1}}, "diffrent": {"_count": 1, "eh": {"_count": 1}}, "livid": {"_count": 1, "with": {"_count": 1}}, "lookin": {"_count": 1, "fer": {"_count": 1}}, "tryin": {"_count": 1, "ter": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "thinkin": {"_count": 1, "abou": {"_count": 1}}, "tellin": {"_count": 1, "the": {"_count": 1}}, "tergether": {"_count": 1, "so": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "teachin": {"_count": 1, "yeh": {"_count": 1}}, "visitin": {"_count": 1, "Grawp": {"_count": 1}}, "cursed": {"_count": 1, "not": {"_count": 1}}, "readin": {"_count": 1, "to": {"_count": 1}}, "caught": {"_count": 1, "wouldn": {"_count": 1}}, "touched": {"_count": 1, "yehre": {"_count": 1}}, "behind": {"_count": 1, "Harry": {"_count": 1}}, "burnt": {"_count": 1, "ter": {"_count": 1}}, "informed": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "home": {"_count": 1}}, "just": {"_count": 1, "visible": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}}, "clanged": {"_count": 10, "loudly": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "Malfoy": {"_count": 1}}, "shut": {"_count": 5, "yet": {"_count": 1}, "he": {"_count": 1}, "behind": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}}, "cursing": {"_count": 10, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "rage": {"_count": 1}}, "your": {"_count": 1, "broomstick": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "fluently": {"_count": 1, "under": {"_count": 1}}, "Snape": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "someone": {"_count": 1, "": {"_count": 1}}}, "Oliver": {"_count": 35, "Wood": {"_count": 15, "": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 2}, "Captain": {"_count": 2}, "took": {"_count": 1}, "looking": {"_count": 1}, "was": {"_count": 2}, "gave": {"_count": 1}, "kept": {"_count": 1}, "the": {"_count": 1}, "Katie": {"_count": 1}, "and": {"_count": 1}}, "Woods": {"_count": 5, "last": {"_count": 1}, "enthusiasm": {"_count": 1}, "had": {"_count": 1}, "been": {"_count": 1}, "who": {"_count": 1}}, "Harry": {"_count": 1, "croaked": {"_count": 1}}, "said": {"_count": 6, "George": {"_count": 4}, "Alicia": {"_count": 1}, "Harry": {"_count": 1}}, "this": {"_count": 2, "is": {"_count": 1}, "years": {"_count": 1}}, "tell": {"_count": 1, "them": {"_count": 1}}, "youre": {"_count": 1, "embarrassing": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Hufflepuff": {"_count": 1, "is": {"_count": 1}}, "calm": {"_count": 1, "down": {"_count": 1}}}, "Seeker": {"_count": 56, "": {"_count": 16, ".": {"_count": 10}, "?": {"_count": 2}, "!": {"_count": 4}}, "too": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "because": {"_count": 1, "whichever": {"_count": 1}}, "catches": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 2, "leaked": {"_count": 1}, "suddenly": {"_count": 1}}, "Terence": {"_count": 1, "Higgs": {"_count": 1}}, "which": {"_count": 1, "could": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "gets": {"_count": 1, "the": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "Weasley": {"_count": 1, "said": {"_count": 1}}, "has": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "injured": {"_count": 1}}, "on": {"_count": 6, "the": {"_count": 4}, "": {"_count": 1}, "Saturday": {"_count": 1}}, "who": {"_count": 3, "had": {"_count": 2}, "has": {"_count": 1}}, "Cedric": {"_count": 1, "Diggory": {"_count": 1}}, "weve": {"_count": 1, "ever": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Wood": {"_count": 1, "said": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "diversion": {"_count": 1, "read": {"_count": 1}}, "cheering": {"_count": 1, "Stewart": {"_count": 1}}, "and": {"_count": 2, "hero": {"_count": 1}, "no": {"_count": 1}}, "Summerbys": {"_count": 1, "nose": {"_count": 1}}, "against": {"_count": 1, "Cho": {"_count": 1}}, "thats": {"_count": 1, "way": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "caught": {"_count": 1, "the": {"_count": 1}}}, "Woods": {"_count": 17, "expression": {"_count": 1, "changed": {"_count": 1}}, "captain": {"_count": 1, "of": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "game": {"_count": 1, "plan": {"_count": 1}}, "side": {"_count": 1, "": {"_count": 1}}, "pep": {"_count": 1, "talk": {"_count": 1}}, "been": {"_count": 2, "teaching": {"_count": 1}, "killed": {"_count": 1}}, "long": {"_count": 1, "talk": {"_count": 1}}, "enthusiasm": {"_count": 1, "for": {"_count": 1}}, "usual": {"_count": 2, "pre": {"_count": 1}, "prematch": {"_count": 1}}, "anguished": {"_count": 1, "yell": {"_count": 1}}, "a": {"_count": 1, "superb": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "standard": {"_count": 1, "but": {"_count": 1}}}, "expression": {"_count": 186, "changed": {"_count": 2, "from": {"_count": 1}, "to": {"_count": 1}}, "on": {"_count": 34, "Snapes": {"_count": 2}, "her": {"_count": 10}, "Rons": {"_count": 3}, "his": {"_count": 13}, "Hagrids": {"_count": 1}, "Mrs": {"_count": 1}, "Harrys": {"_count": 1}, "Hermiones": {"_count": 2}, "what": {"_count": 1}}, "of": {"_count": 36, "watery": {"_count": 1}, "disbelief": {"_count": 1}, "complete": {"_count": 2}, "shock": {"_count": 1}, "mingled": {"_count": 3}, "deep": {"_count": 1}, "ecstasy": {"_count": 1}, "the": {"_count": 3}, "such": {"_count": 1}, "great": {"_count": 4}, "dawning": {"_count": 1}, "his": {"_count": 1}, "enormous": {"_count": 1}, "polite": {"_count": 1}, "something": {"_count": 1}, "innocent": {"_count": 1}, "utmost": {"_count": 2}, "gloating": {"_count": 1}, "purest": {"_count": 1}, "detached": {"_count": 1}, "satisfaction": {"_count": 1}, "benign": {"_count": 1}, "wintry": {"_count": 1}, "outraged": {"_count": 1}, "grief": {"_count": 1}, "distaste": {"_count": 1}, "one": {"_count": 1}}, "that": {"_count": 5, "she": {"_count": 1}, "made": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 2}}, "brightened": {"_count": 1, "when": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 22}}, "It": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 2, "both": {"_count": 1}, "were": {"_count": 1}}, "and": {"_count": 4, "was": {"_count": 1}, "minor": {"_count": 1}, "whispered": {"_count": 1}, "closed": {"_count": 1}}, "grew": {"_count": 1, "hungrier": {"_count": 1}}, "twisting": {"_count": 1, "his": {"_count": 1}}, "only": {"_count": 1, "too": {"_count": 1}}, "clearing": {"_count": 2, "": {"_count": 2}}, "appeared": {"_count": 2, "on": {"_count": 2}}, "was": {"_count": 14, "suspicious": {"_count": 1}, "difficult": {"_count": 1}, "suddenly": {"_count": 1}, "mild": {"_count": 1}, "unfathomable": {"_count": 1}, "kindly": {"_count": 1}, "calm": {"_count": 1}, "blank": {"_count": 1}, "curiously": {"_count": 1}, "greedy": {"_count": 1}, "unreadable": {"_count": 1}, "disbelieving": {"_count": 1}, "so": {"_count": 1}, "full": {"_count": 1}}, "neutral": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 3, "always": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}}, "shes": {"_count": 1, "got": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "remarkably": {"_count": 1, "like": {"_count": 1}}, "most": {"_count": 1, "illnatured": {"_count": 1}}, "very": {"_count": 1, "serious": {"_count": 1}}, "suddenly": {"_count": 1, "came": {"_count": 1}}, "rapt": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "Hagrids": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "looked": {"_count": 1}}, "became": {"_count": 1, "stony": {"_count": 1}}, "cleared": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "our": {"_count": 1}}, "defiant": {"_count": 1, "as": {"_count": 1}}, "spread": {"_count": 1, "across": {"_count": 1}}, "died": {"_count": 1, "out": {"_count": 1}}, "serene": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "twitched": {"_count": 1}}, "stole": {"_count": 1, "over": {"_count": 1}}, "when": {"_count": 2, "bright": {"_count": 1}, "he": {"_count": 1}}, "did": {"_count": 3, "not": {"_count": 3}}, "shrewd": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "hungry": {"_count": 1, "": {"_count": 1}}, "throughout": {"_count": 1, "and": {"_count": 1}}, "almost": {"_count": 1, "bestial": {"_count": 1}}, "hardened": {"_count": 3, "for": {"_count": 1}, "instantly": {"_count": 1}, "": {"_count": 1}}, "greedy": {"_count": 1, "he": {"_count": 1}}, "wild": {"_count": 1, "The": {"_count": 1}}, "unfathomable": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 2, "be": {"_count": 1}, "one": {"_count": 1}}, "disgruntled": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "remained": {"_count": 2, "impassive": {"_count": 1}, "stony": {"_count": 1}}, "appropriate": {"_count": 2, "to": {"_count": 2}}, "upon": {"_count": 1, "her": {"_count": 1}}, "miserable": {"_count": 1, "twirling": {"_count": 1}}, "afraid": {"_count": 1, "that": {"_count": 1}}, "before": {"_count": 1, "mumbling": {"_count": 1}}, "softened": {"_count": 1, "": {"_count": 1}}, "changing": {"_count": 1, "to": {"_count": 1}}}, "puzzlement": {"_count": 3, "to": {"_count": 1, "delight": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "delight": {"_count": 29, "": {"_count": 6, ".": {"_count": 6}}, "just": {"_count": 1, "such": {"_count": 1}}, "it": {"_count": 1, "did": {"_count": 1}}, "except": {"_count": 1, "Harrys": {"_count": 1}}, "OUCH": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "having": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 2, "sprinted": {"_count": 1}, "ran": {"_count": 1}}, "Weasley": {"_count": 1, "have": {"_count": 1}}, "that": {"_count": 1, "Snape": {"_count": 1}}, "missed": {"_count": 1, "all": {"_count": 1}}, "spread": {"_count": 1, "over": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "figure": {"_count": 1}}, "sighs": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "fear": {"_count": 1}}, "leapt": {"_count": 1, "down": {"_count": 1}}, "was": {"_count": 1, "hugging": {"_count": 1}}}, "Absolutely": {"_count": 11, "said": {"_count": 3, "Professor": {"_count": 2}, "Sirius": {"_count": 1}}, "not": {"_count": 2, "": {"_count": 1}, "Creevey": {"_count": 1}}, "spiffing": {"_count": 1, "": {"_count": 1}}, "extraordinary": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "he": {"_count": 1}}, "minuscule": {"_count": 1, "": {"_count": 1}}, "pointless": {"_count": 1, "seeing": {"_count": 1}}, "untrue": {"_count": 1, "": {"_count": 1}}}, "crisply": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "also": {"_count": 1, "moving": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}}, "natural": {"_count": 28, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 1}, "!": {"_count": 1}}, "size": {"_count": 1, "and": {"_count": 1}}, "causes": {"_count": 1, "on": {"_count": 1}}, "charms": {"_count": 1, "that": {"_count": 1}}, "allies": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "habitat": {"_count": 2, "": {"_count": 2}}, "curiosity": {"_count": 1, "would": {"_count": 1}}, "to": {"_count": 3, "miss": {"_count": 1}, "feel": {"_count": 1}, "be": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 3}}, "at": {"_count": 1, "Potions": {"_count": 1}}, "ability": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "perhaps": {"_count": 1, "that": {"_count": 1}}, "order": {"_count": 1, "is": {"_count": 1}}, "successor": {"_count": 1, "to": {"_count": 1}}, "death": {"_count": 1, "like": {"_count": 1}}}, "clue": {"_count": 43, "what": {"_count": 10, "was": {"_count": 5}, "he": {"_count": 1}, "this": {"_count": 1}, "youre": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}}, "who": {"_count": 1, "he": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "!": {"_count": 2}}, "where": {"_count": 1, "he": {"_count": 1}}, "inside": {"_count": 2, "the": {"_count": 2}}, "on": {"_count": 1, "his": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "worked": {"_count": 1, "out": {"_count": 1}}, "sooner": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "please": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "Who": {"_count": 1, "told": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "not": {"_count": 1, "recognized": {"_count": 1}}, "Yeah": {"_count": 1, "but": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "as": {"_count": 3, "to": {"_count": 3}}, "of": {"_count": 1, "how": {"_count": 1}}, "he": {"_count": 1, "strode": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}}, "fiftyfoot": {"_count": 3, "dive": {"_count": 1, "Professor": {"_count": 1}}, "drop": {"_count": 1, "": {"_count": 1}}, "mountain": {"_count": 1, "of": {"_count": 1}}}, "scratch": {"_count": 12, "himself": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Nearly": {"_count": 1}}, "on": {"_count": 2, "what": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 3}}, "Fangs": {"_count": 1, "ears": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 1, "with": {"_count": 1}}, "marks": {"_count": 1, "in": {"_count": 1}}}, "dreams": {"_count": 59, "had": {"_count": 1, "come": {"_count": 1}}, "and": {"_count": 3, "forget": {"_count": 1}, "they": {"_count": 1}, "neglect": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 10}, "?": {"_count": 2}, "!": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "gave": {"_count": 1}}, "untroubled": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "he": {"_count": 1}}, "could": {"_count": 1, "hope": {"_count": 1}}, "of": {"_count": 3, "wizards": {"_count": 1}, "long": {"_count": 1}, "the": {"_count": 1}}, "about": {"_count": 6, "long": {"_count": 1}, "corridors": {"_count": 1}, "Voldemort": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 2}}, "never": {"_count": 1, "speaking": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "with": {"_count": 1, "anyone": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 1}, "which": {"_count": 2}, "ways": {"_count": 1}}, "for": {"_count": 1, "Divination": {"_count": 1}}, "today": {"_count": 1, "she": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "Hermione": {"_count": 1}}, "that": {"_count": 2, "always": {"_count": 1}, "had": {"_count": 1}}, "Potter": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "Hermione": {"_count": 2, "said": {"_count": 1}, "kept": {"_count": 1}}, "to": {"_count": 1, "continue": {"_count": 1}}, "I": {"_count": 1, "went": {"_count": 1}}, "nor": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 2, "thick": {"_count": 1}, "confused": {"_count": 1}}, "involving": {"_count": 1, "flashes": {"_count": 1}}, "Ronald": {"_count": 1, "Weasley": {"_count": 1}}, "would": {"_count": 1, "come": {"_count": 1}}}, "Ever": {"_count": 7, "seen": {"_count": 1, "a": {"_count": 1}}, "since": {"_count": 4, "you": {"_count": 1}, "Harry": {"_count": 2}, "I": {"_count": 1}}, "been": {"_count": 1, "taunted": {"_count": 1}}, "heard": {"_count": 1, "of": {"_count": 1}}}, "build": {"_count": 11, "for": {"_count": 2, "a": {"_count": 2}}, "you": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 2, "his": {"_count": 1}, "an": {"_count": 1}}, "and": {"_count": 1, "teach": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "ideal": {"_count": 1}}, "himself": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}}, "Light": {"_count": 6, "speedy": {"_count": 1, "well": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "green": {"_count": 1, "weed": {"_count": 1}}, "spilled": {"_count": 1, "out": {"_count": 1}}, "your": {"_count": 1, "wands": {"_count": 1}}, "was": {"_count": 1, "sucked": {"_count": 1}}}, "speedy": {"_count": 3, "well": {"_count": 1, "have": {"_count": 1}}, "recovery": {"_count": 1, "from": {"_count": 1}}, "but": {"_count": 1, "Diggorys": {"_count": 1}}}, "decent": {"_count": 31, "broom": {"_count": 2, "Professor": {"_count": 1}, "": {"_count": 1}}, "wizards": {"_count": 1, "said": {"_count": 1}}, "wizard": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "who": {"_count": 1}}, "headmaster": {"_count": 2, "would": {"_count": 1}, "now": {"_count": 1}}, "breakfast": {"_count": 1, "": {"_count": 1}}, "hardworking": {"_count": 1, "relatives": {"_count": 1}}, "player": {"_count": 1, "Ireland": {"_count": 1}}, "robes": {"_count": 1, "if": {"_count": 1}}, "seats": {"_count": 1, "": {"_count": 1}}, "wages": {"_count": 1, "and": {"_count": 1}}, "thing": {"_count": 1, "you": {"_count": 1}}, "head": {"_count": 1, "start": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "tailwind": {"_count": 1, "according": {"_count": 1}}, "pretense": {"_count": 1, "of": {"_count": 1}}, "family": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "yet": {"_count": 1, "the": {"_count": 1}}, "meal": {"_count": 1, "or": {"_count": 1}}, "bruise": {"_count": 1, "remover": {"_count": 1}}, "Shield": {"_count": 1, "Charm": {"_count": 1}}, "attempt": {"_count": 1, "at": {"_count": 1}}, "Wizarding": {"_count": 1, "stock": {"_count": 1}}, "chance": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}}, "Cleansweep": {"_count": 10, "Seven": {"_count": 1, "Id": {"_count": 1}}, "Fives": {"_count": 2, "sweeps": {"_count": 1}, "I": {"_count": 1}}, "Sevens": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "thatd": {"_count": 1}}, "just": {"_count": 1, "so": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "Six": {"_count": 1, "and": {"_count": 1}}, "Eleven": {"_count": 2, "behind": {"_count": 1}, "": {"_count": 1}}}, "Heaven": {"_count": 1, "knows": {"_count": 1, "we": {"_count": 1}}}, "Flattened": {"_count": 1, "in": {"_count": 1, "that": {"_count": 1}}}, "Severus": {"_count": 146, "Snape": {"_count": 28, "in": {"_count": 1}, "was": {"_count": 5}, "": {"_count": 10}, "master": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "completely": {"_count": 1}, "along": {"_count": 1}, "a": {"_count": 1}, "though": {"_count": 1}, "confronted": {"_count": 1}, "moved": {"_count": 1}, "wasnt": {"_count": 1}, "three": {"_count": 1}}, "": {"_count": 47, ".": {"_count": 33}, "?": {"_count": 12}, "!": {"_count": 2}}, "I": {"_count": 3, "You": {"_count": 1}, "know": {"_count": 1}, "do": {"_count": 1}}, "does": {"_count": 1, "seem": {"_count": 1}}, "said": {"_count": 17, "Dumbledore": {"_count": 11}, "Professor": {"_count": 2}, "Lupin": {"_count": 2}, "Slughorn": {"_count": 1}, "Voldemort": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "youve": {"_count": 1, "made": {"_count": 1}}, "Ill": {"_count": 1, "take": {"_count": 1}}, "Harry": {"_count": 2, "didnt": {"_count": 1}, "said": {"_count": 1}}, "was": {"_count": 1, "very": {"_count": 1}}, "Lupin": {"_count": 1, "began": {"_count": 1}}, "youre": {"_count": 1, "making": {"_count": 1}}, "Black": {"_count": 1, "snarled": {"_count": 1}}, "Poppy": {"_count": 1, "please": {"_count": 1}}, "be": {"_count": 2, "reasonable": {"_count": 1}, "very": {"_count": 1}}, "you": {"_count": 3, "cannot": {"_count": 1}, "have": {"_count": 1}, "would": {"_count": 1}}, "please": {"_count": 1, "fetch": {"_count": 1}}, "Dumbledore": {"_count": 1, "turned": {"_count": 1}}, "have": {"_count": 2, "told": {"_count": 1}, "doubtless": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "whispered": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "oh": {"_count": 1, "Severus": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "watch": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 2, "explain": {"_count": 1}, "that": {"_count": 1}}, "And": {"_count": 1, "to": {"_count": 1}}, "Really": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "questioned": {"_count": 1, "Draco": {"_count": 1}}, "here": {"_count": 1, "said": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 1, "what": {"_count": 1}}, "except": {"_count": 1, "to": {"_count": 1}}, "because": {"_count": 2, "I": {"_count": 1}, "death": {"_count": 1}}, "the": {"_count": 2, "Elder": {"_count": 1}, "sword": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}, "lets": {"_count": 1, "find": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "You": {"_count": 1, "refuse": {"_count": 1}}, "at": {"_count": 1, "eleven": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}}, "sternly": {"_count": 28, "over": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "in": {"_count": 1, "their": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "Harry": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "appraising": {"_count": 1, "look": {"_count": 1}}, "weve": {"_count": 1, "been": {"_count": 1}}, "surprised": {"_count": 1, "that": {"_count": 1}}, "seeming": {"_count": 1, "to": {"_count": 1}}, "because": {"_count": 1, "hes": {"_count": 1}}}, "punishing": {"_count": 4, "you": {"_count": 1, "": {"_count": 1}}, "Avery": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "He": {"_count": 1}}, "those": {"_count": 1, "they": {"_count": 1}}}, "player": {"_count": 29, "himself": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 4, "about": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}}, "on": {"_count": 2, "each": {"_count": 1}, "the": {"_count": 1}}, "yet": {"_count": 1, "and": {"_count": 1}}, "short": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "without": {"_count": 1, "knowing": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "Ireland": {"_count": 1, "has": {"_count": 1}}, "zoomed": {"_count": 1, "out": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "that": {"_count": 1, "girl": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 1}, "suffered": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "all": {"_count": 1}}, "but": {"_count": 1, "weve": {"_count": 1}}}, "dinnertime": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "evidently": {"_count": 1, "hoping": {"_count": 1}}}, "kidney": {"_count": 2, "pie": {"_count": 2, "halfway": {"_count": 1}, "then": {"_count": 1}}}, "pie": {"_count": 18, "halfway": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 1, "much": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "to": {"_count": 1, "gape": {"_count": 1}}, "the": {"_count": 1, "aftereffects": {"_count": 1}}, "boiled": {"_count": 1, "potatoes": {"_count": 1}}, "then": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "swung": {"_count": 1}}, "but": {"_count": 1, "followed": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "Deans": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}}, "century": {"_count": 13, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 2}}, "to": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 1, "Pettigrews": {"_count": 1}}, "ago": {"_count": 1, "something": {"_count": 1}}, "a": {"_count": 1, "wizard": {"_count": 1}}, "old": {"_count": 1, "his": {"_count": 1}}}, "shoveling": {"_count": 5, "pie": {"_count": 1, "into": {"_count": 1}}, "down": {"_count": 2, "fourth": {"_count": 1}, "large": {"_count": 1}}, "scrambled": {"_count": 1, "eggs": {"_count": 1}}, "mashed": {"_count": 1, "potato": {"_count": 1}}}, "gaped": {"_count": 27, "at": {"_count": 19, "Harry": {"_count": 1}, "her": {"_count": 7}, "him": {"_count": 5}, "the": {"_count": 3}, "it": {"_count": 1}, "Dumbledore": {"_count": 2}}, "openmouthed": {"_count": 1, "at": {"_count": 1}}, "speechless": {"_count": 1, "at": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "people": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}}, "Beaters": {"_count": 29, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "on": {"_count": 4, "each": {"_count": 2}, "both": {"_count": 1}, "last": {"_count": 1}}, "keep": {"_count": 1, "the": {"_count": 1}}, "Bludgers": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "came": {"_count": 1, "pelting": {"_count": 1}}, "club": {"_count": 1, "at": {"_count": 1}}, "lurched": {"_count": 1, "away": {"_count": 1}}, "Volkov": {"_count": 2, "swung": {"_count": 1}, "and": {"_count": 1}}, "were": {"_count": 2, "whacking": {"_count": 1}, "both": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "Derrick": {"_count": 1, "and": {"_count": 1}}, "bats": {"_count": 2, "": {"_count": 2}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}, "Peakes": {"_count": 1, "and": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "bat": {"_count": 1, "but": {"_count": 1}}}, "Cup": {"_count": 146, "for": {"_count": 4, "sure": {"_count": 1}, "Gryffindor": {"_count": 1}, "the": {"_count": 2}}, "and": {"_count": 11, "youll": {"_count": 1}, "the": {"_count": 2}, "he": {"_count": 1}, "of": {"_count": 1}, "still": {"_count": 1}, "then": {"_count": 1}, "Cedrics": {"_count": 1}, "took": {"_count": 1}, "that": {"_count": 1}, "wearing": {"_count": 1}}, "match": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "Im": {"_count": 1, "Quidditch": {"_count": 1}}, "whats": {"_count": 1, "interesting": {"_count": 1}}, "": {"_count": 43, ".": {"_count": 35}, "?": {"_count": 3}, "!": {"_count": 5}}, "here": {"_count": 1, "needs": {"_count": 1}}, "if": {"_count": 1, "only": {"_count": 1}}, "last": {"_count": 2, "year": {"_count": 2}}, "before": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 1, "earned": {"_count": 1}}, "had": {"_count": 4, "never": {"_count": 1}, "won": {"_count": 1}, "even": {"_count": 1}, "not": {"_count": 1}}, "Gryffindor": {"_count": 1, "Professor": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "of": {"_count": 1, "tea": {"_count": 1}}, "at": {"_count": 3, "last": {"_count": 2}, "Harry": {"_count": 1}}, "than": {"_count": 1, "I": {"_count": 1}}, "the": {"_count": 5, "party": {"_count": 1}, "match": {"_count": 1}, "glory": {"_count": 1}, "Dark": {"_count": 1}, "two": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 5, "theirs": {"_count": 1}, "a": {"_count": 2}, "gleaming": {"_count": 1}, "such": {"_count": 1}}, "Weve": {"_count": 1, "won": {"_count": 1}}, "Tangled": {"_count": 1, "together": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "lasted": {"_count": 1, "at": {"_count": 1}}, "this": {"_count": 2, "summer": {"_count": 1}, "year": {"_count": 1}}, "is": {"_count": 2, "over": {"_count": 2}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "takes": {"_count": 1, "place": {"_count": 1}}, "not": {"_count": 1, "if": {"_count": 1}}, "Harry": {"_count": 2, "would": {"_count": 1}, "thought": {"_count": 1}}, "thing": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "Mum": {"_count": 1}}, "The": {"_count": 1, "letter": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "sped": {"_count": 1, "up": {"_count": 1}}, "wouldnt": {"_count": 1, "miss": {"_count": 1}}, "itself": {"_count": 1, "is": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "said": {"_count": 7, "Percy": {"_count": 1}, "Sonorusl": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 2}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "stadium": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 2, "not": {"_count": 1}, "be": {"_count": 1}}, "to": {"_count": 2, "Hogwarts": {"_count": 1}, "deal": {"_count": 1}}, "always": {"_count": 1, "the": {"_count": 1}}, "didnt": {"_count": 1, "they": {"_count": 1}}, "Look": {"_count": 1, "at": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "but": {"_count": 2, "doesnt": {"_count": 1}, "fled": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "badly": {"_count": 1}}, "in": {"_count": 4, "front": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "aloft": {"_count": 1, "heard": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 1, "fun": {"_count": 1}}, "first": {"_count": 1, "the": {"_count": 1}}, "tonight": {"_count": 1, "he": {"_count": 1}}, "carried": {"_count": 1, "them": {"_count": 1}}, "cried": {"_count": 1, "Hermione": {"_count": 1}}}, "skipping": {"_count": 5, "when": {"_count": 1, "he": {"_count": 1}}, "game": {"_count": 1, "using": {"_count": 1}}, "tricks": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "every": {"_count": 1}}}, "Jordan": {"_count": 50, "reckons": {"_count": 1, "hes": {"_count": 1}}, "was": {"_count": 5, "doing": {"_count": 1}, "saying": {"_count": 1}, "finding": {"_count": 1}, "still": {"_count": 1}, "howling": {"_count": 1}}, "": {"_count": 10, "!": {"_count": 3}, ".": {"_count": 7}}, "Im": {"_count": 1, "warning": {"_count": 1}}, "were": {"_count": 3, "tickling": {"_count": 1}, "discussing": {"_count": 1}, "now": {"_count": 1}}, "finally": {"_count": 1, "left": {"_count": 1}}, "who": {"_count": 5, "were": {"_count": 1}, "was": {"_count": 3}, "had": {"_count": 1}}, "counting": {"_count": 1, "on": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "told": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "sliding": {"_count": 1, "into": {"_count": 1}}, "in": {"_count": 1, "on": {"_count": 1}}, "pointing": {"_count": 1, "down": {"_count": 1}}, "jumping": {"_count": 1, "up": {"_count": 1}}, "hurrying": {"_count": 1, "down": {"_count": 1}}, "whispered": {"_count": 1, "two": {"_count": 1}}, "had": {"_count": 3, "unearthed": {"_count": 1}, "let": {"_count": 1}, "pointed": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "juggling": {"_count": 1, "empty": {"_count": 1}}, "and": {"_count": 2, "was": {"_count": 1}, "Hannah": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "covering": {"_count": 1, "his": {"_count": 1}}, "trying": {"_count": 1, "not": {"_count": 1}}, "came": {"_count": 1, "Harrys": {"_count": 1}}, "saw": {"_count": 1, "Dolohov": {"_count": 1}}}, "Bet": {"_count": 18, "its": {"_count": 1, "that": {"_count": 1}}, "you": {"_count": 5, "could": {"_count": 1}, "loved": {"_count": 1}, "five": {"_count": 1}, "wouldnt": {"_count": 1}, "anything": {"_count": 1}}, "youre": {"_count": 2, "surprised": {"_count": 1}, "not": {"_count": 1}}, "he": {"_count": 2, "didnt": {"_count": 1}, "asked": {"_count": 1}}, "it": {"_count": 2, "tastes": {"_count": 1}, "is": {"_count": 1}}, "she": {"_count": 1, "didnt": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "Percy": {"_count": 1, "loved": {"_count": 1}}, "Umbridge": {"_count": 1, "is": {"_count": 1}}, "Dumbledore": {"_count": 1, "wishes": {"_count": 1}}}, "Gregory": {"_count": 6, "the": {"_count": 2, "Smarmy": {"_count": 1}, "Smarmys": {"_count": 1}}, "Goyle": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "Goyles": {"_count": 1, "lap": {"_count": 1}}}, "Smarmy": {"_count": 1, "that": {"_count": 1, "we": {"_count": 1}}}, "flanked": {"_count": 11, "by": {"_count": 5, "Crabbe": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "winged": {"_count": 1}, "two": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 2, "stone": {"_count": 1}, "statues": {"_count": 1}}, "the": {"_count": 2, "staffroom": {"_count": 1}, "entrance": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "Having": {"_count": 16, "a": {"_count": 3, "last": {"_count": 1}, "good": {"_count": 1}, "nosy": {"_count": 1}}, "fun": {"_count": 1, "": {"_count": 1}}, "always": {"_count": 2, "traveled": {"_count": 1}, "considered": {"_count": 1}}, "finished": {"_count": 1, "chopping": {"_count": 1}}, "reached": {"_count": 1, "their": {"_count": 1}}, "hurtled": {"_count": 1, "whitefaced": {"_count": 1}}, "handed": {"_count": 1, "Voldemort": {"_count": 1}}, "wasted": {"_count": 1, "a": {"_count": 1}}, "concealed": {"_count": 1, "himself": {"_count": 1}}, "received": {"_count": 1, "its": {"_count": 1}}, "misunderstood": {"_count": 1, "Freds": {"_count": 1}}, "refused": {"_count": 1, "what": {"_count": 1}}, "ensured": {"_count": 1, "this": {"_count": 1}}}, "meal": {"_count": 12, "Potter": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "turkey": {"_count": 1}, "ensuring": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 1, "huffy": {"_count": 1}}, "and": {"_count": 1, "stopped": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "or": {"_count": 1, "she": {"_count": 1}}, "ready": {"_count": 1, "on": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}}, "scowl": {"_count": 11, "": {"_count": 5, ".": {"_count": 5}}, "just": {"_count": 1, "like": {"_count": 1}}, "she": {"_count": 1, "did": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "heavily": {"_count": 1, "at": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 1, "at": {"_count": 1}}}, "anytime": {"_count": 4, "on": {"_count": 1, "my": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "family": {"_count": 1}}}, "Tonight": {"_count": 10, "if": {"_count": 1, "you": {"_count": 1}}, "we": {"_count": 1, "will": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "before": {"_count": 1, "midnight": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "however": {"_count": 1, "there": {"_count": 1}}, "eight": {"_count": 1, "oclock": {"_count": 1}}, "was": {"_count": 1, "supposed": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}}, "duel": {"_count": 28, "": {"_count": 10, ".": {"_count": 7}, "?": {"_count": 3}}, "before": {"_count": 1, "I": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "with": {"_count": 5, "the": {"_count": 2}, "Bellatrix": {"_count": 1}, "Grindelwald": {"_count": 1}, "both": {"_count": 1}}, "situation": {"_count": 1, "Nevilles": {"_count": 1}}, "ever": {"_count": 1, "matched": {"_count": 1}}, "of": {"_count": 1, "legend": {"_count": 1}}, "him": {"_count": 1, "here": {"_count": 1}}, "for": {"_count": 1, "more": {"_count": 1}}, "that": {"_count": 1, "followed": {"_count": 1}}, "and": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 1, "kill": {"_count": 1}}, "on": {"_count": 1, "skill": {"_count": 1}}, "anyone": {"_count": 1, "till": {"_count": 1}}}, "wheeling": {"_count": 7, "around": {"_count": 4, "": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 2}}, "his": {"_count": 1, "trolley": {"_count": 1}}, "along": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "face": {"_count": 1}}}, "sizing": {"_count": 3, "them": {"_count": 1, "up": {"_count": 1}}, "him": {"_count": 1, "up": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}}, "Midnight": {"_count": 6, "all": {"_count": 1, "right": {"_count": 1}}, "on": {"_count": 1, "Saturday": {"_count": 1}}, "ticked": {"_count": 1, "nearer": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "came": {"_count": 1, "and": {"_count": 1}}, "our": {"_count": 1, "mum": {"_count": 1}}}, "trophy": {"_count": 14, "room": {"_count": 12, "thats": {"_count": 1}, "": {"_count": 4}, "Malfoy": {"_count": 1}, "with": {"_count": 1}, "too": {"_count": 1}, "to": {"_count": 2}, "on": {"_count": 2}}, "cases": {"_count": 1, "glimmered": {"_count": 1}}, "for": {"_count": 1, "my": {"_count": 1}}}, "Catching": {"_count": 4, "the": {"_count": 1, "look": {"_count": 1}}, "sight": {"_count": 1, "of": {"_count": 1}}, "Fudges": {"_count": 1, "eye": {"_count": 1}}, "Harrys": {"_count": 1, "eye": {"_count": 1}}}, "duels": {"_count": 5, "you": {"_count": 1, "know": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "Hes": {"_count": 1, "got": {"_count": 1}}, "for": {"_count": 1, "its": {"_count": 1}}}, "Malfoyll": {"_count": 1, "be": {"_count": 1, "able": {"_count": 1}}}, "Neither": {"_count": 42, "of": {"_count": 15, "you": {"_count": 2}, "them": {"_count": 10}, "us": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "Neville": {"_count": 1, "nor": {"_count": 1}}, "dwarf": {"_count": 1, "nor": {"_count": 1}}, "Ron": {"_count": 8, "nor": {"_count": 8}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Dumbledore": {"_count": 4, "nor": {"_count": 4}}, "Harry": {"_count": 3, "nor": {"_count": 3}}, "can": {"_count": 6, "live": {"_count": 6}}, "his": {"_count": 1, "father": {"_count": 1}}, "worked": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "live": {"_count": 1}}}, "damage": {"_count": 45, "": {"_count": 9, ".": {"_count": 7}, "?": {"_count": 2}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 11, "us": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 2}, "their": {"_count": 2}, "them": {"_count": 1}, "be": {"_count": 1}, "both": {"_count": 1}, "his": {"_count": 1}, "yourself": {"_count": 1}}, "their": {"_count": 1, "chances": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "was": {"_count": 3, "done": {"_count": 2}, "too": {"_count": 1}}, "that": {"_count": 2, "leg": {"_count": 1}, "day": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 2}}, "its": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 1, "Orders": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "have": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "mice": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "than": {"_count": 1, "outright": {"_count": 1}}, "on": {"_count": 1, "me": {"_count": 1}}, "your": {"_count": 1, "soul": {"_count": 1}}, "and": {"_count": 1, "Hagrid": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "cannot": {"_count": 1, "be": {"_count": 1}}}, "Throw": {"_count": 2, "it": {"_count": 1, "away": {"_count": 1}}, "us": {"_count": 1, "into": {"_count": 1}}}, "punch": {"_count": 11, "him": {"_count": 2, "on": {"_count": 1}, "but": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "harder": {"_count": 1, "and": {"_count": 1}}, "every": {"_count": 1, "inch": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "kick": {"_count": 1, "bite": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "peace": {"_count": 18, "in": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "of": {"_count": 3, "the": {"_count": 2}, "mind": {"_count": 1}}, "hope": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 4, "quiet": {"_count": 2}, "cool": {"_count": 1}, "try": {"_count": 1}}, "between": {"_count": 1, "Ron": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}}, "overhearing": {"_count": 4, "what": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "pointing": {"_count": 1}}}, "selfish": {"_count": 4, "of": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "more": {"_count": 1}}, "than": {"_count": 1, "you": {"_count": 1}}}, "Goodbye": {"_count": 16, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}, "Peter": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 3, "Remus": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "Arry": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 1, "take": {"_count": 1}}, "Tom": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "Dobby": {"_count": 1, "he": {"_count": 1}}, "goodbye": {"_count": 1, "Ill": {"_count": 1}}}, "dodge": {"_count": 4, "it": {"_count": 1, "because": {"_count": 1}}, "the": {"_count": 2, "Bludger": {"_count": 1}, "Keeper": {"_count": 1}}, "undetected": {"_count": 1, "around": {"_count": 1}}}, "block": {"_count": 27, "them": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 4, "fire": {"_count": 1}, "contents": {"_count": 1}, "scream": {"_count": 1}, "doorway": {"_count": 1}}, "unfriendly": {"_count": 1, "spells": {"_count": 1}}, "Harrys": {"_count": 1, "way": {"_count": 1}}, "Percy": {"_count": 1, "out": {"_count": 1}}, "out": {"_count": 4, "a": {"_count": 1}, "Hagrids": {"_count": 1}, "all": {"_count": 1}, "Voldemorts": {"_count": 1}}, "her": {"_count": 1, "Harry": {"_count": 1}}, "of": {"_count": 3, "chocolate": {"_count": 1}, "scarlet": {"_count": 1}, "offices": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "them": {"_count": 1}}, "a": {"_count": 3, "single": {"_count": 3}}, "him": {"_count": 1, "": {"_count": 1}}, "lying": {"_count": 1, "across": {"_count": 1}}, "your": {"_count": 1, "mind": {"_count": 1}}, "it": {"_count": 2, "and": {"_count": 1}, "out": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}}, "sneering": {"_count": 23, "face": {"_count": 3, "kept": {"_count": 1}, "below": {"_count": 1}, "was": {"_count": 1}}, "in": {"_count": 1, "just": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "laugh": {"_count": 1, "": {"_count": 1}}, "comments": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "drawl": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "up": {"_count": 1, "at": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "indifference": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "jeering": {"_count": 1}}, "Hufflepuff": {"_count": 1, "Zacharias": {"_count": 1}}}, "looming": {"_count": 9, "up": {"_count": 1, "out": {"_count": 1}}, "Ministry": {"_count": 1, "hearing": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "over": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "shadow": {"_count": 1, "quivered": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "prospect": {"_count": 1, "of": {"_count": 1}}, "Ron": {"_count": 1, "wanted": {"_count": 1}}}, "facetoface": {"_count": 28, "": {"_count": 3, ".": {"_count": 3}}, "with": {"_count": 19, "none": {"_count": 1}, "Draco": {"_count": 1}, "a": {"_count": 2}, "him": {"_count": 2}, "Ernie": {"_count": 1}, "Filch": {"_count": 1}, "Wormtail": {"_count": 1}, "Hermione": {"_count": 2}, "them": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 2}, "Professor": {"_count": 1}, "Voldemort": {"_count": 1}, "one": {"_count": 1}, "Dolohov": {"_count": 1}}, "It": {"_count": 1, "had": {"_count": 1}}, "not": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 1, "also": {"_count": 1}}, "then": {"_count": 1, "she": {"_count": 1}}, "encounter": {"_count": 1, "kept": {"_count": 1}}, "like": {"_count": 1, "I": {"_count": 1}}}, "Halfpast": {"_count": 1, "eleven": {"_count": 1, "Ron": {"_count": 1}}}, "bathrobes": {"_count": 2, "picked": {"_count": 1, "up": {"_count": 1}}, "hanging": {"_count": 1, "off": {"_count": 1}}}, "tower": {"_count": 59, "room": {"_count": 9, "down": {"_count": 1}, "deciphering": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}, "full": {"_count": 1}, "interrupting": {"_count": 1}, "muttering": {"_count": 1}, "and": {"_count": 1}}, "at": {"_count": 2, "midnight": {"_count": 1}, "Hogwarts": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 14}, "?": {"_count": 2}}, "seemed": {"_count": 1, "the": {"_count": 1}}, "dormitory": {"_count": 1, "visiting": {"_count": 1}}, "window": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "unless": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 5, "I": {"_count": 1}, "several": {"_count": 1}, "get": {"_count": 1}, "by": {"_count": 1}, "breaking": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "nearly": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 2, "crates": {"_count": 1}, "charred": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "resolutely": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "the": {"_count": 1, "Ravenclaws": {"_count": 1}}, "she": {"_count": 1, "whispered": {"_count": 1}}, "wall": {"_count": 1, "propped": {"_count": 1}}, "top": {"_count": 2, "was": {"_count": 1}, "nor": {"_count": 1}}, "stairs": {"_count": 1, "To": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "Dumbledore": {"_count": 1}}, "when": {"_count": 2, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}}, "block": {"_count": 1, "of": {"_count": 1}}, "where": {"_count": 1, "Dumbledore": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}}, "embers": {"_count": 3, "were": {"_count": 1, "still": {"_count": 1}}, "crumbled": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hunched": {"_count": 11, "black": {"_count": 1, "shadows": {"_count": 1}}, "in": {"_count": 2, "pain": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "over": {"_count": 2, "so": {"_count": 1}, "tables": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "woman": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 1, "shoulders": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}}, "bathrobe": {"_count": 4, "and": {"_count": 2, "a": {"_count": 2}}, "for": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "frown": {"_count": 11, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "Harry": {"_count": 1}}, "on": {"_count": 4, "her": {"_count": 3}, "his": {"_count": 1}}, "and": {"_count": 1, "nodded": {"_count": 1}}, "line": {"_count": 1, "had": {"_count": 1}}, "momentarily": {"_count": 1, "crease": {"_count": 1}}}, "interfering": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 2, "what": {"_count": 1}, "reception": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "Hogwarts": {"_count": 2}}, "trout": {"_count": 1, "which": {"_count": 1}}}, "Lady": {"_count": 66, "and": {"_count": 6, "climbed": {"_count": 1}, "her": {"_count": 2}, "they": {"_count": 1}, "pulled": {"_count": 1}, "she": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "had": {"_count": 3, "gone": {"_count": 1}, "vanished": {"_count": 1}, "barely": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 12}, "?": {"_count": 2}}, "swung": {"_count": 4, "open": {"_count": 1}, "forward": {"_count": 2}, "shut": {"_count": 1}}, "jerking": {"_count": 1, "out": {"_count": 1}}, "called": {"_count": 2, "grumpily": {"_count": 1}, "irritably": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 3, "back": {"_count": 1}, "sitting": {"_count": 1}, "snoozing": {"_count": 1}}, "by": {"_count": 1, "telling": {"_count": 1}}, "the": {"_count": 3, "password": {"_count": 3}}, "entering": {"_count": 1, "Gryffindor": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "looking": {"_count": 1}}, "Violets": {"_count": 1, "just": {"_count": 1}}, "soothingly": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "who": {"_count": 9, "was": {"_count": 4}, "smoothed": {"_count": 1}, "had": {"_count": 1}, "swung": {"_count": 1}, "called": {"_count": 1}, "drank": {"_count": 1}}, "stared": {"_count": 1, "down": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "could": {"_count": 1, "ask": {"_count": 1}}, "this": {"_count": 1, "being": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "wondering": {"_count": 1, "what": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "goose": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "bumps": {"_count": 4, "rising": {"_count": 1}, "had": {"_count": 1}, "erupt": {"_count": 1}, "": {"_count": 1}}, "pimples": {"_count": 1, "half": {"_count": 1}}}, "Switching": {"_count": 5, "Spells": {"_count": 2, "": {"_count": 2}}, "Spell": {"_count": 2, "in": {"_count": 1}, "during": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "painting": {"_count": 31, "": {"_count": 5, ".": {"_count": 5}}, "of": {"_count": 9, "a": {"_count": 5}, "some": {"_count": 1}, "the": {"_count": 2}, "themselves": {"_count": 1}}, "and": {"_count": 1, "turned": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "Grimmauld": {"_count": 1}}, "swung": {"_count": 1, "forward": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "just": {"_count": 1, "behind": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "looked": {"_count": 1, "inquiringly": {"_count": 1}}, "yawning": {"_count": 1, "or": {"_count": 1}}, "inside": {"_count": 1, "and": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "painting": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}}, "shrilly": {"_count": 31, "": {"_count": 16, ".": {"_count": 16}}, "as": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "gazing": {"_count": 1, "up": {"_count": 1}}, "unless": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "same": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "throwing": {"_count": 1, "himself": {"_count": 1}}, "over": {"_count": 1, "Winkys": {"_count": 1}}, "and": {"_count": 2, "her": {"_count": 1}, "Hagrid": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "hooting": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}}, "Dyou": {"_count": 75, "think": {"_count": 33, "Im": {"_count": 2}, "that": {"_count": 1}, "hell": {"_count": 3}, "he": {"_count": 3}, "would": {"_count": 1}, "I": {"_count": 5}, "weve": {"_count": 2}, "they": {"_count": 1}, "its": {"_count": 2}, "theres": {"_count": 1}, "you": {"_count": 3}, "we": {"_count": 1}, "this": {"_count": 1}, "hed": {"_count": 1}, "": {"_count": 1}, "it": {"_count": 1}, "Id": {"_count": 1}, "she": {"_count": 1}, "your": {"_count": 1}, "Hermione": {"_count": 1}}, "want": {"_count": 6, "the": {"_count": 1}, "to": {"_count": 4}, "help": {"_count": 1}}, "really": {"_count": 1, "think": {"_count": 1}}, "realize": {"_count": 3, "how": {"_count": 2}, "Harry": {"_count": 1}}, "know": {"_count": 12, "what": {"_count": 6}, "if": {"_count": 2}, "I": {"_count": 1}, "Crouch": {"_count": 1}, "how": {"_count": 2}}, "get": {"_count": 1, "the": {"_count": 1}}, "reckon": {"_count": 12, "we": {"_count": 2}, "hes": {"_count": 2}, "he": {"_count": 2}, "they": {"_count": 1}, "its": {"_count": 1}, "she": {"_count": 1}, "if": {"_count": 1}, "anyones": {"_count": 1}, "this": {"_count": 1}}, "dyou": {"_count": 2, "want": {"_count": 1}, "know": {"_count": 1}}, "understand": {"_count": 1, "me": {"_count": 1}}, "mind": {"_count": 2, "not": {"_count": 1}, "if": {"_count": 1}}, "mean": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "to": {"_count": 1}}}, "finds": {"_count": 20, "all": {"_count": 1, "three": {"_count": 1}}, "out": {"_count": 10, "what": {"_count": 1}, "youve": {"_count": 1}, "weve": {"_count": 1}, "hell": {"_count": 1}, "Winky": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "about": {"_count": 1}, "Im": {"_count": 1}}, "us": {"_count": 1, "first": {"_count": 1}}, "the": {"_count": 2, "unicorn": {"_count": 1}, "condition": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "before": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "them": {"_count": 1, "insulting": {"_count": 1}}, "it": {"_count": 2, "again": {"_count": 1}, "difficult": {"_count": 1}}}, "snuffling": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "snores": {"_count": 1, "from": {"_count": 1}}}, "breathed": {"_count": 57, "Ron": {"_count": 1, "squinting": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "Harry": {"_count": 2, "creeping": {"_count": 1}, "looking": {"_count": 1}}, "the": {"_count": 4, "elf": {"_count": 1}, "second": {"_count": 2}, "smell": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "glancing": {"_count": 1, "back": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "Malfoy": {"_count": 3, "his": {"_count": 1}, "": {"_count": 2}}, "Madam": {"_count": 1, "Rosmerta": {"_count": 1}}, "gazing": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "Black": {"_count": 1}}, "Hermione": {"_count": 6, "": {"_count": 4}, "as": {"_count": 1}, "behind": {"_count": 1}}, "properly": {"_count": 1, "before": {"_count": 1}}, "quietly": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 2}}, "flinging": {"_count": 1, "out": {"_count": 1}}, "Rita": {"_count": 1, "now": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "sigh": {"_count": 1}, "note": {"_count": 1}}, "Umbridge": {"_count": 1, "as": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 2, "joining": {"_count": 1}, "plucking": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Riddle": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "deeply": {"_count": 1, "for": {"_count": 1}}, "Greyback": {"_count": 1, "": {"_count": 1}}, "Griphook": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}}, "squinting": {"_count": 35, "through": {"_count": 7, "the": {"_count": 5}, "his": {"_count": 2}}, "about": {"_count": 1, "for": {"_count": 1}}, "fixedly": {"_count": 1, "at": {"_count": 1}}, "up": {"_count": 5, "the": {"_count": 3}, "and": {"_count": 1}, "at": {"_count": 1}}, "at": {"_count": 7, "them": {"_count": 1}, "the": {"_count": 1}, "Dobbys": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}, "Ron": {"_count": 1}}, "around": {"_count": 4, "for": {"_count": 2}, "at": {"_count": 2}}, "into": {"_count": 3, "next": {"_count": 1}, "the": {"_count": 2}}, "to": {"_count": 2, "see": {"_count": 1}, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "suspiciously": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 1, "into": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "quite": {"_count": 1}}}, "password": {"_count": 36, "to": {"_count": 4, "get": {"_count": 2}, "the": {"_count": 1}, "tune": {"_count": 1}}, "not": {"_count": 1, "having": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 1}, "?": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Exactly": {"_count": 1, "said": {"_count": 1}}, "excuse": {"_count": 1, "me": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "pretending": {"_count": 1}}, "Flibbertigibbet": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "evidently": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "banana": {"_count": 1, "fritters": {"_count": 1}}, "Pine": {"_count": 1, "fresh": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "sprang": {"_count": 1}}, "no": {"_count": 1, "entrance": {"_count": 1}}, "or": {"_count": 1, "will": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "changed": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "swung": {"_count": 1, "forward": {"_count": 1}}, "muttering": {"_count": 1, "strings": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "passwords": {"_count": 10, "\u2018Pig": {"_count": 1, "snout": {"_count": 1}}, "\u2018Fortuna": {"_count": 1, "Major": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "left": {"_count": 1}}, "into": {"_count": 1, "Gryffindor": {"_count": 1}}, "still": {"_count": 1, "\u2018tapeworm": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}}, "\u2018Pig": {"_count": 1, "snout": {"_count": 1, "but": {"_count": 1}}}, "snout": {"_count": 16, "but": {"_count": 1, "it": {"_count": 1}}, "pig": {"_count": 1, "snout": {"_count": 1}}, "panted": {"_count": 1, "Harry": {"_count": 1}}, "toward": {"_count": 1, "Ron": {"_count": 1}}, "they": {"_count": 1, "said": {"_count": 1}}, "with": {"_count": 2, "wide": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "Tonks": {"_count": 1, "": {"_count": 1}}, "shape": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "into": {"_count": 1}}, "a": {"_count": 1, "bruise": {"_count": 1}}}, "Ladys": {"_count": 9, "gone": {"_count": 1, "off": {"_count": 1}}, "ripped": {"_count": 1, "canvas": {"_count": 1}}, "portrait": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 1, "Violet": {"_count": 1}}, "friend": {"_count": 1, "winked": {"_count": 1}}, "corridor": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "moonlit": {"_count": 1, "corridor": {"_count": 1}}}, "mended": {"_count": 15, "it": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "Harrys": {"_count": 1, "bones": {"_count": 1}}, "magically": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "the": {"_count": 1, "glass": {"_count": 1}}, "then": {"_count": 1, "fell": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "itself": {"_count": 1, "instantly": {"_count": 1}}, "skull": {"_count": 1, "not": {"_count": 1}}, "Malfoys": {"_count": 1, "Sectumsempra": {"_count": 1}}, "he": {"_count": 1, "continued": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}}, "scrambling": {"_count": 13, "to": {"_count": 5, "his": {"_count": 4}, "get": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 3}}, "back": {"_count": 1, "onto": {"_count": 1}}, "panicstricken": {"_count": 1, "across": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "jostling": {"_count": 1}}}, "Curse": {"_count": 109, "of": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 29, ".": {"_count": 24}, "!": {"_count": 2}, "?": {"_count": 3}}, "put": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 2, "yeti": {"_count": 1}, "spell": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "said": {"_count": 7, "Moody": {"_count": 2}, "Neville": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Ron": {"_count": 1}, "George": {"_count": 1}, "Harry": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "on": {"_count": 13, "each": {"_count": 1}, "the": {"_count": 2}, "Frank": {"_count": 1}, "Wormtail": {"_count": 1}, "a": {"_count": 2}, "Krum": {"_count": 1}, "him": {"_count": 1}, "Nevilles": {"_count": 1}, "Mum": {"_count": 1}, "Tonkss": {"_count": 1}, "people": {"_count": 1}}, "upon": {"_count": 3, "them": {"_count": 1}, "Pius": {"_count": 1}, "him": {"_count": 1}}, "with": {"_count": 1, "everything": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "hes": {"_count": 1, "still": {"_count": 1}}, "forced": {"_count": 1, "countless": {"_count": 1}}, "believing": {"_count": 1, "him": {"_count": 1}}, "which": {"_count": 2, "would": {"_count": 1}, "is": {"_count": 1}}, "was": {"_count": 2, "for": {"_count": 1}, "not": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 2, "left": {"_count": 1}, "hit": {"_count": 1}}, "very": {"_count": 1, "weak": {"_count": 1}}, "Crouch": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 4, "took": {"_count": 1}, "blew": {"_count": 1}, "who": {"_count": 1}, "it": {"_count": 1}}, "by": {"_count": 1, "my": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "for": {"_count": 1, "causing": {"_count": 1}}, "I": {"_count": 2, "suppose": {"_count": 1}, "I": {"_count": 1}}, "completely": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 4, "she": {"_count": 1}, "backfired": {"_count": 1}, "huge": {"_count": 1}, "just": {"_count": 1}}, "lift": {"_count": 1, "": {"_count": 1}}, "Breakers": {"_count": 1, "for": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 1, "have": {"_count": 1}}, "at": {"_count": 4, "Dumbledore": {"_count": 1}, "the": {"_count": 1}, "Crabbe": {"_count": 1}, "him": {"_count": 1}}, "he": {"_count": 1, "waved": {"_count": 1}}, "hed": {"_count": 1, "hardly": {"_count": 1}}, "you": {"_count": 1, "should": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "missed": {"_count": 1, "MadEye": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "MadEye": {"_count": 1, "set": {"_count": 1}}, "more": {"_count": 1, "evidence": {"_count": 1}}, "You": {"_count": 1, "need": {"_count": 1}}, "used": {"_count": 1, "on": {"_count": 1}}, "rebounded": {"_count": 1, "upon": {"_count": 1}}, "Harry": {"_count": 1, "started": {"_count": 1}}, "shot": {"_count": 1, "so": {"_count": 1}}}, "Bogies": {"_count": 2, "Quirrell": {"_count": 1, "told": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}}, "beckoned": {"_count": 27, "them": {"_count": 6, "all": {"_count": 3}, "over": {"_count": 1}, "to": {"_count": 1}, "forward": {"_count": 1}}, "to": {"_count": 4, "Draco": {"_count": 1}, "Crabbe": {"_count": 1}, "Krum": {"_count": 1}, "Harry": {"_count": 1}}, "Harry": {"_count": 7, "over": {"_count": 1}, "toward": {"_count": 1}, "closer": {"_count": 2}, "back": {"_count": 2}, "to": {"_count": 1}}, "Fudge": {"_count": 1, "toward": {"_count": 1}}, "Frank": {"_count": 1, "into": {"_count": 1}}, "everyone": {"_count": 1, "to": {"_count": 1}}, "forward": {"_count": 1, "one": {"_count": 1}}, "imperiously": {"_count": 1, "to": {"_count": 1}}, "its": {"_count": 1, "jointed": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "again": {"_count": 2, "more": {"_count": 1}, "": {"_count": 1}}}, "flitted": {"_count": 11, "along": {"_count": 1, "corridors": {"_count": 1}}, "across": {"_count": 3, "Quirrells": {"_count": 1}, "his": {"_count": 1}, "Siriuss": {"_count": 1}}, "into": {"_count": 3, "her": {"_count": 1}, "neighboring": {"_count": 1}, "Lord": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 1, "Professor": {"_count": 1}}, "away": {"_count": 1, "charging": {"_count": 1}}}, "striped": {"_count": 7, "with": {"_count": 1, "bars": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "silk": {"_count": 1, "like": {"_count": 1}}, "pajamas": {"_count": 1, "covered": {"_count": 1}}, "stained": {"_count": 1, "awning": {"_count": 1}}, "one": {"_count": 1, "piece": {"_count": 1}}, "by": {"_count": 1, "their": {"_count": 1}}}, "bars": {"_count": 27, "of": {"_count": 10, "moonlight": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 3}, "Pigwidgeons": {"_count": 1}, "Hedwigs": {"_count": 1}, "his": {"_count": 1}, "A": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 3, "Harrys": {"_count": 1}, "the": {"_count": 2}}, "at": {"_count": 2, "him": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "were": {"_count": 2, "pulled": {"_count": 1}, "safely": {"_count": 1}}, "dangling": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 3, "making": {"_count": 1}, "knocking": {"_count": 1}, "burgers": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "across": {"_count": 1, "dark": {"_count": 1}}, "turned": {"_count": 1, "into": {"_count": 1}}}, "moonlight": {"_count": 29, "from": {"_count": 2, "the": {"_count": 2}}, "caught": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "and": {"_count": 2, "shadows": {"_count": 1}, "there": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "lay": {"_count": 2, "across": {"_count": 1}, "back": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "snowy": {"_count": 1}}, "which": {"_count": 1, "soared": {"_count": 1}}, "filtering": {"_count": 1, "in": {"_count": 1}}, "clearly": {"_count": 1, "dead": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "the": {"_count": 2, "Sorting": {"_count": 1}, "winter": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}}, "tiptoed": {"_count": 5, "toward": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 1, "them": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}}, "cases": {"_count": 13, "glimmered": {"_count": 1, "where": {"_count": 1}}, "and": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "marauding": {"_count": 1}}, "than": {"_count": 1, "mine": {"_count": 1}}, "race": {"_count": 1, "each": {"_count": 1}}, "full": {"_count": 2, "of": {"_count": 2}}, "somebody": {"_count": 1, "else": {"_count": 1}}, "are": {"_count": 1, "completely": {"_count": 1}}, "skeletal": {"_count": 1, "black": {"_count": 1}}, "their": {"_count": 1, "wigs": {"_count": 1}}}, "glimmered": {"_count": 8, "where": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "place": {"_count": 1}, "the": {"_count": 1}}, "overhead": {"_count": 1, "and": {"_count": 1}}, "dully": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "silver": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "wet": {"_count": 1}}}, "Cups": {"_count": 1, "shields": {"_count": 1, "plates": {"_count": 1}}}, "shields": {"_count": 4, "plates": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "goblin": {"_count": 1}}, "a": {"_count": 1, "sparkling": {"_count": 1}}}, "statues": {"_count": 25, "winked": {"_count": 1, "silver": {"_count": 1}}, "shadow": {"_count": 1, "looked": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "giant": {"_count": 1, "toes": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "hump": {"_count": 1, "opened": {"_count": 1}}, "of": {"_count": 6, "winged": {"_count": 1}, "what": {"_count": 1}, "diamond": {"_count": 1}, "the": {"_count": 3}}, "larger": {"_count": 1, "than": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "vases": {"_count": 1}, "suits": {"_count": 1}}, "listening": {"_count": 1, "": {"_count": 1}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "stood": {"_count": 1}}, "head": {"_count": 1, "to": {"_count": 1}}, "side": {"_count": 1, "": {"_count": 1}}, "stampeded": {"_count": 1, "past": {"_count": 1}}}, "edged": {"_count": 33, "along": {"_count": 2, "the": {"_count": 2}}, "toward": {"_count": 1, "the": {"_count": 1}}, "nearer": {"_count": 2, "Harry": {"_count": 1}, "so": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 4}}, "through": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "forward": {"_count": 3, "his": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 2, "way": {"_count": 2}}, "her": {"_count": 1, "chair": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "among": {"_count": 1, "them": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 3}}, "closer": {"_count": 1, "and": {"_count": 1}}, "slowly": {"_count": 1, "toward": {"_count": 1}}, "over": {"_count": 1, "out": {"_count": 1}}, "sideways": {"_count": 1, "so": {"_count": 1}}, "back": {"_count": 1, "along": {"_count": 1}}, "right": {"_count": 2, "around": {"_count": 1}, "up": {"_count": 1}}, "handkerchief": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "her": {"_count": 1}}}, "chickened": {"_count": 1, "out": {"_count": 1, "Ron": {"_count": 1}}}, "Sniff": {"_count": 1, "around": {"_count": 1, "my": {"_count": 1}}}, "speaking": {"_count": 125, "to": {"_count": 18, "Mrs": {"_count": 1}, "us": {"_count": 1}, "me": {"_count": 1}, "each": {"_count": 1}, "Professor": {"_count": 1}, "but": {"_count": 1}, "everyone": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 2}, "somebody": {"_count": 1}, "Hermione": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "Mr": {"_count": 1}, "Kreacher": {"_count": 1}, "anybody": {"_count": 1}}, "particularly": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 7, "Snape": {"_count": 1}, "Gryffindor": {"_count": 1}, "your": {"_count": 1}, "course": {"_count": 2}, "hitherto": {"_count": 1}, "getting": {"_count": 1}}, "said": {"_count": 1, "Uncle": {"_count": 1}}, "for": {"_count": 5, "half": {"_count": 1}, "the": {"_count": 4}}, "much": {"_count": 1, "": {"_count": 1}}, "Parseltongue": {"_count": 3, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 4, "last": {"_count": 3}, "random": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 3}, "his": {"_count": 1}, "carefully": {"_count": 1}, "that": {"_count": 1}}, "very": {"_count": 4, "slowly": {"_count": 1}, "low": {"_count": 1}, "loudly": {"_count": 1}, "quickly": {"_count": 1}}, "slowly": {"_count": 1, "as": {"_count": 1}}, "listening": {"_count": 1, "hard": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 19}}, "from": {"_count": 3, "opposite": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 3, "they": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}}, "occasionally": {"_count": 1, "when": {"_count": 1}}, "terms": {"_count": 5, "with": {"_count": 4}, "again": {"_count": 1}}, "but": {"_count": 1, "Ive": {"_count": 1}}, "not": {"_count": 1, "when": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "each": {"_count": 1, "word": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "and": {"_count": 2, "it": {"_count": 1}, "dissolved": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "quickly": {"_count": 1, "in": {"_count": 1}}, "more": {"_count": 4, "loudly": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 2}}, "into": {"_count": 2, "it": {"_count": 1}, "an": {"_count": 1}}, "then": {"_count": 1, "Harry": {"_count": 1}}, "fast": {"_count": 1, "fighting": {"_count": 1}}, "as": {"_count": 3, "someone": {"_count": 1}, "lightly": {"_count": 1}, "though": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "was": {"_count": 1, "breaking": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "any": {"_count": 1, "language": {"_count": 1}}, "them": {"_count": 1, "through": {"_count": 1}}, "Hermione": {"_count": 1, "took": {"_count": 1}}, "bracing": {"_count": 1, "words": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 1, "in": {"_count": 1}}, "however": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "uncomfortable": {"_count": 1, "truths": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "truth": {"_count": 1}}, "after": {"_count": 1, "searching": {"_count": 1}}, "English": {"_count": 1, "or": {"_count": 1}}, "with": {"_count": 1, "Voldemorts": {"_count": 1}}, "Ron": {"_count": 1, "shook": {"_count": 1}}, "across": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "true": {"_count": 1, "but": {"_count": 1}}}, "Horrorstruck": {"_count": 2, "Harry": {"_count": 2, "waved": {"_count": 1}, "saw": {"_count": 1}}}, "madly": {"_count": 35, "at": {"_count": 3, "the": {"_count": 2}, "Scabbers": {"_count": 1}}, "in": {"_count": 3, "their": {"_count": 1}, "his": {"_count": 2}}, "heard": {"_count": 1, "Uncle": {"_count": 1}}, "wafting": {"_count": 1, "thick": {"_count": 1}}, "around": {"_count": 2, "his": {"_count": 1}, "at": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "twisting": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Ron": {"_count": 1, "yelled": {"_count": 1}}, "with": {"_count": 1, "what": {"_count": 1}}, "as": {"_count": 1, "Crookshanks": {"_count": 1}}, "and": {"_count": 2, "closely": {"_count": 1}, "trying": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "tried": {"_count": 1}, "soared": {"_count": 1}}, "now": {"_count": 1, "looked": {"_count": 1}}, "like": {"_count": 1, "windmills": {"_count": 1}}, "became": {"_count": 1, "entangled": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "poor": {"_count": 1, "boy": {"_count": 1}}}, "scurried": {"_count": 12, "silently": {"_count": 1, "toward": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "backward": {"_count": 1, "bowing": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "forward": {"_count": 2, "and": {"_count": 1}, "into": {"_count": 1}}, "from": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "along": {"_count": 1, "peering": {"_count": 1}}, "in": {"_count": 1, "after": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "hastily": {"_count": 1, "into": {"_count": 1}}}, "enter": {"_count": 56, "the": {"_count": 17, "trophy": {"_count": 1}, "forest": {"_count": 1}, "room": {"_count": 1}, "Ministry": {"_count": 2}, "Triwizard": {"_count": 3}, "tournament": {"_count": 1}, "Great": {"_count": 2}, "planet": {"_count": 1}, "Pensieve": {"_count": 1}, "village": {"_count": 1}, "vault": {"_count": 1}, "castle": {"_count": 1}, "fray": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 2, "classroom": {"_count": 2}}, "it": {"_count": 2, "said": {"_count": 1}, "flood": {"_count": 1}}, "Gryffindor": {"_count": 1, "Tower": {"_count": 1}}, "Hagrids": {"_count": 1, "hut": {"_count": 1}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 2}, ".": {"_count": 5}}, "your": {"_count": 1, "lessons": {"_count": 1}}, "hell": {"_count": 1, "choose": {"_count": 1}}, "wouldnt": {"_count": 1, "it": {"_count": 1}}, "Harry": {"_count": 1, "repeated": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Dobby": {"_count": 1}}, "that": {"_count": 1, "tournament": {"_count": 1}}, "and": {"_count": 1, "did": {"_count": 1}}, "beyond": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 3, "office": {"_count": 1}, "memory": {"_count": 1}, "vault": {"_count": 1}}, "a": {"_count": 2, "top": {"_count": 1}, "state": {"_count": 1}}, "unseen": {"_count": 1, "behind": {"_count": 1}}, "at": {"_count": 2, "eight": {"_count": 1}, "speed": {"_count": 1}}, "muttered": {"_count": 1, "Dumbledore": {"_count": 1}}, "as": {"_count": 1, "Runcorn": {"_count": 1}}, "his": {"_count": 1, "pocket": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "Hogsmeade": {"_count": 1, "without": {"_count": 1}}, "this": {"_count": 1, "castle": {"_count": 1}}, "Hogwarts": {"_count": 1, "and": {"_count": 1}}}, "mouthed": {"_count": 15, "to": {"_count": 2, "the": {"_count": 1}, "Ernie": {"_count": 1}}, "at": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "wordlessly": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "I": {"_count": 1, "fell": {"_count": 1}}, "soundlessly": {"_count": 1, "like": {"_count": 1}}, "looking": {"_count": 1, "panicstricken": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "Remedial": {"_count": 1, "Potions": {"_count": 1}}, "the": {"_count": 1, "word": {"_count": 1}}, "Good": {"_count": 1, "one": {"_count": 1}}}, "petrified": {"_count": 19, "they": {"_count": 1, "began": {"_count": 1}}, "scream": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "for": {"_count": 1, "its": {"_count": 1}}, "faces": {"_count": 1, "to": {"_count": 1}}, "pleading": {"_count": 1, "jerking": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "whisper": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 1, "when": {"_count": 1}}, "sobs": {"_count": 1, "": {"_count": 1}}, "brown": {"_count": 1, "eyes": {"_count": 1}}, "nudged": {"_count": 1, "Euan": {"_count": 1}}, "face": {"_count": 1, "seemed": {"_count": 1}}, "Muggleborns": {"_count": 1, "brought": {"_count": 1}}, "YouKnowWho": {"_count": 1, "would": {"_count": 1}}}, "gallery": {"_count": 2, "full": {"_count": 1, "of": {"_count": 1}}, "not": {"_count": 1, "looking": {"_count": 1}}}, "suits": {"_count": 14, "of": {"_count": 10, "armor": {"_count": 10}}, "you": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "said": {"_count": 1}}, "moved": {"_count": 1, "forward": {"_count": 1}}, "him": {"_count": 1, "of": {"_count": 1}}}, "tripped": {"_count": 19, "grabbed": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 1, "fell": {"_count": 1}}, "headlong": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "over": {"_count": 9, "his": {"_count": 1}, "the": {"_count": 1}, "But": {"_count": 1}, "your": {"_count": 1}, "one": {"_count": 2}, "a": {"_count": 3}}, "she": {"_count": 1, "repeated": {"_count": 1}}, "forward": {"_count": 1, "and": {"_count": 1}}, "dazedly": {"_count": 1, "toward": {"_count": 1}}}, "suit": {"_count": 51, "of": {"_count": 22, "armor": {"_count": 20}, "emerald": {"_count": 1}, "plum": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "a": {"_count": 1, "scarlet": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 6, "sat": {"_count": 1}, "a": {"_count": 1}, "tie": {"_count": 2}, "gazing": {"_count": 1}, "an": {"_count": 1}}, "opened": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "covered": {"_count": 1}}, "with": {"_count": 1, "thighlength": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "plus": {"_count": 1, "a": {"_count": 1}}, "Hagrid": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "guilty": {"_count": 1}}, "Rita": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "jacket": {"_count": 1, "pointed": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "me": {"_count": 1, "sir": {"_count": 1}}}, "clanging": {"_count": 5, "and": {"_count": 1, "crashing": {"_count": 1}}, "bell": {"_count": 1, "sounded": {"_count": 1}}, "doorbell": {"_count": 1, "rang": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "echoing": {"_count": 1, "voice": {"_count": 1}}}, "crashing": {"_count": 22, "were": {"_count": 1, "enough": {"_count": 1}}, "away": {"_count": 1, "through": {"_count": 1}}, "a": {"_count": 1, "flying": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 3}}, "through": {"_count": 2, "the": {"_count": 2}}, "noise": {"_count": 2, "was": {"_count": 1}, "on": {"_count": 1}}, "the": {"_count": 2, "door": {"_count": 1}, "car": {"_count": 1}}, "glass": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "blow": {"_count": 1, "hit": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "splash": {"_count": 1, "that": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "rock": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 1, "Harrys": {"_count": 1}}}, "RUN": {"_count": 8, "": {"_count": 7, "!": {"_count": 7}}, "FOR": {"_count": 1, "YOUR": {"_count": 1}}}, "sprinted": {"_count": 58, "down": {"_count": 4, "the": {"_count": 4}}, "back": {"_count": 8, "to": {"_count": 2}, "upstairs": {"_count": 1}, "down": {"_count": 2}, "up": {"_count": 2}, "through": {"_count": 1}}, "up": {"_count": 8, "the": {"_count": 6}, "to": {"_count": 2}}, "across": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 1, "length": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "away": {"_count": 3, "up": {"_count": 1}, "from": {"_count": 1}, "vanishing": {"_count": 1}}, "upstairs": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "from": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 2}}, "to": {"_count": 2, "the": {"_count": 2}}, "through": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 4, "down": {"_count": 1}, "again": {"_count": 1}, "past": {"_count": 1}, "in": {"_count": 1}}, "onward": {"_count": 1, "a": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "toward": {"_count": 6, "the": {"_count": 3}, "her": {"_count": 1}, "Slughorn": {"_count": 1}, "it": {"_count": 1}}, "forward": {"_count": 1, "narrowly": {"_count": 1}}, "on": {"_count": 1, "after": {"_count": 1}}, "after": {"_count": 1, "Ron": {"_count": 1}}, "for": {"_count": 2, "cover": {"_count": 1}, "the": {"_count": 1}}, "by": {"_count": 1, "elated": {"_count": 1}}, "half": {"_count": 1, "believing": {"_count": 1}}}, "doorpost": {"_count": 1, "and": {"_count": 1, "galloped": {"_count": 1}}}, "galloped": {"_count": 6, "down": {"_count": 1, "one": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 1, "Voldemort": {"_count": 1}}, "past": {"_count": 1, "on": {"_count": 1}}}, "tapestry": {"_count": 37, "and": {"_count": 4, "found": {"_count": 1}, "started": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 1}}, "to": {"_count": 2, "Harrys": {"_count": 1}, "take": {"_count": 1}}, "about": {"_count": 1, "halfway": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 4}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "below": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "thrown": {"_count": 1}}, "Kreacher": {"_count": 1, "had": {"_count": 1}}, "looked": {"_count": 1, "immensely": {"_count": 1}}, "read": {"_count": 1, "THE": {"_count": 1}}, "rather": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "carefully": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "of": {"_count": 8, "the": {"_count": 2}, "Barnabas": {"_count": 3}, "trolls": {"_count": 1}, "dancing": {"_count": 2}}, "depicting": {"_count": 1, "Barnabas": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "curtain": {"_count": 1, "and": {"_count": 1}}, "hangings": {"_count": 1, "Harry": {"_count": 1}}, "They": {"_count": 1, "seemed": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}}, "spluttering": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "noise": {"_count": 1, "from": {"_count": 1}}, "Mundungus": {"_count": 1, "seized": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 2, "choking": {"_count": 1}, "gasping": {"_count": 1}}}, "stitch": {"_count": 9, "in": {"_count": 9, "her": {"_count": 2}, "his": {"_count": 7}}}, "tricked": {"_count": 7, "you": {"_count": 1, "Hermione": {"_count": 1}}, "Dumbledores": {"_count": 1, "Age": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 3, "going": {"_count": 1}, "speaking": {"_count": 1}, "giving": {"_count": 1}}}, "paces": {"_count": 17, "when": {"_count": 2, "a": {"_count": 1}, "Hermiones": {"_count": 1}}, "before": {"_count": 2, "a": {"_count": 1}, "he": {"_count": 1}}, "past": {"_count": 1, "Filchs": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "now": {"_count": 1, "see": {"_count": 1}}, "dragging": {"_count": 1, "Aunt": {"_count": 1}}, "four": {"_count": 1, "times": {"_count": 1}}, "beaming": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 1, "fell": {"_count": 1}}, "nearer": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "or": {"_count": 1, "wince": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}}, "doorknob": {"_count": 17, "rattled": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "Filch": {"_count": 1}}, "but": {"_count": 3, "suddenly": {"_count": 1}, "he": {"_count": 1}, "apparently": {"_count": 1}}, "apprehensively": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "for": {"_count": 1, "all": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "when": {"_count": 1, "Phineas": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "her": {"_count": 1}}, "there": {"_count": 1, "came": {"_count": 1}}, "stepped": {"_count": 1, "into": {"_count": 1}}}, "cackled": {"_count": 15, "": {"_count": 3, ".": {"_count": 3}}, "with": {"_count": 1, "laughter": {"_count": 1}}, "Peeves": {"_count": 3, "knocking": {"_count": 1}, "lobbing": {"_count": 1}, "allowing": {"_count": 1}}, "gleefully": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "Morfin": {"_count": 1, "": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "Muriel": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 1, "and": {"_count": 1}}}, "Wandering": {"_count": 3, "around": {"_count": 2, "at": {"_count": 1}, "in": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "Naughty": {"_count": 1, "naughty": {"_count": 1, "youll": {"_count": 1}}}, "naughty": {"_count": 4, "youll": {"_count": 1, "get": {"_count": 1}}, "kid": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 2, "where": {"_count": 1}, "you": {"_count": 1}}}, "caughty": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sanity": {"_count": 6, "voice": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "but": {"_count": 1, "neither": {"_count": 1}}, "so": {"_count": 1, "their": {"_count": 1}}}, "wickedly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "surveying": {"_count": 1, "the": {"_count": 1}}}, "swipe": {"_count": 6, "at": {"_count": 3, "Peeves": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "cut": {"_count": 1, "through": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "her": {"_count": 1}}}, "STUDENTS": {"_count": 3, "OUT": {"_count": 2, "OF": {"_count": 2}}, "WILL": {"_count": 1, "REQUIRE": {"_count": 1}}}, "BED": {"_count": 4, "": {"_count": 3, "!": {"_count": 3}}, "DOWN": {"_count": 1, "THE": {"_count": 1}}}, "DOWN": {"_count": 3, "THE": {"_count": 1, "CHARMS": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "HERE": {"_count": 1, "NOW": {"_count": 1}}}, "CHARMS": {"_count": 1, "CORRIDOR": {"_count": 1, "": {"_count": 1}}}, "CORRIDOR": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Ducking": {"_count": 2, "under": {"_count": 1, "Peeves": {"_count": 1}}, "down": {"_count": 1, "they": {"_count": 1}}}, "helplessly": {"_count": 7, "at": {"_count": 3, "the": {"_count": 1}, "Hermione": {"_count": 1}, "Lupin": {"_count": 1}}, "as": {"_count": 1, "Ludo": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "theyre": {"_count": 1, "really": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}}, "shouts": {"_count": 23, "": {"_count": 6, ".": {"_count": 6}}, "of": {"_count": 3, "laughter": {"_count": 1}, "pain": {"_count": 1}, "Expelliarmusl": {"_count": 1}}, "at": {"_count": 1, "Crookshanks": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "below": {"_count": 1}}, "and": {"_count": 5, "laughter": {"_count": 1}, "panicked": {"_count": 1}, "screams": {"_count": 1}, "wails": {"_count": 1}, "the": {"_count": 1}}, "drifting": {"_count": 1, "up": {"_count": 1}}, "echoed": {"_count": 1, "from": {"_count": 1}}, "laughter": {"_count": 1, "and": {"_count": 1}}, "retaliatory": {"_count": 1, "jets": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "deafened": {"_count": 1}}}, "Alohomora": {"_count": 8, "The": {"_count": 1, "lock": {"_count": 1}}, "Charm": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "wont": {"_count": 1, "work": {"_count": 1}}, "Nothing": {"_count": 1, "happened": {"_count": 1}}, "As": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "Quick": {"_count": 20, "tell": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 9, "!": {"_count": 6}, ".": {"_count": 3}}, "go": {"_count": 2, "before": {"_count": 1}, "But": {"_count": 1}}, "behind": {"_count": 1, "here": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 2, "we": {"_count": 1}, "said": {"_count": 1}}, "quick": {"_count": 3, "said": {"_count": 1}, "through": {"_count": 1}, "hes": {"_count": 1}}, "or": {"_count": 1, "well": {"_count": 1}}}, "\u2018please": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "Shant": {"_count": 1, "say": {"_count": 1, "nothing": {"_count": 1}}}, "singsong": {"_count": 4, "voice": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "NOTHING": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Ha": {"_count": 24, "haa": {"_count": 2, "": {"_count": 2}}, "ha": {"_count": 6, "": {"_count": 1}, "said": {"_count": 2}, "ha": {"_count": 3}}, "": {"_count": 14, "!": {"_count": 14}}, "he": {"_count": 1, "said": {"_count": 1}}, "But": {"_count": 1, "the": {"_count": 1}}}, "haa": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "ha": {"_count": 30, "": {"_count": 10, "!": {"_count": 5}, ".": {"_count": 5}}, "said": {"_count": 3, "Harry": {"_count": 1}, "Hermione": {"_count": 2}}, "ha": {"_count": 14, "ha": {"_count": 4}, "": {"_count": 6}, "said": {"_count": 1}, "A": {"_count": 1}, "isnt": {"_count": 1}, "Harry": {"_count": 1}}, "A": {"_count": 1, "bubble": {"_count": 1}}, "isnt": {"_count": 1, "that": {"_count": 1}}, "Harry": {"_count": 1, "look": {"_count": 1}}}, "Haa": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "whooshing": {"_count": 6, "away": {"_count": 1, "and": {"_count": 1}}, "past": {"_count": 1, "Harrys": {"_count": 1}}, "sound": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "noise": {"_count": 1, "from": {"_count": 1}}}, "tugging": {"_count": 27, "on": {"_count": 3, "the": {"_count": 2}, "Harrys": {"_count": 1}}, "hard": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 9, "his": {"_count": 3}, "a": {"_count": 1}, "Harrys": {"_count": 1}, "Crabbes": {"_count": 1}, "the": {"_count": 3}}, "Dudleys": {"_count": 1, "tongue": {"_count": 1}}, "him": {"_count": 1, "backward": {"_count": 1}}, "it": {"_count": 2, "over": {"_count": 1}, "out": {"_count": 1}}, "nervously": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 2, "trunk": {"_count": 1}, "Invisibility": {"_count": 1}}, "a": {"_count": 1, "letter": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "out": {"_count": 1, "tent": {"_count": 1}}, "Wormtails": {"_count": 1, "wand": {"_count": 1}}, "himself": {"_count": 1, "free": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}}, "nightmare": {"_count": 22, "this": {"_count": 1, "was": {"_count": 1}}, "honestly": {"_count": 1, "": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "Dad": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Im": {"_count": 1, "telling": {"_count": 1}}, "IT": {"_count": 1, "WASNT": {"_count": 1}}, "said": {"_count": 4, "Bagman": {"_count": 1}, "Professor": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "involving": {"_count": 1, "a": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 1, "had": {"_count": 1}}, "no": {"_count": 1, "comforting": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}}, "monstrous": {"_count": 18, "dog": {"_count": 1, "a": {"_count": 1}}, "thing": {"_count": 1, "to": {"_count": 1}}, "creatures": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "balloon": {"_count": 1, "her": {"_count": 1}}, "scaly": {"_count": 1, "black": {"_count": 1}}, "cutting": {"_count": 1, "through": {"_count": 1}}, "bird": {"_count": 1, "": {"_count": 1}}, "form": {"_count": 1, "of": {"_count": 1}}, "transformation": {"_count": 1, "taking": {"_count": 1}}, "weighty": {"_count": 1, "parasite": {"_count": 1}}, "truth": {"_count": 1, "of": {"_count": 1}}, "versions": {"_count": 1, "of": {"_count": 1}}, "spider": {"_count": 1, "the": {"_count": 1}}, "Aragog": {"_count": 1, "had": {"_count": 1}}, "halo": {"_count": 1, "": {"_count": 1}}}, "space": {"_count": 68, "between": {"_count": 4, "ceiling": {"_count": 1}, "two": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}, "to": {"_count": 2, "join": {"_count": 1}, "practice": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 5, "time": {"_count": 3}, "about": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 5}, "our": {"_count": 1}, "his": {"_count": 1}, "front": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "up": {"_count": 1, "by": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "beside": {"_count": 1, "her": {"_count": 1}}, "that": {"_count": 1, "Moody": {"_count": 1}}, "What": {"_count": 1, "": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 9}, "!": {"_count": 2}}, "below": {"_count": 1, "him": {"_count": 1}}, "wizards": {"_count": 1, "were": {"_count": 1}}, "large": {"_count": 1, "enough": {"_count": 1}}, "issuing": {"_count": 1, "from": {"_count": 1}}, "aching": {"_count": 1, "with": {"_count": 1}}, "was": {"_count": 4, "a": {"_count": 1}, "devoted": {"_count": 1}, "dabbing": {"_count": 1}, "slightly": {"_count": 1}}, "available": {"_count": 1, "bore": {"_count": 1}}, "where": {"_count": 2, "she": {"_count": 1}, "a": {"_count": 1}}, "underneath": {"_count": 1, "the": {"_count": 1}}, "matter": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "had": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "dueling": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "cleared": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "actually": {"_count": 1, "but": {"_count": 1}}, "again": {"_count": 1, "Hagrid": {"_count": 1}}, "and": {"_count": 1, "time": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "which": {"_count": 1}}, "bright": {"_count": 1, "and": {"_count": 1}}}, "rolling": {"_count": 59, "mad": {"_count": 1, "eyes": {"_count": 1}}, "around": {"_count": 5, "under": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 2}, "the": {"_count": 1}}, "in": {"_count": 8, "wizard": {"_count": 1}, "every": {"_count": 3}, "terror": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "all": {"_count": 1}}, "up": {"_count": 11, "his": {"_count": 4}, "their": {"_count": 1}, "down": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 1}, "Rons": {"_count": 1}}, "by": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 9, "eyes": {"_count": 8}, "wand": {"_count": 1}}, "hills": {"_count": 1, "outside": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 1, "eyes": {"_count": 1}}, "eye": {"_count": 1, "was": {"_count": 1}}, "right": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 3, "bulging": {"_count": 1}, "swerving": {"_count": 1}, "pitching": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "madly": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "yellowing": {"_count": 1}}, "butterbeer": {"_count": 1, "corks": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 2}}, "it": {"_count": 2, "up": {"_count": 1}, "between": {"_count": 1}}, "through": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 1, "side": {"_count": 1}}, "gait": {"_count": 1, "and": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "upward": {"_count": 1, "": {"_count": 1}}}, "drooling": {"_count": 6, "mouths": {"_count": 1, "saliva": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "most": {"_count": 1, "convincingly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}}, "mouths": {"_count": 21, "saliva": {"_count": 1, "hanging": {"_count": 1}}, "dry": {"_count": 1, "praying": {"_count": 1}}, "open": {"_count": 4, "but": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "like": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "will": {"_count": 1, "be": {"_count": 1}}, "in": {"_count": 1, "horror": {"_count": 1}}, "fifty": {"_count": 1, "feet": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "looking": {"_count": 1, "horrified": {"_count": 1}}, "off": {"_count": 1, "said": {"_count": 1}}, "tossed": {"_count": 1, "high": {"_count": 1}}}, "saliva": {"_count": 2, "hanging": {"_count": 1, "in": {"_count": 1}}, "is": {"_count": 1, "enormously": {"_count": 1}}}, "slippery": {"_count": 15, "ropes": {"_count": 1, "from": {"_count": 1}}, "crocodile": {"_count": 1, "heart": {"_count": 1}}, "with": {"_count": 3, "sweat": {"_count": 1}, "seawater": {"_count": 1}, "blood": {"_count": 1}}, "friend": {"_count": 1, "he": {"_count": 1}}, "drive": {"_count": 1, "toward": {"_count": 1}}, "and": {"_count": 1, "muddy": {"_count": 1}}, "surface": {"_count": 1, "their": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "people": {"_count": 1}}, "path": {"_count": 1, "to": {"_count": 1}}, "pavement": {"_count": 1, "": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}, "cloth": {"_count": 1, "into": {"_count": 1}}}, "ropes": {"_count": 35, "from": {"_count": 1, "yellowish": {"_count": 1}}, "binding": {"_count": 6, "him": {"_count": 3}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}}, "around": {"_count": 3, "his": {"_count": 2}, "Grawps": {"_count": 1}}, "had": {"_count": 1, "cut": {"_count": 1}}, "of": {"_count": 2, "pebbles": {"_count": 1}, "weed": {"_count": 1}}, "the": {"_count": 1, "trouble": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "were": {"_count": 1, "untied": {"_count": 1}}, "flew": {"_count": 2, "out": {"_count": 1}, "from": {"_count": 1}}, "that": {"_count": 2, "twisted": {"_count": 1}, "bound": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "for": {"_count": 1, "then": {"_count": 1}}, "thick": {"_count": 1, "as": {"_count": 1}}, "trailed": {"_count": 1, "from": {"_count": 1}}, "but": {"_count": 1, "those": {"_count": 1}}, "fell": {"_count": 1, "away": {"_count": 1}}, "holding": {"_count": 1, "him": {"_count": 1}}, "tying": {"_count": 1, "them": {"_count": 1}}, "off": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "tough": {"_count": 1, "fibers": {"_count": 1}}, "fall": {"_count": 1, "away": {"_count": 1}}}, "mistaking": {"_count": 7, "what": {"_count": 1, "those": {"_count": 1}}, "that": {"_count": 2, "silver": {"_count": 1}, "long": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "Tom": {"_count": 1}}, "it": {"_count": 1, "this": {"_count": 1}}, "the": {"_count": 1, "anger": {"_count": 1}}}, "thunderous": {"_count": 8, "growls": {"_count": 1, "meant": {"_count": 1}}, "tide": {"_count": 1, "of": {"_count": 1}}, "footfalls": {"_count": 1, "reached": {"_count": 1}}, "crashes": {"_count": 1, "as": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "roar": {"_count": 1, "of": {"_count": 1}}, "stamps": {"_count": 1, "of": {"_count": 1}}}, "growls": {"_count": 3, "meant": {"_count": 1, "": {"_count": 1}}, "met": {"_count": 1, "their": {"_count": 1}}, "ceased": {"_count": 1, "it": {"_count": 1}}}, "groped": {"_count": 18, "for": {"_count": 7, "the": {"_count": 4}, "his": {"_count": 1}, "a": {"_count": 1}, "Hermiones": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "within": {"_count": 1, "it": {"_count": 1}}, "inside": {"_count": 2, "it": {"_count": 2}}, "hopelessly": {"_count": 1, "for": {"_count": 1}}, "around": {"_count": 2, "for": {"_count": 1}, "in": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}}, "backward": {"_count": 172, "Harry": {"_count": 2, "slammed": {"_count": 1}, "raised": {"_count": 1}}, "and": {"_count": 37, "knocked": {"_count": 1}, "forward": {"_count": 27}, "almost": {"_count": 1}, "shot": {"_count": 1}, "fell": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 1}, "collapsed": {"_count": 1}, "he": {"_count": 1}, "burst": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 15}, "!": {"_count": 1}}, "but": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "once": {"_count": 1}}, "into": {"_count": 8, "a": {"_count": 3}, "Harrys": {"_count": 1}, "the": {"_count": 3}, "their": {"_count": 1}}, "knocking": {"_count": 1, "more": {"_count": 1}}, "Rons": {"_count": 2, "trunk": {"_count": 1}, "chair": {"_count": 1}}, "the": {"_count": 1, "tree": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 10, "the": {"_count": 8}, "a": {"_count": 1}, "it": {"_count": 1}}, "glance": {"_count": 6, "at": {"_count": 2}, "began": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}}, "with": {"_count": 4, "a": {"_count": 1}, "his": {"_count": 2}, "filthy": {"_count": 1}}, "off": {"_count": 8, "the": {"_count": 1}, "his": {"_count": 5}, "their": {"_count": 1}, "what": {"_count": 1}}, "crushing": {"_count": 1, "Rons": {"_count": 1}}, "falling": {"_count": 1, "over": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 6, "he": {"_count": 1}, "hard": {"_count": 1}, "far": {"_count": 1}, "the": {"_count": 2}, "if": {"_count": 1}}, "from": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "in": {"_count": 5, "alarm": {"_count": 1}, "a": {"_count": 1}, "shock": {"_count": 2}, "horror": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 7}}, "again": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "away": {"_count": 4, "from": {"_count": 4}}, "over": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "freeing": {"_count": 1, "himself": {"_count": 1}}, "his": {"_count": 1, "glasses": {"_count": 1}}, "looking": {"_count": 1, "wildly": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "weightless": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 2}}, "against": {"_count": 1, "the": {"_count": 1}}, "bowing": {"_count": 1, "and": {"_count": 1}}, "hit": {"_count": 1, "some": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "yelped": {"_count": 1, "and": {"_count": 1}}, "Filch": {"_count": 1, "was": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 3}}, "toward": {"_count": 5, "the": {"_count": 5}}, "landing": {"_count": 1, "with": {"_count": 1}}, "Nevilles": {"_count": 1, "legs": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 1, "him": {"_count": 1}}, "on": {"_count": 3, "itself": {"_count": 1}, "top": {"_count": 2}}, "down": {"_count": 1, "the": {"_count": 1}}, "stunned": {"_count": 1, "by": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "beaming": {"_count": 1, "drinking": {"_count": 1}}, "its": {"_count": 1, "legs": {"_count": 1}}, "flailing": {"_count": 1, "and": {"_count": 1}}, "arms": {"_count": 1, "splayed": {"_count": 1}}}, "cared": {"_count": 40, "all": {"_count": 1, "they": {"_count": 1}}, "about": {"_count": 15, "was": {"_count": 4}, "him": {"_count": 2}, "": {"_count": 1}, "a": {"_count": 1}, "beating": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 2}, "any": {"_count": 1}, "very": {"_count": 1}}, "what": {"_count": 5, "the": {"_count": 2}, "had": {"_count": 1}, "thestrals": {"_count": 1}, "happened": {"_count": 1}}, "for": {"_count": 2, "me": {"_count": 1}, "that": {"_count": 1}}, "that": {"_count": 2, "Professor": {"_count": 1}, "Sirius": {"_count": 1}}, "abou": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 3, "about": {"_count": 1}, "for": {"_count": 2}}, "if": {"_count": 1, "Karkaroff": {"_count": 1}}, "to": {"_count": 2, "test": {"_count": 1}, "show": {"_count": 1}}, "much": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "most": {"_count": 1, "about": {"_count": 1}}, "not": {"_count": 1, "whether": {"_count": 1}}, "whether": {"_count": 1, "Voldemort": {"_count": 1}}}, "monster": {"_count": 43, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "which": {"_count": 2, "the": {"_count": 1}, "each": {"_count": 1}}, "than": {"_count": 1, "let": {"_count": 1}}, "can": {"_count": 1, "duel": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "attacked": {"_count": 1, "several": {"_count": 1}}, "lived": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 4, "hidden": {"_count": 1}, "a": {"_count": 1}, "roaring": {"_count": 1}, "blown": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "killed": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "dwells": {"_count": 1}}, "of": {"_count": 1, "Slytherin": {"_count": 1}}, "would": {"_count": 2, "dare": {"_count": 1}, "be": {"_count": 1}}, "loose": {"_count": 1, "last": {"_count": 1}}, "whining": {"_count": 1, "loudly": {"_count": 1}}, "Voldemort": {"_count": 1, "even": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "Lockhart": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "Hagrid": {"_count": 1}}, "all": {"_count": 1, "by": {"_count": 1}}, "once": {"_count": 1, "a": {"_count": 1}}, "barring": {"_count": 1, "his": {"_count": 1}}, "an": {"_count": 1, "yeh": {"_count": 1}}, "fixation": {"_count": 1, "hes": {"_count": 1}}, "mates": {"_count": 1, "": {"_count": 1}}, "Aragog": {"_count": 1, "": {"_count": 1}}, "fancies": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "living": {"_count": 1, "undetected": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "into": {"_count": 1, "its": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "seventh": {"_count": 45, "floor": {"_count": 14, "": {"_count": 4}, "and": {"_count": 3}, "shes": {"_count": 1}, "opposite": {"_count": 1}, "sometimes": {"_count": 1}, "accompanied": {"_count": 1}, "they": {"_count": 1}, "with": {"_count": 1}, "as": {"_count": 1}}, "year": {"_count": 6, "in": {"_count": 1}, "will": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 2}, "of": {"_count": 1}}, "smaller": {"_count": 1, "boy": {"_count": 1}}, "and": {"_count": 2, "final": {"_count": 2}}, "long": {"_count": 1, "staircase": {"_count": 1}}, "where": {"_count": 1, "many": {"_count": 1}}, "birthday": {"_count": 1, "now": {"_count": 1}}, "key": {"_count": 1, "in": {"_count": 1}}, "people": {"_count": 1, "at": {"_count": 1}}, "years": {"_count": 8, "and": {"_count": 1}, "who": {"_count": 2}, "said": {"_count": 1}, "": {"_count": 1}, "milled": {"_count": 1}, "including": {"_count": 1}, "clustered": {"_count": 1}}, "month": {"_count": 2, "dies": {"_count": 2}}, "counterclockwise": {"_count": 1, "stir": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "Voldemorts": {"_count": 1}}, "glass": {"_count": 1, "of": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "Horcrux": {"_count": 1, "Harry": {"_count": 1}}}, "flushed": {"_count": 24, "sweaty": {"_count": 1, "faces": {"_count": 1}}, "and": {"_count": 4, "excited": {"_count": 1}, "her": {"_count": 2}, "looked": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "darker": {"_count": 1, "than": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 4, "anger": {"_count": 1}, "pleasure": {"_count": 2}, "happiness": {"_count": 1}}, "pink": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "watching": {"_count": 1}}, "blotchily": {"_count": 1, "scarlet": {"_count": 1}}, "her": {"_count": 1, "gaze": {"_count": 1}}, "a": {"_count": 1, "dull": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}}, "trapdoor": {"_count": 24, "": {"_count": 7, ".": {"_count": 7}}, "tonight": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "which": {"_count": 1, "swung": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "past": {"_count": 1}, "replaced": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "suddenly": {"_count": 1, "opened": {"_count": 1}}, "open": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "pulled": {"_count": 1}}, "kicked": {"_count": 1, "it": {"_count": 1}}, "overhead": {"_count": 1, "shes": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "ignoring": {"_count": 1, "Professor": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}}, "guarding": {"_count": 28, "something": {"_count": 2, "": {"_count": 2}}, "": {"_count": 4, "!": {"_count": 1}, "?": {"_count": 2}, ".": {"_count": 1}}, "Flamels": {"_count": 1, "Sorcerers": {"_count": 1}}, "the": {"_count": 13, "stone": {"_count": 1}, "Stone": {"_count": 2}, "Sorcerers": {"_count": 2}, "scene": {"_count": 1}, "school": {"_count": 2}, "entrance": {"_count": 3}, "three": {"_count": 1}, "headmasters": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "vaults": {"_count": 1, "in": {"_count": 1}}, "every": {"_count": 1, "single": {"_count": 1}}, "it": {"_count": 1, "werent": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 2, "but": {"_count": 1}, "during": {"_count": 1}}}, "dragged": {"_count": 75, "her": {"_count": 7, "along": {"_count": 2}, "out": {"_count": 1}, "forward": {"_count": 1}, "by": {"_count": 1}, "to": {"_count": 1}, "hand": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 1}, "on": {"_count": 1}}, "by": {"_count": 3, "": {"_count": 2}, "the": {"_count": 1}}, "him": {"_count": 16, "off": {"_count": 4}, "all": {"_count": 1}, "across": {"_count": 1}, "toward": {"_count": 1}, "to": {"_count": 1}, "backward": {"_count": 1}, "upright": {"_count": 1}, "forward": {"_count": 1}, "none": {"_count": 1}, "once": {"_count": 1}, "a": {"_count": 1}, "around": {"_count": 1}, "along": {"_count": 1}}, "Ron": {"_count": 2, "to": {"_count": 1}, "through": {"_count": 1}}, "Harry": {"_count": 4, "back": {"_count": 1}, "over": {"_count": 1}, "away": {"_count": 1}, "roughly": {"_count": 1}}, "them": {"_count": 2, "off": {"_count": 1}, "into": {"_count": 1}}, "into": {"_count": 3, "view": {"_count": 1}, "the": {"_count": 2}}, "downward": {"_count": 1, "the": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 3, "up": {"_count": 1}, "halfway": {"_count": 1}, "over": {"_count": 1}}, "away": {"_count": 1, "by": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 2, "trunks": {"_count": 1}, "feet": {"_count": 1}}, "on": {"_count": 1, "forever": {"_count": 1}}, "his": {"_count": 3, "Potions": {"_count": 1}, "trunk": {"_count": 1}, "rucksack": {"_count": 1}}, "up": {"_count": 1, "by": {"_count": 1}}, "himself": {"_count": 2, "up": {"_count": 1}, "onto": {"_count": 1}}, "backward": {"_count": 1, "through": {"_count": 1}}, "the": {"_count": 2, "cloak": {"_count": 1}, "waitress": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Kreacher": {"_count": 1, "under": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "blankets": {"_count": 1, "off": {"_count": 1}}, "sweater": {"_count": 1, "after": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 2, "her": {"_count": 1}, "to": {"_count": 1}}, "Draco": {"_count": 1, "out": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "Luna": {"_count": 1, "off": {"_count": 1}}, "Goyle": {"_count": 1, "onto": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "10": {"_count": 7, "HALLOWEEN": {"_count": 1, "Malfoy": {"_count": 1}}, "THE": {"_count": 3, "ROGUE": {"_count": 1}, "MARAUDERS": {"_count": 1}, "HOUSE": {"_count": 1}}, "MAYHEM": {"_count": 1, "AT": {"_count": 1}}, "LUNA": {"_count": 1, "LOVEGOOD": {"_count": 1}}, "KREACHERS": {"_count": 1, "TALE": {"_count": 1}}}, "HALLOWEEN": {"_count": 1, "Malfoy": {"_count": 1, "couldnt": {"_count": 1}}}, "cheerful": {"_count": 44, "": {"_count": 8, ".": {"_count": 8}}, "chatter": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 3, "weve": {"_count": 1}, "helped": {"_count": 1}, "joined": {"_count": 1}}, "self": {"_count": 1, "": {"_count": 1}}, "These": {"_count": 1, "were": {"_count": 1}}, "Hufflepuff": {"_count": 1, "ghost": {"_count": 1}}, "for": {"_count": 1, "Myrtle": {"_count": 1}}, "view": {"_count": 1, "": {"_count": 1}}, "visit": {"_count": 1, "said": {"_count": 1}}, "mood": {"_count": 1, "didnt": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "and": {"_count": 4, "as": {"_count": 1}, "in": {"_count": 1}, "relaxed": {"_count": 1}, "Harry": {"_count": 1}}, "thought": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "slightly": {"_count": 1}, "Cornelius": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "went": {"_count": 1, "off": {"_count": 1}}, "paintings": {"_count": 1, "that": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "MadEye": {"_count": 1, "hell": {"_count": 1}}, "on": {"_count": 1, "Monday": {"_count": 1}}, "he": {"_count": 1, "collected": {"_count": 1}}, "one": {"_count": 1, "with": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "enough": {"_count": 1, "with": {"_count": 1}}, "Hagrid": {"_count": 1, "waiting": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "even": {"_count": 1, "hopeful": {"_count": 1}}}, "Indeed": {"_count": 35, "by": {"_count": 1, "the": {"_count": 1}}, "yes": {"_count": 2, "sir": {"_count": 1}, "said": {"_count": 1}}, "Wendelin": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 5, "had": {"_count": 3}, "looked": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 6}, "!": {"_count": 1}}, "I": {"_count": 2, "dont": {"_count": 1}, "did": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 2, "looked": {"_count": 1}, "are": {"_count": 1}}, "whenever": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 2, "applause": {"_count": 1}, "most": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Harry": {"_count": 2, "sometimes": {"_count": 1}, "grinned": {"_count": 1}}, "a": {"_count": 1, "week": {"_count": 1}}, "your": {"_count": 1, "failure": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "determined": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "as": {"_count": 1, "Phineas": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}}, "threeheaded": {"_count": 10, "dog": {"_count": 8, "had": {"_count": 1}, "at": {"_count": 1}, "on": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "didnt": {"_count": 1}, "hed": {"_count": 1}, "off": {"_count": 1}}, "dogs": {"_count": 2, "dyeh": {"_count": 1}, "from": {"_count": 1}}}, "meantime": {"_count": 17, "Harry": {"_count": 3, "filled": {"_count": 1}, "noticed": {"_count": 1}, "Potters": {"_count": 1}}, "the": {"_count": 1, "hippogriff": {"_count": 1}}, "consult": {"_count": 1, "a": {"_count": 1}}, "life": {"_count": 1, "became": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "Im": {"_count": 2, "more": {"_count": 1}, "afraid": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "Professor": {"_count": 1}}, "I": {"_count": 1, "just": {"_count": 1}}, "bring": {"_count": 1, "us": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "they": {"_count": 1, "returned": {"_count": 1}}}, "protection": {"_count": 75, "": {"_count": 17, ".": {"_count": 13}, "!": {"_count": 3}, "?": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "outofbounds": {"_count": 1, "at": {"_count": 1}}, "surrounding": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "but": {"_count": 1, "all": {"_count": 1}}, "I": {"_count": 1, "admit": {"_count": 1}}, "his": {"_count": 1, "mother": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 3, "into": {"_count": 1}, "Muggleborn": {"_count": 1}, "he": {"_count": 1}}, "my": {"_count": 1, "my": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "youd": {"_count": 1, "be": {"_count": 1}}, "its": {"_count": 1, "for": {"_count": 1}}, "he": {"_count": 2, "never": {"_count": 1}, "could": {"_count": 1}}, "that": {"_count": 4, "flows": {"_count": 1}, "was": {"_count": 1}, "can": {"_count": 1}, "the": {"_count": 1}}, "kept": {"_count": 1, "me": {"_count": 1}}, "of": {"_count": 4, "Hogwarts": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "continues": {"_count": 1, "until": {"_count": 1}}, "said": {"_count": 1, "Tonks": {"_count": 1}}, "the": {"_count": 2, "ambitious": {"_count": 1}, "best": {"_count": 1}}, "for": {"_count": 1, "once": {"_count": 1}}, "in": {"_count": 2, "place": {"_count": 1}, "the": {"_count": 1}}, "is": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 2, "": {"_count": 1}, "minimal": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "to": {"_count": 1, "prevent": {"_count": 1}}, "your": {"_count": 1, "mother": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "has": {"_count": 1, "become": {"_count": 1}}, "their": {"_count": 1, "first": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "Muggle": {"_count": 1}, "the": {"_count": 1}}, "back": {"_count": 1, "around": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 5, "each": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 1}}, "then": {"_count": 1, "I": {"_count": 1}}, "inside": {"_count": 1, "both": {"_count": 1}}}, "valuable": {"_count": 24, "or": {"_count": 1, "really": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 1}, "?": {"_count": 1}}, "Whomping": {"_count": 1, "Willow": {"_count": 1}}, "tree": {"_count": 1, "surely": {"_count": 1}}, "Dark": {"_count": 1, "Arts": {"_count": 1}}, "so": {"_count": 1, "dont": {"_count": 1}}, "to": {"_count": 4, "Voldemort": {"_count": 1}, "Dumbledore": {"_count": 1}, "offer": {"_count": 1}, "me": {"_count": 1}}, "possession": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "in": {"_count": 1, "all": {"_count": 1}}, "object": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 1, "began": {"_count": 1}}, "information": {"_count": 1, "while": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}}, "object": {"_count": 51, "was": {"_count": 2, "that": {"_count": 1}, "Rons": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "like": {"_count": 2, "that": {"_count": 2}}, "that": {"_count": 6, "looked": {"_count": 2}, "Harry": {"_count": 1}, "Gregorovitch": {"_count": 1}, "made": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "arouses": {"_count": 1}, "that": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "whens": {"_count": 1, "he": {"_count": 1}}, "ter": {"_count": 1, "all": {"_count": 1}}, "but": {"_count": 1, "twisted": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 3, "todays": {"_count": 1}, "incredible": {"_count": 1}, "their": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "steeped": {"_count": 1}}, "in": {"_count": 2, "which": {"_count": 1}, "one": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "getting": {"_count": 1}, "make": {"_count": 1}}, "said": {"_count": 1, "Scrimgeour": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "with": {"_count": 1, "little": {"_count": 1}}, "twitched": {"_count": 1, "close": {"_count": 1}}, "after": {"_count": 1, "object": {"_count": 1}}, "began": {"_count": 1, "presenting": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "standing": {"_count": 1, "upon": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "anyone": {"_count": 1, "seemed": {"_count": 1}}, "by": {"_count": 1, "its": {"_count": 1}}}, "guessing": {"_count": 13, "what": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "answer": {"_count": 1}}, "they": {"_count": 1, "submitted": {"_count": 1}}, "you": {"_count": 1, "werent": {"_count": 1}}, "other": {"_count": 1, "such": {"_count": 1}}, "where": {"_count": 1, "I": {"_count": 1}}, "or": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "father": {"_count": 1}}, "here": {"_count": 1, "although": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "protection": {"_count": 1}}}, "further": {"_count": 78, "clues": {"_count": 1, "": {"_count": 1}}, "spellwork": {"_count": 1, "on": {"_count": 1}}, "can": {"_count": 1, "it": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "ado": {"_count": 6, "they": {"_count": 1}, "allow": {"_count": 1}, "there": {"_count": 1}, "she": {"_count": 1}, "pulled": {"_count": 1}, "": {"_count": 1}}, "information": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 1, "training": {"_count": 1}}, "notice": {"_count": 1, "dementors": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "": {"_count": 1}}, "poke": {"_count": 1, "of": {"_count": 1}}, "inquiries": {"_count": 2, "": {"_count": 2}}, "discussions": {"_count": 1, "about": {"_count": 1}}, "than": {"_count": 4, "transforming": {"_count": 1}, "you": {"_count": 1}, "anybody": {"_count": 2}}, "few": {"_count": 1, "notches": {"_count": 1}}, "youre": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "than": {"_count": 1}}, "ten": {"_count": 1, "points": {"_count": 1}}, "accused": {"_count": 1, "bellowed": {"_count": 1}}, "from": {"_count": 2, "Dumbledore": {"_count": 1}, "rescuing": {"_count": 1}}, "and": {"_count": 3, "promote": {"_count": 1}, "she": {"_count": 1}, "asked": {"_count": 1}}, "thought": {"_count": 1, "": {"_count": 1}}, "sounds": {"_count": 1, "but": {"_count": 1}}, "Listen": {"_count": 1, "closely": {"_count": 1}}, "disgusting": {"_count": 1, "attempt": {"_count": 1}}, "behind": {"_count": 1, "with": {"_count": 1}}, "amendment": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "lowered": {"_count": 1, "by": {"_count": 1}}, "they": {"_count": 1, "abstained": {"_count": 1}}, "he": {"_count": 1, "heard": {"_count": 1}}, "three": {"_count": 1, "years": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "through": {"_count": 1, "here": {"_count": 1}}, "falling": {"_count": 1, "eggs": {"_count": 1}}, "stocks": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "Voldemort": {"_count": 1}}, "toward": {"_count": 1, "catching": {"_count": 1}}, "investigations": {"_count": 1, "and": {"_count": 1}}, "mention": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "Morfins": {"_count": 1}}, "disappearances": {"_count": 1, "had": {"_count": 1}}, "perhaps": {"_count": 1, "than": {"_count": 1}}, "for": {"_count": 2, "he": {"_count": 2}}, "protest": {"_count": 1, "Dumbledore": {"_count": 1}}, "part": {"_count": 1, "in": {"_count": 1}}, "explanation": {"_count": 1, "unnecessary": {"_count": 1}}, "Stunning": {"_count": 1, "Spells": {"_count": 1}}, "Horcrux": {"_count": 1, "locations": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "harm": {"_count": 2, "Bellatrix": {"_count": 1}, "and": {"_count": 1}}, "payment": {"_count": 1, "little": {"_count": 1}}}, "clues": {"_count": 9, "": {"_count": 3, ".": {"_count": 3}}, "four": {"_count": 1, "First": {"_count": 1}}, "alone": {"_count": 1, "arent": {"_count": 1}}, "add": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "The": {"_count": 1, "Deluminator": {"_count": 1}}}, "slightest": {"_count": 30, "interest": {"_count": 1, "in": {"_count": 1}}, "idea": {"_count": 1, "what": {"_count": 1}}, "since": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "difference": {"_count": 1, "": {"_count": 1}}, "notice": {"_count": 1, "of": {"_count": 1}}, "tremor": {"_count": 1, "": {"_count": 1}}, "sign": {"_count": 5, "that": {"_count": 1}, "of": {"_count": 4}}, "bit": {"_count": 2, "of": {"_count": 2}}, "indication": {"_count": 1, "that": {"_count": 1}}, "improvement": {"_count": 1, "to": {"_count": 1}}, "difficulty": {"_count": 1, "in": {"_count": 1}}, "attention": {"_count": 2, "to": {"_count": 1}, "They": {"_count": 1}}, "sound": {"_count": 1, "of": {"_count": 1}}, "trace": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "their": {"_count": 1}}, "This": {"_count": 1, "evening": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "chance": {"_count": 1, "I": {"_count": 1}}, "breath": {"_count": 1, "of": {"_count": 1}}, "touch": {"_count": 1, "": {"_count": 1}}, "surprise": {"_count": 1, "at": {"_count": 1}}}, "refusing": {"_count": 23, "to": {"_count": 18, "speak": {"_count": 1}, "let": {"_count": 3}, "be": {"_count": 2}, "give": {"_count": 1}, "come": {"_count": 1}, "break": {"_count": 1}, "believe": {"_count": 2}, "look": {"_count": 3}, "tell": {"_count": 1}, "do": {"_count": 1}, "meet": {"_count": 1}, "acknowledge": {"_count": 1}}, "him": {"_count": 2, "entrance": {"_count": 1}, "": {"_count": 1}}, "Bagmans": {"_count": 1, "help": {"_count": 1}}, "pointblank": {"_count": 1, "to": {"_count": 1}}, "meals": {"_count": 1, "and": {"_count": 1}}}, "knowitall": {"_count": 4, "that": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 2, "least": {"_count": 2}}}, "bonus": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "Gryffindor": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}}, "attention": {"_count": 124, "was": {"_count": 7, "caught": {"_count": 2}, "fixed": {"_count": 1}, "focused": {"_count": 1}, "even": {"_count": 1}, "drawn": {"_count": 1}, "diverted": {"_count": 1}}, "to": {"_count": 37, "where": {"_count": 1}, "herself": {"_count": 1}, "the": {"_count": 8}, "Harry": {"_count": 1}, "Professor": {"_count": 1}, "each": {"_count": 1}, "him": {"_count": 2}, "anything": {"_count": 1}, "wander": {"_count": 1}, "myself": {"_count": 1}, "other": {"_count": 1}, "this": {"_count": 3}, "himself": {"_count": 1}, "them": {"_count": 1}, "Hagrid": {"_count": 1}, "it": {"_count": 1}, "what": {"_count": 5}, "their": {"_count": 1}, "certain": {"_count": 2}, "meself": {"_count": 1}, "such": {"_count": 1}, "themselves": {"_count": 1}}, "and": {"_count": 5, "pointed": {"_count": 1}, "gave": {"_count": 1}, "Snape": {"_count": 1}, "was": {"_count": 1}, "sympathy": {"_count": 1}}, "in": {"_count": 2, "Herbology": {"_count": 1}, "earnest": {"_count": 1}}, "by": {"_count": 2, "all": {"_count": 1}, "nipping": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 1, "parties": {"_count": 1}}, "its": {"_count": 1, "time": {"_count": 1}}, "said": {"_count": 3, "Myrtle": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}}, "had": {"_count": 4, "returned": {"_count": 1}, "been": {"_count": 2}, "just": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 27}, "?": {"_count": 1}, "!": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "watch": {"_count": 1, "his": {"_count": 1}}, "until": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "but": {"_count": 3, "she": {"_count": 1}, "was": {"_count": 1}, "now": {"_count": 1}}, "mouthing": {"_count": 1, "Its": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "back": {"_count": 3, "onto": {"_count": 1}, "to": {"_count": 2}}, "seems": {"_count": 1, "to": {"_count": 1}}, "if": {"_count": 1, "noticed": {"_count": 1}}, "except": {"_count": 2, "the": {"_count": 1}, "Ginny": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "seeking": {"_count": 1, "stories": {"_count": 1}}, "on": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 1}, "Umbridge": {"_count": 1}}, "ter": {"_count": 1, "ourselves": {"_count": 1}}, "movement": {"_count": 1, "on": {"_count": 1}}, "They": {"_count": 1, "were": {"_count": 1}}, "left": {"_count": 1, "for": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "properly": {"_count": 1, "for": {"_count": 1}}, "caught": {"_count": 1, "Harry": {"_count": 1}}, "focused": {"_count": 1, "upon": {"_count": 1}}}, "DO": {"_count": 21, "NOT": {"_count": 10, "OPEN": {"_count": 1}, "ATTACK": {"_count": 2}, "ENTER": {"_count": 2}, "LEAVE": {"_count": 1}, "DO": {"_count": 1}, "SURRENDER": {"_count": 1}, "LEA": {"_count": 1}, "PUNISH": {"_count": 1}}, "WITH": {"_count": 2, "TAKING": {"_count": 1}, "POTTER": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}, "YOU": {"_count": 3, "UNDERSTAND": {"_count": 1}, "MEAN": {"_count": 1}, "THINK": {"_count": 1}}, "KEEP": {"_count": 1, "YOUR": {"_count": 1}}, "ANYMORE": {"_count": 1, "MAGIC": {"_count": 1}}, "DEM": {"_count": 2, "": {"_count": 1}, "HARRY": {"_count": 1}}}, "OPEN": {"_count": 1, "THE": {"_count": 1, "PARCEL": {"_count": 1}}}, "PARCEL": {"_count": 1, "AT": {"_count": 1, "THE": {"_count": 1}}}, "TABLE": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "contains": {"_count": 6, "your": {"_count": 1, "new": {"_count": 1}}, "Neville": {"_count": 1, "Longbottom": {"_count": 1}}, "a": {"_count": 2, "feather": {"_count": 1}, "force": {"_count": 1}}, "less": {"_count": 1, "fact": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "session": {"_count": 9, "": {"_count": 4, ".": {"_count": 4}}, "Wood": {"_count": 1, "gave": {"_count": 1}}, "before": {"_count": 1, "Saturdays": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "at": {"_count": 1, "two": {"_count": 1}}, "like": {"_count": 1, "you": {"_count": 1}}}, "M": {"_count": 15, "": {"_count": 10, ".": {"_count": 10}}, "Master": {"_count": 1, "is": {"_count": 1}}, "archbanks": {"_count": 1, "and": {"_count": 1}}, "No": {"_count": 1, "it": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}}, "glee": {"_count": 14, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "at": {"_count": 1, "Gryffindors": {"_count": 1}}, "and": {"_count": 1, "tried": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "Rons": {"_count": 1}}}, "enviously": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 1, "Ron": {"_count": 1}}}, "barred": {"_count": 4, "by": {"_count": 1, "Crabbe": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "all": {"_count": 1}}}, "jealousy": {"_count": 6, "and": {"_count": 1, "spite": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "before": {"_count": 1, "Ron": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}}, "spite": {"_count": 28, "on": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 24, "himself": {"_count": 8}, "his": {"_count": 2}, "the": {"_count": 6}, "themselves": {"_count": 1}, "a": {"_count": 1}, "overwhelming": {"_count": 1}, "all": {"_count": 2}, "everything": {"_count": 1}, "my": {"_count": 1}, "herself": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "spite": {"_count": 1, "spawns": {"_count": 1}}, "spawns": {"_count": 1, "lies": {"_count": 1}}}, "resist": {"_count": 28, "it": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 5, "large": {"_count": 1}, "temptation": {"_count": 1}, "soporific": {"_count": 1}, "chance": {"_count": 1}, "vision": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "showing": {"_count": 2, "off": {"_count": 2}}, "reminding": {"_count": 1, "us": {"_count": 1}}, "its": {"_count": 1, "effects": {"_count": 1}}, "giving": {"_count": 1, "Sirius": {"_count": 1}}, "Umbridge": {"_count": 1, "and": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "temptation": {"_count": 1, "": {"_count": 1}}, "dropping": {"_count": 1, "in": {"_count": 1}}, "an": {"_count": 1, "object": {"_count": 1}}, "them": {"_count": 1, "push": {"_count": 1}}, "physical": {"_count": 1, "pain": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "me": {"_count": 1, "you": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "any": {"_count": 1, "longer": {"_count": 1}}, "man": {"_count": 1, "woman": {"_count": 1}}}, "Comet": {"_count": 6, "Two": {"_count": 5, "Sixty": {"_count": 4}, "Ninetys": {"_count": 1}}, "is": {"_count": 1, "just": {"_count": 1}}}, "Sixty": {"_count": 4, "": {"_count": 1, "?": {"_count": 1}}, "which": {"_count": 1, "is": {"_count": 1}}, "said": {"_count": 1, "Tonks": {"_count": 1}}, "and": {"_count": 1, "several": {"_count": 1}}}, "Comets": {"_count": 1, "look": {"_count": 1, "flashy": {"_count": 1}}}, "flashy": {"_count": 3, "but": {"_count": 1, "theyre": {"_count": 1}}, "intruders": {"_count": 1, "she": {"_count": 1}}, "stuff": {"_count": 1, "thats": {"_count": 1}}}, "league": {"_count": 11, "as": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "with": {"_count": 5, "You": {"_count": 1}, "Black": {"_count": 1}, "Dumbledore": {"_count": 1}, "him": {"_count": 1}, "HeWhoMust": {"_count": 1}}, "talentwise": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}}, "twig": {"_count": 14, "by": {"_count": 1, "twig": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "echoed": {"_count": 1, "loudly": {"_count": 1}}, "and": {"_count": 3, "leaves": {"_count": 1}, "leaf": {"_count": 1}, "twirled": {"_count": 1}}, "flew": {"_count": 1, "up": {"_count": 1}}, "leaned": {"_count": 1, "in": {"_count": 1}}, "strewn": {"_count": 1, "ground": {"_count": 1}}}, "model": {"_count": 19, "is": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "student": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "of": {"_count": 9, "the": {"_count": 5}, "a": {"_count": 3}, "him": {"_count": 1}}, "was": {"_count": 1, "slightly": {"_count": 1}}, "figure": {"_count": 1, "wearing": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "phoenixes": {"_count": 1, "that": {"_count": 1}}, "pupils": {"_count": 1, "had": {"_count": 1}}}, "smothering": {"_count": 1, "their": {"_count": 1, "laughter": {"_count": 1}}}, "obvious": {"_count": 56, "rage": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "disgusting": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 2}}, "isnt": {"_count": 4, "it": {"_count": 4}}, "thing": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 6}, "?": {"_count": 7}}, "what": {"_count": 2, "you": {"_count": 1}, "this": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "Harry": {"_count": 1, "he": {"_count": 1}}, "why": {"_count": 2, "theyre": {"_count": 1}, "else": {"_count": 1}}, "effort": {"_count": 2, "he": {"_count": 1}, "to": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 2}}, "youve": {"_count": 1, "made": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "annoyance": {"_count": 1, "that": {"_count": 1}}, "exception": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "any": {"_count": 1}}, "tick": {"_count": 1, "on": {"_count": 1}}, "Sirius": {"_count": 1, "isnt": {"_count": 1}}, "sincerity": {"_count": 1, "that": {"_count": 1}}, "flaw": {"_count": 1, "that": {"_count": 1}}, "reasons": {"_count": 1, "the": {"_count": 1}}, "sign": {"_count": 1, "of": {"_count": 1}}, "Well": {"_count": 1, "next": {"_count": 1}}, "he": {"_count": 1, "realized": {"_count": 1}}, "instincts": {"_count": 1, "for": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 1, "Snape": {"_count": 1}}, "once": {"_count": 1, "he": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "which": {"_count": 1, "gift": {"_count": 1}}, "so": {"_count": 1, "clear": {"_count": 1}}}, "confusion": {"_count": 19, "": {"_count": 8, ".": {"_count": 8}}, "of": {"_count": 2, "course": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "that": {"_count": 1, "Justin": {"_count": 1}}, "increased": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "noise": {"_count": 1}, "fear": {"_count": 1}, "now": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "she": {"_count": 1, "hurried": {"_count": 1}}, "uncertainty": {"_count": 1, "and": {"_count": 1}}}, "stolen": {"_count": 43, "Nevilles": {"_count": 1, "Remembrall": {"_count": 1}}, "his": {"_count": 2, "prefect": {"_count": 1}, "Uncle": {"_count": 1}}, "outta": {"_count": 1, "Gringotts": {"_count": 1}}, "nobody": {"_count": 1, "else": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "their": {"_count": 1, "champions": {"_count": 1}}, "a": {"_count": 1, "Tri": {"_count": 1}}, "either": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 4, "gillyweed": {"_count": 1}, "real": {"_count": 2}, "sword": {"_count": 1}}, "wand": {"_count": 1, "to": {"_count": 1}}, "hippogriff": {"_count": 1, "": {"_count": 1}}, "cauldrons": {"_count": 2, "": {"_count": 1}, "or": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 1}, "me": {"_count": 1}, "him": {"_count": 2}}, "Snitch": {"_count": 1, "zoomed": {"_count": 1}}, "goods": {"_count": 1, "or": {"_count": 1}}, "objects": {"_count": 1, "back": {"_count": 1}}, "articles": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 3, "but": {"_count": 1}, "": {"_count": 1}, "They": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "hours": {"_count": 1, "in": {"_count": 1}}, "hairs": {"_count": 1, "using": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 1}, "Gryffindor": {"_count": 1}, "Tom": {"_count": 1}}, "Oh": {"_count": 1, "all": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "What": {"_count": 1, "if": {"_count": 1}}, "was": {"_count": 1, "absurd": {"_count": 1}}, "It": {"_count": 1, "tore": {"_count": 1}}}, "reward": {"_count": 16, "for": {"_count": 3, "breaking": {"_count": 1}, "this": {"_count": 1}, "his": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 2, "beyond": {"_count": 1}, "just": {"_count": 1}}, "me": {"_count": 1, "when": {"_count": 1}}, "was": {"_count": 2, "to": {"_count": 1}, "twelve": {"_count": 1}}, "to": {"_count": 1, "any": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 1, "beyond": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "money": {"_count": 1, "": {"_count": 1}}}, "stomping": {"_count": 3, "up": {"_count": 2, "the": {"_count": 2}}, "over": {"_count": 1, "to": {"_count": 1}}}, "disapprovingly": {"_count": 3, "at": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "straying": {"_count": 2, "off": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "Mr": {"_count": 1}}}, "bolted": {"_count": 10, "his": {"_count": 1, "dinner": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "did": {"_count": 1}}, "down": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 3, "door": {"_count": 3}}, "it": {"_count": 1, "": {"_count": 1}}, "shut": {"_count": 1, "and": {"_count": 1}}, "front": {"_count": 1, "door": {"_count": 1}}}, "bedspread": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "the": {"_count": 1, "walls": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}}, "Sleek": {"_count": 1, "and": {"_count": 1, "shiny": {"_count": 1}}}, "dusk": {"_count": 12, "toward": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Ron": {"_count": 1}}, "the": {"_count": 1, "still": {"_count": 1}}, "was": {"_count": 1, "falling": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 1, "extremely": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "you": {"_count": 1, "will": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}}, "stadium": {"_count": 61, "before": {"_count": 1, "": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "at": {"_count": 1, "full": {"_count": 1}}, "and": {"_count": 11, "a": {"_count": 1}, "across": {"_count": 1}, "the": {"_count": 1}, "began": {"_count": 1}, "back": {"_count": 2}, "situated": {"_count": 1}, "she": {"_count": 1}, "approached": {"_count": 1}, "Harry": {"_count": 1}, "less": {"_count": 1}}, "squinting": {"_count": 1, "through": {"_count": 1}}, "right": {"_count": 1, "away": {"_count": 1}}, "turned": {"_count": 2, "into": {"_count": 1}, "through": {"_count": 1}}, "discussing": {"_count": 1, "the": {"_count": 1}}, "beyond": {"_count": 1, "": {"_count": 1}}, "exploded": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "carpeted": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}, "seemed": {"_count": 1, "a": {"_count": 1}}, "then": {"_count": 1, "split": {"_count": 1}}, "strode": {"_count": 1, "out": {"_count": 1}}, "shuddered": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "Irish": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "I": {"_count": 1, "give": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "together": {"_count": 1, "but": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "WEASLEY": {"_count": 1, "IS": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "searching": {"_count": 1, "fruitlessly": {"_count": 1}}, "Harry": {"_count": 1, "glimpsed": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "solid": {"_count": 1}}, "or": {"_count": 1, "heading": {"_count": 1}}}, "Hundreds": {"_count": 5, "of": {"_count": 4, "seats": {"_count": 1}, "witches": {"_count": 1}, "pre": {"_count": 1}, "people": {"_count": 1}}, "upon": {"_count": 1, "hundreds": {"_count": 1}}}, "stands": {"_count": 62, "around": {"_count": 2, "the": {"_count": 2}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "opposite": {"_count": 1, "them": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "erupted": {"_count": 2, "it": {"_count": 1}, "with": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "still": {"_count": 1, "long": {"_count": 1}}, "and": {"_count": 5, "Harry": {"_count": 1}, "came": {"_count": 1}, "walked": {"_count": 1}, "whose": {"_count": 1}, "felt": {"_count": 1}}, "skidded": {"_count": 1, "to": {"_count": 1}}, "where": {"_count": 1, "Dumbledore": {"_count": 1}}, "to": {"_count": 6, "their": {"_count": 1}, "go": {"_count": 1}, "make": {"_count": 1}, "gain": {"_count": 1}, "heckle": {"_count": 1}, "watch": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "could": {"_count": 1, "see": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "were": {"_count": 1}}, "the": {"_count": 3, "heavy": {"_count": 1}, "noise": {"_count": 1}, "laughter": {"_count": 1}}, "was": {"_count": 1, "making": {"_count": 1}}, "had": {"_count": 1, "begun": {"_count": 1}}, "rising": {"_count": 1, "above": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Weasley": {"_count": 1, "cannot": {"_count": 1}}, "below": {"_count": 1, "Weasley": {"_count": 1}}, "her": {"_count": 1, "back": {"_count": 1}}, "its": {"_count": 1, "change": {"_count": 1}}, "compounded": {"_count": 1, "of": {"_count": 1}}, "behind": {"_count": 2, "me": {"_count": 1}, "them": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "filthy": {"_count": 1}}, "without": {"_count": 1, "wishing": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "for": {"_count": 1, "Selwyn": {"_count": 1}}}, "spectators": {"_count": 8, "were": {"_count": 2, "high": {"_count": 1}, "and": {"_count": 1}}, "screamed": {"_count": 2, "and": {"_count": 1}, "their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "stands": {"_count": 1, "now": {"_count": 1}}, "had": {"_count": 1, "to": {"_count": 1}}, "marched": {"_count": 1, "straight": {"_count": 1}}}, "poles": {"_count": 8, "with": {"_count": 3, "hoops": {"_count": 2}, "a": {"_count": 1}}, "and": {"_count": 1, "pegs": {"_count": 1}}, "were": {"_count": 1, "entwined": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "though": {"_count": 1}}}, "hoops": {"_count": 20, "on": {"_count": 2, "the": {"_count": 2}}, "to": {"_count": 2, "score": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 3, "stop": {"_count": 1}, "scooted": {"_count": 1}, "walked": {"_count": 1}}, "his": {"_count": 1, "feet": {"_count": 1}}, "at": {"_count": 1, "each": {"_count": 1}}, "fifty": {"_count": 1, "feet": {"_count": 1}}, "but": {"_count": 1, "dont": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "willing": {"_count": 1, "himself": {"_count": 1}}, "without": {"_count": 1, "even": {"_count": 1}}, "the": {"_count": 1, "crowd": {"_count": 1}}, "instantly": {"_count": 1, "appeared": {"_count": 1}}, "please": {"_count": 1, "and": {"_count": 1}}}, "bubbles": {"_count": 18, "through": {"_count": 1, "except": {"_count": 1}}, "blossoming": {"_count": 1, "out": {"_count": 1}}, "were": {"_count": 2, "blossoming": {"_count": 1}, "forming": {"_count": 1}}, "that": {"_count": 1, "refused": {"_count": 1}}, "the": {"_count": 2, "size": {"_count": 1}, "heads": {"_count": 1}}, "which": {"_count": 1, "took": {"_count": 1}}, "in": {"_count": 1, "shock": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "kept": {"_count": 1, "issuing": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "came": {"_count": 1, "out": {"_count": 1}}, "flew": {"_count": 1, "out": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "clustered": {"_count": 1, "in": {"_count": 1}}, "streamed": {"_count": 1, "from": {"_count": 1}}}, "fifty": {"_count": 81, "feet": {"_count": 10, "high": {"_count": 2}, "": {"_count": 3}, "from": {"_count": 2}, "into": {"_count": 1}, "above": {"_count": 1}, "away": {"_count": 1}}, "points": {"_count": 26, "so": {"_count": 1}, "for": {"_count": 1}, "will": {"_count": 1}, "lost": {"_count": 1}, "fewer": {"_count": 1}, "in": {"_count": 1}, "from": {"_count": 4}, "": {"_count": 6}, "up": {"_count": 4}, "ahead": {"_count": 2}, "to": {"_count": 2}, "said": {"_count": 1}, "apiece": {"_count": 1}}, "pence": {"_count": 1, "": {"_count": 1}}, "school": {"_count": 1, "rules": {"_count": 1}}, "Galleons": {"_count": 1, "for": {"_count": 1}}, "years": {"_count": 18, "ago": {"_count": 11}, "old": {"_count": 3}, "": {"_count": 3}, "before": {"_count": 1}}, "times": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "languages": {"_count": 1, "": {"_count": 1}}, "badges": {"_count": 1, "all": {"_count": 1}}, "foothigh": {"_count": 1, "scaly": {"_count": 1}}, "Blast": {"_count": 1, "Ended": {"_count": 1}}, "for": {"_count": 2, "each": {"_count": 1}, "Miss": {"_count": 1}}, "heavily": {"_count": 1, "armed": {"_count": 1}}, "yards": {"_count": 3, "they": {"_count": 1}, "away": {"_count": 2}}, "miles": {"_count": 1, "away": {"_count": 1}}, "of": {"_count": 1, "them": {"_count": 1}}, "Chocolate": {"_count": 1, "Frog": {"_count": 1}}, "centaurs": {"_count": 1, "were": {"_count": 1}}, "or": {"_count": 1, "so": {"_count": 1}}, "arrows": {"_count": 1, "went": {"_count": 1}}, "each": {"_count": 1, "for": {"_count": 1}}, "eyewitnesses": {"_count": 1, "but": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "curses": {"_count": 1, "would": {"_count": 1}}, "others": {"_count": 1, "who": {"_count": 1}}}, "goal": {"_count": 68, "posts": {"_count": 27, "and": {"_count": 3}, "the": {"_count": 1}, "but": {"_count": 2}, "are": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 2}, "four": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 7}, "where": {"_count": 1}, "Madam": {"_count": 1}, "however": {"_count": 1}, "looking": {"_count": 1}, "his": {"_count": 1}, "come": {"_count": 1}, "yet": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "!": {"_count": 1}, "?": {"_count": 1}}, "or": {"_count": 2, "else": {"_count": 2}}, "of": {"_count": 2, "the": {"_count": 1}, "six": {"_count": 1}}, "post": {"_count": 1, "Harry": {"_count": 1}}, "seventyten": {"_count": 1, "": {"_count": 1}}, "Montague": {"_count": 1, "scores": {"_count": 1}}, "by": {"_count": 1, "putting": {"_count": 1}}, "hoops": {"_count": 7, "fifty": {"_count": 1}, "": {"_count": 1}, "while": {"_count": 1}, "willing": {"_count": 1}, "and": {"_count": 1}, "without": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "failed": {"_count": 1}}, "to": {"_count": 1, "conquer": {"_count": 1}}, "They": {"_count": 1, "had": {"_count": 1}}, "obviously": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "became": {"_count": 1}, "threw": {"_count": 1}}, "hoop": {"_count": 2, "that": {"_count": 1}, "my": {"_count": 1}}, "hes": {"_count": 1, "out": {"_count": 1}}, "stop": {"_count": 1, "it": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Chasers": {"_count": 1}}, "scorer": {"_count": 1, "I": {"_count": 1}}, "its": {"_count": 1, "Urquhart": {"_count": 1}}, "apiece": {"_count": 1, "giving": {"_count": 1}}, "then": {"_count": 1, "we": {"_count": 1}}}, "posts": {"_count": 27, "and": {"_count": 3, "then": {"_count": 1}, "the": {"_count": 1}, "Cho": {"_count": 1}}, "the": {"_count": 1, "Beaters": {"_count": 1}}, "but": {"_count": 2, "hes": {"_count": 1}, "he": {"_count": 1}}, "are": {"_count": 1, "ahead": {"_count": 1}}, "for": {"_count": 1, "Gryffindor": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "outstripped": {"_count": 1}}, "four": {"_count": 1, "flying": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 2}}, "where": {"_count": 1, "Adrian": {"_count": 1}}, "Madam": {"_count": 1, "Hooch": {"_count": 1}}, "however": {"_count": 1, "two": {"_count": 1}}, "looking": {"_count": 1, "good": {"_count": 1}}, "his": {"_count": 1, "jaw": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "lightest": {"_count": 2, "touch": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}}, "crate": {"_count": 27, "under": {"_count": 2, "his": {"_count": 1}, "one": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "and": {"_count": 5, "strapping": {"_count": 1}, "took": {"_count": 1}, "waited": {"_count": 1}, "wall": {"_count": 2}}, "its": {"_count": 1, "too": {"_count": 1}}, "came": {"_count": 1, "ripping": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}, "open": {"_count": 1, "four": {"_count": 1}}, "each": {"_count": 1, "about": {"_count": 1}}, "of": {"_count": 2, "Mrs": {"_count": 1}, "enchanted": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "for": {"_count": 1}}, "containing": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "stood": {"_count": 1}}, "blocking": {"_count": 1, "his": {"_count": 1}}}, "joining": {"_count": 20, "team": {"_count": 1, "practice": {"_count": 1}}, "them": {"_count": 4, "": {"_count": 2}, "at": {"_count": 1}, "around": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "as": {"_count": 1}, "only": {"_count": 1}}, "the": {"_count": 3, "marching": {"_count": 1}, "class": {"_count": 1}, "others": {"_count": 1}}, "myself": {"_count": 1, "Professor": {"_count": 1}}, "Vol": {"_count": 1, "There": {"_count": 1}}, "up": {"_count": 2, "at": {"_count": 1}, "with": {"_count": 1}}, "Harry": {"_count": 3, "on": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "differentsized": {"_count": 1, "balls": {"_count": 1, "": {"_count": 1}}}, "Chasers": {"_count": 27, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "Harry": {"_count": 1, "repeated": {"_count": 1}}, "throw": {"_count": 2, "the": {"_count": 2}}, "one": {"_count": 1, "Keeper": {"_count": 1}}, "try": {"_count": 1, "and": {"_count": 1}}, "Beaters": {"_count": 1, "Bludgers": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "each": {"_count": 1}}, "Katie": {"_count": 2, "Bell": {"_count": 2}}, "whose": {"_count": 1, "job": {"_count": 1}}, "were": {"_count": 3, "throwing": {"_count": 1}, "superb": {"_count": 1}, "too": {"_count": 1}}, "zoom": {"_count": 1, "closely": {"_count": 1}}, "and": {"_count": 3, "were": {"_count": 1}, "Crabbe": {"_count": 1}, "Beaters": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "moved": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 1, "warm": {"_count": 1}}, "aimed": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "Quaffle": {"_count": 84, "said": {"_count": 2, "Wood": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 7, "each": {"_count": 2}, "get": {"_count": 1}, "one": {"_count": 1}, "Moran": {"_count": 1}, "Alicia": {"_count": 1}, "Warrington": {"_count": 1}}, "goes": {"_count": 2, "through": {"_count": 1}, "up": {"_count": 1}}, "and": {"_count": 7, "put": {"_count": 1}, "the": {"_count": 1}, "off": {"_count": 1}, "scored": {"_count": 1}, "Levski": {"_count": 1}, "Katie": {"_count": 1}, "hes": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "!": {"_count": 1}}, "the": {"_count": 2, "Keeper": {"_count": 1}, "two": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "taken": {"_count": 1}}, "Slytherin": {"_count": 2, "Captain": {"_count": 2}}, "thats": {"_count": 2, "Chaser": {"_count": 1}, "the": {"_count": 1}}, "taken": {"_count": 1, "by": {"_count": 1}}, "a": {"_count": 2, "clear": {"_count": 1}, "red": {"_count": 1}}, "too": {"_count": 1, "busy": {"_count": 1}}, "passes": {"_count": 1, "Spinnet": {"_count": 1}}, "heading": {"_count": 1, "straight": {"_count": 1}}, "intercepted": {"_count": 1, "by": {"_count": 1}}, "its": {"_count": 1, "caught": {"_count": 1}}, "shes": {"_count": 2, "streaking": {"_count": 1}, "past": {"_count": 1}}, "had": {"_count": 2, "grabbed": {"_count": 1}, "soared": {"_count": 1}}, "Flint": {"_count": 1, "alongside": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "for": {"_count": 2, "Gryffindor": {"_count": 1}, "longer": {"_count": 1}}, "drawing": {"_count": 1, "away": {"_count": 1}}, "tightly": {"_count": 1, "under": {"_count": 1}}, "nearly": {"_count": 1, "knocking": {"_count": 1}}, "changed": {"_count": 1, "hands": {"_count": 1}}, "now": {"_count": 1, "Dimitrov": {"_count": 1}}, "past": {"_count": 1, "Ron": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "with": {"_count": 1, "one": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "perhaps": {"_count": 1, "out": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "by": {"_count": 1, "accident": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}, "Montague": {"_count": 1, "heading": {"_count": 1}}, "caught": {"_count": 1, "by": {"_count": 1}}, "in": {"_count": 4, "Weasley": {"_count": 4}}, "Warrington": {"_count": 1, "heading": {"_count": 1}}, "Johnson": {"_count": 1, "to": {"_count": 1}}, "better": {"_count": 1, "": {"_count": 1}}, "immediately": {"_count": 1, "Ravenclaw": {"_count": 1}}, "he": {"_count": 1, "dodges": {"_count": 1}}, "Ginny": {"_count": 1, "took": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "sped": {"_count": 1, "toward": {"_count": 1}}, "drops": {"_count": 1, "in": {"_count": 1}}}, "throw": {"_count": 59, "the": {"_count": 5, "Quaffle": {"_count": 3}, "Invisibility": {"_count": 1}, "sprout": {"_count": 1}}, "off": {"_count": 8, "the": {"_count": 6}, "Greybacks": {"_count": 1}, "her": {"_count": 1}}, "Harry": {"_count": 1, "off": {"_count": 1}}, "something": {"_count": 4, "else": {"_count": 1}, "at": {"_count": 2}, "": {"_count": 1}}, "a": {"_count": 5, "book": {"_count": 1}, "punch": {"_count": 1}, "reproachful": {"_count": 1}, "scathing": {"_count": 1}, "furtive": {"_count": 1}}, "books": {"_count": 2, "at": {"_count": 1}, "onto": {"_count": 1}}, "Riddles": {"_count": 1, "diary": {"_count": 1}}, "them": {"_count": 4, "into": {"_count": 1}, "in": {"_count": 1}, "off": {"_count": 2}}, "Gadding": {"_count": 1, "with": {"_count": 1}}, "away": {"_count": 2, "the": {"_count": 2}}, "this": {"_count": 1, "away": {"_count": 1}}, "himself": {"_count": 2, "upon": {"_count": 1}, "off": {"_count": 1}}, "Lupin": {"_count": 1, "off": {"_count": 1}}, "at": {"_count": 3, "Harry": {"_count": 1}, "her": {"_count": 1}, "them": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "itself": {"_count": 1, "down": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 2, "straight": {"_count": 1}, "out": {"_count": 1}}, "up": {"_count": 5, "his": {"_count": 1}, "": {"_count": 2}, "again": {"_count": 1}, "yet": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 5, "away": {"_count": 2}, "out": {"_count": 1}, "over": {"_count": 1}, "off": {"_count": 1}}, "caution": {"_count": 1, "to": {"_count": 1}}, "Millicent": {"_count": 1, "Bulstrode": {"_count": 1}}, "me": {"_count": 1, "out": {"_count": 1}}}, "score": {"_count": 21, "a": {"_count": 2, "goal": {"_count": 1}, "spectacular": {"_count": 1}}, "Harry": {"_count": 1, "recited": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "oh": {"_count": 1, "no": {"_count": 1}}, "goals": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 2}, ".": {"_count": 3}, "!": {"_count": 1}}, "fortyten": {"_count": 1, "to": {"_count": 1}}, "first": {"_count": 1, "I": {"_count": 1}}, "Bulgarias": {"_count": 1, "first": {"_count": 1}}, "is": {"_count": 1, "fortyfive": {"_count": 1}}, "I": {"_count": 1, "sort": {"_count": 1}}, "was": {"_count": 2, "two": {"_count": 1}, "three": {"_count": 1}}, "of": {"_count": 1, "ghostly": {"_count": 1}}, "and": {"_count": 1, "kept": {"_count": 1}}}, "recited": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "watching": {"_count": 1, "Harrys": {"_count": 1}}, "staring": {"_count": 1, "horrorstruck": {"_count": 1}}, "First": {"_count": 1, "think": {"_count": 1}}, "Phineas": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "grades": {"_count": 1}}, "at": {"_count": 1, "top": {"_count": 1}}, "it": {"_count": 1, "but": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}}, "basketball": {"_count": 2, "on": {"_count": 1, "broomsticks": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "scoring": {"_count": 4, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "the": {"_count": 1, "first": {"_count": 1}}}, "Okay": {"_count": 103, "got": {"_count": 1, "that": {"_count": 1}}, "men": {"_count": 1, "he": {"_count": 1}}, "lets": {"_count": 5, "go": {"_count": 4}, "try": {"_count": 1}}, "he": {"_count": 6, "said": {"_count": 5}, "called": {"_count": 1}}, "well": {"_count": 1, "just": {"_count": 1}}, "Ron": {"_count": 2, "sighed": {"_count": 1}, "come": {"_count": 1}}, "said": {"_count": 24, "Harry": {"_count": 18}, "Ron": {"_count": 3}, "Hermione": {"_count": 2}, "Uncle": {"_count": 1}}, "who": {"_count": 1, "else": {"_count": 1}}, "so": {"_count": 1, "weve": {"_count": 1}}, "team": {"_count": 1, "lets": {"_count": 1}}, "side": {"_count": 1, "with": {"_count": 1}}, "everyone": {"_count": 3, "lets": {"_count": 1}, "said": {"_count": 1}, "were": {"_count": 1}}, "okay": {"_count": 8, "Gryffindor": {"_count": 1}, "Ill": {"_count": 1}, "we": {"_count": 1}, "said": {"_count": 2}, "it": {"_count": 1}, "": {"_count": 1}, "calm": {"_count": 1}}, "no": {"_count": 1, "wind": {"_count": 1}}, "its": {"_count": 1, "time": {"_count": 1}}, "she": {"_count": 3, "whispered": {"_count": 1}, "said": {"_count": 2}}, "Scabbers": {"_count": 1, "stay": {"_count": 1}}, "say": {"_count": 1, "Pettigrew": {"_count": 1}}, "but": {"_count": 1, "well": {"_count": 1}}, "": {"_count": 10, "!": {"_count": 1}, ".": {"_count": 8}, "?": {"_count": 1}}, "Buckbeak": {"_count": 1, "up": {"_count": 1}}, "I": {"_count": 2, "can": {"_count": 1}, "cant": {"_count": 1}}, "then": {"_count": 6, "said": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 1}, "Hermione": {"_count": 1}}, "Tuesday": {"_count": 1, "Ill": {"_count": 1}}, "Ill": {"_count": 1, "lose": {"_count": 1}}, "try": {"_count": 1, "again": {"_count": 1}}, "Harry": {"_count": 5, "told": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 2}}, "and": {"_count": 1, "followed": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "write": {"_count": 1, "that": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "stop": {"_count": 1, "": {"_count": 1}}, "Eve": {"_count": 1, "only": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "fine": {"_count": 1, "its": {"_count": 1}}, "listen": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 1, "were": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "dont": {"_count": 1, "touch": {"_count": 1}}}, "club": {"_count": 25, "a": {"_count": 1, "bit": {"_count": 1}}, "which": {"_count": 1, "dragged": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "with": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "flew": {"_count": 1, "suddenly": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "train": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Hogwarts": {"_count": 1}}, "and": {"_count": 2, "tried": {"_count": 1}, "set": {"_count": 1}}, "knocking": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "soaring": {"_count": 1, "high": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "taller": {"_count": 1, "than": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}}, "baseball": {"_count": 1, "bat": {"_count": 1, "": {"_count": 1}}}, "Bludgers": {"_count": 31, "do": {"_count": 1, "Wood": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "rocket": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 6, "try": {"_count": 1}, "Quaffle": {"_count": 1}, "Quaffles": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "Ginny": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "ever": {"_count": 1, "killed": {"_count": 1}}, "unless": {"_count": 1, "they": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "themselves": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "two": {"_count": 2, "Weasleys": {"_count": 1}, "heavy": {"_count": 1}}, "never": {"_count": 1, "concentrated": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "came": {"_count": 1, "streaking": {"_count": 1}}, "at": {"_count": 1, "Wood": {"_count": 1}}, "near": {"_count": 1, "Muggles": {"_count": 1}}, "as": {"_count": 1, "fiercely": {"_count": 1}}, "had": {"_count": 1, "permanently": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "gone": {"_count": 1, "and": {"_count": 1}}}, "identical": {"_count": 20, "balls": {"_count": 1, "jet": {"_count": 1}}, "envelopes": {"_count": 1, "of": {"_count": 1}}, "cold": {"_count": 1, "gray": {"_count": 1}}, "to": {"_count": 3, "Justins": {"_count": 1}, "the": {"_count": 2}}, "evil": {"_count": 1, "grins": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "long": {"_count": 1, "white": {"_count": 1}}, "and": {"_count": 1, "our": {"_count": 1}}, "twin": {"_count": 1, "in": {"_count": 1}}, "door": {"_count": 1, "and": {"_count": 1}}, "unmarked": {"_count": 1, "handleless": {"_count": 1}}, "street": {"_count": 1, "": {"_count": 1}}, "sweeping": {"_count": 1, "motion": {"_count": 1}}, "package": {"_count": 1, "landed": {"_count": 1}}, "movements": {"_count": 1, "and": {"_count": 1}}, "shoulderlength": {"_count": 1, "hairstyles": {"_count": 1}}, "cups": {"_count": 1, "rolling": {"_count": 1}}}, "jet": {"_count": 49, "black": {"_count": 4, "and": {"_count": 2}, "hair": {"_count": 1}, "": {"_count": 1}}, "body": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 39, "the": {"_count": 1}, "green": {"_count": 12}, "steam": {"_count": 1}, "silver": {"_count": 1}, "sparks": {"_count": 2}, "fire": {"_count": 2}, "flame": {"_count": 1}, "boiling": {"_count": 1}, "red": {"_count": 12}, "light": {"_count": 1}, "water": {"_count": 3}, "scarlet": {"_count": 1}, "white": {"_count": 1}}, "that": {"_count": 2, "poured": {"_count": 1}, "ricocheted": {"_count": 1}}, "were": {"_count": 1, "revving": {"_count": 1}}, "bounced": {"_count": 1, "off": {"_count": 1}}, "meet": {"_count": 1, "his": {"_count": 1}}}, "straining": {"_count": 18, "to": {"_count": 5, "escape": {"_count": 1}, "shift": {"_count": 1}, "hold": {"_count": 1}, "lay": {"_count": 1}, "hear": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 5, "ears": {"_count": 5}}, "at": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "yourself": {"_count": 1, "though": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "though": {"_count": 1}}, "expecting": {"_count": 1, "every": {"_count": 1}}}, "straps": {"_count": 4, "holding": {"_count": 1, "them": {"_count": 1}}, "of": {"_count": 2, "Crookshankss": {"_count": 1}, "Harrys": {"_count": 1}}, "around": {"_count": 1, "their": {"_count": 1}}}, "freed": {"_count": 9, "one": {"_count": 1, "of": {"_count": 1}}, "if": {"_count": 1, "his": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "from": {"_count": 1}}, "too": {"_count": 1, "sir": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "years": {"_count": 1}}}, "pelted": {"_count": 15, "straight": {"_count": 1, "at": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "Bludger": {"_count": 1}}, "headlong": {"_count": 1, "into": {"_count": 1}}, "away": {"_count": 1, "into": {"_count": 1}}, "toward": {"_count": 6, "it": {"_count": 1}, "the": {"_count": 3}, "him": {"_count": 1}, "a": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}, "through": {"_count": 1, "it": {"_count": 1}}, "along": {"_count": 1, "in": {"_count": 1}}, "heads": {"_count": 1, "down": {"_count": 1}}}, "zigzagging": {"_count": 6, "away": {"_count": 1, "into": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "through": {"_count": 1}}, "in": {"_count": 1, "between": {"_count": 1}}, "far": {"_count": 1, "below": {"_count": 1}}, "path": {"_count": 1, "leading": {"_count": 1}}}, "zoomed": {"_count": 57, "around": {"_count": 5, "their": {"_count": 1}, "trying": {"_count": 1}, "the": {"_count": 3}}, "toward": {"_count": 3, "the": {"_count": 2}, "them": {"_count": 1}}, "away": {"_count": 4, "backward": {"_count": 1}, "cursing": {"_count": 1}, "gazing": {"_count": 1}, "cackling": {"_count": 1}}, "backward": {"_count": 1, "out": {"_count": 1}}, "off": {"_count": 5, "into": {"_count": 1}, "up": {"_count": 1}, "to": {"_count": 1}, "after": {"_count": 1}, "toward": {"_count": 1}}, "higher": {"_count": 2, "and": {"_count": 1}, "dodging": {"_count": 1}}, "back": {"_count": 3, "into": {"_count": 1}, "along": {"_count": 1}, "to": {"_count": 1}}, "out": {"_count": 8, "of": {"_count": 5}, "": {"_count": 1}, "with": {"_count": 1}, "onto": {"_count": 1}}, "happily": {"_count": 1, "around": {"_count": 1}}, "from": {"_count": 2, "all": {"_count": 1}, "side": {"_count": 1}}, "him": {"_count": 1, "there": {"_count": 1}}, "outside": {"_count": 1, "again": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "excitedly": {"_count": 1, "round": {"_count": 1}}, "even": {"_count": 1, "faster": {"_count": 1}}, "in": {"_count": 2, "so": {"_count": 1}, "through": {"_count": 1}}, "along": {"_count": 1, "above": {"_count": 1}}, "gloomily": {"_count": 1, "back": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "past": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "but": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 1}, "their": {"_count": 1}, "overdrive": {"_count": 1}}, "forward": {"_count": 2, "and": {"_count": 1}, "Harry": {"_count": 1}}, "directly": {"_count": 1, "at": {"_count": 1}}}, "forcing": {"_count": 44, "the": {"_count": 9, "struggling": {"_count": 1}, "boggart": {"_count": 1}, "wand": {"_count": 1}, "bead": {"_count": 1}, "heads": {"_count": 1}, "hole": {"_count": 1}, "issue": {"_count": 1}, "other": {"_count": 1}, "suit": {"_count": 1}}, "Lockhart": {"_count": 1, "to": {"_count": 1}}, "himself": {"_count": 6, "to": {"_count": 6}}, "his": {"_count": 7, "thoughts": {"_count": 1}, "face": {"_count": 1}, "company": {"_count": 1}, "voice": {"_count": 1}, "way": {"_count": 3}}, "him": {"_count": 3, "to": {"_count": 1}, "inside": {"_count": 1}, "back": {"_count": 1}}, "them": {"_count": 3, "to": {"_count": 3}}, "another": {"_count": 1, "butterbeer": {"_count": 1}}, "any": {"_count": 1, "stragglers": {"_count": 1}}, "something": {"_count": 1, "heavy": {"_count": 1}}, "myself": {"_count": 1, "sleeplessly": {"_count": 1}}, "that": {"_count": 1, "bead": {"_count": 1}}, "entry": {"_count": 2, "into": {"_count": 2}}, "Ernie": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 1, "Potter": {"_count": 1}}, "Harrys": {"_count": 1, "head": {"_count": 1}}, "their": {"_count": 2, "way": {"_count": 2}}, "her": {"_count": 1, "way": {"_count": 1}}, "its": {"_count": 1, "way": {"_count": 1}}, "themselves": {"_count": 1, "upon": {"_count": 1}}}, "Bludger": {"_count": 88, "back": {"_count": 2, "into": {"_count": 1}, "toward": {"_count": 1}}, "Quaffle": {"_count": 1, "taken": {"_count": 1}}, "sent": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "goal": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "furiously": {"_count": 1, "toward": {"_count": 1}}, "which": {"_count": 1, "went": {"_count": 1}}, "hope": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 8, "him": {"_count": 3}, "the": {"_count": 1}, "Warrington": {"_count": 1}, "you": {"_count": 2}, "Harper": {"_count": 1}}, "came": {"_count": 2, "pelting": {"_count": 2}}, "a": {"_count": 1, "powerful": {"_count": 1}}, "changed": {"_count": 1, "direction": {"_count": 1}}, "swerved": {"_count": 1, "like": {"_count": 1}}, "whistling": {"_count": 1, "along": {"_count": 1}}, "with": {"_count": 3, "all": {"_count": 1}, "his": {"_count": 1}, "which": {"_count": 1}}, "was": {"_count": 3, "knocked": {"_count": 1}, "doing": {"_count": 1}, "heavy": {"_count": 1}}, "pelted": {"_count": 1, "after": {"_count": 1}}, "Fred": {"_count": 1, "grunted": {"_count": 1}}, "breaking": {"_count": 1, "Harrys": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "!": {"_count": 1}, "?": {"_count": 2}}, "stopped": {"_count": 1, "Angelina": {"_count": 1}}, "from": {"_count": 5, "murdering": {"_count": 1}, "that": {"_count": 1}, "Crabbe": {"_count": 1}, "Fred": {"_count": 1}, "Goyle": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 3, "just": {"_count": 1}, "hit": {"_count": 1}, "found": {"_count": 1}}, "and": {"_count": 6, "he": {"_count": 1}, "dropped": {"_count": 1}, "hit": {"_count": 1}, "set": {"_count": 1}, "Ritchie": {"_count": 1}, "mishit": {"_count": 1}}, "trailing": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "try": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "vision": {"_count": 1}}, "ducking": {"_count": 1, "beneath": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "Crabbe": {"_count": 1}}, "hit": {"_count": 2, "by": {"_count": 1}, "Harry": {"_count": 1}}, "directly": {"_count": 1, "at": {"_count": 1}}, "work": {"_count": 1, "there": {"_count": 1}}, "SHE": {"_count": 1, "SCORES": {"_count": 1}}, "grazed": {"_count": 1, "Harrys": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "or": {"_count": 1, "human": {"_count": 1}}, "exceptionally": {"_count": 1, "well": {"_count": 1}}, "Ron": {"_count": 1, "get": {"_count": 1}}, "there": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "close": {"_count": 1, "call": {"_count": 1}}, "range": {"_count": 1, "with": {"_count": 1}}, "attack": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "hit": {"_count": 1}}, "but": {"_count": 1, "hitting": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "injuries": {"_count": 1, "during": {"_count": 1}}, "so": {"_count": 1, "its": {"_count": 1}}}, "strapping": {"_count": 4, "it": {"_count": 2, "down": {"_count": 1}, "tightly": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "narrow": {"_count": 1, "strips": {"_count": 1}}}, "rocket": {"_count": 3, "around": {"_count": 1, "trying": {"_count": 1}}, "zoomed": {"_count": 1, "past": {"_count": 1}}, "and": {"_count": 1, "its": {"_count": 1}}}, "protect": {"_count": 46, "their": {"_count": 2, "side": {"_count": 1}, "families": {"_count": 1}}, "the": {"_count": 6, "Stone": {"_count": 1}, "lockets": {"_count": 1}, "students": {"_count": 2}, "prosecutors": {"_count": 1}, "wand": {"_count": 1}}, "you": {"_count": 8, "": {"_count": 4}, "this": {"_count": 1}, "all": {"_count": 1}, "said": {"_count": 1}, "your": {"_count": 1}}, "Harry": {"_count": 2, "Potter": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 8, "Harry": {"_count": 1}, "": {"_count": 3}, "from": {"_count": 1}, "that": {"_count": 1}, "too": {"_count": 1}, "but": {"_count": 1}}, "Black": {"_count": 1, "that": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "all": {"_count": 1}}, "hung": {"_count": 1, "the": {"_count": 1}}, "herself": {"_count": 2, "as": {"_count": 1}, "Ron": {"_count": 1}}, "yourself": {"_count": 1, "so": {"_count": 1}}, "himself": {"_count": 3, "": {"_count": 2}, "from": {"_count": 1}}, "themselves": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 1, "most": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 1}, "do": {"_count": 1}}, "my": {"_count": 1, "mother": {"_count": 1}}, "his": {"_count": 1, "belongings": {"_count": 1}}, "Muggle": {"_count": 1, "friends": {"_count": 1}}, "Lilys": {"_count": 1, "son": {"_count": 1}}, "and": {"_count": 1, "shield": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}}, "guards": {"_count": 20, "the": {"_count": 2, "goal": {"_count": 2}}, "like": {"_count": 1, "that": {"_count": 1}}, "eh": {"_count": 1, "Ern": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "have": {"_count": 2, "never": {"_count": 1}, "joined": {"_count": 1}}, "wholl": {"_count": 1, "get": {"_count": 1}}, "told": {"_count": 1, "Fudge": {"_count": 1}}, "stationing": {"_count": 1, "themselves": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "everyone": {"_count": 1, "kept": {"_count": 1}}, "say": {"_count": 1, "hes": {"_count": 1}}, "around": {"_count": 1, "me": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "desk": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "turn": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "running": {"_count": 1, "around": {"_count": 1}}}, "reeled": {"_count": 5, "off": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "from": {"_count": 1}}}, "offhand": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 3, "Ill": {"_count": 1}, "": {"_count": 2}}}, "jaws": {"_count": 14, "but": {"_count": 1, "nothing": {"_count": 1}}, "dropped": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "jammed": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "fastened": {"_count": 1, "instead": {"_count": 1}}, "Sirius": {"_count": 1, "disappeared": {"_count": 1}}, "stretched": {"_count": 1, "wide": {"_count": 1}}, "opened": {"_count": 1, "wide": {"_count": 1}}, "feeling": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "hung": {"_count": 1, "from": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}}, "member": {"_count": 46, "of": {"_count": 33, "the": {"_count": 21}, "our": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 2}, "Mrs": {"_count": 1}, "staff": {"_count": 5}, "their": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "Macnair": {"_count": 1}, "usually": {"_count": 1}}, "from": {"_count": 1, "inside": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "were": {"_count": 1, "making": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "possess": {"_count": 1}}, "had": {"_count": 2, "come": {"_count": 1}, "needed": {"_count": 1}}, "for": {"_count": 1, "whom": {"_count": 1}}}, "fourth": {"_count": 62, "and": {"_count": 1, "last": {"_count": 1}}, "place": {"_count": 3, "Gryffindor": {"_count": 1}, "and": {"_count": 1}, "this": {"_count": 1}}, "helpings": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "ball": {"_count": 1, "is": {"_count": 1}}, "year": {"_count": 11, "Alicia": {"_count": 1}, "and": {"_count": 4}, "at": {"_count": 1}, "": {"_count": 3}, "running": {"_count": 1}, "who": {"_count": 1}}, "floor": {"_count": 8, "": {"_count": 5}, "sir": {"_count": 1}, "you": {"_count": 1}, "shut": {"_count": 1}}, "slice": {"_count": 1, "of": {"_count": 1}}, "week": {"_count": 1, "of": {"_count": 1}}, "stretcher": {"_count": 1, "no": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "sherry": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 7, "were": {"_count": 1}, "had": {"_count": 2}, "and": {"_count": 2}, "for": {"_count": 1}, "spilled": {"_count": 1}}, "row": {"_count": 1, "from": {"_count": 1}}, "Triwizard": {"_count": 1, "champion": {"_count": 1}}, "school": {"_count": 1, "to": {"_count": 1}}, "champion": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 1, "February": {"_count": 1}}, "fifth": {"_count": 1, "and": {"_count": 1}}, "owl": {"_count": 1, "came": {"_count": 1}}, "night": {"_count": 1, "after": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 2, "terrible": {"_count": 1}, "not": {"_count": 1}}, "time": {"_count": 2, "": {"_count": 1}, "Mrs": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "meeting": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "lesson": {"_count": 1, "Slughorn": {"_count": 1}}, "group": {"_count": 1, "had": {"_count": 1}}, "penalty": {"_count": 1, "Ron": {"_count": 1}}, "did": {"_count": 1, "anything": {"_count": 1}}, "goblet": {"_count": 1, "he": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "finger": {"_count": 1, "of": {"_count": 1}}}, "Compared": {"_count": 2, "with": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "fluttering": {"_count": 27, "silver": {"_count": 1, "wings": {"_count": 1}}, "banner": {"_count": 1, "high": {"_count": 1}}, "darting": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 2, "tumbling": {"_count": 1}, "hooting": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "live": {"_count": 1, "bats": {"_count": 1}}, "fairies": {"_count": 1, "": {"_count": 1}}, "low": {"_count": 1, "over": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "down": {"_count": 1, "onto": {"_count": 1}}, "her": {"_count": 1, "long": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "fairy": {"_count": 1, "lights": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "golden": {"_count": 1, "ball": {"_count": 1}}, "Golden": {"_count": 1, "Snitch": {"_count": 1}}, "madly": {"_count": 1, "in": {"_count": 1}}, "near": {"_count": 1, "Kirkes": {"_count": 1}}, "very": {"_count": 1, "slightly": {"_count": 1}}, "ball": {"_count": 1, "and": {"_count": 1}}, "each": {"_count": 1, "a": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}}, "wings": {"_count": 79, "": {"_count": 6, ".": {"_count": 6}}, "fluttering": {"_count": 1, "darting": {"_count": 1}}, "were": {"_count": 2, "huge": {"_count": 1}, "bursting": {"_count": 1}}, "to": {"_count": 2, "me": {"_count": 1}, "remain": {"_count": 1}}, "the": {"_count": 2, "feathers": {"_count": 1}, "Snitch": {"_count": 1}}, "wildly": {"_count": 1, "against": {"_count": 1}}, "for": {"_count": 1, "ages": {"_count": 1}}, "and": {"_count": 10, "carrying": {"_count": 1}, "took": {"_count": 2}, "heads": {"_count": 1}, "they": {"_count": 1}, "soared": {"_count": 2}, "held": {"_count": 1}, "keeping": {"_count": 1}, "a": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}, "Fawkes": {"_count": 1, "had": {"_count": 1}}, "emitted": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "didnt": {"_count": 1}}, "flapped": {"_count": 1, "open": {"_count": 1}}, "beat": {"_count": 1, "uncomfortably": {"_count": 1}}, "folded": {"_count": 3, "tight": {"_count": 2}, "close": {"_count": 1}}, "hopelessly": {"_count": 1, "against": {"_count": 1}}, "irritably": {"_count": 1, "": {"_count": 1}}, "contentedly": {"_count": 1, "and": {"_count": 1}}, "rising": {"_count": 1, "powerfully": {"_count": 1}}, "fell": {"_count": 1, "was": {"_count": 1}}, "rose": {"_count": 1, "once": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "Luna": {"_count": 1}, "it": {"_count": 1}}, "halffurled": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 2, "last": {"_count": 1}, "an": {"_count": 1}}, "just": {"_count": 1, "brushing": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "restlessly": {"_count": 1, "": {"_count": 1}}, "whirring": {"_count": 1, "tiny": {"_count": 1}}, "indignantly": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 2, "looked": {"_count": 1}, "had": {"_count": 1}}, "spread": {"_count": 1, "wide": {"_count": 1}}, "from": {"_count": 1, "above": {"_count": 1}}, "all": {"_count": 1, "funny": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "looking": {"_count": 1}}, "whenever": {"_count": 1, "we": {"_count": 1}}, "on": {"_count": 1, "either": {"_count": 1}}, "hardly": {"_count": 1, "beating": {"_count": 1}}, "glued": {"_count": 1, "to": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "then": {"_count": 1, "resumed": {"_count": 1}}, "fluttered": {"_count": 2, "rather": {"_count": 1}, "and": {"_count": 1}}, "flutter": {"_count": 1, "feebly": {"_count": 1}}, "or": {"_count": 1, "snapping": {"_count": 1}}, "was": {"_count": 1, "stuck": {"_count": 1}}, "a": {"_count": 1, "billywig": {"_count": 1}}, "really": {"_count": 1, "made": {"_count": 1}}, "potions": {"_count": 1, "in": {"_count": 1}}, "opened": {"_count": 1, "knocking": {"_count": 1}}, "Turning": {"_count": 1, "its": {"_count": 1}}, "beating": {"_count": 2, "the": {"_count": 1}, "hard": {"_count": 1}}, "echoed": {"_count": 1, "across": {"_count": 1}}}, "Golden": {"_count": 11, "Snitch": {"_count": 10, "and": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 4}, "a": {"_count": 1}, "was": {"_count": 1}, "worked": {"_count": 1}}, "plates": {"_count": 1, "and": {"_count": 1}}}, "Snitch": {"_count": 170, "and": {"_count": 13, "its": {"_count": 1}, "looked": {"_count": 1}, "the": {"_count": 1}, "Fred": {"_count": 1}, "sank": {"_count": 1}, "Summerbys": {"_count": 1}, "was": {"_count": 1}, "still": {"_count": 1}, "keeping": {"_count": 1}, "watching": {"_count": 1}, "back": {"_count": 1}, "Hermione": {"_count": 1}, "shook": {"_count": 1}}, "wins": {"_count": 1, "his": {"_count": 1}}, "is": {"_count": 3, "caught": {"_count": 1}, "if": {"_count": 1}, "not": {"_count": 1}}, "yet": {"_count": 2, "said": {"_count": 1}, "eh": {"_count": 1}}, "": {"_count": 41, ".": {"_count": 29}, "?": {"_count": 7}, "!": {"_count": 5}}, "Wood": {"_count": 1, "had": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 6, "disappeared": {"_count": 3}, "vanished": {"_count": 2}, "been": {"_count": 1}}, "its": {"_count": 2, "now": {"_count": 1}, "tired": {"_count": 1}}, "clasped": {"_count": 1, "in": {"_count": 1}}, "being": {"_count": 1, "caught": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "said": {"_count": 2, "Harry": {"_count": 1}, "George": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "earns": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 3, "Malfoy": {"_count": 1}, "": {"_count": 1}, "him": {"_count": 1}}, "let": {"_count": 2, "alone": {"_count": 1}, "it": {"_count": 1}}, "or": {"_count": 1, "die": {"_count": 1}}, "but": {"_count": 5, "was": {"_count": 1}, "still": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}, "maybe": {"_count": 1}}, "clutched": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 2, "top": {"_count": 2}}, "a": {"_count": 2, "tiny": {"_count": 1}, "few": {"_count": 1}}, "in": {"_count": 6, "about": {"_count": 1}, "this": {"_count": 2}, "his": {"_count": 1}, "surprise": {"_count": 1}, "the": {"_count": 1}}, "soon": {"_count": 1, "well": {"_count": 1}}, "avoiding": {"_count": 1, "a": {"_count": 1}}, "quickly": {"_count": 1, "He": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "dart": {"_count": 1, "out": {"_count": 1}}, "go": {"_count": 1, "again": {"_count": 1}}, "for": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}, "listening": {"_count": 1, "all": {"_count": 1}}, "was": {"_count": 8, "close": {"_count": 1}, "circling": {"_count": 1}, "glittering": {"_count": 1}, "worth": {"_count": 1}, "sparkling": {"_count": 1}, "Theyre": {"_count": 1}, "hovering": {"_count": 1}, "speeding": {"_count": 1}}, "herself": {"_count": 1, "": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 2, "every": {"_count": 1}, "his": {"_count": 1}}, "only": {"_count": 1, "if": {"_count": 1}}, "until": {"_count": 1, "Gryffindor": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "now": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "without": {"_count": 2, "interference": {"_count": 1}, "really": {"_count": 1}}, "wheres": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "circling": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 6, "turned": {"_count": 1}, "had": {"_count": 1}, "caught": {"_count": 1}, "held": {"_count": 1}, "would": {"_count": 1}, "began": {"_count": 1}}, "horrified": {"_count": 1, "he": {"_count": 1}}, "anywhere": {"_count": 1, "he": {"_count": 1}}, "keeping": {"_count": 1, "one": {"_count": 1}}, "skirted": {"_count": 1, "the": {"_count": 1}}, "tightly": {"_count": 1, "in": {"_count": 1}}, "fluttering": {"_count": 1, "madly": {"_count": 1}}, "zoomed": {"_count": 1, "over": {"_count": 1}}, "from": {"_count": 2, "midair": {"_count": 1}, "right": {"_count": 1}}, "sooner": {"_count": 1, "": {"_count": 1}}, "allowing": {"_count": 1, "it": {"_count": 1}}, "letting": {"_count": 1, "it": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "walking": {"_count": 1, "down": {"_count": 1}}, "right": {"_count": 1, "out": {"_count": 1}}, "held": {"_count": 1, "high": {"_count": 1}}, "worked": {"_count": 1, "onto": {"_count": 1}}, "floating": {"_count": 1, "in": {"_count": 1}}, "cake": {"_count": 1, "": {"_count": 1}}, "Scrimgeour": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "contains": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 1, "and": {"_count": 1}}, "what": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "caught": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}, "kissing": {"_count": 1, "it": {"_count": 1}}}, "Seekers": {"_count": 11, "job": {"_count": 1, "to": {"_count": 1}}, "get": {"_count": 1, "fouled": {"_count": 1}}, "were": {"_count": 2, "usually": {"_count": 2}}, "are": {"_count": 1, "always": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "team": {"_count": 2, "an": {"_count": 1}, "and": {"_count": 1}}, "arms": {"_count": 1, "still": {"_count": 1}}, "Krum": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "weave": {"_count": 1, "in": {"_count": 1, "and": {"_count": 1}}}, "catches": {"_count": 4, "the": {"_count": 2, "Snitch": {"_count": 1}, "Quaffle": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "yeh": {"_count": 1, "itll": {"_count": 1}}}, "wins": {"_count": 5, "his": {"_count": 1, "team": {"_count": 1}}, "the": {"_count": 1, "House": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "but": {"_count": 1, "Viktor": {"_count": 1}}, "said": {"_count": 1, "Lee": {"_count": 1}}}, "fouled": {"_count": 2, "so": {"_count": 1, "much": {"_count": 1}}, "now": {"_count": 1, "darted": {"_count": 1}}}, "months": {"_count": 102, "they": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 19}, "!": {"_count": 1}, "?": {"_count": 5}}, "later": {"_count": 1, "in": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "since": {"_count": 1, "Justin": {"_count": 1}}, "and": {"_count": 5, "months": {"_count": 3}, "weve": {"_count": 1}, "it": {"_count": 1}}, "telling": {"_count": 2, "me": {"_count": 1}, "everyone": {"_count": 1}}, "now": {"_count": 2, "my": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 1, "only": {"_count": 1}}, "there": {"_count": 1, "only": {"_count": 1}}, "ago": {"_count": 11, "that": {"_count": 1}, "": {"_count": 5}, "clutching": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "years": {"_count": 1}}, "adventure": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 3, "hed": {"_count": 1}, "and": {"_count": 1}, "he": {"_count": 1}}, "will": {"_count": 1, "make": {"_count": 1}}, "developing": {"_count": 1, "those": {"_count": 1}}, "an": {"_count": 1, "event": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "fruitless": {"_count": 1}, "from": {"_count": 1}}, "older": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 1}, "what": {"_count": 1}, "Azkaban": {"_count": 2}, "my": {"_count": 1}}, "to": {"_count": 3, "go": {"_count": 1}, "track": {"_count": 1}, "get": {"_count": 1}}, "persuading": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 6, "hurricanes": {"_count": 1}, "dreaming": {"_count": 1}, "effort": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}, "insanity": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "after": {"_count": 1, "this": {"_count": 1}}, "poor": {"_count": 1, "bloke": {"_count": 1}}, "dream": {"_count": 1, "diary": {"_count": 1}}, "reading": {"_count": 1, "about": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "earlier": {"_count": 1, "than": {"_count": 1}}, "very": {"_count": 1, "seriously": {"_count": 1}}, "without": {"_count": 1, "once": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "worth": {"_count": 2, "of": {"_count": 2}}, "time": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 2, "doubt": {"_count": 1}, "cant": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "however": {"_count": 1, "Albuss": {"_count": 1}}, "preparing": {"_count": 1, "said": {"_count": 1}}, "maybe": {"_count": 1, "even": {"_count": 1}}, "The": {"_count": 1, "muscles": {"_count": 1}}, "he": {"_count": 1, "perused": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "one": {"_count": 1, "summer": {"_count": 1}}}, "substitutes": {"_count": 2, "so": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "magic": {"_count": 1}}}, "understood": {"_count": 88, "what": {"_count": 8, "he": {"_count": 2}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}, "Firenzes": {"_count": 1}, "that": {"_count": 1}, "a": {"_count": 1}, "Xenophilius": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "why": {"_count": 9, "Voldemorts": {"_count": 1}, "Hagrid": {"_count": 1}, "he": {"_count": 1}, "Dumbledore": {"_count": 1}, "Bits": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "Voldemort": {"_count": 1}, "she": {"_count": 1}}, "as": {"_count": 2, "Snape": {"_count": 1}, "he": {"_count": 1}}, "something": {"_count": 2, "": {"_count": 2}}, "Cornelius": {"_count": 1, "that": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 1}, "well": {"_count": 1}}, "me": {"_count": 2, "like": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "single": {"_count": 1}}, "that": {"_count": 5, "it": {"_count": 1}, "he": {"_count": 2}, "even": {"_count": 1}, "Snape": {"_count": 1}}, "Krum": {"_count": 1, "hadnt": {"_count": 1}}, "Bagmans": {"_count": 1, "words": {"_count": 1}}, "him": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "how": {"_count": 1, "they": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "Dudley": {"_count": 1, "was": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "London": {"_count": 1, "to": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 5, "question": {"_count": 1}, "significance": {"_count": 1}, "rest": {"_count": 1}, "precise": {"_count": 1}, "truth": {"_count": 1}}, "it": {"_count": 1, "said": {"_count": 1}}, "now": {"_count": 1, "why": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "every": {"_count": 1, "word": {"_count": 1}}, "Sirius": {"_count": 1, "at": {"_count": 1}}, "exactly": {"_count": 1, "why": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}, "everything": {"_count": 1, "you": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 2, "last": {"_count": 2}}, "to": {"_count": 1, "mean": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "they": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "desire": {"_count": 1}}, "them": {"_count": 1, "because": {"_count": 1}}, "and": {"_count": 1, "yet": {"_count": 1}}, "Wormtail": {"_count": 1, "too": {"_count": 1}}, "Dumbledore": {"_count": 1, "as": {"_count": 1}}, "my": {"_count": 1, "own": {"_count": 1}}, "Helena": {"_count": 1, "Ravenclaws": {"_count": 1}}, "without": {"_count": 1, "having": {"_count": 1}}}, "shutting": {"_count": 10, "it": {"_count": 1, "back": {"_count": 1}}, "the": {"_count": 5, "door": {"_count": 5}}, "his": {"_count": 1, "briefcase": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 1, "out": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}}, "golf": {"_count": 2, "balls": {"_count": 2, "out": {"_count": 1}, "as": {"_count": 1}}}, "Cupll": {"_count": 1, "have": {"_count": 1, "our": {"_count": 1}}}, "trudged": {"_count": 9, "back": {"_count": 2, "up": {"_count": 2}}, "down": {"_count": 2, "the": {"_count": 2}}, "up": {"_count": 3, "the": {"_count": 3}}, "away": {"_count": 1, "out": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}}, "England": {"_count": 8, "if": {"_count": 1, "he": {"_count": 1}}, "before": {"_count": 1, "Hagrid": {"_count": 1}}, "had": {"_count": 1, "got": {"_count": 1}}, "himself": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "notable": {"_count": 1}}}, "evenings": {"_count": 19, "a": {"_count": 2, "week": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "to": {"_count": 4, "observe": {"_count": 1}, "watch": {"_count": 1}, "this": {"_count": 1}, "you": {"_count": 1}}, "and": {"_count": 1, "whole": {"_count": 1}}, "task": {"_count": 1, "and": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "detention": {"_count": 1, "he": {"_count": 1}}, "eating": {"_count": 1, "triple": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "when": {"_count": 1, "Ron": {"_count": 1}}, "in": {"_count": 1, "near": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}}, "mastered": {"_count": 12, "the": {"_count": 7, "basics": {"_count": 1}, "use": {"_count": 1}, "Impediment": {"_count": 2}, "impulse": {"_count": 1}, "charm": {"_count": 1}, "knack": {"_count": 1}}, "Summoning": {"_count": 1, "Charms": {"_count": 1}}, "how": {"_count": 1, "she": {"_count": 1}}, "Legilimency": {"_count": 1, "are": {"_count": 1}}, "his": {"_count": 2, "anger": {"_count": 1}, "own": {"_count": 1}}}, "basics": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "first": {"_count": 1, "there": {"_count": 1}}}, "baking": {"_count": 2, "pumpkin": {"_count": 1, "wafting": {"_count": 1}}, "salmon": {"_count": 1, "wafted": {"_count": 1}}}, "wafting": {"_count": 8, "through": {"_count": 1, "the": {"_count": 1}}, "thick": {"_count": 1, "smoke": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 3}}, "its": {"_count": 1, "smell": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "about": {"_count": 1, "handing": {"_count": 1}}}, "announced": {"_count": 25, "in": {"_count": 1, "Charms": {"_count": 1}}, "Hagrids": {"_count": 1, "return": {"_count": 1}}, "that": {"_count": 5, "coming": {"_count": 1}, "he": {"_count": 3}, "there": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 5, "whole": {"_count": 1}, "arrival": {"_count": 2}, "imminent": {"_count": 1}, "date": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Hermiones": {"_count": 2, "reappearance": {"_count": 1}, "arrival": {"_count": 1}}, "his": {"_count": 1, "version": {"_count": 1}}, "brightly": {"_count": 1, "to": {"_count": 1}}, "late": {"_count": 1, "last": {"_count": 1}}, "Fudges": {"_count": 1, "arrival": {"_count": 1}}, "as": {"_count": 1, "Mrs": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}, "yesterday": {"_count": 1, "": {"_count": 1}}}, "objects": {"_count": 87, "fly": {"_count": 3, "something": {"_count": 1}, "across": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 1, "sale": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "and": {"_count": 3, "file": {"_count": 1}, "coins": {"_count": 1}, "Malfoy": {"_count": 1}}, "of": {"_count": 2, "curiosity": {"_count": 1}, "a": {"_count": 1}}, "zoomed": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 10, "are": {"_count": 1}, "Harry": {"_count": 1}, "were": {"_count": 2}, "it": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "resembled": {"_count": 1}, "made": {"_count": 1}, "easily": {"_count": 1}}, "are": {"_count": 2, "Portkeys": {"_count": 1}, "in": {"_count": 1}}, "forbidden": {"_count": 1, "inside": {"_count": 1}}, "zoom": {"_count": 1, "across": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "books": {"_count": 1, "quills": {"_count": 1}}, "kept": {"_count": 1, "flying": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "a": {"_count": 2, "selection": {"_count": 1}, "yoyo": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "placed": {"_count": 2, "them": {"_count": 1}, "in": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "leapt": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 2, "display": {"_count": 1}, "which": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "Hufflepuff": {"_count": 1}}, "the": {"_count": 1, "argument": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "looking": {"_count": 1, "more": {"_count": 1}}, "with": {"_count": 2, "unusual": {"_count": 1}, "a": {"_count": 1}}, "meant": {"_count": 1, "to": {"_count": 1}}, "easy": {"_count": 1, "to": {"_count": 1}}, "worthy": {"_count": 1, "of": {"_count": 1}}, "owned": {"_count": 1, "by": {"_count": 1}}, "hidden": {"_count": 2, "by": {"_count": 2}}, "were": {"_count": 1, "suspended": {"_count": 1}}, "longer": {"_count": 1, "than": {"_count": 1}}, "Scrimgeour": {"_count": 1, "had": {"_count": 1}}, "rolled": {"_count": 1, "around": {"_count": 1}}, "left": {"_count": 1, "without": {"_count": 1}}, "scattered": {"_count": 1, "over": {"_count": 1}}, "they": {"_count": 1, "wouldve": {"_count": 1}}, "to": {"_count": 2, "take": {"_count": 1}, "which": {"_count": 1}}, "like": {"_count": 1, "ear": {"_count": 1}}, "or": {"_count": 2, "Hallows": {"_count": 2}}, "these": {"_count": 1, "Hallows": {"_count": 1}}, "passing": {"_count": 2, "from": {"_count": 1}, "them": {"_count": 1}}, "surrounding": {"_count": 1, "them": {"_count": 1}}, "which": {"_count": 1, "also": {"_count": 1}}, "go": {"_count": 2, "": {"_count": 2}}, "Ron": {"_count": 1, "with": {"_count": 1}}, "clutched": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "recognized": {"_count": 1}}, "crashing": {"_count": 1, "to": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "unburned": {"_count": 1, "by": {"_count": 1}}, "would": {"_count": 1, "then": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}}, "dying": {"_count": 61, "to": {"_count": 5, "try": {"_count": 1}, "hear": {"_count": 1}, "tell": {"_count": 1}, "see": {"_count": 1}, "have": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "everyone": {"_count": 1}}, "": {"_count": 12, "!": {"_count": 3}, "?": {"_count": 2}, ".": {"_count": 7}}, "a": {"_count": 1, "bit": {"_count": 1}}, "candles": {"_count": 1, "and": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "wasnt": {"_count": 1, "I": {"_count": 1}}, "parents": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "fire": {"_count": 1, "still": {"_count": 1}}, "sun": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "anyway": {"_count": 1}}, "day": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Snape": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "person": {"_count": 3, "entering": {"_count": 1}, "leaving": {"_count": 1}, "": {"_count": 1}}, "begonias": {"_count": 2, "he": {"_count": 1}, "so": {"_count": 1}}, "except": {"_count": 1, "your": {"_count": 1}}, "were": {"_count": 1, "talking": {"_count": 1}}, "every": {"_count": 1, "part": {"_count": 1}}, "mysteriously": {"_count": 1, "and": {"_count": 1}}, "wish": {"_count": 1, "He": {"_count": 1}}, "embers": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 1, "called": {"_count": 1}}, "of": {"_count": 2, "thirst": {"_count": 1}, "spattergroit": {"_count": 1}}, "and": {"_count": 2, "hes": {"_count": 1}, "he": {"_count": 1}}, "or": {"_count": 2, "about": {"_count": 1}, "already": {"_count": 1}}, "somehow": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 2, "was": {"_count": 1}, "think": {"_count": 1}}, "man": {"_count": 1, "He": {"_count": 1}}, "now": {"_count": 1, "when": {"_count": 1}}, "chose": {"_count": 1, "it": {"_count": 1}}, "when": {"_count": 1, "Snape": {"_count": 1}}}, "zoom": {"_count": 8, "around": {"_count": 1, "the": {"_count": 1}}, "closely": {"_count": 1, "together": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "straight": {"_count": 1, "into": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "farther": {"_count": 1, "and": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}}, "angrier": {"_count": 12, "about": {"_count": 1, "this": {"_count": 1}}, "than": {"_count": 7, "Ive": {"_count": 1}, "Harry": {"_count": 3}, "he": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "though": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 1, "Dumbledore": {"_count": 1}}, "with": {"_count": 1, "Ron": {"_count": 1}}}, "spoken": {"_count": 44, "to": {"_count": 15, "either": {"_count": 1}, "someone": {"_count": 1}, "": {"_count": 1}, "them": {"_count": 1}, "like": {"_count": 1}, "him": {"_count": 4}, "the": {"_count": 2}, "remain": {"_count": 1}, "her": {"_count": 1}, "you": {"_count": 1}, "Lupin": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "clearly": {"_count": 2, "Hell": {"_count": 1}, "enough": {"_count": 1}}, "in": {"_count": 4, "front": {"_count": 1}, "his": {"_count": 2}, "public": {"_count": 1}}, "and": {"_count": 1, "met": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "turned": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 1, "green": {"_count": 1}}, "for": {"_count": 2, "ten": {"_count": 1}, "one": {"_count": 1}}, "them": {"_count": 1, "yet": {"_count": 1}}, "with": {"_count": 1, "almost": {"_count": 1}}, "aloud": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "Snapes": {"_count": 1, "name": {"_count": 1}}, "without": {"_count": 1, "thinking": {"_count": 1}}, "about": {"_count": 2, "this": {"_count": 1}, "it": {"_count": 1}}, "She": {"_count": 1, "sat": {"_count": 1}}}, "movement": {"_count": 74, "weve": {"_count": 1, "been": {"_count": 1}}, "ahead": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}, "close": {"_count": 3, "your": {"_count": 1}, "by": {"_count": 2}}, "behind": {"_count": 5, "them": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 2}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "from": {"_count": 2, "behind": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 2, "either": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 2, "almost": {"_count": 1}, "nearly": {"_count": 1}}, "they": {"_count": 2, "lowered": {"_count": 1}, "retreated": {"_count": 1}}, "There": {"_count": 1, "goes": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "magnified": {"_count": 1}}, "Hagrid": {"_count": 1, "seized": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "was": {"_count": 2, "now": {"_count": 1}, "not": {"_count": 1}}, "but": {"_count": 2, "as": {"_count": 1}, "Sirius": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "and": {"_count": 2, "activity": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 1, "take": {"_count": 1}}, "somewhere": {"_count": 1, "between": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "required": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 3}}, "he": {"_count": 1, "had": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 2, "snake": {"_count": 1}, "stars": {"_count": 1}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "he": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 1, "brushing": {"_count": 1}}, "because": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 1, "reacted": {"_count": 1}}, "outside": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 2, "clinking": {"_count": 1}, "his": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "Crabbe": {"_count": 1, "pointed": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "smashed": {"_count": 1}}, "or": {"_count": 1, "word": {"_count": 1}}}, "practicing": {"_count": 37, "": {"_count": 4, "!": {"_count": 2}, "?": {"_count": 1}, ".": {"_count": 1}}, "the": {"_count": 3, "LegLocker": {"_count": 1}, "opposite": {"_count": 1}, "altogether": {"_count": 1}}, "wand": {"_count": 1, "movements": {"_count": 1}}, "Quidditch": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 1, "those": {"_count": 1}}, "relaxing": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 1, "useful": {"_count": 1}}, "for": {"_count": 3, "your": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "until": {"_count": 1, "past": {"_count": 1}}, "inappropriate": {"_count": 1, "charms": {"_count": 1}}, "it": {"_count": 1, "involved": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "hexes": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "them": {"_count": 1, "before": {"_count": 1}}, "though": {"_count": 1, "Ron": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "her": {"_count": 1, "Silencing": {"_count": 1}}, "a": {"_count": 1, "minute": {"_count": 1}}, "Stunning": {"_count": 2, "said": {"_count": 1}, "again": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "basic": {"_count": 1, "locomotion": {"_count": 1}}, "incantations": {"_count": 1, "under": {"_count": 1}}, "nonverbal": {"_count": 2, "spells": {"_count": 2}}, "that": {"_count": 1, "Aguamenti": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "perched": {"_count": 39, "on": {"_count": 22, "top": {"_count": 9}, "the": {"_count": 8}, "his": {"_count": 1}, "a": {"_count": 3}, "Gregorovitchs": {"_count": 1}}, "the": {"_count": 1, "chocolate": {"_count": 1}}, "jauntily": {"_count": 1, "on": {"_count": 1}}, "upon": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "herself": {"_count": 2, "nervously": {"_count": 1}, "on": {"_count": 1}}, "unwisely": {"_count": 1, "on": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "precariously": {"_count": 2, "on": {"_count": 2}}, "lopsidedly": {"_count": 1, "on": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "awkwardly": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 1, "dusty": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}}, "Swish": {"_count": 1, "and": {"_count": 1, "flick": {"_count": 1}}}, "Baruffio": {"_count": 1, "who": {"_count": 1, "said": {"_count": 1}}}, "\u2018s": {"_count": 1, "instead": {"_count": 1, "of": {"_count": 1}}}, "\u2018f": {"_count": 1, "and": {"_count": 1, "found": {"_count": 1}}}, "buffalo": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "swished": {"_count": 4, "and": {"_count": 1, "flicked": {"_count": 1}}, "his": {"_count": 2, "long": {"_count": 2}}, "shut": {"_count": 1, "again": {"_count": 1}}}, "sending": {"_count": 57, "skyward": {"_count": 1, "just": {"_count": 1}}, "her": {"_count": 3, "to": {"_count": 2}, "cushion": {"_count": 1}}, "a": {"_count": 7, "lot": {"_count": 1}, "few": {"_count": 1}, "wave": {"_count": 1}, "cushion": {"_count": 1}, "candle": {"_count": 1}, "dozen": {"_count": 1}, "neat": {"_count": 1}}, "him": {"_count": 4, "lurching": {"_count": 1}, "reeling": {"_count": 1}, "face": {"_count": 1}, "flying": {"_count": 1}}, "whats": {"_count": 1, "left": {"_count": 1}}, "feathers": {"_count": 1, "everywhere": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "us": {"_count": 1, "in": {"_count": 1}}, "two": {"_count": 1, "Ministry": {"_count": 1}}, "violet": {"_count": 1, "sparks": {"_count": 1}}, "Howlers": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "me": {"_count": 4, "to": {"_count": 1}, "hourly": {"_count": 1}, "pineapple": {"_count": 1}, "a": {"_count": 1}}, "water": {"_count": 1, "everywhere": {"_count": 1}}, "Hedwig": {"_count": 1, "down": {"_count": 1}}, "instructions": {"_count": 1, "in": {"_count": 1}}, "much": {"_count": 1, "heavier": {"_count": 1}}, "Colin": {"_count": 1, "and": {"_count": 1}}, "oxygen": {"_count": 1, "back": {"_count": 1}}, "sparks": {"_count": 1, "at": {"_count": 1}}, "more": {"_count": 1, "jets": {"_count": 1}}, "you": {"_count": 3, "a": {"_count": 1}, "back": {"_count": 1}, "There": {"_count": 1}}, "regular": {"_count": 1, "food": {"_count": 1}}, "in": {"_count": 2, "regular": {"_count": 1}, "": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "straight": {"_count": 1}}, "daily": {"_count": 1, "owls": {"_count": 1}}, "its": {"_count": 1, "diamond": {"_count": 1}}, "dismembers": {"_count": 1, "after": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "this": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 1, "letter": {"_count": 1}}, "Justin": {"_count": 1, "FinchFletchleys": {"_count": 1}}, "those": {"_count": 1, "nifflers": {"_count": 1}}, "word": {"_count": 1, "to": {"_count": 1}}, "letters": {"_count": 1, "to": {"_count": 1}}, "moldy": {"_count": 1, "pots": {"_count": 1}}, "shafts": {"_count": 1, "of": {"_count": 1}}, "curses": {"_count": 1, "flying": {"_count": 1}}, "books": {"_count": 1, "flying": {"_count": 1}}, "that": {"_count": 1, "snake": {"_count": 1}}}, "skyward": {"_count": 6, "just": {"_count": 1, "lay": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "flourish": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "desktop": {"_count": 7, "": {"_count": 4, ".": {"_count": 4}}, "avoiding": {"_count": 1, "his": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 1, "in": {"_count": 1}}}, "impatient": {"_count": 15, "that": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "start": {"_count": 1}}, "tuh": {"_count": 1, "from": {"_count": 1}}, "hand": {"_count": 1, "again": {"_count": 1}}, "noise": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "expressions": {"_count": 1, "on": {"_count": 1}}, "disbelief": {"_count": 1, "in": {"_count": 1}}, "dig": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "slightly": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "now": {"_count": 1, "": {"_count": 1}}}, "Wingardium": {"_count": 6, "Leviosal": {"_count": 4, "he": {"_count": 1}, "The": {"_count": 3}}, "LeviosaV": {"_count": 1, "Their": {"_count": 1}}, "Levioscd": {"_count": 1, "and": {"_count": 1}}}, "Leviosal": {"_count": 4, "he": {"_count": 1, "shouted": {"_count": 1}}, "The": {"_count": 3, "club": {"_count": 1}, "sidecar": {"_count": 1}, "twig": {"_count": 1}}}, "windmill": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Winggardium": {"_count": 1, "Leviosa": {"_count": 1, "make": {"_count": 1}}}, "Leviosa": {"_count": 1, "make": {"_count": 1, "the": {"_count": 1}}}, "\u2018gar": {"_count": 1, "nice": {"_count": 1, "and": {"_count": 1}}}, "sleeves": {"_count": 21, "of": {"_count": 7, "her": {"_count": 2}, "his": {"_count": 4}, "jumpers": {"_count": 1}}, "were": {"_count": 1, "rolled": {"_count": 1}}, "brandished": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "five": {"_count": 1, "times": {"_count": 1}}, "rolled": {"_count": 1, "up": {"_count": 1}}, "who": {"_count": 1, "cannot": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}}, "gown": {"_count": 27, "flicked": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 7, "a": {"_count": 1}, "carrying": {"_count": 1}, "hair": {"_count": 1}, "slid": {"_count": 1}, "pushed": {"_count": 1}, "waved": {"_count": 1}, "matching": {"_count": 1}}, "theyre": {"_count": 1, "kids": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 1, "lavender": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "tried": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "her": {"_count": 1, "glasses": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "staring": {"_count": 1}}, "embroidered": {"_count": 1, "with": {"_count": 1}}, "pale": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "reveal": {"_count": 1}}, "rustled": {"_count": 1, "over": {"_count": 1}}, "stood": {"_count": 1, "with": {"_count": 1}}}, "LeviosaV": {"_count": 1, "Their": {"_count": 1, "feather": {"_count": 1}}}, "hovered": {"_count": 11, "about": {"_count": 2, "four": {"_count": 1}, "a": {"_count": 1}}, "awkwardly": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 1, "mist": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 1}, "Snape": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "uncertainly": {"_count": 1, "for": {"_count": 1}}, "excitedly": {"_count": 1, "beside": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}}, "glimpse": {"_count": 36, "of": {"_count": 34, "her": {"_count": 3}, "Uncle": {"_count": 1}, "it": {"_count": 1}, "Bole": {"_count": 1}, "Snapes": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 3}, "Dudley": {"_count": 1}, "the": {"_count": 6}, "Cho": {"_count": 2}, "an": {"_count": 1}, "eight": {"_count": 1}, "what": {"_count": 1}, "Hogwarts": {"_count": 1}, "Hagrid": {"_count": 1}, "me": {"_count": 1}, "whatever": {"_count": 1}, "Nevilles": {"_count": 1}, "Voldemorts": {"_count": 1}, "number": {"_count": 1}, "his": {"_count": 1}, "movement": {"_count": 1}, "Harry": {"_count": 1}, "Bill": {"_count": 1}}, "me": {"_count": 1, "soon": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "startled": {"_count": 48, "to": {"_count": 3, "see": {"_count": 2}, "discover": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "Dumbledores": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "this": {"_count": 1}}, "look": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 2, "said": {"_count": 1}, "Hagrid": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "movement": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 3, "young": {"_count": 1}, "fox": {"_count": 1}, "idea": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "that": {"_count": 1, "Mrs": {"_count": 1}}, "class": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "stares": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 1, "echoed": {"_count": 1}}, "looks": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "eyes": {"_count": 1, "looked": {"_count": 1}}, "hands": {"_count": 1, "a": {"_count": 1}}, "remained": {"_count": 1, "where": {"_count": 1}}}, "uncomfortable": {"_count": 42, "": {"_count": 11, ".": {"_count": 11}}, "as": {"_count": 2, "using": {"_count": 1}, "though": {"_count": 1}}, "looks": {"_count": 1, "": {"_count": 1}}, "owing": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "spin": {"_count": 1}, "have": {"_count": 1}}, "feeling": {"_count": 3, "it": {"_count": 1}, "that": {"_count": 2}}, "clenched": {"_count": 1, "as": {"_count": 1}}, "determined": {"_count": 1, "not": {"_count": 1}}, "particularly": {"_count": 1, "when": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 2}}, "sort": {"_count": 1, "of": {"_count": 1}}, "encounter": {"_count": 1, "he": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "things": {"_count": 1, "Luna": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "and": {"_count": 3, "began": {"_count": 1}, "he": {"_count": 1}, "dirtyhaired": {"_count": 1}}, "moment": {"_count": 1, "made": {"_count": 1}}, "truths": {"_count": 1, "he": {"_count": 1}}, "enough": {"_count": 1, "these": {"_count": 1}}, "experience": {"_count": 1, "that": {"_count": 1}}, "silence": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "these": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "Dean": {"_count": 1, "shrugged": {"_count": 1}}}, "feast": {"_count": 69, "Harry": {"_count": 1, "and": {"_count": 1}}, "appeared": {"_count": 1, "suddenly": {"_count": 1}}, "in": {"_count": 3, "their": {"_count": 1}, "the": {"_count": 1}, "two": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "alone": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 17}, "?": {"_count": 5}}, "Minerva": {"_count": 1, "Ive": {"_count": 1}}, "was": {"_count": 3, "over": {"_count": 1}, "echoing": {"_count": 1}, "always": {"_count": 1}}, "the": {"_count": 2, "Great": {"_count": 1}, "hall": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "afterward": {"_count": 1, "": {"_count": 1}}, "Might": {"_count": 1, "I": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "my": {"_count": 1}, "more": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "begin": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}, "finished": {"_count": 1, "with": {"_count": 1}}, "took": {"_count": 1, "place": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "well": {"_count": 1, "its": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "But": {"_count": 1, "nobody": {"_count": 1}}, "so": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "us": {"_count": 1}}, "I": {"_count": 1, "beg": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 1, "about": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}, "Youve": {"_count": 1, "seen": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}}, "overheard": {"_count": 44, "Parvati": {"_count": 1, "Patil": {"_count": 1}}, "him": {"_count": 3, "telling": {"_count": 1}, "gloating": {"_count": 1}, "talking": {"_count": 1}}, "because": {"_count": 1, "Percy": {"_count": 1}}, "about": {"_count": 1, "Black": {"_count": 1}}, "Malfoy": {"_count": 2, "was": {"_count": 1}, "saying": {"_count": 1}}, "the": {"_count": 2, "conversation": {"_count": 1}, "prophecy": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "during": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "in": {"_count": 1, "a": {"_count": 1}}, "between": {"_count": 5, "Madame": {"_count": 1}, "him": {"_count": 2}, "Malfoy": {"_count": 2}}, "said": {"_count": 1, "Krum": {"_count": 1}}, "what": {"_count": 1, "they": {"_count": 1}}, "Mum": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 1, "talking": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "very": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "snatches": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "secondyear": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "than": {"_count": 1, "in": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "you": {"_count": 1, "being": {"_count": 1}}, "em": {"_count": 1, "talking": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "tired": {"_count": 1, "of": {"_count": 1}}}, "awkward": {"_count": 25, "at": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "pause": {"_count": 2, "": {"_count": 1}, "followed": {"_count": 1}}, "questions": {"_count": 6, "would": {"_count": 1}, "": {"_count": 3}, "theyll": {"_count": 1}, "with": {"_count": 1}}, "moment": {"_count": 1, "because": {"_count": 1}}, "moving": {"_count": 1, "under": {"_count": 1}}, "silence": {"_count": 2, "fell": {"_count": 1}, "in": {"_count": 1}}, "or": {"_count": 1, "embarrassed": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 1, "embarrassed": {"_count": 1}}, "angle": {"_count": 2, "against": {"_count": 1}, "and": {"_count": 1}}}, "decorations": {"_count": 15, "put": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "was": {"_count": 1, "waving": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "of": {"_count": 1, "scarlet": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "went": {"_count": 1, "up": {"_count": 1}}, "to": {"_count": 1, "Roger": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "were": {"_count": 1, "missing": {"_count": 1}}, "permitted": {"_count": 1, "on": {"_count": 1}}, "twinkling": {"_count": 1, "in": {"_count": 1}}}, "thousand": {"_count": 35, "live": {"_count": 1, "bats": {"_count": 1}}, "more": {"_count": 3, "swooped": {"_count": 1}, "black": {"_count": 1}, "beams": {"_count": 1}}, "fingernails": {"_count": 1, "scraping": {"_count": 1}}, "years": {"_count": 3, "ago": {"_count": 2}, "or": {"_count": 1}}, "tiny": {"_count": 1, "wisps": {"_count": 1}}, "pieces": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 3, "turn": {"_count": 1}, "into": {"_count": 1}, "gasped": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "Galleons": {"_count": 10, "personal": {"_count": 1}, "prize": {"_count": 2}, "": {"_count": 2}, "between": {"_count": 1}, "in": {"_count": 2}, "said": {"_count": 1}, "right": {"_count": 1}}, "pages": {"_count": 1, "does": {"_count": 1}}, "slimy": {"_count": 1, "pieces": {"_count": 1}}, "terrible": {"_count": 1, "crimes": {"_count": 1}}, "disguises": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 2, "twelve": {"_count": 1}, "fiftysix": {"_count": 1}}, "flecks": {"_count": 1, "of": {"_count": 1}}, "feet": {"_count": 1, "said": {"_count": 1}}, "times": {"_count": 1, "in": {"_count": 1}}, "banned": {"_count": 1, "experiments": {"_count": 1}}}, "bats": {"_count": 15, "fluttered": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "Hagrids": {"_count": 1, "vast": {"_count": 1}}, "to": {"_count": 1, "repel": {"_count": 1}}, "and": {"_count": 2, "many": {"_count": 1}, "a": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "was": {"_count": 1, "fluttering": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "ears": {"_count": 1, "and": {"_count": 1}}, "fluttering": {"_count": 1, "high": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}}, "pumpkins": {"_count": 10, "stutter": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "swelled": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "a": {"_count": 1, "cloud": {"_count": 1}}, "leered": {"_count": 1, "from": {"_count": 1}}, "were": {"_count": 1, "extinguished": {"_count": 1}}, "an": {"_count": 1, "eerie": {"_count": 1}}, "waddling": {"_count": 1, "across": {"_count": 1}}}, "stutter": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "helping": {"_count": 60, "himself": {"_count": 15, "to": {"_count": 15}}, "him": {"_count": 7, "feed": {"_count": 1}, "prepare": {"_count": 1}, "he": {"_count": 1}, "out": {"_count": 1}, "when": {"_count": 1}, "walk": {"_count": 1}, "save": {"_count": 1}}, "Professor": {"_count": 1, "Lockhart": {"_count": 1}}, "matters": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "instructing": {"_count": 1}}, "Black": {"_count": 2, "get": {"_count": 1}, "why": {"_count": 1}}, "Sirius": {"_count": 5, "get": {"_count": 1}, "said": {"_count": 1}, "do": {"_count": 1}, "to": {"_count": 1}, "escape": {"_count": 1}}, "your": {"_count": 1, "old": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 4, "prepare": {"_count": 1}, "to": {"_count": 1}, "Potter": {"_count": 2}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "herself": {"_count": 3, "to": {"_count": 3}}, "of": {"_count": 2, "eggs": {"_count": 1}, "rubbery": {"_count": 1}}, "Neville": {"_count": 1, "out": {"_count": 1}}, "us": {"_count": 1, "police": {"_count": 1}}, "Gryffindor": {"_count": 1, "scrape": {"_count": 1}}, "customers": {"_count": 1, "": {"_count": 1}}, "hone": {"_count": 1, "young": {"_count": 1}}, "too": {"_count": 1, "Harry": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "Muggleborns": {"_count": 1, "escape": {"_count": 1}}, "clear": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "dragon": {"_count": 1}}}, "potato": {"_count": 15, "when": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "on": {"_count": 2, "legs": {"_count": 1}, "the": {"_count": 1}}, "peelings": {"_count": 1, "": {"_count": 1}}, "peeler": {"_count": 1, "she": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 2, "added": {"_count": 1}, "rather": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "sprinting": {"_count": 25, "into": {"_count": 2, "the": {"_count": 2}}, "across": {"_count": 2, "the": {"_count": 2}}, "to": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 3, "the": {"_count": 2}, "into": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 3, "toward": {"_count": 1}, "into": {"_count": 1}, "down": {"_count": 1}}, "up": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "at": {"_count": 1, "Malfoy": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 1, "had": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}}, "askew": {"_count": 15, "and": {"_count": 2, "terror": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "as": {"_count": 1, "he": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "trickle": {"_count": 1}, "glass": {"_count": 1}}, "blood": {"_count": 1, "running": {"_count": 1}}, "standing": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 1, "mouth": {"_count": 1}}, "Fred": {"_count": 1, "right": {"_count": 1}}}, "terror": {"_count": 53, "on": {"_count": 5, "his": {"_count": 4}, "Hagrid": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "that": {"_count": 3, "he": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 1}}, "a": {"_count": 1, "golfballsized": {"_count": 1}}, "of": {"_count": 2, "werewolf": {"_count": 1}, "anyone": {"_count": 1}}, "and": {"_count": 7, "suspicion": {"_count": 1}, "Seamus": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 2}, "the": {"_count": 1}, "elation": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "staring": {"_count": 1, "up": {"_count": 1}}, "filled": {"_count": 1, "Harry": {"_count": 1}}, "upon": {"_count": 2, "his": {"_count": 1}, "four": {"_count": 1}}, "in": {"_count": 3, "which": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}}, "it": {"_count": 1, "inspired": {"_count": 1}}, "the": {"_count": 1, "dark": {"_count": 1}}, "relief": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "legendary": {"_count": 1}}, "as": {"_count": 1, "hooves": {"_count": 1}}, "swept": {"_count": 1, "over": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "threw": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 2}, "all": {"_count": 1}}, "to": {"_count": 2, "reveal": {"_count": 1}, "Britain": {"_count": 1}}, "replacing": {"_count": 1, "it": {"_count": 1}}, "than": {"_count": 1, "actually": {"_count": 1}}, "mmy": {"_count": 1, "Lord": {"_count": 1}}, "rent": {"_count": 1, "the": {"_count": 1}}}, "slumped": {"_count": 37, "against": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "along": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 3, "on": {"_count": 1}, "onto": {"_count": 1}, "into": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 3}, "her": {"_count": 1}, "an": {"_count": 1}}, "unconscious": {"_count": 1, "onto": {"_count": 1}}, "panting": {"_count": 1, "against": {"_count": 1}}, "back": {"_count": 6, "onto": {"_count": 2}, "into": {"_count": 1}, "against": {"_count": 1}, "in": {"_count": 1}, "on": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "sideways": {"_count": 2, "and": {"_count": 1}, "unconscious": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "forward": {"_count": 2, "onto": {"_count": 1}, "in": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "against": {"_count": 1}}, "at": {"_count": 1, "an": {"_count": 1}}, "dozily": {"_count": 1, "in": {"_count": 1}}, "hopelessly": {"_count": 1, "on": {"_count": 1}}}, "Troll": {"_count": 5, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 2, "Fred": {"_count": 1}, "George": {"_count": 1}}, "T": {"_count": 1, "Harry": {"_count": 1}}}, "uproar": {"_count": 12, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "his": {"_count": 1}}, "Percy": {"_count": 1, "told": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "": {"_count": 1}}, "why": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 1, "shuddered": {"_count": 1}}, "under": {"_count": 1, "cover": {"_count": 1}}}, "firecrackers": {"_count": 3, "exploding": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "exploding": {"_count": 10, "from": {"_count": 1, "the": {"_count": 1}}, "bonbons": {"_count": 1, "": {"_count": 1}}, "dustbins": {"_count": 1, "worth": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "point": {"_count": 1, "again": {"_count": 1}}, "like": {"_count": 1, "mines": {"_count": 1}}, "letter": {"_count": 1, "but": {"_count": 1}}, "with": {"_count": 1, "anger": {"_count": 1}}, "the": {"_count": 1, "wardrobe": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "Prefects": {"_count": 4, "he": {"_count": 1, "rumbled": {"_count": 1}}, "Who": {"_count": 1, "Gained": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "were": {"_count": 1, "shouting": {"_count": 1}}}, "rumbled": {"_count": 9, "lead": {"_count": 1, "your": {"_count": 1}}, "off": {"_count": 1, "into": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "around": {"_count": 1, "Grimmauld": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "because": {"_count": 1}}, "by": {"_count": 1, "and": {"_count": 1}}, "how": {"_count": 1, "we": {"_count": 1}}, "into": {"_count": 1, "speech": {"_count": 1}}}, "dormitories": {"_count": 39, "immediately": {"_count": 1, "": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "said": {"_count": 2, "Percy": {"_count": 1}, "Harry": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "and": {"_count": 5, "set": {"_count": 1}, "out": {"_count": 1}, "assemble": {"_count": 1}, "vanished": {"_count": 1}, "well": {"_count": 1}}, "the": {"_count": 2, "crowd": {"_count": 1}, "Hufflepuffs": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "early": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 1, "cleared": {"_count": 1}}, "but": {"_count": 1, "did": {"_count": 1}}, "above": {"_count": 2, "": {"_count": 2}}, "behind": {"_count": 1, "him": {"_count": 1}}, "wearing": {"_count": 1, "scarf": {"_count": 1}}, "below": {"_count": 1, "them": {"_count": 1}}, "banging": {"_count": 1, "the": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "had": {"_count": 1, "closed": {"_count": 1}}, "Lunas": {"_count": 1, "spell": {"_count": 1}}}, "immediately": {"_count": 121, "": {"_count": 32, "!": {"_count": 2}, ".": {"_count": 28}, "?": {"_count": 2}}, "by": {"_count": 7, "Angelina": {"_count": 1}, "the": {"_count": 4}, "forked": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 1, "fire": {"_count": 1}}, "pulling": {"_count": 1, "from": {"_count": 1}}, "swallowed": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "heard": {"_count": 1}}, "where": {"_count": 2, "he": {"_count": 2}}, "stood": {"_count": 1, "up": {"_count": 1}}, "began": {"_count": 3, "to": {"_count": 3}}, "become": {"_count": 1, "whatever": {"_count": 1}}, "he": {"_count": 2, "added": {"_count": 1}, "was": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "there": {"_count": 1}, "their": {"_count": 1}}, "who": {"_count": 1, "they": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "watching": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 1, "Levski": {"_count": 1}}, "stampeded": {"_count": 1, "by": {"_count": 1}}, "explained": {"_count": 1, "": {"_count": 1}}, "afterward": {"_count": 1, "but": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "PEEVES": {"_count": 1, "": {"_count": 1}}, "distinguishable": {"_count": 1, "from": {"_count": 1}}, "nothing": {"_count": 1, "could": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "dodged": {"_count": 1}, "told": {"_count": 1}}, "strangled": {"_count": 1, "by": {"_count": 1}}, "sending": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "as": {"_count": 2, "all": {"_count": 1}, "Nevilles": {"_count": 1}}, "embarked": {"_count": 1, "on": {"_count": 1}}, "raised": {"_count": 1, "their": {"_count": 1}}, "fell": {"_count": 1, "upon": {"_count": 1}}, "to": {"_count": 3, "his": {"_count": 1}, "Magorian": {"_count": 1}, "Mr": {"_count": 1}}, "resolved": {"_count": 1, "to": {"_count": 1}}, "veered": {"_count": 1, "left": {"_count": 1}}, "apparent": {"_count": 1, "on": {"_count": 1}}, "cease": {"_count": 1, "": {"_count": 1}}, "spotted": {"_count": 1, "one": {"_count": 1}}, "or": {"_count": 1, "risk": {"_count": 1}}, "felt": {"_count": 1, "rather": {"_count": 1}}, "register": {"_count": 2, "what": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Ravenclaw": {"_count": 1, "Captain": {"_count": 1}}, "Yeah": {"_count": 1, "well": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 2, "golden": {"_count": 1}, "night": {"_count": 1}}, "opposite": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 2, "Harry": {"_count": 1}, "Harrys": {"_count": 1}}, "cleared": {"_count": 1, "to": {"_count": 1}}, "exuded": {"_count": 1, "so": {"_count": 1}}, "turned": {"_count": 1, "exactly": {"_count": 1}}, "started": {"_count": 1, "fussing": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 1, "Ancient": {"_count": 1}}, "open": {"_count": 1, "his": {"_count": 1}}, "glanced": {"_count": 1, "over": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "we": {"_count": 1, "might": {"_count": 1}}, "kill": {"_count": 1, "the": {"_count": 1}}, "recognized": {"_count": 1, "the": {"_count": 1}}, "respond": {"_count": 1, "": {"_count": 1}}, "silent": {"_count": 1, "and": {"_count": 1}}, "checked": {"_count": 1, "it": {"_count": 1}}, "sure": {"_count": 1, "why": {"_count": 1}}, "noticed": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 1, "and": {"_count": 1}}, "capitalizing": {"_count": 1, "on": {"_count": 1}}}, "element": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "surprise": {"_count": 1}}, "upholding": {"_count": 1, "the": {"_count": 1}}}, "Stay": {"_count": 22, "close": {"_count": 4, "behind": {"_count": 1}, "to": {"_count": 3}}, "there": {"_count": 3, "": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "stilll": {"_count": 1, "grunted": {"_count": 1}}, "where": {"_count": 5, "you": {"_count": 5}}, "still": {"_count": 1, "OUCH": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "Fang": {"_count": 1, "": {"_count": 1}}, "calm": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "groups": {"_count": 20, "of": {"_count": 7, "people": {"_count": 1}, "giggling": {"_count": 1}, "gossiping": {"_count": 1}, "students": {"_count": 1}, "ten": {"_count": 1}, "girls": {"_count": 1}, "fighters": {"_count": 1}}, "Neville": {"_count": 1, "you": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "today": {"_count": 1, "Harry": {"_count": 1}}, "turn": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "homework": {"_count": 1}, "theyre": {"_count": 1}}, "being": {"_count": 1, "allowed": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "moving": {"_count": 1, "intently": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "arms": {"_count": 1}}}, "directions": {"_count": 34, "": {"_count": 12, ".": {"_count": 12}}, "to": {"_count": 2, "the": {"_count": 1}, "station": {"_count": 1}}, "but": {"_count": 1, "none": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 4, "turned": {"_count": 1}, "shot": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "so": {"_count": 2, "blindingly": {"_count": 1}, "that": {"_count": 1}}, "taking": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "heat": {"_count": 1}}, "missed": {"_count": 1, "spells": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "narrowly": {"_count": 1, "missing": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "had": {"_count": 1}}, "for": {"_count": 1, "what": {"_count": 1}}, "many": {"_count": 1, "were": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "Draco": {"_count": 1, "doubled": {"_count": 1}}}, "lip": {"_count": 46, "": {"_count": 9, ".": {"_count": 9}}, "trembled": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "curled": {"_count": 6, "": {"_count": 4}, "but": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 5, "Mr": {"_count": 1}, "did": {"_count": 1}, "several": {"_count": 1}, "looked": {"_count": 1}, "tears": {"_count": 1}}, "was": {"_count": 7, "curling": {"_count": 1}, "sweating": {"_count": 1}, "trembling": {"_count": 3}, "bleeding": {"_count": 2}}, "his": {"_count": 1, "forehead": {"_count": 1}}, "looking": {"_count": 2, "extremely": {"_count": 1}, "up": {"_count": 1}}, "twitching": {"_count": 1, "": {"_count": 1}}, "bleeding": {"_count": 1, "scrambled": {"_count": 1}}, "curl": {"_count": 1, "like": {"_count": 1}}, "curling": {"_count": 5, "": {"_count": 5}}, "toward": {"_count": 1, "her": {"_count": 1}}, "quivered": {"_count": 1, "": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "Fred": {"_count": 1, "was": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}}, "Percyd": {"_count": 1, "better": {"_count": 1, "not": {"_count": 1}}}, "deserted": {"_count": 106, "side": {"_count": 1, "corridor": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 26}}, "stadium": {"_count": 1, "": {"_count": 1}}, "corridor": {"_count": 10, "he": {"_count": 2}, "and": {"_count": 2}, "outside": {"_count": 1}, "toward": {"_count": 1}, "peering": {"_count": 1}, "till": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "passage": {"_count": 1, "": {"_count": 1}}, "entrance": {"_count": 4, "hall": {"_count": 4}}, "castle": {"_count": 3, "corridors": {"_count": 1}, "": {"_count": 1}, "grounds": {"_count": 1}}, "staffroom": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "stole": {"_count": 1}, "no": {"_count": 1}, "judging": {"_count": 1}, "the": {"_count": 1}}, "battlefields": {"_count": 1, "waiting": {"_count": 1}}, "corridors": {"_count": 4, "and": {"_count": 1}, "though": {"_count": 1}, "but": {"_count": 1}, "the": {"_count": 1}}, "dressed": {"_count": 1, "and": {"_count": 1}}, "classroom": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "where": {"_count": 1}}, "landscape": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 5, "a": {"_count": 2}, "when": {"_count": 1}, "for": {"_count": 2}}, "moor": {"_count": 2, "and": {"_count": 1}, "unable": {"_count": 1}}, "stretch": {"_count": 1, "of": {"_count": 1}}, "perch": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 3, "No": {"_count": 1}, "": {"_count": 2}}, "common": {"_count": 1, "room": {"_count": 1}}, "now": {"_count": 1, "the": {"_count": 1}}, "staircase": {"_count": 1, "": {"_count": 1}}, "Bagman": {"_count": 1, "Cedric": {"_count": 1}}, "house": {"_count": 1, "at": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "Azkaban": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "street": {"_count": 3, "to": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}}, "road": {"_count": 1, "": {"_count": 1}}, "grounds": {"_count": 2, "followed": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 1, "prison": {"_count": 1}}, "labyrinth": {"_count": 1, "of": {"_count": 1}}, "my": {"_count": 1, "post": {"_count": 1}}, "village": {"_count": 1, "square": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "lane": {"_count": 2, "following": {"_count": 1}, "to": {"_count": 1}}, "lamp": {"_count": 1, "lit": {"_count": 1}}, "snowy": {"_count": 1, "courtyard": {"_count": 1}}, "too": {"_count": 1, "Harry": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "glade": {"_count": 1, "": {"_count": 1}}, "apart": {"_count": 2, "from": {"_count": 2}}, "scene": {"_count": 1, "noting": {"_count": 1}}, "bunk": {"_count": 1, "": {"_count": 1}}, "Ravenclaw": {"_count": 1, "common": {"_count": 1}}, "frame": {"_count": 1, "which": {"_count": 1}}, "playground": {"_count": 1, "": {"_count": 1}}}, "griffin": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "claw": {"_count": 1, "for": {"_count": 1}}, "knocker": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}}, "Peering": {"_count": 1, "around": {"_count": 1, "it": {"_count": 1}}}, "view": {"_count": 120, "": {"_count": 33, ".": {"_count": 33}}, "they": {"_count": 1, "were": {"_count": 1}}, "of": {"_count": 36, "things": {"_count": 1}, "the": {"_count": 18}, "what": {"_count": 2}, "Snape": {"_count": 1}, "Hermione": {"_count": 1}, "Hagrids": {"_count": 1}, "her": {"_count": 1}, "that": {"_count": 1}, "endless": {"_count": 1}, "a": {"_count": 2}, "elf": {"_count": 1}, "an": {"_count": 1}, "Potters": {"_count": 1}, "Harry": {"_count": 1}, "both": {"_count": 1}, "Bellatrix": {"_count": 1}, "open": {"_count": 1}}, "hiding": {"_count": 1, "something": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "her": {"_count": 1, "handbag": {"_count": 1}}, "as": {"_count": 4, "he": {"_count": 2}, "though": {"_count": 1}, "they": {"_count": 1}}, "seated": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "one": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "closely": {"_count": 1, "followed": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "said": {"_count": 3, "Fudge": {"_count": 1}, "Hermione": {"_count": 1}, "Hagrid": {"_count": 1}}, "standing": {"_count": 1, "against": {"_count": 1}}, "dragging": {"_count": 1, "with": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "cry": {"_count": 1}}, "too": {"_count": 1, "muttering": {"_count": 1}}, "before": {"_count": 1, "Uncle": {"_count": 1}}, "again": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 6, "they": {"_count": 1}, "even": {"_count": 1}, "he": {"_count": 1}, "saw": {"_count": 1}, "then": {"_count": 1}, "waited": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "Dumbledores": {"_count": 1, "desk": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "smashed": {"_count": 1}}, "hidden": {"_count": 1, "behind": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "then": {"_count": 2, "turned": {"_count": 1}, "held": {"_count": 1}}, "will": {"_count": 1, "we": {"_count": 1}}, "the": {"_count": 1, "sea": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "waiting": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "temporarily": {"_count": 1, "lost": {"_count": 1}}, "shouting": {"_count": 1, "Students": {"_count": 1}}, "Harry": {"_count": 2, "slipped": {"_count": 1}, "Ron": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}}, "Search": {"_count": 6, "me": {"_count": 3, "": {"_count": 1}, "said": {"_count": 2}}, "the": {"_count": 2, "skies": {"_count": 1}, "tent": {"_count": 1}}, "fast": {"_count": 1, "": {"_count": 1}}}, "Quietly": {"_count": 6, "as": {"_count": 3, "possible": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "Harry": {"_count": 1, "tried": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "tentatively": {"_count": 1, "Harry": {"_count": 1}}}, "fading": {"_count": 20, "footsteps": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "fast": {"_count": 2, "now": {"_count": 1}, "and": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "from": {"_count": 4, "his": {"_count": 2}, "sight": {"_count": 1}, "her": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "rapidly": {"_count": 1, "now": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "stars": {"_count": 1, "then": {"_count": 1}}}, "heading": {"_count": 72, "for": {"_count": 24, "the": {"_count": 10}, "goal": {"_count": 4}, "Hogsmeade": {"_count": 1}, "Hogwarts": {"_count": 1}, "big": {"_count": 1}, "serious": {"_count": 1}, "Divination": {"_count": 1}, "a": {"_count": 2}, "anything": {"_count": 1}, "Professor": {"_count": 1}, "at": {"_count": 1}}, "straight": {"_count": 5, "for": {"_count": 4}, "back": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "our": {"_count": 1}, "\u2018overexertion": {"_count": 1}}, "to": {"_count": 1, "dinner": {"_count": 1}}, "back": {"_count": 9, "to": {"_count": 6}, "up": {"_count": 2}, "toward": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "Hermiones": {"_count": 1}}, "off": {"_count": 3, "around": {"_count": 1}, "to": {"_count": 1}, "toward": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 3}}, "through": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "Magnolia": {"_count": 1}}, "upstairs": {"_count": 2, "to": {"_count": 1}, "stopping": {"_count": 1}}, "scribbled": {"_count": 1, "by": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "down": {"_count": 4, "to": {"_count": 3}, "toward": {"_count": 1}}, "the": {"_count": 2, "Office": {"_count": 1}, "procession": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 1, "toward": {"_count": 1}}, "and": {"_count": 1, "realized": {"_count": 1}}, "north": {"_count": 1, "too": {"_count": 1}}, "up": {"_count": 1, "into": {"_count": 1}}, "if": {"_count": 1, "youve": {"_count": 1}}}, "foul": {"_count": 35, "stench": {"_count": 1, "reached": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "Jordan": {"_count": 1, "Im": {"_count": 1}}, "simpering": {"_count": 1, "smile": {"_count": 1}}, "scar": {"_count": 1, "right": {"_count": 1}}, "name": {"_count": 1, "for": {"_count": 1}}, "cat": {"_count": 1, "Argus": {"_count": 1}}, "rat": {"_count": 1, "face": {"_count": 1}}, "temper": {"_count": 1, "after": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "common": {"_count": 1, "Muggle": {"_count": 1}}, "Riddles": {"_count": 1, "face": {"_count": 1}}, "you": {"_count": 1, "evil": {"_count": 1}}, "on": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "mood": {"_count": 1, "dont": {"_count": 1}}, "things": {"_count": 2, "during": {"_count": 1}, "themselves": {"_count": 1}}, "Skeeter": {"_count": 1, "woman": {"_count": 1}}, "play": {"_count": 1, "Dumbledore": {"_count": 1}}, "glasses": {"_count": 1, "she": {"_count": 1}}, "little": {"_count": 1, "If": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "odor": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "lying": {"_count": 1, "twisting": {"_count": 1}}, "kittens": {"_count": 1, "gamboling": {"_count": 1}}, "scavenging": {"_count": 1, "little": {"_count": 1}}, "smelling": {"_count": 1, "potion": {"_count": 1}}, "he": {"_count": 1, "deserved": {"_count": 1}}, "addition": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "swarming": {"_count": 1, "movement": {"_count": 1}}}, "stench": {"_count": 3, "reached": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 2, "guilt": {"_count": 1}, "sweat": {"_count": 1}}}, "grunting": {"_count": 12, "and": {"_count": 2, "the": {"_count": 1}, "shrugging": {"_count": 1}}, "snores": {"_count": 2, "of": {"_count": 2}}, "sort": {"_count": 1, "of": {"_count": 1}}, "snore": {"_count": 4, "from": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "breathing": {"_count": 1, "": {"_count": 1}}}, "footfalls": {"_count": 5, "of": {"_count": 1, "gigantic": {"_count": 1}}, "reached": {"_count": 1, "them": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "surrounded": {"_count": 1, "him": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}}, "emerged": {"_count": 98, "into": {"_count": 11, "a": {"_count": 5}, "the": {"_count": 5}, "more": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 2, "her": {"_count": 1}, "two": {"_count": 1}}, "from": {"_count": 46, "between": {"_count": 1}, "the": {"_count": 20}, "Flourish": {"_count": 1}, "Transfiguration": {"_count": 1}, "his": {"_count": 2}, "behind": {"_count": 4}, "their": {"_count": 2}, "them": {"_count": 1}, "around": {"_count": 1}, "its": {"_count": 1}, "a": {"_count": 3}, "under": {"_count": 2}, "her": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 1}, "yet": {"_count": 1}, "out": {"_count": 1}, "icy": {"_count": 1}, "nowhere": {"_count": 1}}, "shinyfaced": {"_count": 1, "and": {"_count": 1}}, "sobbing": {"_count": 1, "her": {"_count": 1}}, "very": {"_count": 1, "slowly": {"_count": 1}}, "looking": {"_count": 1, "very": {"_count": 1}}, "on": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "onto": {"_count": 4, "a": {"_count": 2}, "the": {"_count": 1}, "platform": {"_count": 1}}, "a": {"_count": 1, "gigantic": {"_count": 1}}, "thrashing": {"_count": 1, "desperately": {"_count": 1}}, "some": {"_count": 1, "time": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "entirely": {"_count": 1, "bobbing": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 3, "its": {"_count": 1}, "a": {"_count": 2}}, "out": {"_count": 3, "of": {"_count": 3}}, "panting": {"_count": 2, "from": {"_count": 1}, "to": {"_count": 1}}, "trailing": {"_count": 1, "behind": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "his": {"_count": 1, "foot": {"_count": 1}}, "through": {"_count": 1, "other": {"_count": 1}}, "coughing": {"_count": 1, "out": {"_count": 1}}, "slowly": {"_count": 1, "from": {"_count": 1}}, "shivering": {"_count": 1, "uncontrollably": {"_count": 1}}, "to": {"_count": 1, "climb": {"_count": 1}}, "for": {"_count": 1, "mealtimes": {"_count": 1}}, "by": {"_count": 1, "degrees": {"_count": 1}}, "spluttering": {"_count": 1, "and": {"_count": 1}}}, "patch": {"_count": 75, "of": {"_count": 40, "moonlight": {"_count": 2}, "trees": {"_count": 1}, "sun": {"_count": 1}, "scarlet": {"_count": 1}, "tears": {"_count": 1}, "marsh": {"_count": 1}, "dim": {"_count": 1}, "tents": {"_count": 2}, "silvery": {"_count": 2}, "dry": {"_count": 1}, "darkness": {"_count": 1}, "ground": {"_count": 3}, "freshly": {"_count": 1}, "earth": {"_count": 2}, "unkempt": {"_count": 1}, "grass": {"_count": 2}, "carpet": {"_count": 2}, "Hagrids": {"_count": 1}, "starry": {"_count": 2}, "particularly": {"_count": 1}, "shivering": {"_count": 1}, "thick": {"_count": 1}, "nettles": {"_count": 1}, "bright": {"_count": 1}, "dark": {"_count": 2}, "dusty": {"_count": 1}, "light": {"_count": 1}, "water": {"_count": 1}, "wood": {"_count": 1}, "sky": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "and": {"_count": 3, "then": {"_count": 1}, "made": {"_count": 1}, "approached": {"_count": 1}}, "behind": {"_count": 1, "Hagrid": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "clean": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 5, "top": {"_count": 1}, "his": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 1}}, "throw": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "next": {"_count": 1, "lesson": {"_count": 1}}, "now": {"_count": 1, "strewn": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 1, "double": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "marked": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "gleaming": {"_count": 1, "with": {"_count": 1}}}, "granite": {"_count": 2, "gray": {"_count": 1, "its": {"_count": 1}}, "the": {"_count": 1, "words": {"_count": 1}}}, "boulder": {"_count": 10, "with": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "closest": {"_count": 1, "to": {"_count": 1}}, "landed": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}}, "horny": {"_count": 3, "feet": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 2, "feet": {"_count": 2}}}, "waggled": {"_count": 1, "its": {"_count": 1, "long": {"_count": 1}}}, "slouched": {"_count": 10, "slowly": {"_count": 1, "into": {"_count": 1}}, "outside": {"_count": 1, "with": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "out": {"_count": 2, "of": {"_count": 1}, "leaving": {"_count": 1}}, "roundshouldered": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "cast": {"_count": 1}}, "off": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}}, "praying": {"_count": 7, "the": {"_count": 1, "troll": {"_count": 1}}, "hed": {"_count": 1, "get": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 1, "patience": {"_count": 1}}, "that": {"_count": 1, "Neville": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}}, "slam": {"_count": 13, "the": {"_count": 4, "door": {"_count": 3}, "lid": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "it": {"_count": 1, "shut": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "flat": {"_count": 1, "into": {"_count": 1}}, "her": {"_count": 1, "glass": {"_count": 1}}, "his": {"_count": 1, "whole": {"_count": 1}}}, "Flushed": {"_count": 2, "with": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}}, "victory": {"_count": 13, "they": {"_count": 1, "started": {"_count": 1}}, "faded": {"_count": 1, "from": {"_count": 1}}, "against": {"_count": 1, "Ravenclaw": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "dont": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "due": {"_count": 1, "mainly": {"_count": 1}}, "must": {"_count": 1, "brace": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "Harry": {"_count": 1, "understood": {"_count": 1}}, "song": {"_count": 1, "of": {"_count": 1}}}, "hearts": {"_count": 15, "stop": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "as": {"_count": 1, "light": {"_count": 1}}, "and": {"_count": 1, "minds": {"_count": 1}}, "sank": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "support": {"_count": 1}}, "are": {"_count": 1, "open": {"_count": 1}}, "proudly": {"_count": 1, "on": {"_count": 1}}, "desire": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "content": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "Gellert": {"_count": 1}}}, "chained": {"_count": 16, "up": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "these": {"_count": 1, "twelve": {"_count": 1}}, "to": {"_count": 4, "this": {"_count": 1}, "Lupins": {"_count": 1}, "Pettigrew": {"_count": 1}, "the": {"_count": 1}}, "chair": {"_count": 5, "and": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}, "struggling": {"_count": 1}, "however": {"_count": 1}}, "arms": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 2, "bolted": {"_count": 1}, "padlocked": {"_count": 1}}, "shut": {"_count": 1, "": {"_count": 1}}}, "Hermionel": {"_count": 6, "they": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 1, "youre": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "What": {"_count": 1, "": {"_count": 1}}, "She": {"_count": 1, "stirred": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}}, "choice": {"_count": 67, "did": {"_count": 2, "they": {"_count": 2}}, "": {"_count": 16, ".": {"_count": 12}, "!": {"_count": 2}, "?": {"_count": 2}}, "we": {"_count": 2, "give": {"_count": 1}, "will": {"_count": 1}}, "said": {"_count": 2, "the": {"_count": 1}, "Ron": {"_count": 1}}, "Professor": {"_count": 1, "we": {"_count": 1}}, "but": {"_count": 14, "to": {"_count": 12}, "ter": {"_count": 1}, "Kreacher": {"_count": 1}}, "now": {"_count": 1, "but": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "if": {"_count": 1, "someone": {"_count": 1}}, "of": {"_count": 5, "paths": {"_count": 1}, "somebody": {"_count": 1}, "cereals": {"_count": 1}, "Katies": {"_count": 1}, "job": {"_count": 1}}, "between": {"_count": 3, "what": {"_count": 1}, "you": {"_count": 1}, "staying": {"_count": 1}}, "Hermione": {"_count": 1, "added": {"_count": 1}}, "during": {"_count": 1, "an": {"_count": 1}}, "is": {"_count": 1, "very": {"_count": 1}}, "have": {"_count": 1, "I": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "before": {"_count": 1, "saying": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "didnt": {"_count": 1, "she": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "once": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "or": {"_count": 1, "because": {"_count": 1}}, "nobody": {"_count": 1, "elses": {"_count": 1}}, "The": {"_count": 1, "moment": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "Longbottom": {"_count": 1, "we": {"_count": 1}}, "into": {"_count": 1, "account": {"_count": 1}}}, "Wheeling": {"_count": 3, "around": {"_count": 3, "they": {"_count": 1}, "he": {"_count": 2}}}, "fumbling": {"_count": 8, "in": {"_count": 2, "their": {"_count": 1}, "her": {"_count": 1}}, "fingers": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "Harry": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 2}}, "over": {"_count": 1, "the": {"_count": 1}}}, "shrinking": {"_count": 14, "against": {"_count": 1, "the": {"_count": 1}}, "rooftops": {"_count": 1, "of": {"_count": 1}}, "door": {"_count": 1, "keys": {"_count": 1}}, "to": {"_count": 1, "nothing": {"_count": 1}}, "theyll": {"_count": 1, "insist": {"_count": 1}}, "potions": {"_count": 1, "was": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "rapidly": {"_count": 2, "into": {"_count": 1}, "as": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 1, "him": {"_count": 1}}, "light": {"_count": 1, "now": {"_count": 1}}, "their": {"_count": 1, "hair": {"_count": 1}}}, "advancing": {"_count": 17, "on": {"_count": 7, "her": {"_count": 1}, "Harry": {"_count": 2}, "Ron": {"_count": 1}, "Dudley": {"_count": 1}, "Ogden": {"_count": 2}}, "menacingly": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 1, "him": {"_count": 1}}, "slightly": {"_count": 1, "into": {"_count": 1}}, "centaur": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "Crabbe": {"_count": 1}}, "a": {"_count": 1, "step": {"_count": 1}}, "crowd": {"_count": 1, "all": {"_count": 1}}, "goblins": {"_count": 1, "he": {"_count": 1}}, "gliding": {"_count": 1, "toward": {"_count": 1}}}, "sinks": {"_count": 4, "off": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Ive": {"_count": 1, "even": {"_count": 1}}, "still": {"_count": 1, "wrestling": {"_count": 1}}}, "Confuse": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "desperately": {"_count": 76, "to": {"_count": 7, "Ron": {"_count": 1}, "Aragog": {"_count": 1}, "get": {"_count": 2}, "pull": {"_count": 1}, "leave": {"_count": 1}, "cling": {"_count": 1}}, "": {"_count": 30, ".": {"_count": 30}}, "checking": {"_count": 1, "his": {"_count": 1}}, "Not": {"_count": 1, "Slytherin": {"_count": 1}}, "around": {"_count": 3, "him": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "into": {"_count": 2, "Dumbledore": {"_count": 1}, "her": {"_count": 1}}, "sorry": {"_count": 1, "for": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "anxious": {"_count": 1, "but": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "then": {"_count": 1}, "once": {"_count": 1}}, "opening": {"_count": 1, "one": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "without": {"_count": 1, "looking": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "dull": {"_count": 1, "quite": {"_count": 1}}, "who": {"_count": 2, "could": {"_count": 1}, "does": {"_count": 1}}, "leaning": {"_count": 1, "in": {"_count": 1}}, "hauling": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "Dumbledore": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "I": {"_count": 1, "just": {"_count": 1}}, "it": {"_count": 1, "isnt": {"_count": 1}}, "how": {"_count": 1, "are": {"_count": 1}}, "injured": {"_count": 1, "I": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "even": {"_count": 1}}, "for": {"_count": 4, "help": {"_count": 1}, "some": {"_count": 1}, "a": {"_count": 1}, "friends": {"_count": 1}}, "sad": {"_count": 1, "occasion": {"_count": 1}}, "hungry": {"_count": 1, "and": {"_count": 1}}, "weak": {"_count": 1, "Dumbledore": {"_count": 1}}}, "seizing": {"_count": 37, "a": {"_count": 4, "tap": {"_count": 1}, "handful": {"_count": 1}, "candle": {"_count": 1}, "fistful": {"_count": 1}}, "five": {"_count": 1, "or": {"_count": 1}}, "her": {"_count": 3, "schedule": {"_count": 1}, "hand": {"_count": 1}, "small": {"_count": 1}}, "his": {"_count": 4, "broomstick": {"_count": 1}, "bag": {"_count": 1}, "knife": {"_count": 1}, "Firebolt": {"_count": 1}}, "the": {"_count": 9, "cloak": {"_count": 1}, "brandy": {"_count": 1}, "Quaffle": {"_count": 1}, "rope": {"_count": 1}, "curtain": {"_count": 1}, "Invisibility": {"_count": 2}, "front": {"_count": 2}}, "Harrys": {"_count": 1, "hand": {"_count": 1}}, "Rons": {"_count": 2, "arm": {"_count": 1}, "raven": {"_count": 1}}, "up": {"_count": 1, "with": {"_count": 1}}, "Hermione": {"_count": 2, "s": {"_count": 1}, "by": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "gratefully": {"_count": 1, "on": {"_count": 1}}, "Ron": {"_count": 1, "by": {"_count": 1}}, "one": {"_count": 1, "from": {"_count": 1}}, "Harry": {"_count": 1, "around": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "Lunas": {"_count": 1, "outstretched": {"_count": 1}}, "power": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "pulling": {"_count": 1}}}, "lumbered": {"_count": 5, "around": {"_count": 1, "blinking": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "hesitated": {"_count": 94, "then": {"_count": 20, "made": {"_count": 1}, "clambered": {"_count": 1}, "she": {"_count": 1}, "plunged": {"_count": 1}, "said": {"_count": 5}, "lowered": {"_count": 1}, "put": {"_count": 1}, "held": {"_count": 1}, "smiled": {"_count": 1}, "got": {"_count": 1}, "grabbed": {"_count": 1}, "walked": {"_count": 1}, "took": {"_count": 1}, "crossed": {"_count": 1}, "headed": {"_count": 1}, "pulled": {"_count": 1}}, "looking": {"_count": 5, "excited": {"_count": 1}, "apprehensive": {"_count": 1}, "into": {"_count": 1}, "upset": {"_count": 1}, "up": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 26}}, "his": {"_count": 2, "quill": {"_count": 1}, "hand": {"_count": 1}}, "for": {"_count": 13, "a": {"_count": 12}, "the": {"_count": 1}}, "not": {"_count": 1, "wanting": {"_count": 1}}, "and": {"_count": 4, "then": {"_count": 3}, "Harry": {"_count": 1}}, "because": {"_count": 1, "these": {"_count": 1}}, "thinking": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "listening": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "glanced": {"_count": 1, "at": {"_count": 1}}, "here": {"_count": 1, "wondering": {"_count": 1}}, "but": {"_count": 4, "after": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "recognized": {"_count": 1}}, "outside": {"_count": 2, "the": {"_count": 2}}, "rather": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "take": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "might": {"_count": 1}}, "the": {"_count": 1, "Prime": {"_count": 1}}, "a": {"_count": 1, "moment": {"_count": 1}}, "before": {"_count": 1, "answering": {"_count": 1}}, "He": {"_count": 1, "did": {"_count": 1}}, "glancing": {"_count": 1, "at": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}}, "lifting": {"_count": 17, "its": {"_count": 1, "club": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "heavy": {"_count": 1, "objects": {"_count": 1}}, "books": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 4, "chain": {"_count": 1}, "limp": {"_count": 1}, "jar": {"_count": 1}, "stew": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "his": {"_count": 2, "hair": {"_count": 1}, "wild": {"_count": 1}}, "Harry": {"_count": 1, "off": {"_count": 1}}, "their": {"_count": 1, "glasses": {"_count": 1}}, "Hedwig": {"_count": 1, "carefully": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Dobby": {"_count": 1, "into": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}}, "peabrain": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "ugly": {"_count": 74, "snout": {"_count": 1, "toward": {"_count": 1}}, "doll": {"_count": 1, "": {"_count": 1}}, "baby": {"_count": 2, "popped": {"_count": 1}, "headed": {"_count": 1}}, "head": {"_count": 4, "": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}, "toward": {"_count": 1}}, "stone": {"_count": 3, "gargoyle": {"_count": 1}, "head": {"_count": 1}, "face": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 1}, "Purge": {"_count": 1}}, "no": {"_count": 1, "ones": {"_count": 1}}, "pincered": {"_count": 1, "head": {"_count": 1}}, "black": {"_count": 2, "heads": {"_count": 1}, "stoned": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "old": {"_count": 5, "Armenian": {"_count": 1}, "bat": {"_count": 1}, "rings": {"_count": 1}, "warlock": {"_count": 2}}, "look": {"_count": 5, "": {"_count": 1}, "indeed": {"_count": 1}, "on": {"_count": 3}}, "youre": {"_count": 1, "foul": {"_count": 1}}, "brown": {"_count": 1, "face": {"_count": 1}}, "puce": {"_count": 1, "": {"_count": 1}}, "brute": {"_count": 1, "": {"_count": 1}}, "git": {"_count": 1, "": {"_count": 1}}, "squashed": {"_count": 1, "face": {"_count": 1}}, "triangular": {"_count": 1, "head": {"_count": 1}}, "boils": {"_count": 1, "were": {"_count": 1}}, "scar": {"_count": 1, "souvenir": {"_count": 1}}, "opposing": {"_count": 1, "team": {"_count": 1}}, "wreath": {"_count": 1, "of": {"_count": 1}}, "armor": {"_count": 1, "in": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "says": {"_count": 1, "Pansy": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "slimy": {"_count": 1, "and": {"_count": 1}}, "mark": {"_count": 1, "on": {"_count": 1}}, "oldfashioned": {"_count": 1, "rings": {"_count": 1}}, "raven": {"_count": 1, "in": {"_count": 1}}, "we": {"_count": 1, "wanted": {"_count": 1}}, "female": {"_count": 1, "dummy": {"_count": 1}}, "dummy": {"_count": 2, "and": {"_count": 1}, "or": {"_count": 1}}, "plant": {"_count": 1, "with": {"_count": 1}}, "flush": {"_count": 1, "suffused": {"_count": 1}}, "you": {"_count": 1, "think": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "patchy": {"_count": 1, "violet": {"_count": 1}}, "dragonshaped": {"_count": 1, "vase": {"_count": 1}}, "man": {"_count": 1, "with": {"_count": 1}}, "featherless": {"_count": 1, "Fawkes": {"_count": 1}}, "little": {"_count": 3, "portrait": {"_count": 1}, "man": {"_count": 2}}, "gold": {"_count": 1, "ring": {"_count": 1}}, "grimace": {"_count": 1, "and": {"_count": 1}}, "boulderlike": {"_count": 1, "head": {"_count": 1}}, "blotchy": {"_count": 1, "red": {"_count": 1}}, "faces": {"_count": 1, "twisted": {"_count": 1}}, "ring": {"_count": 1, "in": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "sea": {"_count": 1, "creatures": {"_count": 1}}}, "shouting": {"_count": 86, "and": {"_count": 7, "the": {"_count": 1}, "screaming": {"_count": 2}, "running": {"_count": 1}, "movement": {"_count": 1}, "moaning": {"_count": 1}, "Ron": {"_count": 1}}, "the": {"_count": 1, "results": {"_count": 1}}, "different": {"_count": 1, "bits": {"_count": 1}}, "Bad": {"_count": 1, "Dobby": {"_count": 1}}, "about": {"_count": 6, "lunatics": {"_count": 1}, "": {"_count": 2}, "Hagrid": {"_count": 1}, "Potter": {"_count": 1}, "Death": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "This": {"_count": 1, "boy": {"_count": 1}}, "at": {"_count": 9, "someone": {"_count": 2}, "him": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}, "Snape": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}}, "Youll": {"_count": 1, "be": {"_count": 1}}, "Make": {"_count": 1, "way": {"_count": 1}}, "they": {"_count": 2, "could": {"_count": 1}, "were": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "through": {"_count": 1, "their": {"_count": 1}}, "panicking": {"_count": 1, "Lily": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "the": {"_count": 1}, "she": {"_count": 1}}, "up": {"_count": 1, "ahead": {"_count": 1}}, "gleefully": {"_count": 1, "": {"_count": 1}}, "something": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "shrilly": {"_count": 1, "over": {"_count": 1}}, "over": {"_count": 1, "all": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "four": {"_count": 1}}, "his": {"_count": 1, "fists": {"_count": 1}}, "again": {"_count": 4, "now": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 2}}, "greetings": {"_count": 1, "at": {"_count": 1}}, "match": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "matches": {"_count": 1, "to": {"_count": 1}}, "now": {"_count": 1, "you": {"_count": 1}}, "Expelliarmusl": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "actually": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "incantations": {"_count": 1, "gain": {"_count": 1}}, "things": {"_count": 1, "like": {"_count": 1}}, "criticism": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 1, "pointless": {"_count": 1}}, "Have": {"_count": 1, "you": {"_count": 1}}, "Students": {"_count": 1, "out": {"_count": 1}}, "instructions": {"_count": 1, "trying": {"_count": 1}}, "their": {"_count": 1, "surprise": {"_count": 1}}, "nor": {"_count": 1, "tell": {"_count": 1}}}, "echoes": {"_count": 5, "seemed": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "of": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "these": {"_count": 1, "shadows": {"_count": 1}}}, "driving": {"_count": 18, "the": {"_count": 2, "troll": {"_count": 1}, "dementors": {"_count": 1}}, "them": {"_count": 2, "nuts": {"_count": 1}, "away": {"_count": 1}}, "too": {"_count": 1, "far": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "me": {"_count": 4, "mad": {"_count": 4}}, "of": {"_count": 1, "course": {"_count": 1}}, "Hagrid": {"_count": 1, "s": {"_count": 1}}, "rain": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "able": {"_count": 1}}, "all": {"_count": 1, "other": {"_count": 1}}, "say": {"_count": 1, "ten": {"_count": 1}}, "Muriel": {"_count": 1, "up": {"_count": 1}}, "test": {"_count": 1, "did": {"_count": 1}}}, "berserk": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "squirted": {"_count": 1}}, "squeaking": {"_count": 1, "madly": {"_count": 1}}, "on": {"_count": 1, "us": {"_count": 1}}, "at": {"_count": 1, "what": {"_count": 1}}}, "fasten": {"_count": 4, "his": {"_count": 2, "arms": {"_count": 1}, "traveling": {"_count": 1}}, "them": {"_count": 1, "securely": {"_count": 1}}, "the": {"_count": 1, "cabinet": {"_count": 1}}}, "trolls": {"_count": 35, "neck": {"_count": 1, "from": {"_count": 1}}, "nostrils": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 1, "rose": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "trousers": {"_count": 1, "": {"_count": 1}}, "roars": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "must": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "had": {"_count": 1, "been": {"_count": 1}}, "leered": {"_count": 1, "unpleasantly": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "pulled": {"_count": 1}}, "were": {"_count": 1, "pacing": {"_count": 1}}, "gave": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "leg": {"_count": 4, "they": {"_count": 1}, "back": {"_count": 1}, "umbrella": {"_count": 2}}, "for": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "really": {"_count": 1, "tough": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "rights": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "read": {"_count": 1}}, "in": {"_count": 1, "tutus": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "closed": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "on": {"_count": 1}}}, "Howling": {"_count": 1, "with": {"_count": 1, "pain": {"_count": 1}}}, "flailed": {"_count": 5, "its": {"_count": 1, "club": {"_count": 1}}, "their": {"_count": 1, "sharp": {"_count": 1}}, "around": {"_count": 1, "madly": {"_count": 1}}, "dangerously": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "struggled": {"_count": 1}}}, "clinging": {"_count": 14, "on": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 10, "it": {"_count": 2}, "their": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 4}, "its": {"_count": 1}, "each": {"_count": 1}}, "painfully": {"_count": 1, "to": {"_count": 1}}}, "fright": {"_count": 22, "Ron": {"_count": 1, "pulled": {"_count": 1}}, "and": {"_count": 5, "Mrs": {"_count": 1}, "pain": {"_count": 1}, "ducked": {"_count": 1}, "the": {"_count": 1}, "dropped": {"_count": 1}}, "come": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "if": {"_count": 1, "anyone": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "but": {"_count": 1, "also": {"_count": 1}}, "you": {"_count": 1, "said": {"_count": 1}}}, "sickening": {"_count": 12, "crack": {"_count": 1, "onto": {"_count": 1}}, "sight": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "in": {"_count": 1}}, "crunch": {"_count": 1, "": {"_count": 1}}, "splash": {"_count": 1, "as": {"_count": 1}}, "jolt": {"_count": 1, "as": {"_count": 1}}, "for": {"_count": 1, "something": {"_count": 1}}, "pain": {"_count": 1, "": {"_count": 1}}, "surge": {"_count": 1, "of": {"_count": 1}}, "cuteness": {"_count": 1, "": {"_count": 1}}, "metallic": {"_count": 1, "thuds": {"_count": 1}}, "crunches": {"_count": 1, "as": {"_count": 1}}}, "swayed": {"_count": 33, "on": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}, "where": {"_count": 3, "he": {"_count": 2}, "they": {"_count": 1}}, "confused": {"_count": 1, "still": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "slightly": {"_count": 3, "as": {"_count": 1}, "again": {"_count": 1}, "stars": {"_count": 1}}, "and": {"_count": 2, "overbalanced": {"_count": 1}, "slithered": {"_count": 1}}, "this": {"_count": 1, "way": {"_count": 1}}, "some": {"_count": 1, "more": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "again": {"_count": 1, "the": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "dangerously": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "alarmingly": {"_count": 2, "overtaking": {"_count": 1}, "Madam": {"_count": 1}}, "menacingly": {"_count": 1, "and": {"_count": 1}}, "gently": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "precariously": {"_count": 1, "and": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "cackling": {"_count": 1, "before": {"_count": 1}}}, "tremble": {"_count": 11, "": {"_count": 6, ".": {"_count": 6}}, "worse": {"_count": 1, "than": {"_count": 1}}, "with": {"_count": 1, "these": {"_count": 1}}, "Xenophilius": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 1, "with": {"_count": 1}}, "opened": {"_count": 1, "its": {"_count": 1}}}, "glue": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Urgh": {"_count": 6, "troll": {"_count": 1, "boogers": {"_count": 1}}, "essence": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Chang": {"_count": 1, "I": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "boogers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "racket": {"_count": 12, "they": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 1, "two": {"_count": 1}}, "the": {"_count": 1, "birds": {"_count": 1}}, "Hedwig": {"_count": 1, "made": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}}, "crashes": {"_count": 9, "and": {"_count": 4, "the": {"_count": 1}, "screams": {"_count": 1}, "explosions": {"_count": 1}, "booms": {"_count": 1}}, "etc": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "men": {"_count": 1}}, "from": {"_count": 2, "inside": {"_count": 1}, "the": {"_count": 1}}}, "roars": {"_count": 14, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 8, "the": {"_count": 4}, "laughter": {"_count": 1}, "approval": {"_count": 1}, "pain": {"_count": 1}, "outrage": {"_count": 1}}, "and": {"_count": 3, "applause": {"_count": 1}, "boos": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "from": {"_count": 1, "Voldemorts": {"_count": 1}}}, "bursting": {"_count": 30, "into": {"_count": 6, "the": {"_count": 4}, "Hagrids": {"_count": 1}, "feather": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "out": {"_count": 3, "of": {"_count": 3}}, "to": {"_count": 4, "say": {"_count": 4}}, "its": {"_count": 1, "hoops": {"_count": 1}}, "free": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 6, "Honeydukes": {"_count": 1}, "Christmas": {"_count": 1}, "jealousy": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 1}, "news": {"_count": 1}}, "in": {"_count": 3, "here": {"_count": 1}, "showers": {"_count": 1}, "seconds": {"_count": 1}}, "open": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "point": {"_count": 1, "and": {"_count": 1}}}, "rear": {"_count": 16, "": {"_count": 5, ".": {"_count": 5}}, "admirals": {"_count": 1, "hat": {"_count": 1}}, "lights": {"_count": 1, "blazing": {"_count": 1}}, "Ron": {"_count": 1, "still": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "guard": {"_count": 1, "are": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "chair": {"_count": 1, "legs": {"_count": 1}}, "plainly": {"_count": 1, "horrors": {"_count": 1}}, "window": {"_count": 1, "of": {"_count": 1}}, "legs": {"_count": 1, "bore": {"_count": 1}}}, "whimper": {"_count": 8, "and": {"_count": 3, "sat": {"_count": 1}, "a": {"_count": 1}, "tremble": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "pain": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "staring": {"_count": 1, "around": {"_count": 1}}}, "Hopes": {"_count": 1, "of": {"_count": 1, "winning": {"_count": 1}}}, "fury": {"_count": 72, "in": {"_count": 5, "her": {"_count": 2}, "his": {"_count": 2}, "every": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 2}}, "": {"_count": 18, ".": {"_count": 17}, "?": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 8, "alarm": {"_count": 1}, "fear": {"_count": 3}, "horror": {"_count": 1}, "Neville": {"_count": 1}, "plunged": {"_count": 1}, "hatred": {"_count": 1}}, "against": {"_count": 1, "Dumbledore": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "echoing": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 3, "began": {"_count": 1}, "was": {"_count": 1}, "saw": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 2}, "being": {"_count": 1}, "Dumbledore": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "turning": {"_count": 1, "on": {"_count": 1}}, "now": {"_count": 1, "pumping": {"_count": 1}}, "that": {"_count": 6, "made": {"_count": 1}, "was": {"_count": 2}, "Harry": {"_count": 1}, "Crabbe": {"_count": 1}, "nobody": {"_count": 1}}, "lifted": {"_count": 1, "the": {"_count": 1}}, "course": {"_count": 1, "through": {"_count": 1}}, "she": {"_count": 1, "looked": {"_count": 1}}, "Hermione": {"_count": 1, "wrenched": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "And": {"_count": 1, "you": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "rose": {"_count": 1, "in": {"_count": 1}}, "Hagrid": {"_count": 1, "launched": {"_count": 1}}, "exploded": {"_count": 1, "inside": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "broke": {"_count": 1, "A": {"_count": 1}}, "relishing": {"_count": 1, "the": {"_count": 1}}, "vibrated": {"_count": 1, "inside": {"_count": 1}}, "building": {"_count": 1, "inside": {"_count": 1}}, "mounted": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "unforgivable": {"_count": 1}}}, "swift": {"_count": 12, "piercing": {"_count": 1, "look": {"_count": 1}}, "sharp": {"_count": 1, "look": {"_count": 1}}, "walk": {"_count": 1, "his": {"_count": 1}}, "smile": {"_count": 2, "Lupin": {"_count": 1}, "but": {"_count": 1}}, "movement": {"_count": 1, "Hagrid": {"_count": 1}}, "searching": {"_count": 1, "look": {"_count": 1}}, "moment": {"_count": 1, "he": {"_count": 1}}, "kiss": {"_count": 1, "on": {"_count": 1}}, "footsteps": {"_count": 1, "here": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "fluid": {"_count": 1, "motion": {"_count": 1}}}, "lie": {"_count": 68, "to": {"_count": 11, "a": {"_count": 1}, "me": {"_count": 4}, "Lord": {"_count": 2}, "himself": {"_count": 1}, "you": {"_count": 1}, "tell": {"_count": 1}, "Voldemort": {"_count": 1}}, "down": {"_count": 5, "in": {"_count": 1}, "": {"_count": 3}, "for": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 9}, "!": {"_count": 2}}, "he": {"_count": 2, "thought": {"_count": 1}, "hadnt": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "bed": {"_count": 1}}, "flat": {"_count": 3, "": {"_count": 3}}, "low": {"_count": 2, "for": {"_count": 1}, "undisturbed": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 1}, "whispered": {"_count": 1}}, "here": {"_count": 2, "on": {"_count": 1}, "and": {"_count": 1}}, "back": {"_count": 1, "down": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "she": {"_count": 1}}, "you": {"_count": 1, "didnt": {"_count": 1}}, "still": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "awake": {"_count": 1, "for": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "so": {"_count": 1}, "say": {"_count": 2}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "through": {"_count": 1, "her": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}, "upon": {"_count": 1, "them": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "brought": {"_count": 1}}, "curled": {"_count": 1, "on": {"_count": 1}}, "As": {"_count": 1, "Voldemorts": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "there": {"_count": 1, "with": {"_count": 1}}, "silent": {"_count": 1, "and": {"_count": 1}}, "killed": {"_count": 1, "while": {"_count": 1}}}, "fetch": {"_count": 30, "anyone": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 6, "people": {"_count": 1}, "Snitch": {"_count": 1}, "Invisibility": {"_count": 1}, "eggnog": {"_count": 1}, "children": {"_count": 1}, "goblin": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Karkaroff": {"_count": 1}, "Snape": {"_count": 1}}, "me": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "you": {"_count": 2, "when": {"_count": 1}, "from": {"_count": 1}}, "their": {"_count": 1, "books": {"_count": 1}}, "yeh": {"_count": 1, "from": {"_count": 1}}, "Fleur": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "our": {"_count": 1, "informant": {"_count": 1}}, "it": {"_count": 1, "for": {"_count": 1}}, "him": {"_count": 3, "Harry": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 1}}, "Harry": {"_count": 1, "from": {"_count": 1}}, "your": {"_count": 1, "Invisibility": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Snape": {"_count": 2, "tonight": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "rucksack": {"_count": 1}}, "wine": {"_count": 1, "and": {"_count": 1}}}, "tackling": {"_count": 3, "a": {"_count": 1, "mountain": {"_count": 1}}, "the": {"_count": 1, "boggart": {"_count": 1}}, "Dark": {"_count": 1, "creatures": {"_count": 1}}}, "disappointed": {"_count": 56, "in": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 4, "since": {"_count": 1}, "recovered": {"_count": 1}, "Ive": {"_count": 1}, "rallied": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 22}}, "he": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 2, "reluctantly": {"_count": 1}, "crumpling": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "if": {"_count": 1, "his": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 2}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 3, "Bagman": {"_count": 1}, "Harry": {"_count": 1}, "though": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "discover": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "moans": {"_count": 1, "from": {"_count": 1}}, "Slughorn": {"_count": 1, "gave": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "Harry": {"_count": 1, "threw": {"_count": 1}}, "love": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 4, "his": {"_count": 1}, "this": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}}, "you": {"_count": 1, "said": {"_count": 1}}}, "hurt": {"_count": 163, "at": {"_count": 3, "all": {"_count": 2}, "any": {"_count": 1}}, "hit": {"_count": 1, "in": {"_count": 1}}, "Harry": {"_count": 5, "": {"_count": 1}, "at": {"_count": 1}, "before": {"_count": 1}, "said": {"_count": 1}, "Potter": {"_count": 1}}, "him": {"_count": 13, "if": {"_count": 1}, "": {"_count": 4}, "it": {"_count": 1}, "again": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 2}, "make": {"_count": 1}, "eh": {"_count": 1}, "and": {"_count": 1}}, "ter": {"_count": 1, "tell": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 15}, "?": {"_count": 6}, "!": {"_count": 2}}, "badly": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 4, "unicorn": {"_count": 1}, "most": {"_count": 1}, "innocent": {"_count": 1}, "prophecy": {"_count": 1}}, "yeh": {"_count": 2, "if": {"_count": 1}, "said": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "then": {"_count": 1}}, "you": {"_count": 11, "seen": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 5}, "or": {"_count": 1}, "and": {"_count": 1}, "we": {"_count": 1}, "Harry": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "them": {"_count": 5, "youve": {"_count": 1}, "Harry": {"_count": 1}, "dont": {"_count": 1}, "please": {"_count": 2}}, "but": {"_count": 4, "it": {"_count": 1}, "refusing": {"_count": 1}, "Madam": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 5, "have": {"_count": 2}, "hear": {"_count": 1}, "give": {"_count": 1}, "die": {"_count": 1}}, "anymore": {"_count": 2, "nor": {"_count": 1}, "does": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 3, "they": {"_count": 2}, "youve": {"_count": 1}}, "if": {"_count": 3, "he": {"_count": 1}, "I": {"_count": 2}}, "voice": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 1, "of": {"_count": 1}}, "much": {"_count": 2, "": {"_count": 1}, "worse": {"_count": 1}}, "would": {"_count": 1, "they": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "Black": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 3, "return": {"_count": 1}, "Divination": {"_count": 1}, "Umbridges": {"_count": 1}}, "a": {"_count": 4, "hair": {"_count": 1}, "lot": {"_count": 1}, "fly": {"_count": 1}, "baby": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 1, "afterward": {"_count": 1}}, "Malfoy": {"_count": 1, "though": {"_count": 1}}, "me": {"_count": 4, "during": {"_count": 1}, "for": {"_count": 1}, "instead": {"_count": 2}}, "any": {"_count": 1, "o": {"_count": 1}}, "and": {"_count": 3, "Harry": {"_count": 1}, "indignant": {"_count": 1}, "bewildered": {"_count": 1}}, "anyone": {"_count": 1, "if": {"_count": 1}}, "so": {"_count": 3, "badly": {"_count": 3}}, "didnt": {"_count": 1, "it": {"_count": 1}}, "Potter": {"_count": 1, "my": {"_count": 1}}, "Dudley": {"_count": 1, "how": {"_count": 1}}, "nobody": {"_count": 2, "can": {"_count": 1}, "though": {"_count": 1}}, "or": {"_count": 2, "anything": {"_count": 1}, "well": {"_count": 1}}, "when": {"_count": 2, "nobody": {"_count": 1}, "I": {"_count": 1}}, "more": {"_count": 1, "often": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "because": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "terribly": {"_count": 1, "": {"_count": 1}}, "Your": {"_count": 1, "father": {"_count": 1}}, "while": {"_count": 2, "on": {"_count": 1}, "he": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 4, "Hagrid": {"_count": 1}, "Malfoy": {"_count": 1}, "Harry": {"_count": 2}}, "foals": {"_count": 1, "I": {"_count": 1}}, "your": {"_count": 1, "chances": {"_count": 1}}, "This": {"_count": 1, "stuff": {"_count": 1}}, "You": {"_count": 1, "know": {"_count": 1}}, "Dumbledore": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "worse": {"_count": 1, "after": {"_count": 1}}, "anybody": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "there": {"_count": 1}}, "quite": {"_count": 1, "a": {"_count": 1}}, "Bill": {"_count": 1, "had": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "downstairs": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "her": {"_count": 2, "feelings": {"_count": 1}, "": {"_count": 1}}, "other": {"_count": 1, "wizards": {"_count": 1}}, "em": {"_count": 2, "dont": {"_count": 1}, "": {"_count": 1}}}, "finishing": {"_count": 18, "the": {"_count": 1, "feast": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 2, "nasty": {"_count": 1}, "letter": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "dead": {"_count": 1}}, "at": {"_count": 1, "midnight": {"_count": 1}}, "his": {"_count": 5, "stew": {"_count": 1}, "homework": {"_count": 1}, "Transfiguration": {"_count": 1}, "Herbology": {"_count": 1}, "thought": {"_count": 1}}, "that": {"_count": 1, "evening": {"_count": 1}}, "their": {"_count": 2, "homework": {"_count": 1}, "breakfasts": {"_count": 1}}, "him": {"_count": 1, "off": {"_count": 1}}, "touches": {"_count": 1, "to": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}}, "fullgrown": {"_count": 7, "mountain": {"_count": 1, "troll": {"_count": 1}}, "man": {"_count": 2, "all": {"_count": 1}, "to": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "unicorns": {"_count": 1, "they": {"_count": 1}}, "wizards": {"_count": 1, "cant": {"_count": 1}}, "Fawkes": {"_count": 1, "usually": {"_count": 1}}}, "grumbled": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "Ron": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}}, "admitted": {"_count": 25, "": {"_count": 7, ".": {"_count": 7}}, "to": {"_count": 3, "Hogwarts": {"_count": 1}, "the": {"_count": 1}, "having": {"_count": 1}}, "drying": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 1, "Rosmerta": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 6, "Harry": {"_count": 1}, "there": {"_count": 1}, "Sirius": {"_count": 1}, "he": {"_count": 1}, "living": {"_count": 1}, "the": {"_count": 1}}, "breeding": {"_count": 1, "creatures": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "herself": {"_count": 1, "that": {"_count": 1}}, "Hermione": {"_count": 1, "but": {"_count": 1}}, "grudgingly": {"_count": 1, "and": {"_count": 1}}}, "saving": {"_count": 22, "if": {"_count": 1, "we": {"_count": 1}}, "his": {"_count": 2, "own": {"_count": 1}, "neck": {"_count": 1}}, "Pettigrews": {"_count": 1, "life": {"_count": 1}}, "my": {"_count": 1, "pocket": {"_count": 1}}, "him": {"_count": 2, "a": {"_count": 1}, "Id": {"_count": 1}}, "you": {"_count": 1, "a": {"_count": 1}}, "Harrys": {"_count": 1, "life": {"_count": 1}}, "Crouch": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "seat": {"_count": 1}}, "their": {"_count": 1, "tellingsoff": {"_count": 1}}, "appliances": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "peoplething": {"_count": 1, "when": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "it": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "the": {"_count": 1, "Wizarding": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Hagrid": {"_count": 1, "he": {"_count": 1}}}, "Pig": {"_count": 11, "snout": {"_count": 1, "they": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "looked": {"_count": 1}}, "back": {"_count": 2, "with": {"_count": 1}, "pronto": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}}, "noisy": {"_count": 18, "": {"_count": 3, ".": {"_count": 3}}, "that": {"_count": 1, "evening": {"_count": 1}}, "tears": {"_count": 1, "": {"_count": 1}}, "rocky": {"_count": 1, "minutes": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "cage": {"_count": 1, "of": {"_count": 1}}, "warm": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "center": {"_count": 1, "of": {"_count": 1}}, "affair": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 2, "hissed": {"_count": 1}, "overcrowded": {"_count": 1}}, "than": {"_count": 1, "it": {"_count": 1}}, "progress": {"_count": 1, "down": {"_count": 1}}, "the": {"_count": 1, "lifts": {"_count": 1}}, "or": {"_count": 1, "bulky": {"_count": 1}}}, "embarrassed": {"_count": 27, "pause": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "than": {"_count": 1, "usual": {"_count": 1}}, "but": {"_count": 2, "really": {"_count": 1}, "said": {"_count": 1}}, "he": {"_count": 1, "repaired": {"_count": 1}}, "and": {"_count": 3, "had": {"_count": 1}, "bored": {"_count": 1}, "astonished": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "were": {"_count": 1, "about": {"_count": 1}}, "himself": {"_count": 1, "once": {"_count": 1}}, "silence": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "knees": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "look": {"_count": 1}}, "smile": {"_count": 1, "upon": {"_count": 1}}, "one": {"_count": 1, "and": {"_count": 1}}, "nows": {"_count": 1, "not": {"_count": 1}}}, "ending": {"_count": 10, "up": {"_count": 2, "liking": {"_count": 1}, "in": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 4}, "the": {"_count": 1}}, "to": {"_count": 1, "what": {"_count": 1}}, "his": {"_count": 1, "relationship": {"_count": 1}}}, "twelvefoot": {"_count": 2, "mountain": {"_count": 1, "troll": {"_count": 1}}, "wings": {"_count": 1, "flapped": {"_count": 1}}}, "QUIDDITCH": {"_count": 5, "As": {"_count": 1, "they": {"_count": 1}}, "FINAL": {"_count": 1, "He": {"_count": 1}}, "WORLD": {"_count": 2, "CUP": {"_count": 2}}, "LEAGUE": {"_count": 1, "How": {"_count": 1}}}, "November": {"_count": 9, "the": {"_count": 2, "weather": {"_count": 1}, "twentyfourth": {"_count": 1}}, "Harrys": {"_count": 1, "mood": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "as": {"_count": 1, "quickly": {"_count": 1}}, "afternoon": {"_count": 1, "she": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "arrived": {"_count": 1, "cold": {"_count": 1}}}, "icy": {"_count": 45, "gray": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "numb": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "shower": {"_count": 1, "": {"_count": 1}}, "blue": {"_count": 1, "spotlight": {"_count": 1}}, "draft": {"_count": 1, "that": {"_count": 1}}, "sheets": {"_count": 1, "": {"_count": 1}}, "jet": {"_count": 1, "that": {"_count": 1}}, "mist": {"_count": 1, "": {"_count": 1}}, "cold": {"_count": 2, "penetrating": {"_count": 1}, "Ron": {"_count": 1}}, "wind": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "depths": {"_count": 1, "were": {"_count": 1}}, "water": {"_count": 6, "": {"_count": 4}, "a": {"_count": 1}, "that": {"_count": 1}}, "lake": {"_count": 1, "water": {"_count": 1}}, "anymore": {"_count": 1, "either": {"_count": 1}}, "voice": {"_count": 1, "right": {"_count": 1}}, "surge": {"_count": 1, "of": {"_count": 1}}, "mantle": {"_count": 1, "over": {"_count": 1}}, "fingers": {"_count": 1, "were": {"_count": 1}}, "flooded": {"_count": 1, "the": {"_count": 1}}, "drafts": {"_count": 1, "that": {"_count": 1}}, "air": {"_count": 2, "": {"_count": 1}, "stinging": {"_count": 1}}, "sweat": {"_count": 1, "his": {"_count": 1}}, "winter": {"_count": 1, "air": {"_count": 1}}, "blackness": {"_count": 1, "Snapes": {"_count": 1}}, "sneering": {"_count": 1, "indifference": {"_count": 1}}, "windows": {"_count": 1, "once": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "knife": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "waterlogged": {"_count": 1}}, "feeling": {"_count": 1, "on": {"_count": 1}}, "skin": {"_count": 1, "they": {"_count": 1}}, "seawater": {"_count": 1, "that": {"_count": 1}}, "bite": {"_count": 1, "harder": {"_count": 1}}}, "chilled": {"_count": 2, "steel": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "steel": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "did": {"_count": 1}}, "like": {"_count": 1, "flesh": {"_count": 1}}}, "frost": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "with": {"_count": 1, "hundreds": {"_count": 1}}, "its": {"_count": 1, "icy": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}}, "defrosting": {"_count": 1, "broomsticks": {"_count": 1, "on": {"_count": 1}}}, "bundled": {"_count": 4, "up": {"_count": 2, "in": {"_count": 1}, "Crookshanks": {"_count": 1}}, "their": {"_count": 1, "scarves": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "moleskin": {"_count": 10, "overcoat": {"_count": 7, "rabbit": {"_count": 1}, "": {"_count": 4}, "and": {"_count": 1}, "with": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "vest": {"_count": 1, "": {"_count": 1}}, "waistcoat": {"_count": 1, "in": {"_count": 1}}}, "fur": {"_count": 14, "gloves": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "vanished": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "boils": {"_count": 1}}, "was": {"_count": 1, "thick": {"_count": 1}}, "suddenly": {"_count": 1, "stood": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "something": {"_count": 1}, "a": {"_count": 1}}, "capes": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 1, "remembered": {"_count": 1}}, "collar": {"_count": 1, "clutching": {"_count": 1}}}, "beaverskin": {"_count": 3, "boots": {"_count": 1, "": {"_count": 1}}, "coat": {"_count": 2, "beaming": {"_count": 1}, "": {"_count": 1}}}, "season": {"_count": 14, "had": {"_count": 1, "begun": {"_count": 1}}, "I": {"_count": 1, "believe": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 2, "approaching": {"_count": 1}, "looming": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "But": {"_count": 1, "what": {"_count": 1}}, "Gryffindor": {"_count": 2, "versus": {"_count": 2}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "begun": {"_count": 26, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 21, "shudder": {"_count": 1}, "smoke": {"_count": 2}, "see": {"_count": 1}, "shine": {"_count": 1}, "worry": {"_count": 1}, "spin": {"_count": 3}, "swing": {"_count": 1}, "fill": {"_count": 1}, "summon": {"_count": 1}, "run": {"_count": 1}, "rotate": {"_count": 1}, "use": {"_count": 1}, "eclipse": {"_count": 1}, "play": {"_count": 1}, "prickle": {"_count": 1}, "tremble": {"_count": 1}, "throb": {"_count": 1}, "express": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "spinning": {"_count": 1}}}, "versus": {"_count": 8, "Slytherin": {"_count": 3, "": {"_count": 1}, "first": {"_count": 1}, "drew": {"_count": 1}}, "Bulgaria": {"_count": 1, "Monday": {"_count": 1}}, "two": {"_count": 1, "hundred": {"_count": 1}}, "Ravenclaw": {"_count": 1, "was": {"_count": 1}}, "Horcruxes": {"_count": 1, "": {"_count": 1}}, "goblins": {"_count": 1, "or": {"_count": 1}}}, "Hardly": {"_count": 10, "anyone": {"_count": 3, "had": {"_count": 1}, "connected": {"_count": 1}, "knew": {"_count": 1}}, "surprising": {"_count": 1, "overwork": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "daring": {"_count": 2, "to": {"_count": 2}}, "chortled": {"_count": 1, "Dirk": {"_count": 1}}, "any": {"_count": 1, "wizards": {"_count": 1}}, "aware": {"_count": 1, "of": {"_count": 1}}}, "weapon": {"_count": 41, "Harry": {"_count": 3, "should": {"_count": 1}, "thought": {"_count": 1}, "finished": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 8}, "?": {"_count": 3}, "!": {"_count": 1}}, "and": {"_count": 2, "staring": {"_count": 1}, "shield": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "Sirius": {"_count": 1, "mentioned": {"_count": 1}}, "could": {"_count": 1, "perpetrate": {"_count": 1}}, "over": {"_count": 1, "them": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "the": {"_count": 1, "thing": {"_count": 1}}, "something": {"_count": 1, "funny": {"_count": 1}}, "probably": {"_count": 1, "made": {"_count": 1}}, "for": {"_count": 1, "Voldemort": {"_count": 1}}, "his": {"_count": 1, "knowledge": {"_count": 1}}, "or": {"_count": 1, "whatever": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "you": {"_count": 1, "could": {"_count": 1}}, "is": {"_count": 2, "it": {"_count": 1}, "something": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 2, "has": {"_count": 1}, "could": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "would": {"_count": 1}}, "more": {"_count": 1, "powerful": {"_count": 1}}}, "leaked": {"_count": 10, "out": {"_count": 8, "somehow": {"_count": 1}, "of": {"_count": 4}, "down": {"_count": 1}, "but": {"_count": 1}, "anyway": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "fake": {"_count": 1}}}, "mattress": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "he": {"_count": 2, "saw": {"_count": 1}, "closed": {"_count": 1}}, "descended": {"_count": 1, "a": {"_count": 1}}, "creak": {"_count": 1, "as": {"_count": 1}}}, "committing": {"_count": 3, "a": {"_count": 1, "Quidditch": {"_count": 1}}, "murder": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "World": {"_count": 69, "Cup": {"_count": 66, "match": {"_count": 1}, "": {"_count": 22}, "this": {"_count": 1}, "is": {"_count": 2}, "My": {"_count": 1}, "and": {"_count": 6}, "takes": {"_count": 1}, "not": {"_count": 1}, "Harry": {"_count": 2}, "thing": {"_count": 1}, "only": {"_count": 1}, "The": {"_count": 1}, "the": {"_count": 2}, "George": {"_count": 1}, "sped": {"_count": 1}, "wouldnt": {"_count": 1}, "itself": {"_count": 1}, "said": {"_count": 7}, "remember": {"_count": 1}, "stadium": {"_count": 1}, "always": {"_count": 1}, "didnt": {"_count": 1}, "Look": {"_count": 1}, "was": {"_count": 1}, "but": {"_count": 2}, "that": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 1}, "last": {"_count": 1}, "carried": {"_count": 1}}, "Championship": {"_count": 1, "Jordan": {"_count": 1}}, "Quidditch": {"_count": 1, "Cup": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}}, "1473": {"_count": 1, "that": {"_count": 1, "Seekers": {"_count": 1}}}, "smallest": {"_count": 19, "and": {"_count": 1, "fastest": {"_count": 1}}, "bottle": {"_count": 2, "will": {"_count": 1}, "": {"_count": 1}}, "change": {"_count": 1, "of": {"_count": 1}}, "sign": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 4, "terrified": {"_count": 1}, "double": {"_count": 1}, "the": {"_count": 1}, "frowns": {"_count": 1}}, "person": {"_count": 1, "on": {"_count": 1}}, "could": {"_count": 1, "slip": {"_count": 1}}, "Muggle": {"_count": 1, "child": {"_count": 1}}, "one": {"_count": 1, "she": {"_count": 1}}, "possible": {"_count": 1, "amount": {"_count": 1}}, "investigation": {"_count": 1, "but": {"_count": 1}}, "bedroom": {"_count": 4, "e": {"_count": 1}, "Harry": {"_count": 1}, "which": {"_count": 1}, "a": {"_count": 1}}}, "rarely": {"_count": 21, "died": {"_count": 1, "playing": {"_count": 1}}, "been": {"_count": 1, "so": {"_count": 1}}, "there": {"_count": 1, "for": {"_count": 1}}, "seen": {"_count": 2, "Mr": {"_count": 1}, "out": {"_count": 1}}, "transported": {"_count": 1, "overexcited": {"_count": 1}}, "heard": {"_count": 3, "there": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}}, "got": {"_count": 1, "any": {"_count": 1}}, "saw": {"_count": 2, "anywhere": {"_count": 1}, "daylight": {"_count": 1}}, "gone": {"_count": 1, "so": {"_count": 1}}, "left": {"_count": 2, "her": {"_count": 1}, "Harry": {"_count": 1}}, "taught": {"_count": 1, "anyone": {"_count": 1}}, "appeared": {"_count": 1, "at": {"_count": 1}}, "felt": {"_count": 1, "more": {"_count": 1}}, "spoke": {"_count": 1, "of": {"_count": 1}}, "weepy": {"_count": 1, "": {"_count": 1}}, "ventured": {"_count": 1, "this": {"_count": 1}}}, "referees": {"_count": 1, "had": {"_count": 1, "been": {"_count": 1}}}, "Sahara": {"_count": 1, "Desert": {"_count": 1, "": {"_count": 1}}}, "Desert": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "relaxed": {"_count": 19, "about": {"_count": 1, "breaking": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "but": {"_count": 1, "it": {"_count": 1}}, "only": {"_count": 1, "dimly": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 1}, "their": {"_count": 1}}, "even": {"_count": 1, "cheerful": {"_count": 1}}, "Tonks": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 3, "vulnerable": {"_count": 1}, "unfazed": {"_count": 1}, "as": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "hand": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "his": {"_count": 1, "grip": {"_count": 1}}}, "saved": {"_count": 81, "her": {"_count": 6, "from": {"_count": 1}, "": {"_count": 3}, "life": {"_count": 1}, "sister": {"_count": 1}}, "me": {"_count": 6, "from": {"_count": 2}, "but": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}}, "his": {"_count": 3, "life": {"_count": 2}, "snore": {"_count": 1}}, "the": {"_count": 6, "Stone": {"_count": 2}, "necessity": {"_count": 2}, "trouble": {"_count": 1}, "goal": {"_count": 1}}, "Harry": {"_count": 3, "from": {"_count": 2}, "then": {"_count": 1}}, "a": {"_count": 3, "teacher": {"_count": 1}, "lot": {"_count": 1}, "goal": {"_count": 1}}, "you": {"_count": 4, "from": {"_count": 3}, "": {"_count": 1}}, "them": {"_count": 1, "seats": {"_count": 1}}, "your": {"_count": 4, "life": {"_count": 3}, "neck": {"_count": 1}}, "my": {"_count": 10, "life": {"_count": 7}, "neck": {"_count": 1}, "I": {"_count": 1}, "sisters": {"_count": 1}}, "all": {"_count": 1, "our": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 2}, "with": {"_count": 1}, "from": {"_count": 1}}, "an": {"_count": 1, "innocent": {"_count": 1}}, "Pettigrews": {"_count": 1, "life": {"_count": 1}}, "Pettigrew": {"_count": 1, "too": {"_count": 1}}, "er": {"_count": 1, "she": {"_count": 1}}, "that": {"_count": 1, "Sorcerous": {"_count": 1}}, "it": {"_count": 1, "did": {"_count": 1}}, "fer": {"_count": 1, "yer": {"_count": 1}}, "Dads": {"_count": 1, "life": {"_count": 1}}, "magpielike": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "four": {"_count": 2, "penalties": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 1, "two": {"_count": 1}}, "five": {"_count": 1, "": {"_count": 1}}, "goals": {"_count": 1, "with": {"_count": 1}}, "everything": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "every": {"_count": 1, "thing": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Arthur": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 1, "said": {"_count": 1}}, "Harrys": {"_count": 2, "life": {"_count": 2}}, "if": {"_count": 1, "such": {"_count": 1}}, "their": {"_count": 1, "lives": {"_count": 1}}, "our": {"_count": 2, "lives": {"_count": 2}}, "With": {"_count": 1, "a": {"_count": 1}}}, "conjured": {"_count": 39, "them": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 4, "a": {"_count": 2}, "candles": {"_count": 1}, "one": {"_count": 1}}, "a": {"_count": 4, "large": {"_count": 1}, "raised": {"_count": 1}, "Patronus": {"_count": 1}, "white": {"_count": 1}}, "heavy": {"_count": 1, "manacles": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "stretchers": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 3}}, "my": {"_count": 1, "Patronus": {"_count": 1}}, "tablecloths": {"_count": 1, "from": {"_count": 1}}, "fires": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 11, "skull": {"_count": 2}, "Dark": {"_count": 4}, "Mark": {"_count": 5}}, "here": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "galloping": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "two": {"_count": 1, "large": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "from": {"_count": 1, "thin": {"_count": 1}}}, "jar": {"_count": 37, "": {"_count": 12, ".": {"_count": 12}}, "in": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 2, "Fleetwoods": {"_count": 1}, "colorchange": {"_count": 1}}, "caught": {"_count": 1, "one": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "almost": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "sealed": {"_count": 1, "itself": {"_count": 1}}, "that": {"_count": 1, "stood": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "it": {"_count": 2, "cracked": {"_count": 1}, "had": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "he": {"_count": 1, "pelted": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}}, "yard": {"_count": 39, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "and": {"_count": 6, "Harry": {"_count": 2}, "dived": {"_count": 1}, "then": {"_count": 1}, "as": {"_count": 1}, "onto": {"_count": 1}}, "scattering": {"_count": 1, "chickens": {"_count": 1}}, "carrying": {"_count": 1, "Ginnys": {"_count": 1}}, "Harry": {"_count": 1, "turning": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "after": {"_count": 1, "Fred": {"_count": 1}}, "came": {"_count": 1, "running": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "looked": {"_count": 1, "blurred": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "his": {"_count": 1, "hornrimmed": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "of": {"_count": 1, "the": {"_count": 1}}, "Ginny": {"_count": 1, "took": {"_count": 1}}, "anymore": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "great": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "was": {"_count": 1, "foiled": {"_count": 1}}}, "limping": {"_count": 18, "": {"_count": 2, ".": {"_count": 2}}, "forward": {"_count": 3, "": {"_count": 1}, "a": {"_count": 1}, "as": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 2, "them": {"_count": 2}}, "nearer": {"_count": 1, "still": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "slightly": {"_count": 2, "his": {"_count": 1}, "at": {"_count": 1}}, "rapidly": {"_count": 1, "toward": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "looking": {"_count": 1}}}, "Unfortunately": {"_count": 20, "something": {"_count": 1, "about": {"_count": 1}}, "you": {"_count": 1, "needed": {"_count": 1}}, "the": {"_count": 5, "teachers": {"_count": 1}, "potion": {"_count": 1}, "Longbottoms": {"_count": 1}, "back": {"_count": 1}, "brilliance": {"_count": 1}}, "while": {"_count": 1, "everyone": {"_count": 1}}, "classes": {"_count": 1, "will": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "Rons": {"_count": 1, "mouth": {"_count": 1}}, "Angelina": {"_count": 1, "did": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}, "Belby": {"_count": 1, "had": {"_count": 1}}, "however": {"_count": 2, "all": {"_count": 1}, "no": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "said": {"_count": 1, "Scrimgeour": {"_count": 1}}}, "guilty": {"_count": 43, "faces": {"_count": 2, "caught": {"_count": 1}, "": {"_count": 1}}, "face": {"_count": 1, "to": {"_count": 1}}, "Severus": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "one": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 1, "Lockhart": {"_count": 1}}, "an": {"_count": 1, "whos": {"_count": 1}}, "about": {"_count": 4, "his": {"_count": 1}, "betraying": {"_count": 1}, "giving": {"_count": 1}, "breaking": {"_count": 1}}, "feelings": {"_count": 1, "every": {"_count": 1}}, "wand": {"_count": 1, "in": {"_count": 1}}, "squirm": {"_count": 1, "but": {"_count": 1}}, "that": {"_count": 1, "hed": {"_count": 1}}, "not": {"_count": 1, "on": {"_count": 1}}, "himself": {"_count": 1, "because": {"_count": 1}}, "weight": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 1}, "cowardice": {"_count": 1}, "great": {"_count": 1}, "nothing": {"_count": 1}}, "ones": {"_count": 1, "convenience": {"_count": 1}}, "he": {"_count": 1, "turned": {"_count": 1}}, "when": {"_count": 1, "Winky": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "thinking": {"_count": 1, "its": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "start": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "having": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "it": {"_count": 1, "wont": {"_count": 1}}, "and": {"_count": 1, "turned": {"_count": 1}}, "secrets": {"_count": 1, "that": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "outcomes": {"_count": 1, "of": {"_count": 1}}}, "limped": {"_count": 17, "over": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "away": {"_count": 2, "": {"_count": 1}, "without": {"_count": 1}}, "downstairs": {"_count": 1, "into": {"_count": 1}}, "around": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "heavily": {"_count": 1, "toward": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "off": {"_count": 1, "into": {"_count": 1}}, "in": {"_count": 1, "after": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Library": {"_count": 3, "books": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "Wonder": {"_count": 18, "whats": {"_count": 2, "wrong": {"_count": 1}, "up": {"_count": 1}}, "how": {"_count": 2, "long": {"_count": 1}, "the": {"_count": 1}}, "what": {"_count": 8, "its": {"_count": 1}, "Potters": {"_count": 1}, "he": {"_count": 1}, "hes": {"_count": 1}, "theyll": {"_count": 1}, "Shh": {"_count": 1}, "the": {"_count": 1}, "Crouch": {"_count": 1}}, "if": {"_count": 3, "she": {"_count": 1}, "I": {"_count": 1}, "Percy": {"_count": 1}}, "why": {"_count": 1, "that": {"_count": 1}}, "where": {"_count": 2, "shes": {"_count": 1}, "his": {"_count": 1}}}, "hurting": {"_count": 35, "him": {"_count": 3, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "its": {"_count": 1, "happened": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "again": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "is": {"_count": 1}}, "anyone": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 4, "you": {"_count": 1}, "all": {"_count": 1}, "have": {"_count": 1}, "Im": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "badly": {"_count": 1}}, "is": {"_count": 1, "an": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "himself": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "warned": {"_count": 1}}, "if": {"_count": 1, "only": {"_count": 1}}, "on": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 4, "all": {"_count": 1}, "like": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "precisely": {"_count": 1, "but": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "these": {"_count": 1, "people": {"_count": 1}}}, "answers": {"_count": 21, "anyway": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "if": {"_count": 1, "youve": {"_count": 1}}, "he": {"_count": 3, "got": {"_count": 1}, "scratched": {"_count": 1}, "had": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "these": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 2, "would": {"_count": 1}, "used": {"_count": 1}}, "no": {"_count": 1, "Albus": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "convinced": {"_count": 1, "themselves": {"_count": 1}}, "There": {"_count": 1, "were": {"_count": 1}}}, "restless": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "miserable": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "disturbed": {"_count": 1, "night": {"_count": 1}}, "energy": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "shifting": {"_count": 1, "of": {"_count": 1}}, "night": {"_count": 1, "was": {"_count": 1}}}, "staffroom": {"_count": 26, "and": {"_count": 2, "knocked": {"_count": 1}, "follow": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "fire": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "door": {"_count": 4, "banging": {"_count": 1}, "banged": {"_count": 1}, "": {"_count": 2}}, "a": {"_count": 1, "long": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "to": {"_count": 1, "collect": {"_count": 1}}, "carrying": {"_count": 1, "Hedwig": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "anymore": {"_count": 1, "said": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "ajar": {"_count": 22, "and": {"_count": 4, "peered": {"_count": 1}, "Percy": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 9, ".": {"_count": 8}, "!": {"_count": 1}}, "of": {"_count": 2, "Cockroach": {"_count": 1}, "dead": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "revealing": {"_count": 1, "a": {"_count": 1}}, "straight": {"_count": 1, "ahead": {"_count": 1}}, "reminding": {"_count": 1, "Harry": {"_count": 1}}}, "scene": {"_count": 77, "met": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "there": {"_count": 1}}, "followed": {"_count": 1, "by": {"_count": 1}}, "of": {"_count": 8, "the": {"_count": 3}, "such": {"_count": 1}, "total": {"_count": 1}, "Harry": {"_count": 1}, "his": {"_count": 1}, "so": {"_count": 1}}, "was": {"_count": 3, "just": {"_count": 1}, "deserted": {"_count": 1}, "Hagrid": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "cleared": {"_count": 1, "somewhat": {"_count": 1}}, "Peeves": {"_count": 1, "always": {"_count": 1}}, "whirled": {"_count": 1, "the": {"_count": 1}}, "didnt": {"_count": 1, "look": {"_count": 1}}, "he": {"_count": 3, "had": {"_count": 2}, "was": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "Black": {"_count": 1}}, "the": {"_count": 2, "twins": {"_count": 1}, "likes": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 2, "this": {"_count": 1}, "Trelawneys": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 2}, "front": {"_count": 1}, "Dumbledores": {"_count": 1}, "which": {"_count": 1}, "his": {"_count": 1}}, "they": {"_count": 1, "ought": {"_count": 1}}, "Snape": {"_count": 1, "in": {"_count": 1}}, "flickered": {"_count": 1, "oddly": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "involving": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "above": {"_count": 1}, "Dumbledore": {"_count": 1}}, "were": {"_count": 1, "unable": {"_count": 1}}, "seemed": {"_count": 1, "momentarily": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "we": {"_count": 2, "have": {"_count": 2}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "lest": {"_count": 1, "Filch": {"_count": 1}}, "an": {"_count": 1, "apparently": {"_count": 1}}, "moments": {"_count": 1, "after": {"_count": 1}}, "and": {"_count": 2, "with": {"_count": 1}, "know": {"_count": 1}}, "noting": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "dissolved": {"_count": 4, "and": {"_count": 1}, "again": {"_count": 1}, "once": {"_count": 1}, "": {"_count": 1}}, "reformed": {"_count": 1, "": {"_count": 1}}, "changed": {"_count": 2, "": {"_count": 2}}, "took": {"_count": 1, "a": {"_count": 1}}, "shifted": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "thought": {"_count": 1, "absurdly": {"_count": 1}}}, "bloody": {"_count": 32, "and": {"_count": 2, "mangled": {"_count": 1}, "vicious": {"_count": 1}}, "handkerchief": {"_count": 1, "": {"_count": 1}}, "lump": {"_count": 1, "on": {"_count": 1}}, "eye": {"_count": 1, "sockets": {"_count": 1}}, "tatters": {"_count": 1, "": {"_count": 1}}, "eyeball": {"_count": 1, "": {"_count": 1}}, "light": {"_count": 1, "over": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 2}}, "nose": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "leg": {"_count": 1, "with": {"_count": 1}}, "George": {"_count": 1, "was": {"_count": 1}}, "greentinged": {"_count": 1, "steak": {"_count": 1}}, "mass": {"_count": 1, "upon": {"_count": 1}}, "knife": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "lip": {"_count": 1, "and": {"_count": 1}}, "look": {"_count": 1, "though": {"_count": 1}}, "tinge": {"_count": 1, "cast": {"_count": 1}}, "footprint": {"_count": 1, "that": {"_count": 1}}, "forehead": {"_count": 1, "": {"_count": 1}}, "trail": {"_count": 2, "of": {"_count": 2}}, "said": {"_count": 1, "Thanks": {"_count": 1}}, "but": {"_count": 2, "that": {"_count": 1}, "otherwise": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "bandage": {"_count": 1, "over": {"_count": 1}}, "fools": {"_count": 1, "he": {"_count": 1}}, "wound": {"_count": 1, "at": {"_count": 1}}}, "mangled": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "body": {"_count": 1, "say": {"_count": 1}}, "face": {"_count": 2, "so": {"_count": 1}, "": {"_count": 1}}, "nose": {"_count": 1, "became": {"_count": 1}}, "remains": {"_count": 2, "of": {"_count": 2}}, "and": {"_count": 1, "nothing": {"_count": 1}}, "staircase": {"_count": 1, "": {"_count": 1}}}, "bandages": {"_count": 13, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 3, "with": {"_count": 1}, "bound": {"_count": 1}, "celebrated": {"_count": 1}}, "was": {"_count": 1, "Dobby": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "rapped": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "Id": {"_count": 1}}, "changed": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "an": {"_count": 1, "stuff": {"_count": 1}}}, "Blasted": {"_count": 1, "thing": {"_count": 1, "Snape": {"_count": 1}}}, "GET": {"_count": 13, "OUT": {"_count": 2, "": {"_count": 1}, "OF": {"_count": 1}}, "BEHIND": {"_count": 1, "THAT": {"_count": 1}}, "HOLD": {"_count": 1, "OF": {"_count": 1}}, "OFF": {"_count": 1, "YOU": {"_count": 1}}, "HIM": {"_count": 1, "OUT": {"_count": 1}}, "ON": {"_count": 1, "WITH": {"_count": 1}}, "THAT": {"_count": 1, "THING": {"_count": 1}}, "IT": {"_count": 1, "": {"_count": 1}}, "TO": {"_count": 1, "BED": {"_count": 1}}, "PAST": {"_count": 1, "DRAGONS": {"_count": 1}}, "DOWN": {"_count": 1, "HERE": {"_count": 1}}, "GOING": {"_count": 1, "": {"_count": 1}}}, "breathlessly": {"_count": 46, "": {"_count": 29, ".": {"_count": 29}}, "taking": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "sunk": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 1, "news": {"_count": 1}}, "pushing": {"_count": 1, "a": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "raising": {"_count": 2, "her": {"_count": 2}}, "as": {"_count": 1, "they": {"_count": 1}}, "Well": {"_count": 1, "what": {"_count": 1}}, "plunging": {"_count": 1, "her": {"_count": 1}}, "glancing": {"_count": 1, "up": {"_count": 1}}, "skirting": {"_count": 1, "the": {"_count": 1}}, "please": {"_count": 1, "dont": {"_count": 1}}, "watching": {"_count": 1, "his": {"_count": 1}}, "pulling": {"_count": 1, "kettle": {"_count": 1}}, "pointing": {"_count": 1, "back": {"_count": 1}}}, "diversion": {"_count": 13, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 2, "dropping": {"_count": 1}, "turning": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "how": {"_count": 1, "is": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 1, "already": {"_count": 1}}, "going": {"_count": 1, "off": {"_count": 1}}, "George": {"_count": 1, "had": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}}, "saints": {"_count": 1, "or": {"_count": 1, "something": {"_count": 1}}}, "buzzing": {"_count": 18, "with": {"_count": 3, "the": {"_count": 1}, "talk": {"_count": 1}, "complex": {"_count": 1}}, "because": {"_count": 1, "you": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 2, "though": {"_count": 2}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "didnt": {"_count": 1}}, "around": {"_count": 2, "no": {"_count": 1}, "for": {"_count": 1}}, "they": {"_count": 1, "hung": {"_count": 1}}, "distractingly": {"_count": 1, "against": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "snoring": {"_count": 10, "loudly": {"_count": 3, "but": {"_count": 1}, "": {"_count": 2}}, "and": {"_count": 1, "drooling": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "master": {"_count": 1, "": {"_count": 1}}, "gently": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "deeply": {"_count": 1, "": {"_count": 1}}}, "dawned": {"_count": 14, "very": {"_count": 1, "bright": {"_count": 1}}, "cold": {"_count": 1, "and": {"_count": 1}}, "suddenly": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 4, "Hermione": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "Harry": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "sullen": {"_count": 1, "and": {"_count": 1}}, "bright": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}, "upon": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "without": {"_count": 1, "any": {"_count": 1}}}, "fried": {"_count": 8, "sausages": {"_count": 1, "and": {"_count": 1}}, "egg": {"_count": 3, "dangling": {"_count": 1}, "whole": {"_count": 1}, "": {"_count": 1}}, "eggs": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 1, "egg": {"_count": 1}}, "fish": {"_count": 1, "lingered": {"_count": 1}}, "tomatoes": {"_count": 1, "": {"_count": 1}}}, "wheedled": {"_count": 2, "Hermione": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "memory": {"_count": 1}}}, "strength": {"_count": 42, "said": {"_count": 2, "Seamus": {"_count": 1}, "Dumbledore": {"_count": 1}}, "and": {"_count": 5, "power": {"_count": 1}, "performed": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}, "plopped": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "she": {"_count": 1, "could": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "it": {"_count": 1, "cleared": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 1}, "possessed": {"_count": 1}, "had": {"_count": 1}}, "leave": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 3, "character": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 1, "my": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "Harry": {"_count": 1, "understood": {"_count": 1}}, "braced": {"_count": 1, "for": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 4, "lift": {"_count": 1}, "get": {"_count": 1}, "do": {"_count": 1}, "stop": {"_count": 1}}, "take": {"_count": 1, "risks": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "left": {"_count": 1, "for": {"_count": 1}}}, "clobbered": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "pitch": {"_count": 74, "": {"_count": 14, ".": {"_count": 14}}, "theyre": {"_count": 1, "three": {"_count": 1}}, "blackness": {"_count": 1, "and": {"_count": 1}}, "carrying": {"_count": 1, "an": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "dark": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 1, "Angelina": {"_count": 1}}, "specially": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "while": {"_count": 1, "half": {"_count": 1}}, "was": {"_count": 1, "no": {"_count": 1}}, "at": {"_count": 2, "last": {"_count": 1}, "seven": {"_count": 1}}, "their": {"_count": 1, "broomsticks": {"_count": 1}}, "to": {"_count": 4, "where": {"_count": 1}, "another": {"_count": 1}, "tumultuous": {"_count": 1}, "deafening": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 2}, "practice": {"_count": 1}, "Slytherin": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 2, "future": {"_count": 1}, "search": {"_count": 1}}, "visibility": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 6, "through": {"_count": 1}, "nice": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "check": {"_count": 1, "out": {"_count": 1}}, "without": {"_count": 1, "signposts": {"_count": 1}}, "gazing": {"_count": 1, "around": {"_count": 1}}, "hovering": {"_count": 1, "before": {"_count": 1}}, "cried": {"_count": 1, "Lee": {"_count": 1}}, "again": {"_count": 2, "staring": {"_count": 1}, "scanning": {"_count": 1}}, "going": {"_count": 1, "in": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "both": {"_count": 1, "panting": {"_count": 1}}, "black": {"_count": 2, "snowflecked": {"_count": 1}, "and": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "her": {"_count": 1, "shiny": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 2, "passed": {"_count": 1}, "did": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "snorting": {"_count": 1, "with": {"_count": 1}}, "arm": {"_count": 2, "in": {"_count": 2}}, "Ron": {"_count": 1, "saved": {"_count": 1}}, "with": {"_count": 3, "Ginny": {"_count": 1}, "the": {"_count": 1}, "Ron": {"_count": 1}}, "but": {"_count": 1, "all": {"_count": 1}}, "She": {"_count": 1, "stopped": {"_count": 1}}}, "Many": {"_count": 39, "students": {"_count": 2, "had": {"_count": 1}, "ran": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "people": {"_count": 6, "had": {"_count": 1}, "were": {"_count": 4}, "in": {"_count": 1}}, "Severus": {"_count": 1, "each": {"_count": 1}}, "qualified": {"_count": 1, "wizards": {"_count": 1}}, "regarded": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 16, "the": {"_count": 8}, "your": {"_count": 1}, "his": {"_count": 2}, "them": {"_count": 1}, "those": {"_count": 2}, "our": {"_count": 1}, "us": {"_count": 1}}, "chairs": {"_count": 1, "had": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "miles": {"_count": 1, "away": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "and": {"_count": 1}}, "thought": {"_count": 1, "given": {"_count": 1}}, "heads": {"_count": 1, "were": {"_count": 1}}, "leaned": {"_count": 1, "forward": {"_count": 1}}, "happy": {"_count": 1, "returns": {"_count": 1}}, "small": {"_count": 1, "villages": {"_count": 1}}, "voices": {"_count": 1, "inside": {"_count": 1}}, "lives": {"_count": 1, "could": {"_count": 1}}}, "binoculars": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "around": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "peering": {"_count": 1}}, "but": {"_count": 1, "instead": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}}, "fan": {"_count": 16, "up": {"_count": 1, "in": {"_count": 1}}, "bet": {"_count": 1, "its": {"_count": 1}}, "club": {"_count": 4, "": {"_count": 2}, "from": {"_count": 1}, "but": {"_count": 1}}, "mail": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "of": {"_count": 2, "mine": {"_count": 1}, "Kreachers": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "behind": {"_count": 1}}, "clubll": {"_count": 1, "be": {"_count": 1}}, "magazine": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "painted": {"_count": 21, "a": {"_count": 1, "large": {"_count": 1}}, "crimson": {"_count": 1, "": {"_count": 1}}, "shocking": {"_count": 1, "pink": {"_count": 1}}, "wearing": {"_count": 1, "the": {"_count": 1}}, "kittens": {"_count": 1, "behind": {"_count": 1}}, "the": {"_count": 1, "cloudless": {"_count": 1}}, "and": {"_count": 1, "smiled": {"_count": 1}}, "gold": {"_count": 1, "stuffed": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "image": {"_count": 1, "of": {"_count": 1}}, "blindfold": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "Then": {"_count": 1}}, "with": {"_count": 2, "flowers": {"_count": 1}, "stars": {"_count": 1}}, "faces": {"_count": 1, "Harry": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "tunnel": {"_count": 1, "and": {"_count": 1}}, "figures": {"_count": 1, "raced": {"_count": 1}}, "knight": {"_count": 1, "Sir": {"_count": 1}}, "Dilys": {"_count": 1, "Derwent": {"_count": 1}}, "portraits": {"_count": 1, "thinking": {"_count": 1}}}, "banner": {"_count": 14, "on": {"_count": 1, "one": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "showing": {"_count": 1, "the": {"_count": 1}}, "stretched": {"_count": 2, "across": {"_count": 1}, "between": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "from": {"_count": 1, "somewhere": {"_count": 1}}, "that": {"_count": 1, "Lee": {"_count": 1}}, "and": {"_count": 1, "thrown": {"_count": 1}}, "headline": {"_count": 1, "HARRY": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "President": {"_count": 5, "and": {"_count": 1, "Dean": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 1}, "That": {"_count": 1}}, "to": {"_count": 1, "forget": {"_count": 1}}}, "drawing": {"_count": 91, "had": {"_count": 2, "done": {"_count": 1}, "put": {"_count": 1}}, "the": {"_count": 2, "Invisibility": {"_count": 1}, "Marauders": {"_count": 1}}, "up": {"_count": 4, "study": {"_count": 2}, "short": {"_count": 1}, "a": {"_count": 1}}, "attention": {"_count": 3, "to": {"_count": 3}}, "himself": {"_count": 2, "up": {"_count": 2}}, "room": {"_count": 30, "": {"_count": 5}, "to": {"_count": 2}, "tomo": {"_count": 1}, "it": {"_count": 1}, "there": {"_count": 1}, "a": {"_count": 1}, "door": {"_count": 4}, "took": {"_count": 1}, "and": {"_count": 1}, "where": {"_count": 1}, "of": {"_count": 2}, "was": {"_count": 1}, "on": {"_count": 1}, "window": {"_count": 1}, "floor": {"_count": 1}, "upstairs": {"_count": 1}, "windows": {"_count": 1}, "yet": {"_count": 1}, "dazzled": {"_count": 1}, "were": {"_count": 1}, "Bellatrix": {"_count": 1}}, "out": {"_count": 4, "his": {"_count": 3}, "a": {"_count": 1}}, "a": {"_count": 2, "deep": {"_count": 1}, "leather": {"_count": 1}}, "its": {"_count": 1, "breath": {"_count": 1}}, "nearer": {"_count": 8, "and": {"_count": 2}, "He": {"_count": 1}, "walking": {"_count": 1}, "as": {"_count": 1}, "to": {"_count": 2}, "their": {"_count": 1}}, "ever": {"_count": 2, "nearer": {"_count": 2}}, "breath": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}, "closer": {"_count": 4, "": {"_count": 2}, "We": {"_count": 1}, "and": {"_count": 1}}, "away": {"_count": 1, "the": {"_count": 1}}, "level": {"_count": 1, "with": {"_count": 1}}, "an": {"_count": 1, "Age": {"_count": 1}}, "steadily": {"_count": 1, "nearer": {"_count": 1}}, "her": {"_count": 3, "attention": {"_count": 1}, "wand": {"_count": 1}, "shawls": {"_count": 1}}, "their": {"_count": 1, "wands": {"_count": 1}}, "to": {"_count": 2, "a": {"_count": 2}}, "long": {"_count": 1, "hoarse": {"_count": 1}}, "and": {"_count": 1, "start": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "herself": {"_count": 2, "up": {"_count": 2}}, "on": {"_count": 1, "long": {"_count": 1}}, "all": {"_count": 1, "eyes": {"_count": 1}}, "many": {"_count": 1, "curious": {"_count": 1}}, "his": {"_count": 3, "wand": {"_count": 3}}, "great": {"_count": 1, "rattling": {"_count": 1}}, "hoods": {"_count": 1, "over": {"_count": 1}}}, "performed": {"_count": 34, "a": {"_count": 4, "tricky": {"_count": 1}, "series": {"_count": 1}, "jinx": {"_count": 1}, "quick": {"_count": 1}}, "the": {"_count": 9, "countercurse": {"_count": 1}, "immensely": {"_count": 1}, "curse": {"_count": 1}, "familiar": {"_count": 1}, "FourPoint": {"_count": 1}, "Patronus": {"_count": 1}, "complex": {"_count": 1}, "magic": {"_count": 1}, "same": {"_count": 1}}, "Black": {"_count": 1, "betrayed": {"_count": 1}}, "their": {"_count": 1, "best": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "elf": {"_count": 1, "did": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "reverse": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "illegal": {"_count": 1, "curses": {"_count": 1}}, "them": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "Quidditch": {"_count": 1}}, "Imperius": {"_count": 1, "Curse": {"_count": 1}}, "magic": {"_count": 2, "in": {"_count": 1}, "that": {"_count": 1}}, "secondbest": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "countercurse": {"_count": 1}}, "to": {"_count": 1, "ensure": {"_count": 1}}, "something": {"_count": 1, "unique": {"_count": 1}}, "extraordinary": {"_count": 1, "magic": {"_count": 1}}, "my": {"_count": 1, "usual": {"_count": 1}}}, "tricky": {"_count": 11, "little": {"_count": 2, "charm": {"_count": 1}, "blighters": {"_count": 1}}, "stage": {"_count": 1, "nothin": {"_count": 1}}, "part": {"_count": 2, "was": {"_count": 2}}, "too": {"_count": 1, "and": {"_count": 1}}, "operation": {"_count": 1, "she": {"_count": 1}}, "questions": {"_count": 1, "about": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "tuning": {"_count": 1, "in": {"_count": 1}}}, "paint": {"_count": 7, "flashed": {"_count": 1, "different": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 1, "down": {"_count": 1}}, "was": {"_count": 2, "peeling": {"_count": 1}, "shabby": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "then": {"_count": 1, "turned": {"_count": 1}}}, "colors": {"_count": 19, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "of": {"_count": 4, "green": {"_count": 2}, "emerald": {"_count": 1}, "my": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "shapes": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 1, "all": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "thought": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "until": {"_count": 1, "his": {"_count": 1}}}, "Meanwhile": {"_count": 40, "in": {"_count": 4, "the": {"_count": 3}, "Gaddley": {"_count": 1}}, "Professor": {"_count": 3, "McGonagall": {"_count": 1}, "Binns": {"_count": 1}, "Umbridge": {"_count": 1}}, "hidden": {"_count": 1, "from": {"_count": 1}}, "a": {"_count": 3, "very": {"_count": 1}, "flourishing": {"_count": 1}, "delegation": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 3}}, "some": {"_count": 1, "old": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "several": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "became": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "Ron": {"_count": 2, "was": {"_count": 1}, "who": {"_count": 1}}, "Ginnys": {"_count": 1, "equally": {"_count": 1}}, "the": {"_count": 6, "door": {"_count": 1}, "goblin": {"_count": 1}, "Boy": {"_count": 1}, "Hogwarts": {"_count": 1}, "Ministry": {"_count": 1}, "connection": {"_count": 1}}, "Remus": {"_count": 2, "Lupin": {"_count": 1}, "he": {"_count": 1}}, "Lavender": {"_count": 1, "kept": {"_count": 1}}, "Scrimgeour": {"_count": 1, "remains": {"_count": 1}}, "inside": {"_count": 1, "number": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "and": {"_count": 1}}, "we": {"_count": 1, "went": {"_count": 1}}}, "locker": {"_count": 14, "room": {"_count": 7, "Harry": {"_count": 2}, "and": {"_count": 1}, "Wood": {"_count": 1}, "alone": {"_count": 1}, "so": {"_count": 1}, "his": {"_count": 1}}, "rooms": {"_count": 7, "the": {"_count": 1}, "": {"_count": 4}, "on": {"_count": 1}, "Harry": {"_count": 1}}}, "men": {"_count": 57, "he": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 2, "lost": {"_count": 1}, "walking": {"_count": 1}}, "to": {"_count": 1, "sit": {"_count": 1}}, "into": {"_count": 1, "our": {"_count": 1}}, "in": {"_count": 3, "pubs": {"_count": 1}, "Azkaban": {"_count": 1}, "long": {"_count": 1}}, "working": {"_count": 1, "tirelessly": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "see": {"_count": 1, "the": {"_count": 1}}, "climb": {"_count": 1, "the": {"_count": 1}}, "sat": {"_count": 2, "plotting": {"_count": 1}, "practicing": {"_count": 1}}, "by": {"_count": 1, "how": {"_count": 1}}, "clutching": {"_count": 1, "this": {"_count": 1}}, "who": {"_count": 2, "were": {"_count": 1}, "had": {"_count": 1}}, "they": {"_count": 1, "wear": {"_count": 1}}, "with": {"_count": 1, "red": {"_count": 1}}, "darting": {"_count": 1, "around": {"_count": 1}}, "suddenly": {"_count": 1, "flung": {"_count": 1}}, "tors": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 6, "women": {"_count": 4}, "win": {"_count": 1}, "the": {"_count": 1}}, "fight": {"_count": 1, "each": {"_count": 1}}, "for": {"_count": 1, "twelve": {"_count": 1}}, "are": {"_count": 2, "not": {"_count": 1}, "guilty": {"_count": 1}}, "my": {"_count": 1, "mistakes": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "appeared": {"_count": 1, "out": {"_count": 1}}, "halted": {"_count": 1, "at": {"_count": 1}}, "took": {"_count": 1, "their": {"_count": 1}}, "arrive": {"_count": 1, "tomorrow": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "had": {"_count": 1, "appeared": {"_count": 1}}, "descending": {"_count": 1, "into": {"_count": 1}}, "women": {"_count": 1, "and": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 3, "staying": {"_count": 1}, "pushing": {"_count": 1}, "grouped": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "then": {"_count": 1, "still": {"_count": 1}}, "How": {"_count": 1, "could": {"_count": 1}}, "from": {"_count": 1, "one": {"_count": 1}}}, "Chaser": {"_count": 24, "Angelina": {"_count": 1, "Johnson": {"_count": 1}}, "that": {"_count": 1, "girl": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "Pucey": {"_count": 1, "ducks": {"_count": 1}}, "Bell": {"_count": 1, "and": {"_count": 1}}, "scanning": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 6, "!": {"_count": 2}, ".": {"_count": 3}, "?": {"_count": 1}}, "had": {"_count": 1, "swerved": {"_count": 1}}, "Ivanova": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "trying": {"_count": 1}}, "gone": {"_count": 1, "said": {"_count": 1}}, "Ladislaw": {"_count": 1, "Zamojski": {"_count": 1}}, "Demelza": {"_count": 1, "Robins": {"_count": 1}}, "short": {"_count": 1, "": {"_count": 1}}, "Vaisey": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "transferred": {"_count": 1, "to": {"_count": 1}}}, "Angelina": {"_count": 112, "Johnson": {"_count": 13, "": {"_count": 1}, "of": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 1}, "gets": {"_count": 1}, "coming": {"_count": 1}, "who": {"_count": 1}, "tracked": {"_count": 1}, "Colin": {"_count": 1}, "takes": {"_count": 1}, "shaking": {"_count": 1}}, "Keeper": {"_count": 1, "Bletchley": {"_count": 1}}, "had": {"_count": 4, "scored": {"_count": 1}, "now": {"_count": 1}, "stopped": {"_count": 1}, "changed": {"_count": 1}}, "Alicia": {"_count": 4, "and": {"_count": 4}}, "scoring": {"_count": 1, "": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 13}, "!": {"_count": 4}}, "and": {"_count": 4, "Katie": {"_count": 1}, "she": {"_count": 1}, "Montague": {"_count": 1}, "Alicia": {"_count": 1}}, "nice": {"_count": 1, "swerve": {"_count": 1}}, "thats": {"_count": 1, "a": {"_count": 1}}, "punched": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 2, "nearly": {"_count": 2}}, "scored": {"_count": 1, "": {"_count": 1}}, "COME": {"_count": 1, "ON": {"_count": 1}}, "including": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 4, "over": {"_count": 1}, "striding": {"_count": 1}, "struggling": {"_count": 1}, "hurrying": {"_count": 1}}, "smiling": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 3, "Fred": {"_count": 2}, "over": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 1}, "were": {"_count": 1}}, "gave": {"_count": 2, "Fred": {"_count": 1}, "Harry": {"_count": 1}}, "fiercely": {"_count": 1, "and": {"_count": 1}}, "strolled": {"_count": 1, "back": {"_count": 1}}, "were": {"_count": 1, "already": {"_count": 1}}, "entering": {"_count": 1, "from": {"_count": 1}}, "approvingly": {"_count": 1, "soaring": {"_count": 1}}, "swept": {"_count": 1, "her": {"_count": 1}}, "raised": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "she": {"_count": 1, "reverse": {"_count": 1}}, "crossly": {"_count": 1, "as": {"_count": 1}}, "Fred": {"_count": 2, "George": {"_count": 1}, "and": {"_count": 1}}, "blew": {"_count": 1, "her": {"_count": 1}}, "glumly": {"_count": 1, "as": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 4, "hollow": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}}, "I": {"_count": 1, "swear": {"_count": 1}}, "miserably": {"_count": 1, "": {"_count": 1}}, "beaming": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 1, "emerging": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "kept": {"_count": 1, "them": {"_count": 1}}, "sought": {"_count": 1, "out": {"_count": 1}}, "hopefully": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "said": {"_count": 1}}, "insisted": {"_count": 1, "on": {"_count": 1}}, "consulting": {"_count": 1, "a": {"_count": 1}}, "pocketing": {"_count": 1, "her": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "soaring": {"_count": 1, "past": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "GRYFFINDOR": {"_count": 1, "SCORE": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "casting": {"_count": 1, "Malfoy": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "getting": {"_count": 1, "slowly": {"_count": 1}}, "Katie": {"_count": 1, "and": {"_count": 1}}, "dully": {"_count": 1, "pulling": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "wants": {"_count": 1, "a": {"_count": 1}}, "wont": {"_count": 1, "just": {"_count": 1}}, "still": {"_count": 1, "wont": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "Johnson": {"_count": 28, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "Gryffindor": {"_count": 1}}, "and": {"_count": 3, "no": {"_count": 1}, "Katie": {"_count": 1}, "Alicia": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "were": {"_count": 1, "yawning": {"_count": 1}}, "as": {"_count": 1, "George": {"_count": 1}}, "Spinnet": {"_count": 1, "Weasley": {"_count": 1}}, "Gryffindor": {"_count": 1, "back": {"_count": 1}}, "takes": {"_count": 3, "the": {"_count": 3}}, "gets": {"_count": 1, "the": {"_count": 1}}, "coming": {"_count": 1, "into": {"_count": 1}}, "who": {"_count": 1, "looked": {"_count": 1}}, "tracked": {"_count": 1, "him": {"_count": 1}}, "whats": {"_count": 1, "with": {"_count": 1}}, "how": {"_count": 1, "dare": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "Colin": {"_count": 1, "and": {"_count": 1}}, "Johnson": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "Angelina": {"_count": 1, "Johnson": {"_count": 1}}, "intervenes": {"_count": 1, "Johnson": {"_count": 1}}, "to": {"_count": 1, "Bell": {"_count": 1}}, "he": {"_count": 1, "dodges": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}}, "Olivers": {"_count": 3, "speech": {"_count": 1, "by": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "robes": {"_count": 1}}}, "refereeing": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}}, "Captain": {"_count": 33, "Marcus": {"_count": 2, "Flint": {"_count": 2}}, "of": {"_count": 7, "the": {"_count": 6}, "this": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "and": {"_count": 3, "Seeker": {"_count": 2}, "then": {"_count": 1}}, "all": {"_count": 1, "struggling": {"_count": 1}}, "Flint": {"_count": 1, "": {"_count": 1}}, "Montague": {"_count": 1, "takes": {"_count": 1}}, "was": {"_count": 1, "sitting": {"_count": 1}}, "Davies": {"_count": 1, "with": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "he": {"_count": 1, "ought": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Urquhart": {"_count": 1, "": {"_count": 1}}, "does": {"_count": 1, "help": {"_count": 1}}, "\u2018the": {"_count": 1, "Boy": {"_count": 1}}, "McLaggen": {"_count": 1, "shut": {"_count": 1}}, "had": {"_count": 1, "got": {"_count": 1}}}, "Marcus": {"_count": 12, "Flint": {"_count": 9, "a": {"_count": 1}, "gains": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "seized": {"_count": 1}, "was": {"_count": 1}, "yelling": {"_count": 1}, "the": {"_count": 1}, "went": {"_count": 1}}, "Belby": {"_count": 1, "I": {"_count": 1}}, "here": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Flint": {"_count": 35, "a": {"_count": 1, "fifth": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "gains": {"_count": 1, "the": {"_count": 1}}, "flying": {"_count": 2, "like": {"_count": 1}, "toward": {"_count": 1}}, "off": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "had": {"_count": 3, "blocked": {"_count": 1}, "to": {"_count": 1}, "scored": {"_count": 1}}, "and": {"_count": 3, "then": {"_count": 1}, "Wood": {"_count": 2}}, "coulda": {"_count": 1, "knocked": {"_count": 1}}, "nearly": {"_count": 1, "kills": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "blocked": {"_count": 1, "him": {"_count": 1}}, "seized": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 3, "still": {"_count": 1}, "even": {"_count": 1}, "doubled": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 2}}, "carelessly": {"_count": 1, "flicking": {"_count": 1}}, "yelling": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "Slytherin": {"_count": 1}}, "went": {"_count": 1, "smashing": {"_count": 1}}, "still": {"_count": 1, "bleeding": {"_count": 1}}, "waited": {"_count": 1, "for": {"_count": 1}}, "alongside": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 1, "possession": {"_count": 1}}}, "fifth": {"_count": 49, "year": {"_count": 16, "": {"_count": 7}, "Harry": {"_count": 1}, "the": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "they": {"_count": 1}, "who": {"_count": 1}, "youll": {"_count": 1}, "mean": {"_count": 1}, "when": {"_count": 1}}, "years": {"_count": 12, "nearby": {"_count": 1}, "foot": {"_count": 1}, "": {"_count": 1}, "sat": {"_count": 1}, "working": {"_count": 1}, "were": {"_count": 1}, "will": {"_count": 1}, "spent": {"_count": 1}, "this": {"_count": 1}, "talked": {"_count": 1}, "ate": {"_count": 1}, "entered": {"_count": 1}}, "birthday": {"_count": 1, "party": {"_count": 1}}, "table": {"_count": 1, "facing": {"_count": 1}}, "seat": {"_count": 1, "at": {"_count": 1}}, "floor": {"_count": 3, "": {"_count": 1}, "of": {"_count": 1}, "he": {"_count": 1}}, "time": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "judge": {"_count": 1, "tonight": {"_count": 1}}, "and": {"_count": 4, "sixth": {"_count": 1}, "seventh": {"_count": 3}}, "game": {"_count": 1, "when": {"_count": 1}}, "owl": {"_count": 1, "zoomed": {"_count": 1}}, "said": {"_count": 2, "George": {"_count": 1}, "Hermione": {"_count": 1}}, "dodged": {"_count": 1, "a": {"_count": 1}}, "spoiled": {"_count": 1, "bit": {"_count": 1}}, "group": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "flashing": {"_count": 29, "Potter": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "over": {"_count": 1, "his": {"_count": 1}}, "dazzlingly": {"_count": 1, "white": {"_count": 1}}, "a": {"_count": 1, "wide": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "at": {"_count": 1, "Neville": {"_count": 1}}, "dangerously": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 2, "Whoa": {"_count": 1}, "him": {"_count": 1}}, "advertisements": {"_count": 1, "across": {"_count": 1}}, "BULGARIA": {"_count": 1, "160": {"_count": 1}}, "and": {"_count": 1, "winking": {"_count": 1}}, "her": {"_count": 1, "fins": {"_count": 1}}, "his": {"_count": 1, "POTTER": {"_count": 1}}, "gold": {"_count": 1, "and": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 1, "his": {"_count": 1}}, "alarmingly": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "swords": {"_count": 1}}, "yellow": {"_count": 1, "letters": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "and": {"_count": 1}}, "lights": {"_count": 1, "and": {"_count": 1}}}, "skipped": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "breakfast": {"_count": 1, "next": {"_count": 1}}, "several": {"_count": 1, "beats": {"_count": 1}}, "question": {"_count": 1, "four": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}, "a": {"_count": 1, "beat": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "Mount": {"_count": 7, "your": {"_count": 7, "brooms": {"_count": 7}}}, "blast": {"_count": 33, "on": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 2}}, "like": {"_count": 3, "a": {"_count": 3}}, "of": {"_count": 10, "it": {"_count": 2}, "steam": {"_count": 1}, "icy": {"_count": 1}, "noise": {"_count": 1}, "fire": {"_count": 2}, "green": {"_count": 1}, "Doxycide": {"_count": 1}, "realization": {"_count": 1}}, "that": {"_count": 3, "sounded": {"_count": 1}, "made": {"_count": 1}, "erupted": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "tent": {"_count": 1}}, "off": {"_count": 1, "said": {"_count": 1}}, "us": {"_count": 1, "through": {"_count": 1}}, "solid": {"_count": 1, "objects": {"_count": 1}}, "it": {"_count": 2, "out": {"_count": 1}, "open": {"_count": 1}}, "and": {"_count": 2, "shattered": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "people": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}}, "Fifteen": {"_count": 3, "brooms": {"_count": 1, "rose": {"_count": 1}}, "B": {"_count": 1, "states": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}}, "attractive": {"_count": 4, "too": {"_count": 1, "JORDAN": {"_count": 1}}, "barmaid": {"_count": 1, "Madam": {"_count": 1}}, "rippling": {"_count": 1, "effect": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}}, "JORDAN": {"_count": 3, "": {"_count": 3, "!": {"_count": 3}}}, "commentary": {"_count": 14, "for": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "mainly": {"_count": 1, "for": {"_count": 1}}, "made": {"_count": 1, "everything": {"_count": 1}}, "rang": {"_count": 1, "through": {"_count": 1}}, "or": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 2, "time": {"_count": 1}, "match": {"_count": 1}}, "from": {"_count": 1, "here": {"_count": 1}}, "more": {"_count": 1, "": {"_count": 1}}}, "belting": {"_count": 1, "along": {"_count": 1, "up": {"_count": 1}}}, "Alicia": {"_count": 52, "Spinnet": {"_count": 14, "a": {"_count": 1}, "who": {"_count": 1}, "angrily": {"_count": 1}, "Angelina": {"_count": 1}, "screamed": {"_count": 1}, "of": {"_count": 1}, "near": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}, "hard": {"_count": 1}, "turned": {"_count": 1}, "firmly": {"_count": 1}, "Bill": {"_count": 1}}, "Spinnets": {"_count": 1, "shoulder": {"_count": 1}}, "and": {"_count": 9, "Katie": {"_count": 6}, "carried": {"_count": 1}, "Fred": {"_count": 1}, "the": {"_count": 1}}, "shrieked": {"_count": 1, "How": {"_count": 1}}, "soothingly": {"_count": 1, "we": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 2}, "passed": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 2}, "!": {"_count": 2}, "?": {"_count": 1}}, "Angelina": {"_count": 1, "and": {"_count": 1}}, "flew": {"_count": 1, "forward": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "seized": {"_count": 1, "it": {"_count": 1}}, "took": {"_count": 2, "Gryffindors": {"_count": 1}, "pity": {"_count": 1}}, "sped": {"_count": 1, "toward": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}, "told": {"_count": 1, "her": {"_count": 1}}, "had": {"_count": 1, "disappeared": {"_count": 1}}, "whose": {"_count": 1, "eyebrows": {"_count": 1}}, "passes": {"_count": 1, "back": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "hugged": {"_count": 1, "Harry": {"_count": 1}}, "numbly": {"_count": 1, "": {"_count": 1}}, "furiously": {"_count": 1, "pummeling": {"_count": 1}}, "without": {"_count": 1, "enthusiasm": {"_count": 1}}, "are": {"_count": 1, "both": {"_count": 1}}}, "Spinnet": {"_count": 19, "a": {"_count": 1, "good": {"_count": 1}}, "who": {"_count": 2, "puts": {"_count": 1}, "seemed": {"_count": 1}}, "passes": {"_count": 1, "Bell": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "Angelina": {"_count": 1, "Johnson": {"_count": 1}}, "screamed": {"_count": 1, "then": {"_count": 1}}, "Weasley": {"_count": 1, "Weasley": {"_count": 1}}, "of": {"_count": 1, "Gryffindor": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "Angelina": {"_count": 1}, "Spinnets": {"_count": 1}}, "hard": {"_count": 1, "on": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "firmly": {"_count": 1, "": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}}, "reserve": {"_count": 5, "back": {"_count": 1, "to": {"_count": 1}}, "Seeker": {"_count": 1, "": {"_count": 1}}, "team": {"_count": 1, "": {"_count": 1}}, "judgment": {"_count": 1, "until": {"_count": 1}}, "something": {"_count": 1, "in": {"_count": 1}}}, "gains": {"_count": 1, "the": {"_count": 1, "Quaffle": {"_count": 1}}}, "sc": {"_count": 1, "no": {"_count": 1, "stopped": {"_count": 1}}}, "Katie": {"_count": 96, "Bell": {"_count": 30, "of": {"_count": 4}, "and": {"_count": 4}, "": {"_count": 4}, "Katie": {"_count": 2}, "for": {"_count": 1}, "another": {"_count": 1}, "scored": {"_count": 1}, "Alicia": {"_count": 1}, "after": {"_count": 1}, "squarely": {"_count": 1}, "tanking": {"_count": 1}, "er": {"_count": 1}, "the": {"_count": 1}, "returned": {"_count": 1}, "this": {"_count": 1}, "upstairs": {"_count": 1}, "was": {"_count": 1}, "looking": {"_count": 1}, "back": {"_count": 1}, "Angelina": {"_count": 1}}, "had": {"_count": 6, "come": {"_count": 1}, "all": {"_count": 1}, "put": {"_count": 1}, "just": {"_count": 1}, "gone": {"_count": 1}, "seemed": {"_count": 1}}, "suddenly": {"_count": 1, "giggled": {"_count": 1}}, "and": {"_count": 8, "they": {"_count": 1}, "instead": {"_count": 1}, "emptied": {"_count": 1}, "Alicia": {"_count": 4}, "she": {"_count": 1}}, "Bells": {"_count": 1, "knee": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "succeeded": {"_count": 1, "in": {"_count": 1}}, "were": {"_count": 1, "laughing": {"_count": 1}}, "cartwheeled": {"_count": 1, "in": {"_count": 1}}, "scored": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "thickly": {"_count": 1, "attempting": {"_count": 1}}, "evidently": {"_count": 1, "horrorstruck": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 5, "now": {"_count": 1}, "holding": {"_count": 2}, "supposed": {"_count": 1}, "removed": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "leap": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 3, "singing": {"_count": 1}, "necklace": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "Demelza": {"_count": 1, "and": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "tugged": {"_count": 1, "it": {"_count": 1}}, "rose": {"_count": 1, "into": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "get": {"_count": 1, "hold": {"_count": 1}}, "got": {"_count": 2, "it": {"_count": 1}, "hurt": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "necklace": {"_count": 1}}, "wouldve": {"_count": 1, "just": {"_count": 1}}, "herself": {"_count": 1, "had": {"_count": 1}}, "will": {"_count": 1, "make": {"_count": 1}}, "thing": {"_count": 1, "really": {"_count": 1}}, "now": {"_count": 1, "Ron": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}}, "Bell": {"_count": 36, "of": {"_count": 4, "Gryffindor": {"_count": 4}}, "and": {"_count": 5, "speeds": {"_count": 1}, "Angelina": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}, "Ronald": {"_count": 1}}, "hit": {"_count": 1, "hard": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "Johnson": {"_count": 1, "Spinnet": {"_count": 1}}, "Katie": {"_count": 2, "Bell": {"_count": 2}}, "for": {"_count": 1, "Gryffindor": {"_count": 1}}, "another": {"_count": 1, "of": {"_count": 1}}, "scored": {"_count": 1, "twice": {"_count": 1}}, "Alicia": {"_count": 1, "Spinnet": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "squarely": {"_count": 1, "in": {"_count": 1}}, "tanking": {"_count": 1, "up": {"_count": 1}}, "er": {"_count": 1, "drops": {"_count": 1}}, "this": {"_count": 2, "looks": {"_count": 1}, "way": {"_count": 1}}, "he": {"_count": 1, "dodges": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "upstairs": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "girl": {"_count": 1, "mustve": {"_count": 1}}, "looking": {"_count": 1, "completely": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "Angelina": {"_count": 1, "Johnson": {"_count": 1}}}, "OUCH": {"_count": 14, "that": {"_count": 1, "must": {"_count": 1}}, "": {"_count": 12, "!": {"_count": 12}}, "feet": {"_count": 1, "look": {"_count": 1}}}, "Adrian": {"_count": 4, "Pucey": {"_count": 4, "speeding": {"_count": 1}, "dropped": {"_count": 1}, "but": {"_count": 1}, "was": {"_count": 1}}}, "Pucey": {"_count": 11, "speeding": {"_count": 1, "off": {"_count": 1}}, "ducks": {"_count": 2, "two": {"_count": 1}, "Montague": {"_count": 1}}, "dropped": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "trying": {"_count": 1}}, "Puceys": {"_count": 1, "off": {"_count": 1}}, "has": {"_count": 1, "the": {"_count": 1}}, "throws": {"_count": 1, "to": {"_count": 1}}, "Johnson": {"_count": 1, "intervenes": {"_count": 1}}, "in": {"_count": 1, "possession": {"_count": 1}}}, "blocked": {"_count": 32, "by": {"_count": 4, "a": {"_count": 2}, "the": {"_count": 1}, "Mr": {"_count": 1}}, "Harry": {"_count": 2, "on": {"_count": 1}, "from": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "view": {"_count": 1}}, "it": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 3, "view": {"_count": 2}, "sight": {"_count": 1}}, "them": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "the": {"_count": 6, "door": {"_count": 1}, "fireplace": {"_count": 1}, "jinx": {"_count": 1}, "stairs": {"_count": 1}, "spell": {"_count": 1}, "stair": {"_count": 1}}, "fireplace": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 2, "": {"_count": 1}, "by": {"_count": 1}}, "threequarters": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Siriuss": {"_count": 1, "family": {"_count": 1}}, "out": {"_count": 1, "all": {"_count": 1}}, "sink": {"_count": 1, "and": {"_count": 1}}, "He": {"_count": 1, "skidded": {"_count": 1}}, "as": {"_count": 1, "Percy": {"_count": 1}}}, "Beater": {"_count": 11, "anyway": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "Derrick": {"_count": 1, "": {"_count": 1}}, "Bole": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "Wimbourne": {"_count": 1}}, "Quigley": {"_count": 1, "swung": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "or": {"_count": 1, "simply": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Zacharias": {"_count": 1}}}, "possession": {"_count": 42, "of": {"_count": 17, "the": {"_count": 6}, "a": {"_count": 2}, "them": {"_count": 1}, "his": {"_count": 1}, "Dumbledores": {"_count": 1}, "some": {"_count": 1}, "him": {"_count": 1}, "this": {"_count": 1}, "it": {"_count": 2}, "Hepzibah": {"_count": 1}}, "Lee": {"_count": 1, "Jordan": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Flint": {"_count": 2, "with": {"_count": 1}, "flying": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 4, "I": {"_count": 1}, "its": {"_count": 2}, "asked": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "Alicia": {"_count": 1, "Spinnet": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "no": {"_count": 2, "Slytherin": {"_count": 1}, "": {"_count": 1}}, "again": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Slytherin": {"_count": 1, "heading": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "all": {"_count": 1}}, "by": {"_count": 1, "Voldemort": {"_count": 1}}, "the": {"_count": 1, "locket": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "dodges": {"_count": 6, "a": {"_count": 1, "speeding": {"_count": 1}}, "Warrington": {"_count": 1, "avoids": {"_count": 1}}, "Pucey": {"_count": 1, "ducks": {"_count": 1}}, "Johnson": {"_count": 1, "he": {"_count": 1}}, "Bell": {"_count": 1, "he": {"_count": 1}}, "Spinnet": {"_count": 1, "as": {"_count": 1}}}, "Bletchley": {"_count": 5, "dives": {"_count": 1, "misses": {"_count": 1}}, "hit": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 1, "Slytherin": {"_count": 1}}, "singing": {"_count": 1, "along": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dives": {"_count": 2, "misses": {"_count": 1, "GRYFFINDORS": {"_count": 1}}, "were": {"_count": 1, "his": {"_count": 1}}}, "misses": {"_count": 4, "GRYFFINDORS": {"_count": 1, "SCORE": {"_count": 1}}, "many": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "Miss": {"_count": 1}}, "the": {"_count": 1, "tombs": {"_count": 1}}}, "GRYFFINDORS": {"_count": 1, "SCORE": {"_count": 1, "": {"_count": 1}}}, "SCORE": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "moans": {"_count": 5, "from": {"_count": 3, "the": {"_count": 3}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "pain": {"_count": 1}}}, "Bin": {"_count": 13, "watchin": {"_count": 1, "from": {"_count": 1}}, "lecturin": {"_count": 1, "them": {"_count": 1}}, "wonderin": {"_count": 1, "when": {"_count": 1}}, "up": {"_count": 1, "since": {"_count": 1}}, "feelin": {"_count": 1, "lonely": {"_count": 1}}, "cooped": {"_count": 1, "up": {"_count": 1}}, "celebratin": {"_count": 1, "all": {"_count": 1}}, "havin": {"_count": 1, "a": {"_count": 1}}, "home": {"_count": 1, "three": {"_count": 1}}, "hidin": {"_count": 1, "out": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "busy": {"_count": 1, "we": {"_count": 1}}, "meanin": {"_count": 1, "ter": {"_count": 1}}}, "watchin": {"_count": 5, "from": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "bits": {"_count": 1, "o": {"_count": 1}}, "the": {"_count": 1, "match": {"_count": 1}}}, "bein": {"_count": 8, "in": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "born": {"_count": 1, "again": {"_count": 1}}, "watched": {"_count": 1, "Ron": {"_count": 1}}, "tailed": {"_count": 1, "by": {"_count": 1}}, "beaten": {"_count": 1, "to": {"_count": 1}}, "kicked": {"_count": 1, "around": {"_count": 1}}, "attacked": {"_count": 1, "": {"_count": 1}}}, "Nope": {"_count": 11, "said": {"_count": 8, "Ron": {"_count": 4}, "Harry": {"_count": 2}, "George": {"_count": 1}, "Hagrid": {"_count": 1}}, "theyre": {"_count": 1, "upstairs": {"_count": 1}}, "South": {"_count": 1, "of": {"_count": 1}}, "not": {"_count": 1, "jesting": {"_count": 1}}}, "raising": {"_count": 70, "his": {"_count": 35, "binoculars": {"_count": 1}, "fists": {"_count": 1}, "camera": {"_count": 1}, "eyebrows": {"_count": 5}, "tankard": {"_count": 1}, "wand": {"_count": 11}, "hand": {"_count": 3}, "voice": {"_count": 3}, "arm": {"_count": 1}, "own": {"_count": 3}, "glass": {"_count": 2}, "uninjured": {"_count": 1}, "Probe": {"_count": 1}, "eyes": {"_count": 1}}, "it": {"_count": 1, "ready": {"_count": 1}}, "the": {"_count": 5, "camera": {"_count": 1}, "Triwizard": {"_count": 1}, "wand": {"_count": 1}, "alarm": {"_count": 1}, "empty": {"_count": 1}}, "her": {"_count": 13, "eyebrows": {"_count": 3}, "tearstained": {"_count": 1}, "thick": {"_count": 1}, "hand": {"_count": 2}, "wand": {"_count": 4}, "book": {"_count": 1}, "own": {"_count": 1}}, "Ginnys": {"_count": 1, "head": {"_count": 1}}, "an": {"_count": 3, "axe": {"_count": 1}, "unusually": {"_count": 1}, "army": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "Rons": {"_count": 1, "spirits": {"_count": 1}}, "bottles": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 4, "thin": {"_count": 1}, "massive": {"_count": 1}, "wand": {"_count": 1}, "shaking": {"_count": 1}}, "their": {"_count": 1, "wands": {"_count": 1}}, "everyones": {"_count": 1, "morale": {"_count": 1}}, "its": {"_count": 1, "dead": {"_count": 1}}, "himself": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 1, "like": {"_count": 1}}}, "speck": {"_count": 7, "that": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 5, "dust": {"_count": 2}, "gold": {"_count": 2}, "light": {"_count": 1}}, "and": {"_count": 1, "vanished": {"_count": 1}}}, "Way": {"_count": 3, "up": {"_count": 1, "above": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Little": {"_count": 1, "Norton": {"_count": 1}}}, "attacked": {"_count": 115, "before": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "her": {"_count": 2, "might": {"_count": 1}, "": {"_count": 1}}, "right": {"_count": 1, "outside": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "was": {"_count": 1}, "Ive": {"_count": 1}, "Harry": {"_count": 1}, "bound": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 14}, "?": {"_count": 4}, "!": {"_count": 4}}, "those": {"_count": 1, "people": {"_count": 1}}, "several": {"_count": 1, "students": {"_count": 1}}, "anyone": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 4, "": {"_count": 2}, "Slughorns": {"_count": 1}, "We": {"_count": 1}}, "me": {"_count": 9, "said": {"_count": 1}, "sir": {"_count": 1}, "": {"_count": 5}, "I": {"_count": 1}, "for": {"_count": 1}}, "a": {"_count": 2, "teacher": {"_count": 2}}, "Ron": {"_count": 2, "it": {"_count": 1}, "or": {"_count": 1}}, "any": {"_count": 1, "second": {"_count": 1}}, "by": {"_count": 18, "his": {"_count": 1}, "a": {"_count": 5}, "grindylows": {"_count": 1}, "dementors": {"_count": 3}, "the": {"_count": 2}, "some": {"_count": 1}, "those": {"_count": 1}, "Voldemorts": {"_count": 1}, "another": {"_count": 1}, "Greyback": {"_count": 2}}, "each": {"_count": 1, "other": {"_count": 1}}, "the": {"_count": 2, "night": {"_count": 1}, "last": {"_count": 1}}, "Potter": {"_count": 1, "if": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "you": {"_count": 4, "": {"_count": 3}, "Arthur": {"_count": 1}}, "Viktor": {"_count": 1, "or": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "Crouch": {"_count": 2, "no": {"_count": 1}, "": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "without": {"_count": 1, "authorization": {"_count": 1}}, "during": {"_count": 2, "class": {"_count": 1}, "my": {"_count": 1}}, "it": {"_count": 2, "wont": {"_count": 2}}, "Hedwig": {"_count": 1, "": {"_count": 1}}, "young": {"_count": 1, "Mr": {"_count": 1}}, "my": {"_count": 1, "cousin": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "Mr": {"_count": 2, "Weasley": {"_count": 2}}, "somebody": {"_count": 1, "else": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "for": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 3}, "like": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "pecking": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "destroyed": {"_count": 1}}, "us": {"_count": 1, "you": {"_count": 1}}, "Umbridge": {"_count": 1, "and": {"_count": 1}}, "mutilated": {"_count": 1, "": {"_count": 1}}, "set": {"_count": 1, "upon": {"_count": 1}}}, "scored": {"_count": 16, "Harry": {"_count": 1, "had": {"_count": 1}}, "five": {"_count": 1, "times": {"_count": 1}}, "three": {"_count": 1, "goals": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "twice": {"_count": 2, "more": {"_count": 1}, "in": {"_count": 1}}, "seventeen": {"_count": 1, "goals": {"_count": 1}}, "by": {"_count": 1, "Ginny": {"_count": 1}}, "four": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "again": {"_count": 1}}, "a": {"_count": 1, "goal": {"_count": 1}}, "again": {"_count": 1, "making": {"_count": 1}}}, "looptheloops": {"_count": 1, "to": {"_count": 1, "let": {"_count": 1}}}, "feelings": {"_count": 44, "": {"_count": 9, ".": {"_count": 9}}, "toward": {"_count": 4, "him": {"_count": 1}, "Cedric": {"_count": 1}, "his": {"_count": 1}, "Harry": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "have": {"_count": 1}}, "when": {"_count": 1, "Gryffindor": {"_count": 1}}, "by": {"_count": 3, "hitting": {"_count": 1}, "aiming": {"_count": 2}}, "every": {"_count": 1, "time": {"_count": 1}}, "were": {"_count": 1, "less": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 3, "shock": {"_count": 1}, "deep": {"_count": 1}, "guilt": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "on": {"_count": 1, "hearing": {"_count": 1}}, "that": {"_count": 1, "intensified": {"_count": 1}}, "and": {"_count": 4, "memories": {"_count": 2}, "stuff": {"_count": 1}, "cry": {"_count": 1}}, "in": {"_count": 1, "return": {"_count": 1}}, "Harry": {"_count": 1, "waited": {"_count": 1}}, "about": {"_count": 2, "it": {"_count": 1}, "your": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 2, "acute": {"_count": 2}}, "for": {"_count": 2, "Ginny": {"_count": 1}, "he": {"_count": 1}}, "a": {"_count": 1, "most": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "reflection": {"_count": 28, "from": {"_count": 1, "one": {"_count": 1}}, "looked": {"_count": 1, "back": {"_count": 1}}, "vanished": {"_count": 1, "completely": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "smiling": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "pale": {"_count": 1, "and": {"_count": 1}}, "smiled": {"_count": 1, "at": {"_count": 1}}, "defiantly": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "closely": {"_count": 1}}, "he": {"_count": 1, "started": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 7, "the": {"_count": 6}, "a": {"_count": 1}}, "and": {"_count": 1, "turning": {"_count": 1}}, "grew": {"_count": 1, "larger": {"_count": 1}}, "looking": {"_count": 1, "back": {"_count": 1}}, "wavered": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "wristwatches": {"_count": 1, "and": {"_count": 1, "once": {"_count": 1}}}, "cannonball": {"_count": 3, "than": {"_count": 1, "anything": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "landed": {"_count": 1}}}, "ducks": {"_count": 2, "two": {"_count": 1, "Bludgers": {"_count": 1}}, "Montague": {"_count": 1, "nice": {"_count": 1}}}, "speeds": {"_count": 1, "toward": {"_count": 1, "the": {"_count": 1}}}, "murmur": {"_count": 16, "ran": {"_count": 1, "through": {"_count": 1}}, "of": {"_count": 12, "interest": {"_count": 2}, "voices": {"_count": 1}, "agreement": {"_count": 1}, "assent": {"_count": 3}, "excited": {"_count": 1}, "impressed": {"_count": 1}, "general": {"_count": 1}, "excitement": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "every": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}}, "streak": {"_count": 13, "of": {"_count": 9, "gold": {"_count": 1}, "what": {"_count": 2}, "pride": {"_count": 1}, "silver": {"_count": 1}, "orange": {"_count": 1}, "light": {"_count": 2}, "red": {"_count": 1}}, "do": {"_count": 1, "we": {"_count": 1}}, "away": {"_count": 1, "through": {"_count": 1}}, "off": {"_count": 1, "toward": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}}, "Terence": {"_count": 1, "Higgs": {"_count": 1, "had": {"_count": 1}}}, "Higgs": {"_count": 3, "had": {"_count": 1, "seen": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "and": {"_count": 1, "Rufus": {"_count": 1}}}, "Neck": {"_count": 1, "and": {"_count": 1, "neck": {"_count": 1}}}, "spurt": {"_count": 6, "of": {"_count": 6, "speed": {"_count": 3}, "flames": {"_count": 1}, "scarlet": {"_count": 1}, "golden": {"_count": 1}}}, "spun": {"_count": 52, "off": {"_count": 2, "course": {"_count": 1}, "and": {"_count": 1}}, "around": {"_count": 22, "": {"_count": 8}, "on": {"_count": 2}, "the": {"_count": 1}, "in": {"_count": 2}, "to": {"_count": 3}, "once": {"_count": 1}, "and": {"_count": 3}, "onelegged": {"_count": 1}, "Harry": {"_count": 1}}, "stupidly": {"_count": 1, "on": {"_count": 1}}, "up": {"_count": 1, "Rons": {"_count": 1}}, "faster": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "the": {"_count": 2, "speed": {"_count": 1}, "slow": {"_count": 1}}, "his": {"_count": 2, "speed": {"_count": 1}, "bowler": {"_count": 1}}, "on": {"_count": 5, "the": {"_count": 4}, "his": {"_count": 1}}, "from": {"_count": 1, "work": {"_count": 1}}, "web": {"_count": 1, "vibrating": {"_count": 1}}, "round": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "glass": {"_count": 1, "spheres": {"_count": 1}}, "and": {"_count": 1, "became": {"_count": 1}}, "himself": {"_count": 1, "around": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "earth": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "about": {"_count": 1, "but": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "high": {"_count": 1, "into": {"_count": 1}}}, "Foul": {"_count": 5, "": {"_count": 4, "!": {"_count": 2}, ".": {"_count": 1}, "?": {"_count": 1}}, "roared": {"_count": 1, "the": {"_count": 1}}}, "Down": {"_count": 9, "in": {"_count": 3, "the": {"_count": 2}, "old": {"_count": 1}}, "the": {"_count": 1, "moving": {"_count": 1}}, "below": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "here": {"_count": 2, "Harry": {"_count": 1}, "down": {"_count": 1}}, "one": {"_count": 1, "staircase": {"_count": 1}}}, "yelling": {"_count": 46, "Send": {"_count": 1, "him": {"_count": 1}}, "themselves": {"_count": 1, "hoarse": {"_count": 1}}, "Youll": {"_count": 1, "pay": {"_count": 1}}, "Pimply": {"_count": 1, "Pimplyl": {"_count": 1}}, "at": {"_count": 4, "Malfoy": {"_count": 1}, "me": {"_count": 1}, "innocent": {"_count": 1}, "another": {"_count": 1}}, "NOOOOOOO": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "loudly": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Where": {"_count": 1, "were": {"_count": 1}}, "hoarsely": {"_count": 1, "back": {"_count": 1}}, "there": {"_count": 2, "was": {"_count": 1}, "were": {"_count": 1}}, "croakily": {"_count": 1, "at": {"_count": 1}}, "Did": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 5, "Harry": {"_count": 1}, "booing": {"_count": 1}, "punching": {"_count": 1}, "clapping": {"_count": 1}, "Fang": {"_count": 1}}, "Don": {"_count": 1, "panic": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Stupefy": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "swearing": {"_count": 1}}, "in": {"_count": 2, "pain": {"_count": 2}}, "as": {"_count": 1, "Hermione": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}, "about": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "with": {"_count": 2, "fright": {"_count": 1}, "enormous": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "cackling": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}, "your": {"_count": 1, "head": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "Defodiol": {"_count": 1, "She": {"_count": 1}}, "the": {"_count": 1, "horde": {"_count": 1}}, "abuse": {"_count": 1, "at": {"_count": 1}}}, "ref": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Red": {"_count": 10, "card": {"_count": 2, "": {"_count": 2}}, "sparks": {"_count": 1, "the": {"_count": 1}}, "Caps": {"_count": 6, "nasty": {"_count": 1}, "they": {"_count": 1}, "kappas": {"_count": 1}, "and": {"_count": 1}, "squish": {"_count": 1}, "hinkypunks": {"_count": 1}}, "and": {"_count": 1, "green": {"_count": 1}}}, "oughta": {"_count": 4, "change": {"_count": 1, "the": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "see": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "muttered": {"_count": 1}}}, "coulda": {"_count": 1, "knocked": {"_count": 1, "Harry": {"_count": 1}}}, "disgusting": {"_count": 22, "bit": {"_count": 1, "of": {"_count": 1}}, "smell": {"_count": 1, "filled": {"_count": 1}}, "thing": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "cheeriness": {"_count": 1, "his": {"_count": 1}}, "slimy": {"_count": 1, "sock": {"_count": 1}}, "This": {"_count": 1, "might": {"_count": 1}}, "swear": {"_count": 2, "word": {"_count": 2}}, "the": {"_count": 1, "way": {"_count": 1}}, "but": {"_count": 1, "oddly": {"_count": 1}}, "boy": {"_count": 1, "Karkaroff": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "little": {"_count": 1, "Squib": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}}, "cheating": {"_count": 4, "Jordan": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "asking": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "ensued": {"_count": 1, "many": {"_count": 1}}}, "kills": {"_count": 4, "the": {"_count": 1, "Gryffindor": {"_count": 1}}, "people": {"_count": 1, "by": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "Muggles": {"_count": 1, "for": {"_count": 1}}}, "penalty": {"_count": 12, "to": {"_count": 2, "Gryffindor": {"_count": 1}, "Ireland": {"_count": 1}}, "because": {"_count": 1, "George": {"_count": 1}}, "for": {"_count": 1, "no": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "!": {"_count": 1}, "?": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "yes": {"_count": 1, "theres": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}}, "spinning": {"_count": 41, "dangerously": {"_count": 1, "past": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "very": {"_count": 3, "fast": {"_count": 3}}, "and": {"_count": 2, "spinning": {"_count": 1}, "then": {"_count": 1}}, "now": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "it": {"_count": 1}, "fast": {"_count": 1}}, "top": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "high": {"_count": 1, "into": {"_count": 1}}, "he": {"_count": 1, "took": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "all": {"_count": 2}}, "so": {"_count": 1, "fast": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "furiously": {"_count": 1, "as": {"_count": 1}}, "stopped": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "around": {"_count": 1, "Rons": {"_count": 1}}, "away": {"_count": 1, "across": {"_count": 1}}, "their": {"_count": 1, "long": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "bowler": {"_count": 1}}, "his": {"_count": 1, "bowler": {"_count": 1}}, "wizard": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "web": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "view": {"_count": 1}}, "from": {"_count": 1, "darkening": {"_count": 1}}, "uncontrollably": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 1, "toward": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "dangerously": {"_count": 18, "past": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "in": {"_count": 2, "what": {"_count": 1}, "all": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "on": {"_count": 2, "its": {"_count": 2}}, "sweet": {"_count": 1, "": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "could": {"_count": 1}}, "wobbling": {"_count": 1, "head": {"_count": 1}}}, "frightening": {"_count": 23, "lurch": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "and": {"_count": 3, "impressive": {"_count": 1}, "er": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "but": {"_count": 1, "Dobby": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "possibilities": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "or": {"_count": 1, "impressing": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "vast": {"_count": 1}}, "face": {"_count": 1, "which": {"_count": 1}}, "mad": {"_count": 1, "a": {"_count": 1}}}, "lurch": {"_count": 14, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 3, "fear": {"_count": 1}, "apprehension": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 3, "long": {"_count": 1}, "train": {"_count": 1}, "cart": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "Cho": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}}, "buck": {"_count": 4, "him": {"_count": 1, "off": {"_count": 1}}, "their": {"_count": 1, "riders": {"_count": 1}}, "up": {"_count": 2, "there": {"_count": 1}, "your": {"_count": 1}}}, "Thousands": {"_count": 2, "did": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 1, "flags": {"_count": 1}}}, "riders": {"_count": 2, "off": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "looking": {"_count": 1}}}, "timeout": {"_count": 3, "and": {"_count": 1, "then": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}}, "direct": {"_count": 12, "it": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "black": {"_count": 1}}, "action": {"_count": 1, "": {"_count": 1}}, "contact": {"_count": 3, "with": {"_count": 2}, "between": {"_count": 1}}, "order": {"_count": 2, "nevertheless": {"_count": 1}, "from": {"_count": 1}}, "sunlight": {"_count": 1, "in": {"_count": 1}}, "line": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 1, "into": {"_count": 1}}, "connection": {"_count": 1, "into": {"_count": 1}}}, "violent": {"_count": 24, "swishing": {"_count": 1, "movements": {"_count": 1}}, "scuffling": {"_count": 1, "noise": {"_count": 1}}, "shade": {"_count": 2, "of": {"_count": 2}}, "gesture": {"_count": 1, "in": {"_count": 1}}, "tree": {"_count": 1, "that": {"_count": 1}}, "spirits": {"_count": 1, "": {"_count": 1}}, "deaths": {"_count": 1, "": {"_count": 1}}, "bishop": {"_count": 1, "": {"_count": 1}}, "tattoo": {"_count": 1, "against": {"_count": 1}}, "but": {"_count": 2, "if": {"_count": 1}, "entirely": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "tussle": {"_count": 1, "with": {"_count": 1}}, "giant": {"_count": 1, "who": {"_count": 1}}, "sneeze": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "brief": {"_count": 1}}, "urge": {"_count": 1, "to": {"_count": 1}}, "allergic": {"_count": 1, "reaction": {"_count": 1}}, "isnt": {"_count": 1, "going": {"_count": 1}}}, "unseated": {"_count": 4, "him": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}}, "commentating": {"_count": 5, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "say": {"_count": 1, "Slytherin": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}}, "passes": {"_count": 11, "Spinnet": {"_count": 1, "passes": {"_count": 1}}, "Bell": {"_count": 1, "hit": {"_count": 1}}, "through": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "or": {"_count": 1, "failures": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "Alicia": {"_count": 1}, "Pucey": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "from": {"_count": 1, "hand": {"_count": 1}}}, "cheering": {"_count": 31, "": {"_count": 2, ".": {"_count": 2}}, "through": {"_count": 1, "a": {"_count": 1}}, "Thanks": {"_count": 1, "Potter": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 5, "stamping": {"_count": 1}, "whooping": {"_count": 1}, "Fred": {"_count": 1}, "booing": {"_count": 1}, "shouting": {"_count": 1}}, "nudged": {"_count": 1, "Ron": {"_count": 1}}, "her": {"_count": 1, "up": {"_count": 1}}, "that": {"_count": 1, "greeted": {"_count": 1}}, "they": {"_count": 1, "couldnt": {"_count": 1}}, "him": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "crowd": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "up": {"_count": 1}, "to": {"_count": 1}}, "Ginny": {"_count": 1, "was": {"_count": 1}}, "Stewart": {"_count": 1, "Ackerley": {"_count": 1}}, "Neville": {"_count": 1, "up": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "swept": {"_count": 1, "the": {"_count": 1}}, "your": {"_count": 1, "champion": {"_count": 1}}, "on": {"_count": 1, "Cedric": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "Umbridge": {"_count": 1}}, "Ron": {"_count": 1, "on": {"_count": 1}}, "Gryffindors": {"_count": 1, "but": {"_count": 1}}}, "jerking": {"_count": 19, "and": {"_count": 4, "twitching": {"_count": 3}, "thrashing": {"_count": 1}}, "his": {"_count": 9, "head": {"_count": 5}, "thumb": {"_count": 2}, "shaggy": {"_count": 1}, "arm": {"_count": 1}}, "Harry": {"_count": 1, "from": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "awake": {"_count": 1, "to": {"_count": 1}}, "legs": {"_count": 1, "but": {"_count": 1}}, "uncontrollably": {"_count": 1, "": {"_count": 1}}, "horribly": {"_count": 1, "and": {"_count": 1}}}, "Suddenly": {"_count": 11, "people": {"_count": 1, "were": {"_count": 1}}, "Harry": {"_count": 3, "felt": {"_count": 2}, "became": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "wood": {"_count": 1}}, "a": {"_count": 2, "man": {"_count": 1}, "dark": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "managing": {"_count": 16, "to": {"_count": 10, "hold": {"_count": 1}, "jump": {"_count": 1}, "attend": {"_count": 1}, "get": {"_count": 2}, "pull": {"_count": 1}, "have": {"_count": 1}, "gulp": {"_count": 1}, "sneer": {"_count": 1}, "extract": {"_count": 1}}, "them": {"_count": 1, "boomed": {"_count": 1}}, "her": {"_count": 1, "knife": {"_count": 1}}, "lark": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "prestigious": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}}, "interfere": {"_count": 7, "with": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 1, "anything": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "grayfaced": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "nonstop": {"_count": 5, "under": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "cutlery": {"_count": 1, "cleaning": {"_count": 1}}}, "jinxing": {"_count": 4, "the": {"_count": 1, "broom": {"_count": 1}}, "everything": {"_count": 1, "he": {"_count": 1}}, "ability": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}}, "Leave": {"_count": 31, "it": {"_count": 7, "to": {"_count": 3}, "open": {"_count": 1}, "said": {"_count": 1}, "Fred": {"_count": 1}, "Hermione": {"_count": 1}}, "me": {"_count": 5, "alone": {"_count": 3}, "out": {"_count": 1}, "now": {"_count": 1}}, "him": {"_count": 9, "alone": {"_count": 7}, "to": {"_count": 1}, "ALONE": {"_count": 1}}, "Scabbers": {"_count": 1, "alone": {"_count": 1}}, "the": {"_count": 4, "Dursleys": {"_count": 1}, "others": {"_count": 1}, "Horcrux": {"_count": 1}, "lights": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "your": {"_count": 1, "trunk": {"_count": 1}}, "my": {"_count": 1, "mother": {"_count": 1}}, "Nott": {"_count": 1, "leave": {"_count": 1}}}, "vibrating": {"_count": 13, "so": {"_count": 1, "hard": {"_count": 1}}, "beneath": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 1, "engine": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "let": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "around": {"_count": 1, "Harry": {"_count": 1}}, "extra": {"_count": 1, "hard": {"_count": 1}}, "taking": {"_count": 1, "in": {"_count": 1}}, "very": {"_count": 1, "slightly": {"_count": 1}}, "with": {"_count": 1, "joy": {"_count": 1}}, "Xenophilius": {"_count": 1, "was": {"_count": 1}}}, "circled": {"_count": 9, "beneath": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 3, "tables": {"_count": 1}, "duelers": {"_count": 1}, "office": {"_count": 1}}, "and": {"_count": 2, "dodged": {"_count": 1}, "stared": {"_count": 1}}, "like": {"_count": 1, "jackals": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}}, "headfirst": {"_count": 11, "into": {"_count": 6, "the": {"_count": 5}, "that": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "pushed": {"_count": 1}, "slid": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "Reaching": {"_count": 2, "Snape": {"_count": 1, "she": {"_count": 1}}, "the": {"_count": 1, "spiral": {"_count": 1}}}, "crouched": {"_count": 37, "down": {"_count": 15, "pulled": {"_count": 1}, "by": {"_count": 1}, "beside": {"_count": 4}, "and": {"_count": 3}, "in": {"_count": 2}, "": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "so": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "low": {"_count": 4, "and": {"_count": 1}, "on": {"_count": 1}, "over": {"_count": 1}, "again": {"_count": 1}}, "over": {"_count": 2, "a": {"_count": 1}, "him": {"_count": 1}}, "on": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "outside": {"_count": 1, "a": {"_count": 1}}, "human": {"_count": 1, "child": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 2}}, "beside": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "slowly": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 1, "enormously": {"_count": 1}}, "hidden": {"_count": 2, "": {"_count": 2}}, "the": {"_count": 1, "black": {"_count": 1}}, "his": {"_count": 1, "knees": {"_count": 1}}, "and": {"_count": 1, "sniveled": {"_count": 1}}}, "wellchosen": {"_count": 2, "words": {"_count": 1, "": {"_count": 1}}, "comments": {"_count": 1, "from": {"_count": 1}}}, "Bright": {"_count": 3, "blue": {"_count": 1, "flames": {"_count": 1}}, "green": {"_count": 1, "exactly": {"_count": 1}}, "white": {"_count": 1, "flames": {"_count": 1}}}, "flames": {"_count": 92, "shot": {"_count": 2, "from": {"_count": 1}, "up": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 24, "?": {"_count": 1}, ".": {"_count": 23}}, "licking": {"_count": 2, "his": {"_count": 1}, "its": {"_count": 1}}, "and": {"_count": 7, "stepped": {"_count": 1}, "curled": {"_count": 1}, "turn": {"_count": 1}, "jumped": {"_count": 1}, "floated": {"_count": 1}, "vanished": {"_count": 1}, "the": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "suddenly": {"_count": 1, "erupted": {"_count": 1}}, "erupted": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 3, "Lupins": {"_count": 1}, "the": {"_count": 1}, "front": {"_count": 1}}, "from": {"_count": 1, "Malfoy": {"_count": 1}}, "which": {"_count": 4, "turned": {"_count": 1}, "felt": {"_count": 1}, "had": {"_count": 1}, "became": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 2}}, "a": {"_count": 1, "dark": {"_count": 1}}, "almost": {"_count": 1, "painful": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 3, "the": {"_count": 1}, "burning": {"_count": 1}, "flung": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 2, "which": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "feeling": {"_count": 1, "drained": {"_count": 1}}, "sat": {"_count": 1, "Siriuss": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "groping": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "flicker": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 2, "burst": {"_count": 1}, "get": {"_count": 1}}, "until": {"_count": 1, "with": {"_count": 1}}, "burned": {"_count": 1, "blue": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "that": {"_count": 3, "had": {"_count": 1}, "Hermione": {"_count": 1}, "erupted": {"_count": 1}}, "burst": {"_count": 2, "into": {"_count": 2}}, "spinning": {"_count": 1, "as": {"_count": 1}}, "vanished": {"_count": 1, "leaving": {"_count": 1}}, "engulfed": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 1, "Inferi": {"_count": 1}}, "Hagrids": {"_count": 1, "yells": {"_count": 1}}, "showed": {"_count": 1, "a": {"_count": 1}}, "carrying": {"_count": 1, "Fang": {"_count": 1}}, "had": {"_count": 1, "erupted": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "appear": {"_count": 1, "before": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "still": {"_count": 1, "shimmering": {"_count": 1}}, "chased": {"_count": 1, "them": {"_count": 1}}}, "hem": {"_count": 31, "of": {"_count": 15, "Snape": {"_count": 1}, "his": {"_count": 5}, "Harrys": {"_count": 1}, "Hermiones": {"_count": 1}, "her": {"_count": 1}, "its": {"_count": 1}, "Voldemorts": {"_count": 1}, "Seamuss": {"_count": 1}, "Professor": {"_count": 1}, "Bellatrixs": {"_count": 1}, "Hermione": {"_count": 1}}, "and": {"_count": 4, "it": {"_count": 1}, "continued": {"_count": 1}, "went": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}, "said": {"_count": 3, "Professor": {"_count": 2}, "Ginny": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "hem": {"_count": 1, "": {"_count": 1}}}, "yelp": {"_count": 9, "told": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 2, "pain": {"_count": 2}}, "like": {"_count": 1, "Fangs": {"_count": 1}}, "and": {"_count": 2, "leapt": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "caused": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Scooping": {"_count": 1, "the": {"_count": 1, "fire": {"_count": 1}}}, "clamber": {"_count": 4, "back": {"_count": 1, "on": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "sobbing": {"_count": 43, "into": {"_count": 4, "Hagrids": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 2}}, "I": {"_count": 1, "thought": {"_count": 1}}, "her": {"_count": 2, "robes": {"_count": 1}, "heart": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "uncontrollably": {"_count": 3, "his": {"_count": 1}, "into": {"_count": 1}, "onto": {"_count": 1}}, "ran": {"_count": 1, "toward": {"_count": 1}}, "harder": {"_count": 1, "even": {"_count": 1}}, "Wood": {"_count": 1, "passed": {"_count": 1}}, "hysterically": {"_count": 2, "tugging": {"_count": 1}, "": {"_count": 1}}, "elf": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "on": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 6, "moaning": {"_count": 2}, "twitching": {"_count": 1}, "choking": {"_count": 1}, "wailing": {"_count": 1}, "calling": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "stopped": {"_count": 1, "abruptly": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "continued": {"_count": 1, "": {"_count": 1}}, "desperately": {"_count": 1, "into": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "Bellatrix": {"_count": 1, "still": {"_count": 1}}, "Leanne": {"_count": 1, "": {"_count": 1}}, "reunited": {"_count": 1, "with": {"_count": 1}}, "Hagrid": {"_count": 1, "and": {"_count": 1}}, "quietly": {"_count": 1, "into": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}}, "clap": {"_count": 11, "his": {"_count": 3, "hand": {"_count": 1}, "hands": {"_count": 2}}, "too": {"_count": 1, "but": {"_count": 1}}, "of": {"_count": 2, "thunder": {"_count": 2}}, "this": {"_count": 1, "loon": {"_count": 1}}, "the": {"_count": 1, "students": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "ended": {"_count": 50, "in": {"_count": 2, "complete": {"_count": 1}, "twoinch": {"_count": 1}}, "up": {"_count": 23, "in": {"_count": 11}, "closing": {"_count": 1}, "killing": {"_count": 1}, "having": {"_count": 1}, "with": {"_count": 2}, "right": {"_count": 1}, "going": {"_count": 1}, "married": {"_count": 2}, "saying": {"_count": 1}, "pullin": {"_count": 1}, "near": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 5, "a": {"_count": 1}, "spent": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 2}}, "the": {"_count": 2, "game": {"_count": 1}, "Snitch": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "only": {"_count": 1, "when": {"_count": 1}}, "it": {"_count": 2, "when": {"_count": 1}, "So": {"_count": 1}}, "by": {"_count": 2, "Mr": {"_count": 1}, "Professor": {"_count": 1}}, "she": {"_count": 1, "did": {"_count": 1}}, "everybody": {"_count": 1, "applauded": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "her": {"_count": 2, "speech": {"_count": 1}, "song": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "why": {"_count": 1}}}, "seventy": {"_count": 5, "points": {"_count": 1, "to": {"_count": 1}}, "two": {"_count": 1, "": {"_count": 1}}, "seventh": {"_count": 1, "birthday": {"_count": 1}}, "in": {"_count": 1, "ten": {"_count": 1}}, "or": {"_count": 1, "eighty": {"_count": 1}}}, "sixty": {"_count": 11, "": {"_count": 2, ".": {"_count": 2}}, "points": {"_count": 5, "": {"_count": 1}, "to": {"_count": 2}, "in": {"_count": 1}, "ahead": {"_count": 1}}, "minutes": {"_count": 1, "had": {"_count": 1}}, "seconds": {"_count": 1, "said": {"_count": 1}}, "feet": {"_count": 1, "above": {"_count": 1}}, "and": {"_count": 1, "thats": {"_count": 1}}}, "Fluffy": {"_count": 26, "": {"_count": 12, "?": {"_count": 3}, ".": {"_count": 8}, "!": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 2, "still": {"_count": 2}}, "SHHHH": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 2, "me": {"_count": 1}, "the": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 1, "dragon": {"_count": 1}}, "he": {"_count": 1, "didnt": {"_count": 1}}, "to": {"_count": 1, "sleep": {"_count": 1}}, "go": {"_count": 1, "straight": {"_count": 1}}}, "Greek": {"_count": 1, "chappie": {"_count": 1, "I": {"_count": 1}}}, "chappie": {"_count": 1, "I": {"_count": 1, "met": {"_count": 1}}}, "las": {"_count": 7, "year": {"_count": 1, "I": {"_count": 1}}, "night": {"_count": 3, "he": {"_count": 1}, "": {"_count": 2}}, "ones": {"_count": 1, "in": {"_count": 1}}, "skrewt": {"_count": 1, "with": {"_count": 1}}, "time": {"_count": 1, "its": {"_count": 1}}}, "events": {"_count": 21, "certainly": {"_count": 1, "seemed": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 1, "far": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "last": {"_count": 1}, "your": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "changed": {"_count": 1, "subtly": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 2, "led": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "instance": {"_count": 1}}, "without": {"_count": 1, "comment": {"_count": 1}}}, "jinx": {"_count": 42, "when": {"_count": 1, "I": {"_count": 1}}, "him": {"_count": 3, "Hermione": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}}, "me": {"_count": 2, "he": {"_count": 1}, "in": {"_count": 1}}, "Dudley": {"_count": 1, "so": {"_count": 1}}, "you": {"_count": 2, "said": {"_count": 1}, "while": {"_count": 1}}, "on": {"_count": 2, "that": {"_count": 1}, "them": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 2, "countercurse": {"_count": 1}, "raised": {"_count": 1}}, "further": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "just": {"_count": 2, "bounces": {"_count": 1}, "missed": {"_count": 1}}, "your": {"_count": 1, "fingers": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "in": {"_count": 1, "equal": {"_count": 1}}, "that": {"_count": 3, "seemed": {"_count": 1}, "glued": {"_count": 1}, "had": {"_count": 1}}, "or": {"_count": 2, "hex": {"_count": 1}, "something": {"_count": 1}}, "Dean": {"_count": 1, "into": {"_count": 1}}, "Dawlish": {"_count": 1, "once": {"_count": 1}}, "hit": {"_count": 3, "Amycus": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 1}}, "excruciating": {"_count": 1, "pain": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}, "broke": {"_count": 1, "The": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "straight": {"_count": 1, "at": {"_count": 1}}}, "tellin": {"_count": 4, "yeh": {"_count": 1, "yer": {"_count": 1}}, "anyone": {"_count": 1, "I": {"_count": 1}}, "yer": {"_count": 1, "this": {"_count": 1}}, "the": {"_count": 1, "truth": {"_count": 1}}}, "hotly": {"_count": 23, "": {"_count": 18, ".": {"_count": 18}}, "stopping": {"_count": 1, "short": {"_count": 1}}, "who": {"_count": 1, "prop": {"_count": 1}}, "but": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "unexpectedly": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}}, "student": {"_count": 82, "": {"_count": 10, "!": {"_count": 1}, ".": {"_count": 6}, "?": {"_count": 3}}, "beastie": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "your": {"_count": 1}}, "had": {"_count": 2, "ever": {"_count": 1}, "sat": {"_count": 1}}, "properly": {"_count": 1, "before": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "mine": {"_count": 1}}, "storecupboard": {"_count": 1, "we": {"_count": 1}}, "kept": {"_count": 1, "flicking": {"_count": 1}}, "is": {"_count": 2, "to": {"_count": 2}}, "has": {"_count": 2, "been": {"_count": 2}}, "Hogwarts": {"_count": 1, "has": {"_count": 1}}, "runs": {"_count": 1, "afoul": {"_count": 1}}, "a": {"_count": 2, "year": {"_count": 1}, "stack": {"_count": 1}}, "could": {"_count": 2, "receive": {"_count": 1}, "have": {"_count": 1}}, "left": {"_count": 1, "information": {"_count": 1}}, "whose": {"_count": 1, "mind": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 4, "that": {"_count": 1}, "hes": {"_count": 1}, "claiming": {"_count": 1}, "still": {"_count": 1}}, "to": {"_count": 7, "do": {"_count": 2}, "student": {"_count": 1}, "put": {"_count": 1}, "fix": {"_count": 1}, "question": {"_count": 1}, "covet": {"_count": 1}}, "hoodwinks": {"_count": 1, "our": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 1, "highly": {"_count": 1}}, "yields": {"_count": 1, "to": {"_count": 1}}, "isnt": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "who": {"_count": 7, "passes": {"_count": 1}, "had": {"_count": 2}, "shows": {"_count": 1}, "thinks": {"_count": 1}, "has": {"_count": 1}, "entered": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "embarrasses": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "might": {"_count": 1}}, "I": {"_count": 1, "daresay": {"_count": 1}}, "but": {"_count": 1, "shed": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "taken": {"_count": 1}}, "requires": {"_count": 1, "from": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "found": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "organization": {"_count": 1, "has": {"_count": 1}}, "societies": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "head": {"_count": 1, "bent": {"_count": 1}}, "before": {"_count": 1, "swept": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "safety": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "member": {"_count": 1}}, "produce": {"_count": 1, "finer": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "ever": {"_count": 1, "seen": {"_count": 1}}, "wont": {"_count": 1, "it": {"_count": 1}}}, "meddlin": {"_count": 1, "in": {"_count": 1, "things": {"_count": 1}}}, "concern": {"_count": 22, "yeh": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "caught": {"_count": 1}}, "him": {"_count": 2, "was": {"_count": 1}, "but": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "Orb": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "eyes": {"_count": 1, "that": {"_count": 1}}, "of": {"_count": 1, "yours": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "you": {"_count": 1, "do": {"_count": 1}}, "and": {"_count": 2, "who": {"_count": 1}, "something": {"_count": 1}}, "on": {"_count": 1, "Hagrids": {"_count": 1}}, "is": {"_count": 1, "your": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}}, "\u25a0": {"_count": 5, "Aha": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "Thats": {"_count": 1, "right": {"_count": 1}}, "It": {"_count": 1, "doesnt": {"_count": 1}}}, "Aha": {"_count": 11, "": {"_count": 9, "!": {"_count": 9}}, "he": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "MIRROR": {"_count": 2, "OF": {"_count": 1, "ERISED": {"_count": 1}}, "Harrys": {"_count": 1, "feet": {"_count": 1}}}, "ERISED": {"_count": 1, "Christmas": {"_count": 1, "was": {"_count": 1}}}, "mid": {"_count": 3, "December": {"_count": 1, "Hogwarts": {"_count": 1}}, "word": {"_count": 1, "": {"_count": 1}}, "sentence": {"_count": 1, "at": {"_count": 1}}}, "December": {"_count": 6, "Hogwarts": {"_count": 1, "woke": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "brought": {"_count": 1, "wind": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "arrived": {"_count": 1, "bringing": {"_count": 1}}}, "snow": {"_count": 80, "": {"_count": 18, ".": {"_count": 15}, "!": {"_count": 2}, "?": {"_count": 1}}, "still": {"_count": 1, "hadnt": {"_count": 1}}, "couldnt": {"_count": 1, "dampen": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "at": {"_count": 1, "every": {"_count": 1}}, "covered": {"_count": 1, "balaclava": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "Sunday": {"_count": 1}}, "was": {"_count": 4, "falling": {"_count": 1}, "untouched": {"_count": 1}, "scarlet": {"_count": 1}, "still": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 8, "the": {"_count": 1}, "Harry": {"_count": 2}, "a": {"_count": 1}, "icicles": {"_count": 1}, "in": {"_count": 1}, "stone": {"_count": 1}, "sat": {"_count": 1}}, "their": {"_count": 1, "socks": {"_count": 1}}, "all": {"_count": 2, "around": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 2}}, "swirling": {"_count": 1, "down": {"_count": 1}}, "until": {"_count": 1, "at": {"_count": 1}}, "by": {"_count": 1, "Karkuss": {"_count": 1}}, "leading": {"_count": 1, "from": {"_count": 1}}, "leaving": {"_count": 1, "no": {"_count": 1}}, "toward": {"_count": 2, "Hagrid": {"_count": 1}, "her": {"_count": 1}}, "Malfoy": {"_count": 1, "Crabbe": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "now": {"_count": 1, "falling": {"_count": 1}}, "glittered": {"_count": 1, "in": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "white": {"_count": 1, "centaur": {"_count": 1}}, "than": {"_count": 1, "had": {"_count": 1}}, "melted": {"_count": 1, "around": {"_count": 1}}, "glistening": {"_count": 1, "on": {"_count": 1}}, "building": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "off": {"_count": 1, "Hermione": {"_count": 1}}, "half": {"_count": 1, "buried": {"_count": 1}}, "here": {"_count": 1, "had": {"_count": 1}}, "lay": {"_count": 2, "deep": {"_count": 1}, "on": {"_count": 1}}, "carving": {"_count": 1, "deep": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "hiding": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 1, "them": {"_count": 1}}, "past": {"_count": 1, "Dumbledores": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "distant": {"_count": 1, "church": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "wand": {"_count": 1, "held": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}}, "froze": {"_count": 39, "solid": {"_count": 1, "and": {"_count": 1}}, "watching": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}, "horrors": {"_count": 1, "truck": {"_count": 1}}, "his": {"_count": 6, "bat": {"_count": 1}, "eyes": {"_count": 1}, "arm": {"_count": 1}, "cut": {"_count": 1}, "hand": {"_count": 1}, "index": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "as": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 3, "an": {"_count": 1}, "midair": {"_count": 1}, "his": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "foot": {"_count": 1, "on": {"_count": 1}}, "looking": {"_count": 1, "angry": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "nose": {"_count": 1, "to": {"_count": 1}}, "wary": {"_count": 1, "eyes": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "listening": {"_count": 1, "his": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "absurdly": {"_count": 1, "in": {"_count": 1}}, "abandoning": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}}, "snowballs": {"_count": 2, "so": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "zoom": {"_count": 1}}}, "battle": {"_count": 52, "their": {"_count": 1, "way": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "against": {"_count": 1, "students": {"_count": 1}}, "there": {"_count": 1, "dear": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 3, "notice": {"_count": 1}, "the": {"_count": 1}, "cease": {"_count": 1}}, "as": {"_count": 1, "two": {"_count": 1}}, "below": {"_count": 1, "was": {"_count": 1}}, "before": {"_count": 1, "her": {"_count": 1}}, "fumes": {"_count": 1, "through": {"_count": 1}}, "of": {"_count": 1, "wills": {"_count": 1}}, "helmet": {"_count": 1, "goblinmade": {"_count": 1}}, "shines": {"_count": 1, "brightly": {"_count": 1}}, "beside": {"_count": 1, "Hagrids": {"_count": 1}}, "Lupin": {"_count": 1, "dragged": {"_count": 1}}, "an": {"_count": 1, "thas": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 5, "raging": {"_count": 2}, "won": {"_count": 1}, "being": {"_count": 1}, "still": {"_count": 1}}, "still": {"_count": 1, "raged": {"_count": 1}}, "There": {"_count": 1, "were": {"_count": 1}}, "not": {"_count": 2, "long": {"_count": 1}, "ceased": {"_count": 1}}, "plan": {"_count": 1, "has": {"_count": 1}}, "had": {"_count": 1, "begun": {"_count": 1}}, "were": {"_count": 3, "already": {"_count": 1}, "drowned": {"_count": 1}, "loud": {"_count": 1}}, "died": {"_count": 1, "the": {"_count": 1}}, "enter": {"_count": 1, "the": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "recommences": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 2, "won": {"_count": 1}, "lost": {"_count": 1}}, "came": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "stormy": {"_count": 8, "sky": {"_count": 1, "to": {"_count": 1}}, "Saturday": {"_count": 1, "afternoon": {"_count": 1}}, "gray": {"_count": 1, "bronze": {"_count": 1}}, "ceiling": {"_count": 2, "like": {"_count": 1}, "flashed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "whiled": {"_count": 1}}, "sea": {"_count": 1, "and": {"_count": 1}}}, "nursed": {"_count": 3, "back": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 1, "back": {"_count": 1}}, "a": {"_count": 1, "soft": {"_count": 1}}}, "health": {"_count": 18, "by": {"_count": 2, "Hagrid": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Umbridge": {"_count": 1}}, "and": {"_count": 1, "their": {"_count": 1}}, "was": {"_count": 2, "improving": {"_count": 1}, "always": {"_count": 1}}, "but": {"_count": 1, "well": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "drink": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "what": {"_count": 1, "those": {"_count": 1}}}, "drafty": {"_count": 3, "corridors": {"_count": 1, "had": {"_count": 1}}, "because": {"_count": 1, "none": {"_count": 1}}, "room": {"_count": 1, "she": {"_count": 1}}}, "bitter": {"_count": 23, "wind": {"_count": 3, "rattled": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "sidelong": {"_count": 1, "looks": {"_count": 1}}, "and": {"_count": 2, "resentful": {"_count": 1}, "perhaps": {"_count": 1}}, "Siriuss": {"_count": 1, "voice": {"_count": 1}}, "feelings": {"_count": 1, "toward": {"_count": 1}}, "cold": {"_count": 2, "And": {"_count": 1}, "snowing": {"_count": 1}}, "smile": {"_count": 1, "the": {"_count": 1}}, "muttering": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "laugh": {"_count": 1, "": {"_count": 1}}, "resentment": {"_count": 1, "Master": {"_count": 1}}, "reflections": {"_count": 1, "by": {"_count": 1}}, "memories": {"_count": 1, "the": {"_count": 1}}, "disappointment": {"_count": 2, "welled": {"_count": 1}, "and": {"_count": 1}}, "thoughts": {"_count": 1, "for": {"_count": 1}}}, "Worst": {"_count": 4, "of": {"_count": 2, "all": {"_count": 2}}, "Is": {"_count": 1, "Coming": {"_count": 1}}, "that": {"_count": 1, "can": {"_count": 1}}}, "mist": {"_count": 48, "before": {"_count": 3, "them": {"_count": 2}, "him": {"_count": 1}}, "hanging": {"_count": 1, "across": {"_count": 1}}, "hung": {"_count": 1, "over": {"_count": 1}}, "was": {"_count": 4, "filling": {"_count": 1}, "now": {"_count": 1}, "the": {"_count": 1}, "descending": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 12}, "?": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 1, "Sirius": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "lifting": {"_count": 1, "they": {"_count": 1}}, "floating": {"_count": 1, "ahead": {"_count": 1}}, "leaving": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "which": {"_count": 1, "twinkled": {"_count": 1}}, "in": {"_count": 3, "front": {"_count": 1}, "the": {"_count": 2}}, "of": {"_count": 1, "silver": {"_count": 1}}, "came": {"_count": 1, "a": {"_count": 1}}, "Professor": {"_count": 1, "Tofty": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "stole": {"_count": 1, "over": {"_count": 1}}, "then": {"_count": 1, "out": {"_count": 1}}, "had": {"_count": 1, "returned": {"_count": 1}}, "unnaturally": {"_count": 1, "loudly": {"_count": 1}}, "catching": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "into": {"_count": 1, "which": {"_count": 1}}, "standing": {"_count": 1, "alongside": {"_count": 1}}}, "spine": {"_count": 6, "of": {"_count": 2, "lionfish": {"_count": 2}}, "and": {"_count": 1, "the": {"_count": 1}}, "curve": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 2, "going": {"_count": 1}, "stiff": {"_count": 1}}}, "lionfish": {"_count": 2, "ignored": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 1, "essence": {"_count": 1}}}, "Disgusted": {"_count": 1, "that": {"_count": 1, "the": {"_count": 1}}}, "widemouthed": {"_count": 1, "tree": {"_count": 1, "frog": {"_count": 1}}}, "replacing": {"_count": 8, "Harry": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 2, "glasses": {"_count": 1}, "ear": {"_count": 1}}, "it": {"_count": 3, "with": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "them": {"_count": 1, "carefully": {"_count": 1}}, "Katie": {"_count": 1, "in": {"_count": 1}}}, "bucking": {"_count": 2, "broomstick": {"_count": 2, "": {"_count": 1}, "ENOUGH": {"_count": 1}}}, "jealous": {"_count": 12, "and": {"_count": 1, "angry": {"_count": 1}}, "of": {"_count": 2, "Ron": {"_count": 1}, "my": {"_count": 1}}, "faces": {"_count": 1, "when": {"_count": 1}}, "piped": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 1, "ancient": {"_count": 1}}, "looks": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "watching": {"_count": 1, "them": {"_count": 1}}, "for": {"_count": 1, "years": {"_count": 1}}}, "taunting": {"_count": 4, "Harry": {"_count": 1, "about": {"_count": 1}}, "Dudley": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "kind": {"_count": 1, "": {"_count": 1}}}, "signed": {"_count": 34, "up": {"_count": 4, "at": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 2}}, "note": {"_count": 3, "from": {"_count": 1}, "here": {"_count": 1}, "of": {"_count": 1}}, "and": {"_count": 1, "sealed": {"_count": 1}}, "photos": {"_count": 5, "Potter": {"_count": 1}, "": {"_count": 3}, "he": {"_count": 1}}, "photo": {"_count": 1, "Potter": {"_count": 1}}, "pictures": {"_count": 2, "at": {"_count": 1}, "into": {"_count": 1}}, "Oh": {"_count": 1, "shut": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 1}, "fragment": {"_count": 1}}, "her": {"_count": 1, "list": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "form": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "havent": {"_count": 1, "they": {"_count": 1}}, "Hermione": {"_count": 1, "took": {"_count": 1}}, "some": {"_count": 1, "kind": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "their": {"_count": 2, "names": {"_count": 2}}, "out": {"_count": 1, "by": {"_count": 1}}, "by": {"_count": 1, "myself": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "R": {"_count": 2, "": {"_count": 2}}}, "fir": {"_count": 1, "tree": {"_count": 1, "blocking": {"_count": 1}}}, "blocking": {"_count": 26, "the": {"_count": 9, "corridor": {"_count": 2}, "doorway": {"_count": 1}, "door": {"_count": 1}, "light": {"_count": 1}, "stairs": {"_count": 2}, "top": {"_count": 2}}, "thing": {"_count": 1, "again": {"_count": 1}}, "him": {"_count": 2, "HARRY": {"_count": 1}, "": {"_count": 1}}, "out": {"_count": 3, "his": {"_count": 1}, "Malfoys": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 5, "progress": {"_count": 1}, "mouth": {"_count": 1}, "every": {"_count": 1}, "access": {"_count": 1}, "view": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 2, "way": {"_count": 1}, "path": {"_count": 1}}, "all": {"_count": 1, "light": {"_count": 1}}, "jinx": {"_count": 1, "at": {"_count": 1}}}, "Hi": {"_count": 56, "Hagrid": {"_count": 5, "want": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "hows": {"_count": 1}}, "Harry": {"_count": 13, "": {"_count": 6}, "he": {"_count": 1}, "said": {"_count": 3}, "Im": {"_count": 1}, "you": {"_count": 1}, "she": {"_count": 1}}, "Neville": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Percy": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 15, "Cedric": {"_count": 2}, "Padma": {"_count": 1}, "Ron": {"_count": 2}, "Harry": {"_count": 6}, "Fred": {"_count": 1}, "Cho": {"_count": 1}, "Ginny": {"_count": 1}, "Albus": {"_count": 1}}, "Colin": {"_count": 1, "said": {"_count": 1}}, "Parvati": {"_count": 2, "": {"_count": 2}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 4, "said": {"_count": 1}, "": {"_count": 3}}, "he": {"_count": 3, "said": {"_count": 3}}, "Angelina": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 2}}, "chorused": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "": {"_count": 1}}}, "drawl": {"_count": 4, "from": {"_count": 2, "behind": {"_count": 1}, "the": {"_count": 1}}, "pulling": {"_count": 1, "open": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Hoping": {"_count": 6, "to": {"_count": 3, "be": {"_count": 1}, "see": {"_count": 2}}, "you": {"_count": 1, "are": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}}, "palace": {"_count": 4, "compared": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "several": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}}, "compared": {"_count": 23, "to": {"_count": 13, "what": {"_count": 2}, "its": {"_count": 1}, "taking": {"_count": 1}, "Barty": {"_count": 1}, "the": {"_count": 4}, "this": {"_count": 1}, "you": {"_count": 1}, "mine": {"_count": 1}, "me": {"_count": 1}}, "with": {"_count": 7, "Harrys": {"_count": 1}, "my": {"_count": 1}, "the": {"_count": 4}, "Rons": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "favorably": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "lengths": {"_count": 1}}}, "WEASLEY": {"_count": 15, "": {"_count": 2, "!": {"_count": 2}}, "Dumbledores": {"_count": 1, "abrupt": {"_count": 1}}, "IS": {"_count": 5, "OUR": {"_count": 5}}, "WAS": {"_count": 3, "BORN": {"_count": 3}}, "WILL": {"_count": 2, "MAKE": {"_count": 2}}, "CANNOT": {"_count": 1, "SAVE": {"_count": 1}}, "BLOOD": {"_count": 1, "STATUS": {"_count": 1}}}, "provoked": {"_count": 4, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "us": {"_count": 1, "said": {"_count": 1}}, "this": {"_count": 1, "easily": {"_count": 1}}, "open": {"_count": 1, "rebellion": {"_count": 1}}}, "insultin": {"_count": 2, "his": {"_count": 1, "family": {"_count": 1}}, "em": {"_count": 1, "if": {"_count": 1}}}, "silkily": {"_count": 7, "": {"_count": 4, ".": {"_count": 4}}, "his": {"_count": 1, "face": {"_count": 1}}, "why": {"_count": 1, "would": {"_count": 1}}, "from": {"_count": 1, "beside": {"_count": 1}}}, "roughly": {"_count": 34, "past": {"_count": 1, "the": {"_count": 1}}, "cut": {"_count": 1, "wooden": {"_count": 1}}, "shook": {"_count": 1, "him": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 1}, "Harrys": {"_count": 2}}, "so": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "the": {"_count": 2, "size": {"_count": 2}}, "Thas": {"_count": 1, "next": {"_count": 1}}, "hewn": {"_count": 1, "wooden": {"_count": 1}}, "grabbing": {"_count": 1, "Cedrics": {"_count": 1}}, "and": {"_count": 1, "turned": {"_count": 1}}, "level": {"_count": 1, "with": {"_count": 1}}, "aside": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "together": {"_count": 1, "was": {"_count": 1}}, "forward": {"_count": 1, "into": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "handled": {"_count": 1, "a": {"_count": 1}}, "where": {"_count": 1, "Umbridges": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "dug": {"_count": 1, "hole": {"_count": 1}}, "why": {"_count": 1, "not": {"_count": 1}}}, "smirking": {"_count": 35, "": {"_count": 16, ".": {"_count": 16}}, "the": {"_count": 1, "card": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "so": {"_count": 1, "broadly": {"_count": 1}}, "more": {"_count": 1, "broadly": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "than": {"_count": 1, "anything": {"_count": 1}}, "unpleasantly": {"_count": 1, "as": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "this": {"_count": 1, "woman": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "skeptically": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "grinding": {"_count": 14, "his": {"_count": 4, "teeth": {"_count": 4}}, "it": {"_count": 1, "on": {"_count": 1}}, "their": {"_count": 1, "teeth": {"_count": 1}}, "noise": {"_count": 3, "as": {"_count": 1}, "they": {"_count": 1}, "from": {"_count": 1}}, "and": {"_count": 1, "tinkling": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "bolts": {"_count": 1}, "benches": {"_count": 1}}, "sound": {"_count": 1, "then": {"_count": 1}}}, "treat": {"_count": 28, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "Oh": {"_count": 1, "no": {"_count": 1}}, "for": {"_count": 1, "yeh": {"_count": 1}}, "him": {"_count": 1, "like": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "regularly": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "food": {"_count": 1, "anybody": {"_count": 1}}, "them": {"_count": 3, "": {"_count": 1}, "just": {"_count": 1}, "like": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 1}, "okay": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "ourselves": {"_count": 1, "": {"_count": 1}}, "teachers": {"_count": 1, "these": {"_count": 1}}, "Pausing": {"_count": 1, "only": {"_count": 1}}, "houseelves": {"_count": 1, "": {"_count": 1}}, "dragon": {"_count": 1, "pox": {"_count": 1}}, "people": {"_count": 1, "like": {"_count": 1}}}, "spectacular": {"_count": 21, "": {"_count": 1, ".": {"_count": 1}}, "dive": {"_count": 1, "which": {"_count": 1}}, "display": {"_count": 1, "of": {"_count": 1}}, "your": {"_count": 1, "best": {"_count": 1}}, "save": {"_count": 1, "making": {"_count": 1}}, "performance": {"_count": 1, "in": {"_count": 1}}, "goal": {"_count": 1, "by": {"_count": 1}}, "moves": {"_count": 1, "": {"_count": 1}}, "show": {"_count": 1, "but": {"_count": 1}}, "Ill": {"_count": 1, "tell": {"_count": 1}}, "saves": {"_count": 2, "when": {"_count": 1}, "some": {"_count": 1}}, "jinxes": {"_count": 1, "and": {"_count": 1}}, "handlebar": {"_count": 1, "mustache": {"_count": 1}}, "golden": {"_count": 1, "necklace": {"_count": 1}}, "things": {"_count": 1, "from": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "victory": {"_count": 1, "must": {"_count": 1}}, "duel": {"_count": 1, "of": {"_count": 1}}, "view": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}}, "Festoons": {"_count": 1, "of": {"_count": 1, "holly": {"_count": 1}}}, "mistletoe": {"_count": 10, "hung": {"_count": 1, "all": {"_count": 1}}, "crisscrossing": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "strung": {"_count": 1}}, "and": {"_count": 1, "ivy": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "had": {"_count": 1, "been": {"_count": 1}}, "bunches": {"_count": 1, "every": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "stood": {"_count": 1, "sentinel": {"_count": 1}}}, "towering": {"_count": 34, "Christmas": {"_count": 1, "trees": {"_count": 1}}, "beech": {"_count": 2, "tree": {"_count": 2}}, "oak": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 1, "chessmen": {"_count": 1}}, "Gryffindor": {"_count": 1, "lion": {"_count": 1}}, "above": {"_count": 2, "him": {"_count": 2}}, "hooded": {"_count": 2, "dementors": {"_count": 1}, "figure": {"_count": 1}}, "hat": {"_count": 1, "topped": {"_count": 1}}, "rage": {"_count": 1, "": {"_count": 1}}, "hedges": {"_count": 1, "cast": {"_count": 1}}, "marble": {"_count": 1, "headstone": {"_count": 1}}, "over": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "mass": {"_count": 1, "of": {"_count": 1}}, "temper": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "figure": {"_count": 1, "of": {"_count": 1}}, "shelves": {"_count": 2, "each": {"_count": 1}, "covered": {"_count": 1}}, "pine": {"_count": 1, "and": {"_count": 1}}, "crystal": {"_count": 1, "bell": {"_count": 1}}, "rows": {"_count": 1, "of": {"_count": 1}}, "structure": {"_count": 1, "swayed": {"_count": 1}}, "mill": {"_count": 1, "chimney": {"_count": 1}}, "walls": {"_count": 2, "built": {"_count": 2}}, "cliff": {"_count": 1, "stood": {"_count": 1}}, "black": {"_count": 1, "figures": {"_count": 1}}, "building": {"_count": 1, "a": {"_count": 1}}, "piles": {"_count": 1, "of": {"_count": 1}}}, "icicles": {"_count": 3, "some": {"_count": 1, "glittering": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "glittered": {"_count": 1, "in": {"_count": 1}}}, "blossoming": {"_count": 4, "out": {"_count": 2, "of": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}}, "trailing": {"_count": 18, "them": {"_count": 1, "over": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "mud": {"_count": 1, "behind": {"_count": 1}}, "out": {"_count": 1, "onto": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "behind": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "from": {"_count": 2, "their": {"_count": 1}, "it": {"_count": 1}}, "haphazardly": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 2, "heavy": {"_count": 1}, "Invisibility": {"_count": 1}}, "shawls": {"_count": 2, "her": {"_count": 1}, "": {"_count": 1}}, "waterlogged": {"_count": 1, "rags": {"_count": 1}}, "lace": {"_count": 1, "cuff": {"_count": 1}}}, "dogs": {"_count": 21, "guardin": {"_count": 1, "": {"_count": 1}}, "guarding": {"_count": 1, "its": {"_count": 1}}, "dyeh": {"_count": 1, "meet": {"_count": 1}}, "noses": {"_count": 1, "sniffed": {"_count": 1}}, "growls": {"_count": 1, "ceased": {"_count": 1}}, "hot": {"_count": 1, "smelly": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "legs": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "men": {"_count": 1}}, "but": {"_count": 1, "each": {"_count": 1}}, "Marge": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "to": {"_count": 1, "look": {"_count": 1}}, "and": {"_count": 2, "dazedly": {"_count": 1}, "scoundrels": {"_count": 1}}, "said": {"_count": 2, "Malfoy": {"_count": 1}, "Snape": {"_count": 1}}, "jaws": {"_count": 1, "fastened": {"_count": 1}}}, "hint": {"_count": 30, "I": {"_count": 2, "know": {"_count": 1}, "want": {"_count": 1}}, "of": {"_count": 17, "Harrys": {"_count": 1}, "thunder": {"_count": 1}, "sarcasm": {"_count": 1}, "a": {"_count": 6}, "uncertainty": {"_count": 1}, "impatience": {"_count": 1}, "disapproval": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "remorse": {"_count": 1}, "complacency": {"_count": 1}, "Hermione": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "about": {"_count": 2, "the": {"_count": 1}, "Hagrid": {"_count": 1}}, "reached": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "sat": {"_count": 1}}, "that": {"_count": 2, "Cedric": {"_count": 1}, "Potters": {"_count": 1}}, "was": {"_count": 1, "worth": {"_count": 1}}, "You": {"_count": 1, "didnt": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "flatly": {"_count": 34, "": {"_count": 24, ".": {"_count": 24}}, "weve": {"_count": 1, "done": {"_count": 1}}, "glancing": {"_count": 1, "around": {"_count": 1}}, "when": {"_count": 1, "Hagrid": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "watching": {"_count": 1, "her": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "take": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "with": {"_count": 1}}, "lying": {"_count": 1, "nodded": {"_count": 1}}, "putting": {"_count": 1, "down": {"_count": 1}}}, "searching": {"_count": 45, "books": {"_count": 1, "for": {"_count": 1}}, "look": {"_count": 3, "": {"_count": 2}, "then": {"_count": 1}}, "for": {"_count": 13, "clues": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "worms": {"_count": 1}, "me": {"_count": 2}, "something": {"_count": 1}, "my": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}, "Voldemort": {"_count": 1}}, "her": {"_count": 1, "bag": {"_count": 1}}, "until": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "spotted": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "his": {"_count": 3, "pockets": {"_count": 2}, "office": {"_count": 1}}, "their": {"_count": 1, "pockets": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "ponder": {"_count": 1, "this": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "them": {"_count": 1, "by": {"_count": 1}}, "fruitlessly": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "who": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "old": {"_count": 1, "records": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 3, "folds": {"_count": 1}, "undergrowth": {"_count": 1}, "castle": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "wands": {"_count": 1, "": {"_count": 1}}}, "Flamels": {"_count": 3, "name": {"_count": 1, "ever": {"_count": 1}}, "Sorcerers": {"_count": 1, "Stone": {"_count": 1}}, "just": {"_count": 1, "going": {"_count": 1}}}, "Notable": {"_count": 1, "Magical": {"_count": 1, "Names": {"_count": 1}}}, "Names": {"_count": 2, "of": {"_count": 1, "Our": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}}, "Time": {"_count": 23, "he": {"_count": 2, "was": {"_count": 1}, "would": {"_count": 1}}, "to": {"_count": 11, "make": {"_count": 1}, "feed": {"_count": 1}, "split": {"_count": 1}, "go": {"_count": 2}, "start": {"_count": 1}, "test": {"_count": 1}, "pack": {"_count": 1}, "leave": {"_count": 1}, "sit": {"_count": 1}, "fly": {"_count": 1}}, "was": {"_count": 3, "behaving": {"_count": 1}, "getting": {"_count": 1}, "running": {"_count": 1}}, "is": {"_count": 3, "short": {"_count": 1}, "Galleons": {"_count": 1}, "making": {"_count": 1}}, "and": {"_count": 1, "space": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Room": {"_count": 1, "swung": {"_count": 1}}, "ter": {"_count": 1, "fight": {"_count": 1}}}, "Important": {"_count": 1, "Modern": {"_count": 1, "Magical": {"_count": 1}}}, "Discoveries": {"_count": 1, "and": {"_count": 1, "A": {"_count": 1}}}, "Study": {"_count": 5, "of": {"_count": 4, "Recent": {"_count": 2}, "Ancient": {"_count": 1}, "Hippogriff": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}}, "Recent": {"_count": 2, "Developments": {"_count": 2, "in": {"_count": 2}}}, "Developments": {"_count": 2, "in": {"_count": 2, "Wizardry": {"_count": 2}}}, "sheer": {"_count": 9, "size": {"_count": 1, "of": {"_count": 1}}, "irritation": {"_count": 1, "": {"_count": 1}}, "luck": {"_count": 2, "and": {"_count": 1}, "get": {"_count": 1}}, "cheek": {"_count": 1, "": {"_count": 1}}, "drop": {"_count": 1, "black": {"_count": 1}}, "desperation": {"_count": 1, "they": {"_count": 1}}, "force": {"_count": 1, "the": {"_count": 1}}, "weight": {"_count": 1, "of": {"_count": 1}}}, "tens": {"_count": 1, "of": {"_count": 1, "thousands": {"_count": 1}}}, "titles": {"_count": 5, "she": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "like": {"_count": 1, "Charm": {"_count": 1}}, "of": {"_count": 1, "other": {"_count": 1}}}, "random": {"_count": 21, "": {"_count": 1, ".": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}, "work": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 8, "catching": {"_count": 1}, "modeling": {"_count": 1}, "demanding": {"_count": 1}, "pushed": {"_count": 1}, "hid": {"_count": 1}, "hurried": {"_count": 1}, "pretended": {"_count": 1}, "saw": {"_count": 1}}, "experiments": {"_count": 1, "typical": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "body": {"_count": 1, "parts": {"_count": 1}}, "phrases": {"_count": 1, "from": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "way": {"_count": 1, "causing": {"_count": 1}}, "words": {"_count": 2, "under": {"_count": 2}}, "turn": {"_count": 1, "but": {"_count": 1}}}, "wandered": {"_count": 20, "over": {"_count": 4, "to": {"_count": 3}, "": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 1, "castle": {"_count": 1}}, "dispiritedly": {"_count": 1, "toward": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "extremely": {"_count": 1, "quickly": {"_count": 1}}, "across": {"_count": 1, "my": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 1, "Dervish": {"_count": 1}}, "upward": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "long": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}}, "Restricted": {"_count": 10, "Section": {"_count": 10, "": {"_count": 4}, "in": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 2}, "You": {"_count": 1}, "and": {"_count": 1}}}, "Section": {"_count": 10, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "right": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "You": {"_count": 1, "needed": {"_count": 1}}, "and": {"_count": 1, "even": {"_count": 1}}}, "specially": {"_count": 7, "signed": {"_count": 2, "note": {"_count": 2}}, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "you": {"_count": 1, "Harry": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "ones": {"_count": 1}}}, "restricted": {"_count": 4, "books": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}, "section": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "containing": {"_count": 19, "powerful": {"_count": 1, "Dark": {"_count": 1}}, "one": {"_count": 3, "unicorn": {"_count": 1}, "of": {"_count": 2}}, "a": {"_count": 7, "hinkypunk": {"_count": 1}, "grindylow": {"_count": 1}, "very": {"_count": 1}, "really": {"_count": 1}, "bag": {"_count": 1}, "swirling": {"_count": 1}, "stuffed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "the": {"_count": 1, "balls": {"_count": 1}}, "glittering": {"_count": 1, "Floo": {"_count": 1}}, "his": {"_count": 3, "anger": {"_count": 1}, "list": {"_count": 1}, "wand": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}}, "advanced": {"_count": 26, "Defense": {"_count": 1, "Against": {"_count": 1}}, "on": {"_count": 6, "him": {"_count": 2}, "Ron": {"_count": 1}, "Lily": {"_count": 1}, "Voldemort": {"_count": 1}, "his": {"_count": 1}}, "He": {"_count": 1, "did": {"_count": 1}}, "magic": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 2, "you": {"_count": 1}, "their": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "that": {"_count": 1, "he": {"_count": 1}}, "sensing": {"_count": 1, "its": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "disruption": {"_count": 1, "": {"_count": 1}}, "defensive": {"_count": 1, "magic": {"_count": 1}}, "Defensive": {"_count": 1, "magic": {"_count": 1}}, "Dark": {"_count": 1, "Magic": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "evidently": {"_count": 1, "torn": {"_count": 1}}}, "Pince": {"_count": 18, "the": {"_count": 2, "librarian": {"_count": 2}}, "where": {"_count": 1, "they": {"_count": 1}}, "breathing": {"_count": 1, "down": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "held": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 1, "help": {"_count": 1}}, "had": {"_count": 1, "extinguished": {"_count": 1}}, "being": {"_count": 1, "too": {"_count": 1}}, "swept": {"_count": 1, "past": {"_count": 1}}, "was": {"_count": 2, "several": {"_count": 1}, "swooping": {"_count": 1}}, "prowled": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 1, "around": {"_count": 1}}, "were": {"_count": 1, "secretly": {"_count": 1}}, "standing": {"_count": 1, "beside": {"_count": 1}}}, "librarian": {"_count": 5, "brandished": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "Madam": {"_count": 2, "Pince": {"_count": 2}}, "prowled": {"_count": 1, "the": {"_count": 1}}}, "brandished": {"_count": 13, "a": {"_count": 3, "feather": {"_count": 1}, "whip": {"_count": 1}, "piece": {"_count": 1}}, "his": {"_count": 4, "wand": {"_count": 3}, "knife": {"_count": 1}}, "the": {"_count": 3, "pinstriped": {"_count": 1}, "sheaf": {"_count": 1}, "silver": {"_count": 1}}, "it": {"_count": 1, "fiercely": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "swords": {"_count": 1, "and": {"_count": 1}}}, "duster": {"_count": 2, "at": {"_count": 2, "him": {"_count": 1}, "least": {"_count": 1}}}, "Wishing": {"_count": 1, "hed": {"_count": 1, "been": {"_count": 1}}}, "hearing": {"_count": 85, "what": {"_count": 2, "they": {"_count": 1}, "youve": {"_count": 1}}, "leaves": {"_count": 1, "rustling": {"_count": 1}}, "that": {"_count": 4, "voice": {"_count": 3}, "he": {"_count": 1}}, "the": {"_count": 5, "disembodied": {"_count": 1}, "crowd": {"_count": 1}, "news": {"_count": 1}, "names": {"_count": 1}, "prophecy": {"_count": 1}}, "a": {"_count": 2, "basilisk": {"_count": 1}, "hundredthousandstrong": {"_count": 1}}, "Harry": {"_count": 1, "added": {"_count": 1}}, "will": {"_count": 1, "take": {"_count": 1}}, "to": {"_count": 2, "tell": {"_count": 1}, "last": {"_count": 1}}, "particularly": {"_count": 1, "violent": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "?": {"_count": 1}, "!": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 2, "but": {"_count": 1}, "look": {"_count": 1}}, "explosions": {"_count": 1, "out": {"_count": 1}}, "about": {"_count": 7, "other": {"_count": 1}, "the": {"_count": 3}, "anything": {"_count": 1}, "all": {"_count": 1}, "it": {"_count": 1}}, "some": {"_count": 1, "very": {"_count": 1}}, "them": {"_count": 1, "hit": {"_count": 1}}, "something": {"_count": 2, "that": {"_count": 1}, "like": {"_count": 1}}, "disapproving": {"_count": 1, "mutters": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 3}}, "on": {"_count": 3, "12th": {"_count": 1}, "the": {"_count": 2}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "was": {"_count": 2, "swept": {"_count": 1}, "quite": {"_count": 1}}, "its": {"_count": 1, "just": {"_count": 1}}, "and": {"_count": 5, "Harry": {"_count": 1}, "not": {"_count": 1}, "everything": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}}, "Mum": {"_count": 1, "shouting": {"_count": 1}}, "as": {"_count": 1, "Snuffles": {"_count": 1}}, "once": {"_count": 1, "since": {"_count": 1}}, "everything": {"_count": 1, "that": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "filled": {"_count": 1, "every": {"_count": 1}}, "theyve": {"_count": 1, "changed": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "she": {"_count": 1, "works": {"_count": 1}}, "Snape": {"_count": 1, "taunt": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "this": {"_count": 1, "summer": {"_count": 1}}, "Harrys": {"_count": 1, "story": {"_count": 1}}, "her": {"_count": 1, "question": {"_count": 1}}, "trumpet": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "what": {"_count": 1}}, "Summons": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "rage": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "Ritas": {"_count": 1, "version": {"_count": 1}}}, "hopeful": {"_count": 23, "": {"_count": 5, ".": {"_count": 5}}, "that": {"_count": 4, "they": {"_count": 1}, "this": {"_count": 1}, "finally": {"_count": 1}, "Katie": {"_count": 1}}, "yeah": {"_count": 1, "a": {"_count": 1}}, "afterthought": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "rather": {"_count": 1}}, "bubble": {"_count": 1, "that": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "he": {"_count": 1, "might": {"_count": 1}}, "but": {"_count": 1, "Ginny": {"_count": 1}}, "and": {"_count": 1, "fought": {"_count": 1}}, "mood": {"_count": 1, "did": {"_count": 1}}, "signs": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "smile": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "might": {"_count": 1}}}, "surprising": {"_count": 15, "theyd": {"_count": 1, "found": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "therefore": {"_count": 1, "that": {"_count": 1}}, "overwork": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "number": {"_count": 1, "of": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "how": {"_count": 1, "accurate": {"_count": 1}}, "speed": {"_count": 2, "and": {"_count": 1}, "she": {"_count": 1}}, "strength": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "vigor": {"_count": 1, "once": {"_count": 1}}}, "Itd": {"_count": 12, "be": {"_count": 8, "safe": {"_count": 1}, "worth": {"_count": 1}, "good": {"_count": 1}, "doin": {"_count": 1}, "a": {"_count": 2}, "really": {"_count": 1}, "great": {"_count": 1}}, "take": {"_count": 2, "all": {"_count": 1}, "her": {"_count": 1}}, "show": {"_count": 2, "em": {"_count": 2}}}, "dentists": {"_count": 3, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "they": {"_count": 1, "just": {"_count": 1}}}, "emptier": {"_count": 3, "than": {"_count": 1, "usual": {"_count": 1}}, "upstairs": {"_count": 1, "corridors": {"_count": 1}}, "stadium": {"_count": 1, "and": {"_count": 1}}}, "spear": {"_count": 4, "on": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "carrying": {"_count": 1, "merpeople": {"_count": 1}}}, "toasting": {"_count": 2, "fork": {"_count": 1, "bread": {"_count": 1}}, "Voldemort": {"_count": 1, "whose": {"_count": 1}}}, "bread": {"_count": 19, "English": {"_count": 1, "muffins": {"_count": 1}}, "and": {"_count": 6, "a": {"_count": 3}, "buttering": {"_count": 1}, "tearing": {"_count": 1}, "no": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "he": {"_count": 1, "had": {"_count": 1}}, "knife": {"_count": 2, "slipped": {"_count": 1}, "out": {"_count": 1}}, "sauces": {"_count": 1, "and": {"_count": 1}}, "crusts": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "shrugged": {"_count": 1}}, "upon": {"_count": 1, "which": {"_count": 1}}, "some": {"_count": 1, "cheese": {"_count": 1}}}, "English": {"_count": 20, "muffins": {"_count": 1, "marshmallows": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "isnt": {"_count": 1, "too": {"_count": 1}}, "they": {"_count": 1, "gathered": {"_count": 1}}, "an": {"_count": 1, "e": {"_count": 1}}, "lessons": {"_count": 1, "": {"_count": 1}}, "yeah": {"_count": 1, "said": {"_count": 1}}, "customs": {"_count": 1, "Ill": {"_count": 1}}, "cant": {"_count": 1, "you": {"_count": 1}}, "or": {"_count": 1, "any": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "muffins": {"_count": 1, "marshmallows": {"_count": 1, "and": {"_count": 1}}}, "marshmallows": {"_count": 1, "and": {"_count": 1, "plotting": {"_count": 1}}}, "plotting": {"_count": 14, "ways": {"_count": 1, "of": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "how": {"_count": 1, "best": {"_count": 1}}, "murder": {"_count": 1, "yet": {"_count": 1}}, "to": {"_count": 3, "kill": {"_count": 2}, "overthrow": {"_count": 1}}, "Harrys": {"_count": 1, "murder": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 1}, "me": {"_count": 1}}, "anything": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "rise": {"_count": 1}}, "their": {"_count": 1, "rise": {"_count": 1}}}, "teaching": {"_count": 63, "Harry": {"_count": 1, "wizard": {"_count": 1}}, "us": {"_count": 6, "new": {"_count": 1}, "": {"_count": 2}, "Defense": {"_count": 1}, "I": {"_count": 1}, "how": {"_count": 1}}, "job": {"_count": 1, "in": {"_count": 1}}, "classes": {"_count": 1, "my": {"_count": 1}}, "this": {"_count": 1, "lesson": {"_count": 1}}, "Defense": {"_count": 2, "Against": {"_count": 2}}, "them": {"_count": 2, "palmistry": {"_count": 1}, "Harry": {"_count": 1}}, "the": {"_count": 3, "front": {"_count": 1}, "Dark": {"_count": 1}, "subject": {"_count": 1}}, "here": {"_count": 2, "as": {"_count": 1}, "Ive": {"_count": 1}}, "their": {"_count": 1, "children": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 1}, "how": {"_count": 1}, "Occlumency": {"_count": 1}}, "Neville": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 2, "students": {"_count": 1}, "Uncle": {"_count": 1}}, "long": {"_count": 1, "": {"_count": 1}}, "Krum": {"_count": 1, "to": {"_count": 1}}, "career": {"_count": 1, "said": {"_count": 1}}, "did": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 2, "this": {"_count": 2}}, "post": {"_count": 3, "the": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "staff": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 1, "Defense": {"_count": 1}}, "methods": {"_count": 1, "if": {"_count": 1}}, "at": {"_count": 3, "Hogwarts": {"_count": 2}, "the": {"_count": 1}}, "work": {"_count": 1, "accepted": {"_count": 1}}, "me": {"_count": 3, "Ron": {"_count": 1}, "": {"_count": 1}, "sir": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "a": {"_count": 1, "class": {"_count": 1}}, "much": {"_count": 1, "better": {"_count": 1}}, "Potions": {"_count": 1, "at": {"_count": 1}}, "Divination": {"_count": 1, "": {"_count": 1}}, "Grawp": {"_count": 1, "how": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "trolls": {"_count": 1, "to": {"_count": 1}}, "floors": {"_count": 1, "above": {"_count": 1}}, "anyone": {"_count": 1, "else": {"_count": 1}}, "or": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "chess": {"_count": 21, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "set": {"_count": 3, "": {"_count": 2}, "by": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 2}}, "Were": {"_count": 1, "not": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "Hogwarts": {"_count": 1, "has": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "with": {"_count": 1, "Ron": {"_count": 1}}, "match": {"_count": 1, "which": {"_count": 1}}, "watched": {"_count": 1, "by": {"_count": 1}}, "while": {"_count": 1, "Hermione": {"_count": 1}}, "rook": {"_count": 1, "said": {"_count": 1}}}, "figures": {"_count": 63, "were": {"_count": 9, "alive": {"_count": 1}, "silhouetted": {"_count": 1}, "being": {"_count": 1}, "very": {"_count": 1}, "blundering": {"_count": 1}, "moving": {"_count": 2}, "appearing": {"_count": 1}, "swarming": {"_count": 1}}, "pwalk": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "across": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "materialize": {"_count": 1, "out": {"_count": 1}}, "of": {"_count": 7, "famous": {"_count": 1}, "Voldemorts": {"_count": 1}, "Tonks": {"_count": 1}, "Neville": {"_count": 1}, "Narcissa": {"_count": 1}, "the": {"_count": 1}, "concentrated": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "pressing": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 2}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "crossing": {"_count": 1, "the": {"_count": 1}}, "always": {"_count": 1, "attract": {"_count": 1}}, "stood": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "shrouded": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "walking": {"_count": 1, "over": {"_count": 1}}, "walk": {"_count": 1, "over": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Harrys": {"_count": 1}}, "pearly": {"_count": 1, "white": {"_count": 1}}, "unfurled": {"_count": 1, "into": {"_count": 1}}, "this": {"_count": 1, "early": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "racing": {"_count": 1, "across": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "suspended": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "yelled": {"_count": 1}}, "had": {"_count": 1, "appeared": {"_count": 1}}, "appearing": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "was": {"_count": 1, "terrifying": {"_count": 1}}, "briefly": {"_count": 1, "illuminated": {"_count": 1}}, "blossomed": {"_count": 1, "out": {"_count": 1}}, "rose": {"_count": 1, "from": {"_count": 1}}, "grew": {"_count": 1, "until": {"_count": 1}}, "raced": {"_count": 1, "alongside": {"_count": 1}}, "galloped": {"_count": 1, "past": {"_count": 1}}, "screaming": {"_count": 1, "advice": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}}, "directing": {"_count": 3, "troops": {"_count": 1, "in": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}}, "troops": {"_count": 2, "in": {"_count": 1, "battle": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "belonged": {"_count": 32, "to": {"_count": 23, "someone": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 3}, "Rons": {"_count": 1}, "now": {"_count": 1}, "a": {"_count": 4}, "wizards": {"_count": 1}, "Uncle": {"_count": 1}, "Godric": {"_count": 1}, "houseelves": {"_count": 1}, "another": {"_count": 1}, "James": {"_count": 1}, "Regulus": {"_count": 1}, "that": {"_count": 1}, "Bellatrix": {"_count": 1}, "Draco": {"_count": 1}, "Helga": {"_count": 1}, "Ravenclaw": {"_count": 1}}, "there": {"_count": 1, "something": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "that": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 1, "pulling": {"_count": 1}}}, "grandfather": {"_count": 18, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "clock": {"_count": 7, "by": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}, "lay": {"_count": 1}}, "had": {"_count": 1, "an": {"_count": 1}}, "for": {"_count": 2, "Services": {"_count": 1}, "instance": {"_count": 1}}, "and": {"_count": 1, "carriage": {"_count": 1}}, "clocks": {"_count": 1, "and": {"_count": 1}}, "Abraxas": {"_count": 1, "Malfoy": {"_count": 1}}, "yes": {"_count": 1, "said": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}}, "However": {"_count": 100, "old": {"_count": 1, "chessmen": {"_count": 1}}, "this": {"_count": 2, "mirror": {"_count": 1}, "is": {"_count": 1}}, "I": {"_count": 9, "shall": {"_count": 2}, "am": {"_count": 1}, "do": {"_count": 2}, "would": {"_count": 1}, "was": {"_count": 2}, "have": {"_count": 1}}, "recent": {"_count": 1, "events": {"_count": 1}}, "they": {"_count": 4, "will": {"_count": 1}, "did": {"_count": 1}, "seemed": {"_count": 1}, "enjoyed": {"_count": 1}}, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "the": {"_count": 11, "legend": {"_count": 1}, "training": {"_count": 1}, "moonlit": {"_count": 1}, "Merchieftainess": {"_count": 1}, "headmaster": {"_count": 1}, "departing": {"_count": 1}, "High": {"_count": 1}, "vision": {"_count": 1}, "change": {"_count": 1}, "Sneakoscope": {"_count": 1}, "truth": {"_count": 1}}, "while": {"_count": 2, "Hermione": {"_count": 1}, "every": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Hagrid": {"_count": 2, "strolled": {"_count": 1}, "was": {"_count": 1}}, "Peeves": {"_count": 1, "paid": {"_count": 1}}, "we": {"_count": 4, "must": {"_count": 1}, "should": {"_count": 1}, "continue": {"_count": 1}, "have": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "Bill": {"_count": 1, "was": {"_count": 1}}, "discussing": {"_count": 1, "him": {"_count": 1}}, "Percy": {"_count": 1, "heaved": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 14, "and": {"_count": 1}, "really": {"_count": 1}, "nodded": {"_count": 1}, "rejoined": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 4}, "said": {"_count": 1}, "has": {"_count": 1}, "rarely": {"_count": 1}, "looked": {"_count": 1}, "did": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "our": {"_count": 1, "own": {"_count": 1}}, "someone": {"_count": 1, "seems": {"_count": 1}}, "Hermione": {"_count": 2, "merely": {"_count": 1}, "who": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 4, "might": {"_count": 1}, "would": {"_count": 1}, "has": {"_count": 1}, "is": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 1, "troubles": {"_count": 1}}, "that": {"_count": 2, "is": {"_count": 2}}, "a": {"_count": 2, "voice": {"_count": 1}, "withered": {"_count": 1}}, "let": {"_count": 1, "us": {"_count": 1}}, "miserable": {"_count": 1, "he": {"_count": 1}}, "if": {"_count": 3, "brewed": {"_count": 1}, "he": {"_count": 1}, "my": {"_count": 1}}, "rest": {"_count": 1, "assured": {"_count": 1}}, "Ron": {"_count": 2, "seemed": {"_count": 1}, "did": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}, "like": {"_count": 1, "many": {"_count": 1}}, "tragedy": {"_count": 1, "intervened": {"_count": 1}}, "Scrimgeour": {"_count": 1, "did": {"_count": 1}}, "Kreacher": {"_count": 1, "did": {"_count": 1}}, "two": {"_count": 1, "cloaked": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 2, "can": {"_count": 1}, "is": {"_count": 1}}, "Thats": {"_count": 1, "for": {"_count": 1}}, "these": {"_count": 1, "brothers": {"_count": 1}}, "Griphook": {"_count": 1, "had": {"_count": 1}}, "precisely": {"_count": 1, "how": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "you": {"_count": 1, "must": {"_count": 1}}}, "chessmen": {"_count": 8, "werent": {"_count": 1, "a": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "had": {"_count": 1, "no": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "parted": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}}, "drawback": {"_count": 3, "at": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 2, "him": {"_count": 1}, "direct": {"_count": 1}}}, "knight": {"_count": 19, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 2, "put": {"_count": 1}, "they": {"_count": 1}}, "turned": {"_count": 1, "his": {"_count": 1}}, "nodded": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "a": {"_count": 1, "bishop": {"_count": 1}}, "was": {"_count": 1, "taken": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "tugged": {"_count": 1, "his": {"_count": 1}}, "seized": {"_count": 1, "his": {"_count": 1}}, "popping": {"_count": 1, "his": {"_count": 1}}, "disappeared": {"_count": 1, "if": {"_count": 1}}, "still": {"_count": 1, "around": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "Sir": {"_count": 1, "Cadogan": {"_count": 1}}}, "Eve": {"_count": 7, "Harry": {"_count": 1, "went": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "only": {"_count": 1, "just": {"_count": 1}}, "the": {"_count": 1, "house": {"_count": 1}}, "and": {"_count": 1, "bitter": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Merry": {"_count": 16, "Christmas": {"_count": 14, "said": {"_count": 2}, "to": {"_count": 3}, "": {"_count": 6}, "from": {"_count": 1}, "and": {"_count": 1}, "Mother": {"_count": 1}}, "hie": {"_count": 1, "Christmas": {"_count": 1}}, "Hippogriffs": {"_count": 1, "at": {"_count": 1}}}, "turnips": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "scrawled": {"_count": 9, "across": {"_count": 1, "it": {"_count": 1}}, "an": {"_count": 1, "enormous": {"_count": 1}}, "blotting": {"_count": 1, "the": {"_count": 1}}, "notes": {"_count": 1, "off": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 2}, "an": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "right": {"_count": 1, "across": {"_count": 1}}}, "flute": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "Hagrid": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "Hermione": {"_count": 1}}, "waved": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}}, "whittled": {"_count": 2, "it": {"_count": 1, "himself": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}}, "contained": {"_count": 28, "a": {"_count": 9, "note": {"_count": 1}, "wizard": {"_count": 1}, "cunningly": {"_count": 1}, "single": {"_count": 1}, "few": {"_count": 1}, "mass": {"_count": 1}, "number": {"_count": 1}, "large": {"_count": 1}, "little": {"_count": 1}}, "candy": {"_count": 1, "a": {"_count": 1}}, "details": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "extremely": {"_count": 1}}, "within": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 3, "eternity": {"_count": 1}, "assortment": {"_count": 1}, "enchanted": {"_count": 1}}, "words": {"_count": 1, "of": {"_count": 1}}, "several": {"_count": 1, "rather": {"_count": 1}}, "two": {"_count": 1, "pieces": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "TimeTurners": {"_count": 1, "continued": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 2, "pod": {"_count": 1}, "power": {"_count": 1}}, "I": {"_count": 1, "attempted": {"_count": 1}}, "Phineas": {"_count": 1, "Nigellus": {"_count": 1}}, "by": {"_count": 1, "walls": {"_count": 1}}}, "message": {"_count": 57, "and": {"_count": 2, "enclose": {"_count": 1}, "a": {"_count": 1}}, "from": {"_count": 5, "Hogwarts": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 2}, "Dumbledore": {"_count": 1}}, "eyes": {"_count": 1, "fixed": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "The": {"_count": 1, "Chamber": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "to": {"_count": 8, "deliver": {"_count": 1}, "Arthur": {"_count": 1}, "sink": {"_count": 1}, "the": {"_count": 3}, "YouKnowWho": {"_count": 1}, "me": {"_count": 1}}, "swallowed": {"_count": 1, "hard": {"_count": 1}}, "of": {"_count": 1, "any": {"_count": 1}}, "Bertie": {"_count": 1, "Botts": {"_count": 1}}, "in": {"_count": 1, "luminous": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "POTTER": {"_count": 1, "STINKS": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "curled": {"_count": 1, "into": {"_count": 1}}, "came": {"_count": 1, "ten": {"_count": 1}}, "that": {"_count": 2, "the": {"_count": 1}, "Arthur": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Tonks": {"_count": 1}, "Harry": {"_count": 1}}, "vanished": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "yet": {"_count": 1, "shall": {"_count": 1}}, "round": {"_count": 1, "to": {"_count": 1}}, "an": {"_count": 1, "some": {"_count": 1}}, "for": {"_count": 3, "you": {"_count": 2}, "my": {"_count": 1}}, "apparently": {"_count": 1, "has": {"_count": 1}}, "Hagrid": {"_count": 1, "gazed": {"_count": 1}}, "over": {"_count": 1, "Harrys": {"_count": 1}}, "meant": {"_count": 1, "": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "does": {"_count": 1, "Lord": {"_count": 1}}, "Im": {"_count": 1, "here": {"_count": 1}}}, "enclose": {"_count": 2, "your": {"_count": 1, "Christmas": {"_count": 1}}, "him": {"_count": 1, "from": {"_count": 1}}}, "Taped": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "fiftypence": {"_count": 1, "piece": {"_count": 1, "": {"_count": 1}}}, "fascinated": {"_count": 9, "by": {"_count": 4, "the": {"_count": 2}, "it": {"_count": 1}, "you": {"_count": 1}}, "and": {"_count": 1, "raising": {"_count": 1}}, "as": {"_count": 1, "Fred": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "him": {"_count": 1, "how": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}}, "pence": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "torn": {"_count": 41, "open": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 7, "horror": {"_count": 1}, "amusement": {"_count": 1}, "exasperation": {"_count": 1}, "a": {"_count": 1}, "annoyance": {"_count": 1}, "curiosity": {"_count": 1}, "both": {"_count": 1}}, "off": {"_count": 3, "": {"_count": 2}, "Siriuss": {"_count": 1}}, "from": {"_count": 4, "a": {"_count": 1}, "one": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 2}, "dirty": {"_count": 1}, "singed": {"_count": 1}}, "away": {"_count": 1, "completely": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "but": {"_count": 1, "she": {"_count": 1}}, "these": {"_count": 1, "families": {"_count": 1}}, "robes": {"_count": 2, "": {"_count": 2}}, "it": {"_count": 2, "": {"_count": 1}, "quite": {"_count": 1}}, "asunder": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "apart": {"_count": 1}}, "shirtsleeve": {"_count": 1, "Im": {"_count": 1}}, "books": {"_count": 1, "repaired": {"_count": 1}}, "portion": {"_count": 1, "Encase": {"_count": 1}}, "piece": {"_count": 2, "of": {"_count": 2}}, "photograph": {"_count": 1, "and": {"_count": 1}}, "parchment": {"_count": 1, "were": {"_count": 1}}, "jeans": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "now": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}}, "knitted": {"_count": 6, "sweater": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "for": {"_count": 1}}, "elf": {"_count": 1, "hats": {"_count": 1}}, "hats": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "homemade": {"_count": 6, "fudge": {"_count": 1, "": {"_count": 1}}, "rock": {"_count": 1, "cakes": {"_count": 1}}, "strawberry": {"_count": 1, "ice": {"_count": 1}}, "mince": {"_count": 1, "pies": {"_count": 1}}, "toffee": {"_count": 1, "": {"_count": 1}}, "Cauldron": {"_count": 1, "Cakes": {"_count": 1}}}, "fudge": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}}, "makes": {"_count": 66, "us": {"_count": 2, "a": {"_count": 1}, "all": {"_count": 1}}, "more": {"_count": 2, "of": {"_count": 1}, "hammocks": {"_count": 1}}, "gold": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 3, "Dursleys": {"_count": 1}, "difference": {"_count": 1}, "person": {"_count": 1}}, "you": {"_count": 12, "that": {"_count": 1}, "say": {"_count": 2}, "very": {"_count": 1}, "such": {"_count": 1}, "think": {"_count": 3}, "wish": {"_count": 1}, "lucky": {"_count": 1}, "appreciate": {"_count": 1}, "pretty": {"_count": 1}}, "me": {"_count": 7, "think": {"_count": 1}, "safe": {"_count": 1}, "look": {"_count": 1}, "say": {"_count": 1}, "": {"_count": 1}, "feel": {"_count": 1}, "sound": {"_count": 1}}, "no": {"_count": 3, "difference": {"_count": 2}, "sense": {"_count": 1}}, "one": {"_count": 1, "more": {"_count": 1}}, "it": {"_count": 7, "useless": {"_count": 1}, "my": {"_count": 1}, "almost": {"_count": 1}, "formal": {"_count": 1}, "sound": {"_count": 1}, "perfectly": {"_count": 1}, "certain": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "sense": {"_count": 6, "said": {"_count": 1}, "": {"_count": 4}, "Potter": {"_count": 1}}, "him": {"_count": 4, "a": {"_count": 1}, "say": {"_count": 1}, "go": {"_count": 1}, "truly": {"_count": 1}}, "anyone": {"_count": 1, "look": {"_count": 1}}, "for": {"_count": 1, "rather": {"_count": 1}}, "a": {"_count": 3, "sudden": {"_count": 1}, "lovely": {"_count": 1}, "better": {"_count": 1}}, "them": {"_count": 1, "easy": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "perfect": {"_count": 1, "sense": {"_count": 1}}, "her": {"_count": 1, "act": {"_count": 1}}, "an": {"_count": 1, "angle": {"_count": 1}}, "mistakes": {"_count": 1, "": {"_count": 1}}, "absolute": {"_count": 1, "sense": {"_count": 1}}, "Grawp": {"_count": 1, "look": {"_count": 1}}, "six": {"_count": 1, "George": {"_count": 1}}, "any": {"_count": 1, "difference": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "matters": {"_count": 1, "much": {"_count": 1}}}, "unwrapping": {"_count": 6, "his": {"_count": 2, "own": {"_count": 1}, "presents": {"_count": 1}}, "the": {"_count": 2, "shopping": {"_count": 1}, "parcel": {"_count": 1}}, "it": {"_count": 1, "now": {"_count": 1}}, "presents": {"_count": 1, "every": {"_count": 1}}}, "mines": {"_count": 4, "always": {"_count": 1, "maroon": {"_count": 1}}, "mostly": {"_count": 1, "": {"_count": 1}}, "everywhere": {"_count": 1, "Harry": {"_count": 1}}, "broken": {"_count": 1, "beyond": {"_count": 1}}}, "tasty": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "himself": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "fluid": {"_count": 6, "and": {"_count": 1, "silvery": {"_count": 1}}, "as": {"_count": 1, "smoke": {"_count": 1}}, "movement": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "motion": {"_count": 2, "rose": {"_count": 1}, "Neville": {"_count": 1}}}, "gleaming": {"_count": 86, "folds": {"_count": 1, "": {"_count": 1}}, "chestnut": {"_count": 2, "body": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 7, "the": {"_count": 2}, "a": {"_count": 1}, "his": {"_count": 4}}, "kitchen": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "teeth": {"_count": 1, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "in": {"_count": 13, "the": {"_count": 12}, "their": {"_count": 1}}, "with": {"_count": 5, "a": {"_count": 1}, "enthusiasm": {"_count": 1}, "reflected": {"_count": 1}, "tears": {"_count": 1}, "sweat": {"_count": 1}}, "oak": {"_count": 1, "door": {"_count": 1}}, "smile": {"_count": 1, "back": {"_count": 1}}, "golden": {"_count": 2, "talons": {"_count": 1}, "symbols": {"_count": 1}}, "silver": {"_count": 2, "sword": {"_count": 1}, "TailTwig": {"_count": 1}}, "eyes": {"_count": 3, "": {"_count": 2}, "moving": {"_count": 1}}, "coats": {"_count": 1, "changing": {"_count": 1}}, "broomstick": {"_count": 1, "rolled": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "fanatically": {"_count": 1, "": {"_count": 1}}, "walls": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "scarlet": {"_count": 2, "steam": {"_count": 2}}, "and": {"_count": 1, "moving": {"_count": 1}}, "yellow": {"_count": 1, "beneath": {"_count": 1}}, "against": {"_count": 1, "its": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "handles": {"_count": 1, "": {"_count": 1}}, "red": {"_count": 3, "eyes": {"_count": 3}}, "replica": {"_count": 1, "of": {"_count": 1}}, "stood": {"_count": 1, "dusty": {"_count": 1}}, "slightly": {"_count": 2, "in": {"_count": 2}}, "solidly": {"_count": 1, "in": {"_count": 1}}, "warmth": {"_count": 1, "and": {"_count": 1}}, "gold": {"_count": 1, "star": {"_count": 1}}, "eerily": {"_count": 1, "were": {"_count": 1}}, "from": {"_count": 1, "every": {"_count": 1}}, "water": {"_count": 1, "thinking": {"_count": 1}}, "mass": {"_count": 1, "into": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "bottle": {"_count": 1, "": {"_count": 1}}, "air": {"_count": 1, "": {"_count": 1}}, "work": {"_count": 1, "surfaces": {"_count": 1}}, "sink": {"_count": 1, "": {"_count": 1}}, "dance": {"_count": 1, "floor": {"_count": 1}}, "the": {"_count": 1, "lynx": {"_count": 1}}, "wooden": {"_count": 2, "door": {"_count": 2}}, "brightly": {"_count": 1, "toward": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}}, "folds": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 6, "the": {"_count": 2}, "its": {"_count": 1}, "her": {"_count": 1}, "Umbridges": {"_count": 1}, "transparent": {"_count": 1}}, "white": {"_count": 1, "hair": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}}, "cloth": {"_count": 9, "off": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "moments": {"_count": 1, "later": {"_count": 1}}, "around": {"_count": 1, "it": {"_count": 1}}, "supple": {"_count": 1, "as": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "woven": {"_count": 2, "into": {"_count": 1, "material": {"_count": 1}}, "from": {"_count": 1, "Demiguise": {"_count": 1}}}, "material": {"_count": 10, "": {"_count": 2, ".": {"_count": 2}}, "flow": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 2, "she": {"_count": 1}, "began": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "blocking": {"_count": 1, "his": {"_count": 1}}, "gagging": {"_count": 1, "Harry": {"_count": 1}}, "shiny": {"_count": 1, "beetlelike": {"_count": 1}}, "were": {"_count": 1, "stale": {"_count": 1}}}, "Invisibility": {"_count": 211, "Cloak": {"_count": 197, "said": {"_count": 5}, "and": {"_count": 28}, "tight": {"_count": 1}, "stayed": {"_count": 1}, "": {"_count": 43}, "Malfoy": {"_count": 1}, "on": {"_count": 3}, "folded": {"_count": 1}, "do": {"_count": 1}, "didnt": {"_count": 1}, "back": {"_count": 5}, "again": {"_count": 2}, "out": {"_count": 6}, "he": {"_count": 5}, "but": {"_count": 4}, "at": {"_count": 3}, "anonymously": {"_count": 1}, "this": {"_count": 2}, "in": {"_count": 6}, "emerged": {"_count": 1}, "nobody": {"_count": 1}, "it": {"_count": 1}, "from": {"_count": 5}, "off": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}, "She": {"_count": 1}, "over": {"_count": 7}, "into": {"_count": 1}, "wouldnt": {"_count": 1}, "for": {"_count": 2}, "to": {"_count": 2}, "would": {"_count": 1}, "looking": {"_count": 1}, "slipped": {"_count": 2}, "or": {"_count": 2}, "worked": {"_count": 1}, "had": {"_count": 1}, "stuffed": {"_count": 1}, "maybe": {"_count": 2}, "day": {"_count": 1}, "seeing": {"_count": 1}, "when": {"_count": 2}, "if": {"_count": 1}, "as": {"_count": 3}, "right": {"_count": 1}, "was": {"_count": 2}, "with": {"_count": 2}, "hid": {"_count": 1}, "then": {"_count": 2}, "by": {"_count": 1}, "trapped": {"_count": 1}, "feeling": {"_count": 1}, "fly": {"_count": 1}, "she": {"_count": 1}, "so": {"_count": 2}, "once": {"_count": 1}, "still": {"_count": 1}, "there": {"_count": 1}, "aside": {"_count": 1}, "potionmaking": {"_count": 1}, "around": {"_count": 1}, "draped": {"_count": 1}, "down": {"_count": 1}, "searched": {"_count": 1}, "scrupulously": {"_count": 1}, "together": {"_count": 1}, "just": {"_count": 1}, "Harry": {"_count": 3}, "The": {"_count": 1}, "wed": {"_count": 1}, "they": {"_count": 1}, "behind": {"_count": 1}}, "Booster": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "section": {"_count": 1, "": {"_count": 1}}, "cost": {"_count": 1, "a": {"_count": 1}}, "Cloaks": {"_count": 4, "he": {"_count": 1}, "Moody": {"_count": 1}, "": {"_count": 2}}, "Marquee": {"_count": 1, "Fair": {"_count": 1}}, "Spell": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "gave": {"_count": 1}}, "he": {"_count": 1, "finished": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}}, "Cloak": {"_count": 278, "said": {"_count": 6, "Ron": {"_count": 1}, "Harry": {"_count": 5}}, "and": {"_count": 38, "whoever": {"_count": 1}, "stepped": {"_count": 1}, "they": {"_count": 1}, "tucked": {"_count": 1}, "threw": {"_count": 1}, "go": {"_count": 1}, "went": {"_count": 1}, "the": {"_count": 2}, "had": {"_count": 1}, "well": {"_count": 3}, "Siriuss": {"_count": 1}, "flinging": {"_count": 1}, "off": {"_count": 1}, "stuffing": {"_count": 1}, "meet": {"_count": 1}, "then": {"_count": 1}, "clothes": {"_count": 1}, "slouching": {"_count": 1}, "spy": {"_count": 1}, "his": {"_count": 1}, "put": {"_count": 1}, "said": {"_count": 1}, "grasped": {"_count": 1}, "how": {"_count": 1}, "throwing": {"_count": 2}, "was": {"_count": 1}, "sat": {"_count": 1}, "climbed": {"_count": 1}, "Ill": {"_count": 1}, "Dont": {"_count": 1}, "looked": {"_count": 1}, "murmured": {"_count": 1}, "stuffed": {"_count": 1}, "as": {"_count": 1}}, "tight": {"_count": 1, "around": {"_count": 1}}, "stayed": {"_count": 1, "folded": {"_count": 1}}, "": {"_count": 54, ".": {"_count": 45}, "?": {"_count": 4}, "!": {"_count": 5}}, "Malfoy": {"_count": 1, "doesnt": {"_count": 1}}, "on": {"_count": 7, "top": {"_count": 1}, "Hagrids": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 2}, "keep": {"_count": 1}, "said": {"_count": 1}}, "folded": {"_count": 1, "neatly": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "didnt": {"_count": 1, "stop": {"_count": 1}}, "back": {"_count": 9, "over": {"_count": 4}, "on": {"_count": 4}, "into": {"_count": 1}}, "again": {"_count": 3, "Harry": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "out": {"_count": 7, "of": {"_count": 6}, "from": {"_count": 1}}, "he": {"_count": 9, "had": {"_count": 2}, "saw": {"_count": 2}, "whirled": {"_count": 1}, "was": {"_count": 1}, "could": {"_count": 2}, "placed": {"_count": 1}}, "but": {"_count": 5, "before": {"_count": 1}, "Hermione": {"_count": 2}, "it": {"_count": 1}, "this": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "last": {"_count": 1}}, "anonymously": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 2, "time": {"_count": 1}, "was": {"_count": 1}}, "in": {"_count": 6, "his": {"_count": 2}, "the": {"_count": 2}, "case": {"_count": 1}, "front": {"_count": 1}}, "emerged": {"_count": 1, "into": {"_count": 1}}, "nobody": {"_count": 1, "except": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "from": {"_count": 5, "below": {"_count": 1}, "out": {"_count": 1}, "under": {"_count": 1}, "his": {"_count": 1}, "inside": {"_count": 1}}, "off": {"_count": 3, "himself": {"_count": 3}}, "you": {"_count": 1, "still": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "She": {"_count": 1, "broke": {"_count": 1}}, "over": {"_count": 8, "him": {"_count": 1}, "both": {"_count": 1}, "his": {"_count": 1}, "themselves": {"_count": 1}, "himself": {"_count": 2}, "them": {"_count": 1}, "Rons": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "wouldnt": {"_count": 2, "have": {"_count": 2}}, "for": {"_count": 2, "one": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 3, "avoid": {"_count": 1}, "find": {"_count": 1}, "stow": {"_count": 1}}, "would": {"_count": 1, "of": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "slipped": {"_count": 4, "Harry": {"_count": 1}, "off": {"_count": 2}, "": {"_count": 1}}, "or": {"_count": 2, "not": {"_count": 1}, "something": {"_count": 1}}, "worked": {"_count": 1, "on": {"_count": 1}}, "had": {"_count": 1, "slipped": {"_count": 1}}, "stuffed": {"_count": 1, "it": {"_count": 1}}, "maybe": {"_count": 2, "she": {"_count": 1}, "once": {"_count": 1}}, "day": {"_count": 1, "and": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}, "when": {"_count": 2, "Sturgis": {"_count": 1}, "not": {"_count": 1}}, "if": {"_count": 2, "youd": {"_count": 1}, "he": {"_count": 1}}, "as": {"_count": 4, "an": {"_count": 2}, "it": {"_count": 1}, "you": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 7, "completely": {"_count": 1}, "exactly": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "mainly": {"_count": 1}, "also": {"_count": 1}}, "with": {"_count": 2, "you": {"_count": 1}, "me": {"_count": 1}}, "hid": {"_count": 1, "it": {"_count": 1}}, "then": {"_count": 2, "we": {"_count": 1}, "looked": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "trapped": {"_count": 1, "beneath": {"_count": 1}}, "feeling": {"_count": 1, "the": {"_count": 1}}, "fly": {"_count": 1, "off": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 1}, "no": {"_count": 1}}, "once": {"_count": 1, "he": {"_count": 1}}, "still": {"_count": 1, "panting": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "aside": {"_count": 1, "as": {"_count": 1}}, "potionmaking": {"_count": 1, "kit": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "draped": {"_count": 1, "it": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 2, "below": {"_count": 1}, "as": {"_count": 1}}, "searched": {"_count": 1, "for": {"_count": 1}}, "scrupulously": {"_count": 1, "dropping": {"_count": 1}}, "together": {"_count": 1, "that": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "arm": {"_count": 1}}, "Harry": {"_count": 4, "and": {"_count": 1}, "said": {"_count": 1}, "cast": {"_count": 1}, "was": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 4, "Invisibility": {"_count": 4}}, "existed": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 2, "said": {"_count": 1}, "told": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 2, "Tale": {"_count": 1}, "idea": {"_count": 1}}, "wed": {"_count": 1, "have": {"_count": 1}}, "the": {"_count": 4, "night": {"_count": 1}, "door": {"_count": 1}, "likes": {"_count": 1}, "true": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "they": {"_count": 1, "crept": {"_count": 1}}, "fall": {"_count": 1, "back": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "tightly": {"_count": 2, "around": {"_count": 2}}, "running": {"_count": 1, "bent": {"_count": 1}}, "peering": {"_count": 1, "around": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "much": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 1, "took": {"_count": 1}}, "up": {"_count": 1, "over": {"_count": 1}}}, "awe": {"_count": 7, "on": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "Harry": {"_count": 1}}, "apparently": {"_count": 1, "deeply": {"_count": 1}}, "inspiring": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "felt": {"_count": 1}}}, "Sure": {"_count": 24, "enough": {"_count": 16, "his": {"_count": 1}, "Neville": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 3}, "once": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "there": {"_count": 2}, "Uncle": {"_count": 1}, "the": {"_count": 2}, "Professor": {"_count": 1}, "McLaggen": {"_count": 1}}, "youll": {"_count": 1, "understand": {"_count": 1}}, "you": {"_count": 3, "can": {"_count": 1}, "wont": {"_count": 1}, "dont": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "youre": {"_count": 2, "not": {"_count": 2}}, "it": {"_count": 1, "was": {"_count": 1}}}, "suspended": {"_count": 33, "in": {"_count": 13, "midair": {"_count": 6}, "green": {"_count": 1}, "misery": {"_count": 1}, "midaction": {"_count": 1}, "variously": {"_count": 1}, "a": {"_count": 1}, "colored": {"_count": 1}, "limbo": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "no": {"_count": 1, "no": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "an": {"_count": 1}}, "you": {"_count": 1, "but": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "school": {"_count": 1}}, "an": {"_count": 1, "inch": {"_count": 1}}, "on": {"_count": 1, "full": {"_count": 1}}, "comically": {"_count": 1, "by": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "examinations": {"_count": 1}}, "broken": {"_count": 1, "in": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "improbably": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "Written": {"_count": 3, "in": {"_count": 1, "narrow": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "it": {"_count": 1}}}, "loopy": {"_count": 6, "writing": {"_count": 1, "he": {"_count": 1}}, "signature": {"_count": 1, "on": {"_count": 1}}, "Lupin": {"_count": 3, "Peeves": {"_count": 1}, "loony": {"_count": 1}, "Rude": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "Use": {"_count": 23, "it": {"_count": 4, "well": {"_count": 3}, "if": {"_count": 1}}, "the": {"_count": 2, "boy": {"_count": 2}}, "of": {"_count": 7, "Magic": {"_count": 7}}, "broken": {"_count": 1, "for": {"_count": 1}}, "your": {"_count": 3, "brains": {"_count": 1}, "lucky": {"_count": 1}, "Cloak": {"_count": 1}}, "my": {"_count": 2, "one": {"_count": 1}, "Death": {"_count": 1}}, "The": {"_count": 1, "Dream": {"_count": 1}}, "Against": {"_count": 2, "the": {"_count": 2}}, "anyone": {"_count": 1, "else": {"_count": 1}}}, "signature": {"_count": 14, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 3, "the": {"_count": 3}}, "with": {"_count": 1, "distaste": {"_count": 1}}, "now": {"_count": 1, "because": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "move": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "her": {"_count": 1}}}, "anuthinq": {"_count": 1, "for": {"_count": 1, "one": {"_count": 1}}}, "Anuthinq": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "flung": {"_count": 74, "open": {"_count": 8, "and": {"_count": 3}, "his": {"_count": 3}, "the": {"_count": 2}}, "back": {"_count": 1, "his": {"_count": 1}}, "an": {"_count": 2, "arm": {"_count": 2}}, "out": {"_count": 5, "an": {"_count": 2}, "one": {"_count": 1}, "his": {"_count": 1}, "its": {"_count": 1}}, "it": {"_count": 4, "open": {"_count": 1}, "out": {"_count": 1}, "back": {"_count": 1}, "across": {"_count": 1}}, "up": {"_count": 1, "their": {"_count": 1}}, "himself": {"_count": 22, "at": {"_count": 1}, "onto": {"_count": 2}, "out": {"_count": 4}, "forward": {"_count": 2}, "sideways": {"_count": 2}, "down": {"_count": 2}, "into": {"_count": 3}, "upon": {"_count": 1}, "flat": {"_count": 1}, "back": {"_count": 1}, "inside": {"_count": 1}, "over": {"_count": 1}, "across": {"_count": 1}}, "his": {"_count": 5, "arms": {"_count": 3}, "wand": {"_count": 1}, "shoulder": {"_count": 1}}, "themselves": {"_count": 1, "on": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "her": {"_count": 6, "arms": {"_count": 6}}, "wide": {"_count": 1, "open": {"_count": 1}}, "them": {"_count": 2, "over": {"_count": 1}, "around": {"_count": 1}}, "herself": {"_count": 4, "forward": {"_count": 2}, "into": {"_count": 2}}, "at": {"_count": 1, "Ron": {"_count": 1}}, "backward": {"_count": 2, "Rons": {"_count": 1}, "upon": {"_count": 1}}, "Ron": {"_count": 1, "unceremoniously": {"_count": 1}}, "the": {"_count": 1, "prophecy": {"_count": 1}}, "away": {"_count": 1, "her": {"_count": 1}}, "Zabini": {"_count": 1, "off": {"_count": 1}}, "field": {"_count": 1, "belonging": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "itself": {"_count": 1, "at": {"_count": 1}}}, "sharing": {"_count": 16, "it": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 2, "soul": {"_count": 1}, "thoughts": {"_count": 1}}, "the": {"_count": 6, "box": {"_count": 1}, "Dark": {"_count": 1}, "body": {"_count": 1}, "role": {"_count": 1}, "sitting": {"_count": 1}, "compartment": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 1}, "dormitory": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "with": {"_count": 2, "Charlie": {"_count": 1}, "A1": {"_count": 1}}, "had": {"_count": 1, "changed": {"_count": 1}}, "Harrys": {"_count": 1, "mind": {"_count": 1}}}, "sweaters": {"_count": 5, "one": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 1, "Harrys": {"_count": 1}}, "and": {"_count": 1, "carrying": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "he": {"_count": 1, "owned": {"_count": 1}}}, "F": {"_count": 3, "on": {"_count": 1, "it": {"_count": 1}}, "irenze": {"_count": 1, "s": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "lovely": {"_count": 30, "and": {"_count": 2, "warm": {"_count": 1}, "on": {"_count": 1}}, "game": {"_count": 1, "I": {"_count": 1}}, "new": {"_count": 1, "bow": {"_count": 1}}, "time": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Rita": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "change": {"_count": 1, "not": {"_count": 1}}, "to": {"_count": 4, "see": {"_count": 2}, "be": {"_count": 1}, "Kreacher": {"_count": 1}}, "respectable": {"_count": 1, "pureblood": {"_count": 1}}, "shiny": {"_count": 1, "new": {"_count": 1}}, "young": {"_count": 1, "chap": {"_count": 1}}, "calendar": {"_count": 1, "with": {"_count": 1}}, "long": {"_count": 1, "article": {"_count": 1}}, "person": {"_count": 2, "really": {"_count": 1}, "who": {"_count": 1}}, "sweettempered": {"_count": 1, "girl": {"_count": 1}}, "um": {"_count": 1, "skull": {"_count": 1}}, "term": {"_count": 1, "Ron": {"_count": 1}}, "while": {"_count": 1, "people": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "bboy": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}}, "halfheartedly": {"_count": 7, "as": {"_count": 1, "he": {"_count": 1}}, "suggested": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "restrain": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "observed": {"_count": 11, "": {"_count": 4, ".": {"_count": 4}}, "by": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "others": {"_count": 1}}, "Dumbledore": {"_count": 1, "through": {"_count": 1}}, "trying": {"_count": 1, "different": {"_count": 1}}, "one": {"_count": 1, "Tuesday": {"_count": 1}}, "crossing": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "affecting": {"_count": 1}}}, "Gred": {"_count": 1, "and": {"_count": 1, "Forge": {"_count": 1}}}, "Forge": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "disapproving": {"_count": 15, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 2}}, "looks": {"_count": 1, "as": {"_count": 1}}, "mutters": {"_count": 1, "about": {"_count": 1}}, "sniffs": {"_count": 1, "that": {"_count": 1}}, "Umbridge": {"_count": 1, "that": {"_count": 1}}, "mutterings": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "asked": {"_count": 1}}, "but": {"_count": 1, "was": {"_count": 1}}, "expression": {"_count": 1, "throughout": {"_count": 1}}}, "thickly": {"_count": 35, "as": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 4, "a": {"_count": 2}, "the": {"_count": 2}}, "": {"_count": 7, ".": {"_count": 7}}, "when": {"_count": 1, "he": {"_count": 1}}, "Stupid": {"_count": 1, "boy": {"_count": 1}}, "around": {"_count": 2, "them": {"_count": 1}, "their": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "pounding": {"_count": 1}}, "buttering": {"_count": 1, "a": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "knotted": {"_count": 1, "brambles": {"_count": 1}}, "getting": {"_count": 1, "up": {"_count": 1}}, "blood": {"_count": 1, "spattering": {"_count": 1}}, "gloved": {"_count": 1, "hand": {"_count": 1}}, "holding": {"_count": 1, "out": {"_count": 1}}, "Parry": {"_count": 1, "Otter": {"_count": 1}}, "coated": {"_count": 1, "in": {"_count": 1}}, "carpeted": {"_count": 1, "corridor": {"_count": 1}}, "rusted": {"_count": 1, "gate": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}}, "frogmarched": {"_count": 2, "Percy": {"_count": 1, "from": {"_count": 1}}, "him": {"_count": 1, "away": {"_count": 1}}}, "turkeys": {"_count": 3, "mountains": {"_count": 1, "of": {"_count": 1}}, "getting": {"_count": 1, "stone": {"_count": 1}}, "and": {"_count": 1, "Christmas": {"_count": 1}}}, "platters": {"_count": 4, "of": {"_count": 2, "chipolatas": {"_count": 1}, "food": {"_count": 1}}, "cakes": {"_count": 1, "burned": {"_count": 1}}, "Dumbledore": {"_count": 1, "gave": {"_count": 1}}}, "chipolatas": {"_count": 2, "tureens": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "tureens": {"_count": 2, "of": {"_count": 2, "buttered": {"_count": 1}, "porridge": {"_count": 1}}}, "buttered": {"_count": 3, "peas": {"_count": 1, "silver": {"_count": 1}}, "himself": {"_count": 1, "a": {"_count": 1}}, "toast": {"_count": 1, "from": {"_count": 1}}}, "rich": {"_count": 14, "gravy": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "builder": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "father": {"_count": 1, "": {"_count": 1}}, "snobbish": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "Uncle": {"_count": 1}}, "plum": {"_count": 1, "color": {"_count": 1}}, "purple": {"_count": 1, "": {"_count": 1}}, "warming": {"_count": 1, "stews": {"_count": 1}}, "fussy": {"_count": 1, "old": {"_count": 1}}, "in": {"_count": 1, "detail": {"_count": 1}}, "witch": {"_count": 1, "by": {"_count": 1}}, "would": {"_count": 1, "he": {"_count": 1}}}, "cranberry": {"_count": 1, "sauce": {"_count": 1, "and": {"_count": 1}}}, "sauce": {"_count": 4, "and": {"_count": 1, "stacks": {"_count": 1}}, "poured": {"_count": 1, "from": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}}, "stacks": {"_count": 5, "of": {"_count": 4, "wizard": {"_count": 1}, "Lockharts": {"_count": 1}, "newly": {"_count": 1}, "books": {"_count": 1}}, "beside": {"_count": 1, "each": {"_count": 1}}}, "crackers": {"_count": 2, "every": {"_count": 1, "few": {"_count": 1}}, "including": {"_count": 1, "a": {"_count": 1}}}, "fantastic": {"_count": 6, "party": {"_count": 1, "favors": {"_count": 1}}, "cloud": {"_count": 1, "shapes": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "Fawkes": {"_count": 1, "": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}}, "party": {"_count": 87, "favors": {"_count": 1, "were": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 20}, "!": {"_count": 1}, "?": {"_count": 5}}, "down": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 1}, "arrived": {"_count": 1}, "evaporated": {"_count": 1}}, "hat": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "Madam": {"_count": 1}}, "in": {"_count": 2, "greenhouse": {"_count": 1}, "his": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "hats": {"_count": 1, "Harry": {"_count": 1}}, "with": {"_count": 4, "a": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "me": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "ended": {"_count": 1, "only": {"_count": 1}}, "was": {"_count": 3, "bathed": {"_count": 1}, "walking": {"_count": 1}, "a": {"_count": 1}}, "coming": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 3, "ten": {"_count": 1}, "Aurors": {"_count": 1}, "warlocks": {"_count": 1}}, "kept": {"_count": 1, "climbing": {"_count": 1}}, "to": {"_count": 3, "arrive": {"_count": 1}, "pull": {"_count": 1}, "Mr": {"_count": 1}}, "from": {"_count": 1, "Durmstrang": {"_count": 1}}, "appeared": {"_count": 1, "quite": {"_count": 1}}, "Harry": {"_count": 3, "Fred": {"_count": 1}, "and": {"_count": 1}, "seized": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "after": {"_count": 2, "the": {"_count": 1}, "which": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "seemed": {"_count": 1, "much": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "moved": {"_count": 1, "forward": {"_count": 1}}, "by": {"_count": 1, "Remus": {"_count": 1}}, "marched": {"_count": 1, "them": {"_count": 1}}, "just": {"_count": 2, "a": {"_count": 1}, "for": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "invitations": {"_count": 1, "youve": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 2, "they": {"_count": 1}, "to": {"_count": 1}}, "before": {"_count": 1, "as": {"_count": 1}}, "but": {"_count": 1, "could": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "together": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "broke": {"_count": 1, "up": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}}, "feeble": {"_count": 39, "Muggle": {"_count": 1, "ones": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "charms": {"_count": 1, "but": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 1}, "Dear": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "once": {"_count": 1, "more": {"_count": 1}}, "hoot": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 2, "drive": {"_count": 1}, "be": {"_count": 1}}, "Patronus": {"_count": 1, "and": {"_count": 1}}, "old": {"_count": 1, "Committee": {"_count": 1}}, "light": {"_count": 2, "of": {"_count": 2}}, "had": {"_count": 1, "needed": {"_count": 1}}, "and": {"_count": 4, "exhausted": {"_count": 1}, "powerless": {"_count": 1}, "its": {"_count": 1}, "shrunken": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "appearance": {"_count": 1, "before": {"_count": 1}}, "joke": {"_count": 2, "if": {"_count": 1}, "isnt": {"_count": 1}}, "rays": {"_count": 1, "of": {"_count": 1}}, "spell": {"_count": 1, "whooshed": {"_count": 1}}, "mutter": {"_count": 1, "of": {"_count": 1}}, "assumption": {"_count": 1, "of": {"_count": 1}}, "wisps": {"_count": 1, "of": {"_count": 1}}, "lurch": {"_count": 1, "as": {"_count": 1}}, "taunts": {"_count": 1, "to": {"_count": 1}}, "remonstrances": {"_count": 1, "and": {"_count": 1}}, "imitation": {"_count": 1, "of": {"_count": 1}}, "attempts": {"_count": 1, "": {"_count": 1}}, "bravado": {"_count": 1, "": {"_count": 1}}, "attempt": {"_count": 1, "at": {"_count": 1}}}, "flimsy": {"_count": 2, "paper": {"_count": 1, "hats": {"_count": 1}}, "shallow": {"_count": 1, "bottomed": {"_count": 1}}}, "cracker": {"_count": 4, "with": {"_count": 2, "Fred": {"_count": 1}, "Kreacher": {"_count": 1}}, "flew": {"_count": 1, "apart": {"_count": 1}}, "of": {"_count": 1, "Ron": {"_count": 1}}}, "bang": {"_count": 65, "it": {"_count": 1, "went": {"_count": 1}}, "of": {"_count": 2, "metal": {"_count": 1}, "the": {"_count": 1}}, "did": {"_count": 1, "we": {"_count": 1}}, "echoed": {"_count": 2, "around": {"_count": 1}, "from": {"_count": 1}}, "the": {"_count": 2, "snake": {"_count": 1}, "curtains": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "which": {"_count": 1, "restored": {"_count": 1}}, "and": {"_count": 26, "Hagrid": {"_count": 1}, "Mr": {"_count": 1}, "knocked": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 12}, "Hermione": {"_count": 1}, "Ogden": {"_count": 1}, "Harry": {"_count": 1}, "Peeves": {"_count": 1}, "shouts": {"_count": 1}, "saw": {"_count": 1}, "he": {"_count": 1}, "numerous": {"_count": 1}}, "behind": {"_count": 1, "Harry": {"_count": 1}}, "like": {"_count": 3, "a": {"_count": 3}}, "a": {"_count": 4, "burst": {"_count": 2}, "hidden": {"_count": 1}, "flash": {"_count": 1}}, "Crookshanks": {"_count": 1, "flew": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 3, "loud": {"_count": 1}, "hard": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 3, "course": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "everybody": {"_count": 1, "fell": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "another": {"_count": 1, "squeal": {"_count": 1}}, "Headed": {"_count": 1, "bang": {"_count": 1}}, "Snorkacks": {"_count": 1, "": {"_count": 1}}, "brought": {"_count": 1, "Harry": {"_count": 1}}, "extinguished": {"_count": 1, "their": {"_count": 1}}, "was": {"_count": 1, "like": {"_count": 1}}}, "engulfed": {"_count": 9, "them": {"_count": 3, "all": {"_count": 1}, "along": {"_count": 1}, "Harrys": {"_count": 1}}, "him": {"_count": 2, "in": {"_count": 1}, "spinning": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "hugged": {"_count": 1, "pounded": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "wriggling": {"_count": 1}}}, "cloud": {"_count": 39, "of": {"_count": 18, "blue": {"_count": 1}, "keys": {"_count": 1}, "fluttering": {"_count": 1}, "silver": {"_count": 1}, "mist": {"_count": 1}, "suspicion": {"_count": 1}, "rubble": {"_count": 1}, "midges": {"_count": 1}, "live": {"_count": 1}, "dust": {"_count": 4}, "smoke": {"_count": 1}, "paper": {"_count": 1}, "birds": {"_count": 1}, "white": {"_count": 1}, "thick": {"_count": 1}}, "pressing": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "sky": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "shapes": {"_count": 1, "now": {"_count": 1}}, "staining": {"_count": 1, "it": {"_count": 1}}, "draining": {"_count": 1, "Harry": {"_count": 1}}, "shifted": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "going": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "drifted": {"_count": 1, "across": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "cover": {"_count": 1, "": {"_count": 1}}, "ahead": {"_count": 1, "we": {"_count": 1}}, "it": {"_count": 1, "left": {"_count": 1}}, "before": {"_count": 1, "calling": {"_count": 1}}, "his": {"_count": 1, "painted": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "admirals": {"_count": 1, "hat": {"_count": 1, "and": {"_count": 1}}}, "flowered": {"_count": 5, "bonnet": {"_count": 1, "and": {"_count": 1}}, "apron": {"_count": 1, "with": {"_count": 1}}, "nightdress": {"_count": 1, "": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "cloth": {"_count": 1, "": {"_count": 1}}}, "bonnet": {"_count": 3, "and": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "chuckling": {"_count": 8, "merrily": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "appreciatively": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "suddenly": {"_count": 1}}, "thas": {"_count": 1, "jus": {"_count": 1}}, "nastily": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "waddled": {"_count": 1}}, "immoderately": {"_count": 1, "": {"_count": 1}}}, "Flaming": {"_count": 2, "Christmas": {"_count": 1, "puddings": {"_count": 1}}, "serpents": {"_count": 1, "chimaeras": {"_count": 1}}}, "puddings": {"_count": 8, "followed": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "too": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 2, "only": {"_count": 1}, "large": {"_count": 1}}, "exploding": {"_count": 1, "half": {"_count": 1}}}, "turkey": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "sandwiches": {"_count": 1, "crumpets": {"_count": 1}}, "and": {"_count": 2, "cake": {"_count": 1}, "swallowing": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "dinner": {"_count": 1, "on": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}}, "embedded": {"_count": 3, "in": {"_count": 1, "his": {"_count": 1}}, "spines": {"_count": 1, "etc": {"_count": 1}}, "with": {"_count": 1, "shells": {"_count": 1}}}, "slice": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 4, "pie": {"_count": 1}, "the": {"_count": 1}, "birthday": {"_count": 1}, "pound": {"_count": 1}}, "my": {"_count": 1, "caterpillars": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}}, "redder": {"_count": 8, "and": {"_count": 2, "redder": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "than": {"_count": 1, "before": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}, "she": {"_count": 1, "looked": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}}, "wine": {"_count": 37, "finally": {"_count": 1, "kissing": {"_count": 1}}, "Three": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "weve": {"_count": 1, "got": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "Fred": {"_count": 1}}, "shoot": {"_count": 1, "out": {"_count": 1}}, "bottles": {"_count": 1, "and": {"_count": 1}}, "lowered": {"_count": 1, "his": {"_count": 1}}, "glass": {"_count": 2, "Malfoy": {"_count": 1}, "": {"_count": 1}}, "will": {"_count": 1, "do": {"_count": 1}}, "and": {"_count": 5, "handed": {"_count": 1}, "forced": {"_count": 1}, "poured": {"_count": 1}, "to": {"_count": 1}, "Fleur": {"_count": 1}}, "down": {"_count": 2, "herself": {"_count": 1}, "his": {"_count": 1}}, "by": {"_count": 1, "Fleur": {"_count": 1}}, "in": {"_count": 2, "that": {"_count": 1}, "one": {"_count": 1}}, "Harry": {"_count": 1, "not": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "or": {"_count": 1, "theyd": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 2}}, "her": {"_count": 1, "glass": {"_count": 1}}}, "kissing": {"_count": 31, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "Florence": {"_count": 1, "behind": {"_count": 1}}, "his": {"_count": 2, "robes": {"_count": 1}, "girlfriend": {"_count": 1}}, "him": {"_count": 6, "all": {"_count": 1}, "on": {"_count": 2}, "goodbye": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "would": {"_count": 1, "cheer": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}, "couples": {"_count": 2, "surrounded": {"_count": 1}, "broke": {"_count": 1}}, "her": {"_count": 3, "again": {"_count": 1}, "": {"_count": 1}, "back": {"_count": 1}}, "fiercely": {"_count": 1, "as": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "have": {"_count": 1}}, "Dean": {"_count": 2, "because": {"_count": 1}, "and": {"_count": 1}}, "Ginny": {"_count": 1, "instead": {"_count": 1}}, "Ron": {"_count": 1, "as": {"_count": 1}}, "Bill": {"_count": 1, "in": {"_count": 1}}, "gate": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 1, "nearly": {"_count": 1}}}, "giggled": {"_count": 16, "and": {"_count": 3, "blushed": {"_count": 1}, "the": {"_count": 1}, "allowed": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "harder": {"_count": 2, "than": {"_count": 2}}, "when": {"_count": 1, "they": {"_count": 1}}, "maliciously": {"_count": 1, "": {"_count": 1}}, "happily": {"_count": 1, "leaping": {"_count": 1}}, "feebly": {"_count": 1, "and": {"_count": 1}}}, "lopsided": {"_count": 27, "": {"_count": 3, ".": {"_count": 3}}, "sign": {"_count": 2, "stuck": {"_count": 1}, "on": {"_count": 1}}, "brass": {"_count": 1, "scales": {"_count": 1}}, "tables": {"_count": 1, "and": {"_count": 1}}, "creature": {"_count": 1, "and": {"_count": 1}}, "shapes": {"_count": 1, "and": {"_count": 1}}, "mouth": {"_count": 6, "": {"_count": 2}, "revealed": {"_count": 1}, "leered": {"_count": 1}, "was": {"_count": 1}, "fell": {"_count": 1}}, "gash": {"_count": 1, "of": {"_count": 1}}, "appearance": {"_count": 1, "than": {"_count": 1}}, "spectacles": {"_count": 1, "as": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "full": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "leer": {"_count": 1, "gave": {"_count": 1}}, "man": {"_count": 1, "to": {"_count": 1}}, "horn": {"_count": 1, "rimmed": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "Mr": {"_count": 1}}, "looking": {"_count": 1, "a": {"_count": 1}}}, "including": {"_count": 55, "a": {"_count": 5, "pack": {"_count": 1}, "new": {"_count": 1}, "pair": {"_count": 1}, "chunk": {"_count": 1}, "bush": {"_count": 1}}, "all": {"_count": 4, "the": {"_count": 2}, "Harrys": {"_count": 1}, "of": {"_count": 1}}, "the": {"_count": 13, "pipes": {"_count": 1}, "Slytherin": {"_count": 1}, "lining": {"_count": 1}, "remaining": {"_count": 1}, "Accidental": {"_count": 1}, "Improper": {"_count": 2}, "witch": {"_count": 1}, "fact": {"_count": 1}, "floor": {"_count": 1}, "enraged": {"_count": 1}, "Minister": {"_count": 1}, "palomino": {"_count": 1}}, "that": {"_count": 2, "pair": {"_count": 1}, "Romilda": {"_count": 1}}, "Crabbe": {"_count": 2, "and": {"_count": 1}, "Goyle": {"_count": 1}}, "his": {"_count": 2, "Firebolt": {"_count": 1}, "discovery": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "old": {"_count": 1, "Archie": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "Rons": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 2, "that": {"_count": 1}, "relatives": {"_count": 1}}, "its": {"_count": 1, "many": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Madam": {"_count": 1, "Bones": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "yourself": {"_count": 1, "in": {"_count": 1}}, "those": {"_count": 1, "of": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "Nicolas": {"_count": 1, "Flamel": {"_count": 1}}, "her": {"_count": 1, "two": {"_count": 1}}, "Xenophilius": {"_count": 1, "Lovegood": {"_count": 1}}, "Lee": {"_count": 1, "Jordan": {"_count": 1}}}, "nonexplodable": {"_count": 1, "luminous": {"_count": 1, "balloons": {"_count": 1}}}, "luminous": {"_count": 10, "balloons": {"_count": 1, "a": {"_count": 1}}, "eyes": {"_count": 1, "of": {"_count": 1}}, "alarm": {"_count": 1, "clock": {"_count": 1}}, "hands": {"_count": 1, "of": {"_count": 1}}, "rosettes": {"_count": 1, "green": {"_count": 1}}, "red": {"_count": 1, "letters": {"_count": 1}}, "holly": {"_count": 1, "berries": {"_count": 1}}, "stars": {"_count": 1, "on": {"_count": 1}}, "illuminated": {"_count": 1, "by": {"_count": 1}}, "insect": {"_count": 1, "eyes": {"_count": 1}}}, "balloons": {"_count": 4, "a": {"_count": 1, "Grow": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "overhead": {"_count": 1, "burst": {"_count": 1}}}, "Grow": {"_count": 1, "YourOwnWarts": {"_count": 1, "kit": {"_count": 1}}}, "YourOwnWarts": {"_count": 1, "kit": {"_count": 1, "and": {"_count": 1}}}, "kit": {"_count": 7, "and": {"_count": 2, "his": {"_count": 1}, "adding": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "put": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "certain": {"_count": 1, "books": {"_count": 1}}}, "Norriss": {"_count": 4, "Christmas": {"_count": 1, "dinner": {"_count": 1}}, "fur": {"_count": 1, "": {"_count": 1}}, "fate": {"_count": 1, "": {"_count": 1}}, "lamplike": {"_count": 1, "eyes": {"_count": 1}}}, "snowball": {"_count": 5, "fight": {"_count": 3, "on": {"_count": 1}, "rather": {"_count": 1}, "and": {"_count": 1}}, "thrown": {"_count": 1, "by": {"_count": 1}}, "hits": {"_count": 1, "this": {"_count": 1}}}, "spectacularly": {"_count": 5, "to": {"_count": 1, "Ron": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "skidding": {"_count": 1, "along": {"_count": 1}}}, "suspected": {"_count": 40, "he": {"_count": 1, "wouldnt": {"_count": 1}}, "me": {"_count": 2, "went": {"_count": 1}, "all": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 3}}, "that": {"_count": 8, "Ron": {"_count": 1}, "Fred": {"_count": 2}, "the": {"_count": 1}, "part": {"_count": 1}, "this": {"_count": 1}, "Dumbledore": {"_count": 1}, "all": {"_count": 1}}, "his": {"_count": 1, "every": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "what": {"_count": 1, "it": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "him": {"_count": 2, "of": {"_count": 1}, "Dumbledore": {"_count": 1}}, "it": {"_count": 2, "all": {"_count": 1}, "would": {"_count": 1}}, "had": {"_count": 3, "a": {"_count": 1}, "been": {"_count": 1}, "contained": {"_count": 1}}, "Harry": {"_count": 1, "at": {"_count": 1}}, "when": {"_count": 1, "observing": {"_count": 1}}, "Angelinas": {"_count": 1, "pep": {"_count": 1}}, "Snape": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "dementor": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "having": {"_count": 1}}, "regarding": {"_count": 1, "their": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "feelings": {"_count": 1}}, "and": {"_count": 1, "feared": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}}, "crumpets": {"_count": 2, "trifle": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "chase": {"_count": 16, "Fred": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "at": {"_count": 1}}, "rats": {"_count": 1, "Ron": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "when": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "him": {"_count": 1, "and": {"_count": 1}}, "away": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}, "after": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "how": {"_count": 1, "they": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "be": {"_count": 1, "sure": {"_count": 1}}}, "nagging": {"_count": 9, "at": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "voice": {"_count": 1, "inside": {"_count": 1}}, "him": {"_count": 1, "about": {"_count": 1}}, "me": {"_count": 1, "its": {"_count": 1}}, "suspicion": {"_count": 1, "that": {"_count": 1}}, "worry": {"_count": 1, "that": {"_count": 1}}, "doubts": {"_count": 1, "He": {"_count": 1}}}, "whoever": {"_count": 27, "had": {"_count": 2, "sent": {"_count": 1}, "searched": {"_count": 1}}, "owns": {"_count": 1, "him": {"_count": 1}}, "we": {"_count": 1, "want": {"_count": 1}}, "were": {"_count": 1, "changing": {"_count": 1}}, "it": {"_count": 6, "was": {"_count": 6}}, "heard": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "conjured": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 2}}, "put": {"_count": 3, "your": {"_count": 2}, "you": {"_count": 1}}, "picks": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "moving": {"_count": 1}}, "sat": {"_count": 1, "between": {"_count": 1}}, "sent": {"_count": 1, "it": {"_count": 1}}, "touches": {"_count": 1, "it": {"_count": 1}}, "Imperiused": {"_count": 1, "me": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "they": {"_count": 1, "are": {"_count": 1}}}, "fourposter": {"_count": 23, "": {"_count": 2, ".": {"_count": 2}}, "bed": {"_count": 5, "in": {"_count": 1}, "with": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "lying": {"_count": 1}}, "and": {"_count": 5, "staring": {"_count": 1}, "flicked": {"_count": 1}, "the": {"_count": 1}, "trying": {"_count": 1}, "for": {"_count": 1}}, "he": {"_count": 2, "watched": {"_count": 1}, "imagined": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "thinking": {"_count": 1, "hard": {"_count": 1}}, "beds": {"_count": 1, "and": {"_count": 1}}, "shut": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "intending": {"_count": 1, "to": {"_count": 1}}, "closed": {"_count": 1, "Hagrid": {"_count": 1}}, "ten": {"_count": 1, "minutes": {"_count": 1}}, "instead": {"_count": 1, "he": {"_count": 1}}}, "flow": {"_count": 14, "over": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "about": {"_count": 2, "O": {"_count": 1}, "plans": {"_count": 1}}, "of": {"_count": 6, "his": {"_count": 1}, "dire": {"_count": 1}, "encouragement": {"_count": 1}, "blood": {"_count": 1}, "the": {"_count": 1}, "enchanted": {"_count": 1}}, "hot": {"_count": 1, "and": {"_count": 1}}, "stopped": {"_count": 1, "at": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}}, "smoother": {"_count": 3, "than": {"_count": 2, "silk": {"_count": 1}, "usual": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wideawake": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "wide": {"_count": 1, "awake": {"_count": 1}}}, "Excitement": {"_count": 3, "flooded": {"_count": 1, "through": {"_count": 1}}, "exploded": {"_count": 1, "in": {"_count": 1}}, "trickled": {"_count": 1, "through": {"_count": 1}}}, "squawked": {"_count": 4, "the": {"_count": 1, "Fat": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "Umbridge": {"_count": 1, "swelling": {"_count": 1}}, "Muriel": {"_count": 1, "": {"_count": 1}}}, "pitchblack": {"_count": 7, "and": {"_count": 3, "very": {"_count": 1}, "lightless": {"_count": 1}, "smelled": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Peruvian": {"_count": 1, "Instant": {"_count": 1}}, "in": {"_count": 1, "silhouette": {"_count": 1}}}, "eerie": {"_count": 18, "": {"_count": 3, ".": {"_count": 3}}, "spinetingling": {"_count": 1, "unearthly": {"_count": 1}}, "song": {"_count": 1, "jabbing": {"_count": 1}}, "silence": {"_count": 1, "was": {"_count": 1}}, "unblinking": {"_count": 1, "stare": {"_count": 1}}, "noise": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "half": {"_count": 1}}, "flickering": {"_count": 1, "quality": {"_count": 1}}, "voices": {"_count": 1, "singing": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "way": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 1, "sinister": {"_count": 1}}, "red": {"_count": 1, "glow": {"_count": 1}}, "sight": {"_count": 1, "met": {"_count": 1}}, "cobwebbed": {"_count": 1, "the": {"_count": 1}}, "floating": {"_count": 1, "in": {"_count": 1}}}, "supporting": {"_count": 14, "it": {"_count": 1, "the": {"_count": 1}}, "Ireland": {"_count": 3, "of": {"_count": 1}, "they": {"_count": 1}, "Krum": {"_count": 1}}, "Bulgaria": {"_count": 1, "and": {"_count": 1}}, "Voldemort": {"_count": 1, "Professor": {"_count": 1}}, "him": {"_count": 1, "pushed": {"_count": 1}}, "Katie": {"_count": 1, "between": {"_count": 1}}, "Gryffindor": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "George": {"_count": 1, "who": {"_count": 1}}, "poles": {"_count": 1, "were": {"_count": 1}}, "Hermione": {"_count": 1, "who": {"_count": 1}}, "a": {"_count": 1, "desperately": {"_count": 1}}}, "creeps": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Stepping": {"_count": 2, "carefully": {"_count": 1, "over": {"_count": 1}}, "nimbly": {"_count": 1, "out": {"_count": 1}}}, "rope": {"_count": 32, "that": {"_count": 1, "separated": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "tightly": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 5, "to": {"_count": 1}, "tied": {"_count": 1}, "Buckbeak": {"_count": 1}, "reflected": {"_count": 1}, "poles": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "tying": {"_count": 1, "Buckbeak": {"_count": 1}}, "but": {"_count": 1, "Buckbeak": {"_count": 1}}, "around": {"_count": 3, "Buckbeaks": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "another": {"_count": 1, "wrench": {"_count": 1}}, "too": {"_count": 2, "and": {"_count": 1}, "straining": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "over": {"_count": 1}}, "round": {"_count": 1, "his": {"_count": 1}}, "us": {"_count": 1, "into": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "tricks": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "pulling": {"_count": 1}}, "ladder": {"_count": 1, "that": {"_count": 1}}, "appeared": {"_count": 1, "out": {"_count": 1}}}, "separated": {"_count": 25, "these": {"_count": 1, "books": {"_count": 1}}, "Harry": {"_count": 1, "explained": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harrys": {"_count": 1, "Rons": {"_count": 1}}, "from": {"_count": 5, "humans": {"_count": 1}, "him": {"_count": 2}, "their": {"_count": 1}, "normal": {"_count": 1}}, "the": {"_count": 3, "Hufflepuffs": {"_count": 1}, "river": {"_count": 1}, "cottage": {"_count": 1}}, "and": {"_count": 1, "swirled": {"_count": 1}}, "Malfoy": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 2}}, "five": {"_count": 1, "Extendable": {"_count": 1}}, "Snape": {"_count": 1, "from": {"_count": 1}}, "him": {"_count": 1, "from": {"_count": 1}}, "ingredients": {"_count": 1, "of": {"_count": 1}}, "banged": {"_count": 1, "into": {"_count": 1}}, "each": {"_count": 1, "for": {"_count": 1}}}, "peeling": {"_count": 14, "faded": {"_count": 1, "gold": {"_count": 1}}, "paint": {"_count": 2, "and": {"_count": 1}, "then": {"_count": 1}}, "letters": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "many": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "wallpaper": {"_count": 1, "and": {"_count": 1}}, "walls": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "potatoes": {"_count": 1}}, "a": {"_count": 1, "mountain": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "places": {"_count": 1}}, "paper": {"_count": 1, "on": {"_count": 1}}}, "spelled": {"_count": 3, "words": {"_count": 1, "in": {"_count": 1}}, "The": {"_count": 1, "Knight": {"_count": 1}}, "the": {"_count": 1, "word": {"_count": 1}}}, "languages": {"_count": 6, "Harry": {"_count": 2, "couldnt": {"_count": 1}, "could": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "I": {"_count": 1, "need": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}}, "title": {"_count": 14, "at": {"_count": 1, "all": {"_count": 1}}, "The": {"_count": 1, "Monster": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 1, "keep": {"_count": 1}}, "then": {"_count": 1, "looked": {"_count": 1}}, "of": {"_count": 3, "Snapes": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 1, "bet": {"_count": 1}}, "youre": {"_count": 1, "thinking": {"_count": 1}}, "somebodys": {"_count": 1, "given": {"_count": 1}}, "was": {"_count": 2, "in": {"_count": 1}, "a": {"_count": 1}}, "MUDBLOODS": {"_count": 1, "and": {"_count": 1}}}, "stain": {"_count": 3, "on": {"_count": 1, "it": {"_count": 1}}, "upon": {"_count": 1, "Hogwarts": {"_count": 1}}, "was": {"_count": 1, "spreading": {"_count": 1}}}, "Setting": {"_count": 3, "the": {"_count": 1, "lamp": {"_count": 1}}, "dementors": {"_count": 1, "around": {"_count": 1}}, "a": {"_count": 1, "bleedin": {"_count": 1}}}, "interestinglooking": {"_count": 1, "book": {"_count": 1, "": {"_count": 1}}}, "volume": {"_count": 9, "caught": {"_count": 1, "his": {"_count": 1}}, "shrieking": {"_count": 1, "about": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}, "of": {"_count": 2, "her": {"_count": 1}, "Practical": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "eagerly": {"_count": 1, "he": {"_count": 1}}, "control": {"_count": 1, "so": {"_count": 1}}, "bound": {"_count": 1, "in": {"_count": 1}}}, "balancing": {"_count": 5, "it": {"_count": 2, "on": {"_count": 2}}, "a": {"_count": 2, "teetering": {"_count": 1}, "huge": {"_count": 1}}, "the": {"_count": 1, "QuickQuotes": {"_count": 1}}}, "bloodcurdling": {"_count": 3, "shriek": {"_count": 1, "split": {"_count": 1}}, "screech": {"_count": 1, "": {"_count": 1}}, "scream": {"_count": 1, "": {"_count": 1}}}, "shriek": {"_count": 32, "split": {"_count": 1, "the": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 5, "next": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 2}, "Ron": {"_count": 1}}, "with": {"_count": 4, "pain": {"_count": 4}}, "that": {"_count": 1, "made": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "of": {"_count": 4, "surprise": {"_count": 1}, "laughter": {"_count": 1}, "agony": {"_count": 1}, "pain": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "bellowed": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "WHAT": {"_count": 1, "DO": {"_count": 1}}, "in": {"_count": 1, "alarm": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "nothing": {"_count": 1, "this": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "spilled": {"_count": 1}}, "her": {"_count": 1, "deflected": {"_count": 1}}, "something": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "unbroken": {"_count": 4, "earsplitting": {"_count": 1, "note": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "earsplitting": {"_count": 11, "note": {"_count": 1, "": {"_count": 1}}, "yelps": {"_count": 1, "": {"_count": 1}}, "bang": {"_count": 1, "of": {"_count": 1}}, "roar": {"_count": 2, "": {"_count": 2}}, "racket": {"_count": 1, "": {"_count": 1}}, "bloodcurdling": {"_count": 1, "screech": {"_count": 1}}, "shrieks": {"_count": 1, "were": {"_count": 1}}, "scream": {"_count": 1, "and": {"_count": 1}}, "groundtrembling": {"_count": 1, "crash": {"_count": 1}}, "noise": {"_count": 1, "made": {"_count": 1}}}, "Panicking": {"_count": 2, "he": {"_count": 1, "heard": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}}, "shrieking": {"_count": 21, "book": {"_count": 1, "back": {"_count": 1}}, "No": {"_count": 1, "Arthur": {"_count": 1}}, "indignantly": {"_count": 1, "people": {"_count": 1}}, "in": {"_count": 3, "terror": {"_count": 1}, "a": {"_count": 1}, "agony": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}, "with": {"_count": 1, "laughter": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "cry": {"_count": 2, "that": {"_count": 1}, "again": {"_count": 1}}, "and": {"_count": 2, "falling": {"_count": 1}, "clanking": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}, "spitting": {"_count": 1, "portrait": {"_count": 1}}, "Potty": {"_count": 1, "loves": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "goblins": {"_count": 1, "aside": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "outstretched": {"_count": 41, "arm": {"_count": 4, "and": {"_count": 3}, "": {"_count": 1}}, "hand": {"_count": 3, "": {"_count": 3}}, "feeling": {"_count": 1, "his": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "but": {"_count": 3, "Uncle": {"_count": 1}, "Aunt": {"_count": 1}, "Harry": {"_count": 1}}, "wing": {"_count": 1, "as": {"_count": 1}}, "necks": {"_count": 1, "": {"_count": 1}}, "fingers": {"_count": 3, "and": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 1}}, "inches": {"_count": 1, "from": {"_count": 1}}, "it": {"_count": 1, "advanced": {"_count": 1}}, "hands": {"_count": 4, "could": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "arms": {"_count": 1, "knocking": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "and": {"_count": 2, "vanished": {"_count": 1}, "a": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "his": {"_count": 1, "teeth": {"_count": 1}}, "finger": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "continuing": {"_count": 1, "to": {"_count": 1}}}, "shrieks": {"_count": 8, "still": {"_count": 1, "ringing": {"_count": 1}}, "and": {"_count": 2, "Voldemorts": {"_count": 1}, "screams": {"_count": 1}}, "followed": {"_count": 1, "them": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "laughter": {"_count": 2}}, "were": {"_count": 1, "added": {"_count": 1}}}, "ringing": {"_count": 25, "in": {"_count": 9, "his": {"_count": 6}, "their": {"_count": 2}, "Christmas": {"_count": 1}}, "silence": {"_count": 4, "fell": {"_count": 1}, "": {"_count": 1}, "followed": {"_count": 1}, "behind": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 3, "applause": {"_count": 1}, "the": {"_count": 2}}, "voice": {"_count": 4, "and": {"_count": 1}, "his": {"_count": 1}, "to": {"_count": 1}, "we": {"_count": 1}}, "tones": {"_count": 1, "I": {"_count": 1}}, "force": {"_count": 1, "that": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "noise": {"_count": 1, "like": {"_count": 1}}}, "recognize": {"_count": 48, "where": {"_count": 1, "he": {"_count": 1}}, "diffrent": {"_count": 1, "eggs": {"_count": 1}}, "a": {"_count": 5, "dragon": {"_count": 1}, "werewolf": {"_count": 1}, "large": {"_count": 1}, "joke": {"_count": 1}, "master": {"_count": 1}}, "the": {"_count": 6, "third": {"_count": 1}, "place": {"_count": 1}, "mans": {"_count": 1}, "grooved": {"_count": 1}, "room": {"_count": 1}, "Resurrection": {"_count": 1}}, "and": {"_count": 1, "kill": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 5, "profile": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}, "description": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "it": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 7, "": {"_count": 3}, "as": {"_count": 1}, "from": {"_count": 2}, "if": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "situations": {"_count": 1, "in": {"_count": 1}}, "Sirius": {"_count": 1, "on": {"_count": 1}}, "crups": {"_count": 1, "and": {"_count": 1}}, "danger": {"_count": 1, "you": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "Devils": {"_count": 1, "Snare": {"_count": 1}}, "with": {"_count": 1, "very": {"_count": 1}}, "your": {"_count": 1, "laws": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "our": {"_count": 1, "guest": {"_count": 1}}, "no": {"_count": 1, "Wizarding": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "flapping": {"_count": 1}}}, "directly": {"_count": 75, "to": {"_count": 5, "you": {"_count": 2}, "Aunt": {"_count": 1}, "the": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "Longbottom": {"_count": 1, "said": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "Dumbledore": {"_count": 1}}, "at": {"_count": 27, "the": {"_count": 10}, "Harry": {"_count": 4}, "Lupin": {"_count": 1}, "Lupins": {"_count": 2}, "Ron": {"_count": 1}, "Harrys": {"_count": 2}, "Dudleys": {"_count": 1}, "Aunt": {"_count": 1}, "Umbridge": {"_count": 1}, "their": {"_count": 1}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "Draco": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "upon": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "over": {"_count": 4, "the": {"_count": 1}, "to": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 3, "case": {"_count": 1}, "the": {"_count": 1}, "front": {"_count": 1}}, "into": {"_count": 9, "the": {"_count": 3}, "Snapes": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}, "her": {"_count": 1}, "each": {"_count": 1}, "Harrys": {"_count": 1}}, "opposite": {"_count": 1, "Harry": {"_count": 1}}, "above": {"_count": 4, "Harry": {"_count": 1}, "the": {"_count": 1}, "them": {"_count": 2}}, "below": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "it": {"_count": 1}}, "and": {"_count": 1, "though": {"_count": 1}}, "across": {"_count": 1, "from": {"_count": 1}}, "overhead": {"_count": 1, "that": {"_count": 1}}, "behind": {"_count": 4, "Malfoy": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}}, "involved": {"_count": 1, "in": {"_count": 1}}, "beneath": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}}, "somebodys": {"_count": 8, "been": {"_count": 2, "in": {"_count": 2}}, "maiden": {"_count": 1, "aunt": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "shopping": {"_count": 1, "bag": {"_count": 1}}, "given": {"_count": 1, "themselves": {"_count": 1}}, "briefcase": {"_count": 1, "": {"_count": 1}}, "drawn": {"_count": 1, "it": {"_count": 1}}}, "drain": {"_count": 12, "out": {"_count": 3, "of": {"_count": 3}}, "": {"_count": 2, ".": {"_count": 2}}, "away": {"_count": 2, "then": {"_count": 1}, "at": {"_count": 1}}, "peace": {"_count": 1, "hope": {"_count": 1}}, "a": {"_count": 1, "wizard": {"_count": 1}}, "the": {"_count": 1, "lake": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "hope": {"_count": 1, "and": {"_count": 1}}}, "Wherever": {"_count": 6, "he": {"_count": 1, "was": {"_count": 1}}, "Dumbledore": {"_count": 1, "was": {"_count": 1}}, "possible": {"_count": 1, "arrange": {"_count": 1}}, "the": {"_count": 1, "genuine": {"_count": 1}}, "Harry": {"_count": 1, "went": {"_count": 1}}, "you": {"_count": 1, "told": {"_count": 1}}}, "shortcut": {"_count": 8, "because": {"_count": 1, "his": {"_count": 1}}, "Ron": {"_count": 1, "panted": {"_count": 1}}, "that": {"_count": 2, "would": {"_count": 2}}, "between": {"_count": 1, "Magnolia": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "closing": {"_count": 1}}}, "replied": {"_count": 49, "The": {"_count": 1, "Restricted": {"_count": 1}}, "Plenty": {"_count": 1, "of": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "Lupin": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "Harry": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "Its": {"_count": 1, "more": {"_count": 1}}, "Hermione": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 5, "centaur": {"_count": 1}, "little": {"_count": 1}, "goblin": {"_count": 2}, "eagle": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "his": {"_count": 1, "thin": {"_count": 1}}, "waving": {"_count": 1, "at": {"_count": 1}}, "Ron": {"_count": 1, "though": {"_count": 1}}, "Dumbledore": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Youll": {"_count": 1, "see": {"_count": 1}}, "Severus": {"_count": 1, "Snape": {"_count": 1}}, "he": {"_count": 1, "left": {"_count": 1}}, "and": {"_count": 4, "she": {"_count": 1}, "Ron": {"_count": 1}, "raising": {"_count": 1}, "little": {"_count": 1}}, "Bill": {"_count": 1, "": {"_count": 1}}, "terrified": {"_count": 1, "that": {"_count": 1}}, "mellow": {"_count": 1, "voiced": {"_count": 1}}, "Dirk": {"_count": 1, "that": {"_count": 1}}, "Griphook": {"_count": 1, "": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "relieved": {"_count": 1}}, "Kingsley": {"_count": 1, "": {"_count": 1}}, "Ollivander": {"_count": 1, "his": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 2}}, "Of": {"_count": 1, "course": {"_count": 1}}}, "unused": {"_count": 3, "classroom": {"_count": 2, "": {"_count": 2}}, "ingredients": {"_count": 1, "and": {"_count": 1}}}, "shapes": {"_count": 29, "of": {"_count": 6, "desks": {"_count": 1}, "hundreds": {"_count": 1}, "people": {"_count": 1}, "heavy": {"_count": 1}, "the": {"_count": 1}, "four": {"_count": 1}}, "and": {"_count": 4, "sizes": {"_count": 1}, "symbols": {"_count": 2}, "colors": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "shifted": {"_count": 1, "all": {"_count": 1}}, "with": {"_count": 1, "no": {"_count": 1}}, "were": {"_count": 4, "moving": {"_count": 2}, "several": {"_count": 1}, "emerging": {"_count": 1}}, "rushed": {"_count": 1, "past": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "howling": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "they": {"_count": 1, "made": {"_count": 1}}}, "desks": {"_count": 33, "and": {"_count": 7, "chairs": {"_count": 1}, "Neville": {"_count": 1}, "leaned": {"_count": 1}, "Ludo": {"_count": 1}, "slept": {"_count": 1}, "in": {"_count": 1}, "Harry": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "on": {"_count": 1, "which": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "POTTER": {"_count": 1, "STINKS": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 2}}, "said": {"_count": 2, "George": {"_count": 1}, "another": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "toward": {"_count": 1, "Snape": {"_count": 1}}, "a": {"_count": 1, "short": {"_count": 1}}, "flying": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "ranging": {"_count": 1, "the": {"_count": 1}}, "heading": {"_count": 1, "as": {"_count": 1}}, "bawling": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 1, "unlike": {"_count": 1}}, "though": {"_count": 1, "much": {"_count": 1}}, "thundered": {"_count": 1, "past": {"_count": 1}}}, "upturned": {"_count": 10, "wastepaper": {"_count": 1, "basket": {"_count": 1}}, "bucket": {"_count": 2, "looking": {"_count": 1}, "pushing": {"_count": 1}}, "faces": {"_count": 2, "": {"_count": 1}, "lingering": {"_count": 1}}, "chairs": {"_count": 1, "an": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 1}, "her": {"_count": 1}}, "nose": {"_count": 2, "whom": {"_count": 1}, "was": {"_count": 1}}}, "basket": {"_count": 24, "but": {"_count": 1, "propped": {"_count": 1}}, "grabbed": {"_count": 1, "bags": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "of": {"_count": 3, "funny": {"_count": 1}, "rolls": {"_count": 1}, "laundry": {"_count": 1}}, "stood": {"_count": 1, "beside": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "they": {"_count": 1}}, "stretched": {"_count": 1, "yawned": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "at": {"_count": 2, "first": {"_count": 1}, "the": {"_count": 1}}, "Firenze": {"_count": 1, "gestured": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "Hedwig": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "particularly": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 1, "spends": {"_count": 1}}}, "propped": {"_count": 18, "against": {"_count": 5, "the": {"_count": 4}, "a": {"_count": 1}}, "on": {"_count": 3, "a": {"_count": 1}, "sticks": {"_count": 1}, "top": {"_count": 1}}, "open": {"_count": 2, "against": {"_count": 2}}, "it": {"_count": 1, "open": {"_count": 1}}, "themselves": {"_count": 1, "on": {"_count": 1}}, "up": {"_count": 3, "on": {"_count": 2}, "in": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 1, "painting": {"_count": 1}}}, "ornate": {"_count": 13, "gold": {"_count": 1, "frame": {"_count": 1}}, "picture": {"_count": 2, "frame": {"_count": 2}}, "crystal": {"_count": 1, "bottle": {"_count": 1}}, "opal": {"_count": 1, "necklace": {"_count": 1}}, "golden": {"_count": 1, "lamp": {"_count": 1}}, "serpentine": {"_count": 1, "S": {"_count": 1}}, "S": {"_count": 1, "that": {"_count": 1}}, "table": {"_count": 1, "": {"_count": 1}}, "letter": {"_count": 1, "S": {"_count": 1}}, "frames": {"_count": 1, "": {"_count": 1}}, "silver": {"_count": 1, "sword": {"_count": 1}}, "marble": {"_count": 1, "fireplace": {"_count": 1}}}, "clawed": {"_count": 13, "feet": {"_count": 3, "": {"_count": 1}, "remembering": {"_count": 1}, "before": {"_count": 1}}, "paws": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "foot": {"_count": 1, "": {"_count": 1}}, "wooden": {"_count": 1, "foot": {"_count": 1}}, "fingers": {"_count": 1, "were": {"_count": 1}}, "front": {"_count": 1, "legs": {"_count": 1}}, "hands": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "fought": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "inscription": {"_count": 2, "carved": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "carved": {"_count": 26, "around": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "what": {"_count": 1}, "ice": {"_count": 1}}, "into": {"_count": 2, "lanterns": {"_count": 1}, "the": {"_count": 1}}, "mantelpiece": {"_count": 1, "ahead": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "a": {"_count": 1, "path": {"_count": 1}}, "their": {"_count": 2, "eyes": {"_count": 1}, "initials": {"_count": 1}}, "serpents": {"_count": 1, "rose": {"_count": 1}}, "wooden": {"_count": 2, "leg": {"_count": 1}, "headboard": {"_count": 1}}, "pumpkins": {"_count": 2, "leered": {"_count": 1}, "were": {"_count": 1}}, "benches": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "runes": {"_count": 1}}, "features": {"_count": 1, "seemed": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "quality": {"_count": 1, "about": {"_count": 1}}, "thrones": {"_count": 2, "looking": {"_count": 1}, "were": {"_count": 1}}, "humans": {"_count": 1, "hundreds": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "Erised": {"_count": 8, "stra": {"_count": 1, "ehru": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "shows": {"_count": 1, "us": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "four": {"_count": 1, "years": {"_count": 1}}, "and": {"_count": 1, "why": {"_count": 1}}}, "stra": {"_count": 1, "ehru": {"_count": 1, "oyt": {"_count": 1}}}, "ehru": {"_count": 1, "oyt": {"_count": 1, "ube": {"_count": 1}}}, "oyt": {"_count": 2, "ube": {"_count": 1, "cafru": {"_count": 1}}, "on": {"_count": 1, "wohsi": {"_count": 1}}}, "ube": {"_count": 1, "cafru": {"_count": 1, "oyt": {"_count": 1}}}, "cafru": {"_count": 1, "oyt": {"_count": 1, "on": {"_count": 1}}}, "wohsi": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Breathing": {"_count": 6, "very": {"_count": 2, "fast": {"_count": 2}}, "heavily": {"_count": 1, "Hagrid": {"_count": 1}}, "hard": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "fast": {"_count": 1, "and": {"_count": 1}}}, "mirrors": {"_count": 2, "trick": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}}, "reflections": {"_count": 6, "were": {"_count": 1, "so": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 1, "Dumbledore": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "existed": {"_count": 8, "only": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 1, "Dumbledore": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "Voldemorts": {"_count": 1}}}, "edging": {"_count": 15, "a": {"_count": 1, "little": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "further": {"_count": 1, "forward": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "awkwardly": {"_count": 1, "along": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "away": {"_count": 2, "from": {"_count": 2}}, "through": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "nearer": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 2, "Lupin": {"_count": 1}, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "slowly": {"_count": 1, "backward": {"_count": 1}}}, "touching": {"_count": 26, "that": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 6, "sloping": {"_count": 1}, "wand": {"_count": 1}, "parchment": {"_count": 1}, "floor": {"_count": 1}, "necklace": {"_count": 1}, "Mark": {"_count": 1}}, "her": {"_count": 2, "steakandkidney": {"_count": 1}, "precious": {"_count": 1}}, "nothing": {"_count": 1, "himself": {"_count": 1}}, "them": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "sneered": {"_count": 1, "Snape": {"_count": 1}}, "you": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 1, "when": {"_count": 1}}, "Snape": {"_count": 1, "sneered": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "him": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Slughorn": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "Severus": {"_count": 1, "said": {"_count": 1}}}, "hungrily": {"_count": 7, "back": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "edging": {"_count": 1, "around": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "ache": {"_count": 6, "inside": {"_count": 1, "him": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "hunger": {"_count": 1}}}, "sadness": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "whatever": {"_count": 1}}, "filled": {"_count": 1, "his": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "mingled": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 1, "think": {"_count": 1}}, "in": {"_count": 1, "him": {"_count": 1}}}, "fade": {"_count": 7, "and": {"_count": 2, "he": {"_count": 1}, "his": {"_count": 1}}, "from": {"_count": 2, "blue": {"_count": 1}, "the": {"_count": 1}}, "entirely": {"_count": 1, "Ron": {"_count": 1}}, "away": {"_count": 1, "The": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "distant": {"_count": 98, "noise": {"_count": 2, "brought": {"_count": 1}, "of": {"_count": 1}}, "shout": {"_count": 1, "": {"_count": 1}}, "breath": {"_count": 1, "of": {"_count": 1}}, "music": {"_count": 1, "stopped": {"_count": 1}}, "rumble": {"_count": 2, "of": {"_count": 2}}, "thunder": {"_count": 1, "told": {"_count": 1}}, "door": {"_count": 1, "slam": {"_count": 1}}, "sounds": {"_count": 3, "of": {"_count": 3}}, "land": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 2}, "shouting": {"_count": 1}}, "sound": {"_count": 1, "of": {"_count": 1}}, "grunting": {"_count": 1, "snores": {"_count": 1}}, "thuds": {"_count": 1, "and": {"_count": 1}}, "creaking": {"_count": 1, "of": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "castle": {"_count": 1, "steps": {"_count": 1}}, "windows": {"_count": 1, "of": {"_count": 1}}, "front": {"_count": 1, "doors": {"_count": 1}}, "roar": {"_count": 1, "of": {"_count": 1}}, "evidence": {"_count": 1, "of": {"_count": 1}}, "chamber": {"_count": 1, "of": {"_count": 1}}, "country": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}, "with": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "corner": {"_count": 5, "with": {"_count": 1}, "": {"_count": 1}, "clearly": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 1}}, "table": {"_count": 1, "with": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "though": {"_count": 1}}, "and": {"_count": 1, "echoing": {"_count": 1}}, "echoing": {"_count": 1, "voice": {"_count": 1}}, "Quidditch": {"_count": 1, "field": {"_count": 1}}, "grumble": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "glimpse": {"_count": 2, "of": {"_count": 2}}, "view": {"_count": 2, "of": {"_count": 2}}, "twittering": {"_count": 2, "of": {"_count": 2}}, "owls": {"_count": 1, "fluttering": {"_count": 1}}, "yells": {"_count": 1, "of": {"_count": 1}}, "wailing": {"_count": 1, "": {"_count": 1}}, "bangs": {"_count": 1, "of": {"_count": 1}}, "footsteps": {"_count": 2, "": {"_count": 1}, "everything": {"_count": 1}}, "rhythmic": {"_count": 1, "rumbling": {"_count": 1}}, "crash": {"_count": 1, "that": {"_count": 1}}, "knock": {"_count": 1, "that": {"_count": 1}}, "cabin": {"_count": 1, "that": {"_count": 1}}, "gates": {"_count": 1, "disappeared": {"_count": 1}}, "rumbling": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "them": {"_count": 1}}, "shed": {"_count": 1, "": {"_count": 1}}, "foot": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "chair": {"_count": 2, "": {"_count": 2}}, "screams": {"_count": 1, "": {"_count": 1}}, "lights": {"_count": 2, "of": {"_count": 1}, "growing": {"_count": 1}}, "vibrations": {"_count": 1, "of": {"_count": 1}}, "banks": {"_count": 1, "in": {"_count": 1}}, "light": {"_count": 1, "of": {"_count": 1}}, "fight": {"_count": 1, "and": {"_count": 1}}, "phoenix": {"_count": 1, "song": {"_count": 1}}, "echo": {"_count": 1, "of": {"_count": 1}}, "boundary": {"_count": 2, "of": {"_count": 2}}, "black": {"_count": 1, "door": {"_count": 1}}, "screaming": {"_count": 1, "filled": {"_count": 1}}, "square": {"_count": 1, "": {"_count": 1}}, "church": {"_count": 1, "bells": {"_count": 1}}, "crackles": {"_count": 1, "of": {"_count": 1}}, "village": {"_count": 1, "sought": {"_count": 1}}, "storm": {"_count": 1, "that": {"_count": 1}}, "rushing": {"_count": 1, "of": {"_count": 1}}, "bank": {"_count": 1, "": {"_count": 1}}, "mountains": {"_count": 1, "": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "scream": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "bursts": {"_count": 1, "of": {"_count": 1}}, "skyline": {"_count": 1, "": {"_count": 1}}, "Petunia": {"_count": 1, "now": {"_count": 1}}}, "crossly": {"_count": 15, "": {"_count": 10, ".": {"_count": 10}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "but": {"_count": 1, "followed": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "waving": {"_count": 1, "her": {"_count": 1}}}, "shows": {"_count": 23, "dead": {"_count": 1, "people": {"_count": 1}}, "the": {"_count": 1, "future": {"_count": 1}}, "me": {"_count": 3, "my": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 1}}, "us": {"_count": 3, "all": {"_count": 1}, "what": {"_count": 1}, "nothing": {"_count": 1}}, "is": {"_count": 1, "real": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "himself": {"_count": 2, "most": {"_count": 1}, "willing": {"_count": 1}}, "moral": {"_count": 1, "fiber": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "invisible": {"_count": 1, "people": {"_count": 1}}, "For": {"_count": 1, "our": {"_count": 1}}, "Harry": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 1, "living": {"_count": 1}}, "signs": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "even": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Shame": {"_count": 11, "about": {"_count": 1, "not": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "it": {"_count": 1, "doesnt": {"_count": 1}}, "his": {"_count": 1, "mother": {"_count": 1}}, "he": {"_count": 3, "couldnt": {"_count": 1}, "was": {"_count": 1}, "wasnt": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "you": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "yawned": {"_count": 1, "Ron": {"_count": 1}}}, "feared": {"_count": 29, "most": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 1, "might": {"_count": 1}}, "to": {"_count": 1, "speak": {"_count": 1}}, "that": {"_count": 4, "the": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "you": {"_count": 1}}, "by": {"_count": 1, "common": {"_count": 1}}, "Dark": {"_count": 1, "wizard": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 2, "would": {"_count": 2}}, "always": {"_count": 1, "persecuted": {"_count": 1}}, "and": {"_count": 2, "whenever": {"_count": 1}, "whatever": {"_count": 1}}, "the": {"_count": 1, "uses": {"_count": 1}}, "above": {"_count": 1, "all": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "my": {"_count": 1, "interference": {"_count": 1}}, "but": {"_count": 1, "Bring": {"_count": 1}}, "from": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "using": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "me": {"_count": 1, "and": {"_count": 1}}}, "retracing": {"_count": 2, "Harrys": {"_count": 1, "route": {"_count": 1}}, "Cedrics": {"_count": 1, "steps": {"_count": 1}}}, "route": {"_count": 9, "from": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "started": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "too": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}}, "IVo": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "moaning": {"_count": 11, "that": {"_count": 1, "his": {"_count": 1}}, "moping": {"_count": 1, "Myrtle": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "with": {"_count": 1, "agony": {"_count": 1}}, "still": {"_count": 1, "cradling": {"_count": 1}}, "about": {"_count": 1, "something": {"_count": 1}}, "his": {"_count": 1, "nose": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "and": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "paisley": {"_count": 2, "pajamas": {"_count": 2, "": {"_count": 1}, "Ron": {"_count": 1}}}, "transfixed": {"_count": 18, "at": {"_count": 5, "his": {"_count": 1}, "Professor": {"_count": 2}, "MadEye": {"_count": 1}, "Hagrids": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "with": {"_count": 2, "horror": {"_count": 2}}, "by": {"_count": 3, "the": {"_count": 2}, "Moodys": {"_count": 1}}, "Frank": {"_count": 1, "stared": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "until": {"_count": 1, "Professor": {"_count": 1}}, "the": {"_count": 1, "sword": {"_count": 1}}}, "image": {"_count": 20, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 14, "the": {"_count": 5}, "himself": {"_count": 2}, "you": {"_count": 1}, "her": {"_count": 1}, "Hagrid": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}, "serene": {"_count": 1}, "Phineas": {"_count": 1}}, "came": {"_count": 1, "floating": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "after": {"_count": 1, "image": {"_count": 1}}, "was": {"_count": 2, "racing": {"_count": 1}, "still": {"_count": 1}}}, "Boy": {"_count": 37, "": {"_count": 7, "!": {"_count": 1}, ".": {"_count": 6}}, "in": {"_count": 2, "the": {"_count": 2}}, "Five": {"_count": 1, "points": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "badge": {"_count": 3, "to": {"_count": 2}, "is": {"_count": 1}}, "Percy": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 4, "Girl": {"_count": 3}, "girl": {"_count": 1}}, "And": {"_count": 1, "then": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "ship": {"_count": 1, "in": {"_count": 1}}, "Who": {"_count": 12, "Lived": {"_count": 10}, "Scored": {"_count": 1}, "well": {"_count": 1}}, "winner": {"_count": 1, "of": {"_count": 1}}, "Prefect": {"_count": 1, "Winner": {"_count": 1}}}, "discussion": {"_count": 20, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "of": {"_count": 3, "tactics": {"_count": 1}, "Sirius": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 2, "Basil": {"_count": 1}, "Ron": {"_count": 1}}, "about": {"_count": 5, "goblins": {"_count": 1}, "Parvatis": {"_count": 1}, "how": {"_count": 2}, "which": {"_count": 1}}, "to": {"_count": 1, "an": {"_count": 1}}, "yes": {"_count": 1, "hes": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "getting": {"_count": 1}}, "an": {"_count": 1, "it": {"_count": 1}}, "both": {"_count": 1, "such": {"_count": 1}}}, "shaves": {"_count": 1, "already": {"_count": 1, "": {"_count": 1}}}, "grandfathers": {"_count": 1, "nodding": {"_count": 1, "happily": {"_count": 1}}}, "Except": {"_count": 13, "So": {"_count": 1, "back": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 2}, "one": {"_count": 1}, "your": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "put": {"_count": 1, "your": {"_count": 1}}, "the": {"_count": 1, "eyes": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "without": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}}, "insides": {"_count": 47, "had": {"_count": 4, "turned": {"_count": 1}, "been": {"_count": 1}, "come": {"_count": 1}, "become": {"_count": 1}}, "Fourth": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 9, "aching": {"_count": 1}, "burning": {"_count": 1}, "squirming": {"_count": 2}, "pulsing": {"_count": 1}, "melting": {"_count": 1}, "boiling": {"_count": 1}, "suddenly": {"_count": 1}, "on": {"_count": 1}}, "churning": {"_count": 1, "he": {"_count": 1}}, "started": {"_count": 1, "writhing": {"_count": 1}}, "did": {"_count": 1, "a": {"_count": 1}}, "dont": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "lurched": {"_count": 1, "": {"_count": 1}}, "fog": {"_count": 1, "starting": {"_count": 1}}, "squirmed": {"_count": 2, "uncomfortably": {"_count": 1}, "at": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "at": {"_count": 1, "all": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "went": {"_count": 1, "cold": {"_count": 1}}, "writhed": {"_count": 1, "with": {"_count": 1}}, "burn": {"_count": 1, "with": {"_count": 1}}, "like": {"_count": 1, "needles": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "reinflated": {"_count": 1, "so": {"_count": 1}}, "boiling": {"_count": 1, "at": {"_count": 1}}, "writhe": {"_count": 1, "and": {"_count": 1}}, "aching": {"_count": 1, "with": {"_count": 1}}, "plummeted": {"_count": 1, "sickeningly": {"_count": 1}}, "blazing": {"_count": 1, "in": {"_count": 1}}, "burning": {"_count": 1, "again": {"_count": 1}}, "Hot": {"_count": 1, "blood": {"_count": 1}}, "clenched": {"_count": 1, "like": {"_count": 1}}, "contracted": {"_count": 1, "with": {"_count": 1}}, "burned": {"_count": 1, "": {"_count": 1}}, "crawled": {"_count": 1, "unpleasantly": {"_count": 1}}, "already": {"_count": 1, "uncomfortable": {"_count": 1}}, "turned": {"_count": 1, "over": {"_count": 1}}, "that": {"_count": 1, "expressed": {"_count": 1}}}, "Sitting": {"_count": 7, "on": {"_count": 3, "one": {"_count": 2}, "top": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "bolt": {"_count": 1, "upright": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Strange": {"_count": 3, "how": {"_count": 1, "nearsighted": {"_count": 1}}, "likenesses": {"_count": 1, "he": {"_count": 1}}, "man": {"_count": 1, "isnt": {"_count": 1}}}, "nearsighted": {"_count": 1, "being": {"_count": 1, "invisible": {"_count": 1}}}, "discovered": {"_count": 58, "the": {"_count": 6, "delights": {"_count": 1}, "existence": {"_count": 2}, "sharp": {"_count": 1}, "connection": {"_count": 1}, "loss": {"_count": 1}}, "and": {"_count": 2, "blamed": {"_count": 1}, "Riddles": {"_count": 1}}, "in": {"_count": 4, "a": {"_count": 1}, "such": {"_count": 1}, "the": {"_count": 1}, "Godrics": {"_count": 1}}, "hanging": {"_count": 1, "around": {"_count": 1}}, "this": {"_count": 2, "book": {"_count": 1}, "boy": {"_count": 1}}, "attacking": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 2, "present": {"_count": 1}, "week": {"_count": 1}}, "however": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "moments": {"_count": 1, "later": {"_count": 1}}, "what": {"_count": 1, "they": {"_count": 1}}, "six": {"_count": 1, "plots": {"_count": 1}}, "that": {"_count": 10, "the": {"_count": 4}, "someone": {"_count": 1}, "they": {"_count": 1}, "youve": {"_count": 1}, "he": {"_count": 3}}, "it": {"_count": 4, "to": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 1}, "after": {"_count": 1}}, "holding": {"_count": 1, "Harrys": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "by": {"_count": 1, "any": {"_count": 1}}, "dead": {"_count": 1, "in": {"_count": 1}}, "within": {"_count": 1, "this": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "Dumbledore": {"_count": 1, "resumed": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "hear": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "hiding": {"_count": 1, "under": {"_count": 1}}, "your": {"_count": 1, "secret": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "eight": {"_count": 1, "uses": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "one": {"_count": 1, "Horcrux": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "secret": {"_count": 1}}, "inside": {"_count": 1, "Hogwarts": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}}, "delights": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Mirror": {"_count": 8, "of": {"_count": 7, "Erised": {"_count": 7}}, "will": {"_count": 1, "be": {"_count": 1}}}, "happiest": {"_count": 7, "man": {"_count": 1, "on": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "hes": {"_count": 1, "ever": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 1, "Cho": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}}, "Does": {"_count": 34, "that": {"_count": 4, "help": {"_count": 1}, "mean": {"_count": 2}, "make": {"_count": 1}}, "it": {"_count": 9, "hurt": {"_count": 2}, "matter": {"_count": 2}, "er": {"_count": 1}, "involve": {"_count": 1}, "work": {"_count": 1}, "make": {"_count": 2}}, "he": {"_count": 9, "have": {"_count": 1}, "still": {"_count": 2}, "": {"_count": 3}, "now": {"_count": 1}, "think": {"_count": 1}, "mean": {"_count": 1}}, "the": {"_count": 2, "hippogriff": {"_count": 1}, "wand": {"_count": 1}}, "yours": {"_count": 1, "wail": {"_count": 1}}, "this": {"_count": 3, "mean": {"_count": 3}}, "Lupin": {"_count": 1, "know": {"_count": 1}}, "anyone": {"_count": 2, "really": {"_count": 1}, "else": {"_count": 1}}, "Voldemort": {"_count": 1, "know": {"_count": 1}}, "Skeeter": {"_count": 2, "really": {"_count": 1}, "believe": {"_count": 1}}}, "deepest": {"_count": 22, "most": {"_count": 1, "desperate": {"_count": 1}}, "shame": {"_count": 1, "": {"_count": 1}}, "gloom": {"_count": 1, "Hermione": {"_count": 1}}, "fears": {"_count": 1, "her": {"_count": 1}}, "its": {"_count": 1, "most": {"_count": 1}}, "blue": {"_count": 1, "": {"_count": 1}}, "loathing": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "black": {"_count": 1, "": {"_count": 1}}, "disgust": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "sleeps": {"_count": 1}}, "remorse": {"_count": 1, "when": {"_count": 1}}, "layer": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "level": {"_count": 1, "where": {"_count": 1}}, "passageways": {"_count": 1, "": {"_count": 1}}, "vaults": {"_count": 1, "in": {"_count": 1}}, "secrets": {"_count": 1, "of": {"_count": 1}}, "mysteries": {"_count": 1, "of": {"_count": 1}}, "nature": {"_count": 1, "is": {"_count": 1}}, "laws": {"_count": 1, "of": {"_count": 1}}}, "desire": {"_count": 46, "of": {"_count": 1, "our": {"_count": 1}}, "to": {"_count": 31, "be": {"_count": 1}, "break": {"_count": 1}, "survive": {"_count": 1}, "hear": {"_count": 1}, "laugh": {"_count": 4}, "join": {"_count": 1}, "kill": {"_count": 1}, "impress": {"_count": 1}, "kick": {"_count": 1}, "repeat": {"_count": 1}, "reach": {"_count": 1}, "find": {"_count": 1}, "run": {"_count": 1}, "bring": {"_count": 1}, "do": {"_count": 3}, "hurt": {"_count": 1}, "finish": {"_count": 1}, "reveal": {"_count": 1}, "become": {"_count": 2}, "return": {"_count": 1}, "seize": {"_count": 1}, "know": {"_count": 1}, "doubt": {"_count": 1}, "possess": {"_count": 1}, "make": {"_count": 1}}, "for": {"_count": 7, "independent": {"_count": 1}, "this": {"_count": 1}, "brain": {"_count": 1}, "revenge": {"_count": 1}, "so": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "it": {"_count": 1, "we": {"_count": 1}}, "what": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "possible": {"_count": 1}}}, "Ronald": {"_count": 20, "Weasley": {"_count": 11, "who": {"_count": 1}, "and": {"_count": 4}, "": {"_count": 3}, "said": {"_count": 1}, "Gryffindor": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 1}, "?": {"_count": 1}}, "Weasleys": {"_count": 1, "patchy": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "Bilius": {"_count": 1, "Weasley": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "have": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}}, "overshadowed": {"_count": 2, "by": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sees": {"_count": 17, "himself": {"_count": 1, "standing": {"_count": 1}}, "you": {"_count": 6, "dripping": {"_count": 1}, "it": {"_count": 1}, "on": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}}, "me": {"_count": 1, "anywhere": {"_count": 1}}, "fit": {"_count": 1, "to": {"_count": 1}}, "past": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 1}, "!": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 1}, "go": {"_count": 1}}, "creatures": {"_count": 1, "like": {"_count": 1}}}, "knowledge": {"_count": 43, "or": {"_count": 2, "truth": {"_count": 1}, "consent": {"_count": 1}}, "that": {"_count": 12, "he": {"_count": 3}, "Snape": {"_count": 2}, "they": {"_count": 1}, "all": {"_count": 1}, "she": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledores": {"_count": 1}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 3}, "magic": {"_count": 1}, "how": {"_count": 1}, "those": {"_count": 1}, "his": {"_count": 1}}, "amassed": {"_count": 1, "by": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "for": {"_count": 1, "fourteen": {"_count": 1}}, "and": {"_count": 3, "approval": {"_count": 1}, "secrets": {"_count": 1}, "magic": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "foolproof": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "would": {"_count": 1, "be": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "had": {"_count": 1, "made": {"_count": 1}}, "But": {"_count": 1, "and": {"_count": 1}}, "can": {"_count": 1, "only": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "including": {"_count": 1, "his": {"_count": 1}}, "negligible": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "to": {"_count": 1}}, "As": {"_count": 1, "they": {"_count": 1}}, "remained": {"_count": 1, "woefully": {"_count": 1}}}, "Men": {"_count": 5, "have": {"_count": 1, "wasted": {"_count": 1}}, "clicked": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "bright": {"_count": 1}}, "were": {"_count": 1, "shouting": {"_count": 1}}, "Who": {"_count": 1, "Love": {"_count": 1}}}, "wasted": {"_count": 19, "away": {"_count": 1, "before": {"_count": 1}}, "wrist": {"_count": 1, "forcing": {"_count": 1}}, "their": {"_count": 1, "breath": {"_count": 1}}, "however": {"_count": 1, "if": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "no": {"_count": 1, "time": {"_count": 1}}, "time": {"_count": 3, "worrying": {"_count": 1}, "and": {"_count": 1}, "acting": {"_count": 1}}, "months": {"_count": 1, "on": {"_count": 1}}, "so": {"_count": 2, "much": {"_count": 1}, "many": {"_count": 1}}, "oncehandsome": {"_count": 1, "face": {"_count": 1}}, "and": {"_count": 1, "secondly": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "on": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "arm": {"_count": 1, "pointing": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}}, "entranced": {"_count": 2, "by": {"_count": 1, "what": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "prepared": {"_count": 53, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 36, "fight": {"_count": 1}, "take": {"_count": 7}, "bet": {"_count": 4}, "leave": {"_count": 1}, "die": {"_count": 2}, "play": {"_count": 1}, "overlook": {"_count": 1}, "risk": {"_count": 2}, "duel": {"_count": 1}, "believe": {"_count": 1}, "do": {"_count": 1}, "I": {"_count": 1}, "mount": {"_count": 1}, "drag": {"_count": 1}, "persuade": {"_count": 1}, "grant": {"_count": 1}, "talk": {"_count": 1}, "reminisce": {"_count": 1}, "hand": {"_count": 1}, "murder": {"_count": 1}, "drink": {"_count": 1}, "listen": {"_count": 1}, "admit": {"_count": 1}, "kill": {"_count": 1}, "stand": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 2}, "whats": {"_count": 1}, "the": {"_count": 1}}, "food": {"_count": 1, "as": {"_count": 1}}, "your": {"_count": 1, "recipes": {"_count": 1}}, "me": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 1, "Polyjuice": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "statement": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "than": {"_count": 1, "we": {"_count": 1}}, "but": {"_count": 1, "which": {"_count": 1}}}, "admirable": {"_count": 6, "cloak": {"_count": 1, "back": {"_count": 1}}, "haste": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "and": {"_count": 1, "brave": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "brother": {"_count": 1, "": {"_count": 1}}}, "woolen": {"_count": 5, "socks": {"_count": 2, "": {"_count": 2}}, "dressing": {"_count": 2, "gown": {"_count": 2}}, "hat": {"_count": 1, "which": {"_count": 1}}}, "insist": {"_count": 13, "on": {"_count": 1, "giving": {"_count": 1}}, "they": {"_count": 1, "just": {"_count": 1}}, "that": {"_count": 3, "they": {"_count": 1}, "you": {"_count": 1}, "we": {"_count": 1}}, "My": {"_count": 1, "apologies": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "upon": {"_count": 3, "resubmitting": {"_count": 1}, "this": {"_count": 1}, "accompanying": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}}, "truthful": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "voice": {"_count": 1, "inside": {"_count": 1}}}, "shoved": {"_count": 26, "Scabbers": {"_count": 1, "off": {"_count": 1}}, "handfuls": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}, "some": {"_count": 1, "gold": {"_count": 1}}, "Crookshanks": {"_count": 1, "angrily": {"_count": 1}}, "his": {"_count": 3, "own": {"_count": 1}, "bag": {"_count": 1}, "wand": {"_count": 1}}, "the": {"_count": 5, "letter": {"_count": 1}, "Daily": {"_count": 1}, "cushions": {"_count": 1}, "Marauders": {"_count": 1}, "cup": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "food": {"_count": 1, "into": {"_count": 1}}, "Harry": {"_count": 2, "away": {"_count": 1}, "forward": {"_count": 1}}, "under": {"_count": 1, "your": {"_count": 1}}, "them": {"_count": 2, "under": {"_count": 1}, "on": {"_count": 1}}, "it": {"_count": 2, "in": {"_count": 1}, "up": {"_count": 1}}, "aside": {"_count": 1, "an": {"_count": 1}}, "him": {"_count": 1, "back": {"_count": 1}}, "and": {"_count": 1, "kicked": {"_count": 1}}, "me": {"_count": 1, "through": {"_count": 1}}}, "pillow": {"_count": 24, "it": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "?": {"_count": 2}}, "for": {"_count": 2, "what": {"_count": 1}, "his": {"_count": 1}}, "any": {"_count": 1, "fool": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "exceptionally": {"_count": 1, "glad": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 2}}, "I": {"_count": 1, "I": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "was": {"_count": 1}}}, "personal": {"_count": 31, "question": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "insult": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "interest": {"_count": 1, "she": {"_count": 1}}, "prize": {"_count": 1, "money": {"_count": 1}}, "chart": {"_count": 1, "she": {"_count": 1}}, "assistant": {"_count": 3, "and": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}}, "shock": {"_count": 1, "with": {"_count": 1}}, "loss": {"_count": 1, "": {"_count": 1}}, "history": {"_count": 1, "lost": {"_count": 1}}, "risk": {"_count": 2, "": {"_count": 2}}, "safety": {"_count": 2, "was": {"_count": 2}}, "effects": {"_count": 2, "around": {"_count": 1}, "were": {"_count": 1}}, "control": {"_count": 1, "": {"_count": 1}}, "defense": {"_count": 1, "that": {"_count": 1}}, "possessions": {"_count": 1, "": {"_count": 1}}, "wrong": {"_count": 1, "we": {"_count": 1}}, "friendship": {"_count": 1, "with": {"_count": 1}}, "items": {"_count": 1, "in": {"_count": 1}}, "responsibility": {"_count": 1, "for": {"_count": 1}}, "appearance": {"_count": 1, "were": {"_count": 1}}, "bequests": {"_count": 1, "": {"_count": 1}}, "glory": {"_count": 1, "how": {"_count": 1}}, "gain": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}}, "NICHOLAS": {"_count": 2, "FLAMBL": {"_count": 1, "Dumbledore": {"_count": 1}}, "DE": {"_count": 1, "MIMSYPORPINGTON": {"_count": 1}}}, "FLAMBL": {"_count": 1, "Dumbledore": {"_count": 1, "had": {"_count": 1}}}, "convinced": {"_count": 57, "Harry": {"_count": 3, "not": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 2, "Ron": {"_count": 1}, "allowed": {"_count": 1}}, "they": {"_count": 1, "saw": {"_count": 1}}, "that": {"_count": 22, "Harry": {"_count": 1}, "it": {"_count": 1}, "she": {"_count": 2}, "Hagrid": {"_count": 1}, "he": {"_count": 4}, "Snape": {"_count": 1}, "this": {"_count": 1}, "they": {"_count": 3}, "to": {"_count": 1}, "either": {"_count": 1}, "every": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 2}, "Snapes": {"_count": 1}, "somebody": {"_count": 1}}, "however": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "myself": {"_count": 1, "that": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "his": {"_count": 1, "loudly": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "of": {"_count": 4, "his": {"_count": 2}, "it": {"_count": 2}}, "Hermione": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "at": {"_count": 1, "one": {"_count": 1}}, "he": {"_count": 4, "had": {"_count": 2}, "was": {"_count": 1}, "intended": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 1, "Neville": {"_count": 1}}, "herself": {"_count": 1, "that": {"_count": 1}}, "Snapes": {"_count": 1, "in": {"_count": 1}}, "Fear": {"_count": 1, "lapped": {"_count": 1}}, "theyre": {"_count": 1, "really": {"_count": 1}}, "themselves": {"_count": 1, "that": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}}, "nightmares": {"_count": 8, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "three": {"_count": 1}}, "without": {"_count": 1, "dwelling": {"_count": 1}}, "about": {"_count": 1, "Cedric": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}}, "disappearing": {"_count": 17, "in": {"_count": 1, "a": {"_count": 1}}, "under": {"_count": 1, "it": {"_count": 1}}, "from": {"_count": 1, "one": {"_count": 1}}, "through": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "skin": {"_count": 1}}, "well": {"_count": 1, "you": {"_count": 1}}, "like": {"_count": 1, "mad": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "dying": {"_count": 1}}}, "roaming": {"_count": 2, "the": {"_count": 2, "school": {"_count": 2}}}, "nights": {"_count": 24, "in": {"_count": 1, "a": {"_count": 1}}, "surprises": {"_count": 1, "werent": {"_count": 1}}, "sleep": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "darker": {"_count": 1, "but": {"_count": 1}}, "events": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "hunting": {"_count": 1, "with": {"_count": 1}}, "ago": {"_count": 1, "He": {"_count": 1}}, "detention": {"_count": 1, "I": {"_count": 1}}, "Quidditch": {"_count": 1, "practice": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "meal": {"_count": 1, "should": {"_count": 1}}, "with": {"_count": 1, "stupid": {"_count": 1}}, "conversation": {"_count": 1, "came": {"_count": 1}}, "lesson": {"_count": 1, "but": {"_count": 1}}, "work": {"_count": 1, "Harry": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "we": {"_count": 1}}, "first": {"_count": 1, "stars": {"_count": 1}}, "of": {"_count": 1, "little": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}}, "disappointment": {"_count": 25, "that": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "Riddle": {"_count": 1, "led": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "fairly": {"_count": 1, "well": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 3, "guilt": {"_count": 1}, "panic": {"_count": 1}, "understood": {"_count": 1}}, "washed": {"_count": 1, "over": {"_count": 1}}, "etched": {"_count": 1, "in": {"_count": 1}}, "Cormac": {"_count": 1, "McLaggen": {"_count": 1}}, "was": {"_count": 3, "perfectly": {"_count": 1}, "worse": {"_count": 1}, "mirrored": {"_count": 1}}, "or": {"_count": 1, "anger": {"_count": 1}}, "welled": {"_count": 1, "up": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}}, "skimming": {"_count": 4, "through": {"_count": 2, "books": {"_count": 1}, "all": {"_count": 1}}, "eagerly": {"_count": 1, "through": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "breaks": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "whatever": {"_count": 1, "hes": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "seventeen": {"_count": 1}}, "protective": {"_count": 1, "enchantments": {"_count": 1}}, "between": {"_count": 1, "clouds": {"_count": 1}}}, "endless": {"_count": 11, "rain": {"_count": 1, "that": {"_count": 1}}, "blue": {"_count": 1, "under": {"_count": 1}}, "battle": {"_count": 1, "against": {"_count": 1}}, "legs": {"_count": 1, "waving": {"_count": 1}}, "slimy": {"_count": 1, "dark": {"_count": 1}}, "discussions": {"_count": 1, "of": {"_count": 1}}, "Quidditch": {"_count": 1, "talk": {"_count": 1}}, "space": {"_count": 1, "below": {"_count": 1}}, "glasses": {"_count": 1, "of": {"_count": 1}}, "reminiscences": {"_count": 1, "of": {"_count": 1}}, "evidence": {"_count": 1, "said": {"_count": 1}}}, "replaced": {"_count": 46, "the": {"_count": 7, "snow": {"_count": 1}, "top": {"_count": 1}, "instrument": {"_count": 1}, "nowuseless": {"_count": 1}, "sword": {"_count": 1}, "A": {"_count": 1}, "House": {"_count": 1}}, "by": {"_count": 15, "neat": {"_count": 1}, "a": {"_count": 4}, "another": {"_count": 1}, "Sturgis": {"_count": 1}, "Course": {"_count": 1}, "the": {"_count": 1}, "Albus": {"_count": 1}, "cold": {"_count": 1}, "an": {"_count": 1}, "two": {"_count": 2}, "Pius": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "puddings": {"_count": 1}}, "it": {"_count": 4, "it": {"_count": 2}, "hastily": {"_count": 1}, "upon": {"_count": 1}}, "instantly": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 5, "eye": {"_count": 1}, "wand": {"_count": 2}, "father": {"_count": 2}}, "them": {"_count": 3, "carefully": {"_count": 1}, "with": {"_count": 1}, "in": {"_count": 1}}, "Bills": {"_count": 1, "his": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "instead": {"_count": 1, "with": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "or": {"_count": 1, "updated": {"_count": 1}}, "number": {"_count": 1, "twelve": {"_count": 1}}, "Mr": {"_count": 1, "Weasleys": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "dampen": {"_count": 1, "his": {"_count": 1, "spirits": {"_count": 1}}}, "fanatic": {"_count": 1, "but": {"_count": 1, "Harry": {"_count": 1}}}, "overtake": {"_count": 3, "Slytherin": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "brother": {"_count": 1}}}, "fewer": {"_count": 15, "nightmares": {"_count": 1, "when": {"_count": 1}}, "than": {"_count": 5, "yesterday": {"_count": 1}, "four": {"_count": 1}, "six": {"_count": 1}, "ten": {"_count": 1}, "twenty": {"_count": 1}}, "Support": {"_count": 1, "Cedric": {"_count": 1}}, "and": {"_count": 1, "fewer": {"_count": 1}}, "laughs": {"_count": 1, "out": {"_count": 1}}, "with": {"_count": 1, "each": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "visits": {"_count": 1, "from": {"_count": 1}}, "souls": {"_count": 1, "are": {"_count": 1}}, "families": {"_count": 1, "are": {"_count": 1}}}, "muddy": {"_count": 24, "practice": {"_count": 1, "session": {"_count": 1}}, "and": {"_count": 1, "extremely": {"_count": 1}}, "streams": {"_count": 1, "and": {"_count": 1}}, "puddle": {"_count": 1, "that": {"_count": 1}}, "footprints": {"_count": 2, "on": {"_count": 1}, "with": {"_count": 1}}, "Wood": {"_count": 1, "who": {"_count": 1}}, "grounds": {"_count": 1, "were": {"_count": 1}}, "hands": {"_count": 1, "which": {"_count": 1}}, "potato": {"_count": 1, "on": {"_count": 1}}, "banks": {"_count": 1, "and": {"_count": 1}}, "water": {"_count": 2, "ahead": {"_count": 1}, "as": {"_count": 1}}, "paw": {"_count": 1, "print": {"_count": 1}}, "lawns": {"_count": 1, "not": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "greenishbrown": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "dolphinsized": {"_count": 1, "footprints": {"_count": 1}}, "pond": {"_count": 1, "": {"_count": 1}}, "backdrop": {"_count": 1, "": {"_count": 1}}, "Polyjuice": {"_count": 1, "Potion": {"_count": 1}}, "river": {"_count": 1, "beside": {"_count": 1}}}, "divebombing": {"_count": 1, "each": {"_count": 1, "other": {"_count": 1}}}, "spluttered": {"_count": 17, "through": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "gasped": {"_count": 1}}, "Harry": {"_count": 2, "but": {"_count": 2}}, "the": {"_count": 1, "Prime": {"_count": 1}}, "Mundungus": {"_count": 1, "who": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "The": {"_count": 1, "Quibbler": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "into": {"_count": 1, "silence": {"_count": 1}}, "Saved": {"_count": 1, "": {"_count": 1}}}, "mud": {"_count": 31, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "to": {"_count": 2, "you": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 5, "rolled": {"_count": 1}, "accidentally": {"_count": 1}, "looking": {"_count": 1}, "blood": {"_count": 1}, "Dobbys": {"_count": 1}}, "bubbling": {"_count": 1, "sluggishly": {"_count": 1}}, "track": {"_count": 1, "where": {"_count": 1}}, "wind": {"_count": 1, "or": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 1, "head": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "hit": {"_count": 2, "him": {"_count": 2}}, "littered": {"_count": 1, "with": {"_count": 1}}, "now": {"_count": 1, "which": {"_count": 1}}, "in": {"_count": 1, "all": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "swimming": {"_count": 1}}}, "Whens": {"_count": 2, "he": {"_count": 1, "ever": {"_count": 1}}, "your": {"_count": 1, "next": {"_count": 1}}}, "refereed": {"_count": 1, "a": {"_count": 1, "Quidditch": {"_count": 1}}}, "Chess": {"_count": 1, "was": {"_count": 1, "the": {"_count": 1}}}, "Speaking": {"_count": 8, "quietly": {"_count": 1, "so": {"_count": 1}}, "in": {"_count": 1, "Peeves": {"_count": 1}}, "of": {"_count": 4, "dogs": {"_count": 1}, "centaurs": {"_count": 1}, "the": {"_count": 1}, "Dumbledore": {"_count": 1}}, "to": {"_count": 1, "reporters": {"_count": 1}}, "as": {"_count": 1, "your": {"_count": 1}}}, "sinister": {"_count": 16, "desire": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "tinkling": {"_count": 1, "tune": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "winged": {"_count": 1, "horses": {"_count": 1}}, "voheeeeeeeeee": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "objects": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "lived": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "movements": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "those": {"_count": 1}}}, "referee": {"_count": 7, "": {"_count": 4, ".": {"_count": 1}, "?": {"_count": 1}, "!": {"_count": 2}}, "your": {"_count": 1, "next": {"_count": 1}}, "acclaimed": {"_count": 1, "Chairwizard": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}}, "Pretend": {"_count": 1, "to": {"_count": 1, "break": {"_count": 1}}}, "climb": {"_count": 32, "through": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 9, "next": {"_count": 1}, "castle": {"_count": 1}, "stairs": {"_count": 5}, "marble": {"_count": 2}}, "up": {"_count": 6, "there": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}, "now": {"_count": 1}, "come": {"_count": 1}, "onto": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 2, "himself": {"_count": 1}, "herself": {"_count": 1}}, "was": {"_count": 1, "just": {"_count": 1}}, "fast": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "Stoatshead": {"_count": 1, "Hill": {"_count": 1}}, "laboriously": {"_count": 1, "toward": {"_count": 1}}, "that": {"_count": 1, "ladder": {"_count": 1}}, "a": {"_count": 1, "wall": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "slowly": {"_count": 1, "up": {"_count": 1}}, "higher": {"_count": 1, "and": {"_count": 1}}}, "LegLocker": {"_count": 3, "Curse": {"_count": 3, "": {"_count": 2}, "that": {"_count": 1}}}, "bunny": {"_count": 2, "hop": {"_count": 1, "all": {"_count": 1}}, "rabbit": {"_count": 1, "": {"_count": 1}}}, "hop": {"_count": 4, "all": {"_count": 1, "the": {"_count": 1}}, "realistically": {"_count": 1, "in": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "along": {"_count": 1, "and": {"_count": 1}}}, "countercurse": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "trying": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "why": {"_count": 1, "am": {"_count": 1}}, "Harry": {"_count": 1, "taught": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "urged": {"_count": 18, "Neville": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Ginny": {"_count": 1, "forward": {"_count": 1}}, "his": {"_count": 2, "broom": {"_count": 2}}, "the": {"_count": 3, "Firebolt": {"_count": 2}, "others": {"_count": 1}}, "him": {"_count": 5, "": {"_count": 3}, "but": {"_count": 1}, "as": {"_count": 1}}, "Buckbeak": {"_count": 1, "forward": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 2}}, "Harry": {"_count": 1, "who": {"_count": 1}}}, "Report": {"_count": 2, "him": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}}, "easier": {"_count": 40, "": {"_count": 6, ".": {"_count": 6}}, "than": {"_count": 5, "I": {"_count": 1}, "Conjuring": {"_count": 1}, "arguing": {"_count": 1}, "youd": {"_count": 1}, "falling": {"_count": 1}}, "to": {"_count": 10, "understand": {"_count": 2}, "get": {"_count": 1}, "spot": {"_count": 1}, "keep": {"_count": 2}, "walk": {"_count": 1}, "forgive": {"_count": 1}, "relax": {"_count": 1}, "kill": {"_count": 1}}, "time": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "quieter": {"_count": 1}}, "from": {"_count": 1, "next": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "path": {"_count": 1, "through": {"_count": 1}}, "for": {"_count": 2, "YouKnow": {"_count": 1}, "him": {"_count": 1}}, "if": {"_count": 1, "shed": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "DONT": {"_count": 1, "TALK": {"_count": 1}}, "with": {"_count": 1, "each": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "way": {"_count": 1, "said": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}, "thanks": {"_count": 1, "Ron": {"_count": 1}}, "job": {"_count": 1, "for": {"_count": 1}}}, "choked": {"_count": 44, "out": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "and": {"_count": 4, "said": {"_count": 1}, "she": {"_count": 1}, "spat": {"_count": 1}, "retched": {"_count": 1}}, "the": {"_count": 1, "elf": {"_count": 1}}, "Filch": {"_count": 1, "looking": {"_count": 1}}, "with": {"_count": 1, "tears": {"_count": 1}}, "Tarantallegral": {"_count": 1, "and": {"_count": 1}}, "voice": {"_count": 4, "I": {"_count": 1}, "": {"_count": 2}, "taking": {"_count": 1}}, "Hagrid": {"_count": 3, "wiping": {"_count": 1}, "": {"_count": 1}, "attempting": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "back": {"_count": 1, "laughs": {"_count": 1}}, "his": {"_count": 2, "glasses": {"_count": 1}, "lungs": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}, "my": {"_count": 1, "Lord": {"_count": 1}}, "Mundungus": {"_count": 1, "tears": {"_count": 1}}, "holding": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 1, "sixteen": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "wiping": {"_count": 1, "his": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "Narcissa": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "His": {"_count": 1, "skin": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "Malfoy": {"_count": 1, "as": {"_count": 1}}}, "chose": {"_count": 41, "you": {"_count": 3, "for": {"_count": 1}, "not": {"_count": 1}, "as": {"_count": 1}}, "seats": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 3, "same": {"_count": 1}, "boy": {"_count": 1}, "one": {"_count": 1}}, "not": {"_count": 4, "to": {"_count": 3}, "the": {"_count": 1}}, "a": {"_count": 4, "seat": {"_count": 1}, "very": {"_count": 1}, "path": {"_count": 1}, "secluded": {"_count": 1}}, "that": {"_count": 1, "moment": {"_count": 1}}, "to": {"_count": 13, "watch": {"_count": 1}, "ignore": {"_count": 1}, "make": {"_count": 1}, "wander": {"_count": 1}, "remain": {"_count": 1}, "stage": {"_count": 1}, "aim": {"_count": 1}, "give": {"_count": 1}, "visit": {"_count": 2}, "torture": {"_count": 1}, "speak": {"_count": 1}, "sink": {"_count": 1}}, "it": {"_count": 2, "as": {"_count": 1}, "months": {"_count": 1}}, "his": {"_count": 2, "spot": {"_count": 1}, "own": {"_count": 1}}, "for": {"_count": 1, "its": {"_count": 1}}, "my": {"_count": 1, "feeble": {"_count": 1}}, "death": {"_count": 1, "in": {"_count": 1}}, "Loony": {"_count": 1, "Lovegood": {"_count": 1}}, "this": {"_count": 1, "moment": {"_count": 1}}, "him": {"_count": 1, "he": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}}, "stinking": {"_count": 8, "Slytherin": {"_count": 1, "": {"_count": 1}}, "salmon": {"_count": 1, "": {"_count": 1}}, "cat": {"_count": 2, "Harry": {"_count": 1}, "Theres": {"_count": 1}}, "skin": {"_count": 1, "meant": {"_count": 1}}, "thing": {"_count": 1, "": {"_count": 1}}, "darkgreen": {"_count": 1, "jets": {"_count": 1}}, "Daily": {"_count": 1, "Prophet": {"_count": 1}}}, "\u2018Dumbledore": {"_count": 4, "is": {"_count": 1, "particularly": {"_count": 1}}, "couldnt": {"_count": 1, "find": {"_count": 1}}, "s": {"_count": 1, "man": {"_count": 1}}, "never": {"_count": 1, "seemed": {"_count": 1}}}, "FlamelV": {"_count": 1, "Hermione": {"_count": 1, "jumped": {"_count": 1}}}, "exchange": {"_count": 20, "mystified": {"_count": 1, "looks": {"_count": 1}}, "trip": {"_count": 1, "but": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "the": {"_count": 2, "most": {"_count": 1}, "exasperated": {"_count": 1}}, "a": {"_count": 3, "significant": {"_count": 1}, "word": {"_count": 1}, "worried": {"_count": 1}}, "looks": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "stunned": {"_count": 1, "looks": {"_count": 1}}, "for": {"_count": 5, "a": {"_count": 2}, "for": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "gleeful": {"_count": 1, "looks": {"_count": 1}}, "between": {"_count": 1, "Luna": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "news": {"_count": 1}}}, "mystified": {"_count": 2, "looks": {"_count": 1, "before": {"_count": 1}}, "by": {"_count": 1, "that": {"_count": 1}}}, "dashing": {"_count": 19, "back": {"_count": 2, "an": {"_count": 1}, "into": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "untie": {"_count": 1}, "meet": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 4, "them": {"_count": 2}, "him": {"_count": 2}}, "down": {"_count": 1, "the": {"_count": 1}}, "plumed": {"_count": 1, "hat": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 1, "every": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "into": {"_count": 1, "bathrooms": {"_count": 1}}}, "flicking": {"_count": 11, "frantically": {"_count": 1, "through": {"_count": 1}}, "a": {"_count": 1, "speck": {"_count": 1}}, "pufferfish": {"_count": 1, "eyes": {"_count": 1}}, "the": {"_count": 1, "end": {"_count": 1}}, "through": {"_count": 3, "Unfogging": {"_count": 1}, "The": {"_count": 1}, "Mrs": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "Dungbombs": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "Death": {"_count": 1}}}, "pages": {"_count": 49, "muttering": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "apart": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "she": {"_count": 1}, "if": {"_count": 1}}, "not": {"_count": 1, "one": {"_count": 1}}, "of": {"_count": 9, "the": {"_count": 1}, "Travels": {"_count": 1}, "dusty": {"_count": 1}, "Where": {"_count": 1}, "The": {"_count": 1}, "her": {"_count": 2}, "Wizarding": {"_count": 2}}, "so": {"_count": 2, "that": {"_count": 2}}, "at": {"_count": 1, "last": {"_count": 1}}, "were": {"_count": 1, "flying": {"_count": 1}}, "five": {"_count": 2, "and": {"_count": 2}}, "searching": {"_count": 2, "until": {"_count": 2}}, "to": {"_count": 1, "read": {"_count": 1}}, "devoted": {"_count": 1, "to": {"_count": 1}}, "does": {"_count": 1, "Hogwarts": {"_count": 1}}, "two": {"_count": 2, "six": {"_count": 1}, "to": {"_count": 1}}, "Hermione": {"_count": 1, "found": {"_count": 1}}, "said": {"_count": 1, "Ha": {"_count": 1}}, "and": {"_count": 3, "found": {"_count": 1}, "pages": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "read": {"_count": 1}}, "carrying": {"_count": 1, "Harrys": {"_count": 1}}, "six": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 2, "unnecessary": {"_count": 1}, "much": {"_count": 1}}, "littered": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "when": {"_count": 1}}, "slipped": {"_count": 1, "and": {"_count": 1}}, "flew": {"_count": 1, "everywhere": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}}, "grumpily": {"_count": 20, "": {"_count": 7, ".": {"_count": 7}}, "after": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 2, "Aunt": {"_count": 1}, "allow": {"_count": 1}}, "pulling": {"_count": 1, "his": {"_count": 1}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 2}, "Harry": {"_count": 1}}, "shoving": {"_count": 1, "his": {"_count": 1}}, "looking": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "breaking": {"_count": 1, "free": {"_count": 1}}, "punching": {"_count": 1, "his": {"_count": 1}}}, "dramatically": {"_count": 16, "is": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "at": {"_count": 3, "Harry": {"_count": 2}, "the": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "when": {"_count": 1, "Professor": {"_count": 1}}, "and": {"_count": 1, "hiccuping": {"_count": 1}}, "from": {"_count": 1, "underneath": {"_count": 1}}, "different": {"_count": 1, "than": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "that": {"_count": 1, "Harrys": {"_count": 1}}}, "maker": {"_count": 4, "of": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "wears": {"_count": 1}}, "not": {"_count": 1, "the": {"_count": 1}}}, "Sorcerers": {"_count": 26, "Stone": {"_count": 23, "This": {"_count": 1}, "a": {"_count": 1}, "over": {"_count": 1}, "": {"_count": 8}, "if": {"_count": 1}, "after": {"_count": 1}, "and": {"_count": 1}, "apart": {"_count": 1}, "Whatever": {"_count": 1}, "against": {"_count": 1}, "in": {"_count": 1}, "anymore": {"_count": 1}, "she": {"_count": 1}, "or": {"_count": 1}, "would": {"_count": 1}, "you": {"_count": 1}}, "St": {"_count": 1, "Shhhh": {"_count": 1}}, "Stones": {"_count": 1, "that": {"_count": 1}}, "hissed": {"_count": 1, "Hermione": {"_count": 1}}}, "Stone": {"_count": 83, "This": {"_count": 1, "didnt": {"_count": 1}}, "a": {"_count": 1, "legendary": {"_count": 1}}, "will": {"_count": 1, "transform": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "currently": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 24, "!": {"_count": 6}, "?": {"_count": 6}, ".": {"_count": 12}}, "moved": {"_count": 1, "out": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 2, "Snapes": {"_count": 1}, "Voldemort": {"_count": 1}}, "was": {"_count": 3, "still": {"_count": 1}, "really": {"_count": 1}, "stolen": {"_count": 1}}, "apart": {"_count": 2, "from": {"_count": 2}}, "hes": {"_count": 1, "not": {"_count": 1}}, "it": {"_count": 2, "must": {"_count": 1}, "has": {"_count": 1}}, "or": {"_count": 2, "Fluffy": {"_count": 1}, "steal": {"_count": 1}}, "for": {"_count": 1, "Voldemort": {"_count": 1}}, "Harry": {"_count": 1, "went": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "Whatever": {"_count": 1, "Professor": {"_count": 1}}, "but": {"_count": 1, "rest": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "Voldemorts": {"_count": 1, "coming": {"_count": 1}}, "well": {"_count": 1, "Ill": {"_count": 1}}, "without": {"_count": 1, "us": {"_count": 1}}, "Quirrell": {"_count": 1, "murmured": {"_count": 1}}, "from": {"_count": 2, "Gringotts": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "Quirrell": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 2, "your": {"_count": 2}}, "unless": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 1, "see": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "boy": {"_count": 1, "you": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "find": {"_count": 1, "it": {"_count": 1}}, "its": {"_count": 1, "gone": {"_count": 1}}, "anymore": {"_count": 1, "for": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "Sorcerers": {"_count": 1, "hissed": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "appeal": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "turned": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 2, "prove": {"_count": 1}, "him": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 1, "cracked": {"_count": 1}}, "slipped": {"_count": 1, "from": {"_count": 1}}}, "effect": {"_count": 53, "shed": {"_count": 1, "expected": {"_count": 1}}, "of": {"_count": 7, "this": {"_count": 1}, "cheering": {"_count": 1}, "these": {"_count": 1}, "one": {"_count": 1}, "the": {"_count": 2}, "what": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 10, "far": {"_count": 1}, "to": {"_count": 1}, "instantaneous": {"_count": 2}, "ruined": {"_count": 1}, "good": {"_count": 1}, "immediate": {"_count": 1}, "frightening": {"_count": 1}, "quite": {"_count": 2}}, "the": {"_count": 2, "words": {"_count": 1}, "dementors": {"_count": 1}}, "on": {"_count": 5, "Hermione": {"_count": 1}, "Arthur": {"_count": 1}, "you": {"_count": 2}, "both": {"_count": 1}}, "whatsoever": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "have": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "due": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "Bagman": {"_count": 1, "continued": {"_count": 1}}, "than": {"_count": 1, "Harrys": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 1}, ".": {"_count": 5}}, "will": {"_count": 1, "take": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "improvements": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "such": {"_count": 1}}, "until": {"_count": 1, "two": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "an": {"_count": 1, "introduction": {"_count": 1}}, "Lupins": {"_count": 1, "smile": {"_count": 1}}, "slightly": {"_count": 1, "by": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}}, "ancient": {"_count": 43, "study": {"_count": 1, "of": {"_count": 1}}, "oak": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "tree": {"_count": 1, "which": {"_count": 1}}, "creature": {"_count": 1, "we": {"_count": 1}}, "and": {"_count": 2, "monkeyish": {"_count": 1}, "unmoving": {"_count": 1}}, "Egyptian": {"_count": 1, "wizards": {"_count": 1}}, "hat": {"_count": 1, "and": {"_count": 1}}, "Shooting": {"_count": 1, "Star": {"_count": 1}}, "he": {"_count": 1, "appeared": {"_count": 1}}, "armchair": {"_count": 1, "before": {"_count": 1}}, "magic": {"_count": 4, "that": {"_count": 1}, "to": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}}, "face": {"_count": 1, "a": {"_count": 1}}, "dresser": {"_count": 1, "from": {"_count": 1}}, "seals": {"_count": 1, "and": {"_count": 1}}, "set": {"_count": 1, "of": {"_count": 1}}, "runes": {"_count": 1, "which": {"_count": 1}}, "wizards": {"_count": 1, "hat": {"_count": 1}}, "skills": {"_count": 2, "unique": {"_count": 1}, "helping": {"_count": 1}}, "wooden": {"_count": 1, "till": {"_count": 1}}, "spells": {"_count": 1, "and": {"_count": 1}}, "looking": {"_count": 1, "witches": {"_count": 1}}, "people": {"_count": 1, "who": {"_count": 1}}, "cracked": {"_count": 1, "and": {"_count": 1}}, "doorway": {"_count": 1, "and": {"_count": 1}}, "Wizarding": {"_count": 1, "family": {"_count": 1}}, "suitcase": {"_count": 1, "which": {"_count": 1}}, "ring": {"_count": 1, "he": {"_count": 1}}, "black": {"_count": 1, "suit": {"_count": 1}}, "sneaker": {"_count": 1, "should": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "school": {"_count": 1, "": {"_count": 1}}, "magical": {"_count": 1, "families": {"_count": 1}}, "story": {"_count": 1, "refers": {"_count": 1}}, "goblinmade": {"_count": 1, "swords": {"_count": 1}}, "chambers": {"_count": 1, "": {"_count": 1}}, "discolored": {"_count": 1, "tiara": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "concerned": {"_count": 45, "with": {"_count": 3, "making": {"_count": 1}, "what": {"_count": 1}, "potionmaking": {"_count": 1}}, "having": {"_count": 2, "a": {"_count": 1}, "pure": {"_count": 1}}, "teacher": {"_count": 1, "Professor": {"_count": 1}}, "the": {"_count": 3, "strippingdown": {"_count": 1}, "evening": {"_count": 1}, "guilt": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "he": {"_count": 1, "killed": {"_count": 1}}, "at": {"_count": 1, "Dudleys": {"_count": 1}}, "about": {"_count": 3, "Harrys": {"_count": 1}, "some": {"_count": 1}, "litter": {"_count": 1}}, "its": {"_count": 1, "relation": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "far": {"_count": 1, "from": {"_count": 1}}, "themselves": {"_count": 1, "with": {"_count": 1}}, "theyre": {"_count": 1, "not": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "abou": {"_count": 1, "the": {"_count": 1}}, "Are": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 3, "you": {"_count": 1}, "Voldemort": {"_count": 1}, "question": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "any": {"_count": 1, "man": {"_count": 1}}, "and": {"_count": 3, "after": {"_count": 1}, "frightened": {"_count": 1}, "hurried": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "master": {"_count": 1}}, "parent": {"_count": 1, "attack": {"_count": 1}}, "less": {"_count": 1, "for": {"_count": 1}}}, "legendary": {"_count": 6, "substance": {"_count": 1, "with": {"_count": 1}}, "monster": {"_count": 1, "than": {"_count": 1}}, "Charlie": {"_count": 1, "Weasley": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "duel": {"_count": 2, "with": {"_count": 1}, "for": {"_count": 1}}}, "transform": {"_count": 21, "any": {"_count": 1, "metal": {"_count": 1}}, "at": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "in": {"_count": 2, "my": {"_count": 1}, "some": {"_count": 1}}, "Peter": {"_count": 1, "growled": {"_count": 1}}, "into": {"_count": 4, "an": {"_count": 1}, "animals": {"_count": 1}, "": {"_count": 1}, "Bellatrix": {"_count": 1}}, "these": {"_count": 1, "disparate": {"_count": 1}}, "the": {"_count": 1, "ghoul": {"_count": 1}}, "it": {"_count": 1, "you": {"_count": 1}}, "while": {"_count": 1, "there": {"_count": 1}}}, "pure": {"_count": 35, "gold": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "Twelve": {"_count": 1}}, "and": {"_count": 1, "defenseless": {"_count": 1}}, "nerve": {"_count": 1, "and": {"_count": 1}}, "venom": {"_count": 1, "at": {"_count": 1}}, "talent": {"_count": 1, "": {"_count": 1}}, "blood": {"_count": 7, "": {"_count": 2}, "family": {"_count": 1}, "croaked": {"_count": 1}, "side": {"_count": 1}, "made": {"_count": 1}, "so": {"_count": 1}}, "as": {"_count": 2, "anyones": {"_count": 1}, "you": {"_count": 1}}, "terror": {"_count": 1, "and": {"_count": 1}}, "white": {"_count": 2, "ferret": {"_count": 1}, "till": {"_count": 1}}, "giant": {"_count": 1, "because": {"_count": 1}}, "human": {"_count": 1, "": {"_count": 1}}, "hatred": {"_count": 1, "in": {"_count": 1}}, "spirit": {"_count": 1, "for": {"_count": 1}}, "spite": {"_count": 1, "": {"_count": 1}}, "loathing": {"_count": 1, "the": {"_count": 1}}, "pigheadedness": {"_count": 1, "however": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "imagination": {"_count": 1, "however": {"_count": 1}}, "water": {"_count": 1, "that": {"_count": 1}}, "luck": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "heart": {"_count": 1}}, "silvery": {"_count": 1, "blonde": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "colorless": {"_count": 1, "vastness": {"_count": 1}}}, "produces": {"_count": 2, "the": {"_count": 1, "Elixir": {"_count": 1}}, "good": {"_count": 1, "results": {"_count": 1}}}, "Elixir": {"_count": 10, "of": {"_count": 5, "Life": {"_count": 5}}, "stored": {"_count": 1, "to": {"_count": 1}}, "offered": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "Induce": {"_count": 1}}, "and": {"_count": 1, "if": {"_count": 1}}, "intolerable": {"_count": 1, "": {"_count": 1}}}, "Life": {"_count": 14, "which": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 7, "Social": {"_count": 1}, "Lies": {"_count": 6}}, "Amongst": {"_count": 1, "the": {"_count": 1}}, "does": {"_count": 1, "indeed": {"_count": 1}}}, "drinker": {"_count": 6, "immortal": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "instead": {"_count": 1}}, "smoking": {"_count": 1, "at": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "tell": {"_count": 1}}, "is": {"_count": 1, "to": {"_count": 1}}}, "immortal": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "life": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "as": {"_count": 1, "any": {"_count": 1}}, "a": {"_count": 1, "stone": {"_count": 1}}}, "reports": {"_count": 9, "of": {"_count": 3, "the": {"_count": 2}, "Slytherin": {"_count": 1}}, "having": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "but": {"_count": 1, "make": {"_count": 1}}, "on": {"_count": 1, "what": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}}, "centuries": {"_count": 25, "but": {"_count": 2, "the": {"_count": 1}, "youll": {"_count": 1}}, "": {"_count": 11, "!": {"_count": 1}, ".": {"_count": 9}, "?": {"_count": 1}}, "to": {"_count": 1, "reinstate": {"_count": 1}}, "theyre": {"_count": 1, "going": {"_count": 1}}, "its": {"_count": 1, "been": {"_count": 1}}, "perhaps": {"_count": 1, "like": {"_count": 1}}, "ago": {"_count": 2, "by": {"_count": 1}, "in": {"_count": 1}}, "of": {"_count": 1, "hidden": {"_count": 1}}, "usually": {"_count": 1, "in": {"_count": 1}}, "under": {"_count": 1, "different": {"_count": 1}}, "he": {"_count": 1, "might": {"_count": 1}}, "later": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}}, "currently": {"_count": 24, "in": {"_count": 5, "existence": {"_count": 1}, "hiding": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}}, "attend": {"_count": 1, "": {"_count": 1}}, "bouncing": {"_count": 1, "around": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}, "running": {"_count": 1, "wild": {"_count": 1}}, "pointing": {"_count": 1, "to": {"_count": 1}}, "unknown": {"_count": 1, "": {"_count": 1}}, "stand": {"_count": 1, "": {"_count": 1}}, "hiding": {"_count": 1, "in": {"_count": 1}}, "rubbing": {"_count": 1, "shoulders": {"_count": 1}}, "recruiting": {"_count": 1, "Curse": {"_count": 1}}, "residing": {"_count": 1, "in": {"_count": 1}}, "taking": {"_count": 1, "direction": {"_count": 1}}, "publishing": {"_count": 1, "guides": {"_count": 1}}, "making": {"_count": 1, "arrangements": {"_count": 1}}, "under": {"_count": 1, "threat": {"_count": 1}}, "going": {"_count": 1, "out": {"_count": 1}}, "sitting": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "home": {"_count": 1}}, "lay": {"_count": 1, "against": {"_count": 1}}}, "existence": {"_count": 23, "belongs": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "along": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "Bertha": {"_count": 1}, "that": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "of": {"_count": 4, "such": {"_count": 1}, "Slytherins": {"_count": 1}, "the": {"_count": 2}}, "for": {"_count": 2, "a": {"_count": 1}, "so": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "such": {"_count": 1}}, "by": {"_count": 1, "Dumbledore": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "wand": {"_count": 1}}, "was": {"_count": 1, "best": {"_count": 1}}}, "belongs": {"_count": 17, "to": {"_count": 12, "Mr": {"_count": 1}, "a": {"_count": 1}, "Potter": {"_count": 1}, "Miss": {"_count": 1}, "the": {"_count": 4}, "us": {"_count": 1}, "an": {"_count": 1}, "Harry": {"_count": 1}, "Professor": {"_count": 1}}, "but": {"_count": 1, "kill": {"_count": 1}}, "It": {"_count": 1, "belongs": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "noted": {"_count": 6, "alchemist": {"_count": 1, "and": {"_count": 1}}, "how": {"_count": 1, "hard": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "historian": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "goblins": {"_count": 1}}, "that": {"_count": 1, "Slytherin": {"_count": 1}}}, "alchemist": {"_count": 2, "and": {"_count": 1, "opera": {"_count": 1}}, "Bathilda": {"_count": 1, "Bagshot": {"_count": 1}}}, "opera": {"_count": 3, "lover": {"_count": 1, "": {"_count": 1}}, "glasses": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}}, "lover": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "celebrated": {"_count": 10, "his": {"_count": 1, "six": {"_count": 1}}, "having": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Seer": {"_count": 1, "Cassandra": {"_count": 1}}, "Heads": {"_count": 1, "Dumbledore": {"_count": 1}}, "or": {"_count": 1, "commiserated": {"_count": 1}}, "alchemist": {"_count": 1, "Bathilda": {"_count": 1}}, "wandmaker": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "these": {"_count": 1}}, "magical": {"_count": 1, "historian": {"_count": 1}}}, "sixtyfifth": {"_count": 1, "birthday": {"_count": 1, "last": {"_count": 1}}}, "Devon": {"_count": 1, "with": {"_count": 1, "his": {"_count": 1}}}, "Perenelle": {"_count": 2, "six": {"_count": 1, "hundred": {"_count": 1}}, "it": {"_count": 1, "really": {"_count": 1}}}, "fiftyeight": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "stops": {"_count": 9, "you": {"_count": 1, "from": {"_count": 1}}, "worked": {"_count": 1, "but": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 1, "now": {"_count": 1}}, "to": {"_count": 1, "go": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "sending": {"_count": 1, "that": {"_count": 1}}}, "recent": {"_count": 30, "if": {"_count": 1, "hes": {"_count": 1}}, "events": {"_count": 2, "must": {"_count": 1}, "and": {"_count": 1}}, "tragedy": {"_count": 1, "": {"_count": 1}}, "discovery": {"_count": 1, "": {"_count": 1}}, "acquisition": {"_count": 1, "": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "victims": {"_count": 1, "of": {"_count": 1}}, "owl": {"_count": 1, "took": {"_count": 1}}, "bitter": {"_count": 1, "feelings": {"_count": 1}}, "dreams": {"_count": 1, "": {"_count": 1}}, "nosebleeds": {"_count": 1, "": {"_count": 1}}, "weeks": {"_count": 1, "Fudge": {"_count": 1}}, "dream": {"_count": 1, "": {"_count": 1}}, "meetings": {"_count": 1, "remembering": {"_count": 1}}, "ream": {"_count": 1, "of": {"_count": 1}}, "sightings": {"_count": 1, "of": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "blow": {"_count": 1, "on": {"_count": 1}}, "capture": {"_count": 1, "and": {"_count": 1}}, "disturbance": {"_count": 1, "at": {"_count": 1}}, "years": {"_count": 1, "but": {"_count": 1}}, "unpleasant": {"_count": 1, "behavior": {"_count": 1}}, "battle": {"_count": 1, "There": {"_count": 1}}, "widely": {"_count": 1, "publicized": {"_count": 1}}, "journey": {"_count": 1, "": {"_count": 1}}, "scene": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "these": {"_count": 1}}, "encounter": {"_count": 1, "with": {"_count": 1}}, "failures": {"_count": 1, "": {"_count": 1}}}, "sixtyfive": {"_count": 1, "is": {"_count": 1, "he": {"_count": 1}}}, "treating": {"_count": 13, "werewolf": {"_count": 1, "bites": {"_count": 1}}, "him": {"_count": 3, "like": {"_count": 3}}, "you": {"_count": 1, "right": {"_count": 1}}, "Harry": {"_count": 1, "like": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "scalerot": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "place": {"_count": 1}, "rest": {"_count": 1}}, "your": {"_count": 1, "inheritance": {"_count": 1}}, "a": {"_count": 1, "hurt": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}}, "werewolf": {"_count": 71, "bites": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "be": {"_count": 1, "killing": {"_count": 1}}, "": {"_count": 18, "?": {"_count": 4}, ".": {"_count": 13}, "!": {"_count": 1}}, "an": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 3, "he": {"_count": 1}, "your": {"_count": 1}, "not": {"_count": 1}}, "attacks": {"_count": 1, "": {"_count": 1}}, "cubs": {"_count": 1, "under": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "Malfoy": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "differs": {"_count": 1, "from": {"_count": 1}}, "That": {"_count": 1, "is": {"_count": 1}}, "Lupin": {"_count": 1, "stopped": {"_count": 1}}, "is": {"_count": 1, "only": {"_count": 1}}, "in": {"_count": 1, "check": {"_count": 1}}, "You": {"_count": 1, "fool": {"_count": 1}}, "reared": {"_count": 1, "snapping": {"_count": 1}}, "wrenched": {"_count": 1, "itself": {"_count": 1}}, "taking": {"_count": 1, "flight": {"_count": 1}}, "hes": {"_count": 1, "a": {"_count": 1}}, "howling": {"_count": 1, "behind": {"_count": 1}}, "out": {"_count": 1, "there": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "teaching": {"_count": 1, "their": {"_count": 1}}, "segregation": {"_count": 1, "isnt": {"_count": 1}}, "legislation": {"_count": 1, "two": {"_count": 1}}, "Remus": {"_count": 2, "Lupin": {"_count": 2}}, "poor": {"_count": 1, "chap": {"_count": 1}}, "personally": {"_count": 1, "very": {"_count": 1}}, "who": {"_count": 3, "had": {"_count": 2}, "was": {"_count": 1}}, "once": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 1, "you": {"_count": 1}}, "alive": {"_count": 1, "today": {"_count": 1}}, "gets": {"_count": 1, "carried": {"_count": 1}}, "was": {"_count": 2, "blasted": {"_count": 1}, "lifted": {"_count": 1}}, "seemed": {"_count": 1, "cowed": {"_count": 1}}, "Fenrir": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "sometimes": {"_count": 1, "known": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 1, "sword": {"_count": 1}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "married": {"_count": 1, "to": {"_count": 1}}}, "bites": {"_count": 5, "Harry": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "ze": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "will": {"_count": 1}}}, "discussing": {"_count": 35, "what": {"_count": 2, "theyd": {"_count": 1}, "had": {"_count": 1}}, "the": {"_count": 9, "Chamber": {"_count": 1}, "case": {"_count": 1}, "Firebolts": {"_count": 1}, "match": {"_count": 1}, "curses": {"_count": 1}, "terrible": {"_count": 1}, "escaped": {"_count": 1}, "matter": {"_count": 1}, "continuing": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "plans": {"_count": 1}}, "Gryffindors": {"_count": 1, "improved": {"_count": 1}}, "your": {"_count": 1, "friend": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "magical": {"_count": 1, "methods": {"_count": 1}}, "those": {"_count": 1, "Hogwarts": {"_count": 1}}, "giants": {"_count": 1, "in": {"_count": 1}}, "anything": {"_count": 1, "here": {"_count": 1}}, "Angelinas": {"_count": 1, "idea": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "this": {"_count": 1, "here": {"_count": 1}}, "it": {"_count": 3, "over": {"_count": 1}, "after": {"_count": 1}, "again": {"_count": 1}}, "in": {"_count": 1, "future": {"_count": 1}}, "tactics": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "You": {"_count": 1, "there": {"_count": 1}}, "seemed": {"_count": 1, "less": {"_count": 1}}, "his": {"_count": 1, "fate": {"_count": 1}}, "matters": {"_count": 1, "in": {"_count": 1}}}, "wipe": {"_count": 16, "the": {"_count": 4, "smiles": {"_count": 1}, "smirk": {"_count": 1}, "happy": {"_count": 1}, "blood": {"_count": 1}}, "it": {"_count": 2, "after": {"_count": 1}, "blank": {"_count": 1}}, "his": {"_count": 2, "hair": {"_count": 1}, "hands": {"_count": 1}}, "their": {"_count": 2, "shoes": {"_count": 1}, "memories": {"_count": 1}}, "slime": {"_count": 1, "from": {"_count": 1}}, "yer": {"_count": 1, "footprints": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "your": {"_count": 1, "nose": {"_count": 1}}, "them": {"_count": 1, "Leanne": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}}, "calm": {"_count": 63, "either": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "down": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "him": {"_count": 1, "down": {"_count": 1}}, "he": {"_count": 3, "wondered": {"_count": 1}, "told": {"_count": 1}, "did": {"_count": 1}}, "down": {"_count": 9, "all": {"_count": 1}, "": {"_count": 3}, "I": {"_count": 1}, "think": {"_count": 1}, "Kreacher": {"_count": 1}, "a": {"_count": 1}, "when": {"_count": 1}}, "that": {"_count": 2, "followed": {"_count": 1}, "if": {"_count": 1}}, "and": {"_count": 3, "find": {"_count": 1}, "he": {"_count": 1}, "happy": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "Hermione": {"_count": 1, "down": {"_count": 1}}, "though": {"_count": 2, "rather": {"_count": 1}, "the": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 5, "but": {"_count": 1}, "and": {"_count": 2}, "you": {"_count": 1}, "answered": {"_count": 1}}, "throughout": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "Dumbledore": {"_count": 2}}, "while": {"_count": 1, "Aunt": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}, "anxiety": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "doesnt": {"_count": 1}}, "tone": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "understand": {"_count": 1}}, "between": {"_count": 1, "two": {"_count": 1}}, "yourself": {"_count": 1, "Madam": {"_count": 1}}, "almost": {"_count": 1, "detached": {"_count": 1}}, "old": {"_count": 2, "face": {"_count": 2}}, "when": {"_count": 1, "she": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "cooled": {"_count": 1, "his": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}, "herself": {"_count": 1, "as": {"_count": 1}}, "but": {"_count": 1, "Harrys": {"_count": 1}}}, "overtaking": {"_count": 3, "Slytherin": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "line": {"_count": 1}}, "Horace": {"_count": 1, "Slughorn": {"_count": 1}}}, "biased": {"_count": 2, "referee": {"_count": 1, "": {"_count": 1}}, "scumbag": {"_count": 1, "you": {"_count": 1}}}, "weekly": {"_count": 3, "torture": {"_count": 1, "Snape": {"_count": 1}}, "essays": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "torture": {"_count": 23, "Snape": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "people": {"_count": 1, "": {"_count": 1}}, "someone": {"_count": 1, "if": {"_count": 1}}, "countless": {"_count": 1, "Muggles": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "an": {"_count": 1, "interview": {"_count": 1}}, "and": {"_count": 4, "permanent": {"_count": 1}, "murder": {"_count": 1}, "kill": {"_count": 1}, "his": {"_count": 1}}, "the": {"_count": 1, "little": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "your": {"_count": 1, "whereabouts": {"_count": 1}}, "how": {"_count": 1, "can": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "us": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "Dracos": {"_count": 1}}}, "pep": {"_count": 4, "talk": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "talks": {"_count": 1, "might": {"_count": 1}}}, "grim": {"_count": 21, "and": {"_count": 2, "worried": {"_count": 1}, "slightly": {"_count": 1}}, "satisfaction": {"_count": 2, "": {"_count": 1}, "Dumbledore": {"_count": 1}}, "looking": {"_count": 1, "dwarf": {"_count": 1}}, "smile": {"_count": 3, "": {"_count": 2}, "twisted": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "pleasure": {"_count": 1, "at": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "mood": {"_count": 1, "has": {"_count": 1}}, "his": {"_count": 1, "brown": {"_count": 1}}, "square": {"_count": 1, "building": {"_count": 1}}, "place": {"_count": 1, "in": {"_count": 1}}, "fortress": {"_count": 1, "jet": {"_count": 1}}, "laugh": {"_count": 1, "": {"_count": 1}}, "understanding": {"_count": 1, "": {"_count": 1}}}, "secretly": {"_count": 8, "practicing": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "anybody": {"_count": 1}, "its": {"_count": 1}}, "in": {"_count": 1, "love": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "glad": {"_count": 1, "to": {"_count": 1}}, "fears": {"_count": 1, "both": {"_count": 1}}}, "Theyd": {"_count": 19, "gotten": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "have": {"_count": 5, "to": {"_count": 1}, "seen": {"_count": 2}, "been": {"_count": 1}, "picked": {"_count": 1}}, "heard": {"_count": 1, "that": {"_count": 1}}, "better": {"_count": 2, "not": {"_count": 1}, "have": {"_count": 1}}, "never": {"_count": 2, "want": {"_count": 1}, "have": {"_count": 1}}, "think": {"_count": 1, "it": {"_count": 1}}, "like": {"_count": 1, "to": {"_count": 1}}, "normally": {"_count": 1, "deal": {"_count": 1}}, "tell": {"_count": 1, "Dumbledore": {"_count": 1}}, "fallen": {"_count": 1, "off": {"_count": 1}}, "kill": {"_count": 1, "us": {"_count": 1}}, "seen": {"_count": 1, "her": {"_count": 1}}}, "using": {"_count": 101, "it": {"_count": 7, "on": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}, "all": {"_count": 1}, "to": {"_count": 1}, "as": {"_count": 1}, "doesnt": {"_count": 1}}, "magic": {"_count": 7, "in": {"_count": 3}, "to": {"_count": 1}, "without": {"_count": 1}, "": {"_count": 1}, "against": {"_count": 1}}, "a": {"_count": 11, "telephone": {"_count": 1}, "slide": {"_count": 1}, "broomstick": {"_count": 1}, "walkietalkie": {"_count": 1}, "rather": {"_count": 1}, "Ministryapproved": {"_count": 1}, "form": {"_count": 1}, "wide": {"_count": 1}, "combination": {"_count": 1}, "Summoning": {"_count": 1}, "Hover": {"_count": 1}}, "Floo": {"_count": 2, "powder": {"_count": 2}}, "his": {"_count": 6, "free": {"_count": 1}, "newfound": {"_count": 1}, "name": {"_count": 1}, "old": {"_count": 1}, "shortcut": {"_count": 1}, "wand": {"_count": 1}}, "the": {"_count": 22, "plumbing": {"_count": 1}, "boy": {"_count": 1}, "mallet": {"_count": 1}, "time": {"_count": 1}, "Invisibility": {"_count": 1}, "Summoning": {"_count": 1}, "Cruciatus": {"_count": 2}, "Pensieve": {"_count": 1}, "Imperius": {"_count": 1}, "Extendable": {"_count": 1}, "Galleons": {"_count": 1}, "immensely": {"_count": 1}, "room": {"_count": 2}, "Room": {"_count": 1}, "Dark": {"_count": 2}, "place": {"_count": 1}, "kind": {"_count": 1}, "Malfoys": {"_count": 1}, "blackthorn": {"_count": 1}}, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "the": {"_count": 1}}, "their": {"_count": 2, "long": {"_count": 1}, "own": {"_count": 1}}, "Errol": {"_count": 1, "": {"_count": 1}}, "pages": {"_count": 1, "five": {"_count": 1}}, "hushed": {"_count": 1, "voices": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "theres": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "dark": {"_count": 1, "arts": {"_count": 1}}, "her": {"_count": 3, "Summoning": {"_count": 1}, "fire": {"_count": 1}, "actual": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "sign": {"_count": 1, "language": {"_count": 1}}, "wands": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "large": {"_count": 1, "quantities": {"_count": 1}}, "them": {"_count": 3, "to": {"_count": 1}, "lately": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 2, "Invisibility": {"_count": 1}, "illegal": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkinss": {"_count": 1}}, "illegal": {"_count": 1, "magic": {"_count": 1}}, "defensive": {"_count": 2, "spells": {"_count": 2}}, "on": {"_count": 1, "Harrys": {"_count": 1}}, "these": {"_count": 1, "Occlumency": {"_count": 1}}, "Umbridges": {"_count": 1, "office": {"_count": 1}}, "my": {"_count": 1, "fire": {"_count": 1}}, "Inferi": {"_count": 1, "see": {"_count": 1}}, "your": {"_count": 2, "powers": {"_count": 1}, "ingenious": {"_count": 1}}, "knives": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "marshal": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Hermiones": {"_count": 1, "quill": {"_count": 1}}, "that": {"_count": 1, "book": {"_count": 1}}, "anothers": {"_count": 1, "wand": {"_count": 1}}, "those": {"_count": 1, "funny": {"_count": 1}}, "Parseltongue": {"_count": 1, "said": {"_count": 1}}}, "Locomotor": {"_count": 3, "Mortis": {"_count": 1, "Hermione": {"_count": 1}}, "Trunk": {"_count": 1, "": {"_count": 1}}, "trunksl": {"_count": 1, "and": {"_count": 1}}}, "Mortis": {"_count": 1, "Hermione": {"_count": 1, "muttered": {"_count": 1}}}, "nag": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 1, "be": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}}, "pressure": {"_count": 23, "you": {"_count": 1, "Potter": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 3, "Harrys": {"_count": 1}, "his": {"_count": 1}, "all": {"_count": 1}}, "by": {"_count": 1, "being": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "homework": {"_count": 1}}, "to": {"_count": 2, "catch": {"_count": 1}, "take": {"_count": 1}}, "bearing": {"_count": 1, "down": {"_count": 1}}, "rising": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 1, "so": {"_count": 1}}, "squeezing": {"_count": 1, "his": {"_count": 1}}, "disappeared": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "increasing": {"_count": 1}}, "without": {"_count": 1, "really": {"_count": 1}}, "now": {"_count": 1, "taking": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "capture": {"_count": 19, "of": {"_count": 3, "the": {"_count": 1}, "that": {"_count": 1}, "Mundungus": {"_count": 1}}, "Harry": {"_count": 2, "really": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 3, "Ministry": {"_count": 1}, "man": {"_count": 1}, "boy": {"_count": 1}}, "ended": {"_count": 1, "the": {"_count": 1}}, "two": {"_count": 1, "unicorn": {"_count": 1}}, "for": {"_count": 2, "instance": {"_count": 1}, "almost": {"_count": 1}}, "and": {"_count": 3, "murder": {"_count": 1}, "imprisonment": {"_count": 1}, "kill": {"_count": 1}}, "Potter": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "has": {"_count": 1, "many": {"_count": 1}}, "it": {"_count": 1, "from": {"_count": 1}}}, "Finish": {"_count": 1, "the": {"_count": 1, "game": {"_count": 1}}}, "favor": {"_count": 27, "Hufflepuff": {"_count": 1, "too": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "His": {"_count": 2, "voice": {"_count": 1}, "brother": {"_count": 1}}, "sir": {"_count": 1, "when": {"_count": 1}}, "Perce": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 2, "Dumbledore": {"_count": 1}, "her": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 8, "imprisonment": {"_count": 1}, "clearing": {"_count": 1}, "conviction": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}, "this": {"_count": 1}, "going": {"_count": 1}, "you": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "help": {"_count": 1}, "dont": {"_count": 1}, "told": {"_count": 1}}, "is": {"_count": 1, "all": {"_count": 1}}, "me": {"_count": 1, "by": {"_count": 1}}, "Ron": {"_count": 1, "at": {"_count": 1}}}, "schools": {"_count": 24, "out": {"_count": 1, "there": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "ever": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "in": {"_count": 2, "some": {"_count": 1}, "danger": {"_count": 1}}, "of": {"_count": 1, "wizardry": {"_count": 1}}, "took": {"_count": 1, "it": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "are": {"_count": 1, "always": {"_count": 1}}, "compete": {"_count": 1, "in": {"_count": 1}}, "behavior": {"_count": 1, "if": {"_count": 1}}, "secrets": {"_count": 1, "and": {"_count": 1}}, "secret": {"_count": 1, "passageways": {"_count": 1}}, "this": {"_count": 1, "then": {"_count": 1}}, "boundaries": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "encouraged": {"_count": 1}}, "like": {"_count": 1, "": {"_count": 1}}}, "blimey": {"_count": 12, "Dumbledores": {"_count": 1, "come": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "no": {"_count": 1, "wonder": {"_count": 1}}, "he": {"_count": 1, "looks": {"_count": 1}}, "said": {"_count": 2, "Hagrid": {"_count": 1}, "Lee": {"_count": 1}}, "I": {"_count": 1, "forgot": {"_count": 1}}, "whatve": {"_count": 1, "you": {"_count": 1}}, "brace": {"_count": 1, "yourselves": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "somersault": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "suddenly": {"_count": 1, "landing": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "broadly": {"_count": 29, "at": {"_count": 5, "Crabbe": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 2}}, "": {"_count": 10, ".": {"_count": 10}}, "his": {"_count": 2, "cold": {"_count": 1}, "arms": {"_count": 1}}, "caught": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 4, "he": {"_count": 1}, "headed": {"_count": 1}, "suddenly": {"_count": 1}, "walked": {"_count": 1}}, "than": {"_count": 3, "ever": {"_count": 3}}, "the": {"_count": 1, "Cheering": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "Malfoy": {"_count": 1}}, "chose": {"_count": 1, "to": {"_count": 1}}}, "fixedly": {"_count": 11, "at": {"_count": 8, "Harry": {"_count": 2}, "Black": {"_count": 1}, "Professor": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "eagerly": {"_count": 1}}, "into": {"_count": 1, "space": {"_count": 1}}}, "choose": {"_count": 30, "people": {"_count": 1, "for": {"_count": 1}}, "above": {"_count": 1, "all": {"_count": 1}}, "from": {"_count": 2, "you": {"_count": 1}, "a": {"_count": 1}}, "their": {"_count": 1, "subjects": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "last": {"_count": 1, "night": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "best": {"_count": 1}}, "what": {"_count": 2, "you": {"_count": 1}, "N": {"_count": 1}}, "a": {"_count": 1, "niffler": {"_count": 1}}, "your": {"_count": 3, "company": {"_count": 1}, "meeting": {"_count": 1}, "way": {"_count": 1}}, "prefects": {"_count": 1, "because": {"_count": 1}}, "to": {"_count": 3, "leave": {"_count": 1}, "save": {"_count": 1}, "return": {"_count": 1}}, "that": {"_count": 1, "path": {"_count": 1}}, "someone": {"_count": 1, "better": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "witches": {"_count": 1, "or": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 1, "three": {"_count": 1}}, "Gryffindor": {"_count": 1, "over": {"_count": 1}}}, "whove": {"_count": 5, "got": {"_count": 1, "no": {"_count": 1}}, "spotted": {"_count": 1, "them": {"_count": 1}}, "you": {"_count": 1, "been": {"_count": 1}}, "never": {"_count": 1, "done": {"_count": 1}}, "earned": {"_count": 1, "detentions": {"_count": 1}}}, "howled": {"_count": 20, "with": {"_count": 6, "laughter": {"_count": 4}, "anger": {"_count": 1}, "derisive": {"_count": 1}}, "Dudley": {"_count": 1, "tripping": {"_count": 1}}, "and": {"_count": 1, "dropped": {"_count": 1}}, "Myrtle": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}, "Fred": {"_count": 1, "but": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "even": {"_count": 1, "harder": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "Hagrid": {"_count": 1, "and": {"_count": 1}}}, "poorer": {"_count": 2, "than": {"_count": 1, "Weasley": {"_count": 1}}, "results": {"_count": 1, "than": {"_count": 1}}}, "anxiety": {"_count": 14, "about": {"_count": 2, "Harry": {"_count": 1}, "how": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "help": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "did": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 1, "seemed": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "soothe": {"_count": 1}}, "nagging": {"_count": 1, "doubts": {"_count": 1}}}, "bullet": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 1, "wad": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "he": {"_count": 1, "shot": {"_count": 1}}, "had": {"_count": 1, "narrowly": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "leaping": {"_count": 28, "onto": {"_count": 1, "her": {"_count": 1}}, "toadstools": {"_count": 1, "in": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "into": {"_count": 2, "view": {"_count": 1}, "hands": {"_count": 1}}, "on": {"_count": 2, "Malfoy": {"_count": 2}}, "down": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 6, "their": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 4}}, "feeling": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 3, "chair": {"_count": 1}, "bench": {"_count": 1}, "its": {"_count": 1}}, "up": {"_count": 2, "at": {"_count": 1}, "hurrying": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "fish": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "goldfish": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "flames": {"_count": 1, "": {"_count": 1}}}, "scuffles": {"_count": 2, "and": {"_count": 1, "yelps": {"_count": 1}}, "broke": {"_count": 1, "out": {"_count": 1}}}, "yelps": {"_count": 3, "coming": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "pain": {"_count": 1}}}, "whirl": {"_count": 10, "of": {"_count": 9, "fists": {"_count": 1}, "rainbow": {"_count": 1}, "green": {"_count": 1}, "color": {"_count": 2}, "dull": {"_count": 1}, "gold": {"_count": 1}, "hair": {"_count": 1}, "wind": {"_count": 1}}, "and": {"_count": 1, "spin": {"_count": 1}}}, "shoot": {"_count": 15, "past": {"_count": 2, "him": {"_count": 2}}, "me": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "forward": {"_count": 1, "several": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "fire": {"_count": 1, "at": {"_count": 1}}, "jets": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "hope": {"_count": 1}}, "and": {"_count": 1, "and": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "into": {"_count": 1}}, "golden": {"_count": 1, "flames": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "triumph": {"_count": 29, "the": {"_count": 1, "Snitch": {"_count": 1}}, "over": {"_count": 2, "HeWhoMustNotBe": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 3, "their": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "about": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 1}, "front": {"_count": 1}, "Dumbledore": {"_count": 1}, "his": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "looking": {"_count": 1, "down": {"_count": 1}}, "and": {"_count": 4, "leapt": {"_count": 1}, "its": {"_count": 1}, "jubilation": {"_count": 1}, "stamped": {"_count": 1}}, "is": {"_count": 1, "an": {"_count": 1}}, "all": {"_count": 1, "except": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "both": {"_count": 1, "yelled": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "grinned": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "good": {"_count": 1}}, "we": {"_count": 1, "call": {"_count": 1}}}, "erupted": {"_count": 42, "it": {"_count": 1, "had": {"_count": 1}}, "from": {"_count": 12, "the": {"_count": 10}, "both": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "suddenly": {"_count": 1, "pulling": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 4, "Harrys": {"_count": 1}, "them": {"_count": 1}, "laughter": {"_count": 1}, "a": {"_count": 1}}, "into": {"_count": 3, "old": {"_count": 1}, "screams": {"_count": 1}, "life": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "with": {"_count": 3, "screams": {"_count": 1}, "cheers": {"_count": 2}}, "up": {"_count": 1, "his": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "onto": {"_count": 1, "the": {"_count": 1}}, "crimson": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 1, "Dumbledores": {"_count": 1}}, "between": {"_count": 2, "Ron": {"_count": 1}, "them": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}}, "hugging": {"_count": 16, "Parvati": {"_count": 1, "Patil": {"_count": 1}}, "him": {"_count": 6, "": {"_count": 2}, "so": {"_count": 2}, "again": {"_count": 1}, "tightly": {"_count": 1}}, "her": {"_count": 2, "sister": {"_count": 1}, "children": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "them": {"_count": 2, "at": {"_count": 1}, "too": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "herself": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "women": {"_count": 1}}}, "spilling": {"_count": 17, "onto": {"_count": 2, "the": {"_count": 2}}, "from": {"_count": 5, "every": {"_count": 1}, "under": {"_count": 1}, "Hagrids": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "water": {"_count": 1, "from": {"_count": 1}}, "milk": {"_count": 1, "all": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "your": {"_count": 1, "innermost": {"_count": 1}}, "more": {"_count": 1, "butterbeer": {"_count": 1}}, "scrambled": {"_count": 1, "eggs": {"_count": 1}}, "its": {"_count": 1, "contents": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}}, "nearby": {"_count": 76, "whitefaced": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "sounded": {"_count": 1}}, "held": {"_count": 1, "a": {"_count": 1}}, "yelled": {"_count": 1, "What": {"_count": 1}}, "laughed": {"_count": 1, "loudly": {"_count": 1}}, "bush": {"_count": 1, "": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 18}}, "leaning": {"_count": 1, "against": {"_count": 1}}, "screamed": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "all": {"_count": 1}}, "sniggered": {"_count": 1, "loudly": {"_count": 1}}, "tree": {"_count": 5, "took": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}, "Their": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "table": {"_count": 2, "both": {"_count": 1}, "looked": {"_count": 1}}, "said": {"_count": 1, "Ouch": {"_count": 1}}, "classroom": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "Harry": {"_count": 3, "Ron": {"_count": 1}, "sprinted": {"_count": 1}, "listened": {"_count": 1}}, "elf": {"_count": 1, "shaking": {"_count": 1}}, "hedge": {"_count": 1, "and": {"_count": 1}}, "bed": {"_count": 1, "he": {"_count": 1}}, "Wisteria": {"_count": 1, "Walk": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "shaped": {"_count": 1}}, "first": {"_count": 1, "year": {"_count": 1}}, "chair": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "clutching": {"_count": 1}}, "shop": {"_count": 1, "full": {"_count": 1}}, "noses": {"_count": 1, "close": {"_count": 1}}, "but": {"_count": 2, "now": {"_count": 1}, "he": {"_count": 1}}, "cupboard": {"_count": 1, "pulled": {"_count": 1}}, "trees": {"_count": 1, "toward": {"_count": 1}}, "and": {"_count": 2, "scrambled": {"_count": 1}, "knew": {"_count": 1}}, "then": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "church": {"_count": 1, "it": {"_count": 1}}, "blocking": {"_count": 1, "all": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "group": {"_count": 1, "of": {"_count": 1}}, "armchair": {"_count": 1, "looking": {"_count": 1}}, "bathroom": {"_count": 1, "to": {"_count": 1}}, "crate": {"_count": 1, "he": {"_count": 1}}, "niche": {"_count": 1, "": {"_count": 1}}, "This": {"_count": 1, "meant": {"_count": 1}}, "garden": {"_count": 1, "had": {"_count": 1}}, "hill": {"_count": 1, "where": {"_count": 1}}, "which": {"_count": 1, "did": {"_count": 1}}, "mountain": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "door": {"_count": 1}}}, "whitefaced": {"_count": 10, "and": {"_count": 5, "tightlipped": {"_count": 1}, "furious": {"_count": 1}, "with": {"_count": 1}, "shocked": {"_count": 1}, "silent": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "fury": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "Mrs": {"_count": 1}}, "wrapped": {"_count": 1, "in": {"_count": 1}}}, "tightlipped": {"_count": 1, "then": {"_count": 1, "Harry": {"_count": 1}}}, "brooding": {"_count": 4, "about": {"_count": 1, "that": {"_count": 1}}, "was": {"_count": 1, "leaning": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "certain": {"_count": 1}}}, "Jc": {"_count": 10, "Jc": {"_count": 6, "Jc": {"_count": 3}, "Harry": {"_count": 3}}, "Harry": {"_count": 3, "left": {"_count": 1}, "where": {"_count": 1}, "went": {"_count": 1}}, "k": {"_count": 1, "But": {"_count": 1}}}, "broomshed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "reliving": {"_count": 5, "the": {"_count": 1, "last": {"_count": 1}}, "family": {"_count": 1, "history": {"_count": 1}}, "it": {"_count": 1, "one": {"_count": 1}}, "Saturdays": {"_count": 1, "meeting": {"_count": 1}}, "a": {"_count": 1, "particularly": {"_count": 1}}}, "blur": {"_count": 14, "Gryffindors": {"_count": 1, "running": {"_count": 1}}, "Harry": {"_count": 1, "turned": {"_count": 1}}, "of": {"_count": 5, "colors": {"_count": 1}, "color": {"_count": 1}, "panic": {"_count": 2}, "flying": {"_count": 1}}, "lying": {"_count": 1, "flat": {"_count": 1}}, "in": {"_count": 1, "amongst": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "beneath": {"_count": 1, "whiteblond": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}}, "nosebleed": {"_count": 4, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 1}, "!": {"_count": 1}}}, "hooded": {"_count": 36, "figure": {"_count": 9, "came": {"_count": 2}, "raised": {"_count": 1}, "dripping": {"_count": 1}, "was": {"_count": 1}, "appeared": {"_count": 1}, "materialized": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}}, "creature": {"_count": 1, "had": {"_count": 1}}, "dementors": {"_count": 2, "standing": {"_count": 1}, "were": {"_count": 1}}, "black": {"_count": 1, "figures": {"_count": 1}}, "face": {"_count": 1, "turned": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "their": {"_count": 2}, "masked": {"_count": 1}}, "wizards": {"_count": 1, "in": {"_count": 1}}, "creatures": {"_count": 1, "whose": {"_count": 1}}, "eyes": {"_count": 1, "who": {"_count": 1}}, "cloak": {"_count": 1, "pulled": {"_count": 1}}, "faces": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "figures": {"_count": 3, "we": {"_count": 1}, "suspended": {"_count": 1}, "their": {"_count": 1}}, "head": {"_count": 1, "toward": {"_count": 1}}, "stranger": {"_count": 1, "there": {"_count": 1}}, "Death": {"_count": 5, "Eaters": {"_count": 4}, "Eater": {"_count": 1}}, "men": {"_count": 1, "": {"_count": 1}}, "others": {"_count": 1, "showed": {"_count": 1}}}, "figure": {"_count": 112, "came": {"_count": 4, "swiftly": {"_count": 1}, "crawling": {"_count": 1}, "to": {"_count": 1}, "bustling": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "raised": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "had": {"_count": 4, "gone": {"_count": 1}, "appeared": {"_count": 1}, "been": {"_count": 1}, "risen": {"_count": 1}}, "dripping": {"_count": 1, "blood": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 2}, "his": {"_count": 1}, "Mr": {"_count": 1}, "front": {"_count": 1}}, "the": {"_count": 1, "strangest": {"_count": 1}}, "was": {"_count": 9, "emerging": {"_count": 1}, "standing": {"_count": 1}, "sprinting": {"_count": 1}, "gliding": {"_count": 2}, "hobbling": {"_count": 1}, "a": {"_count": 1}, "just": {"_count": 1}, "as": {"_count": 1}}, "of": {"_count": 17, "Riddle": {"_count": 1}, "Viktor": {"_count": 2}, "Krum": {"_count": 2}, "Cedric": {"_count": 1}, "speech": {"_count": 1}, "Smith": {"_count": 1}, "Kingsley": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "Malfoy": {"_count": 1}, "Grawp": {"_count": 1}, "Dolores": {"_count": 1}, "the": {"_count": 1}, "Ollivander": {"_count": 1}, "Alecto": {"_count": 1}}, "with": {"_count": 2, "flamingred": {"_count": 1}, "hugely": {"_count": 1}}, "bearing": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "towered": {"_count": 1}}, "holding": {"_count": 1, "a": {"_count": 1}}, "raising": {"_count": 1, "an": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 2}}, "sprinting": {"_count": 1, "down": {"_count": 1}}, "from": {"_count": 1, "on": {"_count": 1}}, "standing": {"_count": 2, "amid": {"_count": 1}, "over": {"_count": 1}}, "eight": {"_count": 1, "": {"_count": 1}}, "wearing": {"_count": 1, "Bulgarian": {"_count": 1}}, "rose": {"_count": 4, "out": {"_count": 2}, "from": {"_count": 2}}, "hurtled": {"_count": 1, "out": {"_count": 1}}, "drawing": {"_count": 1, "nearer": {"_count": 1}}, "simply": {"_count": 1, "looked": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "fall": {"_count": 1, "to": {"_count": 1}}, "moving": {"_count": 1, "toward": {"_count": 1}}, "upon": {"_count": 1, "its": {"_count": 1}}, "roaring": {"_count": 1, "and": {"_count": 1}}, "shouted": {"_count": 1, "as": {"_count": 1}}, "groaned": {"_count": 1, "and": {"_count": 1}}, "53": {"_count": 1, "": {"_count": 1}}, "stopped": {"_count": 1, "speaking": {"_count": 1}}, "shimmering": {"_count": 1, "and": {"_count": 1}}, "appeared": {"_count": 2, "out": {"_count": 1}, "between": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "materialized": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 1, "over": {"_count": 1}}, "ahead": {"_count": 2, "": {"_count": 1}, "illuminated": {"_count": 1}}, "crossing": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "rise": {"_count": 1}, "disappear": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "hanging": {"_count": 1, "upside": {"_count": 1}}, "suspended": {"_count": 1, "over": {"_count": 1}}, "exploded": {"_count": 1, "in": {"_count": 1}}, "edged": {"_count": 1, "into": {"_count": 1}}, "nodded": {"_count": 1, "and": {"_count": 1}}, "stirred": {"_count": 1, "beneath": {"_count": 1}}, "slightly": {"_count": 1, "taller": {"_count": 1}}, "passing": {"_count": 1, "them": {"_count": 1}}, "retreating": {"_count": 1, "until": {"_count": 1}}, "drifting": {"_count": 1, "across": {"_count": 1}}, "clambered": {"_count": 1, "to": {"_count": 1}}, "running": {"_count": 1, "through": {"_count": 1}}, "sprawled": {"_count": 1, "in": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}}, "Clearly": {"_count": 6, "not": {"_count": 1, "wanting": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "news": {"_count": 1}}, "frightened": {"_count": 1, "the": {"_count": 1}}}, "pwalk": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Gliding": {"_count": 2, "silently": {"_count": 1, "over": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}}, "circles": {"_count": 13, "lower": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "higher": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "overhead": {"_count": 1, "like": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}, "around": {"_count": 2, "Harrys": {"_count": 1}, "her": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "honing": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "brushing": {"_count": 16, "the": {"_count": 4, "top": {"_count": 2}, "grassy": {"_count": 1}, "rough": {"_count": 1}}, "soot": {"_count": 1, "off": {"_count": 1}}, "Harry": {"_count": 1, "aside": {"_count": 1}}, "ash": {"_count": 2, "off": {"_count": 1}, "from": {"_count": 1}}, "her": {"_count": 2, "hair": {"_count": 1}, "arm": {"_count": 1}}, "dust": {"_count": 2, "from": {"_count": 2}}, "straw": {"_count": 1, "off": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "away": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}}, "noiselessly": {"_count": 6, "in": {"_count": 1, "a": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 1, "staring": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "came": {"_count": 1, "dementors": {"_count": 1}}}, "beech": {"_count": 9, "tree": {"_count": 8, "": {"_count": 1}, "on": {"_count": 3}, "below": {"_count": 1}, "and": {"_count": 1}, "under": {"_count": 1}, "where": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "Below": {"_count": 5, "in": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "fluffy": {"_count": 1}}, "them": {"_count": 1, "the": {"_count": 1}}}, "stuttering": {"_count": 3, "worse": {"_count": 1, "than": {"_count": 1}}, "PProfessor": {"_count": 1, "Quirrell": {"_count": 1}}, "light": {"_count": 1, "of": {"_count": 1}}}, "ddont": {"_count": 3, "know": {"_count": 1, "why": {"_count": 1}}, "put": {"_count": 1, "yourself": {"_count": 1}}, "want": {"_count": 1, "him": {"_count": 1}}}, "pplaces": {"_count": 1, "Severus": {"_count": 1, "": {"_count": 1}}}, "mumbling": {"_count": 4, "something": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "himself": {"_count": 1}}, "man": {"_count": 1, "setting": {"_count": 1}}, "You": {"_count": 1, "saved": {"_count": 1}}}, "beast": {"_count": 16, "of": {"_count": 1, "Hagrids": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 1}, "?": {"_count": 3}}, "moving": {"_count": 1, "about": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "wouldve": {"_count": 1, "had": {"_count": 1}}, "below": {"_count": 1, "him": {"_count": 1}}, "only": {"_count": 1, "just": {"_count": 1}}, "flapping": {"_count": 1, "behind": {"_count": 1}}, "she": {"_count": 1, "marries": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "itself": {"_count": 1, "last": {"_count": 1}}, "that": {"_count": 1, "might": {"_count": 1}}}, "Bbbut": {"_count": 1, "Severus": {"_count": 1, "I": {"_count": 1}}}, "enemy": {"_count": 21, "Quirrell": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "face": {"_count": 1, "those": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "Honestly": {"_count": 1, "who": {"_count": 1}}, "are": {"_count": 1, "saying": {"_count": 1}}, "another": {"_count": 1, "to": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "must": {"_count": 1, "weaken": {"_count": 1}}, "that": {"_count": 4, "shall": {"_count": 4}}, "dead": {"_count": 1, "upon": {"_count": 1}}}, "II": {"_count": 8, "dont": {"_count": 1, "know": {"_count": 1}}, "didnt": {"_count": 1, "know": {"_count": 1}}, "might": {"_count": 1, "see": {"_count": 1}}, "think": {"_count": 2, "so": {"_count": 1}, "everybody": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "thought": {"_count": 1, "Id": {"_count": 1}}, "tripped": {"_count": 1, "": {"_count": 1}}}, "steadied": {"_count": 3, "himself": {"_count": 1, "in": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hocuspocus": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "before": {"_count": 1}}}, "Bbut": {"_count": 1, "I": {"_count": 1, "dddont": {"_count": 1}}}, "dddont": {"_count": 1, "Very": {"_count": 1, "well": {"_count": 1}}}, "loyalties": {"_count": 2, "lie": {"_count": 1, "": {"_count": 1}}, "interrupted": {"_count": 1, "Professor": {"_count": 1}}}, "thumping": {"_count": 22, "Harry": {"_count": 4, "on": {"_count": 4}}, "very": {"_count": 2, "fast": {"_count": 1}, "hard": {"_count": 1}}, "the": {"_count": 2, "wall": {"_count": 1}, "door": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "painfully": {"_count": 1, "fast": {"_count": 1}}, "heart": {"_count": 1, "would": {"_count": 1}}, "uncontrollably": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 1, "under": {"_count": 1}}, "Hermione": {"_count": 1, "on": {"_count": 1}}, "noise": {"_count": 1, "in": {"_count": 1}}, "wildly": {"_count": 1, "as": {"_count": 1}}, "hard": {"_count": 1, "": {"_count": 1}}, "horribly": {"_count": 1, "gazing": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "whimpering": {"_count": 1}}, "traitorously": {"_count": 1, "and": {"_count": 1}}}, "Everyones": {"_count": 9, "waiting": {"_count": 1, "for": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "just": {"_count": 1, "been": {"_count": 1}}, "eyes": {"_count": 1, "were": {"_count": 1}}, "worst": {"_count": 1, "fear": {"_count": 1}}, "in": {"_count": 1, "bed": {"_count": 1}}, "been": {"_count": 1, "asking": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "head": {"_count": 1, "turned": {"_count": 1}}}, "\u2018hocuspocus": {"_count": 1, "I": {"_count": 1, "reckon": {"_count": 1}}}, "antiDark": {"_count": 1, "Arts": {"_count": 1, "spell": {"_count": 1}}}, "Stones": {"_count": 6, "only": {"_count": 1, "safe": {"_count": 1}}, "here": {"_count": 1, "fer": {"_count": 1}}, "that": {"_count": 1, "Snape": {"_count": 1}}, "safe": {"_count": 1, "as": {"_count": 1}}, "gone": {"_count": 2, "Vol": {"_count": 1}, "": {"_count": 1}}}, "NORBERT": {"_count": 1, "THE": {"_count": 1, "NORWEGIAN": {"_count": 1}}}, "NORWEGIAN": {"_count": 1, "RIDGEBACK": {"_count": 1, "Quirrell": {"_count": 1}}}, "RIDGEBACK": {"_count": 1, "Quirrell": {"_count": 1, "however": {"_count": 1}}}, "paler": {"_count": 17, "and": {"_count": 3, "thinner": {"_count": 1}, "damper": {"_count": 1}, "rather": {"_count": 1}}, "than": {"_count": 8, "usual": {"_count": 6}, "she": {"_count": 1}, "ever": {"_count": 1}}, "with": {"_count": 1, "pain": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "his": {"_count": 1, "skin": {"_count": 1}}}, "thinner": {"_count": 10, "but": {"_count": 1, "it": {"_count": 1}}, "than": {"_count": 3, "usual": {"_count": 2}, "ever": {"_count": 1}}, "and": {"_count": 4, "more": {"_count": 2}, "paler": {"_count": 1}, "higher": {"_count": 1}}, "balder": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "thirdfloor": {"_count": 5, "corridor": {"_count": 5, "Harry": {"_count": 2}, "and": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}}, "press": {"_count": 31, "their": {"_count": 1, "ears": {"_count": 1}}, "his": {"_count": 3, "eye": {"_count": 1}, "advantage": {"_count": 1}, "hand": {"_count": 1}}, "the": {"_count": 4, "subject": {"_count": 1}, "cooler": {"_count": 1}, "point": {"_count": 2}}, "because": {"_count": 1, "Fudge": {"_count": 1}}, "cuttings": {"_count": 1, "": {"_count": 1}}, "attention": {"_count": 1, "seems": {"_count": 1}}, "charges": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "her": {"_count": 2, "though": {"_count": 1}, "Mark": {"_count": 1}}, "on": {"_count": 2, "unless": {"_count": 1}, "": {"_count": 1}}, "my": {"_count": 1, "company": {"_count": 1}}, "photographs": {"_count": 1, "then": {"_count": 1}}, "clippings": {"_count": 1, "": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "somewhat": {"_count": 1, "muffling": {"_count": 1}}, "still": {"_count": 1, "banging": {"_count": 1}}, "Luna": {"_count": 1, "is": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}, "blocking": {"_count": 2, "the": {"_count": 2}}, "him": {"_count": 1, "harder": {"_count": 1}}}, "ginside": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Whenever": {"_count": 5, "Harry": {"_count": 1, "passed": {"_count": 1}}, "this": {"_count": 1, "thought": {"_count": 1}}, "someone": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}}, "encouraging": {"_count": 6, "sort": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "factors": {"_count": 1, "to": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "exhorting": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "schedules": {"_count": 12, "and": {"_count": 2, "colorcoding": {"_count": 1}, "details": {"_count": 1}}, "for": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "at": {"_count": 1, "breakfast": {"_count": 1}}, "was": {"_count": 1, "more": {"_count": 1}}}, "colorcoding": {"_count": 1, "all": {"_count": 1, "her": {"_count": 1}}}, "minded": {"_count": 3, "but": {"_count": 1, "she": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "exams": {"_count": 51, "are": {"_count": 2, "ages": {"_count": 2}}, "to": {"_count": 2, "get": {"_count": 1}, "stand": {"_count": 1}}, "werent": {"_count": 1, "far": {"_count": 1}}, "were": {"_count": 2, "due": {"_count": 1}, "to": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "which": {"_count": 2, "had": {"_count": 1}, "would": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 6}, "?": {"_count": 3}}, "would": {"_count": 1, "start": {"_count": 1}}, "will": {"_count": 1, "therefore": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "in": {"_count": 2, "three": {"_count": 1}, "the": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "finished": {"_count": 1}}, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "that": {"_count": 1, "afternoon": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "coming": {"_count": 2, "up": {"_count": 1}, "": {"_count": 1}}, "she": {"_count": 1, "alone": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "if": {"_count": 1, "youre": {"_count": 1}}, "is": {"_count": 1, "staying": {"_count": 1}}, "drew": {"_count": 1, "even": {"_count": 1}}, "and": {"_count": 5, "wanted": {"_count": 1}, "as": {"_count": 1}, "every": {"_count": 1}, "were": {"_count": 1}, "the": {"_count": 1}}, "after": {"_count": 1, "Hogwarts": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 1, "said": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}}, "crazy": {"_count": 8, "": {"_count": 2, "?": {"_count": 2}}, "his": {"_count": 1, "hero": {"_count": 1}}, "about": {"_count": 1, "everything": {"_count": 1}}, "Bludger": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "urge": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Easter": {"_count": 22, "holidays": {"_count": 12, "werent": {"_count": 1}, "": {"_count": 7}, "he": {"_count": 1}, "were": {"_count": 1}, "start": {"_count": 1}, "and": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 2}}, "eggs": {"_count": 2, "that": {"_count": 1}, "from": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "egg": {"_count": 2, "should": {"_count": 1}, "broke": {"_count": 1}}, "break": {"_count": 1, "reading": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "relax": {"_count": 12, "with": {"_count": 1, "Hermione": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "or": {"_count": 1, "Madam": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "grip": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}}, "reciting": {"_count": 4, "the": {"_count": 2, "twelve": {"_count": 1}, "definition": {"_count": 1}}, "their": {"_count": 1, "names": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "Moaning": {"_count": 43, "and": {"_count": 1, "yawning": {"_count": 1}}, "Myrtle": {"_count": 26, "Who": {"_count": 1}, "burst": {"_count": 1}, "was": {"_count": 5}, "glided": {"_count": 1}, "sped": {"_count": 1}, "": {"_count": 3}, "had": {"_count": 2}, "he": {"_count": 1}, "who": {"_count": 2}, "so": {"_count": 1}, "zooming": {"_count": 1}, "asked": {"_count": 1}, "floating": {"_count": 1}, "actually": {"_count": 1}, "in": {"_count": 1}, "her": {"_count": 1}, "let": {"_count": 1}, "to": {"_count": 1}}, "Myrtles": {"_count": 15, "place": {"_count": 1}, "outoforder": {"_count": 1}, "bathroom": {"_count": 12}, "voice": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "longingly": {"_count": 12, "out": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 5, "the": {"_count": 1}, "life": {"_count": 1}, "this": {"_count": 1}, "their": {"_count": 1}, "traveling": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "slumping": {"_count": 1, "into": {"_count": 1}}}, "forgetmenot": {"_count": 2, "blue": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Dittany": {"_count": 3, "in": {"_count": 1, "One": {"_count": 1}}, "Bag": {"_count": 1, "right": {"_count": 1}}, "A": {"_count": 1, "small": {"_count": 1}}}, "Jus": {"_count": 20, "lookin": {"_count": 1, "he": {"_count": 1}}, "stood": {"_count": 1, "there": {"_count": 1}}, "thought": {"_count": 3, "itd": {"_count": 1}, "shed": {"_count": 1}, "wed": {"_count": 1}}, "got": {"_count": 1, "him": {"_count": 1}}, "give": {"_count": 1, "us": {"_count": 1}}, "try": {"_count": 1, "an": {"_count": 1}}, "nervous": {"_count": 1, "eh": {"_count": 1}}, "take": {"_count": 1, "off": {"_count": 1}}, "maybe": {"_count": 1, "them": {"_count": 1}}, "didn": {"_count": 1, "understand": {"_count": 1}}, "busy": {"_count": 1, "yeh": {"_count": 1}}, "a": {"_count": 1, "precaution": {"_count": 1}}, "fer": {"_count": 1, "stoppin": {"_count": 1}}, "passin": {"_count": 1, "through": {"_count": 1}}, "giant": {"_count": 1, "grubs": {"_count": 1}}, "bin": {"_count": 1, "visitin": {"_count": 1}}, "don": {"_count": 1, "believe": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}}, "shifty": {"_count": 7, "voice": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "it": {"_count": 1}}, "anxious": {"_count": 1, "look": {"_count": 1}}, "look": {"_count": 1, "too": {"_count": 1}}, "grin": {"_count": 1, "that": {"_count": 1}}}, "whatre": {"_count": 8, "you": {"_count": 6, "lot": {"_count": 1}, "": {"_count": 2}, "doing": {"_count": 2}, "up": {"_count": 1}}, "we": {"_count": 1, "SHH": {"_count": 1}}, "they": {"_count": 1, "playing": {"_count": 1}}}, "suspicious": {"_count": 40, "": {"_count": 13, ".": {"_count": 13}}, "circumstances": {"_count": 1, "here": {"_count": 1}}, "if": {"_count": 4, "I": {"_count": 1}, "you": {"_count": 1}, "people": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 2, "tried": {"_count": 1}, "he": {"_count": 1}}, "object": {"_count": 1, "like": {"_count": 1}}, "again": {"_count": 1, "you": {"_count": 1}}, "looks": {"_count": 2, "down": {"_count": 1}, "as": {"_count": 1}}, "I": {"_count": 1, "bought": {"_count": 1}}, "look": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "way": {"_count": 1, "when": {"_count": 1}}, "of": {"_count": 2, "anybody": {"_count": 1}, "this": {"_count": 1}}, "deaths": {"_count": 1, "yet": {"_count": 1}}, "sit": {"_count": 1, "down": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "creatures": {"_count": 1, "whose": {"_count": 1}}, "signs": {"_count": 1, "": {"_count": 1}}, "times": {"_count": 1, "to": {"_count": 1}}, "within": {"_count": 1, "or": {"_count": 1}}, "breathed": {"_count": 1, "Hermione": {"_count": 1}}, "Lancelot": {"_count": 1, "thought": {"_count": 1}}}, "impressively": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "it": {"_count": 1, "comes": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "and": {"_count": 1, "took": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "St": {"_count": 68, "Shhhh": {"_count": 1, "Hagrid": {"_count": 1}}, "": {"_count": 67, ".": {"_count": 67}}}, "Shhhh": {"_count": 2, "Hagrid": {"_count": 1, "looked": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "shoutin": {"_count": 1, "about": {"_count": 1, "it": {"_count": 1}}}, "SHHHH": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "promisin": {"_count": 1, "Ill": {"_count": 1, "tell": {"_count": 1}}}, "rabbitin": {"_count": 1, "about": {"_count": 1, "it": {"_count": 1}}}, "aren": {"_count": 12, "spposed": {"_count": 1, "ter": {"_count": 1}}, "they": {"_count": 4, "": {"_count": 3}, "eh": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 1}, "checkin": {"_count": 1}}, "bothered": {"_count": 1, "where": {"_count": 1}}, "unlucky": {"_count": 1, "theyre": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 1, "yeh": {"_count": 1}}}, "Theyll": {"_count": 43, "think": {"_count": 1, "Ive": {"_count": 1}}, "all": {"_count": 1, "forget": {"_count": 1}}, "love": {"_count": 1, "him": {"_count": 1}}, "be": {"_count": 16, "back": {"_count": 1}, "furious": {"_count": 1}, "very": {"_count": 1}, "removed": {"_count": 1}, "driving": {"_count": 1}, "talking": {"_count": 1}, "fine": {"_count": 1}, "worried": {"_count": 1}, "the": {"_count": 1}, "really": {"_count": 1}, "keeping": {"_count": 1}, "all": {"_count": 2}, "murdered": {"_count": 1}, "here": {"_count": 1}, "in": {"_count": 1}}, "catch": {"_count": 1, "the": {"_count": 1}}, "repel": {"_count": 1, "water": {"_count": 1}}, "reach": {"_count": 1, "Flitwicks": {"_count": 1}}, "take": {"_count": 2, "the": {"_count": 2}}, "find": {"_count": 1, "a": {"_count": 1}}, "have": {"_count": 3, "Disapparated": {"_count": 1}, "trouble": {"_count": 1}, "told": {"_count": 1}}, "just": {"_count": 1, "have": {"_count": 1}}, "get": {"_count": 1, "a": {"_count": 1}}, "wake": {"_count": 1, "him": {"_count": 1}}, "ask": {"_count": 1, "awkward": {"_count": 1}}, "come": {"_count": 2, "flying": {"_count": 1}, "back": {"_count": 1}}, "know": {"_count": 2, "were": {"_count": 1}, "Sirius": {"_count": 1}}, "need": {"_count": 2, "loads": {"_count": 1}, "help": {"_count": 1}}, "make": {"_count": 1, "do": {"_count": 1}}, "say": {"_count": 1, "Snape": {"_count": 1}}, "want": {"_count": 2, "to": {"_count": 2}}, "kill": {"_count": 1, "us": {"_count": 1}}}, "thoughtfully": {"_count": 33, "": {"_count": 23, ".": {"_count": 23}}, "to": {"_count": 1, "Professor": {"_count": 1}}, "at": {"_count": 3, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "spreading": {"_count": 1, "marmalade": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "section": {"_count": 10, "he": {"_count": 1, "was": {"_count": 1}}, "13": {"_count": 2, "of": {"_count": 2}}, "nineteen": {"_count": 1, "or": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "thirteen": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "and": {"_count": 1, "even": {"_count": 1}}}, "Dragons": {"_count": 7, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "Too": {"_count": 1, "Much": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "comprised": {"_count": 1, "entirely": {"_count": 1}}}, "Species": {"_count": 1, "of": {"_count": 1, "Great": {"_count": 1}}}, "Ireland": {"_count": 26, "From": {"_count": 1, "Egg": {"_count": 1}}, "versus": {"_count": 1, "Bulgaria": {"_count": 1}}, "said": {"_count": 1, "Charlie": {"_count": 1}}, "has": {"_count": 1, "got": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "they": {"_count": 1, "set": {"_count": 1}}, "to": {"_count": 1, "win": {"_count": 1}}, "wins": {"_count": 1, "but": {"_count": 1}}, "will": {"_count": 1, "win": {"_count": 1}}, "red": {"_count": 1, "for": {"_count": 1}}, "have": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 3}, ".": {"_count": 1}}, "had": {"_count": 2, "scored": {"_count": 1}, "pulled": {"_count": 1}}, "new": {"_count": 1, "heart": {"_count": 1}}, "Krum": {"_count": 1, "was": {"_count": 1}}, "supporters": {"_count": 1, "grew": {"_count": 1}}, "were": {"_count": 1, "a": {"_count": 1}}, "rosette": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "Ron": {"_count": 1, "a": {"_count": 1}}, "would": {"_count": 1, "win": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}}, "Egg": {"_count": 2, "to": {"_count": 1, "Inferno": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Inferno": {"_count": 1, "A": {"_count": 1, "Dragon": {"_count": 1}}}, "Keepers": {"_count": 6, "Guide": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 1, "hex": {"_count": 1}}, "until": {"_count": 1, "last": {"_count": 1}}, "gloves": {"_count": 2, "and": {"_count": 1}, "Harry": {"_count": 1}}, "got": {"_count": 1, "hold": {"_count": 1}}}, "laws": {"_count": 15, "said": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "theres": {"_count": 1, "no": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "doesnt": {"_count": 1}}, "to": {"_count": 1, "effect": {"_count": 1}}, "laid": {"_count": 1, "down": {"_count": 1}}, "we": {"_count": 1, "do": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "govern": {"_count": 1, "wand": {"_count": 1}}, "of": {"_count": 1, "magic": {"_count": 1}}}, "breeding": {"_count": 6, "was": {"_count": 1, "outlawed": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "creatures": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "No": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "outlawed": {"_count": 2, "by": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Warlocks": {"_count": 4, "Convention": {"_count": 1, "of": {"_count": 1}}, "Statute": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "informing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Convention": {"_count": 2, "of": {"_count": 2, "1709": {"_count": 1}, "1289": {"_count": 1}}}, "1709": {"_count": 1, "everyone": {"_count": 1, "knows": {"_count": 1}}}, "tame": {"_count": 6, "dragons": {"_count": 1, "its": {"_count": 1}}, "werewolf": {"_count": 1, "You": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "after": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "to": {"_count": 1}}}, "burns": {"_count": 10, "Charlies": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 4, "cuts": {"_count": 1}, "things": {"_count": 1}, "choose": {"_count": 1}, "scratches": {"_count": 1}}, "embedded": {"_count": 1, "spines": {"_count": 1}}, "covering": {"_count": 1, "his": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}}, "Common": {"_count": 7, "Welsh": {"_count": 2, "Green": {"_count": 2}}, "blood": {"_count": 1, "": {"_count": 1}}, "Magical": {"_count": 2, "Ailments": {"_count": 2}}, "Curses": {"_count": 1, "and": {"_count": 1}}, "Apparition": {"_count": 1, "Mistakes": {"_count": 1}}}, "Welsh": {"_count": 3, "Green": {"_count": 3, "and": {"_count": 1}, "over": {"_count": 1}, "": {"_count": 1}}}, "Green": {"_count": 7, "and": {"_count": 1, "Hebridean": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "kindly": {"_count": 1, "investigate": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "jets": {"_count": 1, "of": {"_count": 1}}}, "Hebridean": {"_count": 1, "Blacks": {"_count": 1, "": {"_count": 1}}}, "Blacks": {"_count": 67, "": {"_count": 2, ".": {"_count": 2}}, "true": {"_count": 1, "identity": {"_count": 1}}, "gaunt": {"_count": 2, "face": {"_count": 2}}, "not": {"_count": 3, "going": {"_count": 1}, "fool": {"_count": 1}, "worth": {"_count": 1}}, "mad": {"_count": 1, "and": {"_count": 1}}, "after": {"_count": 2, "But": {"_count": 1}, "Harry": {"_count": 1}}, "been": {"_count": 3, "talking": {"_count": 1}, "sighted": {"_count": 1}, "in": {"_count": 1}}, "chances": {"_count": 1, "of": {"_count": 1}}, "already": {"_count": 1, "murdered": {"_count": 1}}, "still": {"_count": 2, "in": {"_count": 2}}, "capable": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 1, "might": {"_count": 1}}, "a": {"_count": 2, "madman": {"_count": 1}, "known": {"_count": 1}}, "hands": {"_count": 1, "if": {"_count": 1}}, "breakin": {"_count": 1, "she": {"_count": 1}}, "second": {"_count": 1, "breakin": {"_count": 1}}, "shadowed": {"_count": 1, "eyes": {"_count": 1}}, "head": {"_count": 1, "and": {"_count": 1}}, "hand": {"_count": 1, "sent": {"_count": 1}}, "free": {"_count": 1, "hand": {"_count": 1}}, "wand": {"_count": 2, "hand": {"_count": 1}, "arm": {"_count": 1}}, "heart": {"_count": 2, "": {"_count": 2}}, "chest": {"_count": 2, "looking": {"_count": 1}, "and": {"_count": 1}}, "left": {"_count": 1, "eye": {"_count": 1}}, "robes": {"_count": 1, "and": {"_count": 1}}, "face": {"_count": 5, "was": {"_count": 1}, "": {"_count": 1}, "left": {"_count": 1}, "looked": {"_count": 1}, "contorted": {"_count": 1}}, "side": {"_count": 1, "seized": {"_count": 1}}, "leg": {"_count": 1, "and": {"_count": 1}}, "weight": {"_count": 1, "fell": {"_count": 1}}, "eyes": {"_count": 2, "": {"_count": 2}}, "work": {"_count": 1, "I": {"_count": 1}}, "innocent": {"_count": 1, "": {"_count": 1}}, "done": {"_count": 1, "a": {"_count": 1}}, "story": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "except": {"_count": 1}}, "telling": {"_count": 1, "the": {"_count": 1}}, "earsplitting": {"_count": 1, "shrieks": {"_count": 1}}, "screeches": {"_count": 3, "echoed": {"_count": 1}, "started": {"_count": 1}, "were": {"_count": 1}}, "screaming": {"_count": 1, "had": {"_count": 1}}, "portrait": {"_count": 1, "was": {"_count": 1}}, "audacious": {"_count": 1, "escape": {"_count": 1}}, "cousin": {"_count": 2, "Bellatrix": {"_count": 1}, "Narcissa": {"_count": 1}}, "is": {"_count": 1, "dead": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "theby": {"_count": 1}}, "Kreacher": {"_count": 1, "wants": {"_count": 1}}}, "hushing": {"_count": 4, "them": {"_count": 1, "up": {"_count": 1}}, "noises": {"_count": 2, "with": {"_count": 1}, "every": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "earths": {"_count": 3, "Hagrid": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 1, "Squib": {"_count": 1}}, "she": {"_count": 1, "doing": {"_count": 1}}}, "gamekeepers": {"_count": 2, "hut": {"_count": 1, "an": {"_count": 1}}, "cabin": {"_count": 1, "came": {"_count": 1}}}, "stifling": {"_count": 6, "hot": {"_count": 1, "inside": {"_count": 1}}, "tower": {"_count": 2, "room": {"_count": 2}}, "classroom": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "yawn": {"_count": 1}}, "all": {"_count": 1, "further": {"_count": 1}}}, "stoat": {"_count": 2, "sandwiches": {"_count": 1, "which": {"_count": 1}}, "sandwich": {"_count": 1, "is": {"_count": 1}}}, "refused": {"_count": 54, "": {"_count": 4, ".": {"_count": 4}}, "to": {"_count": 40, "do": {"_count": 2}, "call": {"_count": 1}, "let": {"_count": 2}, "pop": {"_count": 1}, "speak": {"_count": 3}, "say": {"_count": 2}, "see": {"_count": 1}, "eat": {"_count": 2}, "answer": {"_count": 1}, "stop": {"_count": 1}, "buy": {"_count": 1}, "join": {"_count": 2}, "lend": {"_count": 1}, "appoint": {"_count": 1}, "listen": {"_count": 1}, "get": {"_count": 1}, "give": {"_count": 1}, "comment": {"_count": 1}, "drop": {"_count": 1}, "talk": {"_count": 1}, "raise": {"_count": 1}, "look": {"_count": 1}, "sit": {"_count": 1}, "permit": {"_count": 1}, "remain": {"_count": 1}, "help": {"_count": 1}, "believe": {"_count": 1}, "pass": {"_count": 1}, "reappear": {"_count": 1}, "be": {"_count": 1}, "tell": {"_count": 1}, "back": {"_count": 1}, "return": {"_count": 1}}, "he": {"_count": 1, "gave": {"_count": 1}}, "pointblank": {"_count": 2, "to": {"_count": 2}}, "with": {"_count": 1, "a": {"_count": 1}}, "even": {"_count": 1, "to": {"_count": 1}}, "my": {"_count": 1, "company": {"_count": 1}}, "all": {"_count": 1, "offers": {"_count": 1}}, "the": {"_count": 1, "post": {"_count": 1}}, "what": {"_count": 1, "I": {"_count": 1}}, "Hermiones": {"_count": 1, "offer": {"_count": 1}}}, "bush": {"_count": 20, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "fat": {"_count": 1}}, "shuddered": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 3, "up": {"_count": 1}, "pulled": {"_count": 1}, "climbed": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "Ill": {"_count": 1, "explain": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "Mrs": {"_count": 1, "Figg": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "or": {"_count": 1, "tree": {"_count": 1}}, "to": {"_count": 1, "which": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "behind": {"_count": 1, "which": {"_count": 1}}}, "frowned": {"_count": 27, "at": {"_count": 13, "him": {"_count": 4}, "Ron": {"_count": 3}, "Harry": {"_count": 2}, "the": {"_count": 3}, "her": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 2, "said": {"_count": 1}, "then": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 1, "puzzlement": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "one": {"_count": 1}}}, "O": {"_count": 86, "course": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 78, ".": {"_count": 78}}, "o": {"_count": 1, "course": {"_count": 1}}, "Come": {"_count": 1, "All": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 1, "\u2018Outstanding": {"_count": 1}}, "THAT": {"_count": 1, "AN": {"_count": 1}}, "Poor": {"_count": 1, "P": {"_count": 1}}, "R": {"_count": 1, "G": {"_count": 1}}}, "Number": {"_count": 18, "one": {"_count": 1, "I": {"_count": 1}}, "two": {"_count": 1, "yeh": {"_count": 1}}, "Seven": {"_count": 1, "who": {"_count": 1}}, "Four": {"_count": 1, "Privet": {"_count": 1}}, "Twentyfour": {"_count": 2, "": {"_count": 2}}, "Twenty": {"_count": 1, "five": {"_count": 1}}, "twelve": {"_count": 4, "was": {"_count": 2}, "Grimmauld": {"_count": 2}}, "Twentysix": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "Twentyseven": {"_count": 1, "": {"_count": 1}}, "Twentythree": {"_count": 1, "the": {"_count": 1}}, "Twentyeight": {"_count": 1, "": {"_count": 1}}, "One": {"_count": 2, "Harry": {"_count": 1}, "that": {"_count": 1}}}, "sppose": {"_count": 1, "yehve": {"_count": 1, "worked": {"_count": 1}}}, "Beats": {"_count": 2, "me": {"_count": 2, "how": {"_count": 1}, "ow": {"_count": 1}}}, "flattering": {"_count": 6, "voice": {"_count": 1, "": {"_count": 1}}, "question": {"_count": 1, "": {"_count": 1}}, "nonsense": {"_count": 1, "humans": {"_count": 1}}, "interest": {"_count": 1, "stopped": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "spose": {"_count": 25, "it": {"_count": 2, "could": {"_count": 1}, "was": {"_count": 1}}, "they": {"_count": 1, "might": {"_count": 1}}, "Ron": {"_count": 1, "groaned": {"_count": 1}}, "said": {"_count": 6, "Harry": {"_count": 4}, "Ron": {"_count": 2}}, "he": {"_count": 1, "asked": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hes": {"_count": 1, "older": {"_count": 1}}, "so": {"_count": 1, "said": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "Filch": {"_count": 1, "is": {"_count": 1}}, "Lord": {"_count": 1, "Voldemorts": {"_count": 1}}, "you": {"_count": 1, "think": {"_count": 1}}, "Hagrid": {"_count": 1, "ll": {"_count": 1}}, "Id": {"_count": 1, "better": {"_count": 1}}, "mumbled": {"_count": 1, "Ron": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}}, "lets": {"_count": 126, "see": {"_count": 10, "": {"_count": 2}, "what": {"_count": 2}, "how": {"_count": 3}, "who": {"_count": 2}, "seven": {"_count": 1}}, "go": {"_count": 38, "": {"_count": 15}, "George": {"_count": 1}, "outside": {"_count": 1}, "said": {"_count": 2}, "and": {"_count": 6}, "for": {"_count": 1}, "down": {"_count": 2}, "And": {"_count": 1}, "They": {"_count": 1}, "to": {"_count": 2}, "please": {"_count": 1}, "Now": {"_count": 1}, "okay": {"_count": 1}, "under": {"_count": 1}, "back": {"_count": 1}, "its": {"_count": 1}}, "Dumbledore": {"_count": 1, "down": {"_count": 1}}, "kick": {"_count": 1, "her": {"_count": 1}}, "Dobby": {"_count": 1, "get": {"_count": 1}}, "get": {"_count": 24, "outta": {"_count": 1}, "out": {"_count": 8}, "this": {"_count": 2}, "some": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 3}, "down": {"_count": 2}, "back": {"_count": 2}, "going": {"_count": 2}, "yeh": {"_count": 1}, "upstairs": {"_count": 1}}, "have": {"_count": 2, "a": {"_count": 1}, "fun": {"_count": 1}}, "face": {"_count": 4, "it": {"_count": 4}}, "visit": {"_count": 1, "Hagrid": {"_count": 1}}, "drink": {"_count": 1, "to": {"_count": 1}}, "hope": {"_count": 2, "not": {"_count": 1}, "he": {"_count": 1}}, "hurry": {"_count": 2, "Hermione": {"_count": 1}, "home": {"_count": 1}}, "move": {"_count": 2, "theyre": {"_count": 1}, "to": {"_count": 1}}, "do": {"_count": 2, "those": {"_count": 1}, "it": {"_count": 1}}, "Snape": {"_count": 1, "stay": {"_count": 1}}, "just": {"_count": 2, "say": {"_count": 1}, "check": {"_count": 1}}, "check": {"_count": 1, "how": {"_count": 1}}, "say": {"_count": 5, "Sirius": {"_count": 1}, "for": {"_count": 2}, "we": {"_count": 1}, "": {"_count": 1}}, "try": {"_count": 5, "that": {"_count": 1}, "again": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 2}}, "not": {"_count": 3, "leave": {"_count": 1}, "talk": {"_count": 1}, "lose": {"_count": 1}}, "think": {"_count": 2, "": {"_count": 1}, "what": {"_count": 1}}, "swap": {"_count": 1, "said": {"_count": 1}}, "make": {"_count": 2, "it": {"_count": 2}}, "the": {"_count": 2, "Quaffle": {"_count": 2}}, "all": {"_count": 2, "": {"_count": 1}, "have": {"_count": 1}}, "hear": {"_count": 3, "what": {"_count": 1}, "the": {"_count": 2}}, "find": {"_count": 2, "the": {"_count": 1}, "another": {"_count": 1}}, "wait": {"_count": 1, "and": {"_count": 1}}, "grab": {"_count": 1, "a": {"_count": 1}}, "keep": {"_count": 1, "looking": {"_count": 1}}, "take": {"_count": 1, "a": {"_count": 1}}}, "protecting": {"_count": 6, "the": {"_count": 2, "Stone": {"_count": 1}, "Mug": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}}, "guarded": {"_count": 11, "it": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 3, "creatures": {"_count": 1}, "many": {"_count": 1}, "a": {"_count": 1}}, "house": {"_count": 1, "that": {"_count": 1}}, "replenished": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "her": {"_count": 1, "collection": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "entrance": {"_count": 1}}}, "fiddling": {"_count": 7, "nervously": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "around": {"_count": 2, "with": {"_count": 2}}, "about": {"_count": 1, "with": {"_count": 1}}}, "Won": {"_count": 4, "it": {"_count": 1, "said": {"_count": 1}}, "Won": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "Wons": {"_count": 1, "judgment": {"_count": 1}}}, "havin": {"_count": 6, "a": {"_count": 5, "few": {"_count": 2}, "cuppa": {"_count": 1}, "decent": {"_count": 1}, "good": {"_count": 1}}, "fun": {"_count": 1, "don": {"_count": 1}}}, "drinks": {"_count": 21, "an": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "shall": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 5, "hear": {"_count": 1}, "cakes": {"_count": 1}, "she": {"_count": 1}, "and": {"_count": 1}, "books": {"_count": 1}}, "can": {"_count": 1, "and": {"_count": 1}}, "tonight": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 1, "youd": {"_count": 1}}, "table": {"_count": 1, "he": {"_count": 1}}}, "honest": {"_count": 25, "": {"_count": 5, ".": {"_count": 5}}, "facts": {"_count": 1, "have": {"_count": 1}}, "with": {"_count": 4, "himself": {"_count": 2}, "him": {"_count": 1}, "you": {"_count": 1}}, "Harry": {"_count": 2, "were": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 4, "Hagrid": {"_count": 1}, "Harry": {"_count": 2}, "Ron": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "days": {"_count": 1, "work": {"_count": 1}}, "answer": {"_count": 2, "was": {"_count": 2}}, "things": {"_count": 1, "youve": {"_count": 1}}, "what": {"_count": 1, "if": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "I": {"_count": 1, "never": {"_count": 1}}}, "hatched": {"_count": 5, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "daring": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "doin": {"_count": 15, "some": {"_count": 1, "readin": {"_count": 1}}, "down": {"_count": 3, "there": {"_count": 2}, "here": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 2}}, "there": {"_count": 1, "": {"_count": 1}}, "em": {"_count": 1, "an": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 2, "that": {"_count": 1}, "em": {"_count": 1}}, "wanderin": {"_count": 1, "off": {"_count": 1}}, "thestrals": {"_count": 1, "today": {"_count": 1}}, "Dumbledore": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "readin": {"_count": 3, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "more": {"_count": 1, "inter": {"_count": 1}}}, "Breeding": {"_count": 2, "for": {"_count": 1, "Pleasure": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}}, "Pleasure": {"_count": 1, "and": {"_count": 1, "Profit": {"_count": 1}}}, "Profit": {"_count": 1, "its": {"_count": 1, "a": {"_count": 1}}}, "breathe": {"_count": 34, "on": {"_count": 1, "em": {"_count": 1}}, "properly": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "fire": {"_count": 3, "than": {"_count": 1}, "for": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 3}, "?": {"_count": 1}}, "a": {"_count": 2, "word": {"_count": 2}}, "steam": {"_count": 1, "": {"_count": 1}}, "underwater": {"_count": 2, "": {"_count": 1}, "sir": {"_count": 1}}, "he": {"_count": 1, "needed": {"_count": 1}}, "freely": {"_count": 1, "again": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "through": {"_count": 1, "watering": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "laughing": {"_count": 1}}, "Harry": {"_count": 3, "remained": {"_count": 1}, "backed": {"_count": 1}, "edged": {"_count": 1}}, "or": {"_count": 2, "see": {"_count": 2}}, "trembling": {"_count": 1, "so": {"_count": 1}}, "Could": {"_count": 1, "luck": {"_count": 1}}, "Then": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}, "Death": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}}, "hatches": {"_count": 1, "feed": {"_count": 1, "it": {"_count": 1}}}, "feed": {"_count": 18, "it": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "Norbert": {"_count": 1, "who": {"_count": 1}}, "the": {"_count": 3, "chickens": {"_count": 2}, "goats": {"_count": 1}}, "Fang": {"_count": 1, "while": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "on": {"_count": 1, "you": {"_count": 1}}, "him": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 1, "clean": {"_count": 1}}, "them": {"_count": 1, "toward": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "ter": {"_count": 1, "Aragog": {"_count": 1}}, "giant": {"_count": 1, "grubs": {"_count": 1}}, "off": {"_count": 1, "fear": {"_count": 1}}, "you": {"_count": 2, "to": {"_count": 1}, "up": {"_count": 1}}}, "diffrent": {"_count": 6, "eggs": {"_count": 1, "what": {"_count": 1}}, "directions": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "Ive": {"_count": 1}}, "tribes": {"_count": 1, "from": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Norwegian": {"_count": 5, "Ridgeback": {"_count": 4, "": {"_count": 2}, "but": {"_count": 1}, "by": {"_count": 1}}, "Ridgebacks": {"_count": 1, "grow": {"_count": 1}}}, "Ridgeback": {"_count": 5, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "humming": {"_count": 12, "merrily": {"_count": 1, "as": {"_count": 1}}, "placidly": {"_count": 1, "to": {"_count": 1}}, "loudly": {"_count": 1, "and": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "gently": {"_count": 1, "somewhere": {"_count": 1}}, "tunelessly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "smiling": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "herself": {"_count": 1}}, "quietly": {"_count": 1, "apparently": {"_count": 1}}, "Hagrid": {"_count": 1, "would": {"_count": 1}}}, "stoked": {"_count": 2, "the": {"_count": 2, "fire": {"_count": 2}}}, "illegal": {"_count": 32, "dragon": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "eggs": {"_count": 1}}, "car": {"_count": 1, "halfway": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "Dark": {"_count": 1, "curses": {"_count": 1}}, "curse": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "Professor": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "Ill": {"_count": 1, "have": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}, "magic": {"_count": 2, "": {"_count": 1}, "three": {"_count": 1}}, "broom": {"_count": 1, "tampering": {"_count": 1}}, "curses": {"_count": 1, "in": {"_count": 1}}, "defense": {"_count": 1, "group": {"_count": 1}}, "secret": {"_count": 1, "Defense": {"_count": 1}}, "Bludger": {"_count": 1, "attack": {"_count": 1}}, "student": {"_count": 1, "organization": {"_count": 1}}, "society": {"_count": 1, "whose": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "all": {"_count": 1, "those": {"_count": 1}}, "but": {"_count": 1, "Umbridge": {"_count": 1}}, "and": {"_count": 1, "thought": {"_count": 1}}, "now": {"_count": 1, "is": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "trade": {"_count": 1, "in": {"_count": 1}}, "hex": {"_count": 1, "upon": {"_count": 1}}, "before": {"_count": 1, "seizing": {"_count": 1}}}, "peaceful": {"_count": 10, "life": {"_count": 1, "Ron": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "night": {"_count": 1, "air": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "holiday": {"_count": 1, "had": {"_count": 1}}, "moment": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "empty": {"_count": 1}, "untroubled": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}}, "hatching": {"_count": 6, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "Aragog": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "unhatching": {"_count": 1}}, "all": {"_count": 1, "their": {"_count": 1}}}, "skip": {"_count": 9, "Herbology": {"_count": 1, "and": {"_count": 1}}, "dessert": {"_count": 1, "and": {"_count": 1}}, "Divination": {"_count": 1, "to": {"_count": 1}}, "detention": {"_count": 1, "that": {"_count": 1}}, "er": {"_count": 1, "three": {"_count": 1}}, "his": {"_count": 1, "ears": {"_count": 1}}, "off": {"_count": 1, "home": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "argued": {"_count": 14, "all": {"_count": 2, "the": {"_count": 2}}, "but": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 3, "himself": {"_count": 1}, "Snape": {"_count": 1}, "Dean": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "day": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "whispers": {"_count": 1}}}, "trowels": {"_count": 1, "at": {"_count": 1, "once": {"_count": 1}}}, "greeted": {"_count": 27, "them": {"_count": 6, "looking": {"_count": 1}, "cheerfully": {"_count": 1}, "mainly": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}, "through": {"_count": 1}}, "him": {"_count": 4, "funny": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "this": {"_count": 1, "news": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "with": {"_count": 4, "applause": {"_count": 1}, "enthusiasm": {"_count": 1}, "jeers": {"_count": 1}, "relief": {"_count": 1}}, "these": {"_count": 1, "words": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "by": {"_count": 1, "enthusiasm": {"_count": 1}}, "the": {"_count": 1, "end": {"_count": 1}}, "Tonks": {"_count": 1, "and": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "particularly": {"_count": 1}}, "his": {"_count": 1, "appearance": {"_count": 1}}, "Death": {"_count": 1, "as": {"_count": 1}}, "Travers": {"_count": 1, "who": {"_count": 1}}}, "ushered": {"_count": 9, "them": {"_count": 3, "inside": {"_count": 1}, "out": {"_count": 1}, "into": {"_count": 1}}, "Dobby": {"_count": 1, "back": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "onstage": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "through": {"_count": 1}}, "inside": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 1, "Delacours": {"_count": 1}}}, "clicking": {"_count": 27, "noise": {"_count": 5, "was": {"_count": 1}, "": {"_count": 2}, "nearby": {"_count": 1}, "and": {"_count": 1}}, "away": {"_count": 2, "madly": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 3, "saw": {"_count": 1}, "the": {"_count": 1}, "dancing": {"_count": 1}}, "their": {"_count": 2, "pincers": {"_count": 1}, "many": {"_count": 1}}, "his": {"_count": 1, "pincers": {"_count": 1}}, "pincers": {"_count": 1, "": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "rustling": {"_count": 1}}, "its": {"_count": 1, "pincers": {"_count": 1}}, "her": {"_count": 4, "beak": {"_count": 2}, "tongue": {"_count": 1}, "fingers": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "every": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "the": {"_count": 1, "Deluminator": {"_count": 1}}}, "bated": {"_count": 5, "breath": {"_count": 5, "": {"_count": 3}, "for": {"_count": 1}, "Malfoy": {"_count": 1}}}, "spiny": {"_count": 1, "wings": {"_count": 1, "were": {"_count": 1}}}, "stubs": {"_count": 6, "of": {"_count": 4, "horns": {"_count": 1}, "a": {"_count": 1}, "candles": {"_count": 2}}, "still": {"_count": 1, "resting": {"_count": 1}}, "that": {"_count": 1, "stood": {"_count": 1}}}, "sneezed": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "almost": {"_count": 1}}, "and": {"_count": 1, "closed": {"_count": 1}}}, "Isnt": {"_count": 28, "he": {"_count": 6, "beautiful": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "cute": {"_count": 1}, "vith": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 8, "obvious": {"_count": 3}, "though": {"_count": 1}, "bad": {"_count": 1}, "the": {"_count": 1}, "still": {"_count": 1}, "Harry": {"_count": 1}}, "there": {"_count": 3, "anything": {"_count": 1}, "any": {"_count": 1}, "just": {"_count": 1}}, "that": {"_count": 5, "what": {"_count": 1}, "the": {"_count": 2}, "Hermes": {"_count": 1}, "a": {"_count": 1}}, "seven": {"_count": 1, "the": {"_count": 1}}, "anyone": {"_count": 2, "else": {"_count": 1}, "at": {"_count": 1}}, "she": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "your": {"_count": 1, "wife": {"_count": 1}}}, "stroke": {"_count": 17, "the": {"_count": 3, "dragons": {"_count": 1}, "sleek": {"_count": 1}, "feathery": {"_count": 1}}, "em": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 7, "brilliance": {"_count": 2}, "luck": {"_count": 2}, "good": {"_count": 1}, "inspiration": {"_count": 2}}, "Hedwig": {"_count": 1, "but": {"_count": 1}}, "his": {"_count": 1, "feathery": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "he": {"_count": 1}}, "Neville": {"_count": 1, "sliced": {"_count": 1}}}, "mommy": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Ridgebacks": {"_count": 1, "grow": {"_count": 1, "exactly": {"_count": 1}}}, "drained": {"_count": 32, "from": {"_count": 5, "his": {"_count": 1}, "Karkaroffs": {"_count": 1}, "it": {"_count": 2}, "her": {"_count": 1}}, "the": {"_count": 6, "little": {"_count": 1}, "cups": {"_count": 1}, "goblet": {"_count": 2}, "last": {"_count": 1}, "glass": {"_count": 1}}, "his": {"_count": 6, "teacup": {"_count": 1}, "tankard": {"_count": 1}, "face": {"_count": 1}, "mug": {"_count": 1}, "own": {"_count": 1}, "goblet": {"_count": 1}}, "and": {"_count": 2, "strangely": {"_count": 1}, "exhausted": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "exhausted": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 3, "glass": {"_count": 1}, "own": {"_count": 1}, "goblet": {"_count": 1}}, "of": {"_count": 3, "color": {"_count": 2}, "the": {"_count": 1}}, "every": {"_count": 1, "last": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "found": {"_count": 1}}}, "runnin": {"_count": 2, "back": {"_count": 1, "up": {"_count": 1}}, "down": {"_count": 1, "from": {"_count": 1}}}, "darkened": {"_count": 13, "hut": {"_count": 1, "trying": {"_count": 1}}, "room": {"_count": 3, "": {"_count": 2}, "came": {"_count": 1}}, "office": {"_count": 1, "there": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "lanterns": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "Snape": {"_count": 1}}, "staircase": {"_count": 1, "": {"_count": 1}}}, "furling": {"_count": 2, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "unfurling": {"_count": 1}}}, "gamekeeping": {"_count": 2, "duties": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}}, "duties": {"_count": 6, "because": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}, "also": {"_count": 1, "became": {"_count": 1}}}, "Norbert": {"_count": 32, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "": {"_count": 12, "!": {"_count": 3}, ".": {"_count": 6}, "?": {"_count": 3}}, "to": {"_count": 1, "him": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 2, "Malfoy": {"_count": 1}, "the": {"_count": 1}}, "had": {"_count": 2, "just": {"_count": 1}, "been": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "packed": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "thrashing": {"_count": 1, "about": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "safely": {"_count": 1, "into": {"_count": 1}}, "was": {"_count": 3, "going": {"_count": 1}, "off": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "doesnt": {"_count": 1}}, "doin": {"_count": 1, "": {"_count": 1}}}, "marbles": {"_count": 4, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "My": {"_count": 1, "gran": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Norberts": {"_count": 4, "going": {"_count": 1, "to": {"_count": 1}}, "fangs": {"_count": 1, "were": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "girl": {"_count": 1}}}, "dump": {"_count": 3, "him": {"_count": 1, "cant": {"_count": 1}}, "my": {"_count": 1, "stuff": {"_count": 1}}, "her": {"_count": 1, "and": {"_count": 1}}}, "Studying": {"_count": 2, "dragons": {"_count": 1, "": {"_count": 1}}, "hard": {"_count": 1, "": {"_count": 1}}}, "chimed": {"_count": 7, "midnight": {"_count": 2, "when": {"_count": 1}, "behind": {"_count": 1}}, "somewhere": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "Professor": {"_count": 1}}, "eleven": {"_count": 2, "oclock": {"_count": 2}}, "eight": {"_count": 1, "": {"_count": 1}}}, "fluffy": {"_count": 22, "little": {"_count": 2, "bunny": {"_count": 1}, "bunnies": {"_count": 1}}, "cloud": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "pair": {"_count": 1, "over": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "Snitch": {"_count": 1, "": {"_count": 1}}, "blankets": {"_count": 1, "": {"_count": 1}}, "white": {"_count": 3, "towels": {"_count": 1}, "hair": {"_count": 1}, "caps": {"_count": 1}}, "towels": {"_count": 1, "the": {"_count": 1}}, "black": {"_count": 1, "creatures": {"_count": 1}}, "pink": {"_count": 4, "cardigan": {"_count": 3}, "feather": {"_count": 1}}, "slippers": {"_count": 1, "wearing": {"_count": 1}}, "ginger": {"_count": 1, "cat": {"_count": 1}}, "as": {"_count": 1, "cotton": {"_count": 1}}, "silver": {"_count": 1, "cat": {"_count": 1}}}, "lullaby": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Shell": {"_count": 28, "have": {"_count": 2, "Charlies": {"_count": 1}, "put": {"_count": 1}}, "be": {"_count": 8, "there": {"_count": 1}, "after": {"_count": 1}, "fine": {"_count": 1}, "in": {"_count": 1}, "at": {"_count": 1}, "perfectly": {"_count": 2}, "all": {"_count": 1}}, "wander": {"_count": 1, "back": {"_count": 1}}, "twist": {"_count": 1, "everything": {"_count": 1}}, "never": {"_count": 1, "be": {"_count": 1}}, "say": {"_count": 1, "I": {"_count": 1}}, "wonder": {"_count": 1, "where": {"_count": 1}}, "ban": {"_count": 1, "you": {"_count": 1}}, "try": {"_count": 1, "you": {"_count": 1}}, "Cottage": {"_count": 10, "": {"_count": 4}, "on": {"_count": 1}, "could": {"_count": 1}, "so": {"_count": 1}, "told": {"_count": 1}, "lying": {"_count": 1}, "and": {"_count": 1}}, "look": {"_count": 1, "after": {"_count": 1}}}, "Trouble": {"_count": 5, "is": {"_count": 4, "they": {"_count": 1}, "Fudge": {"_count": 1}, "I": {"_count": 1}, "we": {"_count": 1}}, "usually": {"_count": 1, "finds": {"_count": 1}}}, "tallest": {"_count": 8, "tower": {"_count": 5, "at": {"_count": 2}, "": {"_count": 2}, "History": {"_count": 1}}, "Astronomy": {"_count": 1, "Tower": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Love": {"_count": 13, "Charlie": {"_count": 1, "They": {"_count": 1}}, "from": {"_count": 2, "Hermione": {"_count": 2}}, "Potion": {"_count": 3, "": {"_count": 1}, "would": {"_count": 1}, "shes": {"_count": 1}}, "Dragons": {"_count": 1, "Too": {"_count": 1}}, "Potions": {"_count": 2, "are": {"_count": 1}, "have": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "did": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cover": {"_count": 74, "two": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 2, "three": {"_count": 1}, "his": {"_count": 1}}, "it": {"_count": 2, "up": {"_count": 1}, "": {"_count": 1}}, "of": {"_count": 17, "Mrs": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 5}, "Death": {"_count": 1}, "The": {"_count": 1}, "their": {"_count": 1}, "her": {"_count": 1}, "which": {"_count": 1}, "A": {"_count": 1}, "darkness": {"_count": 1}, "all": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 3, "was": {"_count": 1}, "thought": {"_count": 1}, "finally": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "emblazoned": {"_count": 1, "with": {"_count": 1}}, "up": {"_count": 5, "for": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}, "The": {"_count": 1}}, "themselves": {"_count": 1, "again": {"_count": 1}}, "the": {"_count": 2, "awkward": {"_count": 1}, "important": {"_count": 1}}, "herself": {"_count": 1, "up": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 1}, "you": {"_count": 1}, "Ron": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 3, "cover": {"_count": 2}, "pick": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "story": {"_count": 2, "very": {"_count": 1}, "for": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 2}, "this": {"_count": 1}}, "porlocks": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "heads": {"_count": 1}}, "your": {"_count": 1, "classes": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "squealing": {"_count": 1, "at": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 1}, "confusion": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "fell": {"_count": 1, "off": {"_count": 1}}, "his": {"_count": 1, "mouth": {"_count": 1}}, "was": {"_count": 1, "emblazoned": {"_count": 1}}, "they": {"_count": 1, "extinguished": {"_count": 1}}, "anything": {"_count": 1, "later": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}}, "hitch": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "swollen": {"_count": 27, "to": {"_count": 2, "twice": {"_count": 1}, "an": {"_count": 1}}, "tears": {"_count": 1, "splashing": {"_count": 1}}, "SHUT": {"_count": 1, "UP": {"_count": 1}}, "tongue": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 5, "he": {"_count": 1}, "bloodshot": {"_count": 2}, "puffy": {"_count": 1}, "blotchy": {"_count": 1}}, "eyes": {"_count": 2, "": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "heart": {"_count": 1, "was": {"_count": 1}}, "lip": {"_count": 1, "Fred": {"_count": 1}}, "eye": {"_count": 2, "": {"_count": 2}}, "face": {"_count": 2, "dragon": {"_count": 1}, "": {"_count": 1}}, "Voldemorts": {"_count": 1, "ranks": {"_count": 1}}, "spider": {"_count": 1, "spinning": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "eyelids": {"_count": 1, "a": {"_count": 1}}, "maam": {"_count": 1, "but": {"_count": 1}}, "yellow": {"_count": 1, "and": {"_count": 1}}}, "shade": {"_count": 34, "of": {"_count": 31, "green": {"_count": 4}, "the": {"_count": 7}, "orange": {"_count": 1}, "magenta": {"_count": 2}, "Cedric": {"_count": 1}, "their": {"_count": 1}, "violet": {"_count": 1}, "puce": {"_count": 2}, "Hermione": {"_count": 1}, "a": {"_count": 2}, "bubblegumpink": {"_count": 1}, "lilac": {"_count": 2}, "pink": {"_count": 2}, "bright": {"_count": 1}, "brown": {"_count": 1}, "eggyolk": {"_count": 1}, "scarlet": {"_count": 1}}, "too": {"_count": 1, "thin": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "more": {"_count": 1, "skillful": {"_count": 1}}}, "state": {"_count": 54, "in": {"_count": 2, "bed": {"_count": 1}, "chapter": {"_count": 1}}, "every": {"_count": 1, "statues": {"_count": 1}}, "of": {"_count": 21, "his": {"_count": 2}, "him": {"_count": 1}, "my": {"_count": 1}, "wild": {"_count": 1}, "nervous": {"_count": 1}, "semidarkness": {"_count": 1}, "nervousness": {"_count": 1}, "complete": {"_count": 1}, "shock": {"_count": 1}, "advanced": {"_count": 1}, "worse": {"_count": 1}, "considerable": {"_count": 1}, "open": {"_count": 1}, "her": {"_count": 1}, "great": {"_count": 1}, "fear": {"_count": 1}, "high": {"_count": 1}, "inactivity": {"_count": 1}, "siege": {"_count": 2}}, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 1}, "?": {"_count": 1}}, "plainly": {"_count": 1, "that": {"_count": 1}}, "would": {"_count": 1, "it": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "clearly": {"_count": 1, "that": {"_count": 1}}, "swirling": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "lifted": {"_count": 1}}, "to": {"_count": 3, "stand": {"_count": 1}, "talk": {"_count": 1}, "read": {"_count": 1}}, "he": {"_count": 1, "pulled": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 2}}, "your": {"_count": 2, "name": {"_count": 2}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "Hagrid": {"_count": 1, "Ron": {"_count": 1}}, "Ron": {"_count": 1, "Dumbledores": {"_count": 1}}, "thought": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "than": {"_count": 1, "if": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "Harry": {"_count": 1, "did": {"_count": 1}}}, "feels": {"_count": 21, "like": {"_count": 4, "its": {"_count": 1}, "said": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "weird": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "completely": {"_count": 1, "normal": {"_count": 1}}, "quite": {"_count": 1, "warm": {"_count": 1}}, "the": {"_count": 2, "difference": {"_count": 1}, "same": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "itself": {"_count": 1, "honor": {"_count": 1}}, "But": {"_count": 1, "Professor": {"_count": 1}}, "angry": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "if": {"_count": 1}}, "no": {"_count": 1, "remorse": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "lonely": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "wrong": {"_count": 1}}}, "believes": {"_count": 20, "me": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "broom": {"_count": 1}, "Daily": {"_count": 1}, "school": {"_count": 1}}, "that": {"_count": 5, "he": {"_count": 2}, "what": {"_count": 1}, "we": {"_count": 1}, "the": {"_count": 1}}, "yer": {"_count": 1, "an": {"_count": 1}}, "it": {"_count": 2, "Hermione": {"_count": 1}, "will": {"_count": 1}}, "him": {"_count": 1, "said": {"_count": 1}}, "his": {"_count": 1, "cockandbull": {"_count": 1}}, "you": {"_count": 3, "but": {"_count": 1}, "ought": {"_count": 1}, "so": {"_count": 1}}, "an": {"_count": 1, "entire": {"_count": 1}}}, "soothe": {"_count": 3, "Ron": {"_count": 1, "at": {"_count": 1}}, "agitation": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "pain": {"_count": 1}}}, "sweat": {"_count": 38, "": {"_count": 8, ".": {"_count": 8}}, "off": {"_count": 3, "his": {"_count": 3}}, "wondering": {"_count": 1, "where": {"_count": 1}}, "running": {"_count": 1, "down": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 2}, "Franks": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 2}}, "trickling": {"_count": 1, "down": {"_count": 1}}, "breaking": {"_count": 1, "out": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "tried": {"_count": 1}}, "was": {"_count": 1, "beading": {"_count": 1}}, "his": {"_count": 2, "bedcovers": {"_count": 1}, "spectacles": {"_count": 1}}, "from": {"_count": 3, "his": {"_count": 3}}, "and": {"_count": 5, "unmistakably": {"_count": 1}, "blood": {"_count": 2}, "tobacco": {"_count": 1}, "every": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "denying": {"_count": 1, "the": {"_count": 1}}, "ran": {"_count": 1, "down": {"_count": 1}}, "pouring": {"_count": 1, "from": {"_count": 1}}, "slid": {"_count": 1, "instantly": {"_count": 1}}}, "hoarse": {"_count": 25, "voice": {"_count": 7, "": {"_count": 3}, "suddenly": {"_count": 1}, "and": {"_count": 1}, "floated": {"_count": 1}, "in": {"_count": 1}}, "whisper": {"_count": 4, "the": {"_count": 1}, "": {"_count": 2}, "after": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}, "before": {"_count": 1, "she": {"_count": 1}}, "at": {"_count": 2, "Fred": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 1, "all": {"_count": 1}}, "Gryffindor": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "grunt": {"_count": 1, "": {"_count": 1}}, "rattling": {"_count": 1, "breaths": {"_count": 1}}, "deep": {"_count": 1, "voice": {"_count": 1}}, "with": {"_count": 1, "relief": {"_count": 1}}, "tones": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "roar": {"_count": 1, "then": {"_count": 1}}}, "bandaged": {"_count": 8, "tail": {"_count": 1, "when": {"_count": 1}}, "fingers": {"_count": 1, "but": {"_count": 1}}, "mummy": {"_count": 1, "its": {"_count": 1}}, "leg": {"_count": 1, "fell": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "puffed": {"_count": 10, "": {"_count": 1, ".": {"_count": 1}}, "up": {"_count": 1, "lips": {"_count": 1}}, "herself": {"_count": 1, "up": {"_count": 1}}, "out": {"_count": 2, "his": {"_count": 2}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "pale": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 1, "pounding": {"_count": 1}}}, "stage": {"_count": 15, "nothin": {"_count": 1, "I": {"_count": 1}}, "of": {"_count": 2, "your": {"_count": 1}, "the": {"_count": 1}}, "had": {"_count": 1, "appeared": {"_count": 1}}, "resplendent": {"_count": 1, "in": {"_count": 1}}, "smashed": {"_count": 1, "into": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "wildly": {"_count": 1}}, "wouldnt": {"_count": 1, "you": {"_count": 1}}, "where": {"_count": 1, "we": {"_count": 1}}, "the": {"_count": 1, "attack": {"_count": 1}}, "whisper": {"_count": 1, "indicating": {"_count": 1}}, "All": {"_count": 1, "his": {"_count": 1}}}, "Aargh": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "boot": {"_count": 14, "jus": {"_count": 1, "playin": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "and": {"_count": 2, "handing": {"_count": 1}, "collapsed": {"_count": 1}}, "but": {"_count": 1, "shes": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Thats": {"_count": 1, "hardly": {"_count": 1}}, "polish": {"_count": 1, "and": {"_count": 1}}, "trembling": {"_count": 1, "on": {"_count": 1}}}, "playin": {"_count": 1, "hes": {"_count": 1, "only": {"_count": 1}}}, "rattle": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "arriving": {"_count": 22, "at": {"_count": 8, "Hagrid": {"_count": 1}, "five": {"_count": 1}, "the": {"_count": 2}, "6": {"_count": 1}, "his": {"_count": 1}, "school": {"_count": 1}, "eleven": {"_count": 1}}, "by": {"_count": 2, "owl": {"_count": 1}, "flying": {"_count": 1}}, "in": {"_count": 3, "Diagon": {"_count": 1}, "October": {"_count": 1}, "Grimmauld": {"_count": 1}}, "from": {"_count": 1, "parents": {"_count": 1}}, "this": {"_count": 1, "afternoon": {"_count": 1}}, "with": {"_count": 2, "their": {"_count": 1}, "George": {"_count": 1}}, "shortly": {"_count": 1, "we": {"_count": 1}}, "for": {"_count": 1, "dinner": {"_count": 1}}, "and": {"_count": 1, "as": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "tonight": {"_count": 1, "so": {"_count": 1}}}, "tennis": {"_count": 7, "against": {"_count": 1, "the": {"_count": 1}}, "balls": {"_count": 2, "": {"_count": 1}, "downcast": {"_count": 1}}, "ball": {"_count": 2, "eyes": {"_count": 1}, "collided": {"_count": 1}}, "rally": {"_count": 1, "": {"_count": 1}}, "serve": {"_count": 1, "she": {"_count": 1}}}, "teddy": {"_count": 4, "bear": {"_count": 3, "in": {"_count": 1}, "into": {"_count": 1}, "seen": {"_count": 1}}, "was": {"_count": 1, "having": {"_count": 1}}}, "lonely": {"_count": 19, "": {"_count": 4, ".": {"_count": 4}}, "landing": {"_count": 1, "on": {"_count": 1}}, "with": {"_count": 1, "dislike": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "cracker": {"_count": 1, "with": {"_count": 1}}, "or": {"_count": 1, "summat": {"_count": 1}}, "without": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 3, "hasnt": {"_count": 1}, "secluded": {"_count": 1}, "beautiful": {"_count": 1}}, "parts": {"_count": 1, "of": {"_count": 1}}, "farm": {"_count": 1, "from": {"_count": 1}}, "winding": {"_count": 1, "road": {"_count": 1}}, "place": {"_count": 1, "I": {"_count": 1}}, "road": {"_count": 1, "": {"_count": 1}}}, "Byebye": {"_count": 1, "Norbert": {"_count": 1, "": {"_count": 1}}}, "heaved": {"_count": 44, "Norbert": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "luggage": {"_count": 1}}, "himself": {"_count": 6, "up": {"_count": 1}, "out": {"_count": 3}, "inside": {"_count": 1}, "over": {"_count": 1}}, "it": {"_count": 2, "onto": {"_count": 2}}, "his": {"_count": 3, "trunk": {"_count": 1}, "head": {"_count": 1}, "cauldrons": {"_count": 1}}, "a": {"_count": 11, "sigh": {"_count": 2}, "deep": {"_count": 4}, "pile": {"_count": 1}, "very": {"_count": 1}, "great": {"_count": 3}}, "him": {"_count": 4, "back": {"_count": 2}, "away": {"_count": 1}, "over": {"_count": 1}}, "onto": {"_count": 1, "Professor": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 2, "impressive": {"_count": 1}, "enormous": {"_count": 1}}, "With": {"_count": 1, "an": {"_count": 1}}, "another": {"_count": 2, "great": {"_count": 1}, "enormous": {"_count": 1}}, "Ron": {"_count": 1, "toward": {"_count": 1}}, "Nevilles": {"_count": 1, "legs": {"_count": 1}}, "again": {"_count": 1, "with": {"_count": 1}}, "her": {"_count": 1, "bag": {"_count": 1}}, "the": {"_count": 2, "gigantic": {"_count": 1}, "Death": {"_count": 1}}, "Dumbledore": {"_count": 1, "onto": {"_count": 1}}, "Colin": {"_count": 1, "over": {"_count": 1}}}, "shortcuts": {"_count": 7, "didnt": {"_count": 1, "make": {"_count": 1}}, "and": {"_count": 2, "secret": {"_count": 1}, "had": {"_count": 1}}, "on": {"_count": 1, "potions": {"_count": 1}}, "or": {"_count": 1, "cheats": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Forgetting": {"_count": 2, "that": {"_count": 2, "they": {"_count": 1}, "Crookshanks": {"_count": 1}}}, "outlines": {"_count": 10, "of": {"_count": 9, "two": {"_count": 2}, "three": {"_count": 1}, "Mrs": {"_count": 1}, "Fred": {"_count": 1}, "the": {"_count": 2}, "Christmas": {"_count": 1}, "parents": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "grappling": {"_count": 1, "with": {"_count": 1, "each": {"_count": 1}}}, "flared": {"_count": 15, "": {"_count": 2, ".": {"_count": 2}}, "thats": {"_count": 1, "got": {"_count": 1}}, "inside": {"_count": 2, "him": {"_count": 2}}, "inches": {"_count": 1, "from": {"_count": 1}}, "illuminating": {"_count": 1, "the": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "unexpectedly": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "in": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 2, "died": {"_count": 1}, "Harry": {"_count": 1}}, "within": {"_count": 1, "him": {"_count": 1}}}, "tartan": {"_count": 14, "bathrobe": {"_count": 1, "and": {"_count": 1}}, "scarf": {"_count": 2, "bound": {"_count": 1}, "didnt": {"_count": 1}}, "dressing": {"_count": 4, "gown": {"_count": 4}}, "and": {"_count": 1, "had": {"_count": 1}}, "carpet": {"_count": 1, "slippers": {"_count": 1}}, "tin": {"_count": 1, "of": {"_count": 1}}, "biscuit": {"_count": 1, "tin": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "carpetbag": {"_count": 1, "in": {"_count": 1}}, "edged": {"_count": 1, "handkerchief": {"_count": 1}}}, "net": {"_count": 7, "had": {"_count": 1, "Malfoy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "one": {"_count": 1}}, "curtains": {"_count": 2, "every": {"_count": 1}, "": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}, "fell": {"_count": 1, "upon": {"_count": 1}}}, "Detention": {"_count": 6, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "Weasley": {"_count": 1, "Snape": {"_count": 1}}, "for": {"_count": 1, "all": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "Saturday": {"_count": 1, "night": {"_count": 1}}}, "utter": {"_count": 20, "rubbish": {"_count": 3, "": {"_count": 2}, "about": {"_count": 1}}, "amazement": {"_count": 2, "stage": {"_count": 1}, "Marietta": {"_count": 1}}, "terror": {"_count": 1, "on": {"_count": 1}}, "silence": {"_count": 1, "broken": {"_count": 1}}, "disbelief": {"_count": 1, "": {"_count": 1}}, "horror": {"_count": 1, "": {"_count": 1}}, "Did": {"_count": 1, "she": {"_count": 1}}, "falsehoods": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "single": {"_count": 1}}, "an": {"_count": 1, "incantation": {"_count": 1}}, "astonishment": {"_count": 2, "was": {"_count": 1}, "she": {"_count": 1}}, "incomprehension": {"_count": 1, "on": {"_count": 1}}, "nonsense": {"_count": 1, "if": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "desperation": {"_count": 1, "seized": {"_count": 1}}, "madness": {"_count": 1, "for": {"_count": 1}}}, "lies": {"_count": 49, "": {"_count": 20, "!": {"_count": 1}, ".": {"_count": 18}, "?": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "behind": {"_count": 1, "Two": {"_count": 1}}, "alone": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 4, "him": {"_count": 1}, "people": {"_count": 1}, "having": {"_count": 1}, "you": {"_count": 1}}, "and": {"_count": 3, "that": {"_count": 1}, "felt": {"_count": 1}, "not": {"_count": 1}}, "ahead": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "told": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "Harry": {"_count": 1, "wrote": {"_count": 1}}, "it": {"_count": 1, "down": {"_count": 1}}, "to": {"_count": 1, "watch": {"_count": 1}}, "with": {"_count": 2, "me": {"_count": 1}, "which": {"_count": 1}}, "my": {"_count": 1, "great": {"_count": 1}}, "in": {"_count": 2, "store": {"_count": 1}, "its": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "hidden": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "thats": {"_count": 2, "how": {"_count": 2}}, "courage": {"_count": 1, "and": {"_count": 1}}}, "easiest": {"_count": 3, "thing": {"_count": 1, "in": {"_count": 1}}, "exam": {"_count": 1, "any": {"_count": 1}}, "to": {"_count": 1, "feign": {"_count": 1}}}, "jig": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "trying": {"_count": 1}}}, "detention": {"_count": 82, "": {"_count": 26, "!": {"_count": 8}, ".": {"_count": 16}, "?": {"_count": 2}}, "what": {"_count": 1, "could": {"_count": 1}}, "will": {"_count": 1, "take": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 5, "things": {"_count": 1}, "a": {"_count": 1}, "blackmail": {"_count": 1}, "five": {"_count": 1}, "": {"_count": 1}}, "faster": {"_count": 1, "than": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Umbridge": {"_count": 1}}, "disembowelment": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 2, "Snape": {"_count": 1}, "that": {"_count": 1}}, "and": {"_count": 4, "forbidden": {"_count": 1}, "Neville": {"_count": 1}, "failing": {"_count": 1}, "now": {"_count": 1}}, "each": {"_count": 1, "for": {"_count": 1}}, "with": {"_count": 16, "James": {"_count": 1}, "Umbridge": {"_count": 8}, "Snape": {"_count": 3}, "her": {"_count": 1}, "Professor": {"_count": 1}, "me": {"_count": 2}}, "drawled": {"_count": 1, "Malfoy": {"_count": 1}}, "watch": {"_count": 1, "your": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "every": {"_count": 2, "evening": {"_count": 1}, "Saturday": {"_count": 1}}, "that": {"_count": 2, "night": {"_count": 1}, "evening": {"_count": 1}}, "was": {"_count": 1, "just": {"_count": 1}}, "passed": {"_count": 1, "in": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "again": {"_count": 2, "Whats": {"_count": 1}, "leave": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "under": {"_count": 1, "your": {"_count": 1}}, "next": {"_count": 1, "Saturday": {"_count": 1}}, "er": {"_count": 1, "no": {"_count": 1}}, "neither": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "out": {"_count": 1}}}, "advised": {"_count": 16, "her": {"_count": 2, "": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "table": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 1, "go": {"_count": 1}}, "me": {"_count": 1, "strongly": {"_count": 1}}, "it": {"_count": 1, "seems": {"_count": 1}}, "eating": {"_count": 1, "some": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "Armando": {"_count": 1, "against": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "sniggering": {"_count": 1}}}, "Chuckling": {"_count": 2, "about": {"_count": 1, "Malfoy": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}}, "thrashing": {"_count": 16, "about": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 3, "in": {"_count": 2}, "like": {"_count": 1}}, "wildly": {"_count": 1, "off": {"_count": 1}}, "is": {"_count": 1, "whats": {"_count": 1}}, "desperately": {"_count": 1, "Ron": {"_count": 1}}, "her": {"_count": 1, "spiked": {"_count": 1}}, "elf": {"_count": 2, "": {"_count": 1}, "whose": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 2, "thrust": {"_count": 1}, "howling": {"_count": 1}}, "Ravenclaw": {"_count": 1, "which": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "spiked": {"_count": 1, "tail": {"_count": 1}}}, "cheery": {"_count": 13, "lot": {"_count": 1, "": {"_count": 1}}, "wave": {"_count": 2, "stepped": {"_count": 1}, "only": {"_count": 1}}, "confident": {"_count": 1, "voices": {"_count": 1}}, "welcome": {"_count": 1, "bowing": {"_count": 1}}, "smiles": {"_count": 1, "had": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 1}, "patting": {"_count": 1}, "backing": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "farewell": {"_count": 1, "he": {"_count": 1}}, "too": {"_count": 1, "though": {"_count": 1}}}, "harness": {"_count": 4, "theyd": {"_count": 1, "rigged": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hanging": {"_count": 1, "from": {"_count": 1}}, "holding": {"_count": 1, "his": {"_count": 1}}}, "rigged": {"_count": 1, "up": {"_count": 1, "so": {"_count": 1}}}, "suspend": {"_count": 3, "Norbert": {"_count": 1, "between": {"_count": 1}}, "students": {"_count": 1, "by": {"_count": 1}}, "me": {"_count": 1, "in": {"_count": 1}}}, "thanked": {"_count": 5, "them": {"_count": 1, "very": {"_count": 1}}, "Lupin": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 1, "others": {"_count": 1}}}, "happiness": {"_count": 35, "": {"_count": 7, "?": {"_count": 1}, ".": {"_count": 6}}, "out": {"_count": 5, "of": {"_count": 5}}, "arm": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "desire": {"_count": 1}}, "that": {"_count": 4, "was": {"_count": 1}, "had": {"_count": 2}, "did": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "him": {"_count": 1}}, "were": {"_count": 2, "sucked": {"_count": 1}, "extinguished": {"_count": 1}}, "had": {"_count": 2, "gone": {"_count": 1}, "turned": {"_count": 1}}, "on": {"_count": 1, "first": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "relief": {"_count": 1}}, "was": {"_count": 1, "draining": {"_count": 1}}, "doesnt": {"_count": 1, "depend": {"_count": 1}}, "it": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "than": {"_count": 1, "your": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "loomed": {"_count": 12, "suddenly": {"_count": 2, "out": {"_count": 2}}, "behind": {"_count": 1, "them": {"_count": 1}}, "nearer": {"_count": 2, "is": {"_count": 1}, "Harry": {"_count": 1}}, "into": {"_count": 2, "view": {"_count": 2}}, "over": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "menacing": {"_count": 1}}, "ever": {"_count": 1, "closer": {"_count": 1}}, "larger": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "FORBIDDEN": {"_count": 1, "FOREST": {"_count": 1, "Things": {"_count": 1}}}, "FOREST": {"_count": 2, "Things": {"_count": 1, "couldnt": {"_count": 1}}, "AGAIN": {"_count": 1, "Finally": {"_count": 1}}}, "Excuses": {"_count": 1, "alibis": {"_count": 1, "and": {"_count": 1}}}, "alibis": {"_count": 1, "and": {"_count": 1, "wild": {"_count": 1}}}, "coverup": {"_count": 2, "stories": {"_count": 1, "chased": {"_count": 1}}, "those": {"_count": 1, "goblins": {"_count": 1}}}, "brain": {"_count": 94, "each": {"_count": 1, "more": {"_count": 1}}, "surprises": {"_count": 1, "even": {"_count": 1}}, "felt": {"_count": 4, "like": {"_count": 1}, "waterlogged": {"_count": 1}, "torpid": {"_count": 1}, "sluggish": {"_count": 1}}, "get": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 2}}, "": {"_count": 9, ".": {"_count": 9}}, "seemed": {"_count": 9, "to": {"_count": 9}}, "and": {"_count": 5, "heart": {"_count": 1}, "you": {"_count": 1}, "his": {"_count": 1}, "obliterated": {"_count": 1}, "nerve": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "in": {"_count": 2, "concentration": {"_count": 1}, "his": {"_count": 1}}, "was": {"_count": 8, "as": {"_count": 1}, "affected": {"_count": 1}, "slipping": {"_count": 1}, "inflamed": {"_count": 1}, "oddly": {"_count": 1}, "not": {"_count": 1}, "pulled": {"_count": 1}, "flooding": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 2}, "gone": {"_count": 1}}, "Jump": {"_count": 1, "onto": {"_count": 1}}, "filled": {"_count": 1, "with": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "concentrate": {"_count": 1, "A": {"_count": 1}}, "reeled": {"_count": 1, "": {"_count": 1}}, "ground": {"_count": 1, "back": {"_count": 1}}, "too": {"_count": 1, "busy": {"_count": 1}}, "then": {"_count": 1, "unable": {"_count": 1}}, "turned": {"_count": 1, "icy": {"_count": 1}}, "disengaged": {"_count": 1, "and": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "guts": {"_count": 1}}, "working": {"_count": 2, "furiously": {"_count": 1}, "frantically": {"_count": 1}}, "teeming": {"_count": 1, "and": {"_count": 1}}, "might": {"_count": 1, "not": {"_count": 1}}, "aching": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 2, "long": {"_count": 1}, "boost": {"_count": 1}}, "presented": {"_count": 1, "him": {"_count": 1}}, "stimulants": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 1, "behind": {"_count": 1}}, "Sirius": {"_count": 1, "captured": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "addacked": {"_count": 1, "Ron": {"_count": 1}}, "without": {"_count": 1, "leaving": {"_count": 1}}, "go": {"_count": 1, "fuzzy": {"_count": 1}}, "wave": {"_count": 3, "lets": {"_count": 1}, "occurred": {"_count": 1}, "why": {"_count": 1}}, "damage": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 2, "his": {"_count": 1}, "diseased": {"_count": 1}}, "unacknowledged": {"_count": 1, "except": {"_count": 1}}, "waves": {"_count": 1, "my": {"_count": 1}}, "Shes": {"_count": 1, "Rons": {"_count": 1}}, "whirling": {"_count": 1, "in": {"_count": 1}}, "whirring": {"_count": 1, "beside": {"_count": 1}}, "slow": {"_count": 1, "and": {"_count": 1}}, "itself": {"_count": 1, "seemed": {"_count": 1}}, "quite": {"_count": 1, "another": {"_count": 1}}, "to": {"_count": 1, "wand": {"_count": 1}}, "the": {"_count": 1, "lake": {"_count": 1}}, "you": {"_count": 1, "need": {"_count": 1}}, "that": {"_count": 1, "part": {"_count": 1}}}, "cornered": {"_count": 22, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "Black": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 2, "desperate": {"_count": 1}, "he": {"_count": 1}}, "him": {"_count": 5, "he": {"_count": 1}, "in": {"_count": 1}, "just": {"_count": 1}, "": {"_count": 1}, "Bill": {"_count": 1}}, "by": {"_count": 2, "dementors": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 1, "in": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "thief": {"_count": 1}}}, "creeping": {"_count": 21, "around": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 2, "toward": {"_count": 1}, "the": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 2}}, "into": {"_count": 2, "his": {"_count": 1}, "view": {"_count": 1}}, "chill": {"_count": 1, "behind": {"_count": 1}}, "sensation": {"_count": 1, "in": {"_count": 1}}, "up": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 2}}, "servility": {"_count": 1, "looked": {"_count": 1}}, "furtively": {"_count": 1, "up": {"_count": 1}}, "shadows": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "from": {"_count": 1}}}, "Astronomy": {"_count": 29, "Tower": {"_count": 12, "which": {"_count": 1}, "": {"_count": 4}, "than": {"_count": 1}, "at": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}, "where": {"_count": 1}, "because": {"_count": 1}, "but": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "department": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "tower": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "midnight": {"_count": 1}}, "teacher": {"_count": 1, "and": {"_count": 1}}, "essay": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "half": {"_count": 1}}, "said": {"_count": 1, "Firenzes": {"_count": 1}}, "examination": {"_count": 1, "will": {"_count": 1}}, "theory": {"_count": 1, "exam": {"_count": 1}}, "the": {"_count": 1, "afternoon": {"_count": 1}}, "A": {"_count": 1, "Care": {"_count": 1}}, "and": {"_count": 1, "Gryffindor": {"_count": 1}}}, "Add": {"_count": 4, "Norbert": {"_count": 1, "and": {"_count": 1}}, "yours": {"_count": 1, "then": {"_count": 1}}, "some": {"_count": 1, "more": {"_count": 1}}, "a": {"_count": 1, "clockwise": {"_count": 1}}}, "violently": {"_count": 26, "to": {"_count": 1, "shut": {"_count": 1}}, "sick": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 4, "it": {"_count": 3}, "the": {"_count": 1}}, "purple": {"_count": 2, "bus": {"_count": 1}, "tripledecker": {"_count": 1}}, "hopping": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "through": {"_count": 1, "the": {"_count": 1}}, "Stop": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "and": {"_count": 1, "stared": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 3, "could": {"_count": 1}, "would": {"_count": 1}, "staggered": {"_count": 1}}, "pink": {"_count": 1, "products": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "nearly": {"_count": 1}}, "the": {"_count": 1, "water": {"_count": 1}}, "then": {"_count": 1, "break": {"_count": 1}}}, "likely": {"_count": 76, "to": {"_count": 45, "breathe": {"_count": 1}, "be": {"_count": 12}, "shift": {"_count": 1}, "want": {"_count": 2}, "tell": {"_count": 1}, "conjure": {"_count": 2}, "develop": {"_count": 1}, "get": {"_count": 2}, "come": {"_count": 2}, "provide": {"_count": 1}, "fail": {"_count": 1}, "raise": {"_count": 1}, "forget": {"_count": 2}, "set": {"_count": 1}, "meet": {"_count": 1}, "miss": {"_count": 1}, "drop": {"_count": 1}, "work": {"_count": 1}, "affect": {"_count": 1}, "pass": {"_count": 1}, "fall": {"_count": 1}, "scorn": {"_count": 1}, "find": {"_count": 1}, "finish": {"_count": 1}, "reappear": {"_count": 1}, "have": {"_count": 1}, "do": {"_count": 1}, "help": {"_count": 1}, "encounter": {"_count": 1}}, "that": {"_count": 11, "the": {"_count": 3}, "he": {"_count": 2}, "Harry": {"_count": 1}, "these": {"_count": 1}, "Dumbledore": {"_count": 2}, "it": {"_count": 1}, "Voldemort": {"_count": 1}}, "story": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "tale": {"_count": 1, "": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "shed": {"_count": 1, "have": {"_count": 1}}, "he": {"_count": 2, "did": {"_count": 1}, "stopped": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "I": {"_count": 1, "doubt": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "there": {"_count": 1, "would": {"_count": 1}}, "objection": {"_count": 1, "to": {"_count": 1}}, "hiding": {"_count": 1, "places": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "it": {"_count": 1, "seems": {"_count": 1}}}, "Explain": {"_count": 10, "yourselves": {"_count": 2, "": {"_count": 2}}, "she": {"_count": 1, "said": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}, "Why": {"_count": 1, "Muggles": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 2, "what": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "slippers": {"_count": 10, "as": {"_count": 1, "still": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "descended": {"_count": 1, "from": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "and": {"_count": 1, "dressing": {"_count": 1}}, "flopping": {"_count": 1, "string": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}}, "cockand": {"_count": 1, "bull": {"_count": 1, "story": {"_count": 1}}}, "bull": {"_count": 5, "story": {"_count": 1, "about": {"_count": 1}}, "and": {"_count": 1, "dived": {"_count": 1}}, "sending": {"_count": 1, "him": {"_count": 1}}, "elephants": {"_count": 2, "": {"_count": 1}, "making": {"_count": 1}}}, "blundering": {"_count": 7, "Neville": {"_count": 1, "Harry": {"_count": 1}}, "Hagrid": {"_count": 1, "in": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "away": {"_count": 1, "hitting": {"_count": 1}}, "giant": {"_count": 1, "were": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}}, "disgusted": {"_count": 13, "said": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "to": {"_count": 1, "speak": {"_count": 1}}, "look": {"_count": 4, "at": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 2}}, "tone": {"_count": 1, "pulling": {"_count": 1}}, "by": {"_count": 1, "our": {"_count": 1}}}, "receive": {"_count": 19, "detentions": {"_count": 1, "yes": {"_count": 1}}, "your": {"_count": 1, "education": {"_count": 1}}, "Special": {"_count": 1, "Awards": {"_count": 1}}, "over": {"_count": 1, "breakfast": {"_count": 1}}, "information": {"_count": 1, "about": {"_count": 1}}, "full": {"_count": 1, "marks": {"_count": 1}}, "the": {"_count": 1, "results": {"_count": 1}}, "enough": {"_count": 1, "support": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "mimed": {"_count": 1}}, "a": {"_count": 3, "Merry": {"_count": 1}, "very": {"_count": 1}, "Calming": {"_count": 1}}, "private": {"_count": 1, "lessons": {"_count": 1}}, "such": {"_count": 1, "information": {"_count": 1}}, "low": {"_count": 1, "marks": {"_count": 1}}, "some": {"_count": 1, "portion": {"_count": 1}}, "Voldemorts": {"_count": 1, "wand": {"_count": 1}}, "their": {"_count": 1, "thanks": {"_count": 1}}}, "detentions": {"_count": 24, "yes": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 2, "do": {"_count": 1}, "those": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "Moody": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "tomorrow": {"_count": 1, "night": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "as": {"_count": 1, "planned": {"_count": 1}}, "would": {"_count": 1, "do": {"_count": 1}}, "was": {"_count": 2, "just": {"_count": 1}, "the": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "with": {"_count": 1, "Umbridge": {"_count": 1}}, "said": {"_count": 2, "Umbridge": {"_count": 1}, "Snape": {"_count": 1}}, "already": {"_count": 1, "been": {"_count": 1}}, "particularly": {"_count": 1, "irksome": {"_count": 1}}, "What": {"_count": 1, "": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}}, "especially": {"_count": 22, "these": {"_count": 1, "days": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Quidditch": {"_count": 1, "the": {"_count": 1}}, "difficult": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 1, "mood": {"_count": 1}}, "woebegone": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 1, "Lupin": {"_count": 1}}, "disliked": {"_count": 1, "James": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "when": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "because": {"_count": 1, "Malfoy": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "not": {"_count": 2, "when": {"_count": 1}, "in": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "Hermione": {"_count": 1}, "its": {"_count": 1}}, "at": {"_count": 1, "having": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "Potters": {"_count": 1, "son": {"_count": 1}}}, "Fifty": {"_count": 9, "": {"_count": 1, "?": {"_count": 1}}, "points": {"_count": 6, "each": {"_count": 1}, "if": {"_count": 2}, "from": {"_count": 3}}, "years": {"_count": 1, "before": {"_count": 1}}, "yards": {"_count": 1, "along": {"_count": 1}}}, "ashamed": {"_count": 38, "of": {"_count": 22, "Gryffindor": {"_count": 1}, "himself": {"_count": 5}, "": {"_count": 2}, "his": {"_count": 3}, "being": {"_count": 1}, "yourself": {"_count": 1}, "what": {"_count": 3}, "said": {"_count": 1}, "them": {"_count": 1}, "ourselves": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}, "themselves": {"_count": 1}}, "that": {"_count": 3, "a": {"_count": 1}, "such": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 4, "admit": {"_count": 1}, "show": {"_count": 1}, "have": {"_count": 1}, "say": {"_count": 1}}, "not": {"_count": 1, "you": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "my": {"_count": 1, "ol": {"_count": 1}}, "said": {"_count": 1, "Neville": {"_count": 1}}}, "comfort": {"_count": 30, "him": {"_count": 1, "": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 6, "his": {"_count": 1}, "him": {"_count": 1}, "think": {"_count": 1}, "me": {"_count": 2}, "Albus": {"_count": 1}}, "her": {"_count": 4, "but": {"_count": 2}, "said": {"_count": 1}, "in": {"_count": 1}}, "of": {"_count": 1, "inspiration": {"_count": 1}}, "Cho": {"_count": 1, "instead": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "shrinking": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 2, "admittedly": {"_count": 1}, "it": {"_count": 1}}, "from": {"_count": 1, "Dumbledores": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "it": {"_count": 1, "but": {"_count": 1}}}, "dawn": {"_count": 27, "": {"_count": 4, ".": {"_count": 4}}, "said": {"_count": 1, "Filch": {"_count": 1}}, "but": {"_count": 1, "somehow": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "said": {"_count": 1}}, "sir": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "that": {"_count": 1}}, "to": {"_count": 2, "tell": {"_count": 1}, "get": {"_count": 1}}, "light": {"_count": 2, "talking": {"_count": 1}, "left": {"_count": 1}}, "on": {"_count": 3, "a": {"_count": 1}, "them": {"_count": 1}, "everyone": {"_count": 1}}, "hell": {"_count": 1, "think": {"_count": 1}}, "till": {"_count": 1, "dusk": {"_count": 1}}, "and": {"_count": 2, "everything": {"_count": 1}, "Neville": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "was": {"_count": 1, "chilly": {"_count": 1}}, "yet": {"_count": 1, "it": {"_count": 1}}}, "hourglasses": {"_count": 7, "that": {"_count": 1, "recorded": {"_count": 1}}, "set": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "stood": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}}, "recorded": {"_count": 4, "the": {"_count": 2, "House": {"_count": 2}}, "my": {"_count": 1, "memories": {"_count": 1}}, "House": {"_count": 1, "points": {"_count": 1}}}, "hero": {"_count": 31, "of": {"_count": 2, "two": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 2, "": {"_count": 1}, "not": {"_count": 1}}, "at": {"_count": 1, "school": {"_count": 1}}, "who": {"_count": 3, "made": {"_count": 1}, "delivered": {"_count": 1}, "conquered": {"_count": 1}}, "but": {"_count": 1, "seriously": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 6}, "!": {"_count": 1}, "?": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "poised": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "for": {"_count": 1, "joining": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "shes": {"_count": 1, "put": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "of": {"_count": 1}}, "Dumbledore": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 1, "bore": {"_count": 1}}, "as": {"_count": 1, "relayed": {"_count": 1}}, "Snapes": {"_count": 1, "bitterness": {"_count": 1}}, "is": {"_count": 1, "gone": {"_count": 1}}}, "popular": {"_count": 24, "and": {"_count": 2, "admired": {"_count": 1}, "nearly": {"_count": 1}}, "sport": {"_count": 2, "in": {"_count": 2}}, "singing": {"_count": 2, "sorceress": {"_count": 1}, "group": {"_count": 1}}, "once": {"_count": 1, "too": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}}, "support": {"_count": 1, "Dumbledore": {"_count": 1}}, "dinner": {"_count": 1, "guest": {"_count": 1}}, "headmaster": {"_count": 1, "Hogwarts": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "with": {"_count": 1, "only": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "its": {"_count": 1, "you": {"_count": 1}}, "Wizarding": {"_count": 1, "conveyance": {"_count": 1}}, "for": {"_count": 1, "her": {"_count": 1}}, "image": {"_count": 1, "of": {"_count": 1}}, "feature": {"_count": 1, "\u2018Pals": {"_count": 1}}}, "admired": {"_count": 8, "people": {"_count": 1, "at": {"_count": 1}}, "from": {"_count": 1, "every": {"_count": 1}}, "Professor": {"_count": 2, "Trelawney": {"_count": 2}}, "buoyed": {"_count": 1, "him": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "in": {"_count": 1, "Uncle": {"_count": 1}}}, "longing": {"_count": 25, "to": {"_count": 7, "see": {"_count": 2}, "reach": {"_count": 1}, "swat": {"_count": 1}, "utter": {"_count": 1}, "strike": {"_count": 1}, "sleep": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "expression": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 4, "a": {"_count": 1}, "closeness": {"_count": 1}, "the": {"_count": 2}}, "the": {"_count": 1, "discovery": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "killed": {"_count": 1, "himself": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}}, "insulted": {"_count": 10, "him": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "them": {"_count": 1, "proved": {"_count": 1}}, "certainly": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "I": {"_count": 1}}, "my": {"_count": 1, "parents": {"_count": 1}}, "every": {"_count": 1, "family": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 1, "Harry": {"_count": 1}}, "James": {"_count": 1, "Potter": {"_count": 1}}}, "owe": {"_count": 15, "you": {"_count": 6, "one": {"_count": 2}, "": {"_count": 1}, "an": {"_count": 1}, "another": {"_count": 1}, "their": {"_count": 1}}, "them": {"_count": 1, "so": {"_count": 1}}, "him": {"_count": 2, "that": {"_count": 1}, "anything": {"_count": 1}}, "Harry": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "pleasure": {"_count": 1}}, "this": {"_count": 1, "very": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 2, "Wormtail": {"_count": 1}, "I": {"_count": 1}}}, "Theyve": {"_count": 37, "never": {"_count": 1, "lost": {"_count": 1}}, "taken": {"_count": 1, "him": {"_count": 1}}, "pulled": {"_count": 1, "us": {"_count": 1}}, "got": {"_count": 9, "a": {"_count": 2}, "it": {"_count": 1}, "away": {"_count": 1}, "Black": {"_count": 1}, "an": {"_count": 1}, "four": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "updated": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "got": {"_count": 1}}, "signed": {"_count": 1, "havent": {"_count": 1}}, "agreed": {"_count": 1, "havent": {"_count": 1}}, "all": {"_count": 2, "got": {"_count": 2}}, "only": {"_count": 2, "got": {"_count": 1}, "just": {"_count": 1}}, "suffered": {"_count": 1, "losses": {"_count": 1}}, "demoted": {"_count": 1, "him": {"_count": 1}}, "always": {"_count": 2, "said": {"_count": 1}, "pulled": {"_count": 1}}, "been": {"_count": 2, "talking": {"_count": 1}, "treated": {"_count": 1}}, "run": {"_count": 1, "plenty": {"_count": 1}}, "found": {"_count": 1, "Montague": {"_count": 1}}, "had": {"_count": 1, "it": {"_count": 1}}, "deserted": {"_count": 1, "the": {"_count": 1}}, "known": {"_count": 1, "each": {"_count": 1}}, "already": {"_count": 1, "seen": {"_count": 1}}, "blocked": {"_count": 1, "the": {"_count": 1}}, "crashed": {"_count": 1, "Ted": {"_count": 1}}, "kidnapped": {"_count": 1, "Luna": {"_count": 1}}, "killed": {"_count": 1, "plenty": {"_count": 1}}, "fought": {"_count": 1, "dirty": {"_count": 1}}}, "repair": {"_count": 19, "the": {"_count": 5, "damage": {"_count": 5}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "your": {"_count": 1, "fireplace": {"_count": 1}}, "a": {"_count": 1, "grandfather": {"_count": 1}}, "itself": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "brain": {"_count": 1}}, "wounds": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 2, "meself": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "meddle": {"_count": 2, "in": {"_count": 2, "things": {"_count": 1}, "this": {"_count": 1}}}, "resign": {"_count": 8, "from": {"_count": 1, "the": {"_count": 1}}, "first": {"_count": 1, "thing": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Ginny": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "protest": {"_count": 1}}, "ourselves": {"_count": 1, "to": {"_count": 1}}}, "Resign": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "goodll": {"_count": 1, "that": {"_count": 1, "do": {"_count": 1}}}, "suffering": {"_count": 21, "too": {"_count": 1, "": {"_count": 1}}, "terrible": {"_count": 1, "pain": {"_count": 1}}, "sorry": {"_count": 1, "about": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "all": {"_count": 1, "the": {"_count": 1}}, "yet": {"_count": 1, "another": {"_count": 1}}, "from": {"_count": 3, "overwork": {"_count": 1}, "stress": {"_count": 1}, "something": {"_count": 1}}, "some": {"_count": 1, "sort": {"_count": 1}}, "Umbridgeitis": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "madness": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "you": {"_count": 1, "remain": {"_count": 1}}, "accordingly": {"_count": 1, "though": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "for": {"_count": 1, "their": {"_count": 1}}}, "wellknown": {"_count": 7, "but": {"_count": 1, "nobody": {"_count": 1}}, "habit": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "influential": {"_count": 1}}, "wizards": {"_count": 1, "with": {"_count": 1}}, "broomstick": {"_count": 1, "designer": {"_count": 1}}, "Dark": {"_count": 1, "wizard": {"_count": 1}}, "gamekeeper": {"_count": 1, "at": {"_count": 1}}}, "misery": {"_count": 15, "": {"_count": 6, ".": {"_count": 6}}, "at": {"_count": 1, "this": {"_count": 1}}, "shell": {"_count": 1, "lap": {"_count": 1}}, "fighting": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "pain": {"_count": 1}, "threw": {"_count": 1}}, "the": {"_count": 1, "loss": {"_count": 1}}, "since": {"_count": 1, "leaving": {"_count": 1}}}, "potions": {"_count": 37, "learn": {"_count": 1, "charms": {"_count": 1}}, "good": {"_count": 1, "girl": {"_count": 1}}, "were": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "had": {"_count": 1, "effects": {"_count": 1}}, "was": {"_count": 1, "for": {"_count": 1}}, "ingredients": {"_count": 2, "and": {"_count": 1}, "by": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "to": {"_count": 1, "change": {"_count": 1}}, "and": {"_count": 2, "charms": {"_count": 1}, "poisons": {"_count": 1}}, "that": {"_count": 2, "are": {"_count": 1}, "were": {"_count": 1}}, "youll": {"_count": 1, "find": {"_count": 1}}, "fumes": {"_count": 1, "seemed": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "seemed": {"_count": 1, "magnified": {"_count": 1}}, "a": {"_count": 1, "stir": {"_count": 1}}, "which": {"_count": 1, "Im": {"_count": 1}}, "with": {"_count": 1, "them": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "into": {"_count": 1, "school": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "in": {"_count": 2, "peoples": {"_count": 1}, "jeweled": {"_count": 1}}, "arent": {"_count": 1, "Dark": {"_count": 1}}, "nothing": {"_count": 1, "": {"_count": 1}}, "hats": {"_count": 1, "jewels": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}}, "charms": {"_count": 25, "and": {"_count": 3, "spells": {"_count": 2}, "a": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "a": {"_count": 1}}, "but": {"_count": 1, "one": {"_count": 1}}, "to": {"_count": 2, "disarm": {"_count": 1}, "ensure": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "books": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 1, "have": {"_count": 1}}, "etc": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "making": {"_count": 1}, "unlikely": {"_count": 1}}, "a": {"_count": 1, "complex": {"_count": 1}}, "amusing": {"_count": 1, "was": {"_count": 1}}, "dont": {"_count": 1, "they": {"_count": 1}}, "\u2018Aguamenti": {"_count": 1, "": {"_count": 1}}, "hold": {"_count": 1, "then": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "wearing": {"_count": 1, "off": {"_count": 1}}, "well": {"_count": 1, "": {"_count": 1}}}, "memorize": {"_count": 3, "the": {"_count": 1, "dates": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "while": {"_count": 1}}}, "discoveries": {"_count": 4, "and": {"_count": 1, "goblin": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "threw": {"_count": 1, "him": {"_count": 1}}}, "rebellions": {"_count": 4, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Binns": {"_count": 1}}}, "due": {"_count": 50, "to": {"_count": 34, "start": {"_count": 2}, "Sirius": {"_count": 1}, "fright": {"_count": 1}, "her": {"_count": 1}, "return": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 14}, "ring": {"_count": 1}, "his": {"_count": 4}, "drought": {"_count": 1}, "a": {"_count": 2}, "rage": {"_count": 1}, "Hermiones": {"_count": 1}, "their": {"_count": 2}, "injury": {"_count": 1}}, "any": {"_count": 1, "minute": {"_count": 1}}, "in": {"_count": 2, "Charms": {"_count": 1}, "the": {"_count": 1}}, "north": {"_count": 1, "therefore": {"_count": 1}}, "warning": {"_count": 1, "whenever": {"_count": 1}}, "mainly": {"_count": 2, "to": {"_count": 1}, "though": {"_count": 1}}, "there": {"_count": 1, "at": {"_count": 1}}, "course": {"_count": 7, "and": {"_count": 1}, "": {"_count": 4}, "exactly": {"_count": 1}, "the": {"_count": 1}}, "more": {"_count": 1, "to": {"_count": 1}}}, "resolution": {"_count": 5, "not": {"_count": 1, "to": {"_count": 1}}, "most": {"_count": 1, "appeared": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "would": {"_count": 1, "hold": {"_count": 1}}}, "unexpected": {"_count": 22, "test": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "way": {"_count": 1, "It": {"_count": 1}}, "sound": {"_count": 1, "they": {"_count": 1}}, "gold": {"_count": 1, "": {"_count": 1}}, "places": {"_count": 2, "Potter": {"_count": 1}, "": {"_count": 1}}, "twist": {"_count": 1, "that": {"_count": 1}}, "changes": {"_count": 1, "everything": {"_count": 1}}, "surprises": {"_count": 1, "like": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "entrance": {"_count": 1, "of": {"_count": 1}}, "dragon": {"_count": 1, "pox": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "visitor": {"_count": 1, "in": {"_count": 1}}, "caught": {"_count": 1, "him": {"_count": 1}}, "urge": {"_count": 1, "to": {"_count": 1}}, "gust": {"_count": 1, "of": {"_count": 1}}, "warmth": {"_count": 1, "however": {"_count": 1}}, "appearance": {"_count": 1, "": {"_count": 1}}, "bellow": {"_count": 1, "nearly": {"_count": 1}}}, "Walking": {"_count": 4, "back": {"_count": 1, "from": {"_count": 1}}, "very": {"_count": 1, "close": {"_count": 1}}, "more": {"_count": 1, "slowly": {"_count": 1}}, "Ron": {"_count": 1, "mumbled": {"_count": 1}}}, "whimpering": {"_count": 19, "from": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 2, "pain": {"_count": 1}, "panic": {"_count": 1}}, "and": {"_count": 5, "howling": {"_count": 1}, "straining": {"_count": 1}, "shaking": {"_count": 1}, "moaning": {"_count": 1}, "thumping": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "into": {"_count": 1, "her": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "\u2018and": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "pleading": {"_count": 1, "": {"_count": 1}}, "noises": {"_count": 1, "coming": {"_count": 1}}, "leading": {"_count": 1, "him": {"_count": 1}}}, "sob": {"_count": 21, "": {"_count": 7, ".": {"_count": 7}}, "rose": {"_count": 1, "up": {"_count": 1}}, "Hermione": {"_count": 1, "went": {"_count": 1}}, "and": {"_count": 3, "waved": {"_count": 1}, "a": {"_count": 1}, "covered": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "rocking": {"_count": 1, "backward": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "with": {"_count": 1, "increasingly": {"_count": 1}}, "tears": {"_count": 1, "falling": {"_count": 1}}, "of": {"_count": 1, "assent": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}}, "straightening": {"_count": 27, "his": {"_count": 7, "turban": {"_count": 1}, "glasses": {"_count": 3}, "torn": {"_count": 1}, "tie": {"_count": 1}, "long": {"_count": 1}}, "up": {"_count": 13, "and": {"_count": 4}, "panting": {"_count": 1}, "Black": {"_count": 1}, "again": {"_count": 3}, "": {"_count": 2}, "completely": {"_count": 1}, "now": {"_count": 1}}, "cushions": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 5, "pointed": {"_count": 1}, "new": {"_count": 1}, "glasses": {"_count": 1}, "hat": {"_count": 1}, "shawls": {"_count": 1}}, "the": {"_count": 1, "cushion": {"_count": 1}}}, "meddling": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "gambled": {"_count": 1, "twelve": {"_count": 1, "Sorcerers": {"_count": 1}}}, "spring": {"_count": 13, "in": {"_count": 3, "his": {"_count": 2}, "Snapes": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 2, "life": {"_count": 2}}, "but": {"_count": 1, "pacing": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 1, "when": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "day": {"_count": 1, "one": {"_count": 1}}, "a": {"_count": 1, "trap": {"_count": 1}}, "of": {"_count": 1, "fabulous": {"_count": 1}}}, "testing": {"_count": 11, "Ron": {"_count": 1, "on": {"_count": 1}}, "them": {"_count": 2, "staring": {"_count": 1}, "on": {"_count": 1}}, "his": {"_count": 1, "leg": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "stuff": {"_count": 1, "on": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "moments": {"_count": 1, "of": {"_count": 1}}, "its": {"_count": 1, "capabilities": {"_count": 1}}}, "AntiDark": {"_count": 1, "Force": {"_count": 1, "spell": {"_count": 1}}}, "Force": {"_count": 5, "spell": {"_count": 1, "Theres": {"_count": 1}}, "Defense": {"_count": 3, "League": {"_count": 3}}, "him": {"_count": 1, "to": {"_count": 1}}}, "kindling": {"_count": 2, "again": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "fire": {"_count": 1}}}, "proof": {"_count": 38, "": {"_count": 8, ".": {"_count": 5}, "?": {"_count": 2}, "!": {"_count": 1}}, "Snape": {"_count": 2, "found": {"_count": 1}, "was": {"_count": 1}}, "Harry": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 10, "Crookshanks": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 3}, "Voldemort": {"_count": 1}, "Lily": {"_count": 1}, "Albus": {"_count": 1}, "Dumbledore": {"_count": 1}, "your": {"_count": 1}}, "yet": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "to": {"_count": 1, "support": {"_count": 1}}, "of": {"_count": 3, "that": {"_count": 2}, "what": {"_count": 1}}, "Yeah": {"_count": 1, "well": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "YouKnow": {"_count": 1, "Whos": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 2, "any": {"_count": 1}, "the": {"_count": 1}}, "Voldemort": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}}, "ll": {"_count": 9, "think": {"_count": 1, "we": {"_count": 1}}, "have": {"_count": 2, "me": {"_count": 1}, "to": {"_count": 1}}, "sign": {"_count": 1, "anything": {"_count": 1}}, "get": {"_count": 1, "the": {"_count": 1}}, "know": {"_count": 1, "what": {"_count": 1}}, "be": {"_count": 3, "able": {"_count": 1}, "gone": {"_count": 1}, "home": {"_count": 1}}}, "sacked": {"_count": 23, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "me": {"_count": 1, "instead": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "previous": {"_count": 1}}, "him": {"_count": 2, "said": {"_count": 1}, "anyway": {"_count": 1}}, "you": {"_count": 1, "they": {"_count": 1}}, "his": {"_count": 1, "houseelf": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 1}, "just": {"_count": 1}}, "one": {"_count": 1, "dead": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "laughed": {"_count": 1, "still": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "Trelawney": {"_count": 1, "and": {"_count": 1}}, "yet": {"_count": 1, "has": {"_count": 1}}, "three": {"_count": 1, "days": {"_count": 1}}}, "depended": {"_count": 3, "on": {"_count": 3, "it": {"_count": 2}, "his": {"_count": 1}}}, "Thatll": {"_count": 15, "take": {"_count": 3, "a": {"_count": 1}, "all": {"_count": 1}, "care": {"_count": 1}}, "give": {"_count": 1, "you": {"_count": 1}}, "be": {"_count": 6, "good": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 2}, "true": {"_count": 1}, "enough": {"_count": 1}}, "change": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "depress": {"_count": 1}}, "tell": {"_count": 1, "you": {"_count": 1}}, "have": {"_count": 1, "to": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}}, "Jupiter": {"_count": 4, "toward": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 1, "Uranus": {"_count": 1}}}, "delivered": {"_count": 18, "to": {"_count": 2, "Harry": {"_count": 1}, "our": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "them": {"_count": 1, "from": {"_count": 1}}, "its": {"_count": 1, "so": {"_count": 1}}, "not": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 4, "letter": {"_count": 2}, "Daily": {"_count": 1}, "usual": {"_count": 1}}, "Rons": {"_count": 1, "letter": {"_count": 1}}, "a": {"_count": 1, "flask": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "free": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "by": {"_count": 1, "houseelves": {"_count": 1}}, "itself": {"_count": 1, "to": {"_count": 1}}}, "Meet": {"_count": 5, "Mr": {"_count": 1, "Filch": {"_count": 1}}, "you": {"_count": 3, "back": {"_count": 1}, "on": {"_count": 1}, "in": {"_count": 1}}, "us": {"_count": 1, "upstairs": {"_count": 1}}}, "furor": {"_count": 2, "over": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "deserved": {"_count": 19, "what": {"_count": 3, "theyd": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}}, "it": {"_count": 5, "snapped": {"_count": 1}, "Harry": {"_count": 1}, "more": {"_count": 1}, "": {"_count": 1}, "felt": {"_count": 1}}, "the": {"_count": 2, "chance": {"_count": 1}, "truth": {"_count": 1}}, "to": {"_count": 1, "win": {"_count": 1}}, "a": {"_count": 1, "sort": {"_count": 1}}, "zero": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Kreacher": {"_count": 1, "is": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}, "her": {"_count": 1, "punishment": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}}, "lighting": {"_count": 12, "a": {"_count": 2, "lamp": {"_count": 1}, "path": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "it": {"_count": 2, "with": {"_count": 1}, "like": {"_count": 1}}, "the": {"_count": 2, "fire": {"_count": 1}, "candle": {"_count": 1}}, "his": {"_count": 2, "wand": {"_count": 1}, "own": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "candles": {"_count": 1, "but": {"_count": 1}}, "lamps": {"_count": 1, "with": {"_count": 1}}}, "leering": {"_count": 13, "at": {"_count": 4, "them": {"_count": 1}, "Harry": {"_count": 1}, "Ginny": {"_count": 1}, "Dumbledore": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "down": {"_count": 2, "at": {"_count": 2}}, "as": {"_count": 2, "he": {"_count": 2}}, "his": {"_count": 1, "wand": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "muttered": {"_count": 1}}, "faces": {"_count": 1, "he": {"_count": 1}}}, "pity": {"_count": 24, "they": {"_count": 1, "let": {"_count": 1}}, "because": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "theyve": {"_count": 1, "stopped": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "Lilys": {"_count": 1}}, "it": {"_count": 3, "didnt": {"_count": 1}, "broke": {"_count": 1}, "except": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "on": {"_count": 1, "him": {"_count": 1}}, "intensified": {"_count": 1, "rather": {"_count": 1}}, "for": {"_count": 2, "Fudge": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 2, "embarrassment": {"_count": 1}, "repulsion": {"_count": 1}}, "Slughorns": {"_count": 1, "taste": {"_count": 1}}, "mingled": {"_count": 1, "with": {"_count": 1}}, "she": {"_count": 1, "continued": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "dead": {"_count": 1}}}, "punishments": {"_count": 14, "die": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Severus": {"_count": 1, "said": {"_count": 1}}, "however": {"_count": 1, "came": {"_count": 1}}, "to": {"_count": 1, "anybody": {"_count": 1}}, "or": {"_count": 1, "even": {"_count": 1}}, "if": {"_count": 1, "people": {"_count": 1}}, "certainly": {"_count": 1, "cannot": {"_count": 1}}, "sanctions": {"_count": 2, "and": {"_count": 2}}, "afresh": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "wondered": {"_count": 1}}}, "wrists": {"_count": 8, "from": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "ankles": {"_count": 2}, "removed": {"_count": 1}}, "neck": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "its": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}}, "chains": {"_count": 33, "still": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 6, "manacles": {"_count": 1}, "the": {"_count": 1}, "beads": {"_count": 1}, "urging": {"_count": 1}, "bangles": {"_count": 1}, "fasten": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "pulled": {"_count": 1, "the": {"_count": 1}}, "connected": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "bound": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "rattling": {"_count": 1, "all": {"_count": 1}}, "spring": {"_count": 1, "to": {"_count": 1}}, "clinked": {"_count": 3, "rather": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 1}}, "from": {"_count": 1, "this": {"_count": 1}}, "at": {"_count": 1, "passersby": {"_count": 1}}, "snaked": {"_count": 1, "backward": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "binding": {"_count": 1, "her": {"_count": 1}}, "wove": {"_count": 1, "around": {"_count": 1}}, "were": {"_count": 1, "actually": {"_count": 1}}, "falling": {"_count": 1, "on": {"_count": 1}}, "led": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "an": {"_count": 1}}}, "oiled": {"_count": 1, "in": {"_count": 1, "case": {"_count": 1}}}, "sniffing": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "tree": {"_count": 1, "roots": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Fred": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 2, "around": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "air": {"_count": 1}}}, "scudding": {"_count": 2, "across": {"_count": 1, "it": {"_count": 1}}, "white": {"_count": 1, "clouds": {"_count": 1}}}, "Ahead": {"_count": 2, "Harry": {"_count": 1, "could": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}}, "oaf": {"_count": 6, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 1}, "!": {"_count": 1}}, "Hagrid": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "teaching": {"_count": 1, "classes": {"_count": 1}}}, "mistaken": {"_count": 34, "if": {"_count": 3, "youll": {"_count": 1}, "Voldemort": {"_count": 1}, "we": {"_count": 1}}, "he": {"_count": 3, "transferred": {"_count": 1}, "was": {"_count": 2}}, "the": {"_count": 4, "Signs": {"_count": 1}, "day": {"_count": 1}, "delegation": {"_count": 1}, "time": {"_count": 1}}, "in": {"_count": 2, "Black": {"_count": 1}, "thinking": {"_count": 1}}, "Mostafa": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 3}}, "something": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 2, "we": {"_count": 1}, "you": {"_count": 1}}, "Rita": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "impression": {"_count": 1, "that": {"_count": 1}}, "about": {"_count": 1, "Black": {"_count": 1}}, "Bella": {"_count": 1, "panted": {"_count": 1}}, "arrests": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 3, "Voldemort": {"_count": 2}, "Krum": {"_count": 1}}, "As": {"_count": 1, "anybody": {"_count": 1}}, "for": {"_count": 1, "such": {"_count": 1}}}, "moan": {"_count": 17, "and": {"_count": 4, "Malfoy": {"_count": 1}, "then": {"_count": 1}, "drool": {"_count": 1}, "you": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "of": {"_count": 5, "longing": {"_count": 2}, "pain": {"_count": 2}, "satisfaction": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "aloud": {"_count": 1, "": {"_count": 1}}}, "werewolves": {"_count": 25, "I": {"_count": 1, "heard": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "yet": {"_count": 2, "were": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "two": {"_count": 1, "rolls": {"_count": 1}}, "are": {"_count": 1, "so": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 5, "giants": {"_count": 2}, "traitors": {"_count": 1}, "Snape": {"_count": 1}, "the": {"_count": 1}}, "or": {"_count": 1, "keep": {"_count": 1}}, "to": {"_count": 1, "overcome": {"_count": 1}}, "deserve": {"_count": 1, "blood": {"_count": 1}}, "dont": {"_count": 1, "kill": {"_count": 1}}}, "cracking": {"_count": 15, "with": {"_count": 1, "glee": {"_count": 1}}, "twig": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "noise": {"_count": 4, "but": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "stone": {"_count": 1, "shattering": {"_count": 1}}, "jokes": {"_count": 1, "for": {"_count": 1}}}, "Shouldve": {"_count": 3, "thought": {"_count": 1, "of": {"_count": 1}}, "realized": {"_count": 1, "you": {"_count": 1}}, "made": {"_count": 1, "your": {"_count": 1}}}, "arrows": {"_count": 11, "hung": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 2, "crosses": {"_count": 1}, "a": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}, "went": {"_count": 1, "soaring": {"_count": 1}}, "past": {"_count": 1, "them": {"_count": 1}}, "soared": {"_count": 1, "through": {"_count": 1}}, "were": {"_count": 1, "suddenly": {"_count": 1}}, "from": {"_count": 1, "wounds": {"_count": 1}}}, "Abou": {"_count": 1, "time": {"_count": 1, "he": {"_count": 1}}}, "waitin": {"_count": 3, "fer": {"_count": 2, "half": {"_count": 1}, "us": {"_count": 1}}, "ter": {"_count": 1, "be": {"_count": 1}}}, "lecturin": {"_count": 1, "them": {"_count": 1, "eh": {"_count": 1}}}, "Snot": {"_count": 2, "your": {"_count": 1, "place": {"_count": 1}}, "too": {"_count": 1, "bad": {"_count": 1}}}, "Copyin": {"_count": 1, "lines": {"_count": 1, "": {"_count": 1}}}, "goods": {"_count": 8, "that": {"_count": 2, "ter": {"_count": 1}, "revolved": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "me": {"_count": 1}}, "theory": {"_count": 1, "going": {"_count": 1}}, "happened": {"_count": 1, "mumbled": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}}, "fatherd": {"_count": 1, "rather": {"_count": 1, "you": {"_count": 1}}}, "gaze": {"_count": 68, "": {"_count": 8, ".": {"_count": 8}}, "made": {"_count": 2, "Harry": {"_count": 1}, "her": {"_count": 1}}, "from": {"_count": 6, "the": {"_count": 4}, "Fred": {"_count": 1}, "Snape": {"_count": 1}}, "the": {"_count": 1, "hand": {"_count": 1}}, "for": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "never": {"_count": 1, "leaving": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "passersby": {"_count": 1}}, "saw": {"_count": 2, "that": {"_count": 2}}, "and": {"_count": 1, "looked": {"_count": 1}}, "And": {"_count": 1, "Harry": {"_count": 1}}, "unfocused": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 1}, "Hagrids": {"_count": 1}, "his": {"_count": 3}}, "lingered": {"_count": 2, "this": {"_count": 1}, "maliciously": {"_count": 1}}, "became": {"_count": 1, "distinctly": {"_count": 1}}, "intently": {"_count": 1, "at": {"_count": 1}}, "up": {"_count": 4, "at": {"_count": 3}, "the": {"_count": 1}}, "moved": {"_count": 1, "from": {"_count": 1}}, "enthralled": {"_count": 1, "at": {"_count": 1}}, "unflinchingly": {"_count": 1, "concentrating": {"_count": 1}}, "out": {"_count": 1, "at": {"_count": 1}}, "they": {"_count": 1, "grasped": {"_count": 1}}, "at": {"_count": 4, "her": {"_count": 1}, "the": {"_count": 3}}, "fell": {"_count": 2, "upon": {"_count": 2}}, "but": {"_count": 1, "glowered": {"_count": 1}}, "was": {"_count": 1, "steady": {"_count": 1}}, "he": {"_count": 1, "clapped": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "wandered": {"_count": 1}}, "avidly": {"_count": 1, "at": {"_count": 1}}, "wandered": {"_count": 1, "to": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 1, "nodded": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "fixed": {"_count": 1, "upon": {"_count": 1}}, "drift": {"_count": 1, "over": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}}, "risks": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "notice": {"_count": 1, "by": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}, "Concentrate": {"_count": 1, "on": {"_count": 1}}, "Last": {"_count": 1, "year": {"_count": 1}}}, "Holding": {"_count": 9, "his": {"_count": 2, "lamp": {"_count": 1}, "illuminated": {"_count": 1}}, "Your": {"_count": 1, "Wand": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "the": {"_count": 1, "prophecy": {"_count": 1}}, "him": {"_count": 1, "fast": {"_count": 1}}, "it": {"_count": 3, "up": {"_count": 1}, "close": {"_count": 1}, "using": {"_count": 1}}}, "winding": {"_count": 20, "earth": {"_count": 1, "track": {"_count": 1}}, "path": {"_count": 2, "": {"_count": 1}, "stretching": {"_count": 1}}, "cobbled": {"_count": 2, "street": {"_count": 2}}, "its": {"_count": 2, "way": {"_count": 2}}, "stair": {"_count": 2, "to": {"_count": 1}, "in": {"_count": 1}}, "me": {"_count": 1, "up": {"_count": 1}}, "ornamental": {"_count": 1, "paths": {"_count": 1}}, "paths": {"_count": 1, "through": {"_count": 1}}, "it": {"_count": 1, "around": {"_count": 1}}, "lane": {"_count": 2, "was": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 1, "stony": {"_count": 1}}, "road": {"_count": 2, "on": {"_count": 1}, "at": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "dangerous": {"_count": 1, "path": {"_count": 1}}}, "track": {"_count": 39, "that": {"_count": 1, "disappeared": {"_count": 1}}, "these": {"_count": 1, "people": {"_count": 1}}, "where": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 12, "time": {"_count": 4}, "things": {"_count": 2}, "what": {"_count": 1}, "whats": {"_count": 1}, "how": {"_count": 1}, "the": {"_count": 3}}, "through": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "Hogwarts": {"_count": 1}}, "him": {"_count": 2, "down": {"_count": 2}}, "sometimes": {"_count": 1, "isnt": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "down": {"_count": 5, "Death": {"_count": 1}, "everything": {"_count": 1}, "objects": {"_count": 1}, "the": {"_count": 2}}, "o": {"_count": 1, "the": {"_count": 1}}, "bordered": {"_count": 1, "by": {"_count": 1}}, "soon": {"_count": 1, "opened": {"_count": 1}}, "them": {"_count": 1, "down": {"_count": 1}}, "anyone": {"_count": 1, "who": {"_count": 1}}, "record": {"_count": 2, "I": {"_count": 1}, "already": {"_count": 1}}, "people": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "shinin": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "Silvery": {"_count": 2, "stuff": {"_count": 1, "": {"_count": 1}}, "blue": {"_count": 1, "neither": {"_count": 1}}}, "inter": {"_count": 16, "two": {"_count": 1, "parties": {"_count": 1}}, "yeh": {"_count": 1, "Ronan": {"_count": 1}}, "someone": {"_count": 1, "else": {"_count": 1}}, "hidin": {"_count": 1, "": {"_count": 1}}, "Hogwarts": {"_count": 1, "Hagrid": {"_count": 1}}, "France": {"_count": 1, "an": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}, "camp": {"_count": 1, "again": {"_count": 1}}, "the": {"_count": 4, "caves": {"_count": 1}, "gully": {"_count": 1}, "nearest": {"_count": 1}, "forest": {"_count": 1}}, "nuthin": {"_count": 1, "said": {"_count": 1}}, "yer": {"_count": 1, "timetables": {"_count": 1}}, "that": {"_count": 1, "necklace": {"_count": 1}}, "this": {"_count": 1, "than": {"_count": 1}}}, "trail": {"_count": 12, "in": {"_count": 1, "diffrent": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 6, "Slytherins": {"_count": 1}, "muddy": {"_count": 1}, "flame": {"_count": 1}, "parchment": {"_count": 1}, "the": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "this": {"_count": 1, "must": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "goes": {"_count": 1, "cold": {"_count": 1}}}, "staggerin": {"_count": 1, "around": {"_count": 1, "since": {"_count": 1}}}, "Fangs": {"_count": 14, "long": {"_count": 1, "teeth": {"_count": 1}}, "ears": {"_count": 2, "": {"_count": 2}}, "nose": {"_count": 1, "": {"_count": 1}}, "hot": {"_count": 1, "breath": {"_count": 1}}, "stared": {"_count": 1, "wildly": {"_count": 1}}, "booming": {"_count": 2, "barks": {"_count": 2}}, "mouth": {"_count": 1, "": {"_count": 1}}, "basket": {"_count": 1, "": {"_count": 1}}, "near": {"_count": 1, "enough": {"_count": 1}}, "limp": {"_count": 1, "body": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "reassuringly": {"_count": 1, "warm": {"_count": 1}}}, "coward": {"_count": 10, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "especially": {"_count": 1, "since": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 4}}, "for": {"_count": 1, "doing": {"_count": 1}}, "Sirius": {"_count": 1, "was": {"_count": 1}}, "DONT": {"_count": 1, "screamed": {"_count": 1}}}, "Hermionell": {"_count": 2, "go": {"_count": 1, "one": {"_count": 1}}, "probably": {"_count": 1, "have": {"_count": 1}}}, "Fangll": {"_count": 1, "go": {"_count": 1, "the": {"_count": 1}}}, "silverblue": {"_count": 1, "blood": {"_count": 1, "on": {"_count": 1}}}, "killing": {"_count": 37, "the": {"_count": 3, "unicorns": {"_count": 1}, "small": {"_count": 1}, "other": {"_count": 1}}, "me": {"_count": 3, "": {"_count": 3}}, "off": {"_count": 1, "students": {"_count": 1}}, "one": {"_count": 3, "": {"_count": 1}, "another": {"_count": 1}, "person": {"_count": 1}}, "are": {"_count": 1, "most": {"_count": 1}}, "Mudbloods": {"_count": 1, "doesnt": {"_count": 1}}, "Muggleborns": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 7, "had": {"_count": 1}, "here": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 1}, "am": {"_count": 1}}, "their": {"_count": 1, "past": {"_count": 1}}, "Pettigrew": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "knows": {"_count": 1}}, "our": {"_count": 1, "fathers": {"_count": 1}}, "people": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "unless": {"_count": 1, "I": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 1, "eat": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "meself": {"_count": 1, "Were": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "anyone": {"_count": 1, "else": {"_count": 1}}}, "creatures": {"_count": 88, "": {"_count": 16, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 2}}, "I": {"_count": 1, "look": {"_count": 1}}, "known": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "class": {"_count": 1}, "the": {"_count": 1}}, "phoenixes": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "clutches": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "did": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 9, "lurked": {"_count": 1}, "walk": {"_count": 1}, "Hagrid": {"_count": 1}, "most": {"_count": 1}, "gallop": {"_count": 1}, "they": {"_count": 1}, "drain": {"_count": 1}, "lived": {"_count": 1}, "dwell": {"_count": 1}}, "in": {"_count": 4, "existence": {"_count": 1}, "it": {"_count": 1}, "their": {"_count": 1}, "here": {"_count": 1}}, "and": {"_count": 4, "other": {"_count": 1}, "enchanted": {"_count": 1}, "Death": {"_count": 1}, "seemed": {"_count": 1}}, "called": {"_count": 2, "dementors": {"_count": 1}, "": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "the": {"_count": 1, "more": {"_count": 1}}, "youve": {"_count": 1, "covered": {"_count": 1}}, "who": {"_count": 3, "are": {"_count": 1}, "will": {"_count": 1}, "lived": {"_count": 1}}, "like": {"_count": 4, "hags": {"_count": 1}, "unicorns": {"_count": 1}, "Aragog": {"_count": 1}, "me": {"_count": 1}}, "ter": {"_count": 1, "tell": {"_count": 1}}, "he": {"_count": 2, "has": {"_count": 1}, "had": {"_count": 1}}, "with": {"_count": 1, "long": {"_count": 1}}, "whose": {"_count": 2, "faces": {"_count": 1}, "quills": {"_count": 1}}, "as": {"_count": 1, "werewolves": {"_count": 1}}, "whom": {"_count": 1, "all": {"_count": 1}}, "were": {"_count": 2, "cantering": {"_count": 1}, "slaughtered": {"_count": 1}}, "had": {"_count": 1, "cannons": {"_count": 1}}, "standing": {"_count": 2, "between": {"_count": 1}, "quietly": {"_count": 1}}, "looked": {"_count": 1, "eerie": {"_count": 1}}, "made": {"_count": 1, "of": {"_count": 1}}, "admittedly": {"_count": 1, "the": {"_count": 1}}, "saved": {"_count": 1, "fer": {"_count": 1}}, "most": {"_count": 1, "likely": {"_count": 1}}, "an": {"_count": 1, "she": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "began": {"_count": 1, "": {"_count": 1}}, "coils": {"_count": 1, "loosened": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "swooping": {"_count": 1, "through": {"_count": 1}}, "squabbling": {"_count": 1, "bitey": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "some": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "approach": {"_count": 1, "": {"_count": 1}}, "vast": {"_count": 1, "foot": {"_count": 1}}, "soaring": {"_count": 1, "around": {"_count": 1}}}, "mossy": {"_count": 7, "tree": {"_count": 1, "stump": {"_count": 1}}, "teeth": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "trees": {"_count": 1}, "so": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "boulder": {"_count": 1, "to": {"_count": 1}}, "stone": {"_count": 1, "gazing": {"_count": 1}}}, "stump": {"_count": 13, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 3, "his": {"_count": 2}, "an": {"_count": 1}}, "but": {"_count": 1, "Voldemort": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "nearby": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "sat": {"_count": 1, "there": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 1, "wide": {"_count": 1}}}, "cantve": {"_count": 4, "gone": {"_count": 1, "far": {"_count": 1}}, "bin": {"_count": 1, "him": {"_count": 1}}, "been": {"_count": 1, "there": {"_count": 1}}, "tied": {"_count": 1, "him": {"_count": 1}}}, "BEHIND": {"_count": 3, "THAT": {"_count": 1, "TREE": {"_count": 1}}, "YOU": {"_count": 2, "": {"_count": 2}}}, "TREE": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "hoisted": {"_count": 23, "them": {"_count": 4, "off": {"_count": 1}, "up": {"_count": 1}, "into": {"_count": 2}}, "himself": {"_count": 4, "onto": {"_count": 1}, "into": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "rucksacks": {"_count": 1}}, "his": {"_count": 2, "backpack": {"_count": 1}, "trunk": {"_count": 1}}, "the": {"_count": 3, "Extendable": {"_count": 1}, "cup": {"_count": 1}, "laundry": {"_count": 1}}, "her": {"_count": 1, "handbag": {"_count": 1}}, "a": {"_count": 1, "box": {"_count": 1}}, "him": {"_count": 2, "up": {"_count": 1}, "out": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "onto": {"_count": 1}}, "herself": {"_count": 1, "up": {"_count": 1}}, "Severus": {"_count": 1, "into": {"_count": 1}}}, "arrow": {"_count": 8, "and": {"_count": 1, "fitted": {"_count": 1}}, "sticking": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 2, "tip": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "flew": {"_count": 2, "through": {"_count": 1}, "so": {"_count": 1}}, "shafts": {"_count": 1, "but": {"_count": 1}}}, "listened": {"_count": 45, "": {"_count": 5, ".": {"_count": 5}}, "anxiously": {"_count": 1, "but": {"_count": 1}}, "with": {"_count": 2, "their": {"_count": 1}, "bated": {"_count": 1}}, "as": {"_count": 2, "Snape": {"_count": 1}, "hard": {"_count": 1}}, "to": {"_count": 19, "Professor": {"_count": 1}, "Percy": {"_count": 1}, "what": {"_count": 2}, "the": {"_count": 4}, "Nevilles": {"_count": 1}, "a": {"_count": 1}, "more": {"_count": 1}, "half": {"_count": 1}, "them": {"_count": 1}, "sense": {"_count": 1}, "Harrys": {"_count": 1}, "all": {"_count": 2}, "Snape": {"_count": 1}, "it": {"_count": 1}}, "closely": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "intently": {"_count": 3, "for": {"_count": 2}, "to": {"_count": 1}}, "more": {"_count": 1, "closely": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "and": {"_count": 1, "heard": {"_count": 1}}, "jealously": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "loud": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "hard": {"_count": 2, "for": {"_count": 1}, "as": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}}, "shouldn": {"_count": 4, "be": {"_count": 3, "": {"_count": 1}, "down": {"_count": 1}, "outta": {"_count": 1}}, "feel": {"_count": 1, "happy": {"_count": 1}}}, "wasn": {"_count": 16, "no": {"_count": 2, "werewolf": {"_count": 1}, "unicorn": {"_count": 1}}, "Harry": {"_count": 1, "Professor": {"_count": 1}}, "upset": {"_count": 1, "abou": {"_count": 1}}, "you": {"_count": 1, "an": {"_count": 1}}, "really": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "didn": {"_count": 1}}, "a": {"_count": 1, "bad": {"_count": 1}}, "good": {"_count": 1, "": {"_count": 1}}, "dangling": {"_count": 1, "them": {"_count": 1}}, "the": {"_count": 1, "giants": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "fer": {"_count": 1, "": {"_count": 1}}, "easy": {"_count": 2, "ter": {"_count": 1}, "gettin": {"_count": 1}}}, "grimly": {"_count": 50, "": {"_count": 31, ".": {"_count": 31}}, "throwing": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "himself": {"_count": 1}}, "wiping": {"_count": 1, "flecks": {"_count": 1}}, "looking": {"_count": 2, "down": {"_count": 1}, "out": {"_count": 1}}, "and": {"_count": 2, "his": {"_count": 1}, "before": {"_count": 1}}, "stomping": {"_count": 1, "up": {"_count": 1}}, "I": {"_count": 1, "see": {"_count": 1}}, "Ill": {"_count": 1, "see": {"_count": 1}}, "taking": {"_count": 2, "down": {"_count": 1}, "her": {"_count": 1}}, "satisfied": {"_count": 1, "expression": {"_count": 1}}, "without": {"_count": 1, "serious": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "Ive": {"_count": 1, "become": {"_count": 1}}, "pleased": {"_count": 1, "expression": {"_count": 1}}, "over": {"_count": 1, "breakfast": {"_count": 1}}, "putting": {"_count": 1, "down": {"_count": 1}}}, "Show": {"_count": 5, "yerself": {"_count": 1, "Im": {"_count": 1}}, "her": {"_count": 1, "your": {"_count": 1}}, "yourself": {"_count": 2, "": {"_count": 2}}, "him": {"_count": 1, "Ron": {"_count": 1}}}, "chestnut": {"_count": 6, "body": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 2, "inky": {"_count": 1}, "copper": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "horse": {"_count": 1, "ridden": {"_count": 1}}}, "reddish": {"_count": 6, "tail": {"_count": 1, "": {"_count": 1}}, "light": {"_count": 1, "cast": {"_count": 1}}, "black": {"_count": 1, "": {"_count": 1}}, "mound": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "glow": {"_count": 1, "that": {"_count": 1}}}, "Ronan": {"_count": 23, "said": {"_count": 2, "Hagrid": {"_count": 2}}, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 2}}, "you": {"_count": 2, "two": {"_count": 1}, "seen": {"_count": 1}}, "sighed": {"_count": 1, "": {"_count": 1}}, "cause": {"_count": 1, "theres": {"_count": 1}}, "didnt": {"_count": 1, "answer": {"_count": 1}}, "repeated": {"_count": 1, "while": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "made": {"_count": 1, "Hagrid": {"_count": 1}}, "and": {"_count": 4, "Bane": {"_count": 3}, "Magorian": {"_count": 1}}, "or": {"_count": 1, "Bane": {"_count": 1}}, "pawed": {"_count": 1, "the": {"_count": 1}}, "replied": {"_count": 1, "the": {"_count": 1}}}, "centaurs": {"_count": 56, "hand": {"_count": 1, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "are": {"_count": 3, "right": {"_count": 1}, "all": {"_count": 1}, "good": {"_count": 1}}, "arrow": {"_count": 2, "the": {"_count": 2}}, "they": {"_count": 1, "were": {"_count": 1}}, "banished": {"_count": 1, "you": {"_count": 1}}, "which": {"_count": 1, "is": {"_count": 1}}, "may": {"_count": 1, "attempt": {"_count": 1}}, "years": {"_count": 1, "and": {"_count": 1}}, "sometimes": {"_count": 1, "read": {"_count": 1}}, "knowledge": {"_count": 1, "was": {"_count": 1}}, "battle": {"_count": 1, "": {"_count": 1}}, "Ve": {"_count": 1, "bin": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "slipped": {"_count": 1, "out": {"_count": 1}}, "dont": {"_count": 1, "want": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 5, "emerging": {"_count": 1}, "for": {"_count": 1}, "quite": {"_count": 1}, "watching": {"_count": 1}, "scattering": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "bellowed": {"_count": 1, "their": {"_count": 1}}, "torso": {"_count": 1, "and": {"_count": 1}}, "charged": {"_count": 1, "": {"_count": 1}}, "leapt": {"_count": 1, "over": {"_count": 1}}, "hoof": {"_count": 1, "descended": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "filling": {"_count": 1, "the": {"_count": 1}}, "nearest": {"_count": 1, "him": {"_count": 1}}, "arms": {"_count": 1, "tensed": {"_count": 1}}, "looked": {"_count": 1, "worried": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "come": {"_count": 1}}, "scattered": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 2, "blood": {"_count": 1}, "they": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "yet": {"_count": 1}, "house": {"_count": 1}}, "arm": {"_count": 1, "holding": {"_count": 1}}, "legs": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "wont": {"_count": 1, "take": {"_count": 1}}, "\u2018filthy": {"_count": 1, "halfbreeds": {"_count": 1}}, "tribute": {"_count": 1, "He": {"_count": 1}}, "Bane": {"_count": 1, "Ronan": {"_count": 1}}}, "sorrowful": {"_count": 2, "voice": {"_count": 1, "": {"_count": 1}}, "understanding": {"_count": 1, "": {"_count": 1}}}, "loose": {"_count": 30, "in": {"_count": 2, "this": {"_count": 1}, "the": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "windowpane": {"_count": 1, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "pages": {"_count": 1, "of": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "floorboard": {"_count": 7, "under": {"_count": 2}, "with": {"_count": 1}, "and": {"_count": 2}, "upstairs": {"_count": 1}, "of": {"_count": 1}}, "Yeah": {"_count": 1, "I": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "them": {"_count": 1}}, "firework": {"_count": 1, "": {"_count": 1}}, "chippings": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "laughed": {"_count": 1}}, "but": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "there": {"_count": 1}}}, "centaur": {"_count": 42, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "blackhaired": {"_count": 1, "and": {"_count": 1}}, "we": {"_count": 1, "heard": {"_count": 1}}, "was": {"_count": 2, "standing": {"_count": 1}, "still": {"_count": 1}}, "pulling": {"_count": 1, "Harry": {"_count": 1}}, "didnt": {"_count": 1, "answer": {"_count": 1}}, "a": {"_count": 1, "goblin": {"_count": 1}}, "who": {"_count": 2, "surveyed": {"_count": 1}, "had": {"_count": 1}}, "inclining": {"_count": 1, "his": {"_count": 1}}, "Bane": {"_count": 1, "had": {"_count": 1}}, "advanced": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "rustled": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "pawed": {"_count": 1, "at": {"_count": 1}}, "called": {"_count": 1, "Magorian": {"_count": 1}}, "whom": {"_count": 2, "Harry": {"_count": 2}}, "holding": {"_count": 3, "Hermione": {"_count": 2}, "Harry": {"_count": 1}}, "threw": {"_count": 1, "back": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "shouted": {"_count": 1, "They": {"_count": 1}}, "to": {"_count": 1, "more": {"_count": 1}}, "let": {"_count": 1, "him": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "galloped": {"_count": 1, "at": {"_count": 1}}, "cantered": {"_count": 1, "around": {"_count": 1}}, "galloping": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 1, "lay": {"_count": 1}}, "herd": {"_count": 1, "said": {"_count": 1}}, "knows": {"_count": 1, "nothing": {"_count": 1}}, "Firenze": {"_count": 2, "who": {"_count": 1}, "and": {"_count": 1}}}, "Wed": {"_count": 28, "noticed": {"_count": 1, "said": {"_count": 1}}, "better": {"_count": 17, "put": {"_count": 1}, "get": {"_count": 9}, "not": {"_count": 1}, "go": {"_count": 3}, "use": {"_count": 1}, "change": {"_count": 1}, "shut": {"_count": 1}}, "be": {"_count": 3, "there": {"_count": 1}, "breaking": {"_count": 1}, "best": {"_count": 1}}, "never": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "only": {"_count": 1, "be": {"_count": 1}}, "have": {"_count": 1, "seen": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "fail": {"_count": 1, "our": {"_count": 1}}, "walk": {"_count": 1, "out": {"_count": 1}}}, "Erm": {"_count": 18, "A": {"_count": 1, "bit": {"_count": 1}}, "where": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "said": {"_count": 1, "Neville": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "innocent": {"_count": 59, "are": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 14}, "!": {"_count": 3}}, "hands": {"_count": 1, "I": {"_count": 1}}, "Harry": {"_count": 1, "snorted": {"_count": 1}}, "than": {"_count": 1, "we": {"_count": 1}}, "by": {"_count": 1, "suggesting": {"_count": 1}}, "people": {"_count": 3, "and": {"_count": 1}, "an": {"_count": 1}, "out": {"_count": 1}}, "all": {"_count": 1, "too": {"_count": 1}}, "looking": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 4, "back": {"_count": 1}, "would": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "lives": {"_count": 1, "Peter": {"_count": 1}}, "innocent": {"_count": 1, "Well": {"_count": 1}}, "Well": {"_count": 1, "be": {"_count": 1}}, "life": {"_count": 2, "tonight": {"_count": 1}, "": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "murders": {"_count": 1}}, "tone": {"_count": 1, "that": {"_count": 1}}, "occasions": {"_count": 1, "to": {"_count": 1}}, "bystanders": {"_count": 1, "in": {"_count": 1}}, "source": {"_count": 1, "": {"_count": 1}}, "Muggles": {"_count": 2, "and": {"_count": 1}, "who": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "determination": {"_count": 1, "on": {"_count": 1}}, "clean": {"_count": 1, "people": {"_count": 1}}, "Flitterbloom": {"_count": 1, "but": {"_count": 1}}, "surprise": {"_count": 1, "onto": {"_count": 1}}, "sparrow": {"_count": 1, "caused": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "reason": {"_count": 1, "to": {"_count": 1}}, "believe": {"_count": 1, "": {"_count": 1}}, "victims": {"_count": 1, "guilty": {"_count": 1}}, "child": {"_count": 1, "": {"_count": 1}}, "scurryings": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "Azkaban": {"_count": 1}}}, "victims": {"_count": 21, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "to": {"_count": 1, "relive": {"_count": 1}}, "than": {"_count": 1, "that": {"_count": 1}}, "whispered": {"_count": 1, "as": {"_count": 1}}, "prowled": {"_count": 1, "around": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 3, "Voldemorts": {"_count": 1}, "his": {"_count": 1}, "whatever": {"_count": 1}}, "and": {"_count": 2, "to": {"_count": 1}, "before": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "ensuring": {"_count": 1, "that": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "who": {"_count": 1, "visited": {"_count": 1}}, "survived": {"_count": 1, "": {"_count": 1}}, "guilty": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "travelers": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}}, "Anythin": {"_count": 1, "unusual": {"_count": 1, "": {"_count": 1}}}, "Unusually": {"_count": 1, "bright": {"_count": 1, "": {"_count": 1}}}, "meanin": {"_count": 2, "anythin": {"_count": 1, "unusual": {"_count": 1}}, "ter": {"_count": 1, "write": {"_count": 1}}}, "hides": {"_count": 3, "many": {"_count": 1, "secrets": {"_count": 1}}, "Harry": {"_count": 1, "watched": {"_count": 1}}, "which": {"_count": 1, "none": {"_count": 1}}}, "secrets": {"_count": 31, "": {"_count": 6, ".": {"_count": 6}}, "all": {"_count": 1, "over": {"_count": 1}}, "to": {"_count": 3, "an": {"_count": 1}, "start": {"_count": 1}, "you": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 4, "our": {"_count": 2}, "right": {"_count": 1}, "tells": {"_count": 1}}, "Igor": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "among": {"_count": 1, "humans": {"_count": 1}}, "of": {"_count": 7, "death": {"_count": 1}, "wands": {"_count": 1}, "wandlore": {"_count": 1}, "Gringotts": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "victory": {"_count": 1}}, "than": {"_count": 1, "most": {"_count": 1}}, "that": {"_count": 1, "Dumbledore": {"_count": 1}}, "clutched": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "one": {"_count": 1}}, "from": {"_count": 1, "you": {"_count": 1}}}, "bow": {"_count": 50, "again": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "ties": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "tie": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 11, "left": {"_count": 1}, "then": {"_count": 1}, "a": {"_count": 1}, "pointing": {"_count": 1}, "an": {"_count": 1}, "he": {"_count": 2}, "turned": {"_count": 1}, "quiver": {"_count": 1}, "followed": {"_count": 1}, "Disapparated": {"_count": 1}}, "an": {"_count": 1, "yeh": {"_count": 1}}, "then": {"_count": 1, "get": {"_count": 1}}, "Harry": {"_count": 1, "didnt": {"_count": 1}}, "to": {"_count": 4, "each": {"_count": 1}, "George": {"_count": 1}, "her": {"_count": 1}, "Hermione": {"_count": 1}}, "Voldemort": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 2, "flattened": {"_count": 1}, "the": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "around": {"_count": 1, "its": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "were": {"_count": 1, "slung": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "spun": {"_count": 1, "off": {"_count": 1}}, "as": {"_count": 2, "deep": {"_count": 1}, "he": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "even": {"_count": 1, "as": {"_count": 1}}, "set": {"_count": 1, "atop": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 1, "very": {"_count": 1}}}, "bodied": {"_count": 1, "and": {"_count": 1, "wilderlooking": {"_count": 1}}}, "wilderlooking": {"_count": 1, "than": {"_count": 1, "Ronan": {"_count": 1}}}, "Hullo": {"_count": 4, "Bane": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Colin": {"_count": 1, "said": {"_count": 1}}, "Neville": {"_count": 1, "said": {"_count": 1}}}, "Bane": {"_count": 29, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "walked": {"_count": 1, "over": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "one": {"_count": 1}}, "came": {"_count": 1, "bursting": {"_count": 1}}, "thundered": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "kicked": {"_count": 1, "his": {"_count": 1}}, "yes": {"_count": 1, "with": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "so": {"_count": 1, "angry": {"_count": 1}}, "was": {"_count": 1, "furious": {"_count": 1}}, "thinks": {"_count": 1, "Firenze": {"_count": 1}}, "11": {"_count": 1, "be": {"_count": 1}}, "doesnt": {"_count": 1, "stop": {"_count": 1}}, "had": {"_count": 1, "shouted": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "gave": {"_count": 1, "no": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}, "contemptuously": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "several": {"_count": 1}, "lifted": {"_count": 1}}, "still": {"_count": 1, "screaming": {"_count": 1}}, "Ronan": {"_count": 1, "and": {"_count": 1}}}, "injured": {"_count": 46, "would": {"_count": 1, "yeh": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 2}}, "than": {"_count": 1, "remain": {"_count": 1}}, "said": {"_count": 2, "Wood": {"_count": 1}, "Hagrid": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 2}}, "leg": {"_count": 5, "which": {"_count": 1}, "gave": {"_count": 1}, "shook": {"_count": 1}, "would": {"_count": 1}, "and": {"_count": 1}}, "Dumbledore": {"_count": 1, "Diggorys": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "wife": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Ask": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "Buckbeak": {"_count": 1, "the": {"_count": 1}}, "hand": {"_count": 4, "": {"_count": 3}, "seemed": {"_count": 1}}, "several": {"_count": 1, "Ministry": {"_count": 1}}, "your": {"_count": 1, "hand": {"_count": 1}}, "I": {"_count": 1, "might": {"_count": 1}}, "two": {"_count": 1, "mightve": {"_count": 1}}, "Rodolphus": {"_count": 1, "": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "Griphook": {"_count": 1, "into": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "being": {"_count": 1}}, "his": {"_count": 1, "flank": {"_count": 1}}, "girl": {"_count": 1, "now": {"_count": 1}}}, "Ruddy": {"_count": 5, "stargazers": {"_count": 1, "": {"_count": 1}}, "brilliant": {"_count": 1, "": {"_count": 1}}, "marvelous": {"_count": 1, "": {"_count": 1}}, "livid": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "nags": {"_count": 1}}}, "stargazers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "closern": {"_count": 1, "the": {"_count": 1, "moon": {"_count": 1}}}, "mostly": {"_count": 13, "but": {"_count": 1, "theyre": {"_count": 1}}, "of": {"_count": 1, "witches": {"_count": 1}}, "drifting": {"_count": 1, "around": {"_count": 1}}, "sir": {"_count": 1, "life": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "stuff": {"_count": 1, "Ive": {"_count": 1}}, "they": {"_count": 1, "killed": {"_count": 1}}, "sat": {"_count": 1, "in": {"_count": 1}}, "if": {"_count": 1, "not": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}}, "turnin": {"_count": 2, "up": {"_count": 1, "if": {"_count": 1}}, "yeh": {"_count": 1, "in": {"_count": 1}}}, "hooves": {"_count": 15, "to": {"_count": 1, "you": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 2}}, "gathering": {"_count": 1, "speed": {"_count": 1}}, "made": {"_count": 1, "no": {"_count": 1}}, "larger": {"_count": 1, "than": {"_count": 1}}, "and": {"_count": 2, "throwing": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "thudded": {"_count": 1, "over": {"_count": 1}}, "was": {"_count": 1, "extremely": {"_count": 1}}, "thundered": {"_count": 1, "around": {"_count": 1}}, "surrounding": {"_count": 1, "them": {"_count": 1}}, "as": {"_count": 1, "behind": {"_count": 1}}}, "dense": {"_count": 14, "dark": {"_count": 1, "trees": {"_count": 1}}, "patch": {"_count": 1, "of": {"_count": 1}}, "branches": {"_count": 1, "its": {"_count": 1}}, "lower": {"_count": 1, "branches": {"_count": 1}}, "that": {"_count": 1, "this": {"_count": 1}}, "clump": {"_count": 1, "of": {"_count": 1}}, "smoky": {"_count": 1, "hand": {"_count": 1}}, "shadow": {"_count": 1, "of": {"_count": 1}}, "shadows": {"_count": 1, "of": {"_count": 1}}, "tree": {"_count": 1, "canopy": {"_count": 1}}, "fog": {"_count": 1, "filled": {"_count": 1}}, "gray": {"_count": 1, "cloud": {"_count": 1}}, "black": {"_count": 1, "boundary": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}}, "undergrowth": {"_count": 5, "and": {"_count": 1, "stood": {"_count": 1}}, "Fang": {"_count": 1, "howling": {"_count": 1}}, "with": {"_count": 1, "what": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "mushrooms": {"_count": 1}}}, "sharper": {"_count": 3, "than": {"_count": 1, "usual": {"_count": 1}}, "focus": {"_count": 1, "and": {"_count": 1}}, "voice": {"_count": 1, "Is": {"_count": 1}}}, "fuming": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "about": {"_count": 1, "Crookshanks": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "Hermione": {"_count": 1}}}, "sneaked": {"_count": 20, "up": {"_count": 9, "behind": {"_count": 2}, "the": {"_count": 1}, "on": {"_count": 2}, "to": {"_count": 2}, "here": {"_count": 2}}, "these": {"_count": 1, "spare": {"_count": 1}}, "quietly": {"_count": 1, "up": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "off": {"_count": 2, "his": {"_count": 1}, "when": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "sidelong": {"_count": 1}, "dozen": {"_count": 1}}, "into": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "just": {"_count": 1}}}, "panicked": {"_count": 16, "and": {"_count": 1, "sent": {"_count": 1}}, "you": {"_count": 1, "sounded": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "voices": {"_count": 2, "were": {"_count": 1}, "wondering": {"_count": 1}}, "shout": {"_count": 1, "but": {"_count": 1}}, "whisper": {"_count": 1, "swept": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "looks": {"_count": 1, "Dumbledore": {"_count": 1}}, "on": {"_count": 1, "reading": {"_count": 1}}, "Quite": {"_count": 1, "understandable": {"_count": 1}}, "I": {"_count": 1, "heard": {"_count": 1}}, "its": {"_count": 1, "as": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}}, "makin": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "em": {"_count": 1, "unhappy": {"_count": 1}}, "a": {"_count": 1, "big": {"_count": 1}}, "investigations": {"_count": 1, "in": {"_count": 1}}}, "changin": {"_count": 1, "groups": {"_count": 1, "Neville": {"_count": 1}}}, "idiot": {"_count": 37, "": {"_count": 13, ".": {"_count": 7}, "!": {"_count": 6}}, "Dont": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Bill": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "its": {"_count": 1, "Ron": {"_count": 1}}, "Hogwarts": {"_count": 1, "champion": {"_count": 1}}, "sitting": {"_count": 1, "here": {"_count": 1}}, "if": {"_count": 1, "everyone": {"_count": 1}}, "One": {"_count": 1, "or": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "run": {"_count": 1}, "believe": {"_count": 1}}, "brother": {"_count": 1, "soft": {"_count": 1}}, "sorry": {"_count": 1, "Mrs": {"_count": 1}}, "who": {"_count": 1, "didnt": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "from": {"_count": 1, "Hufflepuff": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "she": {"_count": 1, "knows": {"_count": 1}}, "Longbottom": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "Luna": {"_count": 1}}, "Expecto": {"_count": 1, "Patronum": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}}, "frightenin": {"_count": 1, "you": {"_count": 1, "an": {"_count": 1}}}, "thicker": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "than": {"_count": 5, "ever": {"_count": 1}, "usual": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}, "cold": {"_count": 1}}, "our": {"_count": 1, "disguises": {"_count": 1}}, "and": {"_count": 1, "darker": {"_count": 1}}}, "splashes": {"_count": 4, "on": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "drifting": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "inched": {"_count": 4, "closer": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "slowly": {"_count": 1, "along": {"_count": 1}}}, "slender": {"_count": 3, "legs": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 1, "beautiful": {"_count": 1}}, "hope": {"_count": 1, "left": {"_count": 1}}}, "pearlywhite": {"_count": 5, "on": {"_count": 1, "the": {"_count": 1}}, "translucent": {"_count": 1, "people": {"_count": 1}}, "and": {"_count": 1, "transparent": {"_count": 1}}, "figures": {"_count": 1, "unfurled": {"_count": 1}}, "figure": {"_count": 1, "with": {"_count": 1}}}, "freeze": {"_count": 6, "where": {"_count": 2, "he": {"_count": 2}}, "your": {"_count": 1, "insides": {"_count": 1}}, "the": {"_count": 1, "tree": {"_count": 1}}, "and": {"_count": 1, "released": {"_count": 1}}, "solid": {"_count": 1, "as": {"_count": 1}}}, "stalking": {"_count": 7, "beast": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 1, "you": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "so": {"_count": 1}}, "the": {"_count": 1, "school": {"_count": 1}}, "off": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}}, "cloaked": {"_count": 7, "figure": {"_count": 3, "reached": {"_count": 1}, "that": {"_count": 1}, "edged": {"_count": 1}}, "man": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 2, "masked": {"_count": 1}, "hooded": {"_count": 1}}, "men": {"_count": 1, "had": {"_count": 1}}}, "lowered": {"_count": 80, "its": {"_count": 3, "head": {"_count": 1}, "hood": {"_count": 1}, "mouth": {"_count": 1}}, "himself": {"_count": 5, "on": {"_count": 1}, "through": {"_count": 1}, "slowly": {"_count": 1}, "and": {"_count": 1}, "so": {"_count": 1}}, "Ron": {"_count": 2, "into": {"_count": 1}, "carefully": {"_count": 1}}, "his": {"_count": 33, "quill": {"_count": 1}, "voice": {"_count": 11}, "wand": {"_count": 8}, "bottle": {"_count": 1}, "hood": {"_count": 1}, "hands": {"_count": 2}, "goblet": {"_count": 1}, "own": {"_count": 1}, "leaflet": {"_count": 1}, "huge": {"_count": 1}, "eyes": {"_count": 1}, "head": {"_count": 1}, "eyelids": {"_count": 1}, "shaking": {"_count": 1}, "hand": {"_count": 1}}, "it": {"_count": 4, "slowly": {"_count": 2}, "": {"_count": 1}, "into": {"_count": 1}}, "the": {"_count": 8, "megaphone": {"_count": 1}, "egg": {"_count": 1}, "creature": {"_count": 1}, "crystal": {"_count": 1}, "empty": {"_count": 1}, "goblet": {"_count": 1}, "golden": {"_count": 1}, "Invisibility": {"_count": 1}}, "Ginny": {"_count": 1, "back": {"_count": 1}}, "them": {"_count": 2, "to": {"_count": 1}, "again": {"_count": 1}}, "her": {"_count": 10, "huge": {"_count": 1}, "voice": {"_count": 4}, "hand": {"_count": 1}, "eyes": {"_count": 1}, "hood": {"_count": 1}, "to": {"_count": 1}, "goblet": {"_count": 1}}, "feeling": {"_count": 1, "he": {"_count": 1}}, "herself": {"_count": 1, "into": {"_count": 1}}, "their": {"_count": 4, "wands": {"_count": 4}}, "onto": {"_count": 2, "the": {"_count": 2}}, "to": {"_count": 2, "exactly": {"_count": 1}, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "floor": {"_count": 1, "and": {"_count": 1}}}, "aaRGH": {"_count": 5, "": {"_count": 4, "!": {"_count": 4}}, "get": {"_count": 1, "them": {"_count": 1}}}, "dribbling": {"_count": 3, "down": {"_count": 1, "its": {"_count": 1}}, "all": {"_count": 1, "down": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}}, "pierced": {"_count": 14, "his": {"_count": 2, "head": {"_count": 1}, "neck": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "like": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 1}, "Bellatrixs": {"_count": 1}}, "the": {"_count": 2, "night": {"_count": 1}, "glass": {"_count": 1}}, "their": {"_count": 1, "side": {"_count": 1}}, "Harry": {"_count": 2, "like": {"_count": 1}, "as": {"_count": 1}}, "Snape": {"_count": 1, "as": {"_count": 1}}}, "blinded": {"_count": 5, "he": {"_count": 1, "staggered": {"_count": 1}}, "serpent": {"_count": 1, "swayed": {"_count": 1}}, "by": {"_count": 1, "light": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}}, "staggered": {"_count": 52, "backward": {"_count": 5, "": {"_count": 1}, "and": {"_count": 3}, "as": {"_count": 1}}, "away": {"_count": 2, "rubbing": {"_count": 1}, "from": {"_count": 1}}, "sideways": {"_count": 4, "as": {"_count": 1}, "into": {"_count": 2}, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "forward": {"_count": 2, "and": {"_count": 1}, "tripping": {"_count": 1}}, "upright": {"_count": 3, "again": {"_count": 2}, "the": {"_count": 1}}, "into": {"_count": 2, "him": {"_count": 1}, "Diagon": {"_count": 1}}, "up": {"_count": 2, "to": {"_count": 2}}, "out": {"_count": 1, "from": {"_count": 1}}, "back": {"_count": 3, "a": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}}, "onward": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 9, "their": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 5}, "Snape": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "a": {"_count": 3, "little": {"_count": 3}}, "in": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 3, "fell": {"_count": 1}, "then": {"_count": 1}, "stumbled": {"_count": 1}}, "against": {"_count": 1, "him": {"_count": 1}}, "looking": {"_count": 1, "furious": {"_count": 1}}, "blindly": {"_count": 1, "toward": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}}, "galloping": {"_count": 16, "and": {"_count": 1, "something": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "view": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "away": {"_count": 2, "across": {"_count": 1}, "through": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "silently": {"_count": 1, "away": {"_count": 1}}, "around": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 1, "past": {"_count": 1}}, "gargoyles": {"_count": 1, "": {"_count": 1}}, "centaurs": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "desks": {"_count": 1, "thundered": {"_count": 1}}}, "charging": {"_count": 8, "at": {"_count": 1, "the": {"_count": 1}}, "bull": {"_count": 1, "sending": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "off": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "centaurs": {"_count": 1, "were": {"_count": 1}}}, "whiteblond": {"_count": 6, "hair": {"_count": 4, "and": {"_count": 2}, "Draco": {"_count": 1}, "": {"_count": 1}}, "head": {"_count": 2, "": {"_count": 2}}}, "palomino": {"_count": 4, "body": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "tail": {"_count": 1, "raised": {"_count": 1}}, "centaur": {"_count": 1, "Firenze": {"_count": 1}}}, "astonishingly": {"_count": 4, "blue": {"_count": 3, "eyes": {"_count": 3}}, "stupid": {"_count": 1, "about": {"_count": 1}}}, "sapphires": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "fell": {"_count": 1, "into": {"_count": 1}}}, "lingering": {"_count": 10, "on": {"_count": 2, "the": {"_count": 2}}, "protection": {"_count": 2, "his": {"_count": 1}, "he": {"_count": 1}}, "smell": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 2, "watch": {"_count": 1}, "chat": {"_count": 1}}, "chill": {"_count": 1, "of": {"_count": 1}}, "affection": {"_count": 1, "for": {"_count": 1}}}, "livid": {"_count": 20, "on": {"_count": 1, "Harrys": {"_count": 1}}, "face": {"_count": 2, "his": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 3, "terror": {"_count": 1}, "fear": {"_count": 1}, "me": {"_count": 1}}, "and": {"_count": 1, "pulled": {"_count": 1}}, "bruise": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "Bagman": {"_count": 1, "however": {"_count": 1}}, "scarlet": {"_count": 1, "eyes": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "Snape": {"_count": 1, "calculating": {"_count": 1}}}, "Firenze": {"_count": 67, "he": {"_count": 2, "added": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 9, "!": {"_count": 1}, ".": {"_count": 8}}, "we": {"_count": 1, "are": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "suddenly": {"_count": 2, "reared": {"_count": 1}, "stopped": {"_count": 1}}, "bellowed": {"_count": 1, "at": {"_count": 1}}, "whisked": {"_count": 1, "around": {"_count": 1}}, "slowed": {"_count": 1, "to": {"_count": 1}}, "didnt": {"_count": 1, "want": {"_count": 1}}, "agreed": {"_count": 1, "unless": {"_count": 1}}, "murmured": {"_count": 1, "as": {"_count": 1}}, "saved": {"_count": 1, "me": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "might": {"_count": 1, "back": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "that": {"_count": 1}}, "that": {"_count": 1, "morning": {"_count": 1}}, "to": {"_count": 2, "climb": {"_count": 1}, "return": {"_count": 1}}, "whom": {"_count": 1, "they": {"_count": 1}}, "gestured": {"_count": 1, "around": {"_count": 1}}, "when": {"_count": 1, "everyone": {"_count": 1}}, "but": {"_count": 1, "of": {"_count": 1}}, "turned": {"_count": 1, "his": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "allowing": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "calmly": {"_count": 1, "is": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}, "simply": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "Harry": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "pointed": {"_count": 1, "to": {"_count": 1}}, "told": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}, "called": {"_count": 1, "Harry": {"_count": 1}}, "nodding": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "leaving": {"_count": 1, "make": {"_count": 1}}, "ter": {"_count": 1, "death": {"_count": 1}}, "mighta": {"_count": 1, "remembered": {"_count": 1}}, "has": {"_count": 2, "betrayed": {"_count": 1}, "entered": {"_count": 1}}, "escape": {"_count": 1, "us": {"_count": 1}}, "human": {"_count": 1, "girl": {"_count": 1}}, "staying": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "handsome": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "Harry": {"_count": 1, "drew": {"_count": 1}}, "is": {"_count": 1, "teaching": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 1, "amongst": {"_count": 1}}, "lay": {"_count": 1, "recovering": {"_count": 1}}}, "flanks": {"_count": 3, "heaving": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "heaving": {"_count": 21, "and": {"_count": 1, "sweaty": {"_count": 1}}, "with": {"_count": 3, "emotion": {"_count": 1}, "laughter": {"_count": 1}, "rage": {"_count": 1}}, "his": {"_count": 2, "heavy": {"_count": 1}, "trunk": {"_count": 1}}, "all": {"_count": 1, "their": {"_count": 1}}, "her": {"_count": 1, "bag": {"_count": 1}}, "the": {"_count": 2, "large": {"_count": 1}, "niffler": {"_count": 1}}, "six": {"_count": 1, "heavy": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "a": {"_count": 1, "deep": {"_count": 1}}, "breaths": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "onto": {"_count": 1, "all": {"_count": 1}}, "chest": {"_count": 1, "": {"_count": 1}}, "sea": {"_count": 1, "of": {"_count": 1}}, "sobs": {"_count": 1, "great": {"_count": 1}}}, "mule": {"_count": 2, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "Remember": {"_count": 38, "Firenze": {"_count": 1, "we": {"_count": 1}}, "boy": {"_count": 1, "one": {"_count": 1}}, "all": {"_count": 2, "that": {"_count": 1}, "those": {"_count": 1}}, "what": {"_count": 6, "was": {"_count": 1}, "he": {"_count": 3}, "Malfoy": {"_count": 1}, "Muriel": {"_count": 1}}, "Millicent": {"_count": 1, "Bulstrode": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 5, "form": {"_count": 1}, "last": {"_count": 1}, "first": {"_count": 1}, "three": {"_count": 1}, "cups": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 3}, ".": {"_count": 1}}, "she": {"_count": 1, "interviewed": {"_count": 1}}, "Cedric": {"_count": 2, "": {"_count": 1}, "Diggory": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "old": {"_count": 1, "Fleur": {"_count": 1}}, "that": {"_count": 3, "goblin": {"_count": 1}, "Grawpy": {"_count": 1}, "shriveledup": {"_count": 1}}, "when": {"_count": 3, "she": {"_count": 1}, "that": {"_count": 1}, "I": {"_count": 1}}, "close": {"_count": 1, "your": {"_count": 1}}, "I": {"_count": 1, "told": {"_count": 1}}, "Aragog": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 1, "birds": {"_count": 1}}, "last": {"_count": 1, "week": {"_count": 1}}}, "pawed": {"_count": 7, "the": {"_count": 5, "ground": {"_count": 5}}, "at": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}}, "Centaurs": {"_count": 3, "are": {"_count": 2, "concerned": {"_count": 1}, "not": {"_count": 1}}, "have": {"_count": 1, "unraveled": {"_count": 1}}}, "foretold": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "a": {"_count": 1, "gruesome": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}}, "donkeys": {"_count": 1, "after": {"_count": 1, "stray": {"_count": 1}}}, "stray": {"_count": 13, "humans": {"_count": 1, "in": {"_count": 1}}, "chicken": {"_count": 1, "as": {"_count": 1}}, "cat": {"_count": 1, "or": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "dog": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Bludger": {"_count": 1, "Harry": {"_count": 1}}, "threads": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "outof": {"_count": 1, "bounds": {"_count": 1}}, "doxies": {"_count": 1, "from": {"_count": 1}}, "anywhere": {"_count": 1, "near": {"_count": 1}}, "person": {"_count": 1, "meandered": {"_count": 1}}}, "humans": {"_count": 31, "in": {"_count": 3, "our": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "alongside": {"_count": 1, "me": {"_count": 1}}, "do": {"_count": 1, "have": {"_count": 1}}, "stuck": {"_count": 1, "there": {"_count": 1}}, "can": {"_count": 1, "so": {"_count": 1}}, "to": {"_count": 1, "bite": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 2}, ".": {"_count": 4}, "!": {"_count": 1}}, "were": {"_count": 2, "plentiful": {"_count": 1}, "hardly": {"_count": 1}}, "of": {"_count": 1, "any": {"_count": 1}}, "anyway": {"_count": 1, "so": {"_count": 1}}, "said": {"_count": 3, "Firenze": {"_count": 1}, "a": {"_count": 1}, "Magorian": {"_count": 1}}, "call": {"_count": 1, "fortunetelling": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "Dont": {"_count": 1, "you": {"_count": 1}}, "hundreds": {"_count": 1, "and": {"_count": 1}}, "are": {"_count": 1, "frightened": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}}, "reared": {"_count": 13, "on": {"_count": 1, "to": {"_count": 1}}, "snapping": {"_count": 1, "its": {"_count": 1}}, "spreading": {"_count": 1, "her": {"_count": 1}}, "onto": {"_count": 2, "its": {"_count": 1}, "his": {"_count": 1}}, "high": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "shadowy": {"_count": 1}}, "their": {"_count": 1, "light": {"_count": 1}}, "in": {"_count": 1, "him": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}, "Harry": {"_count": 1, "dug": {"_count": 1}}, "more": {"_count": 1, "terrifying": {"_count": 1}}}, "hind": {"_count": 11, "legs": {"_count": 10, "in": {"_count": 2}, "and": {"_count": 4}, "inside": {"_count": 1}, "": {"_count": 2}, "attempting": {"_count": 1}}, "leg": {"_count": 1, "and": {"_count": 1}}}, "alongside": {"_count": 34, "me": {"_count": 1, "if": {"_count": 1}}, "them": {"_count": 5, "like": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "for": {"_count": 1}, "wizards": {"_count": 1}}, "him": {"_count": 6, "he": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "under": {"_count": 1}, "feeling": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "her": {"_count": 3, "poke": {"_count": 1}, "": {"_count": 1}, "husband": {"_count": 1}}, "a": {"_count": 1, "kind": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "watching": {"_count": 1}}, "Harry": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 7, "Gryffindor": {"_count": 2}, "window": {"_count": 1}, "Ministry": {"_count": 2}, "other": {"_count": 1}, "very": {"_count": 1}}, "utter": {"_count": 1, "rubbish": {"_count": 1}}, "Kreacher": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "tolerant": {"_count": 1, "and": {"_count": 1}}, "Snape": {"_count": 2, "up": {"_count": 1}, "on": {"_count": 1}}}, "whisked": {"_count": 3, "around": {"_count": 1, "with": {"_count": 1}}, "away": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}}, "Whys": {"_count": 11, "Bane": {"_count": 1, "so": {"_count": 1}}, "that": {"_count": 2, "first": {"_count": 1}, "": {"_count": 1}}, "Potter": {"_count": 1, "lurking": {"_count": 1}}, "he": {"_count": 4, "got": {"_count": 1}, "sent": {"_count": 1}, "all": {"_count": 1}, "being": {"_count": 1}}, "it": {"_count": 2, "such": {"_count": 1}, "cheap": {"_count": 1}}, "Filch": {"_count": 1, "putting": {"_count": 1}}}, "lowhanging": {"_count": 4, "branches": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "branch": {"_count": 1, "and": {"_count": 1}}, "lamp": {"_count": 1, "": {"_count": 1}}}, "horn": {"_count": 25, "and": {"_count": 3, "tail": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}}, "sounded": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "!": {"_count": 1}, "?": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 2}}, "screeching": {"_count": 1, "knocking": {"_count": 1}}, "after": {"_count": 1, "I": {"_count": 1}}, "tongue": {"_count": 1, "": {"_count": 1}}, "rimmed": {"_count": 2, "spectacles": {"_count": 1}, "glasses": {"_count": 1}}, "Whos": {"_count": 1, "Professor": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "not": {"_count": 1, "unlike": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "Mr": {"_count": 1, "Lovegood": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "Daddy": {"_count": 1, "wrote": {"_count": 1}}, "exploded": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Luna": {"_count": 1}}}, "slay": {"_count": 2, "a": {"_count": 1, "unicorn": {"_count": 1}}, "owing": {"_count": 1, "to": {"_count": 1}}}, "gain": {"_count": 15, "would": {"_count": 1, "commit": {"_count": 1}}, "your": {"_count": 1, "trust": {"_count": 1}}, "an": {"_count": 2, "idea": {"_count": 1}, "element": {"_count": 1}}, "the": {"_count": 1, "warmth": {"_count": 1}}, "by": {"_count": 1, "returning": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "no": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "full": {"_count": 1}}, "fame": {"_count": 1, "as": {"_count": 1}}, "said": {"_count": 1, "Griphook": {"_count": 1}}, "her": {"_count": 1, "confidence": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}}, "commit": {"_count": 5, "such": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "murder": {"_count": 2}}, "murder": {"_count": 1, "right": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}}, "inch": {"_count": 61, "from": {"_count": 7, "death": {"_count": 1}, "Mrs": {"_count": 1}, "the": {"_count": 3}, "Dudleys": {"_count": 1}, "his": {"_count": 1}}, "of": {"_count": 22, "his": {"_count": 5}, "the": {"_count": 3}, "skin": {"_count": 2}, "it": {"_count": 3}, "wall": {"_count": 1}, "him": {"_count": 5}, "Malfoy": {"_count": 1}, "each": {"_count": 1}, "dust": {"_count": 1}}, "the": {"_count": 1, "trunk": {"_count": 1}}, "if": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 9, "so": {"_count": 9}}, "slowly": {"_count": 1, "toward": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "in": {"_count": 1}}, "nearer": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "difference": {"_count": 1, "in": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "Wormtail": {"_count": 1, "drew": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "long": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 2, "each": {"_count": 1}, "find": {"_count": 1}}, "toward": {"_count": 1, "his": {"_count": 1}}, "essay": {"_count": 1, "two": {"_count": 1}}, "across": {"_count": 1, "a": {"_count": 1}}, "lower": {"_count": 1, "down": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "He": {"_count": 1, "changed": {"_count": 1}}}, "price": {"_count": 19, "": {"_count": 4, ".": {"_count": 4}}, "but": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 3, "an": {"_count": 1}, "my": {"_count": 2}}, "lists": {"_count": 1, "for": {"_count": 1}}, "for": {"_count": 3, "his": {"_count": 2}, "it": {"_count": 1}}, "on": {"_count": 3, "my": {"_count": 1}, "his": {"_count": 2}}, "to": {"_count": 1, "pay": {"_count": 1}}, "he": {"_count": 1, "didnt": {"_count": 1}}, "upon": {"_count": 1, "your": {"_count": 1}}, "died": {"_count": 1, "in": {"_count": 1}}}, "slain": {"_count": 2, "something": {"_count": 1, "pure": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}}, "defenseless": {"_count": 4, "to": {"_count": 1, "save": {"_count": 1}}, "Ar": {"_count": 1, "I": {"_count": 1}}, "than": {"_count": 1, "you": {"_count": 1}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}}, "halflife": {"_count": 1, "a": {"_count": 1, "cursed": {"_count": 1}}}, "cursed": {"_count": 28, "life": {"_count": 1, "from": {"_count": 1}}, "forever": {"_count": 1, "deaths": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "his": {"_count": 1, "son": {"_count": 1}}, "hat": {"_count": 1, "": {"_count": 1}}, "furiously": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "stamped": {"_count": 1}}, "Sneakoscopes": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 2}, ".": {"_count": 1}, "?": {"_count": 1}}, "not": {"_count": 1, "Ron": {"_count": 1}}, "had": {"_count": 1, "spread": {"_count": 1}}, "necklace": {"_count": 1, "that": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "wounds": {"_count": 1, "": {"_count": 1}}, "barrier": {"_count": 1, "as": {"_count": 1}}, "off": {"_count": 1, "There": {"_count": 1}}, "him": {"_count": 1, "hes": {"_count": 1}}, "fire": {"_count": 3, "was": {"_count": 1}, "cast": {"_count": 1}, "its": {"_count": 1}}, "hand": {"_count": 1, "but": {"_count": 1}}}, "Firenzes": {"_count": 6, "head": {"_count": 1, "which": {"_count": 1}}, "chest": {"_count": 1, "": {"_count": 1}}, "calm": {"_count": 1, "voice": {"_count": 1}}, "warning": {"_count": 2, "to": {"_count": 1}, "had": {"_count": 1}}, "message": {"_count": 1, "Hagrid": {"_count": 1}}}, "dappled": {"_count": 3, "silver": {"_count": 1, "in": {"_count": 1}}, "green": {"_count": 2, "light": {"_count": 1}, "half": {"_count": 1}}}, "deaths": {"_count": 27, "better": {"_count": 1, "isnt": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "the": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}, "quickly": {"_count": 1, "became": {"_count": 1}}, "more": {"_count": 1, "disappearances": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 2, "mere": {"_count": 1}, "not": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "yet": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "are": {"_count": 1, "always": {"_count": 1}}, "for": {"_count": 1, "no": {"_count": 1}}, "now": {"_count": 2, "appearing": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}}, "clung": {"_count": 11, "to": {"_count": 6, "life": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 2}, "Bills": {"_count": 1}}, "on": {"_count": 3, "spitting": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 1}}, "even": {"_count": 1, "tighter": {"_count": 1}}, "tight": {"_count": 1, "to": {"_count": 1}}}, "awaiting": {"_count": 13, "their": {"_count": 2, "chance": {"_count": 1}, "turn": {"_count": 1}}, "the": {"_count": 2, "essential": {"_count": 1}, "arrival": {"_count": 1}}, "him": {"_count": 2, "upstairs": {"_count": 1}, "on": {"_count": 1}}, "her": {"_count": 1, "Daily": {"_count": 1}}, "your": {"_count": 2, "decision": {"_count": 1}, "return": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}, "his": {"_count": 2, "return": {"_count": 1}, "chance": {"_count": 1}}}, "iron": {"_count": 23, "fist": {"_count": 1, "had": {"_count": 1}}, "chandelier": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "cage": {"_count": 1, "behind": {"_count": 1}}, "gates": {"_count": 2, "flanked": {"_count": 1}, "into": {"_count": 1}}, "pegs": {"_count": 1, "which": {"_count": 1}}, "pots": {"_count": 1, "and": {"_count": 1}}, "flagon": {"_count": 1, "of": {"_count": 1}}, "bolts": {"_count": 1, "and": {"_count": 1}}, "lock": {"_count": 1, "and": {"_count": 1}}, "door": {"_count": 1, "handle": {"_count": 1}}, "with": {"_count": 1, "hard": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "peg": {"_count": 3, "in": {"_count": 1}, "with": {"_count": 1}, "swinging": {"_count": 1}}, "bands": {"_count": 1, "tightening": {"_count": 1}}, "pot": {"_count": 1, "with": {"_count": 1}}, "bedstead": {"_count": 1, "": {"_count": 1}}, "ring": {"_count": 1, "of": {"_count": 1}}, "nails": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "contorting": {"_count": 1}}}, "VoZ": {"_count": 1, "Harry": {"_count": 1, "": {"_count": 1}}}, "examine": {"_count": 32, "the": {"_count": 9, "unicorn": {"_count": 1}, "television": {"_count": 1}, "nearest": {"_count": 1}, "effects": {"_count": 1}, "memories": {"_count": 1}, "locked": {"_count": 1}, "words": {"_count": 1}, "old": {"_count": 1}, "eye": {"_count": 1}}, "this": {"_count": 1, "interesting": {"_count": 1}}, "a": {"_count": 3, "shelf": {"_count": 1}, "long": {"_count": 1}, "dark": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "Riddles": {"_count": 2, "special": {"_count": 1}, "diary": {"_count": 1}}, "Aidan": {"_count": 1, "Lynch": {"_count": 1}}, "Harry": {"_count": 1, "Potters": {"_count": 1}}, "his": {"_count": 2, "hand": {"_count": 1}, "appearance": {"_count": 1}}, "it": {"_count": 4, "for": {"_count": 1}, "": {"_count": 2}, "because": {"_count": 1}}, "Hedwigs": {"_count": 1, "wing": {"_count": 1}}, "more": {"_count": 1, "closely": {"_count": 1}}, "whatever": {"_count": 1, "hes": {"_count": 1}}, "everything": {"_count": 1, "hed": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "properly": {"_count": 1}}, "and": {"_count": 1, "had": {"_count": 1}}, "Alecto": {"_count": 1, "": {"_count": 1}}}, "wrongly": {"_count": 5, "before": {"_count": 1, "now": {"_count": 1}}, "I": {"_count": 1, "attack": {"_count": 1}}, "and": {"_count": 1, "glancing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "accused": {"_count": 1, "of": {"_count": 1}}}, "cantered": {"_count": 6, "back": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "length": {"_count": 1}}, "around": {"_count": 2, "them": {"_count": 1}, "and": {"_count": 1}}, "forward": {"_count": 1, "and": {"_count": 1}}}, "shivering": {"_count": 37, "behind": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "slightly": {"_count": 4, "Harry": {"_count": 1}, "now": {"_count": 1}, "her": {"_count": 1}, "in": {"_count": 1}}, "unpleasantly": {"_count": 1, "at": {"_count": 1}}, "hardly": {"_count": 1, "daring": {"_count": 1}}, "uncontrollably": {"_count": 2, "now": {"_count": 1}, "into": {"_count": 1}}, "light": {"_count": 2, "filled": {"_count": 1}, "dancing": {"_count": 1}}, "flames": {"_count": 1, "in": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 3, "they": {"_count": 1}, "though": {"_count": 1}, "she": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "anticipation": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "hard": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "class": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "strawcolored": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "feverishly": {"_count": 1, "": {"_count": 1}}, "blue": {"_count": 1, "flames": {"_count": 1}}, "Dumbledores": {"_count": 1, "weight": {"_count": 1}}, "and": {"_count": 1, "dripping": {"_count": 1}}, "green": {"_count": 1, "mucus": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "now": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "jumped": {"_count": 1}}, "but": {"_count": 1, "Griphook": {"_count": 1}}, "vaguely": {"_count": 1, "surprised": {"_count": 1}}, "second": {"_count": 1, "of": {"_count": 1}}}, "fouls": {"_count": 1, "when": {"_count": 1, "Harry": {"_count": 1}}}, "feverishly": {"_count": 18, "then": {"_count": 1, "Voldemort": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "around": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 3, "page": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}, "prodding": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "definitely": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "collecting": {"_count": 1, "more": {"_count": 1}}}, "fortunetelling": {"_count": 5, "to": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "methods": {"_count": 1, "palmistry": {"_count": 1}}, "was": {"_count": 1, "really": {"_count": 1}}}, "imprecise": {"_count": 2, "branch": {"_count": 1, "of": {"_count": 1}}, "branches": {"_count": 1, "of": {"_count": 1}}}, "branch": {"_count": 21, "of": {"_count": 7, "magic": {"_count": 4}, "": {"_count": 1}, "candles": {"_count": 1}, "blueglowing": {"_count": 1}}, "as": {"_count": 2, "thick": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "whipped": {"_count": 2, "lethally": {"_count": 1}, "down": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Lupin": {"_count": 1, "had": {"_count": 1}}, "o": {"_count": 1, "Gubraithian": {"_count": 1}}, "to": {"_count": 1, "burn": {"_count": 1}}, "and": {"_count": 1, "holding": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "that": {"_count": 1, "hung": {"_count": 1}}, "over": {"_count": 1, "Petunias": {"_count": 1}}, "caught": {"_count": 1, "Petunia": {"_count": 1}}}, "exhausted": {"_count": 36, "their": {"_count": 1, "throats": {"_count": 1}}, "he": {"_count": 3, "heard": {"_count": 1}, "could": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "as": {"_count": 1, "if": {"_count": 1}}, "Harry": {"_count": 1, "climbed": {"_count": 1}}, "His": {"_count": 1, "chin": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 4, "thinking": {"_count": 1}, "I": {"_count": 1}, "had": {"_count": 1}, "drained": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 3, "very": {"_count": 1}, "exhilarated": {"_count": 1}, "pleased": {"_count": 1}}, "brain": {"_count": 1, "ground": {"_count": 1}}, "mind": {"_count": 1, "quite": {"_count": 1}}, "in": {"_count": 1, "bed": {"_count": 1}}, "go": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "subject": {"_count": 1}}, "owl": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "his": {"_count": 2, "supply": {"_count": 1}, "ability": {"_count": 1}}, "onto": {"_count": 1, "slippery": {"_count": 1}}}, "throats": {"_count": 7, "sore": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Harry": {"_count": 1, "because": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "At": {"_count": 1, "once": {"_count": 1}}}, "sore": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "head": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "lost": {"_count": 1}}, "to": {"_count": 1, "play": {"_count": 1}}, "and": {"_count": 1, "starting": {"_count": 1}}}, "surprises": {"_count": 6, "werent": {"_count": 1, "over": {"_count": 1}}, "even": {"_count": 1, "me": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "become": {"_count": 1}}, "like": {"_count": 1, "jarring": {"_count": 1}}, "she": {"_count": 1, "uncovered": {"_count": 1}}}, "THROUGH": {"_count": 2, "THE": {"_count": 1, "TRAPDOOR": {"_count": 1}}, "WHEN": {"_count": 1, "WE": {"_count": 1}}}, "TRAPDOOR": {"_count": 1, "In": {"_count": 1, "years": {"_count": 1}}}, "sweltering": {"_count": 2, "hot": {"_count": 1, "especially": {"_count": 1}}, "heat": {"_count": 1, "and": {"_count": 1}}}, "papers": {"_count": 33, "": {"_count": 7, ".": {"_count": 7}}, "afterward": {"_count": 1, "but": {"_count": 1}}, "he": {"_count": 2, "returned": {"_count": 1}, "was": {"_count": 1}}, "and": {"_count": 2, "rifled": {"_count": 1}, "packing": {"_count": 1}}, "tore": {"_count": 1, "pictures": {"_count": 1}}, "more": {"_count": 1, "Neville": {"_count": 1}}, "on": {"_count": 3, "her": {"_count": 2}, "every": {"_count": 1}}, "neatly": {"_count": 1, "into": {"_count": 1}}, "but": {"_count": 1, "did": {"_count": 1}}, "for": {"_count": 2, "my": {"_count": 1}, "the": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "laid": {"_count": 1, "out": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Harry": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "found": {"_count": 1, "their": {"_count": 1}}, "treating": {"_count": 1, "them": {"_count": 1}}, "all": {"_count": 1, "formed": {"_count": 1}}, "slid": {"_count": 1, "off": {"_count": 1}}, "which": {"_count": 1, "all": {"_count": 1}}, "from": {"_count": 1, "an": {"_count": 1}}}, "AntiCheating": {"_count": 1, "spell": {"_count": 1, "": {"_count": 1}}}, "practical": {"_count": 18, "exams": {"_count": 1, "as": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "joker": {"_count": 1, "but": {"_count": 1}}, "joke": {"_count": 1, "": {"_count": 1}}, "use": {"_count": 1, "": {"_count": 1}}, "bit": {"_count": 1, "in": {"_count": 1}}, "defense": {"_count": 1, "": {"_count": 1}}, "Astronomy": {"_count": 2, "examination": {"_count": 1}, "the": {"_count": 1}}, "examination": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "took": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "was": {"_count": 2, "not": {"_count": 1}, "no": {"_count": 1}}, "course": {"_count": 1, "said": {"_count": 1}}, "demonstrations": {"_count": 1, "at": {"_count": 1}}}, "pineapple": {"_count": 10, "tapdance": {"_count": 1, "across": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "occupying": {"_count": 1}, "velvet": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "by": {"_count": 2, "the": {"_count": 2}}, "I": {"_count": 1, "have": {"_count": 1}}, "well": {"_count": 1, "it": {"_count": 1}}}, "tapdance": {"_count": 1, "across": {"_count": 1, "a": {"_count": 1}}}, "snuffbox": {"_count": 4, "points": {"_count": 1, "were": {"_count": 1}}, "was": {"_count": 1, "but": {"_count": 1}}, "within": {"_count": 1, "seconds": {"_count": 1}}, "of": {"_count": 1, "Wartcap": {"_count": 1}}}, "Forgetfulness": {"_count": 1, "potion": {"_count": 1, "": {"_count": 1}}}, "stabbing": {"_count": 6, "pains": {"_count": 2, "in": {"_count": 2}}, "pieces": {"_count": 1, "of": {"_count": 1}}, "pain": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "pains": {"_count": 6, "in": {"_count": 3, "his": {"_count": 3}}, "Harry": {"_count": 1, "has": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}}, "bothering": {"_count": 20, "him": {"_count": 4, "ever": {"_count": 1}, "with": {"_count": 1}, "very": {"_count": 1}, "slightly": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 1}, "so": {"_count": 1}, "Mr": {"_count": 1}}, "anyone": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 7, "get": {"_count": 1}, "lie": {"_count": 1}, "close": {"_count": 1}, "look": {"_count": 1}, "kill": {"_count": 1}, "give": {"_count": 1}, "tell": {"_count": 1}}, "Harry": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "any": {"_count": 1}}}, "exam": {"_count": 52, "nerves": {"_count": 1, "because": {"_count": 1}}, "was": {"_count": 2, "History": {"_count": 1}, "Divination": {"_count": 1}}, "results": {"_count": 5, "came": {"_count": 3}, "were": {"_count": 1}, "anyway": {"_count": 1}}, "papers": {"_count": 1, "afterward": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 7}, "?": {"_count": 3}}, "snapped": {"_count": 1, "Mr": {"_count": 1}}, "Professor": {"_count": 2, "McGonagall": {"_count": 1}, "Trelawney": {"_count": 1}}, "schedule": {"_count": 2, "she": {"_count": 1}, "and": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}, "any": {"_count": 2, "of": {"_count": 2}}, "on": {"_count": 3, "Thursday": {"_count": 1}, "Wednesday": {"_count": 2}}, "I": {"_count": 1, "expect": {"_count": 1}}, "with": {"_count": 1, "three": {"_count": 1}}, "in": {"_count": 1, "ten": {"_count": 1}}, "class": {"_count": 1, "so": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "time": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "As": {"_count": 1, "he": {"_count": 1}}, "question": {"_count": 1, "paper": {"_count": 1}}, "go": {"_count": 1, "Snivelly": {"_count": 1}}, "Theory": {"_count": 1, "of": {"_count": 1}}, "paper": {"_count": 1, "": {"_count": 1}}, "afterward": {"_count": 1, "its": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "and": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "which": {"_count": 1}}, "difficult": {"_count": 1, "though": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "went": {"_count": 1, "very": {"_count": 1}}, "completely": {"_count": 1, "": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "review": {"_count": 1, "": {"_count": 1}}}, "dripping": {"_count": 17, "blood": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "everywhere": {"_count": 1}}, "mud": {"_count": 1, "all": {"_count": 1}}, "onto": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "tea": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 3, "muck": {"_count": 1}, "Stinksap": {"_count": 1}, "the": {"_count": 1}}, "balcony": {"_count": 1, "turning": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "sickeningly": {"_count": 1, "into": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "Rons": {"_count": 1}}}, "scars": {"_count": 23, "burning": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "always": {"_count": 1, "twinge": {"_count": 1}}, "sometimes": {"_count": 1, "hurt": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "stretched": {"_count": 1, "and": {"_count": 1}}, "hurting": {"_count": 1, "me": {"_count": 1}}, "were": {"_count": 3, "disappearing": {"_count": 1}, "thrown": {"_count": 1}, "as": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 4}}, "shone": {"_count": 1, "pearly": {"_count": 1}}, "burn": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 1, "hurting": {"_count": 1}}, "which": {"_count": 1, "Dolores": {"_count": 1}}, "show": {"_count": 1, "is": {"_count": 1}}, "that": {"_count": 1, "still": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "made": {"_count": 1, "by": {"_count": 1}}}, "foreheads": {"_count": 1, "but": {"_count": 1, "Ron": {"_count": 1}}}, "visiting": {"_count": 17, "them": {"_count": 2, "in": {"_count": 1}, "now": {"_count": 1}}, "the": {"_count": 5, "gamekeeper": {"_count": 1}, "village": {"_count": 2}, "Owlery": {"_count": 1}, "very": {"_count": 1}}, "Hogsmeade": {"_count": 2, "now": {"_count": 1}, "illegally": {"_count": 1}}, "Myrtles": {"_count": 1, "bathroom": {"_count": 1}}, "tonight": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "those": {"_count": 1, "places": {"_count": 1}}, "and": {"_count": 1, "observing": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}}, "fret": {"_count": 3, "about": {"_count": 1, "what": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "answering": {"_count": 21, "questions": {"_count": 3, "about": {"_count": 1}, "wrongly": {"_count": 1}, "correctly": {"_count": 1}}, "my": {"_count": 1, "letters": {"_count": 1}}, "by": {"_count": 1, "Madam": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "and": {"_count": 1, "when": {"_count": 1}}, "curtly": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Harrys": {"_count": 2, "letter": {"_count": 1}, "unasked": {"_count": 1}}, "flurry": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 2, "summonses": {"_count": 1}, "question": {"_count": 1}}, "Umbridge": {"_count": 1, "very": {"_count": 1}}, "detailed": {"_count": 1, "questions": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 1, "old": {"_count": 1}}, "cheer": {"_count": 1, "from": {"_count": 1}}}, "batty": {"_count": 5, "old": {"_count": 3, "wizards": {"_count": 1}, "neighbor": {"_count": 1}, "catobsessed": {"_count": 1}}, "catloving": {"_count": 1, "old": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}}, "invented": {"_count": 19, "selfstirring": {"_count": 1, "cauldrons": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "a": {"_count": 3, "spell": {"_count": 1}, "broomstick": {"_count": 1}, "few": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 3, "and": {"_count": 1}, "seven": {"_count": 1}, "I": {"_count": 1}}, "Extendable": {"_count": 1, "Ears": {"_count": 1}}, "the": {"_count": 1, "Wolfsbane": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "spells": {"_count": 1, "": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "wildly": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "himself": {"_count": 1}}}, "selfstirring": {"_count": 1, "cauldrons": {"_count": 1, "and": {"_count": 1}}}, "flocking": {"_count": 1, "out": {"_count": 1, "onto": {"_count": 1}}}, "neednt": {"_count": 7, "have": {"_count": 4, "learned": {"_count": 1}, "bothered": {"_count": 1}, "died": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "wake": {"_count": 1, "up": {"_count": 1}}}, "1637": {"_count": 1, "Werewolf": {"_count": 1, "Code": {"_count": 1}}}, "Werewolf": {"_count": 2, "Code": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Code": {"_count": 3, "of": {"_count": 3, "Conduct": {"_count": 1}, "Wand": {"_count": 1}, "Wizarding": {"_count": 1}}}, "Conduct": {"_count": 1, "or": {"_count": 1, "the": {"_count": 1}}}, "uprising": {"_count": 1, "of": {"_count": 1, "Elfric": {"_count": 1}}}, "Elfric": {"_count": 1, "the": {"_count": 1, "Eager": {"_count": 1}}}, "Eager": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "though": {"_count": 1, "I": {"_count": 1}}}, "tickling": {"_count": 3, "the": {"_count": 1, "tentacles": {"_count": 1}}, "sensation": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}}, "tentacles": {"_count": 12, "of": {"_count": 2, "a": {"_count": 1}, "thought": {"_count": 1}}, "lazily": {"_count": 1, "above": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "all": {"_count": 1, "over": {"_count": 1}}, "it": {"_count": 1, "should": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "began": {"_count": 1, "wrapping": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "wrapped": {"_count": 1}}, "rising": {"_count": 1, "out": {"_count": 1}}}, "squid": {"_count": 13, "which": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "propel": {"_count": 1, "itself": {"_count": 1}}, "waving": {"_count": 1, "its": {"_count": 1}}, "Dennis": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Lily": {"_count": 1}}, "did": {"_count": 1, "": {"_count": 1}}}, "basking": {"_count": 3, "in": {"_count": 3, "the": {"_count": 3}}}, "shallows": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "dangers": {"_count": 8, "coming": {"_count": 1, "": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 3, "associating": {"_count": 1}, "the": {"_count": 1}, "having": {"_count": 1}}, "involved": {"_count": 1, "of": {"_count": 1}}, "were": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "unsettled": {"_count": 4, "feeling": {"_count": 1, "didnt": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "betray": {"_count": 7, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "secret": {"_count": 1}, "trust": {"_count": 1}}, "us": {"_count": 1, "totally": {"_count": 1}}, "a": {"_count": 1, "flicker": {"_count": 1}}, "the": {"_count": 1, "resentment": {"_count": 1}}, "Sirius": {"_count": 1, "to": {"_count": 1}}}, "re": {"_count": 27, "you": {"_count": 19, "going": {"_count": 5}, "all": {"_count": 1}, "two": {"_count": 2}, "Harry": {"_count": 1}, "doing": {"_count": 4}, "": {"_count": 2}, "takin": {"_count": 1}, "writing": {"_count": 1}, "after": {"_count": 1}, "hoping": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "going": {"_count": 1, "ter": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "we": {"_count": 1, "going": {"_count": 1}}, "less": {"_count": 1, "like": {"_count": 1}}, "makin": {"_count": 1, "a": {"_count": 1}}, "formed": {"_count": 2, "by": {"_count": 1}, "around": {"_count": 1}}}, "grassy": {"_count": 4, "slope": {"_count": 2, "that": {"_count": 1}, "toward": {"_count": 1}}, "field": {"_count": 1, "with": {"_count": 1}}, "ceiling": {"_count": 1, "": {"_count": 1}}}, "slope": {"_count": 15, "that": {"_count": 2, "what": {"_count": 1}, "descended": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "headlights": {"_count": 1, "glaring": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 2, "visit": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "upward": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "wander": {"_count": 10, "around": {"_count": 3, "with": {"_count": 2}, "on": {"_count": 1}}, "off": {"_count": 3, "on": {"_count": 1}, "in": {"_count": 1}, "while": {"_count": 1}}, "about": {"_count": 1, "wherever": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "freely": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "class": {"_count": 1}}}, "law": {"_count": 30, "": {"_count": 9, "?": {"_count": 2}, "!": {"_count": 3}, ".": {"_count": 4}}, "to": {"_count": 3, "do": {"_count": 2}, "get": {"_count": 1}}, "youll": {"_count": 1, "find": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "unto": {"_count": 1, "himself": {"_count": 1}}, "you": {"_count": 2, "know": {"_count": 1}, "cant": {"_count": 1}}, "is": {"_count": 4, "imposed": {"_count": 1}, "it": {"_count": 1}, "upheld": {"_count": 1}, "his": {"_count": 1}}, "about": {"_count": 1, "nonwand": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Ogden": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "yet": {"_count": 1, "in": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "and": {"_count": 1, "order": {"_count": 1}}, "which": {"_count": 1, "occurred": {"_count": 1}}, "was": {"_count": 1, "created": {"_count": 1}}}, "Lucky": {"_count": 15, "they": {"_count": 1, "found": {"_count": 1}}, "this": {"_count": 1, "plant": {"_count": 1}}, "shrieked": {"_count": 1, "Hermione": {"_count": 1}}, "you": {"_count": 2, "pay": {"_count": 1}, "said": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "the": {"_count": 2, "ground": {"_count": 1}, "nice": {"_count": 1}}, "I": {"_count": 3, "brought": {"_count": 1}, "was": {"_count": 1}, "call": {"_count": 1}}, "ha": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}}, "shelling": {"_count": 1, "peas": {"_count": 1, "into": {"_count": 1}}}, "Finished": {"_count": 3, "yer": {"_count": 1, "exams": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Hogs": {"_count": 36, "Head": {"_count": 34, "thats": {"_count": 1}, "that": {"_count": 3}, "bar": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 11}, "and": {"_count": 3}, "into": {"_count": 1}, "I": {"_count": 1}, "twenty": {"_count": 1}, "down": {"_count": 1}, "in": {"_count": 1}, "there": {"_count": 1}, "at": {"_count": 1}, "Idiot": {"_count": 1}, "Inn": {"_count": 3}, "tonight": {"_count": 1}, "which": {"_count": 1}, "opened": {"_count": 1}}, "Heads": {"_count": 2, "sign": {"_count": 1}, "barman": {"_count": 1}}}, "pubs": {"_count": 3, "down": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "sneak": {"_count": 1}}, "closed": {"_count": 1, "down": {"_count": 1}}}, "Mighta": {"_count": 2, "bin": {"_count": 1, "a": {"_count": 1}}, "come": {"_count": 1, "up": {"_count": 1}}}, "dealer": {"_count": 1, "mightn": {"_count": 1, "he": {"_count": 1}}}, "mightn": {"_count": 1, "he": {"_count": 1, "": {"_count": 1}}}, "hood": {"_count": 29, "up": {"_count": 1, "": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 11}, "?": {"_count": 1}}, "Hedwig": {"_count": 1, "was": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "answer": {"_count": 1}}, "shook": {"_count": 1, "out": {"_count": 1}}, "its": {"_count": 1, "rotting": {"_count": 1}}, "he": {"_count": 1, "struggled": {"_count": 1}}, "fell": {"_count": 2, "back": {"_count": 1}, "off": {"_count": 1}}, "and": {"_count": 1, "last": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "more": {"_count": 1, "slowly": {"_count": 1}}, "slipped": {"_count": 2, "and": {"_count": 2}}, "during": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "buyin": {"_count": 1, "me": {"_count": 1, "drinks": {"_count": 1}}}, "dyeh": {"_count": 7, "meet": {"_count": 1, "even": {"_count": 1}}, "like": {"_count": 1, "it": {"_count": 1}}, "think": {"_count": 1, "yer": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "explain": {"_count": 1, "ter": {"_count": 1}}, "wan": {"_count": 1, "me": {"_count": 1}}, "remember": {"_count": 1, "it": {"_count": 1}}}, "Fluffys": {"_count": 1, "a": {"_count": 1, "piece": {"_count": 1}}}, "horrified": {"_count": 43, "": {"_count": 16, ".": {"_count": 16}}, "if": {"_count": 1, "hed": {"_count": 1}}, "face": {"_count": 1, "7": {"_count": 1}}, "trance": {"_count": 2, "had": {"_count": 1}, "Harry": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "what": {"_count": 1}}, "as": {"_count": 2, "a": {"_count": 1}, "she": {"_count": 1}}, "than": {"_count": 1, "she": {"_count": 1}}, "wideeyed": {"_count": 1, "look": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "gasp": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}, "silence": {"_count": 1, "in": {"_count": 1}}, "step": {"_count": 1, "backward": {"_count": 1}}, "delight": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "unhappy": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "gaze": {"_count": 1, "away": {"_count": 1}}, "by": {"_count": 1, "what": {"_count": 1}}, "shock": {"_count": 1, "trying": {"_count": 1}}, "before": {"_count": 1, "this": {"_count": 1}}, "Doge": {"_count": 1, "": {"_count": 1}}, "yet": {"_count": 1, "transfixed": {"_count": 1}}, "transfixed": {"_count": 1, "by": {"_count": 1}}}, "shouldnta": {"_count": 3, "told": {"_count": 1, "yeh": {"_count": 1}}, "heard": {"_count": 1, "it": {"_count": 1}}, "tried": {"_count": 1, "ter": {"_count": 1}}}, "Forget": {"_count": 10, "I": {"_count": 1, "said": {"_count": 1}}, "expelled": {"_count": 1, "I": {"_count": 1}}, "it": {"_count": 5, "Harry": {"_count": 2}, "": {"_count": 1}, "all": {"_count": 1}, "said": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "Hogwarts": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "brother": {"_count": 1}}}, "wherere": {"_count": 1, "yeh": {"_count": 1, "goin": {"_count": 1}}}, "fishy": {"_count": 8, "thing": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "goin": {"_count": 1, "on": {"_count": 1}}, "about": {"_count": 1, "carrying": {"_count": 1}}, "enough": {"_count": 1, "without": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "family": {"_count": 1, "which": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}}, "urgent": {"_count": 23, "owl": {"_count": 1, "from": {"_count": 1}}, "whisper": {"_count": 3, "there": {"_count": 1}, "": {"_count": 2}}, "voices": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "appointments": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 6, "!": {"_count": 2}, "?": {"_count": 1}, ".": {"_count": 3}}, "problem": {"_count": 1, "facing": {"_count": 1}}, "message": {"_count": 1, "came": {"_count": 1}}, "whispered": {"_count": 1, "conversations": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "apparently": {"_count": 1, "said": {"_count": 1}}, "whispers": {"_count": 1, "in": {"_count": 1}}, "matters": {"_count": 1, "to": {"_count": 1}}, "request": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "demands": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "caution": {"_count": 15, "to": {"_count": 4, "the": {"_count": 4}}, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "with": {"_count": 1, "our": {"_count": 1}}, "and": {"_count": 2, "consolation": {"_count": 1}, "protection": {"_count": 1}}, "almost": {"_count": 1, "pointless": {"_count": 1}}, "They": {"_count": 1, "could": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "winds": {"_count": 9, "Professor": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 3, "heavy": {"_count": 1}, "turn": {"_count": 1}, "driving": {"_count": 1}}, "reached": {"_count": 1, "howling": {"_count": 1}}, "its": {"_count": 1, "black": {"_count": 1}}, "he": {"_count": 1, "raised": {"_count": 1}}, "skinned": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tumbled": {"_count": 3, "out": {"_count": 1, "of": {"_count": 1}}, "through": {"_count": 1, "dark": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}}, "Sn": {"_count": 2, "that": {"_count": 1, "someones": {"_count": 1}}, "Hagrid": {"_count": 1, "stopped": {"_count": 1}}}, "suspicion": {"_count": 16, "": {"_count": 6, ".": {"_count": 6}}, "that": {"_count": 5, "Dumbledore": {"_count": 2}, "the": {"_count": 1}, "her": {"_count": 1}, "he": {"_count": 1}}, "Frank": {"_count": 1, "Bryce": {"_count": 1}}, "connected": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "Death": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "when": {"_count": 1, "Voldemort": {"_count": 1}}}, "assured": {"_count": 26, "no": {"_count": 1, "one": {"_count": 1}}, "Harry": {"_count": 3, "tipping": {"_count": 1}, "he": {"_count": 1}, "pouring": {"_count": 1}}, "her": {"_count": 9, "": {"_count": 8}, "that": {"_count": 1}}, "them": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "him": {"_count": 3, "the": {"_count": 1}, "but": {"_count": 1}, "that": {"_count": 1}}, "Padma": {"_count": 1, "Patil": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "immortal": {"_count": 1, "life": {"_count": 1}}, "Ron": {"_count": 1, "they": {"_count": 1}}, "himself": {"_count": 1, "bobbing": {"_count": 1}}, "the": {"_count": 1, "spirit": {"_count": 1}}, "me": {"_count": 1, "that": {"_count": 1}}}, "enjoy": {"_count": 27, "the": {"_count": 7, "sunshine": {"_count": 1}, "effect": {"_count": 1}, "use": {"_count": 1}, "sensation": {"_count": 1}, "benefits": {"_count": 1}, "unexpected": {"_count": 1}, "softness": {"_count": 1}}, "his": {"_count": 2, "shepherds": {"_count": 1}, "moonlit": {"_count": 1}}, "Christmas": {"_count": 1, "dinner": {"_count": 1}}, "more": {"_count": 1, "time": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 5, "immensely": {"_count": 1}, "very": {"_count": 1}, "righteous": {"_count": 1}, "much": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 1, "private": {"_count": 1}}, "themselves": {"_count": 2, "as": {"_count": 1}, "the": {"_count": 1}}, "having": {"_count": 1, "these": {"_count": 1}}, "your": {"_count": 2, "breakfast": {"_count": 1}, "party": {"_count": 1}}, "Acid": {"_count": 1, "Pops": {"_count": 1}}, "watching": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 1, "Ron": {"_count": 1}}}, "sunshine": {"_count": 12, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "a": {"_count": 1}}, "outside": {"_count": 1, "Florean": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "year": {"_count": 1}}, "persisted": {"_count": 1, "so": {"_count": 1}}, "she": {"_count": 1, "fixed": {"_count": 1}}, "warming": {"_count": 1, "their": {"_count": 1}}, "again": {"_count": 1, "before": {"_count": 1}}, "yellow": {"_count": 1, "contents": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}}, "Hanging": {"_count": 3, "around": {"_count": 1, "like": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}}, "wanderings": {"_count": 4, "and": {"_count": 1, "I": {"_count": 1}}, "had": {"_count": 1, "given": {"_count": 1}}, "right": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "personally": {"_count": 21, "make": {"_count": 1, "sure": {"_count": 1}}, "feel": {"_count": 1, "he": {"_count": 1}}, "think": {"_count": 1, "wizards": {"_count": 1}}, "I": {"_count": 3, "wont": {"_count": 1}, "think": {"_count": 1}, "dont": {"_count": 1}}, "be": {"_count": 1, "ensuring": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 1}, "!": {"_count": 1}}, "believe": {"_count": 1, "you": {"_count": 1}}, "am": {"_count": 1, "at": {"_count": 1}}, "very": {"_count": 1, "nice": {"_count": 1}}, "in": {"_count": 2, "Transfiguration": {"_count": 1}, "which": {"_count": 1}}, "fancy": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "shes": {"_count": 1, "rude": {"_count": 1}}, "from": {"_count": 1, "Bellatrix": {"_count": 1}}}, "\u2018Oh": {"_count": 3, "Professor": {"_count": 1, "Flitwick": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "dear": {"_count": 1, "is": {"_count": 1}}}, "fourteen": {"_count": 14, "b": {"_count": 1, "wrong": {"_count": 1}}, "players": {"_count": 3, "on": {"_count": 1}, "rose": {"_count": 1}, "shot": {"_count": 1}}, "brooms": {"_count": 1, "rose": {"_count": 1}}, "looked": {"_count": 1, "back": {"_count": 1}}, "years": {"_count": 5, "hatred": {"_count": 1}, "said": {"_count": 1}, "Sirius": {"_count": 1}, "": {"_count": 2}}, "eyewitnesses": {"_count": 1, "who": {"_count": 1}}, "of": {"_count": 1, "us": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "separating": {"_count": 1, "Fluffy": {"_count": 1, "from": {"_count": 1}}}, "stormed": {"_count": 21, "": {"_count": 1, ".": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 5}}, "in": {"_count": 1, "": {"_count": 1}}, "upstairs": {"_count": 1, "lay": {"_count": 1}}, "off": {"_count": 2, "toward": {"_count": 1}, "across": {"_count": 1}}, "away": {"_count": 5, "great": {"_count": 1}, "": {"_count": 2}, "gwhat": {"_count": 1}, "leaving": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 2}, "and": {"_count": 1}}, "Hermione": {"_count": 1, "half": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "Enough": {"_count": 12, "of": {"_count": 3, "this": {"_count": 3}}, "demonstrating": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "let": {"_count": 1}}, "effing": {"_count": 1, "owls": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "twelve": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Voldemort": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "messing": {"_count": 1, "around": {"_count": 1}}}, "SO": {"_count": 5, "WHAT": {"_count": 1, "": {"_count": 1}}, "BEFORE": {"_count": 1, "YOU": {"_count": 1}}, "YOU": {"_count": 2, "HAVENT": {"_count": 1}, "THINK": {"_count": 1}}, "SIRIUS": {"_count": 1, "DESERVED": {"_count": 1}}}, "Losing": {"_count": 5, "points": {"_count": 1, "doesnt": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 1}, "patience": {"_count": 1}}, "who": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "nerve": {"_count": 1}}}, "percent": {"_count": 6, "on": {"_count": 2, "his": {"_count": 1}, "one": {"_count": 1}}, "sure": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "a": {"_count": 1, "year": {"_count": 1}}}, "pocketed": {"_count": 10, "it": {"_count": 6, "to": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "with": {"_count": 2}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "the": {"_count": 2, "potion": {"_count": 1}, "ancient": {"_count": 1}}}, "bid": {"_count": 5, "for": {"_count": 3, "freedom": {"_count": 2}, "them": {"_count": 1}}, "goodbye": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}}, "freedom": {"_count": 16, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "suiting": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 1, "yehll": {"_count": 1}}, "miss": {"_count": 1, "but": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "was": {"_count": 1, "retold": {"_count": 1}}, "from": {"_count": 1, "studying": {"_count": 1}}, "and": {"_count": 2, "killed": {"_count": 1}, "space": {"_count": 1}}, "he": {"_count": 1, "stabbed": {"_count": 1}}}, "hurriedly": {"_count": 27, "putting": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "treading": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "on": {"_count": 2, "his": {"_count": 2}}, "snatching": {"_count": 1, "Scabbers": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 1}, "make": {"_count": 1}}, "pointed": {"_count": 1, "out": {"_count": 1}}, "scooping": {"_count": 1, "up": {"_count": 1}}, "that": {"_count": 1, "HeWhoMustNotBeNamed": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "put": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "then": {"_count": 1}}, "striking": {"_count": 1, "up": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "thrust": {"_count": 1, "his": {"_count": 1}}}, "waste": {"_count": 33, "any": {"_count": 2, "more": {"_count": 2}}, "of": {"_count": 14, "time": {"_count": 9}, "parchment": {"_count": 1}, "potion": {"_count": 1}, "space": {"_count": 3}}, "basket": {"_count": 1, "grabbed": {"_count": 1}}, "those": {"_count": 1, "long": {"_count": 1}}, "your": {"_count": 2, "time": {"_count": 1}, "breath": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "time": {"_count": 1, "down": {"_count": 1}}, "his": {"_count": 2, "remaining": {"_count": 1}, "time": {"_count": 1}}, "our": {"_count": 1, "last": {"_count": 1}}, "five": {"_count": 1, "whole": {"_count": 1}}, "But": {"_count": 1, "if": {"_count": 1}}, "one": {"_count": 1, "and": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "valuable": {"_count": 1, "time": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}}, "steeling": {"_count": 4, "himself": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "herself": {"_count": 2, "to": {"_count": 1}, "then": {"_count": 1}}}, "exasperation": {"_count": 12, "": {"_count": 4, ".": {"_count": 4}}, "handing": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 2, "amusement": {"_count": 2}}, "you": {"_count": 1, "cant": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "on": {"_count": 1, "Rons": {"_count": 1}}, "with": {"_count": 1, "Xenophilius": {"_count": 1}}}, "Petrificus": {"_count": 10, "Totalusl": {"_count": 9, "she": {"_count": 1}, "and": {"_count": 1}, "shouted": {"_count": 1}, "Once": {"_count": 1}, "Without": {"_count": 1}, "yelled": {"_count": 1}, "Harry": {"_count": 2}, "The": {"_count": 1}}, "TotalusV": {"_count": 1, "screamed": {"_count": 1}}}, "Totalusl": {"_count": 9, "she": {"_count": 1, "cried": {"_count": 1}}, "and": {"_count": 1, "Snape": {"_count": 1}}, "shouted": {"_count": 1, "Harry": {"_count": 1}}, "Once": {"_count": 1, "again": {"_count": 1}}, "Without": {"_count": 1, "warning": {"_count": 1}}, "yelled": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 2, "bellowed": {"_count": 1}, "felt": {"_count": 1}}, "The": {"_count": 1, "Death": {"_count": 1}}}, "rigid": {"_count": 22, "he": {"_count": 1, "swayed": {"_count": 1}}, "with": {"_count": 3, "shock": {"_count": 1}, "anger": {"_count": 1}, "defiance": {"_count": 1}}, "grip": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 6, "cold": {"_count": 1}, "fell": {"_count": 1}, "his": {"_count": 1}, "immobile": {"_count": 1}, "impassive": {"_count": 1}, "still": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "black": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "curls": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 2}, "boards": {"_count": 1}}, "clutching": {"_count": 1, "Wormtails": {"_count": 1}}}, "Whatve": {"_count": 9, "you": {"_count": 5, "done": {"_count": 3}, "been": {"_count": 1}, "got": {"_count": 1}}, "we": {"_count": 1, "got": {"_count": 1}}, "they": {"_count": 3, "gotta": {"_count": 1}, "done": {"_count": 2}}}, "BodyBind": {"_count": 8, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Curse": {"_count": 6, "put": {"_count": 1}, "Dumbledore": {"_count": 1}, "on": {"_count": 1}, "at": {"_count": 2}, "upon": {"_count": 1}}, "was": {"_count": 1, "leering": {"_count": 1}}}, "motionless": {"_count": 35, "on": {"_count": 6, "the": {"_count": 6}}, "eye": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "Harrys": {"_count": 1}}, "coils": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 6, "his": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 1}, "midbounce": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "silence": {"_count": 1, "everyone": {"_count": 1}}, "and": {"_count": 4, "innocent": {"_count": 1}, "realized": {"_count": 1}, "silent": {"_count": 1}, "pathetic": {"_count": 1}}, "apparently": {"_count": 2, "too": {"_count": 1}, "staring": {"_count": 1}}, "facedown": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "glittering": {"_count": 1}}, "staring": {"_count": 1, "through": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "terrified": {"_count": 1, "people": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}, "Sneakoscope": {"_count": 1, "on": {"_count": 1}}, "figure": {"_count": 1, "of": {"_count": 1}}}, "omen": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "he": {"_count": 1, "told": {"_count": 1}}, "the": {"_count": 1, "worst": {"_count": 1}}, "of": {"_count": 2, "death": {"_count": 1}, "Harrys": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}}, "skulking": {"_count": 12, "near": {"_count": 1, "the": {"_count": 1}}, "redeyed": {"_count": 1, "through": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 2, "Harry": {"_count": 1}, "them": {"_count": 1}}, "and": {"_count": 1, "come": {"_count": 1}}, "off": {"_count": 1, "while": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "alone": {"_count": 1, "in": {"_count": 1}}, "half": {"_count": 1, "concealed": {"_count": 1}}, "chewing": {"_count": 1, "his": {"_count": 1}}}, "loosening": {"_count": 5, "the": {"_count": 3, "carpet": {"_count": 1}, "watch": {"_count": 1}, "ties": {"_count": 1}}, "its": {"_count": 1, "grip": {"_count": 1}}, "a": {"_count": 1, "crystal": {"_count": 1}}}, "carpet": {"_count": 33, "so": {"_count": 2, "that": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "looking": {"_count": 1, "around": {"_count": 1}}, "slippers": {"_count": 3, "": {"_count": 2}, "flopping": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "exhaled": {"_count": 1, "little": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "tiniest": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 2, "covered": {"_count": 1}, "a": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "covering": {"_count": 1, "most": {"_count": 1}}, "tall": {"_count": 1, "dustcolored": {"_count": 1}}, "from": {"_count": 1, "which": {"_count": 1}}, "was": {"_count": 1, "also": {"_count": 1}}}, "ghoulie": {"_count": 1, "or": {"_count": 1, "ghostie": {"_count": 1}}}, "ghostie": {"_count": 1, "or": {"_count": 1, "wee": {"_count": 1}}}, "wee": {"_count": 4, "student": {"_count": 1, "beastie": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "lad": {"_count": 1, "But": {"_count": 1}}, "Potters": {"_count": 1, "the": {"_count": 1}}}, "beastie": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "acreeping": {"_count": 1, "around": {"_count": 1, "unseen": {"_count": 1}}}, "unseen": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "Muggle": {"_count": 1, "street": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "by": {"_count": 1, "both": {"_count": 1}}, "people": {"_count": 1, "Look": {"_count": 1}}}, "bloodiness": {"_count": 1, "Mr": {"_count": 1, "Baron": {"_count": 1}}}, "greasily": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "forgive": {"_count": 34, "old": {"_count": 1, "Peevsie": {"_count": 1}}, "mistakes": {"_count": 1, "easily": {"_count": 1}}, "me": {"_count": 16, "": {"_count": 6}, "for": {"_count": 5}, "Dumbledore": {"_count": 1}, "you": {"_count": 1}, "rather": {"_count": 1}, "the": {"_count": 1}, "Im": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "lateness": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 1}, "if": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "Kreacher": {"_count": 1, "if": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "easily": {"_count": 1, "": {"_count": 1}}, "others": {"_count": 1, "for": {"_count": 1}}, "this": {"_count": 2, "intrusion": {"_count": 1}, "time": {"_count": 1}}, "Harry": {"_count": 1, "this": {"_count": 1}}, "myself": {"_count": 1, "when": {"_count": 1}}}, "Peevsie": {"_count": 2, "his": {"_count": 1, "little": {"_count": 1}}, "hell": {"_count": 1, "make": {"_count": 1}}}, "scooted": {"_count": 2, "off": {"_count": 2, "": {"_count": 1}, "toward": {"_count": 1}}}, "Seeing": {"_count": 9, "the": {"_count": 3, "open": {"_count": 1}, "shocked": {"_count": 1}, "grave": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "death": {"_count": 1, "omens": {"_count": 1}}, "things": {"_count": 1, "eh": {"_count": 1}}, "Eye": {"_count": 1, "certificates": {"_count": 1}}, "visions": {"_count": 1, "": {"_count": 1}}}, "impress": {"_count": 8, "upon": {"_count": 5, "all": {"_count": 1}, "both": {"_count": 1}, "any": {"_count": 1}, "them": {"_count": 1}, "you": {"_count": 1}}, "the": {"_count": 1, "visitors": {"_count": 1}}, "Cho": {"_count": 1, "seemed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "creaked": {"_count": 26, "low": {"_count": 1, "rumbling": {"_count": 1}}, "open": {"_count": 7, "": {"_count": 5}, "and": {"_count": 2}}, "and": {"_count": 2, "clanked": {"_count": 1}, "shuddered": {"_count": 1}}, "slowly": {"_count": 1, "open": {"_count": 1}}, "around": {"_count": 2, "him": {"_count": 1}, "to": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "motion": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "ominously": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "little": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "slightly": {"_count": 1, "and": {"_count": 1}}, "downstairs": {"_count": 1, "": {"_count": 1}}, "upward": {"_count": 1, "once": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "Looks": {"_count": 16, "like": {"_count": 12, "a": {"_count": 4}, "theyre": {"_count": 1}, "theyve": {"_count": 1}, "it": {"_count": 2}, "somethings": {"_count": 1}, "shes": {"_count": 1}, "well": {"_count": 1}, "you": {"_count": 1}}, "even": {"_count": 1, "worse": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "goblinmade": {"_count": 1, "that": {"_count": 1}}, "more": {"_count": 1, "like": {"_count": 1}}}, "harp": {"_count": 4, "said": {"_count": 1, "Ron": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 2, "about": {"_count": 2}}}, "droop": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "expected": {"_count": 1}}}, "ceased": {"_count": 7, "it": {"_count": 1, "tottered": {"_count": 1}}, "almost": {"_count": 1, "at": {"_count": 1}}, "immediately": {"_count": 1, "as": {"_count": 1}}, "abruptly": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 1, "tapping": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "castle": {"_count": 1}}}, "tottered": {"_count": 5, "on": {"_count": 1, "its": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "in": {"_count": 1}}, "away": {"_count": 1, "back": {"_count": 1}}, "off": {"_count": 1, "down": {"_count": 1}}}, "paws": {"_count": 12, "and": {"_count": 2, "fell": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "hit": {"_count": 1, "him": {"_count": 1}}, "upon": {"_count": 1, "a": {"_count": 1}}, "faded": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "were": {"_count": 1, "curiously": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}}, "smelly": {"_count": 9, "breath": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "sock": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 1, "very": {"_count": 1}}, "cloud": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "blankets": {"_count": 1}}, "spidery": {"_count": 1, "broom": {"_count": 1}}, "sneak": {"_count": 1, "thief": {"_count": 1}}}, "approached": {"_count": 105, "the": {"_count": 37, "giant": {"_count": 1}, "table": {"_count": 2}, "whole": {"_count": 1}, "infirmary": {"_count": 1}, "opening": {"_count": 1}, "counter": {"_count": 1}, "fence": {"_count": 2}, "days": {"_count": 1}, "end": {"_count": 1}, "fireplace": {"_count": 1}, "cottage": {"_count": 1}, "spot": {"_count": 1}, "Fat": {"_count": 2}, "clump": {"_count": 1}, "top": {"_count": 1}, "final": {"_count": 1}, "man": {"_count": 1}, "giants": {"_count": 1}, "first": {"_count": 1}, "Quidditch": {"_count": 1}, "fire": {"_count": 1}, "back": {"_count": 1}, "place": {"_count": 1}, "wall": {"_count": 1}, "basin": {"_count": 1}, "castle": {"_count": 1}, "tent": {"_count": 1}, "desk": {"_count": 1}, "lifts": {"_count": 1}, "church": {"_count": 2}, "portrait": {"_count": 2}, "barrier": {"_count": 1}}, "it": {"_count": 4, "they": {"_count": 1}, "eagerly": {"_count": 1}, "cautiously": {"_count": 1}, "Ginny": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 18}}, "slowly": {"_count": 1, "squinting": {"_count": 1}}, "Lockharts": {"_count": 1, "desk": {"_count": 1}}, "cautiously": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "throat": {"_count": 1}}, "and": {"_count": 4, "back": {"_count": 1}, "put": {"_count": 1}, "Harry": {"_count": 1}, "abused": {"_count": 1}}, "Professor": {"_count": 2, "Lupin": {"_count": 1}, "Dippet": {"_count": 1}}, "their": {"_count": 2, "table": {"_count": 2}}, "him": {"_count": 4, "he": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "looking": {"_count": 1}}, "her": {"_count": 3, "table": {"_count": 1}, "goal": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 6, "at": {"_count": 1}, "heard": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 1}, "himself": {"_count": 1}, "but": {"_count": 1}}, "in": {"_count": 1, "such": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "Lupin": {"_count": 1, "and": {"_count": 1}}, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 2, "carrying": {"_count": 1}, "s": {"_count": 1}}, "Bagman": {"_count": 1, "and": {"_count": 1}}, "barking": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "one": {"_count": 2, "of": {"_count": 2}}, "Umbridges": {"_count": 1, "door": {"_count": 1}}, "a": {"_count": 1, "door": {"_count": 1}}, "didnt": {"_count": 1, "get": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "noiselessly": {"_count": 1}}, "running": {"_count": 1, "his": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermole": {"_count": 1}}, "eyes": {"_count": 1, "bloodshot": {"_count": 1}}}, "gritted": {"_count": 21, "his": {"_count": 4, "teeth": {"_count": 4}}, "teeth": {"_count": 15, "his": {"_count": 1}, "": {"_count": 8}, "will": {"_count": 1}, "you": {"_count": 1}, "Kingsley": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "pain": {"_count": 1}}}, "ring": {"_count": 66, "of": {"_count": 10, "the": {"_count": 2}, "twittering": {"_count": 1}, "fire": {"_count": 5}, "protective": {"_count": 1}, "authenticity": {"_count": 1}}, "Ill": {"_count": 1, "catch": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 6}, "?": {"_count": 2}}, "the": {"_count": 2, "doorbell": {"_count": 1}, "ring": {"_count": 1}}, "bearing": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Thats": {"_count": 2, "why": {"_count": 2}}, "some": {"_count": 2, "of": {"_count": 2}}, "on": {"_count": 2, "his": {"_count": 2}}, "too": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "wore": {"_count": 1}, "had": {"_count": 1}}, "sailed": {"_count": 1, "within": {"_count": 1}}, "set": {"_count": 1, "with": {"_count": 1}}, "Yes": {"_count": 1, "": {"_count": 1}}, "Marvolo": {"_count": 1, "Gaunt": {"_count": 1}}, "had": {"_count": 5, "rested": {"_count": 1}, "gone": {"_count": 1}, "disappeared": {"_count": 1}, "been": {"_count": 2}}, "was": {"_count": 2, "no": {"_count": 1}, "sure": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "gleaming": {"_count": 1, "on": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 2, "no": {"_count": 1}, "now": {"_count": 1}}, "hidden": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 1, "if": {"_count": 1}}, "glittered": {"_count": 1, "there": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "then": {"_count": 1, "through": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "that": {"_count": 1, "became": {"_count": 1}}, "its": {"_count": 1, "in": {"_count": 1}}, "surely": {"_count": 1, "was": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 2}}, "lay": {"_count": 1, "on": {"_count": 1}}, "carried": {"_count": 1, "a": {"_count": 1}}, "would": {"_count": 1, "break": {"_count": 1}}}, "fingertips": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "stretched": {"_count": 1, "toward": {"_count": 1}}, "but": {"_count": 1, "any": {"_count": 1}}, "together": {"_count": 1, "again": {"_count": 1}}, "were": {"_count": 2, "inches": {"_count": 1}, "numb": {"_count": 1}}, "murmuring": {"_count": 1, "words": {"_count": 1}}}, "Cold": {"_count": 5, "damp": {"_count": 1, "air": {"_count": 1}}, "with": {"_count": 1, "dread": {"_count": 1}}, "as": {"_count": 1, "ice": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "air": {"_count": 1, "told": {"_count": 1}}}, "FLUMP": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "thump": {"_count": 7, "he": {"_count": 1, "landed": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Snape": {"_count": 1}}, "quite": {"_count": 1, "disproportionate": {"_count": 1}}, "Someone": {"_count": 1, "else": {"_count": 1}}}, "landing": {"_count": 80, "you": {"_count": 1, "can": {"_count": 1}}, "on": {"_count": 7, "top": {"_count": 2}, "the": {"_count": 3}, "their": {"_count": 1}, "his": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "catlike": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "then": {"_count": 2, "carried": {"_count": 1}, "straightened": {"_count": 1}}, "light": {"_count": 2, "clicked": {"_count": 1}, "It": {"_count": 1}}, "a": {"_count": 2, "door": {"_count": 1}, "whole": {"_count": 1}}, "rather": {"_count": 1, "harder": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 1}, "front": {"_count": 1}, "the": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "heaving": {"_count": 1, "with": {"_count": 1}}, "where": {"_count": 4, "there": {"_count": 2}, "most": {"_count": 1}, "he": {"_count": 1}}, "but": {"_count": 2, "Ron": {"_count": 1}, "before": {"_count": 1}}, "Frank": {"_count": 1, "turned": {"_count": 1}}, "opened": {"_count": 1, "and": {"_count": 1}}, "flat": {"_count": 1, "on": {"_count": 1}}, "straining": {"_count": 1, "his": {"_count": 1}}, "youre": {"_count": 1, "the": {"_count": 1}}, "turned": {"_count": 2, "the": {"_count": 1}, "immediately": {"_count": 1}}, "above": {"_count": 1, "cautiously": {"_count": 1}}, "pointing": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 7, "closed": {"_count": 1}, "opened": {"_count": 1}, "stopped": {"_count": 1}, "down": {"_count": 1}, "past": {"_count": 1}, "knocked": {"_count": 1}, "then": {"_count": 1}}, "he": {"_count": 5, "heard": {"_count": 1}, "came": {"_count": 1}, "said": {"_count": 1}, "bumped": {"_count": 1}, "whispered": {"_count": 1}}, "Sir": {"_count": 1, "Cadogan": {"_count": 1}}, "one": {"_count": 1, "by": {"_count": 1}}, "himself": {"_count": 1, "in": {"_count": 1}}, "down": {"_count": 1, "from": {"_count": 1}}, "loudly": {"_count": 1, "on": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "squarely": {"_count": 1, "in": {"_count": 1}}, "beside": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "who": {"_count": 1, "ran": {"_count": 1}}, "of": {"_count": 1, "number": {"_count": 1}}, "clambered": {"_count": 1, "laboriously": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "painlessly": {"_count": 1, "on": {"_count": 1}}, "nor": {"_count": 1, "how": {"_count": 1}}, "pleading": {"_count": 1, "with": {"_count": 1}}, "far": {"_count": 1, "too": {"_count": 1}}}, "sprawled": {"_count": 16, "next": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 8, "the": {"_count": 6}, "his": {"_count": 2}}, "at": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 1, "still": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "motionless": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}}, "bark": {"_count": 12, "from": {"_count": 1, "the": {"_count": 1}}, "making": {"_count": 1, "both": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 4, "laughter": {"_count": 2}, "a": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 2, "gamboled": {"_count": 1}, "bounded": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "booming": {"_count": 1, "in": {"_count": 1}}}, "struggle": {"_count": 29, "because": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "to": {"_count": 4, "remove": {"_count": 1}, "find": {"_count": 1}, "comprehend": {"_count": 1}, "keep": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "plus": {"_count": 1}}, "against": {"_count": 3, "Dads": {"_count": 1}, "invisible": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "my": {"_count": 1}}, "on": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 3, "Voldemort": {"_count": 1}, "herself": {"_count": 1}, "himself": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Auntie": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "more": {"_count": 1, "powerfully": {"_count": 1}}}, "twist": {"_count": 11, "snakelike": {"_count": 1, "tendrils": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "midair": {"_count": 1}}, "that": {"_count": 1, "": {"_count": 1}}, "everything": {"_count": 1, "he": {"_count": 1}}, "Hagrid": {"_count": 1, "is": {"_count": 1}}, "hasnt": {"_count": 1, "cleaned": {"_count": 1}}, "sinuously": {"_count": 1, "in": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "violently": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "vanish": {"_count": 1}}}, "tendrils": {"_count": 1, "around": {"_count": 1, "her": {"_count": 1}}}, "creepers": {"_count": 1, "without": {"_count": 1, "their": {"_count": 1}}}, "tighter": {"_count": 9, "and": {"_count": 2, "faster": {"_count": 1}, "how": {"_count": 1}}, "security": {"_count": 1, "Professor": {"_count": 1}}, "circle": {"_count": 1, "around": {"_count": 1}}, "group": {"_count": 1, "as": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "she": {"_count": 1, "holds": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "squeeze": {"_count": 1, "than": {"_count": 1}}}, "Devils": {"_count": 13, "Snare": {"_count": 13, "": {"_count": 6}, "Devils": {"_count": 1}, "Flitwick": {"_count": 1}, "was": {"_count": 1}, "which": {"_count": 1}, "arrive": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 1}}}, "Snare": {"_count": 13, "": {"_count": 6, "!": {"_count": 1}, ".": {"_count": 5}}, "Devils": {"_count": 1, "Snare": {"_count": 1}}, "Flitwick": {"_count": 1, "mustve": {"_count": 1}}, "was": {"_count": 1, "rooting": {"_count": 1}}, "which": {"_count": 1, "when": {"_count": 1}}, "arrive": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "turn": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "curling": {"_count": 16, "around": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 3, "mouth": {"_count": 2}, "lipless": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "into": {"_count": 3, "clawed": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}}, "blackly": {"_count": 1, "in": {"_count": 1}}, "her": {"_count": 1, "eyelashes": {"_count": 1}}, "closegrowing": {"_count": 1, "hair": {"_count": 1}}}, "likes": {"_count": 39, "the": {"_count": 3, "dark": {"_count": 1}, "quiet": {"_count": 1}, "company": {"_count": 1}}, "of": {"_count": 4, "Dumbledore": {"_count": 1}, "which": {"_count": 2}, "you": {"_count": 1}}, "you": {"_count": 3, "said": {"_count": 1}, "to": {"_count": 1}, "much": {"_count": 1}}, "to": {"_count": 4, "keep": {"_count": 2}, "operate": {"_count": 1}, "play": {"_count": 1}}, "chasing": {"_count": 1, "gnomes": {"_count": 1}}, "being": {"_count": 2, "bossed": {"_count": 1}, "free": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 2, "where": {"_count": 1}, "much": {"_count": 1}}, "but": {"_count": 1, "you": {"_count": 1}}, "work": {"_count": 2, "but": {"_count": 1}, "better": {"_count": 1}}, "freedom": {"_count": 1, "miss": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "his": {"_count": 2, "little": {"_count": 1}, "comfort": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "best": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "bit": {"_count": 1}, "laugh": {"_count": 1}}, "me": {"_count": 1, "or": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "Dobby": {"_count": 1}}, "attacking": {"_count": 1, "kids": {"_count": 1}}}, "wringing": {"_count": 9, "her": {"_count": 4, "hands": {"_count": 4}}, "his": {"_count": 2, "hands": {"_count": 2}}, "Harrys": {"_count": 1, "hand": {"_count": 1}}, "out": {"_count": 2, "his": {"_count": 1}, "what": {"_count": 1}}}, "HAVE": {"_count": 15, "YOU": {"_count": 2, "GONE": {"_count": 1}, "GOT": {"_count": 1}}, "I": {"_count": 1, "TOLD": {"_count": 1}}, "BEEN": {"_count": 1, "SURPRISED": {"_count": 1}}, "DIED": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "TO": {"_count": 2, "": {"_count": 1}, "WHIP": {"_count": 1}}, "DONE": {"_count": 2, "FOR": {"_count": 1}, "HER": {"_count": 1}}, "ANY": {"_count": 1, "MORE": {"_count": 1}}, "OWLS": {"_count": 1, "HERE": {"_count": 1}}, "SENT": {"_count": 1, "ME": {"_count": 1}}, "A": {"_count": 1, "VERY": {"_count": 1}}, "SOME": {"_count": 1, "O": {"_count": 1}}}, "GONE": {"_count": 3, "MAD": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "MAD": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "MADEYE": {"_count": 1, "": {"_count": 1}}}, "WITCH": {"_count": 1, "OR": {"_count": 1, "NOT": {"_count": 1}}}, "bluebell": {"_count": 2, "flames": {"_count": 2, "she": {"_count": 1}, "still": {"_count": 1}}}, "cringed": {"_count": 1, "away": {"_count": 1, "from": {"_count": 1}}}, "Wriggling": {"_count": 2, "and": {"_count": 1, "flailing": {"_count": 1}}, "around": {"_count": 1, "he": {"_count": 1}}}, "flailing": {"_count": 11, "it": {"_count": 1, "unraveled": {"_count": 1}}, "its": {"_count": 1, "branches": {"_count": 1}}, "arms": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "then": {"_count": 1}, "writhing": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 1}, "desperately": {"_count": 1}}, "helplessly": {"_count": 1, "": {"_count": 1}}, "uncontrollably": {"_count": 1, "at": {"_count": 1}}, "limbs": {"_count": 1, "no": {"_count": 1}}, "hand": {"_count": 1, "almost": {"_count": 1}}}, "unraveled": {"_count": 5, "itself": {"_count": 1, "from": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "mysteries": {"_count": 1}, "long": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "bodies": {"_count": 45, "and": {"_count": 3, "they": {"_count": 1}, "saw": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "hind": {"_count": 1, "legs": {"_count": 1}}, "pressing": {"_count": 1, "in": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "that": {"_count": 2, "each": {"_count": 1}, "have": {"_count": 1}}, "were": {"_count": 5, "removed": {"_count": 2}, "ill": {"_count": 1}, "free": {"_count": 1}, "trampled": {"_count": 1}}, "of": {"_count": 2, "others": {"_count": 1}, "Fred": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "slam": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 1, "flashes": {"_count": 1}}, "lying": {"_count": 3, "in": {"_count": 1}, "there": {"_count": 1}, "next": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "floating": {"_count": 1, "around": {"_count": 1}}, "however": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "enchanted": {"_count": 1, "by": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "men": {"_count": 1, "women": {"_count": 1}}, "filling": {"_count": 1, "the": {"_count": 1}}, "tied": {"_count": 1, "itself": {"_count": 1}}, "fell": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "shifting": {"_count": 1, "their": {"_count": 1}}, "but": {"_count": 1, "much": {"_count": 1}}}, "crisis": {"_count": 2, "\u2018theres": {"_count": 1, "no": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018theres": {"_count": 2, "no": {"_count": 1, "wood": {"_count": 1}}, "some": {"_count": 1, "wholl": {"_count": 1}}}, "gentle": {"_count": 21, "drip": {"_count": 2, "of": {"_count": 2}}, "voice": {"_count": 1, "as": {"_count": 1}}, "tickling": {"_count": 1, "sensation": {"_count": 1}}, "lady": {"_count": 1, "": {"_count": 1}}, "slope": {"_count": 1, "of": {"_count": 1}}, "patter": {"_count": 1, "of": {"_count": 1}}, "clinking": {"_count": 1, "of": {"_count": 1}}, "knock": {"_count": 1, "on": {"_count": 1}}, "tap": {"_count": 1, "with": {"_count": 1}}, "something": {"_count": 1, "like": {"_count": 1}}, "breeze": {"_count": 1, "June": {"_count": 1}}, "with": {"_count": 1, "Potter": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "bump": {"_count": 1, "sometimes": {"_count": 1}}, "thuds": {"_count": 1, "as": {"_count": 1}}, "pats": {"_count": 1, "upon": {"_count": 1}}, "trots": {"_count": 1, "keen": {"_count": 1}}, "things": {"_count": 1, "theres": {"_count": 1}}}, "drip": {"_count": 5, "of": {"_count": 3, "water": {"_count": 1}, "ink": {"_count": 1}, "egg": {"_count": 1}}, "shivering": {"_count": 1, "unpleasantly": {"_count": 1}}, "drip": {"_count": 1, "of": {"_count": 1}}}, "trickling": {"_count": 14, "down": {"_count": 11, "the": {"_count": 2}, "behind": {"_count": 1}, "his": {"_count": 4}, "Dumbledore": {"_count": 1}, "Hagrids": {"_count": 1}, "into": {"_count": 1}, "her": {"_count": 1}}, "away": {"_count": 1, "as": {"_count": 1}}, "between": {"_count": 1, "her": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "fullygrown": {"_count": 2, "dragon": {"_count": 1, "Norbert": {"_count": 1}}, "wizard": {"_count": 1, "with": {"_count": 1}}}, "clinking": {"_count": 12, "seemed": {"_count": 1, "to": {"_count": 1}}, "gently": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 4, "her": {"_count": 1}, "what": {"_count": 1}, "glasses": {"_count": 1}, "cutlery": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "noises": {"_count": 1, "": {"_count": 1}}, "noise": {"_count": 1, "slowed": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "sound": {"_count": 1, "that": {"_count": 1}}, "glass": {"_count": 1, "Amycus": {"_count": 1}}}, "brilliantly": {"_count": 10, "lit": {"_count": 1, "chamber": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "orange": {"_count": 1, "eyes": {"_count": 1}}, "colored": {"_count": 1, "sweets": {"_count": 1}}, "pink": {"_count": 1, "face": {"_count": 1}}, "blue": {"_count": 2, "sky": {"_count": 1}, "eyes": {"_count": 1}}, "purple": {"_count": 1, "black": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}}, "arching": {"_count": 1, "high": {"_count": 1, "above": {"_count": 1}}}, "jewel": {"_count": 4, "bright": {"_count": 2, "birds": {"_count": 1}, "across": {"_count": 1}}, "set": {"_count": 1, "into": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "tumbling": {"_count": 6, "all": {"_count": 1, "around": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 2, "in": {"_count": 1}, "one": {"_count": 1}}, "from": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}}, "Probably": {"_count": 25, "said": {"_count": 3, "Harry": {"_count": 2}, "Ron": {"_count": 1}}, "getting": {"_count": 2, "ready": {"_count": 1}, "her": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "cause": {"_count": 1, "its": {"_count": 1}}, "a": {"_count": 1, "stray": {"_count": 1}}, "cost": {"_count": 1, "more": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "mistaken": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "exhibition": {"_count": 1}}, "says": {"_count": 1, "hes": {"_count": 1}}, "say": {"_count": 1, "hes": {"_count": 1}}, "thinks": {"_count": 1, "if": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "that": {"_count": 1, "youre": {"_count": 1}}, "woulda": {"_count": 1, "done": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "just": {"_count": 1, "Charlie": {"_count": 1}}, "wise": {"_count": 1, "": {"_count": 1}}, "longer": {"_count": 1, "only": {"_count": 1}}, "to": {"_count": 1, "show": {"_count": 1}}, "be": {"_count": 1, "blond": {"_count": 1}}}, "vicious": {"_count": 19, "but": {"_count": 1, "I": {"_count": 1}}, "uppercut": {"_count": 1, "from": {"_count": 1}}, "threeheaded": {"_count": 1, "dogs": {"_count": 1}}, "swishing": {"_count": 1, "branches": {"_count": 1}}, "Norwegian": {"_count": 1, "Ridgeback": {"_count": 1}}, "insults": {"_count": 1, "from": {"_count": 1}}, "goblin": {"_count": 1, "riots": {"_count": 1}}, "giants": {"_count": 1, "": {"_count": 1}}, "creatures": {"_count": 1, "as": {"_count": 1}}, "Erm": {"_count": 1, "": {"_count": 1}}, "satisfaction": {"_count": 1, "upon": {"_count": 1}}, "mountain": {"_count": 1, "trolls": {"_count": 1}}, "giant": {"_count": 1, "with": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "baby": {"_count": 1, "dragon": {"_count": 1}}, "anger": {"_count": 1, "saw": {"_count": 1}}, "said": {"_count": 1, "Charlie": {"_count": 1}}, "slashes": {"_count": 1, "across": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}}, "beaks": {"_count": 2, "and": {"_count": 2, "claws": {"_count": 1}, "large": {"_count": 1}}}, "untouched": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "except": {"_count": 1, "for": {"_count": 1}}, "snow": {"_count": 1, "between": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "tugged": {"_count": 23, "and": {"_count": 4, "heaved": {"_count": 1}, "twisted": {"_count": 1}, "tore": {"_count": 1}, "wrenched": {"_count": 1}}, "his": {"_count": 1, "sword": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "the": {"_count": 6, "cloak": {"_count": 1}, "hat": {"_count": 1}, "dragon": {"_count": 1}, "Frisbee": {"_count": 1}, "Invisibility": {"_count": 1}, "book": {"_count": 1}}, "her": {"_count": 1, "gauzy": {"_count": 1}}, "harder": {"_count": 1, "on": {"_count": 1}}, "again": {"_count": 1, "on": {"_count": 1}}, "it": {"_count": 2, "a": {"_count": 1}, "back": {"_count": 1}}, "him": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 2, "his": {"_count": 2}}, "open": {"_count": 1, "a": {"_count": 1}}}, "Charm": {"_count": 124, "": {"_count": 22, ".": {"_count": 19}, "?": {"_count": 3}}, "was": {"_count": 7, "used": {"_count": 1}, "attacked": {"_count": 1}, "first": {"_count": 1}, "struck": {"_count": 1}, "certainly": {"_count": 1}, "so": {"_count": 1}, "such": {"_count": 1}}, "Your": {"_count": 1, "Own": {"_count": 1}}, "and": {"_count": 4, "stuffing": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}, "then": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "he": {"_count": 2, "let": {"_count": 1}, "used": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 16, "them": {"_count": 2}, "you": {"_count": 1}, "her": {"_count": 2}, "the": {"_count": 7}, "him": {"_count": 1}, "a": {"_count": 1}, "herself": {"_count": 1}, "these": {"_count": 1}}, "backfired": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 7, "Cure": {"_count": 1}, "judge": {"_count": 1}, "remove": {"_count": 1}, "bamboozle": {"_count": 1}, "get": {"_count": 3}}, "had": {"_count": 3, "been": {"_count": 1}, "stopped": {"_count": 1}, "not": {"_count": 1}}, "at": {"_count": 2, "least": {"_count": 1}, "twentythree": {"_count": 1}}, "that": {"_count": 5, "Mrs": {"_count": 1}, "evening": {"_count": 1}, "was": {"_count": 1}, "kept": {"_count": 1}, "hid": {"_count": 1}}, "ten": {"_count": 1, "times": {"_count": 1}}, "Breakers": {"_count": 1, "once": {"_count": 1}}, "properly": {"_count": 1, "by": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "today": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "her": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "said": {"_count": 3, "Moody": {"_count": 1}, "George": {"_count": 1}, "Hermione": {"_count": 1}}, "must": {"_count": 2, "have": {"_count": 2}}, "everything": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "these": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "Club": {"_count": 1, "shed": {"_count": 1}}, "for": {"_count": 2, "homework": {"_count": 1}, "that": {"_count": 1}}, "light": {"_count": 1, "was": {"_count": 1}}, "Hermione": {"_count": 2, "was": {"_count": 1}, "spluttered": {"_count": 1}}, "a": {"_count": 1, "means": {"_count": 1}}, "work": {"_count": 1, "seems": {"_count": 1}}, "while": {"_count": 1, "Dean": {"_count": 1}}, "Neville": {"_count": 1, "brought": {"_count": 1}}, "go": {"_count": 1, "off": {"_count": 1}}, "the": {"_count": 1, "previous": {"_count": 1}}, "from": {"_count": 1, "Flitwick": {"_count": 1}}, "without": {"_count": 1, "saying": {"_count": 1}}, "Then": {"_count": 1, "by": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "Fleur": {"_count": 1, "said": {"_count": 1}}, "Witches": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "which": {"_count": 1, "will": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "died": {"_count": 1, "": {"_count": 1}}, "broken": {"_count": 1, "though": {"_count": 1}}, "between": {"_count": 2, "them": {"_count": 1}, "Neville": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "carrying": {"_count": 1}}, "so": {"_count": 1, "powerful": {"_count": 1}}, "stopped": {"_count": 1, "working": {"_count": 1}}, "break": {"_count": 1, "the": {"_count": 1}}, "expanded": {"_count": 1, "in": {"_count": 1}}}, "decoration": {"_count": 4, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "the": {"_count": 1}}}, "soaring": {"_count": 45, "overhead": {"_count": 1, "glittering": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "over": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "up": {"_count": 3, "into": {"_count": 1}, "and": {"_count": 2}}, "around": {"_count": 4, "its": {"_count": 1}, "Little": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}}, "back": {"_count": 2, "to": {"_count": 1}, "into": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "upward": {"_count": 3, "": {"_count": 1}, "again": {"_count": 1}, "too": {"_count": 1}}, "sensation": {"_count": 1, "of": {"_count": 1}}, "beneath": {"_count": 2, "caught": {"_count": 1}, "him": {"_count": 1}}, "through": {"_count": 5, "the": {"_count": 5}}, "toward": {"_count": 3, "him": {"_count": 1}, "them": {"_count": 1}, "her": {"_count": 1}}, "out": {"_count": 3, "over": {"_count": 1}, "of": {"_count": 2}}, "down": {"_count": 1, "toward": {"_count": 1}}, "in": {"_count": 1, "through": {"_count": 1}}, "past": {"_count": 3, "him": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "high": {"_count": 1, "into": {"_count": 1}}, "along": {"_count": 1, "behind": {"_count": 1}}, "weightlessly": {"_count": 2, "through": {"_count": 2}}, "backward": {"_count": 1, "hitting": {"_count": 1}}, "off": {"_count": 1, "into": {"_count": 1}}, "alongside": {"_count": 1, "it": {"_count": 1}}}, "Winged": {"_count": 1, "keys": {"_count": 1, "look": {"_count": 1}}}, "squinted": {"_count": 30, "up": {"_count": 2, "at": {"_count": 1}, "to": {"_count": 1}}, "at": {"_count": 12, "the": {"_count": 4}, "his": {"_count": 1}, "it": {"_count": 2}, "them": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 1}, "him": {"_count": 1}}, "unpleasantly": {"_count": 1, "at": {"_count": 1}}, "around": {"_count": 2, "on": {"_count": 1}, "through": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "pressing": {"_count": 1, "his": {"_count": 1}}, "toward": {"_count": 1, "Hagrids": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "Ogdens": {"_count": 1}}, "down": {"_count": 4, "into": {"_count": 1}, "at": {"_count": 3}}, "over": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "for": {"_count": 1}}}, "flock": {"_count": 7, "of": {"_count": 7, "keys": {"_count": 1}, "memos": {"_count": 2}, "flamingos": {"_count": 1}, "golden": {"_count": 1}, "birds": {"_count": 1}, "canaries": {"_count": 1}}}, "Broomsticks": {"_count": 42, "": {"_count": 15, "!": {"_count": 2}, "?": {"_count": 4}, ".": {"_count": 9}}, "for": {"_count": 2, "foaming": {"_count": 1}, "a": {"_count": 1}}, "Wish": {"_count": 1, "we": {"_count": 1}}, "had": {"_count": 1, "opened": {"_count": 1}}, "opened": {"_count": 1, "again": {"_count": 1}}, "about": {"_count": 1, "Black": {"_count": 1}}, "and": {"_count": 5, "climbed": {"_count": 1}, "you": {"_count": 1}, "even": {"_count": 1}, "returned": {"_count": 1}, "with": {"_count": 1}}, "pub": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "packed": {"_count": 1}}, "once": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "whose": {"_count": 1, "large": {"_count": 1}}, "around": {"_count": 1, "midday": {"_count": 1}}, "at": {"_count": 1, "lunchtime": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "holding": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "rather": {"_count": 1}}, "after": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "heard": {"_count": 1}}, "the": {"_count": 1, "pub": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "burst": {"_count": 1, "open": {"_count": 1}}}, "oldfashioned": {"_count": 13, "one": {"_count": 1, "probably": {"_count": 1}}, "dark": {"_count": 1, "green": {"_count": 1}}, "tea": {"_count": 1, "shop": {"_count": 1}}, "Mum": {"_count": 1, "": {"_count": 1}}, "threeroom": {"_count": 1, "flat": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "gas": {"_count": 1, "lamps": {"_count": 1}}, "rule": {"_count": 1, "said": {"_count": 1}}, "rings": {"_count": 1, "": {"_count": 1}}, "red": {"_count": 1, "brick": {"_count": 1}}, "boiler": {"_count": 1, "but": {"_count": 1}}, "lamp": {"_count": 1, "stood": {"_count": 1}}, "robes": {"_count": 1, "that": {"_count": 1}}}, "midst": {"_count": 30, "of": {"_count": 18, "the": {"_count": 9}, "a": {"_count": 4}, "this": {"_count": 2}, "them": {"_count": 1}, "all": {"_count": 1}, "which": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "performed": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "announced": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "leaving": {"_count": 1, "Malfoy": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}}, "darted": {"_count": 33, "and": {"_count": 1, "dived": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "it": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "downward": {"_count": 1, "and": {"_count": 1}}, "past": {"_count": 3, "Parvati": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "forward": {"_count": 6, "": {"_count": 1}, "and": {"_count": 2}, "to": {"_count": 1}, "but": {"_count": 1}, "sidestepped": {"_count": 1}}, "toward": {"_count": 3, "Harrys": {"_count": 1}, "the": {"_count": 2}}, "up": {"_count": 2, "first": {"_count": 1}, "to": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "from": {"_count": 1}}, "together": {"_count": 1, "to": {"_count": 1}}, "onto": {"_count": 1, "George": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "terrified": {"_count": 1, "looks": {"_count": 1}}, "into": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "ahead": {"_count": 1, "to": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}}, "knack": {"_count": 9, "for": {"_count": 5, "spotting": {"_count": 1}, "attracting": {"_count": 1}, "choosing": {"_count": 1}, "embarrassing": {"_count": 1}, "guessing": {"_count": 1}}, "of": {"_count": 4, "choosing": {"_count": 1}, "getting": {"_count": 1}, "speaking": {"_count": 1}, "dressing": {"_count": 1}}}, "spotting": {"_count": 15, "things": {"_count": 1, "other": {"_count": 1}}, "Harry": {"_count": 4, "Ron": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "waved": {"_count": 1}}, "Seamus": {"_count": 1, "Finnigan": {"_count": 1}}, "Sirius": {"_count": 1, "as": {"_count": 1}}, "fingerprints": {"_count": 1, "on": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 4, "awestruck": {"_count": 1}, "look": {"_count": 1}, "large": {"_count": 1}, "lessthanhappy": {"_count": 1}}, "Harrys": {"_count": 1, "puzzled": {"_count": 1}}, "her": {"_count": 1, "somewhere": {"_count": 1}}}, "weaving": {"_count": 9, "about": {"_count": 1, "through": {"_count": 1}}, "drunkenly": {"_count": 1, "between": {"_count": 1}}, "in": {"_count": 2, "and": {"_count": 2}}, "slightly": {"_count": 1, "as": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "and": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "darting": {"_count": 1}}}, "rainbow": {"_count": 3, "feathers": {"_count": 1, "he": {"_count": 1}}, "arced": {"_count": 1, "suddenly": {"_count": 1}}, "faded": {"_count": 1, "and": {"_count": 1}}}, "damaged": {"_count": 10, "wing": {"_count": 1, "": {"_count": 1}}, "beyond": {"_count": 3, "repair": {"_count": 3}}, "her": {"_count": 1, "memory": {"_count": 1}}, "Professor": {"_count": 1, "Lockharts": {"_count": 1}}, "furniture": {"_count": 1, "stowed": {"_count": 1}}, "a": {"_count": 1, "connection": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "sister": {"_count": 1, "and": {"_count": 1}}}, "NOW": {"_count": 11, "": {"_count": 7, "!": {"_count": 7}}, "The": {"_count": 1, "next": {"_count": 1}}, "GET": {"_count": 1, "TO": {"_count": 1}}, "YOU": {"_count": 1, "DONT": {"_count": 1}}, "PLEASE": {"_count": 1, "": {"_count": 1}}}, "rocketed": {"_count": 2, "upward": {"_count": 2, "the": {"_count": 1}, "so": {"_count": 1}}}, "rammed": {"_count": 6, "it": {"_count": 2, "into": {"_count": 1}, "onto": {"_count": 1}}, "the": {"_count": 1, "doors": {"_count": 1}}, "Dolohov": {"_count": 1, "with": {"_count": 1}}, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "back": {"_count": 1, "onto": {"_count": 1}}}, "Ready": {"_count": 23, "": {"_count": 11, "?": {"_count": 11}}, "are": {"_count": 1, "you": {"_count": 1}}, "for": {"_count": 1, "another": {"_count": 1}}, "to": {"_count": 4, "resume": {"_count": 1}, "show": {"_count": 1}, "tell": {"_count": 1}, "go": {"_count": 1}}, "came": {"_count": 1, "Rons": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "Diddy": {"_count": 1, "": {"_count": 1}}, "fer": {"_count": 1, "the": {"_count": 1}}}, "chessboard": {"_count": 3, "behind": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Facing": {"_count": 1, "them": {"_count": 1, "way": {"_count": 1}}}, "knights": {"_count": 4, "horse": {"_count": 1, "": {"_count": 1}}, "exhaustion": {"_count": 1, "were": {"_count": 1}}, "rage": {"_count": 1, "seemed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "helmeted": {"_count": 1, "head": {"_count": 1, "to": {"_count": 1}}}, "offended": {"_count": 14, "or": {"_count": 1, "anything": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Slughorn": {"_count": 1}}, "hippogriffs": {"_count": 1, "are": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 2}}, "when": {"_count": 1, "he": {"_count": 1}}, "look": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "did": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "also": {"_count": 1}}}, "bishop": {"_count": 4, "and": {"_count": 2, "Hermione": {"_count": 1}, "a": {"_count": 1}}, "Hermione": {"_count": 1, "go": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "squares": {"_count": 11, "that": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 7, "coconut": {"_count": 1}, "light": {"_count": 1}, "reflected": {"_count": 1}, "pale": {"_count": 1}, "sky": {"_count": 1}, "colored": {"_count": 1}, "moonlight": {"_count": 1}}, "were": {"_count": 1, "pages": {"_count": 1}}}, "White": {"_count": 7, "always": {"_count": 1, "plays": {"_count": 1}}, "hot": {"_count": 1, "pain": {"_count": 1}}, "an": {"_count": 1, "shakin": {"_count": 1}}, "fog": {"_count": 2, "obscured": {"_count": 1}, "was": {"_count": 1}}, "smoke": {"_count": 1, "spiraled": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "plays": {"_count": 2, "first": {"_count": 1, "in": {"_count": 1}}, "tricks": {"_count": 1, "on": {"_count": 1}}}, "pawn": {"_count": 3, "had": {"_count": 1, "moved": {"_count": 1}}, "of": {"_count": 1, "Rons": {"_count": 1}}, "you": {"_count": 1, "idiot": {"_count": 1}}}, "diagonally": {"_count": 1, "four": {"_count": 1, "squares": {"_count": 1}}}, "queen": {"_count": 6, "smashed": {"_count": 1, "him": {"_count": 1}}, "turned": {"_count": 1, "her": {"_count": 1}}, "pounced": {"_count": 1, "": {"_count": 1}}, "dragged": {"_count": 1, "Ron": {"_count": 1}}, "forward": {"_count": 2, "so": {"_count": 1}, "toward": {"_count": 1}}}, "smashed": {"_count": 62, "him": {"_count": 2, "to": {"_count": 2}}, "window": {"_count": 5, "within": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 2}}, "into": {"_count": 8, "his": {"_count": 1}, "the": {"_count": 5}, "a": {"_count": 2}}, "over": {"_count": 1, "everything": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "the": {"_count": 5, "teapot": {"_count": 1}, "bowl": {"_count": 1}, "sliding": {"_count": 1}, "entire": {"_count": 1}, "cistern": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}, "a": {"_count": 3, "pudding": {"_count": 1}, "horrible": {"_count": 1}, "massive": {"_count": 1}}, "his": {"_count": 2, "second": {"_count": 1}, "way": {"_count": 1}}, "it": {"_count": 4, "to": {"_count": 2}, "": {"_count": 1}, "with": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "spattered": {"_count": 1}, "nobody": {"_count": 1}}, "headlong": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "an": {"_count": 1, "egg": {"_count": 1}}, "bowl": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "to": {"_count": 2, "rejoin": {"_count": 1}, "the": {"_count": 1}}, "lanterns": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "my": {"_count": 1, "prophecy": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "merely": {"_count": 1}}, "while": {"_count": 1, "Harry": {"_count": 1}}, "wasnt": {"_count": 1, "the": {"_count": 1}}, "ink": {"_count": 1, "bottle": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "shelves": {"_count": 1, "from": {"_count": 1}}, "photograph": {"_count": 1, "": {"_count": 1}}, "apart": {"_count": 1, "by": {"_count": 1}}}, "Leaves": {"_count": 1, "you": {"_count": 1, "free": {"_count": 1}}}, "mercy": {"_count": 16, "": {"_count": 10, ".": {"_count": 10}}, "to": {"_count": 1, "his": {"_count": 1}}, "Volkov": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 2, "five": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "limp": {"_count": 27, "black": {"_count": 1, "players": {"_count": 1}}, "owl": {"_count": 1, "from": {"_count": 1}}, "remainder": {"_count": 1, "of": {"_count": 1}}, "fingers": {"_count": 2, "through": {"_count": 1}, "and": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}, "rooster": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "ashenfaced": {"_count": 1}, "damp": {"_count": 1}, "still": {"_count": 1}}, "feet": {"_count": 1, "dangling": {"_count": 1}}, "forms": {"_count": 1, "of": {"_count": 1}}, "figure": {"_count": 1, "in": {"_count": 1}}, "hand": {"_count": 1, "onto": {"_count": 1}}, "toward": {"_count": 2, "Crabbe": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 1, "sight": {"_count": 1}}, "with": {"_count": 1, "shock": {"_count": 1}}, "body": {"_count": 2, "but": {"_count": 1}, "was": {"_count": 1}}, "form": {"_count": 3, "and": {"_count": 1}, "over": {"_count": 1}, "toppling": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "right": {"_count": 1, "hand": {"_count": 1}}, "yet": {"_count": 1, "the": {"_count": 1}}}, "Twice": {"_count": 15, "Ron": {"_count": 1, "only": {"_count": 1}}, "in": {"_count": 2, "your": {"_count": 1}, "my": {"_count": 1}}, "Harry": {"_count": 3, "came": {"_count": 1}, "nearly": {"_count": 1}, "had": {"_count": 1}}, "he": {"_count": 4, "found": {"_count": 1}, "took": {"_count": 1}, "looked": {"_count": 1}, "shut": {"_count": 1}}, "they": {"_count": 2, "stared": {"_count": 1}, "passed": {"_count": 1}}, "more": {"_count": 1, "Snape": {"_count": 1}}, "Dumbledore": {"_count": 1, "walked": {"_count": 1}}, "it": {"_count": 1, "failed": {"_count": 1}}}, "sacrifices": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "on": {"_count": 1, "Rons": {"_count": 1}}}, "checkmate": {"_count": 2, "the": {"_count": 1, "king": {"_count": 1}}, "of": {"_count": 1, "Rons": {"_count": 1}}}, "king": {"_count": 4, "Harry": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 1, "off": {"_count": 1}}, "of": {"_count": 2, "serpents": {"_count": 1}, "arachnids": {"_count": 1}}}, "alternative": {"_count": 13, "": {"_count": 3, ".": {"_count": 3}}, "I": {"_count": 1, "would": {"_count": 1}}, "was": {"_count": 2, "usually": {"_count": 1}, "a": {"_count": 1}}, "route": {"_count": 1, "to": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "story": {"_count": 1, "available": {"_count": 1}}, "Umbridge": {"_count": 1, "herself": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "instruction": {"_count": 1, "Crush": {"_count": 1}}, "is": {"_count": 1, "waiting": {"_count": 1}}}, "pounced": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "like": {"_count": 1, "this": {"_count": 1}}}, "Shaking": {"_count": 6, "Harry": {"_count": 2, "moved": {"_count": 1}, "let": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "his": {"_count": 2, "sodden": {"_count": 1}, "head": {"_count": 1}}, "with": {"_count": 1, "anger": {"_count": 1}}}, "spaces": {"_count": 3, "to": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}}, "crown": {"_count": 8, "and": {"_count": 1, "threw": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Potter": {"_count": 1, "but": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "bushy": {"_count": 1}}, "said": {"_count": 1, "Terry": {"_count": 1}}}, "charged": {"_count": 19, "through": {"_count": 1, "the": {"_count": 1}}, "forward": {"_count": 1, "looking": {"_count": 1}}, "atmosphere": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 3, "possession": {"_count": 1}, "a": {"_count": 1}, "trespass": {"_count": 1}}, "the": {"_count": 1, "dementor": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "after": {"_count": 1, "them": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 1, "dementors": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "at": {"_count": 1, "Voldemort": {"_count": 1}}}, "convince": {"_count": 18, "himself": {"_count": 6, "": {"_count": 1}, "that": {"_count": 3}, "Dumbledores": {"_count": 1}, "as": {"_count": 1}}, "certain": {"_count": 1, "teachers": {"_count": 1}}, "anybody": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 1, "that": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "as": {"_count": 1, "many": {"_count": 1}}, "people": {"_count": 1, "hes": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}, "anyone": {"_count": 1, "": {"_count": 1}}, "everyone": {"_count": 1, "youre": {"_count": 1}}, "him": {"_count": 1, "said": {"_count": 1}}, "ourselves": {"_count": 1, "Dumbledore": {"_count": 1}}, "Lily": {"_count": 1, "After": {"_count": 1}}}, "transfigured": {"_count": 5, "the": {"_count": 1, "chessmen": {"_count": 1}}, "or": {"_count": 1, "cursed": {"_count": 1}}, "himself": {"_count": 1, "but": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "Moody": {"_count": 1, "and": {"_count": 1}}}, "Eyes": {"_count": 7, "watering": {"_count": 2, "they": {"_count": 1}, "in": {"_count": 1}}, "still": {"_count": 2, "tightly": {"_count": 1}, "watering": {"_count": 1}}, "open": {"_count": 1, "again": {"_count": 1}}, "blurred": {"_count": 1, "with": {"_count": 1}}, "eye": {"_count": 1, "": {"_count": 1}}}, "watering": {"_count": 14, "they": {"_count": 1, "saw": {"_count": 1}}, "with": {"_count": 2, "pain": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "can": {"_count": 1, "a": {"_count": 1}}, "eyes": {"_count": 2, "he": {"_count": 1}, "for": {"_count": 1}}, "and": {"_count": 1, "head": {"_count": 1}}, "slightly": {"_count": 1, "hair": {"_count": 1}}, "in": {"_count": 1, "pain": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}}, "larger": {"_count": 48, "than": {"_count": 19, "the": {"_count": 5}, "Wood": {"_count": 1}, "ever": {"_count": 2}, "a": {"_count": 4}, "dinner": {"_count": 1}, "average": {"_count": 1}, "any": {"_count": 1}, "lifesize": {"_count": 1}, "he": {"_count": 1}, "Dumbledore": {"_count": 1}, "life": {"_count": 1}}, "branches": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "moment": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "all": {"_count": 2, "the": {"_count": 2}}, "even": {"_count": 1, "than": {"_count": 1}}, "moving": {"_count": 1, "ahead": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 6, "stronger": {"_count": 1}, "larger": {"_count": 1}, "clearer": {"_count": 1}, "rounder": {"_count": 1}, "brighter": {"_count": 1}, "more": {"_count": 1}}, "oddly": {"_count": 1, "distorted": {"_count": 1}}, "toad": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "pile": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "Catherine": {"_count": 1, "wheels": {"_count": 1}}, "in": {"_count": 1, "proportion": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 1, "two": {"_count": 1}}, "by": {"_count": 1, "far": {"_count": 1}}}, "tackled": {"_count": 1, "out": {"_count": 1, "cold": {"_count": 1}}}, "differently": {"_count": 10, "shaped": {"_count": 1, "bottles": {"_count": 1}}, "once": {"_count": 1, "youve": {"_count": 1}}, "colored": {"_count": 2, "uniforms": {"_count": 1}, "jewel": {"_count": 1}}, "somehow": {"_count": 1, "or": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "to": {"_count": 1, "each": {"_count": 1}}}, "threshold": {"_count": 33, "and": {"_count": 3, "immediately": {"_count": 1}, "closed": {"_count": 2}}, "into": {"_count": 3, "the": {"_count": 3}}, "stood": {"_count": 1, "Aunt": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "of": {"_count": 2, "this": {"_count": 1}, "his": {"_count": 1}}, "then": {"_count": 1, "froze": {"_count": 1}}, "while": {"_count": 1, "avoiding": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "to": {"_count": 1, "walk": {"_count": 1}}, "before": {"_count": 1, "slamming": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "holding": {"_count": 1, "an": {"_count": 1}}, "several": {"_count": 1, "bottles": {"_count": 1}}, "together": {"_count": 1, "gazing": {"_count": 1}}, "as": {"_count": 1, "James": {"_count": 1}}, "when": {"_count": 1, "Xenophilius": {"_count": 1}}, "The": {"_count": 1, "wizards": {"_count": 1}}, "brandishing": {"_count": 1, "his": {"_count": 1}}}, "instant": {"_count": 36, "black": {"_count": 1, "flames": {"_count": 1}}, "the": {"_count": 2, "green": {"_count": 1}, "sound": {"_count": 1}}, "Harry": {"_count": 4, "had": {"_count": 1}, "thought": {"_count": 1}, "knelt": {"_count": 1}, "knew": {"_count": 1}}, "he": {"_count": 5, "had": {"_count": 2}, "registered": {"_count": 1}, "asks": {"_count": 1}, "cared": {"_count": 1}}, "uproar": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "celebrity": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "turned": {"_count": 1, "back": {"_count": 1}}, "to": {"_count": 2, "give": {"_count": 1}, "be": {"_count": 1}}, "that": {"_count": 5, "this": {"_count": 1}, "he": {"_count": 2}, "there": {"_count": 1}, "Voldemort": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "but": {"_count": 1, "just": {"_count": 1}}, "from": {"_count": 1, "sinking": {"_count": 1}}, "dismissal": {"_count": 1, "from": {"_count": 1}}, "bestseller": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "arrived": {"_count": 1}}, "could": {"_count": 1, "he": {"_count": 1}}}, "onward": {"_count": 16, "": {"_count": 5, ".": {"_count": 5}}, "neither": {"_count": 1, "is": {"_count": 1}}, "the": {"_count": 1, "Gryffindors": {"_count": 1}}, "and": {"_count": 2, "then": {"_count": 2}}, "in": {"_count": 1, "a": {"_count": 1}}, "speeding": {"_count": 1, "them": {"_count": 1}}, "a": {"_count": 2, "hand": {"_count": 1}, "broad": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "or": {"_count": 1, "that": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "Danger": {"_count": 1, "lies": {"_count": 1, "before": {"_count": 1}}}, "safety": {"_count": 39, "lies": {"_count": 1, "behind": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 2}, "Hogsmeade": {"_count": 1}, "those": {"_count": 1}, "students": {"_count": 1}, "my": {"_count": 1}, "their": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 13, "!": {"_count": 2}, ".": {"_count": 11}}, "measures": {"_count": 1, "imposed": {"_count": 1}}, "than": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "seemed": {"_count": 1}}, "measure": {"_count": 1, "": {"_count": 1}}, "precautions": {"_count": 1, "wouldnt": {"_count": 1}}, "not": {"_count": 1, "merely": {"_count": 1}}, "was": {"_count": 2, "in": {"_count": 2}}, "nobody": {"_count": 1, "bothers": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "no": {"_count": 1, "matter": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 2, "rechristen": {"_count": 1}, "protect": {"_count": 1}}, "on": {"_count": 1, "Saturday": {"_count": 1}}, "lay": {"_count": 1, "in": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}}, "transport": {"_count": 11, "the": {"_count": 1, "drinker": {"_count": 1}}, "of": {"_count": 1, "rage": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "wizards": {"_count": 1, "from": {"_count": 1}}, "people": {"_count": 1, "like": {"_count": 1}}, "whatsoever": {"_count": 1, "": {"_count": 1}}, "brooms": {"_count": 1, "Ive": {"_count": 1}}, "home": {"_count": 1, "afterward": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}}, "nettle": {"_count": 2, "wine": {"_count": 1, "Three": {"_count": 1}}, "wines": {"_count": 1, "left": {"_count": 1}}}, "killers": {"_count": 2, "waiting": {"_count": 1, "hidden": {"_count": 1}}, "just": {"_count": 1, "for": {"_count": 1}}}, "Choose": {"_count": 3, "unless": {"_count": 1, "you": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "what": {"_count": 1, "to": {"_count": 1}}}, "forevermore": {"_count": 3, "To": {"_count": 1, "help": {"_count": 1}}, "not": {"_count": 1, "knowing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "slyly": {"_count": 7, "the": {"_count": 1, "poison": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 1, "Myrtles": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "but": {"_count": 1, "Ive": {"_count": 1}}}, "poison": {"_count": 34, "tries": {"_count": 1, "to": {"_count": 1}}, "two": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "tired": {"_count": 1, "of": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "Lupin": {"_count": 1, "he": {"_count": 1}}, "us": {"_count": 1, "all": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "unattended": {"_count": 1}}, "antidotes": {"_count": 1, "during": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "in": {"_count": 2, "that": {"_count": 2}}, "were": {"_count": 1, "pumping": {"_count": 1}}, "them": {"_count": 1, "then": {"_count": 1}}, "gas": {"_count": 1, "so": {"_count": 1}}, "Potter": {"_count": 1, "and": {"_count": 1}}, "within": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "assured": {"_count": 1}}, "into": {"_count": 1, "ten": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "mustnt": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "nor": {"_count": 1, "the": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}, "it": {"_count": 1, "for": {"_count": 1}}}, "wines": {"_count": 1, "left": {"_count": 1, "side": {"_count": 1}}}, "Second": {"_count": 11, "different": {"_count": 1, "are": {"_count": 1}}, "to": {"_count": 1, "Miss": {"_count": 1}}, "one": {"_count": 1, "killed": {"_count": 1}}, "Head": {"_count": 1, "Boy": {"_count": 1}}, "Class": {"_count": 1, "Id": {"_count": 1}}, "signal": {"_count": 1, "lets": {"_count": 1}}, "year": {"_count": 1, "Ron": {"_count": 1}}, "Floor": {"_count": 1, "Contagious": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "problem": {"_count": 1, "Youre": {"_count": 1}}, "best": {"_count": 1, "always": {"_count": 1}}}, "Third": {"_count": 15, "as": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 1, "Mr": {"_count": 1}}, "time": {"_count": 1, "this": {"_count": 1}}, "Class": {"_count": 2, "Honorary": {"_count": 2}}, "years": {"_count": 2, "are": {"_count": 1}, "at": {"_count": 1}}, "regurgitating": {"_count": 1, "public": {"_count": 1}}, "year": {"_count": 1, "said": {"_count": 1}}, "Floor": {"_count": 1, "Rashes": {"_count": 1}}, "Law": {"_count": 4, "": {"_count": 1}, "as": {"_count": 1}, "was": {"_count": 1}, "stated": {"_count": 1}}, "Hallow": {"_count": 1, "is": {"_count": 1}}}, "dwarf": {"_count": 7, "nor": {"_count": 1, "giant": {"_count": 1}}, "elbowing": {"_count": 1, "people": {"_count": 1}}, "however": {"_count": 1, "cut": {"_count": 1}}, "grabbing": {"_count": 1, "hold": {"_count": 1}}, "started": {"_count": 1, "singing": {"_count": 1}}, "seized": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 1, "Percy": {"_count": 1}}}, "holds": {"_count": 6, "death": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 1, "sort": {"_count": 1}}, "memories": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "true": {"_count": 1, "for": {"_count": 1}}}, "Fourth": {"_count": 5, "the": {"_count": 1, "second": {"_count": 1}}, "door": {"_count": 1, "to": {"_count": 1}}, "prefect": {"_count": 1, "in": {"_count": 1}}, "Floor": {"_count": 1, "Unliftable": {"_count": 1}}, "floor": {"_count": 1, "said": {"_count": 1}}}, "logic": {"_count": 3, "a": {"_count": 1, "puzzle": {"_count": 1}}, "theyd": {"_count": 1, "be": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "puzzle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "swallow": {"_count": 10, "": {"_count": 2, ".": {"_count": 2}}, "him": {"_count": 1, "whole": {"_count": 1}}, "he": {"_count": 1, "probably": {"_count": 1}}, "the": {"_count": 2, "purple": {"_count": 2}}, "and": {"_count": 1, "said": {"_count": 1}}, "his": {"_count": 1, "food": {"_count": 1}}, "Stinksap": {"_count": 1, "she": {"_count": 1}}, "a": {"_count": 1, "particularly": {"_count": 1}}}, "Grab": {"_count": 2, "brooms": {"_count": 1, "from": {"_count": 1}}, "hold": {"_count": 1, "and": {"_count": 1}}}, "flyingkey": {"_count": 1, "room": {"_count": 1, "theyll": {"_count": 1}}}, "Books": {"_count": 8, "": {"_count": 1, "!": {"_count": 1}}, "were": {"_count": 1, "stacked": {"_count": 1}}, "can": {"_count": 2, "be": {"_count": 1}, "take": {"_count": 1}}, "cage": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "seized": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "clothes": {"_count": 1, "telescope": {"_count": 1}}}, "cleverness": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "friendship": {"_count": 22, "and": {"_count": 4, "bravery": {"_count": 1}, "the": {"_count": 1}, "trust": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 5, "the": {"_count": 2}, "Ron": {"_count": 1}, "Bathilda": {"_count": 1}, "none": {"_count": 1}}, "now": {"_count": 1, "before": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "Ron": {"_count": 1}}, "survive": {"_count": 1, "it": {"_count": 1}}, "those": {"_count": 1, "who": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "later": {"_count": 1}}, "between": {"_count": 1, "wizards": {"_count": 1}}}, "bravery": {"_count": 12, "and": {"_count": 2, "oh": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "to": {"_count": 1, "stand": {"_count": 1}}, "beyond": {"_count": 2, "anything": {"_count": 2}}, "equal": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "few": {"_count": 1}}, "said": {"_count": 1, "Firenze": {"_count": 1}}}, "carefull": {"_count": 1, "You": {"_count": 1, "drink": {"_count": 1}}}, "Positive": {"_count": 3, "said": {"_count": 3, "Hermione": {"_count": 2}, "Harry": {"_count": 1}}}, "wears": {"_count": 8, "off": {"_count": 2, "": {"_count": 1}, "after": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "them": {"_count": 1, "Ron": {"_count": 1}}, "gloves": {"_count": 1, "": {"_count": 1}}, "navy": {"_count": 1, "blue": {"_count": 1}}, "his": {"_count": 1, "chains": {"_count": 1}}}, "GO": {"_count": 11, "": {"_count": 7, "!": {"_count": 7}}, "WANDERIN": {"_count": 1, "AROUND": {"_count": 1}}, "GRYFFINDOR": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "wherE": {"_count": 1}}, "AFTER": {"_count": 1, "MY": {"_count": 1}}}, "flooding": {"_count": 22, "his": {"_count": 1, "body": {"_count": 1}}, "the": {"_count": 3, "place": {"_count": 1}, "floor": {"_count": 1}, "underground": {"_count": 1}}, "down": {"_count": 1, "her": {"_count": 1}}, "silently": {"_count": 1, "down": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "him": {"_count": 1, "dives": {"_count": 1}}, "through": {"_count": 3, "him": {"_count": 2}, "his": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 5, "of": {"_count": 4}, "onto": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "into": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "cold": {"_count": 1}}}, "braced": {"_count": 8, "himself": {"_count": 4, "saw": {"_count": 1}, "for": {"_count": 1}, "Can": {"_count": 1}, "to": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 1, "hear": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}}, "MAN": {"_count": 2, "WITH": {"_count": 1, "TWO": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "WITH": {"_count": 6, "TWO": {"_count": 1, "FACES": {"_count": 1}}, "TAKING": {"_count": 1, "A": {"_count": 1}}, "THE": {"_count": 1, "COMMENTARY": {"_count": 1}}, "POTTER": {"_count": 1, "": {"_count": 1}}, "IT": {"_count": 1, "POTTER": {"_count": 1}}, "DOLORES": {"_count": 1, "Dinner": {"_count": 1}}}, "TWO": {"_count": 2, "FACES": {"_count": 1, "It": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "FACES": {"_count": 1, "It": {"_count": 1, "was": {"_count": 1}}}, "treble": {"_count": 1, "either": {"_count": 1, "but": {"_count": 1}}}, "type": {"_count": 11, "doesnt": {"_count": 1, "he": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "whod": {"_count": 1, "go": {"_count": 1}}, "to": {"_count": 2, "elope": {"_count": 1}, "read": {"_count": 1}}, "of": {"_count": 1, "Skiving": {"_count": 1}}, "the": {"_count": 1, "Death": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "only": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "hell": {"_count": 1}}}, "overgrown": {"_count": 19, "bat": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "garden": {"_count": 1, "": {"_count": 1}}, "schoolboy": {"_count": 1, "": {"_count": 1}}, "bird": {"_count": 1, "of": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}, "graveyard": {"_count": 1, "the": {"_count": 1}}, "grave": {"_count": 1, "as": {"_count": 1}}, "moron": {"_count": 1, "does": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "rubbish": {"_count": 1, "strewn": {"_count": 1}}, "snowcovered": {"_count": 1, "garden": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "baby": {"_count": 1, "": {"_count": 1}}, "plants": {"_count": 1, "rubbing": {"_count": 1}}, "state": {"_count": 1, "thought": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}}, "suspect": {"_count": 14, "pppoor": {"_count": 1, "st": {"_count": 1}}, "him": {"_count": 1, "this": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "broken": {"_count": 1, "ribs": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "giant": {"_count": 1, "involvement": {"_count": 1}}, "that": {"_count": 2, "until": {"_count": 1}, "Ron": {"_count": 1}}, "about": {"_count": 1, "Lord": {"_count": 1}}, "Hokey": {"_count": 1, "because": {"_count": 1}}, "them": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "pppoor": {"_count": 1, "st": {"_count": 1, "stuttering": {"_count": 1}}}, "st": {"_count": 1, "stuttering": {"_count": 1, "PProfessor": {"_count": 1}}}, "PProfessor": {"_count": 2, "Quirrell": {"_count": 1, "": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}}, "unpopular": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "there": {"_count": 1, "and": {"_count": 1}}}, "Ropes": {"_count": 2, "sprang": {"_count": 1, "out": {"_count": 1}}, "flew": {"_count": 1, "out": {"_count": 1}}}, "nosy": {"_count": 6, "to": {"_count": 1, "live": {"_count": 1}}, "git": {"_count": 1, "like": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}}, "Scurrying": {"_count": 2, "around": {"_count": 1, "the": {"_count": 1}}, "echoing": {"_count": 1, "footsteps": {"_count": 1}}}, "Certainly": {"_count": 37, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "not": {"_count": 4, "said": {"_count": 1}, "": {"_count": 3}}, "said": {"_count": 10, "Dumbledore": {"_count": 3}, "Fudge": {"_count": 2}, "Nearly": {"_count": 1}, "James": {"_count": 1}, "Snape": {"_count": 2}, "Voldemort": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "certainly": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 4, "knew": {"_count": 2}, "am": {"_count": 1}, "believe": {"_count": 1}}, "nothing": {"_count": 1, "that": {"_count": 1}}, "good": {"_count": 1, "lady": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "Narcissa": {"_count": 1, "I": {"_count": 1}}, "when": {"_count": 1, "Slughorn": {"_count": 1}}, "her": {"_count": 1, "appearance": {"_count": 1}}, "they": {"_count": 1, "work": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 2}}, "there": {"_count": 1, "are": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "we": {"_count": 2, "could": {"_count": 1}, "know": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "Dumbledore": {"_count": 1, "returned": {"_count": 1}}}, "Trust": {"_count": 8, "Dumbledore": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 4, "said": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}, "he": {"_count": 1}}, "Malfoy": {"_count": 2, "to": {"_count": 2}}, "him": {"_count": 1, "said": {"_count": 1}}}, "concentrating": {"_count": 28, "on": {"_count": 14, "the": {"_count": 5}, "anything": {"_count": 1}, "her": {"_count": 2}, "them": {"_count": 1}, "Bellatrix": {"_count": 1}, "handing": {"_count": 1}, "is": {"_count": 1}, "things": {"_count": 1}, "warning": {"_count": 1}}, "with": {"_count": 3, "all": {"_count": 3}}, "while": {"_count": 1, "enticing": {"_count": 1}}, "properly": {"_count": 1, "Wonder": {"_count": 1}}, "really": {"_count": 1, "really": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "bullfrog": {"_count": 1}}, "hard": {"_count": 2, "on": {"_count": 2}}, "as": {"_count": 1, "hard": {"_count": 1}}, "upon": {"_count": 1, "Mrs": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}}, "idly": {"_count": 10, "walking": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "around": {"_count": 1, "above": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "examining": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}}, "Tried": {"_count": 1, "to": {"_count": 1, "frighten": {"_count": 1}}}, "frighten": {"_count": 12, "me": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 2, "gullible": {"_count": 1}, "person": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "anyone": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 2, "too": {"_count": 1}, "with": {"_count": 1}}, "us": {"_count": 1, "most": {"_count": 1}}, "two": {"_count": 1, "people": {"_count": 1}}, "him": {"_count": 1, "now": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "punish": {"_count": 1}}}, "presenting": {"_count": 2, "it": {"_count": 1, "to": {"_count": 1}}, "itself": {"_count": 1, "to": {"_count": 1}}}, "master": {"_count": 115, "": {"_count": 26, ".": {"_count": 21}, "!": {"_count": 3}, "?": {"_count": 2}}, "the": {"_count": 3, "mail": {"_count": 1}, "impulse": {"_count": 1}, "wand": {"_count": 1}}, "at": {"_count": 4, "this": {"_count": 1}, "work": {"_count": 1}, "Hogwarts": {"_count": 1}, "last": {"_count": 1}}, "when": {"_count": 2, "Im": {"_count": 1}, "he": {"_count": 1}}, "was": {"_count": 3, "staring": {"_count": 1}, "bobbing": {"_count": 1}, "Disarmed": {"_count": 1}}, "had": {"_count": 2, "fallen": {"_count": 1}, "found": {"_count": 1}}, "of": {"_count": 18, "this": {"_count": 1}, "chaos": {"_count": 1}, "Death": {"_count": 6}, "it": {"_count": 1}, "the": {"_count": 6}, "any": {"_count": 1}, "death": {"_count": 2}}, "himself": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "to": {"_count": 1}, "who": {"_count": 1}}, "sends": {"_count": 1, "me": {"_count": 1}}, "wants": {"_count": 1, "me": {"_count": 1}}, "Snape": {"_count": 1, "Harrys": {"_count": 1}}, "miss": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "liking": {"_count": 1}}, "is": {"_count": 1, "telling": {"_count": 1}}, "poor": {"_count": 1, "master": {"_count": 1}}, "no": {"_count": 1, "Winky": {"_count": 1}}, "sir": {"_count": 1, "and": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "Father": {"_count": 1}}, "to": {"_count": 2, "whom": {"_count": 1}, "a": {"_count": 1}}, "came": {"_count": 1, "for": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}, "conceived": {"_count": 1, "a": {"_count": 1}}, "forced": {"_count": 1, "him": {"_count": 1}}, "found": {"_count": 1, "me": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "decided": {"_count": 1, "it": {"_count": 1}}, "guessed": {"_count": 1, "that": {"_count": 1}}, "sent": {"_count": 1, "me": {"_count": 1}}, "needed": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 2, "will": {"_count": 1}, "to": {"_count": 1}}, "Theyre": {"_count": 1, "freckles": {"_count": 1}}, "Occlumency": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "is": {"_count": 1}}, "for": {"_count": 1, "months": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "believed": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "reverted": {"_count": 1, "to": {"_count": 1}}, "oh": {"_count": 1, "yes": {"_count": 1}}, "yes": {"_count": 1, "Dobby": {"_count": 1}}, "always": {"_count": 1, "left": {"_count": 1}}, "seemed": {"_count": 1, "unable": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "most": {"_count": 1, "deeply": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "Professor": {"_count": 1, "Im": {"_count": 1}}, "Potter": {"_count": 1, "at": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "she": {"_count": 1, "dueled": {"_count": 1}}, "capering": {"_count": 1, "as": {"_count": 1}}, "before": {"_count": 1, "Dumbledore": {"_count": 1}}, "removed": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "will": {"_count": 1, "never": {"_count": 1}}}, "binding": {"_count": 16, "him": {"_count": 7, "but": {"_count": 1}, "there": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}, "tightly": {"_count": 1}, "": {"_count": 1}, "backtoback": {"_count": 1}}, "Harry": {"_count": 1, "fell": {"_count": 1}}, "it": {"_count": 1, "the": {"_count": 1}}, "magical": {"_count": 1, "contract": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "small": {"_count": 1}}, "was": {"_count": 1, "stained": {"_count": 1}}, "her": {"_count": 1, "arms": {"_count": 1}}, "them": {"_count": 1, "tightly": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "loathed": {"_count": 16, "each": {"_count": 2, "other": {"_count": 2}}, "by": {"_count": 1, "every": {"_count": 1}}, "Snape": {"_count": 2, "that": {"_count": 1}, "from": {"_count": 1}}, "him": {"_count": 1, "just": {"_count": 1}}, "Harrys": {"_count": 1, "father": {"_count": 1}}, "everything": {"_count": 1, "about": {"_count": 1}}, "Umbridge": {"_count": 1, "so": {"_count": 1}}, "being": {"_count": 3, "a": {"_count": 1}, "outperformed": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "pair": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "James": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}}, "spasm": {"_count": 4, "of": {"_count": 2, "fear": {"_count": 1}, "horror": {"_count": 1}}, "crossed": {"_count": 1, "Uncle": {"_count": 1}}, "in": {"_count": 1, "Hermiones": {"_count": 1}}}, "masters": {"_count": 32, "instructions": {"_count": 1, "he": {"_count": 1}}, "permission": {"_count": 1, "": {"_count": 1}}, "dinner": {"_count": 1, "burn": {"_count": 1}}, "present": {"_count": 1, "him": {"_count": 1}}, "defeat": {"_count": 1, "unhinged": {"_count": 1}}, "name": {"_count": 1, "": {"_count": 1}}, "tent": {"_count": 1, "Harry": {"_count": 1}}, "reputation": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 3, "were": {"_count": 1}, "fixed": {"_count": 1}, "no": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 3}, "?": {"_count": 1}}, "anymore": {"_count": 1, "Winky": {"_count": 1}}, "secrets": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "hie": {"_count": 1, "private": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "private": {"_count": 1, "business": {"_count": 1}}, "plan": {"_count": 1, "worked": {"_count": 1}}, "study": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 1, "at": {"_count": 1}}, "soul": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 1, "death": {"_count": 1}}, "tomb": {"_count": 1, "": {"_count": 1}}, "wishes": {"_count": 1, "": {"_count": 1}}}, "instructions": {"_count": 61, "he": {"_count": 4, "is": {"_count": 1}, "waved": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}}, "to": {"_count": 9, "waft": {"_count": 1}, "him": {"_count": 1}, "get": {"_count": 1}, "the": {"_count": 1}, "ours": {"_count": 1}, "Ron": {"_count": 1}, "a": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}}, "were": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "by": {"_count": 1}}, "for": {"_count": 5, "tomorrows": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 1}, "defensive": {"_count": 1}, "a": {"_count": 1}}, "thoroughly": {"_count": 1, "bewildered": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "havent": {"_count": 1, "we": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "I": {"_count": 1, "gave": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "peculiar": {"_count": 1, "they": {"_count": 1}}, "Cornelius": {"_count": 1, "Dumbledore": {"_count": 1}}, "from": {"_count": 2, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "allowing": {"_count": 1}}, "fill": {"_count": 1, "one": {"_count": 1}}, "on": {"_count": 4, "the": {"_count": 1}, "how": {"_count": 3}}, "but": {"_count": 3, "not": {"_count": 1}, "becoming": {"_count": 1}, "which": {"_count": 1}}, "had": {"_count": 1, "told": {"_count": 1}}, "who": {"_count": 1, "knows": {"_count": 1}}, "wherever": {"_count": 1, "they": {"_count": 1}}, "once": {"_count": 1, "or": {"_count": 1}}, "and": {"_count": 1, "admonitions": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Find": {"_count": 1, "and": {"_count": 1}}, "Arent": {"_count": 1, "you": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "traveled": {"_count": 33, "around": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 3, "Floo": {"_count": 2}, "Knight": {"_count": 1}}, "miles": {"_count": 2, "by": {"_count": 1}, "perhaps": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 1}, "black": {"_count": 1}, "Harry": {"_count": 1}}, "far": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "fast": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 2, "country": {"_count": 1}, "more": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "for": {"_count": 1}, "mere": {"_count": 1}}, "farther": {"_count": 1, "and": {"_count": 1}}, "exceptionally": {"_count": 1, "fast": {"_count": 1}}, "over": {"_count": 2, "Harry": {"_count": 1}, "Hagrids": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "by": {"_count": 1}}, "widely": {"_count": 1, "visiting": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "into": {"_count": 1, "London": {"_count": 1}}, "abroad": {"_count": 1, "for": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "here": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "down": {"_count": 1, "through": {"_count": 1}}}, "Since": {"_count": 14, "then": {"_count": 1, "I": {"_count": 1}}, "the": {"_count": 2, "disastrous": {"_count": 1}, "arrival": {"_count": 1}}, "I": {"_count": 1, "did": {"_count": 1}}, "when": {"_count": 6, "have": {"_count": 3}, "did": {"_count": 2}, "had": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "they": {"_count": 1, "have": {"_count": 1}}, "Dumbledore": {"_count": 1, "died": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "served": {"_count": 18, "him": {"_count": 4, "faithfully": {"_count": 1}, "right": {"_count": 1}, "best": {"_count": 1}, "most": {"_count": 1}}, "if": {"_count": 1, "hed": {"_count": 1}}, "the": {"_count": 1, "dual": {"_count": 1}}, "HeWhoMust": {"_count": 1, "NotBeNamed": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "her": {"_count": 1, "purpose": {"_count": 1}}, "twelve": {"_count": 1, "years": {"_count": 1}}, "as": {"_count": 2, "Dudleys": {"_count": 1}, "kitchen": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "apple": {"_count": 1, "tart": {"_count": 1}}, "them": {"_count": 2, "willingly": {"_count": 1}, "all": {"_count": 1}}, "coffee": {"_count": 1, "and": {"_count": 1}}}, "faithfully": {"_count": 2, "although": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "mistakes": {"_count": 14, "easily": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "but": {"_count": 1, "there": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "tend": {"_count": 1, "to": {"_count": 1}}, "Draco": {"_count": 1, "because": {"_count": 1}}, "I": {"_count": 1, "wouldve": {"_count": 1}}, "argued": {"_count": 1, "Harry": {"_count": 1}}, "where": {"_count": 1, "Harry": {"_count": 1}}, "Riddle": {"_count": 1, "do": {"_count": 1}}}, "displeased": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "if": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "trailed": {"_count": 10, "away": {"_count": 5, "": {"_count": 1}, "hopefully": {"_count": 1}, "delicately": {"_count": 1}, "into": {"_count": 1}, "she": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "by": {"_count": 1, "Lunas": {"_count": 1}}, "from": {"_count": 1, "both": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "tearfully": {"_count": 1, "behind": {"_count": 1}}}, "self": {"_count": 23, "finding": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "was": {"_count": 1, "putting": {"_count": 1}}, "in": {"_count": 1, "its": {"_count": 1}}, "control": {"_count": 1, "not": {"_count": 1}}, "spelling": {"_count": 1, "wands": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "anymore": {"_count": 1, "no": {"_count": 1}}, "decorated": {"_count": 1, "for": {"_count": 1}}, "flattering": {"_count": 1, "nonsense": {"_count": 1}}, "restraint": {"_count": 1, "was": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "satisfied": {"_count": 1, "way": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "invented": {"_count": 1, "spells": {"_count": 1}}, "a": {"_count": 1, "short": {"_count": 1}}, "hidden": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "than": {"_count": 1, "she": {"_count": 1}}}, "Master": {"_count": 101, "": {"_count": 15, "!": {"_count": 2}, ".": {"_count": 13}}, "you": {"_count": 2, "are": {"_count": 1}, "should": {"_count": 1}}, "I": {"_count": 3, "cannot": {"_count": 1}, "crave": {"_count": 1}, "am": {"_count": 1}}, "Malfoy": {"_count": 3, "too": {"_count": 1}, "moves": {"_count": 1}, "eats": {"_count": 1}}, "has": {"_count": 4, "given": {"_count": 1}, "gone": {"_count": 1}, "been": {"_count": 1}, "not": {"_count": 1}}, "gave": {"_count": 1, "it": {"_count": 1}}, "threw": {"_count": 1, "it": {"_count": 1}}, "master": {"_count": 1, "wants": {"_count": 1}}, "is": {"_count": 5, "stopped": {"_count": 1}, "needing": {"_count": 1}, "hie": {"_count": 1}, "not": {"_count": 1}, "so": {"_count": 1}}, "hie": {"_count": 1, "ill": {"_count": 1}}, "cannot": {"_count": 1, "hie": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "forgive": {"_count": 1, "me": {"_count": 1}}, "moaned": {"_count": 1, "Wormtail": {"_count": 1}}, "we": {"_count": 1, "crave": {"_count": 1}}, "Barty": {"_count": 8, "Master": {"_count": 3}, "what": {"_count": 2}, "say": {"_count": 1}, "sobbed": {"_count": 1}, "you": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "is": {"_count": 1}}, "always": {"_count": 1, "liked": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "says": {"_count": 1, "then": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "must": {"_count": 1, "do": {"_count": 1}}, "wishes": {"_count": 1, "before": {"_count": 1}}, "will": {"_count": 2, "not": {"_count": 2}}, "yourself": {"_count": 1, "": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 2, "Mystery": {"_count": 1}, "death": {"_count": 1}}, "called": {"_count": 1, "me": {"_count": 1}}, "wants": {"_count": 3, "said": {"_count": 1}, "me": {"_count": 2}}, "thinks": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 4, "he": {"_count": 1}, "Kreacher": {"_count": 2}, "Xenophilius": {"_count": 1}}, "croaked": {"_count": 2, "Kreacher": {"_count": 1}, "the": {"_count": 1}}, "Reguluss": {"_count": 2, "locket": {"_count": 2}}, "Sirius": {"_count": 1, "ran": {"_count": 1}}, "Regulus": {"_count": 18, "had": {"_count": 4}, "joined": {"_count": 1}, "came": {"_count": 2}, "always": {"_count": 1}, "said": {"_count": 1}, "an": {"_count": 1}, "to": {"_count": 1}, "told": {"_count": 3}, "was": {"_count": 2}, "": {"_count": 1}, "started": {"_count": 1}}, "Harry": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "prefer": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "Moron": {"_count": 1}}, "the": {"_count": 1, "wand": {"_count": 1}}, "defender": {"_count": 1, "of": {"_count": 1}}}, "scaredlooking": {"_count": 4, "at": {"_count": 1, "first": {"_count": 1}}, "first": {"_count": 2, "years": {"_count": 2}}, "reflection": {"_count": 1, "in": {"_count": 1}}}, "Somehow": {"_count": 13, "incredibly": {"_count": 1, "hed": {"_count": 1}}, "Harry": {"_count": 4, "found": {"_count": 2}, "knew": {"_count": 1}, "connected": {"_count": 1}}, "Oliver": {"_count": 1, "Wood": {"_count": 1}}, "the": {"_count": 3, "knowledge": {"_count": 1}, "game": {"_count": 1}, "two": {"_count": 1}}, "it": {"_count": 1, "reminded": {"_count": 1}}, "her": {"_count": 2, "panic": {"_count": 2}}, "he": {"_count": 1, "walled": {"_count": 1}}}, "incredibly": {"_count": 12, "hed": {"_count": 1, "gotten": {"_count": 1}}, "freckly": {"_count": 1, "Hermione": {"_count": 1}}, "was": {"_count": 1, "sitting": {"_count": 1}}, "miraculously": {"_count": 1, "it": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "smiled": {"_count": 1, "": {"_count": 1}}, "fond": {"_count": 1, "of": {"_count": 1}}, "rare": {"_count": 2, "\u25a1": {"_count": 1}, "yet": {"_count": 1}}, "vulnerable": {"_count": 1, "": {"_count": 1}}, "unlikely": {"_count": 1, "that": {"_count": 1}}, "dangerous": {"_count": 1, "I": {"_count": 1}}}, "Dare": {"_count": 1, "he": {"_count": 1, "make": {"_count": 1}}}, "rooting": {"_count": 1, "him": {"_count": 1, "to": {"_count": 1}}}, "muscle": {"_count": 12, "": {"_count": 3, ".": {"_count": 3}}, "going": {"_count": 1, "in": {"_count": 1}}, "twitched": {"_count": 2, "unpleasantly": {"_count": 1}, "in": {"_count": 1}}, "that": {"_count": 1, "still": {"_count": 1}}, "was": {"_count": 2, "twitching": {"_count": 1}, "jumping": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "Hit": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "paced": {"_count": 1}}}, "Petrified": {"_count": 14, "he": {"_count": 1, "watched": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 3}}, "by": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "nearly": {"_count": 1}, "of": {"_count": 1}}, "its": {"_count": 1, "victims": {"_count": 1}}, "peoples": {"_count": 1, "mouths": {"_count": 1}}, "person": {"_count": 1, "she": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "slits": {"_count": 20, "for": {"_count": 6, "nostrils": {"_count": 3}, "pupils": {"_count": 3}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 2, "fury": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 1}, "a": {"_count": 1}, "hoods": {"_count": 1}, "her": {"_count": 1}}, "just": {"_count": 1, "below": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "call": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}}, "Mere": {"_count": 1, "shadow": {"_count": 1, "and": {"_count": 1}}}, "vapor": {"_count": 13, "": {"_count": 2, ".": {"_count": 2}}, "hanging": {"_count": 1, "in": {"_count": 1}}, "shot": {"_count": 1, "from": {"_count": 1}}, "or": {"_count": 1, "smoke": {"_count": 1}}, "rising": {"_count": 1, "from": {"_count": 1}}, "should": {"_count": 1, "now": {"_count": 1}}, "and": {"_count": 1, "as": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "rather": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "was": {"_count": 1, "dense": {"_count": 1}}}, "anothers": {"_count": 7, "body": {"_count": 1, "": {"_count": 1}}, "minds": {"_count": 1, "as": {"_count": 1}}, "shoulders": {"_count": 1, "to": {"_count": 1}}, "new": {"_count": 1, "haircuts": {"_count": 1}}, "gaze": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 2, "And": {"_count": 1}, "": {"_count": 1}}}, "willing": {"_count": 16, "to": {"_count": 8, "let": {"_count": 1}, "take": {"_count": 1}, "bet": {"_count": 1}, "help": {"_count": 2}, "embrace": {"_count": 1}, "stretch": {"_count": 1}, "fall": {"_count": 1}}, "himself": {"_count": 4, "to": {"_count": 1}, "not": {"_count": 3}}, "the": {"_count": 1, "wind": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "Snape": {"_count": 1, "to": {"_count": 1}}, "someone": {"_count": 1, "to": {"_count": 1}}}, "strengthened": {"_count": 2, "me": {"_count": 1, "these": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "faithful": {"_count": 30, "Quirrell": {"_count": 1, "drinking": {"_count": 1}}, "sidekick": {"_count": 1, "Weasley": {"_count": 1}}, "pets": {"_count": 1, "": {"_count": 1}}, "finally": {"_count": 1, "beaten": {"_count": 1}}, "servant": {"_count": 8, "will": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 2}, "and": {"_count": 3}, "perhaps": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "Death": {"_count": 6, "Eater": {"_count": 4}, "Eaters": {"_count": 2}}, "service": {"_count": 1, "in": {"_count": 1}}, "That": {"_count": 1, "will": {"_count": 1}}, "supporters": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "gang": {"_count": 1, "": {"_count": 1}}, "although": {"_count": 1, "Dumbledore": {"_count": 1}}, "Does": {"_count": 1, "he": {"_count": 1}}, "friendship": {"_count": 1, "those": {"_count": 1}}, "souls": {"_count": 1, "": {"_count": 1}}}, "create": {"_count": 8, "a": {"_count": 3, "body": {"_count": 1}, "dramatic": {"_count": 1}, "means": {"_count": 1}}, "love": {"_count": 1, "of": {"_count": 1}}, "enough": {"_count": 1, "werewolves": {"_count": 1}}, "an": {"_count": 1, "antidote": {"_count": 1}}, "more": {"_count": 1, "Horcruxes": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}}, "surged": {"_count": 6, "back": {"_count": 1, "into": {"_count": 1}}, "forward": {"_count": 2, "": {"_count": 1}, "around": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "past": {"_count": 1, "them": {"_count": 1}}, "up": {"_count": 1, "inside": {"_count": 1}}}, "begging": {"_count": 8, "me": {"_count": 1, "for": {"_count": 1}}, "Dumbledore": {"_count": 1, "to": {"_count": 1}}, "someone": {"_count": 1, "to": {"_count": 1}}, "Cedric": {"_count": 1, "to": {"_count": 1}}, "us": {"_count": 2, "to": {"_count": 1}, "for": {"_count": 1}}, "you": {"_count": 1, "please": {"_count": 1}}, "for": {"_count": 1, "mercy": {"_count": 1}}}, "LIAR": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "value": {"_count": 12, "bravery": {"_count": 2, "": {"_count": 2}}, "yer": {"_count": 1, "friend": {"_count": 1}}, "different": {"_count": 1, "virtues": {"_count": 1}}, "on": {"_count": 1, "my": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "anyone": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "there": {"_count": 1, "old": {"_count": 1}}, "he": {"_count": 1, "takes": {"_count": 1}}}, "courageous": {"_count": 2, "fight": {"_count": 1, "": {"_count": 1}}, "decision": {"_count": 1, "but": {"_count": 1}}}, "vain": {"_count": 10, "": {"_count": 4, ".": {"_count": 4}}, "hope": {"_count": 1, "that": {"_count": 1}}, "attempt": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "whatever": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "curiosity": {"_count": 1, "and": {"_count": 1}}}, "flame": {"_count": 35, "door": {"_count": 1, "but": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "shot": {"_count": 5, "into": {"_count": 1}, "high": {"_count": 1}, "suddenly": {"_count": 1}, "out": {"_count": 1}, "from": {"_count": 1}}, "though": {"_count": 1, "still": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "midair": {"_count": 1}}, "flew": {"_count": 2, "from": {"_count": 1}, "over": {"_count": 1}}, "and": {"_count": 2, "fell": {"_count": 1}, "at": {"_count": 1}}, "making": {"_count": 1, "Harry": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "which": {"_count": 1, "shot": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "was": {"_count": 1, "extinguished": {"_count": 1}}, "danced": {"_count": 1, "into": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "again": {"_count": 1, "blasting": {"_count": 1}}, "to": {"_count": 1, "try": {"_count": 1}}, "nor": {"_count": 1, "curse": {"_count": 1}}, "Souls": {"_count": 1, "": {"_count": 1}}}, "SEIZE": {"_count": 2, "HIM": {"_count": 2, "": {"_count": 2}}}, "needlesharp": {"_count": 1, "pain": {"_count": 1, "seared": {"_count": 1}}}, "seared": {"_count": 16, "across": {"_count": 2, "Harrys": {"_count": 1}, "his": {"_count": 1}}, "with": {"_count": 5, "pain": {"_count": 4}, "a": {"_count": 1}}, "not": {"_count": 1, "across": {"_count": 1}}, "again": {"_count": 3, "more": {"_count": 1}, "but": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 2, "burned": {"_count": 1}, "the": {"_count": 1}}, "Harrys": {"_count": 1, "throat": {"_count": 1}}, "more": {"_count": 2, "painfully": {"_count": 2}}}, "lessened": {"_count": 2, "he": {"_count": 1, "looked": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}}, "blistering": {"_count": 3, "before": {"_count": 1, "his": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Seize": {"_count": 2, "him": {"_count": 2, "": {"_count": 2}}}, "lunged": {"_count": 20, "knocking": {"_count": 1, "Harry": {"_count": 1}}, "blindly": {"_count": 1, "Harry": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 2}}, "at": {"_count": 6, "Harry": {"_count": 1}, "Scabbers": {"_count": 1}, "them": {"_count": 1}, "it": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}}, "forward": {"_count": 3, "he": {"_count": 1}, "He": {"_count": 1}, "through": {"_count": 1}}, "for": {"_count": 4, "it": {"_count": 1}, "the": {"_count": 3}}, "across": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "in": {"_count": 1}}}, "agony": {"_count": 25, "": {"_count": 8, ".": {"_count": 8}}, "to": {"_count": 1, "touch": {"_count": 1}}, "in": {"_count": 1, "shoes": {"_count": 1}}, "and": {"_count": 1, "squashed": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 3, "trying": {"_count": 1}, "regrowing": {"_count": 1}, "a": {"_count": 1}}, "he": {"_count": 2, "felt": {"_count": 2}}, "feel": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Kreacher": {"_count": 1, "had": {"_count": 1}}, "It": {"_count": 1, "attacked": {"_count": 1}}, "from": {"_count": 1, "Xenophilius": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}}, "cannot": {"_count": 112, "hold": {"_count": 1, "him": {"_count": 1}}, "be": {"_count": 17, "killed": {"_count": 1}, "he": {"_count": 1}, "serious": {"_count": 1}, "adjusted": {"_count": 1}, "happening": {"_count": 1}, "touched": {"_count": 1}, "owned": {"_count": 1}, "penetrated": {"_count": 1}, "satisfied": {"_count": 1}, "in": {"_count": 1}, "party": {"_count": 1}, "said": {"_count": 1}, "repaired": {"_count": 1}, "trusted": {"_count": 1}, "truly": {"_count": 1}, "any": {"_count": 1}, "sure": {"_count": 1}}, "tell": {"_count": 3, "you": {"_count": 2}, "": {"_count": 1}}, "understand": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "say": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "let": {"_count": 3, "Harry": {"_count": 2}, "you": {"_count": 1}}, "possibly": {"_count": 1, "let": {"_count": 1}}, "deny": {"_count": 2, "them": {"_count": 1}, "hes": {"_count": 1}}, "feel": {"_count": 1, "despair": {"_count": 1}}, "make": {"_count": 1, "you": {"_count": 1}}, "wait": {"_count": 1, "said": {"_count": 1}}, "proceed": {"_count": 1, "yet": {"_count": 1}}, "compete": {"_count": 1, "": {"_count": 1}}, "ave": {"_count": 1, "two": {"_count": 1}}, "take": {"_count": 1, "place": {"_count": 1}}, "pretend": {"_count": 6, "this": {"_count": 1}, "that": {"_count": 4}, "it": {"_count": 1}}, "sing": {"_count": 1, "above": {"_count": 1}}, "satisfy": {"_count": 1, "": {"_count": 1}}, "hie": {"_count": 1, "manage": {"_count": 1}}, "hope": {"_count": 1, "to": {"_count": 1}}, "hide": {"_count": 1, "from": {"_count": 1}}, "now": {"_count": 1, "give": {"_count": 1}}, "give": {"_count": 1, "evidence": {"_count": 1}}, "permit": {"_count": 1, "you": {"_count": 1}}, "always": {"_count": 1, "control": {"_count": 1}}, "pass": {"_count": 1, "an": {"_count": 1}}, "save": {"_count": 3, "a": {"_count": 3}}, "block": {"_count": 3, "a": {"_count": 3}}, "control": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "allow": {"_count": 1, "you": {"_count": 1}}, "touch": {"_count": 3, "it": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}}, "help": {"_count": 3, "you": {"_count": 2}, "": {"_count": 1}}, "manage": {"_count": 1, "two": {"_count": 1}}, "win": {"_count": 2, "against": {"_count": 1}, "": {"_count": 1}}, "know": {"_count": 1, "how": {"_count": 1}}, "hurt": {"_count": 1, "you": {"_count": 1}}, "answer": {"_count": 3, "said": {"_count": 1}, "for": {"_count": 1}, "that": {"_count": 1}}, "reveal": {"_count": 1, "the": {"_count": 1}}, "speak": {"_count": 1, "the": {"_count": 1}}, "stay": {"_count": 1, "I": {"_count": 1}}, "emphasize": {"_count": 1, "strongly": {"_count": 1}}, "point": {"_count": 1, "the": {"_count": 1}}, "afford": {"_count": 1, "mistakes": {"_count": 1}}, "ask": {"_count": 1, "Firenze": {"_count": 1}}, "hear": {"_count": 1, "Get": {"_count": 1}}, "Apparate": {"_count": 1, "half": {"_count": 1}}, "die": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "possess": {"_count": 1, "you": {"_count": 1}}, "approach": {"_count": 2, "the": {"_count": 1}, "any": {"_count": 1}}, "defend": {"_count": 1, "myself": {"_count": 1}}, "return": {"_count": 1, "from": {"_count": 1}}, "have": {"_count": 2, "been": {"_count": 2}}, "I": {"_count": 1, "venture": {"_count": 1}}, "guarantee": {"_count": 1, "zat": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "believe": {"_count": 1, "that": {"_count": 1}}, "travel": {"_count": 1, "outside": {"_count": 1}}, "come": {"_count": 1, "here": {"_count": 1}}, "lose": {"_count": 1, "Luna": {"_count": 1}}, "live": {"_count": 1, "without": {"_count": 1}}, "enter": {"_count": 1, "the": {"_count": 1}}, "fight": {"_count": 1, "me": {"_count": 1}}, "serve": {"_count": 1, "me": {"_count": 1}}, "bear": {"_count": 2, "": {"_count": 1}, "close": {"_count": 1}}, "despise": {"_count": 1, "me": {"_count": 1}}, "imagine": {"_count": 1, "how": {"_count": 1}}, "promise": {"_count": 1, "it": {"_count": 1}}}, "pinning": {"_count": 5, "Harry": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "Head": {"_count": 1}}, "Karkaroff": {"_count": 1, "to": {"_count": 1}}, "something": {"_count": 1, "up": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}}, "palms": {"_count": 3, "Harry": {"_count": 1, "could": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "raw": {"_count": 17, "red": {"_count": 1, "and": {"_count": 1}}, "liver": {"_count": 1, "from": {"_count": 1}}, "January": {"_count": 1, "morning": {"_count": 1}}, "deal": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 1, "faces": {"_count": 1}}, "reddish": {"_count": 1, "black": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "beef": {"_count": 1, "": {"_count": 1}}, "bloody": {"_count": 1, "greentinged": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "meat": {"_count": 2, "so": {"_count": 1}, "roots": {"_count": 1}}, "and": {"_count": 3, "fresh": {"_count": 1}, "numb": {"_count": 1}, "rough": {"_count": 1}}}, "perform": {"_count": 36, "a": {"_count": 5, "deadly": {"_count": 1}, "basic": {"_count": 1}, "simple": {"_count": 1}, "Shield": {"_count": 1}, "Disillusionment": {"_count": 1}}, "spells": {"_count": 2, "outside": {"_count": 1}, "without": {"_count": 1}}, "simple": {"_count": 1, "spells": {"_count": 1}}, "it": {"_count": 2, "admirably": {"_count": 1}, "if": {"_count": 1}}, "the": {"_count": 6, "charm": {"_count": 1}, "Cruciatus": {"_count": 1}, "magic": {"_count": 1}, "spells": {"_count": 1}, "most": {"_count": 1}, "spell": {"_count": 1}}, "an": {"_count": 2, "essential": {"_count": 1}, "unknown": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "another": {"_count": 1, "lap": {"_count": 1}}, "any": {"_count": 1, "spell": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "magic": {"_count": 2, "": {"_count": 2}}, "more": {"_count": 1, "illegal": {"_count": 1}}, "as": {"_count": 2, "well": {"_count": 1}, "legend": {"_count": 1}}, "BubbleHead": {"_count": 1, "Charms": {"_count": 1}}, "less": {"_count": 1, "of": {"_count": 1}}, "well": {"_count": 1, "in": {"_count": 1}}, "Legilimency": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "brutal": {"_count": 1, "spells": {"_count": 1}}, "for": {"_count": 1, "its": {"_count": 1}}}, "deadly": {"_count": 23, "curse": {"_count": 1, "but": {"_count": 1}}, "quiet": {"_count": 1, "": {"_count": 1}}, "whisper": {"_count": 1, "": {"_count": 1}}, "dull": {"_count": 1, "lecture": {"_count": 1}}, "serious": {"_count": 1, "and": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "venomous": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "enemy": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "": {"_count": 1}}, "calm": {"_count": 1, "I": {"_count": 1}}, "voice": {"_count": 4, "": {"_count": 1}, "taking": {"_count": 1}, "looking": {"_count": 1}, "advancing": {"_count": 1}}, "dangerous": {"_count": 1, "task": {"_count": 1}}, "struggle": {"_count": 1, "for": {"_count": 1}}, "foes": {"_count": 1, "And": {"_count": 1}}, "germ": {"_count": 1, "unworthy": {"_count": 1}}, "weapons": {"_count": 1, "": {"_count": 1}}, "trail": {"_count": 1, "of": {"_count": 1}}, "blow": {"_count": 1, "at": {"_count": 1}}, "skill": {"_count": 1, "What": {"_count": 1}}}, "instinct": {"_count": 7, "reached": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 1, "out": {"_count": 1}}, "kept": {"_count": 1, "him": {"_count": 1}}, "was": {"_count": 2, "to": {"_count": 1}, "telling": {"_count": 1}}, "overwhelming": {"_count": 1, "instinct": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}}, "yells": {"_count": 26, "of": {"_count": 9, "KILL": {"_count": 1}, "the": {"_count": 3}, "anger": {"_count": 1}, "laughter": {"_count": 1}, "delight": {"_count": 1}, "shock": {"_count": 1}, "his": {"_count": 1}}, "a": {"_count": 1, "hundred": {"_count": 1}}, "You": {"_count": 1, "bust": {"_count": 1}}, "were": {"_count": 2, "filling": {"_count": 1}, "drifting": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 5, "jeering": {"_count": 1}, "quaking": {"_count": 1}, "the": {"_count": 1}, "shouts": {"_count": 1}, "blows": {"_count": 1}}, "reverberating": {"_count": 1, "from": {"_count": 1}}, "echoed": {"_count": 1, "across": {"_count": 1}}, "surrounding": {"_count": 1, "them": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "HARRY": {"_count": 1, "": {"_count": 1}}}, "KILL": {"_count": 9, "HIM": {"_count": 4, "": {"_count": 4}}, "THE": {"_count": 1, "BOY": {"_count": 1}}, "YOU": {"_count": 2, "": {"_count": 1}, "HARRY": {"_count": 1}}, "HER": {"_count": 1, "": {"_count": 1}}, "ME": {"_count": 1, "": {"_count": 1}}}, "grasp": {"_count": 19, "knew": {"_count": 1, "all": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 4, "thrusting": {"_count": 1}, "shattered": {"_count": 1}, "holding": {"_count": 1}, "as": {"_count": 1}}, "slid": {"_count": 1, "down": {"_count": 1}}, "on": {"_count": 1, "Gilderoys": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "my": {"_count": 1, "arm": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "potionmaking": {"_count": 1}}, "that": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Harrys": {"_count": 1, "hands": {"_count": 1}}, "the": {"_count": 1, "impossibility": {"_count": 1}}, "yes": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "blackness": {"_count": 19, "down": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 2, "gave": {"_count": 1}, "then": {"_count": 1}}, "diluting": {"_count": 1, "to": {"_count": 1}}, "gathering": {"_count": 1, "at": {"_count": 1}}, "spinning": {"_count": 1, "furiously": {"_count": 1}}, "Snapes": {"_count": 1, "hand": {"_count": 1}}, "closed": {"_count": 1, "over": {"_count": 1}}, "though": {"_count": 1, "their": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "white": {"_count": 1}}, "swallowed": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "moving": {"_count": 1, "in": {"_count": 1}}}, "swam": {"_count": 27, "into": {"_count": 2, "view": {"_count": 2}}, "past": {"_count": 2, "and": {"_count": 1}, "one": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 1}, "fast": {"_count": 1}, "he": {"_count": 1}}, "deeper": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 3, "for": {"_count": 1}, "past": {"_count": 1}, "the": {"_count": 1}}, "faster": {"_count": 1, "and": {"_count": 1}}, "swiftly": {"_count": 1, "toward": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "nearer": {"_count": 1, "but": {"_count": 1}}, "in": {"_count": 3, "and": {"_count": 1}, "front": {"_count": 1}, "her": {"_count": 1}}, "with": {"_count": 2, "tears": {"_count": 2}}, "through": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "yet": {"_count": 1, "Harry": {"_count": 1}}, "hazily": {"_count": 1, "to": {"_count": 1}}, "gracefully": {"_count": 1, "through": {"_count": 1}}, "tantalizingly": {"_count": 1, "in": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}}, "Calm": {"_count": 10, "yourself": {"_count": 2, "dear": {"_count": 1}, "Hagrid": {"_count": 1}}, "down": {"_count": 7, "man": {"_count": 1}, "": {"_count": 3}, "Hermione": {"_count": 1}, "you": {"_count": 1}, "said": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}}, "linen": {"_count": 4, "sheets": {"_count": 1, "and": {"_count": 1}}, "orange": {"_count": 1, "but": {"_count": 1}}, "curtains": {"_count": 1, "hung": {"_count": 1}}, "sheet": {"_count": 1, "she": {"_count": 1}}}, "Tokens": {"_count": 1, "from": {"_count": 1, "your": {"_count": 1}}}, "admirers": {"_count": 8, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "had": {"_count": 1, "faded": {"_count": 1}}, "and": {"_count": 1, "looking": {"_count": 1}}, "meanwhile": {"_count": 1, "may": {"_count": 1}}, "believed": {"_count": 1, "of": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "naturally": {"_count": 18, "the": {"_count": 1, "whole": {"_count": 1}}, "conjured": {"_count": 1, "stretchers": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "while": {"_count": 1, "his": {"_count": 1}}, "murmured": {"_count": 2, "Dumbledore": {"_count": 1}, "Borgin": {"_count": 1}}, "it": {"_count": 1, "gives": {"_count": 1}}, "drew": {"_count": 1, "attention": {"_count": 1}}, "wished": {"_count": 1, "to": {"_count": 1}}, "made": {"_count": 1, "you": {"_count": 1}}, "Rosmerta": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "is": {"_count": 1}}, "Kendra": {"_count": 1, "Dumbledore": {"_count": 1}}, "until": {"_count": 1, "this": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "set": {"_count": 1, "out": {"_count": 1}}}, "Misters": {"_count": 1, "Fred": {"_count": 1, "and": {"_count": 1}}}, "responsible": {"_count": 16, "for": {"_count": 10, "trying": {"_count": 1}, "their": {"_count": 1}, "some": {"_count": 1}, "tonights": {"_count": 1}, "several": {"_count": 1}, "you": {"_count": 1}, "Cedrics": {"_count": 1}, "all": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}}, "and": {"_count": 1, "kindly": {"_count": 1}}, "job": {"_count": 1, "isnt": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}}, "hygienic": {"_count": 1, "and": {"_count": 1, "confiscated": {"_count": 1}}}, "confiscated": {"_count": 12, "it": {"_count": 2, "": {"_count": 2}}, "Dads": {"_count": 1, "told": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "by": {"_count": 1, "Mr": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "broomsticks": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "bottle": {"_count": 1}}, "that": {"_count": 1, "too": {"_count": 1}}, "a": {"_count": 1, "box": {"_count": 1}}}, "distracted": {"_count": 28, "": {"_count": 4, ".": {"_count": 4}}, "almost": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "snake": {"_count": 1}}, "however": {"_count": 1, "by": {"_count": 1}}, "him": {"_count": 3, "completely": {"_count": 1}, "": {"_count": 2}}, "and": {"_count": 3, "Harry": {"_count": 1}, "without": {"_count": 1}, "jumpy": {"_count": 1}}, "by": {"_count": 8, "Professor": {"_count": 1}, "the": {"_count": 4}, "this": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "Malfoy": {"_count": 1, "completely": {"_count": 1}}, "to": {"_count": 1, "notice": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "all": {"_count": 1, "through": {"_count": 1}}, "or": {"_count": 1, "render": {"_count": 1}}, "I": {"_count": 1, "managed": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}}, "prevent": {"_count": 38, "that": {"_count": 1, "although": {"_count": 1}}, "any": {"_count": 1, "ah": {"_count": 1}}, "this": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "himself": {"_count": 7, "from": {"_count": 4}, "retaliating": {"_count": 1}, "knocking": {"_count": 1}, "succumbing": {"_count": 1}}, "him": {"_count": 4, "from": {"_count": 2}, "adding": {"_count": 1}, "seeing": {"_count": 1}}, "them": {"_count": 2, "from": {"_count": 1}, "being": {"_count": 1}}, "it": {"_count": 5, "he": {"_count": 1}, "closing": {"_count": 1}, "immediately": {"_count": 1}, "": {"_count": 1}, "being": {"_count": 1}}, "you": {"_count": 2, "from": {"_count": 1}, "reading": {"_count": 1}}, "me": {"_count": 3, "from": {"_count": 1}, "taking": {"_count": 1}, "stamping": {"_count": 1}}, "his": {"_count": 2, "imagination": {"_count": 1}, "feet": {"_count": 1}}, "us": {"_count": 1, "from": {"_count": 1}}, "a": {"_count": 2, "recurrence": {"_count": 1}, "rapid": {"_count": 1}}, "the": {"_count": 1, "Death": {"_count": 1}}, "hot": {"_count": 1, "tears": {"_count": 1}}, "YouKnowWho": {"_count": 1, "getting": {"_count": 1}}, "her": {"_count": 1, "Apparating": {"_count": 1}}, "Voldemort": {"_count": 2, "breaking": {"_count": 1}, "from": {"_count": 1}}}, "Destroyed": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "blankly": {"_count": 48, "": {"_count": 28, ".": {"_count": 28}}, "at": {"_count": 8, "the": {"_count": 7}, "Harry": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "over": {"_count": 1, "empty": {"_count": 1}}, "as": {"_count": 2, "Ernie": {"_count": 1}, "though": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "for": {"_count": 1}, "Hermione": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "around": {"_count": 1, "unseeing": {"_count": 1}}, "looking": {"_count": 1, "after": {"_count": 1}}, "upwards": {"_count": 1, "": {"_count": 1}}}, "stored": {"_count": 5, "to": {"_count": 1, "set": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "tall": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "revealed": {"_count": 1}}}, "affairs": {"_count": 2, "in": {"_count": 1, "order": {"_count": 1}}, "sniffed": {"_count": 1, "Aunt": {"_count": 1}}}, "organized": {"_count": 7, "mind": {"_count": 1, "death": {"_count": 1}}, "the": {"_count": 1, "Triwizard": {"_count": 1}}, "them": {"_count": 1, "into": {"_count": 1}}, "it": {"_count": 1, "Potter": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "competitions": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}}, "beings": {"_count": 4, "would": {"_count": 1, "choose": {"_count": 1}}, "were": {"_count": 1, "like": {"_count": 1}}, "they": {"_count": 1, "deny": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}}, "precisely": {"_count": 26, "those": {"_count": 1, "things": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "one": {"_count": 1, "month": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 4, "right": {"_count": 1}, "clear": {"_count": 1}, "same": {"_count": 2}}, "what": {"_count": 3, "he": {"_count": 1}, "Ron": {"_count": 1}, "had": {"_count": 1}}, "why": {"_count": 1, "I": {"_count": 1}}, "this": {"_count": 1, "sort": {"_count": 1}}, "but": {"_count": 1, "feeling": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 2}}, "that": {"_count": 2, "reason": {"_count": 1}, "": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}, "how": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}}, "increases": {"_count": 1, "fear": {"_count": 1, "of": {"_count": 1}}}, "truly": {"_count": 39, "alive": {"_count": 1, "he": {"_count": 1}}, "awake": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 2, "left": {"_count": 2}}, "are": {"_count": 1, "far": {"_count": 1}}, "remarkable": {"_count": 1, "thing": {"_count": 1}}, "your": {"_count": 1, "fathers": {"_count": 1}}, "leave": {"_count": 1, "us": {"_count": 1}}, "happy": {"_count": 1, "turned": {"_count": 1}}, "horrible": {"_count": 1, "smell": {"_count": 1}}, "looked": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "spectacular": {"_count": 2, "saves": {"_count": 2}}, "wonderful": {"_count": 1, "only": {"_count": 1}}, "terrible": {"_count": 1, "thought": {"_count": 1}}, "dreadful": {"_count": 1, "painting": {"_count": 1}}, "glorious": {"_count": 1, "morning": {"_count": 1}}, "evil": {"_count": 1, "smile": {"_count": 1}}, "more": {"_count": 1, "skilled": {"_count": 1}}, "left": {"_count": 1, "her": {"_count": 1}}, "belong": {"_count": 1, "there": {"_count": 1}}, "to": {"_count": 1, "join": {"_count": 1}}, "renders": {"_count": 2, "the": {"_count": 2}}, "master": {"_count": 2, "of": {"_count": 2}}, "bringing": {"_count": 1, "someone": {"_count": 1}}, "inspirational": {"_count": 1, "stories": {"_count": 1}}, "invulnerable": {"_count": 1, "": {"_count": 1}}, "trapped": {"_count": 1, "now": {"_count": 1}}, "mine": {"_count": 2, "": {"_count": 2}}, "loved": {"_count": 1, "her": {"_count": 1}}, "sharing": {"_count": 1, "Harrys": {"_count": 1}}, "mean": {"_count": 1, "the": {"_count": 1}}, "flesh": {"_count": 1, "he": {"_count": 1}}, "invincible": {"_count": 1, "": {"_count": 1}}}, "enemies": {"_count": 13, "": {"_count": 2, ".": {"_count": 2}}, "but": {"_count": 1, "just": {"_count": 1}}, "ever": {"_count": 2, "since": {"_count": 2}}, "though": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "are": {"_count": 2, "around": {"_count": 1}, "close": {"_count": 1}}, "like": {"_count": 1, "obedient": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "in": {"_count": 1, "subsequent": {"_count": 1}}}, "Nevertheless": {"_count": 27, "Harry": {"_count": 4, "while": {"_count": 1}, "was": {"_count": 1}, "felt": {"_count": 1}, "had": {"_count": 1}}, "he": {"_count": 6, "was": {"_count": 2}, "put": {"_count": 1}, "could": {"_count": 2}, "drew": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "it": {"_count": 3, "was": {"_count": 2}, "would": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Magorian": {"_count": 1}}, "you": {"_count": 2, "should": {"_count": 1}, "came": {"_count": 1}}, "had": {"_count": 1, "I": {"_count": 1}}, "highly": {"_count": 1, "placed": {"_count": 1}}, "she": {"_count": 1, "looked": {"_count": 1}}, "Charlies": {"_count": 1, "arrival": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "Kreacher": {"_count": 1, "cornered": {"_count": 1}}, "a": {"_count": 1, "combination": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "his": {"_count": 1, "battered": {"_count": 1}}}, "delayed": {"_count": 7, "his": {"_count": 2, "return": {"_count": 2}}, "again": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "precious": {"_count": 1}}, "in": {"_count": 1, "setting": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "meeting": {"_count": 1, "him": {"_count": 1}}}, "merely": {"_count": 143, "take": {"_count": 1, "someone": {"_count": 1}}, "pointed": {"_count": 1, "it": {"_count": 1}}, "continued": {"_count": 2, "to": {"_count": 2}}, "a": {"_count": 4, "lucky": {"_count": 1}, "piece": {"_count": 1}, "blur": {"_count": 1}, "bundle": {"_count": 1}}, "commenting": {"_count": 1, "on": {"_count": 1}}, "nodded": {"_count": 4, "": {"_count": 3}, "to": {"_count": 1}}, "bored": {"_count": 1, "asked": {"_count": 1}}, "glad": {"_count": 1, "that": {"_count": 1}}, "assumed": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 1, "if": {"_count": 1}}, "glared": {"_count": 1, "": {"_count": 1}}, "sheltering": {"_count": 1, "behind": {"_count": 1}}, "frowned": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 3, "absence": {"_count": 1}, "record": {"_count": 1}, "antechamber": {"_count": 1}}, "doing": {"_count": 1, "my": {"_count": 1}}, "sank": {"_count": 1, "a": {"_count": 1}}, "thought": {"_count": 1, "said": {"_count": 1}}, "Take": {"_count": 1, "two": {"_count": 1}}, "expelled": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "torches": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 3, "Quite": {"_count": 1}, "Until": {"_count": 1}, "Dont": {"_count": 1}}, "looked": {"_count": 13, "at": {"_count": 5}, "as": {"_count": 2}, "rather": {"_count": 1}, "contemptuous": {"_count": 1}, "across": {"_count": 1}, "his": {"_count": 1}, "vague": {"_count": 1}, "up": {"_count": 1}}, "shrugged": {"_count": 5, "and": {"_count": 1}, "": {"_count": 1}, "already": {"_count": 1}, "she": {"_count": 1}, "when": {"_count": 1}}, "smiled": {"_count": 5, "her": {"_count": 1}, "and": {"_count": 1}, "over": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "stood": {"_count": 2, "there": {"_count": 1}, "beside": {"_count": 1}}, "making": {"_count": 1, "sport": {"_count": 1}}, "repeating": {"_count": 1, "the": {"_count": 1}}, "requested": {"_count": 1, "that": {"_count": 1}}, "glanced": {"_count": 3, "at": {"_count": 2}, "off": {"_count": 1}}, "expressing": {"_count": 1, "my": {"_count": 1}}, "gazed": {"_count": 1, "at": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "walked": {"_count": 1, "on": {"_count": 1}}, "shook": {"_count": 2, "her": {"_count": 2}}, "slid": {"_count": 1, "down": {"_count": 1}}, "hung": {"_count": 1, "over": {"_count": 1}}, "rustled": {"_count": 1, "the": {"_count": 1}}, "snatched": {"_count": 1, "up": {"_count": 1}}, "causing": {"_count": 2, "them": {"_count": 1}, "his": {"_count": 1}}, "drew": {"_count": 1, "back": {"_count": 1}}, "yawned": {"_count": 1, "widely": {"_count": 1}}, "chuckled": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "crackled": {"_count": 1, "lower": {"_count": 1}}, "seen": {"_count": 1, "the": {"_count": 1}}, "settled": {"_count": 1, "himself": {"_count": 1}}, "raised": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "increased": {"_count": 1, "his": {"_count": 1}}, "shouted": {"_count": 1, "disconnected": {"_count": 1}}, "bounced": {"_count": 1, "off": {"_count": 1}}, "pointing": {"_count": 1, "out": {"_count": 1}}, "reporting": {"_count": 1, "a": {"_count": 1}}, "knocked": {"_count": 1, "to": {"_count": 1}}, "grunted": {"_count": 1, "": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "gave": {"_count": 2, "another": {"_count": 1}, "Umbridge": {"_count": 1}}, "cackled": {"_count": 1, "": {"_count": 1}}, "strode": {"_count": 1, "on": {"_count": 1}}, "stared": {"_count": 2, "at": {"_count": 2}}, "ducked": {"_count": 1, "his": {"_count": 1}}, "laughed": {"_count": 2, "": {"_count": 1}, "permitted": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "shrank": {"_count": 1, "back": {"_count": 1}}, "reading": {"_count": 1, "the": {"_count": 1}}, "turning": {"_count": 1, "into": {"_count": 1}}, "whispering": {"_count": 1, "the": {"_count": 1}}, "scowled": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "fell": {"_count": 1, "about": {"_count": 1}}, "guffawed": {"_count": 1, "gloatingly": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "expressed": {"_count": 1, "disgust": {"_count": 1}}, "started": {"_count": 1, "snoring": {"_count": 1}}, "crossed": {"_count": 1, "out": {"_count": 1}}, "sipped": {"_count": 1, "his": {"_count": 1}}, "wondered": {"_count": 1, "why": {"_count": 1}}, "to": {"_count": 1, "wish": {"_count": 1}}, "friendly": {"_count": 1, "with": {"_count": 1}}, "used": {"_count": 1, "like": {"_count": 1}}, "irritate": {"_count": 1, "Ron": {"_count": 1}}, "passable": {"_count": 1, "": {"_count": 1}}, "moved": {"_count": 1, "to": {"_count": 1}}, "pretended": {"_count": 1, "to": {"_count": 1}}, "grunting": {"_count": 1, "and": {"_count": 1}}, "guiding": {"_count": 1, "you": {"_count": 1}}, "drifting": {"_count": 1, "peacefully": {"_count": 1}}, "stepped": {"_count": 1, "over": {"_count": 1}}, "broken": {"_count": 1, "through": {"_count": 1}}, "hit": {"_count": 1, "several": {"_count": 1}}, "knew": {"_count": 1, "by": {"_count": 1}}, "skimmed": {"_count": 1, "off": {"_count": 1}}, "closed": {"_count": 1, "his": {"_count": 1}}, "been": {"_count": 1, "boasting": {"_count": 1}}, "signed": {"_count": 1, "their": {"_count": 1}}, "propelled": {"_count": 1, "himself": {"_count": 1}}, "grimaced": {"_count": 1, "his": {"_count": 1}}, "whimpered": {"_count": 1, "": {"_count": 1}}, "playing": {"_count": 1, "with": {"_count": 1}}, "sought": {"_count": 1, "to": {"_count": 1}}, "punishment": {"_count": 1, "for": {"_count": 1}}, "through": {"_count": 1, "my": {"_count": 1}}}, "therefore": {"_count": 67, "be": {"_count": 4, "treated": {"_count": 1}, "taken": {"_count": 1}, "as": {"_count": 1}, "cautious": {"_count": 1}}, "award": {"_count": 2, "ten": {"_count": 1}, "him": {"_count": 1}}, "her": {"_count": 1, "responsibility": {"_count": 1}}, "that": {"_count": 6, "I": {"_count": 1}, "he": {"_count": 2}, "Dudley": {"_count": 1}, "you": {"_count": 1}, "Kendra": {"_count": 1}}, "unlikely": {"_count": 1, "to": {"_count": 1}}, "take": {"_count": 1, "place": {"_count": 1}}, "seized": {"_count": 1, "his": {"_count": 1}}, "warn": {"_count": 1, "each": {"_count": 1}}, "advisable": {"_count": 1, "that": {"_count": 1}}, "increased": {"_count": 1, "the": {"_count": 1}}, "settled": {"_count": 1, "for": {"_count": 1}}, "beg": {"_count": 1, "you": {"_count": 1}}, "they": {"_count": 1, "will": {"_count": 1}}, "had": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "started": {"_count": 1, "taking": {"_count": 1}}, "no": {"_count": 1, "judging": {"_count": 1}}, "decided": {"_count": 2, "to": {"_count": 2}}, "approached": {"_count": 1, "the": {"_count": 1}}, "pulled": {"_count": 1, "his": {"_count": 1}}, "enabling": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 4, "know": {"_count": 1}, "abide": {"_count": 1}, "see": {"_count": 1}, "move": {"_count": 1}}, "consider": {"_count": 1, "yourself": {"_count": 1}}, "why": {"_count": 1, "she": {"_count": 1}}, "more": {"_count": 1, "difficult": {"_count": 1}}, "magic": {"_count": 1, "you": {"_count": 1}}, "much": {"_count": 3, "used": {"_count": 3}}, "likely": {"_count": 1, "to": {"_count": 1}}, "call": {"_count": 2, "me": {"_count": 1}, "to": {"_count": 1}}, "momentarily": {"_count": 1, "stunned": {"_count": 1}}, "blinkered": {"_count": 1, "and": {"_count": 1}}, "plunged": {"_count": 1, "immediately": {"_count": 1}}, "considered": {"_count": 1, "responsible": {"_count": 1}}, "underestimated": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "your": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 1, "Fudge": {"_count": 1}}, "say": {"_count": 1, "good": {"_count": 1}}, "I": {"_count": 1, "trust": {"_count": 1}}, "sprinted": {"_count": 1, "up": {"_count": 1}}, "trawled": {"_count": 1, "back": {"_count": 1}}, "forced": {"_count": 1, "to": {"_count": 1}}, "gone": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "so": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "withdrew": {"_count": 1, "from": {"_count": 1}}, "hurried": {"_count": 1, "behind": {"_count": 1}}, "removed": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "full": {"_count": 1}}, "unsurprised": {"_count": 1, "that": {"_count": 1}}, "upon": {"_count": 1, "my": {"_count": 1}}}, "treated": {"_count": 21, "with": {"_count": 4, "great": {"_count": 1}, "a": {"_count": 1}, "respect": {"_count": 1}, "kindness": {"_count": 1}}, "like": {"_count": 4, "a": {"_count": 1}, "vermin": {"_count": 1}, "that": {"_count": 1}, "Harry": {"_count": 1}}, "the": {"_count": 1, "family": {"_count": 1}}, "her": {"_count": 2, "very": {"_count": 1}, "like": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "you": {"_count": 2, "very": {"_count": 1}, "have": {"_count": 1}}, "when": {"_count": 1, "hes": {"_count": 1}}, "Harry": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "\u2018A": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 1, "old": {"_count": 1}}, "brutally": {"_count": 1, "in": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}}, "beg": {"_count": 28, "you": {"_count": 12, "11": {"_count": 1}, "to": {"_count": 2}, "will": {"_count": 2}, "not": {"_count": 1}, "": {"_count": 5}, "I": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "your": {"_count": 8, "pardon": {"_count": 8}}, "the": {"_count": 2, "magical": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}}, "Alas": {"_count": 8, "the": {"_count": 1, "first": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "if": {"_count": 1, "only": {"_count": 1}}, "tor": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "knows": {"_count": 1}}, "I": {"_count": 1, "also": {"_count": 1}}}, "love": {"_count": 110, "": {"_count": 14, ".": {"_count": 10}, "!": {"_count": 3}, "?": {"_count": 1}}, "as": {"_count": 1, "powerful": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "little": {"_count": 1}}, "it": {"_count": 3, "here": {"_count": 1}, "if": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 15, "get": {"_count": 3}, "be": {"_count": 2}, "see": {"_count": 2}, "live": {"_count": 1}, "vent": {"_count": 1}, "act": {"_count": 1}, "have": {"_count": 1}, "go": {"_count": 2}, "know": {"_count": 1}, "talk": {"_count": 1}}, "potion": {"_count": 10, "shed": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 4}, "stop": {"_count": 1}, "by": {"_count": 2}, "sir": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 1, "Toothflossing": {"_count": 1}}, "a": {"_count": 2, "rebel": {"_count": 1}, "reason": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "not": {"_count": 1, "working": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "yeh": {"_count": 1, "ter": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "lives": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 8, "him": {"_count": 1}, "her": {"_count": 3}, "each": {"_count": 1}, "Malfoy": {"_count": 1}, "Sirius": {"_count": 1}, "after": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "playing": {"_count": 1}, "course": {"_count": 1}}, "hearing": {"_count": 1, "Mum": {"_count": 1}}, "this": {"_count": 1, "opportunity": {"_count": 1}}, "life": {"_count": 1, "and": {"_count": 1}}, "them": {"_count": 1, "breathed": {"_count": 1}}, "for": {"_count": 2, "Kreacher": {"_count": 1}, "Romilda": {"_count": 1}}, "me": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "knitting": {"_count": 1, "patterns": {"_count": 1}}, "Muggle": {"_count": 1, "stuff": {"_count": 1}}, "potions": {"_count": 5, "youll": {"_count": 1}, "which": {"_count": 1}, "at": {"_count": 1}, "into": {"_count": 1}, "arent": {"_count": 1}}, "being": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "war": {"_count": 1}, "tucked": {"_count": 1}}, "To": {"_count": 1, "keep": {"_count": 1}}, "her": {"_count": 4, "said": {"_count": 1}, "repeated": {"_count": 1}, "always": {"_count": 1}, "like": {"_count": 1}}, "my": {"_count": 1, "cakes": {"_count": 1}}, "is": {"_count": 1, "more": {"_count": 1}}, "you": {"_count": 3, "Hermione": {"_count": 1}, "said": {"_count": 1}, "enough": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "mess": {"_count": 1}}, "Lily": {"_count": 1, "Snape": {"_count": 1}}, "loyalty": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 1, "will": {"_count": 1}}, "Oh": {"_count": 1, "but": {"_count": 1}}, "some": {"_count": 1, "he": {"_count": 1}}, "But": {"_count": 1, "you": {"_count": 1}}}, "loved": {"_count": 40, "so": {"_count": 1, "deeply": {"_count": 1}}, "us": {"_count": 1, "is": {"_count": 1}}, "that": {"_count": 4, "didnt": {"_count": 1}, "motorbike": {"_count": 1}, "": {"_count": 1}, "owl": {"_count": 1}}, "chaos": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 3, "": {"_count": 2}, "though": {"_count": 1}}, "criticizing": {"_count": 1, "him": {"_count": 1}}, "ever": {"_count": 1, "truly": {"_count": 1}}, "to": {"_count": 3, "have": {"_count": 2}, "think": {"_count": 1}}, "everything": {"_count": 1, "to": {"_count": 1}}, "monstrous": {"_count": 1, "creatures": {"_count": 1}}, "taking": {"_count": 1, "points": {"_count": 1}}, "her": {"_count": 3, "as": {"_count": 1}, "then": {"_count": 1}, "for": {"_count": 1}}, "Quidditch": {"_count": 1, "": {"_count": 1}}, "hearing": {"_count": 1, "Snape": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "ones": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 2, "Hermione": {"_count": 1}, "": {"_count": 1}}, "Hermione": {"_count": 1, "but": {"_count": 1}}, "always": {"_count": 1, "by": {"_count": 1}}, "now": {"_count": 1, "by": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "scattered": {"_count": 1, "in": {"_count": 1}}, "Lily": {"_count": 1, "Evans": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "no": {"_count": 1, "hint": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 2, "parents": {"_count": 1}, "brother": {"_count": 1}}}, "hatred": {"_count": 23, "greed": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 2, "saw": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "such": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 4, "him": {"_count": 1}, "Dudley": {"_count": 1}, "the": {"_count": 1}, "spiders": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "I": {"_count": 1, "could": {"_count": 1}}, "so": {"_count": 2, "powerful": {"_count": 2}}, "beyond": {"_count": 1, "anything": {"_count": 1}}, "bubbling": {"_count": 1, "inside": {"_count": 1}}, "etched": {"_count": 1, "in": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "toward": {"_count": 1, "Ron": {"_count": 1}}}, "marked": {"_count": 29, "by": {"_count": 2, "something": {"_count": 1}, "a": {"_count": 1}}, "him": {"_count": 1, "down": {"_count": 1}}, "Confiscated": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "this": {"_count": 1}, "how": {"_count": 1}}, "effect": {"_count": 1, "upon": {"_count": 1}}, "with": {"_count": 1, "disappearances": {"_count": 1}}, "you": {"_count": 1, "high": {"_count": 1}}, "down": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 1, "page": {"_count": 1}}, "inquiries": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 7, "start": {"_count": 1}, "wrong": {"_count": 1}, "spot": {"_count": 2}, "entrance": {"_count": 1}, "outer": {"_count": 1}, "point": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "position": {"_count": 1}}, "Atrium": {"_count": 1, "": {"_count": 1}}, "man": {"_count": 2, "": {"_count": 1}, "we": {"_count": 1}}, "playing": {"_count": 1, "cards": {"_count": 1}}, "out": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "for": {"_count": 1, "slaughter": {"_count": 1}}}, "bird": {"_count": 45, "out": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 2, "resembled": {"_count": 1}, "had": {"_count": 1}}, "looked": {"_count": 1, "balefully": {"_count": 1}}, "to": {"_count": 2, "die": {"_count": 1}, "pull": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "meanwhile": {"_count": 1, "had": {"_count": 1}}, "I": {"_count": 1, "couldnt": {"_count": 1}}, "poke": {"_count": 1, "its": {"_count": 1}}, "the": {"_count": 2, "size": {"_count": 2}}, "was": {"_count": 2, "flying": {"_count": 1}, "enormous": {"_count": 1}}, "stopped": {"_count": 1, "singing": {"_count": 1}}, "lay": {"_count": 1, "its": {"_count": 1}}, "knows": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 3, "Riddles": {"_count": 1}, "Bagman": {"_count": 1}, "Hermione": {"_count": 1}}, "come": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "entrails": {"_count": 1, "But": {"_count": 1}}, "you": {"_count": 2, "started": {"_count": 1}, "will": {"_count": 1}}, "of": {"_count": 2, "prey": {"_count": 2}}, "heads": {"_count": 1, "and": {"_count": 1}}, "perching": {"_count": 1, "peacefully": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 2, "warning": {"_count": 1}, "young": {"_count": 1}}, "wings": {"_count": 1, "but": {"_count": 1}}, "in": {"_count": 1, "it": {"_count": 1}}, "dropping": {"_count": 1, "landed": {"_count": 1}}, "attack": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "fluttered": {"_count": 1, "past": {"_count": 1}}, "flew": {"_count": 1, "through": {"_count": 1}}}, "sheet": {"_count": 18, "": {"_count": 3, ".": {"_count": 3}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 7, "silveryblonde": {"_count": 1}, "silvery": {"_count": 1}, "long": {"_count": 1}, "glass": {"_count": 1}, "cool": {"_count": 1}, "pink": {"_count": 1}, "hair": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "she": {"_count": 1, "wore": {"_count": 1}}, "again": {"_count": 1, "this": {"_count": 1}}, "valuable": {"_count": 1, "": {"_count": 1}}}, "twinkled": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 2}}, "innocently": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 1, "Ginny": {"_count": 1}}, "from": {"_count": 1, "windows": {"_count": 1}}}, "Useful": {"_count": 4, "things": {"_count": 1, "": {"_count": 1}}, "Tips": {"_count": 1, "when": {"_count": 1}}, "little": {"_count": 1, "treasure": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}}, "mainly": {"_count": 18, "for": {"_count": 2, "sneaking": {"_count": 1}, "Harrys": {"_count": 1}}, "because": {"_count": 3, "of": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "cheers": {"_count": 1, "because": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "quoting": {"_count": 1, "it": {"_count": 1}}, "with": {"_count": 1, "Hogwarts": {"_count": 1}}, "of": {"_count": 1, "food": {"_count": 1}}, "to": {"_count": 1, "Professor": {"_count": 1}}, "responsible": {"_count": 1, "for": {"_count": 1}}, "jus": {"_count": 1, "pullin": {"_count": 1}}, "though": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "dirty": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}}, "Fire": {"_count": 31, "away": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 7}, "!": {"_count": 2}, "?": {"_count": 1}}, "once": {"_count": 2, "it": {"_count": 1}, "more": {"_count": 1}}, "he": {"_count": 2, "or": {"_count": 1}, "glanced": {"_count": 1}}, "stood": {"_count": 1, "back": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "regurgitated": {"_count": 1}}, "now": {"_count": 1, "shone": {"_count": 1}}, "turned": {"_count": 1, "red": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "Dumbledore": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}, "are": {"_count": 1, "bound": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 1, "apologized": {"_count": 1}}, "by": {"_count": 1, "accident": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "they": {"_count": 1, "made": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}}, "detest": {"_count": 3, "each": {"_count": 1, "other": {"_count": 1}}, "the": {"_count": 1, "Dark": {"_count": 1}}, "Avery": {"_count": 1, "and": {"_count": 1}}}, "unlike": {"_count": 25, "yourself": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 5, "one": {"_count": 2}, "other": {"_count": 1}, "comfortable": {"_count": 1}, "tiara": {"_count": 1}}, "her": {"_count": 3, "own": {"_count": 1}, "sisters": {"_count": 1}, "in": {"_count": 1}}, "any": {"_count": 2, "they": {"_count": 1}, "Harry": {"_count": 1}}, "his": {"_count": 2, "own": {"_count": 2}}, "most": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 3, "have": {"_count": 2}, "I": {"_count": 1}}, "me": {"_count": 1, "are": {"_count": 1}}, "Umbridge": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "birch": {"_count": 1}}, "Albus": {"_count": 1, "preferred": {"_count": 1}}, "school": {"_count": 1, "desks": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "of": {"_count": 1}}}, "dreamily": {"_count": 14, "": {"_count": 4, ".": {"_count": 4}}, "at": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "heat": {"_count": 1}}, "without": {"_count": 1, "taking": {"_count": 1}}, "into": {"_count": 2, "space": {"_count": 1}, "the": {"_count": 1}}, "up": {"_count": 1, "near": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}}, "debt": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "Harry": {"_count": 1}}, "already": {"_count": 1, "have": {"_count": 1}}}, "hating": {"_count": 3, "your": {"_count": 1, "fathers": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "I": {"_count": 1}}}, "otherwise": {"_count": 38, "theyd": {"_count": 1, "just": {"_count": 1}}, "for": {"_count": 1, "members": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "however": {"_count": 1, "they": {"_count": 1}}, "very": {"_count": 1, "informative": {"_count": 1}}, "empty": {"_count": 1, "dormitory": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "charming": {"_count": 1, "face": {"_count": 1}}, "Im": {"_count": 2, "not": {"_count": 1}, "going": {"_count": 1}}, "hell": {"_count": 1, "probably": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "she": {"_count": 3, "builds": {"_count": 1}, "seemed": {"_count": 1}, "looked": {"_count": 1}}, "the": {"_count": 3, "guard": {"_count": 1}, "office": {"_count": 1}, "two": {"_count": 1}}, "ignored": {"_count": 1, "the": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "deserted": {"_count": 1, "street": {"_count": 1}}, "looked": {"_count": 1, "quite": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "be": {"_count": 1, "spending": {"_count": 1}}, "velvety": {"_count": 1, "blackness": {"_count": 1}}, "made": {"_count": 1, "to": {"_count": 1}}, "unscathed": {"_count": 1, "by": {"_count": 1}}, "She": {"_count": 1, "never": {"_count": 1}}, "Dumbledore": {"_count": 1, "Elf": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "composed": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "if": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "unharmed": {"_count": 1, "": {"_count": 1}}}, "unfortunate": {"_count": 16, "enough": {"_count": 1, "in": {"_count": 1}}, "liking": {"_count": 1, "for": {"_count": 1}}, "said": {"_count": 1, "Lockhart": {"_count": 1}}, "blowingup": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 2, "there": {"_count": 1}, "necessary": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "habit": {"_count": 1, "of": {"_count": 1}}, "boys": {"_count": 1, "interest": {"_count": 1}}, "happened": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 1, "Marsh": {"_count": 1}}, "boy": {"_count": 1, "sitting": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "tolerance": {"_count": 1, "of": {"_count": 1}}}, "youth": {"_count": 14, "to": {"_count": 1, "come": {"_count": 1}}, "but": {"_count": 1, "Aunt": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "raised": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "lifelong": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}}, "vomitflavored": {"_count": 1, "one": {"_count": 1, "and": {"_count": 1}}}, "toffee": {"_count": 13, "dont": {"_count": 1, "you": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "had": {"_count": 1, "cemented": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 1, "dawn": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "wrapper": {"_count": 1, "lay": {"_count": 1}}, "my": {"_count": 1, "son": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "eclairs": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}}, "goldenbrown": {"_count": 1, "bean": {"_count": 1, "into": {"_count": 1}}}, "Ear": {"_count": 7, "wax": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 1, "hearty": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "deeper": {"_count": 1, "into": {"_count": 1}}}, "nurse": {"_count": 8, "was": {"_count": 2, "a": {"_count": 1}, "kept": {"_count": 1}}, "came": {"_count": 1, "bustling": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "not": {"_count": 1}}, "had": {"_count": 2, "seen": {"_count": 1}, "been": {"_count": 1}}}, "pleaded": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 2, "Hagrid": {"_count": 1}, "him": {"_count": 1}}, "innocence": {"_count": 1, "and": {"_count": 1}}}, "resting": {"_count": 17, "look": {"_count": 1, "lying": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 1}, "chin": {"_count": 1}}, "on": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "upon": {"_count": 3, "Fleurs": {"_count": 1}, "a": {"_count": 2}}, "facedown": {"_count": 1, "on": {"_count": 1}}, "its": {"_count": 1, "beautiful": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "against": {"_count": 1, "tree": {"_count": 1}}, "one": {"_count": 1, "on": {"_count": 1}}, "place": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "its": {"_count": 1}}, "then": {"_count": 1, "climbed": {"_count": 1}}}, "Harryl": {"_count": 4, "Hermione": {"_count": 1, "looked": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "He": {"_count": 2, "had": {"_count": 1}, "opened": {"_count": 1}}}, "fling": {"_count": 4, "her": {"_count": 1, "arms": {"_count": 1}}, "one": {"_count": 1, "leg": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 1, "locket": {"_count": 1}}}, "occasions": {"_count": 16, "when": {"_count": 4, "the": {"_count": 1}, "we": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "but": {"_count": 1, "either": {"_count": 1}}, "for": {"_count": 1, "full": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "always": {"_count": 1}}, "like": {"_count": 1, "these": {"_count": 1}}, "it": {"_count": 1, "strayed": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "is": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}}, "audience": {"_count": 5, "they": {"_count": 1, "gasped": {"_count": 1}}, "but": {"_count": 1, "gave": {"_count": 1}}, "has": {"_count": 1, "assembled": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "her": {"_count": 1}}}, "\u2018to": {"_count": 1, "the": {"_count": 1, "wellorganized": {"_count": 1}}}, "wellorganized": {"_count": 1, "mind": {"_count": 1, "death": {"_count": 1}}}, "rocker": {"_count": 4, "said": {"_count": 2, "Ron": {"_count": 2}}, "all": {"_count": 1, "right": {"_count": 1}}, "and": {"_count": 1, "informed": {"_count": 1}}}, "\u2018Harrys": {"_count": 1, "gone": {"_count": 1, "after": {"_count": 1}}}, "Sending": {"_count": 4, "you": {"_count": 1, "your": {"_count": 1}}, "the": {"_count": 1, "family": {"_count": 1}}, "a": {"_count": 1, "letter": {"_count": 1}}, "an": {"_count": 1, "owl": {"_count": 1}}}, "stopping": {"_count": 45, "us": {"_count": 1, "he": {"_count": 1}}, "my": {"_count": 1, "letters": {"_count": 1}}, "abruptly": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "they": {"_count": 1}}, "short": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "a": {"_count": 1, "massive": {"_count": 1}}, "halfway": {"_count": 1, "through": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "twisting": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 2, "abruptly": {"_count": 1}, "suddenly": {"_count": 1}}, "me": {"_count": 1, "entering": {"_count": 1}}, "dead": {"_count": 6, "in": {"_count": 4}, "": {"_count": 1}, "and": {"_count": 1}}, "in": {"_count": 4, "front": {"_count": 2}, "their": {"_count": 1}, "his": {"_count": 1}}, "puking": {"_count": 1, "long": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "What": {"_count": 1, "on": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "students": {"_count": 1, "at": {"_count": 1}}, "only": {"_count": 1, "when": {"_count": 1}}, "mid": {"_count": 1, "sentence": {"_count": 1}}, "again": {"_count": 1, "within": {"_count": 1}}, "to": {"_count": 1, "talk": {"_count": 1}}, "outside": {"_count": 1, "Madam": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "squarely": {"_count": 1, "in": {"_count": 1}}, "Voldemort": {"_count": 1, "isnt": {"_count": 1}}, "moment": {"_count": 1, "that": {"_count": 1}}, "there": {"_count": 1, "so": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "looking": {"_count": 1}}, "her": {"_count": 1, "blowing": {"_count": 1}}, "clutching": {"_count": 1, "the": {"_count": 1}}}, "accident": {"_count": 34, "he": {"_count": 3, "let": {"_count": 1}, "whispered": {"_count": 1}, "said": {"_count": 1}}, "They": {"_count": 1, "gave": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 14, "!": {"_count": 2}, ".": {"_count": 11}, "?": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "if": {"_count": 1, "theyd": {"_count": 1}}, "or": {"_count": 3, "some": {"_count": 1}, "anything": {"_count": 1}, "something": {"_count": 1}}, "mustnt": {"_count": 1, "it": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Luna": {"_count": 1, "Lovegood": {"_count": 1}}, "some": {"_count": 1, "weeks": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "given": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "because": {"_count": 1}}}, "ofyear": {"_count": 1, "feast": {"_count": 1, "tomorrow": {"_count": 1}}}, "steamrollered": {"_count": 2, "by": {"_count": 1, "Ravenclaw": {"_count": 1}}, "on": {"_count": 1, "still": {"_count": 1}}}, "foodll": {"_count": 1, "be": {"_count": 1, "good": {"_count": 1}}}, "bustled": {"_count": 20, "over": {"_count": 2, "": {"_count": 1}, "rubbing": {"_count": 1}}, "off": {"_count": 5, "to": {"_count": 4}, "": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "up": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "away": {"_count": 1, "out": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 2}}, "past": {"_count": 1, "wearing": {"_count": 1}}}, "fifteen": {"_count": 37, "minutes": {"_count": 10, "now": {"_count": 1}, "": {"_count": 4}, "to": {"_count": 1}, "Harry": {"_count": 1}, "later": {"_count": 1}, "of": {"_count": 1}, "left": {"_count": 1}}, "you": {"_count": 1, "get": {"_count": 1}}, "years": {"_count": 11, "they": {"_count": 1}, "previously": {"_count": 1}, "old": {"_count": 1}, "ago": {"_count": 6}, "": {"_count": 1}, "earlier": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "Sickles": {"_count": 2, "three": {"_count": 1}, "and": {"_count": 1}}, "more": {"_count": 1, "fast": {"_count": 1}}, "and": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "sixteen": {"_count": 1}}, "Im": {"_count": 1, "fifteen": {"_count": 1}}, "feet": {"_count": 1, "into": {"_count": 1}}, "inch": {"_count": 1, "essay": {"_count": 1}}, "highly": {"_count": 1, "unpleasant": {"_count": 1}}}, "sniffily": {"_count": 3, "as": {"_count": 1, "though": {"_count": 1}}, "and": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "risky": {"_count": 8, "feasts": {"_count": 1, "could": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "especially": {"_count": 1, "right": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "said": {"_count": 1, "Moody": {"_count": 1}}, "business": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "increased": {"_count": 1}}}, "indoors": {"_count": 3, "Hagrid": {"_count": 1, "looked": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "chucked": {"_count": 13, "out": {"_count": 5, "an": {"_count": 1}, "and": {"_count": 2}, "as": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 2, "Beaters": {"_count": 1}, "PlayStation": {"_count": 1}}, "it": {"_count": 2, "as": {"_count": 1}, "away": {"_count": 1}}, "me": {"_count": 1, "out": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}, "anyone": {"_count": 1, "have": {"_count": 1}}}, "grief": {"_count": 25, "and": {"_count": 3, "remorse": {"_count": 1}, "that": {"_count": 1}, "celebration": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "waiting": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "dragging": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 3, "had": {"_count": 3}}, "so": {"_count": 1, "its": {"_count": 1}}, "turned": {"_count": 1, "magically": {"_count": 1}}, "upon": {"_count": 1, "her": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "thundering": {"_count": 1, "in": {"_count": 1}}, "because": {"_count": 1, "Master": {"_count": 1}}, "for": {"_count": 2, "Dobby": {"_count": 1}, "Sirius": {"_count": 1}}, "in": {"_count": 1, "sweat": {"_count": 1}}, "Harry": {"_count": 1, "dived": {"_count": 1}}, "the": {"_count": 1, "price": {"_count": 1}}}, "remorse": {"_count": 16, "great": {"_count": 1, "tears": {"_count": 1}}, "with": {"_count": 1, "amusement": {"_count": 1}}, "so": {"_count": 1, "deep": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "for": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Severus": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "later": {"_count": 1}}, "Riddle": {"_count": 1, "": {"_count": 1}}}, "leaking": {"_count": 12, "down": {"_count": 3, "into": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}}, "blood": {"_count": 1, "onto": {"_count": 1}}, "from": {"_count": 4, "behind": {"_count": 1}, "the": {"_count": 2}, "Snape": {"_count": 1}}, "Ministry": {"_count": 1, "of": {"_count": 1}}, "eyes": {"_count": 1, "with": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}}, "VOLDEMORT": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "TO": {"_count": 1, "GO": {"_count": 1}}}, "sandwich": {"_count": 6, "is": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "there": {"_count": 1, "Ive": {"_count": 1}}}, "chuckle": {"_count": 7, "": {"_count": 5, ".": {"_count": 5}}, "at": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "stood": {"_count": 1}}}, "fix": {"_count": 20, "it": {"_count": 4, "": {"_count": 2}, "up": {"_count": 1}, "said": {"_count": 1}}, "your": {"_count": 2, "arm": {"_count": 1}, "nose": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "that": {"_count": 3, "in": {"_count": 1}, "shes": {"_count": 1}, "said": {"_count": 1}}, "on": {"_count": 1, "Neville": {"_count": 1}}, "a": {"_count": 2, "leash": {"_count": 1}, "regular": {"_count": 1}}, "the": {"_count": 1, "leash": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "trials": {"_count": 1}}, "his": {"_count": 1, "thoughts": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}}, "shoulda": {"_count": 2, "sacked": {"_count": 1, "me": {"_count": 1}}, "known": {"_count": 1, "there": {"_count": 1}}}, "y": {"_count": 2, "eh": {"_count": 1, "this": {"_count": 1}}, "oh": {"_count": 1, "sorry": {"_count": 1}}}, "leathercovered": {"_count": 1, "book": {"_count": 1, "": {"_count": 1}}}, "Smiling": {"_count": 7, "and": {"_count": 1, "waving": {"_count": 1}}, "serenely": {"_count": 1, "Hermione": {"_count": 1}}, "faintly": {"_count": 1, "she": {"_count": 1}}, "to": {"_count": 2, "himself": {"_count": 2}}, "slightly": {"_count": 2, "he": {"_count": 1}, "at": {"_count": 1}}}, "Sent": {"_count": 3, "owls": {"_count": 1, "off": {"_count": 1}}, "a": {"_count": 1, "letter": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "endofyear": {"_count": 3, "feast": {"_count": 1, "alone": {"_count": 1}}, "report": {"_count": 1, "": {"_count": 1}}, "tests": {"_count": 1, "": {"_count": 1}}}, "Pomfreys": {"_count": 8, "fussing": {"_count": 1, "about": {"_count": 1}}, "view": {"_count": 1, "": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}, "footsteps": {"_count": 1, "had": {"_count": 1}}, "words": {"_count": 1, "quite": {"_count": 1}}, "office": {"_count": 2, "and": {"_count": 1}, "door": {"_count": 1}}, "care": {"_count": 1, "": {"_count": 1}}}, "fussing": {"_count": 7, "about": {"_count": 3, "insisting": {"_count": 1}, "how": {"_count": 1}, "for": {"_count": 1}}, "over": {"_count": 3, "Hermione": {"_count": 1}, "him": {"_count": 1}, "us": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "insisting": {"_count": 9, "on": {"_count": 3, "giving": {"_count": 1}, "taking": {"_count": 1}, "team": {"_count": 1}}, "we": {"_count": 1, "add": {"_count": 1}}, "that": {"_count": 4, "the": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "instead": {"_count": 1, "on": {"_count": 1}}}, "checkup": {"_count": 1, "so": {"_count": 1, "the": {"_count": 1}}}, "decked": {"_count": 1, "out": {"_count": 1, "in": {"_count": 1}}}, "serpent": {"_count": 27, "covered": {"_count": 1, "the": {"_count": 1}}, "vanished": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "uncoiling": {"_count": 1, "itself": {"_count": 1}}, "was": {"_count": 1, "barely": {"_count": 1}}, "bright": {"_count": 1, "poisonous": {"_count": 1}}, "swayed": {"_count": 1, "confused": {"_count": 1}}, "of": {"_count": 1, "Slytherin": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "for": {"_count": 1, "Slytherin": {"_count": 1}}, "to": {"_count": 1, "represent": {"_count": 1}}, "however": {"_count": 1, "split": {"_count": 1}}, "again": {"_count": 1, "in": {"_count": 1}}, "got": {"_count": 1, "Arthur": {"_count": 1}}, "which": {"_count": 1, "relinquished": {"_count": 1}}, "tongue": {"_count": 1, "the": {"_count": 1}}, "tails": {"_count": 1, "that": {"_count": 1}}, "door": {"_count": 1, "knocker": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "McGonagall": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "lunged": {"_count": 1, "at": {"_count": 1}}, "underwater": {"_count": 1, "safe": {"_count": 1}}, "in": {"_count": 1, "its": {"_count": 1}}, "floated": {"_count": 1, "after": {"_count": 1}}}, "hush": {"_count": 5, "and": {"_count": 1, "then": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}, "fell": {"_count": 2, "over": {"_count": 2}}}, "Fortunately": {"_count": 6, "Dumbledore": {"_count": 1, "arrived": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "Malfoy": {"_count": 1, "didnt": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 1, "attention": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "waffle": {"_count": 3, "before": {"_count": 1, "we": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "Hopefully": {"_count": 4, "your": {"_count": 1, "heads": {"_count": 1}}, "well": {"_count": 1, "be": {"_count": 1}}, "whatever": {"_count": 1, "Peeves": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}}, "fuller": {"_count": 3, "than": {"_count": 2, "they": {"_count": 1}, "before": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "awarding": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "thus": {"_count": 9, "In": {"_count": 1, "fourth": {"_count": 1}}, "with": {"_count": 1, "one": {"_count": 1}}, "and": {"_count": 1, "cry": {"_count": 1}}, "far": {"_count": 1, "": {"_count": 1}}, "obliterating": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "left": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "half": {"_count": 1}}, "the": {"_count": 1, "charm": {"_count": 1}}}, "fiftytwo": {"_count": 3, "Ravenclaw": {"_count": 1, "has": {"_count": 1}}, "but": {"_count": 1, "Hang": {"_count": 1}}, "ingredients": {"_count": 1, "including": {"_count": 1}}}, "twentysix": {"_count": 2, "and": {"_count": 1, "Slytherin": {"_count": 1}}, "Galleons": {"_count": 1, "already": {"_count": 1}}}, "stamping": {"_count": 17, "broke": {"_count": 1, "out": {"_count": 1}}, "out": {"_count": 3, "vampires": {"_count": 1}, "a": {"_count": 1}, "your": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "Cedric": {"_count": 1}}, "her": {"_count": 3, "foot": {"_count": 3}}, "with": {"_count": 1, "all": {"_count": 1}}, "their": {"_count": 1, "feet": {"_count": 1}}, "again": {"_count": 1, "on": {"_count": 1}}, "furiously": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "long": {"_count": 1}}, "houseelf": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 1, "and": {"_count": 1}}}, "account": {"_count": 27, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "goodfornothing": {"_count": 1, "lazy": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 3}, "Dumbledores": {"_count": 1}}, "of": {"_count": 8, "exactly": {"_count": 1}, "what": {"_count": 2}, "the": {"_count": 1}, "his": {"_count": 2}, "Madam": {"_count": 1}, "life": {"_count": 1}}, "whatsoever": {"_count": 1, "are": {"_count": 1}}, "should": {"_count": 1, "any": {"_count": 1}}, "wherever": {"_count": 1, "he": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 1, "Gringotts": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}}, "lastminute": {"_count": 10, "points": {"_count": 1, "to": {"_count": 1}}, "discussion": {"_count": 1, "of": {"_count": 1}}, "studying": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "stragglers": {"_count": 1, "all": {"_count": 1}}, "goodbyes": {"_count": 1, "with": {"_count": 1}}, "practice": {"_count": 1, "during": {"_count": 1}}, "scramble": {"_count": 1, "": {"_count": 1}}, "stuff": {"_count": 1, "Griphook": {"_count": 1}}, "reminders": {"_count": 1, "": {"_count": 1}}}, "dish": {"_count": 12, "out": {"_count": 1, "": {"_count": 1}}, "shattered": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 3, "stew": {"_count": 1}, "some": {"_count": 1}, "rhubarb": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "carried": {"_count": 1}}, "within": {"_count": 1, "reach": {"_count": 1}}, "the": {"_count": 1, "dirt": {"_count": 1}}, "now": {"_count": 1, "suspended": {"_count": 1}}}, "radish": {"_count": 5, "with": {"_count": 1, "a": {"_count": 1}}, "earrings": {"_count": 1, "her": {"_count": 1}}, "colored": {"_count": 1, "again": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "Dirigible": {"_count": 1}}}, "sunburn": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bestplayed": {"_count": 1, "game": {"_count": 1, "of": {"_count": 1}}}, "award": {"_count": 14, "Gryffindor": {"_count": 3, "House": {"_count": 3}}, "ten": {"_count": 1, "points": {"_count": 1}}, "for": {"_count": 4, "special": {"_count": 3}, "catching": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "marks": {"_count": 1, "out": {"_count": 1}}, "her": {"_count": 1, "twentyfive": {"_count": 1}}, "him": {"_count": 2, "fortyseven": {"_count": 1}, "forty": {"_count": 1}}}, "din": {"_count": 12, "was": {"_count": 1, "deafening": {"_count": 1}}, "they": {"_count": 1, "Ern": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 2, "the": {"_count": 1}, "loud": {"_count": 1}}, "would": {"_count": 1, "raise": {"_count": 1}}, "I": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "birds": {"_count": 1}}, "Fight": {"_count": 1, "": {"_count": 1}}}, "seventytwo": {"_count": 1, "points": {"_count": 1, "exactly": {"_count": 1}}}, "gradually": {"_count": 9, "fell": {"_count": 1, "silent": {"_count": 1}}, "a": {"_count": 1, "babble": {"_count": 1}}, "darkened": {"_count": 1, "until": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "filling": {"_count": 1, "up": {"_count": 1}}, "closer": {"_count": 1, "with": {"_count": 1}}, "regained": {"_count": 1, "control": {"_count": 1}}, "over": {"_count": 1, "Harry": {"_count": 1}}}, "kinds": {"_count": 9, "of": {"_count": 9, "courage": {"_count": 1}, "chocolate": {"_count": 1}, "Dark": {"_count": 1}, "wounds": {"_count": 1}, "powers": {"_count": 1}, "magic": {"_count": 2}, "of": {"_count": 1}, "stunts": {"_count": 1}}}, "takes": {"_count": 30, "a": {"_count": 4, "great": {"_count": 1}, "far": {"_count": 1}, "further": {"_count": 1}, "full": {"_count": 1}}, "it": {"_count": 2, "apart": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 9, "Quaffle": {"_count": 6}, "Bulgarian": {"_count": 1}, "Daily": {"_count": 1}, "form": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "place": {"_count": 2, "this": {"_count": 2}}, "when": {"_count": 1, "he": {"_count": 1}}, "real": {"_count": 1, "strength": {"_count": 1}}, "years": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "Defense": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "try": {"_count": 1}}, "over": {"_count": 1, "is": {"_count": 1}}, "you": {"_count": 1, "along": {"_count": 1}}, "six": {"_count": 1, "months": {"_count": 1}}, "care": {"_count": 1, "of": {"_count": 1}}, "no": {"_count": 1, "trouble": {"_count": 1}}, "your": {"_count": 1, "choice": {"_count": 1}}}, "explosion": {"_count": 17, "had": {"_count": 1, "taken": {"_count": 1}}, "of": {"_count": 6, "cheering": {"_count": 1}, "complaints": {"_count": 1}, "sound": {"_count": 1}, "agony": {"_count": 1}, "choking": {"_count": 1}, "crystal": {"_count": 1}}, "grunted": {"_count": 1, "Ernie": {"_count": 1}}, "took": {"_count": 1, "place": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "wand": {"_count": 1, "backfiring": {"_count": 1}}, "something": {"_count": 1, "very": {"_count": 1}}, "slammed": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 1, "overhead": {"_count": 1}}}, "nudged": {"_count": 22, "Ron": {"_count": 5, "in": {"_count": 2}, "and": {"_count": 2}, "who": {"_count": 1}}, "Harry": {"_count": 3, "and": {"_count": 3}}, "him": {"_count": 4, "hard": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 1}, "in": {"_count": 1}}, "Buckbeaks": {"_count": 1, "sides": {"_count": 1}}, "the": {"_count": 2, "girl": {"_count": 1}, "sack": {"_count": 1}}, "her": {"_count": 1, "hard": {"_count": 1}}, "Hagrid": {"_count": 1, "into": {"_count": 1}}, "their": {"_count": 1, "neighbors": {"_count": 1}}, "Euan": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "in": {"_count": 1}}, "Lavender": {"_count": 1, "who": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}}, "downfall": {"_count": 9, "of": {"_count": 3, "Slytherin": {"_count": 1}, "his": {"_count": 1}, "He": {"_count": 1}}, "in": {"_count": 1, "little": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "turned": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "jot": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "grades": {"_count": 15, "of": {"_count": 1, "the": {"_count": 1}}, "dont": {"_count": 1, "pick": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "matter": {"_count": 1, "very": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "were": {"_count": 1, "getting": {"_count": 1}}, "we": {"_count": 1, "got": {"_count": 1}}, "O": {"_count": 1, "for": {"_count": 1}}, "for": {"_count": 1, "that": {"_count": 1}}, "There": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 1, "wondered": {"_count": 1}}, "to": {"_count": 1, "continue": {"_count": 1}}, "in": {"_count": 1, "every": {"_count": 1}}}, "scraped": {"_count": 9, "through": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "handful": {"_count": 1}}, "as": {"_count": 1, "everyone": {"_count": 1}}, "an": {"_count": 2, "E": {"_count": 1}, "O": {"_count": 1}}, "the": {"_count": 2, "trunk": {"_count": 1}, "fragments": {"_count": 1}}, "plates": {"_count": 1, "and": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "abysmal": {"_count": 5, "Potions": {"_count": 1, "one": {"_count": 1}}, "memory": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "performance": {"_count": 1, "in": {"_count": 1}}, "goalkeeping": {"_count": 1, "record": {"_count": 1}}}, "wardrobes": {"_count": 2, "were": {"_count": 1, "empty": {"_count": 1}}, "clawed": {"_count": 1, "feet": {"_count": 1}}}, "boarding": {"_count": 3, "the": {"_count": 1, "Hogwarts": {"_count": 1}}, "up": {"_count": 1, "everything": {"_count": 1}}, "an": {"_count": 1, "Underground": {"_count": 1}}}, "greener": {"_count": 2, "and": {"_count": 1, "tidier": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}}, "tidier": {"_count": 2, "eating": {"_count": 1, "Bertie": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "towns": {"_count": 4, "pulling": {"_count": 1, "off": {"_count": 1}}, "that": {"_count": 1, "gave": {"_count": 1}}, "and": {"_count": 1, "countryside": {"_count": 1}}, "gliding": {"_count": 1, "out": {"_count": 1}}}, "wizened": {"_count": 10, "old": {"_count": 1, "guard": {"_count": 1}}, "fraillooking": {"_count": 1, "wizard": {"_count": 1}}, "toothless": {"_count": 1, "landlord": {"_count": 1}}, "witch": {"_count": 3, "flit": {"_count": 1}, "started": {"_count": 1}, "who": {"_count": 1}}, "hands": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "toothless": {"_count": 1}}, "arm": {"_count": 1, "into": {"_count": 1}}, "stump": {"_count": 1, "a": {"_count": 1}}}, "gate": {"_count": 31, "in": {"_count": 1, "twos": {"_count": 1}}, "as": {"_count": 1, "Hagrid": {"_count": 1}}, "swam": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "set": {"_count": 1}, "walked": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "Dumbledore": {"_count": 1, "stopped": {"_count": 1}}, "swung": {"_count": 1, "shut": {"_count": 1}}, "Id": {"_count": 1, "like": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "moments": {"_count": 1, "later": {"_count": 1}}, "with": {"_count": 1, "what": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "gazing": {"_count": 1, "up": {"_count": 1}}, "not": {"_count": 1, "wishing": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "creaked": {"_count": 2, "a": {"_count": 1}, "as": {"_count": 1}}, "Griphook": {"_count": 1, "spoke": {"_count": 1}}}, "twos": {"_count": 4, "and": {"_count": 4, "threes": {"_count": 4}}}, "threes": {"_count": 5, "so": {"_count": 1, "they": {"_count": 1}}, "the": {"_count": 2, "new": {"_count": 1}, "rest": {"_count": 1}}, "and": {"_count": 1, "fours": {"_count": 1}}, "most": {"_count": 1, "people": {"_count": 1}}}, "alarming": {"_count": 13, "the": {"_count": 1, "Muggles": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "a": {"_count": 1, "misleading": {"_count": 1}}, "bang": {"_count": 1, "one": {"_count": 1}}, "rate": {"_count": 1, "she": {"_count": 1}}, "you": {"_count": 1, "with": {"_count": 1}}, "height": {"_count": 1, "again": {"_count": 1}}, "change": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 1, "somehow": {"_count": 1}}, "in": {"_count": 1, "themselves": {"_count": 1}}, "statement": {"_count": 1, "to": {"_count": 1}}}, "gateway": {"_count": 5, "back": {"_count": 1, "to": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Dobby": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "Nurmengard": {"_count": 1}}}, "squealed": {"_count": 41, "": {"_count": 4, ".": {"_count": 4}}, "the": {"_count": 4, "gnome": {"_count": 1}, "elf": {"_count": 2}, "voice": {"_count": 1}}, "Hermione": {"_count": 9, "": {"_count": 7}, "the": {"_count": 1}, "terrified": {"_count": 1}}, "through": {"_count": 1, "her": {"_count": 1}}, "a": {"_count": 1, "girl": {"_count": 1}}, "Aunt": {"_count": 2, "Petunia": {"_count": 2}}, "as": {"_count": 2, "they": {"_count": 2}}, "Lavender": {"_count": 2, "Brown": {"_count": 2}}, "and": {"_count": 2, "ran": {"_count": 1}, "clutched": {"_count": 1}}, "Angelina": {"_count": 1, "Johnson": {"_count": 1}}, "Pettigrew": {"_count": 2, "looking": {"_count": 1}, "": {"_count": 1}}, "Winky": {"_count": 2, "tears": {"_count": 1}, "furiously": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "shrilly": {"_count": 1, "as": {"_count": 1}}, "Parvati": {"_count": 1, "who": {"_count": 1}}, "old": {"_count": 1, "Hepzibah": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "Congratulations": {"_count": 1, "": {"_count": 1}}, "Flitwick": {"_count": 1, "raising": {"_count": 1}}}, "Busy": {"_count": 3, "year": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "Vexed": {"_count": 1}}}, "purplefaced": {"_count": 4, "still": {"_count": 1, "mustached": {"_count": 1}}, "uncle": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "even": {"_count": 1}}, "shouting": {"_count": 1, "his": {"_count": 1}}}, "mustached": {"_count": 3, "still": {"_count": 1, "looking": {"_count": 1}}, "face": {"_count": 1, "were": {"_count": 1}}, "wizard": {"_count": 1, "and": {"_count": 1}}}, "manner": {"_count": 19, "of": {"_count": 4, "speaking": {"_count": 1}, "revolting": {"_count": 1}, "taking": {"_count": 1}, "dying": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "that": {"_count": 2, "reminded": {"_count": 1}, "recalled": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "had": {"_count": 1, "expected": {"_count": 1}}, "rapidly": {"_count": 1, "though": {"_count": 1}}, "o": {"_count": 1, "speakin": {"_count": 1}}, "changed": {"_count": 1, "it": {"_count": 1}}}, "holiday": {"_count": 33, "said": {"_count": 2, "Hermione": {"_count": 1}, "Mrs": {"_count": 1}}, "its": {"_count": 1, "going": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 3, "Egypt": {"_count": 1}, "France": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 6, "!": {"_count": 2}, ".": {"_count": 3}, "?": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "Albania": {"_count": 1}}, "preferring": {"_count": 1, "to": {"_count": 1}}, "summer": {"_count": 1, "before": {"_count": 1}}, "steam": {"_count": 1, "to": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "when": {"_count": 1, "someone": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "together": {"_count": 1, "so": {"_count": 1}}, "did": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "spirit": {"_count": 1, "might": {"_count": 1}}, "with": {"_count": 1, "Sirius": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "it": {"_count": 1}}, "wont": {"_count": 1, "it": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "after": {"_count": 2, "they": {"_count": 1}, "all": {"_count": 1}}}, "spreading": {"_count": 22, "over": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "around": {"_count": 1}}, "a": {"_count": 1, "damp": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "poison": {"_count": 1, "through": {"_count": 1}}, "slowly": {"_count": 1, "and": {"_count": 1}}, "unchecked": {"_count": 1, "over": {"_count": 1}}, "marmalade": {"_count": 1, "on": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "great": {"_count": 1}}, "discord": {"_count": 2, "and": {"_count": 2}}, "across": {"_count": 4, "his": {"_count": 2}, "her": {"_count": 1}, "Dobbys": {"_count": 1}}, "evil": {"_count": 1, "nasty": {"_count": 1}}, "throughout": {"_count": 1, "him": {"_count": 1}}, "despair": {"_count": 1, "and": {"_count": 1}}, "through": {"_count": 2, "him": {"_count": 2}}, "out": {"_count": 1, "in": {"_count": 1}}}, "WORST": {"_count": 2, "BIRTHDAY": {"_count": 1, "Not": {"_count": 1}}, "MEMORY": {"_count": 1, "BY": {"_count": 1}}}, "BIRTHDAY": {"_count": 2, "Not": {"_count": 1, "for": {"_count": 1}}, "SURPRISES": {"_count": 1, "The": {"_count": 1}}}, "Shes": {"_count": 114, "bored": {"_count": 1, "he": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "been": {"_count": 6, "dying": {"_count": 1}, "talking": {"_count": 1}, "buzzing": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}, "breaking": {"_count": 1}}, "shes": {"_count": 1, "sent": {"_count": 1}}, "not": {"_count": 13, "dead": {"_count": 1}, "shes": {"_count": 1}, "said": {"_count": 1}, "my": {"_count": 1}, "letting": {"_count": 1}, "wrong": {"_count": 1}, "feeling": {"_count": 1}, "here": {"_count": 2}, "that": {"_count": 2}, "an": {"_count": 1}, "old": {"_count": 1}}, "still": {"_count": 5, "alive": {"_count": 1}, "very": {"_count": 1}, "letting": {"_count": 1}, "acting": {"_count": 1}, "Rons": {"_count": 1}}, "just": {"_count": 4, "giving": {"_count": 1}, "trying": {"_count": 1}, "outside": {"_count": 1}, "never": {"_count": 1}}, "hidden": {"_count": 1, "her": {"_count": 1}}, "a": {"_count": 7, "horrible": {"_count": 1}, "fourth": {"_count": 1}, "veelcd": {"_count": 1}, "lovely": {"_count": 1}, "damn": {"_count": 1}, "bit": {"_count": 1}, "goodlooking": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "bin": {"_count": 1, "cornin": {"_count": 1}}, "cried": {"_count": 1, "a": {"_count": 1}}, "found": {"_count": 1, "some": {"_count": 1}}, "got": {"_count": 6, "her": {"_count": 1}, "an": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "it": {"_count": 1}, "to": {"_count": 1}}, "seeing": {"_count": 1, "us": {"_count": 1}}, "my": {"_count": 3, "friend": {"_count": 2}, "auntie": {"_count": 1}}, "furious": {"_count": 1, "at": {"_count": 1}}, "always": {"_count": 1, "going": {"_count": 1}}, "doing": {"_count": 1, "a": {"_count": 1}}, "staying": {"_count": 1, "in": {"_count": 1}}, "gone": {"_count": 2, "said": {"_count": 1}, "a": {"_count": 1}}, "here": {"_count": 1, "too": {"_count": 1}}, "part": {"_count": 1, "veela": {"_count": 1}}, "lying": {"_count": 1, "said": {"_count": 1}}, "going": {"_count": 3, "with": {"_count": 2}, "out": {"_count": 1}}, "fine": {"_count": 1, "": {"_count": 1}}, "really": {"_count": 1, "ugly": {"_count": 1}}, "made": {"_count": 1, "you": {"_count": 1}}, "unhappy": {"_count": 1, "": {"_count": 1}}, "jus": {"_count": 1, "left": {"_count": 1}}, "certainly": {"_count": 1, "not": {"_count": 1}}, "Head": {"_count": 1, "of": {"_count": 1}}, "fair": {"_count": 1, "shell": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "canceled": {"_count": 1, "our": {"_count": 1}}, "evil": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}, "sick": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "said": {"_count": 1}}, "horrible": {"_count": 1, "yes": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "foul": {"_count": 1, "enough": {"_count": 1}}, "taken": {"_count": 1, "points": {"_count": 1}}, "an": {"_count": 1, "awful": {"_count": 1}}, "hurt": {"_count": 1, "": {"_count": 1}}, "given": {"_count": 1, "the": {"_count": 1}}, "goin": {"_count": 1, "back": {"_count": 1}}, "never": {"_count": 1, "failed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "Loony": {"_count": 1, "": {"_count": 1}}, "probably": {"_count": 2, "cheerful": {"_count": 1}, "teaching": {"_count": 1}}, "driving": {"_count": 2, "me": {"_count": 2}}, "so": {"_count": 1, "full": {"_count": 1}}, "actually": {"_count": 1, "having": {"_count": 1}}, "Rons": {"_count": 2, "sister": {"_count": 2}}, "outofbounds": {"_count": 1, "": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "determined": {"_count": 1, "": {"_count": 1}}, "great": {"_count": 1, "isnt": {"_count": 1}}, "written": {"_count": 1, "a": {"_count": 1}}, "right": {"_count": 1, "said": {"_count": 1}}, "Mafalda": {"_count": 1, "Hopkirk": {"_count": 1}}, "nutty": {"_count": 1, "as": {"_count": 1}}, "like": {"_count": 1, "my": {"_count": 1}}, "tough": {"_count": 1, "Luna": {"_count": 1}}, "only": {"_count": 2, "Stunned": {"_count": 1}, "a": {"_count": 1}}, "gorn": {"_count": 1, "and": {"_count": 1}}, "sixteen": {"_count": 1, "": {"_count": 1}}}, "belch": {"_count": 3, "from": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "several": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Nonsense": {"_count": 4, "Petunia": {"_count": 1, "I": {"_count": 1}}, "OFlaherty": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "said": {"_count": 1, "Slughorn": {"_count": 1}}}, "heartily": {"_count": 20, "": {"_count": 9, ".": {"_count": 9}}, "sick": {"_count": 1, "of": {"_count": 1}}, "embarrassed": {"_count": 1, "than": {"_count": 1}}, "as": {"_count": 3, "she": {"_count": 1}, "he": {"_count": 1}, "they": {"_count": 1}}, "wishing": {"_count": 1, "hed": {"_count": 1}}, "it": {"_count": 1, "did": {"_count": 1}}, "kissed": {"_count": 1, "by": {"_count": 1}}, "with": {"_count": 1, "Crabbe": {"_count": 1}}, "disliked": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "drooped": {"_count": 7, "over": {"_count": 1, "either": {"_count": 1}}, "right": {"_count": 1, "onto": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "fell": {"_count": 1}, "suddenly": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}}, "Pass": {"_count": 6, "the": {"_count": 2, "frying": {"_count": 1}, "marmalade": {"_count": 1}}, "me": {"_count": 2, "those": {"_count": 1}, "a": {"_count": 1}}, "it": {"_count": 1, "on": {"_count": 1}}, "Grades": {"_count": 1, "Fail": {"_count": 1}}}, "sentence": {"_count": 36, "on": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 2, "drowned": {"_count": 2}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "to": {"_count": 2, "fall": {"_count": 1}, "allow": {"_count": 1}}, "she": {"_count": 1, "strode": {"_count": 1}}, "for": {"_count": 6, "her": {"_count": 2}, "him": {"_count": 4}}, "in": {"_count": 3, "Azkaban": {"_count": 2}, "his": {"_count": 1}}, "An": {"_count": 1, "ugly": {"_count": 1}}, "Bozo": {"_count": 1, "we": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "you": {"_count": 1, "there": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "hanging": {"_count": 1, "and": {"_count": 1}}, "Granger": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "gravely": {"_count": 1, "": {"_count": 1}}, "wellknown": {"_count": 1, "gamekeeper": {"_count": 1}}, "pronounced": {"_count": 1, "upon": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}}, "throbbing": {"_count": 20, "in": {"_count": 4, "his": {"_count": 3}, "the": {"_count": 1}}, "on": {"_count": 1, "Harrys": {"_count": 1}}, "green": {"_count": 1, "boil": {"_count": 1}}, "moans": {"_count": 1, "": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "fit": {"_count": 1, "to": {"_count": 1}}, "painfully": {"_count": 2, "": {"_count": 2}}, "horribly": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 1, "emotion": {"_count": 1}}, "like": {"_count": 1, "mad": {"_count": 1}}, "he": {"_count": 1, "drew": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "ear": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "temples": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "TOLD": {"_count": 3, "YOU": {"_count": 2, "thundered": {"_count": 1}, "NO": {"_count": 1}}, "VOLDEMORT": {"_count": 1, "TO": {"_count": 1}}}, "spraying": {"_count": 10, "spit": {"_count": 1, "over": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "Harry": {"_count": 2, "with": {"_count": 2}}, "immediately": {"_count": 1, "she": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "doxy": {"_count": 1}}, "two": {"_count": 1, "doxies": {"_count": 1}}, "unconscious": {"_count": 1, "doxies": {"_count": 1}}, "mud": {"_count": 1, "in": {"_count": 1}}}, "spit": {"_count": 9, "over": {"_count": 1, "the": {"_count": 1}}, "poison": {"_count": 1, "tired": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "flying": {"_count": 1}}, "flying": {"_count": 1, "from": {"_count": 1}}, "hit": {"_count": 1, "his": {"_count": 1}}, "tea": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "what": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}}, "ABOUT": {"_count": 10, "SAYING": {"_count": 1, "THE": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "WHAT": {"_count": 1, "YOU": {"_count": 1}}, "JAMES": {"_count": 1, "IN": {"_count": 1}}, "WITHOUT": {"_count": 1, "YOU": {"_count": 1}}, "HEWHOMUSTNOTBE": {"_count": 1, "NAMED": {"_count": 1}}, "SIRIUS": {"_count": 1, "LIKE": {"_count": 1}}, "YOUKNOWWHO": {"_count": 1, "": {"_count": 1}}, "UNOPOO": {"_count": 1, "THE": {"_count": 1}}, "THE": {"_count": 1, "DEATH": {"_count": 1}}}, "SAYING": {"_count": 1, "THE": {"_count": 1, "\u2018M": {"_count": 1}}}, "\u2018M": {"_count": 1, "WORD": {"_count": 1, "IN": {"_count": 1}}}, "WORD": {"_count": 1, "IN": {"_count": 1, "OUR": {"_count": 1}}}, "OUR": {"_count": 6, "HOUSE": {"_count": 1, "": {"_count": 1}}, "KING": {"_count": 5, "With": {"_count": 1}, "": {"_count": 3}, "WEASLEY": {"_count": 1}}}, "HOUSE": {"_count": 10, "": {"_count": 4, "?": {"_count": 1}, "!": {"_count": 1}, ".": {"_count": 2}}, "The": {"_count": 2, "villagers": {"_count": 1}, "idiots": {"_count": 1}}, "OF": {"_count": 4, "BLACK": {"_count": 2}, "MY": {"_count": 1}, "GAUNT": {"_count": 1}}}, "HOW": {"_count": 7, "DARE": {"_count": 5, "YOU": {"_count": 5}}, "I": {"_count": 1, "FEEL": {"_count": 1}}, "did": {"_count": 1, "Dumbledore": {"_count": 1}}}, "DARE": {"_count": 5, "YOU": {"_count": 5, "THREATEN": {"_count": 1}, "GIVE": {"_count": 1}, "SPEAK": {"_count": 1}, "FACE": {"_count": 1}, "TALK": {"_count": 1}}}, "THREATEN": {"_count": 1, "DUDLEY": {"_count": 1, "": {"_count": 1}}}, "WARNED": {"_count": 1, "YOU": {"_count": 1, "": {"_count": 1}}}, "WILL": {"_count": 12, "NOT": {"_count": 5, "TOLERATE": {"_count": 2}, "BE": {"_count": 1}, "HAVE": {"_count": 2}}, "REQUIRE": {"_count": 1, "The": {"_count": 1}}, "YOU": {"_count": 1, "LOT": {"_count": 1}}, "MAKE": {"_count": 2, "SURE": {"_count": 2}}, "GIVE": {"_count": 1, "IT": {"_count": 1}}, "AND": {"_count": 1, "WONT": {"_count": 1}}, "OF": {"_count": 1, "ALBUS": {"_count": 1}}}, "TOLERATE": {"_count": 2, "MENTION": {"_count": 1, "OF": {"_count": 1}}, "THIS": {"_count": 1, "I": {"_count": 1}}}, "MENTION": {"_count": 1, "OF": {"_count": 1, "YOUR": {"_count": 1}}}, "ABNORMALITY": {"_count": 1, "UNDER": {"_count": 1, "THIS": {"_count": 1}}}, "UNDER": {"_count": 1, "THIS": {"_count": 1, "ROOF": {"_count": 1}}}, "ROOF": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "winded": {"_count": 5, "rhinoceros": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "explanation": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "rhinoceros": {"_count": 2, "and": {"_count": 1, "watching": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bomb": {"_count": 8, "that": {"_count": 1, "might": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "sprinted": {"_count": 1, "out": {"_count": 1}}, "sounded": {"_count": 1, "from": {"_count": 1}}, "dropped": {"_count": 1, "narrowly": {"_count": 1}}, "at": {"_count": 2, "several": {"_count": 1}, "a": {"_count": 1}}}, "fresh": {"_count": 70, "from": {"_count": 3, "his": {"_count": 1}, "my": {"_count": 1}, "Flourish": {"_count": 1}}, "wave": {"_count": 2, "of": {"_count": 2}}, "in": {"_count": 2, "everyones": {"_count": 1}, "his": {"_count": 1}}, "surge": {"_count": 1, "of": {"_count": 1}}, "pickled": {"_count": 2, "toad": {"_count": 2}}, "words": {"_count": 1, "forming": {"_count": 1}}, "meat": {"_count": 1, "when": {"_count": 1}}, "rolls": {"_count": 1, "of": {"_count": 1}}, "determination": {"_count": 1, "he": {"_count": 1}}, "attempt": {"_count": 3, "to": {"_count": 2}, "on": {"_count": 1}}, "flobberworms": {"_count": 1, "for": {"_count": 1}}, "air": {"_count": 10, "before": {"_count": 1}, "of": {"_count": 1}, "for": {"_count": 1}, "on": {"_count": 1}, "yeh": {"_count": 1}, "must": {"_count": 1}, "finding": {"_count": 1}, "might": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "embarrassment": {"_count": 1, "yesterday": {"_count": 1}}, "sentence": {"_count": 1, "An": {"_count": 1}}, "selection": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "chicken": {"_count": 1, "leg": {"_count": 1}}, "supply": {"_count": 1, "of": {"_count": 1}}, "thought": {"_count": 1, "to": {"_count": 1}}, "hexes": {"_count": 1, "for": {"_count": 1}}, "howl": {"_count": 1, "Voldemort": {"_count": 1}}, "and": {"_count": 2, "sharp": {"_count": 1}, "congealed": {"_count": 1}}, "way": {"_count": 1, "of": {"_count": 1}}, "flagon": {"_count": 1, "of": {"_count": 1}}, "shrieks": {"_count": 1, "and": {"_count": 1}}, "screams": {"_count": 1, "and": {"_count": 1}}, "stack": {"_count": 1, "of": {"_count": 1}}, "breezy": {"_count": 1, "sort": {"_count": 1}}, "cup": {"_count": 1, "": {"_count": 1}}, "cuts": {"_count": 1, "on": {"_count": 1}}, "horror": {"_count": 1, "she": {"_count": 1}}, "clean": {"_count": 1, "air": {"_count": 1}}, "inside": {"_count": 1, "he": {"_count": 1}}, "copy": {"_count": 1, "from": {"_count": 1}}, "bottle": {"_count": 1, "of": {"_count": 1}}, "memories": {"_count": 1, "into": {"_count": 1}}, "leaf": {"_count": 1, "": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}, "researches": {"_count": 1, "than": {"_count": 1}}, "heart": {"_count": 1, "into": {"_count": 1}}, "salty": {"_count": 1, "air": {"_count": 1}}, "patch": {"_count": 1, "of": {"_count": 1}}, "hiding": {"_count": 1, "places": {"_count": 1}}, "tears": {"_count": 2, "leaking": {"_count": 1}, "": {"_count": 1}}, "mass": {"_count": 1, "of": {"_count": 1}}, "flakes": {"_count": 1, "drifted": {"_count": 1}}, "dusting": {"_count": 1, "of": {"_count": 1}}, "water": {"_count": 1, "by": {"_count": 1}}, "outbreak": {"_count": 1, "of": {"_count": 1}}}, "unhappy": {"_count": 14, "to": {"_count": 1, "have": {"_count": 1}}, "ter": {"_count": 1, "take": {"_count": 1}}, "": {"_count": 6, "!": {"_count": 2}, ".": {"_count": 3}, "?": {"_count": 1}}, "when": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "that": {"_count": 1, "their": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}}, "constant": {"_count": 17, "stomachache": {"_count": 1, "": {"_count": 1}}, "war": {"_count": 1, "against": {"_count": 1}}, "neverceasing": {"_count": 1, "vigilance": {"_count": 1}}, "vigilance": {"_count": 1, "Potter": {"_count": 1}}, "changing": {"_count": 1, "of": {"_count": 1}}, "watch": {"_count": 1, "it": {"_count": 1}}, "fall": {"_count": 1, "of": {"_count": 1}}, "disappearances": {"_count": 1, "and": {"_count": 1}}, "stream": {"_count": 1, "of": {"_count": 1}}, "refrain": {"_count": 2, "": {"_count": 2}}, "low": {"_count": 1, "level": {"_count": 1}}, "danger": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 2, "impenetrable": {"_count": 2}}, "ebb": {"_count": 1, "and": {"_count": 1}}}, "stomachache": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}}, "banquets": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "cabin": {"_count": 105, "next": {"_count": 1, "to": {"_count": 1}}, "came": {"_count": 2, "into": {"_count": 1}, "a": {"_count": 1}}, "which": {"_count": 2, "had": {"_count": 1}, "stood": {"_count": 1}}, "": {"_count": 36, ".": {"_count": 36}}, "door": {"_count": 4, "opened": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "that": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "was": {"_count": 4, "Buckbeak": {"_count": 1}, "in": {"_count": 1}, "deserted": {"_count": 1}, "suffused": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "and": {"_count": 12, "said": {"_count": 1}, "knocked": {"_count": 1}, "heard": {"_count": 1}, "they": {"_count": 1}, "shut": {"_count": 1}, "pulling": {"_count": 1}, "the": {"_count": 1}, "let": {"_count": 1}, "twitched": {"_count": 1}, "disappeared": {"_count": 1}, "castle": {"_count": 1}, "was": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "someone": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 2}, "two": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "comprised": {"_count": 1, "a": {"_count": 1}}, "Hagrid": {"_count": 1, "was": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "balancing": {"_count": 1, "a": {"_count": 1}}, "still": {"_count": 1, "holding": {"_count": 1}}, "windows": {"_count": 2, "where": {"_count": 1}, "temporarily": {"_count": 1}}, "today": {"_count": 1, "sitting": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "catch": {"_count": 1}}, "however": {"_count": 1, "they": {"_count": 1}}, "Fang": {"_count": 1, "launched": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "several": {"_count": 1}}, "pausing": {"_count": 1, "only": {"_count": 1}}, "wall": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "taking": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 1, "Umbridge": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "Hermione": {"_count": 1, "turned": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "echoed": {"_count": 1}}, "they": {"_count": 1, "saw": {"_count": 1}}, "yet": {"_count": 1, "somehow": {"_count": 1}}, "toward": {"_count": 1, "Professor": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "slamming": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "looking": {"_count": 1}}}, "Forbidden": {"_count": 44, "Forest": {"_count": 44, "in": {"_count": 1}, "": {"_count": 12}, "before": {"_count": 1}, "to": {"_count": 2}, "looked": {"_count": 1}, "the": {"_count": 2}, "gilding": {"_count": 1}, "gilded": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 4}, "fluttering": {"_count": 1}, "but": {"_count": 1}, "they": {"_count": 2}, "swayed": {"_count": 1}, "were": {"_count": 1}, "was": {"_count": 1}, "whiteblond": {"_count": 1}, "which": {"_count": 1}, "where": {"_count": 1}, "now": {"_count": 2}, "with": {"_count": 1}, "The": {"_count": 1}, "big": {"_count": 1}, "Harry": {"_count": 1}, "into": {"_count": 1}, "though": {"_count": 1}}}, "spellbooks": {"_count": 21, "his": {"_count": 1, "wand": {"_count": 1}}, "were": {"_count": 1, "stacked": {"_count": 1}}, "came": {"_count": 1, "thundering": {"_count": 1}}, "wand": {"_count": 1, "cauldron": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "vanished": {"_count": 1}}, "and": {"_count": 3, "a": {"_count": 2}, "so": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "or": {"_count": 1, "quills": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "set": {"_count": 1, "them": {"_count": 1}}, "for": {"_count": 1, "sale": {"_count": 1}}, "lay": {"_count": 1, "higgledypiggledy": {"_count": 1}}, "potion": {"_count": 1, "ingredients": {"_count": 1}}, "unaware": {"_count": 1, "that": {"_count": 1}}}, "topoftheline": {"_count": 1, "Nimbus": {"_count": 1, "Two": {"_count": 1}}}, "practiced": {"_count": 13, "all": {"_count": 1, "summer": {"_count": 1}}, "disarming": {"_count": 1, "each": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "had": {"_count": 1, "been": {"_count": 1}}, "at": {"_count": 1, "operating": {"_count": 1}}, "Vanishing": {"_count": 1, "Spells": {"_count": 1}}, "Occlumency": {"_count": 1, "once": {"_count": 1}}, "wand": {"_count": 1, "movements": {"_count": 1}}, "looking": {"_count": 1, "just": {"_count": 1}}, "Apparating": {"_count": 1, "and": {"_count": 1}}}, "padlocked": {"_count": 3, "Harrys": {"_count": 1, "owl": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "heavily": {"_count": 1}}}, "messages": {"_count": 12, "to": {"_count": 2, "anyone": {"_count": 1}, "the": {"_count": 1}}, "shone": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "owls": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "or": {"_count": 1, "": {"_count": 1}}, "Isnt": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 1, "clear": {"_count": 1}}}, "neckless": {"_count": 1, "with": {"_count": 1, "an": {"_count": 1}}}, "horsefaced": {"_count": 2, "and": {"_count": 1, "bony": {"_count": 1}}, "whipped": {"_count": 1, "around": {"_count": 1}}}, "bony": {"_count": 14, "Dudley": {"_count": 1, "was": {"_count": 1}}, "wrist": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "horsefaced": {"_count": 1}}, "cheekbone": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 3, "with": {"_count": 1}, "and": {"_count": 1}, "closed": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "hands": {"_count": 2, "on": {"_count": 1}, "clawing": {"_count": 1}}, "nose": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "rump": {"_count": 1, "": {"_count": 1}}, "fingers": {"_count": 1, "at": {"_count": 1}}}, "porky": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "shoulder": {"_count": 1, "": {"_count": 1}}, "hands": {"_count": 1, "beneath": {"_count": 1}}, "or": {"_count": 1, "is": {"_count": 1}}}, "lightningshaped": {"_count": 7, "scar": {"_count": 5, "": {"_count": 1}, "on": {"_count": 2}, "it": {"_count": 1}, "and": {"_count": 1}}, "cut": {"_count": 1, "on": {"_count": 1}}, "mark": {"_count": 1, "": {"_count": 1}}}, "survived": {"_count": 29, "a": {"_count": 3, "curse": {"_count": 3}}, "when": {"_count": 2, "YouKnowWho": {"_count": 1}, "you": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 2}, "returned": {"_count": 1}}, "that": {"_count": 1, "attack": {"_count": 1}}, "with": {"_count": 1, "nothing": {"_count": 1}}, "YouKnowWho": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "to": {"_count": 1, "bear": {"_count": 1}}, "didn": {"_count": 1, "wan": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "the": {"_count": 3, "Dark": {"_count": 1}, "Killing": {"_count": 2}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Voldemorts": {"_count": 1, "Killing": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "by": {"_count": 1, "accident": {"_count": 1}}}, "escaped": {"_count": 75, "with": {"_count": 1, "his": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "and": {"_count": 2, "flown": {"_count": 1}, "there": {"_count": 1}}, "him": {"_count": 2, "and": {"_count": 1}, "before": {"_count": 1}}, "": {"_count": 13, "?": {"_count": 1}, ".": {"_count": 11}, "!": {"_count": 1}}, "from": {"_count": 8, "the": {"_count": 2}, "": {"_count": 1}, "them": {"_count": 1}, "Azkaban": {"_count": 2}, "him": {"_count": 1}, "that": {"_count": 1}}, "convict": {"_count": 1, "": {"_count": 1}}, "prisoner": {"_count": 1, "eh": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "to": {"_count": 2, "come": {"_count": 1}, "one": {"_count": 1}}, "his": {"_count": 3, "wand": {"_count": 1}, "lips": {"_count": 1}, "notice": {"_count": 1}}, "when": {"_count": 1, "Professor": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "them": {"_count": 1, "forever": {"_count": 1}}, "rhinoceros": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "believed": {"_count": 1}}, "said": {"_count": 4, "Ron": {"_count": 2}, "Dumbledore": {"_count": 1}, "Fudge": {"_count": 1}}, "a": {"_count": 1, "big": {"_count": 1}}, "me": {"_count": 1, "by": {"_count": 1}}, "Azkaban": {"_count": 2, "": {"_count": 2}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "nightmares": {"_count": 1, "about": {"_count": 1}}, "the": {"_count": 2, "stigma": {"_count": 1}, "appalling": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Death": {"_count": 7, "Eaters": {"_count": 7}}, "firework": {"_count": 1, "in": {"_count": 1}}, "firecrackers": {"_count": 1, "when": {"_count": 1}}, "fireworks": {"_count": 1, "in": {"_count": 1}}, "death": {"_count": 2, "so": {"_count": 1}, "and": {"_count": 1}}, "Voldemort": {"_count": 1, "three": {"_count": 1}}, "both": {"_count": 1, "times": {"_count": 1}}, "four": {"_count": 1, "years": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Hermiones": {"_count": 1, "baleful": {"_count": 1}}, "arrest": {"_count": 1, "within": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "understanding": {"_count": 26, "why": {"_count": 2, "he": {"_count": 1}, "an": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "teachers": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "shot": {"_count": 1, "between": {"_count": 1}}, "they": {"_count": 1, "didnt": {"_count": 1}}, "that": {"_count": 4, "seemed": {"_count": 1}, "my": {"_count": 1}, "youre": {"_count": 1}, "it": {"_count": 1}}, "smile": {"_count": 1, "though": {"_count": 1}}, "Harry": {"_count": 1, "realized": {"_count": 1}}, "what": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "English": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "blossomed": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 1, "coming": {"_count": 1}}}, "meaning": {"_count": 36, "to": {"_count": 9, "believing": {"_count": 1}, "that": {"_count": 1}, "despite": {"_count": 1}, "tell": {"_count": 1}, "ask": {"_count": 1}, "put": {"_count": 1}, "him": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}}, "that": {"_count": 8, "they": {"_count": 4}, "Gryffindor": {"_count": 1}, "this": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}}, "no": {"_count": 1, "disrespect": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 5, "zis": {"_count": 1}, "Malfoys": {"_count": 1}, "Tonkss": {"_count": 1}, "the": {"_count": 2}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 1, "quite": {"_count": 1}}, "plainer": {"_count": 1, "said": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "behind": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "them": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "believing": {"_count": 17, "the": {"_count": 1, "Dursleys": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 3, "to": {"_count": 1}, "said": {"_count": 1}, "would": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 2}, "could": {"_count": 1}}, "him": {"_count": 2, "Rons": {"_count": 1}, "to": {"_count": 1}}, "every": {"_count": 1, "word": {"_count": 1}}, "that": {"_count": 4, "you": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "Godrics": {"_count": 1}}, "in": {"_count": 1, "it": {"_count": 1}}}, "twelfth": {"_count": 6, "birthday": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "this": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 3, "August": {"_count": 3}}}, "hopes": {"_count": 11, "hadnt": {"_count": 1, "been": {"_count": 1}}, "however": {"_count": 1, "that": {"_count": 1}}, "up": {"_count": 4, "that": {"_count": 1}, "even": {"_count": 1}, "": {"_count": 1}, "again": {"_count": 1}}, "to": {"_count": 1, "meet": {"_count": 1}}, "were": {"_count": 2, "not": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "career": {"_count": 25, "said": {"_count": 2, "Uncle": {"_count": 1}, "Malfoy": {"_count": 1}}, "isnt": {"_count": 1, "sensible": {"_count": 1}}, "in": {"_count": 2, "wizardry": {"_count": 1}, "Magical": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "as": {"_count": 2, "an": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "You": {"_count": 1, "are": {"_count": 1}}, "hed": {"_count": 1, "ever": {"_count": 1}}, "for": {"_count": 1, "two": {"_count": 1}}, "she": {"_count": 1, "thought": {"_count": 1}}, "advice": {"_count": 1, "too": {"_count": 1}}, "he": {"_count": 2, "very": {"_count": 1}, "was": {"_count": 1}}, "information": {"_count": 1, "that": {"_count": 1}}, "involving": {"_count": 1, "travel": {"_count": 1}}, "appointment": {"_count": 1, "with": {"_count": 1}}, "ideas": {"_count": 1, "you": {"_count": 1}}, "path": {"_count": 1, "Potter": {"_count": 1}}, "consultation": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "likely": {"_count": 1}}}, "builder": {"_count": 2, "and": {"_count": 1, "his": {"_count": 1}}, "or": {"_count": 1, "two": {"_count": 1}}}, "schedule": {"_count": 29, "one": {"_count": 1, "more": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "back": {"_count": 1, "blushing": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "and": {"_count": 2, "didnt": {"_count": 1}, "examining": {"_count": 1}}, "then": {"_count": 1, "we": {"_count": 1}}, "disbelieving": {"_count": 1, "look": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "Freds": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "the": {"_count": 1, "offers": {"_count": 1}}, "with": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}, "said": {"_count": 1, "Dedalus": {"_count": 1}}}, "position": {"_count": 83, "at": {"_count": 4, "eight": {"_count": 1}, "the": {"_count": 1}, "all": {"_count": 1}, "Snape": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "began": {"_count": 1}, "turned": {"_count": 1}}, "Lockhart": {"_count": 1, "told": {"_count": 1}}, "once": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "Fudges": {"_count": 1}, "addition": {"_count": 1}}, "head": {"_count": 1, "still": {"_count": 1}}, "of": {"_count": 11, "Seeker": {"_count": 1}, "power": {"_count": 2}, "the": {"_count": 2}, "Mars": {"_count": 1}, "gamekeeper": {"_count": 1}, "\u2018Hogwarts": {"_count": 1}, "his": {"_count": 1}, "Defense": {"_count": 2}}, "": {"_count": 15, ".": {"_count": 15}}, "sir": {"_count": 2, "": {"_count": 1}, "very": {"_count": 1}}, "cant": {"_count": 1, "afford": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "Mr": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "has": {"_count": 1, "changed": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "shes": {"_count": 1, "fine": {"_count": 1}}, "until": {"_count": 1, "you": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "treading": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "Gringotts": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "facing": {"_count": 1, "Snape": {"_count": 1}}, "jamming": {"_count": 1, "his": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "panting": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 4, "bargain": {"_count": 1}, "make": {"_count": 2}, "notice": {"_count": 1}}, "into": {"_count": 1, "which": {"_count": 1}}, "beside": {"_count": 1, "his": {"_count": 1}}, "suggested": {"_count": 1, "that": {"_count": 1}}, "hastily": {"_count": 1, "wipe": {"_count": 1}}, "and": {"_count": 1, "breaking": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "himself": {"_count": 1, "right": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 1}, "arms": {"_count": 1}}, "you": {"_count": 1, "hold": {"_count": 1}}, "again": {"_count": 1, "rubbing": {"_count": 1}}, "then": {"_count": 1, "started": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 1, "this": {"_count": 1}}, "receiving": {"_count": 1, "instructions": {"_count": 1}}}, "lounge": {"_count": 4, "said": {"_count": 1, "Aunt": {"_count": 1}}, "introduce": {"_count": 1, "you": {"_count": 1}}, "for": {"_count": 1, "coffee": {"_count": 1}}, "destroyed": {"_count": 1, "Dudleys": {"_count": 1}}}, "graciously": {"_count": 3, "to": {"_count": 1, "our": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "bearing": {"_count": 1, "down": {"_count": 1}}}, "simpering": {"_count": 5, "smile": {"_count": 1, "": {"_count": 1}}, "girls": {"_count": 1, "all": {"_count": 1}}, "laugh": {"_count": 1, "Harry": {"_count": 1}}, "demeanor": {"_count": 1, "had": {"_count": 1}}, "face": {"_count": 1, "in": {"_count": 1}}}, "May": {"_count": 28, "I": {"_count": 20, "take": {"_count": 3}, "": {"_count": 1}, "introduce": {"_count": 4}, "help": {"_count": 1}, "offer": {"_count": 3}, "speak": {"_count": 1}, "ask": {"_count": 3}, "emphasize": {"_count": 1}, "hope": {"_count": 1}, "sit": {"_count": 1}, "just": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "your": {"_count": 2, "loyalty": {"_count": 1}, "manyeyed": {"_count": 1}}, "not": {"_count": 1, "bring": {"_count": 1}}, "sunshine": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "Ron": {"_count": 1}}}, "Mason": {"_count": 10, "": {"_count": 6, "?": {"_count": 3}, ".": {"_count": 3}}, "and": {"_count": 1, "I": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "screamed": {"_count": 1, "like": {"_count": 1}}, "stayed": {"_count": 1, "just": {"_count": 1}}}, "rapturously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Excellent": {"_count": 50, "Dudley": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 4}, "!": {"_count": 14}}, "flying": {"_count": 1, "yesterday": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 10, "Aunt": {"_count": 1}, "Fred": {"_count": 2}, "Dumbledore": {"_count": 2}, "Lupin": {"_count": 1}, "Ron": {"_count": 1}, "Fudge": {"_count": 1}, "Dean": {"_count": 1}, "McLaggen": {"_count": 1}}, "nosh": {"_count": 1, "Petunia": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "Lupin": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "whispered": {"_count": 1, "Ron": {"_count": 1}}, "Draco": {"_count": 1, "excellent": {"_count": 1}}, "Dolores": {"_count": 1, "": {"_count": 1}}, "question": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "excellent": {"_count": 3, "": {"_count": 2}, "Harry": {"_count": 1}}, "on": {"_count": 1, "everything": {"_count": 1}}, "Ive": {"_count": 1, "always": {"_count": 1}}, "who": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}}, "tonelessly": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "pour": {"_count": 6, "them": {"_count": 1, "drinks": {"_count": 1}}, "down": {"_count": 1, "her": {"_count": 1}}, "himself": {"_count": 1, "some": {"_count": 1}}, "some": {"_count": 1, "into": {"_count": 1}}, "from": {"_count": 1, "above": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}}, "eightfifteen": {"_count": 1, "Ill": {"_count": 1, "announce": {"_count": 1}}}, "announce": {"_count": 5, "dinner": {"_count": 1, "said": {"_count": 1}}, "today": {"_count": 1, "Hang": {"_count": 1}}, "his": {"_count": 1, "presence": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}}, "offering": {"_count": 22, "his": {"_count": 1, "fat": {"_count": 1}}, "them": {"_count": 2, "a": {"_count": 2}}, "to": {"_count": 6, "be": {"_count": 1}, "help": {"_count": 5}}, "the": {"_count": 2, "end": {"_count": 1}, "whole": {"_count": 1}}, "it": {"_count": 3, "to": {"_count": 3}}, "each": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "snacks": {"_count": 1, "to": {"_count": 1}}, "everyone": {"_count": 1, "more": {"_count": 1}}, "any": {"_count": 1, "explanation": {"_count": 1}}, "around": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "me": {"_count": 1, "plenty": {"_count": 1}}}, "gentleman": {"_count": 4, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "and": {"_count": 1, "knock": {"_count": 1}}}, "viciously": {"_count": 9, "to": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "strips": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 1, "Lupin": {"_count": 1}}, "difficult": {"_count": 1, "essay": {"_count": 1}}, "at": {"_count": 1, "Rons": {"_count": 1}}}, "Precisely": {"_count": 14, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 2}}, "said": {"_count": 5, "the": {"_count": 2}, "Professor": {"_count": 2}, "Dumbledore": {"_count": 1}}, "what": {"_count": 2, "I": {"_count": 2}}, "Amos": {"_count": 1, "said": {"_count": 1}}}, "aim": {"_count": 25, "to": {"_count": 2, "get": {"_count": 1}, "go": {"_count": 1}}, "and": {"_count": 1, "lobbed": {"_count": 1}}, "was": {"_count": 4, "true": {"_count": 1}, "so": {"_count": 1}, "to": {"_count": 2}}, "both": {"_count": 1, "Bludgers": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "properly": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "well": {"_count": 1}}, "for": {"_count": 1, "Rons": {"_count": 1}}, "between": {"_count": 1, "Smiths": {"_count": 1}}, "at": {"_count": 3, "her": {"_count": 1}, "Snapes": {"_count": 1}, "it": {"_count": 1}}, "in": {"_count": 1, "possessing": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "a": {"_count": 1, "curse": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "compliments": {"_count": 3, "at": {"_count": 1, "dinner": {"_count": 1}}, "to": {"_count": 1, "Professor": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "golfer": {"_count": 2, "Mr": {"_count": 1, "Mason": {"_count": 1}}, "joke": {"_count": 1, "": {"_count": 1}}}, "Perfect": {"_count": 9, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "Percy": {"_count": 1, "muttered": {"_count": 1}}, "Quidditch": {"_count": 1, "conditions": {"_count": 1}}, "was": {"_count": 1, "just": {"_count": 1}}, "wouldnt": {"_count": 1, "want": {"_count": 1}}, "does": {"_count": 1, "want": {"_count": 1}}, "deliberation": {"_count": 1, "divination": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "\u2018We": {"_count": 3, "had": {"_count": 1, "to": {"_count": 1}}, "can": {"_count": 1, "only": {"_count": 1}}, "promise": {"_count": 1, "well": {"_count": 1}}}, "essay": {"_count": 62, "about": {"_count": 2, "our": {"_count": 1}, "Jupiters": {"_count": 1}}, "Witch": {"_count": 1, "Burning": {"_count": 1}}, "tomorrow": {"_count": 2, "night": {"_count": 1}, "": {"_count": 1}}, "quill": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 3, "include": {"_count": 1}, "be": {"_count": 1}, "finish": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 11}, "!": {"_count": 1}}, "on": {"_count": 8, "Undetectable": {"_count": 1}, "which": {"_count": 1}, "giant": {"_count": 2}, "the": {"_count": 3}, "The": {"_count": 1}}, "Explain": {"_count": 1, "Why": {"_count": 1}}, "for": {"_count": 3, "Lupin": {"_count": 1}, "Sprout": {"_count": 1}, "Snape": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "excuse": {"_count": 1, "us": {"_count": 1}}, "hoping": {"_count": 1, "someone": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 7, "its": {"_count": 1}, "held": {"_count": 1}, "sinking": {"_count": 1}, "a": {"_count": 1}, "continued": {"_count": 1}, "Harry": {"_count": 2}}, "back": {"_count": 2, "toward": {"_count": 1}, "into": {"_count": 1}}, "was": {"_count": 1, "handed": {"_count": 1}}, "Harry": {"_count": 1, "took": {"_count": 1}}, "instead": {"_count": 1, "then": {"_count": 1}}, "than": {"_count": 1, "sitting": {"_count": 1}}, "reluctantly": {"_count": 1, "from": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 1, "many": {"_count": 1}}, "two": {"_count": 1, "translations": {"_count": 1}}, "by": {"_count": 2, "tomorrow": {"_count": 2}}, "something": {"_count": 1, "she": {"_count": 1}}, "toward": {"_count": 2, "her": {"_count": 2}}, "because": {"_count": 1, "we": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}}, "forcefully": {"_count": 22, "": {"_count": 10, ".": {"_count": 10}}, "he": {"_count": 1, "nearly": {"_count": 1}}, "of": {"_count": 2, "Mrs": {"_count": 1}, "Hogwarts": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "Hagrids": {"_count": 1}}, "and": {"_count": 3, "said": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 1, "Fred": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "blinking": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 1, "Horcruxes": {"_count": 1}}}, "Masons": {"_count": 5, "dont": {"_count": 1, "know": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "had": {"_count": 1, "left": {"_count": 1}}, "head": {"_count": 1, "and": {"_count": 1}}}, "dinners": {"_count": 3, "over": {"_count": 1, "you": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "ready": {"_count": 1, "but": {"_count": 1}}}, "sealed": {"_count": 20, "before": {"_count": 1, "the": {"_count": 1}}, "itself": {"_count": 5, "Harry": {"_count": 1}, "seamlessly": {"_count": 1}, "once": {"_count": 1}, "against": {"_count": 1}, "with": {"_count": 1}}, "the": {"_count": 3, "Chamber": {"_count": 1}, "gateway": {"_count": 1}, "charm": {"_count": 1}}, "shut": {"_count": 1, "": {"_count": 1}}, "envelope": {"_count": 1, "in": {"_count": 1}}, "glass": {"_count": 1, "jar": {"_count": 1}}, "and": {"_count": 1, "everything": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "taking": {"_count": 1}}, "cardboard": {"_count": 1, "boxes": {"_count": 1}}, "with": {"_count": 1, "wax": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "all": {"_count": 1}}, "it": {"_count": 1, "I": {"_count": 1}}}, "aunts": {"_count": 2, "way": {"_count": 1, "while": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "cleaning": {"_count": 23, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "all": {"_count": 1, "morning": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "out": {"_count": 2, "the": {"_count": 1}, "and": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "too": {"_count": 1, "Scourgify": {"_count": 1}}, "it": {"_count": 1, "made": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 1, "elf": {"_count": 1}}, "you": {"_count": 1, "sneak": {"_count": 1}}, "but": {"_count": 1, "in": {"_count": 1}}, "materials": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 1, "decorating": {"_count": 1}}, "of": {"_count": 1, "colormatching": {"_count": 1}}, "or": {"_count": 1, "or": {"_count": 1}}, "simple": {"_count": 1, "girl": {"_count": 1}}}, "bench": {"_count": 40, "and": {"_count": 6, "sang": {"_count": 1}, "uttered": {"_count": 1}, "upsetting": {"_count": 1}, "looked": {"_count": 1}, "rubbing": {"_count": 1}, "clambered": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "in": {"_count": 1, "the": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "staring": {"_count": 1, "after": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "raised": {"_count": 1, "high": {"_count": 1}}, "beside": {"_count": 5, "him": {"_count": 2}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "Luna": {"_count": 1}}, "but": {"_count": 1, "now": {"_count": 1}}, "above": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "her": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "opposite": {"_count": 2, "": {"_count": 1}, "them": {"_count": 1}}, "looking": {"_count": 1, "as": {"_count": 1}}, "between": {"_count": 1, "Fred": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 3, "bench": {"_count": 1}, "eavesdrop": {"_count": 1}, "make": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "shaking": {"_count": 1, "bits": {"_count": 1}}}, "sang": {"_count": 11, "under": {"_count": 1, "his": {"_count": 1}}, "Dudley": {"_count": 1, "waddling": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "shrilly": {"_count": 1, "unless": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "even": {"_count": 1, "louder": {"_count": 1}}, "Weasley": {"_count": 1, "Is": {"_count": 1}}, "Umbridge": {"_count": 1, "and": {"_count": 1}}, "Slughorn": {"_count": 1, "plaintively": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "exist": {"_count": 27, "": {"_count": 12, ".": {"_count": 8}, "!": {"_count": 2}, "?": {"_count": 2}}, "said": {"_count": 3, "Professor": {"_count": 1}, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "without": {"_count": 3, "your": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}}, "one": {"_count": 1, "that": {"_count": 1}}, "do": {"_count": 1, "they": {"_count": 1}}, "Neville": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "seemed": {"_count": 1, "incredible": {"_count": 1}}, "I": {"_count": 1, "tell": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}}, "hedge": {"_count": 34, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "and": {"_count": 5, "the": {"_count": 1}, "strewing": {"_count": 1}, "stared": {"_count": 1}, "Hermione": {"_count": 1}, "when": {"_count": 1}}, "was": {"_count": 2, "staring": {"_count": 1}, "in": {"_count": 1}}, "that": {"_count": 1, "morning": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "apparently": {"_count": 1, "torn": {"_count": 1}}, "ran": {"_count": 1, "all": {"_count": 1}}, "walls": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "which": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 1}, "support": {"_count": 1}}, "gasping": {"_count": 1, "for": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "curved": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 1, "fountain": {"_count": 1}}, "had": {"_count": 1, "grown": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "She": {"_count": 1, "was": {"_count": 1}}}, "Countless": {"_count": 1, "times": {"_count": 1, "Harry": {"_count": 1}}}, "unlocking": {"_count": 3, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}, "the": {"_count": 2, "door": {"_count": 1}, "back": {"_count": 1}}}, "Hedwigs": {"_count": 49, "cage": {"_count": 32, "by": {"_count": 1}, "and": {"_count": 4}, "dashed": {"_count": 1}, "was": {"_count": 2}, "bounced": {"_count": 1}, "flew": {"_count": 1}, "": {"_count": 5}, "under": {"_count": 1}, "balanced": {"_count": 1}, "onto": {"_count": 2}, "toward": {"_count": 1}, "stood": {"_count": 1}, "needed": {"_count": 1}, "a": {"_count": 1}, "in": {"_count": 4}, "into": {"_count": 1}, "his": {"_count": 1}, "before": {"_count": 1}, "between": {"_count": 1}, "the": {"_count": 1}}, "continuing": {"_count": 1, "screeches": {"_count": 1}}, "large": {"_count": 3, "empty": {"_count": 1}, "amber": {"_count": 1}, "round": {"_count": 1}}, "empty": {"_count": 1, "cage": {"_count": 1}}, "leg": {"_count": 3, "she": {"_count": 1}, "": {"_count": 2}}, "not": {"_count": 1, "going": {"_count": 1}}, "deserted": {"_count": 1, "perch": {"_count": 1}}, "departure": {"_count": 1, "Harry": {"_count": 1}}, "beak": {"_count": 1, "and": {"_count": 1}}, "owl": {"_count": 1, "droppings": {"_count": 1}}, "more": {"_count": 1, "securely": {"_count": 1}}, "feathers": {"_count": 1, "were": {"_count": 1}}, "wing": {"_count": 1, "closely": {"_count": 1}}, "head": {"_count": 1, "and": {"_count": 1}}}, "Underage": {"_count": 11, "wizards": {"_count": 1, "werent": {"_count": 1}}, "Sorcery": {"_count": 7, "1875": {"_count": 2}, "": {"_count": 2}, "has": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}}, "Wizardry": {"_count": 3, "caused": {"_count": 1}, "so": {"_count": 1}, "": {"_count": 1}}}, "dung": {"_count": 15, "beetles": {"_count": 1, "that": {"_count": 1}}, "Dad": {"_count": 1, "reckons": {"_count": 1}}, "outside": {"_count": 1, "an": {"_count": 1}}, "compost": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "it": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "brains": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 1, "Sprouts": {"_count": 1}}, "for": {"_count": 1, "brains": {"_count": 1}}, "Umbridge": {"_count": 1, "in": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "heap": {"_count": 1, "laughs": {"_count": 1}}, "at": {"_count": 1, "my": {"_count": 1}}}, "locking": {"_count": 3, "him": {"_count": 1, "in": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 1, "back": {"_count": 1}}}, "enjoyed": {"_count": 23, "muttering": {"_count": 1, "nonsense": {"_count": 1}}, "the": {"_count": 4, "breakneck": {"_count": 1}, "fact": {"_count": 1}, "position": {"_count": 1}, "meetings": {"_count": 1}}, "that": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 4}, "immensely": {"_count": 1}}, "being": {"_count": 1, "burned": {"_count": 1}}, "his": {"_count": 1, "summer": {"_count": 1}}, "watching": {"_count": 1, "it": {"_count": 1}}, "London": {"_count": 1, "": {"_count": 1}}, "themselves": {"_count": 1, "trying": {"_count": 1}}, "your": {"_count": 1, "description": {"_count": 1}}, "double": {"_count": 1, "Divination": {"_count": 1}}, "a": {"_count": 2, "refreshing": {"_count": 1}, "tremendous": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "appeal": {"_count": 11, "and": {"_count": 1, "now": {"_count": 1}}, "though": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 2}, ".": {"_count": 2}}, "its": {"_count": 1, "set": {"_count": 1}}, "started": {"_count": 1, "": {"_count": 1}}, "less": {"_count": 1, "than": {"_count": 1}}, "to": {"_count": 2, "Lord": {"_count": 1}, "all": {"_count": 1}}}, "archenemy": {"_count": 1, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}}, "ruin": {"_count": 7, "of": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "someone": {"_count": 1, "elses": {"_count": 1}}, "this": {"_count": 1, "for": {"_count": 1}}, "or": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "former": {"_count": 9, "self": {"_count": 1, "but": {"_count": 1}}, "owners": {"_count": 1, "Lucius": {"_count": 1}}, "life": {"_count": 1, "the": {"_count": 1}}, "course": {"_count": 1, "but": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "ally": {"_count": 1, "if": {"_count": 1}}, "colleague": {"_count": 1, "of": {"_count": 1}}, "grandeur": {"_count": 1, "": {"_count": 1}}, "village": {"_count": 1, "": {"_count": 1}}}, "terrifying": {"_count": 9, "still": {"_count": 1, "cunning": {"_count": 1}}, "new": {"_count": 1, "pet": {"_count": 1}}, "monsters": {"_count": 1, "": {"_count": 1}}, "wizard": {"_count": 1, "jail": {"_count": 1}}, "vision": {"_count": 1, "was": {"_count": 1}}, "woman": {"_count": 1, "simply": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "The": {"_count": 1, "eyeless": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}}, "regain": {"_count": 11, "power": {"_count": 1, "": {"_count": 1}}, "control": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "breath": {"_count": 1}}, "the": {"_count": 2, "feeling": {"_count": 1}, "flow": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "my": {"_count": 1, "powers": {"_count": 1}}, "a": {"_count": 2, "body": {"_count": 1}, "human": {"_count": 1}}, "feeling": {"_count": 1, "in": {"_count": 1}}}, "clutches": {"_count": 5, "for": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "only": {"_count": 1}}, "she": {"_count": 1, "led": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "walked": {"_count": 1}}}, "absentmindedly": {"_count": 18, "into": {"_count": 1, "the": {"_count": 1}}, "picking": {"_count": 1, "it": {"_count": 1}}, "stroking": {"_count": 1, "Hedwig": {"_count": 1}}, "now": {"_count": 1, "taking": {"_count": 1}}, "swinging": {"_count": 1, "a": {"_count": 1}}, "shredding": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "humming": {"_count": 1, "something": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "to": {"_count": 2, "another": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "large": {"_count": 1}}, "caressing": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "raised": {"_count": 1}}, "and": {"_count": 1, "touched": {"_count": 1}}}, "jeering": {"_count": 16, "voice": {"_count": 1, "floated": {"_count": 1}}, "and": {"_count": 1, "pointing": {"_count": 1}}, "roars": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "a": {"_count": 1, "thud": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "others": {"_count": 1, "were": {"_count": 1}}, "face": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "blazing": {"_count": 1}}, "laughter": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}}, "Todays": {"_count": 5, "your": {"_count": 1, "birthday": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "not": {"_count": 1, "bad": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "French": {"_count": 1, "onion": {"_count": 1}}}, "hitched": {"_count": 8, "up": {"_count": 4, "his": {"_count": 2}, "the": {"_count": 2}}, "it": {"_count": 2, "back": {"_count": 1}, "up": {"_count": 1}}, "a": {"_count": 1, "grin": {"_count": 1}}, "her": {"_count": 1, "sickly": {"_count": 1}}}, "Whyre": {"_count": 1, "you": {"_count": 1, "staring": {"_count": 1}}}, "suspiciously": {"_count": 38, "": {"_count": 20, ".": {"_count": 20}}, "trying": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 2}}, "into": {"_count": 1, "every": {"_count": 1}}, "at": {"_count": 5, "Ron": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}, "Harry": {"_count": 2}}, "and": {"_count": 1, "when": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "still": {"_count": 1, "floating": {"_count": 1}}, "why": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "hurried": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}}, "mmagic": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "chuck": {"_count": 10, "you": {"_count": 1, "out": {"_count": 1}}, "it": {"_count": 3, "Harry": {"_count": 1}, "said": {"_count": 1}, "out": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "stuff": {"_count": 1, "at": {"_count": 1}}, "her": {"_count": 1, "broom": {"_count": 1}}, "me": {"_count": 1, "out": {"_count": 1}}, "knives": {"_count": 1, "at": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}}, "Jiggery": {"_count": 1, "pokeryV": {"_count": 1, "said": {"_count": 1}}}, "pokeryV": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Hocus": {"_count": 1, "pocus": {"_count": 1, "squiggly": {"_count": 1}}}, "pocus": {"_count": 1, "squiggly": {"_count": 1, "wiggly": {"_count": 1}}}, "squiggly": {"_count": 3, "wiggly": {"_count": 1, "MUUUUUUM": {"_count": 1}}, "golden": {"_count": 2, "television": {"_count": 1}, "aerial": {"_count": 1}}}, "wiggly": {"_count": 1, "MUUUUUUM": {"_count": 1, "": {"_count": 1}}}, "MUUUUUUM": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "MUUUUM": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "duck": {"_count": 15, "as": {"_count": 1, "she": {"_count": 1}}, "Angelina": {"_count": 1, "thats": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "that": {"_count": 1}}, "quickly": {"_count": 1, "enough": {"_count": 1}}, "footed": {"_count": 2, "and": {"_count": 2}}, "down": {"_count": 2, "behind": {"_count": 1}, "again": {"_count": 1}}, "more": {"_count": 1, "like": {"_count": 1}}, "Bellatrixs": {"_count": 1, "jet": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "below": {"_count": 1, "the": {"_count": 1}}}, "aimed": {"_count": 16, "a": {"_count": 6, "heavy": {"_count": 1}, "misjudged": {"_count": 1}, "kick": {"_count": 2}, "spell": {"_count": 1}, "curse": {"_count": 1}}, "another": {"_count": 2, "bomb": {"_count": 1}, "spell": {"_count": 1}}, "high": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 2, "wand": {"_count": 2}}, "well": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "jinxes": {"_count": 1, "at": {"_count": 1}}, "jinx": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 1, "kill": {"_count": 1}}}, "soapy": {"_count": 1, "frying": {"_count": 1, "pan": {"_count": 1}}}, "lolled": {"_count": 2, "around": {"_count": 1, "watching": {"_count": 1}}, "hopelessly": {"_count": 1, "from": {"_count": 1}}}, "cleaned": {"_count": 11, "the": {"_count": 3, "windows": {"_count": 1}, "cut": {"_count": 1}, "wound": {"_count": 1}}, "us": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "your": {"_count": 1}}, "anything": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 1, "slowly": {"_count": 1}}, "out": {"_count": 3, "your": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "washed": {"_count": 14, "the": {"_count": 1, "car": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "your": {"_count": 1}}, "yard": {"_count": 1, "watching": {"_count": 1}}, "it": {"_count": 1, "you": {"_count": 1}}, "over": {"_count": 3, "him": {"_count": 3}}, "": {"_count": 1, ".": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "dinner": {"_count": 1}}, "and": {"_count": 1, "dressed": {"_count": 1}}, "again": {"_count": 1, "following": {"_count": 1}}}, "mowed": {"_count": 1, "the": {"_count": 1, "lawn": {"_count": 1}}}, "trimmed": {"_count": 3, "the": {"_count": 1, "flowerbeds": {"_count": 1}}, "it": {"_count": 1, "using": {"_count": 1}}, "with": {"_count": 1, "gold": {"_count": 1}}}, "flowerbeds": {"_count": 2, "pruned": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "pruned": {"_count": 2, "and": {"_count": 1, "watered": {"_count": 1}}, "plucked": {"_count": 1, "and": {"_count": 1}}}, "roses": {"_count": 5, "and": {"_count": 1, "repainted": {"_count": 1}}, "from": {"_count": 1, "nowhere": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "blossomed": {"_count": 1, "before": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "repainted": {"_count": 1, "the": {"_count": 1, "garden": {"_count": 1}}}, "blazed": {"_count": 9, "overhead": {"_count": 1, "burning": {"_count": 1}}, "midnightblue": {"_count": 1, "with": {"_count": 1}}, "into": {"_count": 1, "life": {"_count": 1}}, "through": {"_count": 2, "Harrys": {"_count": 1}, "Harry": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "suddenly": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 2, "heat": {"_count": 1}, "life": {"_count": 1}}}, "risen": {"_count": 30, "to": {"_count": 4, "Dudleys": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "her": {"_count": 1}}, "when": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 2}, "stood": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "angrily": {"_count": 1, "into": {"_count": 1}}, "high": {"_count": 1, "enough": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "out": {"_count": 3, "of": {"_count": 3}}, "again": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 3, "Harrys": {"_count": 1}, "him": {"_count": 1}, "rebellion": {"_count": 1}}, "fully": {"_count": 1, "now": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "oblivious": {"_count": 1, "Screams": {"_count": 1}}, "up": {"_count": 1, "out": {"_count": 1}}, "now": {"_count": 1, "its": {"_count": 1}}}, "bait": {"_count": 4, "but": {"_count": 1, "Dudley": {"_count": 1}}, "it": {"_count": 1, "won": {"_count": 1}}, "once": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "hell": {"_count": 1}}}, "savagely": {"_count": 16, "as": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "still": {"_count": 1, "watching": {"_count": 1}}, "limping": {"_count": 1, "forward": {"_count": 1}}, "now": {"_count": 1, "pulling": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "starry": {"_count": 1}}}, "manure": {"_count": 4, "on": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "my": {"_count": 1, "garden": {"_count": 1}}}, "flower": {"_count": 15, "beds": {"_count": 6, "his": {"_count": 1}, "turned": {"_count": 1}, "in": {"_count": 2}, "a": {"_count": 1}, "": {"_count": 1}}, "bed": {"_count": 5, "and": {"_count": 1}, "outside": {"_count": 1}, "below": {"_count": 1}, "Harrys": {"_count": 1}, "again": {"_count": 1}}, "that": {"_count": 1, "resembled": {"_count": 1}}, "and": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "sat": {"_count": 1, "there": {"_count": 1}}}, "aching": {"_count": 22, "sweat": {"_count": 1, "running": {"_count": 1}}, "with": {"_count": 3, "hunger": {"_count": 2}, "dread": {"_count": 1}}, "and": {"_count": 1, "covered": {"_count": 1}}, "hand": {"_count": 2, "over": {"_count": 1}, "into": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 2}}, "horribly": {"_count": 1, "with": {"_count": 1}}, "all": {"_count": 4, "over": {"_count": 3}, "last": {"_count": 1}}, "he": {"_count": 2, "wanted": {"_count": 1}, "felt": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "fit": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}, "Harry": {"_count": 1, "raced": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}}, "gladly": {"_count": 6, "into": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "exchanged": {"_count": 1, "all": {"_count": 1}}, "its": {"_count": 1, "what": {"_count": 1}}, "have": {"_count": 1, "set": {"_count": 1}}, "and": {"_count": 1, "equals": {"_count": 1}}}, "fridge": {"_count": 8, "stood": {"_count": 1, "tonights": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 2}}, "which": {"_count": 2, "had": {"_count": 1}, "sprang": {"_count": 1}}, "then": {"_count": 1, "zoomed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "tonights": {"_count": 2, "pudding": {"_count": 1, "a": {"_count": 1}}, "events": {"_count": 1, "said": {"_count": 1}}}, "mound": {"_count": 14, "of": {"_count": 6, "whipped": {"_count": 1}, "earth": {"_count": 3}, "freshly": {"_count": 1}, "filthy": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "he": {"_count": 1, "now": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "would": {"_count": 1, "be": {"_count": 1}}}, "sugared": {"_count": 2, "violets": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}}, "violets": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "floating": {"_count": 1}}}, "loin": {"_count": 1, "of": {"_count": 1, "roast": {"_count": 1}}}, "oven": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "door": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "later": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "earlier": {"_count": 1, "": {"_count": 1}}, "properly": {"_count": 1, "cleaned": {"_count": 1}}}, "Eat": {"_count": 10, "quickly": {"_count": 1, "": {"_count": 1}}, "slugs": {"_count": 1, "Malfoy": {"_count": 1}}, "Harry": {"_count": 1, "you": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "repeated": {"_count": 1}}, "this": {"_count": 1, "before": {"_count": 1}}, "the": {"_count": 1, "lot": {"_count": 1}}, "dung": {"_count": 2, "Malfoy": {"_count": 1}, "Umbridge": {"_count": 1}}, "your": {"_count": 1, "eggs": {"_count": 1}}}, "slices": {"_count": 1, "of": {"_count": 1, "bread": {"_count": 1}}}, "cheese": {"_count": 6, "on": {"_count": 1, "the": {"_count": 1}}, "covered": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 2, "grated": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cauldron": {"_count": 1, "": {"_count": 1}}}, "salmonpink": {"_count": 1, "cocktail": {"_count": 1, "dress": {"_count": 1}}}, "cocktail": {"_count": 3, "dress": {"_count": 1, "": {"_count": 1}}, "onion": {"_count": 2, "on": {"_count": 1}, "she": {"_count": 1}}}, "pitiful": {"_count": 8, "supper": {"_count": 1, "": {"_count": 1}}, "worries": {"_count": 1, "and": {"_count": 1}}, "figure": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "performance": {"_count": 1, "during": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "condition": {"_count": 1, "of": {"_count": 1}}, "noise": {"_count": 1, "yet": {"_count": 1}}}, "supper": {"_count": 5, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "tonight": {"_count": 1, "in": {"_count": 1}}, "composed": {"_count": 1, "largely": {"_count": 1}}}, "Upstairs": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "keep": {"_count": 1, "the": {"_count": 1}}}, "ties": {"_count": 8, "and": {"_count": 1, "dinner": {"_count": 1}}, "between": {"_count": 1, "young": {"_count": 1}}, "of": {"_count": 2, "forgetting": {"_count": 1}, "the": {"_count": 1}}, "are": {"_count": 1, "more": {"_count": 1}}, "with": {"_count": 2, "Potter": {"_count": 1}, "me": {"_count": 1}}, "to": {"_count": 1, "blind": {"_count": 1}}}, "collapse": {"_count": 11, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "Hagrids": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "having": {"_count": 1, "been": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "against": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 1, "Snapes": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "DOBBYS": {"_count": 2, "WARNING": {"_count": 1, "Harry": {"_count": 1}}, "REWARD": {"_count": 1, "For": {"_count": 1}}}, "WARNING": {"_count": 1, "Harry": {"_count": 1, "managed": {"_count": 1}}}, "pillowcase": {"_count": 11, "with": {"_count": 1, "rips": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 2}, "wore": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "from": {"_count": 1, "under": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}}, "rips": {"_count": 3, "for": {"_count": 1, "arm": {"_count": 1}}, "cracks": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "soul": {"_count": 1}}}, "legholes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "hello": {"_count": 33, "said": {"_count": 4, "Harry": {"_count": 2}, "Nearly": {"_count": 1}, "Ron": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 2}}, "Myrtle": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "Justin": {"_count": 1}}, "Harry": {"_count": 7, "he": {"_count": 1}, "dear": {"_count": 1}, "said": {"_count": 3}, "": {"_count": 1}, "she": {"_count": 1}}, "Hagrid": {"_count": 1, "Harry": {"_count": 1}}, "without": {"_count": 1, "looking": {"_count": 1}}, "Peter": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 4, "Buckbeak": {"_count": 1}, "Kingsley": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "I": {"_count": 1, "believe": {"_count": 1}}, "Nymphadora": {"_count": 1, "": {"_count": 1}}, "ter": {"_count": 1, "Buck": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "Mafalda": {"_count": 1, "": {"_count": 1}}, "Reg": {"_count": 1, "said": {"_count": 1}}}, "highpitched": {"_count": 30, "voice": {"_count": 9, "Harry": {"_count": 1}, "answered": {"_count": 1}, "from": {"_count": 1}, "that": {"_count": 2}, "": {"_count": 3}, "Ron": {"_count": 1}}, "mewling": {"_count": 1, "from": {"_count": 1}}, "scream": {"_count": 2, "and": {"_count": 1}, "of": {"_count": 1}}, "laughter": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 2, "cold": {"_count": 1}, "terrified": {"_count": 1}}, "whimpering": {"_count": 1, "voice": {"_count": 1}}, "breathy": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "whistle": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "chattering": {"_count": 1, "overhead": {"_count": 1}}, "strained": {"_count": 1, "voice": {"_count": 1}}, "squeaks": {"_count": 1, "": {"_count": 1}}, "note": {"_count": 1, "and": {"_count": 1}}, "giggle": {"_count": 1, "": {"_count": 1}}, "laugh": {"_count": 1, "which": {"_count": 1}}, "wheezy": {"_count": 1, "voice": {"_count": 1}}, "outofcontrol": {"_count": 1, "sound": {"_count": 1}}, "querulous": {"_count": 1, "voice": {"_count": 1}}, "he": {"_count": 1, "sounded": {"_count": 1}}}, "Dobby": {"_count": 428, "wanted": {"_count": 1, "to": {"_count": 1}}, "sir": {"_count": 3, "": {"_count": 1}, "it": {"_count": 1}, "if": {"_count": 1}}, "": {"_count": 55, ".": {"_count": 26}, "!": {"_count": 16}, "?": {"_count": 13}}, "the": {"_count": 9, "houseelf": {"_count": 7}, "warning": {"_count": 1}, "houseelfs": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 19, "come": {"_count": 6}, "never": {"_count": 1}, "heard": {"_count": 2}, "known": {"_count": 1}, "them": {"_count": 1}, "been": {"_count": 3}, "traveled": {"_count": 1}, "your": {"_count": 1}, "used": {"_count": 1}, "not": {"_count": 1}, "no": {"_count": 1}}, "wonders": {"_count": 1, "where": {"_count": 1}}, "back": {"_count": 2, "onto": {"_count": 2}}, "shook": {"_count": 4, "his": {"_count": 4}}, "had": {"_count": 13, "to": {"_count": 2}, "darted": {"_count": 1}, "told": {"_count": 1}, "been": {"_count": 1}, "worked": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "tried": {"_count": 1}, "given": {"_count": 1}, "described": {"_count": 1}, "taken": {"_count": 1}, "vanished": {"_count": 1}}, "almost": {"_count": 1, "spoke": {"_count": 1}}, "serves": {"_count": 1, "sir": {"_count": 1}}, "is": {"_count": 17, "a": {"_count": 4}, "always": {"_count": 1}, "used": {"_count": 1}, "still": {"_count": 1}, "free": {"_count": 1}, "not": {"_count": 1}, "going": {"_count": 1}, "sorry": {"_count": 1}, "only": {"_count": 1}, "making": {"_count": 1}, "quite": {"_count": 1}, "supposed": {"_count": 1}, "much": {"_count": 1}, "this": {"_count": 1}}, "shuddered": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 9, "have": {"_count": 2}, "serve": {"_count": 1}, "be": {"_count": 1}, "look": {"_count": 1}, "shut": {"_count": 1}, "do": {"_count": 2}, "throw": {"_count": 1}}, "doubts": {"_count": 1, "it": {"_count": 1}}, "get": {"_count": 1, "on": {"_count": 1}}, "free": {"_count": 7, "": {"_count": 4}, "from": {"_count": 1}, "and": {"_count": 2}}, "dissolved": {"_count": 1, "again": {"_count": 1}}, "never": {"_count": 2, "knew": {"_count": 1}, "had": {"_count": 1}}, "reverently": {"_count": 1, "his": {"_count": 1}}, "clapped": {"_count": 1, "his": {"_count": 1}}, "leaned": {"_count": 1, "toward": {"_count": 1}}, "heard": {"_count": 4, "tell": {"_count": 2}, "Professor": {"_count": 1}, "him": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "suddenly": {"_count": 3, "trembling": {"_count": 1}, "froze": {"_count": 1}, "giving": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "bowed": {"_count": 1, "his": {"_count": 1}}, "knows": {"_count": 4, "it": {"_count": 1}, "sir": {"_count": 1}, "the": {"_count": 1}, "Mr": {"_count": 1}}, "bounded": {"_count": 1, "off": {"_count": 1}}, "in": {"_count": 6, "shutting": {"_count": 1}, "a": {"_count": 2}, "disbelief": {"_count": 1}, "his": {"_count": 1}, "it": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "slyly": {"_count": 1, "": {"_count": 1}}, "shuffled": {"_count": 1, "his": {"_count": 1}}, "did": {"_count": 6, "it": {"_count": 2}, "when": {"_count": 1}, "not": {"_count": 2}, "he": {"_count": 1}}, "blinked": {"_count": 1, "anxiously": {"_count": 1}}, "hoped": {"_count": 1, "": {"_count": 1}}, "jumped": {"_count": 1, "out": {"_count": 1}}, "his": {"_count": 6, "word": {"_count": 1}, "eyes": {"_count": 1}, "sweater": {"_count": 1}, "new": {"_count": 1}, "tennisballsized": {"_count": 1}, "great": {"_count": 1}}, "no": {"_count": 4, "choice": {"_count": 1}, "he": {"_count": 1}, "HELP": {"_count": 1}, "dont": {"_count": 1}}, "gave": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "must": {"_count": 4, "do": {"_count": 1}, "go": {"_count": 2}, "poke": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "called": {"_count": 2, "Harry": {"_count": 1}, "miserably": {"_count": 1}}, "was": {"_count": 10, "sent": {"_count": 1}, "so": {"_count": 1}, "pointing": {"_count": 1}, "weirder": {"_count": 1}, "delighted": {"_count": 1}, "utterly": {"_count": 1}, "right": {"_count": 1}, "ecstatic": {"_count": 1}, "here": {"_count": 1}, "taking": {"_count": 1}}, "seriously": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}, "and": {"_count": 8, "the": {"_count": 1}, "Dobby": {"_count": 1}, "Winky": {"_count": 3}, "he": {"_count": 3}}, "The": {"_count": 1, "houseelfs": {"_count": 1}}, "warned": {"_count": 1, "and": {"_count": 1}}, "nodding": {"_count": 2, "his": {"_count": 1}, "earnestly": {"_count": 1}}, "hid": {"_count": 1, "and": {"_count": 1}}, "didnt": {"_count": 2, "care": {"_count": 1}, "move": {"_count": 1}}, "dream": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "I": {"_count": 1}}, "smiled": {"_count": 1, "weakly": {"_count": 1}}, "gets": {"_count": 2, "them": {"_count": 1}, "a": {"_count": 1}}, "plucking": {"_count": 2, "at": {"_count": 2}}, "can": {"_count": 2, "only": {"_count": 1}, "discover": {"_count": 1}}, "even": {"_count": 1, "a": {"_count": 1}}, "mopped": {"_count": 1, "his": {"_count": 1}}, "thought": {"_count": 1, "his": {"_count": 1}}, "shocked": {"_count": 1, "": {"_count": 1}}, "wants": {"_count": 3, "to": {"_count": 1}, "paying": {"_count": 2}}, "only": {"_count": 1, "wanted": {"_count": 1}}, "groaned": {"_count": 1, "more": {"_count": 1}}, "remembers": {"_count": 1, "how": {"_count": 1}}, "cannot": {"_count": 2, "let": {"_count": 2}}, "froze": {"_count": 1, "horrors": {"_count": 1}}, "very": {"_count": 1, "bad": {"_count": 1}}, "stammered": {"_count": 1, "the": {"_count": 1}}, "cant": {"_count": 2, "sir": {"_count": 1}, "Dobby": {"_count": 1}}, "mustnt": {"_count": 1, "tell": {"_count": 1}}, "but": {"_count": 3, "they": {"_count": 1}, "he": {"_count": 1}, "thanks": {"_count": 1}}, "came": {"_count": 2, "to": {"_count": 2}}, "d": {"_count": 1, "told": {"_count": 1}}, "stopped": {"_count": 2, "us": {"_count": 1}, "in": {"_count": 1}}, "went": {"_count": 2, "scurrying": {"_count": 1}, "on": {"_count": 1}}, "backed": {"_count": 1, "into": {"_count": 1}}, "squealing": {"_count": 1, "with": {"_count": 1}}, "caught": {"_count": 1, "it": {"_count": 1}}, "Dobby": {"_count": 2, "is": {"_count": 1}, "could": {"_count": 1}}, "shouted": {"_count": 1, "You": {"_count": 1}}, "raised": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 8, "Harry": {"_count": 6}, "Ron": {"_count": 1}, "to": {"_count": 1}}, "pulled": {"_count": 1, "on": {"_count": 1}}, "threw": {"_count": 1, "his": {"_count": 1}}, "knew": {"_count": 4, "": {"_count": 1}, "sir": {"_count": 1}, "Harry": {"_count": 1}, "we": {"_count": 1}}, "disappeared": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "too": {"_count": 1, "sir": {"_count": 1}}, "talks": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 4, "favor": {"_count": 1}, "pair": {"_count": 2}, "truly": {"_count": 1}}, "I": {"_count": 4, "says": {"_count": 2}, "know": {"_count": 1}, "want": {"_count": 1}}, "Every": {"_count": 1, "time": {"_count": 1}}, "let": {"_count": 2, "go": {"_count": 1}, "out": {"_count": 1}}, "thereby": {"_count": 1, "setting": {"_count": 1}}, "whatre": {"_count": 1, "you": {"_count": 1}}, "squealed": {"_count": 2, "excitedly": {"_count": 1}, "as": {"_count": 1}}, "led": {"_count": 1, "Harry": {"_count": 1}}, "she": {"_count": 2, "had": {"_count": 1}, "hasnt": {"_count": 1}}, "s": {"_count": 3, "strange": {"_count": 1}, "face": {"_count": 1}, "head": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 1}, "give": {"_count": 1}, "tail": {"_count": 1}, "rest": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "handed": {"_count": 1, "around": {"_count": 1}}, "happily": {"_count": 3, "": {"_count": 1}, "Dobby": {"_count": 1}, "and": {"_count": 1}}, "squeaked": {"_count": 1, "": {"_count": 1}}, "hasnt": {"_count": 1, "found": {"_count": 1}}, "grinning": {"_count": 1, "toothily": {"_count": 1}}, "likes": {"_count": 4, "work": {"_count": 1}, "being": {"_count": 1}, "freedom": {"_count": 1}, "Professor": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "goes": {"_count": 1, "to": {"_count": 1}}, "delightedly": {"_count": 1, "": {"_count": 1}}, "continued": {"_count": 1, "with": {"_count": 1}}, "says": {"_count": 2, "": {"_count": 1}, "will": {"_count": 1}}, "thinks": {"_count": 1, "and": {"_count": 1}}, "beamed": {"_count": 2, "very": {"_count": 1}, "": {"_count": 1}}, "ten": {"_count": 1, "Galleons": {"_count": 1}}, "beat": {"_count": 1, "him": {"_count": 1}}, "confidentially": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 2, "suddenly": {"_count": 1}, "delighted": {"_count": 1}}, "he": {"_count": 3, "does": {"_count": 1}, "noticed": {"_count": 1}, "said": {"_count": 1}}, "looked": {"_count": 2, "suddenly": {"_count": 1}, "quite": {"_count": 1}}, "whispered": {"_count": 3, "He": {"_count": 1}, "to": {"_count": 1}, "sadly": {"_count": 1}}, "could": {"_count": 3, "he": {"_count": 1}, "tell": {"_count": 1}, "come": {"_count": 1}}, "stood": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 4, "seized": {"_count": 1}, "muttered": {"_count": 1}, "said": {"_count": 1}, "I": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "breathlessly": {"_count": 1, "rubbing": {"_count": 1}}, "talking": {"_count": 1, "that": {"_count": 1}}, "defiantly": {"_count": 1, "": {"_count": 1}}, "doesnt": {"_count": 1, "care": {"_count": 1}}, "chatted": {"_count": 1, "happily": {"_count": 1}}, "come": {"_count": 1, "and": {"_count": 1}}, "asked": {"_count": 1, "tentatively": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "anxiously": {"_count": 1, "jumping": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 2}, "nodded": {"_count": 1}}, "give": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 3, "all": {"_count": 1}, "his": {"_count": 1}, "once": {"_count": 1}}, "saying": {"_count": 1, "Sorry": {"_count": 1}}, "here": {"_count": 1, "you": {"_count": 1}}, "now": {"_count": 1, "handed": {"_count": 1}}, "plucked": {"_count": 1, "at": {"_count": 1}}, "whatve": {"_count": 1, "I": {"_count": 1}}, "hears": {"_count": 1, "things": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "rescuing": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "you": {"_count": 3, "really": {"_count": 1}, "can": {"_count": 1}, "tell": {"_count": 1}}, "wheres": {"_count": 1, "Winky": {"_count": 1}}, "quietly": {"_count": 1, "his": {"_count": 1}}, "angrily": {"_count": 2, "": {"_count": 2}}, "mumbled": {"_count": 1, "looking": {"_count": 1}}, "be": {"_count": 1, "following": {"_count": 1}}, "volunteered": {"_count": 1, "to": {"_count": 1}}, "does": {"_count": 3, "it": {"_count": 2}, "not": {"_count": 1}}, "sank": {"_count": 2, "into": {"_count": 1}, "his": {"_count": 1}}, "wishes": {"_count": 1, "he": {"_count": 1}}, "expects": {"_count": 1, "so": {"_count": 1}}, "merely": {"_count": 1, "bounced": {"_count": 1}}, "hit": {"_count": 1, "himself": {"_count": 1}}, "nodded": {"_count": 2, "then": {"_count": 1}, "again": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "growled": {"_count": 1, "Harry": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "tears": {"_count": 1, "now": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 1}, "never": {"_count": 1}}, "appeared": {"_count": 1, "alongside": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "proudly": {"_count": 1, "swaying": {"_count": 1}}, "struggled": {"_count": 1, "then": {"_count": 1}}, "still": {"_count": 1, "finds": {"_count": 1}}, "straightened": {"_count": 1, "his": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "Luna": {"_count": 1, "Dean": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "deserved": {"_count": 1, "just": {"_count": 1}}, "lay": {"_count": 1, "ahead": {"_count": 1}}}, "Such": {"_count": 10, "an": {"_count": 1, "honor": {"_count": 1}}, "a": {"_count": 4, "flogging": {"_count": 1}, "lovely": {"_count": 1}, "powerful": {"_count": 1}, "long": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "rumors": {"_count": 1, "this": {"_count": 1}}, "loyalty": {"_count": 1, "is": {"_count": 1}}, "lies": {"_count": 1, "Lucius": {"_count": 1}}, "ignorance": {"_count": 1, "": {"_count": 1}}}, "Ththank": {"_count": 1, "you": {"_count": 1, "said": {"_count": 1}}}, "houseelf": {"_count": 88, "said": {"_count": 3, "the": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "in": {"_count": 2, "my": {"_count": 1}, "question": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 14}, "?": {"_count": 4}, "!": {"_count": 3}}, "to": {"_count": 1, "do": {"_count": 1}}, "smashed": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "Harrys": {"_count": 1}}, "that": {"_count": 2, "this": {"_count": 1}, "Harry": {"_count": 1}}, "was": {"_count": 3, "fighting": {"_count": 1}, "standing": {"_count": 1}, "convicted": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 1}, "come": {"_count": 1}, "once": {"_count": 1}}, "free": {"_count": 1, "was": {"_count": 1}}, "who": {"_count": 7, "disobeys": {"_count": 1}, "has": {"_count": 1}, "wants": {"_count": 1}, "lives": {"_count": 1}, "worked": {"_count": 1}, "now": {"_count": 1}, "had": {"_count": 1}}, "whos": {"_count": 1, "going": {"_count": 1}}, "being": {"_count": 1, "caught": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "knitted": {"_count": 1, "them": {"_count": 1}}, "he": {"_count": 1, "goes": {"_count": 1}}, "saves": {"_count": 1, "him": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "hie": {"_count": 1, "Winky": {"_count": 1}}, "bowing": {"_count": 1, "deeply": {"_count": 1}}, "called": {"_count": 3, "Dobby": {"_count": 1}, "Winky": {"_count": 2}}, "nursed": {"_count": 1, "me": {"_count": 1}}, "made": {"_count": 1, "when": {"_count": 1}}, "heads": {"_count": 2, "on": {"_count": 2}}, "and": {"_count": 5, "hes": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "edged": {"_count": 1, "into": {"_count": 1}}, "froze": {"_count": 1, "in": {"_count": 1}}, "kept": {"_count": 1, "appearing": {"_count": 1}}, "grumbled": {"_count": 1, "Ron": {"_count": 1}}, "staring": {"_count": 1, "avidly": {"_count": 1}}, "peering": {"_count": 1, "up": {"_count": 1}}, "came": {"_count": 1, "creeping": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "appeared": {"_count": 1, "with": {"_count": 1}}, "quite": {"_count": 1, "as": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "returned": {"_count": 1, "within": {"_count": 1}}, "bowed": {"_count": 1, "low": {"_count": 1}}, "taste": {"_count": 1, "every": {"_count": 1}}, "complained": {"_count": 1, "Ron": {"_count": 1}}, "busying": {"_count": 1, "himself": {"_count": 1}}}, "Petunias": {"_count": 20, "high": {"_count": 1, "false": {"_count": 1}}, "masterpiece": {"_count": 1, "of": {"_count": 1}}, "pudding": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 2, "appeared": {"_count": 1}, "was": {"_count": 1}}, "sister": {"_count": 1, "he": {"_count": 1}}, "bony": {"_count": 2, "cheekbone": {"_count": 1}, "hand": {"_count": 1}}, "room": {"_count": 1, "Harry": {"_count": 1}}, "eyes": {"_count": 1, "so": {"_count": 1}}, "thin": {"_count": 1, "horsey": {"_count": 1}}, "dying": {"_count": 1, "begonias": {"_count": 1}}, "outline": {"_count": 1, "grow": {"_count": 1}}, "surgically": {"_count": 1, "clean": {"_count": 1}}, "choosing": {"_count": 1, "There": {"_count": 1}}, "renewed": {"_count": 1, "sobs": {"_count": 1}}, "gleaming": {"_count": 2, "work": {"_count": 1}, "sink": {"_count": 1}}, "laugh": {"_count": 1, "was": {"_count": 1}}, "head": {"_count": 1, "had": {"_count": 1}}}, "false": {"_count": 26, "laugh": {"_count": 2, "sounded": {"_count": 1}, "as": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "alarm": {"_count": 3, "": {"_count": 2}, "Sirius": {"_count": 1}}, "cough": {"_count": 1, "which": {"_count": 1}}, "the": {"_count": 1, "bacon": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "pretenses": {"_count": 2, "Dumbledore": {"_count": 1}, "she": {"_count": 1}}, "sense": {"_count": 4, "of": {"_count": 4}}, "name": {"_count": 1, "says": {"_count": 1}}, "eyelashes": {"_count": 1, "were": {"_count": 1}}, "jewels": {"_count": 1, "missing": {"_count": 1}}, "hope": {"_count": 1, "that": {"_count": 1}}, "tales": {"_count": 1, "of": {"_count": 1}}, "memory": {"_count": 1, "in": {"_count": 1}}, "trail": {"_count": 1, "this": {"_count": 1}}, "images": {"_count": 1, "in": {"_count": 1}}, "impression": {"_count": 1, "said": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "sword": {"_count": 1, "": {"_count": 1}}}, "elf": {"_count": 165, "hung": {"_count": 1, "his": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 27}, "?": {"_count": 5}, "!": {"_count": 1}}, "who": {"_count": 3, "had": {"_count": 2}, "told": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 2}}, "terrified": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 7, "carrying": {"_count": 1}, "doing": {"_count": 1}, "saving": {"_count": 1}, "also": {"_count": 1}, "holding": {"_count": 1}, "already": {"_count": 1}, "trying": {"_count": 1}}, "bobbing": {"_count": 1, "apologetically": {"_count": 1}}, "came": {"_count": 1, "hurrying": {"_count": 1}}, "in": {"_count": 3, "wonderment": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "shrilly": {"_count": 1, "gazing": {"_count": 1}}, "curiously": {"_count": 1, "from": {"_count": 1}}, "I": {"_count": 2, "just": {"_count": 1}, "isnt": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "the": {"_count": 1, "Dark": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 1, "accuse": {"_count": 1}}, "but": {"_count": 3, "she": {"_count": 1}, "Winky": {"_count": 1}, "not": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "rights": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "holding": {"_count": 1, "Harrys": {"_count": 1}}, "like": {"_count": 2, "that": {"_count": 1}, "Kreacher": {"_count": 1}}, "while": {"_count": 1, "irresponsible": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "whod": {"_count": 1, "take": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "they": {"_count": 1, "says": {"_count": 1}}, "sir": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "Dobby": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 8, "his": {"_count": 1}, "he": {"_count": 1}, "goblin": {"_count": 1}, "stuffing": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}, "tried": {"_count": 1}, "Dobby": {"_count": 1}}, "Ill": {"_count": 1, "give": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "said": {"_count": 1, "happily": {"_count": 1}}, "Winky": {"_count": 1, "said": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "wasnt": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 5, "been": {"_count": 1}, "done": {"_count": 1}, "not": {"_count": 1}, "gone": {"_count": 1}, "known": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "friend": {"_count": 1, "ran": {"_count": 1}}, "took": {"_count": 2, "absolutely": {"_count": 1}, "one": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "repeated": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "muttered": {"_count": 1}}, "Harry": {"_count": 2, "turned": {"_count": 1}, "had": {"_count": 1}}, "heads": {"_count": 3, "glad": {"_count": 1}, "on": {"_count": 1}, "and": {"_count": 1}}, "hats": {"_count": 5, "": {"_count": 2}, "lying": {"_count": 1}, "and": {"_count": 1}, "before": {"_count": 1}}, "socks": {"_count": 1, "": {"_count": 1}}, "clothes": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "squeakily": {"_count": 1, "with": {"_count": 1}}, "surveyed": {"_count": 1, "Harry": {"_count": 1}}, "looked": {"_count": 2, "around": {"_count": 1}, "up": {"_count": 1}}, "dropping": {"_count": 1, "his": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "trembling": {"_count": 1, "from": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "tears": {"_count": 1}}, "gleefully": {"_count": 1, "and": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "scuttled": {"_count": 1, "toward": {"_count": 1}}, "jumped": {"_count": 1, "": {"_count": 1}}, "scurried": {"_count": 1, "out": {"_count": 1}}, "laying": {"_count": 1, "them": {"_count": 1}}, "obediently": {"_count": 1, "took": {"_count": 1}}, "bobbed": {"_count": 1, "away": {"_count": 1}}, "shivered": {"_count": 1, "": {"_count": 1}}, "flattening": {"_count": 1, "him": {"_count": 1}}, "freeze": {"_count": 1, "and": {"_count": 1}}, "sat": {"_count": 1, "up": {"_count": 1}}, "rocked": {"_count": 1, "faster": {"_count": 1}}, "quaked": {"_count": 1, "from": {"_count": 1}}, "whose": {"_count": 1, "death": {"_count": 1}}, "lay": {"_count": 2, "on": {"_count": 1}, "between": {"_count": 1}}, "bowed": {"_count": 1, "low": {"_count": 1}}, "keep": {"_count": 1, "silent": {"_count": 1}}, "nodded": {"_count": 1, "for": {"_count": 1}}, "trotted": {"_count": 1, "into": {"_count": 1}}, "stood": {"_count": 1, "feet": {"_count": 1}}, "swayed": {"_count": 1, "slightly": {"_count": 1}}, "became": {"_count": 1, "quite": {"_count": 1}}, "more": {"_count": 1, "snugly": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Griphook": {"_count": 1, "": {"_count": 1}}}, "particular": {"_count": 36, "reason": {"_count": 2, "youre": {"_count": 1}, "for": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "harm": {"_count": 1, "in": {"_count": 1}}, "Patronus": {"_count": 1, "": {"_count": 1}}, "expertise": {"_count": 1, "in": {"_count": 1}}, "seemed": {"_count": 1, "not": {"_count": 1}}, "step": {"_count": 1, "but": {"_count": 1}}, "rush": {"_count": 1, "to": {"_count": 1}}, "barrier": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "about": {"_count": 1}}, "dementors": {"_count": 1, "may": {"_count": 1}}, "kinds": {"_count": 1, "of": {"_count": 1}}, "moment": {"_count": 1, "snarled": {"_count": 1}}, "thought": {"_count": 1, "you": {"_count": 1}}, "pleasure": {"_count": 1, "during": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "opponent": {"_count": 1, "had": {"_count": 1}}, "meaning": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "rule": {"_count": 1}}, "enthusiasm": {"_count": 1, "": {"_count": 1}}, "spell": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "gave": {"_count": 1}}, "excursion": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "brotherly": {"_count": 1, "feeling": {"_count": 1}}, "brand": {"_count": 1, "of": {"_count": 1}}, "jobs": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 1, "Tonks": {"_count": 1}}, "fragment": {"_count": 1, "of": {"_count": 1}}, "spot": {"_count": 1, "until": {"_count": 1}}, "issue": {"_count": 1, "that": {"_count": 1}}, "book": {"_count": 1, "": {"_count": 1}}, "Leprechaun": {"_count": 1, "and": {"_count": 1}}, "dragon": {"_count": 1, "which": {"_count": 1}}, "place": {"_count": 1, "but": {"_count": 1}}}, "earnestly": {"_count": 22, "": {"_count": 20, ".": {"_count": 20}}, "over": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Lupin": {"_count": 1}}}, "wonders": {"_count": 6, "where": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "of": {"_count": 1, "my": {"_count": 1}}, "it": {"_count": 1, "has": {"_count": 1}}}, "Ssit": {"_count": 1, "down": {"_count": 1, "": {"_count": 1}}}, "falter": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}}, "offend": {"_count": 6, "you": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "wizards": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Offend": {"_count": 1, "Dobby": {"_count": 1, "": {"_count": 1}}}, "equal": {"_count": 20, "Harry": {"_count": 1, "trying": {"_count": 1}}, "pieces": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "real": {"_count": 1}}, "competition": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 4, "those": {"_count": 1}, "it": {"_count": 1}, "talk": {"_count": 1}, "them": {"_count": 1}}, "dislike": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "regret": {"_count": 1, "that": {"_count": 1}}, "status": {"_count": 1, "with": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "measure": {"_count": 3, "": {"_count": 2}, "through": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}}, "Shh": {"_count": 17, "": {"_count": 15, "!": {"_count": 15}}, "Fang": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 1, "hurried": {"_count": 1}}}, "hiccoughing": {"_count": 2, "looking": {"_count": 1, "like": {"_count": 1}}, "occasionally": {"_count": 1, "but": {"_count": 1}}}, "doll": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "Then": {"_count": 1, "out": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "adoration": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "springing": {"_count": 6, "up": {"_count": 3, "and": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "question": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "punish": {"_count": 21, "himself": {"_count": 5, "sir": {"_count": 1}, "most": {"_count": 1}, "for": {"_count": 1}, "afterward": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 2, "for": {"_count": 1}, "if": {"_count": 1}}, "him": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 2, "as": {"_count": 1}, "for": {"_count": 1}}, "them": {"_count": 4, "": {"_count": 2}, "for": {"_count": 1}, "the": {"_count": 1}}, "Hogwarts": {"_count": 1, "students": {"_count": 1}}, "Lucius": {"_count": 1, "": {"_count": 1}}, "lawbreakers": {"_count": 1, "still": {"_count": 1}}, "to": {"_count": 1, "control": {"_count": 1}}, "Ginny": {"_count": 1, "Neville": {"_count": 1}}, "every": {"_count": 1, "last": {"_count": 1}}}, "crosseyed": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "muttering": {"_count": 1, "Bad": {"_count": 1}}, "while": {"_count": 2, "its": {"_count": 1}, "Slughorn": {"_count": 1}}, "and": {"_count": 1, "mouthed": {"_count": 1}}}, "serves": {"_count": 1, "sir": {"_count": 1, "": {"_count": 1}}}, "serve": {"_count": 15, "one": {"_count": 1, "house": {"_count": 1}}, "the": {"_count": 2, "family": {"_count": 1}, "noble": {"_count": 1}}, "her": {"_count": 2, "friends": {"_count": 1}, "right": {"_count": 1}}, "him": {"_count": 3, "right": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "right": {"_count": 1}}, "dinner": {"_count": 1, "now": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "new": {"_count": 1}}, "she": {"_count": 1, "heaved": {"_count": 1}}, "me": {"_count": 1, "properly": {"_count": 1}}}, "grievously": {"_count": 2, "for": {"_count": 1, "coming": {"_count": 1}}, "injured": {"_count": 1, "than": {"_count": 1}}}, "doubts": {"_count": 9, "it": {"_count": 1, "sir": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "could": {"_count": 1, "extinguish": {"_count": 1}}, "doubts": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "and": {"_count": 1, "uncertainties": {"_count": 1}}}, "Escape": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "dies": {"_count": 5, "sir": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "under": {"_count": 1, "questioning": {"_count": 1}}}, "Almost": {"_count": 8, "at": {"_count": 2, "once": {"_count": 2}}, "said": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "soon": {"_count": 1}}, "literally": {"_count": 1, "": {"_count": 1}}, "absentmindedly": {"_count": 1, "Dumbledore": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}}, "dissolved": {"_count": 21, "again": {"_count": 3, "into": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "the": {"_count": 1, "leprechauns": {"_count": 1}}, "into": {"_count": 7, "tears": {"_count": 2}, "silver": {"_count": 2}, "nothingness": {"_count": 2}, "thin": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "momentarily": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "before": {"_count": 1}, "the": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "but": {"_count": 1, "reformed": {"_count": 1}}}, "wails": {"_count": 4, "of": {"_count": 1, "gratitude": {"_count": 1}}, "echoing": {"_count": 1, "off": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "stabbed": {"_count": 1, "the": {"_count": 1}}}, "gratitude": {"_count": 15, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "previous": {"_count": 1}}, "he": {"_count": 2, "felt": {"_count": 2}}, "for": {"_count": 3, "Harrys": {"_count": 1}, "what": {"_count": 1}, "an": {"_count": 1}}, "toward": {"_count": 2, "Sirius": {"_count": 1}, "Neville": {"_count": 1}}, "to": {"_count": 1, "Dumbledore": {"_count": 1}}, "but": {"_count": 1, "fortunately": {"_count": 1}}, "Rookwood": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "shame": {"_count": 1}}, "emanating": {"_count": 1, "from": {"_count": 1}}}, "asks": {"_count": 11, "if": {"_count": 2, "he": {"_count": 1}, "Ive": {"_count": 1}}, "him": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "too": {"_count": 1, "many": {"_count": 1}}, "questions": {"_count": 1, "later": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Gurg": {"_count": 1}}, "you": {"_count": 2, "are": {"_count": 1}, "whether": {"_count": 1}}, "any": {"_count": 1, "witch": {"_count": 1}}}, "load": {"_count": 23, "of": {"_count": 19, "rubbish": {"_count": 2}, "time": {"_count": 1}, "fingernails": {"_count": 1}, "other": {"_count": 2}, "soggy": {"_count": 1}, "socks": {"_count": 1}, "sixthyear": {"_count": 1}, "studying": {"_count": 1}, "homework": {"_count": 1}, "trouble": {"_count": 1}, "gold": {"_count": 1}, "dangerous": {"_count": 1}, "waffle": {"_count": 1}, "it": {"_count": 1}, "blood": {"_count": 1}, "Garroting": {"_count": 1}, "Death": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "o": {"_count": 1, "lessons": {"_count": 1}}, "his": {"_count": 1, "trunk": {"_count": 1}}, "smaller": {"_count": 1, "there": {"_count": 1}}}, "humble": {"_count": 1, "and": {"_count": 1, "modest": {"_count": 1}}}, "modest": {"_count": 10, "said": {"_count": 1, "Dobby": {"_count": 1}}, "Gilderoy": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "Ced": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 1, "modest": {"_count": 1}}, "no": {"_count": 1, "wonder": {"_count": 1}}, "as": {"_count": 1, "Horace": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "likable": {"_count": 1, "and": {"_count": 1}}}, "reverently": {"_count": 1, "his": {"_count": 1, "orblike": {"_count": 1}}}, "orblike": {"_count": 4, "eyes": {"_count": 4, "aglow": {"_count": 1}, "": {"_count": 2}, "shining": {"_count": 1}}}, "aglow": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "speaks": {"_count": 7, "not": {"_count": 1, "of": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "two": {"_count": 1}}, "ill": {"_count": 1, "of": {"_count": 1}}, "most": {"_count": 2, "highly": {"_count": 2}}, "very": {"_count": 1, "little": {"_count": 1}}}, "HeWhoMustNotBe": {"_count": 8, "Named": {"_count": 8, "Voldemort": {"_count": 1}, "": {"_count": 2}, "has": {"_count": 1}, "is": {"_count": 1}, "may": {"_count": 1}, "now": {"_count": 1}, "well": {"_count": 1}}}, "Named": {"_count": 8, "Voldemort": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "has": {"_count": 1, "returned": {"_count": 1}}, "is": {"_count": 1, "still": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "naturally": {"_count": 1}}}, "Speak": {"_count": 5, "not": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "for": {"_count": 2, "yourself": {"_count": 2}}, "ter": {"_count": 1, "me": {"_count": 1}}}, "headlights": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "ablaze": {"_count": 1, "": {"_count": 1}}, "glaring": {"_count": 1, "its": {"_count": 1}}, "screeched": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "streetlamps": {"_count": 2}}, "like": {"_count": 1, "luminous": {"_count": 1}}}, "hoarsely": {"_count": 31, "that": {"_count": 1, "Harry": {"_count": 1}}, "emerging": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "grabbing": {"_count": 1, "Harrys": {"_count": 1}}, "after": {"_count": 2, "her": {"_count": 1}, "removing": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "really": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "shuddering": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "cleared": {"_count": 1}}, "waving": {"_count": 1, "the": {"_count": 1}}, "peering": {"_count": 1, "down": {"_count": 1}}, "jumping": {"_count": 1, "up": {"_count": 1}}, "What": {"_count": 1, "did": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "Ron": {"_count": 1, "Ginny": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Dobbys": {"_count": 36, "eyes": {"_count": 3, "suddenly": {"_count": 1}, "were": {"_count": 1}, "to": {"_count": 1}}, "head": {"_count": 4, "tilted": {"_count": 1}, "sir": {"_count": 1}, "": {"_count": 1}, "muffling": {"_count": 1}}, "voice": {"_count": 1, "dropped": {"_count": 1}}, "face": {"_count": 1, "in": {"_count": 1}}, "sponge": {"_count": 1, "away": {"_count": 1}}, "lip": {"_count": 1, "trembled": {"_count": 1}}, "hand": {"_count": 4, "inched": {"_count": 1}, "and": {"_count": 2}, "jerked": {"_count": 1}}, "wrist": {"_count": 1, "to": {"_count": 1}}, "squeals": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "immense": {"_count": 1, "eyes": {"_count": 1}}, "tea": {"_count": 1, "cozy": {"_count": 1}}, "favorite": {"_count": 1, "favorite": {"_count": 1}}, "odd": {"_count": 1, "socks": {"_count": 1}}, "ears": {"_count": 1, "drooped": {"_count": 1}}, "plans": {"_count": 1, "arent": {"_count": 1}}, "Dumbledore": {"_count": 1, "knows": {"_count": 1}}, "painting": {"_count": 1, "": {"_count": 1}}, "habits": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "enormous": {"_count": 1, "tennisballshaped": {"_count": 1}}, "front": {"_count": 1, "and": {"_count": 1}}, "grave": {"_count": 5, "": {"_count": 2}, "or": {"_count": 1}, "now": {"_count": 1}, "he": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}}, "dabbing": {"_count": 13, "his": {"_count": 4, "face": {"_count": 2}, "sweating": {"_count": 1}, "eyes": {"_count": 1}}, "at": {"_count": 7, "his": {"_count": 5}, "the": {"_count": 1}, "Bills": {"_count": 1}}, "her": {"_count": 1, "black": {"_count": 1}}, "rouge": {"_count": 1, "onto": {"_count": 1}}}, "valiant": {"_count": 4, "and": {"_count": 1, "bold": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "effort": {"_count": 1, "to": {"_count": 1}}, "efforts": {"_count": 1, "not": {"_count": 1}}}, "bold": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "as": {"_count": 1, "brass": {"_count": 1}}, "headline": {"_count": 1, "\u2018Potter": {"_count": 1}}}, "braved": {"_count": 2, "so": {"_count": 1, "many": {"_count": 1}}, "the": {"_count": 1, "telephone": {"_count": 1}}}, "chink": {"_count": 9, "of": {"_count": 9, "knives": {"_count": 1}, "glass": {"_count": 1}, "plates": {"_count": 1}, "golden": {"_count": 1}, "sunlight": {"_count": 1}, "faint": {"_count": 1}, "soft": {"_count": 1}, "light": {"_count": 1}, "sky": {"_count": 1}}}, "knives": {"_count": 17, "and": {"_count": 6, "forks": {"_count": 4}, "everything": {"_count": 1}, "cleavers": {"_count": 1}}, "soared": {"_count": 1, "out": {"_count": 1}}, "to": {"_count": 2, "torture": {"_count": 1}, "work": {"_count": 1}}, "were": {"_count": 2, "piercing": {"_count": 1}, "chopping": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}, "scraped": {"_count": 1, "plates": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "sliced": {"_count": 1, "away": {"_count": 1}}}, "forks": {"_count": 6, "from": {"_count": 1, "downstairs": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "please": {"_count": 1, "you": {"_count": 1}}, "as": {"_count": 1, "Bill": {"_count": 1}}}, "rumble": {"_count": 13, "of": {"_count": 8, "Uncle": {"_count": 1}, "thunder": {"_count": 3}, "voices": {"_count": 2}, "cars": {"_count": 1}, "an": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Wwhat": {"_count": 6, "": {"_count": 3, "?": {"_count": 3}}, "am": {"_count": 1, "I": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}}, "flapped": {"_count": 16, "": {"_count": 2, ".": {"_count": 2}}, "pointlessly": {"_count": 1, "": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}, "open": {"_count": 1, "on": {"_count": 1}}, "idly": {"_count": 1, "around": {"_count": 1}}, "around": {"_count": 5, "the": {"_count": 1}, "Mr": {"_count": 1}, "his": {"_count": 1}, "them": {"_count": 1}, "their": {"_count": 1}}, "his": {"_count": 1, "gigantic": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "her": {"_count": 1, "hands": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "flailed": {"_count": 1, "and": {"_count": 1}}}, "mortal": {"_count": 18, "danger": {"_count": 4, "": {"_count": 2}, "now": {"_count": 1}, "for": {"_count": 1}}, "enemy": {"_count": 2, "and": {"_count": 2}}, "peril": {"_count": 5, "": {"_count": 4}, "and": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}, "life": {"_count": 1, "again": {"_count": 1}}, "man": {"_count": 1, "with": {"_count": 1}}, "agony": {"_count": 1, "as": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "world": {"_count": 1, "she": {"_count": 1}}, "wound": {"_count": 1, "": {"_count": 1}}}, "plot": {"_count": 8, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "to": {"_count": 3, "make": {"_count": 1}, "get": {"_count": 2}}, "on": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "her": {"_count": 1, "escape": {"_count": 1}}, "if": {"_count": 1, "its": {"_count": 1}}}, "peril": {"_count": 8, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 1, "balancing": {"_count": 1}}, "I": {"_count": 1, "shall": {"_count": 1}}}, "grabbing": {"_count": 22, "the": {"_count": 3, "elfs": {"_count": 2}, "tape": {"_count": 1}}, "him": {"_count": 2, "by": {"_count": 1}, "and": {"_count": 1}}, "Ginnys": {"_count": 2, "hand": {"_count": 2}}, "a": {"_count": 4, "sandwich": {"_count": 1}, "drumstick": {"_count": 1}, "Chocolate": {"_count": 1}, "spoon": {"_count": 1}}, "hold": {"_count": 1, "of": {"_count": 1}}, "Harrys": {"_count": 2, "shoulder": {"_count": 1}, "arm": {"_count": 1}}, "Hermiones": {"_count": 2, "wrist": {"_count": 1}, "hand": {"_count": 1}}, "Cedrics": {"_count": 1, "arm": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 4, "wrist": {"_count": 2}, "arm": {"_count": 2}}}, "elfs": {"_count": 17, "arm": {"_count": 1, "to": {"_count": 1}}, "bony": {"_count": 1, "wrist": {"_count": 1}}, "ugly": {"_count": 1, "brown": {"_count": 1}}, "scared": {"_count": 1, "of": {"_count": 1}}, "smile": {"_count": 1, "to": {"_count": 1}}, "eyes": {"_count": 2, "were": {"_count": 1}, "found": {"_count": 1}}, "tiny": {"_count": 1, "arm": {"_count": 1}}, "stricken": {"_count": 1, "face": {"_count": 1}}, "head": {"_count": 1, "barely": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "outstretched": {"_count": 1, "fingers": {"_count": 1}}, "heaving": {"_count": 1, "chest": {"_count": 1}}, "body": {"_count": 1, "then": {"_count": 1}}, "bare": {"_count": 1, "feet": {"_count": 1}}, "eyelids": {"_count": 1, "sliding": {"_count": 1}}, "name": {"_count": 1, "had": {"_count": 1}}}, "nod": {"_count": 25, "he": {"_count": 1, "added": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "had": {"_count": 1, "been": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 1}, "Harrys": {"_count": 1}}, "that": {"_count": 2, "goaded": {"_count": 1}, "set": {"_count": 1}}, "and": {"_count": 6, "retreated": {"_count": 1}, "shrug": {"_count": 1}, "moved": {"_count": 1}, "say": {"_count": 1}, "continuing": {"_count": 1}, "unpleasant": {"_count": 1}}, "beckoned": {"_count": 1, "its": {"_count": 1}}, "or": {"_count": 2, "shake": {"_count": 2}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}}, "hastily": {"_count": 118, "as": {"_count": 9, "Dobbys": {"_count": 1}, "Ginny": {"_count": 2}, "Hermione": {"_count": 2}, "Filch": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 1}}, "shoved": {"_count": 2, "handfuls": {"_count": 1}, "the": {"_count": 1}}, "wiping": {"_count": 1, "the": {"_count": 1}}, "changing": {"_count": 2, "the": {"_count": 2}}, "explained": {"_count": 1, "as": {"_count": 1}}, "I": {"_count": 1, "might": {"_count": 1}}, "trying": {"_count": 2, "to": {"_count": 2}}, "fed": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "folded": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 21}}, "said": {"_count": 1, "goodbye": {"_count": 1}}, "or": {"_count": 1, "Gobstones": {"_count": 1}}, "stuffed": {"_count": 1, "the": {"_count": 1}}, "scribbled": {"_count": 1, "note": {"_count": 1}}, "added": {"_count": 1, "a": {"_count": 1}}, "pressed": {"_count": 1, "the": {"_count": 1}}, "turned": {"_count": 1, "his": {"_count": 1}}, "untied": {"_count": 1, "it": {"_count": 1}}, "snapping": {"_count": 1, "shut": {"_count": 1}}, "checked": {"_count": 1, "that": {"_count": 1}}, "seeing": {"_count": 3, "Harry": {"_count": 1}, "the": {"_count": 2}}, "dropped": {"_count": 3, "down": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}}, "quailing": {"_count": 1, "under": {"_count": 1}}, "rifled": {"_count": 1, "through": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 1}, "wildly": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 5, "blotchily": {"_count": 1}, "fell": {"_count": 1}, "he": {"_count": 1}, "scanned": {"_count": 1}, "retreated": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "you": {"_count": 1, "really": {"_count": 1}}, "rolling": {"_count": 1, "up": {"_count": 1}}, "itll": {"_count": 1, "just": {"_count": 1}}, "moving": {"_count": 1, "on": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "pointing": {"_count": 1, "her": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 1}}, "shutting": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "removed": {"_count": 1, "the": {"_count": 1}}, "pretend": {"_count": 1, "to": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "moved": {"_count": 1, "even": {"_count": 1}}, "to": {"_count": 2, "make": {"_count": 1}, "the": {"_count": 1}}, "crossed": {"_count": 1, "out": {"_count": 1}}, "bent": {"_count": 1, "over": {"_count": 1}}, "hurrying": {"_count": 1, "to": {"_count": 1}}, "gulped": {"_count": 1, "soup": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "whipped": {"_count": 1, "his": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "stuck": {"_count": 1, "out": {"_count": 1}}, "wipe": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 1, "away": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "looking": {"_count": 2, "away": {"_count": 1}, "around": {"_count": 1}}, "poking": {"_count": 1, "the": {"_count": 1}}, "snatching": {"_count": 1, "his": {"_count": 1}}, "packed": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "coughing": {"_count": 1, "as": {"_count": 1}}, "did": {"_count": 1, "as": {"_count": 1}}, "returned": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "stifled": {"_count": 1, "gasp": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "modified": {"_count": 1, "his": {"_count": 1}}, "replaced": {"_count": 1, "it": {"_count": 1}}, "inserted": {"_count": 1, "the": {"_count": 1}}, "piled": {"_count": 1, "against": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "tilted": {"_count": 8, "worryingly": {"_count": 1, "close": {"_count": 1}}, "low": {"_count": 1, "and": {"_count": 1}}, "hat": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "cup": {"_count": 1}, "shard": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "to": {"_count": 1, "one": {"_count": 1}}}, "worryingly": {"_count": 1, "close": {"_count": 1, "to": {"_count": 1}}}, "HeWhoMustNotBeNamed": {"_count": 23, "sir": {"_count": 1, "But": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 2}, "?": {"_count": 2}}, "was": {"_count": 2, "at": {"_count": 1}, "sighted": {"_count": 1}}, "taught": {"_count": 1, "him": {"_count": 1}}, "forced": {"_count": 1, "me": {"_count": 1}}, "operated": {"_count": 1, "always": {"_count": 1}}, "useful": {"_count": 1, "information": {"_count": 1}}, "Father": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 1, "power": {"_count": 1}}, "is": {"_count": 4, "unstable": {"_count": 1}, "back": {"_count": 2}, "coming": {"_count": 1}}, "has": {"_count": 3, "returned": {"_count": 1}, "now": {"_count": 1}, "never": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "snarled": {"_count": 1, "Fudge": {"_count": 1}}, "does": {"_count": 1, "indeed": {"_count": 1}}}, "rival": {"_count": 5, "those": {"_count": 1, "of": {"_count": 1}}, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "You": {"_count": 1, "haff": {"_count": 1}}, "Houses": {"_count": 1, "attempting": {"_count": 1}}, "his": {"_count": 1, "obsession": {"_count": 1}}}, "WhoMustNotBeNamed": {"_count": 4, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "height": {"_count": 35, "of": {"_count": 9, "his": {"_count": 5}, "fifty": {"_count": 1}, "cool": {"_count": 1}, "dishonor": {"_count": 1}, "its": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "said": {"_count": 1, "Waddiwasil": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "Harry": {"_count": 1}}, "the": {"_count": 1, "top": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 1}, "beads": {"_count": 1}}, "blushing": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "so": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "with": {"_count": 1, "no": {"_count": 1}}, "and": {"_count": 3, "replied": {"_count": 1}, "throwing": {"_count": 1}, "said": {"_count": 1}}, "though": {"_count": 1, "admittedly": {"_count": 1}}, "In": {"_count": 1, "desperation": {"_count": 1}}}, "thudding": {"_count": 2, "madly": {"_count": 1, "heard": {"_count": 1}}, "slightly": {"_count": 1, "at": {"_count": 1}}}, "closet": {"_count": 9, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "across": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "theyd": {"_count": 1}}, "door": {"_count": 2, "they": {"_count": 1}, "": {"_count": 1}}, "she": {"_count": 1, "opened": {"_count": 1}}, "and": {"_count": 1, "down": {"_count": 1}}}, "devil": {"_count": 3, "are": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}}, "Japanese": {"_count": 1, "golfer": {"_count": 1, "joke": {"_count": 1}}}, "stomped": {"_count": 7, "flatfooted": {"_count": 1, "from": {"_count": 1}}, "out": {"_count": 2, "looking": {"_count": 1}, "of": {"_count": 1}}, "off": {"_count": 2, "to": {"_count": 1}, "toward": {"_count": 1}}, "around": {"_count": 1, "brewing": {"_count": 1}}, "toward": {"_count": 1, "his": {"_count": 1}}}, "flatfooted": {"_count": 3, "from": {"_count": 2, "the": {"_count": 2}}, "step": {"_count": 1, "toward": {"_count": 1}}}, "nimbly": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "wad": {"_count": 5, "of": {"_count": 5, "envelopes": {"_count": 1}, "chewing": {"_count": 1}, "material": {"_count": 2}, "toilet": {"_count": 1}}}, "envelopes": {"_count": 10, "from": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "yellowish": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 3}}, "contents": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "scribble": {"_count": 6, "that": {"_count": 1, "looked": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "skidding": {"_count": 1, "across": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "Levicorpus": {"_count": 1, "nvbl": {"_count": 1}}}, "Mouth": {"_count": 2, "dry": {"_count": 1, "stomach": {"_count": 1}}, "hanging": {"_count": 1, "open": {"_count": 1}}}, "lurching": {"_count": 5, "Harry": {"_count": 1, "sprang": {"_count": 1}}, "sideways": {"_count": 1, "into": {"_count": 1}}, "forward": {"_count": 1, "seizing": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "catlike": {"_count": 3, "on": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "slits": {"_count": 1, "for": {"_count": 1}}}, "American": {"_count": 2, "plumbers": {"_count": 1, "Mr": {"_count": 1}}, "witches": {"_count": 1, "sat": {"_count": 1}}}, "plumbers": {"_count": 1, "Mr": {"_count": 1, "Mason": {"_count": 1}}}, "masterpiece": {"_count": 2, "of": {"_count": 2, "a": {"_count": 1}, "goblinwork": {"_count": 1}}}, "tragic": {"_count": 12, "look": {"_count": 1, "": {"_count": 1}}, "sob": {"_count": 1, "rose": {"_count": 1}}, "expression": {"_count": 1, "she": {"_count": 1}}, "losses": {"_count": 1, "so": {"_count": 1}}, "for": {"_count": 1, "another": {"_count": 1}}, "past": {"_count": 1, "disfigures": {"_count": 1}}, "little": {"_count": 1, "hero": {"_count": 1}}, "demise": {"_count": 1, "of": {"_count": 1}}, "hero": {"_count": 1, "or": {"_count": 1}}, "accident": {"_count": 2, "she": {"_count": 1}, "": {"_count": 1}}, "blow": {"_count": 1, "and": {"_count": 1}}}, "heartstopping": {"_count": 2, "crash": {"_count": 1, "": {"_count": 1}}, "moment": {"_count": 1, "Harry": {"_count": 1}}}, "Cream": {"_count": 5, "splattered": {"_count": 1, "the": {"_count": 1}}, "Parlor": {"_count": 3, "finishing": {"_count": 1}, "Ron": {"_count": 1}, "": {"_count": 1}}, "concealed": {"_count": 1, "in": {"_count": 1}}}, "shattered": {"_count": 29, "": {"_count": 7, ".": {"_count": 7}}, "remnants": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "the": {"_count": 3, "wintery": {"_count": 1}, "silence": {"_count": 1}, "tiled": {"_count": 1}}, "and": {"_count": 1, "set": {"_count": 1}}, "but": {"_count": 1, "still": {"_count": 1}}, "spheres": {"_count": 1, "had": {"_count": 1}}, "The": {"_count": 1, "Death": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 2}}, "it": {"_count": 1, "": {"_count": 1}}, "glass": {"_count": 1, "in": {"_count": 1}}, "soul": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "remains": {"_count": 1, "of": {"_count": 1}}, "ceiling": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 1, "had": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "upon": {"_count": 1, "meeting": {"_count": 1}}, "windows": {"_count": 1, "something": {"_count": 1}}}, "whip": {"_count": 11, "Dobby": {"_count": 1, "vanished": {"_count": 1}}, "up": {"_count": 2, "a": {"_count": 2}}, "crack": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "you": {"_count": 1, "raw": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "yourselves": {"_count": 1, "up": {"_count": 1}}}, "gloss": {"_count": 2, "the": {"_count": 1, "whole": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "disturbed": {"_count": 27, "meeting": {"_count": 1, "strangers": {"_count": 1}}, "by": {"_count": 2, "Mrs": {"_count": 1}, "images": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 4, "treetops": {"_count": 1}, "quiet": {"_count": 1}, "topsecret": {"_count": 1}, "water": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "possibly": {"_count": 1}}, "night": {"_count": 1, "because": {"_count": 1}}, "your": {"_count": 1, "scar": {"_count": 1}}, "him": {"_count": 4, "quite": {"_count": 1}, "": {"_count": 1}, "most": {"_count": 1}, "was": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "its": {"_count": 1, "contents": {"_count": 1}}, "childhood": {"_count": 1, "the": {"_count": 1}}, "mice": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "there": {"_count": 1}, "as": {"_count": 1}}, "Harry": {"_count": 1, "anymore": {"_count": 1}}}, "upsets": {"_count": 1, "him": {"_count": 1, "so": {"_count": 1}}}, "shooed": {"_count": 2, "the": {"_count": 1, "shocked": {"_count": 1}}, "them": {"_count": 1, "away": {"_count": 1}}}, "flay": {"_count": 2, "him": {"_count": 2, "to": {"_count": 1}, "alive": {"_count": 1}}}, "mop": {"_count": 10, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "support": {"_count": 1}}, "his": {"_count": 1, "sweating": {"_count": 1}}, "him": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 5, "Diggory": {"_count": 1}, "while": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 1}}, "of": {"_count": 1, "fair": {"_count": 1}}}, "dug": {"_count": 21, "some": {"_count": 1, "ice": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 1}, "it": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "their": {"_count": 1, "heels": {"_count": 1}}, "his": {"_count": 2, "finger": {"_count": 1}, "fingernails": {"_count": 1}}, "earth": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 3, "hand": {"_count": 1}, "yeh": {"_count": 1}, "grave": {"_count": 1}}, "deeper": {"_count": 2, "stinging": {"_count": 1}, "and": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "hole": {"_count": 1, "": {"_count": 1}}, "Dobbys": {"_count": 2, "grave": {"_count": 2}}, "grave": {"_count": 1, "": {"_count": 1}}}, "freezer": {"_count": 2, "and": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "scrubbing": {"_count": 3, "the": {"_count": 2, "kitchen": {"_count": 1}, "message": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "mints": {"_count": 1, "when": {"_count": 1, "a": {"_count": 1}}}, "banshee": {"_count": 7, "and": {"_count": 1, "ran": {"_count": 1}}, "he": {"_count": 1, "banished": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "turned": {"_count": 1, "into": {"_count": 1}}}, "lunatics": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mortally": {"_count": 2, "afraid": {"_count": 1, "of": {"_count": 1}}, "offended": {"_count": 1, "him": {"_count": 1}}}, "sizes": {"_count": 4, "and": {"_count": 1, "to": {"_count": 1}}, "once": {"_count": 1, "youre": {"_count": 1}}, "too": {"_count": 1, "small": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "support": {"_count": 53, "as": {"_count": 1, "Uncle": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "the": {"_count": 3, "teachers": {"_count": 1}, "Tornados": {"_count": 1}, "weight": {"_count": 1}}, "him": {"_count": 4, "": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "said": {"_count": 1}}, "a": {"_count": 1, "ceiling": {"_count": 1}}, "openly": {"_count": 1, "for": {"_count": 1}}, "Okay": {"_count": 1, "say": {"_count": 1}}, "Blacks": {"_count": 1, "story": {"_count": 1}}, "will": {"_count": 1, "count": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "for": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "Muggle": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 2, "can": {"_count": 1}, "": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "his": {"_count": 4, "weight": {"_count": 3}, "own": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "did": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "what": {"_count": 1, "dyou": {"_count": 1}}, "them": {"_count": 1, "do": {"_count": 1}}, "Ron": {"_count": 1, "Hermione": {"_count": 1}}, "from": {"_count": 2, "parents": {"_count": 1}, "the": {"_count": 1}}, "looking": {"_count": 1, "shocked": {"_count": 1}}, "its": {"_count": 1, "weight": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "so": {"_count": 1, "its": {"_count": 1}}, "staff": {"_count": 1, "": {"_count": 1}}, "After": {"_count": 1, "everything": {"_count": 1}}, "Puddlemere": {"_count": 1, "United": {"_count": 1}}, "and": {"_count": 1, "protection": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}}, "demonic": {"_count": 1, "glint": {"_count": 1, "in": {"_count": 1}}}, "glint": {"_count": 13, "in": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 1}, "Snape": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 9, "gold": {"_count": 4}, "a": {"_count": 1}, "deep": {"_count": 1}, "an": {"_count": 1}, "silver": {"_count": 1}, "red": {"_count": 1}}}, "Read": {"_count": 7, "it": {"_count": 4, "": {"_count": 2}, "aloud": {"_count": 1}, "he": {"_count": 1}}, "em": {"_count": 1, "off": {"_count": 1}}, "quickly": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "third": {"_count": 1}}}, "evilly": {"_count": 3, "brandishing": {"_count": 1, "the": {"_count": 1}}, "several": {"_count": 1, "rusting": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}}, "brandishing": {"_count": 30, "the": {"_count": 4, "letter": {"_count": 1}, "jar": {"_count": 1}, "silver": {"_count": 1}, "sword": {"_count": 1}}, "his": {"_count": 8, "broken": {"_count": 1}, "stick": {"_count": 1}, "wand": {"_count": 2}, "fists": {"_count": 2}, "bloody": {"_count": 1}, "flowery": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 3, "violently": {"_count": 1}, "in": {"_count": 2}}, "a": {"_count": 7, "fist": {"_count": 1}, "copy": {"_count": 1}, "fresh": {"_count": 1}, "whip": {"_count": 1}, "wand": {"_count": 1}, "stick": {"_count": 1}, "club": {"_count": 1}}, "banners": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "clawed": {"_count": 1, "hands": {"_count": 1}}, "her": {"_count": 1, "letter": {"_count": 1}}, "at": {"_count": 1, "Hermione": {"_count": 1}}, "an": {"_count": 1, "ugly": {"_count": 1}}, "armfuls": {"_count": 1, "of": {"_count": 1}}}, "contain": {"_count": 10, "birthday": {"_count": 1, "greetings": {"_count": 1}}, "himself": {"_count": 4, "Hedwig": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "but": {"_count": 1}}, "his": {"_count": 1, "enthusiasm": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "tiny": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}}, "greetings": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 1, "friends": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}}, "intelligence": {"_count": 7, "that": {"_count": 2, "a": {"_count": 1}, "you": {"_count": 1}}, "and": {"_count": 1, "therefore": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "thankfully": {"_count": 1, "far": {"_count": 1}}, "than": {"_count": 1, "forces": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "Hover": {"_count": 6, "Charm": {"_count": 6, "was": {"_count": 1}, "he": {"_count": 1}, "that": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 2}}}, "residence": {"_count": 5, "this": {"_count": 1, "evening": {"_count": 1}}, "shortly": {"_count": 2, "to": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}}, "underage": {"_count": 27, "wizards": {"_count": 4, "are": {"_count": 3}, "all": {"_count": 1}}, "and": {"_count": 3, "were": {"_count": 1}, "you": {"_count": 1}, "unqualified": {"_count": 1}}, "wizard": {"_count": 2, "and": {"_count": 1}, "Harry": {"_count": 1}}, "magic": {"_count": 6, "": {"_count": 4}, "theyll": {"_count": 1}, "I": {"_count": 1}}, "student": {"_count": 2, "hoodwinks": {"_count": 1}, "yields": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, "?": {"_count": 1}}, "family": {"_count": 1, "members": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "could": {"_count": 1}}, "which": {"_count": 1, "means": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}}, "permitted": {"_count": 25, "to": {"_count": 11, "perform": {"_count": 1}, "visit": {"_count": 2}, "carry": {"_count": 1}, "ask": {"_count": 1}, "use": {"_count": 1}, "retrieve": {"_count": 1}, "go": {"_count": 1}, "wear": {"_count": 1}, "tame": {"_count": 1}, "enter": {"_count": 1}}, "Black": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "death": {"_count": 1}}, "in": {"_count": 1, "corridors": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "our": {"_count": 1}}, "themselves": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "student": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}, "Ron": {"_count": 1, "to": {"_count": 1}}, "twice": {"_count": 1, "pausing": {"_count": 1}}, "your": {"_count": 2, "friends": {"_count": 2}}, "me": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "mother": {"_count": 1}}}, "spellwork": {"_count": 4, "on": {"_count": 1, "your": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "Ive": {"_count": 1, "ever": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}}, "expulsion": {"_count": 10, "from": {"_count": 4, "said": {"_count": 1}, "Hogwarts": {"_count": 1}, "Hog": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "will": {"_count": 1, "also": {"_count": 1}}, "of": {"_count": 1, "Peeves": {"_count": 1}}}, "Decree": {"_count": 26, "for": {"_count": 10, "the": {"_count": 9}, "Justifiable": {"_count": 1}}, "states": {"_count": 1, "that": {"_count": 1}}, "Twenty": {"_count": 1, "two": {"_count": 1}}, "Twentythree": {"_count": 1, "which": {"_count": 1}}, "and": {"_count": 1, "forced": {"_count": 1}}, "saying": {"_count": 1, "anyone": {"_count": 1}}, "Number": {"_count": 8, "Twentyfour": {"_count": 2}, "Twenty": {"_count": 1}, "Twentysix": {"_count": 2}, "Twentyseven": {"_count": 1}, "Twentythree": {"_count": 1}, "Twentyeight": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Twentytwo": {"_count": 1, "the": {"_count": 1}}, "Twentynine": {"_count": 1, "comes": {"_count": 1}}}, "Reasonable": {"_count": 7, "Restriction": {"_count": 6, "of": {"_count": 6}}, "be": {"_count": 1, "damned": {"_count": 1}}}, "Restriction": {"_count": 11, "of": {"_count": 11, "Underage": {"_count": 10}, "Thingy": {"_count": 1}}}, "Sorcery": {"_count": 9, "1875": {"_count": 2, "Paragraph": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 1, "says": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "has": {"_count": 1, "resulted": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "1875": {"_count": 2, "Paragraph": {"_count": 1, "C": {"_count": 1}}, "and": {"_count": 1, "also": {"_count": 1}}}, "Paragraph": {"_count": 1, "C": {"_count": 1, "": {"_count": 1}}}, "C": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "the": {"_count": 1}}, "NonTradeable": {"_count": 1, "Substance": {"_count": 1}}, "they": {"_count": 1, "saw": {"_count": 1}}}, "activity": {"_count": 11, "that": {"_count": 2, "risks": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "going": {"_count": 1, "on": {"_count": 1}}, "checking": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "everyone": {"_count": 1}}, "usually": {"_count": 1, "closely": {"_count": 1}}, "since": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 1, "your": {"_count": 1}}, "around": {"_count": 1, "underseventeens": {"_count": 1}}}, "members": {"_count": 74, "of": {"_count": 39, "the": {"_count": 34}, "other": {"_count": 1}, "staff": {"_count": 1}, "rival": {"_count": 1}, "Dumbledores": {"_count": 1}, "my": {"_count": 1}}, "to": {"_count": 4, "participate": {"_count": 1}, "be": {"_count": 1}, "our": {"_count": 1}, "Grindelvald": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "case": {"_count": 1}}, "its": {"_count": 1, "very": {"_count": 1}}, "kept": {"_count": 1, "hurrying": {"_count": 1}}, "wands": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "around": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 1}, "been": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "had": {"_count": 3, "left": {"_count": 1}, "risen": {"_count": 1}, "moved": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "skin": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "with": {"_count": 1}, "saw": {"_count": 1}, "always": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "who": {"_count": 2, "saw": {"_count": 1}, "passed": {"_count": 1}}, "are": {"_count": 2, "aware": {"_count": 1}, "allowed": {"_count": 1}}, "SideAlongApparition": {"_count": 1, "": {"_count": 1}}, "themselves": {"_count": 1, "either": {"_count": 1}}, "might": {"_count": 1, "leap": {"_count": 1}}, "for": {"_count": 1, "dinner": {"_count": 1}}}, "non": {"_count": 2, "magical": {"_count": 1, "community": {"_count": 1}}, "Muggle": {"_count": 1, "settlement": {"_count": 1}}}, "community": {"_count": 30, "Muggles": {"_count": 1, "is": {"_count": 1}}, "particularly": {"_count": 1, "if": {"_count": 1}}, "to": {"_count": 3, "remain": {"_count": 2}, "decide": {"_count": 1}}, "lives": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 3, "witches": {"_count": 1}, "being": {"_count": 1}, "Liechtenstein": {"_count": 1}}, "got": {"_count": 1, "wind": {"_count": 1}}, "are": {"_count": 1, "completely": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "that": {"_count": 3, "Black": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}}, "Mrs": {"_count": 1, "Longbottom": {"_count": 1}}, "which": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "prevented": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "preferred": {"_count": 1, "Scrimgeour": {"_count": 1}}, "believe": {"_count": 1, "that": {"_count": 1}}, "though": {"_count": 1, "rumors": {"_count": 1}}, "is": {"_count": 2, "currently": {"_count": 2}}, "at": {"_count": 1, "large": {"_count": 1}}}, "offense": {"_count": 12, "under": {"_count": 3, "section": {"_count": 2}, "paragraph": {"_count": 1}}, "sir": {"_count": 1, "no": {"_count": 1}}, "meant": {"_count": 1, "Though": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "occurred": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 1}, "you": {"_count": 1}}, "to": {"_count": 1, "connect": {"_count": 1}}, "because": {"_count": 1, "Fred": {"_count": 1}}, "mate": {"_count": 1, "but": {"_count": 1}}}, "13": {"_count": 2, "of": {"_count": 2, "the": {"_count": 2}}}, "Confederation": {"_count": 14, "of": {"_count": 14, "Warlocks": {"_count": 1}, "Wizards": {"_count": 13}}}, "Statute": {"_count": 13, "of": {"_count": 13, "Secrecy": {"_count": 13}}}, "Secrecy": {"_count": 23, "": {"_count": 2, ".": {"_count": 2}}, "Sensor": {"_count": 5, "": {"_count": 2}, "with": {"_count": 1}, "aloft": {"_count": 1}, "moved": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 1, "theres": {"_count": 1}}, "we": {"_count": 2, "regret": {"_count": 1}, "thought": {"_count": 1}}, "been": {"_count": 1, "severe": {"_count": 1}}, "about": {"_count": 1, "being": {"_count": 1}}, "by": {"_count": 1, "Harry": {"_count": 1}}, "Sensors": {"_count": 4, "and": {"_count": 1}, "when": {"_count": 1}, "everywhere": {"_count": 1}, "detect": {"_count": 1}}, "breached": {"_count": 1, "in": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "1689": {"_count": 1}}, "and": {"_count": 1, "establishing": {"_count": 1}}, "unbalanced": {"_count": 1, "like": {"_count": 1}}}, "Enjoy": {"_count": 3, "your": {"_count": 2, "holidays": {"_count": 1}, "stay": {"_count": 1}}, "yourself": {"_count": 1, "said": {"_count": 1}}}, "Mafalda": {"_count": 14, "Hopkirk": {"_count": 5, "IMPROPER": {"_count": 3}, "he": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "!": {"_count": 1}, "?": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "youll": {"_count": 1, "find": {"_count": 1}}, "pass": {"_count": 1, "them": {"_count": 1}}, "though": {"_count": 1, "her": {"_count": 1}}}, "Hopkirk": {"_count": 5, "IMPROPER": {"_count": 3, "USE": {"_count": 3}}, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "IMPROPER": {"_count": 3, "USE": {"_count": 3, "OF": {"_count": 3}}}, "USE": {"_count": 4, "OF": {"_count": 3, "MAGIC": {"_count": 3}}, "MAGIC": {"_count": 1, "NOW": {"_count": 1}}}, "OFFICE": {"_count": 4, "Ministry": {"_count": 3, "of": {"_count": 3}}, "OFF": {"_count": 1, "Page": {"_count": 1}}}, "gleam": {"_count": 11, "dancing": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 5, "many": {"_count": 1}, "something": {"_count": 1}, "silver": {"_count": 1}, "brightest": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 4}, "Voldemorts": {"_count": 1}}}, "Forgot": {"_count": 3, "to": {"_count": 2, "mention": {"_count": 1}, "brake": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Slipped": {"_count": 2, "your": {"_count": 1, "mind": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}}, "daresay": {"_count": 31, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "youd": {"_count": 2, "rather": {"_count": 1}, "like": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 3, "basilisks": {"_count": 1}, "Ministry": {"_count": 1}, "moment": {"_count": 1}}, "youve": {"_count": 1, "had": {"_count": 1}}, "you": {"_count": 4, "heard": {"_count": 1}, "Ron": {"_count": 1}, "11": {"_count": 1}, "will": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "Madam": {"_count": 1, "Hooch": {"_count": 1}}, "youll": {"_count": 2, "need": {"_count": 1}, "still": {"_count": 1}}, "theyll": {"_count": 1, "want": {"_count": 1}}, "their": {"_count": 1, "kind": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "it": {"_count": 1, "picks": {"_count": 1}}, "we": {"_count": 1, "shall": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "Harry": {"_count": 1, "has": {"_count": 1}}, "hes": {"_count": 1, "busy": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "hed": {"_count": 1, "love": {"_count": 1}}, "Burke": {"_count": 1, "paid": {"_count": 1}}}, "bulldog": {"_count": 3, "all": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "chasing": {"_count": 1}}}, "bared": {"_count": 14, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 2, "a": {"_count": 1}, "attempted": {"_count": 1}}, "its": {"_count": 3, "green": {"_count": 1}, "minuscule": {"_count": 1}, "fairylike": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "little": {"_count": 1}}, "Harry": {"_count": 1, "stuck": {"_count": 1}}, "his": {"_count": 1, "pointed": {"_count": 1}}}, "expel": {"_count": 12, "you": {"_count": 6, "": {"_count": 3}, "does": {"_count": 1}, "if": {"_count": 1}, "they": {"_count": 1}}, "him": {"_count": 2, "for": {"_count": 1}, "all": {"_count": 1}}, "me": {"_count": 1, "said": {"_count": 1}}, "Hogwarts": {"_count": 1, "students": {"_count": 1}}, "Potter": {"_count": 1, "and": {"_count": 1}}, "students": {"_count": 1, "and": {"_count": 1}}}, "maniac": {"_count": 8, "he": {"_count": 1, "dragged": {"_count": 1}}, "who": {"_count": 2, "did": {"_count": 1}, "likes": {"_count": 1}}, "and": {"_count": 2, "she": {"_count": 1}, "I": {"_count": 1}}, "all": {"_count": 1, "dignity": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "anymore": {"_count": 1, "eh": {"_count": 1}}}, "catflap": {"_count": 3, "in": {"_count": 1, "the": {"_count": 1}}, "rattled": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "lay": {"_count": 1}}}, "amounts": {"_count": 11, "of": {"_count": 10, "food": {"_count": 1}, "treacle": {"_count": 1}, "jam": {"_count": 1}, "Sleekeazys": {"_count": 1}, "time": {"_count": 1}, "dark": {"_count": 1}, "homework": {"_count": 1}, "chickenandham": {"_count": 1}, "Dr": {"_count": 1}, "what": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Otherwise": {"_count": 9, "he": {"_count": 1, "was": {"_count": 1}}, "Riddle": {"_count": 1, "wouldnt": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "we": {"_count": 1, "would": {"_count": 1}}, "the": {"_count": 1, "Dursleys": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "its": {"_count": 1, "live": {"_count": 1}}, "Voldemort": {"_count": 1, "can": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "relenting": {"_count": 2, "and": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "situation": {"_count": 38, "": {"_count": 9, ".": {"_count": 8}, "!": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 2, "Mr": {"_count": 1}, "have": {"_count": 1}}, "where": {"_count": 1, "youre": {"_count": 1}}, "that": {"_count": 2, "has": {"_count": 1}, "Hermione": {"_count": 1}}, "arose": {"_count": 1, "we": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "worse": {"_count": 1, "Snape": {"_count": 1}}, "has": {"_count": 2, "always": {"_count": 1}, "changed": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "arising": {"_count": 1, "in": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "real": {"_count": 1, "to": {"_count": 1}}, "nearly": {"_count": 1, "everyone": {"_count": 1}}, "Nevilles": {"_count": 1, "opponent": {"_count": 1}}, "is": {"_count": 3, "fraught": {"_count": 1}, "and": {"_count": 1}, "graver": {"_count": 1}}, "and": {"_count": 2, "Arthurs": {"_count": 1}, "after": {"_count": 1}}, "with": {"_count": 1, "Slughorn": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}}, "magicking": {"_count": 1, "himself": {"_count": 1, "out": {"_count": 1}}}, "alltime": {"_count": 3, "low": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "favorite": {"_count": 1, "students": {"_count": 1}}}, "fruit": {"_count": 8, "bats": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "vegetables": {"_count": 1}}, "bowl": {"_count": 2, "": {"_count": 1}, "stretched": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "Luna": {"_count": 1, "sometimes": {"_count": 1}}}, "happenings": {"_count": 1, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "starve": {"_count": 2, "to": {"_count": 1, "death": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "canned": {"_count": 1, "soup": {"_count": 1, "into": {"_count": 1}}}, "soup": {"_count": 23, "into": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 2}, "pristine": {"_count": 1}}, "was": {"_count": 1, "stone": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "thought": {"_count": 1}}, "stains": {"_count": 1, "all": {"_count": 1}}, "transferring": {"_count": 1, "it": {"_count": 1}}, "pot": {"_count": 1, "dropped": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "clattering": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "toward": {"_count": 1, "her": {"_count": 1}}, "would": {"_count": 1, "Master": {"_count": 1}}, "for": {"_count": 1, "all": {"_count": 1}}}, "drank": {"_count": 39, "half": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 5, "potion": {"_count": 1}, "butterbeer": {"_count": 1}, "remainder": {"_count": 1}, "last": {"_count": 1}, "Polyjuice": {"_count": 1}}, "a": {"_count": 5, "bit": {"_count": 1}, "little": {"_count": 1}, "few": {"_count": 1}, "vat": {"_count": 1}, "potion": {"_count": 1}}, "some": {"_count": 3, "more": {"_count": 2}, "": {"_count": 1}}, "it": {"_count": 4, "": {"_count": 1}, "I": {"_count": 1}, "in": {"_count": 1}, "straight": {"_count": 1}}, "deeply": {"_count": 2, "": {"_count": 2}}, "talked": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "butterbeer": {"_count": 1}}, "to": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "and": {"_count": 4, "for": {"_count": 2}, "no": {"_count": 1}, "as": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "three": {"_count": 1, "gobletsful": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 2, "thought": {"_count": 1}, "saw": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "soggy": {"_count": 5, "vegetables": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "pages": {"_count": 1, "": {"_count": 1}}, "brown": {"_count": 1, "stuff": {"_count": 1}}, "stranger": {"_count": 1, "and": {"_count": 1}}}, "vegetables": {"_count": 4, "at": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "their": {"_count": 1}}, "bread": {"_count": 1, "sauces": {"_count": 1}}}, "tray": {"_count": 38, "": {"_count": 4, ".": {"_count": 4}}, "of": {"_count": 8, "what": {"_count": 1}, "tea": {"_count": 1}, "bloodflavored": {"_count": 1}, "Screechsnap": {"_count": 1}, "soft": {"_count": 1}, "pies": {"_count": 1}, "little": {"_count": 1}, "illassorted": {"_count": 1}}, "right": {"_count": 1, "out": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 3, "then": {"_count": 1}, "handing": {"_count": 1}, "headed": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "before": {"_count": 1, "flying": {"_count": 1}}, "though": {"_count": 1, "they": {"_count": 1}}, "laden": {"_count": 2, "with": {"_count": 2}}, "appeared": {"_count": 1, "in": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "loaded": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "she": {"_count": 1, "reckons": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "across": {"_count": 1, "Harrys": {"_count": 1}}, "slid": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "into": {"_count": 1, "Hermiones": {"_count": 1}}, "which": {"_count": 1, "Hermione": {"_count": 1}}, "for": {"_count": 1, "four": {"_count": 1}}, "as": {"_count": 1, "Xenophilius": {"_count": 1}}, "The": {"_count": 1, "bowls": {"_count": 1}}}, "hungrier": {"_count": 2, "than": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Supposing": {"_count": 1, "he": {"_count": 1, "was": {"_count": 1}}}, "Exhausted": {"_count": 3, "stomach": {"_count": 1, "rumbling": {"_count": 1}}, "but": {"_count": 1, "delighted": {"_count": 1}}, "and": {"_count": 1, "blearyeyed": {"_count": 1}}}, "unanswerable": {"_count": 1, "questions": {"_count": 1, "Harry": {"_count": 1}}}, "UNDERAGE": {"_count": 1, "WIZARD": {"_count": 1, "attached": {"_count": 1}}}, "WIZARD": {"_count": 2, "attached": {"_count": 1, "to": {"_count": 1}}, "WHEEZES": {"_count": 1, "Harry": {"_count": 1}}}, "attached": {"_count": 19, "to": {"_count": 10, "his": {"_count": 2}, "the": {"_count": 3}, "a": {"_count": 1}, "it": {"_count": 1}, "this": {"_count": 1}, "and": {"_count": 1}, "yours": {"_count": 1}}, "themselves": {"_count": 1, "around": {"_count": 1}}, "complete": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "letter": {"_count": 1}}, "seamlessly": {"_count": 1, "to": {"_count": 1}}, "itself": {"_count": 1, "firmly": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "creaked": {"_count": 1, "ominously": {"_count": 1}}}, "goggled": {"_count": 8, "through": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 6, "them": {"_count": 1}, "him": {"_count": 2}, "Harry": {"_count": 2}, "her": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}}, "starving": {"_count": 18, "and": {"_count": 2, "weak": {"_count": 1}, "he": {"_count": 1}}, "him": {"_count": 1, "Mum": {"_count": 1}}, "Ive": {"_count": 1, "only": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 2}, "Harry": {"_count": 1}}, "BlastEnded": {"_count": 1, "Skrewts": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "pounded": {"_count": 16, "in": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 5, "windows": {"_count": 1}, "arms": {"_count": 1}, "little": {"_count": 1}, "tent": {"_count": 1}, "walls": {"_count": 1}}, "away": {"_count": 2, "across": {"_count": 1}, "after": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "these": {"_count": 1, "streets": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "relentlessly": {"_count": 1, "on": {"_count": 1}}, "off": {"_count": 1, "after": {"_count": 1}}}, "Moonlight": {"_count": 2, "was": {"_count": 2, "shining": {"_count": 1}, "falling": {"_count": 1}}}, "goggling": {"_count": 15, "through": {"_count": 1, "the": {"_count": 1}}, "tennis": {"_count": 1, "ball": {"_count": 1}}, "at": {"_count": 12, "the": {"_count": 3}, "Hermione": {"_count": 5}, "Dumbledore": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 2}}, "upward": {"_count": 1, "at": {"_count": 1}}}, "frecklefaced": {"_count": 1, "redhaired": {"_count": 1, "longnosed": {"_count": 1}}}, "longnosed": {"_count": 2, "someone": {"_count": 1, "": {"_count": 1}}, "freckled": {"_count": 1, "face": {"_count": 1}}}, "BURROW": {"_count": 3, "Ron": {"_count": 1, "breathed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "By": {"_count": 1, "twelve": {"_count": 1}}}, "impact": {"_count": 5, "of": {"_count": 2, "what": {"_count": 1}, "these": {"_count": 1}}, "if": {"_count": 1, "everybodys": {"_count": 1}}, "on": {"_count": 1, "Umbridge": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}}, "turquoise": {"_count": 10, "car": {"_count": 1, "which": {"_count": 1}}, "his": {"_count": 1, "golden": {"_count": 1}}, "hat": {"_count": 1, "with": {"_count": 1}}, "robes": {"_count": 1, "swirling": {"_count": 1}}, "dog": {"_count": 1, "greeting": {"_count": 1}}, "high": {"_count": 1, "heels": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "orange": {"_count": 1}}, "hair": {"_count": 1, "waving": {"_count": 1}}}, "Grinning": {"_count": 5, "at": {"_count": 1, "Harry": {"_count": 1}}, "stupidly": {"_count": 1, "they": {"_count": 1}}, "faces": {"_count": 1, "could": {"_count": 1}}, "in": {"_count": 1, "spite": {"_count": 1}}, "Harry": {"_count": 1, "hurried": {"_count": 1}}}, "elder": {"_count": 12, "twin": {"_count": 2, "brothers": {"_count": 2}}, "brother": {"_count": 2, "Percy": {"_count": 1}, "": {"_count": 1}}, "brotherly": {"_count": 1, "": {"_count": 1}}, "sister": {"_count": 1, "around": {"_count": 1}}, "tree": {"_count": 1, "on": {"_count": 1}}, "wands": {"_count": 1, "are": {"_count": 1}}, "never": {"_count": 1, "prosper": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "brothers": {"_count": 1, "shoulders": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "official": {"_count": 21, "warning": {"_count": 5, "for": {"_count": 2}, "that": {"_count": 1}, "just": {"_count": 1}, "from": {"_count": 1}}, "complaint": {"_count": 1, "of": {"_count": 1}}, "notice": {"_count": 1, "of": {"_count": 1}}, "emerged": {"_count": 1, "some": {"_count": 1}}, "like": {"_count": 1, "Mr": {"_count": 1}}, "decision": {"_count": 1, "will": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "Malfoy": {"_count": 1, "do": {"_count": 1}}, "record": {"_count": 1, "was": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "instructions": {"_count": 1, "but": {"_count": 1}}, "under": {"_count": 1, "our": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "entrance": {"_count": 1, "to": {"_count": 1}}, "position": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "borrowing": {"_count": 3, "this": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "disposable": {"_count": 1}}, "one": {"_count": 1, "from": {"_count": 1}}}, "Dads": {"_count": 16, "we": {"_count": 1, "didnt": {"_count": 1}}, "crazy": {"_count": 1, "about": {"_count": 1}}, "too": {"_count": 1, "soft": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "boss": {"_count": 1, "": {"_count": 1}}, "having": {"_count": 1, "fun": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "lousy": {"_count": 1, "reputation": {"_count": 1}}, "got": {"_count": 3, "no": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}}, "life": {"_count": 1, "if": {"_count": 1}}, "reprinting": {"_count": 1, "": {"_count": 1}}, "been": {"_count": 1, "saying": {"_count": 1}}, "SecretKeeper": {"_count": 1, "": {"_count": 1}}}, "enchant": {"_count": 3, "it": {"_count": 1, "": {"_count": 1}}, "Ginny": {"_count": 1, "when": {"_count": 1}}, "a": {"_count": 1, "building": {"_count": 1}}}, "Ministryll": {"_count": 2, "think": {"_count": 1, "thats": {"_count": 1}}, "be": {"_count": 1, "looking": {"_count": 1}}}, "gibbering": {"_count": 2, "said": {"_count": 1, "Ron": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "Tie": {"_count": 1, "that": {"_count": 1, "around": {"_count": 1}}}, "revved": {"_count": 2, "up": {"_count": 1, "the": {"_count": 1}}, "louder": {"_count": 1, "and": {"_count": 1}}}, "Panting": {"_count": 10, "Ron": {"_count": 1, "hoisted": {"_count": 1}}, "Harry": {"_count": 4, "sped": {"_count": 1}, "pushed": {"_count": 1}, "fell": {"_count": 1}, "peered": {"_count": 1}}, "a": {"_count": 1, "sharp": {"_count": 1}}, "slightly": {"_count": 3, "and": {"_count": 1}, "Snape": {"_count": 1}, "Harry": {"_count": 1}}, "and": {"_count": 1, "gasping": {"_count": 1}}}, "reversed": {"_count": 5, "as": {"_count": 1, "close": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 1, "zoomed": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 1, "spells": {"_count": 1}}}, "Locked": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "passenger": {"_count": 4, "seat": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "left": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "driver": {"_count": 1}}}, "hairpin": {"_count": 5, "from": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "Ron": {"_count": 1}}, "bends": {"_count": 1, "": {"_count": 1}}, "bend": {"_count": 1, "at": {"_count": 1}}, "swerve": {"_count": 1, "and": {"_count": 1}}}, "skills": {"_count": 7, "worth": {"_count": 1, "learning": {"_count": 1}}, "unique": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "practical": {"_count": 1}}, "which": {"_count": 1, "made": {"_count": 1}}, "yawned": {"_count": 1, "Fred": {"_count": 1}}, "Ronald": {"_count": 1, "said": {"_count": 1}}, "helping": {"_count": 1, "hone": {"_count": 1}}}, "Watch": {"_count": 13, "out": {"_count": 2, "for": {"_count": 2}}, "it": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "snarled": {"_count": 1}}, "your": {"_count": 1, "frog": {"_count": 1}}, "who": {"_count": 1, "youre": {"_count": 1}}, "yerselves": {"_count": 1, "now": {"_count": 1}}, "where": {"_count": 2, "youre": {"_count": 2}}, "what": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "stair": {"_count": 13, "it": {"_count": 1, "creaks": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "with": {"_count": 1, "no": {"_count": 1}}, "in": {"_count": 1, "silence": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "started": {"_count": 1}, "turned": {"_count": 1}}, "when": {"_count": 2, "Dudley": {"_count": 1}, "it": {"_count": 1}}, "face": {"_count": 1, "screwed": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "he": {"_count": 1, "raised": {"_count": 1}}}, "creaks": {"_count": 1, "Harry": {"_count": 1, "whispered": {"_count": 1}}}, "Inch": {"_count": 1, "by": {"_count": 1, "inch": {"_count": 1}}}, "RUDDY": {"_count": 3, "OWL": {"_count": 1, "": {"_count": 1}}, "WELL": {"_count": 1, "IS": {"_count": 1}}, "COWARDS": {"_count": 1, "": {"_count": 1}}}, "OWL": {"_count": 4, "": {"_count": 1, "!": {"_count": 1}}, "POST": {"_count": 2, "Harry": {"_count": 1}, "AGAIN": {"_count": 1}}, "BUT": {"_count": 1, "DUMBLEDORE": {"_count": 1}}}, "drawers": {"_count": 19, "when": {"_count": 1, "Uncle": {"_count": 1}}, "in": {"_count": 1, "Professor": {"_count": 1}}, "and": {"_count": 5, "pulled": {"_count": 1}, "taking": {"_count": 1}, "turned": {"_count": 1}, "she": {"_count": 1}, "picking": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "beside": {"_count": 1, "his": {"_count": 1}}, "shook": {"_count": 1, "out": {"_count": 1}}, "contents": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}}, "framed": {"_count": 11, "in": {"_count": 4, "the": {"_count": 3}, "thick": {"_count": 1}}, "photographs": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 1, "didnt": {"_count": 1}}, "with": {"_count": 1, "square": {"_count": 1}}, "between": {"_count": 1, "curtains": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "picture": {"_count": 1, "which": {"_count": 1}}, "photograph": {"_count": 1, "of": {"_count": 1}}}, "bellow": {"_count": 3, "like": {"_count": 1, "an": {"_count": 1}}, "of": {"_count": 1, "fear": {"_count": 1}}, "nearly": {"_count": 1, "forced": {"_count": 1}}}, "ankle": {"_count": 20, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "showing": {"_count": 1, "beneath": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "she": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "gracefully": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "hit": {"_count": 1}}}, "HES": {"_count": 6, "GETTING": {"_count": 1, "AWAY": {"_count": 1}}, "GONE": {"_count": 1, "": {"_count": 1}}, "SAVED": {"_count": 1, "IT": {"_count": 1}}, "NOT": {"_count": 1, "PETER": {"_count": 1}}, "SCABBERS": {"_count": 1, "": {"_count": 1}}, "ALIVE": {"_count": 1, "": {"_count": 1}}}, "GETTING": {"_count": 1, "AWAY": {"_count": 1, "": {"_count": 1}}}, "AWAY": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "FROM": {"_count": 1, "Dudley": {"_count": 1}}}, "tug": {"_count": 10, "and": {"_count": 1, "Harrys": {"_count": 1}}, "retrieved": {"_count": 1, "the": {"_count": 1}}, "tried": {"_count": 1, "and": {"_count": 1}}, "then": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "magical": {"_count": 1}, "curtains": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "back": {"_count": 1}}, "Griphook": {"_count": 1, "out": {"_count": 1}}}, "whipping": {"_count": 13, "his": {"_count": 2, "hair": {"_count": 1}, "face": {"_count": 1}}, "the": {"_count": 1, "windows": {"_count": 1}}, "through": {"_count": 1, "Harrys": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "their": {"_count": 1, "hair": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 2, "her": {"_count": 1}, "of": {"_count": 1}}, "her": {"_count": 1, "results": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}}, "rooftops": {"_count": 2, "of": {"_count": 1, "Privet": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "dumbstruck": {"_count": 6, "out": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "by": {"_count": 1}}, "students": {"_count": 1, "and": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}}, "joyfully": {"_count": 5, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "jumping": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "glide": {"_count": 6, "alongside": {"_count": 1, "them": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}}, "fiasco": {"_count": 7, "of": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}, "by": {"_count": 1, "mixing": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "Definitely": {"_count": 12, "dodgy": {"_count": 1, "agreed": {"_count": 1}}, "not": {"_count": 3, "said": {"_count": 2}, "": {"_count": 1}}, "said": {"_count": 6, "Harry": {"_count": 2}, "George": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "Snape": {"_count": 1}}, "an": {"_count": 1, "owl": {"_count": 1}}, "heard": {"_count": 1, "something": {"_count": 1}}}, "dodgy": {"_count": 8, "agreed": {"_count": 1, "George": {"_count": 1}}, "place": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "cauldrons": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "isnt": {"_count": 1, "it": {"_count": 1}}}, "houseelves": {"_count": 55, "have": {"_count": 3, "got": {"_count": 1}, "decent": {"_count": 1}, "been": {"_count": 1}}, "were": {"_count": 4, "treated": {"_count": 1}, "negotiating": {"_count": 1}, "rolling": {"_count": 1}, "always": {"_count": 1}}, "get": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "on": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 2}}, "fair": {"_count": 1, "wages": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 7}, "?": {"_count": 2}, "!": {"_count": 2}}, "in": {"_count": 3, "the": {"_count": 2}, "general": {"_count": 1}}, "for": {"_count": 1, "he": {"_count": 1}}, "came": {"_count": 1, "trotting": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "had": {"_count": 1, "now": {"_count": 1}}, "speak": {"_count": 1, "their": {"_count": 1}}, "down": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 1, "never": {"_count": 1}}, "gave": {"_count": 1, "them": {"_count": 1}}, "has": {"_count": 1, "no": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "crowded": {"_count": 1, "around": {"_count": 1}}, "would": {"_count": 1, "send": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "when": {"_count": 2, "they": {"_count": 1}, "he": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "do": {"_count": 1, "want": {"_count": 1}}, "cant": {"_count": 1, "leave": {"_count": 1}}, "could": {"_count": 1, "keep": {"_count": 1}}, "Christmas": {"_count": 1, "presents": {"_count": 1}}, "and": {"_count": 3, "decided": {"_count": 1}, "hunger": {"_count": 1}, "childrens": {"_count": 1}}, "far": {"_count": 1, "beneath": {"_count": 1}}, "are": {"_count": 2, "used": {"_count": 1}, "slaughtered": {"_count": 1}}, "theyll": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 1, "Hogwarts": {"_count": 1}}}, "permission": {"_count": 46, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "from": {"_count": 3, "Dumbledore": {"_count": 1}, "a": {"_count": 1}, "their": {"_count": 1}}, "to": {"_count": 17, "practice": {"_count": 1}, "start": {"_count": 1}, "visit": {"_count": 3}, "perform": {"_count": 1}, "be": {"_count": 1}, "hide": {"_count": 1}, "use": {"_count": 3}, "reform": {"_count": 1}, "continue": {"_count": 1}, "keep": {"_count": 1}, "go": {"_count": 1}, "do": {"_count": 1}, "show": {"_count": 1}}, "ter": {"_count": 1, "put": {"_count": 1}}, "form": {"_count": 6, "to": {"_count": 1}, "and": {"_count": 2}, "said": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 1}}, "No": {"_count": 1, "Im": {"_count": 1}}, "Harry": {"_count": 2, "gave": {"_count": 1}, "yehll": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "forms": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "why": {"_count": 1, "not": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "doesnt": {"_count": 1, "mean": {"_count": 1}}, "scoffed": {"_count": 1, "Ginny": {"_count": 1}}, "slip": {"_count": 1, "": {"_count": 1}}}, "Someones": {"_count": 18, "idea": {"_count": 1, "of": {"_count": 1}}, "mopped": {"_count": 1, "it": {"_count": 1}}, "tampered": {"_count": 1, "with": {"_count": 1}}, "fixed": {"_count": 1, "it": {"_count": 1}}, "been": {"_count": 2, "looking": {"_count": 1}, "cursed": {"_count": 1}}, "spilled": {"_count": 1, "their": {"_count": 1}}, "coming": {"_count": 4, "": {"_count": 1}, "back": {"_count": 1}, "he": {"_count": 1}, "down": {"_count": 1}}, "gotta": {"_count": 1, "tell": {"_count": 1}}, "told": {"_count": 1, "them": {"_count": 1}}, "whispering": {"_count": 1, "behind": {"_count": 1}}, "sent": {"_count": 1, "it": {"_count": 1}}, "dead": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 1, "our": {"_count": 1}}, "invisible": {"_count": 1, "there": {"_count": 1}}}, "grudge": {"_count": 5, "against": {"_count": 3, "you": {"_count": 1}, "the": {"_count": 1}, "Krum": {"_count": 1}}, "worth": {"_count": 1, "putting": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Lucius": {"_count": 134, "Malfoys": {"_count": 11, "son": {"_count": 2}, "cold": {"_count": 1}, "hand": {"_count": 1}, "pocket": {"_count": 1}, "like": {"_count": 1}, "voice": {"_count": 3}, "wand": {"_count": 1}, "stand": {"_count": 1}}, "Malfoy": {"_count": 70, "came": {"_count": 1}, "buy": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 12}, "wouldve": {"_count": 1}, "mustve": {"_count": 1}, "a": {"_count": 2}, "strode": {"_count": 1}, "sneering": {"_count": 1}, "stood": {"_count": 4}, "then": {"_count": 1}, "rounded": {"_count": 1}, "had": {"_count": 2}, "and": {"_count": 3}, "s": {"_count": 1}, "his": {"_count": 3}, "said": {"_count": 2}, "Snape": {"_count": 1}, "coolly": {"_count": 1}, "dared": {"_count": 1}, "raised": {"_count": 1}, "was": {"_count": 2}, "swelled": {"_count": 1}, "Ill": {"_count": 1}, "so": {"_count": 2}, "41": {"_count": 1}, "these": {"_count": 1}, "recognized": {"_count": 1}, "to": {"_count": 3}, "got": {"_count": 1}, "always": {"_count": 1}, "as": {"_count": 1}, "roared": {"_count": 1}, "roar": {"_count": 1}, "pulling": {"_count": 1}, "looked": {"_count": 1}, "made": {"_count": 1}, "fell": {"_count": 1}, "from": {"_count": 2}, "collapsed": {"_count": 1}, "the": {"_count": 1}, "threw": {"_count": 1}, "sitting": {"_count": 1}, "who": {"_count": 1}}, "said": {"_count": 6, "Mr": {"_count": 1}, "Fudge": {"_count": 1}, "Dumbledore": {"_count": 3}, "Voldemort": {"_count": 1}}, "": {"_count": 20, "?": {"_count": 4}, "!": {"_count": 2}, ".": {"_count": 14}}, "I": {"_count": 2, "shall": {"_count": 1}, "see": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "has": {"_count": 1, "just": {"_count": 1}}, "my": {"_count": 1, "slippery": {"_count": 1}}, "he": {"_count": 1, "inclined": {"_count": 1}}, "hadnt": {"_count": 1, "Dont": {"_count": 1}}, "is": {"_count": 2, "in": {"_count": 1}, "that": {"_count": 1}}, "was": {"_count": 2, "supposed": {"_count": 2}}, "would": {"_count": 1, "not": {"_count": 1}}, "believed": {"_count": 1, "dead": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "known": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 3, "Narcissa": {"_count": 2}, "his": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 1, "Greyback": {"_count": 1}}, "Narcissa": {"_count": 2, "called": {"_count": 1}, "Draco": {"_count": 1}}, "striding": {"_count": 1, "around": {"_count": 1}}, "threw": {"_count": 1, "her": {"_count": 1}}, "froze": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}}, "supporter": {"_count": 8, "of": {"_count": 4, "YouKnowWho": {"_count": 2}, "YouKnowOo": {"_count": 1}, "the": {"_count": 1}}, "whom": {"_count": 1, "nearly": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "inner": {"_count": 16, "circle": {"_count": 3, "": {"_count": 1}, "Say": {"_count": 1}, "were": {"_count": 1}}, "proportions": {"_count": 1, "": {"_count": 1}}, "eye": {"_count": 1, "sees": {"_count": 1}}, "forearm": {"_count": 1, "": {"_count": 1}}, "walls": {"_count": 1, "of": {"_count": 1}}, "corners": {"_count": 1, "of": {"_count": 1}}, "pocket": {"_count": 3, "of": {"_count": 1}, "feeling": {"_count": 1}, "an": {"_count": 1}}, "light": {"_count": 1, "though": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "certainty": {"_count": 1, "had": {"_count": 1}}, "hall": {"_count": 1, "each": {"_count": 1}}, "doors": {"_count": 1, "which": {"_count": 1}}}, "circle": {"_count": 57, "": {"_count": 4, ".": {"_count": 4}}, "of": {"_count": 11, "thick": {"_count": 1}, "dementors": {"_count": 1}, "the": {"_count": 1}, "listening": {"_count": 1}, "watching": {"_count": 1}, "onlookers": {"_count": 2}, "golden": {"_count": 1}, "lamplight": {"_count": 1}, "ice": {"_count": 2}}, "then": {"_count": 1, "crack": {"_count": 1}}, "Say": {"_count": 1, "YouKnotuWho": {"_count": 1}}, "as": {"_count": 5, "a": {"_count": 1}, "though": {"_count": 4}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "the": {"_count": 2, "Horntail": {"_count": 1}, "hoops": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "which": {"_count": 1, "enclosed": {"_count": 1}}, "stirred": {"_count": 1, "and": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "flashed": {"_count": 1, "in": {"_count": 1}}, "were": {"_count": 2, "upon": {"_count": 1}, "branded": {"_count": 1}}, "moved": {"_count": 1, "uncomfortably": {"_count": 1}}, "around": {"_count": 4, "him": {"_count": 1}, "Harry": {"_count": 2}, "them": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "then": {"_count": 1}, "were": {"_count": 1}, "Harry": {"_count": 1}}, "his": {"_count": 1, "bow": {"_count": 1}}, "shifted": {"_count": 1, "restlessly": {"_count": 1}}, "MadEye": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "has": {"_count": 1, "no": {"_count": 1}}, "representing": {"_count": 1, "the": {"_count": 1}}, "Voldemort": {"_count": 1, "looked": {"_count": 1}}, "each": {"_count": 2, "other": {"_count": 2}}, "maintaining": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}}, "thoughtful": {"_count": 10, "and": {"_count": 1, "sensitive": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "silence": {"_count": 1, "while": {"_count": 1}}, "voice": {"_count": 1, "maybe": {"_count": 1}}, "purred": {"_count": 1, "Fleur": {"_count": 1}}, "tone": {"_count": 1, "and": {"_count": 1}}, "concerned": {"_count": 1, "": {"_count": 1}}}, "sensitive": {"_count": 5, "boy": {"_count": 1, "": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "nature": {"_count": 1, "to": {"_count": 1}}, "skin": {"_count": 1, "said": {"_count": 1}}, "people": {"_count": 1, "bully": {"_count": 1}}}, "owns": {"_count": 3, "him": {"_count": 1, "will": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "the": {"_count": 1, "house": {"_count": 1}}}, "Mums": {"_count": 16, "always": {"_count": 1, "wishing": {"_count": 1}}, "writing": {"_count": 1, "to": {"_count": 1}}, "been": {"_count": 2, "in": {"_count": 1}, "trying": {"_count": 1}}, "going": {"_count": 3, "to": {"_count": 2}, "ballistic": {"_count": 1}}, "busy": {"_count": 1, "cooing": {"_count": 1}}, "crying": {"_count": 1, "again": {"_count": 1}}, "next": {"_count": 1, "letter": {"_count": 1}}, "only": {"_count": 1, "just": {"_count": 1}}, "bringing": {"_count": 1, "you": {"_count": 1}}, "stress": {"_count": 1, "levels": {"_count": 1}}, "getting": {"_count": 1, "edgy": {"_count": 1}}, "asleep": {"_count": 1, "sneaking": {"_count": 1}}, "right": {"_count": 1, "Ginny": {"_count": 1}}}, "ironing": {"_count": 1, "said": {"_count": 1, "George": {"_count": 1}}}, "lousy": {"_count": 13, "old": {"_count": 1, "ghoul": {"_count": 1}}, "at": {"_count": 3, "them": {"_count": 1}, "Quidditch": {"_count": 1}, "Occlumency": {"_count": 1}}, "biased": {"_count": 1, "scumbag": {"_count": 1}}, "reputation": {"_count": 1, "ever": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}}, "ghoul": {"_count": 11, "in": {"_count": 4, "the": {"_count": 3}, "my": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "them": {"_count": 1}}, "who": {"_count": 1, "lived": {"_count": 1}}, "lurking": {"_count": 1, "in": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "didnt": {"_count": 1}}}, "attic": {"_count": 15, "and": {"_count": 3, "gnomes": {"_count": 1}, "an": {"_count": 1}, "if": {"_count": 1}}, "hes": {"_count": 1, "always": {"_count": 1}}, "howled": {"_count": 1, "and": {"_count": 1}}, "room": {"_count": 3, "behind": {"_count": 1}, "": {"_count": 1}, "Ron": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "again": {"_count": 1, "": {"_count": 1}}, "bedroom": {"_count": 2, "where": {"_count": 1}, "": {"_count": 1}}, "space": {"_count": 1, "": {"_count": 1}}}, "gnomes": {"_count": 17, "all": {"_count": 1, "over": {"_count": 1}}, "too": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "ankles": {"_count": 1, "It": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "at": {"_count": 1, "once": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "disappear": {"_count": 1, "into": {"_count": 1}}, "sneaking": {"_count": 1, "one": {"_count": 1}}, "sprinting": {"_count": 1, "through": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}, "actually": {"_count": 1, "bit": {"_count": 1}}}, "Houseelves": {"_count": 6, "come": {"_count": 1, "with": {"_count": 1}}, "is": {"_count": 2, "not": {"_count": 2}}, "does": {"_count": 1, "what": {"_count": 1}}, "dont": {"_count": 1, "want": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "manors": {"_count": 1, "and": {"_count": 1, "castles": {"_count": 1}}}, "castles": {"_count": 9, "and": {"_count": 2, "places": {"_count": 1}, "the": {"_count": 1}}, "protected": {"_count": 1, "by": {"_count": 1}}, "was": {"_count": 1, "engaged": {"_count": 1}}, "magical": {"_count": 1, "fortifications": {"_count": 1}}, "secret": {"_count": 1, "passageways": {"_count": 1}}, "floors": {"_count": 1, "and": {"_count": 1}}, "occupants": {"_count": 1, "": {"_count": 1}}, "shattered": {"_count": 1, "windows": {"_count": 1}}}, "Judging": {"_count": 8, "by": {"_count": 8, "the": {"_count": 4}, "Professor": {"_count": 1}, "your": {"_count": 1}, "that": {"_count": 1}, "their": {"_count": 1}}}, "strutting": {"_count": 4, "around": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "majestically": {"_count": 1, "along": {"_count": 1}}}, "manor": {"_count": 8, "house": {"_count": 4, "": {"_count": 1}, "surrounded": {"_count": 1}, "in": {"_count": 1}, "grew": {"_count": 1}}, "tomorrow": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "last": {"_count": 1, "week": {"_count": 1}}, "and": {"_count": 1, "easily": {"_count": 1}}}, "Errols": {"_count": 6, "fault": {"_count": 1, "at": {"_count": 1}}, "beak": {"_count": 1, "and": {"_count": 1}}, "legs": {"_count": 1, "took": {"_count": 1}}, "package": {"_count": 1, "ripped": {"_count": 1}}, "a": {"_count": 1, "family": {"_count": 1}}, "leg": {"_count": 1, "to": {"_count": 1}}}, "Errol": {"_count": 20, "": {"_count": 5, "?": {"_count": 1}, "!": {"_count": 1}, ".": {"_count": 3}}, "to": {"_count": 2, "a": {"_count": 1}, "Hedwigs": {"_count": 1}}, "flopped": {"_count": 1, "straight": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "slumped": {"_count": 1, "unconscious": {"_count": 1}}, "gently": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "Hedwig": {"_count": 1}, "Hermes": {"_count": 1}}, "opened": {"_count": 1, "one": {"_count": 1}}, "watched": {"_count": 1, "interestedly": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "havent": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}}, "delivery": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "might": {"_count": 1, "finish": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "owl": {"_count": 3, "had": {"_count": 1}, "a": {"_count": 1}, "early": {"_count": 1}}}, "Hermes": {"_count": 5, "Who": {"_count": 1, "": {"_count": 1}}, "Percys": {"_count": 1, "screech": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "flew": {"_count": 1, "inside": {"_count": 1}}}, "Mum": {"_count": 110, "and": {"_count": 28, "Dad": {"_count": 27}, "choose": {"_count": 1}}, "noticing": {"_count": 1, "we": {"_count": 1}}, "mad": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "call": {"_count": 1}}, "said": {"_count": 7, "George": {"_count": 2}, "Fred": {"_count": 2}, "Ron": {"_count": 1}, "Ginny": {"_count": 2}}, "but": {"_count": 2, "see": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 16, "!": {"_count": 7}, ".": {"_count": 9}}, "And": {"_count": 1, "you": {"_count": 1}}, "we": {"_count": 1, "know": {"_count": 1}}, "fancies": {"_count": 1, "him": {"_count": 1}}, "got": {"_count": 2, "me": {"_count": 1}, "for": {"_count": 1}}, "wouldnt": {"_count": 1, "let": {"_count": 1}}, "wouldve": {"_count": 1, "killed": {"_count": 1}}, "spotted": {"_count": 1, "us": {"_count": 1}}, "walloping": {"_count": 1, "him": {"_count": 1}}, "found": {"_count": 2, "this": {"_count": 1}, "out": {"_count": 1}}, "went": {"_count": 1, "mad": {"_count": 1}}, "wants": {"_count": 1, "them": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "youre": {"_count": 1, "strangling": {"_count": 1}}, "youve": {"_count": 1, "given": {"_count": 1}}, "what": {"_count": 1, "hes": {"_count": 1}}, "an": {"_count": 2, "owl": {"_count": 1}, "Dad": {"_count": 1}}, "Bill": {"_count": 1, "": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "come": {"_count": 1, "and": {"_count": 1}}, "wont": {"_count": 2, "let": {"_count": 1}, "like": {"_count": 1}}, "binning": {"_count": 1, "them": {"_count": 1}}, "realized": {"_count": 1, "what": {"_count": 1}}, "sees": {"_count": 1, "one": {"_count": 1}}, "starts": {"_count": 1, "crying": {"_count": 1}}, "who": {"_count": 1, "shouts": {"_count": 1}}, "I": {"_count": 1, "want": {"_count": 1}}, "says": {"_count": 3, "get": {"_count": 1}, "dinners": {"_count": 1}, "Dads": {"_count": 1}}, "thought": {"_count": 1, "wed": {"_count": 1}}, "hasnt": {"_count": 1, "got": {"_count": 1}}, "shouting": {"_count": 1, "at": {"_count": 1}}, "get": {"_count": 1, "a": {"_count": 1}}, "could": {"_count": 1, "take": {"_count": 1}}, "told": {"_count": 1, "Ron": {"_count": 1}}, "wrote": {"_count": 1, "and": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "cant": {"_count": 1, "blame": {"_count": 1}}, "again": {"_count": 1, "is": {"_count": 1}}, "hates": {"_count": 1, "her": {"_count": 1}}, "are": {"_count": 1, "there": {"_count": 1}}, "dyou": {"_count": 1, "honestly": {"_count": 1}}, "can": {"_count": 2, "I": {"_count": 1}, "stand": {"_count": 1}}, "now": {"_count": 1, "were": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "thinks": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "Dad": {"_count": 1}}, "until": {"_count": 1, "its": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}}, "polish": {"_count": 7, "a": {"_count": 1, "prefect": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "shield": {"_count": 1}}, "and": {"_count": 2, "handnumbered": {"_count": 1}, "his": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "off": {"_count": 1}}}, "west": {"_count": 4, "Fred": {"_count": 1, "he": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "wing": {"_count": 1, "of": {"_count": 1}}, "side": {"_count": 1, "of": {"_count": 1}}}, "compass": {"_count": 4, "on": {"_count": 2, "the": {"_count": 2}}, "to": {"_count": 1, "clip": {"_count": 1}}, "and": {"_count": 1, "shoot": {"_count": 1}}}, "dashboard": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "nervously": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "twiddled": {"_count": 5, "the": {"_count": 2, "steering": {"_count": 1}, "speed": {"_count": 1}}, "his": {"_count": 3, "thumbs": {"_count": 2}, "fat": {"_count": 1}}}, "department": {"_count": 20, "said": {"_count": 1, "Ron": {"_count": 1}}, "though": {"_count": 2, "": {"_count": 2}}, "but": {"_count": 1, "nobody": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "and": {"_count": 1, "not": {"_count": 1}}, "Id": {"_count": 1, "be": {"_count": 1}}, "to": {"_count": 2, "department": {"_count": 1}, "steal": {"_count": 1}}, "for": {"_count": 2, "years": {"_count": 1}, "questioning": {"_count": 1}}, "at": {"_count": 1, "one": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "what": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "store": {"_count": 1, "called": {"_count": 1}}, "after": {"_count": 1, "after": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}}, "Misuse": {"_count": 7, "of": {"_count": 7, "Muggle": {"_count": 7}}}, "Artifacts": {"_count": 7, "Office": {"_count": 7, "": {"_count": 3}, "was": {"_count": 1}, "at": {"_count": 2}, "here": {"_count": 1}}}, "Office": {"_count": 27, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "tower": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 2, "today": {"_count": 1}, "dealing": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "for": {"_count": 3, "me": {"_count": 1}, "the": {"_count": 2}}, "here": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 3, "Apparation": {"_count": 1}, "Pest": {"_count": 2}}, "of": {"_count": 3, "Law": {"_count": 1}, "Misinformation": {"_count": 1}, "course": {"_count": 1}}, "Auror": {"_count": 2, "Headquarters": {"_count": 2}}, "will": {"_count": 1, "play": {"_count": 1}}}, "antiques": {"_count": 1, "shop": {"_count": 1, "": {"_count": 1}}}, "overtime": {"_count": 2, "for": {"_count": 1, "weeks": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "squirted": {"_count": 3, "boiling": {"_count": 1, "tea": {"_count": 1}}, "from": {"_count": 2, "every": {"_count": 1}, "between": {"_count": 1}}}, "tongs": {"_count": 2, "clamped": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "transferred": {"_count": 1}}}, "warlock": {"_count": 7, "called": {"_count": 1, "Perkins": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "from": {"_count": 1, "on": {"_count": 1}}, "onto": {"_count": 1, "whose": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}}, "Perkins": {"_count": 8, "in": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "is": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "flattened": {"_count": 1, "himself": {"_count": 1}}, "while": {"_count": 1, "a": {"_count": 1}}}, "Memory": {"_count": 12, "Charms": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "can": {"_count": 1}}, "Charm": {"_count": 9, "on": {"_count": 3}, "backfired": {"_count": 1}, "and": {"_count": 1}, "ten": {"_count": 1}, "upon": {"_count": 1}, "my": {"_count": 1}, "": {"_count": 1}}}, "sheds": {"_count": 2, "full": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "raided": {"_count": 5, "our": {"_count": 2, "house": {"_count": 1}, "manor": {"_count": 1}}, "the": {"_count": 1, "caves": {"_count": 1}}, "his": {"_count": 1, "house": {"_count": 1}}, "and": {"_count": 1, "you": {"_count": 1}}}, "arrest": {"_count": 15, "": {"_count": 4, ".": {"_count": 4}}, "than": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "me": {"_count": 1, "said": {"_count": 1}}, "telling": {"_count": 1, "Voldemort": {"_count": 1}}, "But": {"_count": 1, "Potter": {"_count": 1}}, "him": {"_count": 2, "we": {"_count": 1}, "": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "imprisonment": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}}, "drives": {"_count": 2, "Mum": {"_count": 1, "mad": {"_count": 1}}, "and": {"_count": 1, "lawns": {"_count": 1}}}, "windshield": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "wipers": {"_count": 1, "were": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 2, "to": {"_count": 1}, "Harry": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "spelled": {"_count": 1, "The": {"_count": 1}}}, "pinkish": {"_count": 2, "glow": {"_count": 1, "was": {"_count": 1}}, "roan": {"_count": 1, "gleaming": {"_count": 1}}}, "glow": {"_count": 37, "was": {"_count": 1, "visible": {"_count": 1}}, "of": {"_count": 11, "Harrys": {"_count": 1}, "the": {"_count": 3}, "their": {"_count": 1}, "an": {"_count": 1}, "having": {"_count": 1}, "light": {"_count": 1}, "smugness": {"_count": 1}, "golden": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "strong": {"_count": 1, "enough": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "meant": {"_count": 1}}, "red": {"_count": 1, "always": {"_count": 1}}, "then": {"_count": 1, "was": {"_count": 1}}, "others": {"_count": 1, "were": {"_count": 1}}, "more": {"_count": 1, "brightly": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "which": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "odds": {"_count": 1}}, "the": {"_count": 1, "wooden": {"_count": 1}}, "faded": {"_count": 1, "he": {"_count": 1}}, "burst": {"_count": 1, "suddenly": {"_count": 1}}}, "horizon": {"_count": 12, "to": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "high": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "that": {"_count": 1, "had": {"_count": 1}}, "Dawn": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "shell": {"_count": 1, "pink": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "east": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "theyll": {"_count": 1}}, "wing": {"_count": 3, "somewhere": {"_count": 1}, "": {"_count": 2}}}, "clumps": {"_count": 2, "of": {"_count": 2, "trees": {"_count": 1}, "hair": {"_count": 1}}}, "Ottery": {"_count": 6, "St": {"_count": 6, "": {"_count": 6}}}, "Catchpole": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "up": {"_count": 1}}, "from": {"_count": 2, "whom": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Lower": {"_count": 5, "and": {"_count": 4, "lower": {"_count": 4}}, "your": {"_count": 1, "wand": {"_count": 1}}}, "Touchdown": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "bump": {"_count": 7, "they": {"_count": 1, "hit": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "off": {"_count": 1, "a": {"_count": 1}}, "sometimes": {"_count": 1, "very": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}}, "tumbledown": {"_count": 1, "garage": {"_count": 1, "in": {"_count": 1}}}, "pigpen": {"_count": 1, "but": {"_count": 1, "extra": {"_count": 1}}}, "chimneys": {"_count": 3, "were": {"_count": 1, "perched": {"_count": 1}}, "or": {"_count": 1, "bellpulls": {"_count": 1}}, "and": {"_count": 1, "television": {"_count": 1}}}, "jumble": {"_count": 8, "of": {"_count": 7, "rubber": {"_count": 1}, "indistinct": {"_count": 1}, "scrawled": {"_count": 1}, "jinxes": {"_count": 1}, "assorted": {"_count": 1}, "objects": {"_count": 1}, "chains": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}}, "rusty": {"_count": 14, "cauldron": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 2, "car": {"_count": 1}, "key": {"_count": 1}}, "spiked": {"_count": 1, "instruments": {"_count": 1}}, "daggers": {"_count": 1, "claws": {"_count": 1}}, "bracket": {"_count": 1, "over": {"_count": 1}}, "top": {"_count": 1, "of": {"_count": 1}}, "railings": {"_count": 1, "and": {"_count": 1}}, "cauldrons": {"_count": 2, "Harry": {"_count": 1}, "and": {"_count": 1}}, "poker": {"_count": 1, "said": {"_count": 1}}, "oil": {"_count": 1, "can": {"_count": 1}}, "bedsprings": {"_count": 1, "Ron": {"_count": 1}}, "nail": {"_count": 1, "slipped": {"_count": 1}}}, "chickens": {"_count": 13, "were": {"_count": 1, "pecking": {"_count": 1}}, "and": {"_count": 3, "for": {"_count": 1}, "Youre": {"_count": 1}, "Hermione": {"_count": 1}}, "egg": {"_count": 2, "hatched": {"_count": 1}, "": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "or": {"_count": 1, "pairs": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "called": {"_count": 1}}}, "pecking": {"_count": 3, "their": {"_count": 1, "way": {"_count": 1}}, "them": {"_count": 1, "till": {"_count": 1}}, "and": {"_count": 1, "clawing": {"_count": 1}}}, "bounding": {"_count": 7, "downstairs": {"_count": 1, "going": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "alongside": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "sight": {"_count": 1}}, "heart": {"_count": 1, "": {"_count": 1}}}, "\u2018Mum": {"_count": 1, "look": {"_count": 1, "who": {"_count": 1}}}, "greenish": {"_count": 19, "color": {"_count": 1, "his": {"_count": 1}}, "blurs": {"_count": 1, "shooting": {"_count": 1}}, "smoke": {"_count": 3, "was": {"_count": 1}, "etched": {"_count": 1}, "obscured": {"_count": 1}}, "lamps": {"_count": 1, "were": {"_count": 1}}, "gloom": {"_count": 2, "that": {"_count": 1}, "moved": {"_count": 1}}, "tinge": {"_count": 1, "along": {"_count": 1}}, "glitter": {"_count": 1, "": {"_count": 1}}, "light": {"_count": 4, "shone": {"_count": 1}, "seemed": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}}, "glow": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "toward": {"_count": 1}}, "glare": {"_count": 1, "of": {"_count": 1}}, "hue": {"_count": 1, "did": {"_count": 1}}}, "marching": {"_count": 20, "across": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 2}}, "half": {"_count": 1, "running": {"_count": 1}}, "the": {"_count": 1, "corridors": {"_count": 1}}, "on": {"_count": 1, "six": {"_count": 1}}, "over": {"_count": 2, "to": {"_count": 2}}, "back": {"_count": 1, "into": {"_count": 1}}, "slowly": {"_count": 1, "across": {"_count": 1}}, "group": {"_count": 1, "laughing": {"_count": 1}}, "crowd": {"_count": 1, "swelled": {"_count": 1}}, "straight": {"_count": 1, "up": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "": {"_count": 1}}, "footsteps": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Griphook": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "what": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "faced": {"_count": 37, "woman": {"_count": 1, "it": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "each": {"_count": 5, "other": {"_count": 5}}, "you": {"_count": 2, "it": {"_count": 1}, "and": {"_count": 1}}, "Ron": {"_count": 2, "defiantly": {"_count": 1}, "again": {"_count": 1}}, "the": {"_count": 5, "packing": {"_count": 1}, "Horntail": {"_count": 1}, "front": {"_count": 1}, "cliff": {"_count": 1}, "candlelit": {"_count": 1}}, "upward": {"_count": 1, "": {"_count": 1}}, "extremely": {"_count": 1, "forgetful": {"_count": 1}}, "this": {"_count": 1, "lot": {"_count": 1}}, "Dudley": {"_count": 1, "and": {"_count": 1}}, "wife": {"_count": 1, "to": {"_count": 1}}, "little": {"_count": 1, "man": {"_count": 1}}, "them": {"_count": 2, "quivering": {"_count": 1}, "and": {"_count": 1}}, "him": {"_count": 4, "carrying": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "boy": {"_count": 1, "struggling": {"_count": 1}}, "Harry": {"_count": 2, "across": {"_count": 1}, "": {"_count": 1}}, "HeWhoMustNotBe": {"_count": 1, "Named": {"_count": 1}}, "it": {"_count": 1, "But": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "plenty": {"_count": 1, "worse": {"_count": 1}}}, "remarkable": {"_count": 7, "how": {"_count": 2, "much": {"_count": 1}, "he": {"_count": 1}}, "thing": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "pace": {"_count": 1, "given": {"_count": 1}}, "person": {"_count": 1, "who": {"_count": 1}}, "effects": {"_count": 1, "were": {"_count": 1}}}, "sabertoothed": {"_count": 1, "tiger": {"_count": 1, "": {"_count": 1}}}, "tiger": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "hips": {"_count": 4, "staring": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "like": {"_count": 1, "a": {"_count": 1}}}, "apron": {"_count": 10, "with": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 4, "Fred": {"_count": 1}, "began": {"_count": 1}, "carrying": {"_count": 1}, "looking": {"_count": 1}}, "positively": {"_count": 1, "alarming": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}}, "jaunty": {"_count": 2, "winning": {"_count": 1, "voice": {"_count": 1}}, "angle": {"_count": 1, "on": {"_count": 1}}}, "cowered": {"_count": 3, "as": {"_count": 2, "her": {"_count": 1}, "though": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}}, "Beds": {"_count": 1, "empty": {"_count": 1, "No": {"_count": 1}}}, "Car": {"_count": 1, "gone": {"_count": 1, "could": {"_count": 1}}}, "COULD": {"_count": 3, "DO": {"_count": 1, "WITH": {"_count": 1}}, "BOTH": {"_count": 1, "HAVE": {"_count": 1}}, "HAVE": {"_count": 1, "DONE": {"_count": 1}}}, "TAKING": {"_count": 1, "A": {"_count": 1, "LEAF": {"_count": 1}}}, "LEAF": {"_count": 1, "OUT": {"_count": 1, "OF": {"_count": 1}}}, "PERCYS": {"_count": 1, "BOOK": {"_count": 1, "": {"_count": 1}}}, "BOOK": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Freds": {"_count": 31, "chest": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 6, "Georges": {"_count": 6}}, "Filibuster": {"_count": 1, "fireworks": {"_count": 1}}, "voice": {"_count": 3, "very": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "pocket": {"_count": 1, "and": {"_count": 1}}, "jeans": {"_count": 1, "": {"_count": 1}}, "trunk": {"_count": 1, "sprang": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "mouth": {"_count": 1, "fell": {"_count": 1}}, "words": {"_count": 1, "took": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "clipboard": {"_count": 1, "and": {"_count": 1}}, "hand": {"_count": 1, "groped": {"_count": 1}}, "parting": {"_count": 1, "words": {"_count": 1}}, "twin": {"_count": 1, "shook": {"_count": 1}}, "left": {"_count": 1, "buttock": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "pale": {"_count": 1, "face": {"_count": 1}}, "directions": {"_count": 1, "he": {"_count": 1}}, "eyes": {"_count": 1, "stared": {"_count": 1}}, "body": {"_count": 3, "shielding": {"_count": 1}, "under": {"_count": 1}, "because": {"_count": 1}}}, "havedied": {"_count": 1, "you": {"_count": 1, "could": {"_count": 1}}}, "encouragingly": {"_count": 12, "followed": {"_count": 1, "her": {"_count": 1}}, "looking": {"_count": 1, "down": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "deciding": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "come": {"_count": 1, "on": {"_count": 1}}, "its": {"_count": 1, "about": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}}, "cramped": {"_count": 12, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "called": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "steamy": {"_count": 1, "little": {"_count": 1}}, "conditions": {"_count": 1, "peering": {"_count": 1}}, "kneeling": {"_count": 1, "position": {"_count": 1}}, "handwriting": {"_count": 1, "as": {"_count": 1}}, "word": {"_count": 1, "underneath": {"_count": 1}}, "room": {"_count": 1, "with": {"_count": 1}}, "hallway": {"_count": 1, "it": {"_count": 1}}, "space": {"_count": 1, "": {"_count": 1}}}, "scrubbed": {"_count": 6, "wooden": {"_count": 3, "table": {"_count": 3}}, "table": {"_count": 1, "and": {"_count": 1}}, "much": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "a": {"_count": 1}}}, "Own": {"_count": 1, "Cheese": {"_count": 1, "Enchantment": {"_count": 1}}}, "Cheese": {"_count": 1, "Enchantment": {"_count": 1, "in": {"_count": 1}}}, "Enchantment": {"_count": 1, "in": {"_count": 1, "Baking": {"_count": 1}}}, "Baking": {"_count": 1, "and": {"_count": 1, "One": {"_count": 1}}}, "Minute": {"_count": 1, "Feasts": {"_count": 1, "Its": {"_count": 1}}}, "Feasts": {"_count": 1, "Its": {"_count": 1, "Magid": {"_count": 1}}}, "Magid": {"_count": 1, "And": {"_count": 1, "unless": {"_count": 1}}}, "deceiving": {"_count": 2, "him": {"_count": 2, "the": {"_count": 1}, "Fudge": {"_count": 1}}}, "radio": {"_count": 9, "next": {"_count": 1, "to": {"_count": 1}}, "softer": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "theyre": {"_count": 1, "looking": {"_count": 1}}, "really": {"_count": 1, "early": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}}, "Witching": {"_count": 1, "Hour": {"_count": 1, "with": {"_count": 1}}}, "Hour": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "sorceress": {"_count": 1, "Celestina": {"_count": 1, "Warbeck": {"_count": 1}}}, "Celestina": {"_count": 9, "Warbeck": {"_count": 4, "": {"_count": 2}, "whose": {"_count": 1}, "began": {"_count": 1}}, "very": {"_count": 1, "dull": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "ended": {"_count": 1, "her": {"_count": 1}}, "singing": {"_count": 1, "A": {"_count": 1}}}, "Warbeck": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "whose": {"_count": 1, "voice": {"_count": 1}}, "began": {"_count": 1, "a": {"_count": 1}}}, "cooking": {"_count": 18, "breakfast": {"_count": 1, "a": {"_count": 1}}, "up": {"_count": 1, "their": {"_count": 1}}, "pervaded": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "chickens": {"_count": 1}, "took": {"_count": 1}}, "eggs": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "wheeled": {"_count": 1}}, "sherry": {"_count": 3, "": {"_count": 1}, "behind": {"_count": 1}, "again": {"_count": 1}}, "had": {"_count": 1, "improved": {"_count": 1}}, "tomorrow": {"_count": 1, "Ron": {"_count": 1}}, "to": {"_count": 1, "spare": {"_count": 1}}}, "haphazardly": {"_count": 4, "throwing": {"_count": 1, "dirty": {"_count": 1}}, "around": {"_count": 1, "windows": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}}, "tipping": {"_count": 8, "eight": {"_count": 1, "or": {"_count": 1}}, "the": {"_count": 1, "books": {"_count": 1}}, "a": {"_count": 2, "stack": {"_count": 1}, "large": {"_count": 1}}, "lamb": {"_count": 1, "chops": {"_count": 1}}, "precariously": {"_count": 1, "in": {"_count": 1}}, "bacon": {"_count": 1, "onto": {"_count": 1}}, "Harry": {"_count": 1, "headfirst": {"_count": 1}}}, "Arthur": {"_count": 139, "and": {"_count": 10, "I": {"_count": 3}, "as": {"_count": 1}, "Molly": {"_count": 1}, "me": {"_count": 2}, "get": {"_count": 1}, "Fred": {"_count": 1}, "Percy": {"_count": 1}}, "cars": {"_count": 1, "said": {"_count": 1}}, "Weasley": {"_count": 25, "you": {"_count": 1}, "is": {"_count": 1}, "": {"_count": 5}, "Head": {"_count": 2}, "loves": {"_count": 1}, "and": {"_count": 1}, "for": {"_count": 2}, "I": {"_count": 2}, "when": {"_count": 1}, "Dumbledore": {"_count": 1}, "Misuse": {"_count": 1}, "too": {"_count": 1}, "has": {"_count": 1}, "injured": {"_count": 1}, "was": {"_count": 1}, "of": {"_count": 1}, "had": {"_count": 1}, "overstretch": {"_count": 1}}, "she": {"_count": 3, "sighed": {"_count": 1}, "said": {"_count": 1}, "called": {"_count": 1}}, "said": {"_count": 13, "Mrs": {"_count": 3}, "Hagrid": {"_count": 1}, "Basil": {"_count": 1}, "Mr": {"_count": 1}, "a": {"_count": 1}, "Dumbledore": {"_count": 1}, "Sirius": {"_count": 1}, "Moody": {"_count": 1}, "": {"_count": 1}, "Professor": {"_count": 1}, "Lupin": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}, "No": {"_count": 1, "one": {"_count": 1}}, "not": {"_count": 1, "in": {"_count": 1}}, "Weasleys": {"_count": 5, "daughter": {"_count": 2}, "son": {"_count": 2}, "attack": {"_count": 1}}, "the": {"_count": 1, "truth": {"_count": 1}}, "you": {"_count": 2, "must": {"_count": 1}, "know": {"_count": 1}}, "": {"_count": 29, "!": {"_count": 11}, "?": {"_count": 12}, ".": {"_count": 6}}, "what": {"_count": 1, "are": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 1, "just": {"_count": 1}}, "old": {"_count": 1, "man": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 2}, "pointed": {"_count": 1}}, "its": {"_count": 2, "not": {"_count": 1}, "Percy": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "youre": {"_count": 1, "supposed": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "What": {"_count": 1, "does": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "me": {"_count": 1}}, "would": {"_count": 1, "lose": {"_count": 1}}, "to": {"_count": 1, "Mr": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "died": {"_count": 1, "said": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "seriously": {"_count": 1, "injured": {"_count": 1}}, "was": {"_count": 1, "attacked": {"_count": 1}}, "for": {"_count": 1, "hours": {"_count": 1}}, "being": {"_count": 1, "where": {"_count": 1}}, "after": {"_count": 1, "lunch": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "wont": {"_count": 1, "want": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "Well": {"_count": 1, "dont": {"_count": 1}}, "they": {"_count": 1, "want": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "wouldnt": {"_count": 1, "be": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "confiscated": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "really": {"_count": 1, "this": {"_count": 1}}, "The": {"_count": 1, "Leaky": {"_count": 1}}, "hes": {"_count": 1, "hes": {"_count": 1}}, "are": {"_count": 1, "on": {"_count": 1}}, "muck": {"_count": 1, "out": {"_count": 1}}, "told": {"_count": 3, "me": {"_count": 2}, "us": {"_count": 1}}, "take": {"_count": 1, "Fleur": {"_count": 1}}, "heard": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "interrupted": {"_count": 1}}}, "adding": {"_count": 27, "three": {"_count": 1, "fried": {"_count": 1}}, "more": {"_count": 1, "lacewings": {"_count": 1}}, "your": {"_count": 1, "ingredients": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "her": {"_count": 3, "weight": {"_count": 1}, "name": {"_count": 1}, "own": {"_count": 1}}, "chimneys": {"_count": 1, "or": {"_count": 1}}, "their": {"_count": 2, "discordant": {"_count": 1}, "songs": {"_count": 1}}, "liberal": {"_count": 1, "amounts": {"_count": 1}}, "chairs": {"_count": 1, "": {"_count": 1}}, "names": {"_count": 1, "until": {"_count": 1}}, "another": {"_count": 1, "shining": {"_count": 1}}, "thoughts": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 2}}, "the": {"_count": 1, "wrong": {"_count": 1}}, "milk": {"_count": 1, "with": {"_count": 1}}, "notes": {"_count": 1, "to": {"_count": 1}}, "weights": {"_count": 1, "to": {"_count": 1}}, "quietly": {"_count": 1, "when": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "Big": {"_count": 1, "deal": {"_count": 1}}, "You": {"_count": 1, "dont": {"_count": 1}}}, "softened": {"_count": 3, "expression": {"_count": 2, "that": {"_count": 1}, "appeared": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "buttering": {"_count": 4, "it": {"_count": 1, "for": {"_count": 1}}, "himself": {"_count": 1, "a": {"_count": 1}}, "herself": {"_count": 1, "some": {"_count": 1}}, "a": {"_count": 1, "crumpet": {"_count": 1}}}, "nightdress": {"_count": 6, "who": {"_count": 1, "appeared": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "fell": {"_count": 1, "down": {"_count": 1}}, "clearly": {"_count": 1, "halfway": {"_count": 1}}}, "undertone": {"_count": 20, "to": {"_count": 3, "Harry": {"_count": 1}, "Ron": {"_count": 2}}, "as": {"_count": 3, "they": {"_count": 2}, "the": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "theres": {"_count": 1}}, "uncomfortably": {"_count": 1, "aware": {"_count": 1}}, "pick": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "noticing": {"_count": 1, "Harry": {"_count": 1}}, "after": {"_count": 1, "Hermione": {"_count": 1}}, "Master": {"_count": 1, "was": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "still": {"_count": 1, "massaging": {"_count": 1}}}, "autograph": {"_count": 10, "Harry": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 1}, "?": {"_count": 3}}, "if": {"_count": 1, "I": {"_count": 1}}, "books": {"_count": 1, "": {"_count": 1}}, "begging": {"_count": 1, "Cedric": {"_count": 1}}, "but": {"_count": 1, "then": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}}, "surprisingly": {"_count": 10, "short": {"_count": 3, "time": {"_count": 2}, "while": {"_count": 1}}, "gentle": {"_count": 1, "voice": {"_count": 1}}, "dark": {"_count": 1, "outside": {"_count": 1}}, "strong": {"_count": 1, "grip": {"_count": 1}}, "loud": {"_count": 1, "thunk": {"_count": 1}}, "well": {"_count": 1, "developed": {"_count": 1}}, "willing": {"_count": 1, "to": {"_count": 1}}, "soft": {"_count": 1, "for": {"_count": 1}}}, "knife": {"_count": 61, "and": {"_count": 14, "fork": {"_count": 10}, "started": {"_count": 1}, "donned": {"_count": 1}, "firing": {"_count": 1}, "shouted": {"_count": 1}}, "pulled": {"_count": 1, "Malfoys": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 10, "!": {"_count": 4}, "?": {"_count": 1}, ".": {"_count": 5}}, "mustve": {"_count": 1, "been": {"_count": 1}}, "without": {"_count": 1, "Pettigrew": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "to": {"_count": 3, "cut": {"_count": 1}, "hurtle": {"_count": 1}, "Hermione": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "Sirius": {"_count": 2, "had": {"_count": 2}}, "slipped": {"_count": 1, "off": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "saw": {"_count": 1}}, "thatll": {"_count": 1, "open": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "secure": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "his": {"_count": 2}, "one": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "Narcissa": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "soared": {"_count": 1, "gracefully": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "Fred": {"_count": 1}}, "held": {"_count": 1, "aloft": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "tightly": {"_count": 1}}, "from": {"_count": 1, "under": {"_count": 1}}, "flew": {"_count": 1, "across": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}, "sharpener": {"_count": 1, "said": {"_count": 1}}}, "gnome": {"_count": 17, "the": {"_count": 1, "garden": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "above": {"_count": 1, "his": {"_count": 1}}, "sensing": {"_count": 1, "weakness": {"_count": 1}}, "giggling": {"_count": 1, "madly": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 2}}, "prints": {"_count": 1, "all": {"_count": 1}}, "now": {"_count": 1, "wearing": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 2, "just": {"_count": 1}, "finally": {"_count": 1}}, "Funny": {"_count": 1, "little": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}}, "wretched": {"_count": 8, "car": {"_count": 1, "But": {"_count": 1}}, "Skeeter": {"_count": 1, "woman": {"_count": 1}}, "poltergeist": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 2, "then": {"_count": 1}, "I": {"_count": 1}}, "Inquisitorial": {"_count": 1, "Squad": {"_count": 1}}, "man": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "degnoming": {"_count": 1, "Thats": {"_count": 1, "very": {"_count": 1}}}, "Lockharts": {"_count": 47, "got": {"_count": 1, "to": {"_count": 1}}, "Guide": {"_count": 2, "to": {"_count": 2}}, "books": {"_count": 5, "too": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 1}, "I": {"_count": 1}, "in": {"_count": 1}}, "hand": {"_count": 1, "shot": {"_count": 1}}, "something": {"_count": 1, "isnt": {"_count": 1}}, "lessons": {"_count": 1, "in": {"_count": 1}}, "side": {"_count": 1, "and": {"_count": 1}}, "classroom": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "favorite": {"_count": 1, "color": {"_count": 1}}, "secret": {"_count": 1, "ambition": {"_count": 1}}, "greatest": {"_count": 1, "achievement": {"_count": 1}}, "birthday": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 1, "spreading": {"_count": 1}}, "fan": {"_count": 1, "mail": {"_count": 1}}, "office": {"_count": 4, "": {"_count": 3}, "they": {"_count": 1}}, "voice": {"_count": 1, "wash": {"_count": 1}}, "prattle": {"_count": 1, "about": {"_count": 1}}, "darkened": {"_count": 1, "office": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "comments": {"_count": 1, "were": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "desk": {"_count": 1, "a": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "disgusting": {"_count": 1, "cheeriness": {"_count": 1}}, "stupid": {"_count": 1, "face": {"_count": 1}}, "eyes": {"_count": 1, "peering": {"_count": 1}}, "face": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "trunk": {"_count": 1, "aside": {"_count": 1}}, "hands": {"_count": 1, "were": {"_count": 1}}, "knees": {"_count": 1, "had": {"_count": 1}}, "valentine": {"_count": 1, "flowers": {"_count": 1}}, "day": {"_count": 1, "the": {"_count": 1}}, "memory": {"_count": 1, "so": {"_count": 1}}, "arm": {"_count": 1, "and": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "angry": {"_count": 1, "voice": {"_count": 1}}, "just": {"_count": 1, "lying": {"_count": 1}}}, "degnome": {"_count": 1, "a": {"_count": 1, "garden": {"_count": 1}}}, "fancy": {"_count": 25, "gold": {"_count": 1, "letters": {"_count": 1}}, "dinner": {"_count": 1, "and": {"_count": 1}}, "is": {"_count": 1, "chances": {"_count": 1}}, "having": {"_count": 1, "to": {"_count": 1}}, "crossing": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "extravagantly": {"_count": 1}, "mortality": {"_count": 1}}, "walking": {"_count": 1, "around": {"_count": 1}}, "yourselves": {"_count": 1, "as": {"_count": 1}}, "going": {"_count": 1, "out": {"_count": 1}}, "Harry": {"_count": 1, "but": {"_count": 1}}, "a": {"_count": 1, "cup": {"_count": 1}}, "hippogriff": {"_count": 1, "for": {"_count": 1}}, "her": {"_count": 1, "and": {"_count": 1}}, "Healing": {"_count": 1, "said": {"_count": 1}}, "banking": {"_count": 1, "said": {"_count": 1}}, "Tonks": {"_count": 1, "when": {"_count": 1}}, "doing": {"_count": 1, "his": {"_count": 1}}, "hey": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "Harry": {"_count": 1}}, "stepping": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "there": {"_count": 1}}}, "Gilderoy": {"_count": 43, "Lockharts": {"_count": 7, "Guide": {"_count": 2}, "favorite": {"_count": 1}, "secret": {"_count": 1}, "greatest": {"_count": 1}, "birthday": {"_count": 1}, "knees": {"_count": 1}}, "Lockhart": {"_count": 26, "kept": {"_count": 1}, "Gadding": {"_count": 1}, "Holidays": {"_count": 1}, "Travels": {"_count": 1}, "Voyages": {"_count": 1}, "Wanderings": {"_count": 1}, "Year": {"_count": 1}, "Fred": {"_count": 1}, "was": {"_count": 4}, "came": {"_count": 1}, "heard": {"_count": 1}, "": {"_count": 3}, "mustve": {"_count": 1}, "dressed": {"_count": 1}, "however": {"_count": 1}, "Order": {"_count": 2}, "coming": {"_count": 1}, "wearing": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Professor": {"_count": 1}}, "chipped": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "you": {"_count": 1, "naughty": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "told": {"_count": 1, "the": {"_count": 1}}, "does": {"_count": 1, "seem": {"_count": 1}}, "pulled": {"_count": 1, "a": {"_count": 1}}}, "Household": {"_count": 2, "Pests": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}}, "Pests": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}}, "photograph": {"_count": 52, "on": {"_count": 2, "the": {"_count": 2}}, "was": {"_count": 2, "moving": {"_count": 1}, "the": {"_count": 1}}, "Colin": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 3, "a": {"_count": 1}, "Hermione": {"_count": 1}, "tucked": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "of": {"_count": 17, "a": {"_count": 1}, "Ron": {"_count": 1}, "the": {"_count": 7}, "his": {"_count": 3}, "Harry": {"_count": 1}, "Dolores": {"_count": 1}, "you": {"_count": 1}, "two": {"_count": 1}, "Albus": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "jostled": {"_count": 1, "among": {"_count": 1}}, "forevermore": {"_count": 1, "not": {"_count": 1}}, "again": {"_count": 1, "of": {"_count": 1}}, "unaware": {"_count": 1, "that": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "too": {"_count": 1, "wow": {"_count": 1}}, "frames": {"_count": 1, "on": {"_count": 1}}, "yellowed": {"_count": 1, "with": {"_count": 1}}, "album": {"_count": 2, "Hagrid": {"_count": 2}}, "Lily": {"_count": 1, "had": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "Hogwarts": {"_count": 1}}, "which": {"_count": 1, "showed": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "inside": {"_count": 1}}}, "wavy": {"_count": 5, "blond": {"_count": 2, "hair": {"_count": 2}}, "hair": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "Lockhart": {"_count": 204, "kept": {"_count": 1, "winking": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "Gadding": {"_count": 1, "with": {"_count": 1}}, "Holidays": {"_count": 1, "with": {"_count": 1}}, "Travels": {"_count": 1, "with": {"_count": 1}}, "Voyages": {"_count": 1, "with": {"_count": 1}}, "Wanderings": {"_count": 1, "with": {"_count": 1}}, "Year": {"_count": 1, "with": {"_count": 1}}, "Fred": {"_count": 1, "who": {"_count": 1}}, "books": {"_count": 4, "": {"_count": 2}, "a": {"_count": 1}, "back": {"_count": 1}}, "was": {"_count": 20, "signing": {"_count": 1}, "wearing": {"_count": 1}, "striding": {"_count": 1}, "tugging": {"_count": 1}, "saying": {"_count": 1}, "out": {"_count": 1}, "looking": {"_count": 2}, "hovering": {"_count": 1}, "twirling": {"_count": 1}, "walking": {"_count": 1}, "still": {"_count": 1}, "blasted": {"_count": 2}, "getting": {"_count": 2}, "standing": {"_count": 2}, "straightening": {"_count": 1}, "sitting": {"_count": 1}}, "came": {"_count": 1, "slowly": {"_count": 1}}, "heard": {"_count": 1, "him": {"_count": 1}}, "dived": {"_count": 1, "forward": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "threw": {"_count": 1, "an": {"_count": 1}}, "continued": {"_count": 1, "giving": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 22}, "?": {"_count": 3}, "!": {"_count": 1}}, "mustve": {"_count": 1, "thought": {"_count": 1}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 4, "Thats": {"_count": 1}, "loudly": {"_count": 1}, "he": {"_count": 1}, "Snape": {"_count": 1}}, "his": {"_count": 1, "large": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "reaching": {"_count": 1, "out": {"_count": 1}}, "flung": {"_count": 1, "an": {"_count": 1}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "called": {"_count": 1, "to": {"_count": 1}}, "paternally": {"_count": 1, "as": {"_count": 1}}, "swept": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 2, "hear": {"_count": 1}, "his": {"_count": 1}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "Order": {"_count": 2, "of": {"_count": 2}}, "collected": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 3, "an": {"_count": 1}, "rapt": {"_count": 1}, "a": {"_count": 1}}, "placed": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 7, "a": {"_count": 3}, "the": {"_count": 2}, "first": {"_count": 1}, "mild": {"_count": 1}}, "whipped": {"_count": 1, "off": {"_count": 1}}, "couldnt": {"_count": 2, "mistake": {"_count": 1}, "hear": {"_count": 1}}, "waggling": {"_count": 1, "a": {"_count": 1}}, "shouted": {"_count": 3, "": {"_count": 2}, "in": {"_count": 1}}, "gulped": {"_count": 1, "and": {"_count": 1}}, "straightened": {"_count": 2, "up": {"_count": 1}, "his": {"_count": 1}}, "coming": {"_count": 1, "down": {"_count": 1}}, "gave": {"_count": 1, "up": {"_count": 1}}, "wearing": {"_count": 2, "robes": {"_count": 1}, "lurid": {"_count": 1}}, "back": {"_count": 2, "again": {"_count": 1}, "on": {"_count": 1}}, "want": {"_count": 1, "with": {"_count": 1}}, "yeh": {"_count": 1, "didn": {"_count": 1}}, "answer": {"_count": 1, "his": {"_count": 1}}, "requested": {"_count": 1, "you": {"_count": 1}}, "beamed": {"_count": 1, "down": {"_count": 1}}, "told": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "looking": {"_count": 3, "puzzled": {"_count": 1}, "excited": {"_count": 1}, "faintly": {"_count": 1}}, "telling": {"_count": 1, "him": {"_count": 1}}, "stepped": {"_count": 1, "forward": {"_count": 1}}, "lit": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "series": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "stopped": {"_count": 1, "abruptly": {"_count": 1}}, "butted": {"_count": 1, "in": {"_count": 1}}, "being": {"_count": 1, "so": {"_count": 1}}, "had": {"_count": 8, "not": {"_count": 1}, "cured": {"_count": 1}, "dealt": {"_count": 1}, "noticed": {"_count": 1}, "them": {"_count": 1}, "barely": {"_count": 1}, "lived": {"_count": 1}, "been": {"_count": 1}}, "got": {"_count": 2, "to": {"_count": 2}}, "taking": {"_count": 1, "the": {"_count": 1}}, "warmly": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 1, "Hermione": {"_count": 1}}, "ll": {"_count": 1, "sign": {"_count": 1}}, "loudly": {"_count": 1, "to": {"_count": 1}}, "soothingly": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}, "hadnt": {"_count": 1, "mended": {"_count": 1}}, "now": {"_count": 1, "Hermione": {"_count": 1}}, "waved": {"_count": 1, "an": {"_count": 1}}, "flashing": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 5, "Snape": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}, "off": {"_count": 1}, "his": {"_count": 1}}, "did": {"_count": 1, "with": {"_count": 1}}, "teamed": {"_count": 1, "Neville": {"_count": 1}}, "but": {"_count": 1, "Snape": {"_count": 1}}, "skittering": {"_count": 1, "through": {"_count": 1}}, "standing": {"_count": 1, "flustered": {"_count": 1}}, "gesturing": {"_count": 1, "Harry": {"_count": 1}}, "quickly": {"_count": 1, "picked": {"_count": 1}}, "cuffed": {"_count": 1, "Harry": {"_count": 1}}, "wasnt": {"_count": 1, "listening": {"_count": 1}}, "the": {"_count": 1, "smarmiest": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "clapped": {"_count": 1, "his": {"_count": 1}}, "so": {"_count": 1, "Malfoy": {"_count": 1}}, "teaches": {"_count": 1, "it": {"_count": 1}}, "bounded": {"_count": 1, "into": {"_count": 1}}, "appeared": {"_count": 1, "nothing": {"_count": 1}}, "speaking": {"_count": 1, "slowly": {"_count": 1}}, "graciously": {"_count": 1, "while": {"_count": 1}}, "blanched": {"_count": 1, "": {"_count": 1}}, "stared": {"_count": 1, "around": {"_count": 1}}, "gazed": {"_count": 1, "desperately": {"_count": 1}}, "ripping": {"_count": 1, "a": {"_count": 1}}, "avoiding": {"_count": 1, "their": {"_count": 1}}, "muttered": {"_count": 1, "now": {"_count": 1}}, "delicately": {"_count": 1, "": {"_count": 1}}, "straightening": {"_count": 1, "up": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "weakly": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "approached": {"_count": 1, "the": {"_count": 1}}, "slid": {"_count": 1, "his": {"_count": 1}}, "peered": {"_count": 1, "goodnaturedly": {"_count": 1}}, "He": {"_count": 1, "means": {"_count": 1}}, "dangling": {"_count": 1, "below": {"_count": 1}}, "stood": {"_count": 1, "in": {"_count": 1}}, "looked": {"_count": 1, "over": {"_count": 1}}, "Am": {"_count": 1, "I": {"_count": 1}}, "dimly": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "ambled": {"_count": 1, "out": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "The": {"_count": 1, "appearance": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "exuberantly": {"_count": 1, "pulling": {"_count": 1}}}, "winking": {"_count": 20, "cheekily": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 1, "flashing": {"_count": 1}}, "portrait": {"_count": 1, "on": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "at": {"_count": 8, "him": {"_count": 4}, "Dudley": {"_count": 1}, "various": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "in": {"_count": 2, "front": {"_count": 1}, "their": {"_count": 1}}, "pictures": {"_count": 1, "of": {"_count": 1}}}, "cheekily": {"_count": 1, "up": {"_count": 1, "at": {"_count": 1}}}, "marvelous": {"_count": 5, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "BatBogey": {"_count": 1, "Hex": {"_count": 1}}, "tune": {"_count": 1, "": {"_count": 1}}}, "household": {"_count": 3, "pests": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "spells": {"_count": 1, "and": {"_count": 1}}}, "pests": {"_count": 1, "all": {"_count": 1, "right": {"_count": 1}}}, "fancies": {"_count": 6, "him": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "buying": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "gigantic": {"_count": 1}}, "you": {"_count": 2, "James": {"_count": 1}, "": {"_count": 1}}}, "audible": {"_count": 14, "whisper": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "gasp": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "now": {"_count": 1, "over": {"_count": 1}}, "even": {"_count": 2, "over": {"_count": 1}, "above": {"_count": 1}}, "sigh": {"_count": 1, "as": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 3}}, "through": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "lips": {"_count": 1}}}, "woe": {"_count": 1, "betide": {"_count": 1, "you": {"_count": 1}}}, "betide": {"_count": 1, "you": {"_count": 1, "if": {"_count": 1}}}, "inspect": {"_count": 7, "it": {"_count": 1, "": {"_count": 1}}, "Azkaban": {"_count": 1, "last": {"_count": 1}}, "her": {"_count": 1, "fellow": {"_count": 1}}, "other": {"_count": 1, "teachers": {"_count": 1}}, "my": {"_count": 1, "fellow": {"_count": 1}}, "place": {"_count": 1, "upon": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}}, "Yawning": {"_count": 2, "and": {"_count": 2, "grumbling": {"_count": 1}, "shivering": {"_count": 1}}}, "grumbling": {"_count": 7, "the": {"_count": 1, "Weasleys": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "somebodys": {"_count": 1}}, "resentment": {"_count": 1, "and": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "audibly": {"_count": 1, "he": {"_count": 1}}}, "plenty": {"_count": 51, "of": {"_count": 41, "weeds": {"_count": 1}, "practice": {"_count": 1}, "wizards": {"_count": 1}, "mice": {"_count": 1}, "special": {"_count": 1}, "opportunity": {"_count": 2}, "food": {"_count": 1}, "times": {"_count": 3}, "treasure": {"_count": 1}, "adult": {"_count": 1}, "other": {"_count": 1}, "extra": {"_count": 1}, "people": {"_count": 4}, "distance": {"_count": 1}, "animals": {"_count": 1}, "information": {"_count": 1}, "time": {"_count": 10}, "evidence": {"_count": 1}, "eyewitness": {"_count": 1}, "opportunities": {"_count": 1}, "horrible": {"_count": 1}, "those": {"_count": 1}, "disruption": {"_count": 1}, "help": {"_count": 1}, "tight": {"_count": 1}, "us": {"_count": 1}}, "to": {"_count": 3, "talk": {"_count": 1}, "do": {"_count": 1}, "watch": {"_count": 1}}, "out": {"_count": 1, "here": {"_count": 1}}, "more": {"_count": 1, "opportunity": {"_count": 1}}, "stop": {"_count": 1, "eating": {"_count": 1}}, "said": {"_count": 1, "Slughorn": {"_count": 1}}, "from": {"_count": 1, "this": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "gnarled": {"_count": 19, "trees": {"_count": 1, "all": {"_count": 1}}, "boughs": {"_count": 1, "were": {"_count": 1}}, "finger": {"_count": 2, "into": {"_count": 1}, "toward": {"_count": 1}}, "hands": {"_count": 4, "together": {"_count": 1}, "on": {"_count": 1}, "clumsy": {"_count": 1}, "clutching": {"_count": 1}}, "yew": {"_count": 1, "trees": {"_count": 1}}, "hand": {"_count": 2, "stuck": {"_count": 1}, "": {"_count": 1}}, "feet": {"_count": 1, "and": {"_count": 1}}, "Snargaluff": {"_count": 1, "stumps": {"_count": 1}}, "stump": {"_count": 2, "between": {"_count": 1}, "sat": {"_count": 1}}, "toes": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 2, "resilientlooking": {"_count": 1}, "twisted": {"_count": 1}}}, "pond": {"_count": 4, "full": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "stumbled": {"_count": 1}}, "or": {"_count": 1, "somewhere": {"_count": 1}}}, "peony": {"_count": 2, "bush": {"_count": 2, "like": {"_count": 1}, "shuddered": {"_count": 1}}}, "Santa": {"_count": 2, "Clauses": {"_count": 1, "with": {"_count": 1}}, "Claus": {"_count": 1, "": {"_count": 1}}}, "Clauses": {"_count": 1, "with": {"_count": 1, "fishing": {"_count": 1}}}, "fishing": {"_count": 4, "rods": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "cherry": {"_count": 1}}, "for": {"_count": 2, "Freshwater": {"_count": 1}, "Plimpies": {"_count": 1}}}, "rods": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 2, "James": {"_count": 1}, "passed": {"_count": 1}}}, "scuffling": {"_count": 7, "noise": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "footsteps": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "squeaks": {"_count": 1}, "a": {"_count": 1}}, "from": {"_count": 2, "below": {"_count": 1}, "outside": {"_count": 1}}}, "Gerroff": {"_count": 4, "me": {"_count": 3, "": {"_count": 3}}, "Percy": {"_count": 1, "Im": {"_count": 1}}}, "Claus": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "leathery": {"_count": 7, "looking": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}, "wings": {"_count": 4, "at": {"_count": 1}, "that": {"_count": 1}, "closer": {"_count": 1}, "folded": {"_count": 1}}, "black": {"_count": 1, "wings": {"_count": 1}}}, "knobby": {"_count": 1, "bald": {"_count": 1, "head": {"_count": 1}}}, "swing": {"_count": 16, "it": {"_count": 1, "in": {"_count": 1}}, "your": {"_count": 1, "arms": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "forward": {"_count": 1, "when": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "kneazle": {"_count": 1}}, "around": {"_count": 1, "and": {"_count": 1}}, "one": {"_count": 1, "short": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "shut": {"_count": 1, "behind": {"_count": 1}}, "closed": {"_count": 1, "he": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "dragging": {"_count": 1}}, "poles": {"_count": 1, "as": {"_count": 1}}}, "lasso": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "encircling": {"_count": 1, "them": {"_count": 1}}, "at": {"_count": 1, "Snape": {"_count": 1}}}, "dizzy": {"_count": 7, "so": {"_count": 1, "they": {"_count": 1}}, "he": {"_count": 1, "nevertheless": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "but": {"_count": 2, "better": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 1, "bewildered": {"_count": 1}}, "being": {"_count": 1, "struck": {"_count": 1}}}, "gnomeholes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Pitiful": {"_count": 1, "said": {"_count": 1, "Fred": {"_count": 1}}}, "sensing": {"_count": 2, "weakness": {"_count": 1, "sank": {"_count": 1}}, "its": {"_count": 1, "way": {"_count": 1}}}, "weakness": {"_count": 13, "sank": {"_count": 1, "its": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "my": {"_count": 1}, "makes": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "heroics": {"_count": 1}}, "Another": {"_count": 1, "jet": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "He": {"_count": 1, "has": {"_count": 1}}, "of": {"_count": 1, "death": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}}, "razorsharp": {"_count": 6, "teeth": {"_count": 1, "into": {"_count": 1}}, "pincers": {"_count": 2, "Riddle": {"_count": 1}, "before": {"_count": 1}}, "beak": {"_count": 1, "at": {"_count": 1}}, "claws": {"_count": 1, "slashed": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}}, "degnomings": {"_count": 1, "going": {"_count": 1, "on": {"_count": 1}}}, "straggling": {"_count": 3, "line": {"_count": 1, "their": {"_count": 1}}, "along": {"_count": 1, "behind": {"_count": 1}}, "black": {"_count": 1, "hair": {"_count": 1}}}, "childrens": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "soccer": {"_count": 1, "shorts": {"_count": 1}}, "books": {"_count": 1, "and": {"_count": 1}}, "best": {"_count": 1, "interests": {"_count": 1}}, "pleading": {"_count": 1, "triumphed": {"_count": 1}}, "stories": {"_count": 2, "": {"_count": 2}}, "tale": {"_count": 1, "told": {"_count": 1}}, "tales": {"_count": 1, "of": {"_count": 1}}}, "travelworn": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "groping": {"_count": 12, "for": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 3, "her": {"_count": 2}, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "around": {"_count": 1, "in": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "every": {"_count": 1}}, "the": {"_count": 1, "side": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}}, "raids": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Mr": {"_count": 1}}}, "Mundungus": {"_count": 130, "Fletcher": {"_count": 16, "tried": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 5}, "tailing": {"_count": 1}, "whove": {"_count": 1}, "with": {"_count": 1}, "small": {"_count": 1}, "croaked": {"_count": 1}, "stole": {"_count": 2}, "laughed": {"_count": 1}, "Master": {"_count": 1}}, "Fletchers": {"_count": 1, "put": {"_count": 1}}, "knows": {"_count": 1, "full": {"_count": 1}}, "has": {"_count": 4, "been": {"_count": 3}, "persuaded": {"_count": 1}}, "have": {"_count": 1, "left": {"_count": 1}}, "aghast": {"_count": 1, "": {"_count": 1}}, "weakly": {"_count": 1, "looking": {"_count": 1}}, "looked": {"_count": 3, "deeply": {"_count": 1}, "around": {"_count": 1}, "nervously": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "could": {"_count": 1}}, "his": {"_count": 3, "arms": {"_count": 1}, "saggy": {"_count": 1}, "eyes": {"_count": 1}}, "had": {"_count": 5, "left": {"_count": 1}, "moved": {"_count": 1}, "emptied": {"_count": 1}, "gone": {"_count": 2}}, "havent": {"_count": 1, "you": {"_count": 1}}, "mumbled": {"_count": 1, "sleepily": {"_count": 1}}, "peering": {"_count": 1, "balefully": {"_count": 1}}, "fumbled": {"_count": 1, "nervously": {"_count": 1}}, "called": {"_count": 1, "Mrs": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 11}, "!": {"_count": 2}, "?": {"_count": 3}}, "stowed": {"_count": 1, "his": {"_count": 1}}, "who": {"_count": 8, "was": {"_count": 2}, "did": {"_count": 1}, "had": {"_count": 2}, "suggested": {"_count": 1}, "stopped": {"_count": 1}, "shouted": {"_count": 1}}, "leaning": {"_count": 1, "forward": {"_count": 1}}, "polishing": {"_count": 1, "it": {"_count": 1}}, "were": {"_count": 3, "rolling": {"_count": 1}, "on": {"_count": 1}, "shooting": {"_count": 1}}, "tears": {"_count": 1, "running": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Sirius": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "but": {"_count": 1, "you": {"_count": 1}}, "Lupin": {"_count": 1, "and": {"_count": 1}}, "heaved": {"_count": 1, "his": {"_count": 1}}, "is": {"_count": 1, "talking": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "redeemed": {"_count": 1, "himself": {"_count": 1}}, "with": {"_count": 2, "them": {"_count": 1}, "loathing": {"_count": 1}}, "stopped": {"_count": 1, "talking": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "or": {"_count": 1, "some": {"_count": 1}}, "and": {"_count": 4, "decorated": {"_count": 1}, "MadEye": {"_count": 1}, "was": {"_count": 1}, "hit": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "driving": {"_count": 1, "were": {"_count": 1}}, "was": {"_count": 1, "battling": {"_count": 1}}, "drove": {"_count": 1, "off": {"_count": 1}}, "grab": {"_count": 1, "an": {"_count": 1}}, "snatching": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "seized": {"_count": 1, "his": {"_count": 1}}, "will": {"_count": 2, "probably": {"_count": 1}, "be": {"_count": 1}}, "in": {"_count": 2, "Hogsmeade": {"_count": 1}, "an": {"_count": 1}}, "hes": {"_count": 1, "been": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "shrugged": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "drank": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "disappeared": {"_count": 1, "": {"_count": 1}}, "cant": {"_count": 1, "have": {"_count": 1}}, "gave": {"_count": 1, "them": {"_count": 1}}, "would": {"_count": 1, "take": {"_count": 1}}, "scrambled": {"_count": 1, "up": {"_count": 1}}, "s": {"_count": 3, "wand": {"_count": 1}, "nose": {"_count": 1}, "face": {"_count": 1}}, "dived": {"_count": 1, "for": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "stank": {"_count": 1, "of": {"_count": 1}}, "interrupted": {"_count": 1, "him": {"_count": 1}}, "cowering": {"_count": 1, "as": {"_count": 1}}, "considered": {"_count": 1, "for": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Fletcher": {"_count": 17, "tried": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "old": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 3}, "?": {"_count": 1}}, "tailing": {"_count": 1, "him": {"_count": 1}}, "whove": {"_count": 1, "never": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "small": {"_count": 1, "dirty": {"_count": 1}}, "croaked": {"_count": 1, "the": {"_count": 1}}, "stole": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "laughed": {"_count": 1, "and": {"_count": 1}}, "Master": {"_count": 1, "": {"_count": 1}}, "knows": {"_count": 1, "how": {"_count": 1}}}, "hex": {"_count": 26, "on": {"_count": 4, "me": {"_count": 2}, "you": {"_count": 1}, "the": {"_count": 1}}, "would": {"_count": 1, "finish": {"_count": 1}}, "research": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "he": {"_count": 1}}, "marks": {"_count": 1, "": {"_count": 1}}, "Gryffindor": {"_count": 1, "players": {"_count": 1}}, "she": {"_count": 1, "waved": {"_count": 1}}, "Kingsley": {"_count": 1, "too": {"_count": 1}}, "Zacharias": {"_count": 1, "Smith": {"_count": 1}}, "and": {"_count": 1, "invited": {"_count": 1}}, "that": {"_count": 2, "caused": {"_count": 2}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "missed": {"_count": 1, "Harry": {"_count": 1}}, "upon": {"_count": 1, "Bertram": {"_count": 1}}, "after": {"_count": 1, "hex": {"_count": 1}}, "at": {"_count": 2, "her": {"_count": 1}, "it": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "curse": {"_count": 1}}}, "biting": {"_count": 20, "kettle": {"_count": 1, "yawned": {"_count": 1}}, "off": {"_count": 3, "more": {"_count": 1}, "Justins": {"_count": 1}, "the": {"_count": 1}}, "her": {"_count": 4, "lip": {"_count": 4}}, "his": {"_count": 2, "lip": {"_count": 2}}, "book": {"_count": 2, "would": {"_count": 1}, "": {"_count": 1}}, "back": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "anything": {"_count": 1, "smaller": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "my": {"_count": 1, "head": {"_count": 1}}, "doorknobs": {"_count": 1, "to": {"_count": 1}}, "deeper": {"_count": 1, "and": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}}, "Mortlake": {"_count": 1, "was": {"_count": 1, "taken": {"_count": 1}}}, "questioning": {"_count": 18, "about": {"_count": 3, "some": {"_count": 1}, "the": {"_count": 2}}, "Harry": {"_count": 1, "all": {"_count": 1}}, "quite": {"_count": 1, "useless": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "him": {"_count": 1, "until": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "on": {"_count": 1}}, "her": {"_count": 1, "about": {"_count": 1}}, "look": {"_count": 2, "": {"_count": 2}}, "Muggle": {"_count": 1, "and": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "sat": {"_count": 1, "huddled": {"_count": 1}}, "and": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 1, "take": {"_count": 1}}}, "ferrets": {"_count": 3, "but": {"_count": 1, "thats": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "progress": {"_count": 1, "through": {"_count": 1}}}, "Committee": {"_count": 22, "on": {"_count": 2, "Experimental": {"_count": 2}}, "for": {"_count": 8, "the": {"_count": 8}}, "fer": {"_count": 2, "the": {"_count": 2}}, "into": {"_count": 1, "it": {"_count": 1}}, "jus": {"_count": 1, "did": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "member": {"_count": 5, "and": {"_count": 2}, "from": {"_count": 1}, "": {"_count": 1}, "were": {"_count": 1}}, "people": {"_count": 1, "will": {"_count": 1}}}, "Experimental": {"_count": 4, "Charms": {"_count": 3, "thank": {"_count": 1}, "hes": {"_count": 1}, "theyre": {"_count": 1}}, "Breeding": {"_count": 1, "to": {"_count": 1}}}, "Mugglebaiting": {"_count": 2, "sighed": {"_count": 1, "Mr": {"_count": 1}}, "might": {"_count": 1, "strike": {"_count": 1}}}, "Sell": {"_count": 1, "them": {"_count": 1, "a": {"_count": 1}}}, "convict": {"_count": 4, "anyone": {"_count": 1, "because": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "theyd": {"_count": 1, "seen": {"_count": 1}}, "you": {"_count": 1, "said": {"_count": 1}}}, "admit": {"_count": 53, "their": {"_count": 1, "key": {"_count": 1}}, "that": {"_count": 13, "some": {"_count": 1}, "sort": {"_count": 1}, "even": {"_count": 1}, "he": {"_count": 3}, "I": {"_count": 1}, "she": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "it": {"_count": 1}, "YouKnowWho": {"_count": 1}, "was": {"_count": 1}}, "its": {"_count": 1, "weird": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "even": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "had": {"_count": 1}, "mighta": {"_count": 1}}, "a": {"_count": 1, "fairly": {"_count": 1}}, "them": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "and": {"_count": 1}}, "shes": {"_count": 1, "wrong": {"_count": 1}}, "it": {"_count": 9, "but": {"_count": 1}, "to": {"_count": 2}, "": {"_count": 4}, "Of": {"_count": 1}, "and": {"_count": 1}}, "Peter": {"_count": 1, "I": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 3}}, "to": {"_count": 3, "being": {"_count": 1}, "Hagrid": {"_count": 1}, "himself": {"_count": 1}}, "I": {"_count": 3, "had": {"_count": 1}, "did": {"_count": 1}, "thought": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "theyve": {"_count": 1, "read": {"_count": 1}}, "There": {"_count": 1, "is": {"_count": 1}}, "on": {"_count": 1, "getting": {"_count": 1}}, "however": {"_count": 1, "that": {"_count": 1}}, "something": {"_count": 1, "unpleasant": {"_count": 1}}}, "lengths": {"_count": 9, "to": {"_count": 4, "ignore": {"_count": 1}, "solve": {"_count": 1}, "get": {"_count": 1}, "rescue": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "before": {"_count": 1, "swimming": {"_count": 1}}, "of": {"_count": 2, "this": {"_count": 1}, "parchment": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "enchanting": {"_count": 2, "you": {"_count": 1, "wouldnt": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}}, "LIKE": {"_count": 8, "CARS": {"_count": 1, "FOR": {"_count": 1}}, "THIS": {"_count": 1, "YOU": {"_count": 1}}, "PEOPLE": {"_count": 1, "LIKE": {"_count": 1}}, "YOU": {"_count": 1, "": {"_count": 1}}, "THAT": {"_count": 2, "": {"_count": 2}}, "TO": {"_count": 1, "WORK": {"_count": 1}}, "I": {"_count": 1, "HAVEN": {"_count": 1}}}, "CARS": {"_count": 1, "FOR": {"_count": 1, "INSTANCE": {"_count": 1}}}, "INSTANCE": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "guiltily": {"_count": 6, "at": {"_count": 2, "his": {"_count": 1}, "Harry": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}}, "Ccars": {"_count": 1, "Molly": {"_count": 1, "dear": {"_count": 1}}}, "Molly": {"_count": 75, "dear": {"_count": 4, "": {"_count": 1}, "No": {"_count": 1}, "said": {"_count": 2}}, "dont": {"_count": 2, "fuss": {"_count": 1}, "": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "whispered": {"_count": 1}, "said": {"_count": 1}}, "they": {"_count": 1, "say": {"_count": 1}}, "how": {"_count": 2, "many": {"_count": 1}, "about": {"_count": 1}}, "and": {"_count": 5, "he": {"_count": 1}, "I": {"_count": 1}, "they": {"_count": 1}, "Arthur": {"_count": 1}, "Harry": {"_count": 1}}, "wed": {"_count": 1, "better": {"_count": 1}}, "": {"_count": 15, "!": {"_count": 3}, ".": {"_count": 7}, "?": {"_count": 5}}, "Weasley": {"_count": 2, "P": {"_count": 1}, "": {"_count": 1}}, "mumbled": {"_count": 1, "Mr": {"_count": 1}}, "wouldnt": {"_count": 1, "like": {"_count": 1}}, "were": {"_count": 1, "all": {"_count": 1}}, "Im": {"_count": 2, "going": {"_count": 1}, "pretty": {"_count": 1}}, "said": {"_count": 11, "Mr": {"_count": 1}, "Lupin": {"_count": 2}, "Mundungus": {"_count": 1}, "Sirius": {"_count": 4}, "Hagrid": {"_count": 1}, "Scrimgeour": {"_count": 1}, "Tonks": {"_count": 1}}, "it": {"_count": 3, "said": {"_count": 1}, "was": {"_count": 1}, "doesnt": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "doesnt": {"_count": 1, "approve": {"_count": 1}}, "thinks": {"_count": 1, "inviting": {"_count": 1}}, "but": {"_count": 2, "the": {"_count": 1}, "Augustus": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "thats": {"_count": 1, "enough": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "know": {"_count": 1, "now": {"_count": 1}}, "Tonks": {"_count": 1, "said": {"_count": 1}}, "had": {"_count": 1, "to": {"_count": 1}}, "would": {"_count": 1, "approve": {"_count": 1}}, "all": {"_count": 1, "their": {"_count": 1}}, "any": {"_count": 1, "longer": {"_count": 1}}, "your": {"_count": 1, "servant": {"_count": 1}}, "Arthur": {"_count": 2, "The": {"_count": 1}, "said": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Weasleys": {"_count": 1, "wand": {"_count": 1}}}, "Imagine": {"_count": 16, "a": {"_count": 1, "wizard": {"_count": 1}}, "how": {"_count": 2, "angry": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 1, "effect": {"_count": 1}}, "that": {"_count": 3, "said": {"_count": 1}, "lot": {"_count": 1}, "Voldemorts": {"_count": 1}}, "if": {"_count": 3, "your": {"_count": 1}, "Moody": {"_count": 1}, "something": {"_count": 1}}, "them": {"_count": 1, "not": {"_count": 1}}, "what": {"_count": 1, "Id": {"_count": 1}}, "having": {"_count": 1, "to": {"_count": 1}}, "wasting": {"_count": 1, "your": {"_count": 1}}, "please": {"_count": 1, "just": {"_count": 1}}, "losing": {"_count": 1, "fingernails": {"_count": 1}}}, "um": {"_count": 11, "tell": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "asked": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "they": {"_count": 1, "mention": {"_count": 1}}, "did": {"_count": 1, "Slughorn": {"_count": 1}}, "skull": {"_count": 1, "": {"_count": 1}}, "personal": {"_count": 1, "items": {"_count": 1}}, "taken": {"_count": 1, "out": {"_count": 1}}}, "loophole": {"_count": 4, "in": {"_count": 2, "the": {"_count": 2}}, "when": {"_count": 1, "you": {"_count": 1}}, "some": {"_count": 1, "way": {"_count": 1}}}, "intending": {"_count": 13, "to": {"_count": 13, "fly": {"_count": 2}, "head": {"_count": 1}, "talk": {"_count": 1}, "make": {"_count": 2}, "attempt": {"_count": 1}, "place": {"_count": 1}, "hurry": {"_count": 1}, "fill": {"_count": 1}, "visit": {"_count": 1}, "keep": {"_count": 1}, "let": {"_count": 1}}}, "tinkering": {"_count": 2, "with": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "lord": {"_count": 9, "is": {"_count": 1, "it": {"_count": 1}}, "voldemort": {"_count": 1, "You": {"_count": 1}}, "Arthur": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 2, "dont": {"_count": 1}, "thought": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "its": {"_count": 1, "clear": {"_count": 1}}, "youre": {"_count": 1, "right": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}}, "nighti": {"_count": 1, "shouted": {"_count": 1, "Mrs": {"_count": 1}}}, "bullfrog": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "had": {"_count": 1}}, "so": {"_count": 2, "tightly": {"_count": 1}, "hard": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "swelled": {"_count": 1, "like": {"_count": 1}}}, "uneven": {"_count": 8, "staircase": {"_count": 1, "which": {"_count": 1}}, "floor": {"_count": 1, "holding": {"_count": 1}}, "yellowish": {"_count": 1, "teeth": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "steps": {"_count": 1, "behind": {"_count": 1}}, "motheaten": {"_count": 1, "carpet": {"_count": 1}}, "ground": {"_count": 1, "": {"_count": 1}}}, "weird": {"_count": 41, "it": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "said": {"_count": 5, "Harry": {"_count": 4}, "Ron": {"_count": 1}}, "misty": {"_count": 1, "light": {"_count": 1}}, "music": {"_count": 1, "to": {"_count": 1}}, "crab": {"_count": 1, "": {"_count": 1}}, "night": {"_count": 1, "Hedwig": {"_count": 1}}, "noise": {"_count": 1, "he": {"_count": 1}}, "spiky": {"_count": 1, "shapes": {"_count": 1}}, "The": {"_count": 1, "Whomping": {"_count": 1}}, "thing": {"_count": 2, "happened": {"_count": 1}, "where": {"_count": 1}}, "knobs": {"_count": 1, "and": {"_count": 1}}, "isnt": {"_count": 2, "it": {"_count": 2}}, "magnet": {"_count": 1, "for": {"_count": 1}}, "lurch": {"_count": 1, "as": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "connection": {"_count": 1, "between": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "liquid": {"_count": 1, "glow": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "RON": {"_count": 1, "NO": {"_count": 1}}, "hissing": {"_count": 1, "noise": {"_count": 1}}, "that": {"_count": 1, "way": {"_count": 1}}, "mist": {"_count": 1, "had": {"_count": 1}}, "symbol": {"_count": 1, "and": {"_count": 1}}, "being": {"_count": 1, "this": {"_count": 1}}, "take": {"_count": 1, "on": {"_count": 1}}, "obsessive": {"_count": 1, "longing": {"_count": 1}}, "hanging": {"_count": 1, "round": {"_count": 1}}, "rushing": {"_count": 1, "noise": {"_count": 1}}, "keening": {"_count": 1, "scream": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}}, "shy": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "lets": {"_count": 1, "hear": {"_count": 1}}, "and": {"_count": 1, "highly": {"_count": 1}}}, "shuts": {"_count": 1, "up": {"_count": 1, "normally": {"_count": 1}}}, "flights": {"_count": 5, "until": {"_count": 1, "they": {"_count": 1}}, "of": {"_count": 4, "stone": {"_count": 1}, "stairs": {"_count": 2}, "steps": {"_count": 1}}}, "plaque": {"_count": 7, "on": {"_count": 2, "it": {"_count": 2}}, "just": {"_count": 1, "like": {"_count": 1}}, "reading": {"_count": 1, "MISUSE": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "it": {"_count": 1}}, "read": {"_count": 1, "HEAD": {"_count": 1}}}, "RONALDS": {"_count": 1, "ROOM": {"_count": 1, "": {"_count": 1}}}, "ROOM": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "wracked": {"_count": 1}}}, "furnace": {"_count": 2, "Nearly": {"_count": 1, "everything": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wallpaper": {"_count": 3, "with": {"_count": 1, "posters": {"_count": 1}}, "and": {"_count": 1, "threadbare": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "energetically": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 2, "front": {"_count": 2}}}, "Chudley": {"_count": 10, "Cannons": {"_count": 7, "said": {"_count": 1}, "were": {"_count": 1}, "zooming": {"_count": 1}, "bedspread": {"_count": 1}, "for": {"_count": 1}, "posters": {"_count": 1}, "will": {"_count": 1}}, "Cannon": {"_count": 3, "robes": {"_count": 1}, "hat": {"_count": 2}}}, "Cannons": {"_count": 11, "said": {"_count": 1, "Ron": {"_count": 1}}, "a": {"_count": 1, "book": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "were": {"_count": 1, "whirling": {"_count": 1}}, "zooming": {"_count": 1, "in": {"_count": 1}}, "bedspread": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "belt": {"_count": 1, "a": {"_count": 1}}, "posters": {"_count": 1, "bright": {"_count": 1}}, "will": {"_count": 1, "finish": {"_count": 1}}}, "emblazoned": {"_count": 11, "with": {"_count": 8, "two": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 3}, "flashing": {"_count": 1}}, "on": {"_count": 2, "their": {"_count": 1}, "scarlet": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}}, "Cs": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "Ninth": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "untidily": {"_count": 3, "in": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "comics": {"_count": 1, "that": {"_count": 1, "all": {"_count": 1}}}, "feature": {"_count": 7, "The": {"_count": 1, "Adventures": {"_count": 1}}, "these": {"_count": 1, "er": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 3}}, "\u2018Pals": {"_count": 1, "of": {"_count": 1}}, "distorted": {"_count": 1, "by": {"_count": 1}}}, "Adventures": {"_count": 1, "of": {"_count": 1, "Martin": {"_count": 1}}}, "Martin": {"_count": 1, "Miggs": {"_count": 1, "the": {"_count": 1}}}, "Miggs": {"_count": 1, "the": {"_count": 1, "Mad": {"_count": 1}}}, "fish": {"_count": 14, "tank": {"_count": 2, "full": {"_count": 1}, "on": {"_count": 1}}, "lingered": {"_count": 1, "about": {"_count": 1}}, "were": {"_count": 1, "laid": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "flickered": {"_count": 1, "past": {"_count": 1}}, "tails": {"_count": 1, "beating": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "bone": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "against": {"_count": 1, "flesh": {"_count": 1}}}, "Self": {"_count": 3, "Shuffling": {"_count": 1, "playing": {"_count": 1}}, "Correcting": {"_count": 1, "Ink": {"_count": 1}}, "Inking": {"_count": 1, "SpellChecking": {"_count": 1}}}, "Shuffling": {"_count": 1, "playing": {"_count": 1, "cards": {"_count": 1}}}, "pipes": {"_count": 8, "and": {"_count": 2, "groaning": {"_count": 1}, "things": {"_count": 1}}, "whenever": {"_count": 1, "he": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "branching": {"_count": 1, "off": {"_count": 1}}, "how": {"_count": 1, "he": {"_count": 1}}, "gurgled": {"_count": 1, "": {"_count": 1}}, "Kreacher": {"_count": 1, "had": {"_count": 1}}}, "groaning": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "under": {"_count": 2, "dishes": {"_count": 1}, "joints": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "clanking": {"_count": 1}}, "goblin": {"_count": 1, "who": {"_count": 1}}}, "FLOURISH": {"_count": 1, "AND": {"_count": 1, "BLOTTS": {"_count": 1}}}, "BLOTTS": {"_count": 1, "Life": {"_count": 1, "at": {"_count": 1}}}, "Burrow": {"_count": 60, "was": {"_count": 3, "as": {"_count": 1}, "truly": {"_count": 1}, "not": {"_count": 1}}, "": {"_count": 26, ".": {"_count": 19}, "!": {"_count": 6}, "?": {"_count": 1}}, "using": {"_count": 1, "Floo": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 1}, "replaced": {"_count": 1}, "broken": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "explained": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "by": {"_count": 2, "himself": {"_count": 1}, "both": {"_count": 1}}, "no": {"_count": 1, "said": {"_count": 1}}, "where": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 2, "await": {"_count": 1}, "find": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "three": {"_count": 1, "handsome": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "early": {"_count": 1, "the": {"_count": 1}}, "garden": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "find": {"_count": 1}, "into": {"_count": 1}}, "but": {"_count": 1, "now": {"_count": 1}}, "left": {"_count": 1, "to": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "Ive": {"_count": 1, "had": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "from": {"_count": 1, "top": {"_count": 1}}, "their": {"_count": 1, "hands": {"_count": 1}}, "now": {"_count": 1, "invisible": {"_count": 1}}}, "Tuck": {"_count": 3, "your": {"_count": 1, "shirt": {"_count": 1}}, "in": {"_count": 2, "": {"_count": 2}}}, "shirt": {"_count": 9, "in": {"_count": 1, "scruff": {"_count": 1}}, "and": {"_count": 1, "Percy": {"_count": 1}}, "front": {"_count": 1, "straining": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "like": {"_count": 1, "a": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}}, "yV": {"_count": 1, "The": {"_count": 1, "ghoul": {"_count": 1}}}, "explosions": {"_count": 5, "from": {"_count": 1, "Fred": {"_count": 1}}, "drove": {"_count": 1, "both": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "derailments": {"_count": 1}}}, "considered": {"_count": 57, "perfectly": {"_count": 1, "normal": {"_count": 1}}, "putting": {"_count": 1, "him": {"_count": 1}}, "him": {"_count": 5, "the": {"_count": 1}, "intently": {"_count": 1}, "for": {"_count": 2}, "united": {"_count": 1}}, "Harry": {"_count": 1, "for": {"_count": 1}}, "anyone": {"_count": 1, "of": {"_count": 1}}, "sending": {"_count": 1, "me": {"_count": 1}}, "entering": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "going": {"_count": 1, "after": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 1}, "a": {"_count": 3}}, "a": {"_count": 4, "Dark": {"_count": 1}, "lot": {"_count": 1}, "great": {"_count": 1}, "turning": {"_count": 1}}, "running": {"_count": 1, "for": {"_count": 1}}, "after": {"_count": 1, "Hogwarts": {"_count": 1}}, "telling": {"_count": 1, "Ron": {"_count": 1}}, "the": {"_count": 5, "education": {"_count": 1}, "possibility": {"_count": 1}, "closure": {"_count": 1}, "ways": {"_count": 1}, "address": {"_count": 1}}, "an": {"_count": 2, "unnecessarily": {"_count": 1}, "impertinent": {"_count": 1}}, "her": {"_count": 2, "subject": {"_count": 1}, "a": {"_count": 1}}, "accidentallyonpurpose": {"_count": 1, "showing": {"_count": 1}}, "this": {"_count": 5, "": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}, "possibility": {"_count": 1}, "a": {"_count": 1}}, "responsible": {"_count": 1, "for": {"_count": 1}}, "something": {"_count": 1, "of": {"_count": 1}}, "pure": {"_count": 1, "pigheadedness": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "Smith": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "relationship": {"_count": 1}}, "Voldemort": {"_count": 1, "over": {"_count": 1}}, "certain": {"_count": 1, "proof": {"_count": 1}}, "asking": {"_count": 1, "for": {"_count": 1}}, "that": {"_count": 1, "Snape": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "many": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "interesting": {"_count": 1, "to": {"_count": 1}}, "suggesting": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}}, "clanking": {"_count": 18, "ghoul": {"_count": 1, "It": {"_count": 1}}, "loudly": {"_count": 1, "into": {"_count": 1}}, "string": {"_count": 1, "shopping": {"_count": 1}}, "noise": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 3, "they": {"_count": 1}, "tinkling": {"_count": 1}, "moving": {"_count": 1}}, "up": {"_count": 1, "on": {"_count": 1}}, "crash": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "hurried": {"_count": 1}}, "growing": {"_count": 1, "louder": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "goblins": {"_count": 1, "Harry": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "suits": {"_count": 1, "of": {"_count": 1}}, "along": {"_count": 1, "in": {"_count": 1}}}, "fussed": {"_count": 5, "over": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 2, "N": {"_count": 1}, "him": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "really": {"_count": 1, "I": {"_count": 1}}}, "helpings": {"_count": 7, "at": {"_count": 1, "every": {"_count": 1}}, "of": {"_count": 5, "Christmas": {"_count": 1}, "trifle": {"_count": 1}, "everything": {"_count": 2}, "rhubarb": {"_count": 1}}, "from": {"_count": 1, "Fudge": {"_count": 1}}}, "bombard": {"_count": 1, "him": {"_count": 1, "with": {"_count": 1}}}, "plugs": {"_count": 6, "and": {"_count": 2, "the": {"_count": 1}, "toasters": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "added": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}}, "postal": {"_count": 2, "service": {"_count": 2, "worked": {"_count": 1}, "who": {"_count": 1}}}, "Fascinating": {"_count": 4, "": {"_count": 1, "!": {"_count": 1}}, "creatures": {"_count": 1, "phoenixes": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "though": {"_count": 1, "your": {"_count": 1}}}, "Ingenious": {"_count": 3, "really": {"_count": 1, "how": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 2}}}, "clatter": {"_count": 25, "": {"_count": 4, ".": {"_count": 4}}, "behind": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 8, "claws": {"_count": 1}, "knives": {"_count": 1}, "a": {"_count": 2}, "footsteps": {"_count": 2}, "cutlery": {"_count": 1}, "hooves": {"_count": 1}}, "and": {"_count": 3, "there": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}}, "He": {"_count": 1, "fought": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "top": {"_count": 1}}, "from": {"_count": 1, "overhead": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "floor": {"_count": 1}}, "it": {"_count": 1, "came": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "prone": {"_count": 5, "to": {"_count": 3, "knocking": {"_count": 1}, "what": {"_count": 1}, "it": {"_count": 1}}, "figure": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}}, "retrieve": {"_count": 25, "the": {"_count": 13, "bowl": {"_count": 1}, "gold": {"_count": 1}, "egg": {"_count": 1}, "silverframed": {"_count": 1}, "prophecy": {"_count": 2}, "book": {"_count": 1}, "contents": {"_count": 1}, "pod": {"_count": 1}, "memory": {"_count": 2}, "sword": {"_count": 2}}, "his": {"_count": 3, "Invisibility": {"_count": 1}, "toad": {"_count": 1}, "book": {"_count": 1}}, "your": {"_count": 1, "own": {"_count": 1}}, "her": {"_count": 1, "hostage": {"_count": 1}}, "their": {"_count": 1, "books": {"_count": 1}}, "a": {"_count": 2, "slipper": {"_count": 1}, "prophecy": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 1}, "but": {"_count": 1}, "Malfoy": {"_count": 1}}, "Professor": {"_count": 1, "Slughorns": {"_count": 1}}}, "Pretending": {"_count": 4, "he": {"_count": 2, "hadnt": {"_count": 1}, "was": {"_count": 1}}, "they": {"_count": 1, "wanted": {"_count": 1}}, "to": {"_count": 1, "offer": {"_count": 1}}}, "Letters": {"_count": 2, "from": {"_count": 1, "school": {"_count": 1}}, "addressed": {"_count": 1, "to": {"_count": 1}}}, "twove": {"_count": 1, "got": {"_count": 1, "them": {"_count": 1}}}, "ambled": {"_count": 4, "in": {"_count": 1, "still": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}}, "SECONDYEAR": {"_count": 1, "STUDENTS": {"_count": 1, "WILL": {"_count": 1}}}, "REQUIRE": {"_count": 1, "The": {"_count": 1, "Standard": {"_count": 1}}}, "Banshee": {"_count": 4, "by": {"_count": 2, "Gilderoy": {"_count": 1}, "smiling": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Gadding": {"_count": 4, "with": {"_count": 4, "Ghouls": {"_count": 3}, "GhoulsV": {"_count": 1}}}, "Ghouls": {"_count": 4, "by": {"_count": 1, "Gilderoy": {"_count": 1}}, "about": {"_count": 1, "slowacting": {"_count": 1}}, "You": {"_count": 1, "read": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}}, "Holidays": {"_count": 2, "with": {"_count": 2, "Hags": {"_count": 2}}}, "Travels": {"_count": 4, "with": {"_count": 4, "Trolls": {"_count": 4}}}, "Trolls": {"_count": 4, "by": {"_count": 1, "Gilderoy": {"_count": 1}}, "and": {"_count": 1, "held": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}}, "Voyages": {"_count": 5, "with": {"_count": 5, "Vampires": {"_count": 5}}}, "Wanderings": {"_count": 2, "with": {"_count": 2, "Werewolves": {"_count": 2}}}, "Werewolves": {"_count": 4, "by": {"_count": 1, "Gilderoy": {"_count": 1}}, "more": {"_count": 1, "carefully": {"_count": 1}}, "Dementors": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}}, "Year": {"_count": 4, "with": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "Gryffindor": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}}, "Yeti": {"_count": 2, "by": {"_count": 1, "Gilderoy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "busied": {"_count": 4, "himself": {"_count": 3, "with": {"_count": 3}}, "myself": {"_count": 1, "with": {"_count": 1}}}, "expensive": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "presents": {"_count": 1, "while": {"_count": 1}}, "as": {"_count": 1, "that": {"_count": 1}}, "their": {"_count": 1, "cars": {"_count": 1}}, "racing": {"_count": 1, "bikes": {"_count": 1}}, "beating": {"_count": 1, "the": {"_count": 1}}}, "Ginnys": {"_count": 58, "things": {"_count": 1, "secondhand": {"_count": 1}}, "cauldron": {"_count": 2, "and": {"_count": 1}, "went": {"_count": 1}}, "old": {"_count": 1, "Transfiguration": {"_count": 1}}, "trunk": {"_count": 1, "to": {"_count": 1}}, "hand": {"_count": 2, "and": {"_count": 2}}, "shoulders": {"_count": 1, "and": {"_count": 1}}, "head": {"_count": 3, "lolled": {"_count": 1}, "again": {"_count": 1}, "to": {"_count": 1}}, "dead": {"_count": 1, "weight": {"_count": 1}}, "been": {"_count": 2, "writing": {"_count": 1}, "nice": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "other": {"_count": 1, "hand": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 1}, "whiten": {"_count": 1}}, "got": {"_count": 3, "other": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "new": {"_count": 2, "dress": {"_count": 1}, "purple": {"_count": 1}}, "asleep": {"_count": 1, "she": {"_count": 1}}, "not": {"_count": 2, "lying": {"_count": 1}, "bad": {"_count": 1}}, "older": {"_count": 1, "sister": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "performance": {"_count": 1, "but": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "equally": {"_count": 1, "vivid": {"_count": 1}}, "struggles": {"_count": 1, "": {"_count": 1}}, "cheek": {"_count": 1, "a": {"_count": 1}}, "arm": {"_count": 1, "Ron": {"_count": 1}}, "foot": {"_count": 1, "I": {"_count": 1}}, "waist": {"_count": 1, "and": {"_count": 1}}, "pleasure": {"_count": 1, "passed": {"_count": 1}}, "air": {"_count": 1, "Ah": {"_count": 1}}, "Christmas": {"_count": 1, "muttered": {"_count": 1}}, "obsessive": {"_count": 1, "discussion": {"_count": 1}}, "eyes": {"_count": 1, "on": {"_count": 1}}, "time": {"_count": 1, "together": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "luck": {"_count": 1, "run": {"_count": 1}}, "examinations": {"_count": 1, "finished": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}, "probably": {"_count": 1, "left": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "eye": {"_count": 1, "and": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 1, "in": {"_count": 1}}, "greataunt": {"_count": 1, "": {"_count": 1}}, "dot": {"_count": 1, "for": {"_count": 1}}, "on": {"_count": 1, "holiday": {"_count": 1}}, "chair": {"_count": 1, "": {"_count": 1}}, "hair": {"_count": 1, "flew": {"_count": 1}}, "voices": {"_count": 1, "were": {"_count": 1}}}, "secondhand": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "robe": {"_count": 1, "shop": {"_count": 1}}, "robes": {"_count": 2, "and": {"_count": 1}, "who": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "there": {"_count": 1}}, "spellbooks": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "Where": {"_count": 1}}}, "blushing": {"_count": 15, "to": {"_count": 2, "the": {"_count": 1}, "pick": {"_count": 1}}, "furiously": {"_count": 3, "": {"_count": 2}, "turned": {"_count": 1}}, "silver": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "before": {"_count": 1, "it": {"_count": 1}}, "because": {"_count": 1, "Im": {"_count": 1}}, "scarlet": {"_count": 1, "now": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "crimson": {"_count": 1, "and": {"_count": 1}}, "slightly": {"_count": 1, "and": {"_count": 1}}}, "vest": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Lovely": {"_count": 10, "day": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "said": {"_count": 3, "Rita": {"_count": 3}}, "": {"_count": 1, ".": {"_count": 1}}, "evening": {"_count": 1, "": {"_count": 1}}, "madam": {"_count": 1, "squeaked": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}}, "remaining": {"_count": 48, "chair": {"_count": 1, "but": {"_count": 1}}, "pixies": {"_count": 1, "bit": {"_count": 1}}, "strength": {"_count": 1, "and": {"_count": 1}}, "hand": {"_count": 2, "off": {"_count": 1}, "": {"_count": 1}}, "descendant": {"_count": 1, "of": {"_count": 1}}, "owls": {"_count": 1, "": {"_count": 1}}, "Weasleys": {"_count": 1, "and": {"_count": 1}}, "students": {"_count": 2, "each": {"_count": 1}, "from": {"_count": 1}}, "limbs": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "his": {"_count": 1}}, "Cauldron": {"_count": 1, "Cakes": {"_count": 1}}, "with": {"_count": 2, "us": {"_count": 1}, "Harry": {"_count": 1}}, "empty": {"_count": 1, "seats": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "books": {"_count": 1, "and": {"_count": 1}}, "member": {"_count": 2, "of": {"_count": 2}}, "breath": {"_count": 1, "on": {"_count": 1}}, "memos": {"_count": 1, "continued": {"_count": 1}}, "stairs": {"_count": 1, "two": {"_count": 1}}, "thirtyfive": {"_count": 1, "minutes": {"_count": 1}}, "option": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 3, "Siriuss": {"_count": 1}, "Grimmauld": {"_count": 1}, "the": {"_count": 1}}, "table": {"_count": 1, "which": {"_count": 1}}, "few": {"_count": 1, "feet": {"_count": 1}}, "helper": {"_count": 1, "seemed": {"_count": 1}}, "Death": {"_count": 5, "Eaters": {"_count": 3}, "Eater": {"_count": 2}}, "relative": {"_count": 1, "": {"_count": 1}}, "armchair": {"_count": 1, "choosing": {"_count": 1}}, "space": {"_count": 1, "in": {"_count": 1}}, "safely": {"_count": 1, "hidden": {"_count": 1}}, "possessions": {"_count": 1, "and": {"_count": 1}}, "stationary": {"_count": 1, "in": {"_count": 1}}, "two": {"_count": 1, "assuming": {"_count": 1}}, "hidden": {"_count": 1, "at": {"_count": 1}}, "teachers": {"_count": 1, "including": {"_count": 1}}, "links": {"_count": 1, "to": {"_count": 1}}, "lifeblood": {"_count": 1, "were": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}}, "molting": {"_count": 1, "gray": {"_count": 1, "feather": {"_count": 1}}}, "extracting": {"_count": 7, "a": {"_count": 2, "letter": {"_count": 1}, "small": {"_count": 1}}, "thoughts": {"_count": 1, "every": {"_count": 1}}, "his": {"_count": 1, "arm": {"_count": 1}}, "Hermione": {"_count": 1, "from": {"_count": 1}}, "her": {"_count": 1, "copy": {"_count": 1}}, "the": {"_count": 1, "wand": {"_count": 1}}}, "rescue": {"_count": 16, "you": {"_count": 3, "from": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "Sirius": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 1, "Muggles": {"_count": 1}}, "Ron": {"_count": 1, "from": {"_count": 1}}, "me": {"_count": 1, "as": {"_count": 1}}, "was": {"_count": 1, "Sirius": {"_count": 1}}, "her": {"_count": 2, "from": {"_count": 1}, "but": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}}, "perch": {"_count": 16, "just": {"_count": 1, "inside": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "showing": {"_count": 1, "him": {"_count": 1}}, "beside": {"_count": 4, "the": {"_count": 4}}, "flown": {"_count": 1, "across": {"_count": 1}}, "with": {"_count": 1, "its": {"_count": 1}}, "on": {"_count": 2, "top": {"_count": 2}}, "and": {"_count": 1, "there": {"_count": 1}}, "stood": {"_count": 1, "empty": {"_count": 1}}}, "draining": {"_count": 14, "board": {"_count": 2, "instead": {"_count": 1}, "glaring": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "than": {"_count": 1, "six": {"_count": 1}}, "Harry": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 1, "of": {"_count": 1}}, "power": {"_count": 1, "starting": {"_count": 1}}, "the": {"_count": 2, "last": {"_count": 1}, "goblet": {"_count": 1}}, "potion": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "goblet": {"_count": 1}}, "from": {"_count": 1, "Aberforth": {"_count": 1}}}, "Pathetic": {"_count": 4, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "Weasley": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}}, "\u2018Dear": {"_count": 2, "Ron": {"_count": 1, "and": {"_count": 1}}, "Batty": {"_count": 1, "Thanks": {"_count": 1}}}, "\u2018I": {"_count": 15, "hope": {"_count": 2, "everything": {"_count": 1}, "he": {"_count": 1}}, "wont": {"_count": 1, "need": {"_count": 1}}, "fear": {"_count": 1, "the": {"_count": 1}}, "read": {"_count": 1, "in": {"_count": 1}}, "know": {"_count": 1, "things": {"_count": 1}}, "feel": {"_count": 1, "much": {"_count": 1}}, "think": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "rather": {"_count": 1}}, "can": {"_count": 1, "make": {"_count": 1}}, "told": {"_count": 1, "you": {"_count": 1}}, "love": {"_count": 1, "you": {"_count": 1}}, "leave": {"_count": 1, "the": {"_count": 1}}, "open": {"_count": 1, "at": {"_count": 1}}, "dont": {"_count": 1, "want": {"_count": 1}}}, "\u2018Im": {"_count": 2, "very": {"_count": 1, "busy": {"_count": 1}}, "a": {"_count": 1, "witch": {"_count": 1}}}, "schoolwork": {"_count": 3, "of": {"_count": 1, "course": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018and": {"_count": 2, "were": {"_count": 1, "going": {"_count": 1}}, "now": {"_count": 1, "Voldemorts": {"_count": 1}}}, "\u2018Let": {"_count": 1, "me": {"_count": 1, "know": {"_count": 1}}}, "fits": {"_count": 11, "in": {"_count": 1, "nicely": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}, "of": {"_count": 5, "hysterical": {"_count": 1}, "laughter": {"_count": 2}, "the": {"_count": 1}, "its": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "No": {"_count": 1, "it": {"_count": 1}}}, "nicely": {"_count": 7, "we": {"_count": 1, "can": {"_count": 1}}, "dizzy": {"_count": 1, "but": {"_count": 1}}, "either": {"_count": 1, "by": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "said": {"_count": 1, "Auntie": {"_count": 1}}}, "planning": {"_count": 57, "to": {"_count": 28, "go": {"_count": 3}, "visit": {"_count": 1}, "attack": {"_count": 1}, "eat": {"_count": 1}, "allow": {"_count": 1}, "sell": {"_count": 1}, "recruit": {"_count": 1}, "cover": {"_count": 1}, "do": {"_count": 5}, "pay": {"_count": 1}, "get": {"_count": 1}, "rejoin": {"_count": 1}, "tell": {"_count": 1}, "spend": {"_count": 1}, "give": {"_count": 1}, "make": {"_count": 1}, "ambush": {"_count": 1}, "drop": {"_count": 1}, "follow": {"_count": 1}, "break": {"_count": 1}, "kill": {"_count": 1}, "lead": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "deaths": {"_count": 1}, "storming": {"_count": 1}}, "more": {"_count": 2, "murders": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "an": {"_count": 1, "amusing": {"_count": 1}}, "lessons": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "something": {"_count": 3, "to": {"_count": 1}, "you": {"_count": 1}, "with": {"_count": 1}}, "some": {"_count": 1, "foolhardy": {"_count": 1}}, "this": {"_count": 2, "for": {"_count": 1}, "moment": {"_count": 1}}, "on": {"_count": 4, "asking": {"_count": 1}, "saying": {"_count": 1}, "doing": {"_count": 1}, "taking": {"_count": 1}}, "a": {"_count": 1, "dusktilldawn": {"_count": 1}}, "or": {"_count": 1, "even": {"_count": 1}}, "it": {"_count": 1, "without": {"_count": 1}}, "shell": {"_count": 1, "be": {"_count": 1}}, "for": {"_count": 2, "Hogwarts": {"_count": 1}, "years": {"_count": 1}}, "sessions": {"_count": 1, "": {"_count": 1}}}, "hill": {"_count": 18, "to": {"_count": 1, "a": {"_count": 1}}, "broomsticks": {"_count": 1, "over": {"_count": 1}}, "moments": {"_count": 1, "later": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "overlooking": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 1, "clutching": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "rose": {"_count": 1, "above": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "so": {"_count": 1, "kind": {"_count": 1}}, "all": {"_count": 1, "day": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}}, "paddock": {"_count": 16, "the": {"_count": 1, "Weasleys": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "behind": {"_count": 1, "the": {"_count": 1}}, "fence": {"_count": 2, "": {"_count": 1}, "watching": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "alongside": {"_count": 1, "it": {"_count": 1}}, "containing": {"_count": 1, "Madame": {"_count": 1}}, "was": {"_count": 1, "enough": {"_count": 1}}, "where": {"_count": 2, "the": {"_count": 2}}, "Krum": {"_count": 1, "stopped": {"_count": 1}}}, "flown": {"_count": 25, "away": {"_count": 1, "over": {"_count": 1}}, "that": {"_count": 1, "car": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "suggested": {"_count": 1}}, "it": {"_count": 1, "at": {"_count": 1}}, "off": {"_count": 2, "Harry": {"_count": 1}, "with": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "apart": {"_count": 1, "but": {"_count": 1}}, "his": {"_count": 1, "mind": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "up": {"_count": 1, "over": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "launched": {"_count": 1, "herself": {"_count": 1}}}, "apples": {"_count": 1, "for": {"_count": 1, "one": {"_count": 1}}}, "Star": {"_count": 3, "was": {"_count": 1, "often": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "against": {"_count": 1, "Ravenclaw": {"_count": 1}}}, "outstripped": {"_count": 3, "by": {"_count": 1, "passing": {"_count": 1}}, "it": {"_count": 1, "easily": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}}, "butterflies": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "bees": {"_count": 1}}}, "mealtimes": {"_count": 6, "so": {"_count": 1, "far": {"_count": 1}}, "or": {"_count": 1, "when": {"_count": 1}}, "they": {"_count": 1, "didnt": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "W": {"_count": 128, "": {"_count": 124, ".": {"_count": 124}}, "what": {"_count": 2, "": {"_count": 2}}, "which": {"_count": 1, "lesson": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "L": {"_count": 78, "": {"_count": 77, ".": {"_count": 77}}, "said": {"_count": 1, "Snape": {"_count": 1}}}, "gloated": {"_count": 2, "at": {"_count": 1, "all": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}}, "Ordinary": {"_count": 7, "Wizarding": {"_count": 7, "Levels": {"_count": 4}, "Level": {"_count": 3}}}, "Levels": {"_count": 4, "George": {"_count": 1, "explained": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "examinations": {"_count": 1}}, "are": {"_count": 1, "drawing": {"_count": 1}}}, "puzzled": {"_count": 32, "look": {"_count": 1, "": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "expression": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "or": {"_count": 1, "even": {"_count": 1}}, "others": {"_count": 1, "downright": {"_count": 1}}, "but": {"_count": 2, "jerking": {"_count": 1}, "nearly": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 2, "for": {"_count": 1}, "followed": {"_count": 1}}, "almost": {"_count": 1, "suspicious": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "Sirius": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 2, "laughed": {"_count": 1}, "said": {"_count": 1}}, "as": {"_count": 4, "though": {"_count": 1}, "Parvati": {"_count": 1}, "he": {"_count": 2}}, "then": {"_count": 1, "beamed": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}}, "Egypt": {"_count": 11, "working": {"_count": 1, "for": {"_count": 1}}, "with": {"_count": 1, "Mr": {"_count": 1}}, "where": {"_count": 1, "our": {"_count": 1}}, "returning": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "agreed": {"_count": 1, "with": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "our": {"_count": 1, "referee": {"_count": 1}}}, "Stored": {"_count": 1, "in": {"_count": 1, "an": {"_count": 1}}}, "connected": {"_count": 32, "with": {"_count": 8, "magic": {"_count": 1}, "Salazar": {"_count": 1}, "the": {"_count": 2}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}, "YouKnowWhos": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "however": {"_count": 1, "distantly": {"_count": 1}}, "to": {"_count": 7, "the": {"_count": 3}, "heavy": {"_count": 1}, "Kingsleys": {"_count": 1}, "somebody": {"_count": 1}, "that": {"_count": 1}}, "strictly": {"_count": 1, "speaking": {"_count": 1}}, "by": {"_count": 4, "the": {"_count": 2}, "that": {"_count": 1}, "a": {"_count": 1}}, "the": {"_count": 1, "two": {"_count": 1}}, "a": {"_count": 1, "thousand": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "wands": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 1, "and": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "head": {"_count": 1, "toward": {"_count": 1}}, "these": {"_count": 1, "unsatisfying": {"_count": 1}}, "halves": {"_count": 1, "into": {"_count": 1}}}, "flowerpot": {"_count": 4, "off": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "stepped": {"_count": 1, "up": {"_count": 1}}}, "guests": {"_count": 20, "first": {"_count": 1, "": {"_count": 1}}, "funny": {"_count": 1, "little": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Snape": {"_count": 1}, "Hermione": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "so": {"_count": 1, "I": {"_count": 1}}, "were": {"_count": 2, "sitting": {"_count": 1}, "able": {"_count": 1}}, "are": {"_count": 1, "Death": {"_count": 1}}, "arent": {"_count": 1, "going": {"_count": 1}}, "had": {"_count": 1, "arrived": {"_count": 1}}, "Harry": {"_count": 1, "seized": {"_count": 1}}}, "Floo": {"_count": 30, "powder": {"_count": 16, "said": {"_count": 2}, "too": {"_count": 1}, "and": {"_count": 3}, "Hagrid": {"_count": 1}, "": {"_count": 6}, "it": {"_count": 1}, "is": {"_count": 1}, "before": {"_count": 1}}, "powders": {"_count": 1, "a": {"_count": 1}}, "Network": {"_count": 12, "you": {"_count": 1}, "and": {"_count": 1}, "Authority": {"_count": 1}, "": {"_count": 1}, "office": {"_count": 1}, "Regulator": {"_count": 1}, "to": {"_count": 2}, "we": {"_count": 1}, "place": {"_count": 1}, "now": {"_count": 1}, "under": {"_count": 1}}, "Regulation": {"_count": 1, "Panel": {"_count": 1}}}, "powder": {"_count": 33, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 3}}, "too": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 5, "walked": {"_count": 1}, "the": {"_count": 2}, "dropped": {"_count": 1}, "threw": {"_count": 1}}, "Hagrid": {"_count": 1, "seized": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "from": {"_count": 1, "ajar": {"_count": 1}}, "inside": {"_count": 1, "and": {"_count": 1}}, "blue": {"_count": 1, "carriage": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "it": {"_count": 1, "might": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "on": {"_count": 1, "them": {"_count": 1}}, "before": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "turned": {"_count": 1}}, "over": {"_count": 1, "everything": {"_count": 1}}, "puff": {"_count": 2, "while": {"_count": 1}, "as": {"_count": 1}}}, "escapators": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "pinch": {"_count": 9, "of": {"_count": 4, "glittering": {"_count": 1}, "Floo": {"_count": 1}, "the": {"_count": 1}, "powder": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "go": {"_count": 1, "on": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "dipped": {"_count": 11, "his": {"_count": 6, "hand": {"_count": 1}, "quill": {"_count": 5}}, "a": {"_count": 1, "small": {"_count": 1}}, "her": {"_count": 2, "beak": {"_count": 1}, "quill": {"_count": 1}}, "its": {"_count": 1, "head": {"_count": 1}}, "in": {"_count": 1, "boot": {"_count": 1}}}, "fuss": {"_count": 12, "said": {"_count": 2, "Mr": {"_count": 1}, "Harry": {"_count": 1}}, "Petunia": {"_count": 1, "I": {"_count": 1}}, "about": {"_count": 5, "": {"_count": 1}, "Hogsmeade": {"_count": 1}, "too": {"_count": 1}, "Igor": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "I": {"_count": 1, "only": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "was": {"_count": 1, "about": {"_count": 1}}}, "reassured": {"_count": 9, "her": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Dursleys": {"_count": 1}}, "Harry": {"_count": 1, "followed": {"_count": 1}}, "but": {"_count": 3, "Hermione": {"_count": 1}, "Moody": {"_count": 1}, "frustrated": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}}, "elbows": {"_count": 9, "tucked": {"_count": 2, "in": {"_count": 1}, "tightly": {"_count": 1}}, "to": {"_count": 1, "talk": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "preparing": {"_count": 1, "to": {"_count": 1}}, "stepped": {"_count": 1, "right": {"_count": 1}}, "and": {"_count": 1, "lifted": {"_count": 1}}}, "soot": {"_count": 9, "Dont": {"_count": 1, "fidget": {"_count": 1}}, "he": {"_count": 1, "got": {"_count": 1}}, "and": {"_count": 1, "wearing": {"_count": 1}}, "off": {"_count": 1, "Harry": {"_count": 1}}, "Hagrid": {"_count": 1, "hadnt": {"_count": 1}}, "blackened": {"_count": 1, "Umbridge": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 1, "their": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}}, "fidget": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "scattered": {"_count": 27, "the": {"_count": 1, "powder": {"_count": 1}}, "applause": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "unenthusiastic": {"_count": 1}}, "with": {"_count": 3, "stars": {"_count": 2}, "silvery": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "memories": {"_count": 1, "of": {"_count": 1}}, "themselves": {"_count": 1, "since": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 3, "we": {"_count": 1}, "there": {"_count": 1}, "not": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "parchment": {"_count": 1, "": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "in": {"_count": 2, "earnest": {"_count": 1}, "and": {"_count": 1}}}, "ash": {"_count": 12, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 2, "the": {"_count": 2}}, "treated": {"_count": 1, "with": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "looking": {"_count": 1}, "when": {"_count": 1}, "choking": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "DDiagon": {"_count": 1, "Alley": {"_count": 1, "he": {"_count": 1}}}, "blurred": {"_count": 29, "stream": {"_count": 1, "of": {"_count": 1}}, "shapes": {"_count": 3, "around": {"_count": 1}, "were": {"_count": 1}, "of": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "sweat": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "fireplaces": {"_count": 1, "flashing": {"_count": 1}}, "shot": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 4, "shimmering": {"_count": 1}, "misted": {"_count": 1}, "Neville": {"_count": 1}, "burned": {"_count": 1}}, "crowd": {"_count": 1, "her": {"_count": 1}}, "outlines": {"_count": 2, "of": {"_count": 2}}, "shadows": {"_count": 1, "move": {"_count": 1}}, "people": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "outline": {"_count": 1, "towering": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "looking": {"_count": 1, "like": {"_count": 1}}, "to": {"_count": 1, "resemble": {"_count": 1}}, "glimpses": {"_count": 1, "of": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "shifting": {"_count": 1, "as": {"_count": 1}}}, "fireplaces": {"_count": 14, "and": {"_count": 2, "snatched": {"_count": 1}, "began": {"_count": 1}}, "arent": {"_count": 1, "supposed": {"_count": 1}}, "flashing": {"_count": 1, "past": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "set": {"_count": 2, "into": {"_count": 1}, "along": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "stretched": {"_count": 1}}, "along": {"_count": 1, "one": {"_count": 1}}, "there": {"_count": 1, "had": {"_count": 1}}, "below": {"_count": 1, "them": {"_count": 1}}, "froze": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "which": {"_count": 1}}}, "glimpses": {"_count": 6, "of": {"_count": 5, "the": {"_count": 1}, "it": {"_count": 1}, "flying": {"_count": 1}, "other": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 1, "snatches": {"_count": 1}}}, "churning": {"_count": 5, "inside": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 1, "got": {"_count": 1}}, "below": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "everywhere": {"_count": 1}}, "out": {"_count": 1, "Quibblers": {"_count": 1}}}, "Dizzy": {"_count": 1, "and": {"_count": 1, "bruised": {"_count": 1}}}, "bruised": {"_count": 10, "covered": {"_count": 1, "in": {"_count": 1}}, "they": {"_count": 1, "seized": {"_count": 1}}, "against": {"_count": 1, "Malfoys": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 2, "into": {"_count": 1}, "with": {"_count": 1}}, "foot": {"_count": 1, "gingerly": {"_count": 1}}, "and": {"_count": 2, "bloody": {"_count": 1}, "puffy": {"_count": 1}}}, "dimly": {"_count": 30, "lit": {"_count": 20, "wizards": {"_count": 1}, "passageway": {"_count": 1}, "chamber": {"_count": 1}, "room": {"_count": 5}, "underground": {"_count": 1}, "cave": {"_count": 1}, "he": {"_count": 2}, "and": {"_count": 3}, "by": {"_count": 1}, "clearing": {"_count": 1}, "as": {"_count": 1}, "corridor": {"_count": 1}, "but": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}, "aware": {"_count": 2, "of": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 3, "his": {"_count": 1}, "in": {"_count": 1}, "this": {"_count": 1}}, "Harry": {"_count": 1, "heard": {"_count": 1}}, "how": {"_count": 1, "strange": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}}, "withered": {"_count": 9, "hand": {"_count": 7, "on": {"_count": 3}, "does": {"_count": 1}, "he": {"_count": 1}, "moved": {"_count": 1}, "we": {"_count": 1}}, "stalks": {"_count": 1, "onto": {"_count": 1}}, "cheeks": {"_count": 1, "": {"_count": 1}}}, "bloodstained": {"_count": 10, "pack": {"_count": 1, "of": {"_count": 1}}, "silver": {"_count": 1, "sword": {"_count": 1}}, "bandaged": {"_count": 1, "mummy": {"_count": 1}}, "robes": {"_count": 1, "and": {"_count": 1}}, "bag": {"_count": 1, "of": {"_count": 1}}, "bowtruckle": {"_count": 1, "picture": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "gaunt": {"_count": 1}}, "exhausted": {"_count": 1, "but": {"_count": 1}}, "axe": {"_count": 1, "": {"_count": 1}}}, "Evillooking": {"_count": 1, "masks": {"_count": 1, "stared": {"_count": 1}}}, "masks": {"_count": 8, "stared": {"_count": 1, "down": {"_count": 1}}, "are": {"_count": 1, "they": {"_count": 1}}, "were": {"_count": 1, "levitating": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "together": {"_count": 1, "at": {"_count": 1}}, "fixed": {"_count": 1, "upon": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "assortment": {"_count": 11, "of": {"_count": 11, "human": {"_count": 1}, "wizards": {"_count": 1}, "garments": {"_count": 1}, "broken": {"_count": 1}, "objects": {"_count": 1}, "knobbly": {"_count": 1}, "mismatched": {"_count": 1}, "goods": {"_count": 1}, "clothes": {"_count": 1}, "grubbylooking": {"_count": 1}, "people": {"_count": 1}}}, "bones": {"_count": 37, "lay": {"_count": 1, "upon": {"_count": 1}}, "are": {"_count": 1, "no": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 1}, "his": {"_count": 2}, "your": {"_count": 1}, "one": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "regrow": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}, "back": {"_count": 1, "or": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "onto": {"_count": 1, "Hagrids": {"_count": 1}}, "of": {"_count": 3, "his": {"_count": 2}, "my": {"_count": 1}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "than": {"_count": 1, "her": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "he": {"_count": 1, "might": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "were": {"_count": 1, "on": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "craning": {"_count": 1, "his": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "vanishing": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "now": {"_count": 1, "surely": {"_count": 1}}}, "spiked": {"_count": 9, "instruments": {"_count": 1, "hung": {"_count": 1}}, "tail": {"_count": 2, "leaving": {"_count": 1}, "of": {"_count": 1}}, "Rons": {"_count": 1, "juice": {"_count": 1}}, "with": {"_count": 1, "love": {"_count": 1}}, "black": {"_count": 1, "railings": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "wings": {"_count": 1, "folded": {"_count": 1}}, "balls": {"_count": 1, "on": {"_count": 1}}}, "Nose": {"_count": 2, "still": {"_count": 1, "stinging": {"_count": 1}}, "out": {"_count": 1, "Ron": {"_count": 1}}}, "stinging": {"_count": 8, "where": {"_count": 1, "it": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "painfully": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "smarting": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}}, "hearth": {"_count": 11, "Harry": {"_count": 1, "made": {"_count": 1}}, "rug": {"_count": 4, "like": {"_count": 1}, "where": {"_count": 1}, "": {"_count": 2}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "and": {"_count": 2, "toyed": {"_count": 1}, "said": {"_count": 1}}, "snoring": {"_count": 1, "loudly": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cabinet": {"_count": 46, "to": {"_count": 1, "his": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 2, "extremely": {"_count": 1}, "traveling": {"_count": 1}}, "that": {"_count": 3, "appeared": {"_count": 1}, "Harry": {"_count": 1}, "stood": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "dipped": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "contents": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "took": {"_count": 1, "off": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "door": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "properly": {"_count": 1}}, "I": {"_count": 1, "where": {"_count": 1}}, "in": {"_count": 4, "front": {"_count": 1}, "which": {"_count": 1}, "the": {"_count": 2}}, "as": {"_count": 1, "she": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 3, "waving": {"_count": 1}, "fixing": {"_count": 1}, "sitting": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "fell": {"_count": 1, "to": {"_count": 1}}, "threw": {"_count": 1, "a": {"_count": 1}}, "room": {"_count": 1, "to": {"_count": 1}}, "You": {"_count": 1, "two": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 3, "he": {"_count": 2}, "it": {"_count": 1}}}, "peer": {"_count": 15, "through": {"_count": 4, "": {"_count": 1}, "the": {"_count": 2}, "a": {"_count": 1}}, "at": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 3, "Harrys": {"_count": 1}, "the": {"_count": 2}}, "out": {"_count": 1, "through": {"_count": 1}}, "nervously": {"_count": 1, "over": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "blearily": {"_count": 1, "at": {"_count": 1}}, "amongst": {"_count": 1, "them": {"_count": 1}}, "in": {"_count": 1, "": {"_count": 1}}}, "Seconds": {"_count": 18, "later": {"_count": 17, "a": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 2}, "they": {"_count": 2}, "Mrs": {"_count": 1}, "Mr": {"_count": 1}, "he": {"_count": 2}, "or": {"_count": 1}, "his": {"_count": 1}, "Harrys": {"_count": 2}, "Harry": {"_count": 1}, "there": {"_count": 1}, "out": {"_count": 1}}, "after": {"_count": 1, "they": {"_count": 1}}}, "Dracos": {"_count": 17, "father": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "shoulder": {"_count": 1, "sneering": {"_count": 1}}, "mother": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 2, "all": {"_count": 1}, "up": {"_count": 1}}, "favorite": {"_count": 1, "teacher": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "expression": {"_count": 1, "was": {"_count": 1}}, "shaking": {"_count": 1, "voice": {"_count": 1}}, "Narcissas": {"_count": 1, "and": {"_count": 1}}, "grip": {"_count": 1, "pointed": {"_count": 1}}, "wand": {"_count": 3, "at": {"_count": 1}, "beneath": {"_count": 1}, "Avada": {"_count": 1}}, "parents": {"_count": 1, "while": {"_count": 1}}, "very": {"_count": 1, "tightly": {"_count": 1}}}, "items": {"_count": 10, "on": {"_count": 1, "display": {"_count": 1}}, "at": {"_count": 1, "home": {"_count": 1}}, "I": {"_count": 1, "believe": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "bought": {"_count": 1, "at": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "sort": {"_count": 1}}, "he": {"_count": 1, "most": {"_count": 1}}}, "display": {"_count": 16, "and": {"_count": 1, "rang": {"_count": 1}}, "of": {"_count": 6, "shrunken": {"_count": 1}, "Filibuster": {"_count": 1}, "tangerine": {"_count": 1}, "gold": {"_count": 1}, "pheasantfeather": {"_count": 1}, "Cockroach": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "him": {"_count": 1, "like": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "Borgin": {"_count": 1}}}, "Touch": {"_count": 2, "nothing": {"_count": 1, "Draco": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sulky": {"_count": 12, "and": {"_count": 5, "badtempered": {"_count": 1}, "somehow": {"_count": 1}, "disappointed": {"_count": 1}, "resentful": {"_count": 1}, "annoyed": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "edge": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "little": {"_count": 1, "shrug": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}}, "badtempered": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "failed": {"_count": 1, "wizard": {"_count": 1}}, "and": {"_count": 1, "continued": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "flamingo": {"_count": 1, "": {"_count": 1}}}, "Special": {"_count": 11, "permission": {"_count": 1, "from": {"_count": 1}}, "Award": {"_count": 1, "for": {"_count": 1}}, "Awards": {"_count": 1, "for": {"_count": 1}}, "Effects": {"_count": 1, "sweets": {"_count": 1}}, "Correspondent": {"_count": 3, "": {"_count": 3}}, "favor": {"_count": 1, "to": {"_count": 1}}, "discounts": {"_count": 1, "to": {"_count": 1}}, "Services": {"_count": 1, "to": {"_count": 1}}, "Advisor": {"_count": 1, "to": {"_count": 1}}}, "skulls": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "be": {"_count": 1}}, "their": {"_count": 1, "contents": {"_count": 1}}, "and": {"_count": 2, "old": {"_count": 1}, "stuff": {"_count": 1}}}, "smart": {"_count": 13, "wonderful": {"_count": 1, "Potter": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "owl": {"_count": 1, "youve": {"_count": 1}}, "parties": {"_count": 1, "": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "plan": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "and": {"_count": 1}}, "enough": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "pace": {"_count": 1, "": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}}, "quelling": {"_count": 1, "look": {"_count": 1, "at": {"_count": 1}}}, "prudent": {"_count": 7, "to": {"_count": 5, "appear": {"_count": 1}, "remove": {"_count": 1}, "finish": {"_count": 1}, "alert": {"_count": 1}, "call": {"_count": 1}}, "wizard": {"_count": 1, "keeps": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}}, "regard": {"_count": 8, "him": {"_count": 1, "as": {"_count": 1}}, "any": {"_count": 2, "wizard": {"_count": 1}, "moment": {"_count": 1}}, "to": {"_count": 3, "you": {"_count": 1}, "the": {"_count": 1}, "Tonks": {"_count": 1}}, "Sirius": {"_count": 1, "as": {"_count": 1}}, "for": {"_count": 1, "your": {"_count": 1}}}, "ah": {"_count": 22, "Mr": {"_count": 2, "Borgin": {"_count": 1}, "Weasley": {"_count": 1}}, "items": {"_count": 1, "at": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "killins": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "start": {"_count": 1}}, "sir": {"_count": 1, "meaning": {"_count": 1}}, "and": {"_count": 1, "heres": {"_count": 1}}, "but": {"_count": 1, "Im": {"_count": 1}}, "yes": {"_count": 2, "this": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "frustrated": {"_count": 1, "by": {"_count": 1}}, "its": {"_count": 1, "gone": {"_count": 1}}, "bring": {"_count": 1, "about": {"_count": 1}}, "well": {"_count": 2, "": {"_count": 2}}, "safe": {"_count": 1, "in": {"_count": 1}}, "deposit": {"_count": 1, "certain": {"_count": 1}}, "sympathetic": {"_count": 1, "friend": {"_count": 1}}}, "Borgin": {"_count": 71, "": {"_count": 5, ".": {"_count": 5}}, "in": {"_count": 3, "a": {"_count": 2}, "his": {"_count": 1}}, "but": {"_count": 1, "selling": {"_count": 1}}, "s": {"_count": 1, "face": {"_count": 1}}, "to": {"_count": 7, "read": {"_count": 1}, "help": {"_count": 1}, "keep": {"_count": 2}, "get": {"_count": 1}, "fix": {"_count": 1}, "tell": {"_count": 1}}, "fixed": {"_count": 1, "a": {"_count": 1}}, "abandoning": {"_count": 1, "Mr": {"_count": 1}}, "said": {"_count": 2, "Mr": {"_count": 1}, "quickly": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "him": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "dropped": {"_count": 1, "his": {"_count": 1}}, "disappeared": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 25, "Burkes": {"_count": 22}, "was": {"_count": 1}, "that": {"_count": 1}, "Burke": {"_count": 1}}, "an": {"_count": 1, "oilyhaired": {"_count": 1}}, "lick": {"_count": 1, "his": {"_count": 1}}, "looking": {"_count": 1, "very": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "bowing": {"_count": 1, "again": {"_count": 1}}, "remained": {"_count": 1, "frozen": {"_count": 1}}, "who": {"_count": 2, "did": {"_count": 1}, "he": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}, "squinted": {"_count": 1, "at": {"_count": 1}}, "thought": {"_count": 1, "so": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "slammed": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 1, "we": {"_count": 1}}, "took": {"_count": 1, "him": {"_count": 1}}, "asked": {"_count": 1, "him": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "told": {"_count": 1}}, "that": {"_count": 1, "Grey": {"_count": 1}}, "didnt": {"_count": 1, "know": {"_count": 1}}}, "smoothing": {"_count": 8, "his": {"_count": 3, "greasy": {"_count": 1}, "hair": {"_count": 1}, "mustache": {"_count": 1}}, "Dudleys": {"_count": 1, "thick": {"_count": 1}}, "the": {"_count": 2, "map": {"_count": 1}, "front": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "creases": {"_count": 1}}}, "pleasure": {"_count": 52, "to": {"_count": 3, "see": {"_count": 1}, "inform": {"_count": 1}, "hear": {"_count": 1}}, "and": {"_count": 2, "pride": {"_count": 1}, "relief": {"_count": 1}}, "at": {"_count": 5, "all": {"_count": 2}, "the": {"_count": 2}, "his": {"_count": 1}}, "in": {"_count": 5, "buying": {"_count": 1}, "announcing": {"_count": 1}, "welcoming": {"_count": 1}, "the": {"_count": 1}, "blaming": {"_count": 1}}, "scribbled": {"_count": 1, "something": {"_count": 1}}, "teaching": {"_count": 1, "you": {"_count": 1}}, "dears": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 12}, "?": {"_count": 2}}, "meeting": {"_count": 1, "you": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 6, "insulting": {"_count": 1}, "seeing": {"_count": 1}, "meeting": {"_count": 1}, "teaching": {"_count": 1}, "terrorizing": {"_count": 1}, "it": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "recognized": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "passed": {"_count": 1, "a": {"_count": 1}}, "repeated": {"_count": 1, "Voldemort": {"_count": 1}}, "lay": {"_count": 1, "in": {"_count": 1}}, "Doge": {"_count": 1, "poured": {"_count": 1}}, "Now": {"_count": 1, "he": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}}, "oily": {"_count": 6, "as": {"_count": 1, "his": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "manner": {"_count": 1, "": {"_count": 1}}, "greasyhaired": {"_count": 1, "kid": {"_count": 1}}, "hair": {"_count": 1, "swinging": {"_count": 1}}}, "charmed": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "object": {"_count": 1, "": {"_count": 1}}, "shut": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "her": {"_count": 1, "so": {"_count": 1}}, "cage": {"_count": 1, "like": {"_count": 1}}}, "assistance": {"_count": 12, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "would": {"_count": 1, "feel": {"_count": 1}}, "Dumbledore": {"_count": 1, "sighed": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "clearing": {"_count": 1, "up": {"_count": 1}}, "to": {"_count": 1, "buy": {"_count": 1}}, "I": {"_count": 1, "need": {"_count": 1}}, "and": {"_count": 1, "Dumbledore": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}}, "priced": {"_count": 1, "Im": {"_count": 1, "not": {"_count": 1}}}, "Selling": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "conducting": {"_count": 1, "more": {"_count": 1, "raids": {"_count": 1}}}, "unraveling": {"_count": 2, "it": {"_count": 1, "for": {"_count": 1}}, "like": {"_count": 1, "rolls": {"_count": 1}}}, "embarrass": {"_count": 2, "me": {"_count": 1, "if": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}}, "pincenez": {"_count": 2, "to": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}}, "presume": {"_count": 4, "to": {"_count": 2, "trouble": {"_count": 1}, "predict": {"_count": 1}}, "that": {"_count": 2, "even": {"_count": 1}, "it": {"_count": 1}}}, "commands": {"_count": 2, "a": {"_count": 1, "certain": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}}, "grows": {"_count": 2, "ever": {"_count": 2, "more": {"_count": 1}, "stronger": {"_count": 1}}}, "meddlesome": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "fools": {"_count": 1, "too": {"_count": 1}}}, "Protection": {"_count": 4, "Act": {"_count": 3, "no": {"_count": 1}, "should": {"_count": 1}, "if": {"_count": 1}}, "of": {"_count": 1, "Ugly": {"_count": 1}}}, "Act": {"_count": 4, "no": {"_count": 1, "doubt": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "if": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 1, "act": {"_count": 1}}}, "flea": {"_count": 1, "bitten": {"_count": 1, "Muggleloving": {"_count": 1}}}, "Muggleloving": {"_count": 2, "fool": {"_count": 2, "Arthur": {"_count": 1}, "from": {"_count": 1}}}, "surge": {"_count": 16, "of": {"_count": 13, "anger": {"_count": 1}, "guilt": {"_count": 2}, "hatred": {"_count": 1}, "white": {"_count": 1}, "terror": {"_count": 1}, "sympathy": {"_count": 1}, "pride": {"_count": 1}, "fury": {"_count": 1}, "speed": {"_count": 1}, "vicious": {"_count": 1}, "remorse": {"_count": 1}, "savage": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "every": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "Hand": {"_count": 12, "of": {"_count": 3, "Glory": {"_count": 3}}, "it": {"_count": 2, "over": {"_count": 2}}, "in": {"_count": 1, "something": {"_count": 1}}, "Mr": {"_count": 2, "Potter": {"_count": 1}, "Thomas": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "that": {"_count": 1, "over": {"_count": 1}}}, "Glory": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 2}}}, "abandoning": {"_count": 9, "Mr": {"_count": 1, "Malfoys": {"_count": 1}}, "my": {"_count": 1, "solitary": {"_count": 1}}, "the": {"_count": 1, "plan": {"_count": 1}}, "his": {"_count": 3, "look": {"_count": 1}, "shepherds": {"_count": 1}, "attempts": {"_count": 1}}, "her": {"_count": 1, "post": {"_count": 1}}, "your": {"_count": 1, "education": {"_count": 1}}, "caution": {"_count": 1, "": {"_count": 1}}}, "scurrying": {"_count": 16, "over": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "after": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "feet": {"_count": 1, "behind": {"_count": 1}}, "back": {"_count": 2, "to": {"_count": 1}, "up": {"_count": 1}}, "for": {"_count": 1, "cover": {"_count": 1}}, "after": {"_count": 1, "them": {"_count": 1}}, "burrowing": {"_count": 1, "rats": {"_count": 1}}, "off": {"_count": 1, "toward": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "disturbed": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "foul": {"_count": 1}}}, "Insert": {"_count": 1, "a": {"_count": 1, "candle": {"_count": 1}}}, "candle": {"_count": 18, "and": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "closer": {"_count": 1, "to": {"_count": 1}}, "toppling": {"_count": 1, "onto": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "illuminated": {"_count": 1}}, "wick": {"_count": 1, "sinking": {"_count": 1}}, "bracket": {"_count": 1, "looked": {"_count": 1}}, "flames": {"_count": 1, "": {"_count": 1}}, "brackets": {"_count": 1, "set": {"_count": 1}}, "placed": {"_count": 1, "at": {"_count": 1}}, "extinguishing": {"_count": 1, "everything": {"_count": 1}}, "flickering": {"_count": 1, "in": {"_count": 1}}, "stubs": {"_count": 2, "still": {"_count": 1}, "that": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "grubby": {"_count": 1}}}, "holder": {"_count": 4, "": {"_count": 1, "!": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "most": {"_count": 1}}}, "plunderers": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "thief": {"_count": 24, "or": {"_count": 1, "a": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}, "Master": {"_count": 1, "croaked": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Gregorovitch": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "familiar": {"_count": 1}}, "was": {"_count": 1, "holding": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 1}, "stole": {"_count": 2}}, "the": {"_count": 3, "young": {"_count": 1}, "thief": {"_count": 2}}, "inside": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}}, "plunderer": {"_count": 1, "Borgin": {"_count": 1, "said": {"_count": 1}}}, "Though": {"_count": 54, "if": {"_count": 2, "his": {"_count": 1}, "hed": {"_count": 1}}, "quite": {"_count": 1, "young": {"_count": 1}}, "Harry": {"_count": 5, "had": {"_count": 1}, "could": {"_count": 2}, "glanced": {"_count": 1}, "knew": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "still": {"_count": 3, "severely": {"_count": 1}, "deeply": {"_count": 1}, "quite": {"_count": 1}}, "the": {"_count": 5, "weather": {"_count": 1}, "darkness": {"_count": 1}, "walk": {"_count": 1}, "goblins": {"_count": 1}, "Death": {"_count": 1}}, "Ron": {"_count": 1, "purchased": {"_count": 1}}, "they": {"_count": 3, "had": {"_count": 1}, "caused": {"_count": 1}, "were": {"_count": 1}}, "it": {"_count": 3, "probably": {"_count": 1}, "was": {"_count": 2}}, "of": {"_count": 1, "course": {"_count": 1}}, "I": {"_count": 4, "must": {"_count": 2}, "might": {"_count": 1}, "would": {"_count": 1}}, "she": {"_count": 2, "writhed": {"_count": 1}, "had": {"_count": 1}}, "shocked": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 10, "knew": {"_count": 1}, "seemed": {"_count": 1}, "had": {"_count": 3}, "could": {"_count": 1}, "sighed": {"_count": 1}, "already": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "condemned": {"_count": 1, "I": {"_count": 1}}, "Sirius": {"_count": 1, "seemed": {"_count": 1}}, "clearly": {"_count": 1, "struggling": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "Ministry": {"_count": 1, "spokeswizards": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "your": {"_count": 1, "body": {"_count": 1}}, "Ariana": {"_count": 1, "had": {"_count": 1}}, "much": {"_count": 1, "smaller": {"_count": 1}}, "Petunia": {"_count": 1, "evidently": {"_count": 1}}, "leaves": {"_count": 1, "and": {"_count": 1}}}, "retorted": {"_count": 13, "Draco": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "Ron": {"_count": 1, "if": {"_count": 1}}, "which": {"_count": 1, "made": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 2}}, "to": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "favorites": {"_count": 12, "that": {"_count": 1, "Hermione": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Bertie": {"_count": 1, "Botts": {"_count": 1}}, "to": {"_count": 1, "win": {"_count": 1}}, "and": {"_count": 1, "on": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "with": {"_count": 1, "himself": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}}, "abashed": {"_count": 7, "and": {"_count": 1, "angry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "Seamus": {"_count": 1, "after": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}}, "flaring": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "up": {"_count": 3, "at": {"_count": 3}}}, "elsewhere": {"_count": 6, "today": {"_count": 1, "They": {"_count": 1}}, "he": {"_count": 1, "allowed": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "No": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 1, "sword": {"_count": 1}}}, "haggle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sale": {"_count": 8, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "the": {"_count": 1, "regular": {"_count": 1}}, "everywhere": {"_count": 1, "things": {"_count": 1}}, "to": {"_count": 1, "undersixteens": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "coil": {"_count": 4, "of": {"_count": 2, "hangmans": {"_count": 1}, "smoke": {"_count": 1}}, "after": {"_count": 1, "heavy": {"_count": 1}}, "rising": {"_count": 1, "up": {"_count": 1}}}, "hangmans": {"_count": 1, "rope": {"_count": 1, "and": {"_count": 1}}}, "necklace": {"_count": 37, "of": {"_count": 3, "opals": {"_count": 1}, "butterbeer": {"_count": 2}}, "o": {"_count": 1, "bones": {"_count": 1}}, "for": {"_count": 1, "sale": {"_count": 1}}, "was": {"_count": 1, "visible": {"_count": 1}}, "in": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 3, "Professor": {"_count": 1}, "": {"_count": 1}, "any": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}, "You": {"_count": 1, "saw": {"_count": 1}}, "interjected": {"_count": 1, "Ron": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "can": {"_count": 1, "possibly": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "within": {"_count": 1, "seconds": {"_count": 1}}, "and": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 1}, "an": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "nor": {"_count": 1, "put": {"_count": 1}}, "business": {"_count": 1, "Yeah": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 2}}}, "opals": {"_count": 4, "Caution": {"_count": 1, "Do": {"_count": 1}}, "gleamed": {"_count": 1, "at": {"_count": 1}}, "was": {"_count": 1, "resting": {"_count": 1}}, "glittering": {"_count": 1, "in": {"_count": 1}}}, "Caution": {"_count": 2, "Do": {"_count": 1, "Not": {"_count": 1}}, "murmured": {"_count": 1, "it": {"_count": 1}}}, "Cursed": {"_count": 2, "Has": {"_count": 1, "Claimed": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Claimed": {"_count": 1, "the": {"_count": 1, "Lives": {"_count": 1}}}, "Lives": {"_count": 1, "of": {"_count": 1, "Nineteen": {"_count": 1}}}, "Nineteen": {"_count": 1, "Muggle": {"_count": 1, "Owners": {"_count": 1}}}, "Owners": {"_count": 1, "to": {"_count": 1, "Date": {"_count": 1}}}, "Date": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Done": {"_count": 3, "said": {"_count": 1, "Mr": {"_count": 1}}, "it": {"_count": 1, "Fred": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}}, "Mister": {"_count": 1, "Malfoy": {"_count": 1, "and": {"_count": 1}}}, "Muttering": {"_count": 4, "darkly": {"_count": 1, "Mr": {"_count": 1}}, "angrily": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "gesticulating": {"_count": 1}}, "about": {"_count": 1, "fresh": {"_count": 1}}}, "Clutching": {"_count": 3, "his": {"_count": 2, "broken": {"_count": 1}, "right": {"_count": 1}}, "their": {"_count": 1, "purchases": {"_count": 1}}}, "dingy": {"_count": 10, "alleyway": {"_count": 1, "that": {"_count": 1}}, "street": {"_count": 1, "full": {"_count": 1}}, "and": {"_count": 2, "windowless": {"_count": 1}, "very": {"_count": 1}}, "police": {"_count": 1, "station": {"_count": 1}}, "landing": {"_count": 1, "turned": {"_count": 1}}, "office": {"_count": 1, "seemed": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "door": {"_count": 1, "in": {"_count": 1}}, "attic": {"_count": 1, "room": {"_count": 1}}}, "alleyway": {"_count": 26, "that": {"_count": 1, "seemed": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "between": {"_count": 3, "the": {"_count": 1}, "Magnolia": {"_count": 2}}, "down": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 3, "Harry": {"_count": 2}, "the": {"_count": 1}}, "blinding": {"_count": 1, "them": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}, "holding": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "dissolved": {"_count": 1}, "they": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "highly": {"_count": 1}}, "we": {"_count": 1, "put": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}}, "entirely": {"_count": 55, "of": {"_count": 2, "shops": {"_count": 1}, "greenandgold": {"_count": 1}}, "truthful": {"_count": 1, "he": {"_count": 1}}, "hidden": {"_count": 1, "by": {"_count": 1}}, "wizarding": {"_count": 1, "village": {"_count": 1}}, "round": {"_count": 2, "now": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "non": {"_count": 1, "Muggle": {"_count": 1}}, "sure": {"_count": 8, "they": {"_count": 1}, "that": {"_count": 2}, "why": {"_count": 1}, "he": {"_count": 1}, "whether": {"_count": 1}, "how": {"_count": 1}, "unless": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "mirthless": {"_count": 1, "laugh": {"_count": 1}}, "pointless": {"_count": 1, "because": {"_count": 1}}, "normal": {"_count": 2, "": {"_count": 2}}, "covered": {"_count": 2, "in": {"_count": 2}}, "youd": {"_count": 1, "think": {"_count": 1}}, "reliable": {"_count": 1, "": {"_count": 1}}, "bobbing": {"_count": 1, "on": {"_count": 1}}, "hide": {"_count": 1, "his": {"_count": 1}}, "right": {"_count": 1, "about": {"_count": 1}}, "unremarkable": {"_count": 1, "had": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "absolutely": {"_count": 1}}, "unconvincing": {"_count": 1, "tone": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "satisfied": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "plausible": {"_count": 1, "": {"_count": 1}}, "silent": {"_count": 2, "so": {"_count": 1}, "tantrum": {"_count": 1}}, "my": {"_count": 1, "fault": {"_count": 1}}, "mistaken": {"_count": 1, "impression": {"_count": 1}}, "I": {"_count": 1, "assure": {"_count": 1}}, "convinced": {"_count": 1, "but": {"_count": 1}}, "true": {"_count": 1, "though": {"_count": 1}}, "obscure": {"_count": 1, "the": {"_count": 1}}, "elder": {"_count": 1, "brotherly": {"_count": 1}}, "unexpected": {"_count": 1, "caught": {"_count": 1}}, "dependent": {"_count": 1, "on": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "truthfully": {"_count": 1, "because": {"_count": 1}}, "worthless": {"_count": 1, "": {"_count": 1}}, "blame": {"_count": 1, "them": {"_count": 1}}, "repacked": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "devoted": {"_count": 24, "to": {"_count": 12, "the": {"_count": 2}, "fortunetelling": {"_count": 1}, "reading": {"_count": 1}, "crystal": {"_count": 1}, "unprofitable": {"_count": 1}, "him": {"_count": 1}, "an": {"_count": 1}, "studying": {"_count": 1}, "reviewing": {"_count": 1}, "a": {"_count": 1}, "fighting": {"_count": 1}}, "servant": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 3, "to": {"_count": 3}}, "houseelf": {"_count": 1, "because": {"_count": 1}}, "servants": {"_count": 2, "returned": {"_count": 1}, "before": {"_count": 1}}, "service": {"_count": 1, "": {"_count": 1}}, "instead": {"_count": 1, "to": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "sidekick": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 1, "Harrys": {"_count": 1}}}, "Burkes": {"_count": 22, "looked": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 3}}, "which": {"_count": 2, "sold": {"_count": 1}, "specializes": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 2}, "Malfoy": {"_count": 1}}, "ages": {"_count": 1, "ago": {"_count": 1}}, "four": {"_count": 1, "years": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "for": {"_count": 1, "repair": {"_count": 1}}, "was": {"_count": 1, "noisy": {"_count": 1}}, "repeated": {"_count": 1, "Dumbledore": {"_count": 1}}, "the": {"_count": 1, "young": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "Albania": {"_count": 1, "every": {"_count": 1}}}, "shrunken": {"_count": 10, "heads": {"_count": 2, "and": {"_count": 1}, "mounted": {"_count": 1}}, "arm": {"_count": 1, "under": {"_count": 1}}, "appearance": {"_count": 1, "of": {"_count": 1}}, "maroon": {"_count": 2, "sweater": {"_count": 1}, "jumper": {"_count": 1}}, "looking": {"_count": 1, "man": {"_count": 1}}, "head": {"_count": 1, "confiscated": {"_count": 1}}, "hands": {"_count": 1, "outstretched": {"_count": 1}}, "the": {"_count": 1, "white": {"_count": 1}}}, "shab": {"_count": 1, "bylooking": {"_count": 1, "wizards": {"_count": 1}}}, "bylooking": {"_count": 1, "wizards": {"_count": 1, "were": {"_count": 1}}}, "Knockturn": {"_count": 11, "Alley": {"_count": 11, "": {"_count": 4}, "I": {"_count": 1}, "said": {"_count": 1}, "didnt": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "dont": {"_count": 1}}}, "ashes": {"_count": 8, "back": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "How": {"_count": 1, "much": {"_count": 1}}}, "aged": {"_count": 11, "witch": {"_count": 1, "stood": {"_count": 1}}, "old": {"_count": 1, "hat": {"_count": 1}}, "spider": {"_count": 1, "and": {"_count": 1}}, "thirty": {"_count": 1, "years": {"_count": 1}}, "exAuror": {"_count": 1, "who": {"_count": 1}}, "parchment": {"_count": 1, "in": {"_count": 1}}, "monkey": {"_count": 1, "": {"_count": 1}}, "dandelion": {"_count": 1, "clock": {"_count": 1}}, "crab": {"_count": 1, "apple": {"_count": 1}}, "wood": {"_count": 1, "and": {"_count": 1}}, "caretaker": {"_count": 1, "had": {"_count": 1}}}, "fingernails": {"_count": 11, "": {"_count": 2, ".": {"_count": 2}}, "cascaded": {"_count": 1, "down": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "scraping": {"_count": 1, "an": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "scrabbled": {"_count": 1, "the": {"_count": 1}}, "staring": {"_count": 1, "down": {"_count": 1}}, "Hermione": {"_count": 1, "raised": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "leered": {"_count": 8, "at": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "unpleasantly": {"_count": 1, "at": {"_count": 1}}, "from": {"_count": 1, "every": {"_count": 1}}, "more": {"_count": 1, "widely": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "cascaded": {"_count": 3, "down": {"_count": 2, "over": {"_count": 1}, "his": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "beetleblack": {"_count": 7, "eyes": {"_count": 7, "flashing": {"_count": 1}, "": {"_count": 2}, "looked": {"_count": 1}, "and": {"_count": 1}, "narrowed": {"_count": 1}, "streaming": {"_count": 1}}}, "bristling": {"_count": 5, "beard": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "her": {"_count": 1}}, "with": {"_count": 1, "anger": {"_count": 1}}}, "snowwhite": {"_count": 1, "marble": {"_count": 1, "building": {"_count": 1}}}, "Bank": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "London": {"_count": 1}}, "Gringotts": {"_count": 1, "when": {"_count": 1}}, "who": {"_count": 1, "are": {"_count": 1}}}, "barrel": {"_count": 10, "of": {"_count": 4, "dragon": {"_count": 1}, "Every": {"_count": 1}, "eels": {"_count": 1}, "maggots": {"_count": 1}}, "bursting": {"_count": 1, "its": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "standing": {"_count": 1, "in": {"_count": 1}}}, "apothecary": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Skulkin": {"_count": 1, "around": {"_count": 1, "Knockturn": {"_count": 1}}}, "ducking": {"_count": 4, "as": {"_count": 1, "Hagrid": {"_count": 1}}, "beneath": {"_count": 1, "Diggory": {"_count": 1}}, "out": {"_count": 1, "at": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "brush": {"_count": 9, "him": {"_count": 1, "off": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "and": {"_count": 1, "said": {"_count": 1}}, "against": {"_count": 2, "his": {"_count": 2}}, "as": {"_count": 1, "Potter": {"_count": 1}}, "with": {"_count": 1, "Percy": {"_count": 1}}, "up": {"_count": 1, "against": {"_count": 1}}}, "FleshEatin": {"_count": 1, "Slug": {"_count": 1, "Repellent": {"_count": 1}}}, "Slug": {"_count": 6, "Repellent": {"_count": 2, "growled": {"_count": 1}, "said": {"_count": 1}}, "horn": {"_count": 1, "Whos": {"_count": 1}}, "Club": {"_count": 2, "at": {"_count": 1}, "yes": {"_count": 1}}, "Were": {"_count": 1, "allowed": {"_count": 1}}}, "Repellent": {"_count": 2, "growled": {"_count": 1, "Hagrid": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "ruinin": {"_count": 1, "the": {"_count": 1, "school": {"_count": 1}}}, "jogged": {"_count": 7, "alongside": {"_count": 1, "him": {"_count": 1}}, "along": {"_count": 1, "in": {"_count": 1}}, "right": {"_count": 1, "over": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}, "noisily": {"_count": 1, "after": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "stride": {"_count": 11, "of": {"_count": 1, "Hagrid": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "but": {"_count": 1, "MadEye": {"_count": 1}}, "for": {"_count": 1, "every": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "blindly": {"_count": 1, "around": {"_count": 1}}}, "Lousy": {"_count": 2, "Muggles": {"_count": 1, "growled": {"_count": 1}}, "croaked": {"_count": 1, "Ron": {"_count": 1}}}, "Idve": {"_count": 8, "known": {"_count": 1, "Harry": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}, "ditched": {"_count": 1, "Defense": {"_count": 1}}, "ripped": {"_count": 1, "him": {"_count": 1}}, "bin": {"_count": 1, "worried": {"_count": 1}}, "done": {"_count": 1, "persisted": {"_count": 1}}, "thought": {"_count": 1, "Firenze": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}}, "Sprinting": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "mopped": {"_count": 7, "his": {"_count": 4, "glistening": {"_count": 1}, "bulging": {"_count": 1}, "eyes": {"_count": 1}, "face": {"_count": 1}}, "it": {"_count": 1, "up": {"_count": 1}}, "her": {"_count": 1, "brow": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}}, "Mollys": {"_count": 7, "frantic": {"_count": 1, "shes": {"_count": 1}}, "right": {"_count": 1, "Sirius": {"_count": 1}}, "making": {"_count": 1, "meatballs": {"_count": 1}}, "Auntie": {"_count": 1, "Muriels": {"_count": 1}}, "not": {"_count": 1, "I": {"_count": 1}}, "curses": {"_count": 1, "danced": {"_count": 1}}, "curse": {"_count": 1, "soared": {"_count": 1}}}, "handbag": {"_count": 22, "swinging": {"_count": 1, "wildly": {"_count": 1}}, "and": {"_count": 3, "said": {"_count": 1}, "pulled": {"_count": 1}, "groped": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 1}, ".": {"_count": 6}}, "ended": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 1, "over": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "extracted": {"_count": 1, "her": {"_count": 1}}, "stretched": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "Minister": {"_count": 1}}, "still": {"_count": 1, "smiling": {"_count": 1}}, "at": {"_count": 1, "Fang": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}}, "swinging": {"_count": 40, "wildly": {"_count": 2, "in": {"_count": 1}, "beneath": {"_count": 1}}, "the": {"_count": 4, "steering": {"_count": 1}, "polecat": {"_count": 1}, "bag": {"_count": 2}}, "from": {"_count": 6, "the": {"_count": 2}, "his": {"_count": 2}, "her": {"_count": 1}, "Rons": {"_count": 1}}, "madly": {"_count": 2, "around": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 4, "bat": {"_count": 1}, "arms": {"_count": 1}, "leg": {"_count": 1}, "schoolbag": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 2, "dead": {"_count": 1}, "huge": {"_count": 1}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "her": {"_count": 4, "bag": {"_count": 2}, "around": {"_count": 1}, "silvery": {"_count": 1}}, "forward": {"_count": 1, "to": {"_count": 1}}, "herself": {"_count": 1, "off": {"_count": 1}}, "it": {"_count": 2, "around": {"_count": 1}, "backward": {"_count": 1}}, "their": {"_count": 1, "new": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "dangerously": {"_count": 1, "below": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "pool": {"_count": 1, "of": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "beam": {"_count": 1, "of": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "higher": {"_count": 1, "and": {"_count": 1}}}, "Gasping": {"_count": 2, "for": {"_count": 1, "breath": {"_count": 1}}, "and": {"_count": 1, "spluttering": {"_count": 1}}}, "wrung": {"_count": 3, "by": {"_count": 1, "Mrs": {"_count": 1}}, "sponge": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "hand": {"_count": 1}}}, "satisfaction": {"_count": 31, "": {"_count": 9, ".": {"_count": 9}}, "But": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "Snape": {"_count": 1}}, "Karkaroffs": {"_count": 1, "face": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 2}}, "of": {"_count": 4, "knowing": {"_count": 2}, "hearing": {"_count": 1}, "revenge": {"_count": 1}}, "to": {"_count": 1, "know": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}, "Umbridge": {"_count": 1, "left": {"_count": 1}}, "Dumbledore": {"_count": 1, "gave": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "disheveled": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "replaced": {"_count": 1, "by": {"_count": 1}}, "Kreacher": {"_count": 1, "bowed": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}}, "chew": {"_count": 7, "So": {"_count": 1, "you": {"_count": 1}}, "if": {"_count": 1, "yeh": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 2, "which": {"_count": 2}}, "and": {"_count": 1, "straighten": {"_count": 1}}, "with": {"_count": 1, "Gran": {"_count": 1}}}, "indignantly": {"_count": 46, "but": {"_count": 2, "he": {"_count": 1}, "fortunately": {"_count": 1}}, "people": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 28}}, "at": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "swaying": {"_count": 1, "worse": {"_count": 1}}, "stopping": {"_count": 1, "dead": {"_count": 1}}, "as": {"_count": 2, "his": {"_count": 1}, "she": {"_count": 1}}, "and": {"_count": 2, "Crookshanks": {"_count": 1}, "the": {"_count": 1}}, "having": {"_count": 1, "managed": {"_count": 1}}, "who": {"_count": 1, "considering": {"_count": 1}}, "racking": {"_count": 1, "his": {"_count": 1}}, "ceasing": {"_count": 1, "grooming": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "Ron": {"_count": 1, "jumped": {"_count": 1}}}, "Mugglesl": {"_count": 1, "said": {"_count": 1, "Mr": {"_count": 1}}}, "delightedly": {"_count": 11, "": {"_count": 4, ".": {"_count": 4}}, "walking": {"_count": 1, "around": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 1, "hurried": {"_count": 1}}, "told": {"_count": 1, "anyone": {"_count": 1}}, "when": {"_count": 1, "Mundungus": {"_count": 1}}, "examining": {"_count": 1, "a": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}}, "tenpound": {"_count": 1, "notes": {"_count": 1, "in": {"_count": 1}}}, "minature": {"_count": 1, "train": {"_count": 1, "tracks": {"_count": 1}}}, "breakneck": {"_count": 3, "journey": {"_count": 1, "down": {"_count": 1}}, "speed": {"_count": 2, "back": {"_count": 1}, "trying": {"_count": 1}}}, "dreadful": {"_count": 48, "far": {"_count": 1, "worse": {"_count": 1}}, "quavering": {"_count": 1, "sound": {"_count": 1}}, "for": {"_count": 2, "days": {"_count": 1}, "those": {"_count": 1}}, "said": {"_count": 2, "Myrtle": {"_count": 1}, "Ernie": {"_count": 1}}, "year": {"_count": 1, "will": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "piercing": {"_count": 1, "scream": {"_count": 1}}, "battle": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "ordeal": {"_count": 1, "lie": {"_count": 1}}, "things": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}, "lives": {"_count": 1, "they": {"_count": 1}}, "happens": {"_count": 1, "and": {"_count": 1}}, "punishment": {"_count": 1, "really": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}, "teacher": {"_count": 2, "she": {"_count": 1}, "with": {"_count": 1}}, "ideas": {"_count": 1, "": {"_count": 1}}, "painting": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "guilt": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "Ginny": {"_count": 1}, "yet": {"_count": 1}}, "old": {"_count": 1, "school": {"_count": 1}}, "truth": {"_count": 1, "more": {"_count": 1}}, "tragedy": {"_count": 1, "said": {"_count": 1}}, "crime": {"_count": 1, "": {"_count": 1}}, "gutwrenching": {"_count": 1, "pang": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 1, "hes": {"_count": 1}}, "But": {"_count": 1, "he": {"_count": 1}}, "nosebleed": {"_count": 1, "": {"_count": 1}}, "scene": {"_count": 1, "": {"_count": 1}}, "circumstances": {"_count": 1, "": {"_count": 1}}, "coffin": {"_count": 1, "side": {"_count": 1}}, "Loxias": {"_count": 1, "who": {"_count": 1}}, "leer": {"_count": 1, "": {"_count": 1}}, "scream": {"_count": 1, "from": {"_count": 1}}, "blast": {"_count": 1, "of": {"_count": 1}}, "betrayal": {"_count": 1, "even": {"_count": 1}}, "Muggle": {"_count": 1, "clothes": {"_count": 1}}}, "Knock": {"_count": 1, "turn": {"_count": 1, "Alley": {"_count": 1}}}, "contents": {"_count": 56, "from": {"_count": 1, "view": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "of": {"_count": 27, "Harrys": {"_count": 4}, "a": {"_count": 4}, "the": {"_count": 13}, "that": {"_count": 1}, "his": {"_count": 3}, "her": {"_count": 1}, "their": {"_count": 1}}, "strewn": {"_count": 1, "over": {"_count": 1}}, "into": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "aside": {"_count": 1, "looking": {"_count": 1}}, "were": {"_count": 2, "now": {"_count": 1}, "ebbing": {"_count": 1}}, "more": {"_count": 1, "closely": {"_count": 1}}, "rattled": {"_count": 1, "as": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "had": {"_count": 3, "returned": {"_count": 1}, "vanished": {"_count": 1}, "been": {"_count": 1}}, "everywhere": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "flying": {"_count": 1, "everywhere": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "proved": {"_count": 1, "difficult": {"_count": 1}}, "still": {"_count": 1, "shimmered": {"_count": 1}}, "and": {"_count": 1, "replaced": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "handfuls": {"_count": 5, "of": {"_count": 5, "coins": {"_count": 1}, "fire": {"_count": 1}, "frog": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 1}}}, "vaguely": {"_count": 53, "about": {"_count": 1, "needing": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "toward": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 2, "she": {"_count": 1}, "as": {"_count": 1}}, "and": {"_count": 1, "placed": {"_count": 1}}, "of": {"_count": 1, "visiting": {"_count": 1}}, "panicky": {"_count": 1, "": {"_count": 1}}, "why": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 2, "squinting": {"_count": 1}, "immersed": {"_count": 1}}, "aware": {"_count": 1, "of": {"_count": 1}}, "familiar": {"_count": 4, "": {"_count": 1}, "to": {"_count": 2}, "Racking": {"_count": 1}}, "grateful": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "being": {"_count": 1}, "he": {"_count": 1}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "tempted": {"_count": 1, "by": {"_count": 1}}, "how": {"_count": 1, "many": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "mind": {"_count": 1}}, "putting": {"_count": 1, "down": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "Harrys": {"_count": 1, "liked": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "turning": {"_count": 1, "a": {"_count": 1}}, "glancing": {"_count": 1, "around": {"_count": 1}}, "who": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "registered": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "interesting": {"_count": 1, "sideshow": {"_count": 1}}, "surprised": {"_count": 1, "that": {"_count": 1}}}, "needing": {"_count": 10, "a": {"_count": 2, "new": {"_count": 2}}, "it": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "extra": {"_count": 1, "nourishment": {"_count": 1}}, "me": {"_count": 1, "he": {"_count": 1}}, "my": {"_count": 1, "help": {"_count": 1}}, "his": {"_count": 1, "hie": {"_count": 1}}, "to": {"_count": 1, "punish": {"_count": 1}}, "butterbeer": {"_count": 1, "to": {"_count": 1}}}, "schoolbooks": {"_count": 4, "said": {"_count": 1, "Mrs": {"_count": 1}}, "which": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "retreating": {"_count": 13, "backs": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "further": {"_count": 1, "from": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "disorder": {"_count": 1}}, "that": {"_count": 1, "way": {"_count": 1}}, "several": {"_count": 1, "steps": {"_count": 1}}, "until": {"_count": 1, "finally": {"_count": 1}}, "ghosts": {"_count": 1, "": {"_count": 1}}, "figures": {"_count": 1, "": {"_count": 1}}, "crowd": {"_count": 1, "": {"_count": 1}}}, "strolled": {"_count": 20, "off": {"_count": 2, "along": {"_count": 1}, "around": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "from": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "past": {"_count": 1, "Harry": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "around": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "casually": {"_count": 1, "toward": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "among": {"_count": 1, "them": {"_count": 1}}, "up": {"_count": 2, "this": {"_count": 1}, "the": {"_count": 1}}, "confidently": {"_count": 1, "to": {"_count": 1}}, "downstairs": {"_count": 1, "his": {"_count": 1}}}, "jangling": {"_count": 6, "cheerfully": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "clattering": {"_count": 1}, "rattling": {"_count": 1}}, "his": {"_count": 1, "every": {"_count": 1}}, "metal": {"_count": 1, "which": {"_count": 1}}}, "clamoring": {"_count": 5, "to": {"_count": 2, "be": {"_count": 1}, "get": {"_count": 1}}, "for": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "Gryffindors": {"_count": 1, "": {"_count": 1}}}, "strawberryandpeanutbutter": {"_count": 1, "ice": {"_count": 1, "creams": {"_count": 1}}}, "slurped": {"_count": 1, "happily": {"_count": 1, "as": {"_count": 1}}}, "alley": {"_count": 12, "examining": {"_count": 1, "the": {"_count": 1}}, "wall": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "vanished": {"_count": 1}}, "fence": {"_count": 1, "stumbling": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "everything": {"_count": 1, "went": {"_count": 1}}, "toward": {"_count": 1, "what": {"_count": 1}}, "beside": {"_count": 1, "it": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "with": {"_count": 1, "sick": {"_count": 1}}}, "Cannon": {"_count": 3, "robes": {"_count": 1, "in": {"_count": 1}}, "hat": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}}, "Quality": {"_count": 5, "Quidditch": {"_count": 5, "Supplies": {"_count": 5}}}, "Supplies": {"_count": 5, "until": {"_count": 1, "Hermione": {"_count": 1}}, "a": {"_count": 1, "week": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "buy": {"_count": 1}}}, "Gambol": {"_count": 1, "and": {"_count": 1, "Japes": {"_count": 1}}}, "Japes": {"_count": 1, "Wizarding": {"_count": 1, "Joke": {"_count": 1}}}, "Joke": {"_count": 9, "Shop": {"_count": 5, "they": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 1}, "where": {"_count": 1}, "had": {"_count": 1}}, "Shops": {"_count": 1, "frankly": {"_count": 1}}, "stuff": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "shop": {"_count": 1, "still": {"_count": 1}}}, "Shop": {"_count": 9, "they": {"_count": 1, "met": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "where": {"_count": 2, "they": {"_count": 1}, "there": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "that": {"_count": 1, "haunt": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "stocking": {"_count": 4, "up": {"_count": 1, "on": {"_count": 1}}, "them": {"_count": 1, "again": {"_count": 1}}, "lying": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Dr": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Filibusters": {"_count": 3, "Fabulous": {"_count": 2, "Wet": {"_count": 1}, "WetStart": {"_count": 1}}, "Fireworks": {"_count": 1, "so": {"_count": 1}}}, "Fabulous": {"_count": 2, "Wet": {"_count": 1, "Start": {"_count": 1}}, "WetStart": {"_count": 1, "NoHeat": {"_count": 1}}}, "Wet": {"_count": 3, "Start": {"_count": 1, "NoHeat": {"_count": 1}}, "this": {"_count": 1, "isnt": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "Start": {"_count": 2, "NoHeat": {"_count": 1, "Fireworks": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "NoHeat": {"_count": 2, "Fireworks": {"_count": 2, "and": {"_count": 1}, "went": {"_count": 1}}}, "Fireworks": {"_count": 3, "and": {"_count": 1, "in": {"_count": 1}}, "went": {"_count": 1, "off": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "junk": {"_count": 13, "shop": {"_count": 2, "full": {"_count": 1}, "window": {"_count": 1}}, "about": {"_count": 1, "Lockhart": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "of": {"_count": 1, "bottles": {"_count": 1}}, "and": {"_count": 2, "shouted": {"_count": 1}, "threw": {"_count": 1}}, "wall": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "which": {"_count": 1}}, "bulwarks": {"_count": 1, "which": {"_count": 1}}}, "stains": {"_count": 6, "they": {"_count": 1, "found": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 1}, "down": {"_count": 1}}, "spattered": {"_count": 1, "halfway": {"_count": 1}}, "of": {"_count": 1, "dishonor": {"_count": 1}}}, "immersed": {"_count": 12, "in": {"_count": 12, "a": {"_count": 2}, "The": {"_count": 1}, "further": {"_count": 1}, "yet": {"_count": 1}, "the": {"_count": 2}, "calculations": {"_count": 1}, "HAVE": {"_count": 1}, "evil": {"_count": 1}, "Voldemorts": {"_count": 1}, "memories": {"_count": 1}}}, "Gained": {"_count": 1, "Power": {"_count": 1, "": {"_count": 1}}}, "Power": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "careers": {"_count": 7, "Ron": {"_count": 1, "read": {"_count": 1}}, "now": {"_count": 1, "is": {"_count": 1}}, "appeared": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "the": {"_count": 1}}, "consultation": {"_count": 1, "and": {"_count": 1}}}, "ambitious": {"_count": 7, "Percy": {"_count": 1, "hes": {"_count": 1}}, "lately": {"_count": 1, "if": {"_count": 1}}, "girl": {"_count": 1, "seems": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "Harrys": {"_count": 1, "impression": {"_count": 1}}, "seeking": {"_count": 1, "some": {"_count": 1}}, "homework": {"_count": 1, "project": {"_count": 1}}}, "bookshop": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "without": {"_count": 1, "making": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}}, "jostling": {"_count": 8, "outside": {"_count": 1, "the": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "bumping": {"_count": 1}}, "crowd": {"_count": 1, "not": {"_count": 1}}, "students": {"_count": 1, "surrounding": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "people": {"_count": 1}}, "for": {"_count": 1, "position": {"_count": 1}}}, "proclaimed": {"_count": 4, "by": {"_count": 1, "a": {"_count": 1}}, "Messrs": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "continuing": {"_count": 1}}, "as": {"_count": 1, "widely": {"_count": 1}}}, "GILDEROY": {"_count": 2, "LOCKHART": {"_count": 2, "will": {"_count": 1}, "The": {"_count": 1}}}, "LOCKHART": {"_count": 2, "will": {"_count": 1, "be": {"_count": 1}}, "The": {"_count": 1, "next": {"_count": 1}}}, "signing": {"_count": 6, "copies": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "books": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "with": {"_count": 1, "renewed": {"_count": 1}}, "up": {"_count": 1, "for": {"_count": 1}}}, "copies": {"_count": 18, "of": {"_count": 17, "his": {"_count": 1}, "Hogwarts": {"_count": 1}, "Magical": {"_count": 1}, "The": {"_count": 5}, "the": {"_count": 1}, "which": {"_count": 1}, "Unfogging": {"_count": 1}, "battered": {"_count": 1}, "Defensive": {"_count": 1}, "One": {"_count": 1}, "Witch": {"_count": 1}, "Advanced": {"_count": 2}}, "are": {"_count": 1, "worthless": {"_count": 1}}}, "autobiography": {"_count": 3, "MAGICAL": {"_count": 1, "ME": {"_count": 1}}, "which": {"_count": 1, "I": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}}, "MAGICAL": {"_count": 4, "ME": {"_count": 1, "today": {"_count": 1}}, "MALADIES": {"_count": 1, "AND": {"_count": 1}}, "BUGS": {"_count": 1, "Second": {"_count": 1}}, "ACCIDENTS": {"_count": 1, "AND": {"_count": 1}}}, "1230": {"_count": 1, "p": {"_count": 1, "": {"_count": 1}}}, "p": {"_count": 4, "": {"_count": 4, ".": {"_count": 4}}}, "m": {"_count": 6, "": {"_count": 5, ".": {"_count": 5}}, "name": {"_count": 1, "": {"_count": 1}}}, "430": {"_count": 1, "p": {"_count": 1, "": {"_count": 1}}}, "booklist": {"_count": 6, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "need": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}}, "harassedlooking": {"_count": 5, "wizard": {"_count": 2, "stood": {"_count": 1}, "was": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "Fudge": {"_count": 1, "had": {"_count": 1}}, "woman": {"_count": 1, "came": {"_count": 1}}}, "Calmly": {"_count": 1, "please": {"_count": 1, "ladies": {"_count": 1}}}, "ladies": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 5, "gentlemen": {"_count": 5}}, "in": {"_count": 1, "the": {"_count": 1}}, "bathroom": {"_count": 1, "": {"_count": 1}}}, "breathless": {"_count": 17, "and": {"_count": 4, "kept": {"_count": 1}, "disorientated": {"_count": 1}, "looked": {"_count": 1}, "imploring": {"_count": 1}}, "with": {"_count": 3, "fear": {"_count": 1}, "interest": {"_count": 1}, "laughter": {"_count": 1}}, "but": {"_count": 2, "his": {"_count": 1}, "wearing": {"_count": 1}}, "voice": {"_count": 2, "Professor": {"_count": 1}, "called": {"_count": 1}}, "desperate": {"_count": 1, "windswept": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "third": {"_count": 1, "year": {"_count": 1}}, "alarmed": {"_count": 1, "at": {"_count": 1}}}, "seated": {"_count": 21, "at": {"_count": 6, "a": {"_count": 2}, "the": {"_count": 3}, "last": {"_count": 1}}, "Lockhart": {"_count": 1, "cleared": {"_count": 1}}, "herself": {"_count": 3, "in": {"_count": 2}, "behind": {"_count": 1}}, "themselves": {"_count": 1, "on": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "every": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "while": {"_count": 2, "I": {"_count": 1}, "their": {"_count": 1}}, "and": {"_count": 1, "quiet": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "underneath": {"_count": 1, "this": {"_count": 1}}, "directly": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "insecurely": {"_count": 1}}}, "dazzlingly": {"_count": 3, "white": {"_count": 2, "teeth": {"_count": 2}}, "full": {"_count": 1, "of": {"_count": 1}}}, "menot": {"_count": 1, "blue": {"_count": 1, "that": {"_count": 1}}}, "matched": {"_count": 7, "his": {"_count": 1, "eyes": {"_count": 1}}, "only": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 1, "fluffy": {"_count": 1}}, "their": {"_count": 1, "names": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "between": {"_count": 1}}, "perhaps": {"_count": 1, "that": {"_count": 1}}}, "angle": {"_count": 17, "on": {"_count": 1, "his": {"_count": 1}}, "riddled": {"_count": 1, "with": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "crowd": {"_count": 1}}, "was": {"_count": 1, "Ron": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "Mars": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 2, "conceal": {"_count": 1}, "Saturn": {"_count": 1}}, "We": {"_count": 1, "dont": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "irritablelooking": {"_count": 1, "man": {"_count": 1, "was": {"_count": 1}}}, "emitted": {"_count": 8, "puffs": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 5, "soft": {"_count": 1}, "loud": {"_count": 1}, "number": {"_count": 1}, "faintly": {"_count": 1}, "highpitched": {"_count": 1}}, "sparks": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}}, "puffs": {"_count": 7, "of": {"_count": 6, "purple": {"_count": 1}, "smoke": {"_count": 2}, "pale": {"_count": 1}, "silver": {"_count": 1}, "colored": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}}, "Big": {"_count": 18, "deal": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "trouble": {"_count": 1, "it": {"_count": 1}}, "bones": {"_count": 2, "": {"_count": 2}}, "D": {"_count": 5, "said": {"_count": 1}, "": {"_count": 4}}, "and": {"_count": 2, "wearing": {"_count": 2}}, "surprise": {"_count": 2, "said": {"_count": 1}, "whispered": {"_count": 1}}, "er": {"_count": 1, "winged": {"_count": 1}}, "birthday": {"_count": 1, "treat": {"_count": 1}}, "bloke": {"_count": 1, "": {"_count": 1}}}, "photographer": {"_count": 7, "had": {"_count": 1, "stepped": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "couldnt": {"_count": 1, "stand": {"_count": 1}}, "seemed": {"_count": 1, "keenest": {"_count": 1}}, "friend": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "made": {"_count": 1, "their": {"_count": 1}}}, "Together": {"_count": 20, "you": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 11, "heaved": {"_count": 1}, "climbed": {"_count": 1}, "peered": {"_count": 1}, "managed": {"_count": 1}, "traipsed": {"_count": 1}, "guided": {"_count": 1}, "moved": {"_count": 1}, "stood": {"_count": 1}, "ran": {"_count": 1}, "raised": {"_count": 1}, "carried": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "we": {"_count": 1, "will": {"_count": 1}}, "with": {"_count": 1, "Ron": {"_count": 1}}, "he": {"_count": 5, "and": {"_count": 4}, "said": {"_count": 1}}}, "sidle": {"_count": 2, "back": {"_count": 1, "over": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}}, "Ladies": {"_count": 8, "and": {"_count": 7, "gentlemen": {"_count": 7}}, "first": {"_count": 1, "he": {"_count": 1}}}, "gentlemen": {"_count": 12, "he": {"_count": 1, "said": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "kindly": {"_count": 1, "welcome": {"_count": 1}}, "ghosts": {"_count": 1, "and": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "in": {"_count": 1, "five": {"_count": 1}}, "the": {"_count": 1, "third": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}}, "announcement": {"_count": 7, "Ive": {"_count": 1, "been": {"_count": 1}}, "at": {"_count": 1, "breakfast": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "until": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "Eileen": {"_count": 1}}, "saying": {"_count": 1, "that": {"_count": 1}}}, "charge": {"_count": 33, "The": {"_count": 1, "crowd": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 10}, "!": {"_count": 1}}, "the": {"_count": 1, "dementors": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "Hogwarts": {"_count": 1}}, "something": {"_count": 1, "in": {"_count": 1}}, "were": {"_count": 1, "surging": {"_count": 1}}, "he": {"_count": 2, "founded": {"_count": 1}, "wasnt": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 1}, "Mr": {"_count": 2}, "all": {"_count": 1}}, "produce": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "surge": {"_count": 1, "through": {"_count": 1}}, "seemed": {"_count": 1, "the": {"_count": 1}}, "here": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "to": {"_count": 1, "pull": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "applauded": {"_count": 9, "again": {"_count": 2, "": {"_count": 2}}, "but": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 1, "they": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "and": {"_count": 1, "Fudge": {"_count": 1}}}, "schoolmates": {"_count": 2, "will": {"_count": 1, "in": {"_count": 1}}, "wont": {"_count": 1, "think": {"_count": 1}}}, "pride": {"_count": 24, "in": {"_count": 4, "announcing": {"_count": 1}, "his": {"_count": 1}, "Hermiones": {"_count": 1}, "her": {"_count": 1}}, "of": {"_count": 1, "place": {"_count": 1}}, "myself": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "at": {"_count": 1, "having": {"_count": 1}}, "and": {"_count": 6, "see": {"_count": 1}, "independence": {"_count": 1}, "joy": {"_count": 1}, "a": {"_count": 1}, "so": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 2}}, "inside": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "belief": {"_count": 1}}, "he": {"_count": 1, "knew": {"_count": 1}}}, "announcing": {"_count": 8, "that": {"_count": 5, "this": {"_count": 2}, "unfortunately": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "their": {"_count": 1, "engagement": {"_count": 1}}, "his": {"_count": 1, "election": {"_count": 1}}, "Voldemorts": {"_count": 1, "return": {"_count": 1}}}, "presented": {"_count": 8, "with": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 1, "defense": {"_count": 1}}, "this": {"_count": 1, "work": {"_count": 1}}, "him": {"_count": 2, "with": {"_count": 1}, "most": {"_count": 1}}, "himself": {"_count": 1, "outside": {"_count": 1}}, "outright": {"_count": 1, "with": {"_count": 1}}}, "entire": {"_count": 32, "works": {"_count": 1, "of": {"_count": 1}}, "body": {"_count": 2, "was": {"_count": 1}, "that": {"_count": 1}}, "drawer": {"_count": 1, "to": {"_count": 1}}, "school": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "life": {"_count": 1, "": {"_count": 1}}, "cauldronful": {"_count": 1, "Snape": {"_count": 1}}, "side": {"_count": 1, "of": {"_count": 1}}, "wood": {"_count": 1, "like": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "wizarding": {"_count": 1, "world": {"_count": 1}}, "class": {"_count": 1, "to": {"_count": 1}}, "ham": {"_count": 1, "up": {"_count": 1}}, "alleyway": {"_count": 1, "blinding": {"_count": 1}}, "Wizengamot": {"_count": 1, "had": {"_count": 1}}, "conversation": {"_count": 1, "with": {"_count": 1}}, "roll": {"_count": 1, "in": {"_count": 1}}, "ink": {"_count": 1, "bottle": {"_count": 1}}, "head": {"_count": 1, "was": {"_count": 1}}, "Weasley": {"_count": 1, "family": {"_count": 1}}, "year": {"_count": 1, "he": {"_count": 1}}, "fried": {"_count": 1, "egg": {"_count": 1}}, "stock": {"_count": 1, "of": {"_count": 1}}, "contents": {"_count": 1, "of": {"_count": 1}}, "party": {"_count": 1, "of": {"_count": 1}}, "chapter": {"_count": 2, "to": {"_count": 2}}, "bottle": {"_count": 1, "of": {"_count": 1}}, "country": {"_count": 1, "said": {"_count": 1}}, "Dumbledore": {"_count": 1, "family": {"_count": 1}}}, "Staggering": {"_count": 3, "slightly": {"_count": 1, "under": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}}, "limelight": {"_count": 2, "to": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "once": {"_count": 1}}}, "recognizing": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "defeat": {"_count": 1, "followed": {"_count": 1}}, "as": {"_count": 1, "Voldemort": {"_count": 1}}, "potions": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}}, "girlfriend": {"_count": 18, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 1}, "!": {"_count": 1}}, "Penelope": {"_count": 2, "Clearwater": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "and": {"_count": 2, "she": {"_count": 1}, "start": {"_count": 1}}, "she": {"_count": 1, "could": {"_count": 1}}, "started": {"_count": 1, "kissing": {"_count": 1}}, "seemed": {"_count": 1, "glued": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "even": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}}, "drawled": {"_count": 8, "Malfoy": {"_count": 3, "": {"_count": 1}, "Weasleys": {"_count": 1}, "whose": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "loud": {"_count": 1, "enough": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}}, "sole": {"_count": 8, "of": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "witness": {"_count": 2, "": {"_count": 1}, "snarled": {"_count": 1}}, "topic": {"_count": 1, "of": {"_count": 1}}, "breadwinner": {"_count": 1, "of": {"_count": 1}}, "proviso": {"_count": 1, "that": {"_count": 1}}, "control": {"_count": 1, "of": {"_count": 1}}}, "shoe": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}, "burned": {"_count": 1, "away": {"_count": 1}}}, "paying": {"_count": 26, "you": {"_count": 3, "overtime": {"_count": 1}, "Winky": {"_count": 1}, "back": {"_count": 1}}, "attention": {"_count": 7, "said": {"_count": 1}, "": {"_count": 3}, "over": {"_count": 1}, "properly": {"_count": 1}, "to": {"_count": 1}}, "more": {"_count": 2, "attention": {"_count": 2}}, "now": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 2, "his": {"_count": 2}}, "miss": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "much": {"_count": 3, "attention": {"_count": 3}}, "him": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "any": {"_count": 1}}, "the": {"_count": 2, "slightest": {"_count": 2}}}, "extracted": {"_count": 13, "from": {"_count": 4, "amid": {"_count": 1}, "her": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 3, "money": {"_count": 1}, "cloak": {"_count": 1}, "rucksack": {"_count": 1}}, "all": {"_count": 1, "useful": {"_count": 1}}, "a": {"_count": 1, "copy": {"_count": 1}}, "her": {"_count": 1, "own": {"_count": 1}}, "this": {"_count": 1, "memory": {"_count": 1}}, "the": {"_count": 1, "tiny": {"_count": 1}}, "Harrys": {"_count": 1, "books": {"_count": 1}}}, "glossy": {"_count": 9, "Lockhart": {"_count": 1, "books": {"_count": 1}}, "purple": {"_count": 1, "envelope": {"_count": 1}}, "feathers": {"_count": 2, "": {"_count": 1}, "slipped": {"_count": 1}}, "rats": {"_count": 1, "in": {"_count": 1}}, "black": {"_count": 1, "head": {"_count": 1}}, "chestnut": {"_count": 1, "horse": {"_count": 1}}, "book": {"_count": 1, "": {"_count": 1}}, "ribbon": {"_count": 1, "": {"_count": 1}}}, "disgrace": {"_count": 4, "to": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "darker": {"_count": 20, "than": {"_count": 6, "either": {"_count": 1}, "it": {"_count": 1}, "ever": {"_count": 1}, "the": {"_count": 1}, "before": {"_count": 1}, "Harry": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "while": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "slowly": {"_count": 1, "the": {"_count": 1}}, "less": {"_count": 1, "crowded": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "street": {"_count": 1, "he": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}}, "disgraces": {"_count": 1, "the": {"_count": 1, "name": {"_count": 1}}}, "apprehensively": {"_count": 16, "": {"_count": 6, ".": {"_count": 6}}, "at": {"_count": 2, "the": {"_count": 1}, "Moody": {"_count": 1}}, "but": {"_count": 3, "he": {"_count": 1}, "when": {"_count": 1}, "Moody": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "the": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}}, "bookshelf": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "which": {"_count": 1}}, "in": {"_count": 1, "Flourish": {"_count": 1}}}, "Dozens": {"_count": 1, "of": {"_count": 1, "heavy": {"_count": 1}}}, "thundering": {"_count": 24, "down": {"_count": 5, "on": {"_count": 1}, "the": {"_count": 3}, "a": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 3, "Charing": {"_count": 1}, "ahead": {"_count": 1}, "in": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 2}, "and": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "my": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "equal": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "past": {"_count": 1, "followed": {"_count": 1}}}, "stampeded": {"_count": 3, "backward": {"_count": 1, "knocking": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "past": {"_count": 1, "Harry": {"_count": 1}}}, "Gentlemen": {"_count": 2, "please": {"_count": 1, "please": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "gents": {"_count": 1, "break": {"_count": 1, "it": {"_count": 1}}}, "wading": {"_count": 1, "toward": {"_count": 1, "them": {"_count": 1}}}, "Encyclopedia": {"_count": 1, "of": {"_count": 1, "Toadstools": {"_count": 1}}}, "Toadstools": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "thrust": {"_count": 35, "it": {"_count": 4, "at": {"_count": 1}, "under": {"_count": 1}, "out": {"_count": 1}, "up": {"_count": 1}}, "an": {"_count": 1, "arm": {"_count": 1}}, "the": {"_count": 12, "suitcase": {"_count": 1}, "letter": {"_count": 3}, "sack": {"_count": 1}, "final": {"_count": 1}, "prophecy": {"_count": 1}, "tray": {"_count": 1}, "bezoar": {"_count": 1}, "socks": {"_count": 1}, "blackthorn": {"_count": 1}, "sword": {"_count": 1}}, "out": {"_count": 1, "his": {"_count": 1}}, "roughly": {"_count": 1, "into": {"_count": 1}}, "his": {"_count": 7, "fist": {"_count": 1}, "head": {"_count": 1}, "wand": {"_count": 2}, "hand": {"_count": 2}, "own": {"_count": 1}}, "Freds": {"_count": 1, "clipboard": {"_count": 1}}, "aside": {"_count": 1, "by": {"_count": 1}}, "Harry": {"_count": 1, "backward": {"_count": 1}}, "into": {"_count": 3, "the": {"_count": 1}, "icy": {"_count": 1}, "his": {"_count": 1}}, "what": {"_count": 1, "appeared": {"_count": 1}}, "The": {"_count": 1, "Life": {"_count": 1}}, "upon": {"_count": 1, "them": {"_count": 1}}}, "malice": {"_count": 6, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "everywhere": {"_count": 1}}}, "shouldve": {"_count": 22, "ignored": {"_count": 1, "him": {"_count": 1}}, "known": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Neville": {"_count": 1}}, "helped": {"_count": 1, "as": {"_count": 1}}, "let": {"_count": 1, "Snape": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "interviewed": {"_count": 1, "Snape": {"_count": 1}}, "learned": {"_count": 1, "to": {"_count": 1}}, "seen": {"_count": 1, "Snapes": {"_count": 1}}, "got": {"_count": 2, "more": {"_count": 1}, "E": {"_count": 1}}, "done": {"_count": 2, "that": {"_count": 1}, "it": {"_count": 1}}, "been": {"_count": 3, "Cedrics": {"_count": 2}, "a": {"_count": 1}}, "stopped": {"_count": 1, "them": {"_count": 1}}, "grabbed": {"_count": 1, "the": {"_count": 1}}, "used": {"_count": 1, "Muffliato": {"_count": 1}}, "heard": {"_count": 1, "Twycross": {"_count": 1}}, "shown": {"_count": 1, "the": {"_count": 1}}, "recognized": {"_count": 1, "him": {"_count": 1}}}, "Rotten": {"_count": 1, "ter": {"_count": 1, "the": {"_count": 1}}}, "listenin": {"_count": 1, "ter": {"_count": 1, "bad": {"_count": 1}}}, "example": {"_count": 11, "to": {"_count": 1, "set": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "for": {"_count": 1, "your": {"_count": 1}}, "Mother": {"_count": 1, "said": {"_count": 1}}, "from": {"_count": 1, "plowing": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "making": {"_count": 1, "it": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "perhaps": {"_count": 1, "by": {"_count": 1}}}, "brawling": {"_count": 1, "in": {"_count": 1, "public": {"_count": 1}}}, "publicity": {"_count": 7, "But": {"_count": 1, "it": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "photos": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Neville": {"_count": 1}}, "for": {"_count": 1, "Skeeter": {"_count": 1}}}, "subdued": {"_count": 10, "group": {"_count": 1, "that": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "in": {"_count": 1, "Hermione": {"_count": 1}}, "since": {"_count": 1, "Gryffindors": {"_count": 1}}, "table": {"_count": 1, "before": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "affair": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "all": {"_count": 1, "through": {"_count": 1}}}, "fireside": {"_count": 8, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 6, "completing": {"_count": 1}, "staring": {"_count": 1}, "he": {"_count": 1}, "addressing": {"_count": 1}, "talk": {"_count": 1}, "sank": {"_count": 1}}, "he": {"_count": 1, "leapt": {"_count": 1}}}, "traveling": {"_count": 55, "back": {"_count": 1, "to": {"_count": 1}}, "cloak": {"_count": 27, "smiling": {"_count": 1}, "": {"_count": 8}, "pulled": {"_count": 1}, "over": {"_count": 2}, "lay": {"_count": 1}, "billowing": {"_count": 1}, "Im": {"_count": 1}, "and": {"_count": 3}, "a": {"_count": 1}, "round": {"_count": 1}, "in": {"_count": 1}, "barely": {"_count": 1}, "he": {"_count": 1}, "imbued": {"_count": 1}, "Fleur": {"_count": 1}, "his": {"_count": 1}, "back": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 2}, "with": {"_count": 1}}, "very": {"_count": 1, "slowly": {"_count": 1}}, "lost": {"_count": 1, "hospital": {"_count": 1}}, "a": {"_count": 1, "second": {"_count": 1}}, "for": {"_count": 1, "days": {"_count": 1}}, "by": {"_count": 2, "Floo": {"_count": 1}, "Apparition": {"_count": 1}}, "without": {"_count": 2, "magic": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "basket": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "even": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "with": {"_count": 4, "me": {"_count": 1}, "Tonks": {"_count": 1}, "arry": {"_count": 1}, "Harry": {"_count": 1}}, "along": {"_count": 1, "a": {"_count": 1}}, "cloaks": {"_count": 2, "over": {"_count": 1}, "others": {"_count": 1}}, "farther": {"_count": 1, "and": {"_count": 1}}, "deeper": {"_count": 1, "and": {"_count": 1}}}, "travel": {"_count": 12, "": {"_count": 2, ".": {"_count": 2}}, "past": {"_count": 1, "swirls": {"_count": 1}}, "by": {"_count": 3, "fire": {"_count": 1}, "nigh": {"_count": 1}, "magic": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 2, "Dean": {"_count": 1}, "Snape": {"_count": 1}}, "adventure": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 1, "far": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}}, "5": {"_count": 9, "THE": {"_count": 3, "WHOMPING": {"_count": 1}, "DEMENTOR": {"_count": 1}, "ORDER": {"_count": 1}}, "WEASLEYS": {"_count": 1, "WIZARD": {"_count": 1}}, "by": {"_count": 1, "Miranda": {"_count": 1}}, "caused": {"_count": 1, "outrage": {"_count": 1}}, "and": {"_count": 1, "Parvati": {"_count": 1}}, "MILES": {"_count": 1, "": {"_count": 1}}, "FALLEN": {"_count": 1, "WARRIOR": {"_count": 1}}}, "WHOMPING": {"_count": 1, "WILLOW": {"_count": 1, "The": {"_count": 1}}}, "WILLOW": {"_count": 1, "The": {"_count": 1, "end": {"_count": 1}}}, "sumptuous": {"_count": 3, "dinner": {"_count": 1, "that": {"_count": 1}}, "chocolate": {"_count": 1, "pudding": {"_count": 1}}, "tree": {"_count": 1, "house": {"_count": 1}}}, "included": {"_count": 15, "all": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 5, "man": {"_count": 1}, "feast": {"_count": 1}, "surprise": {"_count": 1}, "large": {"_count": 1}, "sweater": {"_count": 1}}, "turning": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "the": {"_count": 1, "hiring": {"_count": 1}}, "want": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "Lupin": {"_count": 1}}, "doing": {"_count": 1, "some": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "by": {"_count": 1, "the": {"_count": 1}}}, "mouthwatering": {"_count": 1, "treacle": {"_count": 1, "pudding": {"_count": 1}}}, "Filibuster": {"_count": 6, "fireworks": {"_count": 4, "they": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 1}, "and": {"_count": 1}}, "firework": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "mug": {"_count": 18, "of": {"_count": 4, "hot": {"_count": 2}, "tea": {"_count": 2}}, "from": {"_count": 2, "the": {"_count": 1}, "which": {"_count": 1}}, "and": {"_count": 2, "dropped": {"_count": 1}, "his": {"_count": 1}}, "slipped": {"_count": 1, "through": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "between": {"_count": 1, "her": {"_count": 1}}, "high": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "tree": {"_count": 1, "as": {"_count": 1}}, "for": {"_count": 1, "comfort": {"_count": 1}}}, "spare": {"_count": 36, "socks": {"_count": 1, "and": {"_count": 1}}, "robes": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "ones": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 4, "the": {"_count": 1}, "": {"_count": 2}, "life": {"_count": 1}}, "bedroom": {"_count": 1, "taking": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "key": {"_count": 1, "hanging": {"_count": 1}}, "for": {"_count": 3, "talking": {"_count": 1}, "Bode": {"_count": 1}, "window": {"_count": 1}}, "anyone": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "table": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "niffler": {"_count": 1, "here": {"_count": 1}}, "seat": {"_count": 1, "like": {"_count": 1}}, "she": {"_count": 1, "kept": {"_count": 1}}, "quills": {"_count": 2, "his": {"_count": 1}, "ink": {"_count": 1}}, "a": {"_count": 3, "thought": {"_count": 1}, "bit": {"_count": 1}, "waterfall": {"_count": 1}}, "Invisibility": {"_count": 2, "Cloak": {"_count": 2}}, "on": {"_count": 1, "conversations": {"_count": 1}}, "your": {"_count": 1, "life": {"_count": 1}}, "if": {"_count": 1, "anybody": {"_count": 1}}, "hair": {"_count": 1, "bows": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "feelings": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}}, "colliding": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "it": {"_count": 1}}}, "halfdressed": {"_count": 1, "with": {"_count": 1, "bits": {"_count": 1}}}, "Ford": {"_count": 5, "Anglia": {"_count": 5, "": {"_count": 1}, "was": {"_count": 1}, "they": {"_count": 1}, "OUT": {"_count": 1}, "although": {"_count": 1}}}, "Anglia": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "parked": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "OUT": {"_count": 1, "": {"_count": 1}}, "although": {"_count": 1, "normally": {"_count": 1}}}, "reckoned": {"_count": 3, "of": {"_count": 1, "course": {"_count": 1}}, "on": {"_count": 1, "Hermiones": {"_count": 1}}, "that": {"_count": 1, "symbol": {"_count": 1}}}, "features": {"_count": 22, "that": {"_count": 1, "Mr": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "look": {"_count": 1, "oddly": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 2}}, "hastily": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "he": {"_count": 1, "loathed": {"_count": 1}}, "seemed": {"_count": 1, "somehow": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "an": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "thick": {"_count": 1, "with": {"_count": 1}}, "recall": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "made": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "sliding": {"_count": 1, "in": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}}, "magically": {"_count": 23, "expanded": {"_count": 1, "so": {"_count": 1}}, "magnified": {"_count": 7, "": {"_count": 1}, "to": {"_count": 1}, "voice": {"_count": 3}, "so": {"_count": 2}}, "open": {"_count": 1, "as": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "lock": {"_count": 1, "it": {"_count": 1}}, "illuminated": {"_count": 1, "so": {"_count": 1}}, "before": {"_count": 1, "their": {"_count": 1}}, "sealing": {"_count": 1, "its": {"_count": 1}}, "blank": {"_count": 1, "until": {"_count": 1}}, "protected": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "song": {"_count": 1}}, "enlarged": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "destroyed": {"_count": 1, "": {"_count": 1}}, "covering": {"_count": 1, "their": {"_count": 1}}, "turning": {"_count": 1, "cogs": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "expanded": {"_count": 9, "so": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "enormous": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "gratefully": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 1, "more": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "comfortably": {"_count": 13, "side": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "inside": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "unrolled": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "playing": {"_count": 1, "Dumbledores": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "sit": {"_count": 1, "but": {"_count": 1}}, "as": {"_count": 1, "two": {"_count": 1}}, "well": {"_count": 1, "fed": {"_count": 1}}}, "resembled": {"_count": 24, "a": {"_count": 7, "park": {"_count": 1}, "halfplucked": {"_count": 1}, "veela": {"_count": 1}, "diary": {"_count": 1}, "gray": {"_count": 1}, "twoseater": {"_count": 1}, "large": {"_count": 1}}, "Neville": {"_count": 1, "Longbottom": {"_count": 1}}, "his": {"_count": 1, "father": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "an": {"_count": 2, "oversized": {"_count": 1}, "anthill": {"_count": 1}}, "mosscolored": {"_count": 1, "boulders": {"_count": 1}}, "that": {"_count": 1, "of": {"_count": 1}}, "nothing": {"_count": 1, "so": {"_count": 1}}, "her": {"_count": 1, "sisters": {"_count": 1}}, "the": {"_count": 2, "smooth": {"_count": 1}, "Room": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "golden": {"_count": 1, "ear": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 1, "closely": {"_count": 1}}, "Draco": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "park": {"_count": 9, "bench": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "considerable": {"_count": 1}}, "smoking": {"_count": 1, "on": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "gate": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "was": {"_count": 1, "as": {"_count": 1}}, "railings": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "roomy": {"_count": 4, "from": {"_count": 1, "the": {"_count": 1}}, "secret": {"_count": 1, "passageway": {"_count": 1}}, "comfort": {"_count": 1, "in": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}}, "trundled": {"_count": 4, "out": {"_count": 1, "of": {"_count": 1}}, "toward": {"_count": 1, "a": {"_count": 1}}, "swaying": {"_count": 1, "dangerously": {"_count": 1}}, "downward": {"_count": 1, "once": {"_count": 1}}}, "skidded": {"_count": 23, "to": {"_count": 12, "a": {"_count": 11}, "the": {"_count": 1}}, "around": {"_count": 4, "for": {"_count": 1}, "the": {"_count": 1}, "another": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 1, "length": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "diary": {"_count": 105, "": {"_count": 18, ".": {"_count": 17}, "?": {"_count": 1}}, "and": {"_count": 9, "the": {"_count": 1}, "told": {"_count": 1}, "looking": {"_count": 1}, "how": {"_count": 2}, "showing": {"_count": 1}, "dashed": {"_count": 1}, "had": {"_count": 1}, "I": {"_count": 1}}, "from": {"_count": 3, "Vauxhall": {"_count": 1}, "Harry": {"_count": 1}, "Trelawney": {"_count": 1}}, "is": {"_count": 1, "fifty": {"_count": 1}}, "would": {"_count": 2, "probably": {"_count": 1}, "cause": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "for": {"_count": 4, "Christmas": {"_count": 1}, "fifty": {"_count": 1}, "a": {"_count": 1}, "Trelawney": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 8, "blank": {"_count": 1}, "right": {"_count": 1}, "opened": {"_count": 1}, "discovered": {"_count": 1}, "one": {"_count": 1}, "properly": {"_count": 1}, "possessing": {"_count": 1}, "destroyed": {"_count": 1}}, "to": {"_count": 4, "Harry": {"_count": 1}, "confide": {"_count": 1}, "me": {"_count": 1}, "be": {"_count": 1}}, "tauntingly": {"_count": 1, "at": {"_count": 1}}, "shooting": {"_count": 1, "out": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "read": {"_count": 2, "": {"_count": 1}, "wanted": {"_count": 1}}, "holds": {"_count": 1, "memories": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "lying": {"_count": 1, "open": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "said": {"_count": 4, "Riddle": {"_count": 2}, "Harry": {"_count": 1}, "\u2018Dumbledore": {"_count": 1}}, "entries": {"_count": 1, "": {"_count": 1}}, "preserving": {"_count": 1, "my": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "into": {"_count": 2, "me": {"_count": 1}, "it": {"_count": 1}}, "in": {"_count": 3, "torrents": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}}, "Its": {"_count": 1, "all": {"_count": 1}}, "or": {"_count": 1, "Ginny": {"_count": 1}}, "didnt": {"_count": 1, "work": {"_count": 1}}, "then": {"_count": 2, "at": {"_count": 1}, "to": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "threw": {"_count": 1, "it": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "shut": {"_count": 1, "Ive": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "Riddles": {"_count": 1, "diary": {"_count": 1}}, "the": {"_count": 1, "one": {"_count": 1}}, "what": {"_count": 1, "you": {"_count": 1}}, "had": {"_count": 5, "been": {"_count": 5}}, "wasnt": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "really": {"_count": 1, "was": {"_count": 1}}, "upon": {"_count": 1, "Arthur": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "she": {"_count": 1, "made": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "long": {"_count": 1}}}, "tempers": {"_count": 3, "were": {"_count": 1, "running": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "ran": {"_count": 1, "a": {"_count": 1}}}, "button": {"_count": 18, "here": {"_count": 1, "is": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "but": {"_count": 1, "all": {"_count": 1}}, "mushroom": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "for": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "grilles": {"_count": 1}}, "to": {"_count": 1, "call": {"_count": 1}}, "marked": {"_count": 1, "Atrium": {"_count": 1}}, "near": {"_count": 2, "the": {"_count": 2}}, "beside": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "with": {"_count": 1}}}, "Booster": {"_count": 2, "I": {"_count": 1, "installed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "installed": {"_count": 2, "thatd": {"_count": 1, "get": {"_count": 1}}, "three": {"_count": 1, "summers": {"_count": 1}}}, "thatd": {"_count": 9, "get": {"_count": 1, "us": {"_count": 1}}, "be": {"_count": 4, "a": {"_count": 1}, "": {"_count": 2}, "great": {"_count": 1}}, "hold": {"_count": 1, "me": {"_count": 1}}, "explain": {"_count": 1, "it": {"_count": 1}}, "work": {"_count": 1, "though": {"_count": 1}}, "look": {"_count": 1, "a": {"_count": 1}}}, "wiser": {"_count": 5, "I": {"_count": 1, "said": {"_count": 1}}, "wizards": {"_count": 1, "than": {"_count": 1}}, "about": {"_count": 1, "who": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "trolleys": {"_count": 6, "for": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "walked": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "unloaded": {"_count": 1, "their": {"_count": 1}}, "just": {"_count": 1, "stopped": {"_count": 1}}, "the": {"_count": 1, "parents": {"_count": 1}}}, "previous": {"_count": 70, "year": {"_count": 17, "": {"_count": 10}, "meaning": {"_count": 1}, "at": {"_count": 1}, "though": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "they": {"_count": 1}, "finally": {"_count": 1}}, "headmasters": {"_count": 4, "of": {"_count": 1}, "and": {"_count": 2}, "were": {"_count": 1}}, "summer": {"_count": 2, "and": {"_count": 2}}, "night": {"_count": 7, "and": {"_count": 1}, "": {"_count": 2}, "rolled": {"_count": 1}, "in": {"_count": 1}, "by": {"_count": 1}, "which": {"_count": 1}}, "Dark": {"_count": 1, "Arts": {"_count": 1}}, "occupants": {"_count": 2, "": {"_count": 2}}, "day": {"_count": 2, "": {"_count": 1}, "Hermione": {"_count": 1}}, "one": {"_count": 3, "": {"_count": 3}}, "September": {"_count": 1, "": {"_count": 1}}, "offense": {"_count": 1, "under": {"_count": 1}}, "evening": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "written": {"_count": 1, "warning": {"_count": 1}}, "occasion": {"_count": 1, "when": {"_count": 1}}, "two": {"_count": 1, "except": {"_count": 1}}, "Monday": {"_count": 1, "nor": {"_count": 1}}, "teachers": {"_count": 1, "in": {"_count": 1}}, "Christmas": {"_count": 1, "would": {"_count": 1}}, "Tuesday": {"_count": 1, "": {"_count": 1}}, "proportions": {"_count": 1, "again": {"_count": 1}}, "conversations": {"_count": 1, "": {"_count": 1}}, "term": {"_count": 1, "that": {"_count": 1}}, "owner": {"_count": 7, "had": {"_count": 3}, "who": {"_count": 1}, "vanishing": {"_count": 1}, "if": {"_count": 1}, "to": {"_count": 1}}, "experiences": {"_count": 1, "with": {"_count": 1}}, "lesson": {"_count": 2, "": {"_count": 2}}, "condition": {"_count": 1, "they": {"_count": 1}}, "state": {"_count": 1, "of": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "four": {"_count": 1, "weeks": {"_count": 1}}, "assertion": {"_count": 1, "that": {"_count": 1}}, "trip": {"_count": 1, "into": {"_count": 1}}, "master": {"_count": 2, "": {"_count": 1}, "will": {"_count": 1}}}, "wedged": {"_count": 3, "on": {"_count": 1, "top": {"_count": 1}}, "tightly": {"_count": 1, "into": {"_count": 1}}, "together": {"_count": 1, "so": {"_count": 1}}}, "confident": {"_count": 23, "this": {"_count": 1, "wasnt": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "smile": {"_count": 1, "off": {"_count": 1}}, "voices": {"_count": 1, "like": {"_count": 1}}, "voice": {"_count": 1, "But": {"_count": 1}}, "about": {"_count": 1, "this": {"_count": 1}}, "that": {"_count": 7, "this": {"_count": 1}, "the": {"_count": 3}, "none": {"_count": 2}, "your": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "now": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "nobody": {"_count": 1}}, "and": {"_count": 1, "cheerful": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 1}, "Harry": {"_count": 1}}, "however": {"_count": 1, "that": {"_count": 1}}, "himself": {"_count": 1, "and": {"_count": 1}}, "Ill": {"_count": 1, "get": {"_count": 1}}}, "handles": {"_count": 6, "of": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "seven": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "made": {"_count": 1, "of": {"_count": 1}}, "otherwise": {"_count": 1, "see": {"_count": 1}}}, "purposefully": {"_count": 5, "toward": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "blazes": {"_count": 2, "dyou": {"_count": 1, "think": {"_count": 1}}, "is": {"_count": 1, "calling": {"_count": 1}}}, "dyou": {"_count": 166, "think": {"_count": 25, "youre": {"_count": 5}, "this": {"_count": 1}, "its": {"_count": 1}, "That": {"_count": 1}, "it": {"_count": 1}, "Harrys": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 4}, "Ive": {"_count": 1}, "Im": {"_count": 1}, "you": {"_count": 1}, "Sirius": {"_count": 1}, "Dumbledores": {"_count": 1}, "all": {"_count": 1}, "Dumbledore": {"_count": 1}, "she": {"_count": 1}, "I": {"_count": 2}}, "mean": {"_count": 46, "a": {"_count": 2}, "your": {"_count": 1}, "": {"_count": 23}, "she": {"_count": 1}, "I": {"_count": 1}, "he": {"_count": 2}, "of": {"_count": 1}, "congratulations": {"_count": 1}, "we": {"_count": 1}, "Im": {"_count": 1}, "draw": {"_count": 1}, "youre": {"_count": 1}, "Michael": {"_count": 1}, "whos": {"_count": 1}, "\u2018living": {"_count": 1}, "\u2018gone": {"_count": 2}, "\u2018no": {"_count": 1}, "you": {"_count": 1}, "Death": {"_count": 1}, "locked": {"_count": 1}, "\u2018get": {"_count": 1}}, "wear": {"_count": 1, "that": {"_count": 1}}, "know": {"_count": 21, "that": {"_count": 3}, "whats": {"_count": 1}, "about": {"_count": 2}, "what": {"_count": 3}, "": {"_count": 3}, "where": {"_count": 2}, "why": {"_count": 1}, "they": {"_count": 2}, "whos": {"_count": 1}, "him": {"_count": 1}, "Voldemort": {"_count": 1}, "its": {"_count": 1}}, "call": {"_count": 1, "this": {"_count": 1}}, "reckon": {"_count": 37, "": {"_count": 9}, "he": {"_count": 2}, "s": {"_count": 1}, "they": {"_count": 1}, "theyre": {"_count": 2}, "Durmstrangs": {"_count": 1}, "youre": {"_count": 1}, "Mr": {"_count": 1}, "Moodys": {"_count": 1}, "its": {"_count": 2}, "hes": {"_count": 1}, "it": {"_count": 1}, "we": {"_count": 1}, "Hagrid": {"_count": 1}, "that": {"_count": 2}, "are": {"_count": 1}, "itd": {"_count": 1}, "the": {"_count": 2}, "Harry": {"_count": 1}, "you": {"_count": 1}, "happened": {"_count": 1}, "Ron": {"_count": 1}, "theyll": {"_count": 1}, "itll": {"_count": 1}}, "want": {"_count": 11, "me": {"_count": 1}, "to": {"_count": 9}, "": {"_count": 1}}, "three": {"_count": 1, "know": {"_count": 1}}, "hide": {"_count": 1, "a": {"_count": 1}}, "have": {"_count": 1, "to": {"_count": 1}}, "reckonll": {"_count": 1, "happen": {"_count": 1}}, "two": {"_count": 1, "keep": {"_count": 1}}, "reckons": {"_count": 1, "wrong": {"_count": 1}}, "do": {"_count": 1, "sneak": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 5}, ".": {"_count": 1}}, "thinks": {"_count": 1, "got": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "get": {"_count": 1, "to": {"_count": 1}}, "mind": {"_count": 1, "if": {"_count": 1}}, "expect": {"_count": 1, "Firenze": {"_count": 1}}, "explain": {"_count": 1, "Rons": {"_count": 1}}, "reck": {"_count": 1, "": {"_count": 1}}, "honestly": {"_count": 1, "think": {"_count": 1}}, "work": {"_count": 1, "that": {"_count": 1}}, "spell": {"_count": 1, "\u2018belligerent": {"_count": 1}}, "feel": {"_count": 1, "": {"_count": 1}}}, "Lost": {"_count": 10, "control": {"_count": 1, "of": {"_count": 1}}, "appeal": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "take": {"_count": 1}}, "her": {"_count": 2, "have": {"_count": 1}, "nerve": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 3, "visions": {"_count": 1}, "thought": {"_count": 1}, "desperate": {"_count": 1}}, "an": {"_count": 1, "": {"_count": 1}}}, "causing": {"_count": 53, "such": {"_count": 1, "a": {"_count": 1}}, "mayhem": {"_count": 1, "in": {"_count": 1}}, "something": {"_count": 1, "of": {"_count": 1}}, "Ron": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 7, "intense": {"_count": 1}, "to": {"_count": 5}, "pain": {"_count": 1}}, "the": {"_count": 8, "ornament": {"_count": 1}, "driver": {"_count": 1}, "holdup": {"_count": 1}, "crowd": {"_count": 1}, "two": {"_count": 1}, "cup": {"_count": 1}, "examination": {"_count": 1}, "dirty": {"_count": 1}}, "a": {"_count": 5, "thunderous": {"_count": 1}, "diversion": {"_count": 1}, "bit": {"_count": 1}, "certain": {"_count": 1}, "stir": {"_count": 1}}, "them": {"_count": 3, "to": {"_count": 3}}, "several": {"_count": 2, "Hufflepuffs": {"_count": 1}, "booklets": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "Dobbys": {"_count": 1, "eyes": {"_count": 1}}, "all": {"_count": 2, "three": {"_count": 1}, "this": {"_count": 1}}, "pain": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 1, "Hagrids": {"_count": 1}}, "his": {"_count": 3, "face": {"_count": 1}, "hair": {"_count": 1}, "chest": {"_count": 1}}, "real": {"_count": 1, "mayhem": {"_count": 1}}, "Harry": {"_count": 3, "to": {"_count": 3}}, "much": {"_count": 1, "grumbling": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "emerald": {"_count": 1, "flames": {"_count": 1}}, "harm": {"_count": 1, "and": {"_count": 1}}, "her": {"_count": 1, "terrible": {"_count": 1}}, "both": {"_count": 1, "Harry": {"_count": 1}}, "water": {"_count": 1, "to": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "Pigwidgeon": {"_count": 1, "to": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "Hermione": {"_count": 1, "to": {"_count": 1}}}, "cruelty": {"_count": 6, "to": {"_count": 1, "animals": {"_count": 1}}, "at": {"_count": 1, "your": {"_count": 1}}, "secrecy": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 1, "happening": {"_count": 1}}}, "gateways": {"_count": 1, "sealed": {"_count": 1, "itself": {"_count": 1}}}, "pit": {"_count": 21, "of": {"_count": 14, "his": {"_count": 13}, "Harrys": {"_count": 1}}, "an": {"_count": 1, "underground": {"_count": 1}}, "some": {"_count": 1, "twenty": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "where": {"_count": 1, "the": {"_count": 1}}, "beside": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "said": {"_count": 1}}}, "cautiously": {"_count": 31, "until": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "and": {"_count": 2, "was": {"_count": 1}, "looked": {"_count": 1}}, "forward": {"_count": 1, "any": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "pointing": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 2}}, "onto": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "lowering": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "they": {"_count": 1, "proceeded": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}}, "remained": {"_count": 137, "solid": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "alone": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 8, "the": {"_count": 2}, "his": {"_count": 1}, "her": {"_count": 1}, "their": {"_count": 2}, "view": {"_count": 2}}, "of": {"_count": 7, "his": {"_count": 3}, "Riddles": {"_count": 1}, "the": {"_count": 2}, "them": {"_count": 1}}, "however": {"_count": 1, "that": {"_count": 1}}, "worried": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 6, "enjoy": {"_count": 1}, "me": {"_count": 1}, "see": {"_count": 1}, "be": {"_count": 1}, "bind": {"_count": 1}, "fight": {"_count": 1}}, "convinced": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "unguarded": {"_count": 1, "and": {"_count": 1}}, "standing": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "objects": {"_count": 1, "of": {"_count": 1}}, "where": {"_count": 6, "he": {"_count": 3}, "she": {"_count": 2}, "I": {"_count": 1}}, "that": {"_count": 2, "the": {"_count": 1}, "if": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "silent": {"_count": 5, "": {"_count": 2}, "though": {"_count": 1}, "while": {"_count": 1}, "and": {"_count": 1}}, "transfixed": {"_count": 1, "his": {"_count": 1}}, "motionless": {"_count": 3, "apparently": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "cold": {"_count": 1, "and": {"_count": 1}}, "still": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}}, "outside": {"_count": 1, "trying": {"_count": 1}}, "joined": {"_count": 1, "the": {"_count": 1}}, "immovable": {"_count": 2, "": {"_count": 2}}, "connected": {"_count": 1, "a": {"_count": 1}}, "unbroken": {"_count": 2, "": {"_count": 1}, "even": {"_count": 1}}, "faithful": {"_count": 2, "": {"_count": 1}, "although": {"_count": 1}}, "on": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 2}}, "calm": {"_count": 1, "": {"_count": 1}}, "defiantly": {"_count": 1, "in": {"_count": 1}}, "pointing": {"_count": 1, "up": {"_count": 1}}, "with": {"_count": 2, "Sirius": {"_count": 1}, "Harry": {"_count": 1}}, "sitting": {"_count": 3, "where": {"_count": 1}, "Lupin": {"_count": 1}, "beside": {"_count": 1}}, "bent": {"_count": 1, "double": {"_count": 1}}, "undecided": {"_count": 1, "as": {"_count": 1}}, "behind": {"_count": 5, "with": {"_count": 1}, "taking": {"_count": 1}, "sprinted": {"_count": 1}, "": {"_count": 1}, "kneeling": {"_count": 1}}, "scratched": {"_count": 1, "there": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}, "quite": {"_count": 8, "still": {"_count": 5}, "blank": {"_count": 1}, "stationary": {"_count": 1}, "dry": {"_count": 1}}, "as": {"_count": 2, "remote": {"_count": 1}, "firmly": {"_count": 1}}, "a": {"_count": 2, "little": {"_count": 1}, "question": {"_count": 1}}, "entirely": {"_count": 1, "silent": {"_count": 1}}, "close": {"_count": 2, "by": {"_count": 1}, "together": {"_count": 1}}, "firm": {"_count": 1, "upon": {"_count": 1}}, "confused": {"_count": 1, "and": {"_count": 1}}, "firmly": {"_count": 3, "planted": {"_count": 1}, "shut": {"_count": 1}, "doorless": {"_count": 1}}, "stubbornly": {"_count": 1, "sitting": {"_count": 1}}, "speechless": {"_count": 1, "throughout": {"_count": 1}}, "unlocked": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "light": {"_count": 1, "and": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "frozen": {"_count": 1, "his": {"_count": 1}}, "hidden": {"_count": 1, "and": {"_count": 1}}, "crouched": {"_count": 1, "down": {"_count": 1}}, "rooted": {"_count": 1, "to": {"_count": 1}}, "expressionless": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "so": {"_count": 1}}, "impassive": {"_count": 1, "as": {"_count": 1}}, "under": {"_count": 1, "Madam": {"_count": 1}}, "was": {"_count": 1, "when": {"_count": 1}}, "there": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 1, "hours": {"_count": 1}}, "deserted": {"_count": 1, "apart": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "stony": {"_count": 1, "above": {"_count": 1}}, "absolute": {"_count": 1, "": {"_count": 1}}, "shut": {"_count": 1, "in": {"_count": 1}}, "rather": {"_count": 1, "frightening": {"_count": 1}}, "fixed": {"_count": 1, "in": {"_count": 1}}, "below": {"_count": 1, "in": {"_count": 1}}, "seated": {"_count": 1, "while": {"_count": 1}}, "ten": {"_count": 1, "feet": {"_count": 1}}, "slumped": {"_count": 1, "hopelessly": {"_count": 1}}, "closed": {"_count": 1, "and": {"_count": 1}}, "kneeling": {"_count": 1, "at": {"_count": 1}}, "woefully": {"_count": 1, "incomplete": {"_count": 1}}, "exactly": {"_count": 1, "where": {"_count": 1}}}, "hollow": {"_count": 35, "laugh": {"_count": 3, "": {"_count": 3}}, "a": {"_count": 1, "hollow": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "while": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "before": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "sound": {"_count": 1}}, "and": {"_count": 3, "they": {"_count": 1}, "completely": {"_count": 1}, "insincere": {"_count": 1}}, "eye": {"_count": 1, "sockets": {"_count": 1}}, "dead": {"_count": 1, "sort": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 7, "sinking": {"_count": 1}, "": {"_count": 4}, "late": {"_count": 1}, "when": {"_count": 1}}, "tones": {"_count": 1, "when": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "sensation": {"_count": 1, "in": {"_count": 1}}, "cheeks": {"_count": 1, "he": {"_count": 1}}, "cheek": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "in": {"_count": 1}}, "smile": {"_count": 1, "but": {"_count": 1}}, "chest": {"_count": 1, "was": {"_count": 1}}, "inadequate": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 1, "speeches": {"_count": 1}}, "tree": {"_count": 2, "": {"_count": 2}}}, "tensely": {"_count": 12, "": {"_count": 8, ".": {"_count": 8}}, "looking": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "if": {"_count": 1, "hes": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "Whatre": {"_count": 21, "we": {"_count": 6, "going": {"_count": 5}, "doing": {"_count": 1}}, "you": {"_count": 12, "doing": {"_count": 6}, "doin": {"_count": 1}, "on": {"_count": 1}, "showing": {"_count": 1}, "two": {"_count": 1}, "going": {"_count": 2}}, "those": {"_count": 1, "things": {"_count": 1}}, "yeh": {"_count": 1, "on": {"_count": 1}}, "they": {"_count": 1, "all": {"_count": 1}}}, "continuing": {"_count": 37, "screeches": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "conversation": {"_count": 1}}, "to": {"_count": 18, "hiss": {"_count": 1}, "teach": {"_count": 1}, "devour": {"_count": 1}, "swirl": {"_count": 1}, "use": {"_count": 1}, "pace": {"_count": 1}, "take": {"_count": 1}, "look": {"_count": 1}, "watch": {"_count": 2}, "soar": {"_count": 1}, "shout": {"_count": 1}, "frolic": {"_count": 1}, "frown": {"_count": 1}, "walk": {"_count": 1}, "poke": {"_count": 1}, "celebrate": {"_count": 1}, "cast": {"_count": 1}}, "throughout": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "pages": {"_count": 1}}, "her": {"_count": 1, "lessons": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "allegiance": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 2, "no": {"_count": 1}, "our": {"_count": 1}}, "our": {"_count": 1, "study": {"_count": 1}}, "Only": {"_count": 1, "Muggles": {"_count": 1}}, "their": {"_count": 1, "interrupted": {"_count": 1}}, "problem": {"_count": 1, "of": {"_count": 1}}, "isolation": {"_count": 1, "the": {"_count": 1}}, "remorse": {"_count": 1, "": {"_count": 1}}}, "screeches": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "died": {"_count": 1, "and": {"_count": 1}}, "echoed": {"_count": 1, "up": {"_count": 1}}, "started": {"_count": 1, "up": {"_count": 1}}, "of": {"_count": 1, "MUDBLOODSl": {"_count": 1}}, "were": {"_count": 1, "cut": {"_count": 1}}, "and": {"_count": 1, "cries": {"_count": 1}}}, "attracting": {"_count": 10, "too": {"_count": 1, "much": {"_count": 1}}, "a": {"_count": 3, "lot": {"_count": 1}, "certain": {"_count": 1}, "trickle": {"_count": 1}}, "Muggle": {"_count": 2, "attention": {"_count": 2}}, "nearly": {"_count": 1, "as": {"_count": 1}}, "attention": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "wrath": {"_count": 1}}}, "atten": {"_count": 1, "Harry": {"_count": 1, "": {"_count": 1}}}, "emergency": {"_count": 5, "section": {"_count": 1, "nineteen": {"_count": 1}}, "transport": {"_count": 1, "for": {"_count": 1}}, "bone": {"_count": 1, "regrowth": {"_count": 1}}, "measures": {"_count": 1, "such": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "nineteen": {"_count": 7, "or": {"_count": 1, "something": {"_count": 1}}, "at": {"_count": 1, "most": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "today": {"_count": 1, "and": {"_count": 1}}, "YouKnowWhos": {"_count": 1, "running": {"_count": 1}}, "years": {"_count": 1, "": {"_count": 1}}}, "Thingy": {"_count": 2, "But": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Apparate": {"_count": 41, "": {"_count": 4, "!": {"_count": 2}, "?": {"_count": 2}}, "yet": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "a": {"_count": 1}, "Mr": {"_count": 1}}, "in": {"_count": 4, "here": {"_count": 2}, "or": {"_count": 1}, "and": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "or": {"_count": 3, "cant": {"_count": 1}, "Disapparate": {"_count": 2}}, "maybe": {"_count": 1, "youre": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "instantly": {"_count": 1, "at": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}, "an": {"_count": 1, "heres": {"_count": 1}}, "directly": {"_count": 1, "into": {"_count": 1}}, "anywhere": {"_count": 1, "inside": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "quickly": {"_count": 1}}, "on": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 2, "feared": {"_count": 1}, "Disapparate": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "an": {"_count": 1}}, "just": {"_count": 1, "yet": {"_count": 1}}, "now": {"_count": 1, "I": {"_count": 1}}, "us": {"_count": 1, "both": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "out": {"_count": 1, "even": {"_count": 1}}, "very": {"_count": 1, "precisely": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}}, "reappear": {"_count": 12, "at": {"_count": 2, "home": {"_count": 1}, "will": {"_count": 1}}, "in": {"_count": 4, "front": {"_count": 1}, "classes": {"_count": 1}, "the": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 2, "some": {"_count": 1}, "several": {"_count": 1}}, "blindfolded": {"_count": 1, "every": {"_count": 1}}}, "exit": {"_count": 13, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "Hedwig": {"_count": 1, "rattling": {"_count": 1}}, "and": {"_count": 1, "when": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "whispered": {"_count": 1}}, "right": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "cavernous": {"_count": 7, "trunk": {"_count": 1, "with": {"_count": 1}}, "entrance": {"_count": 1, "hall": {"_count": 1}}, "kitchen": {"_count": 1, "": {"_count": 1}}, "torchlit": {"_count": 1, "entrance": {"_count": 1}}, "room": {"_count": 3, "with": {"_count": 1}, "full": {"_count": 1}, "": {"_count": 1}}}, "series": {"_count": 25, "of": {"_count": 23, "taps": {"_count": 1}, "attacks": {"_count": 1}, "low": {"_count": 1}, "potholes": {"_count": 1}, "popping": {"_count": 1}, "flashes": {"_count": 1}, "dazzling": {"_count": 1}, "strange": {"_count": 1}, "quite": {"_count": 1}, "rich": {"_count": 1}, "lessons": {"_count": 1}, "obstacles": {"_count": 1}, "bangs": {"_count": 1}, "heavy": {"_count": 1}, "worries": {"_count": 1}, "close": {"_count": 1}, "character": {"_count": 1}, "diagrams": {"_count": 1}, "dreams": {"_count": 1}, "jagged": {"_count": 1}, "metallic": {"_count": 1}, "sickening": {"_count": 1}, "loud": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "has": {"_count": 1, "a": {"_count": 1}}}, "taps": {"_count": 12, "from": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "never": {"_count": 1, "worked": {"_count": 1}}, "stood": {"_count": 1, "all": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "and": {"_count": 1}}, "pulled": {"_count": 1, "off": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}}, "Check": {"_count": 5, "that": {"_count": 1, "no": {"_count": 1}}, "whos": {"_count": 1, "in": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "whether": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "list": {"_count": 1}}}, "ignition": {"_count": 1, "with": {"_count": 1, "another": {"_count": 1}}}, "Traffic": {"_count": 1, "was": {"_count": 1, "rumbling": {"_count": 1}}}, "eyeballs": {"_count": 4, "floating": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "being": {"_count": 1}}}, "smoky": {"_count": 9, "and": {"_count": 1, "glittering": {"_count": 1}}, "floating": {"_count": 1, "immobile": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "skull": {"_count": 1, "vanished": {"_count": 1}}, "hand": {"_count": 1, "flew": {"_count": 1}}, "statue": {"_count": 1, "was": {"_count": 1}}, "shadow": {"_count": 1, "of": {"_count": 1}}, "shadowy": {"_count": 1, "form": {"_count": 1}}, "breath": {"_count": 1, "dispersing": {"_count": 1}}}, "popping": {"_count": 28, "noise": {"_count": 4, "and": {"_count": 3}, "": {"_count": 1}}, "alarmingly": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 1, "tic": {"_count": 1}}, "eyes": {"_count": 3, "fell": {"_count": 1}, "on": {"_count": 1}, "appeared": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "up": {"_count": 3, "in": {"_count": 2}, "wherever": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "noises": {"_count": 2, "": {"_count": 1}, "announced": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "he": {"_count": 2, "looked": {"_count": 1}, "replaced": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "and": {"_count": 2}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "again": {"_count": 1}}}, "reappeared": {"_count": 31, "": {"_count": 5, ".": {"_count": 5}}, "wearing": {"_count": 1, "an": {"_count": 1}}, "suddenly": {"_count": 1, "fully": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}, "front": {"_count": 1}}, "lying": {"_count": 1, "in": {"_count": 1}}, "looking": {"_count": 1, "entirely": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}, "one": {"_count": 1, "frame": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "Voldemort": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "carrying": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "sealing": {"_count": 1, "them": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "Uhoh": {"_count": 6, "said": {"_count": 4, "Ron": {"_count": 4}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "jabbing": {"_count": 7, "at": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 2, "wand": {"_count": 1}, "finger": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 1, "in": {"_count": 1}}, "those": {"_count": 1, "Secrecy": {"_count": 1}}, "the": {"_count": 1, "goblet": {"_count": 1}}}, "faulty": {"_count": 3, "Both": {"_count": 1, "of": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "pummeled": {"_count": 2, "it": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "and": {"_count": 1}}}, "accelerator": {"_count": 3, "they": {"_count": 1, "shot": {"_count": 1}}, "and": {"_count": 1, "drove": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}}, "woolly": {"_count": 12, "clouds": {"_count": 1, "and": {"_count": 1}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "snow": {"_count": 1, "covered": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "objects": {"_count": 1, "placed": {"_count": 1}}, "hats": {"_count": 4, "": {"_count": 1}, "Hermione": {"_count": 1}, "concealed": {"_count": 1}, "the": {"_count": 1}}, "bladders": {"_count": 1, "": {"_count": 1}}, "sleeves": {"_count": 1, "of": {"_count": 1}}}, "foggy": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "landscape": {"_count": 1, "": {"_count": 1}}, "shapes": {"_count": 2, "were": {"_count": 1}, "in": {"_count": 1}}}, "mass": {"_count": 55, "of": {"_count": 24, "cloud": {"_count": 1}, "students": {"_count": 2}, "people": {"_count": 2}, "filthy": {"_count": 1}, "brown": {"_count": 1}, "occupied": {"_count": 1}, "black": {"_count": 2}, "chilly": {"_count": 1}, "spellbooks": {"_count": 1}, "turrets": {"_count": 1}, "purpleandblack": {"_count": 1}, "red": {"_count": 2}, "memory": {"_count": 1}, "crusted": {"_count": 1}, "ink": {"_count": 1}, "struggling": {"_count": 1}, "canvas": {"_count": 1}, "trees": {"_count": 1}, "redhot": {"_count": 1}, "objects": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "rose": {"_count": 2, "beyond": {"_count": 1}, "a": {"_count": 1}}, "Muggle": {"_count": 2, "killings": {"_count": 1}, "killing": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "glittering": {"_count": 1, "in": {"_count": 1}}, "murderer": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "murder": {"_count": 1, "of": {"_count": 1}}, "breakout": {"_count": 5, "from": {"_count": 2}, "": {"_count": 2}, "which": {"_count": 1}}, "and": {"_count": 1, "pulling": {"_count": 1}}, "on": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "Then": {"_count": 1, "he": {"_count": 1}}, "below": {"_count": 1, "and": {"_count": 1}}, "revolt": {"_count": 1, "of": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "midair": {"_count": 1, "hug": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "landing": {"_count": 1, "in": {"_count": 1}}, "lying": {"_count": 1, "in": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 1, "stood": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "smashed": {"_count": 1, "him": {"_count": 1}}, "mourning": {"_count": 1, "in": {"_count": 1}}}, "pressing": {"_count": 39, "in": {"_count": 4, "on": {"_count": 3}, "all": {"_count": 1}}, "forward": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "on": {"_count": 3, "their": {"_count": 1}, "his": {"_count": 2}}, "closer": {"_count": 1, "on": {"_count": 1}}, "matters": {"_count": 3, "to": {"_count": 1}, "on": {"_count": 2}}, "close": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 4, "advantage": {"_count": 1}, "nose": {"_count": 1}, "Omnioculars": {"_count": 1}, "palm": {"_count": 1}}, "the": {"_count": 4, "knot": {"_count": 1}, "locket": {"_count": 1}, "Horcrux": {"_count": 1}, "blade": {"_count": 1}}, "her": {"_count": 2, "finger": {"_count": 1}, "cheek": {"_count": 1}}, "problem": {"_count": 1, "": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "darkly": {"_count": 1, "in": {"_count": 1}}, "problems": {"_count": 1, "such": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}, "so": {"_count": 1, "tightly": {"_count": 1}}, "hard": {"_count": 1, "between": {"_count": 1}}, "itself": {"_count": 1, "against": {"_count": 1}}, "questions": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "herself": {"_count": 1, "into": {"_count": 1}}, "worries": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "in": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "question": {"_count": 1, "than": {"_count": 1}}}, "Dip": {"_count": 1, "back": {"_count": 1, "down": {"_count": 1}}}, "streaking": {"_count": 14, "along": {"_count": 1, "below": {"_count": 1}}, "alongside": {"_count": 1, "him": {"_count": 1}}, "past": {"_count": 2, "him": {"_count": 1}, "Harrys": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 2}}, "toward": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "purposefully": {"_count": 1, "through": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "happily": {"_count": 1, "toward": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "grime": {"_count": 1}}}, "Due": {"_count": 2, "north": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "north": {"_count": 19, "said": {"_count": 2, "Ron": {"_count": 1}, "Hermione": {"_count": 1}}, "each": {"_count": 1, "dip": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "slipped": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 1, "windows": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "therefore": {"_count": 1, "enabling": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "battlements": {"_count": 1, "theyve": {"_count": 1}}}, "blaze": {"_count": 9, "of": {"_count": 8, "sunlight": {"_count": 1}, "light": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 1}, "green": {"_count": 1}, "shining": {"_count": 1}, "glory": {"_count": 1}}, "whitehot": {"_count": 1, "but": {"_count": 1}}}, "wheels": {"_count": 9, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "headlights": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "while": {"_count": 1, "the": {"_count": 1}}, "below": {"_count": 1, "them": {"_count": 1}}, "five": {"_count": 1, "feet": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "hit": {"_count": 1, "a": {"_count": 1}}}, "skimmed": {"_count": 6, "the": {"_count": 1, "sea": {"_count": 1}}, "through": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "his": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}}, "airplanes": {"_count": 5, "said": {"_count": 1, "Ron": {"_count": 1}}, "without": {"_count": 1, "parachutes": {"_count": 1}}, "swooped": {"_count": 1, "into": {"_count": 1}}, "stay": {"_count": 1, "up": {"_count": 1}}, "that": {"_count": 1, "fluttered": {"_count": 1}}}, "swirls": {"_count": 1, "and": {"_count": 1, "turrets": {"_count": 1}}}, "toffees": {"_count": 8, "in": {"_count": 2, "the": {"_count": 1}, "brightly": {"_count": 1}}, "had": {"_count": 1, "made": {"_count": 1}}, "hundreds": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "zoomed": {"_count": 1, "from": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}}, "glove": {"_count": 6, "compartment": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}}, "prospect": {"_count": 34, "of": {"_count": 29, "seeing": {"_count": 1}, "a": {"_count": 3}, "returning": {"_count": 1}, "such": {"_count": 1}, "tea": {"_count": 1}, "going": {"_count": 1}, "talking": {"_count": 1}, "so": {"_count": 1}, "asking": {"_count": 1}, "opening": {"_count": 1}, "disruption": {"_count": 1}, "the": {"_count": 3}, "stopping": {"_count": 1}, "finishing": {"_count": 1}, "yet": {"_count": 1}, "putting": {"_count": 1}, "all": {"_count": 1}, "breaking": {"_count": 1}, "forcing": {"_count": 1}, "leaving": {"_count": 1}, "Apparition": {"_count": 1}, "telling": {"_count": 1}, "parting": {"_count": 1}, "moving": {"_count": 1}, "having": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "Narcissa": {"_count": 1, "began": {"_count": 1}}, "he": {"_count": 1, "flicked": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}}, "regular": {"_count": 29, "checks": {"_count": 1, "on": {"_count": 1}}, "training": {"_count": 1, "sessions": {"_count": 1}}, "jobs": {"_count": 1, "at": {"_count": 1}}, "visits": {"_count": 2, "to": {"_count": 2}}, "food": {"_count": 1, "packages": {"_count": 1}}, "owls": {"_count": 1, "with": {"_count": 1}}, "irritation": {"_count": 1, "was": {"_count": 1}}, "mealtime": {"_count": 1, "entertainment": {"_count": 1}}, "nightmare": {"_count": 1, "about": {"_count": 1}}, "intervals": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "reminders": {"_count": 1, "of": {"_count": 1}}, "meeting": {"_count": 1, "of": {"_count": 1}}, "sounds": {"_count": 1, "of": {"_count": 1}}, "night": {"_count": 1, "of": {"_count": 1}}, "classes": {"_count": 1, "with": {"_count": 1}}, "application": {"_count": 1, "of": {"_count": 1}}, "correspondent": {"_count": 1, "was": {"_count": 1}}, "reports": {"_count": 2, "but": {"_count": 1}, "on": {"_count": 1}}, "jolt": {"_count": 1, "in": {"_count": 1}}, "clock": {"_count": 1, "perhaps": {"_count": 1}}, "contact": {"_count": 1, "not": {"_count": 1}}, "correspondence": {"_count": 1, "with": {"_count": 1}}, "contributors": {"_count": 1, "have": {"_count": 1}}, "contributor": {"_count": 1, "Royal": {"_count": 1}}, "listeners": {"_count": 1, "will": {"_count": 1}}, "patrols": {"_count": 1, "inside": {"_count": 1}}}, "checks": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dip": {"_count": 3, "beneath": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "four": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "purplish": {"_count": 3, "moors": {"_count": 1, "a": {"_count": 1}}, "green": {"_count": 1, "in": {"_count": 1}}, "hair": {"_count": 1, "flowing": {"_count": 1}}}, "moors": {"_count": 2, "a": {"_count": 1, "great": {"_count": 1}}, "gorsecovered": {"_count": 1, "mountainsides": {"_count": 1}}}, "multicolored": {"_count": 6, "ants": {"_count": 1, "villages": {"_count": 1}}, "swarms": {"_count": 1, "of": {"_count": 1}}, "steam": {"_count": 1, "now": {"_count": 1}}, "owl": {"_count": 1, "": {"_count": 1}}, "sparks": {"_count": 1, "and": {"_count": 1}}, "lights": {"_count": 1, "the": {"_count": 1}}}, "ants": {"_count": 2, "villages": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "villages": {"_count": 4, "with": {"_count": 1, "tiny": {"_count": 1}}, "then": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "hamlets": {"_count": 1}}, "of": {"_count": 1, "Tinworth": {"_count": 1}}}, "toy": {"_count": 9, "churches": {"_count": 1, "": {"_count": 1}}, "broomstick": {"_count": 3, "": {"_count": 1}, "he": {"_count": 1}, "could": {"_count": 1}}, "broomsticks": {"_count": 1, "that": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "broom": {"_count": 1, "": {"_count": 1}}, "houses": {"_count": 1, "in": {"_count": 1}}}, "churches": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "uneventful": {"_count": 2, "hours": {"_count": 1, "later": {"_count": 1}}, "compared": {"_count": 1, "with": {"_count": 1}}}, "thirsty": {"_count": 4, "and": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 1, "knowledge": {"_count": 1}}}, "Tshirt": {"_count": 10, "was": {"_count": 2, "sticking": {"_count": 2}}, "he": {"_count": 2, "was": {"_count": 2}}, "baggy": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "tucking": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "bearing": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "juice": {"_count": 45, "from": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "underneath": {"_count": 1}}, "appeared": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 12}, "!": {"_count": 1}, "?": {"_count": 3}}, "they": {"_count": 1, "gathered": {"_count": 1}}, "I": {"_count": 1, "daresay": {"_count": 1}}, "jug": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "suffice": {"_count": 1}}, "perhaps": {"_count": 1, "playing": {"_count": 1}}, "spread": {"_count": 1, "steadily": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "then": {"_count": 1, "took": {"_count": 1}}, "and": {"_count": 3, "butterbeer": {"_count": 1}, "drained": {"_count": 1}, "followed": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "aside": {"_count": 1, "quickly": {"_count": 1}}, "he": {"_count": 3, "found": {"_count": 1}, "was": {"_count": 1}, "added": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "half": {"_count": 1, "emptying": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "Snargaluff": {"_count": 1, "pods": {"_count": 1}}, "with": {"_count": 1, "lucky": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "butterbeer": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "staining": {"_count": 3, "it": {"_count": 1, "a": {"_count": 1}}, "several": {"_count": 1, "feet": {"_count": 1}}, "the": {"_count": 1, "scarf": {"_count": 1}}}, "snowcapped": {"_count": 2, "mountain": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "canopy": {"_count": 14, "of": {"_count": 8, "clouds": {"_count": 1}, "his": {"_count": 4}, "branches": {"_count": 1}, "leaves": {"_count": 2}}, "above": {"_count": 1, "him": {"_count": 1}}, "overhead": {"_count": 1, "then": {"_count": 1}}, "blocked": {"_count": 1, "out": {"_count": 1}}, "supported": {"_count": 1, "by": {"_count": 1}}, "now": {"_count": 1, "lit": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "whine": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "panic": {"_count": 1}}}, "glances": {"_count": 12, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 4, "him": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "plainly": {"_count": 1, "fearing": {"_count": 1}}}, "whining": {"_count": 5, "growing": {"_count": 1, "louder": {"_count": 1}}, "loudly": {"_count": 1, "but": {"_count": 1}}, "a": {"_count": 1, "dog": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Stars": {"_count": 2, "were": {"_count": 1, "blossoming": {"_count": 1}}, "winking": {"_count": 1, "in": {"_count": 1}}}, "wipers": {"_count": 1, "were": {"_count": 1, "now": {"_count": 1}}}, "feebly": {"_count": 26, "as": {"_count": 3, "though": {"_count": 1}, "she": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "to": {"_count": 1, "support": {"_count": 1}}, "Um": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "turned": {"_count": 1}, "expire": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "Oh": {"_count": 1, "yes": {"_count": 1}}, "stirring": {"_count": 2, "Harry": {"_count": 1}, "body": {"_count": 1}}, "between": {"_count": 1, "Support": {"_count": 1}}, "pointing": {"_count": 1, "toward": {"_count": 1}}, "that": {"_count": 1, "Ariana": {"_count": 1}}, "then": {"_count": 1, "went": {"_count": 1}}}, "protest": {"_count": 16, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "his": {"_count": 1, "very": {"_count": 1}}, "but": {"_count": 3, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}, "after": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "Dumbledore": {"_count": 1, "lowered": {"_count": 1}}, "that": {"_count": 1, "Regulus": {"_count": 1}}, "The": {"_count": 1, "very": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}}, "squint": {"_count": 3, "through": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "what": {"_count": 2}}}, "landmark": {"_count": 1, "they": {"_count": 1, "knew": {"_count": 1}}}, "Straight": {"_count": 7, "ahead": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "upstairs": {"_count": 1, "Arthur": {"_count": 1}}, "away": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}}, "Silhouetted": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "shudder": {"_count": 28, "and": {"_count": 3, "was": {"_count": 1}, "jerk": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 3, "think": {"_count": 3}}, "he": {"_count": 1, "knew": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "when": {"_count": 2, "you": {"_count": 1}, "they": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "under": {"_count": 2, "his": {"_count": 2}}, "angrily": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "rattling": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 1, "elf": {"_count": 1}}}, "cajolingly": {"_count": 1, "giving": {"_count": 1, "the": {"_count": 1}}}, "Narrow": {"_count": 3, "jets": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "jets": {"_count": 15, "of": {"_count": 14, "steam": {"_count": 1}, "fiery": {"_count": 2}, "a": {"_count": 1}, "hot": {"_count": 1}, "red": {"_count": 1}, "light": {"_count": 5}, "water": {"_count": 1}, "it": {"_count": 1}, "green": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "issuing": {"_count": 20, "from": {"_count": 15, "under": {"_count": 1}, "the": {"_count": 6}, "their": {"_count": 1}, "both": {"_count": 1}, "more": {"_count": 1}, "behind": {"_count": 2}, "whichever": {"_count": 1}, "Slughorn": {"_count": 1}, "his": {"_count": 1}}, "copious": {"_count": 1, "amounts": {"_count": 1}}, "instructions": {"_count": 1, "but": {"_count": 1}}, "not": {"_count": 1, "from": {"_count": 1}}, "large": {"_count": 1, "amounts": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "gripping": {"_count": 29, "the": {"_count": 8, "edges": {"_count": 1}, "broom": {"_count": 1}, "box": {"_count": 1}, "back": {"_count": 1}, "thestrals": {"_count": 1}, "rim": {"_count": 1}, "plummeting": {"_count": 1}, "stillsopping": {"_count": 1}}, "rather": {"_count": 1, "harder": {"_count": 1}}, "his": {"_count": 6, "hands": {"_count": 1}, "hair": {"_count": 1}, "wand": {"_count": 1}, "walking": {"_count": 1}, "wrists": {"_count": 1}, "arm": {"_count": 1}}, "Harrys": {"_count": 3, "elbow": {"_count": 1}, "arm": {"_count": 2}}, "a": {"_count": 2, "ragged": {"_count": 1}, "wand": {"_count": 1}}, "its": {"_count": 1, "cloak": {"_count": 1}}, "Buckbeak": {"_count": 1, "firmly": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "Ginny": {"_count": 1}}, "Dumbledores": {"_count": 1, "arm": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}, "it": {"_count": 1, "tightly": {"_count": 1}}, "story": {"_count": 1, "Hermione": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "wobble": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "banging": {"_count": 1, "off": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "Glancing": {"_count": 3, "out": {"_count": 1, "of": {"_count": 1}}, "around": {"_count": 1, "he": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}}, "glassy": {"_count": 8, "surface": {"_count": 2, "of": {"_count": 1}, "grooves": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "substance": {"_count": 1, "Harry": {"_count": 1}}, "blackness": {"_count": 1, "in": {"_count": 1}}, "orbs": {"_count": 1, "sprinkled": {"_count": 1}}, "stare": {"_count": 1, "": {"_count": 1}}}, "surface": {"_count": 103, "of": {"_count": 49, "the": {"_count": 40}, "his": {"_count": 4}, "it": {"_count": 1}, "Hermiones": {"_count": 1}, "Snapes": {"_count": 2}, "Dumbledores": {"_count": 1}}, "and": {"_count": 9, "began": {"_count": 1}, "then": {"_count": 1}, "opened": {"_count": 1}, "now": {"_count": 1}, "come": {"_count": 1}, "onto": {"_count": 1}, "served": {"_count": 1}, "held": {"_count": 1}, "emerged": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "was": {"_count": 1, "suddenly": {"_count": 1}}, "waves": {"_count": 1, "were": {"_count": 1}}, "Lee": {"_count": 1, "Jordan": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "began": {"_count": 1, "not": {"_count": 1}}, "Harry": {"_count": 1, "heard": {"_count": 1}}, "the": {"_count": 2, "flagon": {"_count": 1}, "potion": {"_count": 1}}, "all": {"_count": 1, "day": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "large": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "though": {"_count": 1, "not": {"_count": 1}}, "landing": {"_count": 1, "this": {"_count": 1}}, "glowing": {"_count": 1, "as": {"_count": 1}}, "grooves": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "open": {"_count": 1}}, "as": {"_count": 1, "nothing": {"_count": 1}}, "their": {"_count": 1, "blank": {"_count": 1}}, "reminding": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 1, "listen": {"_count": 1}}, "where": {"_count": 1, "seconds": {"_count": 1}}, "now": {"_count": 1, "shone": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "rained": {"_count": 1, "upon": {"_count": 1}}, "glittering": {"_count": 1, "as": {"_count": 1}}, "but": {"_count": 1, "merely": {"_count": 1}}, "Potter": {"_count": 1, "are": {"_count": 1}}}, "mile": {"_count": 9, "below": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "and": {"_count": 1, "felt": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 1, "no": {"_count": 1}}, "when": {"_count": 1, "Madam": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}}, "wobbled": {"_count": 7, "again": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "violently": {"_count": 1}}, "dangerously": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "silent": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "clunk": {"_count": 15, "a": {"_count": 2, "splutter": {"_count": 1}, "splash": {"_count": 1}}, "and": {"_count": 1, "shuffled": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "echoed": {"_count": 1, "through": {"_count": 1}}, "on": {"_count": 1, "every": {"_count": 1}}, "the": {"_count": 1, "wooden": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}}, "splutter": {"_count": 4, "and": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "interrupted": {"_count": 1}}, "He": {"_count": 1, "and": {"_count": 1}}}, "IVoooooo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "arc": {"_count": 5, "soaring": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 2, "landed": {"_count": 1}, "flown": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "vegetable": {"_count": 13, "patch": {"_count": 11, "and": {"_count": 2}, "behind": {"_count": 1}, "toward": {"_count": 2}, "until": {"_count": 1}, "": {"_count": 2}, "to": {"_count": 1}, "on": {"_count": 1}, "where": {"_count": 1}}, "gardens": {"_count": 1, "to": {"_count": 1}}, "patches": {"_count": 1, "to": {"_count": 1}}}, "altitude": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "whacking": {"_count": 5, "the": {"_count": 2, "dashboard": {"_count": 1}, "Bludgers": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "them": {"_count": 1, "repeatedly": {"_count": 1}}, "her": {"_count": 1, "alternately": {"_count": 1}}}, "plummeting": {"_count": 4, "the": {"_count": 1, "ground": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "sidecar": {"_count": 1, "Harry": {"_count": 1}}, "bike": {"_count": 1, "with": {"_count": 1}}}, "WATCH": {"_count": 1, "OUT": {"_count": 1, "FOR": {"_count": 1}}}, "lunging": {"_count": 5, "for": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "movement": {"_count": 1, "across": {"_count": 1}}, "forward": {"_count": 1, "he": {"_count": 1}}}, "CRUNCH": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Steam": {"_count": 4, "was": {"_count": 3, "billowing": {"_count": 2}, "thickening": {"_count": 1}}, "gushed": {"_count": 1, "out": {"_count": 1}}}, "golfballsized": {"_count": 1, "lump": {"_count": 1, "was": {"_count": 1}}}, "despairing": {"_count": 1, "groan": {"_count": 1, "": {"_count": 1}}}, "shaky": {"_count": 12, "voice": {"_count": 2, "": {"_count": 1}, "difficult": {"_count": 1}}, "Hermione": {"_count": 1, "are": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "laugh": {"_count": 4, "and": {"_count": 2}, "": {"_count": 2}}, "if": {"_count": 1, "theyd": {"_count": 1}}, "sip": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "nod": {"_count": 1, "": {"_count": 1}}}, "tip": {"_count": 80, "was": {"_count": 1, "dangling": {"_count": 1}}, "sideways": {"_count": 1, "Next": {"_count": 1}}, "of": {"_count": 41, "her": {"_count": 7}, "Dumbledore": {"_count": 1}, "his": {"_count": 15}, "its": {"_count": 2}, "the": {"_count": 8}, "Cedrics": {"_count": 1}, "a": {"_count": 1}, "Voldemorts": {"_count": 2}, "it": {"_count": 1}, "Harrys": {"_count": 2}, "Malfoys": {"_count": 1}}, "an": {"_count": 1, "armful": {"_count": 1}}, "Ron": {"_count": 1, "off": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "to": {"_count": 5, "tip": {"_count": 1}, "his": {"_count": 3}, "move": {"_count": 1}}, "with": {"_count": 1, "Harrys": {"_count": 1}}, "Dumbledore": {"_count": 1, "pulled": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "alight": {"_count": 1, "he": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 3, "wood": {"_count": 1}, "stuff": {"_count": 1}, "potion": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "had": {"_count": 1, "ignited": {"_count": 1}}, "flared": {"_count": 1, "illuminating": {"_count": 1}}, "off": {"_count": 1, "Filch": {"_count": 1}}, "she": {"_count": 1, "then": {"_count": 1}}, "her": {"_count": 1, "off": {"_count": 1}}, "it": {"_count": 1, "wrapped": {"_count": 1}}, "ignited": {"_count": 1, "casting": {"_count": 1}}, "him": {"_count": 1, "off": {"_count": 1}}, "emanated": {"_count": 1, "the": {"_count": 1}}, "sparkling": {"_count": 1, "over": {"_count": 1}}, "burst": {"_count": 1, "three": {"_count": 1}}}, "limply": {"_count": 7, "held": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "side": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "splinters": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "mend": {"_count": 18, "it": {"_count": 3, "up": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "bones": {"_count": 2, "in": {"_count": 1}, "nearly": {"_count": 1}}, "cuts": {"_count": 1, "in": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 1, "middle": {"_count": 1}}, "Harry": {"_count": 1, "repeated": {"_count": 1}}, "pipes": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "something": {"_count": 2, "he": {"_count": 1}, "dangerous": {"_count": 1}}, "that": {"_count": 1, "broken": {"_count": 1}}, "just": {"_count": 1, "by": {"_count": 1}}, "Fleurs": {"_count": 1, "given": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "themselves": {"_count": 1, "you": {"_count": 1}}}, "equally": {"_count": 9, "heavy": {"_count": 1, "blow": {"_count": 1}}, "certain": {"_count": 1, "that": {"_count": 1}}, "strong": {"_count": 2, "bond": {"_count": 2}}, "frightened": {"_count": 1, "and": {"_count": 1}}, "long": {"_count": 1, "and": {"_count": 1}}, "disgruntled": {"_count": 1, "": {"_count": 1}}, "vivid": {"_count": 1, "head": {"_count": 1}}, "unhappy": {"_count": 1, "": {"_count": 1}}}, "python": {"_count": 2, "smash": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "attacking": {"_count": 30, "them": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 2}, "Yeah": {"_count": 1}}, "people": {"_count": 3, "": {"_count": 1}, "again": {"_count": 1}, "left": {"_count": 1}}, "everyone": {"_count": 1, "Tom": {"_count": 1}}, "and": {"_count": 1, "killing": {"_count": 1}}, "Harry": {"_count": 1, "just": {"_count": 1}}, "branches": {"_count": 1, "and": {"_count": 1}}, "us": {"_count": 1, "all": {"_count": 1}}, "his": {"_count": 2, "fellow": {"_count": 1}, "hair": {"_count": 1}}, "you": {"_count": 4, "Harry": {"_count": 1}, "said": {"_count": 1}, "that": {"_count": 1}, "but": {"_count": 1}}, "anybody": {"_count": 1, "who": {"_count": 1}}, "Krum": {"_count": 1, "did": {"_count": 1}}, "the": {"_count": 2, "boy": {"_count": 1}, "rest": {"_count": 1}}, "her": {"_count": 2, "about": {"_count": 1}, "I": {"_count": 1}}, "anyone": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "kids": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "without": {"_count": 1}}, "Horcruxes": {"_count": 1, "Harry": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}}, "boughs": {"_count": 2, "were": {"_count": 1, "pummeling": {"_count": 1}}, "that": {"_count": 1, "formed": {"_count": 1}}}, "pummeling": {"_count": 4, "every": {"_count": 1, "inch": {"_count": 1}}, "his": {"_count": 1, "pillow": {"_count": 1}}, "the": {"_count": 1, "surface": {"_count": 1}}, "her": {"_count": 1, "knee": {"_count": 1}}}, "aargh": {"_count": 5, "": {"_count": 4, "!": {"_count": 3}, "?": {"_count": 1}}, "the": {"_count": 1, "good": {"_count": 1}}}, "limb": {"_count": 7, "punched": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 2, "limb": {"_count": 2}}, "Hagrid": {"_count": 1, "growled": {"_count": 1}}, "for": {"_count": 1, "kissing": {"_count": 1}}, "his": {"_count": 1, "body": {"_count": 1}}, "or": {"_count": 1, "a": {"_count": 1}}}, "dent": {"_count": 2, "into": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "hail": {"_count": 2, "of": {"_count": 2, "blows": {"_count": 1}, "fat": {"_count": 1}}}, "blows": {"_count": 3, "from": {"_count": 1, "knucklelike": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "knucklelike": {"_count": 1, "twigs": {"_count": 1, "and": {"_count": 1}}}, "battering": {"_count": 2, "ram": {"_count": 1, "was": {"_count": 1}}, "branches": {"_count": 1, "like": {"_count": 1}}}, "ram": {"_count": 2, "was": {"_count": 1, "pounding": {"_count": 1}}, "him": {"_count": 1, "back": {"_count": 1}}}, "caving": {"_count": 1, "Run": {"_count": 1, "for": {"_count": 1}}}, "uppercut": {"_count": 1, "from": {"_count": 1, "another": {"_count": 1}}}, "restarted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Reverse": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "Spell": {"_count": 1, "effect": {"_count": 1}}}, "creaking": {"_count": 20, "as": {"_count": 3, "it": {"_count": 1}, "though": {"_count": 1}, "he": {"_count": 1}}, "suits": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 3, "stepped": {"_count": 1}, "lashing": {"_count": 1}, "falling": {"_count": 1}}, "front": {"_count": 1, "doors": {"_count": 1}}, "of": {"_count": 5, "the": {"_count": 3}, "corsets": {"_count": 1}, "rusty": {"_count": 1}}, "back": {"_count": 1, "downstairs": {"_count": 1}}, "open": {"_count": 1, "did": {"_count": 1}}, "sound": {"_count": 1, "behind": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "door": {"_count": 1, "into": {"_count": 1}}, "doors": {"_count": 1, "It": {"_count": 1}}, "stairs": {"_count": 1, "to": {"_count": 1}}}, "lashing": {"_count": 4, "out": {"_count": 2, "at": {"_count": 1}, "with": {"_count": 1}}, "the": {"_count": 2, "windows": {"_count": 1}, "high": {"_count": 1}}}, "tether": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "clunks": {"_count": 3, "the": {"_count": 1, "doors": {"_count": 1}}, "of": {"_count": 1, "Moodys": {"_count": 1}}, "as": {"_count": 1, "people": {"_count": 1}}}, "Loud": {"_count": 5, "thuds": {"_count": 1, "told": {"_count": 1}}, "and": {"_count": 1, "scathing": {"_count": 1}}, "hangings": {"_count": 1, "and": {"_count": 1}}, "jeering": {"_count": 1, "roars": {"_count": 1}}, "singing": {"_count": 1, "accompanied": {"_count": 1}}}, "thuds": {"_count": 6, "told": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 1, "more": {"_count": 1}}, "and": {"_count": 1, "bangs": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Hermione": {"_count": 1}}, "which": {"_count": 1, "told": {"_count": 1}}}, "ejecting": {"_count": 2, "their": {"_count": 1, "luggage": {"_count": 1}}, "a": {"_count": 1, "grubbylooking": {"_count": 1}}}, "dented": {"_count": 4, "scratched": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "desk": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "scratched": {"_count": 20, "and": {"_count": 4, "steaming": {"_count": 1}, "one": {"_count": 1}, "smeared": {"_count": 1}, "bleeding": {"_count": 1}}, "his": {"_count": 5, "ear": {"_count": 1}, "nose": {"_count": 1}, "chin": {"_count": 2}, "badly": {"_count": 1}}, "myself": {"_count": 1, "instead": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "out": {"_count": 2, "something": {"_count": 1}, "neverending": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "him": {"_count": 1, "absentmindedly": {"_count": 1}}, "there": {"_count": 1, "oozing": {"_count": 1}}, "her": {"_count": 1, "nose": {"_count": 1}}, "the": {"_count": 1, "surface": {"_count": 1}}}, "steaming": {"_count": 11, "the": {"_count": 1, "car": {"_count": 1}}, "beakerful": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "mug": {"_count": 2, "of": {"_count": 2}}, "cauldron": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "onion": {"_count": 1, "soup": {"_count": 1}}, "pot": {"_count": 1, "on": {"_count": 1}}, "vat": {"_count": 1, "of": {"_count": 1}}, "teapot": {"_count": 1, "": {"_count": 1}}}, "Dadll": {"_count": 1, "kill": {"_count": 1, "me": {"_count": 1}}}, "snort": {"_count": 15, "from": {"_count": 2, "its": {"_count": 1}, "behind": {"_count": 1}}, "of": {"_count": 4, "laughter": {"_count": 3}, "mirthless": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "with": {"_count": 1, "difficulty": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "exhaust": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "pipe": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "whitehot": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "gaskin": {"_count": 1, "as": {"_count": 1}}}, "hits": {"_count": 2, "back": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "window": {"_count": 1}}}, "threateningly": {"_count": 13, "": {"_count": 4, ".": {"_count": 4}}, "at": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "ahead": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 2, "did": {"_count": 1}, "it": {"_count": 1}}, "and": {"_count": 2, "Malfoy": {"_count": 1}, "announce": {"_count": 1}}, "upon": {"_count": 1, "Magorian": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "wearily": {"_count": 27, "wed": {"_count": 1, "better": {"_count": 1}}, "and": {"_count": 2, "said": {"_count": 1}, "looking": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "to": {"_count": 2, "Harry": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 2, "Ron": {"_count": 1}, "they": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "moving": {"_count": 1, "toward": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}}, "pictured": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "Bagmans": {"_count": 1, "look": {"_count": 1}}, "the": {"_count": 1, "scene": {"_count": 1}}, "a": {"_count": 1, "roundbellied": {"_count": 1}}, "Bellatrix": {"_count": 1, "withdrawing": {"_count": 1}}}, "Stiff": {"_count": 1, "cold": {"_count": 1, "and": {"_count": 1}}}, "crossing": {"_count": 16, "quietly": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 9, "grass": {"_count": 2}, "grounds": {"_count": 1}, "lake": {"_count": 1}, "starry": {"_count": 1}, "entrance": {"_count": 1}, "Great": {"_count": 1}, "lawn": {"_count": 1}, "road": {"_count": 1}}, "his": {"_count": 1, "fingers": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}, "lines": {"_count": 2, "ever": {"_count": 2}}, "off": {"_count": 1, "those": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}}, "Innumerable": {"_count": 2, "candles": {"_count": 1, "were": {"_count": 1}}, "chains": {"_count": 1, "and": {"_count": 1}}}, "hovering": {"_count": 22, "in": {"_count": 4, "midair": {"_count": 1}, "the": {"_count": 1}, "front": {"_count": 2}}, "around": {"_count": 1, "all": {"_count": 1}}, "inches": {"_count": 2, "above": {"_count": 1}, "over": {"_count": 1}}, "over": {"_count": 6, "the": {"_count": 3}, "your": {"_count": 1}, "each": {"_count": 1}, "his": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "feet": {"_count": 1, "from": {"_count": 1}}, "somewhere": {"_count": 1, "between": {"_count": 1}}, "cherub": {"_count": 1, "": {"_count": 1}}, "lazily": {"_count": 1, "over": {"_count": 1}}, "chairs": {"_count": 1, "grouped": {"_count": 1}}, "there": {"_count": 1, "waiting": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}}, "sparkle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Overhead": {"_count": 2, "the": {"_count": 1, "bewitched": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}}, "mirrored": {"_count": 5, "the": {"_count": 1, "sky": {"_count": 1}}, "on": {"_count": 1, "Hepzibahs": {"_count": 1}}, "surface": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "without": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}}, "sparkled": {"_count": 9, "with": {"_count": 2, "stars": {"_count": 1}, "unshed": {"_count": 1}}, "the": {"_count": 1, "garage": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "cobwebs": {"_count": 1}}}, "filing": {"_count": 14, "into": {"_count": 2, "the": {"_count": 2}}, "cabinets": {"_count": 5, "stood": {"_count": 1}, "marked": {"_count": 1}, "lining": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}}, "cabinet": {"_count": 2, "": {"_count": 1}, "behind": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "behind": {"_count": 1}}, "past": {"_count": 2, "Harry": {"_count": 1}, "descending": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}}, "vivid": {"_count": 16, "Weasley": {"_count": 1, "hair": {"_count": 1}}, "hair": {"_count": 1, "gave": {"_count": 1}}, "poisonous": {"_count": 1, "green": {"_count": 1}}, "dream": {"_count": 1, "with": {"_count": 1}}, "electric": {"_count": 1, "blue": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "poisonouslooking": {"_count": 1, "blue": {"_count": 1}}, "red": {"_count": 1, "tattoo": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "green": {"_count": 1, "might": {"_count": 1}}, "it": {"_count": 1, "blinded": {"_count": 1}}, "head": {"_count": 1, "bobbed": {"_count": 1}}, "image": {"_count": 1, "of": {"_count": 1}}, "mental": {"_count": 1, "image": {"_count": 1}}, "picture": {"_count": 1, "formed": {"_count": 1}}}, "bespectacled": {"_count": 5, "witch": {"_count": 1, "with": {"_count": 1}}, "boy": {"_count": 1, "who": {"_count": 1}}, "form": {"_count": 1, "of": {"_count": 1}}, "man": {"_count": 1, "grabbed": {"_count": 1}}, "and": {"_count": 1, "luggageladen": {"_count": 1}}}, "placing": {"_count": 19, "the": {"_count": 2, "famous": {"_count": 1}, "stone": {"_count": 1}}, "Scabbers": {"_count": 1, "on": {"_count": 1}}, "himself": {"_count": 2, "in": {"_count": 1}, "once": {"_count": 1}}, "of": {"_count": 1, "your": {"_count": 1}}, "his": {"_count": 4, "wand": {"_count": 1}, "green": {"_count": 1}, "withered": {"_count": 1}, "hands": {"_count": 1}}, "a": {"_count": 3, "heavy": {"_count": 1}, "copper": {"_count": 1}, "hand": {"_count": 1}}, "it": {"_count": 2, "on": {"_count": 2}}, "them": {"_count": 2, "on": {"_count": 1}, "carefully": {"_count": 1}}, "your": {"_count": 1, "reliance": {"_count": 1}}, "an": {"_count": 1, "Imperius": {"_count": 1}}}, "newcomers": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "realized": {"_count": 1, "he": {"_count": 1}}, "marched": {"_count": 1, "across": {"_count": 1}}}, "houses": {"_count": 27, "Gryffindor": {"_count": 1, "Hufflepuff": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "that": {"_count": 1, "lined": {"_count": 1}}, "nifflers": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "Privet": {"_count": 1}}, "windows": {"_count": 1, "thrown": {"_count": 1}}, "with": {"_count": 1, "perfectly": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "bang": {"_count": 1}, "nor": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "windows": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "every": {"_count": 1, "protection": {"_count": 1}}, "Im": {"_count": 1, "heading": {"_count": 1}}, "looked": {"_count": 1, "down": {"_count": 1}}, "eleven": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "turned": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "decision": {"_count": 40, "as": {"_count": 4, "it": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 2}}, "to": {"_count": 5, "expel": {"_count": 1}, "destroy": {"_count": 1}, "leave": {"_count": 1}, "hide": {"_count": 1}, "give": {"_count": 1}}, "he": {"_count": 2, "hurried": {"_count": 1}, "dipped": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "snake": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "that": {"_count": 1, "caused": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "whether": {"_count": 1, "I": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "too": {"_count": 1, "with": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 1, "first": {"_count": 1}}, "and": {"_count": 1, "if": {"_count": 1}}, "however": {"_count": 1, "Morfin": {"_count": 1}}, "Harry": {"_count": 2, "saw": {"_count": 1}, "Potter": {"_count": 1}}, "should": {"_count": 1, "not": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "they": {"_count": 1, "sounded": {"_count": 1}}, "With": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}}, "Last": {"_count": 21, "term": {"_count": 1, "Harry": {"_count": 1}}, "year": {"_count": 6, "I": {"_count": 1}, "dementors": {"_count": 1}, "however": {"_count": 1}, "Ron": {"_count": 1}, "all": {"_count": 1}, "she": {"_count": 1}}, "time": {"_count": 4, "we": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}, "night": {"_count": 3, "Sirius": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "week": {"_count": 1, "she": {"_count": 1}}, "in": {"_count": 1, "line": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "years": {"_count": 1, "Beaters": {"_count": 1}}, "Hogsmeade": {"_count": 1, "weekend": {"_count": 1}}, "Attempt": {"_count": 1, "to": {"_count": 1}}, "Will": {"_count": 1, "and": {"_count": 1}}}, "mousyhaired": {"_count": 4, "boy": {"_count": 3, "had": {"_count": 1}, "hed": {"_count": 1}, "with": {"_count": 1}}, "and": {"_count": 1, "miserablelooking": {"_count": 1}}}, "aquamarine": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Cruel": {"_count": 1, "sarcastic": {"_count": 1, "and": {"_count": 1}}}, "sarcastic": {"_count": 2, "and": {"_count": 1, "disliked": {"_count": 1}}, "smile": {"_count": 1, "and": {"_count": 1}}}, "enthusiastically": {"_count": 33, "": {"_count": 11, ".": {"_count": 11}}, "taking": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "offering": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "Lavender": {"_count": 1, "quickly": {"_count": 1}}, "as": {"_count": 2, "any": {"_count": 1}, "they": {"_count": 1}}, "bounding": {"_count": 1, "forward": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "prodding": {"_count": 1, "one": {"_count": 1}}, "scooping": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 2, "who": {"_count": 1}, "its": {"_count": 1}}, "the": {"_count": 1, "vampire": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "waving": {"_count": 1, "the": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "others": {"_count": 1, "solemnly": {"_count": 1}}, "urging": {"_count": 1, "Harry": {"_count": 1}}}, "arrive": {"_count": 22, "on": {"_count": 2, "the": {"_count": 2}}, "with": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "Hogwarts": {"_count": 1}, "Kings": {"_count": 1}}, "in": {"_count": 2, "time": {"_count": 1}, "a": {"_count": 1}}, "two": {"_count": 1, "weeks": {"_count": 1}}, "for": {"_count": 1, "Hermione": {"_count": 1}}, "then": {"_count": 1, "And": {"_count": 1}}, "Roger": {"_count": 1, "Davies": {"_count": 1}}, "and": {"_count": 1, "introduce": {"_count": 1}}, "said": {"_count": 1, "Nick": {"_count": 1}}, "by": {"_count": 1, "Portkey": {"_count": 1}}, "tomorrow": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "that": {"_count": 1}}}, "rippling": {"_count": 20, "in": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 3}}, "tangled": {"_count": 1, "black": {"_count": 1}}, "weed": {"_count": 1, "": {"_count": 1}}, "sails": {"_count": 1, "of": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "glass": {"_count": 1, "in": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "veil": {"_count": 1, "intrigued": {"_count": 1}}, "faceless": {"_count": 1, "figure": {"_count": 1}}, "silver": {"_count": 1, "contents": {"_count": 1}}, "their": {"_count": 1, "purplish": {"_count": 1}}, "indignantly": {"_count": 1, "but": {"_count": 1}}, "the": {"_count": 1, "air": {"_count": 1}}, "effect": {"_count": 1, "": {"_count": 1}}, "scarlet": {"_count": 1, "caterpillar": {"_count": 1}}, "through": {"_count": 1, "them": {"_count": 1}}, "down": {"_count": 1, "her": {"_count": 1}}}, "shoulderlength": {"_count": 3, "black": {"_count": 1, "hair": {"_count": 1}}, "white": {"_count": 1, "hair": {"_count": 1}}, "hairstyles": {"_count": 1, "": {"_count": 1}}}, "echoing": {"_count": 67, "entrance": {"_count": 1, "hall": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "particularly": {"_count": 1, "loudly": {"_count": 1}}, "off": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 8, "the": {"_count": 5}, "some": {"_count": 1}, "his": {"_count": 2}}, "bark": {"_count": 1, "making": {"_count": 1}}, "through": {"_count": 5, "the": {"_count": 5}}, "footsteps": {"_count": 2, "and": {"_count": 1}, "were": {"_count": 1}}, "gloom": {"_count": 1, "and": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 3, "through": {"_count": 2}, "the": {"_count": 1}}, "from": {"_count": 2, "somewhere": {"_count": 1}, "who": {"_count": 1}}, "bang": {"_count": 3, "": {"_count": 1}, "everybody": {"_count": 1}, "of": {"_count": 1}}, "around": {"_count": 8, "the": {"_count": 8}}, "feeling": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "reverberating": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "screams": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "voice": {"_count": 2, "as": {"_count": 1}, "State": {"_count": 1}}, "crack": {"_count": 1, "broke": {"_count": 1}}, "silence": {"_count": 1, "fell": {"_count": 1}}, "Fred": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "footsteps": {"_count": 1}}, "strains": {"_count": 1, "of": {"_count": 1}}, "clanking": {"_count": 1, "and": {"_count": 1}}, "dusty": {"_count": 1, "silence": {"_count": 1}}, "fragments": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "loudly": {"_count": 2, "around": {"_count": 2}}, "slapping": {"_count": 1, "sounds": {"_count": 1}}, "across": {"_count": 2, "the": {"_count": 2}}, "kitchen": {"_count": 1, "": {"_count": 1}}, "clang": {"_count": 1, "and": {"_count": 1}}, "clangs": {"_count": 1, "the": {"_count": 1}}, "crashes": {"_count": 1, "from": {"_count": 1}}, "not": {"_count": 1, "from": {"_count": 1}}, "strangely": {"_count": 1, "in": {"_count": 1}}}, "sidekick": {"_count": 2, "Weasley": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "Silence": {"_count": 19, "": {"_count": 4, "!": {"_count": 3}, ".": {"_count": 1}}, "except": {"_count": 1, "for": {"_count": 1}}, "pressed": {"_count": 1, "upon": {"_count": 1}}, "fell": {"_count": 9, "between": {"_count": 6}, "again": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}, "spread": {"_count": 1, "outward": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "impression": {"_count": 81, "of": {"_count": 12, "being": {"_count": 1}, "Colin": {"_count": 1}, "great": {"_count": 1}, "a": {"_count": 2}, "noise": {"_count": 1}, "it": {"_count": 1}, "gleaming": {"_count": 1}, "shrewdness": {"_count": 1}, "Hermione": {"_count": 1}, "extreme": {"_count": 1}, "colored": {"_count": 1}}, "that": {"_count": 47, "Hagrids": {"_count": 1}, "her": {"_count": 1}, "I": {"_count": 4}, "Lupin": {"_count": 2}, "Snape": {"_count": 1}, "your": {"_count": 1}, "Davies": {"_count": 1}, "she": {"_count": 4}, "Moody": {"_count": 1}, "the": {"_count": 4}, "Krum": {"_count": 1}, "Hermione": {"_count": 1}, "a": {"_count": 2}, "Seamus": {"_count": 1}, "Parvati": {"_count": 1}, "he": {"_count": 5}, "even": {"_count": 1}, "it": {"_count": 1}, "Sirius": {"_count": 1}, "this": {"_count": 1}, "Dumbledore": {"_count": 2}, "both": {"_count": 1}, "Slughorn": {"_count": 2}, "you": {"_count": 2}, "Im": {"_count": 1}, "they": {"_count": 3}, "Mr": {"_count": 1}}, "was": {"_count": 2, "of": {"_count": 1}, "that": {"_count": 1}}, "Black": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "for": {"_count": 1, "Harry": {"_count": 1}}, "they": {"_count": 1, "thought": {"_count": 1}}, "can": {"_count": 1, "work": {"_count": 1}}, "given": {"_count": 1, "what": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "yet": {"_count": 1, "she": {"_count": 1}}, "see": {"_count": 1, "": {"_count": 1}}, "whatsoever": {"_count": 1, "on": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "even": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "goblins": {"_count": 1}}, "said": {"_count": 2, "the": {"_count": 1}, "Snape": {"_count": 1}}, "reinforced": {"_count": 1, "by": {"_count": 1}}}, "unrolled": {"_count": 12, "todays": {"_count": 1, "issue": {"_count": 1}}, "it": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "to": {"_count": 1}}, "his": {"_count": 2, "parchment": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 2, "scroll": {"_count": 1}, "parchment": {"_count": 1}}, "and": {"_count": 1, "read": {"_count": 1}}, "then": {"_count": 1, "held": {"_count": 1}}}, "todays": {"_count": 7, "issue": {"_count": 1, "of": {"_count": 1}}, "potion": {"_count": 1, "on": {"_count": 1}}, "lesson": {"_count": 1, "said": {"_count": 1}}, "ceiling": {"_count": 1, "of": {"_count": 1}}, "Charms": {"_count": 1, "lesson": {"_count": 1}}, "Daily": {"_count": 1, "Prophet": {"_count": 1}}, "Prophet": {"_count": 1, "and": {"_count": 1}}}, "issue": {"_count": 11, "of": {"_count": 2, "the": {"_count": 1}, "Ministry": {"_count": 1}}, "said": {"_count": 1, "Luna": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}, "from": {"_count": 2, "below": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "any": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "although": {"_count": 1, "sometimes": {"_count": 1}}}, "Evening": {"_count": 9, "Prophet": {"_count": 3, "You": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}}, "Rubeus": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "brought": {"_count": 1, "no": {"_count": 1}}, "boys": {"_count": 1, "": {"_count": 1}}, "River": {"_count": 1, "": {"_count": 1}}}, "headline": {"_count": 19, "FLYING": {"_count": 1, "FORD": {"_count": 1}}, "SCENES": {"_count": 1, "OF": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Mystery": {"_count": 1, "Illness": {"_count": 1}}, "and": {"_count": 1, "said": {"_count": 1}}, "HARRY": {"_count": 1, "POTTER": {"_count": 1}}, "news": {"_count": 2, "and": {"_count": 1}, "wouldnt": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "MINISTRY": {"_count": 1, "SEEKS": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "\u2018Potter": {"_count": 1, "Accuses": {"_count": 1}}, "of": {"_count": 1, "one": {"_count": 1}}, "SCRIMGEOUR": {"_count": 1, "SUCCEEDS": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "set": {"_count": 1}}, "EXCLUSIVE": {"_count": 1, "EXTRACT": {"_count": 1}}, "that": {"_count": 1, "read": {"_count": 1}}}, "FLYING": {"_count": 1, "FORD": {"_count": 1, "ANGLIA": {"_count": 1}}}, "FORD": {"_count": 1, "ANGLIA": {"_count": 1, "MYSTIFIES": {"_count": 1}}}, "ANGLIA": {"_count": 1, "MYSTIFIES": {"_count": 1, "MUGGLES": {"_count": 1}}}, "MYSTIFIES": {"_count": 1, "MUGGLES": {"_count": 1, "": {"_count": 1}}}, "MUGGLES": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "OWN": {"_count": 1, "GOOD": {"_count": 1}}}, "Post": {"_count": 1, "Office": {"_count": 1, "tower": {"_count": 1}}}, "noon": {"_count": 3, "in": {"_count": 1, "Norfolk": {"_count": 1}}, "the": {"_count": 2, "next": {"_count": 2}}}, "Norfolk": {"_count": 2, "Mrs": {"_count": 1, "Hetty": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Hetty": {"_count": 1, "Bayliss": {"_count": 1, "while": {"_count": 1}}}, "Bayliss": {"_count": 1, "while": {"_count": 1, "hanging": {"_count": 1}}}, "washing": {"_count": 12, "": {"_count": 1, ".": {"_count": 1}}, "down": {"_count": 1, "Scabbers": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "himself": {"_count": 1, "vigorously": {"_count": 1}}, "basket": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "and": {"_count": 1, "packing": {"_count": 1}}, "our": {"_count": 1, "own": {"_count": 1}}, "machine": {"_count": 1, "and": {"_count": 1}}, "line": {"_count": 1, "and": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}}, "Angus": {"_count": 1, "Fleet": {"_count": 1, "of": {"_count": 1}}}, "Fleet": {"_count": 1, "of": {"_count": 1, "Peebles": {"_count": 1}}}, "Peebles": {"_count": 1, "reported": {"_count": 1, "to": {"_count": 1}}}, "police": {"_count": 17, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "why": {"_count": 1, "he": {"_count": 1}}, "were": {"_count": 3, "summoned": {"_count": 1}, "quite": {"_count": 1}, "forced": {"_count": 1}}, "station": {"_count": 1, "Frank": {"_count": 1}}, "had": {"_count": 1, "never": {"_count": 1}}, "said": {"_count": 1, "whoever": {"_count": 1}}, "say": {"_count": 1, "said": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "tonight": {"_count": 1, "I": {"_count": 1}}, "come": {"_count": 1, "he": {"_count": 1}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Hogwarts": {"_count": 1}}, "are": {"_count": 1, "baffled": {"_count": 1}}}, "Six": {"_count": 12, "or": {"_count": 2, "seven": {"_count": 2}}, "solid": {"_count": 1, "months": {"_count": 1}}, "dementors": {"_count": 1, "entered": {"_count": 1}}, "and": {"_count": 1, "brought": {"_count": 1}}, "months": {"_count": 1, "in": {"_count": 1}}, "Sickles": {"_count": 1, "he": {"_count": 1}}, "oclock": {"_count": 1, "Monday": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "years": {"_count": 1, "ter": {"_count": 1}}, "weeks": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "walloped": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "considerable": {"_count": 17, "damage": {"_count": 1, "seems": {"_count": 1}}, "amount": {"_count": 4, "": {"_count": 1}, "of": {"_count": 3}}, "way": {"_count": 1, "down": {"_count": 1}}, "pain": {"_count": 1, "": {"_count": 1}}, "height": {"_count": 1, "": {"_count": 1}}, "distress": {"_count": 1, "": {"_count": 1}}, "volume": {"_count": 1, "as": {"_count": 1}}, "distance": {"_count": 1, "and": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "panic": {"_count": 1, "": {"_count": 1}}, "talents": {"_count": 1, "to": {"_count": 1}}, "hard": {"_count": 1, "work": {"_count": 1}}, "ingenuity": {"_count": 1, "": {"_count": 1}}, "stretch": {"_count": 1, "of": {"_count": 1}}}, "Whomping": {"_count": 25, "Willow": {"_count": 24, "Snape": {"_count": 1}, "": {"_count": 3}, "hadnt": {"_count": 1}, "peoplell": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 3}, "was": {"_count": 4}, "said": {"_count": 3}, "the": {"_count": 1}, "planted": {"_count": 1}, "One": {"_count": 1}, "to": {"_count": 1}, "tearing": {"_count": 1}, "or": {"_count": 1}, "which": {"_count": 1}}, "Willows": {"_count": 1, "planted": {"_count": 1}}}, "Willow": {"_count": 32, "Snape": {"_count": 1, "went": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "hadnt": {"_count": 1, "squashed": {"_count": 1}}, "peoplell": {"_count": 1, "be": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "its": {"_count": 1}, "James": {"_count": 1}}, "was": {"_count": 4, "a": {"_count": 1}, "motionless": {"_count": 1}, "planted": {"_count": 1}, "creaking": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Snape": {"_count": 1}, "Harry": {"_count": 1}}, "the": {"_count": 1, "same": {"_count": 1}}, "planted": {"_count": 1, "over": {"_count": 1}}, "had": {"_count": 1, "cut": {"_count": 1}}, "One": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "transform": {"_count": 1}}, "tearing": {"_count": 1, "toward": {"_count": 1}}, "or": {"_count": 1, "we": {"_count": 1}}, "waiting": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "protected": {"_count": 1}}}, "unfortunately": {"_count": 24, "you": {"_count": 2, "are": {"_count": 1}, "thought": {"_count": 1}}, "owing": {"_count": 1, "to": {"_count": 1}}, "Professor": {"_count": 2, "Lockhart": {"_count": 1}, "Trelawney": {"_count": 1}}, "fulfill": {"_count": 1, "neither": {"_count": 1}}, "for": {"_count": 2, "you": {"_count": 1}, "her": {"_count": 1}}, "resulted": {"_count": 1, "in": {"_count": 1}}, "she": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "prevented": {"_count": 1, "Harry": {"_count": 1}}, "well": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "made": {"_count": 1}, "could": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "spotted": {"_count": 1, "by": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "looming": {"_count": 1}}, "Harry": {"_count": 1, "did": {"_count": 1}}, "that": {"_count": 1, "does": {"_count": 1}}, "Slughorn": {"_count": 1, "seemed": {"_count": 1}}, "Ive": {"_count": 1, "told": {"_count": 1}}}, "fairer": {"_count": 2, "than": {"_count": 2, "Snape": {"_count": 1}, "that": {"_count": 1}}}, "accompanied": {"_count": 41, "him": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "by": {"_count": 33, "Gilderoy": {"_count": 1}, "none": {"_count": 1}, "an": {"_count": 1}, "Tom": {"_count": 1}, "Wood": {"_count": 1}, "Professor": {"_count": 2}, "somebody": {"_count": 1}, "loud": {"_count": 1}, "Pigwidgeon": {"_count": 1}, "Lee": {"_count": 1}, "a": {"_count": 4}, "the": {"_count": 2}, "her": {"_count": 1}, "his": {"_count": 1}, "Crookshanks": {"_count": 1}, "Katie": {"_count": 1}, "certain": {"_count": 1}, "your": {"_count": 1}, "five": {"_count": 1}, "Marietta": {"_count": 1}, "Luna": {"_count": 1}, "what": {"_count": 1}, "two": {"_count": 1}, "those": {"_count": 1}, "Rufus": {"_count": 1}, "families": {"_count": 1}, "Griphook": {"_count": 1}, "other": {"_count": 1}}, "her": {"_count": 1, "across": {"_count": 1}}, "them": {"_count": 2, "to": {"_count": 1}, "toward": {"_count": 1}}, "everywhere": {"_count": 1, "he": {"_count": 1}}, "Ron": {"_count": 1, "back": {"_count": 1}}, "not": {"_count": 1, "by": {"_count": 1}}}, "ominously": {"_count": 15, "": {"_count": 7, ".": {"_count": 7}}, "exactly": {"_count": 1, "where": {"_count": 1}}, "gray": {"_count": 1, "clouds": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "took": {"_count": 1, "advantage": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "Its": {"_count": 1, "metal": {"_count": 1}}, "swaying": {"_count": 1, "branches": {"_count": 1}}}, "launched": {"_count": 21, "into": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 1}, "an": {"_count": 1}}, "a": {"_count": 1, "new": {"_count": 1}}, "themselves": {"_count": 3, "across": {"_count": 1}, "upon": {"_count": 1}, "at": {"_count": 1}}, "himself": {"_count": 10, "out": {"_count": 1}, "forward": {"_count": 1}, "upon": {"_count": 2}, "across": {"_count": 1}, "toward": {"_count": 1}, "after": {"_count": 1}, "off": {"_count": 1}, "sideways": {"_count": 1}, "in": {"_count": 1}}, "herself": {"_count": 2, "forward": {"_count": 1}, "skyward": {"_count": 1}}, "itself": {"_count": 1, "into": {"_count": 1}}}, "numb": {"_count": 28, "": {"_count": 9, ".": {"_count": 9}}, "brain": {"_count": 1, "get": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "gripping": {"_count": 1}}, "legs": {"_count": 1, "watched": {"_count": 1}}, "with": {"_count": 4, "cold": {"_count": 2}, "shock": {"_count": 1}, "clapping": {"_count": 1}}, "hands": {"_count": 1, "slipped": {"_count": 1}}, "disbelief": {"_count": 2, "he": {"_count": 2}}, "dread": {"_count": 1, "that": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "looking": {"_count": 1}, "cold": {"_count": 1}}, "lips": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "fingers": {"_count": 1, "and": {"_count": 1}}}, "grave": {"_count": 59, "": {"_count": 20, ".": {"_count": 19}, "!": {"_count": 1}}, "and": {"_count": 5, "the": {"_count": 1}, "from": {"_count": 1}, "dignified": {"_count": 1}, "he": {"_count": 1}, "stripped": {"_count": 1}}, "announcement": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "Harrys": {"_count": 1}}, "to": {"_count": 1, "grave": {"_count": 1}}, "Harry": {"_count": 1, "Voldemort": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 2, "empty": {"_count": 1}, "conclusive": {"_count": 1}}, "peril": {"_count": 1, "": {"_count": 1}}, "danger": {"_count": 2, "": {"_count": 1}, "looking": {"_count": 1}}, "surely": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "error": {"_count": 1, "and": {"_count": 1}}, "mistake": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "was": {"_count": 2, "worse": {"_count": 1}, "extremely": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "Albus": {"_count": 1}, "Ignotus": {"_count": 1}}, "in": {"_count": 2, "Godrics": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "if": {"_count": 1, "hed": {"_count": 1}}, "arranged": {"_count": 1, "his": {"_count": 1}}, "rose": {"_count": 1, "up": {"_count": 1}}, "ideas": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 2, "wondered": {"_count": 1}, "had": {"_count": 1}}}, "beaten": {"_count": 19, "up": {"_count": 2, "by": {"_count": 2}}, "but": {"_count": 1, "the": {"_count": 1}}, "often": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "broomstick": {"_count": 1, "": {"_count": 1}}, "Gryffindor": {"_count": 1, "once": {"_count": 1}}, "a": {"_count": 1, "Hungarian": {"_count": 1}}, "him": {"_count": 3, "at": {"_count": 1}, "to": {"_count": 1}, "only": {"_count": 1}}, "you": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 2, "to": {"_count": 1}, "at": {"_count": 1}}, "me": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "em": {"_count": 1, "unconscious": {"_count": 1}}, "back": {"_count": 1, "a": {"_count": 1}}, "track": {"_count": 1, "in": {"_count": 1}}}, "hopeless": {"_count": 8, "sort": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 1, "I": {"_count": 1}}, "cases": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "dueling": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "longing": {"_count": 1, "killed": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}}, "expelling": {"_count": 3, "us": {"_count": 1, "arent": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "me": {"_count": 1, "said": {"_count": 1}}}, "seriousness": {"_count": 3, "of": {"_count": 2, "what": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "flouted": {"_count": 1, "the": {"_count": 1, "Decree": {"_count": 1}}}, "caused": {"_count": 64, "serious": {"_count": 1, "damage": {"_count": 1}}, "dinnit": {"_count": 1, "Ern": {"_count": 1}}, "Snape": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 8, "diversion": {"_count": 1}, "slight": {"_count": 1}, "wave": {"_count": 1}, "person": {"_count": 1}, "breach": {"_count": 1}, "dinner": {"_count": 1}, "certain": {"_count": 1}, "minor": {"_count": 1}}, "him": {"_count": 3, "another": {"_count": 1}, "only": {"_count": 1}, "to": {"_count": 1}}, "his": {"_count": 1, "abrupt": {"_count": 1}}, "many": {"_count": 1, "raised": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 11, "loud": {"_count": 1}, "veil": {"_count": 1}, "breach": {"_count": 1}, "hurricane": {"_count": 1}, "pot": {"_count": 1}, "Prince": {"_count": 1}, "death": {"_count": 1}, "Mark": {"_count": 1}, "Dursleys": {"_count": 1}, "ball": {"_count": 1}, "Sorting": {"_count": 1}}, "by": {"_count": 4, "Mrs": {"_count": 1}, "his": {"_count": 1}, "dementors": {"_count": 1}, "animals": {"_count": 1}}, "this": {"_count": 2, "sort": {"_count": 1}, "abrupt": {"_count": 1}}, "too": {"_count": 2, "much": {"_count": 2}}, "Hedwig": {"_count": 1, "to": {"_count": 1}}, "little": {"_count": 1, "strife": {"_count": 1}}, "Malfoy": {"_count": 1, "discomfort": {"_count": 1}}, "everyone": {"_count": 1, "in": {"_count": 1}}, "outrage": {"_count": 1, "yesterday": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "Harrys": {"_count": 1, "books": {"_count": 1}}, "Seamus": {"_count": 1, "to": {"_count": 1}}, "neatly": {"_count": 1, "stacked": {"_count": 1}}, "Harry": {"_count": 1, "to": {"_count": 1}}, "hers": {"_count": 1, "to": {"_count": 1}}, "no": {"_count": 1, "visible": {"_count": 1}}, "in": {"_count": 1, "Madam": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "Lord": {"_count": 2, "Voldemort": {"_count": 2}}, "when": {"_count": 1, "the": {"_count": 1}}, "toenails": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "blockages": {"_count": 1, "in": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "half": {"_count": 1, "the": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 1, "victim": {"_count": 1}}, "number": {"_count": 1, "eleven": {"_count": 1}}, "Dumbledore": {"_count": 1, "to": {"_count": 1}}}, "acts": {"_count": 5, "of": {"_count": 2, "this": {"_count": 1}, "unspeakable": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "like": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "nature": {"_count": 21, "It": {"_count": 1, "will": {"_count": 1}}, "of": {"_count": 7, "a": {"_count": 2}, "the": {"_count": 2}, "our": {"_count": 1}, "these": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "to": {"_count": 3, "most": {"_count": 1}, "occur": {"_count": 1}, "purchase": {"_count": 1}}, "ter": {"_count": 1, "look": {"_count": 1}}, "made": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "much": {"_count": 1}}}, "responsibility": {"_count": 16, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 7, "the": {"_count": 4}, "Buckbeaks": {"_count": 1}, "it": {"_count": 1}, "your": {"_count": 1}}, "nor": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 1, "youve": {"_count": 1}}, "to": {"_count": 2, "be": {"_count": 1}, "say": {"_count": 1}}, "as": {"_count": 1, "Minister": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "my": {"_count": 1}}}, "custard": {"_count": 7, "tart": {"_count": 1, "I": {"_count": 1}}, "creams": {"_count": 3, "youve": {"_count": 1}, "we": {"_count": 1}, "was": {"_count": 1}}, "cream": {"_count": 1, "choked": {"_count": 1}}, "later": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "sample": {"_count": 5, "Snape": {"_count": 1, "shot": {"_count": 1}}, "of": {"_count": 2, "fertilizer": {"_count": 1}, "your": {"_count": 1}}, "lay": {"_count": 1, "in": {"_count": 1}}, "flask": {"_count": 1, "feeling": {"_count": 1}}}, "venom": {"_count": 16, "at": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "had": {"_count": 1, "burned": {"_count": 1}}, "Nagini": {"_count": 1, "provided": {"_count": 1}}, "for": {"_count": 1, "our": {"_count": 1}}, "antidotes": {"_count": 1, "or": {"_count": 1}}, "prevented": {"_count": 1, "the": {"_count": 1}}, "dissolves": {"_count": 1, "them": {"_count": 1}}, "is": {"_count": 1, "very": {"_count": 1}}, "from": {"_count": 2, "an": {"_count": 1}, "Aragog": {"_count": 1}}, "only": {"_count": 1, "has": {"_count": 1}}, "and": {"_count": 1, "theyre": {"_count": 1}}}, "eyeing": {"_count": 29, "them": {"_count": 3, "like": {"_count": 1}, "suspiciously": {"_count": 1}, "all": {"_count": 1}}, "Ron": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 6, "ragged": {"_count": 1}, "Weasley": {"_count": 1}, "ugly": {"_count": 1}, "Pensieve": {"_count": 1}, "long": {"_count": 1}, "parcel": {"_count": 1}}, "Harrys": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 4, "Ron": {"_count": 1}, "curiously": {"_count": 1}, "in": {"_count": 1}, "intently": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "Bill": {"_count": 1, "with": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "Kreacher": {"_count": 1, "with": {"_count": 1}}, "her": {"_count": 1, "suspiciously": {"_count": 1}}, "one": {"_count": 1, "anothers": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "this": {"_count": 1, "wand": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}, "him": {"_count": 3, "hopefully": {"_count": 1}, "with": {"_count": 1}, "nervously": {"_count": 1}}}, "wrathful": {"_count": 1, "eagle": {"_count": 1, "": {"_count": 1}}}, "bleeding": {"_count": 47, "": {"_count": 6, ".": {"_count": 6}}, "in": {"_count": 1, "a": {"_count": 1}}, "freely": {"_count": 2, "fly": {"_count": 1}, "": {"_count": 1}}, "too": {"_count": 1, "the": {"_count": 1}}, "scrambled": {"_count": 1, "aside": {"_count": 1}}, "at": {"_count": 1, "Harrys": {"_count": 1}}, "hands": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "profusely": {"_count": 1, "": {"_count": 1}}, "stump": {"_count": 2, "of": {"_count": 1}, "but": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}, "wrist": {"_count": 1, "": {"_count": 1}}, "till": {"_count": 1, "you": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "severely": {"_count": 1}}, "aching": {"_count": 1, "hand": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 2, "mad": {"_count": 2}}, "as": {"_count": 1, "they": {"_count": 1}}, "rather": {"_count": 1, "badly": {"_count": 1}}, "swooning": {"_count": 1, "sweating": {"_count": 1}}, "nose": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "onto": {"_count": 1, "Umbridges": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "badly": {"_count": 1, "Dolohov": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "house": {"_count": 1, "then": {"_count": 1}}, "hand": {"_count": 1, "elevated": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "ear": {"_count": 1, "": {"_count": 1}}, "puncture": {"_count": 1, "marks": {"_count": 1}}, "wound": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "stopped": {"_count": 1}}, "headdress": {"_count": 1, "": {"_count": 1}}, "copiously": {"_count": 1, "": {"_count": 1}}, "utterly": {"_count": 1, "bemused": {"_count": 1}}, "lip": {"_count": 1, "": {"_count": 1}}}, "lightened": {"_count": 5, "considerably": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "suddenly": {"_count": 1, "to": {"_count": 1}}, "very": {"_count": 1, "slowly": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}}, "considerably": {"_count": 11, "": {"_count": 1, ".": {"_count": 1}}, "more": {"_count": 3, "than": {"_count": 1}, "cheerful": {"_count": 2}}, "lighter": {"_count": 2, "than": {"_count": 1}, "they": {"_count": 1}}, "warmer": {"_count": 1, "toward": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "larger": {"_count": 1, "than": {"_count": 1}}, "speeded": {"_count": 1, "up": {"_count": 1}}, "for": {"_count": 1, "although": {"_count": 1}}}, "jug": {"_count": 22, "of": {"_count": 3, "iced": {"_count": 1}, "pumpkin": {"_count": 1}, "mead": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "spraying": {"_count": 1, "them": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "slipped": {"_count": 1, "from": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "she": {"_count": 1, "let": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "Hermione": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "iced": {"_count": 8, "pumpkin": {"_count": 2, "juice": {"_count": 2}}, "cake": {"_count": 2, "": {"_count": 2}}, "gingerbread": {"_count": 1, "house": {"_count": 1}}, "Snitches": {"_count": 1, "and": {"_count": 1}}, "juice": {"_count": 1, "": {"_count": 1}}, "champagne": {"_count": 1, "was": {"_count": 1}}}, "ham": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "pie": {"_count": 1, "boiled": {"_count": 1}}, "a": {"_count": 1, "dozen": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}}, "shrugged": {"_count": 54, "": {"_count": 26, ".": {"_count": 26}}, "wearily": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 2, "still": {"_count": 1}, "snatching": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "Neville": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 9, "continued": {"_count": 2}, "turned": {"_count": 1}, "followed": {"_count": 1}, "said": {"_count": 1}, "spread": {"_count": 1}, "gave": {"_count": 1}, "helped": {"_count": 1}, "grimaced": {"_count": 1}}, "Hagrid": {"_count": 1, "still": {"_count": 1}}, "looking": {"_count": 1, "badtempered": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "his": {"_count": 1, "massive": {"_count": 1}}, "already": {"_count": 1, "moving": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "when": {"_count": 1, "Hermione": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Auntie": {"_count": 1, "Muriel": {"_count": 1}}, "it": {"_count": 1, "off": {"_count": 1}}, "modestly": {"_count": 1, "we": {"_count": 1}}}, "sagely": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "squeezing": {"_count": 1, "over": {"_count": 1}}}, "Doesnt": {"_count": 14, "want": {"_count": 2, "people": {"_count": 1}, "to": {"_count": 1}}, "know": {"_count": 2, "what": {"_count": 1}, "who": {"_count": 1}}, "sound": {"_count": 1, "like": {"_count": 1}}, "camp": {"_count": 1, "much": {"_count": 1}}, "trust": {"_count": 1, "anyone": {"_count": 1}}, "think": {"_count": 1, "much": {"_count": 1}}, "he": {"_count": 1, "ever": {"_count": 1}}, "stop": {"_count": 1, "him": {"_count": 1}}, "it": {"_count": 1, "ever": {"_count": 1}}, "matter": {"_count": 2, "": {"_count": 2}}, "your": {"_count": 1, "dad": {"_count": 1}}}, "refilling": {"_count": 4, "itself": {"_count": 1, "they": {"_count": 1}}, "his": {"_count": 1, "hotwater": {"_count": 1}}, "their": {"_count": 1, "mugs": {"_count": 1}}, "the": {"_count": 1, "goblet": {"_count": 1}}}, "treading": {"_count": 6, "the": {"_count": 1, "familiar": {"_count": 1}}, "on": {"_count": 2, "a": {"_count": 1}, "Rons": {"_count": 1}}, "water": {"_count": 1, "staring": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "marked": {"_count": 1, "the": {"_count": 1}}}, "oil": {"_count": 10, "painting": {"_count": 3, "of": {"_count": 2}, "in": {"_count": 1}}, "lamp": {"_count": 4, "dangling": {"_count": 1}, "rattle": {"_count": 1}, "": {"_count": 2}}, "lanterns": {"_count": 1, "soared": {"_count": 1}}, "can": {"_count": 1, "lying": {"_count": 1}}, "lamps": {"_count": 1, "as": {"_count": 1}}}, "severe": {"_count": 16, "as": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "voice": {"_count": 1, "": {"_count": 1}}, "punishments": {"_count": 1, "to": {"_count": 1}}, "disappointment": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "and": {"_count": 1}}, "strain": {"_count": 1, "from": {"_count": 1}}, "parting": {"_count": 1, "looked": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "haircut": {"_count": 1, "of": {"_count": 1}}, "drowsiness": {"_count": 1, "within": {"_count": 1}}, "line": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}, "illness": {"_count": 1, "an": {"_count": 1}}}, "Skip": {"_count": 1, "the": {"_count": 1, "lecture": {"_count": 1}}}, "\u2018wattlebird": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "circular": {"_count": 46, "common": {"_count": 2, "room": {"_count": 2}}, "room": {"_count": 17, "with": {"_count": 3}, "full": {"_count": 1}, "was": {"_count": 1}, "lined": {"_count": 2}, "in": {"_count": 1}, "lit": {"_count": 1}, "": {"_count": 4}, "then": {"_count": 1}, "the": {"_count": 1}, "behind": {"_count": 1}, "airier": {"_count": 1}}, "conversations": {"_count": 1, "that": {"_count": 1}}, "mirror": {"_count": 1, "": {"_count": 1}}, "dormitory": {"_count": 1, "with": {"_count": 1}}, "trapdoor": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "tables": {"_count": 2, "were": {"_count": 1}, "occasionally": {"_count": 1}}, "walls": {"_count": 1, "were": {"_count": 1}}, "table": {"_count": 1, "": {"_count": 1}}, "chart": {"_count": 1, "and": {"_count": 1}}, "stone": {"_count": 1, "room": {"_count": 1}}, "window": {"_count": 3, "in": {"_count": 2}, "through": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "pool": {"_count": 1, "": {"_count": 1}}, "hole": {"_count": 1, "in": {"_count": 1}}, "tower": {"_count": 1, "room": {"_count": 1}}, "wall": {"_count": 1, "was": {"_count": 1}}, "hallway": {"_count": 1, "at": {"_count": 1}}, "black": {"_count": 1, "hall": {"_count": 1}}, "office": {"_count": 3, "looked": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "patch": {"_count": 1, "of": {"_count": 1}}, "towertop": {"_count": 1, "room": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "Arms": {"_count": 1, "reached": {"_count": 1, "through": {"_count": 1}}}, "scramble": {"_count": 6, "in": {"_count": 1, "after": {"_count": 1}}, "as": {"_count": 1, "everyone": {"_count": 1}}, "to": {"_count": 2, "collect": {"_count": 1}, "get": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Inspired": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "by": {"_count": 1, "Fred": {"_count": 1}}}, "peoplell": {"_count": 1, "be": {"_count": 1, "talking": {"_count": 1}}}, "marathon": {"_count": 1, "Fred": {"_count": 1, "and": {"_count": 1}}}, "embarrassedly": {"_count": 1, "but": {"_count": 1, "Harry": {"_count": 1}}}, "slapped": {"_count": 10, "and": {"_count": 1, "gained": {"_count": 1}}, "Malfoy": {"_count": 1, "across": {"_count": 1}}, "her": {"_count": 2, "hand": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 2, "over": {"_count": 1}, "back": {"_count": 1}}, "the": {"_count": 1, "meat": {"_count": 1}}, "a": {"_count": 1, "hand": {"_count": 1}}, "awake": {"_count": 1, "again": {"_count": 1}}}, "gained": {"_count": 15, "the": {"_count": 5, "peace": {"_count": 1}, "previous": {"_count": 1}, "top": {"_count": 1}, "street": {"_count": 1}, "idea": {"_count": 1}}, "by": {"_count": 3, "refusing": {"_count": 1}, "fighting": {"_count": 1}, "arguing": {"_count": 1}}, "twelve": {"_count": 1, "O": {"_count": 1}}, "in": {"_count": 1, "keeping": {"_count": 1}}, "entry": {"_count": 1, "to": {"_count": 1}}, "office": {"_count": 1, "but": {"_count": 1}}, "him": {"_count": 1, "many": {"_count": 1}}, "her": {"_count": 1, "approval": {"_count": 1}}, "an": {"_count": 1, "excellent": {"_count": 1}}}, "SECOND": {"_count": 3, "YEARS": {"_count": 1, "": {"_count": 1}}, "TASK": {"_count": 1, "You": {"_count": 1}}, "WAR": {"_count": 1, "BEGINS": {"_count": 1}}}, "fourposters": {"_count": 2, "hung": {"_count": 1, "with": {"_count": 1}}, "hangings": {"_count": 1, "and": {"_count": 1}}}, "ve": {"_count": 15, "enjoyed": {"_count": 1, "that": {"_count": 1}}, "let": {"_count": 1, "slime": {"_count": 1}}, "fought": {"_count": 1, "bravely": {"_count": 1}}, "you": {"_count": 1, "been": {"_count": 1}}, "have": {"_count": 3, "a": {"_count": 1}, "grounds": {"_count": 1}, "very": {"_count": 1}}, "are": {"_count": 2, "not": {"_count": 1}, "flying": {"_count": 1}}, "given": {"_count": 1, "me": {"_count": 1}}, "I": {"_count": 1, "": {"_count": 1}}, "kicked": {"_count": 1, "Firenze": {"_count": 1}}, "bin": {"_count": 1, "caught": {"_count": 1}}, "both": {"_count": 1, "asked": {"_count": 1}}, "just": {"_count": 1, "been": {"_count": 1}}}, "Unbelievablel": {"_count": 1, "beamed": {"_count": 1, "Seamus": {"_count": 1}}}, "Cool": {"_count": 11, "said": {"_count": 3, "Dean": {"_count": 1}, "Ron": {"_count": 2}}, "sir": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}, "name": {"_count": 1, "said": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}}, "Amazing": {"_count": 5, "said": {"_count": 1, "Neville": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}, "how": {"_count": 1, "much": {"_count": 1}}}, "awestruck": {"_count": 11, "": {"_count": 5, ".": {"_count": 5}}, "look": {"_count": 1, "on": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 2}}, "looks": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "dinner": {"_count": 1}}, "and": {"_count": 1, "overwhelmed": {"_count": 1}}}, "6": {"_count": 4, "GILDEROY": {"_count": 1, "LOCKHART": {"_count": 1}}, "oclock": {"_count": 1, "on": {"_count": 1}}, "DRACOS": {"_count": 1, "DETOUR": {"_count": 1}}, "THE": {"_count": 1, "GHOUL": {"_count": 1}}}, "downhill": {"_count": 3, "from": {"_count": 1, "breakfast": {"_count": 1}}, "not": {"_count": 1, "Dumbledore": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}}, "kippers": {"_count": 2, "mountains": {"_count": 1, "of": {"_count": 1}}, "were": {"_count": 1, "quite": {"_count": 1}}}, "enchanted": {"_count": 43, "ceiling": {"_count": 10, "today": {"_count": 1}, "which": {"_count": 2}, "while": {"_count": 1}, "overhead": {"_count": 1}, "above": {"_count": 1}, "swirled": {"_count": 1}, "of": {"_count": 1}, "": {"_count": 1}, "like": {"_count": 1}}, "snow": {"_count": 1, "was": {"_count": 1}}, "car": {"_count": 1, "crashed": {"_count": 1}}, "barrier": {"_count": 1, "": {"_count": 1}}, "candles": {"_count": 1, "hanging": {"_count": 1}}, "each": {"_count": 1, "tree": {"_count": 1}}, "map": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "look": {"_count": 1}}, "diary": {"_count": 1, "right": {"_count": 1}}, "barriers": {"_count": 1, "before": {"_count": 1}}, "the": {"_count": 1, "sound": {"_count": 1}}, "mist": {"_count": 1, "": {"_count": 1}}, "sleep": {"_count": 1, "and": {"_count": 1}}, "windows": {"_count": 1, "Magical": {"_count": 1}}, "mirror": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "fireworks": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "body": {"_count": 1, "for": {"_count": 1}}, "razor": {"_count": 1, "from": {"_count": 1}}, "this": {"_count": 1, "Snitch": {"_count": 1}}, "paper": {"_count": 1, "clips": {"_count": 1}}, "repository": {"_count": 1, "of": {"_count": 1}}, "water": {"_count": 1, "as": {"_count": 1}}, "treasure": {"_count": 1, "rose": {"_count": 1}}, "wall": {"_count": 1, "which": {"_count": 1}}, "protected": {"_count": 1, "space": {"_count": 1}}, "starry": {"_count": 1, "sphere": {"_count": 1}}, "cage": {"_count": 3, "": {"_count": 2}, "off": {"_count": 1}}, "sky": {"_count": 1, "above": {"_count": 1}}}, "stiffness": {"_count": 2, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}}, "accidentprone": {"_count": 1, "boy": {"_count": 1, "with": {"_count": 1}}}, "Mails": {"_count": 1, "due": {"_count": 1, "any": {"_count": 1}}}, "Grans": {"_count": 3, "sending": {"_count": 1, "a": {"_count": 1}}, "always": {"_count": 1, "telling": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "rushing": {"_count": 26, "sound": {"_count": 3, "overhead": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}}, "down": {"_count": 1, "an": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "past": {"_count": 3, "with": {"_count": 1}, "in": {"_count": 1}, "us": {"_count": 1}}, "forward": {"_count": 2, "to": {"_count": 2}}, "to": {"_count": 2, "tell": {"_count": 1}, "my": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "noise": {"_count": 2, "filled": {"_count": 1}, "as": {"_count": 1}}, "roaring": {"_count": 1, "sound": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "wind": {"_count": 1, "he": {"_count": 1}}, "all": {"_count": 1, "sorts": {"_count": 1}}, "off": {"_count": 2, "to": {"_count": 2}}, "waves": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "against": {"_count": 1, "rock": {"_count": 1}}, "sea": {"_count": 1, "to": {"_count": 1}}}, "bedraggled": {"_count": 3, "owl": {"_count": 1, "out": {"_count": 1}}, "crowd": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "damp": {"_count": 1}}}, "unconscious": {"_count": 47, "onto": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "midair": {"_count": 1}, "their": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "owl": {"_count": 1, "at": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Snape": {"_count": 1, "drifting": {"_count": 1}}, "form": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "body": {"_count": 2, "and": {"_count": 1}, "above": {"_count": 1}}, "Moody": {"_count": 2, "lying": {"_count": 1}, "on": {"_count": 1}}, "Malfoy": {"_count": 1, "Crabbe": {"_count": 1}}, "doxies": {"_count": 1, "lay": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "theyd": {"_count": 1, "woken": {"_count": 1}}, "colleagues": {"_count": 1, "and": {"_count": 1}}, "bud": {"_count": 1, "we": {"_count": 1}}, "owner": {"_count": 1, "pocketed": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "human": {"_count": 1, "figure": {"_count": 1}}, "friend": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 3, "whose": {"_count": 1}, "was": {"_count": 1}, "both": {"_count": 1}}, "bodies": {"_count": 1, "would": {"_count": 1}}, "men": {"_count": 1, "": {"_count": 1}}, "impulse": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "Goyle": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "Howler": {"_count": 17, "said": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "and": {"_count": 1, "Ron": {"_count": 1}}, "had": {"_count": 1, "done": {"_count": 1}}, "was": {"_count": 1, "obviously": {"_count": 1}}, "back": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "go": {"_count": 1, "off": {"_count": 1}}, "straight": {"_count": 1, "away": {"_count": 1}}, "from": {"_count": 1, "": {"_count": 1}}, "been": {"_count": 1, "about": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "she": {"_count": 1}}}, "timid": {"_count": 3, "whisper": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "fearful": {"_count": 1}}, "motions": {"_count": 1, "toward": {"_count": 1}}}, "Open": {"_count": 12, "it": {"_count": 5, "Neville": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}}, "up": {"_count": 4, "he": {"_count": 2}, "": {"_count": 1}, "we": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 2, "door": {"_count": 2}}}, "eased": {"_count": 4, "the": {"_count": 1, "envelope": {"_count": 1}}, "them": {"_count": 1, "open": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "slit": {"_count": 15, "it": {"_count": 3, "open": {"_count": 3}}, "open": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 3, "the": {"_count": 3}}, "over": {"_count": 1, "his": {"_count": 1}}, "amid": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "throat": {"_count": 1}}, "pupiled": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "oldest": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "pupils": {"_count": 1, "of": {"_count": 1}}}, "STEALING": {"_count": 1, "THE": {"_count": 1, "CAR": {"_count": 1}}}, "WOULDNT": {"_count": 1, "HAVE": {"_count": 1, "BEEN": {"_count": 1}}}, "BEEN": {"_count": 12, "SURPRISED": {"_count": 1, "IF": {"_count": 1}}, "OPENED": {"_count": 1, "": {"_count": 1}}, "HELPING": {"_count": 1, "HIM": {"_count": 1}}, "PASSING": {"_count": 1, "INFORMATION": {"_count": 1}}, "IN": {"_count": 1, "THE": {"_count": 1}}, "HERE": {"_count": 1, "HAVEN": {"_count": 1}}, "TOGETHER": {"_count": 1, "": {"_count": 1}}, "STUCK": {"_count": 2, "AT": {"_count": 1}, "IN": {"_count": 1}}, "HAPPENING": {"_count": 1, "": {"_count": 1}}, "GOING": {"_count": 1, "ON": {"_count": 1}}, "HAVING": {"_count": 1, "A": {"_count": 1}}}, "SURPRISED": {"_count": 1, "IF": {"_count": 1, "THEYD": {"_count": 1}}}, "IF": {"_count": 7, "THEYD": {"_count": 1, "EXPELLED": {"_count": 1}}, "YOU": {"_count": 3, "PUT": {"_count": 1}, "HAVE": {"_count": 1}, "THINK": {"_count": 1}}, "WE": {"_count": 2, "HAVENT": {"_count": 1}, "DIE": {"_count": 1}}, "HE": {"_count": 1, "KNEW": {"_count": 1}}}, "THEYD": {"_count": 1, "EXPELLED": {"_count": 1, "YOU": {"_count": 1}}}, "EXPELLED": {"_count": 1, "YOU": {"_count": 1, "YOU": {"_count": 1}}}, "WAIT": {"_count": 5, "TILL": {"_count": 1, "I": {"_count": 1}}, "FOR": {"_count": 1, "ME": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "UNTIL": {"_count": 1, "WEVE": {"_count": 1}}}, "TILL": {"_count": 1, "I": {"_count": 1, "GET": {"_count": 1}}}, "HOLD": {"_count": 2, "OF": {"_count": 1, "YOU": {"_count": 1}}, "YOUR": {"_count": 1, "TONGUE": {"_count": 1}}}, "SUPPOSE": {"_count": 2, "YOU": {"_count": 1, "STOPPED": {"_count": 1}}, "YOUVE": {"_count": 1, "BEEN": {"_count": 1}}}, "STOPPED": {"_count": 1, "TO": {"_count": 1, "THINK": {"_count": 1}}}, "THINK": {"_count": 5, "WHAT": {"_count": 1, "YOUR": {"_count": 1}}, "YOURE": {"_count": 1, "DOIN": {"_count": 1}}, "YOU": {"_count": 1, "ARE": {"_count": 1}}, "YOUD": {"_count": 1, "LIKE": {"_count": 1}}, "IM": {"_count": 1, "JUST": {"_count": 1}}}, "FATHER": {"_count": 2, "AND": {"_count": 1, "I": {"_count": 1}}, "WOULD": {"_count": 1, "DIE": {"_count": 1}}}, "WENT": {"_count": 1, "THROUGH": {"_count": 1, "WHEN": {"_count": 1}}}, "WHEN": {"_count": 1, "WE": {"_count": 1, "SAW": {"_count": 1}}}, "WE": {"_count": 12, "SAW": {"_count": 1, "IT": {"_count": 1}}, "DIDNT": {"_count": 1, "BRING": {"_count": 1}}, "WOULD": {"_count": 1, "HAVE": {"_count": 1}}, "ARE": {"_count": 1, "NOT": {"_count": 1}}, "HAVENT": {"_count": 1, "GOT": {"_count": 1}}, "REGRET": {"_count": 1, "THAT": {"_count": 1}}, "WIN": {"_count": 2, "WEASLEY": {"_count": 1}, "But": {"_count": 1}}, "DID": {"_count": 1, "IT": {"_count": 1}}, "WON": {"_count": 1, "": {"_count": 1}}, "NEED": {"_count": 1, "THE": {"_count": 1}}, "DIE": {"_count": 1, "FOR": {"_count": 1}}}, "SAW": {"_count": 3, "IT": {"_count": 1, "WAS": {"_count": 1}}, "HIM": {"_count": 2, "COME": {"_count": 1}, "RETURN": {"_count": 1}}}, "IT": {"_count": 25, "WAS": {"_count": 1, "GONE": {"_count": 1}}, "WASNT": {"_count": 1, "A": {"_count": 1}}, "": {"_count": 13, "!": {"_count": 13}}, "POTTER": {"_count": 2, "": {"_count": 1}, "AND": {"_count": 1}}, "I": {"_count": 1, "KNOW": {"_count": 1}}, "That": {"_count": 1, "will": {"_count": 1}}, "RUDDY": {"_count": 1, "WELL": {"_count": 1}}, "WHO": {"_count": 1, "SAVED": {"_count": 1}}, "TAKES": {"_count": 1, "TO": {"_count": 1}}, "TO": {"_count": 2, "ME": {"_count": 1}, "END": {"_count": 1}}, "OR": {"_count": 1, "HELL": {"_count": 1}}}, "WAS": {"_count": 10, "GONE": {"_count": 1, "Mrs": {"_count": 1}}, "ON": {"_count": 1, "THE": {"_count": 1}}, "STANDING": {"_count": 1, "OVER": {"_count": 1}}, "DELIBERATE": {"_count": 1, "": {"_count": 1}}, "WRONG": {"_count": 1, "": {"_count": 1}}, "THEIR": {"_count": 1, "SECRETKEEPER": {"_count": 1}}, "NO": {"_count": 1, "NEED": {"_count": 1}}, "BORN": {"_count": 3, "IN": {"_count": 3}}}, "spoons": {"_count": 1, "rattle": {"_count": 1, "on": {"_count": 1}}}, "deafeningly": {"_count": 1, "off": {"_count": 1, "the": {"_count": 1}}}, "swiveling": {"_count": 7, "around": {"_count": 3, "to": {"_count": 2}, "in": {"_count": 1}}, "onto": {"_count": 1, "Hermione": {"_count": 1}}, "staircase": {"_count": 1, "someones": {"_count": 1}}, "occasionally": {"_count": 1, "to": {"_count": 1}}, "eyes": {"_count": 1, "and": {"_count": 1}}}, "crimson": {"_count": 15, "forehead": {"_count": 1, "could": {"_count": 1}}, "bird": {"_count": 1, "the": {"_count": 1}}, "light": {"_count": 1, "the": {"_count": 1}}, "handbag": {"_count": 1, "": {"_count": 1}}, "supporters": {"_count": 1, "was": {"_count": 1}}, "rosettes": {"_count": 1, "Yeh": {"_count": 1}}, "hangings": {"_count": 1, "stood": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 3, "beaming": {"_count": 1}, "gold": {"_count": 2}}, "velvet": {"_count": 1, "lay": {"_count": 1}}, "liquid": {"_count": 1, "whereas": {"_count": 1}}, "flowers": {"_count": 1, "across": {"_count": 1}}}, "LAST": {"_count": 5, "NIGHT": {"_count": 1, "I": {"_count": 1}}, "PETUNIA": {"_count": 1, "": {"_count": 1}}, "YEAR": {"_count": 1, "": {"_count": 1}}, "THE": {"_count": 1, "TRUTH": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "NIGHT": {"_count": 2, "I": {"_count": 2, "THOUGHT": {"_count": 1}, "SAW": {"_count": 1}}}, "THOUGHT": {"_count": 1, "YOUR": {"_count": 1, "FATHER": {"_count": 1}}}, "WOULD": {"_count": 2, "DIE": {"_count": 1, "OF": {"_count": 1}}, "HAVE": {"_count": 1, "DONE": {"_count": 1}}}, "DIE": {"_count": 2, "OF": {"_count": 1, "SHAME": {"_count": 1}}, "FOR": {"_count": 1, "THEM": {"_count": 1}}}, "SHAME": {"_count": 1, "WE": {"_count": 1, "DIDNT": {"_count": 1}}}, "DIDNT": {"_count": 2, "BRING": {"_count": 1, "YOU": {"_count": 1}}, "DISAPPARATE": {"_count": 1, "": {"_count": 1}}}, "BRING": {"_count": 2, "YOU": {"_count": 2, "UP": {"_count": 1}, "STRAIGHT": {"_count": 1}}}, "BEHAVE": {"_count": 1, "LIKE": {"_count": 1, "THIS": {"_count": 1}}}, "BOTH": {"_count": 2, "HAVE": {"_count": 1, "DIED": {"_count": 1}}, "YOUR": {"_count": 1, "SKINS": {"_count": 1}}}, "DIED": {"_count": 6, "Harry": {"_count": 1, "had": {"_count": 1}}, "3": {"_count": 1, "1": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "RATHER": {"_count": 1, "THAN": {"_count": 1}}, "31": {"_count": 1, "OCTOBER": {"_count": 1}}}, "crop": {"_count": 2, "up": {"_count": 2, "": {"_count": 1}, "under": {"_count": 1}}}, "eardrums": {"_count": 7, "throb": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "came": {"_count": 1}}, "were": {"_count": 1, "being": {"_count": 1}}, "that": {"_count": 1, "seems": {"_count": 1}}}, "throb": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "and": {"_count": 3, "a": {"_count": 1}, "which": {"_count": 1}, "pulse": {"_count": 1}}}, "ABSOLUTELY": {"_count": 1, "DISGUSTED": {"_count": 1, "YOUR": {"_count": 1}}}, "DISGUSTED": {"_count": 1, "YOUR": {"_count": 1, "FATHERS": {"_count": 1}}}, "FATHERS": {"_count": 2, "FACING": {"_count": 1, "AN": {"_count": 1}}, "Hermione": {"_count": 1, "came": {"_count": 1}}}, "FACING": {"_count": 1, "AN": {"_count": 1, "INQUIRY": {"_count": 1}}}, "AN": {"_count": 6, "INQUIRY": {"_count": 1, "AT": {"_count": 1}}, "YOU": {"_count": 1, "TWO": {"_count": 1}}, "OWL": {"_count": 1, "BUT": {"_count": 1}}, "THAT": {"_count": 1, "Oh": {"_count": 1}}, "OFFICE": {"_count": 1, "OFF": {"_count": 1}}, "EXCESS": {"_count": 1, "OF": {"_count": 1}}}, "INQUIRY": {"_count": 2, "AT": {"_count": 2, "WORK": {"_count": 1}, "THE": {"_count": 1}}}, "WORK": {"_count": 3, "ITS": {"_count": 1, "ENTIRELY": {"_count": 1}}, "IS": {"_count": 1, "UNDERTAKEN": {"_count": 1}}, "IN": {"_count": 1, "MUGGLE": {"_count": 1}}}, "ENTIRELY": {"_count": 1, "YOUR": {"_count": 1, "FAULT": {"_count": 1}}}, "FAULT": {"_count": 1, "AND": {"_count": 1, "IF": {"_count": 1}}}, "PUT": {"_count": 2, "ANOTHER": {"_count": 1, "TOE": {"_count": 1}}, "HER": {"_count": 1, "RIGHT": {"_count": 1}}}, "ANOTHER": {"_count": 2, "TOE": {"_count": 1, "OUT": {"_count": 1}}, "ATTACK": {"_count": 1, "": {"_count": 1}}}, "TOE": {"_count": 1, "OUT": {"_count": 1, "OF": {"_count": 1}}}, "LINE": {"_count": 1, "WELL": {"_count": 1, "BRING": {"_count": 1}}}, "WELL": {"_count": 3, "BRING": {"_count": 1, "YOU": {"_count": 1}}, "IS": {"_count": 1, "NOT": {"_count": 1}}, "I": {"_count": 1, "EXPECT": {"_count": 1}}}, "STRAIGHT": {"_count": 1, "BACK": {"_count": 1, "HOME": {"_count": 1}}}, "BACK": {"_count": 9, "HOME": {"_count": 1, "": {"_count": 1}}, "IN": {"_count": 1, "HERE": {"_count": 1}}, "AND": {"_count": 1, "PUT": {"_count": 1}}, "TO": {"_count": 1, "THE": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, "?": {"_count": 1}}, "DOWN": {"_count": 1, "": {"_count": 1}}, "YOU": {"_count": 1, "THIEVING": {"_count": 1}}}, "HOME": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "AND": {"_count": 1, "FAMILY": {"_count": 1}}}, "tidal": {"_count": 3, "wave": {"_count": 3, "had": {"_count": 1}, "of": {"_count": 2}}}, "guilt": {"_count": 21, "": {"_count": 5, ".": {"_count": 5}}, "Harry": {"_count": 1, "spotted": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "or": {"_count": 1, "fear": {"_count": 1}}, "of": {"_count": 1, "living": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "realized": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "filling": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "grief": {"_count": 1}, "my": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "gripped": {"_count": 1, "Harry": {"_count": 1}}}, "inquiry": {"_count": 9, "at": {"_count": 1, "work": {"_count": 1}}, "If": {"_count": 1, "we": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "why": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "everything": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "actually": {"_count": 1, "": {"_count": 1}}}, "neared": {"_count": 5, "the": {"_count": 4, "greenhouses": {"_count": 1}, "top": {"_count": 1}, "Three": {"_count": 1}, "bottom": {"_count": 1}}, "Hagrids": {"_count": 1, "cabin": {"_count": 1}}}, "twinge": {"_count": 10, "of": {"_count": 7, "guilt": {"_count": 2}, "jealousy": {"_count": 1}, "unease": {"_count": 1}, "regret": {"_count": 2}, "annoyance": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "slings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "flyaway": {"_count": 4, "hair": {"_count": 2, "there": {"_count": 1}, "and": {"_count": 1}}, "gray": {"_count": 2, "hair": {"_count": 2}}}, "immaculate": {"_count": 1, "in": {"_count": 1, "sweeping": {"_count": 1}}}, "positioned": {"_count": 9, "turquoise": {"_count": 1, "hat": {"_count": 1}}, "to": {"_count": 1, "act": {"_count": 1}}, "themselves": {"_count": 1, "and": {"_count": 1}}, "exactly": {"_count": 1, "beneath": {"_count": 1}}, "very": {"_count": 1, "awkwardly": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "herself": {"_count": 1, "squarely": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 1, "either": {"_count": 1}}}, "trimming": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "assembled": {"_count": 12, "students": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}, "owls": {"_count": 1, "still": {"_count": 1}}, "there": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "folded": {"_count": 1, "and": {"_count": 1}}}, "doctor": {"_count": 1, "a": {"_count": 1, "Whomping": {"_count": 1}}}, "exotic": {"_count": 1, "plants": {"_count": 1, "on": {"_count": 1}}}, "travels": {"_count": 3, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "that": {"_count": 1, "yet": {"_count": 1}}}, "Greenhouse": {"_count": 1, "three": {"_count": 1, "today": {"_count": 1}}}, "chaps": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}}, "housed": {"_count": 3, "far": {"_count": 1, "more": {"_count": 1}}, "a": {"_count": 2, "magnificent": {"_count": 1}, "large": {"_count": 1}}}, "whiff": {"_count": 6, "of": {"_count": 6, "damp": {"_count": 1}, "a": {"_count": 1}, "something": {"_count": 1}, "stale": {"_count": 1}, "cooking": {"_count": 1}, "sherry": {"_count": 1}}}, "fertilizer": {"_count": 3, "mingling": {"_count": 1, "with": {"_count": 1}}, "from": {"_count": 1, "Norway": {"_count": 1}}, "the": {"_count": 1, "Gryffindors": {"_count": 1}}}, "mingling": {"_count": 3, "with": {"_count": 3, "the": {"_count": 3}}}, "perfume": {"_count": 6, "of": {"_count": 2, "some": {"_count": 1}, "Professor": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "spreading": {"_count": 1, "from": {"_count": 1}}, "is": {"_count": 1, "really": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}}, "umbrellasized": {"_count": 1, "flowers": {"_count": 1, "dangling": {"_count": 1}}}, "flowers": {"_count": 23, "dangling": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "large": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 3, "closed": {"_count": 1}, "handing": {"_count": 1}, "bewitched": {"_count": 1}}, "that": {"_count": 1, "looked": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}, "each": {"_count": 1, "residing": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "across": {"_count": 1, "its": {"_count": 1}}, "of": {"_count": 1, "de": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "covered": {"_count": 1, "every": {"_count": 1}}, "but": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "insects": {"_count": 1, "and": {"_count": 1}}, "flight": {"_count": 1, "to": {"_count": 1}}}, "Completely": {"_count": 9, "nonplussed": {"_count": 1, "Harry": {"_count": 1}}, "Pointless": {"_count": 1, "discuss": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "forgetting": {"_count": 1, "about": {"_count": 1}}, "lousy": {"_count": 1, "said": {"_count": 1}}, "cured": {"_count": 1, "": {"_count": 1}}, "bewildered": {"_count": 1, "wondering": {"_count": 1}}, "gaga": {"_count": 1, "seemed": {"_count": 1}}, "sure": {"_count": 1, "that": {"_count": 1}}}, "nonplussed": {"_count": 7, "Harry": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 1, "Dumbledore": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "Stood": {"_count": 1, "out": {"_count": 1, "a": {"_count": 1}}}, "Gave": {"_count": 5, "you": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "Petunia": {"_count": 1, "and": {"_count": 1}}, "em": {"_count": 1, "the": {"_count": 1}}}, "bug": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Natural": {"_count": 3, "to": {"_count": 1, "want": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "mists": {"_count": 1, "joined": {"_count": 1}}}, "\u2018Its": {"_count": 3, "all": {"_count": 1, "right": {"_count": 1}}, "your": {"_count": 1, "own": {"_count": 1}}, "over": {"_count": 1, "said": {"_count": 1}}}, "internationally": {"_count": 1, "famous": {"_count": 1, "wizard": {"_count": 1}}}, "Witch": {"_count": 15, "Weeklys": {"_count": 3, "MostCharmingSmile": {"_count": 2}, "Most": {"_count": 1}}, "Burning": {"_count": 1, "in": {"_count": 1}}, "Weekly": {"_count": 9, "": {"_count": 2}, "onto": {"_count": 1}, "about": {"_count": 1}, "article": {"_count": 1}, "knew": {"_count": 1}, "by": {"_count": 1}, "did": {"_count": 1}, "others": {"_count": 1}}, "Still": {"_count": 1, "Missing": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "Weeklys": {"_count": 3, "MostCharmingSmile": {"_count": 2, "Award": {"_count": 2}}, "Most": {"_count": 1, "Charming": {"_count": 1}}}, "MostCharmingSmile": {"_count": 2, "Award": {"_count": 2, "five": {"_count": 1}, "": {"_count": 1}}}, "Award": {"_count": 5, "five": {"_count": 1, "times": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "for": {"_count": 2, "Services": {"_count": 1}, "Special": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hearty": {"_count": 12, "wink": {"_count": 1, "and": {"_count": 1}}, "guffaw": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "laugh": {"_count": 3, "": {"_count": 3}}, "sniggers": {"_count": 1, "": {"_count": 1}}, "tug": {"_count": 1, "there": {"_count": 1}}, "voice": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "sniff": {"_count": 1, "": {"_count": 1}}, "swig": {"_count": 1, "of": {"_count": 1}}}, "wink": {"_count": 10, "and": {"_count": 2, "strode": {"_count": 1}, "added": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "at": {"_count": 2, "Crabbe": {"_count": 1}, "Harry": {"_count": 1}}, "walked": {"_count": 1, "sideways": {"_count": 1}}}, "trestle": {"_count": 6, "bench": {"_count": 1, "in": {"_count": 1}}, "table": {"_count": 5, "and": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}, "where": {"_count": 1}}}, "repotting": {"_count": 3, "Mandrakes": {"_count": 1, "today": {"_count": 1}}, "again": {"_count": 1, "Harry": {"_count": 1}}, "Bouncing": {"_count": 1, "Bulbs": {"_count": 1}}}, "Mandrakes": {"_count": 13, "today": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "are": {"_count": 3, "only": {"_count": 1}, "ready": {"_count": 1}, "nearly": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "didnt": {"_count": 1, "like": {"_count": 1}}, "a": {"_count": 1, "tricky": {"_count": 1}}, "to": {"_count": 1, "grow": {"_count": 1}}, "were": {"_count": 1, "becoming": {"_count": 1}}, "threw": {"_count": 1, "a": {"_count": 1}}}, "properties": {"_count": 9, "of": {"_count": 3, "the": {"_count": 1}, "moonstone": {"_count": 2}}, "Professor": {"_count": 1, "GrubblyPlank": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "generally": {"_count": 1, "went": {"_count": 1}}, "only": {"_count": 1, "goblinmade": {"_count": 1}}, "enhance": {"_count": 1, "the": {"_count": 1}}}, "Mandrake": {"_count": 9, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "or": {"_count": 1, "Mandragora": {"_count": 1}}, "forms": {"_count": 1, "an": {"_count": 1}}, "is": {"_count": 1, "fatal": {"_count": 1}}, "into": {"_count": 1, "it": {"_count": 1}}, "Restorative": {"_count": 1, "Draught": {"_count": 1}}, "Draught": {"_count": 1, "will": {"_count": 1}}, "juice": {"_count": 1, "I": {"_count": 1}}}, "nobodys": {"_count": 9, "surprise": {"_count": 2, "Hermiones": {"_count": 1}, "Professor": {"_count": 1}}, "noticed": {"_count": 1, "it": {"_count": 1}}, "advice": {"_count": 1, "but": {"_count": 1}}, "got": {"_count": 1, "any": {"_count": 1}}, "having": {"_count": 1, "any": {"_count": 1}}, "ever": {"_count": 2, "rebuilt": {"_count": 1}, "found": {"_count": 1}}, "proved": {"_count": 1, "it": {"_count": 1}}}, "Mandragora": {"_count": 1, "is": {"_count": 1, "a": {"_count": 1}}}, "restorative": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "textbook": {"_count": 9, "": {"_count": 4, ".": {"_count": 4}}, "to": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "Snape": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "someones": {"_count": 1, "scribbled": {"_count": 1}}, "A": {"_count": 1, "History": {"_count": 1}}}, "original": {"_count": 19, "state": {"_count": 1, "": {"_count": 1}}, "spotless": {"_count": 1, "state": {"_count": 1}}, "silverywhite": {"_count": 1, "state": {"_count": 1}}, "suggestion": {"_count": 1, "": {"_count": 1}}, "Order": {"_count": 1, "of": {"_count": 1}}, "position": {"_count": 1, "": {"_count": 1}}, "places": {"_count": 1, "ornaments": {"_count": 1}}, "Gryffindor": {"_count": 1, "Quidditch": {"_count": 1}}, "positions": {"_count": 1, "": {"_count": 1}}, "versions": {"_count": 1, "": {"_count": 1}}, "searcher": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "forged": {"_count": 1}}, "letter": {"_count": 2, "may": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "owners": {"_count": 1, "of": {"_count": 1}}, "purchaser": {"_count": 1, "died": {"_count": 1}}, "impossible": {"_count": 1, "to": {"_count": 1}}, "plan": {"_count": 1, "": {"_count": 1}}}, "forms": {"_count": 11, "an": {"_count": 1, "essential": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "and": {"_count": 1, "stuff": {"_count": 1}}, "of": {"_count": 3, "Harry": {"_count": 1}, "acne": {"_count": 1}, "cruelty": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "appeared": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "passed": {"_count": 1}}}, "essential": {"_count": 16, "part": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 4, "he": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}}, "task": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 1, "as": {"_count": 1}}, "ingredients": {"_count": 1, "for": {"_count": 1}}, "step": {"_count": 1, "is": {"_count": 1}}, "to": {"_count": 4, "Legilimency": {"_count": 1}, "stop": {"_count": 1}, "their": {"_count": 1}, "teach": {"_count": 1}}, "study": {"_count": 1, "for": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "antidotes": {"_count": 13, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 2, "butterbeer": {"_count": 1}, "those": {"_count": 1}}, "are": {"_count": 1, "essential": {"_count": 1}}, "Just": {"_count": 1, "shove": {"_count": 1}}}, "fatal": {"_count": 7, "to": {"_count": 3, "anyone": {"_count": 1}, "it": {"_count": 1}, "if": {"_count": 1}}, "kiss": {"_count": 1, "to": {"_count": 1}}, "blow": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "werent": {"_count": 1}}, "name": {"_count": 1, "": {"_count": 1}}}, "hears": {"_count": 9, "it": {"_count": 1, "she": {"_count": 1}}, "whats": {"_count": 1, "happened": {"_count": 1}}, "things": {"_count": 2, "sir": {"_count": 1}, "we": {"_count": 1}}, "about": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}, "the": {"_count": 1, "noise": {"_count": 1}}}, "trays": {"_count": 5, "as": {"_count": 1, "she": {"_count": 1}}, "and": {"_count": 1, "pushing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 2, "pumpkin": {"_count": 1}, "food": {"_count": 1}}}, "tufty": {"_count": 2, "little": {"_count": 1, "plants": {"_count": 1}}, "plants": {"_count": 1, "firmly": {"_count": 1}}}, "unremarkable": {"_count": 2, "to": {"_count": 1, "Harry": {"_count": 1}}, "had": {"_count": 1, "it": {"_count": 1}}}, "seize": {"_count": 29, "a": {"_count": 3, "pair": {"_count": 1}, "broken": {"_count": 1}, "book": {"_count": 1}}, "him": {"_count": 2, "around": {"_count": 1}, "but": {"_count": 1}}, "the": {"_count": 8, "hippogriff": {"_count": 1}, "letter": {"_count": 1}, "paper": {"_count": 1}, "doorknob": {"_count": 1}, "Marauders": {"_count": 1}, "Horcrux": {"_count": 1}, "strap": {"_count": 1}, "Hallows": {"_count": 1}}, "his": {"_count": 3, "long": {"_count": 1}, "girlfriend": {"_count": 1}, "chance": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "when": {"_count": 1}}, "control": {"_count": 2, "of": {"_count": 1}, "FOR": {"_count": 1}}, "power": {"_count": 2, "": {"_count": 2}}, "it": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "himself": {"_count": 1, "by": {"_count": 1}}, "her": {"_count": 1, "by": {"_count": 1}}, "you": {"_count": 1, "the": {"_count": 1}}, "Freds": {"_count": 1, "body": {"_count": 1}}, "people": {"_count": 1, "through": {"_count": 1}}}, "remove": {"_count": 29, "them": {"_count": 1, "I": {"_count": 1}}, "his": {"_count": 5, "hair": {"_count": 1}, "hand": {"_count": 1}, "wand": {"_count": 1}, "Horcrux": {"_count": 1}, "many": {"_count": 1}}, "the": {"_count": 7, "smudges": {"_count": 1}, "frog": {"_count": 1}, "letter": {"_count": 2}, "swamp": {"_count": 1}, "wand": {"_count": 1}, "Permanent": {"_count": 1}}, "themselves": {"_count": 1, "from": {"_count": 1}}, "it": {"_count": 4, "": {"_count": 2}, "from": {"_count": 1}, "and": {"_count": 1}}, "Azkaban": {"_count": 1, "from": {"_count": 1}}, "him": {"_count": 2, "from": {"_count": 2}}, "anything": {"_count": 1, "he": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "yourself": {"_count": 1, "from": {"_count": 1}}, "Dolores": {"_count": 1, "Umbridge": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "your": {"_count": 1, "cloak": {"_count": 1}}, "Krum": {"_count": 1, "from": {"_count": 1}}, "all": {"_count": 1, "sources": {"_count": 1}}}, "mottled": {"_count": 2, "skin": {"_count": 1, "and": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "lungs": {"_count": 21, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 4, "before": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "they": {"_count": 1}}, "were": {"_count": 1, "empty": {"_count": 1}}, "drowning": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 2, "hope": {"_count": 1}, "he": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "at": {"_count": 1, "work": {"_count": 1}}, "his": {"_count": 1, "breathing": {"_count": 1}}, "driving": {"_count": 1, "all": {"_count": 1}}, "expanded": {"_count": 1, "gratefully": {"_count": 1}}, "that": {"_count": 1, "felt": {"_count": 1}}, "to": {"_count": 1, "call": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "pot": {"_count": 27, "from": {"_count": 1, "under": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "on": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "of": {"_count": 3, "tea": {"_count": 1}, "Floo": {"_count": 1}, "sauce": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "and": {"_count": 4, "not": {"_count": 1}, "a": {"_count": 1}, "muttered": {"_count": 1}, "returned": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "again": {"_count": 2, "it": {"_count": 1}, "drew": {"_count": 1}}, "dropped": {"_count": 1, "back": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "flushed": {"_count": 1, "blotchily": {"_count": 1}}, "to": {"_count": 1, "shoot": {"_count": 1}}, "mended": {"_count": 1, "itself": {"_count": 1}}, "protruding": {"_count": 1, "from": {"_count": 1}}}, "compost": {"_count": 5, "until": {"_count": 1, "only": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "heap": {"_count": 2, "and": {"_count": 1}, "crying": {"_count": 1}}}, "tufted": {"_count": 2, "leaves": {"_count": 1, "were": {"_count": 1}}, "tail": {"_count": 1, "he": {"_count": 1}}}, "dusted": {"_count": 1, "off": {"_count": 1, "her": {"_count": 1}}}, "thumbsup": {"_count": 6, "and": {"_count": 3, "removed": {"_count": 1}, "mouthed": {"_count": 2}}, "to": {"_count": 1, "show": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "before": {"_count": 1, "heading": {"_count": 1}}}, "seedlings": {"_count": 2, "their": {"_count": 1, "cries": {"_count": 1}}, "causing": {"_count": 1, "them": {"_count": 1}}}, "cries": {"_count": 22, "wont": {"_count": 1, "kill": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "strangely": {"_count": 1, "muffled": {"_count": 1}}, "of": {"_count": 11, "Impedimental": {"_count": 1}, "shock": {"_count": 3}, "pain": {"_count": 1}, "welcome": {"_count": 1}, "bitten": {"_count": 1}, "To": {"_count": 1}, "delight": {"_count": 1}, "greeting": {"_count": 1}, "surprise": {"_count": 1}}, "while": {"_count": 1, "someones": {"_count": 1}}, "Kingsley": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "smashes": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "gasps": {"_count": 1, "even": {"_count": 1}}, "acted": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "begonia": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "securely": {"_count": 8, "in": {"_count": 2, "place": {"_count": 1}, "his": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "iron": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "ensconced": {"_count": 1, "at": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}}, "pots": {"_count": 17, "here": {"_count": 1, "compost": {"_count": 1}}, "with": {"_count": 1, "dragon": {"_count": 1}}, "well": {"_count": 1, "know": {"_count": 1}}, "and": {"_count": 5, "pans": {"_count": 5}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "crashing": {"_count": 1, "to": {"_count": 1}}, "hung": {"_count": 1, "and": {"_count": 1}}, "though": {"_count": 1, "there": {"_count": 1}}}, "sacks": {"_count": 8, "over": {"_count": 1, "there": {"_count": 1}}, "of": {"_count": 1, "Galleons": {"_count": 1}}, "dragging": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "whose": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}}, "Venomous": {"_count": 4, "Tentacula": {"_count": 4, "its": {"_count": 1}, "seeds": {"_count": 1}, "seized": {"_count": 1}, "which": {"_count": 1}}}, "Tentacula": {"_count": 5, "its": {"_count": 1, "teething": {"_count": 1}}, "seeds": {"_count": 1, "said": {"_count": 1}}, "seized": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "which": {"_count": 1, "looped": {"_count": 1}}}, "teething": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "slap": {"_count": 4, "to": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "referee": {"_count": 1}}, "into": {"_count": 1, "Peeves": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "spiky": {"_count": 6, "dark": {"_count": 1, "red": {"_count": 1}}, "shapes": {"_count": 1, "were": {"_count": 1}}, "hair": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "black": {"_count": 1, "D": {"_count": 1}}, "acidgreen": {"_count": 1, "writing": {"_count": 1}}}, "feelers": {"_count": 3, "that": {"_count": 1, "had": {"_count": 1}}, "Dont": {"_count": 1, "ever": {"_count": 1}}, "wrapping": {"_count": 1, "themselves": {"_count": 1}}}, "inching": {"_count": 1, "sneakily": {"_count": 1, "over": {"_count": 1}}}, "sneakily": {"_count": 2, "over": {"_count": 1, "her": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}}, "curlyhaired": {"_count": 6, "Hufflepuff": {"_count": 1, "boy": {"_count": 1}}, "thirdyear": {"_count": 1, "Hufflepuff": {"_count": 1}}, "witch": {"_count": 1, "who": {"_count": 1}}, "friend": {"_count": 2, "she": {"_count": 1}, "Marietta": {"_count": 1}}, "friends": {"_count": 1, "sleeve": {"_count": 1}}}, "Wasnt": {"_count": 6, "that": {"_count": 1, "your": {"_count": 1}}, "anybody": {"_count": 1, "going": {"_count": 1}}, "easy": {"_count": 1, "to": {"_count": 1}}, "Voldemort": {"_count": 1, "brought": {"_count": 1}}, "he": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "absolutely": {"_count": 1}}}, "Awfully": {"_count": 2, "brave": {"_count": 1, "chap": {"_count": 1}}, "sorry": {"_count": 1, "boys": {"_count": 1}}}, "chap": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "was": {"_count": 1, "asking": {"_count": 1}}, "and": {"_count": 1, "very": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}}, "booth": {"_count": 4, "by": {"_count": 1, "a": {"_count": 1}}, "first": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "propped": {"_count": 1}}}, "zap": {"_count": 1, "just": {"_count": 1, "fantastic": {"_count": 1}}}, "Eton": {"_count": 2, "you": {"_count": 1, "know": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fully": {"_count": 55, "trained": {"_count": 1, "wizard": {"_count": 1}}, "dressed": {"_count": 9, "and": {"_count": 3}, "into": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}, "except": {"_count": 1}, "sitting": {"_count": 1}, "but": {"_count": 1}}, "mature": {"_count": 1, "she": {"_count": 1}}, "qualified": {"_count": 4, "wizard": {"_count": 2}, "Ministry": {"_count": 1}, "yet": {"_count": 1}}, "grown": {"_count": 6, "": {"_count": 1}, "werewolf": {"_count": 1}, "enormous": {"_count": 1}, "doxy": {"_count": 1}, "adultsized": {"_count": 1}, "wizards": {"_count": 1}}, "fledged": {"_count": 2, "monster": {"_count": 1}, "Patronus": {"_count": 1}}, "open": {"_count": 2, "now": {"_count": 1}, "and": {"_count": 1}}, "aware": {"_count": 4, "that": {"_count": 4}}, "formed": {"_count": 1, "in": {"_count": 1}}, "functional": {"_count": 1, "no": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}, "and": {"_count": 3, "totally": {"_count": 1}, "freely": {"_count": 1}, "and": {"_count": 1}}, "understood": {"_count": 1, "for": {"_count": 1}}, "appreciated": {"_count": 2, "that": {"_count": 1}, "how": {"_count": 1}}, "expected": {"_count": 2, "to": {"_count": 2}}, "about": {"_count": 1, "the": {"_count": 1}}, "clothed": {"_count": 3, "on": {"_count": 1}, "hunched": {"_count": 1}, "and": {"_count": 1}}, "intended": {"_count": 1, "to": {"_count": 1}}, "mended": {"_count": 1, "then": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "justified": {"_count": 1, "in": {"_count": 1}}, "understand": {"_count": 1, "it": {"_count": 1}}, "constructed": {"_count": 1, "onto": {"_count": 1}}, "realized": {"_count": 1, "how": {"_count": 1}}, "connected": {"_count": 1, "to": {"_count": 1}}, "conscious": {"_count": 1, "of": {"_count": 1}}, "raised": {"_count": 1, "Hermione": {"_count": 1}}}, "squirmed": {"_count": 6, "kicked": {"_count": 1, "flailed": {"_count": 1}}, "uncomfortably": {"_count": 1, "as": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "slightly": {"_count": 1, "all": {"_count": 1}}}, "gnashed": {"_count": 1, "their": {"_count": 1, "teeth": {"_count": 1}}}, "squash": {"_count": 5, "a": {"_count": 1, "particularly": {"_count": 1}}, "the": {"_count": 1, "magic": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "him": {"_count": 1, "hes": {"_count": 1}}, "her": {"_count": 1, "against": {"_count": 1}}}, "traipsed": {"_count": 6, "back": {"_count": 3, "to": {"_count": 2}, "toward": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "avoiding": {"_count": 33, "his": {"_count": 3, "wand": {"_count": 1}, "wooden": {"_count": 1}, "eyes": {"_count": 1}}, "being": {"_count": 1, "squashed": {"_count": 1}}, "another": {"_count": 1, "fierce": {"_count": 1}}, "their": {"_count": 2, "eyes": {"_count": 2}}, "Harrys": {"_count": 2, "eyes": {"_count": 2}}, "a": {"_count": 3, "Bludger": {"_count": 1}, "Ravenclaw": {"_count": 1}, "blast": {"_count": 1}}, "the": {"_count": 3, "common": {"_count": 1}, "nearest": {"_count": 1}, "snakes": {"_count": 1}}, "it": {"_count": 1, "by": {"_count": 1}}, "Moodys": {"_count": 1, "eye": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "others": {"_count": 1}}, "catching": {"_count": 1, "anyones": {"_count": 1}}, "us": {"_count": 2, "for": {"_count": 1}, "said": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "this": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "stepping": {"_count": 1, "in": {"_count": 1}}, "Seamuss": {"_count": 1, "head": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}, "my": {"_count": 1, "last": {"_count": 1}}, "one": {"_count": 1, "anothers": {"_count": 1}}, "everybodys": {"_count": 1, "eyes": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}}, "Spellotape": {"_count": 5, "but": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "bound": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "enchanted": {"_count": 1, "paper": {"_count": 1}}}, "crackling": {"_count": 17, "and": {"_count": 1, "sparking": {"_count": 1}}, "merrily": {"_count": 3, "in": {"_count": 2}, "as": {"_count": 1}}, "from": {"_count": 1, "under": {"_count": 1}}, "under": {"_count": 1, "an": {"_count": 1}}, "fire": {"_count": 2, "and": {"_count": 1}, "warmed": {"_count": 1}}, "noise": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 5, "the": {"_count": 5}}, "flames": {"_count": 1, "beneath": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "sparking": {"_count": 1, "at": {"_count": 1, "odd": {"_count": 1}}}, "transfigure": {"_count": 1, "his": {"_count": 1, "beetle": {"_count": 1}}}, "rotten": {"_count": 8, "eggs": {"_count": 1, "": {"_count": 1}}, "fish": {"_count": 1, "were": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "unjust": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "food": {"_count": 1, "inside": {"_count": 1}}, "flobberworms": {"_count": 1, "from": {"_count": 1}}}, "Unable": {"_count": 5, "to": {"_count": 5, "see": {"_count": 1}, "articulate": {"_count": 1}, "stand": {"_count": 1}, "contain": {"_count": 1}, "rejoin": {"_count": 1}}}, "sponge": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "cake": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}}, "filed": {"_count": 18, "out": {"_count": 7, "of": {"_count": 3}, "looking": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}, "even": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 2, "up": {"_count": 1}, "outside": {"_count": 1}}, "into": {"_count": 4, "their": {"_count": 1}, "the": {"_count": 2}, "seats": {"_count": 1}}}, "Write": {"_count": 4, "home": {"_count": 1, "for": {"_count": 1}}, "to": {"_count": 2, "Professor": {"_count": 1}, "Sirius": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "volley": {"_count": 2, "of": {"_count": 2, "bangs": {"_count": 2}}}, "improved": {"_count": 13, "by": {"_count": 2, "Hermiones": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "my": {"_count": 1}}, "since": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "chances": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "beyond": {"_count": 1, "all": {"_count": 1}}, "Healer": {"_count": 1, "Strout": {"_count": 1}}, "Ron": {"_count": 1, "came": {"_count": 1}}, "offer": {"_count": 1, "for": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "dramatically": {"_count": 1, "ever": {"_count": 1}}}, "buttons": {"_count": 9, "she": {"_count": 1, "had": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "on": {"_count": 5, "his": {"_count": 4}, "the": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "knobs": {"_count": 1}}}, "T": {"_count": 45, "ransfiguration": {"_count": 1, "": {"_count": 1}}, "": {"_count": 35, ".": {"_count": 33}, "?": {"_count": 2}}, "YOU": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "pinned": {"_count": 1}}, "George": {"_count": 1, "reminded": {"_count": 1}}, "if": {"_count": 1, "ever": {"_count": 1}}, "SEEN": {"_count": 1, "Sirius": {"_count": 1}}, "Harry": {"_count": 1, "James": {"_count": 1}}, "level": {"_count": 1, "": {"_count": 1}}, "students": {"_count": 1, "with": {"_count": 1}}, "shirt": {"_count": 1, "like": {"_count": 1}}}, "ransfiguration": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "outlined": {"_count": 3, "all": {"_count": 1, "Lockharts": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "overcast": {"_count": 3, "courtyard": {"_count": 1, "": {"_count": 1}}, "grounds": {"_count": 1, "": {"_count": 1}}, "murky": {"_count": 1, "day": {"_count": 1}}}, "aware": {"_count": 79, "that": {"_count": 31, "he": {"_count": 8}, "the": {"_count": 5}, "in": {"_count": 1}, "every": {"_count": 1}, "even": {"_count": 1}, "Fawkes": {"_count": 1}, "his": {"_count": 2}, "you": {"_count": 3}, "something": {"_count": 1}, "it": {"_count": 2}, "Mundungus": {"_count": 1}, "Ron": {"_count": 1}, "someone": {"_count": 1}, "they": {"_count": 1}, "this": {"_count": 1}, "Bellatrixs": {"_count": 1}}, "of": {"_count": 32, "everyone": {"_count": 2}, "deciding": {"_count": 1}, "an": {"_count": 1}, "something": {"_count": 1}, "his": {"_count": 5}, "Mr": {"_count": 1}, "everybody": {"_count": 1}, "the": {"_count": 7}, "how": {"_count": 1}, "that": {"_count": 1}, "Uncle": {"_count": 1}, "what": {"_count": 2}, "releasing": {"_count": 1}, "said": {"_count": 1}, "it": {"_count": 2}, "would": {"_count": 1}, "emergency": {"_count": 1}, "Percy": {"_count": 1}, "their": {"_count": 1}}, "after": {"_count": 1, "their": {"_count": 1}}, "himself": {"_count": 1, "that": {"_count": 1}}, "how": {"_count": 1, "useful": {"_count": 1}}, "however": {"_count": 1, "Dumbledore": {"_count": 1}}, "given": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Umbridge": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 2, "instance": {"_count": 2}}, "Harry": {"_count": 1, "comes": {"_count": 1}}, "they": {"_count": 1, "do": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "suddenly": {"_count": 1, "that": {"_count": 1}}, "then": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 1, "Griphook": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}}, "Colin": {"_count": 70, "Creevey": {"_count": 18, "he": {"_count": 2}, "eagerly": {"_count": 1}, "who": {"_count": 1}, "came": {"_count": 1}, "went": {"_count": 1}, "began": {"_count": 1}, "": {"_count": 3}, "had": {"_count": 2}, "in": {"_count": 1}, "a": {"_count": 2}, "says": {"_count": 1}, "though": {"_count": 1}, "and": {"_count": 1}}, "drew": {"_count": 1, "a": {"_count": 1}}, "flanked": {"_count": 1, "as": {"_count": 1}}, "whose": {"_count": 2, "entire": {"_count": 1}, "smile": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 6}, "!": {"_count": 1}, "?": {"_count": 1}}, "fumbled": {"_count": 1, "for": {"_count": 1}}, "a": {"_count": 1, "bigger": {"_count": 1}}, "back": {"_count": 1, "however": {"_count": 1}}, "was": {"_count": 3, "brandishing": {"_count": 1}, "sitting": {"_count": 1}, "so": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "in": {"_count": 1}}, "scrambled": {"_count": 1, "through": {"_count": 1}}, "ignored": {"_count": 1, "him": {"_count": 1}}, "trotting": {"_count": 1, "alongside": {"_count": 1}}, "breathlessly": {"_count": 1, "": {"_count": 1}}, "asked": {"_count": 1, "tripping": {"_count": 1}}, "in": {"_count": 1, "awe": {"_count": 1}}, "didnt": {"_count": 1, "stop": {"_count": 1}}, "called": {"_count": 1, "after": {"_count": 1}}, "had": {"_count": 1, "run": {"_count": 1}}, "fascinated": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 3}}, "he": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 4, "Dobby": {"_count": 1}, "Dennis": {"_count": 3}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "\u2018Potter": {"_count": 1, "can": {"_count": 1}}, "saw": {"_count": 1, "it": {"_count": 1}}, "just": {"_count": 2, "got": {"_count": 1}, "as": {"_count": 1}}, "looked": {"_count": 1, "eagerly": {"_count": 1}}, "practically": {"_count": 1, "bouncing": {"_count": 1}}, "Creeveys": {"_count": 1, "eye": {"_count": 1}}, "I": {"_count": 1, "fell": {"_count": 1}}, "went": {"_count": 1, "pink": {"_count": 1}}, "saying": {"_count": 1, "those": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}}, "Creevey": {"_count": 41, "he": {"_count": 2, "said": {"_count": 1}, "edged": {"_count": 1}}, "eagerly": {"_count": 1, "edging": {"_count": 1}}, "said": {"_count": 1, "Lockhart": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "doesnt": {"_count": 1, "meet": {"_count": 1}}, "who": {"_count": 1, "seemed": {"_count": 1}}, "came": {"_count": 1, "dashing": {"_count": 1}}, "went": {"_count": 1, "past": {"_count": 1}}, "began": {"_count": 1, "clicking": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "had": {"_count": 2, "been": {"_count": 1}, "mastered": {"_count": 1}}, "in": {"_count": 2, "Charms": {"_count": 1}, "": {"_count": 1}}, "was": {"_count": 1, "annoying": {"_count": 1}}, "s": {"_count": 1, "been": {"_count": 1}}, "a": {"_count": 2, "second": {"_count": 1}, "third": {"_count": 1}}, "Dennis": {"_count": 1, "": {"_count": 1}}, "staggered": {"_count": 1, "forward": {"_count": 1}}, "putting": {"_count": 1, "on": {"_count": 1}}, "beaming": {"_count": 1, "widely": {"_count": 1}}, "positively": {"_count": 1, "shivering": {"_count": 1}}, "actually": {"_count": 1, "stood": {"_count": 1}}, "brothers": {"_count": 7, "as": {"_count": 1}, "who": {"_count": 2}, "had": {"_count": 1}, "Colin": {"_count": 1}, "exchanged": {"_count": 1}, "were": {"_count": 1}}, "says": {"_count": 1, "that": {"_count": 1}}, "flying": {"_count": 1, "as": {"_count": 1}}, "Ernie": {"_count": 1, "Macmillan": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "underage": {"_count": 1}}, "and": {"_count": 1, "fifty": {"_count": 1}}}, "tentative": {"_count": 3, "step": {"_count": 1, "forward": {"_count": 1}}, "steps": {"_count": 1, "toward": {"_count": 1}}, "smile": {"_count": 1, "she": {"_count": 1}}}, "raked": {"_count": 5, "Harrys": {"_count": 3, "hairline": {"_count": 1}, "robes": {"_count": 1}, "forehead": {"_count": 1}}, "over": {"_count": 1, "them": {"_count": 1}}, "the": {"_count": 1, "firestorm": {"_count": 1}}}, "hairline": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "develop": {"_count": 5, "the": {"_count": 1, "film": {"_count": 1}}, "a": {"_count": 2, "drag": {"_count": 1}, "cough": {"_count": 1}}, "terrible": {"_count": 1, "poisons": {"_count": 1}}, "dangerous": {"_count": 1, "fevers": {"_count": 1}}}, "film": {"_count": 8, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 1}, "dust": {"_count": 1}}, "so": {"_count": 1, "vivid": {"_count": 1}}, "Ha": {"_count": 1, "ha": {"_count": 1}}}, "picturesll": {"_count": 1, "move": {"_count": 1, "": {"_count": 1}}}, "shuddering": {"_count": 16, "breath": {"_count": 5, "of": {"_count": 1}, "then": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "gasp": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "as": {"_count": 1}}, "yawn": {"_count": 2, "": {"_count": 2}}, "under": {"_count": 1, "a": {"_count": 1}}}, "amazing": {"_count": 21, "here": {"_count": 2, "isnt": {"_count": 1}, "in": {"_count": 1}}, "things": {"_count": 2, "hes": {"_count": 1}, "happened": {"_count": 1}}, "prediction": {"_count": 1, "": {"_count": 1}}, "solution": {"_count": 1, "out": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "bouncing": {"_count": 1, "ferret": {"_count": 1}}, "said": {"_count": 2, "Bagman": {"_count": 1}, "Harry": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "how": {"_count": 2, "many": {"_count": 1}, "he": {"_count": 1}}, "defensive": {"_count": 1, "mechanism": {"_count": 1}}, "room": {"_count": 1, "sir": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "stories": {"_count": 1, "about": {"_count": 1}}, "coming": {"_count": 1, "up": {"_count": 1}}}, "till": {"_count": 50, "I": {"_count": 5, "got": {"_count": 1}, "tell": {"_count": 2}, "was": {"_count": 1}, "can": {"_count": 1}}, "everyones": {"_count": 1, "gone": {"_count": 1}}, "you": {"_count": 4, "see": {"_count": 1}, "shrivel": {"_count": 1}, "came": {"_count": 1}, "hear": {"_count": 1}}, "everyone": {"_count": 1, "finds": {"_count": 1}}, "theyre": {"_count": 2, "over": {"_count": 1}, "full": {"_count": 1}}, "youve": {"_count": 2, "found": {"_count": 1}, "learned": {"_count": 1}}, "he": {"_count": 2, "sees": {"_count": 1}, "came": {"_count": 1}}, "we": {"_count": 2, "were": {"_count": 1}, "work": {"_count": 1}}, "next": {"_count": 1, "summer": {"_count": 1}}, "Thursday": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "fifth": {"_count": 1, "year": {"_count": 1}}, "February": {"_count": 1, "the": {"_count": 1}}, "break": {"_count": 1, "": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "morning": {"_count": 2, "cant": {"_count": 1}, "didn": {"_count": 1}}, "theyve": {"_count": 1, "written": {"_count": 1}}, "were": {"_count": 1, "inside": {"_count": 1}}, "whose": {"_count": 1, "drawer": {"_count": 1}}, "full": {"_count": 1, "moon": {"_count": 1}}, "now": {"_count": 1, "it": {"_count": 1}}, "later": {"_count": 1, "you": {"_count": 1}}, "tomorrow": {"_count": 1, "shall": {"_count": 1}}, "the": {"_count": 3, "end": {"_count": 1}, "holidays": {"_count": 1}, "trains": {"_count": 1}}, "weve": {"_count": 2, "found": {"_count": 1}, "gone": {"_count": 1}}, "dusk": {"_count": 1, "you": {"_count": 1}}, "jus": {"_count": 1, "now": {"_count": 1}}, "they": {"_count": 2, "find": {"_count": 1}, "tell": {"_count": 1}}, "it": {"_count": 1, "gets": {"_count": 1}}, "youre": {"_count": 1, "seventeen": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "YouKnowWho": {"_count": 1, "came": {"_count": 1}}, "daybreak": {"_count": 1, "leave": {"_count": 1}}, "midnight": {"_count": 1, "ter": {"_count": 1}}}, "itd": {"_count": 18, "be": {"_count": 12, "really": {"_count": 1}, "ready": {"_count": 1}, "even": {"_count": 1}, "cool": {"_count": 1}, "like": {"_count": 1}, "more": {"_count": 1}, "something": {"_count": 1}, "this": {"_count": 1}, "safe": {"_count": 1}, "one": {"_count": 1}, "obvious": {"_count": 1}, "huge": {"_count": 1}}, "just": {"_count": 1, "go": {"_count": 1}}, "probably": {"_count": 2, "blow": {"_count": 1}, "just": {"_count": 1}}, "make": {"_count": 1, "a": {"_count": 1}}, "never": {"_count": 1, "We": {"_count": 1}}, "take": {"_count": 1, "Umbridge": {"_count": 1}}}, "imploringly": {"_count": 9, "at": {"_count": 2, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "into": {"_count": 1, "Fudges": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "but": {"_count": 1, "Morfin": {"_count": 1}}, "I": {"_count": 1, "cant": {"_count": 1}}}, "Signed": {"_count": 7, "photos": {"_count": 1, "": {"_count": 1}}, "copies": {"_count": 1, "of": {"_count": 1}}, "Dolores": {"_count": 3, "Jane": {"_count": 3}}, "Cornelius": {"_count": 2, "Fudge": {"_count": 1}, "Oswald": {"_count": 1}}}, "scathing": {"_count": 6, "Draco": {"_count": 1, "Malfoys": {"_count": 1}}, "look": {"_count": 3, "": {"_count": 1}, "over": {"_count": 1}, "and": {"_count": 1}}, "noise": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "Dumbledores": {"_count": 1}}}, "thuggish": {"_count": 3, "cronies": {"_count": 2, "Crabbe": {"_count": 1}, "both": {"_count": 1}}, "gravitating": {"_count": 1, "toward": {"_count": 1}}}, "cronies": {"_count": 9, "Crabbe": {"_count": 2, "and": {"_count": 2}}, "Vincent": {"_count": 1, "Crabbe": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}, "including": {"_count": 1, "Crabbe": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "would": {"_count": 1, "behave": {"_count": 1}}, "than": {"_count": 1, "Crabbe": {"_count": 1}}}, "clenching": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "Crabbe": {"_count": 1, "s": {"_count": 1}}, "his": {"_count": 2, "fists": {"_count": 1}, "knife": {"_count": 1}}}, "Jealous": {"_count": 5, "": {"_count": 2, "?": {"_count": 2}}, "I": {"_count": 1, "think": {"_count": 1}}, "of": {"_count": 1, "what": {"_count": 1}}, "type": {"_count": 1, "": {"_count": 1}}}, "sniggering": {"_count": 13, "stupidly": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Slytherin": {"_count": 1, "girls": {"_count": 1}}, "and": {"_count": 2, "staring": {"_count": 1}, "next": {"_count": 1}}, "apparently": {"_count": 1, "very": {"_count": 1}}, "heartily": {"_count": 1, "": {"_count": 1}}, "twisting": {"_count": 1, "in": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "lay": {"_count": 1, "back": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}}, "menacing": {"_count": 12, "way": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "than": {"_count": 2, "ever": {"_count": 1}, "Harry": {"_count": 1}}, "group": {"_count": 1, "talking": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "growl": {"_count": 1, "": {"_count": 1}}, "shapes": {"_count": 1, "of": {"_count": 1}}, "fashion": {"_count": 1, "": {"_count": 1}}, "thud": {"_count": 1, "in": {"_count": 1}}}, "mommyll": {"_count": 1, "have": {"_count": 1, "to": {"_count": 1}}}, "photo": {"_count": 6, "Potter": {"_count": 1, "smirked": {"_count": 1}}, "of": {"_count": 3, "this": {"_count": 1}, "Penelope": {"_count": 1}, "in": {"_count": 1}}, "album": {"_count": 1, "Hagrid": {"_count": 1}}, "shoot": {"_count": 1, "": {"_count": 1}}}, "smirked": {"_count": 20, "Malfoy": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 4, "Lockhart": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}, "Malfoy": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "withdrew": {"_count": 1}, "nodded": {"_count": 1}}, "at": {"_count": 5, "Crabbe": {"_count": 1}, "Harry": {"_count": 1}, "him": {"_count": 1}, "each": {"_count": 1}, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "tapping": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "blonde": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "Spellotaped": {"_count": 2, "wand": {"_count": 2, "but": {"_count": 1}, "high": {"_count": 1}}}, "swirling": {"_count": 36, "behind": {"_count": 1, "him": {"_count": 1}}, "gray": {"_count": 1, "snow": {"_count": 1}}, "around": {"_count": 3, "him": {"_count": 3}}, "white": {"_count": 4, "mist": {"_count": 2}, "fog": {"_count": 1}, "substance": {"_count": 1}}, "snow": {"_count": 1, "": {"_count": 1}}, "color": {"_count": 2, "his": {"_count": 1}, "Cedric": {"_count": 1}}, "across": {"_count": 1, "it": {"_count": 1}}, "darkness": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "rippling": {"_count": 1}, "coiling": {"_count": 2}}, "more": {"_count": 1, "slowly": {"_count": 1}}, "down": {"_count": 1, "against": {"_count": 1}}, "in": {"_count": 1, "its": {"_count": 1}}, "within": {"_count": 1, "": {"_count": 1}}, "mist": {"_count": 1, "": {"_count": 1}}, "silvery": {"_count": 2, "white": {"_count": 1}, "mass": {"_count": 1}}, "sleet": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "the": {"_count": 1, "stone": {"_count": 1}}, "mass": {"_count": 1, "of": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "pearly": {"_count": 1, "memory": {"_count": 1}}, "memory": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "like": {"_count": 2, "gas": {"_count": 1}, "flames": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "figures": {"_count": 1, "of": {"_count": 1}}}, "jovially": {"_count": 4, "Shouldnt": {"_count": 1, "have": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "moving": {"_count": 1, "forward": {"_count": 1}}, "and": {"_count": 1, "told": {"_count": 1}}}, "Shouldnt": {"_count": 11, "have": {"_count": 3, "asked": {"_count": 1}, "let": {"_count": 1}, "left": {"_count": 1}}, "we": {"_count": 1, "try": {"_count": 1}}, "he": {"_count": 3, "": {"_count": 1}, "be": {"_count": 2}}, "be": {"_count": 2, "too": {"_count": 1}, "hard": {"_count": 1}}, "you": {"_count": 1, "be": {"_count": 1}}, "take": {"_count": 1, "more": {"_count": 1}}}, "Pinned": {"_count": 1, "to": {"_count": 1, "Lockharts": {"_count": 1}}}, "humiliation": {"_count": 7, "Harry": {"_count": 1, "saw": {"_count": 1}}, "looked": {"_count": 1, "malevolently": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "to": {"_count": 1, "prove": {"_count": 1}}}, "slide": {"_count": 27, "smirking": {"_count": 1, "back": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 1}, "and": {"_count": 1}}, "silently": {"_count": 1, "down": {"_count": 1}}, "into": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "through": {"_count": 2, "gaps": {"_count": 1}, "his": {"_count": 1}}, "open": {"_count": 1, "again": {"_count": 1}}, "then": {"_count": 1, "landed": {"_count": 1}}, "rule": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 1, "and": {"_count": 1}}, "away": {"_count": 1, "into": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "off": {"_count": 3, "his": {"_count": 1}, "onto": {"_count": 1}, "the": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 1, "mountains": {"_count": 1}}, "dreamlike": {"_count": 1, "across": {"_count": 1}}, "a": {"_count": 2, "little": {"_count": 2}}, "over": {"_count": 1, "him": {"_count": 1}}, "unconscious": {"_count": 1, "to": {"_count": 1}}}, "fumbled": {"_count": 19, "for": {"_count": 6, "his": {"_count": 3}, "a": {"_count": 3}}, "behind": {"_count": 1, "him": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "logs": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 2}, "the": {"_count": 2}, "a": {"_count": 1}}, "nervously": {"_count": 1, "in": {"_count": 1}}, "an": {"_count": 1, "easy": {"_count": 1}}, "the": {"_count": 1, "Snitch": {"_count": 1}}, "inside": {"_count": 1, "her": {"_count": 1}}}, "signaling": {"_count": 3, "the": {"_count": 3, "start": {"_count": 1}, "end": {"_count": 2}}}, "Vanishing": {"_count": 16, "Spell": {"_count": 4, "still": {"_count": 1}, "Hem": {"_count": 1}, "becomes": {"_count": 1}, "Snape": {"_count": 1}}, "Spells": {"_count": 5, "": {"_count": 1}, "horribly": {"_count": 1}, "for": {"_count": 1}, "had": {"_count": 1}, "at": {"_count": 1}}, "Cabinet": {"_count": 4, "on": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "Draco": {"_count": 1}}, "them": {"_count": 1, "next": {"_count": 1}}, "the": {"_count": 1, "hoops": {"_count": 1}}, "Cabinets": {"_count": 1, "and": {"_count": 1}}}, "Spell": {"_count": 38, "still": {"_count": 1, "clasped": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "dragons": {"_count": 1, "are": {"_count": 1}}, "which": {"_count": 2, "he": {"_count": 1}, "Flitwick": {"_count": 1}}, "a": {"_count": 1, "useful": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "backtracked": {"_count": 1}}, "making": {"_count": 1, "sure": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "Expelliarmus": {"_count": 1, "": {"_count": 1}}, "effect": {"_count": 1, "": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "becomes": {"_count": 1, "more": {"_count": 1}}, "Snape": {"_count": 1, "kept": {"_count": 1}}, "Damage": {"_count": 2, "fourth": {"_count": 2}}, "put": {"_count": 1, "upon": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "during": {"_count": 1, "his": {"_count": 1}}, "caught": {"_count": 1, "him": {"_count": 1}}, "after": {"_count": 2, "him": {"_count": 1}, "Stunning": {"_count": 1}}, "at": {"_count": 3, "Neville": {"_count": 1}, "the": {"_count": 1}, "Crabbe": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "bounced": {"_count": 1, "back": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "hit": {"_count": 1, "her": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "soared": {"_count": 1, "across": {"_count": 1}}, "straight": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "Ron": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "Dolohov": {"_count": 1, "attempted": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "paternally": {"_count": 1, "as": {"_count": 1, "they": {"_count": 1}}}, "photographing": {"_count": 1, "me": {"_count": 1, "too": {"_count": 1}}}, "Deaf": {"_count": 1, "to": {"_count": 1, "Harrys": {"_count": 1}}}, "stammers": {"_count": 1, "Lockhart": {"_count": 1, "swept": {"_count": 1}}}, "tad": {"_count": 2, "bigheaded": {"_count": 1, "Harry": {"_count": 1}}, "unwise": {"_count": 1, "to": {"_count": 1}}}, "bigheaded": {"_count": 1, "Harry": {"_count": 1, "to": {"_count": 1}}}, "frank": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "curiosity": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "salary": {"_count": 1}}}, "chortle": {"_count": 1, "I": {"_count": 1, "dont": {"_count": 1}}}, "yanked": {"_count": 6, "his": {"_count": 1, "robes": {"_count": 1}}, "out": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "back": {"_count": 1}}, "the": {"_count": 1, "bedcovers": {"_count": 1}}, "a": {"_count": 1, "handful": {"_count": 1}}, "Harry": {"_count": 1, "up": {"_count": 1}}}, "piling": {"_count": 6, "all": {"_count": 1, "seven": {"_count": 1}}, "socks": {"_count": 1, "on": {"_count": 1}}, "them": {"_count": 2, "up": {"_count": 1}, "onto": {"_count": 1}}, "her": {"_count": 1, "papers": {"_count": 1}}, "underwear": {"_count": 1, "into": {"_count": 1}}}, "phrase": {"_count": 9, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "like": {"_count": 1, "Fames": {"_count": 1}}, "his": {"_count": 1, "problem": {"_count": 1}}, "stirred": {"_count": 1, "something": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Shes": {"_count": 1, "nutty": {"_count": 1}}, "fell": {"_count": 1, "oddly": {"_count": 1}}, "it": {"_count": 1, "so": {"_count": 1}}, "done": {"_count": 1, "a": {"_count": 1}}}, "Honorary": {"_count": 2, "Member": {"_count": 2, "of": {"_count": 2}}}, "Member": {"_count": 2, "of": {"_count": 2, "the": {"_count": 2}}}, "League": {"_count": 6, "and": {"_count": 2, "fivetime": {"_count": 2}}, "who": {"_count": 1, "wished": {"_count": 1}}, "Headquarters": {"_count": 1, "Official": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "fivetime": {"_count": 2, "winner": {"_count": 2, "of": {"_count": 2}}}, "winner": {"_count": 6, "of": {"_count": 4, "Witch": {"_count": 2}, "the": {"_count": 2}}, "is": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Charming": {"_count": 8, "Smile": {"_count": 1, "Award": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "so": {"_count": 1, "fast": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Scrimgeour": {"_count": 1}}, "and": {"_count": 1, "The": {"_count": 1}}}, "Smile": {"_count": 1, "Award": {"_count": 1, "but": {"_count": 1}}}, "Bandon": {"_count": 2, "Banshee": {"_count": 2, "by": {"_count": 1}, "had": {"_count": 1}}}, "achievement": {"_count": 7, "to": {"_count": 1, "date": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "not": {"_count": 1, "least": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "said": {"_count": 1, "Ted": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}}, "54": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ideal": {"_count": 14, "gift": {"_count": 1, "be": {"_count": 1}}, "birthday": {"_count": 1, "gift": {"_count": 1}}, "cover": {"_count": 1, "for": {"_count": 1}}, "solution": {"_count": 1, "would": {"_count": 1}}, "excuse": {"_count": 1, "to": {"_count": 1}}, "opportunity": {"_count": 1, "for": {"_count": 1}}, "for": {"_count": 2, "headquarters": {"_count": 1}, "anyone": {"_count": 1}}, "weather": {"_count": 1, "but": {"_count": 1}}, "halfway": {"_count": 1, "stage": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "if": {"_count": 1, "Slughorn": {"_count": 1}}, "informer": {"_count": 1, "": {"_count": 1}}, "place": {"_count": 1, "to": {"_count": 1}}}, "rifled": {"_count": 3, "through": {"_count": 3, "them": {"_count": 1}, "the": {"_count": 2}}}, "lilac": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "blot": {"_count": 1, "appeared": {"_count": 1}}, "midnightblue": {"_count": 1, "had": {"_count": 1}}, "tree": {"_count": 1, "and": {"_count": 1}}, "dressing": {"_count": 1, "gown": {"_count": 1}}, "silk": {"_count": 1, "pajamas": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "described": {"_count": 1, "by": {"_count": 1}}}, "chapter": {"_count": 23, "twelve": {"_count": 1, "that": {"_count": 1}}, "on": {"_count": 4, "boggarts": {"_count": 1}, "antidotes": {"_count": 1}, "compliments": {"_count": 1}, "him": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "one": {"_count": 2, "\u2018Basics": {"_count": 1}, "last": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "said": {"_count": 1}}, "two": {"_count": 2, "\u2018Common": {"_count": 1}, "said": {"_count": 1}}, "three": {"_count": 1, "": {"_count": 1}}, "fifteen": {"_count": 1, "": {"_count": 1}}, "entitled": {"_count": 2, "The": {"_count": 2}}, "thirty": {"_count": 1, "four": {"_count": 1}}, "sixteen": {"_count": 1, "Ivor": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "22": {"_count": 1, "": {"_count": 1}}, "ended": {"_count": 1, "here": {"_count": 1}}}, "harmony": {"_count": 3, "between": {"_count": 1, "all": {"_count": 1}}, "together": {"_count": 1, "seeking": {"_count": 1}}, "For": {"_count": 1, "several": {"_count": 1}}}, "Ogdens": {"_count": 8, "Old": {"_count": 2, "Firewhisky": {"_count": 1}, "Firewhiskey": {"_count": 1}}, "memory": {"_count": 1, "lane": {"_count": 1}}, "frock": {"_count": 1, "coat": {"_count": 1}}, "face": {"_count": 1, "and": {"_count": 1}}, "voice": {"_count": 1, "making": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}}, "Old": {"_count": 9, "Firewhisky": {"_count": 1, "": {"_count": 1}}, "tight": {"_count": 1, "then": {"_count": 1}}, "Firewhiskey": {"_count": 1, "Bill": {"_count": 1}}, "Rookwood": {"_count": 1, "was": {"_count": 1}}, "age": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "bat": {"_count": 1, "": {"_count": 1}}, "Lovegood": {"_count": 1, "was": {"_count": 1}}, "Xeno": {"_count": 1, "Lovegood": {"_count": 1}}}, "Firewhisky": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "roguish": {"_count": 2, "wink": {"_count": 1, "": {"_count": 1}}, "grin": {"_count": 1, "and": {"_count": 1}}}, "disbelief": {"_count": 29, "on": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 15}}, "etched": {"_count": 1, "all": {"_count": 1}}, "he": {"_count": 2, "felt": {"_count": 2}}, "in": {"_count": 2, "the": {"_count": 1}, "horror": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Ginny": {"_count": 1}}, "Harry": {"_count": 1, "did": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 1, "dinner": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "nor": {"_count": 1, "Rons": {"_count": 1}}, "and": {"_count": 1, "anger": {"_count": 1}}}, "rapt": {"_count": 7, "attention": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "silence": {"_count": 1, "He": {"_count": 1}}, "with": {"_count": 1, "attention": {"_count": 1}}, "mistyeyed": {"_count": 1, "expression": {"_count": 1}}, "and": {"_count": 1, "exultant": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}}, "market": {"_count": 6, "my": {"_count": 1, "own": {"_count": 1}}, "flooded": {"_count": 1, "with": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "research": {"_count": 1, "find": {"_count": 1}}, "town": {"_count": 1, "": {"_count": 1}}}, "range": {"_count": 15, "of": {"_count": 12, "haircare": {"_count": 1}, "the": {"_count": 2}, "their": {"_count": 1}, "his": {"_count": 1}, "twenty": {"_count": 1}, "vision": {"_count": 1}, "instruments": {"_count": 1}, "a": {"_count": 1}, "Shield": {"_count": 1}, "love": {"_count": 1}, "Hermione": {"_count": 1}}, "with": {"_count": 1, "just": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "haircare": {"_count": 1, "potions": {"_count": 1, "good": {"_count": 1}}}, "foulest": {"_count": 3, "creatures": {"_count": 2, "known": {"_count": 1}, "that": {"_count": 1}}, "mustard": {"_count": 1, "yellow": {"_count": 1}}}, "wizardkind": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "fears": {"_count": 17, "in": {"_count": 1, "this": {"_count": 1}}, "were": {"_count": 3, "realized": {"_count": 1}, "by": {"_count": 1}, "correct": {"_count": 1}}, "had": {"_count": 1, "clearly": {"_count": 1}}, "her": {"_count": 1, "darkest": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "that": {"_count": 2, "Sirius": {"_count": 1}, "connection": {"_count": 1}}, "the": {"_count": 2, "Dark": {"_count": 1}, "dead": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "confirmed": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "disagrees": {"_count": 1}}, "retribution": {"_count": 1, "you": {"_count": 1}}}, "harm": {"_count": 22, "can": {"_count": 1, "befall": {"_count": 1}}, "someone": {"_count": 1, "who": {"_count": 1}}, "Hagrid": {"_count": 1, "on": {"_count": 1}}, "done": {"_count": 5, "Ginny": {"_count": 1}, "": {"_count": 3}, "would": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "Buckbeak": {"_count": 1}}, "He": {"_count": 1, "pushed": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 3}}, "and": {"_count": 3, "distress": {"_count": 1}, "handing": {"_count": 1}, "when": {"_count": 1}}, "than": {"_count": 1, "good": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "Bellatrix": {"_count": 1, "sprang": {"_count": 1}}, "your": {"_count": 1, "soul": {"_count": 1}}}, "befall": {"_count": 1, "you": {"_count": 1, "whilst": {"_count": 1}}}, "whilst": {"_count": 2, "I": {"_count": 1, "am": {"_count": 1}}, "Bellatrix": {"_count": 1, "said": {"_count": 1}}}, "remain": {"_count": 75, "calm": {"_count": 3, "": {"_count": 3}}, "here": {"_count": 3, "sir": {"_count": 1}, "tomorrow": {"_count": 1}, "until": {"_count": 1}}, "at": {"_count": 7, "the": {"_count": 1}, "Hogwarts": {"_count": 4}, "headquarters": {"_count": 1}, "Shell": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "inside": {"_count": 2, "the": {"_count": 1}, "over": {"_count": 1}}, "airborne": {"_count": 2, "": {"_count": 1}, "for": {"_count": 1}}, "in": {"_count": 10, "the": {"_count": 2}, "place": {"_count": 1}, "Grimmauld": {"_count": 1}, "Rons": {"_count": 1}, "MouldontheWold": {"_count": 1}, "any": {"_count": 1}, "check": {"_count": 1}, "his": {"_count": 1}, "Lord": {"_count": 1}}, "alone": {"_count": 1, "with": {"_count": 1}}, "unnamed": {"_count": 1, "stated": {"_count": 1}}, "loyal": {"_count": 1, "to": {"_count": 1}}, "Cornelius": {"_count": 1, "on": {"_count": 1}}, "still": {"_count": 2, "long": {"_count": 1}, "and": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "etched": {"_count": 1, "in": {"_count": 1}}, "convinced": {"_count": 1, "of": {"_count": 1}}, "mixed": {"_count": 1, "up": {"_count": 1}}, "focused": {"_count": 1, "": {"_count": 1}}, "alert": {"_count": 1, "and": {"_count": 1}}, "Sibyll": {"_count": 1, "": {"_count": 1}}, "seated": {"_count": 1, "while": {"_count": 1}}, "behind": {"_count": 5, "as": {"_count": 1}, "while": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}, "for": {"_count": 1}}, "vigilant": {"_count": 1, "The": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "safe": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 1, "with": {"_count": 1}}, "intact": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "pure": {"_count": 1, "of": {"_count": 1}}, "upright": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "": {"_count": 1}}, "open": {"_count": 3, "said": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "mere": {"_count": 1}}, "hidden": {"_count": 1, "while": {"_count": 1}}, "silent": {"_count": 1, "increasingly": {"_count": 1}}, "ignorant": {"_count": 1, "of": {"_count": 1}}, "present": {"_count": 2, "inside": {"_count": 1}, "as": {"_count": 1}}, "with": {"_count": 1, "them": {"_count": 1}}, "close": {"_count": 1, "now": {"_count": 1}}, "secret": {"_count": 1, "forever": {"_count": 1}}, "angry": {"_count": 1, "with": {"_count": 1}}, "unsullied": {"_count": 1, "upon": {"_count": 1}}, "limp": {"_count": 1, "yet": {"_count": 1}}}, "provoke": {"_count": 5, "them": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 2, "into": {"_count": 1}, "he": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "aggression": {"_count": 1}}}, "Freshly": {"_count": 1, "caught": {"_count": 1, "Cornish": {"_count": 1}}}, "Cornish": {"_count": 2, "pixies": {"_count": 1, "": {"_count": 1}}, "pasty": {"_count": 1, "while": {"_count": 1}}}, "pixies": {"_count": 11, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "electric": {"_count": 1}}, "shot": {"_count": 1, "in": {"_count": 1}}, "Lockhart": {"_count": 1, "shouted": {"_count": 1}}, "seized": {"_count": 1, "his": {"_count": 1}}, "bit": {"_count": 1, "him": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "Professor": {"_count": 1, "Lockhart": {"_count": 1}}, "loose": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "class": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "waggling": {"_count": 4, "a": {"_count": 1, "finger": {"_count": 1}}, "their": {"_count": 1, "tongues": {"_count": 1}}, "slightly": {"_count": 1, "as": {"_count": 1}}, "happily": {"_count": 1, "and": {"_count": 1}}}, "annoyingly": {"_count": 4, "at": {"_count": 1, "Seamus": {"_count": 1}}, "close": {"_count": 1, "watch": {"_count": 1}}, "superior": {"_count": 1, "looks": {"_count": 1}}, "buoyant": {"_count": 1, "fashion": {"_count": 1}}}, "Devilish": {"_count": 1, "tricky": {"_count": 1, "little": {"_count": 1}}}, "blighters": {"_count": 2, "they": {"_count": 1, "can": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}}, "electric": {"_count": 14, "blue": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}, "eye": {"_count": 1}}, "shock": {"_count": 4, "": {"_count": 2}, "some": {"_count": 1}, "knocked": {"_count": 1}}, "fire": {"_count": 3, "": {"_count": 1}, "Harry": {"_count": 1}, "shot": {"_count": 1}}, "charge": {"_count": 2, "were": {"_count": 1}, "surge": {"_count": 1}}, "current": {"_count": 1, "seemed": {"_count": 1}}}, "budgies": {"_count": 1, "arguing": {"_count": 1, "": {"_count": 1}}}, "jabbering": {"_count": 5, "and": {"_count": 1, "rocketing": {"_count": 1}}, "or": {"_count": 1, "hissing": {"_count": 1}}, "away": {"_count": 2, "in": {"_count": 2}}, "Hufflepuffs": {"_count": 1, "heading": {"_count": 1}}}, "rocketing": {"_count": 3, "around": {"_count": 2, "rattling": {"_count": 1}, "when": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "bizarre": {"_count": 19, "faces": {"_count": 1, "at": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "creature": {"_count": 1, "soared": {"_count": 1}}, "creatures": {"_count": 1, "Harry": {"_count": 1}}, "dream": {"_count": 1, "": {"_count": 1}}, "accidents": {"_count": 1, "and": {"_count": 1}}, "appearance": {"_count": 2, "to": {"_count": 1}, "however": {"_count": 1}}, "twist": {"_count": 1, "Hagrid": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "his": {"_count": 1, "tiny": {"_count": 1}}, "views": {"_count": 1, "as": {"_count": 1}}, "thing": {"_count": 1, "he": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "fastgrowing": {"_count": 1, "flower": {"_count": 1}}, "offspring": {"_count": 1, "of": {"_count": 1}}, "turn": {"_count": 1, "of": {"_count": 1}}, "manylipped": {"_count": 1, "oyster": {"_count": 1}}}, "pandemonium": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "reigned": {"_count": 1, "": {"_count": 1}}}, "rockets": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "bursting": {"_count": 1, "in": {"_count": 1}}}, "showering": {"_count": 6, "the": {"_count": 3, "back": {"_count": 1}, "whole": {"_count": 1}, "breakfasters": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}}, "proceeded": {"_count": 34, "to": {"_count": 10, "wreck": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "explain": {"_count": 1}, "a": {"_count": 1}, "fill": {"_count": 1}, "force": {"_count": 1}, "grope": {"_count": 1}, "an": {"_count": 1}, "attack": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "upstairs": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 2, "them": {"_count": 1}, "deserted": {"_count": 1}}, "gloomily": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 4, "a": {"_count": 1}, "to": {"_count": 1}, "the": {"_count": 2}}, "up": {"_count": 4, "the": {"_count": 2}, "to": {"_count": 1}, "a": {"_count": 1}}, "straight": {"_count": 2, "to": {"_count": 1}, "past": {"_count": 1}}, "alone": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wreck": {"_count": 11, "the": {"_count": 3, "classroom": {"_count": 1}, "thing": {"_count": 1}, "room": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 4, "a": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "what": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "houses": {"_count": 1, "nifflers": {"_count": 1}}}, "effectively": {"_count": 5, "than": {"_count": 2, "a": {"_count": 1}, "Woods": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}, "for": {"_count": 1, "long": {"_count": 1}}, "stopped": {"_count": 1, "Zacharias": {"_count": 1}}}, "rampaging": {"_count": 2, "rhino": {"_count": 1, "": {"_count": 1}}, "hippogriff": {"_count": 1, "": {"_count": 1}}}, "rhino": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "hide": {"_count": 1, "an": {"_count": 1}}}, "sprayed": {"_count": 4, "the": {"_count": 1, "class": {"_count": 1}}, "with": {"_count": 1, "slugs": {"_count": 1}}, "butterbeer": {"_count": 1, "down": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "upended": {"_count": 1, "the": {"_count": 1, "waste": {"_count": 1}}}, "sheltering": {"_count": 2, "under": {"_count": 1, "desks": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}}, "chandelier": {"_count": 22, "in": {"_count": 1, "the": {"_count": 1}}, "gave": {"_count": 1, "way": {"_count": 1}}, "overhead": {"_count": 1, "blazed": {"_count": 1}}, "and": {"_count": 7, "her": {"_count": 1}, "everything": {"_count": 1}, "dropping": {"_count": 1}, "the": {"_count": 2}, "could": {"_count": 1}, "grinning": {"_count": 1}}, "glimmered": {"_count": 1, "overhead": {"_count": 1}}, "occasionally": {"_count": 1, "blowing": {"_count": 1}}, "glittered": {"_count": 1, "nearby": {"_count": 1}}, "screwed": {"_count": 1, "itself": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "thickly": {"_count": 1, "coated": {"_count": 1}}, "hung": {"_count": 1, "from": {"_count": 1}}, "tremble": {"_count": 1, "then": {"_count": 1}}, "crashed": {"_count": 1, "to": {"_count": 1}}}, "Peskipiksi": {"_count": 1, "Pesternomti": {"_count": 1, "It": {"_count": 1}}}, "Pesternomti": {"_count": 1, "It": {"_count": 1, "had": {"_count": 1}}}, "absolutely": {"_count": 28, "no": {"_count": 3, "effect": {"_count": 1}, "notice": {"_count": 1}, "intention": {"_count": 1}}, "nowhere": {"_count": 1, "to": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "sure": {"_count": 6, "Myrtle": {"_count": 1}, "that": {"_count": 2}, "they": {"_count": 1}, "you": {"_count": 1}, "": {"_count": 1}}, "right": {"_count": 2, "Harry": {"_count": 1}, "about": {"_count": 1}}, "forbid": {"_count": 1, "Molly": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "foul": {"_count": 1, "to": {"_count": 1}}, "oh": {"_count": 1, "for": {"_count": 1}}, "exhausted": {"_count": 1, "and": {"_count": 1}}, "appalling": {"_count": 1, "teacher": {"_count": 1}}, "fine": {"_count": 1, "said": {"_count": 1}}, "wonderful": {"_count": 2, "For": {"_count": 1}, "said": {"_count": 1}}, "refuses": {"_count": 1, "to": {"_count": 1}}, "delighted": {"_count": 1, "about": {"_count": 1}}, "convinced": {"_count": 1, "he": {"_count": 1}}, "fawns": {"_count": 1, "on": {"_count": 1}}, "genuine": {"_count": 1, "": {"_count": 1}}, "brilliant": {"_count": 1, "": {"_count": 1}}}, "relative": {"_count": 6, "calm": {"_count": 1, "that": {"_count": 1}}, "of": {"_count": 2, "Harrys": {"_count": 1}, "yours": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}}, "nip": {"_count": 5, "the": {"_count": 1, "rest": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "upstairs": {"_count": 1, "and": {"_count": 1}}, "down": {"_count": 2, "here": {"_count": 1}, "for": {"_count": 1}}}, "handson": {"_count": 1, "experience": {"_count": 1, "said": {"_count": 1}}}, "immobilizing": {"_count": 1, "two": {"_count": 1, "pixies": {"_count": 1}}}, "Freezing": {"_count": 4, "Charm": {"_count": 4, "and": {"_count": 2}, "on": {"_count": 1}, "Then": {"_count": 1}}}, "Hands": {"_count": 5, "on": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "raining": {"_count": 1}}, "still": {"_count": 1, "clamped": {"_count": 1}}, "shaking": {"_count": 1, "Harry": {"_count": 1}}, "softer": {"_count": 1, "than": {"_count": 1}}}, "pixie": {"_count": 2, "dancing": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "MUDBLOODS": {"_count": 2, "AND": {"_count": 1, "MURMURS": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "MURMURS": {"_count": 1, "Harry": {"_count": 1, "spent": {"_count": 1}}}, "dodging": {"_count": 11, "out": {"_count": 2, "of": {"_count": 2}}, "all": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 2, "Bludger": {"_count": 2}}, "the": {"_count": 1, "Horntail": {"_count": 1}}, "curses": {"_count": 1, "and": {"_count": 1}}, "George": {"_count": 1, "who": {"_count": 1}}, "Bludgers": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 1, "Ernie": {"_count": 1}}}, "memorized": {"_count": 3, "Harrys": {"_count": 1, "schedule": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}}, "thrill": {"_count": 11, "than": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 10, "horror": {"_count": 2}, "the": {"_count": 1}, "terror": {"_count": 1}, "foreboding": {"_count": 1}, "excitement": {"_count": 1}, "dread": {"_count": 1}, "discovering": {"_count": 1}, "something": {"_count": 1}, "fear": {"_count": 1}}}, "disasterous": {"_count": 1, "car": {"_count": 1, "journey": {"_count": 1}}}, "malfunctioning": {"_count": 3, "surpassing": {"_count": 1, "itself": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wand": {"_count": 1, "that": {"_count": 1}}}, "surpassing": {"_count": 1, "itself": {"_count": 1, "on": {"_count": 1}}}, "squarely": {"_count": 11, "between": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 8, "front": {"_count": 1}, "the": {"_count": 7}}, "on": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}}, "creating": {"_count": 5, "a": {"_count": 3, "large": {"_count": 1}, "Horcrux": {"_count": 1}, "nice": {"_count": 1}}, "more": {"_count": 1, "terror": {"_count": 1}}, "those": {"_count": 1, "powerful": {"_count": 1}}}, "weekend": {"_count": 34, "": {"_count": 5, ".": {"_count": 3}, "!": {"_count": 1}, "?": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "term": {"_count": 1}, "May": {"_count": 1}}, "that": {"_count": 1, "will": {"_count": 1}}, "trip": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "when": {"_count": 1, "there": {"_count": 1}}, "by": {"_count": 1, "return": {"_count": 1}}, "for": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "in": {"_count": 3, "October": {"_count": 1}, "Octobers": {"_count": 1}, "front": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "theyre": {"_count": 1, "all": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "instructions": {"_count": 1, "he": {"_count": 1}}, "off": {"_count": 1, "is": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "Remus": {"_count": 1, "and": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "joined": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}}, "Whassamatter": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "groggily": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 1, "his": {"_count": 1}}}, "pinkandgold": {"_count": 1, "sky": {"_count": 1, "": {"_count": 1}}}, "crazed": {"_count": 2, "enthusiasm": {"_count": 1, "": {"_count": 1}}, "frenzied": {"_count": 1, "it": {"_count": 1}}}, "enthusiasm": {"_count": 21, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "for": {"_count": 2, "regular": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "done": {"_count": 1}}, "as": {"_count": 1, "Cedric": {"_count": 1}}, "from": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 1, "Jack": {"_count": 1}}, "patience": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "Slughorns": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "developed": {"_count": 12, "I": {"_count": 1, "wanted": {"_count": 1}}, "a": {"_count": 4, "kind": {"_count": 1}, "close": {"_count": 2}, "taste": {"_count": 1}}, "something": {"_count": 1, "of": {"_count": 1}}, "an": {"_count": 3, "unpleasant": {"_count": 1}, "irritating": {"_count": 1}, "annoying": {"_count": 1}}, "the": {"_count": 1, "unpleasant": {"_count": 1}}, "this": {"_count": 1, "more": {"_count": 1}}, "for": {"_count": 1, "such": {"_count": 1}}}, "bemusedly": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "blackandwhite": {"_count": 9, "Lockhart": {"_count": 1, "was": {"_count": 1}}, "striped": {"_count": 1, "hair": {"_count": 1}}, "picture": {"_count": 3, "were": {"_count": 1}, "didnt": {"_count": 1}, "of": {"_count": 1}}, "photograph": {"_count": 1, "of": {"_count": 1}}, "people": {"_count": 1, "inside": {"_count": 1}}, "photographs": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}}, "photographic": {"_count": 2, "self": {"_count": 1, "was": {"_count": 1}}, "people": {"_count": 1, "edged": {"_count": 1}}}, "wow": {"_count": 8, "": {"_count": 4, "!": {"_count": 2}, ".": {"_count": 2}}, "said": {"_count": 1, "Neville": {"_count": 1}}, "softly": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "What": {"_count": 1, "is": {"_count": 1}}}, "Wait": {"_count": 47, "for": {"_count": 5, "me": {"_count": 3}, "what": {"_count": 1}, "daybreak": {"_count": 1}}, "till": {"_count": 6, "everyones": {"_count": 1}, "everyone": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}, "were": {"_count": 1}, "it": {"_count": 1}}, "here": {"_count": 4, "said": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "for": {"_count": 1}}, "there": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 1, "Lockhart": {"_count": 1}}, "a": {"_count": 9, "moment": {"_count": 8}, "minute": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 8, "!": {"_count": 4}, ".": {"_count": 3}, "?": {"_count": 1}}, "until": {"_count": 1, "your": {"_count": 1}}, "theres": {"_count": 1, "more": {"_count": 1}}, "said": {"_count": 5, "Hermione": {"_count": 1}, "Harry": {"_count": 2}, "Narcissa": {"_count": 1}, "Bellatrix": {"_count": 1}}, "Im": {"_count": 1, "trying": {"_count": 1}}, "Bill": {"_count": 1, "told": {"_count": 1}}, "Bogrod": {"_count": 1, "": {"_count": 1}}, "wait": {"_count": 1, "cried": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}}, "Werent": {"_count": 4, "you": {"_count": 3, "": {"_count": 1}, "saying": {"_count": 1}, "hoping": {"_count": 1}}, "we": {"_count": 1, "trying": {"_count": 1}}}, "talkative": {"_count": 2, "shadow": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}}, "resigned": {"_count": 13, "to": {"_count": 2, "explaining": {"_count": 1}, "the": {"_count": 1}}, "doesnt": {"_count": 1, "sound": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "last": {"_count": 1, "year": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 2}}, "in": {"_count": 1, "protest": {"_count": 1}}, "his": {"_count": 1, "post": {"_count": 1}}, "he": {"_count": 1, "has": {"_count": 1}}}, "clubs": {"_count": 7, "to": {"_count": 1, "beat": {"_count": 1}}, "others": {"_count": 1, "unable": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "raised": {"_count": 2, "He": {"_count": 1}, "in": {"_count": 1}}, "made": {"_count": 1, "contact": {"_count": 1}}, "nervously": {"_count": 1, "against": {"_count": 1}}}, "gazing": {"_count": 126, "openmouthed": {"_count": 3, "at": {"_count": 1}, "into": {"_count": 1}, "appalled": {"_count": 1}}, "into": {"_count": 9, "a": {"_count": 2}, "space": {"_count": 1}, "the": {"_count": 4}, "its": {"_count": 1}, "his": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "at": {"_count": 1}}, "at": {"_count": 43, "Harry": {"_count": 2}, "a": {"_count": 2}, "the": {"_count": 17}, "him": {"_count": 8}, "Mr": {"_count": 1}, "Hermione": {"_count": 1}, "Professor": {"_count": 1}, "it": {"_count": 2}, "Ron": {"_count": 1}, "her": {"_count": 2}, "Lucius": {"_count": 1}, "Dumbledore": {"_count": 1}, "his": {"_count": 1}, "Morfin": {"_count": 1}, "Riddle": {"_count": 1}, "Snape": {"_count": 1}}, "steadily": {"_count": 1, "at": {"_count": 1}}, "up": {"_count": 11, "at": {"_count": 10}, "into": {"_count": 1}}, "Headmaster": {"_count": 1, "said": {"_count": 1}}, "around": {"_count": 8, "for": {"_count": 3}, "": {"_count": 2}, "with": {"_count": 1}, "halfscared": {"_count": 1}, "at": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "fixedly": {"_count": 2, "at": {"_count": 2}}, "imploringly": {"_count": 1, "into": {"_count": 1}}, "happily": {"_count": 1, "out": {"_count": 1}}, "longingly": {"_count": 1, "at": {"_count": 1}}, "transfixed": {"_count": 2, "at": {"_count": 2}}, "raptly": {"_count": 1, "at": {"_count": 1}}, "hopefully": {"_count": 1, "up": {"_count": 1}}, "enraptured": {"_count": 1, "at": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "back": {"_count": 2, "at": {"_count": 1}, "over": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "intently": {"_count": 1, "up": {"_count": 1}}, "avidly": {"_count": 1, "at": {"_count": 1}}, "down": {"_count": 8, "at": {"_count": 5}, "the": {"_count": 1}, "into": {"_count": 2}}, "unseeingly": {"_count": 1, "at": {"_count": 1}}, "unblinkingly": {"_count": 1, "at": {"_count": 1}}, "fondly": {"_count": 1, "at": {"_count": 1}}, "dreamily": {"_count": 2, "into": {"_count": 1}, "at": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "miserably": {"_count": 1, "at": {"_count": 1}}, "everywhere": {"_count": 1, "but": {"_count": 1}}, "in": {"_count": 2, "some": {"_count": 1}, "the": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "vaguely": {"_count": 1, "out": {"_count": 1}}, "ahead": {"_count": 1, "at": {"_count": 1}}, "mesmerized": {"_count": 2, "at": {"_count": 1}, "into": {"_count": 1}}, "blankly": {"_count": 1, "at": {"_count": 1}}, "beseechingly": {"_count": 1, "all": {"_count": 1}}, "dumbfounded": {"_count": 1, "at": {"_count": 1}}, "upward": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}}, "biggish": {"_count": 1, "red": {"_count": 1, "one": {"_count": 1}}}, "scores": {"_count": 3, "goals": {"_count": 1, "": {"_count": 1}}, "Lee": {"_count": 1, "groaned": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "goals": {"_count": 16, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "by": {"_count": 1, "putting": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "which": {"_count": 1, "put": {"_count": 1}}, "Harry": {"_count": 1, "attempted": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "nobody": {"_count": 1, "would": {"_count": 1}}, "to": {"_count": 1, "boot": {"_count": 1}}, "apiece": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "apparent": {"_count": 1}}, "without": {"_count": 1, "help": {"_count": 1}}}, "earns": {"_count": 1, "his": {"_count": 1, "team": {"_count": 1}}}, "dewdrenched": {"_count": 1, "grass": {"_count": 1, "": {"_count": 1}}}, "piping": {"_count": 3, "voice": {"_count": 1, "Ill": {"_count": 1}}, "its": {"_count": 1, "weird": {"_count": 1}}, "his": {"_count": 1, "eerie": {"_count": 1}}}, "puffyeyed": {"_count": 2, "and": {"_count": 2, "touslehaired": {"_count": 1}, "pale": {"_count": 1}}}, "touslehaired": {"_count": 3, "next": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "fellow": {"_count": 61, "Chasers": {"_count": 1, "Katie": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "students": {"_count": 10, "seemed": {"_count": 1}, "into": {"_count": 1}, "": {"_count": 2}, "is": {"_count": 1}, "at": {"_count": 1}, "were": {"_count": 1}, "in": {"_count": 1}, "are": {"_count": 1}, "fled": {"_count": 1}}, "spiders": {"_count": 1, "continued": {"_count": 1}}, "wizard": {"_count": 2, "one": {"_count": 1}, "with": {"_count": 1}}, "diners": {"_count": 1, "were": {"_count": 1}}, "Gryffindors": {"_count": 5, "in": {"_count": 1}, "": {"_count": 1}, "spent": {"_count": 1}, "were": {"_count": 1}, "who": {"_count": 1}}, "rats": {"_count": 1, "who": {"_count": 1}}, "team": {"_count": 1, "members": {"_count": 1}}, "is": {"_count": 1, "ill": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "campers": {"_count": 1, "were": {"_count": 1}}, "Gryffindor": {"_count": 2, "fourth": {"_count": 1}, "": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "human": {"_count": 2, "being": {"_count": 2}}, "how": {"_count": 1, "are": {"_count": 1}}, "Durmstrang": {"_count": 2, "students": {"_count": 2}}, "keepers": {"_count": 1, "staggered": {"_count": 1}}, "judges": {"_count": 1, "and": {"_count": 1}}, "Death": {"_count": 3, "Eaters": {"_count": 3}}, "Beauxbatons": {"_count": 1, "students": {"_count": 1}}, "it": {"_count": 1, "soared": {"_count": 1}}, "fifthyear": {"_count": 1, "Gryffindor": {"_count": 1}}, "fourth": {"_count": 1, "years": {"_count": 1}}, "staff": {"_count": 1, "members": {"_count": 1}}, "student": {"_count": 1, "and": {"_count": 1}}, "educators": {"_count": 1, "and": {"_count": 1}}, "teachers": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "visitors": {"_count": 1, "were": {"_count": 1}}, "passengers": {"_count": 1, "on": {"_count": 1}}, "torturers": {"_count": 1, "escape": {"_count": 1}}, "D": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wizards": {"_count": 1, "the": {"_count": 1}}, "guests": {"_count": 1, "": {"_count": 1}}, "Slytherins": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "sixth": {"_count": 1, "years": {"_count": 1}}, "prisoners": {"_count": 1, "Dean": {"_count": 1}}, "Ravenclaws": {"_count": 1, "nobodys": {"_count": 1}}, "pictures": {"_count": 1, "looked": {"_count": 1}}}, "devising": {"_count": 1, "a": {"_count": 1, "whole": {"_count": 1}}}, "diagram": {"_count": 4, "of": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "like": {"_count": 1, "caterpillars": {"_count": 1}}, "showing": {"_count": 1, "how": {"_count": 1}}}, "crosses": {"_count": 4, "in": {"_count": 1, "differentcolored": {"_count": 1}}, "him": {"_count": 1, "magic": {"_count": 1}}, "between": {"_count": 1, "manticores": {"_count": 1}}, "had": {"_count": 1, "faded": {"_count": 1}}}, "inks": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wiggle": {"_count": 2, "over": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "flopped": {"_count": 1}}}, "caterpillars": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}}, "tactics": {"_count": 9, "Fred": {"_count": 1, "Weasleys": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "Wood": {"_count": 1}, "Harry": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "Spinnets": {"_count": 2, "shoulder": {"_count": 1, "and": {"_count": 1}}, "away": {"_count": 1, "Lee": {"_count": 1}}}, "snore": {"_count": 10, "": {"_count": 2, ".": {"_count": 2}}, "told": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "Rons": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 3, "then": {"_count": 1}, "Harry": {"_count": 1}, "a": {"_count": 1}}, "for": {"_count": 1, "just": {"_count": 1}}}, "stupor": {"_count": 3, "as": {"_count": 1, "Wood": {"_count": 1}}, "occasionally": {"_count": 1, "coming": {"_count": 1}}, "thinking": {"_count": 1, "of": {"_count": 1}}}, "wistful": {"_count": 1, "fantasy": {"_count": 1, "about": {"_count": 1}}}, "fantasy": {"_count": 1, "about": {"_count": 1, "what": {"_count": 1}}}, "glowering": {"_count": 16, "at": {"_count": 6, "them": {"_count": 2}, "the": {"_count": 1}, "his": {"_count": 1}, "everyone": {"_count": 1}, "Goyle": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "vot": {"_count": 1, "there": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "looks": {"_count": 1, "at": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "Rons": {"_count": 1}}}, "owing": {"_count": 9, "to": {"_count": 9, "circumstances": {"_count": 1}, "the": {"_count": 7}, "their": {"_count": 1}}}, "shifted": {"_count": 19, "guiltily": {"_count": 2, "in": {"_count": 2}}, "restlessly": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 1, "grindylow": {"_count": 1}}, "his": {"_count": 4, "hand": {"_count": 1}, "position": {"_count": 2}, "chair": {"_count": 1}}, "uncomfortably": {"_count": 2, "in": {"_count": 2}}, "very": {"_count": 1, "slightly": {"_count": 1}}, "in": {"_count": 3, "its": {"_count": 1}, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "final": {"_count": 73, "match": {"_count": 4, "of": {"_count": 3}, "last": {"_count": 1}}, "straw": {"_count": 2, "Im": {"_count": 1}, "for": {"_count": 1}}, "words": {"_count": 2, "to": {"_count": 1}, "were": {"_count": 1}}, "loud": {"_count": 1, "crack": {"_count": 1}}, "term": {"_count": 1, "passed": {"_count": 1}}, "year": {"_count": 3, "at": {"_count": 3}}, "evening": {"_count": 1, "of": {"_count": 1}}, "turn": {"_count": 1, "gasped": {"_count": 1}}, "word": {"_count": 2, "": {"_count": 2}}, "training": {"_count": 1, "session": {"_count": 1}}, "practice": {"_count": 1, "before": {"_count": 1}}, "instructions": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "drawing": {"_count": 1, "ever": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "nod": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "sort": {"_count": 1, "of": {"_count": 1}}, "quavering": {"_count": 1, "note": {"_count": 1}}, "task": {"_count": 5, "will": {"_count": 1}, "in": {"_count": 1}, "you": {"_count": 1}, "of": {"_count": 2}}, "lesson": {"_count": 1, "of": {"_count": 1}}, "hurdle": {"_count": 1, "and": {"_count": 1}}, "request": {"_count": 1, "": {"_count": 1}}, "ingredient": {"_count": 1, "was": {"_count": 1}}, "detention": {"_count": 1, "with": {"_count": 1}}, "time": {"_count": 1, "was": {"_count": 1}}, "one": {"_count": 1, "into": {"_count": 1}}, "meal": {"_count": 1, "": {"_count": 1}}, "lineup": {"_count": 1, "for": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "score": {"_count": 1, "was": {"_count": 1}}, "bell": {"_count": 1, "rang": {"_count": 1}}, "weekend": {"_count": 1, "of": {"_count": 1}}, "exam": {"_count": 1, "History": {"_count": 1}}, "absolute": {"_count": 1, "irretrievable": {"_count": 1}}, "identifying": {"_count": 1, "feature": {"_count": 1}}, "plunk": {"_count": 1, "from": {"_count": 1}}, "lurch": {"_count": 1, "the": {"_count": 1}}, "destination": {"_count": 3, "and": {"_count": 2}, "he": {"_count": 1}}, "decision": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "Quidditch": {"_count": 2, "practice": {"_count": 1}, "game": {"_count": 1}}, "Horcrux": {"_count": 1, "with": {"_count": 1}}, "resting": {"_count": 1, "place": {"_count": 1}}, "meeting": {"_count": 1, "with": {"_count": 1}}, "hours": {"_count": 1, "": {"_count": 1}}, "flourish": {"_count": 1, "of": {"_count": 1}}, "act": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "warning": {"_count": 1, "said": {"_count": 1}}, "thud": {"_count": 1, "at": {"_count": 1}}, "sweater": {"_count": 1, "stooped": {"_count": 1}}, "corner": {"_count": 1, "and": {"_count": 1}}, "proof": {"_count": 1, "": {"_count": 1}}, "secret": {"_count": 1, "": {"_count": 1}}, "kisses": {"_count": 1, "lastminute": {"_count": 1}}}, "suffered": {"_count": 30, "their": {"_count": 1, "worst": {"_count": 1}}, "much": {"_count": 1, "persecution": {"_count": 1}}, "a": {"_count": 6, "severe": {"_count": 1}, "huge": {"_count": 1}, "": {"_count": 1}, "terrible": {"_count": 1}, "change": {"_count": 1}, "mortal": {"_count": 1}}, "nerves": {"_count": 1, "like": {"_count": 1}}, "the": {"_count": 2, "indignity": {"_count": 1}, "same": {"_count": 1}}, "tonight": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "my": {"_count": 1}}, "very": {"_count": 1, "little": {"_count": 1}}, "directly": {"_count": 1, "at": {"_count": 1}}, "losses": {"_count": 1, "too": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "through": {"_count": 1, "three": {"_count": 1}}, "at": {"_count": 1, "Jamess": {"_count": 1}}, "What": {"_count": 1, "about": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "from": {"_count": 1, "nerves": {"_count": 1}}, "damage": {"_count": 1, "from": {"_count": 1}}, "periods": {"_count": 1, "of": {"_count": 1}}, "no": {"_count": 1, "serious": {"_count": 1}}, "some": {"_count": 1, "violent": {"_count": 1}}, "this": {"_count": 1, "degree": {"_count": 1}}, "several": {"_count": 1, "gashes": {"_count": 1}}}, "torturing": {"_count": 10, "him": {"_count": 3, "": {"_count": 3}}, "": {"_count": 1, ".": {"_count": 1}}, "Wormtail": {"_count": 1, "": {"_count": 1}}, "Ollivander": {"_count": 1, "": {"_count": 1}}, "Harrys": {"_count": 1, "whereabouts": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "grief": {"_count": 1, "Harry": {"_count": 1}}}, "theories": {"_count": 5, "into": {"_count": 1, "practice": {"_count": 1}}, "about": {"_count": 3, "how": {"_count": 2}, "what": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Stifflegged": {"_count": 1, "and": {"_count": 1, "still": {"_count": 1}}}, "remnants": {"_count": 6, "of": {"_count": 6, "mist": {"_count": 1}, "the": {"_count": 3}, "his": {"_count": 2}}}, "incredulously": {"_count": 31, "": {"_count": 23, ".": {"_count": 23}}, "at": {"_count": 4, "each": {"_count": 1}, "the": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "and": {"_count": 1, "paying": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "delighted": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}}, "jealously": {"_count": 4, "at": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "guard": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "moves": {"_count": 11, "": {"_count": 2, ".": {"_count": 2}}, "assuming": {"_count": 1, "were": {"_count": 1}}, "faultlessly": {"_count": 1, "and": {"_count": 1}}, "toward": {"_count": 1, "Malfoy": {"_count": 1}}, "twice": {"_count": 1, "they": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "have": {"_count": 1, "received": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "Hogwarts": {"_count": 1}}, "outdoors": {"_count": 1, "during": {"_count": 1}}}, "highest": {"_count": 17, "seats": {"_count": 1, "his": {"_count": 1}}, "cage": {"_count": 1, "landed": {"_count": 1}}, "point": {"_count": 3, "ever": {"_count": 1}, "of": {"_count": 2}}, "qualification": {"_count": 1, "Hogwarts": {"_count": 1}}, "total": {"_count": 1, "after": {"_count": 1}}, "extent": {"_count": 1, "so": {"_count": 1}}, "bench": {"_count": 1, "but": {"_count": 1}}, "benches": {"_count": 1, "of": {"_count": 1}}, "security": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "law": {"_count": 1, "is": {"_count": 1}}, "tower": {"_count": 2, "He": {"_count": 1}, "": {"_count": 1}}, "honor": {"_count": 1, "": {"_count": 1}}, "towers": {"_count": 1, "Ravenclaw": {"_count": 1}}}, "magnified": {"_count": 18, "in": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "to": {"_count": 3, "a": {"_count": 1}, "enormous": {"_count": 2}}, "voice": {"_count": 3, "": {"_count": 1}, "boomed": {"_count": 1}, "echoed": {"_count": 1}}, "eyes": {"_count": 3, "full": {"_count": 1}, "rose": {"_count": 1}, "": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "tenfold": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 3, "that": {"_count": 3}}}, "spy": {"_count": 31, "trying": {"_count": 1, "to": {"_count": 1}}, "Oliver": {"_count": 1, "said": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "for": {"_count": 3, "Voldemort": {"_count": 1}, "us": {"_count": 1}, "her": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 6, ".": {"_count": 3}, "?": {"_count": 2}, "!": {"_count": 1}}, "Peter": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 9, "him": {"_count": 2}, "the": {"_count": 3}, "us": {"_count": 1}, "me": {"_count": 1}, "people": {"_count": 1}, "you": {"_count": 1}}, "and": {"_count": 2, "passed": {"_count": 1}, "here": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "against": {"_count": 1, "Voldemort": {"_count": 1}}, "upon": {"_count": 2, "Albus": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "testily": {"_count": 10, "": {"_count": 7, ".": {"_count": 7}}, "well": {"_count": 1, "Im": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "therell": {"_count": 1, "only": {"_count": 1}}}, "booked": {"_count": 10, "the": {"_count": 5, "field": {"_count": 2}, "Weird": {"_count": 1}, "Quidditch": {"_count": 2}}, "it": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "troupe": {"_count": 1}, "couple": {"_count": 1}}, "two": {"_count": 1, "beds": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "staggering": {"_count": 11, "slightly": {"_count": 2, "as": {"_count": 1}, "and": {"_count": 1}}, "toward": {"_count": 1, "their": {"_count": 1}}, "steps": {"_count": 1, "backward": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "people": {"_count": 1, "Neville": {"_count": 1}}, "Harry": {"_count": 1, "got": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "along": {"_count": 1, "sideways": {"_count": 1}}, "right": {"_count": 1, "across": {"_count": 1}}}, "dismounted": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "smoothly": {"_count": 1, "": {"_count": 1}}}, "trollish": {"_count": 1, "cunning": {"_count": 1, "on": {"_count": 1}}}, "spitting": {"_count": 18, "with": {"_count": 1, "rage": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "sound": {"_count": 1, "right": {"_count": 1}}, "in": {"_count": 1, "agony": {"_count": 1}}, "madly": {"_count": 1, "at": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "slashing": {"_count": 1}, "snarling": {"_count": 1}}, "at": {"_count": 1, "it": {"_count": 1}}, "Harry": {"_count": 1, "snatched": {"_count": 1}}, "without": {"_count": 1, "drawing": {"_count": 1}}, "hissing": {"_count": 1, "noises": {"_count": 1}}, "gold": {"_count": 1, "into": {"_count": 1}}, "green": {"_count": 1, "sparks": {"_count": 1}}, "out": {"_count": 1, "soapsuds": {"_count": 1}}, "portrait": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "fire": {"_count": 1, "": {"_count": 1}}}, "Tve": {"_count": 1, "got": {"_count": 1, "a": {"_count": 1}}}, "S": {"_count": 47, "": {"_count": 25, ".": {"_count": 25}}, "all": {"_count": 1, "my": {"_count": 1}}, "like": {"_count": 1, "bein": {"_count": 1}}, "sorry": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "far": {"_count": 2, "as": {"_count": 2}}, "time": {"_count": 1, "already": {"_count": 1}}, "matter": {"_count": 1, "": {"_count": 1}}, "okay": {"_count": 1, "though": {"_count": 1}}, "bend": {"_count": 1, "of": {"_count": 1}}, "napes": {"_count": 2, "office": {"_count": 1}, "detention": {"_count": 1}}, "long": {"_count": 1, "as": {"_count": 1}}, "up": {"_count": 1, "Figgy": {"_count": 1}}, "too": {"_count": 1, "late": {"_count": 1}}, "Rons": {"_count": 1, "euphoria": {"_count": 1}}, "The": {"_count": 1, "spell": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "stands": {"_count": 1, "for": {"_count": 1}}, "inlaid": {"_count": 2, "with": {"_count": 2}}, "imagining": {"_count": 1, "a": {"_count": 1}}}, "owinq": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "generous": {"_count": 11, "gift": {"_count": 1, "hes": {"_count": 1}}, "contribution": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 1, "spirit": {"_count": 1}}, "measure": {"_count": 2, "of": {"_count": 1}, "she": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "gulp": {"_count": 1, "of": {"_count": 1}}, "hospitality": {"_count": 1, "": {"_count": 1}}}, "highly": {"_count": 87, "polished": {"_count": 9, "brandnew": {"_count": 1}, "collection": {"_count": 1}, "oak": {"_count": 2}, "": {"_count": 1}, "dark": {"_count": 1}, "door": {"_count": 1}, "buttons": {"_count": 1}, "and": {"_count": 1}}, "faithful": {"_count": 1, "pets": {"_count": 1}}, "individual": {"_count": 1, "way": {"_count": 1}}, "unusual": {"_count": 2, "boy": {"_count": 1}, "for": {"_count": 1}}, "dangerous": {"_count": 4, "very": {"_count": 1}, "crosses": {"_count": 1}, "at": {"_count": 1}, "creatures": {"_count": 1}}, "affronted": {"_count": 2, "": {"_count": 2}}, "advanced": {"_count": 1, "magic": {"_count": 1}}, "amusing": {"_count": 4, "joke": {"_count": 1}, "because": {"_count": 1}, "": {"_count": 1}, "so": {"_count": 1}}, "charged": {"_count": 1, "atmosphere": {"_count": 1}}, "exciting": {"_count": 1, "possibilities": {"_count": 1}}, "embarrassing": {"_count": 1, "": {"_count": 1}}, "disappointed": {"_count": 1, "if": {"_count": 1}}, "unlikely": {"_count": 2, "therefore": {"_count": 1}, "that": {"_count": 1}}, "useful": {"_count": 3, "loose": {"_count": 1}, "in": {"_count": 1}, "one": {"_count": 1}}, "infectious": {"_count": 1, "Harry": {"_count": 1}}, "amused": {"_count": 2, "": {"_count": 2}}, "disbelieving": {"_count": 1, "": {"_count": 1}}, "discomforted": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 5, "MadEye": {"_count": 1}, "you": {"_count": 4}}, "excited": {"_count": 1, "breathless": {"_count": 1}}, "aggressive": {"_count": 1, "dustbins": {"_count": 1}}, "contagious": {"_count": 1, "germs": {"_count": 1}}, "unpopular": {"_count": 1, "there": {"_count": 1}}, "colored": {"_count": 5, "life": {"_count": 1}, "dream": {"_count": 1}, "picture": {"_count": 1}, "beribboned": {"_count": 1}, "now": {"_count": 1}}, "suspicious": {"_count": 2, "of": {"_count": 1}, "creatures": {"_count": 1}}, "disconcerted": {"_count": 2, "": {"_count": 1}, "Ernie": {"_count": 1}}, "ambitious": {"_count": 1, "Harrys": {"_count": 1}}, "convenient": {"_count": 1, "": {"_count": 1}}, "relevant": {"_count": 1, "": {"_count": 1}}, "ungrateful": {"_count": 1, "not": {"_count": 1}}, "interesting": {"_count": 1, "much": {"_count": 1}}, "officiallooking": {"_count": 1, "seal": {"_count": 1}}, "distressing": {"_count": 1, "to": {"_count": 1}}, "resentful": {"_count": 1, "toward": {"_count": 1}}, "skilled": {"_count": 1, "at": {"_count": 1}}, "significant": {"_count": 1, "": {"_count": 1}}, "reluctant": {"_count": 1, "to": {"_count": 1}}, "delighted": {"_count": 2, "about": {"_count": 1}, "": {"_count": 1}}, "efficient": {"_count": 1, "gets": {"_count": 1}}, "trained": {"_count": 2, "Auror": {"_count": 1}, "wizards": {"_count": 1}}, "placed": {"_count": 1, "sources": {"_count": 1}}, "realistic": {"_count": 1, "thirtyminute": {"_count": 1}}, "toxic": {"_count": 1, "in": {"_count": 1}}, "instructive": {"_count": 1, "had": {"_count": 1}}, "painful": {"_count": 1, "hives": {"_count": 1}}, "satisfied": {"_count": 1, "voice": {"_count": 1}}, "selfsufficient": {"_count": 1, "secretive": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "incriminating": {"_count": 1, "magical": {"_count": 1}}, "unpleasant": {"_count": 1, "minutes": {"_count": 1}}, "accomplished": {"_count": 1, "Occlumens": {"_count": 1}}, "reminiscent": {"_count": 1, "of": {"_count": 1}}, "magical": {"_count": 1, "creature": {"_count": 1}}, "edible": {"_count": 1, "humans": {"_count": 1}}}, "polished": {"_count": 23, "brandnew": {"_count": 1, "handles": {"_count": 1}}, "collection": {"_count": 1, "of": {"_count": 1}}, "surface": {"_count": 3, "and": {"_count": 1}, "of": {"_count": 2}}, "oak": {"_count": 3, "furniture": {"_count": 1}, "door": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "them": {"_count": 1, "hurriedly": {"_count": 1}}, "top": {"_count": 1, "and": {"_count": 1}}, "dark": {"_count": 1, "wood": {"_count": 1}}, "by": {"_count": 1, "those": {"_count": 1}}, "door": {"_count": 2, "had": {"_count": 1}, "with": {"_count": 1}}, "wooden": {"_count": 3, "floors": {"_count": 1}, "floor": {"_count": 2}}, "floor": {"_count": 1, "": {"_count": 1}}, "buttons": {"_count": 1, "on": {"_count": 1}}, "wood": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "honed": {"_count": 1}, "free": {"_count": 1}}}, "lettering": {"_count": 5, "spelling": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "flashed": {"_count": 1, "across": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}}, "spelling": {"_count": 4, "the": {"_count": 1, "words": {"_count": 1}}, "wands": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "must": {"_count": 1}}}, "latest": {"_count": 10, "model": {"_count": 1, "": {"_count": 1}}, "article": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "nighttime": {"_count": 1, "visions": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "decree": {"_count": 1, "had": {"_count": 1}}, "cockandbull": {"_count": 1, "story": {"_count": 1}}, "edition": {"_count": 1, "of": {"_count": 1}}, "party": {"_count": 1, "": {"_count": 1}}, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}}, "outstrips": {"_count": 2, "the": {"_count": 1, "old": {"_count": 1}}, "your": {"_count": 1, "own": {"_count": 1}}}, "Cleansweeps": {"_count": 4, "he": {"_count": 1, "smiled": {"_count": 1}}, "reminds": {"_count": 1, "me": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "smashed": {"_count": 1}}}, "Fives": {"_count": 2, "sweeps": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}}, "sweeps": {"_count": 1, "the": {"_count": 1, "board": {"_count": 1}}}, "reduced": {"_count": 15, "to": {"_count": 10, "slits": {"_count": 2}, "something": {"_count": 1}, "cinders": {"_count": 1}, "hiding": {"_count": 1}, "squatting": {"_count": 1}, "a": {"_count": 1}, "telling": {"_count": 1}, "doing": {"_count": 1}, "staring": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "table": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "Demelza": {"_count": 1, "Robins": {"_count": 1}}, "Hermione": {"_count": 1, "to": {"_count": 1}}}, "invasion": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "smugly": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "beside": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "now": {"_count": 1}}}, "superb": {"_count": 13, "broomsticks": {"_count": 1, "in": {"_count": 1}}, "Chasers": {"_count": 1, "": {"_count": 1}}, "replacement": {"_count": 1, "for": {"_count": 1}}, "Keeper": {"_count": 1, "": {"_count": 1}}, "birthday": {"_count": 1, "cakes": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "opals": {"_count": 1, "was": {"_count": 1}}, "moving": {"_count": 1, "color": {"_count": 1}}, "Occlumens": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "whole": {"_count": 1}}, "indifference": {"_count": 1, "to": {"_count": 1}}}, "raffle": {"_count": 1, "off": {"_count": 1, "those": {"_count": 1}}}, "museum": {"_count": 1, "would": {"_count": 1, "bid": {"_count": 1}}}, "smug": {"_count": 8, "look": {"_count": 2, "on": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "indeed": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 1, "this": {"_count": 1}}, "smile": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "Mudblood": {"_count": 41, "he": {"_count": 1, "spat": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 6}, "?": {"_count": 2}, "!": {"_count": 3}}, "died": {"_count": 1, "": {"_count": 1}}, "filth": {"_count": 1, "but": {"_count": 1}}, "mother": {"_count": 2, "soon": {"_count": 1}, "like": {"_count": 1}}, "stay": {"_count": 1, "where": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "sliming": {"_count": 1, "it": {"_count": 1}}, "standing": {"_count": 1, "there": {"_count": 1}}, "is": {"_count": 2, "talking": {"_count": 1}, "speaking": {"_count": 1}}, "Granger": {"_count": 2, "so": {"_count": 1}, "as": {"_count": 1}}, "just": {"_count": 1, "walked": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 1, "forbid": {"_count": 1}}, "touched": {"_count": 1, "Kreacher": {"_count": 1}}, "said": {"_count": 1, "Yaxley": {"_count": 1}}, "a": {"_count": 1, "runaway": {"_count": 1}}, "Slytherins": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "is": {"_count": 1}}, "whos": {"_count": 1, "been": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "and": {"_count": 2, "I": {"_count": 1}, "proud": {"_count": 1}}, "it": {"_count": 1, "just": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}, "Do": {"_count": 1, "not": {"_count": 1}}}, "Flints": {"_count": 5, "arm": {"_count": 1, "at": {"_count": 1}}, "just": {"_count": 1, "been": {"_count": 1}}, "excuse": {"_count": 1, "is": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "nose": {"_count": 1, "smashed": {"_count": 1}}}, "reeling": {"_count": 4, "backward": {"_count": 1, "onto": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}}, "almighty": {"_count": 7, "belch": {"_count": 1, "and": {"_count": 1}}, "bang": {"_count": 1, "and": {"_count": 1}}, "crash": {"_count": 2, "that": {"_count": 1}, "she": {"_count": 1}}, "uproar": {"_count": 1, "the": {"_count": 1}}, "lurch": {"_count": 1, "Harry": {"_count": 1}}, "wrench": {"_count": 1, "and": {"_count": 1}}}, "dribbled": {"_count": 4, "out": {"_count": 1, "of": {"_count": 1}}, "down": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "food": {"_count": 1, "all": {"_count": 1}}}, "paralyzed": {"_count": 11, "with": {"_count": 2, "laughter": {"_count": 1}, "fright": {"_count": 1}}, "not": {"_count": 1, "knowing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "shock": {"_count": 1}}, "body": {"_count": 1, "staring": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "Dolohov": {"_count": 1, "thinking": {"_count": 1}}, "him": {"_count": 1, "as": {"_count": 1}}}, "belching": {"_count": 4, "large": {"_count": 1, "glistening": {"_count": 1}}, "slugs": {"_count": 1, "": {"_count": 1}}, "sooty": {"_count": 1, "steam": {"_count": 1}}, "steam": {"_count": 1, "over": {"_count": 1}}}, "Oooh": {"_count": 16, "said": {"_count": 1, "Colin": {"_count": 1}}, "look": {"_count": 2, "powdered": {"_count": 1}, "a": {"_count": 1}}, "it": {"_count": 1, "might": {"_count": 1}}, "no": {"_count": 1, "Harry": {"_count": 1}}, "thanks": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 1, "wouldnt": {"_count": 1}}, "which": {"_count": 1, "ones": {"_count": 1}}, "narrow": {"_count": 1, "miss": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "very": {"_count": 1, "good": {"_count": 1}}, "he": {"_count": 1, "looks": {"_count": 1}}, "Crackpots": {"_count": 1, "feeling": {"_count": 1}}, "who": {"_count": 1, "tried": {"_count": 1}}, "yes": {"_count": 2, "": {"_count": 1}, "Id": {"_count": 1}}}, "supported": {"_count": 19, "Ron": {"_count": 2, "out": {"_count": 1}, "over": {"_count": 1}}, "by": {"_count": 4, "Moran": {"_count": 1}, "four": {"_count": 1}, "Fleur": {"_count": 1}, "golden": {"_count": 1}}, "his": {"_count": 1, "weight": {"_count": 1}}, "them": {"_count": 2, "or": {"_count": 1}, "since": {"_count": 1}}, "him": {"_count": 3, "through": {"_count": 1}, "": {"_count": 1}, "carrying": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "your": {"_count": 1, "famous": {"_count": 1}}, "Malfoy": {"_count": 1, "across": {"_count": 1}}, "wholeheartedly": {"_count": 1, "Snape": {"_count": 1}}, "Dumbledores": {"_count": 1, "shoulders": {"_count": 1}}, "the": {"_count": 1, "large": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "palest": {"_count": 3, "mauve": {"_count": 1, "today": {"_count": 1}}, "faces": {"_count": 1, "in": {"_count": 1}}, "pink": {"_count": 1, "": {"_count": 1}}}, "somewhat": {"_count": 19, "reluctantly": {"_count": 1, "": {"_count": 1}}, "higher": {"_count": 1, "than": {"_count": 1}}, "than": {"_count": 1, "Ernie": {"_count": 1}}, "choked": {"_count": 1, "voice": {"_count": 1}}, "awkwardly": {"_count": 1, "out": {"_count": 1}}, "shriveled": {"_count": 1, "cauliflower": {"_count": 1}}, "lamely": {"_count": 1, "": {"_count": 1}}, "dented": {"_count": 1, "by": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "hysterical": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "undermined": {"_count": 1, "by": {"_count": 1}}, "distracted": {"_count": 1, "by": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "resembled": {"_count": 1, "the": {"_count": 1}}, "muffling": {"_count": 1, "the": {"_count": 1}}, "irritable": {"_count": 1, "expression": {"_count": 1}}, "which": {"_count": 1, "emphasized": {"_count": 1}}}, "reluctantly": {"_count": 14, "": {"_count": 4, ".": {"_count": 4}}, "by": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "tugged": {"_count": 1}}, "swung": {"_count": 1, "forward": {"_count": 1}}, "Ron": {"_count": 1, "handed": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "sinking": {"_count": 1, "back": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "inherited": {"_count": 1, "from": {"_count": 1}}, "that": {"_count": 1, "Dumbledore": {"_count": 1}}}, "grumpy": {"_count": 11, "but": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "and": {"_count": 2, "oddly": {"_count": 1}, "surly": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "often": {"_count": 1, "withdrawing": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}}, "brightened": {"_count": 3, "when": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "wonderin": {"_count": 1, "when": {"_count": 1, "youd": {"_count": 1}}}, "oneroomed": {"_count": 1, "cabin": {"_count": 1, "which": {"_count": 1}}}, "perturbed": {"_count": 4, "by": {"_count": 3, "Rons": {"_count": 2}, "Umbridges": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "plunking": {"_count": 1, "a": {"_count": 1, "large": {"_count": 1}}}, "basin": {"_count": 68, "in": {"_count": 4, "front": {"_count": 1}, "the": {"_count": 2}, "your": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 17}}, "and": {"_count": 12, "continued": {"_count": 1}, "prodded": {"_count": 1}, "saw": {"_count": 1}, "examines": {"_count": 1}, "Harry": {"_count": 2}, "turned": {"_count": 1}, "bowed": {"_count": 1}, "attempted": {"_count": 1}, "see": {"_count": 1}, "refilled": {"_count": 1}, "stowed": {"_count": 1}}, "lay": {"_count": 1, "there": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 5, "comprised": {"_count": 1}, "shimmering": {"_count": 1}, "full": {"_count": 1}, "now": {"_count": 1}, "empty": {"_count": 1}}, "being": {"_count": 1, "circular": {"_count": 1}}, "But": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "bench": {"_count": 1}}, "carried": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "use": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "its": {"_count": 2}}, "again": {"_count": 1, "Bertha": {"_count": 1}}, "engraved": {"_count": 1, "with": {"_count": 1}}, "then": {"_count": 1, "without": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "carved": {"_count": 1, "with": {"_count": 1}}, "etched": {"_count": 1, "with": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "until": {"_count": 1, "his": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "rather": {"_count": 1, "like": {"_count": 1}}, "each": {"_count": 1, "pale": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "refilled": {"_count": 1, "it": {"_count": 1}}, "flung": {"_count": 1, "himself": {"_count": 1}}, "he": {"_count": 1, "barely": {"_count": 1}}, "of": {"_count": 2, "poison": {"_count": 1}, "cool": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}, "stood": {"_count": 1, "": {"_count": 1}}, "whose": {"_count": 1, "potion": {"_count": 1}}}, "slobbering": {"_count": 1, "over": {"_count": 1, "Harry": {"_count": 1}}}, "Givin": {"_count": 1, "me": {"_count": 1, "advice": {"_count": 1}}}, "kelpies": {"_count": 2, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "sprites": {"_count": 1}}}, "halfplucked": {"_count": 2, "rooster": {"_count": 1, "off": {"_count": 1}}, "turkey": {"_count": 1, "": {"_count": 1}}}, "rooster": {"_count": 10, "off": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "hanging": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "still": {"_count": 1, "swinging": {"_count": 1}}, "around": {"_count": 1, "in": {"_count": 1}}, "falling": {"_count": 1, "limply": {"_count": 1}}, "feathers": {"_count": 2, "off": {"_count": 1}, "all": {"_count": 1}}, "which": {"_count": 1, "is": {"_count": 1}}}, "bangin": {"_count": 1, "on": {"_count": 1, "about": {"_count": 1}}}, "banished": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 1, "Bandon": {"_count": 1}}, "giants": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}}, "criticize": {"_count": 9, "a": {"_count": 1, "Hogwarts": {"_count": 1}}, "the": {"_count": 3, "way": {"_count": 2}, "other": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Ron": {"_count": 1, "I": {"_count": 1}}, "our": {"_count": 1, "parents": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "ask": {"_count": 1}}}, "ony": {"_count": 12, "man": {"_count": 1, "for": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "jokin": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "day": {"_count": 1}}, "me": {"_count": 1, "second": {"_count": 1}}, "buried": {"_count": 1, "a": {"_count": 1}}, "jus": {"_count": 1, "got": {"_count": 1}}, "domestic": {"_count": 1, "herd": {"_count": 1}}, "person": {"_count": 1, "in": {"_count": 1}}, "sixteen": {"_count": 1, "foot": {"_count": 1}}, "travel": {"_count": 1, "by": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "squelchily": {"_count": 2, "into": {"_count": 1, "his": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}}, "Gettin": {"_count": 2, "very": {"_count": 1, "difficult": {"_count": 1}}, "on": {"_count": 1, "well": {"_count": 1}}}, "startin": {"_count": 1, "ter": {"_count": 1, "think": {"_count": 1}}}, "jinxed": {"_count": 9, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "yeh": {"_count": 1, "right": {"_count": 1}}, "that": {"_count": 1, "list": {"_count": 1}}, "Harry": {"_count": 1, "thats": {"_count": 1}}}, "emerging": {"_count": 42, "over": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 22, "a": {"_count": 3}, "the": {"_count": 9}, "tangles": {"_count": 1}, "their": {"_count": 1}, "it": {"_count": 1}, "between": {"_count": 1}, "them": {"_count": 1}, "under": {"_count": 2}, "deep": {"_count": 1}, "behind": {"_count": 1}, "beneath": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "on": {"_count": 2, "all": {"_count": 1}, "every": {"_count": 1}}, "soundlessly": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "see": {"_count": 1, "the": {"_count": 1}}, "until": {"_count": 1, "Harry": {"_count": 1}}, "touslehaired": {"_count": 1, "from": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "neighboring": {"_count": 1}}, "quite": {"_count": 1, "warm": {"_count": 1}}, "together": {"_count": 1, "from": {"_count": 1}}, "everywhere": {"_count": 1, "pulled": {"_count": 1}}, "miraculously": {"_count": 1, "from": {"_count": 1}}}, "tabletop": {"_count": 3, "looking": {"_count": 1, "pale": {"_count": 1}}, "and": {"_count": 1, "saw": {"_count": 1}}, "gleamed": {"_count": 1, "the": {"_count": 1}}}, "\u2018Mudblood": {"_count": 5, "Hagrid": {"_count": 1, "Ron": {"_count": 1}}, "when": {"_count": 1, "Im": {"_count": 1}}, "he": {"_count": 1, "called": {"_count": 1}}, "growled": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "outraged": {"_count": 20, "": {"_count": 16, ".": {"_count": 16}}, "that": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "his": {"_count": 1, "ears": {"_count": 1}}, "disappointment": {"_count": 1, "was": {"_count": 1}}}, "insulting": {"_count": 7, "thing": {"_count": 1, "he": {"_count": 1}}, "my": {"_count": 1, "master": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "before": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}}, "Mudbloods": {"_count": 22, "a": {"_count": 2, "really": {"_count": 1}, "kick": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "friend": {"_count": 1, "said": {"_count": 1}}, "havent": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 6, "the": {"_count": 1}, "Muggles": {"_count": 1}, "Mugglelovers": {"_count": 1}, "werewolves": {"_count": 1}, "traitors": {"_count": 1}, "filth": {"_count": 1}}, "doesnt": {"_count": 1, "matter": {"_count": 1}}, "like": {"_count": 1, "her": {"_count": 1}}, "oh": {"_count": 1, "what": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "filth": {"_count": 1, "stains": {"_count": 1}}, "Scum": {"_count": 1, "she": {"_count": 1}}, "all": {"_count": 1, "day": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}, "thats": {"_count": 1, "another": {"_count": 1}}}, "Muggleborn": {"_count": 31, "you": {"_count": 2, "know": {"_count": 1}, "see": {"_count": 1}}, "wizards": {"_count": 1, "but": {"_count": 1}}, "how": {"_count": 1, "can": {"_count": 1}}, "shell": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 2}, "?": {"_count": 3}, "!": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "mother": {"_count": 1, "he": {"_count": 1}}, "girl": {"_count": 1, "who": {"_count": 1}}, "and": {"_count": 2, "hes": {"_count": 1}, "shes": {"_count": 1}}, "Ted": {"_count": 1, "Tonks": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "a": {"_count": 1, "very": {"_count": 1}}, "should": {"_count": 1, "make": {"_count": 1}}, "though": {"_count": 1, "I": {"_count": 1}}, "is": {"_count": 1, "likely": {"_count": 1}}, "to": {"_count": 1, "present": {"_count": 1}}, "Registration": {"_count": 1, "Commission": {"_count": 1}}, "on": {"_count": 1, "principle": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "rights": {"_count": 1, "who": {"_count": 1}}, "in": {"_count": 1, "hiding": {"_count": 1}}, "Dean": {"_count": 1, "Thomas": {"_count": 1}}, "so": {"_count": 1, "someone": {"_count": 1}}}, "burp": {"_count": 2, "and": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "pureblood": {"_count": 33, "and": {"_count": 2, "he": {"_count": 1}, "therefore": {"_count": 1}}, "stuff": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Malfoy": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 2}}, "families": {"_count": 4, "": {"_count": 1}, "are": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 1}}, "wizard": {"_count": 1, "": {"_count": 1}}, "ter": {"_count": 1, "do": {"_count": 1}}, "mania": {"_count": 1, "convinced": {"_count": 1}}, "marriages": {"_count": 1, "but": {"_count": 1}}, "wizards": {"_count": 2, "Of": {"_count": 1}, "left": {"_count": 1}}, "which": {"_count": 1, "according": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "there": {"_count": 1, "arent": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "greatnephew": {"_count": 1, "of": {"_count": 1}}, "line": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "seven": {"_count": 1, "children": {"_count": 1}}, "credentials": {"_count": 1, "": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}}, "magenta": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "robes": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "that": {"_count": 1}}, "cloak": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 1, "which": {"_count": 1}}, "staff": {"_count": 1, "robes": {"_count": 1}}}, "brow": {"_count": 15, "with": {"_count": 3, "a": {"_count": 2}, "her": {"_count": 1}}, "and": {"_count": 1, "Mrs": {"_count": 1}}, "furrowed": {"_count": 7, "": {"_count": 3}, "as": {"_count": 2}, "and": {"_count": 1}, "trying": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "wrinkled": {"_count": 1, "": {"_count": 1}}}, "Dirty": {"_count": 1, "blood": {"_count": 1, "see": {"_count": 1}}}, "halfblood": {"_count": 8, "anyway": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "WAIT": {"_count": 1, "UNTIL": {"_count": 1}}, "like": {"_count": 1, "himself": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "Prince": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "halfblood": {"_count": 1}}, "I": {"_count": 1, "tell": {"_count": 1}}}, "wedve": {"_count": 1, "died": {"_count": 1, "out": {"_count": 1}}}, "retched": {"_count": 4, "and": {"_count": 2, "ducked": {"_count": 1}, "then": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "Bu": {"_count": 3, "maybe": {"_count": 1, "it": {"_count": 1}}, "bu": {"_count": 1, "she": {"_count": 1}}, "they": {"_count": 1, "wouldn": {"_count": 1}}}, "backfired": {"_count": 9, "": {"_count": 4, ".": {"_count": 4}}, "Ron": {"_count": 1, "explained": {"_count": 1}}, "the": {"_count": 1, "toilet": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "me": {"_count": 1}, "you": {"_count": 1}}}, "Spect": {"_count": 4, "Lucius": {"_count": 1, "Malfoy": {"_count": 1}}, "it": {"_count": 1, "will": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "they": {"_count": 1, "go": {"_count": 1}}}, "wouldve": {"_count": 36, "come": {"_count": 2, "marchin": {"_count": 1}, "too": {"_count": 1}}, "had": {"_count": 3, "to": {"_count": 1}, "much": {"_count": 1}, "Crabbe": {"_count": 1}}, "done": {"_count": 3, "everyone": {"_count": 1}, "an": {"_count": 1}, "": {"_count": 1}}, "seen": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "killed": {"_count": 1, "me": {"_count": 1}}, "met": {"_count": 1, "the": {"_count": 1}}, "wanted": {"_count": 2, "them": {"_count": 1}, "to": {"_count": 1}}, "told": {"_count": 1, "Macnair": {"_count": 1}}, "been": {"_count": 9, "in": {"_count": 2}, "so": {"_count": 1}, "easy": {"_count": 1}, "what": {"_count": 2}, "really": {"_count": 1}, "me": {"_count": 1}, "great": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "covered": {"_count": 1, "both": {"_count": 1}}, "gone": {"_count": 1, "down": {"_count": 1}}, "shown": {"_count": 1, "confidence": {"_count": 1}}, "torn": {"_count": 1, "you": {"_count": 1}}, "lain": {"_count": 1, "down": {"_count": 1}}, "pounded": {"_count": 1, "the": {"_count": 1}}, "wound": {"_count": 1, "anyone": {"_count": 1}}, "just": {"_count": 2, "turned": {"_count": 1}, "looked": {"_count": 1}}, "known": {"_count": 1, "how": {"_count": 1}}, "recognized": {"_count": 1, "a": {"_count": 1}}}, "marchin": {"_count": 1, "up": {"_count": 1, "ter": {"_count": 1}}}, "Least": {"_count": 5, "yer": {"_count": 1, "not": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}, "popular": {"_count": 1, "headmaster": {"_count": 1}}, "loved": {"_count": 2, "always": {"_count": 1}, "now": {"_count": 1}}}, "cemented": {"_count": 1, "his": {"_count": 1, "jaws": {"_count": 1}}}, "abruptly": {"_count": 62, "as": {"_count": 5, "though": {"_count": 2}, "they": {"_count": 2}, "it": {"_count": 1}}, "": {"_count": 27, ".": {"_count": 27}}, "in": {"_count": 2, "the": {"_count": 1}, "Grimmauld": {"_count": 1}}, "and": {"_count": 6, "sped": {"_count": 1}, "looked": {"_count": 1}, "completely": {"_count": 2}, "walked": {"_count": 1}, "shockingly": {"_count": 1}}, "from": {"_count": 2, "Anglesey": {"_count": 1}, "Harry": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 4, "Harry": {"_count": 2}, "English": {"_count": 1}, "Hermione": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "she": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "her": {"_count": 1, "butterbeer": {"_count": 1}}, "when": {"_count": 3, "he": {"_count": 1}, "they": {"_count": 1}, "Harry": {"_count": 1}}, "Ive": {"_count": 1, "told": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 2}}, "the": {"_count": 1, "moment": {"_count": 1}}, "In": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "awake": {"_count": 1, "in": {"_count": 1}}}, "bone": {"_count": 18, "ter": {"_count": 1, "pick": {"_count": 1}}, "marrow": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 3}}, "needle": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 1, "Buckbeak": {"_count": 1}}, "naturally": {"_count": 1, "meant": {"_count": 1}}, "was": {"_count": 1, "visible": {"_count": 1}}, "crossed": {"_count": 1, "": {"_count": 1}}, "regrowth": {"_count": 1, "and": {"_count": 1}}, "crushing": {"_count": 1, "hug": {"_count": 1}}, "and": {"_count": 1, "buried": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "dry": {"_count": 1, "if": {"_count": 1}}}, "givin": {"_count": 4, "out": {"_count": 1, "signed": {"_count": 1}}, "them": {"_count": 1, "you": {"_count": 1}}, "it": {"_count": 1, "ter": {"_count": 1}}, "Harry": {"_count": 1, "detention": {"_count": 1}}}, "Furious": {"_count": 5, "Harry": {"_count": 2, "wrenched": {"_count": 1}, "threw": {"_count": 1}}, "with": {"_count": 1, "himself": {"_count": 1}}, "redfaced": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "my": {"_count": 1}}}, "jokin": {"_count": 3, "he": {"_count": 1, "said": {"_count": 1}}, "jokin": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "genially": {"_count": 9, "on": {"_count": 1, "the": {"_count": 1}}, "slapping": {"_count": 1, "his": {"_count": 1}}, "bemused": {"_count": 1, "": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "twiddling": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "chin": {"_count": 39, "": {"_count": 11, ".": {"_count": 11}}, "on": {"_count": 1, "her": {"_count": 1}}, "bumping": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 1, "blue": {"_count": 1}}, "upon": {"_count": 1, "them": {"_count": 1}}, "unconcernedly": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 6, "smiling": {"_count": 1}, "severe": {"_count": 1}, "long": {"_count": 1}, "he": {"_count": 1}, "from": {"_count": 1}, "forced": {"_count": 1}}, "panicstricken": {"_count": 1, "she": {"_count": 1}}, "however": {"_count": 1, "she": {"_count": 1}}, "standing": {"_count": 1, "before": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "just": {"_count": 1}}, "looking": {"_count": 1, "owlishly": {"_count": 1}}, "drooping": {"_count": 1, "onto": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "dond": {"_count": 1, "gib": {"_count": 1}}, "but": {"_count": 2, "weve": {"_count": 1}, "you": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "thoughtfully": {"_count": 1, "with": {"_count": 1}}}, "Treacle": {"_count": 2, "toffee": {"_count": 1, "Ron": {"_count": 1}}, "tart": {"_count": 1, "Hermione": {"_count": 1}}}, "growin": {"_count": 1, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "feeding": {"_count": 14, "them": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}, "Miss": {"_count": 1, "Weasley": {"_count": 1}}, "off": {"_count": 1, "their": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}, "Wormtail": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "but": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "Buckbeak": {"_count": 2, "he": {"_count": 1}, "in": {"_count": 1}}, "Bill": {"_count": 1, "bits": {"_count": 1}}, "was": {"_count": 1, "thrown": {"_count": 1}}}, "flowery": {"_count": 12, "pink": {"_count": 3, "umbrella": {"_count": 3}}, "nightgown": {"_count": 1, "": {"_count": 1}}, "bag": {"_count": 1, "and": {"_count": 1}}, "curtains": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}, "smell": {"_count": 1, "he": {"_count": 1}}, "apron": {"_count": 2, "and": {"_count": 1}, "positively": {"_count": 1}}, "umbrella": {"_count": 1, "and": {"_count": 1}}, "scent": {"_count": 1, "on": {"_count": 1}}}, "concealed": {"_count": 42, "inside": {"_count": 2, "it": {"_count": 2}}, "the": {"_count": 2, "fact": {"_count": 1}, "portrait": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "behind": {"_count": 4, "a": {"_count": 3}, "the": {"_count": 1}}, "door": {"_count": 1, "behind": {"_count": 1}}, "were": {"_count": 1, "gliding": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "by": {"_count": 1, "a": {"_count": 1}}, "shortcuts": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "eye": {"_count": 1, "staring": {"_count": 1}}, "face": {"_count": 1, "came": {"_count": 1}}, "staircase": {"_count": 2, "door": {"_count": 1}, "he": {"_count": 1}}, "himself": {"_count": 1, "he": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "Horcruxes": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "it": {"_count": 1}}, "Professor": {"_count": 1, "were": {"_count": 1}}, "ball": {"_count": 1, "as": {"_count": 1}}, "entrance": {"_count": 3, "to": {"_count": 2}, "and": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "magically": {"_count": 1}}, "printing": {"_count": 1, "press": {"_count": 1}}, "under": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "her": {"_count": 1, "loss": {"_count": 1}}, "a": {"_count": 1, "secret": {"_count": 1}}, "hole": {"_count": 1, "": {"_count": 1}}}, "deaf": {"_count": 12, "until": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "raised": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "his": {"_count": 1, "bad": {"_count": 1}}, "and": {"_count": 1, "havent": {"_count": 1}}, "ear": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "old": {"_count": 1, "couple": {"_count": 1}}, "to": {"_count": 1, "everything": {"_count": 1}}, "the": {"_count": 1, "whole": {"_count": 1}}}, "Engorgement": {"_count": 3, "Charm": {"_count": 3, "I": {"_count": 1}, "at": {"_count": 1}, "when": {"_count": 1}}}, "disapproval": {"_count": 11, "and": {"_count": 3, "amusement": {"_count": 1}, "looked": {"_count": 1}, "positively": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 2, "the": {"_count": 1}, "Mundungus": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "upon": {"_count": 1, "Harry": {"_count": 1}}, "both": {"_count": 1, "holding": {"_count": 1}}}, "amusement": {"_count": 12, "": {"_count": 5, ".": {"_count": 5}}, "in": {"_count": 1, "his": {"_count": 1}}, "more": {"_count": 1, "pronounced": {"_count": 1}}, "and": {"_count": 1, "anxiety": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "beside": {"_count": 1, "Dumbledore": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}}, "Met": {"_count": 3, "her": {"_count": 1, "jus": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "up": {"_count": 1, "with": {"_count": 1}}}, "hopin": {"_count": 1, "she": {"_count": 1, "might": {"_count": 1}}}, "occasionally": {"_count": 30, "but": {"_count": 1, "only": {"_count": 1}}, "saying": {"_count": 2, "Mmm": {"_count": 1}, "things": {"_count": 1}}, "coming": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "whimpering": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 2, "hidden": {"_count": 1}, "a": {"_count": 1}}, "checking": {"_count": 1, "his": {"_count": 1}}, "sending": {"_count": 2, "more": {"_count": 1}, "Justin": {"_count": 1}}, "and": {"_count": 1, "do": {"_count": 1}}, "blowing": {"_count": 1, "an": {"_count": 1}}, "eyeing": {"_count": 1, "the": {"_count": 1}}, "usually": {"_count": 1, "during": {"_count": 1}}, "catching": {"_count": 1, "each": {"_count": 1}}, "throwing": {"_count": 1, "pink": {"_count": 1}}, "said": {"_count": 2, "George": {"_count": 1}, "Dumbledore": {"_count": 1}}, "during": {"_count": 1, "Potions": {"_count": 1}}, "poking": {"_count": 1, "one": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "gaze": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "gave": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "pausing": {"_count": 2, "to": {"_count": 1}, "running": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}}, "suppressing": {"_count": 2, "a": {"_count": 2, "burp": {"_count": 1}, "smile": {"_count": 1}}}, "polishing": {"_count": 8, "the": {"_count": 3, "silver": {"_count": 1}, "gilded": {"_count": 1}, "sword": {"_count": 1}}, "it": {"_count": 2, "said": {"_count": 1}, "with": {"_count": 1}}, "I": {"_count": 1, "havent": {"_count": 1}}, "his": {"_count": 1, "Firebolt": {"_count": 1}}, "glasses": {"_count": 1, "behind": {"_count": 1}}}, "grease": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "but": {"_count": 1, "he": {"_count": 1}}, "marks": {"_count": 1, "all": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}}, "n": {"_count": 3, "Professor": {"_count": 1, "cant": {"_count": 1}}, "you": {"_count": 1, "did": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}}, "requested": {"_count": 5, "you": {"_count": 1, "particularly": {"_count": 1}}, "that": {"_count": 2, "they": {"_count": 1}, "Sirius": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}, "somebody": {"_count": 1, "from": {"_count": 1}}}, "Eight": {"_count": 4, "oclock": {"_count": 1, "sharp": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "or": {"_count": 1, "nine": {"_count": 1}}}, "states": {"_count": 6, "of": {"_count": 2, "deepest": {"_count": 1}, "shabbiness": {"_count": 1}}, "that": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 1}, "magic": {"_count": 1}}, "clearly": {"_count": 1, "that": {"_count": 1}}}, "wellyoudidbreakschoolrules": {"_count": 1, "sort": {"_count": 1, "of": {"_count": 1}}}, "shepherds": {"_count": 3, "pie": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}}, "swap": {"_count": 8, "anytime": {"_count": 1, "said": {"_count": 1}}, "any": {"_count": 1, "time": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Harry": {"_count": 1, "glanced": {"_count": 1}}, "their": {"_count": 2, "wands": {"_count": 2}}, "your": {"_count": 1, "daughter": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "hollowly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Answering": {"_count": 1, "Lockharts": {"_count": 1, "fan": {"_count": 1}}}, "secondfloor": {"_count": 1, "corridor": {"_count": 1, "to": {"_count": 1}}}, "scalawag": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Shining": {"_count": 2, "brightly": {"_count": 1, "on": {"_count": 1}}, "black": {"_count": 1, "ropes": {"_count": 1}}}, "countless": {"_count": 10, "framed": {"_count": 1, "photographs": {"_count": 1}}, "squashy": {"_count": 1, "armchairs": {"_count": 1}}, "times": {"_count": 1, "Why": {"_count": 1}}, "occasions": {"_count": 1, "for": {"_count": 1}}, "silvery": {"_count": 1, "crystal": {"_count": 1}}, "parents": {"_count": 1, "who": {"_count": 1}}, "Muggles": {"_count": 1, "and": {"_count": 1}}, "people": {"_count": 1, "to": {"_count": 1}}, "Hufflepuff": {"_count": 1, "cups": {"_count": 1}}, "souls": {"_count": 1, "who": {"_count": 1}}}, "Gladys": {"_count": 2, "Gudgeon": {"_count": 2, "bless": {"_count": 1}, "writes": {"_count": 1}}}, "Gudgeon": {"_count": 3, "bless": {"_count": 1, "her": {"_count": 1}}, "nearly": {"_count": 1, "lost": {"_count": 1}}, "writes": {"_count": 1, "weekly": {"_count": 1}}}, "bless": {"_count": 8, "her": {"_count": 2, "huge": {"_count": 1}, "is": {"_count": 1}}, "them": {"_count": 1, "he": {"_count": 1}}, "him": {"_count": 4, "I": {"_count": 1}, "": {"_count": 3}}, "em": {"_count": 1, "said": {"_count": 1}}}, "snailed": {"_count": 1, "by": {"_count": 1, "": {"_count": 1}}}, "Fames": {"_count": 1, "a": {"_count": 1, "fickle": {"_count": 1}}}, "fickle": {"_count": 1, "friend": {"_count": 1, "Harry": {"_count": 1}}}, "Celebrity": {"_count": 1, "is": {"_count": 1, "as": {"_count": 1}}}, "dance": {"_count": 42, "over": {"_count": 1, "the": {"_count": 1}}, "floor": {"_count": 21, "waltzing": {"_count": 1}, "": {"_count": 7}, "and": {"_count": 2}, "carefully": {"_count": 1}, "so": {"_count": 1}, "past": {"_count": 1}, "disappearing": {"_count": 1}, "as": {"_count": 1}, "hoist": {"_count": 1}, "the": {"_count": 1}, "glancing": {"_count": 1}, "first": {"_count": 1}, "where": {"_count": 1}, "Harry": {"_count": 1}}, "routine": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "Harrys": {"_count": 1}}, "in": {"_count": 1, "celebration": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "partners": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "added": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "with": {"_count": 2, "her": {"_count": 2}}, "by": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "unbalancing": {"_count": 1, "him": {"_count": 1}}, "forever": {"_count": 1, "pretty": {"_count": 1}}, "anymore": {"_count": 1, "she": {"_count": 1}}}, "thousandth": {"_count": 1, "envelope": {"_count": 1, "writing": {"_count": 1}}}, "Veronica": {"_count": 2, "Smethleys": {"_count": 2, "address": {"_count": 1}, "street": {"_count": 1}}}, "Smethleys": {"_count": 2, "address": {"_count": 1, "": {"_count": 1}}, "street": {"_count": 1, "": {"_count": 1}}}, "prattle": {"_count": 1, "about": {"_count": 1, "his": {"_count": 1}}}, "fans": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "theyre": {"_count": 1, "just": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "will": {"_count": 1, "find": {"_count": 1}}}, "chill": {"_count": 25, "the": {"_count": 1, "bone": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "air": {"_count": 1, "was": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "breeze": {"_count": 1, "swept": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "night": {"_count": 1, "air": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "emanating": {"_count": 1, "from": {"_count": 1}}, "that": {"_count": 4, "had": {"_count": 3}, "was": {"_count": 1}}, "emptiness": {"_count": 1, "that": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "wind": {"_count": 1, "swept": {"_count": 1}}, "a": {"_count": 1, "descending": {"_count": 1}}, "water": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "settled": {"_count": 1, "over": {"_count": 1}}}, "marrow": {"_count": 1, "a": {"_count": 1, "voice": {"_count": 1}}}, "breathtaking": {"_count": 2, "icecold": {"_count": 1, "venom": {"_count": 1}}, "beauty": {"_count": 1, "that": {"_count": 1}}}, "tear": {"_count": 20, "you": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "was": {"_count": 1, "running": {"_count": 1}}, "glistening": {"_count": 1, "in": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "their": {"_count": 1}}, "flesh": {"_count": 1, "from": {"_count": 1}}, "clinging": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "for": {"_count": 1}}, "trickling": {"_count": 1, "down": {"_count": 1}}, "his": {"_count": 2, "horrified": {"_count": 1}, "soul": {"_count": 1}}, "tracks": {"_count": 3, "glittering": {"_count": 1}, "still": {"_count": 1}, "streaking": {"_count": 1}}, "splashed": {"_count": 1, "onto": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}}, "blot": {"_count": 4, "appeared": {"_count": 1, "on": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "screaming": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "bestseller": {"_count": 2, "list": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Broke": {"_count": 2, "all": {"_count": 1, "records": {"_count": 1}}, "your": {"_count": 1, "way": {"_count": 1}}}, "records": {"_count": 9, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "against": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 3, "those": {"_count": 1}, "other": {"_count": 1}, "old": {"_count": 1}}, "and": {"_count": 1, "questioning": {"_count": 1}}, "even": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "drowsy": {"_count": 7, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "when": {"_count": 1, "what": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "silence": {"_count": 1, "lay": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "Scott": {"_count": 2, "look": {"_count": 1, "at": {"_count": 1}}, "he": {"_count": 1, "can": {"_count": 1}}}, "nursing": {"_count": 5, "his": {"_count": 2, "right": {"_count": 1}, "toe": {"_count": 1}}, "me": {"_count": 1, "has": {"_count": 1}}, "several": {"_count": 1, "burnt": {"_count": 1}}, "small": {"_count": 1, "injuries": {"_count": 1}}}, "muscles": {"_count": 9, "have": {"_count": 1, "all": {"_count": 1}}, "threateningly": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "no": {"_count": 1}, "screaming": {"_count": 1}}, "and": {"_count": 1, "smoothing": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "": {"_count": 1, "?": {"_count": 1}}, "worked": {"_count": 1, "as": {"_count": 1}}}, "Fourteen": {"_count": 4, "times": {"_count": 1, "he": {"_count": 1}}, "inches": {"_count": 1, "willow": {"_count": 1}}, "years": {"_count": 1, "Snape": {"_count": 1}}, "of": {"_count": 1, "us": {"_count": 1}}}, "buff": {"_count": 1, "up": {"_count": 1, "that": {"_count": 1}}}, "satisfied": {"_count": 35, "": {"_count": 5, ".": {"_count": 5}}, "smile": {"_count": 4, "": {"_count": 3}, "on": {"_count": 1}}, "tone": {"_count": 1, "": {"_count": 1}}, "perhaps": {"_count": 1, "Crabbe": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "youre": {"_count": 1, "Potter": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "the": {"_count": 1, "hitch": {"_count": 1}}, "about": {"_count": 1, "something": {"_count": 1}}, "yellowtoothed": {"_count": 1, "smile": {"_count": 1}}, "expression": {"_count": 4, "on": {"_count": 2}, "": {"_count": 2}}, "with": {"_count": 4, "Mr": {"_count": 1}, "this": {"_count": 1}, "the": {"_count": 2}}, "voice": {"_count": 3, "": {"_count": 3}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "way": {"_count": 1, "and": {"_count": 1}}, "look": {"_count": 1, "on": {"_count": 1}}, "smirk": {"_count": 1, "as": {"_count": 1}}, "once": {"_count": 1, "a": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}}, "Services": {"_count": 6, "to": {"_count": 4, "the": {"_count": 4}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}}, "slime": {"_count": 8, "off": {"_count": 3, "": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}}, "Malfoy": {"_count": 1, "buy": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 2, "white": {"_count": 1}, "in": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}}, "Keeping": {"_count": 8, "his": {"_count": 5, "voice": {"_count": 1}, "face": {"_count": 1}, "hand": {"_count": 2}, "bleeding": {"_count": 1}}, "an": {"_count": 2, "ear": {"_count": 1}, "eye": {"_count": 1}}, "skills": {"_count": 1, "which": {"_count": 1}}}, "DEATHDAY": {"_count": 1, "PARTY": {"_count": 1, "October": {"_count": 1}}}, "PARTY": {"_count": 1, "October": {"_count": 1, "arrived": {"_count": 1}}}, "October": {"_count": 18, "arrived": {"_count": 1, "spreading": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 2}}, "however": {"_count": 1, "Harry": {"_count": 1}}, "thinking": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 3, "continuing": {"_count": 1}, "the": {"_count": 1}, "remaining": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "extinguished": {"_count": 1, "itself": {"_count": 1}}, "that": {"_count": 1, "Potter": {"_count": 1}}, "came": {"_count": 1, "their": {"_count": 1}}, "1": {"_count": 1, "981": {"_count": 1}}}, "spate": {"_count": 1, "of": {"_count": 1, "colds": {"_count": 1}}}, "colds": {"_count": 1, "among": {"_count": 1, "the": {"_count": 1}}}, "Pepperup": {"_count": 2, "Potion": {"_count": 2, "worked": {"_count": 1}, "then": {"_count": 1}}}, "Potion": {"_count": 62, "worked": {"_count": 1, "instantly": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "!": {"_count": 1}, "?": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Ron": {"_count": 1, "explained": {"_count": 1}}, "and": {"_count": 4, "try": {"_count": 1}, "while": {"_count": 1}, "some": {"_count": 1}, "was": {"_count": 1}}, "simmering": {"_count": 1, "away": {"_count": 1}}, "later": {"_count": 1, "could": {"_count": 1}}, "again": {"_count": 1, "Ron": {"_count": 1}}, "Harry": {"_count": 3, "slipped": {"_count": 1}, "said": {"_count": 1}, "transforming": {"_count": 1}}, "when": {"_count": 1, "an": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "was": {"_count": 3, "discovered": {"_count": 1}, "wearing": {"_count": 1}, "greatly": {"_count": 1}}, "might": {"_count": 1, "do": {"_count": 1}}, "shouldnt": {"_count": 1, "it": {"_count": 1}}, "dung": {"_count": 1, "brains": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "secret": {"_count": 1}}, "had": {"_count": 1, "given": {"_count": 1}}, "ingredients": {"_count": 1, "have": {"_count": 1}}, "then": {"_count": 1, "went": {"_count": 1}}, "shes": {"_count": 1, "quite": {"_count": 1}}, "so": {"_count": 1, "powerful": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 1}, "Hogwarts": {"_count": 1}}, "you": {"_count": 1, "possess": {"_count": 1}}, "containing": {"_count": 2, "one": {"_count": 2}}, "until": {"_count": 1, "the": {"_count": 1}}, "beforehand": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "Snapes": {"_count": 1}}, "every": {"_count": 1, "hour": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "see": {"_count": 1, "Should": {"_count": 1}}, "without": {"_count": 1, "considerable": {"_count": 1}}, "sir": {"_count": 1, "she": {"_count": 1}}, "Making": {"_count": 4, "": {"_count": 2}, "and": {"_count": 1}, "into": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "Slughorn": {"_count": 1, "showed": {"_count": 1}}, "into": {"_count": 1, "each": {"_count": 1}}, "is": {"_count": 1, "designed": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "Puking": {"_count": 1, "Pastilles": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}}, "Raindrops": {"_count": 1, "the": {"_count": 1, "size": {"_count": 1}}}, "streams": {"_count": 4, "and": {"_count": 1, "Hagrids": {"_count": 1}}, "of": {"_count": 3, "bubbles": {"_count": 1}, "headlights": {"_count": 1}, "silver": {"_count": 1}}}, "sessions": {"_count": 12, "however": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 1, "getting": {"_count": 1}}, "three": {"_count": 1, "evenings": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "he": {"_count": 1}}, "Id": {"_count": 1, "never": {"_count": 1}}, "with": {"_count": 1, "Snape": {"_count": 1}}, "why": {"_count": 1, "we": {"_count": 1}}, "which": {"_count": 1, "would": {"_count": 1}}, "in": {"_count": 2, "Hogsmeade": {"_count": 2}}}, "dampened": {"_count": 1, "which": {"_count": 1, "was": {"_count": 1}}}, "returning": {"_count": 38, "to": {"_count": 27, "Gryffindor": {"_count": 1}, "the": {"_count": 9}, "wherever": {"_count": 1}, "his": {"_count": 3}, "Hogwarts": {"_count": 5}, "Professor": {"_count": 1}, "Privet": {"_count": 1}, "her": {"_count": 3}, "this": {"_count": 1}, "their": {"_count": 1}, "Grimmauld": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "its": {"_count": 1}}, "Cedrics": {"_count": 1, "body": {"_count": 1}}, "the": {"_count": 1, "murtlap": {"_count": 1}}, "and": {"_count": 1, "you": {"_count": 1}}, "yet": {"_count": 1, "then": {"_count": 1}}, "here": {"_count": 1, "than": {"_count": 1}}, "you": {"_count": 1, "may": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}}, "Ones": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "our": {"_count": 1}}}, "blurs": {"_count": 4, "shooting": {"_count": 1, "through": {"_count": 1}}, "bearing": {"_count": 1, "down": {"_count": 1}}, "swept": {"_count": 1, "onto": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "missiles": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "squelched": {"_count": 2, "along": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "preoccupied": {"_count": 9, "as": {"_count": 1, "he": {"_count": 1}}, "air": {"_count": 1, "indeed": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "Harry": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "how": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}}, "morosely": {"_count": 4, "out": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fulfill": {"_count": 9, "their": {"_count": 1, "requirements": {"_count": 1}}, "requirements": {"_count": 1, "In": {"_count": 1}}, "our": {"_count": 1, "requirements": {"_count": 1}}, "even": {"_count": 1, "Freds": {"_count": 1}}, "neither": {"_count": 1, "requirement": {"_count": 1}}, "my": {"_count": 1, "duty": {"_count": 1}}, "the": {"_count": 1, "Dark": {"_count": 1}}, "her": {"_count": 1, "prefects": {"_count": 1}}, "a": {"_count": 1, "lifetimes": {"_count": 1}}}, "requirements": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "In": {"_count": 1, "spite": {"_count": 1}}}, "plumed": {"_count": 4, "hat": {"_count": 3, "on": {"_count": 1}, "and": {"_count": 2}}, "golden": {"_count": 1, "head": {"_count": 1}}}, "tunic": {"_count": 2, "with": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "severed": {"_count": 12, "": {"_count": 1, ".": {"_count": 1}}, "hand": {"_count": 1, "which": {"_count": 1}}, "neck": {"_count": 3, "": {"_count": 2}, "seemed": {"_count": 1}}, "it": {"_count": 1, "moments": {"_count": 1}}, "trolls": {"_count": 1, "leg": {"_count": 1}}, "head": {"_count": 1, "leaking": {"_count": 1}}, "boars": {"_count": 1, "head": {"_count": 1}}, "sprouts": {"_count": 1, "a": {"_count": 1}}, "ropes": {"_count": 1, "fell": {"_count": 1}}, "in": {"_count": 1, "two": {"_count": 1}}}, "torrential": {"_count": 2, "rain": {"_count": 2, "outside": {"_count": 1}, "": {"_count": 1}}}, "troubled": {"_count": 17, "young": {"_count": 1, "Potter": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "soul": {"_count": 1, "within": {"_count": 1}}, "mind": {"_count": 1, "as": {"_count": 1}}, "nights": {"_count": 1, "sleep": {"_count": 1}}, "times": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "one": {"_count": 1, "who": {"_count": 1}}, "to": {"_count": 1, "discover": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "now": {"_count": 1, "He": {"_count": 1}}, "adolescence": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "as": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}}, "folding": {"_count": 8, "a": {"_count": 1, "transparent": {"_count": 1}}, "up": {"_count": 5, "the": {"_count": 5}}, "his": {"_count": 1, "arms": {"_count": 1}}, "under": {"_count": 1, "sheer": {"_count": 1}}}, "tucking": {"_count": 13, "it": {"_count": 3, "inside": {"_count": 1}, "away": {"_count": 1}, "back": {"_count": 1}}, "something": {"_count": 1, "down": {"_count": 1}}, "the": {"_count": 4, "TimeTurner": {"_count": 1}, "tickets": {"_count": 1}, "letter": {"_count": 1}, "small": {"_count": 1}}, "into": {"_count": 3, "their": {"_count": 1}, "a": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "thumbs": {"_count": 1}}}, "doublet": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "with": {"_count": 1}}}, "elegant": {"_count": 4, "hand": {"_count": 1, "a": {"_count": 1}}, "knot": {"_count": 1, "at": {"_count": 1}}, "bun": {"_count": 1, "now": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}}, "importance": {"_count": 16, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 1}, "?": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "for": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "you": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 4, "O": {"_count": 2}, "their": {"_count": 1}, "some": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "apply": {"_count": 7, "but": {"_count": 1, "apparently": {"_count": 1}}, "for": {"_count": 4, "the": {"_count": 2}, "and": {"_count": 1}, "a": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}, "Occlumency": {"_count": 1, "But": {"_count": 1}}}, "apparently": {"_count": 137, "I": {"_count": 1, "\u2018dont": {"_count": 1}}, "fighting": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 4, "disgusted": {"_count": 1}, "appalled": {"_count": 1}, "scared": {"_count": 1}, "horrible": {"_count": 1}}, "very": {"_count": 3, "interested": {"_count": 1}, "pleased": {"_count": 2}}, "taken": {"_count": 2, "the": {"_count": 1}, "aback": {"_count": 1}}, "alone": {"_count": 2, "": {"_count": 2}}, "did": {"_count": 2, "Lupin": {"_count": 1}, "Fudge": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "healthy": {"_count": 1, "people": {"_count": 1}}, "torn": {"_count": 1, "between": {"_count": 1}}, "with": {"_count": 2, "great": {"_count": 1}, "no": {"_count": 1}}, "solid": {"_count": 1, "barrier": {"_count": 1}}, "keen": {"_count": 1, "to": {"_count": 1}}, "thinking": {"_count": 2, "hard": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "memory": {"_count": 1}}, "unsure": {"_count": 1, "about": {"_count": 1}}, "impressed": {"_count": 1, "": {"_count": 1}}, "lost": {"_count": 2, "for": {"_count": 1}, "in": {"_count": 1}}, "checking": {"_count": 1, "for": {"_count": 1}}, "their": {"_count": 1, "desire": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "oblivious": {"_count": 1, "to": {"_count": 1}}, "unaware": {"_count": 4, "that": {"_count": 2}, "of": {"_count": 2}}, "convinced": {"_count": 3, "that": {"_count": 2}, "it": {"_count": 1}}, "shortly": {"_count": 1, "afterward": {"_count": 1}}, "fast": {"_count": 1, "asleep": {"_count": 1}}, "repelled": {"_count": 1, "by": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "dazed": {"_count": 1, "and": {"_count": 1}}, "Fudge": {"_count": 1, "has": {"_count": 1}}, "he": {"_count": 4, "was": {"_count": 2}, "had": {"_count": 1}, "and": {"_count": 1}}, "under": {"_count": 3, "the": {"_count": 3}}, "shell": {"_count": 1, "only": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "awaiting": {"_count": 1, "their": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}, "foretold": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 2, "the": {"_count": 1}, "Hermione": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "unnoticed": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 4, "himself": {"_count": 1}, "savor": {"_count": 1}, "give": {"_count": 1}, "see": {"_count": 1}}, "sleeping": {"_count": 1, "so": {"_count": 1}}, "empty": {"_count": 3, "frame": {"_count": 1}, "darkness": {"_count": 1}, "cellar": {"_count": 1}}, "delighted": {"_count": 1, "that": {"_count": 1}}, "Stan": {"_count": 1, "did": {"_count": 1}}, "unconsciously": {"_count": 2, "on": {"_count": 1}, "at": {"_count": 1}}, "indifferent": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 2, "quite": {"_count": 1}, "all": {"_count": 1}}, "has": {"_count": 1, "still": {"_count": 1}}, "still": {"_count": 1, "lost": {"_count": 1}}, "terrified": {"_count": 1, "at": {"_count": 1}}, "deeply": {"_count": 1, "impressed": {"_count": 1}}, "immensely": {"_count": 1, "pleased": {"_count": 1}}, "poised": {"_count": 1, "to": {"_count": 1}}, "transfixed": {"_count": 1, "with": {"_count": 1}}, "intent": {"_count": 1, "on": {"_count": 1}}, "losing": {"_count": 1, "interest": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "entranced": {"_count": 1, "at": {"_count": 1}}, "satisfied": {"_count": 1, "that": {"_count": 1}}, "beside": {"_count": 1, "himself": {"_count": 1}}, "shouted": {"_count": 1, "at": {"_count": 1}}, "not": {"_count": 2, "taking": {"_count": 1}, "Ron": {"_count": 1}}, "rooted": {"_count": 1, "to": {"_count": 1}}, "quite": {"_count": 1, "at": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Borgin": {"_count": 1, "thought": {"_count": 1}}, "but": {"_count": 1, "when": {"_count": 1}}, "they": {"_count": 3, "had": {"_count": 1}, "were": {"_count": 1}, "did": {"_count": 1}}, "found": {"_count": 1, "Rons": {"_count": 1}}, "coming": {"_count": 1, "back": {"_count": 1}}, "unable": {"_count": 2, "to": {"_count": 2}}, "shared": {"_count": 1, "by": {"_count": 1}}, "friendless": {"_count": 1, "": {"_count": 1}}, "blank": {"_count": 1, "parchment": {"_count": 1}}, "forgetting": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "suppressed": {"_count": 1, "for": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "forgotten": {"_count": 1, "he": {"_count": 1}}, "fading": {"_count": 1, "and": {"_count": 1}}, "asleep": {"_count": 2, "in": {"_count": 1}, "beneath": {"_count": 1}}, "unconscious": {"_count": 1, "human": {"_count": 1}}, "fearful": {"_count": 1, "that": {"_count": 1}}, "insignificant": {"_count": 1, "or": {"_count": 1}}, "painful": {"_count": 1, "internal": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "worthless": {"_count": 1, "though": {"_count": 1}}, "happy": {"_count": 1, "family": {"_count": 1}}, "deserted": {"_count": 1, "glade": {"_count": 1}}, "without": {"_count": 2, "asking": {"_count": 1}, "trace": {"_count": 1}}, "keeping": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "nonplussed": {"_count": 1}}, "shes": {"_count": 1, "getting": {"_count": 1}}, "in": {"_count": 1, "awful": {"_count": 1}}, "semiconscious": {"_count": 1, "": {"_count": 1}}, "dead": {"_count": 1, "in": {"_count": 1}}}, "\u2018dont": {"_count": 1, "fulfill": {"_count": 1, "requirements": {"_count": 1}}}, "airy": {"_count": 7, "tone": {"_count": 1, "there": {"_count": 1}}, "overly": {"_count": 1, "friendly": {"_count": 1}}, "hand": {"_count": 3, "the": {"_count": 1}, "": {"_count": 2}}, "forkful": {"_count": 1, "of": {"_count": 1}}, "light": {"_count": 1, "cottage": {"_count": 1}}}, "tone": {"_count": 83, "there": {"_count": 1, "was": {"_count": 1}}, "So": {"_count": 1, "whats": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "of": {"_count": 16, "someone": {"_count": 1}, "mock": {"_count": 1}, "unmistakable": {"_count": 1}, "his": {"_count": 2}, "every": {"_count": 1}, "voice": {"_count": 4}, "the": {"_count": 1}, "it": {"_count": 1}, "revulsion": {"_count": 1}, "delicacy": {"_count": 1}, "surprise": {"_count": 2}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "boy": {"_count": 1, "she": {"_count": 1}}, "You": {"_count": 1, "look": {"_count": 1}}, "made": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 10, "deceived": {"_count": 1}, "suggested": {"_count": 3}, "told": {"_count": 1}, "threatened": {"_count": 1}, "Malfoy": {"_count": 1}, "it": {"_count": 1}, "made": {"_count": 1}, "she": {"_count": 1}}, "and": {"_count": 2, "his": {"_count": 1}, "without": {"_count": 1}}, "as": {"_count": 2, "Cedric": {"_count": 1}, "they": {"_count": 1}}, "pulling": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 2, "might": {"_count": 1}, "had": {"_count": 1}}, "icy": {"_count": 1, "": {"_count": 1}}, "Dyou": {"_count": 1, "think": {"_count": 1}}, "Nearly": {"_count": 1, "sixteen": {"_count": 1}}, "indifferent": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 8, "cold": {"_count": 1}, "casual": {"_count": 1}, "not": {"_count": 1}, "musing": {"_count": 1}, "conversational": {"_count": 1}, "sardonic": {"_count": 1}, "light": {"_count": 1}, "unbearably": {"_count": 1}}, "All": {"_count": 1, "right": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "Now": {"_count": 1, "I": {"_count": 1}}, "too": {"_count": 1, "was": {"_count": 1}}, "making": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "careful": {"_count": 1}}, "began": {"_count": 1, "Aunt": {"_count": 1}}, "indicated": {"_count": 1, "that": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "displeases": {"_count": 1, "me": {"_count": 1}}, "somewhere": {"_count": 1, "between": {"_count": 1}}, "dripped": {"_count": 1, "sarcasm": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "bitterness": {"_count": 7, "on": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "Siriuss": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "dislike": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fortyfive": {"_count": 3, "times": {"_count": 1, "in": {"_count": 1}}, "minutes": {"_count": 1, "until": {"_count": 1}}, "points": {"_count": 1, "": {"_count": 1}}}, "blunt": {"_count": 5, "axe": {"_count": 2, "would": {"_count": 1}, "said": {"_count": 1}}, "head": {"_count": 1, "was": {"_count": 1}}, "knife": {"_count": 1, "but": {"_count": 1}}, "features": {"_count": 1, "sliding": {"_count": 1}}}, "axe": {"_count": 8, "would": {"_count": 1, "qualify": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "ready": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "Nearly": {"_count": 1}}}, "qualify": {"_count": 3, "you": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 2, "Defense": {"_count": 1}, "government": {"_count": 1}}}, "Hunt": {"_count": 6, "": {"_count": 3, "?": {"_count": 2}, "!": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "had": {"_count": 2, "just": {"_count": 1}, "passed": {"_count": 1}}}, "wishes": {"_count": 17, "more": {"_count": 1, "than": {"_count": 1}}, "Sir": {"_count": 1, "Patrick": {"_count": 1}}, "he": {"_count": 3, "hadnt": {"_count": 1}, "could": {"_count": 1}, "couldve": {"_count": 1}}, "Yours": {"_count": 1, "sincerely": {"_count": 1}}, "before": {"_count": 1, "turning": {"_count": 1}}, "you": {"_count": 2, "a": {"_count": 2}}, "me": {"_count": 2, "to": {"_count": 2}}, "varied": {"_count": 1, "with": {"_count": 1}}, "none": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "to": {"_count": 2, "dispose": {"_count": 1}, "visit": {"_count": 1}}}, "ridicule": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "slander": {"_count": 1}}}, "huntsmen": {"_count": 1, "whose": {"_count": 1, "heads": {"_count": 1}}}, "appreciate": {"_count": 19, "that": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 4, "hippogriffs": {"_count": 1}, "magnitude": {"_count": 1}, "difficulty": {"_count": 1}, "way": {"_count": 1}}, "what": {"_count": 2, "the": {"_count": 1}, "had": {"_count": 1}}, "being": {"_count": 2, "forced": {"_count": 1}, "made": {"_count": 1}}, "dimly": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 1, "vote": {"_count": 1}}, "how": {"_count": 2, "hard": {"_count": 1}, "difficult": {"_count": 1}}, "you": {"_count": 2, "telling": {"_count": 1}, "more": {"_count": 1}}, "it": {"_count": 2, "for": {"_count": 1}, "His": {"_count": 1}}, "this": {"_count": 1, "treatment": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "participate": {"_count": 2, "in": {"_count": 1, "hunt": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "activities": {"_count": 4, "such": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "Horseback": {"_count": 1, "Head": {"_count": 1, "Juggling": {"_count": 1}}}, "Juggling": {"_count": 1, "and": {"_count": 1, "Head": {"_count": 1}}}, "Polo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "regret": {"_count": 31, "therefore": {"_count": 1, "that": {"_count": 1}}, "telling": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 7, "now": {"_count": 1}, "I": {"_count": 1}, "we": {"_count": 2}, "she": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 1}}, "it": {"_count": 4, "if": {"_count": 1}, "": {"_count": 1}, "either": {"_count": 1}, "said": {"_count": 1}}, "to": {"_count": 4, "say": {"_count": 2}, "inform": {"_count": 2}}, "now": {"_count": 1, "very": {"_count": 1}}, "not": {"_count": 1, "finishing": {"_count": 1}}, "his": {"_count": 4, "expulsion": {"_count": 1}, "choice": {"_count": 1}, "loss": {"_count": 1}, "appearance": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "of": {"_count": 1}}, "your": {"_count": 1, "attitude": {"_count": 1}}, "there": {"_count": 1, "somewhere": {"_count": 1}}, "what": {"_count": 1, "must": {"_count": 1}}}, "Patrick": {"_count": 5, "Delaney": {"_count": 1, "Podmore": {"_count": 1}}, "how": {"_count": 1, "very": {"_count": 1}}, "said": {"_count": 1, "Nick": {"_count": 1}}, "spotting": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "Delaney": {"_count": 1, "Podmore": {"_count": 1, "": {"_count": 1}}}, "Podmore": {"_count": 13, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "a": {"_count": 1, "squarejawed": {"_count": 1}}, "were": {"_count": 1, "examining": {"_count": 1}}, "hasnt": {"_count": 1, "had": {"_count": 1}}, "blimey": {"_count": 1, "he": {"_count": 1}}, "38": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 2, "arrested": {"_count": 1}, "trying": {"_count": 1}}, "who": {"_count": 2, "refused": {"_count": 1}, "is": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "Fuming": {"_count": 4, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 2, "dragged": {"_count": 1}, "descended": {"_count": 1}}}, "sinew": {"_count": 2, "holding": {"_count": 1, "my": {"_count": 1}}, "call": {"_count": 1, "upon": {"_count": 1}}}, "beheaded": {"_count": 1, "but": {"_count": 1, "oh": {"_count": 1}}}, "Properly": {"_count": 1, "DecapitatedPodmore": {"_count": 1, "": {"_count": 1}}}, "DecapitatedPodmore": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "calmer": {"_count": 4, "tone": {"_count": 1, "So": {"_count": 1}}, "than": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "somehow": {"_count": 1, "now": {"_count": 1}}}, "Sly": {"_count": 1, "The": {"_count": 1, "rest": {"_count": 1}}}, "mewling": {"_count": 2, "from": {"_count": 1, "somewhere": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}}, "skeletal": {"_count": 10, "gray": {"_count": 2, "cat": {"_count": 2}}, "green": {"_count": 1, "tinged": {"_count": 1}}, "look": {"_count": 1, "about": {"_count": 1}}, "creatures": {"_count": 1, "standing": {"_count": 1}}, "body": {"_count": 1, "of": {"_count": 1}}, "black": {"_count": 1, "winged": {"_count": 1}}, "thestral": {"_count": 1, "looked": {"_count": 1}}, "figure": {"_count": 1, "was": {"_count": 1}}, "wizard": {"_count": 1, "before": {"_count": 1}}}, "deputy": {"_count": 3, "in": {"_count": 1, "his": {"_count": 1}}, "who": {"_count": 1, "is": {"_count": 1}}, "headmistress": {"_count": 1, "": {"_count": 1}}}, "flu": {"_count": 3, "and": {"_count": 1, "some": {"_count": 1}}, "he": {"_count": 1, "also": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "plastered": {"_count": 9, "frog": {"_count": 1, "brains": {"_count": 1}}, "flat": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 2, "crimson": {"_count": 1}, "beaming": {"_count": 1}}, "in": {"_count": 1, "beaming": {"_count": 1}}, "the": {"_count": 1, "walls": {"_count": 1}}, "to": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "over": {"_count": 1, "many": {"_count": 1}}}, "backing": {"_count": 19, "away": {"_count": 15, "from": {"_count": 4}, "As": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "trying": {"_count": 1}, "with": {"_count": 1}, "so": {"_count": 1}, "several": {"_count": 1}, "as": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "slowly": {"_count": 1, "into": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}}, "accusing": {"_count": 10, "stare": {"_count": 1, "of": {"_count": 1}}, "me": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 2, "two": {"_count": 1}, "head": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}, "you": {"_count": 1, "laddie": {"_count": 1}}, "Wormtail": {"_count": 1, "of": {"_count": 1}}, "respectable": {"_count": 1, "and": {"_count": 1}}, "stares": {"_count": 1, "": {"_count": 1}}}, "Drawn": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "connect": {"_count": 4, "him": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 1, "house": {"_count": 1}}, "their": {"_count": 1, "homes": {"_count": 1}}}, "breaker": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "Gringotts": {"_count": 1}}}, "scarf": {"_count": 14, "bound": {"_count": 1, "around": {"_count": 1}}, "didnt": {"_count": 1, "help": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "tied": {"_count": 1, "around": {"_count": 1}}, "before": {"_count": 1, "returning": {"_count": 1}}, "sank": {"_count": 1, "into": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "tore": {"_count": 1}}, "aside": {"_count": 1, "onto": {"_count": 1}}, "gloves": {"_count": 1, "and": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}}, "Filth": {"_count": 4, "": {"_count": 4, "!": {"_count": 2}, ".": {"_count": 2}}}, "jowls": {"_count": 7, "aquiver": {"_count": 4, "his": {"_count": 1}, "again": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "quivering": {"_count": 1, "unpleasantly": {"_count": 1}}, "were": {"_count": 1, "aquiver": {"_count": 1}}, "wobbled": {"_count": 1, "with": {"_count": 1}}}, "aquiver": {"_count": 6, "his": {"_count": 1, "eyes": {"_count": 1}}, "and": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "alarmingly": {"_count": 9, "as": {"_count": 1, "he": {"_count": 1}}, "large": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "overtaking": {"_count": 1, "a": {"_count": 1}}, "fast": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "often": {"_count": 1, "Dumbledore": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}}, "puddle": {"_count": 4, "that": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 2, "water": {"_count": 1}, "light": {"_count": 1}}, "yielded": {"_count": 1, "some": {"_count": 1}}}, "dripped": {"_count": 5, "from": {"_count": 1, "Harrys": {"_count": 1}}, "down": {"_count": 1, "into": {"_count": 1}}, "gently": {"_count": 1, "onto": {"_count": 1}}, "sarcasm": {"_count": 1, "": {"_count": 1}}, "dittany": {"_count": 1, "through": {"_count": 1}}}, "Mess": {"_count": 5, "and": {"_count": 1, "muck": {"_count": 1}}, "Remover": {"_count": 4, "but": {"_count": 1}, "No": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}}, "muck": {"_count": 7, "everywhere": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "slime": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "Dirk": {"_count": 1, "": {"_count": 1}}}, "doubling": {"_count": 3, "the": {"_count": 1, "number": {"_count": 1}}, "back": {"_count": 2, "": {"_count": 1}, "after": {"_count": 1}}}, "footprints": {"_count": 8, "on": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "Rons": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "behind": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}}, "avoided": {"_count": 27, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 2, "so": {"_count": 1}, "but": {"_count": 1}}, "detention": {"_count": 1, "": {"_count": 1}}, "mentioning": {"_count": 1, "Riddles": {"_count": 1}}, "her": {"_count": 2, "eye": {"_count": 1}, "gaze": {"_count": 1}}, "Blacks": {"_count": 1, "eyes": {"_count": 1}}, "saying": {"_count": 1, "Voldemorts": {"_count": 1}}, "making": {"_count": 1, "eye": {"_count": 1}}, "looking": {"_count": 2, "at": {"_count": 2}}, "Rons": {"_count": 2, "eyes": {"_count": 1}, "and": {"_count": 1}}, "where": {"_count": 1, "small": {"_count": 1}}, "his": {"_count": 3, "eyes": {"_count": 1}, "gaze": {"_count": 1}, "yellowish": {"_count": 1}}, "being": {"_count": 2, "in": {"_count": 1}, "questioned": {"_count": 1}}, "going": {"_count": 1, "near": {"_count": 1}}, "falling": {"_count": 1, "by": {"_count": 1}}, "a": {"_count": 1, "fail": {"_count": 1}}, "Hagrids": {"_count": 1, "eye": {"_count": 1}}, "detection": {"_count": 1, "by": {"_count": 1}}, "eye": {"_count": 1, "contact": {"_count": 1}}, "them": {"_count": 1, "only": {"_count": 1}}}, "windowless": {"_count": 6, "lit": {"_count": 1, "by": {"_count": 1}}, "corridor": {"_count": 2, "his": {"_count": 1}, "ending": {"_count": 1}}, "passage": {"_count": 2, "with": {"_count": 1}, "was": {"_count": 1}}, "walls": {"_count": 1, "which": {"_count": 1}}}, "Wooden": {"_count": 1, "filing": {"_count": 1, "cabinets": {"_count": 1}}}, "cabinets": {"_count": 10, "stood": {"_count": 1, "around": {"_count": 1}}, "marked": {"_count": 1, "Confiscated": {"_count": 1}}, "standing": {"_count": 1, "on": {"_count": 1}}, "that": {"_count": 1, "afternoon": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "lining": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Mr": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "labels": {"_count": 3, "Harry": {"_count": 1, "could": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}}, "details": {"_count": 34, "of": {"_count": 9, "every": {"_count": 1}, "why": {"_count": 1}, "what": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "that": {"_count": 1}, "his": {"_count": 2}, "Snape": {"_count": 1}}, "see": {"_count": 1, "my": {"_count": 1}}, "too": {"_count": 1, "unpleasant": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "were": {"_count": 2, "now": {"_count": 1}, "confused": {"_count": 1}}, "Oh": {"_count": 1, "details": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 3, "the": {"_count": 1}, "this": {"_count": 1}, "what": {"_count": 1}}, "but": {"_count": 1, "weve": {"_count": 1}}, "he": {"_count": 2, "didnt": {"_count": 1}, "could": {"_count": 1}}, "hell": {"_count": 1, "tell": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "are": {"_count": 1, "on": {"_count": 1}}, "only": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "Horcruxes": {"_count": 1}}, "for": {"_count": 1, "themselves": {"_count": 1}}, "Hagrid": {"_count": 1, "chortled": {"_count": 1}}}, "pupil": {"_count": 9, "Filch": {"_count": 1, "had": {"_count": 1}}, "contracted": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "after": {"_count": 1, "this": {"_count": 1}}, "ever": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "crossed": {"_count": 1, "with": {"_count": 1}}}, "drawer": {"_count": 19, "to": {"_count": 1, "themselves": {"_count": 1}}, "and": {"_count": 5, "stretched": {"_count": 1}, "started": {"_count": 1}, "took": {"_count": 1}, "pulled": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "had": {"_count": 1, "been": {"_count": 1}}, "in": {"_count": 2, "one": {"_count": 1}, "Umbridges": {"_count": 1}}, "open": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 1, "shot": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "slid": {"_count": 1, "open": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "collection": {"_count": 16, "of": {"_count": 11, "chains": {"_count": 1}, "batteries": {"_count": 1}, "garments": {"_count": 1}, "chamber": {"_count": 1}, "lights": {"_count": 1}, "ornamental": {"_count": 1}, "splintered": {"_count": 1}, "old": {"_count": 1}, "yellow": {"_count": 1}, "delicate": {"_count": 1}, "toy": {"_count": 1}}, "\u2018the": {"_count": 1, "Boy": {"_count": 1}}, "a": {"_count": 1, "mixture": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "most": {"_count": 1, "jealously": {"_count": 1}}, "caught": {"_count": 1, "his": {"_count": 1}}}, "manacles": {"_count": 2, "hung": {"_count": 1, "on": {"_count": 1}}, "from": {"_count": 1, "thin": {"_count": 1}}}, "Dung": {"_count": 12, "he": {"_count": 1, "muttered": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "where": {"_count": 1, "didja": {"_count": 1}}, "around": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "likes": {"_count": 1, "his": {"_count": 1}}, "hiding": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 1, "Umbridge": {"_count": 1}}, "were": {"_count": 1, "close": {"_count": 1}}, "panicked": {"_count": 2, "I": {"_count": 1}, "its": {"_count": 1}}, "bout": {"_count": 1, "a": {"_count": 1}}}, "bogies": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "intestines": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "held": {"_count": 1}}}, "retrieved": {"_count": 8, "a": {"_count": 1, "large": {"_count": 1}}, "the": {"_count": 4, "glittering": {"_count": 1}, "egg": {"_count": 1}, "sword": {"_count": 1}, "diadem": {"_count": 1}}, "Snapes": {"_count": 1, "wand": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "that": {"_count": 1, "memory": {"_count": 1}}}, "dipping": {"_count": 5, "his": {"_count": 3, "long": {"_count": 1}, "pen": {"_count": 1}, "quill": {"_count": 1}}, "the": {"_count": 1, "point": {"_count": 1}}, "her": {"_count": 1, "onion": {"_count": 1}}}, "Name": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "Harry": {"_count": 1}}, "o": {"_count": 1, "Karkus": {"_count": 1}}}, "Crime": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "unpleasantly": {"_count": 22, "at": {"_count": 4, "the": {"_count": 2}, "Harry": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "surprised": {"_count": 1, "to": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "one": {"_count": 1}}, "familiar": {"_count": 2, "voice": {"_count": 1}, "office": {"_count": 1}}, "slimy": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "Hermione": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "Umbridges": {"_count": 1}}, "pulsating": {"_count": 1, "green": {"_count": 1}}, "purposeful": {"_count": 1, "look": {"_count": 1}}}, "bulbous": {"_count": 3, "nose": {"_count": 2, "": {"_count": 2}}, "yellow": {"_count": 1, "eyes": {"_count": 1}}}, "befouling": {"_count": 1, "the": {"_count": 1, "castle": {"_count": 1}}}, "Dabbing": {"_count": 1, "at": {"_count": 1, "his": {"_count": 1}}}, "BANG": {"_count": 18, "": {"_count": 10, "!": {"_count": 5}, ".": {"_count": 5}}, "and": {"_count": 5, "Harry": {"_count": 2}, "the": {"_count": 1}, "they": {"_count": 1}, "a": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "AT": {"_count": 1, "THE": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "PEEVES": {"_count": 4, "": {"_count": 4, "!": {"_count": 4}}}, "airborne": {"_count": 7, "menace": {"_count": 1, "who": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "broomstick": {"_count": 1, "": {"_count": 1}}, "team": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "more": {"_count": 1}}, "wall": {"_count": 1, "were": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}}, "menace": {"_count": 4, "who": {"_count": 1, "lived": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "havoc": {"_count": 4, "and": {"_count": 2, "distress": {"_count": 1}, "mayhem": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "distress": {"_count": 4, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "to": {"_count": 1, "that": {"_count": 1}}}, "timing": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "their": {"_count": 1}}, "was": {"_count": 1, "significant": {"_count": 1}}}, "wrecked": {"_count": 4, "something": {"_count": 1, "very": {"_count": 1}}, "office": {"_count": 1, "": {"_count": 1}}, "soaked": {"_count": 1, "bathroom": {"_count": 1}}, "cabin": {"_count": 1, "": {"_count": 1}}}, "distract": {"_count": 14, "Filch": {"_count": 1, "from": {"_count": 1}}, "him": {"_count": 5, "Was": {"_count": 1}, "from": {"_count": 2}, "at": {"_count": 1}, "nothing": {"_count": 1}}, "Stan": {"_count": 1, "did": {"_count": 1}}, "himself": {"_count": 1, "with": {"_count": 1}}, "or": {"_count": 1, "placate": {"_count": 1}}, "the": {"_count": 1, "Death": {"_count": 1}}, "Harry": {"_count": 1, "from": {"_count": 1}}, "them": {"_count": 3, "all": {"_count": 2}, "": {"_count": 1}}}, "halfcompleted": {"_count": 1, "form": {"_count": 1, "a": {"_count": 1}}}, "KWIKSPELL": {"_count": 1, "A": {"_count": 1, "Correspondence": {"_count": 1}}}, "Correspondence": {"_count": 1, "Course": {"_count": 1, "in": {"_count": 1}}}, "Intrigued": {"_count": 1, "Harry": {"_count": 1, "flicked": {"_count": 1}}}, "sheaf": {"_count": 9, "of": {"_count": 9, "parchment": {"_count": 6}, "large": {"_count": 1}, "scribbled": {"_count": 1}, "notes": {"_count": 1}}}, "Feel": {"_count": 3, "out": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "free": {"_count": 1, "groaned": {"_count": 1}}}, "excuses": {"_count": 12, "not": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "to": {"_count": 2, "walk": {"_count": 1}, "escape": {"_count": 1}}, "for": {"_count": 2, "his": {"_count": 1}, "you": {"_count": 1}}, "were": {"_count": 1, "running": {"_count": 1}}, "made": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 1, "for": {"_count": 1}}}, "taunted": {"_count": 5, "for": {"_count": 1, "your": {"_count": 1}}, "him": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Bellatrix": {"_count": 1, "as": {"_count": 1}}}, "woeful": {"_count": 1, "wandwork": {"_count": 1, "": {"_count": 1}}}, "wandwork": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}}, "Kwikspell": {"_count": 11, "is": {"_count": 1, "an": {"_count": 1}}, "method": {"_count": 1, "": {"_count": 1}}, "course": {"_count": 5, "I": {"_count": 2}, "and": {"_count": 1}, "": {"_count": 1}, "when": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "envelope": {"_count": 2, "which": {"_count": 1}, "from": {"_count": 1}}, "letter": {"_count": 1, "": {"_count": 1}}}, "allnew": {"_count": 1, "failsafe": {"_count": 1, "quickresult": {"_count": 1}}}, "failsafe": {"_count": 1, "quickresult": {"_count": 1, "easy": {"_count": 1}}}, "quickresult": {"_count": 1, "easy": {"_count": 1, "learn": {"_count": 1}}}, "benefited": {"_count": 2, "from": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}}, "method": {"_count": 8, "": {"_count": 1, "!": {"_count": 1}}, "of": {"_count": 4, "dining": {"_count": 1}, "communicating": {"_count": 1}, "resistance": {"_count": 1}, "communication": {"_count": 1}}, "Snape": {"_count": 1, "flicked": {"_count": 1}}, "that": {"_count": 1, "does": {"_count": 1}}, "for": {"_count": 1, "Strengthening": {"_count": 1}}}, "Z": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Nettles": {"_count": 2, "of": {"_count": 1, "Topsham": {"_count": 1}}, "grew": {"_count": 1, "all": {"_count": 1}}}, "Topsham": {"_count": 1, "writes": {"_count": 1, "I": {"_count": 1}}}, "writes": {"_count": 9, "I": {"_count": 2, "had": {"_count": 1}, "just": {"_count": 1}}, "Rita": {"_count": 4, "Skeeter": {"_count": 4}}, "about": {"_count": 1, "me": {"_count": 1}}, "weekly": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}}, "incantations": {"_count": 10, "and": {"_count": 2, "my": {"_count": 1}, "practiced": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "for": {"_count": 1, "Color": {"_count": 1}}, "gain": {"_count": 1, "an": {"_count": 1}}, "aloud": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "of": {"_count": 1, "great": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}}, "recipe": {"_count": 4, "of": {"_count": 1, "my": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "Freshwater": {"_count": 1}}}, "Scintillation": {"_count": 1, "Solution": {"_count": 1, "": {"_count": 1}}}, "Solution": {"_count": 8, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "was": {"_count": 2, "far": {"_count": 1}, "not": {"_count": 1}}, "hit": {"_count": 1, "them": {"_count": 1}}, "it": {"_count": 1, "will": {"_count": 1}}, "merely": {"_count": 1, "passable": {"_count": 1}}}, "D": {"_count": 70, "": {"_count": 62, ".": {"_count": 58}, "!": {"_count": 2}, "?": {"_count": 2}}, "said": {"_count": 1, "Piers": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "scrawled": {"_count": 1, "in": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 1, "\u2018Dreadful": {"_count": 1}}, "Acceptable": {"_count": 1, "A": {"_count": 1}}, "Potions": {"_count": 1, "E": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}}, "J": {"_count": 15, "": {"_count": 13, ".": {"_count": 13}}, "he": {"_count": 1, "gasped": {"_count": 1}}, "THE": {"_count": 1, "OTHER": {"_count": 1}}}, "Prod": {"_count": 1, "of": {"_count": 1, "Didsbury": {"_count": 1}}}, "Didsbury": {"_count": 1, "says": {"_count": 1, "My": {"_count": 1}}}, "succeeded": {"_count": 20, "in": {"_count": 11, "turning": {"_count": 1}, "scoring": {"_count": 1}, "dragging": {"_count": 1}, "nothing": {"_count": 1}, "making": {"_count": 1}, "trapping": {"_count": 1}, "conjuring": {"_count": 1}, "procuring": {"_count": 1}, "sealing": {"_count": 1}, "tugging": {"_count": 1}, "creating": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "by": {"_count": 1, "double": {"_count": 1}}, "had": {"_count": 1, "it": {"_count": 1}}, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "then": {"_count": 1, "sir": {"_count": 1}}}, "yak": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Fascinated": {"_count": 1, "Harry": {"_count": 1, "thumbed": {"_count": 1}}}, "thumbed": {"_count": 2, "through": {"_count": 2, "the": {"_count": 1}, "until": {"_count": 1}}}, "Lesson": {"_count": 1, "One": {"_count": 1, "Holding": {"_count": 1}}}, "Wand": {"_count": 78, "Some": {"_count": 1, "Useful": {"_count": 1}}, "held": {"_count": 1, "tightly": {"_count": 1}}, "Use": {"_count": 1, "broken": {"_count": 1}}, "weighing": {"_count": 1, "": {"_count": 1}}, "tip": {"_count": 1, "alight": {"_count": 1}}, "Theres": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 12}, "!": {"_count": 3}, "?": {"_count": 1}}, "grunted": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 2, "Potter": {"_count": 1}, "and": {"_count": 1}}, "cried": {"_count": 1, "Hermione": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "told": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 4, "the": {"_count": 1}, "splattered": {"_count": 2}, "now": {"_count": 1}}, "lies": {"_count": 1, "hidden": {"_count": 1}}, "of": {"_count": 5, "Destiny": {"_count": 5}}, "made": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 5, "then": {"_count": 1}, "not": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}, "said": {"_count": 1}}, "without": {"_count": 1, "realizing": {"_count": 1}}, "where": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 3, "Deathstick": {"_count": 2}, "Wand": {"_count": 1}}, "but": {"_count": 1, "Ron": {"_count": 1}}, "I": {"_count": 1, "knew": {"_count": 1}}, "only": {"_count": 1, "for": {"_count": 1}}, "must": {"_count": 1, "always": {"_count": 1}}, "didnt": {"_count": 2, "you": {"_count": 2}}, "a": {"_count": 1, "long": {"_count": 1}}, "to": {"_count": 1, "become": {"_count": 1}}, "how": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 2, "real": {"_count": 1}, "Draco": {"_count": 1}}, "slashed": {"_count": 1, "through": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "holding": {"_count": 1, "it": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "refuses": {"_count": 1, "to": {"_count": 1}}, "cannot": {"_count": 2, "serve": {"_count": 1}, "be": {"_count": 1}}, "belongs": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "has": {"_count": 1, "become": {"_count": 1}}, "removes": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "me": {"_count": 1}}, "recognized": {"_count": 1, "a": {"_count": 1}}, "fly": {"_count": 1, "high": {"_count": 1}}}, "Tips": {"_count": 1, "when": {"_count": 1, "shuffling": {"_count": 1}}}, "Stuffing": {"_count": 1, "the": {"_count": 1, "parchment": {"_count": 1}}}, "sputtered": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "Lockhart": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "blinked": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "looking": {"_count": 1, "thunderstruck": {"_count": 1}}, "going": {"_count": 1, "rather": {"_count": 1}}, "into": {"_count": 1, "life": {"_count": 1}}}, "alarmed": {"_count": 44, "Filch": {"_count": 1, "had": {"_count": 1}}, "Dumbledore": {"_count": 1, "suspended": {"_count": 1}}, "group": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 20}}, "you": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 6, "being": {"_count": 4}, "the": {"_count": 2}}, "now": {"_count": 2, "": {"_count": 2}}, "threatening": {"_count": 1, "kind": {"_count": 1}}, "than": {"_count": 1, "impressed": {"_count": 1}}, "and": {"_count": 2, "angry": {"_count": 1}, "Auntie": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}, "but": {"_count": 1, "Ron": {"_count": 1}}, "me": {"_count": 1, "most": {"_count": 1}}, "to": {"_count": 1, "hear": {"_count": 1}}, "the": {"_count": 1, "little": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}}, "madder": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "than": {"_count": 2, "ever": {"_count": 2}}}, "tic": {"_count": 1, "was": {"_count": 1, "going": {"_count": 1}}}, "pouchy": {"_count": 8, "cheeks": {"_count": 2, "and": {"_count": 1}, "trembling": {"_count": 1}}, "face": {"_count": 2, "purpling": {"_count": 1}, "and": {"_count": 1}}, "eyes": {"_count": 2, "": {"_count": 1}, "lingered": {"_count": 1}}, "toads": {"_count": 2, "eyes": {"_count": 2}}}, "Amazed": {"_count": 1, "at": {"_count": 1, "his": {"_count": 1}}}, "wreckage": {"_count": 13, "of": {"_count": 7, "a": {"_count": 3}, "the": {"_count": 2}, "wood": {"_count": 1}, "armor": {"_count": 1}}, "or": {"_count": 1, "worry": {"_count": 1}}, "covered": {"_count": 1, "from": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "where": {"_count": 1}}, "Harry": {"_count": 1, "took": {"_count": 1}}, "and": {"_count": 1, "three": {"_count": 1}}}, "blackandgold": {"_count": 2, "cabinet": {"_count": 1, "that": {"_count": 1}}, "quill": {"_count": 1, "": {"_count": 1}}}, "persuaded": {"_count": 17, "Peeves": {"_count": 1, "to": {"_count": 1}}, "Dippet": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 4, "to": {"_count": 4}}, "you": {"_count": 1, "to": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "them": {"_count": 2, "to": {"_count": 2}}, "my": {"_count": 2, "father": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 2, "giants": {"_count": 1}, "Dursleys": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "Horace": {"_count": 1, "Slughorn": {"_count": 1}}}, "gratefully": {"_count": 10, "": {"_count": 4, ".": {"_count": 4}}, "into": {"_count": 1, "one": {"_count": 1}}, "scratching": {"_count": 1, "behind": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "Patricks": {"_count": 4, "rejection": {"_count": 1, "letter": {"_count": 1}}, "head": {"_count": 3, "from": {"_count": 1}, "": {"_count": 1}, "went": {"_count": 1}}}, "rejection": {"_count": 1, "letter": {"_count": 1, "": {"_count": 1}}}, "stepping": {"_count": 14, "through": {"_count": 1, "an": {"_count": 1}}, "into": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "Siriuss": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "onto": {"_count": 1, "Goyle": {"_count": 1}}, "over": {"_count": 1, "Malfoy": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 2}, "into": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}}, "shower": {"_count": 18, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 16, "dark": {"_count": 1}, "brilliantly": {"_count": 1}, "red": {"_count": 2}, "gold": {"_count": 1}, "bright": {"_count": 1}, "sparks": {"_count": 2}, "rubies": {"_count": 1}, "green": {"_count": 1}, "arrows": {"_count": 1}, "multicolored": {"_count": 1}, "silver": {"_count": 1}, "broken": {"_count": 1}, "rain": {"_count": 1}, "goblets": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "hundredth": {"_count": 4, "deathday": {"_count": 1, "said": {"_count": 1}}, "time": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "what": {"_count": 1}}}, "deathday": {"_count": 7, "said": {"_count": 1, "Nearly": {"_count": 1}}, "party": {"_count": 6, "": {"_count": 5}, "who": {"_count": 1}}}, "dignified": {"_count": 10, "": {"_count": 1, ".": {"_count": 1}}, "voice": {"_count": 4, "": {"_count": 1}, "holding": {"_count": 1}, "dipping": {"_count": 1}, "but": {"_count": 1}}, "disapproval": {"_count": 1, "": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "sitting": {"_count": 1, "position": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "roomier": {"_count": 1, "dungeons": {"_count": 1, "": {"_count": 1}}}, "attend": {"_count": 18, "": {"_count": 3, ".": {"_count": 3}}, "St": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 1, "classes": {"_count": 1}}, "the": {"_count": 2, "feast": {"_count": 1}, "end": {"_count": 1}}, "Hogwarts": {"_count": 1, "School": {"_count": 1}}, "a": {"_count": 3, "disciplinary": {"_count": 1}, "short": {"_count": 1}, "hearing": {"_count": 1}}, "Fridays": {"_count": 1, "Keeper": {"_count": 1}}, "and": {"_count": 1, "been": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 4, "before": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "Draco": {"_count": 1}}}, "tenterhooks": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "Hagrid": {"_count": 1}}, "to": {"_count": 1, "repel": {"_count": 1}}}, "impressive": {"_count": 26, "you": {"_count": 1, "find": {"_count": 1}}, "end": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "maid": {"_count": 1}}, "and": {"_count": 1, "intimidating": {"_count": 1}}, "sigh": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "silhouetted": {"_count": 1, "against": {"_count": 1}}, "new": {"_count": 2, "banners": {"_count": 1}, "name": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "location": {"_count": 1, "for": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "magic": {"_count": 1}, "worse": {"_count": 1}}, "creatures": {"_count": 1, "admittedly": {"_count": 1}}, "Ive": {"_count": 1, "bin": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "Harry": {"_count": 1}}, "voice": {"_count": 1, "Farewell": {"_count": 1}}, "wroughtiron": {"_count": 1, "gates": {"_count": 1}}, "until": {"_count": 1, "those": {"_count": 1}}, "figure": {"_count": 1, "sprawled": {"_count": 1}}}, "keenly": {"_count": 6, "when": {"_count": 1, "Harry": {"_count": 1}}, "down": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Sounds": {"_count": 5, "dead": {"_count": 1, "depressing": {"_count": 1}}, "like": {"_count": 3, "they": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}}, "Rain": {"_count": 7, "was": {"_count": 3, "still": {"_count": 1}, "splattering": {"_count": 1}, "lashing": {"_count": 1}}, "lashed": {"_count": 2, "against": {"_count": 2}}, "spattered": {"_count": 1, "the": {"_count": 1}}, "pounded": {"_count": 1, "on": {"_count": 1}}}, "salamander": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "suddenly": {"_count": 1, "whizzed": {"_count": 1}}, "eggs": {"_count": 1, "": {"_count": 1}}}, "firedwelling": {"_count": 1, "lizard": {"_count": 1, "from": {"_count": 1}}}, "lizard": {"_count": 2, "from": {"_count": 1, "a": {"_count": 1}}, "thrashing": {"_count": 1, "her": {"_count": 1}}}, "Care": {"_count": 48, "of": {"_count": 48, "Magical": {"_count": 47}, "Mag": {"_count": 1}}}, "Creatures": {"_count": 70, "class": {"_count": 5, "and": {"_count": 1}, "": {"_count": 1}, "followed": {"_count": 1}, "lightheaded": {"_count": 1}, "they": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 15}, "!": {"_count": 4}}, "and": {"_count": 2, "Divination": {"_count": 1}, "Campaign": {"_count": 1}}, "Divination": {"_count": 1, "Study": {"_count": 1}}, "teacher": {"_count": 7, "retired": {"_count": 1}, "will": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "over": {"_count": 1}, "was": {"_count": 1}, "so": {"_count": 1}}, "which": {"_count": 1, "after": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "lessons": {"_count": 5, "": {"_count": 1}, "are": {"_count": 1}, "for": {"_count": 1}, "we": {"_count": 1}, "so": {"_count": 1}}, "had": {"_count": 1, "had": {"_count": 1}}, "Potions": {"_count": 1, "and": {"_count": 1}}, "exam": {"_count": 2, "the": {"_count": 1}, "so": {"_count": 1}}, "required": {"_count": 1, "a": {"_count": 1}}, "because": {"_count": 2, "the": {"_count": 1}, "theyre": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "some": {"_count": 1}}, "meant": {"_count": 1, "seeing": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "lesson": {"_count": 5, "of": {"_count": 1}, "for": {"_count": 1}, "and": {"_count": 1}, "was": {"_count": 2}}, "much": {"_count": 1, "in": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "classes": {"_count": 1, "": {"_count": 1}}, "incorporating": {"_count": 2, "Beast": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "any": {"_count": 1, "attack": {"_count": 1}}, "tells": {"_count": 1, "me": {"_count": 1}}, "running": {"_count": 1, "around": {"_count": 1}}, "E": {"_count": 1, "Charms": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "smoldering": {"_count": 6, "gently": {"_count": 1, "on": {"_count": 1}}, "pile": {"_count": 1, "of": {"_count": 1}}, "wreckage": {"_count": 1, "of": {"_count": 1}}, "wreck": {"_count": 1, "of": {"_count": 1}}, "cloak": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 1, "flowery": {"_count": 1}}}, "whizzed": {"_count": 7, "into": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 1}, "them": {"_count": 1}, "their": {"_count": 1}}, "around": {"_count": 1, "staring": {"_count": 1}}, "past": {"_count": 1, "them": {"_count": 1}}}, "emitting": {"_count": 12, "loud": {"_count": 3, "sparks": {"_count": 1}, "fiery": {"_count": 1}, "bangs": {"_count": 1}}, "little": {"_count": 1, "puffs": {"_count": 1}}, "odd": {"_count": 1, "flashes": {"_count": 1}}, "three": {"_count": 1, "stars": {"_count": 1}}, "rasping": {"_count": 1, "noises": {"_count": 1}}, "puffs": {"_count": 1, "of": {"_count": 1}}, "highpitched": {"_count": 1, "squeaks": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "phosphorescent": {"_count": 1}}, "a": {"_count": 1, "strong": {"_count": 1}}}, "bellowing": {"_count": 11, "himself": {"_count": 1, "hoarse": {"_count": 1}}, "and": {"_count": 2, "waving": {"_count": 1}, "screaming": {"_count": 1}}, "at": {"_count": 1, "each": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "orders": {"_count": 1, "at": {"_count": 1}}, "roar": {"_count": 1, "dragon": {"_count": 1}}, "rude": {"_count": 1, "versions": {"_count": 1}}, "HERMIONE": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "one": {"_count": 1}}}, "tangerine": {"_count": 1, "stars": {"_count": 1, "showering": {"_count": 1}}}, "salamanders": {"_count": 5, "mouth": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "hippogriffs": {"_count": 1}}, "got": {"_count": 1, "scale": {"_count": 1}}, "or": {"_count": 1, "their": {"_count": 1}}}, "accompanying": {"_count": 9, "explosions": {"_count": 1, "drove": {"_count": 1}}, "them": {"_count": 3, "like": {"_count": 1}, "down": {"_count": 1}, "to": {"_count": 1}}, "Riddle": {"_count": 1, "but": {"_count": 1}}, "Dumbledore": {"_count": 1, "but": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "obituary": {"_count": 1}}, "story": {"_count": 1, "out": {"_count": 1}}}, "regretting": {"_count": 5, "his": {"_count": 1, "rash": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "this": {"_count": 1, "ever": {"_count": 1}}, "entering": {"_count": 1, "into": {"_count": 1}}}, "rash": {"_count": 4, "promise": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "by": {"_count": 1, "a": {"_count": 1}}}, "anticipating": {"_count": 2, "their": {"_count": 1, "Halloween": {"_count": 1}}, "the": {"_count": 1, "end": {"_count": 1}}}, "decorated": {"_count": 19, "with": {"_count": 12, "the": {"_count": 2}, "drawings": {"_count": 1}, "hundreds": {"_count": 1}, "cheerful": {"_count": 1}, "a": {"_count": 3}, "live": {"_count": 1}, "what": {"_count": 1}, "frills": {"_count": 1}, "small": {"_count": 1}}, "his": {"_count": 1, "classroom": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "overnight": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "for": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "so": {"_count": 1, "lavishly": {"_count": 1}}, "her": {"_count": 1, "bedroom": {"_count": 1}}}, "troupe": {"_count": 1, "of": {"_count": 1, "dancing": {"_count": 1}}}, "skeletons": {"_count": 5, "for": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "of": {"_count": 2, "mice": {"_count": 1}, "which": {"_count": 1}}, "notwithstanding": {"_count": 1, "does": {"_count": 1}}}, "entertainment": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "provided": {"_count": 1, "by": {"_count": 1}}, "because": {"_count": 1, "after": {"_count": 1}}}, "bossily": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "kneeling": {"_count": 1, "up": {"_count": 1}}}, "invitingly": {"_count": 1, "with": {"_count": 1, "gold": {"_count": 1}}}, "Nicks": {"_count": 8, "party": {"_count": 1, "had": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "very": {"_count": 1, "frightening": {"_count": 1}}, "fate": {"_count": 1, "that": {"_count": 1}}, "deathday": {"_count": 1, "party": {"_count": 1}}, "head": {"_count": 1, "wobbled": {"_count": 1}}, "transparent": {"_count": 1, "pointing": {"_count": 1}}}, "tapers": {"_count": 1, "all": {"_count": 1, "burning": {"_count": 1}}}, "casting": {"_count": 39, "a": {"_count": 13, "dim": {"_count": 1}, "wary": {"_count": 1}, "bloody": {"_count": 1}, "long": {"_count": 1}, "misty": {"_count": 1}, "flickering": {"_count": 1}, "disdainful": {"_count": 1}, "shifty": {"_count": 1}, "terrified": {"_count": 1}, "sternly": {"_count": 1}, "careful": {"_count": 1}, "Patronus": {"_count": 1}, "protective": {"_count": 1}}, "long": {"_count": 1, "black": {"_count": 1}}, "around": {"_count": 2, "for": {"_count": 2}}, "an": {"_count": 1, "eye": {"_count": 1}}, "Hermione": {"_count": 1, "a": {"_count": 1}}, "angry": {"_count": 1, "looks": {"_count": 1}}, "anxious": {"_count": 1, "looks": {"_count": 1}}, "Harry": {"_count": 1, "a": {"_count": 1}}, "Malfoy": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "its": {"_count": 1, "light": {"_count": 1}}, "the": {"_count": 6, "pair": {"_count": 1}, "table": {"_count": 1}, "Muffliato": {"_count": 1}, "spells": {"_count": 1}, "curse": {"_count": 1}, "usual": {"_count": 1}}, "silvery": {"_count": 1, "specks": {"_count": 1}}, "him": {"_count": 1, "nasty": {"_count": 1}}, "Kreacher": {"_count": 1, "a": {"_count": 1}}, "nervous": {"_count": 1, "glances": {"_count": 1}}, "flickering": {"_count": 1, "light": {"_count": 1}}, "shimmering": {"_count": 1, "spots": {"_count": 1}}, "their": {"_count": 1, "freezing": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "massive": {"_count": 1, "shadows": {"_count": 1}}}, "dim": {"_count": 27, "ghostly": {"_count": 1, "light": {"_count": 1}}, "the": {"_count": 3, "danger": {"_count": 1}, "lights": {"_count": 1}, "stranger": {"_count": 1}}, "black": {"_count": 1, "outline": {"_count": 1}}, "crimson": {"_count": 1, "light": {"_count": 1}}, "red": {"_count": 1, "light": {"_count": 1}}, "stifling": {"_count": 1, "tower": {"_count": 1}}, "light": {"_count": 5, "through": {"_count": 1}, "issuing": {"_count": 1}, "glimmered": {"_count": 1}, "cast": {"_count": 1}, "of": {"_count": 1}}, "shadows": {"_count": 1, "on": {"_count": 1}}, "picture": {"_count": 1, "of": {"_count": 1}}, "silvery": {"_count": 1, "light": {"_count": 1}}, "reddish": {"_count": 1, "light": {"_count": 1}}, "misty": {"_count": 1, "lights": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "and": {"_count": 1, "distant": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "corner": {"_count": 1, "of": {"_count": 1}}, "though": {"_count": 1, "you": {"_count": 1}}, "dank": {"_count": 1, "clearing": {"_count": 1}}, "candlelight": {"_count": 1, "": {"_count": 1}}, "green": {"_count": 1, "glow": {"_count": 1}}}, "ghostly": {"_count": 24, "light": {"_count": 1, "even": {"_count": 1}}, "shapes": {"_count": 2, "of": {"_count": 2}}, "white": {"_count": 3, "and": {"_count": 1}, "over": {"_count": 1}, "shape": {"_count": 1}}, "skin": {"_count": 1, "and": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "green": {"_count": 4, "and": {"_count": 2}, "boat": {"_count": 2}}, "bird": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "of": {"_count": 1}}, "reflections": {"_count": 1, "in": {"_count": 1}}, "Harrys": {"_count": 1, "seemed": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}, "wail": {"_count": 1, "": {"_count": 1}}, "prow": {"_count": 1, "of": {"_count": 1}}, "moon": {"_count": 1, "hanging": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "services": {"_count": 1, "you": {"_count": 1}}, "striding": {"_count": 1, "through": {"_count": 1}}}, "temperature": {"_count": 5, "dropped": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "It": {"_count": 1, "was": {"_count": 1}}}, "drapes": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "mournfully": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 2, "Harry": {"_count": 2}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}}, "translucent": {"_count": 3, "people": {"_count": 1, "mostly": {"_count": 1}}, "somebody": {"_count": 1, "drifting": {"_count": 1}}, "pale": {"_count": 1, "sunken": {"_count": 1}}}, "waltzing": {"_count": 3, "to": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "Madame": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "quavering": {"_count": 5, "sound": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "note": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}}, "musical": {"_count": 13, "saws": {"_count": 2, "played": {"_count": 1}, "but": {"_count": 1}}, "message": {"_count": 1, "to": {"_count": 1}}, "valentine": {"_count": 1, "": {"_count": 1}}, "statues": {"_count": 1, "": {"_count": 1}}, "saw": {"_count": 1, "": {"_count": 1}}, "group": {"_count": 1, "": {"_count": 1}}, "box": {"_count": 1, "that": {"_count": 1}}, "cry": {"_count": 2, "": {"_count": 2}}, "voice": {"_count": 3, "said": {"_count": 1}, "that": {"_count": 1}, "asked": {"_count": 1}}}, "saws": {"_count": 2, "played": {"_count": 1, "by": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "orchestra": {"_count": 5, "on": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "however": {"_count": 1, "stopped": {"_count": 1}}, "ground": {"_count": 1, "back": {"_count": 1}}, "at": {"_count": 1, "Nearly": {"_count": 1}}}, "blackdraped": {"_count": 1, "platform": {"_count": 1, "": {"_count": 1}}}, "midnightblue": {"_count": 4, "with": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "robes": {"_count": 1, "and": {"_count": 1}}, "carpet": {"_count": 1, "": {"_count": 1}}}, "Shall": {"_count": 32, "we": {"_count": 27, "have": {"_count": 2}, "go": {"_count": 9}, "proceed": {"_count": 1}, "kill": {"_count": 1}, "get": {"_count": 5}, "do": {"_count": 1}, "say": {"_count": 1}, "assume": {"_count": 1}, "call": {"_count": 1}, "": {"_count": 2}, "shall": {"_count": 1}, "walk": {"_count": 1}, "split": {"_count": 1}}, "I": {"_count": 4, "persuade": {"_count": 1}, "jinx": {"_count": 1}, "run": {"_count": 1}, "serve": {"_count": 1}}, "shall": {"_count": 1, "I": {"_count": 1}}}, "Careful": {"_count": 13, "not": {"_count": 5, "to": {"_count": 5}}, "there": {"_count": 1, "Miss": {"_count": 1}}, "Potter": {"_count": 1, "theres": {"_count": 1}}, "Weasley": {"_count": 1, "careful": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "Vernon": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}}, "nuns": {"_count": 1, "a": {"_count": 1, "ragged": {"_count": 1}}}, "bloodstains": {"_count": 4, "was": {"_count": 1, "being": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "floating": {"_count": 1, "like": {"_count": 1}}, "occurred": {"_count": 1, "every": {"_count": 1}}}, "berth": {"_count": 5, "by": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Myrtle": {"_count": 90, "Who": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Peeves": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 9}, "?": {"_count": 4}, "!": {"_count": 5}}, "sniffed": {"_count": 1, "": {"_count": 1}}, "eyed": {"_count": 1, "Hermione": {"_count": 1}}, "gasped": {"_count": 1, "tears": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "how": {"_count": 1, "are": {"_count": 1}}, "was": {"_count": 6, "floating": {"_count": 1}, "crying": {"_count": 2}, "pointing": {"_count": 1}, "sitting": {"_count": 1}, "still": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 3, "a": {"_count": 1}, "hushed": {"_count": 1}, "there": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "dramatically": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 2, "a": {"_count": 2}}, "gurgling": {"_count": 1, "morosely": {"_count": 1}}, "glided": {"_count": 1, "suddenly": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "sped": {"_count": 1, "them": {"_count": 1}}, "miserably": {"_count": 2, "": {"_count": 2}}, "shouted": {"_count": 1, "emerging": {"_count": 1}}, "puffed": {"_count": 1, "herself": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 1, "wouldve": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "swelled": {"_count": 1, "importantly": {"_count": 1}}, "pointing": {"_count": 1, "vaguely": {"_count": 1}}, "brightly": {"_count": 1, "as": {"_count": 1}}, "goggled": {"_count": 1, "at": {"_count": 1}}, "blushing": {"_count": 1, "silver": {"_count": 1}}, "had": {"_count": 5, "been": {"_count": 2}, "her": {"_count": 1}, "always": {"_count": 1}, "taken": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "who": {"_count": 4, "was": {"_count": 1}, "seemed": {"_count": 1}, "smirked": {"_count": 1}, "screamed": {"_count": 1}}, "couldnt": {"_count": 1, "see": {"_count": 1}}, "picking": {"_count": 2, "at": {"_count": 1}, "moodily": {"_count": 1}}, "rather": {"_count": 1, "slyly": {"_count": 1}}, "peered": {"_count": 1, "through": {"_count": 1}}, "sat": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "cheerful": {"_count": 1}}, "zooming": {"_count": 1, "down": {"_count": 1}}, "there": {"_count": 1, "arent": {"_count": 1}}, "jerked": {"_count": 1, "her": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "gulping": {"_count": 1, "looking": {"_count": 1}}, "asked": {"_count": 1, "mournfully": {"_count": 1}}, "floating": {"_count": 1, "hazily": {"_count": 1}}, "actually": {"_count": 1, "giggled": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "defiantly": {"_count": 1, "her": {"_count": 1}}, "her": {"_count": 2, "small": {"_count": 1}, "voice": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}}, "backtracked": {"_count": 3, "quickly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "chose": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}}, "haunts": {"_count": 5, "one": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "toilet": {"_count": 1}}, "churchyards": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "said": {"_count": 1}}, "automatically": {"_count": 1, "": {"_count": 1}}}, "outoforder": {"_count": 3, "all": {"_count": 1, "year": {"_count": 1}}, "bathroom": {"_count": 1, "once": {"_count": 1}}, "toilets": {"_count": 1, "a": {"_count": 1}}}, "tantrums": {"_count": 4, "and": {"_count": 1, "flooding": {"_count": 1}}, "after": {"_count": 1, "arguments": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "one": {"_count": 1, "involving": {"_count": 1}}}, "pee": {"_count": 1, "with": {"_count": 1, "her": {"_count": 1}}}, "wailing": {"_count": 15, "at": {"_count": 1, "you": {"_count": 1}}, "shriek": {"_count": 1, "that": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "meant": {"_count": 1, "after": {"_count": 1}}, "egg": {"_count": 1, "meant": {"_count": 1}}, "but": {"_count": 1, "nothing": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "screeching": {"_count": 1, "sound": {"_count": 1}}, "loudly": {"_count": 1, "in": {"_count": 1}}, "stopped": {"_count": 1, "Filch": {"_count": 1}}, "Yes": {"_count": 1, "Professor": {"_count": 1}}, "klaxonlike": {"_count": 1, "sound": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "friend": {"_count": 1, "and": {"_count": 1}}, "overhead": {"_count": 1, "": {"_count": 1}}}, "Large": {"_count": 5, "rotten": {"_count": 1, "fish": {"_count": 1}}, "chunks": {"_count": 1, "had": {"_count": 1}}, "words": {"_count": 1, "at": {"_count": 1}}, "signs": {"_count": 1, "on": {"_count": 1}}, "groups": {"_count": 1, "of": {"_count": 1}}}, "charcoalblack": {"_count": 1, "were": {"_count": 1, "heaped": {"_count": 1}}}, "heaped": {"_count": 4, "on": {"_count": 1, "salvers": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "high": {"_count": 1, "with": {"_count": 1}}}, "salvers": {"_count": 1, "there": {"_count": 1, "was": {"_count": 1}}}, "maggoty": {"_count": 1, "haggis": {"_count": 1, "a": {"_count": 1}}}, "haggis": {"_count": 2, "a": {"_count": 1, "slab": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "slab": {"_count": 4, "of": {"_count": 4, "cheese": {"_count": 1}, "fruitcake": {"_count": 1}, "chocolate": {"_count": 1}, "Honeydukes": {"_count": 1}}}, "furry": {"_count": 11, "green": {"_count": 1, "mold": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "circus": {"_count": 1}}, "purple": {"_count": 1, "collar": {"_count": 1}}, "ginger": {"_count": 3, "cushion": {"_count": 2}, "cat": {"_count": 1}}, "brown": {"_count": 1, "wallet": {"_count": 1}}, "hat": {"_count": 1, "and": {"_count": 1}}, "drawstring": {"_count": 1, "pouch": {"_count": 1}}, "detached": {"_count": 1, "itself": {"_count": 1}}}, "mold": {"_count": 5, "and": {"_count": 2, "in": {"_count": 1}, "straw": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}, "Harry": {"_count": 1, "assured": {"_count": 1}}}, "tombstone": {"_count": 5, "with": {"_count": 1, "tarlike": {"_count": 1}}, "of": {"_count": 1, "Voldemorts": {"_count": 1}}, "stood": {"_count": 1, "between": {"_count": 1}}, "and": {"_count": 1, "nearly": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "tarlike": {"_count": 2, "icing": {"_count": 1, "forming": {"_count": 1}}, "substance": {"_count": 1, "in": {"_count": 1}}}, "forming": {"_count": 19, "the": {"_count": 1, "words": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 2}, "front": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 7, "circle": {"_count": 1}, "silent": {"_count": 1}, "tighter": {"_count": 1}, "scrum": {"_count": 1}, "great": {"_count": 1}, "smooth": {"_count": 1}, "gigantic": {"_count": 1}}, "before": {"_count": 1, "each": {"_count": 1}}, "some": {"_count": 1, "sort": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "fists": {"_count": 1, "": {"_count": 1}}, "secret": {"_count": 1, "defense": {"_count": 1}}, "an": {"_count": 1, "archway": {"_count": 1}}}, "SIR": {"_count": 1, "NICHOLAS": {"_count": 1, "DE": {"_count": 1}}}, "DE": {"_count": 1, "MIMSYPORPINGTON": {"_count": 1, "DIED": {"_count": 1}}}, "MIMSYPORPINGTON": {"_count": 1, "DIED": {"_count": 1, "3": {"_count": 1}}}, "ST": {"_count": 3, "OCTOBER": {"_count": 1, "1": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "OCTOBER": {"_count": 2, "1": {"_count": 1, "492": {"_count": 1}}, "1981": {"_count": 1, "The": {"_count": 1}}}, "492": {"_count": 1, "Harry": {"_count": 1, "watched": {"_count": 1}}}, "portly": {"_count": 6, "ghost": {"_count": 1, "approached": {"_count": 1}}, "little": {"_count": 1, "man": {"_count": 1}}, "man": {"_count": 3, "in": {"_count": 1}, "who": {"_count": 1}, "appeared": {"_count": 1}}, "Fudge": {"_count": 1, "in": {"_count": 1}}}, "salmon": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}, "wafted": {"_count": 1, "tantalizingly": {"_count": 1}}}, "knowledgeably": {"_count": 3, "pinching": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "leaning": {"_count": 1, "across": {"_count": 1}}}, "pinching": {"_count": 4, "her": {"_count": 1, "nose": {"_count": 1}}, "his": {"_count": 3, "bleeding": {"_count": 1}, "nose": {"_count": 1}, "hollow": {"_count": 1}}}, "putrid": {"_count": 4, "haggis": {"_count": 1, "": {"_count": 1}}, "breath": {"_count": 1, "": {"_count": 1}}, "deathcold": {"_count": 1, "breath": {"_count": 1}}, "fumes": {"_count": 1, "issuing": {"_count": 1}}}, "Unlike": {"_count": 7, "the": {"_count": 2, "ghosts": {"_count": 1}, "Gryffindors": {"_count": 1}}, "Dobby": {"_count": 1, "she": {"_count": 1}}, "fullgrown": {"_count": 1, "unicorns": {"_count": 1}}, "Dumbledore": {"_count": 2, "Karkaroff": {"_count": 1}, "he": {"_count": 1}}, "Hagrid": {"_count": 1, "who": {"_count": 1}}}, "reverse": {"_count": 12, "of": {"_count": 1, "pale": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "echo": {"_count": 1, "": {"_count": 1}}, "order": {"_count": 1, "": {"_count": 1}}, "passed": {"_count": 1, "to": {"_count": 1}}, "passes": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "side": {"_count": 1, "was": {"_count": 1}}, "what": {"_count": 1, "had": {"_count": 1}}, "imprisoned": {"_count": 1, "for": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}}, "revolving": {"_count": 17, "bow": {"_count": 1, "tie": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "on": {"_count": 2, "its": {"_count": 1}, "his": {"_count": 1}}, "slowly": {"_count": 5, "on": {"_count": 1}, "in": {"_count": 2}, "as": {"_count": 1}, "overhead": {"_count": 1}}, "tea": {"_count": 1, "tray": {"_count": 1}}, "girl": {"_count": 1, "why": {"_count": 1}}, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "magical": {"_count": 1, "eye": {"_count": 1}}, "body": {"_count": 2, "as": {"_count": 1}, "above": {"_count": 1}}, "figure": {"_count": 1, "suspended": {"_count": 1}}, "around": {"_count": 1, "me": {"_count": 1}}}, "Nibbles": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "sweetly": {"_count": 16, "offering": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "girlish": {"_count": 2, "voice": {"_count": 1}, "as": {"_count": 1}}, "were": {"_count": 1, "getting": {"_count": 1}}, "over": {"_count": 1, "at": {"_count": 1}}, "making": {"_count": 1, "yet": {"_count": 1}}, "thats": {"_count": 1, "exactly": {"_count": 1}}, "poking": {"_count": 1, "him": {"_count": 1}}, "ignoring": {"_count": 1, "his": {"_count": 1}}}, "peanuts": {"_count": 4, "covered": {"_count": 1, "in": {"_count": 1}}, "yelling": {"_count": 1, "Pimply": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "fungus": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "trade": {"_count": 1, "and": {"_count": 1}}, "has": {"_count": 1, "spread": {"_count": 1}}}, "Heard": {"_count": 4, "you": {"_count": 1, "talking": {"_count": 1}}, "the": {"_count": 1, "news": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "YouKnowWho": {"_count": 1, "from": {"_count": 1}}}, "Rude": {"_count": 2, "you": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "unmanageable": {"_count": 1}}}, "OY": {"_count": 3, "": {"_count": 3, "!": {"_count": 3}}}, "MYRTLE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "glummest": {"_count": 1, "face": {"_count": 1, "Harry": {"_count": 1}}}, "halfhidden": {"_count": 3, "behind": {"_count": 1, "lank": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}}, "lank": {"_count": 6, "hair": {"_count": 2, "and": {"_count": 1}, "said": {"_count": 1}}, "and": {"_count": 3, "unkempt": {"_count": 1}, "greasy": {"_count": 1}, "dull": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "pearly": {"_count": 18, "spectacles": {"_count": 1, "": {"_count": 1}}, "tears": {"_count": 2, "were": {"_count": 2}}, "patch": {"_count": 1, "of": {"_count": 1}}, "white": {"_count": 9, "mist": {"_count": 1}, "Professor": {"_count": 1}, "which": {"_count": 1}, "objects": {"_count": 1}, "as": {"_count": 1}, "and": {"_count": 1}, "marquee": {"_count": 1}, "figures": {"_count": 1}, "figure": {"_count": 1}}, "glasses": {"_count": 1, "": {"_count": 1}}, "gray": {"_count": 1, "the": {"_count": 1}}, "memory": {"_count": 1, "": {"_count": 1}}, "glow": {"_count": 1, "": {"_count": 1}}, "sky": {"_count": 1, "": {"_count": 1}}}, "sulkily": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "falsely": {"_count": 9, "bright": {"_count": 2, "voice": {"_count": 1}, "and": {"_count": 1}}, "confident": {"_count": 1, "voice": {"_count": 1}}, "anxious": {"_count": 1, "voice": {"_count": 1}}, "sweet": {"_count": 3, "voice": {"_count": 2}, "girlish": {"_count": 1}}, "cheery": {"_count": 1, "voice": {"_count": 1}}, "matteroffact": {"_count": 1, "voice": {"_count": 1}}}, "Myrtles": {"_count": 27, "ear": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "gurgling": {"_count": 1, "sobs": {"_count": 1}}, "outoforder": {"_count": 2, "bathroom": {"_count": 1}, "toilets": {"_count": 1}}, "bathroom": {"_count": 14, "": {"_count": 11}, "said": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 1}}, "wails": {"_count": 1, "echoing": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "whole": {"_count": 1, "aspect": {"_count": 1}}, "grown": {"_count": 1, "fond": {"_count": 1}}, "eyes": {"_count": 1, "filled": {"_count": 1}}, "dead": {"_count": 1, "said": {"_count": 1}}, "voice": {"_count": 1, "from": {"_count": 1}}}, "welling": {"_count": 2, "rapidly": {"_count": 1, "in": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}}, "seethrough": {"_count": 2, "eyes": {"_count": 1, "": {"_count": 1}}, "finger": {"_count": 1, "to": {"_count": 1}}}, "nudging": {"_count": 4, "Harry": {"_count": 1, "and": {"_count": 1}}, "Crookshanks": {"_count": 1, "down": {"_count": 1}}, "Pettigrew": {"_count": 1, "with": {"_count": 1}}, "them": {"_count": 1, "gently": {"_count": 1}}}, "Ugly": {"_count": 3, "Myrtle": {"_count": 1, "": {"_count": 1}}, "Goblins": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}}, "Miserable": {"_count": 2, "moaning": {"_count": 1, "moping": {"_count": 1}}, "old": {"_count": 1, "bat": {"_count": 1}}}, "moping": {"_count": 1, "Myrtle": {"_count": 1, "": {"_count": 1}}}, "pimply": {"_count": 3, "Peeves": {"_count": 1, "hissed": {"_count": 1}}, "wizard": {"_count": 1, "His": {"_count": 1}}, "jugeared": {"_count": 1, "youth": {"_count": 1}}}, "anguished": {"_count": 13, "sobs": {"_count": 1, "and": {"_count": 1}}, "yell": {"_count": 2, "from": {"_count": 1}, "of": {"_count": 1}}, "panting": {"_count": 1, "then": {"_count": 1}}, "breath": {"_count": 1, "on": {"_count": 1}}, "whisper": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "tones": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "face": {"_count": 1, "": {"_count": 1}}}, "fled": {"_count": 16, "from": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 3, "Bludger": {"_count": 1}, "terror": {"_count": 1}, "country": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "when": {"_count": 2, "I": {"_count": 1}, "there": {"_count": 1}}, "into": {"_count": 2, "Hagrid": {"_count": 1}, "the": {"_count": 1}}, "tonight": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Harrys": {"_count": 1, "mind": {"_count": 1}}, "doubled": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "anyone": {"_count": 1}}}, "Pimply": {"_count": 1, "Pimplyl": {"_count": 1, "Oh": {"_count": 1}}}, "Pimplyl": {"_count": 1, "Oh": {"_count": 1, "dear": {"_count": 1}}}, "Enjoying": {"_count": 3, "yourselves": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "fact": {"_count": 1}}}, "turnout": {"_count": 1, "said": {"_count": 1, "Nearly": {"_count": 1}}}, "Wailing": {"_count": 1, "Widow": {"_count": 1, "came": {"_count": 1}}}, "Widow": {"_count": 1, "came": {"_count": 1, "all": {"_count": 1}}}, "hunting": {"_count": 14, "horn": {"_count": 1, "sounded": {"_count": 1}}, "cry": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 1, "cage": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "give": {"_count": 1}}, "nogtails": {"_count": 1, "in": {"_count": 1}}, "after": {"_count": 1, "Lily": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 2, "Voldemort": {"_count": 1}, "my": {"_count": 1}}, "Horcruxes": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "down": {"_count": 1}}}, "ridden": {"_count": 6, "by": {"_count": 2, "a": {"_count": 2}}, "a": {"_count": 1, "broomstick": {"_count": 1}}, "it": {"_count": 1, "yet": {"_count": 1}}, "once": {"_count": 1, "before": {"_count": 1}}, "him": {"_count": 1, "havent": {"_count": 1}}}, "horseman": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "assembly": {"_count": 1, "clapped": {"_count": 1, "wildly": {"_count": 1}}}, "halted": {"_count": 11, "rearing": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "then": {"_count": 1}, "Harry": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 1, "ten": {"_count": 1}}, "the": {"_count": 1, "cool": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "raised": {"_count": 1, "her": {"_count": 1}}}, "rearing": {"_count": 5, "and": {"_count": 1, "plunging": {"_count": 1}}, "onto": {"_count": 1, "their": {"_count": 1}}, "from": {"_count": 1, "long": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "plunging": {"_count": 10, "": {"_count": 1, ".": {"_count": 1}}, "them": {"_count": 1, "into": {"_count": 1}}, "sensation": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "fangs": {"_count": 1}}, "her": {"_count": 2, "hands": {"_count": 1}, "hand": {"_count": 1}}, "manycolored": {"_count": 1, "backs": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "tip": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}}, "squashing": {"_count": 5, "his": {"_count": 1, "head": {"_count": 1}}, "it": {"_count": 2, "into": {"_count": 1}, "as": {"_count": 1}}, "your": {"_count": 1, "frog": {"_count": 1}}, "Phineas": {"_count": 1, "Nigelluss": {"_count": 1}}}, "guffaw": {"_count": 2, "and": {"_count": 1, "clapped": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Live": {"_count": 1, "uns": {"_count": 1, "": {"_count": 1}}}, "uns": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "fake": {"_count": 49, "jump": {"_count": 1, "of": {"_count": 1}}, "sigh": {"_count": 1, "who": {"_count": 1}}, "his": {"_count": 1, "death": {"_count": 1}}, "coal": {"_count": 1, "fire": {"_count": 1}}, "wands": {"_count": 3, "again": {"_count": 1}, "at": {"_count": 1}, "of": {"_count": 1}}, "wand": {"_count": 1, "": {"_count": 1}}, "Moody": {"_count": 1, "might": {"_count": 1}}, "smile": {"_count": 1, "on": {"_count": 1}}, "Moodys": {"_count": 1, "office": {"_count": 1}}, "Galleon": {"_count": 5, "Ron": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "coins": {"_count": 1, "though": {"_count": 1}}, "cough": {"_count": 1, "before": {"_count": 1}}, "yawn": {"_count": 1, "his": {"_count": 1}}, "Veritaserum": {"_count": 1, "when": {"_count": 1}}, "snow": {"_count": 1, "off": {"_count": 1}}, "Horcrux": {"_count": 5, "against": {"_count": 1}, "which": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 3, "its": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}}, "locket": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "trail": {"_count": 1, "to": {"_count": 1}}, "bait": {"_count": 1, "and": {"_count": 1}}, "Potters": {"_count": 2, "line": {"_count": 1}, "clothes": {"_count": 1}}, "Harrys": {"_count": 1, "took": {"_count": 1}}, "rasped": {"_count": 1, "Griphook": {"_count": 1}}, "while": {"_count": 1, "it": {"_count": 1}}, "nor": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "they": {"_count": 1, "mustnt": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "sword": {"_count": 2, "isnt": {"_count": 1}, "of": {"_count": 1}}, "identity": {"_count": 1, "and": {"_count": 1}}, "Galleons": {"_count": 2, "onto": {"_count": 1}, "that": {"_count": 1}}}, "amusing": {"_count": 24, "said": {"_count": 1, "Nearly": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "!": {"_count": 2}, "?": {"_count": 1}}, "joke": {"_count": 2, "on": {"_count": 2}}, "to": {"_count": 2, "tell": {"_count": 1}, "turn": {"_count": 1}}, "oh": {"_count": 1, "dear": {"_count": 1}}, "because": {"_count": 1, "Crabbe": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "yeah": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "Hermione": {"_count": 1}}, "so": {"_count": 1, "amusing": {"_count": 1}}, "in": {"_count": 1, "fact": {"_count": 1}}, "comments": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "which": {"_count": 1}}, "stories": {"_count": 1, "": {"_count": 1}}, "mistake": {"_count": 1, "in": {"_count": 1}}}, "meaningful": {"_count": 4, "look": {"_count": 4, "from": {"_count": 1}, "at": {"_count": 2}, "as": {"_count": 1}}}, "podium": {"_count": 6, "and": {"_count": 1, "climbing": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}}, "spotlight": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 2, "rest": {"_count": 1}, "cup": {"_count": 1}}}, "lamented": {"_count": 2, "lords": {"_count": 1, "ladies": {"_count": 1}}, "the": {"_count": 1, "fact": {"_count": 1}}}, "lords": {"_count": 1, "ladies": {"_count": 1, "and": {"_count": 1}}}, "sorrow": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Hockey": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "vainly": {"_count": 2, "to": {"_count": 2, "recapture": {"_count": 1}, "throw": {"_count": 1}}}, "recapture": {"_count": 5, "his": {"_count": 1, "audience": {"_count": 1}}, "Black": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 2, "Sirius": {"_count": 1}, "any": {"_count": 1}}, "the": {"_count": 1, "tiny": {"_count": 1}}}, "sailing": {"_count": 4, "past": {"_count": 1, "him": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "fast": {"_count": 1, "over": {"_count": 1}}}, "action": {"_count": 33, "and": {"_count": 4, "the": {"_count": 1}, "dropped": {"_count": 1}, "having": {"_count": 1}, "assumed": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "its": {"_count": 1, "phenomenal": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 11}, "!": {"_count": 2}}, "he": {"_count": 1, "felt": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "might": {"_count": 1}}, "abated": {"_count": 1, "however": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "What": {"_count": 1, "are": {"_count": 1}}, "would": {"_count": 1, "assuage": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}}, "Pudding": {"_count": 1, "might": {"_count": 1, "not": {"_count": 1}}}, "murderous": {"_count": 9, "voice": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "stare": {"_count": 1, "and": {"_count": 1}}, "old": {"_count": 1, "ghoul": {"_count": 1}}, "centaurs": {"_count": 1, "on": {"_count": 1}}, "gargantuan": {"_count": 1, "spider": {"_count": 1}}, "quest": {"_count": 1, "were": {"_count": 1}}}, "soo": {"_count": 1, "hungry": {"_count": 1, "": {"_count": 1}}}, "fainter": {"_count": 11, "": {"_count": 3, ".": {"_count": 3}}, "still": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "fainter": {"_count": 3}}, "until": {"_count": 2, "they": {"_count": 2}}, "again": {"_count": 1, "": {"_count": 1}}}, "phantom": {"_count": 2, "to": {"_count": 1, "whom": {"_count": 1}}, "completely": {"_count": 1, "invisible": {"_count": 1}}}, "ceilings": {"_count": 1, "didnt": {"_count": 1, "matter": {"_count": 1}}}, "SHH": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Distantly": {"_count": 2, "from": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "heard": {"_count": 1}}}, "SMELL": {"_count": 3, "BLOOD": {"_count": 1, "His": {"_count": 1}}, "HIM": {"_count": 2, "": {"_count": 2}}}, "BLOOD": {"_count": 4, "His": {"_count": 1, "stomach": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "AND": {"_count": 1, "BONE": {"_count": 1}}, "STATUS": {"_count": 1, "Pureblood": {"_count": 1}}}, "Looc": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Foothigh": {"_count": 1, "words": {"_count": 1, "had": {"_count": 1}}}, "daubed": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "threatening": {"_count": 1, "messages": {"_count": 1}}}, "CHAMBER": {"_count": 2, "OF": {"_count": 2, "SECRETS": {"_count": 2}}}, "SECRETS": {"_count": 3, "HAS": {"_count": 1, "BEEN": {"_count": 1}}, "All": {"_count": 1, "those": {"_count": 1}}, "OF": {"_count": 1, "THE": {"_count": 1}}}, "HAS": {"_count": 2, "BEEN": {"_count": 1, "OPENED": {"_count": 1}}, "SOMETHING": {"_count": 1, "TO": {"_count": 1}}}, "OPENED": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ENEMIES": {"_count": 1, "OF": {"_count": 1, "THE": {"_count": 1}}}, "HEIR": {"_count": 2, "BEWARE": {"_count": 1, "": {"_count": 1}}, "OF": {"_count": 1, "SLYTHERIN": {"_count": 1}}}, "BEWARE": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "splash": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "a": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "of": {"_count": 1, "an": {"_count": 1}}, "as": {"_count": 1, "something": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}, "he": {"_count": 1, "scrambled": {"_count": 1}}}, "caretakers": {"_count": 3, "cat": {"_count": 2, "was": {"_count": 1}, "Mrs": {"_count": 1}}, "skeletal": {"_count": 1, "gray": {"_count": 1}}}, "torch": {"_count": 8, "bracket": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "burning": {"_count": 1, "in": {"_count": 1}}, "lit": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "smiled": {"_count": 1}, "from": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "bracket": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "an": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 1, "out": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "about": {"_count": 1}}}, "wellfed": {"_count": 1, "people": {"_count": 1, "next": {"_count": 1}}}, "bustle": {"_count": 5, "the": {"_count": 1, "noise": {"_count": 1}}, "them": {"_count": 1, "along": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 2}, "leaving": {"_count": 1}}}, "grisly": {"_count": 4, "sight": {"_count": 1, "": {"_count": 1}}, "neon": {"_count": 1, "sign": {"_count": 1}}, "tidings": {"_count": 1, "brought": {"_count": 1}}, "injuries": {"_count": 1, "or": {"_count": 1}}}, "Heir": {"_count": 18, "beware": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 16, "Slytherin": {"_count": 14}, "Slytherins": {"_count": 1}, "Salazar": {"_count": 1}}, "Beware": {"_count": 1, "": {"_count": 1}}}, "bloodless": {"_count": 3, "face": {"_count": 1, "flushed": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "immobile": {"_count": 7, "cat": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "horizontal": {"_count": 1}, "his": {"_count": 1}, "he": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "WRITING": {"_count": 1, "ON": {"_count": 1, "THE": {"_count": 1}}}, "ON": {"_count": 12, "THE": {"_count": 3, "WALL": {"_count": 1}, "FLOOR": {"_count": 1}, "CLOSED": {"_count": 1}}, "WITH": {"_count": 1, "THE": {"_count": 1}}, "YOUR": {"_count": 1, "OWN": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 3}, "?": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "We": {"_count": 1, "wanted": {"_count": 1}}, "BEHALF": {"_count": 1, "OF": {"_count": 1}}}, "WALL": {"_count": 1, "Whats": {"_count": 1, "going": {"_count": 1}}}, "Attracted": {"_count": 1, "no": {"_count": 1, "doubt": {"_count": 1}}}, "shouldering": {"_count": 2, "his": {"_count": 2, "way": {"_count": 1}, "broom": {"_count": 1}}}, "murdered": {"_count": 43, "my": {"_count": 2, "cat": {"_count": 1}, "family": {"_count": 1}}, "Myrtle": {"_count": 1, "that": {"_count": 1}}, "murdered": {"_count": 1, "by": {"_count": 1}}, "by": {"_count": 4, "the": {"_count": 2}, "Lord": {"_count": 1}, "Voldemort": {"_count": 1}}, "thirteen": {"_count": 3, "people": {"_count": 3}}, "Harry": {"_count": 2, "said": {"_count": 1}, "Potter": {"_count": 1}}, "a": {"_count": 1, "whole": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "her": {"_count": 4, "": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}}, "all": {"_count": 1, "those": {"_count": 1}}, "at": {"_count": 2, "all": {"_count": 2}}, "ever": {"_count": 1, "since": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "been": {"_count": 1}}, "your": {"_count": 2, "parents": {"_count": 1}, "father": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "or": {"_count": 1, "tortured": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "the": {"_count": 3, "Prewetts": {"_count": 1}, "Muggle": {"_count": 1}, "wrong": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "people": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 1, "Lord": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}}, "detached": {"_count": 9, "Mrs": {"_count": 1, "Norris": {"_count": 1}}, "pleasure": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "satisfaction": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 1, "so": {"_count": 1}}, "themselves": {"_count": 1, "from": {"_count": 1}}, "way": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 1, "from": {"_count": 1}}, "itself": {"_count": 1, "whimpering": {"_count": 1}}}, "Professors": {"_count": 17, "McGonagall": {"_count": 11, "and": {"_count": 6}, "Lupin": {"_count": 1}, "GrubblyPlank": {"_count": 1}, "Flitwick": {"_count": 2}, "Snape": {"_count": 1}}, "Dumbledore": {"_count": 1, "McGonagall": {"_count": 1}}, "Snape": {"_count": 1, "and": {"_count": 1}}, "Marchbanks": {"_count": 1, "and": {"_count": 1}}, "Sprout": {"_count": 1, "Flitwick": {"_count": 1}}, "Flitwick": {"_count": 2, "and": {"_count": 1}, "Sprout": {"_count": 1}}}, "flurry": {"_count": 6, "of": {"_count": 6, "movement": {"_count": 2}, "rumor": {"_count": 1}, "snowflakes": {"_count": 1}, "snow": {"_count": 1}, "churchgoers": {"_count": 1}}}, "rollers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tense": {"_count": 32, "looks": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 5, "started": {"_count": 1}, "any": {"_count": 1}, "nervous": {"_count": 1}, "expectant": {"_count": 1}, "rather": {"_count": 1}}, "moment": {"_count": 2, "when": {"_count": 1}, "": {"_count": 1}}, "minutes": {"_count": 1, "the": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "voice": {"_count": 4, "": {"_count": 4}}, "silence": {"_count": 2, "followed": {"_count": 2}}, "too": {"_count": 1, "": {"_count": 1}}, "knot": {"_count": 1, "in": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "alarmed": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "enough": {"_count": 1, "without": {"_count": 1}}, "at": {"_count": 1, "breakfast": {"_count": 1}}, "faces": {"_count": 1, "of": {"_count": 1}}, "watching": {"_count": 1, "Lupin": {"_count": 1}}}, "pool": {"_count": 44, "of": {"_count": 10, "candlelight": {"_count": 3}, "sick": {"_count": 1}, "light": {"_count": 2}, "dim": {"_count": 1}, "his": {"_count": 1}, "blood": {"_count": 1}, "molten": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 11}, "?": {"_count": 2}}, "containing": {"_count": 1, "a": {"_count": 1}}, "sunk": {"_count": 1, "into": {"_count": 1}}, "was": {"_count": 1, "full": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "where": {"_count": 1, "so": {"_count": 1}}, "rose": {"_count": 1, "up": {"_count": 1}}, "slopping": {"_count": 1, "wildly": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "save": {"_count": 1}}, "its": {"_count": 1, "cracked": {"_count": 1}}, "with": {"_count": 1, "as": {"_count": 1}}, "this": {"_count": 1, "close": {"_count": 1}}, "after": {"_count": 1, "they": {"_count": 1}}, "bottom": {"_count": 1, "indifferent": {"_count": 1}}, "broke": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 2, "felt": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "had": {"_count": 1}}, "unfolded": {"_count": 1, "Hermione": {"_count": 1}}}, "suggestions": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "for": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "about": {"_count": 1, "burying": {"_count": 1}}}, "Transmogrifian": {"_count": 1, "Torture": {"_count": 1, "Ive": {"_count": 1}}}, "Torture": {"_count": 1, "Ive": {"_count": 1, "seen": {"_count": 1}}}, "unlucky": {"_count": 8, "I": {"_count": 1, "wasnt": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "combination": {"_count": 1, "of": {"_count": 1}}, "conjunction": {"_count": 1, "of": {"_count": 1}}, "theyre": {"_count": 1, "dead": {"_count": 1}}, "a": {"_count": 1, "tiny": {"_count": 1}}}, "comments": {"_count": 10, "were": {"_count": 2, "punctuated": {"_count": 1}, "drowned": {"_count": 1}}, "Harry": {"_count": 1, "overheard": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "about": {"_count": 3, "the": {"_count": 1}, "you": {"_count": 1}, "dangerous": {"_count": 1}}, "for": {"_count": 1, "more": {"_count": 1}}, "and": {"_count": 1, "batting": {"_count": 1}}}, "punctuated": {"_count": 10, "by": {"_count": 3, "Filch": {"_count": 1}, "what": {"_count": 1}, "loud": {"_count": 1}}, "with": {"_count": 2, "anxious": {"_count": 1}, "a": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "only": {"_count": 1, "by": {"_count": 1}}, "as": {"_count": 1, "Snape": {"_count": 1}}, "every": {"_count": 1, "word": {"_count": 1}}, "the": {"_count": 1, "walls": {"_count": 1}}}, "racking": {"_count": 3, "sobs": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "brains": {"_count": 2}}}, "detested": {"_count": 2, "Filch": {"_count": 1, "Harry": {"_count": 1}}, "tasting": {"_count": 1, "despair": {"_count": 1}}}, "recently": {"_count": 31, "stuffed": {"_count": 1, "": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "got": {"_count": 1, "it": {"_count": 1}}, "repaired": {"_count": 1, "friendship": {"_count": 1}}, "gained": {"_count": 1, "twelve": {"_count": 1}}, "come": {"_count": 2, "to": {"_count": 2}}, "taken": {"_count": 1, "to": {"_count": 1}}, "become": {"_count": 1, "the": {"_count": 1}}, "spent": {"_count": 1, "nine": {"_count": 1}}, "disclosed": {"_count": 1, "that": {"_count": 1}}, "been": {"_count": 3, "sent": {"_count": 1}, "an": {"_count": 1}, "hit": {"_count": 1}}, "as": {"_count": 2, "August": {"_count": 1}, "last": {"_count": 1}}, "by": {"_count": 1, "Barry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "rendered": {"_count": 1, "me": {"_count": 1}}, "sustained": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "five": {"_count": 1}, "dust": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 2}}, "impersonated": {"_count": 1, "which": {"_count": 1}}, "mended": {"_count": 1, "skull": {"_count": 1}}, "flushed": {"_count": 1, "with": {"_count": 1}}, "taught": {"_count": 1, "at": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "smashed": {"_count": 1, "ink": {"_count": 1}}}, "Ouagadougou": {"_count": 1, "said": {"_count": 1, "Lockhart": {"_count": 1}}}, "attacks": {"_count": 29, "the": {"_count": 1, "full": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "yet": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "but": {"_count": 1, "Im": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "since": {"_count": 1, "those": {"_count": 1}}, "stop": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "no": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "dont": {"_count": 1, "stop": {"_count": 1}}, "mustve": {"_count": 1, "stopped": {"_count": 1}}, "is": {"_count": 1, "caught": {"_count": 1}}, "on": {"_count": 3, "Muggleborns": {"_count": 1}, "them": {"_count": 1}, "students": {"_count": 1}}, "have": {"_count": 1, "there": {"_count": 1}}, "See": {"_count": 1, "here": {"_count": 1}}, "caused": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 2}}, "like": {"_count": 1, "Seamuss": {"_count": 1}}, "every": {"_count": 1, "other": {"_count": 1}}, "he": {"_count": 1, "announced": {"_count": 1}}, "was": {"_count": 1, "sentenced": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "upon": {"_count": 1, "fellow": {"_count": 1}}}, "storys": {"_count": 3, "in": {"_count": 1, "my": {"_count": 1}}, "just": {"_count": 1, "one": {"_count": 1}}, "why": {"_count": 1, "elder": {"_count": 1}}}, "provide": {"_count": 11, "the": {"_count": 2, "townsfolk": {"_count": 1}, "Ministry": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "a": {"_count": 2, "candidate": {"_count": 1}, "win": {"_count": 1}}, "me": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 1, "with": {"_count": 1}}, "protection": {"_count": 1, "": {"_count": 1}}}, "townsfolk": {"_count": 1, "with": {"_count": 1, "various": {"_count": 1}}}, "various": {"_count": 32, "amulets": {"_count": 1, "which": {"_count": 1}}, "swellings": {"_count": 1, "had": {"_count": 1}}, "disguises": {"_count": 1, "": {"_count": 1}}, "students": {"_count": 1, "": {"_count": 1}}, "objects": {"_count": 1, "fly": {"_count": 1}}, "ways": {"_count": 1, "in": {"_count": 1}}, "nearby": {"_count": 1, "windows": {"_count": 1}}, "windows": {"_count": 1, "then": {"_count": 1}}, "posters": {"_count": 1, "of": {"_count": 1}}, "trunks": {"_count": 1, "cluttering": {"_count": 1}}, "instruments": {"_count": 1, "and": {"_count": 1}}, "facts": {"_count": 1, "in": {"_count": 1}}, "varieties": {"_count": 1, "of": {"_count": 1}}, "encounters": {"_count": 1, "with": {"_count": 1}}, "people": {"_count": 1, "were": {"_count": 1}}, "Weasley": {"_count": 1, "family": {"_count": 1}}, "inhabitants": {"_count": 1, "of": {"_count": 1}}, "Healers": {"_count": 1, "called": {"_count": 1}}, "Wizarding": {"_count": 1, "careers": {"_count": 1}}, "possessions": {"_count": 1, "and": {"_count": 1}}, "fields": {"_count": 1, "": {"_count": 1}}, "antidotes": {"_count": 1, "": {"_count": 1}}, "angles": {"_count": 1, "of": {"_count": 1}}, "common": {"_count": 1, "rooms": {"_count": 1}}, "petty": {"_count": 1, "misdeeds": {"_count": 1}}, "offenses": {"_count": 1, "and": {"_count": 1}}, "hexes": {"_count": 1, "of": {"_count": 1}}, "wanderings": {"_count": 1, "right": {"_count": 1}}, "rhythms": {"_count": 1, "on": {"_count": 1}}, "stories": {"_count": 1, "weve": {"_count": 1}}, "fungi": {"_count": 1, "": {"_count": 1}}, "aspects": {"_count": 1, "of": {"_count": 1}}}, "amulets": {"_count": 2, "which": {"_count": 1, "cleared": {"_count": 1}}, "and": {"_count": 1, "other": {"_count": 1}}}, "agreement": {"_count": 12, "as": {"_count": 1, "he": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "Harrys": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "around": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "murders": {"_count": 13, "he": {"_count": 2, "had": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "this": {"_count": 1, "boy": {"_count": 1}}, "for": {"_count": 1, "which": {"_count": 1}}, "the": {"_count": 1, "wand": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "someone": {"_count": 1, "I": {"_count": 1}}, "of": {"_count": 2, "Gideon": {"_count": 1}, "Ted": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}}, "prevented": {"_count": 14, "": {"_count": 1, ".": {"_count": 1}}, "someone": {"_count": 1, "like": {"_count": 1}}, "me": {"_count": 1, "And": {"_count": 1}}, "from": {"_count": 4, "falling": {"_count": 1}, "learning": {"_count": 1}, "seeing": {"_count": 1}, "collecting": {"_count": 1}}, "the": {"_count": 2, "wounds": {"_count": 1}, "nonmagical": {"_count": 1}}, "Harry": {"_count": 1, "putting": {"_count": 1}}, "him": {"_count": 2, "from": {"_count": 1}, "coming": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "shutting": {"_count": 1}}}, "whys": {"_count": 4, "she": {"_count": 3, "all": {"_count": 1}, "got": {"_count": 1}, "suddenly": {"_count": 1}}, "Dumbledore": {"_count": 1, "been": {"_count": 1}}}, "Ask": {"_count": 17, "him": {"_count": 3, "shrieked": {"_count": 1}, "": {"_count": 1}, "if": {"_count": 1}}, "her": {"_count": 2, "if": {"_count": 1}, "now": {"_count": 1}}, "them": {"_count": 1, "exactly": {"_count": 1}}, "McGonagall": {"_count": 2, "if": {"_count": 1}, "go": {"_count": 1}}, "Ron": {"_count": 1, "if": {"_count": 1}}, "us": {"_count": 1, "no": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 1, "question": {"_count": 1}}, "for": {"_count": 2, "Tom": {"_count": 1}, "his": {"_count": 1}}, "away": {"_count": 3, "then": {"_count": 3}}}, "blotched": {"_count": 1, "and": {"_count": 1, "tearstained": {"_count": 1}}}, "tearstained": {"_count": 4, "face": {"_count": 3, "to": {"_count": 1}, "out": {"_count": 1}, "looking": {"_count": 1}}, "and": {"_count": 1, "trembling": {"_count": 1}}}, "purpling": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Squib": {"_count": 22, "": {"_count": 10, "!": {"_count": 3}, "?": {"_count": 3}, ".": {"_count": 4}}, "is": {"_count": 2, "": {"_count": 1}, "someone": {"_count": 1}}, "as": {"_count": 1, "Mundungus": {"_count": 1}}, "said": {"_count": 2, "Mrs": {"_count": 1}, "Harry": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "could": {"_count": 1}}, "you": {"_count": 1, "filthy": {"_count": 1}}, "neighbor": {"_count": 1, "the": {"_count": 1}}, "sister": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "Ariana": {"_count": 1, "was": {"_count": 1}}}, "uncomfortably": {"_count": 29, "aware": {"_count": 3, "of": {"_count": 2}, "that": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "on": {"_count": 2, "either": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 3}, "their": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 2, "Voldemort": {"_count": 1}, "he": {"_count": 1}}, "it": {"_count": 1, "felt": {"_count": 1}}, "tight": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "changed": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "Hermione": {"_count": 1}}, "you": {"_count": 1, "must": {"_count": 1}}, "crowded": {"_count": 1, "": {"_count": 1}}}, "foreboding": {"_count": 6, "increased": {"_count": 2, "he": {"_count": 1}, "as": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "it": {"_count": 1, "was": {"_count": 1}}}, "increased": {"_count": 16, "he": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 3, "pressure": {"_count": 1}, "number": {"_count": 1}, "ominous": {"_count": 1}}, "respect": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "by": {"_count": 1, "his": {"_count": 1}}, "sensitivity": {"_count": 1, "firmly": {"_count": 1}}, "his": {"_count": 2, "sense": {"_count": 2}}, "as": {"_count": 1, "they": {"_count": 1}}, "security": {"_count": 1, "notwithstanding": {"_count": 1}}, "in": {"_count": 1, "intensity": {"_count": 1}}, "tenfold": {"_count": 1, "in": {"_count": 1}}, "fear": {"_count": 1, "and": {"_count": 1}}}, "explanation": {"_count": 32, "about": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "allow": {"_count": 1}}, "before": {"_count": 1, "we": {"_count": 1}}, "of": {"_count": 9, "the": {"_count": 1}, "Hagrids": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 2}, "an": {"_count": 1}, "bowtruckle": {"_count": 1}, "this": {"_count": 1}}, "but": {"_count": 1, "Ginny": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "had": {"_count": 1, "made": {"_count": 1}}, "available": {"_count": 1, "to": {"_count": 1}}, "involving": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 1, "there": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 2, "Malfoys": {"_count": 1}, "zem": {"_count": 1}}, "imagined": {"_count": 1, "it": {"_count": 1}}, "unnecessary": {"_count": 1, "by": {"_count": 1}}, "in": {"_count": 1, "Dumbledores": {"_count": 1}}, "Voldemort": {"_count": 1, "feared": {"_count": 1}}, "my": {"_count": 1, "Lord": {"_count": 1}}, "to": {"_count": 1, "Ron": {"_count": 1}}}, "farfetched": {"_count": 7, "if": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "lunacy": {"_count": 1}}, "story": {"_count": 1, "appears": {"_count": 1}}, "Hermione": {"_count": 1, "on": {"_count": 1}}, "schemes": {"_count": 1, "like": {"_count": 1}}, "their": {"_count": 1, "speculation": {"_count": 1}}}, "bodiless": {"_count": 2, "voice": {"_count": 2, "no": {"_count": 1}, "and": {"_count": 1}}}, "Without": {"_count": 38, "any": {"_count": 2, "supper": {"_count": 1}, "other": {"_count": 1}}, "warning": {"_count": 3, "twelvefoot": {"_count": 1}, "the": {"_count": 1}, "Malfoy": {"_count": 1}}, "magid": {"_count": 1, "He": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "knowing": {"_count": 1, "what": {"_count": 1}}, "a": {"_count": 4, "word": {"_count": 3}, "note": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "it": {"_count": 1, "I": {"_count": 1}}, "glancing": {"_count": 1, "at": {"_count": 1}}, "pausing": {"_count": 4, "to": {"_count": 4}}, "another": {"_count": 2, "word": {"_count": 2}}, "so": {"_count": 1, "much": {"_count": 1}}, "ever": {"_count": 1, "practicing": {"_count": 1}}, "waiting": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "preamble": {"_count": 1, "Harry": {"_count": 1}}, "really": {"_count": 1, "thinking": {"_count": 1}}, "the": {"_count": 2, "long": {"_count": 1}, "Express": {"_count": 1}}, "speaking": {"_count": 2, "Hermione": {"_count": 1}, "to": {"_count": 1}}, "realizing": {"_count": 2, "what": {"_count": 1}, "it": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 1, "Horcruxes": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "meaning": {"_count": 1, "to": {"_count": 1}}}, "provided": {"_count": 12, "food": {"_count": 1, "fit": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 3, "bonfire": {"_count": 1}, "large": {"_count": 1}, "distraction": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "dinner": {"_count": 1}}, "And": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "widened": {"_count": 23, "": {"_count": 10, ".": {"_count": 10}}, "as": {"_count": 3, "though": {"_count": 1}, "they": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "with": {"_count": 1, "shock": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 2}, "she": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "in": {"_count": 1, "shock": {"_count": 1}}, "maliciously": {"_count": 1, "": {"_count": 1}}}, "deprived": {"_count": 1, "of": {"_count": 1, "certain": {"_count": 1}}}, "privileges": {"_count": 4, "until": {"_count": 1, "he": {"_count": 1}}, "or": {"_count": 1, "she": {"_count": 1}}, "pertaining": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "may": {"_count": 1}}}, "evidence": {"_count": 53, "at": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 9, "such": {"_count": 1}, "some": {"_count": 2}, "Peeves": {"_count": 1}, "foul": {"_count": 1}, "one": {"_count": 1}, "mishandled": {"_count": 1}, "being": {"_count": 1}, "all": {"_count": 1}}, "that": {"_count": 8, "Slytherin": {"_count": 1}, "Hagrid": {"_count": 1}, "these": {"_count": 1}, "not": {"_count": 1}, "they": {"_count": 1}, "such": {"_count": 1}, "Bungs": {"_count": 1}, "the": {"_count": 1}}, "all": {"_count": 1, "pointed": {"_count": 1}}, "count": {"_count": 1, "for": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 3}}, "is": {"_count": 2, "zere": {"_count": 1}, "that": {"_count": 1}}, "already": {"_count": 1, "on": {"_count": 1}}, "against": {"_count": 3, "you": {"_count": 2}, "Severus": {"_count": 1}}, "was": {"_count": 4, "given": {"_count": 1}, "your": {"_count": 1}, "that": {"_count": 2}}, "has": {"_count": 2, "recently": {"_count": 2}}, "about": {"_count": 2, "why": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "even": {"_count": 1}}, "he": {"_count": 2, "ever": {"_count": 1}, "could": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "suggests": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 2, "that": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "pointed": {"_count": 1, "we": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}, "as": {"_count": 2, "to": {"_count": 1}, "if": {"_count": 1}}, "said": {"_count": 1, "Xenophilius": {"_count": 1}}}, "lightblue": {"_count": 3, "gaze": {"_count": 1, "made": {"_count": 1}}, "stare": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "fixed": {"_count": 1}}}, "Xrayed": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Innocent": {"_count": 3, "until": {"_count": 1, "proven": {"_count": 1}}, "but": {"_count": 1, "scared": {"_count": 1}}, "Singing": {"_count": 1, "Sensation": {"_count": 1}}}, "proven": {"_count": 8, "guilty": {"_count": 1, "Severus": {"_count": 1}}, "again": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 3, "be": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "Wizarding": {"_count": 1, "ancestry": {"_count": 1}}, "theyre": {"_count": 1, "loyal": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}}, "punishmenti": {"_count": 1, "We": {"_count": 1, "will": {"_count": 1}}}, "patiently": {"_count": 11, "": {"_count": 8, ".": {"_count": 8}}, "its": {"_count": 1, "always": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "grabbing": {"_count": 1, "his": {"_count": 1}}}, "Professer": {"_count": 1, "Sprout": {"_count": 1, "recently": {"_count": 1}}}, "procure": {"_count": 4, "some": {"_count": 2, "Mandrakes": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "hat": {"_count": 1}}, "treasures": {"_count": 1, "to": {"_count": 1}}}, "revive": {"_count": 8, "Mrs": {"_count": 2, "Norris": {"_count": 2}}, "those": {"_count": 2, "poor": {"_count": 1}, "people": {"_count": 1}}, "him": {"_count": 1, "until": {"_count": 1}}, "your": {"_count": 1, "master": {"_count": 1}}, "Mr": {"_count": 1, "Bode": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}}, "butted": {"_count": 1, "in": {"_count": 1, "": {"_count": 1}}}, "Restorative": {"_count": 1, "Draught": {"_count": 1, "in": {"_count": 1}}}, "icily": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "cold": {"_count": 1, "and": {"_count": 1}}}, "hesitation": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "saying": {"_count": 1}}, "the": {"_count": 1, "Prime": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}, "his": {"_count": 1, "moment": {"_count": 1}}, "The": {"_count": 1, "three": {"_count": 1}}, "was": {"_count": 1, "all": {"_count": 1}}}, "Hearing": {"_count": 5, "voices": {"_count": 3, "no": {"_count": 2}, "": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "familiar": {"_count": 1, "friendly": {"_count": 1}}}, "Chamber": {"_count": 89, "Has": {"_count": 1, "Been": {"_count": 1}}, "of": {"_count": 50, "Secrets": {"_count": 50}}, "": {"_count": 7, "?": {"_count": 2}, ".": {"_count": 5}}, "and": {"_count": 3, "no": {"_count": 1}, "he": {"_count": 1}, "set": {"_count": 1}}, "can": {"_count": 1, "only": {"_count": 1}}, "really": {"_count": 1, "has": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 4, "opened": {"_count": 3}, "dissolving": {"_count": 1}}, "last": {"_count": 2, "time": {"_count": 2}}, "is": {"_count": 1, "and": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "itself": {"_count": 2, "": {"_count": 1}, "loomed": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 2, "if": {"_count": 1}, "in": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "while": {"_count": 1}}, "rang": {"_count": 1, "with": {"_count": 1}}, "wall": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "entrance": {"_count": 1, "": {"_count": 1}}, "bound": {"_count": 1, "by": {"_count": 1}}, "o": {"_count": 1, "Secrets": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}}, "Been": {"_count": 15, "Opened": {"_count": 2, "": {"_count": 2}}, "having": {"_count": 2, "a": {"_count": 2}}, "saving": {"_count": 1, "my": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "humming": {"_count": 1, "ever": {"_count": 1}}, "teaching": {"_count": 1, "long": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "absent": {"_count": 1, "for": {"_count": 1}}, "yes": {"_count": 1, "she": {"_count": 1}}, "kissing": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "stung": {"_count": 1, "": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "reading": {"_count": 1, "Rita": {"_count": 1}}}, "Opened": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "rings": {"_count": 9, "a": {"_count": 2, "sort": {"_count": 1}, "bell": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "across": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}, "gone": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}}, "stifled": {"_count": 11, "a": {"_count": 3, "snigger": {"_count": 1}, "yawn": {"_count": 1}, "little": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "moans": {"_count": 1, "of": {"_count": 1}}, "sob": {"_count": 1, "": {"_count": 1}}, "cries": {"_count": 1, "Ron": {"_count": 1}}, "noise": {"_count": 1, "somewhere": {"_count": 1}}, "gasp": {"_count": 1, "": {"_count": 1}}, "sounds": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}}, "Kind": {"_count": 3, "of": {"_count": 2, "the": {"_count": 1}, "makes": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}}, "Squibs": {"_count": 9, "are": {"_count": 1, "quite": {"_count": 1}}, "and": {"_count": 2, "Muggleborns": {"_count": 1}, "if": {"_count": 1}}, "cat": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "dementors": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 2, "often": {"_count": 1}, "usually": {"_count": 1}}, "would": {"_count": 1, "there": {"_count": 1}}}, "comes": {"_count": 51, "along": {"_count": 1, "and": {"_count": 1}}, "It": {"_count": 1, "wont": {"_count": 1}}, "down": {"_count": 5, "to": {"_count": 5}}, "to": {"_count": 8, "that": {"_count": 1}, "him": {"_count": 1}, "the": {"_count": 4}, "no": {"_count": 1}, "see": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 2}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 3, "": {"_count": 1}, "with": {"_count": 1}, "from": {"_count": 1}}, "Gilbert": {"_count": 1, "Wimple": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Krum": {"_count": 1}}, "ever": {"_count": 1, "closer": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 4, "said": {"_count": 1}, "you": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "of": {"_count": 3, "more": {"_count": 1}, "age": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "out": {"_count": 3, "with": {"_count": 1}, "into": {"_count": 1}, "somewhere": {"_count": 1}}, "our": {"_count": 1, "way": {"_count": 1}}, "Ernie": {"_count": 1, "and": {"_count": 1}}, "another": {"_count": 1, "one": {"_count": 1}}, "in": {"_count": 1, "Potter": {"_count": 1}}, "an": {"_count": 1, "goes": {"_count": 1}}, "Slytherin": {"_count": 1, "s": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "calling": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "we": {"_count": 1}}, "a": {"_count": 1, "time": {"_count": 1}}, "round": {"_count": 1, "for": {"_count": 1}}}, "attacker": {"_count": 8, "might": {"_count": 2, "come": {"_count": 2}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "whoever": {"_count": 1, "it": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "Hermione": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}}, "Skowers": {"_count": 3, "AllPurpose": {"_count": 3, "Magical": {"_count": 3}}}, "AllPurpose": {"_count": 3, "Magical": {"_count": 3, "Mess": {"_count": 3}}}, "Remover": {"_count": 4, "but": {"_count": 1, "to": {"_count": 1}}, "No": {"_count": 1, "Pain": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "Ritas": {"_count": 1}}}, "redeyed": {"_count": 1, "through": {"_count": 1, "the": {"_count": 1}}}, "unsuspecting": {"_count": 2, "students": {"_count": 1, "and": {"_count": 1}}, "Argus": {"_count": 1, "Filch": {"_count": 1}}}, "fate": {"_count": 15, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "that": {"_count": 3, "seemed": {"_count": 1}, "awaits": {"_count": 1}, "had": {"_count": 1}}, "favors": {"_count": 1, "Lord": {"_count": 1}}, "met": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "in": {"_count": 2, "reverse": {"_count": 1}, "low": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "bracingly": {"_count": 14, "": {"_count": 11, ".": {"_count": 11}}, "And": {"_count": 1, "hes": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "Stuff": {"_count": 4, "like": {"_count": 2, "this": {"_count": 1}, "that": {"_count": 1}}, "he": {"_count": 2, "can": {"_count": 2}}}, "Petrify": {"_count": 1, "Filch": {"_count": 1, "before": {"_count": 1}}}, "blanched": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Nor": {"_count": 18, "could": {"_count": 1, "Harry": {"_count": 1}}, "am": {"_count": 2, "I": {"_count": 2}}, "apparently": {"_count": 1, "did": {"_count": 1}}, "did": {"_count": 4, "it": {"_count": 1}, "anybody": {"_count": 1}, "I": {"_count": 2}}, "were": {"_count": 1, "they": {"_count": 1}}, "does": {"_count": 1, "it": {"_count": 1}}, "ours": {"_count": 1, "added": {"_count": 1}}, "do": {"_count": 3, "the": {"_count": 1}, "we": {"_count": 1}, "I": {"_count": 1}}, "me": {"_count": 1, "whispered": {"_count": 1}}, "had": {"_count": 1, "he": {"_count": 1}}, "have": {"_count": 2, "they": {"_count": 1}, "I": {"_count": 1}}}, "response": {"_count": 16, "from": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 8, "the": {"_count": 2}, "everything": {"_count": 1}, "Harrys": {"_count": 2}, "Harry": {"_count": 1}, "them": {"_count": 1}, "Hermione": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "by": {"_count": 1, "asking": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "did": {"_count": 1, "not": {"_count": 1}}, "except": {"_count": 1, "to": {"_count": 1}}}, "scrape": {"_count": 10, "tubeworms": {"_count": 1, "off": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "passes": {"_count": 1, "in": {"_count": 1}}, "an": {"_count": 1, "\u2018Acceptable": {"_count": 1}}, "a": {"_count": 2, "win": {"_count": 1}, "living": {"_count": 1}}, "the": {"_count": 2, "Quidditch": {"_count": 1}, "bottom": {"_count": 1}}, "some": {"_count": 1, "dirt": {"_count": 1}}}, "tubeworms": {"_count": 1, "off": {"_count": 1, "the": {"_count": 1}}}, "Finch": {"_count": 4, "Fletchley": {"_count": 4, "the": {"_count": 1}, "but": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}}}, "Fletchley": {"_count": 4, "the": {"_count": 1, "Hufflepuff": {"_count": 1}}, "but": {"_count": 1, "Snape": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "whom": {"_count": 1}}}, "threefootlong": {"_count": 1, "composition": {"_count": 1, "on": {"_count": 1}}}, "composition": {"_count": 5, "on": {"_count": 1, "The": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 1, "use": {"_count": 1}}, "of": {"_count": 1, "this": {"_count": 1}}, "We": {"_count": 1, "did": {"_count": 1}}}, "Medieval": {"_count": 2, "Assembly": {"_count": 1, "of": {"_count": 1}}, "Sorcery": {"_count": 1, "": {"_count": 1}}}, "Assembly": {"_count": 1, "of": {"_count": 1, "European": {"_count": 1}}}, "European": {"_count": 2, "Wizards": {"_count": 1, "": {"_count": 1}}, "schools": {"_count": 1, "of": {"_count": 1}}}, "writings": {"_count": 1, "tiny": {"_count": 1, "": {"_count": 1}}}, "unrolling": {"_count": 5, "his": {"_count": 1, "own": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "the": {"_count": 2, "parchment": {"_count": 2}}, "it": {"_count": 1, "at": {"_count": 1}}}, "Somewhere": {"_count": 18, "over": {"_count": 1, "there": {"_count": 1}}, "there": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 5, "Wales": {"_count": 1}, "the": {"_count": 3}, "Hogsmeade": {"_count": 1}}, "above": {"_count": 2, "him": {"_count": 1}, "them": {"_count": 1}}, "very": {"_count": 1, "cold": {"_count": 1}}, "under": {"_count": 1, "Harrys": {"_count": 1}}, "he": {"_count": 1, "knew": {"_count": 1}}, "about": {"_count": 1, "": {"_count": 1}}, "far": {"_count": 1, "beyond": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "near": {"_count": 1, "here": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bookshelves": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "and": {"_count": 1, "Hermione": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "pulling": {"_count": 1, "down": {"_count": 1}}}, "irritable": {"_count": 14, "and": {"_count": 1, "at": {"_count": 1}}, "woman": {"_count": 1, "who": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "vulturelike": {"_count": 1, "librarian": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "Hedwig": {"_count": 1}}, "noises": {"_count": 1, "now": {"_count": 1}}, "twitch": {"_count": 1, "as": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "expression": {"_count": 1, "softened": {"_count": 1}}}, "twoweek": {"_count": 1, "waiting": {"_count": 1, "list": {"_count": 1}}}, "Secrets": {"_count": 58, "": {"_count": 18, ".": {"_count": 12}, "?": {"_count": 5}, "!": {"_count": 1}}, "said": {"_count": 4, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "Percy": {"_count": 1}, "Ron": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "unleash": {"_count": 1, "the": {"_count": 1}}, "Has": {"_count": 1, "Been": {"_count": 1}}, "for": {"_count": 3, "centuries": {"_count": 1}, "a": {"_count": 1}, "hours": {"_count": 1}}, "is": {"_count": 4, "open": {"_count": 1}, "indeed": {"_count": 1}, "": {"_count": 2}}, "has": {"_count": 1, "been": {"_count": 1}}, "was": {"_count": 3, "opened": {"_count": 2}, "supposed": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "fifty": {"_count": 1, "years": {"_count": 1}}, "and": {"_count": 5, "thats": {"_count": 1}, "finally": {"_count": 1}, "discover": {"_count": 1}, "lies": {"_count": 2}}, "closed": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}, "forsaken": {"_count": 1, "by": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "to": {"_count": 3, "He": {"_count": 1}, "lure": {"_count": 1}, "reopen": {"_count": 1}}, "which": {"_count": 1, "resulted": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "reopened": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 4}}}, "bickering": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 2, "listen": {"_count": 1}, "bother": {"_count": 1}}, "too": {"_count": 1, "loudly": {"_count": 1}}, "Harry": {"_count": 1, "slipped": {"_count": 1}}, "and": {"_count": 1, "gloom": {"_count": 1}}}, "dullest": {"_count": 2, "subject": {"_count": 1, "on": {"_count": 1}}, "speech": {"_count": 1, "Ive": {"_count": 1}}}, "Ancient": {"_count": 14, "and": {"_count": 1, "shriveled": {"_count": 1}}, "Runes": {"_count": 12, "": {"_count": 2}, "Made": {"_count": 1}, "Muggle": {"_count": 1}, "Hermione": {"_count": 2}, "Ron": {"_count": 2}, "exam": {"_count": 1}, "muttered": {"_count": 1}, "and": {"_count": 1}, "class": {"_count": 1}}, "Rune": {"_count": 1, "books": {"_count": 1}}}, "routine": {"_count": 4, "had": {"_count": 1, "not": {"_count": 1}}, "to": {"_count": 1, "match": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}}, "varied": {"_count": 5, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "form": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "ever": {"_count": 1, "changing": {"_count": 1}}, "opportunities": {"_count": 1, "it": {"_count": 1}}}, "cleaner": {"_count": 5, "until": {"_count": 1, "nearly": {"_count": 1}}, "were": {"_count": 1, "moving": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "empty": {"_count": 1}}}, "1289": {"_count": 1, "looked": {"_count": 1, "amazed": {"_count": 1}}}, "trance": {"_count": 6, "Lavender": {"_count": 1, "Browns": {"_count": 1}}, "had": {"_count": 2, "a": {"_count": 1}, "been": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}, "a": {"_count": 1, "real": {"_count": 1}}, "well": {"_count": 1, "that": {"_count": 1}}}, "Browns": {"_count": 2, "head": {"_count": 1, "came": {"_count": 1}}, "face": {"_count": 1, "and": {"_count": 1}}}, "wheezy": {"_count": 13, "voice": {"_count": 6, "": {"_count": 4}, "raised": {"_count": 1}, "mutter": {"_count": 1}}, "growl": {"_count": 1, "": {"_count": 1}}, "breathing": {"_count": 1, "was": {"_count": 1}}, "droning": {"_count": 1, "voice": {"_count": 1}}, "chuckle": {"_count": 1, "": {"_count": 1}}, "criticisms": {"_count": 1, "of": {"_count": 1}}, "giggle": {"_count": 2, "": {"_count": 1}, "that": {"_count": 1}}}, "facts": {"_count": 16, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "about": {"_count": 4, "his": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}, "those": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "all": {"_count": 1}}, "Molly": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "Rookwood": {"_count": 1, "": {"_count": 1}}, "try": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}}, "myths": {"_count": 1, "and": {"_count": 1, "legends": {"_count": 1}}}, "legends": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "always": {"_count": 1, "have": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}}, "snapping": {"_count": 18, "and": {"_count": 3, "continued": {"_count": 1}, "snarling": {"_count": 1}, "biting": {"_count": 1}}, "branches": {"_count": 1, "as": {"_count": 1}}, "furiously": {"_count": 1, "at": {"_count": 1}}, "aggressively": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "long": {"_count": 1}}, "twigs": {"_count": 1, "the": {"_count": 1}}, "noise": {"_count": 1, "Draco": {"_count": 1}}, "open": {"_count": 1, "again": {"_count": 1}}, "shut": {"_count": 2, "the": {"_count": 1}, "Weird": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "at": {"_count": 1, "pigeons": {"_count": 1}}, "her": {"_count": 2, "long": {"_count": 1}, "bag": {"_count": 1}}, "the": {"_count": 1, "gold": {"_count": 1}}, "jaws": {"_count": 1, "hung": {"_count": 1}}}, "subcommittee": {"_count": 1, "of": {"_count": 1, "Sardinian": {"_count": 1}}}, "Sardinian": {"_count": 1, "sorcerers": {"_count": 1, "He": {"_count": 1}}}, "sorcerers": {"_count": 2, "He": {"_count": 1, "stuttered": {"_count": 1}}, "Thus": {"_count": 1, "Hogwarts": {"_count": 1}}}, "stuttered": {"_count": 2, "to": {"_count": 1, "a": {"_count": 1}}, "Fudge": {"_count": 1, "": {"_count": 1}}}, "Grant": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "basis": {"_count": 4, "in": {"_count": 1, "fact": {"_count": 1}}, "of": {"_count": 2, "their": {"_count": 1}, "all": {"_count": 1}}, "for": {"_count": 1, "believing": {"_count": 1}}}, "sensational": {"_count": 3, "even": {"_count": 1, "ludicrous": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "nature": {"_count": 1, "of": {"_count": 1}}}, "ludicrous": {"_count": 6, "tale": {"_count": 1, "But": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "lion": {"_count": 1, "hat": {"_count": 1}}, "headdress": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}}, "tale": {"_count": 22, "But": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 2, "to": {"_count": 2}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 3}}, "departed": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "planted": {"_count": 1}}, "however": {"_count": 1, "started": {"_count": 1}}, "of": {"_count": 4, "kidnap": {"_count": 1}, "deepest": {"_count": 1}, "Lord": {"_count": 1}, "Tom": {"_count": 1}}, "worthy": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "wish": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "obvious": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "didnt": {"_count": 1, "really": {"_count": 1}}, "or": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "founded": {"_count": 3, "over": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Most": {"_count": 1}}}, "precise": {"_count": 15, "date": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "moment": {"_count": 10, "Percy": {"_count": 1}, "a": {"_count": 2}, "there": {"_count": 2}, "the": {"_count": 4}, "Grawp": {"_count": 1}}, "positions": {"_count": 1, "of": {"_count": 1}}, "words": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 1, "terrible": {"_count": 1}}}, "uncertain": {"_count": 7, "by": {"_count": 1, "the": {"_count": 1}}, "step": {"_count": 1, "toward": {"_count": 1}}, "terms": {"_count": 1, "that": {"_count": 1}}, "whether": {"_count": 1, "he": {"_count": 1}}, "what": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "named": {"_count": 21, "after": {"_count": 3, "them": {"_count": 1}, "those": {"_count": 1}, "him": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "him": {"_count": 4, "godfather": {"_count": 1}, "he": {"_count": 1}, "just": {"_count": 1}, "Ted": {"_count": 1}}, "names": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "themselves": {"_count": 1, "": {"_count": 1}}, "each": {"_count": 1, "drink": {"_count": 1}}, "the": {"_count": 1, "players": {"_count": 1}}, "Serious": {"_count": 1, "Black": {"_count": 1}}, "Narcissa": {"_count": 1, "gained": {"_count": 1}}, "Spinners": {"_count": 1, "End": {"_count": 1}}, "Tom": {"_count": 1, "for": {"_count": 1}}, "Selwyn": {"_count": 1, "": {"_count": 1}}, "temporary": {"_count": 1, "Minister": {"_count": 1}}, "for": {"_count": 1, "two": {"_count": 1}}}, "Godric": {"_count": 13, "Gryffindor": {"_count": 11, "Helga": {"_count": 1}, "": {"_count": 3}, "founder": {"_count": 1}, "resided": {"_count": 1}, "he": {"_count": 1}, "is": {"_count": 1}, "could": {"_count": 1}, "was": {"_count": 1}, "Gryffindors": {"_count": 1}}, "Gryffindors": {"_count": 2, "birthplace": {"_count": 1}, "And": {"_count": 1}}}, "Helga": {"_count": 3, "Hufflepuff": {"_count": 2, "Rowena": {"_count": 1}, "which": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "as": {"_count": 1}}}, "Rowena": {"_count": 5, "Ravenclaw": {"_count": 5, "and": {"_count": 1}, "": {"_count": 1}, "lay": {"_count": 1}, "from": {"_count": 1}, "at": {"_count": 1}}}, "Salazar": {"_count": 13, "Slytherin": {"_count": 11, "": {"_count": 3}, "was": {"_count": 2}, "himself": {"_count": 1}, "against": {"_count": 1}, "can": {"_count": 1}, "prized": {"_count": 1}, "hankering": {"_count": 1}, "will": {"_count": 1}}, "Slytherins": {"_count": 2, "noble": {"_count": 1}, "": {"_count": 1}}}, "prying": {"_count": 2, "Muggle": {"_count": 1, "eyes": {"_count": 1}}, "eyes": {"_count": 1, "and": {"_count": 1}}}, "persecution": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "blearily": {"_count": 6, "around": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}, "Someone": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}}, "founders": {"_count": 16, "worked": {"_count": 1, "in": {"_count": 1}}, "knew": {"_count": 1, "nothing": {"_count": 1}}, "Formed": {"_count": 1, "their": {"_count": 1}}, "put": {"_count": 1, "some": {"_count": 1}}, "of": {"_count": 2, "our": {"_count": 1}, "Hogwarts": {"_count": 1}}, "had": {"_count": 1, "A": {"_count": 1}}, "Retained": {"_count": 1, "friendships": {"_count": 1}}, "four": {"_count": 1, "Were": {"_count": 1}}, "thought": {"_count": 1, "boys": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "would": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "objects": {"_count": 1, "": {"_count": 1}}, "object": {"_count": 2, "to": {"_count": 1}, "there": {"_count": 1}}}, "seeking": {"_count": 18, "out": {"_count": 2, "youngsters": {"_count": 1}, "those": {"_count": 1}}, "my": {"_count": 1, "master": {"_count": 1}}, "reassurance": {"_count": 3, "he": {"_count": 1}, "about": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 2, "argument": {"_count": 1}, "old": {"_count": 1}}, "stories": {"_count": 1, "Mr": {"_count": 1}}, "a": {"_count": 4, "challenging": {"_count": 1}, "job": {"_count": 1}, "new": {"_count": 1}, "sign": {"_count": 1}}, "so": {"_count": 1, "assiduously": {"_count": 1}}, "protection": {"_count": 1, "the": {"_count": 1}}, "some": {"_count": 1, "shared": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "one": {"_count": 1, "last": {"_count": 1}}}, "educated": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "Borgin": {"_count": 1, "and": {"_count": 1}}}, "disagreements": {"_count": 2, "sprang": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}}, "rift": {"_count": 2, "began": {"_count": 1, "to": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}}, "selective": {"_count": 1, "about": {"_count": 1, "the": {"_count": 1}}}, "allmagic": {"_count": 1, "families": {"_count": 1, "": {"_count": 1}}}, "parentage": {"_count": 5, "believing": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "my": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "untrustworthy": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "around": {"_count": 1, "its": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "pursing": {"_count": 2, "his": {"_count": 1, "lips": {"_count": 1}}, "her": {"_count": 1, "lips": {"_count": 1}}}, "Reliable": {"_count": 1, "historical": {"_count": 1, "sources": {"_count": 1}}}, "historical": {"_count": 3, "sources": {"_count": 2, "tell": {"_count": 1}, "the": {"_count": 1}}, "artifact": {"_count": 1, "and": {"_count": 1}}}, "sources": {"_count": 10, "tell": {"_count": 3, "us": {"_count": 1}, "me": {"_count": 2}}, "said": {"_count": 1, "Filch": {"_count": 1}}, "of": {"_count": 3, "light": {"_count": 1}, "fact": {"_count": 1}, "distraction": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "sword": {"_count": 1}}, "they": {"_count": 1, "simply": {"_count": 1}}}, "obscured": {"_count": 18, "by": {"_count": 9, "the": {"_count": 3}, "a": {"_count": 2}, "beard": {"_count": 1}, "hair": {"_count": 1}, "long": {"_count": 1}, "thick": {"_count": 1}}, "his": {"_count": 2, "senses": {"_count": 1}, "vision": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "could": {"_count": 1, "move": {"_count": 1}}, "her": {"_count": 1, "vision": {"_count": 1}}, "with": {"_count": 2, "steam": {"_count": 1}, "snow": {"_count": 1}}, "the": {"_count": 2, "stars": {"_count": 1}, "tiny": {"_count": 1}}}, "fanciful": {"_count": 1, "legend": {"_count": 1, "of": {"_count": 1}}}, "according": {"_count": 27, "to": {"_count": 27, "the": {"_count": 8}, "how": {"_count": 1}, "her": {"_count": 1}, "Bagman": {"_count": 1}, "MadEye": {"_count": 1}, "Which": {"_count": 1}, "you": {"_count": 3}, "Professor": {"_count": 1}, "this": {"_count": 1}, "its": {"_count": 1}, "his": {"_count": 1}, "what": {"_count": 1}, "whether": {"_count": 1}, "Gregorovitch": {"_count": 1}, "Muriel": {"_count": 1}, "Beedle": {"_count": 1}, "Griphooks": {"_count": 1}, "House": {"_count": 1}}}, "heir": {"_count": 12, "arrived": {"_count": 1, "at": {"_count": 1}}, "alone": {"_count": 1, "would": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "quite": {"_count": 1}}, "single": {"_count": 1, "handed": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "for": {"_count": 1, "a": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}}, "unseal": {"_count": 1, "the": {"_count": 1, "Chamber": {"_count": 1}}}, "unleash": {"_count": 2, "the": {"_count": 1, "horror": {"_count": 1}}, "him": {"_count": 1, "upon": {"_count": 1}}}, "purge": {"_count": 3, "the": {"_count": 1, "school": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "unworthy": {"_count": 9, "to": {"_count": 3, "study": {"_count": 1}, "sit": {"_count": 1}, "unite": {"_count": 1}}, "trick": {"_count": 1, "": {"_count": 1}}, "lips": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 2, "much": {"_count": 1}, "his": {"_count": 1}}, "Quirrell": {"_count": 1, "attempting": {"_count": 1}}, "Riddle": {"_count": 1, "line": {"_count": 1}}}, "unease": {"_count": 8, "in": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "until": {"_count": 1, "Hagrid": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "flickered": {"_count": 1, "inside": {"_count": 1}}}, "arrant": {"_count": 1, "nonsense": {"_count": 1, "of": {"_count": 1}}}, "Naturally": {"_count": 20, "the": {"_count": 2, "school": {"_count": 1}, "loss": {"_count": 1}}, "said": {"_count": 4, "Madam": {"_count": 1}, "Professor": {"_count": 2}, "the": {"_count": 1}}, "he": {"_count": 3, "dismissed": {"_count": 1}, "had": {"_count": 1}, "hastened": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "naturally": {"_count": 2, "murmured": {"_count": 2}}, "we": {"_count": 1, "had": {"_count": 1}}, "these": {"_count": 1, "teachers": {"_count": 1}}, "I": {"_count": 3, "do": {"_count": 1}, "introduced": {"_count": 1}, "refused": {"_count": 1}}, "many": {"_count": 1, "people": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "gullible": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "wandered": {"_count": 1, "across": {"_count": 1}}}, "\u2018horror": {"_count": 1, "within": {"_count": 1, "the": {"_count": 1}}}, "reedy": {"_count": 5, "voice": {"_count": 5, "": {"_count": 1}, "of": {"_count": 2}, "giving": {"_count": 1}, "And": {"_count": 1}}}, "OFlaherty": {"_count": 1, "said": {"_count": 1, "Professor": {"_count": 1}}}, "aggravated": {"_count": 3, "tone": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "her": {"_count": 1}}}, "succession": {"_count": 4, "of": {"_count": 2, "Hogwarts": {"_count": 1}, "horrific": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "headmasters": {"_count": 40, "and": {"_count": 13, "headmistresses": {"_count": 11}, "mistresses": {"_count": 2}}, "permission": {"_count": 1, "ter": {"_count": 1}}, "job": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "Hogwarts": {"_count": 2}}, "been": {"_count": 1, "sacked": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "privilege": {"_count": 1, "to": {"_count": 1}}, "office": {"_count": 7, "Potter": {"_count": 1}, "": {"_count": 4}, "at": {"_count": 1}, "yet": {"_count": 1}}, "absence": {"_count": 1, "": {"_count": 1}}, "words": {"_count": 1, "unworthy": {"_count": 1}}, "chair": {"_count": 4, "was": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 2}}, "were": {"_count": 1, "snoring": {"_count": 1}}, "cannot": {"_count": 1, "be": {"_count": 1}}, "study": {"_count": 3, "at": {"_count": 1}, "as": {"_count": 1}, "had": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "desk": {"_count": 1, "touched": {"_count": 1}}}, "headmistresses": {"_count": 11, "havent": {"_count": 1, "found": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 3, "Hogwarts": {"_count": 3}}, "snoozing": {"_count": 1, "in": {"_count": 1}}, "covering": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "snoozing": {"_count": 1}}, "dozed": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "Pennyfeather": {"_count": 1, "snapped": {"_count": 1, "Professor": {"_count": 1}}}, "repeat": {"_count": 16, "if": {"_count": 1, "the": {"_count": 1}}, "itself": {"_count": 1, "now": {"_count": 1}}, "what": {"_count": 1, "Ernie": {"_count": 1}}, "the": {"_count": 3, "experience": {"_count": 1}, "name": {"_count": 1}, "information": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "The": {"_count": 1, "Dark": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "instructions": {"_count": 1, "once": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "her": {"_count": 1, "own": {"_count": 1}}, "his": {"_count": 1, "spell": {"_count": 1}}}, "myth": {"_count": 3, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}}, "shred": {"_count": 7, "of": {"_count": 6, "evidence": {"_count": 4}, "hope": {"_count": 1}, "proof": {"_count": 1}}, "his": {"_count": 1, "lungs": {"_count": 1}}}, "believable": {"_count": 1, "verifiable": {"_count": 1, "facti": {"_count": 1}}}, "verifiable": {"_count": 1, "facti": {"_count": 1, "And": {"_count": 1}}}, "facti": {"_count": 1, "And": {"_count": 1, "within": {"_count": 1}}}, "torpor": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "loony": {"_count": 2, "Ron": {"_count": 1, "told": {"_count": 1}}, "loopy": {"_count": 1, "Lupin": {"_count": 1}}}, "teeming": {"_count": 6, "corridors": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 2}, "memories": {"_count": 1}}, "and": {"_count": 1, "seething": {"_count": 1}}, "corridor": {"_count": 1, "where": {"_count": 1}}}, "fervently": {"_count": 15, "but": {"_count": 1, "Harry": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "shivering": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "looking": {"_count": 1, "over": {"_count": 1}}}, "reputation": {"_count": 11, "for": {"_count": 2, "turning": {"_count": 1}, "Potions": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "had": {"_count": 1, "to": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "and": {"_count": 1, "Im": {"_count": 1}}, "because": {"_count": 1, "o": {"_count": 1}}, "with": {"_count": 1, "Slughorn": {"_count": 1}}, "as": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}}, "shunted": {"_count": 8, "along": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "department": {"_count": 1}}, "to": {"_count": 1, "one": {"_count": 1}}, "sideways": {"_count": 1, "into": {"_count": 1}}, "forward": {"_count": 1, "onto": {"_count": 1}}, "aside": {"_count": 1, "by": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "throng": {"_count": 7, "Colin": {"_count": 1, "Creevey": {"_count": 1}}, "Yet": {"_count": 1, "how": {"_count": 1}}, "wending": {"_count": 1, "their": {"_count": 1}}, "pressing": {"_count": 1, "out": {"_count": 1}}, "a": {"_count": 1, "minute": {"_count": 1}}, "sniggered": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Hiya": {"_count": 2, "Harry": {"_count": 2, "": {"_count": 2}}}, "automatically": {"_count": 22, "": {"_count": 7, ".": {"_count": 7}}, "toward": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "tried": {"_count": 1}}, "desperate": {"_count": 1, "for": {"_count": 1}}, "not": {"_count": 1, "looking": {"_count": 1}}, "dropping": {"_count": 1, "his": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "receive": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "for": {"_count": 1, "Hedwig": {"_count": 1}}, "left": {"_count": 1, "toward": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "Rons": {"_count": 1}}}, "tide": {"_count": 10, "of": {"_count": 8, "people": {"_count": 1}, "boos": {"_count": 1}, "roars": {"_count": 1}, "besuited": {"_count": 1}, "hungry": {"_count": 1}, "students": {"_count": 2}, "redhot": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "Griphook": {"_count": 1}}}, "herell": {"_count": 1, "believe": {"_count": 1, "anything": {"_count": 1}}}, "thinned": {"_count": 6, "and": {"_count": 3, "they": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "poke": {"_count": 17, "around": {"_count": 3, "said": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "its": {"_count": 1, "head": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "him": {"_count": 2, "in": {"_count": 1}, "hard": {"_count": 1}}, "of": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 3}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "hie": {"_count": 1, "Winkys": {"_count": 1}}, "Grawp": {"_count": 1, "again": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "sword": {"_count": 1}}, "their": {"_count": 1, "noses": {"_count": 1}}}, "crawl": {"_count": 9, "along": {"_count": 1, "searching": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "home": {"_count": 1, "like": {"_count": 1}}, "fastened": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "here": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Scorch": {"_count": 2, "marks": {"_count": 2, "": {"_count": 1}, "all": {"_count": 1}}}, "pane": {"_count": 3, "where": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 1, "back": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "scuttling": {"_count": 8, "apparently": {"_count": 1, "fighting": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "its": {"_count": 1}}, "around": {"_count": 1, "inside": {"_count": 1}}, "legs": {"_count": 1, "their": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}}, "thread": {"_count": 22, "was": {"_count": 1, "dangling": {"_count": 1}}, "so": {"_count": 1, "so": {"_count": 1}}, "of": {"_count": 11, "the": {"_count": 2}, "silk": {"_count": 1}, "shimmering": {"_count": 1}, "light": {"_count": 2}, "golden": {"_count": 1}, "what": {"_count": 1}, "memory": {"_count": 1}, "his": {"_count": 1}, "phoenix": {"_count": 1}}, "and": {"_count": 1, "landing": {"_count": 1}}, "connecting": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "remained": {"_count": 1, "unbroken": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "broke": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}}, "wonderingly": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "pulling": {"_count": 1, "Harry": {"_count": 1}}, "still": {"_count": 1, "staring": {"_count": 1}}}, "impulse": {"_count": 9, "to": {"_count": 4, "run": {"_count": 1}, "call": {"_count": 1}, "swear": {"_count": 1}, "shout": {"_count": 1}}, "vanished": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 1, "mercy": {"_count": 1}}}, "recovering": {"_count": 7, "himself": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "you": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "quickly": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "Level": {"_count": 14, "with": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "seven": {"_count": 1, "Department": {"_count": 1}}, "six": {"_count": 1, "Department": {"_count": 1}}, "five": {"_count": 1, "Department": {"_count": 1}}, "four": {"_count": 2, "Department": {"_count": 2}}, "three": {"_count": 1, "Department": {"_count": 1}}, "two": {"_count": 2, "Department": {"_count": 2}}, "the": {"_count": 1, "Draught": {"_count": 1}}, "one": {"_count": 1, "Minister": {"_count": 1}}, "eight": {"_count": 1, "said": {"_count": 1}}}, "withdrew": {"_count": 26, "his": {"_count": 7, "hand": {"_count": 1}, "gaze": {"_count": 2}, "head": {"_count": 2}, "wand": {"_count": 1}, "arm": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}, "from": {"_count": 4, "the": {"_count": 1}, "her": {"_count": 1}, "an": {"_count": 2}}, "it": {"_count": 5, "some": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}, "quickly": {"_count": 1}, "so": {"_count": 1}}, "the": {"_count": 1, "planner": {"_count": 1}}, "a": {"_count": 4, "piece": {"_count": 1}, "wand": {"_count": 1}, "flask": {"_count": 1}, "revoltinglooking": {"_count": 1}}, "silvery": {"_count": 1, "gossamerfine": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "sliding": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "ORDER": {"_count": 8, "sign": {"_count": 2, "she": {"_count": 1}, "ignored": {"_count": 1}}, "OF": {"_count": 6, "THE": {"_count": 6}}}, "gloomiest": {"_count": 1, "most": {"_count": 1, "depressing": {"_count": 1}}}, "holders": {"_count": 2, "the": {"_count": 1, "wooden": {"_count": 1}}, "and": {"_count": 1, "dashed": {"_count": 1}}}, "stalls": {"_count": 3, "were": {"_count": 1, "flaking": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "sprung": {"_count": 1}}}, "flaking": {"_count": 1, "and": {"_count": 1, "scratched": {"_count": 1}}}, "stall": {"_count": 12, "": {"_count": 6, ".": {"_count": 6}}, "but": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}}, "ruining": {"_count": 4, "my": {"_count": 1, "death": {"_count": 1}}, "the": {"_count": 2, "best": {"_count": 1}, "effect": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}}, "Already": {"_count": 7, "dead": {"_count": 1, "said": {"_count": 1}}, "here": {"_count": 1, "Fudge": {"_count": 1}}, "wet": {"_count": 1, "arent": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "taken": {"_count": 1, "": {"_count": 1}}, "given": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 1, "sun": {"_count": 1}}}, "helpfully": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "offered": {"_count": 1, "Harry": {"_count": 1}}}, "splashing": {"_count": 11, "water": {"_count": 2, "all": {"_count": 1}, "which": {"_count": 1}}, "more": {"_count": 1, "into": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "its": {"_count": 1, "way": {"_count": 1}}, "it": {"_count": 1, "everywhere": {"_count": 1}}, "out": {"_count": 1, "to": {"_count": 1}}, "boiling": {"_count": 1, "water": {"_count": 1}}, "about": {"_count": 1, "merrily": {"_count": 1}}, "noise": {"_count": 1, "to": {"_count": 1}}}, "Ubend": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}}, "gurgling": {"_count": 5, "sobs": {"_count": 1, "when": {"_count": 1}}, "morosely": {"_count": 1, "in": {"_count": 1}}, "noise": {"_count": 2, "": {"_count": 1}, "issued": {"_count": 1}}, "song": {"_count": 1, "was": {"_count": 1}}}, "RON": {"_count": 6, "": {"_count": 3, "!": {"_count": 2}, "?": {"_count": 1}}, "WEASLEY": {"_count": 1, "": {"_count": 1}}, "AND": {"_count": 1, "HERMIONE": {"_count": 1}}, "NO": {"_count": 1, "": {"_count": 1}}}, "agleam": {"_count": 1, "an": {"_count": 1, "expression": {"_count": 1}}}, "Clues": {"_count": 1, "you": {"_count": 1, "know": {"_count": 1}}}, "flapping": {"_count": 18, "his": {"_count": 2, "arms": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "Mr": {"_count": 1}}, "gestures": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "enormous": {"_count": 1}}, "their": {"_count": 1, "wings": {"_count": 1}}, "its": {"_count": 2, "wings": {"_count": 2}}, "things": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "hands": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 2}}, "wings": {"_count": 1, "or": {"_count": 1}}}, "thoroughly": {"_count": 54, "overexcited": {"_count": 2, "by": {"_count": 1}, "when": {"_count": 1}}, "unconvinced": {"_count": 2, "Ron": {"_count": 1}, "": {"_count": 1}}, "enjoying": {"_count": 5, "the": {"_count": 1}, "bossing": {"_count": 1}, "himself": {"_count": 2}, "being": {"_count": 1}}, "miserable": {"_count": 2, "put": {"_count": 1}, "": {"_count": 1}}, "depressed": {"_count": 2, "though": {"_count": 1}, "Neville": {"_count": 1}}, "relieved": {"_count": 2, "that": {"_count": 1}, "now": {"_count": 1}}, "bewildered": {"_count": 2, "": {"_count": 2}}, "pleased": {"_count": 2, "with": {"_count": 1}, "about": {"_count": 1}}, "startled": {"_count": 1, "": {"_count": 1}}, "shocked": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "enjoyed": {"_count": 1, "double": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "put": {"_count": 1, "out": {"_count": 1}}, "excited": {"_count": 1, "": {"_count": 1}}, "hed": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "nonmagical": {"_count": 1, "fashion": {"_count": 1}}, "disconcerted": {"_count": 1, "": {"_count": 1}}, "disgruntled": {"_count": 1, "as": {"_count": 1}}, "irritating": {"_count": 1, "Harry": {"_count": 1}}, "annoyed": {"_count": 1, "about": {"_count": 1}}, "mistrustful": {"_count": 1, "look": {"_count": 1}}, "confused": {"_count": 4, "": {"_count": 2}, "Hermione": {"_count": 1}, "arent": {"_count": 1}}, "exasperated": {"_count": 1, "youll": {"_count": 1}}, "canvassed": {"_count": 1, "during": {"_count": 1}}, "dispirited": {"_count": 1, "as": {"_count": 1}}, "discomposed": {"_count": 1, "not": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "bad": {"_count": 1, "tempered": {"_count": 1}}, "earned": {"_count": 1, "it": {"_count": 1}}, "secondhand": {"_count": 1, "": {"_count": 1}}, "nonverbal": {"_count": 1, "goodbye": {"_count": 1}}, "I": {"_count": 1, "just": {"_count": 1}}, "taken": {"_count": 1, "aback": {"_count": 1}}, "alarmed": {"_count": 1, "at": {"_count": 1}}, "downcast": {"_count": 1, "": {"_count": 1}}}, "overexcited": {"_count": 5, "by": {"_count": 1, "this": {"_count": 1}}, "Snape": {"_count": 1, "moved": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "owls": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "reddening": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "slightly": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "anger": {"_count": 1}}, "sky": {"_count": 1, "and": {"_count": 1}}}, "tersely": {"_count": 9, "fingering": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "tugging": {"_count": 1, "the": {"_count": 1}}}, "fingering": {"_count": 3, "his": {"_count": 1, "prefect": {"_count": 1}}, "something": {"_count": 1, "in": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}}, "detective": {"_count": 1, "work": {"_count": 1, "or": {"_count": 1}}}, "blotting": {"_count": 2, "his": {"_count": 1, "Charms": {"_count": 1}}, "the": {"_count": 1, "page": {"_count": 1}}}, "absently": {"_count": 10, "for": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "rolling": {"_count": 1, "up": {"_count": 1}}, "still": {"_count": 1, "scribbling": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 2, "the": {"_count": 1}, "long": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "smudges": {"_count": 1, "it": {"_count": 1, "ignited": {"_count": 1}}}, "ignited": {"_count": 11, "the": {"_count": 2, "parchment": {"_count": 1}, "end": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "casting": {"_count": 1, "its": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "Harrys": {"_count": 1, "fury": {"_count": 1}}}, "conversation": {"_count": 98, "they": {"_count": 4, "had": {"_count": 3}, "were": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 18}, "?": {"_count": 1}}, "we": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 21, "a": {"_count": 2}, "Wood": {"_count": 1}, "what": {"_count": 1}, "Viktor": {"_count": 1}, "Professor": {"_count": 3}, "her": {"_count": 3}, "Cho": {"_count": 1}, "Luna": {"_count": 1}, "the": {"_count": 2}, "Hagrid": {"_count": 1}, "Tonks": {"_count": 1}, "Slughorn": {"_count": 1}, "Trelawney": {"_count": 1}, "Monsieur": {"_count": 1}, "an": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "while": {"_count": 2, "he": {"_count": 1}, "Justin": {"_count": 1}}, "that": {"_count": 2, "Professor": {"_count": 1}, "suggested": {"_count": 1}}, "hed": {"_count": 1, "overheard": {"_count": 1}}, "as": {"_count": 5, "he": {"_count": 1}, "they": {"_count": 1}, "everyone": {"_count": 1}, "though": {"_count": 2}}, "all": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 4, "strange": {"_count": 1}, "the": {"_count": 2}, "her": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "during": {"_count": 1, "dinner": {"_count": 1}}, "no": {"_count": 1, "matter": {"_count": 1}}, "but": {"_count": 4, "looking": {"_count": 1}, "though": {"_count": 1}, "had": {"_count": 1}, "thats": {"_count": 1}}, "turns": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "onto": {"_count": 1}}, "going": {"_count": 1, "now": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 2, "that": {"_count": 1}, "raised": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 1, "looking": {"_count": 1}}, "unexpectedly": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "Dumbledores": {"_count": 1}}, "warily": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "on": {"_count": 1}}, "moving": {"_count": 1, "away": {"_count": 1}}, "of": {"_count": 1, "three": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "created": {"_count": 1}, "a": {"_count": 1}}, "were": {"_count": 1, "growing": {"_count": 1}}, "forgetting": {"_count": 1, "for": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "longhaired": {"_count": 1}}}, "Muggleborns": {"_count": 31, "out": {"_count": 1, "of": {"_count": 1}}, "are": {"_count": 4, "scum": {"_count": 1}, "talking": {"_count": 1}, "being": {"_count": 1}, "bad": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 4}}, "left": {"_count": 1, "at": {"_count": 1}}, "won": {"_count": 1, "stand": {"_count": 1}}, "and": {"_count": 2, "having": {"_count": 1}, "blood": {"_count": 1}}, "they": {"_count": 1, "hate": {"_count": 1}}, "to": {"_count": 2, "Death": {"_count": 1}, "evade": {"_count": 1}}, "the": {"_count": 2, "better": {"_count": 1}, "wizard": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "because": {"_count": 1, "students": {"_count": 1}}, "brought": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 4, "were": {"_count": 1}, "moved": {"_count": 1}, "scurried": {"_count": 1}, "are": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "said": {"_count": 1}}, "but": {"_count": 1, "Mrs": {"_count": 1}}, "escape": {"_count": 1, "Yaxley": {"_count": 1}}}, "mock": {"_count": 10, "puzzlement": {"_count": 1, "": {"_count": 1}}, "sorrow": {"_count": 1, "": {"_count": 1}}, "outrage": {"_count": 1, "": {"_count": 1}}, "bow": {"_count": 1, "and": {"_count": 1}}, "thoughtful": {"_count": 1, "voice": {"_count": 1}}, "celebration": {"_count": 1, "and": {"_count": 1}}, "casual": {"_count": 1, "voice": {"_count": 1}}, "concern": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "Harry": {"_count": 1}}, "admiration": {"_count": 1, "": {"_count": 1}}}, "scum": {"_count": 12, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 2}, "!": {"_count": 1}}, "who": {"_count": 1, "never": {"_count": 1}}, "wore": {"_count": 1, "it": {"_count": 1}}, "theyve": {"_count": 1, "let": {"_count": 1}}, "living": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "shops": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "outside": {"_count": 1, "said": {"_count": 1}}}, "unconvinced": {"_count": 6, "": {"_count": 4, ".": {"_count": 4}}, "Ron": {"_count": 1, "who": {"_count": 1}}, "You": {"_count": 1, "dont": {"_count": 1}}}, "\u2018Youll": {"_count": 1, "be": {"_count": 1, "next": {"_count": 1}}}, "MudbloodsV": {"_count": 1, "come": {"_count": 1, "on": {"_count": 1}}}, "skeptically": {"_count": 9, "": {"_count": 7, ".": {"_count": 7}}, "as": {"_count": 1, "they": {"_count": 1}}, "rolling": {"_count": 1, "up": {"_count": 1}}}, "closing": {"_count": 54, "his": {"_count": 6, "books": {"_count": 1}, "eyes": {"_count": 3}, "mouth": {"_count": 1}, "bedroom": {"_count": 1}}, "the": {"_count": 22, "door": {"_count": 16}, "bathroom": {"_count": 1}, "school": {"_count": 2}, "kitchen": {"_count": 1}, "newspaper": {"_count": 1}, "book": {"_count": 1}}, "Hogwarts": {"_count": 1, "if": {"_count": 1}}, "before": {"_count": 1, "seizing": {"_count": 1}}, "in": {"_count": 16, "": {"_count": 3}, "barely": {"_count": 1}, "on": {"_count": 4}, "reforming": {"_count": 1}, "upon": {"_count": 3}, "front": {"_count": 1}, "behind": {"_count": 1}, "now": {"_count": 1}, "He": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "themselves": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "its": {"_count": 1, "petals": {"_count": 1}}}, "boasting": {"_count": 6, "about": {"_count": 4, "it": {"_count": 2}, "being": {"_count": 1}, "them": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "descendants": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "what": {"_count": 1, "do": {"_count": 1}}, "ever": {"_count": 1, "flourish": {"_count": 1}}, "though": {"_count": 1, "theyd": {"_count": 1}}, "had": {"_count": 1, "joined": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "Handing": {"_count": 1, "it": {"_count": 1, "down": {"_count": 1}}}, "Polyjuice": {"_count": 42, "Potion": {"_count": 38, "": {"_count": 7}, "said": {"_count": 1}, "Ron": {"_count": 1}, "and": {"_count": 3}, "simmering": {"_count": 1}, "later": {"_count": 1}, "again": {"_count": 1}, "Harry": {"_count": 3}, "in": {"_count": 1}, "had": {"_count": 1}, "containing": {"_count": 2}, "until": {"_count": 1}, "beforehand": {"_count": 1}, "from": {"_count": 1}, "He": {"_count": 1}, "see": {"_count": 1}, "sir": {"_count": 1}, "Slughorn": {"_count": 1}, "at": {"_count": 1}, "into": {"_count": 1}, "is": {"_count": 1}, "right": {"_count": 1}, "Puking": {"_count": 1}, "she": {"_count": 1}, "which": {"_count": 1}, "was": {"_count": 2}}, "stuff": {"_count": 1, "sounds": {"_count": 1}}, "Potions": {"_count": 1, "nearly": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "leaving": {"_count": 1, "him": {"_count": 1}}}, "transforms": {"_count": 1, "you": {"_count": 1, "into": {"_count": 1}}}, "Moste": {"_count": 5, "Potente": {"_count": 4, "Potions": {"_count": 4}}, "Evile": {"_count": 1, "listen": {"_count": 1}}}, "Potente": {"_count": 4, "Potions": {"_count": 4, "and": {"_count": 1}, "": {"_count": 2}, "carefully": {"_count": 1}}}, "Hard": {"_count": 5, "to": {"_count": 4, "see": {"_count": 1}, "keep": {"_count": 1}, "know": {"_count": 1}, "help": {"_count": 1}}, "left": {"_count": 1, "hard": {"_count": 1}}}, "theory": {"_count": 30, "we": {"_count": 1, "might": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "as": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "would": {"_count": 1, "help": {"_count": 1}}, "past": {"_count": 1, "Myrtle": {"_count": 1}}, "being": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "Lily": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "hard": {"_count": 2, "enough": {"_count": 2}}, "going": {"_count": 1, "to": {"_count": 1}}, "exams": {"_count": 1, "in": {"_count": 1}}, "exam": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 1, "compartment": {"_count": 1}}, "Harry": {"_count": 1, "lost": {"_count": 1}}, "however": {"_count": 1, "wild": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 2, "which": {"_count": 1}, "his": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "what": {"_count": 1, "about": {"_count": 1}}, "not": {"_count": 1, "when": {"_count": 1}}, "was": {"_count": 1, "right": {"_count": 1}}}, "ROGUE": {"_count": 1, "BLUDGER": {"_count": 1, "Since": {"_count": 1}}}, "BLUDGER": {"_count": 1, "Since": {"_count": 1, "the": {"_count": 1}}}, "disastrous": {"_count": 7, "episode": {"_count": 1, "of": {"_count": 1}}, "Occlumency": {"_count": 1, "lessons": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "first": {"_count": 2, "attempt": {"_count": 2}}, "interview": {"_count": 1, "": {"_count": 1}}, "consequences": {"_count": 1, "then": {"_count": 1}}}, "episode": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "reenacted": {"_count": 1, "some": {"_count": 1, "of": {"_count": 1}}}, "dramatic": {"_count": 12, "bits": {"_count": 1, "": {"_count": 1}}, "whisper": {"_count": 1, "": {"_count": 1}}, "entrance": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}, "wavering": {"_count": 1, "voice": {"_count": 1}}, "departure": {"_count": 1, "which": {"_count": 1}}, "was": {"_count": 1, "going": {"_count": 1}}, "effect": {"_count": 2, "": {"_count": 2}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "change": {"_count": 2, "in": {"_count": 2}}}, "reconstructions": {"_count": 1, "so": {"_count": 1, "far": {"_count": 1}}}, "Transylvanian": {"_count": 1, "villager": {"_count": 1, "whom": {"_count": 1}}}, "villager": {"_count": 1, "whom": {"_count": 1, "Lockhart": {"_count": 1}}}, "Babbling": {"_count": 2, "Curse": {"_count": 1, "a": {"_count": 1}}, "Beverage": {"_count": 1, "": {"_count": 1}}}, "yeti": {"_count": 1, "with": {"_count": 1, "a": {"_count": 1}}}, "lettuce": {"_count": 3, "since": {"_count": 1, "Lockhart": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dealt": {"_count": 6, "with": {"_count": 5, "him": {"_count": 2}, "the": {"_count": 1}, "as": {"_count": 1}, "quickly": {"_count": 1}}, "Sirius": {"_count": 1, "a": {"_count": 1}}}, "hauled": {"_count": 4, "to": {"_count": 1, "the": {"_count": 1}}, "us": {"_count": 1, "off": {"_count": 1}}, "in": {"_count": 1, "for": {"_count": 1}}, "Fred": {"_count": 1, "out": {"_count": 1}}}, "immensely": {"_count": 22, "complex": {"_count": 2, "Homorphus": {"_count": 1}, "spell": {"_count": 1}}, "heavy": {"_count": 1, "loads": {"_count": 1}}, "long": {"_count": 2, "hairy": {"_count": 1}, "walk": {"_count": 1}}, "proud": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "relaxed": {"_count": 1, "only": {"_count": 1}}, "strong": {"_count": 1, "and": {"_count": 1}}, "old": {"_count": 2, "it": {"_count": 1}, "perfect": {"_count": 1}}, "relieved": {"_count": 2, "at": {"_count": 1}, "": {"_count": 1}}, "thankful": {"_count": 1, "that": {"_count": 1}}, "large": {"_count": 1, "feathery": {"_count": 1}}, "frustrating": {"_count": 1, "watching": {"_count": 1}}, "pleased": {"_count": 1, "with": {"_count": 1}}, "difficult": {"_count": 1, "topic": {"_count": 1}}, "fat": {"_count": 1, "old": {"_count": 1}}, "guilty": {"_count": 1, "and": {"_count": 1}}, "satisfying": {"_count": 1, "about": {"_count": 1}}}, "Homorphus": {"_count": 1, "Charm": {"_count": 1, "he": {"_count": 1}}}, "piteous": {"_count": 2, "moan": {"_count": 1, "go": {"_count": 1}}, "human": {"_count": 1, "scream": {"_count": 1}}}, "Simple": {"_count": 1, "yet": {"_count": 1, "effective": {"_count": 1}}}, "effective": {"_count": 9, "and": {"_count": 2, "another": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "than": {"_count": 1, "it": {"_count": 1}}, "teacher": {"_count": 1, "than": {"_count": 1}}, "these": {"_count": 1, "had": {"_count": 1}}}, "monthly": {"_count": 1, "terror": {"_count": 1, "of": {"_count": 1}}}, "Homework": {"_count": 4, "compose": {"_count": 1, "a": {"_count": 1}}, "kindly": {"_count": 1, "read": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "twelve": {"_count": 1, "inches": {"_count": 1}}}, "compose": {"_count": 2, "a": {"_count": 1, "poem": {"_count": 1}}, "an": {"_count": 1, "epitaph": {"_count": 1}}}, "poem": {"_count": 4, "about": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "warning": {"_count": 1, "of": {"_count": 1}}}, "Wagga": {"_count": 2, "Wagga": {"_count": 1, "Werewolf": {"_count": 1}}, "Werewolf": {"_count": 1, "": {"_count": 1}}}, "author": {"_count": 6, "of": {"_count": 5, "the": {"_count": 1}, "Blood": {"_count": 1}, "A": {"_count": 2}, "Armando": {"_count": 1}}, "sent": {"_count": 1, "an": {"_count": 1}}}, "slowacting": {"_count": 1, "venoms": {"_count": 1, "Ah": {"_count": 1}}}, "venoms": {"_count": 2, "Ah": {"_count": 1, "Gadding": {"_count": 1}}, "act": {"_count": 1, "too": {"_count": 1}}}, "GhoulsV": {"_count": 1, "said": {"_count": 1, "Lockhart": {"_count": 1}}}, "Possibly": {"_count": 9, "my": {"_count": 1, "very": {"_count": 1}}, "Lockhart": {"_count": 1, "had": {"_count": 1}}, "no": {"_count": 1, "ones": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "hallucinations": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Borgin": {"_count": 1}}, "the": {"_count": 1, "cup": {"_count": 1}}}, "teastrainer": {"_count": 1, "Well": {"_count": 1, "Im": {"_count": 1}}}, "warmly": {"_count": 9, "and": {"_count": 1, "he": {"_count": 1}}, "paternal": {"_count": 1, "air": {"_count": 1}}, "toward": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "into": {"_count": 1, "your": {"_count": 1}}, "anticipated": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "relinquishing": {"_count": 1, "her": {"_count": 1}}}, "peacock": {"_count": 3, "quill": {"_count": 1, "": {"_count": 1}}, "strutting": {"_count": 1, "majestically": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "misreading": {"_count": 1, "the": {"_count": 1, "revolted": {"_count": 1}}}, "revolted": {"_count": 11, "look": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "whisper": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "but": {"_count": 1, "putting": {"_count": 1}}, "nauseated": {"_count": 1, "": {"_count": 1}}}, "signings": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "publicity": {"_count": 1}}}, "Tomorrows": {"_count": 1, "the": {"_count": 1, "first": {"_count": 1}}}, "National": {"_count": 6, "Squad": {"_count": 1, "but": {"_count": 1}}, "teams": {"_count": 1, "bring": {"_count": 1}}, "Team": {"_count": 2, "Mascots": {"_count": 2}}, "Quidditch": {"_count": 2, "Team": {"_count": 2}}}, "Squad": {"_count": 22, "but": {"_count": 1, "preferred": {"_count": 1}}, "were": {"_count": 2, "dispatched": {"_count": 1}, "attempting": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "and": {"_count": 1, "Pettigrew": {"_count": 1}}, "to": {"_count": 1, "sort": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "Obliviator": {"_count": 1, "Headquarters": {"_count": 1}}, "The": {"_count": 1, "what": {"_count": 1}}, "Granger": {"_count": 1, "said": {"_count": 1}}, "do": {"_count": 1, "have": {"_count": 1}}, "is": {"_count": 1, "opening": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "closed": {"_count": 1, "in": {"_count": 1}}, "sitting": {"_count": 1, "with": {"_count": 1}}, "floating": {"_count": 1, "around": {"_count": 1}}, "laughed": {"_count": 1, "some": {"_count": 1}}, "her": {"_count": 1, "bulging": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "sorted": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Ogden": {"_count": 1}}}, "preferred": {"_count": 25, "to": {"_count": 7, "dedicate": {"_count": 1}, "prepare": {"_count": 1}, "fight": {"_count": 1}, "teach": {"_count": 1}, "a": {"_count": 1}, "operate": {"_count": 1}, "settle": {"_count": 1}}, "the": {"_count": 2, "hippogriffs": {"_count": 1}, "Inquisitorial": {"_count": 1}}, "drink": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}, "Little": {"_count": 1, "Whinging": {"_count": 1}}, "brand": {"_count": 1, "of": {"_count": 1}}, "Cedric": {"_count": 1, "he": {"_count": 1}}, "Professor": {"_count": 1, "Grubbly": {"_count": 1}}, "it": {"_count": 1, "that": {"_count": 1}}, "Scrimgeour": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 2, "new": {"_count": 1}, "to": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "objects": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "me": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 1, "meat": {"_count": 1}}}, "dedicate": {"_count": 1, "my": {"_count": 1, "life": {"_count": 1}}}, "eradication": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "hesitate": {"_count": 6, "to": {"_count": 4, "ask": {"_count": 2}, "use": {"_count": 1}, "press": {"_count": 1}}, "but": {"_count": 1, "jumped": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "expertise": {"_count": 4, "to": {"_count": 1, "less": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "indistinct": {"_count": 8, "noise": {"_count": 1, "in": {"_count": 1}}, "silvery": {"_count": 1, "shadow": {"_count": 1}}, "Patronus": {"_count": 1, "is": {"_count": 1}}, "male": {"_count": 1, "voices": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "figures": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "features": {"_count": 1, "of": {"_count": 1}}}, "brainless": {"_count": 2, "git": {"_count": 2, "said": {"_count": 2}}}, "cares": {"_count": 19, "weve": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 4}}, "what": {"_count": 3, "he": {"_count": 1}, "hes": {"_count": 1}, "you": {"_count": 1}}, "if": {"_count": 4, "Diggorys": {"_count": 1}, "hes": {"_count": 1}, "your": {"_count": 1}, "she": {"_count": 1}}, "whats": {"_count": 1, "on": {"_count": 1}}, "about": {"_count": 4, "Harry": {"_count": 1}, "isnt": {"_count": 1}, "them": {"_count": 1}, "a": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "why": {"_count": 1, "dont": {"_count": 1}}}, "stillness": {"_count": 8, "of": {"_count": 3, "the": {"_count": 3}}, "for": {"_count": 1, "he": {"_count": 1}}, "broken": {"_count": 1, "only": {"_count": 1}}, "horror": {"_count": 1, "rose": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "settled": {"_count": 1}}}, "underfed": {"_count": 2, "vulture": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "vulture": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 2, "top": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "trailing": {"_count": 1}}, "ever": {"_count": 1, "lower": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}}, "wrenching": {"_count": 8, "it": {"_count": 1, "from": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "gaze": {"_count": 1}}, "the": {"_count": 1, "bread": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "metal": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "back": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}}, "thrusting": {"_count": 12, "it": {"_count": 1, "at": {"_count": 1}}, "Omnioculars": {"_count": 1, "into": {"_count": 1}}, "a": {"_count": 3, "piece": {"_count": 1}, "badly": {"_count": 1}, "box": {"_count": 1}}, "the": {"_count": 3, "wand": {"_count": 1}, "prefect": {"_count": 1}, "tin": {"_count": 1}}, "his": {"_count": 1, "hand": {"_count": 1}}, "her": {"_count": 2, "into": {"_count": 1}, "carpetbag": {"_count": 1}}, "young": {"_count": 1, "man": {"_count": 1}}}, "detect": {"_count": 10, "a": {"_count": 3, "forgery": {"_count": 1}, "whiff": {"_count": 1}, "look": {"_count": 1}}, "any": {"_count": 1, "trace": {"_count": 1}}, "Voldemorts": {"_count": 1, "presence": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "jinxes": {"_count": 1, "curses": {"_count": 1}}, "underage": {"_count": 1, "magic": {"_count": 1}}, "magic": {"_count": 1, "but": {"_count": 1}}, "because": {"_count": 1, "we": {"_count": 1}}}, "forgery": {"_count": 1, "but": {"_count": 1, "it": {"_count": 1}}}, "stalked": {"_count": 16, "away": {"_count": 7, "between": {"_count": 1}, "": {"_count": 3}, "with": {"_count": 1}, "upon": {"_count": 1}, "clutching": {"_count": 1}}, "off": {"_count": 4, "": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "past": {"_count": 2, "throwing": {"_count": 1}, "smirking": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}}, "lofty": {"_count": 6, "shelves": {"_count": 1, "and": {"_count": 1}}, "voice": {"_count": 4, "heaving": {"_count": 1}, "": {"_count": 1}, "she": {"_count": 1}, "James": {"_count": 1}}, "position": {"_count": 1, "": {"_count": 1}}}, "moldylooking": {"_count": 3, "book": {"_count": 1, "": {"_count": 1}}, "tailcoat": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "boot": {"_count": 1}}}, "barricaded": {"_count": 2, "in": {"_count": 1, "Moaning": {"_count": 1}}, "themselves": {"_count": 1, "in": {"_count": 1}}}, "overridden": {"_count": 1, "Rons": {"_count": 1, "objections": {"_count": 1}}}, "objections": {"_count": 4, "by": {"_count": 1, "pointing": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "after": {"_count": 1, "Ernie": {"_count": 1}}}, "guaranteed": {"_count": 3, "some": {"_count": 1, "privacy": {"_count": 1}}, "to": {"_count": 1, "cause": {"_count": 1}}, "him": {"_count": 1, "twenty": {"_count": 1}}}, "privacy": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 1, "they": {"_count": 1}}}, "noisily": {"_count": 10, "in": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "pulling": {"_count": 1, "off": {"_count": 1}}, "after": {"_count": 1, "them": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "breakfast": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "dampspotted": {"_count": 1, "pages": {"_count": 1, "": {"_count": 1}}}, "effects": {"_count": 13, "almost": {"_count": 1, "too": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "would": {"_count": 1, "wear": {"_count": 1}}, "of": {"_count": 4, "Mars": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "excessive": {"_count": 1}}, "around": {"_count": 1, "their": {"_count": 1}}, "extremely": {"_count": 1, "accurately": {"_count": 1}}, "include": {"_count": 1, "vacant": {"_count": 1}}, "wear": {"_count": 1, "off": {"_count": 1}}, "were": {"_count": 2, "left": {"_count": 1}, "directed": {"_count": 1}}}, "gruesome": {"_count": 8, "to": {"_count": 1, "think": {"_count": 1}}, "and": {"_count": 1, "early": {"_count": 1}}, "disfigurements": {"_count": 1, "such": {"_count": 1}}, "even": {"_count": 1, "than": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "pictures": {"_count": 1, "": {"_count": 1}}, "potions": {"_count": 1, "nothing": {"_count": 1}}}, "illustrations": {"_count": 3, "which": {"_count": 1, "included": {"_count": 1}}, "of": {"_count": 2, "postboxes": {"_count": 1}, "all": {"_count": 1}}}, "sprouting": {"_count": 7, "several": {"_count": 1, "extra": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "moment": {"_count": 1}}, "visibly": {"_count": 1, "on": {"_count": 1}}, "feelers": {"_count": 1, "Dont": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "copiously": {"_count": 1, "from": {"_count": 1}}}, "drawings": {"_count": 1, "of": {"_count": 1, "people": {"_count": 1}}}, "transforming": {"_count": 6, "into": {"_count": 3, "other": {"_count": 1}, "girls": {"_count": 1}, "a": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "ers": {"_count": 1}}, "her": {"_count": 1, "nose": {"_count": 1}}}, "artist": {"_count": 2, "had": {"_count": 1, "imagined": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "intense": {"_count": 13, "pain": {"_count": 1, "on": {"_count": 1}}, "cold": {"_count": 1, "swept": {"_count": 1}}, "suffering": {"_count": 1, "": {"_count": 1}}, "dislike": {"_count": 2, "upon": {"_count": 1}, "": {"_count": 1}}, "so": {"_count": 1, "allconsuming": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "discussion": {"_count": 1, "about": {"_count": 1}}, "relief": {"_count": 2, "Angelina": {"_count": 1}, "however": {"_count": 1}}, "embarrassment": {"_count": 1, "he": {"_count": 1}}, "eager": {"_count": 1, "face": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "scanned": {"_count": 21, "the": {"_count": 19, "recipe": {"_count": 1}, "page": {"_count": 1}, "starry": {"_count": 1}, "moving": {"_count": 1}, "map": {"_count": 1}, "darkness": {"_count": 1}, "front": {"_count": 3}, "table": {"_count": 1}, "darkening": {"_count": 1}, "story": {"_count": 1}, "first": {"_count": 1}, "index": {"_count": 1}, "staff": {"_count": 2}, "headlines": {"_count": 1}, "Hall": {"_count": 1}, "floor": {"_count": 1}}, "his": {"_count": 1, "copy": {"_count": 1}}, "it": {"_count": 1, "carefully": {"_count": 1}}}, "Lacewing": {"_count": 1, "flies": {"_count": 1, "leeches": {"_count": 1}}}, "leeches": {"_count": 3, "fluxweed": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fluxweed": {"_count": 2, "and": {"_count": 1, "knotgrass": {"_count": 1}}, "has": {"_count": 1, "got": {"_count": 1}}}, "knotgrass": {"_count": 3, "she": {"_count": 1, "murmured": {"_count": 1}}, "and": {"_count": 1, "throwing": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}}, "storecupboard": {"_count": 1, "we": {"_count": 1, "can": {"_count": 1}}}, "bicorn": {"_count": 2, "dont": {"_count": 1, "know": {"_count": 1}}, "horn": {"_count": 1, "and": {"_count": 1}}}, "boomslang": {"_count": 5, "thatll": {"_count": 1, "be": {"_count": 1}}, "thats": {"_count": 1, "definitely": {"_count": 1}}, "skin": {"_count": 3, "and": {"_count": 1}, "back": {"_count": 1}, "from": {"_count": 1}}}, "Crabbes": {"_count": 13, "toenails": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 4, "Goyles": {"_count": 4}}, "into": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "dark": {"_count": 1}}, "face": {"_count": 1, "was": {"_count": 1}}, "arms": {"_count": 1, "and": {"_count": 1}}, "comic": {"_count": 1, "directly": {"_count": 1}}, "business": {"_count": 1, "what": {"_count": 1}}, "arm": {"_count": 1, "as": {"_count": 1}}, "curse": {"_count": 1, "missed": {"_count": 1}}}, "toenails": {"_count": 3, "in": {"_count": 1, "it": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "grow": {"_count": 1}}}, "Shredded": {"_count": 1, "skin": {"_count": 1, "of": {"_count": 1}}}, "patches": {"_count": 20, "on": {"_count": 4, "her": {"_count": 2}, "his": {"_count": 2}}, "of": {"_count": 10, "sky": {"_count": 1}, "fur": {"_count": 1}, "dust": {"_count": 1}, "jewelbright": {"_count": 1}, "deepest": {"_count": 1}, "pink": {"_count": 1}, "clear": {"_count": 1}, "dancing": {"_count": 1}, "light": {"_count": 1}, "green": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "appeared": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "blazing": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}}, "brighter": {"_count": 11, "than": {"_count": 1, "usual": {"_count": 1}}, "and": {"_count": 3, "brighter": {"_count": 1}, "warmer": {"_count": 1}, "Lupin": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "scarlet": {"_count": 1, "than": {"_count": 1}}, "though": {"_count": 1, "there": {"_count": 1}}, "when": {"_count": 1, "viewed": {"_count": 1}}, "A": {"_count": 1, "shaft": {"_count": 1}}}, "borns": {"_count": 3, "is": {"_count": 1, "far": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "who": {"_count": 1, "didnt": {"_count": 1}}}, "brewing": {"_count": 2, "up": {"_count": 2, "a": {"_count": 1}, "tea": {"_count": 1}}}, "persuading": {"_count": 7, "us": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "disgruntled": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "Lupin": {"_count": 1, "to": {"_count": 1}}}, "lacewings": {"_count": 3, "have": {"_count": 1, "got": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "hassle": {"_count": 1, "if": {"_count": 1, "you": {"_count": 1}}}, "huddled": {"_count": 26, "at": {"_count": 2, "the": {"_count": 2}}, "together": {"_count": 5, "while": {"_count": 1}, "deep": {"_count": 1}, "outside": {"_count": 1}, "at": {"_count": 1}, "as": {"_count": 1}}, "in": {"_count": 8, "her": {"_count": 1}, "Rons": {"_count": 1}, "their": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "one": {"_count": 1}, "doorways": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 2, "blankeyed": {"_count": 1}, "shivering": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "mass": {"_count": 1, "lying": {"_count": 1}}, "round": {"_count": 1, "my": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "for": {"_count": 1, "warmth": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "Voldemort": {"_count": 1}}}, "uptight": {"_count": 3, "and": {"_count": 2, "not": {"_count": 1}, "irritable": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}}, "muggy": {"_count": 1, "sort": {"_count": 1, "of": {"_count": 1}}}, "pre": {"_count": 3, "match": {"_count": 1, "pep": {"_count": 1}}, "bookings": {"_count": 1, "": {"_count": 1}}, "bedtime": {"_count": 1, "wipedown": {"_count": 1}}}, "weathers": {"_count": 3, "Too": {"_count": 1, "true": {"_count": 1}}, "this": {"_count": 1, "good": {"_count": 1}}, "good": {"_count": 1, "": {"_count": 1}}}, "rue": {"_count": 2, "the": {"_count": 1, "day": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Chest": {"_count": 1, "heaving": {"_count": 1, "with": {"_count": 1}}}, "emotion": {"_count": 19, "Wood": {"_count": 1, "turned": {"_count": 1}}, "overtook": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 2, "buried": {"_count": 1}, "was": {"_count": 1}}, "to": {"_count": 1, "spare": {"_count": 1}}, "had": {"_count": 1, "risen": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "every": {"_count": 1, "night": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "after": {"_count": 1}}, "the": {"_count": 1, "creatures": {"_count": 1}}, "quite": {"_count": 1, "different": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "is": {"_count": 1, "I": {"_count": 1}}}, "boos": {"_count": 6, "and": {"_count": 2, "hisses": {"_count": 1}, "shouts": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}}, "hisses": {"_count": 2, "heard": {"_count": 1, "too": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "stares": {"_count": 6, "and": {"_count": 1, "gripping": {"_count": 1}}, "of": {"_count": 3, "all": {"_count": 1}, "his": {"_count": 1}, "passing": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "leaden": {"_count": 4, "sky": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "rainy": {"_count": 1}}, "sensation": {"_count": 1, "was": {"_count": 1}}}, "Scarhead": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "ruffle": {"_count": 2, "his": {"_count": 1, "hair": {"_count": 1}}, "of": {"_count": 1, "pages": {"_count": 1}}}, "Close": {"_count": 10, "one": {"_count": 1, "Harry": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 1}, "Harry": {"_count": 1}}, "enough": {"_count": 1, "she": {"_count": 1}}, "shave": {"_count": 1, "Potter": {"_count": 1}}, "the": {"_count": 1, "door": {"_count": 1}}, "your": {"_count": 2, "mind": {"_count": 2}}, "to": {"_count": 1, "he": {"_count": 1}}}, "whack": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "swerved": {"_count": 16, "like": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 3, "avoid": {"_count": 2}, "the": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "circled": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 3, "Harry": {"_count": 1}, "avoided": {"_count": 1}, "zigzagged": {"_count": 1}}, "his": {"_count": 1, "insides": {"_count": 1}}, "sideways": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "stalactites": {"_count": 1}}, "again": {"_count": 1, "as": {"_count": 1}}}, "boomerang": {"_count": 1, "and": {"_count": 1, "shot": {"_count": 1}}}, "concentrated": {"_count": 12, "on": {"_count": 3, "one": {"_count": 1}, "not": {"_count": 1}, "what": {"_count": 1}}, "hard": {"_count": 1, "frowning": {"_count": 1}}, "with": {"_count": 1, "all": {"_count": 1}}, "every": {"_count": 1, "last": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "harder": {"_count": 1, "than": {"_count": 1}}, "all": {"_count": 1, "their": {"_count": 1}}, "blackness": {"_count": 1, "moving": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "gaze": {"_count": 1, "it": {"_count": 1}}}, "unseat": {"_count": 1, "as": {"_count": 1, "many": {"_count": 1}}}, "Gotcha": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "magnetically": {"_count": 2, "attracted": {"_count": 1, "to": {"_count": 1}}, "onward": {"_count": 1, "and": {"_count": 1}}}, "attracted": {"_count": 9, "to": {"_count": 1, "Harry": {"_count": 1}}, "Filch": {"_count": 1, "and": {"_count": 1}}, "your": {"_count": 1, "attention": {"_count": 1}}, "the": {"_count": 2, "rest": {"_count": 1}, "attention": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "me": {"_count": 1, "as": {"_count": 1}}, "several": {"_count": 1, "magical": {"_count": 1}}}, "splattering": {"_count": 8, "onto": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "thud": {"_count": 1, "he": {"_count": 1}}, "over": {"_count": 1, "Harrys": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "windows": {"_count": 1}}, "Fleurs": {"_count": 1, "robes": {"_count": 1}}, "his": {"_count": 1, "robes": {"_count": 1}}}, "zero": {"_count": 11, "The": {"_count": 1, "Slytherins": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "look": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "Ireland": {"_count": 1}}, "Rons": {"_count": 1, "indignation": {"_count": 1}}, "said": {"_count": 2, "Fleur": {"_count": 1}, "Harry": {"_count": 1}}, "marks": {"_count": 1, "for": {"_count": 1}}, "then": {"_count": 1, "Potter": {"_count": 1}}, "Ron": {"_count": 1, "having": {"_count": 1}}}, "superior": {"_count": 9, "brooms": {"_count": 1, "were": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "tone": {"_count": 1, "": {"_count": 1}}, "looks": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 2, "everyone": {"_count": 1}, "other": {"_count": 1}}, "skill": {"_count": 1, "": {"_count": 1}}}, "tampered": {"_count": 5, "with": {"_count": 4, "this": {"_count": 1}, "": {"_count": 2}, "the": {"_count": 1}}, "so": {"_count": 1, "illadvisedly": {"_count": 1}}}, "signal": {"_count": 12, "to": {"_count": 2, "Wood": {"_count": 1}, "tell": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "break": {"_count": 1, "never": {"_count": 1}}, "the": {"_count": 1, "start": {"_count": 1}}, "he": {"_count": 1, "jumped": {"_count": 1}}, "comes": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 1}, "?": {"_count": 1}}, "lets": {"_count": 1, "go": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}}, "jeered": {"_count": 13, "": {"_count": 5, ".": {"_count": 5}}, "at": {"_count": 3, "his": {"_count": 1}, "Harry": {"_count": 1}, "Hermione": {"_count": 1}}, "in": {"_count": 1, "equal": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "Scabior": {"_count": 1, "out": {"_count": 1}}, "Voldemort": {"_count": 1, "and": {"_count": 1}}}, "murdering": {"_count": 8, "Harry": {"_count": 2, "Oliver": {"_count": 1}, "will": {"_count": 1}}, "my": {"_count": 1, "mum": {"_count": 1}}, "all": {"_count": 1, "those": {"_count": 1}}, "innocent": {"_count": 1, "people": {"_count": 1}}, "his": {"_count": 1, "favorite": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "a": {"_count": 1, "woman": {"_count": 1}}}, "rogue": {"_count": 4, "one": {"_count": 1, "": {"_count": 1}}, "Bludger": {"_count": 2, "was": {"_count": 1}, "into": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "insane": {"_count": 22, "said": {"_count": 1, "Alicia": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 2}, "!": {"_count": 1}}, "urge": {"_count": 1, "to": {"_count": 1}}, "smile": {"_count": 2, "": {"_count": 1}, "lit": {"_count": 1}}, "now": {"_count": 1, "towering": {"_count": 1}}, "grin": {"_count": 1, "spread": {"_count": 1}}, "idea": {"_count": 1, "just": {"_count": 1}}, "if": {"_count": 1, "Voldemorts": {"_count": 1}}, "laughter": {"_count": 1, "was": {"_count": 1}}, "not": {"_count": 1, "least": {"_count": 1}}, "to": {"_count": 2, "do": {"_count": 1}, "keep": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "determination": {"_count": 1, "to": {"_count": 1}}, "rumors": {"_count": 1, "circulating": {"_count": 1}}, "Were": {"_count": 1, "fighting": {"_count": 1}}, "it": {"_count": 1, "echoed": {"_count": 1}}}, "forfeit": {"_count": 1, "the": {"_count": 1, "match": {"_count": 1}}}, "\u2018Get": {"_count": 1, "the": {"_count": 1, "Snitch": {"_count": 1}}}, "resume": {"_count": 10, "play": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 2, "seats": {"_count": 1}, "strangling": {"_count": 1}}, "the": {"_count": 3, "lives": {"_count": 1}, "stroking": {"_count": 1}, "subject": {"_count": 1}}, "your": {"_count": 1, "usual": {"_count": 1}}, "this": {"_count": 1, "lesson": {"_count": 1}}, "Occlumency": {"_count": 1, "lessons": {"_count": 1}}, "his": {"_count": 1, "old": {"_count": 1}}}, "telltale": {"_count": 2, "whoosh": {"_count": 1, "of": {"_count": 1}}, "signs": {"_count": 1, "of": {"_count": 1}}}, "whoosh": {"_count": 5, "of": {"_count": 2, "the": {"_count": 2}}, "George": {"_count": 1, "had": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "Higher": {"_count": 3, "and": {"_count": 3, "higher": {"_count": 3}}}, "looped": {"_count": 3, "and": {"_count": 1, "swooped": {"_count": 1}}, "her": {"_count": 1, "easily": {"_count": 1}}, "itself": {"_count": 1, "happily": {"_count": 1}}}, "spiraled": {"_count": 5, "zigzagged": {"_count": 1, "and": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "horribly": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "zigzagged": {"_count": 5, "and": {"_count": 1, "rolled": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "headstones": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}}, "Slightly": {"_count": 5, "dizzy": {"_count": 1, "he": {"_count": 1}}, "ashamed": {"_count": 1, "of": {"_count": 1}}, "cross": {"_count": 1, "eyed": {"_count": 1}}, "crestfallen": {"_count": 1, "Harry": {"_count": 1}}, "taken": {"_count": 1, "aback": {"_count": 1}}}, "nevertheless": {"_count": 23, "kept": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 3, "smiled": {"_count": 1}, "felt": {"_count": 1}, "did": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}, "although": {"_count": 1, "it": {"_count": 1}}, "good": {"_count": 1, "to": {"_count": 1}}, "carried": {"_count": 2, "across": {"_count": 1}, "all": {"_count": 1}}, "effective": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 2, "look": {"_count": 1}, "golden": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "caused": {"_count": 1, "in": {"_count": 1}}, "possible": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "request": {"_count": 1}}, "a": {"_count": 1, "certain": {"_count": 1}}, "quite": {"_count": 1, "relieved": {"_count": 1}}}, "speckling": {"_count": 1, "his": {"_count": 1, "glasses": {"_count": 1}}}, "rollercoaster": {"_count": 1, "ride": {"_count": 1, "around": {"_count": 1}}}, "Training": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "ballet": {"_count": 4, "Potter": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "teacher": {"_count": 1, "to": {"_count": 1}}}, "twirl": {"_count": 1, "in": {"_count": 1, "midair": {"_count": 1}}}, "agonizing": {"_count": 4, "moment": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "floorshaking": {"_count": 1, "crash": {"_count": 1}}}, "Dimly": {"_count": 3, "dazed": {"_count": 1, "by": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "knew": {"_count": 1}}}, "searing": {"_count": 13, "pain": {"_count": 5, "in": {"_count": 3}, "just": {"_count": 1}, "on": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "with": {"_count": 2, "pain": {"_count": 2}}, "gasps": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "throat": {"_count": 1}}, "stitch": {"_count": 2, "in": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "aiming": {"_count": 19, "at": {"_count": 4, "his": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 1}}, "to": {"_count": 3, "kill": {"_count": 1}, "capture": {"_count": 1}, "be": {"_count": 1}}, "a": {"_count": 4, "crossbow": {"_count": 1}, "hex": {"_count": 1}, "kick": {"_count": 2}}, "for": {"_count": 6, "Alicia": {"_count": 1}, "the": {"_count": 3}, "Hagrid": {"_count": 2}}, "but": {"_count": 1, "it": {"_count": 1}}, "curse": {"_count": 1, "after": {"_count": 1}}}, "lodged": {"_count": 3, "in": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "itself": {"_count": 1, "in": {"_count": 1}}}, "haze": {"_count": 14, "of": {"_count": 11, "rain": {"_count": 2}, "greenish": {"_count": 2}, "blazing": {"_count": 1}, "pipe": {"_count": 3}, "multicolored": {"_count": 1}, "tiredness": {"_count": 1}, "pain": {"_count": 1}}, "which": {"_count": 1, "made": {"_count": 1}}, "and": {"_count": 1, "vanished": {"_count": 1}}, "upon": {"_count": 1, "their": {"_count": 1}}}, "widen": {"_count": 3, "with": {"_count": 2, "fear": {"_count": 2}}, "in": {"_count": 1, "shock": {"_count": 1}}}, "careening": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "riddled": {"_count": 2, "with": {"_count": 1, "pain": {"_count": 1}}, "him": {"_count": 1, "for": {"_count": 1}}}, "focused": {"_count": 14, "on": {"_count": 4, "the": {"_count": 2}, "Harry": {"_count": 1}, "something": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "them": {"_count": 1, "on": {"_count": 1}}, "completely": {"_count": 1, "upon": {"_count": 1}}, "again": {"_count": 1, "on": {"_count": 1}}, "its": {"_count": 1, "attention": {"_count": 1}}, "upon": {"_count": 2, "him": {"_count": 1}, "Bill": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "exclusively": {"_count": 1}}, "entirely": {"_count": 1, "on": {"_count": 1}}}, "fainted": {"_count": 7, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "glitter": {"_count": 4, "of": {"_count": 1, "teeth": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "glow": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Lie": {"_count": 5, "back": {"_count": 2, "Harry": {"_count": 1}, "upon": {"_count": 1}}, "down": {"_count": 1, "he": {"_count": 1}}, "still": {"_count": 1, "for": {"_count": 1}}, "low": {"_count": 1, "at": {"_count": 1}}}, "soothingly": {"_count": 10, "": {"_count": 2, ".": {"_count": 2}}, "we": {"_count": 1, "dont": {"_count": 1}}, "its": {"_count": 1, "all": {"_count": 1}}, "prising": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "patting": {"_count": 1, "her": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "waving": {"_count": 1, "an": {"_count": 1}}, "it": {"_count": 1, "does": {"_count": 1}}}, "thicket": {"_count": 4, "of": {"_count": 3, "legs": {"_count": 1}, "Devils": {"_count": 1}, "trees": {"_count": 1}}, "off": {"_count": 1, "after": {"_count": 1}}}, "terrific": {"_count": 1, "fight": {"_count": 1, "": {"_count": 1}}}, "jadegreen": {"_count": 1, "sleeves": {"_count": 1, "": {"_count": 1}}}, "twirling": {"_count": 10, "his": {"_count": 5, "wand": {"_count": 2}, "goatee": {"_count": 1}, "bowler": {"_count": 1}, "green": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "the": {"_count": 2, "wand": {"_count": 2}}, "her": {"_count": 1, "wand": {"_count": 1}}}, "sensation": {"_count": 42, "started": {"_count": 1, "at": {"_count": 1}}, "spread": {"_count": 1, "rapidly": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "of": {"_count": 9, "his": {"_count": 2}, "hearing": {"_count": 1}, "a": {"_count": 1}, "standing": {"_count": 1}, "Apparition": {"_count": 1}, "falling": {"_count": 2}, "compressing": {"_count": 1}}, "that": {"_count": 9, "something": {"_count": 2}, "he": {"_count": 3}, "his": {"_count": 2}, "was": {"_count": 1}, "Katies": {"_count": 1}}, "grew": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 2, "every": {"_count": 1}, "though": {"_count": 1}}, "in": {"_count": 9, "his": {"_count": 6}, "the": {"_count": 3}}, "somewhere": {"_count": 1, "around": {"_count": 1}}, "was": {"_count": 2, "spreading": {"_count": 1}, "settling": {"_count": 1}}, "does": {"_count": 1, "take": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "shot": {"_count": 1, "down": {"_count": 1}}}, "deflated": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "silently": {"_count": 1, "before": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "feathers": {"_count": 1, "oozing": {"_count": 1}}}, "remotely": {"_count": 13, "like": {"_count": 1, "an": {"_count": 1}}, "handsome": {"_count": 1, "anymore": {"_count": 1}}, "frightening": {"_count": 1, "": {"_count": 1}}, "beautiful": {"_count": 1, "now": {"_count": 1}}, "likely": {"_count": 1, "that": {"_count": 1}}, "tired": {"_count": 1, "": {"_count": 1}}, "abashed": {"_count": 2, "": {"_count": 1}, "he": {"_count": 1}}, "amused": {"_count": 1, "now": {"_count": 1}}, "afraid": {"_count": 1, "of": {"_count": 1}}, "hungry": {"_count": 1, "": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "pleased": {"_count": 1, "to": {"_count": 1}}}, "toddle": {"_count": 1, "up": {"_count": 1, "to": {"_count": 1}}}, "escort": {"_count": 10, "him": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 3, "back": {"_count": 1}, "to": {"_count": 2}}, "of": {"_count": 1, "four": {"_count": 1}}, "Harry": {"_count": 2, "back": {"_count": 1}, "Potter": {"_count": 1}}, "them": {"_count": 2, "across": {"_count": 1}, "inside": {"_count": 1}}, "Sibyll": {"_count": 1, "back": {"_count": 1}}}, "Poking": {"_count": 2, "out": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}}, "fleshcolored": {"_count": 7, "rubber": {"_count": 1, "glove": {"_count": 1}}, "pinpricks": {"_count": 1, "below": {"_count": 1}}, "string": {"_count": 3, "": {"_count": 2}, "descended": {"_count": 1}}, "strings": {"_count": 2, "wriggled": {"_count": 1}, "and": {"_count": 1}}}, "remainder": {"_count": 10, "of": {"_count": 9, "what": {"_count": 1}, "the": {"_count": 6}, "your": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 1, "piles": {"_count": 1}}}, "rubbery": {"_count": 3, "boneless": {"_count": 1, "arm": {"_count": 1}}, "like": {"_count": 1, "octopus": {"_count": 1}}, "mushrooms": {"_count": 1, "tingled": {"_count": 1}}}, "boneless": {"_count": 1, "arm": {"_count": 1, "into": {"_count": 1}}}, "cuff": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "very": {"_count": 1, "obvious": {"_count": 1}}, "in": {"_count": 1, "constant": {"_count": 1}}, "and": {"_count": 1, "cleared": {"_count": 1}}}, "deboning": {"_count": 1, "he": {"_count": 1, "would": {"_count": 1}}}, "pointlessly": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}}, "labeled": {"_count": 17, "SkeleGro": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 2}, "names": {"_count": 1}}, "dot": {"_count": 3, "in": {"_count": 1}, "standing": {"_count": 1}, "would": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "Severus": {"_count": 2, "Snape": {"_count": 2}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "dots": {"_count": 1, "moving": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "EDIBLE": {"_count": 1, "DARK": {"_count": 1}}, "black": {"_count": 1, "dots": {"_count": 1}}, "GENTLEMEN": {"_count": 1, "the": {"_count": 1}}, "\u2018Essence": {"_count": 1, "of": {"_count": 1}}}, "SkeleGro": {"_count": 7, "": {"_count": 4, ".": {"_count": 4}}, "when": {"_count": 1, "he": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}, "has": {"_count": 1, "finished": {"_count": 1}}}, "rough": {"_count": 28, "night": {"_count": 1, "she": {"_count": 1}}, "stone": {"_count": 5, "walls": {"_count": 4}, "passageway": {"_count": 1}}, "mud": {"_count": 1, "track": {"_count": 1}}, "time": {"_count": 1, "at": {"_count": 1}}, "crowd": {"_count": 1, "lives": {"_count": 1}}, "wooden": {"_count": 1, "tables": {"_count": 1}}, "job": {"_count": 1, "": {"_count": 1}}, "whisper": {"_count": 2, "How": {"_count": 1}, "close": {"_count": 1}}, "seams": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "wet": {"_count": 1, "rock": {"_count": 1}}, "rock": {"_count": 1, "as": {"_count": 1}}, "cavern": {"_count": 1, "wall": {"_count": 1}}, "position": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "unmelodious": {"_count": 1}}, "excited": {"_count": 1, "voices": {"_count": 1}}, "flayedlooking": {"_count": 1, "and": {"_count": 1}}, "unlettered": {"_count": 1, "and": {"_count": 1}}}, "beakerful": {"_count": 1, "and": {"_count": 1, "handing": {"_count": 1}}}, "Regrowing": {"_count": 1, "bones": {"_count": 1, "is": {"_count": 1}}}, "tuttutting": {"_count": 1, "about": {"_count": 1, "dangerous": {"_count": 1}}}, "inept": {"_count": 2, "teachers": {"_count": 1, "Madam": {"_count": 1}}, "Professor": {"_count": 1, "Lockhart": {"_count": 1}}}, "retreated": {"_count": 22, "leaving": {"_count": 1, "Ron": {"_count": 1}}, "into": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 3}}, "backed": {"_count": 1, "against": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 2, "short": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "farther": {"_count": 2, "as": {"_count": 1}, "upstairs": {"_count": 1}}, "behind": {"_count": 1, "The": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 2}}, "inside": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "stars": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}}, "pillows": {"_count": 20, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 6, "pushed": {"_count": 1}, "fell": {"_count": 1}, "fluffy": {"_count": 1}, "thought": {"_count": 1}, "reading": {"_count": 1}, "looked": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "aching": {"_count": 1, "all": {"_count": 1}}, "no": {"_count": 1, "I": {"_count": 1}}, "fuming": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "ze": {"_count": 1}}}, "tastes": {"_count": 2, "better": {"_count": 1, "than": {"_count": 1}}, "disgusting": {"_count": 1, "": {"_count": 1}}}, "Filthy": {"_count": 4, "and": {"_count": 1, "soaking": {"_count": 1}}, "stinkin": {"_count": 1, "turncoat": {"_count": 1}}, "disheveled": {"_count": 1, "Winky": {"_count": 1}}, "halfbreeds": {"_count": 1, "": {"_count": 1}}}, "soaking": {"_count": 7, "wet": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "robes": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "clothes": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "swollen": {"_count": 1}, "colder": {"_count": 1}}}, "Unbelievable": {"_count": 2, "flying": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "storming": {"_count": 7, "over": {"_count": 1, "shouting": {"_count": 1}}, "of": {"_count": 1, "an": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}}, "regrow": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "we": {"_count": 1, "got": {"_count": 1}}}, "Hours": {"_count": 2, "and": {"_count": 1, "hours": {"_count": 1}}, "ago": {"_count": 1, "": {"_count": 1}}}, "sponging": {"_count": 2, "his": {"_count": 1, "forehead": {"_count": 1}}, "sick": {"_count": 1, "from": {"_count": 1}}}, "houseelfs": {"_count": 12, "goggling": {"_count": 1, "tennis": {"_count": 1}}, "enslavement": {"_count": 2, "sir": {"_count": 2}}, "saving": {"_count": 1, "him": {"_count": 1}}, "former": {"_count": 1, "owners": {"_count": 1}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "been": {"_count": 1, "doing": {"_count": 1}}, "ears": {"_count": 2, "so": {"_count": 1}, "continued": {"_count": 1}}, "attitude": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "highest": {"_count": 1, "law": {"_count": 1}}}, "rocking": {"_count": 10, "backward": {"_count": 7, "and": {"_count": 7}}, "from": {"_count": 1, "side": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}}, "flogging": {"_count": 1, "Dobby": {"_count": 1, "never": {"_count": 1}}}, "strangle": {"_count": 8, "you": {"_count": 2, "": {"_count": 1}, "with": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "unwitting": {"_count": 1, "waders": {"_count": 1}}, "him": {"_count": 1, "when": {"_count": 1}}, "three": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}, "Ron": {"_count": 1, "Regulus": {"_count": 1}}}, "threats": {"_count": 5, "sir": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "we": {"_count": 1, "just": {"_count": 1}}, "to": {"_count": 1, "thin": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "pathetic": {"_count": 16, "that": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 2}, "!": {"_count": 1}}, "you": {"_count": 1, "foul": {"_count": 1}}, "reporter": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 1, "it": {"_count": 1}}, "Id": {"_count": 1, "be": {"_count": 1}}, "even": {"_count": 1, "worse": {"_count": 1}}, "little": {"_count": 1, "boy": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 1, "youre": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "but": {"_count": 1, "Bill": {"_count": 1}}}, "ebb": {"_count": 3, "away": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "flow": {"_count": 1}}}, "plucking": {"_count": 3, "at": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}, "his": {"_count": 1, "sleeve": {"_count": 1}}}, "Tis": {"_count": 4, "a": {"_count": 2, "mark": {"_count": 1}, "most": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}, "strong": {"_count": 1, "for": {"_count": 1}}}, "enslavement": {"_count": 3, "sir": {"_count": 2, "": {"_count": 2}}, "goes": {"_count": 1, "back": {"_count": 1}}}, "sock": {"_count": 15, "sir": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 2, "stuffed": {"_count": 1}, "looking": {"_count": 1}}, "into": {"_count": 1, "Lucius": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "the": {"_count": 1}, "Dobby": {"_count": 1}}, "with": {"_count": 1, "shaking": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 2, "bright": {"_count": 1}, "green": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "lowly": {"_count": 2, "the": {"_count": 1, "enslaved": {"_count": 1}}, "tree": {"_count": 1, "": {"_count": 1}}}, "enslaved": {"_count": 5, "we": {"_count": 1, "dregs": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "dregs": {"_count": 5, "of": {"_count": 3, "the": {"_count": 1}, "milk": {"_count": 1}, "coffee": {"_count": 1}}, "remain": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "as": {"_count": 1}}}, "vermin": {"_count": 4, "sir": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "drying": {"_count": 2, "his": {"_count": 1, "face": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "triumphed": {"_count": 4, "over": {"_count": 1, "HeWhoMustNotBe": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "without": {"_count": 1, "doing": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Lords": {"_count": 27, "power": {"_count": 1, "was": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "supporters": {"_count": 1, "": {"_count": 1}}, "vengeance": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "thoughts": {"_count": 2, "and": {"_count": 1}, "I": {"_count": 1}}, "name": {"_count": 4, "spat": {"_count": 1}, "They": {"_count": 1}, "": {"_count": 1}, "Weasley": {"_count": 1}}, "most": {"_count": 1, "loyal": {"_count": 1}}, "Let": {"_count": 1, "go": {"_count": 1}}, "orders": {"_count": 2, "that": {"_count": 1}, "of": {"_count": 1}}, "side": {"_count": 1, "because": {"_count": 1}}, "initial": {"_count": 1, "displeasure": {"_count": 1}}, "attack": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "followers": {"_count": 1}}, "word": {"_count": 1, "is": {"_count": 1}}, "favorite": {"_count": 2, "his": {"_count": 1}, "anymore": {"_count": 1}}, "wishes": {"_count": 1, "": {"_count": 1}}, "bothering": {"_count": 1, "to": {"_count": 1}}, "aims": {"_count": 1, "": {"_count": 1}}, "plan": {"_count": 1, "": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}}, "beacon": {"_count": 2, "of": {"_count": 1, "hope": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "horrors": {"_count": 7, "truck": {"_count": 2, "then": {"_count": 1}, "at": {"_count": 1}}, "in": {"_count": 2, "your": {"_count": 1}, "store": {"_count": 1}}, "floating": {"_count": 1, "around": {"_count": 1}}, "this": {"_count": 1, "weapon": {"_count": 1}}, "the": {"_count": 1, "Cruciatus": {"_count": 1}}}, "truck": {"_count": 2, "then": {"_count": 1, "grabbed": {"_count": 1}}, "at": {"_count": 1, "what": {"_count": 1}}}, "bedside": {"_count": 38, "table": {"_count": 24, "and": {"_count": 6}, "one": {"_count": 1}, "": {"_count": 9}, "where": {"_count": 1}, "gripped": {"_count": 1}, "I": {"_count": 1}, "snatched": {"_count": 1}, "crossed": {"_count": 1}, "then": {"_count": 1}, "pulled": {"_count": 1}, "that": {"_count": 1}}, "cabinet": {"_count": 11, "dipped": {"_count": 1}, "the": {"_count": 1}, "not": {"_count": 1}, "": {"_count": 2}, "as": {"_count": 1}, "bent": {"_count": 1}, "and": {"_count": 3}, "threw": {"_count": 1}}, "only": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "seat": {"_count": 1}}}, "toppling": {"_count": 6, "out": {"_count": 2, "of": {"_count": 2}}, "onto": {"_count": 1, "the": {"_count": 1}}, "statues": {"_count": 1, "and": {"_count": 1}}, "grandfather": {"_count": 1, "clocks": {"_count": 1}}, "from": {"_count": 1, "stone": {"_count": 1}}}, "crawled": {"_count": 20, "back": {"_count": 2, "onto": {"_count": 1}, "through": {"_count": 1}}, "forward": {"_count": 1, "headfirst": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "toward": {"_count": 2, "Ron": {"_count": 1}, "Voldemort": {"_count": 1}}, "under": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 3, "Harrys": {"_count": 1}, "bed": {"_count": 1}, "the": {"_count": 1}}, "inter": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "out": {"_count": 3, "from": {"_count": 2}, "of": {"_count": 1}}, "rapidly": {"_count": 1, "toward": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "unpleasantly": {"_count": 1, "as": {"_count": 1}}}, "deeds": {"_count": 4, "are": {"_count": 1, "planned": {"_count": 1}}, "to": {"_count": 1, "their": {"_count": 1}}, "he": {"_count": 1, "knew": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "tis": {"_count": 1, "too": {"_count": 1, "dangerous": {"_count": 1}}}, "ecstasy": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}}, "dressing": {"_count": 38, "gown": {"_count": 24, "and": {"_count": 7}, "theyre": {"_count": 1}, "shaking": {"_count": 1}, "again": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 5}, "her": {"_count": 1}, "over": {"_count": 1}, "was": {"_count": 1}, "embroidered": {"_count": 1}, "pale": {"_count": 1}, "to": {"_count": 1}, "rustled": {"_count": 1}, "stood": {"_count": 1}}, "gowns": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "so": {"_count": 1, "thoroughly": {"_count": 1}}, "himself": {"_count": 1, "than": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "zem": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "table": {"_count": 6, "": {"_count": 1}, "beneath": {"_count": 1}, "which": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}, "Ron": {"_count": 1}}}, "nightcap": {"_count": 5, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "looking": {"_count": 1}}}, "cardigan": {"_count": 6, "on": {"_count": 1, "over": {"_count": 1}}, "she": {"_count": 1, "wore": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Parvati": {"_count": 1, "whispered": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "intake": {"_count": 6, "of": {"_count": 6, "breath": {"_count": 6}}}, "grapes": {"_count": 2, "next": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Angelina": {"_count": 1}}}, "Colins": {"_count": 2, "rigid": {"_count": 1, "grip": {"_count": 1}}, "bed": {"_count": 1, "but": {"_count": 1}}}, "gracious": {"_count": 10, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Minister": {"_count": 1, "he": {"_count": 1}}, "smile": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "its": {"_count": 1, "getting": {"_count": 1}}, "is": {"_count": 2, "it": {"_count": 2}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}}, "acrid": {"_count": 3, "smell": {"_count": 2, "of": {"_count": 2}}, "black": {"_count": 1, "smoke": {"_count": 1}}}, "Melted": {"_count": 1, "said": {"_count": 1, "Madam": {"_count": 1}}}, "DUELING": {"_count": 1, "CLUB": {"_count": 1, "Harry": {"_count": 1}}}, "CLUB": {"_count": 2, "Harry": {"_count": 2, "woke": {"_count": 1}, "spent": {"_count": 1}}}, "reboned": {"_count": 1, "but": {"_count": 1, "very": {"_count": 1}}}, "clumsily": {"_count": 10, "fed": {"_count": 1, "himself": {"_count": 1}}, "muttering": {"_count": 1, "dully": {"_count": 1}}, "with": {"_count": 1, "Spellotape": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 1, "Dumbledores": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "by": {"_count": 1, "hand": {"_count": 1}}}, "lefthanded": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "hows": {"_count": 9, "your": {"_count": 2, "arm": {"_count": 1}, "scar": {"_count": 1}}, "the": {"_count": 1, "basilisk": {"_count": 1}}, "he": {"_count": 1, "supposed": {"_count": 1}}, "this": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}, "anyone": {"_count": 1, "ever": {"_count": 1}}, "McLaggen": {"_count": 1, "shaping": {"_count": 1}}, "it": {"_count": 1, "going": {"_count": 1}}}, "squeezing": {"_count": 16, "into": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 2, "very": {"_count": 1}, "out": {"_count": 1}}, "through": {"_count": 2, "himself": {"_count": 1}, "the": {"_count": 1}}, "themselves": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harrys": {"_count": 1, "arm": {"_count": 1}}, "itself": {"_count": 1, "out": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 2, "bullfrog": {"_count": 1}, "heart": {"_count": 1}}, "between": {"_count": 1, "their": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 2, "air": {"_count": 1}, "fingers": {"_count": 1}}}, "rim": {"_count": 15, "told": {"_count": 1, "Harry": {"_count": 1}}, "of": {"_count": 12, "his": {"_count": 3}, "the": {"_count": 4}, "her": {"_count": 1}, "a": {"_count": 1}, "dazzling": {"_count": 2}, "rock": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Conjuring": {"_count": 2, "up": {"_count": 1, "portable": {"_count": 1}}, "Spells": {"_count": 1, "which": {"_count": 1}}}, "portable": {"_count": 1, "waterproof": {"_count": 1, "fires": {"_count": 1}}}, "waterproof": {"_count": 1, "fires": {"_count": 1, "was": {"_count": 1}}}, "speciality": {"_count": 2, "of": {"_count": 1, "Hermione": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "dve": {"_count": 3, "come": {"_count": 1, "to": {"_count": 1}}, "pitched": {"_count": 1, "him": {"_count": 1}}, "liked": {"_count": 1, "that": {"_count": 1}}}, "confession": {"_count": 9, "out": {"_count": 2, "of": {"_count": 2}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "and": {"_count": 1, "I": {"_count": 1}}, "from": {"_count": 1, "me": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "must": {"_count": 1, "surely": {"_count": 1}}}, "settles": {"_count": 2, "it": {"_count": 2, "said": {"_count": 1}, "he": {"_count": 1}}}, "monsters": {"_count": 16, "in": {"_count": 1, "there": {"_count": 1}}, "dont": {"_count": 1, "make": {"_count": 1}}, "dyou": {"_count": 1, "think": {"_count": 1}}, "arent": {"_count": 1, "as": {"_count": 1}}, "didnt": {"_count": 1, "want": {"_count": 1}}, "that": {"_count": 1, "roam": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "unprepared": {"_count": 1, "well": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "books": {"_count": 1, "on": {"_count": 1}}, "were": {"_count": 2, "lovably": {"_count": 1}, "circling": {"_count": 1}}, "of": {"_count": 2, "giant": {"_count": 1}, "flame": {"_count": 1}}, "which": {"_count": 1, "shuddered": {"_count": 1}}}, "disguise": {"_count": 15, "itself": {"_count": 1, "pretend": {"_count": 1}}, "that": {"_count": 1, "could": {"_count": 1}}, "myself": {"_count": 1, "most": {"_count": 1}}, "Who": {"_count": 1, "deals": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "you": {"_count": 1, "better": {"_count": 1}}, "is": {"_count": 1, "useless": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "under": {"_count": 1}}, "the": {"_count": 4, "continued": {"_count": 1}, "look": {"_count": 1}, "lingering": {"_count": 1}, "fact": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "only": {"_count": 1}}}, "Chameleon": {"_count": 1, "Ghouls": {"_count": 1, "You": {"_count": 1}}}, "lacewing": {"_count": 1, "bag": {"_count": 1, "and": {"_count": 1}}}, "tightknit": {"_count": 1, "groups": {"_count": 1, "as": {"_count": 1}}}, "ventured": {"_count": 3, "forth": {"_count": 1, "alone": {"_count": 1}}, "this": {"_count": 1, "way": {"_count": 1}}, "out": {"_count": 1, "under": {"_count": 1}}}, "forth": {"_count": 12, "alone": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "smelled": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 3, "the": {"_count": 1}, "do": {"_count": 1}, "seek": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "we": {"_count": 1, "shall": {"_count": 1}}, "between": {"_count": 1, "each": {"_count": 1}}, "from": {"_count": 1, "that": {"_count": 1}}}, "distraught": {"_count": 3, "but": {"_count": 1, "Harry": {"_count": 1}}, "Hermione": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "covering": {"_count": 28, "themselves": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 6, "basic": {"_count": 1}, "hinkypunks": {"_count": 1}, "walls": {"_count": 3}, "contents": {"_count": 1}}, "Black": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 2, "for": {"_count": 1}, "breakouts": {"_count": 1}}, "him": {"_count": 2, "and": {"_count": 1}, "he": {"_count": 1}}, "her": {"_count": 1, "up": {"_count": 1}}, "you": {"_count": 1, "from": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 2, "smashed": {"_count": 1}, "up": {"_count": 1}}, "for": {"_count": 1, "Tonks": {"_count": 1}}, "your": {"_count": 1, "middle": {"_count": 1}}, "Snapes": {"_count": 1, "walls": {"_count": 1}}, "his": {"_count": 5, "lips": {"_count": 1}, "mouth": {"_count": 1}, "moment": {"_count": 1}, "bloody": {"_count": 1}, "body": {"_count": 1}}, "a": {"_count": 1, "shabby": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "their": {"_count": 1, "traces": {"_count": 1}}}, "apoplectic": {"_count": 2, "with": {"_count": 1, "rage": {"_count": 1}}, "popping": {"_count": 1, "noises": {"_count": 1}}}, "trade": {"_count": 5, "in": {"_count": 3, "talismans": {"_count": 1}, "aids": {"_count": 1}, "dragon": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}}, "talismans": {"_count": 1, "amulets": {"_count": 1, "and": {"_count": 1}}}, "devices": {"_count": 2, "was": {"_count": 1, "sweeping": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "evilsmelling": {"_count": 1, "green": {"_count": 1, "onion": {"_count": 1}}}, "onion": {"_count": 9, "a": {"_count": 2, "pointed": {"_count": 1}, "large": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "gazed": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "soup": {"_count": 2, "": {"_count": 2}}, "the": {"_count": 1, "toadstool": {"_count": 1}}, "was": {"_count": 1, "as": {"_count": 1}}}, "rotting": {"_count": 15, "newt": {"_count": 1, "tail": {"_count": 1}}, "glistening": {"_count": 1, "hand": {"_count": 1}}, "hand": {"_count": 1, "was": {"_count": 1}}, "hands": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "hearth": {"_count": 1, "rug": {"_count": 1}}, "fish": {"_count": 1, "": {"_count": 1}}, "scabbed": {"_count": 2, "hands": {"_count": 2}}, "rubbish": {"_count": 1, "came": {"_count": 1}}, "smell": {"_count": 2, "the": {"_count": 1}, "of": {"_count": 1}}, "food": {"_count": 1, "lay": {"_count": 1}}, "entrails": {"_count": 1, "because": {"_count": 1}}, "floorboards": {"_count": 1, "were": {"_count": 1}}}, "newt": {"_count": 3, "tail": {"_count": 1, "before": {"_count": 1}}, "wizard": {"_count": 1, "left": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "unlikely": {"_count": 30, "to": {"_count": 8, "be": {"_count": 5}, "keep": {"_count": 1}, "have": {"_count": 1}, "hold": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "therefore": {"_count": 1, "that": {"_count": 1}}, "places": {"_count": 3, "including": {"_count": 1}, "and": {"_count": 1}, "simply": {"_count": 1}}, "that": {"_count": 7, "students": {"_count": 1}, "Rufus": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}, "Lunas": {"_count": 1}, "Umbridge": {"_count": 1}, "she": {"_count": 1}}, "friendship": {"_count": 1, "and": {"_count": 1}}, "event": {"_count": 2, "that": {"_count": 2}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "ever": {"_count": 3, "to": {"_count": 3}}, "coupling": {"_count": 1, "when": {"_count": 1}}, "possibility": {"_count": 1, "that": {"_count": 1}}}, "fearful": {"_count": 11, "": {"_count": 6, ".": {"_count": 6}}, "tone": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "came": {"_count": 1}}, "apology": {"_count": 1, "then": {"_count": 1}}, "for": {"_count": 1, "her": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}}, "worm": {"_count": 6, "a": {"_count": 1, "confession": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "any": {"_count": 1, "Death": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "robbing": {"_count": 2, "his": {"_count": 1, "office": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "actual": {"_count": 7, "stealing": {"_count": 1, "Hermione": {"_count": 1}}, "dreams": {"_count": 1, "all": {"_count": 1}}, "living": {"_count": 1, "fairies": {"_count": 1}}, "test": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 1, "couldnt": {"_count": 1}}, "spiral": {"_count": 1, "staircase": {"_count": 1}}, "wand": {"_count": 1, "said": {"_count": 1}}}, "stealing": {"_count": 19, "Hermione": {"_count": 1, "continued": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "from": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 2, "paper": {"_count": 1}, "Sorcerers": {"_count": 1}}, "over": {"_count": 1, "him": {"_count": 1}}, "more": {"_count": 1, "ingredients": {"_count": 1}}, "it": {"_count": 1, "from": {"_count": 1}}, "furtive": {"_count": 1, "oddly": {"_count": 1}}, "glances": {"_count": 1, "at": {"_count": 1}}, "everything": {"_count": 1, "thats": {"_count": 1}}, "Harry": {"_count": 1, "gagged": {"_count": 1}}, "Black": {"_count": 1, "heirlooms": {"_count": 1}}, "and": {"_count": 1, "sometimes": {"_count": 1}}, "shining": {"_count": 1, "hours": {"_count": 1}}, "through": {"_count": 1, "Harrys": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}}, "matteroffact": {"_count": 5, "tone": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "to": {"_count": 1, "say": {"_count": 1}}, "voice": {"_count": 2, "Harry": {"_count": 1}, "well": {"_count": 1}}}, "mayhem": {"_count": 7, "to": {"_count": 1, "keep": {"_count": 1}}, "in": {"_count": 1, "Snapes": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 2, "Fred": {"_count": 1}, "George": {"_count": 1}}, "front": {"_count": 1, "during": {"_count": 1}}}, "Deliberately": {"_count": 1, "causing": {"_count": 1, "mayhem": {"_count": 1}}}, "prowled": {"_count": 13, "through": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 2, "and": {"_count": 2}}, "around": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 6, "edges": {"_count": 1}, "aisles": {"_count": 1}, "corridors": {"_count": 1}, "shelves": {"_count": 1}, "house": {"_count": 1}, "castle": {"_count": 1}}, "behind": {"_count": 1, "an": {"_count": 1}}, "speaking": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "waspish": {"_count": 2, "remarks": {"_count": 1, "about": {"_count": 1}}, "but": {"_count": 1, "by": {"_count": 1}}}, "remarks": {"_count": 8, "about": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "short": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "he": {"_count": 1, "found": {"_count": 1}}, "to": {"_count": 1, "Sirius": {"_count": 1}}, "of": {"_count": 1, "Elphias": {"_count": 1}}}, "appreciatively": {"_count": 12, "": {"_count": 6, ".": {"_count": 6}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "stretching": {"_count": 1, "luxuriously": {"_count": 1}}, "lifting": {"_count": 1, "Dobby": {"_count": 1}}, "taking": {"_count": 1, "it": {"_count": 1}}}, "pufferfish": {"_count": 1, "eyes": {"_count": 1, "at": {"_count": 1}}}, "retaliated": {"_count": 2, "they": {"_count": 1, "would": {"_count": 1}}, "by": {"_count": 1, "doing": {"_count": 1}}}, "Unfair": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Swelling": {"_count": 2, "Solution": {"_count": 2, "was": {"_count": 1}, "hit": {"_count": 1}}}, "runny": {"_count": 1, "but": {"_count": 1, "he": {"_count": 1}}}, "prod": {"_count": 8, "with": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "the": {"_count": 2, "knot": {"_count": 2}}, "me": {"_count": 1, "or": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "fizz": {"_count": 2, "and": {"_count": 2, "sputter": {"_count": 1}, "several": {"_count": 1}}}, "sputter": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 2, "terror": {"_count": 1}, "indignation": {"_count": 1}}, "still": {"_count": 1, "goggling": {"_count": 1}}}, "Knowing": {"_count": 9, "he": {"_count": 1, "had": {"_count": 1}}, "Snape": {"_count": 1, "something": {"_count": 1}}, "Hermione": {"_count": 1, "he": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 3, "you": {"_count": 2}, "he": {"_count": 1}}, "perfectly": {"_count": 1, "well": {"_count": 1}}, "her": {"_count": 1, "wont": {"_count": 1}}}, "lobbed": {"_count": 3, "it": {"_count": 2, "into": {"_count": 1}, "at": {"_count": 1}}, "a": {"_count": 1, "set": {"_count": 1}}}, "target": {"_count": 9, "in": {"_count": 1, "Goyles": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "does": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 1, "whether": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "family": {"_count": 1}}}, "faceful": {"_count": 1, "and": {"_count": 1, "his": {"_count": 1}}}, "swell": {"_count": 6, "like": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 2, "song": {"_count": 1}, "replicating": {"_count": 1}}, "to": {"_count": 1, "its": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "bigger": {"_count": 1, "and": {"_count": 1}}}, "blundered": {"_count": 6, "around": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "after": {"_count": 1, "Ron": {"_count": 1}}, "forward": {"_count": 1, "his": {"_count": 1}}, "through": {"_count": 1, "it": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "restore": {"_count": 8, "calm": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "Voldemort": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "garden": {"_count": 1}}}, "splashed": {"_count": 9, "come": {"_count": 1, "here": {"_count": 1}}, "onto": {"_count": 2, "the": {"_count": 2}}, "down": {"_count": 3, "into": {"_count": 1}, "her": {"_count": 1}, "upon": {"_count": 1}}, "across": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "Deflating": {"_count": 1, "Draught": {"_count": 1, "when": {"_count": 1}}}, "drooping": {"_count": 6, "with": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "giving": {"_count": 1, "his": {"_count": 1}}, "Dobby": {"_count": 1, "wishes": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "wings": {"_count": 1, "potions": {"_count": 1}}}, "melon": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "weighted": {"_count": 1, "down": {"_count": 1, "with": {"_count": 1}}}, "antidote": {"_count": 20, "and": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "worked": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "here": {"_count": 1, "but": {"_count": 1}}, "yet": {"_count": 1, "said": {"_count": 1}}, "though": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 3, "whatever": {"_count": 1}, "Veritaserum": {"_count": 1}, "all": {"_count": 1}}, "dont": {"_count": 1, "worry": {"_count": 1}}, "for": {"_count": 3, "a": {"_count": 2}, "the": {"_count": 1}}, "comprising": {"_count": 1, "fiftytwo": {"_count": 1}}, "could": {"_count": 1, "you": {"_count": 1}}, "down": {"_count": 1, "noisily": {"_count": 1}}, "immediately": {"_count": 1, "there": {"_count": 1}}, "Harry": {"_count": 1, "offered": {"_count": 1}}}, "swellings": {"_count": 2, "had": {"_count": 1, "subsided": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}}, "subsided": {"_count": 11, "Snape": {"_count": 1, "swept": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "somewhat": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "disappointment": {"_count": 1}, "he": {"_count": 1}}, "so": {"_count": 1, "briefly": {"_count": 1}}, "into": {"_count": 2, "what": {"_count": 1}, "scarletfaced": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "but": {"_count": 1, "dry": {"_count": 1}}}, "scooped": {"_count": 16, "out": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "it": {"_count": 1, "beneath": {"_count": 1}}, "up": {"_count": 7, "Dobby": {"_count": 1}, "her": {"_count": 2}, "or": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 2, "ball": {"_count": 1}, "locket": {"_count": 1}}, "her": {"_count": 1, "into": {"_count": 1}}, "cleanly": {"_count": 1, "away": {"_count": 1}}}, "arranged": {"_count": 18, "his": {"_count": 3, "face": {"_count": 2}, "tiny": {"_count": 1}}, "to": {"_count": 2, "check": {"_count": 1}, "meet": {"_count": 1}}, "a": {"_count": 2, "rather": {"_count": 1}, "Portkey": {"_count": 1}}, "this": {"_count": 2, "classroom": {"_count": 1}, "oneoff": {"_count": 1}}, "exactly": {"_count": 1, "as": {"_count": 1}}, "Occlumency": {"_count": 1, "lessons": {"_count": 1}}, "I": {"_count": 1, "shall": {"_count": 1}}, "with": {"_count": 1, "Professor": {"_count": 1}}, "very": {"_count": 1, "easily": {"_count": 1}}, "that": {"_count": 1, "before": {"_count": 1}}, "everything": {"_count": 1, "so": {"_count": 1}}, "matters": {"_count": 1, "so": {"_count": 1}}, "the": {"_count": 1, "whole": {"_count": 1}}}, "stir": {"_count": 22, "feverishly": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "were": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "three": {"_count": 1, "times": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "behind": {"_count": 1, "your": {"_count": 1}}, "counterclockwise": {"_count": 1, "until": {"_count": 1}}, "after": {"_count": 1, "every": {"_count": 1}}, "No": {"_count": 1, "no": {"_count": 1}}, "clockwise": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "a": {"_count": 1}}, "my": {"_count": 1, "cauldron": {"_count": 1}}, "particularly": {"_count": 1, "amongst": {"_count": 1}}, "sleepily": {"_count": 1, "Harry": {"_count": 1}}, "our": {"_count": 1, "sympathies": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "remained": {"_count": 1}}}, "reassuringly": {"_count": 10, "to": {"_count": 2, "Harry": {"_count": 1}, "Ginny": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "lowering": {"_count": 1, "his": {"_count": 1}}, "warm": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "frothed": {"_count": 3, "and": {"_count": 1, "bubbled": {"_count": 1}}, "madly": {"_count": 1, "": {"_count": 1}}, "Goyles": {"_count": 1, "turned": {"_count": 1}}}, "bubbled": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "like": {"_count": 2, "hot": {"_count": 1}, "acid": {"_count": 1}}, "sluggishly": {"_count": 1, "behind": {"_count": 1}}}, "Dueling": {"_count": 5, "Club": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Club": {"_count": 14, "": {"_count": 4, "!": {"_count": 1}, "?": {"_count": 2}, ".": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "Ludicrous": {"_count": 1}}, "shed": {"_count": 1, "put": {"_count": 1}}, "is": {"_count": 1, "hereby": {"_count": 1}}, "may": {"_count": 1, "exist": {"_count": 1}}, "that": {"_count": 1, "has": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "yes": {"_count": 1, "said": {"_count": 1}}, "\u2018Slug": {"_count": 1, "Club": {"_count": 1}}, "repeated": {"_count": 1, "Ron": {"_count": 1}}}, "dueling": {"_count": 24, "lessons": {"_count": 1, "they": {"_count": 1}}, "champion": {"_count": 1, "when": {"_count": 1}}, "club": {"_count": 3, "to": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "himself": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "private": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "George": {"_count": 1}}, "and": {"_count": 2, "with": {"_count": 1}, "the": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 1, "fiercely": {"_count": 1}}, "their": {"_count": 1, "wands": {"_count": 1}}, "practice": {"_count": 1, "": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "Dolohov": {"_count": 1, "shouted": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "masked": {"_count": 1, "and": {"_count": 1}}, "Percy": {"_count": 1, "backed": {"_count": 1}}, "Kingsley": {"_count": 1, "right": {"_count": 1}}, "McGonagall": {"_count": 1, "Slughorn": {"_count": 1}}}, "wholl": {"_count": 9, "be": {"_count": 3, "teaching": {"_count": 1}, "questioning": {"_count": 1}, "publishing": {"_count": 1}}, "get": {"_count": 1, "him": {"_count": 1}}, "turn": {"_count": 1, "innocent": {"_count": 1}}, "have": {"_count": 2, "you": {"_count": 2}}, "hold": {"_count": 1, "it": {"_count": 1}}, "come": {"_count": 1, "running": {"_count": 1}}}, "champion": {"_count": 58, "when": {"_count": 2, "he": {"_count": 2}}, "was": {"_count": 2, "selected": {"_count": 1}, "about": {"_count": 1}}, "will": {"_count": 1, "find": {"_count": 1}}, "": {"_count": 20, ".": {"_count": 13}, "?": {"_count": 3}, "!": {"_count": 4}}, "is": {"_count": 3, "is": {"_count": 1}, "Cedric": {"_count": 1}, "quickest": {"_count": 1}}, "what": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "must": {"_count": 1, "write": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "for": {"_count": 2, "Durmstrang": {"_count": 1}, "Beauxbatons": {"_count": 1}}, "next": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 4, "called": {"_count": 1}, "said": {"_count": 1}, "stole": {"_count": 1}, "saw": {"_count": 1}}, "on": {"_count": 1, "you": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}, "to": {"_count": 2, "support": {"_count": 1}, "touch": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "had": {"_count": 1, "worn": {"_count": 1}}, "who": {"_count": 2, "would": {"_count": 1}, "didnt": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "and": {"_count": 1, "you": {"_count": 1}}, "hadnt": {"_count": 1, "turned": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "down": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "commoners": {"_count": 1}, "Muggleborns": {"_count": 1}}}, "resplendent": {"_count": 1, "in": {"_count": 1, "robes": {"_count": 1}}}, "plum": {"_count": 4, "and": {"_count": 1, "accompanied": {"_count": 1}}, "cake": {"_count": 1, "": {"_count": 1}}, "color": {"_count": 1, "": {"_count": 1}}, "velvet": {"_count": 1, "that": {"_count": 1}}}, "Gather": {"_count": 2, "round": {"_count": 1, "gather": {"_count": 1}}, "roun": {"_count": 1, "gather": {"_count": 1}}}, "gather": {"_count": 13, "round": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 1}}, "up": {"_count": 1, "twelve": {"_count": 1}}, "closer": {"_count": 1, "take": {"_count": 1}}, "that": {"_count": 2, "you": {"_count": 2}}, "roun": {"_count": 1, "said": {"_count": 1}}, "himself": {"_count": 1, "together": {"_count": 1}}, "the": {"_count": 1, "worst": {"_count": 1}}, "not": {"_count": 1, "unintelligent": {"_count": 1}}, "his": {"_count": 1, "thoughts": {"_count": 1}}, "our": {"_count": 1, "students": {"_count": 1}}}, "granted": {"_count": 9, "me": {"_count": 1, "permission": {"_count": 1}}, "to": {"_count": 1, "few": {"_count": 1}}, "that": {"_count": 3, "were": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "as": {"_count": 1, "just": {"_count": 1}}, "an": {"_count": 1, "maybe": {"_count": 1}}, "this": {"_count": 1, "highest": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}}, "published": {"_count": 5, "works": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "piece": {"_count": 1}}, "in": {"_count": 2, "The": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sportingly": {"_count": 1, "agreed": {"_count": 1, "to": {"_count": 1}}}, "demonstration": {"_count": 2, "before": {"_count": 1, "we": {"_count": 1}}, "was": {"_count": 1, "lazily": {"_count": 1}}}, "whereas": {"_count": 10, "Snape": {"_count": 1, "jerked": {"_count": 1}}, "Black": {"_count": 1, "was": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "others": {"_count": 1, "outmoded": {"_count": 1}}, "Michael": {"_count": 1, "was": {"_count": 1}}, "poor": {"_count": 1, "Hannah": {"_count": 1}}, "shes": {"_count": 1, "A": {"_count": 1}}, "they": {"_count": 1, "have": {"_count": 1}}, "the": {"_count": 1, "contents": {"_count": 1}}, "his": {"_count": 1, "": {"_count": 1}}}, "swords": {"_count": 12, "in": {"_count": 1, "front": {"_count": 1}}, "sparks": {"_count": 1, "flying": {"_count": 1}}, "and": {"_count": 4, "a": {"_count": 1}, "armor": {"_count": 1}, "you": {"_count": 1}, "spiked": {"_count": 1}}, "impregnated": {"_count": 1, "with": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "a": {"_count": 1, "fake": {"_count": 1}}, "ours": {"_count": 1, "It": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}, "blade": {"_count": 1, "was": {"_count": 1}}}, "combative": {"_count": 2, "position": {"_count": 1, "Lockhart": {"_count": 1}}, "man": {"_count": 1, "asked": {"_count": 1}}}, "baring": {"_count": 2, "his": {"_count": 2, "teeth": {"_count": 2}}}, "opponent": {"_count": 7, "Snape": {"_count": 1, "cried": {"_count": 1}}, "everyone": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "was": {"_count": 1, "unlikely": {"_count": 1}}, "had": {"_count": 2, "appeared": {"_count": 1}, "concluded": {"_count": 1}}, "took": {"_count": 1, "aim": {"_count": 1}}}, "ExpelliarmusV": {"_count": 9, "There": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "just": {"_count": 1}}, "he": {"_count": 2, "croaked": {"_count": 1}, "roared": {"_count": 1}}, "Lupin": {"_count": 1, "shouted": {"_count": 1}}, "Harry": {"_count": 2, "yelled": {"_count": 2}}, "Voldemort": {"_count": 1, "cried": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}}, "dazzling": {"_count": 20, "flash": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "opaline": {"_count": 1, "white": {"_count": 1}}, "silver": {"_count": 1, "animal": {"_count": 1}}, "new": {"_count": 1, "pictures": {"_count": 1}}, "gold": {"_count": 1, "sunlight": {"_count": 1}}, "light": {"_count": 1, "of": {"_count": 1}}, "glove": {"_count": 1, "": {"_count": 1}}, "sunlight": {"_count": 3, "": {"_count": 2}, "seemed": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Harrys": {"_count": 1, "eyes": {"_count": 1}}, "orange": {"_count": 1, "visible": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}, "smile": {"_count": 1, "and": {"_count": 1}}, "red": {"_count": 1, "gold": {"_count": 1}}, "picking": {"_count": 1, "her": {"_count": 1}}, "sun": {"_count": 2, "was": {"_count": 1}, "appeared": {"_count": 1}}}, "blasted": {"_count": 31, "off": {"_count": 5, "his": {"_count": 4}, "its": {"_count": 1}}, "into": {"_count": 2, "smithereens": {"_count": 1}, "the": {"_count": 1}}, "backward": {"_count": 2, "falling": {"_count": 1}, "flailing": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "alf": {"_count": 1, "the": {"_count": 1}}, "fireplace": {"_count": 2, "": {"_count": 2}}, "away": {"_count": 1, "half": {"_count": 1}}, "a": {"_count": 3, "path": {"_count": 1}, "hole": {"_count": 2}}, "from": {"_count": 2, "Harrys": {"_count": 1}, "every": {"_count": 1}}, "apart": {"_count": 3, "Moody": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}, "me": {"_count": 1, "off": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "open": {"_count": 1, "there": {"_count": 1}}, "through": {"_count": 1, "their": {"_count": 1}}, "the": {"_count": 1, "horrorfigure": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}, "to": {"_count": 1, "smoke": {"_count": 1}}, "More": {"_count": 1, "giant": {"_count": 1}}}, "sprawl": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "very": {"_count": 1, "difficult": {"_count": 1}}}, "tiptoes": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "past": {"_count": 1, "a": {"_count": 1}}}, "unsteadily": {"_count": 2, "to": {"_count": 1, "his": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}}, "Disarming": {"_count": 8, "Charm": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "Neville": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "because": {"_count": 1, "hes": {"_count": 1}}, "Spell": {"_count": 2, "made": {"_count": 1}, "Expelliarmus": {"_count": 1}}, "is": {"_count": 1, "past": {"_count": 1}}}, "instructive": {"_count": 3, "to": {"_count": 1, "let": {"_count": 1}}, "had": {"_count": 1, "also": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "demonstrating": {"_count": 8, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "a": {"_count": 2, "continued": {"_count": 1}, "rude": {"_count": 1}}, "their": {"_count": 1, "latest": {"_count": 1}}, "her": {"_count": 1, "usual": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "even": {"_count": 1, "the": {"_count": 1}}}, "amongst": {"_count": 38, "you": {"_count": 1, "now": {"_count": 1}}, "themselves": {"_count": 2, "during": {"_count": 1}, "terrified": {"_count": 1}}, "the": {"_count": 23, "flames": {"_count": 2}, "first": {"_count": 1}, "faint": {"_count": 1}, "ghosts": {"_count": 1}, "tangle": {"_count": 1}, "Chasers": {"_count": 1}, "hundreds": {"_count": 1}, "veela": {"_count": 1}, "Order": {"_count": 1}, "nearest": {"_count": 1}, "Muggles": {"_count": 1}, "trees": {"_count": 2}, "graves": {"_count": 1}, "waisthigh": {"_count": 1}, "wandcarriers": {"_count": 1}, "surrounding": {"_count": 1}, "dead": {"_count": 1}, "students": {"_count": 1}, "spiders": {"_count": 1}, "injured": {"_count": 1}, "Death": {"_count": 1}}, "them": {"_count": 5, "Harry": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 2}, "suggested": {"_count": 1}}, "us": {"_count": 1, "once": {"_count": 1}}, "which": {"_count": 1, "stood": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "many": {"_count": 1}}, "many": {"_count": 1, "who": {"_count": 1}}, "goblins": {"_count": 1, "you": {"_count": 1}}, "a": {"_count": 1, "jumble": {"_count": 1}}}, "matching": {"_count": 13, "up": {"_count": 1, "partners": {"_count": 1}}, "the": {"_count": 1, "one": {"_count": 1}}, "lace": {"_count": 1, "cuffs": {"_count": 1}}, "blue": {"_count": 1, "hat": {"_count": 1}}, "her": {"_count": 1, "anger": {"_count": 1}}, "hat": {"_count": 3, "": {"_count": 2}, "with": {"_count": 1}}, "fur": {"_count": 1, "collar": {"_count": 1}}, "nightcap": {"_count": 1, "and": {"_count": 1}}, "socks": {"_count": 1, "and": {"_count": 1}}, "high": {"_count": 1, "heels": {"_count": 1}}, "lacy": {"_count": 1, "collared": {"_count": 1}}}, "partners": {"_count": 16, "": {"_count": 5, ".": {"_count": 2}, "!": {"_count": 1}, "?": {"_count": 2}}, "What": {"_count": 1, "partners": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "agreed": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "going": {"_count": 1}, "standing": {"_count": 1}}, "from": {"_count": 1, "different": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "stare": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "teamed": {"_count": 2, "Neville": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 1, "Michael": {"_count": 1}}}, "strutted": {"_count": 1, "over": {"_count": 1, "smirking": {"_count": 1}}}, "jaw": {"_count": 28, "jutted": {"_count": 1, "aggressively": {"_count": 1}}, "dropped": {"_count": 4, "so": {"_count": 1}, "": {"_count": 3}}, "had": {"_count": 2, "dropped": {"_count": 1}, "gone": {"_count": 1}}, "against": {"_count": 1, "Aunt": {"_count": 1}}, "was": {"_count": 1, "clenched": {"_count": 1}}, "clenched": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "jaw": {"_count": 1}}, "claws": {"_count": 1, "ripping": {"_count": 1}}, "drop": {"_count": 2, "": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "dropping": {"_count": 1, "": {"_count": 1}}, "set": {"_count": 3, "and": {"_count": 2}, "so": {"_count": 1}}, "looking": {"_count": 1, "down": {"_count": 1}}, "move": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "did": {"_count": 1}}, "and": {"_count": 1, "thrust": {"_count": 1}}, "muscles": {"_count": 1, "worked": {"_count": 1}}, "hanging": {"_count": 1, "Ron": {"_count": 1}}}, "jutted": {"_count": 1, "aggressively": {"_count": 1, "": {"_count": 1}}}, "aggressively": {"_count": 10, "": {"_count": 5, ".": {"_count": 5}}, "Thats": {"_count": 1, "what": {"_count": 1}}, "before": {"_count": 1, "Malfoy": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "Hermione": {"_count": 1}}, "shaking": {"_count": 1, "the": {"_count": 1}}}, "Face": {"_count": 3, "your": {"_count": 1, "partners": {"_count": 1}}, "dry": {"_count": 1, "Harry": {"_count": 1}}, "level": {"_count": 1, "with": {"_count": 1}}}, "inclined": {"_count": 15, "their": {"_count": 1, "heads": {"_count": 1}}, "toward": {"_count": 2, "Filchs": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "laugh": {"_count": 1}, "murder": {"_count": 1}, "think": {"_count": 1}}, "his": {"_count": 7, "good": {"_count": 1}, "head": {"_count": 6}}, "her": {"_count": 1, "head": {"_count": 1}}}, "disarm": {"_count": 7, "your": {"_count": 1, "opponents": {"_count": 1}}, "them": {"_count": 1, "we": {"_count": 1}}, "only": {"_count": 1, "Lockhart": {"_count": 1}}, "Snape": {"_count": 1, "at": {"_count": 1}}, "Anthony": {"_count": 1, "Goldstein": {"_count": 1}}, "Hermione": {"_count": 1, "Harry": {"_count": 1}}, "me": {"_count": 1, "or": {"_count": 1}}}, "opponents": {"_count": 7, "only": {"_count": 1, "to": {"_count": 1}}, "backs": {"_count": 1, "turned": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Bellatrix": {"_count": 1, "and": {"_count": 1}}}, "saucepan": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "down": {"_count": 1, "on": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}}, "wasting": {"_count": 17, "no": {"_count": 1, "more": {"_count": 1}}, "time": {"_count": 4, "Harry": {"_count": 1}, "": {"_count": 2}, "here": {"_count": 1}}, "his": {"_count": 1, "time": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "and": {"_count": 1}}, "our": {"_count": 2, "time": {"_count": 2}}, "her": {"_count": 1, "time": {"_count": 1}}, "your": {"_count": 2, "time": {"_count": 2}}, "an": {"_count": 1, "afternoon": {"_count": 1}}, "their": {"_count": 2, "time": {"_count": 2}}, "the": {"_count": 1, "rest": {"_count": 1}}}, "Rictusempral": {"_count": 1, "A": {"_count": 1, "jet": {"_count": 1}}}, "battling": {"_count": 11, "crowd": {"_count": 1, "as": {"_count": 1}}, "through": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 3, "myself": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "leprechauns": {"_count": 1, "and": {"_count": 1}}, "apparently": {"_count": 1, "unaware": {"_count": 1}}, "a": {"_count": 1, "separate": {"_count": 1}}, "collapsed": {"_count": 1, "under": {"_count": 1}}, "giants": {"_count": 1, "Hagrids": {"_count": 1}}, "their": {"_count": 1, "hardest": {"_count": 1}}}, "Tickling": {"_count": 1, "Charm": {"_count": 1, "and": {"_count": 1}}}, "vague": {"_count": 15, "feeling": {"_count": 1, "it": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "Merry": {"_count": 1, "Christmas": {"_count": 1}}, "untraceable": {"_count": 1, "happiness": {"_count": 1}}, "hints": {"_count": 1, "in": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "dreamy": {"_count": 1}, "unformulated": {"_count": 1}}, "suspicions": {"_count": 1, "to": {"_count": 1}}, "future": {"_count": 1, "if": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "surprise": {"_count": 1, "": {"_count": 1}}, "idea": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "images": {"_count": 1, "with": {"_count": 1}}}, "unsporting": {"_count": 1, "to": {"_count": 1, "bewitch": {"_count": 1}}}, "bewitch": {"_count": 5, "Malfoy": {"_count": 1, "while": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "Quaffles": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "from": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}}, "Tarantallegral": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "quickstep": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Finite": {"_count": 4, "Incantatem": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "Incantatem": {"_count": 4, "he": {"_count": 2, "shouted": {"_count": 1}, "muttered": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}}, "apologizing": {"_count": 2, "for": {"_count": 1, "whatever": {"_count": 1}}, "most": {"_count": 1, "profusely": {"_count": 1}}}, "headlock": {"_count": 1, "and": {"_count": 1, "Hermione": {"_count": 1}}}, "skittering": {"_count": 2, "through": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}}, "aftermath": {"_count": 8, "of": {"_count": 8, "the": {"_count": 5}, "The": {"_count": 1}, "their": {"_count": 1}, "our": {"_count": 1}}}, "Macmillan": {"_count": 30, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "of": {"_count": 2, "Hufflepuff": {"_count": 2}}, "asked": {"_count": 1, "Harry": {"_count": 1}}, "a": {"_count": 1, "Hufflepuff": {"_count": 1}}, "and": {"_count": 3, "Justin": {"_count": 1}, "Hannah": {"_count": 2}}, "was": {"_count": 3, "one": {"_count": 1}, "flourishing": {"_count": 1}, "contemplating": {"_count": 1}}, "had": {"_count": 2, "stepped": {"_count": 1}, "developed": {"_count": 1}}, "Justin": {"_count": 1, "FinchFletchley": {"_count": 1}}, "whom": {"_count": 2, "Harry": {"_count": 2}}, "confidently": {"_count": 1, "on": {"_count": 1}}, "five": {"_count": 1, "for": {"_count": 1}}, "sagely": {"_count": 1, "squeezing": {"_count": 1}}, "Hannah": {"_count": 1, "Abbott": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "however": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "managed": {"_count": 1}}, "Anthony": {"_count": 1, "Goldstein": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}}, "Fawcett": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "of": {"_count": 1, "Ravenclaw": {"_count": 1}}}, "Pinch": {"_count": 1, "it": {"_count": 1, "hard": {"_count": 1}}}, "unfriendly": {"_count": 3, "spells": {"_count": 1, "said": {"_count": 1}}, "Slytherins": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "as": {"_count": 1}}}, "flustered": {"_count": 15, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "following": {"_count": 1}, "was": {"_count": 1}, "immediately": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Fudge": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 1, "each": {"_count": 1}}, "by": {"_count": 1, "this": {"_count": 1}}, "but": {"_count": 1, "this": {"_count": 1}}}, "glinted": {"_count": 12, "and": {"_count": 1, "looked": {"_count": 1}}, "how": {"_count": 1, "she": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "malevolently": {"_count": 1, "through": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "brightly": {"_count": 1, "enough": {"_count": 1}}, "small": {"_count": 1, "objects": {"_count": 1}}, "through": {"_count": 1, "slits": {"_count": 1}}, "dully": {"_count": 1, "in": {"_count": 1}}}, "volunteer": {"_count": 4, "pair": {"_count": 1, "Longbottom": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "go": {"_count": 1}}, "for": {"_count": 1, "it": {"_count": 1}}}, "malevolent": {"_count": 6, "bat": {"_count": 1, "": {"_count": 1}}, "grin": {"_count": 1, "": {"_count": 1}}, "glance": {"_count": 1, "up": {"_count": 1}}, "to": {"_count": 1, "Crabbe": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "aura": {"_count": 1, "cast": {"_count": 1}}}, "causes": {"_count": 7, "devastation": {"_count": 1, "with": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Macnair": {"_count": 1, "": {"_count": 1}}, "accidents": {"_count": 1, "and": {"_count": 1}}, "giddiness": {"_count": 1, "recklessness": {"_count": 1}}, "me": {"_count": 1, "disquiet": {"_count": 1}}, "some": {"_count": 1, "kind": {"_count": 1}}}, "devastation": {"_count": 2, "with": {"_count": 1, "the": {"_count": 1}}, "met": {"_count": 1, "their": {"_count": 1}}}, "simplest": {"_count": 2, "spells": {"_count": 1, "": {"_count": 1}}, "way": {"_count": 1, "of": {"_count": 1}}}, "matchbox": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pinker": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}}, "gesturing": {"_count": 20, "Harry": {"_count": 2, "and": {"_count": 1}, "back": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 2, "his": {"_count": 1}, "Mariettas": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "toward": {"_count": 6, "the": {"_count": 3}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}, "Hagrids": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "him": {"_count": 1}}, "flamboyantly": {"_count": 1, "in": {"_count": 1}}, "frantically": {"_count": 1, "to": {"_count": 1}}, "uselessly": {"_count": 1, "at": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Hermione": {"_count": 1, "forward": {"_count": 1}}}, "attempted": {"_count": 72, "a": {"_count": 6, "complicated": {"_count": 1}, "wild": {"_count": 1}, "HairThickening": {"_count": 1}, "little": {"_count": 1}, "few": {"_count": 1}, "LegLocker": {"_count": 1}}, "to": {"_count": 55, "conceal": {"_count": 1}, "wrench": {"_count": 1}, "waylay": {"_count": 1}, "comb": {"_count": 1}, "engage": {"_count": 1}, "bite": {"_count": 1}, "push": {"_count": 1}, "kill": {"_count": 2}, "commit": {"_count": 1}, "puncture": {"_count": 1}, "smuggle": {"_count": 1}, "remove": {"_count": 1}, "scrub": {"_count": 1}, "prize": {"_count": 1}, "follow": {"_count": 1}, "hide": {"_count": 1}, "put": {"_count": 1}, "paw": {"_count": 1}, "disentangle": {"_count": 1}, "disguise": {"_count": 1}, "do": {"_count": 1}, "rouse": {"_count": 1}, "trace": {"_count": 1}, "stand": {"_count": 1}, "Stun": {"_count": 1}, "continue": {"_count": 1}, "use": {"_count": 2}, "force": {"_count": 1}, "contact": {"_count": 1}, "ambush": {"_count": 1}, "focus": {"_count": 2}, "strangle": {"_count": 1}, "smile": {"_count": 1}, "beat": {"_count": 1}, "straighten": {"_count": 1}, "steer": {"_count": 1}, "fight": {"_count": 1}, "control": {"_count": 1}, "have": {"_count": 1}, "secure": {"_count": 1}, "touch": {"_count": 1}, "make": {"_count": 2}, "stem": {"_count": 1}, "deny": {"_count": 1}, "hoist": {"_count": 1}, "flatten": {"_count": 1}, "sit": {"_count": 1}, "welcome": {"_count": 1}, "blend": {"_count": 1}, "lower": {"_count": 1}, "retaliate": {"_count": 1}}, "murder": {"_count": 2, "": {"_count": 1}, "thas": {"_count": 1}}, "robbery": {"_count": 1, "at": {"_count": 1}}, "theft": {"_count": 1, "were": {"_count": 1}}, "before": {"_count": 1, "and": {"_count": 1}}, "burglary": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 2, "whenever": {"_count": 1}, "all": {"_count": 1}}, "the": {"_count": 1, "charm": {"_count": 1}}, "assault": {"_count": 1, "on": {"_count": 1}}, "killing": {"_count": 1, "of": {"_count": 1}}}, "wiggling": {"_count": 3, "action": {"_count": 1, "and": {"_count": 1}}, "Scabbers": {"_count": 1, "back": {"_count": 1}}, "ears": {"_count": 1, "so": {"_count": 1}}}, "Whoops": {"_count": 2, "my": {"_count": 1, "wand": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "cuffed": {"_count": 1, "Harry": {"_count": 1, "merrily": {"_count": 1}}}, "Serpensortial": {"_count": 1, "The": {"_count": 1, "end": {"_count": 1}}}, "aghast": {"_count": 15, "as": {"_count": 2, "a": {"_count": 1}, "Kreacher": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "unable": {"_count": 1, "to": {"_count": 1}}}, "strike": {"_count": 26, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 1, "as": {"_count": 1}}, "now": {"_count": 2, "are": {"_count": 1}, "to": {"_count": 1}}, "reaches": {"_count": 1, "its": {"_count": 1}}, "was": {"_count": 1, "followed": {"_count": 1}}, "some": {"_count": 1, "wizards": {"_count": 1}}, "to": {"_count": 1, "bite": {"_count": 1}}, "Dumbledore": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "moment": {"_count": 1}}, "Lupin": {"_count": 1, "had": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "those": {"_count": 1}}, "without": {"_count": 1, "teacher": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "deadly": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}}, "Allow": {"_count": 1, "me": {"_count": 1, "": {"_count": 1}}}, "smack": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "Enraged": {"_count": 2, "hissing": {"_count": 1, "furiously": {"_count": 1}}, "that": {"_count": 1, "Gryffindor": {"_count": 1}}}, "slithered": {"_count": 13, "straight": {"_count": 1, "toward": {"_count": 1}}, "and": {"_count": 1, "writhed": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "beside": {"_count": 1}}, "away": {"_count": 1, "into": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 2}}, "through": {"_count": 1, "the": {"_count": 1}}, "clinking": {"_count": 1, "back": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 2, "broken": {"_count": 1}, "the": {"_count": 1}}, "out": {"_count": 1, "to": {"_count": 1}}}, "exposed": {"_count": 11, "poised": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "pipe": {"_count": 1}}, "Potter": {"_count": 1, "Weve": {"_count": 1}}, "to": {"_count": 2, "me": {"_count": 1}, "some": {"_count": 1}}, "hands": {"_count": 1, "and": {"_count": 1}}, "part": {"_count": 1, "soon": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "elbow": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "try": {"_count": 1}}, "neck": {"_count": 1, "of": {"_count": 1}}}, "poised": {"_count": 8, "to": {"_count": 3, "strike": {"_count": 1}, "become": {"_count": 1}, "take": {"_count": 1}}, "Black": {"_count": 1, "staring": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "for": {"_count": 1, "flight": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "deciding": {"_count": 11, "to": {"_count": 2, "do": {"_count": 1}, "check": {"_count": 1}}, "whether": {"_count": 2, "Im": {"_count": 1}, "or": {"_count": 1}}, "not": {"_count": 2, "to": {"_count": 2}}, "that": {"_count": 3, "Dumbledore": {"_count": 1}, "her": {"_count": 1}, "all": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "jobs": {"_count": 1}}}, "casters": {"_count": 1, "and": {"_count": 1, "that": {"_count": 1}}}, "miraculously": {"_count": 8, "inexplicably": {"_count": 1, "the": {"_count": 1}}, "clear": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "unbroken": {"_count": 1, "in": {"_count": 1}}, "his": {"_count": 1, "jinx": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "alive": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "confusion": {"_count": 1}}}, "inexplicably": {"_count": 3, "the": {"_count": 1, "snake": {"_count": 1}}, "beaming": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "Ginny": {"_count": 1}}}, "docile": {"_count": 2, "as": {"_count": 1, "a": {"_count": 1}}, "almost": {"_count": 1, "human": {"_count": 1}}}, "hose": {"_count": 1, "its": {"_count": 1, "eyes": {"_count": 1}}}, "shrewd": {"_count": 11, "and": {"_count": 1, "calculating": {"_count": 1}}, "suspicion": {"_count": 2, "that": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "idea": {"_count": 2, "said": {"_count": 1}, "who": {"_count": 1}}, "ideas": {"_count": 1, "normally": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "narrow": {"_count": 1, "eyes": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "calculating": {"_count": 3, "look": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}}, "ominous": {"_count": 20, "muttering": {"_count": 1, "all": {"_count": 1}}, "that": {"_count": 1, "Hagrid": {"_count": 1}}, "feeling": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "now": {"_count": 1}}, "silence": {"_count": 1, "fell": {"_count": 1}}, "sound": {"_count": 1, "of": {"_count": 1}}, "way": {"_count": 1, "that": {"_count": 1}}, "picture": {"_count": 1, "Hagrid": {"_count": 1}}, "noise": {"_count": 1, "somewhere": {"_count": 1}}, "feelings": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "sign": {"_count": 2, "and": {"_count": 2}}, "cracking": {"_count": 1, "noise": {"_count": 1}}, "pronouncement": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "mood": {"_count": 1, "inside": {"_count": 1}}, "jingling": {"_count": 1, "it": {"_count": 1}}}, "catching": {"_count": 42, "something": {"_count": 1, "": {"_count": 1}}, "snatches": {"_count": 1, "of": {"_count": 1}}, "fire": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 7, "Heir": {"_count": 1}, "culprit": {"_count": 1}, "Golden": {"_count": 1}, "steak": {"_count": 1}, "feather": {"_count": 1}, "blackmailer": {"_count": 1}, "blue": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "Black": {"_count": 1, "than": {"_count": 1}}, "him": {"_count": 2, "under": {"_count": 1}, "": {"_count": 1}}, "up": {"_count": 7, "on": {"_count": 1}, "with": {"_count": 6}}, "went": {"_count": 1, "on": {"_count": 1}}, "Harrys": {"_count": 1, "eye": {"_count": 1}}, "anyones": {"_count": 2, "eye": {"_count": 2}}, "sight": {"_count": 3, "of": {"_count": 3}}, "Harry": {"_count": 2, "hard": {"_count": 1}, "twice": {"_count": 1}}, "Dark": {"_count": 2, "wizards": {"_count": 2}}, "one": {"_count": 1, "more": {"_count": 1}}, "her": {"_count": 3, "breath": {"_count": 1}, "halfway": {"_count": 1}, "teacup": {"_count": 1}}, "real": {"_count": 1, "Death": {"_count": 1}}, "each": {"_count": 1, "others": {"_count": 1}}, "hold": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}}, "Parselmouth": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "our": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "interjected": {"_count": 1, "Harry": {"_count": 1}}}, "Parseltongue": {"_count": 30, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 9}, "?": {"_count": 1}, "!": {"_count": 1}}, "and": {"_count": 4, "chasing": {"_count": 1}, "Morfin": {"_count": 1}, "I": {"_count": 1}, "it": {"_count": 1}}, "were": {"_count": 1, "when": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "resourcefulness": {"_count": 1, "determination": {"_count": 1}}, "reveals": {"_count": 1, "Draco": {"_count": 1}}, "the": {"_count": 1, "ability": {"_count": 1}}, "as": {"_count": 1, "worthy": {"_count": 1}}, "even": {"_count": 1, "while": {"_count": 1}}, "Hissy": {"_count": 1, "hissy": {"_count": 1}}, "looking": {"_count": 2, "at": {"_count": 1}, "from": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "all": {"_count": 1, "Parseltongue": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}}, "Snake": {"_count": 1, "language": {"_count": 1, "": {"_count": 1}}}, "language": {"_count": 16, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "without": {"_count": 1, "knowing": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "all": {"_count": 1, "day": {"_count": 1}}, "another": {"_count": 1, "human": {"_count": 1}}, "are": {"_count": 1, "nothing": {"_count": 1}}, "Well": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "recognize": {"_count": 1}}, "as": {"_count": 1, "yet": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "did": {"_count": 1}, "had": {"_count": 1}}}, "egging": {"_count": 3, "the": {"_count": 1, "snake": {"_count": 1}}, "it": {"_count": 2, "on": {"_count": 2}}}, "Justins": {"_count": 4, "head": {"_count": 1, "": {"_count": 1}}, "been": {"_count": 2, "waiting": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "matters": {"_count": 49, "said": {"_count": 2, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}}, "he": {"_count": 2, "kept": {"_count": 1}, "had": {"_count": 1}}, "to": {"_count": 6, "deal": {"_count": 1}, "em": {"_count": 1}, "them": {"_count": 1}, "discuss": {"_count": 2}, "you": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 4}, "!": {"_count": 4}}, "of": {"_count": 2, "underage": {"_count": 1}, "gold": {"_count": 1}}, "but": {"_count": 1, "thats": {"_count": 1}}, "even": {"_count": 1, "worse": {"_count": 1}}, "with": {"_count": 2, "you": {"_count": 2}}, "would": {"_count": 1, "improve": {"_count": 1}}, "not": {"_count": 3, "what": {"_count": 1}, "": {"_count": 1}, "whether": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 2}}, "between": {"_count": 1, "myself": {"_count": 1}}, "as": {"_count": 1, "examinations": {"_count": 1}}, "within": {"_count": 1, "this": {"_count": 1}}, "about": {"_count": 1, "which": {"_count": 1}}, "into": {"_count": 2, "our": {"_count": 1}, "his": {"_count": 1}}, "the": {"_count": 1, "cheers": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "because": {"_count": 1, "we": {"_count": 1}}, "Montague": {"_count": 1, "had": {"_count": 1}}, "we": {"_count": 2, "need": {"_count": 1}, "shall": {"_count": 1}}, "well": {"_count": 1, "outside": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "recognize": {"_count": 1}}, "sighed": {"_count": 1, "Hermione": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "symbol": {"_count": 27, "of": {"_count": 6, "Slytherin": {"_count": 1}, "hope": {"_count": 1}, "Dark": {"_count": 1}, "a": {"_count": 1}, "everything": {"_count": 1}, "belonging": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}, "rather": {"_count": 1, "like": {"_count": 1}}, "I": {"_count": 1, "recognized": {"_count": 1}}, "means": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "rallying": {"_count": 1}, "back": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Lunas": {"_count": 1, "dad": {"_count": 1}}, "was": {"_count": 1, "carved": {"_count": 1}}, "beneath": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 2, "links": {"_count": 1}, "so": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "to": {"_count": 1, "reveal": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "doesnt": {"_count": 1, "mean": {"_count": 1}}, "in": {"_count": 1, "time": {"_count": 1}}, "meant": {"_count": 1, "made": {"_count": 1}}, "anywhere": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "savior": {"_count": 1}}}, "greatgreatgreatgreat": {"_count": 1, "grandson": {"_count": 1, "or": {"_count": 1}}}, "grandson": {"_count": 5, "or": {"_count": 1, "something": {"_count": 1}}, "Neville": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "shes": {"_count": 1, "got": {"_count": 1}}}, "descendant": {"_count": 4, "of": {"_count": 3, "Salazar": {"_count": 3}}, "who": {"_count": 1, "was": {"_count": 1}}}, "blizzard": {"_count": 2, "so": {"_count": 1, "thick": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}}, "scarves": {"_count": 19, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "then": {"_count": 1, "turned": {"_count": 1}}, "adorned": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 7, "shawls": {"_count": 3}, "the": {"_count": 1}, "innumerable": {"_count": 1}, "hats": {"_count": 1}, "gloves": {"_count": 1}}, "gloves": {"_count": 1, "and": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "trailing": {"_count": 1}}, "back": {"_count": 1, "over": {"_count": 1}}, "pulled": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 1, "descend": {"_count": 1}}}, "operation": {"_count": 7, "she": {"_count": 1, "would": {"_count": 1}}, "went": {"_count": 1, "just": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "very": {"_count": 2, "quietly": {"_count": 2}}, "and": {"_count": 1, "upon": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "entrust": {"_count": 3, "to": {"_count": 2, "no": {"_count": 1}, "nobody": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}}, "fretted": {"_count": 1, "about": {"_count": 1, "this": {"_count": 1}}}, "sake": {"_count": 30, "Harry": {"_count": 2, "said": {"_count": 1}, "you": {"_count": 1}}, "hes": {"_count": 1, "happy": {"_count": 1}}, "": {"_count": 8, "!": {"_count": 4}, ".": {"_count": 3}, "?": {"_count": 1}}, "she": {"_count": 2, "snapped": {"_count": 1}, "said": {"_count": 1}}, "Ron": {"_count": 3, "hes": {"_count": 1}, "Ill": {"_count": 1}, "comes": {"_count": 1}}, "Dumbledore": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "it": {"_count": 1}, "argument": {"_count": 1}}, "Sirius": {"_count": 1, "Dumbledore": {"_count": 1}}, "act": {"_count": 1, "more": {"_count": 1}}, "must": {"_count": 2, "be": {"_count": 2}}, "Potter": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 1, "wizards": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "keep": {"_count": 1, "away": {"_count": 1}}, "this": {"_count": 1, "isnt": {"_count": 1}}, "Filch": {"_count": 1, "not": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "bishops": {"_count": 1, "wrestled": {"_count": 1, "her": {"_count": 1}}}, "daytime": {"_count": 1, "because": {"_count": 1, "of": {"_count": 1}}}, "Shivering": {"_count": 3, "Harry": {"_count": 2, "walked": {"_count": 1}, "looked": {"_count": 1}}, "violently": {"_count": 1, "he": {"_count": 1}}}, "snatches": {"_count": 6, "of": {"_count": 6, "what": {"_count": 1}, "conversation": {"_count": 3}, "singing": {"_count": 1}, "advice": {"_count": 1}}}, "Resisting": {"_count": 2, "the": {"_count": 2, "urge": {"_count": 2}}}, "urge": {"_count": 28, "to": {"_count": 19, "take": {"_count": 1}, "knock": {"_count": 1}, "jump": {"_count": 1}, "say": {"_count": 1}, "give": {"_count": 1}, "consult": {"_count": 1}, "confess": {"_count": 1}, "go": {"_count": 1}, "keep": {"_count": 1}, "swing": {"_count": 1}, "jinx": {"_count": 1}, "shout": {"_count": 1}, "laugh": {"_count": 1}, "threaten": {"_count": 1}, "sing": {"_count": 1}, "be": {"_count": 1}, "fling": {"_count": 1}, "throw": {"_count": 1}, "snap": {"_count": 1}}, "anyone": {"_count": 1, "who": {"_count": 1}}, "you": {"_count": 3, "to": {"_count": 1}, "therefore": {"_count": 1}, "not": {"_count": 1}}, "him": {"_count": 2, "to": {"_count": 1}, "forward": {"_count": 1}}, "the": {"_count": 1, "magical": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "even": {"_count": 1, "the": {"_count": 1}}}, "Between": {"_count": 5, "the": {"_count": 2, "long": {"_count": 1}, "absence": {"_count": 1}}, "graves": {"_count": 1, "behind": {"_count": 1}}, "his": {"_count": 1, "Quidditch": {"_count": 1}}, "ourselves": {"_count": 1, "she": {"_count": 1}}}, "absorbing": {"_count": 1, "conversation": {"_count": 1, "": {"_count": 1}}}, "stout": {"_count": 8, "boy": {"_count": 2, "was": {"_count": 1}, "solemnly": {"_count": 1}}, "heart": {"_count": 1, "the": {"_count": 1}}, "woman": {"_count": 1, "with": {"_count": 1}}, "iron": {"_count": 1, "peg": {"_count": 1}}, "bespectacled": {"_count": 1, "man": {"_count": 1}}, "little": {"_count": 1, "Gregorovitch": {"_count": 1}}, "Bathildas": {"_count": 1, "backside": {"_count": 1}}}, "victim": {"_count": 14, "its": {"_count": 1, "best": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "some": {"_count": 1}}, "and": {"_count": 3, "that": {"_count": 1}, "and": {"_count": 1}, "something": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "much": {"_count": 1, "time": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "toward": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "an": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "profile": {"_count": 9, "for": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "which": {"_count": 1, "looked": {"_count": 1}}, "His": {"_count": 1, "eyes": {"_count": 1}}}, "bandy": {"_count": 3, "about": {"_count": 1, "with": {"_count": 1}}, "legs": {"_count": 2, "and": {"_count": 1}, "long": {"_count": 1}}}, "Ernie": {"_count": 93, "": {"_count": 7, "?": {"_count": 1}, ".": {"_count": 6}}, "went": {"_count": 1, "on": {"_count": 1}}, "lowered": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "front": {"_count": 1}}, "bit": {"_count": 1, "his": {"_count": 1}}, "stubbornly": {"_count": 1, "though": {"_count": 1}}, "swiftly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 13, "the": {"_count": 1}, "his": {"_count": 1}, "Hannah": {"_count": 5}, "Justin": {"_count": 1}, "ignored": {"_count": 1}, "Draco": {"_count": 1}, "Malfoy": {"_count": 1}, "Seamus": {"_count": 2}}, "had": {"_count": 2, "said": {"_count": 1}, "never": {"_count": 1}}, "the": {"_count": 1, "Hufflepuff": {"_count": 1}}, "yelled": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 2, "instructions": {"_count": 1}, "some": {"_count": 1}}, "did": {"_count": 1, "fanning": {"_count": 1}}, "Macmillan": {"_count": 27, "of": {"_count": 2}, "asked": {"_count": 1}, "": {"_count": 2}, "a": {"_count": 1}, "and": {"_count": 3}, "was": {"_count": 3}, "had": {"_count": 2}, "Justin": {"_count": 1}, "whom": {"_count": 2}, "confidently": {"_count": 1}, "sagely": {"_count": 1}, "Hannah": {"_count": 1}, "pointing": {"_count": 1}, "on": {"_count": 2}, "however": {"_count": 1}, "he": {"_count": 1}, "Anthony": {"_count": 1}, "stood": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "breaking": {"_count": 1, "off": {"_count": 1}}, "as": {"_count": 1, "readily": {"_count": 1}}, "asked": {"_count": 1, "": {"_count": 1}}, "Prang": {"_count": 3, "": {"_count": 1}, "an": {"_count": 1}, "driver": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "suddenly": {"_count": 1, "shivered": {"_count": 1}}, "McMillan": {"_count": 1, "told": {"_count": 1}}, "hurried": {"_count": 1, "off": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "portentously": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "will": {"_count": 1, "tell": {"_count": 1}}, "was": {"_count": 2, "looking": {"_count": 2}}, "burst": {"_count": 1, "out": {"_count": 1}}, "yes": {"_count": 1, "I": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "looking": {"_count": 2, "slightly": {"_count": 1}, "appalled": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "smirked": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "muttered": {"_count": 1, "something": {"_count": 1}}, "puffing": {"_count": 1, "out": {"_count": 1}}, "to": {"_count": 1, "abandon": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "were": {"_count": 1, "sitting": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "sycophantically": {"_count": 1, "rubbing": {"_count": 1}}}, "solemnly": {"_count": 13, "hes": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "swear": {"_count": 5, "that": {"_count": 5}}, "": {"_count": 4, ".": {"_count": 4}}, "ten": {"_count": 1, "points": {"_count": 1}}, "then": {"_count": 1, "up": {"_count": 1}}}, "Serpenttongue": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "murmuring": {"_count": 14, "at": {"_count": 1, "this": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "laughter": {"_count": 1}}, "noises": {"_count": 1, "coming": {"_count": 1}}, "was": {"_count": 1, "becoming": {"_count": 1}}, "I": {"_count": 1, "solemnly": {"_count": 1}}, "words": {"_count": 1, "in": {"_count": 1}}, "soundlessly": {"_count": 1, "": {"_count": 1}}, "crowd": {"_count": 1, "to": {"_count": 1}}, "broken": {"_count": 1, "by": {"_count": 1}}, "instructions": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "word": {"_count": 1}}, "incantations": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "Beware": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "runin": {"_count": 1, "with": {"_count": 1, "Filch": {"_count": 1}}}, "Ernies": {"_count": 7, "words": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "owlish": {"_count": 1, "face": {"_count": 1}}, "navy": {"_count": 1, "concoction": {"_count": 1}}, "potion": {"_count": 1, "and": {"_count": 1}}}, "smithereens": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "competing": {"_count": 7, "with": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 1, "Harry": {"_count": 1}}, "teams": {"_count": 1, "though": {"_count": 1}}}, "Clearing": {"_count": 2, "his": {"_count": 1, "throat": {"_count": 1}}, "up": {"_count": 1, "my": {"_count": 1}}}, "confirmed": {"_count": 14, "": {"_count": 5, ".": {"_count": 5}}, "today": {"_count": 1, "": {"_count": 1}}, "Rons": {"_count": 1, "belief": {"_count": 1}}, "that": {"_count": 4, "ten": {"_count": 1}, "HeWhoMustNotBe": {"_count": 1}, "the": {"_count": 1}, "measures": {"_count": 1}}, "what": {"_count": 1, "Ginny": {"_count": 1}}, "his": {"_count": 1, "suspicion": {"_count": 1}}, "nor": {"_count": 1, "denied": {"_count": 1}}}, "fearfully": {"_count": 9, "at": {"_count": 2, "Ernie": {"_count": 1}, "Harry": {"_count": 1}}, "Neville": {"_count": 1, "pushed": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "Then": {"_count": 1, "Umbridge": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}}, "stubbornly": {"_count": 21, "though": {"_count": 1, "he": {"_count": 1}}, "untidy": {"_count": 1, "whatever": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "repeating": {"_count": 1, "again": {"_count": 1}}, "also": {"_count": 1, "scowling": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "blank": {"_count": 1, "crystal": {"_count": 1}}, "sitting": {"_count": 1, "there": {"_count": 1}}}, "trace": {"_count": 37, "my": {"_count": 1, "family": {"_count": 1}}, "of": {"_count": 26, "writing": {"_count": 1}, "scarlet": {"_count": 2}, "interesting": {"_count": 1}, "sullenness": {"_count": 1}, "a": {"_count": 4}, "embarrassment": {"_count": 1}, "irritation": {"_count": 1}, "apprehension": {"_count": 1}, "drowsiness": {"_count": 1}, "poison": {"_count": 1}, "panic": {"_count": 1}, "the": {"_count": 2}, "meaning": {"_count": 1}, "Tom": {"_count": 1}, "flowery": {"_count": 1}, "skepticism": {"_count": 1}, "pink": {"_count": 1}, "it": {"_count": 1}, "Malfoy": {"_count": 1}, "longing": {"_count": 1}, "steam": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "it": {"_count": 1, "through": {"_count": 1}}, "en": {"_count": 1, "route": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "the": {"_count": 3, "mysterious": {"_count": 1}, "real": {"_count": 1}, "wands": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}}, "generations": {"_count": 10, "of": {"_count": 5, "witches": {"_count": 1}, "Hogwarts": {"_count": 1}, "the": {"_count": 1}, "Ravenclaws": {"_count": 1}, "hunted": {"_count": 1}}, "lest": {"_count": 1, "we": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "before": {"_count": 1, "Marvolo": {"_count": 1}}, "to": {"_count": 1, "come": {"_count": 1}}}, "warlocks": {"_count": 9, "and": {"_count": 1, "my": {"_count": 1}}, "raucous": {"_count": 1, "dwarfs": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 1, "Liechtenstein": {"_count": 1}}, "sitting": {"_count": 1, "close": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "having": {"_count": 1, "a": {"_count": 1}}}, "bloods": {"_count": 3, "as": {"_count": 1, "pure": {"_count": 1}}, "amazingly": {"_count": 1, "magical": {"_count": 1}}, "important": {"_count": 1, "": {"_count": 1}}}, "earning": {"_count": 3, "himself": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 1, "such": {"_count": 1}}}, "reproving": {"_count": 3, "glare": {"_count": 1, "from": {"_count": 1}}, "look": {"_count": 1, "because": {"_count": 1}}, "sugarcovered": {"_count": 1, "finger": {"_count": 1}}}, "glare": {"_count": 19, "from": {"_count": 1, "Madam": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 5}, "a": {"_count": 1}, "thousands": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 3, "Harry": {"_count": 1}, "him": {"_count": 2}}, "into": {"_count": 1, "Lupins": {"_count": 1}}, "was": {"_count": 1, "sunlight": {"_count": 1}}, "like": {"_count": 1, "lightning": {"_count": 1}}}, "gilded": {"_count": 5, "cover": {"_count": 1, "of": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "fireplaces": {"_count": 1, "set": {"_count": 1}}, "mirror": {"_count": 1, "": {"_count": 1}}, "thing": {"_count": 1, "in": {"_count": 1}}}, "spellbook": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "result": {"_count": 12, "was": {"_count": 2, "that": {"_count": 2}}, "that": {"_count": 6, "the": {"_count": 1}, "they": {"_count": 1}, "by": {"_count": 2}, "he": {"_count": 2}}, "right": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 3, "an": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}}}, "balaclava": {"_count": 6, "but": {"_count": 1, "it": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "perched": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "gloved": {"_count": 4, "hands": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 3, "toward": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}}, "righ": {"_count": 41, "Harry": {"_count": 6, "": {"_count": 6}}, "": {"_count": 12, "?": {"_count": 7}, ".": {"_count": 3}, "!": {"_count": 2}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "you": {"_count": 2, "three": {"_count": 1}, "two": {"_count": 1}}, "state": {"_count": 1, "thats": {"_count": 1}}, "really": {"_count": 1, "aren": {"_count": 1}}, "o": {"_count": 1, "course": {"_count": 1}}, "lettin": {"_count": 1, "anyone": {"_count": 1}}, "he": {"_count": 1, "grunted": {"_count": 1}}, "Hagrid": {"_count": 2, "said": {"_count": 1}, "whispered": {"_count": 1}}, "after": {"_count": 1, "term": {"_count": 1}}, "fer": {"_count": 1, "himself": {"_count": 1}}, "they": {"_count": 2, "can": {"_count": 1}, "might": {"_count": 1}}, "now": {"_count": 1, "before": {"_count": 1}}, "Grawpy": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "yeh": {"_count": 1}}, "then": {"_count": 1, "Harry": {"_count": 1}}, "come": {"_count": 1, "in": {"_count": 1}}, "nice": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "Ron": {"_count": 1, "Hermione": {"_count": 1}}, "Fang": {"_count": 1, "its": {"_count": 1}}}, "Canceled": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "foxes": {"_count": 1, "or": {"_count": 1, "a": {"_count": 1}}}, "BloodSuckin": {"_count": 1, "Bugbear": {"_count": 1, "an": {"_count": 1}}}, "Bugbear": {"_count": 1, "an": {"_count": 1, "I": {"_count": 1}}}, "hen": {"_count": 1, "coop": {"_count": 1, "": {"_count": 1}}}, "coop": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "but": {"_count": 1, "er": {"_count": 1}}}, "snowflecked": {"_count": 2, "eyebrows": {"_count": 1, "": {"_count": 1}}, "window": {"_count": 1, "a": {"_count": 1}}}, "yehre": {"_count": 10, "all": {"_count": 3, "righ": {"_count": 3}}, "allowed": {"_count": 1, "ter": {"_count": 1}}, "not": {"_count": 3, "halfgiant": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "talkin": {"_count": 1, "about": {"_count": 1}}, "like": {"_count": 1, "abou": {"_count": 1}}, "here": {"_count": 1, "though": {"_count": 1}}}, "stamped": {"_count": 11, "up": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 2, "it": {"_count": 1}, "one": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "that": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "enormous": {"_count": 1}}, "hard": {"_count": 1, "on": {"_count": 1}}, "their": {"_count": 1, "feet": {"_count": 1}}}, "extinguished": {"_count": 28, "by": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 4, "fire": {"_count": 1}, "last": {"_count": 1}, "room": {"_count": 1}, "end": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "plunging": {"_count": 1, "them": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "something": {"_count": 1}, "darkness": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "itself": {"_count": 1, "in": {"_count": 1}}, "replaced": {"_count": 1, "by": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "their": {"_count": 2, "fire": {"_count": 1}, "voices": {"_count": 1}}, "Then": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "Pain": {"_count": 1, "cleaved": {"_count": 1}}}, "draft": {"_count": 11, "that": {"_count": 1, "was": {"_count": 1}}, "an": {"_count": 1, "advertisement": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "response": {"_count": 1}}, "of": {"_count": 4, "Polyjuice": {"_count": 2}, "tea": {"_count": 1}, "juice": {"_count": 1}}, "or": {"_count": 1, "bird": {"_count": 1}}, "its": {"_count": 1, "feathers": {"_count": 1}}, "had": {"_count": 1, "entered": {"_count": 1}}}, "windowpane": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "his": {"_count": 1, "glasses": {"_count": 1}}}, "headlong": {"_count": 7, "over": {"_count": 1, "something": {"_count": 1}}, "into": {"_count": 6, "a": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 2}, "one": {"_count": 1}, "sunlight": {"_count": 1}}}, "strangest": {"_count": 10, "sight": {"_count": 1, "Harry": {"_count": 1}}, "sensation": {"_count": 1, "of": {"_count": 1}}, "assortment": {"_count": 1, "of": {"_count": 1}}, "feeling": {"_count": 5, "that": {"_count": 5}}, "power": {"_count": 1, "until": {"_count": 1}}, "feature": {"_count": 1, "of": {"_count": 1}}}, "horizontal": {"_count": 2, "six": {"_count": 1, "inches": {"_count": 1}}, "stripes": {"_count": 1, "of": {"_count": 1}}}, "shallow": {"_count": 15, "his": {"_count": 1, "heart": {"_count": 1}}, "trench": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "uneven": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "bottomed": {"_count": 1, "products": {"_count": 1}}, "stone": {"_count": 4, "basin": {"_count": 4}}, "fast": {"_count": 1, "breathing": {"_count": 1}}, "way": {"_count": 1, "her": {"_count": 1}}, "with": {"_count": 1, "excitement": {"_count": 1}}}, "drumroll": {"_count": 2, "against": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "panicking": {"_count": 7, "a": {"_count": 1, "door": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "Lily": {"_count": 1, "take": {"_count": 1}}, "slightly": {"_count": 1, "about": {"_count": 1}}, "crowd": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "He": {"_count": 1}}, "he": {"_count": 1, "fears": {"_count": 1}}}, "potty": {"_count": 1, "wee": {"_count": 1, "Potter": {"_count": 1}}}, "Upside": {"_count": 2, "down": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}}, "ATTACK": {"_count": 5, "": {"_count": 4, "!": {"_count": 4}}, "THE": {"_count": 1, "KEEPER": {"_count": 1}}}, "MORTAL": {"_count": 1, "OR": {"_count": 1, "GHOST": {"_count": 1}}}, "GHOST": {"_count": 1, "IS": {"_count": 1, "SAFE": {"_count": 1}}}, "IS": {"_count": 19, "SAFE": {"_count": 1, "": {"_count": 1}}, "BEHIND": {"_count": 2, "YOU": {"_count": 2}}, "THIS": {"_count": 1, "": {"_count": 1}}, "NO": {"_count": 2, "HARRY": {"_count": 1}, "TIME": {"_count": 1}}, "WITHIN": {"_count": 1, "THE": {"_count": 1}}, "NOT": {"_count": 2, "ALL": {"_count": 1}, "DEAD": {"_count": 1}}, "UNDERTAKEN": {"_count": 1, "AT": {"_count": 1}}, "OUR": {"_count": 5, "KING": {"_count": 5}}, "RALLYING": {"_count": 1, "POINT": {"_count": 1}}, "MIGHT": {"_count": 2, "As": {"_count": 1}, "": {"_count": 1}}, "MANS": {"_count": 1, "GREATEST": {"_count": 1}}}, "SAFE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "LIVES": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "ATTaaCK": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Crash": {"_count": 1, "crash": {"_count": 1, "crash": {"_count": 1}}}, "restored": {"_count": 8, "silence": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 2, "with": {"_count": 1}, "gently": {"_count": 1}}, "but": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 4, "his": {"_count": 1}, "full": {"_count": 2}, "its": {"_count": 1}}}, "stark": {"_count": 3, "white": {"_count": 1, "pointing": {"_count": 1}}, "contrast": {"_count": 1, "between": {"_count": 1}}, "stone": {"_count": 1, "walls": {"_count": 1}}}, "surveying": {"_count": 16, "the": {"_count": 2, "scene": {"_count": 1}, "grindylow": {"_count": 1}}, "a": {"_count": 1, "favorite": {"_count": 1}}, "Hermione": {"_count": 1, "with": {"_count": 1}}, "Snape": {"_count": 1, "closely": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "Karkaroff": {"_count": 2, "with": {"_count": 2}}, "Harry": {"_count": 4, "as": {"_count": 1}, "unblinkingly": {"_count": 1}, "over": {"_count": 2}}, "his": {"_count": 1, "mother": {"_count": 1}}, "it": {"_count": 2, "with": {"_count": 2}}, "her": {"_count": 1, "with": {"_count": 1}}}, "chaos": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "leaving": {"_count": 1}}, "Peeves": {"_count": 1, "who": {"_count": 1}}, "It": {"_count": 1, "smashed": {"_count": 1}}}, "rotter": {"_count": 3, "oh": {"_count": 1, "what": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "song": {"_count": 1, "Ernie": {"_count": 1}}}, "Sinistra": {"_count": 9, "of": {"_count": 2, "the": {"_count": 2}}, "s": {"_count": 3, "other": {"_count": 1}, "equally": {"_count": 1}, "essay": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "Astronomy": {"_count": 1}}, "gave": {"_count": 1, "them": {"_count": 1}}, "Europas": {"_count": 1, "covered": {"_count": 1}}}, "waft": {"_count": 2, "Nearly": {"_count": 1, "Headless": {"_count": 1}}, "of": {"_count": 1, "that": {"_count": 1}}}, "fanning": {"_count": 3, "Nick": {"_count": 1, "along": {"_count": 1}}, "herself": {"_count": 2, "with": {"_count": 1}, "vigorously": {"_count": 1}}}, "hovercraft": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "curtly": {"_count": 32, "": {"_count": 16, ".": {"_count": 16}}, "behind": {"_count": 1, "Aunt": {"_count": 1}}, "and": {"_count": 3, "both": {"_count": 1}, "looking": {"_count": 1}, "turned": {"_count": 1}}, "I": {"_count": 2, "am": {"_count": 1}, "hardly": {"_count": 1}}, "pointing": {"_count": 2, "up": {"_count": 1}, "toward": {"_count": 1}}, "his": {"_count": 1, "fingers": {"_count": 1}}, "without": {"_count": 1, "looking": {"_count": 1}}, "but": {"_count": 1, "found": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "Very": {"_count": 1, "well": {"_count": 1}}, "then": {"_count": 2, "went": {"_count": 1}, "lets": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}}, "gargoyle": {"_count": 35, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "sprang": {"_count": 3, "suddenly": {"_count": 1}, "to": {"_count": 2}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "standing": {"_count": 1, "halfway": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "and": {"_count": 2, "looking": {"_count": 1}, "ran": {"_count": 1}}, "guarding": {"_count": 4, "the": {"_count": 4}}, "remained": {"_count": 1, "immovable": {"_count": 1}}, "buys": {"_count": 1, "all": {"_count": 1}}, "snidely": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "minutes": {"_count": 1}}, "jumped": {"_count": 1, "aside": {"_count": 1}}, "outside": {"_count": 1, "his": {"_count": 1}}, "stood": {"_count": 2, "against": {"_count": 1}, "sentry": {"_count": 1}}, "leapt": {"_count": 2, "aside": {"_count": 2}}, "I": {"_count": 1, "know": {"_count": 1}}, "which": {"_count": 1, "leapt": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "torn": {"_count": 1, "from": {"_count": 1}}, "slid": {"_count": 1, "aside": {"_count": 1}}}, "Lemon": {"_count": 1, "drop": {"_count": 1, "": {"_count": 1}}}, "evidently": {"_count": 44, "a": {"_count": 1, "password": {"_count": 1}}, "pressed": {"_count": 1, "his": {"_count": 1}}, "been": {"_count": 2, "trying": {"_count": 1}, "waiting": {"_count": 1}}, "still": {"_count": 1, "furious": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "zair": {"_count": 1, "as": {"_count": 1}}, "thinking": {"_count": 2, "hard": {"_count": 2}}, "changed": {"_count": 1, "however": {"_count": 1}}, "incensed": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "horrorstruck": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "intended": {"_count": 2, "to": {"_count": 2}}, "imagined": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "hoping": {"_count": 1, "to": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "decided": {"_count": 1, "that": {"_count": 1}}, "failed": {"_count": 1, "to": {"_count": 1}}, "considered": {"_count": 1, "to": {"_count": 1}}, "only": {"_count": 1, "pretending": {"_count": 1}}, "aroused": {"_count": 1, "": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "concentrating": {"_count": 1, "on": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "confused": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "vacated": {"_count": 1}}, "following": {"_count": 1, "his": {"_count": 1}}, "spending": {"_count": 1, "the": {"_count": 1}}, "expected": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "startled": {"_count": 1, "": {"_count": 1}}, "forgotten": {"_count": 1, "in": {"_count": 1}}, "thought": {"_count": 1, "Professor": {"_count": 1}}, "torn": {"_count": 1, "between": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "arguing": {"_count": 1, "": {"_count": 1}}, "bursting": {"_count": 1, "with": {"_count": 1}}, "disappointed": {"_count": 1, "by": {"_count": 1}}}, "dread": {"_count": 22, "for": {"_count": 1, "what": {"_count": 1}}, "that": {"_count": 4, "he": {"_count": 1}, "had": {"_count": 2}, "the": {"_count": 1}}, "creature": {"_count": 1, "though": {"_count": 1}}, "the": {"_count": 1, "hours": {"_count": 1}}, "him": {"_count": 1, "dying": {"_count": 1}}, "Harry": {"_count": 1, "slowly": {"_count": 1}}, "will": {"_count": 2, "indeed": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 2, "anger": {"_count": 1}, "panic": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "return": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 1, "sure": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "is": {"_count": 1, "also": {"_count": 1}}, "of": {"_count": 1, "death": {"_count": 1}}}, "knocker": {"_count": 13, "in": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "shaped": {"_count": 2, "like": {"_count": 2}}, "and": {"_count": 3, "the": {"_count": 3}}, "but": {"_count": 2, "Umbridge": {"_count": 1}, "before": {"_count": 1}}, "that": {"_count": 1, "led": {"_count": 1}}, "Where": {"_count": 1, "do": {"_count": 1}}}, "POLY": {"_count": 1, "JUICE": {"_count": 1, "POTION": {"_count": 1}}}, "JUICE": {"_count": 1, "POTION": {"_count": 1, "They": {"_count": 1}}}, "POTION": {"_count": 2, "They": {"_count": 1, "stepped": {"_count": 1}}, "AND": {"_count": 1, "PLANT": {"_count": 1}}}, "offices": {"_count": 6, "Harry": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 2, "London": {"_count": 1}, "response": {"_count": 1}}, "a": {"_count": 1, "pub": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wits": {"_count": 6, "that": {"_count": 1, "he": {"_count": 1}}, "Clang": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "about": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}}, "spindlelegged": {"_count": 5, "tables": {"_count": 3, "whirring": {"_count": 1}, "puffing": {"_count": 1}, "Gryffindors": {"_count": 1}}, "table": {"_count": 2, "": {"_count": 1}, "beside": {"_count": 1}}}, "whirring": {"_count": 9, "and": {"_count": 3, "emitting": {"_count": 2}, "puffing": {"_count": 1}}, "silver": {"_count": 1, "contraptions": {"_count": 1}}, "of": {"_count": 1, "wings": {"_count": 1}}, "tiny": {"_count": 1, "needle": {"_count": 1}}, "serenely": {"_count": 1, "": {"_count": 1}}, "portraits": {"_count": 1, "of": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}}, "frames": {"_count": 19, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 2, "visit": {"_count": 1}, "grip": {"_count": 1}}, "muttering": {"_count": 1, "darkly": {"_count": 1}}, "thinking": {"_count": 1, "about": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 2, "instead": {"_count": 1}, "along": {"_count": 1}}, "the": {"_count": 2, "better": {"_count": 1}, "whole": {"_count": 1}}, "and": {"_count": 4, "whispered": {"_count": 1}, "Dumbledores": {"_count": 1}, "the": {"_count": 2}}, "heads": {"_count": 1, "lolling": {"_count": 1}}, "flew": {"_count": 1, "glittering": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "footed": {"_count": 4, "desk": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "distinctly": {"_count": 1}, "roundshouldered": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tattered": {"_count": 9, "wizards": {"_count": 1, "hat": {"_count": 1}}, "left": {"_count": 1, "ear": {"_count": 1}}, "playing": {"_count": 1, "cards": {"_count": 1}}, "overcoat": {"_count": 1, "materialized": {"_count": 1}}, "old": {"_count": 2, "Wizarding": {"_count": 1}, "photograph": {"_count": 1}}, "black": {"_count": 2, "curtain": {"_count": 1}, "veil": {"_count": 1}}, "book": {"_count": 1, "Slughorn": {"_count": 1}}}, "wary": {"_count": 16, "eye": {"_count": 3, "around": {"_count": 2}, "on": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "of": {"_count": 2, "displaying": {"_count": 1}, "approaching": {"_count": 1}}, "almost": {"_count": 1, "frightened": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "eyes": {"_count": 1, "fixed": {"_count": 1}}, "but": {"_count": 1, "standing": {"_count": 1}}, "to": {"_count": 1, "approach": {"_count": 1}}}, "Bee": {"_count": 1, "in": {"_count": 1, "your": {"_count": 1}}}, "plummeted": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "had": {"_count": 1, "she": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "twelve": {"_count": 1, "feet": {"_count": 1}}, "sickeningly": {"_count": 1, "": {"_count": 1}}, "feetfirst": {"_count": 1, "toward": {"_count": 1}}}, "gagging": {"_count": 5, "noise": {"_count": 2, "behind": {"_count": 1}, "again": {"_count": 1}}, "sound": {"_count": 1, "erupted": {"_count": 1}}, "and": {"_count": 1, "sputtering": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}}, "decrepitlooking": {"_count": 1, "bird": {"_count": 1, "that": {"_count": 1}}}, "balefully": {"_count": 3, "back": {"_count": 1, "making": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "pet": {"_count": 16, "bird": {"_count": 1, "to": {"_count": 1}}, "rat": {"_count": 2, "Scabbers": {"_count": 1}, "out": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 2}, "!": {"_count": 2}, "?": {"_count": 1}}, "toad": {"_count": 1, "croaked": {"_count": 1}}, "dog": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "dragon": {"_count": 1, "as": {"_count": 1}}, "grindylow": {"_count": 1, "tied": {"_count": 1}}, "had": {"_count": 1, "turned": {"_count": 1}}, "invention": {"_count": 1, "he": {"_count": 1}}, "Dont": {"_count": 1, "exaggerate": {"_count": 1}}}, "fireball": {"_count": 1, "it": {"_count": 1, "gave": {"_count": 1}}}, "somber": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "again": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "purple": {"_count": 1, "posters": {"_count": 1}}, "black": {"_count": 1, "cravat": {"_count": 1}}, "demeanor": {"_count": 1, "in": {"_count": 1}}}, "Fawkes": {"_count": 56, "is": {"_count": 1, "a": {"_count": 1}}, "catching": {"_count": 1, "fire": {"_count": 1}}, "the": {"_count": 7, "phoenix": {"_count": 7}}, "": {"_count": 4, "?": {"_count": 2}, ".": {"_count": 1}, "!": {"_count": 1}}, "had": {"_count": 6, "dropped": {"_count": 1}, "soared": {"_count": 1}, "swooped": {"_count": 1}, "left": {"_count": 1}, "fallen": {"_count": 1}, "stopped": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 2}}, "swaying": {"_count": 1, "on": {"_count": 1}}, "wing": {"_count": 1, "sweep": {"_count": 1}}, "was": {"_count": 4, "soaring": {"_count": 1}, "circling": {"_count": 1}, "waiting": {"_count": 1}, "leading": {"_count": 1}}, "dived": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 3}}, "still": {"_count": 1, "resting": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "took": {"_count": 1, "flight": {"_count": 1}}, "whose": {"_count": 1, "wide": {"_count": 1}}, "went": {"_count": 1, "whooshing": {"_count": 1}}, "to": {"_count": 1, "you": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledores": {"_count": 1}}, "then": {"_count": 1, "got": {"_count": 1}}, "blinked": {"_count": 1, "peacefully": {"_count": 1}}, "hadnt": {"_count": 1, "turned": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "screeched": {"_count": 1, "and": {"_count": 1}}, "circled": {"_count": 1, "the": {"_count": 1}}, "swooped": {"_count": 1, "down": {"_count": 1}}, "croaking": {"_count": 1, "feebly": {"_count": 1}}, "whom": {"_count": 1, "he": {"_count": 1}}, "usually": {"_count": 1, "stood": {"_count": 1}}, "made": {"_count": 1, "soft": {"_count": 1}}, "stood": {"_count": 1, "on": {"_count": 1}}, "gave": {"_count": 2, "another": {"_count": 1}, "a": {"_count": 1}}, "slumbering": {"_count": 1, "happily": {"_count": 1}}, "sat": {"_count": 1, "silent": {"_count": 1}}}, "Phoenixes": {"_count": 1, "burst": {"_count": 1, "into": {"_count": 1}}}, "reborn": {"_count": 3, "from": {"_count": 1, "the": {"_count": 1}}, "Dark": {"_count": 1, "wizards": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "newborn": {"_count": 4, "bird": {"_count": 1, "poke": {"_count": 1}}, "monster": {"_count": 1, "inside": {"_count": 1}}, "unicorns": {"_count": 1, "Ill": {"_count": 1}}, "Ariana": {"_count": 1, "Kendra": {"_count": 1}}}, "Burning": {"_count": 2, "Day": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "plumage": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "swished": {"_count": 1}}}, "healing": {"_count": 6, "powers": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "effectively": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "minor": {"_count": 1, "injuries": {"_count": 1}}}, "pets": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "matter": {"_count": 1, "very": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "that": {"_count": 1, "can": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "assembled": {"_count": 1, "ready": {"_count": 1}}}, "penetrating": {"_count": 6, "lightblue": {"_count": 2, "stare": {"_count": 1}, "eyes": {"_count": 1}}, "stare": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 1, "felt": {"_count": 1}}, "his": {"_count": 1, "insides": {"_count": 1}}, "glare": {"_count": 1, "and": {"_count": 1}}}, "talkin": {"_count": 8, "ter": {"_count": 2, "him": {"_count": 1}, "Fang": {"_count": 1}}, "to": {"_count": 3, "her": {"_count": 2}, "": {"_count": 1}}, "about": {"_count": 2, "said": {"_count": 1}, "shuttin": {"_count": 1}}, "abou": {"_count": 1, "on": {"_count": 1}}}, "agitation": {"_count": 3, "sending": {"_count": 1, "feathers": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "while": {"_count": 1, "Mrs": {"_count": 1}}}, "Hagridl": {"_count": 2, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "The": {"_count": 1, "motorbike": {"_count": 1}}}, "disembodied": {"_count": 10, "voice": {"_count": 3, "he": {"_count": 1}, "they": {"_count": 1}, "how": {"_count": 1}}, "his": {"_count": 1, "mouth": {"_count": 1}}, "female": {"_count": 1, "voice": {"_count": 1}}, "witchs": {"_count": 1, "voice": {"_count": 1}}, "hand": {"_count": 1, "and": {"_count": 1}}, "heads": {"_count": 1, "it": {"_count": 1}}, "feet": {"_count": 1, "through": {"_count": 1}}, "thought": {"_count": 1, "because": {"_count": 1}}}, "hitherto": {"_count": 5, "been": {"_count": 1, "nervousness": {"_count": 1}}, "refused": {"_count": 1, "even": {"_count": 1}}, "unsuspected": {"_count": 2, "magical": {"_count": 1}, "skills": {"_count": 1}}, "unknown": {"_count": 1, "and": {"_count": 1}}}, "nervousness": {"_count": 3, "into": {"_count": 1, "real": {"_count": 1}}, "so": {"_count": 1, "advanced": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Curiously": {"_count": 2, "it": {"_count": 2, "was": {"_count": 1}, "had": {"_count": 1}}}, "stampede": {"_count": 1, "to": {"_count": 1, "book": {"_count": 1}}}, "rate": {"_count": 13, "well": {"_count": 1, "be": {"_count": 1}}, "therell": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 1, "Im": {"_count": 1}}, "of": {"_count": 1, "almost": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "said": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "You": {"_count": 1, "dont": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "remains": {"_count": 1}}, "theyre": {"_count": 1, "going": {"_count": 1}}, "quickened": {"_count": 1, "the": {"_count": 1}}}, "Us": {"_count": 6, "Malfoy": {"_count": 1, "Crabbe": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "page": {"_count": 1, "five": {"_count": 1}}, "mistreat": {"_count": 1, "Dudders": {"_count": 1}}}, "jolly": {"_count": 2, "holiday": {"_count": 1, "its": {"_count": 1}}, "good": {"_count": 1, "": {"_count": 1}}}, "skirting": {"_count": 9, "around": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 4, "edge": {"_count": 2}, "patch": {"_count": 1}, "Willows": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "board": {"_count": 1, "": {"_count": 1}}}, "sprout": {"_count": 5, "fangs": {"_count": 1, "or": {"_count": 1}}, "wings": {"_count": 1, "whenever": {"_count": 1}}, "Im": {"_count": 1, "only": {"_count": 1}}, "knife": {"_count": 1, "at": {"_count": 1}}, "mountain": {"_count": 1, "": {"_count": 1}}}, "fanged": {"_count": 4, "servant": {"_count": 1, "said": {"_count": 1}}, "mouths": {"_count": 2, "fifty": {"_count": 1}, "tossed": {"_count": 1}}, "monsters": {"_count": 1, "were": {"_count": 1}}}, "chortling": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "went": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "Fudge": {"_count": 1, "had": {"_count": 1}}, "still": {"_count": 1, "clutching": {"_count": 1}}}, "clove": {"_count": 1, "of": {"_count": 1, "garlic": {"_count": 1}}}, "antics": {"_count": 3, "seemed": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "Arnold": {"_count": 1}}, "during": {"_count": 1, "Care": {"_count": 1}}}, "aggravating": {"_count": 2, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "increasingly": {"_count": 16, "sour": {"_count": 1, "each": {"_count": 1}}, "nervous": {"_count": 1, "": {"_count": 1}}, "edgy": {"_count": 1, "and": {"_count": 1}}, "stale": {"_count": 1, "cake": {"_count": 1}}, "boisterous": {"_count": 1, "as": {"_count": 1}}, "hysterical": {"_count": 1, "talks": {"_count": 1}}, "difficult": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "overgrown": {"_count": 1, "and": {"_count": 1}}, "badtempered": {"_count": 1, "as": {"_count": 1}}, "tight": {"_count": 1, "security": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "incredulous": {"_count": 1, "": {"_count": 1}}, "evident": {"_count": 1, "enjoyment": {"_count": 1}}, "restricted": {"_count": 1, "": {"_count": 1}}, "repetitive": {"_count": 1, "as": {"_count": 1}}}, "sour": {"_count": 8, "each": {"_count": 1, "time": {"_count": 1}}, "pulled": {"_count": 1, "a": {"_count": 1}}, "milk": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "unpleasant": {"_count": 1}}, "grapes": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "knowingly": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "winking": {"_count": 1}}, "deliberately": {"_count": 1, "and": {"_count": 1}}, "risked": {"_count": 1, "passing": {"_count": 1}}}, "descended": {"_count": 31, "on": {"_count": 2, "the": {"_count": 2}}, "from": {"_count": 5, "the": {"_count": 4}, "thin": {"_count": 1}}, "right": {"_count": 1, "at": {"_count": 1}}, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 6, "stairs": {"_count": 2}, "silver": {"_count": 1}, "last": {"_count": 1}, "carriage": {"_count": 1}, "staircase": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 2}}, "a": {"_count": 1, "few": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "upon": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "fast": {"_count": 1, "as": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "two": {"_count": 1, "more": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "Exploding": {"_count": 10, "Snap": {"_count": 9, "loudly": {"_count": 1}, "and": {"_count": 2}, "set": {"_count": 1}, "": {"_count": 1}, "pack": {"_count": 1}, "anyone": {"_count": 1}, "in": {"_count": 1}, "with": {"_count": 1}}, "Snaps": {"_count": 1, "got": {"_count": 1}}}, "Snap": {"_count": 9, "loudly": {"_count": 1, "without": {"_count": 1}}, "and": {"_count": 2, "Ginny": {"_count": 1}, "when": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "pack": {"_count": 1, "a": {"_count": 1}}, "anyone": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "Ginny": {"_count": 1}}}, "disapproved": {"_count": 4, "of": {"_count": 2, "what": {"_count": 1}, "copying": {"_count": 1}}, "he": {"_count": 1, "appointed": {"_count": 1}}, "so": {"_count": 1, "heartily": {"_count": 1}}}, "termed": {"_count": 1, "their": {"_count": 1, "childish": {"_count": 1}}}, "childish": {"_count": 8, "behavior": {"_count": 1, "didnt": {"_count": 1}}, "to": {"_count": 1, "say": {"_count": 1}}, "writing": {"_count": 1, "": {"_count": 1}}, "games": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "words": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "question": {"_count": 1, "had": {"_count": 1}}, "dream": {"_count": 1, "is": {"_count": 1}}}, "duty": {"_count": 33, "as": {"_count": 2, "a": {"_count": 1}, "godfather": {"_count": 1}}, "Take": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "muttered": {"_count": 1, "Mr": {"_count": 1}}, "to": {"_count": 9, "inform": {"_count": 1}, "ensure": {"_count": 1}, "inspect": {"_count": 1}, "stand": {"_count": 1}, "be": {"_count": 1}, "check": {"_count": 1}, "help": {"_count": 1}, "the": {"_count": 1}, "our": {"_count": 1}}, "until": {"_count": 1, "midnight": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "tomorrow": {"_count": 1, "Im": {"_count": 1}}, "And": {"_count": 1, "must": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "doing": {"_count": 1, "what": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "Fred": {"_count": 1, "interrupted": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "seems": {"_count": 1}}, "of": {"_count": 1, "shepherding": {"_count": 1}}, "staring": {"_count": 1, "idly": {"_count": 1}}}, "Wake": {"_count": 3, "up": {"_count": 3, "she": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}}, "shielding": {"_count": 9, "his": {"_count": 2, "eyes": {"_count": 1}, "head": {"_count": 1}}, "him": {"_count": 2, "from": {"_count": 2}}, "her": {"_count": 2, "face": {"_count": 1}, "son": {"_count": 1}}, "Harry": {"_count": 1, "from": {"_count": 1}}, "Luna": {"_count": 1, "from": {"_count": 1}}, "it": {"_count": 1, "from": {"_count": 1}}}, "shirting": {"_count": 1, "Scabbers": {"_count": 1, "the": {"_count": 1}}}, "nibbled": {"_count": 3, "his": {"_count": 2, "ear": {"_count": 2}}, "one": {"_count": 1, "of": {"_count": 1}}}, "affectionate": {"_count": 4, "sort": {"_count": 1, "of": {"_count": 1}}, "nip": {"_count": 1, "with": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "treatment": {"_count": 1, "of": {"_count": 1}}}, "toothpick": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "satisfactory": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "pincushion": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "Dobbys": {"_count": 1}}, "yes": {"_count": 1, "thank": {"_count": 1}}, "as": {"_count": 1, "for": {"_count": 1}}, "answers": {"_count": 1, "I": {"_count": 1}}}, "soften": {"_count": 7, "by": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 1, "up": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "up": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Slughorn": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}}, "luxury": {"_count": 1, "eaglefeather": {"_count": 1, "quill": {"_count": 1}}}, "eaglefeather": {"_count": 4, "quill": {"_count": 4, "": {"_count": 1}, "down": {"_count": 1}, "with": {"_count": 1}, "once": {"_count": 1}}}, "handknitted": {"_count": 7, "sweater": {"_count": 3, "from": {"_count": 1}, "Mrs": {"_count": 1}, "": {"_count": 1}}, "jumper": {"_count": 1, "and": {"_count": 1}}, "mittens": {"_count": 1, "": {"_count": 1}}, "sweaters": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "Mrs": {"_count": 1}}}, "bout": {"_count": 4, "of": {"_count": 3, "rule": {"_count": 1}, "flu": {"_count": 2}}, "a": {"_count": 1, "year": {"_count": 1}}}, "frostcovered": {"_count": 1, "Christmas": {"_count": 1, "trees": {"_count": 1}}}, "streamers": {"_count": 5, "of": {"_count": 2, "holly": {"_count": 2}}, "which": {"_count": 1, "were": {"_count": 1}}, "magical": {"_count": 1, "snow": {"_count": 1}}, "erupt": {"_count": 1, "from": {"_count": 1}}}, "crisscrossing": {"_count": 4, "the": {"_count": 1, "ceiling": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "mass": {"_count": 1, "glittering": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}}, "carols": {"_count": 5, "Hagrid": {"_count": 1, "booming": {"_count": 1}}, "whenever": {"_count": 1, "anyone": {"_count": 1}}, "apparently": {"_count": 1, "delighted": {"_count": 1}}, "from": {"_count": 1, "inside": {"_count": 1}}, "had": {"_count": 1, "finished": {"_count": 1}}}, "eggnog": {"_count": 4, "he": {"_count": 1, "consumed": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "and": {"_count": 1, "everybody": {"_count": 1}}, "from": {"_count": 1, "Mr": {"_count": 1}}}, "consumed": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "Dumbledore": {"_count": 1, "stood": {"_count": 1}}, "with": {"_count": 3, "anger": {"_count": 1}, "curiosity": {"_count": 1}, "grief": {"_count": 1}}, "him": {"_count": 1, "so": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "Pinhead": {"_count": 1, "kept": {"_count": 1, "asking": {"_count": 1}}}, "snide": {"_count": 13, "remarks": {"_count": 3, "about": {"_count": 1}, "he": {"_count": 1}, "to": {"_count": 1}}, "comments": {"_count": 3, "about": {"_count": 2}, "for": {"_count": 1}}, "hints": {"_count": 1, "that": {"_count": 1}}, "allusions": {"_count": 1, "to": {"_count": 1}}, "giggles": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 3, "and": {"_count": 2}, "Phineas": {"_count": 1}}, "and": {"_count": 1, "taunting": {"_count": 1}}}, "comeuppance": {"_count": 2, "in": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "sacking": {"_count": 1}}}, "finalize": {"_count": 1, "their": {"_count": 1, "plans": {"_count": 1}}}, "plans": {"_count": 47, "for": {"_count": 13, "the": {"_count": 4}, "this": {"_count": 1}, "forcing": {"_count": 2}, "his": {"_count": 2}, "her": {"_count": 1}, "Ginny": {"_count": 1}, "a": {"_count": 1}, "seizing": {"_count": 1}}, "were": {"_count": 2, "but": {"_count": 1}, "made": {"_count": 1}}, "had": {"_count": 1, "grown": {"_count": 1}}, "said": {"_count": 2, "Sirius": {"_count": 1}, "the": {"_count": 1}}, "are": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "plans": {"_count": 1}}, "he": {"_count": 2, "can": {"_count": 2}}, "was": {"_count": 1, "unknown": {"_count": 1}}, "to": {"_count": 5, "take": {"_count": 1}, "you": {"_count": 1}, "move": {"_count": 1}, "tell": {"_count": 1}, "lay": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "arent": {"_count": 1, "always": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "involved": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "would": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}, "this": {"_count": 1, "seemed": {"_count": 1}}, "together": {"_count": 1, "became": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "into": {"_count": 1, "action": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}}, "matteroffactly": {"_count": 8, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "scratching": {"_count": 1, "a": {"_count": 1}}, "stepping": {"_count": 1, "onto": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "supermarket": {"_count": 2, "for": {"_count": 1, "laundry": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}}, "laundry": {"_count": 5, "detergent": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "basket": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "detergent": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "interrogating": {"_count": 4, "him": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "about": {"_count": 1}}, "us": {"_count": 1, "about": {"_count": 1}}, "Mudbloods": {"_count": 1, "all": {"_count": 1}}}, "stupefied": {"_count": 2, "faces": {"_count": 1, "": {"_count": 1}}, "brain": {"_count": 1, "seemed": {"_count": 1}}}, "Sleeping": {"_count": 3, "Draught": {"_count": 1, "": {"_count": 1}}, "Draft": {"_count": 1, "on": {"_count": 1}}, "Potion": {"_count": 1, "and": {"_count": 1}}}, "greedy": {"_count": 7, "they": {"_count": 1, "are": {"_count": 1}}, "and": {"_count": 1, "unworthy": {"_count": 1}}, "he": {"_count": 2, "pointed": {"_count": 1}, "could": {"_count": 1}}, "expression": {"_count": 1, "was": {"_count": 1}}, "breath": {"_count": 1, "at": {"_count": 1}}, "mouths": {"_count": 1, "": {"_count": 1}}}, "steely": {"_count": 8, "glint": {"_count": 1, "in": {"_count": 1}}, "gray": {"_count": 1, "and": {"_count": 1}}, "sinew": {"_count": 1, "call": {"_count": 1}}, "talons": {"_count": 1, "Malfoy": {"_count": 1}}, "note": {"_count": 1, "in": {"_count": 1}}, "smile": {"_count": 2, "and": {"_count": 1}, "still": {"_count": 1}}, "voice": {"_count": 1, "crashing": {"_count": 1}}}, "investigate": {"_count": 16, "Malfoy": {"_count": 1, "dont": {"_count": 1}}, "the": {"_count": 4, "contents": {"_count": 1}, "source": {"_count": 2}, "Slytherins": {"_count": 1}}, "more": {"_count": 1, "closely": {"_count": 1}}, "Peeves": {"_count": 1, "threw": {"_count": 1}}, "these": {"_count": 1, "claims": {"_count": 1}}, "Snape": {"_count": 1, "why": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "immediately": {"_count": 1, "": {"_count": 1}}, "anyone": {"_count": 1, "who": {"_count": 1}}, "a": {"_count": 1, "single": {"_count": 1}}, "Mum": {"_count": 1, "or": {"_count": 1}}}, "Whose": {"_count": 9, "hair": {"_count": 1, "are": {"_count": 1}}, "names": {"_count": 1, "are": {"_count": 1}}, "owl": {"_count": 1, "am": {"_count": 1}}, "voice": {"_count": 1, "had": {"_count": 1}}, "ancestry": {"_count": 1, "is": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "forest": {"_count": 1, "is": {"_count": 1}}, "memory": {"_count": 1, "is": {"_count": 1}}, "word": {"_count": 1, "": {"_count": 1}}}, "doomladen": {"_count": 1, "expression": {"_count": 1, "": {"_count": 1}}}, "lurked": {"_count": 9, "in": {"_count": 3, "the": {"_count": 3}}, "wherever": {"_count": 1, "there": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "banisters": {"_count": 10, "": {"_count": 4, ".": {"_count": 4}}, "of": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 1, "scroll": {"_count": 1}}, "glare": {"_count": 1, "like": {"_count": 1}}, "and": {"_count": 1, "struggled": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "ecstatically": {"_count": 2, "as": {"_count": 1, "Crabbe": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "greedily": {"_count": 4, "looks": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "small": {"_count": 1}}, "but": {"_count": 1, "became": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "keeled": {"_count": 10, "over": {"_count": 9, "backward": {"_count": 4}, "sideways": {"_count": 3}, "again": {"_count": 1}, "in": {"_count": 1}}, "right": {"_count": 1, "over": {"_count": 1}}}, "hardest": {"_count": 5, "part": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "job": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "Bellatrix": {"_count": 1}}}, "stowed": {"_count": 17, "among": {"_count": 1, "the": {"_count": 1}}, "Hedwig": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 3, "pipe": {"_count": 1}, "Invisibility": {"_count": 1}, "wand": {"_count": 1}}, "the": {"_count": 3, "three": {"_count": 1}, "Cloak": {"_count": 1}, "Horcrux": {"_count": 1}}, "Trevor": {"_count": 1, "carefully": {"_count": 1}}, "their": {"_count": 2, "wands": {"_count": 2}}, "Harrys": {"_count": 1, "wand": {"_count": 1}}, "it": {"_count": 3, "regretfully": {"_count": 1}, "under": {"_count": 1}, "inside": {"_count": 1}}, "away": {"_count": 1, "perhaps": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}}, "buckets": {"_count": 3, "and": {"_count": 2, "mops": {"_count": 2}}, "of": {"_count": 1, "icecold": {"_count": 1}}}, "mops": {"_count": 3, "Harry": {"_count": 1, "yanked": {"_count": 1}}, "then": {"_count": 1, "slammed": {"_count": 1}}, "the": {"_count": 1, "floors": {"_count": 1}}}, "bristles": {"_count": 2, "that": {"_count": 1, "covered": {"_count": 1}}, "low": {"_count": 1, "on": {"_count": 1}}}, "Goylesize": {"_count": 1, "feet": {"_count": 1, "": {"_count": 1}}}, "stirring": {"_count": 19, "the": {"_count": 2, "cauldron": {"_count": 1}, "contents": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "fretfully": {"_count": 1, "": {"_count": 1}}, "more": {"_count": 1, "persistently": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "up": {"_count": 1, "trouble": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "heard": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "was": {"_count": 1}}, "body": {"_count": 1, "of": {"_count": 1}}}, "shinyfaced": {"_count": 1, "and": {"_count": 1, "looking": {"_count": 1}}}, "gloop": {"_count": 2, "gloop": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "bubbling": {"_count": 7, "glutinous": {"_count": 1, "potion": {"_count": 1}}, "sluggishly": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "beneath": {"_count": 1}}, "guilt": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "Harry": {"_count": 1}}, "cauldrons": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "glutinous": {"_count": 3, "potion": {"_count": 1, "": {"_count": 1}}, "liquid": {"_count": 1, "splattered": {"_count": 1}}, "was": {"_count": 1, "spattered": {"_count": 1}}}, "tumblers": {"_count": 1, "stood": {"_count": 1, "ready": {"_count": 1}}}, "sack": {"_count": 31, "": {"_count": 8, ".": {"_count": 8}}, "full": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 8, "gold": {"_count": 3}, "purple": {"_count": 1}, "muck": {"_count": 1}, "potatoes": {"_count": 1}, "dragon": {"_count": 1}, "rubbish": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "bad": {"_count": 1, "Winky": {"_count": 1}}, "into": {"_count": 1, "Georges": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "by": {"_count": 1, "Sirius": {"_count": 1}}, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}, "and": {"_count": 2, "could": {"_count": 1}, "vice": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 2, "teacher": {"_count": 1}, "day": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "Hagrid": {"_count": 1, "now": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "sluggishly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "behind": {"_count": 1, "Slughorn": {"_count": 1}}}, "rereading": {"_count": 5, "the": {"_count": 1, "splotched": {"_count": 1}}, "Flying": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 1, "passage": {"_count": 1}}, "Achievement": {"_count": 1, "in": {"_count": 1}}, "Dumbledore": {"_count": 1, "s": {"_count": 1}}}, "splotched": {"_count": 1, "page": {"_count": 1, "of": {"_count": 1}}}, "separate": {"_count": 22, "it": {"_count": 1, "into": {"_count": 1}}, "stalls": {"_count": 1, "": {"_count": 1}}, "staircases": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "veela": {"_count": 1}, "three": {"_count": 1}}, "boxes": {"_count": 1, "now": {"_count": 1}}, "shots": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 3, "everyone": {"_count": 1}, "the": {"_count": 2}}, "pieces": {"_count": 1, "of": {"_count": 1}}, "Houses": {"_count": 1, "maintain": {"_count": 1}}, "Quidditch": {"_count": 1, "teams": {"_count": 1}}, "memories": {"_count": 1, "from": {"_count": 1}}, "detentions": {"_count": 1, "": {"_count": 1}}, "notorious": {"_count": 1, "": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "careers": {"_count": 1, "": {"_count": 1}}, "ways": {"_count": 1, "tonight": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "their": {"_count": 1, "innocent": {"_count": 1}}, "Stunning": {"_count": 1, "Spells": {"_count": 1}}}, "ladled": {"_count": 2, "large": {"_count": 1, "dollops": {"_count": 1}}, "out": {"_count": 1, "soup": {"_count": 1}}}, "dollops": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "Bulstrodes": {"_count": 3, "hair": {"_count": 1, "out": {"_count": 1}}, "no": {"_count": 1, "pixie": {"_count": 1}}, "ugly": {"_count": 1, "no": {"_count": 1}}}, "essence": {"_count": 11, "of": {"_count": 6, "Millicent": {"_count": 1}, "belladonna": {"_count": 1}, "murtlap": {"_count": 2}, "rue": {"_count": 1}, "dittany": {"_count": 1}}, "fell": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "divided": {"_count": 1, "": {"_count": 1}}, "sorts": {"_count": 1, "them": {"_count": 1}}}, "loathing": {"_count": 15, "": {"_count": 7, ".": {"_count": 7}}, "he": {"_count": 1, "always": {"_count": 1}}, "of": {"_count": 2, "Snape": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "with": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "Malfoy": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "uplit": {"_count": 1}}}, "khaki": {"_count": 1, "color": {"_count": 1, "of": {"_count": 1}}}, "booger": {"_count": 1, "Crabbes": {"_count": 1, "a": {"_count": 1}}}, "murky": {"_count": 6, "brown": {"_count": 2, "": {"_count": 2}}, "day": {"_count": 1, "": {"_count": 1}}, "marshes": {"_count": 1, "of": {"_count": 1}}, "past": {"_count": 1, "not": {"_count": 1}}, "backdrop": {"_count": 1, "": {"_count": 1}}}, "spill": {"_count": 11, "a": {"_count": 1, "drop": {"_count": 1}}, "the": {"_count": 2, "beans": {"_count": 2}}, "over": {"_count": 3, "at": {"_count": 1}, "his": {"_count": 1}, "onto": {"_count": 1}}, "from": {"_count": 1, "it": {"_count": 1}}, "They": {"_count": 1, "walked": {"_count": 1}}, "out": {"_count": 1, "at": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "magical": {"_count": 1, "blood": {"_count": 1}}}, "Pinching": {"_count": 1, "his": {"_count": 1, "nose": {"_count": 1}}}, "gulps": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 3, "air": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}}}, "overcooked": {"_count": 1, "cabbage": {"_count": 1, "": {"_count": 1}}}, "Immediately": {"_count": 4, "his": {"_count": 1, "insides": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "world": {"_count": 1}}, "a": {"_count": 1, "thick": {"_count": 1}}}, "writhing": {"_count": 19, "as": {"_count": 2, "though": {"_count": 1}, "Bellatrix": {"_count": 1}}, "and": {"_count": 4, "twisting": {"_count": 1}, "stamping": {"_count": 1}, "screaming": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "all": {"_count": 1}, "excitement": {"_count": 1}}, "imploringly": {"_count": 1, "in": {"_count": 1}}, "like": {"_count": 1, "snakes": {"_count": 1}}, "stamping": {"_count": 1, "houseelf": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "tree": {"_count": 1, "became": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "toes": {"_count": 19, "next": {"_count": 1, "bringing": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "before": {"_count": 1, "rising": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "hitting": {"_count": 1, "each": {"_count": 1}}, "to": {"_count": 1, "skim": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 2, "webbed": {"_count": 1}, "barely": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "Luna": {"_count": 1}}, "and": {"_count": 1, "pressed": {"_count": 1}}, "because": {"_count": 1, "Kreacher": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "melting": {"_count": 4, "feeling": {"_count": 1, "as": {"_count": 1}}, "his": {"_count": 1, "sixth": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "iced": {"_count": 1, "cake": {"_count": 1}}}, "thickened": {"_count": 4, "the": {"_count": 1, "nails": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "coiled": {"_count": 1}}}, "broadened": {"_count": 2, "the": {"_count": 1, "knuckles": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bolts": {"_count": 6, "his": {"_count": 1, "shoulders": {"_count": 1}}, "behind": {"_count": 1, "those": {"_count": 1}}, "at": {"_count": 2, "passersby": {"_count": 1}, "everyone": {"_count": 1}}, "and": {"_count": 1, "keyholes": {"_count": 1}}, "nearby": {"_count": 1, "a": {"_count": 1}}}, "prickling": {"_count": 22, "on": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "feeling": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "unpleasantly": {"_count": 1, "but": {"_count": 1}}, "scar": {"_count": 1, "which": {"_count": 1}}, "painfully": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "uncomfortably": {"_count": 1, "again": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 2}}, "a": {"_count": 1, "little": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "heard": {"_count": 1, "them": {"_count": 1}}}, "stonecold": {"_count": 1, "floor": {"_count": 1, "listening": {"_count": 1}}}, "laced": {"_count": 2, "up": {"_count": 1, "Goyles": {"_count": 1}}, "her": {"_count": 1, "fleshy": {"_count": 1}}}, "boatlike": {"_count": 1, "shoes": {"_count": 1, "": {"_count": 1}}}, "growth": {"_count": 3, "of": {"_count": 2, "wiry": {"_count": 1}, "shamrocks": {"_count": 1}}, "Sometimes": {"_count": 1, "I": {"_count": 1}}}, "wiry": {"_count": 3, "bristles": {"_count": 1, "low": {"_count": 1}}, "hair": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 1, "angry": {"_count": 1}}}, "clouding": {"_count": 3, "his": {"_count": 3, "eyes": {"_count": 2}, "thought": {"_count": 1}}}, "rasp": {"_count": 2, "of": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}}, "issued": {"_count": 22, "from": {"_count": 17, "his": {"_count": 6}, "many": {"_count": 1}, "Voldemorts": {"_count": 1}, "the": {"_count": 4}, "it": {"_count": 1}, "a": {"_count": 1}, "Dedaluss": {"_count": 1}, "her": {"_count": 1}, "Snapes": {"_count": 1}}, "suddenly": {"_count": 1, "from": {"_count": 1}}, "a": {"_count": 1, "blast": {"_count": 1}}, "at": {"_count": 1, "regular": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "an": {"_count": 1, "invitation": {"_count": 1}}}, "grunt": {"_count": 14, "of": {"_count": 4, "Crabbe": {"_count": 1}, "pain": {"_count": 2}, "pleasure": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "screwing": {"_count": 1}}, "awoke": {"_count": 1, "looked": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "snuffle": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "rolled": {"_count": 1, "it": {"_count": 1}}}, "deepset": {"_count": 1, "eyes": {"_count": 1, "": {"_count": 1}}}, "indistinguishable": {"_count": 4, "from": {"_count": 3, "Crabbe": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "plants": {"_count": 1, "": {"_count": 1}}}, "approaching": {"_count": 41, "the": {"_count": 11, "mirror": {"_count": 1}, "fireside": {"_count": 1}, "bathroom": {"_count": 1}, "mouth": {"_count": 1}, "magnificent": {"_count": 1}, "spiders": {"_count": 1}, "old": {"_count": 1}, "counter": {"_count": 1}, "little": {"_count": 1}, "dying": {"_count": 1}, "castle": {"_count": 1}}, "and": {"_count": 3, "Oliver": {"_count": 1}, "it": {"_count": 1}, "she": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "car": {"_count": 1, "": {"_count": 1}}, "six": {"_count": 1, "feet": {"_count": 1}}, "a": {"_count": 1, "traditional": {"_count": 1}}, "figure": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 1, "on": {"_count": 1}}, "he": {"_count": 1, "tried": {"_count": 1}}, "students": {"_count": 1, "jerking": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "him": {"_count": 3, "under": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}}, "exams": {"_count": 1, "and": {"_count": 1}}, "fast": {"_count": 1, "": {"_count": 1}}, "Slughorns": {"_count": 1, "office": {"_count": 1}}, "sixth": {"_count": 1, "years": {"_count": 1}}, "summer": {"_count": 1, "did": {"_count": 1}}, "then": {"_count": 1, "I": {"_count": 1}}, "union": {"_count": 1, "of": {"_count": 1}}, "them": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "eighteenth": {"_count": 1}}, "as": {"_count": 1, "close": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Eh": {"_count": 11, "": {"_count": 11, "?": {"_count": 11}}}, "pardon": {"_count": 14, "": {"_count": 9, "?": {"_count": 8}, ".": {"_count": 1}}, "miss": {"_count": 1, "said": {"_count": 1}}, "Molly": {"_count": 1, "said": {"_count": 1}}, "any": {"_count": 1, "day": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "labyrinthine": {"_count": 2, "passages": {"_count": 2, "were": {"_count": 1}, "sloping": {"_count": 1}}}, "watches": {"_count": 3, "to": {"_count": 1, "see": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "affronted": {"_count": 12, "": {"_count": 8, ".": {"_count": 8}}, "but": {"_count": 1, "couldnt": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "tones": {"_count": 1, "and": {"_count": 1}}}, "Wh": {"_count": 4, "oh": {"_count": 1, "yeah": {"_count": 1}}, "what": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Nothings": {"_count": 2, "about": {"_count": 1, "to": {"_count": 1}}, "happening": {"_count": 1, "to": {"_count": 1}}}, "strolling": {"_count": 10, "toward": {"_count": 1, "them": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "away": {"_count": 1, "around": {"_count": 1}}, "along": {"_count": 2, "at": {"_count": 1}, "brooding": {"_count": 1}}, "through": {"_count": 1, "Little": {"_count": 1}}, "over": {"_count": 1, "to": {"_count": 1}}, "down": {"_count": 1, "Tottenham": {"_count": 1}}, "together": {"_count": 1, "in": {"_count": 1}}}, "pigging": {"_count": 1, "out": {"_count": 1, "in": {"_count": 1}}}, "witheringly": {"_count": 2, "at": {"_count": 1, "Percy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "attitude": {"_count": 23, "": {"_count": 1, "!": {"_count": 1}}, "toward": {"_count": 3, "magic": {"_count": 1}, "him": {"_count": 1}, "Sirius": {"_count": 1}}, "had": {"_count": 1, "changed": {"_count": 1}}, "of": {"_count": 2, "stunned": {"_count": 1}, "creeping": {"_count": 1}}, "that": {"_count": 2, "looked": {"_count": 1}, "he": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "though": {"_count": 1, "not": {"_count": 1}}, "said": {"_count": 2, "Tonks": {"_count": 1}, "Nick": {"_count": 1}}, "behind": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 1, "want": {"_count": 1}}, "but": {"_count": 1, "this": {"_count": 1}}, "before": {"_count": 1, "Witches": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "would": {"_count": 1, "he": {"_count": 1}}, "proved": {"_count": 1, "that": {"_count": 1}}}, "motioned": {"_count": 5, "for": {"_count": 2, "Harry": {"_count": 2}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 2, "Ron": {"_count": 1}, "her": {"_count": 1}}}, "apologetic": {"_count": 4, "to": {"_count": 1, "Percy": {"_count": 1}}, "note": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "face": {"_count": 1, "to": {"_count": 1}}}, "Peter": {"_count": 53, "Weasley": {"_count": 1, "Percy": {"_count": 1}}, "Pettigrew": {"_count": 12, "another": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 6}, "had": {"_count": 1}, "faked": {"_count": 1}, "was": {"_count": 1}, "together": {"_count": 1}}, "Pettigrews": {"_count": 1, "dead": {"_count": 1}}, "got": {"_count": 2, "the": {"_count": 1}, "wind": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 5, "Lupin": {"_count": 4}, "Black": {"_count": 1}}, "needed": {"_count": 1, "all": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "Wormtail": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "found": {"_count": 1}}, "for": {"_count": 1, "what": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "had": {"_count": 1, "left": {"_count": 1}}, "tracked": {"_count": 1, "him": {"_count": 1}}, "betrayed": {"_count": 1, "your": {"_count": 1}}, "down": {"_count": 1, "THATS": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}, "mustve": {"_count": 1, "done": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "if": {"_count": 1, "youd": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 1}, "!": {"_count": 1}}, "Dont": {"_count": 1, "know": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "Ill": {"_count": 1, "never": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "growled": {"_count": 1, "Black": {"_count": 1}}, "nicknamed": {"_count": 1, "Wormtail": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "corrected": {"_count": 16, "him": {"_count": 9, "automatically": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 4}, "quietly": {"_count": 2}, "firmly": {"_count": 1}}, "her": {"_count": 2, "E": {"_count": 1}, "still": {"_count": 1}}, "this": {"_count": 1, "impression": {"_count": 1}}, "themselves": {"_count": 1, "on": {"_count": 1}}, "HalfBlood": {"_count": 1, "Princes": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "derisive": {"_count": 8, "laugh": {"_count": 2, "": {"_count": 2}}, "noise": {"_count": 1, "": {"_count": 1}}, "snort": {"_count": 1, "": {"_count": 1}}, "laughter": {"_count": 3, "Crabbe": {"_count": 1}, "still": {"_count": 1}, "trying": {"_count": 1}}, "caw": {"_count": 1, "": {"_count": 1}}}, "elaborately": {"_count": 2, "carved": {"_count": 1, "mantelpiece": {"_count": 1}}, "worked": {"_count": 1, "silver": {"_count": 1}}}, "silhouetted": {"_count": 8, "around": {"_count": 1, "it": {"_count": 1}}, "against": {"_count": 5, "the": {"_count": 4}, "them": {"_count": 1}}, "his": {"_count": 1, "quarry": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "highbacked": {"_count": 4, "chairs": {"_count": 1, "": {"_count": 1}}, "golden": {"_count": 1, "chair": {"_count": 1}}, "teachers": {"_count": 1, "chair": {"_count": 1}}, "chair": {"_count": 1, "behind": {"_count": 1}}}, "motioning": {"_count": 2, "them": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "toward": {"_count": 1}}}, "Wondering": {"_count": 7, "what": {"_count": 4, "Malfoy": {"_count": 1}, "he": {"_count": 1}, "had": {"_count": 1}, "on": {"_count": 1}}, "how": {"_count": 1, "she": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "vaguely": {"_count": 1, "how": {"_count": 1}}}, "clipping": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "quickly": {"_count": 1, "gave": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "clearly": {"_count": 1}}, "smoothed": {"_count": 1, "it": {"_count": 1}}}, "clipped": {"_count": 3, "out": {"_count": 1, "of": {"_count": 1}}, "tones": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}}, "MINISTRY": {"_count": 13, "OF": {"_count": 9, "MAGIC": {"_count": 9}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Sturgis": {"_count": 1, "Podmore": {"_count": 1}}, "SEEKS": {"_count": 1, "EDUCATIONAL": {"_count": 1}}, "FEARS": {"_count": 1, "BLACK": {"_count": 1}}}, "fined": {"_count": 2, "fifty": {"_count": 1, "Galleons": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "governor": {"_count": 2, "of": {"_count": 1, "Hogwarts": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "resignation": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "he": {"_count": 1}}, "Hagrid": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "Voldemort": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 2, "Charity": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "defiance": {"_count": 1}}}, "disrepute": {"_count": 1, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}}, "reporter": {"_count": 10, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "reappeared": {"_count": 1}}, "Rita": {"_count": 1, "replied": {"_count": 1}}, "last": {"_count": 1, "month": {"_count": 1}}, "witnessed": {"_count": 1, "Potter": {"_count": 1}}, "and": {"_count": 1, "Potters": {"_count": 1}}, "asked": {"_count": 1, "me": {"_count": 1}}}, "unfit": {"_count": 1, "to": {"_count": 1, "draw": {"_count": 1}}}, "scrapped": {"_count": 1, "immediately": {"_count": 1, "": {"_count": 1}}}, "unavailable": {"_count": 3, "for": {"_count": 3, "comment": {"_count": 3}}}, "comment": {"_count": 16, "although": {"_count": 1, "his": {"_count": 1}}, "about": {"_count": 1, "Hermiones": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "which": {"_count": 1, "meant": {"_count": 1}}, "yesterday": {"_count": 1, "but": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "in": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "but": {"_count": 1, "occasionally": {"_count": 1}}, "of": {"_count": 1, "no": {"_count": 1}}}, "reporters": {"_count": 3, "to": {"_count": 1, "clear": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bleakly": {"_count": 6, "": {"_count": 4, ".": {"_count": 4}}, "walking": {"_count": 1, "over": {"_count": 1}}, "whether": {"_count": 1, "the": {"_count": 1}}}, "loves": {"_count": 11, "Muggles": {"_count": 1, "so": {"_count": 1}}, "Muggle": {"_count": 1, "borns": {"_count": 1}}, "Crouch": {"_count": 1, "": {"_count": 1}}, "rules": {"_count": 1, "": {"_count": 1}}, "being": {"_count": 2, "famous": {"_count": 1}, "Minister": {"_count": 1}}, "playing": {"_count": 1, "with": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 1}, "dont": {"_count": 1}}, "Loony": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "he": {"_count": 1}}}, "scornfully": {"_count": 7, "": {"_count": 6, ".": {"_count": 6}}, "over": {"_count": 1, "her": {"_count": 1}}}, "purebloods": {"_count": 8, "the": {"_count": 1, "way": {"_count": 1}}, "in": {"_count": 2, "other": {"_count": 1}, "charge": {"_count": 1}}, "your": {"_count": 1, "choice": {"_count": 1}}, "wizards": {"_count": 1, "all": {"_count": 1}}, "is": {"_count": 1, "says": {"_count": 1}}, "who": {"_count": 1, "treat": {"_count": 1}}, "and": {"_count": 1, "halfbloods": {"_count": 1}}}, "contorted": {"_count": 17, "with": {"_count": 8, "fury": {"_count": 2}, "concentration": {"_count": 2}, "rage": {"_count": 4}}, "": {"_count": 2, ".": {"_count": 2}}, "into": {"_count": 1, "grotesque": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "body": {"_count": 1, "parts": {"_count": 1}}, "cried": {"_count": 1, "Cruci": {"_count": 1}}, "involuntarily": {"_count": 1, "as": {"_count": 1}}, "smeared": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "Stomachache": {"_count": 1, "Ron": {"_count": 1, "grunted": {"_count": 1}}}, "snickering": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Fathers": {"_count": 7, "always": {"_count": 2, "said": {"_count": 1}, "associated": {"_count": 1}}, "got": {"_count": 2, "some": {"_count": 1}, "a": {"_count": 1}}, "vote": {"_count": 1, "sir": {"_count": 1}}, "not": {"_count": 1, "very": {"_count": 1}}, "been": {"_count": 1, "friendly": {"_count": 1}}}, "imaginary": {"_count": 1, "camera": {"_count": 1, "and": {"_count": 1}}}, "accurate": {"_count": 9, "impression": {"_count": 2, "of": {"_count": 2}}, "title": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "view": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "rest": {"_count": 1}}, "summary": {"_count": 1, "yes": {"_count": 1}}, "term": {"_count": 1, "positively": {"_count": 1}}}, "\u2018Potter": {"_count": 4, "can": {"_count": 1, "I": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "Accuses": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "lick": {"_count": 7, "your": {"_count": 1, "shoes": {"_count": 1}}, "his": {"_count": 3, "ears": {"_count": 1}, "insides": {"_count": 1}, "lips": {"_count": 1}}, "their": {"_count": 2, "faces": {"_count": 1}, "ears": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}}, "Far": {"_count": 5, "too": {"_count": 1, "late": {"_count": 1}}, "from": {"_count": 1, "wishing": {"_count": 1}}, "far": {"_count": 1, "above": {"_count": 1}}, "Will": {"_count": 1, "Fudge": {"_count": 1}}, "below": {"_count": 1, "swathed": {"_count": 1}}}, "uptake": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "modifying": {"_count": 1, "Miss": {"_count": 1}}}, "Saint": {"_count": 1, "Potter": {"_count": 1, "the": {"_count": 1}}}, "jumpedup": {"_count": 2, "Granger": {"_count": 1, "Mudblood": {"_count": 1}}, "little": {"_count": 1, "but": {"_count": 1}}}, "petulantly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "clueless": {"_count": 1, "than": {"_count": 1, "usual": {"_count": 1}}}, "thems": {"_count": 3, "killed": {"_count": 1, "this": {"_count": 1}}, "caved": {"_count": 1, "in": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}}, "relish": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "then": {"_count": 1, "placed": {"_count": 1}}, "now": {"_count": 1, "sitting": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "the": {"_count": 1, "possibility": {"_count": 1}}}, "giveaway": {"_count": 5, "if": {"_count": 1, "Ron": {"_count": 1}}, "in": {"_count": 2, "case": {"_count": 1}, "these": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Azkaban": {"_count": 177, "": {"_count": 60, ".": {"_count": 40}, "?": {"_count": 13}, "!": {"_count": 7}}, "the": {"_count": 4, "wizard": {"_count": 1}, "night": {"_count": 1}, "spy": {"_count": 1}, "terrifying": {"_count": 1}}, "guards": {"_count": 9, "like": {"_count": 1}, "eh": {"_count": 1}, "give": {"_count": 1}, "have": {"_count": 2}, "wholl": {"_count": 1}, "stationing": {"_count": 1}, "said": {"_count": 1}, "everyone": {"_count": 1}}, "and": {"_count": 9, "he": {"_count": 1}, "thats": {"_count": 2}, "and": {"_count": 1}, "how": {"_count": 1}, "joined": {"_count": 1}, "the": {"_count": 1}, "are": {"_count": 1}, "why": {"_count": 1}}, "we": {"_count": 2, "need": {"_count": 1}, "will": {"_count": 1}}, "fortress": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 3, "will": {"_count": 1}, "can": {"_count": 1}, "said": {"_count": 1}}, "before": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "just": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "was": {"_count": 1, "perfectly": {"_count": 1}}, "to": {"_count": 3, "brood": {"_count": 1}, "present": {"_count": 1}, "await": {"_count": 1}}, "said": {"_count": 5, "Ron": {"_count": 2}, "Aunt": {"_count": 1}, "Sirius": {"_count": 1}, "Malfoy": {"_count": 1}}, "who": {"_count": 2, "are": {"_count": 1}, "have": {"_count": 1}}, "one": {"_count": 1, "time": {"_count": 1}}, "must": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "twelve": {"_count": 1, "years": {"_count": 1}}, "like": {"_count": 1, "normal": {"_count": 1}}, "He": {"_count": 1, "fell": {"_count": 1}}, "tonight": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "Peter": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "Harry": {"_count": 1, "repeated": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 2, "YouKnowWho": {"_count": 1}, "I": {"_count": 1}}, "are": {"_count": 1, "full": {"_count": 1}}, "because": {"_count": 2, "of": {"_count": 2}}, "had": {"_count": 5, "given": {"_count": 1}, "taken": {"_count": 1}, "hollowed": {"_count": 1}, "greatly": {"_count": 1}, "committed": {"_count": 1}}, "with": {"_count": 2, "me": {"_count": 1}, "your": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "January": {"_count": 1}}, "without": {"_count": 2, "a": {"_count": 2}}, "myself": {"_count": 1, "when": {"_count": 1}}, "while": {"_count": 1, "we": {"_count": 1}}, "lasting": {"_count": 1, "no": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "is": {"_count": 2, "broken": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 6, "him": {"_count": 2}, "trespass": {"_count": 2}, "using": {"_count": 1}, "it": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "escaped": {"_count": 1, "attempted": {"_count": 1}}, "let": {"_count": 1, "alone": {"_count": 1}}, "hasnt": {"_count": 1, "it": {"_count": 1}}, "ordering": {"_count": 1, "Kreacher": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "breakout": {"_count": 3, "BY": {"_count": 1}, "has": {"_count": 1}, "had": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "Fudge": {"_count": 1, "had": {"_count": 1}}, "half": {"_count": 1, "her": {"_count": 1}}, "once": {"_count": 1, "she": {"_count": 1}}, "expecting": {"_count": 1, "to": {"_count": 1}}, "either": {"_count": 2, "said": {"_count": 1}, "way": {"_count": 1}}, "lamenting": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "11": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "youre": {"_count": 1, "too": {"_count": 1}}, "were": {"_count": 1, "being": {"_count": 1}}}, "prison": {"_count": 18, "Goyle": {"_count": 1, "said": {"_count": 1}}, "though": {"_count": 1, "everyone": {"_count": 1}}, "and": {"_count": 4, "hes": {"_count": 1}, "in": {"_count": 1}, "joined": {"_count": 1}, "upstairs": {"_count": 1}}, "Azkaban": {"_count": 3, "escaped": {"_count": 1}, "said": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "the": {"_count": 1, "Prime": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "alongside": {"_count": 1, "the": {"_count": 1}}, "Grindelwald": {"_count": 1, "had": {"_count": 1}}, "room": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}}, "slower": {"_count": 10, "youd": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 2, "slower": {"_count": 1}, "louder": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "safer": {"_count": 1}}, "way": {"_count": 1, "out": {"_count": 1}}, "than": {"_count": 2, "they": {"_count": 1}, "I": {"_count": 1}}, "reflexes": {"_count": 1, "Amycus": {"_count": 1}}, "voice": {"_count": 1, "than": {"_count": 1}}}, "restlessly": {"_count": 9, "in": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "only": {"_count": 1, "when": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "ridding": {"_count": 1, "of": {"_count": 1, "all": {"_count": 1}}}, "filth": {"_count": 13, "but": {"_count": 1, "not": {"_count": 1}}, "on": {"_count": 1, "my": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "centuries": {"_count": 1}}, "said": {"_count": 1, "Morfin": {"_count": 1}}, "stains": {"_count": 1, "of": {"_count": 1}}, "dishonoring": {"_count": 1, "my": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "shouted": {"_count": 1, "the": {"_count": 1}}}, "Luckily": {"_count": 4, "they": {"_count": 1, "didnt": {"_count": 1}}, "Fang": {"_count": 1, "was": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}}, "luckily": {"_count": 6, "weve": {"_count": 1, "got": {"_count": 1}}, "I": {"_count": 1, "found": {"_count": 1}}, "Dumbledore": {"_count": 1, "took": {"_count": 1}}, "Id": {"_count": 1, "stationed": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "Magical": {"_count": 1}}}, "drawingroom": {"_count": 2, "floor": {"_count": 1, "Ho": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}}, "Ho": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "ho": {"_count": 1, "said": {"_count": 1}}}, "lengthening": {"_count": 4, "their": {"_count": 1, "hour": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "tops": {"_count": 1}}, "her": {"_count": 1, "stride": {"_count": 1}}}, "Medicine": {"_count": 1, "for": {"_count": 1, "my": {"_count": 1}}}, "ado": {"_count": 6, "they": {"_count": 1, "sprinted": {"_count": 1}}, "allow": {"_count": 1, "me": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 1, "slid": {"_count": 1}}, "pulled": {"_count": 1, "open": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hurled": {"_count": 9, "themselves": {"_count": 1, "at": {"_count": 1}}, "himself": {"_count": 1, "back": {"_count": 1}}, "herself": {"_count": 1, "onto": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 2, "mirror": {"_count": 1}, "words": {"_count": 1}}, "headfirst": {"_count": 1, "out": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "daggers": {"_count": 1, "that": {"_count": 1}}}, "hoist": {"_count": 6, "up": {"_count": 2, "his": {"_count": 2}}, "Ginny": {"_count": 1, "half": {"_count": 1}}, "Dudley": {"_count": 1, "to": {"_count": 1}}, "Hermiones": {"_count": 1, "limp": {"_count": 1}}, "it": {"_count": 1, "back": {"_count": 1}}}, "Leaving": {"_count": 11, "their": {"_count": 1, "shoes": {"_count": 1}}, "Feast": {"_count": 4, "which": {"_count": 1}, "": {"_count": 1}, "became": {"_count": 1}, "had": {"_count": 1}}, "the": {"_count": 1, "doors": {"_count": 1}}, "Sloper": {"_count": 1, "in": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "an": {"_count": 1}}, "his": {"_count": 1, "enemy": {"_count": 1}}, "this": {"_count": 1, "place": {"_count": 1}}}, "Ooooooh": {"_count": 2, "wait": {"_count": 1, "till": {"_count": 1}}, "of": {"_count": 1, "disappointment": {"_count": 1}}}, "Millicents": {"_count": 1, "nose": {"_count": 1, "or": {"_count": 1}}}, "ccat": {"_count": 1, "hair": {"_count": 1, "": {"_count": 1}}}, "MMillicent": {"_count": 1, "Bulstrode": {"_count": 1, "mmust": {"_count": 1}}}, "mmust": {"_count": 2, "have": {"_count": 2, "a": {"_count": 1}, "b": {"_count": 1}}}, "ppotion": {"_count": 1, "isnt": {"_count": 1, "supposed": {"_count": 1}}}, "transformations": {"_count": 6, "": {"_count": 1, "!": {"_count": 1}}, "that": {"_count": 1, "when": {"_count": 1}}, "not": {"_count": 2, "got": {"_count": 1}, "only": {"_count": 1}}, "in": {"_count": 1, "those": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}}, "teased": {"_count": 2, "something": {"_count": 1, "dreadful": {"_count": 1}}, "so": {"_count": 1, "high": {"_count": 1}}}, "V": {"_count": 2, "THE": {"_count": 1, "VERY": {"_count": 1}}, "NO": {"_count": 1, "": {"_count": 1}}}, "VERY": {"_count": 4, "SECRET": {"_count": 1, "DIARY": {"_count": 1}}, "HARRY": {"_count": 1, "CHRISTMAS": {"_count": 1}}, "BAD": {"_count": 1, "BOY": {"_count": 1}}, "FROSTY": {"_count": 1, "CHRISTMAS": {"_count": 1}}}, "SECRET": {"_count": 4, "DIARY": {"_count": 1, "Hermione": {"_count": 1}}, "Shocking": {"_count": 1, "business": {"_count": 1}}, "RIDDLE": {"_count": 1, "Katie": {"_count": 1}}, "Harry": {"_count": 1, "stop": {"_count": 1}}}, "DIARY": {"_count": 1, "Hermione": {"_count": 1, "remained": {"_count": 1}}}, "disappearance": {"_count": 11, "when": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "one": {"_count": 1}}, "will": {"_count": 1, "not": {"_count": 1}}, "being": {"_count": 1, "linked": {"_count": 1}}, "one": {"_count": 1, "which": {"_count": 1}}, "quiet": {"_count": 1, "but": {"_count": 1}}, "perhaps": {"_count": 1, "or": {"_count": 1}}, "fifteen": {"_count": 1, "years": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "sprouted": {"_count": 11, "whiskers": {"_count": 1, "Id": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "identical": {"_count": 1, "long": {"_count": 1}}, "flippers": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 1, "tentacles": {"_count": 1}}, "a": {"_count": 2, "great": {"_count": 1}, "pretty": {"_count": 1}}, "from": {"_count": 1, "each": {"_count": 1}}, "right": {"_count": 1, "out": {"_count": 1}}, "antlers": {"_count": 1, "": {"_count": 1}}, "tentaclelike": {"_count": 1, "warts": {"_count": 1}}}, "greatly": {"_count": 17, "improved": {"_count": 1, "by": {"_count": 1}}, "annoyed": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "interested": {"_count": 1, "": {"_count": 1}}, "resembled": {"_count": 2, "his": {"_count": 1}, "him": {"_count": 1}}, "enhanced": {"_count": 1, "her": {"_count": 1}}, "amused": {"_count": 1, "Ron": {"_count": 1}}, "was": {"_count": 1, "already": {"_count": 1}}, "miss": {"_count": 1, "Hogwarts": {"_count": 1}}, "increased": {"_count": 1, "security": {"_count": 1}}, "weakened": {"_count": 2, "Marvolo": {"_count": 1}, "by": {"_count": 1}}, "appeal": {"_count": 1, "to": {"_count": 1}}, "dilutes": {"_count": 1, "the": {"_count": 1}}, "depleted": {"_count": 1, "": {"_count": 1}}, "increase": {"_count": 1, "your": {"_count": 1}}}, "leads": {"_count": 13, "": {"_count": 1, "?": {"_count": 1}}, "right": {"_count": 1, "into": {"_count": 1}}, "by": {"_count": 2, "eighty": {"_count": 2}}, "to": {"_count": 4, "it": {"_count": 1}, "immortality": {"_count": 2}, "the": {"_count": 1}}, "on": {"_count": 1, "Bertha": {"_count": 1}}, "me": {"_count": 2, "to": {"_count": 1}, "straight": {"_count": 1}}, "us": {"_count": 1, "neatly": {"_count": 1}}, "they": {"_count": 1, "traveled": {"_count": 1}}}, "recovery": {"_count": 9, "from": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "then": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "time": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "however": {"_count": 1, "I": {"_count": 1}}, "of": {"_count": 1, "Gryffindors": {"_count": 1}}}, "spared": {"_count": 8, "answering": {"_count": 1, "by": {"_count": 1}}, "the": {"_count": 3, "struggle": {"_count": 1}, "trouble": {"_count": 1}, "curiosity": {"_count": 1}}, "him": {"_count": 1, "one": {"_count": 1}}, "Malfoy": {"_count": 1, "much": {"_count": 1}}, "for": {"_count": 1, "recordkeeping": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dose": {"_count": 5, "of": {"_count": 5, "medicine": {"_count": 2}, "Polyjuice": {"_count": 2}, "pain": {"_count": 1}}}, "medicine": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "havent": {"_count": 1, "you": {"_count": 1}}}, "smarmiest": {"_count": 1, "bloke": {"_count": 1, "youve": {"_count": 1}}}, "infirmary": {"_count": 4, "and": {"_count": 1, "started": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}}, "tails": {"_count": 11, "you": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 3, "horses": {"_count": 1}, "brilliant": {"_count": 1}, "his": {"_count": 1}}, "accompanied": {"_count": 1, "by": {"_count": 1}}, "beating": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "catch": {"_count": 1}}, "that": {"_count": 1, "supported": {"_count": 1}}, "lashed": {"_count": 1, "and": {"_count": 1}}}, "HairRaising": {"_count": 1, "Potion": {"_count": 1, "when": {"_count": 1}}}, "outburst": {"_count": 5, "from": {"_count": 2, "the": {"_count": 1}, "Fleur": {"_count": 1}}, "years": {"_count": 1, "ago": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "for": {"_count": 1}}}, "hysterical": {"_count": 9, "": {"_count": 3, ".": {"_count": 3}}, "laughter": {"_count": 1, "and": {"_count": 1}}, "fighting": {"_count": 1, "tooth": {"_count": 1}}, "talks": {"_count": 1, "with": {"_count": 1}}, "sobs": {"_count": 1, "during": {"_count": 1}}, "sarcasm": {"_count": 1, "": {"_count": 1}}, "letters": {"_count": 1, "claiming": {"_count": 1}}}, "Mopping": {"_count": 1, "all": {"_count": 1, "night": {"_count": 1}}}, "receded": {"_count": 2, "along": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "outofsight": {"_count": 4, "corridor": {"_count": 1, "and": {"_count": 1}}, "kissing": {"_count": 1, "gate": {"_count": 1}}, "Snatcher": {"_count": 1, "": {"_count": 1}}, "walls": {"_count": 1, "and": {"_count": 1}}}, "manning": {"_count": 1, "his": {"_count": 1, "usual": {"_count": 1}}}, "lookout": {"_count": 19, "post": {"_count": 1, "They": {"_count": 1}}, "for": {"_count": 8, "him": {"_count": 1}, "Ron": {"_count": 1}, "anybody": {"_count": 1}, "the": {"_count": 3}, "me": {"_count": 1}, "intruders": {"_count": 1}}, "Okay": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 2}, ".": {"_count": 2}}, "both": {"_count": 1, "were": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "and": {"_count": 1, "And": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}}, "flood": {"_count": 9, "of": {"_count": 4, "water": {"_count": 1}, "explanations": {"_count": 1}, "students": {"_count": 1}, "his": {"_count": 1}}, "from": {"_count": 2, "Moaning": {"_count": 1}, "your": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "his": {"_count": 1, "brain": {"_count": 1}}, "the": {"_count": 1, "bottom": {"_count": 1}}}, "glugged": {"_count": 1, "Myrtle": {"_count": 1, "miserably": {"_count": 1}}}, "waded": {"_count": 3, "across": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "deeper": {"_count": 1, "and": {"_count": 1}}}, "sopping": {"_count": 8, "floor": {"_count": 1, "": {"_count": 1}}, "wet": {"_count": 5, "wiping": {"_count": 1}, "and": {"_count": 3}, "but": {"_count": 1}}, "hair": {"_count": 2, "off": {"_count": 1}, "plastered": {"_count": 1}}}, "minding": {"_count": 1, "my": {"_count": 1, "own": {"_count": 1}}}, "throws": {"_count": 6, "something": {"_count": 1, "at": {"_count": 1}}, "one": {"_count": 1, "out": {"_count": 1}}, "to": {"_count": 2, "Johnson": {"_count": 1}, "Warrington": {"_count": 1}}, "out": {"_count": 1, "Trelawney": {"_count": 1}}, "back": {"_count": 1, "her": {"_count": 1}}}, "cra2y": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Dangerous": {"_count": 14, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "Creatures": {"_count": 10, "": {"_count": 5}, "said": {"_count": 1}, "had": {"_count": 1}, "required": {"_count": 1}, "because": {"_count": 1}, "that": {"_count": 1}}, "Dark": {"_count": 1, "Wizards": {"_count": 1}}}, "Ministrys": {"_count": 27, "confiscated": {"_count": 1, "Dads": {"_count": 1}}, "got": {"_count": 2, "to": {"_count": 2}}, "providing": {"_count": 1, "a": {"_count": 1}}, "been": {"_count": 1, "working": {"_count": 1}}, "not": {"_count": 1, "too": {"_count": 1}}, "attitude": {"_count": 1, "said": {"_count": 1}}, "leaning": {"_count": 1, "heavily": {"_count": 1}}, "put": {"_count": 1, "a": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "interfering": {"_count": 1, "at": {"_count": 1}}, "really": {"_count": 1, "determined": {"_count": 1}}, "new": {"_count": 2, "moves": {"_count": 1}, "poster": {"_count": 1}}, "forced": {"_count": 1, "through": {"_count": 1}}, "worst": {"_count": 1, "fear": {"_count": 1}}, "keepin": {"_count": 1, "an": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "employ": {"_count": 1, "": {"_count": 1}}, "littered": {"_count": 1, "with": {"_count": 1}}, "here": {"_count": 1, "isnt": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "doing": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "bin": {"_count": 1, "informed": {"_count": 1}}, "being": {"_count": 1, "very": {"_count": 1}}, "face": {"_count": 1, "he": {"_count": 1}}}, "Sonnets": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "Sorcerer": {"_count": 1, "spoke": {"_count": 1, "in": {"_count": 1}}}, "limericks": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "Bath": {"_count": 2, "had": {"_count": 1, "a": {"_count": 1}}, "buns": {"_count": 1, "but": {"_count": 1}}}, "onehanded": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "grip": {"_count": 1, "on": {"_count": 1}}}, "nondescript": {"_count": 2, "and": {"_count": 1, "soggy": {"_count": 1}}, "wall": {"_count": 1, "in": {"_count": 1}}}, "Riddle": {"_count": 233, "in": {"_count": 3, "smudged": {"_count": 1}, "the": {"_count": 2}}, "got": {"_count": 4, "an": {"_count": 3}, "his": {"_count": 1}}, "just": {"_count": 1, "got": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 12, "a": {"_count": 1}, "doing": {"_count": 2}, "going": {"_count": 1}, "still": {"_count": 2}, "pointing": {"_count": 1}, "writhing": {"_count": 1}, "riding": {"_count": 1}, "perfectly": {"_count": 1}, "already": {"_count": 1}, "obsessed": {"_count": 1}}, "so": {"_count": 2, "next": {"_count": 1}, "that": {"_count": 1}}, "": {"_count": 40, ".": {"_count": 37}, "?": {"_count": 3}}, "mean": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 10, "known": {"_count": 1}, "turned": {"_count": 1}, "caught": {"_count": 1}, "been": {"_count": 2}, "the": {"_count": 1}, "abandoned": {"_count": 1}, "frozen": {"_count": 1}, "contrived": {"_count": 1}, "ever": {"_count": 1}}, "said": {"_count": 4, "the": {"_count": 1}, "Dumbledore": {"_count": 1}, "Im": {"_count": 1}, "I": {"_count": 1}}, "at": {"_count": 5, "once": {"_count": 2}, "the": {"_count": 2}, "Hogwarts": {"_count": 1}}, "reddening": {"_count": 1, "slightly": {"_count": 1}}, "and": {"_count": 6, "Harrys": {"_count": 1}, "the": {"_count": 1}, "arrangements": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}}, "do": {"_count": 3, "you": {"_count": 3}}, "quickly": {"_count": 3, "": {"_count": 3}}, "slid": {"_count": 1, "off": {"_count": 1}}, "stopped": {"_count": 3, "and": {"_count": 1}, "suddenly": {"_count": 1}, "glaring": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "exactly": {"_count": 2, "the": {"_count": 1}, "how": {"_count": 1}}, "good": {"_count": 1, "night": {"_count": 1}}, "watched": {"_count": 1, "him": {"_count": 1}}, "led": {"_count": 1, "him": {"_count": 1}}, "pushed": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "hidden": {"_count": 1}}, "quiet": {"_count": 1, "as": {"_count": 1}}, "suddenly": {"_count": 1, "jumped": {"_count": 1}}, "sharply": {"_count": 2, "": {"_count": 2}}, "stepped": {"_count": 1, "closer": {"_count": 1}}, "moving": {"_count": 1, "yet": {"_count": 1}}, "drawing": {"_count": 1, "out": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "scrambled": {"_count": 1, "to": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "does": {"_count": 1, "sound": {"_count": 1}}, "nodded": {"_count": 2, "not": {"_count": 1}, "": {"_count": 1}}, "quietly": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "staring": {"_count": 1}}, "didnt": {"_count": 1, "move": {"_count": 1}}, "calmly": {"_count": 2, "": {"_count": 2}}, "still": {"_count": 2, "smiling": {"_count": 2}}, "pleasantly": {"_count": 1, "": {"_count": 1}}, "laughed": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "softly": {"_count": 2, "": {"_count": 1}, "is": {"_count": 1}}, "poor": {"_count": 1, "but": {"_count": 1}}, "carelessly": {"_count": 1, "": {"_count": 1}}, "smiling": {"_count": 1, "pleasantly": {"_count": 1}}, "wishing": {"_count": 1, "rather": {"_count": 1}}, "opened": {"_count": 2, "his": {"_count": 2}}, "whirled": {"_count": 1, "around": {"_count": 1}}, "staring": {"_count": 1, "shrewdly": {"_count": 1}}, "now": {"_count": 1, "eyeing": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "stop": {"_count": 1}, "raise": {"_count": 1}}, "stood": {"_count": 1, "there": {"_count": 1}}, "better": {"_count": 1, "sooner": {"_count": 1}}, "stop": {"_count": 1, "between": {"_count": 1}}, "screaming": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 2, "still": {"_count": 1}, "and": {"_count": 1}}, "wrote": {"_count": 1, "it": {"_count": 1}}, "has": {"_count": 1, "vanished": {"_count": 1}}, "House": {"_count": 11, "even": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 3}, "and": {"_count": 2}, "these": {"_count": 1}, "bore": {"_count": 1}, "Borgin": {"_count": 1}}, "family": {"_count": 1, "had": {"_count": 1}}, "senior": {"_count": 2, "the": {"_count": 1}, "on": {"_count": 1}}, "forget": {"_count": 1, "his": {"_count": 1}}, "reappeared": {"_count": 1, "at": {"_count": 1}}, "pretending": {"_count": 1, "that": {"_count": 1}}, "left": {"_count": 1, "her": {"_count": 1}}, "chose": {"_count": 1, "death": {"_count": 1}}, "ever": {"_count": 1, "came": {"_count": 1}}, "intently": {"_count": 1, "": {"_count": 1}}, "lifted": {"_count": 1, "his": {"_count": 1}}, "there": {"_count": 1, "would": {"_count": 1}}, "jumped": {"_count": 1, "to": {"_count": 1}}, "rounded": {"_count": 1, "on": {"_count": 1}}, "stared": {"_count": 1, "from": {"_count": 1}}, "looked": {"_count": 1, "frightened": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "took": {"_count": 2, "down": {"_count": 1}, "off": {"_count": 1}}, "threw": {"_count": 1, "Dumbledore": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 4, "had": {"_count": 1}, "came": {"_count": 2}, "confided": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 2, "once": {"_count": 1}, "fiddling": {"_count": 1}}, "the": {"_count": 1, "envelope": {"_count": 1}}, "gave": {"_count": 1, "an": {"_count": 1}}, "too": {"_count": 1, "theyve": {"_count": 1}}, "more": {"_count": 1, "to": {"_count": 1}}, "liked": {"_count": 1, "to": {"_count": 1}}, "whom": {"_count": 1, "we": {"_count": 1}}, "a": {"_count": 1, "quiet": {"_count": 1}}, "learned": {"_count": 1, "that": {"_count": 1}}, "undoubtedly": {"_count": 1, "felt": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "spoke": {"_count": 1, "in": {"_count": 1}}, "frowned": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "Senior": {"_count": 1, "and": {"_count": 1}}, "house": {"_count": 1, "a": {"_count": 1}}, "line": {"_count": 1, "and": {"_count": 1}}, "though": {"_count": 2, "ruining": {"_count": 1}, "winking": {"_count": 1}}, "smiled": {"_count": 2, "the": {"_count": 2}}, "it": {"_count": 1, "has": {"_count": 1}}, "prefect": {"_count": 1, "Head": {"_count": 1}}, "our": {"_count": 1, "finest": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "asked": {"_count": 1, "Sir": {"_count": 1}}, "merely": {"_count": 1, "smiled": {"_count": 1}}, "wanted": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "really": {"_count": 1, "wanted": {"_count": 1}}, "once": {"_count": 1, "terrorized": {"_count": 1}}, "climbed": {"_count": 1, "down": {"_count": 1}}, "already": {"_count": 1, "knew": {"_count": 1}}, "would": {"_count": 1, "certainly": {"_count": 1}}, "wormed": {"_count": 1, "things": {"_count": 1}}, "discovered": {"_count": 1, "inside": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}}, "services": {"_count": 6, "to": {"_count": 3, "the": {"_count": 2}, "Hogwarts": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 2, "require": {"_count": 1}, "owe": {"_count": 1}}}, "shield": {"_count": 24, "about": {"_count": 1, "fifty": {"_count": 1}}, "was": {"_count": 1, "tucked": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 1}, "head": {"_count": 1}}, "between": {"_count": 1, "you": {"_count": 1}}, "He": {"_count": 1, "wrenched": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "though": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 2, "all": {"_count": 1}, "colors": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}, "them": {"_count": 2, "with": {"_count": 1}, "from": {"_count": 1}}, "themselves": {"_count": 1, "from": {"_count": 1}}, "expanded": {"_count": 1, "between": {"_count": 1}}, "erupted": {"_count": 1, "between": {"_count": 1}}, "the": {"_count": 1, "Killing": {"_count": 1}}, "others": {"_count": 1, "as": {"_count": 1}}, "today": {"_count": 1, "Potter": {"_count": 1}}}, "resentfully": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 1, "Crabbe": {"_count": 1}}, "after": {"_count": 1, "Hermione": {"_count": 1}}, "Goodbye": {"_count": 1, "then": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "Voldemort": {"_count": 1}}}, "burped": {"_count": 2, "slugs": {"_count": 1, "all": {"_count": 1}}, "richly": {"_count": 1, "and": {"_count": 1}}}, "peeled": {"_count": 3, "the": {"_count": 1, "wet": {"_count": 1}}, "said": {"_count": 1, "Moody": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}}, "Mabels": {"_count": 1, "birthday": {"_count": 1, "or": {"_count": 1}}}, "dentist": {"_count": 1, "halfpast": {"_count": 1, "three": {"_count": 1}}}, "halfpast": {"_count": 7, "three": {"_count": 1, "": {"_count": 1}}, "five": {"_count": 1, "the": {"_count": 1}}, "two": {"_count": 2, "by": {"_count": 1}, "on": {"_count": 1}}, "eleven": {"_count": 1, "Hermione": {"_count": 1}}, "seven": {"_count": 1, "Harry": {"_count": 1}}, "nine": {"_count": 1, "they": {"_count": 1}}}, "flush": {"_count": 13, "it": {"_count": 2, "away": {"_count": 1}, "down": {"_count": 1}}, "rising": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 1, "instead": {"_count": 1}}, "creeping": {"_count": 1, "up": {"_count": 1}}, "ebbing": {"_count": 1, "away": {"_count": 1}}, "was": {"_count": 1, "creeping": {"_count": 1}}, "suffused": {"_count": 1, "Snape": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 2, "excitement": {"_count": 1}, "color": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "ourselves": {"_count": 1, "in": {"_count": 1}}}, "printed": {"_count": 6, "name": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "": {"_count": 1}}, "spoof": {"_count": 1, "items": {"_count": 1}}, "in": {"_count": 1, "large": {"_count": 1}}, "portions": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "variety": {"_count": 11, "store": {"_count": 1, "on": {"_count": 1}}, "of": {"_count": 10, "dishes": {"_count": 1}, "magical": {"_count": 1}, "Dark": {"_count": 1}, "the": {"_count": 1}, "sinister": {"_count": 1}, "Dobby": {"_count": 1}, "other": {"_count": 1}, "students": {"_count": 1}, "unsuccessful": {"_count": 1}, "odd": {"_count": 1}}}, "store": {"_count": 26, "on": {"_count": 1, "Vauxhall": {"_count": 1}}, "of": {"_count": 3, "potions": {"_count": 1}, "Wizarding": {"_count": 1}, "Polyjuice": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 6, "him": {"_count": 3}, "them": {"_count": 1}, "the": {"_count": 1}, "those": {"_count": 1}}, "by": {"_count": 5, "rules": {"_count": 1}, "punctuality": {"_count": 1}, "the": {"_count": 2}, "Ollivander": {"_count": 1}}, "cupboard": {"_count": 5, "": {"_count": 1}, "the": {"_count": 1}, "today": {"_count": 1}, "to": {"_count": 1}, "and": {"_count": 1}}, "called": {"_count": 1, "Purge": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "was": {"_count": 1, "set": {"_count": 1}}, "it": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "treasures": {"_count": 1}}}, "Vauxhall": {"_count": 2, "Road": {"_count": 2, "London": {"_count": 1}, "": {"_count": 1}}}, "Road": {"_count": 15, "London": {"_count": 1, "": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 5}, "?": {"_count": 1}, "!": {"_count": 1}}, "and": {"_count": 2, "headed": {"_count": 1}, "stopped": {"_count": 1}}, "like": {"_count": 1, "Privet": {"_count": 1}}, "Dudleys": {"_count": 1, "gang": {"_count": 1}}, "panted": {"_count": 1, "Hermione": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "thats": {"_count": 1, "worrying": {"_count": 1}}}, "dewhiskered": {"_count": 1, "tail": {"_count": 1, "less": {"_count": 1}}}, "furfree": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "February": {"_count": 12, "": {"_count": 2, ".": {"_count": 2}}, "fourteenth": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "no": {"_count": 1}}, "the": {"_count": 4, "twentyfourth": {"_count": 3}, "twenty": {"_count": 1}}, "had": {"_count": 1, "arrived": {"_count": 1}}, "arrived": {"_count": 1, "to": {"_count": 1}}, "moved": {"_count": 1, "toward": {"_count": 1}}}, "Riddles": {"_count": 68, "diary": {"_count": 14, "and": {"_count": 1}, "away": {"_count": 1}, "": {"_count": 5}, "again": {"_count": 1}, "lying": {"_count": 1}, "was": {"_count": 2}, "or": {"_count": 1}, "didnt": {"_count": 1}, "the": {"_count": 1}}, "special": {"_count": 1, "award": {"_count": 1}}, "burnished": {"_count": 1, "gold": {"_count": 1}}, "name": {"_count": 1, "on": {"_count": 1}}, "reply": {"_count": 3, "": {"_count": 2}, "came": {"_count": 1}}, "eyes": {"_count": 7, "had": {"_count": 2}, "glinted": {"_count": 1}, "never": {"_count": 1}, "": {"_count": 1}, "gleamed": {"_count": 1}, "were": {"_count": 1}}, "diarys": {"_count": 1, "gone": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 1, "broadened": {"_count": 1}}, "face": {"_count": 4, "to": {"_count": 1}, "contorted": {"_count": 1}, "": {"_count": 2}}, "were": {"_count": 2, "laughing": {"_count": 1}, "buried": {"_count": 1}}, "outline": {"_count": 1, "was": {"_count": 1}}, "twisted": {"_count": 1, "smile": {"_count": 1}}, "hissing": {"_count": 1, "voice": {"_count": 1}}, "voice": {"_count": 2, "above": {"_count": 1}, "suddenly": {"_count": 1}}, "distant": {"_count": 1, "voice": {"_count": 1}}, "finished": {"_count": 1, "": {"_count": 1}}, "memories": {"_count": 1, "wiped": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "they": {"_count": 1}}, "cook": {"_count": 1, "arrived": {"_count": 1}}, "gardener": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "deaths": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "bodies": {"_count": 1, "came": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 2}, "a": {"_count": 1}}, "all": {"_count": 1, "appeared": {"_count": 1}}, "grave": {"_count": 1, "Harry": {"_count": 1}}, "history": {"_count": 1, "": {"_count": 1}}, "reaction": {"_count": 2, "to": {"_count": 1}, "when": {"_count": 1}}, "last": {"_count": 1, "words": {"_count": 1}}, "expression": {"_count": 1, "hardened": {"_count": 1}}, "died": {"_count": 1, "for": {"_count": 1}}, "I": {"_count": 1, "do": {"_count": 1}}, "hunger": {"_count": 1, "was": {"_count": 1}}}, "Couldve": {"_count": 4, "been": {"_count": 3, "anything": {"_count": 1}, "a": {"_count": 1}, "worse": {"_count": 1}}, "done": {"_count": 1, "with": {"_count": 1}}}, "arrested": {"_count": 15, "look": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "or": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "by": {"_count": 1, "Ministry": {"_count": 1}}, "on": {"_count": 2, "some": {"_count": 1}, "suspicion": {"_count": 1}}, "so": {"_count": 1, "Dungs": {"_count": 1}}, "we": {"_count": 1, "raided": {"_count": 1}}, "after": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "sent": {"_count": 1}}, "for": {"_count": 1, "trying": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}}, "flaw": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 4, "this": {"_count": 1}, "the": {"_count": 1}, "my": {"_count": 1}, "his": {"_count": 1}}, "that": {"_count": 2, "I": {"_count": 1}, "had": {"_count": 1}}, "to": {"_count": 1, "min": {"_count": 1}}}, "Aparecium": {"_count": 1, "Nothing": {"_count": 1, "happened": {"_count": 1}}}, "Undaunted": {"_count": 2, "Hermione": {"_count": 1, "shoved": {"_count": 1}}, "the": {"_count": 1, "Gryffindor": {"_count": 1}}}, "eraser": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Revealer": {"_count": 1, "I": {"_count": 1, "got": {"_count": 1}}}, "January": {"_count": 8, "first": {"_count": 1, "": {"_count": 1}}, "morning": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "faded": {"_count": 1, "imperceptibly": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Fudge": {"_count": 1}}}, "halfforgotten": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "lifetime": {"_count": 9, "": {"_count": 4, ".": {"_count": 4}}, "back": {"_count": 1, "with": {"_count": 1}}, "buried": {"_count": 1, "himself": {"_count": 1}}, "of": {"_count": 1, "service": {"_count": 1}}, "ban": {"_count": 1, "": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}}, "Medal": {"_count": 2, "for": {"_count": 1, "Magical": {"_count": 1}}, "Winner": {"_count": 1, "for": {"_count": 1}}}, "Merit": {"_count": 1, "and": {"_count": 1, "on": {"_count": 1}}}, "Boys": {"_count": 14, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 1, "good": {"_count": 1}}, "too": {"_count": 1, "were": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "boys": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "keep": {"_count": 1, "back": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}}, "wrinkling": {"_count": 1, "his": {"_count": 1, "nose": {"_count": 1}}}, "shine": {"_count": 5, "weakly": {"_count": 1, "on": {"_count": 1}}, "moon": {"_count": 1, "bright": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "moody": {"_count": 5, "and": {"_count": 2, "secretive": {"_count": 1}, "merely": {"_count": 1}}, "brooding": {"_count": 1, "expression": {"_count": 1}}, "bite": {"_count": 1, "of": {"_count": 1}}, "aggressive": {"_count": 1, "model": {"_count": 1}}}, "secretive": {"_count": 4, "meaning": {"_count": 1, "that": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "manner": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "apparently": {"_count": 1}}}, "acne": {"_count": 3, "clears": {"_count": 1, "up": {"_count": 1}}, "bubotuber": {"_count": 1, "pus": {"_count": 1}}, "look": {"_count": 1, "like": {"_count": 1}}}, "clears": {"_count": 3, "up": {"_count": 2, "theyll": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 1, "up": {"_count": 1}}}, "stewing": {"_count": 1, "them": {"_count": 1, "": {"_count": 1}}}, "riskier": {"_count": 2, "and": {"_count": 1, "riskier": {"_count": 1}}, "to": {"_count": 1, "open": {"_count": 1}}}, "alert": {"_count": 19, "and": {"_count": 6, "suspicious": {"_count": 1}, "wary": {"_count": 1}, "rested": {"_count": 1}, "watchful": {"_count": 1}, "cautious": {"_count": 1}, "serious": {"_count": 1}}, "the": {"_count": 2, "kitchens": {"_count": 1}, "other": {"_count": 1}}, "Professor": {"_count": 1, "Moody": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "came": {"_count": 1, "Lucius": {"_count": 1}}, "Remus": {"_count": 1, "Lupin": {"_count": 1}}, "even": {"_count": 1, "tense": {"_count": 1}}, "for": {"_count": 2, "any": {"_count": 2}}, "every": {"_count": 1, "time": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "Snape": {"_count": 1, "to": {"_count": 1}}, "excited": {"_count": 1, "": {"_count": 1}}}, "hibernate": {"_count": 3, "for": {"_count": 1, "another": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 1, "did": {"_count": 1}}}, "therell": {"_count": 7, "be": {"_count": 6, "any": {"_count": 1}, "no": {"_count": 2}, "trouble": {"_count": 1}, "something": {"_count": 1}, "little": {"_count": 1}}, "only": {"_count": 1, "be": {"_count": 1}}}, "culprit": {"_count": 9, "must": {"_count": 1, "have": {"_count": 1}}, "behind": {"_count": 1, "these": {"_count": 1}}, "wasnt": {"_count": 1, "caught": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 1}, "!": {"_count": 1}}, "bodily": {"_count": 1, "from": {"_count": 1}}}, "Rather": {"_count": 5, "sensible": {"_count": 1, "to": {"_count": 1}}, "thicker": {"_count": 1, "than": {"_count": 1}}, "than": {"_count": 1, "channel": {"_count": 1}}, "a": {"_count": 1, "shock": {"_count": 1}}, "like": {"_count": 1, "you": {"_count": 1}}}, "morale": {"_count": 7, "booster": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "collapsed": {"_count": 1}}, "is": {"_count": 1, "pretty": {"_count": 1}}, "perhaps": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "of": {"_count": 1, "those": {"_count": 1}}}, "booster": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wash": {"_count": 2, "away": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "your": {"_count": 1}}}, "memories": {"_count": 55, "of": {"_count": 15, "last": {"_count": 1}, "terrible": {"_count": 1}, "their": {"_count": 2}, "his": {"_count": 2}, "what": {"_count": 2}, "the": {"_count": 2}, "Umbridge": {"_count": 1}, "all": {"_count": 1}, "Riddle": {"_count": 1}, "Albus": {"_count": 1}, "Dumbledore": {"_count": 1}}, "in": {"_count": 1, "some": {"_count": 1}}, "": {"_count": 6, "!": {"_count": 1}, ".": {"_count": 3}, "?": {"_count": 2}}, "wiped": {"_count": 1, "from": {"_count": 1}}, "later": {"_count": 1, "told": {"_count": 1}}, "modified": {"_count": 1, "right": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "crammed": {"_count": 1, "into": {"_count": 1}}, "fresh": {"_count": 1, "and": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 3, "another": {"_count": 1}, "the": {"_count": 1}, "inside": {"_count": 1}}, "that": {"_count": 4, "contradict": {"_count": 1}, "were": {"_count": 1}, "he": {"_count": 1}, "I": {"_count": 1}}, "you": {"_count": 1, "fear": {"_count": 1}}, "and": {"_count": 2, "allow": {"_count": 1}, "Im": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "gazed": {"_count": 1}}, "though": {"_count": 1, "highly": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "to": {"_count": 2, "show": {"_count": 2}}, "go": {"_count": 1, "bad": {"_count": 1}}, "for": {"_count": 1, "they": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "the": {"_count": 1, "stabs": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "swirled": {"_count": 1, "silver": {"_count": 1}}}, "moralebooster": {"_count": 1, "became": {"_count": 1, "clear": {"_count": 1}}}, "fourteenth": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "dressed": {"_count": 1}}, "failed": {"_count": 1, "save": {"_count": 1}}, "He": {"_count": 1, "made": {"_count": 1}}, "Frog": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "September": {"_count": 1}}, "bucket": {"_count": 1, "of": {"_count": 1}}}, "laterunning": {"_count": 1, "Quidditch": {"_count": 1, "practice": {"_count": 1}}}, "lurid": {"_count": 4, "pink": {"_count": 2, "flowers": {"_count": 1}, "robes": {"_count": 1}}, "socks": {"_count": 1, "they": {"_count": 1}}, "green": {"_count": 1, "scaly": {"_count": 1}}}, "heartshaped": {"_count": 3, "confetti": {"_count": 1, "was": {"_count": 1}}, "face": {"_count": 2, "dark": {"_count": 1}, "and": {"_count": 1}}}, "confetti": {"_count": 6, "was": {"_count": 1, "falling": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "sickened": {"_count": 5, "and": {"_count": 2, "Hermione": {"_count": 1}, "angry": {"_count": 1}}, "with": {"_count": 1, "himself": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "what": {"_count": 1}}}, "overcome": {"_count": 16, "with": {"_count": 3, "giggles": {"_count": 1}, "such": {"_count": 1}, "remorse": {"_count": 1}}, "a": {"_count": 1, "dragon": {"_count": 1}}, "that": {"_count": 1, "particular": {"_count": 1}}, "two": {"_count": 1, "Aurors": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 1}, "spells": {"_count": 1}}, "his": {"_count": 1, "feelings": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 2, "wizards": {"_count": 1}, "connection": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "him": {"_count": 2, "for": {"_count": 1}, "he": {"_count": 1}}, "not": {"_count": 1, "least": {"_count": 1}}}, "giggles": {"_count": 14, "": {"_count": 7, ".": {"_count": 7}}, "and": {"_count": 2, "Hermione": {"_count": 1}, "He": {"_count": 1}}, "at": {"_count": 2, "this": {"_count": 1}, "the": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "stonyfaced": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "colleagues": {"_count": 1, "": {"_count": 1}}, "pulling": {"_count": 1, "on": {"_count": 1}}}, "beaker": {"_count": 1, "of": {"_count": 1, "SkeleGro": {"_count": 1}}}, "Valentines": {"_count": 5, "Day": {"_count": 5, "": {"_count": 4}, "spent": {"_count": 1}}}, "fortysix": {"_count": 2, "people": {"_count": 1, "who": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "liberty": {"_count": 5, "of": {"_count": 1, "arranging": {"_count": 1}}, "was": {"_count": 1, "almost": {"_count": 1}}, "to": {"_count": 1, "kiss": {"_count": 1}}, "Lucius": {"_count": 1, "is": {"_count": 1}}, "possibly": {"_count": 1, "depending": {"_count": 1}}}, "arranging": {"_count": 2, "this": {"_count": 1, "little": {"_count": 1}}, "sea": {"_count": 1, "lavender": {"_count": 1}}}, "surlylooking": {"_count": 1, "dwarfs": {"_count": 1, "": {"_count": 1}}}, "dwarfs": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "however": {"_count": 1, "": {"_count": 1}}, "kept": {"_count": 1, "barging": {"_count": 1}}, "caught": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 1, "once": {"_count": 1}}}, "harps": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "cardcarrying": {"_count": 1, "cupids": {"_count": 1, "": {"_count": 1}}}, "cupids": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "roving": {"_count": 3, "around": {"_count": 2, "the": {"_count": 2}}, "tables": {"_count": 1, "": {"_count": 1}}}, "delivering": {"_count": 5, "your": {"_count": 1, "valentines": {"_count": 1}}, "a": {"_count": 3, "letter": {"_count": 2}, "package": {"_count": 1}}, "owl": {"_count": 1, "as": {"_count": 1}}}, "valentines": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "colleagues": {"_count": 11, "will": {"_count": 1, "want": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 1, "fell": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "set": {"_count": 1, "up": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "spirit": {"_count": 19, "of": {"_count": 1, "the": {"_count": 1}}, "dear": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "definitely": {"_count": 1}}, "as": {"_count": 1, "noble": {"_count": 1}}, "less": {"_count": 2, "than": {"_count": 2}}, "for": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 2, "unity": {"_count": 1}, "bravery": {"_count": 1}}, "might": {"_count": 1, "show": {"_count": 1}}, "he": {"_count": 1, "addressed": {"_count": 1}}, "community": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 1, "real": {"_count": 1}}, "to": {"_count": 1, "chase": {"_count": 1}}, "lingers": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "we": {"_count": 1, "would": {"_count": 1}}}, "occasion": {"_count": 29, "": {"_count": 6, "!": {"_count": 1}, ".": {"_count": 5}}, "that": {"_count": 2, "they": {"_count": 1}, "it": {"_count": 1}}, "when": {"_count": 2, "Rons": {"_count": 1}, "Harry": {"_count": 1}}, "making": {"_count": 1, "her": {"_count": 1}}, "magnificently": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "now": {"_count": 1}}, "accepting": {"_count": 1, "I": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 3, "have": {"_count": 1}, "cannot": {"_count": 1}, "was": {"_count": 1}}, "he": {"_count": 3, "doubted": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}, "warranted": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "talk": {"_count": 1}}, "was": {"_count": 1, "close": {"_count": 1}}, "by": {"_count": 1, "wearing": {"_count": 1}}, "several": {"_count": 1, "years": {"_count": 1}}}, "Entrancing": {"_count": 1, "Enchantments": {"_count": 1, "than": {"_count": 1}}}, "Enchantments": {"_count": 1, "than": {"_count": 1, "any": {"_count": 1}}}, "sly": {"_count": 2, "old": {"_count": 1, "dog": {"_count": 1}}, "voice": {"_count": 1, "from": {"_count": 1}}}, "forcefed": {"_count": 1, "poison": {"_count": 1, "": {"_count": 1}}}, "barging": {"_count": 2, "into": {"_count": 2, "their": {"_count": 1}, "that": {"_count": 1}}}, "annoyance": {"_count": 12, "of": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Uncle": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "some": {"_count": 1}}, "or": {"_count": 1, "cheerfulness": {"_count": 1}}, "however": {"_count": 1, "neither": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "he": {"_count": 1, "saw": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "pass": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "Arry": {"_count": 19, "Potter": {"_count": 5, "": {"_count": 3}, "in": {"_count": 1}, "got": {"_count": 1}}, "He": {"_count": 1, "swallowed": {"_count": 1}}, "": {"_count": 6, "!": {"_count": 3}, "?": {"_count": 2}, ".": {"_count": 1}}, "said": {"_count": 3, "Fleur": {"_count": 2}, "Mundungus": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "tonight": {"_count": 1, "does": {"_count": 1}}, "Gripook": {"_count": 1, "would": {"_count": 1}}, "you": {"_count": 1, "saved": {"_count": 1}}}, "elbowing": {"_count": 3, "people": {"_count": 1, "out": {"_count": 1}}, "Percy": {"_count": 1, "out": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}}, "Hot": {"_count": 5, "all": {"_count": 1, "over": {"_count": 1}}, "blood": {"_count": 1, "seemed": {"_count": 1}}, "Strong": {"_count": 3, "Love": {"_count": 3}}}, "valentine": {"_count": 5, "in": {"_count": 1, "front": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "His": {"_count": 1, "eyes": {"_count": 1}}, "much": {"_count": 1, "": {"_count": 1}}, "flowers": {"_count": 1, "and": {"_count": 1}}}, "include": {"_count": 12, "Ginny": {"_count": 1, "Weasley": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "those": {"_count": 1, "for": {"_count": 1}}, "Screaming": {"_count": 1, "Yoyos": {"_count": 1}}, "changing": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "passing": {"_count": 1}}, "situations": {"_count": 1, "that": {"_count": 1}}, "inviting": {"_count": 1, "students": {"_count": 1}}, "Blacks": {"_count": 1, "cousin": {"_count": 1}}, "or": {"_count": 1, "end": {"_count": 1}}, "defensive": {"_count": 1, "spells": {"_count": 1}}, "vacant": {"_count": 1, "expression": {"_count": 1}}}, "shins": {"_count": 7, "and": {"_count": 1, "reached": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "her": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "Death": {"_count": 1}}, "illuminated": {"_count": 1, "by": {"_count": 1}}}, "stilll": {"_count": 1, "grunted": {"_count": 1, "the": {"_count": 1}}}, "holdup": {"_count": 3, "in": {"_count": 1, "the": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "commotion": {"_count": 13, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 4}}, "was": {"_count": 1, "revealed": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "outside": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "thunder": {"_count": 1}}}, "divine": {"_count": 3, "The": {"_count": 1, "hero": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "meaning": {"_count": 1, "in": {"_count": 1}}}, "conquered": {"_count": 6, "the": {"_count": 2, "Dark": {"_count": 1}, "borrowed": {"_count": 1}}, "Death": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 1, "will": {"_count": 1}}, "him": {"_count": 1, "by": {"_count": 1}}, "death": {"_count": 1, "though": {"_count": 1}}}, "evaporate": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "valiantly": {"_count": 5, "to": {"_count": 1, "laugh": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "keeping": {"_count": 1, "him": {"_count": 1}}}, "disperse": {"_count": 1, "the": {"_count": 1, "crowd": {"_count": 1}}}, "mirth": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "that": {"_count": 1, "caused": {"_count": 1}}}, "shooing": {"_count": 1, "some": {"_count": 1, "of": {"_count": 1}}}, "stoop": {"_count": 5, "and": {"_count": 1, "snatch": {"_count": 1}}, "quickly": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "low": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "her": {"_count": 1, "stoutness": {"_count": 1}}}, "Leering": {"_count": 1, "he": {"_count": 1, "showed": {"_count": 1}}}, "onlookers": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "had": {"_count": 1, "formed": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "knew": {"_count": 1, "exactly": {"_count": 1}}, "were": {"_count": 1, "members": {"_count": 1}}, "but": {"_count": 1, "otherwise": {"_count": 1}}, "sniggered": {"_count": 1, "Hermione": {"_count": 1}}}, "tauntingly": {"_count": 1, "at": {"_count": 1, "Harry": {"_count": 1}}}, "disarmed": {"_count": 6, "Lockhart": {"_count": 1, "so": {"_count": 1}}, "Hermione": {"_count": 1, "how": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "me": {"_count": 1, "you": {"_count": 1}}, "him": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 1, "useless": {"_count": 1}}}, "oneup": {"_count": 1, "on": {"_count": 1, "Malfoy": {"_count": 1}}}, "spitefully": {"_count": 2, "after": {"_count": 1, "her": {"_count": 1}}, "youre": {"_count": 1, "a": {"_count": 1}}}, "Snarling": {"_count": 1, "Ron": {"_count": 1, "pulled": {"_count": 1}}}, "partly": {"_count": 11, "because": {"_count": 4, "he": {"_count": 2}, "of": {"_count": 2}}, "Potter": {"_count": 1, "": {"_count": 1}}, "cause": {"_count": 1, "Dumbledore": {"_count": 1}}, "perhaps": {"_count": 1, "because": {"_count": 1}}, "why": {"_count": 1, "wed": {"_count": 1}}, "destroyed": {"_count": 1, "cafe": {"_count": 1}}, "to": {"_count": 1, "remind": {"_count": 1}}, "obscured": {"_count": 1, "by": {"_count": 1}}}, "Excited": {"_count": 2, "Harry": {"_count": 1, "loaded": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "momentarily": {"_count": 26, "on": {"_count": 1, "the": {"_count": 1}}, "lit": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "orange": {"_count": 1}}, "forgotten": {"_count": 2, "the": {"_count": 1}, "that": {"_count": 1}}, "stunned": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "frozen": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "him": {"_count": 1}}, "diverted": {"_count": 1, "from": {"_count": 1}}, "lost": {"_count": 1, "for": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "crease": {"_count": 1, "his": {"_count": 1}}, "had": {"_count": 1, "an": {"_count": 1}}, "thrilled": {"_count": 1, "until": {"_count": 1}}, "silhouetted": {"_count": 1, "his": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "distracted": {"_count": 1, "": {"_count": 1}}, "exposed": {"_count": 1, "elbow": {"_count": 1}}, "surprised": {"_count": 2, "to": {"_count": 2}}, "as": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "opaque": {"_count": 1, "a": {"_count": 1}}, "driven": {"_count": 1, "every": {"_count": 1}}}, "Oozing": {"_count": 1, "back": {"_count": 1, "out": {"_count": 1}}}, "lasting": {"_count": 7, "way": {"_count": 1, "than": {"_count": 1}}, "harm": {"_count": 1, "done": {"_count": 1}}, "injury": {"_count": 1, "like": {"_count": 1}}, "tribute": {"_count": 1, "to": {"_count": 1}}, "no": {"_count": 1, "less": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "damage": {"_count": 1, "from": {"_count": 1}}}, "stuffs": {"_count": 5, "been": {"_count": 3, "happening": {"_count": 2}, "breeding": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "your": {"_count": 1, "thoughts": {"_count": 1}}}, "untidier": {"_count": 2, "as": {"_count": 1, "though": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}}, "Dippet": {"_count": 20, "ashamed": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "kindly": {"_count": 1, "I": {"_count": 1}}, "curiously": {"_count": 1, "": {"_count": 1}}, "clucked": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "sank": {"_count": 1, "back": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}, "asked": {"_count": 1, "me": {"_count": 1}}, "said": {"_count": 2, "a": {"_count": 1}, "Dumbledore": {"_count": 1}}, "over": {"_count": 1, "Dumbledore": {"_count": 1}}, "and": {"_count": 1, "asked": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "was": {"_count": 1, "very": {"_count": 1}}, "expected": {"_count": 1, "": {"_count": 1}}, "Master": {"_count": 1, "or": {"_count": 1}}}, "forbade": {"_count": 1, "me": {"_count": 1, "to": {"_count": 1}}}, "release": {"_count": 15, "it": {"_count": 3, "was": {"_count": 1}, "said": {"_count": 1}, "after": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "Snitch": {"_count": 1}, "balls": {"_count": 1}, "cafes": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Montague": {"_count": 1, "from": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "from": {"_count": 1, "Azkaban": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}}, "imprisoned": {"_count": 13, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}, "to": {"_count": 1, "prevent": {"_count": 1}}, "controlled": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "once": {"_count": 1, "for": {"_count": 1}}, "by": {"_count": 2, "Dumbledore": {"_count": 1}, "Voldemort": {"_count": 1}}, "and": {"_count": 2, "she": {"_count": 1}, "hidden": {"_count": 1}}, "including": {"_count": 1, "Xenophilius": {"_count": 1}}}, "fraction": {"_count": 15, "of": {"_count": 12, "a": {"_count": 9}, "the": {"_count": 1}, "an": {"_count": 2}}, "and": {"_count": 2, "squinted": {"_count": 1}, "saw": {"_count": 1}}, "But": {"_count": 1, "suddenly": {"_count": 1}}}, "OK": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "June": {"_count": 21, "": {"_count": 8, ".": {"_count": 7}, "?": {"_count": 1}}, "thirteenth": {"_count": 1, "seemed": {"_count": 1}}, "one": {"_count": 1, "week": {"_count": 1}}, "will": {"_count": 1, "concern": {"_count": 1}}, "approached": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "sundown": {"_count": 1}}, "continued": {"_count": 1, "Bagman": {"_count": 1}}, "the": {"_count": 2, "twentyfourth": {"_count": 2}}, "became": {"_count": 1, "excited": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "had": {"_count": 1, "arrived": {"_count": 1}}, "and": {"_count": 1, "But": {"_count": 1}}, "for": {"_count": 1, "Harry": {"_count": 1}}}, "thirteenth": {"_count": 4, "seemed": {"_count": 1, "to": {"_count": 1}}, "birthday": {"_count": 2, "": {"_count": 1}, "open": {"_count": 1}}, "aloft": {"_count": 1, "": {"_count": 1}}}, "screen": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 2, "his": {"_count": 1}, "settled": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}}, "tilting": {"_count": 6, "forward": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 2, "head": {"_count": 2}}, "her": {"_count": 1, "head": {"_count": 1}}, "it": {"_count": 1, "back": {"_count": 1}}, "the": {"_count": 1, "thick": {"_count": 1}}}, "widening": {"_count": 20, "he": {"_count": 1, "felt": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "innocently": {"_count": 1, "but": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}, "having": {"_count": 1, "pulled": {"_count": 1}}, "in": {"_count": 1, "horror": {"_count": 1}}, "his": {"_count": 1, "next": {"_count": 1}}, "rose": {"_count": 2, "up": {"_count": 2}}, "so": {"_count": 1, "that": {"_count": 1}}, "still": {"_count": 1, "further": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "her": {"_count": 1}}, "black": {"_count": 1, "eyes": {"_count": 1}}}, "pitched": {"_count": 15, "headfirst": {"_count": 2, "through": {"_count": 1}, "into": {"_count": 1}}, "him": {"_count": 1, "off": {"_count": 1}}, "voice": {"_count": 1, "not": {"_count": 1}}, "right": {"_count": 1, "alongside": {"_count": 1}}, "battle": {"_count": 1, "below": {"_count": 1}}, "squeak": {"_count": 1, "and": {"_count": 1}}, "laughter": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "and": {"_count": 1, "somewhat": {"_count": 1}}, "terrified": {"_count": 1, "voice": {"_count": 1}}, "whisper": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "tent": {"_count": 3}}}, "focus": {"_count": 23, "": {"_count": 10, ".": {"_count": 9}, "!": {"_count": 1}}, "again": {"_count": 1, "He": {"_count": 1}}, "lit": {"_count": 1, "by": {"_count": 1}}, "his": {"_count": 2, "brows": {"_count": 1}, "mind": {"_count": 1}}, "and": {"_count": 2, "so": {"_count": 1}, "back": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 3}}, "grinning": {"_count": 1, "down": {"_count": 1}}, "your": {"_count": 1, "determination": {"_count": 1}}, "upon": {"_count": 1, "Harry": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}}, "fraillooking": {"_count": 3, "wizard": {"_count": 1, "bald": {"_count": 1}}, "old": {"_count": 1, "wizard": {"_count": 1}}, "silver": {"_count": 1, "instruments": {"_count": 1}}}, "wisps": {"_count": 5, "of": {"_count": 5, "white": {"_count": 1}, "smoke": {"_count": 2}, "silver": {"_count": 1}, "chilly": {"_count": 1}}}, "butt": {"_count": 3, "in": {"_count": 3, "But": {"_count": 1}, "": {"_count": 2}}}, "halfshouted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rubyred": {"_count": 3, "it": {"_count": 1, "seemed": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "glow": {"_count": 1, "": {"_count": 1}}}, "sunset": {"_count": 9, "": {"_count": 5, ".": {"_count": 5}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "Nothing": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "Slughorn": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}}, "contraptions": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "orphanage": {"_count": 27, "during": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "lived": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 5}, "?": {"_count": 3}}, "if": {"_count": 3, "they": {"_count": 1}, "the": {"_count": 1}, "youd": {"_count": 1}}, "than": {"_count": 1, "with": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 2, "hes": {"_count": 1}, "naturally": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 2}}, "to": {"_count": 1, "which": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "Avada": {"_count": 1, "Kedavra": {"_count": 1}}}, "Halfblood": {"_count": 2, "sir": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "Marvolo": {"_count": 19, "after": {"_count": 1, "my": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}, "his": {"_count": 1, "son": {"_count": 1}}, "was": {"_count": 1, "born": {"_count": 1}}, "and": {"_count": 2, "Morfin": {"_count": 1}, "he": {"_count": 1}}, "Gaunt": {"_count": 5, "showed": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 2}, "was": {"_count": 1}}, "for": {"_count": 1, "her": {"_count": 1}}, "nor": {"_count": 1, "any": {"_count": 1}}, "Gaunts": {"_count": 2, "ring": {"_count": 2}}, "s": {"_count": 1, "son": {"_count": 1}}, "Gaunti": {"_count": 1, "You": {"_count": 1}}}, "clucked": {"_count": 2, "his": {"_count": 1, "tongue": {"_count": 1}}, "disapprovingly": {"_count": 1, "": {"_count": 1}}}, "sympathetically": {"_count": 9, "": {"_count": 6, ".": {"_count": 6}}, "tipping": {"_count": 1, "bacon": {"_count": 1}}, "patting": {"_count": 1, "Harry": {"_count": 1}}, "peering": {"_count": 1, "at": {"_count": 1}}}, "current": {"_count": 9, "circumstances": {"_count": 1, "": {"_count": 1}}, "headmaster": {"_count": 1, "being": {"_count": 1}}, "inside": {"_count": 1, "was": {"_count": 1}}, "whereabouts": {"_count": 1, "of": {"_count": 1}}, "position": {"_count": 1, "suggested": {"_count": 1}}, "place": {"_count": 1, "of": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "members": {"_count": 1, "had": {"_count": 1}}, "location": {"_count": 1, "": {"_count": 1}}}, "allow": {"_count": 43, "you": {"_count": 3, "to": {"_count": 3}}, "your": {"_count": 2, "eyes": {"_count": 1}, "magic": {"_count": 1}}, "some": {"_count": 1, "Muggles": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "them": {"_count": 3, "to": {"_count": 2}, "all": {"_count": 1}}, "us": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 3, "to": {"_count": 3}}, "their": {"_count": 1, "attention": {"_count": 1}}, "himself": {"_count": 2, "to": {"_count": 2}}, "him": {"_count": 4, "to": {"_count": 4}}, "her": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "room": {"_count": 1, "for": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "the": {"_count": 4, "Slytherins": {"_count": 1}, "Gryffindor": {"_count": 1}, "bleeding": {"_count": 1}, "subject": {"_count": 1}}, "dementors": {"_count": 1, "to": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "to": {"_count": 1, "simmer": {"_count": 1}}, "family": {"_count": 1, "ties": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 2, "to": {"_count": 2}}, "a": {"_count": 2, "sixteenyearold": {"_count": 1}, "ghost": {"_count": 1}}, "his": {"_count": 1, "thoughts": {"_count": 1}}, "Voldemort": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "what": {"_count": 1}}}, "Particularly": {"_count": 3, "in": {"_count": 2, "light": {"_count": 1}, "present": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}}, "tragedy": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "Hermione": {"_count": 1, "snapped": {"_count": 1}}, "said": {"_count": 1, "Scrimgeour": {"_count": 1}}, "intervened": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "struck": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "safer": {"_count": 14, "by": {"_count": 1, "far": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "this": {"_count": 1, "year": {"_count": 1}}, "house": {"_count": 1, "anywhere": {"_count": 1}}, "route": {"_count": 1, "up": {"_count": 1}}, "without": {"_count": 1, "him": {"_count": 1}}, "than": {"_count": 2, "most": {"_count": 1}, "their": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "out": {"_count": 1, "in": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "locating": {"_count": 3, "the": {"_count": 1, "er": {"_count": 1}}, "her": {"_count": 1, "at": {"_count": 1}}, "more": {"_count": 1, "Horcruxes": {"_count": 1}}}, "source": {"_count": 42, "of": {"_count": 31, "all": {"_count": 3}, "great": {"_count": 1}, "light": {"_count": 3}, "the": {"_count": 15}, "Harrys": {"_count": 1}, "information": {"_count": 1}, "a": {"_count": 1}, "comfort": {"_count": 2}, "his": {"_count": 1}, "that": {"_count": 1}, "it": {"_count": 1}, "their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "Sirius": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "discussed": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "most": {"_count": 2, "journalists": {"_count": 2}}, "close": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}}, "unpleasantness": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "but": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "darkening": {"_count": 15, "corridor": {"_count": 2, "": {"_count": 1}, "Zabini": {"_count": 1}}, "Quidditch": {"_count": 1, "field": {"_count": 1}}, "garden": {"_count": 1, "before": {"_count": 1}}, "grounds": {"_count": 2, "excitedly": {"_count": 1}, "": {"_count": 1}}, "sky": {"_count": 4, "": {"_count": 2}, "to": {"_count": 1}, "until": {"_count": 1}}, "play": {"_count": 1, "park": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "street": {"_count": 1, "and": {"_count": 1}}, "Hermiones": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "furrowed": {"_count": 10, "": {"_count": 4, ".": {"_count": 4}}, "brow": {"_count": 1, "and": {"_count": 1}}, "Frank": {"_count": 1, "inclined": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "and": {"_count": 1, "after": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "auburn": {"_count": 2, "hair": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fiftyyearyounger": {"_count": 1, "Dumbledore": {"_count": 1, "": {"_count": 1}}}, "roam": {"_count": 2, "the": {"_count": 1, "corridors": {"_count": 1}}, "our": {"_count": 1, "land": {"_count": 1}}}, "bade": {"_count": 7, "Riddle": {"_count": 1, "good": {"_count": 1}}, "them": {"_count": 1, "good": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "goodbye": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 1, "good": {"_count": 1}}, "me": {"_count": 1, "come": {"_count": 1}}}, "pursuit": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 4, "a": {"_count": 1}, "something": {"_count": 1}, "an": {"_count": 1}, "his": {"_count": 1}}}, "stockstill": {"_count": 4, "by": {"_count": 1, "the": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "closed": {"_count": 1}}}, "expectant": {"_count": 4, "and": {"_count": 1, "tense": {"_count": 1}}, "as": {"_count": 2, "anyone": {"_count": 1}, "Rons": {"_count": 1}}, "yet": {"_count": 1, "it": {"_count": 1}}}, "tiptoeing": {"_count": 1, "behind": {"_count": 1, "him": {"_count": 1}}}, "forgetting": {"_count": 21, "that": {"_count": 4, "he": {"_count": 3}, "only": {"_count": 1}}, "his": {"_count": 2, "troubles": {"_count": 1}, "feigned": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "to": {"_count": 3, "roar": {"_count": 1}, "whisper": {"_count": 1}, "cough": {"_count": 1}}, "about": {"_count": 3, "dinner": {"_count": 1}, "packing": {"_count": 1}, "Ron": {"_count": 1}}, "old": {"_count": 1, "differences": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 1, "next": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "what": {"_count": 1, "I": {"_count": 1}}, "who": {"_count": 1, "actually": {"_count": 1}}}, "outline": {"_count": 30, "of": {"_count": 21, "a": {"_count": 6}, "something": {"_count": 2}, "Ron": {"_count": 1}, "Hagrid": {"_count": 2}, "Wood": {"_count": 1}, "the": {"_count": 3}, "Wormtail": {"_count": 1}, "Phineas": {"_count": 1}, "Fang": {"_count": 1}, "an": {"_count": 1}, "Hogwarts": {"_count": 1}, "black": {"_count": 1}}, "was": {"_count": 2, "becoming": {"_count": 1}, "quivering": {"_count": 1}}, "grow": {"_count": 1, "larger": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "gleaming": {"_count": 1, "in": {"_count": 1}}, "towering": {"_count": 1, "above": {"_count": 1}}, "appeared": {"_count": 1, "there": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "slaughtered": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "by": {"_count": 1, "Luxembourg": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "who": {"_count": 1}}, "as": {"_count": 1, "will": {"_count": 1}}}, "unheard": {"_count": 4, "by": {"_count": 2, "anyone": {"_count": 1}, "anybody": {"_count": 1}}, "of": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "lowslung": {"_count": 2, "hairy": {"_count": 1, "body": {"_count": 1}}, "branches": {"_count": 1, "and": {"_count": 1}}}, "tangle": {"_count": 12, "of": {"_count": 10, "black": {"_count": 1}, "thorns": {"_count": 1}, "his": {"_count": 1}, "weeds": {"_count": 1}, "bodies": {"_count": 1}, "hairy": {"_count": 1}, "shapes": {"_count": 1}, "fleshcolored": {"_count": 1}, "shrubs": {"_count": 1}, "trunks": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "with": {"_count": 1, "em": {"_count": 1}}}, "pincers": {"_count": 15, "Riddle": {"_count": 1, "raised": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "excitedly": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}, "rapidly": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "furiously": {"_count": 1, "and": {"_count": 1}}, "menacingly": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "next": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "shone": {"_count": 1, "motionless": {"_count": 1}}, "apparently": {"_count": 1, "examining": {"_count": 1}}}, "bowled": {"_count": 3, "him": {"_count": 2, "over": {"_count": 2}}, "aside": {"_count": 1, "Hagrid": {"_count": 1}}}, "NOOOOOOO": {"_count": 3, "": {"_count": 3, "!": {"_count": 3}}}, "spreadeagled": {"_count": 7, "on": {"_count": 5, "his": {"_count": 2}, "the": {"_count": 3}}, "broken": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}}, "CORNELIUS": {"_count": 1, "FUDGE": {"_count": 1, "Harry": {"_count": 1}}}, "FUDGE": {"_count": 2, "Harry": {"_count": 1, "Ron": {"_count": 1}}, "Most": {"_count": 1, "of": {"_count": 1}}}, "During": {"_count": 6, "their": {"_count": 1, "first": {"_count": 1}}, "the": {"_count": 2, "following": {"_count": 1}, "search": {"_count": 1}}, "one": {"_count": 1, "memorable": {"_count": 1}}, "his": {"_count": 1, "last": {"_count": 1}}, "those": {"_count": 1, "few": {"_count": 1}}}, "christened": {"_count": 1, "Fluffy": {"_count": 1, "": {"_count": 1}}}, "cooped": {"_count": 4, "up": {"_count": 4, "so": {"_count": 1}, "too": {"_count": 1}, "in": {"_count": 2}}}, "thirteenyearold": {"_count": 4, "Hagrid": {"_count": 1, "trying": {"_count": 1}}, "wizard": {"_count": 2, "": {"_count": 1}, "even": {"_count": 1}}, "wizards": {"_count": 1, "will": {"_count": 1}}}, "leash": {"_count": 3, "and": {"_count": 1, "collar": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "anybody": {"_count": 78, "": {"_count": 12, ".": {"_count": 10}, "?": {"_count": 2}}, "and": {"_count": 1, "snapped": {"_count": 1}}, "who": {"_count": 12, "reads": {"_count": 1}, "disturbed": {"_count": 1}, "makes": {"_count": 1}, "would": {"_count": 3}, "could": {"_count": 1}, "disagrees": {"_count": 1}, "has": {"_count": 1}, "knew": {"_count": 1}, "still": {"_count": 1}, "had": {"_count": 1}}, "else": {"_count": 12, "": {"_count": 6}, "offered": {"_count": 1}, "saw": {"_count": 1}, "what": {"_count": 1}, "failed": {"_count": 1}, "stand": {"_count": 1}, "know": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "but": {"_count": 1, "from": {"_count": 1}}, "realizes": {"_count": 1, "were": {"_count": 1}}, "seeing": {"_count": 1, "us": {"_count": 1}}, "would": {"_count": 1, "like": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 2}}, "ever": {"_count": 1, "discover": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "approaching": {"_count": 1, "said": {"_count": 1}}, "what": {"_count": 2, "you": {"_count": 2}}, "asks": {"_count": 1, "you": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "in": {"_count": 2, "case": {"_count": 1}, "the": {"_count": 1}}, "realizing": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "waiting": {"_count": 1}}, "to": {"_count": 5, "be": {"_count": 1}, "suggest": {"_count": 1}, "talk": {"_count": 1}, "think": {"_count": 1}, "travel": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "except": {"_count": 2, "fellow": {"_count": 1}, "Hermione": {"_count": 1}}, "elses": {"_count": 1, "Slughorn": {"_count": 1}}, "or": {"_count": 1, "thanking": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "cared": {"_count": 1, "to": {"_count": 1}}, "delve": {"_count": 1, "further": {"_count": 1}}, "look": {"_count": 1, "as": {"_count": 1}}, "could": {"_count": 2, "respond": {"_count": 1}, "navigate": {"_count": 1}}, "overstews": {"_count": 1, "them": {"_count": 1}}, "And": {"_count": 1, "I": {"_count": 1}}, "wishing": {"_count": 1, "to": {"_count": 1}}, "without": {"_count": 1, "making": {"_count": 1}}}, "Again": {"_count": 25, "and": {"_count": 4, "again": {"_count": 4}}, "Harry": {"_count": 3, "didnt": {"_count": 1}, "noticed": {"_count": 1}, "ignored": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}, "however": {"_count": 1, "Dumbledore": {"_count": 1}}, "he": {"_count": 4, "felt": {"_count": 1}, "strode": {"_count": 1}, "saw": {"_count": 1}, "directed": {"_count": 1}}, "Marietta": {"_count": 1, "shook": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "something": {"_count": 1, "we": {"_count": 1}}, "Voldemort": {"_count": 1, "looked": {"_count": 1}}, "your": {"_count": 1, "readers": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "Dudley": {"_count": 1, "appeared": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Bill": {"_count": 1, "hesitated": {"_count": 1}}}, "recount": {"_count": 3, "what": {"_count": 1, "hed": {"_count": 1}}, "his": {"_count": 1, "vision": {"_count": 1}}, "how": {"_count": 1, "Lord": {"_count": 1}}}, "conversations": {"_count": 14, "that": {"_count": 1, "followed": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "when": {"_count": 2, "shes": {"_count": 1}, "she": {"_count": 1}}, "with": {"_count": 2, "students": {"_count": 1}, "Cho": {"_count": 1}}, "the": {"_count": 1, "moment": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "were": {"_count": 1, "held": {"_count": 1}}, "and": {"_count": 1, "learned": {"_count": 1}}, "becoming": {"_count": 1, "increasingly": {"_count": 1}}, "without": {"_count": 1, "and": {"_count": 1}}}, "tack": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "top": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}}, "FleshEating": {"_count": 2, "Slug": {"_count": 1, "Repellent": {"_count": 1}}, "Trees": {"_count": 1, "of": {"_count": 1}}}, "voiced": {"_count": 5, "the": {"_count": 1, "knottiest": {"_count": 1}}, "something": {"_count": 1, "hed": {"_count": 1}}, "what": {"_count": 1, "Harry": {"_count": 1}}, "by": {"_count": 1, "anxious": {"_count": 1}}, "Ted": {"_count": 1, "and": {"_count": 1}}}, "knottiest": {"_count": 1, "question": {"_count": 1, "of": {"_count": 1}}}, "hesitant": {"_count": 2, "voice": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "signing": {"_count": 1}}}, "Thatd": {"_count": 5, "be": {"_count": 2, "a": {"_count": 1}, "great": {"_count": 1}}, "lead": {"_count": 1, "em": {"_count": 1}}, "wipe": {"_count": 1, "the": {"_count": 1}}, "come": {"_count": 1, "off": {"_count": 1}}}, "\u2018Hello": {"_count": 1, "Hagrid": {"_count": 1, "": {"_count": 1}}}, "retired": {"_count": 11, "for": {"_count": 1, "good": {"_count": 1}}, "now": {"_count": 1, "good": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "public": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "take": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "several": {"_count": 1, "years": {"_count": 1}}}, "toadstools": {"_count": 3, "in": {"_count": 1, "Herbology": {"_count": 1}}, "dont": {"_count": 1, "change": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "March": {"_count": 7, "several": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "weather": {"_count": 1}}, "blurred": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "with": {"_count": 1, "no": {"_count": 1}}, "by": {"_count": 1, "Seamus": {"_count": 1}}, "did": {"_count": 1, "luck": {"_count": 1}}}, "raucous": {"_count": 7, "party": {"_count": 1, "in": {"_count": 1}}, "dwarfs": {"_count": 1, "and": {"_count": 1}}, "peal": {"_count": 1, "of": {"_count": 1}}, "scream": {"_count": 1, "of": {"_count": 1}}, "laughter": {"_count": 1, "and": {"_count": 1}}, "shouting": {"_count": 1, "": {"_count": 1}}, "giggles": {"_count": 1, "at": {"_count": 1}}}, "mature": {"_count": 3, "she": {"_count": 1, "told": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}}, "pored": {"_count": 3, "over": {"_count": 2, "lists": {"_count": 1}, "the": {"_count": 1}}, "indecisively": {"_count": 1, "over": {"_count": 1}}}, "lists": {"_count": 6, "of": {"_count": 3, "new": {"_count": 1}, "secondhand": {"_count": 1}, "prefects": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 1, "stuff": {"_count": 1}}, "the": {"_count": 1, "pureblood": {"_count": 1}}}, "marking": {"_count": 11, "them": {"_count": 1, "with": {"_count": 1}}, "Malfoy": {"_count": 1, "so": {"_count": 1}}, "the": {"_count": 3, "spot": {"_count": 1}, "door": {"_count": 1}, "edge": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "O": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "you": {"_count": 2, "with": {"_count": 1}, "as": {"_count": 1}}, "her": {"_count": 1, "answers": {"_count": 1}}}, "ditched": {"_count": 4, "Defense": {"_count": 1, "Against": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "Dean": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}}, "Confused": {"_count": 2, "and": {"_count": 1, "worried": {"_count": 1}}, "Yaxley": {"_count": 1, "looked": {"_count": 1}}}, "Arithmancy": {"_count": 28, "sounded": {"_count": 1, "more": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "nine": {"_count": 1, "oclock": {"_count": 1}}, "book": {"_count": 5, "and": {"_count": 1}, "down": {"_count": 1}, "": {"_count": 2}, "Hermione": {"_count": 1}}, "class": {"_count": 3, "": {"_count": 1}, "yet": {"_count": 1}, "and": {"_count": 1}}, "charts": {"_count": 1, "rune": {"_count": 1}}, "witch": {"_count": 1, "this": {"_count": 1}}, "essay": {"_count": 3, "on": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "looks": {"_count": 1, "terrible": {"_count": 1}}, "Harry": {"_count": 1, "never": {"_count": 1}}, "9": {"_count": 1, "oclock": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "there": {"_count": 1}, "its": {"_count": 1}}, "while": {"_count": 2, "Harry": {"_count": 2}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Ancient": {"_count": 1, "Runes": {"_count": 1}}}, "Runes": {"_count": 13, "": {"_count": 2, ".": {"_count": 2}}, "Made": {"_count": 1, "Easy": {"_count": 1}}, "Muggle": {"_count": 1, "Studies": {"_count": 1}}, "Hermione": {"_count": 2, "": {"_count": 2}}, "Ron": {"_count": 2, "had": {"_count": 1}, "for": {"_count": 1}}, "exam": {"_count": 1, "and": {"_count": 1}}, "muttered": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 1, "Potions": {"_count": 1}}, "class": {"_count": 1, "without": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "guidance": {"_count": 2, "Percy": {"_count": 1, "Weasley": {"_count": 1}}, "he": {"_count": 1, "ought": {"_count": 1}}}, "Depends": {"_count": 1, "where": {"_count": 1, "you": {"_count": 1}}}, "recommend": {"_count": 2, "Divination": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}}, "Divination": {"_count": 76, "": {"_count": 16, ".": {"_count": 13}, "!": {"_count": 1}, "?": {"_count": 2}}, "are": {"_count": 1, "you": {"_count": 1}}, "Study": {"_count": 1, "of": {"_count": 1}}, "teacher": {"_count": 8, "Harry": {"_count": 1}, "at": {"_count": 1}, "questioned": {"_count": 1}, "who": {"_count": 1}, "and": {"_count": 1}, "though": {"_count": 1}, "now": {"_count": 1}, "Professor": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Hermione": {"_count": 1}}, "the": {"_count": 2, "most": {"_count": 1}, "exam": {"_count": 1}}, "this": {"_count": 2, "year": {"_count": 1}, "afternoon": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "class": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}, "is": {"_count": 2, "one": {"_count": 1}, "turning": {"_count": 1}}, "seems": {"_count": 1, "very": {"_count": 1}}, "means": {"_count": 1, "I": {"_count": 1}}, "lesson": {"_count": 2, "of": {"_count": 1}, "your": {"_count": 1}}, "and": {"_count": 6, "shes": {"_count": 1}, "double": {"_count": 1}, "Care": {"_count": 1}, "announced": {"_count": 1}, "he": {"_count": 1}, "History": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "requires": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "Hermiones": {"_count": 1, "Muggle": {"_count": 1}}, "exam": {"_count": 1, "Professor": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "was": {"_count": 2, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "stuff": {"_count": 1, "then": {"_count": 1}}, "standby": {"_count": 1, "": {"_count": 1}}, "homework": {"_count": 1, "still": {"_count": 1}}, "to": {"_count": 2, "keep": {"_count": 1}, "continue": {"_count": 1}}, "then": {"_count": 1, "returned": {"_count": 1}}, "that": {"_count": 2, "afternoon": {"_count": 1}, "he": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "their": {"_count": 1, "first": {"_count": 1}}, "room": {"_count": 1, "when": {"_count": 1}}, "while": {"_count": 1, "they": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 1, "hate": {"_count": 1}}, "classroom": {"_count": 1, "feeling": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "dont": {"_count": 1}}, "P": {"_count": 1, "Herbology": {"_count": 1}}, "five": {"_count": 1, "minutes": {"_count": 1}}}, "Studies": {"_count": 15, "is": {"_count": 1, "a": {"_count": 1}}, "What": {"_count": 1, "are": {"_count": 1}}, "for": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "class": {"_count": 1, "but": {"_count": 1}}, "essay": {"_count": 1, "Explain": {"_count": 1}}, "and": {"_count": 1, "Divination": {"_count": 1}}, "next": {"_count": 1, "year": {"_count": 1}}, "teacher": {"_count": 2, "at": {"_count": 1}, "Alecto": {"_count": 1}}, "professor": {"_count": 1, "at": {"_count": 1}}, "which": {"_count": 1, "is": {"_count": 1}}}, "option": {"_count": 6, "but": {"_count": 2, "I": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "to": {"_count": 1}}, "mumbled": {"_count": 1, "Neville": {"_count": 1}}, "of": {"_count": 1, "signing": {"_count": 1}}}, "thorough": {"_count": 4, "understanding": {"_count": 2, "of": {"_count": 2}}, "search": {"_count": 1, "of": {"_count": 1}}, "grounding": {"_count": 1, "in": {"_count": 1}}}, "nonmagical": {"_count": 7, "community": {"_count": 1, "particularly": {"_count": 1}}, "world": {"_count": 1, "of": {"_count": 1}}, "fashion": {"_count": 1, "": {"_count": 1}}, "wounds": {"_count": 1, "said": {"_count": 1}}, "population": {"_count": 2, "from": {"_count": 1}, "I": {"_count": 1}}, "people": {"_count": 1, "that": {"_count": 1}}}, "outdoor": {"_count": 1, "type": {"_count": 1, "so": {"_count": 1}}}, "strengths": {"_count": 4, "Harry": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "forms": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}}, "practices": {"_count": 17, "every": {"_count": 2, "night": {"_count": 1}, "time": {"_count": 1}}, "to": {"_count": 2, "five": {"_count": 1}, "keep": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 2}}, "that": {"_count": 2, "ought": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 2, "not": {"_count": 1}, "youve": {"_count": 1}}, "twice": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "their": {"_count": 1, "chances": {"_count": 1}}}, "drier": {"_count": 3, "and": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "cruel": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}}, "Saturdays": {"_count": 5, "match": {"_count": 4, "he": {"_count": 2}, "Oliver": {"_count": 1}, "wont": {"_count": 1}}, "meeting": {"_count": 1, "in": {"_count": 1}}}, "bedclothes": {"_count": 4, "had": {"_count": 2, "been": {"_count": 2}}, "and": {"_count": 1, "Georges": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "strewn": {"_count": 14, "over": {"_count": 2, "the": {"_count": 2}}, "with": {"_count": 3, "the": {"_count": 1}, "wrapping": {"_count": 1}, "various": {"_count": 1}}, "indigo": {"_count": 1, "sky": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 3, "the": {"_count": 3}}, "banks": {"_count": 1, "": {"_count": 1}}, "skies": {"_count": 1, "beyond": {"_count": 1}}, "bar": {"_count": 1, "of": {"_count": 1}}, "ground": {"_count": 1, "that": {"_count": 1}}}, "diarys": {"_count": 2, "gone": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}}, "halfempty": {"_count": 2, "and": {"_count": 1, "joined": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}}, "Made": {"_count": 8, "Easy": {"_count": 1, "": {"_count": 1}}, "one": {"_count": 1, "hell": {"_count": 1}}, "friends": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 1, "so": {"_count": 1}}, "a": {"_count": 1, "potion": {"_count": 1}}, "by": {"_count": 2, "Cormac": {"_count": 1}, "goblins": {"_count": 1}}, "an": {"_count": 1, "excuse": {"_count": 1}}}, "Easy": {"_count": 10, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "now": {"_count": 2, "Harry": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 2, "Fred": {"_count": 1}, "George": {"_count": 1}}, "for": {"_count": 2, "you": {"_count": 2}}, "Greyback": {"_count": 1, "said": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}}, "refreshing": {"_count": 2, "breeze": {"_count": 1, "": {"_count": 1}}, "nap": {"_count": 1, "too": {"_count": 1}}}, "conditions": {"_count": 18, "": {"_count": 7, "!": {"_count": 4}, ".": {"_count": 3}}, "for": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 2}}, "like": {"_count": 1, "this": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "change": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "need": {"_count": 1}}, "to": {"_count": 1, "delve": {"_count": 1}}, "peering": {"_count": 1, "through": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}}, "loading": {"_count": 3, "the": {"_count": 1, "teams": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "trunks": {"_count": 1, "onto": {"_count": 1}}}, "urging": {"_count": 6, "him": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "creatures": {"_count": 1}}, "his": {"_count": 1, "team": {"_count": 1}}, "Neville": {"_count": 1, "on": {"_count": 1}}, "them": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 1, "onward": {"_count": 1}}}, "robbery": {"_count": 2, "but": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "Kill": {"_count": 17, "this": {"_count": 1, "time": {"_count": 1}}, "them": {"_count": 2, "clicked": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 1}, "more": {"_count": 1}, "Cissy": {"_count": 1}}, "the": {"_count": 3, "spare": {"_count": 1}, "snake": {"_count": 2}}, "me": {"_count": 6, "now": {"_count": 1}, "then": {"_count": 3}, "like": {"_count": 1}, "for": {"_count": 1}}, "his": {"_count": 1, "friends": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wideeyed": {"_count": 6, "": {"_count": 4, ".": {"_count": 4}}, "look": {"_count": 1, "he": {"_count": 1}}, "crowd": {"_count": 1, "seemed": {"_count": 1}}}, "distractedly": {"_count": 22, "still": {"_count": 1, "looking": {"_count": 1}}, "Harry": {"_count": 1, "caught": {"_count": 1}}, "through": {"_count": 2, "his": {"_count": 2}}, "In": {"_count": 1, "broad": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "releasing": {"_count": 1, "Mr": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "stomping": {"_count": 1, "over": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "hugging": {"_count": 1, "them": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "what": {"_count": 1, "are": {"_count": 1}}}, "Loads": {"_count": 9, "more": {"_count": 1, "than": {"_count": 1}}, "of": {"_count": 6, "them": {"_count": 2}, "foreigners": {"_count": 1}, "people": {"_count": 2}, "stuff": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "dont": {"_count": 1, "": {"_count": 1}}}, "shrugging": {"_count": 33, "": {"_count": 24, ".": {"_count": 24}}, "or": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "continuing": {"_count": 1}}, "but": {"_count": 4, "we": {"_count": 1}, "personally": {"_count": 1}, "she": {"_count": 1}, "Harry": {"_count": 1}}, "his": {"_count": 1, "massive": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}, "its": {"_count": 1, "their": {"_count": 1}}}, "irresolute": {"_count": 3, "trying": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}}, "exiting": {"_count": 3, "through": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "classrooms": {"_count": 1}}}, "raced": {"_count": 8, "up": {"_count": 2, "to": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "Bludger": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "one": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "alongside": {"_count": 1, "them": {"_count": 1}}}, "tumultuous": {"_count": 6, "applause": {"_count": 4, "": {"_count": 2}, "of": {"_count": 1}, "from": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "roars": {"_count": 1, "and": {"_count": 1}}}, "warmup": {"_count": 2, "flight": {"_count": 1, "around": {"_count": 1}}, "act": {"_count": 1, "compared": {"_count": 1}}}, "released": {"_count": 36, "the": {"_count": 4, "balls": {"_count": 1}, "Snitch": {"_count": 1}, "elves": {"_count": 1}, "contents": {"_count": 1}}, "him": {"_count": 10, "": {"_count": 5}, "to": {"_count": 1}, "at": {"_count": 1}, "Dobby": {"_count": 1}, "falling": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "exactly": {"_count": 1, "where": {"_count": 1}}, "it": {"_count": 2, "and": {"_count": 1}, "if": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "Harry": {"_count": 6, "as": {"_count": 1}, "looking": {"_count": 1}, "raised": {"_count": 1}, "and": {"_count": 1}, "leaned": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 1}, "then": {"_count": 1}}, "Neville": {"_count": 1, "though": {"_count": 1}}, "Merope": {"_count": 1, "she": {"_count": 1}}, "himself": {"_count": 1, "from": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}, "Wormtail": {"_count": 1, "too": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}}, "canary": {"_count": 3, "yellow": {"_count": 2, "were": {"_count": 1}, "robes": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "megaphone": {"_count": 9, "": {"_count": 3, ".": {"_count": 3}}, "addressing": {"_count": 1, "the": {"_count": 1}}, "All": {"_count": 1, "students": {"_count": 1}}, "and": {"_count": 1, "beckoned": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "dancing": {"_count": 1, "out": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}}, "addressing": {"_count": 8, "the": {"_count": 5, "packed": {"_count": 1}, "other": {"_count": 1}, "Death": {"_count": 1}, "witch": {"_count": 1}, "unconscious": {"_count": 1}}, "somebody": {"_count": 1, "both": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}}, "devastated": {"_count": 7, "landed": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "he": {"_count": 1, "said": {"_count": 1}}, "by": {"_count": 1, "her": {"_count": 1}}}, "detach": {"_count": 4, "himself": {"_count": 1, "from": {"_count": 1}}, "his": {"_count": 2, "legs": {"_count": 1}, "own": {"_count": 1}}, "the": {"_count": 1, "envelope": {"_count": 1}}}, "complaining": {"_count": 17, "crowd": {"_count": 1, "he": {"_count": 1}}, "loudly": {"_count": 1, "about": {"_count": 1}}, "any": {"_count": 1, "excuse": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "about": {"_count": 4, "the": {"_count": 1}, "myself": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}, "in": {"_count": 1, "low": {"_count": 1}}, "merely": {"_count": 1, "attempting": {"_count": 1}}, "one": {"_count": 1, "surly": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}}, "anybodys": {"_count": 4, "office": {"_count": 1, "this": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "bought": {"_count": 1, "the": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}}, "sixthyear": {"_count": 6, "girl": {"_count": 2, "with": {"_count": 1}, "who": {"_count": 1}}, "girls": {"_count": 2, "were": {"_count": 1}, "who": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "compartment": {"_count": 1, "and": {"_count": 1}}}, "HermioneY": {"_count": 1, "Ron": {"_count": 1, "groaned": {"_count": 1}}}, "utterly": {"_count": 28, "still": {"_count": 1, "her": {"_count": 1}}, "bewildered": {"_count": 8, "": {"_count": 5}, "his": {"_count": 1}, "as": {"_count": 1}, "but": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "failed": {"_count": 1, "Uncle": {"_count": 1}}, "unsurprised": {"_count": 1, "by": {"_count": 1}}, "relaxed": {"_count": 1, "": {"_count": 1}}, "uncivilized": {"_count": 1, "cant": {"_count": 1}}, "delighted": {"_count": 1, "": {"_count": 1}}, "mad": {"_count": 2, "": {"_count": 2}}, "worthless": {"_count": 1, "": {"_count": 1}}, "perplexed": {"_count": 2, "": {"_count": 2}}, "woebegone": {"_count": 1, "": {"_count": 1}}, "terrified": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "bizarre": {"_count": 1, "his": {"_count": 1}}, "bamboozled": {"_count": 1, "by": {"_count": 1}}, "sure": {"_count": 1, "he": {"_count": 1}}, "bemused": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "palpably": {"_count": 1}}}, "escorted": {"_count": 8, "to": {"_count": 1, "each": {"_count": 1}}, "the": {"_count": 1, "class": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 1, "MadEye": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 1, "down": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "unaccompanied": {"_count": 3, "by": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "postponed": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "once": {"_count": 1, "Snape": {"_count": 1}}, "my": {"_count": 1, "departure": {"_count": 1}}}, "distressed": {"_count": 8, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "but": {"_count": 1, "once": {"_count": 1}}, "Im": {"_count": 1, "trying": {"_count": 1}}, "to": {"_count": 1, "tell": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "nods": {"_count": 4, "and": {"_count": 2, "scattered": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}}, "views": {"_count": 9, "heard": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 2, "this": {"_count": 1}, "some": {"_count": 1}}, "are": {"_count": 1, "anything": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "ought": {"_count": 1, "Hogwarts": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}}, "Penelope": {"_count": 10, "Clearwater": {"_count": 5, "shes": {"_count": 1}, "said": {"_count": 2}, "": {"_count": 1}, "asked": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "put": {"_count": 1, "the": {"_count": 1}}, "excuse": {"_count": 1, "me": {"_count": 1}}}, "Clearwater": {"_count": 5, "shes": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 2, "Ginny": {"_count": 1}, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "asked": {"_count": 1, "if": {"_count": 1}}}, "halflistening": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "inherited": {"_count": 16, "just": {"_count": 1, "one": {"_count": 1}}, "from": {"_count": 4, "his": {"_count": 3}, "Sirius": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "her": {"_count": 1, "brutal": {"_count": 1}}, "his": {"_count": 1, "fathers": {"_count": 1}}, "the": {"_count": 1, "house": {"_count": 1}}, "He": {"_count": 1, "flicked": {"_count": 1}}, "your": {"_count": 2, "mothers": {"_count": 2}}, "an": {"_count": 1, "old": {"_count": 1}}, "my": {"_count": 1, "greatgreatgrandmothers": {"_count": 1}}, "Lilys": {"_count": 1, "eyes": {"_count": 1}}}, "enjoyable": {"_count": 15, "": {"_count": 5, ".": {"_count": 5}}, "affair": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "more": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "morning": {"_count": 1, "walking": {"_count": 1}}, "he": {"_count": 1, "loaded": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "tasks": {"_count": 1, "said": {"_count": 1}}, "first": {"_count": 1, "week": {"_count": 1}}}, "Teachers": {"_count": 3, "prefects": {"_count": 1, "and": {"_count": 1}}, "found": {"_count": 1, "excuses": {"_count": 1}}, "are": {"_count": 1, "hereby": {"_count": 1}}}, "stubbed": {"_count": 1, "his": {"_count": 1, "toe": {"_count": 1}}}, "yards": {"_count": 19, "from": {"_count": 4, "the": {"_count": 1}, "Hagrids": {"_count": 2}, "them": {"_count": 1}}, "away": {"_count": 7, "tethered": {"_count": 1}, "": {"_count": 4}, "discarded": {"_count": 1}, "from": {"_count": 1}}, "and": {"_count": 1, "more": {"_count": 1}}, "they": {"_count": 1, "reached": {"_count": 1}}, "apart": {"_count": 2, "he": {"_count": 1}, "in": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}}, "Thankfully": {"_count": 1, "Snape": {"_count": 1, "sneezed": {"_count": 1}}}, "lowering": {"_count": 25, "the": {"_count": 4, "weapon": {"_count": 1}, "Extendable": {"_count": 1}, "quill": {"_count": 1}, "newspaper": {"_count": 1}}, "his": {"_count": 13, "voice": {"_count": 7}, "wand": {"_count": 3}, "hand": {"_count": 1}, "hands": {"_count": 2}}, "her": {"_count": 5, "face": {"_count": 1}, "hands": {"_count": 1}, "voice": {"_count": 2}, "glass": {"_count": 1}}, "its": {"_count": 2, "hood": {"_count": 1}, "hooded": {"_count": 1}}, "Harrys": {"_count": 1, "spirits": {"_count": 1}}}, "Nothin": {"_count": 3, "nothin": {"_count": 1, "Hagrid": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "Dumbledore": {"_count": 1, "won": {"_count": 1}}}, "expectin": {"_count": 1, "doesn": {"_count": 1, "matter": {"_count": 1}}}, "doesn": {"_count": 7, "matter": {"_count": 1, "Sit": {"_count": 1}}, "bow": {"_count": 1, "then": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "notice": {"_count": 1, "us": {"_count": 1}}, "cover": {"_count": 1, "it": {"_count": 1}}, "really": {"_count": 1, "know": {"_count": 1}}, "know": {"_count": 1, "who": {"_count": 1}}}, "panicstricken": {"_count": 6, "looks": {"_count": 1, "then": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "she": {"_count": 1, "felt": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "rumpled": {"_count": 3, "gray": {"_count": 2, "hair": {"_count": 2}}, "up": {"_count": 1, "his": {"_count": 1}}}, "pinstriped": {"_count": 13, "suit": {"_count": 1, "a": {"_count": 1}}, "cloak": {"_count": 9, "looked": {"_count": 1}, "and": {"_count": 3}, "": {"_count": 1}, "Cornelius": {"_count": 1}, "was": {"_count": 1}, "a": {"_count": 1}, "under": {"_count": 1}}, "trousers": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}}, "limegreen": {"_count": 10, "bowler": {"_count": 6, "": {"_count": 1}, "hat": {"_count": 5}}, "robes": {"_count": 2, "were": {"_count": 1}, "walked": {"_count": 1}}, "blur": {"_count": 1, "": {"_count": 1}}, "disk": {"_count": 1, "clutched": {"_count": 1}}}, "bowler": {"_count": 26, "": {"_count": 2, ".": {"_count": 2}}, "waited": {"_count": 1, "for": {"_count": 1}}, "hat": {"_count": 19, "he": {"_count": 1}, "said": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 5}, "in": {"_count": 2}, "onto": {"_count": 1}, "though": {"_count": 1}, "MadEye": {"_count": 1}, "pulled": {"_count": 1}, "gave": {"_count": 1}, "to": {"_count": 1}, "into": {"_count": 1}, "still": {"_count": 1}, "as": {"_count": 1}}, "tilted": {"_count": 1, "low": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}, "rapidly": {"_count": 1, "in": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}}, "boss": {"_count": 10, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "was": {"_count": 2, "next": {"_count": 1}, "being": {"_count": 1}}, "us": {"_count": 1, "Fred": {"_count": 1}}, "yet": {"_count": 1, "Harry": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "that": {"_count": 1, "No": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "elbowed": {"_count": 6, "Ron": {"_count": 1, "hard": {"_count": 1}}, "past": {"_count": 1, "Hermione": {"_count": 1}}, "Bole": {"_count": 1, "in": {"_count": 1}}, "him": {"_count": 2, "in": {"_count": 1}, "hard": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}}, "tones": {"_count": 19, "": {"_count": 5, ".": {"_count": 5}}, "of": {"_count": 4, "outrage": {"_count": 2}, "great": {"_count": 1}, "mock": {"_count": 1}}, "And": {"_count": 1, "dont": {"_count": 1}}, "though": {"_count": 1, "her": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "quite": {"_count": 1, "forgetting": {"_count": 1}}, "I": {"_count": 1, "will": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "noticing": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 1, "always": {"_count": 1}}}, "Thingsve": {"_count": 1, "gone": {"_count": 1, "far": {"_count": 1}}}, "confidence": {"_count": 25, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "a": {"_count": 1}}, "that": {"_count": 4, "the": {"_count": 1}, "this": {"_count": 1}, "they": {"_count": 1}, "Ariana": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 5, "you": {"_count": 2}, "him": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "from": {"_count": 1, "somebody": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "I": {"_count": 1, "told": {"_count": 1}}, "and": {"_count": 2, "unfortunately": {"_count": 1}, "did": {"_count": 1}}, "all": {"_count": 1, "through": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "governors": {"_count": 12, "have": {"_count": 1, "been": {"_count": 1}}, "feel": {"_count": 1, "its": {"_count": 1}}, "Fudge": {"_count": 1, "said": {"_count": 1}}, "want": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "suspended": {"_count": 1, "you": {"_count": 1}}, "contacted": {"_count": 1, "me": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "who": {"_count": 1, "will": {"_count": 1}}}, "fidgeting": {"_count": 5, "with": {"_count": 2, "his": {"_count": 2}}, "and": {"_count": 1, "the": {"_count": 1}}, "restlessly": {"_count": 1, "only": {"_count": 1}}, "stopped": {"_count": 1, "": {"_count": 1}}}, "precaution": {"_count": 7, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "like": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "apology": {"_count": 7, "Not": {"_count": 1, "Azkaban": {"_count": 1}}, "aside": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "Professor": {"_count": 1}}, "then": {"_count": 1, "lowered": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "when": {"_count": 1, "that": {"_count": 1}}}, "rap": {"_count": 4, "on": {"_count": 3, "the": {"_count": 3}}, "hard": {"_count": 1, "on": {"_count": 1}}}, "swathed": {"_count": 2, "in": {"_count": 2, "a": {"_count": 1}, "mist": {"_count": 1}}}, "growl": {"_count": 8, "": {"_count": 5, ".": {"_count": 5}}, "again": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 1, "turned": {"_count": 1}}, "than": {"_count": 1, "they": {"_count": 1}}}, "approvingly": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "soaring": {"_count": 1, "around": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "Dreadful": {"_count": 5, "thing": {"_count": 1, "Dumbledore": {"_count": 1}}, "Denizens": {"_count": 1, "of": {"_count": 1}}, "tempers": {"_count": 1, "": {"_count": 1}}, "dreadful": {"_count": 1, "said": {"_count": 1}}, "D": {"_count": 1, "Acceptable": {"_count": 1}}}, "Suspension": {"_count": 1, "youll": {"_count": 1, "find": {"_count": 1}}}, "signatures": {"_count": 1, "on": {"_count": 1, "it": {"_count": 1}}}, "loss": {"_count": 39, "that": {"_count": 1, "would": {"_count": 1}}, "of": {"_count": 11, "his": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 1}, "Sirius": {"_count": 2}, "Marvolos": {"_count": 1}, "their": {"_count": 1}, "Ariana": {"_count": 1}, "temper": {"_count": 1}, "one": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 7}, "!": {"_count": 1}}, "for": {"_count": 5, "anything": {"_count": 2}, "what": {"_count": 3}}, "to": {"_count": 4, "see": {"_count": 1}, "understand": {"_count": 1}, "explain": {"_count": 1}, "know": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "is": {"_count": 3, "devastating": {"_count": 1}, "it": {"_count": 1}, "as": {"_count": 1}}, "poring": {"_count": 1, "over": {"_count": 1}}, "they": {"_count": 1, "have": {"_count": 1}}, "and": {"_count": 3, "of": {"_count": 1}, "at": {"_count": 1}, "a": {"_count": 1}}, "my": {"_count": 1, "dreadful": {"_count": 1}}}, "appointment": {"_count": 16, "or": {"_count": 1, "suspension": {"_count": 1}}, "Dumbledore": {"_count": 1, "continued": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 4, "Professor": {"_count": 2}, "Bob": {"_count": 1}, "a": {"_count": 1}}, "was": {"_count": 1, "contested": {"_count": 1}}, "has": {"_count": 1, "largely": {"_count": 1}}, "and": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "we": {"_count": 1, "met": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "I": {"_count": 1, "did": {"_count": 1}}}, "voted": {"_count": 4, "Hagrid": {"_count": 1, "leapt": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "by": {"_count": 1}}, "for": {"_count": 1, "Muggle": {"_count": 1}}}, "grazing": {"_count": 5, "the": {"_count": 1, "ceiling": {"_count": 1}}, "nonchalantly": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "arms": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "threaten": {"_count": 9, "an": {"_count": 1, "blackmail": {"_count": 1}}, "me": {"_count": 2, "with": {"_count": 1}, "now": {"_count": 1}}, "him": {"_count": 2, "with": {"_count": 2}}, "the": {"_count": 2, "life": {"_count": 1}, "health": {"_count": 1}}, "Borgin": {"_count": 1, "to": {"_count": 1}}, "ter": {"_count": 1, "break": {"_count": 1}}}, "blackmail": {"_count": 7, "before": {"_count": 1, "they": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "illegal": {"_count": 1, "broom": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}}, "advise": {"_count": 11, "you": {"_count": 6, "not": {"_count": 2}, "Lucius": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 2}}, "them": {"_count": 1, "on": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "Transfiguration": {"_count": 1, "because": {"_count": 1}}, "incidentally": {"_count": 1, "bedbugs": {"_count": 1}}}, "cower": {"_count": 2, "and": {"_count": 1, "whimper": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "Therell": {"_count": 7, "be": {"_count": 7, "killin": {"_count": 1}, "an": {"_count": 2}, "only": {"_count": 1}, "great": {"_count": 1}, "panic": {"_count": 1}, "a": {"_count": 1}}}, "removal": {"_count": 5, "Lucius": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "privileges": {"_count": 1}, "his": {"_count": 1}}}, "Admirable": {"_count": 1, "sentiments": {"_count": 1, "said": {"_count": 1}}}, "sentiments": {"_count": 1, "said": {"_count": 1, "Malfoy": {"_count": 1}}}, "bowing": {"_count": 23, "": {"_count": 2, ".": {"_count": 2}}, "deeply": {"_count": 3, "": {"_count": 1}, "to": {"_count": 1}, "again": {"_count": 1}}, "nervously": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 4, "Mrs": {"_count": 1}, "her": {"_count": 2}, "Fred": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "curtsying": {"_count": 3}, "disappeared": {"_count": 1}}, "houseelves": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "low": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "low": {"_count": 2, "again": {"_count": 1}, "to": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}}, "individual": {"_count": 7, "way": {"_count": 1, "of": {"_count": 1}}, "shots": {"_count": 1, "": {"_count": 1}}, "headlights": {"_count": 1, "and": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}, "appointments": {"_count": 1, "are": {"_count": 1}}, "spirit": {"_count": 1, "a": {"_count": 1}}, "players": {"_count": 1, "being": {"_count": 1}}}, "successor": {"_count": 4, "will": {"_count": 1, "manage": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "Head": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "killins": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "someonell": {"_count": 1, "need": {"_count": 1, "ter": {"_count": 1}}}, "ARAGOG": {"_count": 1, "Summer": {"_count": 1, "was": {"_count": 1}}}, "Summer": {"_count": 2, "was": {"_count": 1, "creeping": {"_count": 1}}, "term": {"_count": 1, "in": {"_count": 1}}}, "alike": {"_count": 9, "turned": {"_count": 1, "periwinkle": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "upon": {"_count": 1, "Dumbledore": {"_count": 1}}, "Aberforth": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "red": {"_count": 1}}, "were": {"_count": 1, "being": {"_count": 1}}}, "periwinkle": {"_count": 1, "blue": {"_count": 1, "and": {"_count": 1}}}, "bloom": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "their": {"_count": 1}}}, "severely": {"_count": 17, "through": {"_count": 1, "a": {"_count": 1}}, "haunted": {"_count": 1, "building": {"_count": 1}}, "shaken": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "scratched": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 2, "it": {"_count": 1}, "they": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "The": {"_count": 1, "walls": {"_count": 1}}}, "warming": {"_count": 9, "the": {"_count": 1, "castle": {"_count": 1}}, "pans": {"_count": 1, "between": {"_count": 1}}, "stews": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 2, "hands": {"_count": 1}, "plates": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "wide": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}}, "mullioned": {"_count": 5, "windows": {"_count": 5, "": {"_count": 2}, "at": {"_count": 1}, "on": {"_count": 1}, "grew": {"_count": 1}}}, "unnatural": {"_count": 11, "and": {"_count": 1, "was": {"_count": 1}}, "hush": {"_count": 1, "fell": {"_count": 1}}, "powers": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "little": {"_count": 1, "beasts": {"_count": 1}}, "size": {"_count": 1, "was": {"_count": 1}}, "darkness": {"_count": 1, "fell": {"_count": 1}}, "interest": {"_count": 1, "in": {"_count": 1}}, "chill": {"_count": 2, "that": {"_count": 1}, "a": {"_count": 1}}, "cold": {"_count": 1, "begin": {"_count": 1}}}, "Hog": {"_count": 11, "warts": {"_count": 9, "to": {"_count": 2}, "": {"_count": 3}, "School": {"_count": 1}, "may": {"_count": 1}, "said": {"_count": 1}, "having": {"_count": 1}}, "at": {"_count": 1, "my": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}}, "warts": {"_count": 10, "to": {"_count": 2, "those": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "School": {"_count": 1, "of": {"_count": 1}}, "may": {"_count": 1, "soon": {"_count": 1}}, "said": {"_count": 1, "Weasley": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "having": {"_count": 1, "been": {"_count": 1}}}, "hampered": {"_count": 2, "of": {"_count": 1, "course": {"_count": 1}}, "slightly": {"_count": 1, "by": {"_count": 1}}}, "shepherded": {"_count": 4, "from": {"_count": 1, "class": {"_count": 1}}, "by": {"_count": 2, "Ron": {"_count": 1}, "a": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}}, "irksome": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}, "fly": {"_count": 2, "": {"_count": 2}}, "because": {"_count": 1, "they": {"_count": 1}}}, "atmosphere": {"_count": 22, "of": {"_count": 3, "terror": {"_count": 1}, "feverish": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 3, "so": {"_count": 1}, "not": {"_count": 1}, "thicker": {"_count": 1}}, "inside": {"_count": 1, "number": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 4}}, "seemed": {"_count": 1, "quite": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "closely": {"_count": 1, "resembled": {"_count": 1}}, "drove": {"_count": 1, "nearly": {"_count": 1}}, "lightened": {"_count": 1, "considerably": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "changed": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "after": {"_count": 1}}}, "appointed": {"_count": 13, "Head": {"_count": 1, "Boy": {"_count": 1}}, "I": {"_count": 1, "do": {"_count": 1}}, "me": {"_count": 2, "your": {"_count": 2}}, "executioner": {"_count": 1, "Walden": {"_count": 1}}, "them": {"_count": 1, "secretary": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 2}}, "by": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "Muggleborn": {"_count": 1, "Registration": {"_count": 1}}, "headmaster": {"_count": 1, "in": {"_count": 1}}}, "gloating": {"_count": 10, "to": {"_count": 1, "Crabbe": {"_count": 1}}, "voice": {"_count": 2, "had": {"_count": 1}, "from": {"_count": 1}}, "at": {"_count": 1, "every": {"_count": 1}}, "over": {"_count": 1, "Harrys": {"_count": 1}}, "smile": {"_count": 2, "": {"_count": 1}, "froze": {"_count": 1}}, "enjoyment": {"_count": 1, "as": {"_count": 1}}, "pleasure": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "of": {"_count": 1}}}, "troubling": {"_count": 7, "to": {"_count": 4, "keep": {"_count": 3}, "do": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "further": {"_count": 1}}, "you": {"_count": 1, "I": {"_count": 1}}}, "suppress": {"_count": 16, "a": {"_count": 5, "thinlipped": {"_count": 1}, "grin": {"_count": 2}, "suspicion": {"_count": 1}, "shiver": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 5, "suspicion": {"_count": 1}, "feeling": {"_count": 1}, "question": {"_count": 1}, "urge": {"_count": 1}, "exhilaration": {"_count": 1}}, "her": {"_count": 1, "giggles": {"_count": 1}}, "unpleasant": {"_count": 1, "memories": {"_count": 1}}, "all": {"_count": 1, "evening": {"_count": 1}}, "news": {"_count": 1, "about": {"_count": 1}}, "any": {"_count": 1, "sign": {"_count": 1}}}, "thinlipped": {"_count": 1, "smile": {"_count": 1, "": {"_count": 1}}}, "vote": {"_count": 6, "sir": {"_count": 1, "if": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "of": {"_count": 1, "confidence": {"_count": 1}}, "on": {"_count": 2, "it": {"_count": 2}}, "for": {"_count": 1, "Minister": {"_count": 1}}}, "fortunately": {"_count": 6, "not": {"_count": 1, "spotting": {"_count": 1}}, "she": {"_count": 1, "soon": {"_count": 1}}, "they": {"_count": 1, "got": {"_count": 1}}, "the": {"_count": 1, "damage": {"_count": 1}}, "however": {"_count": 1, "Harrys": {"_count": 1}}, "neither": {"_count": 1, "Dedalus": {"_count": 1}}}, "vomit": {"_count": 9, "into": {"_count": 1, "his": {"_count": 1}}, "spectacularly": {"_count": 1, "into": {"_count": 1}}, "at": {"_count": 1, "regular": {"_count": 1}}, "hitting": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "develop": {"_count": 1, "dangerous": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "balled": {"_count": 1}}}, "Pity": {"_count": 6, "it": {"_count": 1, "wasnt": {"_count": 1}}, "sugar": {"_count": 1, "makes": {"_count": 1}}, "you": {"_count": 2, "cant": {"_count": 1}, "didnt": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "living": {"_count": 1}}}, "attempts": {"_count": 26, "to": {"_count": 20, "reach": {"_count": 1}, "protect": {"_count": 1}, "eat": {"_count": 1}, "get": {"_count": 2}, "punish": {"_count": 1}, "put": {"_count": 1}, "remove": {"_count": 1}, "hex": {"_count": 1}, "dissuade": {"_count": 1}, "teach": {"_count": 1}, "civilize": {"_count": 1}, "fulfill": {"_count": 1}, "position": {"_count": 1}, "find": {"_count": 1}, "divine": {"_count": 1}, "free": {"_count": 1}, "peel": {"_count": 1}, "leave": {"_count": 1}, "barricade": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "Muggleborns": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}}, "unnoticed": {"_count": 13, "": {"_count": 5, ".": {"_count": 5}}, "for": {"_count": 1, "long": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "unquestioned": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "by": {"_count": 4, "any": {"_count": 1}, "either": {"_count": 3}}}, "classs": {"_count": 6, "heads": {"_count": 1, "and": {"_count": 1}}, "amazement": {"_count": 1, "Hermione": {"_count": 1}}, "horror": {"_count": 1, "Hagrid": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}, "attention": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}}, "pruning": {"_count": 4, "the": {"_count": 1, "Abyssinian": {"_count": 1}}, "shears": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wherever": {"_count": 1, "we": {"_count": 1}}}, "Abyssinian": {"_count": 1, "Shrivelfigs": {"_count": 1, "": {"_count": 1}}}, "Shrivelfigs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "armful": {"_count": 6, "of": {"_count": 6, "withered": {"_count": 1}, "freshly": {"_count": 1}, "broomsticks": {"_count": 1}, "heavy": {"_count": 1}, "bones": {"_count": 1}, "leafy": {"_count": 1}}}, "stalks": {"_count": 1, "onto": {"_count": 1, "the": {"_count": 1}}}, "formally": {"_count": 3, "I": {"_count": 1, "just": {"_count": 1}}, "charged": {"_count": 1, "and": {"_count": 1}}, "composed": {"_count": 1, "above": {"_count": 1}}}, "apologize": {"_count": 10, "for": {"_count": 5, "all": {"_count": 1}, "the": {"_count": 2}, "bothering": {"_count": 1}, "our": {"_count": 1}}, "endlessly": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 1, "suddenly": {"_count": 1}}, "Sirius": {"_count": 1, "mumbled": {"_count": 1}}, "Lily": {"_count": 1, "shouted": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}}, "pudgy": {"_count": 4, "hand": {"_count": 4, "and": {"_count": 2}, "": {"_count": 1}, "to": {"_count": 1}}}, "Shrivelfig": {"_count": 1, "as": {"_count": 1, "Harry": {"_count": 1}}}, "character": {"_count": 9, "said": {"_count": 1, "Ernie": {"_count": 1}}, "and": {"_count": 3, "not": {"_count": 1}, "aptitude": {"_count": 2}}, "somehow": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 1, "a": {"_count": 1}}, "though": {"_count": 1, "said": {"_count": 1}}}, "forgiven": {"_count": 6, "Ernie": {"_count": 1, "as": {"_count": 1}}, "Cedric": {"_count": 1, "for": {"_count": 1}}, "him": {"_count": 2, "for": {"_count": 1}, "then": {"_count": 1}}, "we": {"_count": 1, "who": {"_count": 1}}, "and": {"_count": 1, "you": {"_count": 1}}}, "readily": {"_count": 2, "as": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "unnaturally": {"_count": 14, "straight": {"_count": 2, "line": {"_count": 1}, "and": {"_count": 1}}, "high": {"_count": 2, "voice": {"_count": 2}}, "large": {"_count": 1, "": {"_count": 1}}, "longfingered": {"_count": 1, "hands": {"_count": 1}}, "quiet": {"_count": 1, "voice": {"_count": 1}}, "highpitched": {"_count": 1, "voice": {"_count": 1}}, "loudly": {"_count": 1, "Youll": {"_count": 1}}, "fast": {"_count": 1, "Harrys": {"_count": 1}}, "tidy": {"_count": 1, "bedroom": {"_count": 1}}, "somber": {"_count": 1, "demeanor": {"_count": 1}}, "silent": {"_count": 1, "": {"_count": 1}}, "loud": {"_count": 1, "": {"_count": 1}}}, "shortest": {"_count": 3, "route": {"_count": 1, "to": {"_count": 1}}, "life": {"_count": 1, "line": {"_count": 1}}, "letter": {"_count": 1, "Sirius": {"_count": 1}}}, "prearranged": {"_count": 2, "meeting": {"_count": 1, "": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}}, "shears": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "progress": {"_count": 30, "with": {"_count": 2, "his": {"_count": 2}}, "up": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 4, "palmistry": {"_count": 1}, "the": {"_count": 1}, "see": {"_count": 1}, "using": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "impeded": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "though": {"_count": 1, "their": {"_count": 1}}, "its": {"_count": 1, "head": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 1, "will": {"_count": 1}}, "for": {"_count": 1, "progresss": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "as": {"_count": 1, "though": {"_count": 1}}, "at": {"_count": 1, "Occlumency": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 2, "when": {"_count": 1}, "\u2018three": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "clear": {"_count": 1, "And": {"_count": 1}}}, "failing": {"_count": 9, "to": {"_count": 6, "look": {"_count": 2}, "stifle": {"_count": 1}, "notice": {"_count": 1}, "keep": {"_count": 1}, "discover": {"_count": 1}}, "him": {"_count": 1, "on": {"_count": 1}}, "extravagantly": {"_count": 1, "": {"_count": 1}}, "sun": {"_count": 1, "": {"_count": 1}}}, "pursued": {"_count": 9, "their": {"_count": 1, "fixed": {"_count": 1}}, "by": {"_count": 2, "Crookshanks": {"_count": 1}, "a": {"_count": 1}}, "him": {"_count": 3, "through": {"_count": 1}, "across": {"_count": 2}}, "them": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "you": {"_count": 1, "recognized": {"_count": 1}}}, "unhappier": {"_count": 1, "about": {"_count": 1, "that": {"_count": 1}}}, "lagged": {"_count": 3, "behind": {"_count": 3, "the": {"_count": 1}, "pretending": {"_count": 1}, "after": {"_count": 1}}}, "Preferring": {"_count": 1, "not": {"_count": 1, "to": {"_count": 1}}}, "grimmer": {"_count": 1, "than": {"_count": 1, "usual": {"_count": 1}}}, "buoyant": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "rosyfaced": {"_count": 1}}, "fashion": {"_count": 1, "Ron": {"_count": 1}}, "spirits": {"_count": 1, "The": {"_count": 1}}}, "Says": {"_count": 12, "who": {"_count": 3, "": {"_count": 3}}, "he": {"_count": 3, "cant": {"_count": 1}, "heard": {"_count": 1}, "was": {"_count": 1}}, "hes": {"_count": 1, "taken": {"_count": 1}}, "me": {"_count": 1, "said": {"_count": 1}}, "so": {"_count": 1, "on": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "hell": {"_count": 1, "end": {"_count": 1}}, "Im": {"_count": 1, "starting": {"_count": 1}}}, "selfsatisfied": {"_count": 4, "tone": {"_count": 1, "": {"_count": 1}}, "hiss": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 1, "she": {"_count": 1}}, "as": {"_count": 1, "was": {"_count": 1}}}, "midsentence": {"_count": 3, "when": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "hurried": {"_count": 1}}}, "cheeriness": {"_count": 1, "his": {"_count": 1, "hints": {"_count": 1}}}, "hints": {"_count": 8, "that": {"_count": 3, "he": {"_count": 2}, "hes": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "Skeeters": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "and": {"_count": 1, "shortcuts": {"_count": 1}}}, "irritated": {"_count": 17, "Harry": {"_count": 2, "so": {"_count": 1}, "because": {"_count": 1}}, "the": {"_count": 1, "rest": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "this": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "as": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "voice": {"_count": 1, "cracked": {"_count": 1}}, "more": {"_count": 1, "quickly": {"_count": 1}}, "and": {"_count": 1, "shes": {"_count": 1}}}, "yearned": {"_count": 4, "to": {"_count": 3, "throw": {"_count": 1}, "hear": {"_count": 1}, "see": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}}, "contented": {"_count": 5, "himself": {"_count": 4, "with": {"_count": 4}}, "as": {"_count": 1, "though": {"_count": 1}}}, "scrawling": {"_count": 2, "a": {"_count": 1, "note": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}}, "stiffen": {"_count": 1, "his": {"_count": 1, "resolve": {"_count": 1}}}, "resolve": {"_count": 1, "and": {"_count": 1, "he": {"_count": 1}}}, "challenged": {"_count": 2, "Harry": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "moonlit": {"_count": 7, "grounds": {"_count": 1, "": {"_count": 1}}, "stroll": {"_count": 1, "with": {"_count": 1}}, "corridors": {"_count": 1, "were": {"_count": 1}}, "cactus": {"_count": 1, "": {"_count": 1}}, "corridor": {"_count": 1, "": {"_count": 1}}, "sea": {"_count": 1, "and": {"_count": 1}}, "lane": {"_count": 1, "": {"_count": 1}}}, "notve": {"_count": 2, "been": {"_count": 1, "going": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}}, "general": {"_count": 24, "direction": {"_count": 1, "but": {"_count": 1}}, "wish": {"_count": 1, "of": {"_count": 1}}, "murmur": {"_count": 1, "of": {"_count": 1}}, "advice": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "idea": {"_count": 1, "she": {"_count": 1}}, "conversation": {"_count": 1, "": {"_count": 1}}, "picture": {"_count": 1, "from": {"_count": 1}}, "standard": {"_count": 1, "of": {"_count": 1}}, "agreement": {"_count": 1, "": {"_count": 1}}, "performance": {"_count": 1, "improved": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "applause": {"_count": 1, "on": {"_count": 1}}, "upheaval": {"_count": 1, "to": {"_count": 1}}, "indignation": {"_count": 1, "a": {"_count": 1}}, "debris": {"_count": 1, "at": {"_count": 1}}, "cry": {"_count": 1, "of": {"_count": 1}}, "area": {"_count": 1, "just": {"_count": 1}}, "outcry": {"_count": 1, "A": {"_count": 1}}, "effect": {"_count": 1, "was": {"_count": 1}}, "murmuring": {"_count": 1, "broken": {"_count": 1}}, "however": {"_count": 1, "where": {"_count": 1}}, "air": {"_count": 1, "of": {"_count": 1}}, "astonishment": {"_count": 1, "": {"_count": 1}}}, "sorrylooking": {"_count": 1, "with": {"_count": 1, "its": {"_count": 1}}}, "Worried": {"_count": 4, "he": {"_count": 1, "might": {"_count": 1}}, "abou": {"_count": 1, "Buckbeak": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}}, "glued": {"_count": 10, "his": {"_count": 1, "teeth": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 4}, "its": {"_count": 1}}, "together": {"_count": 2, "by": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "tongue": {"_count": 1}}, "itself": {"_count": 1, "to": {"_count": 1}}}, "pitchdark": {"_count": 2, "forest": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "gripping": {"_count": 1}}}, "sycamore": {"_count": 2, "tree": {"_count": 2, "": {"_count": 2}}}, "Lumos": {"_count": 17, "and": {"_count": 5, "a": {"_count": 1}, "saw": {"_count": 1}, "heard": {"_count": 1}, "their": {"_count": 1}, "started": {"_count": 1}}, "Harry": {"_count": 2, "muttered": {"_count": 1}, "whispered": {"_count": 1}}, "A": {"_count": 1, "beam": {"_count": 1}}, "he": {"_count": 2, "whispered": {"_count": 2}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "Incendio": {"_count": 1, "said": {"_count": 1}}}, "solitary": {"_count": 9, "spiders": {"_count": 1, "were": {"_count": 1}}, "way": {"_count": 1, "up": {"_count": 1}}, "luncheon": {"_count": 1, "and": {"_count": 1}}, "supper": {"_count": 1, "": {"_count": 1}}, "ray": {"_count": 1, "of": {"_count": 1}}, "figure": {"_count": 1, "upon": {"_count": 1}}, "journey": {"_count": 1, "": {"_count": 1}}, "lamp": {"_count": 1, "they": {"_count": 1}}, "oil": {"_count": 1, "lamp": {"_count": 1}}}, "wandlight": {"_count": 20, "into": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "showed": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "waving": {"_count": 1, "making": {"_count": 1}}, "hit": {"_count": 1, "an": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "sparkled": {"_count": 1, "on": {"_count": 1}}, "Ill": {"_count": 1, "make": {"_count": 1}}, "sparkling": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "slid": {"_count": 1}}, "trained": {"_count": 1, "on": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 1, "deep": {"_count": 1}}, "fell": {"_count": 1, "into": {"_count": 1}}, "passed": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 1, "continued": {"_count": 1}}}, "scampering": {"_count": 2, "around": {"_count": 1, "them": {"_count": 1}}, "back": {"_count": 1, "up": {"_count": 1}}}, "trickle": {"_count": 11, "of": {"_count": 11, "spiders": {"_count": 1}, "blood": {"_count": 3}, "spittle": {"_count": 1}, "dust": {"_count": 1}, "witches": {"_count": 1}, "it": {"_count": 1}, "steam": {"_count": 1}, "visitors": {"_count": 1}, "relief": {"_count": 1}}}, "guides": {"_count": 2, "leaving": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "elementary": {"_count": 1}}}, "sphere": {"_count": 10, "of": {"_count": 1, "light": {"_count": 1}}, "slipped": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "then": {"_count": 1}}, "somewhere": {"_count": 1, "between": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "which": {"_count": 1, "floated": {"_count": 1}}}, "vividly": {"_count": 6, "remember": {"_count": 1, "Hagrid": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "recalled": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "an": {"_count": 1}}, "redhaired": {"_count": 1, "as": {"_count": 1}}, "what": {"_count": 1, "had": {"_count": 1}}}, "advising": {"_count": 5, "him": {"_count": 1, "not": {"_count": 1}}, "a": {"_count": 1, "wizard": {"_count": 1}}, "Ron": {"_count": 1, "to": {"_count": 1}}, "us": {"_count": 1, "all": {"_count": 1}}, "anyone": {"_count": 1, "to": {"_count": 1}}}, "cell": {"_count": 12, "in": {"_count": 5, "Azkaban": {"_count": 5}}, "": {"_count": 3, ".": {"_count": 3}}, "door": {"_count": 1, "": {"_count": 1}}, "near": {"_count": 1, "mine": {"_count": 1}}, "of": {"_count": 1, "Nurmengard": {"_count": 1}}, "at": {"_count": 1, "Nurmengard": {"_count": 1}}}, "crushing": {"_count": 9, "Rons": {"_count": 1, "foot": {"_count": 1}}, "Siriuss": {"_count": 1, "letter": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "hug": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "it": {"_count": 1}}, "a": {"_count": 1, "Horcrux": {"_count": 1}}, "metal": {"_count": 1, "fingers": {"_count": 1}}, "darkness": {"_count": 1, "": {"_count": 1}}, "arms": {"_count": 1, "and": {"_count": 1}}}, "reflecting": {"_count": 7, "the": {"_count": 5, "light": {"_count": 1}, "luminous": {"_count": 1}, "starry": {"_count": 1}, "room": {"_count": 1}, "firelight": {"_count": 1}}, "emeraldgreen": {"_count": 1, "flames": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}}, "stumps": {"_count": 2, "in": {"_count": 1, "their": {"_count": 1}}, "that": {"_count": 1, "formed": {"_count": 1}}}, "crouch": {"_count": 3, "down": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "prevent": {"_count": 1}}}, "snagging": {"_count": 1, "on": {"_count": 1, "lowslung": {"_count": 1}}}, "brambles": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "branches": {"_count": 1}}, "over": {"_count": 1, "which": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "but": {"_count": 1, "the": {"_count": 1}}}, "skins": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "so": {"_count": 1, "fast": {"_count": 1}}, "Moran": {"_count": 1, "deliberately": {"_count": 1}}, "sewn": {"_count": 1, "roughly": {"_count": 1}}, "of": {"_count": 1, "strange": {"_count": 1}}}, "Hear": {"_count": 6, "me": {"_count": 1, "": {"_count": 1}}, "hear": {"_count": 4, "": {"_count": 2}, "said": {"_count": 2}}, "it": {"_count": 1, "": {"_count": 1}}}, "pounce": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "yelped": {"_count": 12, "and": {"_count": 4, "tried": {"_count": 1}, "released": {"_count": 1}, "jumped": {"_count": 1}, "covered": {"_count": 1}}, "even": {"_count": 1, "louder": {"_count": 1}}, "Stan": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "James": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "from": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}}, "thorns": {"_count": 1, "and": {"_count": 1, "yelped": {"_count": 1}}}, "ablaze": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 4, "torches": {"_count": 1}, "light": {"_count": 1}, "lights": {"_count": 1}, "excitement": {"_count": 1}}}, "smeared": {"_count": 2, "with": {"_count": 2, "mud": {"_count": 1}, "dust": {"_count": 1}}}, "Apparently": {"_count": 38, "it": {"_count": 1, "had": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "she": {"_count": 6, "refused": {"_count": 1}, "loathes": {"_count": 1}, "had": {"_count": 2}, "decided": {"_count": 1}, "was": {"_count": 1}}, "his": {"_count": 2, "nerves": {"_count": 1}, "disapproval": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "Moodys": {"_count": 1, "magical": {"_count": 1}}, "Professor": {"_count": 1, "Sprout": {"_count": 1}}, "he": {"_count": 3, "is": {"_count": 1}, "sleeps": {"_count": 1}, "didnt": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "hes": {"_count": 2, "just": {"_count": 1}, "gone": {"_count": 1}}, "they": {"_count": 2, "were": {"_count": 1}, "could": {"_count": 1}}, "the": {"_count": 6, "Muggles": {"_count": 1}, "winding": {"_count": 1}, "Prince": {"_count": 1}, "pain": {"_count": 1}, "man": {"_count": 1}, "Peverells": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "lost": {"_count": 1, "in": {"_count": 1}}, "Hermione": {"_count": 1, "felt": {"_count": 1}}, "Gaunt": {"_count": 1, "felt": {"_count": 1}}, "deciding": {"_count": 1, "that": {"_count": 1}}, "Dumbledore": {"_count": 1, "thought": {"_count": 1}}, "I": {"_count": 1, "underestimated": {"_count": 1}}, "Moaning": {"_count": 1, "Myrtle": {"_count": 1}}, "Voldemort": {"_count": 1, "was": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "wizards": {"_count": 1, "poke": {"_count": 1}}}, "trundling": {"_count": 4, "around": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}}, "floodlit": {"_count": 1, "ground": {"_count": 1, "for": {"_count": 1}}}, "Struggling": {"_count": 2, "terrified": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "draw": {"_count": 1}}}, "leafstrewn": {"_count": 3, "ground": {"_count": 1, "was": {"_count": 1}}, "earth": {"_count": 1, "": {"_count": 1}}, "bank": {"_count": 1, "all": {"_count": 1}}}, "Craning": {"_count": 3, "his": {"_count": 2, "neck": {"_count": 2}}, "around": {"_count": 1, "he": {"_count": 1}}}, "ridge": {"_count": 2, "of": {"_count": 1, "a": {"_count": 1}}, "one": {"_count": 1, "nigh": {"_count": 1}}}, "Spiders": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}, "flee": {"_count": 2, "before": {"_count": 2}}}, "surging": {"_count": 6, "over": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 3, "him": {"_count": 2}, "it": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "Harrys": {"_count": 1}}}, "carthorses": {"_count": 1, "eight": {"_count": 1, "eyed": {"_count": 1}}}, "eightlegged": {"_count": 1, "black": {"_count": 1, "hairy": {"_count": 1}}}, "domed": {"_count": 8, "web": {"_count": 3, "in": {"_count": 1}, "a": {"_count": 1}, "but": {"_count": 1}}, "head": {"_count": 2, "was": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 1, "painted": {"_count": 1}}, "glass": {"_count": 2, "roof": {"_count": 1}, "ceiling": {"_count": 1}}}, "web": {"_count": 14, "in": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 2, "spider": {"_count": 1}, "cage": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "vibrating": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "how": {"_count": 1, "Voldemort": {"_count": 1}}, "around": {"_count": 1, "it": {"_count": 1}}, "stretched": {"_count": 1, "between": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "there": {"_count": 1}}}, "fellows": {"_count": 19, "closed": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 2, "slipped": {"_count": 1}, "pulled": {"_count": 1}}, "residing": {"_count": 1, "safely": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "shook": {"_count": 1, "their": {"_count": 1}}, "He": {"_count": 1, "alone": {"_count": 1}}, "soaring": {"_count": 1, "along": {"_count": 1}}, "for": {"_count": 1, "too": {"_count": 1}}, "my": {"_count": 1, "equals": {"_count": 1}}, "slowed": {"_count": 1, "up": {"_count": 1}}, "almost": {"_count": 1, "collided": {"_count": 1}}, "jumped": {"_count": 1, "up": {"_count": 1}}, "Scabior": {"_count": 1, "drew": {"_count": 1}}, "Spread": {"_count": 1, "out": {"_count": 1}}, "throughout": {"_count": 1, "the": {"_count": 1}}, "filed": {"_count": 1, "out": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "thudded": {"_count": 6, "down": {"_count": 1, "next": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}}, "Aragog": {"_count": 41, "": {"_count": 9, "!": {"_count": 2}, "?": {"_count": 1}, ".": {"_count": 6}}, "moving": {"_count": 1, "closer": {"_count": 1}}, "fretfully": {"_count": 2, "": {"_count": 2}}, "paused": {"_count": 1, "": {"_count": 1}}, "clicked": {"_count": 1, "his": {"_count": 1}}, "clicking": {"_count": 1, "angrily": {"_count": 1}}, "is": {"_count": 1, "an": {"_count": 1}}, "fiercely": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "hearing": {"_count": 1, "leaves": {"_count": 1}}, "slowly": {"_count": 1, "": {"_count": 1}}, "wouldnt": {"_count": 1, "hurt": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 4, "said": {"_count": 2}, "told": {"_count": 1}, "once": {"_count": 1}}, "said": {"_count": 2, "she": {"_count": 1}, "Harry": {"_count": 1}}, "who": {"_count": 1, "dwelled": {"_count": 1}}, "died": {"_count": 1, "last": {"_count": 1}}, "without": {"_count": 1, "us": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}, "a": {"_count": 1, "better": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "off": {"_count": 1, "though": {"_count": 1}}, "would": {"_count": 2, "": {"_count": 1}, "have": {"_count": 1}}, "Horace": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "king": {"_count": 1, "of": {"_count": 1}}}, "pincered": {"_count": 1, "head": {"_count": 1, "was": {"_count": 1}}}, "milky": {"_count": 5, "white": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 3, "wandering": {"_count": 1}, "stared": {"_count": 1}, "fixed": {"_count": 1}}, "glow": {"_count": 1, "of": {"_count": 1}}}, "blind": {"_count": 17, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "spot": {"_count": 1, "where": {"_count": 1}}, "panic": {"_count": 1, "had": {"_count": 1}}, "horror": {"_count": 1, "in": {"_count": 1}}, "eye": {"_count": 2, "Hagrid": {"_count": 1}, "to": {"_count": 1}}, "man": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "worse": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "barely": {"_count": 1, "able": {"_count": 1}}, "panted": {"_count": 1, "Griphook": {"_count": 1}}, "dragon": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "of": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "Strangers": {"_count": 1, "clicked": {"_count": 1, "the": {"_count": 1}}}, "fretfully": {"_count": 4, "": {"_count": 4, ".": {"_count": 4}}}, "Click": {"_count": 1, "click": {"_count": 1, "click": {"_count": 1}}}, "dwells": {"_count": 2, "in": {"_count": 1, "what": {"_count": 1}}, "there": {"_count": 1, "you": {"_count": 1}}}, "traveler": {"_count": 1, "gave": {"_count": 1, "me": {"_count": 1}}}, "scraps": {"_count": 3, "from": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "rotten": {"_count": 1}, "lace": {"_count": 1}}}, "blamed": {"_count": 7, "for": {"_count": 4, "the": {"_count": 1}, "murders": {"_count": 1}, "opening": {"_count": 1}, "Harry": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Albus": {"_count": 1, "you": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}}, "visits": {"_count": 11, "me": {"_count": 1, "": {"_count": 1}}, "stood": {"_count": 1, "out": {"_count": 1}}, "given": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 5, "Hogwarts": {"_count": 1}, "Hagrids": {"_count": 1}, "the": {"_count": 2}, "Hagrid": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "from": {"_count": 1, "me": {"_count": 1}}}, "Mosag": {"_count": 1, "and": {"_count": 1, "you": {"_count": 1}}}, "summoned": {"_count": 12, "what": {"_count": 1, "remained": {"_count": 1}}, "Harry": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "missy": {"_count": 1, "But": {"_count": 1}}, "the": {"_count": 1, "happiest": {"_count": 1}}, "it": {"_count": 1, "by": {"_count": 1}}, "Voldemort": {"_count": 1, "who": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "Xenophiliuss": {"_count": 1}}, "magically": {"_count": 1, "you": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "a": {"_count": 1}}}, "harmed": {"_count": 6, "a": {"_count": 1, "human": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "by": {"_count": 1, "Voldemort": {"_count": 1}}, "she": {"_count": 1, "muttered": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "outbreak": {"_count": 10, "of": {"_count": 10, "clicking": {"_count": 1}, "muttering": {"_count": 2}, "applause": {"_count": 1}, "rapping": {"_count": 1}, "wizard": {"_count": 1}, "incomprehensible": {"_count": 1}, "nervous": {"_count": 1}, "giggling": {"_count": 1}, "laughter": {"_count": 1}}}, "shifting": {"_count": 20, "angrily": {"_count": 1, "large": {"_count": 1}}, "his": {"_count": 3, "chair": {"_count": 2}, "shoulders": {"_count": 1}}, "rock": {"_count": 1, "reached": {"_count": 1}}, "boxes": {"_count": 1, "against": {"_count": 1}}, "heaps": {"_count": 1, "of": {"_count": 1}}, "clouds": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "closer": {"_count": 1}}, "of": {"_count": 1, "wings": {"_count": 1}}, "around": {"_count": 2, "while": {"_count": 1}, "in": {"_count": 1}}, "her": {"_count": 1, "weight": {"_count": 1}}, "massively": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "pots": {"_count": 1}}, "silver": {"_count": 1, "mass": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "shapes": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 1, "footing": {"_count": 1}}, "mist": {"_count": 1, "": {"_count": 1}}}, "sensed": {"_count": 21, "the": {"_count": 5, "beast": {"_count": 1}, "concealed": {"_count": 1}, "distant": {"_count": 1}, "presence": {"_count": 1}, "gang": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "Harrys": {"_count": 1, "gaze": {"_count": 1}}, "one": {"_count": 2, "healthy": {"_count": 2}}, "that": {"_count": 2, "once": {"_count": 1}, "their": {"_count": 1}}, "your": {"_count": 1, "presence": {"_count": 1}}, "him": {"_count": 1, "sensed": {"_count": 1}}, "perhaps": {"_count": 1, "a": {"_count": 1}}, "Rons": {"_count": 1, "name": {"_count": 1}}, "eyes": {"_count": 1, "following": {"_count": 1}}, "danger": {"_count": 1, "was": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "someone": {"_count": 1, "walking": {"_count": 1}}, "in": {"_count": 1, "him": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}}, "daughters": {"_count": 6, "do": {"_count": 1, "not": {"_count": 1}}, "marry": {"_count": 1, "purebloods": {"_count": 1}}, "throat": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "existence": {"_count": 1, "rather": {"_count": 1}}, "body": {"_count": 1, "": {"_count": 1}}}, "command": {"_count": 19, "": {"_count": 7, ".": {"_count": 4}, "!": {"_count": 2}, "?": {"_count": 1}}, "once": {"_count": 1, "YouKnowOo": {"_count": 1}}, "and": {"_count": 3, "fell": {"_count": 1}, "it": {"_count": 1}, "at": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 2, "might": {"_count": 1}, "gave": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "my": {"_count": 1, "forces": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}}, "deny": {"_count": 22, "them": {"_count": 1, "fresh": {"_count": 1}}, "that": {"_count": 7, "they": {"_count": 1}, "hed": {"_count": 1}, "I": {"_count": 1}, "her": {"_count": 1}, "morale": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "it": {"_count": 5, "he": {"_count": 1}, "": {"_count": 3}, "Then": {"_count": 1}}, "either": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 1, "four": {"_count": 1}}, "you": {"_count": 1, "need": {"_count": 1}}, "and": {"_count": 1, "nor": {"_count": 1}}, "hes": {"_count": 1, "got": {"_count": 1}}, "one": {"_count": 1, "thing": {"_count": 1}}, "the": {"_count": 1, "brilliance": {"_count": 1}}, "us": {"_count": 1, "the": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}}, "meat": {"_count": 13, "when": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 2, "carrot": {"_count": 1}, "vegetables": {"_count": 1}}, "pies": {"_count": 1, "": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "back": {"_count": 1, "over": {"_count": 1}}, "but": {"_count": 1, "Im": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 1, "thats": {"_count": 1}}, "I": {"_count": 1, "ave": {"_count": 1}}, "gone": {"_count": 1, "bad": {"_count": 1}}, "roots": {"_count": 1, "and": {"_count": 1}}, "bloody": {"_count": 1, "ever": {"_count": 1}}}, "wanders": {"_count": 2, "so": {"_count": 1, "willingly": {"_count": 1}}, "off": {"_count": 1, "and": {"_count": 1}}}, "willingly": {"_count": 4, "into": {"_count": 1, "our": {"_count": 1}}, "have": {"_count": 1, "split": {"_count": 1}}, "Malfoy": {"_count": 1, "must": {"_count": 1}}, "and": {"_count": 1, "parroted": {"_count": 1}}}, "Feet": {"_count": 2, "away": {"_count": 1, "towering": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "flamed": {"_count": 2, "through": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "screeching": {"_count": 8, "knocking": {"_count": 1, "spiders": {"_count": 1}}, "scream": {"_count": 1, "": {"_count": 1}}, "sound": {"_count": 1, "filled": {"_count": 1}}, "animatedly": {"_count": 1, "": {"_count": 1}}, "hooting": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "neighboring": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "roar": {"_count": 1, "again": {"_count": 1}}}, "diving": {"_count": 6, "into": {"_count": 2, "the": {"_count": 1}, "other": {"_count": 1}}, "a": {"_count": 1, "look": {"_count": 1}}, "board": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "sideways": {"_count": 1, "through": {"_count": 1}}}, "yelping": {"_count": 7, "into": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "whining": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "stopped": {"_count": 1, "abruptly": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "howling": {"_count": 1, "dog": {"_count": 1}}}, "cleverly": {"_count": 2, "through": {"_count": 1, "the": {"_count": 1}}, "enchanted": {"_count": 1, "": {"_count": 1}}}, "widest": {"_count": 3, "gaps": {"_count": 1, "following": {"_count": 1}}, "manhunt": {"_count": 1, "ever": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}}, "rocky": {"_count": 11, "minutes": {"_count": 1, "the": {"_count": 1}}, "foot": {"_count": 1, "of": {"_count": 1}}, "floor": {"_count": 2, "looking": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 1, "potholed": {"_count": 1}}, "for": {"_count": 1, "ages": {"_count": 1}}, "wall": {"_count": 1, "but": {"_count": 1}}, "walls": {"_count": 2, "pulling": {"_count": 1}, "grossly": {"_count": 1}}, "side": {"_count": 1, "of": {"_count": 1}}, "passage": {"_count": 1, "floor": {"_count": 1}}}, "limbs": {"_count": 12, "and": {"_count": 1, "followed": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "were": {"_count": 1, "sprouting": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "no": {"_count": 1, "longer": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "wrapped": {"_count": 1, "about": {"_count": 1}}, "locked": {"_count": 1, "together": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "working": {"_count": 1, "without": {"_count": 1}}}, "stiffnecked": {"_count": 1, "and": {"_count": 1, "staring": {"_count": 1}}}, "pat": {"_count": 11, "as": {"_count": 1, "it": {"_count": 1}}, "White": {"_count": 1, "fog": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "em": {"_count": 1, "if": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}, "Buckbeak": {"_count": 1, "goodbye": {"_count": 1}}, "him": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 1, "arm": {"_count": 1}}, "then": {"_count": 1, "led": {"_count": 1}}, "on": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}}, "uncontrollably": {"_count": 22, "now": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "face": {"_count": 1}, "finger": {"_count": 1}}, "and": {"_count": 2, "had": {"_count": 1}, "turned": {"_count": 1}}, "fumbling": {"_count": 1, "over": {"_count": 1}}, "as": {"_count": 1, "Wormtail": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "into": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "onto": {"_count": 1, "one": {"_count": 1}}, "at": {"_count": 1, "everything": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "an": {"_count": 1}}}, "Evidently": {"_count": 10, "hatching": {"_count": 1, "Aragog": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "someone": {"_count": 1, "oo": {"_count": 1}}, "he": {"_count": 2, "couldnt": {"_count": 1}, "had": {"_count": 1}}, "Moody": {"_count": 1, "was": {"_count": 1}}, "this": {"_count": 1, "visit": {"_count": 1}}, "Scrimgeour": {"_count": 1, "had": {"_count": 1}}, "Siriuss": {"_count": 1, "bedroom": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}}, "watchful": {"_count": 9, "sentries": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "crowd": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}, "enough": {"_count": 1, "": {"_count": 1}}, "gazing": {"_count": 1, "as": {"_count": 1}}, "Death": {"_count": 2, "Eater": {"_count": 1}, "Eaters": {"_count": 1}}}, "sentries": {"_count": 1, "were": {"_count": 1, "walking": {"_count": 1}}}, "undressed": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "got": {"_count": 1}}, "a": {"_count": 1, "sparkler": {"_count": 1}}}, "Escaping": {"_count": 1, "their": {"_count": 1, "teachers": {"_count": 1}}}, "moreover": {"_count": 2, "right": {"_count": 1, "next": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "Exams": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "were": {"_count": 1, "nearly": {"_count": 1}}}, "education": {"_count": 12, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 3}, "?": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 1, "young": {"_count": 1}}, "but": {"_count": 1, "personally": {"_count": 1}}, "awaits": {"_count": 1, "you": {"_count": 1}}, "have": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 1, "hed": {"_count": 1}}}, "mutinous": {"_count": 8, "muttering": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "faces": {"_count": 1, "": {"_count": 1}}}, "rabbits": {"_count": 1, "he": {"_count": 1, "was": {"_count": 1}}}, "hubbub": {"_count": 2, "had": {"_count": 1, "subsided": {"_count": 1}}, "and": {"_count": 1, "silence": {"_count": 1}}}, "studied": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "Red": {"_count": 1, "Caps": {"_count": 1}}, "the": {"_count": 3, "theory": {"_count": 2}, "subject": {"_count": 1}}, "unicorns": {"_count": 1, "and": {"_count": 1}}, "hard": {"_count": 1, "all": {"_count": 1}}, "her": {"_count": 1, "dark": {"_count": 1}}, "wandlore": {"_count": 1, "": {"_count": 1}}}, "kinder": {"_count": 5, "to": {"_count": 2, "leave": {"_count": 1}, "let": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "than": {"_count": 1, "trying": {"_count": 1}}}, "Spit": {"_count": 2, "it": {"_count": 2, "out": {"_count": 2}}}, "teetering": {"_count": 5, "on": {"_count": 1, "the": {"_count": 1}}, "tower": {"_count": 1, "of": {"_count": 1}}, "clock": {"_count": 1, "into": {"_count": 1}}, "piles": {"_count": 1, "of": {"_count": 1}}, "second": {"_count": 1, "while": {"_count": 1}}}, "revealing": {"_count": 20, "forbidden": {"_count": 1, "information": {"_count": 1}}, "that": {"_count": 1, "hed": {"_count": 1}}, "a": {"_count": 7, "cauldron": {"_count": 1}, "jumbled": {"_count": 1}, "broom": {"_count": 1}, "circular": {"_count": 1}, "narrow": {"_count": 1}, "head": {"_count": 1}, "hidden": {"_count": 1}}, "enormous": {"_count": 1, "brown": {"_count": 1}}, "his": {"_count": 1, "ignorance": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "different": {"_count": 1, "contents": {"_count": 1}}, "very": {"_count": 1, "pointed": {"_count": 1}}, "himself": {"_count": 2, "at": {"_count": 1}, "instantly": {"_count": 1}}, "the": {"_count": 2, "extravagantly": {"_count": 1}, "spiral": {"_count": 1}}, "Dobby": {"_count": 1, "the": {"_count": 1}}, "impostors": {"_count": 1, "": {"_count": 1}}}, "wan": {"_count": 16, "": {"_count": 1, ".": {"_count": 1}}, "ter": {"_count": 5, "come": {"_count": 1}, "be": {"_count": 1}, "try": {"_count": 1}, "go": {"_count": 1}, "do": {"_count": 1}}, "yeh": {"_count": 2, "watchin": {"_count": 1}, "ter": {"_count": 1}}, "him": {"_count": 1, "ter": {"_count": 1}}, "me": {"_count": 3, "ter": {"_count": 3}}, "owls": {"_count": 1, "followin": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}}, "patrol": {"_count": 8, "duty": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 7, "corridors": {"_count": 7}}}, "electrified": {"_count": 1, "gave": {"_count": 1, "Percy": {"_count": 1}}}, "fleeting": {"_count": 18, "frightened": {"_count": 1, "look": {"_count": 1}}, "glimpse": {"_count": 2, "of": {"_count": 2}}, "second": {"_count": 2, "Harry": {"_count": 1}, "he": {"_count": 1}}, "instant": {"_count": 1, "Harry": {"_count": 1}}, "vision": {"_count": 1, "of": {"_count": 1}}, "impression": {"_count": 2, "that": {"_count": 2}}, "of": {"_count": 1, "looks": {"_count": 1}}, "look": {"_count": 1, "but": {"_count": 1}}, "memory": {"_count": 1, "of": {"_count": 1}}, "thumbsup": {"_count": 1, "before": {"_count": 1}}, "stab": {"_count": 1, "of": {"_count": 1}}, "expression": {"_count": 1, "of": {"_count": 1}}, "moment": {"_count": 1, "before": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "hug": {"_count": 1, "then": {"_count": 1}}}, "scampered": {"_count": 6, "away": {"_count": 2, "": {"_count": 2}}, "for": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "happily": {"_count": 1, "away": {"_count": 1}}}, "Halfway": {"_count": 10, "through": {"_count": 3, "a": {"_count": 1}, "shaking": {"_count": 1}, "October": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 2, "the": {"_count": 2}}, "across": {"_count": 2, "the": {"_count": 2}}, "between": {"_count": 1, "cabin": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}}, "coughing": {"_count": 11, "": {"_count": 2, ".": {"_count": 2}}, "up": {"_count": 1, "the": {"_count": 1}}, "fit": {"_count": 1, "over": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "sopping": {"_count": 1, "wet": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "staggering": {"_count": 1}, "shuddering": {"_count": 1}, "retching": {"_count": 1}}}, "solved": {"_count": 6, "tomorrow": {"_count": 1, "without": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "using": {"_count": 1}}, "Minister": {"_count": 1, "if": {"_count": 1}}}, "midmorning": {"_count": 2, "when": {"_count": 1, "they": {"_count": 1}}, "enormous": {"_count": 1, "signs": {"_count": 1}}}, "proved": {"_count": 30, "wrong": {"_count": 1, "right": {"_count": 1}}, "twelve": {"_count": 1, "years": {"_count": 1}}, "he": {"_count": 1, "cared": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "false": {"_count": 1, "the": {"_count": 1}}, "himself": {"_count": 2, "in": {"_count": 1}, "capable": {"_count": 1}}, "instead": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 3, "be": {"_count": 3}}, "the": {"_count": 1, "windows": {"_count": 1}}, "you": {"_count": 1, "were": {"_count": 1}}, "that": {"_count": 3, "I": {"_count": 1}, "": {"_count": 2}}, "both": {"_count": 1, "blessing": {"_count": 1}}, "impossible": {"_count": 2, "to": {"_count": 1}, "as": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "a": {"_count": 2, "complicated": {"_count": 1}, "much": {"_count": 1}}, "themselves": {"_count": 1, "trustworthy": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "difficult": {"_count": 1, "to": {"_count": 1}}, "soothing": {"_count": 1, "to": {"_count": 1}}, "myself": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 2, "doesnt": {"_count": 1}, "time": {"_count": 1}}, "my": {"_count": 1, "Patronus": {"_count": 1}}}, "wholeheartedly": {"_count": 4, "convinced": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 1, "Mrs": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}}, "patrolling": {"_count": 7, "the": {"_count": 5, "fourth": {"_count": 1}, "streets": {"_count": 1}, "outside": {"_count": 1}, "skies": {"_count": 1}, "corridors": {"_count": 1}}, "around": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "Mark": {"_count": 87, "my": {"_count": 1, "words": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "saw": {"_count": 1}}, "": {"_count": 28, "?": {"_count": 12}, "!": {"_count": 2}, ".": {"_count": 14}}, "come": {"_count": 1, "from": {"_count": 1}}, "is": {"_count": 2, "summoned": {"_count": 1}, "becoming": {"_count": 1}}, "was": {"_count": 6, "conjured": {"_count": 1}, "burned": {"_count": 1}, "glittering": {"_count": 1}, "shining": {"_count": 1}, "": {"_count": 1}, "branded": {"_count": 1}}, "sir": {"_count": 1, "I": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "hovering": {"_count": 1, "over": {"_count": 1}}, "over": {"_count": 2, "the": {"_count": 2}}, "alleging": {"_count": 1, "that": {"_count": 1}}, "had": {"_count": 5, "appeared": {"_count": 1}, "been": {"_count": 4}}, "at": {"_count": 1, "the": {"_count": 1}}, "stole": {"_count": 1, "my": {"_count": 1}}, "appeared": {"_count": 1, "Hermione": {"_count": 1}}, "again": {"_count": 1, "doesnt": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 2, "a": {"_count": 1}, "I": {"_count": 1}}, "burn": {"_count": 4, "upon": {"_count": 1}, "": {"_count": 1}, "Correct": {"_count": 1}, "and": {"_count": 1}}, "of": {"_count": 1, "any": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "Evans": {"_count": 1, "two": {"_count": 1}}, "for": {"_count": 1, "one": {"_count": 1}}, "appear": {"_count": 1, "over": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "he": {"_count": 2, "muttered": {"_count": 1}, "saw": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "we": {"_count": 1, "dont": {"_count": 1}}, "the": {"_count": 1, "place": {"_count": 1}}, "Albus": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "long": {"_count": 1}}, "to": {"_count": 2, "be": {"_count": 1}, "get": {"_count": 1}}, "began": {"_count": 1, "Ernie": {"_count": 1}}, "Malfoy": {"_count": 1, "said": {"_count": 1}}, "Greyback": {"_count": 1, "had": {"_count": 1}}, "burned": {"_count": 1, "into": {"_count": 1}}, "Harrys": {"_count": 1, "scar": {"_count": 1}}, "and": {"_count": 1, "thats": {"_count": 1}}, "burns": {"_count": 1, "": {"_count": 1}}}, "ushering": {"_count": 4, "them": {"_count": 1, "around": {"_count": 1}}, "Dudley": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 1, "unfortunate": {"_count": 1}}, "Harry": {"_count": 1, "over": {"_count": 1}}}, "\u2018It": {"_count": 1, "was": {"_count": 1, "Hagrid": {"_count": 1}}}, "Frankly": {"_count": 1, "Im": {"_count": 1, "astounded": {"_count": 1}}}, "astounded": {"_count": 10, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "at": {"_count": 1, "how": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 2, "you": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}, "face": {"_count": 1, "glowed": {"_count": 1}}}, "measures": {"_count": 20, "are": {"_count": 2, "necessary": {"_count": 1}, "taken": {"_count": 1}}, "imposed": {"_count": 1, "on": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "to": {"_count": 2, "rid": {"_count": 1}, "investigate": {"_count": 1}}, "against": {"_count": 1, "Voldemorts": {"_count": 1}}, "we": {"_count": 2, "may": {"_count": 1}, "should": {"_count": 1}}, "were": {"_count": 1, "introduced": {"_count": 1}}, "taken": {"_count": 1, "by": {"_count": 1}}, "include": {"_count": 1, "defensive": {"_count": 1}}, "such": {"_count": 2, "as": {"_count": 2}}, "have": {"_count": 1, "caused": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "place": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}}, "prepare": {"_count": 13, "my": {"_count": 1, "next": {"_count": 1}}, "a": {"_count": 1, "defense": {"_count": 1}}, "Buckbeaks": {"_count": 1, "defense": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "for": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "himself": {"_count": 1, "for": {"_count": 1}}, "couple": {"_count": 1, "o": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "for": {"_count": 1}}, "dinner": {"_count": 1, "": {"_count": 1}}}, "Prepare": {"_count": 1, "his": {"_count": 1, "class": {"_count": 1}}}, "Gone": {"_count": 14, "to": {"_count": 1, "curl": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 3}, "?": {"_count": 2}, ".": {"_count": 2}}, "were": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "me": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "on": {"_count": 1, "where": {"_count": 1}}, "croaked": {"_count": 1, "Aberforth": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}}, "congratulating": {"_count": 2, "each": {"_count": 1, "other": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "scheme": {"_count": 2, "Potter": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "hand": {"_count": 1}}}, "croaky": {"_count": 5, "voice": {"_count": 3, "": {"_count": 2}, "that": {"_count": 1}}, "as": {"_count": 1, "Blacks": {"_count": 1}}, "whisper": {"_count": 1, "": {"_count": 1}}}, "inkling": {"_count": 5, "that": {"_count": 2, "she": {"_count": 1}, "this": {"_count": 1}}, "of": {"_count": 3, "what": {"_count": 1}, "any": {"_count": 1}, "the": {"_count": 1}}}, "onell": {"_count": 2, "ever": {"_count": 1, "know": {"_count": 1}}, "know": {"_count": 1, "you": {"_count": 1}}}, "scrunched": {"_count": 1, "inside": {"_count": 1, "her": {"_count": 1}}}, "Making": {"_count": 9, "sure": {"_count": 1, "that": {"_count": 1}}, "a": {"_count": 2, "racket": {"_count": 1}, "mental": {"_count": 1}}, "straight": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "them": {"_count": 1, "float": {"_count": 1}}, "and": {"_count": 1, "turned": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "task": {"_count": 106, "": {"_count": 33, ".": {"_count": 29}, "?": {"_count": 2}, "!": {"_count": 2}}, "of": {"_count": 13, "nursing": {"_count": 1}, "the": {"_count": 4}, "which": {"_count": 1}, "governing": {"_count": 1}, "keeping": {"_count": 1}, "managing": {"_count": 1}, "punting": {"_count": 1}, "telling": {"_count": 1}, "retrieving": {"_count": 1}, "discovering": {"_count": 1}}, "for": {"_count": 2, "me": {"_count": 1}, "cobbing": {"_count": 1}}, "force": {"_count": 2, "of": {"_count": 2}}, "three": {"_count": 1, "will": {"_count": 1}}, "is": {"_count": 8, "designed": {"_count": 1}, "dragons": {"_count": 1}, "to": {"_count": 2}, "and": {"_count": 2}, "Dobby": {"_count": 1}, "over": {"_count": 1}}, "will": {"_count": 2, "take": {"_count": 2}}, "when": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 3, "drawing": {"_count": 1}, "going": {"_count": 1}, "that": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "students": {"_count": 1}}, "much": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "school": {"_count": 1}}, "shes": {"_count": 1, "already": {"_count": 1}}, "and": {"_count": 4, "its": {"_count": 1}, "he": {"_count": 1}, "Cedrics": {"_count": 1}, "not": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "which": {"_count": 3, "will": {"_count": 2}, "would": {"_count": 1}}, "I": {"_count": 4, "hate": {"_count": 1}, "dont": {"_count": 1}, "set": {"_count": 2}}, "whoever": {"_count": 1, "put": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "that": {"_count": 2, "was": {"_count": 1}, "Dumbledore": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "starts": {"_count": 1, "in": {"_count": 1}}, "or": {"_count": 1, "anywhere": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "stayed": {"_count": 1}}, "theyre": {"_count": 1, "going": {"_count": 1}}, "They": {"_count": 1, "didnt": {"_count": 1}}, "straight": {"_count": 1, "away": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "than": {"_count": 1, "either": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 2, "Cedric": {"_count": 1}, "Hermione": {"_count": 1}}, "saying": {"_count": 1, "you": {"_count": 1}}, "although": {"_count": 1, "Hermione": {"_count": 1}}, "finally": {"_count": 1, "looked": {"_count": 1}}, "ahead": {"_count": 1, "would": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "smoothed": {"_count": 14, "it": {"_count": 5, "out": {"_count": 5}}, "flat": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 2, "whole": {"_count": 1}, "folds": {"_count": 1}}, "his": {"_count": 2, "bedcovers": {"_count": 1}, "hair": {"_count": 1}}, "out": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "fearsome": {"_count": 2, "beasts": {"_count": 1, "and": {"_count": 1}}, "yellow": {"_count": 1, "eyes": {"_count": 1}}}, "Basilisk": {"_count": 5, "known": {"_count": 1, "also": {"_count": 1}}, "has": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "it": {"_count": 1}}, "flees": {"_count": 1, "only": {"_count": 1}}, "venom": {"_count": 1, "only": {"_count": 1}}}, "King": {"_count": 26, "of": {"_count": 1, "Serpents": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "Weasley": {"_count": 3, "is": {"_count": 3}}, "He": {"_count": 3, "always": {"_count": 1}, "didnt": {"_count": 2}}, "dreamily": {"_count": 1, "under": {"_count": 1}}, "sung": {"_count": 1, "with": {"_count": 1}}, "so": {"_count": 1, "loudly": {"_count": 1}}, "sneered": {"_count": 1, "Malfoy": {"_count": 1}}, "died": {"_count": 1, "away": {"_count": 1}}, "but": {"_count": 1, "agreed": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 1, "Queen": {"_count": 1}}, "he": {"_count": 1, "pretended": {"_count": 1}}}, "Serpents": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "methods": {"_count": 11, "of": {"_count": 7, "killing": {"_count": 1}, "Divination": {"_count": 1}, "aging": {"_count": 1}, "eavesdropping": {"_count": 1}, "bugging": {"_count": 1}, "communicating": {"_count": 1}, "communication": {"_count": 1}}, "palmistry": {"_count": 1, "crystal": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "priorities": {"_count": 1}}, "Minister": {"_count": 1, "said": {"_count": 1}}}, "wondrous": {"_count": 1, "for": {"_count": 1, "aside": {"_count": 1}}}, "venomous": {"_count": 5, "fangs": {"_count": 1, "the": {"_count": 1}}, "It": {"_count": 1, "lunged": {"_count": 1}}, "footlong": {"_count": 1, "fang": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "bubble": {"_count": 1, "compressing": {"_count": 1}}}, "beam": {"_count": 21, "of": {"_count": 11, "its": {"_count": 1}, "light": {"_count": 3}, "his": {"_count": 1}, "wandlight": {"_count": 3}, "understanding": {"_count": 1}, "sunlight": {"_count": 1}, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "traveled": {"_count": 1, "from": {"_count": 1}}, "fell": {"_count": 2, "only": {"_count": 1}, "upon": {"_count": 1}}, "at": {"_count": 2, "it": {"_count": 1}, "them": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "between": {"_count": 1, "him": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "suddenly": {"_count": 1}}}, "suffer": {"_count": 14, "instant": {"_count": 1, "death": {"_count": 1}}, "but": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "my": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "early": {"_count": 1}}, "nothing": {"_count": 1, "worse": {"_count": 1}}, "lasting": {"_count": 1, "damage": {"_count": 1}}, "for": {"_count": 1, "instance": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 3, "punishment": {"_count": 1}, "shame": {"_count": 1}, "Dementors": {"_count": 1}}, "his": {"_count": 1, "retribution": {"_count": 1}}}, "flee": {"_count": 9, "before": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Snapes": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "made": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "whispered": {"_count": 1, "Professor": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}}, "flees": {"_count": 1, "only": {"_count": 1, "from": {"_count": 1}}}, "crowing": {"_count": 2, "of": {"_count": 2, "the": {"_count": 2}}}, "Pipes": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "said": {"_count": 1}}}, "Chambers": {"_count": 2, "a": {"_count": 1, "basilisk": {"_count": 1}}, "came": {"_count": 1, "at": {"_count": 1}}}, "basilisk": {"_count": 37, "a": {"_count": 1, "giant": {"_count": 1}}, "kills": {"_count": 1, "people": {"_count": 1}}, "burned": {"_count": 1, "up": {"_count": 1}}, "through": {"_count": 2, "Nearly": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "been": {"_count": 1, "getting": {"_count": 1}}, "in": {"_count": 2, "there": {"_count": 1}, "the": {"_count": 1}}, "be": {"_count": 1, "lurking": {"_count": 1}}, "comes": {"_count": 1, "It": {"_count": 1}}, "was": {"_count": 2, "moving": {"_count": 1}, "snapping": {"_count": 1}}, "had": {"_count": 2, "swept": {"_count": 1}, "died": {"_count": 1}}, "lunged": {"_count": 1, "again": {"_count": 1}}, "keeled": {"_count": 1, "over": {"_count": 1}}, "fang": {"_count": 3, "on": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "venom": {"_count": 3, "had": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "over": {"_count": 1, "Harry": {"_count": 1}}, "egg": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "destroyed": {"_count": 1}}, "with": {"_count": 1, "that": {"_count": 1}}, "I": {"_count": 1, "never": {"_count": 1}}, "fangs": {"_count": 2, "then": {"_count": 1}, "cascaded": {"_count": 1}}, "listeners": {"_count": 1, "": {"_count": 1}}}, "picturing": {"_count": 5, "the": {"_count": 1, "scene": {"_count": 1}}, "Dumbledore": {"_count": 1, "with": {"_count": 1}}, "again": {"_count": 1, "some": {"_count": 1}}, "his": {"_count": 1, "parents": {"_count": 1}}, "horrific": {"_count": 1, "things": {"_count": 1}}}, "roosters": {"_count": 3, "were": {"_count": 1, "killed": {"_count": 1}}, "and": {"_count": 1, "daubed": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "plumbing": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "coursing": {"_count": 5, "through": {"_count": 4, "them": {"_count": 1}, "him": {"_count": 2}, "Harry": {"_count": 1}}, "silently": {"_count": 1, "down": {"_count": 1}}}, "controlling": {"_count": 5, "the": {"_count": 1, "basilisk": {"_count": 1}}, "himself": {"_count": 1, "I": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "temper": {"_count": 1}}, "her": {"_count": 1, "like": {"_count": 1}}}, "paneled": {"_count": 4, "room": {"_count": 2, "full": {"_count": 2}}, "in": {"_count": 1, "shiny": {"_count": 1}}, "and": {"_count": 1, "carpeted": {"_count": 1}}}, "Whatll": {"_count": 4, "we": {"_count": 1, "do": {"_count": 1}}, "happen": {"_count": 3, "to": {"_count": 3}}}, "wardrobe": {"_count": 42, "to": {"_count": 4, "his": {"_count": 1}, "look": {"_count": 1}, "pacify": {"_count": 1}, "Dumbledore": {"_count": 1}}, "floor": {"_count": 1, "beside": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 9, ".": {"_count": 9}}, "Hedwig": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "shook": {"_count": 1, "again": {"_count": 1}}, "Neville": {"_count": 1, "and": {"_count": 1}}, "wobbled": {"_count": 1, "more": {"_count": 1}}, "burst": {"_count": 2, "open": {"_count": 1}, "into": {"_count": 1}}, "door": {"_count": 2, "": {"_count": 2}}, "and": {"_count": 6, "peered": {"_count": 1}, "landed": {"_count": 1}, "called": {"_count": 1}, "force": {"_count": 1}, "as": {"_count": 1}, "crawled": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "again": {"_count": 1, "Pigwidgeon": {"_count": 1}}, "when": {"_count": 1, "Ron": {"_count": 1}}, "then": {"_count": 1, "took": {"_count": 1}}, "a": {"_count": 1, "wooden": {"_count": 1}}, "completely": {"_count": 1, "undamaged": {"_count": 1}}, "doors": {"_count": 1, "stood": {"_count": 1}}, "mirror": {"_count": 1, "and": {"_count": 1}}, "whose": {"_count": 1, "doors": {"_count": 1}}, "as": {"_count": 1, "Hermione": {"_count": 1}}}, "filtering": {"_count": 4, "into": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 1, "through": {"_count": 1}}}, "\u2018Her": {"_count": 1, "skeleton": {"_count": 1, "will": {"_count": 1}}}, "skeleton": {"_count": 4, "will": {"_count": 1, "lie": {"_count": 1}}, "with": {"_count": 1, "loads": {"_count": 1}}, "had": {"_count": 1, "five": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "kneed": {"_count": 1, "into": {"_count": 1, "a": {"_count": 1}}}, "dozed": {"_count": 9, "off": {"_count": 6, "what": {"_count": 1}, "too": {"_count": 1}, "": {"_count": 1}, "got": {"_count": 1}, "or": {"_count": 1}, "sorry": {"_count": 1}}, "fitfully": {"_count": 1, "sinking": {"_count": 1}}, "on": {"_count": 1, "its": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}}, "Taken": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "Ddid": {"_count": 1, "I": {"_count": 1, "": {"_count": 1}}}, "recall": {"_count": 11, "I": {"_count": 1, "certainly": {"_count": 1}}, "as": {"_count": 1, "exactly": {"_count": 1}}, "them": {"_count": 1, "more": {"_count": 1}}, "what": {"_count": 2, "he": {"_count": 1}, "Dumbledore": {"_count": 1}}, "the": {"_count": 4, "banished": {"_count": 1}, "Order": {"_count": 1}, "fine": {"_count": 1}, "dead": {"_count": 1}}, "Dumbledore": {"_count": 1, "ever": {"_count": 1}}, "others": {"_count": 1, "from": {"_count": 1}}}, "affair": {"_count": 8, "had": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 1, "you": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "it": {"_count": 1, "will": {"_count": 1}}}, "bungled": {"_count": 1, "and": {"_count": 1, "that": {"_count": 1}}}, "rein": {"_count": 5, "from": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "always": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "theyd": {"_count": 1, "find": {"_count": 1}}}, "misunderstood": {"_count": 8, "Well": {"_count": 1, "leave": {"_count": 1}}, "you": {"_count": 1, "Professor": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "wallow": {"_count": 1, "in": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "Freds": {"_count": 1, "directions": {"_count": 1}}, "the": {"_count": 1, "living": {"_count": 1}}}, "tackle": {"_count": 7, "the": {"_count": 2, "monster": {"_count": 1}, "boggart": {"_count": 1}}, "them": {"_count": 1, "tomorrow": {"_count": 1}}, "those": {"_count": 1, "after": {"_count": 1}}, "that": {"_count": 1, "essay": {"_count": 1}}, "dementors": {"_count": 1, "but": {"_count": 1}}, "him": {"_count": 1, "he": {"_count": 1}}}, "absence": {"_count": 32, "of": {"_count": 11, "his": {"_count": 2}, "inhabitants": {"_count": 1}, "Nevilles": {"_count": 1}, "the": {"_count": 2}, "Hagrid": {"_count": 1}, "tears": {"_count": 1}, "Bill": {"_count": 1}, "three": {"_count": 1}, "Ron": {"_count": 1}}, "to": {"_count": 1, "aim": {"_count": 1}}, "from": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "you": {"_count": 1, "heard": {"_count": 1}}, "was": {"_count": 2, "highly": {"_count": 1}, "an": {"_count": 1}}, "struck": {"_count": 1, "him": {"_count": 1}}, "over": {"_count": 1, "Christmas": {"_count": 1}}, "being": {"_count": 1, "remarked": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "all": {"_count": 1}}, "had": {"_count": 1, "cost": {"_count": 1}}}, "toothy": {"_count": 2, "grin": {"_count": 1, "he": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}}, "weakchinned": {"_count": 1, "and": {"_count": 1, "feeble": {"_count": 1}}}, "Vvery": {"_count": 1, "well": {"_count": 1, "he": {"_count": 1}}}, "Near": {"_count": 2, "sunset": {"_count": 1, "Fred": {"_count": 1}}, "the": {"_count": 1, "window": {"_count": 1}}}, "Shed": {"_count": 6, "found": {"_count": 1, "out": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "need": {"_count": 1, "a": {"_count": 1}}, "love": {"_count": 1, "a": {"_count": 1}}, "have": {"_count": 1, "sacked": {"_count": 1}}, "give": {"_count": 1, "anything": {"_count": 1}}}, "bloodred": {"_count": 5, "below": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "sunset": {"_count": 1, "": {"_count": 1}}, "wine": {"_count": 1, "and": {"_count": 1}}, "sky": {"_count": 1, "": {"_count": 1}}}, "skyline": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Darkness": {"_count": 8, "was": {"_count": 1, "falling": {"_count": 1}}, "fell": {"_count": 1, "outside": {"_count": 1}}, "Powder": {"_count": 4, "were": {"_count": 1}, "said": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}, "descended": {"_count": 1, "fast": {"_count": 1}}, "engulfed": {"_count": 1, "them": {"_count": 1}}}, "thumps": {"_count": 2, "and": {"_count": 1, "hurried": {"_count": 1}}, "as": {"_count": 1, "Fred": {"_count": 1}}}, "tiniest": {"_count": 14, "crack": {"_count": 1, "and": {"_count": 1}}, "speech": {"_count": 1, "bubble": {"_count": 1}}, "sign": {"_count": 1, "of": {"_count": 1}}, "hint": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 2, "nods": {"_count": 1}, "the": {"_count": 1}}, "rustle": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "oldest": {"_count": 1}}, "shred": {"_count": 1, "of": {"_count": 1}}, "drop": {"_count": 1, "of": {"_count": 1}}, "note": {"_count": 1, "of": {"_count": 1}}, "trickle": {"_count": 1, "of": {"_count": 1}}, "quiver": {"_count": 1, "of": {"_count": 1}}, "space": {"_count": 1, "of": {"_count": 1}}}, "terribly": {"_count": 7, "The": {"_count": 1, "side": {"_count": 1}}, "fury": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "sorry": {"_count": 1, "to": {"_count": 1}}, "wrong": {"_count": 1, "and": {"_count": 1}}, "responsible": {"_count": 1, "but": {"_count": 1}}, "careful": {"_count": 1, "with": {"_count": 1}}}, "stripped": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "fat": {"_count": 1, "pink": {"_count": 1}}, "me": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "off": {"_count": 3, "his": {"_count": 2}, "and": {"_count": 1}}, "this": {"_count": 1, "house": {"_count": 1}}, "of": {"_count": 1, "leaves": {"_count": 1}}}, "jade": {"_count": 1, "green": {"_count": 1, "lilac": {"_count": 1}}}, "jumbled": {"_count": 3, "untidily": {"_count": 1, "into": {"_count": 1}}, "mixture": {"_count": 1, "of": {"_count": 1}}, "together": {"_count": 1, "teachers": {"_count": 1}}}, "lifesize": {"_count": 4, "poster": {"_count": 1, "of": {"_count": 1}}, "portrait": {"_count": 1, "but": {"_count": 1}}, "stood": {"_count": 1, "in": {"_count": 1}}, "lions": {"_count": 1, "head": {"_count": 1}}}, "Urgent": {"_count": 5, "call": {"_count": 1, "unavoidable": {"_count": 1}}, "message": {"_count": 1, "from": {"_count": 1}}, "business": {"_count": 1, "Bode": {"_count": 1}}, "we": {"_count": 1, "meet": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "unavoidable": {"_count": 3, "got": {"_count": 1, "to": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "jerkily": {"_count": 8, "": {"_count": 5, ".": {"_count": 5}}, "without": {"_count": 1, "looking": {"_count": 1}}, "tearing": {"_count": 1, "Percys": {"_count": 1}}, "imploringly": {"_count": 1, "but": {"_count": 1}}}, "regrets": {"_count": 3, "more": {"_count": 1, "than": {"_count": 1}}, "the": {"_count": 1, "death": {"_count": 1}}, "that": {"_count": 1, "now": {"_count": 1}}}, "description": {"_count": 6, "didnt": {"_count": 1, "expect": {"_count": 1}}, "of": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "in": {"_count": 1, "Fantastic": {"_count": 1}}}, "disbelievingly": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "while": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 1, "Hermione": {"_count": 1}}}, "misleading": {"_count": 4, "said": {"_count": 1, "Lockhart": {"_count": 1}}, "directions": {"_count": 1, "from": {"_count": 1}}, "impression": {"_count": 1, "for": {"_count": 1}}, "me": {"_count": 1, "young": {"_count": 1}}}, "Armenian": {"_count": 1, "warlock": {"_count": 1, "even": {"_count": 1}}}, "slog": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "blabbing": {"_count": 1, "my": {"_count": 1, "secrets": {"_count": 1}}}, "Expelliarmus": {"_count": 11, "Lockhart": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "yelled": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "you": {"_count": 1, "know": {"_count": 1}}, "is": {"_count": 2, "exactly": {"_count": 1}, "a": {"_count": 1}}, "Harrys": {"_count": 1, "body": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "saved": {"_count": 1, "me": {"_count": 1}}, "The": {"_count": 1, "bang": {"_count": 1}}}, "wandpoint": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "aspect": {"_count": 3, "changed": {"_count": 1, "at": {"_count": 1}}, "of": {"_count": 2, "life": {"_count": 1}, "magic": {"_count": 1}}}, "Ooooh": {"_count": 6, "it": {"_count": 1, "was": {"_count": 1}}, "who": {"_count": 1, "": {"_count": 1}}, "urgent": {"_count": 1, "is": {"_count": 1}}, "Dijon": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}}, "Olive": {"_count": 3, "Hornby": {"_count": 3, "was": {"_count": 1}, "you": {"_count": 1}, "came": {"_count": 1}}}, "Hornby": {"_count": 3, "was": {"_count": 1, "teasing": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}}, "teasing": {"_count": 4, "me": {"_count": 1, "about": {"_count": 1}}, "her": {"_count": 1, "so": {"_count": 1}}, "him": {"_count": 1, "sir": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}}, "haunt": {"_count": 4, "Olive": {"_count": 1, "Hornby": {"_count": 1}}, "him": {"_count": 2, "until": {"_count": 2}}, "of": {"_count": 1, "happy": {"_count": 1}}}, "Scratched": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "engraving": {"_count": 2, "trying": {"_count": 1, "to": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}}, "spin": {"_count": 13, "": {"_count": 2, ".": {"_count": 2}}, "very": {"_count": 1, "fast": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 1, "lungs": {"_count": 1}}, "around": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "out": {"_count": 1, "their": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "A": {"_count": 1, "hole": {"_count": 1}}}, "slimmest": {"_count": 1, "wildest": {"_count": 1, "chance": {"_count": 1}}}, "wildest": {"_count": 6, "chance": {"_count": 1, "that": {"_count": 1}}, "dreams": {"_count": 4, "Harry": {"_count": 1}, "could": {"_count": 1}, "": {"_count": 2}}, "guesswork": {"_count": 1, "": {"_count": 1}}}, "knob": {"_count": 3, "but": {"_count": 1, "Ron": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "Whitefaced": {"_count": 1, "and": {"_count": 1, "wandless": {"_count": 1}}}, "wandless": {"_count": 7, "Lockhart": {"_count": 1, "approached": {"_count": 1}}, "teenagers": {"_count": 1, "alone": {"_count": 1}}, "Dumbledore": {"_count": 1, "alone": {"_count": 1}}, "and": {"_count": 1, "defenseless": {"_count": 1}}, "in": {"_count": 1, "grave": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "Malfoy": {"_count": 1, "cowered": {"_count": 1}}}, "branching": {"_count": 1, "off": {"_count": 1, "in": {"_count": 1}}}, "theirs": {"_count": 16, "which": {"_count": 1, "twisted": {"_count": 1}}, "out": {"_count": 1, "too": {"_count": 1}}, "then": {"_count": 1, "heard": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "would": {"_count": 1, "weigh": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 1, "nobody": {"_count": 1}}, "and": {"_count": 1, "theyve": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "are": {"_count": 1, "bigger": {"_count": 1}}}, "curves": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "smokegray": {"_count": 1}}}, "leveled": {"_count": 1, "out": {"_count": 1, "and": {"_count": 1}}}, "Lumosl": {"_count": 4, "Harry": {"_count": 2, "muttered": {"_count": 1}, "shone": {"_count": 1}}, "He": {"_count": 1, "said": {"_count": 1}}, "The": {"_count": 1, "wand": {"_count": 1}}}, "crunch": {"_count": 6, "as": {"_count": 1, "Ron": {"_count": 1}}, "of": {"_count": 2, "gravel": {"_count": 1}, "breaking": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "a": {"_count": 1}}}, "skull": {"_count": 46, "": {"_count": 11, ".": {"_count": 10}, "?": {"_count": 1}}, "of": {"_count": 4, "yours": {"_count": 1}, "a": {"_count": 3}}, "comprised": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "reflected": {"_count": 1, "twice": {"_count": 1}}, "above": {"_count": 1, "Harry": {"_count": 1}}, "erupted": {"_count": 1, "from": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "vanished": {"_count": 1, "in": {"_count": 1}}, "thing": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "and": {"_count": 6, "looking": {"_count": 1}, "then": {"_count": 2}, "fear": {"_count": 1}, "something": {"_count": 1}, "snake": {"_count": 1}}, "with": {"_count": 4, "wide": {"_count": 1}, "a": {"_count": 2}, "its": {"_count": 1}}, "like": {"_count": 1, "but": {"_count": 1}}, "his": {"_count": 1, "cheeks": {"_count": 1}}, "round": {"_count": 1, "and": {"_count": 1}}, "might": {"_count": 1, "burst": {"_count": 1}}, "said": {"_count": 1, "Madam": {"_count": 1}}, "not": {"_count": 1, "hurting": {"_count": 1}}, "cracked": {"_count": 1, "and": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "still": {"_count": 1, "wearing": {"_count": 1}}}, "littered": {"_count": 17, "with": {"_count": 9, "small": {"_count": 1}, "the": {"_count": 1}, "bits": {"_count": 1}, "dull": {"_count": 1}, "personal": {"_count": 1}, "rolls": {"_count": 1}, "tiny": {"_count": 1}, "silver": {"_count": 1}, "Slughorns": {"_count": 1}}, "the": {"_count": 6, "floor": {"_count": 3}, "ground": {"_count": 1}, "steps": {"_count": 1}, "end": {"_count": 1}}, "that": {"_count": 1, "part": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}}, "curved": {"_count": 22, "lying": {"_count": 1, "right": {"_count": 1}}, "nose": {"_count": 3, "and": {"_count": 3}}, "back": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "above": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 6, "the": {"_count": 5}, "fit": {"_count": 1}}, "pincers": {"_count": 1, "shone": {"_count": 1}}, "with": {"_count": 1, "them": {"_count": 1}}, "into": {"_count": 1, "something": {"_count": 1}}, "sideboard": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "nails": {"_count": 1, "clutching": {"_count": 1}}, "her": {"_count": 1, "lips": {"_count": 1}}, "dirty": {"_count": 1, "yellow": {"_count": 1}}, "fangs": {"_count": 1, "torn": {"_count": 1}}}, "tragically": {"_count": 4, "lost": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wringing": {"_count": 1, "her": {"_count": 1}}, "misunderstood": {"_count": 1, "wallow": {"_count": 1}}}, "Obliviatel": {"_count": 1, "The": {"_count": 1, "wand": {"_count": 1}}}, "chunks": {"_count": 10, "of": {"_count": 8, "tunnel": {"_count": 1}, "it": {"_count": 1}, "nougat": {"_count": 1}, "his": {"_count": 1}, "shelf": {"_count": 1}, "rock": {"_count": 1}, "vomit": {"_count": 1}, "dark": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "were": {"_count": 1, "missing": {"_count": 1}}}, "rockfall": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "gits": {"_count": 3, "not": {"_count": 1, "though": {"_count": 1}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "forever": {"_count": 1, "": {"_count": 1}}}, "ow": {"_count": 11, "": {"_count": 2, "!": {"_count": 2}}, "e": {"_count": 1, "did": {"_count": 1}}, "shed": {"_count": 1, "feel": {"_count": 1}}, "theyre": {"_count": 1, "eating": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "zey": {"_count": 1, "knew": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "gerroff": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "all": {"_count": 1}}, "eez": {"_count": 1, "leetle": {"_count": 1}}}, "Huge": {"_count": 1, "cracks": {"_count": 1, "had": {"_count": 1}}}, "caved": {"_count": 4, "in": {"_count": 4, "": {"_count": 1}, "completely": {"_count": 1}, "so": {"_count": 1}, "to": {"_count": 1}}}, "pregnant": {"_count": 2, "pause": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "shift": {"_count": 11, "some": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "rocks": {"_count": 1}}, "his": {"_count": 2, "attention": {"_count": 1}, "grip": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "ended": {"_count": 1}}, "aside": {"_count": 2, "there": {"_count": 1}, "": {"_count": 1}}, "positions": {"_count": 1, "lest": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "using": {"_count": 1}}}, "inject": {"_count": 2, "some": {"_count": 1, "confidence": {"_count": 1}}, "a": {"_count": 1, "note": {"_count": 1}}}, "tingling": {"_count": 8, "unpleasantly": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "fear": {"_count": 1}}, "sensation": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "led": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "warmth": {"_count": 1, "that": {"_count": 1}}}, "dreaded": {"_count": 7, "what": {"_count": 1, "hed": {"_count": 1}}, "the": {"_count": 2, "moment": {"_count": 1}, "music": {"_count": 1}}, "his": {"_count": 1, "return": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "beyond": {"_count": 1, "all": {"_count": 1}}}, "entwined": {"_count": 6, "serpents": {"_count": 1, "were": {"_count": 1}}, "with": {"_count": 2, "more": {"_count": 1}, "white": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "figures": {"_count": 1, "": {"_count": 1}}, "herself": {"_count": 1, "around": {"_count": 1}}}, "serpents": {"_count": 17, "were": {"_count": 1, "carved": {"_count": 1}}, "parted": {"_count": 1, "as": {"_count": 1}}, "rose": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "mouth": {"_count": 1, "But": {"_count": 1}}, "fang": {"_count": 1, "had": {"_count": 1}}, "are": {"_count": 1, "often": {"_count": 1}}, "head": {"_count": 2, "and": {"_count": 1}, "grew": {"_count": 1}}, "grew": {"_count": 1, "faint": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 1, "demons": {"_count": 1}}, "tongue": {"_count": 1, "glinting": {"_count": 1}}, "and": {"_count": 1, "closed": {"_count": 1}}, "chimaeras": {"_count": 1, "and": {"_count": 1}}}, "emeralds": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "everywhere": {"_count": 1, "so": {"_count": 1}}}, "flicker": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "distort": {"_count": 1}, "die": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 2}, "surprise": {"_count": 1}, "annoyance": {"_count": 1}}, "feebly": {"_count": 1, "and": {"_count": 1}}}, "hiss": {"_count": 16, "": {"_count": 6, ".": {"_count": 6}}, "Crookshanks": {"_count": 1, "leapt": {"_count": 1}}, "and": {"_count": 4, "Frank": {"_count": 1}, "it": {"_count": 1}, "shot": {"_count": 1}, "a": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "Karkaroff": {"_count": 1}}, "of": {"_count": 1, "falling": {"_count": 1}}, "that": {"_count": 1, "caused": {"_count": 1}}, "on": {"_count": 1, "even": {"_count": 1}}}, "halves": {"_count": 7, "slid": {"_count": 1, "smoothly": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "his": {"_count": 1}, "holly": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "and": {"_count": 1}}}, "Towering": {"_count": 1, "stone": {"_count": 1, "pillars": {"_count": 1}}}, "pillars": {"_count": 12, "entwined": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 1, "statue": {"_count": 1}}, "and": {"_count": 2, "look": {"_count": 1}, "watched": {"_count": 1}}, "He": {"_count": 1, "couldnt": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "topped": {"_count": 2, "with": {"_count": 2}}, "four": {"_count": 1, "Had": {"_count": 1}}, "on": {"_count": 1, "either": {"_count": 1}}, "at": {"_count": 1, "either": {"_count": 1}}}, "pillar": {"_count": 6, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "watching": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "leaned": {"_count": 1}}, "not": {"_count": 1, "far": {"_count": 1}}}, "serpentine": {"_count": 4, "columns": {"_count": 1, "": {"_count": 1}}, "S": {"_count": 2, "": {"_count": 1}, "inlaid": {"_count": 1}}, "face": {"_count": 1, "the": {"_count": 1}}}, "columns": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "topped": {"_count": 1, "with": {"_count": 1}}}, "footstep": {"_count": 2, "echoed": {"_count": 1, "loudly": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "clamp": {"_count": 2, "them": {"_count": 1, "shut": {"_count": 1}}, "their": {"_count": 1, "jaws": {"_count": 1}}}, "sockets": {"_count": 9, "of": {"_count": 1, "the": {"_count": 1}}, "see": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "might": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "sweat": {"_count": 1}}, "Horribly": {"_count": 1, "familiar": {"_count": 1}}, "solid": {"_count": 1, "wax": {"_count": 1}}}, "crane": {"_count": 3, "his": {"_count": 2, "neck": {"_count": 2}}, "your": {"_count": 1, "neck": {"_count": 1}}}, "monkeyish": {"_count": 1, "with": {"_count": 1, "a": {"_count": 1}}}, "blackrobed": {"_count": 1, "figure": {"_count": 1, "with": {"_count": 1}}}, "flamingred": {"_count": 2, "hair": {"_count": 2, "": {"_count": 2}}}, "Ginnyl": {"_count": 2, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}}, "hopelessly": {"_count": 23, "from": {"_count": 1, "side": {"_count": 1}}, "and": {"_count": 2, "beckoned": {"_count": 1}, "then": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 4}, "Ginny": {"_count": 1}, "Dumbledores": {"_count": 1}}, "around": {"_count": 2, "for": {"_count": 1}, "his": {"_count": 1}}, "mundane": {"_count": 1, "": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "down": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "pulled": {"_count": 1}}, "dragging": {"_count": 1, "herself": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "misted": {"_count": 5, "window": {"_count": 2, "": {"_count": 1}, "full": {"_count": 1}}, "came": {"_count": 1, "closer": {"_count": 1}}, "the": {"_count": 1, "surface": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "Preserved": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "Lying": {"_count": 9, "open": {"_count": 1, "there": {"_count": 1}}, "on": {"_count": 2, "top": {"_count": 1}, "your": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 1, "Hagrid": {"_count": 1}}, "awake": {"_count": 1, "in": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "sagging": {"_count": 13, "with": {"_count": 2, "Ginnys": {"_count": 1}, "sarcasm": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "under": {"_count": 1, "the": {"_count": 1}}, "slightly": {"_count": 1, "under": {"_count": 1}}, "armchair": {"_count": 2, "and": {"_count": 1}, "that": {"_count": 1}}, "open": {"_count": 1, "and": {"_count": 1}}, "sideways": {"_count": 1, "onto": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "armchairs": {"_count": 1, "with": {"_count": 1}}}, "patience": {"_count": 8, "I": {"_count": 1, "dont": {"_count": 1}}, "with": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "and": {"_count": 2, "sticking": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "completely": {"_count": 1, "Harry": {"_count": 1}}}, "pleasantly": {"_count": 28, "": {"_count": 12, ".": {"_count": 12}}, "how": {"_count": 1, "is": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "like": {"_count": 1, "warm": {"_count": 1}}, "springy": {"_count": 1, "": {"_count": 1}}, "smiling": {"_count": 1, "down": {"_count": 1}}, "cool": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "enough": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 1, "took": {"_count": 1}}, "but": {"_count": 2, "I": {"_count": 1}, "in": {"_count": 1}}, "drowsy": {"_count": 1, "now": {"_count": 1}}, "surprised": {"_count": 1, "when": {"_count": 1}}, "festive": {"_count": 1, "The": {"_count": 1}}, "to": {"_count": 1, "Uncle": {"_count": 1}}}, "worries": {"_count": 11, "and": {"_count": 2, "woes": {"_count": 1}, "problems": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "about": {"_count": 2, "Voldemort": {"_count": 1}, "this": {"_count": 1}}, "are": {"_count": 1, "not": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "me": {"_count": 1, "said": {"_count": 1}}, "they": {"_count": 1, "continued": {"_count": 1}}}, "woes": {"_count": 1, "how": {"_count": 1, "her": {"_count": 1}}}, "tease": {"_count": 2, "her": {"_count": 1, "how": {"_count": 1}}, "him": {"_count": 1, "will": {"_count": 1}}}, "troubles": {"_count": 6, "of": {"_count": 1, "an": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "are": {"_count": 1, "not": {"_count": 1}}, "enough": {"_count": 1, "without": {"_count": 1}}, "were": {"_count": 1, "far": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "elevenyearold": {"_count": 2, "girl": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}}, "sympathetic": {"_count": 11, "I": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "toward": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "to": {"_count": 1, "Rons": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "Ron": {"_count": 1, "uncertain": {"_count": 1}}, "friend": {"_count": 1, "to": {"_count": 1}}}, "confide": {"_count": 12, "in": {"_count": 7, "": {"_count": 1}, "them": {"_count": 1}, "me": {"_count": 3}, "each": {"_count": 1}, "two": {"_count": 1}}, "these": {"_count": 1, "recollections": {"_count": 1}}, "suspicions": {"_count": 1, "about": {"_count": 1}}, "a": {"_count": 1, "part": {"_count": 1}}, "the": {"_count": 1, "contents": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}}, "diet": {"_count": 9, "of": {"_count": 1, "her": {"_count": 1}}, "isnt": {"_count": 1, "going": {"_count": 1}}, "sheet": {"_count": 1, "that": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "at": {"_count": 1}}, "How": {"_count": 1, "big": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}}, "darkest": {"_count": 5, "secrets": {"_count": 1, "": {"_count": 1}}, "filthiest": {"_count": 1, "places": {"_count": 1}}, "hour": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "corner": {"_count": 1, "ragged": {"_count": 1}}}, "guessed": {"_count": 38, "yet": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "that": {"_count": 12, "Moaning": {"_count": 1}, "he": {"_count": 2}, "many": {"_count": 1}, "it": {"_count": 3}, "five": {"_count": 1}, "Merope": {"_count": 1}, "she": {"_count": 2}, "his": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "truth": {"_count": 1}}, "right": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "was": {"_count": 1, "Professor": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Kreacher": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 2}}, "fifteen": {"_count": 1, "years": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 1}, "be": {"_count": 1}, "dormitories": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "correctly": {"_count": 1, "that": {"_count": 1}}, "about": {"_count": 1, "Hermione": {"_count": 1}}, "Snape": {"_count": 1, "would": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}}, "Serpent": {"_count": 1, "of": {"_count": 1, "Slytherin": {"_count": 1}}}, "entries": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "suspects": {"_count": 6, "me": {"_count": 2, "": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "Dad": {"_count": 1, "he": {"_count": 1}}, "hes": {"_count": 1, "one": {"_count": 1}}, "it": {"_count": 1, "himself": {"_count": 1}}}, "digging": {"_count": 13, "deep": {"_count": 1, "into": {"_count": 1}}, "his": {"_count": 2, "beak": {"_count": 1}, "fingers": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "energetically": {"_count": 1, "in": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "worms": {"_count": 1}}, "uncovered": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "grave": {"_count": 1}}}, "dispose": {"_count": 5, "of": {"_count": 5, "it": {"_count": 1}, "Sirius": {"_count": 1}, "Potter": {"_count": 1}, "the": {"_count": 1}, "Voldemorts": {"_count": 1}}}, "Anger": {"_count": 2, "was": {"_count": 2, "coursing": {"_count": 1}, "coming": {"_count": 1}}}, "roved": {"_count": 5, "over": {"_count": 3, "the": {"_count": 2}, "their": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "Harry": {"_count": 1}}}, "Armando": {"_count": 6, "Dippet": {"_count": 5, "": {"_count": 2}, "said": {"_count": 1}, "over": {"_count": 1}, "Master": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "parentless": {"_count": 1, "but": {"_count": 1, "so": {"_count": 1}}}, "cubs": {"_count": 2, "under": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "preserving": {"_count": 2, "my": {"_count": 1, "sixteenyearold": {"_count": 1}}, "what": {"_count": 1, "ought": {"_count": 1}}}, "sixteenyearold": {"_count": 4, "self": {"_count": 1, "in": {"_count": 1}}, "twin": {"_count": 1, "brothers": {"_count": 1}}, "Does": {"_count": 1, "anyone": {"_count": 1}}, "to": {"_count": 1, "reach": {"_count": 1}}}, "triumphantly": {"_count": 11, "": {"_count": 4, ".": {"_count": 4}}, "throwing": {"_count": 1, "down": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "whom": {"_count": 1, "Harry": {"_count": 1}}, "The": {"_count": 1, "Dark": {"_count": 1}}, "snatched": {"_count": 1, "your": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "strangling": {"_count": 6, "roosters": {"_count": 1, "": {"_count": 1}}, "us": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "chain": {"_count": 1, "his": {"_count": 1}}, "hug": {"_count": 1, "while": {"_count": 1}}}, "brat": {"_count": 4, "waited": {"_count": 1, "until": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "Kreacher": {"_count": 1, "wont": {"_count": 1}}, "has": {"_count": 1, "nothing": {"_count": 1}}}, "solve": {"_count": 6, "the": {"_count": 3, "mystery": {"_count": 2}, "clue": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "us": {"_count": 1}}, "though": {"_count": 1, "because": {"_count": 1}}}, "farewell": {"_count": 8, "on": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "turned": {"_count": 1, "around": {"_count": 1}}, "salute": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "headed": {"_count": 1}, "turned": {"_count": 1}}, "explaining": {"_count": 1, "what": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tom": {"_count": 1, "marvolo": {"_count": 1, "riddle": {"_count": 1}}}, "marvolo": {"_count": 1, "riddle": {"_count": 1, "Then": {"_count": 1}}}, "riddle": {"_count": 4, "Then": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "was": {"_count": 1, "too": {"_count": 1}}}, "rearranged": {"_count": 7, "themselves": {"_count": 1, "i": {"_count": 1}}, "her": {"_count": 2, "shawl": {"_count": 1}, "features": {"_count": 1}}, "depending": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "scarves": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "i": {"_count": 3, "am": {"_count": 1, "lord": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "so": {"_count": 1, "ferociously": {"_count": 1}}}, "voldemort": {"_count": 1, "You": {"_count": 1, "see": {"_count": 1}}}, "intimate": {"_count": 2, "friends": {"_count": 1, "only": {"_count": 1}}, "to": {"_count": 1, "Hagrid": {"_count": 1}}}, "runs": {"_count": 6, "the": {"_count": 1, "blood": {"_count": 1}}, "afoul": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "The": {"_count": 1, "Quibbler": {"_count": 1}}, "some": {"_count": 1, "stupid": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "abandoned": {"_count": 32, "me": {"_count": 1, "even": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "front": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "his": {"_count": 3, "bunches": {"_count": 1}, "witch": {"_count": 2}}, "the": {"_count": 5, "use": {"_count": 1}, "attempt": {"_count": 2}, "rock": {"_count": 1}, "chase": {"_count": 1}}, "their": {"_count": 2, "snowball": {"_count": 1}, "attempts": {"_count": 1}}, "her": {"_count": 4, "when": {"_count": 1}, "baby": {"_count": 1}, "Merope": {"_count": 1}, "at": {"_count": 1}}, "hope": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "butterbeer": {"_count": 1, "corks": {"_count": 1}}, "several": {"_count": 1, "feet": {"_count": 1}}, "traveling": {"_count": 1, "cloak": {"_count": 1}}, "chintz": {"_count": 1, "chair": {"_count": 1}}, "restraint": {"_count": 1, "": {"_count": 1}}, "home": {"_count": 2, "was": {"_count": 1}, "of": {"_count": 1}}, "boys": {"_count": 1, "had": {"_count": 1}}}, "fashioned": {"_count": 5, "myself": {"_count": 1, "a": {"_count": 1}}, "London": {"_count": 1, "street": {"_count": 1}}, "gas": {"_count": 1, "lamps": {"_count": 1}}, "printing": {"_count": 1, "press": {"_count": 1}}, "a": {"_count": 1, "wand": {"_count": 1}}}, "orphaned": {"_count": 1, "boy": {"_count": 1, "who": {"_count": 1}}}, "murder": {"_count": 50, "Harrys": {"_count": 1, "own": {"_count": 1}}, "of": {"_count": 5, "Pettigrew": {"_count": 1}, "Harrys": {"_count": 1}, "twelve": {"_count": 1}, "Emmeline": {"_count": 1}, "your": {"_count": 1}}, "here": {"_count": 1, "tonight": {"_count": 1}}, "I": {"_count": 2, "was": {"_count": 1}, "do": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "Hogwarts": {"_count": 1}}, "Pettigrew": {"_count": 1, "": {"_count": 1}}, "Sirius": {"_count": 1, "on": {"_count": 1}}, "IP": {"_count": 1, "whispered": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 11}, "?": {"_count": 1}}, "yet": {"_count": 1, "if": {"_count": 1}}, "and": {"_count": 3, "youre": {"_count": 1}, "expressing": {"_count": 1}, "cutting": {"_count": 1}}, "him": {"_count": 2, "before": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "McKinnons": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "in": {"_count": 2, "any": {"_count": 1}, "his": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "thas": {"_count": 1, "diffrent": {"_count": 1}}, "whether": {"_count": 1, "it": {"_count": 1}}, "many": {"_count": 1, "times": {"_count": 1}}, "is": {"_count": 2, "more": {"_count": 1}, "that": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "disappoint": {"_count": 2, "you": {"_count": 1, "and": {"_count": 1}}, "He": {"_count": 1, "WHAT": {"_count": 1}}}, "frightens": {"_count": 2, "you": {"_count": 2, "now": {"_count": 1}, "most": {"_count": 1}}}, "mere": {"_count": 31, "memory": {"_count": 3, "of": {"_count": 1}, "starting": {"_count": 1}, "sapping": {"_count": 1}}, "shadow": {"_count": 1, "of": {"_count": 1}}, "sight": {"_count": 1, "of": {"_count": 1}}, "fleshcolored": {"_count": 1, "pinpricks": {"_count": 1}}, "inch": {"_count": 1, "away": {"_count": 1}}, "byproducts": {"_count": 1, "of": {"_count": 1}}, "statement": {"_count": 1, "but": {"_count": 1}}, "weeks": {"_count": 1, "ago": {"_count": 1}}, "presence": {"_count": 1, "was": {"_count": 1}}, "technicality": {"_count": 1, "if": {"_count": 1}}, "hours": {"_count": 3, "after": {"_count": 2}, "previously": {"_count": 1}}, "twelve": {"_count": 1, "Galleons": {"_count": 1}}, "feet": {"_count": 2, "away": {"_count": 2}}, "fortnight": {"_count": 1, "of": {"_count": 1}}, "fact": {"_count": 1, "that": {"_count": 1}}, "whim": {"_count": 1, "": {"_count": 1}}, "assistant": {"_count": 1, "": {"_count": 1}}, "words": {"_count": 1, "could": {"_count": 1}}, "headmaster": {"_count": 1, "": {"_count": 1}}, "four": {"_count": 1, "weeks": {"_count": 1}}, "symbolic": {"_count": 1, "keepsake": {"_count": 1}}, "effusion": {"_count": 1, "of": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "outlines": {"_count": 1, "in": {"_count": 1}}, "seconds": {"_count": 1, "a": {"_count": 1}}, "minutes": {"_count": 1, "when": {"_count": 1}}}, "scare": {"_count": 8, "Riddle": {"_count": 1, "wishing": {"_count": 1}}, "most": {"_count": 1, "people": {"_count": 1}}, "the": {"_count": 1, "living": {"_count": 1}}, "them": {"_count": 1, "away": {"_count": 1}}, "me": {"_count": 1, "into": {"_count": 1}}, "off": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 1, "off": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}}, "Music": {"_count": 1, "was": {"_count": 1, "coming": {"_count": 1}}}, "spinetingling": {"_count": 1, "unearthly": {"_count": 1, "it": {"_count": 1}}}, "unearthly": {"_count": 3, "it": {"_count": 1, "lifted": {"_count": 1}}, "sound": {"_count": 1, "filled": {"_count": 1}}, "and": {"_count": 1, "beautiful": {"_count": 1}}}, "scalp": {"_count": 5, "and": {"_count": 2, "made": {"_count": 1}, "turning": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "showed": {"_count": 1, "clearly": {"_count": 1}}}, "swan": {"_count": 3, "had": {"_count": 1, "appeared": {"_count": 1}}, "with": {"_count": 1, "magnificent": {"_count": 1}}, "dozed": {"_count": 1, "on": {"_count": 1}}}, "vaulted": {"_count": 7, "ceiling": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "the": {"_count": 2, "barrier": {"_count": 1}, "fence": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "bed": {"_count": 1}}}, "peacocks": {"_count": 2, "and": {"_count": 1, "gleaming": {"_count": 1}}, "tethered": {"_count": 1, "at": {"_count": 1}}}, "talons": {"_count": 6, "which": {"_count": 1, "were": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "hurt": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "let": {"_count": 1}}, "cut": {"_count": 1, "into": {"_count": 1}}, "was": {"_count": 1, "chipped": {"_count": 1}}}, "shrewdly": {"_count": 9, "back": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "her": {"_count": 1, "head": {"_count": 1}}}, "Patched": {"_count": 1, "frayed": {"_count": 1, "and": {"_count": 1}}}, "sends": {"_count": 4, "his": {"_count": 2, "defender": {"_count": 1}, "respectful": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "all": {"_count": 1}}}, "defender": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "of": {"_count": 1, "houseelves": {"_count": 1}}}, "songbird": {"_count": 1, "and": {"_count": 1, "an": {"_count": 1}}}, "dwindling": {"_count": 3, "out": {"_count": 1, "of": {"_count": 1}}, "slowly": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "clearer": {"_count": 18, "more": {"_count": 1, "solid": {"_count": 1}}, "focus": {"_count": 1, "lit": {"_count": 1}}, "and": {"_count": 2, "clearer": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "months": {"_count": 1}}, "than": {"_count": 2, "ever": {"_count": 1}, "it": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}, "all": {"_count": 1, "year": {"_count": 1}}, "view": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "picture": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Give": {"_count": 1, "me": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 1}, "Mrs": {"_count": 1}, "Malfoy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "suppressed": {"_count": 12, "rage": {"_count": 3, "": {"_count": 2}, "Very": {"_count": 1}}, "a": {"_count": 3, "laugh": {"_count": 1}, "giggle": {"_count": 1}, "sob": {"_count": 1}}, "triumph": {"_count": 2, "about": {"_count": 1}, "": {"_count": 1}}, "giggles": {"_count": 1, "as": {"_count": 1}}, "mirth": {"_count": 1, "": {"_count": 1}}, "glee": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 1, "decades": {"_count": 1}}}, "countercharm": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 2, "Flitwick": {"_count": 1}, "hiccups": {"_count": 1}}}, "likenesses": {"_count": 2, "between": {"_count": 1, "us": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "halfbloods": {"_count": 4, "orphans": {"_count": 1, "raised": {"_count": 1}}, "tongue": {"_count": 1, "you": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "swear": {"_count": 1, "a": {"_count": 1}}}, "orphans": {"_count": 5, "raised": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "were": {"_count": 1, "taken": {"_count": 1}}}, "Parselmouths": {"_count": 2, "to": {"_count": 1, "come": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}}, "weapons": {"_count": 8, "Dumbledore": {"_count": 1, "can": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "this": {"_count": 1, "term": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "could": {"_count": 1, "be": {"_count": 1}}, "broomsticks": {"_count": 1, "bats": {"_count": 1}}}, "amused": {"_count": 30, "eye": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "them": {"_count": 1, "to": {"_count": 1}}, "himself": {"_count": 2, "for": {"_count": 2}}, "when": {"_count": 2, "Professor": {"_count": 1}, "she": {"_count": 1}}, "voice": {"_count": 1, "and": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "dyou": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "who": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "skepticism": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "half": {"_count": 1, "irritated": {"_count": 1}}, "derision": {"_count": 1, "": {"_count": 1}}}, "halfdarkness": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sweep": {"_count": 9, "his": {"_count": 1, "cheek": {"_count": 1}}, "the": {"_count": 2, "floor": {"_count": 1}, "Patronus": {"_count": 1}}, "silently": {"_count": 1, "toward": {"_count": 1}}, "of": {"_count": 4, "its": {"_count": 1}, "his": {"_count": 2}, "grass": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}}, "blindly": {"_count": 15, "sideways": {"_count": 1, "his": {"_count": 1}}, "Harry": {"_count": 1, "dodged": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 2, "him": {"_count": 1}, "Snape": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 1}, "through": {"_count": 1}}, "to": {"_count": 1, "escape": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "upward": {"_count": 1, "frozen": {"_count": 1}}, "trust": {"_count": 1, "that": {"_count": 1}}, "nobody": {"_count": 1, "looked": {"_count": 1}}}, "explosive": {"_count": 4, "spitting": {"_count": 1, "sound": {"_count": 1}}, "bang": {"_count": 1, "and": {"_count": 1}}, "new": {"_count": 1, "biography": {"_count": 1}}, "force": {"_count": 1, "that": {"_count": 1}}}, "Waiting": {"_count": 2, "for": {"_count": 2, "fangs": {"_count": 1}, "them": {"_count": 1}}}, "drunkenly": {"_count": 4, "between": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "trembling": {"_count": 1}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "Riddle": {"_count": 1}}}, "sabers": {"_count": 1, "Fawkes": {"_count": 1, "dived": {"_count": 1}}}, "spattered": {"_count": 8, "the": {"_count": 3, "floor": {"_count": 1}, "windows": {"_count": 1}, "walls": {"_count": 1}}, "with": {"_count": 1, "mud": {"_count": 1}}, "Luna": {"_count": 1, "Lovegoods": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "halfway": {"_count": 1, "up": {"_count": 1}}, "he": {"_count": 1, "hurried": {"_count": 1}}}, "thrashed": {"_count": 5, "narrowly": {"_count": 1, "missing": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "screamed": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}}, "punctured": {"_count": 8, "by": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "her": {"_count": 1}}, "football": {"_count": 1, "": {"_count": 1}}, "many": {"_count": 1, "inflated": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "hole": {"_count": 1}}, "pages": {"_count": 1, "and": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}}, "LEAVE": {"_count": 6, "THE": {"_count": 3, "BIRD": {"_count": 3}}, "IT": {"_count": 1, "": {"_count": 1}}, "YOUR": {"_count": 1, "AUNT": {"_count": 1}}, "HIM": {"_count": 1, "ALONE": {"_count": 1}}}, "BIRD": {"_count": 3, "": {"_count": 3, "!": {"_count": 3}}}, "CAN": {"_count": 3, "STILL": {"_count": 1, "SMELL": {"_count": 1}}, "YOU": {"_count": 2, "HEAR": {"_count": 1}, "OR": {"_count": 1}}}, "STILL": {"_count": 4, "SMELL": {"_count": 1, "HIM": {"_count": 1}}, "AT": {"_count": 1, "LARGE": {"_count": 1}}, "BEEN": {"_count": 2, "HERE": {"_count": 1}, "TOGETHER": {"_count": 1}}}, "scaly": {"_count": 13, "nose": {"_count": 1, "as": {"_count": 1}}, "front": {"_count": 2, "knees": {"_count": 2}}, "monkeys": {"_count": 1, "with": {"_count": 1}}, "knees": {"_count": 1, "and": {"_count": 1}}, "wings": {"_count": 1, "were": {"_count": 1}}, "hides": {"_count": 1, "Harry": {"_count": 1}}, "spikeridden": {"_count": 1, "firebreathing": {"_count": 1}}, "black": {"_count": 1, "lizard": {"_count": 1}}, "looking": {"_count": 1, "a": {"_count": 1}}, "leg": {"_count": 1, "": {"_count": 1}}, "material": {"_count": 1, "": {"_count": 1}}, "erupted": {"_count": 1, "into": {"_count": 1}}}, "basilisks": {"_count": 4, "tail": {"_count": 1, "swung": {"_count": 1}}, "head": {"_count": 1, "was": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "victims": {"_count": 1, "will": {"_count": 1}}}, "contracted": {"_count": 8, "as": {"_count": 1, "though": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "so": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 2, "fear": {"_count": 1}, "a": {"_count": 1}}, "dragon": {"_count": 1, "pox": {"_count": 1}}}, "SNIFF": {"_count": 1, "SMELL": {"_count": 1, "HIM": {"_count": 1}}}, "coiling": {"_count": 10, "around": {"_count": 1, "hitting": {"_count": 1}}, "up": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 2, "undulating": {"_count": 1}, "uncoiling": {"_count": 1}}, "itself": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 2, "chain": {"_count": 1}, "great": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "snake": {"_count": 1, "in": {"_count": 1}}, "serpent": {"_count": 1, "in": {"_count": 1}}}, "forked": {"_count": 3, "tongue": {"_count": 1, "lashed": {"_count": 1}}, "lightning": {"_count": 1, "": {"_count": 1}}, "tail": {"_count": 1, "since": {"_count": 1}}}, "lashed": {"_count": 5, "Harrys": {"_count": 1, "side": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "hilt": {"_count": 15, "into": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "so": {"_count": 1, "Im": {"_count": 1}}, "but": {"_count": 1, "Scrimgeour": {"_count": 1}}, "a": {"_count": 1, "ruby": {"_count": 1}}, "he": {"_count": 1, "pulled": {"_count": 1}}, "glinting": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 3}}, "and": {"_count": 1, "touched": {"_count": 1}}}, "fang": {"_count": 11, "was": {"_count": 1, "sinking": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "watched": {"_count": 1}}, "had": {"_count": 1, "pierced": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "hole": {"_count": 1, "Riddles": {"_count": 1}}, "not": {"_count": 1, "long": {"_count": 1}}, "dangling": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "splintered": {"_count": 10, "as": {"_count": 1, "the": {"_count": 1}}, "wood": {"_count": 3, "and": {"_count": 1}, "now": {"_count": 1}, "": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "their": {"_count": 1}}, "silver": {"_count": 1, "picture": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "china": {"_count": 1, "flew": {"_count": 1}}, "apart": {"_count": 1, "completely": {"_count": 1}}}, "dissolving": {"_count": 5, "in": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "though": {"_count": 1}}, "with": {"_count": 1, "misery": {"_count": 1}}}, "Fawkess": {"_count": 8, "head": {"_count": 1, "slid": {"_count": 1}}, "strangely": {"_count": 1, "hot": {"_count": 1}}, "timely": {"_count": 1, "arrival": {"_count": 1}}, "plumed": {"_count": 1, "golden": {"_count": 1}}, "warning": {"_count": 1, "said": {"_count": 1}}, "perch": {"_count": 2, "": {"_count": 1}, "stood": {"_count": 1}}, "lament": {"_count": 1, "was": {"_count": 1}}}, "Thick": {"_count": 3, "pearly": {"_count": 1, "tears": {"_count": 1}}, "streamers": {"_count": 1, "of": {"_count": 1}}, "dust": {"_count": 1, "crunched": {"_count": 1}}}, "Alone": {"_count": 5, "in": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "say": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "amongst": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "Harrys": {"_count": 1}}}, "forsaken": {"_count": 1, "by": {"_count": 1, "his": {"_count": 1}}}, "unwisely": {"_count": 3, "challenged": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "there": {"_count": 1, "Shut": {"_count": 1}}}, "Phoenix": {"_count": 56, "tears": {"_count": 1, "": {"_count": 1}}, "may": {"_count": 1, "he": {"_count": 1}}, "tailing": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "": {"_count": 12, "?": {"_count": 3}, ".": {"_count": 7}, "!": {"_count": 2}}, "J": {"_count": 10, "": {"_count": 10}}, "to": {"_count": 1, "ask": {"_count": 1}}, "about": {"_count": 1, "an": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "came": {"_count": 1, "and": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "he": {"_count": 1, "needed": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "have": {"_count": 1, "more": {"_count": 1}}, "both": {"_count": 1, "sets": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "off": {"_count": 1}}, "here": {"_count": 1, "tonight": {"_count": 1}}, "lot": {"_count": 1, "got": {"_count": 1}}, "Kingsley": {"_count": 1, "Shacklebolt": {"_count": 1}}, "intends": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "after": {"_count": 1}}, "inform": {"_count": 1, "me": {"_count": 1}}, "informs": {"_count": 1, "us": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 2, "finished": {"_count": 2}}, "know": {"_count": 1, "and": {"_count": 1}}, "Dumbledores": {"_count": 1, "Army": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "Snape": {"_count": 1, "murmured": {"_count": 1}}}, "considering": {"_count": 17, "as": {"_count": 1, "though": {"_count": 1}}, "taking": {"_count": 1, "off": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "Irelands": {"_count": 1, "front": {"_count": 1}}, "its": {"_count": 1, "size": {"_count": 1}}, "how": {"_count": 1, "frustrated": {"_count": 1}}, "they": {"_count": 2, "all": {"_count": 1}, "had": {"_count": 1}}, "admitting": {"_count": 1, "that": {"_count": 1}}, "attempting": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 2, "matter": {"_count": 1}, "boy": {"_count": 1}}, "that": {"_count": 2, "they": {"_count": 1}, "all": {"_count": 1}}, "trying": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}}, "Ink": {"_count": 3, "spurted": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "others": {"_count": 1, "had": {"_count": 1}}}, "spurted": {"_count": 3, "out": {"_count": 1, "of": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "Malfoys": {"_count": 1}}}, "torrents": {"_count": 2, "streaming": {"_count": 1, "over": {"_count": 1}}, "of": {"_count": 1, "fire": {"_count": 1}}}, "oozing": {"_count": 8, "from": {"_count": 3, "the": {"_count": 1}, "under": {"_count": 1}, "slashes": {"_count": 1}}, "slowly": {"_count": 1, "up": {"_count": 1}}, "blood": {"_count": 1, "all": {"_count": 1}}, "droplets": {"_count": 1, "of": {"_count": 1}}, "under": {"_count": 1, "doorways": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}}, "bemused": {"_count": 14, "eyes": {"_count": 1, "traveled": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}, "sort": {"_count": 2, "of": {"_count": 2}}, "then": {"_count": 1, "checked": {"_count": 1}}, "a": {"_count": 1, "strange": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "as": {"_count": 1, "Hermiones": {"_count": 1}}, "by": {"_count": 1, "their": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermole": {"_count": 1}}}, "bloodsoaked": {"_count": 1, "robes": {"_count": 1, "then": {"_count": 1}}}, "sswear": {"_count": 1, "I": {"_count": 1, "ddidnt": {"_count": 1}}}, "ddidnt": {"_count": 3, "mean": {"_count": 1, "to": {"_count": 1}}, "know": {"_count": 1, "sobbed": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}}, "RRiddle": {"_count": 1, "made": {"_count": 1, "me": {"_count": 1}}}, "ttook": {"_count": 1, "me": {"_count": 1, "over": {"_count": 1}}}, "Wwheres": {"_count": 1, "Riddle": {"_count": 1, "": {"_count": 1}}}, "rremember": {"_count": 1, "is": {"_count": 1, "him": {"_count": 1}}}, "wept": {"_count": 2, "as": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "BBill": {"_count": 1, "came": {"_count": 1, "and": {"_count": 1}}}, "nnow": {"_count": 1, "Ill": {"_count": 1, "have": {"_count": 1}}}, "wwhatll": {"_count": 1, "Mum": {"_count": 1, "and": {"_count": 1}}}, "sizable": {"_count": 3, "gap": {"_count": 1, "he": {"_count": 1}}, "chunk": {"_count": 1, "of": {"_count": 1}}, "stack": {"_count": 1, "of": {"_count": 1}}}, "gaping": {"_count": 21, "at": {"_count": 9, "the": {"_count": 1}, "Mr": {"_count": 1}, "her": {"_count": 2}, "Snapes": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 3}}, "shapeless": {"_count": 1, "hole": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "holes": {"_count": 1, "in": {"_count": 1}}, "stupidly": {"_count": 1, "": {"_count": 1}}, "chasm": {"_count": 1, "inside": {"_count": 1}}, "in": {"_count": 1, "astonishment": {"_count": 1}}, "and": {"_count": 1, "gawping": {"_count": 1}}, "hole": {"_count": 3, "in": {"_count": 1}, "where": {"_count": 1}, "left": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Later": {"_count": 6, "Harry": {"_count": 3, "said": {"_count": 2}, "muttered": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}}, "Led": {"_count": 1, "by": {"_count": 1, "Fawkes": {"_count": 1}}}, "placidly": {"_count": 7, "to": {"_count": 2, "himself": {"_count": 1}, "Mr": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "handing": {"_count": 1, "it": {"_count": 1}}, "beside": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}}, "memorys": {"_count": 3, "gone": {"_count": 1, "said": {"_count": 1}}, "modified": {"_count": 1, "it": {"_count": 1}}, "a": {"_count": 1, "blank": {"_count": 1}}}, "Hit": {"_count": 5, "him": {"_count": 1, "instead": {"_count": 1}}, "Wizards": {"_count": 1, "from": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "two": {"_count": 1}}, "a": {"_count": 1, "Bludger": {"_count": 1}}}, "Hasnt": {"_count": 11, "got": {"_count": 2, "a": {"_count": 1}, "two": {"_count": 1}}, "your": {"_count": 1, "experience": {"_count": 1}}, "been": {"_count": 2, "right": {"_count": 1}, "into": {"_count": 1}}, "he": {"_count": 3, "asked": {"_count": 1}, "": {"_count": 1}, "got": {"_count": 1}}, "anyone": {"_count": 1, "told": {"_count": 1}}, "asked": {"_count": 1, "how": {"_count": 1}}, "changed": {"_count": 1, "much": {"_count": 1}}}, "goodnaturedly": {"_count": 2, "up": {"_count": 1, "at": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}}, "Odd": {"_count": 4, "sort": {"_count": 1, "of": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "in": {"_count": 1, "what": {"_count": 1}}, "words": {"_count": 1, "floated": {"_count": 1}}}, "perplexed": {"_count": 14, "": {"_count": 11, ".": {"_count": 11}}, "Harry": {"_count": 2, "got": {"_count": 1}, "and": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}}, "lightness": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "flecks": {"_count": 7, "of": {"_count": 6, "blood": {"_count": 2}, "spit": {"_count": 1}, "light": {"_count": 1}, "cold": {"_count": 1}, "golden": {"_count": 1}}, "were": {"_count": 1, "drifting": {"_count": 1}}}, "competition": {"_count": 7, "Ginny": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "scored": {"_count": 1}}}, "REWARD": {"_count": 1, "For": {"_count": 1, "a": {"_count": 1}}}, "steadying": {"_count": 5, "gasps": {"_count": 1, "clutching": {"_count": 1}}, "breath": {"_count": 3, "and": {"_count": 1}, "then": {"_count": 1}, "": {"_count": 1}}, "himself": {"_count": 1, "holding": {"_count": 1}}}, "embrace": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "mortal": {"_count": 1, "life": {"_count": 1}}, "the": {"_count": 1, "whole": {"_count": 1}}, "and": {"_count": 1, "kissing": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "Their": {"_count": 1, "lips": {"_count": 1}}}, "rubyencrusted": {"_count": 3, "sword": {"_count": 2, "and": {"_count": 1}, "reposed": {"_count": 1}}, "hilt": {"_count": 1, "but": {"_count": 1}}}, "prompted": {"_count": 8, "him": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "apologetically": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "Lupin": {"_count": 1}}, "delicately": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}}, "timely": {"_count": 2, "arrival": {"_count": 1, "and": {"_count": 1}}, "action": {"_count": 1, "when": {"_count": 1}}}, "mentioning": {"_count": 10, "Riddles": {"_count": 1, "diary": {"_count": 1}}, "a": {"_count": 2, "number": {"_count": 1}, "place": {"_count": 1}}, "that": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "this": {"_count": 1, "pub": {"_count": 1}}, "Cedric": {"_count": 1, "when": {"_count": 1}}, "the": {"_count": 1, "interview": {"_count": 1}}, "them": {"_count": 1, "again": {"_count": 1}}}, "Instinctively": {"_count": 3, "Harry": {"_count": 3, "looked": {"_count": 2}, "pulled": {"_count": 1}}}, "interests": {"_count": 8, "me": {"_count": 1, "most": {"_count": 1}}, "at": {"_count": 5, "heart": {"_count": 5}}, "of": {"_count": 1, "Buckbeaks": {"_count": 1}}, "well": {"_count": 1, "well": {"_count": 1}}}, "Albania": {"_count": 12, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 2, "never": {"_count": 1}, "thats": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "its": {"_count": 1, "usually": {"_count": 1}}, "every": {"_count": 1, "place": {"_count": 1}}, "repeated": {"_count": 1, "Harry": {"_count": 1}}}, "Relief": {"_count": 2, "warm": {"_count": 1, "sweeping": {"_count": 1}}, "broke": {"_count": 1, "across": {"_count": 1}}}, "glorious": {"_count": 14, "relief": {"_count": 1, "swept": {"_count": 1}}, "inch": {"_count": 1, "": {"_count": 1}}, "heroism": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "hour": {"_count": 1}}, "hour": {"_count": 1, "Harry": {"_count": 1}}, "moments": {"_count": 1, "all": {"_count": 1}}, "morning": {"_count": 1, "": {"_count": 1}}, "sunset": {"_count": 1, "": {"_count": 1}}, "day": {"_count": 1, "like": {"_count": 1}}, "stroke": {"_count": 1, "of": {"_count": 1}}, "infestation": {"_count": 1, "": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "spell": {"_count": 1, "was": {"_count": 1}}, "young": {"_count": 1, "leaders": {"_count": 1}}}, "Wwhats": {"_count": 1, "that": {"_count": 1, "": {"_count": 1}}}, "Enenchant": {"_count": 1, "Ginny": {"_count": 1, "": {"_count": 1}}}, "consorted": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "underwent": {"_count": 1, "so": {"_count": 1, "many": {"_count": 1}}}, "resurfaced": {"_count": 1, "as": {"_count": 1, "Lord": {"_count": 1}}}, "recognizable": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 2, "the": {"_count": 2}}, "heads": {"_count": 1, "or": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}, "Someone": {"_count": 1, "slammed": {"_count": 1}}}, "ddiary": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "bbeen": {"_count": 2, "writing": {"_count": 1, "in": {"_count": 1}}, "here": {"_count": 1, "sixteen": {"_count": 1}}}, "w": {"_count": 3, "writing": {"_count": 1, "back": {"_count": 1}}, "would": {"_count": 1, "it": {"_count": 1}}, "Get": {"_count": 1, "out": {"_count": 1}}}, "flabbergasted": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 1, "Hermione": {"_count": 1}}}, "ththought": {"_count": 1, "someone": {"_count": 1, "had": {"_count": 1}}}, "ordeal": {"_count": 4, "for": {"_count": 1, "her": {"_count": 1}}, "lie": {"_count": 1, "back": {"_count": 1}}, "he": {"_count": 1, "has": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}}, "Older": {"_count": 1, "and": {"_count": 1, "wiser": {"_count": 1}}}, "hoodwinked": {"_count": 5, "by": {"_count": 1, "Lord": {"_count": 1}}, "the": {"_count": 1, "impartial": {"_count": 1}}, "a": {"_count": 1, "very": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "Bed": {"_count": 4, "rest": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "said": {"_count": 1, "an": {"_count": 1}}}, "merits": {"_count": 3, "a": {"_count": 1, "good": {"_count": 1}}, "full": {"_count": 1, "marks": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Awards": {"_count": 1, "for": {"_count": 1, "Services": {"_count": 1}}}, "apiece": {"_count": 6, "for": {"_count": 2, "Gryffindor": {"_count": 1}, "alerting": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "iced": {"_count": 1}}, "giving": {"_count": 1, "the": {"_count": 1}}}, "mightily": {"_count": 2, "quiet": {"_count": 1, "about": {"_count": 1}}, "impressed": {"_count": 1, "but": {"_count": 1}}}, "professor": {"_count": 5, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "love": {"_count": 1, "But": {"_count": 1}}}, "mild": {"_count": 12, "surprise": {"_count": 6, "": {"_count": 4}, "leaning": {"_count": 1}, "at": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "indignation": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "concern": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}}, "Impaled": {"_count": 1, "upon": {"_count": 1, "your": {"_count": 1}}}, "Sword": {"_count": 3, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "grunted": {"_count": 1, "an": {"_count": 1}}}, "unaccountably": {"_count": 1, "nervous": {"_count": 1, "": {"_count": 1}}}, "loyalty": {"_count": 13, "down": {"_count": 1, "in": {"_count": 1}}, "has": {"_count": 1, "never": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "but": {"_count": 1, "out": {"_count": 1}}, "never": {"_count": 1, "waver": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "lay": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 1, "should": {"_count": 1}}, "is": {"_count": 1, "admirable": {"_count": 1}}, "and": {"_count": 1, "innocence": {"_count": 1}}}, "intended": {"_count": 25, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 12, "do": {"_count": 1}, "tell": {"_count": 2}, "sort": {"_count": 1}, "be": {"_count": 2}, "respond": {"_count": 1}, "search": {"_count": 1}, "kill": {"_count": 1}, "continue": {"_count": 1}, "take": {"_count": 1}, "die": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "gave": {"_count": 1}}, "target": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "diary": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "did": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "Snape": {"_count": 1}}}, "resurfacing": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "transferred": {"_count": 6, "some": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "Hedwig": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 3, "St": {"_count": 2}, "the": {"_count": 1}}}, "thunderstruck": {"_count": 12, "": {"_count": 8, ".": {"_count": 8}}, "and": {"_count": 1, "Hermione": {"_count": 1}}, "well": {"_count": 1, "that": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "Umbridge": {"_count": 1, "": {"_count": 1}}}, "qualities": {"_count": 9, "Salazar": {"_count": 1, "Slytherin": {"_count": 1}}, "that": {"_count": 2, "distinguish": {"_count": 1}, "defined": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "looked": {"_count": 1, "for": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "Voldemorts": {"_count": 1}}}, "prized": {"_count": 6, "in": {"_count": 1, "his": {"_count": 1}}, "possessions": {"_count": 3, "was": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}, "apparently": {"_count": 1, "worthless": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "handpicked": {"_count": 3, "students": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "Professor": {"_count": 1}}, "the": {"_count": 1, "man": {"_count": 1}}}, "resourcefulness": {"_count": 1, "determination": {"_count": 1, "a": {"_count": 1}}}, "determination": {"_count": 17, "a": {"_count": 1, "certain": {"_count": 1}}, "the": {"_count": 1, "team": {"_count": 1}}, "he": {"_count": 2, "urged": {"_count": 1}, "had": {"_count": 1}}, "to": {"_count": 10, "pursue": {"_count": 1}, "break": {"_count": 1}, "return": {"_count": 1}, "shut": {"_count": 1}, "occupy": {"_count": 1}, "catch": {"_count": 1}, "find": {"_count": 1}, "carve": {"_count": 1}, "see": {"_count": 1}, "remain": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "almost": {"_count": 1, "an": {"_count": 1}}}, "disregard": {"_count": 1, "for": {"_count": 1, "rules": {"_count": 1}}}, "choices": {"_count": 3, "Harry": {"_count": 2, "that": {"_count": 1}, "had": {"_count": 1}}, "try": {"_count": 1, "and": {"_count": 1}}}, "abilities": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "saying": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "to": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "like": {"_count": 1, "yours": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "Dully": {"_count": 1, "Harry": {"_count": 1, "turned": {"_count": 1}}}, "advertisement": {"_count": 5, "for": {"_count": 4, "the": {"_count": 1}, "Madame": {"_count": 1}, "testers": {"_count": 1}, "home": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "abject": {"_count": 1, "terror": {"_count": 1, "on": {"_count": 1}}}, "rag": {"_count": 15, "with": {"_count": 1, "which": {"_count": 1}}, "doll": {"_count": 2, "Then": {"_count": 1}, "over": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "tied": {"_count": 1, "like": {"_count": 1}}, "so": {"_count": 1, "filthy": {"_count": 1}}, "irritably": {"_count": 1, "as": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "strung": {"_count": 1, "over": {"_count": 1}}, "dipped": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "of": {"_count": 1, "Xeno": {"_count": 1}}}, "attempting": {"_count": 65, "to": {"_count": 57, "finish": {"_count": 1}, "read": {"_count": 1}, "do": {"_count": 3}, "knock": {"_count": 1}, "send": {"_count": 1}, "fill": {"_count": 1}, "control": {"_count": 1}, "break": {"_count": 1}, "drag": {"_count": 1}, "grin": {"_count": 1}, "persuade": {"_count": 1}, "force": {"_count": 2}, "stem": {"_count": 2}, "drown": {"_count": 1}, "stop": {"_count": 1}, "lick": {"_count": 2}, "permanently": {"_count": 1}, "flatten": {"_count": 1}, "give": {"_count": 1}, "help": {"_count": 1}, "make": {"_count": 1}, "straighten": {"_count": 1}, "Stun": {"_count": 1}, "defend": {"_count": 1}, "free": {"_count": 1}, "swing": {"_count": 1}, "revive": {"_count": 1}, "steal": {"_count": 2}, "push": {"_count": 2}, "scurry": {"_count": 1}, "take": {"_count": 1}, "burst": {"_count": 1}, "keep": {"_count": 1}, "discover": {"_count": 1}, "see": {"_count": 1}, "draw": {"_count": 1}, "mop": {"_count": 1}, "kill": {"_count": 1}, "intimidate": {"_count": 1}, "ward": {"_count": 1}, "time": {"_count": 1}, "ease": {"_count": 1}, "beat": {"_count": 1}, "meet": {"_count": 1}, "wrench": {"_count": 1}, "throw": {"_count": 1}, "prise": {"_count": 1}, "pick": {"_count": 1}, "escape": {"_count": 1}, "fight": {"_count": 1}}, "illicit": {"_count": 1, "mixtures": {"_count": 1}}, "the": {"_count": 1, "Impediment": {"_count": 1}}, "an": {"_count": 1, "ingratiating": {"_count": 1}}, "vainly": {"_count": 1, "to": {"_count": 1}}, "blindly": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 2, "somehow": {"_count": 1}, "would": {"_count": 1}}, "under": {"_count": 1, "cover": {"_count": 1}}}, "halfpolished": {"_count": 1, "but": {"_count": 1, "his": {"_count": 1}}}, "disheveled": {"_count": 13, "": {"_count": 2, ".": {"_count": 2}}, "shapes": {"_count": 1, "emerging": {"_count": 1}}, "Winky": {"_count": 1, "peered": {"_count": 1}}, "Ron": {"_count": 1, "keeping": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 4, "shocked": {"_count": 1}, "soot": {"_count": 1}, "fretful": {"_count": 1}, "whose": {"_count": 1}}, "rather": {"_count": 1, "as": {"_count": 1}}, "students": {"_count": 1, "some": {"_count": 1}}, "her": {"_count": 1, "face": {"_count": 1}}}, "Ignoring": {"_count": 8, "the": {"_count": 4, "elf": {"_count": 1}, "jug": {"_count": 1}, "look": {"_count": 1}, "remainder": {"_count": 1}}, "Uncle": {"_count": 2, "Vernons": {"_count": 2}}, "her": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "mingled": {"_count": 1}}}, "apologetically": {"_count": 11, "around": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "taking": {"_count": 1, "off": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}}, "serenely": {"_count": 22, "the": {"_count": 1, "other": {"_count": 1}}, "Hermione": {"_count": 1, "placed": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "unaware": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "obviously": {"_count": 1}}, "fishing": {"_count": 1, "a": {"_count": 1}}, "past": {"_count": 2, "a": {"_count": 1}, "then": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "shaking": {"_count": 1, "back": {"_count": 1}}, "blue": {"_count": 1, "and": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "while": {"_count": 1, "both": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "up": {"_count": 1, "out": {"_count": 1}}}, "contacted": {"_count": 4, "me": {"_count": 1, "today": {"_count": 1}}, "the": {"_count": 1, "Minister": {"_count": 1}}, "Harry": {"_count": 1, "at": {"_count": 1}}, "Hogwarts": {"_count": 1, "thats": {"_count": 1}}}, "hailstorm": {"_count": 1, "of": {"_count": 1, "owls": {"_count": 1}}}, "tales": {"_count": 9, "they": {"_count": 1, "told": {"_count": 1}}, "are": {"_count": 1, "getting": {"_count": 1}}, "on": {"_count": 2, "him": {"_count": 1}, "Hagrid": {"_count": 1}}, "of": {"_count": 3, "my": {"_count": 1}, "the": {"_count": 1}, "love": {"_count": 1}}, "about": {"_count": 1, "me": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "threatened": {"_count": 16, "to": {"_count": 9, "curse": {"_count": 1}, "engulf": {"_count": 2}, "tarnish": {"_count": 1}, "lock": {"_count": 1}, "burst": {"_count": 2}, "unleash": {"_count": 1}, "overwhelm": {"_count": 1}}, "em": {"_count": 1, "I": {"_count": 1}}, "Harry": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "mass": {"_count": 1}}, "rudeness": {"_count": 1, "in": {"_count": 1}}, "Borgin": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "her": {"_count": 1, "and": {"_count": 1}}}, "meaningfully": {"_count": 4, "on": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 2, "Harry": {"_count": 1}, "Sirius": {"_count": 1}}, "from": {"_count": 1, "one": {"_count": 1}}}, "masklike": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "yet": {"_count": 1}}}, "prominent": {"_count": 13, "pureblood": {"_count": 1, "families": {"_count": 1}}, "curved": {"_count": 1, "nose": {"_count": 1}}, "chin": {"_count": 3, "standing": {"_count": 1}, "and": {"_count": 2}}, "nose": {"_count": 1, "of": {"_count": 1}}, "eyes": {"_count": 3, "swam": {"_count": 1}, "seemed": {"_count": 1}, "his": {"_count": 1}}, "pouchy": {"_count": 1, "eyes": {"_count": 1}}, "ears": {"_count": 1, "": {"_count": 1}}, "among": {"_count": 1, "them": {"_count": 1}}, "members": {"_count": 1, "of": {"_count": 1}}}, "fortunate": {"_count": 6, "the": {"_count": 1, "diary": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "Goyle": {"_count": 1}, "I": {"_count": 1}}, "extremely": {"_count": 1, "fortunate": {"_count": 1}}}, "consequences": {"_count": 7, "might": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "of": {"_count": 1, "our": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "hesitated": {"_count": 1}}}, "clench": {"_count": 4, "and": {"_count": 1, "unclench": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "painfully": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "arms": {"_count": 1}}}, "unclench": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 1, "hand": {"_count": 1}}}, "Prove": {"_count": 3, "it": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}}, "traced": {"_count": 9, "back": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "secret": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 1, "by": {"_count": 1}}, "her": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "over": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "more": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}}, "twitch": {"_count": 12, "as": {"_count": 2, "though": {"_count": 2}}, "next": {"_count": 1, "to": {"_count": 1}}, "horribly": {"_count": 1, "rocking": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "Padma": {"_count": 1, "Patil": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "Malfoys": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}}, "squealing": {"_count": 11, "with": {"_count": 1, "pain": {"_count": 1}}, "wildly": {"_count": 1, "but": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "names": {"_count": 1}}, "in": {"_count": 1, "pain": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "elf": {"_count": 1, "hit": {"_count": 1}}, "Bad": {"_count": 1, "Dobby": {"_count": 1}}, "yell": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Stick": {"_count": 1, "your": {"_count": 1}}}, "squeals": {"_count": 4, "of": {"_count": 3, "pain": {"_count": 2}, "agony": {"_count": 1}}, "from": {"_count": 1, "Lavender": {"_count": 1}}}, "receding": {"_count": 2, "around": {"_count": 1, "the": {"_count": 1}}, "somewhat": {"_count": 1, "which": {"_count": 1}}}, "Quickly": {"_count": 6, "wondering": {"_count": 1, "if": {"_count": 1}}, "and": {"_count": 1, "silently": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "lots": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "He": {"_count": 1, "grabbed": {"_count": 1}}}, "fools": {"_count": 7, "too": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "start": {"_count": 1, "catching": {"_count": 1}}, "who": {"_count": 1, "love": {"_count": 1}}, "of": {"_count": 1, "us": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "priceless": {"_count": 2, "treasure": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wonderment": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "incensed": {"_count": 5, "stare": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "speak": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "freely": {"_count": 13, "named": {"_count": 1, "you": {"_count": 1}}, "fly": {"_count": 1, "forward": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "accessible": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 1, "when": {"_count": 1}}, "than": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "the": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}}, "greater": {"_count": 24, "by": {"_count": 1, "far": {"_count": 1}}, "than": {"_count": 3, "ours": {"_count": 1}, "Rons": {"_count": 1}, "he": {"_count": 1}}, "heights": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "more": {"_count": 2}}, "part": {"_count": 1, "of": {"_count": 1}}, "variety": {"_count": 1, "of": {"_count": 1}}, "prominence": {"_count": 1, "": {"_count": 1}}, "power": {"_count": 1, "could": {"_count": 1}}, "one": {"_count": 1, "": {"_count": 1}}, "height": {"_count": 1, "than": {"_count": 1}}, "urgency": {"_count": 1, "that": {"_count": 1}}, "danger": {"_count": 1, "now": {"_count": 1}}, "hand": {"_count": 1, "in": {"_count": 1}}, "good": {"_count": 6, "and": {"_count": 2}, "": {"_count": 3}, "than": {"_count": 1}}, "relief": {"_count": 1, "": {"_count": 1}}, "men": {"_count": 1, "and": {"_count": 1}}}, "Farewell": {"_count": 5, "Harry": {"_count": 2, "Potter": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "my": {"_count": 1, "comradesinarms": {"_count": 1}}, "Aragog": {"_count": 1, "king": {"_count": 1}}}, "celebration": {"_count": 13, "lasted": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "party": {"_count": 2, "after": {"_count": 1}, "which": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "actually": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "D": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "erupted": {"_count": 1, "from": {"_count": 1}}, "cups": {"_count": 1, "and": {"_count": 1}}}, "wring": {"_count": 3, "his": {"_count": 1, "hand": {"_count": 1}}, "Hagrids": {"_count": 1, "enormous": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}}, "endlessly": {"_count": 5, "for": {"_count": 1, "suspecting": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "second": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 1, "came": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "suspecting": {"_count": 4, "him": {"_count": 1, "or": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "this": {"_count": 1, "ever": {"_count": 1}}, "that": {"_count": 1, "Griphook": {"_count": 1}}}, "cuffing": {"_count": 2, "Harry": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "around": {"_count": 1}}}, "securing": {"_count": 2, "the": {"_count": 1, "House": {"_count": 1}}, "it": {"_count": 1, "once": {"_count": 1}}}, "differences": {"_count": 4, "Defense": {"_count": 1, "Against": {"_count": 1}}, "heres": {"_count": 1, "what": {"_count": 1}}, "and": {"_count": 1, "trust": {"_count": 1}}, "caused": {"_count": 1, "little": {"_count": 1}}}, "resentful": {"_count": 17, "and": {"_count": 1, "sulky": {"_count": 1}}, "toward": {"_count": 3, "Ron": {"_count": 1}, "the": {"_count": 1}, "Fleurs": {"_count": 1}}, "thought": {"_count": 1, "that": {"_count": 1}}, "tone": {"_count": 2, "Nearly": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "succeeded": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "admiration": {"_count": 1, "for": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "half": {"_count": 1, "sheepish": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}}, "disarming": {"_count": 2, "each": {"_count": 1, "other": {"_count": 1}}, "their": {"_count": 1, "opponents": {"_count": 1}}}, "giggling": {"_count": 31, "": {"_count": 10, ".": {"_count": 10}}, "madly": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "girls": {"_count": 2, "often": {"_count": 1}, "Harry": {"_count": 1}}, "and": {"_count": 4, "whispering": {"_count": 1}, "showing": {"_count": 1}, "pointing": {"_count": 1}, "clutching": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}, "girlfriends": {"_count": 1, "then": {"_count": 1}}, "etc": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "loudly": {"_count": 1}}, "weakly": {"_count": 2, "lurching": {"_count": 1}, "you": {"_count": 1}}, "feebly": {"_count": 1, "": {"_count": 1}}, "enthusiastically": {"_count": 1, "": {"_count": 1}}, "together": {"_count": 1, "on": {"_count": 1}}, "enjoying": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "from": {"_count": 1}}}, "Proud": {"_count": 4, "": {"_count": 2, "?": {"_count": 2}}, "of": {"_count": 1, "your": {"_count": 1}}, "and": {"_count": 1, "haughty": {"_count": 1}}}, "POST": {"_count": 2, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "AGAIN": {"_count": 1, "Harry": {"_count": 1}}}, "flashlight": {"_count": 4, "in": {"_count": 1, "one": {"_count": 1}}, "closer": {"_count": 1, "to": {"_count": 1}}, "A": {"_count": 1, "History": {"_count": 1}}, "anymore": {"_count": 1, "now": {"_count": 1}}}, "leatherbound": {"_count": 4, "book": {"_count": 1, "A": {"_count": 1}}, "photo": {"_count": 1, "album": {"_count": 1}}, "books": {"_count": 1, "on": {"_count": 1}}, "tomes": {"_count": 1, "": {"_count": 1}}}, "Fourteenth": {"_count": 1, "Century": {"_count": 1, "Was": {"_count": 1}}}, "Pointless": {"_count": 1, "discuss": {"_count": 1, "": {"_count": 1}}}, "likelylooking": {"_count": 1, "paragraph": {"_count": 1, "": {"_count": 1}}}, "paragraph": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "twelve": {"_count": 1, "of": {"_count": 1}}, "C": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "dementors": {"_count": 1}}}, "Nonmagic": {"_count": 1, "people": {"_count": 1, "more": {"_count": 1}}}, "commonly": {"_count": 2, "known": {"_count": 1, "as": {"_count": 1}}, "found": {"_count": 1, "in": {"_count": 1}}}, "medieval": {"_count": 6, "times": {"_count": 1, "but": {"_count": 1}}, "attitude": {"_count": 1, "toward": {"_count": 1}}, "witch": {"_count": 1, "burnings": {"_count": 1}}, "witchhunts": {"_count": 1, "while": {"_count": 1}}, "wizard": {"_count": 2, "called": {"_count": 1}, "stood": {"_count": 1}}}, "whatsoever": {"_count": 21, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "to": {"_count": 2, "curb": {"_count": 1}, "long": {"_count": 1}}, "what": {"_count": 1, "Karkaroff": {"_count": 1}}, "occurred": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "of": {"_count": 3, "going": {"_count": 1}, "Harry": {"_count": 1}, "becoming": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Phineas": {"_count": 1}}, "on": {"_count": 1, "Grawp": {"_count": 1}}, "happened": {"_count": 2, "": {"_count": 2}}, "in": {"_count": 2, "these": {"_count": 1}, "recognizing": {"_count": 1}}}, "Flame": {"_count": 1, "Freezing": {"_count": 1, "Charm": {"_count": 1}}}, "Wendelin": {"_count": 2, "the": {"_count": 2, "Weird": {"_count": 2}}}, "fortyseven": {"_count": 2, "times": {"_count": 1, "in": {"_count": 1}}, "points": {"_count": 1, "": {"_count": 1}}}, "disguises": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "even": {"_count": 1}}, "all": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 1, "better": {"_count": 1}}, "possible": {"_count": 1, "": {"_count": 1}}}, "unscrewed": {"_count": 3, "the": {"_count": 1, "ink": {"_count": 1}}, "it": {"_count": 2, "and": {"_count": 1}, "gingerly": {"_count": 1}}}, "pausing": {"_count": 24, "every": {"_count": 1, "now": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 10, "think": {"_count": 5}, "peer": {"_count": 1}, "decipher": {"_count": 1}, "add": {"_count": 1}, "lean": {"_count": 1}, "allow": {"_count": 1}}, "only": {"_count": 1, "to": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 2}, "intervals": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "while": {"_count": 1, "they": {"_count": 1}}, "beside": {"_count": 2, "a": {"_count": 2}}, "behind": {"_count": 1, "Harry": {"_count": 1}}, "running": {"_count": 1, "his": {"_count": 1}}}, "downtrodden": {"_count": 1, "as": {"_count": 1, "possible": {"_count": 1}}}, "unsuccessful": {"_count": 4, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "he": {"_count": 1, "merely": {"_count": 1}}, "Transfigurations": {"_count": 1, "did": {"_count": 1}}}, "separation": {"_count": 3, "from": {"_count": 1, "his": {"_count": 1}}, "scurrying": {"_count": 1, "off": {"_count": 1}}, "of": {"_count": 1, "random": {"_count": 1}}}, "essays": {"_count": 9, "a": {"_count": 1, "particularly": {"_count": 1}}, "with": {"_count": 1, "occasional": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "practice": {"_count": 1, "Vanishing": {"_count": 1}}, "for": {"_count": 1, "marking": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}}, "admire": {"_count": 6, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "their": {"_count": 1, "handiwork": {"_count": 1}}, "Crouch": {"_count": 1, "even": {"_count": 1}}, "the": {"_count": 2, "effect": {"_count": 1}, "various": {"_count": 1}}, "Siriuss": {"_count": 1, "nerve": {"_count": 1}}}, "HELLO": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "HEAR": {"_count": 1, "ME": {"_count": 1, "": {"_count": 1}}}, "TALK": {"_count": 4, "TO": {"_count": 1, "HARRY": {"_count": 1}}, "ABOUT": {"_count": 3, "WHAT": {"_count": 1}, "JAMES": {"_count": 1}, "SIRIUS": {"_count": 1}}}, "mouthpiece": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "IM": {"_count": 2, "A": {"_count": 1, "FRIEND": {"_count": 1}}, "JUST": {"_count": 1, "GOING": {"_count": 1}}}, "FRIEND": {"_count": 1, "OF": {"_count": 1, "HARRYS": {"_count": 1}}}, "HARRYS": {"_count": 1, "FROM": {"_count": 1, "SCHOOL": {"_count": 1}}}, "swiveled": {"_count": 10, "around": {"_count": 4, "to": {"_count": 1}, "fixing": {"_count": 1}, "in": {"_count": 1}, "so": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "toward": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "upward": {"_count": 1, "and": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}}, "THERE": {"_count": 3, "IS": {"_count": 1, "NO": {"_count": 1}}, "WAS": {"_count": 1, "NO": {"_count": 1}}, "YOU": {"_count": 1, "But": {"_count": 1}}}, "HERE": {"_count": 14, "": {"_count": 7, "!": {"_count": 7}}, "SIRIUS": {"_count": 1, "BLACK": {"_count": 1}}, "I": {"_count": 1, "WILL": {"_count": 1}}, "HAVEN": {"_count": 1, "T": {"_count": 1}}, "TOGETHER": {"_count": 1, "No": {"_count": 1}}, "NOW": {"_count": 1, "PLEASE": {"_count": 1}}, "AND": {"_count": 1, "HE": {"_count": 1}}, "LIES": {"_count": 1, "DOBBY": {"_count": 1}}}, "KNOW": {"_count": 11, "WHAT": {"_count": 2, "SCHOOL": {"_count": 1}, "WAS": {"_count": 1}}, "OLIVER": {"_count": 1, "": {"_count": 1}}, "IT": {"_count": 1, "": {"_count": 1}}, "POTTER": {"_count": 1, "": {"_count": 1}}, "HE": {"_count": 1, "DID": {"_count": 1}}, "WHATS": {"_count": 1, "GOING": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}, "HOW": {"_count": 1, "I": {"_count": 1}}}, "YOURE": {"_count": 6, "TALKING": {"_count": 1, "ABOUT": {"_count": 1}}, "DOIN": {"_count": 1, "EH": {"_count": 1}}, "NOT": {"_count": 1, "ALLOWED": {"_count": 1}}, "PATHETIC": {"_count": 1, "": {"_count": 1}}, "RUNNING": {"_count": 1, "RIGHT": {"_count": 1}}, "ALLOWED": {"_count": 1, "TO": {"_count": 1}}}, "TALKING": {"_count": 1, "ABOUT": {"_count": 1, "": {"_count": 1}}}, "CONTACT": {"_count": 1, "ME": {"_count": 1, "AGAIN": {"_count": 1}}}, "AGAIN": {"_count": 5, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Finally": {"_count": 1, "the": {"_count": 1}}}, "NEAR": {"_count": 1, "MY": {"_count": 1, "FAMILY": {"_count": 1}}}, "FAMILY": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "AGAINST": {"_count": 1, "DARK": {"_count": 1}}, "Wife": {"_count": 1, "pureblood": {"_count": 1}}}, "GIVE": {"_count": 2, "THIS": {"_count": 1, "NUMBER": {"_count": 1}}, "IT": {"_count": 1, "TO": {"_count": 1}}}, "NUMBER": {"_count": 5, "TO": {"_count": 1, "PEOPLE": {"_count": 1}}, "TWELVE": {"_count": 1, "GRIMMAULD": {"_count": 1}}, "TWENTYFOUR": {"_count": 1, "Harry": {"_count": 1}}, "ONE": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}}, "PEOPLE": {"_count": 2, "LIKE": {"_count": 2, "PEOPLE": {"_count": 1}, "YOU": {"_count": 1}}}, "cleverest": {"_count": 4, "witch": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "students": {"_count": 1, "in": {"_count": 1}}, "Would": {"_count": 1, "always": {"_count": 1}}}, "itching": {"_count": 6, "with": {"_count": 1, "tiredness": {"_count": 1}}, "to": {"_count": 5, "strangle": {"_count": 1}, "place": {"_count": 1}, "go": {"_count": 1}, "get": {"_count": 1}, "try": {"_count": 1}}}, "tiredness": {"_count": 5, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 1, "everything": {"_count": 1}}}, "floorboard": {"_count": 10, "under": {"_count": 2, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 2, "grabbed": {"_count": 1}, "pulled": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "the": {"_count": 1, "rustle": {"_count": 1}}, "creak": {"_count": 1, "outside": {"_count": 1}}, "creaked": {"_count": 1, "again": {"_count": 1}}}, "sill": {"_count": 4, "the": {"_count": 1, "cool": {"_count": 1}}, "having": {"_count": 1, "just": {"_count": 1}}, "showing": {"_count": 1, "one": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "pleasant": {"_count": 25, "on": {"_count": 1, "his": {"_count": 1}}, "evening": {"_count": 2, "that": {"_count": 1}, "said": {"_count": 1}}, "surprise": {"_count": 3, "": {"_count": 2}, "for": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "feeling": {"_count": 1, "of": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "day": {"_count": 1, "said": {"_count": 1}}, "experience": {"_count": 1, "for": {"_count": 1}}, "deeper": {"_count": 1, "more": {"_count": 1}}, "Ill": {"_count": 1, "be": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "golden": {"_count": 1, "glow": {"_count": 1}}, "said": {"_count": 1, "Slughorn": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "expectancy": {"_count": 1, "for": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "chat": {"_count": 1, "about": {"_count": 1}}, "guests": {"_count": 1, "": {"_count": 1}}, "heliotrope": {"_count": 1, "color": {"_count": 1}}, "voice": {"_count": 1, "it": {"_count": 1}}}, "absent": {"_count": 8, "for": {"_count": 2, "two": {"_count": 1}, "a": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "Hogwarts": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "Harrys": {"_count": 1, "best": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "flinch": {"_count": 3, "at": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "souvenir": {"_count": 2, "of": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}}, "rebounded": {"_count": 8, "upon": {"_count": 5, "its": {"_count": 1}, "Voldemort": {"_count": 1}, "myself": {"_count": 1}, "the": {"_count": 1}, "Lord": {"_count": 1}}, "Harry": {"_count": 1, "ducked": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "everywhere": {"_count": 1, "and": {"_count": 1}}}, "originator": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Barely": {"_count": 10, "alive": {"_count": 1, "Voldemort": {"_count": 1}}, "two": {"_count": 2, "minutes": {"_count": 1}, "months": {"_count": 1}}, "ten": {"_count": 2, "inches": {"_count": 1}, "seconds": {"_count": 1}}, "gripping": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "day": {"_count": 1}}, "breathing": {"_count": 1, "he": {"_count": 1}}, "conscious": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}}, "Remembering": {"_count": 6, "their": {"_count": 1, "last": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "what": {"_count": 3, "Snape": {"_count": 1}, "Hermione": {"_count": 1}, "Ollivander": {"_count": 1}}, "to": {"_count": 1, "leap": {"_count": 1}}}, "praise": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "than": {"_count": 1, "that": {"_count": 1}}, "his": {"_count": 1, "fathers": {"_count": 1}}}, "Gazing": {"_count": 2, "absently": {"_count": 1, "over": {"_count": 1}}, "blearily": {"_count": 1, "around": {"_count": 1}}}, "latch": {"_count": 2, "wondering": {"_count": 1, "whether": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "flump": {"_count": 1, "on": {"_count": 1, "Harrys": {"_count": 1}}}, "untied": {"_count": 10, "the": {"_count": 2, "cords": {"_count": 1}, "hippogriffs": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 3, "": {"_count": 2}, "returned": {"_count": 1}}, "it": {"_count": 3, "took": {"_count": 1}, "and": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cords": {"_count": 6, "around": {"_count": 2, "Errols": {"_count": 1}, "Harry": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}, "that": {"_count": 1, "bound": {"_count": 1}}, "shot": {"_count": 1, "from": {"_count": 1}}, "his": {"_count": 1, "fingers": {"_count": 1}}}, "bleary": {"_count": 1, "eye": {"_count": 1, "gave": {"_count": 1}}}, "hoot": {"_count": 7, "of": {"_count": 2, "thanks": {"_count": 1}, "an": {"_count": 1}}, "and": {"_count": 2, "took": {"_count": 1}, "fluttered": {"_count": 1}}, "she": {"_count": 1, "stretched": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "feebly": {"_count": 1, "as": {"_count": 1}}}, "female": {"_count": 20, "was": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "Dudley": {"_count": 1, "was": {"_count": 1}}, "voice": {"_count": 11, "sounded": {"_count": 2}, "": {"_count": 2}, "spoke": {"_count": 1}, "Harry": {"_count": 1}, "and": {"_count": 2}, "said": {"_count": 2}, "from": {"_count": 1}}, "one": {"_count": 1, "was": {"_count": 1}}, "dummy": {"_count": 1, "whose": {"_count": 1}}, "Death": {"_count": 2, "Eater": {"_count": 2}}}, "burden": {"_count": 10, "then": {"_count": 1, "flew": {"_count": 1}}, "it": {"_count": 1, "ruffled": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "of": {"_count": 4, "winning": {"_count": 1}, "homework": {"_count": 1}, "unwanted": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 1, "found": {"_count": 1}}, "upon": {"_count": 1, "you": {"_count": 1}}}, "addition": {"_count": 11, "to": {"_count": 9, "a": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 3}, "every": {"_count": 1}, "her": {"_count": 1}, "himself": {"_count": 1}, "Ogden": {"_count": 1}}, "the": {"_count": 1, "previous": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}}, "crest": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "tied": {"_count": 1}, "motto": {"_count": 1}, "and": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 1, "painstakingly": {"_count": 1}}}, "Fingers": {"_count": 2, "trembling": {"_count": 1, "slightly": {"_count": 1}}, "in": {"_count": 1, "your": {"_count": 1}}}, "EMPLOYEE": {"_count": 1, "SCOOPS": {"_count": 1, "GRAND": {"_count": 1}}}, "SCOOPS": {"_count": 1, "GRAND": {"_count": 1, "PRIZE": {"_count": 1}}}, "GRAND": {"_count": 1, "PRIZE": {"_count": 1, "Arthur": {"_count": 1}}}, "PRIZE": {"_count": 1, "Arthur": {"_count": 1, "Weasley": {"_count": 1}}}, "annual": {"_count": 2, "Daily": {"_count": 1, "Prophet": {"_count": 1}}, "trip": {"_count": 1, "you": {"_count": 1}}}, "Prize": {"_count": 2, "Galleon": {"_count": 1, "Draw": {"_count": 1}}, "for": {"_count": 1, "Exceptional": {"_count": 1}}}, "Draw": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "you": {"_count": 1, "knaves": {"_count": 1}}}, "eldest": {"_count": 10, "son": {"_count": 3, "Bill": {"_count": 2}, "she": {"_count": 1}}, "Weasley": {"_count": 2, "brothers": {"_count": 1}, "brother": {"_count": 1}}, "brother": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "Siriuss": {"_count": 1}, "the": {"_count": 1}}, "sons": {"_count": 1, "taste": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}}, "pyramid": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}}, "Plump": {"_count": 1, "little": {"_count": 1, "Mrs": {"_count": 1}}}, "balding": {"_count": 16, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "baby": {"_count": 1, "cowering": {"_count": 1}}, "man": {"_count": 2, "with": {"_count": 1}, "a": {"_count": 1}}, "he": {"_count": 1, "moved": {"_count": 1}}, "redhaired": {"_count": 2, "man": {"_count": 1}, "wizard": {"_count": 1}}, "his": {"_count": 1, "spectacles": {"_count": 1}}, "wizard": {"_count": 5, "hurried": {"_count": 1}, "who": {"_count": 1}, "backing": {"_count": 1}, "gaped": {"_count": 1}, "lifted": {"_count": 1}}, "wizards": {"_count": 1, "colleagues": {"_count": 1}}, "middleaged": {"_count": 1, "Muggle": {"_count": 1}}, "Muggle": {"_count": 1, "whose": {"_count": 1}}}, "tombs": {"_count": 2, "and": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "Egyptian": {"_count": 4, "wizards": {"_count": 2, "put": {"_count": 1}, "were": {"_count": 1}}, "sun": {"_count": 1, "": {"_count": 1}}, "alchemists": {"_count": 1, "": {"_count": 1}}}, "mutant": {"_count": 1, "skeletons": {"_count": 1, "in": {"_count": 1}}}, "galleons": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "PS": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "fez": {"_count": 2, "perched": {"_count": 1, "jauntily": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "jauntily": {"_count": 2, "on": {"_count": 1, "top": {"_count": 1}}, "high": {"_count": 1, "": {"_count": 1}}}, "hornrimmed": {"_count": 6, "glasses": {"_count": 6, "flashing": {"_count": 1}, "and": {"_count": 1}, "looked": {"_count": 1}, "were": {"_count": 1}, "glinting": {"_count": 1}, "of": {"_count": 1}}}, "miniature": {"_count": 13, "glass": {"_count": 1, "spinning": {"_count": 1}}, "palace": {"_count": 1, "with": {"_count": 1}}, "Krum": {"_count": 2, "walked": {"_count": 1}, "the": {"_count": 1}}, "figure": {"_count": 1, "of": {"_count": 1}}, "arm": {"_count": 1, "under": {"_count": 1}}, "model": {"_count": 1, "of": {"_count": 1}}, "rockets": {"_count": 1, "": {"_count": 1}}, "tall": {"_count": 1, "for": {"_count": 1}}, "tutu": {"_count": 1, "and": {"_count": 1}}, "eleven": {"_count": 1, "years": {"_count": 1}}, "suns": {"_count": 1, "floating": {"_count": 1}}, "hammers": {"_count": 1, "on": {"_count": 1}}}, "Pocket": {"_count": 5, "Sneakoscope": {"_count": 4, "": {"_count": 1}, "on": {"_count": 1}, "out": {"_count": 1}, "had": {"_count": 1}}, "money": {"_count": 1, "failing": {"_count": 1}}}, "Sneakoscope": {"_count": 21, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 2}}, "out": {"_count": 1, "from": {"_count": 1}}, "whistled": {"_count": 1, "piercingly": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "become": {"_count": 1}}, "whirled": {"_count": 1, "and": {"_count": 1}}, "back": {"_count": 1, "inside": {"_count": 1}}, "because": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "for": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 2, "handed": {"_count": 1}, "a": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "remained": {"_count": 1, "silent": {"_count": 1}}}, "reliable": {"_count": 7, "because": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "source": {"_count": 1, "that": {"_count": 1}}, "methods": {"_count": 1, "of": {"_count": 1}}, "historical": {"_count": 1, "sources": {"_count": 1}}}, "balanced": {"_count": 5, "on": {"_count": 4, "its": {"_count": 2}, "top": {"_count": 1}, "the": {"_count": 1}}, "cauldrons": {"_count": 1, "": {"_count": 1}}}, "France": {"_count": 5, "at": {"_count": 1, "the": {"_count": 1}}, "an": {"_count": 1, "we": {"_count": 1}}, "fer": {"_count": 1, "me": {"_count": 1}}, "yes": {"_count": 1, "he": {"_count": 1}}, "weve": {"_count": 1, "arranged": {"_count": 1}}}, "customs": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "Ill": {"_count": 1, "look": {"_count": 1}}}, "owlorder": {"_count": 1, "there": {"_count": 1, "was": {"_count": 1}}}, "rewritten": {"_count": 1, "my": {"_count": 1, "whole": {"_count": 1}}}, "Broomstick": {"_count": 7, "Servicing": {"_count": 3, "Kit": {"_count": 3}}, "from": {"_count": 1, "Wood": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "the": {"_count": 1, "Firebolts": {"_count": 1}}}, "Servicing": {"_count": 3, "Kit": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "Hermione": {"_count": 1}}}, "Kit": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "brought": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}}, "unzipping": {"_count": 2, "the": {"_count": 2, "case": {"_count": 1}, "tent": {"_count": 1}}}, "Fleetwoods": {"_count": 1, "HighFinish": {"_count": 1, "Handle": {"_count": 1}}}, "HighFinish": {"_count": 2, "Handle": {"_count": 1, "Polish": {"_count": 1}}, "Polish": {"_count": 1, "still": {"_count": 1}}}, "Handle": {"_count": 1, "Polish": {"_count": 1, "a": {"_count": 1}}}, "Polish": {"_count": 3, "a": {"_count": 1, "pair": {"_count": 1}}, "still": {"_count": 1, "clutched": {"_count": 1}}, "border": {"_count": 1, "an": {"_count": 1}}}, "TailTwig": {"_count": 1, "Clippers": {"_count": 1, "a": {"_count": 1}}}, "Clippers": {"_count": 1, "a": {"_count": 1, "tiny": {"_count": 1}}}, "clip": {"_count": 2, "on": {"_count": 1, "your": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "journeys": {"_count": 5, "and": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "end": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "night": {"_count": 1}}, "but": {"_count": 1, "all": {"_count": 1}}}, "Handbook": {"_count": 4, "of": {"_count": 3, "DoItYourself": {"_count": 2}, "Hippogriff": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}}, "DoItYourself": {"_count": 2, "Broomcare": {"_count": 2, "": {"_count": 1}, "whenever": {"_count": 1}}}, "Broomcare": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "whenever": {"_count": 1, "Aunt": {"_count": 1}}}, "Apart": {"_count": 3, "from": {"_count": 3, "his": {"_count": 1}, "The": {"_count": 1}, "anything": {"_count": 1}}}, "possessions": {"_count": 19, "was": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "Invisibility": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Luna": {"_count": 1}, "Professor": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "followed": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "flying": {"_count": 1, "around": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "are": {"_count": 1, "illegal": {"_count": 1}}, "his": {"_count": 1, "private": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}}, "layer": {"_count": 7, "of": {"_count": 7, "paper": {"_count": 1}, "crisp": {"_count": 1}, "dust": {"_count": 1}, "makeup": {"_count": 1}, "general": {"_count": 1}, "debris": {"_count": 1}, "grease": {"_count": 1}}}, "glimpsed": {"_count": 24, "something": {"_count": 1, "green": {"_count": 1}}, "a": {"_count": 1, "newly": {"_count": 1}}, "the": {"_count": 5, "enchanted": {"_count": 1}, "front": {"_count": 1}, "female": {"_count": 1}, "tail": {"_count": 1}, "bald": {"_count": 1}}, "me": {"_count": 1, "though": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "Cho": {"_count": 1, "that": {"_count": 1}}, "an": {"_count": 1, "untidy": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "todays": {"_count": 1, "ceiling": {"_count": 1}}, "Snape": {"_count": 1, "a": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Slughorn": {"_count": 1, "at": {"_count": 1}}, "hooded": {"_count": 1, "Death": {"_count": 1}}, "another": {"_count": 1, "Death": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "two": {"_count": 1, "men": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}}, "persons": {"_count": 8, "view": {"_count": 1, "of": {"_count": 1}}, "memorys": {"_count": 1, "modified": {"_count": 1}}, "arms": {"_count": 1, "looked": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "mind": {"_count": 1, "He": {"_count": 1}}, "unknown": {"_count": 1, "": {"_count": 1}}, "suffering": {"_count": 1, "": {"_count": 1}}, "life": {"_count": 1, "a": {"_count": 1}}}, "befriend": {"_count": 2, "giant": {"_count": 1, "spiders": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}}, "wrapping": {"_count": 7, "paper": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "towel": {"_count": 1}}, "themselves": {"_count": 3, "tightly": {"_count": 2}, "around": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}}, "register": {"_count": 15, "its": {"_count": 1, "handsome": {"_count": 1}}, "our": {"_count": 1, "concern": {"_count": 1}}, "his": {"_count": 2, "astonishment": {"_count": 1}, "bizarre": {"_count": 1}}, "showing": {"_count": 1, "what": {"_count": 1}}, "and": {"_count": 2, "there": {"_count": 1}, "anyway": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "yourself": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "what": {"_count": 1, "she": {"_count": 1}}, "compared": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "unnatural": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}}, "Monster": {"_count": 10, "Book": {"_count": 7, "of": {"_count": 6}, "shuddered": {"_count": 1}}, "Books": {"_count": 3, "cage": {"_count": 1}, "had": {"_count": 1}, "eh": {"_count": 1}}}, "Monsters": {"_count": 6, "before": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 1, "listed": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "crab": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "looking": {"_count": 1, "out": {"_count": 1}}, "apple": {"_count": 1, "trees": {"_count": 1}}}, "stealthily": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "Praying": {"_count": 2, "that": {"_count": 2, "the": {"_count": 1}, "this": {"_count": 1}}}, "interestedly": {"_count": 6, "as": {"_count": 2, "Harry": {"_count": 1}, "they": {"_count": 1}}, "over": {"_count": 1, "Stans": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Noticing": {"_count": 1, "that": {"_count": 1, "it": {"_count": 1}}}, "Hogsmeade": {"_count": 148, "on": {"_count": 4, "certain": {"_count": 1}, "weekends": {"_count": 2}, "the": {"_count": 1}}, "permission": {"_count": 2, "form": {"_count": 1}, "forms": {"_count": 1}}, "form": {"_count": 3, "when": {"_count": 1}, "stopped": {"_count": 1}, "wasnt": {"_count": 1}}, "with": {"_count": 4, "Ron": {"_count": 1}, "the": {"_count": 1}, "everyone": {"_count": 1}, "me": {"_count": 1}}, "": {"_count": 35, ".": {"_count": 25}, "?": {"_count": 9}, "!": {"_count": 1}}, "but": {"_count": 3, "my": {"_count": 1}, "I": {"_count": 1}, "there": {"_count": 1}}, "next": {"_count": 2, "year": {"_count": 1}, "weekend": {"_count": 1}}, "now": {"_count": 2, "looked": {"_count": 1}, "to": {"_count": 1}}, "said": {"_count": 5, "Ron": {"_count": 2}, "Harry": {"_count": 2}, "Fred": {"_count": 1}}, "station": {"_count": 4, "and": {"_count": 1}, "": {"_count": 3}}, "weekend": {"_count": 8, "said": {"_count": 2}, "by": {"_count": 1}, "for": {"_count": 1}, "turned": {"_count": 1}, "in": {"_count": 1}, "anyway": {"_count": 1}, "": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 2, "often": {"_count": 1}, "was": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "lied": {"_count": 1}, "decided": {"_count": 1}}, "visitors": {"_count": 1, "": {"_count": 1}}, "buying": {"_count": 1, "Stink": {"_count": 1}}, "like": {"_count": 1, "": {"_count": 1}}, "trip": {"_count": 3, "on": {"_count": 1}, "Harry": {"_count": 1}, "next": {"_count": 1}}, "it": {"_count": 1, "wasnt": {"_count": 1}}, "every": {"_count": 1, "night": {"_count": 1}}, "residents": {"_count": 1, "and": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "without": {"_count": 3, "permission": {"_count": 1}, "passing": {"_count": 1}, "detection": {"_count": 1}}, "and": {"_count": 6, "buy": {"_count": 1}, "was": {"_count": 1}, "up": {"_count": 1}, "saw": {"_count": 1}, "see": {"_count": 1}, "all": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "visits": {"_count": 1, "given": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "than": {"_count": 1, "we": {"_count": 1}}, "illegally": {"_count": 1, "too": {"_count": 1}}, "visit": {"_count": 4, "": {"_count": 1}, "halfway": {"_count": 1}, "dawned": {"_count": 1}, "of": {"_count": 1}}, "to": {"_count": 1, "all": {"_count": 1}}, "was": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "not": {"_count": 1}}, "he": {"_count": 1, "might": {"_count": 1}}, "past": {"_count": 1, "Dervish": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "lay": {"_count": 1, "": {"_count": 1}}, "Id": {"_count": 1, "draw": {"_count": 1}}, "weekends": {"_count": 2, "and": {"_count": 2}}, "perhaps": {"_count": 2, "under": {"_count": 1}, "and": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "trips": {"_count": 1, "for": {"_count": 1}}, "And": {"_count": 1, "what": {"_count": 1}}, "meeting": {"_count": 1, "so": {"_count": 1}}, "Station": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "pub": {"_count": 1, "the": {"_count": 1}}, "today": {"_count": 1, "": {"_count": 1}}, "early": {"_count": 1, "because": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}, "branch": {"_count": 1, "you": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "someone": {"_count": 1, "who": {"_count": 1}}, "Seamus": {"_count": 1, "told": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "dark": {"_count": 1}}, "High": {"_count": 1, "Street": {"_count": 1}}, "up": {"_count": 1, "into": {"_count": 1}}, "heard": {"_count": 1, "him": {"_count": 1}}}, "weekends": {"_count": 11, "": {"_count": 3, ".": {"_count": 3}}, "he": {"_count": 1, "knew": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "said": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 2, "thats": {"_count": 1}, "the": {"_count": 1}}, "brutal": {"_count": 1, "wind": {"_count": 1}}, "to": {"_count": 1, "buy": {"_count": 1}}}, "parent": {"_count": 7, "or": {"_count": 3, "guardian": {"_count": 3}}, "an": {"_count": 1, "adult": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "attack": {"_count": 1, "": {"_count": 1}}}, "guardian": {"_count": 10, "to": {"_count": 2, "sign": {"_count": 1}, "visit": {"_count": 1}}, "But": {"_count": 1, "youre": {"_count": 1}}, "must": {"_count": 1, "give": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "acts": {"_count": 1}}, "said": {"_count": 1, "Black": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "Deciding": {"_count": 3, "that": {"_count": 2, "hed": {"_count": 1}, "it": {"_count": 1}}, "the": {"_count": 1, "trees": {"_count": 1}}}, "chart": {"_count": 18, "hed": {"_count": 1, "made": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 2, "complete": {"_count": 1}, "enter": {"_count": 1}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 3, "realize": {"_count": 1}, "was": {"_count": 1}, "pretended": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "snapped": {"_count": 1}}, "for": {"_count": 1, "Astronomy": {"_count": 1}}, "he": {"_count": 1, "or": {"_count": 1}}, "however": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "alert": {"_count": 1}}, "Harry": {"_count": 2, "looked": {"_count": 1}, "was": {"_count": 1}}}, "Extremely": {"_count": 1, "unusual": {"_count": 1, "though": {"_count": 1}}}, "AUNT": {"_count": 3, "MARGES": {"_count": 1, "BIG": {"_count": 1}}, "AND": {"_count": 1, "UNCLES": {"_count": 1}}, "NOW": {"_count": 1, "GET": {"_count": 1}}}, "MARGES": {"_count": 1, "BIG": {"_count": 1, "MISTAKE": {"_count": 1}}}, "BIG": {"_count": 2, "MISTAKE": {"_count": 1, "Harry": {"_count": 1}}, "DEAL": {"_count": 1, "": {"_count": 1}}}, "MISTAKE": {"_count": 2, "Harry": {"_count": 1, "went": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}}, "welcomehomeforthesummer": {"_count": 1, "present": {"_count": 1, "for": {"_count": 1}}}, "piggy": {"_count": 7, "little": {"_count": 3, "eyes": {"_count": 3}}, "eyes": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "face": {"_count": 1, "if": {"_count": 1}}}, "chins": {"_count": 2, "wobbling": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wobbling": {"_count": 4, "as": {"_count": 2, "he": {"_count": 1}, "usual": {"_count": 1}}, "head": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}}, "continually": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "hungry": {"_count": 1, "": {"_count": 1}}, "circling": {"_count": 1, "snake": {"_count": 1}}, "Hedwig": {"_count": 1, "was": {"_count": 1}}, "moving": {"_count": 1, "and": {"_count": 1}}, "approaching": {"_count": 1, "him": {"_count": 1}}, "outshone": {"_count": 1, "was": {"_count": 1}}}, "sighting": {"_count": 1, "of": {"_count": 1, "Black": {"_count": 1}}}, "prisoner": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "ever": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "quiet": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 1, "slowly": {"_count": 1}}}, "layabout": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "wizards": {"_count": 1, "Dont": {"_count": 1}}}, "matted": {"_count": 14, "elbowlength": {"_count": 1, "tangle": {"_count": 1}}, "hair": {"_count": 5, "blinked": {"_count": 1}, "hung": {"_count": 1}, "but": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "fur": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "ginger": {"_count": 1, "hair": {"_count": 1}}, "with": {"_count": 2, "congealed": {"_count": 1}, "dirt": {"_count": 1}}, "gray": {"_count": 2, "hair": {"_count": 2}}, "and": {"_count": 1, "his": {"_count": 1}}}, "elbowlength": {"_count": 2, "tangle": {"_count": 1, "Harry": {"_count": 1}}, "hair": {"_count": 1, "had": {"_count": 1}}}, "groomed": {"_count": 1, "indeed": {"_count": 1, "": {"_count": 1}}}, "Agriculture": {"_count": 1, "and": {"_count": 1, "Fisheries": {"_count": 1}}}, "Fisheries": {"_count": 1, "will": {"_count": 1, "announce": {"_count": 1}}}, "Lunatic": {"_count": 1, "could": {"_count": 1, "be": {"_count": 1}}}, "nosiest": {"_count": 1, "woman": {"_count": 1, "in": {"_count": 1}}}, "lawabiding": {"_count": 2, "neighbors": {"_count": 1, "": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}}, "runner": {"_count": 3, "beans": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "beans": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "Rita": {"_count": 1}}}, "teacup": {"_count": 16, "glanced": {"_count": 1, "at": {"_count": 1}}, "rather": {"_count": 1, "like": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "forehead": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "rotating": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "shook": {"_count": 1, "so": {"_count": 1}}, "stood": {"_count": 1, "drunkenly": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "to": {"_count": 1, "jog": {"_count": 1}}, "jogged": {"_count": 1, "right": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "chewing": {"_count": 1, "on": {"_count": 1}}}, "Sh": {"_count": 2, "shes": {"_count": 1, "not": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "bulldogs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "computerized": {"_count": 1, "robot": {"_count": 1, "for": {"_count": 1}}}, "robot": {"_count": 1, "for": {"_count": 1, "Dudley": {"_count": 1}}}, "Ripper": {"_count": 9, "had": {"_count": 1, "chased": {"_count": 1}}, "take": {"_count": 1, "": {"_count": 1}}, "can": {"_count": 1, "have": {"_count": 1}}, "was": {"_count": 1, "lapping": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "came": {"_count": 1, "skidding": {"_count": 1}}, "leapt": {"_count": 1, "forward": {"_count": 1}}, "the": {"_count": 1, "bulldog": {"_count": 1}}}, "incident": {"_count": 9, "still": {"_count": 1, "brought": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 2, "Hogsmeade": {"_count": 1}, "which": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "day": {"_count": 1}}}, "Margell": {"_count": 1, "be": {"_count": 1, "here": {"_count": 1}}}, "Firstly": {"_count": 7, "growled": {"_count": 1, "Uncle": {"_count": 1}}, "Malfoy": {"_count": 1, "Crabbe": {"_count": 1}}, "I": {"_count": 2, "wish": {"_count": 1}, "hope": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "very": {"_count": 1}}}, "civil": {"_count": 1, "tongue": {"_count": 1, "in": {"_count": 1}}}, "Secondly": {"_count": 2, "said": {"_count": 1, "Uncle": {"_count": 1}}, "the": {"_count": 1, "castle": {"_count": 1}}}, "abnormality": {"_count": 1, "I": {"_count": 1, "dont": {"_count": 1}}}, "thirdly": {"_count": 2, "said": {"_count": 1, "Uncle": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}}, "Brutuss": {"_count": 6, "Secure": {"_count": 4, "Center": {"_count": 4}}, "said": {"_count": 1, "Uncle": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}}, "Secure": {"_count": 4, "Center": {"_count": 4, "for": {"_count": 4}}}, "Center": {"_count": 5, "for": {"_count": 4, "Incurably": {"_count": 4}}, "": {"_count": 1, ".": {"_count": 1}}}, "Incurably": {"_count": 4, "Criminal": {"_count": 4, "Boys": {"_count": 4}}}, "Criminal": {"_count": 4, "Boys": {"_count": 4, "": {"_count": 4}}}, "weeklong": {"_count": 2, "visit": {"_count": 1, "it": {"_count": 1}}, "match": {"_count": 1, "": {"_count": 1}}}, "111": {"_count": 13, "be": {"_count": 1, "off": {"_count": 1}}, "need": {"_count": 2, "this": {"_count": 1}, "to": {"_count": 1}}, "see": {"_count": 1, "you": {"_count": 1}}, "have": {"_count": 2, "a": {"_count": 2}}, "go": {"_count": 2, "and": {"_count": 1}, "to": {"_count": 1}}, "teach": {"_count": 1, "the": {"_count": 1}}, "do": {"_count": 1, "it": {"_count": 1}}, "want": {"_count": 1, "a": {"_count": 1}}, "Stutter": {"_count": 1, "at": {"_count": 1}}, "stop": {"_count": 1, "": {"_count": 1}}}, "Dudders": {"_count": 8, "": {"_count": 5, "?": {"_count": 4}, ".": {"_count": 1}}, "like": {"_count": 1, "your": {"_count": 1}}, "out": {"_count": 1, "for": {"_count": 1}}, "doesnt": {"_count": 1, "turn": {"_count": 1}}}, "auntie": {"_count": 2, "said": {"_count": 1, "Aunt": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "Mummys": {"_count": 2, "bought": {"_count": 1, "him": {"_count": 1}}, "gone": {"_count": 1, "the": {"_count": 1}}}, "Abandoning": {"_count": 5, "his": {"_count": 2, "toast": {"_count": 1}, "search": {"_count": 1}}, "all": {"_count": 1, "pretense": {"_count": 1}}, "pretense": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "attempt": {"_count": 1}}}, "hook": {"_count": 9, "next": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "behind": {"_count": 1}}, "nosed": {"_count": 1, "greasyhaired": {"_count": 1}}, "Big": {"_count": 1, "D": {"_count": 1}}, "being": {"_count": 1, "jerked": {"_count": 1}}, "had": {"_count": 1, "hoisted": {"_count": 1}}, "and": {"_count": 1, "line": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Whatsits": {"_count": 1, "St": {"_count": 1, "": {"_count": 1}}}, "definite": {"_count": 16, "note": {"_count": 2, "of": {"_count": 2}}, "droop": {"_count": 1, "to": {"_count": 1}}, "upturn": {"_count": 1, "": {"_count": 1}}, "endoftheholidays": {"_count": 1, "gloom": {"_count": 1}}, "increase": {"_count": 2, "in": {"_count": 2}}, "drop": {"_count": 1, "in": {"_count": 1}}, "coolness": {"_count": 1, "in": {"_count": 1}}, "room": {"_count": 1, "for": {"_count": 1}}, "on": {"_count": 1, "anything": {"_count": 1}}, "sounds": {"_count": 1, "of": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "time": {"_count": 1, "for": {"_count": 1}}, "longing": {"_count": 1, "in": {"_count": 1}}}, "convincing": {"_count": 9, "wont": {"_count": 1, "I": {"_count": 1}}, "than": {"_count": 1, "yours": {"_count": 1}}, "in": {"_count": 1, "years": {"_count": 1}}, "witness": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "or": {"_count": 1, "find": {"_count": 1}}, "hesitancy": {"_count": 1, "well": {"_count": 1}}}, "Knocking": {"_count": 2, "the": {"_count": 1, "stuffing": {"_count": 1}}, "over": {"_count": 1, "two": {"_count": 1}}}, "puce": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "glared": {"_count": 1}}, "dressing": {"_count": 1, "gown": {"_count": 1}}}, "Mug": {"_count": 2, "like": {"_count": 1, "Im": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}}, "vein": {"_count": 10, "was": {"_count": 1, "throbbing": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "flickering": {"_count": 1, "horribly": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 3}, "Uncle": {"_count": 1}}, "pulsing": {"_count": 2, "in": {"_count": 2}}, "of": {"_count": 1, "instability": {"_count": 1}}}, "temple": {"_count": 18, "": {"_count": 6, ".": {"_count": 6}}, "pulsing": {"_count": 2, "more": {"_count": 1}, "angrily": {"_count": 1}}, "removed": {"_count": 1, "another": {"_count": 1}}, "and": {"_count": 4, "adding": {"_count": 1}, "placed": {"_count": 1}, "deposited": {"_count": 1}, "withdrew": {"_count": 1}}, "was": {"_count": 3, "throbbing": {"_count": 1}, "getting": {"_count": 1}, "reaching": {"_count": 1}}, "to": {"_count": 1, "wand": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}}, "monitor": {"_count": 1, "your": {"_count": 1, "behavior": {"_count": 1}}}, "toed": {"_count": 1, "the": {"_count": 1, "line": {"_count": 1}}}, "panes": {"_count": 3, "of": {"_count": 2, "glass": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "recovered": {"_count": 10, "he": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "when": {"_count": 1}}, "my": {"_count": 1, "strength": {"_count": 1}}, "her": {"_count": 1, "poise": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "Ronll": {"_count": 1, "look": {"_count": 1, "after": {"_count": 1}}}, "reproachful": {"_count": 9, "its": {"_count": 1, "not": {"_count": 1}}, "look": {"_count": 4, "at": {"_count": 1}, "before": {"_count": 1}, "and": {"_count": 2}}, "looks": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "voice": {"_count": 1, "behind": {"_count": 1}}}, "brood": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}, "constantly": {"_count": 1, "on": {"_count": 1}}}, "guest": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 2, "honor": {"_count": 1}, "Fleurs": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "with": {"_count": 2, "most": {"_count": 1}, "us": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "Severus": {"_count": 1, "": {"_count": 1}}}, "gravel": {"_count": 2, "outside": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "suitcase": {"_count": 9, "and": {"_count": 2, "tucked": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "which": {"_count": 2, "was": {"_count": 1}, "burst": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}}, "eviltempered": {"_count": 1, "bulldog": {"_count": 1, "": {"_count": 1}}}, "neffypoo": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "onearmed": {"_count": 4, "hug": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "centaur": {"_count": 2, "galloped": {"_count": 1}, "galloping": {"_count": 1}}}, "hug": {"_count": 28, "and": {"_count": 3, "planted": {"_count": 1}, "dashed": {"_count": 1}, "perhaps": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "the": {"_count": 2, "Gryffindor": {"_count": 1}, "moment": {"_count": 1}}, "that": {"_count": 3, "their": {"_count": 1}, "nearly": {"_count": 2}}, "ruffled": {"_count": 1, "his": {"_count": 1}}, "before": {"_count": 1, "holding": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "her": {"_count": 2, "hold": {"_count": 1}, "": {"_count": 1}}, "Bill": {"_count": 1, "bestowed": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "best": {"_count": 1}, "son": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "then": {"_count": 2, "ran": {"_count": 1}, "leapt": {"_count": 1}}, "some": {"_count": 1, "part": {"_count": 1}}}, "planted": {"_count": 14, "a": {"_count": 1, "large": {"_count": 1}}, "the": {"_count": 2, "Whomping": {"_count": 1}, "year": {"_count": 1}}, "right": {"_count": 1, "over": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 2, "Potters": {"_count": 1}, "his": {"_count": 1}}, "after": {"_count": 1, "she": {"_count": 1}}, "it": {"_count": 1, "there": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "some": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}}, "hugs": {"_count": 1, "because": {"_count": 1, "he": {"_count": 1}}}, "crisp": {"_count": 9, "twentypound": {"_count": 1, "note": {"_count": 1}}, "snow": {"_count": 1, "there": {"_count": 1}}, "suit": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "Fred": {"_count": 1}}, "and": {"_count": 2, "stern": {"_count": 1}, "golden": {"_count": 1}}, "decisive": {"_count": 1, "voice": {"_count": 1}}, "official": {"_count": 1, "voice": {"_count": 1}}, "linen": {"_count": 1, "sheet": {"_count": 1}}}, "twentypound": {"_count": 1, "note": {"_count": 1, "clutched": {"_count": 1}}}, "cheekbone": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Tea": {"_count": 6, "Marge": {"_count": 1, "": {"_count": 1}}, "Shop": {"_count": 3, "": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}}, "saucer": {"_count": 3, "said": {"_count": 1, "Aunt": {"_count": 1}}, "wait": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "supplied": {"_count": 5, "with": {"_count": 1, "tea": {"_count": 1}}, "the": {"_count": 1, "core": {"_count": 1}}, "tonelessly": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}}, "lapping": {"_count": 1, "noisily": {"_count": 1, "in": {"_count": 1}}}, "wince": {"_count": 5, "slightly": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 1, "the": {"_count": 1}}}, "specks": {"_count": 4, "of": {"_count": 2, "tea": {"_count": 1}, "light": {"_count": 1}}, "were": {"_count": 1, "clearly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "drool": {"_count": 2, "flecked": {"_count": 1, "her": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "flecked": {"_count": 6, "her": {"_count": 1, "clean": {"_count": 1}}, "with": {"_count": 4, "gray": {"_count": 1}, "snow": {"_count": 1}, "dazzling": {"_count": 1}, "gold": {"_count": 1}}, "windows": {"_count": 1, "scattering": {"_count": 1}}}, "Colonel": {"_count": 3, "Fubster": {"_count": 2, "managing": {"_count": 1}, "drown": {"_count": 1}}, "Fubsters": {"_count": 1, "the": {"_count": 1}}}, "Fubster": {"_count": 2, "managing": {"_count": 1, "them": {"_count": 1}}, "drown": {"_count": 1, "one": {"_count": 1}}}, "pines": {"_count": 1, "if": {"_count": 1, "hes": {"_count": 1}}}, "\u2018yes": {"_count": 1, "in": {"_count": 1, "that": {"_count": 1}}}, "ungrateful": {"_count": 7, "tone": {"_count": 1, "Aunt": {"_count": 1}}, "little": {"_count": 2, "But": {"_count": 1}, "": {"_count": 1}}, "back": {"_count": 1, "Only": {"_count": 1}}, "swine": {"_count": 1, "who": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "smirk": {"_count": 11, "at": {"_count": 1, "me": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 3}}, "off": {"_count": 2, "old": {"_count": 1}, "Pansy": {"_count": 1}}, "quivering": {"_count": 1, "on": {"_count": 1}}, "widened": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cross": {"_count": 1, "her": {"_count": 1}}}, "manners": {"_count": 10, "into": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "My": {"_count": 1, "Lord": {"_count": 1}}, "to": {"_count": 2, "return": {"_count": 1}, "drink": {"_count": 1}}, "Id": {"_count": 1, "be": {"_count": 1}}, "are": {"_count": 1, "those": {"_count": 1}}, "and": {"_count": 1, "quiet": {"_count": 1}}, "replied": {"_count": 1, "Dumbledore": {"_count": 1}}}, "firstrate": {"_count": 1, "institution": {"_count": 1, "for": {"_count": 1}}}, "institution": {"_count": 1, "for": {"_count": 1, "hopeless": {"_count": 1}}}, "nambypamby": {"_count": 1, "wishywashy": {"_count": 1, "nonsense": {"_count": 1}}}, "wishywashy": {"_count": 1, "nonsense": {"_count": 1, "about": {"_count": 1}}}, "deserve": {"_count": 17, "it": {"_count": 5, "": {"_count": 3}, "Cedric": {"_count": 1}, "she": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 3, "be": {"_count": 2}, "die": {"_count": 1}}, "a": {"_count": 1, "life": {"_count": 1}}, "this": {"_count": 2, "pain": {"_count": 1}, "": {"_count": 1}}, "rather": {"_count": 1, "more": {"_count": 1}}, "blood": {"_count": 1, "that": {"_count": 1}}, "another": {"_count": 1, "punching": {"_count": 1}}, "detention": {"_count": 1, "with": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "ninetynine": {"_count": 1, "cases": {"_count": 1, "out": {"_count": 1}}}, "beatings": {"_count": 1, "in": {"_count": 1, "that": {"_count": 1}}}, "casual": {"_count": 26, "way": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 2, "Harry": {"_count": 1}, "his": {"_count": 1}}, "voice": {"_count": 5, "": {"_count": 2}, "made": {"_count": 1}, "ever": {"_count": 1}, "he": {"_count": 1}}, "wave": {"_count": 1, "of": {"_count": 1}}, "game": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "sort": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "not": {"_count": 1}}, "elegance": {"_count": 1, "neither": {"_count": 1}}, "yeah": {"_count": 1, "I": {"_count": 1}}, "flick": {"_count": 3, "the": {"_count": 1}, "": {"_count": 1}, "of": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "tone": {"_count": 3, "the": {"_count": 1}, "": {"_count": 2}}}, "extreme": {"_count": 11, "force": {"_count": 1, "in": {"_count": 1}}, "caution": {"_count": 1, "in": {"_count": 1}}, "where": {"_count": 1, "his": {"_count": 1}}, "difficulty": {"_count": 2, "": {"_count": 2}}, "wandering": {"_count": 1, "the": {"_count": 1}}, "pallor": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "actually": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "age": {"_count": 1, "": {"_count": 1}}, "clutter": {"_count": 1, "of": {"_count": 1}}}, "bargain": {"_count": 7, "in": {"_count": 1, "any": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "we": {"_count": 1, "ever": {"_count": 1}}, "with": {"_count": 1, "Griphook": {"_count": 1}}, "involves": {"_count": 1, "treasure": {"_count": 1}}}, "encouraged": {"_count": 6, "Harry": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "rumor": {"_count": 1}}, "Mr": {"_count": 1, "Bode": {"_count": 1}}, "to": {"_count": 1, "integrate": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}}, "boom": {"_count": 1, "out": {"_count": 1, "suggestions": {"_count": 1}}}, "comparing": {"_count": 4, "Harry": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}, "results": {"_count": 1, "and": {"_count": 1}}, "notes": {"_count": 1, "on": {"_count": 1}}}, "unsatisfactory": {"_count": 3, "person": {"_count": 1, "": {"_count": 1}}, "classes": {"_count": 1, "": {"_count": 1}}, "teachers": {"_count": 1, "Hagrid": {"_count": 1}}}, "bitch": {"_count": 1, "therell": {"_count": 1, "be": {"_count": 1}}}, "pup": {"_count": 1, "At": {"_count": 1, "that": {"_count": 1}}}, "wineglass": {"_count": 1, "Aunt": {"_count": 1, "Marge": {"_count": 1}}}, "Shards": {"_count": 1, "of": {"_count": 1, "glass": {"_count": 1}}}, "mopping": {"_count": 21, "her": {"_count": 8, "face": {"_count": 1}, "eyes": {"_count": 7}}, "his": {"_count": 10, "face": {"_count": 1}, "sweaty": {"_count": 1}, "bald": {"_count": 1}, "brow": {"_count": 1}, "bleeding": {"_count": 1}, "sweating": {"_count": 1}, "eyes": {"_count": 3}, "forehead": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "Bills": {"_count": 1}}, "their": {"_count": 1, "eyes": {"_count": 1}}}, "napkin": {"_count": 12, "": {"_count": 5, ".": {"_count": 5}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 3, "Professor": {"_count": 1}, "flask": {"_count": 1}, "dabbed": {"_count": 1}}, "but": {"_count": 1, "her": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "ring": {"_count": 1, "said": {"_count": 1}}}, "Fubsters": {"_count": 1, "the": {"_count": 1, "other": {"_count": 1}}}, "dessert": {"_count": 1, "and": {"_count": 1, "escape": {"_count": 1}}}, "stake": {"_count": 3, "if": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "outside": {"_count": 1, "one": {"_count": 1}}}, "stated": {"_count": 8, "quite": {"_count": 1, "clearly": {"_count": 1}}, "in": {"_count": 1, "paragraph": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "categorically": {"_count": 1, "and": {"_count": 1}}, "word": {"_count": 1, "for": {"_count": 1}}, "firmly": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "baldly": {"_count": 1}}}, "glazed": {"_count": 10, "look": {"_count": 1, "because": {"_count": 1}}, "with": {"_count": 4, "tears": {"_count": 3}, "ice": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "face": {"_count": 1, "upon": {"_count": 1}}, "eyes": {"_count": 2, "and": {"_count": 1}, "frozen": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}}, "mentally": {"_count": 3, "subnormal": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "shaking": {"_count": 1, "himself": {"_count": 1}}}, "subnormal": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "uncorked": {"_count": 5, "several": {"_count": 1, "bottles": {"_count": 1}}, "his": {"_count": 1, "ink": {"_count": 1}}, "the": {"_count": 1, "poison": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}}, "faults": {"_count": 5, "during": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "fears": {"_count": 1}}, "it": {"_count": 1, "must": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}}, "drillmaking": {"_count": 1, "company": {"_count": 1, "then": {"_count": 1}}}, "tempt": {"_count": 4, "you": {"_count": 1, "Marge": {"_count": 1}}, "the": {"_count": 2, "BlastEnded": {"_count": 1}, "skrewts": {"_count": 1}}, "me": {"_count": 1, "into": {"_count": 1}}}, "sipping": {"_count": 3, "coffee": {"_count": 1, "with": {"_count": 1}}, "her": {"_count": 1, "butterbeer": {"_count": 1}}, "his": {"_count": 1, "drink": {"_count": 1}}}, "Aah": {"_count": 1, "said": {"_count": 1, "Aunt": {"_count": 1}}}, "smacking": {"_count": 8, "her": {"_count": 1, "lips": {"_count": 1}}, "his": {"_count": 3, "lips": {"_count": 3}}, "himself": {"_count": 2, "hard": {"_count": 1}, "on": {"_count": 1}}, "the": {"_count": 1, "ground": {"_count": 1}}, "Harry": {"_count": 1, "hard": {"_count": 1}}}, "nosh": {"_count": 1, "Petunia": {"_count": 1, "": {"_count": 1}}}, "fryup": {"_count": 1, "for": {"_count": 1, "me": {"_count": 1}}}, "richly": {"_count": 2, "and": {"_count": 1, "patted": {"_count": 1}}, "embroidered": {"_count": 1, "waistcoat": {"_count": 1}}}, "tweed": {"_count": 6, "stomach": {"_count": 1, "": {"_count": 1}}, "jacket": {"_count": 1, "and": {"_count": 1}}, "waistband": {"_count": 1, "each": {"_count": 1}}, "suit": {"_count": 1, "with": {"_count": 1}}, "cloak": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}}, "Pardon": {"_count": 1, "me": {"_count": 1, "": {"_count": 1}}}, "healthysized": {"_count": 1, "boy": {"_count": 1, "she": {"_count": 1}}}, "sized": {"_count": 5, "man": {"_count": 1, "Dudders": {"_count": 1}}, "mugs": {"_count": 1, "and": {"_count": 1}}, "glass": {"_count": 1, "of": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "teeth": {"_count": 1, "and": {"_count": 1}}}, "runty": {"_count": 2, "look": {"_count": 1, "about": {"_count": 1}}, "side": {"_count": 1, "fer": {"_count": 1}}}, "drown": {"_count": 13, "one": {"_count": 2, "last": {"_count": 1}, "day": {"_count": 1}}, "himself": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "itself": {"_count": 1, "throw": {"_count": 1}}, "powerless": {"_count": 1, "in": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "the": {"_count": 1, "noise": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}}, "Ratty": {"_count": 1, "little": {"_count": 1, "thing": {"_count": 1}}}, "Weak": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "chest": {"_count": 1, "": {"_count": 1}}}, "Underbred": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Cure": {"_count": 1, "Reluctant": {"_count": 1, "Reversers": {"_count": 1}}}, "Reluctant": {"_count": 2, "Reversers": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}}, "Reversers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "shovellike": {"_count": 1, "one": {"_count": 1, "but": {"_count": 1}}}, "wastrel": {"_count": 1, "and": {"_count": 1, "heres": {"_count": 1}}}, "Grasp": {"_count": 1, "your": {"_count": 1, "broom": {"_count": 1}}}, "tablecloth": {"_count": 10, "you": {"_count": 1, "never": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 2, "said": {"_count": 1}, "tucked": {"_count": 1}}, "staining": {"_count": 1, "several": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "beneath": {"_count": 1}}, "the": {"_count": 1, "press": {"_count": 1}}}, "gape": {"_count": 1, "at": {"_count": 1, "his": {"_count": 1}}}, "Unemployed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "lazy": {"_count": 9, "scrounger": {"_count": 1, "who": {"_count": 1}}, "drawl": {"_count": 1, "pulling": {"_count": 1}}, "to": {"_count": 1, "Another": {"_count": 1}}, "conversations": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "sloppy": {"_count": 1}}, "acknowledgment": {"_count": 1, "of": {"_count": 1}}, "flick": {"_count": 2, "of": {"_count": 2}}, "wave": {"_count": 1, "of": {"_count": 1}}}, "scrounger": {"_count": 1, "who": {"_count": 1, "He": {"_count": 1}}}, "MORE": {"_count": 3, "BRANDY": {"_count": 1, "": {"_count": 1}}, "OWLS": {"_count": 1, "IN": {"_count": 1}}, "THAN": {"_count": 1, "YOU": {"_count": 1}}}, "BRANDY": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "hiccuped": {"_count": 8, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "Slughorn": {"_count": 1, "happily": {"_count": 1}}, "loudly": {"_count": 1, "patted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "himself": {"_count": 1, "into": {"_count": 1}}}, "bloodshot": {"_count": 17, "eyes": {"_count": 9, "fixed": {"_count": 1}, "unfocused": {"_count": 1}, "stretching": {"_count": 1}, "and": {"_count": 2}, "crouching": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "baggy": {"_count": 1, "eyes": {"_count": 1}}, "and": {"_count": 3, "watery": {"_count": 1}, "swimming": {"_count": 1}, "bulging": {"_count": 1}}, "eye": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "otherwise": {"_count": 1}}}, "liar": {"_count": 12, "and": {"_count": 3, "left": {"_count": 1}, "Dumbledore": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "had": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 1, "in": {"_count": 1}}, "nor": {"_count": 1, "mad": {"_count": 1}}}, "hardworking": {"_count": 2, "relatives": {"_count": 1, "": {"_count": 1}}, "downto": {"_count": 1, "earth": {"_count": 1}}}, "insolent": {"_count": 3, "ungrateful": {"_count": 1, "little": {"_count": 1}}, "stare": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "inexpressible": {"_count": 3, "anger": {"_count": 1, "but": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "comfort": {"_count": 1, "to": {"_count": 1}}}, "expand": {"_count": 3, "her": {"_count": 1, "tiny": {"_count": 1}}, "and": {"_count": 1, "glow": {"_count": 1}}, "into": {"_count": 1, "being": {"_count": 1}}}, "bulged": {"_count": 2, "and": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 1, "hed": {"_count": 1}}}, "pinged": {"_count": 1, "off": {"_count": 1, "the": {"_count": 1}}}, "inflating": {"_count": 4, "like": {"_count": 1, "a": {"_count": 1}}, "Aunt": {"_count": 1, "Marge": {"_count": 1}}, "herself": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "already": {"_count": 1}}}, "waistband": {"_count": 4, "each": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 2}}, "on": {"_count": 1, "Harrys": {"_count": 1}}}, "salami": {"_count": 2, "MARGE": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "MARGE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "buoy": {"_count": 1, "with": {"_count": 1, "piggy": {"_count": 1}}}, "weirdly": {"_count": 6, "as": {"_count": 1, "she": {"_count": 1}}, "ahead": {"_count": 1, "of": {"_count": 1}}, "upward": {"_count": 1, "": {"_count": 1}}, "echoing": {"_count": 1, "fragments": {"_count": 1}}, "He": {"_count": 1, "saw": {"_count": 1}}, "distorted": {"_count": 1, "": {"_count": 1}}}, "barking": {"_count": 10, "madly": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "at": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 1, "wagging": {"_count": 1}}, "the": {"_count": 1, "Potty": {"_count": 1}}, "frantically": {"_count": 1, "inside": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "mad": {"_count": 1, "Hermione": {"_count": 1}}}, "trouser": {"_count": 1, "leg": {"_count": 1, "in": {"_count": 1}}}, "tatters": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "HER": {"_count": 6, "RIGHT": {"_count": 1, "": {"_count": 1}}, "OFF": {"_count": 1, "HER": {"_count": 1}}, "BROOM": {"_count": 1, "IF": {"_count": 1}}, "A": {"_count": 1, "SERIOUS": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "DAUGHTER": {"_count": 1, "ARIANA": {"_count": 1}}}, "RIGHT": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "AT": {"_count": 1, "IT": {"_count": 1}}}, "reckless": {"_count": 10, "rage": {"_count": 1, "had": {"_count": 1}}, "if": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "cooped": {"_count": 1, "up": {"_count": 1}}, "daring": {"_count": 1, "seized": {"_count": 1}}, "he": {"_count": 1, "closed": {"_count": 1}}, "but": {"_count": 1, "potentially": {"_count": 1}}, "a": {"_count": 1, "godfather": {"_count": 1}}, "abandonment": {"_count": 1, "as": {"_count": 1}}}, "KNIGHT": {"_count": 1, "BUS": {"_count": 1, "Harry": {"_count": 1}}}, "BUS": {"_count": 1, "Harry": {"_count": 1, "was": {"_count": 1}}}, "Magnolia": {"_count": 18, "Crescent": {"_count": 14, "panting": {"_count": 1}, "": {"_count": 4}, "crossed": {"_count": 1}, "but": {"_count": 1}, "halfway": {"_count": 1}, "turned": {"_count": 1}, "and": {"_count": 4}, "filled": {"_count": 1}}, "Road": {"_count": 4, "and": {"_count": 1}, "": {"_count": 1}, "like": {"_count": 1}, "Dudleys": {"_count": 1}}}, "Crescent": {"_count": 14, "panting": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "crossed": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "decided": {"_count": 1}}, "halfway": {"_count": 1, "along": {"_count": 1}}, "turned": {"_count": 1, "into": {"_count": 1}}, "and": {"_count": 4, "by": {"_count": 1}, "Wisteria": {"_count": 3}}, "filled": {"_count": 1, "the": {"_count": 1}}}, "Whichever": {"_count": 3, "way": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "term": {"_count": 1, "you": {"_count": 1}}}, "representatives": {"_count": 8, "werent": {"_count": 1, "swooping": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "so": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 2}}, "and": {"_count": 1, "if": {"_count": 1}}, "were": {"_count": 1, "approaching": {"_count": 1}}, "admitted": {"_count": 1, "that": {"_count": 1}}}, "criminal": {"_count": 9, "or": {"_count": 1, "not": {"_count": 1}}, "dont": {"_count": 1, "they": {"_count": 1}}, "damage": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "boot": {"_count": 1}}, "trial": {"_count": 1, "to": {"_count": 1}}, "Black": {"_count": 1, "in": {"_count": 1}}, "records": {"_count": 1, "": {"_count": 1}}, "record": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "being": {"_count": 1}}}, "abroad": {"_count": 13, "and": {"_count": 2, "with": {"_count": 1}, "searching": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "if": {"_count": 2, "they": {"_count": 1}, "you": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "go": {"_count": 1, "into": {"_count": 1}}}, "contacting": {"_count": 1, "them": {"_count": 1, "": {"_count": 1}}}, "featherlight": {"_count": 1, "tied": {"_count": 1, "it": {"_count": 1}}}, "outcast": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "nor": {"_count": 1, "can": {"_count": 1}}}, "trunkful": {"_count": 1, "of": {"_count": 1, "spellbooks": {"_count": 1}}}, "fence": {"_count": 24, "behind": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "here": {"_count": 1, "": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "cautiously": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 2, "up": {"_count": 1}, "in": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}, "around": {"_count": 1, "Hagrids": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "anger": {"_count": 1}}, "straining": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "looking": {"_count": 1}}, "watching": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "stumbling": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "barricade": {"_count": 1}}, "climbed": {"_count": 1, "over": {"_count": 1}}}, "pebbledashed": {"_count": 1, "walls": {"_count": 1, "of": {"_count": 1}}}, "hulking": {"_count": 2, "outline": {"_count": 1, "of": {"_count": 1}}, "figure": {"_count": 1, "to": {"_count": 1}}}, "gutter": {"_count": 1, "There": {"_count": 1, "was": {"_count": 1}}}, "tripledecker": {"_count": 3, "violently": {"_count": 1, "purple": {"_count": 1}}, "Knight": {"_count": 1, "Bus": {"_count": 1}}, "bus": {"_count": 1, "had": {"_count": 1}}}, "Gold": {"_count": 6, "lettering": {"_count": 1, "over": {"_count": 1}}, "writing": {"_count": 1, "kept": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "Medal": {"_count": 1, "Winner": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "filthy": {"_count": 1, "gold": {"_count": 1}}}, "Knight": {"_count": 27, "Bus": {"_count": 25, "": {"_count": 6}, "emergency": {"_count": 1}, "kept": {"_count": 1}, "feeling": {"_count": 1}, "dint": {"_count": 1}, "rolled": {"_count": 1}, "skidded": {"_count": 1}, "picked": {"_count": 1}, "hadnt": {"_count": 1}, "the": {"_count": 2}, "said": {"_count": 1}, "and": {"_count": 2}, "swayed": {"_count": 1}, "jumped": {"_count": 1}, "screeched": {"_count": 1}, "had": {"_count": 1}, "has": {"_count": 1}, "Madam": {"_count": 1}}, "Buss": {"_count": 2, "headlamps": {"_count": 1}, "way": {"_count": 1}}}, "Bus": {"_count": 25, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "emergency": {"_count": 1, "transport": {"_count": 1}}, "kept": {"_count": 1, "mounting": {"_count": 1}}, "feeling": {"_count": 1, "worse": {"_count": 1}}, "dint": {"_count": 1, "we": {"_count": 1}}, "rolled": {"_count": 1, "through": {"_count": 1}}, "skidded": {"_count": 1, "to": {"_count": 1}}, "picked": {"_count": 1, "Harry": {"_count": 1}}, "hadnt": {"_count": 1, "picked": {"_count": 1}}, "the": {"_count": 2, "second": {"_count": 1}, "following": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 2, "its": {"_count": 1}, "saw": {"_count": 1}}, "swayed": {"_count": 1, "alarmingly": {"_count": 1}}, "jumped": {"_count": 1, "from": {"_count": 1}}, "screeched": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "already": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "Madam": {"_count": 1, "Malkin": {"_count": 1}}}, "Stan": {"_count": 76, "Shunpike": {"_count": 16, "and": {"_count": 3}, "was": {"_count": 1}, "the": {"_count": 1}, "said": {"_count": 3}, "a": {"_count": 1}, "are": {"_count": 1}, "for": {"_count": 1}, "yet": {"_count": 1}, "": {"_count": 3}, "es": {"_count": 1}}, "dropping": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "whose": {"_count": 1, "mouth": {"_count": 1}}, "abruptly": {"_count": 1, "": {"_count": 1}}, "persisted": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 2, "you": {"_count": 1}, "not": {"_count": 1}}, "proudly": {"_count": 1, "anywhere": {"_count": 1}}, "but": {"_count": 1, "for": {"_count": 1}}, "then": {"_count": 1, "lifted": {"_count": 1}}, "whispered": {"_count": 1, "shoving": {"_count": 1}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "was": {"_count": 1, "watching": {"_count": 1}}, "contemptuously": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Ern": {"_count": 1}, "": {"_count": 1}}, "passed": {"_count": 1, "Harrys": {"_count": 1}}, "came": {"_count": 1, "back": {"_count": 1}}, "happily": {"_count": 2, "as": {"_count": 1}, "answering": {"_count": 1}}, "threw": {"_count": 1, "her": {"_count": 1}}, "had": {"_count": 1, "unfurled": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 1, "one": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "swiveled": {"_count": 1, "in": {"_count": 1}}, "weakly": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "rubbing": {"_count": 1}}, "continued": {"_count": 1, "in": {"_count": 1}}, "examining": {"_count": 1, "the": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "put": {"_count": 1, "the": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "remembered": {"_count": 1, "that": {"_count": 1}}, "clapping": {"_count": 1, "his": {"_count": 1}}, "lower": {"_count": 1, "his": {"_count": 1}}, "wasnt": {"_count": 1, "paying": {"_count": 1}}, "shouted": {"_count": 2, "Blimey": {"_count": 1}, "gleefully": {"_count": 1}}, "leapt": {"_count": 1, "onto": {"_count": 1}}, "and": {"_count": 2, "Ern": {"_count": 2}}, "beaming": {"_count": 1, "at": {"_count": 1}}, "eleven": {"_count": 1, "Sickles": {"_count": 1}}, "brightly": {"_count": 1, "swaying": {"_count": 1}}, "ushering": {"_count": 1, "the": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "a": {"_count": 1, "scapegoat": {"_count": 1}}, "ExpelliarmusV": {"_count": 1, "Harry": {"_count": 1}}, "or": {"_count": 1, "not": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}}, "Shunpike": {"_count": 19, "and": {"_count": 3, "I": {"_count": 1}, "he": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 1, "only": {"_count": 1}}, "the": {"_count": 1, "conductor": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Lupin": {"_count": 1}, "Ron": {"_count": 1}}, "conductor": {"_count": 1, "on": {"_count": 1}}, "21": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "Death": {"_count": 1}}, "are": {"_count": 1, "they": {"_count": 1}}, "for": {"_count": 1, "instance": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "Stan": {"_count": 1, "ExpelliarmusV": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "es": {"_count": 1, "put": {"_count": 1}}}, "eve": {"_count": 4, "The": {"_count": 1, "conductor": {"_count": 1}}, "of": {"_count": 3, "his": {"_count": 1}, "our": {"_count": 1}, "their": {"_count": 1}}}, "eighteen": {"_count": 9, "or": {"_count": 2, "nineteen": {"_count": 1}, "something": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "ninety": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "years": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "invited": {"_count": 1}}}, "protruding": {"_count": 19, "ears": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 13, "the": {"_count": 5}, "his": {"_count": 1}, "under": {"_count": 2}, "its": {"_count": 2}, "underneath": {"_count": 1}, "between": {"_count": 1}, "it": {"_count": 1}}, "vertically": {"_count": 1, "out": {"_count": 1}}, "along": {"_count": 1, "it": {"_count": 1}}, "over": {"_count": 1, "Rons": {"_count": 1}}, "root": {"_count": 1, "because": {"_count": 1}}, "several": {"_count": 1, "feet": {"_count": 1}}}, "pimples": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "went": {"_count": 1, "white": {"_count": 1}}, "were": {"_count": 1, "visible": {"_count": 1}}, "half": {"_count": 1, "immersed": {"_count": 1}}, "still": {"_count": 1, "etched": {"_count": 1}}}, "professional": {"_count": 3, "manner": {"_count": 1, "": {"_count": 1}}, "opinion": {"_count": 1, "": {"_count": 1}}, "interest": {"_count": 1, "": {"_count": 1}}}, "Fell": {"_count": 1, "over": {"_count": 1, "said": {"_count": 1}}}, "Choo": {"_count": 3, "fall": {"_count": 1, "over": {"_count": 1}}, "lookin": {"_count": 1, "at": {"_count": 1}}, "say": {"_count": 1, "is": {"_count": 1}}}, "Buss": {"_count": 2, "headlamps": {"_count": 1, "were": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}}, "headlamps": {"_count": 1, "were": {"_count": 1, "flooding": {"_count": 1}}}, "Stans": {"_count": 5, "eyes": {"_count": 1, "move": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}, "pimples": {"_count": 1, "went": {"_count": 1}}, "shoulder": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "himself": {"_count": 1}}}, "Woss": {"_count": 2, "that": {"_count": 1, "on": {"_count": 1}}, "your": {"_count": 1, "name": {"_count": 1}}}, "ead": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "flattening": {"_count": 7, "his": {"_count": 2, "hair": {"_count": 1}, "fringe": {"_count": 1}}, "the": {"_count": 1, "little": {"_count": 1}}, "her": {"_count": 1, "ears": {"_count": 1}}, "a": {"_count": 1, "nearby": {"_count": 1}}, "it": {"_count": 1, "down": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "persisted": {"_count": 14, "": {"_count": 5, ".": {"_count": 5}}, "into": {"_count": 1, "December": {"_count": 1}}, "Kingsley": {"_count": 1, "specially": {"_count": 1}}, "so": {"_count": 1, "rather": {"_count": 1}}, "in": {"_count": 2, "reminding": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "most": {"_count": 1}}, "why": {"_count": 1, "on": {"_count": 1}}, "here": {"_count": 1, "too": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "Yep": {"_count": 16, "said": {"_count": 15, "Stan": {"_count": 2}, "Harry": {"_count": 4}, "Moody": {"_count": 1}, "Fred": {"_count": 3}, "Sirius": {"_count": 2}, "Hagrid": {"_count": 3}}, "nine": {"_count": 1, "\u2018Outstandings": {"_count": 1}}}, "longs": {"_count": 2, "its": {"_count": 1, "on": {"_count": 1}}, "this": {"_count": 1, "been": {"_count": 1}}}, "nuffink": {"_count": 3, "underwater": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "don": {"_count": 1}}, "very": {"_count": 1, "nice": {"_count": 1}}}, "underwater": {"_count": 14, "": {"_count": 4, ".": {"_count": 1}, "?": {"_count": 3}}, "renditions": {"_count": 1, "of": {"_count": 1}}, "then": {"_count": 1, "it": {"_count": 1}}, "creatures": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 1, "live": {"_count": 1}}, "exploits": {"_count": 1, "in": {"_count": 1}}, "survival": {"_count": 1, "": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "safe": {"_count": 1, "in": {"_count": 1}}}, "Ere": {"_count": 4, "he": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 1, "go": {"_count": 1}}, "its": {"_count": 1, "Arry": {"_count": 1}}, "maam": {"_count": 1, "Through": {"_count": 1}}}, "flag": {"_count": 5, "us": {"_count": 1, "down": {"_count": 1}}, "and": {"_count": 1, "there": {"_count": 1}}, "white": {"_count": 1, "green": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}}, "dincha": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "Stuck": {"_count": 2, "out": {"_count": 1, "your": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}}, "firteen": {"_count": 1, "you": {"_count": 1, "get": {"_count": 1}}}, "ot": {"_count": 2, "chocolate": {"_count": 1, "and": {"_count": 1}}, "water": {"_count": 1, "bottle": {"_count": 1}}}, "toofbrush": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "bedsteads": {"_count": 2, "stood": {"_count": 1, "beside": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "curtained": {"_count": 8, "windows": {"_count": 4, "": {"_count": 2}, "made": {"_count": 1}, "and": {"_count": 1}}, "room": {"_count": 1, "lit": {"_count": 1}}, "the": {"_count": 1, "lamps": {"_count": 1}}, "window": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}}, "Candles": {"_count": 2, "were": {"_count": 1, "burning": {"_count": 1}}, "floated": {"_count": 1, "in": {"_count": 1}}}, "brackets": {"_count": 5, "beside": {"_count": 1, "each": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "set": {"_count": 1, "at": {"_count": 1}}}, "illuminating": {"_count": 15, "the": {"_count": 8, "woodpaneled": {"_count": 1}, "grass": {"_count": 1}, "golden": {"_count": 1}, "ground": {"_count": 1}, "hall": {"_count": 1}, "silvery": {"_count": 1}, "papers": {"_count": 1}, "whole": {"_count": 1}}, "Lupins": {"_count": 1, "gray": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "not": {"_count": 1, "enjoyable": {"_count": 1}}, "note": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "and": {"_count": 1, "alarming": {"_count": 1}}}, "woodpaneled": {"_count": 2, "walls": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "windowless": {"_count": 1}}}, "pickling": {"_count": 1, "some": {"_count": 1, "slugs": {"_count": 1}}}, "ave": {"_count": 28, "this": {"_count": 1, "one": {"_count": 1}}, "finished": {"_count": 1, "wiz": {"_count": 1}}, "two": {"_count": 1, "champions": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 1, "been": {"_count": 1}}, "ice": {"_count": 1, "sculptures": {"_count": 1}}, "choirs": {"_count": 1, "of": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "nevair": {"_count": 1, "been": {"_count": 1}}, "I": {"_count": 1, "ave": {"_count": 1}}, "big": {"_count": 1, "bones": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "wait": {"_count": 1}}, "ter": {"_count": 1, "do": {"_count": 1}}, "left": {"_count": 1, "said": {"_count": 1}}, "been": {"_count": 4, "longing": {"_count": 1}, "careless": {"_count": 1}, "to": {"_count": 1}, "working": {"_count": 1}}, "almost": {"_count": 1, "decided": {"_count": 1}}, "always": {"_count": 1, "said": {"_count": 1}}, "ad": {"_count": 1, "champagne": {"_count": 1}}, "met": {"_count": 1, "my": {"_count": 1}}, "Monsieur": {"_count": 1, "Delacour": {"_count": 1}}, "a": {"_count": 1, "leetle": {"_count": 1}}, "em": {"_count": 1, "Its": {"_count": 1}}, "you": {"_count": 1, "ginger": {"_count": 1}}, "caught": {"_count": 1, "a": {"_count": 1}}}, "shoving": {"_count": 13, "Harrys": {"_count": 1, "trunk": {"_count": 1}}, "the": {"_count": 4, "chart": {"_count": 1}, "occupants": {"_count": 1}, "necklace": {"_count": 1}, "tray": {"_count": 1}}, "ajar": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "sheaf": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "schedule": {"_count": 1}}, "Ron": {"_count": 2, "roughly": {"_count": 1}, "and": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}}, "driver": {"_count": 10, "who": {"_count": 1, "was": {"_count": 1}}, "Ernie": {"_count": 1, "Prang": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "excuse": {"_count": 1, "me": {"_count": 1}}, "carrying": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "front": {"_count": 1}}, "a": {"_count": 1, "surprisingly": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Prang": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "an": {"_count": 1, "elderly": {"_count": 1}}, "driver": {"_count": 1, "of": {"_count": 1}}}, "Ern": {"_count": 25, "": {"_count": 15, ".": {"_count": 3}, "?": {"_count": 9}, "!": {"_count": 3}}, "said": {"_count": 1, "Stan": {"_count": 1}}, "stamped": {"_count": 1, "on": {"_count": 1}}, "darkly": {"_count": 1, "": {"_count": 1}}, "jerked": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "slammed": {"_count": 1, "on": {"_count": 1}}, "come": {"_count": 1, "ere": {"_count": 1}}, "appeared": {"_count": 1, "carrying": {"_count": 1}}, "as": {"_count": 1, "Tom": {"_count": 1}}, "I": {"_count": 1, "said": {"_count": 1}}}, "elderly": {"_count": 11, "wizard": {"_count": 1, "wearing": {"_count": 1}}, "and": {"_count": 1, "feeble": {"_count": 1}}, "man": {"_count": 2, "dressed": {"_count": 1}, "had": {"_count": 1}}, "witch": {"_count": 5, "with": {"_count": 2}, "clutching": {"_count": 1}, "whose": {"_count": 1}, "wearing": {"_count": 1}}, "witches": {"_count": 1, "in": {"_count": 1}}, "warlocks": {"_count": 1, "deep": {"_count": 1}}}, "tremendous": {"_count": 6, "BANG": {"_count": 2, "and": {"_count": 1}, "they": {"_count": 1}}, "grunting": {"_count": 1, "snore": {"_count": 1}}, "force": {"_count": 1, "and": {"_count": 1}}, "speed": {"_count": 1, "then": {"_count": 1}}, "scandal": {"_count": 1, "": {"_count": 1}}}, "enjoyment": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "they": {"_count": 1}}, "stretching": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 1, "Professor": {"_count": 1}}, "drinking": {"_count": 1, "in": {"_count": 1}}}, "Wales": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "lost": {"_count": 1, "to": {"_count": 1}}, "can": {"_count": 1, "make": {"_count": 1}}}, "Ar": {"_count": 10, "said": {"_count": 2, "Ernie": {"_count": 1}, "Ern": {"_count": 1}}, "maybe": {"_count": 1, "shes": {"_count": 1}}, "hes": {"_count": 1, "righ": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 2, "had": {"_count": 1}, "always": {"_count": 1}}, "well": {"_count": 1, "then": {"_count": 1}}, "he": {"_count": 1, "left": {"_count": 1}}, "not": {"_count": 1, "bad": {"_count": 1}}}, "contemptuously": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "to": {"_count": 1, "Bagman": {"_count": 1}}, "throwing": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Surely": {"_count": 1, "even": {"_count": 1}}}, "Marsh": {"_count": 5, "Stan": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Stan": {"_count": 1}}, "clamped": {"_count": 1, "a": {"_count": 1}}, "off": {"_count": 1, "first": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "Abergavenny": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "lampposts": {"_count": 2, "mailboxes": {"_count": 1, "and": {"_count": 1}}, "bent": {"_count": 1, "horrible": {"_count": 1}}}, "mailboxes": {"_count": 1, "and": {"_count": 1, "trash": {"_count": 1}}}, "brake": {"_count": 3, "and": {"_count": 1, "the": {"_count": 1}}, "Professor": {"_count": 1, "sorry": {"_count": 1}}, "but": {"_count": 1, "with": {"_count": 1}}}, "lane": {"_count": 33, "trees": {"_count": 1, "leaping": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 2}, "them": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "was": {"_count": 2, "leading": {"_count": 1}, "bordered": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "beside": {"_count": 1, "Dumbledore": {"_count": 1}}, "that": {"_count": 1, "led": {"_count": 1}}, "following": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "bordered": {"_count": 1, "by": {"_count": 1}}, "curved": {"_count": 2, "to": {"_count": 2}}, "to": {"_count": 2, "the": {"_count": 1}, "Hogsmeade": {"_count": 1}}, "his": {"_count": 1, "arms": {"_count": 1}}, "sleet": {"_count": 1, "coming": {"_count": 1}}, "and": {"_count": 2, "collided": {"_count": 1}, "given": {"_count": 1}}, "down": {"_count": 1, "which": {"_count": 1}}, "under": {"_count": 1, "a": {"_count": 1}}, "along": {"_count": 1, "which": {"_count": 1}}, "turned": {"_count": 1, "into": {"_count": 1}}}, "churned": {"_count": 3, "as": {"_count": 1, "he": {"_count": 1}}, "horribly": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 1, "Harry": {"_count": 1}}}, "unfurled": {"_count": 6, "a": {"_count": 1, "copy": {"_count": 1}}, "the": {"_count": 2, "second": {"_count": 1}, "newspaper": {"_count": 1}}, "clearing": {"_count": 1, "her": {"_count": 1}}, "themselves": {"_count": 1, "from": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "sunkenfaced": {"_count": 1, "man": {"_count": 1, "with": {"_count": 1}}}, "Stanley": {"_count": 2, "turned": {"_count": 1, "to": {"_count": 1}}, "Shunpike": {"_count": 1, "Stan": {"_count": 1}}}, "BLACK": {"_count": 8, "STILL": {"_count": 1, "AT": {"_count": 1}}, "WAS": {"_count": 1, "STANDING": {"_count": 1}}, "QUICK": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "TOUJOURS": {"_count": 1, "PUR": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Villain": {"_count": 1, "or": {"_count": 1}}, "IS": {"_count": 1, "RALLYING": {"_count": 1}}}, "LARGE": {"_count": 1, "Sirius": {"_count": 1, "Black": {"_count": 1}}}, "infamous": {"_count": 1, "prisoner": {"_count": 1, "ever": {"_count": 1}}}, "fortress": {"_count": 7, "is": {"_count": 2, "still": {"_count": 1}, "set": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "I": {"_count": 1, "watched": {"_count": 1}}, "jet": {"_count": 1, "black": {"_count": 1}}, "No": {"_count": 1, "he": {"_count": 1}}}, "eluding": {"_count": 1, "capture": {"_count": 1, "the": {"_count": 1}}}, "criticized": {"_count": 2, "by": {"_count": 1, "some": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}}, "Federation": {"_count": 1, "of": {"_count": 1, "Warlocks": {"_count": 1}}}, "informing": {"_count": 8, "the": {"_count": 4, "Muggle": {"_count": 1}, "Daily": {"_count": 1}, "headmaster": {"_count": 1}, "Minister": {"_count": 1}}, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}, "Harry": {"_count": 1, "that": {"_count": 1}}, "her": {"_count": 2, "that": {"_count": 2}}}, "Prime": {"_count": 107, "Minister": {"_count": 96, "of": {"_count": 5}, "is": {"_count": 1}, "was": {"_count": 4}, "could": {"_count": 5}, "felt": {"_count": 2}, "got": {"_count": 1}, "had": {"_count": 9}, "": {"_count": 17}, "listen": {"_count": 1}, "weakly": {"_count": 2}, "said": {"_count": 1}, "stiffly": {"_count": 1}, "with": {"_count": 2}, "and": {"_count": 2}, "remembered": {"_count": 1}, "in": {"_count": 1}, "breathlessly": {"_count": 1}, "why": {"_count": 1}, "warned": {"_count": 1}, "are": {"_count": 1}, "for": {"_count": 1}, "rather": {"_count": 1}, "that": {"_count": 1}, "hoarsely": {"_count": 1}, "did": {"_count": 3}, "now": {"_count": 2}, "I": {"_count": 1}, "groped": {"_count": 1}, "surreptitiously": {"_count": 1}, "nervously": {"_count": 1}, "he": {"_count": 1}, "furiously": {"_count": 2}, "standing": {"_count": 1}, "his": {"_count": 1}, "stopped": {"_count": 1}, "momentarily": {"_count": 1}, "weve": {"_count": 1}, "but": {"_count": 2}, "sank": {"_count": 1}, "you": {"_count": 1}, "distractedly": {"_count": 1}, "thought": {"_count": 1}, "politely": {"_count": 1}, "heard": {"_count": 1}, "drew": {"_count": 1}, "gets": {"_count": 1}, "hotly": {"_count": 1}, "lamely": {"_count": 1}, "anxiously": {"_count": 1}, "or": {"_count": 1}, "gazed": {"_count": 1}, "as": {"_count": 1}}, "Ministers": {"_count": 10, "assurance": {"_count": 1}, "pulse": {"_count": 1}, "heart": {"_count": 1}, "teacup": {"_count": 1}, "dismay": {"_count": 1}, "hand": {"_count": 1}, "whiskeyfree": {"_count": 1}, "backyard": {"_count": 1}, "first": {"_count": 1}, "windows": {"_count": 1}}, "seats": {"_count": 1, "": {"_count": 1}}}, "Ministers": {"_count": 19, "assurance": {"_count": 1, "that": {"_count": 1}}, "of": {"_count": 1, "Magic": {"_count": 1}}, "job": {"_count": 1, "even": {"_count": 1}}, "plan": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "statement": {"_count": 1, "was": {"_count": 1}}, "pulse": {"_count": 1, "quickened": {"_count": 1}}, "Herbert": {"_count": 1, "Chorley": {"_count": 1}}, "heart": {"_count": 1, "sank": {"_count": 1}}, "teacup": {"_count": 1, "into": {"_count": 1}}, "dismay": {"_count": 1, "however": {"_count": 1}}, "hand": {"_count": 1, "and": {"_count": 1}}, "whiskeyfree": {"_count": 1, "hand": {"_count": 1}}, "backyard": {"_count": 1, "And": {"_count": 1}}, "first": {"_count": 1, "foolish": {"_count": 1}}, "windows": {"_count": 1, "drifted": {"_count": 1}}, "tough": {"_count": 1, "stand": {"_count": 1}}, "life": {"_count": 1, "will": {"_count": 1}}, "yellow": {"_count": 1, "eyes": {"_count": 1}}}, "assurance": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "identity": {"_count": 11, "to": {"_count": 1, "anyone": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 3, "their": {"_count": 1}, "the": {"_count": 1}, "Lord": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 2}}, "before": {"_count": 1, "he": {"_count": 1}}, "were": {"_count": 1, "growing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}}, "massacre": {"_count": 1, "like": {"_count": 1, "that": {"_count": 1}}}, "shadowed": {"_count": 5, "eyes": {"_count": 3, "of": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "glinting": {"_count": 1}}}, "sunken": {"_count": 23, "face": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 3, "waxy": {"_count": 1}, "shadowed": {"_count": 1}, "full": {"_count": 1}}, "eyes": {"_count": 4, "": {"_count": 2}, "were": {"_count": 1}, "fixed": {"_count": 1}}, "gaze": {"_count": 1, "never": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "veined": {"_count": 1, "cheeks": {"_count": 1}}, "forming": {"_count": 1, "a": {"_count": 1}}, "pit": {"_count": 2, "": {"_count": 1}, "where": {"_count": 1}}, "floor": {"_count": 1, "Through": {"_count": 1}}, "cheeks": {"_count": 1, "her": {"_count": 1}}, "sightless": {"_count": 1, "eyes": {"_count": 1}}, "faces": {"_count": 1, "leering": {"_count": 1}}, "fleshless": {"_count": 1, "with": {"_count": 1}}, "into": {"_count": 1, "folds": {"_count": 1}}, "sockets": {"_count": 1, "": {"_count": 1}}, "yet": {"_count": 1, "almost": {"_count": 1}}}, "waxy": {"_count": 5, "white": {"_count": 1, "skin": {"_count": 1}}, "but": {"_count": 1, "handsome": {"_count": 1}}, "skin": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "oddly": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Scarylookin": {"_count": 1, "fing": {"_count": 1, "inee": {"_count": 1}}}, "fing": {"_count": 1, "inee": {"_count": 1, "": {"_count": 1}}}, "inee": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "Ern": {"_count": 1, "": {"_count": 1}}}, "witnesses": {"_count": 11, "an": {"_count": 1, "all": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "who": {"_count": 1, "saw": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "suffice": {"_count": 1, "": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "there": {"_count": 1}}, "alike": {"_count": 1, "": {"_count": 1}}}, "Broad": {"_count": 2, "daylight": {"_count": 1, "": {"_count": 1}}, "strips": {"_count": 1, "of": {"_count": 1}}}, "dinnit": {"_count": 1, "Ern": {"_count": 1, "": {"_count": 1}}}, "woz": {"_count": 1, "a": {"_count": 1, "big": {"_count": 1}}}, "YouKnowOo": {"_count": 4, "he": {"_count": 1, "said": {"_count": 1}}, "they": {"_count": 1, "say": {"_count": 1}}, "gone": {"_count": 1, "and": {"_count": 1}}, "ad": {"_count": 1, "taken": {"_count": 1}}}, "farmhouse": {"_count": 1, "had": {"_count": 1, "to": {"_count": 1}}}, "earts": {"_count": 1, "goin": {"_count": 1, "that": {"_count": 1}}}, "KnowOo": {"_count": 1, "Harry": {"_count": 1, "nervously": {"_count": 1}}}, "YouKnowOos": {"_count": 1, "supporters": {"_count": 1, "was": {"_count": 1}}}, "supporters": {"_count": 38, "was": {"_count": 2, "tracked": {"_count": 1}, "pouring": {"_count": 1}}, "but": {"_count": 1, "much": {"_count": 1}}, "sprinting": {"_count": 1, "onto": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "ended": {"_count": 1, "up": {"_count": 1}}, "were": {"_count": 2, "after": {"_count": 1}, "barely": {"_count": 1}}, "mounted": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "one": {"_count": 1}}, "rose": {"_count": 1, "in": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "called": {"_count": 1, "themselves": {"_count": 1}}, "Harry": {"_count": 1, "began": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "hiding": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}, "mind": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 2, "I": {"_count": 1}, "many": {"_count": 1}}, "mark": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "have": {"_count": 1, "broken": {"_count": 1}}, "below": {"_count": 1, "something": {"_count": 1}}, "against": {"_count": 1, "following": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}}, "tracked": {"_count": 13, "down": {"_count": 3, "wasnt": {"_count": 1}, "Slughorn": {"_count": 1}, "the": {"_count": 1}}, "him": {"_count": 4, "down": {"_count": 4}}, "Peter": {"_count": 1, "down": {"_count": 1}}, "her": {"_count": 1, "down": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "way": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}}, "wiv": {"_count": 2, "YouKnowOo": {"_count": 1, "gone": {"_count": 1}}, "em": {"_count": 1, "quiet": {"_count": 1}}}, "eard": {"_count": 1, "he": {"_count": 1, "thought": {"_count": 1}}}, "ed": {"_count": 1, "be": {"_count": 1, "secondin": {"_count": 1}}}, "secondin": {"_count": 1, "command": {"_count": 1, "once": {"_count": 1}}}, "ad": {"_count": 7, "taken": {"_count": 1, "over": {"_count": 1}}, "a": {"_count": 3, "job": {"_count": 1}, "business": {"_count": 1}, "different": {"_count": 1}}, "appened": {"_count": 1, "Ern": {"_count": 1}}, "im": {"_count": 1, "ere": {"_count": 1}}, "champagne": {"_count": 1, "": {"_count": 1}}}, "alf": {"_count": 1, "the": {"_count": 1, "street": {"_count": 1}}}, "Orrible": {"_count": 1, "eh": {"_count": 1, "": {"_count": 1}}}, "Laughed": {"_count": 1, "said": {"_count": 1, "Stan": {"_count": 1}}}, "reinforcements": {"_count": 3, "from": {"_count": 1, "the": {"_count": 1}}, "within": {"_count": 1, "fifteen": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}}, "anyfink": {"_count": 1, "still": {"_count": 1, "laughing": {"_count": 1}}}, "Cos": {"_count": 2, "es": {"_count": 1, "mad": {"_count": 1}}, "some": {"_count": 1, "son": {"_count": 1}}}, "es": {"_count": 4, "mad": {"_count": 1, "inee": {"_count": 1}}, "out": {"_count": 1, "said": {"_count": 1}}, "put": {"_count": 1, "a": {"_count": 1}}, "swollen": {"_count": 1, "maam": {"_count": 1}}}, "Inee": {"_count": 1, "mad": {"_count": 1, "": {"_count": 1}}}, "Serves": {"_count": 3, "him": {"_count": 2, "right": {"_count": 2}}, "you": {"_count": 1, "right": {"_count": 1}}}, "coverin": {"_count": 1, "it": {"_count": 1, "up": {"_count": 1}}}, "Ole": {"_count": 1, "street": {"_count": 1, "blown": {"_count": 1}}}, "appened": {"_count": 3, "Ern": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "to": {"_count": 1, "staying": {"_count": 1}}}, "Gas": {"_count": 4, "explosion": {"_count": 1, "grunted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "just": {"_count": 1, "along": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "breakout": {"_count": 13, "from": {"_count": 4, "Azkaban": {"_count": 4}}, "on": {"_count": 1, "Sirius": {"_count": 1}}, "BY": {"_count": 1, "ORDER": {"_count": 1}}, "has": {"_count": 1, "got": {"_count": 1}}, "had": {"_count": 1, "some": {"_count": 1}}, "of": {"_count": 1, "Bellatrix": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "which": {"_count": 1, "the": {"_count": 1}}}, "Frightenin": {"_count": 1, "eh": {"_count": 1, "": {"_count": 1}}}, "Talk": {"_count": 5, "about": {"_count": 4, "summat": {"_count": 1}, "paranoid": {"_count": 1}, "the": {"_count": 1}, "sour": {"_count": 1}}, "broke": {"_count": 1, "out": {"_count": 1}}}, "lad": {"_count": 7, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "But": {"_count": 1, "some": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}, "sang": {"_count": 1, "Slughorn": {"_count": 1}}}, "collywobbles": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "passengers": {"_count": 3, "in": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "staring": {"_count": 1, "down": {"_count": 1}}}, "Blew": {"_count": 2, "up": {"_count": 1, "is": {"_count": 1}}, "Pettigrew": {"_count": 1, "to": {"_count": 1}}}, "im": {"_count": 12, "ere": {"_count": 1, "on": {"_count": 1}}, "onest": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "goes": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 1}, "!": {"_count": 1}}, "a": {"_count": 1, "nice": {"_count": 1}}, "off": {"_count": 2, "call": {"_count": 1}, "e": {"_count": 1}}, "maam": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "weve": {"_count": 1}}}, "ere": {"_count": 10, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 3}, "?": {"_count": 1}}, "to": {"_count": 1, "improve": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}, "Greyback": {"_count": 1, "": {"_count": 1}}, "see": {"_count": 1, "the": {"_count": 1}}}, "dint": {"_count": 2, "we": {"_count": 1, "Ern": {"_count": 1}}, "tell": {"_count": 1, "us": {"_count": 1}}}, "E": {"_count": 69, "was": {"_count": 1, "tryin": {"_count": 1}}, "": {"_count": 52, ".": {"_count": 52}}, "cannot": {"_count": 1, "compete": {"_count": 1}}, "is": {"_count": 2, "too": {"_count": 1}, "always": {"_count": 1}}, "as": {"_count": 1, "ze": {"_count": 1}}, "George": {"_count": 1, "corrected": {"_count": 1}}, "for": {"_count": 1, "\u2018Exceeds": {"_count": 1}}, "in": {"_count": 1, "everything": {"_count": 1}}, "its": {"_count": 1, "A": {"_count": 1}}, "at": {"_count": 1, "N": {"_count": 1}}, "Dreadful": {"_count": 1, "D": {"_count": 1}}, "Charms": {"_count": 1, "E": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "History": {"_count": 1, "of": {"_count": 1}}, "Transfiguration": {"_count": 1, "E": {"_count": 1}}, "Harry": {"_count": 1, "read": {"_count": 1}}, "eez": {"_count": 1, "in": {"_count": 1}}}, "bravest": {"_count": 5, "people": {"_count": 1, "Harry": {"_count": 1}}, "were": {"_count": 1, "Prized": {"_count": 1}}, "and": {"_count": 2, "greatest": {"_count": 1}, "the": {"_count": 1}}, "man": {"_count": 1, "I": {"_count": 1}}}, "bushes": {"_count": 22, "and": {"_count": 4, "wastebaskets": {"_count": 1}, "dark": {"_count": 1}, "watch": {"_count": 1}, "set": {"_count": 1}}, "nearby": {"_count": 1, "": {"_count": 1}}, "aside": {"_count": 1, "searching": {"_count": 1}}, "winding": {"_count": 1, "ornamental": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "listening": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "where": {"_count": 1, "she": {"_count": 1}}, "standing": {"_count": 1, "either": {"_count": 1}}, "searching": {"_count": 1, "for": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "wastebaskets": {"_count": 1, "telephone": {"_count": 1, "booths": {"_count": 1}}}, "booths": {"_count": 1, "and": {"_count": 1, "trees": {"_count": 1}}}, "Anglesey": {"_count": 1, "to": {"_count": 1, "Aberdeen": {"_count": 1}}}, "Aberdeen": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "gowns": {"_count": 3, "and": {"_count": 2, "slippers": {"_count": 1}, "yawning": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "whereabouts": {"_count": 23, "in": {"_count": 1, "London": {"_count": 1}}, "so": {"_count": 1, "nobody": {"_count": 1}}, "to": {"_count": 2, "Voldemort": {"_count": 2}}, "Harry": {"_count": 2, "heard": {"_count": 1}, "felt": {"_count": 1}}, "are": {"_count": 1, "currently": {"_count": 1}}, "of": {"_count": 5, "your": {"_count": 1}, "the": {"_count": 2}, "Sirius": {"_count": 1}, "their": {"_count": 1}}, "after": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "conditions": {"_count": 1}}, "or": {"_count": 1, "tell": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "his": {"_count": 1, "parents": {"_count": 1}}}, "Righto": {"_count": 2, "said": {"_count": 1, "Stan": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}}, "Charing": {"_count": 4, "Cross": {"_count": 4, "Road": {"_count": 3}, "Ron": {"_count": 1}}}, "benches": {"_count": 26, "squeezing": {"_count": 1, "themselves": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "rising": {"_count": 2, "in": {"_count": 2}}, "he": {"_count": 1, "was": {"_count": 1}}, "opposite": {"_count": 1, "": {"_count": 1}}, "scraped": {"_count": 1, "as": {"_count": 1}}, "rose": {"_count": 1, "on": {"_count": 1}}, "of": {"_count": 2, "all": {"_count": 1}, "the": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "running": {"_count": 1, "all": {"_count": 1}}, "one": {"_count": 2, "by": {"_count": 2}}, "toward": {"_count": 2, "them": {"_count": 2}}, "in": {"_count": 2, "the": {"_count": 1}, "near": {"_count": 1}}, "were": {"_count": 1, "moved": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "brakes": {"_count": 2, "and": {"_count": 1, "the": {"_count": 1}}, "work": {"_count": 1, "": {"_count": 1}}}, "bucketful": {"_count": 1, "of": {"_count": 1, "ice": {"_count": 1}}}, "cascade": {"_count": 3, "into": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 2, "heavy": {"_count": 1}, "fake": {"_count": 1}}}, "didja": {"_count": 2, "call": {"_count": 1, "Neville": {"_count": 1}}, "get": {"_count": 1, "all": {"_count": 1}}}, "oo": {"_count": 7, "Neville": {"_count": 1, "is": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "wished": {"_count": 1, "to": {"_count": 1}}, "serenade": {"_count": 1, "us": {"_count": 1}}, "got": {"_count": 1, "on": {"_count": 1}}, "worry": {"_count": 1, "oo": {"_count": 1}}, "much": {"_count": 1, "": {"_count": 1}}}, "Es": {"_count": 1, "Arry": {"_count": 1, "Potter": {"_count": 1}}}, "lantern": {"_count": 14, "appeared": {"_count": 1, "through": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "dangling": {"_count": 1, "from": {"_count": 1}}, "lit": {"_count": 2, "trail": {"_count": 1}, "table": {"_count": 1}}, "flying": {"_count": 1, "overhead": {"_count": 1}}, "came": {"_count": 1, "swinging": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "was": {"_count": 1, "bobbing": {"_count": 1}}, "about": {"_count": 1, "Harry": {"_count": 1}}, "light": {"_count": 1, "Harry": {"_count": 1}}, "aloft": {"_count": 1, "Gregorovitch": {"_count": 1}}, "illuminated": {"_count": 1, "what": {"_count": 1}}}, "landlord": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "wizened": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "polishing": {"_count": 1}}}, "Beer": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "wait": {"_count": 1, "fer": {"_count": 1}}}, "Brandy": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Ow": {"_count": 6, "come": {"_count": 1, "you": {"_count": 1}}, "dare": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "kunnit": {"_count": 1, "nofe": {"_count": 1}}, "orrible": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}}, "owlish": {"_count": 1, "face": {"_count": 1, "peered": {"_count": 1}}}, "parlor": {"_count": 8, "please": {"_count": 1, "Tom": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "closing": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "door": {"_count": 2, "": {"_count": 1}, "opened": {"_count": 1}}}, "pointedly": {"_count": 13, "": {"_count": 7, ".": {"_count": 7}}, "at": {"_count": 3, "Dudley": {"_count": 1}, "Harry": {"_count": 2}}, "glared": {"_count": 1, "at": {"_count": 1}}, "waved": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "moved": {"_count": 1}}}, "Toms": {"_count": 3, "lantern": {"_count": 1, "and": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "muttered": {"_count": 1, "Riddle": {"_count": 1}}}, "indicating": {"_count": 21, "a": {"_count": 3, "chair": {"_count": 1}, "tartan": {"_count": 1}, "number": {"_count": 1}}, "that": {"_count": 3, "everybody": {"_count": 1}, "Harry": {"_count": 2}}, "Fred": {"_count": 1, "loads": {"_count": 1}}, "the": {"_count": 9, "large": {"_count": 1}, "stone": {"_count": 1}, "automatic": {"_count": 1}, "Sneakoscopes": {"_count": 1}, "newspaper": {"_count": 1}, "dark": {"_count": 1}, "seat": {"_count": 1}, "first": {"_count": 1}, "unconscious": {"_count": 1}}, "how": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 2, "and": {"_count": 2}}, "Nevilles": {"_count": 1, "bottom": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bumps": {"_count": 6, "rising": {"_count": 1, "up": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "erupted": {"_count": 1}}, "an": {"_count": 1, "bruises": {"_count": 1}}, "erupt": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "despite": {"_count": 26, "the": {"_count": 18, "glow": {"_count": 1}, "fact": {"_count": 7}, "sense": {"_count": 1}, "imminent": {"_count": 1}, "heat": {"_count": 1}, "complete": {"_count": 1}, "lateness": {"_count": 1}, "flowery": {"_count": 1}, "fire": {"_count": 1}, "freezing": {"_count": 1}, "twins": {"_count": 1}, "clear": {"_count": 1}}, "Rons": {"_count": 1, "frequent": {"_count": 1}}, "Mr": {"_count": 1, "Weasleys": {"_count": 1}}, "many": {"_count": 1, "reported": {"_count": 1}}, "Fudges": {"_count": 1, "assurances": {"_count": 1}}, "his": {"_count": 1, "rather": {"_count": 1}}, "your": {"_count": 1, "privileged": {"_count": 1}}, "teaching": {"_count": 1, "floors": {"_count": 1}}, "being": {"_count": 1, "unable": {"_count": 1}}}, "tossed": {"_count": 9, "it": {"_count": 1, "aside": {"_count": 1}}, "their": {"_count": 3, "hair": {"_count": 1}, "enormous": {"_count": 1}, "reptilian": {"_count": 1}}, "her": {"_count": 1, "hair": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "coin": {"_count": 1}}, "high": {"_count": 1, "on": {"_count": 1}}}, "bottlegreen": {"_count": 1, "suit": {"_count": 1, "and": {"_count": 1}}}, "innkeeper": {"_count": 3, "reappeared": {"_count": 1, "wearing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "put": {"_count": 1, "three": {"_count": 1}}}, "nightshirt": {"_count": 7, "and": {"_count": 3, "bearing": {"_count": 1}, "he": {"_count": 1}, "leaning": {"_count": 1}}, "Filch": {"_count": 1, "clutching": {"_count": 1}}, "but": {"_count": 1, "seemed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "His": {"_count": 1, "long": {"_count": 1}}}, "Running": {"_count": 7, "away": {"_count": 3, "from": {"_count": 1}, "when": {"_count": 1}, "are": {"_count": 1}}, "around": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "Daddy": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "at": {"_count": 1, "Ron": {"_count": 1}}}, "crumpet": {"_count": 5, "and": {"_count": 1, "pushed": {"_count": 1}}, "is": {"_count": 1, "to": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "while": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "blowingup": {"_count": 1, "of": {"_count": 1, "Miss": {"_count": 1}}}, "Marjorie": {"_count": 1, "Dursley": {"_count": 1, "": {"_count": 1}}}, "Accidental": {"_count": 4, "Magic": {"_count": 4, "Reversal": {"_count": 4}}}, "Reversal": {"_count": 4, "Squad": {"_count": 4, "were": {"_count": 1}, "to": {"_count": 1}, "you": {"_count": 1}, "Obliviator": {"_count": 1}}}, "dispatched": {"_count": 1, "to": {"_count": 1, "Privet": {"_count": 1}}}, "modified": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "her": {"_count": 2, "memory": {"_count": 2}}, "right": {"_count": 1, "now": {"_count": 1}}, "it": {"_count": 1, "makes": {"_count": 1}}, "his": {"_count": 1, "expression": {"_count": 1}}, "my": {"_count": 1, "parents": {"_count": 1}}}, "recollection": {"_count": 3, "of": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}}, "reaction": {"_count": 18, "of": {"_count": 1, "your": {"_count": 1}}, "and": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "he": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 3, "exactly": {"_count": 1}, "that": {"_count": 1}, "immediate": {"_count": 1}}, "that": {"_count": 1, "corridor": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "this": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}}, "unstuck": {"_count": 1, "his": {"_count": 1, "throat": {"_count": 1}}}, "calmed": {"_count": 4, "down": {"_count": 2, "said": {"_count": 1}, "Ill": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "down": {"_count": 1}}}, "occur": {"_count": 10, "to": {"_count": 8, "Harry": {"_count": 2}, "me": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 2}, "the": {"_count": 1}, "no": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "within": {"_count": 1, "minutes": {"_count": 1}}}, "Punishment": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "tally": {"_count": 1, "at": {"_count": 1, "all": {"_count": 1}}}, "dealings": {"_count": 2, "with": {"_count": 1, "the": {"_count": 1}}, "thank": {"_count": 1, "you": {"_count": 1}}}, "Circumstances": {"_count": 1, "change": {"_count": 1, "Harry": {"_count": 1}}}, "climate": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "panic": {"_count": 1}}}, "elevens": {"_count": 1, "free": {"_count": 1, "Harry": {"_count": 1}}}, "Fudges": {"_count": 36, "finger": {"_count": 1, "slipped": {"_count": 1}}, "feet": {"_count": 1, "move": {"_count": 1}}, "voice": {"_count": 5, "": {"_count": 1}, "stopped": {"_count": 1}, "started": {"_count": 1}, "say": {"_count": 1}, "she": {"_count": 1}}, "thick": {"_count": 1, "body": {"_count": 1}}, "face": {"_count": 3, "": {"_count": 3}}, "back": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "curious": {"_count": 1, "smile": {"_count": 1}}, "attitude": {"_count": 1, "though": {"_count": 1}}, "own": {"_count": 1, "office": {"_count": 1}}, "left": {"_count": 2, "she": {"_count": 1}, "cut": {"_count": 1}}, "right": {"_count": 2, "was": {"_count": 1}, "who": {"_count": 1}}, "plump": {"_count": 1, "face": {"_count": 1}}, "eye": {"_count": 2, "or": {"_count": 1}, "the": {"_count": 1}}, "office": {"_count": 3, "if": {"_count": 1}, "together": {"_count": 1}, "said": {"_count": 1}}, "hands": {"_count": 1, "was": {"_count": 1}}, "dearest": {"_count": 1, "ambition": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "blood": {"_count": 1, "pressure": {"_count": 1}}, "hand": {"_count": 1, "very": {"_count": 1}}, "visits": {"_count": 1, "so": {"_count": 1}}, "kindly": {"_count": 1, "explanation": {"_count": 1}}, "arrival": {"_count": 1, "": {"_count": 1}}, "assurances": {"_count": 1, "at": {"_count": 1}}, "idea": {"_count": 1, "originally": {"_count": 1}}}, "comfortablelooking": {"_count": 1, "bed": {"_count": 1, "some": {"_count": 1}}}, "Arrived": {"_count": 1, "about": {"_count": 1, "five": {"_count": 1}}}, "stroking": {"_count": 19, "Hedwig": {"_count": 1, "": {"_count": 1}}, "Fang": {"_count": 1, "with": {"_count": 1}}, "her": {"_count": 4, "back": {"_count": 1}, "": {"_count": 1}, "hair": {"_count": 2}}, "it": {"_count": 1, "": {"_count": 1}}, "Buckbeak": {"_count": 1, "who": {"_count": 1}}, "Hedwigs": {"_count": 1, "head": {"_count": 1}}, "Fawkess": {"_count": 1, "plumed": {"_count": 1}}, "his": {"_count": 3, "pointed": {"_count": 1}, "beard": {"_count": 1}, "Mimbulus": {"_count": 1}}, "Bills": {"_count": 1, "nose": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "Malfoys": {"_count": 1}}, "the": {"_count": 2, "angry": {"_count": 1}, "snakes": {"_count": 1}}, "Naginis": {"_count": 1, "head": {"_count": 1}}}, "Dursleyfree": {"_count": 1, "weeks": {"_count": 1, "": {"_count": 1}}}, "removing": {"_count": 8, "his": {"_count": 3, "glasses": {"_count": 1}, "orange": {"_count": 1}, "eyes": {"_count": 1}}, "a": {"_count": 1, "rusty": {"_count": 1}}, "the": {"_count": 2, "sheet": {"_count": 1}, "old": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}, "it": {"_count": 1, "but": {"_count": 1}}}, "LEAKY": {"_count": 1, "CAULDRON": {"_count": 1, "It": {"_count": 1}}}, "CAULDRON": {"_count": 2, "It": {"_count": 1, "took": {"_count": 1}}, "KEEPS": {"_count": 1, "POTIONS": {"_count": 1}}}, "fancied": {"_count": 10, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 4, "kip": {"_count": 1}, "walk": {"_count": 1}, "a": {"_count": 1}, "break": {"_count": 1}}, "finding": {"_count": 1, "out": {"_count": 1}}, "very": {"_count": 1, "much": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "herself": {"_count": 1, "sitting": {"_count": 1}}}, "venerablelooking": {"_count": 1, "wizards": {"_count": 1, "arguing": {"_count": 1}}}, "article": {"_count": 40, "in": {"_count": 3, "Transfiguration": {"_count": 1}, "there": {"_count": 1}, "question": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "!": {"_count": 1}}, "continuing": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "Cedric": {"_count": 1}}, "had": {"_count": 5, "appeared": {"_count": 4}, "caused": {"_count": 1}}, "about": {"_count": 5, "him": {"_count": 1}, "the": {"_count": 1}, "how": {"_count": 1}, "it": {"_count": 1}, "Snape": {"_count": 1}}, "last": {"_count": 1, "month": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "topped": {"_count": 1, "with": {"_count": 1}}, "shook": {"_count": 1, "in": {"_count": 1}}, "under": {"_count": 1, "Hermione": {"_count": 1}}, "aloud": {"_count": 1, "": {"_count": 1}}, "sounded": {"_count": 1, "ten": {"_count": 1}}, "read": {"_count": 1, "SIRIUS": {"_count": 1}}, "on": {"_count": 2, "ancient": {"_count": 1}, "recent": {"_count": 1}}, "Percy": {"_count": 1, "had": {"_count": 1}}, "two": {"_count": 1, "Muggles": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "continued": {"_count": 1}}, "echoed": {"_count": 1, "in": {"_count": 1}}}, "woollen": {"_count": 1, "balaclava": {"_count": 1, "": {"_count": 1}}}, "backyard": {"_count": 4, "take": {"_count": 1, "out": {"_count": 1}}, "And": {"_count": 1, "as": {"_count": 1}}, "to": {"_count": 1, "await": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "exploring": {"_count": 2, "the": {"_count": 1, "shops": {"_count": 1}}, "but": {"_count": 1, "something": {"_count": 1}}}, "umbrellas": {"_count": 4, "outside": {"_count": 1, "cafes": {"_count": 1}}, "being": {"_count": 1, "whipped": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "remembering": {"_count": 1, "how": {"_count": 1}}}, "cafes": {"_count": 2, "where": {"_count": 1, "his": {"_count": 1}}, "light": {"_count": 1, "": {"_count": 1}}}, "diners": {"_count": 1, "were": {"_count": 1, "showing": {"_count": 1}}}, "purchases": {"_count": 2, "its": {"_count": 1, "a": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}}, "lunascope": {"_count": 2, "old": {"_count": 1, "boy": {"_count": 1}}, "and": {"_count": 1, "throwing": {"_count": 1}}}, "charts": {"_count": 7, "see": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "Astronomy": {"_count": 1}}, "rune": {"_count": 1, "dictionaries": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}, "and": {"_count": 1, "predictions": {"_count": 1}}, "before": {"_count": 1, "dinner": {"_count": 1}}, "anymore": {"_count": 1, "Jets": {"_count": 1}}}, "Florean": {"_count": 7, "Fortescues": {"_count": 3, "Ice": {"_count": 3}}, "Fortescue": {"_count": 3, "himself": {"_count": 1}, "had": {"_count": 1}, "Remus": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Fortescues": {"_count": 3, "Ice": {"_count": 3, "Cream": {"_count": 3}}}, "Ice": {"_count": 4, "Cream": {"_count": 3, "Parlor": {"_count": 3}}, "Mice": {"_count": 1, "hear": {"_count": 1}}}, "Parlor": {"_count": 3, "finishing": {"_count": 1, "all": {"_count": 1}}, "Ron": {"_count": 1, "looking": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "occasional": {"_count": 15, "help": {"_count": 1, "from": {"_count": 1}}, "leprechaun": {"_count": 1, "lantern": {"_count": 1}}, "treats": {"_count": 1, "": {"_count": 1}}, "drop": {"_count": 1, "of": {"_count": 1}}, "firework": {"_count": 1, "still": {"_count": 1}}, "rustle": {"_count": 2, "as": {"_count": 1}, "of": {"_count": 1}}, "outbursts": {"_count": 1, "of": {"_count": 1}}, "creak": {"_count": 1, "of": {"_count": 1}}, "grunt": {"_count": 1, "or": {"_count": 1}}, "appearances": {"_count": 1, "apart": {"_count": 1}}, "side": {"_count": 1, "effects": {"_count": 1}}, "spurts": {"_count": 1, "of": {"_count": 1}}, "birds": {"_count": 1, "and": {"_count": 1}}, "sight": {"_count": 1, "of": {"_count": 1}}}, "Fortescue": {"_count": 7, "himself": {"_count": 1, "who": {"_count": 1}}, "had": {"_count": 1, "ever": {"_count": 1}}, "s": {"_count": 1, "choco": {"_count": 1}}, "that": {"_count": 1, "will": {"_count": 1}}, "Remus": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Ollivander": {"_count": 1}}, "was": {"_count": 1, "waving": {"_count": 1}}}, "burnings": {"_count": 1, "gave": {"_count": 1, "Harry": {"_count": 1}}}, "sundaes": {"_count": 2, "every": {"_count": 1, "half": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}}, "refilled": {"_count": 6, "his": {"_count": 1, "money": {"_count": 1}}, "their": {"_count": 1, "glasses": {"_count": 1}}, "Hagrids": {"_count": 1, "mug": {"_count": 1}}, "it": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "goblet": {"_count": 1, "from": {"_count": 1}}}, "Gobstones": {"_count": 8, "a": {"_count": 1, "wizarding": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "watching": {"_count": 1}}, "and": {"_count": 1, "Nevilles": {"_count": 1}}, "Club": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "empty": {"_count": 1, "ingredient": {"_count": 1}}, "Ron": {"_count": 1, "said": {"_count": 1}}}, "squirt": {"_count": 2, "a": {"_count": 1, "nastysmelling": {"_count": 1}}, "will": {"_count": 1, "paralyze": {"_count": 1}}}, "nastysmelling": {"_count": 2, "liquid": {"_count": 1, "into": {"_count": 1}}, "ointment": {"_count": 1, "from": {"_count": 1}}}, "sorely": {"_count": 3, "tempted": {"_count": 1, "too": {"_count": 1}}, "miss": {"_count": 2, "An": {"_count": 1}, "": {"_count": 1}}}, "tempted": {"_count": 14, "too": {"_count": 1, "by": {"_count": 1}}, "to": {"_count": 8, "enter": {"_count": 1}, "try": {"_count": 1}, "sink": {"_count": 1}, "go": {"_count": 1}, "do": {"_count": 1}, "place": {"_count": 1}, "join": {"_count": 1}, "fight": {"_count": 1}}, "by": {"_count": 3, "the": {"_count": 2}, "this": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "galaxy": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "tested": {"_count": 15, "Harrys": {"_count": 1, "resolution": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "this": {"_count": 1, "early": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "traditions": {"_count": 1, "often": {"_count": 1}}, "in": {"_count": 1, "your": {"_count": 1}}, "them": {"_count": 2, "all": {"_count": 1}, "thoroughly": {"_count": 1}}, "on": {"_count": 1, "in": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "for": {"_count": 1, "poison": {"_count": 1}}, "much": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 1, "defenses": {"_count": 1}}, "by": {"_count": 1, "Dark": {"_count": 1}}}, "newly": {"_count": 17, "erected": {"_count": 1, "podium": {"_count": 1}}, "elected": {"_count": 1, "Head": {"_count": 1}}, "risen": {"_count": 1, "and": {"_count": 1}}, "sewn": {"_count": 1, "There": {"_count": 1}}, "materialized": {"_count": 1, "door": {"_count": 1}}, "created": {"_count": 1, "slide": {"_count": 1}}, "uncovered": {"_count": 1, "eye": {"_count": 1}}, "vacant": {"_count": 1, "positions": {"_count": 1}}, "reinstated": {"_count": 2, "headmaster": {"_count": 1}, "Chief": {"_count": 1}}, "unsmashed": {"_count": 1, "grandfather": {"_count": 1}}, "burning": {"_count": 1, "fire": {"_count": 1}}, "and": {"_count": 1, "happily": {"_count": 1}}, "repaired": {"_count": 1, "ribs": {"_count": 1}}, "appointed": {"_count": 1, "Muggleborn": {"_count": 1}}, "purchased": {"_count": 1, "spellbooks": {"_count": 1}}, "tapped": {"_count": 1, "spring": {"_count": 1}}}, "erected": {"_count": 4, "podium": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 1, "entrance": {"_count": 1}}, "outside": {"_count": 1, "Flourish": {"_count": 1}}}, "prototype": {"_count": 1, "a": {"_count": 1, "squarejawed": {"_count": 1}}}, "squarejawed": {"_count": 3, "wizard": {"_count": 2, "was": {"_count": 1}, "with": {"_count": 1}}, "witch": {"_count": 1, "with": {"_count": 1}}}, "companion": {"_count": 12, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 2, "found": {"_count": 1}, "fall": {"_count": 1}}, "each": {"_count": 1, "pair": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 1}, "said": {"_count": 1}}, "fell": {"_count": 1, "back": {"_count": 1}}, "his": {"_count": 1, "one": {"_count": 1}}, "unable": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "podgy": {"_count": 1}}, "roaring": {"_count": 1, "with": {"_count": 1}}}, "Irish": {"_count": 26, "International": {"_count": 2, "Sides": {"_count": 1}, "Keeper": {"_count": 1}}, "flag": {"_count": 1, "": {"_count": 1}}, "National": {"_count": 2, "Team": {"_count": 1}, "Quidditch": {"_count": 1}}, "Chasers": {"_count": 4, "zoom": {"_count": 1}, "were": {"_count": 2}, "and": {"_count": 1}}, "seats": {"_count": 1, "": {"_count": 1}}, "crowd": {"_count": 1, "and": {"_count": 1}}, "supporters": {"_count": 4, "as": {"_count": 1}, "were": {"_count": 1}, "rose": {"_count": 1}, "at": {"_count": 1}}, "Beater": {"_count": 1, "Quigley": {"_count": 1}}, "Seeker": {"_count": 1, "had": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "players": {"_count": 1, "were": {"_count": 1}}, "national": {"_count": 1, "anthem": {"_count": 1}}, "team": {"_count": 3, "performs": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}}, "theyve": {"_count": 1, "got": {"_count": 1}}, "mascots": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 1, "League": {"_count": 1}}}, "Sides": {"_count": 1, "just": {"_count": 1, "put": {"_count": 1}}}, "beauties": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "proprietor": {"_count": 2, "of": {"_count": 2, "the": {"_count": 2}}}, "FIREBOLT": {"_count": 2, "This": {"_count": 1, "stateoftheart": {"_count": 1}}, "Harry": {"_count": 1, "didnt": {"_count": 1}}}, "stateoftheart": {"_count": 1, "racing": {"_count": 1, "broom": {"_count": 1}}}, "superfine": {"_count": 1, "handle": {"_count": 1, "of": {"_count": 1}}}, "diamondhard": {"_count": 1, "polish": {"_count": 1, "and": {"_count": 1}}}, "handnumbered": {"_count": 1, "with": {"_count": 1, "its": {"_count": 1}}}, "registration": {"_count": 4, "number": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}}, "individually": {"_count": 2, "selected": {"_count": 1, "birch": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "selected": {"_count": 9, "birch": {"_count": 1, "twig": {"_count": 1}}, "to": {"_count": 1, "represent": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "champions": {"_count": 2}}, "had": {"_count": 1, "dissolved": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "shorter": {"_count": 1}}}, "birch": {"_count": 3, "twig": {"_count": 1, "in": {"_count": 1}}, "twigs": {"_count": 1, "that": {"_count": 1}}, "rod": {"_count": 1, "": {"_count": 1}}}, "broomtail": {"_count": 1, "has": {"_count": 1, "been": {"_count": 1}}}, "honed": {"_count": 3, "to": {"_count": 1, "aerodynamic": {"_count": 1}}, "by": {"_count": 1, "careful": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}}, "aerodynamic": {"_count": 1, "perfection": {"_count": 1, "giving": {"_count": 1}}}, "perfection": {"_count": 2, "giving": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}}, "Firebolt": {"_count": 109, "unsurpassable": {"_count": 1, "balance": {"_count": 1}}, "has": {"_count": 1, "an": {"_count": 1}}, "would": {"_count": 1, "cost": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 25, ".": {"_count": 18}, "?": {"_count": 4}, "!": {"_count": 3}}, "he": {"_count": 3, "also": {"_count": 1}, "needed": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 16, "was": {"_count": 1}, "the": {"_count": 1}, "it": {"_count": 1}, "holding": {"_count": 1}, "kicked": {"_count": 2}, "he": {"_count": 1}, "there": {"_count": 1}, "try": {"_count": 1}, "struggling": {"_count": 1}, "Quidditch": {"_count": 1}, "Freds": {"_count": 1}, "pushing": {"_count": 1}, "his": {"_count": 2}, "Hedwigs": {"_count": 1}}, "identical": {"_count": 1, "to": {"_count": 1}}, "taking": {"_count": 1, "in": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "which": {"_count": 3, "he": {"_count": 1}, "from": {"_count": 1}, "Harry": {"_count": 1}}, "however": {"_count": 1, "there": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "now": {"_count": 3, "but": {"_count": 1}, "Scabbers": {"_count": 1}, "yer": {"_count": 1}}, "was": {"_count": 4, "nothing": {"_count": 1}, "now": {"_count": 1}, "passed": {"_count": 1}, "slowing": {"_count": 1}}, "for": {"_count": 2, "Christmas": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 2, "our": {"_count": 1}, "each": {"_count": 1}}, "after": {"_count": 2, "every": {"_count": 1}, "theyd": {"_count": 1}}, "back": {"_count": 2, "upstairs": {"_count": 1}, "": {"_count": 1}}, "as": {"_count": 1, "everyone": {"_count": 1}}, "turned": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "deserved": {"_count": 1, "a": {"_count": 1}}, "closely": {"_count": 1, "Penelope": {"_count": 1}}, "down": {"_count": 1, "again": {"_count": 1}}, "zoomed": {"_count": 2, "higher": {"_count": 1}, "toward": {"_count": 1}}, "that": {"_count": 2, "Harry": {"_count": 1}, "it": {"_count": 1}}, "incidentally": {"_count": 1, "has": {"_count": 1}}, "forward": {"_count": 1, "as": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "upward": {"_count": 2, "and": {"_count": 1}, "at": {"_count": 1}}, "over": {"_count": 3, "his": {"_count": 3}}, "had": {"_count": 1, "driven": {"_count": 1}}, "sharply": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 3, "and": {"_count": 1}, "bent": {"_count": 1}, "he": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "downward": {"_count": 1, "but": {"_count": 1}}, "Ha": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "broomstick": {"_count": 1}}, "hurtling": {"_count": 1, "toward": {"_count": 1}}, "feeling": {"_count": 1, "more": {"_count": 1}}, "though": {"_count": 1, "a": {"_count": 1}}, "gripped": {"_count": 1, "its": {"_count": 1}}, "toward": {"_count": 1, "Ron": {"_count": 1}}, "because": {"_count": 1, "Umbridge": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "under": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}}, "unsurpassable": {"_count": 1, "balance": {"_count": 1, "and": {"_count": 1}}}, "balance": {"_count": 11, "and": {"_count": 3, "pinpoint": {"_count": 1}, "nearly": {"_count": 1}, "looked": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}, "then": {"_count": 2, "between": {"_count": 1}, "he": {"_count": 1}}, "by": {"_count": 1, "seizing": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "precariously": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "pinpoint": {"_count": 2, "precision": {"_count": 1, "": {"_count": 1}}, "turning": {"_count": 1, "": {"_count": 1}}}, "precision": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "acceleration": {"_count": 4, "of": {"_count": 1, "150": {"_count": 1}}, "and": {"_count": 1, "its": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "150": {"_count": 1, "miles": {"_count": 1, "an": {"_count": 1}}}, "incorporates": {"_count": 1, "an": {"_count": 1, "unbreakable": {"_count": 1}}}, "unbreakable": {"_count": 1, "Braking": {"_count": 1, "Charm": {"_count": 1}}}, "Braking": {"_count": 1, "Charm": {"_count": 1, "": {"_count": 1}}}, "Price": {"_count": 2, "on": {"_count": 2, "request": {"_count": 2}}}, "request": {"_count": 18, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 2}}, "to": {"_count": 2, "borrow": {"_count": 1}, "see": {"_count": 1}}, "again": {"_count": 1, "what": {"_count": 1}}, "a": {"_count": 1, "job": {"_count": 1}}, "for": {"_count": 1, "once": {"_count": 1}}, "the": {"_count": 2, "wall": {"_count": 1}, "goblin": {"_count": 1}}, "I": {"_count": 2, "made": {"_count": 1}, "could": {"_count": 1}}, "trays": {"_count": 1, "of": {"_count": 1}}, "please": {"_count": 1, "Dumbledore": {"_count": 1}}, "could": {"_count": 1, "a": {"_count": 1}}}, "replenish": {"_count": 1, "his": {"_count": 1, "store": {"_count": 1}}}, "embossed": {"_count": 5, "spellbooks": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 2}}, "symbols": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 1, "on": {"_count": 1}}}, "slabs": {"_count": 1, "there": {"_count": 1, "was": {"_count": 1}}}, "Torn": {"_count": 1, "pages": {"_count": 1, "were": {"_count": 1}}}, "grappled": {"_count": 2, "with": {"_count": 2, "each": {"_count": 1}, "possibilities": {"_count": 1}}}, "consulted": {"_count": 8, "it": {"_count": 1, "for": {"_count": 1}}, "Unfogging": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "large": {"_count": 1}, "map": {"_count": 1}}, "his": {"_count": 3, "watch": {"_count": 1}, "parchment": {"_count": 1}, "O": {"_count": 1}}, "her": {"_count": 1, "clipboard": {"_count": 1}}}, "listed": {"_count": 4, "as": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "Common": {"_count": 1}}, "the": {"_count": 1, "titles": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}}, "required": {"_count": 22, "book": {"_count": 1, "for": {"_count": 1}}, "a": {"_count": 2, "witness": {"_count": 1}, "lot": {"_count": 1}}, "to": {"_count": 10, "do": {"_count": 1}, "join": {"_count": 1}, "submit": {"_count": 2}, "attend": {"_count": 1}, "undergo": {"_count": 1}, "make": {"_count": 2}, "correctly": {"_count": 1}, "fill": {"_count": 1}}, "the": {"_count": 1, "use": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "enormous": {"_count": 1, "speed": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "results": {"_count": 1, "": {"_count": 1}}, "Potions": {"_count": 1, "grade": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "short": {"_count": 1}}, "an": {"_count": 1, "elf": {"_count": 1}}}, "manager": {"_count": 9, "came": {"_count": 1, "hurrying": {"_count": 1}}, "impatiently": {"_count": 1, "brushing": {"_count": 1}}, "poking": {"_count": 1, "the": {"_count": 1}}, "stripping": {"_count": 1, "off": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "lightly": {"_count": 1, "looking": {"_count": 1}}, "pressed": {"_count": 1, "Unfogging": {"_count": 1}}, "Harry": {"_count": 1, "doubted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "managers": {"_count": 2, "face": {"_count": 1, "": {"_count": 1}}, "called": {"_count": 1, "Mr": {"_count": 1}}}, "rent": {"_count": 8, "the": {"_count": 4, "air": {"_count": 3}, "still": {"_count": 1}}, "by": {"_count": 2, "a": {"_count": 2}}, "on": {"_count": 1, "a": {"_count": 1}}, "apart": {"_count": 1, "": {"_count": 1}}}, "bedlam": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Invisible": {"_count": 2, "Book": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "anyone": {"_count": 1}}}, "Unfogging": {"_count": 10, "the": {"_count": 10, "Future": {"_count": 10}}}, "Future": {"_count": 10, "by": {"_count": 1, "Cassandra": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 1}, "down": {"_count": 1}}, "open": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 1, "ideas": {"_count": 1}}}, "Cassandra": {"_count": 3, "Vablatsky": {"_count": 1, "": {"_count": 1}}, "Trelawney": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}}, "Vablatsky": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "stripping": {"_count": 5, "off": {"_count": 3, "his": {"_count": 2}, "with": {"_count": 1}}, "themselves": {"_count": 1, "away": {"_count": 1}}, "down": {"_count": 1, "Deluminators": {"_count": 1}}}, "volumes": {"_count": 4, "such": {"_count": 1, "as": {"_count": 1}}, "about": {"_count": 1, "famous": {"_count": 1}}, "with": {"_count": 1, "names": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}}, "Predicting": {"_count": 1, "the": {"_count": 1, "Unpredictable": {"_count": 1}}}, "Unpredictable": {"_count": 1, "Insulate": {"_count": 1, "Yourself": {"_count": 1}}}, "Insulate": {"_count": 1, "Yourself": {"_count": 1, "Against": {"_count": 1}}}, "Yourself": {"_count": 1, "Against": {"_count": 1, "Shocks": {"_count": 1}}}, "Shocks": {"_count": 2, "and": {"_count": 1, "Broken": {"_count": 1}}, "you": {"_count": 1, "that": {"_count": 1}}}, "Balls": {"_count": 1, "When": {"_count": 1, "Fortunes": {"_count": 1}}}, "Fortunes": {"_count": 1, "Turn": {"_count": 1, "Foul": {"_count": 1}}}, "blackbound": {"_count": 1, "book": {"_count": 1, "": {"_count": 1}}}, "guide": {"_count": 7, "to": {"_count": 1, "all": {"_count": 1}}, "however": {"_count": 1, "Fridwulfas": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "ARTIFACT": {"_count": 1, "ACCIDENTS": {"_count": 1}}, "and": {"_count": 2, "friend": {"_count": 1}, "that": {"_count": 1}}}, "palmistry": {"_count": 4, "crystal": {"_count": 1, "balls": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}}, "entrails": {"_count": 2, "But": {"_count": 1, "Harry": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}}, "Omens": {"_count": 2, "What": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "Flourish": {"_count": 1}}}, "lightly": {"_count": 28, "looking": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "onto": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "said": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "an": {"_count": 1}, "Hermione": {"_count": 1}}, "folding": {"_count": 1, "up": {"_count": 1}}, "on": {"_count": 2, "top": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "in": {"_count": 2, "an": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 3, "a": {"_count": 1}, "though": {"_count": 1}, "vapor": {"_count": 1}}}, "omens": {"_count": 7, "everywhere": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "is": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "didn": {"_count": 1, "they": {"_count": 1}}, "were": {"_count": 1, "never": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}}, "dazedly": {"_count": 4, "consulting": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "Madam": {"_count": 1}}, "into": {"_count": 1, "space": {"_count": 1}}, "toward": {"_count": 1, "Harry": {"_count": 1}}}, "consulting": {"_count": 8, "his": {"_count": 2, "booklist": {"_count": 1}, "notes": {"_count": 1}}, "a": {"_count": 3, "list": {"_count": 2}, "piece": {"_count": 1}}, "her": {"_count": 3, "said": {"_count": 1}, "watch": {"_count": 1}, "notes": {"_count": 1}}}, "Intermediate": {"_count": 2, "Transfiguration": {"_count": 2, "and": {"_count": 2}}}, "bumping": {"_count": 8, "into": {"_count": 1, "several": {"_count": 1}}, "and": {"_count": 1, "swaying": {"_count": 1}}, "his": {"_count": 1, "lolling": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "blindly": {"_count": 1, "into": {"_count": 1}}, "along": {"_count": 1, "behind": {"_count": 1}}, "gently": {"_count": 1, "into": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}}, "tramped": {"_count": 4, "up": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "through": {"_count": 1}}, "across": {"_count": 1, "to": {"_count": 1}}}, "Somebody": {"_count": 20, "had": {"_count": 6, "been": {"_count": 1}, "removed": {"_count": 1}, "to": {"_count": 1}, "moved": {"_count": 1}, "seen": {"_count": 1}, "searched": {"_count": 1}}, "get": {"_count": 1, "Professor": {"_count": 1}}, "inside": {"_count": 2, "the": {"_count": 2}}, "slap": {"_count": 1, "the": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "was": {"_count": 1, "climbing": {"_count": 1}}, "else": {"_count": 1, "could": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "putting": {"_count": 1}}, "Stupefied": {"_count": 1, "a": {"_count": 1}}, "must": {"_count": 1, "ave": {"_count": 1}}, "let": {"_count": 1, "slip": {"_count": 1}}, "grunted": {"_count": 1, "appreciatively": {"_count": 1}}}, "buses": {"_count": 3, "rolling": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 1, "trains": {"_count": 1}}, "rumbling": {"_count": 1, "along": {"_count": 1}}}, "defiantly": {"_count": 19, "": {"_count": 12, ".": {"_count": 12}}, "for": {"_count": 1, "now": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "swinging": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 2, "Ogden": {"_count": 1}, "Kreacher": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}}, "ogling": {"_count": 3, "the": {"_count": 1, "Firebolt": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "Dumbledore": {"_count": 1, "with": {"_count": 1}}}, "forgetful": {"_count": 5, "boy": {"_count": 2, "outside": {"_count": 1}, "who": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "when": {"_count": 1, "it": {"_count": 1}}}, "mislaid": {"_count": 1, "his": {"_count": 1, "booklist": {"_count": 1}}}, "formidablelooking": {"_count": 2, "grandmother": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "witch": {"_count": 1}}}, "freckly": {"_count": 3, "Hermione": {"_count": 1, "very": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "redhaired": {"_count": 1, "person": {"_count": 1}}}, "Ministryd": {"_count": 2, "do": {"_count": 1, "to": {"_count": 1}}, "be": {"_count": 1, "lookin": {"_count": 1}}}, "dig": {"_count": 5, "me": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 1, "something": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "himself": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 1, "grave": {"_count": 1}}}, "Brandnew": {"_count": 1, "wand": {"_count": 1, "": {"_count": 1}}}, "tailhair": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "purse": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "not": {"_count": 1, "with": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "took": {"_count": 1}}}, "innocently": {"_count": 9, "": {"_count": 1, ".": {"_count": 1}}, "curious": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "we": {"_count": 1}}, "casual": {"_count": 1, "sort": {"_count": 1}}, "straightening": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "dead": {"_count": 1, "lump": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "composedly": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Menagerie": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "had": {"_count": 1, "said": {"_count": 1}}}, "cages": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "were": {"_count": 1, "all": {"_count": 1}}, "each": {"_count": 1, "containing": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "rattled": {"_count": 1, "on": {"_count": 1}}}, "occupants": {"_count": 10, "of": {"_count": 1, "these": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "were": {"_count": 1, "usually": {"_count": 1}}, "squealed": {"_count": 1, "shrilly": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "their": {"_count": 1}}}, "squeaking": {"_count": 12, "squawking": {"_count": 1, "jabbering": {"_count": 1}}, "sound": {"_count": 1, "and": {"_count": 1}}, "madly": {"_count": 1, "twisting": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "around": {"_count": 1, "down": {"_count": 1}}, "their": {"_count": 1, "names": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "Troy": {"_count": 1, "Mullet": {"_count": 1}}, "and": {"_count": 1, "Argus": {"_count": 1}}, "of": {"_count": 1, "one": {"_count": 1}}, "slightly": {"_count": 1, "that": {"_count": 1}}, "sugar": {"_count": 1, "mice": {"_count": 1}}}, "squawking": {"_count": 2, "jabbering": {"_count": 1, "or": {"_count": 1}}, "and": {"_count": 1, "spiraling": {"_count": 1}}}, "doubleended": {"_count": 3, "newts": {"_count": 1, "so": {"_count": 1}}, "newt": {"_count": 1, "wizard": {"_count": 1}}, "colorcoded": {"_count": 1, "chews": {"_count": 1}}}, "newts": {"_count": 1, "so": {"_count": 1, "Harry": {"_count": 1}}}, "gulping": {"_count": 10, "wetly": {"_count": 1, "and": {"_count": 1}}, "noise": {"_count": 1, "then": {"_count": 1}}, "his": {"_count": 1, "tea": {"_count": 1}}, "gargoyles": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "now": {"_count": 1, "mopping": {"_count": 1}}, "he": {"_count": 1, "threw": {"_count": 1}}, "for": {"_count": 2, "air": {"_count": 2}}, "of": {"_count": 1, "cake": {"_count": 1}}}, "wetly": {"_count": 1, "and": {"_count": 1, "feasting": {"_count": 1}}}, "feasting": {"_count": 1, "on": {"_count": 1, "dead": {"_count": 1}}}, "blowflies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "jewelencrusted": {"_count": 1, "shell": {"_count": 1, "was": {"_count": 1}}}, "Poisonous": {"_count": 2, "orange": {"_count": 1, "snails": {"_count": 1}}, "toadstools": {"_count": 1, "dont": {"_count": 1}}}, "snails": {"_count": 4, "were": {"_count": 1, "oozing": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}, "and": {"_count": 1, "even": {"_count": 1}}}, "ravens": {"_count": 2, "a": {"_count": 1, "basket": {"_count": 1}}, "and": {"_count": 1, "with": {"_count": 1}}}, "custardcolored": {"_count": 1, "furballs": {"_count": 1, "that": {"_count": 1}}}, "furballs": {"_count": 1, "that": {"_count": 1, "were": {"_count": 1}}}, "offcolor": {"_count": 3, "ever": {"_count": 1, "since": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "for": {"_count": 1, "ages": {"_count": 1}}}, "Bang": {"_count": 1, "him": {"_count": 1, "on": {"_count": 1}}}, "tricks": {"_count": 16, "and": {"_count": 3, "scuffled": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 1}}, "or": {"_count": 1, "disguises": {"_count": 1}}, "to": {"_count": 1, "fulfill": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 2}, "!": {"_count": 2}, "?": {"_count": 1}}, "jinxes": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 2, "him": {"_count": 1}, "your": {"_count": 1}}, "are": {"_count": 1, "something": {"_count": 1}}, "up": {"_count": 1, "its": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}}, "scuffled": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "wire": {"_count": 5, "for": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "a": {"_count": 1, "plug": {"_count": 1}}}, "woebegone": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Hm": {"_count": 1, "said": {"_count": 1, "the": {"_count": 1}}}, "witchs": {"_count": 14, "eyes": {"_count": 1, "moved": {"_count": 1}}, "hat": {"_count": 2, "topped": {"_count": 1}, "glittering": {"_count": 1}}, "head": {"_count": 2, "examining": {"_count": 1}, "and": {"_count": 1}}, "hump": {"_count": 2, "tapped": {"_count": 1}, "again": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "when": {"_count": 1}}, "handbag": {"_count": 1, "": {"_count": 1}}, "purse": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "cool": {"_count": 1, "voice": {"_count": 1}}, "wand": {"_count": 1, "how": {"_count": 1}}}, "paw": {"_count": 9, "which": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "print": {"_count": 1, "on": {"_count": 1}}, "Siriuss": {"_count": 1, "head": {"_count": 1}}}, "tutted": {"_count": 1, "loudly": {"_count": 1, "": {"_count": 1}}}, "mill": {"_count": 3, "this": {"_count": 1, "one": {"_count": 1}}, "reared": {"_count": 1, "up": {"_count": 1}}, "chimney": {"_count": 1, "seemed": {"_count": 1}}}, "defensively": {"_count": 15, "": {"_count": 10, ".": {"_count": 10}}, "turning": {"_count": 1, "redder": {"_count": 1}}, "as": {"_count": 2, "Ron": {"_count": 1}, "his": {"_count": 1}}, "spinning": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "staring": {"_count": 1}}}, "hardwearing": {"_count": 1, "you": {"_count": 1, "might": {"_count": 1}}}, "indicated": {"_count": 29, "the": {"_count": 11, "black": {"_count": 1}, "door": {"_count": 1}, "tall": {"_count": 1}, "heap": {"_count": 1}, "smashed": {"_count": 1}, "old": {"_count": 1}, "only": {"_count": 1}, "cauldron": {"_count": 1}, "two": {"_count": 1}, "center": {"_count": 1}, "objects": {"_count": 1}}, "that": {"_count": 4, "Scabbers": {"_count": 1}, "Harry": {"_count": 1}, "they": {"_count": 2}}, "squinting": {"_count": 1, "through": {"_count": 1}}, "and": {"_count": 2, "by": {"_count": 1}, "unwrapped": {"_count": 1}}, "jubilation": {"_count": 1, "or": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "resolved": {"_count": 1, "to": {"_count": 1}}, "Riddle": {"_count": 1, "undoubtedly": {"_count": 1}}, "during": {"_count": 1, "which": {"_count": 1}}, "The": {"_count": 1, "stone": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "another": {"_count": 1, "slash": {"_count": 1}}, "Lupin": {"_count": 1, "Arthur": {"_count": 1}}, "his": {"_count": 1, "withered": {"_count": 1}}}, "Showoffs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "replacement": {"_count": 3, "you": {"_count": 1, "can": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tonic": {"_count": 8, "said": {"_count": 3, "the": {"_count": 1}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}}, "was": {"_count": 1, "lying": {"_count": 1}}, "then": {"_count": 1, "shut": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "propelled": {"_count": 7, "itself": {"_count": 1, "spitting": {"_count": 1}}, "forward": {"_count": 1, "several": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "him": {"_count": 2, "through": {"_count": 1}, "to": {"_count": 1}}, "himself": {"_count": 1, "into": {"_count": 1}}}, "CROOKSHANKS": {"_count": 1, "NO": {"_count": 1, "": {"_count": 1}}}, "soap": {"_count": 4, "landed": {"_count": 1, "splaylegged": {"_count": 1}}, "bubbles": {"_count": 1, "streamed": {"_count": 1}}, "bubble": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}}, "splaylegged": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "refuge": {"_count": 10, "under": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 4, "the": {"_count": 3}, "perusing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "even": {"_count": 1, "now": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "when": {"_count": 1, "so": {"_count": 1}}}, "massaging": {"_count": 11, "his": {"_count": 8, "head": {"_count": 2}, "knuckles": {"_count": 1}, "stomach": {"_count": 2}, "ribs": {"_count": 1}, "lower": {"_count": 1}, "immense": {"_count": 1}}, "the": {"_count": 1, "top": {"_count": 1}}, "her": {"_count": 2, "throat": {"_count": 1}, "neck": {"_count": 1}}}, "ginger": {"_count": 27, "cat": {"_count": 6, "": {"_count": 1}, "hairs": {"_count": 1}, "Crookshanks": {"_count": 2}, "who": {"_count": 1}, "with": {"_count": 1}}, "fur": {"_count": 1, "was": {"_count": 1}}, "rug": {"_count": 1, "": {"_count": 1}}, "hairs": {"_count": 1, "might": {"_count": 1}}, "tail": {"_count": 1, "": {"_count": 1}}, "streaked": {"_count": 1, "past": {"_count": 1}}, "roots": {"_count": 5, "": {"_count": 2}, "once": {"_count": 1}, "into": {"_count": 1}, "listening": {"_count": 1}}, "cushion": {"_count": 2, "": {"_count": 2}}, "hair": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "jumped": {"_count": 1}}, "wig": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "come": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 3}}, "in": {"_count": 1, "the": {"_count": 1}}}, "gorgeous": {"_count": 2, "isnt": {"_count": 1, "he": {"_count": 1}}, "centaur": {"_count": 1, "": {"_count": 1}}}, "bowlegged": {"_count": 1, "and": {"_count": 1, "its": {"_count": 1}}}, "purring": {"_count": 13, "contentedly": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "loudly": {"_count": 3, "at": {"_count": 1}, "and": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}, "Crookshanks": {"_count": 1, "behind": {"_count": 1}}, "deeply": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "jumped": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "contentedly": {"_count": 3, "in": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 1, "seemed": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "scalped": {"_count": 1, "me": {"_count": 1, "": {"_count": 1}}}, "Crookshanks": {"_count": 156, "": {"_count": 21, "?": {"_count": 5}, ".": {"_count": 13}, "!": {"_count": 3}}, "will": {"_count": 1, "be": {"_count": 1}}, "that": {"_count": 3, "witch": {"_count": 1}, "hit": {"_count": 1}, "made": {"_count": 1}}, "Hermione": {"_count": 1, "cooed": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 2}, "her": {"_count": 3}}, "leapt": {"_count": 8, "lightly": {"_count": 4}, "onto": {"_count": 2}, "up": {"_count": 1}, "off": {"_count": 1}}, "angrily": {"_count": 1, "away": {"_count": 1}}, "had": {"_count": 9, "now": {"_count": 1}, "eaten": {"_count": 2}, "landed": {"_count": 1}, "vanished": {"_count": 1}, "slid": {"_count": 1}, "gone": {"_count": 1}, "joined": {"_count": 1}, "given": {"_count": 1}}, "did": {"_count": 2, "you": {"_count": 2}}, "slowly": {"_count": 1, "chewed": {"_count": 1}}, "was": {"_count": 12, "still": {"_count": 2}, "spread": {"_count": 1}, "hissing": {"_count": 1}, "innocent": {"_count": 1}, "a": {"_count": 1}, "thrown": {"_count": 1}, "spitting": {"_count": 1}, "on": {"_count": 1}, "curled": {"_count": 1}, "now": {"_count": 1}, "leaping": {"_count": 1}}, "sank": {"_count": 2, "four": {"_count": 1}, "his": {"_count": 1}}, "but": {"_count": 2, "Crookshanks": {"_count": 1}, "missed": {"_count": 1}}, "clung": {"_count": 1, "on": {"_count": 1}}, "still": {"_count": 1, "clinging": {"_count": 1}}, "freed": {"_count": 1, "himself": {"_count": 1}}, "skidded": {"_count": 1, "to": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "doesnt": {"_count": 1, "understand": {"_count": 1}}, "could": {"_count": 3, "smell": {"_count": 1}, "see": {"_count": 1}, "you": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "suspiciously": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "sneaking": {"_count": 1}}, "stretched": {"_count": 1, "luxuriously": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 2}}, "onto": {"_count": 1, "Seamuss": {"_count": 1}}, "sprang": {"_count": 2, "from": {"_count": 1}, "after": {"_count": 1}}, "s": {"_count": 7, "claws": {"_count": 1}, "fur": {"_count": 1}, "yellow": {"_count": 1}, "fresh": {"_count": 1}, "tail": {"_count": 1}, "fluffy": {"_count": 1}, "ears": {"_count": 1}}, "and": {"_count": 5, "hurried": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 2}, "Pigwidgeon": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "trotting": {"_count": 1, "at": {"_count": 1}}, "darted": {"_count": 2, "forward": {"_count": 1}, "up": {"_count": 1}}, "purring": {"_count": 2, "loudly": {"_count": 1}, "and": {"_count": 1}}, "now": {"_count": 1, "darted": {"_count": 1}}, "off": {"_count": 1, "him": {"_count": 1}}, "his": {"_count": 1, "grip": {"_count": 1}}, "than": {"_count": 1, "for": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "Harry": {"_count": 1, "gripped": {"_count": 1}}, "lying": {"_count": 1, "protectively": {"_count": 1}}, "fell": {"_count": 1, "to": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "led": {"_count": 1, "the": {"_count": 1}}, "flew": {"_count": 1, "into": {"_count": 1}}, "pressing": {"_count": 1, "the": {"_count": 1}}, "sat": {"_count": 1, "up": {"_count": 1}}, "took": {"_count": 2, "the": {"_count": 1}, "quite": {"_count": 1}}, "to": {"_count": 2, "sniff": {"_count": 1}, "leap": {"_count": 1}}, "purred": {"_count": 2, "": {"_count": 1}, "loudly": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "came": {"_count": 1, "pelting": {"_count": 1}}, "inserted": {"_count": 1, "a": {"_count": 1}}, "clawed": {"_count": 1, "his": {"_count": 1}}, "went": {"_count": 2, "first": {"_count": 1}, "plunging": {"_count": 1}}, "wandered": {"_count": 1, "over": {"_count": 1}}, "arched": {"_count": 1, "his": {"_count": 1}}, "curled": {"_count": 3, "up": {"_count": 1}, "around": {"_count": 1}, "in": {"_count": 1}}, "behind": {"_count": 2, "the": {"_count": 2}}, "crawled": {"_count": 1, "into": {"_count": 1}}, "hissed": {"_count": 1, "angrily": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "Hermiones": {"_count": 1, "bandylegged": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "uncoiled": {"_count": 1, "himself": {"_count": 1}}, "streaked": {"_count": 2, "away": {"_count": 1}, "under": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "mewing": {"_count": 2, "attempted": {"_count": 1}, "hopefully": {"_count": 1}}, "whom": {"_count": 1, "Hermione": {"_count": 1}}, "pawed": {"_count": 1, "at": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "safely": {"_count": 1, "enclosed": {"_count": 1}}, "trotted": {"_count": 1, "after": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "again": {"_count": 1, "Crookshanks": {"_count": 1}}}, "relaxation": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}}, "sarcastically": {"_count": 16, "as": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 14, ".": {"_count": 14}}, "to": {"_count": 1, "Pansy": {"_count": 1}}}, "inspection": {"_count": 12, "looked": {"_count": 1, "very": {"_count": 1}}, "of": {"_count": 1, "Azkaban": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "Yeah": {"_count": 1, "Quirrell": {"_count": 1}}, "in": {"_count": 1, "ten": {"_count": 1}}, "within": {"_count": 1, "ten": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "pointed": {"_count": 1}}, "didn": {"_count": 1, "go": {"_count": 1}}}, "elected": {"_count": 2, "Head": {"_count": 1, "Boy": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}}, "mayor": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Simply": {"_count": 3, "splendid": {"_count": 1, "to": {"_count": 1}}, "fabulous": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}}, "Marvelous": {"_count": 1, "said": {"_count": 1, "George": {"_count": 1}}}, "spiffing": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "scowled": {"_count": 22, "": {"_count": 6, ".": {"_count": 6}}, "at": {"_count": 8, "Percy": {"_count": 1}, "the": {"_count": 1}, "each": {"_count": 1}, "him": {"_count": 1}, "her": {"_count": 1}, "Ron": {"_count": 1}, "Snape": {"_count": 1}, "both": {"_count": 1}}, "his": {"_count": 1, "displeasure": {"_count": 1}}, "and": {"_count": 2, "removed": {"_count": 1}, "twitched": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "Hermione": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "corking": {"_count": 1, "to": {"_count": 1, "see": {"_count": 1}}}, "depositing": {"_count": 2, "her": {"_count": 1, "shopping": {"_count": 1}}, "the": {"_count": 1, "debris": {"_count": 1}}}, "loftily": {"_count": 8, "": {"_count": 6, ".": {"_count": 6}}, "as": {"_count": 1, "they": {"_count": 1}}, "theyve": {"_count": 1, "generally": {"_count": 1}}}, "Dinner": {"_count": 4, "that": {"_count": 1, "night": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "Nagini": {"_count": 1, "said": {"_count": 1}}}, "courses": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}}, "Howre": {"_count": 18, "we": {"_count": 8, "getting": {"_count": 2}, "supposed": {"_count": 2}, "going": {"_count": 4}}, "you": {"_count": 8, "supposed": {"_count": 2}, "feeling": {"_count": 3}, "doing": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "cauldron": {"_count": 1}}, "things": {"_count": 1, "": {"_count": 1}}}, "providing": {"_count": 5, "a": {"_count": 2, "couple": {"_count": 1}, "number": {"_count": 1}}, "cars": {"_count": 1, "Father": {"_count": 1}}, "the": {"_count": 1, "Minister": {"_count": 1}}, "us": {"_count": 1, "with": {"_count": 1}}}, "Perce": {"_count": 9, "said": {"_count": 3, "George": {"_count": 1}, "Bill": {"_count": 2}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, "!": {"_count": 2}, ".": {"_count": 1}}}, "flags": {"_count": 5, "on": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Professor": {"_count": 1}}, "from": {"_count": 1, "both": {"_count": 1}}, "waved": {"_count": 1, "adding": {"_count": 1}}}, "hoods": {"_count": 6, "with": {"_count": 1, "HB": {"_count": 1}}, "sat": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "dozen": {"_count": 1}}, "turned": {"_count": 1, "as": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}}, "HB": {"_count": 1, "on": {"_count": 1, "them": {"_count": 1}}}, "Humongous": {"_count": 1, "Bighead": {"_count": 1, "said": {"_count": 1}}}, "Bighead": {"_count": 1, "said": {"_count": 1, "Fred": {"_count": 1}}}, "longsuffering": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "rounding": {"_count": 11, "on": {"_count": 9, "Harry": {"_count": 2}, "her": {"_count": 3}, "Ron": {"_count": 1}, "him": {"_count": 2}, "James": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 1}, "Muggleborns": {"_count": 1}}}, "Sos": {"_count": 1, "Scabberss": {"_count": 1, "rat": {"_count": 1}}}, "Scabberss": {"_count": 6, "rat": {"_count": 1, "tonic": {"_count": 1}}, "stuff": {"_count": 1, "Im": {"_count": 1}}, "squeaks": {"_count": 1, "Harry": {"_count": 1}}, "every": {"_count": 1, "desperate": {"_count": 1}}, "frightened": {"_count": 1, "squeaking": {"_count": 1}}, "true": {"_count": 1, "identity": {"_count": 1}}}, "heatedly": {"_count": 10, "": {"_count": 8, ".": {"_count": 8}}, "but": {"_count": 1, "unless": {"_count": 1}}, "casting": {"_count": 1, "Harry": {"_count": 1}}}, "insists": {"_count": 3, "on": {"_count": 1, "treating": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}}, "terrify": {"_count": 2, "him": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "students": {"_count": 1}}}, "inventing": {"_count": 8, "self": {"_count": 1, "spelling": {"_count": 1}}, "all": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "an": {"_count": 1, "object": {"_count": 1}}, "wildly": {"_count": 1, "": {"_count": 1}}, "Dark": {"_count": 1, "spells": {"_count": 1}}, "a": {"_count": 1, "whole": {"_count": 1}}, "stuff": {"_count": 1, "as": {"_count": 1}}}, "\u2018Hes": {"_count": 2, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "Hog": {"_count": 1}}}, "deranged": {"_count": 3, "Molly": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "stationing": {"_count": 1, "themselves": {"_count": 1, "around": {"_count": 1}}}, "entrances": {"_count": 9, "to": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "are": {"_count": 1, "sealed": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Death": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "dealing": {"_count": 16, "with": {"_count": 15, "a": {"_count": 4}, "the": {"_count": 2}, "curses": {"_count": 1}, "wizards": {"_count": 1}, "she": {"_count": 1}, "all": {"_count": 1}, "spark": {"_count": 1}, "you": {"_count": 1}, "more": {"_count": 1}, "but": {"_count": 1}, "so": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}}, "forces": {"_count": 7, "with": {"_count": 4, "those": {"_count": 1}, "the": {"_count": 2}, "Gornuk": {"_count": 1}}, "of": {"_count": 1, "nature": {"_count": 1}}, "the": {"_count": 1, "drinker": {"_count": 1}}, "to": {"_count": 1, "retreat": {"_count": 1}}}, "dismantling": {"_count": 1, "his": {"_count": 1, "and": {"_count": 1}}}, "improving": {"_count": 5, "it": {"_count": 1, "": {"_count": 1}}, "steadily": {"_count": 1, "prior": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "greatly": {"_count": 1, "was": {"_count": 1}}}, "BigheacL": {"_count": 1, "Boy": {"_count": 1, "": {"_count": 1}}}, "lenient": {"_count": 2, "with": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "senseless": {"_count": 1, "and": {"_count": 1, "if": {"_count": 1}}}, "stationed": {"_count": 10, "all": {"_count": 1, "around": {"_count": 1}}, "at": {"_count": 2, "every": {"_count": 1}, "Hogwarts": {"_count": 1}}, "themselves": {"_count": 1, "nearest": {"_count": 1}}, "Mr": {"_count": 1, "Tibbies": {"_count": 1}}, "lookouts": {"_count": 1, "around": {"_count": 1}}, "somewhere": {"_count": 1, "else": {"_count": 1}}, "in": {"_count": 1, "Hogsmeade": {"_count": 1}}, "up": {"_count": 1, "here": {"_count": 1}}, "Alecto": {"_count": 1, "Carrow": {"_count": 1}}}, "Unbidden": {"_count": 1, "the": {"_count": 1, "image": {"_count": 1}}}, "DEMENTOR": {"_count": 1, "Tom": {"_count": 1, "woke": {"_count": 1}}}, "sweatshirt": {"_count": 5, "over": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "so": {"_count": 1, "large": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "some": {"_count": 1, "maroon": {"_count": 1}}}, "grimaced": {"_count": 11, "his": {"_count": 2, "girlfriend": {"_count": 1}, "helplessness": {"_count": 1}}, "at": {"_count": 4, "Harry": {"_count": 2}, "the": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "weakly": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "magical": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "blotchy": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "red": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "hug": {"_count": 1}}}, "congratulate": {"_count": 8, "Ron": {"_count": 1, "on": {"_count": 1}}, "Harry": {"_count": 1, "on": {"_count": 1}}, "you": {"_count": 1, "again": {"_count": 1}}, "Mr": {"_count": 1, "Bagman": {"_count": 1}}, "them": {"_count": 2, "": {"_count": 2}}, "ourselves": {"_count": 1, "too": {"_count": 1}}, "the": {"_count": 1, "three": {"_count": 1}}}, "infuriating": {"_count": 4, "Percy": {"_count": 1, "again": {"_count": 1}}, "to": {"_count": 1, "discover": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "giggly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wickerwork": {"_count": 2, "basket": {"_count": 1, "stood": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cooed": {"_count": 1, "through": {"_count": 1, "the": {"_count": 1}}}, "furtive": {"_count": 11, "looking": {"_count": 1, "wizard": {"_count": 1}}, "glances": {"_count": 1, "at": {"_count": 1}}, "looks": {"_count": 1, "around": {"_count": 1}}, "smile": {"_count": 1, "from": {"_count": 1}}, "look": {"_count": 3, "": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}}, "oddly": {"_count": 1, "triumphant": {"_count": 1}}, "guilty": {"_count": 1, "look": {"_count": 1}}, "and": {"_count": 1, "challenging": {"_count": 1}}, "shameful": {"_count": 1, "": {"_count": 1}}}, "drivers": {"_count": 3, "found": {"_count": 1, "them": {"_count": 1}}, "heaving": {"_count": 1, "six": {"_count": 1}}, "rarely": {"_count": 1, "transported": {"_count": 1}}}, "unloaded": {"_count": 2, "their": {"_count": 1, "trunks": {"_count": 1}}, "Moodys": {"_count": 1, "luggage": {"_count": 1}}}, "salute": {"_count": 5, "to": {"_count": 1, "Mr": {"_count": 1}}, "as": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "passed": {"_count": 1}}, "before": {"_count": 1, "Disapparating": {"_count": 1}}}, "unmoving": {"_count": 3, "line": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "Intercity": {"_count": 1, "125": {"_count": 1, "that": {"_count": 1}}}, "125": {"_count": 1, "that": {"_count": 1, "had": {"_count": 1}}}, "imitated": {"_count": 10, "him": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}, "a": {"_count": 2, "squirrel": {"_count": 1}, "houseelf": {"_count": 1}}, "his": {"_count": 1, "mothers": {"_count": 1}}, "Ron": {"_count": 1, "dropping": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "Ogdens": {"_count": 1, "voice": {"_count": 1}}, "her": {"_count": 2, "looked": {"_count": 1}, "lofty": {"_count": 1}}}, "carriage": {"_count": 59, "that": {"_count": 1, "looked": {"_count": 1}}, "heads": {"_count": 1, "were": {"_count": 1}}, "trundled": {"_count": 1, "toward": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "swayed": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 6}, "?": {"_count": 1}, "!": {"_count": 1}}, "is": {"_count": 1, "at": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 8, "dashed": {"_count": 1}, "of": {"_count": 1}, "were": {"_count": 1}, "walked": {"_count": 1}, "up": {"_count": 1}, "the": {"_count": 1}, "slammed": {"_count": 1}, "Ginny": {"_count": 1}}, "the": {"_count": 2, "size": {"_count": 2}}, "hurtled": {"_count": 1, "ever": {"_count": 1}}, "landed": {"_count": 1, "too": {"_count": 1}}, "bore": {"_count": 1, "a": {"_count": 1}}, "bent": {"_count": 1, "forward": {"_count": 1}}, "floor": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "shoe": {"_count": 1}}, "in": {"_count": 2, "which": {"_count": 2}}, "were": {"_count": 1, "now": {"_count": 1}}, "clearly": {"_count": 1, "about": {"_count": 1}}, "clock": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "was": {"_count": 3, "also": {"_count": 1}, "about": {"_count": 1}, "full": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}, "shortly": {"_count": 1, "afterward": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "they": {"_count": 1, "met": {"_count": 1}}, "again": {"_count": 1, "leaving": {"_count": 1}}, "shafts": {"_count": 1, "if": {"_count": 1}}, "together": {"_count": 1, "before": {"_count": 1}}, "after": {"_count": 1, "Ron": {"_count": 1}}, "first": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "hanging": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 1, "Ginny": {"_count": 1}}, "ceiling": {"_count": 1, "cast": {"_count": 1}}, "Malfoy": {"_count": 1, "was": {"_count": 1}}, "tracks": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "steps": {"_count": 1, "and": {"_count": 1}}}, "rack": {"_count": 17, "then": {"_count": 1, "went": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 4, "pulled": {"_count": 1}, "sat": {"_count": 1}, "left": {"_count": 1}, "fell": {"_count": 1}}, "hissing": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "dress": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "holding": {"_count": 1, "a": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "frowning": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "heart": {"_count": 1}}}, "disbelieving": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "look": {"_count": 1, "underneath": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "expressions": {"_count": 1, "on": {"_count": 1}}, "relief": {"_count": 1, "light": {"_count": 1}}, "noise": {"_count": 1, "": {"_count": 1}}, "Snapes": {"_count": 1, "aspersions": {"_count": 1}}, "but": {"_count": 1, "sympathetic": {"_count": 1}}}, "overlooked": {"_count": 4, "it": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "the": {"_count": 1, "dangers": {"_count": 1}}}, "shepherding": {"_count": 2, "the": {"_count": 2, "rest": {"_count": 1}, "first": {"_count": 1}}}, "Guards": {"_count": 1, "were": {"_count": 1, "walking": {"_count": 1}}}, "Promise": {"_count": 2, "me": {"_count": 2, "Harry": {"_count": 1}, "youll": {"_count": 1}}}, "Swear": {"_count": 2, "to": {"_count": 1, "me": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "huffily": {"_count": 1, "and": {"_count": 1, "she": {"_count": 1}}}, "occupant": {"_count": 4, "a": {"_count": 1, "man": {"_count": 1}}, "was": {"_count": 1, "asleep": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}}, "reserved": {"_count": 6, "for": {"_count": 1, "students": {"_count": 1}}, "just": {"_count": 1, "for": {"_count": 1}}, "anything": {"_count": 1, "I": {"_count": 1}}, "at": {"_count": 1, "Borgin": {"_count": 1}}, "the": {"_count": 1, "process": {"_count": 1}}, "than": {"_count": 1, "before": {"_count": 1}}}, "adult": {"_count": 10, "there": {"_count": 1, "before": {"_count": 1}}, "life": {"_count": 1, "unable": {"_count": 1}}, "wizard": {"_count": 1, "whose": {"_count": 1}}, "wizards": {"_count": 2, "who": {"_count": 1}, "and": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "Voldemort": {"_count": 1, "is": {"_count": 1}}, "witch": {"_count": 1, "or": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}}, "darned": {"_count": 2, "in": {"_count": 1, "several": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "farthest": {"_count": 8, "away": {"_count": 1, "from": {"_count": 1}}, "corner": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 1, "he": {"_count": 1}}, "table": {"_count": 1, "from": {"_count": 1}}, "from": {"_count": 4, "Harrys": {"_count": 1}, "the": {"_count": 3}}}, "R": {"_count": 18, "": {"_count": 13, ".": {"_count": 13}}, "r": {"_count": 1, "riddikulusV": {"_count": 1}}, "Remus": {"_count": 1, "": {"_count": 1}}, "G": {"_count": 1, "either": {"_count": 1}}, "right": {"_count": 1, "after": {"_count": 1}}, "HARRY": {"_count": 1, "": {"_count": 1}}}, "Lupin": {"_count": 744, "whispered": {"_count": 2, "Hermione": {"_count": 1}, "": {"_count": 1}}, "was": {"_count": 23, "stamped": {"_count": 1}, "still": {"_count": 2}, "breaking": {"_count": 1}, "two": {"_count": 1}, "back": {"_count": 1}, "tapping": {"_count": 1}, "obviously": {"_count": 1}, "in": {"_count": 1}, "clambering": {"_count": 1}, "doing": {"_count": 1}, "lowering": {"_count": 1}, "struggling": {"_count": 1}, "bending": {"_count": 1}, "smiling": {"_count": 1}, "sealing": {"_count": 1}, "the": {"_count": 1}, "supporting": {"_count": 1}, "reminding": {"_count": 1}, "making": {"_count": 1}, "wearing": {"_count": 1}, "getting": {"_count": 1}, "younger": {"_count": 1}}, "": {"_count": 159, ".": {"_count": 144}, "?": {"_count": 11}, "!": {"_count": 4}}, "stirred": {"_count": 1, "": {"_count": 1}}, "cautiously": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 6, "a": {"_count": 2}, "me": {"_count": 1}, "this": {"_count": 1}, "him": {"_count": 1}, "an": {"_count": 1}}, "be": {"_count": 1, "careful": {"_count": 1}}, "slept": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 6, "the": {"_count": 2}, "least": {"_count": 1}, "once": {"_count": 1}, "last": {"_count": 2}}, "to": {"_count": 7, "try": {"_count": 1}, "see": {"_count": 1}, "think": {"_count": 1}, "deny": {"_count": 1}, "talk": {"_count": 1}, "get": {"_count": 1}, "join": {"_count": 1}}, "appeared": {"_count": 2, "to": {"_count": 2}}, "could": {"_count": 2, "reach": {"_count": 1}, "have": {"_count": 1}}, "watching": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 19, "was": {"_count": 7}, "has": {"_count": 1}, "said": {"_count": 1}, "looked": {"_count": 4}, "had": {"_count": 4}, "maintained": {"_count": 1}, "would": {"_count": 1}}, "crumpled": {"_count": 1, "up": {"_count": 1}}, "stepped": {"_count": 1, "over": {"_count": 1}}, "muttered": {"_count": 4, "something": {"_count": 1}, "as": {"_count": 1}, "staring": {"_count": 1}, "Bill": {"_count": 1}}, "had": {"_count": 25, "come": {"_count": 2}, "just": {"_count": 1}, "raised": {"_count": 1}, "deliberately": {"_count": 1}, "said": {"_count": 1}, "been": {"_count": 2}, "brought": {"_count": 2}, "found": {"_count": 1}, "taken": {"_count": 1}, "compiled": {"_count": 1}, "used": {"_count": 1}, "lived": {"_count": 1}, "occupied": {"_count": 1}, "given": {"_count": 1}, "pulled": {"_count": 1}, "always": {"_count": 1}, "ever": {"_count": 1}, "jumped": {"_count": 1}, "turned": {"_count": 1}, "failed": {"_count": 1}, "consoled": {"_count": 1}, "burst": {"_count": 1}}, "knew": {"_count": 1, "his": {"_count": 1}}, "an": {"_count": 2, "insolent": {"_count": 1}, "annoyed": {"_count": 1}}, "sent": {"_count": 1, "an": {"_count": 1}}, "clapped": {"_count": 1, "hard": {"_count": 1}}, "looked": {"_count": 16, "particularly": {"_count": 1}, "at": {"_count": 2}, "cheerful": {"_count": 1}, "into": {"_count": 1}, "paler": {"_count": 1}, "up": {"_count": 1}, "miserably": {"_count": 1}, "tired": {"_count": 1}, "from": {"_count": 1}, "these": {"_count": 1}, "sideways": {"_count": 1}, "wildly": {"_count": 1}, "aghast": {"_count": 2}, "as": {"_count": 1}}, "died": {"_count": 1, "away": {"_count": 1}}, "wasnt": {"_count": 1, "there": {"_count": 1}}, "smiled": {"_count": 7, "vaguely": {"_count": 1}, "": {"_count": 2}, "at": {"_count": 1}, "wryly": {"_count": 1}, "but": {"_count": 1}, "as": {"_count": 1}}, "when": {"_count": 2, "everyone": {"_count": 1}, "Harry": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "Peeves": {"_count": 1, "sang": {"_count": 1}}, "loony": {"_count": 1, "loopy": {"_count": 1}}, "Rude": {"_count": 1, "and": {"_count": 1}}, "putting": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 8, "increased": {"_count": 1}, "a": {"_count": 4}, "every": {"_count": 1}, "whom": {"_count": 1}, "painful": {"_count": 1}}, "opening": {"_count": 1, "it": {"_count": 1}}, "came": {"_count": 2, "in": {"_count": 1}, "hurtling": {"_count": 1}}, "but": {"_count": 8, "this": {"_count": 1}, "Mrs": {"_count": 1}, "Lupin": {"_count": 1}, "Harry": {"_count": 1}, "that": {"_count": 1}, "the": {"_count": 1}, "apparently": {"_count": 1}, "were": {"_count": 1}}, "beckoning": {"_count": 1, "the": {"_count": 1}}, "went": {"_count": 2, "to": {"_count": 1}, "on": {"_count": 1}}, "calmly": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 3, "look": {"_count": 1}, "faint": {"_count": 1}, "great": {"_count": 1}}, "and": {"_count": 32, "Hermione": {"_count": 2}, "Snape": {"_count": 1}, "you": {"_count": 1}, "left": {"_count": 1}, "heres": {"_count": 1}, "there": {"_count": 1}, "the": {"_count": 1}, "Tonks": {"_count": 10}, "Mrs": {"_count": 1}, "Dumbledores": {"_count": 1}, "Wormtail": {"_count": 1}, "Peter": {"_count": 1}, "everyone": {"_count": 1}, "George": {"_count": 1}, "Bill": {"_count": 1}, "it": {"_count": 1}, "Pettigrew": {"_count": 2}, "saying": {"_count": 1}, "a": {"_count": 1}, "Lily": {"_count": 1}, "Sirius": {"_count": 1}}, "choosing": {"_count": 1, "to": {"_count": 1}}, "cheerfully": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "looked": {"_count": 1}}, "now": {"_count": 3, "smiling": {"_count": 2}, "reaching": {"_count": 1}}, "shouted": {"_count": 4, "Parvati": {"_count": 1}, "": {"_count": 2}, "pulling": {"_count": 1}}, "suddenly": {"_count": 2, "hurrying": {"_count": 1}, "businesslike": {"_count": 1}}, "as": {"_count": 8, "the": {"_count": 2}, "they": {"_count": 1}, "though": {"_count": 1}, "thoroughly": {"_count": 1}, "Mrs": {"_count": 1}, "Mr": {"_count": 1}, "Sirius": {"_count": 1}}, "said": {"_count": 19, "lightly": {"_count": 1}, "looking": {"_count": 1}, "Anything": {"_count": 1}, "hed": {"_count": 1}, "striding": {"_count": 1}, "calmly": {"_count": 1}, "From": {"_count": 1}, "quietly": {"_count": 3}, "Hermione": {"_count": 1}, "they": {"_count": 1}, "Its": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "with": {"_count": 1}, "there": {"_count": 1}, "Lupin": {"_count": 1}, "loudly": {"_count": 1}}, "passed": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 5, "around": {"_count": 1}, "only": {"_count": 1}, "up": {"_count": 2}, "disappointed": {"_count": 1}}, "though": {"_count": 2, "in": {"_count": 1}, "he": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "surveying": {"_count": 1, "the": {"_count": 1}}, "tapped": {"_count": 1, "the": {"_count": 1}}, "taking": {"_count": 1, "the": {"_count": 1}}, "passing": {"_count": 1, "Harry": {"_count": 1}}, "about": {"_count": 4, "the": {"_count": 2}, "this": {"_count": 1}, "her": {"_count": 1}}, "already": {"_count": 1, "seemed": {"_count": 1}}, "slowly": {"_count": 2, "": {"_count": 1}, "Snape": {"_count": 1}}, "raised": {"_count": 3, "his": {"_count": 2}, "an": {"_count": 1}}, "frowning": {"_count": 1, "slightly": {"_count": 1}}, "still": {"_count": 5, "frowning": {"_count": 1}, "pacing": {"_count": 1}, "looking": {"_count": 1}, "had": {"_count": 1}, "apparently": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "shrewdly": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "smiling": {"_count": 5, "": {"_count": 4}, "slightly": {"_count": 1}}, "pleasantly": {"_count": 3, "pointing": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}}, "took": {"_count": 4, "another": {"_count": 1}, "him": {"_count": 1}, "over": {"_count": 1}, "his": {"_count": 1}}, "drained": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 3, "me": {"_count": 1}, "a": {"_count": 1}, "toward": {"_count": 1}}, "drank": {"_count": 2, "it": {"_count": 1}, "a": {"_count": 1}}, "he": {"_count": 1, "wouldnt": {"_count": 1}}, "more": {"_count": 3, "often": {"_count": 1}, "coldly": {"_count": 1}, "than": {"_count": 1}}, "I": {"_count": 2, "But": {"_count": 1}, "only": {"_count": 1}}, "has": {"_count": 1, "not": {"_count": 1}}, "is": {"_count": 3, "hardly": {"_count": 1}, "in": {"_count": 1}, "currently": {"_count": 1}}, "hasnt": {"_count": 1, "even": {"_count": 1}}, "gets": {"_count": 1, "better": {"_count": 1}}, "asked": {"_count": 3, "frowning": {"_count": 1}, "Black": {"_count": 1}, "Kingsley": {"_count": 1}}, "called": {"_count": 1, "": {"_count": 1}}, "covering": {"_count": 1, "the": {"_count": 1}}, "turning": {"_count": 3, "back": {"_count": 2}, "to": {"_count": 1}}, "sighed": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "sharply": {"_count": 4, "as": {"_count": 1}, "pointing": {"_count": 1}, "": {"_count": 2}}, "coolly": {"_count": 2, "shutting": {"_count": 1}, "": {"_count": 1}}, "nodded": {"_count": 3, "grimly": {"_count": 1}, "": {"_count": 2}}, "the": {"_count": 2, "thought": {"_count": 1}, "man": {"_count": 1}}, "affording": {"_count": 1, "something": {"_count": 1}}, "will": {"_count": 1, "not": {"_count": 1}}, "turned": {"_count": 4, "up": {"_count": 1}, "very": {"_count": 1}, "into": {"_count": 1}, "away": {"_count": 1}}, "stripping": {"_count": 1, "off": {"_count": 1}}, "which": {"_count": 1, "is": {"_count": 1}}, "continued": {"_count": 4, "The": {"_count": 1}, "to": {"_count": 1}, "pointing": {"_count": 1}, "": {"_count": 1}}, "cleared": {"_count": 1, "his": {"_count": 1}}, "grasped": {"_count": 1, "the": {"_count": 1}}, "handed": {"_count": 2, "him": {"_count": 1}, "her": {"_count": 1}}, "gripping": {"_count": 1, "the": {"_count": 1}}, "pulling": {"_count": 1, "off": {"_count": 1}}, "wouldnt": {"_count": 2, "see": {"_count": 1}, "be": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "particular": {"_count": 1}}, "springing": {"_count": 1, "forward": {"_count": 1}}, "forcing": {"_count": 1, "the": {"_count": 1}}, "firmly": {"_count": 5, "": {"_count": 5}}, "extinguishing": {"_count": 1, "the": {"_count": 1}}, "sternly": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "lowered": {"_count": 1, "his": {"_count": 1}}, "lightly": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 1, "come": {"_count": 1}}, "mildly": {"_count": 1, "": {"_count": 1}}, "clapping": {"_count": 1, "his": {"_count": 1}}, "walked": {"_count": 1, "all": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "hesitated": {"_count": 2, "because": {"_count": 1}, "": {"_count": 1}}, "startled": {"_count": 1, "": {"_count": 1}}, "caught": {"_count": 1, "them": {"_count": 1}}, "spoke": {"_count": 2, "in": {"_count": 1}, "for": {"_count": 1}}, "meant": {"_count": 1, "": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "wildeyed": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 5, "voice": {"_count": 3}, "brow": {"_count": 1}, "face": {"_count": 1}}, "stopped": {"_count": 1, "dead": {"_count": 1}}, "forced": {"_count": 1, "a": {"_count": 1}}, "sticking": {"_count": 1, "his": {"_count": 1}}, "waving": {"_count": 2, "his": {"_count": 1}, "an": {"_count": 1}}, "moved": {"_count": 3, "closer": {"_count": 1}, "forward": {"_count": 2}}, "quietly": {"_count": 7, "": {"_count": 4}, "if": {"_count": 1}, "looking": {"_count": 1}, "and": {"_count": 1}}, "yelled": {"_count": 1, "launching": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "panted": {"_count": 1, "still": {"_count": 1}}, "nodding": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 7, "both": {"_count": 1}, "looking": {"_count": 2}, "just": {"_count": 1}, "having": {"_count": 1}, "at": {"_count": 1}, "gathered": {"_count": 1}}, "playing": {"_count": 1, "along": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "broke": {"_count": 1, "off": {"_count": 1}}, "strode": {"_count": 2, "toward": {"_count": 1}, "forward": {"_count": 1}}, "very": {"_count": 1, "intently": {"_count": 1}}, "heavily": {"_count": 2, "": {"_count": 2}}, "told": {"_count": 3, "Harry": {"_count": 1}, "me": {"_count": 2}}, "began": {"_count": 1, "but": {"_count": 1}}, "urgently": {"_count": 1, "": {"_count": 1}}, "softly": {"_count": 2, "": {"_count": 1}, "staring": {"_count": 1}}, "flew": {"_count": 1, "to": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "breathed": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "And": {"_count": 1}}, "hurriedly": {"_count": 1, "dont": {"_count": 1}}, "tensely": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "Scabbers": {"_count": 1}}, "seized": {"_count": 1, "him": {"_count": 1}}, "evenly": {"_count": 1, "": {"_count": 1}}, "courteously": {"_count": 1, "": {"_count": 1}}, "silenced": {"_count": 1, "him": {"_count": 1}}, "instead": {"_count": 1, "writhing": {"_count": 1}}, "grimly": {"_count": 1, "": {"_count": 1}}, "stood": {"_count": 4, "shoulder": {"_count": 2}, "nearest": {"_count": 1}, "": {"_count": 1}}, "both": {"_count": 4, "looked": {"_count": 1}, "gone": {"_count": 1}, "of": {"_count": 1}, "wanting": {"_count": 1}}, "helped": {"_count": 1, "him": {"_count": 1}}, "bending": {"_count": 1, "over": {"_count": 1}}, "picked": {"_count": 2, "up": {"_count": 2}}, "Pettigrew": {"_count": 6, "and": {"_count": 6}}, "threateningly": {"_count": 1, "ahead": {"_count": 1}}, "can": {"_count": 1, "tell": {"_count": 1}}, "seize": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "disappeared": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "says": {"_count": 2, "he": {"_count": 1}, "youve": {"_count": 1}}, "crossed": {"_count": 1, "to": {"_count": 1}}, "shook": {"_count": 2, "his": {"_count": 2}}, "what": {"_count": 1, "had": {"_count": 1}}, "threw": {"_count": 1, "his": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "shifted": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "killing": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 2, "have": {"_count": 1}, "not": {"_count": 1}}, "their": {"_count": 1, "last": {"_count": 1}}, "even": {"_count": 2, "though": {"_count": 1}, "then": {"_count": 1}}, "Arabella": {"_count": 1, "Figg": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "motioning": {"_count": 1, "Harry": {"_count": 1}}, "glancing": {"_count": 1, "out": {"_count": 1}}, "whats": {"_count": 1, "going": {"_count": 1}}, "loudly": {"_count": 1, "as": {"_count": 1}}, "pulled": {"_count": 2, "out": {"_count": 1}, "a": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "ladling": {"_count": 1, "stew": {"_count": 1}}, "hurried": {"_count": 1, "off": {"_count": 1}}, "exchange": {"_count": 1, "the": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "glanced": {"_count": 1, "at": {"_count": 1}}, "taught": {"_count": 1, "me": {"_count": 1}}, "Tonks": {"_count": 4, "and": {"_count": 3}, "": {"_count": 1}}, "or": {"_count": 2, "Kingsley": {"_count": 1}, "would": {"_count": 1}}, "obviously": {"_count": 1, "": {"_count": 1}}, "waved": {"_count": 1, "his": {"_count": 1}}, "bleakly": {"_count": 1, "walking": {"_count": 1}}, "shaking": {"_count": 2, "hands": {"_count": 2}}, "Moody": {"_count": 2, "and": {"_count": 1}, "Tonks": {"_count": 1}}, "piped": {"_count": 1, "up": {"_count": 1}}, "know": {"_count": 1, "her": {"_count": 1}}, "half": {"_count": 1, "giant": {"_count": 1}}, "strolled": {"_count": 1, "away": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "flung": {"_count": 1, "out": {"_count": 1}}, "briskly": {"_count": 1, "": {"_count": 1}}, "seriously": {"_count": 1, "as": {"_count": 1}}, "darkly": {"_count": 1, "from": {"_count": 1}}, "saying": {"_count": 1, "back": {"_count": 1}}, "thought": {"_count": 1, "you": {"_count": 1}}, "getting": {"_count": 1, "to": {"_count": 1}}, "hurry": {"_count": 1, "out": {"_count": 1}}, "returned": {"_count": 1, "with": {"_count": 1}}, "knelt": {"_count": 1, "down": {"_count": 1}}, "laughed": {"_count": 2, "": {"_count": 2}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "beamed": {"_count": 1, "reminiscently": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "wrenched": {"_count": 1, "him": {"_count": 1}}, "grabbed": {"_count": 2, "Harry": {"_count": 2}}, "did": {"_count": 2, "not": {"_count": 2}}, "stop": {"_count": 1, "pretending": {"_count": 1}}, "dragged": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "Sirius": {"_count": 1}}, "might": {"_count": 1, "write": {"_count": 1}}, "unexpectedly": {"_count": 1, "": {"_count": 1}}, "straight": {"_count": 1, "in": {"_count": 1}}, "shrugged": {"_count": 1, "": {"_count": 1}}, "paused": {"_count": 1, "and": {"_count": 1}}, "burst": {"_count": 1, "out": {"_count": 1}}, "reminiscently": {"_count": 1, "": {"_count": 1}}, "think": {"_count": 1, "so": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "collapsed": {"_count": 1, "into": {"_count": 1}}, "lose": {"_count": 1, "control": {"_count": 1}}, "incredulously": {"_count": 1, "": {"_count": 1}}, "hoarsely": {"_count": 1, "Ron": {"_count": 1}}, "barely": {"_count": 1, "moving": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}, "steadily": {"_count": 1, "": {"_count": 1}}, "avoiding": {"_count": 1, "everybodys": {"_count": 1}}, "grayer": {"_count": 1, "more": {"_count": 1}}, "before": {"_count": 1, "placing": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "carried": {"_count": 1, "George": {"_count": 1}}, "ignored": {"_count": 1, "him": {"_count": 1}}, "released": {"_count": 1, "Harry": {"_count": 1}}, "tersely": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "dived": {"_count": 1, "for": {"_count": 1}}, "sounded": {"_count": 1, "almost": {"_count": 1}}, "ve": {"_count": 1, "both": {"_count": 1}}, "than": {"_count": 1, "Tonks": {"_count": 1}}, "werewolf": {"_count": 1, "sometimes": {"_count": 1}}, "slopped": {"_count": 1, "most": {"_count": 1}}, "pointed": {"_count": 1, "at": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "pointedly": {"_count": 1, "": {"_count": 1}}, "swallowed": {"_count": 1, "": {"_count": 1}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "kicked": {"_count": 1, "aside": {"_count": 1}}, "actually": {"_count": 1, "seized": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}, "Ron": {"_count": 1, "told": {"_count": 1}}, "Romulus": {"_count": 1, "do": {"_count": 1}}, "forgiven": {"_count": 1, "him": {"_count": 1}}, "then": {"_count": 1, "hesitated": {"_count": 1}}, "gravely": {"_count": 1, "": {"_count": 1}}, "fell": {"_count": 1, "over": {"_count": 1}}, "beaming": {"_count": 1, "around": {"_count": 1}}, "meeting": {"_count": 1, "him": {"_count": 1}}, "Fred": {"_count": 1, "George": {"_count": 1}}, "blinked": {"_count": 1, "at": {"_count": 1}}, "nearly": {"_count": 1, "dropped": {"_count": 1}}, "headed": {"_count": 1, "off": {"_count": 1}}, "Arthur": {"_count": 1, "he": {"_count": 1}}, "vanish": {"_count": 1, "as": {"_count": 1}}, "Colin": {"_count": 1, "Creevey": {"_count": 1}}, "Snogging": {"_count": 1, "our": {"_count": 1}}}, "quantity": {"_count": 9, "of": {"_count": 7, "neatly": {"_count": 1}, "cured": {"_count": 1}, "long": {"_count": 1}, "homemade": {"_count": 1}, "very": {"_count": 1}, "white": {"_count": 1}, "spit": {"_count": 1}}, "and": {"_count": 1, "nobody": {"_count": 1}}, "if": {"_count": 1, "youve": {"_count": 1}}}, "knotted": {"_count": 6, "string": {"_count": 1, "": {"_count": 1}}, "very": {"_count": 1, "tightly": {"_count": 1}}, "brambles": {"_count": 1, "over": {"_count": 1}}, "hands": {"_count": 1, "enthusiastically": {"_count": 1}}, "limbs": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "veined": {"_count": 1}}}, "Lupins": {"_count": 64, "pallid": {"_count": 1, "profile": {"_count": 1}}, "presence": {"_count": 1, "in": {"_count": 1}}, "hand": {"_count": 1, "was": {"_count": 1}}, "words": {"_count": 1, "except": {"_count": 1}}, "wand": {"_count": 3, "and": {"_count": 1}, "this": {"_count": 1}, "flew": {"_count": 1}}, "frightened": {"_count": 1, "of": {"_count": 1}}, "robes": {"_count": 2, "were": {"_count": 1}, "and": {"_count": 1}}, "name": {"_count": 1, "and": {"_count": 1}}, "eyes": {"_count": 3, "were": {"_count": 2}, "suddenly": {"_count": 1}}, "desk": {"_count": 2, "": {"_count": 1}, "his": {"_count": 1}}, "lack": {"_count": 1, "of": {"_count": 1}}, "classroom": {"_count": 1, "after": {"_count": 1}}, "gray": {"_count": 1, "hairs": {"_count": 1}}, "briefcase": {"_count": 1, "slipped": {"_count": 1}}, "face": {"_count": 7, "relaxed": {"_count": 1}, "": {"_count": 1}, "Black": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "fall": {"_count": 1}, "drained": {"_count": 1}}, "anti": {"_count": 1, "dementor": {"_count": 1}}, "right": {"_count": 2, "it": {"_count": 1}, "right": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "voice": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "chest": {"_count": 2, "": {"_count": 2}}, "mouth": {"_count": 1, "wrists": {"_count": 1}}, "silhouette": {"_count": 1, "": {"_count": 1}}, "head": {"_count": 2, "was": {"_count": 1}, "turn": {"_count": 1}}, "dropped": {"_count": 1, "wand": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "werewolf": {"_count": 1}}, "office": {"_count": 1, "door": {"_count": 1}}, "departure": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "shoulder": {"_count": 1, "": {"_count": 1}}, "prematurely": {"_count": 1, "lined": {"_count": 1}}, "slackened": {"_count": 1, "grip": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "hands": {"_count": 1, "closed": {"_count": 1}}, "smile": {"_count": 1, "was": {"_count": 1}}, "mission": {"_count": 1, "among": {"_count": 1}}, "retort": {"_count": 1, "was": {"_count": 1}}, "frustration": {"_count": 1, "with": {"_count": 1}}, "arms": {"_count": 1, "": {"_count": 1}}, "jaw": {"_count": 1, "": {"_count": 1}}, "tone": {"_count": 1, "it": {"_count": 1}}, "livid": {"_count": 1, "face": {"_count": 1}}, "cloak": {"_count": 1, "disappearing": {"_count": 1}}, "tortured": {"_count": 1, "white": {"_count": 1}}, "living": {"_count": 1, "with": {"_count": 1}}, "news": {"_count": 1, "seemed": {"_count": 1}}, "absence": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "Sectumsemprcd": {"_count": 1}}}, "pallid": {"_count": 12, "profile": {"_count": 1, "": {"_count": 1}}, "toadlike": {"_count": 1, "face": {"_count": 1}}, "face": {"_count": 3, "": {"_count": 2}, "of": {"_count": 1}}, "look": {"_count": 1, "about": {"_count": 1}}, "legs": {"_count": 1, "and": {"_count": 1}}, "complexion": {"_count": 1, "okay": {"_count": 1}}, "faces": {"_count": 1, "rippling": {"_count": 1}}, "forehead": {"_count": 1, "where": {"_count": 1}}, "man": {"_count": 1, "started": {"_count": 1}}, "doughy": {"_count": 1, "face": {"_count": 1}}}, "vacancy": {"_count": 1, "isnt": {"_count": 1, "there": {"_count": 1}}}, "doubtfully": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "staring": {"_count": 1, "down": {"_count": 1}}, "also": {"_count": 1, "looking": {"_count": 1}}}, "nettled": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "nutter": {"_count": 8, "who": {"_count": 1, "wants": {"_count": 1}}, "Your": {"_count": 1, "father": {"_count": 1}}, "Ron": {"_count": 1, "His": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "just": {"_count": 1}}}, "topsecurity": {"_count": 2, "prisoner": {"_count": 1, "too": {"_count": 1}}, "door": {"_count": 1, "at": {"_count": 1}}}, "tinny": {"_count": 2, "sort": {"_count": 1, "of": {"_count": 1}}, "whistling": {"_count": 1, "was": {"_count": 1}}}, "palm": {"_count": 19, "of": {"_count": 5, "Rons": {"_count": 1}, "Harrys": {"_count": 1}, "his": {"_count": 2}, "your": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "trees": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "informing": {"_count": 1}, "breathing": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "haywire": {"_count": 4, "just": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "Hogwarts": {"_count": 1}}}, "tying": {"_count": 14, "it": {"_count": 1, "to": {"_count": 1}}, "Buckbeak": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "letter": {"_count": 1}}, "the": {"_count": 3, "hostages": {"_count": 1}, "scrolls": {"_count": 1}, "laces": {"_count": 1}}, "for": {"_count": 1, "first": {"_count": 1}}, "him": {"_count": 2, "up": {"_count": 1}, "from": {"_count": 1}}, "Harry": {"_count": 1, "to": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 2, "had": {"_count": 1}, "together": {"_count": 1}}, "not": {"_count": 1, "only": {"_count": 1}}}, "piercingly": {"_count": 3, "or": {"_count": 1, "itll": {"_count": 1}}, "bitingly": {"_count": 1, "cold": {"_count": 1}}, "blue": {"_count": 1, "eyes": {"_count": 1}}}, "deadened": {"_count": 4, "the": {"_count": 1, "sound": {"_count": 1}}, "haunted": {"_count": 1, "look": {"_count": 1}}, "look": {"_count": 1, "in": {"_count": 1}}, "because": {"_count": 1, "a": {"_count": 1}}}, "Dervish": {"_count": 5, "and": {"_count": 5, "Banges": {"_count": 5}}}, "Banges": {"_count": 5, "magical": {"_count": 1, "instruments": {"_count": 1}}, "the": {"_count": 1, "wizarding": {"_count": 1}}, "at": {"_count": 1, "two": {"_count": 1}}, "and": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "settlement": {"_count": 1, "in": {"_count": 1, "Britain": {"_count": 1}}}, "Honeydukes": {"_count": 29, "": {"_count": 6, "!": {"_count": 2}, ".": {"_count": 4}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "George": {"_count": 1}}, "has": {"_count": 1, "got": {"_count": 1}}, "sweets": {"_count": 2, "managed": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 1}, "dementors": {"_count": 1}}, "to": {"_count": 2, "sustain": {"_count": 1}, "stop": {"_count": 1}}, "he": {"_count": 1, "ducked": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}, "owners": {"_count": 1, "would": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "cellar": {"_count": 1, "through": {"_count": 1}}, "best": {"_count": 1, "chocolate": {"_count": 1}}, "and": {"_count": 1, "prodded": {"_count": 1}}, "back": {"_count": 1, "down": {"_count": 1}}, "Sweetshop": {"_count": 1, "later": {"_count": 1}}, "chocolate": {"_count": 1, "for": {"_count": 1}}, "chocolates": {"_count": 1, "away": {"_count": 1}}, "a": {"_count": 1, "hamper": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}}, "sweetshop": {"_count": 3, "said": {"_count": 1, "Ron": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dreamy": {"_count": 12, "look": {"_count": 1, "coming": {"_count": 1}}, "unconcern": {"_count": 1, "fell": {"_count": 1}}, "expression": {"_count": 1, "suddenly": {"_count": 1}}, "quality": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 4, "from": {"_count": 2}, "and": {"_count": 1}, "echoing": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "as": {"_count": 1, "always": {"_count": 1}}, "fashion": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Pepper": {"_count": 4, "Imps": {"_count": 3, "they": {"_count": 1}, "": {"_count": 1}, "breathe": {"_count": 1}}, "has": {"_count": 1, "vanished": {"_count": 1}}}, "Imps": {"_count": 3, "they": {"_count": 1, "make": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "breathe": {"_count": 1, "fire": {"_count": 1}}}, "Chocoballs": {"_count": 1, "full": {"_count": 1, "of": {"_count": 1}}}, "mousse": {"_count": 1, "and": {"_count": 1, "clotted": {"_count": 1}}}, "clotted": {"_count": 1, "cream": {"_count": 1, "and": {"_count": 1}}}, "suck": {"_count": 10, "in": {"_count": 1, "class": {"_count": 1}}, "something": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 3, "happiness": {"_count": 1}, "end": {"_count": 1}, "soul": {"_count": 1}}, "out": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "blood": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 2, "the": {"_count": 1}, "light": {"_count": 1}}}, "Hogsmeades": {"_count": 1, "a": {"_count": 1, "very": {"_count": 1}}}, "Sites": {"_count": 1, "of": {"_count": 1, "Historical": {"_count": 1}}}, "Historical": {"_count": 1, "Sorcery": {"_count": 1, "it": {"_count": 1}}}, "inn": {"_count": 9, "was": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 1, "some": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "instead": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "headquarters": {"_count": 26, "for": {"_count": 1, "the": {"_count": 1}}, "somewhere": {"_count": 1, "undetectable": {"_count": 1}}, "and": {"_count": 1, "if": {"_count": 1}}, "of": {"_count": 7, "the": {"_count": 6}, "course": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "Yes": {"_count": 1, "but": {"_count": 1}}, "unless": {"_count": 1, "he": {"_count": 1}}, "yet": {"_count": 1, "so": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "tell": {"_count": 1}}, "fit": {"_count": 1, "to": {"_count": 1}}, "Ive": {"_count": 1, "told": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "Kreacher": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "there": {"_count": 1, "last": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}}, "1612": {"_count": 1, "goblin": {"_count": 1, "rebellion": {"_count": 1}}}, "rebellion": {"_count": 5, "and": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "gave": {"_count": 1, "Harry": {"_count": 1}}, "Remaining": {"_count": 1, "masked": {"_count": 1}}, "he": {"_count": 1, "ran": {"_count": 1}}}, "Shrieking": {"_count": 17, "Shacks": {"_count": 2, "supposed": {"_count": 1}, "always": {"_count": 1}}, "Shack": {"_count": 14, "Tell": {"_count": 1}, "the": {"_count": 1}, "when": {"_count": 2}, "": {"_count": 5}, "was": {"_count": 1}, "and": {"_count": 2}, "nor": {"_count": 1}, "last": {"_count": 1}}, "with": {"_count": 1, "rage": {"_count": 1}}}, "Shacks": {"_count": 2, "supposed": {"_count": 1, "to": {"_count": 1}}, "always": {"_count": 1, "worth": {"_count": 1}}}, "haunted": {"_count": 10, "building": {"_count": 1, "in": {"_count": 1}}, "dwelling": {"_count": 1, "in": {"_count": 1}}, "up": {"_count": 1, "here": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "girls": {"_count": 1}}, "his": {"_count": 1, "nightmares": {"_count": 1}}, "forever": {"_count": 1, "by": {"_count": 1}}, "what": {"_count": 1, "if": {"_count": 1}}}, "sherbet": {"_count": 2, "balls": {"_count": 1, "that": {"_count": 1}}, "lemon": {"_count": 1, "": {"_count": 1}}}, "levitate": {"_count": 2, "a": {"_count": 1, "few": {"_count": 1}}, "small": {"_count": 1, "stones": {"_count": 1}}}, "sucking": {"_count": 11, "them": {"_count": 1, "said": {"_count": 1}}, "the": {"_count": 2, "air": {"_count": 1}, "end": {"_count": 1}}, "sound": {"_count": 1, "as": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "his": {"_count": 1, "cut": {"_count": 1}}, "halfmoaning": {"_count": 1, "sound": {"_count": 1}}, "her": {"_count": 2, "finger": {"_count": 1}, "blistered": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}}, "explore": {"_count": 5, "Hogsmeade": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "house": {"_count": 1}, "place": {"_count": 1}}, "he": {"_count": 1, "must": {"_count": 1}}, "his": {"_count": 1, "predicament": {"_count": 1}}}, "spiritedly": {"_count": 2, "to": {"_count": 1, "Hermione": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}}, "Crookshankss": {"_count": 5, "basket": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "hair": {"_count": 1, "was": {"_count": 1}}, "yellow": {"_count": 1, "eyes": {"_count": 1}}}, "stirred": {"_count": 26, "": {"_count": 3, ".": {"_count": 3}}, "his": {"_count": 1, "potion": {"_count": 1}}, "in": {"_count": 2, "Harrys": {"_count": 2}}, "feebly": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "and": {"_count": 2, "some": {"_count": 1}, "Harry": {"_count": 1}}, "a": {"_count": 1, "cauldron": {"_count": 1}}, "something": {"_count": 2, "in": {"_count": 2}}, "exactly": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "drink": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "counterclockwise": {"_count": 1, "held": {"_count": 1}}, "once": {"_count": 1, "clockwise": {"_count": 1}}, "then": {"_count": 1, "sat": {"_count": 1}}, "several": {"_count": 1, "lumps": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "its": {"_count": 1}}, "but": {"_count": 1, "Griphook": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "scenery": {"_count": 3, "outside": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "flashing": {"_count": 1, "by": {"_count": 1}}}, "Cake": {"_count": 1, "Harry": {"_count": 1, "passed": {"_count": 1}}}, "presence": {"_count": 46, "in": {"_count": 2, "their": {"_count": 1}, "your": {"_count": 1}}, "though": {"_count": 1, "they": {"_count": 1}}, "of": {"_count": 17, "the": {"_count": 4}, "mind": {"_count": 1}, "a": {"_count": 2}, "dementors": {"_count": 3}, "those": {"_count": 1}, "hundreds": {"_count": 1}, "Umbridge": {"_count": 1}, "Lavender": {"_count": 1}, "Crabbe": {"_count": 1}, "large": {"_count": 1}, "fresh": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "is": {"_count": 2, "required": {"_count": 1}, "not": {"_count": 1}}, "was": {"_count": 2, "usually": {"_count": 1}, "his": {"_count": 1}}, "without": {"_count": 1, "detection": {"_count": 1}}, "even": {"_count": 1, "when": {"_count": 1}}, "Snape": {"_count": 1, "made": {"_count": 1}}, "bloodstained": {"_count": 1, "exhausted": {"_count": 1}}, "slamming": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "known": {"_count": 1, "shouldnt": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "longer": {"_count": 1, "than": {"_count": 1}}, "might": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 1, "theres": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "still": {"_count": 1}}, "then": {"_count": 1, "set": {"_count": 1}}, "had": {"_count": 1, "meant": {"_count": 1}}, "as": {"_count": 1, "an": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}}, "Midafternoon": {"_count": 1, "just": {"_count": 1, "as": {"_count": 1}}}, "blurring": {"_count": 4, "the": {"_count": 2, "rolling": {"_count": 1}, "outline": {"_count": 1}}, "worse": {"_count": 1, "than": {"_count": 1}}, "Harrys": {"_count": 1, "glasses": {"_count": 1}}}, "Vincent": {"_count": 3, "Crabbe": {"_count": 3, "and": {"_count": 1}, "got": {"_count": 1}, "returned": {"_count": 1}}}, "bidding": {"_count": 13, "": {"_count": 6, ".": {"_count": 5}, "!": {"_count": 1}}, "them": {"_count": 1, "good": {"_count": 1}}, "because": {"_count": 1, "Sirius": {"_count": 1}}, "intoned": {"_count": 1, "Kreacher": {"_count": 1}}, "and": {"_count": 1, "do": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "keeps": {"_count": 1}}}, "musclely": {"_count": 1, "Crabbe": {"_count": 1, "was": {"_count": 1}}}, "puddingbowl": {"_count": 1, "haircut": {"_count": 1, "and": {"_count": 1}}}, "bristly": {"_count": 1, "hair": {"_count": 1, "and": {"_count": 1}}}, "gorillaish": {"_count": 1, "arms": {"_count": 1, "": {"_count": 1}}}, "Potty": {"_count": 11, "and": {"_count": 1, "the": {"_count": 1}}, "Wee": {"_count": 1, "Potter": {"_count": 1}}, "friend": {"_count": 1, "": {"_count": 1}}, "wee": {"_count": 1, "lad": {"_count": 1}}, "I": {"_count": 1, "heard": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "asked": {"_count": 1, "Loony": {"_count": 1}}, "lurves": {"_count": 1, "Loony": {"_count": 1}}, "luuuuurves": {"_count": 1, "LooooooonyV": {"_count": 1}}, "loves": {"_count": 1, "Loony": {"_count": 1}}}, "Weasel": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "King": {"_count": 2, "sneered": {"_count": 1}, "": {"_count": 1}}}, "trollishly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "automatic": {"_count": 3, "step": {"_count": 1, "backward": {"_count": 1}}, "ticket": {"_count": 1, "machines": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}}, "crap": {"_count": 1, "from": {"_count": 1, "Malfoy": {"_count": 1}}}, "gesture": {"_count": 20, "in": {"_count": 1, "midair": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "of": {"_count": 2, "welcome": {"_count": 1}, "surrender": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 2, "undoubtedly": {"_count": 1}, "not": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "at": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "again": {"_count": 1, "but": {"_count": 1}}, "from": {"_count": 1, "Slughorn": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 1, "then": {"_count": 1}}, "to": {"_count": 1, "Hagrid": {"_count": 1}}, "Harry": {"_count": 1, "got": {"_count": 1}}, "did": {"_count": 1, "she": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}}, "racks": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "whyre": {"_count": 1, "we": {"_count": 1, "stopping": {"_count": 1}}}, "pistons": {"_count": 2, "fell": {"_count": 1, "away": {"_count": 1}}, "hissed": {"_count": 1, "loudly": {"_count": 1}}}, "total": {"_count": 24, "darkness": {"_count": 9, "": {"_count": 6}, "he": {"_count": 1}, "of": {"_count": 1}, "to": {"_count": 1}}, "disgrace": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "real": {"_count": 1}, "six": {"_count": 1}}, "after": {"_count": 1, "task": {"_count": 1}}, "silence": {"_count": 4, "broken": {"_count": 1}, "Harry": {"_count": 1}, "within": {"_count": 1}, "his": {"_count": 1}}, "impenetrable": {"_count": 1, "silent": {"_count": 1}}, "incredulity": {"_count": 1, "": {"_count": 1}}, "devastation": {"_count": 1, "met": {"_count": 1}}, "ignorance": {"_count": 1, "of": {"_count": 1}}, "submersion": {"_count": 1, "from": {"_count": 1}}, "genius": {"_count": 1, "I": {"_count": 1}}, "solitude": {"_count": 1, "this": {"_count": 1}}}, "Quiet": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "illuminated": {"_count": 39, "his": {"_count": 2, "tired": {"_count": 1}, "feet": {"_count": 1}}, "by": {"_count": 8, "the": {"_count": 4}, "a": {"_count": 1}, "an": {"_count": 1}, "streetlamps": {"_count": 1}, "light": {"_count": 1}}, "the": {"_count": 9, "stands": {"_count": 1}, "scene": {"_count": 1}, "walls": {"_count": 1}, "thin": {"_count": 1}, "dungeons": {"_count": 1}, "remains": {"_count": 1}, "dirty": {"_count": 1}, "tip": {"_count": 1}, "shabby": {"_count": 1}}, "its": {"_count": 1, "branches": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "Beauxbatons": {"_count": 1, "carriage": {"_count": 1}}, "Dumbledores": {"_count": 1, "face": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "St": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 2, "aloft": {"_count": 1}, "he": {"_count": 1}}, "unflatteringly": {"_count": 1, "by": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "corner": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "him": {"_count": 1, "Harry": {"_count": 1}}, "expecting": {"_count": 1, "at": {"_count": 1}}, "from": {"_count": 1, "below": {"_count": 1}}}, "contract": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "with": {"_count": 1, "sudden": {"_count": 1}}, "like": {"_count": 1, "Dumbledore": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "her": {"_count": 1, "nails": {"_count": 1}}, "to": {"_count": 1, "thin": {"_count": 1}}}, "slimylooking": {"_count": 1, "and": {"_count": 1, "scabbed": {"_count": 1}}}, "scabbed": {"_count": 8, "like": {"_count": 1, "something": {"_count": 1}}, "hand": {"_count": 2, "gripping": {"_count": 1}, "grasped": {"_count": 1}}, "skin": {"_count": 1, "stretched": {"_count": 1}}, "hands": {"_count": 3, "outstretched": {"_count": 1}, "slid": {"_count": 1}, "clutching": {"_count": 1}}, "and": {"_count": 1, "rotting": {"_count": 1}}}, "decayed": {"_count": 1, "in": {"_count": 1, "water": {"_count": 1}}}, "withdrawn": {"_count": 7, "into": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "a": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "his": {"_count": 1, "head": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}}, "surroundings": {"_count": 14, "": {"_count": 7, ".": {"_count": 7}}, "could": {"_count": 1, "have": {"_count": 1}}, "with": {"_count": 2, "an": {"_count": 1}, "their": {"_count": 1}}, "vanished": {"_count": 1, "He": {"_count": 1}}, "solidified": {"_count": 1, "again": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "drowning": {"_count": 12, "in": {"_count": 1, "cold": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "him": {"_count": 2, "he": {"_count": 1}, "Think": {"_count": 1}}, "twice": {"_count": 1, "said": {"_count": 1}}, "out": {"_count": 1, "his": {"_count": 1}}, "Snape": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "sound": {"_count": 1}}, "man": {"_count": 2, "at": {"_count": 1}, "thrashing": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}}, "pleading": {"_count": 15, "screams": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "excuses": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "jerking": {"_count": 1, "awake": {"_count": 1}}, "with": {"_count": 5, "Voldemort": {"_count": 1}, "Sir": {"_count": 1}, "someone": {"_count": 1}, "another": {"_count": 1}, "her": {"_count": 1}}, "note": {"_count": 1, "in": {"_count": 1}}, "triumphed": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 2, "tolerance": {"_count": 1}, "gold": {"_count": 1}}}, "fog": {"_count": 14, "was": {"_count": 2, "swirling": {"_count": 1}, "blinding": {"_count": 1}}, "and": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "obscured": {"_count": 1, "his": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "nothing": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 1, "definitely": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "cleared": {"_count": 1, "as": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "kneeling": {"_count": 28, "next": {"_count": 2, "to": {"_count": 2}}, "beside": {"_count": 6, "the": {"_count": 4}, "them": {"_count": 1}, "Voldemort": {"_count": 1}}, "at": {"_count": 3, "Voldemorts": {"_count": 1}, "Snapes": {"_count": 1}, "his": {"_count": 1}}, "amid": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 4, "his": {"_count": 1}, "the": {"_count": 3}}, "down": {"_count": 1, "upon": {"_count": 1}}, "up": {"_count": 1, "on": {"_count": 1}}, "man": {"_count": 1, "almost": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "front": {"_count": 1}, "Siriuss": {"_count": 1}}, "position": {"_count": 3, "at": {"_count": 1}, "": {"_count": 1}, "his": {"_count": 1}}, "opposite": {"_count": 1, "Narcissa": {"_count": 1}}, "upon": {"_count": 1, "something": {"_count": 1}}, "goblin": {"_count": 1, "rolled": {"_count": 1}}}, "dementor": {"_count": 75, "said": {"_count": 1, "Lupin": {"_count": 1}}, "stood": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 5, "pulled": {"_count": 1}, "every": {"_count": 1}, "though": {"_count": 1}, "a": {"_count": 1}, "then": {"_count": 1}}, "didnt": {"_count": 1, "move": {"_count": 1}}, "frighten": {"_count": 1, "you": {"_count": 1}}, "Poppy": {"_count": 1, "said": {"_count": 1}}, "traveled": {"_count": 1, "that": {"_count": 1}}, "had": {"_count": 2, "entered": {"_count": 1}, "lowered": {"_count": 1}}, "to": {"_count": 2, "understand": {"_count": 1}, "accompany": {"_count": 1}}, "behind": {"_count": 1, "you": {"_count": 1}}, "less": {"_count": 1, "frightening": {"_count": 1}}, "will": {"_count": 2, "cross": {"_count": 1}, "feed": {"_count": 1}}, "imitations": {"_count": 1, "across": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "within": {"_count": 1, "the": {"_count": 1}}, "gets": {"_count": 1, "too": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "guardian": {"_count": 1}}, "feeds": {"_count": 1, "upon": {"_count": 1}}, "rose": {"_count": 2, "slowly": {"_count": 1}, "out": {"_count": 1}}, "stepped": {"_count": 1, "from": {"_count": 1}}, "were": {"_count": 1, "dissolving": {"_count": 1}}, "glided": {"_count": 1, "forward": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "he": {"_count": 1, "sank": {"_count": 1}}, "classes": {"_count": 1, "which": {"_count": 1}}, "approached": {"_count": 1, "him": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "lowers": {"_count": 1, "its": {"_count": 1}}, "problem": {"_count": 1, "havent": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "halt": {"_count": 1, "very": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "must": {"_count": 2, "have": {"_count": 2}}, "gliding": {"_count": 1, "toward": {"_count": 1}}, "which": {"_count": 1, "fell": {"_count": 1}}, "stumble": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 1, "just": {"_count": 1}}, "slowed": {"_count": 1, "but": {"_count": 1}}, "bore": {"_count": 1, "down": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "swooped": {"_count": 1, "away": {"_count": 1}}, "was": {"_count": 1, "crouching": {"_count": 1}}, "the": {"_count": 1, "old": {"_count": 1}}, "attack": {"_count": 4, "": {"_count": 2}, "very": {"_count": 1}, "might": {"_count": 1}}, "But": {"_count": 1, "that": {"_count": 1}}, "attacks": {"_count": 3, "he": {"_count": 1}, "said": {"_count": 1}, "in": {"_count": 1}}, "essay": {"_count": 1, "and": {"_count": 1}}, "essays": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}}, "dementors": {"_count": 258, "of": {"_count": 3, "Azkaban": {"_count": 3}}, "standing": {"_count": 1, "guard": {"_count": 1}}, "around": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "guarding": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 2}}, "are": {"_count": 11, "coming": {"_count": 2}, "going": {"_count": 1}, "still": {"_count": 1}, "blind": {"_count": 1}, "standing": {"_count": 1}, "taking": {"_count": 2}, "currently": {"_count": 1}, "in": {"_count": 1}, "swooping": {"_count": 1}}, "were": {"_count": 19, "down": {"_count": 1}, "horrible": {"_count": 1}, "looking": {"_count": 1}, "closing": {"_count": 3}, "falling": {"_count": 2}, "gliding": {"_count": 2}, "was": {"_count": 1}, "doing": {"_count": 1}, "soaring": {"_count": 1}, "there": {"_count": 1}, "so": {"_count": 1}, "drifting": {"_count": 1}, "swooping": {"_count": 1}, "growing": {"_count": 1}, "advancing": {"_count": 1}}, "": {"_count": 44, ".": {"_count": 26}, "?": {"_count": 11}, "!": {"_count": 7}}, "yet": {"_count": 1, "has": {"_count": 1}}, "do": {"_count": 6, "you": {"_count": 2}, "to": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 2}}, "being": {"_count": 1, "able": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "send": {"_count": 1, "their": {"_count": 1}}, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Professor": {"_count": 1}, "Hermione": {"_count": 1}}, "their": {"_count": 1, "hidden": {"_count": 1}}, "had": {"_count": 4, "done": {"_count": 1}, "they": {"_count": 1}, "moved": {"_count": 1}, "retreated": {"_count": 1}}, "approached": {"_count": 1, "him": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "affect": {"_count": 1, "you": {"_count": 1}}, "Harry": {"_count": 4, "": {"_count": 1}, "stepped": {"_count": 1}, "cast": {"_count": 1}, "saw": {"_count": 1}}, "come": {"_count": 3, "to": {"_count": 3}}, "at": {"_count": 2, "all": {"_count": 1}, "once": {"_count": 1}}, "will": {"_count": 6, "be": {"_count": 3}, "catch": {"_count": 1}, "have": {"_count": 1}, "join": {"_count": 1}}, "swarming": {"_count": 2, "all": {"_count": 2}}, "have": {"_count": 2, "searched": {"_count": 1}, "left": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "dont": {"_count": 1, "affect": {"_count": 1}}, "drew": {"_count": 1, "near": {"_count": 1}}, "outta": {"_count": 1, "the": {"_count": 1}}, "make": {"_count": 1, "me": {"_count": 1}}, "werent": {"_count": 1, "keen": {"_count": 1}}, "cant": {"_count": 1, "hurt": {"_count": 1}}, "turn": {"_count": 1, "up": {"_count": 1}}, "down": {"_count": 4, "or": {"_count": 1}, "some": {"_count": 1}, "that": {"_count": 1}, "my": {"_count": 1}}, "put": {"_count": 1, "in": {"_count": 1}}, "hood": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "permission": {"_count": 1, "to": {"_count": 1}}, "wont": {"_count": 2, "turn": {"_count": 1}, "kill": {"_count": 1}}, "three": {"_count": 1, "tall": {"_count": 1}}, "but": {"_count": 2, "didnt": {"_count": 1}, "he": {"_count": 1}}, "didnt": {"_count": 1, "affect": {"_count": 1}}, "draw": {"_count": 1, "near": {"_count": 1}}, "once": {"_count": 1, "we": {"_count": 1}}, "couldnt": {"_count": 2, "suck": {"_count": 1}, "destroy": {"_count": 1}}, "back": {"_count": 2, "": {"_count": 2}}, "should": {"_count": 1, "have": {"_count": 1}}, "get": {"_count": 1, "Sirius": {"_count": 1}}, "to": {"_count": 5, "retreat": {"_count": 1}, "force": {"_count": 1}, "set": {"_count": 1}, "go": {"_count": 1}, "glide": {"_count": 1}}, "go": {"_count": 1, "said": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "sightless": {"_count": 1, "soulsucking": {"_count": 1}}, "surviving": {"_count": 1, "for": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "this": {"_count": 3, "year": {"_count": 1}, "summer": {"_count": 2}}, "anymore": {"_count": 1, "": {"_count": 1}}, "without": {"_count": 1, "trial": {"_count": 1}}, "bringing": {"_count": 1, "him": {"_count": 1}}, "could": {"_count": 3, "sense": {"_count": 1}, "not": {"_count": 1}, "bring": {"_count": 1}}, "buried": {"_count": 1, "him": {"_count": 1}}, "tall": {"_count": 1, "hooded": {"_count": 1}}, "placed": {"_count": 2, "the": {"_count": 1}, "each": {"_count": 1}}, "undoubtedly": {"_count": 1, "still": {"_count": 1}}, "entered": {"_count": 1, "this": {"_count": 1}}, "You": {"_count": 1, "are": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "spit": {"_count": 1, "flying": {"_count": 1}}, "and": {"_count": 4, "there": {"_count": 1}, "I": {"_count": 1}, "if": {"_count": 1}, "he": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "Preposterous": {"_count": 1, "": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "robes": {"_count": 1, "reaching": {"_count": 1}}, "putrid": {"_count": 1, "deathcold": {"_count": 1}}, "icy": {"_count": 1, "fingers": {"_count": 1}}, "eyeless": {"_count": 1, "face": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}, "Mrs": {"_count": 1, "Figg": {"_count": 1}}, "singlehandedly": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 5, "Little": {"_count": 1}, "that": {"_count": 2}, "here": {"_count": 1}, "those": {"_count": 1}}, "attacking": {"_count": 1, "you": {"_count": 1}}, "would": {"_count": 1, "make": {"_count": 1}}, "can": {"_count": 1, "they": {"_count": 1}}, "running": {"_count": 1, "Running": {"_count": 1}}, "wandering": {"_count": 1, "into": {"_count": 1}}, "remain": {"_count": 1, "in": {"_count": 1}}, "into": {"_count": 1, "that": {"_count": 1}}, "attacked": {"_count": 1, "Harry": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}, "outside": {"_count": 2, "Ministry": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 2, "indeed": {"_count": 1}, "they": {"_count": 1}}, "which": {"_count": 2, "I": {"_count": 1}, "fell": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}, "the": {"_count": 1, "night": {"_count": 1}}, "Hagrid": {"_count": 1, "choked": {"_count": 1}}, "all": {"_count": 2, "over": {"_count": 1}, "around": {"_count": 1}}, "anywhere": {"_count": 1, "": {"_count": 1}}, "nearby": {"_count": 1, "but": {"_count": 1}}, "or": {"_count": 2, "simply": {"_count": 1}, "he": {"_count": 1}}, "after": {"_count": 2, "Potter": {"_count": 1}, "me": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "attempts": {"_count": 1, "by": {"_count": 1}}, "guard": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "remained": {"_count": 1}}, "not": {"_count": 1, "\u2018Dugbogs": {"_count": 1}}, "using": {"_count": 1, "Hermiones": {"_count": 1}}, "maybe": {"_count": 1, "even": {"_count": 1}}, "blow": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "coward": {"_count": 1}}, "greedy": {"_count": 1, "mouths": {"_count": 1}}, "appeared": {"_count": 1, "in": {"_count": 1}}, "That": {"_count": 1, "was": {"_count": 1}}, "stood": {"_count": 1, "waiting": {"_count": 1}}, "gliding": {"_count": 1, "out": {"_count": 1}}, "then": {"_count": 2, "said": {"_count": 1}, "realized": {"_count": 1}}, "was": {"_count": 2, "forgotten": {"_count": 1}, "gliding": {"_count": 1}}, "wind": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "ten": {"_count": 1, "or": {"_count": 1}}, "scattered": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}, "waiting": {"_count": 1, "at": {"_count": 1}}, "fell": {"_count": 1, "back": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "that": {"_count": 1}}, "chill": {"_count": 1, "did": {"_count": 1}}, "that": {"_count": 1, "patrolled": {"_count": 1}}}, "wrapper": {"_count": 9, "and": {"_count": 2, "put": {"_count": 1}, "smacked": {"_count": 1}}, "lay": {"_count": 1, "on": {"_count": 1}}, "bit": {"_count": 1, "off": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "then": {"_count": 1, "Potter": {"_count": 1}}}, "\u2018None": {"_count": 1, "of": {"_count": 1, "us": {"_count": 1}}}, "shivery": {"_count": 3, "as": {"_count": 1, "though": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "beginnings": {"_count": 3, "of": {"_count": 1, "shame": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "poisoned": {"_count": 12, "that": {"_count": 1, "chocolate": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "stabbed": {"_count": 1, "shot": {"_count": 1}}, "hes": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "merely": {"_count": 1}}, "spread": {"_count": 1, "quickly": {"_count": 1}}, "being": {"_count": 1, "interesting": {"_count": 1}}, "the": {"_count": 1, "best": {"_count": 1}}, "and": {"_count": 1, "getting": {"_count": 1}}, "which": {"_count": 1, "naturally": {"_count": 1}}, "mead": {"_count": 2, "": {"_count": 1}, "Rosmerta": {"_count": 1}}}, "meowed": {"_count": 1, "and": {"_count": 1, "Nevilles": {"_count": 1}}}, "beckoning": {"_count": 9, "the": {"_count": 2, "terrifiedlooking": {"_count": 1}, "class": {"_count": 1}}, "her": {"_count": 2, "on": {"_count": 1}, "across": {"_count": 1}}, "frantically": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 2, "toward": {"_count": 1}, "forward": {"_count": 1}}, "them": {"_count": 1, "forward": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}}, "terrifiedlooking": {"_count": 3, "new": {"_count": 1, "students": {"_count": 1}}, "peers": {"_count": 1, "he": {"_count": 1}}, "boy": {"_count": 1, "Harry": {"_count": 1}}}, "traditional": {"_count": 6, "journey": {"_count": 1, "across": {"_count": 1}}, "part": {"_count": 2, "of": {"_count": 2}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "tour": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "give": {"_count": 1}}}, "shunting": {"_count": 4, "them": {"_count": 2, "away": {"_count": 1}, "out": {"_count": 1}}, "Ginny": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "backward": {"_count": 1}}}, "stagecoaches": {"_count": 2, "awaited": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "always": {"_count": 1}}}, "awaited": {"_count": 3, "the": {"_count": 1, "remaining": {"_count": 1}}, "an": {"_count": 1, "invitation": {"_count": 1}}, "him": {"_count": 1, "back": {"_count": 1}}}, "assume": {"_count": 22, "by": {"_count": 1, "an": {"_count": 1}}, "a": {"_count": 1, "shape": {"_count": 1}}, "the": {"_count": 2, "form": {"_count": 1}, "shape": {"_count": 1}}, "thats": {"_count": 1, "why": {"_count": 1}}, "was": {"_count": 1, "pride": {"_count": 1}}, "that": {"_count": 9, "you": {"_count": 5}, "Dumbledore": {"_count": 1}, "it": {"_count": 1}, "Siriuss": {"_count": 1}, "he": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "you": {"_count": 2, "are": {"_count": 1}, "know": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "might": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "coach": {"_count": 6, "set": {"_count": 1, "off": {"_count": 1}}, "smelled": {"_count": 1, "faintly": {"_count": 1}}, "to": {"_count": 1, "themselves": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "you": {"_count": 1, "nightly": {"_count": 1}}}, "procession": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "carriages": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "formed": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "marched": {"_count": 1, "on": {"_count": 1}}, "pass": {"_count": 1, "he": {"_count": 1}}}, "wrought": {"_count": 7, "iron": {"_count": 1, "gates": {"_count": 1}}, "quite": {"_count": 1, "a": {"_count": 1}}, "golden": {"_count": 1, "grilles": {"_count": 1}}, "a": {"_count": 1, "strange": {"_count": 1}}, "gold": {"_count": 1, "gates": {"_count": 1}}, "handles": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "our": {"_count": 1}}}, "gates": {"_count": 43, "flanked": {"_count": 3, "with": {"_count": 2}, "by": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 9}}, "Remus": {"_count": 1, "he": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "into": {"_count": 4, "the": {"_count": 3}, "a": {"_count": 1}}, "already": {"_count": 1, "getting": {"_count": 1}}, "at": {"_count": 5, "the": {"_count": 5}}, "toward": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "Hogwarts": {"_count": 1}}, "disappeared": {"_count": 1, "into": {"_count": 1}}, "each": {"_count": 1, "topped": {"_count": 1}}, "he": {"_count": 1, "found": {"_count": 1}}, "creaked": {"_count": 1, "open": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "beyond": {"_count": 1, "which": {"_count": 1}}, "able": {"_count": 1, "to": {"_count": 1}}, "barring": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "into": {"_count": 1}, "shook": {"_count": 1}, "up": {"_count": 1}}, "swung": {"_count": 1, "open": {"_count": 1}}, "of": {"_count": 1, "Hogwarts": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}, "with": {"_count": 1, "winged": {"_count": 1}}}, "topped": {"_count": 11, "with": {"_count": 9, "winged": {"_count": 3}, "a": {"_count": 5}, "two": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "tables": {"_count": 1, "but": {"_count": 1}}}, "winged": {"_count": 30, "boars": {"_count": 6, "Harry": {"_count": 1}, "and": {"_count": 3}, "on": {"_count": 2}}, "armchair": {"_count": 5, "in": {"_count": 3}, "before": {"_count": 1}, "one": {"_count": 1}}, "walnutsized": {"_count": 1, "ball": {"_count": 1}}, "Golden": {"_count": 1, "Snitch": {"_count": 1}}, "horses": {"_count": 5, "all": {"_count": 1}, "with": {"_count": 1}, "he": {"_count": 1}, "yeh": {"_count": 1}, "": {"_count": 1}}, "horse": {"_count": 4, "": {"_count": 1}, "just": {"_count": 1}, "was": {"_count": 1}, "emerged": {"_count": 1}}, "yeh": {"_count": 1, "know": {"_count": 1}}, "glasses": {"_count": 1, "": {"_count": 1}}, "piglets": {"_count": 1, "were": {"_count": 1}}, "boar": {"_count": 1, "": {"_count": 1}}, "golden": {"_count": 1, "ball": {"_count": 1}}, "catapults": {"_count": 1, "and": {"_count": 1}}, "palominos": {"_count": 1, "came": {"_count": 1}}, "creatures": {"_count": 1, "soaring": {"_count": 1}}}, "boars": {"_count": 8, "Harry": {"_count": 1, "saw": {"_count": 1}}, "and": {"_count": 3, "up": {"_count": 2}, "turned": {"_count": 1}}, "on": {"_count": 2, "either": {"_count": 1}, "pillars": {"_count": 1}}, "severed": {"_count": 1, "head": {"_count": 1}}, "head": {"_count": 1, "sign": {"_count": 1}}}, "sickness": {"_count": 2, "threatened": {"_count": 1, "to": {"_count": 1}}, "scrofungulus": {"_count": 1, "POTION": {"_count": 1}}}, "engulf": {"_count": 2, "him": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}}, "gleeful": {"_count": 12, "and": {"_count": 2, "his": {"_count": 1}, "none": {"_count": 1}}, "smile": {"_count": 1, "spread": {"_count": 1}}, "shouts": {"_count": 1, "drifting": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "since": {"_count": 1, "Umbridge": {"_count": 1}}, "yell": {"_count": 1, "of": {"_count": 1}}, "looks": {"_count": 1, "a": {"_count": 1}}, "wild": {"_count": 1, "look": {"_count": 1}}, "face": {"_count": 1, "whose": {"_count": 1}}, "voices": {"_count": 1, "of": {"_count": 1}}}, "maliciously": {"_count": 13, "": {"_count": 7, ".": {"_count": 7}}, "on": {"_count": 1, "Ron": {"_count": 1}}, "emptying": {"_count": 1, "Harrys": {"_count": 1}}, "at": {"_count": 2, "Dumbledore": {"_count": 1}, "them": {"_count": 1}}, "delighted": {"_count": 1, "some": {"_count": 1}}, "upon": {"_count": 1, "Harry": {"_count": 1}}}, "Shove": {"_count": 1, "off": {"_count": 1, "Malfoy": {"_count": 1}}}, "scary": {"_count": 8, "old": {"_count": 1, "dementor": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "Snapes": {"_count": 1, "lips": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "thought": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "about": {"_count": 1, "them": {"_count": 1}}}, "delapidated": {"_count": 1, "suitcase": {"_count": 1, "": {"_count": 1}}}, "sarcasm": {"_count": 7, "in": {"_count": 2, "his": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "why": {"_count": 1, "Professor": {"_count": 1}}}, "sternlooking": {"_count": 1, "witch": {"_count": 1, "who": {"_count": 1}}}, "welcoming": {"_count": 9, "fire": {"_count": 1, "Professor": {"_count": 1}}, "it": {"_count": 1, "back": {"_count": 1}}, "you": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "the": {"_count": 1, "man": {"_count": 1}}, "arms": {"_count": 1, "": {"_count": 1}}}, "Poppy": {"_count": 4, "said": {"_count": 1, "Professor": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "please": {"_count": 1, "leave": {"_count": 1}}, "Dumbledore": {"_count": 1, "said": {"_count": 1}}}, "collapses": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "school": {"_count": 1}}}, "clammy": {"_count": 9, "": {"_count": 3, ".": {"_count": 3}}, "rotted": {"_count": 1, "hands": {"_count": 1}}, "hands": {"_count": 1, "suddenly": {"_count": 1}}, "coldness": {"_count": 1, "stealing": {"_count": 1}}, "looking": {"_count": 1, "": {"_count": 1}}, "cold": {"_count": 1, "that": {"_count": 1}}, "or": {"_count": 1, "that": {"_count": 1}}}, "Terrible": {"_count": 4, "things": {"_count": 1, "they": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "pulse": {"_count": 10, "": {"_count": 3, ".": {"_count": 3}}, "Harry": {"_count": 1, "Ib": {"_count": 1}}, "quickened": {"_count": 1, "at": {"_count": 1}}, "through": {"_count": 1, "Harrys": {"_count": 1}}, "quickening": {"_count": 1, "as": {"_count": 1}}, "angrily": {"_count": 1, "and": {"_count": 1}}, "Pain": {"_count": 1, "was": {"_count": 1}}, "beat": {"_count": 1, "in": {"_count": 1}}}, "\u2018Tm": {"_count": 16, "ine": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 6, "asking": {"_count": 1}, "sure": {"_count": 1}, "showing": {"_count": 1}, "here": {"_count": 1}, "getting": {"_count": 1}, "scared": {"_count": 1}}, "afraid": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "going": {"_count": 3, "to": {"_count": 2}, "back": {"_count": 1}}, "doing": {"_count": 1, "eight": {"_count": 1}}, "sorry": {"_count": 1, "sir": {"_count": 1}}, "telling": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}}, "ine": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "remedies": {"_count": 4, "": {"_count": 4, "?": {"_count": 2}, ".": {"_count": 2}}}, "Kindly": {"_count": 10, "wait": {"_count": 1, "outside": {"_count": 1}}, "escort": {"_count": 1, "Harry": {"_count": 1}}, "keep": {"_count": 1, "your": {"_count": 1}}, "continue": {"_count": 1, "with": {"_count": 1}}, "respond": {"_count": 3, "immediately": {"_count": 3}}, "send": {"_count": 1, "your": {"_count": 1}}, "come": {"_count": 1, "along": {"_count": 1}}, "concentrate": {"_count": 1, "upon": {"_count": 1}}}, "glimmering": {"_count": 8, "by": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "stones": {"_count": 1, "": {"_count": 1}}, "dully": {"_count": 1, "in": {"_count": 1}}, "feebly": {"_count": 1, "": {"_count": 1}}, "palely": {"_count": 1, "in": {"_count": 1}}}, "threelegged": {"_count": 4, "stool": {"_count": 3, "out": {"_count": 1}, "on": {"_count": 1}, "the": {"_count": 1}}, "wardrobe": {"_count": 1, "as": {"_count": 1}}}, "suited": {"_count": 9, "to": {"_count": 2, "Gryffindor": {"_count": 1}, "power": {"_count": 1}}, "him": {"_count": 4, "does": {"_count": 1}, "this": {"_count": 1}, "perfectly": {"_count": 1}, "he": {"_count": 1}}, "Malfoy": {"_count": 1, "who": {"_count": 1}}, "Harry": {"_count": 1, "very": {"_count": 1}}, "the": {"_count": 1, "Slytherins": {"_count": 1}}}, "collapsing": {"_count": 6, "in": {"_count": 1, "front": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "house": {"_count": 1, "rang": {"_count": 1}}, "building": {"_count": 1, "": {"_count": 1}}}, "energy": {"_count": 14, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 3, "worked": {"_count": 1}, "that": {"_count": 1}, "momentum": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}, "to": {"_count": 2, "get": {"_count": 1}, "avoid": {"_count": 1}}, "persecuting": {"_count": 1, "merpeople": {"_count": 1}}, "shouting": {"_count": 1, "": {"_count": 1}}, "necessary": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "making": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}}, "described": {"_count": 17, "as": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "effects": {"_count": 1}, "whole": {"_count": 1}}, "in": {"_count": 2, "this": {"_count": 1}, "her": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 1}, "me": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "telling": {"_count": 1, "them": {"_count": 1}}, "them": {"_count": 1, "as": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "A": {"_count": 1, "cloak": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "cup": {"_count": 1}}}, "respected": {"_count": 3, "him": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "respectable": {"_count": 1}}}, "befuddled": {"_count": 3, "by": {"_count": 1, "our": {"_count": 1}}, "expression": {"_count": 1, "changing": {"_count": 1}}, "and": {"_count": 1, "sleepdeprived": {"_count": 1}}}, "presently": {"_count": 2, "playing": {"_count": 1, "host": {"_count": 1}}, "narrowed": {"_count": 1, "with": {"_count": 1}}}, "host": {"_count": 6, "to": {"_count": 1, "some": {"_count": 1}}, "the": {"_count": 1, "tournament": {"_count": 1}}, "school": {"_count": 1, "is": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "things": {"_count": 1}, "whiterobed": {"_count": 1}}}, "Dementors": {"_count": 24, "are": {"_count": 4, "not": {"_count": 1}, "among": {"_count": 1}, "supposed": {"_count": 1}, "for": {"_count": 1}}, "outside": {"_count": 1, "his": {"_count": 1}}, "Kiss": {"_count": 4, "said": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "whatever": {"_count": 1}}, "cant": {"_count": 1, "see": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "here": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, "?": {"_count": 2}}, "you": {"_count": 1, "useless": {"_count": 1}}, "attacking": {"_count": 1, "the": {"_count": 1}}, "caused": {"_count": 1, "a": {"_count": 1}}, "sent": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "Little": {"_count": 1}}, "dont": {"_count": 1, "run": {"_count": 1}}, "and": {"_count": 1, "Inferi": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}}, "fooled": {"_count": 6, "by": {"_count": 2, "tricks": {"_count": 1}, "an": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "all": {"_count": 1}}}, "Cloaks": {"_count": 5, "he": {"_count": 1, "added": {"_count": 1}}, "Moody": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Shield": {"_count": 1, "Gloves": {"_count": 1}}}, "blandly": {"_count": 4, "and": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Girl": {"_count": 3, "to": {"_count": 1, "make": {"_count": 1}}, "in": {"_count": 1, "charge": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "afoul": {"_count": 2, "of": {"_count": 2, "the": {"_count": 1}, "our": {"_count": 1}}}, "ranks": {"_count": 11, "this": {"_count": 1, "year": {"_count": 1}}, "dodge": {"_count": 1, "the": {"_count": 1}}, "forcing": {"_count": 1, "another": {"_count": 1}}, "of": {"_count": 2, "HeWho": {"_count": 1}, "the": {"_count": 1}}, "forming": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "anything": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "shouting": {"_count": 1, "their": {"_count": 1}}}, "consented": {"_count": 6, "to": {"_count": 6, "fill": {"_count": 1}, "stay": {"_count": 1}, "look": {"_count": 1}, "the": {"_count": 1}, "reappear": {"_count": 1}, "pause": {"_count": 1}}}, "unenthusiastic": {"_count": 2, "applause": {"_count": 2, "": {"_count": 1}, "during": {"_count": 1}}}, "lukewarm": {"_count": 1, "applause": {"_count": 1, "for": {"_count": 1}}}, "Kettleburn": {"_count": 2, "our": {"_count": 1, "Care": {"_count": 1}}, "said": {"_count": 1, "hed": {"_count": 1}}}, "assigned": {"_count": 5, "us": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "essay": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "Slinkhard": {"_count": 1}}, "to": {"_count": 1, "you": {"_count": 1}}}, "ravenous": {"_count": 1, "helped": {"_count": 1, "himself": {"_count": 1}}}, "qualified": {"_count": 12, "wizard": {"_count": 2, "he": {"_count": 1}, "who": {"_count": 1}}, "wizards": {"_count": 1, "have": {"_count": 1}}, "as": {"_count": 2, "very": {"_count": 1}, "a": {"_count": 1}}, "candidates": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "year": {"_count": 1}}, "to": {"_count": 1, "decide": {"_count": 1}}, "Ministry": {"_count": 1, "official": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "said": {"_count": 1}}}, "committed": {"_count": 15, "": {"_count": 2, ".": {"_count": 2}}, "by": {"_count": 1, "Wormtail": {"_count": 1}}, "the": {"_count": 2, "fairly": {"_count": 1}, "crimes": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "those": {"_count": 2, "crimes": {"_count": 1}, "acts": {"_count": 1}}, "during": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "thousand": {"_count": 1}}, "any": {"_count": 1, "such": {"_count": 1}}, "With": {"_count": 1, "a": {"_count": 1}}, "another": {"_count": 1, "murder": {"_count": 1}}, "this": {"_count": 1, "crime": {"_count": 1}}, "later": {"_count": 1, "": {"_count": 1}}}, "morsels": {"_count": 1, "of": {"_count": 1, "pumpkin": {"_count": 1}}}, "Congratulations": {"_count": 7, "Hagrid": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "!": {"_count": 2}}, "Harry": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "getting": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Overcome": {"_count": 1, "with": {"_count": 1, "emotion": {"_count": 1}}}, "\u2018Fortuna": {"_count": 1, "Major": {"_count": 1, "": {"_count": 1}}}, "Major": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "divided": {"_count": 10, "toward": {"_count": 1, "their": {"_count": 1}}, "into": {"_count": 3, "pairs": {"_count": 1}, "cubicles": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "the": {"_count": 1, "relentlessly": {"_count": 1}}, "For": {"_count": 1, "were": {"_count": 1}}, "up": {"_count": 2, "": {"_count": 1}, "obediently": {"_count": 1}}}, "TALONS": {"_count": 1, "AND": {"_count": 1, "TEA": {"_count": 1}}}, "TEA": {"_count": 1, "LEAVES": {"_count": 1, "When": {"_count": 1}}}, "LEAVES": {"_count": 1, "When": {"_count": 1, "Harry": {"_count": 1}}}, "entertaining": {"_count": 8, "a": {"_count": 1, "large": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "nor": {"_count": 1}, "instructive": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "the": {"_count": 1, "public": {"_count": 1}}, "results": {"_count": 1, "a": {"_count": 1}}}, "swooning": {"_count": 3, "fit": {"_count": 1, "and": {"_count": 1}}, "sweating": {"_count": 1, "and": {"_count": 1}}, "girl": {"_count": 1, "who": {"_count": 1}}}, "Ignore": {"_count": 6, "him": {"_count": 2, "said": {"_count": 2}}, "the": {"_count": 1, "quill": {"_count": 1}}, "it": {"_count": 1, "Hermione": {"_count": 1}}, "them": {"_count": 2, "he": {"_count": 1}, "just": {"_count": 1}}}, "pug": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Woooooooo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "thirdyear": {"_count": 7, "course": {"_count": 1, "schedules": {"_count": 1}}, "Hufflepuff": {"_count": 1, "girl": {"_count": 1}}, "girls": {"_count": 3, "paused": {"_count": 1}, "all": {"_count": 1}, "scuttled": {"_count": 1}}, "Hufflepuffs": {"_count": 1, "had": {"_count": 1}}, "boy": {"_count": 1, "who": {"_count": 1}}}, "cocky": {"_count": 2, "last": {"_count": 1, "night": {"_count": 1}}, "look": {"_count": 1, "over": {"_count": 1}}}, "Came": {"_count": 1, "running": {"_count": 1, "into": {"_count": 1}}}, "contemptuous": {"_count": 10, "glance": {"_count": 3, "at": {"_count": 2}, "and": {"_count": 1}}, "look": {"_count": 4, "then": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}, "she": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "manner": {"_count": 1, "": {"_count": 1}}}, "Sort": {"_count": 5, "of": {"_count": 4, "freeze": {"_count": 1}, "thing": {"_count": 2}, "fell": {"_count": 1}}, "too": {"_count": 1, "soon": {"_count": 1}}}, "prisoners": {"_count": 28, "go": {"_count": 1, "mad": {"_count": 1}}, "in": {"_count": 3, "not": {"_count": 1}, "there": {"_count": 1}, "Azkaban": {"_count": 1}}, "were": {"_count": 5, "watching": {"_count": 1}, "dragged": {"_count": 1}, "shunted": {"_count": 1}, "pushed": {"_count": 1}, "forced": {"_count": 1}}, "escaped": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 4}}, "with": {"_count": 1, "them": {"_count": 1}}, "lurched": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 4, "shuffle": {"_count": 1}, "turn": {"_count": 1}, "swivel": {"_count": 1}, "face": {"_count": 1}}, "and": {"_count": 2, "stopped": {"_count": 1}, "into": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "then": {"_count": 1, "dragged": {"_count": 1}}, "Dean": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}}, "messed": {"_count": 11, "up": {"_count": 8, "your": {"_count": 1}, "you": {"_count": 1}, "peoples": {"_count": 1}, "": {"_count": 1}, "Ancient": {"_count": 1}, "so": {"_count": 1}, "again": {"_count": 1}, "Harry": {"_count": 1}}, "around": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 2, "up": {"_count": 2}}}, "polecat": {"_count": 2, "from": {"_count": 1, "one": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "honesly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Divinations": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "North": {"_count": 11, "Tower": {"_count": 10, "": {"_count": 4}, "was": {"_count": 1}, "before": {"_count": 1}, "where": {"_count": 1}, "and": {"_count": 2}, "together": {"_count": 1}}, "Sea": {"_count": 1, "you": {"_count": 1}}}, "breakfasts": {"_count": 2, "hastily": {"_count": 1, "said": {"_count": 1}}, "while": {"_count": 1, "Mrs": {"_count": 1}}}, "fainting": {"_count": 3, "fit": {"_count": 1, "": {"_count": 1}}, "His": {"_count": 1, "small": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "unfamiliar": {"_count": 7, "landing": {"_count": 1, "where": {"_count": 1}}, "desserts": {"_count": 1, "too": {"_count": 1}}, "a": {"_count": 1, "womans": {"_count": 1}}, "brown": {"_count": 1, "owl": {"_count": 1}}, "lamplit": {"_count": 1, "sitting": {"_count": 1}}, "like": {"_count": 1, "having": {"_count": 1}}, "tavern": {"_count": 1, "Mundungus": {"_count": 1}}}, "south": {"_count": 7, "look": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "of": {"_count": 2, "where": {"_count": 1}, "England": {"_count": 1}}, "and": {"_count": 1, "see": {"_count": 1}}, "coast": {"_count": 1, "of": {"_count": 1}}}, "dapplegray": {"_count": 1, "pony": {"_count": 1, "had": {"_count": 1}}}, "pony": {"_count": 6, "had": {"_count": 1, "just": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "gave": {"_count": 1, "up": {"_count": 1}}, "cantering": {"_count": 1, "behind": {"_count": 1}}}, "nonchalantly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "paintings": {"_count": 6, "moving": {"_count": 1, "around": {"_count": 1}}, "of": {"_count": 2, "witches": {"_count": 1}, "merpeople": {"_count": 1}}, "that": {"_count": 2, "were": {"_count": 1}, "lined": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "clanked": {"_count": 4, "into": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "laughing": {"_count": 1, "wheezily": {"_count": 1}}, "down": {"_count": 1, "another": {"_count": 1}}}, "villains": {"_count": 1, "are": {"_count": 1, "these": {"_count": 1}}}, "trespass": {"_count": 5, "upon": {"_count": 2, "my": {"_count": 1}, "your": {"_count": 1}}, "and": {"_count": 2, "attempted": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}}, "lands": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "scorn": {"_count": 3, "at": {"_count": 1, "my": {"_count": 1}}, "a": {"_count": 1, "theory": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "perchance": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "knaves": {"_count": 1, "you": {"_count": 1, "dogs": {"_count": 1}}}, "scabbard": {"_count": 1, "and": {"_count": 1, "began": {"_count": 1}}}, "hopping": {"_count": 4, "up": {"_count": 2, "and": {"_count": 2}}, "hopefully": {"_count": 1, "toward": {"_count": 1}}, "down": {"_count": 1, "off": {"_count": 1}}}, "overbalance": {"_count": 1, "and": {"_count": 1, "he": {"_count": 1}}}, "scurvy": {"_count": 2, "braggart": {"_count": 1, "": {"_count": 1}}, "dog": {"_count": 1, "stand": {"_count": 1}}}, "braggart": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "blade": {"_count": 13, "sank": {"_count": 1, "deeply": {"_count": 1}}, "of": {"_count": 4, "a": {"_count": 1}, "the": {"_count": 1}, "Siriuss": {"_count": 1}, "Gryffindors": {"_count": 1}}, "had": {"_count": 1, "melted": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "into": {"_count": 1, "Hermiones": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "flung": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}}, "visor": {"_count": 4, "to": {"_count": 1, "mop": {"_count": 1}}, "and": {"_count": 1, "toasted": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}}, "advantage": {"_count": 25, "of": {"_count": 13, "the": {"_count": 5}, "Freds": {"_count": 1}, "another": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}, "her": {"_count": 2}, "how": {"_count": 1}, "a": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "his": {"_count": 1, "thin": {"_count": 1}}, "Moody": {"_count": 1, "retorted": {"_count": 1}}, "Kingsley": {"_count": 1, "Shacklebolts": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "He": {"_count": 1, "would": {"_count": 1}}, "there": {"_count": 1, "my": {"_count": 1}}}, "exhaustion": {"_count": 9, "were": {"_count": 1, "looking": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "kept": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 1, "carried": {"_count": 1}}, "or": {"_count": 1, "sadness": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "from": {"_count": 1}, "the": {"_count": 1}}}, "quest": {"_count": 5, "": {"_count": 1, "!": {"_count": 1}}, "to": {"_count": 1, "retrieve": {"_count": 1}}, "were": {"_count": 1, "people": {"_count": 1}}, "for": {"_count": 2, "experience": {"_count": 1}, "the": {"_count": 1}}}, "perish": {"_count": 2, "bravely": {"_count": 1, "in": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}}, "fruitless": {"_count": 5, "tug": {"_count": 1, "tried": {"_count": 1}}, "schemes": {"_count": 1, "it": {"_count": 1}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "hours": {"_count": 1, "trying": {"_count": 1}}, "efforts": {"_count": 1, "": {"_count": 1}}}, "sirs": {"_count": 3, "and": {"_count": 3, "gentle": {"_count": 1}, "miss": {"_count": 2}}}, "crinolines": {"_count": 1, "whose": {"_count": 1, "picture": {"_count": 1}}}, "Puffing": {"_count": 1, "loudly": {"_count": 1, "Harry": {"_count": 1}}}, "spiraling": {"_count": 7, "steps": {"_count": 1, "getting": {"_count": 1}}, "stone": {"_count": 1, "staircase": {"_count": 1}}, "staircase": {"_count": 1, "a": {"_count": 1}}, "moment": {"_count": 1, "it": {"_count": 1}}, "around": {"_count": 1, "their": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "circles": {"_count": 1, "honing": {"_count": 1}}}, "dizzier": {"_count": 2, "and": {"_count": 1, "dizzier": {"_count": 1}}, "until": {"_count": 1, "at": {"_count": 1}}}, "sinisterlooking": {"_count": 1, "monks": {"_count": 1, "": {"_count": 1}}}, "monks": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "several": {"_count": 1, "previous": {"_count": 1}}, "down": {"_count": 1, "by": {"_count": 1}}}, "comradesinarms": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Cadogan": {"_count": 22, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 3}, "?": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "spent": {"_count": 1, "half": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}, "enjoying": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 2, "seemed": {"_count": 1}, "looked": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "proudly": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "the": {"_count": 2, "previous": {"_count": 1}, "knight": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "rushed": {"_count": 1, "from": {"_count": 1}}}, "mental": {"_count": 24, "": {"_count": 6, ".": {"_count": 3}, "?": {"_count": 3}}, "note": {"_count": 4, "to": {"_count": 3}, "never": {"_count": 1}}, "image": {"_count": 2, "of": {"_count": 2}}, "said": {"_count": 2, "George": {"_count": 1}, "Ron": {"_count": 1}}, "Fred": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "safety": {"_count": 1, "of": {"_count": 1}}, "agility": {"_count": 1, "and": {"_count": 1}}, "thing": {"_count": 1, "Dumbledore": {"_count": 1}}, "problem": {"_count": 1, "youve": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "we": {"_count": 1, "havent": {"_count": 1}}, "stuff": {"_count": 1, "I": {"_count": 1}}, "stories": {"_count": 1, "I": {"_count": 1}}}, "\u2018Sibyll": {"_count": 1, "Trelawney": {"_count": 1, "Divination": {"_count": 1}}}, "Trelawney": {"_count": 206, "Divination": {"_count": 1, "teacher": {"_count": 1}}, "moved": {"_count": 1, "into": {"_count": 1}}, "who": {"_count": 9, "had": {"_count": 3}, "gave": {"_count": 1}, "looked": {"_count": 1}, "spent": {"_count": 1}, "was": {"_count": 2}, "seemed": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 15}, "!": {"_count": 2}, "?": {"_count": 2}}, "delicately": {"_count": 1, "rearranged": {"_count": 1}}, "went": {"_count": 3, "on": {"_count": 2}, "very": {"_count": 1}}, "the": {"_count": 1, "firelight": {"_count": 1}}, "continued": {"_count": 1, "placidly": {"_count": 1}}, "seemed": {"_count": 4, "unaware": {"_count": 1}, "to": {"_count": 2}, "too": {"_count": 1}}, "swept": {"_count": 2, "over": {"_count": 1}, "past": {"_count": 1}}, "had": {"_count": 8, "instructed": {"_count": 1}, "heard": {"_count": 1}, "gone": {"_count": 2}, "stiffened": {"_count": 1}, "been": {"_count": 1}, "made": {"_count": 1}, "driven": {"_count": 1}}, "cried": {"_count": 1, "through": {"_count": 1}}, "gazed": {"_count": 1, "in": {"_count": 1}}, "whirled": {"_count": 1, "around": {"_count": 1}}, "was": {"_count": 13, "staring": {"_count": 2}, "now": {"_count": 1}, "their": {"_count": 1}, "peering": {"_count": 1}, "predicting": {"_count": 1}, "looking": {"_count": 2}, "an": {"_count": 1}, "handing": {"_count": 1}, "standing": {"_count": 2}, "just": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "chose": {"_count": 1, "not": {"_count": 1}}, "sank": {"_count": 2, "into": {"_count": 1}, "back": {"_count": 1}}, "surveyed": {"_count": 1, "Hermione": {"_count": 1}}, "in": {"_count": 9, "her": {"_count": 3}, "case": {"_count": 1}, "a": {"_count": 3}, "deep": {"_count": 1}, "throaty": {"_count": 1}}, "packed": {"_count": 1, "away": {"_count": 1}}, "faintly": {"_count": 1, "fair": {"_count": 1}}, "has": {"_count": 1, "predicted": {"_count": 1}}, "She": {"_count": 1, "stopped": {"_count": 1}}, "said": {"_count": 3, "you": {"_count": 1}, "": {"_count": 1}, "Professor": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "gliding": {"_count": 1, "toward": {"_count": 1}}, "however": {"_count": 1, "did": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "ignored": {"_count": 1, "her": {"_count": 1}}, "gave": {"_count": 3, "Professor": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}}, "behaved": {"_count": 1, "almost": {"_count": 1}}, "looked": {"_count": 2, "highly": {"_count": 1}, "thoroughly": {"_count": 1}}, "made": {"_count": 1, "her": {"_count": 1}}, "sitting": {"_count": 3, "with": {"_count": 1}, "down": {"_count": 1}, "on": {"_count": 1}}, "rustled": {"_count": 1, "past": {"_count": 1}}, "as": {"_count": 2, "everyones": {"_count": 1}, "she": {"_count": 1}}, "whispered": {"_count": 1, "lowering": {"_count": 1}}, "breathed": {"_count": 1, "gazing": {"_count": 1}}, "raised": {"_count": 1, "her": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "Ive": {"_count": 1, "just": {"_count": 1}}, "could": {"_count": 1, "join": {"_count": 1}}, "really": {"_count": 2, "seen": {"_count": 1}, "was": {"_count": 1}}, "sat": {"_count": 2, "waiting": {"_count": 1}, "tearstained": {"_count": 1}}, "prompted": {"_count": 1, "delicately": {"_count": 1}}, "scribbling": {"_count": 1, "keenly": {"_count": 1}}, "urged": {"_count": 1, "him": {"_count": 1}}, "sighed": {"_count": 1, "": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "spoke": {"_count": 2, "again": {"_count": 1}, "it": {"_count": 1}}, "make": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "panted": {"_count": 1}}, "Hermione": {"_count": 1, "looked": {"_count": 1}}, "bless": {"_count": 1, "her": {"_count": 1}}, "kept": {"_count": 1, "predicting": {"_count": 1}}, "lived": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "were": {"_count": 1, "sitting": {"_count": 1}}, "know": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "faint": {"_count": 1}}, "sounding": {"_count": 1, "definitely": {"_count": 1}}, "peering": {"_count": 1, "down": {"_count": 1}}, "heard": {"_count": 1, "him": {"_count": 1}}, "told": {"_count": 3, "them": {"_count": 1}, "me": {"_count": 2}}, "should": {"_count": 1, "get": {"_count": 1}}, "nodding": {"_count": 1, "impressively": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 1}, "Parvati": {"_count": 1}}, "looking": {"_count": 2, "thoroughly": {"_count": 1}, "slightly": {"_count": 1}}, "If": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 5, "that": {"_count": 1}, "feeling": {"_count": 1}, "was": {"_count": 1}, "Parvati": {"_count": 1}, "if": {"_count": 1}}, "considered": {"_count": 1, "her": {"_count": 1}}, "or": {"_count": 2, "the": {"_count": 1}, "Hagrid": {"_count": 1}}, "set": {"_count": 1, "them": {"_count": 1}}, "A": {"_count": 1, "T": {"_count": 1}}, "nodded": {"_count": 1, "curtly": {"_count": 1}}, "pulled": {"_count": 1, "her": {"_count": 1}}, "youve": {"_count": 1, "been": {"_count": 1}}, "scowled": {"_count": 1, "at": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "holding": {"_count": 1, "her": {"_count": 1}}, "clutching": {"_count": 1, "convulsively": {"_count": 1}}, "suddenly": {"_count": 1, "in": {"_count": 1}}, "pointed": {"_count": 1, "a": {"_count": 1}}, "finished": {"_count": 1, "dramatically": {"_count": 1}}, "standing": {"_count": 1, "rooted": {"_count": 1}}, "perhaps": {"_count": 1, "she": {"_count": 1}}, "slammed": {"_count": 1, "a": {"_count": 1}}, "loudly": {"_count": 1, "her": {"_count": 1}}, "flounced": {"_count": 1, "back": {"_count": 1}}, "leaping": {"_count": 1, "to": {"_count": 1}}, "mate": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "shes": {"_count": 1}}, "might": {"_count": 1, "soon": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "tears": {"_count": 1, "streaming": {"_count": 1}}, "sink": {"_count": 1, "sobbing": {"_count": 1}}, "shuddered": {"_count": 1, "and": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "continue": {"_count": 1, "to": {"_count": 1}}, "did": {"_count": 1, "Astrology": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}, "dissolving": {"_count": 1, "with": {"_count": 1}}, "hes": {"_count": 1, "been": {"_count": 1}}, "that": {"_count": 2, "I": {"_count": 1}, "he": {"_count": 1}}, "are": {"_count": 2, "both": {"_count": 1}, "dividing": {"_count": 1}}, "for": {"_count": 1, "good": {"_count": 1}}, "appeared": {"_count": 1, "around": {"_count": 1}}, "focusing": {"_count": 1, "upon": {"_count": 1}}, "with": {"_count": 3, "an": {"_count": 1}, "dignity": {"_count": 1}, "a": {"_count": 1}}, "still": {"_count": 1, "isnt": {"_count": 1}}, "to": {"_count": 2, "leave": {"_count": 1}, "her": {"_count": 1}}, "sprawled": {"_count": 1, "upon": {"_count": 1}}, "drawing": {"_count": 1, "her": {"_count": 1}}, "glaring": {"_count": 1, "at": {"_count": 1}}, "sniffily": {"_count": 1, "": {"_count": 1}}, "drew": {"_count": 1, "herself": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "over": {"_count": 1}}, "Ah": {"_count": 1, "yes": {"_count": 1}}}, "ladder": {"_count": 21, "descended": {"_count": 1, "right": {"_count": 1}}, "first": {"_count": 2, "": {"_count": 1}, "so": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 3}}, "to": {"_count": 1, "Professor": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "the": {"_count": 1, "rest": {"_count": 1}}, "toward": {"_count": 1, "Harry": {"_count": 1}}, "glowing": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "that": {"_count": 2, "led": {"_count": 1}, "turned": {"_count": 1}}, "Ron": {"_count": 1, "grumbling": {"_count": 1}}, "slid": {"_count": 1, "down": {"_count": 1}}, "which": {"_count": 1, "Ron": {"_count": 1}}}, "strangestlooking": {"_count": 1, "classroom": {"_count": 1, "he": {"_count": 1}}}, "chintz": {"_count": 7, "armchairs": {"_count": 3, "and": {"_count": 1}, "to": {"_count": 1}, "that": {"_count": 1}}, "chairs": {"_count": 1, "and": {"_count": 1}}, "armchair": {"_count": 2, "so": {"_count": 1}, "appeared": {"_count": 1}}, "chair": {"_count": 1, "and": {"_count": 1}}}, "poufs": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "that": {"_count": 1, "cluttered": {"_count": 1}}, "very": {"_count": 1, "close": {"_count": 1}}}, "draped": {"_count": 18, "with": {"_count": 3, "dark": {"_count": 1}, "scarves": {"_count": 1}, "emerald": {"_count": 1}}, "in": {"_count": 9, "a": {"_count": 2}, "gold": {"_count": 1}, "shawls": {"_count": 2}, "lacy": {"_count": 1}, "lace": {"_count": 1}, "cobwebs": {"_count": 1}, "black": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 2}}, "table": {"_count": 1, "at": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "it": {"_count": 1, "over": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}}, "stiflingly": {"_count": 1, "warm": {"_count": 1, "and": {"_count": 1}}}, "sickly": {"_count": 10, "sort": {"_count": 1, "of": {"_count": 1}}, "green": {"_count": 1, "creature": {"_count": 1}}, "scent": {"_count": 1, "made": {"_count": 1}}, "sentences": {"_count": 1, "She": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "ominous": {"_count": 1, "way": {"_count": 1}}, "smile": {"_count": 2, "": {"_count": 1}, "back": {"_count": 1}}, "and": {"_count": 1, "staring": {"_count": 1}}, "peach": {"_count": 1, "color": {"_count": 1}}}, "heated": {"_count": 5, "a": {"_count": 1, "large": {"_count": 1}}, "argument": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "he": {"_count": 1}}, "discussion": {"_count": 1, "an": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}}, "dustylooking": {"_count": 1, "feathers": {"_count": 1, "stubs": {"_count": 1}}}, "packs": {"_count": 2, "of": {"_count": 1, "tattered": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "array": {"_count": 3, "of": {"_count": 3, "teacups": {"_count": 1}, "countercurses": {"_count": 1}, "violently": {"_count": 1}}}, "physical": {"_count": 7, "world": {"_count": 1, "at": {"_count": 1}}, "well": {"_count": 1, "being": {"_count": 1}}, "injury": {"_count": 1, "": {"_count": 1}}, "pain": {"_count": 3, "": {"_count": 2}, "blazed": {"_count": 1}}, "wound": {"_count": 1, "every": {"_count": 1}}}, "immediate": {"_count": 22, "impression": {"_count": 2, "was": {"_count": 1}, "of": {"_count": 1}}, "danger": {"_count": 2, "": {"_count": 2}}, "reaction": {"_count": 1, "was": {"_count": 1}}, "thought": {"_count": 3, "was": {"_count": 3}}, "removal": {"_count": 1, "to": {"_count": 1}}, "success": {"_count": 2, "Shes": {"_count": 1}, "totally": {"_count": 1}}, "and": {"_count": 1, "predictable": {"_count": 1}}, "aftermath": {"_count": 1, "of": {"_count": 1}}, "collapse": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "desire": {"_count": 1, "to": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "plans": {"_count": 1, "this": {"_count": 1}}, "prospect": {"_count": 1, "was": {"_count": 1}}, "area": {"_count": 1, "": {"_count": 1}}, "dread": {"_count": 1, "that": {"_count": 1}}, "action": {"_count": 1, "": {"_count": 1}}}, "insect": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "humming": {"_count": 1, "gently": {"_count": 1}}, "struck": {"_count": 1, "dumb": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "eyes": {"_count": 1, "squares": {"_count": 1}}}, "gauzy": {"_count": 2, "spangled": {"_count": 1, "shawl": {"_count": 1}}, "shawl": {"_count": 1, "more": {"_count": 1}}}, "spangled": {"_count": 5, "shawl": {"_count": 1, "": {"_count": 1}}, "banner": {"_count": 1, "stretched": {"_count": 1}}, "green": {"_count": 1, "and": {"_count": 1}}, "silver": {"_count": 1, "robes": {"_count": 1}}, "with": {"_count": 1, "golden": {"_count": 1}}}, "shawl": {"_count": 10, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 2, "continued": {"_count": 1}, "then": {"_count": 1}}, "more": {"_count": 1, "closely": {"_count": 1}}, "wrapped": {"_count": 1, "around": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "inclined": {"_count": 1, "her": {"_count": 1}}, "around": {"_count": 1, "her": {"_count": 1}}, "revealing": {"_count": 1, "a": {"_count": 1}}}, "beads": {"_count": 14, "hung": {"_count": 1, "around": {"_count": 1}}, "of": {"_count": 4, "sweat": {"_count": 1}, "light": {"_count": 2}, "blood": {"_count": 1}}, "chains": {"_count": 1, "and": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "quivered": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "always": {"_count": 1}}, "and": {"_count": 2, "bangles": {"_count": 1}, "trailing": {"_count": 1}}, "rattling": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "become": {"_count": 1}}, "was": {"_count": 1, "fixed": {"_count": 1}}}, "encrusted": {"_count": 4, "with": {"_count": 4, "bangles": {"_count": 1}, "jewels": {"_count": 1}, "diamonds": {"_count": 1}, "grime": {"_count": 1}}}, "bangles": {"_count": 5, "and": {"_count": 1, "rings": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "glittered": {"_count": 1, "upon": {"_count": 1}}, "beaming": {"_count": 1, "she": {"_count": 1}}, "clinking": {"_count": 1, "": {"_count": 1}}}, "descending": {"_count": 17, "too": {"_count": 1, "often": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "the": {"_count": 5, "staircases": {"_count": 1}, "steps": {"_count": 2}, "stone": {"_count": 1}, "stairs": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "in": {"_count": 1, "steep": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "into": {"_count": 2, "what": {"_count": 1}, "fog": {"_count": 1}}, "mist": {"_count": 1, "and": {"_count": 1}}, "flames": {"_count": 1, "which": {"_count": 1}}, "again": {"_count": 1, "obscuring": {"_count": 1}}}, "hustle": {"_count": 1, "and": {"_count": 1, "bustle": {"_count": 1}}}, "Inner": {"_count": 8, "Eye": {"_count": 8, "": {"_count": 1}, "tested": {"_count": 1}, "so": {"_count": 1}, "and": {"_count": 1}, "can": {"_count": 1}, "does": {"_count": 1}, "said": {"_count": 1}, "all": {"_count": 1}}}, "Eye": {"_count": 16, "": {"_count": 1, ".": {"_count": 1}}, "tested": {"_count": 1, "if": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "Mundungus": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}, "well": {"_count": 1, "be": {"_count": 1}}, "Moody": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "certificates": {"_count": 1, "and": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "contact": {"_count": 1, "is": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Harry": {"_count": 1}}, "all": {"_count": 1, "too": {"_count": 1}}}, "pronouncement": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "Professor": {"_count": 1}}, "was": {"_count": 1, "followed": {"_count": 1}}, "the": {"_count": 1, "dormitory": {"_count": 1}}}, "arts": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "learned": {"_count": 1}}, "you": {"_count": 1, "seek": {"_count": 1}}, "and": {"_count": 1, "so": {"_count": 1}}}, "outset": {"_count": 2, "that": {"_count": 1, "if": {"_count": 1}}, "of": {"_count": 1, "these": {"_count": 1}}}, "Sight": {"_count": 1, "there": {"_count": 1, "is": {"_count": 1}}}, "talented": {"_count": 9, "though": {"_count": 1, "they": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "and": {"_count": 1, "very": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "area": {"_count": 26, "of": {"_count": 6, "loud": {"_count": 1}, "expertise": {"_count": 1}, "lawn": {"_count": 1}, "materializing": {"_count": 1}, "Defense": {"_count": 1}, "his": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "are": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 1, "in": {"_count": 1}}, "divided": {"_count": 1, "into": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "where": {"_count": 1, "rows": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "looked": {"_count": 1, "pleasantly": {"_count": 1}}, "was": {"_count": 2, "roped": {"_count": 1}, "quite": {"_count": 1}}, "that": {"_count": 2, "Percy": {"_count": 1}, "the": {"_count": 1}}, "o": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}, "beyond": {"_count": 1, "": {"_count": 1}}, "last": {"_count": 1, "week": {"_count": 1}}, "too": {"_count": 1, "long": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "those": {"_count": 1}}}, "smells": {"_count": 8, "and": {"_count": 1, "sudden": {"_count": 1}}, "of": {"_count": 3, "grass": {"_count": 1}, "dinner": {"_count": 1}, "warm": {"_count": 1}}, "okay": {"_count": 1, "Harry": {"_count": 1}}, "good": {"_count": 1, "onion": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "getting": {"_count": 1, "to": {"_count": 1}}}, "disappearings": {"_count": 1, "are": {"_count": 1, "yet": {"_count": 1}}}, "penetrate": {"_count": 21, "the": {"_count": 5, "veiled": {"_count": 1}, "crook": {"_count": 1}, "inner": {"_count": 1}, "darkness": {"_count": 1}, "protection": {"_count": 1}}, "that": {"_count": 1, "thick": {"_count": 1}}, "but": {"_count": 1, "imagine": {"_count": 1}}, "it": {"_count": 1, "flew": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "Mrs": {"_count": 1, "Weasleys": {"_count": 1}}, "your": {"_count": 1, "mind": {"_count": 1}}, "his": {"_count": 2, "mind": {"_count": 1}, "defenses": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}, "what": {"_count": 1, "Harry": {"_count": 1}}, "every": {"_count": 1, "defensive": {"_count": 1}}, "Harry": {"_count": 1, "now": {"_count": 1}}, "its": {"_count": 1, "protection": {"_count": 1}}}, "veiled": {"_count": 5, "mysteries": {"_count": 1, "of": {"_count": 1}}, "witch": {"_count": 2, "": {"_count": 1}, "sitting": {"_count": 1}}, "figure": {"_count": 1, "": {"_count": 1}}, "criticism": {"_count": 1, "": {"_count": 1}}}, "mysteries": {"_count": 4, "of": {"_count": 3, "the": {"_count": 1}, "these": {"_count": 1}, "Hogwarts": {"_count": 1}}, "to": {"_count": 1, "unravel": {"_count": 1}}}, "Gift": {"_count": 1, "granted": {"_count": 1, "to": {"_count": 1}}}, "pouf": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "tremulously": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "raised": {"_count": 1, "her": {"_count": 1}}, "Dudley": {"_count": 1, "nodded": {"_count": 1}}}, "earrings": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "fangs": {"_count": 1}}, "a": {"_count": 1, "fact": {"_count": 1}}, "her": {"_count": 1, "butterbeer": {"_count": 1}}}, "disrupted": {"_count": 3, "in": {"_count": 1, "February": {"_count": 1}}, "and": {"_count": 1, "fragmented": {"_count": 1}}, "the": {"_count": 1, "nightly": {"_count": 1}}}, "unaware": {"_count": 18, "of": {"_count": 8, "it": {"_count": 2}, "the": {"_count": 3}, "anything": {"_count": 1}, "doing": {"_count": 1}, "what": {"_count": 1}}, "that": {"_count": 9, "he": {"_count": 1}, "Harry": {"_count": 1}, "their": {"_count": 2}, "the": {"_count": 1}, "her": {"_count": 1}, "it": {"_count": 1}, "Dudley": {"_count": 1}, "they": {"_count": 1}}, "anythings": {"_count": 1, "happened": {"_count": 1}}}, "Incidentally": {"_count": 3, "that": {"_count": 1, "thing": {"_count": 1}}, "can": {"_count": 1, "Squibs": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}}, "sixteenth": {"_count": 5, "of": {"_count": 3, "October": {"_count": 3}}, "birthday": {"_count": 1, "celebrations": {"_count": 1}}, "year": {"_count": 1, "he": {"_count": 1}}}, "divide": {"_count": 9, "into": {"_count": 4, "pairs": {"_count": 3}, "groups": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "Their": {"_count": 1, "favorites": {"_count": 1}}, "Snape": {"_count": 1, "went": {"_count": 1}}, "the": {"_count": 1, "soul": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}}, "Collect": {"_count": 1, "a": {"_count": 1, "teacup": {"_count": 1}}}, "Swill": {"_count": 1, "these": {"_count": 1, "around": {"_count": 1}}}, "interpret": {"_count": 5, "the": {"_count": 2, "patterns": {"_count": 1}, "shadowy": {"_count": 1}}, "each": {"_count": 2, "others": {"_count": 2}}, "their": {"_count": 1, "findings": {"_count": 1}}}, "patterns": {"_count": 4, "using": {"_count": 1, "pages": {"_count": 1}}, "and": {"_count": 2, "links": {"_count": 1}, "bobbles": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "instructing": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "him": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "bride": {"_count": 1}}}, "select": {"_count": 6, "one": {"_count": 1, "of": {"_count": 1}}, "another": {"_count": 1, "memory": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "an": {"_count": 1, "appropriate": {"_count": 1}}, "group": {"_count": 1, "of": {"_count": 1}}, "band": {"_count": 1, "of": {"_count": 1}}}, "patterned": {"_count": 4, "ones": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 3, "horseshoes": {"_count": 1}, "flashing": {"_count": 1}, "golden": {"_count": 1}}}, "tinkle": {"_count": 6, "of": {"_count": 4, "breaking": {"_count": 2}, "a": {"_count": 1}, "bottles": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}}, "china": {"_count": 14, "": {"_count": 2, ".": {"_count": 2}}, "Neville": {"_count": 1, "had": {"_count": 1}}, "from": {"_count": 1, "inside": {"_count": 1}}, "figure": {"_count": 1, "from": {"_count": 1}}, "came": {"_count": 1, "from": {"_count": 1}}, "which": {"_count": 1, "bore": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "lay": {"_count": 1, "like": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "table": {"_count": 1, "and": {"_count": 1}}, "flew": {"_count": 2, "everywhere": {"_count": 1}, "like": {"_count": 1}}, "and": {"_count": 1, "glass": {"_count": 1}}}, "dustpan": {"_count": 3, "and": {"_count": 1, "brush": {"_count": 1}}, "which": {"_count": 1, "hopped": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "scalding": {"_count": 3, "tea": {"_count": 1, "quickly": {"_count": 1}}, "knives": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "flesh": {"_count": 1}}}, "swilled": {"_count": 2, "the": {"_count": 2, "dregs": {"_count": 1}, "contents": {"_count": 1}}}, "instructed": {"_count": 7, "then": {"_count": 1, "drained": {"_count": 1}}, "pulled": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 2, "or": {"_count": 1}, "read": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 1, "chased": {"_count": 1}}, "his": {"_count": 1, "private": {"_count": 1}}}, "perfumed": {"_count": 10, "smoke": {"_count": 2, "in": {"_count": 1}, "wafting": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "fire": {"_count": 2, "always": {"_count": 1}, "were": {"_count": 1}}, "purple": {"_count": 1, "clouds": {"_count": 1}}, "foam": {"_count": 1, "": {"_count": 1}}, "fumes": {"_count": 1, "washed": {"_count": 1}}, "atmosphere": {"_count": 1, "of": {"_count": 1}}, "tower": {"_count": 1, "room": {"_count": 1}}}, "Broaden": {"_count": 1, "your": {"_count": 1, "minds": {"_count": 1}}}, "mundane": {"_count": 7, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "rumble": {"_count": 1, "of": {"_count": 1}}, "things": {"_count": 1, "as": {"_count": 1}}, "realms": {"_count": 1, "of": {"_count": 1}}, "dirt": {"_count": 1, "imbibing": {"_count": 1}}, "finality": {"_count": 1, "his": {"_count": 1}}}, "\u2018trials": {"_count": 1, "and": {"_count": 1, "suffering": {"_count": 1}}}, "\u2018great": {"_count": 1, "happiness": {"_count": 1, "": {"_count": 1}}}, "stifle": {"_count": 4, "their": {"_count": 1, "laughs": {"_count": 1}}, "the": {"_count": 2, "noise": {"_count": 1}, "sound": {"_count": 1}}, "a": {"_count": 1, "huge": {"_count": 1}}}, "laughs": {"_count": 9, "as": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "out": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "Skeeter": {"_count": 2, "": {"_count": 2}}}, "acorn": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018A": {"_count": 6, "windfall": {"_count": 1, "unexpected": {"_count": 1}}, "display": {"_count": 1, "from": {"_count": 1}}, "boy": {"_count": 1, "like": {"_count": 1}}, "gift": {"_count": 1, "to": {"_count": 1}}, "lone": {"_count": 1, "voice": {"_count": 1}}, "Hundred": {"_count": 1, "Great": {"_count": 1}}}, "windfall": {"_count": 1, "unexpected": {"_count": 1, "gold": {"_count": 1}}}, "hippo": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}}, "reprovingly": {"_count": 7, "to": {"_count": 1, "Ron": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 1, "Riddle": {"_count": 1}}, "folding": {"_count": 1, "up": {"_count": 1}}}, "rotating": {"_count": 2, "it": {"_count": 1, "counterclockwise": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "counterclockwise": {"_count": 9, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "directions": {"_count": 1, "the": {"_count": 1}}, "allow": {"_count": 1, "to": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}, "stir": {"_count": 1, "": {"_count": 1}}, "held": {"_count": 1, "his": {"_count": 1}}, "one": {"_count": 2, "clockwise": {"_count": 1}, "stir": {"_count": 1}}}, "falcon": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "admiration": {"_count": 11, "": {"_count": 4, ".": {"_count": 4}}, "then": {"_count": 1, "said": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "Voldemorts": {"_count": 1}}, "more": {"_count": 1, "clearly": {"_count": 1}}, "and": {"_count": 1, "incredulity": {"_count": 1}}, "back": {"_count": 1, "where": {"_count": 1}}}, "sheepishly": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "him": {"_count": 1}}}, "vacant": {"_count": 9, "armchair": {"_count": 1, "her": {"_count": 1}}, "table": {"_count": 1, "between": {"_count": 1}}, "smile": {"_count": 1, "that": {"_count": 1}}, "positions": {"_count": 1, "of": {"_count": 1}}, "expression": {"_count": 1, "and": {"_count": 1}}, "seat": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "made": {"_count": 1}, "unknowing": {"_count": 1}}, "sweetness": {"_count": 1, "": {"_count": 1}}}, "Trelawneys": {"_count": 44, "chair": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "huge": {"_count": 1, "eyes": {"_count": 1}}, "ladder": {"_count": 1, "and": {"_count": 1}}, "classroom": {"_count": 4, "": {"_count": 1}, "twenty": {"_count": 1}, "trying": {"_count": 1}, "when": {"_count": 1}}, "stifling": {"_count": 1, "tower": {"_count": 1}}, "enormous": {"_count": 1, "eyes": {"_count": 1}}, "tower": {"_count": 1, "room": {"_count": 1}}, "room": {"_count": 4, "": {"_count": 2}, "she": {"_count": 1}, "with": {"_count": 1}}, "voice": {"_count": 2, "suddenly": {"_count": 1}, "called": {"_count": 1}}, "conversation": {"_count": 1, "that": {"_count": 1}}, "head": {"_count": 2, "fell": {"_count": 1}, "snapped": {"_count": 1}}, "words": {"_count": 2, "still": {"_count": 1}, "": {"_count": 1}}, "prediction": {"_count": 2, "": {"_count": 2}}, "rambling": {"_count": 1, "talks": {"_count": 1}}, "mystical": {"_count": 1, "whisper": {"_count": 1}}, "predictions": {"_count": 1, "tonight": {"_count": 1}}, "fire": {"_count": 1, "": {"_count": 1}}, "habit": {"_count": 1, "of": {"_count": 1}}, "seat": {"_count": 1, "": {"_count": 1}}, "wake": {"_count": 1, "listening": {"_count": 1}}, "shoulder": {"_count": 1, "making": {"_count": 1}}, "side": {"_count": 1, "until": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "on": {"_count": 1, "probation": {"_count": 1}}, "increasingly": {"_count": 1, "hysterical": {"_count": 1}}, "terrifying": {"_count": 1, "vision": {"_count": 1}}, "other": {"_count": 2, "arm": {"_count": 1}, "side": {"_count": 1}}, "luggage": {"_count": 1, "rose": {"_count": 1}}, "said": {"_count": 1, "Ernie": {"_count": 1}}, "Inner": {"_count": 1, "Eye": {"_count": 1}}, "continual": {"_count": 1, "predictions": {"_count": 1}}, "prophecy": {"_count": 1, "": {"_count": 1}}}, "Grim": {"_count": 18, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "thats": {"_count": 1, "thats": {"_count": 1}}, "and": {"_count": 2, "die": {"_count": 1}, "died": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "Snitch": {"_count": 1}}, "not": {"_count": 2, "even": {"_count": 1}, "now": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "again": {"_count": 2, "Professor": {"_count": 1}, "": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}}, "spectral": {"_count": 2, "dog": {"_count": 1, "that": {"_count": 1}}, "existence": {"_count": 1, "for": {"_count": 1}}}, "churchyards": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "surveyed": {"_count": 15, "Hermione": {"_count": 1, "with": {"_count": 1}}, "Harry": {"_count": 6, "": {"_count": 2}, "and": {"_count": 1}, "closely": {"_count": 1}, "out": {"_count": 1}, "through": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "himself": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 3, "battle": {"_count": 1}, "class": {"_count": 1}, "room": {"_count": 1}}, "him": {"_count": 3, "unblinkingly": {"_count": 1}, "magisterially": {"_count": 1}, "for": {"_count": 1}}}, "perceive": {"_count": 1, "very": {"_count": 1, "little": {"_count": 1}}}, "aura": {"_count": 7, "around": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "of": {"_count": 3, "power": {"_count": 1}, "distinct": {"_count": 1}, "tedious": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "cast": {"_count": 1, "by": {"_count": 1}}}, "receptivity": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "resonances": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "donkey": {"_count": 1, "from": {"_count": 1, "here": {"_count": 1}}}, "mistiest": {"_count": 2, "voice": {"_count": 1, "": {"_count": 1}}, "most": {"_count": 1, "faraway": {"_count": 1}}}, "Silently": {"_count": 5, "the": {"_count": 1, "class": {"_count": 1}}, "they": {"_count": 2, "tramped": {"_count": 1}, "struggled": {"_count": 1}}, "she": {"_count": 1, "handed": {"_count": 1}}, "Griphook": {"_count": 1, "slipped": {"_count": 1}}}, "extrahard": {"_count": 1, "to": {"_count": 1, "catch": {"_count": 1}}}, "Animagi": {"_count": 7, "wizards": {"_count": 1, "who": {"_count": 1}}, "in": {"_count": 1, "class": {"_count": 1}}, "this": {"_count": 1, "century": {"_count": 1}}, "running": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "illegally": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "transformed": {"_count": 19, "herself": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "!": {"_count": 1}, "?": {"_count": 1}}, "into": {"_count": 4, "such": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "girls": {"_count": 1}}, "said": {"_count": 1, "Black": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "again": {"_count": 1, "into": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "surely": {"_count": 1}}, "itself": {"_count": 1, "into": {"_count": 1}}, "various": {"_count": 1, "aspects": {"_count": 1}}}, "spectacle": {"_count": 2, "markings": {"_count": 2, "around": {"_count": 2}}}, "Everybodys": {"_count": 1, "heads": {"_count": 1, "turned": {"_count": 1}}}, "Sibyll": {"_count": 15, "Trelawney": {"_count": 4, "has": {"_count": 1}, "may": {"_count": 1}, "spoke": {"_count": 1}, "that": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 3}}, "Trelawneys": {"_count": 1, "classroom": {"_count": 1}}, "back": {"_count": 1, "upstairs": {"_count": 1}}, "was": {"_count": 1, "referring": {"_count": 1}}, "chose": {"_count": 1, "for": {"_count": 1}}}, "predicted": {"_count": 8, "the": {"_count": 2, "death": {"_count": 1}, "sixth": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}, "Snape": {"_count": 1, "could": {"_count": 1}}, "Angelinas": {"_count": 1, "reaction": {"_count": 1}}, "in": {"_count": 1, "later": {"_count": 1}}, "it": {"_count": 1, "or": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "conceal": {"_count": 14, "from": {"_count": 3, "you": {"_count": 1}, "Hermione": {"_count": 1}, "your": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "himself": {"_count": 2, "behind": {"_count": 1}, "": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "whereabouts": {"_count": 1}}, "her": {"_count": 1, "obvious": {"_count": 1}}, "how": {"_count": 1, "much": {"_count": 1}}, "his": {"_count": 1, "magical": {"_count": 1}}, "anything": {"_count": 1, "from": {"_count": 1}}, "you": {"_count": 1, "from": {"_count": 1}}, "ourselves": {"_count": 1, "well": {"_count": 1}}}, "Seers": {"_count": 3, "are": {"_count": 1, "very": {"_count": 1}}, "have": {"_count": 1, "always": {"_count": 1}}, "unleashed": {"_count": 1, "from": {"_count": 1}}}, "matterof": {"_count": 1, "fact": {"_count": 1, "tone": {"_count": 1}}}, "assure": {"_count": 17, "you": {"_count": 17, "that": {"_count": 3}, "Harry": {"_count": 1}, "": {"_count": 2}, "I": {"_count": 5}, "he": {"_count": 1}, "when": {"_count": 1}, "ask": {"_count": 1}, "said": {"_count": 1}, "my": {"_count": 1}, "Yaxley": {"_count": 1}}}, "befuddling": {"_count": 1, "perfume": {"_count": 1, "of": {"_count": 1}}}, "stew": {"_count": 15, "toward": {"_count": 1, "him": {"_count": 1}}, "onto": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "before": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "stood": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 2, "this": {"_count": 1}, "their": {"_count": 1}}, "an": {"_count": 1, "iron": {"_count": 1}}, "skidded": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "and": {"_count": 1, "treacle": {"_count": 1}}}, "spooned": {"_count": 1, "stew": {"_count": 1, "onto": {"_count": 1}}}, "Bilius": {"_count": 3, "saw": {"_count": 1, "one": {"_count": 1}}, "Weasley": {"_count": 1, "I": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}}, "twentyfour": {"_count": 10, "hours": {"_count": 9, "later": {"_count": 1}, "in": {"_count": 1}, "apart": {"_count": 1}, "time": {"_count": 1}, "ago": {"_count": 2}, "at": {"_count": 1}, "for": {"_count": 1}, "": {"_count": 1}}, "once": {"_count": 1, "when": {"_count": 1}}}, "Coincidence": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "Grims": {"_count": 2, "scare": {"_count": 1, "the": {"_count": 1}}, "not": {"_count": 1, "an": {"_count": 1}}}, "daylights": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "wordlessly": {"_count": 9, "at": {"_count": 2, "Hermione": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "after": {"_count": 1, "Sirius": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "Harrys": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "immobilized": {"_count": 1, "Harry": {"_count": 1}}}, "guesswork": {"_count": 5, "if": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "speculation": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "carrot": {"_count": 2, "flew": {"_count": 1, "everywhere": {"_count": 1}}, "sticks": {"_count": 1, "Harry": {"_count": 1}}}, "absolute": {"_count": 10, "rubbish": {"_count": 1, "compared": {"_count": 1}}, "uproar": {"_count": 1, "Percy": {"_count": 1}}, "that": {"_count": 1, "nobody": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "irretrievable": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "before": {"_count": 1, "continuing": {"_count": 1}}, "sense": {"_count": 1, "to": {"_count": 1}}, "proof": {"_count": 1, "that": {"_count": 1}}}, "Yesterdays": {"_count": 1, "rain": {"_count": 1, "had": {"_count": 1}}}, "underfoot": {"_count": 4, "as": {"_count": 2, "they": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}}, "onlytoofamiliar": {"_count": 1, "backs": {"_count": 1, "ahead": {"_count": 1}}}, "animatedly": {"_count": 6, "to": {"_count": 3, "Crabbe": {"_count": 1}, "tiny": {"_count": 1}, "Roger": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "her": {"_count": 1}}}, "experiences": {"_count": 5, "in": {"_count": 2, "there": {"_count": 1}, "common": {"_count": 1}}, "of": {"_count": 1, "your": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "belted": {"_count": 1, "their": {"_count": 1, "book": {"_count": 1}}}, "binder": {"_count": 1, "clips": {"_count": 1, "": {"_count": 1}}}, "clips": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "coiled": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}}, "Hasn": {"_count": 2, "hasn": {"_count": 1, "anyone": {"_count": 1}}, "Moody": {"_count": 1, "taught": {"_count": 1}}}, "hasn": {"_count": 3, "anyone": {"_count": 1, "bin": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}}, "crestfallen": {"_count": 8, "": {"_count": 6, ".": {"_count": 6}}, "disbelieving": {"_count": 1, "face": {"_count": 1}}, "Harry": {"_count": 1, "watched": {"_count": 1}}}, "forefinger": {"_count": 11, "down": {"_count": 1, "its": {"_count": 1}}, "was": {"_count": 1, "stuck": {"_count": 1}}, "and": {"_count": 3, "tickled": {"_count": 1}, "thumb": {"_count": 1}, "restored": {"_count": 1}}, "to": {"_count": 4, "the": {"_count": 3}, "it": {"_count": 1}}, "a": {"_count": 1, "millimeter": {"_count": 1}}, "raised": {"_count": 1, "pedantically": {"_count": 1}}}, "tremendously": {"_count": 2, "funny": {"_count": 1, "": {"_count": 1}}, "hopeful": {"_count": 1, "and": {"_count": 1}}}, "witty": {"_count": 2, "giving": {"_count": 1, "us": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "downcast": {"_count": 4, "and": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Harry": {"_count": 1, "could": {"_count": 1}}}, "success": {"_count": 18, "": {"_count": 4, ".": {"_count": 4}}, "the": {"_count": 1, "rest": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "their": {"_count": 1}}, "said": {"_count": 1, "George": {"_count": 1}}, "Harry": {"_count": 1, "hung": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "meanwhile": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "Shes": {"_count": 1, "been": {"_count": 1}}, "totally": {"_count": 1, "revolutionizing": {"_count": 1}}, "finally": {"_count": 1, "Hermione": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "failure": {"_count": 1}}}, "Righ": {"_count": 9, "then": {"_count": 2, "said": {"_count": 1}, "Harry": {"_count": 1}}, "said": {"_count": 4, "Hagrid": {"_count": 4}}, "now": {"_count": 1, "who": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "God": {"_count": 18, "this": {"_count": 1, "place": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "my": {"_count": 1, "father": {"_count": 1}}, "Diggory": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Rest": {"_count": 1, "Ye": {"_count": 1}}, "you": {"_count": 2, "should": {"_count": 1}, "inherited": {"_count": 1}}, "what": {"_count": 1, "an": {"_count": 1}}, "shivered": {"_count": 1, "Ron": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "thank": {"_count": 1, "God": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "she": {"_count": 1, "took": {"_count": 1}}, "thats": {"_count": 1, "revolting": {"_count": 1}}, "I": {"_count": 1, "hope": {"_count": 1}}, "bless": {"_count": 1, "em": {"_count": 1}}}, "fatherll": {"_count": 2, "have": {"_count": 1, "a": {"_count": 1}}, "reward": {"_count": 1, "us": {"_count": 1}}}, "Trotting": {"_count": 2, "toward": {"_count": 1, "them": {"_count": 1}}, "around": {"_count": 1, "talking": {"_count": 1}}}, "eagles": {"_count": 1, "with": {"_count": 1, "cruel": {"_count": 1}}}, "steelcolored": {"_count": 1, "beaks": {"_count": 1, "and": {"_count": 1}}}, "chain": {"_count": 37, "and": {"_count": 5, "the": {"_count": 1}, "stared": {"_count": 1}, "iron": {"_count": 1}, "floated": {"_count": 1}, "next": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "out": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 4, "his": {"_count": 3}, "her": {"_count": 1}}, "of": {"_count": 6, "the": {"_count": 5}, "apothecaries": {"_count": 1}}, "off": {"_count": 1, "Harrys": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "clattering": {"_count": 1, "loudly": {"_count": 1}}, "in": {"_count": 3, "large": {"_count": 1}, "the": {"_count": 1}, "some": {"_count": 1}}, "appeared": {"_count": 1, "out": {"_count": 1}}, "which": {"_count": 1, "began": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "slithered": {"_count": 1, "back": {"_count": 1}}, "then": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "over": {"_count": 1}}, "his": {"_count": 1, "frozen": {"_count": 1}}}, "jogging": {"_count": 7, "into": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "keep": {"_count": 3}}, "toward": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "happily": {"_count": 1, "toward": {"_count": 1}}}, "Gee": {"_count": 1, "up": {"_count": 1, "there": {"_count": 1}}}, "tethered": {"_count": 12, "the": {"_count": 1, "creatures": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "and": {"_count": 1, "isolated": {"_count": 1}}, "in": {"_count": 2, "me": {"_count": 1}, "front": {"_count": 1}}, "to": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "dragon": {"_count": 1, "let": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}}, "Hippogriffs": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "don": {"_count": 1, "trust": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "Beauiful": {"_count": 1, "aren": {"_count": 1, "they": {"_count": 1}}}, "hippogriffs": {"_count": 15, "gleaming": {"_count": 1, "coats": {"_count": 1}}, "is": {"_count": 1, "theyre": {"_count": 1}}, "are": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "tossing": {"_count": 1}}, "hindquarters": {"_count": 1, "": {"_count": 1}}, "wings": {"_count": 1, "beat": {"_count": 1}}, "one": {"_count": 1, "by": {"_count": 1}}, "fer": {"_count": 1, "later": {"_count": 1}}, "attack": {"_count": 1, "if": {"_count": 1}}, "as": {"_count": 1, "good": {"_count": 1}}, "SPLAT": {"_count": 1, "": {"_count": 1}}, "escape": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "I": {"_count": 1, "haven": {"_count": 1}}, "room": {"_count": 1, "where": {"_count": 1}}}, "roan": {"_count": 1, "gleaming": {"_count": 1, "chestnut": {"_count": 1}}}, "insult": {"_count": 17, "one": {"_count": 1, "cause": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 6, "her": {"_count": 2}, "injury": {"_count": 1}, "throw": {"_count": 1}, "his": {"_count": 1}, "Cedrics": {"_count": 1}}, "my": {"_count": 1, "mother": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "Harry": {"_count": 2, "felt": {"_count": 1}, "Potter": {"_count": 1}}, "human": {"_count": 1, "": {"_count": 1}}, "frankly": {"_count": 1, "an": {"_count": 1}}, "our": {"_count": 1, "intelligence": {"_count": 1}}}, "disrupt": {"_count": 2, "the": {"_count": 1, "lesson": {"_count": 1}}, "everyday": {"_count": 1, "life": {"_count": 1}}}, "hippogriff": {"_count": 54, "ter": {"_count": 1, "make": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "was": {"_count": 5, "still": {"_count": 1}, "lying": {"_count": 1}, "convicted": {"_count": 1}, "executed": {"_count": 1}, "making": {"_count": 1}}, "suddenly": {"_count": 1, "bent": {"_count": 1}}, "and": {"_count": 2, "reached": {"_count": 1}, "my": {"_count": 1}}, "closed": {"_count": 1, "its": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "rose": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 9}, "?": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "question": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "should": {"_count": 1, "be": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "off": {"_count": 1}}, "its": {"_count": 1, "gotta": {"_count": 1}}, "might": {"_count": 1, "get": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "appear": {"_count": 1, "to": {"_count": 1}}, "tethered": {"_count": 1, "to": {"_count": 1}}, "Buckbeak": {"_count": 3, "hereafter": {"_count": 1}, "": {"_count": 1}, "was": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "beat": {"_count": 1, "his": {"_count": 1}}, "behind": {"_count": 1, "Hermione": {"_count": 1}}, "gave": {"_count": 1, "one": {"_count": 1}}, "took": {"_count": 1, "off": {"_count": 1}}, "to": {"_count": 1, "safety": {"_count": 1}}, "called": {"_count": 1, "Buckbeak": {"_count": 1}}, "for": {"_count": 1, "each": {"_count": 1}}, "yesterday": {"_count": 1, "and": {"_count": 1}}, "they": {"_count": 1, "once": {"_count": 1}}, "without": {"_count": 1, "breaking": {"_count": 1}}, "tattooed": {"_count": 1, "across": {"_count": 1}}, "circling": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "Ive": {"_count": 1}}, "scratching": {"_count": 1, "at": {"_count": 1}}}, "bows": {"_count": 9, "back": {"_count": 1, "yehre": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "raised": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 4, "arrows": {"_count": 2}, "then": {"_count": 1}, "clips": {"_count": 1}}, "hanging": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}}, "sharpish": {"_count": 1, "cause": {"_count": 1, "those": {"_count": 1}}}, "misgivings": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "increased": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "tossing": {"_count": 4, "their": {"_count": 1, "fierce": {"_count": 1}}, "his": {"_count": 1, "sharp": {"_count": 1}}, "her": {"_count": 1, "long": {"_count": 1}}, "Defensive": {"_count": 1, "Magical": {"_count": 1}}}, "flexing": {"_count": 10, "their": {"_count": 2, "powerful": {"_count": 1}, "arms": {"_count": 1}}, "its": {"_count": 2, "long": {"_count": 2}}, "his": {"_count": 3, "claws": {"_count": 1}, "fingers": {"_count": 1}, "muscles": {"_count": 1}}, "her": {"_count": 1, "arm": {"_count": 1}}, "it": {"_count": 1, "slightly": {"_count": 1}}, "movement": {"_count": 1, "of": {"_count": 1}}}, "Buckbeak": {"_count": 104, "": {"_count": 22, ".": {"_count": 18}, "!": {"_count": 3}, "?": {"_count": 1}}, "had": {"_count": 3, "turned": {"_count": 1}, "dug": {"_count": 1}, "flown": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "stood": {"_count": 2, "up": {"_count": 1}, "quite": {"_count": 1}}, "flew": {"_count": 1, "him": {"_count": 1}}, "back": {"_count": 2, "into": {"_count": 1}, "": {"_count": 1}}, "isnt": {"_count": 2, "a": {"_count": 1}, "dangerous": {"_count": 1}}, "the": {"_count": 5, "hippogriff": {"_count": 4}, "hippogriffs": {"_count": 1}}, "is": {"_count": 3, "safe": {"_count": 1}, "going": {"_count": 1}, "yours": {"_count": 1}}, "Hagrid": {"_count": 2, "drew": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 1, "no": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 3}}, "spat": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}, "was": {"_count": 3, "going": {"_count": 1}, "ferreting": {"_count": 1}, "tethered": {"_count": 1}}, "didnt": {"_count": 1, "join": {"_count": 1}}, "lost": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "very": {"_count": 1}}, "up": {"_count": 3, "to": {"_count": 2}, "": {"_count": 1}}, "they": {"_count": 1, "can": {"_count": 1}}, "hereafter": {"_count": 1, "called": {"_count": 1}}, "sank": {"_count": 2, "to": {"_count": 1}, "into": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 2, "murmured": {"_count": 1}, "Finished": {"_count": 1}}, "move": {"_count": 2, "Harry": {"_count": 1}, "faster": {"_count": 1}}, "snapped": {"_count": 1, "his": {"_count": 1}}, "broke": {"_count": 1, "into": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "has": {"_count": 1, "indeed": {"_count": 1}}, "stopped": {"_count": 1, "fighting": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "cantering": {"_count": 1, "along": {"_count": 1}}, "flashed": {"_count": 1, "past": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "bored": {"_count": 1, "was": {"_count": 1}}, "soared": {"_count": 1, "straight": {"_count": 1}}, "forward": {"_count": 1, "": {"_count": 1}}, "turned": {"_count": 1, "": {"_count": 1}}, "slowed": {"_count": 1, "down": {"_count": 1}}, "firmly": {"_count": 1, "on": {"_count": 1}}, "landed": {"_count": 1, "with": {"_count": 1}}, "pawed": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "facing": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "and": {"_count": 3, "Pettigrew": {"_count": 1}, "I": {"_count": 1}, "since": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "bent": {"_count": 1, "his": {"_count": 1}}, "tossed": {"_count": 1, "his": {"_count": 1}}, "flinging": {"_count": 1, "himself": {"_count": 1}}, "goodbye": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "dead": {"_count": 1, "rats": {"_count": 1}}, "resumed": {"_count": 1, "his": {"_count": 1}}, "would": {"_count": 1, "prefer": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Witherwings": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}}, "Thas": {"_count": 14, "it": {"_count": 2, "said": {"_count": 1}, "Harry": {"_count": 1}}, "better": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "all": {"_count": 1, "": {"_count": 1}}, "next": {"_count": 1, "lesson": {"_count": 1}}, "my": {"_count": 1, "boy": {"_count": 1}}, "brave": {"_count": 1, "of": {"_count": 1}}, "exactly": {"_count": 1, "right": {"_count": 1}}, "good": {"_count": 1, "": {"_count": 1}}, "how": {"_count": 1, "you": {"_count": 1}}, "gotta": {"_count": 1, "be": {"_count": 1}}, "thas": {"_count": 1, "righ": {"_count": 1}}, "very": {"_count": 1, "nice": {"_count": 1}}}, "exposing": {"_count": 2, "the": {"_count": 2, "back": {"_count": 1}, "forearm": {"_count": 1}}}, "haughtily": {"_count": 6, "at": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "up": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}}, "unmistakable": {"_count": 20, "bow": {"_count": 1, "": {"_count": 1}}, "anger": {"_count": 1, "": {"_count": 1}}, "swish": {"_count": 1, "and": {"_count": 1}}, "bewilderment": {"_count": 1, "the": {"_count": 1}}, "hunting": {"_count": 1, "cry": {"_count": 1}}, "sounds": {"_count": 2, "of": {"_count": 2}}, "sound": {"_count": 2, "of": {"_count": 2}}, "though": {"_count": 1, "his": {"_count": 1}}, "signs": {"_count": 4, "of": {"_count": 4}}, "air": {"_count": 1, "of": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "bellowing": {"_count": 1, "roar": {"_count": 1}}, "voice": {"_count": 1, "deep": {"_count": 1}}, "noises": {"_count": 1, "of": {"_count": 1}}}, "ecstatic": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "triumphant": {"_count": 1, "": {"_count": 1}}}, "Pat": {"_count": 1, "his": {"_count": 1, "beak": {"_count": 1}}}, "bargained": {"_count": 2, "for": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}}, "joint": {"_count": 2, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "free": {"_count": 1, "periods": {"_count": 1}}}, "Buckbeaks": {"_count": 24, "wing": {"_count": 1, "and": {"_count": 1}}, "case": {"_count": 2, "against": {"_count": 1}, "mind": {"_count": 1}}, "trial": {"_count": 1, "was": {"_count": 1}}, "defense": {"_count": 1, "the": {"_count": 1}}, "appeal": {"_count": 3, "": {"_count": 1}, "its": {"_count": 1}, "started": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "fierce": {"_count": 2, "orange": {"_count": 2}}, "neck": {"_count": 1, "": {"_count": 1}}, "rope": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "back": {"_count": 1}}, "back": {"_count": 2, "and": {"_count": 2}}, "sides": {"_count": 2, "with": {"_count": 2}}, "wings": {"_count": 1, "fell": {"_count": 1}}, "room": {"_count": 2, "singing": {"_count": 1}, "for": {"_count": 1}}, "wouldbe": {"_count": 1, "killer": {"_count": 1}}, "safety": {"_count": 1, "to": {"_count": 1}}}, "hindquarters": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "almost": {"_count": 1}}}, "assorted": {"_count": 5, "feet": {"_count": 1, "hit": {"_count": 1}}, "spellbooks": {"_count": 1, "": {"_count": 1}}, "meat": {"_count": 1, "pies": {"_count": 1}}, "hangerson": {"_count": 1, "who": {"_count": 1}}, "rags": {"_count": 1, "and": {"_count": 1}}}, "Emboldened": {"_count": 1, "by": {"_count": 1, "Harrys": {"_count": 1}}}, "repeatedly": {"_count": 10, "backward": {"_count": 1, "from": {"_count": 1}}, "over": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "rebuffing": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "panicky": {"_count": 1, "convinced": {"_count": 1}}}, "disdainful": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 2, "though": {"_count": 1}, "they": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "smile": {"_count": 1, "playing": {"_count": 1}}, "even": {"_count": 1, "disappointed": {"_count": 1}}}, "brute": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "strength": {"_count": 1, "they": {"_count": 1}}}, "dyin": {"_count": 4, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "out": {"_count": 2, "fer": {"_count": 1}, "faster": {"_count": 1}}}, "gash": {"_count": 6, "on": {"_count": 2, "Malfoys": {"_count": 1}, "her": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "appeared": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "flexed": {"_count": 4, "their": {"_count": 1, "muscles": {"_count": 1}}, "the": {"_count": 2, "fingers": {"_count": 1}, "shining": {"_count": 1}}, "his": {"_count": 1, "short": {"_count": 1}}}, "cuts": {"_count": 12, "in": {"_count": 1, "about": {"_count": 1}}, "finally": {"_count": 1, "only": {"_count": 1}}, "on": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 2}}, "there": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "nasty": {"_count": 1}}, "still": {"_count": 1, "seemed": {"_count": 1}}, "and": {"_count": 1, "scratches": {"_count": 1}}, "from": {"_count": 1, "Hermiones": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "appeared": {"_count": 1, "upon": {"_count": 1}}}, "injuries": {"_count": 25, "mended": {"_count": 1, "magically": {"_count": 1}}, "then": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 5}, "?": {"_count": 3}, "!": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "or": {"_count": 2, "accidents": {"_count": 1}, "strangely": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Oh": {"_count": 1, "well": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "during": {"_count": 1, "practice": {"_count": 1}}, "from": {"_count": 1, "Dark": {"_count": 1}}, "inflicted": {"_count": 1, "by": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "thrown": {"_count": 1}}}, "steakandkidney": {"_count": 5, "pudding": {"_count": 2, "": {"_count": 2}}, "pie": {"_count": 3, "which": {"_count": 1}, "ready": {"_count": 1}, "that": {"_count": 1}}}, "version": {"_count": 17, "of": {"_count": 15, "how": {"_count": 2}, "events": {"_count": 4}, "the": {"_count": 3}, "Percy": {"_count": 1}, "An": {"_count": 1}, "Scrimgeours": {"_count": 1}, "what": {"_count": 1}, "his": {"_count": 1}, "historys": {"_count": 1}}, "from": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}}, "twilight": {"_count": 10, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 2, "there": {"_count": 1}, "stars": {"_count": 1}}, "time": {"_count": 1, "between": {"_count": 1}}, "Midnight": {"_count": 1, "our": {"_count": 1}}, "undone": {"_count": 1, "by": {"_count": 1}}}, "Cmin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "shirtsleeves": {"_count": 1, "at": {"_count": 1, "his": {"_count": 1}}}, "tankard": {"_count": 13, "almost": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "from": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "choked": {"_count": 1}, "watched": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "set": {"_count": 1, "it": {"_count": 1}}}, "fired": {"_count": 12, "Hagrid": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "rubbish": {"_count": 1, "everywhere": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "all": {"_count": 1, "pointing": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "off": {"_count": 1, "a": {"_count": 1}}, "another": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 1, "curse": {"_count": 1}}, "Stunning": {"_count": 1, "Spells": {"_count": 1}}}, "int": {"_count": 1, "it": {"_count": 1, "after": {"_count": 1}}}, "moanin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "faking": {"_count": 6, "it": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}}, "regrew": {"_count": 2, "half": {"_count": 1, "my": {"_count": 1}}, "in": {"_count": 1, "its": {"_count": 1}}}, "govnors": {"_count": 1, "have": {"_count": 1, "bin": {"_count": 1}}}, "Shoulda": {"_count": 2, "left": {"_count": 1, "hippogriffs": {"_count": 1}}, "known": {"_count": 1, "": {"_count": 1}}}, "flobberworms": {"_count": 8, "or": {"_count": 1, "summat": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "slimy": {"_count": 1, "throats": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "flourished": {"_count": 1, "best": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "from": {"_count": 1, "good": {"_count": 1}}}, "Tears": {"_count": 9, "leaked": {"_count": 1, "out": {"_count": 1}}, "fill": {"_count": 1, "those": {"_count": 1}}, "and": {"_count": 1, "tantrums": {"_count": 1}}, "had": {"_count": 1, "clearly": {"_count": 1}}, "were": {"_count": 4, "falling": {"_count": 1}, "pouring": {"_count": 1}, "dripping": {"_count": 1}, "sliding": {"_count": 1}}, "flowed": {"_count": 1, "down": {"_count": 1}}}, "bonebreaking": {"_count": 1, "hug": {"_count": 1, "": {"_count": 1}}}, "drenching": {"_count": 2, "them": {"_count": 1, "all": {"_count": 1}}, "the": {"_count": 1, "polished": {"_count": 1}}}, "DYEH": {"_count": 1, "THINK": {"_count": 1, "YOURE": {"_count": 1}}}, "DOIN": {"_count": 1, "EH": {"_count": 1, "": {"_count": 1}}}, "EH": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "YEH": {"_count": 3, "RE": {"_count": 1, "NOT": {"_count": 1}}, "DON": {"_count": 1, "GRAB": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "RE": {"_count": 1, "NOT": {"_count": 1, "TO": {"_count": 1}}}, "WANDERIN": {"_count": 1, "AROUND": {"_count": 1, "AFTER": {"_count": 1}}}, "AROUND": {"_count": 2, "AFTER": {"_count": 1, "DARK": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "AFTER": {"_count": 3, "DARK": {"_count": 1, "HARRY": {"_count": 1}}, "THE": {"_count": 1, "BURIAL": {"_count": 1}}, "MY": {"_count": 1, "MUM": {"_count": 1}}}, "DARK": {"_count": 6, "HARRY": {"_count": 1, "": {"_count": 1}}, "MARK": {"_count": 1, "Dont": {"_count": 1}}, "ARTS": {"_count": 1, "ORDINARY": {"_count": 1}}, "FORCES": {"_count": 1, "The": {"_count": 1}}, "MARKS": {"_count": 1, "THEYLL": {"_count": 1}}, "LORD": {"_count": 1, "ASCENDING": {"_count": 1}}}, "LETTIN": {"_count": 1, "HIM": {"_count": 1, "": {"_count": 1}}}, "takinyer": {"_count": 1, "all": {"_count": 1, "back": {"_count": 1}}}, "walkin": {"_count": 1, "down": {"_count": 1, "ter": {"_count": 1}}}, "BOGGART": {"_count": 1, "IN": {"_count": 1, "THE": {"_count": 1}}}, "WARDROBE": {"_count": 1, "Malfoy": {"_count": 1, "didnt": {"_count": 1}}}, "sling": {"_count": 3, "acting": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}}, "heroic": {"_count": 2, "survivor": {"_count": 1, "of": {"_count": 1}}, "preferably": {"_count": 1, "involving": {"_count": 1}}}, "survivor": {"_count": 3, "of": {"_count": 2, "some": {"_count": 1}, "YouKnowWhos": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "simpered": {"_count": 5, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "for": {"_count": 1, "those": {"_count": 1}}, "Umbridge": {"_count": 1, "I": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "grimace": {"_count": 10, "": {"_count": 5, ".": {"_count": 5}}, "as": {"_count": 1, "though": {"_count": 1}}, "of": {"_count": 2, "frustration": {"_count": 1}, "rage": {"_count": 1}}, "and": {"_count": 1, "stormed": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}}, "Settle": {"_count": 3, "down": {"_count": 3, "settle": {"_count": 2}, "said": {"_count": 1}}}, "settle": {"_count": 15, "down": {"_count": 7, "said": {"_count": 1}, "if": {"_count": 1}, "again": {"_count": 1}, "Dobby": {"_count": 1}, "": {"_count": 2}, "please": {"_count": 1}}, "em": {"_count": 1, "down": {"_count": 1}}, "for": {"_count": 1, "my": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "anything": {"_count": 2}}, "her": {"_count": 1, "on": {"_count": 1}}, "something": {"_count": 1, "once": {"_count": 1}}, "arguments": {"_count": 1, "by": {"_count": 1}}}, "generally": {"_count": 18, "favored": {"_count": 1, "his": {"_count": 1}}, "agreed": {"_count": 1, "to": {"_count": 1}}, "preferable": {"_count": 1, "to": {"_count": 1}}, "live": {"_count": 1, "in": {"_count": 1}}, "permit": {"_count": 1, "people": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "display": {"_count": 1, "to": {"_count": 1}}, "remained": {"_count": 1, "in": {"_count": 1}}, "high": {"_count": 1, "Professor": {"_count": 1}}, "went": {"_count": 1, "berserk": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "concluded": {"_count": 1, "Hermione": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "joined": {"_count": 1, "her": {"_count": 1}}, "sleep": {"_count": 1, "late": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "rather": {"_count": 1, "slimy": {"_count": 1}}, "spruced": {"_count": 1, "up": {"_count": 1}}}, "Shrinking": {"_count": 2, "Solution": {"_count": 2, "": {"_count": 1}, "it": {"_count": 1}}}, "preparing": {"_count": 18, "their": {"_count": 1, "ingredients": {"_count": 1}}, "to": {"_count": 11, "take": {"_count": 1}, "Disapparate": {"_count": 1}, "spring": {"_count": 1}, "crawl": {"_count": 1}, "continue": {"_count": 1}, "exclaim": {"_count": 1}, "open": {"_count": 1}, "pay": {"_count": 1}, "curse": {"_count": 1}, "depart": {"_count": 1}, "fight": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 2, "dramatic": {"_count": 1}, "fresh": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "ourselves": {"_count": 1, "like": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "daisy": {"_count": 1, "roots": {"_count": 1, "because": {"_count": 1}}}, "chop": {"_count": 3, "them": {"_count": 1, "roughly": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "potion": {"_count": 1, "ingredients": {"_count": 1}}}, "mutilating": {"_count": 1, "my": {"_count": 1, "roots": {"_count": 1}}}, "Change": {"_count": 4, "roots": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "Their": {"_count": 1}}, "and": {"_count": 1, "Growth": {"_count": 1}}, "of": {"_count": 1, "plan": {"_count": 1}}}, "shredding": {"_count": 2, "his": {"_count": 1, "own": {"_count": 1}}, "the": {"_count": 1, "shamrocks": {"_count": 1}}}, "beautifully": {"_count": 4, "cut": {"_count": 1, "roots": {"_count": 1}}, "proportioned": {"_count": 1, "room": {"_count": 1}}, "kept": {"_count": 1, "lawn": {"_count": 1}}, "painted": {"_count": 1, "faces": {"_count": 1}}}, "shrivelfig": {"_count": 4, "skinned": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "as": {"_count": 2, "Ron": {"_count": 1}, "fast": {"_count": 1}}}, "skinned": {"_count": 6, "said": {"_count": 1, "Malfoy": {"_count": 1}}, "the": {"_count": 1, "shrivelfig": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "their": {"_count": 1, "hands": {"_count": 1}}, "fer": {"_count": 1, "the": {"_count": 1}}}, "malicious": {"_count": 9, "laughter": {"_count": 2, "": {"_count": 2}}, "face": {"_count": 1, "contorted": {"_count": 1}}, "look": {"_count": 1, "and": {"_count": 1}}, "grin": {"_count": 1, "on": {"_count": 1}}, "voice": {"_count": 1, "nearby": {"_count": 1}}, "smile": {"_count": 1, "on": {"_count": 1}}, "old": {"_count": 1, "woman": {"_count": 1}}, "pleasure": {"_count": 1, "": {"_count": 1}}}, "Seen": {"_count": 7, "your": {"_count": 1, "pal": {"_count": 1}}, "the": {"_count": 1, "Fizzing": {"_count": 1}}, "anything": {"_count": 1, "yet": {"_count": 1}}, "old": {"_count": 1, "Figgy": {"_count": 1}}, "I": {"_count": 1, "do": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "pal": {"_count": 8, "Hagrid": {"_count": 1, "lately": {"_count": 1}}, "o": {"_count": 1, "Malfoys": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "Im": {"_count": 1, "also": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "of": {"_count": 1, "your": {"_count": 1}}}, "injury": {"_count": 17, "Keep": {"_count": 1, "talking": {"_count": 1}}, "snarled": {"_count": 1, "Ron": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "there": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 2, "over": {"_count": 1}, "ran": {"_count": 1}}, "to": {"_count": 1, "both": {"_count": 1}}, "because": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 2, "on": {"_count": 1}, "did": {"_count": 1}}, "by": {"_count": 1, "far": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}}, "influence": {"_count": 14, "you": {"_count": 1, "know": {"_count": 1}}, "I": {"_count": 1, "became": {"_count": 1}}, "of": {"_count": 4, "Saturn": {"_count": 1}, "Veritaserum": {"_count": 1}, "butterbeer": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "over": {"_count": 2, "the": {"_count": 1}, "young": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "futures": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "armll": {"_count": 1, "ever": {"_count": 1, "be": {"_count": 1}}}, "beheading": {"_count": 4, "a": {"_count": 1, "dead": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "houseelves": {"_count": 1, "when": {"_count": 1}}}, "caterpillar": {"_count": 2, "because": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "benefits": {"_count": 3, "too": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "having": {"_count": 1}}, "for": {"_count": 1, "wizards": {"_count": 1}}}, "regularly": {"_count": 12, "went": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "collapses": {"_count": 1, "at": {"_count": 1}}, "sometimes": {"_count": 1, "staying": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "all": {"_count": 1}}, "and": {"_count": 2, "that": {"_count": 1}, "charmed": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Orange": {"_count": 2, "Longbottom": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "ladling": {"_count": 4, "some": {"_count": 1, "up": {"_count": 1}}, "chicken": {"_count": 1, "casserole": {"_count": 1}}, "stew": {"_count": 1, "onto": {"_count": 1}}, "soup": {"_count": 1, "into": {"_count": 1}}}, "allowing": {"_count": 18, "it": {"_count": 2, "to": {"_count": 2}}, "Harry": {"_count": 2, "to": {"_count": 2}}, "you": {"_count": 2, "to": {"_count": 1}, "houseroom": {"_count": 1}}, "his": {"_count": 2, "potion": {"_count": 1}, "mind": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 3, "tactics": {"_count": 1}, "door": {"_count": 1}, "Quaffle": {"_count": 1}}, "her": {"_count": 2, "to": {"_count": 1}, "teacup": {"_count": 1}}, "me": {"_count": 2, "access": {"_count": 1}, "nearer": {"_count": 1}}, "Dumbledore": {"_count": 1, "to": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}}, "spleen": {"_count": 2, "was": {"_count": 1, "needed": {"_count": 1}}, "on": {"_count": 1, "any": {"_count": 1}}}, "dash": {"_count": 4, "of": {"_count": 1, "leech": {"_count": 1}}, "away": {"_count": 1, "again": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "leech": {"_count": 2, "juice": {"_count": 1, "would": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "suffice": {"_count": 5, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "to": {"_count": 1, "take": {"_count": 1}}, "for": {"_count": 1, "everyone": {"_count": 1}}}, "verge": {"_count": 9, "of": {"_count": 9, "tears": {"_count": 5}, "telling": {"_count": 1}, "saying": {"_count": 1}, "shouting": {"_count": 1}, "speech": {"_count": 1}}}, "encourage": {"_count": 2, "you": {"_count": 1, "to": {"_count": 1}}, "many": {"_count": 1, "to": {"_count": 1}}}, "sighted": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "once": {"_count": 2, "already": {"_count": 1}, "more": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "Snitch": {"_count": 1}}, "abroad": {"_count": 1, "": {"_count": 1}}}, "phoned": {"_count": 1, "the": {"_count": 1, "telephone": {"_count": 1}}}, "significantly": {"_count": 4, "at": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 2, "pointed": {"_count": 1}, "looked": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}}, "Need": {"_count": 2, "something": {"_count": 1, "else": {"_count": 1}}, "Electricity": {"_count": 1, "and": {"_count": 1}}}, "malevolently": {"_count": 9, "and": {"_count": 2, "they": {"_count": 1}, "apparently": {"_count": 1}}, "up": {"_count": 1, "at": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}}, "singlehanded": {"_count": 4, "Potter": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}}, "offhandedly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "curving": {"_count": 2, "in": {"_count": 1, "a": {"_count": 1}}, "track": {"_count": 1, "through": {"_count": 1}}}, "simmers": {"_count": 1, "and": {"_count": 1, "then": {"_count": 1}}}, "openly": {"_count": 8, "watching": {"_count": 1, "Neville": {"_count": 1}}, "for": {"_count": 1, "YouKnowWho": {"_count": 1}}, "at": {"_count": 1, "Harrys": {"_count": 1}}, "smitten": {"_count": 1, "with": {"_count": 1}}, "laughing": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "the": {"_count": 1}}}, "ladles": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "produce": {"_count": 18, "a": {"_count": 9, "Shrinking": {"_count": 1}, "proper": {"_count": 1}, "Patronus": {"_count": 5}, "Stinging": {"_count": 1}, "Squib": {"_count": 1}}, "an": {"_count": 1, "indistinct": {"_count": 1}}, "that": {"_count": 1, "particular": {"_count": 1}}, "the": {"_count": 1, "products": {"_count": 1}}, "hot": {"_count": 1, "air": {"_count": 1}}, "some": {"_count": 1, "improvement": {"_count": 1}}, "finer": {"_count": 1, "on": {"_count": 1}}, "magic": {"_count": 1, "you": {"_count": 1}}, "food": {"_count": 1, "out": {"_count": 1}}, "Patronuses": {"_count": 1, "which": {"_count": 1}}}, "tadpole": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "wriggling": {"_count": 1}}}, "spoon": {"_count": 13, "into": {"_count": 2, "Nevilles": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 4, "looked": {"_count": 1}, "squinting": {"_count": 1}, "attacked": {"_count": 1}, "pulled": {"_count": 1}}, "as": {"_count": 1, "loudly": {"_count": 1}}, "down": {"_count": 1, "and": {"_count": 1}}, "soup": {"_count": 1, "into": {"_count": 1}}}, "trickled": {"_count": 9, "a": {"_count": 1, "few": {"_count": 1}}, "down": {"_count": 5, "the": {"_count": 1}, "his": {"_count": 2}, "into": {"_count": 1}, "onto": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "past": {"_count": 1, "and": {"_count": 1}}}, "Trevors": {"_count": 1, "throat": {"_count": 1, "": {"_count": 1}}}, "wriggling": {"_count": 9, "in": {"_count": 1, "Snape": {"_count": 1}}, "madly": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "diagrams": {"_count": 1, "what": {"_count": 1}}, "mouse": {"_count": 1, "tail": {"_count": 1}}, "and": {"_count": 1, "yelling": {"_count": 1}}, "like": {"_count": 1, "pale": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "green": {"_count": 1, "tubers": {"_count": 1}}}, "dismissed": {"_count": 10, "": {"_count": 2, ".": {"_count": 2}}, "them": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "her": {"_count": 2, "immediately": {"_count": 1}, "": {"_count": 1}}, "Winky": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "school": {"_count": 1}}, "his": {"_count": 2, "loathing": {"_count": 1}, "injuries": {"_count": 1}}}, "seething": {"_count": 7, "about": {"_count": 1, "Snape": {"_count": 1}}, "staring": {"_count": 1, "from": {"_count": 1}}, "mass": {"_count": 1, "within": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "questions": {"_count": 1}}, "silence": {"_count": 1, "glaring": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "seam": {"_count": 2, "had": {"_count": 1, "split": {"_count": 1}}, "the": {"_count": 1, "small": {"_count": 1}}}, "tatty": {"_count": 1, "old": {"_count": 1, "briefcase": {"_count": 1}}}, "healthier": {"_count": 1, "than": {"_count": 1, "he": {"_count": 1}}}, "memorable": {"_count": 3, "class": {"_count": 1, "last": {"_count": 1}}, "afternoon": {"_count": 1, "in": {"_count": 1}}, "practice": {"_count": 1, "he": {"_count": 1}}}, "cageful": {"_count": 1, "of": {"_count": 1, "pixies": {"_count": 1}}}, "Puzzled": {"_count": 1, "but": {"_count": 1, "interested": {"_count": 1}}}, "gum": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "shot": {"_count": 1, "out": {"_count": 1}}, "shield": {"_count": 2, "": {"_count": 2}}, "disease": {"_count": 1, "": {"_count": 1}}}, "wiggled": {"_count": 2, "his": {"_count": 1, "curlytoed": {"_count": 1}}, "her": {"_count": 1, "left": {"_count": 1}}}, "curlytoed": {"_count": 1, "feet": {"_count": 1, "and": {"_count": 1}}}, "Loony": {"_count": 11, "loopy": {"_count": 2, "Lupin": {"_count": 2}}, "Lovegood": {"_count": 4, "in": {"_count": 1}, "clutching": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 2}, "!": {"_count": 2}}, "to": {"_count": 1, "go": {"_count": 1}}}, "unmanageable": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "waged": {"_count": 1, "a": {"_count": 1, "constant": {"_count": 1}}}, "war": {"_count": 21, "against": {"_count": 3, "the": {"_count": 1}, "Voldemort": {"_count": 2}}, "with": {"_count": 1, "a": {"_count": 1}}, "Frank": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "dance": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "about": {"_count": 1}}, "Prime": {"_count": 1, "Minister": {"_count": 1}}, "memorial": {"_count": 4, "and": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 2}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}, "cries": {"_count": 1, "": {"_count": 1}}}, "Waddiwasil": {"_count": 1, "and": {"_count": 1, "pointed": {"_count": 1}}}, "nostril": {"_count": 3, "he": {"_count": 1, "whirled": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "proceed": {"_count": 10, "": {"_count": 1, "?": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "owing": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "chapter": {"_count": 1}, "the": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "Potions": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "downstairs": {"_count": 1, "into": {"_count": 1}}}, "mismatched": {"_count": 9, "chairs": {"_count": 3, "was": {"_count": 1}, "and": {"_count": 1}, "grouped": {"_count": 1}}, "feet": {"_count": 1, "opened": {"_count": 1}}, "eyes": {"_count": 3, "widened": {"_count": 1}, "": {"_count": 1}, "Moody": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}}, "Td": {"_count": 2, "rather": {"_count": 1, "not": {"_count": 1}}, "invite": {"_count": 1, "you": {"_count": 1}}}, "witness": {"_count": 13, "this": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "Mr": {"_count": 1}}, "an": {"_count": 1, "execution": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "said": {"_count": 1, "Fudge": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "or": {"_count": 1}}, "snarled": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 1, "there": {"_count": 1}}, "their": {"_count": 1, "tears": {"_count": 1}}}, "assist": {"_count": 10, "me": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "in": {"_count": 2, "any": {"_count": 2}}, "you": {"_count": 3, "to": {"_count": 1}, "Ive": {"_count": 1}, "again": {"_count": 1}}, "yes": {"_count": 1, "but": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "admirably": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "succinct": {"_count": 1, "and": {"_count": 1}}}, "boggart": {"_count": 48, "in": {"_count": 2, "there": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 12, "?": {"_count": 4}, ".": {"_count": 7}, "!": {"_count": 1}}, "sitting": {"_count": 1, "in": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "before": {"_count": 2, "we": {"_count": 1}, "I": {"_count": 1}}, "make": {"_count": 1, "that": {"_count": 1}}, "is": {"_count": 3, "simple": {"_count": 1}, "laughter": {"_count": 1}, "likely": {"_count": 1}}, "to": {"_count": 1, "turn": {"_count": 1}}, "bursts": {"_count": 1, "out": {"_count": 1}}, "Voldemort": {"_count": 1, "a": {"_count": 1}}, "paused": {"_count": 1, "confused": {"_count": 1}}, "landed": {"_count": 1, "on": {"_count": 1}}, "exploded": {"_count": 1, "burst": {"_count": 1}}, "ten": {"_count": 1, "for": {"_count": 1}}, "What": {"_count": 1, "would": {"_count": 1}}, "assuming": {"_count": 1, "Snapes": {"_count": 1}}, "faced": {"_count": 1, "you": {"_count": 1}}, "caught": {"_count": 1, "Rons": {"_count": 1}}, "said": {"_count": 2, "Lupin": {"_count": 1}, "Sirius": {"_count": 1}}, "will": {"_count": 1, "turn": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "dementor": {"_count": 1, "approached": {"_count": 1}}, "but": {"_count": 2, "an": {"_count": 1}, "I": {"_count": 1}}, "changed": {"_count": 1, "into": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "posing": {"_count": 1, "as": {"_count": 1}}, "turning": {"_count": 1, "into": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "was": {"_count": 1, "pretending": {"_count": 1}}, "banishing": {"_count": 1, "spell": {"_count": 1}}}, "Boggarts": {"_count": 1, "like": {"_count": 1, "dark": {"_count": 1}}}, "Wardrobes": {"_count": 1, "the": {"_count": 1, "gap": {"_count": 1}}}, "cupboards": {"_count": 5, "under": {"_count": 1, "sinks": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "creaking": {"_count": 1, "doors": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}}, "shapeshifter": {"_count": 2, "she": {"_count": 1, "said": {"_count": 1}}, "exploded": {"_count": 1, "in": {"_count": 1}}}, "assumed": {"_count": 15, "a": {"_count": 1, "form": {"_count": 1}}, "an": {"_count": 2, "allforthebest": {"_count": 1}, "expression": {"_count": 1}}, "that": {"_count": 5, "if": {"_count": 1}, "the": {"_count": 1}, "he": {"_count": 1}, "Albus": {"_count": 1}, "they": {"_count": 1}}, "he": {"_count": 3, "was": {"_count": 1}, "must": {"_count": 1}, "knew": {"_count": 1}}, "him": {"_count": 1, "dead": {"_count": 1}}, "the": {"_count": 1, "identity": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}}, "offputting": {"_count": 1, "but": {"_count": 1, "Harry": {"_count": 1}}}, "corpse": {"_count": 7, "or": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 2, "each": {"_count": 1}, "its": {"_count": 1}}, "that": {"_count": 1, "has": {"_count": 1}}, "frightened": {"_count": 1, "Harry": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "flesheating": {"_count": 1, "slug": {"_count": 1, "": {"_count": 1}}}, "repels": {"_count": 2, "a": {"_count": 1, "boggart": {"_count": 1}}, "mundane": {"_count": 1, "dirt": {"_count": 1}}}, "requires": {"_count": 5, "force": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "wand": {"_count": 1}}, "one": {"_count": 1, "more": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}}, "finishes": {"_count": 2, "a": {"_count": 1, "boggart": {"_count": 1}}, "this": {"_count": 1, "tournament": {"_count": 1}}}, "riddikulusV": {"_count": 2, "RiddikulusV": {"_count": 1, "said": {"_count": 1}}, "squeaked": {"_count": 1, "Neville": {"_count": 1}}}, "RiddikulusV": {"_count": 9, "said": {"_count": 1, "the": {"_count": 1}}, "cried": {"_count": 1, "Parvati": {"_count": 1}}, "shouted": {"_count": 1, "Seamus": {"_count": 1}}, "yelled": {"_count": 1, "Dean": {"_count": 1}}, "bellowed": {"_count": 1, "Ron": {"_count": 1}}, "almost": {"_count": 1, "lazily": {"_count": 1}}, "he": {"_count": 1, "shouted": {"_count": 1}}, "roared": {"_count": 1, "Lupin": {"_count": 1}}, "Harrys": {"_count": 1, "body": {"_count": 1}}}, "gallows": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "both": {"_count": 1, "perched": {"_count": 1}}}, "hmmm": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "misunderstand": {"_count": 4, "me": {"_count": 3, "said": {"_count": 2}, "he": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "foxfur": {"_count": 1, "scarf": {"_count": 1, "": {"_count": 1}}}, "bursts": {"_count": 7, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 5, "light": {"_count": 2}, "green": {"_count": 1}, "red": {"_count": 2}}}, "\u2018Riddikulus": {"_count": 1, "and": {"_count": 1, "concentrate": {"_count": 1}}}, "grandmothers": {"_count": 4, "clothes": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}, "voice": {"_count": 1, "magically": {"_count": 1}}, "best": {"_count": 1, "hat": {"_count": 1}}}, "Boggart": {"_count": 1, "Snape": {"_count": 1, "will": {"_count": 1}}}, "vulturetopped": {"_count": 1, "hat": {"_count": 1, "and": {"_count": 1}}}, "successful": {"_count": 7, "the": {"_count": 1, "boggart": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "Hagrid": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "keeping": {"_count": 1}, "opening": {"_count": 1}}}, "scares": {"_count": 3, "you": {"_count": 1, "most": {"_count": 1}}, "Mundungus": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}}, "comical": {"_count": 6, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "this": {"_count": 1}}, "O": {"_count": 1, "": {"_count": 1}}}, "counterattack": {"_count": 1, "on": {"_count": 1, "a": {"_count": 1}}}, "Hooknosed": {"_count": 1, "and": {"_count": 1, "menacing": {"_count": 1}}}, "mouthing": {"_count": 6, "wordlessly": {"_count": 1, "": {"_count": 1}}, "noiselessly": {"_count": 1, "but": {"_count": 1}}, "soundlessly": {"_count": 1, "at": {"_count": 1}}, "Its": {"_count": 1, "mine": {"_count": 1}}, "the": {"_count": 2, "name": {"_count": 1}, "single": {"_count": 1}}}, "r": {"_count": 1, "riddikulusV": {"_count": 1, "squeaked": {"_count": 1}}}, "lacetrimmed": {"_count": 1, "dress": {"_count": 1, "and": {"_count": 1}}}, "Forward": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "Neville": {"_count": 1, "and": {"_count": 1}}}, "mummy": {"_count": 5, "its": {"_count": 1, "sightless": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "worrying": {"_count": 1, "Leave": {"_count": 1}}, "is": {"_count": 1, "": {"_count": 1}}}, "sightless": {"_count": 4, "face": {"_count": 1, "was": {"_count": 1}}, "soulsucking": {"_count": 1, "fiends": {"_count": 1}}, "eyes": {"_count": 2, "left": {"_count": 1}, "were": {"_count": 1}}}, "bandage": {"_count": 4, "unraveled": {"_count": 1, "at": {"_count": 1}}, "turban": {"_count": 1, "askew": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "came": {"_count": 1, "staggering": {"_count": 1}}}, "mummys": {"_count": 1, "feet": {"_count": 1, "it": {"_count": 1}}}, "entangled": {"_count": 3, "fell": {"_count": 1, "face": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}}, "Crack": {"_count": 16, "": {"_count": 14, "!": {"_count": 2}, ".": {"_count": 12}}, "The": {"_count": 1, "eyeball": {"_count": 1}}, "Quite": {"_count": 1, "a": {"_count": 1}}}, "floorlength": {"_count": 2, "black": {"_count": 1, "hair": {"_count": 1}}, "cloak": {"_count": 1, "but": {"_count": 1}}}, "tinged": {"_count": 4, "face": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 3, "green": {"_count": 2}, "the": {"_count": 1}}}, "rattlesnake": {"_count": 1, "which": {"_count": 1, "slithered": {"_count": 1}}}, "writhed": {"_count": 8, "before": {"_count": 1, "crack": {"_count": 1}}, "in": {"_count": 1, "Rons": {"_count": 1}}, "and": {"_count": 4, "twisted": {"_count": 1}, "shrieked": {"_count": 1}, "then": {"_count": 1}, "squirmed": {"_count": 1}}, "with": {"_count": 1, "anger": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "eyeball": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "became": {"_count": 1, "a": {"_count": 1}}, "lying": {"_count": 1, "abandoned": {"_count": 1}}, "had": {"_count": 1, "popped": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "that": {"_count": 1}}}, "mousetrap": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "youve": {"_count": 1, "had": {"_count": 1}}}, "menacingly": {"_count": 14, "": {"_count": 4, ".": {"_count": 4}}, "at": {"_count": 2, "the": {"_count": 1}, "Karkaroff": {"_count": 1}}, "on": {"_count": 2, "them": {"_count": 1}, "his": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "turned": {"_count": 1}, "deluged": {"_count": 1}, "glowered": {"_count": 1}}, "now": {"_count": 1, "shunting": {"_count": 1}}, "breathing": {"_count": 1, "down": {"_count": 1}}}, "legless": {"_count": 1, "spider": {"_count": 1, "had": {"_count": 1}}}, "silverywhite": {"_count": 3, "orb": {"_count": 1, "hanging": {"_count": 1}}, "state": {"_count": 1, "swirling": {"_count": 1}}, "substance": {"_count": 1, "that": {"_count": 1}}}, "orb": {"_count": 7, "hanging": {"_count": 1, "in": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "overpowered": {"_count": 1, "me": {"_count": 1}}, "hung": {"_count": 1, "in": {"_count": 1}}, "vanished": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "cockroach": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "Potter": {"_count": 1, "and": {"_count": 1}}}, "lacy": {"_count": 3, "dress": {"_count": 1, "before": {"_count": 1}}, "covers": {"_count": 1, "and": {"_count": 1}}, "collared": {"_count": 1, "jackets": {"_count": 1}}}, "correctly": {"_count": 14, "at": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "conjures": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "interpreting": {"_count": 1, "his": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "they": {"_count": 1}}, "identify": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "Voldemort": {"_count": 1}}, "merely": {"_count": 1, "smiled": {"_count": 1}}, "as": {"_count": 1, "this": {"_count": 1}}, "you": {"_count": 1, "once": {"_count": 1}}, "was": {"_count": 1, "such": {"_count": 1}}}, "boggarts": {"_count": 4, "and": {"_count": 1, "summarize": {"_count": 1}}, "they": {"_count": 1, "studied": {"_count": 1}}, "Red": {"_count": 2, "Caps": {"_count": 2}}}, "summarize": {"_count": 1, "it": {"_count": 1, "for": {"_count": 1}}}, "Talking": {"_count": 7, "excitedly": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "low": {"_count": 1}, "your": {"_count": 1}}, "about": {"_count": 2, "breathing": {"_count": 1}, "Muriel": {"_count": 1}}, "ceased": {"_count": 1, "immediately": {"_count": 1}}, "of": {"_count": 1, "Diagon": {"_count": 1}}}, "deliberately": {"_count": 20, "stopped": {"_count": 1, "him": {"_count": 1}}, "flying": {"_count": 1, "to": {"_count": 1}}, "wafting": {"_count": 1, "its": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "knocked": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 2, "in": {"_count": 1}, "that": {"_count": 1}}, "dropped": {"_count": 1, "his": {"_count": 1}}, "circled": {"_count": 1, "around": {"_count": 1}}, "fell": {"_count": 1, "back": {"_count": 1}}, "uncomfortable": {"_count": 1, "determined": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "smooth": {"_count": 1, "and": {"_count": 1}}, "unhelpful": {"_count": 1, "": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "at": {"_count": 1, "Mundungus": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "FLIGHT": {"_count": 3, "OF": {"_count": 2, "THE": {"_count": 2}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "FAT": {"_count": 1, "LADY": {"_count": 1, "In": {"_count": 1}}}, "LADY": {"_count": 1, "In": {"_count": 1, "no": {"_count": 1}}}, "dresses": {"_count": 2, "like": {"_count": 1, "our": {"_count": 1}}, "looked": {"_count": 1, "even": {"_count": 1}}}, "Caps": {"_count": 6, "nasty": {"_count": 1, "little": {"_count": 1}}, "they": {"_count": 1, "moved": {"_count": 1}}, "kappas": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "grindylows": {"_count": 1}}, "squish": {"_count": 1, "their": {"_count": 1}}, "hinkypunks": {"_count": 1, "grindylows": {"_count": 1}}}, "goblinlike": {"_count": 1, "creatures": {"_count": 1, "that": {"_count": 1}}}, "bloodshed": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "potholes": {"_count": 2, "of": {"_count": 1, "deserted": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}}, "battlefields": {"_count": 1, "waiting": {"_count": 1, "to": {"_count": 1}}}, "bludgeon": {"_count": 1, "those": {"_count": 1, "who": {"_count": 1}}}, "kappas": {"_count": 3, "creepy": {"_count": 1, "waterdwellers": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "grindylows": {"_count": 1}}}, "waterdwellers": {"_count": 1, "that": {"_count": 1, "looked": {"_count": 1}}}, "monkeys": {"_count": 1, "with": {"_count": 1, "webbed": {"_count": 1}}}, "webbed": {"_count": 6, "hands": {"_count": 3, "itching": {"_count": 1}, "and": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "It": {"_count": 1}}, "hand": {"_count": 1, "quickly": {"_count": 1}}}, "unwitting": {"_count": 1, "waders": {"_count": 1, "in": {"_count": 1}}}, "waders": {"_count": 1, "in": {"_count": 1, "their": {"_count": 1}}}, "ponds": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "Drought": {"_count": 1}}}, "vindictive": {"_count": 4, "mood": {"_count": 1, "these": {"_count": 1}}, "pleasure": {"_count": 2, "scribbled": {"_count": 1}, "He": {"_count": 1}}, "fury": {"_count": 1, "Hermione": {"_count": 1}}}, "assuming": {"_count": 11, "Snapes": {"_count": 1, "shape": {"_count": 1}}, "were": {"_count": 1, "playing": {"_count": 1}}, "nothing": {"_count": 1, "went": {"_count": 1}}, "she": {"_count": 1, "would": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "of": {"_count": 2, "course": {"_count": 2}}, "this": {"_count": 1, "is": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "again": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}}, "wildfire": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bullying": {"_count": 9, "Neville": {"_count": 1, "worse": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "git": {"_count": 1, "said": {"_count": 1}}, "Dudley": {"_count": 1, "have": {"_count": 1}}, "toerag": {"_count": 1, "Potter": {"_count": 1}}, "the": {"_count": 1, "bloke": {"_count": 1}}, "first": {"_count": 1, "years": {"_count": 1}}, "younger": {"_count": 1, "students": {"_count": 1}}, "behavior": {"_count": 1, "souvenirs": {"_count": 1}}}, "deciphering": {"_count": 3, "lopsided": {"_count": 1, "shapes": {"_count": 1}}, "the": {"_count": 1, "handwriting": {"_count": 1}}, "something": {"_count": 1, "in": {"_count": 1}}}, "bordering": {"_count": 2, "on": {"_count": 2, "reverence": {"_count": 1}, "indifference": {"_count": 1}}}, "reverence": {"_count": 4, "by": {"_count": 1, "many": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "instead": {"_count": 1}}, "that": {"_count": 1, "even": {"_count": 1}}}, "haunting": {"_count": 4, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "him": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "mersong": {"_count": 1, "": {"_count": 1}}}, "lunchtimes": {"_count": 4, "and": {"_count": 1, "always": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "evenings": {"_count": 1, "and": {"_count": 1}}}, "deathbed": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "visit": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "spattergroit": {"_count": 1}}}, "actionpacked": {"_count": 1, "first": {"_count": 1, "class": {"_count": 1}}}, "occupy": {"_count": 5, "him": {"_count": 2, "something": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 2, "throne": {"_count": 1}, "visualized": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}}, "soccersized": {"_count": 1, "ball": {"_count": 1, "through": {"_count": 1}}}, "fiftyfoothigh": {"_count": 2, "hoops": {"_count": 1, "at": {"_count": 1}}, "hoop": {"_count": 1, "": {"_count": 1}}}, "equipped": {"_count": 2, "with": {"_count": 1, "heavy": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "repel": {"_count": 9, "the": {"_count": 3, "Bludgers": {"_count": 1}, "dementor": {"_count": 1}, "jinx": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "dementors": {"_count": 3, "as": {"_count": 1}, "attempts": {"_count": 1}, "they": {"_count": 1}}, "Nevilles": {"_count": 1, "muttered": {"_count": 1}}, "a": {"_count": 1, "jinx": {"_count": 1}}}, "defended": {"_count": 3, "the": {"_count": 1, "goal": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "for": {"_count": 1}}}, "walnutsized": {"_count": 2, "ball": {"_count": 1, "whose": {"_count": 1}}, "golden": {"_count": 1, "ball": {"_count": 1}}}, "seventeenyearold": {"_count": 4, "now": {"_count": 1, "in": {"_count": 1}}, "boy": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "hero": {"_count": 1, "as": {"_count": 1}}}, "desperation": {"_count": 18, "in": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "to": {"_count": 4, "win": {"_count": 1}, "make": {"_count": 1}, "kill": {"_count": 1}, "start": {"_count": 1}}, "pushed": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "or": {"_count": 1, "whatever": {"_count": 1}}, "Harry": {"_count": 1, "pointed": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 1, "tried": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "seized": {"_count": 1, "Hagrids": {"_count": 1}}, "what": {"_count": 1, "Griphook": {"_count": 1}}, "but": {"_count": 1, "nothing": {"_count": 1}}}, "tournament": {"_count": 56, "getting": {"_count": 1, "called": {"_count": 1}}, "by": {"_count": 1, "exactly": {"_count": 1}}, "involves": {"_count": 1, "so": {"_count": 1}}, "once": {"_count": 1, "every": {"_count": 1}}, "was": {"_count": 1, "discontinued": {"_count": 1}}, "than": {"_count": 1, "in": {"_count": 1}}, "Dumbledore": {"_count": 2, "continued": {"_count": 1}, "went": {"_count": 1}}, "tasks": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 13}, "?": {"_count": 6}}, "would": {"_count": 4, "involve": {"_count": 1}, "have": {"_count": 1}, "be": {"_count": 1}, "at": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "through": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "in": {"_count": 2, "which": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 2, "champions": {"_count": 1}, "third": {"_count": 1}}, "and": {"_count": 1, "had": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "Im": {"_count": 1}, "knows": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "because": {"_count": 1, "theyre": {"_count": 1}}, "hes": {"_count": 1, "much": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "rules": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "arrange": {"_count": 1}}, "you": {"_count": 1, "didnt": {"_count": 1}}, "Karkaroff": {"_count": 1, "has": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "manic": {"_count": 5, "glint": {"_count": 1, "back": {"_count": 1}}, "energy": {"_count": 1, "and": {"_count": 1}}, "way": {"_count": 1, "until": {"_count": 1}}, "gleam": {"_count": 1, "in": {"_count": 1}}, "expression": {"_count": 1, "that": {"_count": 1}}}, "unbeatable": {"_count": 8, "Beaters": {"_count": 1, "": {"_count": 1}}, "wand": {"_count": 5, "Hermione": {"_count": 1}, "come": {"_count": 1}, "said": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "invincible": {"_count": 1, "swallowed": {"_count": 1}}}, "embarrassing": {"_count": 12, "us": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "was": {"_count": 1}}, "Mr": {"_count": 1, "Diggory": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "scene": {"_count": 1, "": {"_count": 1}}, "prospect": {"_count": 1, "of": {"_count": 1}}, "honesty": {"_count": 1, "": {"_count": 1}}, "conversation": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}}, "blush": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "but": {"_count": 1, "her": {"_count": 1}}}, "afterthought": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Spanking": {"_count": 1, "good": {"_count": 1, "Keeper": {"_count": 1}}}, "resuming": {"_count": 4, "his": {"_count": 4, "pacing": {"_count": 3}, "seat": {"_count": 1}}}, "dejectedly": {"_count": 1, "that": {"_count": 1, "even": {"_count": 1}}}, "Full": {"_count": 9, "of": {"_count": 6, "determination": {"_count": 1}, "fresh": {"_count": 1}, "Dark": {"_count": 1}, "Hot": {"_count": 3}}, "to": {"_count": 1, "bursting": {"_count": 1}}, "marks": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 1, "": {"_count": 1}}}, "wetter": {"_count": 3, "the": {"_count": 1, "nights": {"_count": 1}}, "than": {"_count": 1, "hed": {"_count": 1}}, "and": {"_count": 1, "warmer": {"_count": 1}}}, "tarnish": {"_count": 4, "Harrys": {"_count": 1, "wonderful": {"_count": 1}}, "his": {"_count": 1, "reputation": {"_count": 1}}, "your": {"_count": 2, "memories": {"_count": 2}}}, "completing": {"_count": 3, "some": {"_count": 1, "star": {"_count": 1}}, "your": {"_count": 1, "N": {"_count": 1}}, "school": {"_count": 1, "then": {"_count": 1}}}, "star": {"_count": 18, "charts": {"_count": 4, "for": {"_count": 1}, "and": {"_count": 1}, "before": {"_count": 1}, "anymore": {"_count": 1}}, "chart": {"_count": 6, "": {"_count": 1}, "to": {"_count": 1}, "for": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 1}, "Harry": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "strewn": {"_count": 2, "indigo": {"_count": 1}, "skies": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "winked": {"_count": 1, "at": {"_count": 1}}, "directly": {"_count": 1, "above": {"_count": 1}}, "act": {"_count": 1, "": {"_count": 1}}, "hotels": {"_count": 1, "": {"_count": 1}}}, "bulletin": {"_count": 2, "board": {"_count": 2, "": {"_count": 1}, "when": {"_count": 1}}}, "End": {"_count": 4, "of": {"_count": 1, "October": {"_count": 1}}, "it": {"_count": 1, "Dumbledore": {"_count": 1}}, "over": {"_count": 1, "which": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "Zonkos": {"_count": 15, "": {"_count": 1, ".": {"_count": 1}}, "Joke": {"_count": 5, "Shops": {"_count": 1}, "Shop": {"_count": 4}}, "is": {"_count": 1, "up": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "tricks": {"_count": 1, "and": {"_count": 1}}, "bag": {"_count": 1, "": {"_count": 1}}, "merchandise": {"_count": 1, "": {"_count": 1}}, "bags": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}}, "Stink": {"_count": 2, "Pellets": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "Pellets": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "Belch": {"_count": 1}}}, "ebbing": {"_count": 6, "away": {"_count": 4, "": {"_count": 3}, "from": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "and": {"_count": 1, "swirling": {"_count": 1}}}, "Clever": {"_count": 3, "Crookshanks": {"_count": 1, "did": {"_count": 1}}, "move": {"_count": 1, "pity": {"_count": 1}}, "idea": {"_count": 1, "Black": {"_count": 1}}}, "insolently": {"_count": 1, "on": {"_count": 1, "Ron": {"_count": 1}}}, "labeling": {"_count": 1, "his": {"_count": 1, "last": {"_count": 1}}}, "flourish": {"_count": 8, "and": {"_count": 5, "shoving": {"_count": 1}, "laid": {"_count": 1}, "read": {"_count": 2}, "your": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "her": {"_count": 1}}}, "OFF": {"_count": 8, "YOU": {"_count": 1, "STUPID": {"_count": 1}}, "HER": {"_count": 1, "BROOM": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "HE": {"_count": 2, "GOT": {"_count": 2}}, "SHUT": {"_count": 1, "UP": {"_count": 1}}, "Page": {"_count": 1, "lOlOHarry": {"_count": 1}}, "THE": {"_count": 1, "DIRIGIBLE": {"_count": 1}}}, "STUPID": {"_count": 2, "ANIMAL": {"_count": 1, "": {"_count": 1}}, "GIRL": {"_count": 1, "": {"_count": 1}}}, "ANIMAL": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "slashing": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "movement": {"_count": 3, "with": {"_count": 2}, "he": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "branches": {"_count": 1, "": {"_count": 1}}}, "CATCH": {"_count": 1, "THAT": {"_count": 1, "CAT": {"_count": 1}}}, "CAT": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "RAT": {"_count": 1, "AND": {"_count": 1}}}, "lunge": {"_count": 1, "for": {"_count": 1, "Crookshanks": {"_count": 1}}}, "swipes": {"_count": 2, "beneath": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}}, "giggle": {"_count": 15, "": {"_count": 11, ".": {"_count": 11}}, "again": {"_count": 1, "": {"_count": 1}}, "still": {"_count": 1, "hanging": {"_count": 1}}, "Lavender": {"_count": 1, "Brown": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}}, "puffapod": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pods": {"_count": 5, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Ron": {"_count": 1, "on": {"_count": 1}}, "down": {"_count": 1, "onto": {"_count": 1}}}, "pail": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "scattering": {"_count": 1}}}, "resolved": {"_count": 10, "to": {"_count": 6, "ask": {"_count": 1}, "work": {"_count": 1}, "hope": {"_count": 1}, "turn": {"_count": 1}, "keep": {"_count": 1}, "suggest": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "itself": {"_count": 2, "into": {"_count": 2}}, "not": {"_count": 1, "to": {"_count": 1}}}, "disturbance": {"_count": 13, "at": {"_count": 3, "the": {"_count": 3}}, "should": {"_count": 1, "be": {"_count": 1}}, "was": {"_count": 1, "taking": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "centered": {"_count": 1, "on": {"_count": 1}}, "outside": {"_count": 1, "their": {"_count": 1}}, "opened": {"_count": 1, "its": {"_count": 1}}, "its": {"_count": 1, "how": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}}, "Binky": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "being": {"_count": 1, "killed": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}, "didnt": {"_count": 1, "even": {"_count": 1}}}, "fox": {"_count": 11, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "said": {"_count": 2, "Lavender": {"_count": 1}, "a": {"_count": 1}}, "fur": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "froze": {"_count": 1, "wary": {"_count": 1}}, "now": {"_count": 1, "crouching": {"_count": 1}}, "fell": {"_count": 1, "back": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "soared": {"_count": 1, "past": {"_count": 1}}}, "necessarily": {"_count": 8, "by": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Fred": {"_count": 1}, "Lupin": {"_count": 1}}, "mean": {"_count": 1, "what": {"_count": 1}}, "worthless": {"_count": 1, "": {"_count": 1}}, "get": {"_count": 1, "it": {"_count": 1}}, "remain": {"_count": 1, "so": {"_count": 1}}}, "N": {"_count": 32, "no": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 29}}, "Bran": {"_count": 1, "breakfast": {"_count": 1}}}, "Lavenders": {"_count": 1, "shoulders": {"_count": 1, "": {"_count": 1}}}, "logically": {"_count": 2, "said": {"_count": 1, "Hermione": {"_count": 1}}, "that": {"_count": 1, "somebody": {"_count": 1}}}, "daggers": {"_count": 7, "at": {"_count": 2, "each": {"_count": 1}, "Hermione": {"_count": 1}}, "claws": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "who": {"_count": 1}}, "that": {"_count": 1, "glanced": {"_count": 1}}, "Snape": {"_count": 1, "avoided": {"_count": 1}}, "sank": {"_count": 1, "one": {"_count": 1}}}, "egged": {"_count": 2, "him": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 1, "by": {"_count": 1}}}, "vigorous": {"_count": 1, "nods": {"_count": 1, "": {"_count": 1}}}, "allforthebest": {"_count": 1, "expression": {"_count": 1, "that": {"_count": 1}}}, "endure": {"_count": 14, "everyone": {"_count": 1, "in": {"_count": 1}}, "Draco": {"_count": 1, "Malfoys": {"_count": 1}}, "people": {"_count": 1, "Slytherins": {"_count": 1}}, "over": {"_count": 1, "an": {"_count": 1}}, "Deans": {"_count": 1, "Seamuss": {"_count": 1}}, "Sirius": {"_count": 1, "telling": {"_count": 1}}, "before": {"_count": 1, "that": {"_count": 1}}, "any": {"_count": 1, "more": {"_count": 1}}, "only": {"_count": 1, "twentytwo": {"_count": 1}}, "from": {"_count": 1, "Snape": {"_count": 1}}, "this": {"_count": 1, "term": {"_count": 1}}, "Filchs": {"_count": 1, "wheezy": {"_count": 1}}, "on": {"_count": 1, "resisting": {"_count": 1}}, "fifteen": {"_count": 1, "highly": {"_count": 1}}}, "forge": {"_count": 2, "Uncle": {"_count": 1, "Vernons": {"_count": 1}}, "the": {"_count": 1, "details": {"_count": 1}}}, "helpful": {"_count": 5, "words": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "pleasant": {"_count": 1, "guests": {"_count": 1}}, "hand": {"_count": 1, "": {"_count": 1}}}, "sweetshops": {"_count": 1, "rather": {"_count": 1, "good": {"_count": 1}}}, "Shops": {"_count": 2, "frankly": {"_count": 1, "dangerous": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}}, "frankly": {"_count": 10, "dangerous": {"_count": 1, "and": {"_count": 1}}, "bewildered": {"_count": 1, "": {"_count": 1}}, "marveled": {"_count": 1, "at": {"_count": 1}}, "I": {"_count": 2, "can": {"_count": 1}, "think": {"_count": 1}}, "Im": {"_count": 1, "surprised": {"_count": 1}}, "youve": {"_count": 1, "never": {"_count": 1}}, "she": {"_count": 1, "smiled": {"_count": 1}}, "an": {"_count": 1, "insult": {"_count": 1}}, "most": {"_count": 1, "people": {"_count": 1}}}, "awoke": {"_count": 27, "with": {"_count": 5, "the": {"_count": 1}, "a": {"_count": 4}}, "one": {"_count": 1, "night": {"_count": 1}}, "and": {"_count": 2, "telling": {"_count": 1}, "began": {"_count": 1}}, "next": {"_count": 4, "morning": {"_count": 3}, "day": {"_count": 1}}, "on": {"_count": 2, "Monday": {"_count": 1}, "Christmas": {"_count": 1}}, "very": {"_count": 2, "suddenly": {"_count": 1}, "early": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "halfpast": {"_count": 1}}, "abruptly": {"_count": 2, "with": {"_count": 2}}, "looked": {"_count": 1, "blearily": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "instantly": {"_count": 1, "confused": {"_count": 1}}, "still": {"_count": 1, "yelling": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "squabble": {"_count": 1, "about": {"_count": 1, "Crookshanks": {"_count": 1}}}, "difficulties": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "Snape": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "were": {"_count": 1}}}, "Staying": {"_count": 1, "here": {"_count": 1, "Potter": {"_count": 1}}}, "doze": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}, "terrified": {"_count": 1, "that": {"_count": 1}}, "off": {"_count": 1, "as": {"_count": 1}}}, "Fortuna": {"_count": 1, "Major": {"_count": 1, "said": {"_count": 1}}}, "listlessly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "because": {"_count": 1, "Ron": {"_count": 1}}}, "novelty": {"_count": 1, "had": {"_count": 1, "worn": {"_count": 1}}}, "worn": {"_count": 21, "off": {"_count": 3, "": {"_count": 1}, "slightly": {"_count": 1}, "and": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "stone": {"_count": 2, "steps": {"_count": 2}}, "when": {"_count": 4, "Moody": {"_count": 1}, "he": {"_count": 2}, "handling": {"_count": 1}}, "for": {"_count": 1, "days": {"_count": 1}}, "the": {"_count": 1, "same": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "carpet": {"_count": 1, "below": {"_count": 1}}, "now": {"_count": 1, "her": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "velvet": {"_count": 1, "case": {"_count": 1}}, "and": {"_count": 1, "smooth": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}}, "opportunity": {"_count": 44, "to": {"_count": 26, "speak": {"_count": 3}, "go": {"_count": 1}, "force": {"_count": 1}, "give": {"_count": 1}, "flash": {"_count": 1}, "examine": {"_count": 1}, "see": {"_count": 1}, "tell": {"_count": 4}, "keep": {"_count": 1}, "do": {"_count": 1}, "empty": {"_count": 1}, "discuss": {"_count": 1}, "curse": {"_count": 1}, "strike": {"_count": 1}, "start": {"_count": 1}, "discover": {"_count": 1}, "find": {"_count": 1}, "hide": {"_count": 1}, "uphold": {"_count": 1}, "act": {"_count": 1}, "take": {"_count": 1}}, "was": {"_count": 1, "too": {"_count": 1}}, "Britain": {"_count": 1, "hasnt": {"_count": 1}}, "for": {"_count": 2, "us": {"_count": 1}, "someone": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "if": {"_count": 1, "theyre": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "see": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "he": {"_count": 1, "got": {"_count": 1}}, "probably": {"_count": 1, "when": {"_count": 1}}, "shortly": {"_count": 1, "before": {"_count": 1}}, "of": {"_count": 1, "denying": {"_count": 1}}, "stole": {"_count": 1, "through": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "avidly": {"_count": 9, "at": {"_count": 7, "the": {"_count": 2}, "Krum": {"_count": 1}, "him": {"_count": 2}, "Harry": {"_count": 2}}, "from": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dispiritedly": {"_count": 3, "toward": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "truthfully": {"_count": 11, "": {"_count": 6, ".": {"_count": 6}}, "say": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 2, "Tonks": {"_count": 1}, "Sirius": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}}, "Sneaking": {"_count": 2, "around": {"_count": 2, "on": {"_count": 1}, "trying": {"_count": 1}}}, "Belch": {"_count": 1, "Powder": {"_count": 1, "and": {"_count": 1}}}, "Powder": {"_count": 6, "and": {"_count": 1, "Whizzing": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "were": {"_count": 1, "importing": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Whizzing": {"_count": 1, "Worms": {"_count": 1, "like": {"_count": 1}}}, "Worms": {"_count": 1, "like": {"_count": 1, "the": {"_count": 1}}}, "Owlery": {"_count": 30, "to": {"_count": 1, "see": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 1}, ".": {"_count": 5}}, "if": {"_count": 1, "you": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "were": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "Hermione": {"_count": 1, "gave": {"_count": 1}}, "that": {"_count": 2, "evening": {"_count": 2}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "wall": {"_count": 1, "folded": {"_count": 1}}, "after": {"_count": 1, "breakfast": {"_count": 1}}, "window": {"_count": 2, "they": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 1, "out": {"_count": 1}}, "together": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "door": {"_count": 3, "banged": {"_count": 1}, "opened": {"_count": 2}}, "on": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "glassless": {"_count": 1}}, "Tower": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "driven": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}}, "wouldbe": {"_count": 9, "casual": {"_count": 2, "voice": {"_count": 2}}, "calm": {"_count": 2, "sort": {"_count": 1}, "voice": {"_count": 1}}, "ballet": {"_count": 1, "teacher": {"_count": 1}}, "cheery": {"_count": 1, "voice": {"_count": 1}}, "killer": {"_count": 1, "one": {"_count": 1}}, "victim": {"_count": 1, "who": {"_count": 1}}, "victims": {"_count": 1, "Seamus": {"_count": 1}}}, "grindylow": {"_count": 12, "for": {"_count": 1, "our": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "bared": {"_count": 1, "its": {"_count": 1}}, "brandishing": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "cross": {"_count": 1, "a": {"_count": 1}}, "tank": {"_count": 2, "": {"_count": 1}, "slightly": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "floating": {"_count": 1, "away": {"_count": 1}}, "tied": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "Water": {"_count": 7, "demon": {"_count": 1, "said": {"_count": 1}}, "Plants": {"_count": 2, "of": {"_count": 2}}, "croaked": {"_count": 1, "Dumbledore": {"_count": 1}}, "panted": {"_count": 1, "Harry": {"_count": 1}}, "muttered": {"_count": 1, "Ron": {"_count": 1}}, "filled": {"_count": 1, "Harrys": {"_count": 1}}}, "demon": {"_count": 2, "said": {"_count": 1, "Lupin": {"_count": 1}}, "poking": {"_count": 1, "out": {"_count": 1}}}, "abnormally": {"_count": 4, "long": {"_count": 1, "fingers": {"_count": 1}}, "large": {"_count": 1, "nose": {"_count": 1}}, "vacant": {"_count": 1, "and": {"_count": 1}}, "powerful": {"_count": 1, "": {"_count": 1}}}, "Strong": {"_count": 6, "but": {"_count": 1, "very": {"_count": 1}}, "and": {"_count": 1, "silent": {"_count": 1}}, "Love": {"_count": 3, "Fred": {"_count": 1}, "which": {"_count": 1}, "": {"_count": 1}}, "likelihood": {"_count": 1, "Undesirable": {"_count": 1}}}, "brittle": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "voice": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "brown": {"_count": 1}}}, "spout": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "water": {"_count": 1}}, "blood": {"_count": 1, "from": {"_count": 1}}}, "cope": {"_count": 11, "with": {"_count": 10, "a": {"_count": 1}, "them": {"_count": 2}, "danger": {"_count": 1}, "for": {"_count": 1}, "it": {"_count": 2}, "at": {"_count": 1}, "the": {"_count": 2}}, "and": {"_count": 1, "I": {"_count": 1}}}, "materialize": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "suggests": {"_count": 4, "that": {"_count": 3, "what": {"_count": 1}, "at": {"_count": 1}, "that": {"_count": 1}}, "outside": {"_count": 1, "help": {"_count": 1}}}, "capable": {"_count": 16, "of": {"_count": 14, "fighting": {"_count": 1}, "": {"_count": 1}, "murder": {"_count": 2}, "in": {"_count": 1}, "dealing": {"_count": 1}, "getting": {"_count": 1}, "handling": {"_count": 1}, "moving": {"_count": 1}, "eating": {"_count": 1}, "havent": {"_count": 1}, "doing": {"_count": 1}, "said": {"_count": 1}, "imprisoning": {"_count": 1}}, "while": {"_count": 1, "Potter": {"_count": 1}}, "the": {"_count": 1, "tapestry": {"_count": 1}}}, "narrowing": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 2}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "slightly": {"_count": 1, "perhaps": {"_count": 1}}, "but": {"_count": 1, "nobody": {"_count": 1}}}, "cauldronful": {"_count": 1, "Snape": {"_count": 1, "continued": {"_count": 1}}}, "unsmiling": {"_count": 3, "and": {"_count": 2, "watchful": {"_count": 1}, "took": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "concocted": {"_count": 2, "a": {"_count": 1, "potion": {"_count": 1}}, "from": {"_count": 1, "unicorn": {"_count": 1}}}, "brewer": {"_count": 1, "and": {"_count": 1, "this": {"_count": 1}}}, "sip": {"_count": 12, "and": {"_count": 2, "shuddering": {"_count": 1}, "Harry": {"_count": 1}}, "of": {"_count": 6, "butterbeer": {"_count": 2}, "wine": {"_count": 2}, "her": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "though": {"_count": 1, "keeping": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "unfinished": {"_count": 3, "question": {"_count": 1, "": {"_count": 1}}, "Transfiguration": {"_count": 1, "homework": {"_count": 1}}, "year": {"_count": 1, "at": {"_count": 1}}}, "helps": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "Voldemort": {"_count": 1, "back": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 2, "escaping": {"_count": 1}, "people": {"_count": 1}}}, "mildly": {"_count": 20, "interested": {"_count": 4, "as": {"_count": 1}, "in": {"_count": 1}, "expression": {"_count": 1}, "": {"_count": 1}}, "surprised": {"_count": 4, "": {"_count": 4}}, "": {"_count": 6, ".": {"_count": 6}}, "impressed": {"_count": 2, "": {"_count": 2}}, "curious": {"_count": 1, "expression": {"_count": 1}}, "interesting": {"_count": 2, "television": {"_count": 1}, "but": {"_count": 1}}, "pleased": {"_count": 1, "about": {"_count": 1}}}, "recklessly": {"_count": 3, "on": {"_count": 1, "some": {"_count": 1}}, "brave": {"_count": 1, "pawns": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Disgusting": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "packet": {"_count": 3, "of": {"_count": 2, "tiny": {"_count": 1}, "crisps": {"_count": 1}}, "across": {"_count": 1, "to": {"_count": 1}}}, "foaming": {"_count": 3, "mugs": {"_count": 1, "of": {"_count": 1}}, "tankards": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "churning": {"_count": 1}}}, "butterbeer": {"_count": 60, "and": {"_count": 8, "many": {"_count": 1}, "crouching": {"_count": 1}, "swaying": {"_count": 1}, "a": {"_count": 1}, "choking": {"_count": 1}, "pointed": {"_count": 1}, "taking": {"_count": 1}, "firewhisky": {"_count": 1}}, "really": {"_count": 1, "warms": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 2}, "silence": {"_count": 1}, "one": {"_count": 2}, "Slughorns": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 10}}, "then": {"_count": 1, "said": {"_count": 1}}, "thanked": {"_count": 1, "Lupin": {"_count": 1}}, "pumpkin": {"_count": 1, "fizz": {"_count": 1}}, "bottles": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "on": {"_count": 2, "him": {"_count": 1}, "every": {"_count": 1}}, "under": {"_count": 2, "his": {"_count": 2}}, "watching": {"_count": 1, "the": {"_count": 1}}, "clutched": {"_count": 2, "in": {"_count": 2}}, "down": {"_count": 6, "her": {"_count": 1}, "herself": {"_count": 2}, "his": {"_count": 3}}, "rolled": {"_count": 1, "away": {"_count": 1}}, "fell": {"_count": 1, "with": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "George": {"_count": 1, "was": {"_count": 1}}, "corks": {"_count": 3, "for": {"_count": 1}, "watching": {"_count": 1}, "": {"_count": 1}}, "caps": {"_count": 1, "or": {"_count": 1}}, "bottle": {"_count": 3, "gagged": {"_count": 1}, "was": {"_count": 1}, "again": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "cork": {"_count": 1, "necklace": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "choked": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "wash": {"_count": 1}}}, "besides": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "colorcoded": {"_count": 2, "depending": {"_count": 1, "on": {"_count": 1}}, "chews": {"_count": 1, "": {"_count": 1}}}, "depending": {"_count": 5, "on": {"_count": 4, "how": {"_count": 1}, "the": {"_count": 3}}, "how": {"_count": 1, "well": {"_count": 1}}}, "samples": {"_count": 1, "theres": {"_count": 1, "a": {"_count": 1}}}, "ogre": {"_count": 1, "honestly": {"_count": 1, "they": {"_count": 1}}}, "warms": {"_count": 1, "you": {"_count": 1, "up": {"_count": 1}}}, "feastll": {"_count": 1, "be": {"_count": 1, "starting": {"_count": 1}}}, "candlefilled": {"_count": 4, "pumpkins": {"_count": 1, "a": {"_count": 1}}, "chandelier": {"_count": 2, "and": {"_count": 2}}, "lamp": {"_count": 1, "hung": {"_count": 1}}}, "watersnakes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "formation": {"_count": 4, "gliding": {"_count": 1, "Nearly": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "pimples": {"_count": 1}}}, "reenactment": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "botched": {"_count": 1, "beheading": {"_count": 1, "": {"_count": 1}}}, "spoiled": {"_count": 4, "by": {"_count": 1, "Malfoy": {"_count": 1}}, "pampered": {"_count": 1, "bullying": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "everything": {"_count": 1, "by": {"_count": 1}}}, "Peoples": {"_count": 1, "heads": {"_count": 1, "turned": {"_count": 1}}}, "slashed": {"_count": 11, "so": {"_count": 1, "viciously": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "and": {"_count": 2, "ripped": {"_count": 1}, "twirled": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "another": {"_count": 1, "deep": {"_count": 1}}, "through": {"_count": 2, "the": {"_count": 2}}}, "strips": {"_count": 6, "of": {"_count": 6, "canvas": {"_count": 1}, "moonlight": {"_count": 1}, "dazzling": {"_count": 1}, "wood": {"_count": 1}, "white": {"_count": 1}, "matte": {"_count": 1}}}, "canvas": {"_count": 24, "littered": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "ceiling": {"_count": 3, "of": {"_count": 1}, "": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "but": {"_count": 2, "no": {"_count": 1}, "Cedric": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "remained": {"_count": 1, "silent": {"_count": 1}}, "behind": {"_count": 1, "": {"_count": 1}}, "walls": {"_count": 1, "of": {"_count": 1}}, "rope": {"_count": 1, "and": {"_count": 1}}, "which": {"_count": 1, "in": {"_count": 1}}, "roof": {"_count": 2, "": {"_count": 1}, "listening": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "large": {"_count": 1, "shadows": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}, "over": {"_count": 1, "their": {"_count": 1}}}, "cackling": {"_count": 15, "voice": {"_count": 2, "": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "ahead": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "waving": {"_count": 1}, "pointing": {"_count": 1}, "shrieking": {"_count": 1}, "calling": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "insanely": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "laughter": {"_count": 1}}, "loudly": {"_count": 1, "as": {"_count": 1}}, "before": {"_count": 1, "Ron": {"_count": 1}}}, "Peevess": {"_count": 1, "grin": {"_count": 1, "faded": {"_count": 1}}}, "taunt": {"_count": 5, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "him": {"_count": 1, "watch": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "nothing": {"_count": 1, "had": {"_count": 1}}}, "adopted": {"_count": 5, "an": {"_count": 1, "oily": {"_count": 1}}, "a": {"_count": 1, "highpitched": {"_count": 1}}, "me": {"_count": 1, "as": {"_count": 1}}, "twelve": {"_count": 1, "Grimmauld": {"_count": 1}}, "when": {"_count": 1, "wishing": {"_count": 1}}}, "Ashamed": {"_count": 2, "Your": {"_count": 1, "Headship": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Headship": {"_count": 1, "sir": {"_count": 1, "": {"_count": 1}}}, "landscape": {"_count": 7, "up": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "seemed": {"_count": 2, "deserted": {"_count": 1}, "to": {"_count": 1}}, "like": {"_count": 1, "strips": {"_count": 1}}}, "Crying": {"_count": 1, "something": {"_count": 1, "dreadful": {"_count": 1}}}, "unconvincingly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "casual": {"_count": 1, "voice": {"_count": 1}}}, "Professorhead": {"_count": 1, "said": {"_count": 1, "Peeves": {"_count": 1}}}, "cradling": {"_count": 6, "a": {"_count": 1, "large": {"_count": 1}}, "her": {"_count": 2, "hands": {"_count": 1}, "tea": {"_count": 1}}, "the": {"_count": 1, "bleeding": {"_count": 1}}, "his": {"_count": 2, "mutilated": {"_count": 1}, "stump": {"_count": 1}}}, "bombshell": {"_count": 2, "in": {"_count": 1, "his": {"_count": 1}}, "or": {"_count": 1, "perhaps": {"_count": 1}}}, "GRIM": {"_count": 1, "DEFEAT": {"_count": 1, "Professor": {"_count": 1}}}, "DEFEAT": {"_count": 1, "Professor": {"_count": 1, "Dumbledore": {"_count": 1}}}, "conduct": {"_count": 3, "a": {"_count": 1, "thorough": {"_count": 1}}, "yourselves": {"_count": 1, "always": {"_count": 1}}, "them": {"_count": 1, "from": {"_count": 1}}}, "Sleep": {"_count": 3, "well": {"_count": 1, "said": {"_count": 1}}, "tight": {"_count": 1, "said": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}}, "Disguised": {"_count": 1, "himself": {"_count": 1, "probably": {"_count": 1}}}, "stealth": {"_count": 4, "": {"_count": 4, ".": {"_count": 4}}}, "outdoors": {"_count": 4, "in": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "during": {"_count": 1, "darkness": {"_count": 1}}}, "pbetween": {"_count": 1, "the": {"_count": 1, "sleeping": {"_count": 1}}}, "temporary": {"_count": 10, "guardian": {"_count": 1, "for": {"_count": 1}}, "Care": {"_count": 1, "of": {"_count": 1}}, "invisible": {"_count": 1, "wall": {"_count": 1}}, "relief": {"_count": 1, "and": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "warehouse": {"_count": 1, "": {"_count": 1}}, "silence": {"_count": 1, "to": {"_count": 1}}, "absence": {"_count": 1, "from": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}}, "Hiding": {"_count": 2, "in": {"_count": 1, "a": {"_count": 1}}, "are": {"_count": 1, "you": {"_count": 1}}}, "Argyllshire": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "linger": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 1, "only": {"_count": 1}}, "long": {"_count": 1, "enough": {"_count": 1}}, "overlong": {"_count": 1, "on": {"_count": 1}}, "over": {"_count": 1, "Rons": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "express": {"_count": 9, "my": {"_count": 1, "concerns": {"_count": 1}}, "his": {"_count": 2, "outrage": {"_count": 1}, "feelings": {"_count": 1}}, "their": {"_count": 2, "feelings": {"_count": 1}, "fury": {"_count": 1}}, "a": {"_count": 1, "regret": {"_count": 1}}, "aloud": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "doubts": {"_count": 1}}, "all": {"_count": 1, "their": {"_count": 1}}}, "concerns": {"_count": 9, "when": {"_count": 1, "you": {"_count": 1}}, "a": {"_count": 1, "Muggle": {"_count": 1}}, "voiced": {"_count": 1, "by": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Fudge": {"_count": 1, "interrupted": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "me": {"_count": 1, "now": {"_count": 1}}, "fled": {"_count": 1, "Harrys": {"_count": 1}}}, "resentment": {"_count": 13, "on": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 3, "her": {"_count": 1}, "the": {"_count": 2}}, "and": {"_count": 2, "he": {"_count": 1}, "fear": {"_count": 1}}, "Harrys": {"_count": 1, "best": {"_count": 1}}, "Master": {"_count": 1, "thinks": {"_count": 1}}, "fought": {"_count": 1, "shock": {"_count": 1}}, "swelled": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "flowering": {"_count": 1, "shrub": {"_count": 1, "": {"_count": 1}}}, "shrub": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "challenging": {"_count": 3, "people": {"_count": 1, "to": {"_count": 1}}, "career": {"_count": 1, "involving": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "ridiculously": {"_count": 5, "complicated": {"_count": 1, "passwords": {"_count": 1}}, "advanced": {"_count": 1, "": {"_count": 1}}, "low": {"_count": 1, "bow": {"_count": 1}}, "long": {"_count": 1, "time": {"_count": 1}}, "large": {"_count": 1, "coat": {"_count": 1}}}, "lunatic": {"_count": 8, "said": {"_count": 1, "Seamus": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "like": {"_count": 1, "that": {"_count": 1}}, "murderer": {"_count": 1, "and": {"_count": 1}}, "elf": {"_count": 1, "": {"_count": 1}}, "rag": {"_count": 1, "of": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}}, "Frightened": {"_count": 4, "of": {"_count": 3, "what": {"_count": 2}, "Dumbledore": {"_count": 1}}, "stumbling": {"_count": 1, "a": {"_count": 1}}}, "tailing": {"_count": 8, "him": {"_count": 3, "everywhere": {"_count": 1}, "closely": {"_count": 1}, "in": {"_count": 1}}, "you": {"_count": 2, "all": {"_count": 1}, "": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "away": {"_count": 1, "feebly": {"_count": 1}}}, "pompous": {"_count": 9, "guard": {"_count": 1, "dog": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "essentially": {"_count": 1}}, "on": {"_count": 1, "occasions": {"_count": 1}}, "manner": {"_count": 2, "": {"_count": 2}}, "and": {"_count": 1, "singsong": {"_count": 1}}, "little": {"_count": 1, "sign": {"_count": 1}}, "prat": {"_count": 1, "I": {"_count": 1}}}, "prospects": {"_count": 4, "it": {"_count": 1, "had": {"_count": 1}}, "black": {"_count": 2, "Too": {"_count": 1}, "Harry": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "oversee": {"_count": 1, "your": {"_count": 1, "training": {"_count": 1}}}, "worsened": {"_count": 2, "steadily": {"_count": 1, "as": {"_count": 1}}, "dramatically": {"_count": 1, "when": {"_count": 1}}}, "styles": {"_count": 1, "quite": {"_count": 1, "different": {"_count": 1}}}, "Cedric": {"_count": 269, "Diggory": {"_count": 35, "Angelina": {"_count": 1}, "to": {"_count": 1}, "was": {"_count": 5}, "came": {"_count": 1}, "": {"_count": 11}, "and": {"_count": 3}, "from": {"_count": 1}, "walked": {"_count": 1}, "badges": {"_count": 2}, "leaving": {"_count": 1}, "had": {"_count": 1}, "did": {"_count": 1}, "who": {"_count": 1}, "dropped": {"_count": 1}, "murdered": {"_count": 1}, "got": {"_count": 1}, "all": {"_count": 1}, "die": {"_count": 1}}, "": {"_count": 36, "?": {"_count": 4}, ".": {"_count": 27}, "!": {"_count": 5}}, "looking": {"_count": 3, "around": {"_count": 1}, "up": {"_count": 2}}, "for": {"_count": 2, "beating": {"_count": 1}, "anyway": {"_count": 1}}, "looked": {"_count": 9, "slightly": {"_count": 1}, "nonplussed": {"_count": 1}, "the": {"_count": 1}, "as": {"_count": 2}, "severely": {"_count": 1}, "around": {"_count": 2}, "down": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "knows": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 17, "standing": {"_count": 2}, "still": {"_count": 2}, "one": {"_count": 1}, "at": {"_count": 1}, "pacing": {"_count": 1}, "in": {"_count": 1}, "right": {"_count": 1}, "going": {"_count": 1}, "sprinting": {"_count": 1}, "much": {"_count": 1}, "about": {"_count": 1}, "serious": {"_count": 1}, "lying": {"_count": 1}, "too": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 12, "Harry": {"_count": 1}, "Fleur": {"_count": 2}, "he": {"_count": 1}, "Krum": {"_count": 2}, "Cho": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 1}, "fought": {"_count": 1}, "now": {"_count": 1}}, "Fleur": {"_count": 3, "and": {"_count": 3}}, "I": {"_count": 1, "suggest": {"_count": 1}}, "who": {"_count": 3, "nodded": {"_count": 1}, "had": {"_count": 2}}, "with": {"_count": 3, "a": {"_count": 1}, "everyone": {"_count": 1}, "his": {"_count": 1}}, "as": {"_count": 4, "they": {"_count": 1}, "he": {"_count": 2}, "much": {"_count": 1}}, "didnt": {"_count": 3, "believe": {"_count": 1}, "seem": {"_count": 1}, "move": {"_count": 1}}, "headed": {"_count": 1, "for": {"_count": 1}}, "or": {"_count": 3, "Viktor": {"_count": 1}, "anything": {"_count": 1}, "whatever": {"_count": 1}}, "to": {"_count": 5, "sign": {"_count": 1}, "the": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "open": {"_count": 1}}, "handed": {"_count": 1, "over": {"_count": 1}}, "grinning": {"_count": 1, "": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "badge": {"_count": 1, "though": {"_count": 1}}, "lately": {"_count": 1, "he": {"_count": 1}}, "Diggoryl": {"_count": 3, "badges": {"_count": 3}}, "still": {"_count": 1, "didnt": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 4, "front": {"_count": 1}, "an": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 1}}, "at": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "picking": {"_count": 1, "up": {"_count": 1}}, "said": {"_count": 7, "Harry": {"_count": 1}, "in": {"_count": 1}, "use": {"_count": 1}, "indignantly": {"_count": 1}, "Well": {"_count": 1}, "": {"_count": 2}}, "had": {"_count": 19, "got": {"_count": 1}, "nodded": {"_count": 1}, "entered": {"_count": 1}, "gotten": {"_count": 1}, "given": {"_count": 1}, "really": {"_count": 1}, "told": {"_count": 1}, "been": {"_count": 3}, "beaten": {"_count": 1}, "made": {"_count": 1}, "done": {"_count": 1}, "appeared": {"_count": 1}, "died": {"_count": 4}, "things": {"_count": 1}}, "stared": {"_count": 2, "at": {"_count": 2}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "gave": {"_count": 3, "him": {"_count": 1}, "me": {"_count": 2}}, "put": {"_count": 1, "his": {"_count": 1}}, "emerging": {"_count": 2, "from": {"_count": 1}, "see": {"_count": 1}}, "did": {"_count": 3, "whatever": {"_count": 1}, "this": {"_count": 1}, "he": {"_count": 1}}, "he": {"_count": 4, "had": {"_count": 2}, "also": {"_count": 1}, "knew": {"_count": 1}}, "might": {"_count": 2, "have": {"_count": 2}}, "she": {"_count": 1, "said": {"_count": 1}}, "Cedric": {"_count": 1, "Diggory": {"_count": 1}}, "prepared": {"_count": 1, "to": {"_count": 1}}, "too": {"_count": 1, "much": {"_count": 1}}, "ran": {"_count": 1, "up": {"_count": 1}}, "lowered": {"_count": 1, "his": {"_count": 1}}, "pulling": {"_count": 1, "his": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "exactly": {"_count": 1, "what": {"_count": 1}}, "help": {"_count": 1, "": {"_count": 1}}, "swimming": {"_count": 1, "toward": {"_count": 1}}, "pull": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "glowing": {"_count": 1}}, "came": {"_count": 1, "up": {"_count": 1}}, "climbed": {"_count": 1, "over": {"_count": 1}}, "stuck": {"_count": 1, "his": {"_count": 1}}, "hurried": {"_count": 1, "forward": {"_count": 1}}, "do": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 2}}, "jerking": {"_count": 1, "and": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "muttered": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "stood": {"_count": 2, "there": {"_count": 1}, "up": {"_count": 1}}, "right": {"_count": 2, "": {"_count": 1}, "now": {"_count": 1}}, "now": {"_count": 2, "": {"_count": 1}, "while": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "yelling": {"_count": 1, "Stupefy": {"_count": 1}}, "yelled": {"_count": 1, "the": {"_count": 1}}, "shouting": {"_count": 1, "": {"_count": 1}}, "watched": {"_count": 1, "Harry": {"_count": 1}}, "mulishly": {"_count": 1, "": {"_count": 1}}, "both": {"_count": 1, "grasped": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "shot": {"_count": 1, "him": {"_count": 1}}, "those": {"_count": 1, "pitiless": {"_count": 1}}, "take": {"_count": 1, "my": {"_count": 1}}, "Harry": {"_count": 1, "dived": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "would": {"_count": 2, "want": {"_count": 1}, "have": {"_count": 1}}, "asking": {"_count": 1, "to": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "dead": {"_count": 2, "on": {"_count": 1}, "in": {"_count": 1}}, "died": {"_count": 2, "as": {"_count": 1}, "so": {"_count": 1}}, "being": {"_count": 1, "murdered": {"_count": 1}}, "your": {"_count": 1, "boyfriend": {"_count": 1}}, "Diggorys": {"_count": 1, "death": {"_count": 1}}, "She": {"_count": 1, "broke": {"_count": 1}}, "when": {"_count": 2, "you": {"_count": 1}, "Cedric": {"_count": 1}}, "dying": {"_count": 2, "": {"_count": 2}}, "last": {"_count": 1, "year": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}}, "Diggory": {"_count": 115, "Angelina": {"_count": 1, "Alicia": {"_count": 1}}, "to": {"_count": 2, "him": {"_count": 1}, "Ludo": {"_count": 1}}, "was": {"_count": 9, "a": {"_count": 1}, "pelting": {"_count": 1}, "an": {"_count": 1}, "it": {"_count": 1}, "murdered": {"_count": 1}, "the": {"_count": 1}, "stupid": {"_count": 1}, "lying": {"_count": 1}, "goodlooking": {"_count": 1}}, "smiled": {"_count": 1, "at": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "also": {"_count": 1}}, "got": {"_count": 3, "the": {"_count": 1}, "killed": {"_count": 1}, "murdered": {"_count": 1}}, "came": {"_count": 2, "over": {"_count": 1}, "back": {"_count": 1}}, "everyone": {"_count": 1, "said": {"_count": 1}}, "peered": {"_count": 1, "goodnaturedly": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 2}}, "": {"_count": 25, ".": {"_count": 18}, "!": {"_count": 5}, "?": {"_count": 2}}, "and": {"_count": 10, "Cedric": {"_count": 1}, "strode": {"_count": 1}, "she": {"_count": 1}, "Fleur": {"_count": 1}, "it": {"_count": 1}, "got": {"_count": 1}, "Mr": {"_count": 1}, "leave": {"_count": 1}, "Bagman": {"_count": 1}, "all": {"_count": 1}}, "Cedrics": {"_count": 1, "father": {"_count": 1}}, "squared": {"_count": 1, "his": {"_count": 1}}, "shout": {"_count": 1, "": {"_count": 1}}, "reemerged": {"_count": 1, "from": {"_count": 1}}, "deposited": {"_count": 1, "his": {"_count": 1}}, "called": {"_count": 1, "after": {"_count": 1}}, "said": {"_count": 5, "grimly": {"_count": 1}, "Harry": {"_count": 1}, "Seamus": {"_count": 2}, "Krum": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 2, "Mr": {"_count": 1}, "theyll": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "sternly": {"_count": 1, "": {"_count": 1}}, "brandishing": {"_count": 1, "it": {"_count": 1}}, "incredulously": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "disbelief": {"_count": 1}}, "looking": {"_count": 2, "unimpressed": {"_count": 1}, "highly": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "shouted": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "roared": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 3, "horrified": {"_count": 1}, "as": {"_count": 2}}, "muttered": {"_count": 1, "again": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "handed": {"_count": 1, "Harry": {"_count": 1}}, "calling": {"_count": 1, "her": {"_count": 1}}, "for": {"_count": 1, "that": {"_count": 1}}, "from": {"_count": 1, "Hufflepuff": {"_count": 1}}, "walked": {"_count": 1, "past": {"_count": 1}}, "you": {"_count": 1, "next": {"_count": 1}}, "badges": {"_count": 2, "but": {"_count": 1}, "on": {"_count": 1}}, "do": {"_count": 1, "exactly": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "you": {"_count": 1}}, "youre": {"_count": 1, "first": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "gone": {"_count": 1}}, "did": {"_count": 1, "": {"_count": 1}}, "thought": {"_count": 1, "she": {"_count": 1}}, "much": {"_count": 1, "longer": {"_count": 1}}, "he": {"_count": 1, "looked": {"_count": 1}}, "loudly": {"_count": 1, "enough": {"_count": 1}}, "sobbed": {"_count": 1, "through": {"_count": 1}}, "s": {"_count": 1, "grief": {"_count": 1}}, "dropped": {"_count": 1, "dead": {"_count": 1}}, "murdered": {"_count": 1, "": {"_count": 1}}, "we": {"_count": 1, "didnt": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "die": {"_count": 1, "having": {"_count": 1}}}, "lighthearted": {"_count": 2, "behavior": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}}, "goodlooking": {"_count": 13, "one": {"_count": 1, "isnt": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "ones": {"_count": 1, "taken": {"_count": 1}}, "his": {"_count": 1, "dark": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "orphan": {"_count": 1, "he": {"_count": 1}}, "enough": {"_count": 1, "for": {"_count": 1}}, "girl": {"_count": 1, "but": {"_count": 1}}, "girls": {"_count": 1, "are": {"_count": 1}}, "man": {"_count": 1, "with": {"_count": 1}}}, "pushover": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Diggorys": {"_count": 18, "put": {"_count": 1, "a": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "weight": {"_count": 1, "would": {"_count": 1}}, "and": {"_count": 1, "approached": {"_count": 1}}, "feet": {"_count": 1, "and": {"_count": 1}}, "head": {"_count": 5, "was": {"_count": 1}, "": {"_count": 1}, "rolled": {"_count": 1}, "rolling": {"_count": 1}, "looked": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "getting": {"_count": 1, "help": {"_count": 1}}, "parents": {"_count": 1, "theyre": {"_count": 1}}, "running": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "took": {"_count": 1}}, "death": {"_count": 1, "was": {"_count": 1}}, "body": {"_count": 1, "back": {"_count": 1}}}, "wrongfoot": {"_count": 1, "us": {"_count": 1, "": {"_count": 1}}}, "Seriously": {"_count": 7, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "Ron": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 1, "do": {"_count": 1}}, "good": {"_count": 1, "haul": {"_count": 1}}}, "gale": {"_count": 4, "outside": {"_count": 1, "pounded": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "laughter": {"_count": 1}}}, "swerve": {"_count": 7, "Harry": {"_count": 1, "so": {"_count": 1}}, "around": {"_count": 1, "Montague": {"_count": 1}}, "Katie": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 2, "avoid": {"_count": 2}}, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "dived": {"_count": 1}}}, "looping": {"_count": 1, "him": {"_count": 1, "Harry": {"_count": 1}}}, "lifethreatening": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "topics": {"_count": 4, "you": {"_count": 1, "have": {"_count": 1}}, "for": {"_count": 1, "gossip": {"_count": 1}}, "their": {"_count": 1, "teachers": {"_count": 1}}, "under": {"_count": 1, "discussion": {"_count": 1}}}, "grindylows": {"_count": 13, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "empty": {"_count": 1, "tank": {"_count": 1}}, "Kappas": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "risen": {"_count": 1}}, "pelted": {"_count": 1, "them": {"_count": 1}}, "grip": {"_count": 1, "and": {"_count": 1}}, "snatch": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 1, "might": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}}, "commenting": {"_count": 2, "on": {"_count": 2, "Professor": {"_count": 1}, "the": {"_count": 1}}}, "lack": {"_count": 34, "of": {"_count": 33, "organization": {"_count": 1}, "food": {"_count": 2}, "trying": {"_count": 2}, "gratitude": {"_count": 1}, "enthusiasm": {"_count": 1}, "poisonous": {"_count": 1}, "useful": {"_count": 1}, "obstacles": {"_count": 1}, "it": {"_count": 1}, "open": {"_count": 1}, "argument": {"_count": 1}, "news": {"_count": 1}, "confidence": {"_count": 2}, "any": {"_count": 2}, "policemen": {"_count": 1}, "sleep": {"_count": 1}, "helpfulness": {"_count": 1}, "use": {"_count": 2}, "fear": {"_count": 1}, "seemly": {"_count": 1}, "wisdom": {"_count": 1}, "light": {"_count": 1}, "tact": {"_count": 1}, "magic": {"_count": 1}, "a": {"_count": 1}, "other": {"_count": 1}, "interest": {"_count": 1}, "reaction": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "organization": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "calling": {"_count": 1, "itself": {"_count": 1}}, "known": {"_count": 1, "as": {"_count": 1}}}, "boldly": {"_count": 1, "and": {"_count": 1, "there": {"_count": 1}}}, "overtaxing": {"_count": 1, "you": {"_count": 1, "I": {"_count": 1}}}, "seemingly": {"_count": 4, "unable": {"_count": 1, "to": {"_count": 1}}, "immobilized": {"_count": 1, "by": {"_count": 1}}, "in": {"_count": 1, "response": {"_count": 1}}, "endlessly": {"_count": 1, "and": {"_count": 1}}}, "restrain": {"_count": 8, "herself": {"_count": 1, "were": {"_count": 1}}, "themselves": {"_count": 1, "when": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "tie": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "their": {"_count": 1, "pupils": {"_count": 1}}, "Ron": {"_count": 1, "to": {"_count": 1}}}, "hinkypunks": {"_count": 3, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "box": {"_count": 1, "with": {"_count": 1}}, "grindylows": {"_count": 1, "Kappas": {"_count": 1}}}, "sidelong": {"_count": 2, "looks": {"_count": 1, "and": {"_count": 1}}, "glance": {"_count": 1, "at": {"_count": 1}}}, "sullen": {"_count": 4, "muttering": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "sodden": {"_count": 1}}, "host": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "heavy": {"_count": 1}}}, "distinguish": {"_count": 6, "between": {"_count": 2, "the": {"_count": 2}}, "through": {"_count": 1, "the": {"_count": 1}}, "Hufflepuff": {"_count": 1, "house": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}, "passwords": {"_count": 1, "anymore": {"_count": 1}}}, "wolf": {"_count": 6, "": {"_count": 1, "?": {"_count": 1}}, "in": {"_count": 1, "several": {"_count": 1}}, "and": {"_count": 1, "wait": {"_count": 1}}, "down": {"_count": 1, "large": {"_count": 1}}, "whistling": {"_count": 1, "at": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}}, "distinction": {"_count": 2, "between": {"_count": 1, "We": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}}, "Silencel": {"_count": 2, "snarled": {"_count": 1, "Snape": {"_count": 1}}, "Wormtail": {"_count": 1, "who": {"_count": 1}}}, "differs": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "insufferable": {"_count": 1, "knowitall": {"_count": 1, "": {"_count": 1}}}, "poorly": {"_count": 5, "explained": {"_count": 1, "": {"_count": 1}}, "performed": {"_count": 1, "Imperius": {"_count": 1}}, "attended": {"_count": 1, "funeral": {"_count": 1}}, "of": {"_count": 1, "having": {"_count": 1}}, "cut": {"_count": 1, "hair": {"_count": 1}}}, "incorrect": {"_count": 1, "the": {"_count": 1, "kappa": {"_count": 1}}}, "kappa": {"_count": 1, "is": {"_count": 1, "more": {"_count": 1}}}, "Mongolia": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "arrange": {"_count": 9, "your": {"_count": 1, "detention": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "boys": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "to": {"_count": 1, "complete": {"_count": 1}}, "a": {"_count": 1, "meeting": {"_count": 1}}, "transport": {"_count": 1, "home": {"_count": 1}}}, "tirade": {"_count": 1, "about": {"_count": 1, "Snape": {"_count": 1}}}, "pensively": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "tugging": {"_count": 1, "at": {"_count": 1}}}, "scrub": {"_count": 3, "out": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "ink": {"_count": 1}}, "of": {"_count": 1, "Gryffindor": {"_count": 1}}}, "bedpans": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}}, "magid": {"_count": 1, "He": {"_count": 1, "was": {"_count": 1}}}, "Cursing": {"_count": 1, "Peeves": {"_count": 1, "he": {"_count": 1}}}, "trifles": {"_count": 1, "like": {"_count": 1, "thunderstorms": {"_count": 1}}}, "thunderstorms": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "apprehensive": {"_count": 17, "": {"_count": 6, ".": {"_count": 6}}, "he": {"_count": 1, "set": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "but": {"_count": 1, "after": {"_count": 1}}, "looks": {"_count": 1, "on": {"_count": 1}}, "Krum": {"_count": 1, "moved": {"_count": 1}}, "and": {"_count": 1, "wondering": {"_count": 1}}, "others": {"_count": 1, "entertained": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "they": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "whiled": {"_count": 4, "away": {"_count": 4, "the": {"_count": 3}, "most": {"_count": 1}}}, "mangy": {"_count": 2, "cur": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "halfblood": {"_count": 1}}}, "cur": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "revived": {"_count": 5, "a": {"_count": 1, "bit": {"_count": 1}}, "by": {"_count": 1, "mediwizards": {"_count": 1}}, "to": {"_count": 1, "look": {"_count": 1}}, "me": {"_count": 1, "tonight": {"_count": 1}}, "Voldemort": {"_count": 1, "he": {"_count": 1}}}, "tough": {"_count": 15, "one": {"_count": 1, "said": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "brown": {"_count": 1, "glove": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 2}, "!": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "new": {"_count": 1, "measures": {"_count": 1}}, "stand": {"_count": 1, "on": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "battlescarred": {"_count": 1}}, "so": {"_count": 1, "brave": {"_count": 1}}, "Luna": {"_count": 1, "much": {"_count": 1}}, "fibers": {"_count": 1, "to": {"_count": 1}}}, "popularity": {"_count": 4, "of": {"_count": 1, "Quidditch": {"_count": 1}}, "Im": {"_count": 1, "afraid": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "catching": {"_count": 1}}}, "ferocious": {"_count": 4, "wind": {"_count": 1, "umbrellas": {"_count": 1}}, "swipe": {"_count": 1, "at": {"_count": 1}}, "quillportraits": {"_count": 1, "might": {"_count": 1}}, "anguished": {"_count": 1, "face": {"_count": 1}}}, "prematch": {"_count": 2, "pep": {"_count": 1, "talk": {"_count": 1}}, "talk": {"_count": 1, "while": {"_count": 1}}}, "Captains": {"_count": 8, "walked": {"_count": 1, "up": {"_count": 1}}, "shake": {"_count": 3, "hands": {"_count": 3}}, "office": {"_count": 2, "already": {"_count": 1}, "": {"_count": 1}}, "badge": {"_count": 1, "on": {"_count": 1}}, "just": {"_count": 1, "kept": {"_count": 1}}}, "lockjaw": {"_count": 2, "and": {"_count": 1, "merely": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}}, "squelch": {"_count": 1, "and": {"_count": 1, "swung": {"_count": 1}}}, "swerving": {"_count": 3, "slightly": {"_count": 1, "with": {"_count": 1}}, "tantalizingly": {"_count": 1, "above": {"_count": 1}}, "in": {"_count": 1, "and": {"_count": 1}}}, "soaked": {"_count": 10, "to": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "freezing": {"_count": 1}}, "carrying": {"_count": 1, "their": {"_count": 1}}, "MadEye": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 2, "within": {"_count": 1}, "Fang": {"_count": 1}}, "chest": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "blood": {"_count": 1}}, "bathroom": {"_count": 1, "": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}}, "teammates": {"_count": 3, "let": {"_count": 1, "alone": {"_count": 1}}, "but": {"_count": 1, "Angelina": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}}, "clouded": {"_count": 2, "by": {"_count": 2, "the": {"_count": 2}}}, "teammate": {"_count": 2, "or": {"_count": 1, "opponent": {"_count": 1}}, "do": {"_count": 1, "try": {"_count": 1}}}, "exasperatedly": {"_count": 7, "waving": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "turning": {"_count": 1, "to": {"_count": 1}}, "hurrying": {"_count": 1, "back": {"_count": 1}}, "and": {"_count": 1, "ignoring": {"_count": 1}}}, "Imperviusl": {"_count": 3, "There": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "Okay": {"_count": 1, "": {"_count": 1}}}, "turbulent": {"_count": 3, "air": {"_count": 1, "staring": {"_count": 1}}, "water": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "disturbing": {"_count": 1}}}, "silhouette": {"_count": 8, "of": {"_count": 2, "an": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "group": {"_count": 1}}, "was": {"_count": 1, "raised": {"_count": 1}}, "and": {"_count": 1, "still": {"_count": 1}}}, "imprinted": {"_count": 2, "against": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "sodden": {"_count": 13, "bangs": {"_count": 1, "out": {"_count": 1}}, "vegetable": {"_count": 1, "patch": {"_count": 1}}, "robes": {"_count": 1, "weighed": {"_count": 1}}, "rag": {"_count": 1, "he": {"_count": 1}}, "Daily": {"_count": 1, "Prophet": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "disgruntled": {"_count": 1}}, "brownpaper": {"_count": 1, "package": {"_count": 1}}, "mass": {"_count": 1, "of": {"_count": 1}}, "rags": {"_count": 1, "and": {"_count": 1}}, "landscapes": {"_count": 1, "that": {"_count": 1}}, "panting": {"_count": 1, "and": {"_count": 1}}}, "rainfilled": {"_count": 1, "air": {"_count": 1, "between": {"_count": 1}}}, "broomhandle": {"_count": 1, "and": {"_count": 1, "zoomed": {"_count": 1}}}, "Fasteri": {"_count": 1, "But": {"_count": 1, "something": {"_count": 1}}}, "Numbing": {"_count": 2, "swirling": {"_count": 1, "white": {"_count": 1}}, "the": {"_count": 1, "pain": {"_count": 1}}}, "scariest": {"_count": 2, "thing": {"_count": 2, "Ive": {"_count": 1}, "": {"_count": 1}}}, "Scariest": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Mustve": {"_count": 4, "been": {"_count": 1, "what": {"_count": 1}}, "fallen": {"_count": 1, "asleep": {"_count": 1}}, "dozed": {"_count": 1, "off": {"_count": 1}}, "learned": {"_count": 1, "from": {"_count": 1}}}, "replay": {"_count": 4, "": {"_count": 1, "?": {"_count": 1}}, "action": {"_count": 1, "": {"_count": 1}}, "knob": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "playbyplay": {"_count": 1}}}, "rematch": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "admits": {"_count": 3, "it": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "being": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}}, "loses": {"_count": 3, "to": {"_count": 1, "Ravenclaw": {"_count": 1}}, "against": {"_count": 1, "Hufflepuff": {"_count": 1}}, "control": {"_count": 1, "thats": {"_count": 1}}}, "Hufflepuffll": {"_count": 1, "have": {"_count": 1, "to": {"_count": 1}}}, "depends": {"_count": 4, "on": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "what": {"_count": 1, "theyre": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}}, "margin": {"_count": 4, "of": {"_count": 2, "a": {"_count": 1}, "three": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}}, "trooped": {"_count": 10, "out": {"_count": 4, "trailing": {"_count": 1}, "in": {"_count": 1}, "of": {"_count": 1}, "into": {"_count": 1}}, "back": {"_count": 3, "to": {"_count": 1}, "up": {"_count": 1}, "into": {"_count": 1}}, "up": {"_count": 1, "onto": {"_count": 1}}, "off": {"_count": 1, "into": {"_count": 1}}, "toward": {"_count": 1, "a": {"_count": 1}}}, "quaking": {"_count": 5, "voice": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "suppressed": {"_count": 1}}, "so": {"_count": 1, "badly": {"_count": 1}}, "box": {"_count": 1, "": {"_count": 1}}, "figure": {"_count": 1, "": {"_count": 1}}}, "Shot": {"_count": 1, "silver": {"_count": 1, "stuff": {"_count": 1}}}, "magicked": {"_count": 6, "you": {"_count": 1, "onto": {"_count": 1}}, "into": {"_count": 2, "midair": {"_count": 1}, "place": {"_count": 1}}, "there": {"_count": 1, "since": {"_count": 1}}, "the": {"_count": 2, "tray": {"_count": 1}, "empty": {"_count": 1}}}, "stretcher": {"_count": 2, "said": {"_count": 1, "Ron": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}}, "hesitantly": {"_count": 6, "": {"_count": 6, ".": {"_count": 6}}}, "MARAUDERS": {"_count": 2, "MAP": {"_count": 2, "Madam": {"_count": 1}, "It": {"_count": 1}}}, "MAP": {"_count": 2, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}}, "intent": {"_count": 17, "on": {"_count": 9, "cheering": {"_count": 1}, "telling": {"_count": 1}, "preventing": {"_count": 1}, "preserving": {"_count": 1}, "nothing": {"_count": 2}, "his": {"_count": 1}, "what": {"_count": 1}, "the": {"_count": 1}}, "upon": {"_count": 8, "the": {"_count": 1}, "throttling": {"_count": 1}, "settling": {"_count": 1}, "creating": {"_count": 1}, "emptying": {"_count": 1}, "their": {"_count": 2}, "killing": {"_count": 1}}}, "earwiggy": {"_count": 1, "flowers": {"_count": 1, "that": {"_count": 1}}}, "getwell": {"_count": 1, "card": {"_count": 1, "she": {"_count": 1}}}, "scoff": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "appearances": {"_count": 4, "had": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}}, "nearfatal": {"_count": 3, "accidents": {"_count": 1, "the": {"_count": 1}}, "accident": {"_count": 1, "with": {"_count": 1}}, "attacks": {"_count": 1, "upon": {"_count": 1}}}, "humiliated": {"_count": 4, "every": {"_count": 1, "time": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "fitfully": {"_count": 1, "sinking": {"_count": 1, "into": {"_count": 1}}}, "spirited": {"_count": 1, "imitations": {"_count": 1, "of": {"_count": 1}}}, "imitations": {"_count": 4, "of": {"_count": 2, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "arent": {"_count": 1, "the": {"_count": 1}}}, "crocodile": {"_count": 4, "heart": {"_count": 1, "at": {"_count": 1}}, "bag": {"_count": 3, "and": {"_count": 1}, "": {"_count": 1}, "once": {"_count": 1}}}, "skiving": {"_count": 2, "off": {"_count": 1, "said": {"_count": 1}}, "sneak": {"_count": 1, "thief": {"_count": 1}}}, "loosely": {"_count": 3, "on": {"_count": 1, "him": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "complaints": {"_count": 6, "about": {"_count": 1, "Snapes": {"_count": 1}}, "that": {"_count": 1, "Scabbers": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "suggesting": {"_count": 1}, "several": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}}, "parchmenti": {"_count": 1, "Professor": {"_count": 1, "Lupin": {"_count": 1}}}, "indignation": {"_count": 16, "on": {"_count": 3, "every": {"_count": 1}, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "as": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "hardly": {"_count": 1, "anybody": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "sign": {"_count": 1}}, "that": {"_count": 1, "rendered": {"_count": 1}}}, "hinkypunk": {"_count": 4, "a": {"_count": 1, "little": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "then": {"_count": 1, "climb": {"_count": 1}}, "which": {"_count": 1, "successfully": {"_count": 1}}}, "onelegged": {"_count": 2, "creature": {"_count": 1, "who": {"_count": 1}}, "and": {"_count": 1, "toppled": {"_count": 1}}}, "frail": {"_count": 13, "and": {"_count": 3, "harmlesslooking": {"_count": 1}, "delicate": {"_count": 1}, "he": {"_count": 1}}, "wispylooking": {"_count": 1, "witch": {"_count": 1}}, "body": {"_count": 1, "hit": {"_count": 1}}, "legs": {"_count": 1, "tried": {"_count": 1}}, "wispy": {"_count": 1, "clouds": {"_count": 1}}, "build": {"_count": 1, "was": {"_count": 1}}, "old": {"_count": 2, "man": {"_count": 1}, "body": {"_count": 1}}, "for": {"_count": 1, "school": {"_count": 1}}, "man": {"_count": 1, "sat": {"_count": 1}}, "bodies": {"_count": 1, "shifting": {"_count": 1}}}, "harmlesslooking": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Lures": {"_count": 1, "travelers": {"_count": 1, "into": {"_count": 1}}}, "travelers": {"_count": 2, "into": {"_count": 1, "bogs": {"_count": 1}}, "usually": {"_count": 1, "drowned": {"_count": 1}}}, "bogs": {"_count": 1, "said": {"_count": 1, "Professor": {"_count": 1}}}, "Hops": {"_count": 1, "ahead": {"_count": 1, "people": {"_count": 1}}}, "squelching": {"_count": 4, "noise": {"_count": 2, "against": {"_count": 1}, "": {"_count": 1}}, "sound": {"_count": 2, "much": {"_count": 1}, "and": {"_count": 1}}}, "Davey": {"_count": 1, "Gudgeon": {"_count": 1, "nearly": {"_count": 1}}}, "refusal": {"_count": 6, "to": {"_count": 5, "let": {"_count": 1}, "use": {"_count": 1}, "allow": {"_count": 1}, "hear": {"_count": 1}, "discuss": {"_count": 1}}, "jealous": {"_count": 1, "of": {"_count": 1}}}, "wintery": {"_count": 2, "sunlight": {"_count": 1, "fell": {"_count": 1}}, "air": {"_count": 1, "like": {"_count": 1}}}, "infest": {"_count": 1, "the": {"_count": 1, "darkest": {"_count": 1}}}, "filthiest": {"_count": 1, "places": {"_count": 1, "they": {"_count": 1}}}, "decay": {"_count": 4, "and": {"_count": 1, "despair": {"_count": 1}}, "ears": {"_count": 1, "pricked": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "your": {"_count": 1, "spirit": {"_count": 1}}}, "despair": {"_count": 20, "they": {"_count": 2, "drain": {"_count": 1}, "cast": {"_count": 1}}, "as": {"_count": 1, "real": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "inside": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 2, "hopelessness": {"_count": 1}, "clutched": {"_count": 1}}, "sapped": {"_count": 1, "her": {"_count": 1}}, "All": {"_count": 1, "right": {"_count": 1}}, "of": {"_count": 2, "hopelessness": {"_count": 1}, "the": {"_count": 1}}, "that": {"_count": 1, "emanated": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}}, "reduce": {"_count": 2, "you": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "spider": {"_count": 1}}}, "prey": {"_count": 10, "has": {"_count": 1, "dried": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "for": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 1, "return": {"_count": 1}}, "upon": {"_count": 1, "Rons": {"_count": 1}}, "were": {"_count": 1, "deaf": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "emotions": {"_count": 8, "running": {"_count": 1, "high": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "and": {"_count": 1, "sharing": {"_count": 1}}, "who": {"_count": 1, "wallow": {"_count": 1}}, "are": {"_count": 1, "roused": {"_count": 1}}}, "island": {"_count": 13, "way": {"_count": 1, "out": {"_count": 1}}, "of": {"_count": 1, "smooth": {"_count": 1}}, "was": {"_count": 1, "no": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Dumbledore": {"_count": 1, "corrected": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "with": {"_count": 1, "its": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}}, "incapable": {"_count": 5, "of": {"_count": 4, "a": {"_count": 1}, "saying": {"_count": 1}, "normal": {"_count": 1}, "Occlumency": {"_count": 1}}, "in": {"_count": 1, "some": {"_count": 1}}}, "defenses": {"_count": 12, "one": {"_count": 1, "can": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "will": {"_count": 1, "be": {"_count": 1}}, "accidentally": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "and": {"_count": 1, "most": {"_count": 1}}, "surrounding": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "about": {"_count": 1}}, "being": {"_count": 1, "breached": {"_count": 1}}, "against": {"_count": 1, "us": {"_count": 1}}}, "expert": {"_count": 5, "at": {"_count": 1, "fighting": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "potioneer": {"_count": 1, "like": {"_count": 1}}, "on": {"_count": 1, "Dark": {"_count": 1}}}, "inconvenient": {"_count": 1, "time": {"_count": 1, "to": {"_count": 1}}}, "antidementor": {"_count": 3, "lessons": {"_count": 3, "from": {"_count": 1}, "as": {"_count": 1}, "were": {"_count": 1}}}, "upturn": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "repossessed": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "stations": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "opaline": {"_count": 1, "white": {"_count": 1, "and": {"_count": 1}}}, "revealed": {"_count": 29, "one": {"_count": 1, "morning": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 3, "have": {"_count": 1}, "be": {"_count": 1}, "them": {"_count": 1}}, "the": {"_count": 3, "people": {"_count": 1}, "remotest": {"_count": 1}, "wonders": {"_count": 1}}, "a": {"_count": 3, "number": {"_count": 1}, "spell": {"_count": 1}, "second": {"_count": 1}}, "something": {"_count": 1, "ugly": {"_count": 1}}, "themselves": {"_count": 1, "to": {"_count": 1}}, "dazzlingly": {"_count": 1, "white": {"_count": 1}}, "bobbing": {"_count": 1, "along": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "onto": {"_count": 1, "which": {"_count": 1}}, "thoughts": {"_count": 1, "and": {"_count": 1}}, "suddenly": {"_count": 1, "behind": {"_count": 1}}, "rows": {"_count": 1, "and": {"_count": 1}}, "bits": {"_count": 1, "of": {"_count": 1}}, "itself": {"_count": 1, "if": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "Grindelwald": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "distant": {"_count": 1, "bursts": {"_count": 1}}}, "fairies": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 2, "sitting": {"_count": 1}, "fluttering": {"_count": 1}}, "rose": {"_count": 1, "into": {"_count": 1}}, "blocked": {"_count": 1, "Siriuss": {"_count": 1}}}, "Toothflossing": {"_count": 2, "Stringmints": {"_count": 2, "from": {"_count": 1}, "tiny": {"_count": 1}}}, "Stringmints": {"_count": 2, "from": {"_count": 1, "Honeydukes": {"_count": 1}}, "tiny": {"_count": 1, "black": {"_count": 1}}}, "Resigned": {"_count": 3, "to": {"_count": 2, "the": {"_count": 2}}, "firs": {"_count": 1, "thing": {"_count": 1}}}, "jerky": {"_count": 3, "he": {"_count": 1, "definitely": {"_count": 1}}, "fashion": {"_count": 1, "barely": {"_count": 1}}, "crawl": {"_count": 1, "fastened": {"_count": 1}}}, "Snow": {"_count": 10, "had": {"_count": 1, "started": {"_count": 1}}, "was": {"_count": 7, "still": {"_count": 2}, "falling": {"_count": 2}, "filling": {"_count": 1}, "swirling": {"_count": 1}, "drifting": {"_count": 1}}, "lay": {"_count": 1, "upon": {"_count": 1}}, "crunched": {"_count": 1, "beneath": {"_count": 1}}}, "Psst": {"_count": 2, "Harry": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "humpbacked": {"_count": 1, "oneeyed": {"_count": 1, "witch": {"_count": 1}}}, "oneeyed": {"_count": 14, "witch": {"_count": 10, "": {"_count": 5}, "on": {"_count": 1}, "was": {"_count": 1}, "he": {"_count": 2}, "opened": {"_count": 1}}, "statue": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "crones": {"_count": 1}}, "witchs": {"_count": 1, "head": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}}, "festive": {"_count": 4, "cheer": {"_count": 1, "before": {"_count": 1}}, "The": {"_count": 1, "crystal": {"_count": 1}}, "password": {"_count": 1, "": {"_count": 1}}, "atmosphere": {"_count": 1, "and": {"_count": 1}}}, "Early": {"_count": 3, "Christmas": {"_count": 1, "present": {"_count": 1}}, "next": {"_count": 2, "morning": {"_count": 2}}}, "wrench": {"_count": 6, "giving": {"_count": 1, "it": {"_count": 1}}, "himself": {"_count": 1, "free": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "her": {"_count": 1, "hand": {"_count": 1}}}, "bequeath": {"_count": 1, "it": {"_count": 1, "to": {"_count": 1}}}, "carefree": {"_count": 1, "and": {"_count": 1, "innocent": {"_count": 1}}}, "Dungbomb": {"_count": 5, "in": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "whipped": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "under": {"_count": 1, "her": {"_count": 1}}}, "disembowelment": {"_count": 1, "and": {"_count": 1, "we": {"_count": 1}}}, "Confiscated": {"_count": 1, "and": {"_count": 1, "Highly": {"_count": 1}}}, "Highly": {"_count": 6, "Dangerous": {"_count": 1, "": {"_count": 1}}, "embarrassed": {"_count": 1, "he": {"_count": 1}}, "Biased": {"_count": 1, "and": {"_count": 1}}, "enjoyable": {"_count": 1, "though": {"_count": 1}}, "convenient": {"_count": 1, "highly": {"_count": 1}}, "gifted": {"_count": 1, "the": {"_count": 1}}}, "beautys": {"_count": 1, "taught": {"_count": 1, "us": {"_count": 1}}}, "crisscrossed": {"_count": 3, "they": {"_count": 1, "fanned": {"_count": 1}}, "in": {"_count": 1, "every": {"_count": 1}}, "the": {"_count": 1, "circular": {"_count": 1}}}, "fanned": {"_count": 2, "into": {"_count": 1, "every": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "blossom": {"_count": 3, "across": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "Voldemorts": {"_count": 1}}, "and": {"_count": 1, "threw": {"_count": 1}}}, "Messrs": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Moony": {"_count": 12, "Wormtail": {"_count": 6, "Padfoot": {"_count": 6}}, "presents": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "would": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}}, "Wormtail": {"_count": 162, "Padfoot": {"_count": 6, "and": {"_count": 6}}, "bids": {"_count": 1, "Professor": {"_count": 1}}, "or": {"_count": 2, "one": {"_count": 1}, "Cedric": {"_count": 1}}, "": {"_count": 33, ".": {"_count": 22}, "?": {"_count": 8}, "!": {"_count": 3}}, "had": {"_count": 10, "reappeared": {"_count": 1}, "been": {"_count": 2}, "escaped": {"_count": 1}, "not": {"_count": 1}, "betrayed": {"_count": 1}, "gone": {"_count": 1}, "flipped": {"_count": 1}, "done": {"_count": 1}, "to": {"_count": 1}}, "said": {"_count": 7, "the": {"_count": 3}, "quietly": {"_count": 1}, "a": {"_count": 1}, "Voldemort": {"_count": 2}}, "spoke": {"_count": 2, "again": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 2, "voice": {"_count": 1}, "job": {"_count": 1}}, "sounding": {"_count": 1, "thoroughly": {"_count": 1}}, "who": {"_count": 6, "had": {"_count": 2}, "lay": {"_count": 1}, "was": {"_count": 2}, "continued": {"_count": 1}}, "courage": {"_count": 1, "you": {"_count": 1}}, "panic": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 2, "Ministry": {"_count": 1}, "merest": {"_count": 1}}, "one": {"_count": 1, "more": {"_count": 1}}, "I": {"_count": 2, "need": {"_count": 1}, "do": {"_count": 1}}, "and": {"_count": 6, "there": {"_count": 1}, "my": {"_count": 1}, "of": {"_count": 1}, "give": {"_count": 1}, "me": {"_count": 1}, "I": {"_count": 1}}, "though": {"_count": 1, "if": {"_count": 1}}, "sounded": {"_count": 1, "terrified": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "Wormtail": {"_count": 1, "said": {"_count": 1}}, "muttered": {"_count": 1, "something": {"_count": 1}}, "it": {"_count": 1, "said": {"_count": 1}}, "beckoned": {"_count": 1, "Frank": {"_count": 1}}, "come": {"_count": 1, "turn": {"_count": 1}}, "Voldemorts": {"_count": 1, "supporter": {"_count": 1}}, "only": {"_count": 1, "the": {"_count": 1}}, "escaped": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "you": {"_count": 1}, "get": {"_count": 1}}, "screamed": {"_count": 1, "screamed": {"_count": 1}}, "of": {"_count": 1, "making": {"_count": 1}}, "was": {"_count": 12, "not": {"_count": 1}, "busying": {"_count": 1}, "speaking": {"_count": 1}, "whimpering": {"_count": 1}, "about": {"_count": 1}, "gasping": {"_count": 1}, "right": {"_count": 1}, "able": {"_count": 1}, "the": {"_count": 1}, "watching": {"_count": 1}, "looking": {"_count": 1}, "on": {"_count": 1}}, "wouldnt": {"_count": 1, "be": {"_count": 1}}, "drew": {"_count": 1, "a": {"_count": 1}}, "tending": {"_count": 1, "the": {"_count": 1}}, "pulled": {"_count": 1, "open": {"_count": 1}}, "lifted": {"_count": 1, "it": {"_count": 1}}, "lowered": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "panting": {"_count": 1}}, "sobbing": {"_count": 1, "and": {"_count": 1}}, "let": {"_count": 2, "out": {"_count": 2}}, "eyes": {"_count": 1, "sweeping": {"_count": 1}}, "here": {"_count": 2, "has": {"_count": 1}, "who": {"_count": 1}}, "please": {"_count": 1, "Master": {"_count": 1}}, "sob": {"_count": 1, "on": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "tells": {"_count": 1, "me": {"_count": 1}}, "stepped": {"_count": 1, "forward": {"_count": 1}}, "has": {"_count": 1, "a": {"_count": 1}}, "displaying": {"_count": 1, "a": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "approached": {"_count": 1, "Harry": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "walked": {"_count": 1, "out": {"_count": 1}}, "resumed": {"_count": 1, "his": {"_count": 1}}, "after": {"_count": 1, "you": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "neglected": {"_count": 1, "his": {"_count": 1}}, "slumped": {"_count": 1, "on": {"_count": 1}}, "piercing": {"_count": 1, "his": {"_count": 1}}, "will": {"_count": 2, "have": {"_count": 1}, "get": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "looked": {"_count": 1, "anxious": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "watched": {"_count": 1, "him": {"_count": 1}}, "gasped": {"_count": 1, "and": {"_count": 1}}, "wets": {"_count": 1, "himself": {"_count": 1}}, "turned": {"_count": 1, "slightly": {"_count": 1}}, "remained": {"_count": 1, "sitting": {"_count": 1}}, "sniggered": {"_count": 1, "shrilly": {"_count": 1}}, "included": {"_count": 1, "but": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "winced": {"_count": 1, "as": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "hesitated": {"_count": 1, "for": {"_count": 1}}, "scurrying": {"_count": 1, "back": {"_count": 1}}, "gazed": {"_count": 1, "into": {"_count": 1}}, "too": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "dead": {"_count": 1, "because": {"_count": 1}}}, "Padfoot": {"_count": 15, "and": {"_count": 6, "Prongs": {"_count": 6}}, "would": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 1}, "!": {"_count": 1}, "?": {"_count": 2}}, "old": {"_count": 1, "friend": {"_count": 1}}, "said": {"_count": 1, "James": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Thank": {"_count": 1, "you": {"_count": 1}}}, "Prongs": {"_count": 12, "Purveyors": {"_count": 1, "of": {"_count": 1}}, "sighed": {"_count": 1, "George": {"_count": 1}}, "Fred": {"_count": 1, "muttered": {"_count": 1}}, "agrees": {"_count": 1, "with": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "he": {"_count": 1, "whispered": {"_count": 1}}, "wouldve": {"_count": 1, "wanted": {"_count": 1}}, "rode": {"_count": 1, "again": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}}, "Purveyors": {"_count": 1, "of": {"_count": 1, "Aids": {"_count": 1}}}, "Aids": {"_count": 2, "to": {"_count": 1, "Magical": {"_count": 1}}, "for": {"_count": 1, "Magical": {"_count": 1}}}, "MischiefMakers": {"_count": 2, "are": {"_count": 1, "proud": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "detail": {"_count": 17, "of": {"_count": 6, "the": {"_count": 3}, "his": {"_count": 2}, "Snape": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "within": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "satisfyingly": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "its": {"_count": 1}}, "matters": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "whispered": {"_count": 1}}, "even": {"_count": 1, "through": {"_count": 1}}}, "dots": {"_count": 10, "moving": {"_count": 2, "around": {"_count": 2}}, "belonging": {"_count": 1, "to": {"_count": 1}}, "labeled": {"_count": 1, "with": {"_count": 1}}, "anxiously": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "signified": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "now": {"_count": 1, "making": {"_count": 1}}}, "Astounded": {"_count": 1, "Harry": {"_count": 1, "bent": {"_count": 1}}}, "dot": {"_count": 13, "in": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 2, "moving": {"_count": 1}, "flitting": {"_count": 1}}, "labeled": {"_count": 1, "Severus": {"_count": 1}}, "moving": {"_count": 1, "fast": {"_count": 1}}, "wasnt": {"_count": 1, "labeled": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "moved": {"_count": 1, "around": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "standing": {"_count": 1, "in": {"_count": 1}}, "would": {"_count": 1, "reappear": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "reappeared": {"_count": 1}}}, "pthe": {"_count": 1, "second": {"_count": 1, "floor": {"_count": 1}}}, "tracing": {"_count": 6, "one": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 2, "mouth": {"_count": 2}}, "the": {"_count": 1, "letters": {"_count": 1}}, "those": {"_count": 1, "few": {"_count": 1}}, "ink": {"_count": 1, "into": {"_count": 1}}}, "Willows": {"_count": 4, "planted": {"_count": 1, "right": {"_count": 1}}, "attacking": {"_count": 1, "branches": {"_count": 1}}, "swiping": {"_count": 1, "branches": {"_count": 1}}, "ominously": {"_count": 1, "swaying": {"_count": 1}}}, "cellar": {"_count": 31, "of": {"_count": 2, "Honeydukes": {"_count": 1}, "Malfoy": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "so": {"_count": 1, "unless": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "steps": {"_count": 2, "across": {"_count": 1}, "next": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 4}, ".": {"_count": 3}}, "after": {"_count": 1, "his": {"_count": 1}}, "while": {"_count": 1, "I": {"_count": 1}}, "Greyback": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 1, "had": {"_count": 1}}, "Unable": {"_count": 1, "to": {"_count": 1}}, "looking": {"_count": 1, "up": {"_count": 1}}, "floor": {"_count": 1, "looking": {"_count": 1}}, "is": {"_count": 1, "completely": {"_count": 1}}, "feeling": {"_count": 1, "the": {"_count": 1}}, "help": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 1, "where": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "ablaze": {"_count": 1, "with": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "for": {"_count": 1, "more": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}}, "crones": {"_count": 1, "hump": {"_count": 1, "": {"_count": 1}}}, "hump": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "opened": {"_count": 1, "wide": {"_count": 1}}, "heaved": {"_count": 1, "himself": {"_count": 1}}, "tapped": {"_count": 1, "it": {"_count": 1}}, "closed": {"_count": 1, "and": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "Noble": {"_count": 1, "men": {"_count": 1, "working": {"_count": 1}}}, "tirelessly": {"_count": 4, "to": {"_count": 1, "help": {"_count": 1}}, "against": {"_count": 1, "YouKnowWho": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "generation": {"_count": 3, "of": {"_count": 1, "lawbreakers": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "later": {"_count": 1, "to": {"_count": 1}}}, "lawbreakers": {"_count": 2, "said": {"_count": 1, "Fred": {"_count": 1}}, "still": {"_count": 1, "more": {"_count": 1}}}, "warningly": {"_count": 18, "": {"_count": 9, ".": {"_count": 9}}, "as": {"_count": 2, "Mr": {"_count": 1}, "the": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "and": {"_count": 1, "glanced": {"_count": 1}}, "unfolding": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "Parseltongue": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}}, "\u2018Mischief": {"_count": 1, "managed": {"_count": 1, "": {"_count": 1}}}, "uncanny": {"_count": 5, "impersonation": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "knack": {"_count": 1, "for": {"_count": 1}}, "ability": {"_count": 2, "to": {"_count": 2}}}, "impersonation": {"_count": 2, "of": {"_count": 1, "Percy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "miraculous": {"_count": 3, "map": {"_count": 1, "": {"_count": 1}}, "happened": {"_count": 1, "": {"_count": 1}}, "paper": {"_count": 1, "in": {"_count": 1}}}, "reasoned": {"_count": 5, "he": {"_count": 1, "only": {"_count": 1}}, "argument": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "discussion": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}}, "bubble": {"_count": 18, "had": {"_count": 1, "appeared": {"_count": 1}}, "bath": {"_count": 2, "mixed": {"_count": 1}, "as": {"_count": 1}}, "issued": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "emerging": {"_count": 1, "soundlessly": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "seemed": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "gurgle": {"_count": 1}, "distort": {"_count": 1}}, "of": {"_count": 1, "blood": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 2}}, "compressing": {"_count": 1, "his": {"_count": 1}}}, "Dissendium": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Dissendiurrd": {"_count": 1, "Harry": {"_count": 1, "whispered": {"_count": 1}}}, "fairly": {"_count": 24, "thin": {"_count": 1, "person": {"_count": 1}}, "hard": {"_count": 1, "good": {"_count": 1}}, "well": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "at": {"_count": 1}}, "quickly": {"_count": 3, "": {"_count": 1}, "however": {"_count": 1}, "to": {"_count": 1}}, "small": {"_count": 1, "classroom": {"_count": 1}}, "after": {"_count": 1, "hed": {"_count": 1}}, "large": {"_count": 1, "oversight": {"_count": 1}}, "maybe": {"_count": 1, "Dumbledore": {"_count": 1}}, "bad": {"_count": 1, "cartoon": {"_count": 1}}, "unenthusiastic": {"_count": 1, "applause": {"_count": 1}}, "advanced": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "straightforward": {"_count": 1, "Dumbledore": {"_count": 1}}, "unpleasant": {"_count": 1, "orange": {"_count": 1}}, "steady": {"_count": 1, "business": {"_count": 1}}, "cuddly": {"_count": 1, "yes": {"_count": 1}}, "sure": {"_count": 1, "what": {"_count": 1}}}, "earthy": {"_count": 8, "passageway": {"_count": 1, "": {"_count": 1}}, "slope": {"_count": 1, "to": {"_count": 1}}, "though": {"_count": 1, "as": {"_count": 1}}, "floor": {"_count": 2, "with": {"_count": 1}, "was": {"_count": 1}}, "forest": {"_count": 1, "floor": {"_count": 1}}, "passage": {"_count": 1, "hidden": {"_count": 1}}, "twig": {"_count": 1, "strewn": {"_count": 1}}}, "Mischief": {"_count": 2, "managed": {"_count": 2, "": {"_count": 1}, "though": {"_count": 1}}}, "burrow": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "sustain": {"_count": 4, "him": {"_count": 1, "": {"_count": 1}}, "those": {"_count": 1, "injuries": {"_count": 1}}, "such": {"_count": 1, "extensive": {"_count": 1}}, "heavy": {"_count": 1, "casualties": {"_count": 1}}}, "crates": {"_count": 9, "and": {"_count": 1, "boxes": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "tempt": {"_count": 1}}, "each": {"_count": 1, "containing": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "surely": {"_count": 1, "not": {"_count": 1}}, "over": {"_count": 1, "by": {"_count": 1}}, "chairs": {"_count": 1, "books": {"_count": 1}}}, "blended": {"_count": 3, "so": {"_count": 1, "perfectly": {"_count": 1}}, "perfectly": {"_count": 1, "against": {"_count": 1}}, "only": {"_count": 1, "too": {"_count": 1}}}, "Jelly": {"_count": 2, "Slugs": {"_count": 2, "dear": {"_count": 1}, "": {"_count": 1}}}, "Slugs": {"_count": 2, "dear": {"_count": 1, "theyve": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "womans": {"_count": 20, "voice": {"_count": 6, "": {"_count": 4}, "said": {"_count": 1}, "dismissively": {"_count": 1}}, "got": {"_count": 1, "it": {"_count": 1}}, "article": {"_count": 1, "last": {"_count": 1}}, "touch": {"_count": 1, "unicorns": {"_count": 1}}, "foolish": {"_count": 1, "sacrifice": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "face": {"_count": 1, "blanched": {"_count": 1}}, "screeches": {"_count": 1, "died": {"_count": 1}}, "staying": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "better": {"_count": 1}}, "foul": {"_count": 1, "she": {"_count": 1}}, "liberty": {"_count": 1, "possibly": {"_count": 1}}, "cold": {"_count": 1, "voice": {"_count": 1}}, "fast": {"_count": 1, "breathing": {"_count": 1}}}, "backside": {"_count": 11, "and": {"_count": 2, "shiny": {"_count": 1}, "walking": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "but": {"_count": 1, "Im": {"_count": 1}}, "here": {"_count": 1, "having": {"_count": 1}}, "off": {"_count": 1, "every": {"_count": 1}}, "to": {"_count": 1, "ensure": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "succulentlooking": {"_count": 1, "sweets": {"_count": 1, "imaginable": {"_count": 1}}}, "imaginable": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "nestled": {"_count": 1}}}, "Creamy": {"_count": 1, "chunks": {"_count": 1, "of": {"_count": 1}}}, "nougat": {"_count": 1, "shimmering": {"_count": 1, "pink": {"_count": 1}}}, "honeycolored": {"_count": 2, "toffees": {"_count": 1, "hundreds": {"_count": 1}}, "liquid": {"_count": 1, "into": {"_count": 1}}}, "Fizzing": {"_count": 7, "Whizbees": {"_count": 4, "the": {"_count": 1}, "Harry": {"_count": 1}, "": {"_count": 2}}, "Whizbee": {"_count": 3, "": {"_count": 1}, "said": {"_count": 1}, "sang": {"_count": 1}}}, "Whizbees": {"_count": 4, "the": {"_count": 1, "levitating": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "levitating": {"_count": 5, "sherbert": {"_count": 1, "balls": {"_count": 1}}, "people": {"_count": 1, "": {"_count": 1}}, "Muggles": {"_count": 1, "": {"_count": 1}}, "fell": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}}, "sherbert": {"_count": 1, "balls": {"_count": 1, "that": {"_count": 1}}}, "Effects": {"_count": 1, "sweets": {"_count": 1, "Droobles": {"_count": 1}}}, "bluebellcolored": {"_count": 1, "bubbles": {"_count": 1, "that": {"_count": 1}}}, "splintery": {"_count": 1, "Toothflossing": {"_count": 1, "Stringmints": {"_count": 1}}}, "Mice": {"_count": 1, "hear": {"_count": 1, "your": {"_count": 1}}}, "realistically": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "fragile": {"_count": 9, "sugarspun": {"_count": 1, "quills": {"_count": 1}}, "silver": {"_count": 1, "instruments": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "pages": {"_count": 1, "as": {"_count": 1}}, "golden": {"_count": 1, "chairs": {"_count": 1}}, "strand": {"_count": 1, "of": {"_count": 1}}, "tower": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 2, "wounded": {"_count": 1}, "unstable": {"_count": 1}}}, "sugarspun": {"_count": 1, "quills": {"_count": 1, "and": {"_count": 1}}}, "bonbons": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "UNUSUAL": {"_count": 1, "TASTES": {"_count": 1, "": {"_count": 1}}}, "TASTES": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bloodflavored": {"_count": 1, "lollipops": {"_count": 1, "": {"_count": 1}}}, "lollipops": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ugh": {"_count": 1, "no": {"_count": 1, "Harry": {"_count": 1}}}, "Cockroach": {"_count": 5, "Clusters": {"_count": 2, "under": {"_count": 1}, "": {"_count": 1}}, "Cluster": {"_count": 3, "if": {"_count": 1}, "": {"_count": 2}}}, "Clusters": {"_count": 2, "under": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Marauders": {"_count": 47, "Map": {"_count": 45, "": {"_count": 8}, "into": {"_count": 2}, "out": {"_count": 3}, "blank": {"_count": 1}, "but": {"_count": 3}, "and": {"_count": 9}, "too": {"_count": 1}, "which": {"_count": 2}, "to": {"_count": 2}, "fluttered": {"_count": 1}, "still": {"_count": 1}, "again": {"_count": 2}, "on": {"_count": 1}, "from": {"_count": 1}, "appeared": {"_count": 1}, "whenever": {"_count": 2}, "as": {"_count": 1}, "the": {"_count": 1}, "married": {"_count": 1}, "so": {"_count": 1}, "is": {"_count": 1}}, "map": {"_count": 1, "never": {"_count": 1}}, "never": {"_count": 1, "knew": {"_count": 1}}}, "Map": {"_count": 47, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "Hermiones": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}, "blank": {"_count": 1, "again": {"_count": 1}}, "but": {"_count": 3, "Fred": {"_count": 1}, "he": {"_count": 1}, "before": {"_count": 1}}, "and": {"_count": 9, "sign": {"_count": 1}, "the": {"_count": 2}, "find": {"_count": 1}, "his": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}, "we": {"_count": 1}, "examining": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 2, "next": {"_count": 1}, "he": {"_count": 1}}, "to": {"_count": 2, "check": {"_count": 1}, "wipe": {"_count": 1}}, "fluttered": {"_count": 1, "out": {"_count": 1}}, "still": {"_count": 1, "lying": {"_count": 1}}, "of": {"_count": 1, "Hogwarts": {"_count": 1}}, "again": {"_count": 2, "and": {"_count": 2}}, "on": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "appeared": {"_count": 1, "on": {"_count": 1}}, "whenever": {"_count": 2, "he": {"_count": 1}, "light": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "shard": {"_count": 1}}, "married": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}}, "nicked": {"_count": 9, "it": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 1, "food": {"_count": 1}}, "and": {"_count": 1, "see": {"_count": 1}}, "all": {"_count": 1, "mine": {"_count": 1}}, "em": {"_count": 1, "orf": {"_count": 1}}, "Siriuss": {"_count": 1, "stuff": {"_count": 1}}, "some": {"_count": 1, "any": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "broom": {"_count": 1}}}, "pasted": {"_count": 4, "on": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "picture": {"_count": 1}}, "letters": {"_count": 1, "that": {"_count": 1}}, "over": {"_count": 1, "them": {"_count": 1}}}, "BY": {"_count": 7, "ORDER": {"_count": 5, "OF": {"_count": 5}}, "A": {"_count": 1, "QUALIFIED": {"_count": 1}}, "THE": {"_count": 1, "HOGWARTS": {"_count": 1}}}, "Customers": {"_count": 1, "are": {"_count": 1, "reminded": {"_count": 1}}}, "sundown": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "Careful": {"_count": 1, "not": {"_count": 1}}, "Filch": {"_count": 1, "had": {"_count": 1}}}, "residents": {"_count": 3, "and": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "Hogsmeade": {"_count": 1}}}, "advisable": {"_count": 5, "that": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 2, "teach": {"_count": 1}, "take": {"_count": 1}}, "and": {"_count": 1, "its": {"_count": 1}}, "whispered": {"_count": 1, "Xenophilius": {"_count": 1}}}, "Hermoine": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "Acid": {"_count": 5, "Pops": {"_count": 4, "": {"_count": 3}, "said": {"_count": 1}}, "Pop": {"_count": 1, "box": {"_count": 1}}}, "Pops": {"_count": 4, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "walloping": {"_count": 1, "him": {"_count": 1, "with": {"_count": 1}}}, "broodingly": {"_count": 2, "into": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "makes": {"_count": 1}}}, "Pop": {"_count": 1, "box": {"_count": 1, "": {"_count": 1}}}, "Fredd": {"_count": 1, "take": {"_count": 1, "a": {"_count": 1}}}, "Cluster": {"_count": 3, "if": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}}, "thatched": {"_count": 3, "cottages": {"_count": 1, "and": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "though": {"_count": 1, "there": {"_count": 1}}}, "cottages": {"_count": 6, "and": {"_count": 1, "shops": {"_count": 1}}, "were": {"_count": 1, "fewer": {"_count": 1}}, "Any": {"_count": 1, "one": {"_count": 1}}, "ended": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "three": {"_count": 1, "bedrooms": {"_count": 1}}}, "wreaths": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "Shack": {"_count": 14, "Tell": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "most": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 2}, "?": {"_count": 3}}, "was": {"_count": 1, "never": {"_count": 1}}, "and": {"_count": 2, "roaming": {"_count": 1}, "that": {"_count": 1}}, "nor": {"_count": 1, "did": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}}, "curvy": {"_count": 2, "sort": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "attractive": {"_count": 1}}}, "serving": {"_count": 7, "a": {"_count": 1, "bunch": {"_count": 1}}, "themselves": {"_count": 2, "": {"_count": 1}, "roast": {"_count": 1}}, "him": {"_count": 1, "how": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "sentences": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}}, "rowdy": {"_count": 3, "warlocks": {"_count": 1, "up": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "boys": {"_count": 1, "were": {"_count": 1}}}, "Rosmerta": {"_count": 44, "said": {"_count": 5, "Ron": {"_count": 1}, "Hagrid": {"_count": 1}, "Fudge": {"_count": 2}, "with": {"_count": 1}}, "mdear": {"_count": 2, "said": {"_count": 1}, "I": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 11}, "?": {"_count": 2}}, "a": {"_count": 1, "slight": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}, "murmured": {"_count": 1, "Professor": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "breathless": {"_count": 1, "with": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 1, "pretty": {"_count": 1}}, "and": {"_count": 2, "thought": {"_count": 1}, "though": {"_count": 1}}, "was": {"_count": 4, "staring": {"_count": 1}, "already": {"_count": 1}, "forced": {"_count": 1}, "able": {"_count": 1}}, "for": {"_count": 1, "whom": {"_count": 1}}, "didnt": {"_count": 1, "laugh": {"_count": 1}}, "my": {"_count": 1, "custom": {"_count": 1}}, "forcibly": {"_count": 1, "ejecting": {"_count": 1}}, "good": {"_count": 1, "evening": {"_count": 1}}, "scurrying": {"_count": 1, "down": {"_count": 1}}, "can": {"_count": 1, "he": {"_count": 1}}, "whats": {"_count": 1, "wrong": {"_count": 1}}, "please": {"_count": 1, "send": {"_count": 1}}, "saw": {"_count": 1, "me": {"_count": 1}}}, "tankards": {"_count": 1, "of": {"_count": 1, "hot": {"_count": 1}}}, "heat": {"_count": 29, "every": {"_count": 1, "bit": {"_count": 1}}, "was": {"_count": 3, "overpowering": {"_count": 1}, "rising": {"_count": 1}, "solid": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 4, "the": {"_count": 2}, "it": {"_count": 1}, "firewhisky": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "dust": {"_count": 1}}, "rise": {"_count": 1, "in": {"_count": 1}}, "haze": {"_count": 2, "which": {"_count": 1}, "upon": {"_count": 1}}, "coming": {"_count": 1, "from": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "to": {"_count": 1, "put": {"_count": 1}}, "creeping": {"_count": 1, "up": {"_count": 1}}, "rushing": {"_count": 1, "up": {"_count": 1}}, "from": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "were": {"_count": 1, "becoming": {"_count": 1}}}, "snowflakes": {"_count": 1, "shortly": {"_count": 1, "followed": {"_count": 1}}}, "Dripping": {"_count": 1, "with": {"_count": 1, "butterbeer": {"_count": 1}}}, "Mobiliarbus": {"_count": 1, "The": {"_count": 1, "Christmas": {"_count": 1}}}, "Staring": {"_count": 4, "through": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "nastily": {"_count": 1, "around": {"_count": 1}}, "Harry": {"_count": 1, "put": {"_count": 1}}}, "grunts": {"_count": 4, "and": {"_count": 3, "sighs": {"_count": 1}, "comparing": {"_count": 1}, "cries": {"_count": 1}}, "of": {"_count": 1, "laughter": {"_count": 1}}}, "sighs": {"_count": 2, "of": {"_count": 2, "the": {"_count": 1}, "relief": {"_count": 1}}}, "minister": {"_count": 5, "as": {"_count": 1, "they": {"_count": 1}}, "loudly": {"_count": 1, "who": {"_count": 1}}, "shrugging": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "is": {"_count": 1, "very": {"_count": 1}}}, "sparkly": {"_count": 2, "turquoise": {"_count": 1, "high": {"_count": 1}}, "stuff": {"_count": 1, "": {"_count": 1}}}, "gillywater": {"_count": 3, "Mine": {"_count": 1, "said": {"_count": 1}}, "hes": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Mine": {"_count": 9, "said": {"_count": 2, "Professor": {"_count": 1}, "Dumbledore": {"_count": 1}}, "still": {"_count": 2, "had": {"_count": 1}, "beat": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "havent": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "pretty": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}}, "pints": {"_count": 4, "of": {"_count": 3, "mulled": {"_count": 1}, "iced": {"_count": 1}, "water": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "mulled": {"_count": 4, "mead": {"_count": 3, "Ta": {"_count": 1}, "but": {"_count": 1}, "from": {"_count": 1}}, "wine": {"_count": 1, "from": {"_count": 1}}}, "mead": {"_count": 23, "Ta": {"_count": 1, "Rosmerta": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "from": {"_count": 2, "Madam": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 2, "overflowing": {"_count": 1}, "now": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Black": {"_count": 1, "family": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "one": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "each": {"_count": 1, "before": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "crystalized": {"_count": 1, "pineapple": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "Rosmerta": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "he": {"_count": 1}}}, "Ta": {"_count": 1, "Rosmerta": {"_count": 1, "said": {"_count": 1}}}, "cherry": {"_count": 3, "syrup": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "unicornhair": {"_count": 1, "core": {"_count": 1}}}, "syrup": {"_count": 3, "and": {"_count": 1, "soda": {"_count": 1}}, "of": {"_count": 2, "hellebore": {"_count": 2}}}, "soda": {"_count": 1, "with": {"_count": 1, "ice": {"_count": 1}}}, "currant": {"_count": 2, "rum": {"_count": 1, "Minister": {"_count": 1}}, "ice": {"_count": 1, "cream": {"_count": 1}}}, "rum": {"_count": 1, "Minister": {"_count": 1, "": {"_count": 1}}}, "mdear": {"_count": 4, "said": {"_count": 1, "Fudges": {"_count": 1}}, "but": {"_count": 1, "Sirius": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "brings": {"_count": 8, "you": {"_count": 4, "to": {"_count": 1}, "here": {"_count": 1}, "up": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 1, "rat": {"_count": 1}}, "her": {"_count": 1, "total": {"_count": 1}}, "us": {"_count": 2, "back": {"_count": 1}, "to": {"_count": 1}}}, "Rosmertas": {"_count": 5, "voice": {"_count": 1, "": {"_count": 1}}, "finest": {"_count": 1, "oakmatured": {"_count": 1}}, "Broomsl": {"_count": 1, "A": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}}, "eavesdroppers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "customers": {"_count": 7, "away": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "and": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "orders": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "Necessary": {"_count": 2, "precaution": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "demurred": {"_count": 1, "Fudge": {"_count": 1, "they": {"_count": 1}}}, "curiosity": {"_count": 26, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 6, "ill": {"_count": 1}, "interest": {"_count": 1}, "hilarity": {"_count": 1}, "even": {"_count": 1}, "disapproval": {"_count": 1}, "so": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}, "held": {"_count": 1, "him": {"_count": 1}}, "about": {"_count": 3, "what": {"_count": 1}, "these": {"_count": 1}, "her": {"_count": 1}}, "welling": {"_count": 1, "inside": {"_count": 1}}, "would": {"_count": 1, "make": {"_count": 1}}, "to": {"_count": 1, "mar": {"_count": 1}}, "was": {"_count": 1, "evidently": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "even": {"_count": 1, "drove": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "ooh": {"_count": 2, "they": {"_count": 1, "used": {"_count": 1}}, "if": {"_count": 1, "its": {"_count": 1}}}, "Ringleaders": {"_count": 1, "of": {"_count": 1, "their": {"_count": 1}}}, "exceptionally": {"_count": 19, "bright": {"_count": 1, "in": {"_count": 1}}, "embarrassed": {"_count": 1, "and": {"_count": 1}}, "glad": {"_count": 1, "that": {"_count": 1}}, "strong": {"_count": 1, "Confundus": {"_count": 1}}, "odd": {"_count": 1, "objects": {"_count": 1}}, "full": {"_count": 1, "bladder": {"_count": 1}}, "angry": {"_count": 1, "Snape": {"_count": 1}}, "fast": {"_count": 1, "even": {"_count": 1}}, "well": {"_count": 1, "but": {"_count": 1}}, "dry": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 1, "to": {"_count": 1}}, "pale": {"_count": 1, "Ron": {"_count": 1}}, "hot": {"_count": 1, "muffler": {"_count": 1}}, "pleased": {"_count": 1, "with": {"_count": 1}}, "quiet": {"_count": 1, "all": {"_count": 1}}, "few": {"_count": 1, "personal": {"_count": 1}}, "foolish": {"_count": 1, "Harry": {"_count": 1}}, "frail": {"_count": 1, "and": {"_count": 1}}, "careful": {"_count": 1, "": {"_count": 1}}}, "troublemakers": {"_count": 2, "I": {"_count": 1, "dunno": {"_count": 1}}, "at": {"_count": 1, "school": {"_count": 1}}}, "Inseparable": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "godfather": {"_count": 40, "to": {"_count": 3, "Harry": {"_count": 1}, "the": {"_count": 1}, "Teddy": {"_count": 1}}, "Ill": {"_count": 1, "look": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 12}, "!": {"_count": 1}, "?": {"_count": 3}}, "hereby": {"_count": 1, "give": {"_count": 1}}, "two": {"_count": 1, "months": {"_count": 1}}, "for": {"_count": 2, "Harry": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 2, "Sirius": {"_count": 2}}, "Sirius": {"_count": 2, "turned": {"_count": 1}, "had": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "every": {"_count": 1, "detail": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}, "yet": {"_count": 1, "his": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "and": {"_count": 1, "finally": {"_count": 1}}, "left": {"_count": 1, "me": {"_count": 1}}}, "torment": {"_count": 2, "him": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "without": {"_count": 1}}}, "spies": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "criminals": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}}, "alerted": {"_count": 5, "James": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "Pettigrew": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "certain": {"_count": 1, "Order": {"_count": 1}}, "Snape": {"_count": 1, "to": {"_count": 1}}}, "Fidelius": {"_count": 9, "Charm": {"_count": 8, "": {"_count": 3}, "had": {"_count": 1}, "died": {"_count": 1}, "must": {"_count": 1}, "broken": {"_count": 1}, "stopped": {"_count": 1}}, "Charms": {"_count": 1, "protection": {"_count": 1}}}, "squeakily": {"_count": 6, "involving": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "perched": {"_count": 1, "as": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "involving": {"_count": 9, "the": {"_count": 2, "magical": {"_count": 1}, "two": {"_count": 1}}, "a": {"_count": 5, "couple": {"_count": 2}, "pair": {"_count": 1}, "reversal": {"_count": 1}, "crashed": {"_count": 1}}, "travel": {"_count": 1, "adventure": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}}, "concealment": {"_count": 9, "of": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "lies": {"_count": 1}, "hidden": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "charms": {"_count": 1, "dont": {"_count": 1}}, "no": {"_count": 2, "matter": {"_count": 2}}}, "SecretKeeper": {"_count": 16, "and": {"_count": 1, "is": {"_count": 1}}, "chooses": {"_count": 1, "to": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "himself": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "I": {"_count": 1, "cannot": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "Shell": {"_count": 1}}}, "henceforth": {"_count": 4, "impossible": {"_count": 1, "to": {"_count": 1}}, "disbanded": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "supreme": {"_count": 1}}, "knew": {"_count": 1, "of": {"_count": 1}}}, "divulge": {"_count": 3, "it": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "real": {"_count": 1}}}, "traitor": {"_count": 13, "and": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "abomination": {"_count": 1, "shame": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "brats": {"_count": 1, "is": {"_count": 1}}, "F": {"_count": 1, "irenze": {"_count": 1}}, "Firenze": {"_count": 2, "escape": {"_count": 1}, "human": {"_count": 1}}, "like": {"_count": 1, "her": {"_count": 1}}, "had": {"_count": 1, "seemed": {"_count": 1}}, "or": {"_count": 1, "\u2018Mudblood": {"_count": 1}}, "is": {"_count": 1, "next": {"_count": 1}}}, "betrayed": {"_count": 25, "them": {"_count": 4, "": {"_count": 4}}, "her": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 2, "trust": {"_count": 1}, "parents": {"_count": 1}}, "Lily": {"_count": 1, "and": {"_count": 1}}, "your": {"_count": 2, "parents": {"_count": 1}, "mother": {"_count": 1}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "James": {"_count": 1, "and": {"_count": 1}}, "my": {"_count": 1, "parents": {"_count": 1}}, "too": {"_count": 2, "many": {"_count": 2}}, "their": {"_count": 1, "whereabouts": {"_count": 1}}, "and": {"_count": 2, "dishonored": {"_count": 1}, "he": {"_count": 1}}, "Sirius": {"_count": 2, "was": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "us": {"_count": 2, "": {"_count": 2}}, "by": {"_count": 1, "his": {"_count": 1}}, "fear": {"_count": 1, "He": {"_count": 1}}}, "doubleagent": {"_count": 1, "role": {"_count": 1, "he": {"_count": 1}}}, "role": {"_count": 6, "he": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 2, "campaigning": {"_count": 1}, "sorting": {"_count": 1}}, "as": {"_count": 1, "spy": {"_count": 1}}, "a": {"_count": 1, "teacher": {"_count": 1}}, "of": {"_count": 1, "lookout": {"_count": 1}}}, "declare": {"_count": 4, "his": {"_count": 1, "support": {"_count": 1}}, "undying": {"_count": 1, "love": {"_count": 1}}, "you": {"_count": 1, "bonded": {"_count": 1}}, "himself": {"_count": 1, "Minister": {"_count": 1}}}, "Powers": {"_count": 2, "gone": {"_count": 1, "horribly": {"_count": 1}}, "You": {"_count": 1, "Never": {"_count": 1}}}, "weakened": {"_count": 8, "he": {"_count": 1, "fled": {"_count": 1}}, "his": {"_count": 1, "minds": {"_count": 1}}, "Marvolo": {"_count": 1, "and": {"_count": 1}}, "by": {"_count": 1, "long": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "by": {"_count": 1}}, "condition": {"_count": 1, "": {"_count": 1}}, "vulnerable": {"_count": 1, "and": {"_count": 1}}}, "stinkin": {"_count": 1, "turncoat": {"_count": 1, "": {"_count": 1}}}, "turncoat": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "musta": {"_count": 4, "bin": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "happened": {"_count": 1, "was": {"_count": 1}}, "told": {"_count": 1, "Snape": {"_count": 1}}}, "Jamess": {"_count": 13, "house": {"_count": 1, "after": {"_count": 1}}, "SecretKeeper": {"_count": 1, "": {"_count": 1}}, "Invisibility": {"_count": 2, "Cloak": {"_count": 2}}, "talent": {"_count": 1, "on": {"_count": 1}}, "eyes": {"_count": 1, "were": {"_count": 1}}, "hair": {"_count": 1, "stuck": {"_count": 1}}, "nor": {"_count": 1, "Harrys": {"_count": 1}}, "free": {"_count": 1, "hand": {"_count": 1}}, "face": {"_count": 1, "spattering": {"_count": 1}}, "hands": {"_count": 1, "but": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "left": {"_count": 1, "was": {"_count": 1}}}, "slash": {"_count": 3, "across": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "motorbike": {"_count": 18, "he": {"_count": 1, "used": {"_count": 1}}, "ter": {"_count": 1, "get": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "a": {"_count": 1}}, "goggles": {"_count": 1, "on": {"_count": 1}}, "into": {"_count": 2, "life": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "rolled": {"_count": 1, "over": {"_count": 1}}, "swung": {"_count": 1, "the": {"_count": 1}}, "zoomed": {"_count": 1, "forward": {"_count": 1}}, "all": {"_count": 1, "shooting": {"_count": 1}}, "shot": {"_count": 1, "forward": {"_count": 1}}, "spiraled": {"_count": 1, "through": {"_count": 1}}, "sped": {"_count": 1, "up": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}}, "shakin": {"_count": 1, "he": {"_count": 1, "was": {"_count": 1}}}, "COMFORTED": {"_count": 1, "THE": {"_count": 1, "MURDERIN": {"_count": 1}}}, "MURDERIN": {"_count": 1, "TRAITOR": {"_count": 1, "": {"_count": 1}}}, "TRAITOR": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "\u2018Give": {"_count": 2, "Harry": {"_count": 1, "ter": {"_count": 1}}, "five": {"_count": 1, "signs": {"_count": 1}}}, "Fact": {"_count": 1, "was": {"_count": 1, "it": {"_count": 1}}}, "bes": {"_count": 3, "friends": {"_count": 1, "son": {"_count": 1}}, "feelin": {"_count": 1, "in": {"_count": 1}}, "jus": {"_count": 1, "stop": {"_count": 1}}}, "Pettigrew": {"_count": 100, "another": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 14}, "!": {"_count": 3}, "?": {"_count": 1}}, "died": {"_count": 1, "a": {"_count": 1}}, "cornered": {"_count": 1, "Black": {"_count": 1}}, "to": {"_count": 1, "smithereens": {"_count": 1}}, "did": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 1}, "": {"_count": 1}}, "received": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 11, "all": {"_count": 1}, "Harry": {"_count": 1}, "he": {"_count": 1}, "Ron": {"_count": 5}, "Lupin": {"_count": 1}, "muttered": {"_count": 1}, "his": {"_count": 1}}, "who": {"_count": 1, "resembled": {"_count": 1}}, "die": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 5, "been": {"_count": 1}, "fallen": {"_count": 1}, "dived": {"_count": 1}, "transformed": {"_count": 1}, "vanished": {"_count": 1}}, "could": {"_count": 2, "turn": {"_count": 1}, "see": {"_count": 1}}, "his": {"_count": 2, "voice": {"_count": 1}, "breathing": {"_count": 1}}, "squeaked": {"_count": 2, "suddenly": {"_count": 1}, "turning": {"_count": 1}}, "with": {"_count": 3, "his": {"_count": 2}, "the": {"_count": 1}}, "looking": {"_count": 1, "wildly": {"_count": 1}}, "shouted": {"_count": 1, "shrilly": {"_count": 1}}, "flinched": {"_count": 1, "as": {"_count": 1}}, "again": {"_count": 1, "more": {"_count": 1}}, "wiped": {"_count": 1, "his": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 10, "muttering": {"_count": 1}, "shaking": {"_count": 1}, "still": {"_count": 2}, "wriggling": {"_count": 1}, "upright": {"_count": 1}, "not": {"_count": 1}, "now": {"_count": 1}, "reaping": {"_count": 1}, "turning": {"_count": 1}}, "shrilly": {"_count": 1, "pointing": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "nodding": {"_count": 1, "frantically": {"_count": 1}}, "recoiled": {"_count": 1, "": {"_count": 1}}, "crawled": {"_count": 1, "toward": {"_count": 1}}, "turned": {"_count": 1, "on": {"_count": 1}}, "knelt": {"_count": 1, "trembling": {"_count": 1}}, "shuffling": {"_count": 1, "toward": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "facing": {"_count": 1, "the": {"_count": 1}}, "whose": {"_count": 1, "breath": {"_count": 1}}, "too": {"_count": 2, "we": {"_count": 1}, "I": {"_count": 1}}, "covered": {"_count": 1, "with": {"_count": 1}}, "Lupins": {"_count": 1, "wand": {"_count": 1}}, "transformed": {"_count": 1, "": {"_count": 1}}, "faked": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "being": {"_count": 1, "alive": {"_count": 1}}, "he": {"_count": 1, "escaped": {"_count": 1}}, "attacked": {"_count": 1, "Ron": {"_count": 1}}, "alive": {"_count": 1, "or": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "escape": {"_count": 1, "all": {"_count": 1}}, "got": {"_count": 1, "away": {"_count": 1}}, "owes": {"_count": 1, "his": {"_count": 1}}, "together": {"_count": 1, "had": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "the": {"_count": 1, "traitor": {"_count": 1}}, "dropped": {"_count": 1, "to": {"_count": 1}}, "sat": {"_count": 1, "together": {"_count": 1}}}, "Maddened": {"_count": 1, "by": {"_count": 1, "grief": {"_count": 1}}}, "tagging": {"_count": 1, "around": {"_count": 1, "after": {"_count": 1}}}, "Heroworshipped": {"_count": 1, "Black": {"_count": 1, "and": {"_count": 1}}}, "talentwise": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "heros": {"_count": 2, "death": {"_count": 2, "": {"_count": 1}, "Voldemort": {"_count": 1}}}, "Eyewitnesses": {"_count": 1, "Muggles": {"_count": 1, "of": {"_count": 1}}}, "wouldntve": {"_count": 3, "messed": {"_count": 1, "around": {"_count": 1}}, "she": {"_count": 1, "just": {"_count": 1}}, "used": {"_count": 1, "a": {"_count": 1}}}, "Law": {"_count": 28, "Enforcement": {"_count": 17, "Squad": {"_count": 4}, "": {"_count": 2}, "didnt": {"_count": 1}, "and": {"_count": 1}, "including": {"_count": 2}, "Patrol": {"_count": 1}, "Dolores": {"_count": 1}, "Madam": {"_count": 1}, "has": {"_count": 1}, "said": {"_count": 1}, "Thicknesse": {"_count": 1}, "needed": {"_count": 1}}, "to": {"_count": 1, "answer": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "Fifteen": {"_count": 1, "B": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "true": {"_count": 1}}, "was": {"_count": 1, "true": {"_count": 1}}, "stated": {"_count": 1, "word": {"_count": 1}}, "Miss": {"_count": 1, "Granger": {"_count": 1}}, "of": {"_count": 2, "Elemental": {"_count": 2}}}, "Enforcement": {"_count": 17, "Squad": {"_count": 4, "would": {"_count": 1}, "and": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "shes": {"_count": 1}}, "including": {"_count": 2, "the": {"_count": 2}}, "Patrol": {"_count": 1, "ah": {"_count": 1}}, "Dolores": {"_count": 1, "Jane": {"_count": 1}}, "Madam": {"_count": 1, "Bones": {"_count": 1}}, "has": {"_count": 1, "succeeded": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Thicknesse": {"_count": 1, "has": {"_count": 1}}, "needed": {"_count": 1, "a": {"_count": 1}}}, "Junior": {"_count": 8, "Minister": {"_count": 2, "in": {"_count": 1}, "he": {"_count": 1}}, "Heavyweight": {"_count": 1, "InterSchool": {"_count": 1}}, "Assistant": {"_count": 3, "to": {"_count": 3}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "Ministers": {"_count": 1, "Herbert": {"_count": 1}}}, "Department": {"_count": 97, "of": {"_count": 80, "Magical": {"_count": 23}, "International": {"_count": 8}, "Mysteries": {"_count": 48}, "Myst": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "for": {"_count": 12, "the": {"_count": 12}}, "first": {"_count": 1, "Dont": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "at": {"_count": 1, "St": {"_count": 1}}}, "Catastrophes": {"_count": 3, "at": {"_count": 1, "the": {"_count": 1}}, "including": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "crater": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 1, "where": {"_count": 1}}}, "sewer": {"_count": 2, "below": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "Bodies": {"_count": 1, "everywhere": {"_count": 1, "": {"_count": 1}}}, "fragments": {"_count": 14, "Fudges": {"_count": 1, "voice": {"_count": 1}}, "of": {"_count": 12, "gold": {"_count": 1}, "rat": {"_count": 1}, "broken": {"_count": 1}, "what": {"_count": 1}, "glass": {"_count": 2}, "the": {"_count": 2}, "his": {"_count": 1}, "wood": {"_count": 1}, "cup": {"_count": 1}, "torn": {"_count": 1}}, "had": {"_count": 1, "even": {"_count": 1}}}, "unhinged": {"_count": 3, "him": {"_count": 1, "for": {"_count": 1}}, "Black": {"_count": 1, "after": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "pointless": {"_count": 20, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 3, "polish": {"_count": 1}, "pretend": {"_count": 1}, "keep": {"_count": 1}}, "because": {"_count": 1, "the": {"_count": 1}}, "interruptions": {"_count": 1, "said": {"_count": 1}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "bustling": {"_count": 1, "the": {"_count": 1}}, "lump": {"_count": 1, "mend": {"_count": 1}}, "warning": {"_count": 1, "He": {"_count": 1}}, "thing": {"_count": 1, "to": {"_count": 1}}, "work": {"_count": 1, "about": {"_count": 1}}, "adventure": {"_count": 1, "the": {"_count": 1}}, "irritating": {"_count": 1, "beyond": {"_count": 1}}, "seeing": {"_count": 1, "as": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "rambling": {"_count": 1}}, "journey": {"_count": 1, "": {"_count": 1}}}, "rationally": {"_count": 1, "to": {"_count": 1, "me": {"_count": 1}}}, "unnerving": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "him": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "when": {"_count": 1}}, "to": {"_count": 1, "think": {"_count": 1}}, "return": {"_count": 1, "to": {"_count": 1}}}, "crossword": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rejoin": {"_count": 11, "YouKnowWho": {"_count": 2, "is": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 3, "rest": {"_count": 1}, "Hufflepuff": {"_count": 1}, "fight": {"_count": 1}}, "his": {"_count": 1, "master": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "their": {"_count": 2, "masters": {"_count": 1}, "sources": {"_count": 1}}}, "eventual": {"_count": 1, "plan": {"_count": 1, "said": {"_count": 1}}}, "evasively": {"_count": 5, "": {"_count": 5, ".": {"_count": 5}}}, "friendless": {"_count": 4, "is": {"_count": 1, "one": {"_count": 1}}, "abandoned": {"_count": 1, "by": {"_count": 1}}, "but": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "hems": {"_count": 3, "of": {"_count": 3, "cloaks": {"_count": 1}, "their": {"_count": 1}, "robes": {"_count": 1}}}, "Rosemertas": {"_count": 1, "glittering": {"_count": 1, "heels": {"_count": 1}}}, "Dungbombs": {"_count": 15, "in": {"_count": 1, "a": {"_count": 1}}, "Hiccup": {"_count": 1, "Sweets": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 1, "ensure": {"_count": 1}}, "Sirius": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "it": {"_count": 1}}, "outside": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, "?": {"_count": 2}}, "were": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "before": {"_count": 1, "zooming": {"_count": 1}}, "and": {"_count": 1, "Stinkpellets": {"_count": 1}}}, "endofterm": {"_count": 4, "high": {"_count": 1, "spirits": {"_count": 1}}, "tests": {"_count": 1, "as": {"_count": 1}}, "feast": {"_count": 2, "last": {"_count": 1}, "but": {"_count": 1}}}, "album": {"_count": 5, "Hagrid": {"_count": 3, "had": {"_count": 3}}, "shut": {"_count": 1, "reached": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}}, "wedding": {"_count": 46, "day": {"_count": 1, "": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 15}, "?": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}, "papered": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Bill": {"_count": 1}}, "remember": {"_count": 2, "": {"_count": 2}}, "could": {"_count": 1, "still": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "she": {"_count": 2, "added": {"_count": 1}, "explained": {"_count": 1}}, "here": {"_count": 1, "in": {"_count": 1}}, "presents": {"_count": 2, "stacked": {"_count": 1}, "waiting": {"_count": 1}}, "having": {"_count": 1, "all": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}, "guests": {"_count": 3, "": {"_count": 2}, "were": {"_count": 1}}, "for": {"_count": 1, "luck": {"_count": 1}}, "before": {"_count": 1, "so": {"_count": 1}}, "cake": {"_count": 1, "topped": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "We": {"_count": 1, "cant": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "more": {"_count": 1, "Death": {"_count": 1}}, "by": {"_count": 1, "comparison": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "Mr": {"_count": 1, "Lovegood": {"_count": 1}}, "he": {"_count": 1, "nodded": {"_count": 1}}}, "alight": {"_count": 10, "with": {"_count": 6, "happiness": {"_count": 1}, "malice": {"_count": 2}, "interest": {"_count": 1}, "sparks": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "crept": {"_count": 1}}}, "unrecognizable": {"_count": 6, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "face": {"_count": 1, "lying": {"_count": 1}}, "beneath": {"_count": 1, "his": {"_count": 1}}}, "blasting": {"_count": 8, "Peter": {"_count": 1, "Pettigrew": {"_count": 1}}, "a": {"_count": 1, "third": {"_count": 1}}, "end": {"_count": 1, "or": {"_count": 1}}, "rosebushes": {"_count": 1, "apart": {"_count": 1}}, "off": {"_count": 1, "so": {"_count": 1}}, "the": {"_count": 3, "tapestry": {"_count": 1}, "tunnel": {"_count": 1}, "ceiling": {"_count": 1}}}, "Secret": {"_count": 8, "Keeper": {"_count": 5, "": {"_count": 2}, "instead": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}}, "Heartache": {"_count": 2, "A": {"_count": 1}, "": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}}, "daybreak": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "drawing": {"_count": 1}}, "when": {"_count": 1, "curfew": {"_count": 1}}, "leave": {"_count": 1, "you": {"_count": 1}}}, "awoken": {"_count": 15, "to": {"_count": 1, "find": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "him": {"_count": 3, "": {"_count": 2}, "on": {"_count": 1}}, "with": {"_count": 2, "his": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 2, "Seamus": {"_count": 1}, "and": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "morning": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}}, "Peppermint": {"_count": 2, "Toad": {"_count": 1, "and": {"_count": 1}}, "Toads": {"_count": 1, "into": {"_count": 1}}}, "Toad": {"_count": 1, "and": {"_count": 1, "massaging": {"_count": 1}}}, "rug": {"_count": 12, "": {"_count": 6, ".": {"_count": 6}}, "like": {"_count": 1, "some": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "front": {"_count": 2}}, "at": {"_count": 1, "Harrys": {"_count": 1}}, "brushing": {"_count": 1, "ash": {"_count": 1}}}, "exchanging": {"_count": 7, "a": {"_count": 2, "look": {"_count": 2}}, "summer": {"_count": 1, "news": {"_count": 1}}, "remarks": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "silence": {"_count": 1}}, "startled": {"_count": 1, "looks": {"_count": 1}}, "skeptical": {"_count": 1, "looks": {"_count": 1}}}, "rehearsed": {"_count": 2, "this": {"_count": 1, "conversation": {"_count": 1}}, "loudly": {"_count": 1, "as": {"_count": 1}}}, "hers": {"_count": 20, "betrayed": {"_count": 1, "her": {"_count": 1}}, "off": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "she": {"_count": 2, "Harry": {"_count": 1}, "did": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 3, "hes": {"_count": 1}, "pressed": {"_count": 1}, "squeezed": {"_count": 1}}, "was": {"_count": 1, "Kreacher": {"_count": 1}}, "Marietta": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 1, "hit": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "flew": {"_count": 1, "into": {"_count": 1}}}, "stricken": {"_count": 11, "": {"_count": 6, ".": {"_count": 6}}, "faces": {"_count": 1, "he": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "lament": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "terror": {"_count": 1}}}, "affected": {"_count": 12, "by": {"_count": 3, "Azkaban": {"_count": 1}, "the": {"_count": 1}, "shock": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 1}, "all": {"_count": 1}, "and": {"_count": 1}}, "his": {"_count": 1, "brain": {"_count": 1}}, "her": {"_count": 1, "holiday": {"_count": 1}}, "Harrys": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "particularly": {"_count": 1}}, "little": {"_count": 1, "shudder": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "panicky": {"_count": 6, "voice": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "close": {"_count": 1}}, "convinced": {"_count": 1, "that": {"_count": 1}}}, "\u2018If": {"_count": 2, "it": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "terrified": {"_count": 1}}}, "Pettigrews": {"_count": 16, "mother": {"_count": 1, "got": {"_count": 1}}, "finger": {"_count": 1, "in": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 1, "wasnt": {"_count": 1}}, "voice": {"_count": 1, "was": {"_count": 1}}, "face": {"_count": 1, "and": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "reach": {"_count": 1, "": {"_count": 1}}, "clutching": {"_count": 1, "hands": {"_count": 1}}, "shoulders": {"_count": 1, "and": {"_count": 1}}, "hands": {"_count": 1, "off": {"_count": 1}}, "chest": {"_count": 1, "": {"_count": 1}}, "front": {"_count": 1, "paw": {"_count": 1}}, "life": {"_count": 2, "": {"_count": 2}}, "pupils": {"_count": 1, "dilated": {"_count": 1}}}, "madman": {"_count": 4, "Harry": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "attacked": {"_count": 1, "me": {"_count": 1}}}, "YouKnotuWho": {"_count": 3, "will": {"_count": 1, "you": {"_count": 1}}, "cant": {"_count": 1, "be": {"_count": 1}}, "happy": {"_count": 1, "": {"_count": 1}}}, "interjected": {"_count": 12, "Ron": {"_count": 3, "angrily": {"_count": 1}, "quickly": {"_count": 1}, "": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Tonks": {"_count": 1, "whose": {"_count": 1}}, "Harry": {"_count": 3, "": {"_count": 1}, "who": {"_count": 1}, "but": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "Greyback": {"_count": 1, "but": {"_count": 1}}, "Sirius": {"_count": 1, "": {"_count": 1}}}, "Malfoyd": {"_count": 2, "love": {"_count": 1, "to": {"_count": 1}}, "like": {"_count": 1, "revenge": {"_count": 1}}}, "million": {"_count": 10, "pieces": {"_count": 1, "like": {"_count": 1}}, "questions": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "miles": {"_count": 1, "away": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "times": {"_count": 3, "tighter": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}, "years": {"_count": 1, "ago": {"_count": 1}}, "could": {"_count": 1, "unite": {"_count": 1}}}, "luxuriously": {"_count": 2, "flexing": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "Further": {"_count": 4, "discussion": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 2, "our": {"_count": 2}}, "along": {"_count": 1, "the": {"_count": 1}}}, "yellowbellied": {"_count": 1, "mongrels": {"_count": 1, "": {"_count": 1}}}, "mongrels": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "trench": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "powdery": {"_count": 2, "snow": {"_count": 2, "their": {"_count": 1}, "": {"_count": 1}}}, "smattered": {"_count": 1, "with": {"_count": 1, "silver": {"_count": 1}}}, "officiallooking": {"_count": 4, "letter": {"_count": 1, "lying": {"_count": 1}}, "envelope": {"_count": 1, "from": {"_count": 1}}, "seal": {"_count": 1, "at": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}}, "redoubled": {"_count": 3, "but": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 2, "grip": {"_count": 1}, "efforts": {"_count": 1}}}, "assurances": {"_count": 4, "of": {"_count": 2, "Professor": {"_count": 1}, "help": {"_count": 1}}, "that": {"_count": 1, "there": {"_count": 1}}, "at": {"_count": 1, "their": {"_count": 1}}}, "regrettable": {"_count": 1, "incident": {"_count": 1, "": {"_count": 1}}}, "inviting": {"_count": 10, "Harry": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "than": {"_count": 1, "when": {"_count": 1}}, "him": {"_count": 3, "along": {"_count": 1}, "to": {"_count": 2}}, "them": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "students": {"_count": 1, "to": {"_count": 1}}, "someone": {"_count": 1, "than": {"_count": 1}}}, "uphold": {"_count": 2, "the": {"_count": 1, "official": {"_count": 1}}, "our": {"_count": 1, "finest": {"_count": 1}}}, "complaint": {"_count": 4, "of": {"_count": 1, "Mr": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}}, "Disposal": {"_count": 11, "of": {"_count": 8, "Dangerous": {"_count": 8}}, "o": {"_count": 2, "Dangerous": {"_count": 2}}, "devils": {"_count": 1, "theyre": {"_count": 1}}}, "April": {"_count": 7, "20th": {"_count": 1, "and": {"_count": 1}}, "why": {"_count": 1, "cant": {"_count": 1}}, "Fools": {"_count": 1, "Day": {"_count": 1}}, "Fool": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "life": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}, "evening": {"_count": 1, "as": {"_count": 1}}}, "20th": {"_count": 1, "and": {"_count": 1, "we": {"_count": 1}}}, "Committees": {"_count": 3, "offices": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "Lucius": {"_count": 1}}, "appointed": {"_count": 1, "executioner": {"_count": 1}}}, "isolated": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 2, "everybody": {"_count": 1}, "the": {"_count": 1}}, "incident": {"_count": 1, "and": {"_count": 1}}}, "fellowship": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "interestin": {"_count": 2, "creatures": {"_count": 1, "": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}}, "chomping": {"_count": 1, "on": {"_count": 1, "something": {"_count": 1}}}, "standards": {"_count": 6, "he": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "behavior": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "Hog": {"_count": 1}}, "in": {"_count": 1, "Divination": {"_count": 1}}, "Dumbledore": {"_count": 1, "expected": {"_count": 1}}}, "cute": {"_count": 4, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 1}, "!": {"_count": 1}}, "freckles": {"_count": 1, "": {"_count": 1}}}, "defense": {"_count": 27, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "for": {"_count": 1, "Buckbeak": {"_count": 1}}, "the": {"_count": 1, "arrival": {"_count": 1}}, "lessons": {"_count": 1, "against": {"_count": 1}}, "rubbish": {"_count": 1, "we": {"_count": 1}}, "was": {"_count": 2, "possible": {"_count": 1}, "convicted": {"_count": 1}}, "Albus": {"_count": 1, "Percival": {"_count": 1}}, "of": {"_count": 4, "Kreacher": {"_count": 1}, "the": {"_count": 2}, "Mudbloods": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "then": {"_count": 1, "we": {"_count": 1}}, "but": {"_count": 1, "if": {"_count": 1}}, "group": {"_count": 2, "": {"_count": 2}}, "societies": {"_count": 1, "right": {"_count": 1}}, "is": {"_count": 1, "this": {"_count": 1}}, "that": {"_count": 1, "will": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "laying": {"_count": 14, "a": {"_count": 1, "hand": {"_count": 1}}, "the": {"_count": 3, "broom": {"_count": 1}, "package": {"_count": 1}, "dinner": {"_count": 1}}, "it": {"_count": 2, "on": {"_count": 1}, "down": {"_count": 1}}, "down": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 1}, "forks": {"_count": 1}}, "hands": {"_count": 2, "on": {"_count": 2}}, "his": {"_count": 1, "head": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "flowers": {"_count": 1, "on": {"_count": 1}}}, "forearm": {"_count": 13, "": {"_count": 5, ".": {"_count": 5}}, "convulsively": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 2, "showed": {"_count": 1}, "pulled": {"_count": 1}}, "apparently": {"_count": 1, "unconsciously": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "sent": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "join": {"_count": 1}}}, "devils": {"_count": 2, "theyre": {"_count": 1, "all": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}}, "wail": {"_count": 13, "and": {"_count": 6, "lurched": {"_count": 1}, "Uncle": {"_count": 1}, "pulled": {"_count": 1}, "shook": {"_count": 1}, "sob": {"_count": 1}, "without": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 3, "despair": {"_count": 2}, "fear": {"_count": 1}}, "sounded": {"_count": 1, "a": {"_count": 1}}}, "keepin": {"_count": 7, "them": {"_count": 1, "dementors": {"_count": 1}}, "an": {"_count": 1, "eye": {"_count": 1}}, "outta": {"_count": 1, "Golgomath": {"_count": 1}}, "our": {"_count": 1, "eyes": {"_count": 1}}, "a": {"_count": 2, "couple": {"_count": 1}, "job": {"_count": 1}}, "well": {"_count": 1, "then": {"_count": 1}}}, "lurkin": {"_count": 1, "around": {"_count": 1, "Ron": {"_count": 1}}}, "berating": {"_count": 2, "Hagrid": {"_count": 1, "for": {"_count": 1}}, "Crabbe": {"_count": 1, "for": {"_count": 1}}}, "hippogriffbaiting": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "likin": {"_count": 1, "me": {"_count": 1, "classes": {"_count": 1}}}, "evry": {"_count": 3, "time": {"_count": 1, "I": {"_count": 1}}, "hour": {"_count": 1, "o": {"_count": 1}}, "day": {"_count": 1, "bringin": {"_count": 1}}}, "brief": {"_count": 20, "spell": {"_count": 3, "in": {"_count": 1}, "as": {"_count": 1}, "of": {"_count": 1}}, "meeting": {"_count": 1, "": {"_count": 1}}, "period": {"_count": 1, "during": {"_count": 1}}, "glimpse": {"_count": 3, "of": {"_count": 3}}, "periods": {"_count": 1, "when": {"_count": 1}}, "glimpses": {"_count": 1, "and": {"_count": 1}}, "moment": {"_count": 3, "the": {"_count": 1}, "when": {"_count": 1}, "he": {"_count": 1}}, "onearmed": {"_count": 1, "hug": {"_count": 1}}, "calm": {"_count": 1, "between": {"_count": 1}}, "statement": {"_count": 1, "Friday": {"_count": 1}}, "silence": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "an": {"_count": 1}}, "boyhood": {"_count": 1, "friendship": {"_count": 1}}, "but": {"_count": 1, "severe": {"_count": 1}}}, "Kep": {"_count": 1, "goin": {"_count": 1, "over": {"_count": 1}}}, "livin": {"_count": 1, "at": {"_count": 1, "all": {"_count": 1}}}, "evrythin": {"_count": 1, "came": {"_count": 1, "floodin": {"_count": 1}}}, "floodin": {"_count": 1, "back": {"_count": 1, "it": {"_count": 1}}}, "feelin": {"_count": 6, "in": {"_count": 1, "the": {"_count": 1}}, "lonely": {"_count": 1, "": {"_count": 1}}, "like": {"_count": 1, "yeh": {"_count": 1}}, "Golgomath": {"_count": 1, "wouldn": {"_count": 1}}, "all": {"_count": 1, "righ": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}}, "lettin": {"_count": 3, "me": {"_count": 1, "go": {"_count": 1}}, "anyone": {"_count": 1, "in": {"_count": 1}}, "him": {"_count": 1, "lure": {"_count": 1}}}, "Long": {"_count": 9, "as": {"_count": 1, "theyve": {"_count": 1}}, "time": {"_count": 1, "no": {"_count": 1}}, "walk": {"_count": 1, "Arthur": {"_count": 1}}, "white": {"_count": 1, "linen": {"_count": 1}}, "ago": {"_count": 1, "when": {"_count": 1}}, "dark": {"_count": 1, "curtains": {"_count": 1}}, "live": {"_count": 1, "Harry": {"_count": 1}}, "story": {"_count": 1, "said": {"_count": 1}}, "since": {"_count": 1, "lost": {"_count": 1}}}, "hidin": {"_count": 5, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "out": {"_count": 2, "in": {"_count": 2}}, "in": {"_count": 1, "and": {"_count": 1}}}, "marauding": {"_count": 2, "beasts": {"_count": 1, "speaking": {"_count": 1}}, "monsters": {"_count": 1, "of": {"_count": 1}}}, "relevant": {"_count": 4, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "to": {"_count": 1, "this": {"_count": 1}}}, "Heres": {"_count": 5, "something": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "idea": {"_count": 1}}, "another": {"_count": 1, "one": {"_count": 1}}, "your": {"_count": 1, "present": {"_count": 1}}, "a": {"_count": 1, "copy": {"_count": 1}}}, "1722": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "convicted": {"_count": 14, "ugh": {"_count": 1, "look": {"_count": 1}}, "murderer": {"_count": 2, "and": {"_count": 1}, "but": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "for": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "both": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 2}, "leaking": {"_count": 1}, "a": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "Mugglehater": {"_count": 1, "lived": {"_count": 1}}, "Hepzibahs": {"_count": 1, "family": {"_count": 1}}}, "ugh": {"_count": 1, "look": {"_count": 1, "what": {"_count": 1}}}, "manticore": {"_count": 2, "savaged": {"_count": 1, "someone": {"_count": 1}}, "off": {"_count": 1, "oh": {"_count": 1}}}, "savaged": {"_count": 2, "someone": {"_count": 1, "in": {"_count": 1}}, "by": {"_count": 1, "Greyback": {"_count": 1}}}, "1296": {"_count": 1, "and": {"_count": 1, "they": {"_count": 1}}}, "strung": {"_count": 6, "along": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "hundred": {"_count": 1}}, "you": {"_count": 1, "up": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "pervaded": {"_count": 1, "the": {"_count": 1, "corridors": {"_count": 1}}}, "shelter": {"_count": 11, "of": {"_count": 8, "Rons": {"_count": 1}, "the": {"_count": 4}, "a": {"_count": 3}}, "they": {"_count": 1, "could": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "With": {"_count": 1, "a": {"_count": 1}}}, "Presents": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "semidarkness": {"_count": 8, "to": {"_count": 1, "the": {"_count": 1}}, "waiting": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "the": {"_count": 1, "flames": {"_count": 1}}, "then": {"_count": 1, "creep": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}}, "parcels": {"_count": 3, "had": {"_count": 1, "appeared": {"_count": 1}}, "and": {"_count": 1, "everything": {"_count": 1}}, "onto": {"_count": 1, "Harrys": {"_count": 1}}}, "homebaked": {"_count": 1, "mince": {"_count": 1, "pies": {"_count": 1}}}, "mince": {"_count": 5, "pies": {"_count": 3, "some": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "pie": {"_count": 1, "in": {"_count": 1}}}, "nut": {"_count": 3, "brittle": {"_count": 1, "": {"_count": 1}}, "sundaes": {"_count": 1, "with": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}}, "freshly": {"_count": 17, "unwrapped": {"_count": 1, "pair": {"_count": 1}}, "laundered": {"_count": 5, "Hogwarts": {"_count": 1}, "jeans": {"_count": 1}, "robes": {"_count": 1}, "clothes": {"_count": 1}, "": {"_count": 1}}, "turned": {"_count": 1, "earth": {"_count": 1}}, "dug": {"_count": 3, "earth": {"_count": 2}, "grave": {"_count": 1}}, "minted": {"_count": 1, "look": {"_count": 1}}, "painted": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 1, "carriage": {"_count": 1}}, "mown": {"_count": 2, "grass": {"_count": 1}, "lawn": {"_count": 1}}, "completed": {"_count": 1, "essay": {"_count": 1}}, "cast": {"_count": 1, "defensive": {"_count": 1}}}, "unsupported": {"_count": 5, "at": {"_count": 1, "exactly": {"_count": 1}}, "and": {"_count": 1, "weightless": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}}, "streamlined": {"_count": 1, "birch": {"_count": 1, "twigs": {"_count": 1}}}, "Firebolts": {"_count": 9, "wrappings": {"_count": 1, "": {"_count": 1}}, "superbly": {"_count": 1, "smooth": {"_count": 1}}, "going": {"_count": 2, "to": {"_count": 2}}, "precisionbalance": {"_count": 1, "is": {"_count": 1}}, "safety": {"_count": 1, "than": {"_count": 1}}, "tail": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "really": {"_count": 1}}, "handle": {"_count": 1, "": {"_count": 1}}}, "wrappings": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "fell": {"_count": 1, "open": {"_count": 1}}}, "betting": {"_count": 8, "it": {"_count": 1, "wasnt": {"_count": 1}}, "me": {"_count": 1, "Bulgaria": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Ill": {"_count": 1, "win": {"_count": 1}}, "she": {"_count": 1, "comes": {"_count": 1}}, "youd": {"_count": 1, "win": {"_count": 1}}, "theyll": {"_count": 1, "choose": {"_count": 1}}}, "anonymously": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "hows": {"_count": 1, "anyone": {"_count": 1}}}, "favoritism": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "Malfoyl": {"_count": 1, "Wait": {"_count": 1, "till": {"_count": 1}}}, "international": {"_count": 7, "standard": {"_count": 2, "broom": {"_count": 1}, "broomstick": {"_count": 1}}, "law": {"_count": 1, "is": {"_count": 1}}, "magical": {"_count": 1, "cooperation": {"_count": 1}}, "wizarding": {"_count": 1, "links": {"_count": 1}}, "Quidditch": {"_count": 2, "player": {"_count": 2}}}, "affording": {"_count": 1, "something": {"_count": 1, "like": {"_count": 1}}}, "tinsel": {"_count": 5, "tied": {"_count": 1, "around": {"_count": 1}}, "hair": {"_count": 1, "band": {"_count": 1}}, "when": {"_count": 1, "Peeves": {"_count": 1}}, "wreath": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "stowing": {"_count": 9, "him": {"_count": 1, "in": {"_count": 1}}, "their": {"_count": 1, "luggage": {"_count": 1}}, "his": {"_count": 2, "wand": {"_count": 2}}, "Pigwidgeon": {"_count": 1, "next": {"_count": 1}}, "the": {"_count": 3, "package": {"_count": 1}, "O": {"_count": 1}, "little": {"_count": 1}}, "her": {"_count": 1, "wet": {"_count": 1}}}, "pajama": {"_count": 3, "pocket": {"_count": 1, "": {"_count": 1}}, "trousers": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "intrigued": {"_count": 10, "by": {"_count": 3, "the": {"_count": 2}, "him": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "him": {"_count": 2, "he": {"_count": 2}}, "and": {"_count": 1, "alarmed": {"_count": 1}}, "me": {"_count": 1, "and": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}}, "misjudged": {"_count": 1, "kick": {"_count": 1, "at": {"_count": 1}}}, "dislodged": {"_count": 7, "from": {"_count": 1, "Uncle": {"_count": 1}}, "Crookshanks": {"_count": 1, "Harry": {"_count": 1}}, "a": {"_count": 1, "copy": {"_count": 1}}, "me": {"_count": 1, "from": {"_count": 1}}, "stones": {"_count": 1, "and": {"_count": 1}}, "snow": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "Snitch": {"_count": 1}}}, "whirling": {"_count": 8, "and": {"_count": 2, "gleaming": {"_count": 1}, "waving": {"_count": 1}}, "ash": {"_count": 1, "and": {"_count": 1}}, "candelabra": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "darkness": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "panic": {"_count": 1}}, "night": {"_count": 1, "": {"_count": 1}}}, "stress": {"_count": 6, "": {"_count": 1, "!": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "some": {"_count": 1}}, "levels": {"_count": 1, "said": {"_count": 1}}, "this": {"_count": 1, "point": {"_count": 1}}, "than": {"_count": 1, "youd": {"_count": 1}}}, "furball": {"_count": 1, "left": {"_count": 1, "him": {"_count": 1}}}, "frequent": {"_count": 7, "complaints": {"_count": 1, "that": {"_count": 1}}, "glares": {"_count": 1, "and": {"_count": 1}}, "intervals": {"_count": 1, "in": {"_count": 1}}, "bids": {"_count": 1, "for": {"_count": 1}}, "nighttime": {"_count": 1, "wanderings": {"_count": 1}}, "presence": {"_count": 1, "of": {"_count": 1}}, "forays": {"_count": 1, "into": {"_count": 1}}}, "attempt": {"_count": 101, "to": {"_count": 62, "eat": {"_count": 1}, "cheer": {"_count": 1}, "sabotage": {"_count": 3}, "administer": {"_count": 1}, "desert": {"_count": 1}, "make": {"_count": 2}, "save": {"_count": 1}, "pretend": {"_count": 1}, "close": {"_count": 2}, "eavesdrop": {"_count": 1}, "catch": {"_count": 2}, "live": {"_count": 1}, "sound": {"_count": 1}, "discredit": {"_count": 1}, "follow": {"_count": 1}, "train": {"_count": 1}, "punch": {"_count": 1}, "contact": {"_count": 1}, "disarm": {"_count": 1}, "break": {"_count": 2}, "clear": {"_count": 1}, "divine": {"_count": 1}, "er": {"_count": 1}, "poison": {"_count": 1}, "talk": {"_count": 1}, "rescue": {"_count": 1}, "force": {"_count": 2}, "bewitch": {"_count": 1}, "get": {"_count": 3}, "arm": {"_count": 1}, "seize": {"_count": 2}, "rid": {"_count": 1}, "find": {"_count": 3}, "jinx": {"_count": 1}, "repel": {"_count": 1}, "keep": {"_count": 1}, "reason": {"_count": 1}, "wrest": {"_count": 1}, "extract": {"_count": 1}, "corner": {"_count": 1}, "destroy": {"_count": 1}, "argue": {"_count": 1}, "shield": {"_count": 1}, "sit": {"_count": 1}, "thwart": {"_count": 1}, "protect": {"_count": 1}, "shift": {"_count": 1}, "escape": {"_count": 1}, "draw": {"_count": 1}, "drag": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 4, "lobbing": {"_count": 1}, "simply": {"_count": 1}, "leave": {"_count": 1}, "he": {"_count": 1}}, "kidnap": {"_count": 1, "in": {"_count": 1}}, "No": {"_count": 1, "ones": {"_count": 1}}, "he": {"_count": 1, "produced": {"_count": 1}}, "N": {"_count": 1, "": {"_count": 1}}, "until": {"_count": 1, "N": {"_count": 1}}, "earning": {"_count": 1, "her": {"_count": 1}}, "on": {"_count": 3, "their": {"_count": 1}, "goal": {"_count": 1}, "the": {"_count": 1}}, "Ron": {"_count": 1, "caught": {"_count": 1}}, "at": {"_count": 10, "her": {"_count": 2}, "a": {"_count": 4}, "the": {"_count": 1}, "scorn": {"_count": 1}, "magic": {"_count": 1}, "glory": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 4, "not": {"_count": 4}}, "it": {"_count": 1, "said": {"_count": 1}}, "during": {"_count": 1, "which": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "was": {"_count": 2, "no": {"_count": 1}, "not": {"_count": 1}}, "another": {"_count": 1, "assault": {"_count": 1}}, "but": {"_count": 1, "Im": {"_count": 1}}}, "tailcoat": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "honor": {"_count": 1}}}, "nervouslooking": {"_count": 2, "first": {"_count": 1, "years": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}}, "sullenfaced": {"_count": 1, "Slytherin": {"_count": 1, "fifth": {"_count": 1}}}, "Crackers": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "noisemaker": {"_count": 1, "to": {"_count": 1, "Snape": {"_count": 1}}}, "gunshot": {"_count": 4, "the": {"_count": 1, "cracker": {"_count": 1}}, "Rons": {"_count": 1, "leg": {"_count": 1}}, "a": {"_count": 1, "cat": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "Dig": {"_count": 2, "in": {"_count": 1, "": {"_count": 1}}, "gorys": {"_count": 1, "dead": {"_count": 1}}}, "sequined": {"_count": 1, "dress": {"_count": 1, "in": {"_count": 1}}}, "oversized": {"_count": 3, "dragonfly": {"_count": 1, "": {"_count": 1}}, "balding": {"_count": 1, "baby": {"_count": 1}}, "artichoke": {"_count": 1, "in": {"_count": 1}}}, "dragonfly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "over": {"_count": 1, "water": {"_count": 1}}}, "faraway": {"_count": 3, "voice": {"_count": 1, "and": {"_count": 1}}, "look": {"_count": 1, "on": {"_count": 1}}, "place": {"_count": 1, "in": {"_count": 1}}}, "luncheon": {"_count": 1, "and": {"_count": 1, "coming": {"_count": 1}}}, "promptings": {"_count": 1, "of": {"_count": 1, "fate": {"_count": 1}}}, "hastened": {"_count": 16, "from": {"_count": 1, "my": {"_count": 1}}, "to": {"_count": 10, "take": {"_count": 1}, "add": {"_count": 1}, "answer": {"_count": 1}, "obey": {"_count": 1}, "rouse": {"_count": 1}, "imitate": {"_count": 1}, "ask": {"_count": 1}, "tell": {"_count": 1}, "join": {"_count": 1}, "appear": {"_count": 1}}, "past": {"_count": 1, "Dumbledore": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "back": {"_count": 1, "to": {"_count": 1}}}, "lateness": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "vanished": {"_count": 1, "entirely": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "I": {"_count": 1, "think": {"_count": 1}}}, "revolved": {"_count": 7, "for": {"_count": 1, "a": {"_count": 1}}, "slowly": {"_count": 1, "her": {"_count": 1}}, "popped": {"_count": 1, "flashed": {"_count": 1}}, "to": {"_count": 3, "face": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}}, "uttered": {"_count": 13, "a": {"_count": 7, "kind": {"_count": 1}, "disgusting": {"_count": 1}, "loud": {"_count": 1}, "soft": {"_count": 1}, "little": {"_count": 1}, "single": {"_count": 1}, "bloodcurdling": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "Dumbledores": {"_count": 1, "name": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "an": {"_count": 1, "inarticulate": {"_count": 1}}}, "dine": {"_count": 1, "together": {"_count": 1, "the": {"_count": 1}}}, "thunderbolt": {"_count": 1, "to": {"_count": 1, "hit": {"_count": 1}}}, "tureen": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "Tripe": {"_count": 1, "Sibyll": {"_count": 1, "": {"_count": 1}}}, "parade": {"_count": 3, "the": {"_count": 1, "fact": {"_count": 1}}, "what": {"_count": 1, "were": {"_count": 1}}, "of": {"_count": 1, "Crabbes": {"_count": 1}}}, "AllKnowing": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "frequently": {"_count": 16, "act": {"_count": 1, "as": {"_count": 1}}, "dashed": {"_count": 1, "back": {"_count": 1}}, "erupted": {"_count": 1, "into": {"_count": 1}}, "as": {"_count": 2, "Neville": {"_count": 1}, "he": {"_count": 1}}, "kept": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "by": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "heard": {"_count": 1, "students": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "entangling": {"_count": 1, "them": {"_count": 1}}, "looked": {"_count": 1, "over": {"_count": 1}}, "strolled": {"_count": 1, "up": {"_count": 1}}, "wondered": {"_count": 1, "lately": {"_count": 1}}, "she": {"_count": 1, "appeared": {"_count": 1}}, "pierced": {"_count": 1, "Harry": {"_count": 1}}}, "possessed": {"_count": 20, "of": {"_count": 3, "the": {"_count": 1}, "second": {"_count": 1}, "that": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "no": {"_count": 1, "magical": {"_count": 1}}, "Quirrell": {"_count": 1, "I": {"_count": 1}}, "by": {"_count": 1, "YouKnowWho": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 2, "said": {"_count": 1}, "briefly": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 2, "they": {"_count": 1}, "never": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "him": {"_count": 1, "since": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "would": {"_count": 1, "I": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "explains": {"_count": 4, "a": {"_count": 1, "great": {"_count": 1}}, "everything": {"_count": 2, "everything": {"_count": 1}, "": {"_count": 1}}, "why": {"_count": 1, "you": {"_count": 1}}}, "tartly": {"_count": 8, "": {"_count": 6, ".": {"_count": 6}}, "and": {"_count": 1, "the": {"_count": 1}}, "cutting": {"_count": 1, "across": {"_count": 1}}}, "dryly": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "Dumbledore": {"_count": 1}}, "especially": {"_count": 1, "as": {"_count": 1}}, "who": {"_count": 1, "did": {"_count": 1}}, "we": {"_count": 1, "teachers": {"_count": 1}}}, "Derek": {"_count": 1, "have": {"_count": 1, "you": {"_count": 1}}}, "platter": {"_count": 3, "of": {"_count": 3, "sausages": {"_count": 1}, "eclairs": {"_count": 1}, "bacon": {"_count": 1}}}, "behaved": {"_count": 7, "almost": {"_count": 1, "normally": {"_count": 1}}, "tonight": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 1, "loads": {"_count": 1}}, "and": {"_count": 1, "could": {"_count": 1}}, "rabbit": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "uneasily": {"_count": 5, "at": {"_count": 1, "Harry": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "axeman": {"_count": 1, "is": {"_count": 1, "waiting": {"_count": 1}}}, "slaughter": {"_count": 6, "the": {"_count": 1, "first": {"_count": 1}}, "of": {"_count": 2, "foals": {"_count": 1}, "Emeric": {"_count": 1}}, "is": {"_count": 1, "becoming": {"_count": 1}}, "But": {"_count": 1, "this": {"_count": 1}}, "and": {"_count": 1, "whose": {"_count": 1}}}, "devoid": {"_count": 2, "of": {"_count": 2, "mad": {"_count": 1}, "flame": {"_count": 1}}}, "axemen": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "toasted": {"_count": 2, "them": {"_count": 1, "with": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}}, "flagon": {"_count": 8, "of": {"_count": 4, "mead": {"_count": 1}, "butterbeer": {"_count": 3}}, "she": {"_count": 1, "was": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "whole": {"_count": 1}}, "nearby": {"_count": 1, "which": {"_count": 1}}}, "hie": {"_count": 20, "Christmas": {"_count": 1, "": {"_count": 1}}, "coming": {"_count": 1, "": {"_count": 1}}, "ill": {"_count": 1, "": {"_count": 1}}, "Winky": {"_count": 3, "": {"_count": 1}, "is": {"_count": 1}, "keeps": {"_count": 1}}, "manage": {"_count": 1, "hie": {"_count": 1}}, "all": {"_count": 1, "by": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "doing": {"_count": 1, "housework": {"_count": 1}}, "trusting": {"_count": 1, "Winky": {"_count": 1}}, "the": {"_count": 2, "most": {"_count": 2}}, "her": {"_count": 1, "masters": {"_count": 1}}, "nosing": {"_count": 1, "you": {"_count": 1}}, "into": {"_count": 1, "my": {"_count": 1}}, "private": {"_count": 1, "and": {"_count": 1}}, "people": {"_count": 1, "trying": {"_count": 1}}, "pry": {"_count": 1, "and": {"_count": 1}}, "Winkys": {"_count": 1, "eyelids": {"_count": 1}}}, "Scurvy": {"_count": 1, "cur": {"_count": 1, "said": {"_count": 1}}}, "beadily": {"_count": 5, "walking": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "you": {"_count": 1, "cant": {"_count": 1}}, "at": {"_count": 1, "Harry": {"_count": 1}}}, "twigends": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "jinxes": {"_count": 25, "said": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "which": {"_count": 1}}, "and": {"_count": 4, "blackmails": {"_count": 1}, "hexes": {"_count": 2}, "curses": {"_count": 1}}, "or": {"_count": 1, "he": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "does": {"_count": 1, "he": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "there": {"_count": 1}}, "hexes": {"_count": 1, "and": {"_count": 1}}, "backfired": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "actually": {"_count": 1}}, "on": {"_count": 1, "all": {"_count": 1}}, "curses": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "against": {"_count": 1, "him": {"_count": 1}}, "they": {"_count": 1, "put": {"_count": 1}}}, "strip": {"_count": 11, "it": {"_count": 2, "down": {"_count": 2}}, "of": {"_count": 4, "gleaming": {"_count": 1}, "wood": {"_count": 1}, "parchment": {"_count": 1}, "faint": {"_count": 1}}, "lighting": {"_count": 1, "now": {"_count": 1}}, "off": {"_count": 2, "it": {"_count": 1}, "until": {"_count": 1}}, "pupils": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "place": {"_count": 1}}}, "Strip": {"_count": 1, "it": {"_count": 1, "down": {"_count": 1}}}, "jinxfree": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "agrees": {"_count": 6, "with": {"_count": 4, "me": {"_count": 1}, "Mr": {"_count": 1}, "us": {"_count": 1}, "Krum": {"_count": 1}}, "that": {"_count": 1, "hes": {"_count": 1}}, "no": {"_count": 1, "one": {"_count": 1}}}, "PATRONUS": {"_count": 1, "Harry": {"_count": 1, "knew": {"_count": 1}}}, "interference": {"_count": 7, "he": {"_count": 1, "didnt": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "students": {"_count": 1, "in": {"_count": 1}}}, "positive": {"_count": 6, "that": {"_count": 1, "there": {"_count": 1}}, "force": {"_count": 1, "a": {"_count": 1}}, "adoration": {"_count": 1, "on": {"_count": 1}}, "avalanche": {"_count": 1, "of": {"_count": 1}}, "babble": {"_count": 1, "of": {"_count": 1}}, "nest": {"_count": 1, "of": {"_count": 1}}}, "subjected": {"_count": 5, "to": {"_count": 5, "all": {"_count": 1}, "fair": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "humiliation": {"_count": 1}}}, "antijinx": {"_count": 3, "tests": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "varnish": {"_count": 1, "and": {"_count": 1}}}, "tests": {"_count": 13, "": {"_count": 4, "?": {"_count": 2}, ".": {"_count": 2}}, "either": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 1, "terribly": {"_count": 1}}, "set": {"_count": 1, "by": {"_count": 1}}, "do": {"_count": 1, "the": {"_count": 1}}, "Twycross": {"_count": 1, "continued": {"_count": 1}}, "that": {"_count": 1, "very": {"_count": 1}}}, "strippingdown": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "sought": {"_count": 29, "Harry": {"_count": 1, "out": {"_count": 1}}, "sanctuary": {"_count": 1, "with": {"_count": 1}}, "me": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 7, "rule": {"_count": 1}, "wake": {"_count": 1}, "keep": {"_count": 1}, "help": {"_count": 1}, "advertise": {"_count": 1}, "greet": {"_count": 1}, "make": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 5, "fight": {"_count": 1}, "meeting": {"_count": 1}, "solution": {"_count": 1}, "third": {"_count": 1}, "way": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "there": {"_count": 1}}, "him": {"_count": 1, "so": {"_count": 1}}, "grandeur": {"_count": 1, "or": {"_count": 1}}, "almost": {"_count": 1, "at": {"_count": 1}}, "them": {"_count": 1, "done": {"_count": 1}}, "the": {"_count": 1, "Elder": {"_count": 1}}, "solitude": {"_count": 1, "whenever": {"_count": 1}}, "refuge": {"_count": 1, "in": {"_count": 1}}, "revenge": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "Jinxed": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "from": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 1, "set": {"_count": 1}}}, "Waving": {"_count": 1, "aside": {"_count": 1, "the": {"_count": 1}}}, "murderer": {"_count": 18, "was": {"_count": 1, "after": {"_count": 1}}, "and": {"_count": 5, "a": {"_count": 3}, "I": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 1, "hes": {"_count": 1}}, "for": {"_count": 2, "plainly": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "too": {"_count": 1, "Keep": {"_count": 1}}, "Sirius": {"_count": 1, "Black": {"_count": 1}}, "or": {"_count": 1, "victim": {"_count": 1}}, "could": {"_count": 1, "know": {"_count": 1}}, "spat": {"_count": 1, "Harry": {"_count": 1}}}, "countrys": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}}, "Classes": {"_count": 1, "started": {"_count": 1, "again": {"_count": 1}}}, "bonfire": {"_count": 1, "full": {"_count": 1, "of": {"_count": 1}}}, "flameloving": {"_count": 1, "lizards": {"_count": 1, "scampered": {"_count": 1}}}, "whitehot": {"_count": 12, "logs": {"_count": 1, "": {"_count": 1}}, "wire": {"_count": 1, "to": {"_count": 1}}, "graze": {"_count": 1, "the": {"_count": 1}}, "poker": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 2, "though": {"_count": 1}, "he": {"_count": 1}}, "anger": {"_count": 1, "lick": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "whiplike": {"_count": 1, "something": {"_count": 1}}, "and": {"_count": 1, "blue": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "bodies": {"_count": 1, "filling": {"_count": 1}}}, "logs": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "stacked": {"_count": 1, "neatly": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "tuh": {"_count": 1, "from": {"_count": 1, "behind": {"_count": 1}}}, "repacking": {"_count": 2, "her": {"_count": 1, "bag": {"_count": 1}}, "the": {"_count": 1, "car": {"_count": 1}}}, "tutting": {"_count": 3, "at": {"_count": 1, "us": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "noise": {"_count": 1, "": {"_count": 1}}}, "maddening": {"_count": 1, "superiority": {"_count": 1, "": {"_count": 1}}}, "superiority": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "determination": {"_count": 1}}}, "combing": {"_count": 1, "the": {"_count": 1, "castle": {"_count": 1}}}, "substitute": {"_count": 7, "for": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "teacher": {"_count": 1, "standing": {"_count": 1}}, "go": {"_count": 1, "on": {"_count": 1}}, "locket": {"_count": 1, "in": {"_count": 1}}}, "Patronus": {"_count": 88, "Charm": {"_count": 5, "": {"_count": 1}, "at": {"_count": 1}, "to": {"_count": 1}, "in": {"_count": 2}}, "said": {"_count": 2, "Lupin": {"_count": 1}, "a": {"_count": 1}}, "is": {"_count": 6, "a": {"_count": 6}}, "look": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 8}, "?": {"_count": 9}, "!": {"_count": 4}}, "vanished": {"_count": 2, "along": {"_count": 1}, "with": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 4, "too": {"_count": 1}, "shining": {"_count": 1}, "a": {"_count": 2}}, "would": {"_count": 2, "charge": {"_count": 1}, "be": {"_count": 1}}, "does": {"_count": 1, "do": {"_count": 1}}, "and": {"_count": 3, "wishing": {"_count": 1}, "her": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 2, "saw": {"_count": 1}, "was": {"_count": 1}}, "aside": {"_count": 1, "": {"_count": 1}}, "flickered": {"_count": 1, "and": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "turned": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "drove": {"_count": 1}}, "took": {"_count": 1, "when": {"_count": 1}}, "WHOOSH": {"_count": 1, "": {"_count": 1}}, "take": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 3, "a": {"_count": 1}, "landed": {"_count": 1}, "vanished": {"_count": 1}}, "before": {"_count": 1, "now": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "which": {"_count": 1, "charged": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "soar": {"_count": 2, "around": {"_count": 1}, "through": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "shining": {"_count": 1}}, "has": {"_count": 1, "changed": {"_count": 1}}, "change": {"_count": 1, "": {"_count": 1}}, "dissolved": {"_count": 2, "into": {"_count": 2}}, "thing": {"_count": 1, "then": {"_count": 1}}, "Harry": {"_count": 1, "which": {"_count": 1}}, "here": {"_count": 1, "without": {"_count": 1}}, "cat": {"_count": 1, "patrolled": {"_count": 1}}, "stood": {"_count": 1, "sentinel": {"_count": 1}}, "some": {"_count": 1, "kind": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "back": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 1, "us": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}}, "conjures": {"_count": 2, "up": {"_count": 1, "a": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "anti": {"_count": 4, "dementor": {"_count": 2, "a": {"_count": 1}, "classes": {"_count": 1}}, "werewolf": {"_count": 1, "legislation": {"_count": 1}}, "Ministry": {"_count": 1, "action": {"_count": 1}}}, "Hagridsized": {"_count": 1, "figure": {"_count": 1, "holding": {"_count": 1}}}, "projection": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "feeds": {"_count": 2, "upon": {"_count": 1, "hope": {"_count": 1}}, "secretly": {"_count": 1, "to": {"_count": 1}}}, "unique": {"_count": 7, "to": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "position": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}}, "conjure": {"_count": 11, "it": {"_count": 3, "": {"_count": 3}}, "the": {"_count": 3, "Dark": {"_count": 2}, "Mark": {"_count": 1}}, "that": {"_count": 1, "Mark": {"_count": 1}}, "a": {"_count": 3, "Patronus": {"_count": 2}, "shining": {"_count": 1}}, "faded": {"_count": 1, "away": {"_count": 1}}}, "incantation": {"_count": 17, "which": {"_count": 1, "will": {"_count": 1}}, "is": {"_count": 1, "this": {"_count": 1}}, "Oh": {"_count": 1, "stood": {"_count": 1}}, "did": {"_count": 1, "they": {"_count": 1}}, "was": {"_count": 1, "much": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "and": {"_count": 4, "b": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}, "see": {"_count": 1}}, "aloud": {"_count": 2, "had": {"_count": 1}, "but": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "Sectumsempral": {"_count": 1, "scrawled": {"_count": 1}}, "that": {"_count": 1, "sounded": {"_count": 1}}}, "Expecto": {"_count": 26, "patronum": {"_count": 12, "": {"_count": 9}, "Harry": {"_count": 1}, "J": {"_count": 1}, "said": {"_count": 1}}, "patrono": {"_count": 1, "no": {"_count": 1}}, "patronurrd": {"_count": 1, "Harry": {"_count": 1}}, "But": {"_count": 1, "the": {"_count": 1}}, "patronuml": {"_count": 1, "Expecto": {"_count": 1}}, "pat": {"_count": 1, "White": {"_count": 1}}, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "expecto": {"_count": 1, "patronum": {"_count": 1}}, "Patronum": {"_count": 4, "": {"_count": 4}}, "Patronurrd": {"_count": 1, "A": {"_count": 1}}, "PatronumV": {"_count": 1, "His": {"_count": 1}}, "Patronuml": {"_count": 1, "From": {"_count": 1}}}, "patronum": {"_count": 20, "": {"_count": 12, ".": {"_count": 12}}, "Harry": {"_count": 2, "repeated": {"_count": 1}, "felt": {"_count": 1}}, "sorry": {"_count": 1, "expecto": {"_count": 1}}, "expecto": {"_count": 1, "patronum": {"_count": 1}}, "Something": {"_count": 1, "whooshed": {"_count": 1}}, "J": {"_count": 1, "he": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "expecto": {"_count": 10, "patronum": {"_count": 7, "": {"_count": 3}, "expecto": {"_count": 1}, "Something": {"_count": 1}, "Harry": {"_count": 1}, "He": {"_count": 1}}, "expecto": {"_count": 2, "But": {"_count": 1}, "patronum": {"_count": 1}}, "But": {"_count": 1, "she": {"_count": 1}}}, "Concentrating": {"_count": 4, "hard": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "very": {"_count": 1, "hard": {"_count": 1}}, "with": {"_count": 1, "all": {"_count": 1}}}, "patrono": {"_count": 1, "no": {"_count": 1, "patronum": {"_count": 1}}}, "whooshed": {"_count": 4, "suddenly": {"_count": 1, "out": {"_count": 1}}, "past": {"_count": 1, "in": {"_count": 1}}, "over": {"_count": 2, "them": {"_count": 1}, "him": {"_count": 1}}}, "wisp": {"_count": 7, "of": {"_count": 7, "silvery": {"_count": 1}, "silver": {"_count": 2}, "smoke": {"_count": 2}, "vapor": {"_count": 1}, "dark": {"_count": 1}}}, "gas": {"_count": 15, "": {"_count": 5, ".": {"_count": 5}}, "it": {"_count": 1, "skidded": {"_count": 1}}, "lamps": {"_count": 3, "sputtered": {"_count": 1}, "sprang": {"_count": 1}, "then": {"_count": 1}}, "wafted": {"_count": 1, "into": {"_count": 1}}, "so": {"_count": 2, "that": {"_count": 2}}, "nor": {"_count": 2, "liquid": {"_count": 2}}, "leak": {"_count": 1, "but": {"_count": 1}}}, "intruding": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "upon": {"_count": 1, "something": {"_count": 1}}}, "patronurrd": {"_count": 1, "Harry": {"_count": 1, "yelled": {"_count": 1}}}, "extending": {"_count": 5, "toward": {"_count": 1, "Harry": {"_count": 1}}, "a": {"_count": 2, "glittering": {"_count": 1}, "hand": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "our": {"_count": 1, "powers": {"_count": 1}}}, "patronuml": {"_count": 1, "Expecto": {"_count": 1, "pat": {"_count": 1}}}, "off~": {"_count": 1, "The": {"_count": 1, "sounds": {"_count": 1}}}, "shoelace": {"_count": 2, "so": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "racked": {"_count": 2, "his": {"_count": 2, "brains": {"_count": 2}}}, "judgment": {"_count": 10, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 2}}, "until": {"_count": 1, "after": {"_count": 1}}, "on": {"_count": 2, "you": {"_count": 1}, "Neville": {"_count": 1}}, "ever": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "EXPECTO": {"_count": 8, "PATRONUM": {"_count": 8, "Harry": {"_count": 2}, "EXPECTO": {"_count": 1}, "The": {"_count": 2}, "": {"_count": 1}, "he": {"_count": 1}, "An": {"_count": 1}}}, "PATRONUM": {"_count": 8, "Harry": {"_count": 2, "bellowed": {"_count": 1}, "yelled": {"_count": 1}}, "EXPECTO": {"_count": 1, "PATRONUM": {"_count": 1}}, "The": {"_count": 2, "screaming": {"_count": 1}, "silver": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "yelled": {"_count": 1}}, "An": {"_count": 1, "enormous": {"_count": 1}}}, "tuned": {"_count": 2, "radio": {"_count": 1, "softer": {"_count": 1}}, "in": {"_count": 1, "to": {"_count": 1}}}, "softer": {"_count": 5, "and": {"_count": 2, "louder": {"_count": 1}, "more": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "than": {"_count": 2, "her": {"_count": 1}, "he": {"_count": 1}}}, "hover": {"_count": 7, "between": {"_count": 1, "him": {"_count": 1}}, "like": {"_count": 2, "a": {"_count": 2}}, "across": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}, "halfheartedly": {"_count": 1, "over": {"_count": 1}}}, "extinguishing": {"_count": 4, "the": {"_count": 1, "lamps": {"_count": 1}}, "Voldemorts": {"_count": 1, "lamp": {"_count": 1}}, "everything": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "wandlight": {"_count": 1}}}, "rekindled": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "detour": {"_count": 4, "behind": {"_count": 1, "a": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "hey": {"_count": 1}}}, "plinth": {"_count": 12, "to": {"_count": 2, "finish": {"_count": 1}, "read": {"_count": 1}}, "a": {"_count": 1, "hundred": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "landed": {"_count": 2}, "tore": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "clearly": {"_count": 1, "struggling": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "explosive": {"_count": 1}}, "whose": {"_count": 1, "statue": {"_count": 1}}}, "replayed": {"_count": 1, "inside": {"_count": 1, "his": {"_count": 1}}}, "strain": {"_count": 14, "nearly": {"_count": 1, "as": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "lack": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "several": {"_count": 1, "times": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "not": {"_count": 1}, "pride": {"_count": 1}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}, "this": {"_count": 1, "would": {"_count": 1}}, "was": {"_count": 1, "starting": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}}, "immense": {"_count": 23, "workload": {"_count": 1, "finally": {"_count": 1}}, "disquiet": {"_count": 1, "Snapes": {"_count": 1}}, "difficulty": {"_count": 1, "tied": {"_count": 1}}, "gold": {"_count": 1, "walls": {"_count": 1}}, "vacuum": {"_count": 1, "cleaner": {"_count": 1}}, "relief": {"_count": 1, "Hermione": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}, "iron": {"_count": 1, "lock": {"_count": 1}}, "satisfaction": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "capacity": {"_count": 1, "to": {"_count": 1}}, "pile": {"_count": 1, "on": {"_count": 1}}, "chimney": {"_count": 1, "relic": {"_count": 1}}, "silvery": {"_count": 1, "fourlegged": {"_count": 1}}, "head": {"_count": 1, "start": {"_count": 1}}, "strength": {"_count": 1, "and": {"_count": 1}}, "pocket": {"_count": 1, "watch": {"_count": 1}}, "list": {"_count": 1, "of": {"_count": 1}}, "caution": {"_count": 1, "They": {"_count": 1}}, "number": {"_count": 1, "of": {"_count": 1}}, "chest": {"_count": 1, "beneath": {"_count": 1}}, "power": {"_count": 1, "": {"_count": 1}}}, "workload": {"_count": 4, "finally": {"_count": 1, "seemed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "mounting": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "rune": {"_count": 8, "dictionaries": {"_count": 1, "diagrams": {"_count": 1}}, "translation": {"_count": 2, "Hermione": {"_count": 1}, "": {"_count": 1}}, "dictionary": {"_count": 2, "": {"_count": 1}, "back": {"_count": 1}}, "stones": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dictionaries": {"_count": 1, "diagrams": {"_count": 1, "of": {"_count": 1}}}, "diagrams": {"_count": 3, "of": {"_count": 1, "Muggles": {"_count": 1}}, "what": {"_count": 1, "that": {"_count": 1}}, "showing": {"_count": 1, "an": {"_count": 1}}}, "file": {"_count": 8, "upon": {"_count": 1, "file": {"_count": 1}}, "of": {"_count": 1, "extensive": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "out": {"_count": 2, "of": {"_count": 2}}, "past": {"_count": 2, "her": {"_count": 1}, "Filch": {"_count": 1}}}, "extensive": {"_count": 4, "notes": {"_count": 1, "she": {"_count": 1}}, "list": {"_count": 1, "now": {"_count": 1}}, "than": {"_count": 1, "any": {"_count": 1}}, "brain": {"_count": 1, "damage": {"_count": 1}}}, "Undetectable": {"_count": 2, "Poisons": {"_count": 1, "for": {"_count": 1}}, "Extension": {"_count": 1, "Charm": {"_count": 1}}}, "Poisons": {"_count": 2, "for": {"_count": 1, "Snape": {"_count": 1}}, "and": {"_count": 1, "antidotes": {"_count": 1}}}, "Doing": {"_count": 2, "what": {"_count": 2, "": {"_count": 2}}}, "Vector": {"_count": 7, "that": {"_count": 1, "Arithmancy": {"_count": 1}}, "didnt": {"_count": 1, "give": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "Its": {"_count": 1, "not": {"_count": 1}}, "I": {"_count": 1, "love": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "about": {"_count": 1, "a": {"_count": 1}}}, "yesterdays": {"_count": 1, "lesson": {"_count": 1, "but": {"_count": 1}}}, "McMillan": {"_count": 1, "told": {"_count": 1, "me": {"_count": 1}}}, "fathom": {"_count": 2, "the": {"_count": 2, "mystery": {"_count": 1}, "way": {"_count": 1}}}, "shirty": {"_count": 1, "with": {"_count": 1, "me": {"_count": 1}}}, "priorities": {"_count": 3, "wrong": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Seemed": {"_count": 4, "to": {"_count": 3, "think": {"_count": 3}}, "right": {"_count": 1, "pleased": {"_count": 1}}}, "\u2018As": {"_count": 1, "long": {"_count": 1, "as": {"_count": 1}}}, "imperceptibly": {"_count": 3, "into": {"_count": 1, "February": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "then": {"_count": 1, "resumed": {"_count": 1}}}, "averted": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 2, "eyes": {"_count": 2}}, "from": {"_count": 3, "the": {"_count": 1}, "Voldemort": {"_count": 1}, "Rons": {"_count": 1}}, "his": {"_count": 1, "huge": {"_count": 1}}}, "Hurling": {"_count": 1, "Hex": {"_count": 1, "": {"_count": 1}}}, "Hex": {"_count": 6, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "soared": {"_count": 1, "over": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}}, "badgering": {"_count": 2, "me": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}}, "semitransparent": {"_count": 2, "cloud": {"_count": 1, "draining": {"_count": 1}}, "Nick": {"_count": 1, "was": {"_count": 1}}}, "achieved": {"_count": 23, "a": {"_count": 2, "great": {"_count": 1}, "good": {"_count": 1}}, "what": {"_count": 2, "hed": {"_count": 2}}, "the": {"_count": 4, "near": {"_count": 1}, "consistency": {"_count": 1}, "necessary": {"_count": 1}, "right": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "\u2018Outstanding": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "\u2018Exceeds": {"_count": 1, "Expectations": {"_count": 1}}, "high": {"_count": 2, "marks": {"_count": 2}}, "an": {"_count": 1, "Outstanding": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Astronomy": {"_count": 1, "A": {"_count": 1}}, "Outstanding": {"_count": 1, "at": {"_count": 1}}, "his": {"_count": 1, "hearts": {"_count": 1}}, "correct": {"_count": 1, "identification": {"_count": 1}}, "Apparition": {"_count": 1, "twice": {"_count": 1}}, "that": {"_count": 1, "with": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}}, "bay": {"_count": 8, "long": {"_count": 1, "enough": {"_count": 1}}, "windows": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "though": {"_count": 1, "never": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "the": {"_count": 1, "world": {"_count": 1}}, "held": {"_count": 1, "back": {"_count": 1}}}, "Butterbeer": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "eyebrow": {"_count": 9, "": {"_count": 3, ".": {"_count": 3}}, "where": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "skeptically": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "": {"_count": 1}}, "Like": {"_count": 1, "that": {"_count": 1}}}, "condition": {"_count": 16, "to": {"_count": 2, "tell": {"_count": 1}, "an": {"_count": 1}}, "that": {"_count": 2, "she": {"_count": 1}, "you": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "before": {"_count": 1, "the": {"_count": 1}}, "none": {"_count": 1, "too": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "quite": {"_count": 1, "easy": {"_count": 1}}, "very": {"_count": 1, "weak": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "they": {"_count": 1, "heaved": {"_count": 1}}, "of": {"_count": 1, "Ariana": {"_count": 1}}}, "lowers": {"_count": 1, "its": {"_count": 1, "hood": {"_count": 1}}}, "Kiss": {"_count": 8, "said": {"_count": 1, "Lupin": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "on": {"_count": 1, "an": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 2}}, "a": {"_count": 1, "wizard": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "whatever": {"_count": 1, "happened": {"_count": 1}}}, "destroy": {"_count": 41, "utterly": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 12, "": {"_count": 3}, "I": {"_count": 1}, "as": {"_count": 3}, "didnt": {"_count": 1}, "or": {"_count": 1}, "was": {"_count": 2}, "Harry": {"_count": 1}}, "them": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "the": {"_count": 9, "world": {"_count": 1}, "book": {"_count": 1}, "Horcrux": {"_count": 1}, "first": {"_count": 1}, "locket": {"_count": 2}, "only": {"_count": 1}, "one": {"_count": 1}, "Horcruxes": {"_count": 1}}, "your": {"_count": 4, "wand": {"_count": 3}, "portrait": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 2}}, "HeWhoMustNotBe": {"_count": 1, "Named": {"_count": 1}}, "You": {"_count": 1, "dont": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "Horcruxes": {"_count": 4, "as": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}}, "a": {"_count": 1, "Horcrux": {"_count": 1}}, "HeWhoMustNotBeNamed": {"_count": 1, "": {"_count": 1}}}, "betraying": {"_count": 3, "his": {"_count": 1, "mother": {"_count": 1}}, "Dumbledores": {"_count": 1, "trust": {"_count": 1}}, "a": {"_count": 1, "hint": {"_count": 1}}}, "eighth": {"_count": 1, "year": {"_count": 1, "in": {"_count": 1}}}, "Speechless": {"_count": 1, "Harry": {"_count": 1, "carried": {"_count": 1}}}, "Tomorrow": {"_count": 7, "": {"_count": 2, "?": {"_count": 2}}, "night": {"_count": 1, "Halloween": {"_count": 1}}, "morning": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "evening": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "tearfully": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "reaching": {"_count": 1, "up": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}}, "yeomen": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "loon": {"_count": 1, "in": {"_count": 1, "irons": {"_count": 1}}}, "irons": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "entry": {"_count": 7, "to": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "into": {"_count": 2, "Umbridges": {"_count": 1}, "the": {"_count": 1}}, "or": {"_count": 1, "some": {"_count": 1}}}, "chambers": {"_count": 3, "within": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Oddsbodikins": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "exclaiming": {"_count": 1, "over": {"_count": 1, "his": {"_count": 1}}}, "Ravenclawll": {"_count": 1, "have": {"_count": 1, "no": {"_count": 1}}}, "Sevens": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "dispersed": {"_count": 3, "and": {"_count": 2, "Harry": {"_count": 1}, "then": {"_count": 1}}, "now": {"_count": 1, "the": {"_count": 1}}}, "cluttered": {"_count": 12, "table": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "room": {"_count": 1}}, "open": {"_count": 1, "area": {"_count": 1}}, "office": {"_count": 1, "and": {"_count": 1}}, "yet": {"_count": 1, "nobody": {"_count": 1}}, "desk": {"_count": 2, "eyeing": {"_count": 1}, "where": {"_count": 1}}, "dressing": {"_count": 1, "table": {"_count": 1}}, "floor": {"_count": 1, "and": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "curved": {"_count": 1, "sideboard": {"_count": 1}}, "side": {"_count": 1, "tables": {"_count": 1}}}, "Electricity": {"_count": 1, "and": {"_count": 1, "at": {"_count": 1}}}, "translation": {"_count": 4, "Hermione": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "creates": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}}, "poring": {"_count": 14, "over": {"_count": 14, "": {"_count": 2}, "enormously": {"_count": 1}, "a": {"_count": 4}, "books": {"_count": 2}, "the": {"_count": 3}, "his": {"_count": 1}, "stacks": {"_count": 1}}}, "Closeup": {"_count": 1, "Harry": {"_count": 1, "saw": {"_count": 1}}}, "dictionary": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}}, "scandalized": {"_count": 9, "": {"_count": 5, ".": {"_count": 5}}, "tones": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "faces": {"_count": 1, "and": {"_count": 1}}, "looks": {"_count": 1, "from": {"_count": 1}}}, "complicatedlooking": {"_count": 1, "number": {"_count": 1, "chart": {"_count": 1}}}, "bedsheet": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "SCABBERS": {"_count": 3, "": {"_count": 3, "!": {"_count": 3}}}, "FLOOR": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "VERSUS": {"_count": 1, "RAVENCLAW": {"_count": 1, "It": {"_count": 1}}}, "suggesting": {"_count": 13, "that": {"_count": 6, "Ron": {"_count": 1}, "Harry": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 1}, "you": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "she": {"_count": 1, "might": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "horrible": {"_count": 1, "remedies": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "they": {"_count": 1, "take": {"_count": 1}}}, "maintained": {"_count": 8, "fiercely": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 2, "he": {"_count": 1}, "it": {"_count": 1}}, "the": {"_count": 1, "connection": {"_count": 1}}, "all": {"_count": 1, "Harrys": {"_count": 1}}, "a": {"_count": 3, "stony": {"_count": 1}, "precautionary": {"_count": 1}, "rigidly": {"_count": 1}}}, "prejudiced": {"_count": 4, "against": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "Cornelius": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Personally": {"_count": 15, "Harry": {"_count": 1, "was": {"_count": 1}}, "I": {"_count": 10, "try": {"_count": 1}, "would": {"_count": 1}, "think": {"_count": 3}, "am": {"_count": 2}, "thought": {"_count": 1}, "dont": {"_count": 1}, "find": {"_count": 1}}, "Involved": {"_count": 1, "": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "Im": {"_count": 1, "going": {"_count": 1}}}, "everythings": {"_count": 6, "my": {"_count": 1, "fault": {"_count": 1}}, "fine": {"_count": 2, "here": {"_count": 1}, "": {"_count": 1}}, "settled": {"_count": 1, "right": {"_count": 1}}, "lovely": {"_count": 1, "while": {"_count": 1}}, "okay": {"_count": 1, "said": {"_count": 1}}}, "snuff": {"_count": 3, "it": {"_count": 3, "quickly": {"_count": 1}, "youd": {"_count": 1}, "": {"_count": 1}}}, "tribute": {"_count": 5, "to": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "of": {"_count": 1, "blood": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "He": {"_count": 1, "saw": {"_count": 1}}}, "lastditch": {"_count": 1, "attempt": {"_count": 1, "to": {"_count": 1}}}, "overseeing": {"_count": 1, "Gryffindor": {"_count": 1, "practices": {"_count": 1}}}, "takeoff": {"_count": 1, "and": {"_count": 1, "gave": {"_count": 1}}}, "benefit": {"_count": 8, "of": {"_count": 3, "her": {"_count": 1}, "all": {"_count": 1}, "those": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "or": {"_count": 1, "mine": {"_count": 1}}, "in": {"_count": 1, "return": {"_count": 1}}, "generations": {"_count": 1, "to": {"_count": 1}}, "everyone": {"_count": 1, "in": {"_count": 1}}}, "updated": {"_count": 2, "the": {"_count": 1, "handle": {"_count": 1}}, "them": {"_count": 1, "leaving": {"_count": 1}}}, "slimmer": {"_count": 1, "than": {"_count": 1, "the": {"_count": 1}}}, "Arrows": {"_count": 1, "a": {"_count": 1, "pity": {"_count": 1}}}, "tomorrows": {"_count": 2, "match": {"_count": 1, "": {"_count": 1}}, "weather": {"_count": 1, "you": {"_count": 1}}}, "Cho": {"_count": 193, "Chang": {"_count": 21, "": {"_count": 6}, "had": {"_count": 3}, "was": {"_count": 5}, "a": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 2}, "holding": {"_count": 1}, "walked": {"_count": 1}, "who": {"_count": 1}}, "fell": {"_count": 1, "behind": {"_count": 1}}, "saw": {"_count": 1, "what": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 1, "out": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "beamed": {"_count": 1}}, "following": {"_count": 1, "him": {"_count": 1}}, "thinking": {"_count": 1, "hed": {"_count": 1}}, "": {"_count": 29, ".": {"_count": 22}, "?": {"_count": 5}, "!": {"_count": 2}}, "pointing": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Ravenclaw": {"_count": 1}}, "happened": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 12, "a": {"_count": 1}, "she": {"_count": 1}, "Cedric": {"_count": 2}, "Cho": {"_count": 1}, "one": {"_count": 1}, "you": {"_count": 1}, "several": {"_count": 1}, "her": {"_count": 1}, "anxiety": {"_count": 1}, "Harrys": {"_count": 1}, "then": {"_count": 1}}, "was": {"_count": 8, "a": {"_count": 1}, "almost": {"_count": 1}, "halfway": {"_count": 1}, "looking": {"_count": 1}, "sitting": {"_count": 1}, "still": {"_count": 1}, "accusing": {"_count": 1}, "passing": {"_count": 1}}, "asked": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 3, "the": {"_count": 2}, "discover": {"_count": 1}}, "that": {"_count": 2, "day": {"_count": 1}, "he": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "ages": {"_count": 1}}, "started": {"_count": 1, "doing": {"_count": 1}}, "stood": {"_count": 1, "there": {"_count": 1}}, "said": {"_count": 2, "Well": {"_count": 1}, "Im": {"_count": 1}}, "still": {"_count": 1, "very": {"_count": 1}}, "were": {"_count": 2, "close": {"_count": 1}, "now": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "would": {"_count": 3, "like": {"_count": 1}, "expect": {"_count": 1}, "soon": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "free": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "give": {"_count": 1, "Cedric": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "Luna": {"_count": 1, "Lovegood": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "coolly": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "had": {"_count": 7, "selected": {"_count": 1}, "just": {"_count": 3}, "little": {"_count": 1}, "said": {"_count": 1}, "got": {"_count": 1}}, "rather": {"_count": 2, "coolly": {"_count": 1}, "wildly": {"_count": 1}}, "looked": {"_count": 3, "up": {"_count": 1}, "at": {"_count": 1}, "back": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "glared": {"_count": 1, "right": {"_count": 1}}, "finally": {"_count": 1, "fixing": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "Harrys": {"_count": 1, "eyes": {"_count": 1}}, "nor": {"_count": 1, "with": {"_count": 1}}, "made": {"_count": 2, "rather": {"_count": 1}, "a": {"_count": 1}}, "praising": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "told": {"_count": 1, "Harry": {"_count": 1}}, "muttered": {"_count": 1, "": {"_count": 1}}, "drawing": {"_count": 1, "herself": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "laughing": {"_count": 1, "and": {"_count": 1}}, "standing": {"_count": 2, "in": {"_count": 1}, "there": {"_count": 1}}, "sounding": {"_count": 1, "tearful": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "quietly": {"_count": 1, "pointing": {"_count": 1}}, "spends": {"_count": 1, "half": {"_count": 1}}, "Hogsmeade": {"_count": 1, "perhaps": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 2}}, "shouted": {"_count": 1, "Cedric": {"_count": 1}}, "his": {"_count": 1, "Firebolt": {"_count": 1}}, "drew": {"_count": 1, "nearer": {"_count": 1}}, "since": {"_count": 1, "they": {"_count": 1}}, "might": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "feeling": {"_count": 1, "very": {"_count": 1}}, "slightly": {"_count": 2, "breathlessly": {"_count": 1}, "flushed": {"_count": 1}}, "smiling": {"_count": 1, "reminiscently": {"_count": 1}}, "leaving": {"_count": 1, "an": {"_count": 1}}, "shrugging": {"_count": 1, "": {"_count": 1}}, "approached": {"_count": 1, "and": {"_count": 1}}, "passed": {"_count": 1, "": {"_count": 1}}, "tentatively": {"_count": 1, "as": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "indicating": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "stared": {"_count": 1}}, "mentioned": {"_count": 1, "Umbridge": {"_count": 1}}, "raised": {"_count": 1, "her": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "took": {"_count": 1, "hers": {"_count": 1}}, "crying": {"_count": 1, "": {"_count": 1}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 2, "wasnt": {"_count": 1}, "want": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "catching": {"_count": 1, "up": {"_count": 1}}, "brightly": {"_count": 1, "watching": {"_count": 1}}, "came": {"_count": 1, "hurrying": {"_count": 1}}, "hurriedly": {"_count": 1, "": {"_count": 1}}, "pleadingly": {"_count": 1, "": {"_count": 1}}, "fiercely": {"_count": 1, "": {"_count": 1}}, "flushed": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 1, "Marietta": {"_count": 1}}, "earlier": {"_count": 1, "said": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "walked": {"_count": 1, "out": {"_count": 1}}, "blushed": {"_count": 1, "and": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 1, "Sort": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "spoke": {"_count": 1, "again": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}}, "Chang": {"_count": 24, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 2}}, "had": {"_count": 3, "made": {"_count": 1}, "been": {"_count": 1}, "just": {"_count": 1}}, "was": {"_count": 5, "the": {"_count": 1}, "tailing": {"_count": 1}, "chatting": {"_count": 1}, "insufficient": {"_count": 1}, "drawing": {"_count": 1}}, "a": {"_count": 1, "very": {"_count": 1}}, "the": {"_count": 1, "Seeker": {"_count": 1}}, "and": {"_count": 2, "what": {"_count": 1}, "her": {"_count": 1}}, "holding": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "walked": {"_count": 1, "into": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "who": {"_count": 1, "darted": {"_count": 1}}}, "displeasure": {"_count": 9, "that": {"_count": 2, "Cho": {"_count": 1}, "there": {"_count": 1}}, "of": {"_count": 1, "their": {"_count": 1}}, "Percy": {"_count": 1, "now": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 1, "my": {"_count": 1}}, "Harrys": {"_count": 1, "sixteenth": {"_count": 1}}}, "rides": {"_count": 1, "a": {"_count": 1, "Comet": {"_count": 1}}}, "fervent": {"_count": 3, "admiration": {"_count": 1, "then": {"_count": 1}}, "desire": {"_count": 1, "for": {"_count": 1}}, "admirers": {"_count": 1, "": {"_count": 1}}}, "obey": {"_count": 16, "his": {"_count": 1, "thoughts": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 2}}, "Harry": {"_count": 1, "jumped": {"_count": 1}}, "anyone": {"_count": 1, "he": {"_count": 1}}, "him": {"_count": 1, "even": {"_count": 1}}, "any": {"_count": 1, "command": {"_count": 1}}, "me": {"_count": 1, "Harry": {"_count": 1}}, "orders": {"_count": 1, "Kreacher": {"_count": 1}}, "the": {"_count": 1, "summons": {"_count": 1}}, "Voldemorts": {"_count": 1, "command": {"_count": 1}}}, "andgray": {"_count": 1, "blur": {"_count": 1, "Harry": {"_count": 1}}}, "controlled": {"_count": 16, "dive": {"_count": 1, "brushing": {"_count": 1}}, "by": {"_count": 5, "the": {"_count": 2}, "very": {"_count": 1}, "Lord": {"_count": 1}, "Riddle": {"_count": 1}}, "panic": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "examination": {"_count": 1, "conditions": {"_count": 1}}, "Quirrell": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "or": {"_count": 1, "regulated": {"_count": 1}}, "the": {"_count": 1, "school": {"_count": 1}}, "euphoria": {"_count": 1, "that": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}}, "dart": {"_count": 8, "out": {"_count": 2, "from": {"_count": 1}, "of": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "upward": {"_count": 1, "with": {"_count": 1}}, "sideways": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "back": {"_count": 1, "regularly": {"_count": 1}}}, "Bells": {"_count": 2, "knee": {"_count": 1, "looped": {"_count": 1}}, "hit": {"_count": 1, "by": {"_count": 1}}}, "inspired": {"_count": 4, "by": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "a": {"_count": 1, "number": {"_count": 1}}}, "faultlessly": {"_count": 1, "and": {"_count": 1, "by": {"_count": 1}}}, "criticism": {"_count": 5, "to": {"_count": 1, "make": {"_count": 1}}, "simply": {"_count": 1, "bounces": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "Ginny": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Dumbledored": {"_count": 5, "go": {"_count": 2, "ballistic": {"_count": 1}, "mad": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "bewitched": {"_count": 1, "this": {"_count": 1}}}, "ballistic": {"_count": 2, "said": {"_count": 1, "Fred": {"_count": 1}}, "she": {"_count": 1, "says": {"_count": 1}}}, "confidently": {"_count": 13, "": {"_count": 5, ".": {"_count": 5}}, "on": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "like": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}, "stepping": {"_count": 1, "out": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "leading": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "expect": {"_count": 1, "you": {"_count": 1}}}, "shouldered": {"_count": 7, "the": {"_count": 1, "Firebolt": {"_count": 1}}, "a": {"_count": 1, "grown": {"_count": 1}}, "their": {"_count": 2, "brooms": {"_count": 2}}, "his": {"_count": 1, "crossbow": {"_count": 1}}, "open": {"_count": 1, "his": {"_count": 1}}, "muttering": {"_count": 1, "under": {"_count": 1}}}, "superbly": {"_count": 2, "smooth": {"_count": 1, "action": {"_count": 1}}, "disdainful": {"_count": 1, "": {"_count": 1}}}, "phenomenal": {"_count": 1, "acceleration": {"_count": 1, "and": {"_count": 1}}}, "budding": {"_count": 2, "leaves": {"_count": 1, "was": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}}, "stooped": {"_count": 22, "down": {"_count": 8, "and": {"_count": 5}, "seized": {"_count": 1}, "to": {"_count": 1}, "bestowed": {"_count": 1}}, "figure": {"_count": 1, "in": {"_count": 1}}, "timidlooking": {"_count": 1, "old": {"_count": 1}}, "wizard": {"_count": 1, "with": {"_count": 1}}, "when": {"_count": 1, "standing": {"_count": 1}}, "witch": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "seized": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 4, "kiss": {"_count": 1}, "pick": {"_count": 2}, "seize": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "pretending": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "toothless": {"_count": 1}}}, "chucking": {"_count": 5, "the": {"_count": 2, "stone": {"_count": 1}, "wrong": {"_count": 1}}, "chairs": {"_count": 1, "across": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "goat": {"_count": 1, "dung": {"_count": 1}}}, "seeped": {"_count": 3, "through": {"_count": 2, "him": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 1, "beneath": {"_count": 1}}}, "welllit": {"_count": 1, "entrance": {"_count": 1, "hall": {"_count": 1}}}, "acquired": {"_count": 5, "such": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 2, "few": {"_count": 1}, "weathered": {"_count": 1}}, "it": {"_count": 2, "very": {"_count": 1}, "in": {"_count": 1}}}, "Penny": {"_count": 2, "no": {"_count": 1, "sabotage": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "sabotage": {"_count": 4, "": {"_count": 1, "!": {"_count": 1}}, "the": {"_count": 1, "Gryffindor": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "our": {"_count": 1, "resistance": {"_count": 1}}}, "outcome": {"_count": 5, "of": {"_count": 2, "the": {"_count": 1}, "poor": {"_count": 1}}, "for": {"_count": 1, "they": {"_count": 1}}, "would": {"_count": 1, "cause": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "parachute": {"_count": 1, "in": {"_count": 1, "case": {"_count": 1}}}, "attach": {"_count": 6, "an": {"_count": 1, "extra": {"_count": 1}}, "it": {"_count": 2, "to": {"_count": 2}}, "the": {"_count": 1, "parcel": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "yourself": {"_count": 1, "to": {"_count": 1}}}, "visibility": {"_count": 5, "problems": {"_count": 1, "this": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "together": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}}, "captains": {"_count": 2, "and": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "Holyhead": {"_count": 1}}}, "region": {"_count": 3, "of": {"_count": 3, "his": {"_count": 3}}}, "Davies": {"_count": 23, "shake": {"_count": 1, "hands": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "stationed": {"_count": 1, "themselves": {"_count": 1}}, "looked": {"_count": 2, "so": {"_count": 1}, "very": {"_count": 1}}, "was": {"_count": 3, "watching": {"_count": 1}, "too": {"_count": 1}, "setting": {"_count": 1}}, "standing": {"_count": 1, "halfconcealed": {"_count": 1}}, "had": {"_count": 1, "disappeared": {"_count": 1}}, "the": {"_count": 1, "Ravenclaw": {"_count": 1}}, "and": {"_count": 2, "his": {"_count": 2}}, "kissing": {"_count": 1, "his": {"_count": 1}}, "why": {"_count": 1, "had": {"_count": 1}}, "girlfriend": {"_count": 1, "had": {"_count": 1}}, "asked": {"_count": 1, "her": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "takes": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 1, "giggling": {"_count": 1}}}, "national": {"_count": 6, "teams": {"_count": 1, "at": {"_count": 1}}, "anthems": {"_count": 2, "as": {"_count": 1}, "to": {"_count": 1}}, "anthem": {"_count": 2, "blared": {"_count": 1}, "": {"_count": 1}}, "disgrace": {"_count": 1, "": {"_count": 1}}}, "incidentally": {"_count": 8, "has": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "who": {"_count": 1, "fought": {"_count": 1}}, "said": {"_count": 2, "Snape": {"_count": 1}, "Hermione": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "bedbugs": {"_count": 1, "dear": {"_count": 1}}}, "builtin": {"_count": 1, "autobrake": {"_count": 1, "and": {"_count": 1}}}, "autobrake": {"_count": 1, "and": {"_count": 1, "Jordan": {"_count": 1}}}, "undoubtedly": {"_count": 30, "a": {"_count": 1, "very": {"_count": 1}}, "been": {"_count": 1, "foolish": {"_count": 1}}, "won": {"_count": 1, "betting": {"_count": 1}}, "is": {"_count": 1, "Miss": {"_count": 1}}, "stimulated": {"_count": 1, "by": {"_count": 1}}, "still": {"_count": 1, "stood": {"_count": 1}}, "be": {"_count": 2, "Moody": {"_count": 1}, "our": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 2, "Ministry": {"_count": 1}, "controversial": {"_count": 1}}, "are": {"_count": 1, "I": {"_count": 1}}, "malevolent": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "Voldemorts": {"_count": 1}}, "fine": {"_count": 1, "Gesture": {"_count": 1}}, "slower": {"_count": 1, "than": {"_count": 1}}, "try": {"_count": 1, "to": {"_count": 1}}, "Little": {"_count": 1, "Hangleton": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "visit": {"_count": 1}}, "felt": {"_count": 1, "no": {"_count": 1}}, "from": {"_count": 1, "Lily": {"_count": 1}}, "about": {"_count": 1, "what": {"_count": 1}}, "played": {"_count": 1, "its": {"_count": 1}}, "have": {"_count": 1, "treated": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "fascinate": {"_count": 1, "her": {"_count": 1}}, "something": {"_count": 1, "odd": {"_count": 1}}, "framing": {"_count": 1, "the": {"_count": 1}}, "last": {"_count": 1, "hours": {"_count": 1}}}, "flier": {"_count": 4, "she": {"_count": 1, "kept": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "from": {"_count": 1, "what": {"_count": 1}}, "said": {"_count": 1, "Kingsley": {"_count": 1}}}, "barriers": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "now": {"_count": 1}}, "but": {"_count": 1, "none": {"_count": 1}}}, "veered": {"_count": 2, "off": {"_count": 1, "course": {"_count": 1}}, "left": {"_count": 1, "toward": {"_count": 1}}}, "crucial": {"_count": 14, "seconds": {"_count": 1, "the": {"_count": 1}}, "lessons": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 1, "Ron": {"_count": 1}}, "to": {"_count": 2, "Legilimency": {"_count": 1}, "success": {"_count": 1}}, "juncture": {"_count": 1, "": {"_count": 1}}, "piece": {"_count": 1, "of": {"_count": 1}}, "memory": {"_count": 2, "of": {"_count": 1}, "you": {"_count": 1}}, "parts": {"_count": 1, "of": {"_count": 1}}, "match": {"_count": 1, "had": {"_count": 1}}, "information": {"_count": 1, "in": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "must": {"_count": 1}}}, "vented": {"_count": 2, "his": {"_count": 2, "feelings": {"_count": 2}}}, "offending": {"_count": 3, "Beater": {"_count": 1, "who": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "sentences": {"_count": 1, "": {"_count": 1}}}, "eighty": {"_count": 6, "points": {"_count": 3, "to": {"_count": 2}, "Mr": {"_count": 1}}, "times": {"_count": 1, "before": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "left": {"_count": 1, "an": {"_count": 1}}}, "Changs": {"_count": 2, "Comet": {"_count": 1, "is": {"_count": 1}}, "face": {"_count": 1, "when": {"_count": 1}}}, "precisionbalance": {"_count": 1, "is": {"_count": 1, "really": {"_count": 1}}}, "noticeable": {"_count": 4, "in": {"_count": 1, "these": {"_count": 1}}, "person": {"_count": 1, "Harry": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "difference": {"_count": 1, "in": {"_count": 1}}}, "BEING": {"_count": 1, "PAID": {"_count": 1, "TO": {"_count": 1}}}, "PAID": {"_count": 1, "TO": {"_count": 1, "ADVERTISE": {"_count": 1}}}, "ADVERTISE": {"_count": 1, "FIREBOLTS": {"_count": 1, "": {"_count": 1}}}, "FIREBOLTS": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "COMMENTARY": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "scanning": {"_count": 19, "the": {"_count": 10, "field": {"_count": 1}, "heavens": {"_count": 1}, "bottom": {"_count": 1}, "column": {"_count": 1}, "mess": {"_count": 1}, "room": {"_count": 1}, "inside": {"_count": 1}, "skies": {"_count": 1}, "short": {"_count": 1}, "Gryffindor": {"_count": 1}}, "it": {"_count": 3, "closely": {"_count": 1}, "quickly": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 1, "long": {"_count": 1}}, "its": {"_count": 1, "columns": {"_count": 1}}, "his": {"_count": 1, "notes": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "an": {"_count": 1, "immense": {"_count": 1}}}, "accelerated": {"_count": 4, "eyes": {"_count": 1, "fixed": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}, "rolling": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "wind": {"_count": 1}}}, "TIME": {"_count": 2, "TO": {"_count": 1, "BE": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "BE": {"_count": 3, "A": {"_count": 1, "GENTLEMAN": {"_count": 1}}, "SPOKEN": {"_count": 1, "TO": {"_count": 1}}, "WORRYING": {"_count": 1, "ABOUT": {"_count": 1}}}, "GENTLEMAN": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "collision": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "came": {"_count": 1, "": {"_count": 1}}}, "KNOCK": {"_count": 1, "HER": {"_count": 1, "OFF": {"_count": 1}}}, "BROOM": {"_count": 1, "IF": {"_count": 1, "YOU": {"_count": 1}}}, "gaining": {"_count": 8, "on": {"_count": 2, "the": {"_count": 1}, "Malfoy": {"_count": 1}}, "power": {"_count": 1, "steadily": {"_count": 1}}, "access": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "energy": {"_count": 1}, "strength": {"_count": 1}}, "his": {"_count": 1, "seat": {"_count": 1}}, "their": {"_count": 1, "trust": {"_count": 1}}}, "Distracted": {"_count": 2, "Harry": {"_count": 1, "looked": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "Plunging": {"_count": 1, "a": {"_count": 1, "hand": {"_count": 1}}}, "silverwhite": {"_count": 2, "something": {"_count": 1, "enormous": {"_count": 1}}, "shining": {"_count": 1, "brightly": {"_count": 1}}}, "disarray": {"_count": 3, "the": {"_count": 1, "team": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "they": {"_count": 1, "dont": {"_count": 1}}}, "gaggle": {"_count": 7, "of": {"_count": 7, "Gryffindor": {"_count": 1}, "young": {"_count": 1}, "shoppers": {"_count": 1}, "delighted": {"_count": 1}, "girls": {"_count": 1}, "first": {"_count": 1}, "middleaged": {"_count": 1}}}, "yanking": {"_count": 2, "Harrys": {"_count": 1, "arm": {"_count": 1}}, "your": {"_count": 1, "wand": {"_count": 1}}}, "milling": {"_count": 6, "Gryffindors": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 3, "a": {"_count": 1}, "it": {"_count": 1}, "waiting": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "crowds": {"_count": 1, "outside": {"_count": 1}}}, "utmost": {"_count": 15, "fury": {"_count": 1, "on": {"_count": 1}}, "terror": {"_count": 1, "on": {"_count": 1}}, "revulsion": {"_count": 1, "": {"_count": 1}}, "severity": {"_count": 1, "and": {"_count": 1}}, "loathing": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "keep": {"_count": 1}, "have": {"_count": 1}}, "attentiveness": {"_count": 1, "": {"_count": 1}}, "satisfaction": {"_count": 1, "Umbridge": {"_count": 1}}, "contempt": {"_count": 1, "yet": {"_count": 1}}, "regard": {"_count": 1, "for": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "importance": {"_count": 1, "": {"_count": 1}}, "horror": {"_count": 1, "": {"_count": 1}}, "edge": {"_count": 1, "of": {"_count": 1}}}, "cowardly": {"_count": 10, "attempt": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "scummy": {"_count": 1, "thing": {"_count": 1}}, "to": {"_count": 1, "return": {"_count": 1}}, "flight": {"_count": 1, "you": {"_count": 1}}, "Coward": {"_count": 1, "did": {"_count": 1}}, "little": {"_count": 1, "squit": {"_count": 1}}, "servant": {"_count": 1, "had": {"_count": 1}}, "You": {"_count": 1, "would": {"_count": 1}}, "bunch": {"_count": 1, "o": {"_count": 1}}}, "extricate": {"_count": 3, "himself": {"_count": 1, "from": {"_count": 1}}, "his": {"_count": 1, "worm": {"_count": 1}}, "Hermione": {"_count": 1, "on": {"_count": 1}}}, "Party": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}}, "armfuls": {"_count": 3, "of": {"_count": 3, "bottles": {"_count": 1}, "silver": {"_count": 1}, "Venomous": {"_count": 1}}}, "Toads": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "festivities": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "but": {"_count": 1}}}, "entitled": {"_count": 9, "Home": {"_count": 1, "Life": {"_count": 1}}, "Harry": {"_count": 1, "Potters": {"_count": 1}}, "Natures": {"_count": 1, "Nobility": {"_count": 1}}, "The": {"_count": 3, "Quibbler": {"_count": 1}, "Case": {"_count": 1}, "Greater": {"_count": 1}}, "to": {"_count": 2, "walk": {"_count": 1}, "buy": {"_count": 1}}, "Practical": {"_count": 1, "Defensive": {"_count": 1}}}, "Home": {"_count": 2, "Life": {"_count": 1, "and": {"_count": 1}}, "school": {"_count": 1, "and": {"_count": 1}}}, "Social": {"_count": 1, "Habits": {"_count": 1, "of": {"_count": 1}}}, "Habits": {"_count": 1, "of": {"_count": 1, "British": {"_count": 1}}}, "British": {"_count": 5, "Muggles": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Irish": {"_count": 1}}, "Seats": {"_count": 1, "": {"_count": 1}}, "overcook": {"_count": 1, "their": {"_count": 1}}, "Youth": {"_count": 1, "Representative": {"_count": 1}}}, "juggling": {"_count": 3, "butterbeer": {"_count": 1, "bottles": {"_count": 1}}, "several": {"_count": 1, "inkwells": {"_count": 1}}, "empty": {"_count": 1, "butterbeer": {"_count": 1}}}, "bury": {"_count": 7, "the": {"_count": 1, "hatchet": {"_count": 1}}, "Aragog": {"_count": 1, "without": {"_count": 1}}, "him": {"_count": 1, "here": {"_count": 1}}, "when": {"_count": 1, "Sirius": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "this": {"_count": 1, "diadem": {"_count": 1}}, "my": {"_count": 1, "sister": {"_count": 1}}}, "hatchet": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Flies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Anxious": {"_count": 1, "to": {"_count": 1, "catch": {"_count": 1}}}, "quarry": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "who": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 1, "leaving": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}}, "aaRRRRRRRRRRRRGGGGGHHHHH": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "NOOOOOOOOOOOOOOOOO": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Disoriented": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "raised": {"_count": 1}}}, "Finnigans": {"_count": 1, "voice": {"_count": 1, "from": {"_count": 1}}}, "Slashed": {"_count": 1, "the": {"_count": 1, "curtains": {"_count": 1}}}, "Woke": {"_count": 2, "me": {"_count": 2, "up": {"_count": 2}}}, "dreaming": {"_count": 19, "Ron": {"_count": 2, "": {"_count": 2}}, "about": {"_count": 8, "before": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 2}, "it": {"_count": 2}, "walking": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "of": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "scheming": {"_count": 1}}, "a": {"_count": 1, "horrible": {"_count": 1}}}, "debris": {"_count": 9, "from": {"_count": 2, "the": {"_count": 2}}, "of": {"_count": 2, "Siriuss": {"_count": 1}, "metal": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "glittering": {"_count": 1}}, "to": {"_count": 1, "where": {"_count": 1}}, "rained": {"_count": 1, "upon": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "reappearing": {"_count": 11, "": {"_count": 1, ".": {"_count": 1}}, "almost": {"_count": 1, "instantly": {"_count": 1}}, "seconds": {"_count": 1, "later": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "suddenly": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "moments": {"_count": 1, "later": {"_count": 1}}}, "enoughs": {"_count": 1, "enough": {"_count": 1, "": {"_count": 1}}}, "authorize": {"_count": 1, "this": {"_count": 1, "Professor": {"_count": 1}}}, "WASNT": {"_count": 1, "A": {"_count": 1, "NIGHTMARE": {"_count": 1}}}, "NIGHTMARE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "PROFESSOR": {"_count": 4, "I": {"_count": 1, "WOKE": {"_count": 1}}, "TRELAWNEYS": {"_count": 1, "PREDICTION": {"_count": 1}}, "UMBRIDGE": {"_count": 1, "Seamus": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "WOKE": {"_count": 1, "UP": {"_count": 1, "AND": {"_count": 1}}}, "SIRIUS": {"_count": 13, "BLACK": {"_count": 3, "WAS": {"_count": 1}, "QUICK": {"_count": 1}, "Villain": {"_count": 1}}, "Black": {"_count": 1, "As": {"_count": 1}}, "": {"_count": 7, "!": {"_count": 6}, ".": {"_count": 1}}, "LIKE": {"_count": 1, "THAT": {"_count": 1}}, "DESERVED": {"_count": 1, "WHAT": {"_count": 1}}}, "STANDING": {"_count": 2, "OVER": {"_count": 1, "ME": {"_count": 1}}, "THERE": {"_count": 1, "YOU": {"_count": 1}}}, "OVER": {"_count": 1, "ME": {"_count": 1, "HOLDING": {"_count": 1}}}, "HOLDING": {"_count": 1, "A": {"_count": 1, "KNIFE": {"_count": 1}}}, "KNIFE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Cadogans": {"_count": 1, "picture": {"_count": 1, "": {"_count": 1}}}, "Glaring": {"_count": 1, "suspiciously": {"_count": 1, "at": {"_count": 1}}}, "abysmally": {"_count": 1, "foolish": {"_count": 1, "person": {"_count": 1}}}, "squeaks": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "Harry": {"_count": 1, "couldnt": {"_count": 1}}, "of": {"_count": 1, "fear": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}}, "fluffyslippered": {"_count": 1, "toes": {"_count": 1, "raised": {"_count": 1}}}, "SNAPES": {"_count": 2, "GRUDGE": {"_count": 1, "No": {"_count": 1}}, "WORST": {"_count": 1, "MEMORY": {"_count": 1}}}, "GRUDGE": {"_count": 1, "No": {"_count": 1, "one": {"_count": 1}}}, "Throughout": {"_count": 1, "the": {"_count": 1, "day": {"_count": 1}}}, "expertly": {"_count": 1, "restored": {"_count": 1, "but": {"_count": 1}}}, "surly": {"_count": 8, "security": {"_count": 1, "trolls": {"_count": 1}}, "face": {"_count": 2, "with": {"_count": 1}, "darkened": {"_count": 1}}, "look": {"_count": 1, "over": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "with": {"_count": 1, "Hermione": {"_count": 1}}}, "unguarded": {"_count": 1, "and": {"_count": 1, "unblocked": {"_count": 1}}}, "unblocked": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "him": {"_count": 1, "somehow": {"_count": 1}}, "window": {"_count": 1, "revealed": {"_count": 1}}}, "Honey": {"_count": 1, "dukes": {"_count": 1, "said": {"_count": 1}}}, "dukes": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "dismissively": {"_count": 15, "Wedve": {"_count": 1, "heard": {"_count": 1}}, "but": {"_count": 1, "how": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "looking": {"_count": 1, "around": {"_count": 1}}, "All": {"_count": 1, "Dumbledore": {"_count": 1}}, "Hes": {"_count": 1, "completely": {"_count": 1}}, "no": {"_count": 1, "its": {"_count": 1}}, "They": {"_count": 1, "wouldnt": {"_count": 1}}, "from": {"_count": 1, "under": {"_count": 1}}, "over": {"_count": 1, "in": {"_count": 1}}}, "Wedve": {"_count": 2, "heard": {"_count": 1, "if": {"_count": 1}}, "liked": {"_count": 1, "tove": {"_count": 1}}}, "wealth": {"_count": 1, "of": {"_count": 1, "detail": {"_count": 1}}}, "secondyear": {"_count": 2, "girls": {"_count": 1, "who": {"_count": 1}}, "girl": {"_count": 1, "assuring": {"_count": 1}}}, "chilling": {"_count": 5, "tale": {"_count": 1, "departed": {"_count": 1}}, "his": {"_count": 1, "blood": {"_count": 1}}, "him": {"_count": 1, "bringing": {"_count": 1}}, "sound": {"_count": 1, "": {"_count": 1}}, "mist": {"_count": 1, "then": {"_count": 1}}}, "departed": {"_count": 24, "": {"_count": 7, ".": {"_count": 7}}, "at": {"_count": 2, "high": {"_count": 1}, "once": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "Crabbe": {"_count": 1, "and": {"_count": 1}}, "And": {"_count": 1, "though": {"_count": 1}}, "for": {"_count": 5, "the": {"_count": 3}, "her": {"_count": 1}, "bed": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}, "soul": {"_count": 2, "left": {"_count": 1}, "": {"_count": 1}}, "their": {"_count": 1, "campsite": {"_count": 1}}, "this": {"_count": 1, "life": {"_count": 1}}, "statue": {"_count": 1, "and": {"_count": 1}}}, "silenced": {"_count": 5, "Ron": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "moment": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "unarmed": {"_count": 2, "boys": {"_count": 1, "four": {"_count": 1}}, "and": {"_count": 1, "unprotected": {"_count": 1}}}, "Hedve": {"_count": 2, "had": {"_count": 1, "to": {"_count": 1}}, "bin": {"_count": 1, "touched": {"_count": 1}}}, "banned": {"_count": 22, "him": {"_count": 2, "from": {"_count": 1}, "": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "from": {"_count": 6, "the": {"_count": 4}, "giving": {"_count": 1}, "going": {"_count": 1}}, "due": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}, "it": {"_count": 1, "from": {"_count": 1}}, "hand": {"_count": 1, "it": {"_count": 1}}, "substance": {"_count": 1, "in": {"_count": 1}}, "anything": {"_count": 1, "bought": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "subject": {"_count": 1, "at": {"_count": 1}}, "or": {"_count": 1, "graffitied": {"_count": 1}}, "experiments": {"_count": 1, "the": {"_count": 1}}}, "nipping": {"_count": 1, "him": {"_count": 1, "sharply": {"_count": 1}}}, "ENTRANCE": {"_count": 1, "HALL": {"_count": 1, "YOURE": {"_count": 1}}}, "HALL": {"_count": 1, "YOURE": {"_count": 1, "NOT": {"_count": 1}}}, "Cheers": {"_count": 10, "Hagrid": {"_count": 2, "He": {"_count": 1}, "said": {"_count": 1}}, "said": {"_count": 5, "George": {"_count": 1}, "Moody": {"_count": 1}, "Ron": {"_count": 2}, "Fred": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 2}}, "whispered": {"_count": 1, "George": {"_count": 1}}}, "Spose": {"_count": 3, "you": {"_count": 1, "want": {"_count": 1}}, "not": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "Harry": {"_count": 1}}}, "Averting": {"_count": 1, "his": {"_count": 1, "eyes": {"_count": 1}}}, "yellowandorange": {"_count": 2, "tie": {"_count": 2, "hanging": {"_count": 1}, "": {"_count": 1}}}, "mell": {"_count": 1, "be": {"_count": 1, "goin": {"_count": 1}}}, "pang": {"_count": 8, "of": {"_count": 2, "guilt": {"_count": 1}, "Hedwig": {"_count": 1}}, "to": {"_count": 1, "imagine": {"_count": 1}}, "Harry": {"_count": 1, "remembered": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "for": {"_count": 1, "Hedwig": {"_count": 1}}}, "trial": {"_count": 14, "was": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "and": {"_count": 2, "by": {"_count": 1}, "proclaimed": {"_count": 1}}, "you": {"_count": 1, "found": {"_count": 1}}, "she": {"_count": 1, "knew": {"_count": 1}}, "to": {"_count": 1, "deal": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "a": {"_count": 1, "new": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "buns": {"_count": 1, "but": {"_count": 1, "they": {"_count": 1}}}, "uncharacteristically": {"_count": 5, "serious": {"_count": 1, "": {"_count": 1}}, "ugly": {"_count": 1, "look": {"_count": 1}}, "neither": {"_count": 1, "of": {"_count": 1}}, "brisk": {"_count": 1, "": {"_count": 1}}, "harsh": {"_count": 1, "": {"_count": 1}}}, "Chris": {"_count": 1, "mas": {"_count": 1, "": {"_count": 1}}}, "mas": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "weren": {"_count": 5, "talking": {"_count": 1, "to": {"_count": 1}}, "allowed": {"_count": 1, "inside": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "they": {"_count": 1, "": {"_count": 1}}, "goin": {"_count": 1, "in": {"_count": 1}}}, "doggedly": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "determined": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}}, "Goin": {"_count": 1, "through": {"_count": 1, "a": {"_count": 1}}}, "Bitten": {"_count": 2, "off": {"_count": 1, "moren": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}}, "blamin": {"_count": 1, "yeh": {"_count": 1, "": {"_count": 1}}}, "Gawd": {"_count": 1, "knows": {"_count": 1, "yehve": {"_count": 1}}}, "practicin": {"_count": 1, "Quidditch": {"_count": 1, "evry": {"_count": 1}}}, "twod": {"_count": 1, "value": {"_count": 1, "yer": {"_count": 1}}}, "stabbed": {"_count": 14, "yeh": {"_count": 1, "Ron": {"_count": 1}}, "shot": {"_count": 1, "strangled": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "with": {"_count": 1, "the": {"_count": 1}}, "moodily": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 2, "number": {"_count": 1}, "night": {"_count": 1}}, "it": {"_count": 3, "said": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "wisely": {"_count": 9, "": {"_count": 5, ".": {"_count": 5}}, "in": {"_count": 1, "my": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "tells": {"_count": 1, "us": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}}, "ferret": {"_count": 15, "bones": {"_count": 1, "onto": {"_count": 1}}, "which": {"_count": 2, "was": {"_count": 1}, "gave": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "again": {"_count": 1, "it": {"_count": 1}}, "bounced": {"_count": 1, "higher": {"_count": 1}}, "flew": {"_count": 1, "through": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "higher": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}}, "bunched": {"_count": 2, "around": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "together": {"_count": 1}}}, "youl": {"_count": 1, "I": {"_count": 1, "mean": {"_count": 1}}}, "respond": {"_count": 19, "but": {"_count": 3, "with": {"_count": 1}, "turned": {"_count": 1}, "approached": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "immediately": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "however": {"_count": 1, "there": {"_count": 1}}, "to": {"_count": 2, "this": {"_count": 2}}, "should": {"_count": 1, "we": {"_count": 1}}, "Xenophilius": {"_count": 1, "reached": {"_count": 1}}}, "interruption": {"_count": 9, "": {"_count": 5, ".": {"_count": 5}}, "but": {"_count": 1, "now": {"_count": 1}}, "Minerva": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}}, "Crouching": {"_count": 4, "behind": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "low": {"_count": 1}}, "down": {"_count": 1, "beneath": {"_count": 1}}, "low": {"_count": 1, "over": {"_count": 1}}}, "disquiet": {"_count": 3, "Snapes": {"_count": 1, "black": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "habit": {"_count": 21, "of": {"_count": 16, "turning": {"_count": 1}, "using": {"_count": 1}, "throwing": {"_count": 1}, "speeding": {"_count": 1}, "attacking": {"_count": 1}, "his": {"_count": 1}, "writing": {"_count": 1}, "shooting": {"_count": 1}, "predicting": {"_count": 1}, "rumpling": {"_count": 1}, "interrogating": {"_count": 1}, "wishing": {"_count": 1}, "marrying": {"_count": 1}, "playing": {"_count": 1}, "keeping": {"_count": 1}, "getting": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "language": {"_count": 1}}, "than": {"_count": 1, "anything": {"_count": 1}}, "she": {"_count": 1, "could": {"_count": 1}}, "weve": {"_count": 1, "slipped": {"_count": 1}}}, "chute": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "where": {"_count": 2, "returned": {"_count": 2}}, "emerging": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}}, "Street": {"_count": 14, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 3, "suggested": {"_count": 1}, "she": {"_count": 1}, "out": {"_count": 1}}, "past": {"_count": 1, "Dervish": {"_count": 1}}, "was": {"_count": 1, "full": {"_count": 1}}, "screaming": {"_count": 1, "that": {"_count": 1}}, "night": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "Hogsmeade": {"_count": 1}}, "I": {"_count": 1, "should": {"_count": 1}}, "dark": {"_count": 1, "shop": {"_count": 1}}}, "Grays": {"_count": 1, "right": {"_count": 1, "down": {"_count": 1}}}, "Scops": {"_count": 1, "owls": {"_count": 1, "Local": {"_count": 1}}}, "Local": {"_count": 1, "Deliveries": {"_count": 1, "Only": {"_count": 1}}}, "Deliveries": {"_count": 1, "Only": {"_count": 1, "which": {"_count": 1}}}, "tread": {"_count": 4, "on": {"_count": 3, "anyone": {"_count": 1}, "Malfoy": {"_count": 1}, "Harrys": {"_count": 1}}, "breaking": {"_count": 1, "occasionally": {"_count": 1}}}, "Hiccup": {"_count": 1, "Sweets": {"_count": 1, "Frog": {"_count": 1}}}, "Sweets": {"_count": 1, "Frog": {"_count": 1, "Spawn": {"_count": 1}}}, "Spawn": {"_count": 1, "Soap": {"_count": 1, "and": {"_count": 1}}}, "Soap": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "NoseBiting": {"_count": 1, "Teacup": {"_count": 1, "apiece": {"_count": 1}}}, "Teacup": {"_count": 1, "apiece": {"_count": 1, "": {"_count": 1}}}, "dwelling": {"_count": 9, "in": {"_count": 2, "Britain": {"_count": 2}}, "on": {"_count": 3, "it": {"_count": 1}, "the": {"_count": 2}}, "place": {"_count": 1, "or": {"_count": 1}}, "upon": {"_count": 1, "Dumbledore": {"_count": 1}}, "endlessly": {"_count": 1, "on": {"_count": 1}}, "places": {"_count": 1, "is": {"_count": 1}}}, "dank": {"_count": 6, "overgrown": {"_count": 1, "garden": {"_count": 1}}, "lane": {"_count": 1, "toward": {"_count": 1}}, "and": {"_count": 3, "dark": {"_count": 1}, "mildewed": {"_count": 1}, "musty": {"_count": 1}}, "clearing": {"_count": 1, "": {"_count": 1}}}, "moron": {"_count": 5, "trying": {"_count": 1, "to": {"_count": 1}}, "Dudley": {"_count": 1, "": {"_count": 1}}, "does": {"_count": 1, "show": {"_count": 1}}, "one": {"_count": 1, "more": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}}, "onest": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Dreaming": {"_count": 1, "about": {"_count": 1, "having": {"_count": 1}}}, "SPLAT": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "silverblond": {"_count": 1, "hair": {"_count": 1, "was": {"_count": 1}}}, "sloppy": {"_count": 2, "puddle": {"_count": 1, "yielded": {"_count": 1}}, "Potter": {"_count": 1, "it": {"_count": 1}}}, "yielded": {"_count": 3, "some": {"_count": 1, "foulsmelling": {"_count": 1}}, "poorer": {"_count": 1, "results": {"_count": 1}}, "any": {"_count": 1, "results": {"_count": 1}}}, "foulsmelling": {"_count": 3, "green": {"_count": 1, "sludge": {"_count": 1}}, "yellow": {"_count": 1, "gas": {"_count": 1}}, "room": {"_count": 1, "seemed": {"_count": 1}}}, "sludge": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "SPLATTER": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pirouette": {"_count": 2, "in": {"_count": 1, "midair": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "apparition": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "Floating": {"_count": 1, "in": {"_count": 1, "midair": {"_count": 1}}}, "striving": {"_count": 1, "to": {"_count": 1, "keep": {"_count": 1}}}, "hallucin": {"_count": 1, "Malfoy": {"_count": 1, "is": {"_count": 1}}}, "hallucinations": {"_count": 2, "snarled": {"_count": 1, "Snape": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "confirm": {"_count": 7, "that": {"_count": 3, "": {"_count": 1}, "the": {"_count": 1}, "everybody": {"_count": 1}}, "rumors": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "the": {"_count": 1, "existence": {"_count": 1}}, "this": {"_count": 1, "Harry": {"_count": 1}}}, "unto": {"_count": 1, "himself": {"_count": 1, "": {"_count": 1}}}, "extraordinarily": {"_count": 6, "like": {"_count": 3, "your": {"_count": 1}, "James": {"_count": 1}, "his": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "dangerous": {"_count": 1, "thing": {"_count": 1}}, "alike": {"_count": 1, "except": {"_count": 1}}}, "exceedingly": {"_count": 3, "arrogant": {"_count": 1, "": {"_count": 1}}, "dangerous": {"_count": 1, "": {"_count": 1}}, "gentle": {"_count": 1, "": {"_count": 1}}}, "arrogant": {"_count": 18, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "believe": {"_count": 1}}, "and": {"_count": 1, "more": {"_count": 1}}, "as": {"_count": 4, "Draco": {"_count": 1}, "Snape": {"_count": 1}, "to": {"_count": 1}, "his": {"_count": 1}}, "that": {"_count": 1, "criticism": {"_count": 1}}, "disdainful": {"_count": 1, "smile": {"_count": 1}}, "bullying": {"_count": 1, "toerag": {"_count": 1}}, "little": {"_count": 1, "berks": {"_count": 1}}, "face": {"_count": 2, "that": {"_count": 1}, "so": {"_count": 1}}, "man": {"_count": 1, "decided": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "toerag": {"_count": 1, "she": {"_count": 1}}, "boys": {"_count": 1, "with": {"_count": 1}}}, "Strutting": {"_count": 1, "around": {"_count": 1, "the": {"_count": 1}}}, "resemblance": {"_count": 8, "between": {"_count": 1, "you": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 6, "that": {"_count": 1}, "a": {"_count": 1}, "Fred": {"_count": 1}, "half": {"_count": 1}, "MadEye": {"_count": 1}, "her": {"_count": 1}}}, "strut": {"_count": 2, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Rules": {"_count": 1, "were": {"_count": 1, "for": {"_count": 1}}}, "lesser": {"_count": 2, "mortals": {"_count": 1, "not": {"_count": 1}}, "creatures": {"_count": 1, "and": {"_count": 1}}}, "mortals": {"_count": 1, "not": {"_count": 1, "Quidditch": {"_count": 1}}}, "Cupwinners": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "SHUT": {"_count": 8, "UP": {"_count": 5, "": {"_count": 5}}, "IT": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}}, "Rage": {"_count": 2, "such": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "resentment": {"_count": 1}}}, "consider": {"_count": 23, "the": {"_count": 6, "details": {"_count": 1}, "stars": {"_count": 1}, "matter": {"_count": 2}, "possibility": {"_count": 1}, "problem": {"_count": 1}}, "it": {"_count": 7, "as": {"_count": 1}, "said": {"_count": 1}, "rude": {"_count": 1}, "well": {"_count": 1}, "base": {"_count": 2}, "rented": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "any": {"_count": 1}}, "whether": {"_count": 1, "a": {"_count": 1}}, "yourself": {"_count": 1, "suspended": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "putting": {"_count": 1, "me": {"_count": 1}}, "a": {"_count": 1, "position": {"_count": 1}}, "that": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 1, "friends": {"_count": 1}}, "our": {"_count": 1, "habit": {"_count": 1}}}, "heroism": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "correct": {"_count": 36, "you": {"_count": 1, "your": {"_count": 1}}, "it": {"_count": 3, "But": {"_count": 1}, "caused": {"_count": 1}, "": {"_count": 1}}, "notes": {"_count": 1, "": {"_count": 1}}, "lawabiding": {"_count": 1, "Mr": {"_count": 1}}, "her": {"_count": 1, "though": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 3}, ".": {"_count": 2}}, "them": {"_count": 1, "she": {"_count": 1}}, "me": {"_count": 1, "if": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Dumbledore": {"_count": 1}}, "us": {"_count": 1, "if": {"_count": 1}}, "composition": {"_count": 1, "of": {"_count": 1}}, "method": {"_count": 1, "for": {"_count": 1}}, "those": {"_count": 1, "who": {"_count": 1}}, "Miss": {"_count": 1, "Edgecombe": {"_count": 1}}, "handling": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "Voldemort": {"_count": 2, "from": {"_count": 1}, "was": {"_count": 1}}, "in": {"_count": 2, "saying": {"_count": 1}, "essentials": {"_count": 1}}, "greenhouse": {"_count": 1, "": {"_count": 1}}, "way": {"_count": 1, "to": {"_count": 1}}, "what": {"_count": 1, "have": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "identification": {"_count": 1, "of": {"_count": 1}}, "name": {"_count": 1, "the": {"_count": 1}}, "password": {"_count": 1, "muttering": {"_count": 1}}, "date": {"_count": 1, "of": {"_count": 1}}}, "saintly": {"_count": 2, "father": {"_count": 1, "and": {"_count": 1}}, "Albus": {"_count": 1, "while": {"_count": 1}}}, "resulted": {"_count": 7, "in": {"_count": 6, "my": {"_count": 1}, "your": {"_count": 2}, "those": {"_count": 1}, "the": {"_count": 1}, "Siriuss": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}}, "Pull": {"_count": 2, "them": {"_count": 1, "out": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}}, "impassive": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "face": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "Bellatrix": {"_count": 1, "leaned": {"_count": 1}}}, "Spare": {"_count": 2, "bit": {"_count": 1, "of": {"_count": 1}}, "us": {"_count": 1, "spat": {"_count": 1}}}, "shrug": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "they": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}}, "treasured": {"_count": 5, "gift": {"_count": 1, "from": {"_count": 1}}, "possession": {"_count": 2, "said": {"_count": 1}, "and": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "family": {"_count": 1, "heirlooms": {"_count": 1}}}, "Reveal": {"_count": 1, "your": {"_count": 1, "secret": {"_count": 1}}}, "yield": {"_count": 4, "the": {"_count": 1, "information": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "very": {"_count": 1, "soon": {"_count": 1}}, "its": {"_count": 1, "hidden": {"_count": 1}}}, "begs": {"_count": 2, "him": {"_count": 1, "to": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}}, "appearing": {"_count": 18, "beneath": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "from": {"_count": 1, "thin": {"_count": 1}}, "to": {"_count": 3, "do": {"_count": 1}, "deliberate": {"_count": 1}, "shoot": {"_count": 1}}, "wherever": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "alongside": {"_count": 1, "utter": {"_count": 1}}, "around": {"_count": 2, "the": {"_count": 2}}, "almost": {"_count": 1, "daily": {"_count": 1}}, "suddenly": {"_count": 2, "at": {"_count": 2}}, "one": {"_count": 1, "by": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "bids": {"_count": 2, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "for": {"_count": 1, "freedom": {"_count": 1}}}, "advises": {"_count": 2, "him": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}}, "slimeball": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fistful": {"_count": 7, "of": {"_count": 7, "glittering": {"_count": 1}, "gold": {"_count": 1}, "robe": {"_count": 1}, "Harrys": {"_count": 2}, "tubers": {"_count": 1}, "leaves": {"_count": 1}}}, "Utterly": {"_count": 3, "bewildered": {"_count": 1, "Harry": {"_count": 1}}, "perplexed": {"_count": 1, "Harry": {"_count": 1}}, "nonplussed": {"_count": 1, "he": {"_count": 1}}}, "clambering": {"_count": 8, "out": {"_count": 1, "of": {"_count": 1}}, "awkwardly": {"_count": 1, "out": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 2}}, "back": {"_count": 1, "to": {"_count": 1}}, "over": {"_count": 1, "him": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}}, "merest": {"_count": 6, "halfglance": {"_count": 1, "in": {"_count": 1}}, "trace": {"_count": 2, "of": {"_count": 2}}, "suggestion": {"_count": 1, "of": {"_count": 1}}, "flicker": {"_count": 1, "of": {"_count": 1}}, "slit": {"_count": 1, "in": {"_count": 1}}}, "halfglance": {"_count": 1, "in": {"_count": 1, "Harrys": {"_count": 1}}}, "interrupt": {"_count": 13, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "but": {"_count": 2, "Hermione": {"_count": 1}, "this": {"_count": 1}}, "me": {"_count": 4, "because": {"_count": 1}, "": {"_count": 1}, "Potter": {"_count": 2}}, "him": {"_count": 1, "again": {"_count": 1}}, "what": {"_count": 1, "Im": {"_count": 1}}, "Dumbledore": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 1, "stroll": {"_count": 1}}, "I": {"_count": 1, "asked": {"_count": 1}}}, "insults": {"_count": 8, "anybody": {"_count": 1, "who": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "jeers": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "reads": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "Childish": {"_count": 1, "but": {"_count": 1, "surely": {"_count": 1}}}, "manufacturers": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "Zonko": {"_count": 2, "product": {"_count": 1, "to": {"_count": 1}}, "s": {"_count": 1, "": {"_count": 1}}}, "product": {"_count": 1, "to": {"_count": 1, "me": {"_count": 1}}}, "cue": {"_count": 3, "Ron": {"_count": 1, "came": {"_count": 1}}, "for": {"_count": 1, "Siriuss": {"_count": 1}}, "to": {"_count": 1, "go": {"_count": 1}}}, "Bought": {"_count": 2, "it": {"_count": 2, "": {"_count": 1}, "from": {"_count": 1}}}, "explanations": {"_count": 6, "said": {"_count": 1, "Lupin": {"_count": 1}}, "to": {"_count": 1, "protest": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "Snape": {"_count": 1, "pointed": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "mapmakers": {"_count": 1, "would": {"_count": 1, "have": {"_count": 1}}}, "lure": {"_count": 12, "you": {"_count": 3, "out": {"_count": 1}, "there": {"_count": 1}, "to": {"_count": 1}}, "me": {"_count": 1, "out": {"_count": 1}}, "of": {"_count": 3, "Siriuss": {"_count": 1}, "power": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "yeh": {"_count": 1, "off": {"_count": 1}}, "a": {"_count": 1, "trap": {"_count": 1}}, "us": {"_count": 1, "here": {"_count": 1}}, "for": {"_count": 1, "fools": {"_count": 1}}}, "repay": {"_count": 2, "them": {"_count": 1, "gambling": {"_count": 1}}, "you": {"_count": 1, "for": {"_count": 1}}}, "gambling": {"_count": 4, "their": {"_count": 1, "sacrifice": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sacrifice": {"_count": 11, "for": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "it": {"_count": 1}, "close": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "alive": {"_count": 1, "and": {"_count": 1}}, "into": {"_count": 1, "himself": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "themselves": {"_count": 1, "for": {"_count": 1}}}, "shouldntve": {"_count": 4, "done": {"_count": 1, "it": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "Forget": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "didnt": {"_count": 1}}}, "gloat": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "executed": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "the": {"_count": 1}}}, "FINAL": {"_count": 2, "He": {"_count": 1, "he": {"_count": 1}}, "HIDING": {"_count": 1, "PLACE": {"_count": 1}}}, "teardrops": {"_count": 1, "had": {"_count": 1, "smudged": {"_count": 1}}}, "Execution": {"_count": 1, "date": {"_count": 1, "to": {"_count": 1}}}, "Beaky": {"_count": 6, "has": {"_count": 1, "enjoyed": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "its": {"_count": 1, "okay": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "yeh": {"_count": 1, "clever": {"_count": 1}}}, "doddery": {"_count": 1, "old": {"_count": 1, "fools": {"_count": 1}}}, "imposed": {"_count": 4, "on": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "might": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "his": {"_count": 1, "personality": {"_count": 1}}}, "verdict": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Sall": {"_count": 2, "my": {"_count": 1, "fault": {"_count": 1}}, "dark": {"_count": 1, "Harry": {"_count": 1}}}, "tonguetied": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sittin": {"_count": 4, "there": {"_count": 1, "in": {"_count": 1}}, "worryin": {"_count": 1, "abou": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "up": {"_count": 1, "waitin": {"_count": 1}}}, "kep": {"_count": 3, "droppin": {"_count": 1, "me": {"_count": 1}}, "goin": {"_count": 1, "back": {"_count": 1}}, "wantin": {"_count": 1, "ter": {"_count": 1}}}, "droppin": {"_count": 1, "me": {"_count": 1, "notes": {"_count": 1}}}, "exacly": {"_count": 2, "what": {"_count": 2, "he": {"_count": 1}, "I": {"_count": 1}}}, "derisively": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Sno": {"_count": 3, "good": {"_count": 1, "Ron": {"_count": 1}}, "moren": {"_count": 1, "I": {"_count": 1}}, "wonder": {"_count": 1, "Dumbledores": {"_count": 1}}}, "Beakys": {"_count": 2, "time": {"_count": 1, "is": {"_count": 1}}, "gettin": {"_count": 1, "a": {"_count": 1}}}, "blubber": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "and": {"_count": 1, "tweak": {"_count": 1}}}, "SMACK": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "muster": {"_count": 13, "": {"_count": 4, ".": {"_count": 4}}, "Harry": {"_count": 1, "raised": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "a": {"_count": 1, "smile": {"_count": 1}}, "the": {"_count": 2, "energy": {"_count": 2}}, "any": {"_count": 1, "great": {"_count": 1}}, "do": {"_count": 1, "yours": {"_count": 1}}, "And": {"_count": 1, "what": {"_count": 1}}, "He": {"_count": 1, "did": {"_count": 1}}}, "experimenting": {"_count": 1, "with": {"_count": 1, "Cheering": {"_count": 1}}}, "Cheering": {"_count": 8, "Charms": {"_count": 7, "today": {"_count": 1}, "had": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 2}, "Professor": {"_count": 1}, "I": {"_count": 1}}, "Charm": {"_count": 1, "on": {"_count": 1}}}, "contentment": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "stole": {"_count": 1, "over": {"_count": 1}}}, "aftereffects": {"_count": 3, "of": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "Flibbertigibbet": {"_count": 1, "and": {"_count": 1, "scrambled": {"_count": 1}}}, "harassed": {"_count": 4, "": {"_count": 4, ".": {"_count": 4}}}, "hinted": {"_count": 5, "they": {"_count": 1, "might": {"_count": 1}}, "that": {"_count": 3, "he": {"_count": 2}, "Professor": {"_count": 1}}, "above": {"_count": 1, "Dumbledores": {"_count": 1}}}, "Glowing": {"_count": 1, "on": {"_count": 1, "every": {"_count": 1}}}, "flinching": {"_count": 2, "every": {"_count": 1, "time": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fates": {"_count": 2, "have": {"_count": 2, "informed": {"_count": 2}}}, "examination": {"_count": 32, "in": {"_count": 2, "June": {"_count": 1}, "performing": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "during": {"_count": 1, "which": {"_count": 1}}, "passes": {"_count": 1, "or": {"_count": 1}}, "so": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "after": {"_count": 1}}, "conditions": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "paper": {"_count": 3, "DEFENSE": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "questions": {"_count": 1, "but": {"_count": 1}}, "schedules": {"_count": 1, "and": {"_count": 1}}, "will": {"_count": 1, "of": {"_count": 1}}, "papers": {"_count": 2, "": {"_count": 2}}, "hall": {"_count": 1, "as": {"_count": 1}}, "results": {"_count": 1, "will": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}, "is": {"_count": 2, "over": {"_count": 1}, "nearly": {"_count": 1}}, "took": {"_count": 1, "place": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "Orb": {"_count": 3, "and": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "sufficient": {"_count": 6, "practice": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "hide": {"_count": 1}, "get": {"_count": 1}}, "threat": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "\u2018the": {"_count": 24, "fates": {"_count": 1, "have": {"_count": 1}}, "normal": {"_count": 1, "way": {"_count": 1}}, "prospects": {"_count": 1, "black": {"_count": 1}}, "Boy": {"_count": 3, "Who": {"_count": 3}}, "Chosen": {"_count": 12, "One": {"_count": 11}, "Captain": {"_count": 1}}, "Prince": {"_count": 1, "as": {"_count": 1}}, "big": {"_count": 1, "house": {"_count": 1}}, "Weasleys": {"_count": 1, "dont": {"_count": 1}}, "close": {"_count": 1, "": {"_count": 1}}, "Mudblood": {"_count": 1, "who": {"_count": 1}}, "most": {"_count": 1, "notable": {"_count": 1}}}, "prediction": {"_count": 10, "": {"_count": 6, "!": {"_count": 2}, "?": {"_count": 2}, ".": {"_count": 2}}, "about": {"_count": 1, "Voldemort": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "that": {"_count": 1, "caused": {"_count": 1}}, "came": {"_count": 1, "true": {"_count": 1}}}, "Crystal": {"_count": 1, "gazing": {"_count": 1, "is": {"_count": 1}}}, "refined": {"_count": 2, "art": {"_count": 1, "she": {"_count": 1}}, "forms": {"_count": 1, "of": {"_count": 1}}}, "Orbs": {"_count": 1, "infinite": {"_count": 1, "depths": {"_count": 1}}}, "infinite": {"_count": 2, "depths": {"_count": 1, "": {"_count": 1}}, "opportunity": {"_count": 1, "stole": {"_count": 1}}}, "relaxing": {"_count": 5, "the": {"_count": 2, "conscious": {"_count": 1}, "standards": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "It": {"_count": 1, "was": {"_count": 1}}}, "conscious": {"_count": 19, "mind": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "watched": {"_count": 1}}, "of": {"_count": 6, "everybody": {"_count": 1}, "the": {"_count": 3}, "what": {"_count": 1}, "speaking": {"_count": 1}}, "self": {"_count": 1, "struggling": {"_count": 1}}, "that": {"_count": 2, "Ginny": {"_count": 1}, "he": {"_count": 1}}, "thought": {"_count": 2, "Levicorpus": {"_count": 1}, "All": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "Kreacher": {"_count": 1, "but": {"_count": 1}}, "kept": {"_count": 1, "standing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "goblin": {"_count": 1, "Hermione": {"_count": 1}}, "instruction": {"_count": 1, "as": {"_count": 1}}}, "external": {"_count": 4, "eyes": {"_count": 1, "Ron": {"_count": 1}}, "deadly": {"_count": 1, "foes": {"_count": 1}}, "penetration": {"_count": 2, "": {"_count": 2}}}, "superconscious": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rustled": {"_count": 8, "past": {"_count": 1, "": {"_count": 1}}, "faintly": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "neighboring": {"_count": 1}}, "the": {"_count": 1, "pages": {"_count": 1}}, "and": {"_count": 1, "four": {"_count": 1}}, "its": {"_count": 1, "enormous": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "portents": {"_count": 3, "within": {"_count": 1, "their": {"_count": 1}}, "they": {"_count": 1, "reveal": {"_count": 1}}, "I": {"_count": 1, "happen": {"_count": 1}}}, "disturbing": {"_count": 7, "the": {"_count": 1, "clairvoyant": {"_count": 1}}, "these": {"_count": 1, "people": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "dreams": {"_count": 1, "nor": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "phase": {"_count": 1, "of": {"_count": 1}}, "Nagini": {"_count": 1, "wove": {"_count": 1}}}, "clairvoyant": {"_count": 2, "vibrations": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}}, "vibrations": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "of": {"_count": 2, "my": {"_count": 1}, "coming": {"_count": 1}}}, "plainer": {"_count": 7, "than": {"_count": 1, "ever": {"_count": 1}}, "that": {"_count": 4, "not": {"_count": 1}, "she": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "you": {"_count": 1, "come": {"_count": 1}}}, "Gr": {"_count": 1, "Oh": {"_count": 1, "for": {"_count": 1}}}, "apparent": {"_count": 12, "that": {"_count": 1, "you": {"_count": 1}}, "almost": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 2, "everybody": {"_count": 1}, "me": {"_count": 1}}, "relish": {"_count": 1, "then": {"_count": 1}}, "on": {"_count": 1, "entering": {"_count": 1}}, "displeasure": {"_count": 1, "that": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "embarrassment": {"_count": 1, "on": {"_count": 1}}, "ease": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "expression": {"_count": 1}}, "appreciation": {"_count": 1, "of": {"_count": 1}}}, "cramming": {"_count": 4, "Unfogging": {"_count": 1, "the": {"_count": 1}}, "them": {"_count": 1, "back": {"_count": 1}}, "Rons": {"_count": 1, "copy": {"_count": 1}}, "themselves": {"_count": 1, "into": {"_count": 1}}}, "Ooooo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Oooooo": {"_count": 2, "Professor": {"_count": 1, "Trelawney": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Around": {"_count": 1, "Easter": {"_count": 1, "one": {"_count": 1}}}, "dewy": {"_count": 2, "smile": {"_count": 1, "": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}}, "Signs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "awed": {"_count": 11, "": {"_count": 2, ".": {"_count": 2}}, "voice": {"_count": 4, "": {"_count": 4}}, "voices": {"_count": 1, "Did": {"_count": 1}}, "respect": {"_count": 1, "in": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "terrified": {"_count": 1, "": {"_count": 1}}}, "enormously": {"_count": 8, "thick": {"_count": 2, "volumes": {"_count": 1}, "glasses": {"_count": 1}}, "relieved": {"_count": 1, "Harry": {"_count": 1}}, "fat": {"_count": 1, "bald": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Scrimgeour": {"_count": 1}}, "overgrown": {"_count": 1, "baby": {"_count": 1}}, "beneficial": {"_count": 1, "": {"_count": 1}}}, "Hippogriff": {"_count": 2, "Psychology": {"_count": 1, "and": {"_count": 1}}, "Brutality": {"_count": 1, "": {"_count": 1}}}, "Psychology": {"_count": 1, "and": {"_count": 1, "Fowl": {"_count": 1}}}, "Fowl": {"_count": 1, "or": {"_count": 1, "Foul": {"_count": 1}}}, "Brutality": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "absorbed": {"_count": 9, "he": {"_count": 1, "even": {"_count": 1}}, "in": {"_count": 7, "my": {"_count": 1}, "what": {"_count": 1}, "conversation": {"_count": 1}, "the": {"_count": 2}, "his": {"_count": 2}}, "into": {"_count": 1, "the": {"_count": 1}}}, "discussions": {"_count": 4, "of": {"_count": 1, "tactics": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "was": {"_count": 1}}}, "largely": {"_count": 4, "on": {"_count": 1, "Harry": {"_count": 1}}, "thanks": {"_count": 1, "to": {"_count": 1}}, "been": {"_count": 1, "greeted": {"_count": 1}}, "of": {"_count": 1, "moldy": {"_count": 1}}}, "capturing": {"_count": 2, "the": {"_count": 1, "Snitch": {"_count": 1}}, "an": {"_count": 1, "Auror": {"_count": 1}}}, "OLIVER": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "obsessed": {"_count": 14, "with": {"_count": 13, "the": {"_count": 3}, "security": {"_count": 1}, "catching": {"_count": 2}, "houseelfs": {"_count": 1}, "house": {"_count": 1}, "making": {"_count": 1}, "his": {"_count": 1}, "Draco": {"_count": 1}, "Malfoy": {"_count": 1}, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "enmity": {"_count": 5, "between": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 2, "very": {"_count": 2}}, "had": {"_count": 1, "been": {"_count": 1}}, "forgotten": {"_count": 1, "the": {"_count": 1}}}, "smarting": {"_count": 3, "about": {"_count": 1, "the": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "mudthrowing": {"_count": 1, "incident": {"_count": 1, "in": {"_count": 1}}}, "wormed": {"_count": 3, "his": {"_count": 2, "way": {"_count": 2}}, "things": {"_count": 1, "out": {"_count": 1}}}, "tension": {"_count": 13, "between": {"_count": 2, "the": {"_count": 2}}, "he": {"_count": 1, "left": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "excitement": {"_count": 2}}, "the": {"_count": 1, "expectation": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "leaving": {"_count": 1, "him": {"_count": 1}}, "drained": {"_count": 1, "from": {"_count": 1}}, "So": {"_count": 1, "ow": {"_count": 1}}}, "culminating": {"_count": 2, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}}, "leeks": {"_count": 1, "sprouting": {"_count": 1, "out": {"_count": 1}}}, "slouching": {"_count": 4, "away": {"_count": 1, "looking": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}}, "challenge": {"_count": 10, "enthusiastically": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "armed": {"_count": 1, "only": {"_count": 1}}, "the": {"_count": 2, "mouse": {"_count": 1}, "term": {"_count": 1}}, "that": {"_count": 1, "faced": {"_count": 1}}, "your": {"_count": 1, "mate": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "repeating": {"_count": 1}}, "Luna": {"_count": 1, "or": {"_count": 1}}}, "pursuits": {"_count": 3, "were": {"_count": 1, "abandoned": {"_count": 1}}, "the": {"_count": 1, "inhabitants": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "exuberant": {"_count": 3, "than": {"_count": 2, "ever": {"_count": 1}, "usual": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "Firebolti": {"_count": 2, "said": {"_count": 1, "Ron": {"_count": 1}}, "he": {"_count": 1, "shouted": {"_count": 1}}}, "Team": {"_count": 8, "": {"_count": 3, "!": {"_count": 3}}, "Mascots": {"_count": 2, "": {"_count": 2}}, "Group": {"_count": 3, "or": {"_count": 3}}}, "overslept": {"_count": 1, "and": {"_count": 1, "that": {"_count": 1}}}, "steeds": {"_count": 2, "mouth": {"_count": 1, "when": {"_count": 1}}, "require": {"_count": 1, "er": {"_count": 1}}}, "treetops": {"_count": 9, "in": {"_count": 3, "the": {"_count": 3}}, "and": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 3}}, "overhead": {"_count": 1, "rose": {"_count": 1}}}, "pacross": {"_count": 1, "the": {"_count": 1, "silvery": {"_count": 1}}}, "ledge": {"_count": 6, "in": {"_count": 1, "relief": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "gazing": {"_count": 1, "through": {"_count": 1}}, "and": {"_count": 1, "Dumbledores": {"_count": 1}}, "sat": {"_count": 1, "perched": {"_count": 1}}}, "bottlebrush": {"_count": 5, "tail": {"_count": 5, "": {"_count": 2}, "held": {"_count": 2}, "in": {"_count": 1}}}, "Huh": {"_count": 3, "": {"_count": 3, "?": {"_count": 3}}}, "applauding": {"_count": 14, "them": {"_count": 2, "too": {"_count": 1}, "politely": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "appreciatively": {"_count": 1, "Harry": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "as": {"_count": 2, "McDonald": {"_count": 1}, "loudly": {"_count": 1}}, "and": {"_count": 2, "screaming": {"_count": 1}, "whistling": {"_count": 1}}, "hard": {"_count": 1, "with": {"_count": 1}}, "Fleur": {"_count": 1, "politely": {"_count": 1}}, "properly": {"_count": 1, "Dumbledore": {"_count": 1}}}, "suns": {"_count": 3, "a": {"_count": 1, "bit": {"_count": 1}}, "flooding": {"_count": 1, "the": {"_count": 1}}, "floating": {"_count": 1, "in": {"_count": 1}}}, "impair": {"_count": 1, "your": {"_count": 1, "vision": {"_count": 1}}}, "kickoff": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Locker": {"_count": 1, "rooms": {"_count": 1, "said": {"_count": 1}}}, "wriggly": {"_count": 1, "for": {"_count": 1, "breakfast": {"_count": 1}}}, "Threequarters": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "rosettes": {"_count": 6, "waving": {"_count": 1, "scarlet": {"_count": 1}}, "Yeh": {"_count": 1, "beat": {"_count": 1}}, "green": {"_count": 1, "for": {"_count": 1}}, "too": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "hats": {"_count": 1}}}, "banners": {"_count": 5, "with": {"_count": 1, "slogans": {"_count": 1}}, "hung": {"_count": 1, "from": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "scarves": {"_count": 1}}, "faded": {"_count": 1, "scarlet": {"_count": 1}}}, "slogans": {"_count": 1, "like": {"_count": 1, "GO": {"_count": 1}}}, "LIONS": {"_count": 1, "FOR": {"_count": 1, "THE": {"_count": 1}}}, "CUP": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "Clutching": {"_count": 1, "their": {"_count": 1}}, "complete": {"_count": 1, "with": {"_count": 1}}}, "commentator": {"_count": 1, "as": {"_count": 1, "usual": {"_count": 1}}}, "Widely": {"_count": 1, "acknowledged": {"_count": 1, "as": {"_count": 1}}}, "acknowledged": {"_count": 3, "as": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}}, "Lees": {"_count": 5, "comments": {"_count": 1, "were": {"_count": 1}}, "commentary": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 2, "amid": {"_count": 1}, "": {"_count": 1}}, "already": {"_count": 1, "proved": {"_count": 1}}}, "changes": {"_count": 12, "in": {"_count": 2, "the": {"_count": 1}, "staffing": {"_count": 1}}, "and": {"_count": 1, "says": {"_count": 1}}, "everything": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "day": {"_count": 1}}, "Cornelius": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "within": {"_count": 1, "Hogwarts": {"_count": 1}}, "so": {"_count": 1, "if": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "things": {"_count": 1, "doesnt": {"_count": 1}}, "hands": {"_count": 1, "by": {"_count": 1}}}, "lineup": {"_count": 3, "and": {"_count": 1, "seems": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "Slytherin": {"_count": 1}}}, "skill": {"_count": 15, "More": {"_count": 1, "boos": {"_count": 1}}, "unrivaled": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Second": {"_count": 1, "year": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "for": {"_count": 1}, "power": {"_count": 2}, "no": {"_count": 1}}, "whatever": {"_count": 1, "his": {"_count": 1}}, "What": {"_count": 1, "chance": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "Argh": {"_count": 3, "no": {"_count": 1, "Quaffle": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}}, "intercepted": {"_count": 8, "by": {"_count": 1, "Warrington": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "He": {"_count": 1, "could": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "youd": {"_count": 1, "all": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}}, "Warrington": {"_count": 19, "Warrington": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "of": {"_count": 2, "Slytherin": {"_count": 1}, "the": {"_count": 1}}, "drops": {"_count": 2, "the": {"_count": 2}}, "knocking": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "shes": {"_count": 2, "passed": {"_count": 1}, "heading": {"_count": 1}}, "avoids": {"_count": 1, "a": {"_count": 1}}, "who": {"_count": 1, "sped": {"_count": 1}}, "pelted": {"_count": 1, "toward": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "heading": {"_count": 1, "for": {"_count": 1}}, "again": {"_count": 1, "bellowed": {"_count": 1}}, "to": {"_count": 1, "Montague": {"_count": 1}}, "shoving": {"_count": 1, "Ron": {"_count": 1}}}, "Montague": {"_count": 30, "duck": {"_count": 1, "Angelina": {"_count": 1}}, "a": {"_count": 1, "Slytherin": {"_count": 1}}, "and": {"_count": 1, "began": {"_count": 1}}, "scores": {"_count": 1, "Lee": {"_count": 1}}, "was": {"_count": 3, "built": {"_count": 1}, "trying": {"_count": 1}, "Captain": {"_count": 1}}, "reached": {"_count": 1, "each": {"_count": 1}}, "shes": {"_count": 1, "ouch": {"_count": 1}}, "catches": {"_count": 1, "the": {"_count": 1}}, "heading": {"_count": 1, "back": {"_count": 1}}, "he": {"_count": 1, "drops": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "takes": {"_count": 1, "the": {"_count": 1}}, "nice": {"_count": 1, "swerve": {"_count": 1}}, "Montague": {"_count": 1, "back": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "laughing": {"_count": 1, "about": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "reappears": {"_count": 1, "and": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 2, "still": {"_count": 1}, "got": {"_count": 1}}, "marching": {"_count": 1, "inside": {"_count": 1}}, "shouldnt": {"_count": 1, "have": {"_count": 1}}, "doesnt": {"_count": 1, "recover": {"_count": 1}}, "got": {"_count": 1, "lost": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}}, "SHE": {"_count": 8, "SCORES": {"_count": 3, "": {"_count": 3}}, "SHOOTS": {"_count": 1, "SHE": {"_count": 1}}, "aah": {"_count": 1, "": {"_count": 1}}, "KILLED": {"_count": 2, "SIRIUS": {"_count": 1}, "HIM": {"_count": 1}}, "DIES": {"_count": 1, "": {"_count": 1}}}, "SCORES": {"_count": 5, "": {"_count": 5, "!": {"_count": 5}}}, "TENZERO": {"_count": 1, "TO": {"_count": 1, "GRYFFINDOR": {"_count": 1}}}, "smashing": {"_count": 11, "into": {"_count": 2, "her": {"_count": 1}, "each": {"_count": 1}}, "noise": {"_count": 1, "Malfoy": {"_count": 1}}, "up": {"_count": 3, "the": {"_count": 2}, "of": {"_count": 1}}, "more": {"_count": 1, "trees": {"_count": 1}}, "things": {"_count": 1, "was": {"_count": 1}}, "had": {"_count": 1, "stopped": {"_count": 1}}, "down": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "crushing": {"_count": 1}}}, "booed": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "McLaggen": {"_count": 1}}, "loudly": {"_count": 1, "as": {"_count": 1}}}, "bleed": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "afresh": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "death": {"_count": 1}}}, "Penalty": {"_count": 4, "shot": {"_count": 2, "to": {"_count": 2}}, "": {"_count": 1, "!": {"_count": 1}}, "to": {"_count": 1, "Gryffindor": {"_count": 1}}}, "unprovoked": {"_count": 2, "attack": {"_count": 2, "on": {"_count": 2}}}, "deliberate": {"_count": 5, "damage": {"_count": 1, "to": {"_count": 1}}, "mistakes": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "point": {"_count": 1}}, "too": {"_count": 1, "short": {"_count": 1}}, "force": {"_count": 1, "but": {"_count": 1}}}, "YES": {"_count": 5, "": {"_count": 5, "!": {"_count": 5}}}, "SHES": {"_count": 1, "BEATEN": {"_count": 1, "THE": {"_count": 1}}}, "BEATEN": {"_count": 1, "THE": {"_count": 1, "KEEPER": {"_count": 1}}}, "TWENTYZERO": {"_count": 1, "TO": {"_count": 1, "GRYFFINDOR": {"_count": 1}}}, "Superb": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "SAVED": {"_count": 3, "IT": {"_count": 1, "": {"_count": 1}}, "THE": {"_count": 1, "SORCERERS": {"_count": 1}}, "BOTH": {"_count": 1, "YOUR": {"_count": 1}}}, "Relieved": {"_count": 2, "Harry": {"_count": 2, "zoomed": {"_count": 1}, "got": {"_count": 1}}}, "DELIBERATE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "cartwheeled": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "THIRTYZERO": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "TAKE": {"_count": 1, "THAT": {"_count": 1, "YOU": {"_count": 1}}}, "DIRTY": {"_count": 1, "CHEATING": {"_count": 1, "Jordan": {"_count": 1}}}, "CHEATING": {"_count": 3, "Jordan": {"_count": 1, "if": {"_count": 1}}, "SCUM": {"_count": 1, "": {"_count": 1}}, "B": {"_count": 1, "Professor": {"_count": 1}}}, "commentate": {"_count": 2, "in": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "unbiased": {"_count": 2, "way": {"_count": 1, "": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}}, "Faking": {"_count": 1, "a": {"_count": 1, "look": {"_count": 1}}}, "concentration": {"_count": 27, "Harry": {"_count": 2, "pulled": {"_count": 1}, "thought": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "ended": {"_count": 1}, "mind": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "as": {"_count": 3, "he": {"_count": 2}, "many": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}, "mimed": {"_count": 1, "writing": {"_count": 1}}, "youre": {"_count": 1, "just": {"_count": 1}}, "sliding": {"_count": 1, "away": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "apparently": {"_count": 1, "indifferent": {"_count": 1}}, "but": {"_count": 1, "only": {"_count": 1}}, "mental": {"_count": 1, "agility": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}}, "haring": {"_count": 2, "after": {"_count": 1, "him": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "WHOOSH": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Derrick": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "zooming": {"_count": 1, "toward": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "took": {"_count": 1, "advantage": {"_count": 1}}, "and": {"_count": 2, "Bole": {"_count": 2}}}, "grazed": {"_count": 3, "Harrys": {"_count": 1, "elbow": {"_count": 1}}, "his": {"_count": 1, "shoulder": {"_count": 1}}, "forearm": {"_count": 1, "upon": {"_count": 1}}}, "Bole": {"_count": 10, "was": {"_count": 1, "closing": {"_count": 1}}, "and": {"_count": 4, "Derrick": {"_count": 4}}, "hit": {"_count": 1, "Alicia": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "sent": {"_count": 1, "a": {"_count": 1}}, "have": {"_count": 1, "left": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}}, "collided": {"_count": 21, "with": {"_count": 15, "a": {"_count": 1}, "the": {"_count": 7}, "Lupin": {"_count": 1}, "Mr": {"_count": 1}, "her": {"_count": 1}, "its": {"_count": 1}, "what": {"_count": 1}, "him": {"_count": 2}}, "hard": {"_count": 1, "with": {"_count": 1}}, "painfully": {"_count": 2, "with": {"_count": 2}}, "in": {"_count": 1, "midair": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "eruption": {"_count": 3, "of": {"_count": 2, "cheers": {"_count": 1}, "jeering": {"_count": 1}}, "sent": {"_count": 1, "joy": {"_count": 1}}}, "dirtiest": {"_count": 2, "game": {"_count": 1, "Harry": {"_count": 1}}, "look": {"_count": 1, "he": {"_count": 1}}}, "resorting": {"_count": 3, "to": {"_count": 3, "any": {"_count": 1}, "desperate": {"_count": 1}, "a": {"_count": 1}}}, "retaliation": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "penalties": {"_count": 5, "and": {"_count": 1, "Wood": {"_count": 1}}, "for": {"_count": 1, "Ireland": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "loving": {"_count": 1}}}, "fortyten": {"_count": 2, "to": {"_count": 1, "Gryffindor": {"_count": 1}}, "forty": {"_count": 1, "ten": {"_count": 1}}}, "Fiftyten": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "UNLESS": {"_count": 2, "THE": {"_count": 1, "QUAFFLE": {"_count": 1}}, "APPROVED": {"_count": 1, "BY": {"_count": 1}}}, "QUAFFLE": {"_count": 3, "IS": {"_count": 1, "WITHIN": {"_count": 1}}, "IN": {"_count": 2, "": {"_count": 1}, "WEASLEY": {"_count": 1}}}, "WITHIN": {"_count": 1, "THE": {"_count": 1, "SCORING": {"_count": 1}}}, "SCORING": {"_count": 1, "AREA": {"_count": 1, "": {"_count": 1}}}, "AREA": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Sixtyten": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Moments": {"_count": 2, "later": {"_count": 2, "Fred": {"_count": 1}, "Cadwallader": {"_count": 1}}}, "seventyten": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Horrified": {"_count": 4, "he": {"_count": 1, "looked": {"_count": 1}}, "transfixed": {"_count": 1, "Frank": {"_count": 1}}, "Harry": {"_count": 2, "began": {"_count": 1}, "watched": {"_count": 1}}}, "SCUM": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "CREATURES": {"_count": 1, "OF": {"_count": 1}}}, "FILTHY": {"_count": 2, "CHEATING": {"_count": 1, "B": {"_count": 1}}, "HALFBREEDS": {"_count": 1, "BESMIRCHING": {"_count": 1}}}, "B": {"_count": 16, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "states": {"_count": 1, "clearly": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 12}}, "U": {"_count": 1, "M": {"_count": 1}}, "Tradeable": {"_count": 1, "Material": {"_count": 1}}}, "spurred": {"_count": 2, "on": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "work": {"_count": 1}}}, "heights": {"_count": 7, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "and": {"_count": 1, "those": {"_count": 1}}}, "Seventytwenty": {"_count": 1, "to": {"_count": 1, "Gryffindor": {"_count": 1}}}, "frustration": {"_count": 16, "as": {"_count": 2, "he": {"_count": 1}, "though": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "peaked": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "grinding": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "attempted": {"_count": 1}}, "with": {"_count": 1, "Harry": {"_count": 1}}}, "Angelinas": {"_count": 9, "way": {"_count": 1, "was": {"_count": 1}}, "Alicias": {"_count": 1, "and": {"_count": 1}}, "pep": {"_count": 1, "talks": {"_count": 1}}, "whistle": {"_count": 1, "sounded": {"_count": 1}}, "reaction": {"_count": 1, "": {"_count": 1}}, "idea": {"_count": 1, "that": {"_count": 1}}, "fingers": {"_count": 1, "though": {"_count": 1}}, "frantic": {"_count": 1, "voice": {"_count": 1}}, "burning": {"_count": 1, "reproachful": {"_count": 1}}}, "glimmer": {"_count": 1, "Harry": {"_count": 1, "urged": {"_count": 1}}}, "halfblinded": {"_count": 1, "by": {"_count": 1, "tears": {"_count": 1}}}, "unrestrainedly": {"_count": 1, "into": {"_count": 1, "his": {"_count": 1}}}, "Alicias": {"_count": 1, "and": {"_count": 1, "Katies": {"_count": 1}}}, "Katies": {"_count": 13, "voices": {"_count": 1, "Weve": {"_count": 1}}, "outstretched": {"_count": 1, "hands": {"_count": 1}}, "nose": {"_count": 1, "was": {"_count": 1}}, "ankles": {"_count": 1, "trying": {"_count": 1}}, "legs": {"_count": 1, "she": {"_count": 1}}, "piercing": {"_count": 1, "screams": {"_count": 1}}, "wailing": {"_count": 1, "friend": {"_count": 1}}, "fate": {"_count": 1, "had": {"_count": 1}}, "accident": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "substitute": {"_count": 1, "": {"_count": 1}}, "attack": {"_count": 1, "had": {"_count": 1}}, "friends": {"_count": 1, "started": {"_count": 1}}}, "Tangled": {"_count": 1, "together": {"_count": 1, "in": {"_count": 1}}}, "manyarmed": {"_count": 1, "hug": {"_count": 1, "the": {"_count": 1}}}, "Wave": {"_count": 1, "upon": {"_count": 1, "wave": {"_count": 1}}}, "raining": {"_count": 11, "down": {"_count": 3, "on": {"_count": 1}, "upon": {"_count": 2}}, "hard": {"_count": 2, "outside": {"_count": 1}, "now": {"_count": 1}}, "spells": {"_count": 1, "down": {"_count": 1}}, "in": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "lately": {"_count": 1, "said": {"_count": 1}}, "office": {"_count": 1, "": {"_count": 1}}}, "Thrust": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "dignity": {"_count": 9, "forgotten": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 3, "Professor": {"_count": 1}, "his": {"_count": 1}, "my": {"_count": 1}}, "straightening": {"_count": 1, "her": {"_count": 1}}}, "Words": {"_count": 2, "failed": {"_count": 1, "them": {"_count": 1}}, "utterly": {"_count": 1, "failed": {"_count": 1}}}, "borne": {"_count": 6, "toward": {"_count": 2, "the": {"_count": 1}, "them": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "away": {"_count": 1, "through": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "on": {"_count": 1}}}, "TRELAWNEYS": {"_count": 1, "PREDICTION": {"_count": 1, "Harrys": {"_count": 1}}}, "PREDICTION": {"_count": 1, "Harrys": {"_count": 1, "euphoria": {"_count": 1}}}, "euphoria": {"_count": 5, "at": {"_count": 2, "finally": {"_count": 1}, "helping": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "heady": {"_count": 1}}}, "cloudless": {"_count": 6, "and": {"_count": 2, "sultry": {"_count": 1}, "still": {"_count": 1}}, "night": {"_count": 1, "coming": {"_count": 1}}, "sky": {"_count": 2, "smiled": {"_count": 1}, "the": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "sultry": {"_count": 2, "and": {"_count": 1, "all": {"_count": 1}}, "velvety": {"_count": 1, "night": {"_count": 1}}}, "flopping": {"_count": 6, "down": {"_count": 3, "on": {"_count": 1}, "onto": {"_count": 1}, "into": {"_count": 1}}, "limply": {"_count": 1, "from": {"_count": 1}}, "string": {"_count": 1, "bag": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}}, "propel": {"_count": 2, "itself": {"_count": 1, "dreamily": {"_count": 1}}, "himself": {"_count": 1, "forward": {"_count": 1}}}, "lazing": {"_count": 1, "around": {"_count": 1, "outside": {"_count": 1}}}, "enticing": {"_count": 1, "wafts": {"_count": 1, "of": {"_count": 1}}}, "wafts": {"_count": 1, "of": {"_count": 1, "summer": {"_count": 1}}}, "Nastily": {"_count": 1, "Exhausting": {"_count": 1, "Wizarding": {"_count": 1}}}, "Exhausting": {"_count": 1, "Wizarding": {"_count": 1, "Tests": {"_count": 1}}}, "Tests": {"_count": 2, "the": {"_count": 1, "highest": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}}, "qualification": {"_count": 1, "Hogwarts": {"_count": 1, "offered": {"_count": 1}}}, "edgy": {"_count": 2, "and": {"_count": 1, "gave": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "column": {"_count": 7, "read": {"_count": 1, "Monday": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "every": {"_count": 1, "Wednesday": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "wearing": {"_count": 1, "magnificent": {"_count": 1}}}, "Lunch": {"_count": 3, "1": {"_count": 1, "oclock": {"_count": 1}}, "was": {"_count": 1, "an": {"_count": 1}}, "said": {"_count": 1, "Mrs": {"_count": 1}}}, "liable": {"_count": 1, "to": {"_count": 1, "explode": {"_count": 1}}}, "copied": {"_count": 12, "down": {"_count": 4, "these": {"_count": 1}, "their": {"_count": 1}, "Professor": {"_count": 1}, "the": {"_count": 1}}, "these": {"_count": 1, "words": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "almost": {"_count": 1, "word": {"_count": 1}}, "everything": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 2, "out": {"_count": 1}, "onto": {"_count": 1}}, "out": {"_count": 1, "all": {"_count": 1}}, "her": {"_count": 1, "blasting": {"_count": 1}}}, "Numerology": {"_count": 3, "and": {"_count": 2, "Gramatica": {"_count": 1}, "Grammatica": {"_count": 1}}, "for": {"_count": 1, "ages": {"_count": 1}}}, "Gramatica": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "heaps": {"_count": 5, "of": {"_count": 4, "parchment": {"_count": 1}, "objects": {"_count": 1}, "rubbish": {"_count": 1}, "trunks": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "rustle": {"_count": 13, "at": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 6, "his": {"_count": 1}, "wings": {"_count": 1}, "movement": {"_count": 1}, "parchment": {"_count": 1}, "robes": {"_count": 1}, "the": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "as": {"_count": 1, "somebody": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 1}, "saw": {"_count": 1}}, "up": {"_count": 1, "from": {"_count": 1}}, "somewhere": {"_count": 1, "to": {"_count": 1}}}, "executioner": {"_count": 12, "": {"_count": 3, ".": {"_count": 1}, "!": {"_count": 2}}, "to": {"_count": 1, "the": {"_count": 1}}, "Macnair": {"_count": 2, "hes": {"_count": 1}, "": {"_count": 1}}, "were": {"_count": 1, "coming": {"_count": 1}}, "Walden": {"_count": 1, "Macnair": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "snarling": {"_count": 1}}, "the": {"_count": 1, "snap": {"_count": 1}}}, "noticeably": {"_count": 1, "subdued": {"_count": 1, "since": {"_count": 1}}}, "swagger": {"_count": 3, "over": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "imitating": {"_count": 3, "Hermione": {"_count": 1, "and": {"_count": 1}}, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}}, "Exam": {"_count": 1, "week": {"_count": 1, "began": {"_count": 1}}}, "bemoaning": {"_count": 1, "the": {"_count": 1, "difficulty": {"_count": 1}}}, "tasks": {"_count": 25, "they": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "will": {"_count": 1, "still": {"_count": 1}}, "are": {"_count": 2, "going": {"_count": 2}}, "the": {"_count": 1, "champions": {"_count": 1}}, "spaced": {"_count": 1, "throughout": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "that": {"_count": 1, "not": {"_count": 1}}, "my": {"_count": 1, "bet": {"_count": 1}}, "ahead": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 2, "do": {"_count": 1}, "go": {"_count": 1}}, "about": {"_count": 1, "to": {"_count": 1}}, "really": {"_count": 1, "very": {"_count": 1}}, "not": {"_count": 1, "till": {"_count": 1}}, "without": {"_count": 1, "arousing": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}}, "turtle": {"_count": 2, "which": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "its": {"_count": 1}}}, "tortoises": {"_count": 1, "supposed": {"_count": 1, "to": {"_count": 1}}}, "willowpatterned": {"_count": 2, "shell": {"_count": 1, "dyou": {"_count": 1}}, "legs": {"_count": 1, "and": {"_count": 1}}}, "hasty": {"_count": 6, "lunch": {"_count": 1, "it": {"_count": 1}}, "steps": {"_count": 1, "backward": {"_count": 1}}, "inaudible": {"_count": 1, "spell": {"_count": 1}}, "pat": {"_count": 1, "on": {"_count": 1}}, "questions": {"_count": 1, "they": {"_count": 1}}, "chorus": {"_count": 1, "of": {"_count": 1}}}, "overdid": {"_count": 1, "his": {"_count": 1, "out": {"_count": 1}}}, "partnering": {"_count": 1, "him": {"_count": 1, "ended": {"_count": 1}}}, "presided": {"_count": 2, "over": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "Dumbledores": {"_count": 1}}}, "flobberworm": {"_count": 5, "had": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "says": {"_count": 1, "Draco": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "flourished": {"_count": 2, "best": {"_count": 1, "if": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "pretense": {"_count": 12, "of": {"_count": 4, "checking": {"_count": 1}, "sportsmanship": {"_count": 1}, "helping": {"_count": 1}, "scouring": {"_count": 1}}, "Ron": {"_count": 1, "pushed": {"_count": 1}}, "that": {"_count": 2, "Aunt": {"_count": 1}, "he": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 1, "warmth": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "unqualified": {"_count": 3, "disaster": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wizard": {"_count": 1, "kid": {"_count": 1}}}, "disaster": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Confusing": {"_count": 3, "Concoction": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "Befuddlement": {"_count": 2}}}, "Concoction": {"_count": 1, "to": {"_count": 1, "thicken": {"_count": 1}}}, "thicken": {"_count": 1, "and": {"_count": 1, "Snape": {"_count": 1}}}, "witchhunts": {"_count": 1, "while": {"_count": 1, "wishing": {"_count": 1}}}, "choco": {"_count": 1, "nut": {"_count": 1, "sundaes": {"_count": 1}}}, "bakinghot": {"_count": 1, "sun": {"_count": 1, "then": {"_count": 1}}}, "sunburnt": {"_count": 1, "necks": {"_count": 1, "thinking": {"_count": 1}}}, "compiled": {"_count": 1, "the": {"_count": 1, "most": {"_count": 1}}}, "obstacle": {"_count": 3, "course": {"_count": 1, "outside": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}}, "wade": {"_count": 3, "across": {"_count": 1, "a": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 1, "and": {"_count": 1}}}, "paddling": {"_count": 1, "pool": {"_count": 1, "containing": {"_count": 1}}}, "squish": {"_count": 1, "their": {"_count": 1, "way": {"_count": 1}}}, "marsh": {"_count": 2, "while": {"_count": 1, "ignoring": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}}, "successfully": {"_count": 8, "confused": {"_count": 1, "him": {"_count": 1}}, "gone": {"_count": 1, "into": {"_count": 1}}, "proven": {"_count": 1, "again": {"_count": 1}}, "vanished": {"_count": 2, "her": {"_count": 1}, "your": {"_count": 1}}, "disarmed": {"_count": 1, "Hermione": {"_count": 1}}, "asked": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}}, "waisthigh": {"_count": 2, "into": {"_count": 1, "the": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}}, "quagmire": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "regained": {"_count": 14, "a": {"_count": 1, "grip": {"_count": 1}}, "strength": {"_count": 1, "and": {"_count": 1}}, "consciousness": {"_count": 1, "": {"_count": 1}}, "under": {"_count": 1, "your": {"_count": 1}}, "the": {"_count": 2, "fresh": {"_count": 1}, "dark": {"_count": 1}}, "his": {"_count": 3, "seat": {"_count": 1}, "body": {"_count": 1}, "balance": {"_count": 1}}, "her": {"_count": 1, "balance": {"_count": 1}}, "its": {"_count": 1, "usual": {"_count": 1}}, "since": {"_count": 1, "their": {"_count": 1}}, "control": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}}, "mission": {"_count": 16, "Harry": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "thing": {"_count": 1}}, "wasn": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "find": {"_count": 1}}, "would": {"_count": 1, "YouKnow": {"_count": 1}}, "in": {"_count": 1, "life": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "is": {"_count": 1, "": {"_count": 1}}, "secret": {"_count": 1, "from": {"_count": 1}}}, "execution": {"_count": 5, "of": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "party": {"_count": 1, "had": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "beheading": {"_count": 1}}}, "appeals": {"_count": 1, "already": {"_count": 1, "happened": {"_count": 1}}}, "scheduled": {"_count": 5, "for": {"_count": 4, "this": {"_count": 1}, "Monday": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 1, "take": {"_count": 1}}}, "stoutly": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "withering": {"_count": 4, "before": {"_count": 1, "their": {"_count": 1}}, "the": {"_count": 1, "pumpkin": {"_count": 1}}, "look": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "blackmustached": {"_count": 1, "man": {"_count": 1, "was": {"_count": 1}}}, "thumb": {"_count": 10, "along": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 2, "the": {"_count": 2}}, "over": {"_count": 2, "his": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 2, "the": {"_count": 1}, "Ron": {"_count": 1}}, "and": {"_count": 1, "forefinger": {"_count": 1}}}, "Whyd": {"_count": 1, "you": {"_count": 1, "stop": {"_count": 1}}}, "justice": {"_count": 9, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "for": {"_count": 1, "houseelves": {"_count": 1}}, "was": {"_count": 1, "driven": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "system": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "Cheering": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "argues": {"_count": 1, "his": {"_count": 1, "case": {"_count": 1}}}, "execute": {"_count": 2, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "sunset": {"_count": 1}}}, "cram": {"_count": 3, "in": {"_count": 1, "a": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "themselves": {"_count": 1, "into": {"_count": 1}}}, "unhappily": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "shortened": {"_count": 3, "very": {"_count": 1, "slowly": {"_count": 1}}, "their": {"_count": 1, "lives": {"_count": 1}}, "chain": {"_count": 1, "in": {"_count": 1}}}, "convenient": {"_count": 8, "snorted": {"_count": 1, "Ron": {"_count": 1}}, "place": {"_count": 1, "to": {"_count": 1}}, "highly": {"_count": 1, "convenient": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 1, "you": {"_count": 1}}}, "fraud": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "says": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "on": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "makings": {"_count": 2, "of": {"_count": 2, "a": {"_count": 1}, "an": {"_count": 1}}}, "Seer": {"_count": 6, "she": {"_count": 1, "informed": {"_count": 1}}, "Cassandra": {"_count": 1, "Trelawney": {"_count": 1}}, "blood": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "another": {"_count": 1}}}, "Howd": {"_count": 3, "it": {"_count": 1, "go": {"_count": 1}}, "the": {"_count": 1, "exam": {"_count": 1}}, "you": {"_count": 1, "do": {"_count": 1}}}, "hotter": {"_count": 1, "than": {"_count": 1, "ever": {"_count": 1}}}, "scent": {"_count": 4, "made": {"_count": 1, "Harry": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "clutter": {"_count": 4, "of": {"_count": 2, "chairs": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "overpowering": {"_count": 1, "and": {"_count": 1, "his": {"_count": 1}}}, "resemble": {"_count": 4, "": {"_count": 1, "?": {"_count": 1}}, "extracts": {"_count": 1, "from": {"_count": 1}}, "neon": {"_count": 1, "lines": {"_count": 1}}, "Ollivanders": {"_count": 1, "description": {"_count": 1}}}, "weeping": {"_count": 5, "Hagrid": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "copiously": {"_count": 1, "his": {"_count": 1}}, "silently": {"_count": 1, "into": {"_count": 1}}}, "disappointing": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "fathers": {"_count": 1, "": {"_count": 1}}, "indeed": {"_count": 1, "": {"_count": 1}}}, "harsh": {"_count": 22, "voice": {"_count": 2, "spoke": {"_count": 1}, "quite": {"_count": 1}}, "laugh": {"_count": 4, "and": {"_count": 3}, "": {"_count": 1}}, "maybe": {"_count": 1, "but": {"_count": 1}}, "croaky": {"_count": 1, "voice": {"_count": 1}}, "measures": {"_count": 1, "against": {"_count": 1}}, "and": {"_count": 1, "ragged": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "bark": {"_count": 1, "of": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "female": {"_count": 1, "voice": {"_count": 1}}, "hoarse": {"_count": 1, "tones": {"_count": 1}}, "cry": {"_count": 1, "startled": {"_count": 1}}, "view": {"_count": 1, "the": {"_count": 1}}, "lines": {"_count": 1, "of": {"_count": 1}}}, "unfocused": {"_count": 11, "and": {"_count": 4, "her": {"_count": 1}, "there": {"_count": 1}, "dreamy": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "thinking": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "on": {"_count": 1}}}, "seizure": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "Hermione": {"_count": 1, "who": {"_count": 1}}}, "servants": {"_count": 9, "aid": {"_count": 1, "greater": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "conjure": {"_count": 1}}, "His": {"_count": 1, "slave": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 1, "playthings": {"_count": 1}}, "drive": {"_count": 1, "away": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}}, "aid": {"_count": 15, "greater": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 4, "Mad": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "tent": {"_count": 1, "please": {"_count": 1}}, "to": {"_count": 1, "rulebreaking": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 3}}, "at": {"_count": 1, "once": {"_count": 1}}, "you": {"_count": 1, "in": {"_count": 1}}, "should": {"_count": 1, "the": {"_count": 1}}}, "predict": {"_count": 3, "anything": {"_count": 1, "quite": {"_count": 1}}, "something": {"_count": 1, "for": {"_count": 1}}, "students": {"_count": 1, "answers": {"_count": 1}}}, "resounding": {"_count": 5, "in": {"_count": 1, "his": {"_count": 1}}, "earsplitting": {"_count": 1, "roar": {"_count": 1}}, "CRACK": {"_count": 1, "filled": {"_count": 1}}, "clunk": {"_count": 1, "to": {"_count": 1}}, "crash": {"_count": 1, "onto": {"_count": 1}}}, "longawaited": {"_count": 1, "freedom": {"_count": 1, "by": {"_count": 1}}}, "legible": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Sunset": {"_count": 1, "though": {"_count": 1, "said": {"_count": 1}}}, "\u2018Dissendium": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "flattered": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "skulked": {"_count": 3, "in": {"_count": 1, "an": {"_count": 1}}, "half": {"_count": 1, "hidden": {"_count": 1}}, "an": {"_count": 1, "tried": {"_count": 1}}}, "gilding": {"_count": 2, "the": {"_count": 2, "top": {"_count": 1}, "tops": {"_count": 1}}}, "palefaced": {"_count": 3, "and": {"_count": 1, "trembling": {"_count": 1}}, "champions": {"_count": 1, "": {"_count": 1}}, "portraits": {"_count": 1, "on": {"_count": 1}}}, "shouldnve": {"_count": 2, "come": {"_count": 2, "": {"_count": 2}}}, "helplessness": {"_count": 2, "was": {"_count": 1, "worse": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Wan": {"_count": 2, "some": {"_count": 1, "tea": {"_count": 1}}, "a": {"_count": 1, "closer": {"_count": 1}}}, "overrule": {"_count": 2, "the": {"_count": 2, "Committee": {"_count": 1}, "Minister": {"_count": 1}}}, "Macnair": {"_count": 23, "hes": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 6}, "!": {"_count": 2}}, "the": {"_count": 1, "executioner": {"_count": 1}}, "need": {"_count": 1, "to": {"_count": 1}}, "youre": {"_count": 1, "supposed": {"_count": 1}}, "came": {"_count": 1, "Dumbledores": {"_count": 1}}, "if": {"_count": 1, "Buckbeak": {"_count": 1}}, "Fudge": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 2, "Fudge": {"_count": 1}, "Avery": {"_count": 1}}, "to": {"_count": 1, "murder": {"_count": 1}}, "returns": {"_count": 1, "with": {"_count": 1}}, "remember": {"_count": 1, "him": {"_count": 1}}, "an": {"_count": 1, "the": {"_count": 1}}, "Buckbeaks": {"_count": 1, "wouldbe": {"_count": 1}}, "thrown": {"_count": 1, "across": {"_count": 1}}}, "Wrote": {"_count": 1, "me": {"_count": 1, "this": {"_count": 1}}}, "mornin": {"_count": 7, "": {"_count": 4, ".": {"_count": 4}}, "mind": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "fell": {"_count": 1}}, "we": {"_count": 1, "went": {"_count": 1}}}, "Yehre": {"_count": 6, "ter": {"_count": 1, "go": {"_count": 1}}, "not": {"_count": 2, "sposed": {"_count": 1}, "serious": {"_count": 1}}, "goin": {"_count": 3, "ter": {"_count": 3}}}, "Silent": {"_count": 1, "tears": {"_count": 1, "were": {"_count": 1}}}, "Scabbersl": {"_count": 1, "Ron": {"_count": 1, "gaped": {"_count": 1}}}, "trotted": {"_count": 5, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "to": {"_count": 1, "meet": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "toward": {"_count": 1}}}, "mustn": {"_count": 1, "find": {"_count": 1, "yeh": {"_count": 1}}}, "unreal": {"_count": 2, "and": {"_count": 1, "even": {"_count": 1}}, "glitter": {"_count": 1, "after": {"_count": 1}}}, "purpletinged": {"_count": 1, "grey": {"_count": 1, "but": {"_count": 1}}}, "grey": {"_count": 1, "but": {"_count": 1, "to": {"_count": 1}}}, "mens": {"_count": 4, "voices": {"_count": 1, "": {"_count": 1}}, "long": {"_count": 1, "cloaks": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "footsteps": {"_count": 1, "": {"_count": 1}}}, "everyonell": {"_count": 1, "hear": {"_count": 1, "us": {"_count": 1}}}, "male": {"_count": 11, "voices": {"_count": 1, "a": {"_count": 1}}, "unicorn": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 3, "rang": {"_count": 1}, "that": {"_count": 1}, "": {"_count": 1}}, "an": {"_count": 1, "five": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "female": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "line": {"_count": 2, "": {"_count": 2}}}, "RAT": {"_count": 1, "AND": {"_count": 1, "DOG": {"_count": 1}}}, "DOG": {"_count": 1, "Harrys": {"_count": 1, "mind": {"_count": 1}}}, "rays": {"_count": 5, "of": {"_count": 2, "the": {"_count": 1}, "light": {"_count": 1}}, "which": {"_count": 1, "intermingle": {"_count": 1}}, "mingled": {"_count": 1, "with": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}}, "longshadowed": {"_count": 1, "grounds": {"_count": 1, "": {"_count": 1}}}, "paperwhite": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}}, "clamping": {"_count": 1, "his": {"_count": 1, "hand": {"_count": 1}}}, "Fudgell": {"_count": 2, "be": {"_count": 1, "out": {"_count": 1}}, "make": {"_count": 1, "sure": {"_count": 1}}}, "eerily": {"_count": 6, "in": {"_count": 1, "the": {"_count": 1}}, "graylit": {"_count": 1, "water": {"_count": 1}}, "were": {"_count": 1, "two": {"_count": 1}}, "they": {"_count": 1, "drifted": {"_count": 1}}, "bound": {"_count": 1, "his": {"_count": 1}}, "still": {"_count": 1, "as": {"_count": 1}}}, "sprint": {"_count": 8, "it": {"_count": 1, "was": {"_count": 1}}, "Hermione": {"_count": 1, "behind": {"_count": 1}}, "toward": {"_count": 2, "them": {"_count": 1}, "the": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 1, "earnest": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "up": {"_count": 1}}}, "Gotchal": {"_count": 1, "Get": {"_count": 1, "off": {"_count": 1}}}, "paleeyed": {"_count": 1, "jetblack": {"_count": 1, "dog": {"_count": 1}}}, "inchlong": {"_count": 1, "teeth": {"_count": 1, "But": {"_count": 1}}}, "Dazed": {"_count": 2, "feeling": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "blinking": {"_count": 1}}}, "brutes": {"_count": 1, "hair": {"_count": 1, "but": {"_count": 1}}}, "base": {"_count": 11, "of": {"_count": 6, "the": {"_count": 4}, "her": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "treachery": {"_count": 2, "if": {"_count": 1}, "I": {"_count": 1}}, "thats": {"_count": 1, "an": {"_count": 1}}}, "torso": {"_count": 8, "were": {"_count": 2, "slipping": {"_count": 1}, "also": {"_count": 1}}, "of": {"_count": 2, "Cedric": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "seemed": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 1, "trapping": {"_count": 1}}, "squeezing": {"_count": 1, "the": {"_count": 1}}}, "lethally": {"_count": 2, "through": {"_count": 2, "the": {"_count": 2}}}, "Abruptly": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "leaf": {"_count": 6, "twitched": {"_count": 1, "or": {"_count": 1}}, "outta": {"_count": 1, "Professor": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "in": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bentbacked": {"_count": 1, "after": {"_count": 1, "Crookshanks": {"_count": 1}}}, "bobbed": {"_count": 6, "in": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "bearing": {"_count": 1}}, "along": {"_count": 1, "a": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "disordered": {"_count": 1, "dusty": {"_count": 1, "room": {"_count": 1}}}, "Paper": {"_count": 1, "was": {"_count": 1, "peeling": {"_count": 1}}}, "hallway": {"_count": 18, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 3, "up": {"_count": 1}, "the": {"_count": 1}, "into": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}, "below": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "now": {"_count": 1}}, "tiled": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 1, "large": {"_count": 1}}, "of": {"_count": 1, "her": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "lit": {"_count": 1}}, "lined": {"_count": 1, "with": {"_count": 1}}}, "Ghosts": {"_count": 2, "didnt": {"_count": 1, "do": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}}, "stripe": {"_count": 1, "had": {"_count": 1, "been": {"_count": 1}}}, "Nox": {"_count": 2, "they": {"_count": 1, "whispered": {"_count": 1}}, "extinguishing": {"_count": 1, "his": {"_count": 1}}}, "trap": {"_count": 15, "What": {"_count": 1, "Hes": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}, "around": {"_count": 1, "her": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "nor": {"_count": 1, "that": {"_count": 1}}, "shut": {"_count": 2, "Yes": {"_count": 1}, "": {"_count": 1}}, "us": {"_count": 1, "What": {"_count": 1}}}, "Animagus": {"_count": 18, "": {"_count": 7, ".": {"_count": 7}}, "said": {"_count": 2, "Black": {"_count": 1}, "Sirius": {"_count": 1}}, "transformation": {"_count": 1, "can": {"_count": 1}}, "had": {"_count": 1, "nothing": {"_count": 1}}, "Pettigrew": {"_count": 1, "I": {"_count": 1}}, "like": {"_count": 1, "Sirius": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "so": {"_count": 1, "we": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}}, "Brave": {"_count": 1, "of": {"_count": 1, "you": {"_count": 1}}}, "slaughtering": {"_count": 1, "all": {"_count": 1, "those": {"_count": 1}}}, "HE": {"_count": 22, "KILLED": {"_count": 2, "MY": {"_count": 1}, "THEM": {"_count": 1}}, "WAS": {"_count": 2, "WRONG": {"_count": 1}, "THEIR": {"_count": 1}}, "SAID": {"_count": 2, "SO": {"_count": 1}, "HE": {"_count": 1}}, "DIDNT": {"_count": 1, "DISAPPARATE": {"_count": 1}}, "DID": {"_count": 2, "IT": {"_count": 2}}, "GOT": {"_count": 4, "OFF": {"_count": 3}, "DID": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 3}}, "ALWAYS": {"_count": 2, "LETS": {"_count": 2}}, "KNEW": {"_count": 1, "WHAT": {"_count": 1}}, "EVER": {"_count": 1, "FEARED": {"_count": 1}}, "IS": {"_count": 1, "NOT": {"_count": 1}}, "TOLD": {"_count": 1, "VOLDEMORT": {"_count": 1}}}, "KILLED": {"_count": 4, "MY": {"_count": 1, "MUM": {"_count": 1}}, "THEM": {"_count": 1, "": {"_count": 1}}, "SIRIUS": {"_count": 1, "": {"_count": 1}}, "HIM": {"_count": 1, "ILL": {"_count": 1}}}, "MUM": {"_count": 2, "AND": {"_count": 2, "DAD": {"_count": 2}}}, "DAD": {"_count": 3, "": {"_count": 2, "!": {"_count": 2}}, "GOT": {"_count": 1, "THE": {"_count": 1}}}, "restraint": {"_count": 6, "and": {"_count": 2, "lunged": {"_count": 1}, "a": {"_count": 1}}, "was": {"_count": 1, "bound": {"_count": 1}}, "to": {"_count": 1, "prevent": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}}, "fray": {"_count": 4, "both": {"_count": 1, "sets": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "flew": {"_count": 1}}, "myself": {"_count": 1, "Harry": {"_count": 1}}}, "bruise": {"_count": 6, "was": {"_count": 1, "rising": {"_count": 1}}, "on": {"_count": 2, "Firenzes": {"_count": 1}, "his": {"_count": 1}}, "remover": {"_count": 1, "": {"_count": 1}}, "already": {"_count": 1, "blooming": {"_count": 1}}, "of": {"_count": 1, "an": {"_count": 1}}}, "urgency": {"_count": 3, "in": {"_count": 2, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}}, "tightening": {"_count": 6, "on": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "bowstrings": {"_count": 1}}, "his": {"_count": 2, "grip": {"_count": 2}}, "over": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}}, "avenge": {"_count": 2, "his": {"_count": 1, "mother": {"_count": 1}}, "my": {"_count": 1, "dear": {"_count": 1}}}, "lengthened": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "stride": {"_count": 1}}}, "Muffled": {"_count": 1, "footsteps": {"_count": 1, "were": {"_count": 1}}}, "WERE": {"_count": 4, "UP": {"_count": 2, "HERE": {"_count": 2}}, "HIS": {"_count": 1, "SPY": {"_count": 1}}, "NOT": {"_count": 1, "CONFUNDED": {"_count": 1}}}, "QUICK": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "convulsively": {"_count": 6, "Do": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "nouA": {"_count": 1, "said": {"_count": 1, "a": {"_count": 1}}}, "deftly": {"_count": 1, "then": {"_count": 1, "moved": {"_count": 1}}}, "protectively": {"_count": 1, "across": {"_count": 1, "his": {"_count": 1}}}, "expressionless": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 1, "the": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 3}}, "but": {"_count": 1, "his": {"_count": 1}}}, "Mystified": {"_count": 1, "Harry": {"_count": 1, "glanced": {"_count": 1}}}, "switched": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "abruptly": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "gaze": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 2, "traveling": {"_count": 1}, "Kingsley": {"_count": 1}}}, "embraced": {"_count": 4, "Black": {"_count": 1, "like": {"_count": 1}}, "me": {"_count": 1, "with": {"_count": 1}}, "Dudley": {"_count": 1, "rather": {"_count": 1}}, "the": {"_count": 1, "possibility": {"_count": 1}}}, "wildeyed": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Ron": {"_count": 1, "got": {"_count": 1}}}, "wavering": {"_count": 4, "out": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "beams": {"_count": 1, "and": {"_count": 1}}, "light": {"_count": 1, "and": {"_count": 1}}}, "Siriuss": {"_count": 125, "friend": {"_count": 1, "but": {"_count": 1}}, "sentence": {"_count": 1, "": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "escape": {"_count": 1, "": {"_count": 1}}, "letter": {"_count": 6, "": {"_count": 1}, "in": {"_count": 2}, "tied": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}}, "complete": {"_count": 1, "absence": {"_count": 1}}, "letters": {"_count": 1, "which": {"_count": 1}}, "reply": {"_count": 4, "would": {"_count": 1}, "and": {"_count": 1}, "off": {"_count": 1}, "than": {"_count": 1}}, "answer": {"_count": 1, "was": {"_count": 1}}, "head": {"_count": 10, "was": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}, "long": {"_count": 1}, "had": {"_count": 1}, "and": {"_count": 1}, "turning": {"_count": 1}, "would": {"_count": 1}, "turned": {"_count": 1}}, "face": {"_count": 9, "had": {"_count": 1}, "was": {"_count": 2}, "within": {"_count": 1}, "darkened": {"_count": 1}, "": {"_count": 1}, "drained": {"_count": 1}, "the": {"_count": 1}, "whether": {"_count": 1}}, "whereabouts": {"_count": 2, "Harry": {"_count": 1}, "": {"_count": 1}}, "warnings": {"_count": 1, "about": {"_count": 1}}, "wish": {"_count": 1, "of": {"_count": 1}}, "wagging": {"_count": 1, "tail": {"_count": 1}}, "chicken": {"_count": 1, "bones": {"_count": 1}}, "thin": {"_count": 1, "face": {"_count": 1}}, "eyes": {"_count": 2, "became": {"_count": 1}, "turned": {"_count": 1}}, "food": {"_count": 1, "up": {"_count": 1}}, "only": {"_count": 1, "correspondent": {"_count": 1}}, "words": {"_count": 2, "": {"_count": 1}, "however": {"_count": 1}}, "grip": {"_count": 1, "on": {"_count": 1}}, "handwriting": {"_count": 2, "": {"_count": 1}, "Today": {"_count": 1}}, "message": {"_count": 1, "": {"_count": 1}}, "Rons": {"_count": 1, "and": {"_count": 1}}, "house": {"_count": 3, "as": {"_count": 1}, "which": {"_count": 1}, "said": {"_count": 1}}, "voice": {"_count": 2, "sounded": {"_count": 1}, "": {"_count": 1}}, "lap": {"_count": 1, "and": {"_count": 1}}, "right": {"_count": 2, "hand": {"_count": 1}, "stood": {"_count": 1}}, "mum": {"_count": 1, "again": {"_count": 1}}, "grandfather": {"_count": 1, "for": {"_count": 1}}, "mother": {"_count": 6, "to": {"_count": 1}, "grunting": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}, "as": {"_count": 1}}, "untidy": {"_count": 1, "dark": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hair": {"_count": 1, "had": {"_count": 1}}, "meal": {"_count": 1, "and": {"_count": 1}}, "delight": {"_count": 1, "at": {"_count": 1}}, "family": {"_count": 1, "tree": {"_count": 1}}, "purge": {"_count": 1, "of": {"_count": 1}}, "turn": {"_count": 1, "to": {"_count": 1}}, "wand": {"_count": 1, "tip": {"_count": 1}}, "knife": {"_count": 6, "he": {"_count": 1}, "and": {"_count": 1}, "secure": {"_count": 1}, "in": {"_count": 2}, "": {"_count": 1}}, "own": {"_count": 1, "account": {"_count": 1}}, "brother": {"_count": 4, "was": {"_count": 1}, "Regulus": {"_count": 1}, "": {"_count": 1}, "wasnt": {"_count": 1}}, "aid": {"_count": 1, "": {"_count": 1}}, "duel": {"_count": 1, "with": {"_count": 1}}, "bidding": {"_count": 1, "because": {"_count": 1}}, "name": {"_count": 2, "": {"_count": 1}, "thrown": {"_count": 1}}, "death": {"_count": 6, "": {"_count": 2}, "felt": {"_count": 1}, "or": {"_count": 1}, "it": {"_count": 1}, "I": {"_count": 1}}, "will": {"_count": 1, "was": {"_count": 1}}, "personal": {"_count": 1, "possessions": {"_count": 1}}, "living": {"_count": 1, "relatives": {"_count": 1}}, "killer": {"_count": 1, "inherit": {"_count": 1}}, "hands": {"_count": 1, "": {"_count": 1}}, "true": {"_count": 1, "godson": {"_count": 1}}, "stuff": {"_count": 2, "": {"_count": 2}}, "greatgreatgrandfather": {"_count": 2, "raised": {"_count": 1}, "but": {"_count": 1}}, "old": {"_count": 2, "possessions": {"_count": 1}, "bedroom": {"_count": 1}}, "names": {"_count": 1, "usually": {"_count": 1}}, "bike": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "enchanted": {"_count": 1, "mirror": {"_count": 1}}, "parents": {"_count": 1, "had": {"_count": 1}}, "nerve": {"_count": 1, "several": {"_count": 1}}, "bedroom": {"_count": 1, "had": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "shoes": {"_count": 1, "Harry": {"_count": 1}}, "room": {"_count": 1, "lay": {"_count": 1}}, "mirror": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}}, "shiver": {"_count": 11, "passed": {"_count": 1, "over": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "violently": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 1, "even": {"_count": 1}}, "ran": {"_count": 2, "around": {"_count": 1}, "once": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "Prime": {"_count": 1}}, "bouncing": {"_count": 1, "slightly": {"_count": 1}}, "of": {"_count": 1, "loathing": {"_count": 1}}, "There": {"_count": 1, "it": {"_count": 1}}}, "symptoms": {"_count": 6, "meant": {"_count": 1, "": {"_count": 1}}, "listed": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 1, "one": {"_count": 1}}, "to": {"_count": 2, "their": {"_count": 1}, "manifest": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "lunar": {"_count": 1, "chart": {"_count": 1, "and": {"_count": 1}}}, "cleverer": {"_count": 10, "Id": {"_count": 1, "have": {"_count": 1}}, "than": {"_count": 7, "he": {"_count": 1}, "we": {"_count": 1}, "you": {"_count": 2}, "before": {"_count": 1}, "most": {"_count": 1}, "Fudge": {"_count": 1}}, "and": {"_count": 1, "much": {"_count": 1}}, "more": {"_count": 1, "important": {"_count": 1}}}, "trustworthy": {"_count": 7, "AND": {"_count": 1, "HE": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "than": {"_count": 1, "girls": {"_count": 1}}, "No": {"_count": 1, "they": {"_count": 1}}, "students": {"_count": 1, "so": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "WRONG": {"_count": 3, "": {"_count": 2, "!": {"_count": 2}}, "MAN": {"_count": 1, "": {"_count": 1}}}, "VE": {"_count": 3, "BEEN": {"_count": 1, "HELPING": {"_count": 1}}, "GOT": {"_count": 1, "THE": {"_count": 1}}, "YOUR": {"_count": 1, "A": {"_count": 1}}}, "HELPING": {"_count": 2, "HIM": {"_count": 1, "ALL": {"_count": 1}}, "HAND": {"_count": 1, "As": {"_count": 1}}}, "nickname": {"_count": 6, "for": {"_count": 1, "me": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "repeated": {"_count": 1, "Snape": {"_count": 1}}, "is": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 1, "made": {"_count": 1}}}, "pace": {"_count": 22, "up": {"_count": 5, "and": {"_count": 5}}, "given": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "as": {"_count": 1, "they": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "your": {"_count": 1}, "him": {"_count": 1}}, "the": {"_count": 1, "room": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}, "that": {"_count": 1, "Umbridge": {"_count": 1}}, "he": {"_count": 1, "took": {"_count": 1}}, "past": {"_count": 1, "an": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}}, "collide": {"_count": 5, "with": {"_count": 3, "you": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "evenly": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "matched": {"_count": 1, "perhaps": {"_count": 1}}}, "MOONY": {"_count": 1, "WORMTAIL": {"_count": 1, "PADFOOT": {"_count": 1}}}, "WORMTAIL": {"_count": 1, "PADFOOT": {"_count": 1, "AND": {"_count": 1}}}, "PADFOOT": {"_count": 3, "AND": {"_count": 1, "PRONGS": {"_count": 1}}, "RETURNS": {"_count": 1, "One": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}}, "PRONGS": {"_count": 1, "It": {"_count": 1, "took": {"_count": 1}}}, "absurdity": {"_count": 1, "of": {"_count": 1, "this": {"_count": 1}}}, "statement": {"_count": 13, "to": {"_count": 2, "sink": {"_count": 1}, "his": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "without": {"_count": 1, "clearing": {"_count": 1}}, "but": {"_count": 1, "Fudge": {"_count": 1}}, "St": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "": {"_count": 1}}, "before": {"_count": 1, "these": {"_count": 1}}, "Friday": {"_count": 1, "night": {"_count": 1}}, "was": {"_count": 1, "met": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "complete": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}}, "Ridiculous": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "launching": {"_count": 3, "himself": {"_count": 2, "forwards": {"_count": 1}, "at": {"_count": 1}}, "herself": {"_count": 1, "between": {"_count": 1}}}, "forwards": {"_count": 1, "and": {"_count": 1, "dragging": {"_count": 1}}}, "afterwards": {"_count": 3, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}}, "clawing": {"_count": 4, "the": {"_count": 1, "air": {"_count": 1}}, "at": {"_count": 3, "his": {"_count": 1}, "every": {"_count": 1}, "its": {"_count": 1}}}, "piglet": {"_count": 1, "scratching": {"_count": 1, "Rons": {"_count": 1}}}, "hollowed": {"_count": 3, "eyes": {"_count": 1, "were": {"_count": 1}}, "Bellatrix": {"_count": 1, "Lestranges": {"_count": 1}}, "but": {"_count": 1, "all": {"_count": 1}}}, "Remus": {"_count": 59, "": {"_count": 17, ".": {"_count": 6}, "?": {"_count": 7}, "!": {"_count": 4}}, "snarled": {"_count": 2, "Black": {"_count": 2}}, "gasped": {"_count": 1, "Pettigrew": {"_count": 1}}, "I": {"_count": 1, "must": {"_count": 1}}, "said": {"_count": 6, "Black": {"_count": 1}, "Dumbledore": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "Mrs": {"_count": 1}, "Hermione": {"_count": 1}}, "and": {"_count": 4, "James": {"_count": 1}, "MadEye": {"_count": 1}, "Tonks": {"_count": 2}}, "he": {"_count": 3, "said": {"_count": 1}, "can": {"_count": 1}, "indicated": {"_count": 1}}, "Lupin": {"_count": 12, "Arabella": {"_count": 1}, "stood": {"_count": 1}, "half": {"_count": 1}, "": {"_count": 3}, "were": {"_count": 1}, "who": {"_count": 2}, "and": {"_count": 1}, "with": {"_count": 1}, "said": {"_count": 1}}, "says": {"_count": 1, "youre": {"_count": 1}}, "talk": {"_count": 1, "about": {"_count": 1}}, "can": {"_count": 1, "stay": {"_count": 1}}, "is": {"_count": 1, "arriving": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "young": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "tried": {"_count": 1}}, "John": {"_count": 2, "Lupin": {"_count": 2}}, "Im": {"_count": 2, "sorry": {"_count": 2}}, "Remus": {"_count": 1, "come": {"_count": 1}}, "come": {"_count": 1, "back": {"_count": 1}}}, "nutters": {"_count": 5, "both": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "masks": {"_count": 1}}, "like": {"_count": 1, "Hagrid": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "cut": {"_count": 1}}}, "PETER": {"_count": 1, "HES": {"_count": 1, "SCABBERS": {"_count": 1}}}, "overbalanced": {"_count": 3, "and": {"_count": 2, "Harry": {"_count": 1}, "fell": {"_count": 1}}, "slightly": {"_count": 1, "and": {"_count": 1}}}, "Peters": {"_count": 1, "alive": {"_count": 1, "": {"_count": 1}}}, "sensibly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "experiment": {"_count": 3, "with": {"_count": 2, "grindylows": {"_count": 1}, "doxy": {"_count": 1}}, "and": {"_count": 1, "one": {"_count": 1}}}, "tabs": {"_count": 2, "on": {"_count": 2, "witches": {"_count": 1}, "them": {"_count": 1}}}, "marvel": {"_count": 1, "inwardly": {"_count": 1, "at": {"_count": 1}}}, "inwardly": {"_count": 3, "at": {"_count": 1, "the": {"_count": 1}}, "thankful": {"_count": 1, "that": {"_count": 1}}, "cursing": {"_count": 1, "his": {"_count": 1}}}, "unregistered": {"_count": 3, "Animagi": {"_count": 1, "running": {"_count": 1}}, "Animagus": {"_count": 2, "": {"_count": 2}}}, "accord": {"_count": 10, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "supervised": {"_count": 1, "by": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "Professor": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "villagers": {"_count": 10, "used": {"_count": 1, "to": {"_count": 1}}, "heard": {"_count": 1, "the": {"_count": 1}}, "dont": {"_count": 1, "dare": {"_count": 1}}, "of": {"_count": 1, "Little": {"_count": 1}}, "cared": {"_count": 1, "about": {"_count": 1}}, "after": {"_count": 1, "her": {"_count": 1}}, "exchanged": {"_count": 1, "dark": {"_count": 1}}, "involved": {"_count": 1, "in": {"_count": 1}}, "shock": {"_count": 1, "was": {"_count": 1}}, "guessed": {"_count": 1, "that": {"_count": 1}}}, "graying": {"_count": 8, "hair": {"_count": 5, "out": {"_count": 1}, "a": {"_count": 1}, "and": {"_count": 2}, "windswept": {"_count": 1}}, "underpants": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "long": {"_count": 1}}, "teeth": {"_count": 1, "": {"_count": 1}}}, "foolhardy": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "trip": {"_count": 1, "beyond": {"_count": 1}}, "than": {"_count": 1, "anything": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "sober": {"_count": 1, "and": {"_count": 1, "tired": {"_count": 1}}}, "preceding": {"_count": 1, "the": {"_count": 1, "full": {"_count": 1}}}, "harmless": {"_count": 7, "wolf": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "if": {"_count": 1, "indeed": {"_count": 1}}, "with": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "fool": {"_count": 1, "himself": {"_count": 1}}}, "wane": {"_count": 1, "again": {"_count": 1, "": {"_count": 1}}}, "Wolfsbane": {"_count": 3, "Potion": {"_count": 3, "was": {"_count": 1}, "without": {"_count": 1}, "for": {"_count": 1}}}, "fledged": {"_count": 2, "monster": {"_count": 1, "once": {"_count": 1}}, "Patronus": {"_count": 1, "": {"_count": 1}}}, "precautions": {"_count": 7, "there": {"_count": 1, "was": {"_count": 1}}, "put": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}, "we": {"_count": 1, "take": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}, "against": {"_count": 1, "intruders": {"_count": 1}}, "well": {"_count": 1, "leave": {"_count": 1}}}, "smuggled": {"_count": 4, "out": {"_count": 2, "of": {"_count": 2}}, "me": {"_count": 2, "out": {"_count": 1}, "from": {"_count": 1}}}, "raptly": {"_count": 3, "all": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "Dumbledore": {"_count": 1}}, "to": {"_count": 1, "Dumbledores": {"_count": 1}}}, "approach": {"_count": 23, "it": {"_count": 3, "": {"_count": 2}, "from": {"_count": 1}}, "his": {"_count": 2, "master": {"_count": 1}, "request": {"_count": 1}}, "with": {"_count": 1, "care": {"_count": 1}}, "the": {"_count": 2, "teachers": {"_count": 1}, "cliffs": {"_count": 1}}, "something": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "Kings": {"_count": 1}}, "and": {"_count": 1, "turned": {"_count": 1}}, "Slughorn": {"_count": 1, "think": {"_count": 1}}, "any": {"_count": 1, "nearer": {"_count": 1}}, "though": {"_count": 1, "nobody": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "an": {"_count": 1}}, "very": {"_count": 1, "close": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "her": {"_count": 2, "properly": {"_count": 1}, "": {"_count": 1}}, "Ginny": {"_count": 1, "whose": {"_count": 1}}}, "desert": {"_count": 3, "me": {"_count": 3, "the": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}}}, "bearable": {"_count": 3, "but": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 2, "usual": {"_count": 1}, "sitting": {"_count": 1}}}, "transformation": {"_count": 5, "can": {"_count": 1, "go": {"_count": 1}}, "taking": {"_count": 1, "place": {"_count": 1}}, "he": {"_count": 1, "has": {"_count": 1}}, "was": {"_count": 1, "complete": {"_count": 1}}, "in": {"_count": 1, "Transfiguration": {"_count": 1}}}, "freezes": {"_count": 2, "it": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "said": {"_count": 1}}}, "wolfish": {"_count": 2, "but": {"_count": 1, "my": {"_count": 1}}, "characteristics": {"_count": 1, "from": {"_count": 1}}}, "possibilities": {"_count": 6, "were": {"_count": 1, "open": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "Alastor": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}}, "nicknames": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}}, "thoughtless": {"_count": 1, "carried": {"_count": 1, "away": {"_count": 1}}}, "illegally": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "too": {"_count": 1, "Well": {"_count": 1}}, "or": {"_count": 1, "anything": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "must": {"_count": 1}}}, "hardened": {"_count": 5, "and": {"_count": 1, "there": {"_count": 1}}, "hooligan": {"_count": 1, "who": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "instantly": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "selfdisgust": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "admitting": {"_count": 7, "that": {"_count": 4, "Id": {"_count": 2}, "he": {"_count": 1}, "she": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}}, "shunned": {"_count": 2, "all": {"_count": 1, "my": {"_count": 1}}, "normal": {"_count": 1, "society": {"_count": 1}}}, "harshly": {"_count": 11, "taking": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "her": {"_count": 1, "stubby": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "SERVANT": {"_count": 1, "OF": {"_count": 1, "LORD": {"_count": 1}}}, "LORD": {"_count": 3, "VOLDERMORT": {"_count": 1, "Hermione": {"_count": 1}}, "VOLDEMORTS": {"_count": 1, "REQUEST": {"_count": 1}}, "ASCENDING": {"_count": 1, "The": {"_count": 1}}}, "VOLDERMORT": {"_count": 1, "Hermione": {"_count": 1, "screamed": {"_count": 1}}}, "gobletful": {"_count": 3, "along": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "potion": {"_count": 2}}}, "overrode": {"_count": 3, "him": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "when": {"_count": 1}}, "them": {"_count": 1, "with": {"_count": 1}}}, "hideout": {"_count": 4, "Severus": {"_count": 1, "youre": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "I": {"_count": 1, "managed": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}}, "fanatically": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "schoolboy": {"_count": 4, "grudge": {"_count": 1, "worth": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "Thin": {"_count": 2, "snakelike": {"_count": 1, "cords": {"_count": 1}}, "cords": {"_count": 1, "shot": {"_count": 1}}}, "KEEP": {"_count": 4, "QUIET": {"_count": 1, "YOU": {"_count": 1}}, "YOUR": {"_count": 2, "MOUTH": {"_count": 2}}, "OFF": {"_count": 1, "THE": {"_count": 1}}}, "QUIET": {"_count": 2, "YOU": {"_count": 1, "STUPID": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "GIRL": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "UNDERSTAND": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "ME": {"_count": 1, "": {"_count": 1}}}, "Vengeance": {"_count": 1, "is": {"_count": 1, "very": {"_count": 1}}}, "strides": {"_count": 6, "and": {"_count": 3, "blocked": {"_count": 1}, "pulled": {"_count": 1}, "dropped": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "still": {"_count": 1, "so": {"_count": 1}}, "its": {"_count": 1, "long": {"_count": 1}}}, "werewolfs": {"_count": 3, "mind": {"_count": 1, "works": {"_count": 1}}, "name": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}}, "PATHETIC": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "JUST": {"_count": 5, "BECAUSE": {"_count": 2, "THEY": {"_count": 1}, "YOURE": {"_count": 1}}, "CARRY": {"_count": 1, "THEM": {"_count": 1}}, "GOING": {"_count": 1, "TO": {"_count": 1}}, "The": {"_count": 1, "classroom": {"_count": 1}}}, "BECAUSE": {"_count": 2, "THEY": {"_count": 1, "MADE": {"_count": 1}}, "YOURE": {"_count": 1, "ALLOWED": {"_count": 1}}}, "THEY": {"_count": 2, "MADE": {"_count": 1, "A": {"_count": 1}}, "HELPED": {"_count": 1, "HIM": {"_count": 1}}}, "MADE": {"_count": 2, "A": {"_count": 1, "FOOL": {"_count": 1}}, "YOU": {"_count": 1, "SWEAR": {"_count": 1}}}, "EVEN": {"_count": 1, "LISTEN": {"_count": 1, "SILENCE": {"_count": 1}}}, "LISTEN": {"_count": 2, "SILENCE": {"_count": 1, "": {"_count": 1}}, "ROM": {"_count": 1, "I": {"_count": 1}}}, "SPOKEN": {"_count": 1, "TO": {"_count": 1, "LIKE": {"_count": 1}}}, "thanking": {"_count": 4, "me": {"_count": 1, "on": {"_count": 1}}, "Ogden": {"_count": 1, "Merope": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "Slughorn": {"_count": 1, "for": {"_count": 1}}}, "bended": {"_count": 1, "knee": {"_count": 1, "": {"_count": 1}}}, "WAY": {"_count": 3, "POTTER": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}}, "lifeless": {"_count": 6, "Snape": {"_count": 1, "with": {"_count": 1}}, "body": {"_count": 1, "his": {"_count": 1}}, "form": {"_count": 1, "confessed": {"_count": 1}}, "the": {"_count": 1, "mirror": {"_count": 1}}, "and": {"_count": 2, "Voldemort": {"_count": 1}, "when": {"_count": 1}}}, "bonds": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "tying": {"_count": 2, "Harry": {"_count": 1}, "not": {"_count": 1}}}, "millions": {"_count": 1, "of": {"_count": 1, "rats": {"_count": 1}}}, "clawlike": {"_count": 3, "hands": {"_count": 1, "inside": {"_count": 1}}, "hand": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}}, "caption": {"_count": 5, "said": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}, "EILEEN": {"_count": 1, "PRINCE": {"_count": 1}}, "the": {"_count": 1, "door": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "intelligent": {"_count": 3, "of": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "shes": {"_count": 1, "an": {"_count": 1}}}, "communicate": {"_count": 6, "to": {"_count": 1, "him": {"_count": 1}}, "you": {"_count": 1, "must": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 1}, "Mr": {"_count": 1}, "Hermione": {"_count": 1}}, "without": {"_count": 1, "words": {"_count": 1}}}, "jolted": {"_count": 1, "Harry": {"_count": 1, "to": {"_count": 1}}}, "THATS": {"_count": 4, "NOT": {"_count": 1, "TRUE": {"_count": 1}}, "WHY": {"_count": 1, "SLYTHERINS": {"_count": 1}}, "THE": {"_count": 1, "GENERAL": {"_count": 1}}, "GRIPPING": {"_count": 1, "THE": {"_count": 1}}}, "TRUE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "SECRETKEEPER": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "SAID": {"_count": 2, "SO": {"_count": 1, "BEFORE": {"_count": 1}}, "HE": {"_count": 1, "KILLED": {"_count": 1}}}, "BEFORE": {"_count": 2, "YOU": {"_count": 1, "TURNED": {"_count": 1}}, "LILY": {"_count": 1, "AND": {"_count": 1}}}, "TURNED": {"_count": 1, "UP": {"_count": 1, "": {"_count": 1}}}, "THEM": {"_count": 5, "": {"_count": 3, "!": {"_count": 3}}, "THEYRE": {"_count": 1, "HERE": {"_count": 1}}, "ILL": {"_count": 1, "KILL": {"_count": 1}}}, "overbright": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "THREE": {"_count": 4, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "BROTHERS": {"_count": 1, "Harry": {"_count": 1}}}, "bluewhite": {"_count": 3, "light": {"_count": 1, "erupted": {"_count": 1}}, "flames": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "speededup": {"_count": 1, "film": {"_count": 1, "of": {"_count": 1}}}, "cringing": {"_count": 4, "and": {"_count": 1, "wringing": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}}, "snarling": {"_count": 10, "on": {"_count": 1, "the": {"_count": 1}}, "noise": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "each": {"_count": 2}}, "face": {"_count": 1, "": {"_count": 1}}, "Frisbee": {"_count": 1, "ducked": {"_count": 1}}, "and": {"_count": 1, "attempting": {"_count": 1}}, "beast": {"_count": 1, "seemed": {"_count": 1}}}, "colorless": {"_count": 8, "hair": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "and": {"_count": 1, "bright": {"_count": 1}}, "odorless": {"_count": 1, "potion": {"_count": 1}}, "voice": {"_count": 1, "Yes": {"_count": 1}}, "with": {"_count": 1, "transparent": {"_count": 1}}, "vastness": {"_count": 1, "of": {"_count": 1}}}, "unkempt": {"_count": 9, "and": {"_count": 2, "there": {"_count": 1}, "straggly": {"_count": 1}}, "grass": {"_count": 2, "in": {"_count": 2}}, "gingery": {"_count": 1, "head": {"_count": 1}}, "hair": {"_count": 1, "": {"_count": 1}}, "patch": {"_count": 1, "of": {"_count": 1}}, "around": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "index": {"_count": 9, "was": {"_count": 1, "missing": {"_count": 1}}, "of": {"_count": 2, "Basic": {"_count": 1}, "Weird": {"_count": 1}}, "finger": {"_count": 4, "of": {"_count": 1}, "over": {"_count": 1}, "right": {"_count": 1}, "hovering": {"_count": 1}}, "until": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "skulllike": {"_count": 3, "than": {"_count": 1, "ever": {"_count": 1}}, "appearance": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "looming": {"_count": 1}}}, "fathomless": {"_count": 2, "eyes": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 1, "eyes": {"_count": 1}}}, "mirthless": {"_count": 7, "laugh": {"_count": 4, "that": {"_count": 1}, "cold": {"_count": 1}, "": {"_count": 2}}, "laughter": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "smile": {"_count": 1, "curled": {"_count": 1}}}, "crosser": {"_count": 1, "doublecrossed": {"_count": 1, "them": {"_count": 1}}}, "doublecrossed": {"_count": 1, "them": {"_count": 1, "": {"_count": 1}}}, "biding": {"_count": 4, "their": {"_count": 3, "time": {"_count": 3}}, "his": {"_count": 1, "time": {"_count": 1}}}, "error": {"_count": 3, "of": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 1, "acted": {"_count": 1}}}, "madness": {"_count": 12, "Remus": {"_count": 1, "I": {"_count": 1}}, "is": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "talking": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "heard": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "utter": {"_count": 1, "madness": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}}, "bearsized": {"_count": 1, "dog": {"_count": 1, "he": {"_count": 1}}}, "venomously": {"_count": 1, "that": {"_count": 1, "Pettigrew": {"_count": 1}}}, "bluff": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "talentless": {"_count": 1, "thing": {"_count": 1, "like": {"_count": 1}}}, "lunacy": {"_count": 1, "but": {"_count": 1, "he": {"_count": 1}}}, "ashen": {"_count": 1, "color": {"_count": 1, "of": {"_count": 1}}}, "courteously": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "I": {"_count": 2, "hope": {"_count": 1}, "cannot": {"_count": 1}}, "most": {"_count": 1, "authorities": {"_count": 1}}}, "maimed": {"_count": 7, "hand": {"_count": 1, "": {"_count": 1}}, "several": {"_count": 1, "pupils": {"_count": 1}}, "resides": {"_count": 1, "inside": {"_count": 1}}, "and": {"_count": 1, "diminished": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "creature": {"_count": 1, "trembled": {"_count": 1}}, "fewer": {"_count": 1, "families": {"_count": 1}}}, "playground": {"_count": 6, "before": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "asphalt": {"_count": 1, "she": {"_count": 1}}, "was": {"_count": 1, "deserted": {"_count": 1}}, "gate": {"_count": 1, "and": {"_count": 1}}}, "protector": {"_count": 2, "regained": {"_count": 1, "strength": {"_count": 1}}, "said": {"_count": 1, "Mundungus": {"_count": 1}}}, "ability": {"_count": 23, "to": {"_count": 14, "talk": {"_count": 1}, "cope": {"_count": 1}, "converse": {"_count": 1}, "behave": {"_count": 1}, "extract": {"_count": 1}, "react": {"_count": 1}, "speak": {"_count": 1}, "know": {"_count": 2}, "love": {"_count": 1}, "persuade": {"_count": 1}, "express": {"_count": 1}, "sense": {"_count": 1}, "accept": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "of": {"_count": 1, "yours": {"_count": 1}}, "protect": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "one": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}, "Incarc": {"_count": 1, "Harry": {"_count": 1}}}, "pondering": {"_count": 3, "his": {"_count": 2, "answer": {"_count": 1}, "mothers": {"_count": 1}}, "the": {"_count": 1, "meaning": {"_count": 1}}}, "sane": {"_count": 4, "and": {"_count": 1, "knowing": {"_count": 1}}, "as": {"_count": 2, "you": {"_count": 1}, "I": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}}, "hypnotized": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "Crookshanks": {"_count": 1}}}, "allies": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "welcomed": {"_count": 4, "back": {"_count": 2, "with": {"_count": 1}, "here": {"_count": 1}}, "a": {"_count": 1, "dementor": {"_count": 1}}, "the": {"_count": 1, "oncoming": {"_count": 1}}}, "honors": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "obsession": {"_count": 10, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 1, "it": {"_count": 1}}, "But": {"_count": 1, "whats": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "you": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "rival": {"_count": 1}}}, "mainland": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "journeyed": {"_count": 5, "north": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 2, "his": {"_count": 2}}, "miles": {"_count": 1, "and": {"_count": 1}}, "together": {"_count": 1, "into": {"_count": 1}}}, "Believe": {"_count": 4, "me": {"_count": 4, "croaked": {"_count": 1}, "Harry": {"_count": 1}, "if": {"_count": 1}, "being": {"_count": 1}}}, "Throat": {"_count": 1, "too": {"_count": 1, "tight": {"_count": 1}}}, "groveling": {"_count": 1, "his": {"_count": 1, "hands": {"_count": 1}}}, "recoiled": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "slightly": {"_count": 1, "as": {"_count": 1}}, "clutching": {"_count": 1, "his": {"_count": 1}}, "looking": {"_count": 1, "horrified": {"_count": 1}}}, "revulsion": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "Wormtails": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "and": {"_count": 2, "pity": {"_count": 1}, "hatred": {"_count": 1}}, "mixed": {"_count": 1, "with": {"_count": 1}}, "He": {"_count": 1, "wished": {"_count": 1}}}, "boast": {"_count": 3, "about": {"_count": 1, "Peter": {"_count": 1}}, "that": {"_count": 1, "theirs": {"_count": 1}}, "of": {"_count": 1, "it": {"_count": 1}}}, "Sweet": {"_count": 4, "girl": {"_count": 1, "": {"_count": 1}}, "Hufflepuff": {"_count": 1, "from": {"_count": 1}}, "said": {"_count": 1, "Slughorn": {"_count": 1}}, "of": {"_count": 1, "you": {"_count": 1}}}, "knelt": {"_count": 13, "trembling": {"_count": 1, "uncontrollably": {"_count": 1}}, "down": {"_count": 5, "and": {"_count": 1}, "too": {"_count": 1}, "quickly": {"_count": 1}, "in": {"_count": 1}, "beside": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 2, "man": {"_count": 1}, "small": {"_count": 1}}, "between": {"_count": 1, "two": {"_count": 1}}, "over": {"_count": 2, "Malfoy": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 1, "beside": {"_count": 1}}}, "SPEAK": {"_count": 1, "TO": {"_count": 1, "HARRY": {"_count": 1}}}, "FACE": {"_count": 1, "HIM": {"_count": 1, "": {"_count": 1}}}, "JAMES": {"_count": 3, "IN": {"_count": 1, "FRONT": {"_count": 1}}, "DIED": {"_count": 1, "": {"_count": 1}}, "POTTER": {"_count": 1, "BORN": {"_count": 1}}}, "LIE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "YOUD": {"_count": 3, "BEEN": {"_count": 1, "PASSING": {"_count": 1}}, "HAVE": {"_count": 1, "SENT": {"_count": 1}}, "LIKE": {"_count": 1, "TO": {"_count": 1}}}, "PASSING": {"_count": 1, "INFORMATION": {"_count": 1, "TO": {"_count": 1}}}, "INFORMATION": {"_count": 1, "TO": {"_count": 1, "HIM": {"_count": 1}}}, "YEAR": {"_count": 2, "BEFORE": {"_count": 1, "LILY": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "LILY": {"_count": 2, "AND": {"_count": 1, "JAMES": {"_count": 1}}, "POTTER": {"_count": 1, "BORN": {"_count": 1}}}, "HIS": {"_count": 1, "SPY": {"_count": 1, "": {"_count": 1}}}, "SPY": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "THEN": {"_count": 2, "YOU": {"_count": 1, "SHOULD": {"_count": 1}}, "I": {"_count": 1, "DONT": {"_count": 1}}}, "SHOULD": {"_count": 4, "HAVE": {"_count": 1, "DIED": {"_count": 1}}, "I": {"_count": 1, "KNOW": {"_count": 1}}, "ANYONE": {"_count": 1, "BOTHER": {"_count": 1}}, "BE": {"_count": 1, "WORRYING": {"_count": 1}}}, "RATHER": {"_count": 1, "THAN": {"_count": 1, "BETRAY": {"_count": 1}}}, "THAN": {"_count": 2, "BETRAY": {"_count": 1, "YOUR": {"_count": 1}}, "YOU": {"_count": 1, "TWOVE": {"_count": 1}}}, "BETRAY": {"_count": 1, "YOUR": {"_count": 1, "FRIENDS": {"_count": 1}}}, "FRIENDS": {"_count": 1, "AS": {"_count": 1, "WE": {"_count": 1}}}, "AS": {"_count": 3, "WE": {"_count": 1, "WOULD": {"_count": 1}}, "IF": {"_count": 1, "WE": {"_count": 1}}, "HOGWARTS": {"_count": 1, "HEADMASTER": {"_count": 1}}}, "DONE": {"_count": 2, "FOR": {"_count": 1, "YOU": {"_count": 1}}, "HER": {"_count": 1, "A": {"_count": 1}}}, "wheezes": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "gagged": {"_count": 9, "": {"_count": 3, ".": {"_count": 3}}, "Black": {"_count": 1, "naturally": {"_count": 1}}, "and": {"_count": 1, "sprayed": {"_count": 1}}, "now": {"_count": 1, "or": {"_count": 1}}, "on": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "The": {"_count": 1, "stuff": {"_count": 1}}}, "businesslike": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "tone": {"_count": 2, "": {"_count": 1}, "All": {"_count": 1}}, "and": {"_count": 1, "now": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}}, "strap": {"_count": 5, "your": {"_count": 1, "leg": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "ran": {"_count": 1}}, "around": {"_count": 1, "her": {"_count": 1}}}, "Ferula": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Bandages": {"_count": 1, "spun": {"_count": 1, "up": {"_count": 1}}}, "splint": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "overenthusiastic": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "if": {"_count": 1, "truth": {"_count": 1}}}, "Mobilicorpus": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "lolling": {"_count": 8, "unpleasantly": {"_count": 1, "like": {"_count": 1}}, "head": {"_count": 1, "on": {"_count": 1}}, "around": {"_count": 1, "like": {"_count": 1}}, "onto": {"_count": 1, "their": {"_count": 1}}, "out": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "against": {"_count": 1, "a": {"_count": 1}}, "open": {"_count": 1, "his": {"_count": 1}}}, "grotesque": {"_count": 6, "puppet": {"_count": 1, "": {"_count": 1}}, "shapes": {"_count": 1, "": {"_count": 1}}, "giant": {"_count": 1, "bird": {"_count": 1}}, "face": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "bubbles": {"_count": 1, "the": {"_count": 1}}}, "DEMENTORS": {"_count": 2, "KISS": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "KISS": {"_count": 1, "Harry": {"_count": 1, "had": {"_count": 1}}}, "entrants": {"_count": 2, "in": {"_count": 1, "a": {"_count": 1}}, "were": {"_count": 1, "likely": {"_count": 1}}}, "sixlegged": {"_count": 1, "race": {"_count": 1, "": {"_count": 1}}}, "race": {"_count": 18, "": {"_count": 5, ".": {"_count": 5}}, "getting": {"_count": 1, "rid": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "is": {"_count": 4, "abou": {"_count": 1}, "run": {"_count": 1}, "set": {"_count": 1}, "most": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "apart": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "replied": {"_count": 1, "the": {"_count": 1}}, "Voldemort": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "creepily": {"_count": 1, "along": {"_count": 1, "his": {"_count": 1}}}, "startling": {"_count": 8, "as": {"_count": 1, "though": {"_count": 1}}, "green": {"_count": 1, "eyes": {"_count": 1}}, "news": {"_count": 1, "": {"_count": 1}}, "amounts": {"_count": 1, "of": {"_count": 1}}, "flashes": {"_count": 1, "of": {"_count": 1}}, "thought": {"_count": 1, "had": {"_count": 1}}, "place": {"_count": 1, "in": {"_count": 1}}, "both": {"_count": 1, "of": {"_count": 1}}}, "mask": {"_count": 12, "for": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "excited": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "had": {"_count": 1, "slipped": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "slipped": {"_count": 1, "off": {"_count": 1}}, "of": {"_count": 1, "\u2018Lord": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "bathed": {"_count": 5, "in": {"_count": 5, "moonlight": {"_count": 1}, "a": {"_count": 1}, "silvery": {"_count": 1}, "it": {"_count": 1}, "the": {"_count": 1}}}, "hunching": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "visibly": {"_count": 5, "on": {"_count": 1, "his": {"_count": 1}}, "trembling": {"_count": 1, "from": {"_count": 1}}, "affronted": {"_count": 1, "": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "losing": {"_count": 1, "confidence": {"_count": 1}}}, "bearlike": {"_count": 2, "dog": {"_count": 1, "bounded": {"_count": 1}}, "black": {"_count": 1, "dog": {"_count": 1}}}, "manacle": {"_count": 2, "binding": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 1, "Rons": {"_count": 1}}}, "unsteady": {"_count": 5, "on": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "voice": {"_count": 1, "the": {"_count": 1}}, "statue": {"_count": 1, "unable": {"_count": 1}}, "halt": {"_count": 1, "before": {"_count": 1}}}, "gashes": {"_count": 3, "across": {"_count": 1, "his": {"_count": 1}}, "appeared": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "muzzle": {"_count": 1, "and": {"_count": 1, "back": {"_count": 1}}}, "halfclosed": {"_count": 3, "his": {"_count": 1, "mouth": {"_count": 1}}, "eyelids": {"_count": 1, "heard": {"_count": 1}}, "strips": {"_count": 1, "of": {"_count": 1}}}, "indecision": {"_count": 1, "but": {"_count": 1, "there": {"_count": 1}}}, "lakeshore": {"_count": 1, "they": {"_count": 1, "saw": {"_count": 1}}}, "iVooo": {"_count": 1, "he": {"_count": 1, "moaned": {"_count": 1}}}, "Noooo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "obscure": {"_count": 7, "his": {"_count": 2, "vision": {"_count": 1}, "face": {"_count": 1}}, "branch": {"_count": 1, "of": {"_count": 1}}, "Department": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "odd": {"_count": 1}}, "wizard": {"_count": 1, "about": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}}, "encircling": {"_count": 3, "them": {"_count": 2, "": {"_count": 1}, "all": {"_count": 1}}, "grip": {"_count": 1, "that": {"_count": 1}}}, "chant": {"_count": 5, "Expecto": {"_count": 1, "patronum": {"_count": 1}}, "that": {"_count": 1, "went": {"_count": 1}}, "of": {"_count": 2, "Gryffindor": {"_count": 2}}, "as": {"_count": 1, "they": {"_count": 1}}}, "formed": {"_count": 29, "a": {"_count": 9, "solid": {"_count": 1}, "great": {"_count": 2}, "giant": {"_count": 1}, "shortcut": {"_count": 1}, "kind": {"_count": 3}, "vast": {"_count": 1}}, "our": {"_count": 1, "plan": {"_count": 1}}, "thoughts": {"_count": 1, "started": {"_count": 1}}, "the": {"_count": 4, "great": {"_count": 1}, "words": {"_count": 1}, "same": {"_count": 1}, "basis": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 2}, "Harrys": {"_count": 2}}, "itself": {"_count": 1, "into": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "this": {"_count": 1, "terms": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "which": {"_count": 1, "began": {"_count": 1}}, "their": {"_count": 1, "own": {"_count": 1}}, "by": {"_count": 1, "now": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "into": {"_count": 1, "surroundings": {"_count": 1}}}, "Fog": {"_count": 1, "was": {"_count": 1, "clouding": {"_count": 1}}}, "formless": {"_count": 2, "Patronus": {"_count": 1, "he": {"_count": 1}}, "haze": {"_count": 1, "and": {"_count": 1}}}, "paralyzing": {"_count": 4, "terror": {"_count": 1, "filled": {"_count": 1}}, "dart": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "arms": {"_count": 1}}, "cold": {"_count": 1, "choked": {"_count": 1}}}, "Facedown": {"_count": 2, "too": {"_count": 1, "weak": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Fighting": {"_count": 4, "to": {"_count": 1, "stay": {"_count": 1}}, "the": {"_count": 1, "Dark": {"_count": 1}}, "Potter": {"_count": 1, "Weasley": {"_count": 1}}, "them": {"_count": 1, "is": {"_count": 1}}}, "canter": {"_count": 1, "to": {"_count": 1, "a": {"_count": 1}}}, "brightness": {"_count": 5, "somebody": {"_count": 1, "welcoming": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "the": {"_count": 1, "sun": {"_count": 1}}, "was": {"_count": 1, "striped": {"_count": 1}}}, "HERMIONES": {"_count": 2, "SECRET": {"_count": 1, "Shocking": {"_count": 1}}, "HELPING": {"_count": 1, "HAND": {"_count": 1}}}, "Shocking": {"_count": 3, "business": {"_count": 1, "": {"_count": 1}}, "performance": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 1, "Catherine": {"_count": 1}}}, "shocking": {"_count": 10, "": {"_count": 3, ".": {"_count": 3}}, "information": {"_count": 1, "": {"_count": 1}}, "pink": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "story": {"_count": 1, "of": {"_count": 1}}, "though": {"_count": 2, "it": {"_count": 1}, "Albus": {"_count": 1}}}, "miracle": {"_count": 11, "none": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 3}}, "he": {"_count": 2, "managed": {"_count": 1}, "was": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "you": {"_count": 1, "managed": {"_count": 1}}}, "wangle": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "Confundus": {"_count": 3, "Charm": {"_count": 3, "to": {"_count": 2}, "has": {"_count": 1}}}, "possibility": {"_count": 28, "he": {"_count": 1, "was": {"_count": 1}}, "that": {"_count": 14, "he": {"_count": 3}, "there": {"_count": 1}, "Voldemort": {"_count": 2}, "I": {"_count": 1}, "Malfoy": {"_count": 1}, "Zacharias": {"_count": 1}, "somebody": {"_count": 1}, "Voldemorts": {"_count": 1}, "they": {"_count": 1}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}}, "occurred": {"_count": 2, "to": {"_count": 2}}, "of": {"_count": 7, "being": {"_count": 1}, "hearing": {"_count": 1}, "a": {"_count": 1}, "Harrys": {"_count": 1}, "extending": {"_count": 1}, "death": {"_count": 1}, "extracting": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "smothered": {"_count": 1, "him": {"_count": 1}}}, "actions": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "are": {"_count": 1, "always": {"_count": 1}}, "having": {"_count": 1, "received": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "\u2018Nearhuman": {"_count": 1, "intelligence": {"_count": 1}}, "tonight": {"_count": 1, "and": {"_count": 1}}}, "license": {"_count": 5, "by": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "but": {"_count": 1, "as": {"_count": 1}}, "for": {"_count": 1, "trading": {"_count": 1}}}, "treatment": {"_count": 8, "": {"_count": 1, "?": {"_count": 1}}, "they": {"_count": 1, "need": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 1}, "Cattermole": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}, "what": {"_count": 1, "Voldemort": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}}, "Consider": {"_count": 4, "Minister": {"_count": 1, "against": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "position": {"_count": 1}}, "Bellatrix": {"_count": 1, "The": {"_count": 1}}}, "consorting": {"_count": 2, "with": {"_count": 2, "a": {"_count": 1}, "our": {"_count": 1}}}, "groggy": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "was": {"_count": 1}, "disoriented": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}}, "eyelids": {"_count": 22, "too": {"_count": 1, "heavy": {"_count": 1}}, "drooped": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "began": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 2}}, "flickered": {"_count": 3, "": {"_count": 2}, "Harrys": {"_count": 1}}, "flickering": {"_count": 1, "again": {"_count": 1}}, "grew": {"_count": 1, "dark": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "heard": {"_count": 1, "a": {"_count": 1}}, "disorienting": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "face": {"_count": 1}}, "Harry": {"_count": 2, "saw": {"_count": 2}}, "sliding": {"_count": 1, "them": {"_count": 1}}, "fluttered": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "amazes": {"_count": 1, "me": {"_count": 1, "most": {"_count": 1}}}, "retreat": {"_count": 6, "Snape": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "back": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 1, "Bogrod": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}}, "Extraordinary": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "Society": {"_count": 1, "of": {"_count": 1}}}, "stretchers": {"_count": 2, "and": {"_count": 2, "brought": {"_count": 1}, "lifting": {"_count": 1}}}, "gnawing": {"_count": 3, "sensation": {"_count": 1, "grew": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}}, "performing": {"_count": 12, "the": {"_count": 2, "kiss": {"_count": 1}, "charm": {"_count": 1}}, "CrossSpecies": {"_count": 1, "Switches": {"_count": 1}}, "to": {"_count": 1, "Woods": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "an": {"_count": 1, "odd": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "spells": {"_count": 1, "when": {"_count": 1}}, "a": {"_count": 1, "graceful": {"_count": 1}}, "magic": {"_count": 1, "on": {"_count": 1}}, "complicated": {"_count": 1, "figureofeight": {"_count": 1}}}, "agitated": {"_count": 15, "": {"_count": 8, ".": {"_count": 8}}, "voice": {"_count": 2, "": {"_count": 1}, "while": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "kept": {"_count": 1}}, "Obliviator": {"_count": 1, "who": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "faked": {"_count": 5, "his": {"_count": 3, "own": {"_count": 2}, "family": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "it": {"_count": 1, "when": {"_count": 1}}}, "HAVENT": {"_count": 4, "": {"_count": 1, "!": {"_count": 1}}, "BEEN": {"_count": 1, "IN": {"_count": 1}}, "YOU": {"_count": 1, "ALL": {"_count": 1}}, "GOT": {"_count": 1, "ENOUGH": {"_count": 1}}}, "Confunded": {"_count": 7, "both": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "this": {"_count": 1, "morning": {"_count": 1}}, "anyone": {"_count": 1, "lately": {"_count": 1}}, "naturally": {"_count": 1, "he": {"_count": 1}}, "Muggles": {"_count": 1, "": {"_count": 1}}}, "CONFUNDED": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "chunk": {"_count": 13, "of": {"_count": 6, "chocolate": {"_count": 1}, "birthday": {"_count": 1}, "steak": {"_count": 1}, "the": {"_count": 1}, "her": {"_count": 1}, "flesh": {"_count": 1}}, "missing": {"_count": 3, "from": {"_count": 3}}, "with": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 3, "of": {"_count": 3}}}, "hysterically": {"_count": 7, "": {"_count": 5, ".": {"_count": 5}}, "tugging": {"_count": 1, "Dudleys": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "apologies": {"_count": 7, "Poppy": {"_count": 1, "but": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "said": {"_count": 2, "Snape": {"_count": 1}, "Dumbledore": {"_count": 1}}, "Harry": {"_count": 1, "addressed": {"_count": 1}}, "to": {"_count": 1, "anybody": {"_count": 1}}}, "fairy": {"_count": 7, "tale": {"_count": 3, "hes": {"_count": 1}, "Harry": {"_count": 1}, "or": {"_count": 1}}, "lights": {"_count": 2, "meaning": {"_count": 1}, "in": {"_count": 1}}, "eggs": {"_count": 1, "if": {"_count": 1}}, "tales": {"_count": 1, "to": {"_count": 1}}}, "TONGUE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "allowances": {"_count": 1, "I": {"_count": 1, "would": {"_count": 1}}}, "waistcoat": {"_count": 10, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 2, "the": {"_count": 1}, "an": {"_count": 1}}, "and": {"_count": 2, "mopped": {"_count": 1}, "examining": {"_count": 1}}, "threatened": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "taking": {"_count": 1}}, "pocket": {"_count": 1, "": {"_count": 1}}}, "stem": {"_count": 6, "the": {"_count": 5, "flood": {"_count": 2}, "flow": {"_count": 2}, "sudden": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "eyewitnesses": {"_count": 5, "swore": {"_count": 1, "they": {"_count": 1}}, "who": {"_count": 1, "insisted": {"_count": 1}}, "were": {"_count": 1, "half": {"_count": 1}}, "but": {"_count": 1, "anyway": {"_count": 1}}, "inside": {"_count": 1, "Hogwarts": {"_count": 1}}}, "mistrusted": {"_count": 3, "by": {"_count": 1, "most": {"_count": 1}}, "the": {"_count": 1, "police": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "overturning": {"_count": 2, "Siriuss": {"_count": 1, "sentence": {"_count": 1}}, "desks": {"_count": 1, "bawling": {"_count": 1}}}, "solution": {"_count": 11, "out": {"_count": 1, "of": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "would": {"_count": 2, "be": {"_count": 2}}, "is": {"_count": 1, "dont": {"_count": 1}}, "of": {"_count": 2, "strained": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 1, "last": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "love": {"_count": 1, "which": {"_count": 1}}}, "OH": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "NOT": {"_count": 1, "AGAIN": {"_count": 1}}, "NO": {"_count": 1, "YOU": {"_count": 1}}}, "Thirteenth": {"_count": 1, "window": {"_count": 1, "from": {"_count": 1}}}, "hourglass": {"_count": 13, "hanging": {"_count": 1, "from": {"_count": 1}}, "over": {"_count": 1, "three": {"_count": 1}}, "cutting": {"_count": 1, "into": {"_count": 1}}, "thing": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 2, "the": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "take": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}}, "paved": {"_count": 1, "floor": {"_count": 1, "from": {"_count": 1}}}, "Footsteps": {"_count": 6, "across": {"_count": 1, "the": {"_count": 1}}, "echoed": {"_count": 1, "from": {"_count": 1}}, "were": {"_count": 1, "coming": {"_count": 1}}, "and": {"_count": 1, "shouts": {"_count": 1}}, "crossed": {"_count": 2, "the": {"_count": 2}}}, "TimeTurner": {"_count": 5, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "back": {"_count": 1, "under": {"_count": 1}}, "taught": {"_count": 1, "you": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "hadnt": {"_count": 1, "": {"_count": 1}}}, "studies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "screwing": {"_count": 5, "up": {"_count": 5, "his": {"_count": 5}}}, "tops": {"_count": 5, "of": {"_count": 5, "the": {"_count": 2}, "their": {"_count": 2}, "buildings": {"_count": 1}}}, "determinedly": {"_count": 13, "": {"_count": 3, ".": {"_count": 3}}, "back": {"_count": 1, "at": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "avoided": {"_count": 1, "Rons": {"_count": 1}}, "looking": {"_count": 1, "anywhere": {"_count": 1}}, "straight": {"_count": 1, "faces": {"_count": 1}}, "loosening": {"_count": 1, "a": {"_count": 1}}, "not": {"_count": 1, "looking": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "avoiding": {"_count": 1, "one": {"_count": 1}}, "casual": {"_count": 1, "voice": {"_count": 1}}}, "Safe": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "flight": {"_count": 1, "then": {"_count": 1}}}, "Nobodys": {"_count": 3, "supposed": {"_count": 1, "to": {"_count": 1}}, "talking": {"_count": 1, "Harry": {"_count": 1}}, "ever": {"_count": 1, "asked": {"_count": 1}}}, "meddled": {"_count": 3, "with": {"_count": 2, "time": {"_count": 1}, "his": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}}, "selves": {"_count": 3, "by": {"_count": 1, "mistake": {"_count": 1}}, "now": {"_count": 1, "though": {"_count": 1}}, "once": {"_count": 1, "trod": {"_count": 1}}}, "Macnairs": {"_count": 4, "face": {"_count": 2, "appeared": {"_count": 1}, "vanished": {"_count": 1}}, "gone": {"_count": 1, "to": {"_count": 1}}, "persuaded": {"_count": 1, "the": {"_count": 1}}}, "procedure": {"_count": 5, "Macnairs": {"_count": 1, "face": {"_count": 1}}, "that": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "O": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "hereafter": {"_count": 1, "called": {"_count": 1, "the": {"_count": 1}}}, "condemned": {"_count": 3, "shall": {"_count": 1, "be": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "after": {"_count": 1, "attacking": {"_count": 1}}}, "fumble": {"_count": 2, "with": {"_count": 2, "the": {"_count": 1}, "something": {"_count": 1}}}, "sentenced": {"_count": 6, "to": {"_count": 5, "execution": {"_count": 1}, "life": {"_count": 1}, "six": {"_count": 1}, "death": {"_count": 1}, "three": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}}, "Walden": {"_count": 2, "Macnair": {"_count": 2, "": {"_count": 1}, "thrown": {"_count": 1}}}, "witnessed": {"_count": 20, "below": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Potter": {"_count": 1, "storming": {"_count": 1}}, "Lord": {"_count": 1, "Voldemorts": {"_count": 1}}, "and": {"_count": 1, "its": {"_count": 1}}, "in": {"_count": 2, "Dumbledores": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 3, "scene": {"_count": 1}, "attack": {"_count": 1}, "village": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "Katies": {"_count": 1, "accident": {"_count": 1}}, "for": {"_count": 1, "they": {"_count": 1}}, "I": {"_count": 1, "must": {"_count": 1}}, "it": {"_count": 1, "have": {"_count": 1}}, "that": {"_count": 1, "happening": {"_count": 1}}, "or": {"_count": 1, "heard": {"_count": 1}}, "Dumbledores": {"_count": 1, "death": {"_count": 1}}}, "grudging": {"_count": 2, "trot": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 1, "and": {"_count": 1}}}, "huskily": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Musta": {"_count": 1, "pulled": {"_count": 1, "himself": {"_count": 1}}}, "firmer": {"_count": 2, "grip": {"_count": 2, "on": {"_count": 1}, "upon": {"_count": 1}}}, "clump": {"_count": 11, "of": {"_count": 11, "trees": {"_count": 4}, "bushes": {"_count": 4}, "weed": {"_count": 1}, "white": {"_count": 1}, "grape": {"_count": 1}}}, "Gotchcd": {"_count": 1, "Get": {"_count": 1, "off": {"_count": 1}}}, "Clouds": {"_count": 1, "were": {"_count": 1, "obscuring": {"_count": 1}}}, "obscuring": {"_count": 4, "the": {"_count": 2, "moon": {"_count": 1}, "body": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "his": {"_count": 1, "figure": {"_count": 1}}}, "Snaped": {"_count": 1, "never": {"_count": 1, "be": {"_count": 1}}}, "meander": {"_count": 2, "tipsily": {"_count": 1, "up": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}}, "tipsily": {"_count": 1, "up": {"_count": 1, "to": {"_count": 1}}}, "skid": {"_count": 2, "to": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "sent": {"_count": 1}}}, "worms": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "again": {"_count": 1, "": {"_count": 1}}, "coming": {"_count": 1, "out": {"_count": 1}}, "then": {"_count": 1, "snaked": {"_count": 1}}, "at": {"_count": 1, "its": {"_count": 1}}}, "consciousness": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "opened": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}}, "untie": {"_count": 3, "Buckbeak": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "Wormtail": {"_count": 1}}, "by": {"_count": 1, "hand": {"_count": 1}}}, "cantering": {"_count": 4, "along": {"_count": 1, "behind": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}, "softly": {"_count": 1, "up": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}}, "quieten": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "nap": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}}, "howre": {"_count": 4, "we": {"_count": 4, "going": {"_count": 3}, "supposed": {"_count": 1}}}, "Whoever": {"_count": 6, "had": {"_count": 1, "sent": {"_count": 1}}, "conjured": {"_count": 1, "the": {"_count": 1}}, "put": {"_count": 1, "your": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 1, "defending": {"_count": 1}}, "cast": {"_count": 1, "the": {"_count": 1}}}, "glimmers": {"_count": 2, "of": {"_count": 2, "silver": {"_count": 2}}}, "rescuer": {"_count": 1, "to": {"_count": 1, "appear": {"_count": 1}}}, "stag": {"_count": 28, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "had": {"_count": 1, "galloped": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "erupted": {"_count": 3, "from": {"_count": 3}}, "faded": {"_count": 1, "from": {"_count": 1}}, "charged": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "cantered": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "its": {"_count": 1, "always": {"_count": 1}}, "Patronus": {"_count": 2, "": {"_count": 2}}, "soared": {"_count": 1, "from": {"_count": 1}}, "slowed": {"_count": 1, "and": {"_count": 1}}, "an": {"_count": 1, "otter": {"_count": 1}}, "burst": {"_count": 2, "from": {"_count": 2}}, "it": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}, "kept": {"_count": 1, "guardian": {"_count": 1}}}, "antlered": {"_count": 1, "head": {"_count": 1, "": {"_count": 1}}}, "conjuring": {"_count": 6, "stretchers": {"_count": 1, "and": {"_count": 1}}, "tight": {"_count": 1, "cords": {"_count": 1}}, "the": {"_count": 1, "ropes": {"_count": 1}}, "a": {"_count": 2, "second": {"_count": 1}, "chair": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}}, "locks": {"_count": 6, "the": {"_count": 3, "door": {"_count": 3}}, "fitted": {"_count": 1, "the": {"_count": 1}}, "reopening": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "bolts": {"_count": 1}}}, "realizes": {"_count": 5, "were": {"_count": 2, "missing": {"_count": 1}, "here": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "He": {"_count": 1, "quailed": {"_count": 1}}, "the": {"_count": 1, "ring": {"_count": 1}}}, "ferreting": {"_count": 4, "for": {"_count": 1, "worms": {"_count": 1}}, "around": {"_count": 3, "all": {"_count": 1}, "to": {"_count": 1}, "on": {"_count": 1}}}, "reins": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "powerfully": {"_count": 13, "beneath": {"_count": 1, "them": {"_count": 1}}, "built": {"_count": 2, "man": {"_count": 1}, "": {"_count": 1}}, "magical": {"_count": 5, "to": {"_count": 1}, "and": {"_count": 1}, "number": {"_count": 3}}, "than": {"_count": 2, "ever": {"_count": 1}, "it": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "lefthand": {"_count": 11, "side": {"_count": 6, "of": {"_count": 4}, "": {"_count": 1}, "which": {"_count": 1}}, "corner": {"_count": 2, "Snapes": {"_count": 1}, "of": {"_count": 1}}, "fireplaces": {"_count": 1, "with": {"_count": 1}}, "hoop": {"_count": 1, "leaving": {"_count": 1}}, "window": {"_count": 1, "was": {"_count": 1}}}, "Whoa": {"_count": 4, "": {"_count": 2, "!": {"_count": 2}}, "said": {"_count": 2, "Dean": {"_count": 1}, "Ron": {"_count": 1}}}, "Alohomoral": {"_count": 1, "The": {"_count": 1, "window": {"_count": 1}}}, "mighty": {"_count": 3, "wings": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "funny": {"_count": 1, "rumors": {"_count": 1}}}, "battlements": {"_count": 3, "and": {"_count": 2, "Harry": {"_count": 1}, "out": {"_count": 1}}, "theyve": {"_count": 1, "brought": {"_count": 1}}}, "rider": {"_count": 1, "became": {"_count": 1, "smaller": {"_count": 1}}}, "returns": {"_count": 4, "with": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "tomorrow": {"_count": 1, "with": {"_count": 1}}}, "interview": {"_count": 32, "you": {"_count": 1, "Snape": {"_count": 1}}, "in": {"_count": 1, "peace": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "later": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 7, "Rita": {"_count": 1}, "a": {"_count": 1}, "Harry": {"_count": 2}, "Dumbledore": {"_count": 2}, "Griphook": {"_count": 1}}, "about": {"_count": 2, "the": {"_count": 1}, "an": {"_count": 1}}, "was": {"_count": 2, "over": {"_count": 1}, "so": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "each": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "long": {"_count": 1}}, "by": {"_count": 2, "Educational": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "previous": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "went": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "but": {"_count": 1, "both": {"_count": 1}}}, "boisterous": {"_count": 3, "good": {"_count": 1, "spirits": {"_count": 1}}, "little": {"_count": 1, "boy": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}}, "whatll": {"_count": 5, "happen": {"_count": 3, "if": {"_count": 1}, "isnt": {"_count": 1}, "to": {"_count": 1}}, "people": {"_count": 1, "do": {"_count": 1}}, "we": {"_count": 1, "do": {"_count": 1}}}, "patients": {"_count": 3, "now": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "making": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Disapparated": {"_count": 35, "Severus": {"_count": 1, "": {"_count": 1}}, "": {"_count": 15, ".": {"_count": 11}, "!": {"_count": 4}}, "with": {"_count": 2, "a": {"_count": 1}, "Ron": {"_count": 1}}, "right": {"_count": 1, "after": {"_count": 1}}, "before": {"_count": 1, "wed": {"_count": 1}}, "to": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "one": {"_count": 1, "moment": {"_count": 1}}, "just": {"_count": 1, "beyond": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "Yaxley": {"_count": 1, "caught": {"_count": 1}}, "reappearing": {"_count": 1, "on": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 2, "came": {"_count": 1}, "arrived": {"_count": 1}}, "next": {"_count": 1, "morning": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "pulling": {"_count": 1, "the": {"_count": 1}}}, "DISAPPARATE": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "INSIDE": {"_count": 1, "THIS": {"_count": 1}}}, "CANT": {"_count": 1, "APPARATE": {"_count": 1, "OR": {"_count": 1}}}, "APPARATE": {"_count": 1, "OR": {"_count": 1, "DISAPPARATE": {"_count": 1}}}, "INSIDE": {"_count": 1, "THIS": {"_count": 1, "CASTLE": {"_count": 1}}}, "CASTLE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "SOMETHING": {"_count": 2, "TO": {"_count": 1, "DO": {"_count": 1}}, "DIFFERENT": {"_count": 1, "IF": {"_count": 1}}}, "reasonable": {"_count": 9, "Harry": {"_count": 1, "has": {"_count": 1}}, "said": {"_count": 1, "Fudge": {"_count": 1}}, "price": {"_count": 1, "to": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}, "amount": {"_count": 2, "of": {"_count": 2}}, "teacher": {"_count": 1, "thought": {"_count": 1}}, "sir": {"_count": 1, "this": {"_count": 1}}}, "BAM": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "DID": {"_count": 7, "YOU": {"_count": 1, "DO": {"_count": 1}}, "IT": {"_count": 5, "I": {"_count": 1}, "That": {"_count": 1}, "": {"_count": 3}}, "HE": {"_count": 1, "": {"_count": 1}}}, "Control": {"_count": 16, "yourself": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 11, "Magical": {"_count": 11}}, "She": {"_count": 1, "didnt": {"_count": 1}}, "Portkey": {"_count": 1, "Office": {"_count": 1}}, "SECRETS": {"_count": 1, "OF": {"_count": 1}}, "your": {"_count": 1, "anger": {"_count": 1}}}, "HELPED": {"_count": 1, "HIM": {"_count": 1, "ESCAPE": {"_count": 1}}}, "ESCAPE": {"_count": 2, "I": {"_count": 1, "KNOW": {"_count": 1}}, "FROM": {"_count": 1, "HIM": {"_count": 1}}}, "Fellow": {"_count": 2, "seems": {"_count": 1, "quite": {"_count": 1}}, "Magical": {"_count": 1, "Creatures": {"_count": 1}}}, "unbalanced": {"_count": 6, "said": {"_count": 2, "Fudge": {"_count": 1}, "Dumbledore": {"_count": 1}}, "and": {"_count": 2, "for": {"_count": 1}, "possibly": {"_count": 1}}, "yet": {"_count": 1, "never": {"_count": 1}}, "like": {"_count": 1, "she": {"_count": 1}}}, "Prophets": {"_count": 12, "going": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "saying": {"_count": 1, "hes": {"_count": 1}}, "version": {"_count": 2, "of": {"_count": 2}}, "got": {"_count": 1, "it": {"_count": 1}}, "often": {"_count": 1, "behind": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 1, "there": {"_count": 1}}, "ignoring": {"_count": 1, "not": {"_count": 1}}}, "laughingstock": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "notify": {"_count": 3, "the": {"_count": 1, "Ministry": {"_count": 1}}, "you": {"_count": 1, "if": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}}, "administer": {"_count": 1, "the": {"_count": 1, "Kiss": {"_count": 1}}}, "blearyeyed": {"_count": 3, "Hagrid": {"_count": 1, "mopping": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}}, "tableclothsized": {"_count": 3, "handkerchiefs": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "handkerchief": {"_count": 1, "": {"_count": 1}}}, "handkerchiefs": {"_count": 2, "and": {"_count": 1, "beaming": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wha": {"_count": 6, "happened": {"_count": 1, "las": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 2}}, "you": {"_count": 1, "did": {"_count": 1}}, "we": {"_count": 2, "saw": {"_count": 1}, "meant": {"_count": 1}}}, "escapin": {"_count": 1, "again": {"_count": 1, "an": {"_count": 1}}}, "celebratin": {"_count": 1, "all": {"_count": 1, "night": {"_count": 1}}}, "haven": {"_count": 5, "yeh": {"_count": 2, "heard": {"_count": 1}, "": {"_count": 1}}, "for": {"_count": 1, "creatures": {"_count": 1}}, "finished": {"_count": 1, "me": {"_count": 1}}, "bin": {"_count": 1, "attacked": {"_count": 1}}}, "packin": {"_count": 1, "now": {"_count": 1, "o": {"_count": 1}}}, "Leavin": {"_count": 1, "isn": {"_count": 1, "he": {"_count": 1}}}, "isn": {"_count": 3, "he": {"_count": 1, "": {"_count": 1}}, "somethin": {"_count": 1, "any": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "happenin": {"_count": 3, "again": {"_count": 1, "": {"_count": 1}}, "since": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wryly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "soberly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "vacated": {"_count": 7, "chair": {"_count": 1, "staring": {"_count": 1}}, "seat": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "building": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "this": {"_count": 1, "spot": {"_count": 1}}}, "uncover": {"_count": 1, "the": {"_count": 1, "truth": {"_count": 1}}}, "Greater": {"_count": 4, "and": {"_count": 1, "more": {"_count": 1}}, "Good": {"_count": 3, "": {"_count": 1}, "became": {"_count": 1}, "was": {"_count": 1}}}, "predictions": {"_count": 13, "up": {"_count": 1, "to": {"_count": 1}}, "tonight": {"_count": 1, "since": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "grew": {"_count": 1}}, "he": {"_count": 1, "didnt": {"_count": 1}}, "toward": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "commending": {"_count": 1, "them": {"_count": 1}}, "together": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "now": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "doom": {"_count": 1}}}, "offer": {"_count": 36, "her": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 3, "a": {"_count": 1}, "something": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "them": {"_count": 2, "much": {"_count": 1}, "all": {"_count": 1}}, "to": {"_count": 4, "remove": {"_count": 1}, "do": {"_count": 1}, "accompany": {"_count": 1}, "keep": {"_count": 1}}, "my": {"_count": 1, "congratulations": {"_count": 1}}, "the": {"_count": 1, "chance": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "you": {"_count": 6, "a": {"_count": 4}, "all": {"_count": 2}}, "me": {"_count": 1, "refreshment": {"_count": 1}}, "fellow": {"_count": 1, "wizards": {"_count": 1}}, "Tom": {"_count": 1, "a": {"_count": 1}}, "words": {"_count": 1, "of": {"_count": 1}}, "help": {"_count": 3, "so": {"_count": 3}}, "for": {"_count": 1, "the": {"_count": 1}}, "Rosmerta": {"_count": 1, "my": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "any": {"_count": 1, "suggestion": {"_count": 1}}, "though": {"_count": 1, "how": {"_count": 1}}, "careful": {"_count": 1, "to": {"_count": 1}}}, "diverse": {"_count": 1, "that": {"_count": 1, "predicting": {"_count": 1}}}, "predicting": {"_count": 7, "the": {"_count": 1, "future": {"_count": 1}}, "Harrys": {"_count": 1, "death": {"_count": 1}}, "his": {"_count": 3, "own": {"_count": 1}, "death": {"_count": 1}, "premature": {"_count": 1}}, "their": {"_count": 1, "own": {"_count": 1}}, "even": {"_count": 1, "tomorrows": {"_count": 1}}}, "owes": {"_count": 2, "his": {"_count": 1, "life": {"_count": 1}}, "him": {"_count": 1, "he": {"_count": 1}}}, "saves": {"_count": 7, "another": {"_count": 1, "wizards": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "his": {"_count": 1, "proper": {"_count": 1}}, "it": {"_count": 1, "well": {"_count": 1}}, "some": {"_count": 1, "by": {"_count": 1}}}, "creates": {"_count": 3, "a": {"_count": 1, "certain": {"_count": 1}}, "the": {"_count": 1, "new": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}}, "bond": {"_count": 9, "between": {"_count": 3, "them": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "connecting": {"_count": 1, "us": {"_count": 1}}, "of": {"_count": 3, "friendship": {"_count": 2}, "blood": {"_count": 1}}, "says": {"_count": 1, "Skeeter": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}}, "connection": {"_count": 41, "with": {"_count": 6, "Pettigrew": {"_count": 1}, "Cedrics": {"_count": 1}, "the": {"_count": 2}, "you": {"_count": 1}, "Lord": {"_count": 1}}, "dont": {"_count": 1, "see": {"_count": 1}}, "I": {"_count": 1, "could": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "is": {"_count": 1, "broken": {"_count": 1}}, "between": {"_count": 9, "them": {"_count": 3}, "you": {"_count": 3}, "the": {"_count": 1}, "himself": {"_count": 1}, "our": {"_count": 1}}, "forged": {"_count": 1, "between": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 1, "enhances": {"_count": 1}}, "that": {"_count": 2, "existed": {"_count": 1}, "he": {"_count": 1}}, "open": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "had": {"_count": 1, "closed": {"_count": 1}}, "he": {"_count": 1, "wanted": {"_count": 1}}, "was": {"_count": 1, "dangerous": {"_count": 1}}, "or": {"_count": 1, "relationship": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "the": {"_count": 1, "killings": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "having": {"_count": 1, "wrapped": {"_count": 1}}}, "impenetrable": {"_count": 9, "Harry": {"_count": 1, "": {"_count": 1}}, "silent": {"_count": 1, "darkness": {"_count": 1}}, "darkness": {"_count": 1, "": {"_count": 1}}, "stretch": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "concealment": {"_count": 2, "no": {"_count": 2}}, "cloud": {"_count": 1, "of": {"_count": 1}}, "perfect": {"_count": 1, "and": {"_count": 1}}}, "tire": {"_count": 4, "of": {"_count": 1, "hearing": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "rode": {"_count": 2, "again": {"_count": 1, "last": {"_count": 1}}, "their": {"_count": 1, "bicycles": {"_count": 1}}}, "smuggling": {"_count": 5, "the": {"_count": 1, "hippogriff": {"_count": 1}}, "doughnuts": {"_count": 1, "into": {"_count": 1}}, "a": {"_count": 1, "consignment": {"_count": 1}}, "Dark": {"_count": 1, "stuff": {"_count": 1}}, "MadEyes": {"_count": 1, "whole": {"_count": 1}}}, "outwitted": {"_count": 1, "by": {"_count": 1, "a": {"_count": 1}}}, "proposals": {"_count": 1, "to": {"_count": 1, "make": {"_count": 1}}}, "departure": {"_count": 18, "that": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Harry": {"_count": 2, "was": {"_count": 1}, "witnessed": {"_count": 1}}, "took": {"_count": 1, "Harry": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "which": {"_count": 1, "admittedly": {"_count": 1}}, "he": {"_count": 1, "took": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}, "long": {"_count": 1, "enough": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 1}, "tradition": {"_count": 1}, "his": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}}, "sanctuary": {"_count": 3, "with": {"_count": 1, "Voldemort": {"_count": 1}}, "of": {"_count": 1, "Tonkss": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "increase": {"_count": 7, "but": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "a": {"_count": 1, "dragons": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "quantity": {"_count": 1}}, "your": {"_count": 1, "chances": {"_count": 1}}}, "topgrade": {"_count": 1, "N": {"_count": 1, "": {"_count": 1}}}, "performance": {"_count": 13, "in": {"_count": 4, "the": {"_count": 2}, "their": {"_count": 1}, "Potions": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "against": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "England": {"_count": 1}}, "improved": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "during": {"_count": 1, "my": {"_count": 1}}, "of": {"_count": 1, "adding": {"_count": 1}}, "as": {"_count": 1, "Keeper": {"_count": 1}}}, "championship": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "noisiest": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "most": {"_count": 1}}}, "fellytone": {"_count": 2, "now": {"_count": 1, "A": {"_count": 1}}, "Telephone": {"_count": 1, "whispered": {"_count": 1}}}, "proposal": {"_count": 1, "had": {"_count": 1, "the": {"_count": 1}}}, "Dursleysd": {"_count": 1, "be": {"_count": 1, "pleased": {"_count": 1}}}, "buffeted": {"_count": 6, "this": {"_count": 1, "way": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "terrified": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "little": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "slipstream": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "accomplishing": {"_count": 1, "its": {"_count": 1, "task": {"_count": 1}}}, "harms": {"_count": 3, "way": {"_count": 3, "": {"_count": 2}, "as": {"_count": 1}}}, "falls": {"_count": 4, "into": {"_count": 1, "the": {"_count": 1}}, "off": {"_count": 1, "his": {"_count": 1}}, "precisely": {"_count": 1, "into": {"_count": 1}}, "under": {"_count": 1, "Wizarding": {"_count": 1}}}, "reliability": {"_count": 1, "but": {"_count": 1, "he": {"_count": 1}}}, "enclosing": {"_count": 3, "something": {"_count": 1, "else": {"_count": 1}}, "a": {"_count": 1, "picture": {"_count": 1}}, "both": {"_count": 1, "line": {"_count": 1}}}, "hereby": {"_count": 3, "give": {"_count": 1, "him": {"_count": 1}}, "defined": {"_count": 1, "as": {"_count": 1}}, "banned": {"_count": 1, "from": {"_count": 1}}}, "doyou": {"_count": 1, "reckon": {"_count": 1, "": {"_count": 1}}}, "purred": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "loudly": {"_count": 1, "and": {"_count": 1}}, "Fleur": {"_count": 1, "adoringly": {"_count": 1}}}, "reread": {"_count": 8, "the": {"_count": 3, "letter": {"_count": 2}, "article": {"_count": 1}}, "his": {"_count": 2, "finished": {"_count": 1}, "answers": {"_count": 1}}, "this": {"_count": 1, "letter": {"_count": 1}}, "every": {"_count": 1, "line": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}}, "suspicions": {"_count": 12, "about": {"_count": 4, "them": {"_count": 1}, "him": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "to": {"_count": 1, "Sirius": {"_count": 1}}, "seriously": {"_count": 1, "so": {"_count": 1}}, "Potter": {"_count": 1, "she": {"_count": 1}}, "yes": {"_count": 1, "said": {"_count": 1}}, "that": {"_count": 1, "may": {"_count": 1}}, "are": {"_count": 1, "true": {"_count": 1}}}, "Godfather": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "RIDDLE": {"_count": 4, "HOUSE": {"_count": 1, "The": {"_count": 1}}, "The": {"_count": 1, "cloaked": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Katie": {"_count": 1, "was": {"_count": 1}}}, "Hangleton": {"_count": 12, "still": {"_count": 1, "called": {"_count": 1}}, "had": {"_count": 1, "seethed": {"_count": 1}}, "doubted": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "churchyard": {"_count": 1, "and": {"_count": 1}}, "nestled": {"_count": 1, "between": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "enjoyed": {"_count": 1, "a": {"_count": 1}}, "without": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "a": {"_count": 1, "maid": {"_count": 1}}}, "overlooking": {"_count": 4, "the": {"_count": 4, "village": {"_count": 1}, "grounds": {"_count": 1}, "sea": {"_count": 2}}}, "tiles": {"_count": 2, "missing": {"_count": 1, "from": {"_count": 1}}, "had": {"_count": 1, "fallen": {"_count": 1}}}, "unchecked": {"_count": 2, "over": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "finelooking": {"_count": 1, "manor": {"_count": 1, "and": {"_count": 1}}}, "grandest": {"_count": 1, "building": {"_count": 1, "for": {"_count": 1}}}, "derelict": {"_count": 2, "and": {"_count": 1, "unoccupied": {"_count": 1}}, "building": {"_count": 1, "": {"_count": 1}}}, "unoccupied": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "coach": {"_count": 1, "": {"_count": 1}}}, "Hangletons": {"_count": 1, "all": {"_count": 1, "agreed": {"_count": 1}}}, "inhabitants": {"_count": 11, "of": {"_count": 8, "the": {"_count": 4}, "Privet": {"_count": 1}, "number": {"_count": 1}, "Shell": {"_count": 1}, "Malfoy": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "being": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "gossip": {"_count": 7, "were": {"_count": 1, "scarce": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "it": {"_count": 1, "caused": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "said": {"_count": 1}}}, "scarce": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "embroidered": {"_count": 11, "in": {"_count": 2, "so": {"_count": 1}, "silver": {"_count": 1}}, "with": {"_count": 4, "many": {"_count": 1}, "dragons": {"_count": 1}, "silver": {"_count": 1}, "much": {"_count": 1}}, "still": {"_count": 1, "glinted": {"_count": 1}}, "handkerchief": {"_count": 1, "from": {"_count": 1}}, "purpleandgold": {"_count": 1, "dressing": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "waistcoat": {"_count": 1, "were": {"_count": 1}}}, "summers": {"_count": 13, "morning": {"_count": 1, "when": {"_count": 1}}, "day": {"_count": 6, "he": {"_count": 1}, "": {"_count": 3}, "evaporated": {"_count": 1}, "more": {"_count": 1}}, "ago": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "night": {"_count": 2, "mark": {"_count": 1}, "when": {"_count": 1}}, "shared": {"_count": 1, "a": {"_count": 1}}, "did": {"_count": 1, "yeh": {"_count": 1}}}, "maid": {"_count": 3, "had": {"_count": 2, "entered": {"_count": 1}, "run": {"_count": 1}}, "was": {"_count": 1, "running": {"_count": 1}}}, "roused": {"_count": 7, "as": {"_count": 1, "many": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "Olympe": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 1, "become": {"_count": 1}}, "themselves": {"_count": 1, "as": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "Professor": {"_count": 1}}}, "seethed": {"_count": 1, "with": {"_count": 1, "shocked": {"_count": 1}}}, "disguised": {"_count": 14, "excitement": {"_count": 1, "": {"_count": 1}}, "basilisk": {"_count": 1, "egg": {"_count": 1}}, "as": {"_count": 7, "my": {"_count": 1}, "a": {"_count": 3}, "the": {"_count": 1}, "perfumes": {"_count": 1}, "something": {"_count": 1}}, "and": {"_count": 1, "to": {"_count": 1}}, "Arry": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Hermione": {"_count": 1, "as": {"_count": 1}}, "impatience": {"_count": 1, "at": {"_count": 1}}}, "Elderly": {"_count": 1, "Mr": {"_count": 1, "and": {"_count": 1}}}, "snobbish": {"_count": 1, "and": {"_count": 1, "rude": {"_count": 1}}}, "healthy": {"_count": 12, "people": {"_count": 1, "did": {"_count": 1}}, "breeze": {"_count": 1, "round": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "one": {"_count": 2, "dying": {"_count": 2}}, "P": {"_count": 1, "": {"_count": 1}}, "measure": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "surrounded": {"_count": 1}}}, "Hanged": {"_count": 2, "Man": {"_count": 2, "the": {"_count": 1}, "": {"_count": 1}}}, "Man": {"_count": 3, "the": {"_count": 2, "village": {"_count": 1}, "boundaries": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "rewarded": {"_count": 4, "for": {"_count": 2, "leaving": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Crabbe": {"_count": 1}}}, "firesides": {"_count": 1, "when": {"_count": 1, "the": {"_count": 1}}}, "cook": {"_count": 10, "arrived": {"_count": 1, "dramatically": {"_count": 1}}, "drinks": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "fires": {"_count": 1}}, "breakfast": {"_count": 1, "": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "vast": {"_count": 1, "batches": {"_count": 1}}, "Hermione": {"_count": 1, "be": {"_count": 1}}}, "Frank": {"_count": 64, "Bryce": {"_count": 6, "had": {"_count": 2}, "was": {"_count": 1}, "returned": {"_count": 1}, "crumpled": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "had": {"_count": 7, "come": {"_count": 1}, "to": {"_count": 2}, "invented": {"_count": 1}, "no": {"_count": 1}, "not": {"_count": 1}, "never": {"_count": 1}}, "didnt": {"_count": 3, "I": {"_count": 1}, "understand": {"_count": 1}, "have": {"_count": 1}}, "was": {"_count": 4, "stubbornly": {"_count": 1}, "nearing": {"_count": 1}, "visited": {"_count": 1}, "an": {"_count": 1}}, "the": {"_count": 1, "report": {"_count": 1}}, "go": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "worked": {"_count": 1, "so": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "awoke": {"_count": 1, "one": {"_count": 1}}, "knew": {"_count": 2, "at": {"_count": 1}, "what": {"_count": 1}}, "limped": {"_count": 1, "around": {"_count": 1}}, "turned": {"_count": 2, "right": {"_count": 1}, "his": {"_count": 1}}, "edged": {"_count": 1, "closer": {"_count": 1}}, "caught": {"_count": 1, "a": {"_count": 1}}, "inclined": {"_count": 1, "his": {"_count": 1}}, "inserted": {"_count": 1, "a": {"_count": 1}}, "dug": {"_count": 1, "his": {"_count": 1}}, "stopped": {"_count": 1, "trying": {"_count": 1}}, "could": {"_count": 3, "think": {"_count": 1}, "hear": {"_count": 1}, "not": {"_count": 1}}, "tightened": {"_count": 1, "his": {"_count": 1}}, "suddenly": {"_count": 1, "became": {"_count": 1}}, "remained": {"_count": 1, "where": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "heard": {"_count": 1, "movement": {"_count": 1}}, "stared": {"_count": 2, "as": {"_count": 1}, "at": {"_count": 1}}, "a": {"_count": 1, "mixture": {"_count": 1}}, "couldnt": {"_count": 2, "see": {"_count": 1}, "even": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "defiantly": {"_count": 1, "for": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}, "roughly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "Alice": {"_count": 2}}, "Longbottom": {"_count": 1, "and": {"_count": 1}}, "Longbottoms": {"_count": 1, "wife": {"_count": 1}}}, "Bryce": {"_count": 6, "had": {"_count": 2, "just": {"_count": 1}, "killed": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "crumpled": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "lived": {"_count": 1}}}, "gardener": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rundown": {"_count": 3, "cottage": {"_count": 1, "on": {"_count": 1}}, "streets": {"_count": 1, "were": {"_count": 1}}, "stone": {"_count": 1, "outhouse": {"_count": 1}}}, "cottage": {"_count": 35, "on": {"_count": 2, "the": {"_count": 2}}, "far": {"_count": 1, "back": {"_count": 1}}, "cheese": {"_count": 1, "and": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 4, "beckoned": {"_count": 1}, "subsequently": {"_count": 1}, "for": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "banging": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "belongs": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "which": {"_count": 1, "seemed": {"_count": 1}}, "a": {"_count": 1, "short": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "too": {"_count": 1, "Im": {"_count": 1}}, "stood": {"_count": 1, "alone": {"_count": 1}}, "or": {"_count": 1, "its": {"_count": 1}}, "craving": {"_count": 1, "the": {"_count": 1}}, "anger": {"_count": 1, "that": {"_count": 1}}, "garden": {"_count": 1, "from": {"_count": 1}}, "her": {"_count": 1, "long": {"_count": 1}}, "windows": {"_count": 1, "as": {"_count": 1}}, "this": {"_count": 1, "full": {"_count": 1}}}, "Unfriendly": {"_count": 1, "like": {"_count": 1, "": {"_count": 1}}}, "cuppa": {"_count": 3, "once": {"_count": 1, "Ive": {"_count": 1}}, "with": {"_count": 1, "Olympe": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "mix": {"_count": 4, "he": {"_count": 1, "didnt": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "with": {"_count": 1, "humans": {"_count": 1}}, "antidotes": {"_count": 1, "": {"_count": 1}}}, "gardeners": {"_count": 1, "cottage": {"_count": 1, "far": {"_count": 1}}}, "War": {"_count": 1, "turned": {"_count": 1, "him": {"_count": 1}}}, "Dot": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "nodding": {"_count": 1, "fervently": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "neighboring": {"_count": 8, "town": {"_count": 1, "of": {"_count": 1}}, "gardens": {"_count": 1, "and": {"_count": 1}}, "picture": {"_count": 1, "he": {"_count": 1}}, "pictures": {"_count": 1, "as": {"_count": 1}}, "frames": {"_count": 1, "and": {"_count": 1}}, "table": {"_count": 1, "through": {"_count": 1}}, "paintings": {"_count": 1, "": {"_count": 1}}, "field": {"_count": 1, "": {"_count": 1}}}, "repeating": {"_count": 5, "again": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 2, "names": {"_count": 1}, "feat": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "fathers": {"_count": 1}}}, "teenage": {"_count": 11, "boy": {"_count": 4, "a": {"_count": 1}, "who": {"_count": 1}, "with": {"_count": 1}, "is": {"_count": 1}}, "survivor": {"_count": 1, "of": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}, "boys": {"_count": 2, "sitting": {"_count": 1}, "both": {"_count": 1}}, "Dumbledore": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}}, "darkhaired": {"_count": 8, "and": {"_count": 3, "pale": {"_count": 2}, "handsome": {"_count": 1}}, "mother": {"_count": 1, "and": {"_count": 1}}, "boy": {"_count": 1, "cried": {"_count": 1}}, "young": {"_count": 2, "man": {"_count": 2}}, "Hestia": {"_count": 1, "": {"_count": 1}}}, "odder": {"_count": 1, "report": {"_count": 1, "": {"_count": 1}}}, "doctors": {"_count": 3, "had": {"_count": 1, "examined": {"_count": 1}}, "did": {"_count": 1, "note": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "concluded": {"_count": 8, "that": {"_count": 4, "none": {"_count": 1}, "Snape": {"_count": 1}, "nobody": {"_count": 1}, "she": {"_count": 1}}, "laying": {"_count": 1, "down": {"_count": 1}}, "modestly": {"_count": 1, "sweeping": {"_count": 1}}, "barely": {"_count": 1, "concealing": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}}, "suffocated": {"_count": 1, "or": {"_count": 1, "as": {"_count": 1}}}, "bewilderment": {"_count": 6, "the": {"_count": 2, "Riddles": {"_count": 1}, "gray": {"_count": 1}}, "deepened": {"_count": 1, "with": {"_count": 1}}, "Neville": {"_count": 1, "who": {"_count": 1}}, "he": {"_count": 1, "realized": {"_count": 1}}, "The": {"_count": 1, "Thiefs": {"_count": 1}}}, "frustrated": {"_count": 13, "police": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 2, "angry": {"_count": 1}, "disappointed": {"_count": 1}}, "at": {"_count": 1, "how": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "face": {"_count": 1, "looking": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "beyond": {"_count": 1, "belief": {"_count": 1}}, "he": {"_count": 1, "hated": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}}, "churchyard": {"_count": 1, "and": {"_count": 1, "their": {"_count": 1}}}, "graves": {"_count": 13, "remained": {"_count": 1, "objects": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "behind": {"_count": 1, "the": {"_count": 1}}, "pelting": {"_count": 1, "toward": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "Id": {"_count": 1, "like": {"_count": 1}}, "were": {"_count": 1, "only": {"_count": 1}}, "once": {"_count": 1, "youre": {"_count": 1}}, "perhaps": {"_count": 1, "walked": {"_count": 1}}, "Dumbledore": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "house": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}}, "decency": {"_count": 3, "hed": {"_count": 1, "leave": {"_count": 1}}, "to": {"_count": 1, "put": {"_count": 1}}, "youd": {"_count": 1, "jump": {"_count": 1}}}, "disrepair": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wealthy": {"_count": 2, "man": {"_count": 1, "who": {"_count": 1}}, "owner": {"_count": 1, "continued": {"_count": 1}}}, "tax": {"_count": 1, "reasons": {"_count": 1, "though": {"_count": 1}}}, "gardening": {"_count": 1, "however": {"_count": 1, "": {"_count": 1}}}, "nearing": {"_count": 4, "his": {"_count": 1, "seventy": {"_count": 1}}, "manhood": {"_count": 1, "this": {"_count": 1}}, "midnight": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}}, "stiffer": {"_count": 1, "than": {"_count": 1, "ever": {"_count": 1}}}, "pottering": {"_count": 1, "around": {"_count": 1, "the": {"_count": 1}}}, "Weeds": {"_count": 1, "were": {"_count": 1, "not": {"_count": 1}}}, "contend": {"_count": 2, "with": {"_count": 2, "either": {"_count": 1}, "your": {"_count": 1}}}, "bicycles": {"_count": 1, "over": {"_count": 1, "the": {"_count": 1}}}, "Franks": {"_count": 4, "devotion": {"_count": 1, "to": {"_count": 1}}, "bad": {"_count": 1, "leg": {"_count": 1}}, "neck": {"_count": 1, "stand": {"_count": 1}}, "forehead": {"_count": 1, "now": {"_count": 1}}}, "devotion": {"_count": 6, "to": {"_count": 4, "the": {"_count": 2}, "Your": {"_count": 1}, "his": {"_count": 1}}, "is": {"_count": 1, "nothing": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "amounted": {"_count": 1, "almost": {"_count": 1, "to": {"_count": 1}}}, "croakily": {"_count": 3, "at": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "tormented": {"_count": 2, "him": {"_count": 1, "because": {"_count": 1}}, "Snape": {"_count": 1, "": {"_count": 1}}}, "grandparents": {"_count": 5, "thought": {"_count": 1, "him": {"_count": 1}}, "were": {"_count": 1, "really": {"_count": 1}}, "thus": {"_count": 1, "obliterating": {"_count": 1}}, "and": {"_count": 1, "made": {"_count": 1}}, "they": {"_count": 1, "think": {"_count": 1}}}, "paining": {"_count": 1, "him": {"_count": 1, "worse": {"_count": 1}}}, "hotwater": {"_count": 2, "bottle": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}}, "ease": {"_count": 15, "the": {"_count": 3, "stiffness": {"_count": 1}, "dead": {"_count": 1}, "scene": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "humming": {"_count": 1, "tunelessly": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "tilting": {"_count": 1, "it": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Snape": {"_count": 1, "wiped": {"_count": 1}}, "their": {"_count": 1, "pain": {"_count": 1}}, "with": {"_count": 1, "displaying": {"_count": 1}}, "his": {"_count": 1, "bulk": {"_count": 1}}}, "quality": {"_count": 13, "of": {"_count": 3, "the": {"_count": 2}, "Kreachers": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 2}}, "": {"_count": 3, ".": {"_count": 3}}, "highly": {"_count": 1, "realistic": {"_count": 1}}, "venom": {"_count": 1, "from": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "bore": {"_count": 33, "no": {"_count": 2, "sign": {"_count": 1}, "resemblance": {"_count": 1}}, "the": {"_count": 10, "Hogwarts": {"_count": 1}, "Sorting": {"_count": 1}, "same": {"_count": 2}, "headline": {"_count": 2}, "marks": {"_count": 1}, "Black": {"_count": 1}, "words": {"_count": 1}, "elfs": {"_count": 1}}, "a": {"_count": 6, "coat": {"_count": 1}, "tarnished": {"_count": 1}, "great": {"_count": 1}, "distinct": {"_count": 1}, "nameplate": {"_count": 1}, "knocker": {"_count": 1}}, "down": {"_count": 3, "upon": {"_count": 3}}, "witness": {"_count": 1, "to": {"_count": 1}}, "unmistakable": {"_count": 2, "signs": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "moving": {"_count": 1, "blackandwhite": {"_count": 1}}, "scratches": {"_count": 1, "and": {"_count": 1}}, "him": {"_count": 2, "back": {"_count": 1}, "Ron": {"_count": 1}}, "marks": {"_count": 1, "of": {"_count": 1}}, "evidence": {"_count": 1, "of": {"_count": 1}}, "up": {"_count": 1, "reasonably": {"_count": 1}}, "heavy": {"_count": 1, "cuffs": {"_count": 1}}}, "pricked": {"_count": 1, "for": {"_count": 1, "any": {"_count": 1}}}, "blessing": {"_count": 3, "the": {"_count": 1, "dust": {"_count": 1}}, "and": {"_count": 1, "curse": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "intruders": {"_count": 10, "were": {"_count": 1, "At": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "Horace": {"_count": 1, "": {"_count": 1}}, "every": {"_count": 1, "little": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "face": {"_count": 1, "with": {"_count": 1}}}, "sliver": {"_count": 6, "of": {"_count": 6, "gold": {"_count": 1}, "firelight": {"_count": 1}, "silverwhite": {"_count": 1}, "Siriuss": {"_count": 1}, "a": {"_count": 1}, "light": {"_count": 1}}}, "sparse": {"_count": 1, "hairs": {"_count": 1, "on": {"_count": 1}}}, "clink": {"_count": 3, "of": {"_count": 3, "a": {"_count": 1}, "metal": {"_count": 1}, "goblets": {"_count": 1}}}, "Nagini": {"_count": 29, "": {"_count": 7, "?": {"_count": 5}, ".": {"_count": 2}}, "has": {"_count": 1, "interesting": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "said": {"_count": 2, "the": {"_count": 1}, "Voldemort": {"_count": 1}}, "Voldemorts": {"_count": 1, "red": {"_count": 1}}, "provided": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "whispered": {"_count": 2}}, "to": {"_count": 2, "kill": {"_count": 1}, "make": {"_count": 1}}, "had": {"_count": 1, "released": {"_count": 1}}, "wove": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 1, "must": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "lay": {"_count": 1, "draped": {"_count": 1}}, "close": {"_count": 1, "beside": {"_count": 1}}, "swirling": {"_count": 1, "and": {"_count": 1}}, "wondering": {"_count": 1, "whether": {"_count": 1}}, "floated": {"_count": 1, "in": {"_count": 1}}, "fifty": {"_count": 1, "curses": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "spinning": {"_count": 1, "through": {"_count": 1}}}, "retire": {"_count": 1, "Wormtail": {"_count": 1, "said": {"_count": 1}}}, "Brow": {"_count": 1, "furrowed": {"_count": 1, "Frank": {"_count": 1}}}, "moderately": {"_count": 1, "comfortable": {"_count": 1, "and": {"_count": 1}}}, "inserted": {"_count": 7, "a": {"_count": 3, "gnarled": {"_count": 1}, "paw": {"_count": 1}, "finger": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 3, "blade": {"_count": 2}, "ends": {"_count": 1}}}, "rotated": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "Owing": {"_count": 3, "no": {"_count": 1, "doubt": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}}, "buildup": {"_count": 1, "of": {"_count": 1, "earwax": {"_count": 1}}}, "earwax": {"_count": 1, "he": {"_count": 1, "had": {"_count": 1}}}, "meddler": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "doublechecking": {"_count": 1, "identities": {"_count": 1, "": {"_count": 1}}}, "identities": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "lest": {"_count": 4, "the": {"_count": 1, "Muggles": {"_count": 1}}, "we": {"_count": 1, "lose": {"_count": 1}}, "he": {"_count": 1, "slip": {"_count": 1}}, "Filch": {"_count": 1, "turn": {"_count": 1}}}, "Plainly": {"_count": 1, "each": {"_count": 1, "of": {"_count": 1}}}, "expressions": {"_count": 18, "meant": {"_count": 1, "something": {"_count": 1}}, "on": {"_count": 4, "their": {"_count": 2}, "every": {"_count": 1}, "Harrys": {"_count": 1}}, "of": {"_count": 5, "interest": {"_count": 1}, "mingled": {"_count": 1}, "relief": {"_count": 1}, "consternation": {"_count": 1}, "early": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "others": {"_count": 1, "looks": {"_count": 1}}, "as": {"_count": 1, "confused": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "if": {"_count": 1, "any": {"_count": 1}}, "reflected": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}}, "code": {"_count": 4, "spies": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "codes": {"_count": 1}}, "names": {"_count": 1, "but": {"_count": 1}}, "to": {"_count": 1, "speak": {"_count": 1}}}, "criminals": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "whom": {"_count": 1}}, "and": {"_count": 1, "beg": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}}, "Lordship": {"_count": 2, "is": {"_count": 1, "still": {"_count": 1}}, "Your": {"_count": 1, "devotion": {"_count": 1}}}, "protracted": {"_count": 3, "and": {"_count": 2, "then": {"_count": 1}, "messy": {"_count": 1}}, "applause": {"_count": 1, "": {"_count": 1}}}, "suitable": {"_count": 8, "person": {"_count": 1, "I": {"_count": 1}}, "spell": {"_count": 1, "hed": {"_count": 1}}, "career": {"_count": 1, "for": {"_count": 1}}, "owl": {"_count": 1, "": {"_count": 1}}, "candidate": {"_count": 1, "if": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}}, "Laying": {"_count": 1, "hands": {"_count": 1, "on": {"_count": 1}}}, "wearisome": {"_count": 1, "for": {"_count": 1, "you": {"_count": 1}}}, "suggestion": {"_count": 15, "of": {"_count": 5, "abandoning": {"_count": 1}, "coolness": {"_count": 1}, "a": {"_count": 1}, "having": {"_count": 1}, "packing": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "that": {"_count": 1, "Sirius": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "you": {"_count": 1, "could": {"_count": 1}}, "looking": {"_count": 1, "haughty": {"_count": 1}}, "as": {"_count": 2, "to": {"_count": 2}}}, "revolt": {"_count": 2, "you": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "cowardice": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "my": {"_count": 1}}, "had": {"_count": 1, "stung": {"_count": 1}}, "your": {"_count": 1, "presumption": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}}, "Liar": {"_count": 4, "breathed": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 2, "the": {"_count": 1}, "Snape": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "clumsy": {"_count": 4, "care": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 1, "cold": {"_count": 1}}, "and": {"_count": 1, "foolish": {"_count": 1}}}, "sputtering": {"_count": 4, "incoherently": {"_count": 1, "fell": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "Ron": {"_count": 1, "staggered": {"_count": 1}}, "and": {"_count": 1, "saw": {"_count": 1}}}, "incoherently": {"_count": 2, "fell": {"_count": 1, "silent": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "extent": {"_count": 6, "of": {"_count": 1, "Lord": {"_count": 1}}, "still": {"_count": 1, "swaying": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "we": {"_count": 1, "are": {"_count": 1}}, "staring": {"_count": 1, "blankly": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}}, "wrath": {"_count": 6, "My": {"_count": 1, "Lord": {"_count": 1}}, "of": {"_count": 1, "those": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "barely": {"_count": 1, "controllable": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Bertha": {"_count": 38, "Jorkinss": {"_count": 2, "disappearance": {"_count": 1}, "information": {"_count": 1}}, "Jorkins": {"_count": 25, "": {"_count": 11}, "has": {"_count": 2}, "yet": {"_count": 1}, "said": {"_count": 1}, "while": {"_count": 1}, "and": {"_count": 1}, "a": {"_count": 1}, "to": {"_count": 1}, "who": {"_count": 1}, "surveyed": {"_count": 1}, "heard": {"_count": 1}, "in": {"_count": 1}, "went": {"_count": 1}, "disappeared": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "going": {"_count": 1, "missing": {"_count": 1}}, "I": {"_count": 1, "knew": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "sank": {"_count": 1, "back": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "had": {"_count": 2, "done": {"_count": 1}, "given": {"_count": 1}}}, "Jorkinss": {"_count": 2, "disappearance": {"_count": 1, "will": {"_count": 1}}, "information": {"_count": 1, "of": {"_count": 1}}}, "IP": {"_count": 1, "whispered": {"_count": 1, "the": {"_count": 1}}}, "rejoined": {"_count": 10, "us": {"_count": 1, "I": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "our": {"_count": 1, "side": {"_count": 1}}, "the": {"_count": 5, "doxy": {"_count": 1}, "path": {"_count": 1}, "magical": {"_count": 1}, "other": {"_count": 1}, "circle": {"_count": 1}}, "Hermione": {"_count": 1, "who": {"_count": 1}}, "by": {"_count": 1, "Ron": {"_count": 1}}}, "sullenness": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "wavered": {"_count": 3, "and": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}}, "requirement": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Jorkins": {"_count": 25, "": {"_count": 11, ".": {"_count": 7}, "?": {"_count": 4}}, "has": {"_count": 2, "been": {"_count": 1}, "vanished": {"_count": 1}}, "yet": {"_count": 1, "Ludo": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "while": {"_count": 1, "youre": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "witch": {"_count": 1}}, "to": {"_count": 1, "accompany": {"_count": 1}}, "who": {"_count": 1, "might": {"_count": 1}}, "surveyed": {"_count": 1, "the": {"_count": 1}}, "heard": {"_count": 1, "Winky": {"_count": 1}}, "in": {"_count": 1, "Albania": {"_count": 1}}, "went": {"_count": 1, "to": {"_count": 1}}, "disappeared": {"_count": 1, "last": {"_count": 1}}}, "brilliance": {"_count": 10, "I": {"_count": 1, "would": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "dashed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 2, "Fred": {"_count": 1}, "the": {"_count": 1}}, "at": {"_count": 1, "Potions": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "that": {"_count": 2, "led": {"_count": 1}, "Bathilda": {"_count": 1}}}, "pronounced": {"_count": 17, "than": {"_count": 3, "ever": {"_count": 2}, "in": {"_count": 1}}, "himself": {"_count": 1, "satisfied": {"_count": 1}}, "mistrust": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "very": {"_count": 1}}, "became": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cough": {"_count": 1, "yet": {"_count": 1}}, "aptitude": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 1, "word": {"_count": 1}}, "since": {"_count": 1, "Voldemort": {"_count": 1}}, "his": {"_count": 1, "Hiccuping": {"_count": 1}}, "Her": {"_count": 1, "hair": {"_count": 1}}, "everything": {"_count": 1, "from": {"_count": 1}}, "upon": {"_count": 1, "him": {"_count": 1}}}, "invaluable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Rreally": {"_count": 1, "My": {"_count": 1, "Lord": {"_count": 1}}}, "Wormtails": {"_count": 34, "voice": {"_count": 2, "suddenly": {"_count": 1}, "": {"_count": 1}}, "blunder": {"_count": 1, "had": {"_count": 1}}, "fast": {"_count": 1, "wheezy": {"_count": 1}}, "neck": {"_count": 1, "and": {"_count": 1}}, "weak": {"_count": 1, "pale": {"_count": 1}}, "command": {"_count": 1, "and": {"_count": 1}}, "anguished": {"_count": 2, "panting": {"_count": 1}, "breath": {"_count": 1}}, "remaining": {"_count": 1, "hand": {"_count": 1}}, "robes": {"_count": 2, "were": {"_count": 1}, "up": {"_count": 1}}, "left": {"_count": 1, "arm": {"_count": 1}}, "uncontrollable": {"_count": 1, "weeping": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}, "mark": {"_count": 1, "and": {"_count": 1}}, "bleeding": {"_count": 1, "wrist": {"_count": 1}}, "sobbing": {"_count": 1, "stopped": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "body": {"_count": 2, "of": {"_count": 1}, "on": {"_count": 1}}, "dagger": {"_count": 1, "had": {"_count": 1}}, "here": {"_count": 1, "but": {"_count": 1}}, "wand": {"_count": 6, "arm": {"_count": 1}, "emitted": {"_count": 1}, "from": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "out": {"_count": 1}}, "wheezy": {"_count": 1, "voice": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}, "throat": {"_count": 1, "but": {"_count": 1}}, "eyes": {"_count": 1, "rolled": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wayside": {"_count": 1, "inns": {"_count": 1, "": {"_count": 1}}}, "inns": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "existence": {"_count": 1, "": {"_count": 1}}}, "questioned": {"_count": 10, "her": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "about": {"_count": 1, "Siriuss": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "Neville": {"_count": 1, "about": {"_count": 1}}, "and": {"_count": 1, "preferred": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "about": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}}, "undulating": {"_count": 2, "body": {"_count": 1, "cut": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "diamondpatterned": {"_count": 1, "tail": {"_count": 1, "had": {"_count": 1}}}, "Inindeed": {"_count": 1, "My": {"_count": 1, "Lord": {"_count": 1}}}, "Invite": {"_count": 1, "him": {"_count": 1, "inside": {"_count": 1}}}, "travesty": {"_count": 2, "of": {"_count": 2, "a": {"_count": 2}}}, "spidery": {"_count": 3, "shadows": {"_count": 1, "upon": {"_count": 1}}, "writing": {"_count": 1, "was": {"_count": 1}}, "broom": {"_count": 1, "shed": {"_count": 1}}}, "steadier": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "inspiration": {"_count": 9, "my": {"_count": 1, "wife": {"_count": 1}}, "walking": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "Harry": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "madness": {"_count": 1}}}, "triangular": {"_count": 8, "head": {"_count": 1, "and": {"_count": 1}}, "eye": {"_count": 3, "glistened": {"_count": 1}, "was": {"_count": 1}, "its": {"_count": 1}}, "runelike": {"_count": 1, "shape": {"_count": 1}}, "mark": {"_count": 2, "beneath": {"_count": 1}, "inscribed": {"_count": 1}}, "rune": {"_count": 1, "": {"_count": 1}}}, "snagged": {"_count": 2, "on": {"_count": 1, "its": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}}, "SCAR": {"_count": 1, "Harry": {"_count": 1, "lay": {"_count": 1}}}, "lightningbolt": {"_count": 2, "scar": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}}, "nicknamed": {"_count": 1, "Wormtail": {"_count": 1, "": {"_count": 1}}}, "cube": {"_count": 1, "had": {"_count": 1, "slipped": {"_count": 1}}}, "cupped": {"_count": 1, "hands": {"_count": 1, "the": {"_count": 1}}}, "Rolls": {"_count": 1, "of": {"_count": 1, "parchment": {"_count": 1}}}, "hoop": {"_count": 18, "": {"_count": 4, ".": {"_count": 4}}, "in": {"_count": 1, "his": {"_count": 1}}, "leaving": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "my": {"_count": 1, "right": {"_count": 1}}, "then": {"_count": 1, "hastily": {"_count": 1}}, "and": {"_count": 2, "tried": {"_count": 1}, "looked": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "again": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}}, "survey": {"_count": 2, "the": {"_count": 1, "street": {"_count": 1}}, "of": {"_count": 1, "socalled": {"_count": 1}}}, "respectable": {"_count": 7, "suburban": {"_count": 1, "street": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "pureblood": {"_count": 1, "marriages": {"_count": 1}}, "and": {"_count": 2, "prominent": {"_count": 1}, "all": {"_count": 1}}, "amount": {"_count": 1, "below": {"_count": 1}}}, "suburban": {"_count": 1, "street": {"_count": 1, "would": {"_count": 1}}}, "regrown": {"_count": 2, "in": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "footlong": {"_count": 4, "fang": {"_count": 1, "not": {"_count": 1}}, "purple": {"_count": 1, "slimy": {"_count": 1}}, "thing": {"_count": 1, "was": {"_count": 1}}, "maggots": {"_count": 1, "slimy": {"_count": 1}}}, "attended": {"_count": 10, "Hogwarts": {"_count": 2, "School": {"_count": 1}, "": {"_count": 1}}, "to": {"_count": 1, "said": {"_count": 1}}, "it": {"_count": 1, "many": {"_count": 1}}, "briefly": {"_count": 1, "two": {"_count": 1}}, "St": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "funeral": {"_count": 1}}, "Ariana": {"_count": 1, "Dumbledores": {"_count": 1}}, "funeral": {"_count": 1, "": {"_count": 1}}}, "halfexpecting": {"_count": 2, "to": {"_count": 1, "hear": {"_count": 1}}, "some": {"_count": 1, "new": {"_count": 1}}}, "untroubled": {"_count": 3, "and": {"_count": 1, "painless": {"_count": 1}}, "by": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "painless": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "jobs": {"_count": 1, "WE": {"_count": 1}}, "exit": {"_count": 1, "to": {"_count": 1}}}, "Asleep": {"_count": 2, "was": {"_count": 1, "the": {"_count": 1}}, "yeah": {"_count": 1, "right": {"_count": 1}}}, "despised": {"_count": 7, "magic": {"_count": 1, "in": {"_count": 1}}, "himself": {"_count": 1, "slightly": {"_count": 1}}, "the": {"_count": 1, "subject": {"_count": 1}}, "mothers": {"_count": 1, "family": {"_count": 1}}, "Malfoy": {"_count": 1, "still": {"_count": 1}}, "and": {"_count": 1, "mistrusted": {"_count": 1}}, "him": {"_count": 1, "for": {"_count": 1}}}, "absences": {"_count": 3, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "of": {"_count": 1, "Barty": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}}, "apt": {"_count": 1, "to": {"_count": 1, "blame": {"_count": 1}}}, "laughable": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Indeed": {"_count": 1, "Harry": {"_count": 1}}}, "disposed": {"_count": 6, "of": {"_count": 2, "many": {"_count": 1}, "her": {"_count": 1}}, "to": {"_count": 4, "be": {"_count": 1}, "follow": {"_count": 1}, "give": {"_count": 1}, "praise": {"_count": 1}}}, "disbanded": {"_count": 2, "and": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "disconcerting": {"_count": 2, "to": {"_count": 1, "find": {"_count": 1}}, "it": {"_count": 1, "looked": {"_count": 1}}}, "fortnight": {"_count": 10, "to": {"_count": 1, "go": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "could": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "of": {"_count": 1, "their": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "saw": {"_count": 1, "the": {"_count": 1}}}, "Dumbledorel": {"_count": 3, "And": {"_count": 1, "Ill": {"_count": 1}}, "cried": {"_count": 1, "Rita": {"_count": 1}}, "Dumbledores": {"_count": 1, "death": {"_count": 1}}}, "Ailments": {"_count": 2, "and": {"_count": 2, "Afflictions": {"_count": 2}}}, "Afflictions": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "consult": {"_count": 7, "a": {"_count": 1, "book": {"_count": 1}}, "the": {"_count": 3, "orb": {"_count": 1}, "governors": {"_count": 2}}, "Ron": {"_count": 1, "about": {"_count": 1}}, "his": {"_count": 1, "grimfaced": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}}, "blueblack": {"_count": 1, "sky": {"_count": 1, "": {"_count": 1}}}, "fulllength": {"_count": 1, "wizards": {"_count": 1, "robes": {"_count": 1}}}, "suntan": {"_count": 1, "lotion": {"_count": 1, "onto": {"_count": 1}}}, "lotion": {"_count": 1, "onto": {"_count": 1, "his": {"_count": 1}}}, "freckled": {"_count": 5, "face": {"_count": 2, "seemed": {"_count": 1}, "": {"_count": 1}}, "skin": {"_count": 1, "milkwhite": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "bespectacled": {"_count": 1, "form": {"_count": 1}}}, "swim": {"_count": 10, "before": {"_count": 1, "Harry": {"_count": 1}}, "strangely": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 4, "hot": {"_count": 1}, "which": {"_count": 1}, "Dumbledore": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "across": {"_count": 1, "": {"_count": 1}}}, "invite": {"_count": 17, "him": {"_count": 3, "to": {"_count": 3}}, "you": {"_count": 4, "for": {"_count": 1}, "all": {"_count": 1}, "weeks": {"_count": 1}, "now": {"_count": 1}}, "a": {"_count": 1, "younger": {"_count": 1}}, "his": {"_count": 1, "godfather": {"_count": 1}}, "Miss": {"_count": 1, "Edgecombe": {"_count": 1}}, "loads": {"_count": 1, "and": {"_count": 1}}, "confidences": {"_count": 1, "Dumbledore": {"_count": 1}}, "someone": {"_count": 1, "to": {"_count": 1}}, "mumbled": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Parvati": {"_count": 1}}, "Remus": {"_count": 1, "and": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}}, "inquiries": {"_count": 4, "about": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "kneaded": {"_count": 1, "his": {"_count": 1, "forehead": {"_count": 1}}}, "shameful": {"_count": 4, "to": {"_count": 2, "admit": {"_count": 1}, "resist": {"_count": 1}}, "human": {"_count": 1, "weakness": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "marveling": {"_count": 2, "at": {"_count": 2, "the": {"_count": 1}, "how": {"_count": 1}}}, "jail": {"_count": 4, "guarded": {"_count": 1, "by": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 2, "": {"_count": 1}, "trying": {"_count": 1}}}, "soulsucking": {"_count": 1, "fiends": {"_count": 1, "who": {"_count": 1}}}, "fiends": {"_count": 1, "who": {"_count": 1, "had": {"_count": 1}}}, "doubly": {"_count": 1, "hard": {"_count": 1, "to": {"_count": 1}}}, "coupled": {"_count": 4, "with": {"_count": 3, "their": {"_count": 1}, "fresh": {"_count": 1}, "a": {"_count": 1}}, "together": {"_count": 1, "in": {"_count": 1}}}, "prior": {"_count": 3, "to": {"_count": 3, "this": {"_count": 2}, "his": {"_count": 1}}}, "conveniently": {"_count": 1, "forgotten": {"_count": 1, "to": {"_count": 1}}}, "tropical": {"_count": 1, "birds": {"_count": 1, "": {"_count": 1}}}, "approved": {"_count": 6, "of": {"_count": 3, "these": {"_count": 1}, "Ginny": {"_count": 1}, "Dobbys": {"_count": 1}}, "course": {"_count": 1, "of": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "reluctant": {"_count": 12, "to": {"_count": 8, "allow": {"_count": 1}, "take": {"_count": 1}, "forgo": {"_count": 1}, "leave": {"_count": 1}, "give": {"_count": 1}, "open": {"_count": 1}, "go": {"_count": 1}, "obey": {"_count": 1}}, "grin": {"_count": 1, "spread": {"_count": 1}}, "trot": {"_count": 1, "due": {"_count": 1}}, "people": {"_count": 1, "not": {"_count": 1}}, "giggle": {"_count": 1, "": {"_count": 1}}}, "sand": {"_count": 3, "and": {"_count": 1, "he": {"_count": 1}}, "trickled": {"_count": 1, "through": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "surviving": {"_count": 3, "for": {"_count": 1, "long": {"_count": 1}}, "line": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "as": {"_count": 1}}}, "dimmer": {"_count": 2, "as": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "it": {"_count": 1}}}, "precedes": {"_count": 1, "sunrise": {"_count": 1, "slowly": {"_count": 1}}}, "PlayStation": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "MegaMutilation": {"_count": 1, "Part": {"_count": 1, "Three": {"_count": 1}}}, "Part": {"_count": 4, "Three": {"_count": 1, "to": {"_count": 1}}, "Humans": {"_count": 1, "Do": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "Lord": {"_count": 1}}}, "offhunting": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "INVITATION": {"_count": 1, "By": {"_count": 1, "the": {"_count": 1}}}, "mornings": {"_count": 4, "Daily": {"_count": 2, "Mail": {"_count": 1}, "Prophet": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "Charms": {"_count": 1, "lesson": {"_count": 1}}}, "Mail": {"_count": 1, "and": {"_count": 1, "Aunt": {"_count": 1}}}, "grapefruit": {"_count": 9, "into": {"_count": 1, "quarters": {"_count": 1}}, "onto": {"_count": 1, "Dudleys": {"_count": 1}}, "quarter": {"_count": 3, "to": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "without": {"_count": 1, "complaint": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "it": {"_count": 1, "was": {"_count": 1}}}, "horselike": {"_count": 1, "teeth": {"_count": 1, "": {"_count": 1}}}, "unsweetened": {"_count": 1, "grapefruit": {"_count": 1, "onto": {"_count": 1}}}, "tremulous": {"_count": 4, "There": {"_count": 1, "you": {"_count": 1}}, "look": {"_count": 1, "and": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Diddy": {"_count": 8, "darling": {"_count": 2, "Dudley": {"_count": 1}, "speak": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, "?": {"_count": 3}}, "whats": {"_count": 2, "the": {"_count": 2}}}, "darling": {"_count": 8, "Dudley": {"_count": 1, "glowered": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 3}, ".": {"_count": 1}}, "speak": {"_count": 1, "to": {"_count": 1}}, "whispered": {"_count": 1, "Aunt": {"_count": 1}}, "Hermiones": {"_count": 1, "idea": {"_count": 1}}}, "glowered": {"_count": 6, "at": {"_count": 4, "her": {"_count": 1}, "him": {"_count": 1}, "Snape": {"_count": 1}, "Xenophilius": {"_count": 1}}, "down": {"_count": 1, "at": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "gifted": {"_count": 11, "boy": {"_count": 1, "whose": {"_count": 1}}, "the": {"_count": 1, "pair": {"_count": 1}}, "Seer": {"_count": 1, "and": {"_count": 1}}, "witch": {"_count": 1, "and": {"_count": 1}}, "student": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "doing": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "magical": {"_count": 1, "historian": {"_count": 1}}, "Order": {"_count": 1, "member": {"_count": 1}}, "dangerous": {"_count": 1, "wizards": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}}, "swotty": {"_count": 1, "little": {"_count": 1, "nancy": {"_count": 1}}}, "nancy": {"_count": 1, "boy": {"_count": 1, "for": {"_count": 1}}}, "skated": {"_count": 2, "over": {"_count": 2, "the": {"_count": 2}}}, "accusations": {"_count": 7, "of": {"_count": 2, "bullying": {"_count": 1}, "inaccuracy": {"_count": 1}}, "levelled": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "they": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "bigboned": {"_count": 1, "and": {"_count": 1, "that": {"_count": 1}}}, "poundage": {"_count": 1, "was": {"_count": 1, "really": {"_count": 1}}}, "puppy": {"_count": 1, "fat": {"_count": 1, "and": {"_count": 1}}}, "outfitters": {"_count": 1, "didnt": {"_count": 1, "stock": {"_count": 1}}}, "stock": {"_count": 9, "knickerbockers": {"_count": 1, "big": {"_count": 1}}, "were": {"_count": 1, "going": {"_count": 1}}, "of": {"_count": 4, "old": {"_count": 1}, "Ministry": {"_count": 1}, "it": {"_count": 1}, "Polyjuice": {"_count": 1}}, "abilities": {"_count": 1, "like": {"_count": 1}}, "still": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fingerprints": {"_count": 1, "on": {"_count": 1, "her": {"_count": 1}}}, "observing": {"_count": 12, "the": {"_count": 3, "comings": {"_count": 1}, "unconscious": {"_count": 1}, "stream": {"_count": 1}}, "square": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 1, "from": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}, "all": {"_count": 1, "secret": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 1, "coolly": {"_count": 1}}, "him": {"_count": 2, "with": {"_count": 1}, "stonyfaced": {"_count": 1}}, "foreign": {"_count": 1, "wizards": {"_count": 1}}}, "comings": {"_count": 1, "and": {"_count": 1, "goings": {"_count": 1}}}, "goings": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "at": {"_count": 1}}}, "nourishment": {"_count": 1, "Dudley": {"_count": 1, "had": {"_count": 1}}}, "killer": {"_count": 10, "whale": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "may": {"_count": 1}}, "inherit": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "of": {"_count": 1, "Dumbledore": {"_count": 1}}}, "whale": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "regime": {"_count": 9, "had": {"_count": 1, "begun": {"_count": 1}}, "at": {"_count": 2, "Hog": {"_count": 1}, "the": {"_count": 1}}, "thinks": {"_count": 1, "Muggleborns": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "Being": {"_count": 1, "fed": {"_count": 1}}}, "fizzy": {"_count": 1, "drinks": {"_count": 1, "and": {"_count": 1}}}, "burgers": {"_count": 1, "and": {"_count": 1, "filled": {"_count": 1}}}, "pleas": {"_count": 2, "for": {"_count": 1, "help": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "magnificently": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "ship": {"_count": 1}}, "embroidered": {"_count": 1, "purpleandgold": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "sugarfree": {"_count": 1, "snacks": {"_count": 1, "": {"_count": 1}}}, "snacks": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "take": {"_count": 1}}, "toppled": {"_count": 1, "out": {"_count": 1}}}, "obliged": {"_count": 6, "with": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "recover": {"_count": 10, "from": {"_count": 2, "the": {"_count": 2}}, "what": {"_count": 3, "we": {"_count": 2}, "has": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "before": {"_count": 1, "Slytherin": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "body": {"_count": 1}}, "more": {"_count": 1, "bodies": {"_count": 1}}}, "occupied": {"_count": 12, "with": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "carriages": {"_count": 1}}, "chintz": {"_count": 1, "chairs": {"_count": 1}}, "by": {"_count": 1, "Percy": {"_count": 1}}, "it": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "bed": {"_count": 2, "which": {"_count": 1}, "": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "The": {"_count": 1, "emptiest": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "Bewildered": {"_count": 4, "wondering": {"_count": 1, "what": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "lostlooking": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}}, "pronounce": {"_count": 3, "him": {"_count": 1, "under": {"_count": 1}}, "judgment": {"_count": 1, "": {"_count": 1}}, "properly": {"_count": 1, "": {"_count": 1}}}, "prime": {"_count": 1, "tickets": {"_count": 1, "through": {"_count": 1}}}, "connections": {"_count": 3, "at": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "complex": {"_count": 1}}}, "Games": {"_count": 8, "and": {"_count": 8, "Sports": {"_count": 8}}}, "Sports": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "have": {"_count": 1, "decided": {"_count": 1}}, "of": {"_count": 1, "breaking": {"_count": 1}}, "Ludo": {"_count": 1, "Bagman": {"_count": 1}}, "incorporating": {"_count": 1, "the": {"_count": 1}}}, "onceinalifetime": {"_count": 1, "opportunity": {"_count": 1, "Britain": {"_count": 1}}}, "hosted": {"_count": 2, "the": {"_count": 1, "cup": {"_count": 1}}, "a": {"_count": 1, "\u2018Support": {"_count": 1}}}, "breast": {"_count": 5, "pocket": {"_count": 3, "and": {"_count": 2}, "of": {"_count": 1}}, "Minerva": {"_count": 1, "": {"_count": 1}}, "heaving": {"_count": 1, "": {"_count": 1}}}, "touchy": {"_count": 5, "they": {"_count": 1, "were": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "Myrtle": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "ready": {"_count": 1}}, "subject": {"_count": 1, "with": {"_count": 1}}}, "distantly": {"_count": 5, "with": {"_count": 1, "people": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "buried": {"_count": 1, "in": {"_count": 1}}, "descended": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "several": {"_count": 1}}}, "neutral": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bristled": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "fundamental": {"_count": 1, "instincts": {"_count": 1, "came": {"_count": 1}}}, "instincts": {"_count": 3, "came": {"_count": 1, "into": {"_count": 1}}, "for": {"_count": 1, "cruelty": {"_count": 1}}, "which": {"_count": 1, "are": {"_count": 1}}}, "conflict": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "she": {"_count": 1, "murmured": {"_count": 1}}}, "Allowing": {"_count": 1, "Harry": {"_count": 1, "to": {"_count": 1}}}, "distaste": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "his": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 1, "shared": {"_count": 1}}}, "Dumpy": {"_count": 1, "sort": {"_count": 1, "of": {"_count": 1}}}, "perusing": {"_count": 5, "the": {"_count": 3, "letter": {"_count": 2}, "Evening": {"_count": 1}}, "a": {"_count": 1, "page": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "stab": {"_count": 12, "of": {"_count": 6, "annoyance": {"_count": 1}, "horror": {"_count": 1}, "panic": {"_count": 1}, "pity": {"_count": 1}, "revulsion": {"_count": 1}, "rage": {"_count": 1}}, "at": {"_count": 3, "making": {"_count": 1}, "question": {"_count": 1}, "airiness": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 1}, "now": {"_count": 1}, "STAB": {"_count": 1}}}, "Played": {"_count": 1, "on": {"_count": 1, "broom": {"_count": 1}}}, "Normal": {"_count": 2, "for": {"_count": 1, "us": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "unnaturalness": {"_count": 1, "under": {"_count": 1, "my": {"_count": 1}}}, "recede": {"_count": 3, "blotchily": {"_count": 1, "from": {"_count": 1}}, "into": {"_count": 1, "nothing": {"_count": 1}}, "very": {"_count": 1, "slowly": {"_count": 1}}}, "blotchily": {"_count": 3, "from": {"_count": 1, "Uncle": {"_count": 1}}, "in": {"_count": 1, "black": {"_count": 1}}, "scarlet": {"_count": 1, "lost": {"_count": 1}}}, "cogs": {"_count": 3, "working": {"_count": 1, "under": {"_count": 1}}, "and": {"_count": 2, "fragments": {"_count": 1}, "wheels": {"_count": 1}}}, "mistreated": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "abused": {"_count": 1}}, "in": {"_count": 1, "any": {"_count": 1}}}, "conclusion": {"_count": 15, "forming": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 4, "her": {"_count": 1}, "Ive": {"_count": 1}, "the": {"_count": 1}, "if": {"_count": 1}}, "was": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 1, "Snapes": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "she": {"_count": 1, "raised": {"_count": 1}}, "Harry": {"_count": 1, "became": {"_count": 1}}}, "overhear": {"_count": 3, "Harry": {"_count": 1, "being": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "lets": {"_count": 1, "not": {"_count": 1}}}, "Laughing": {"_count": 5, "at": {"_count": 1, "the": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "he": {"_count": 1, "ducked": {"_count": 1}}, "Harry": {"_count": 2, "broke": {"_count": 1}, "turned": {"_count": 1}}}, "astonished": {"_count": 31, "look": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 4, "stared": {"_count": 1}, "snorted": {"_count": 1}, "almost": {"_count": 1}, "touched": {"_count": 1}}, "": {"_count": 11, ".": {"_count": 11}}, "saw": {"_count": 1, "his": {"_count": 1}}, "gaze": {"_count": 2, "saw": {"_count": 1}, "they": {"_count": 1}}, "to": {"_count": 4, "see": {"_count": 2}, "hear": {"_count": 2}}, "as": {"_count": 1, "if": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "dancers": {"_count": 1, "": {"_count": 1}}, "certainty": {"_count": 1, "": {"_count": 1}}, "keeping": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "delighted": {"_count": 1, "now": {"_count": 1}}}, "feathery": {"_count": 9, "tennis": {"_count": 1, "ball": {"_count": 1}}, "git": {"_count": 1, "": {"_count": 1}}, "neck": {"_count": 1, "": {"_count": 1}}, "cannonball": {"_count": 1, "and": {"_count": 1}}, "wings": {"_count": 1, "that": {"_count": 1}}, "mass": {"_count": 1, "and": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "model": {"_count": 1, "of": {"_count": 1}}, "pink": {"_count": 1, "hat": {"_count": 1}}}, "massaged": {"_count": 2, "the": {"_count": 1, "spot": {"_count": 1}}, "his": {"_count": 1, "ribs": {"_count": 1}}}, "handwriting": {"_count": 14, "then": {"_count": 1, "tore": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "was": {"_count": 1, "vaguely": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "Today": {"_count": 1, "same": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "The": {"_count": 1, "Formation": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "Harry": {"_count": 1}}, "looks": {"_count": 1, "more": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "itself": {"_count": 1, "": {"_count": 1}}}, "TICKETS": {"_count": 1, "Ireland": {"_count": 1, "versus": {"_count": 1}}}, "Bulgaria": {"_count": 9, "Monday": {"_count": 1, "night": {"_count": 1}}, "has": {"_count": 1, "got": {"_count": 1}}, "will": {"_count": 1, "score": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 1, "again": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "scarf": {"_count": 1, "tied": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "fixture": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "pronto": {"_count": 2, "and": {"_count": 2, "well": {"_count": 2}}}, "Cooperation": {"_count": 10, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 1, "Percy": {"_count": 1}}, "without": {"_count": 1, "trying": {"_count": 1}}, "and": {"_count": 1, "Magical": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "incorporating": {"_count": 1, "the": {"_count": 1}}}, "Abroad": {"_count": 1, "while": {"_count": 1, "youre": {"_count": 1}}}, "pants": {"_count": 9, "bored": {"_count": 1, "off": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 2}, ".": {"_count": 1}, "!": {"_count": 1}}, "Harry": {"_count": 1, "never": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}}, "twittering": {"_count": 14, "madly": {"_count": 3, "with": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "and": {"_count": 1, "zooming": {"_count": 1}}, "birds": {"_count": 1, "flew": {"_count": 1}}, "away": {"_count": 1, "": {"_count": 1}}, "noise": {"_count": 1, "followed": {"_count": 1}}, "excitedly": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 2, "birds": {"_count": 2}}, "wildly": {"_count": 1, "up": {"_count": 1}}, "from": {"_count": 1, "their": {"_count": 1}}, "yellow": {"_count": 2, "birds": {"_count": 2}}}, "secure": {"_count": 18, "the": {"_count": 4, "owl": {"_count": 1}, "additional": {"_count": 1}, "true": {"_count": 1}, "school": {"_count": 1}}, "houseelves": {"_count": 1, "fair": {"_count": 1}}, "riskfree": {"_count": 1, "way": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "place": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "looked": {"_count": 1}}, "a": {"_count": 2, "visit": {"_count": 1}, "teaching": {"_count": 1}}, "Morfins": {"_count": 1, "release": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}, "houses": {"_count": 1, "Im": {"_count": 1}}, "location": {"_count": 1, "Lee": {"_count": 1}}, "but": {"_count": 1, "do": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "postscript": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "nipped": {"_count": 3, "his": {"_count": 2, "finger": {"_count": 2}}, "in": {"_count": 1, "there": {"_count": 1}}}, "affectionately": {"_count": 5, "then": {"_count": 1, "with": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "around": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "swooshing": {"_count": 3, "noise": {"_count": 1, "spread": {"_count": 1}}, "past": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "savoring": {"_count": 5, "the": {"_count": 5, "happiness": {"_count": 1}, "fresh": {"_count": 1}, "moment": {"_count": 1}, "words": {"_count": 1}, "triumph": {"_count": 1}}}, "doublechecked": {"_count": 1, "every": {"_count": 1, "nook": {"_count": 1}}}, "nook": {"_count": 2, "and": {"_count": 2, "cranny": {"_count": 1}, "crevice": {"_count": 1}}}, "cranny": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "imminent": {"_count": 6, "arrival": {"_count": 2, "at": {"_count": 1}, "of": {"_count": 1}}, "prospect": {"_count": 1, "of": {"_count": 1}}, "misery": {"_count": 1, "": {"_count": 1}}, "danger": {"_count": 1, "of": {"_count": 1}}, "threat": {"_count": 1, "of": {"_count": 1}}}, "clothing": {"_count": 7, "during": {"_count": 1, "the": {"_count": 1}}, "many": {"_count": 1, "people": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloak": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "He": {"_count": 1, "rolled": {"_count": 1}}, "was": {"_count": 1, "singed": {"_count": 1}}}, "varying": {"_count": 2, "states": {"_count": 1, "of": {"_count": 1}}, "degrees": {"_count": 1, "of": {"_count": 1}}}, "shabbiness": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "intimidating": {"_count": 6, "": {"_count": 5, ".": {"_count": 5}}, "still": {"_count": 1, "seemed": {"_count": 1}}}, "diminished": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "terrified": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "substance": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "soul": {"_count": 1, "": {"_count": 1}}}, "encounter": {"_count": 13, "with": {"_count": 6, "a": {"_count": 1}, "Lucius": {"_count": 1}, "Slughorn": {"_count": 1}, "Lupin": {"_count": 1}, "the": {"_count": 1}, "Nagini": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "kept": {"_count": 1, "intruding": {"_count": 1}}, "but": {"_count": 1, "Snape": {"_count": 1}}, "yet": {"_count": 1, "still": {"_count": 1}}, "an": {"_count": 1, "obstacle": {"_count": 1}}}, "altogether": {"_count": 9, "surprising": {"_count": 1, "therefore": {"_count": 1}}, "reassured": {"_count": 1, "Harry": {"_count": 1}}, "more": {"_count": 2, "difficult": {"_count": 1}, "shocking": {"_count": 1}}, "surprised": {"_count": 1, "to": {"_count": 1}}, "comfortable": {"_count": 1, "experience": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "truthfully": {"_count": 1, "": {"_count": 1}}, "compensate": {"_count": 1, "for": {"_count": 1}}}, "grated": {"_count": 1, "celery": {"_count": 1, "": {"_count": 1}}}, "celery": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "diatribe": {"_count": 1, "she": {"_count": 1, "longed": {"_count": 1}}}, "Normally": {"_count": 2, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}}, "tended": {"_count": 5, "to": {"_count": 4, "judge": {"_count": 1}, "lead": {"_count": 1}, "make": {"_count": 1}, "converge": {"_count": 1}}, "front": {"_count": 1, "path": {"_count": 1}}}, "Ferrari": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "compulsively": {"_count": 1, "straightening": {"_count": 1, "cushions": {"_count": 1}}}, "cushions": {"_count": 20, "": {"_count": 4, ".": {"_count": 4}}, "beside": {"_count": 1, "Professor": {"_count": 1}}, "on": {"_count": 2, "which": {"_count": 1}, "the": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "with": {"_count": 4, "his": {"_count": 1}, "Ron": {"_count": 1}, "Aunt": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 1, "reach": {"_count": 1}}, "and": {"_count": 1, "try": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "torn": {"_count": 1, "books": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "pumping": {"_count": 10, "fast": {"_count": 4, "from": {"_count": 1}, "and": {"_count": 1}, "again": {"_count": 1}, "with": {"_count": 1}}, "through": {"_count": 2, "his": {"_count": 1}, "him": {"_count": 1}}, "harder": {"_count": 1, "and": {"_count": 1}}, "frantically": {"_count": 1, "now": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "perspiring": {"_count": 1, "slightly": {"_count": 1, "in": {"_count": 1}}}, "traffics": {"_count": 1, "bad": {"_count": 1, "or": {"_count": 1}}}, "conversing": {"_count": 6, "in": {"_count": 4, "terse": {"_count": 1}, "low": {"_count": 2}, "Mermish": {"_count": 1}}, "wildly": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "terse": {"_count": 1, "mutters": {"_count": 1, "in": {"_count": 1}}}, "mutters": {"_count": 3, "in": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "barely": {"_count": 1, "audible": {"_count": 1}}}, "consideration": {"_count": 4, "at": {"_count": 1, "all": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "engagement": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "any": {"_count": 1, "day": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}}, "invited": {"_count": 25, "to": {"_count": 6, "dinner": {"_count": 1}, "watch": {"_count": 1}, "spend": {"_count": 1}, "any": {"_count": 1}, "your": {"_count": 1}, "the": {"_count": 1}}, "her": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 5, "warmly": {"_count": 1}, "into": {"_count": 1}, "to": {"_count": 1}, "here": {"_count": 1}, "said": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "Longbottom": {"_count": 1, "": {"_count": 1}}, "snapped": {"_count": 1, "Ron": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "Dumbledore": {"_count": 1, "to": {"_count": 1}}, "dear": {"_count": 1, "Tonks": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "so": {"_count": 1}}, "you": {"_count": 2, "of": {"_count": 1}, "to": {"_count": 1}}, "friends": {"_count": 1, "to": {"_count": 1}}}, "punctuality": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Either": {"_count": 9, "that": {"_count": 1, "or": {"_count": 1}}, "explain": {"_count": 1, "what": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "Crouch": {"_count": 1, "has": {"_count": 1}}, "stay": {"_count": 1, "in": {"_count": 1}}, "way": {"_count": 2, "hes": {"_count": 1}, "there": {"_count": 1}}, "Dumbledore": {"_count": 1, "was": {"_count": 1}}, "weve": {"_count": 1, "got": {"_count": 1}}}, "tinpot": {"_count": 1, "car": {"_count": 1, "thats": {"_count": 1}}}, "aaRRRRRGH": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "buttocks": {"_count": 3, "he": {"_count": 1, "waddled": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "still": {"_count": 1, "on": {"_count": 1}}}, "waddled": {"_count": 3, "as": {"_count": 1, "fast": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}}, "scrapings": {"_count": 2, "were": {"_count": 1, "coming": {"_count": 1}}, "Xenophilius": {"_count": 1, "was": {"_count": 1}}}, "coal": {"_count": 1, "fire": {"_count": 1, "plugged": {"_count": 1}}}, "plugged": {"_count": 1, "in": {"_count": 1, "front": {"_count": 1}}}, "Voices": {"_count": 1, "could": {"_count": 1, "be": {"_count": 1}}}, "boards": {"_count": 7, "behind": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "morning": {"_count": 1}}, "but": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "unable": {"_count": 1}}, "overnight": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "wolverines": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Damn": {"_count": 4, "": {"_count": 1, "!": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "leg": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "he": {"_count": 1}}}, "Eclectic": {"_count": 1, "you": {"_count": 1, "say": {"_count": 1}}}, "plug": {"_count": 4, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "Gracious": {"_count": 2, "I": {"_count": 1, "must": {"_count": 1}}, "Albus": {"_count": 1, "you": {"_count": 1}}}, "ouch": {"_count": 6, "Ron": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "been": {"_count": 1, "hit": {"_count": 1}}, "shoes": {"_count": 1, "my": {"_count": 1}}}, "outward": {"_count": 4, "expelling": {"_count": 1, "Mr": {"_count": 1}}, "arrogance": {"_count": 1, "or": {"_count": 1}}, "in": {"_count": 1, "cold": {"_count": 1}}, "sign": {"_count": 1, "of": {"_count": 1}}}, "rubble": {"_count": 8, "and": {"_count": 3, "loose": {"_count": 1}, "broken": {"_count": 1}, "bloodstains": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "lay": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "flew": {"_count": 1, "in": {"_count": 1}}, "Harry": {"_count": 1, "tried": {"_count": 1}}}, "chippings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "freckle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Tall": {"_count": 3, "thin": {"_count": 2, "and": {"_count": 2}}, "dilapidated": {"_count": 1, "houses": {"_count": 1}}}, "Network": {"_count": 15, "you": {"_count": 1, "see": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 1, "its": {"_count": 1}}, "Authority": {"_count": 1, "Broom": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "is": {"_count": 1, "being": {"_count": 1}}, "office": {"_count": 1, "shes": {"_count": 1}}, "Regulator": {"_count": 1, "is": {"_count": 1}}, "to": {"_count": 2, "return": {"_count": 1}, "get": {"_count": 1}}, "we": {"_count": 1, "shall": {"_count": 1}}, "place": {"_count": 1, "a": {"_count": 1}}, "now": {"_count": 1, "because": {"_count": 1}}, "News": {"_count": 1, "and": {"_count": 1}}, "under": {"_count": 1, "observation": {"_count": 1}}}, "Regulation": {"_count": 13, "Panel": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 12, "Control": {"_count": 12}}}, "Panel": {"_count": 1, "and": {"_count": 1, "he": {"_count": 1}}}, "jiffy": {"_count": 2, "though": {"_count": 1, "dont": {"_count": 1}}, "an": {"_count": 1, "Professor": {"_count": 1}}}, "Disapparate": {"_count": 27, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 2, "Apparate": {"_count": 1}, "head": {"_count": 1}}, "inside": {"_count": 1, "Hogwarts": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "within": {"_count": 1, "Hogwarts": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 2, "tore": {"_count": 1}, "": {"_count": 1}}, "just": {"_count": 1, "beyond": {"_count": 1}}, "in": {"_count": 1, "and": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "separately": {"_count": 1, "Ron": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "Death": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}}, "Winking": {"_count": 1, "at": {"_count": 1, "Harry": {"_count": 1}}}, "erm": {"_count": 4, "very": {"_count": 1, "nice": {"_count": 1}}, "Lose": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "spotless": {"_count": 3, "living": {"_count": 1, "room": {"_count": 1}}, "state": {"_count": 1, "there": {"_count": 1}}, "appliances": {"_count": 1, "Ron": {"_count": 1}}}, "remark": {"_count": 2, "didnt": {"_count": 1, "go": {"_count": 1}}, "highly": {"_count": 1, "amusing": {"_count": 1}}}, "purpled": {"_count": 1, "once": {"_count": 1, "more": {"_count": 1}}}, "recorder": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "eckeltricity": {"_count": 1, "do": {"_count": 1, "they": {"_count": 1}}}, "batteries": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "screening": {"_count": 4, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}, "the": {"_count": 1, "dragons": {"_count": 1}}, "process": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}}, "bulk": {"_count": 4, "while": {"_count": 1, "sufficient": {"_count": 1}}, "was": {"_count": 1, "really": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "temptation": {"_count": 14, "to": {"_count": 8, "burst": {"_count": 1}, "tie": {"_count": 1}, "write": {"_count": 1}, "open": {"_count": 1}, "walk": {"_count": 1}, "laugh": {"_count": 1}, "take": {"_count": 1}, "pull": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 1, "muttering": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}}, "overwhelming": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "evidence": {"_count": 1, "that": {"_count": 1}}, "instinct": {"_count": 1, "told": {"_count": 1}}, "feeling": {"_count": 1, "was": {"_count": 1}}, "Below": {"_count": 1, "them": {"_count": 1}}}, "genuinely": {"_count": 4, "concerned": {"_count": 1, "at": {"_count": 1}}, "shocked": {"_count": 1, "": {"_count": 1}}, "worried": {"_count": 1, "and": {"_count": 1}}, "written": {"_count": 1, "by": {"_count": 1}}}, "sympathy": {"_count": 12, "rather": {"_count": 1, "than": {"_count": 1}}, "from": {"_count": 2, "strangers": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "plans": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "limited": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 3, "you": {"_count": 1}, "the": {"_count": 2}}, "Molly": {"_count": 1, "": {"_count": 1}}}, "tighten": {"_count": 5, "still": {"_count": 1, "harder": {"_count": 1}}, "the": {"_count": 1, "chains": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "beneath": {"_count": 1, "their": {"_count": 1}}, "momentarily": {"_count": 1, "around": {"_count": 1}}}, "grins": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "their": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}}, "Incendio": {"_count": 2, "said": {"_count": 2, "Mr": {"_count": 1}, "Ginny": {"_count": 1}}}, "Flames": {"_count": 3, "rose": {"_count": 1, "at": {"_count": 1}}, "reared": {"_count": 1, "their": {"_count": 1}}, "of": {"_count": 1, "abnormal": {"_count": 1}}}, "drawstring": {"_count": 3, "bag": {"_count": 1, "from": {"_count": 1}}, "pouch": {"_count": 2, "with": {"_count": 1}, "much": {"_count": 1}}}, "wrappers": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "usually": {"_count": 1}}, "littered": {"_count": 1, "the": {"_count": 1}}}, "Tye": {"_count": 1, "then": {"_count": 1, "Harry": {"_count": 1}}}, "unsurprisingly": {"_count": 1, "Dudley": {"_count": 1, "yelled": {"_count": 1}}}, "process": {"_count": 12, "it": {"_count": 1, "was": {"_count": 1}}, "started": {"_count": 1, "again": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 3, "covering": {"_count": 1}, "making": {"_count": 1}, "lowering": {"_count": 1}}, "is": {"_count": 1, "likely": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "took": {"_count": 1, "even": {"_count": 1}}, "transform": {"_count": 1, "these": {"_count": 1}}}, "joker": {"_count": 1, "but": {"_count": 1, "its": {"_count": 1}}}, "suffocating": {"_count": 5, "under": {"_count": 1, "the": {"_count": 1}}, "mass": {"_count": 1, "Then": {"_count": 1}}, "darkness": {"_count": 1, "once": {"_count": 1}}, "he": {"_count": 1, "scrabbled": {"_count": 1}}, "feeling": {"_count": 1, "extinguished": {"_count": 1}}}, "combined": {"_count": 8, "pressure": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "did": {"_count": 1, "what": {"_count": 1}}, "efforts": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "weight": {"_count": 1, "too": {"_count": 1}}, "dining": {"_count": 1, "and": {"_count": 1}}, "force": {"_count": 1, "of": {"_count": 1}}}, "sideboard": {"_count": 8, "and": {"_count": 5, "threw": {"_count": 1}, "started": {"_count": 1}, "held": {"_count": 1}, "sighed": {"_count": 1}, "pulled": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "a": {"_count": 1, "stone": {"_count": 1}}}, "ornament": {"_count": 4, "to": {"_count": 1, "shatter": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "narrowly": {"_count": 1, "missed": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "shatter": {"_count": 6, "in": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "with": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "repair": {"_count": 1}}, "that": {"_count": 1, "calm": {"_count": 1}}}, "Bellowing": {"_count": 1, "like": {"_count": 1, "a": {"_count": 1}}}, "WEASLEYS": {"_count": 1, "WIZARD": {"_count": 1, "WHEEZES": {"_count": 1}}}, "WHEEZES": {"_count": 1, "Harry": {"_count": 1, "spun": {"_count": 1}}}, "TonTongue": {"_count": 4, "Toffee": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}, "Toffees": {"_count": 1, "": {"_count": 1}}}, "Toffee": {"_count": 3, "said": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "calluses": {"_count": 1, "and": {"_count": 1, "blisters": {"_count": 1}}}, "blisters": {"_count": 2, "under": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "stockier": {"_count": 2, "than": {"_count": 1, "Percy": {"_count": 1}}, "and": {"_count": 1, "slightly": {"_count": 1}}}, "lanky": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "frame": {"_count": 1, "permitted": {"_count": 1}}, "Hermione": {"_count": 1, "her": {"_count": 1}}}, "goodnatured": {"_count": 2, "face": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "weatherbeaten": {"_count": 1, "and": {"_count": 1, "so": {"_count": 1}}}, "tanned": {"_count": 1, "his": {"_count": 1, "arms": {"_count": 1}}}, "fussy": {"_count": 6, "about": {"_count": 1, "rulebreaking": {"_count": 1}}, "where": {"_count": 1, "we": {"_count": 1}}, "little": {"_count": 2, "piefrill": {"_count": 1}, "lace": {"_count": 1}}, "simpering": {"_count": 1, "demeanor": {"_count": 1}}, "old": {"_count": 1, "lady": {"_count": 1}}}, "rulebreaking": {"_count": 2, "and": {"_count": 1, "fond": {"_count": 1}}, "Harry": {"_count": 1, "owned": {"_count": 1}}}, "bossing": {"_count": 4, "everyone": {"_count": 1, "around": {"_count": 1}}, "him": {"_count": 1, "around": {"_count": 1}}, "me": {"_count": 1, "around": {"_count": 1}}, "them": {"_count": 1, "around": {"_count": 1}}}, "ponytail": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "like": {"_count": 1, "Bills": {"_count": 1}}, "hastily": {"_count": 1, "rolling": {"_count": 1}}, "longer": {"_count": 1, "than": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}}, "earring": {"_count": 4, "with": {"_count": 1, "what": {"_count": 1}}, "which": {"_count": 1, "seemed": {"_count": 1}}, "gleaming": {"_count": 1, "slightly": {"_count": 1}}, "in": {"_count": 1, "": {"_count": 1}}}, "concert": {"_count": 3, "except": {"_count": 1, "that": {"_count": 1}}, "tonight": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "Little": {"_count": 1}}}, "undermines": {"_count": 1, "wizardMuggle": {"_count": 1, "relations": {"_count": 1}}}, "wizardMuggle": {"_count": 1, "relations": {"_count": 1, "": {"_count": 1}}}, "relations": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "care": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "Dumbledore": {"_count": 1}}}, "campaigning": {"_count": 2, "against": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "mistreatment": {"_count": 1, "of": {"_count": 1, "Muggles": {"_count": 1}}}, "Wheezes": {"_count": 13, "Why": {"_count": 1, "dont": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "by": {"_count": 1, "any": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "glanced": {"_count": 1}}, "the": {"_count": 1, "joke": {"_count": 1}}, "where": {"_count": 1, "they": {"_count": 1}}, "products": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 1, "you": {"_count": 1}}, "merchandise": {"_count": 1, "from": {"_count": 1}}}, "cottoning": {"_count": 2, "on": {"_count": 2, "": {"_count": 2}}}, "Fake": {"_count": 1, "wands": {"_count": 1, "and": {"_count": 1}}}, "examinations": {"_count": 10, "Hogwarts": {"_count": 1, "students": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "may": {"_count": 1, "influence": {"_count": 1}}, "a": {"_count": 1, "batch": {"_count": 1}}, "after": {"_count": 1, "six": {"_count": 1}}, "or": {"_count": 1, "elections": {"_count": 1}}, "postponed": {"_count": 1, "": {"_count": 1}}, "finished": {"_count": 1, "the": {"_count": 1}}}, "topsecret": {"_count": 1, "workings": {"_count": 1, "of": {"_count": 1}}}, "workings": {"_count": 2, "of": {"_count": 2, "the": {"_count": 1}, "wands": {"_count": 1}}}, "standardize": {"_count": 1, "cauldron": {"_count": 1, "thickness": {"_count": 1}}}, "thickness": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "foreign": {"_count": 17, "imports": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "school": {"_count": 1, "said": {"_count": 1}}, "wizards": {"_count": 4, "from": {"_count": 1}, "and": {"_count": 1}, "brought": {"_count": 1}, "before": {"_count": 1}}, "guests": {"_count": 2, "while": {"_count": 1}, "": {"_count": 1}}, "students": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}, "mountain": {"_count": 1, "ranges": {"_count": 1}}, "for": {"_count": 1, "tea": {"_count": 1}}, "and": {"_count": 1, "very": {"_count": 1}}, "dragons": {"_count": 1, "and": {"_count": 1}}, "wandmaker": {"_count": 1, "said": {"_count": 1}}}, "imports": {"_count": 1, "are": {"_count": 1, "just": {"_count": 1}}}, "leakages": {"_count": 1, "have": {"_count": 1, "been": {"_count": 1}}}, "increasing": {"_count": 13, "at": {"_count": 1, "a": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "unease": {"_count": 1, "": {"_count": 1}}, "darkness": {"_count": 1, "made": {"_count": 1}}, "amounts": {"_count": 1, "of": {"_count": 1}}, "desperation": {"_count": 2, "pushed": {"_count": 1}, "to": {"_count": 1}}, "resentment": {"_count": 1, "Harrys": {"_count": 1}}, "to": {"_count": 1, "provide": {"_count": 1}}, "sense": {"_count": 1, "that": {"_count": 1}}, "Harry": {"_count": 1, "strode": {"_count": 1}}, "nastiness": {"_count": 1, "of": {"_count": 1}}, "this": {"_count": 1, "its": {"_count": 1}}}, "Front": {"_count": 2, "page": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "leaks": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "floods": {"_count": 1}}}, "bottomed": {"_count": 1, "products": {"_count": 1, "that": {"_count": 1}}}, "products": {"_count": 10, "that": {"_count": 1, "seriously": {"_count": 1}}, "to": {"_count": 2, "fit": {"_count": 1}, "get": {"_count": 1}}, "on": {"_count": 1, "ourselves": {"_count": 1}}, "lining": {"_count": 1, "these": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}}, "endanger": {"_count": 1, "Yeah": {"_count": 1, "yeah": {"_count": 1}}}, "previously": {"_count": 19, "held": {"_count": 1, "frog": {"_count": 1}}, "followed": {"_count": 1, "the": {"_count": 1}}, "described": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "below": {"_count": 1}}, "Harry": {"_count": 2, "would": {"_count": 1}, "had": {"_count": 1}}, "when": {"_count": 2, "Fudge": {"_count": 1}, "he": {"_count": 1}}, "Head": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "despised": {"_count": 1, "mothers": {"_count": 1}}, "the": {"_count": 1, "silver": {"_count": 1}}, "his": {"_count": 1, "father": {"_count": 1}}, "Undesirable": {"_count": 1, "Number": {"_count": 1}}, "now": {"_count": 1, "there": {"_count": 1}}, "noticed": {"_count": 1, "set": {"_count": 1}}}, "Pigwidgeon": {"_count": 43, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "zoomed": {"_count": 2, "happily": {"_count": 1}, "excitedly": {"_count": 1}}, "began": {"_count": 1, "twittering": {"_count": 1}}, "was": {"_count": 6, "choking": {"_count": 1}, "making": {"_count": 1}, "so": {"_count": 1}, "much": {"_count": 1}, "once": {"_count": 1}, "asleep": {"_count": 1}}, "and": {"_count": 3, "Crookshanks": {"_count": 1}, "Ginnys": {"_count": 1}, "give": {"_count": 1}}, "became": {"_count": 1, "noisier": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "Neville": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "to": {"_count": 2, "the": {"_count": 1}, "wake": {"_count": 1}}, "plummeted": {"_count": 1, "twelve": {"_count": 1}}, "disappear": {"_count": 1, "into": {"_count": 1}}, "hooted": {"_count": 2, "happily": {"_count": 1}, "dolefully": {"_count": 1}}, "who": {"_count": 3, "hooted": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "twittered": {"_count": 3, "in": {"_count": 1}, "more": {"_count": 1}, "and": {"_count": 1}}, "off": {"_count": 1, "toward": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "next": {"_count": 1, "to": {"_count": 1}}, "still": {"_count": 1, "swaying": {"_count": 1}}, "at": {"_count": 1, "Eeylops": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}}, "annoys": {"_count": 3, "Errol": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 1, "too": {"_count": 1}}, "you": {"_count": 1, "just": {"_count": 1}}}, "Crouch": {"_count": 295, "": {"_count": 76, ".": {"_count": 54}, "!": {"_count": 13}, "?": {"_count": 9}}, "is": {"_count": 17, "of": {"_count": 1}, "quite": {"_count": 1}, "very": {"_count": 2}, "really": {"_count": 1}, "a": {"_count": 1}, "right": {"_count": 1}, "getting": {"_count": 1}, "suffering": {"_count": 1}, "obsessed": {"_count": 1}, "up": {"_count": 1}, "her": {"_count": 1}, "taking": {"_count": 1}, "here": {"_count": 1}, "Dumbledore": {"_count": 1}, "going": {"_count": 2}}, "was": {"_count": 15, "telling": {"_count": 1}, "quite": {"_count": 2}, "a": {"_count": 1}, "such": {"_count": 1}, "supposed": {"_count": 1}, "up": {"_count": 1}, "always": {"_count": 1}, "shunted": {"_count": 1}, "refusing": {"_count": 1}, "talking": {"_count": 1}, "pulling": {"_count": 1}, "now": {"_count": 1}, "already": {"_count": 1}, "off": {"_count": 1}}, "that": {"_count": 2, "Ill": {"_count": 1}, "he": {"_count": 1}}, "losing": {"_count": 1, "a": {"_count": 1}}, "has": {"_count": 5, "been": {"_count": 3}, "finally": {"_count": 1}, "helped": {"_count": 1}}, "keeps": {"_count": 1, "saying": {"_count": 1}}, "had": {"_count": 8, "complied": {"_count": 1}, "returned": {"_count": 1}, "stopped": {"_count": 1}, "failed": {"_count": 1}, "overreacted": {"_count": 1}, "released": {"_count": 1}, "said": {"_count": 1}, "gone": {"_count": 1}}, "and": {"_count": 10, "there": {"_count": 1}, "Mr": {"_count": 1}, "Ludo": {"_count": 1}, "what": {"_count": 1}, "Ill": {"_count": 1}, "everything": {"_count": 1}, "turn": {"_count": 1}, "saw": {"_count": 1}, "called": {"_count": 1}, "and": {"_count": 1}}, "looking": {"_count": 1, "over": {"_count": 1}}, "his": {"_count": 4, "sharp": {"_count": 1}, "mouth": {"_count": 1}, "eyes": {"_count": 1}, "eyelids": {"_count": 1}}, "accepting": {"_count": 1, "a": {"_count": 1}}, "dryly": {"_count": 1, "": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "sharply": {"_count": 2, "cutting": {"_count": 1}, "": {"_count": 1}}, "nodded": {"_count": 1, "curtly": {"_count": 1}}, "for": {"_count": 2, "this": {"_count": 1}, "a": {"_count": 1}}, "made": {"_count": 1, "her": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "sounding": {"_count": 1, "highly": {"_count": 1}}, "did": {"_count": 5, "not": {"_count": 4}, "": {"_count": 1}}, "remained": {"_count": 1, "transfixed": {"_count": 1}}, "Mr": {"_count": 1, "Diggory": {"_count": 1}}, "still": {"_count": 2, "talking": {"_count": 1}, "in": {"_count": 1}}, "I": {"_count": 3, "think": {"_count": 1}, "I": {"_count": 1}, "told": {"_count": 1}}, "gave": {"_count": 1, "no": {"_count": 1}}, "cold": {"_count": 1, "anger": {"_count": 1}}, "shouted": {"_count": 1, "his": {"_count": 1}}, "curtly": {"_count": 1, "I": {"_count": 1}}, "added": {"_count": 1, "coldly": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 1}, "hand": {"_count": 1}}, "stared": {"_count": 1, "back": {"_count": 1}}, "took": {"_count": 3, "a": {"_count": 2}, "another": {"_count": 1}}, "will": {"_count": 2, "need": {"_count": 1}, "be": {"_count": 1}}, "deserves": {"_count": 1, "unswerving": {"_count": 1}}, "Percys": {"_count": 1, "boss": {"_count": 1}}, "Head": {"_count": 1, "of": {"_count": 1}}, "perhaps": {"_count": 1, "because": {"_count": 1}}, "have": {"_count": 1, "worked": {"_count": 1}}, "however": {"_count": 1, "looked": {"_count": 1}}, "Professor": {"_count": 1, "Karkaroff": {"_count": 1}}, "who": {"_count": 5, "was": {"_count": 2}, "should": {"_count": 1}, "did": {"_count": 1}, "seized": {"_count": 1}}, "turned": {"_count": 3, "to": {"_count": 1}, "up": {"_count": 1}, "into": {"_count": 1}}, "with": {"_count": 2, "mild": {"_count": 1}, "a": {"_count": 1}}, "came": {"_count": 1, "next": {"_count": 1}}, "anymore": {"_count": 1, "she": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "man": {"_count": 1, "": {"_count": 1}}, "says": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 5, "Ron": {"_count": 2}, "Harry": {"_count": 1}, "coldly": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "suddenly": {"_count": 1}}, "isnt": {"_count": 2, "well": {"_count": 1}, "right": {"_count": 1}}, "suffered": {"_count": 1, "a": {"_count": 1}}, "according": {"_count": 1, "to": {"_count": 1}}, "snuffs": {"_count": 1, "it": {"_count": 1}}, "can": {"_count": 1, "speak": {"_count": 1}}, "to": {"_count": 3, "be": {"_count": 1}, "show": {"_count": 1}, "raise": {"_count": 1}}, "Harrys": {"_count": 1, "leg": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "thinks": {"_count": 1, "theres": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "pretending": {"_count": 1, "to": {"_count": 1}}, "been": {"_count": 1, "pretending": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "breaking": {"_count": 1, "into": {"_count": 1}}, "the": {"_count": 1, "second": {"_count": 1}}, "sacked": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 2, "seat": {"_count": 1}, "thinner": {"_count": 1}}, "didnt": {"_count": 1, "turn": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "powerfully": {"_count": 1, "magical": {"_count": 1}}, "fought": {"_count": 1, "violence": {"_count": 1}}, "got": {"_count": 1, "the": {"_count": 1}}, "try": {"_count": 1, "and": {"_count": 1}}, "let": {"_count": 1, "his": {"_count": 1}}, "being": {"_count": 1, "an": {"_count": 1}}, "half": {"_count": 1, "carrying": {"_count": 1}}, "never": {"_count": 1, "came": {"_count": 1}}, "lost": {"_count": 1, "it": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "so": {"_count": 1, "keen": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "lately": {"_count": 2, "": {"_count": 2}}, "even": {"_count": 1, "more": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "appeared": {"_count": 2, "to": {"_count": 1}, "not": {"_count": 1}}, "in": {"_count": 1, "alarm": {"_count": 1}}, "we": {"_count": 1, "can": {"_count": 1}}, "breathed": {"_count": 1, "": {"_count": 1}}, "say": {"_count": 1, "Harry": {"_count": 1}}, "coming": {"_count": 1, "out": {"_count": 1}}, "Crouch": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 1, "votever": {"_count": 1}}, "attacked": {"_count": 3, "you": {"_count": 2}, "Viktor": {"_count": 1}}, "no": {"_count": 1, "wait": {"_count": 1}}, "evaporated": {"_count": 1, "did": {"_count": 1}}, "actually": {"_count": 1, "say": {"_count": 1}}, "from": {"_count": 1, "seeing": {"_count": 1}}, "Minister": {"_count": 1, "": {"_count": 1}}, "standing": {"_count": 1, "up": {"_count": 1}}, "coldly": {"_count": 2, "": {"_count": 2}}, "nodding": {"_count": 1, "to": {"_count": 1}}, "disdainfully": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 2, "more": {"_count": 1}, "furious": {"_count": 1}}, "spat": {"_count": 1, "at": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "stood": {"_count": 1, "up": {"_count": 1}}, "speaking": {"_count": 1, "more": {"_count": 1}}, "of": {"_count": 1, "using": {"_count": 1}}, "roared": {"_count": 1, "at": {"_count": 1}}, "too": {"_count": 1, "has": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "disappeared": {"_count": 1, "near": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "binding": {"_count": 1, "him": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "returned": {"_count": 1}}, "shook": {"_count": 1, "very": {"_count": 1}}, "There": {"_count": 1, "is": {"_count": 1}}, "confess": {"_count": 1, "": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "left": {"_count": 1, "him": {"_count": 1}}, "Junior": {"_count": 1, "said": {"_count": 1}}}, "innocence": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "ignorance": {"_count": 1}}, "the": {"_count": 1, "need": {"_count": 1}}, "Voldemort": {"_count": 1, "knows": {"_count": 1}}}, "Knives": {"_count": 1, "and": {"_count": 1, "forks": {"_count": 1}}}, "ricocheted": {"_count": 6, "off": {"_count": 6, "the": {"_count": 4}, "at": {"_count": 1}, "Harry": {"_count": 1}}}, "skating": {"_count": 3, "across": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "scooping": {"_count": 7, "up": {"_count": 5, "the": {"_count": 2}, "his": {"_count": 2}, "goblets": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "it": {"_count": 1, "all": {"_count": 1}}}, "pans": {"_count": 7, "out": {"_count": 1, "of": {"_count": 1}}, "everywhere": {"_count": 1, "": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "heaped": {"_count": 1, "around": {"_count": 1}}, "hanging": {"_count": 1, "from": {"_count": 1}}, "above": {"_count": 1, "it": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "creamy": {"_count": 1, "sauce": {"_count": 1, "poured": {"_count": 1}}}, "Improper": {"_count": 7, "Use": {"_count": 7, "of": {"_count": 7}}}, "cutlery": {"_count": 7, "drawer": {"_count": 1, "which": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 2, "plates": {"_count": 2}}, "cleaning": {"_count": 1, "of": {"_count": 1}}}, "chopping": {"_count": 4, "the": {"_count": 1, "potatoes": {"_count": 1}}, "meat": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "roots": {"_count": 1}}, "up": {"_count": 1, "steaks": {"_count": 1}}}, "saucepans": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "the": {"_count": 1}}}, "bandylegged": {"_count": 4, "ginger": {"_count": 2, "cat": {"_count": 2}}, "and": {"_count": 1, "winced": {"_count": 1}}, "man": {"_count": 1, "with": {"_count": 1}}}, "pattered": {"_count": 3, "very": {"_count": 1, "fast": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "Wellington": {"_count": 4, "boots": {"_count": 4, "that": {"_count": 2}, "and": {"_count": 1}, "bearing": {"_count": 1}}}, "bottoms": {"_count": 4, "coming": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "all": {"_count": 1, "through": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "peevishly": {"_count": 1, "and": {"_count": 1, "he": {"_count": 1}}}, "reattached": {"_count": 1, "the": {"_count": 1, "table": {"_count": 1}}}, "tablecloths": {"_count": 1, "from": {"_count": 1, "nowhere": {"_count": 1}}}, "paradise": {"_count": 2, "and": {"_count": 2, "at": {"_count": 1}, "tiny": {"_count": 1}}}, "salad": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Aunt": {"_count": 1, "Petunia": {"_count": 1}}}, "Ludo": {"_count": 70, "Bagman": {"_count": 49, "I": {"_count": 1}, "was": {"_count": 6}, "ran": {"_count": 1}, "you": {"_count": 2}, "looked": {"_count": 2}, "rattling": {"_count": 1}, "whipped": {"_count": 1}, "sprawled": {"_count": 1}, "charged": {"_count": 1}, "though": {"_count": 1}, "with": {"_count": 3}, "emerged": {"_count": 1}, "Apparated": {"_count": 1}, "and": {"_count": 3}, "Head": {"_count": 1}, "entered": {"_count": 1}, "who": {"_count": 3}, "": {"_count": 3}, "ten": {"_count": 1}, "bouncing": {"_count": 1}, "tonight": {"_count": 1}, "kiss": {"_count": 1}, "shook": {"_count": 1}, "reflected": {"_count": 1}, "Sit": {"_count": 1}, "that": {"_count": 2}, "stood": {"_count": 1}, "Hermione": {"_count": 1}, "conjured": {"_count": 1}, "walked": {"_count": 1}, "gone": {"_count": 1}, "a": {"_count": 1}, "joins": {"_count": 1}}, "said": {"_count": 6, "Mr": {"_count": 2}, "Crouch": {"_count": 2}, "Fudge": {"_count": 1}, "Rita": {"_count": 1}}, "about": {"_count": 1, "that": {"_count": 1}}, "Bagmans": {"_count": 5, "not": {"_count": 1}, "voice": {"_count": 2}, "magically": {"_count": 2}}, "": {"_count": 4, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 2}}, "brightly": {"_count": 1, "patting": {"_count": 1}}, "we": {"_count": 1, "need": {"_count": 1}}, "to": {"_count": 1, "rise": {"_count": 1}}, "whipped": {"_count": 1, "out": {"_count": 1}}, "says": {"_count": 1, "Berthas": {"_count": 1}}}, "Bagman": {"_count": 210, "I": {"_count": 1, "like": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "keeps": {"_count": 1}}, "was": {"_count": 18, "Head": {"_count": 1}, "easily": {"_count": 1}, "now": {"_count": 2}, "beaming": {"_count": 1}, "sitting": {"_count": 1}, "opening": {"_count": 1}, "shouting": {"_count": 2}, "yelling": {"_count": 2}, "talking": {"_count": 1}, "here": {"_count": 1}, "almost": {"_count": 1}, "trying": {"_count": 1}, "standing": {"_count": 1}, "going": {"_count": 1}, "betting": {"_count": 1}}, "called": {"_count": 3, "happily": {"_count": 1}, "out": {"_count": 1}, "earnestly": {"_count": 1}}, "ran": {"_count": 1, "his": {"_count": 1}}, "did": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 3, "know": {"_count": 1}, "have": {"_count": 1}, "were": {"_count": 1}}, "beamed": {"_count": 1, "and": {"_count": 1}}, "looked": {"_count": 7, "slightly": {"_count": 2}, "shocked": {"_count": 1}, "somehow": {"_count": 1}, "almost": {"_count": 1}, "nervous": {"_count": 1}, "quite": {"_count": 1}}, "rubbish": {"_count": 1, "like": {"_count": 1}}, "didnt": {"_count": 4, "seem": {"_count": 2}, "bother": {"_count": 1}, "pass": {"_count": 1}}, "roared": {"_count": 1, "with": {"_count": 1}}, "rattling": {"_count": 1, "his": {"_count": 1}}, "whipped": {"_count": 1, "out": {"_count": 1}}, "handed": {"_count": 1, "him": {"_count": 1}}, "turned": {"_count": 1, "most": {"_count": 1}}, "settled": {"_count": 1, "himself": {"_count": 1}}, "comfortably": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 2, "tea": {"_count": 1}, "round": {"_count": 1}}, "sprawled": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 25}, "?": {"_count": 3}}, "breezily": {"_count": 1, "": {"_count": 1}}, "waving": {"_count": 1, "the": {"_count": 1}}, "struggled": {"_count": 1, "to": {"_count": 1}}, "all": {"_count": 1, "their": {"_count": 1}}, "charged": {"_count": 1, "into": {"_count": 1}}, "only": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 8, "the": {"_count": 3}, "onto": {"_count": 1}, "Mr": {"_count": 1}, "Professor": {"_count": 1}, "Krum": {"_count": 1}, "Cornelius": {"_count": 1}}, "informed": {"_count": 1, "the": {"_count": 1}}, "though": {"_count": 2, "he": {"_count": 1}, "does": {"_count": 1}}, "shouted": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "pointed": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 4, "broad": {"_count": 1}, "Professor": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "swore": {"_count": 1, "loudly": {"_count": 1}}, "is": {"_count": 3, "he": {"_count": 1}, "in": {"_count": 1}, "a": {"_count": 1}}, "Apparated": {"_count": 1, "right": {"_count": 1}}, "had": {"_count": 4, "just": {"_count": 2}, "said": {"_count": 1}, "to": {"_count": 1}}, "he": {"_count": 1, "should": {"_count": 1}}, "wanted": {"_count": 2, "to": {"_count": 2}}, "Head": {"_count": 1, "of": {"_count": 1}}, "than": {"_count": 1, "for": {"_count": 1}}, "said": {"_count": 6, "Dumbledore": {"_count": 1}, "Karkaroff": {"_count": 1}, "cheerfully": {"_count": 1}, "Fred": {"_count": 1}, "Harry": {"_count": 2}}, "entered": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 2}}, "repeated": {"_count": 1, "bewildered": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "wiped": {"_count": 1, "his": {"_count": 1}}, "beaming": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 5, "was": {"_count": 4}, "walked": {"_count": 1}}, "however": {"_count": 1, "looked": {"_count": 1}}, "brightly": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "wants": {"_count": 2, "him": {"_count": 1}, "a": {"_count": 1}}, "suddenly": {"_count": 1, "spotted": {"_count": 1}}, "but": {"_count": 1, "still": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "happily": {"_count": 3, "looking": {"_count": 1}, "as": {"_count": 1}, "bouncing": {"_count": 1}}, "lowering": {"_count": 1, "his": {"_count": 1}}, "continued": {"_count": 2, "lowering": {"_count": 1}, "": {"_count": 1}}, "winking": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 2, "alarm": {"_count": 1}, "the": {"_count": 1}}, "yelled": {"_count": 1, "as": {"_count": 1}}, "shouting": {"_count": 1, "gleefully": {"_count": 1}}, "as": {"_count": 2, "the": {"_count": 1}, "well": {"_count": 1}}, "ten": {"_count": 1, "": {"_count": 1}}, "bouncing": {"_count": 1, "into": {"_count": 1}}, "are": {"_count": 1, "judges": {"_count": 1}}, "comes": {"_count": 1, "too": {"_count": 1}}, "bad": {"_count": 1, "": {"_count": 1}}, "tonight": {"_count": 1, "in": {"_count": 1}}, "kiss": {"_count": 1, "Professor": {"_count": 1}}, "shook": {"_count": 1, "off": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "reflected": {"_count": 1, "there": {"_count": 1}}, "glanced": {"_count": 1, "over": {"_count": 1}}, "hurried": {"_count": 2, "through": {"_count": 1}, "alongside": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "led": {"_count": 1, "Harry": {"_count": 1}}, "very": {"_count": 1, "closely": {"_count": 1}}, "looking": {"_count": 2, "suddenly": {"_count": 1}, "strained": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "impatiently": {"_count": 1, "but": {"_count": 1}}, "Sit": {"_count": 1, "down": {"_count": 1}}, "that": {"_count": 2, "would": {"_count": 2}}, "whispered": {"_count": 1, "as": {"_count": 1}}, "gave": {"_count": 2, "Harrys": {"_count": 1}, "Karkaroff": {"_count": 1}}, "stood": {"_count": 1, "beaming": {"_count": 1}}, "were": {"_count": 1, "pulling": {"_count": 1}}, "Hermione": {"_count": 1, "reminded": {"_count": 1}}, "except": {"_count": 1, "that": {"_count": 1}}, "conjured": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "grinned": {"_count": 1, "at": {"_count": 1}}, "Cedric": {"_count": 1, "and": {"_count": 1}}, "walked": {"_count": 2, "into": {"_count": 1}, "out": {"_count": 1}}, "gone": {"_count": 1, "to": {"_count": 1}}, "perhaps": {"_count": 1, "taking": {"_count": 1}}, "a": {"_count": 1, "Death": {"_count": 1}}, "smiling": {"_count": 1, "awkwardly": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "joins": {"_count": 1, "us": {"_count": 1}}, "their": {"_count": 1, "faces": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "asked": {"_count": 1, "as": {"_count": 1}}, "now": {"_count": 1, "pointed": {"_count": 1}}, "business": {"_count": 1, "he": {"_count": 1}}, "wouldnt": {"_count": 1, "have": {"_count": 1}}}, "Otto": {"_count": 1, "got": {"_count": 1, "into": {"_count": 1}}}, "lawnmower": {"_count": 1, "with": {"_count": 1, "unnatural": {"_count": 1}}}, "Bagmans": {"_count": 20, "likable": {"_count": 1, "enough": {"_count": 1}}, "not": {"_count": 1, "helping": {"_count": 1}}, "remarks": {"_count": 1, "short": {"_count": 1}}, "voice": {"_count": 4, "kindly": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "echoed": {"_count": 1}}, "magically": {"_count": 2, "magnified": {"_count": 2}}, "round": {"_count": 2, "shiny": {"_count": 1}, "rosy": {"_count": 1}}, "words": {"_count": 1, "and": {"_count": 1}}, "commentary": {"_count": 1, "made": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "smooth": {"_count": 1, "face": {"_count": 1}}, "help": {"_count": 1, "except": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 1, "bad": {"_count": 1}}, "whistle": {"_count": 2, "for": {"_count": 1}, "blew": {"_count": 1}}}, "likable": {"_count": 3, "enough": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "reasonably": {"_count": 1}}}, "compare": {"_count": 1, "him": {"_count": 1, "to": {"_count": 1}}}, "Went": {"_count": 6, "on": {"_count": 2, "holiday": {"_count": 1}, "fer": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "look": {"_count": 1}, "daring": {"_count": 1}}, "over": {"_count": 1, "a": {"_count": 1}}}, "Berthas": {"_count": 4, "gotten": {"_count": 1, "lost": {"_count": 1}}, "hopeless": {"_count": 1, "all": {"_count": 1}}, "memory": {"_count": 1, "is": {"_count": 1}}, "perfectly": {"_count": 1, "capable": {"_count": 1}}}, "misread": {"_count": 2, "the": {"_count": 2, "map": {"_count": 1}, "signs": {"_count": 1}}}, "Australia": {"_count": 3, "instead": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "elderflower": {"_count": 1, "wine": {"_count": 1, "weve": {"_count": 1}}}, "departments": {"_count": 5, "too": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "International": {"_count": 1}}, "quite": {"_count": 1, "satisfied": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "event": {"_count": 12, "to": {"_count": 1, "organize": {"_count": 1}}, "is": {"_count": 1, "ever": {"_count": 1}}, "that": {"_count": 5, "will": {"_count": 1}, "has": {"_count": 1}, "Harry": {"_count": 1}, "Draco": {"_count": 1}, "I": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "therefore": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "organize": {"_count": 6, "right": {"_count": 1, "after": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "illegal": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "your": {"_count": 1, "House": {"_count": 1}}, "defense": {"_count": 1, "of": {"_count": 1}}}, "exhibition": {"_count": 3, "of": {"_count": 2, "thickbottomed": {"_count": 1}, "Muggle": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "thickbottomed": {"_count": 1, "cauldrons": {"_count": 1, "": {"_count": 1}}}, "acquisition": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "lovingly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "apart": {"_count": 1, "lowering": {"_count": 1}}}, "trim": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Peru": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "semifinals": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Viktor": {"_count": 58, "Krum": {"_count": 38, "though": {"_count": 1}, "the": {"_count": 3}, "gets": {"_count": 1}, "was": {"_count": 5}, "pulled": {"_count": 1}, "": {"_count": 6}, "over": {"_count": 1}, "and": {"_count": 3}, "rise": {"_count": 1}, "Cedric": {"_count": 1}, "straightened": {"_count": 1}, "got": {"_count": 1}, "slouched": {"_count": 1}, "looked": {"_count": 1}, "have": {"_count": 1}, "emerge": {"_count": 1}, "since": {"_count": 1}, "used": {"_count": 1}, "would": {"_count": 1}, "Bulgarian": {"_count": 1}, "of": {"_count": 1}, "its": {"_count": 1}, "not": {"_count": 1}, "had": {"_count": 2}}, "come": {"_count": 1, "along": {"_count": 1}}, "has": {"_count": 1, "a": {"_count": 1}}, "Kruml": {"_count": 1, "For": {"_count": 1}}, "how": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 8, "!": {"_count": 4}, "?": {"_count": 2}, ".": {"_count": 2}}, "so": {"_count": 1, "we": {"_count": 1}}, "asked": {"_count": 1, "me": {"_count": 1}}, "or": {"_count": 1, "somebody": {"_count": 1}}, "wasnt": {"_count": 1, "looking": {"_count": 1}}, "pulled": {"_count": 1, "a": {"_count": 1}}, "always": {"_count": 1, "said": {"_count": 1}}, "storming": {"_count": 1, "away": {"_count": 1}}, "said": {"_count": 1, "it": {"_count": 1}}}, "Krum": {"_count": 227, "though": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "recalling": {"_count": 1}}, "": {"_count": 38, "!": {"_count": 3}, ".": {"_count": 28}, "?": {"_count": 7}}, "the": {"_count": 6, "Bulgarian": {"_count": 2}, "model": {"_count": 1}, "three": {"_count": 1}, "famous": {"_count": 1}, "previous": {"_count": 1}}, "gets": {"_count": 1, "the": {"_count": 1}}, "ll": {"_count": 1, "get": {"_count": 1}}, "walked": {"_count": 1, "backward": {"_count": 1}}, "Thats": {"_count": 1, "him": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 20, "thin": {"_count": 1}, "feinting": {"_count": 1}, "after": {"_count": 1}, "injured": {"_count": 1}, "the": {"_count": 1}, "on": {"_count": 1}, "walking": {"_count": 1}, "standing": {"_count": 1}, "in": {"_count": 1}, "still": {"_count": 1}, "at": {"_count": 1}, "looking": {"_count": 2}, "drawing": {"_count": 1}, "elaborated": {"_count": 1}, "hanging": {"_count": 1}, "sprawled": {"_count": 1}, "over": {"_count": 1}, "not": {"_count": 1}, "pointing": {"_count": 1}}, "and": {"_count": 14, "Lynch": {"_count": 2}, "his": {"_count": 2}, "they": {"_count": 1}, "Hermione": {"_count": 2}, "hardly": {"_count": 1}, "Fleur": {"_count": 1}, "I": {"_count": 2}, "gently": {"_count": 1}, "the": {"_count": 1}, "cant": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "hadnt": {"_count": 3, "seen": {"_count": 1}, "reacted": {"_count": 1}, "wasted": {"_count": 1}}, "hardly": {"_count": 1, "looked": {"_count": 1}}, "who": {"_count": 7, "did": {"_count": 1}, "was": {"_count": 2}, "nodded": {"_count": 1}, "were": {"_count": 1}, "is": {"_count": 1}, "had": {"_count": 1}}, "his": {"_count": 1, "red": {"_count": 1}}, "land": {"_count": 1, "as": {"_count": 1}}, "surrounded": {"_count": 1, "by": {"_count": 1}}, "might": {"_count": 1, "well": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "slouching": {"_count": 1, "over": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "tfyfflapier": {"_count": 1, "l6": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "saw": {"_count": 1}}, "can": {"_count": 1, "see": {"_count": 1}}, "shake": {"_count": 1, "his": {"_count": 1}}, "excitedly": {"_count": 1, "but": {"_count": 1}}, "did": {"_count": 5, "not": {"_count": 3}, "": {"_count": 1}, "they": {"_count": 1}}, "rise": {"_count": 1, "from": {"_count": 1}}, "Cedric": {"_count": 2, "Diggory": {"_count": 1}, "and": {"_count": 1}}, "hunchedup": {"_count": 1, "and": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 1}, "he": {"_count": 1}}, "got": {"_count": 2, "up": {"_count": 1}, "her": {"_count": 1}}, "back": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 3, "Mr": {"_count": 1}, "say": {"_count": 1}, "kidnap": {"_count": 1}}, "whom": {"_count": 1, "Harry": {"_count": 1}}, "being": {"_count": 1, "there": {"_count": 1}}, "just": {"_count": 2, "sat": {"_count": 1}, "as": {"_count": 1}}, "slouched": {"_count": 3, "in": {"_count": 1}, "out": {"_count": 1}, "off": {"_count": 1}}, "will": {"_count": 2, "know": {"_count": 1}, "enter": {"_count": 1}}, "looked": {"_count": 5, "even": {"_count": 1}, "slightly": {"_count": 1}, "up": {"_count": 1}, "mollified": {"_count": 1}, "puzzled": {"_count": 1}}, "were": {"_count": 2, "left": {"_count": 1}, "beside": {"_count": 1}}, "had": {"_count": 9, "finished": {"_count": 1}, "just": {"_count": 1}, "dropped": {"_count": 2}, "entered": {"_count": 1}, "come": {"_count": 1}, "already": {"_count": 1}, "not": {"_count": 1}, "told": {"_count": 1}}, "you": {"_count": 1, "wont": {"_count": 1}}, "ten": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "came": {"_count": 1}}, "debating": {"_count": 1, "in": {"_count": 1}}, "kept": {"_count": 1, "coming": {"_count": 1}}, "speak": {"_count": 1, "before": {"_count": 1}}, "But": {"_count": 1, "Ron": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "emerge": {"_count": 1, "onto": {"_count": 1}}, "since": {"_count": 1, "the": {"_count": 1}}, "wasnt": {"_count": 1, "careful": {"_count": 1}}, "hard": {"_count": 1, "on": {"_count": 1}}, "seized": {"_count": 1, "it": {"_count": 1}}, "used": {"_count": 1, "an": {"_count": 1}}, "didnt": {"_count": 1, "look": {"_count": 1}}, "would": {"_count": 2, "most": {"_count": 1}, "get": {"_count": 1}}, "Bulgarian": {"_count": 1, "Seeker": {"_count": 1}}, "tapped": {"_count": 1, "Harry": {"_count": 1}}, "left": {"_count": 1, "the": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "stopped": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 3, "amazement": {"_count": 1}, "the": {"_count": 2}}, "glowered": {"_count": 2, "at": {"_count": 1}, "over": {"_count": 1}}, "looking": {"_count": 2, "suspiciously": {"_count": 1}, "surprised": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "staring": {"_count": 1, "at": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "doubtfully": {"_count": 1, "staring": {"_count": 1}}, "moved": {"_count": 1, "forward": {"_count": 1}}, "called": {"_count": 1, "after": {"_count": 1}}, "again": {"_count": 1, "pointed": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "muttered": {"_count": 1, "putting": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "sitting": {"_count": 1, "up": {"_count": 1}}, "attacked": {"_count": 1, "Crouch": {"_count": 1}}, "of": {"_count": 1, "Durmstrang": {"_count": 1}}, "standing": {"_count": 1, "over": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}, "marking": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "the": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "surely": {"_count": 1, "couldnt": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "abruptly": {"_count": 1, "to": {"_count": 1}}, "shrugged": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "only": {"_count": 1}}, "not": {"_count": 1, "when": {"_count": 1}}, "then": {"_count": 1, "McLaggen": {"_count": 1}}, "eyebrows": {"_count": 1, "raised": {"_count": 1}}, "shook": {"_count": 1, "hands": {"_count": 1}}, "from": {"_count": 1, "Rons": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "momentarily": {"_count": 1, "distracted": {"_count": 1}}, "asked": {"_count": 1, "": {"_count": 1}}, "cracked": {"_count": 1, "his": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}, "started": {"_count": 1, "but": {"_count": 1}}, "suspiciously": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "grunted": {"_count": 1, "": {"_count": 1}}, "reckons": {"_count": 1, "hes": {"_count": 1}}, "maybe": {"_count": 1, "he": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "reckoned": {"_count": 1, "that": {"_count": 1}}}, "Krums": {"_count": 24, "one": {"_count": 1, "decent": {"_count": 1}}, "blinking": {"_count": 1, "and": {"_count": 1}}, "face": {"_count": 2, "contorted": {"_count": 1}, "saw": {"_count": 1}}, "nose": {"_count": 1, "looked": {"_count": 1}}, "got": {"_count": 1, "it": {"_count": 1}}, "name": {"_count": 1, "was": {"_count": 1}}, "more": {"_count": 1, "spectacular": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "thick": {"_count": 1, "eyebrows": {"_count": 1}}, "autograph": {"_count": 1, "begging": {"_count": 1}}, "sharp": {"_count": 1, "profile": {"_count": 1}}, "fan": {"_count": 1, "club": {"_count": 1}}, "dark": {"_count": 1, "head": {"_count": 1}}, "new": {"_count": 1, "teeth": {"_count": 1}}, "secretive": {"_count": 1, "manner": {"_count": 1}}, "arm": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "invitation": {"_count": 1, "as": {"_count": 1}}, "jaw": {"_count": 1, "muscles": {"_count": 1}}, "wand": {"_count": 2, "Ollivander": {"_count": 1}, "and": {"_count": 1}}, "chin": {"_count": 1, "that": {"_count": 1}}}, "isolation": {"_count": 3, "from": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "lack": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "Transylvania": {"_count": 2, "three": {"_count": 1, "hundred": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}}, "ninety": {"_count": 5, "to": {"_count": 1, "ten": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "seven": {"_count": 1, "turned": {"_count": 1}}, "two": {"_count": 1, "": {"_count": 1}}}, "Uganda": {"_count": 1, "and": {"_count": 1, "Scotland": {"_count": 1}}}, "Scotland": {"_count": 1, "was": {"_count": 1, "slaughtered": {"_count": 1}}}, "Luxembourg": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "moths": {"_count": 3, "were": {"_count": 1, "fluttering": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}}, "honeysuckle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rosebushes": {"_count": 4, "laughing": {"_count": 1, "madly": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "apart": {"_count": 1, "his": {"_count": 1}}}, "sanctimoniously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "intray": {"_count": 3, "would": {"_count": 1, "be": {"_count": 1}}, "was": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Norway": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "personall": {"_count": 1, "It": {"_count": 1, "was": {"_count": 1}}}, "PORTKEY": {"_count": 1, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "lain": {"_count": 10, "down": {"_count": 3, "to": {"_count": 1}, "and": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "trapped": {"_count": 1, "moments": {"_count": 1}}, "over": {"_count": 2, "Privet": {"_count": 1}, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "dormant": {"_count": 1, "there": {"_count": 1}}}, "indistinctly": {"_count": 1, "as": {"_count": 1, "his": {"_count": 1}}}, "golfing": {"_count": 1, "sweater": {"_count": 1, "and": {"_count": 1}}}, "incognito": {"_count": 1, "do": {"_count": 1, "I": {"_count": 1}}}, "PerPerPercy": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "yawn": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "still": {"_count": 1, "scowling": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "stretching": {"_count": 1, "his": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}}, "Apparating": {"_count": 15, "arent": {"_count": 1, "they": {"_count": 1}}, "meant": {"_count": 1, "disappearing": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "downstairs": {"_count": 1, "every": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "Disapparating": {"_count": 1}}, "are": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "outside": {"_count": 1}}, "alongside": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "Disapparating": {"_count": 1}}, "directly": {"_count": 1, "into": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "ladle": {"_count": 1, "porridge": {"_count": 1, "into": {"_count": 1}}}, "bowls": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 1, "their": {"_count": 1}}, "whistling": {"_count": 1, "between": {"_count": 1}}, "bounced": {"_count": 1, "and": {"_count": 1}}}, "liein": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}}, "Transportation": {"_count": 2, "had": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Apparition": {"_count": 39, "and": {"_count": 2, "when": {"_count": 1}, "theyll": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 6}, "!": {"_count": 1}, "?": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}, "test": {"_count": 1, "": {"_count": 1}}, "Test": {"_count": 4, "he": {"_count": 1}, "": {"_count": 2}, "in": {"_count": 1}}, "but": {"_count": 2, "still": {"_count": 1}, "this": {"_count": 1}}, "Lessons": {"_count": 1, "from": {"_count": 1}}, "instructor": {"_count": 3, "": {"_count": 1}, "from": {"_count": 1}, "for": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "felt": {"_count": 1, "like": {"_count": 1}}, "lesson": {"_count": 1, "which": {"_count": 1}}, "Tests": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 1, "proving": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "lessons": {"_count": 1, "and": {"_count": 1}}, "twice": {"_count": 1, "was": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "Mistakes": {"_count": 1, "and": {"_count": 1}}, "examiner": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "thrown": {"_count": 1}}, "in": {"_count": 1, "and": {"_count": 1}}, "being": {"_count": 1, "free": {"_count": 1}}, "to": {"_count": 1, "more": {"_count": 1}}, "impossible": {"_count": 1, "within": {"_count": 1}}}, "complications": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "splinched": {"_count": 2, "themselves": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "winced": {"_count": 16, "": {"_count": 4, ".": {"_count": 4}}, "at": {"_count": 5, "the": {"_count": 4}, "his": {"_count": 1}}, "and": {"_count": 1, "squawked": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "horribly": {"_count": 1, "when": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}, "slightly": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}}, "spooning": {"_count": 2, "large": {"_count": 1, "amounts": {"_count": 1}}, "some": {"_count": 1, "bright": {"_count": 1}}}, "paperwork": {"_count": 2, "I": {"_count": 1, "can": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "Prefer": {"_count": 1, "brooms": {"_count": 1, "slower": {"_count": 1}}}, "Apparated": {"_count": 14, "five": {"_count": 1, "miles": {"_count": 1}}, "Dad": {"_count": 1, "said": {"_count": 1}}, "at": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "right": {"_count": 2, "next": {"_count": 1}, "beside": {"_count": 1}}, "on": {"_count": 1, "my": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "Ron": {"_count": 1, "told": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "feet": {"_count": 1, "from": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "their": {"_count": 1}}}, "sniggers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Walk": {"_count": 9, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "amble": {"_count": 1, "slowly": {"_count": 1}}, "surely": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "just": {"_count": 1, "walk": {"_count": 1}}}, "congregate": {"_count": 1, "without": {"_count": 1, "attracting": {"_count": 1}}}, "deceived": {"_count": 1, "nobody": {"_count": 1, "": {"_count": 1}}}, "Acciol": {"_count": 7, "Several": {"_count": 1, "small": {"_count": 1}}, "Acciol": {"_count": 2, "Acciol": {"_count": 1}, "she": {"_count": 1}}, "she": {"_count": 1, "shouted": {"_count": 1}}, "Harry": {"_count": 1, "yelled": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "More": {"_count": 1, "than": {"_count": 1}}}, "unmistakably": {"_count": 10, "more": {"_count": 1, "TonTongue": {"_count": 1}}, "a": {"_count": 5, "houseelf": {"_count": 1}, "tap": {"_count": 1}, "derisive": {"_count": 1}, "younger": {"_count": 1}, "stuffed": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "onto": {"_count": 1, "himself": {"_count": 1}}, "his": {"_count": 1, "cousin": {"_count": 1}}, "of": {"_count": 1, "blood": {"_count": 1}}}, "Toffees": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Empty": {"_count": 4, "your": {"_count": 1, "pockets": {"_count": 1}}, "threat": {"_count": 1, "Karkaroff": {"_count": 1}}, "benches": {"_count": 1, "rose": {"_count": 1}}, "aisle": {"_count": 1, "after": {"_count": 1}}}, "Summoning": {"_count": 21, "Charm": {"_count": 15, "that": {"_count": 2}, "": {"_count": 8}, "properly": {"_count": 1}, "Harry": {"_count": 1}, "today": {"_count": 1}, "again": {"_count": 1}, "had": {"_count": 1}}, "Charms": {"_count": 6, "": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "he": {"_count": 1}, "perhaps": {"_count": 1}, "which": {"_count": 1}}}, "turnups": {"_count": 1, "of": {"_count": 1, "Freds": {"_count": 1}}}, "developing": {"_count": 6, "those": {"_count": 1, "": {"_count": 1}}, "something": {"_count": 1, "else": {"_count": 1}}, "them": {"_count": 1, "this": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "expect": {"_count": 1}}, "some": {"_count": 1, "method": {"_count": 1}}}, "rucksacks": {"_count": 2, "onto": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "owl": {"_count": 1}}}, "midday": {"_count": 6, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "giving": {"_count": 1, "all": {"_count": 1}}, "when": {"_count": 1, "Mrs": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}}, "organizational": {"_count": 1, "problem": {"_count": 1, "sighed": {"_count": 1}}}, "site": {"_count": 3, "big": {"_count": 1, "enough": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "found": {"_count": 1}}}, "accommodate": {"_count": 3, "them": {"_count": 1, "all": {"_count": 1}}, "three": {"_count": 1, "separate": {"_count": 1}}, "so": {"_count": 1, "many": {"_count": 1}}}, "moor": {"_count": 5, "and": {"_count": 1, "set": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "unable": {"_count": 1, "to": {"_count": 1}}, "Fair": {"_count": 1, "Ravenclaw": {"_count": 1}}}, "antiMuggle": {"_count": 4, "precautions": {"_count": 1, "as": {"_count": 1}}, "security": {"_count": 2, "": {"_count": 2}}, "tendency": {"_count": 1, "": {"_count": 1}}}, "stagger": {"_count": 1, "the": {"_count": 1, "arrivals": {"_count": 1}}}, "cheaper": {"_count": 1, "tickets": {"_count": 1, "have": {"_count": 1}}}, "beforehand": {"_count": 5, "": {"_count": 5, ".": {"_count": 5}}}, "limited": {"_count": 8, "number": {"_count": 1, "use": {"_count": 1}}, "there": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "time": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}, "line": {"_count": 1, "of": {"_count": 1}}}, "clogging": {"_count": 3, "up": {"_count": 1, "their": {"_count": 1}}, "dust": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "throat": {"_count": 1}}}, "Portkeys": {"_count": 8, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "placed": {"_count": 1, "at": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "across": {"_count": 1, "five": {"_count": 1}}, "lay": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "clamoring": {"_count": 1}}, "Harry": {"_count": 1, "which": {"_count": 1}}}, "strategic": {"_count": 2, "points": {"_count": 1, "around": {"_count": 1}}, "intervals": {"_count": 1, "Harry": {"_count": 1}}}, "Stoatshead": {"_count": 4, "Hill": {"_count": 4, "so": {"_count": 1}, "stumbling": {"_count": 1}, "said": {"_count": 1}, "before": {"_count": 1}}}, "Hill": {"_count": 4, "so": {"_count": 1, "thats": {"_count": 1}}, "stumbling": {"_count": 1, "occasionally": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}}, "Unobtrusive": {"_count": 1, "things": {"_count": 1, "obviously": {"_count": 1}}}, "litter": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "old": {"_count": 1}}, "into": {"_count": 1, "Rons": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "proper": {"_count": 1}}, "the": {"_count": 1, "lawn": {"_count": 1}}}, "diluting": {"_count": 1, "to": {"_count": 1, "deepest": {"_count": 1}}}, "tuffets": {"_count": 1, "of": {"_count": 1, "grass": {"_count": 1}}}, "Whew": {"_count": 1, "panted": {"_count": 1, "Mr": {"_count": 1}}}, "Portkey": {"_count": 34, "said": {"_count": 2, "Mr": {"_count": 1}, "Harry": {"_count": 1}}, "thats": {"_count": 1, "all": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 9, "?": {"_count": 2}, ".": {"_count": 6}, "!": {"_count": 1}}, "which": {"_count": 2, "would": {"_count": 2}}, "it": {"_count": 2, "will": {"_count": 1}, "came": {"_count": 1}}, "had": {"_count": 1, "worked": {"_count": 1}}, "transported": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "Office": {"_count": 1, "and": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "or": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "s": {"_count": 1, "through": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 2, "she": {"_count": 1}, "that": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "hilltop": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "several": {"_count": 1}}, "forlorn": {"_count": 1, "and": {"_count": 1}}, "faded": {"_count": 1, "and": {"_count": 1}}}, "Amos": {"_count": 28, "": {"_count": 6, "!": {"_count": 2}, "?": {"_count": 3}, ".": {"_count": 1}}, "Diggory": {"_count": 10, "everyone": {"_count": 1}, "peered": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 2}, "Cedrics": {"_count": 1}, "looked": {"_count": 1}, "muttered": {"_count": 1}, "he": {"_count": 1}, "loudly": {"_count": 1}}, "genially": {"_count": 1, "slapping": {"_count": 1}}, "be": {"_count": 1, "careful": {"_count": 1}}, "said": {"_count": 5, "Mr": {"_count": 4}, "Mrs": {"_count": 1}}, "think": {"_count": 1, "who": {"_count": 1}}, "is": {"_count": 1, "suggesting": {"_count": 1}}, "that": {"_count": 1, "wands": {"_count": 1}}, "Diggorys": {"_count": 2, "head": {"_count": 1}, "running": {"_count": 1}}}, "ruddyfaced": {"_count": 1, "wizard": {"_count": 1, "with": {"_count": 1}}}, "scrubby": {"_count": 5, "brown": {"_count": 3, "beard": {"_count": 3}}, "patch": {"_count": 1, "of": {"_count": 1}}, "hair": {"_count": 1, "and": {"_count": 1}}}, "seventeen": {"_count": 41, "": {"_count": 12, ".": {"_count": 8}, "?": {"_count": 3}, "!": {"_count": 1}}, "years": {"_count": 2, "or": {"_count": 1}, "of": {"_count": 1}}, "in": {"_count": 4, "April": {"_count": 1}, "other": {"_count": 1}, "two": {"_count": 1}, "time": {"_count": 1}}, "from": {"_count": 1, "entering": {"_count": 1}}, "wherever": {"_count": 1, "they": {"_count": 1}}, "will": {"_count": 2, "be": {"_count": 1}, "stand": {"_count": 1}}, "or": {"_count": 2, "not": {"_count": 1}, "over": {"_count": 1}}, "should": {"_count": 1, "submit": {"_count": 1}}, "did": {"_count": 1, "find": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "hands": {"_count": 1, "nearly": {"_count": 1}}, "I": {"_count": 1, "got": {"_count": 1}}, "goals": {"_count": 1, "to": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "on": {"_count": 2, "or": {"_count": 2}}, "for": {"_count": 1, "another": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "protective": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "youll": {"_count": 1, "lose": {"_count": 1}}, "thats": {"_count": 1, "Wizarding": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "boy": {"_count": 1, "": {"_count": 1}}}, "hi": {"_count": 9, "back": {"_count": 1, "except": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 3}}, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "how": {"_count": 1, "are": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "Luna": {"_count": 1, "": {"_count": 1}}}, "Cedrics": {"_count": 47, "father": {"_count": 2, "asked": {"_count": 1}, "": {"_count": 1}}, "wand": {"_count": 2, "pronounced": {"_count": 1}, "fly": {"_count": 1}}, "bag": {"_count": 1, "split": {"_count": 1}}, "friends": {"_count": 1, "had": {"_count": 1}}, "gray": {"_count": 1, "eyes": {"_count": 1}}, "steps": {"_count": 1, "around": {"_count": 1}}, "shadow": {"_count": 1, "through": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "face": {"_count": 2, "was": {"_count": 1}, "at": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "hint": {"_count": 1, "was": {"_count": 1}}, "plan": {"_count": 1, "and": {"_count": 1}}, "faces": {"_count": 1, "youll": {"_count": 1}}, "caught": {"_count": 1, "you": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "yells": {"_count": 1, "": {"_count": 1}}, "arm": {"_count": 2, "": {"_count": 1}, "Stand": {"_count": 1}}, "footsteps": {"_count": 1, "soon": {"_count": 1}}, "shadowy": {"_count": 1, "stubborn": {"_count": 1}}, "body": {"_count": 7, "was": {"_count": 1}, "lay": {"_count": 1}, "no": {"_count": 1}, "": {"_count": 1}, "lying": {"_count": 1}, "to": {"_count": 2}}, "feet": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "surveyed": {"_count": 1}, "drank": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "wrist": {"_count": 1, "one": {"_count": 1}}, "limp": {"_count": 1, "body": {"_count": 1}}, "house": {"_count": 1, "and": {"_count": 1}}, "appearance": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "made": {"_count": 1}}, "he": {"_count": 1, "got": {"_count": 1}}, "death": {"_count": 2, "Dumbledore": {"_count": 1}, "": {"_count": 1}}, "girlfriend": {"_count": 1, "she": {"_count": 1}}, "dead": {"_count": 1, "body": {"_count": 1}}, "memory": {"_count": 1, "to": {"_count": 1}}}, "Ced": {"_count": 4, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "thatll": {"_count": 1, "be": {"_count": 1}}, "always": {"_count": 1, "the": {"_count": 1}}}, "sackful": {"_count": 1, "of": {"_count": 1, "Galleons": {"_count": 1}}}, "redheads": {"_count": 1, "said": {"_count": 1, "Mr": {"_count": 1}}}, "Merlins": {"_count": 17, "beard": {"_count": 12, "said": {"_count": 3}, "Moody": {"_count": 1}, "Mr": {"_count": 1}, "keep": {"_count": 1}, "no": {"_count": 2}, "here": {"_count": 1}, "Harry": {"_count": 1}, "Tom": {"_count": 1}, "what": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "saggy": {"_count": 1, "left": {"_count": 1}}, "pants": {"_count": 2, "have": {"_count": 1}, "": {"_count": 1}}, "most": {"_count": 1, "baggy": {"_count": 1}}}, "Ceds": {"_count": 1, "talked": {"_count": 1, "about": {"_count": 1}}}, "grandchildren": {"_count": 1, "that": {"_count": 1, "will": {"_count": 1}}}, "Potterl": {"_count": 1, "Harry": {"_count": 1, "couldnt": {"_count": 1}}}, "Harryd": {"_count": 1, "say": {"_count": 1, "the": {"_count": 1}}}, "stays": {"_count": 7, "on": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "woman": {"_count": 1}}, "here": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "here": {"_count": 1}}, "invisible": {"_count": 1, "said": {"_count": 1}}}, "Lovegoods": {"_count": 10, "have": {"_count": 1, "been": {"_count": 1}}, "popping": {"_count": 1, "eyes": {"_count": 1}}, "magazine": {"_count": 1, "": {"_count": 1}}, "famous": {"_count": 1, "liontopped": {"_count": 1}}, "are": {"_count": 1, "quite": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "on": {"_count": 1, "your": {"_count": 1}}, "live": {"_count": 1, "anyway": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}}, "Fawcetts": {"_count": 1, "couldnt": {"_count": 1, "get": {"_count": 1}}}, "bulky": {"_count": 4, "backpacks": {"_count": 1, "the": {"_count": 1}}, "something": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "sleep": {"_count": 1}}, "under": {"_count": 1, "her": {"_count": 1}}}, "backpacks": {"_count": 1, "the": {"_count": 1, "nine": {"_count": 1}}}, "manky": {"_count": 1, "old": {"_count": 1, "boot": {"_count": 1}}}, "navel": {"_count": 9, "had": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "that": {"_count": 1, "meant": {"_count": 1}}, "the": {"_count": 1, "ground": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "irresistibly": {"_count": 3, "forward": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "Mrs": {"_count": 1}, "Voldemort": {"_count": 1}}}, "windswept": {"_count": 8, "everybody": {"_count": 1, "else": {"_count": 1}}, "seconds": {"_count": 1, "Harrys": {"_count": 1}}, "road": {"_count": 1, "between": {"_count": 1}}, "had": {"_count": 1, "joined": {"_count": 1}}, "and": {"_count": 1, "glancing": {"_count": 1}}, "but": {"_count": 1, "unhurt": {"_count": 1}}, "heathercovered": {"_count": 1, "hillside": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "BAGMAN": {"_count": 1, "AND": {"_count": 1, "CROUCH": {"_count": 1}}}, "CROUCH": {"_count": 2, "Harry": {"_count": 2, "disentangled": {"_count": 1}, "Ron": {"_count": 1}}}, "disentangled": {"_count": 3, "himself": {"_count": 2, "from": {"_count": 1}, "and": {"_count": 1}}, "the": {"_count": 1, "string": {"_count": 1}}}, "grumpylooking": {"_count": 2, "wizards": {"_count": 1, "one": {"_count": 1}}, "old": {"_count": 1, "man": {"_count": 1}}}, "inexpertly": {"_count": 1, "The": {"_count": 1, "man": {"_count": 1}}}, "thighlength": {"_count": 1, "galoshes": {"_count": 1, "his": {"_count": 1}}}, "colleague": {"_count": 6, "a": {"_count": 1, "kilt": {"_count": 1}}, "of": {"_count": 3, "mine": {"_count": 3}}, "so": {"_count": 1, "late": {"_count": 1}}, "Perkins": {"_count": 1, "while": {"_count": 1}}}, "kilt": {"_count": 2, "and": {"_count": 2, "a": {"_count": 2}}}, "poncho": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Basil": {"_count": 5, "said": {"_count": 2, "Mr": {"_count": 2}}, "wearily": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "keeper": {"_count": 1}}, "they": {"_count": 1, "joined": {"_count": 1}}}, "kilted": {"_count": 1, "wizard": {"_count": 1, "who": {"_count": 1}}}, "campsite": {"_count": 25, "": {"_count": 12, ".": {"_count": 12}}, "for": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "Ludos": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 3, "the": {"_count": 1}, "quickly": {"_count": 2}}, "they": {"_count": 1, "could": {"_count": 1}}, "had": {"_count": 1, "changed": {"_count": 1}}, "manager": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}}, "Site": {"_count": 1, "managers": {"_count": 1, "called": {"_count": 1}}}, "Roberts": {"_count": 22, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "consulting": {"_count": 1, "a": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "Mr": {"_count": 1}}, "scrutinizing": {"_count": 1, "Mr": {"_count": 1}}, "rummaged": {"_count": 1, "around": {"_count": 1}}, "didnt": {"_count": 1, "give": {"_count": 1}}, "said": {"_count": 1, "placidly": {"_count": 1}}, "he": {"_count": 1, "muttered": {"_count": 1}}, "was": {"_count": 1, "getting": {"_count": 1}}, "the": {"_count": 1, "campsite": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "family": {"_count": 3, "was": {"_count": 2}, "fall": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}}, "Payne": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Beyond": {"_count": 7, "it": {"_count": 1, "Harry": {"_count": 1}}, "cool": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 1, "far": {"_count": 1}}, "the": {"_count": 1, "chair": {"_count": 1}}, "them": {"_count": 1, "Harry": {"_count": 1}}, "that": {"_count": 1, "Dumbledore": {"_count": 1}}, "Hagrid": {"_count": 1, "out": {"_count": 1}}}, "tents": {"_count": 23, "rising": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 6}, "?": {"_count": 1}, "!": {"_count": 1}}, "booked": {"_count": 1, "a": {"_count": 1}}, "up": {"_count": 1, "by": {"_count": 1}}, "would": {"_count": 1, "guess": {"_count": 1}}, "that": {"_count": 3, "stretched": {"_count": 1}, "read": {"_count": 1}, "were": {"_count": 1}}, "and": {"_count": 2, "starting": {"_count": 1}, "they": {"_count": 1}}, "they": {"_count": 1, "passed": {"_count": 1}}, "upheld": {"_count": 1, "where": {"_count": 1}}, "here": {"_count": 1, "had": {"_count": 1}}, "nobody": {"_count": 1, "felt": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "canvas": {"_count": 1, "roof": {"_count": 1}}}, "acres": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Aye": {"_count": 3, "I": {"_count": 1, "would": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "whore": {"_count": 2, "you": {"_count": 2, "": {"_count": 1}, "coming": {"_count": 1}}}, "tacked": {"_count": 4, "to": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "lopsidedly": {"_count": 1, "on": {"_count": 1}}}, "peel": {"_count": 3, "the": {"_count": 1, "notes": {"_count": 1}}, "sprouts": {"_count": 1, "without": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}}, "Foreign": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "scrutinizing": {"_count": 5, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "the": {"_count": 1, "wreckage": {"_count": 1}}, "Harry": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "swollen": {"_count": 1}}}, "hubcaps": {"_count": 1, "ten": {"_count": 1, "minutes": {"_count": 1}}}, "bookings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "foreigners": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 1, "happier": {"_count": 1}}}, "Weirdos": {"_count": 1, "you": {"_count": 1, "know": {"_count": 1}}}, "rally": {"_count": 3, "said": {"_count": 1, "Mr": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}}, "plusfours": {"_count": 2, "appeared": {"_count": 1, "out": {"_count": 1}}, "accompanied": {"_count": 1, "them": {"_count": 1}}}, "Robertss": {"_count": 2, "front": {"_count": 1, "door": {"_count": 1}}, "eyes": {"_count": 1, "slid": {"_count": 1}}}, "Obliviate": {"_count": 3, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cried": {"_count": 1, "Hermione": {"_count": 1}}}, "Instantly": {"_count": 4, "Mr": {"_count": 1, "Robertss": {"_count": 1}}, "about": {"_count": 1, "six": {"_count": 1}}, "a": {"_count": 1, "figure": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "brows": {"_count": 3, "unknitted": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "contracted": {"_count": 1, "": {"_count": 1}}}, "unknitted": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "unconcern": {"_count": 1, "fell": {"_count": 1, "over": {"_count": 1}}}, "stubble": {"_count": 2, "and": {"_count": 1, "there": {"_count": 1}}, "retracting": {"_count": 1, "into": {"_count": 1}}}, "Needs": {"_count": 2, "a": {"_count": 1, "Memory": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}}, "Quaffles": {"_count": 2, "at": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "fly": {"_count": 1}}}, "Ludos": {"_count": 1, "always": {"_count": 1, "been": {"_count": 1}}}, "lax": {"_count": 2, "about": {"_count": 1, "security": {"_count": 1}}, "security": {"_count": 1, "": {"_count": 1}}}, "enthusiastic": {"_count": 9, "head": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "about": {"_count": 1, "having": {"_count": 1}}, "applause": {"_count": 1, "they": {"_count": 1}}, "support": {"_count": 1, "from": {"_count": 1}}, "but": {"_count": 1, "erratic": {"_count": 1}}, "collector": {"_count": 1, "who": {"_count": 1}}, "greeting": {"_count": 1, "": {"_count": 1}}}, "Wimbourne": {"_count": 3, "Wasps": {"_count": 3, "ever": {"_count": 1}, "won": {"_count": 1}, "said": {"_count": 1}}}, "Wasps": {"_count": 3, "ever": {"_count": 1, "had": {"_count": 1}}, "won": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}}, "Mugglelike": {"_count": 1, "as": {"_count": 1, "possible": {"_count": 1}}}, "bellpulls": {"_count": 1, "or": {"_count": 1, "weather": {"_count": 1}}}, "vanes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "extravagant": {"_count": 3, "confection": {"_count": 1, "of": {"_count": 1}}, "praise": {"_count": 1, "": {"_count": 1}}, "toasts": {"_count": 1, "to": {"_count": 1}}}, "confection": {"_count": 1, "of": {"_count": 1, "striped": {"_count": 1}}}, "birdbath": {"_count": 1, "sundial": {"_count": 1, "and": {"_count": 1}}}, "sundial": {"_count": 1, "and": {"_count": 1, "fountain": {"_count": 1}}}, "fountain": {"_count": 24, "": {"_count": 7, ".": {"_count": 7}}, "of": {"_count": 2, "wine": {"_count": 1}, "pure": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}, "where": {"_count": 1, "jets": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "bellowed": {"_count": 1}, "one": {"_count": 1}}, "again": {"_count": 1, "her": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "him": {"_count": 1}}, "had": {"_count": 2, "sprung": {"_count": 1}, "filled": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "we": {"_count": 1, "destroyed": {"_count": 1}}, "was": {"_count": 1, "playing": {"_count": 1}}, "played": {"_count": 1, "he": {"_count": 1}}}, "WEEZLY": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "camping": {"_count": 5, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "here": {"_count": 1, "once": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}}, "preferring": {"_count": 3, "to": {"_count": 2, "leave": {"_count": 1}, "eat": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}}, "neighbor": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "came": {"_count": 1, "panting": {"_count": 1}}, "knew": {"_count": 1, "what": {"_count": 1}}, "a": {"_count": 1, "frizzyhaired": {"_count": 1}}, "the": {"_count": 1, "hairy": {"_count": 1}}, "Dolohov": {"_count": 1, "a": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "pegs": {"_count": 4, "should": {"_count": 1, "go": {"_count": 1}}, "which": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "driven": {"_count": 1, "deep": {"_count": 1}}}, "hindrance": {"_count": 1, "than": {"_count": 1, "a": {"_count": 1}}}, "mallet": {"_count": 1, "they": {"_count": 1, "finally": {"_count": 1}}}, "erect": {"_count": 1, "a": {"_count": 1, "pair": {"_count": 1}}}, "twoman": {"_count": 1, "tents": {"_count": 1, "": {"_count": 1}}}, "handiwork": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "quizzical": {"_count": 4, "look": {"_count": 3, "as": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "half": {"_count": 1, "smile": {"_count": 1}}}, "threeroom": {"_count": 1, "flat": {"_count": 1, "complete": {"_count": 1}}}, "Oddly": {"_count": 1, "enough": {"_count": 1, "it": {"_count": 1}}}, "furnished": {"_count": 1, "in": {"_count": 1, "exactly": {"_count": 1}}}, "style": {"_count": 5, "as": {"_count": 1, "Mrs": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "anyway": {"_count": 1, "once": {"_count": 1}}, "The": {"_count": 1, "effect": {"_count": 1}}}, "crocheted": {"_count": 1, "covers": {"_count": 1, "on": {"_count": 1}}}, "bunk": {"_count": 19, "beds": {"_count": 1, "that": {"_count": 1}}, "above": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 4, "reached": {"_count": 1}, "as": {"_count": 1}, "threw": {"_count": 1}, "moved": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "bed": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 2, "climbed": {"_count": 1}, "lowered": {"_count": 1}}, "creaked": {"_count": 1, "as": {"_count": 1}}, "looking": {"_count": 1, "stony": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "beside": {"_count": 1, "him": {"_count": 1}}, "I": {"_count": 1, "couldnt": {"_count": 1}}, "reading": {"_count": 1, "while": {"_count": 1}}, "replied": {"_count": 1, "Professor": {"_count": 1}}}, "camp": {"_count": 14, "much": {"_count": 1, "anymore": {"_count": 1}}, "they": {"_count": 1, "cook": {"_count": 1}}, "bed": {"_count": 9, "and": {"_count": 1}, "": {"_count": 4}, "had": {"_count": 1}, "the": {"_count": 1}, "in": {"_count": 1}, "pointed": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "here": {"_count": 1}}}, "lumbago": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "unimpressed": {"_count": 3, "by": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "proportions": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "again": {"_count": 1, "thick": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "anticipation": {"_count": 10, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "among": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 1, "breakfast": {"_count": 1}}, "had": {"_count": 1, "filled": {"_count": 1}}}, "tour": {"_count": 5, "of": {"_count": 2, "the": {"_count": 2}}, "Harry": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "dawning": {"_count": 8, "on": {"_count": 2, "Harry": {"_count": 1}, "his": {"_count": 1}}, "comprehension": {"_count": 3, "on": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}, "horror": {"_count": 1, "didnt": {"_count": 1}}, "wonder": {"_count": 1, "": {"_count": 1}}}, "countries": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "played": {"_count": 1}}}, "campers": {"_count": 1, "were": {"_count": 1, "starting": {"_count": 1}}}, "pyramidshaped": {"_count": 1, "tent": {"_count": 1, "holding": {"_count": 1}}}, "ma": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ny": {"_count": 1, "times": {"_count": 1, "Kevin": {"_count": 1}}}, "Kevin": {"_count": 3, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}}, "yecchh": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "scolding": {"_count": 1, "carried": {"_count": 1, "after": {"_count": 1}}}, "bust": {"_count": 13, "slug": {"_count": 2, "": {"_count": 2}}, "of": {"_count": 6, "Paracelsus": {"_count": 1}, "an": {"_count": 2}, "a": {"_count": 1}, "Rowena": {"_count": 2}}, "in": {"_count": 1, "front": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "which": {"_count": 1, "flew": {"_count": 1}}, "had": {"_count": 1, "rested": {"_count": 1}}}, "skim": {"_count": 1, "the": {"_count": 1, "dewy": {"_count": 1}}}, "Parents": {"_count": 3, "having": {"_count": 1, "a": {"_count": 1}}, "will": {"_count": 1, "want": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "striking": {"_count": 5, "matches": {"_count": 1, "with": {"_count": 1}}, "Katie": {"_count": 1, "Bell": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "smiting": {"_count": 1}}}, "dubious": {"_count": 2, "looks": {"_count": 1, "on": {"_count": 1}}, "magical": {"_count": 1, "object": {"_count": 1}}}, "roasting": {"_count": 1, "what": {"_count": 1, "looked": {"_count": 1}}}, "middleaged": {"_count": 5, "American": {"_count": 1, "witches": {"_count": 1}}, "woman": {"_count": 1, "who": {"_count": 1}}, "witches": {"_count": 2, "heading": {"_count": 1}, "and": {"_count": 1}}, "Muggle": {"_count": 1, "man": {"_count": 1}}}, "gossiping": {"_count": 4, "happily": {"_count": 1, "beneath": {"_count": 1}}, "students": {"_count": 1, "": {"_count": 1}}, "thirdyear": {"_count": 1, "Hufflepuffs": {"_count": 1}}, "about": {"_count": 1, "their": {"_count": 1}}}, "SALEM": {"_count": 1, "WITCHES": {"_count": 1, "INSTITUTE": {"_count": 1}}}, "WITCHES": {"_count": 1, "INSTITUTE": {"_count": 1, "": {"_count": 1}}}, "INSTITUTE": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "shamrocks": {"_count": 3, "so": {"_count": 1, "that": {"_count": 1}}, "Bulgarian": {"_count": 1, "scarves": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "hillocks": {"_count": 1, "had": {"_count": 1, "sprouted": {"_count": 1}}}, "flaps": {"_count": 1, "open": {"_count": 1, "": {"_count": 1}}}, "shamrock": {"_count": 9, "covered": {"_count": 1, "tent": {"_count": 1}}, "hat": {"_count": 2, "and": {"_count": 2}}, "pinned": {"_count": 1, "to": {"_count": 1}}, "which": {"_count": 1, "rose": {"_count": 1}}, "soared": {"_count": 1, "over": {"_count": 1}}, "Harry": {"_count": 1, "realized": {"_count": 1}}, "dissolved": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Bulgarians": {"_count": 9, "have": {"_count": 2, "got": {"_count": 2}}, "are": {"_count": 1, "insisting": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "arguments": {"_count": 1, "however": {"_count": 1}}, "filed": {"_count": 1, "between": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "upheld": {"_count": 2, "where": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "appear": {"_count": 1}}}, "Bulgarian": {"_count": 27, "flag": {"_count": 1, "white": {"_count": 1}}, "Seeker": {"_count": 3, "": {"_count": 2}, "and": {"_count": 1}}, "opposite": {"_count": 1, "numbers": {"_count": 1}}, "scarves": {"_count": 1, "adorned": {"_count": 1}}, "minister": {"_count": 2, "loudly": {"_count": 1}, "shrugging": {"_count": 1}}, "wizard": {"_count": 1, "suddenly": {"_count": 1}}, "blighters": {"_count": 1, "have": {"_count": 1}}, "Minister": {"_count": 2, "of": {"_count": 2}}, "National": {"_count": 2, "Team": {"_count": 1}, "Quidditch": {"_count": 1}}, "supporters": {"_count": 1, "": {"_count": 1}}, "Chaser": {"_count": 1, "Ivanova": {"_count": 1}}, "Beaters": {"_count": 3, "Volkov": {"_count": 2}, "were": {"_count": 1}}, "Keeper": {"_count": 2, "Zograf": {"_count": 1}, "to": {"_count": 1}}, "team": {"_count": 1, "mascots": {"_count": 1}}, "crowd": {"_count": 1, "howled": {"_count": 1}}, "players": {"_count": 1, "": {"_count": 1}}, "Quidditch": {"_count": 1, "robes": {"_count": 1}}, "ministers": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bedecked": {"_count": 3, "with": {"_count": 3, "plant": {"_count": 1}, "dancing": {"_count": 1}, "everything": {"_count": 1}}}, "\u2018Really": {"_count": 1, "grumpy": {"_count": 1, "": {"_count": 1}}}, "queue": {"_count": 18, "for": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 2, "only": {"_count": 1}, "were": {"_count": 1}}, "lining": {"_count": 1, "up": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "a": {"_count": 1, "young": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 2, "people": {"_count": 2}}, "to": {"_count": 2, "face": {"_count": 1}, "climb": {"_count": 1}}, "immediately": {"_count": 1, "": {"_count": 1}}, "outside": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}}, "nightgown": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Archie": {"_count": 5, "theres": {"_count": 1, "a": {"_count": 1}}, "not": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "indignation": {"_count": 1}, "his": {"_count": 1}}, "had": {"_count": 1, "collected": {"_count": 1}}}, "privates": {"_count": 1, "thanks": {"_count": 1, "": {"_count": 1}}}, "Puddlemere": {"_count": 4, "United": {"_count": 4, "reserve": {"_count": 1}, "whether": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 1}}}, "United": {"_count": 5, "reserve": {"_count": 1, "team": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "whether": {"_count": 1, "Oliver": {"_count": 1}}, "I": {"_count": 1, "saw": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hailed": {"_count": 3, "by": {"_count": 2, "Ernie": {"_count": 1}, "some": {"_count": 1}}, "him": {"_count": 1, "jovially": {"_count": 1}}}, "slopped": {"_count": 5, "quite": {"_count": 1, "a": {"_count": 1}}, "butterbeer": {"_count": 1, "down": {"_count": 1}}, "over": {"_count": 1, "onto": {"_count": 1}}, "half": {"_count": 1, "her": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}}, "teenagers": {"_count": 7, "whom": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 2, "pajamas": {"_count": 1}, "a": {"_count": 1}}, "alone": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "you": {"_count": 1}}, "gang": {"_count": 2, "": {"_count": 1}, "thats": {"_count": 1}}}, "penfriend": {"_count": 2, "at": {"_count": 1, "a": {"_count": 1}}, "got": {"_count": 1, "all": {"_count": 1}}}, "shrivel": {"_count": 4, "up": {"_count": 2, "": {"_count": 1}, "we": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "embarrassment": {"_count": 1}}}, "nationalities": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "until": {"_count": 1, "that": {"_count": 1}}}, "unsurprised": {"_count": 4, "by": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 2}}, "that": {"_count": 1, "she": {"_count": 1}}}, "Splintered": {"_count": 1, "matches": {"_count": 1, "littered": {"_count": 1}}}, "Oops": {"_count": 3, "": {"_count": 2, "!": {"_count": 2}}, "sorry": {"_count": 1, "Arry": {"_count": 1}}}, "thoroughfare": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "cordially": {"_count": 1, "as": {"_count": 1, "they": {"_count": 1}}}, "Cuthbert": {"_count": 1, "Mockridge": {"_count": 1, "Head": {"_count": 1}}}, "Mockridge": {"_count": 1, "Head": {"_count": 1, "of": {"_count": 1}}}, "Goblin": {"_count": 7, "Liaison": {"_count": 6, "Office": {"_count": 5}, "": {"_count": 1}}, "notions": {"_count": 1, "of": {"_count": 1}}}, "Liaison": {"_count": 7, "Office": {"_count": 6, "": {"_count": 2}, "and": {"_count": 2}, "was": {"_count": 1}, "of": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Gilbert": {"_count": 1, "Wimple": {"_count": 1, "hes": {"_count": 1}}}, "Wimple": {"_count": 1, "hes": {"_count": 1, "with": {"_count": 1}}}, "awhile": {"_count": 1, "now": {"_count": 1, "": {"_count": 1}}}, "Arnie": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Arnold": {"_count": 7, "Peasegood": {"_count": 1, "hes": {"_count": 1}}, "Weasley": {"_count": 2, "of": {"_count": 1}, "who": {"_count": 1}}, "in": {"_count": 1, "cages": {"_count": 1}}, "the": {"_count": 2, "Pygmy": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "Peasegood": {"_count": 1, "hes": {"_count": 1, "an": {"_count": 1}}}, "Obliviator": {"_count": 3, "member": {"_count": 1, "of": {"_count": 1}}, "Headquarters": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 1, "refused": {"_count": 1}}}, "Bode": {"_count": 23, "and": {"_count": 1, "Croaker": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "surveying": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 2}, "?": {"_count": 1}}, "he": {"_count": 2, "seems": {"_count": 1}, "said": {"_count": 1}}, "49": {"_count": 1, "was": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "whose": {"_count": 1, "health": {"_count": 1}}, "to": {"_count": 1, "look": {"_count": 1}}, "throttled": {"_count": 1, "him": {"_count": 1}}, "would": {"_count": 3, "be": {"_count": 1}, "have": {"_count": 2}}, "could": {"_count": 1, "never": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "was": {"_count": 2, "under": {"_count": 1}, "bewitched": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}}, "Croaker": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Unspeakables": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "complaining": {"_count": 1, "about": {"_count": 1}}}, "Mysteries": {"_count": 48, "top": {"_count": 1, "secret": {"_count": 1}}, "": {"_count": 15, "?": {"_count": 6}, ".": {"_count": 7}, "!": {"_count": 2}}, "said": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "develop": {"_count": 1}}, "and": {"_count": 4, "Mr": {"_count": 1}, "the": {"_count": 1}, "see": {"_count": 1}, "you": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 2, "few": {"_count": 1}, "are": {"_count": 1}}, "its": {"_count": 1, "got": {"_count": 1}}, "employee": {"_count": 1, "in": {"_count": 1}}, "almost": {"_count": 1, "every": {"_count": 1}}, "corridor": {"_count": 3, "that": {"_count": 1}, "really": {"_count": 1}, "": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "thought": {"_count": 1}}, "that": {"_count": 1, "Snape": {"_count": 1}}, "again": {"_count": 1, "walking": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "so": {"_count": 1, "we": {"_count": 1}}, "has": {"_count": 1, "always": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "Cornelius": {"_count": 1, "said": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "months": {"_count": 1}}, "before": {"_count": 1, "his": {"_count": 1}}, "interrupted": {"_count": 1, "Dumbledore": {"_count": 1}}, "Dont": {"_count": 1, "talk": {"_count": 1}}, "reveals": {"_count": 1, "that": {"_count": 1}}}, "stripes": {"_count": 2, "of": {"_count": 1, "bright": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wasp": {"_count": 3, "was": {"_count": 1, "splashed": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "buzzing": {"_count": 1, "distractingly": {"_count": 1}}}, "seed": {"_count": 2, "the": {"_count": 1, "robes": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}}, "belly": {"_count": 12, "he": {"_count": 1, "surely": {"_count": 1}}, "flop": {"_count": 1, "off": {"_count": 1}}, "large": {"_count": 1, "enough": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "and": {"_count": 1, "squinting": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "casting": {"_count": 1, "the": {"_count": 1}}, "preceded": {"_count": 1, "him": {"_count": 1}}}, "rosy": {"_count": 5, "complexion": {"_count": 1, "made": {"_count": 1}}, "face": {"_count": 1, "and": {"_count": 1}}, "cheeks": {"_count": 1, "grew": {"_count": 1}}, "glow": {"_count": 1, "the": {"_count": 1}}, "light": {"_count": 1, "of": {"_count": 1}}}, "complexion": {"_count": 3, "made": {"_count": 1, "him": {"_count": 1}}, "pale": {"_count": 1, "gray": {"_count": 1}}, "okay": {"_count": 1, "": {"_count": 1}}}, "Ahoy": {"_count": 1, "there": {"_count": 1, "": {"_count": 1}}}, "springs": {"_count": 1, "attached": {"_count": 1, "to": {"_count": 1}}}, "campfire": {"_count": 1, "what": {"_count": 1, "a": {"_count": 1}}}, "hiccough": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "haggardlooking": {"_count": 1, "Ministry": {"_count": 1, "wizards": {"_count": 1}}}, "jingling": {"_count": 6, "what": {"_count": 1, "seemed": {"_count": 1}}, "clopping": {"_count": 2, "sounds": {"_count": 1}, "noises": {"_count": 1}}, "and": {"_count": 1, "clopping": {"_count": 1}}, "it": {"_count": 1, "began": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "yellowandblack": {"_count": 1, "robes": {"_count": 1, "": {"_count": 1}}}, "Roddy": {"_count": 1, "Pontner": {"_count": 1, "betting": {"_count": 1}}}, "Pontner": {"_count": 1, "betting": {"_count": 1, "me": {"_count": 1}}}, "odds": {"_count": 9, "considering": {"_count": 1, "Irelands": {"_count": 1}}, "on": {"_count": 4, "that": {"_count": 2}, "Mr": {"_count": 1}, "hed": {"_count": 1}}, "of": {"_count": 1, "Umbridge": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 2}, "his": {"_count": 1}}}, "Irelands": {"_count": 1, "front": {"_count": 1, "three": {"_count": 1}}}, "strongest": {"_count": 4, "Ive": {"_count": 1, "seen": {"_count": 1}}, "Truth": {"_count": 1, "Potion": {"_count": 1}}, "shield": {"_count": 1, "I": {"_count": 1}}, "affinity": {"_count": 1, "between": {"_count": 1}}}, "Agatha": {"_count": 1, "Timms": {"_count": 1, "has": {"_count": 1}}}, "Timms": {"_count": 1, "has": {"_count": 1, "put": {"_count": 1}}}, "shares": {"_count": 4, "in": {"_count": 1, "her": {"_count": 1}}, "everything": {"_count": 1, "with": {"_count": 1}}, "your": {"_count": 1, "name": {"_count": 1}}, "with": {"_count": 1, "Ginny": {"_count": 1}}}, "eel": {"_count": 2, "farm": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "farm": {"_count": 2, "on": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "which": {"_count": 1}}}, "takers": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "pooled": {"_count": 1, "all": {"_count": 1, "their": {"_count": 1}}}, "boyish": {"_count": 3, "face": {"_count": 2, "shone": {"_count": 1}, "with": {"_count": 1}}, "grin": {"_count": 1, "back": {"_count": 1}}}, "squawk": {"_count": 3, "and": {"_count": 1, "turned": {"_count": 1}}, "of": {"_count": 1, "protest": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}}, "savings": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "before": {"_count": 1, "I": {"_count": 1}}}, "spoilsport": {"_count": 1, "Arthur": {"_count": 1, "": {"_count": 1}}}, "notebook": {"_count": 5, "and": {"_count": 1, "quill": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "clutched": {"_count": 1, "in": {"_count": 1}}}, "jotting": {"_count": 1, "down": {"_count": 1, "the": {"_count": 1}}}, "Barty": {"_count": 50, "Crouch": {"_count": 24, "": {"_count": 5}, "keeps": {"_count": 1}, "was": {"_count": 2}, "nodded": {"_count": 1}, "for": {"_count": 2}, "powerfully": {"_count": 1}, "half": {"_count": 1}, "is": {"_count": 1}, "Minister": {"_count": 1}, "binding": {"_count": 1}, "her": {"_count": 1}, "shook": {"_count": 1}, "had": {"_count": 1}, "There": {"_count": 1}, "I": {"_count": 1}, "Junior": {"_count": 1}, "did": {"_count": 1}, "turned": {"_count": 1}}, "": {"_count": 6, "!": {"_count": 2}, "?": {"_count": 4}}, "said": {"_count": 1, "Ludo": {"_count": 1}}, "whispered": {"_count": 1, "a": {"_count": 1}}, "theyd": {"_count": 1, "never": {"_count": 1}}, "Crouchs": {"_count": 4, "houseelf": {"_count": 1}, "elf": {"_count": 1}, "": {"_count": 2}}, "knows": {"_count": 1, "the": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "Im": {"_count": 1, "staying": {"_count": 1}}, "doing": {"_count": 1, "": {"_count": 1}}, "Id": {"_count": 1, "imagine": {"_count": 1}}, "Master": {"_count": 3, "Barty": {"_count": 3}}, "what": {"_count": 2, "is": {"_count": 2}}, "say": {"_count": 1, "no": {"_count": 1}}, "sobbed": {"_count": 1, "Winky": {"_count": 1}}, "you": {"_count": 1, "bad": {"_count": 1}}}, "Bartyll": {"_count": 1, "be": {"_count": 1, "able": {"_count": 1}}}, "pokerstiff": {"_count": 1, "disapproval": {"_count": 1, "and": {"_count": 1}}}, "Mermish": {"_count": 5, "and": {"_count": 1, "Gobbledegook": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "the": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}}, "Gobbledegook": {"_count": 4, "and": {"_count": 2, "Troll": {"_count": 1}, "Gornuk": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "dicky": {"_count": 1, "bird": {"_count": 1, "said": {"_count": 1}}}, "leaky": {"_count": 2, "cauldron": {"_count": 1, "and": {"_count": 1}}, "eyes": {"_count": 1, "fixed": {"_count": 1}}}, "tentatively": {"_count": 32, "as": {"_count": 2, "Percy": {"_count": 1}, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "my": {"_count": 1, "dad": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 16}}, "and": {"_count": 1, "she": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "Hermione": {"_count": 1}}, "for": {"_count": 1, "Hermione": {"_count": 1}}, "does": {"_count": 1, "what": {"_count": 1}}, "I": {"_count": 1, "met": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "Harry": {"_count": 2, "spoke": {"_count": 1}, "dear": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "whether": {"_count": 1, "Harry": {"_count": 1}}, "is": {"_count": 1, "everything": {"_count": 1}}}, "contrast": {"_count": 6, "with": {"_count": 2, "Ludo": {"_count": 1}, "Ron": {"_count": 1}}, "was": {"_count": 1, "becoming": {"_count": 1}}, "between": {"_count": 1, "my": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}}, "Wasp": {"_count": 2, "robes": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}}, "impeccably": {"_count": 1, "crisp": {"_count": 1, "suit": {"_count": 1}}}, "parting": {"_count": 9, "in": {"_count": 1, "his": {"_count": 1}}, "looked": {"_count": 1, "very": {"_count": 1}}, "to": {"_count": 1, "let": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "wave": {"_count": 1, "did": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "words": {"_count": 1, "deeply": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "probably": {"_count": 1, "forever": {"_count": 1}}}, "toothbrush": {"_count": 4, "mustache": {"_count": 3, "looked": {"_count": 1}, "were": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "idolized": {"_count": 2, "him": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "believer": {"_count": 1, "in": {"_count": 1, "rigidly": {"_count": 1}}}, "rigidly": {"_count": 4, "following": {"_count": 1, "rules": {"_count": 1}}, "then": {"_count": 1, "did": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "disapproving": {"_count": 1, "expression": {"_count": 1}}}, "complied": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "impatience": {"_count": 10, "in": {"_count": 3, "his": {"_count": 3}}, "that": {"_count": 1, "nobody": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "crossingsout": {"_count": 1}}, "Harry": {"_count": 1, "recognized": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}}, "Top": {"_count": 18, "Box": {"_count": 16, "": {"_count": 10}, "with": {"_count": 1}, "was": {"_count": 2}, "and": {"_count": 1}, "For": {"_count": 1}, "early": {"_count": 1}}, "secret": {"_count": 2, "": {"_count": 2}}}, "Box": {"_count": 16, "": {"_count": 10, ".": {"_count": 4}, "!": {"_count": 2}, "?": {"_count": 4}}, "with": {"_count": 1, "me": {"_count": 1}}, "was": {"_count": 2, "not": {"_count": 1}, "magically": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "For": {"_count": 1, "the": {"_count": 1}}, "early": {"_count": 1, "in": {"_count": 1}}}, "tweezers": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "which": {"_count": 1, "scuttled": {"_count": 1}}}, "accent": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "halfbow": {"_count": 1, "that": {"_count": 1, "made": {"_count": 1}}}, "hunchback": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Weatherby": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "in": {"_count": 1, "charge": {"_count": 1}}, "yet": {"_count": 1, "but": {"_count": 1}}, "send": {"_count": 1, "an": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "when": {"_count": 1}}}, "Ali": {"_count": 3, "Bashirs": {"_count": 1, "on": {"_count": 1}}, "thinks": {"_count": 1, "theres": {"_count": 1}}, "Bashir": {"_count": 1, "was": {"_count": 1}}}, "Bashirs": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "warpath": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "embargo": {"_count": 1, "on": {"_count": 1, "flying": {"_count": 1}}}, "Carpets": {"_count": 1, "are": {"_count": 1, "defined": {"_count": 1}}}, "defined": {"_count": 5, "as": {"_count": 2, "a": {"_count": 2}}, "form": {"_count": 1, "": {"_count": 1}}, "figures": {"_count": 1, "walk": {"_count": 1}}, "a": {"_count": 1, "Gryffindor": {"_count": 1}}}, "Artifact": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "Registry": {"_count": 1, "of": {"_count": 1, "Proscribed": {"_count": 1}}}, "Proscribed": {"_count": 1, "Charmable": {"_count": 1, "Objects": {"_count": 1}}}, "Charmable": {"_count": 1, "Objects": {"_count": 1, "but": {"_count": 1}}}, "Objects": {"_count": 3, "but": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "that": {"_count": 1}}}, "accepting": {"_count": 9, "a": {"_count": 1, "cup": {"_count": 1}}, "his": {"_count": 3, "name": {"_count": 1}, "assistance": {"_count": 1}, "friends": {"_count": 1}}, "that": {"_count": 2, "Voldemorts": {"_count": 1}, "it": {"_count": 1}}, "I": {"_count": 1, "presume": {"_count": 1}}, "their": {"_count": 1, "apology": {"_count": 1}}, "your": {"_count": 1, "place": {"_count": 1}}}, "export": {"_count": 1, "here": {"_count": 1, "": {"_count": 1}}}, "replace": {"_count": 3, "brooms": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}}, "niche": {"_count": 5, "in": {"_count": 1, "the": {"_count": 1}}, "beneath": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "opposite": {"_count": 1, "the": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}}, "vehicle": {"_count": 1, "said": {"_count": 1, "Mr": {"_count": 1}}}, "Axminster": {"_count": 2, "that": {"_count": 1, "could": {"_count": 1}}, "Fudge": {"_count": 1, "had": {"_count": 1}}}, "ancestors": {"_count": 5, "had": {"_count": 2, "abided": {"_count": 1}, "once": {"_count": 1}}, "and": {"_count": 1, "into": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "nor": {"_count": 1, "mine": {"_count": 1}}}, "abided": {"_count": 1, "strictly": {"_count": 1, "by": {"_count": 1}}}, "breezily": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Fairly": {"_count": 1, "said": {"_count": 1, "Mr": {"_count": 1}}}, "Organizing": {"_count": 1, "Portkeys": {"_count": 1, "across": {"_count": 1}}}, "continents": {"_count": 1, "is": {"_count": 1, "no": {"_count": 1}}}, "feat": {"_count": 6, "Ludo": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "which": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "that": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}}, "Glad": {"_count": 8, "": {"_count": 1, "!": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "hear": {"_count": 1}}, "yeh": {"_count": 1, "found": {"_count": 1}}, "hes": {"_count": 1, "pleased": {"_count": 1}}, "that": {"_count": 1, "Hermione": {"_count": 1}}, "we": {"_count": 1, "straightened": {"_count": 1}}, "of": {"_count": 1, "something": {"_count": 1}}}, "midges": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "kidsll": {"_count": 1, "know": {"_count": 1, "soon": {"_count": 1}}}, "undrunk": {"_count": 1, "tea": {"_count": 1, "back": {"_count": 1}}}, "swigging": {"_count": 3, "down": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "butterbeer": {"_count": 1, "and": {"_count": 1}}}, "chinking": {"_count": 1, "merrily": {"_count": 1, "": {"_count": 1}}}, "classified": {"_count": 2, "information": {"_count": 1, "until": {"_count": 1}}, "thestrals": {"_count": 1, "as": {"_count": 1}}}, "decides": {"_count": 3, "to": {"_count": 1, "release": {"_count": 1}}, "who": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "isnt": {"_count": 1}}}, "disclose": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "palpable": {"_count": 2, "cloud": {"_count": 1, "over": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}}, "vestiges": {"_count": 3, "of": {"_count": 3, "pretence": {"_count": 1}, "great": {"_count": 1}, "Polyjuice": {"_count": 1}}}, "pretence": {"_count": 1, "disappeared": {"_count": 1, "the": {"_count": 1}}}, "inevitable": {"_count": 3, "and": {"_count": 1, "stopped": {"_count": 1}}, "they": {"_count": 1, "finally": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}}, "blatant": {"_count": 2, "magic": {"_count": 1, "now": {"_count": 1}}, "wizardishness": {"_count": 1, "of": {"_count": 1}}}, "Salesmen": {"_count": 1, "were": {"_count": 1, "Apparating": {"_count": 1}}}, "merchandise": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "not": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "Fred": {"_count": 1}}}, "adorned": {"_count": 3, "with": {"_count": 2, "lions": {"_count": 1}, "a": {"_count": 1}}, "the": {"_count": 1, "walls": {"_count": 1}}}, "lions": {"_count": 3, "that": {"_count": 1, "really": {"_count": 1}}, "head": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "anthems": {"_count": 2, "as": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "models": {"_count": 3, "of": {"_count": 2, "Firebolts": {"_count": 1}, "creatures": {"_count": 1}}, "and": {"_count": 1, "theories": {"_count": 1}}}, "collectible": {"_count": 1, "figures": {"_count": 1, "of": {"_count": 1}}}, "preening": {"_count": 1, "themselves": {"_count": 1, "": {"_count": 1}}}, "salesmen": {"_count": 1, "buying": {"_count": 1, "souvenirs": {"_count": 1}}}, "souvenirs": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}}, "purchased": {"_count": 4, "a": {"_count": 1, "dancing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "Flourish": {"_count": 1}}, "spellbooks": {"_count": 1, "unaware": {"_count": 1}}}, "rosette": {"_count": 5, "he": {"_count": 1, "also": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "on": {"_count": 1, "Harrys": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "knobs": {"_count": 2, "and": {"_count": 1, "dials": {"_count": 1}}, "said": {"_count": 1, "Dedalus": {"_count": 1}}}, "dials": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "whirled": {"_count": 1, "": {"_count": 1}}, "The": {"_count": 1, "next": {"_count": 1}}}, "Omnioculars": {"_count": 22, "said": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "!": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 3, "started": {"_count": 1}, "slowed": {"_count": 1}, "saw": {"_count": 1}}, "back": {"_count": 2, "to": {"_count": 2}}, "so": {"_count": 1, "hard": {"_count": 1}}, "again": {"_count": 2, "pressed": {"_count": 1}, "saw": {"_count": 1}}, "squinting": {"_count": 1, "to": {"_count": 1}}, "twiddled": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "saleswizard": {"_count": 1, "eagerly": {"_count": 1, "": {"_count": 1}}}, "playbyplay": {"_count": 3, "breakdown": {"_count": 1, "if": {"_count": 1}}, "button": {"_count": 1, "on": {"_count": 1}}, "buttons": {"_count": 1, "on": {"_count": 1}}}, "breakdown": {"_count": 1, "if": {"_count": 1, "you": {"_count": 1}}}, "Bargain": {"_count": 1, "ten": {"_count": 1, "Galleons": {"_count": 1}}}, "Fair": {"_count": 6, "enough": {"_count": 2, "said": {"_count": 2}}, "Ravenclaw": {"_count": 1, "from": {"_count": 1}}, "point": {"_count": 2, "little": {"_count": 1}, "said": {"_count": 1}}, "Fortune": {"_count": 1, "": {"_count": 1}}}, "sporting": {"_count": 12, "green": {"_count": 1, "rosettes": {"_count": 1}}, "a": {"_count": 4, "bloody": {"_count": 1}, "swollen": {"_count": 1}, "brilliantly": {"_count": 1}, "brandnew": {"_count": 1}}, "Support": {"_count": 2, "Cedric": {"_count": 2}}, "event": {"_count": 1, "": {"_count": 1}}, "gruesome": {"_count": 1, "disfigurements": {"_count": 1}}, "grisly": {"_count": 1, "injuries": {"_count": 1}}, "events": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 1, "symbol": {"_count": 1}}}, "gong": {"_count": 1, "sounded": {"_count": 1, "somewhere": {"_count": 1}}}, "WORLD": {"_count": 2, "CUP": {"_count": 2, "Clutching": {"_count": 1}, "complete": {"_count": 1}}}, "feverish": {"_count": 7, "excitement": {"_count": 1, "was": {"_count": 1}}, "way": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "atmosphere": {"_count": 1, "drove": {"_count": 1}}, "fanatical": {"_count": 1, "glow": {"_count": 1}}, "contemplation": {"_count": 1, "of": {"_count": 1}}}, "infectious": {"_count": 3, "Harry": {"_count": 1, "couldnt": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "cathedrals": {"_count": 1, "would": {"_count": 1, "fit": {"_count": 1}}}, "Seats": {"_count": 2, "a": {"_count": 1, "hundred": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Repelling": {"_count": 1, "Charms": {"_count": 1, "on": {"_count": 1}}}, "appointments": {"_count": 6, "and": {"_count": 1, "had": {"_count": 1}}, "writes": {"_count": 1, "Rita": {"_count": 1}}, "previously": {"_count": 1, "described": {"_count": 1}}, "are": {"_count": 1, "listed": {"_count": 1}}, "but": {"_count": 1, "waited": {"_count": 1}}, "put": {"_count": 1, "him": {"_count": 1}}}, "swarm": {"_count": 7, "of": {"_count": 6, "shouting": {"_count": 1}, "glittering": {"_count": 1}, "mediwizards": {"_count": 1}, "pursuing": {"_count": 1}, "dementors": {"_count": 1}, "descendants": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}}, "carpeted": {"_count": 5, "in": {"_count": 2, "rich": {"_count": 1}, "deeper": {"_count": 1}}, "corridor": {"_count": 1, "": {"_count": 1}}, "corridors": {"_count": 1, "above": {"_count": 1}}, "floor": {"_count": 1, "in": {"_count": 1}}}, "filtered": {"_count": 2, "away": {"_count": 1, "through": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "situated": {"_count": 6, "exactly": {"_count": 1, "halfway": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "found": {"_count": 1}}}, "purpleandgilt": {"_count": 1, "chairs": {"_count": 1, "stood": {"_count": 1}}}, "levels": {"_count": 7, "around": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "vindictiveness": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "all": {"_count": 1, "around": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "oval": {"_count": 2, "field": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}}, "suffused": {"_count": 3, "with": {"_count": 2, "a": {"_count": 1}, "hatred": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}}, "giants": {"_count": 51, "hand": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 11, "?": {"_count": 6}, ".": {"_count": 5}}, "abroad": {"_count": 1, "though": {"_count": 1}}, "in": {"_count": 2, "their": {"_count": 1}, "Britain": {"_count": 1}}, "brought": {"_count": 1, "themselves": {"_count": 1}}, "who": {"_count": 3, "served": {"_count": 1}, "knew": {"_count": 1}, "worried": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "appear": {"_count": 1}}, "people": {"_count": 1, "hate": {"_count": 1}}, "well": {"_count": 1, "theyll": {"_count": 1}}, "beat": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "there": {"_count": 1}}, "first": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 2, "": {"_count": 1}, "sleepin": {"_count": 1}}, "an": {"_count": 1, "all": {"_count": 1}}, "from": {"_count": 1, "Albus": {"_count": 1}}, "like": {"_count": 1, "Karkus": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "head": {"_count": 1, "": {"_count": 1}}, "Nex": {"_count": 1, "thing": {"_count": 1}}, "hate": {"_count": 1, "abou": {"_count": 1}}, "to": {"_count": 1, "join": {"_count": 1}}, "hidin": {"_count": 1, "": {"_count": 1}}, "coming": {"_count": 1, "": {"_count": 1}}, "massive": {"_count": 1, "hands": {"_count": 1}}, "last": {"_count": 1, "time": {"_count": 1}}, "of": {"_count": 1, "their": {"_count": 1}}, "wrestled": {"_count": 1, "and": {"_count": 1}}, "sat": {"_count": 1, "on": {"_count": 1}}, "roared": {"_count": 1, "as": {"_count": 1}}, "crashed": {"_count": 1, "along": {"_count": 1}}, "They": {"_count": 1, "ran": {"_count": 1}}, "or": {"_count": 1, "of": {"_count": 1}}, "Hagrids": {"_count": 1, "yell": {"_count": 1}}, "stamping": {"_count": 1, "feet": {"_count": 1}}, "thestrals": {"_count": 1, "and": {"_count": 1}}}, "advertisements": {"_count": 2, "across": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Bluebottle": {"_count": 1, "A": {"_count": 1, "Broom": {"_count": 1}}}, "Broom": {"_count": 4, "for": {"_count": 1, "All": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Regulatory": {"_count": 1, "Control": {"_count": 1}}, "Compass": {"_count": 1, "its": {"_count": 1}}}, "Family": {"_count": 5, "safe": {"_count": 2, "reliable": {"_count": 1}, "do": {"_count": 1}}, "argument": {"_count": 1, "eh": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "skeletons": {"_count": 1, "notwithstanding": {"_count": 1}}}, "Builtin": {"_count": 1, "AntiBurglar": {"_count": 1, "Buzzer": {"_count": 1}}}, "AntiBurglar": {"_count": 1, "Buzzer": {"_count": 1, "": {"_count": 1}}}, "Buzzer": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Pain": {"_count": 4, "No": {"_count": 1, "Stain": {"_count": 1}}, "said": {"_count": 1, "Moody": {"_count": 1}}, "cleaved": {"_count": 1, "Harrys": {"_count": 1}}, "was": {"_count": 1, "building": {"_count": 1}}}, "Stain": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Gladrags": {"_count": 2, "Wizardwear": {"_count": 2, "London": {"_count": 1}, "to": {"_count": 1}}}, "Wizardwear": {"_count": 2, "London": {"_count": 1, "Paris": {"_count": 1}}, "to": {"_count": 1, "buy": {"_count": 1}}}, "Paris": {"_count": 1, "Hogsmeade": {"_count": 1, "": {"_count": 1}}}, "towel": {"_count": 11, "draped": {"_count": 1, "like": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "so": {"_count": 1, "violently": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "stamped": {"_count": 1, "with": {"_count": 1}}, "firmly": {"_count": 1, "around": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "changing": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "his": {"_count": 1, "ear": {"_count": 1}}}, "toga": {"_count": 3, "and": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "batlike": {"_count": 9, "ears": {"_count": 5, "were": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 3}}, "and": {"_count": 1, "defeated": {"_count": 1}}, "wings": {"_count": 1, "then": {"_count": 1}}, "shape": {"_count": 1, "flying": {"_count": 1}}, "like": {"_count": 1, "his": {"_count": 1}}}, "tomato": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}}, "teeny": {"_count": 1, "quivering": {"_count": 1, "squeak": {"_count": 1}}}, "Winky": {"_count": 149, "sir": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "shaking": {"_count": 1, "her": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "lowered": {"_count": 1, "her": {"_count": 1}}, "looked": {"_count": 1, "quite": {"_count": 1}}, "firmly": {"_count": 1, "from": {"_count": 1}}, "tilting": {"_count": 1, "her": {"_count": 1}}, "is": {"_count": 15, "wishing": {"_count": 1}, "a": {"_count": 3}, "getting": {"_count": 2}, "not": {"_count": 3}, "properly": {"_count": 1}, "having": {"_count": 1}, "over": {"_count": 1}, "pining": {"_count": 1}, "frightened": {"_count": 1}, "still": {"_count": 1}}, "does": {"_count": 1, "what": {"_count": 1}}, "the": {"_count": 1, "houseelf": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 12}, "?": {"_count": 8}, "!": {"_count": 3}}, "back": {"_count": 1, "at": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "lying": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 5, "then": {"_count": 1}, "said": {"_count": 1}, "finds": {"_count": 1}, "to": {"_count": 1}, "I": {"_count": 1}}, "stirred": {"_count": 1, "feebly": {"_count": 1}}, "began": {"_count": 2, "to": {"_count": 2}}, "gasped": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "cowering": {"_count": 1}}, "tears": {"_count": 3, "streaming": {"_count": 1}, "leaking": {"_count": 1}, "trickling": {"_count": 1}}, "did": {"_count": 3, "it": {"_count": 1}, "he": {"_count": 1}, "stop": {"_count": 1}}, "trembled": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 10, "twisting": {"_count": 1}, "crying": {"_count": 1}, "sitting": {"_count": 2}, "plainly": {"_count": 1}, "freed": {"_count": 1}, "shaking": {"_count": 1}, "to": {"_count": 1}, "afraid": {"_count": 1}, "discovered": {"_count": 1}}, "here": {"_count": 1, "had": {"_count": 1}}, "into": {"_count": 1, "your": {"_count": 1}}, "stammered": {"_count": 1, "looking": {"_count": 1}}, "has": {"_count": 3, "behaved": {"_count": 1}, "been": {"_count": 2}}, "prostrating": {"_count": 1, "herself": {"_count": 1}}, "clutched": {"_count": 1, "at": {"_count": 1}}, "said": {"_count": 9, "Mr": {"_count": 1}, "Harry": {"_count": 3}, "Hermione": {"_count": 2}, "nodding": {"_count": 1}, "Ron": {"_count": 1}, "Dumbledore": {"_count": 1}}, "jobs": {"_count": 1, "sir": {"_count": 1}}, "dont": {"_count": 1, "cry": {"_count": 1}}, "cried": {"_count": 1, "harder": {"_count": 1}}, "howled": {"_count": 1, "even": {"_count": 1}}, "however": {"_count": 1, "remained": {"_count": 1}}, "flung": {"_count": 1, "herself": {"_count": 1}}, "find": {"_count": 1, "work": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "come": {"_count": 1, "on": {"_count": 1}}, "clapped": {"_count": 1, "her": {"_count": 1}}, "forgets": {"_count": 1, "she": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "breathlessly": {"_count": 1, "raising": {"_count": 1}}, "some": {"_count": 1, "things": {"_count": 1}}, "Winky": {"_count": 1, "keeps": {"_count": 1}}, "keeps": {"_count": 3, "her": {"_count": 2}, "hie": {"_count": 1}}, "to": {"_count": 1, "help": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "being": {"_count": 2, "found": {"_count": 2}}, "didnt": {"_count": 3, "steal": {"_count": 1}, "know": {"_count": 2}}, "hiccuped": {"_count": 1, "again": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "still": {"_count": 1, "thinks": {"_count": 1}}, "swayed": {"_count": 1, "some": {"_count": 1}}, "Hermione": {"_count": 1, "said": {"_count": 1}}, "hie": {"_count": 1, "is": {"_count": 1}}, "squeaked": {"_count": 1, "indignantly": {"_count": 1}}, "with": {"_count": 2, "hie": {"_count": 1}, "a": {"_count": 1}}, "shook": {"_count": 1, "her": {"_count": 1}}, "must": {"_count": 1, "not": {"_count": 1}}, "sirs": {"_count": 1, "and": {"_count": 1}}, "about": {"_count": 1, "Crouch": {"_count": 1}}, "too": {"_count": 2, "remember": {"_count": 1}, "sir": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "peered": {"_count": 1, "around": {"_count": 1}}, "remained": {"_count": 1, "on": {"_count": 1}}, "through": {"_count": 1, "her": {"_count": 1}}, "showed": {"_count": 1, "her": {"_count": 1}}, "talking": {"_count": 1, "to": {"_count": 1}}, "talked": {"_count": 1, "my": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "would": {"_count": 1, "appear": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "wailed": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "considerable": {"_count": 1}}}, "talks": {"_count": 11, "of": {"_count": 1, "you": {"_count": 1}}, "on": {"_count": 1, "fortune": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "about": {"_count": 1, "you": {"_count": 1}}, "might": {"_count": 1, "not": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "with": {"_count": 2, "difficult": {"_count": 1}, "Dumbledore": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}}, "suiting": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "disrespect": {"_count": 1, "sir": {"_count": 1, "but": {"_count": 1}}}, "Freedom": {"_count": 1, "is": {"_count": 1, "going": {"_count": 1}}}, "Ideas": {"_count": 1, "above": {"_count": 1, "his": {"_count": 1}}}, "halfoctave": {"_count": 1, "and": {"_count": 1, "whispered": {"_count": 1}}}, "Paying": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "jinks": {"_count": 1, "sir": {"_count": 1, "what": {"_count": 1}}}, "unbecoming": {"_count": 1, "to": {"_count": 1, "a": {"_count": 1}}}, "racketing": {"_count": 1, "around": {"_count": 1, "like": {"_count": 1}}}, "yous": {"_count": 3, "up": {"_count": 1, "in": {"_count": 1}}, "putting": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 1, "their": {"_count": 1}}}, "weirder": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Wild": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "twiddling": {"_count": 7, "the": {"_count": 2, "replay": {"_count": 1}, "ends": {"_count": 1}}, "it": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "thumbs": {"_count": 1}}, "their": {"_count": 2, "thumbs": {"_count": 1}, "wands": {"_count": 1}}, "those": {"_count": 1, "dials": {"_count": 1}}}, "velvetcovered": {"_count": 3, "tasseled": {"_count": 1, "program": {"_count": 1}}, "desks": {"_count": 1, "and": {"_count": 1}}, "belly": {"_count": 1, "seemed": {"_count": 1}}}, "tasseled": {"_count": 3, "program": {"_count": 1, "": {"_count": 1}}, "velvet": {"_count": 1, "hat": {"_count": 1}}, "footstool": {"_count": 1, "regained": {"_count": 1}}}, "mascots": {"_count": 5, "will": {"_count": 1, "precede": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "the": {"_count": 1, "Quidditch": {"_count": 1}}}, "precede": {"_count": 1, "the": {"_count": 1, "match": {"_count": 1}}}, "native": {"_count": 2, "land": {"_count": 1, "you": {"_count": 1}}, "birds": {"_count": 1, "are": {"_count": 1}}}, "hedgehog": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}}, "thereafter": {"_count": 3, "remained": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "reverted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fatherly": {"_count": 5, "fashion": {"_count": 1, "asked": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "affection": {"_count": 1, "stretched": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}}, "gabbling": {"_count": 3, "loudly": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "Gobbledegook": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "shakes": {"_count": 3, "at": {"_count": 2, "languages": {"_count": 1}, "magic": {"_count": 1}}, "their": {"_count": 1, "head": {"_count": 1}}}, "cadge": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "Edging": {"_count": 1, "along": {"_count": 1, "the": {"_count": 1}}}, "stillempty": {"_count": 1, "seats": {"_count": 1, "right": {"_count": 1}}}, "slim": {"_count": 4, "she": {"_count": 1, "would": {"_count": 1}}, "hooded": {"_count": 1, "figure": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "fingers": {"_count": 1, "closed": {"_count": 1}}}, "nicelooking": {"_count": 2, "if": {"_count": 1, "she": {"_count": 1}}, "Krum": {"_count": 1, "said": {"_count": 1}}}, "Narcissa": {"_count": 72, "": {"_count": 13, "?": {"_count": 5}, ".": {"_count": 6}, "!": {"_count": 2}}, "Black": {"_count": 1, "with": {"_count": 1}}, "sister": {"_count": 1, "of": {"_count": 1}}, "information": {"_count": 1, "of": {"_count": 1}}, "listen": {"_count": 1, "to": {"_count": 1}}, "gained": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "darting": {"_count": 1, "through": {"_count": 1}}, "and": {"_count": 5, "she": {"_count": 1}, "many": {"_count": 1}, "I": {"_count": 1}, "Bellatrix": {"_count": 1}, "Draco": {"_count": 1}}, "breathed": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 2, "rushed": {"_count": 1}, "directed": {"_count": 1}}, "hurried": {"_count": 1, "up": {"_count": 1}}, "threw": {"_count": 1, "back": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "asked": {"_count": 1, "quietly": {"_count": 1}}, "murmured": {"_count": 1, "a": {"_count": 1}}, "took": {"_count": 1, "her": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 1}, "shall": {"_count": 1}}, "sat": {"_count": 2, "motionless": {"_count": 1}, "rigid": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "continued": {"_count": 1, "her": {"_count": 1}}, "gasped": {"_count": 1, "as": {"_count": 1}}, "frowning": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}, "breathing": {"_count": 1, "more": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "very": {"_count": 1, "angry": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "thats": {"_count": 1, "enough": {"_count": 1}}, "spoke": {"_count": 1, "": {"_count": 1}}, "Snapes": {"_count": 1, "hand": {"_count": 1}}, "Malfoy": {"_count": 6, "strolled": {"_count": 1}, "smiled": {"_count": 1}, "would": {"_count": 1}, "scrutinizing": {"_count": 1}, "called": {"_count": 1}, "running": {"_count": 1}}, "restraining": {"_count": 1, "him": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "leading": {"_count": 1, "the": {"_count": 1}}, "called": {"_count": 1, "to": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "furiously": {"_count": 1, "but": {"_count": 1}}, "hesitated": {"_count": 1, "for": {"_count": 1}}, "Draco": {"_count": 1, "and": {"_count": 1}}, "dragged": {"_count": 1, "Draco": {"_count": 1}}, "whose": {"_count": 1, "eyes": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}}, "Oblansk": {"_count": 1, "Obalonsk": {"_count": 1, "Mr": {"_count": 1}}}, "Obalonsk": {"_count": 1, "Mr": {"_count": 1, "well": {"_count": 1}}}, "recalled": {"_count": 8, "the": {"_count": 3, "last": {"_count": 1}, "one": {"_count": 1}, "less": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "fleetingly": {"_count": 1, "how": {"_count": 1}}, "to": {"_count": 1, "themselves": {"_count": 1}}, "a": {"_count": 1, "spider": {"_count": 1}}, "with": {"_count": 1, "painful": {"_count": 1}}}, "fetched": {"_count": 1, "this": {"_count": 1, "much": {"_count": 1}}}, "contribution": {"_count": 3, "to": {"_count": 1, "St": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "not": {"_count": 1, "be": {"_count": 1}}}, "Mungos": {"_count": 55, "Hospital": {"_count": 11, "for": {"_count": 9}, "promised": {"_count": 1}, "with": {"_count": 1}}, "": {"_count": 10, ".": {"_count": 8}, "!": {"_count": 2}}, "because": {"_count": 1, "of": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 3, "Ginny": {"_count": 1}, "Hermione": {"_count": 1}, "Ron": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 2, "hidden": {"_count": 1}, "quite": {"_count": 1}}, "for": {"_count": 2, "emergency": {"_count": 1}, "good": {"_count": 1}}, "puts": {"_count": 1, "Imperturbable": {"_count": 1}}, "and": {"_count": 5, "hed": {"_count": 1}, "taking": {"_count": 1}, "no": {"_count": 1}, "get": {"_count": 1}, "Grans": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "deeply": {"_count": 1, "regrets": {"_count": 1}}, "is": {"_count": 1, "as": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}, "his": {"_count": 1, "brain": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 2, "its": {"_count": 1}, "Monday": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "there": {"_count": 1, "isnt": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "see": {"_count": 1}}, "didnt": {"_count": 1, "have": {"_count": 1}}, "staff": {"_count": 1, "are": {"_count": 1}}, "they": {"_count": 1, "couldnt": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "Hospital": {"_count": 12, "for": {"_count": 9, "Magical": {"_count": 9}}, "wing": {"_count": 1, "Goyle": {"_count": 1}}, "promised": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "no": {"_count": 1}}}, "Maladies": {"_count": 9, "and": {"_count": 9, "Injuries": {"_count": 9}}}, "Injuries": {"_count": 10, "Arthur": {"_count": 1, "": {"_count": 1}}, "decline": {"_count": 1, "comment": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "that": {"_count": 1, "Potters": {"_count": 1}}, "If": {"_count": 1, "Im": {"_count": 1}}, "corridor": {"_count": 1, "where": {"_count": 1}}, "are": {"_count": 1, "examining": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}}, "prided": {"_count": 1, "themselves": {"_count": 1, "on": {"_count": 1}}}, "descent": {"_count": 9, "like": {"_count": 1, "Hermione": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "Dumbledore": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "into": {"_count": 1, "listlessness": {"_count": 1}}}, "secondclass": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sneeringly": {"_count": 2, "to": {"_count": 1, "Mr": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Slimy": {"_count": 2, "gits": {"_count": 1, "Ron": {"_count": 1}}, "oily": {"_count": 1, "greasyhaired": {"_count": 1}}}, "Edam": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Sonorusl": {"_count": 2, "and": {"_count": 2, "then": {"_count": 1}, "his": {"_count": 1}}}, "twentysecond": {"_count": 1, "Quidditch": {"_count": 1, "World": {"_count": 1}}}, "discordant": {"_count": 2, "national": {"_count": 1, "anthems": {"_count": 1}}, "sounds": {"_count": 1, "of": {"_count": 1}}}, "Risk": {"_count": 2, "With": {"_count": 1, "Every": {"_count": 1}}, "your": {"_count": 1, "life": {"_count": 1}}}, "Mouthfull": {"_count": 1, "and": {"_count": 1, "now": {"_count": 1}}}, "BULGARIA": {"_count": 2, "0": {"_count": 1, "IRELAND": {"_count": 1}}, "160": {"_count": 1, "IRELAND": {"_count": 1}}}, "IRELAND": {"_count": 4, "0": {"_count": 1, "": {"_count": 1}}, "170": {"_count": 1, "across": {"_count": 1}}, "WINS": {"_count": 2, "": {"_count": 1}, "good": {"_count": 1}}}, "Mascots": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "approval": {"_count": 14, "": {"_count": 6, ".": {"_count": 6}}, "of": {"_count": 3, "the": {"_count": 1}, "this": {"_count": 1}, "Rons": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "others": {"_count": 1}}, "met": {"_count": 1, "these": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "She": {"_count": 1, "smiled": {"_count": 1}}}, "Veelal": {"_count": 1, "What": {"_count": 1, "are": {"_count": 1}}}, "veel": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "veela": {"_count": 35, "were": {"_count": 3, "now": {"_count": 1}, "watching": {"_count": 1}, "shrinking": {"_count": 1}}, "had": {"_count": 3, "started": {"_count": 1}, "stopped": {"_count": 1}, "thrown": {"_count": 1}}, "because": {"_count": 1, "if": {"_count": 1}}, "danced": {"_count": 1, "faster": {"_count": 1}}, "to": {"_count": 2, "go": {"_count": 1}, "get": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 2}}, "and": {"_count": 4, "settled": {"_count": 1}, "was": {"_count": 1}, "the": {"_count": 1}, "their": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "lost": {"_count": 1, "control": {"_count": 1}}, "the": {"_count": 1, "blasts": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "standing": {"_count": 1, "in": {"_count": 1}}, "now": {"_count": 1, "cut": {"_count": 1}}, "appeared": {"_count": 1, "to": {"_count": 1}}, "got": {"_count": 1, "gracefully": {"_count": 1}}, "said": {"_count": 2, "Fleur": {"_count": 1}, "Harry": {"_count": 1}}, "thought": {"_count": 1, "Harry": {"_count": 1}}, "hair": {"_count": 1, "myself": {"_count": 1}}, "when": {"_count": 1, "youre": {"_count": 1}}, "cousins": {"_count": 3, "said": {"_count": 1}, "He": {"_count": 1}, "": {"_count": 1}}}, "Veela": {"_count": 1, "were": {"_count": 1, "women": {"_count": 1}}}, "whitegold": {"_count": 1, "hair": {"_count": 1, "fan": {"_count": 1}}}, "mattered": {"_count": 10, "in": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "Voldemort": {"_count": 1}}, "except": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 1}, "him": {"_count": 1}}, "This": {"_count": 1, "was": {"_count": 1}}}, "danced": {"_count": 9, "faster": {"_count": 1, "and": {"_count": 1}}, "naked": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 2, "them": {"_count": 1}, "her": {"_count": 1}}, "to": {"_count": 1, "this": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "into": {"_count": 2, "life": {"_count": 2}}, "up": {"_count": 1, "and": {"_count": 1}}}, "Jumping": {"_count": 2, "from": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "springboard": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Angry": {"_count": 3, "yells": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "but": {"_count": 1, "wishing": {"_count": 1}}}, "Honestlyl": {"_count": 1, "she": {"_count": 1, "said": {"_count": 1}}}, "greenand": {"_count": 1, "gold": {"_count": 1, "comet": {"_count": 1}}}, "comet": {"_count": 1, "came": {"_count": 1, "zooming": {"_count": 1}}}, "circuit": {"_count": 2, "of": {"_count": 2, "the": {"_count": 2}}}, "comets": {"_count": 1, "each": {"_count": 1, "hurtling": {"_count": 1}}}, "arced": {"_count": 2, "suddenly": {"_count": 1, "across": {"_count": 1}}, "high": {"_count": 1, "over": {"_count": 1}}}, "connecting": {"_count": 6, "the": {"_count": 2, "two": {"_count": 1}, "wands": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "us": {"_count": 1, "was": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}}, "oooohed": {"_count": 1, "and": {"_count": 1, "aahed": {"_count": 1}}}, "aahed": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "reunited": {"_count": 5, "and": {"_count": 2, "merged": {"_count": 1}, "finally": {"_count": 1}}, "with": {"_count": 3, "dear": {"_count": 1}, "Lucius": {"_count": 1}, "her": {"_count": 1}}}, "merged": {"_count": 1, "they": {"_count": 1, "had": {"_count": 1}}}, "soar": {"_count": 8, "over": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "into": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 3}}, "": {"_count": 1, ".": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "rained": {"_count": 5, "from": {"_count": 1, "it": {"_count": 1}}, "upon": {"_count": 2, "him": {"_count": 2}}, "all": {"_count": 1, "around": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}}, "Squinting": {"_count": 5, "up": {"_count": 1, "at": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}, "tensely": {"_count": 1, "through": {"_count": 1}}, "down": {"_count": 1, "struggling": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "comprised": {"_count": 11, "of": {"_count": 6, "thousands": {"_count": 1}, "what": {"_count": 1}, "adults": {"_count": 1}, "animal": {"_count": 1}, "ten": {"_count": 1}, "centuries": {"_count": 1}}, "a": {"_count": 1, "single": {"_count": 1}}, "only": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "small": {"_count": 1}}, "entirely": {"_count": 1, "of": {"_count": 1}}, "five": {"_count": 1, "words": {"_count": 1}}}, "vests": {"_count": 2, "each": {"_count": 1, "carrying": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Leprechauns": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "leprechauns": {"_count": 10, "drifted": {"_count": 1, "down": {"_count": 1}}, "watching": {"_count": 1, "from": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 2}}, "had": {"_count": 1, "risen": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 1, "veela": {"_count": 1}}, "were": {"_count": 1, "zooming": {"_count": 1}}, "kept": {"_count": 1, "shooting": {"_count": 1}}}, "crosslegged": {"_count": 4, "to": {"_count": 1, "watch": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "in": {"_count": 1, "a": {"_count": 1}}}, "Dimitrov": {"_count": 8, "": {"_count": 4, "!": {"_count": 4}}, "shot": {"_count": 1, "straight": {"_count": 1}}, "skins": {"_count": 1, "Moran": {"_count": 1}}, "Moran": {"_count": 1, "Troy": {"_count": 1}}, "The": {"_count": 1, "Irish": {"_count": 1}}}, "scarletclad": {"_count": 1, "figure": {"_count": 1, "on": {"_count": 1}}}, "Ivanova": {"_count": 5, "": {"_count": 1, "!": {"_count": 1}}, "and": {"_count": 1, "dropping": {"_count": 1}}, "managed": {"_count": 1, "to": {"_count": 1}}, "oh": {"_count": 1, "I": {"_count": 1}}, "Moran": {"_count": 1, "again": {"_count": 1}}}, "scarletrobed": {"_count": 3, "player": {"_count": 1, "zoomed": {"_count": 1}}, "man": {"_count": 2, "with": {"_count": 2}}}, "Zograf": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "flew": {"_count": 1, "out": {"_count": 1}}}, "Levski": {"_count": 6, "": {"_count": 3, "!": {"_count": 3}}, "soaring": {"_count": 1, "beneath": {"_count": 1}}, "Dimitrov": {"_count": 1, "Moran": {"_count": 1}}, "had": {"_count": 1, "the": {"_count": 1}}}, "Vulchanov": {"_count": 5, "": {"_count": 1, "!": {"_count": 1}}, "the": {"_count": 1, "Bulgarian": {"_count": 1}}, "landed": {"_count": 1, "on": {"_count": 1}}, "had": {"_count": 1, "better": {"_count": 1}}, "in": {"_count": 1, "particular": {"_count": 1}}}, "Volkov": {"_count": 6, "": {"_count": 1, "!": {"_count": 1}}, "swung": {"_count": 1, "hard": {"_count": 1}}, "and": {"_count": 4, "Vulchanov": {"_count": 4}}}, "aand": {"_count": 2, "Krum": {"_count": 1, "Thats": {"_count": 1}}, "Lynch": {"_count": 1, "": {"_count": 1}}}, "sallowskinned": {"_count": 3, "with": {"_count": 1, "a": {"_count": 1}}, "wizard": {"_count": 1, "with": {"_count": 1}}, "mournfullooking": {"_count": 1, "wizard": {"_count": 1}}}, "greet": {"_count": 11, "the": {"_count": 1, "Irish": {"_count": 1}}, "our": {"_count": 1, "guests": {"_count": 1}}, "him": {"_count": 3, "or": {"_count": 1}, "and": {"_count": 1}, "whom": {"_count": 1}}, "them": {"_count": 3, "": {"_count": 2}, "all": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "said": {"_count": 1}}}, "Presenting": {"_count": 1, "Connolly": {"_count": 1, "": {"_count": 1}}}, "Connolly": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "the": {"_count": 1, "second": {"_count": 1}}}, "Ryan": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "and": {"_count": 1, "score": {"_count": 1}}, "the": {"_count": 1, "Irish": {"_count": 1}}}, "Troy": {"_count": 11, "": {"_count": 3, "!": {"_count": 3}}, "in": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 1, "as": {"_count": 1}}, "did": {"_count": 1, "a": {"_count": 1}}, "Mullet": {"_count": 3, "Moran": {"_count": 2}, "Ivanova": {"_count": 1}}, "takes": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Quigley": {"_count": 1}}}, "Mullet": {"_count": 9, "": {"_count": 3, "!": {"_count": 3}}, "and": {"_count": 1, "Moran": {"_count": 1}}, "Moran": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "shot": {"_count": 1, "toward": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "Ivanova": {"_count": 1, "Moran": {"_count": 1}}}, "Moran": {"_count": 14, "": {"_count": 5, "!": {"_count": 3}, ".": {"_count": 2}}, "bearing": {"_count": 1, "down": {"_count": 1}}, "ducked": {"_count": 1, "to": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "deliberately": {"_count": 1, "flying": {"_count": 1}}, "Troy": {"_count": 1, "Mullet": {"_count": 1}}, "again": {"_count": 1, "Moran": {"_count": 1}}, "MORAN": {"_count": 1, "SCORES": {"_count": 1}}, "and": {"_count": 1, "Connolly": {"_count": 1}}, "but": {"_count": 1, "in": {"_count": 1}}}, "Quigley": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "swung": {"_count": 1, "heavily": {"_count": 1}}, "lifted": {"_count": 1, "the": {"_count": 1}}}, "Lynch": {"_count": 16, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "plummeted": {"_count": 1, "through": {"_count": 1}}, "however": {"_count": 1, "hit": {"_count": 1}}, "dived": {"_count": 1, "again": {"_count": 1}}, "was": {"_count": 3, "flattened": {"_count": 1}, "revived": {"_count": 1}, "being": {"_count": 1}}, "copy": {"_count": 1, "him": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "1": {"_count": 1, "Harry": {"_count": 1}}, "now": {"_count": 1, "as": {"_count": 1}}, "is": {"_count": 1, "": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "acclaimed": {"_count": 1, "Chairwizard": {"_count": 1, "of": {"_count": 1}}}, "Chairwizard": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Association": {"_count": 2, "of": {"_count": 1, "Quidditch": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Hassan": {"_count": 3, "Mostafa": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "didnt": {"_count": 1}}}, "Mostafa": {"_count": 12, "": {"_count": 1, "!": {"_count": 1}}, "mounted": {"_count": 1, "his": {"_count": 1}}, "shot": {"_count": 1, "into": {"_count": 1}}, "blew": {"_count": 1, "his": {"_count": 1}}, "takes": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "landed": {"_count": 1}}, "hard": {"_count": 1, "in": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "is": {"_count": 1, "actually": {"_count": 1}}, "and": {"_count": 1, "began": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "didnt": {"_count": 1, "blow": {"_count": 1}}}, "briefest": {"_count": 1, "moment": {"_count": 1, "before": {"_count": 1}}}, "Theeeeeeeeyre": {"_count": 1, "OFF": {"_count": 1, "": {"_count": 1}}}, "lenses": {"_count": 9, "and": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "flashing": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 3, "his": {"_count": 2}, "Aberforth": {"_count": 1}}, "you": {"_count": 1, "ccant": {"_count": 1}}, "the": {"_count": 1, "eyes": {"_count": 1}}}, "Hawkshead": {"_count": 1, "Attacking": {"_count": 1, "Formation": {"_count": 1}}}, "Attacking": {"_count": 2, "Formation": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Formation": {"_count": 3, "he": {"_count": 1, "read": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}}, "Porskoff": {"_count": 1, "Ploy": {"_count": 1, "flashed": {"_count": 1}}}, "Ploy": {"_count": 1, "flashed": {"_count": 1, "up": {"_count": 1}}}, "Morans": {"_count": 1, "path": {"_count": 1, "Moran": {"_count": 1}}}, "TROY": {"_count": 1, "SCORES": {"_count": 1, "": {"_count": 1}}}, "Levskis": {"_count": 1, "got": {"_count": 1, "the": {"_count": 1}}}, "sidelines": {"_count": 4, "had": {"_count": 1, "all": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}}, "Across": {"_count": 5, "the": {"_count": 5, "field": {"_count": 1}, "lawn": {"_count": 1}, "table": {"_count": 1}, "valley": {"_count": 1}, "bottom": {"_count": 1}}}, "resumed": {"_count": 22, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 4, "mashing": {"_count": 1}, "slow": {"_count": 1}, "patting": {"_count": 1}, "argument": {"_count": 1}}, "his": {"_count": 7, "place": {"_count": 1}, "frantic": {"_count": 1}, "scratching": {"_count": 1}, "seat": {"_count": 2}, "efforts": {"_count": 1}, "examination": {"_count": 1}}, "their": {"_count": 2, "seats": {"_count": 1}, "silent": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 2, "own": {"_count": 1}, "seat": {"_count": 1}}, "Youve": {"_count": 1, "got": {"_count": 1}}, "its": {"_count": 1, "grazing": {"_count": 1}}, "Id": {"_count": 1, "have": {"_count": 1}}, "packing": {"_count": 1, "with": {"_count": 1}}}, "seamless": {"_count": 1, "team": {"_count": 1, "their": {"_count": 1}}}, "coordinated": {"_count": 2, "that": {"_count": 1, "they": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "thirtyzero": {"_count": 1, "and": {"_count": 1, "causing": {"_count": 1}}}, "greenclad": {"_count": 2, "supporters": {"_count": 2, "": {"_count": 1}, "mounted": {"_count": 1}}}, "brutal": {"_count": 14, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "giants": {"_count": 1}}, "nature": {"_count": 1, "": {"_count": 1}}, "murders": {"_count": 1, "of": {"_count": 1}}, "fashion": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "Grawp": {"_count": 1}}, "ending": {"_count": 1, "to": {"_count": 1}}, "giant": {"_count": 1, "of": {"_count": 1}}, "wind": {"_count": 1, "had": {"_count": 1}}, "triple": {"_count": 1, "murder": {"_count": 1}}, "treatment": {"_count": 1, "what": {"_count": 1}}, "spells": {"_count": 1, "without": {"_count": 1}}, "urge": {"_count": 1, "to": {"_count": 1}}, "fluid": {"_count": 1, "movement": {"_count": 1}}}, "scatter": {"_count": 1, "and": {"_count": 1, "then": {"_count": 1}}}, "Bulgarias": {"_count": 1, "first": {"_count": 1, "goal": {"_count": 1}}}, "chanced": {"_count": 5, "a": {"_count": 3, "glance": {"_count": 2}, "bit": {"_count": 1}}, "half": {"_count": 1, "a": {"_count": 1}}, "another": {"_count": 1, "glance": {"_count": 1}}}, "parachutes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Fool": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "feinting": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "and": {"_count": 1, "so": {"_count": 1}}}, "mediwizards": {"_count": 4, "hurry": {"_count": 1, "onto": {"_count": 1}}, "with": {"_count": 1, "cups": {"_count": 1}}, "blasted": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Aidan": {"_count": 3, "Lynch": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "on": {"_count": 1}}}, "ploughed": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "horrorstruck": {"_count": 10, "": {"_count": 5, ".": {"_count": 5}}, "at": {"_count": 3, "Nearly": {"_count": 1}, "the": {"_count": 2}}, "squeak": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "to": {"_count": 1}}}, "Wronski": {"_count": 6, "Defensive": {"_count": 1, "Feint": {"_count": 1}}, "Feint": {"_count": 5, "this": {"_count": 1}, "": {"_count": 2}, "said": {"_count": 1}, "you": {"_count": 1}}}, "Defensive": {"_count": 17, "Feint": {"_count": 1, "dangerous": {"_count": 1}}, "Magical": {"_count": 10, "Theory": {"_count": 10}}, "Theories": {"_count": 1, "and": {"_count": 1}}, "Magic": {"_count": 2, "and": {"_count": 2}}, "Spells": {"_count": 2, "and": {"_count": 2}}, "magic": {"_count": 1, "": {"_count": 1}}}, "Feint": {"_count": 6, "dangerous": {"_count": 1, "Seeker": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "you": {"_count": 1, "really": {"_count": 1}}}, "weightless": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "veil": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "darkness": {"_count": 1}}, "landing": {"_count": 1, "painlessly": {"_count": 1}}}, "focusing": {"_count": 5, "still": {"_count": 1, "more": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "upon": {"_count": 2, "Harry": {"_count": 1}, "Luna": {"_count": 1}}, "instead": {"_count": 1, "on": {"_count": 1}}}, "revival": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "unrivaled": {"_count": 1, "by": {"_count": 1, "anything": {"_count": 1}}}, "dirtier": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Mostafas": {"_count": 1, "long": {"_count": 1, "shrill": {"_count": 1}}}, "cobbing": {"_count": 2, "excessive": {"_count": 1, "use": {"_count": 1}}, "with": {"_count": 1, "Charlie": {"_count": 1}}}, "excessive": {"_count": 2, "use": {"_count": 1, "of": {"_count": 1}}, "singing": {"_count": 1, "and": {"_count": 1}}}, "hornets": {"_count": 1, "when": {"_count": 1, "Mullet": {"_count": 1}}}, "HA": {"_count": 4, "HA": {"_count": 2, "HA": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}}, "mediwizard": {"_count": 1, "came": {"_count": 1, "tearing": {"_count": 1}}}, "gesticulating": {"_count": 2, "toward": {"_count": 1, "the": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}}, "HEE": {"_count": 3, "HEE": {"_count": 2, "HEE": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "blasts": {"_count": 4, "on": {"_count": 1, "his": {"_count": 1}}, "now": {"_count": 1, "issuing": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "bangs": {"_count": 1}}}, "ferocity": {"_count": 3, "beyond": {"_count": 1, "anything": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "elongating": {"_count": 1, "into": {"_count": 1, "sharp": {"_count": 1}}}, "cruelbeaked": {"_count": 1, "bird": {"_count": 1, "heads": {"_count": 1}}}, "tumult": {"_count": 4, "of": {"_count": 1, "the": {"_count": 1}}, "died": {"_count": 1, "down": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "broke": {"_count": 1, "around": {"_count": 1}}}, "MORAN": {"_count": 1, "SCORES": {"_count": 1, "": {"_count": 1}}}, "recommenced": {"_count": 1, "immediately": {"_count": 1, "now": {"_count": 1}}}, "Timeout": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "horde": {"_count": 6, "of": {"_count": 5, "angry": {"_count": 2}, "Ministry": {"_count": 1}, "goblins": {"_count": 1}, "moving": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "scoreboard": {"_count": 1, "was": {"_count": 1, "flashing": {"_count": 1}}}, "160": {"_count": 1, "IRELAND": {"_count": 1, "170": {"_count": 1}}}, "170": {"_count": 1, "across": {"_count": 1, "the": {"_count": 1}}}, "jumbo": {"_count": 1, "jet": {"_count": 1, "were": {"_count": 1}}}, "revving": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "WINS": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "good": {"_count": 1, "lord": {"_count": 1}}}, "KRUM": {"_count": 1, "GETS": {"_count": 1, "THE": {"_count": 1}}}, "GETS": {"_count": 1, "THE": {"_count": 1, "SNITCH": {"_count": 1}}}, "SNITCH": {"_count": 1, "BUT": {"_count": 1, "IRELAND": {"_count": 1}}}, "BUT": {"_count": 5, "IRELAND": {"_count": 1, "WINS": {"_count": 1}}, "WHY": {"_count": 1, "SHOULD": {"_count": 1}}, "DUMBLEDORE": {"_count": 1, "MADE": {"_count": 1}}, "DOES": {"_count": 2, "HE": {"_count": 2}}}, "surlier": {"_count": 3, "than": {"_count": 3, "ever": {"_count": 1}, "usual": {"_count": 1}, "before": {"_count": 1}}}, "dejected": {"_count": 2, "a": {"_count": 1, "short": {"_count": 1}}, "and": {"_count": 1, "hopeless": {"_count": 1}}}, "Flags": {"_count": 1, "were": {"_count": 1, "waving": {"_count": 1}}}, "anthem": {"_count": 2, "blared": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "blared": {"_count": 2, "from": {"_count": 1, "all": {"_count": 1}}, "HARRY": {"_count": 1, "POTTER": {"_count": 1}}}, "dispirited": {"_count": 3, "and": {"_count": 1, "forlorn": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "since": {"_count": 1, "Fred": {"_count": 1}}}, "forlorn": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "without": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 1, "cold": {"_count": 1}}}, "Veil": {"_count": 4, "ve": {"_count": 2, "fought": {"_count": 1}, "have": {"_count": 1}}, "it": {"_count": 1, "vos": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}}, "mime": {"_count": 2, "everything": {"_count": 1, "all": {"_count": 1}}, "a": {"_count": 1, "request": {"_count": 1}}}, "vos": {"_count": 11, "very": {"_count": 1, "funny": {"_count": 1}}, "votching": {"_count": 1, "at": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "attacked": {"_count": 1, "": {"_count": 1}}, "alvays": {"_count": 1, "polite": {"_count": 1}}, "from": {"_count": 1, "Durmstrang": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}, "never": {"_count": 1, "poverful": {"_count": 1}}, "finished": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "pupil": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}}, "performs": {"_count": 1, "a": {"_count": 1, "lap": {"_count": 1}}}, "dazzled": {"_count": 7, "by": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 1}, "gold": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "them": {"_count": 1, "even": {"_count": 1}}, "after": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "windows": {"_count": 1}}}, "gallant": {"_count": 2, "losers": {"_count": 1, "Bulgaria": {"_count": 1}}, "of": {"_count": 1, "you": {"_count": 1}}}, "losers": {"_count": 4, "Bulgaria": {"_count": 1, "": {"_count": 1}}, "Gryffindor": {"_count": 1, "are": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "Omniocular": {"_count": 1, "lenses": {"_count": 1, "flashing": {"_count": 1}}}, "blooming": {"_count": 2, "spectacularly": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "roundshouldered": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "much": {"_count": 1, "less": {"_count": 1}}, "and": {"_count": 1, "duckfooted": {"_count": 1}}}, "Connollys": {"_count": 1, "clutching": {"_count": 1, "hard": {"_count": 1}}}, "Quietus": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "MARK": {"_count": 1, "Dont": {"_count": 1, "tell": {"_count": 1}}}, "implored": {"_count": 2, "Fred": {"_count": 1, "and": {"_count": 1}}, "Lupin": {"_count": 1, "": {"_count": 1}}}, "purplecarpeted": {"_count": 2, "stairs": {"_count": 1, "": {"_count": 1}}, "corridors": {"_count": 1, "were": {"_count": 1}}}, "campsites": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Raucous": {"_count": 1, "singing": {"_count": 1, "was": {"_count": 1}}}, "retraced": {"_count": 2, "their": {"_count": 1, "steps": {"_count": 1}}, "his": {"_count": 1, "steps": {"_count": 1}}}, "lanternlit": {"_count": 2, "path": {"_count": 1, "and": {"_count": 1}}, "ones": {"_count": 1, "each": {"_count": 1}}}, "cocoa": {"_count": 3, "together": {"_count": 1, "before": {"_count": 1}}, "by": {"_count": 1, "accident": {"_count": 1}}, "that": {"_count": 1, "turned": {"_count": 1}}}, "enjoyably": {"_count": 1, "about": {"_count": 1, "the": {"_count": 1}}}, "disagreement": {"_count": 4, "about": {"_count": 1, "cobbing": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "Scrimgeour": {"_count": 1}}}, "verbal": {"_count": 1, "replays": {"_count": 1, "and": {"_count": 1}}}, "replays": {"_count": 1, "and": {"_count": 1, "insisted": {"_count": 1}}}, "bunks": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "beneath": {"_count": 1, "a": {"_count": 1}}}, "leprechaun": {"_count": 7, "lantern": {"_count": 1, "flying": {"_count": 1}}, "formation": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "all": {"_count": 1}}, "gold": {"_count": 4, "": {"_count": 1}, "I": {"_count": 1}, "vanishes": {"_count": 1}, "hed": {"_count": 1}}}, "convey": {"_count": 3, "with": {"_count": 1, "all": {"_count": 1}}, "the": {"_count": 1, "truth": {"_count": 1}}, "by": {"_count": 1, "this": {"_count": 1}}}, "hundredthousandstrong": {"_count": 1, "crowd": {"_count": 1, "roar": {"_count": 1}}}, "PotteA": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fantasies": {"_count": 2, "of": {"_count": 1, "flying": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}}, "fleeing": {"_count": 6, "something": {"_count": 1, "that": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "the": {"_count": 2, "country": {"_count": 1}, "giants": {"_count": 1}}, "as": {"_count": 1, "fast": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}}, "flashes": {"_count": 14, "of": {"_count": 13, "light": {"_count": 5}, "what": {"_count": 2}, "Voldemorts": {"_count": 1}, "more": {"_count": 1}, "insight": {"_count": 1}, "bright": {"_count": 1}, "green": {"_count": 1}, "reflected": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "gunfire": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "drunken": {"_count": 3, "yells": {"_count": 1, "were": {"_count": 1}}, "titter": {"_count": 1, "": {"_count": 1}}, "uncle": {"_count": 1, "of": {"_count": 1}}}, "masked": {"_count": 19, "": {"_count": 2, ".": {"_count": 2}}, "wizards": {"_count": 3, "on": {"_count": 1}, "though": {"_count": 1}, "in": {"_count": 1}}, "lot": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "figures": {"_count": 1, "appearing": {"_count": 1}}, "has": {"_count": 1, "created": {"_count": 1}}, "Harrys": {"_count": 1, "footsteps": {"_count": 1}}, "and": {"_count": 3, "hooded": {"_count": 2}, "unmasked": {"_count": 1}}, "Death": {"_count": 5, "Eaters": {"_count": 1}, "Eater": {"_count": 4}}}, "puppeteers": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "marionettes": {"_count": 1, "operated": {"_count": 1, "by": {"_count": 1}}}, "operated": {"_count": 4, "by": {"_count": 1, "invisible": {"_count": 1}}, "always": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "my": {"_count": 1}}, "alone": {"_count": 1, "might": {"_count": 1}}}, "Tents": {"_count": 1, "crumpled": {"_count": 1, "and": {"_count": 1}}}, "marchers": {"_count": 3, "blast": {"_count": 1, "a": {"_count": 1}}, "below": {"_count": 1, "flipped": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}}, "voluminous": {"_count": 2, "drawers": {"_count": 1, "and": {"_count": 1}}, "traveling": {"_count": 1, "cloak": {"_count": 1}}}, "nightdresses": {"_count": 1, "with": {"_count": 1, "Mr": {"_count": 1}}}, "oncoming": {"_count": 11, "marchers": {"_count": 1, "Mr": {"_count": 1}}, "darkness": {"_count": 1, "forests": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "Demelza": {"_count": 1, "Robins": {"_count": 1}}, "Cadwallader": {"_count": 1, "": {"_count": 1}}, "figures": {"_count": 1, "and": {"_count": 1}}, "wind": {"_count": 1, "Yaxley": {"_count": 1}}, "monsters": {"_count": 1, "which": {"_count": 1}}, "oblivion": {"_count": 1, "the": {"_count": 1}}, "crowd": {"_count": 1, "or": {"_count": 1}}, "horde": {"_count": 1, "": {"_count": 1}}}, "reverberating": {"_count": 5, "around": {"_count": 1, "them": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "from": {"_count": 1, "somewhere": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "hither": {"_count": 3, "and": {"_count": 3, "thither": {"_count": 3}}}, "thither": {"_count": 3, "by": {"_count": 1, "people": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "peering": {"_count": 1, "over": {"_count": 1}}}, "lumos": {"_count": 1, "She": {"_count": 1, "illuminated": {"_count": 1}}}, "Tripped": {"_count": 1, "over": {"_count": 1, "a": {"_count": 1}}}, "Language": {"_count": 1, "Weasley": {"_count": 1, "said": {"_count": 1}}}, "knickers": {"_count": 1, "in": {"_count": 1, "midair": {"_count": 1}}}, "offensive": {"_count": 7, "term": {"_count": 1, "for": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "tone": {"_count": 1, "Now": {"_count": 1}}, "word": {"_count": 1, "in": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}}, "Scare": {"_count": 1, "easily": {"_count": 1, "dont": {"_count": 1}}}, "daddy": {"_count": 1, "told": {"_count": 1, "you": {"_count": 1}}}, "Wherere": {"_count": 2, "your": {"_count": 1, "parents": {"_count": 1}}, "we": {"_count": 1, "goin": {"_count": 1}}}, "vociferously": {"_count": 1, "a": {"_count": 1, "little": {"_count": 1}}}, "Ou": {"_count": 1, "est": {"_count": 1, "Madame": {"_count": 1}}}, "est": {"_count": 1, "Madame": {"_count": 1, "Maxime": {"_count": 1}}}, "Madame": {"_count": 108, "Maxime": {"_count": 96, "": {"_count": 14}, "he": {"_count": 1}, "in": {"_count": 1}, "waving": {"_count": 1}, "now": {"_count": 1}, "s": {"_count": 2}, "asked": {"_count": 1}, "looking": {"_count": 1}, "bowing": {"_count": 1}, "imperiously": {"_count": 1}, "had": {"_count": 5}, "on": {"_count": 1}, "entered": {"_count": 1}, "led": {"_count": 1}, "and": {"_count": 5}, "with": {"_count": 1}, "the": {"_count": 1}, "looked": {"_count": 2}, "Professor": {"_count": 1}, "whose": {"_count": 1}, "shrugging": {"_count": 1}, "as": {"_count": 1}, "said": {"_count": 1}, "throwing": {"_count": 1}, "if": {"_count": 1}, "did": {"_count": 1}, "a": {"_count": 2}, "Mr": {"_count": 1}, "cast": {"_count": 1}, "talking": {"_count": 1}, "opened": {"_count": 1}, "closed": {"_count": 1}, "was": {"_count": 7}, "fluttering": {"_count": 1}, "around": {"_count": 1}, "excitedly": {"_count": 1}, "to": {"_count": 3}, "heading": {"_count": 1}, "would": {"_count": 1}, "raise": {"_count": 1}, "who": {"_count": 2}, "return": {"_count": 1}, "didnt": {"_count": 2}, "her": {"_count": 2}, "sitting": {"_count": 1}, "at": {"_count": 1}, "but": {"_count": 1}, "emerged": {"_count": 1}, "returned": {"_count": 1}, "watching": {"_count": 1}, "because": {"_count": 1}, "Harry": {"_count": 1}, "than": {"_count": 1}, "anywhere": {"_count": 1}, "attacked": {"_count": 1}, "o": {"_count": 1}, "ter": {"_count": 1}, "about": {"_count": 1}, "went": {"_count": 1}, "got": {"_count": 1}, "want": {"_count": 1}}, "Maximes": {"_count": 3, "huge": {"_count": 1}, "staying": {"_count": 1}, "horses": {"_count": 1}}, "Malkins": {"_count": 1, "Robes": {"_count": 1}}, "Delacour": {"_count": 7, "you": {"_count": 1}, "glided": {"_count": 1}, "was": {"_count": 1}, "Fleur": {"_count": 1}, "while": {"_count": 1}, "were": {"_count": 1}, "onto": {"_count": 1}}, "Delacours": {"_count": 1, "protests": {"_count": 1}}}, "Maxime": {"_count": 100, "": {"_count": 14, "?": {"_count": 2}, ".": {"_count": 11}, "!": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "waving": {"_count": 1, "one": {"_count": 1}}, "now": {"_count": 1, "noticed": {"_count": 1}}, "s": {"_count": 2, "enormous": {"_count": 1}, "giant": {"_count": 1}}, "asked": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "as": {"_count": 1}}, "bowing": {"_count": 1, "slightly": {"_count": 1}}, "imperiously": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 5, "sat": {"_count": 1}, "drawn": {"_count": 1}, "already": {"_count": 1}, "told": {"_count": 1}, "suddenly": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "led": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 7, "the": {"_count": 1}, "Karkaroff": {"_count": 2}, "Hagrid": {"_count": 3}, "was": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "Beauxbatons": {"_count": 1}}, "looked": {"_count": 2, "as": {"_count": 1}, "stern": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "whose": {"_count": 1, "enormous": {"_count": 1}}, "shrugging": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "said": {"_count": 1, "Karkaroff": {"_count": 1}}, "throwing": {"_count": 1, "up": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "a": {"_count": 2, "nightcap": {"_count": 1}, "purr": {"_count": 1}}, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "cast": {"_count": 1, "everyone": {"_count": 1}}, "talking": {"_count": 1, "inside": {"_count": 1}}, "opened": {"_count": 1, "it": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 7, "in": {"_count": 1}, "strolling": {"_count": 1}, "listening": {"_count": 1}, "trying": {"_count": 1}, "concentrating": {"_count": 1}, "still": {"_count": 1}, "with": {"_count": 1}}, "fluttering": {"_count": 1, "her": {"_count": 1}}, "around": {"_count": 1, "a": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 3, "occupy": {"_count": 1}, "meet": {"_count": 1}, "back": {"_count": 1}}, "heading": {"_count": 1, "off": {"_count": 1}}, "would": {"_count": 1, "know": {"_count": 1}}, "wont": {"_count": 1, "be": {"_count": 1}}, "raise": {"_count": 1, "her": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 1}, "took": {"_count": 1}}, "return": {"_count": 1, "it": {"_count": 1}}, "didnt": {"_count": 2, "say": {"_count": 1}, "look": {"_count": 1}}, "her": {"_count": 2, "tone": {"_count": 1}, "silvery": {"_count": 1}}, "thinks": {"_count": 1, "shes": {"_count": 1}}, "sitting": {"_count": 1, "alone": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "Hagrid": {"_count": 1}}, "emerged": {"_count": 1, "from": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "watching": {"_count": 1, "them": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "than": {"_count": 1, "Hagrid": {"_count": 1}}, "anywhere": {"_count": 1, "though": {"_count": 1}}, "attacked": {"_count": 1, "Crouch": {"_count": 1}}, "o": {"_count": 1, "course": {"_count": 1}}, "ter": {"_count": 1, "you": {"_count": 1}}, "about": {"_count": 1, "his": {"_count": 1}}, "went": {"_count": 1, "with": {"_count": 1}}, "got": {"_count": 1, "back": {"_count": 1}}, "want": {"_count": 1, "to": {"_count": 1}}}, "Nous": {"_count": 1, "Vavons": {"_count": 1, "perdue": {"_count": 1}}}, "Vavons": {"_count": 1, "perdue": {"_count": 1, "Er": {"_count": 1}}}, "perdue": {"_count": 1, "Er": {"_count": 1, "what": {"_count": 1}}}, "Ogwarts": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "cannot": {"_count": 1, "ave": {"_count": 1}}, "two": {"_count": 1, "bites": {"_count": 1}}, "food": {"_count": 1, "they": {"_count": 1}}, "stop": {"_count": 1, "after": {"_count": 1}}}, "Beauxbatons": {"_count": 55, "muttered": {"_count": 1, "Hermione": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Dumbledore": {"_count": 1}, "Fleur": {"_count": 1}}, "Academy": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "like": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 9, "Durmstrang": {"_count": 9}}, "approaches": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "chosen": {"_count": 1}}, "lot": {"_count": 1, "said": {"_count": 1}}, "leapt": {"_count": 1, "to": {"_count": 1}}, "party": {"_count": 2, "appeared": {"_count": 1}, "": {"_count": 1}}, "girls": {"_count": 1, "still": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "were": {"_count": 1, "coming": {"_count": 1}}, "students": {"_count": 6, "stepped": {"_count": 1}, "had": {"_count": 2}, "following": {"_count": 1}, "on": {"_count": 1}, "to": {"_count": 1}}, "sleeping": {"_count": 1, "quarters": {"_count": 1}}, "carriage": {"_count": 12, "was": {"_count": 2}, "": {"_count": 5}, "looked": {"_count": 1}, "and": {"_count": 3}, "emerged": {"_count": 1}}, "caravan": {"_count": 1, "was": {"_count": 1}}, "we": {"_count": 1, "ave": {"_count": 1}}, "e": {"_count": 1, "would": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "boy": {"_count": 1, "who": {"_count": 1}}, "boys": {"_count": 1, "and": {"_count": 1}}, "horses": {"_count": 3, "were": {"_count": 2}, "paddock": {"_count": 1}}, "in": {"_count": 1, "Hogsmeade": {"_count": 1}}}, "Academy": {"_count": 2, "of": {"_count": 1, "Magic": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Appraisal": {"_count": 3, "of": {"_count": 3, "Magical": {"_count": 3}}}, "Education": {"_count": 3, "in": {"_count": 3, "Europe": {"_count": 3}}}, "Europe": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "puts": {"_count": 1}}, "is": {"_count": 1, "where": {"_count": 1}}}, "kidding": {"_count": 18, "": {"_count": 10, "!": {"_count": 5}, "?": {"_count": 5}}, "said": {"_count": 2, "Ron": {"_count": 2}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "Ron": {"_count": 1, "whispered": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}, "themselves": {"_count": 2, "": {"_count": 2}}, "muttered": {"_count": 1, "Ron": {"_count": 1}}}, "beams": {"_count": 9, "of": {"_count": 3, "light": {"_count": 2}, "sunlight": {"_count": 1}}, "arced": {"_count": 1, "high": {"_count": 1}}, "movement": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "Skeeter": {"_count": 1, "rapping": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "vulnerable": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "when": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "naked": {"_count": 1}}}, "labored": {"_count": 1, "to": {"_count": 1, "keep": {"_count": 1}}}, "restraining": {"_count": 7, "her": {"_count": 1, "": {"_count": 1}}, "herself": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 1, "difficulty": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 1, "irritation": {"_count": 1}}, "belt": {"_count": 1, "and": {"_count": 1}}, "arm": {"_count": 1, "": {"_count": 1}}}, "slavery": {"_count": 1, "thats": {"_count": 1, "what": {"_count": 1}}}, "trampling": {"_count": 4, "tents": {"_count": 1, "": {"_count": 1}}, "Winky": {"_count": 1, "as": {"_count": 1}}, "around": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 1, "hooves": {"_count": 1}}}, "elves": {"_count": 27, "are": {"_count": 2, "happy": {"_count": 1}, "not": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 2}}, "were": {"_count": 1, "standing": {"_count": 1}}, "all": {"_count": 1, "looked": {"_count": 1}}, "pressed": {"_count": 1, "in": {"_count": 1}}, "kept": {"_count": 1, "bowing": {"_count": 1}}, "who": {"_count": 3, "had": {"_count": 2}, "fell": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "will": {"_count": 1, "see": {"_count": 1}}, "and": {"_count": 3, "they": {"_count": 1}, "if": {"_count": 1}, "Firenze": {"_count": 1}}, "came": {"_count": 1, "hurrying": {"_count": 1}}, "might": {"_count": 1, "accidentally": {"_count": 1}}, "had": {"_count": 1, "now": {"_count": 1}}, "I": {"_count": 1, "havent": {"_count": 1}}, "to": {"_count": 2, "enrage": {"_count": 1}, "be": {"_count": 1}}, "apart": {"_count": 1, "though": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}}, "\u2018House": {"_count": 1, "elves": {"_count": 1, "is": {"_count": 1}}}, "bossed": {"_count": 1, "around": {"_count": 1, "": {"_count": 1}}}, "prop": {"_count": 1, "up": {"_count": 1, "rotten": {"_count": 1}}}, "unjust": {"_count": 1, "systems": {"_count": 1, "just": {"_count": 1}}}, "systems": {"_count": 1, "just": {"_count": 1, "because": {"_count": 1}}}, "edgily": {"_count": 2, "at": {"_count": 1, "Hermione": {"_count": 1}}, "Oh": {"_count": 1, "its": {"_count": 1}}}, "unperturbed": {"_count": 3, "by": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "Farther": {"_count": 1, "still": {"_count": 1, "along": {"_count": 1}}}, "dishwasher": {"_count": 2, "at": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 1, "out": {"_count": 1}}}, "hunter": {"_count": 1, "Ive": {"_count": 1, "killed": {"_count": 1}}}, "slack": {"_count": 9, "and": {"_count": 1, "next": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "his": {"_count": 1, "gaze": {"_count": 1}}, "mouth": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "grip": {"_count": 1, "and": {"_count": 1}}, "face": {"_count": 1, "seemed": {"_count": 1}}}, "quieter": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "perhaps": {"_count": 1, "the": {"_count": 1}}, "than": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 1, "answer": {"_count": 1}}, "and": {"_count": 1, "quieter": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "atmosphere": {"_count": 1, "tonight": {"_count": 1}}}, "rosyfaced": {"_count": 1, "there": {"_count": 1, "was": {"_count": 1}}}, "riot": {"_count": 5, "going": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 1, "over": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}, "of": {"_count": 1, "color": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}}, "splayed": {"_count": 3, "feet": {"_count": 1, "than": {"_count": 1}}, "on": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 1, "slit": {"_count": 1}}}, "Magics": {"_count": 4, "out": {"_count": 1, "here": {"_count": 1}}, "troubles": {"_count": 1, "are": {"_count": 1}}, "in": {"_count": 1, "disarray": {"_count": 1}}, "still": {"_count": 1, "after": {"_count": 1}}}, "MORSMORDREl": {"_count": 1, "And": {"_count": 1, "something": {"_count": 1}}}, "colossal": {"_count": 2, "skull": {"_count": 1, "comprised": {"_count": 1}}, "explosion": {"_count": 1, "": {"_count": 1}}}, "etched": {"_count": 18, "against": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 5, "his": {"_count": 1}, "every": {"_count": 2}, "the": {"_count": 1}, "Mrs": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "onto": {"_count": 1, "them": {"_count": 1}}, "across": {"_count": 1, "her": {"_count": 1}}, "with": {"_count": 1, "odd": {"_count": 1}}, "just": {"_count": 1, "below": {"_count": 1}}, "into": {"_count": 1, "it": {"_count": 1}}, "upon": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}}, "constellation": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Orion": {"_count": 1, "on": {"_count": 1}}}, "illuminate": {"_count": 6, "the": {"_count": 3, "entire": {"_count": 1}, "writing": {"_count": 1}, "darkness": {"_count": 1}}, "a": {"_count": 1, "silver": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "Aragogs": {"_count": 1, "body": {"_count": 1}}}, "neon": {"_count": 2, "sign": {"_count": 1, "": {"_count": 1}}, "lines": {"_count": 1, "as": {"_count": 1}}}, "registered": {"_count": 13, "one": {"_count": 1, "fact": {"_count": 1}}, "dimly": {"_count": 1, "how": {"_count": 1}}, "would": {"_count": 1, "you": {"_count": 1}}, "what": {"_count": 2, "Malfoy": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "Ron": {"_count": 1}}, "the": {"_count": 3, "small": {"_count": 1}, "golden": {"_count": 1}, "renewed": {"_count": 1}}, "that": {"_count": 1, "Luna": {"_count": 1}}}, "DUCK": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "STUPEFYl": {"_count": 1, "roared": {"_count": 1, "twenty": {"_count": 1}}}, "ripple": {"_count": 6, "as": {"_count": 1, "though": {"_count": 1}}, "of": {"_count": 3, "anger": {"_count": 1}, "laughter": {"_count": 1}, "muttering": {"_count": 1}}, "crossed": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "Raising": {"_count": 2, "his": {"_count": 1, "head": {"_count": 1}}, "an": {"_count": 1, "arm": {"_count": 1}}}, "fiery": {"_count": 22, "red": {"_count": 2, "light": {"_count": 1}, "eyes": {"_count": 1}}, "rockets": {"_count": 1, "bursting": {"_count": 1}}, "sparks": {"_count": 2, "at": {"_count": 1}, "as": {"_count": 1}}, "sun": {"_count": 1, "all": {"_count": 1}}, "bright": {"_count": 1, "above": {"_count": 1}}, "substance": {"_count": 1, "through": {"_count": 1}}, "blasts": {"_count": 1, "and": {"_count": 1}}, "X": {"_count": 1, "appeared": {"_count": 1}}, "cross": {"_count": 3, "still": {"_count": 1}, "upon": {"_count": 1}, "as": {"_count": 1}}, "crosses": {"_count": 1, "had": {"_count": 1}}, "rope": {"_count": 1, "became": {"_count": 1}}, "snake": {"_count": 1, "": {"_count": 1}}, "window": {"_count": 1, "the": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}, "glow": {"_count": 1, "at": {"_count": 1}}, "gold": {"_count": 1, "and": {"_count": 1}}, "beasts": {"_count": 1, "Flaming": {"_count": 1}}, "monsters": {"_count": 1, "were": {"_count": 1}}}, "rebounding": {"_count": 3, "into": {"_count": 1, "the": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "curse": {"_count": 1, "and": {"_count": 1}}}, "curt": {"_count": 6, "voice": {"_count": 3, "": {"_count": 2}, "to": {"_count": 1}}, "nod": {"_count": 3, "that": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}}, "Crouchs": {"_count": 34, "face": {"_count": 2, "was": {"_count": 1}, "as": {"_count": 1}}, "houseelf": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 2, "": {"_count": 2}}, "elf": {"_count": 2, "holding": {"_count": 1}, "": {"_count": 1}}, "position": {"_count": 1, "cant": {"_count": 1}}, "personal": {"_count": 3, "assistant": {"_count": 3}}, "fury": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "principles": {"_count": 1, "mightve": {"_count": 1}}, "own": {"_count": 1, "son": {"_count": 1}}, "son": {"_count": 6, "was": {"_count": 1}, "being": {"_count": 1}, "": {"_count": 1}, "might": {"_count": 1}, "and": {"_count": 1}, "opened": {"_count": 1}}, "fatherly": {"_count": 1, "affection": {"_count": 1}}, "eyes": {"_count": 4, "had": {"_count": 1}, "were": {"_count": 2}, "rolled": {"_count": 1}}, "grip": {"_count": 1, "on": {"_count": 1}}, "voice": {"_count": 2, "anymore": {"_count": 1}, "faded": {"_count": 1}}, "hair": {"_count": 1, "was": {"_count": 1}}, "disappearance": {"_count": 1, "quiet": {"_count": 1}}, "head": {"_count": 1, "rolled": {"_count": 1}}, "confession": {"_count": 1, "and": {"_count": 1}}}, "taut": {"_count": 6, "with": {"_count": 1, "rage": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "leer": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 2, "lined": {"_count": 1}, "his": {"_count": 1}}, "scar": {"_count": 1, "": {"_count": 1}}}, "missy": {"_count": 2, "But": {"_count": 1, "none": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Stunners": {"_count": 4, "went": {"_count": 1, "right": {"_count": 1}}, "had": {"_count": 1, "shot": {"_count": 1}}, "straight": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "Disarming": {"_count": 1}}}, "squared": {"_count": 4, "his": {"_count": 3, "shoulders": {"_count": 2}, "small": {"_count": 1}}, "her": {"_count": 1, "shoulders": {"_count": 1}}}, "Unconscious": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "reemerged": {"_count": 1, "from": {"_count": 1, "behind": {"_count": 1}}}, "deposited": {"_count": 10, "his": {"_count": 2, "elf": {"_count": 1}, "half": {"_count": 1}}, "a": {"_count": 1, "parcel": {"_count": 1}}, "their": {"_count": 1, "bags": {"_count": 1}}, "Harrys": {"_count": 1, "money": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "silvery": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "Hagrid": {"_count": 1, "in": {"_count": 1}}, "cage": {"_count": 1, "broomstick": {"_count": 1}}}, "Winkys": {"_count": 11, "unconscious": {"_count": 1, "form": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "lip": {"_count": 1, "quivered": {"_count": 1}}, "sobs": {"_count": 1, "": {"_count": 1}}, "screeches": {"_count": 1, "": {"_count": 1}}, "continued": {"_count": 2, "screaming": {"_count": 1}, "sobs": {"_count": 1}}, "eyes": {"_count": 1, "flickered": {"_count": 1}}, "eyelids": {"_count": 1, "drooped": {"_count": 1}}, "petrified": {"_count": 1, "brown": {"_count": 1}}}, "Marks": {"_count": 4, "a": {"_count": 1, "wizards": {"_count": 1}}, "appearance": {"_count": 1, "and": {"_count": 1}}, "greenish": {"_count": 1, "light": {"_count": 1}}, "and": {"_count": 1, "summoned": {"_count": 1}}}, "clause": {"_count": 2, "three": {"_count": 1, "of": {"_count": 1}}, "seven": {"_count": 1, "thank": {"_count": 1}}}, "nonhuman": {"_count": 1, "creature": {"_count": 1, "is": {"_count": 1}}}, "disorientated": {"_count": 3, "he": {"_count": 1, "spun": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "inquiringly": {"_count": 7, "to": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 4, "Professor": {"_count": 1}, "the": {"_count": 1}, "one": {"_count": 1}, "Harry": {"_count": 1}}, "still": {"_count": 1, "smiling": {"_count": 1}}, "toward": {"_count": 1, "her": {"_count": 1}}}, "emptyhanded": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Stunned": {"_count": 30, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 4}}, "he": {"_count": 1, "said": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "Krum": {"_count": 2, "to": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 2, "reawoken": {"_count": 1}, "frightened": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}, "spider": {"_count": 1, "away": {"_count": 1}}, "Fleur": {"_count": 1, "Delacour": {"_count": 1}}, "controlled": {"_count": 1, "by": {"_count": 1}}, "Winky": {"_count": 1, "said": {"_count": 1}}, "young": {"_count": 1, "Crouch": {"_count": 1}}, "the": {"_count": 3, "fireworks": {"_count": 1}, "other": {"_count": 1}, "Death": {"_count": 1}}, "Minerva": {"_count": 1, "McGonagall": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 1, "Hermione": {"_count": 1}}, "Mafalda": {"_count": 1, "": {"_count": 1}}, "Dawlish": {"_count": 1, "and": {"_count": 1}}, "anyone": {"_count": 1, "except": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "Goyle": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "followed": {"_count": 1}}}, "Comprehension": {"_count": 2, "dawned": {"_count": 2, "suddenly": {"_count": 1}, "on": {"_count": 1}}}, "Conjure": {"_count": 1, "the": {"_count": 1, "Dark": {"_count": 1}}}, "assent": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "throughout": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "everybody": {"_count": 1}}}, "Rennervatel": {"_count": 2, "Winky": {"_count": 1, "stirred": {"_count": 1}}, "he": {"_count": 1, "cried": {"_count": 1}}}, "Watched": {"_count": 3, "by": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "map": {"_count": 1}, "Ministry": {"_count": 1}}}, "Elf": {"_count": 4, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "enslavement": {"_count": 1, "goes": {"_count": 1}}, "magic": {"_count": 1, "isnt": {"_count": 1}}}, "forcibly": {"_count": 7, "of": {"_count": 4, "Dobby": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}, "another": {"_count": 1}}, "taken": {"_count": 1, "": {"_count": 1}}, "restrained": {"_count": 1, "by": {"_count": 1}}, "ejecting": {"_count": 1, "a": {"_count": 1}}}, "disobedience": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "hardening": {"_count": 2, "as": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}}, "appealing": {"_count": 6, "for": {"_count": 1, "their": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "directly": {"_count": 1, "to": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}}, "discovering": {"_count": 6, "the": {"_count": 2, "last": {"_count": 1}, "truth": {"_count": 1}}, "his": {"_count": 2, "godfather": {"_count": 1}, "true": {"_count": 1}}, "what": {"_count": 1, "Malfoy": {"_count": 1}}, "where": {"_count": 1, "it": {"_count": 1}}}, "Prior": {"_count": 1, "Incantatol": {"_count": 1, "roared": {"_count": 1}}}, "Incantatol": {"_count": 1, "roared": {"_count": 1, "Mr": {"_count": 1}}}, "serpenttongued": {"_count": 1, "skull": {"_count": 1, "erupted": {"_count": 1}}}, "Deletrius": {"_count": 1, "Mr": {"_count": 1, "Diggory": {"_count": 1}}}, "redhanded": {"_count": 2, "elf": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "routinely": {"_count": 1, "teach": {"_count": 1, "my": {"_count": 1}}}, "discomforted": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "proofs": {"_count": 2, "I": {"_count": 1, "have": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "despise": {"_count": 4, "and": {"_count": 1, "detest": {"_count": 1}}, "me": {"_count": 1, "more": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "Then": {"_count": 1}}}, "accuse": {"_count": 4, "my": {"_count": 1, "elf": {"_count": 1}}, "me": {"_count": 1, "Diggory": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "dangerous": {"_count": 1, "thing": {"_count": 1}}}, "fraying": {"_count": 1, "beneath": {"_count": 1, "her": {"_count": 1}}}, "misfortune": {"_count": 4, "to": {"_count": 2, "come": {"_count": 1}, "meet": {"_count": 1}}, "he": {"_count": 1, "hadnt": {"_count": 1}}, "on": {"_count": 1, "people": {"_count": 1}}}, "Mmmaster": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "ppplease": {"_count": 1, "": {"_count": 1}}}, "brimming": {"_count": 5, "with": {"_count": 5, "tears": {"_count": 4}, "confidence": {"_count": 1}}}, "ppplease": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sharpened": {"_count": 2, "each": {"_count": 1, "line": {"_count": 1}}, "palpably": {"_count": 1, "Some": {"_count": 1}}}, "disobeyed": {"_count": 1, "me": {"_count": 1, "": {"_count": 1}}}, "prostrating": {"_count": 1, "herself": {"_count": 1, "at": {"_count": 1}}}, "garments": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}}, "freeing": {"_count": 2, "himself": {"_count": 1, "from": {"_count": 1}}, "her": {"_count": 1, "arms": {"_count": 1}}}, "contaminating": {"_count": 1, "his": {"_count": 1, "overshined": {"_count": 1}}}, "overshined": {"_count": 1, "shoes": {"_count": 1, "": {"_count": 1}}}, "disobeys": {"_count": 1, "me": {"_count": 1, "he": {"_count": 1}}}, "\u2018elf": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "rights": {"_count": 12, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 2}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "and": {"_count": 1, "their": {"_count": 1}}, "to": {"_count": 1, "eat": {"_count": 1}}, "gained": {"_count": 1, "him": {"_count": 1}}, "bless": {"_count": 1, "him": {"_count": 1}}, "seem": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 1, "fought": {"_count": 1}}}, "impeded": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}}, "congregated": {"_count": 3, "there": {"_count": 2, "and": {"_count": 1}, "all": {"_count": 1}}, "his": {"_count": 1, "muttering": {"_count": 1}}}, "profusely": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "that": {"_count": 1}}, "looked": {"_count": 1, "desperately": {"_count": 1}}}, "unhurt": {"_count": 3, "though": {"_count": 1, "shaken": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "expressly": {"_count": 2, "told": {"_count": 1, "her": {"_count": 1}}, "forbidding": {"_count": 1, "them": {"_count": 1}}}, "amok": {"_count": 3, "with": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "until": {"_count": 1, "the": {"_count": 1}}}, "Eaters": {"_count": 361, "away": {"_count": 3, "the": {"_count": 1}, "from": {"_count": 1}, "perhaps": {"_count": 1}}, "": {"_count": 50, "?": {"_count": 9}, ".": {"_count": 39}, "!": {"_count": 2}}, "why": {"_count": 1, "did": {"_count": 1}}, "they": {"_count": 1, "worked": {"_count": 1}}, "or": {"_count": 2, "to": {"_count": 1}, "Ministry": {"_count": 1}}, "who": {"_count": 11, "ever": {"_count": 1}, "went": {"_count": 1}, "despite": {"_count": 1}, "escaped": {"_count": 1}, "had": {"_count": 3}, "either": {"_count": 1}, "teach": {"_count": 1}, "marched": {"_count": 1}, "broke": {"_count": 1}}, "are": {"_count": 4, "on": {"_count": 2}, "dont": {"_count": 1}, "concentrating": {"_count": 1}}, "seem": {"_count": 2, "to": {"_count": 2}}, "and": {"_count": 14, "everything": {"_count": 1}, "they": {"_count": 2}, "Harry": {"_count": 1}, "hysterical": {"_count": 1}, "a": {"_count": 1}, "indeed": {"_count": 1}, "next": {"_count": 1}, "Greyback": {"_count": 1}, "dementors": {"_count": 1}, "Hogwartians": {"_count": 1}, "ahead": {"_count": 1}, "their": {"_count": 1}, "the": {"_count": 1}}, "whod": {"_count": 2, "managed": {"_count": 1}, "escaped": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "we": {"_count": 1}}, "said": {"_count": 6, "Mr": {"_count": 1}, "Voldemort": {"_count": 1}, "Sirius": {"_count": 1}, "Fudge": {"_count": 1}, "Harry": {"_count": 1}, "Ron": {"_count": 1}}, "fell": {"_count": 2, "to": {"_count": 1}, "back": {"_count": 1}}, "behind": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 2, "passed": {"_count": 1}, "saw": {"_count": 1}}, "stirred": {"_count": 1, "and": {"_count": 1}}, "would": {"_count": 3, "try": {"_count": 1}, "not": {"_count": 1}, "love": {"_count": 1}}, "were": {"_count": 23, "quite": {"_count": 1}, "laughing": {"_count": 2}, "not": {"_count": 1}, "shouting": {"_count": 1}, "now": {"_count": 1}, "staring": {"_count": 1}, "surging": {"_count": 1}, "completely": {"_count": 1}, "able": {"_count": 1}, "looking": {"_count": 1}, "betting": {"_count": 1}, "keeping": {"_count": 1}, "ready": {"_count": 1}, "closing": {"_count": 1}, "waiting": {"_count": 1}, "forcing": {"_count": 1}, "in": {"_count": 1}, "becoming": {"_count": 1}, "hurrying": {"_count": 1}, "drowned": {"_count": 1}, "folding": {"_count": 1}, "fleeing": {"_count": 1}}, "cared": {"_count": 1, "what": {"_count": 1}}, "laughter": {"_count": 2, "": {"_count": 2}}, "stood": {"_count": 2, "watching": {"_count": 1}, "there": {"_count": 1}}, "closed": {"_count": 1, "ranks": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "outnumbered": {"_count": 1, "by": {"_count": 1}}, "laughed": {"_count": 6, "harder": {"_count": 1}, "": {"_count": 4}, "though": {"_count": 1}}, "circled": {"_count": 1, "like": {"_count": 1}}, "paround": {"_count": 1, "the": {"_count": 1}}, "flitted": {"_count": 1, "around": {"_count": 1}}, "aside": {"_count": 1, "as": {"_count": 1}}, "running": {"_count": 2, "at": {"_count": 1}, "across": {"_count": 1}}, "came": {"_count": 3, "": {"_count": 1}, "running": {"_count": 1}, "to": {"_count": 1}}, "what": {"_count": 1, "loyalty": {"_count": 1}}, "Apparating": {"_count": 1, "between": {"_count": 1}}, "thirteen": {"_count": 1, "years": {"_count": 1}}, "to": {"_count": 7, "be": {"_count": 1}, "kill": {"_count": 1}, "fight": {"_count": 2}, "steal": {"_count": 1}, "get": {"_count": 2}}, "perhaps": {"_count": 1, "": {"_count": 1}}, "keeping": {"_count": 1, "tabs": {"_count": 1}}, "was": {"_count": 2, "supposed": {"_count": 1}, "heading": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}, "if": {"_count": 3, "theyre": {"_count": 1}, "it": {"_count": 1}, "youve": {"_count": 1}}, "its": {"_count": 1, "bound": {"_count": 1}}, "as": {"_count": 2, "well": {"_count": 1}, "they": {"_count": 1}}, "hood": {"_count": 1, "and": {"_count": 1}}, "like": {"_count": 1, "Malfoy": {"_count": 1}}, "found": {"_count": 2, "himself": {"_count": 1}, "us": {"_count": 1}}, "again": {"_count": 1, "itll": {"_count": 1}}, "Well": {"_count": 1, "said": {"_count": 1}}, "scars": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 14, "swollen": {"_count": 1}, "managed": {"_count": 1}, "given": {"_count": 1}, "closed": {"_count": 1}, "come": {"_count": 1}, "not": {"_count": 1}, "won": {"_count": 1}, "got": {"_count": 1}, "broken": {"_count": 1}, "found": {"_count": 2}, "cast": {"_count": 1}, "penetrated": {"_count": 1}, "been": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "whose": {"_count": 2, "story": {"_count": 1}, "heads": {"_count": 1}}, "spoken": {"_count": 1, "with": {"_count": 1}}, "escape": {"_count": 1, "they": {"_count": 1}}, "there": {"_count": 1, "as": {"_count": 1}}, "Still": {"_count": 1, "Among": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "a": {"_count": 1}, "there": {"_count": 1}}, "call": {"_count": 1, "him": {"_count": 1}}, "did": {"_count": 3, "not": {"_count": 3}}, "wanted": {"_count": 1, "this": {"_count": 1}}, "beside": {"_count": 1, "her": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "robes": {"_count": 2, "drawing": {"_count": 1}, "looked": {"_count": 1}}, "bend": {"_count": 1, "": {"_count": 1}}, "wands": {"_count": 3, "flew": {"_count": 1}, "and": {"_count": 1}, "they": {"_count": 1}}, "shoulder": {"_count": 1, "and": {"_count": 1}}, "head": {"_count": 1, "in": {"_count": 1}}, "come": {"_count": 1, "Ill": {"_count": 1}}, "sped": {"_count": 1, "into": {"_count": 1}}, "turned": {"_count": 1, "in": {"_count": 1}}, "shot": {"_count": 1, "their": {"_count": 1}}, "two": {"_count": 1, "of": {"_count": 1}}, "themselves": {"_count": 1, "had": {"_count": 1}}, "within": {"_count": 1, "his": {"_count": 1}}, "all": {"_count": 1, "halted": {"_count": 1}}, "seized": {"_count": 1, "Neville": {"_count": 1}}, "mask": {"_count": 1, "": {"_count": 1}}, "nearest": {"_count": 1, "realized": {"_count": 1}}, "ran": {"_count": 2, "for": {"_count": 1}, "toward": {"_count": 1}}, "grouped": {"_count": 1, "in": {"_count": 1}}, "have": {"_count": 6, "let": {"_count": 1}, "found": {"_count": 1}, "got": {"_count": 1}, "taken": {"_count": 1}, "your": {"_count": 1}, "been": {"_count": 1}}, "contained": {"_count": 1, "in": {"_count": 1}}, "gained": {"_count": 1, "entry": {"_count": 1}}, "killed": {"_count": 1, "was": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "knew": {"_count": 2, "": {"_count": 1}, "who": {"_count": 1}}, "now": {"_count": 1, "serving": {"_count": 1}}, "alongside": {"_count": 1, "him": {"_count": 1}}, "masquerading": {"_count": 1, "as": {"_count": 1}}, "may": {"_count": 1, "now": {"_count": 1}}, "really": {"_count": 1, "had": {"_count": 1}}, "benefit": {"_count": 1, "or": {"_count": 1}}, "want": {"_count": 1, "with": {"_count": 1}}, "HeWho": {"_count": 1, "MustNotBeNamed": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "Siriuss": {"_count": 1, "brother": {"_count": 1}}, "known": {"_count": 1, "to": {"_count": 1}}, "secret": {"_count": 1, "plans": {"_count": 1}}, "residence": {"_count": 1, "does": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "cant": {"_count": 1, "all": {"_count": 1}}, "claiming": {"_count": 1, "that": {"_count": 1}}, "before": {"_count": 1, "you": {"_count": 1}}, "after": {"_count": 1, "leaving": {"_count": 1}}, "left": {"_count": 1, "behind": {"_count": 1}}, "here": {"_count": 1, "in": {"_count": 1}}, "distant": {"_count": 1, "fight": {"_count": 1}}, "into": {"_count": 1, "my": {"_count": 1}}, "including": {"_count": 1, "the": {"_count": 1}}, "retreating": {"_count": 1, "that": {"_count": 1}}, "escaping": {"_count": 1, "and": {"_count": 1}}, "runnin": {"_count": 1, "down": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "dead": {"_count": 1, "he": {"_count": 1}}, "arrived": {"_count": 3, "and": {"_count": 1}, "": {"_count": 2}}, "side": {"_count": 1, "": {"_count": 1}}, "can": {"_count": 1, "possibly": {"_count": 1}}, "out": {"_count": 2, "because": {"_count": 1}, "when": {"_count": 1}}, "minutes": {"_count": 1, "later": {"_count": 1}}, "She": {"_count": 1, "covered": {"_count": 1}}, "seemed": {"_count": 1, "ready": {"_count": 1}}, "jinx": {"_count": 1, "just": {"_count": 1}}, "thats": {"_count": 1, "how": {"_count": 1}}, "spat": {"_count": 1, "on": {"_count": 1}}, "leapt": {"_count": 1, "back": {"_count": 1}}, "dementors": {"_count": 1, "maybe": {"_count": 1}}, "patrolling": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "run": {"_count": 1}}, "will": {"_count": 2, "expect": {"_count": 1}, "go": {"_count": 1}}, "scattering": {"_count": 1, "as": {"_count": 1}}, "swerved": {"_count": 1, "and": {"_count": 1}}, "swerve": {"_count": 1, "out": {"_count": 1}}, "Harry": {"_count": 2, "spat": {"_count": 1}, "could": {"_count": 1}}, "emerged": {"_count": 1, "out": {"_count": 1}}, "shout": {"_count": 1, "reached": {"_count": 1}}, "loads": {"_count": 1, "of": {"_count": 1}}, "pursuing": {"_count": 2, "them": {"_count": 2}}, "witnessed": {"_count": 1, "that": {"_count": 1}}, "frankly": {"_count": 1, "most": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "took": {"_count": 2, "it": {"_count": 1}, "me": {"_count": 1}}, "the": {"_count": 1, "address": {"_count": 1}}, "probably": {"_count": 1, "tidied": {"_count": 1}}, "spells": {"_count": 1, "shattered": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "could": {"_count": 1, "do": {"_count": 1}}, "for": {"_count": 1, "sure": {"_count": 1}}, "outside": {"_count": 1, "increased": {"_count": 1}}, "searched": {"_count": 1, "the": {"_count": 1}}, "got": {"_count": 1, "through": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "watching": {"_count": 2, "the": {"_count": 2}}, "werent": {"_count": 1, "we": {"_count": 1}}, "tortured": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "perhaps": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "mean": {"_count": 1, "it": {"_count": 1}}, "cornered": {"_count": 1, "him": {"_count": 1}}, "find": {"_count": 1, "out": {"_count": 1}}, "yeah": {"_count": 1, "said": {"_count": 1}}, "replied": {"_count": 1, "Kingsley": {"_count": 1}}, "know": {"_count": 1, "Rons": {"_count": 1}}, "dashed": {"_count": 1, "into": {"_count": 1}}, "waved": {"_count": 1, "his": {"_count": 1}}, "missed": {"_count": 1, "them": {"_count": 1}}, "searching": {"_count": 1, "wands": {"_count": 1}}, "worry": {"_count": 1, "about": {"_count": 1}}, "strode": {"_count": 1, "back": {"_count": 1}}, "fighting": {"_count": 1, "those": {"_count": 1}}, "youve": {"_count": 1, "just": {"_count": 1}}, "must": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "His": {"_count": 1, "face": {"_count": 1}}, "Stunning": {"_count": 1, "Spells": {"_count": 1}}, "both": {"_count": 1, "masked": {"_count": 1}}, "momentary": {"_count": 1, "distraction": {"_count": 1}}, "everywhere": {"_count": 1, "Harry": {"_count": 1}}, "wand": {"_count": 1, "hand": {"_count": 1}}, "rose": {"_count": 1, "together": {"_count": 1}}, "moved": {"_count": 1, "": {"_count": 1}}, "crowed": {"_count": 1, "all": {"_count": 1}}, "called": {"_count": 1, "insults": {"_count": 1}}, "outnumber": {"_count": 1, "you": {"_count": 1}}, "until": {"_count": 1, "SILENCE": {"_count": 1}}, "raised": {"_count": 1, "their": {"_count": 1}}, "everyone": {"_count": 1, "was": {"_count": 1}}, "alike": {"_count": 1, "were": {"_count": 1}}, "their": {"_count": 1, "tiny": {"_count": 1}}}, "unmask": {"_count": 1, "any": {"_count": 1, "of": {"_count": 1}}}, "Robertses": {"_count": 1, "before": {"_count": 1, "they": {"_count": 1}}}, "killings": {"_count": 5, "back": {"_count": 1, "when": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "never": {"_count": 1}}, "hes": {"_count": 1, "seriously": {"_count": 1}}}, "reunion": {"_count": 2, "for": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "disgustedly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "denied": {"_count": 7, "theyd": {"_count": 1, "ever": {"_count": 1}}, "a": {"_count": 1, "real": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "but": {"_count": 1}}, "Dumbledore": {"_count": 1, "and": {"_count": 1}}}, "daily": {"_count": 5, "lives": {"_count": 1, "": {"_count": 1}}, "owls": {"_count": 1, "now": {"_count": 1}}, "business": {"_count": 1, "Mr": {"_count": 1}}, "practices": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "overpleased": {"_count": 1, "with": {"_count": 1, "them": {"_count": 1}}}, "Eater": {"_count": 162, "once": {"_count": 1, "even": {"_count": 1}}, "": {"_count": 23, ".": {"_count": 14}, "?": {"_count": 6}, "!": {"_count": 3}}, "by": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 5, "walked": {"_count": 2}, "would": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "than": {"_count": 1, "I": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 2}, "top": {"_count": 1}}, "lay": {"_count": 1, "flat": {"_count": 1}}, "sent": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 5, "the": {"_count": 1}, "ensure": {"_count": 1}, "Death": {"_count": 1}, "Dumbledores": {"_count": 1}, "his": {"_count": 1}}, "stationed": {"_count": 1, "at": {"_count": 1}}, "had": {"_count": 8, "turned": {"_count": 1}, "the": {"_count": 1}, "snatched": {"_count": 1}, "pulled": {"_count": 1}, "ripped": {"_count": 1}, "appeared": {"_count": 1}, "just": {"_count": 1}, "shouted": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "here": {"_count": 1, "they": {"_count": 1}}, "is": {"_count": 1, "he": {"_count": 1}}, "responsible": {"_count": 1, "for": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "impersonating": {"_count": 1, "him": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "Shes": {"_count": 1, "foul": {"_count": 1}}, "said": {"_count": 3, "Ron": {"_count": 1}, "Harry": {"_count": 2}}, "wasnt": {"_count": 1, "he": {"_count": 1}}, "shrieked": {"_count": 1, "Accio": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "lunged": {"_count": 1, "forward": {"_count": 1}}, "he": {"_count": 5, "fell": {"_count": 1}, "wouldnt": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}, "could": {"_count": 1}}, "however": {"_count": 1, "had": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 7, "front": {"_count": 1}, "the": {"_count": 4}, "turn": {"_count": 1}, "disguise": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "this": {"_count": 1}, "they": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "staggering": {"_count": 1, "behind": {"_count": 1}}, "nearest": {"_count": 2, "Harry": {"_count": 1}, "it": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}, "kicked": {"_count": 1, "out": {"_count": 1}}, "blundered": {"_count": 1, "out": {"_count": 1}}, "was": {"_count": 7, "screaming": {"_count": 1}, "aiming": {"_count": 1}, "still": {"_count": 1}, "hit": {"_count": 1}, "sprawled": {"_count": 1}, "the": {"_count": 1}, "lifted": {"_count": 1}}, "shouted": {"_count": 2, "Someone": {"_count": 1}, "We": {"_count": 1}}, "holding": {"_count": 1, "him": {"_count": 1}}, "dropped": {"_count": 1, "him": {"_count": 1}}, "some": {"_count": 1, "ten": {"_count": 1}}, "keeled": {"_count": 1, "over": {"_count": 1}}, "lurched": {"_count": 1, "past": {"_count": 1}}, "days": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "dear": {"_count": 1, "": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "pals": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 7, "Harry": {"_count": 1}, "some": {"_count": 1}, "the": {"_count": 1}, "there": {"_count": 1}, "here": {"_count": 1}, "said": {"_count": 1}, "began": {"_count": 1}}, "cronies": {"_count": 1, "": {"_count": 1}}, "activity": {"_count": 1, "": {"_count": 1}}, "hell": {"_count": 1, "have": {"_count": 1}}, "only": {"_count": 1, "dont": {"_count": 1}}, "how": {"_count": 1, "else": {"_count": 1}}, "would": {"_count": 1, "kill": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "suddenly": {"_count": 1, "violent": {"_count": 1}}, "last": {"_count": 1, "to": {"_count": 1}}, "buckled": {"_count": 1, "as": {"_count": 1}}, "Amycus": {"_count": 1, "who": {"_count": 1}}, "Alecto": {"_count": 1, "sprinting": {"_count": 1}}, "behind": {"_count": 2, "him": {"_count": 1}, "Harry": {"_count": 1}}, "obeyed": {"_count": 1, "running": {"_count": 1}}, "or": {"_count": 1, "two": {"_count": 1}}, "shot": {"_count": 1, "a": {"_count": 1}}, "swerved": {"_count": 1, "to": {"_count": 1}}, "appeared": {"_count": 1, "on": {"_count": 1}}, "falling": {"_count": 1, "out": {"_count": 1}}, "swooping": {"_count": 1, "out": {"_count": 1}}, "yelled": {"_count": 1, "Voldemort": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "fell": {"_count": 1, "forward": {"_count": 1}}, "tailing": {"_count": 1, "me": {"_count": 1}}, "everything": {"_count": 1, "he": {"_count": 1}}, "up": {"_count": 1, "in": {"_count": 1}}, "unzipping": {"_count": 1, "the": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "wed": {"_count": 1, "be": {"_count": 1}}, "robes": {"_count": 2, "in": {"_count": 1}, "when": {"_count": 1}}, "breathed": {"_count": 1, "Griphook": {"_count": 1}}, "looked": {"_count": 1, "offended": {"_count": 1}}, "though": {"_count": 1, "with": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "could": {"_count": 1, "do": {"_count": 1}}, "pointing": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "mouth": {"_count": 1}}, "dueling": {"_count": 1, "Kingsley": {"_count": 1}}, "it": {"_count": 1, "missed": {"_count": 1}}, "friends": {"_count": 1, "you": {"_count": 1}}, "make": {"_count": 1, "of": {"_count": 1}}, "moved": {"_count": 1, "ahead": {"_count": 1}}}, "MAYHEM": {"_count": 1, "AT": {"_count": 1, "THE": {"_count": 1}}}, "rolledup": {"_count": 5, "copy": {"_count": 1, "of": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}, "socks": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "paper": {"_count": 1, "from": {"_count": 1}}}, "SCENES": {"_count": 1, "OF": {"_count": 1, "TERROR": {"_count": 1}}}, "TERROR": {"_count": 1, "AT": {"_count": 1, "THE": {"_count": 1}}}, "releasing": {"_count": 6, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "the": {"_count": 1, "balls": {"_count": 1}}, "George": {"_count": 1, "all": {"_count": 1}}, "him": {"_count": 1, "he": {"_count": 1}}, "what": {"_count": 1, "looked": {"_count": 1}}, "a": {"_count": 1, "firstyear": {"_count": 1}}}, "everybodys": {"_count": 4, "surprise": {"_count": 1, "she": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "mortal": {"_count": 1}}, "eyes": {"_count": 1, "as": {"_count": 1}}}, "prising": {"_count": 2, "her": {"_count": 1, "off": {"_count": 1}}, "a": {"_count": 1, "fish": {"_count": 1}}}, "Firewhiskey": {"_count": 1, "Bill": {"_count": 1, "handed": {"_count": 1}}}, "blunders": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "culprits": {"_count": 1, "not": {"_count": 1, "apprehended": {"_count": 1}}}, "apprehended": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "Dolohov": {"_count": 1, "said": {"_count": 1}}, "eavesdropping": {"_count": 1, "on": {"_count": 1}}, "an": {"_count": 1, "intruder": {"_count": 1}}}, "Rita": {"_count": 145, "Skeeter": {"_count": 90, "": {"_count": 12}, "never": {"_count": 1}, "gets": {"_count": 1}, "Special": {"_count": 3}, "he": {"_count": 1}, "her": {"_count": 1}, "and": {"_count": 3}, "again": {"_count": 2}, "Daily": {"_count": 2}, "had": {"_count": 8}, "fortythree": {"_count": 1}, "yet": {"_count": 1}, "firmly": {"_count": 1}, "raised": {"_count": 2}, "briskly": {"_count": 1}, "watching": {"_count": 2}, "talking": {"_count": 1}, "could": {"_count": 1}, "with": {"_count": 1}, "didnt": {"_count": 1}, "Harry": {"_count": 1}, "settled": {"_count": 1}, "whose": {"_count": 1}, "kept": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 2}, "as": {"_count": 3}, "seeing": {"_count": 1}, "made": {"_count": 1}, "called": {"_count": 1}, "s": {"_count": 1}, "coldly": {"_count": 1}, "said": {"_count": 1}, "of": {"_count": 1}, "have": {"_count": 3}, "wrote": {"_count": 2}, "badges": {"_count": 1}, "for": {"_count": 1}, "she": {"_count": 1}, "goes": {"_count": 1}, "Mr": {"_count": 1}, "isnt": {"_count": 1}, "Hermione": {"_count": 1}, "ex": {"_count": 1}, "looked": {"_count": 1}, "who": {"_count": 1}, "reveals": {"_count": 1}, "exclusively": {"_count": 1}, "is": {"_count": 2}, "gave": {"_count": 1}, "hinted": {"_count": 1}, "Elphias": {"_count": 1}, "knows": {"_count": 1}, "Thinking": {"_count": 1}, "bestselling": {"_count": 1}, "unlocked": {"_count": 1}, "writing": {"_count": 1}}, "would": {"_count": 1, "just": {"_count": 1}}, "Skeeters": {"_count": 12, "been": {"_count": 1}, "smile": {"_count": 2}, "QuickQuotes": {"_count": 2}, "article": {"_count": 5}, "still": {"_count": 1}, "stories": {"_count": 1}}, "hasnt": {"_count": 2, "found": {"_count": 1}, "written": {"_count": 1}}, "said": {"_count": 2, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "replied": {"_count": 1, "beaming": {"_count": 1}}, "acted": {"_count": 1, "as": {"_count": 1}}, "apparently": {"_count": 1, "full": {"_count": 1}}, "can": {"_count": 1, "do": {"_count": 1}}, "found": {"_count": 1, "out": {"_count": 1}}, "quiet": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "perched": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "coolly": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 1}, "jumped": {"_count": 1}, "pressed": {"_count": 1}}, "to": {"_count": 1, "Luna": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "wiping": {"_count": 1, "her": {"_count": 1}}, "shooting": {"_count": 1, "a": {"_count": 1}}, "lowering": {"_count": 1, "her": {"_count": 1}}, "now": {"_count": 1, "fumbling": {"_count": 1}}, "stared": {"_count": 2, "at": {"_count": 2}}, "asked": {"_count": 1, "Hermione": {"_count": 1}}, "blotted": {"_count": 1, "the": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}, "gave": {"_count": 1, "Hermione": {"_count": 1}}, "sat": {"_count": 1, "up": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}, "looked": {"_count": 2, "disparagingly": {"_count": 1}, "as": {"_count": 1}}, "snorted": {"_count": 1, "so": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}, "balancing": {"_count": 1, "the": {"_count": 1}}, "wrote": {"_count": 1, "about": {"_count": 1}}, "cant": {"_count": 1, "pretend": {"_count": 1}}}, "Skeeter": {"_count": 118, "": {"_count": 16, ".": {"_count": 11}, "!": {"_count": 3}, "?": {"_count": 2}}, "woman": {"_count": 7, "wrote": {"_count": 1}, "buzzing": {"_count": 1}, "find": {"_count": 1}, "do": {"_count": 1}, "": {"_count": 1}, "making": {"_count": 1}, "to": {"_count": 1}}, "never": {"_count": 1, "makes": {"_count": 1}}, "gets": {"_count": 1, "hold": {"_count": 1}}, "Special": {"_count": 3, "Correspondent": {"_count": 3}}, "he": {"_count": 1, "added": {"_count": 1}}, "her": {"_count": 1, "eyes": {"_count": 1}}, "and": {"_count": 3, "in": {"_count": 1}, "her": {"_count": 1}, "Muriel": {"_count": 1}}, "again": {"_count": 2, "perching": {"_count": 1}, "": {"_count": 1}}, "Daily": {"_count": 2, "Prophet": {"_count": 2}}, "had": {"_count": 8, "spoken": {"_count": 1}, "published": {"_count": 1}, "reported": {"_count": 1}, "gone": {"_count": 2}, "lied": {"_count": 1}, "just": {"_count": 1}, "already": {"_count": 1}}, "fortythree": {"_count": 1, "whose": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "firmly": {"_count": 1, "": {"_count": 1}}, "raised": {"_count": 2, "one": {"_count": 1}, "her": {"_count": 1}}, "briskly": {"_count": 1, "": {"_count": 1}}, "watching": {"_count": 2, "him": {"_count": 2}}, "talking": {"_count": 1, "over": {"_count": 1}}, "could": {"_count": 1, "say": {"_count": 1}}, "with": {"_count": 2, "every": {"_count": 1}, "a": {"_count": 1}}, "didnt": {"_count": 1, "look": {"_count": 1}}, "Harry": {"_count": 1, "hurried": {"_count": 1}}, "settled": {"_count": 1, "herself": {"_count": 1}}, "whose": {"_count": 1, "eyes": {"_count": 1}}, "kept": {"_count": 1, "hurrying": {"_count": 1}}, "from": {"_count": 1, "hitting": {"_count": 1}}, "womans": {"_count": 1, "article": {"_count": 1}}, "was": {"_count": 3, "leaning": {"_count": 1}, "certainly": {"_count": 1}, "defaming": {"_count": 1}}, "as": {"_count": 3, "he": {"_count": 1}, "she": {"_count": 1}, "well": {"_count": 1}}, "seeing": {"_count": 1, "so": {"_count": 1}}, "made": {"_count": 1, "arrangements": {"_count": 1}}, "called": {"_count": 1, "merrily": {"_count": 1}}, "s": {"_count": 2, "eyes": {"_count": 1}, "biography": {"_count": 1}}, "coldly": {"_count": 1, "her": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "cow": {"_count": 1, "sorry": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "have": {"_count": 3, "known": {"_count": 1}, "heard": {"_count": 1}, "you": {"_count": 1}}, "wrote": {"_count": 3, "abou": {"_count": 1}, "in": {"_count": 1}, "about": {"_count": 1}}, "badges": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "which": {"_count": 1}}, "she": {"_count": 1, "muttered": {"_count": 1}}, "goes": {"_count": 1, "out": {"_count": 1}}, "Mr": {"_count": 1, "Fudge": {"_count": 1}}, "isnt": {"_count": 1, "going": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "ex": {"_count": 1, "journalist": {"_count": 1}}, "looked": {"_count": 1, "as": {"_count": 1}}, "who": {"_count": 1, "he": {"_count": 1}}, "reveals": {"_count": 1, "the": {"_count": 1}}, "exclusively": {"_count": 1, "interviewed": {"_count": 1}}, "is": {"_count": 4, "much": {"_count": 1}, "referring": {"_count": 1}, "still": {"_count": 1}, "a": {"_count": 1}}, "throws": {"_count": 1, "back": {"_count": 1}}, "really": {"_count": 1, "feel": {"_count": 1}}, "rapping": {"_count": 1, "me": {"_count": 1}}, "deny": {"_count": 1, "the": {"_count": 1}}, "refuses": {"_count": 1, "to": {"_count": 1}}, "nodding": {"_count": 1, "briskly": {"_count": 1}}, "believe": {"_count": 1, "that": {"_count": 1}}, "has": {"_count": 1, "quilled": {"_count": 1}}, "gave": {"_count": 1, "about": {"_count": 1}}, "hinted": {"_count": 1, "that": {"_count": 1}}, "Elphias": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "knows": {"_count": 1, "them": {"_count": 1}}, "Thinking": {"_count": 1, "that": {"_count": 1}}, "bestselling": {"_count": 1, "author": {"_count": 1}}, "unlocked": {"_count": 1, "Bathildas": {"_count": 1}}, "writing": {"_count": 1, "": {"_count": 1}}}, "quibbling": {"_count": 1, "about": {"_count": 1, "cauldron": {"_count": 1}}}, "specifically": {"_count": 2, "stated": {"_count": 1, "in": {"_count": 1}}, "asked": {"_count": 1, "Professor": {"_count": 1}}}, "Guidelines": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "Treatment": {"_count": 1, "of": {"_count": 1, "NonWizard": {"_count": 1}}}, "NonWizard": {"_count": 1, "Part": {"_count": 1, "Humans": {"_count": 1}}}, "Humans": {"_count": 1, "Do": {"_count": 1, "us": {"_count": 1}}}, "whiskey": {"_count": 5, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "the": {"_count": 1, "fumes": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "reassurance": {"_count": 4, "from": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "about": {"_count": 1, "James": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "alleging": {"_count": 1, "that": {"_count": 1, "nobody": {"_count": 1}}}, "quash": {"_count": 2, "the": {"_count": 1, "rumors": {"_count": 1}}, "these": {"_count": 1, "ridiculous": {"_count": 1}}}, "Rumors": {"_count": 7, "that": {"_count": 1, "several": {"_count": 1}}, "were": {"_count": 2, "flying": {"_count": 2}}, "about": {"_count": 1, "the": {"_count": 1}}, "abound": {"_count": 1, "of": {"_count": 1}}, "continue": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "your": {"_count": 1}}}, "deck": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "dressed": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 2, "a": {"_count": 2}}, "where": {"_count": 1, "there": {"_count": 1}}}, "reactions": {"_count": 4, "were": {"_count": 1, "almost": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "are": {"_count": 1, "slower": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "reference": {"_count": 9, "books": {"_count": 2, "and": {"_count": 1}, "strewn": {"_count": 1}}, "to": {"_count": 5, "your": {"_count": 1}, "underwater": {"_count": 1}, "the": {"_count": 2}, "him": {"_count": 1}}, "if": {"_count": 1, "ever": {"_count": 1}}, "Harry": {"_count": 1, "it": {"_count": 1}}}, "teetered": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "brightening": {"_count": 2, "sky": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "Hedwigfree": {"_count": 1, "sky": {"_count": 1, "": {"_count": 1}}}, "orchard": {"_count": 6, "Harry": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "awaiting": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "surrounding": {"_count": 1}}, "which": {"_count": 1, "afforded": {"_count": 1}}}, "Idontthinkyoure": {"_count": 1, "being": {"_count": 1, "very": {"_count": 1}}}, "Howlers": {"_count": 3, "and": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "which": {"_count": 1, "exploded": {"_count": 1}}}, "explodes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "cinders": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mending": {"_count": 5, "her": {"_count": 1, "copy": {"_count": 1}}, "his": {"_count": 1, "burn": {"_count": 1}}, "Rons": {"_count": 1, "cup": {"_count": 1}}, "the": {"_count": 1, "cabinet": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Complaining": {"_count": 1, "about": {"_count": 1, "security": {"_count": 1}}}, "compensation": {"_count": 1, "for": {"_count": 1, "their": {"_count": 1}}}, "property": {"_count": 5, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "Mr": {"_count": 1}}}, "Fletchers": {"_count": 1, "put": {"_count": 1, "in": {"_count": 1}}}, "claim": {"_count": 11, "for": {"_count": 1, "a": {"_count": 1}}, "responsibility": {"_count": 1, "for": {"_count": 1}}, "you": {"_count": 2, "cannot": {"_count": 1}, "foresaw": {"_count": 1}}, "it": {"_count": 1, "I": {"_count": 1}}, "said": {"_count": 1, "Uncle": {"_count": 1}}, "its": {"_count": 1, "fact": {"_count": 1}}, "did": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "anythings": {"_count": 1}, "wizards": {"_count": 1}}}, "twelvebedroomed": {"_count": 1, "tent": {"_count": 1, "with": {"_count": 1}}}, "ensuite": {"_count": 1, "Jacuzzi": {"_count": 1, "but": {"_count": 1}}}, "Jacuzzi": {"_count": 1, "but": {"_count": 1, "Ive": {"_count": 1}}}, "informative": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "detailed": {"_count": 1}}}, "numerals": {"_count": 2, "around": {"_count": 2, "the": {"_count": 2}}}, "descriptions": {"_count": 1, "of": {"_count": 1, "where": {"_count": 1}}}, "longest": {"_count": 4, "was": {"_count": 1, "still": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "time": {"_count": 1, "yet": {"_count": 1}}}, "mined": {"_count": 2, "if": {"_count": 1, "he": {"_count": 1}}, "everything": {"_count": 1, "": {"_count": 1}}}, "unwise": {"_count": 9, "to": {"_count": 6, "make": {"_count": 1}, "attempt": {"_count": 1}, "linger": {"_count": 1}, "try": {"_count": 1}, "enlighten": {"_count": 1}, "leave": {"_count": 1}}, "for": {"_count": 1, "me": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "disgraceful": {"_count": 2, "that": {"_count": 1, "nobody": {"_count": 1}}, "exhibition": {"_count": 1, "": {"_count": 1}}}, "commented": {"_count": 1, "said": {"_count": 1, "Bill": {"_count": 1}}}, "interviewed": {"_count": 7, "all": {"_count": 1, "the": {"_count": 1}}, "other": {"_count": 1, "people": {"_count": 1}}, "Snape": {"_count": 1, "said": {"_count": 1}}, "him": {"_count": 1, "agrees": {"_count": 1}}, "by": {"_count": 1, "Betty": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}}, "Breakers": {"_count": 2, "once": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "thrilling": {"_count": 1}}}, "\u2018a": {"_count": 2, "longhaired": {"_count": 1, "pillock": {"_count": 1}}, "tale": {"_count": 1, "worthy": {"_count": 1}}}, "longhaired": {"_count": 4, "pillock": {"_count": 1, "": {"_count": 1}}, "woman": {"_count": 1, "drifted": {"_count": 1}}, "wizard": {"_count": 1, "wearing": {"_count": 1}}, "cat": {"_count": 1, "prowled": {"_count": 1}}}, "pillock": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "darning": {"_count": 3, "a": {"_count": 1, "fireproof": {"_count": 1}}, "his": {"_count": 1, "socks": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fireproof": {"_count": 1, "balaclava": {"_count": 1, "": {"_count": 1}}}, "servicing": {"_count": 2, "kit": {"_count": 2, "Hermione": {"_count": 1}, "put": {"_count": 1}}}, "restarting": {"_count": 1, "Weasleys": {"_count": 1, "Wizard": {"_count": 1}}}, "pained": {"_count": 8, "look": {"_count": 2, "on": {"_count": 1}, "at": {"_count": 1}}, "expression": {"_count": 1, "she": {"_count": 1}}, "concentration": {"_count": 1, "mimed": {"_count": 1}}, "grimace": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "for": {"_count": 1}}}, "unfounded": {"_count": 1, "accusation": {"_count": 1, "": {"_count": 1}}}, "accusation": {"_count": 6, "": {"_count": 1, "?": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "cowardice": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "Potter": {"_count": 1, "said": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}}, "fats": {"_count": 1, "really": {"_count": 1, "in": {"_count": 1}}}, "toyed": {"_count": 2, "unenthusiastically": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "unenthusiastically": {"_count": 3, "with": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "cauliflower": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Skeeters": {"_count": 15, "been": {"_count": 1, "ferreting": {"_count": 1}}, "smile": {"_count": 2, "widened": {"_count": 1}, "flickered": {"_count": 1}}, "QuickQuotes": {"_count": 2, "Quill": {"_count": 2}}, "article": {"_count": 5, "at": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "about": {"_count": 2}}, "still": {"_count": 1, "poking": {"_count": 1}}, "stories": {"_count": 1, "about": {"_count": 1}}, "book": {"_count": 1, "contains": {"_count": 1}}, "unearthed": {"_count": 1, "": {"_count": 1}}, "interview": {"_count": 1, "about": {"_count": 1}}}, "messups": {"_count": 1, "to": {"_count": 1, "report": {"_count": 1}}}, "Thered": {"_count": 1, "be": {"_count": 1, "a": {"_count": 1}}}, "headlines": {"_count": 2, "in": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "irresponsible": {"_count": 6, "did": {"_count": 1, "not": {"_count": 1}}, "godfather": {"_count": 1, "": {"_count": 1}}, "wizards": {"_count": 1, "in": {"_count": 1}}, "indeed": {"_count": 1, "not": {"_count": 1}}, "then": {"_count": 1, "returned": {"_count": 1}}, "to": {"_count": 1, "start": {"_count": 1}}}, "ranking": {"_count": 1, "Ministry": {"_count": 1, "official": {"_count": 1}}}, "unswerving": {"_count": 1, "obedience": {"_count": 1, "from": {"_count": 1}}}, "obedience": {"_count": 3, "from": {"_count": 1, "his": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "while": {"_count": 1, "within": {"_count": 1}}}, "slave": {"_count": 2, "you": {"_count": 1, "mean": {"_count": 1}}, "houseelves": {"_count": 1, "are": {"_count": 1}}}, "passionately": {"_count": 2, "because": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "repacked": {"_count": 3, "his": {"_count": 1, "broomstick": {"_count": 1}}, "into": {"_count": 1, "an": {"_count": 1}}, "the": {"_count": 1, "beaded": {"_count": 1}}}, "whistlings": {"_count": 1, "and": {"_count": 1, "moans": {"_count": 1}}}, "sporadic": {"_count": 1, "howls": {"_count": 1, "from": {"_count": 1}}}, "halfpacked": {"_count": 1, "trunks": {"_count": 1, "seemed": {"_count": 1}}}, "frenzy": {"_count": 2, "of": {"_count": 1, "excitement": {"_count": 1}}, "and": {"_count": 1, "examined": {"_count": 1}}}, "Bung": {"_count": 1, "him": {"_count": 1, "some": {"_count": 1}}}, "Treats": {"_count": 3, "said": {"_count": 1, "Ron": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "on": {"_count": 1}}}, "Pigwidgeons": {"_count": 8, "cage": {"_count": 5, "then": {"_count": 1}, "to": {"_count": 1}, "": {"_count": 1}, "in": {"_count": 1}, "thinking": {"_count": 1}}, "beak": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "leg": {"_count": 1, "Harry": {"_count": 1}}}, "refills": {"_count": 1, "for": {"_count": 1, "his": {"_count": 1}}}, "belladonna": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "underwear": {"_count": 3, "into": {"_count": 1, "his": {"_count": 1}}, "sweets": {"_count": 1, "empty": {"_count": 1}}, "barefooted": {"_count": 1, "in": {"_count": 1}}}, "frill": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "cuffs": {"_count": 7, "": {"_count": 4, ".": {"_count": 4}}, "from": {"_count": 1, "which": {"_count": 1}}, "chaining": {"_count": 1, "the": {"_count": 1}}, "broke": {"_count": 1, "open": {"_count": 1}}}, "laundered": {"_count": 7, "Hogwarts": {"_count": 1, "robes": {"_count": 1}}, "jeans": {"_count": 1, "and": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "towels": {"_count": 1, "": {"_count": 1}}, "clothes": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}}, "sorting": {"_count": 9, "them": {"_count": 2, "into": {"_count": 1}, "Harry": {"_count": 1}}, "the": {"_count": 1, "robes": {"_count": 1}}, "May": {"_count": 1, "not": {"_count": 1}}, "out": {"_count": 3, "rotten": {"_count": 1}, "and": {"_count": 1}, "the": {"_count": 1}}, "books": {"_count": 2, "some": {"_count": 1}, "": {"_count": 1}}}, "crease": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "between": {"_count": 3, "his": {"_count": 3}}, "his": {"_count": 1, "wide": {"_count": 1}}, "appeared": {"_count": 1, "between": {"_count": 1}}}, "Dress": {"_count": 3, "robes": {"_count": 3, "": {"_count": 2}, "will": {"_count": 1}}}, "formal": {"_count": 3, "occasions": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}}, "starkers": {"_count": 1, "before": {"_count": 1, "I": {"_count": 1}}}, "trepidation": {"_count": 6, "Harry": {"_count": 1, "opened": {"_count": 1}}, "as": {"_count": 2, "Snape": {"_count": 1}, "he": {"_count": 1}}, "what": {"_count": 1, "had": {"_count": 1}}, "tainted": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "that": {"_count": 1}}}, "flushing": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "it": {"_count": 1, "away": {"_count": 1}}}, "naked": {"_count": 9, "": {"_count": 3, ".": {"_count": 3}}, "in": {"_count": 1, "front": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "torso": {"_count": 1, "seemed": {"_count": 1}}, "bodies": {"_count": 1, "men": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "child": {"_count": 1, "curled": {"_count": 1}}}, "overlarge": {"_count": 8, "Owl": {"_count": 1, "Treat": {"_count": 1}}, "nose": {"_count": 1, "Snape": {"_count": 1}}, "nostrils": {"_count": 1, "were": {"_count": 1}}, "head": {"_count": 1, "Potter": {"_count": 1}}, "lion": {"_count": 1, "great": {"_count": 1}}, "and": {"_count": 1, "her": {"_count": 1}}, "robes": {"_count": 1, "sopping": {"_count": 1}}, "coat": {"_count": 1, "that": {"_count": 1}}}, "Treat": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "your": {"_count": 1, "injured": {"_count": 1}}}, "unstick": {"_count": 1, "Pigwidgeons": {"_count": 1, "beak": {"_count": 1}}}, "ABOARD": {"_count": 1, "THE": {"_count": 1, "HOGWARTS": {"_count": 1}}}, "EXPRESS": {"_count": 1, "There": {"_count": 1, "was": {"_count": 1}}}, "endoftheholidays": {"_count": 1, "gloom": {"_count": 1, "in": {"_count": 1}}}, "Heavy": {"_count": 3, "rain": {"_count": 1, "was": {"_count": 1}}, "irresistible": {"_count": 1, "waves": {"_count": 1}}, "scuffing": {"_count": 1, "and": {"_count": 1}}}, "tofront": {"_count": 1, "and": {"_count": 1, "hurtled": {"_count": 1}}}, "whatdyoucallems": {"_count": 1, "pleasemen": {"_count": 1, "": {"_count": 1}}}, "pleasemen": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}}, "MadEye": {"_count": 106, "say": {"_count": 1, "happened": {"_count": 1}}, "said": {"_count": 5, "Mr": {"_count": 2}, "Lupin": {"_count": 1}, "Tonks": {"_count": 1}, "hed": {"_count": 1}}, "hes": {"_count": 1, "had": {"_count": 1}}, "didnt": {"_count": 2, "use": {"_count": 1}, "make": {"_count": 1}}, "off": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 11, "?": {"_count": 5}, ".": {"_count": 5}, "!": {"_count": 1}}, "Moody": {"_count": 28, "": {"_count": 6}, "said": {"_count": 1}, "we": {"_count": 1}, "was": {"_count": 7}, "emerging": {"_count": 1}, "the": {"_count": 1}, "however": {"_count": 1}, "limp": {"_count": 1}, "might": {"_count": 1}, "inside": {"_count": 1}, "who": {"_count": 1}, "stumped": {"_count": 1}, "had": {"_count": 1}, "looking": {"_count": 1}, "though": {"_count": 1}, "Tonks": {"_count": 1}, "but": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "Moodys": {"_count": 5, "voice": {"_count": 2}, "company": {"_count": 1}, "magical": {"_count": 1}, "eye": {"_count": 1}}, "could": {"_count": 1, "hardly": {"_count": 1}}, "interestedly": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "do": {"_count": 1}}, "hell": {"_count": 1, "think": {"_count": 1}}, "s": {"_count": 1, "instructions": {"_count": 1}}, "have": {"_count": 1, "a": {"_count": 1}}, "shrugged": {"_count": 1, "off": {"_count": 1}}, "says": {"_count": 1, "said": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 3, "wearing": {"_count": 1}, "pointing": {"_count": 1}, "going": {"_count": 1}}, "where": {"_count": 1, "St": {"_count": 1}}, "growled": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 7, "Tonks": {"_count": 2}, "Lupin": {"_count": 1}, "Mundungus": {"_count": 2}, "Dung": {"_count": 1}, "the": {"_count": 1}}, "who": {"_count": 3, "had": {"_count": 1}, "seemed": {"_count": 1}, "was": {"_count": 1}}, "would": {"_count": 2, "say": {"_count": 1}, "have": {"_count": 1}}, "are": {"_count": 1, "coming": {"_count": 1}}, "will": {"_count": 1, "explain": {"_count": 1}}, "battleworn": {"_count": 1, "one": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "chance": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "full": {"_count": 1, "in": {"_count": 1}}, "dead": {"_count": 1, "it": {"_count": 1}}, "so": {"_count": 1, "tough": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}, "they": {"_count": 1, "all": {"_count": 1}}, "echoed": {"_count": 1, "Hagrid": {"_count": 1}}, "made": {"_count": 1, "him": {"_count": 1}}, "expected": {"_count": 1, "him": {"_count": 1}}, "first": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 2, "always": {"_count": 1}, "died": {"_count": 1}}, "wouldnt": {"_count": 1, "want": {"_count": 1}}, "like": {"_count": 1, "Sirius": {"_count": 1}}, "hung": {"_count": 1, "over": {"_count": 1}}, "set": {"_count": 2, "up": {"_count": 2}}, "Ron": {"_count": 1, "told": {"_count": 1}}, "still": {"_count": 1, "fell": {"_count": 1}}, "dying": {"_count": 1, "somehow": {"_count": 1}}}, "unscrewing": {"_count": 1, "the": {"_count": 1, "ink": {"_count": 1}}}, "intruder": {"_count": 6, "in": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "Filch": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "shot": {"_count": 1, "a": {"_count": 1}}}, "ambushed": {"_count": 3, "by": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "where": {"_count": 1, "is": {"_count": 1}}}, "dustbins": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "do": {"_count": 1, "": {"_count": 1}}, "worth": {"_count": 1, "": {"_count": 1}}, "move": {"_count": 1, "around": {"_count": 1}}, "stood": {"_count": 1, "": {"_count": 1}}}, "peelings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "minor": {"_count": 11, "charge": {"_count": 1, "something": {"_count": 1}}, "explosions": {"_count": 1, "": {"_count": 1}}, "curses": {"_count": 1, "Hermione": {"_count": 1}}, "breakdowns": {"_count": 1, "coming": {"_count": 1}}, "drawback": {"_count": 1, "of": {"_count": 1}}, "jinxes": {"_count": 1, "so": {"_count": 1}}, "injuries": {"_count": 1, "Oh": {"_count": 1}}, "drooling": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "moderate": {"_count": 1}}, "scandal": {"_count": 1, "fifteen": {"_count": 1}}, "spell": {"_count": 1, "he": {"_count": 1}}}, "casualties": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Kingsley": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "Arthurs": {"_count": 11, "the": {"_count": 1, "only": {"_count": 1}}, "fondness": {"_count": 1, "for": {"_count": 1}}, "just": {"_count": 1, "told": {"_count": 1}}, "something": {"_count": 1, "like": {"_count": 1}}, "taking": {"_count": 1, "you": {"_count": 1}}, "been": {"_count": 2, "badly": {"_count": 1}, "promoted": {"_count": 1}}, "learned": {"_count": 1, "his": {"_count": 1}}, "never": {"_count": 1, "liked": {"_count": 1}}, "heading": {"_count": 1, "the": {"_count": 1}}, "done": {"_count": 1, "a": {"_count": 1}}}, "MadEyes": {"_count": 9, "supposed": {"_count": 1, "to": {"_count": 1}}, "heard": {"_count": 1, "intruders": {"_count": 1}}, "obsessed": {"_count": 1, "with": {"_count": 1}}, "complaining": {"_count": 1, "that": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "body": {"_count": 2, "said": {"_count": 1}, "broken": {"_count": 1}}, "whole": {"_count": 1, "stock": {"_count": 1}}, "eye": {"_count": 1, "a": {"_count": 1}}}, "Fanks": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "byes": {"_count": 1, "to": {"_count": 1, "Bill": {"_count": 1}}}, "comb": {"_count": 4, "through": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Hermiones": {"_count": 1, "Daily": {"_count": 1}}}, "fastening": {"_count": 4, "a": {"_count": 2, "cloak": {"_count": 1}, "note": {"_count": 1}}, "the": {"_count": 1, "catch": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "Moody": {"_count": 419, "": {"_count": 87, "?": {"_count": 9}, ".": {"_count": 74}, "!": {"_count": 4}}, "said": {"_count": 12, "Mrs": {"_count": 1}, "": {"_count": 1}, "Karkaroff": {"_count": 1}, "quietly": {"_count": 2}, "Harry": {"_count": 1}, "calmly": {"_count": 1}, "Dumbledore": {"_count": 3}, "Hermione": {"_count": 1}, "softly": {"_count": 1}}, "was": {"_count": 36, "a": {"_count": 1}, "limping": {"_count": 2}, "moving": {"_count": 1}, "looking": {"_count": 2}, "speaking": {"_count": 1}, "saying": {"_count": 2}, "definitely": {"_count": 1}, "standing": {"_count": 2}, "drinking": {"_count": 1}, "attacked": {"_count": 1}, "the": {"_count": 1}, "doing": {"_count": 1}, "wearing": {"_count": 1}, "going": {"_count": 3}, "still": {"_count": 2}, "sizing": {"_count": 1}, "sitting": {"_count": 1}, "right": {"_count": 1}, "pointing": {"_count": 2}, "thrown": {"_count": 1}, "more": {"_count": 1}, "at": {"_count": 1}, "now": {"_count": 1}, "rummaging": {"_count": 1}, "sniffing": {"_count": 1}, "under": {"_count": 1}, "all": {"_count": 1}, "already": {"_count": 1}}, "with": {"_count": 4, "fascination": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}}, "seemed": {"_count": 1, "totally": {"_count": 1}}, "we": {"_count": 2, "are": {"_count": 1}, "never": {"_count": 1}}, "the": {"_count": 3, "aged": {"_count": 1}, "notoriously": {"_count": 1}, "egg": {"_count": 1}}, "s": {"_count": 1, "heavily": {"_count": 1}}, "had": {"_count": 20, "once": {"_count": 1}, "dismissed": {"_count": 1}, "demonstrated": {"_count": 1}, "announced": {"_count": 1}, "removed": {"_count": 1}, "cleared": {"_count": 1}, "insisted": {"_count": 1}, "just": {"_count": 3}, "told": {"_count": 2}, "obviously": {"_count": 1}, "used": {"_count": 1}, "given": {"_count": 1}, "always": {"_count": 1}, "replaced": {"_count": 1}, "not": {"_count": 1}, "turned": {"_count": 1}, "crawled": {"_count": 1}}, "turned": {"_count": 3, "to": {"_count": 1}, "Snape": {"_count": 1}, "his": {"_count": 1}}, "growled": {"_count": 5, "": {"_count": 1}, "jerking": {"_count": 1}, "you": {"_count": 1}, "as": {"_count": 1}, "Shut": {"_count": 1}}, "shouted": {"_count": 2, "": {"_count": 2}}, "started": {"_count": 1, "to": {"_count": 1}}, "pointing": {"_count": 1, "his": {"_count": 1}}, "as": {"_count": 6, "the": {"_count": 1}, "though": {"_count": 1}, "she": {"_count": 1}, "if": {"_count": 1}, "they": {"_count": 1}, "at": {"_count": 1}}, "speaking": {"_count": 1, "each": {"_count": 1}}, "calmly": {"_count": 2, "bouncing": {"_count": 1}, "folding": {"_count": 1}}, "is": {"_count": 1, "that": {"_count": 1}}, "scratching": {"_count": 1, "his": {"_count": 1}}, "staring": {"_count": 2, "at": {"_count": 2}}, "and": {"_count": 17, "muttered": {"_count": 1}, "Harry": {"_count": 3}, "Dumbledore": {"_count": 1}, "Hagrid": {"_count": 2}, "very": {"_count": 1}, "Snapes": {"_count": 1}, "Crouch": {"_count": 1}, "he": {"_count": 2}, "his": {"_count": 1}, "set": {"_count": 1}, "Mr": {"_count": 1}, "sure": {"_count": 1}, "stuffed": {"_count": 1}}, "quietly": {"_count": 4, "limping": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "whether": {"_count": 1}}, "took": {"_count": 4, "out": {"_count": 1}, "a": {"_count": 2}, "hold": {"_count": 1}}, "smiled": {"_count": 1, "the": {"_count": 1}}, "pointed": {"_count": 1, "at": {"_count": 1}}, "appreciatively": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "heavily": {"_count": 1}}, "reached": {"_count": 1, "into": {"_count": 1}}, "jerked": {"_count": 1, "his": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "his": {"_count": 9, "magical": {"_count": 4}, "hands": {"_count": 1}, "eye": {"_count": 1}, "normal": {"_count": 2}, "voice": {"_count": 1}}, "made": {"_count": 1, "no": {"_count": 1}}, "raised": {"_count": 5, "his": {"_count": 5}}, "did": {"_count": 1, "not": {"_count": 1}}, "muttered": {"_count": 3, "and": {"_count": 1}, "finally": {"_count": 1}, "thrusting": {"_count": 1}}, "softly": {"_count": 2, "": {"_count": 2}}, "looking": {"_count": 3, "at": {"_count": 1}, "up": {"_count": 1}, "quite": {"_count": 1}}, "another": {"_count": 1, "slight": {"_count": 1}}, "roared": {"_count": 1, "": {"_count": 1}}, "swept": {"_count": 1, "the": {"_count": 1}}, "limping": {"_count": 3, "toward": {"_count": 1}, "nearer": {"_count": 1}, "forward": {"_count": 1}}, "turn": {"_count": 1, "the": {"_count": 1}}, "doesnt": {"_count": 1, "he": {"_count": 1}}, "lent": {"_count": 1, "me": {"_count": 1}}, "Im": {"_count": 1, "really": {"_count": 1}}, "cleared": {"_count": 1, "away": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "assured": {"_count": 1, "him": {"_count": 1}}, "grimly": {"_count": 1, "": {"_count": 1}}, "watched": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 6, "": {"_count": 1}, "he": {"_count": 1}, "his": {"_count": 1}, "Ill": {"_count": 1}, "it": {"_count": 1}, "theres": {"_count": 1}}, "old": {"_count": 1, "man": {"_count": 1}}, "considers": {"_count": 1, "the": {"_count": 1}}, "retorted": {"_count": 1, "in": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "just": {"_count": 1, "being": {"_count": 1}}, "I": {"_count": 2, "dont": {"_count": 1}, "forgot": {"_count": 1}}, "get": {"_count": 1, "up": {"_count": 1}}, "however": {"_count": 2, "paused": {"_count": 1}, "looks": {"_count": 1}}, "limped": {"_count": 2, "around": {"_count": 1}, "inside": {"_count": 1}}, "grinned": {"_count": 3, "": {"_count": 3}}, "followed": {"_count": 1, "him": {"_count": 1}}, "caught": {"_count": 1, "Karkaroff": {"_count": 1}}, "emerging": {"_count": 1, "from": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "go": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "closed": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "who": {"_count": 5, "was": {"_count": 1}, "placed": {"_count": 1}, "had": {"_count": 2}, "seemed": {"_count": 1}}, "that": {"_count": 1, "Hagrid": {"_count": 1}}, "sitting": {"_count": 2, "down": {"_count": 1}, "there": {"_count": 1}}, "gave": {"_count": 2, "another": {"_count": 1}, "Harry": {"_count": 1}}, "gruffly": {"_count": 2, "": {"_count": 1}, "beckoning": {"_count": 1}}, "youve": {"_count": 1, "got": {"_count": 1}}, "loudly": {"_count": 1, "interrupting": {"_count": 1}}, "looked": {"_count": 1, "very": {"_count": 1}}, "kept": {"_count": 1, "them": {"_count": 1}}, "clunked": {"_count": 1, "away": {"_count": 1}}, "limp": {"_count": 1, "into": {"_count": 1}}, "could": {"_count": 2, "see": {"_count": 1}, "have": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "he": {"_count": 3, "said": {"_count": 1}, "might": {"_count": 1}, "had": {"_count": 1}}, "laughed": {"_count": 1, "": {"_count": 1}}, "point": {"_count": 1, "at": {"_count": 1}}, "to": {"_count": 3, "attract": {"_count": 1}, "guess": {"_count": 1}, "Harrys": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "without": {"_count": 1, "another": {"_count": 1}}, "drawing": {"_count": 1, "the": {"_count": 1}}, "whispered": {"_count": 2, "staring": {"_count": 1}, "": {"_count": 1}}, "dyou": {"_count": 1, "think": {"_count": 1}}, "scared": {"_count": 1, "him": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "possibly": {"_count": 1, "mean": {"_count": 1}}, "in": {"_count": 6, "a": {"_count": 1}, "the": {"_count": 5}}, "waved": {"_count": 1, "the": {"_count": 1}}, "wasnt": {"_count": 2, "asking": {"_count": 1}, "watching": {"_count": 1}}, "a": {"_count": 2, "favor": {"_count": 1}, "moment": {"_count": 1}}, "still": {"_count": 2, "examining": {"_count": 1}, "glaring": {"_count": 1}}, "nodding": {"_count": 1, "and": {"_count": 1}}, "winked": {"_count": 1, "at": {"_count": 1}}, "thought": {"_count": 1, "he": {"_count": 1}}, "thinks": {"_count": 1, "Snape": {"_count": 1}}, "says": {"_count": 3, "Hermione": {"_count": 1}, "Crouch": {"_count": 1}, "he": {"_count": 1}}, "might": {"_count": 3, "have": {"_count": 2}, "find": {"_count": 1}}, "though": {"_count": 2, "he": {"_count": 1}, "thankfully": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "No": {"_count": 1, "need": {"_count": 1}}, "taught": {"_count": 1, "yeh": {"_count": 1}}, "leaving": {"_count": 1, "it": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "shaking": {"_count": 2, "his": {"_count": 1}, "Harrys": {"_count": 1}}, "its": {"_count": 1, "just": {"_count": 1}}, "breathed": {"_count": 1, "quietly": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "helped": {"_count": 1, "tip": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "asked": {"_count": 1, "quietly": {"_count": 1}}, "pushed": {"_count": 1, "him": {"_count": 1}}, "slowly": {"_count": 1, "": {"_count": 1}}, "drew": {"_count": 1, "out": {"_count": 1}}, "Harry": {"_count": 2, "said": {"_count": 1}, "Lupin": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}, "lying": {"_count": 2, "on": {"_count": 1}, "motionless": {"_count": 1}}, "never": {"_count": 1, "does": {"_count": 1}}, "close": {"_count": 1, "by": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "put": {"_count": 1, "up": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "darkly": {"_count": 1, "": {"_count": 1}}, "turning": {"_count": 1, "his": {"_count": 1}}, "when": {"_count": 1, "Harry": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "unlocking": {"_count": 1, "the": {"_count": 1}}, "ignored": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "pocketing": {"_count": 1, "the": {"_count": 1}}, "prodding": {"_count": 1, "Harry": {"_count": 1}}, "showed": {"_count": 1, "you": {"_count": 1}}, "stumped": {"_count": 1, "in": {"_count": 1}}, "pulled": {"_count": 1, "a": {"_count": 1}}, "unnecessarily": {"_count": 1, "pointing": {"_count": 1}}, "stumping": {"_count": 1, "along": {"_count": 1}}, "came": {"_count": 1, "limping": {"_count": 1}}, "knew": {"_count": 1, "where": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "clunking": {"_count": 1, "along": {"_count": 1}}, "giving": {"_count": 1, "Harry": {"_count": 1}}, "cause": {"_count": 1, "hes": {"_count": 1}}, "theres": {"_count": 1, "something": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 2, "and": {"_count": 1}, "her": {"_count": 1}}, "Nymphadora": {"_count": 1, "Tonks": {"_count": 1}}, "pushing": {"_count": 1, "back": {"_count": 1}}, "grasping": {"_count": 1, "Harrys": {"_count": 1}}, "didnt": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "dropped": {"_count": 1, "his": {"_count": 1}}, "gestured": {"_count": 1, "around": {"_count": 1}}, "now": {"_count": 1, "withdrew": {"_count": 1}}, "quite": {"_count": 1, "unconcerned": {"_count": 1}}, "indicating": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "Bill": {"_count": 1}}}, "collects": {"_count": 1, "plugs": {"_count": 1, "doesnt": {"_count": 1}}}, "Birds": {"_count": 4, "of": {"_count": 2, "a": {"_count": 1}, "paradise": {"_count": 1}}, "an": {"_count": 1, "deer": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Auror": {"_count": 50, "one": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 6}, "!": {"_count": 3}, "?": {"_count": 4}}, "Potter": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "Frank": {"_count": 1, "Longbottom": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "Moody": {"_count": 1, "was": {"_count": 1}}, "training": {"_count": 2, "without": {"_count": 1}, "takes": {"_count": 1}}, "Headquarters": {"_count": 2, "and": {"_count": 2}}, "cubicles": {"_count": 1, "people": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Snape": {"_count": 1}}, "I": {"_count": 1, "seem": {"_count": 1}}, "Harry": {"_count": 3, "mumbled": {"_count": 1}, "motioned": {"_count": 1}, "said": {"_count": 1}}, "office": {"_count": 6, "": {"_count": 3}, "in": {"_count": 1}, "immediately": {"_count": 1}, "he": {"_count": 1}}, "Did": {"_count": 1, "you": {"_count": 1}}, "as": {"_count": 1, "Dumbledore": {"_count": 1}}, "if": {"_count": 2, "it": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "has": {"_count": 1}}, "Cissy": {"_count": 1, "wait": {"_count": 1}}, "but": {"_count": 1, "somehow": {"_count": 1}}, "casting": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "attacked": {"_count": 1}}, "let": {"_count": 1, "slip": {"_count": 1}}, "Office": {"_count": 1, "will": {"_count": 1}}}, "catcher": {"_count": 2, "he": {"_count": 1, "added": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}}, "cells": {"_count": 1, "in": {"_count": 1, "Azkaban": {"_count": 1}}}, "paranoid": {"_count": 5, "in": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "self": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "Dumbledore": {"_count": 1}}}, "Sees": {"_count": 1, "Dark": {"_count": 1, "wizards": {"_count": 1}}}, "justify": {"_count": 3, "taking": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 1, "use": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}}, "rely": {"_count": 8, "on": {"_count": 7, "me": {"_count": 1}, "them": {"_count": 1}, "nothing": {"_count": 1}, "witch": {"_count": 1}, "Hermione": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "upon": {"_count": 1, "to": {"_count": 1}}}, "taxis": {"_count": 2, "to": {"_count": 1, "take": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}}, "taxi": {"_count": 2, "drivers": {"_count": 2, "heaving": {"_count": 1}, "rarely": {"_count": 1}}}, "transported": {"_count": 7, "overexcited": {"_count": 1, "owls": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "straight": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "alive": {"_count": 1, "with": {"_count": 1}}, "staring": {"_count": 1, "over": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermole": {"_count": 1}}}, "WetStart": {"_count": 1, "NoHeat": {"_count": 1, "Fireworks": {"_count": 1}}}, "unexpectedly": {"_count": 16, "when": {"_count": 1, "Freds": {"_count": 1}}, "and": {"_count": 1, "Uncle": {"_count": 1}}, "still": {"_count": 1, "blazed": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "off": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "then": {"_count": 1}}, "from": {"_count": 2, "behind": {"_count": 1}, "between": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "rancorous": {"_count": 1, "": {"_count": 1}}, "bloodthirsty": {"_count": 1, "laughed": {"_count": 1}}}, "unobtrusive": {"_count": 1, "way": {"_count": 1, "so": {"_count": 1}}}, "conspicuous": {"_count": 3, "since": {"_count": 1, "they": {"_count": 1}}, "only": {"_count": 1, "by": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "chatting": {"_count": 13, "unconcernedly": {"_count": 1, "and": {"_count": 1}}, "died": {"_count": 1, "down": {"_count": 1}}, "with": {"_count": 2, "Alicia": {"_count": 1}, "a": {"_count": 1}}, "all": {"_count": 1, "day": {"_count": 1}}, "animatedly": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}, "to": {"_count": 4, "Professor": {"_count": 1}, "some": {"_count": 1}, "them": {"_count": 1}, "several": {"_count": 1}}, "merrily": {"_count": 1, "to": {"_count": 1}}, "about": {"_count": 1, "Horcruxes": {"_count": 1}}}, "unconcernedly": {"_count": 4, "and": {"_count": 1, "slid": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "materialized": {"_count": 7, "in": {"_count": 1, "front": {"_count": 1}}, "right": {"_count": 1, "in": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "directly": {"_count": 1, "above": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}}, "noisier": {"_count": 2, "than": {"_count": 2, "ever": {"_count": 1}, "I": {"_count": 1}}}, "\u2018classified": {"_count": 1, "information": {"_count": 1, "until": {"_count": 1}}}, "wistfully": {"_count": 4, "at": {"_count": 2, "the": {"_count": 2}}, "by": {"_count": 1, "Nearly": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "chivvied": {"_count": 1, "them": {"_count": 1, "toward": {"_count": 1}}}, "undid": {"_count": 1, "his": {"_count": 1, "trunk": {"_count": 1}}}, "muffle": {"_count": 1, "his": {"_count": 1, "hooting": {"_count": 1}}}, "Durmstrang": {"_count": 61, "rather": {"_count": 1, "than": {"_count": 1}}, "doesnt": {"_count": 1, "admit": {"_count": 1}}, "takes": {"_count": 1, "a": {"_count": 1}}, "students": {"_count": 11, "actually": {"_count": 1}, "were": {"_count": 5}, "had": {"_count": 1}, "entered": {"_count": 1}, "who": {"_count": 1}, "will": {"_count": 1}, "are": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "and": {"_count": 3, "Beauxbatons": {"_count": 2}, "Grindelwald": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "!": {"_count": 3}}, "will": {"_count": 4, "be": {"_count": 3}, "most": {"_count": 1}}, "differed": {"_count": 1, "from": {"_count": 1}}, "even": {"_count": 1, "Potions": {"_count": 1}}, "party": {"_count": 2, "to": {"_count": 1}, "was": {"_count": 1}}, "people": {"_count": 1, "are": {"_count": 1}}, "boys": {"_count": 1, "hopefully": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "headmaster": {"_count": 1, "": {"_count": 1}}, "lot": {"_count": 1, "she": {"_count": 1}}, "he": {"_count": 1, "read": {"_count": 1}}, "to": {"_count": 1, "give": {"_count": 1}}, "ship": {"_count": 9, "was": {"_count": 2}, "on": {"_count": 1}, "": {"_count": 4}, "moored": {"_count": 1}, "Harry": {"_count": 1}}, "champions": {"_count": 1, "misspelled": {"_count": 1}}, "champion": {"_count": 1, "as": {"_count": 1}}, "seemed": {"_count": 1, "determined": {"_count": 1}}, "ships": {"_count": 1, "portholes": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "Institute": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "Karkaroff": {"_count": 1}}, "ven": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "school": {"_count": 1}}, "felt": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 1, "nearfatal": {"_count": 1}}}, "Mudbloodlover": {"_count": 1, "and": {"_count": 1, "Durmstrang": {"_count": 1}}}, "Durmstrangs": {"_count": 4, "another": {"_count": 1, "wizarding": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "horses": {"_count": 1, "are": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "emphasis": {"_count": 4, "on": {"_count": 3, "the": {"_count": 3}}, "she": {"_count": 1, "put": {"_count": 1}}}, "traditionally": {"_count": 2, "been": {"_count": 1, "a": {"_count": 1}}, "reached": {"_count": 1, "Hogwarts": {"_count": 1}}}, "rivalry": {"_count": 1, "between": {"_count": 1, "all": {"_count": 1}}}, "moldering": {"_count": 2, "old": {"_count": 1, "ruin": {"_count": 1}}, "remains": {"_count": 1, "lay": {"_count": 1}}}, "DANGER": {"_count": 1, "DO": {"_count": 1, "NOT": {"_count": 1}}}, "ENTER": {"_count": 2, "UNSAFE": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "contact": {"_count": 1}}}, "UNSAFE": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Durmstrangll": {"_count": 1, "just": {"_count": 1, "look": {"_count": 1}}}, "min": {"_count": 2, "to": {"_count": 1, "an": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "outsider": {"_count": 4, "too": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "I": {"_count": 1, "suppose": {"_count": 1}}}, "Mugglerepelling": {"_count": 2, "charms": {"_count": 2, "on": {"_count": 1}, "Hermione": {"_count": 1}}}, "Unplottable": {"_count": 4, "Come": {"_count": 1, "again": {"_count": 1}}, "so": {"_count": 1, "Muggles": {"_count": 1}}, "will": {"_count": 1, "hold": {"_count": 1}}, "it": {"_count": 1, "will": {"_count": 1}}}, "capes": {"_count": 1, "as": {"_count": 1, "part": {"_count": 1}}}, "uniforms": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "stood": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}}, "glacier": {"_count": 1, "and": {"_count": 1, "make": {"_count": 1}}}, "steamy": {"_count": 3, "that": {"_count": 1, "the": {"_count": 1}}, "little": {"_count": 1, "place": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}}, "progressed": {"_count": 5, "including": {"_count": 1, "Seamus": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "vanishing": {"_count": 1}}, "Harry": {"_count": 1, "received": {"_count": 1}}, "furthest": {"_count": 1, "": {"_count": 1}}}, "formidable": {"_count": 3, "witch": {"_count": 1, "of": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "relived": {"_count": 1, "the": {"_count": 1, "Cup": {"_count": 1}}}, "fashionable": {"_count": 1, "in": {"_count": 1, "about": {"_count": 1}}}, "guffawed": {"_count": 5, "stupidly": {"_count": 1, "": {"_count": 1}}, "sycophantically": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 1, "shrieked": {"_count": 1}}, "gloatingly": {"_count": 1, "and": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}}, "associated": {"_count": 7, "with": {"_count": 6, "the": {"_count": 3}, "evildoers": {"_count": 1}, "exam": {"_count": 1}, "visiting": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}}, "junior": {"_count": 2, "to": {"_count": 1, "know": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}}, "Ronl": {"_count": 2, "said": {"_count": 1, "Hermione": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "reproachfully": {"_count": 8, "and": {"_count": 1, "she": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "Mrs": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}}, "ReparoV": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "shards": {"_count": 5, "flew": {"_count": 1, "back": {"_count": 1}}, "of": {"_count": 4, "china": {"_count": 1}, "glass": {"_count": 2}, "crystal": {"_count": 1}}}, "\u2018Fathers": {"_count": 1, "always": {"_count": 1, "associated": {"_count": 1}}}, "promotion": {"_count": 1, "any": {"_count": 1, "time": {"_count": 1}}}, "pulp": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "weren": {"_count": 1, "they": {"_count": 1}}}, "pitchdarkness": {"_count": 2, "of": {"_count": 1, "Hogsmeade": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Castle": {"_count": 7, "by": {"_count": 1, "sailing": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "however": {"_count": 1, "loomed": {"_count": 1}}, "but": {"_count": 1, "luckily": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "horseless": {"_count": 4, "carriages": {"_count": 2, "stood": {"_count": 1}, "that": {"_count": 1}}, "stagecoaches": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "TRIWIZARD": {"_count": 2, "TOURNAMENT": {"_count": 2, "Through": {"_count": 1}, "The": {"_count": 1}}}, "TOURNAMENT": {"_count": 2, "Through": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 1, "delegations": {"_count": 1}}}, "Leaning": {"_count": 1, "against": {"_count": 1, "the": {"_count": 1}}}, "Lightning": {"_count": 1, "flashed": {"_count": 1, "across": {"_count": 1}}}, "torchlit": {"_count": 3, "entrance": {"_count": 1, "hall": {"_count": 1}}, "corridor": {"_count": 1, "behind": {"_count": 1}}, "stone": {"_count": 1, "passageway": {"_count": 1}}}, "lakes": {"_count": 5, "going": {"_count": 1, "to": {"_count": 1}}, "floor": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "coppery": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "overflow": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "soak": {"_count": 2, "ARRGH": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "hand": {"_count": 1}}}, "ARRGH": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "waterfilled": {"_count": 1, "balloon": {"_count": 1, "had": {"_count": 1}}}, "Drenched": {"_count": 1, "and": {"_count": 1, "sputtering": {"_count": 1}}}, "efforts": {"_count": 22, "to": {"_count": 6, "get": {"_count": 2}, "keep": {"_count": 1}, "start": {"_count": 1}, "find": {"_count": 1}, "ignore": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "into": {"_count": 3, "helping": {"_count": 1}, "catching": {"_count": 1}, "it": {"_count": 1}}, "Cedric": {"_count": 1, "had": {"_count": 1}}, "that": {"_count": 1, "our": {"_count": 1}}, "upon": {"_count": 1, "maintaining": {"_count": 1}}, "of": {"_count": 1, "Angelina": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "tonight": {"_count": 1, "seem": {"_count": 1}}, "on": {"_count": 1, "getting": {"_count": 1}}, "are": {"_count": 1, "futile": {"_count": 1}}}, "bellcovered": {"_count": 1, "hat": {"_count": 1, "and": {"_count": 1}}}, "ONCE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "squarerimmed": {"_count": 1, "spectacles": {"_count": 1, "": {"_count": 1}}}, "lobbing": {"_count": 2, "a": {"_count": 1, "water": {"_count": 1}}, "it": {"_count": 1, "over": {"_count": 1}}}, "squirts": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Wheeeeeeeeee": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "insanely": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Into": {"_count": 4, "the": {"_count": 2, "Great": {"_count": 1}, "forest": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "nonbeing": {"_count": 1, "which": {"_count": 1}}}, "Pearly": {"_count": 1, "white": {"_count": 1, "and": {"_count": 1}}}, "dual": {"_count": 1, "purpose": {"_count": 1, "of": {"_count": 1}}}, "extrafestive": {"_count": 1, "and": {"_count": 1, "insuring": {"_count": 1}}}, "insuring": {"_count": 1, "that": {"_count": 1, "his": {"_count": 1}}}, "partially": {"_count": 6, "severed": {"_count": 3, "neck": {"_count": 3}}, "obscured": {"_count": 1, "could": {"_count": 1}}, "concealed": {"_count": 1, "ball": {"_count": 1}}, "blind": {"_count": 1, "panted": {"_count": 1}}}, "warily": {"_count": 7, "": {"_count": 6, ".": {"_count": 6}}, "wondering": {"_count": 1, "if": {"_count": 1}}}, "practically": {"_count": 4, "bouncing": {"_count": 1, "up": {"_count": 1}}, "royal": {"_count": 2, "": {"_count": 2}}, "hear": {"_count": 1, "her": {"_count": 1}}}, "Brothers": {"_count": 5, "and": {"_count": 1, "sisters": {"_count": 1}}, "My": {"_count": 1, "Life": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}}, "sisters": {"_count": 22, "usually": {"_count": 1, "go": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "are": {"_count": 2, "still": {"_count": 1}, "desperate": {"_count": 1}}, "going": {"_count": 1, "what": {"_count": 1}}, "arm": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "copied": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 2, "A": {"_count": 1}, "bridesmaid": {"_count": 1}}, "and": {"_count": 1, "of": {"_count": 1}}, "wheezing": {"_count": 1, "giggles": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}, "life": {"_count": 1, "I": {"_count": 1}}, "considered": {"_count": 1, "him": {"_count": 1}}, "hand": {"_count": 1, "and": {"_count": 1}}, "grasp": {"_count": 1, "": {"_count": 1}}, "ill": {"_count": 1, "health": {"_count": 1}}, "will": {"_count": 1, "live": {"_count": 1}}}, "Patils": {"_count": 2, "twins": {"_count": 1, "in": {"_count": 1}}, "nose": {"_count": 1, "was": {"_count": 1}}}, "presumably": {"_count": 5, "supervising": {"_count": 1, "the": {"_count": 1}}, "mending": {"_count": 1, "his": {"_count": 1}}, "led": {"_count": 1, "while": {"_count": 1}}, "at": {"_count": 1, "Rons": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}}, "supervising": {"_count": 1, "the": {"_count": 1, "drying": {"_count": 1}}}, "Tiny": {"_count": 7, "little": {"_count": 3, "Professor": {"_count": 1}, "bloke": {"_count": 1}, "thing": {"_count": 1}}, "Dennis": {"_count": 1, "Creevey": {"_count": 1}}, "black": {"_count": 1, "moving": {"_count": 1}}, "puffs": {"_count": 1, "of": {"_count": 1}}, "yellowing": {"_count": 1, "labels": {"_count": 1}}}, "sallowfaced": {"_count": 5, "hook": {"_count": 1, "nosed": {"_count": 1}}, "wizard": {"_count": 2, "with": {"_count": 2}}, "man": {"_count": 1, "who": {"_count": 1}}, "sourlooking": {"_count": 1, "woman": {"_count": 1}}}, "nosed": {"_count": 2, "greasyhaired": {"_count": 1, "Potions": {"_count": 1}}, "profile": {"_count": 1, "": {"_count": 1}}}, "greasyhaired": {"_count": 4, "Potions": {"_count": 1, "master": {"_count": 1}}, "kid": {"_count": 1, "he": {"_count": 1}}, "head": {"_count": 1, "and": {"_count": 1}}, "teenager": {"_count": 1, "sat": {"_count": 1}}}, "intensified": {"_count": 7, "last": {"_count": 1, "year": {"_count": 1}}, "and": {"_count": 1, "wind": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}, "her": {"_count": 1, "furious": {"_count": 1}}, "rather": {"_count": 1, "painfully": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}}, "thunderclap": {"_count": 1, "sounded": {"_count": 1, "outside": {"_count": 1}}}, "swum": {"_count": 2, "across": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "far": {"_count": 1}}}, "mousy": {"_count": 6, "hair": {"_count": 4, "who": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 1}, "wet": {"_count": 1}}, "brown": {"_count": 1, "hair": {"_count": 1}}, "wife": {"_count": 1, "": {"_count": 1}}}, "protruded": {"_count": 3, "from": {"_count": 2, "over": {"_count": 1}, "a": {"_count": 1}}, "a": {"_count": 1, "bottle": {"_count": 1}}}, "peers": {"_count": 1, "he": {"_count": 1, "caught": {"_count": 1}}}, "Creeveys": {"_count": 2, "eye": {"_count": 1, "gave": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "sewn": {"_count": 3, "There": {"_count": 1, "lived": {"_count": 1}}, "roughly": {"_count": 1, "together": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "renown": {"_count": 2, "Whose": {"_count": 1, "names": {"_count": 1}}, "is": {"_count": 1, "such": {"_count": 1}}}, "Bold": {"_count": 1, "Gryffindor": {"_count": 1, "from": {"_count": 1}}}, "glen": {"_count": 1, "Sweet": {"_count": 1, "Hufflepuff": {"_count": 1}}}, "valley": {"_count": 11, "broad": {"_count": 1, "Shrewd": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "laid": {"_count": 1, "out": {"_count": 1}}, "set": {"_count": 1, "on": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "belongs": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "\u2018the": {"_count": 1}}, "blanketed": {"_count": 1, "in": {"_count": 1}}}, "Shrewd": {"_count": 1, "Slytherin": {"_count": 1, "from": {"_count": 1}}}, "fen": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "educate": {"_count": 1, "young": {"_count": 1, "sorcerers": {"_count": 1}}}, "Thus": {"_count": 5, "Hogwarts": {"_count": 1, "School": {"_count": 1}}, "the": {"_count": 1, "Houses": {"_count": 1}}, "far": {"_count": 3, "my": {"_count": 1}, "as": {"_count": 1}, "however": {"_count": 1}}}, "Formed": {"_count": 1, "their": {"_count": 1, "own": {"_count": 1}}}, "virtues": {"_count": 1, "In": {"_count": 1, "the": {"_count": 1}}}, "Prized": {"_count": 1, "far": {"_count": 1, "beyond": {"_count": 1}}}, "workers": {"_count": 10, "were": {"_count": 2, "Most": {"_count": 1}, "so": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "toppling": {"_count": 1, "out": {"_count": 1}}, "beside": {"_count": 1, "them": {"_count": 1}}}, "worthy": {"_count": 13, "of": {"_count": 6, "admission": {"_count": 1}, "investigation": {"_count": 1}, "Harry": {"_count": 1}, "Malfoy": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}}, "ones": {"_count": 1, "When": {"_count": 1}}, "to": {"_count": 2, "compete": {"_count": 1}, "represent": {"_count": 1}}, "choice": {"_count": 1, "": {"_count": 1}}, "Gryffindor": {"_count": 1, "said": {"_count": 1}}, "possessor": {"_count": 1, "of": {"_count": 1}}, "goal": {"_count": 1, "then": {"_count": 1}}}, "admission": {"_count": 1, "And": {"_count": 1, "powerhungry": {"_count": 1}}}, "powerhungry": {"_count": 3, "Slytherin": {"_count": 1, "Loved": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "moron": {"_count": 1, "said": {"_count": 1}}}, "Loved": {"_count": 2, "those": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "said": {"_count": 1}}}, "Twas": {"_count": 1, "Gryffindor": {"_count": 1, "who": {"_count": 1}}}, "snug": {"_count": 3, "about": {"_count": 1, "your": {"_count": 1}}, "dry": {"_count": 1, "interiors": {"_count": 1}}, "silken": {"_count": 1, "wrappings": {"_count": 1}}}, "Sings": {"_count": 1, "a": {"_count": 1, "different": {"_count": 1}}}, "spends": {"_count": 3, "all": {"_count": 1, "year": {"_count": 1}}, "half": {"_count": 1, "her": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}}, "announces": {"_count": 1, "your": {"_count": 1, "House": {"_count": 1}}}, "appropriate": {"_count": 7, "table": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 3, "remind": {"_count": 1}, "having": {"_count": 1}, "the": {"_count": 1}}, "person": {"_count": 1, "": {"_count": 1}}, "measures": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}}, "Ackerley": {"_count": 3, "Stewart": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 1, "off": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "Stewart": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "Ackerley": {"_count": 2, "took": {"_count": 1}, "as": {"_count": 1}}}, "Baddock": {"_count": 4, "Malcolm": {"_count": 1, "": {"_count": 1}}, "joined": {"_count": 1, "the": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "Branstone": {"_count": 1, "Eleanor": {"_count": 1, "": {"_count": 1}}}, "Eleanor": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Cauldwell": {"_count": 1, "Owen": {"_count": 1, "": {"_count": 1}}}, "Owen": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "possess": {"_count": 24, "a": {"_count": 1, "very": {"_count": 1}}, "the": {"_count": 2, "bodies": {"_count": 1}, "meanest": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "your": {"_count": 1, "behavior": {"_count": 1}}, "you": {"_count": 2, "": {"_count": 1}, "without": {"_count": 1}}, "people": {"_count": 1, "or": {"_count": 1}}, "in": {"_count": 1, "such": {"_count": 1}}, "too": {"_count": 1, "but": {"_count": 1}}, "somebody": {"_count": 1, "else": {"_count": 1}}, "his": {"_count": 1, "soul": {"_count": 1}}, "magical": {"_count": 1, "secrets": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "them": {"_count": 3, "three": {"_count": 1}, "all": {"_count": 1}, "safely": {"_count": 1}}, "Harry": {"_count": 2, "while": {"_count": 1}, "again": {"_count": 1}}, "fabulous": {"_count": 1, "objects": {"_count": 1}}}, "stormtossed": {"_count": 1, "fathomsdeep": {"_count": 1, "lake": {"_count": 1}}}, "fathomsdeep": {"_count": 1, "lake": {"_count": 1, "and": {"_count": 1}}}, "Emma": {"_count": 1, "Dobbs": {"_count": 1, "": {"_count": 1}}}, "Dobbs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "degrees": {"_count": 5, "of": {"_count": 1, "fright": {"_count": 1}}, "visibility": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "howling": {"_count": 1, "": {"_count": 1}}}, "Ls": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Sortings": {"_count": 1, "much": {"_count": 1, "more": {"_count": 1}}}, "Madley": {"_count": 1, "Laura": {"_count": 1, "": {"_count": 1}}}, "Laura": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "batch": {"_count": 4, "of": {"_count": 4, "Gryffindors": {"_count": 1}, "cauldrons": {"_count": 1}, "pamphlets": {"_count": 1}, "homemade": {"_count": 1}}}, "McDonald": {"_count": 1, "Natalie": {"_count": 1, "": {"_count": 1}}}, "Natalie": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "InterHouse": {"_count": 4, "Championship": {"_count": 3, "for": {"_count": 1}, "": {"_count": 1}, "would": {"_count": 1}}, "Quidditch": {"_count": 1, "Cup": {"_count": 1}}}, "Pritchard": {"_count": 1, "Graham": {"_count": 1, "": {"_count": 1}}}, "Graham": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Quirke": {"_count": 1, "Orla": {"_count": 1, "": {"_count": 1}}}, "Orla": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Whitby": {"_count": 1, "Kevin": {"_count": 1, "": {"_count": 1}}}, "expectantly": {"_count": 7, "at": {"_count": 4, "his": {"_count": 1}, "Hermione": {"_count": 1}, "them": {"_count": 1}, "Ron": {"_count": 1}}, "youll": {"_count": 1, "have": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "ats": {"_count": 1, "beer": {"_count": 1, "said": {"_count": 1}}}, "beer": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "mashed": {"_count": 4, "potato": {"_count": 2, "": {"_count": 1}, "into": {"_count": 1}}, "potatoes": {"_count": 1, "onto": {"_count": 1}}, "parsnip": {"_count": 1, "for": {"_count": 1}}}, "Wha": {"_count": 14, "appened": {"_count": 1, "": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 7}}, "injuries": {"_count": 1, "": {"_count": 1}}, "oh": {"_count": 1, "yeah": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}, "worries": {"_count": 1, "me": {"_count": 1}}, "was": {"_count": 1, "tha": {"_count": 1}}, "Norberts": {"_count": 1, "a": {"_count": 1}}}, "uncivilized": {"_count": 1, "cant": {"_count": 1, "see": {"_count": 1}}}, "specter": {"_count": 1, "covered": {"_count": 1, "in": {"_count": 1}}}, "hacked": {"_count": 2, "off": {"_count": 2, "about": {"_count": 1}, "he": {"_count": 1}}}, "Wreaked": {"_count": 1, "havoc": {"_count": 1, "and": {"_count": 1}}}, "Pots": {"_count": 1, "and": {"_count": 1, "pans": {"_count": 1}}}, "Place": {"_count": 58, "swimming": {"_count": 1, "in": {"_count": 1}}, "London": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 5, "live": {"_count": 1}, "Harrys": {"_count": 1}, "of": {"_count": 1}, "the": {"_count": 1}, "then": {"_count": 1}}, "who": {"_count": 1, "did": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 24, "?": {"_count": 4}, ".": {"_count": 18}, "!": {"_count": 2}}, "he": {"_count": 1, "could": {"_count": 1}}, "straightaway": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "now": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "that": {"_count": 2, "Dumbledore": {"_count": 1}, "night": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "years": {"_count": 1}}, "shortly": {"_count": 1, "after": {"_count": 1}}, "as": {"_count": 2, "our": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 1, "if": {"_count": 1}}, "flashed": {"_count": 1, "into": {"_count": 1}}, "is": {"_count": 1, "out": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "since": {"_count": 1, "Mr": {"_count": 1}}, "shriveled": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 1, "long": {"_count": 1}}, "with": {"_count": 2, "no": {"_count": 1}, "its": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "might": {"_count": 1, "never": {"_count": 1}}}, "Terrified": {"_count": 2, "the": {"_count": 1, "houseelves": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Clang": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pensions": {"_count": 3, "and": {"_count": 1, "everything": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}}, "Sick": {"_count": 4, "leave": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "apprehension": {"_count": 1}}, "images": {"_count": 1, "swarmed": {"_count": 1}}, "at": {"_count": 1, "heart": {"_count": 1}}}, "cmon": {"_count": 6, "Ermyknee": {"_count": 1, "said": {"_count": 1}}, "theyll": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Harry": {"_count": 1, "Ron": {"_count": 1}}, "Ginny": {"_count": 1, "said": {"_count": 1}}}, "Ermyknee": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Slave": {"_count": 3, "labor": {"_count": 3, "said": {"_count": 1}, "": {"_count": 1}, "before": {"_count": 1}}}, "labor": {"_count": 4, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "before": {"_count": 1, "bidding": {"_count": 1}}, "saving": {"_count": 1, "appliances": {"_count": 1}}}, "Spotted": {"_count": 1, "dick": {"_count": 1, "look": {"_count": 1}}}, "dick": {"_count": 1, "look": {"_count": 1, "": {"_count": 1}}}, "gateau": {"_count": 3, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}}, "reminiscent": {"_count": 3, "of": {"_count": 2, "Professor": {"_count": 1}, "Uncle": {"_count": 1}}, "gleam": {"_count": 1, "in": {"_count": 1}}}, "demolished": {"_count": 5, "and": {"_count": 1, "the": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "half": {"_count": 1, "of": {"_count": 1}}, "many": {"_count": 1, "years": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "crumbs": {"_count": 1, "had": {"_count": 1, "faded": {"_count": 1}}}, "Hmph": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "snorted": {"_count": 1, "Professor": {"_count": 1}}}, "extended": {"_count": 10, "to": {"_count": 1, "include": {"_count": 1}}, "the": {"_count": 3, "bleeding": {"_count": 1}, "field": {"_count": 1}, "horse": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "leave": {"_count": 1, "of": {"_count": 1}}, "too": {"_count": 1, "reaching": {"_count": 1}}, "far": {"_count": 1, "into": {"_count": 1}}, "his": {"_count": 1, "campaign": {"_count": 1}}, "two": {"_count": 1, "fingers": {"_count": 1}}}, "Screaming": {"_count": 1, "Yoyos": {"_count": 1, "Fanged": {"_count": 1}}}, "Yoyos": {"_count": 1, "Fanged": {"_count": 1, "Frisbees": {"_count": 1}}}, "Fanged": {"_count": 6, "Frisbees": {"_count": 4, "and": {"_count": 1}, "down": {"_count": 1}, "are": {"_count": 1}, "some": {"_count": 1}}, "Geranium": {"_count": 1, "Harry": {"_count": 1}}, "Frisbee": {"_count": 1, "Hermione": {"_count": 1}}}, "Frisbees": {"_count": 4, "and": {"_count": 1, "EverBashing": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "banned": {"_count": 1}}, "some": {"_count": 1, "still": {"_count": 1}}}, "EverBashing": {"_count": 1, "Boomerangs": {"_count": 1, "": {"_count": 1}}}, "Boomerangs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "comprises": {"_count": 1, "some": {"_count": 1, "four": {"_count": 1}}}, "viewed": {"_count": 4, "in": {"_count": 1, "Mr": {"_count": 1}}, "at": {"_count": 1, "a": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}}, "soundlessly": {"_count": 8, "at": {"_count": 2, "Dumbledore": {"_count": 1}, "it": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "Seamus": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "undoubtedly": {"_count": 1, "framing": {"_count": 1}}}, "appalled": {"_count": 16, "to": {"_count": 3, "speak": {"_count": 2}, "see": {"_count": 1}}, "look": {"_count": 2, "on": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 4}}, "with": {"_count": 1, "herself": {"_count": 1}}, "at": {"_count": 3, "what": {"_count": 2}, "the": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "Hermione": {"_count": 1}}, "though": {"_count": 1, "his": {"_count": 1}}}, "shrouded": {"_count": 3, "in": {"_count": 2, "a": {"_count": 1}, "hoods": {"_count": 1}}, "figure": {"_count": 1, "was": {"_count": 1}}}, "grizzled": {"_count": 7, "dark": {"_count": 1, "gray": {"_count": 1}}, "gray": {"_count": 4, "hair": {"_count": 4}}, "hair": {"_count": 2, "were": {"_count": 1}, "": {"_count": 1}}}, "weathered": {"_count": 3, "wood": {"_count": 1, "by": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}}, "vaguest": {"_count": 1, "idea": {"_count": 1, "of": {"_count": 1}}}, "skilled": {"_count": 7, "with": {"_count": 1, "a": {"_count": 1}}, "witch": {"_count": 1, "or": {"_count": 1}}, "at": {"_count": 2, "Legilimency": {"_count": 1}, "Occlumency": {"_count": 1}}, "Legilimency": {"_count": 1, "to": {"_count": 1}}, "Aurors": {"_count": 1, "": {"_count": 1}}, "than": {"_count": 1, "Ollivander": {"_count": 1}}}, "chisel": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "scarred": {"_count": 11, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}, "face": {"_count": 3, "and": {"_count": 1}, "look": {"_count": 1}, "was": {"_count": 1}}, "the": {"_count": 1, "rest": {"_count": 1}}, "and": {"_count": 3, "stubbly": {"_count": 1}, "pitted": {"_count": 1}, "long": {"_count": 1}}, "plenty": {"_count": 1, "of": {"_count": 1}}, "snout": {"_count": 1, "": {"_count": 1}}}, "diagonal": {"_count": 1, "gash": {"_count": 1, "and": {"_count": 1}}}, "coin": {"_count": 7, "and": {"_count": 3, "a": {"_count": 1}, "because": {"_count": 1}, "Harry": {"_count": 1}}, "gleamed": {"_count": 1, "fat": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "through": {"_count": 1, "an": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "ceaselessly": {"_count": 2, "without": {"_count": 1, "blinking": {"_count": 1}}, "the": {"_count": 1, "surface": {"_count": 1}}}, "independently": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "Dumbledore": {"_count": 1}}}, "whiteness": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "unsmilingly": {"_count": 1, "and": {"_count": 1, "replied": {"_count": 1}}}, "gestured": {"_count": 17, "the": {"_count": 2, "man": {"_count": 1}, "very": {"_count": 1}}, "toward": {"_count": 3, "the": {"_count": 3}}, "at": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "around": {"_count": 3, "the": {"_count": 2}, "at": {"_count": 1}}, "hopelessly": {"_count": 1, "at": {"_count": 1}}, "Narcissa": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "Harry": {"_count": 2}}, "wordlessly": {"_count": 1, "out": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "sadly": {"_count": 1, "at": {"_count": 1}}}, "socket": {"_count": 7, "taking": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 2, "it": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "should": {"_count": 1}}, "Tonks": {"_count": 1, "whose": {"_count": 1}}}, "dismally": {"_count": 4, "into": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "across": {"_count": 1, "the": {"_count": 1}}}, "Moodys": {"_count": 83, "bizarre": {"_count": 1, "appearance": {"_count": 1}}, "arrival": {"_count": 1, "suddenly": {"_count": 1}}, "rolling": {"_count": 1, "eye": {"_count": 1}}, "keeping": {"_count": 1, "a": {"_count": 1}}, "eye": {"_count": 2, "whether": {"_count": 1}, "and": {"_count": 1}}, "first": {"_count": 1, "lesson": {"_count": 1}}, "distinctive": {"_count": 1, "clunking": {"_count": 1}}, "magical": {"_count": 10, "eye": {"_count": 9}, "one": {"_count": 1}}, "hand": {"_count": 3, "on": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "desk": {"_count": 1, "as": {"_count": 1}}, "fingers": {"_count": 1, "but": {"_count": 1}}, "eyes": {"_count": 1, "both": {"_count": 1}}, "blue": {"_count": 1, "eye": {"_count": 1}}, "gnarled": {"_count": 1, "hands": {"_count": 1}}, "been": {"_count": 1, "getting": {"_count": 1}}, "lesson": {"_count": 1, "though": {"_count": 1}}, "Defense": {"_count": 1, "Against": {"_count": 1}}, "voice": {"_count": 4, "echoing": {"_count": 1}, "and": {"_count": 1}, "whispered": {"_count": 1}, "asked": {"_count": 1}}, "book": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "punishment": {"_count": 1, "was": {"_count": 1}}, "real": {"_count": 1, "first": {"_count": 1}}, "right": {"_count": 2, "Harry": {"_count": 1}, "Sirius": {"_count": 1}}, "not": {"_count": 1, "here": {"_count": 1}}, "nose": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "next": {"_count": 1, "question": {"_count": 1}}, "wellknown": {"_count": 1, "habit": {"_count": 1}}, "lopsided": {"_count": 1, "gash": {"_count": 1}}, "face": {"_count": 4, "twisted": {"_count": 1}, "distinctly": {"_count": 1}, "was": {"_count": 1}, "had": {"_count": 1}}, "mismatched": {"_count": 1, "eyes": {"_count": 1}}, "office": {"_count": 5, "where": {"_count": 2}, "came": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}}, "searched": {"_count": 1, "his": {"_count": 1}}, "here": {"_count": 1, "to": {"_count": 1}}, "head": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "gvoice": {"_count": 1, "": {"_count": 1}}, "wooden": {"_count": 1, "leg": {"_count": 1}}, "wand": {"_count": 1, "was": {"_count": 1}}, "shoulder": {"_count": 1, "moving": {"_count": 1}}, "normal": {"_count": 1, "eye": {"_count": 1}}, "unconscious": {"_count": 1, "body": {"_count": 1}}, "limp": {"_count": 1, "form": {"_count": 1}}, "hip": {"_count": 1, "flask": {"_count": 1}}, "double": {"_count": 1, "": {"_count": 1}}, "clothes": {"_count": 1, "and": {"_count": 1}}, "fear": {"_count": 1, "of": {"_count": 1}}, "company": {"_count": 1, "only": {"_count": 1}}, "own": {"_count": 1, "head": {"_count": 1}}, "cloak": {"_count": 1, "now": {"_count": 1}}, "electricblue": {"_count": 1, "eye": {"_count": 1}}, "traveling": {"_count": 1, "cloak": {"_count": 1}}, "heavily": {"_count": 1, "scarred": {"_count": 1}}, "luggage": {"_count": 1, "cart": {"_count": 1}}, "days": {"_count": 1, "it": {"_count": 1}}, "spare": {"_count": 1, "Invisibility": {"_count": 1}}, "old": {"_count": 1, "photograph": {"_count": 1}}, "Invisibility": {"_count": 1, "Cloak": {"_count": 1}}, "magic": {"_count": 1, "eye": {"_count": 1}}, "curse": {"_count": 1, "": {"_count": 1}}}, "MacLEye": {"_count": 1, "Moody": {"_count": 1, "": {"_count": 1}}}, "fascination": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "all": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}}, "totally": {"_count": 7, "indifferent": {"_count": 1, "to": {"_count": 1}}, "bewildered": {"_count": 1, "running": {"_count": 1}}, "renounce": {"_count": 1, "him": {"_count": 1}}, "unrecognizable": {"_count": 1, "": {"_count": 1}}, "revolutionizing": {"_count": 1, "the": {"_count": 1}}, "pointless": {"_count": 1, "attempts": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "indifferent": {"_count": 9, "to": {"_count": 3, "his": {"_count": 1}, "injuries": {"_count": 1}, "him": {"_count": 1}}, "voice": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "unobscured": {"_count": 1, "by": {"_count": 1}}, "unknowing": {"_count": 1, "": {"_count": 1}}, "motionless": {"_count": 1, "": {"_count": 1}}}, "lessthan": {"_count": 1, "warm": {"_count": 1, "welcome": {"_count": 1}}}, "hip": {"_count": 10, "flask": {"_count": 10, "and": {"_count": 3}, "": {"_count": 3}, "that": {"_count": 1}, "hes": {"_count": 1}, "his": {"_count": 2}}}, "flask": {"_count": 27, "and": {"_count": 5, "took": {"_count": 1}, "went": {"_count": 1}, "his": {"_count": 1}, "a": {"_count": 1}, "force": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "of": {"_count": 7, "pumpkin": {"_count": 2}, "it": {"_count": 1}, "what": {"_count": 1}, "potion": {"_count": 1}, "muddy": {"_count": 1}, "Snapes": {"_count": 1}}, "that": {"_count": 1, "stood": {"_count": 1}}, "hes": {"_count": 1, "well": {"_count": 1}}, "his": {"_count": 2, "magical": {"_count": 1}, "electric": {"_count": 1}}, "corked": {"_count": 1, "it": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "was": {"_count": 2, "full": {"_count": 2}}, "exploded": {"_count": 1, "": {"_count": 1}}, "conjured": {"_count": 1, "from": {"_count": 1}}, "gripped": {"_count": 1, "tightly": {"_count": 1}}}, "draught": {"_count": 2, "from": {"_count": 2, "it": {"_count": 1}, "his": {"_count": 1}}}, "hosting": {"_count": 1, "a": {"_count": 1, "very": {"_count": 1}}}, "Triwizard": {"_count": 81, "Tournament": {"_count": 46, "will": {"_count": 1}, "": {"_count": 19}, "was": {"_count": 2}, "yet": {"_count": 1}, "Harry": {"_count": 1}, "didnt": {"_count": 1}, "is": {"_count": 2}, "Dumbledore": {"_count": 1}, "filled": {"_count": 1}, "played": {"_count": 1}, "Hed": {"_count": 1}, "because": {"_count": 1}, "and": {"_count": 4}, "for": {"_count": 1}, "or": {"_count": 1}, "you": {"_count": 1}, "would": {"_count": 1}, "without": {"_count": 1}, "to": {"_count": 1}, "last": {"_count": 2}, "quite": {"_count": 1}, "said": {"_count": 1}}, "Cup": {"_count": 20, "the": {"_count": 2}, "to": {"_count": 1}, "": {"_count": 5}, "will": {"_count": 1}, "in": {"_count": 1}, "that": {"_count": 1}, "was": {"_count": 1}, "which": {"_count": 1}, "aloft": {"_count": 1}, "it": {"_count": 1}, "at": {"_count": 1}, "and": {"_count": 1}, "first": {"_count": 1}, "into": {"_count": 1}, "tonight": {"_count": 1}}, "champion": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "Tournaments": {"_count": 2, "happening": {"_count": 1}, "aim": {"_count": 1}}, "champions": {"_count": 1, "have": {"_count": 1}}, "event": {"_count": 1, "and": {"_count": 1}}, "clue": {"_count": 1, "": {"_count": 1}}, "judge": {"_count": 1, "": {"_count": 1}}, "winnings": {"_count": 4, "": {"_count": 1}, "had": {"_count": 1}, "he": {"_count": 1}, "last": {"_count": 1}}, "and": {"_count": 1, "everything": {"_count": 1}}, "maze": {"_count": 2, "two": {"_count": 1}, "alive": {"_count": 1}}}, "Tournament": {"_count": 50, "will": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 21, ".": {"_count": 18}, "?": {"_count": 3}}, "was": {"_count": 2, "first": {"_count": 1}, "coming": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "1792": {"_count": 1}}, "Harry": {"_count": 1, "read": {"_count": 1}}, "didnt": {"_count": 1, "they": {"_count": 1}}, "is": {"_count": 2, "about": {"_count": 2}}, "Dumbledore": {"_count": 1, "continued": {"_count": 1}}, "tasks": {"_count": 1, "and": {"_count": 1}}, "filled": {"_count": 1, "his": {"_count": 1}}, "played": {"_count": 1, "again": {"_count": 1}}, "Hed": {"_count": 1, "want": {"_count": 1}}, "because": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 4, "it": {"_count": 1}, "always": {"_count": 1}, "an": {"_count": 1}, "then": {"_count": 1}}, "for": {"_count": 1, "which": {"_count": 1}}, "or": {"_count": 1, "even": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "without": {"_count": 1, "appearing": {"_count": 1}}, "to": {"_count": 1, "help": {"_count": 1}}, "last": {"_count": 2, "year": {"_count": 2}}, "quite": {"_count": 1, "routine": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "JOKING": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "involves": {"_count": 4, "so": {"_count": 1, "I": {"_count": 1}}, "sneaking": {"_count": 1, "Muggle": {"_count": 1}}, "warning": {"_count": 1, "the": {"_count": 1}}, "treasure": {"_count": 1, "you": {"_count": 1}}}, "established": {"_count": 3, "some": {"_count": 1, "seven": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "procedures": {"_count": 1, "": {"_count": 1}}}, "represent": {"_count": 4, "each": {"_count": 1, "school": {"_count": 1}}, "their": {"_count": 1, "schools": {"_count": 1}}, "Slytherin": {"_count": 2, "you": {"_count": 1}, "that": {"_count": 1}}}, "champions": {"_count": 84, "competed": {"_count": 1, "in": {"_count": 1}}, "will": {"_count": 5, "take": {"_count": 1}, "face": {"_count": 2}, "be": {"_count": 2}}, "are": {"_count": 6, "": {"_count": 1}, "chosen": {"_count": 1}, "not": {"_count": 1}, "exempted": {"_count": 1}, "ready": {"_count": 1}, "congregating": {"_count": 1}}, "get": {"_count": 1, "awarded": {"_count": 1}}, "were": {"_count": 6, "supposed": {"_count": 1}, "now": {"_count": 2}, "feeling": {"_count": 1}, "no": {"_count": 1}, "doing": {"_count": 1}}, "efforts": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "attentiveness": {"_count": 1}}, "in": {"_count": 1, "many": {"_count": 1}}, "compete": {"_count": 1, "in": {"_count": 1}}, "have": {"_count": 4, "twentyfour": {"_count": 1}, "died": {"_count": 1}, "got": {"_count": 1}, "to": {"_count": 1}}, "re": {"_count": 1, "going": {"_count": 1}}, "and": {"_count": 8, "wondering": {"_count": 1}, "their": {"_count": 5}, "hostages": {"_count": 1}, "leaving": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 17}, "?": {"_count": 2}}, "names": {"_count": 1, "are": {"_count": 1}}, "every": {"_count": 1, "ounce": {"_count": 1}}, "or": {"_count": 1, "have": {"_count": 1}}, "their": {"_count": 1, "instructions": {"_count": 1}}, "downstairs": {"_count": 1, "was": {"_count": 1}}, "glory": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "corrected": {"_count": 1}}, "Very": {"_count": 1, "well": {"_count": 1}}, "is": {"_count": 2, "hidden": {"_count": 1}, "it": {"_count": 1}}, "what": {"_count": 1, "do": {"_count": 1}}, "misspelled": {"_count": 1, "had": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "arent": {"_count": 1, "supposed": {"_count": 1}}, "everything": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "tent": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "done": {"_count": 1}}, "approached": {"_count": 1, "the": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "spacing": {"_count": 1, "them": {"_count": 1}}, "merpeople": {"_count": 1, "Ron": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}, "as": {"_count": 1, "follows": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "are": {"_count": 1}}, "families": {"_count": 1, "are": {"_count": 1}}, "please": {"_count": 1, "follow": {"_count": 1}}, "nodded": {"_count": 1, "": {"_count": 1}}}, "competed": {"_count": 1, "in": {"_count": 1, "three": {"_count": 1}}}, "establishing": {"_count": 2, "ties": {"_count": 1, "between": {"_count": 1}}, "Wizard": {"_count": 1, "rule": {"_count": 1}}}, "toll": {"_count": 2, "mounted": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "discontinued": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "majority": {"_count": 3, "of": {"_count": 2, "students": {"_count": 1}, "his": {"_count": 1}}, "motion": {"_count": 1, "passed": {"_count": 1}}}, "reinstate": {"_count": 2, "the": {"_count": 2, "tournament": {"_count": 1}, "Triwizard": {"_count": 1}}}, "ripe": {"_count": 3, "for": {"_count": 2, "another": {"_count": 1}, "a": {"_count": 1}}, "old": {"_count": 1, "age": {"_count": 1}}}, "ensure": {"_count": 33, "that": {"_count": 23, "this": {"_count": 1}, "no": {"_count": 1}, "they": {"_count": 1}, "you": {"_count": 2}, "he": {"_count": 4}, "Harry": {"_count": 1}, "the": {"_count": 5}, "in": {"_count": 1}, "it": {"_count": 2}, "every": {"_count": 1}, "we": {"_count": 1}, "Ron": {"_count": 1}, "she": {"_count": 1}, "fewer": {"_count": 1}}, "she": {"_count": 1, "kept": {"_count": 1}}, "your": {"_count": 1, "safety": {"_count": 1}}, "the": {"_count": 4, "boys": {"_count": 1}, "continued": {"_count": 1}, "bodily": {"_count": 1}, "safety": {"_count": 1}}, "a": {"_count": 1, "classs": {"_count": 1}}, "an": {"_count": 1, "even": {"_count": 1}}, "their": {"_count": 1, "protection": {"_count": 1}}, "Harrys": {"_count": 1, "safety": {"_count": 1}}}, "shortlisted": {"_count": 2, "contenders": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "contenders": {"_count": 2, "in": {"_count": 1, "October": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}}, "selection": {"_count": 7, "of": {"_count": 7, "the": {"_count": 2}, "candidates": {"_count": 1}, "food": {"_count": 2}, "rusty": {"_count": 1}, "their": {"_count": 1}}}, "impartial": {"_count": 6, "judge": {"_count": 4, "will": {"_count": 1}, "into": {"_count": 2}, "whos": {"_count": 1}}, "selector": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "compete": {"_count": 19, "for": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 6, "the": {"_count": 5}, "a": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "that": {"_count": 1, "this": {"_count": 1}}, "also": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "asnt": {"_count": 1, "e": {"_count": 1}}, "against": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "that": {"_count": 1}}, "Stupefy": {"_count": 1, "yelled": {"_count": 1}}}, "prize": {"_count": 13, "money": {"_count": 5, "": {"_count": 2}, "zis": {"_count": 1}, "eh": {"_count": 1}, "he": {"_count": 1}}, "fer": {"_count": 1, "whoever": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "off": {"_count": 1, "a": {"_count": 1}}, "beyond": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "of": {"_count": 1, "note": {"_count": 1}}, "for": {"_count": 1, "having": {"_count": 1}}}, "riches": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "were": {"_count": 1, "frightening": {"_count": 1}}}, "visualizing": {"_count": 1, "himself": {"_count": 1, "as": {"_count": 1}}}, "quieted": {"_count": 2, "once": {"_count": 1, "more": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "participating": {"_count": 3, "schools": {"_count": 3, "along": {"_count": 1}, "are": {"_count": 1}, "": {"_count": 1}}}, "impose": {"_count": 2, "an": {"_count": 1, "age": {"_count": 1}}, "upon": {"_count": 1, "you": {"_count": 1}}}, "restriction": {"_count": 2, "on": {"_count": 1, "contenders": {"_count": 1}}, "was": {"_count": 1, "only": {"_count": 1}}}, "ensuring": {"_count": 5, "that": {"_count": 4, "no": {"_count": 1}, "his": {"_count": 1}, "Hogwarts": {"_count": 1}, "he": {"_count": 1}}, "the": {"_count": 1, "continued": {"_count": 1}}}, "hoodwinks": {"_count": 1, "our": {"_count": 1, "impartial": {"_count": 1}}}, "submitting": {"_count": 1, "yourself": {"_count": 1, "if": {"_count": 1}}}, "delegations": {"_count": 2, "from": {"_count": 2, "Beauxbatons": {"_count": 2}}}, "extend": {"_count": 5, "every": {"_count": 1, "courtesy": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 2, "arm": {"_count": 1}, "power": {"_count": 1}}, "life": {"_count": 1, "it": {"_count": 1}}}, "courtesy": {"_count": 4, "to": {"_count": 1, "our": {"_count": 1}}, "of": {"_count": 3, "looking": {"_count": 1}, "calling": {"_count": 1}, "his": {"_count": 1}}}, "wholehearted": {"_count": 2, "support": {"_count": 1, "to": {"_count": 1}}, "enjoyment": {"_count": 1, "drinking": {"_count": 1}}}, "Bedtime": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Chop": {"_count": 1, "chop": {"_count": 1, "": {"_count": 1}}}, "swarmed": {"_count": 4, "toward": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}}, "championsll": {"_count": 1, "get": {"_count": 1, "to": {"_count": 1}}}, "debating": {"_count": 6, "the": {"_count": 2, "ways": {"_count": 1}, "possible": {"_count": 1}}, "in": {"_count": 1, "whispers": {"_count": 1}}, "exactly": {"_count": 1, "the": {"_count": 1}}, "whether": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "best": {"_count": 1}}}, "Aging": {"_count": 3, "Potion": {"_count": 3, "might": {"_count": 1}, "shouldnt": {"_count": 1}, "dung": {"_count": 1}}}, "narrower": {"_count": 3, "staircase": {"_count": 2, "": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "grand": {"_count": 6, "want": {"_count": 1, "me": {"_count": 1}}, "Harry": {"_count": 1, "grand": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "effect": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "funeral": {"_count": 1}}, "plans": {"_count": 1, "": {"_count": 1}}}, "upholding": {"_count": 3, "the": {"_count": 2, "family": {"_count": 1}, "twisted": {"_count": 1}}, "rules": {"_count": 1, "could": {"_count": 1}}}, "oops": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "notoriously": {"_count": 2, "poor": {"_count": 1, "": {"_count": 1}}, "jinxhappy": {"_count": 1, "exAuror": {"_count": 1}}}, "armpits": {"_count": 2, "and": {"_count": 1, "pulled": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wheezily": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Balderdash": {"_count": 4, "said": {"_count": 2, "George": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "warmed": {"_count": 1, "the": {"_count": 1, "circular": {"_count": 1}}}, "headboard": {"_count": 4, "and": {"_count": 1, "Dean": {"_count": 1}}, "for": {"_count": 1, "instance": {"_count": 1}}, "a": {"_count": 2, "tall": {"_count": 1}, "spiders": {"_count": 1}}}, "Mental": {"_count": 2, "Ron": {"_count": 1, "sighed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "stationary": {"_count": 8, "soccer": {"_count": 1, "players": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 2, "midair": {"_count": 1}, "deserted": {"_count": 1}}, "spoon": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "walking": {"_count": 1, "had": {"_count": 1}}, "within": {"_count": 1, "their": {"_count": 1}}}, "raging": {"_count": 7, "outside": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "bellowing": {"_count": 1}, "storming": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "wind": {"_count": 1, "": {"_count": 1}}, "inside": {"_count": 1, "Harrys": {"_count": 1}}, "before": {"_count": 1, "him": {"_count": 1}}}, "Chos": {"_count": 16, "face": {"_count": 2, "stood": {"_count": 1}, "shining": {"_count": 1}}, "voice": {"_count": 2, "echoing": {"_count": 1}, "was": {"_count": 1}}, "head": {"_count": 2, "was": {"_count": 1}, "and": {"_count": 1}}, "boyfriend": {"_count": 1, "and": {"_count": 1}}, "robes": {"_count": 1, "to": {"_count": 1}}, "friend": {"_count": 2, "shrieked": {"_count": 1}, "give": {"_count": 1}}, "parting": {"_count": 1, "wave": {"_count": 1}}, "feeling": {"_count": 1, "at": {"_count": 1}}, "hand": {"_count": 1, "was": {"_count": 1}}, "curlyhaired": {"_count": 1, "friend": {"_count": 1}}, "anger": {"_count": 1, "of": {"_count": 1}}, "eyes": {"_count": 1, "met": {"_count": 1}}}, "MADEYE": {"_count": 2, "MOODY": {"_count": 1, "The": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "MOODY": {"_count": 1, "The": {"_count": 1, "storm": {"_count": 1}}}, "swirled": {"_count": 11, "overhead": {"_count": 1, "as": {"_count": 1}}, "murkily": {"_count": 1, "as": {"_count": 1}}, "around": {"_count": 3, "staring": {"_count": 1}, "them": {"_count": 1}, "Harry": {"_count": 1}}, "smoothly": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "rather": {"_count": 1}}, "silvery": {"_count": 1, "white": {"_count": 1}}, "and": {"_count": 1, "shimmered": {"_count": 1}}, "darkly": {"_count": 1, "above": {"_count": 1}}, "silver": {"_count": 1, "white": {"_count": 1}}}, "aging": {"_count": 1, "themselves": {"_count": 1, "and": {"_count": 1}}}, "bluffing": {"_count": 2, "their": {"_count": 1, "way": {"_count": 1}}, "said": {"_count": 1, "Ernie": {"_count": 1}}}, "liberal": {"_count": 2, "amounts": {"_count": 2, "of": {"_count": 2}}}, "preoccupation": {"_count": 2, "lasted": {"_count": 1, "all": {"_count": 1}}, "about": {"_count": 1, "pajamas": {"_count": 1}}}, "ugliest": {"_count": 3, "plants": {"_count": 1, "Harry": {"_count": 1}}, "an": {"_count": 1, "the": {"_count": 1}}, "angel": {"_count": 1, "Harry": {"_count": 1}}}, "vertically": {"_count": 2, "out": {"_count": 1, "of": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}}, "soil": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "splattering": {"_count": 1, "his": {"_count": 1}}}, "squirming": {"_count": 6, "slightly": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Crookshanks": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "mixture": {"_count": 1, "of": {"_count": 1}}}, "Bubotubers": {"_count": 1, "Professor": {"_count": 1, "Sprout": {"_count": 1}}}, "pus": {"_count": 14, "The": {"_count": 1, "what": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "I": {"_count": 1, "say": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "and": {"_count": 2, "now": {"_count": 1}, "the": {"_count": 1}}, "than": {"_count": 1, "miss": {"_count": 1}}, "off": {"_count": 1, "her": {"_count": 1}}, "added": {"_count": 1, "or": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Pus": {"_count": 1, "Finnigan": {"_count": 1, "pus": {"_count": 1}}}, "Wear": {"_count": 2, "your": {"_count": 1, "dragon": {"_count": 1}}, "that": {"_count": 1, "cloak": {"_count": 1}}}, "undiluted": {"_count": 1, "bubotuber": {"_count": 1, "pus": {"_count": 1}}}, "bubotuber": {"_count": 6, "pus": {"_count": 6, "": {"_count": 4}, "than": {"_count": 1}, "added": {"_count": 1}}}, "Squeezing": {"_count": 2, "the": {"_count": 1, "bubotubers": {"_count": 1}}, "herself": {"_count": 1, "in": {"_count": 1}}}, "bubotubers": {"_count": 1, "was": {"_count": 1, "disgusting": {"_count": 1}}}, "satisfying": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "especially": {"_count": 1, "because": {"_count": 1}}, "memories": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "also": {"_count": 1}}, "about": {"_count": 1, "seeing": {"_count": 1}}}, "yellowishgreen": {"_count": 1, "liquid": {"_count": 1, "burst": {"_count": 1}}}, "petrol": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "gushed": {"_count": 1, "over": {"_count": 1}}}, "Thisll": {"_count": 3, "keep": {"_count": 1, "Madam": {"_count": 1}}, "liven": {"_count": 1, "you": {"_count": 1}}, "do": {"_count": 1, "it": {"_count": 1}}}, "stoppering": {"_count": 1, "the": {"_count": 1, "last": {"_count": 1}}}, "remedy": {"_count": 3, "for": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "an": {"_count": 1}}}, "stubborn": {"_count": 5, "forms": {"_count": 1, "of": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "bit": {"_count": 1, "of": {"_count": 1}}}, "Eloise": {"_count": 5, "Midgen": {"_count": 4, "said": {"_count": 1}, "say": {"_count": 1}, "starting": {"_count": 1}, "has": {"_count": 1}}, "Midgens": {"_count": 1, "acne": {"_count": 1}}}, "Midgen": {"_count": 4, "said": {"_count": 1, "Hannah": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "has": {"_count": 1, "already": {"_count": 1}}}, "Silly": {"_count": 2, "girl": {"_count": 1, "said": {"_count": 1}}, "little": {"_count": 1, "girl": {"_count": 1}}}, "Mornin": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "BlastEnded": {"_count": 15, "Skrewts": {"_count": 10, "": {"_count": 3}, "in": {"_count": 1}, "grunted": {"_count": 1}, "Hagrid": {"_count": 1}, "highly": {"_count": 1}, "perhaps": {"_count": 1}, "again": {"_count": 1}, "had": {"_count": 1}}, "Skrewt": {"_count": 5, "": {"_count": 4}, "but": {"_count": 1}}}, "Skrewts": {"_count": 15, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}, "in": {"_count": 1, "Harrys": {"_count": 1}}, "were": {"_count": 1, "growing": {"_count": 1}}, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "doing": {"_count": 1, "all": {"_count": 1}}, "grunted": {"_count": 1, "Hagrid": {"_count": 1}}, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "highly": {"_count": 1, "dangerous": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "because": {"_count": 1}}, "perhaps": {"_count": 1, "too": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}, "had": {"_count": 1, "its": {"_count": 1}}}, "Eurgh": {"_count": 4, "": {"_count": 2, "!": {"_count": 2}}, "just": {"_count": 1, "about": {"_count": 1}}, "Hagrid": {"_count": 1, "whats": {"_count": 1}}}, "summed": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "deformed": {"_count": 1, "shellless": {"_count": 1, "lobsters": {"_count": 1}}}, "shellless": {"_count": 3, "lobsters": {"_count": 1, "horribly": {"_count": 1}}, "and": {"_count": 1, "colorless": {"_count": 1}}, "underside": {"_count": 1, "": {"_count": 1}}}, "lobsters": {"_count": 1, "horribly": {"_count": 1, "pale": {"_count": 1}}}, "skrewt": {"_count": 15, "and": {"_count": 4, "with": {"_count": 1}, "take": {"_count": 1}, "started": {"_count": 1}, "shouted": {"_count": 1}}, "was": {"_count": 2, "left": {"_count": 1}, "inches": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "off": {"_count": 1, "with": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "hatching": {"_count": 1, "": {"_count": 1}}, "issued": {"_count": 1, "a": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}}, "phut": {"_count": 1, "it": {"_count": 1, "would": {"_count": 1}}}, "Ony": {"_count": 6, "jus": {"_count": 1, "hatched": {"_count": 1}}, "trouble": {"_count": 1, "is": {"_count": 1}}, "don": {"_count": 1, "go": {"_count": 1}}, "their": {"_count": 1, "deaths": {"_count": 1}}, "anythin": {"_count": 1, "ter": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}}, "project": {"_count": 4, "of": {"_count": 1, "it": {"_count": 1}}, "suggested": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "began": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "feedin": {"_count": 1, "em": {"_count": 1, "today": {"_count": 1}}}, "ant": {"_count": 2, "eggs": {"_count": 1, "an": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}}, "livers": {"_count": 1, "an": {"_count": 1, "a": {"_count": 1}}}, "affection": {"_count": 10, "for": {"_count": 7, "Hagrid": {"_count": 1}, "his": {"_count": 1}, "any": {"_count": 1}, "both": {"_count": 1}, "the": {"_count": 1}, "Luna": {"_count": 1}, "Minerva": {"_count": 1}}, "stretched": {"_count": 1, "just": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "admiration": {"_count": 1}}}, "squelchy": {"_count": 1, "handfuls": {"_count": 1, "of": {"_count": 1}}}, "skrewts": {"_count": 31, "didnt": {"_count": 1, "seem": {"_count": 1}}, "are": {"_count": 1, "small": {"_count": 1}}, "again": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 2, "make": {"_count": 1}, "needed": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 1}, "laid": {"_count": 1}}, "then": {"_count": 1, "turned": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "because": {"_count": 1, "his": {"_count": 1}}, "ends": {"_count": 1, "would": {"_count": 1}}, "left": {"_count": 2, "apparently": {"_count": 1}, "or": {"_count": 1}}, "the": {"_count": 1, "most": {"_count": 1}}, "it": {"_count": 1, "transpired": {"_count": 1}}, "rampaged": {"_count": 1, "around": {"_count": 1}}, "though": {"_count": 1, "at": {"_count": 1}}, "sting": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "": {"_count": 1}}, "illegally": {"_count": 1, "or": {"_count": 1}}, "now": {"_count": 1, "and": {"_count": 1}}, "would": {"_count": 1, "probably": {"_count": 1}}, "Harry": {"_count": 1, "hurried": {"_count": 1}}, "armor": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "stings": {"_count": 3, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "and": {"_count": 1, "their": {"_count": 1}}, "burns": {"_count": 1, "embedded": {"_count": 1}}}, "males": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "females": {"_count": 2, "Ve": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Ve": {"_count": 7, "got": {"_count": 1, "sorta": {"_count": 1}}, "have": {"_count": 1, "just": {"_count": 1}}, "bin": {"_count": 1, "livid": {"_count": 1}}, "you": {"_count": 3, "": {"_count": 1}, "put": {"_count": 1}, "left": {"_count": 1}}, "they": {"_count": 1, "gone": {"_count": 1}}}, "sucker": {"_count": 2, "things": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "bellies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sting": {"_count": 9, "and": {"_count": 2, "bite": {"_count": 1}, "tightened": {"_count": 1}}, "the": {"_count": 1, "blasting": {"_count": 1}}, "arched": {"_count": 1, "quivering": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "gulped": {"_count": 1}}, "was": {"_count": 1, "curled": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "bite": {"_count": 1}}}, "amazingly": {"_count": 1, "magical": {"_count": 1, "but": {"_count": 1}}}, "period": {"_count": 12, "during": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "neither": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "overlooked": {"_count": 1, "the": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "after": {"_count": 1, "break": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "before": {"_count": 1, "Defense": {"_count": 1}}, "of": {"_count": 1, "our": {"_count": 1}}}, "lethal": {"_count": 3, "the": {"_count": 1, "better": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "littleknown": {"_count": 1}}}, "seasickness": {"_count": 1, "or": {"_count": 1, "something": {"_count": 1}}}, "puke": {"_count": 1, "instead": {"_count": 1, "": {"_count": 1}}}, "sprouts": {"_count": 8, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "looking": {"_count": 1, "badtempered": {"_count": 1}}, "a": {"_count": 1, "head": {"_count": 1}}, "for": {"_count": 1, "Mrs": {"_count": 1}}, "without": {"_count": 1, "magic": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "shovel": {"_count": 1, "down": {"_count": 1, "her": {"_count": 1}}}, "stepladder": {"_count": 3, "led": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}}, "shawls": {"_count": 13, "": {"_count": 3, ".": {"_count": 3}}, "around": {"_count": 3, "their": {"_count": 2}, "her": {"_count": 1}}, "and": {"_count": 3, "glittering": {"_count": 1}, "scarves": {"_count": 1}, "many": {"_count": 1}}, "tight": {"_count": 1, "about": {"_count": 1}}, "her": {"_count": 2, "eyes": {"_count": 2}}, "several": {"_count": 1, "sherry": {"_count": 1}}}, "baseless": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "alas": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "our": {"_count": 1, "fate": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}}, "stonily": {"_count": 1, "back": {"_count": 1, "": {"_count": 1}}}, "celestial": {"_count": 2, "dance": {"_count": 1, "": {"_count": 1}}, "globes": {"_count": 1, "and": {"_count": 1}}}, "Human": {"_count": 1, "destiny": {"_count": 1, "may": {"_count": 1}}}, "deciphered": {"_count": 2, "by": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "cramped": {"_count": 1}}}, "planetary": {"_count": 4, "rays": {"_count": 1, "which": {"_count": 1}}, "movements": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "divination": {"_count": 1, "": {"_count": 1}}}, "intermingle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dullwitted": {"_count": 1, "and": {"_count": 1, "Professor": {"_count": 1}}}, "rambling": {"_count": 2, "talks": {"_count": 1, "on": {"_count": 1}}, "journey": {"_count": 1, "because": {"_count": 1}}}, "spellbound": {"_count": 1, "though": {"_count": 1, "he": {"_count": 1}}}, "brand": {"_count": 5, "of": {"_count": 4, "fortunetelling": {"_count": 1}, "magic": {"_count": 1}, "fertilizer": {"_count": 1}, "reasoned": {"_count": 1}}, "on": {"_count": 1, "Wormtails": {"_count": 1}}}, "spooky": {"_count": 1, "manner": {"_count": 1, "": {"_count": 1}}}, "genuine": {"_count": 7, "when": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "snore": {"_count": 1, "and": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "sword": {"_count": 1, "of": {"_count": 1}}, "we": {"_count": 1, "must": {"_count": 1}}}, "dozing": {"_count": 5, "off": {"_count": 1, "lost": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}, "peacefully": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "it": {"_count": 1}}, "lightly": {"_count": 1, "in": {"_count": 1}}}, "baleful": {"_count": 2, "influence": {"_count": 1, "of": {"_count": 1}}, "presence": {"_count": 1, "again": {"_count": 1}}}, "Saturn": {"_count": 6, "said": {"_count": 1, "Professor": {"_count": 1}}, "dear": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "was": {"_count": 1, "surely": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "like": {"_count": 1, "now": {"_count": 1}}}, "Born": {"_count": 2, "under": {"_count": 1, "what": {"_count": 1}}, "to": {"_count": 1, "those": {"_count": 1}}}, "planet": {"_count": 3, "Saturn": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "there": {"_count": 1, "but": {"_count": 1}}}, "riveted": {"_count": 1, "by": {"_count": 1, "this": {"_count": 1}}}, "birth": {"_count": 10, "": {"_count": 4, ".": {"_count": 4}}, "to": {"_count": 2, "me": {"_count": 1}, "a": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "Who": {"_count": 1, "registered": {"_count": 1}}, "and": {"_count": 1, "death": {"_count": 1}}, "Mudblood": {"_count": 1, "Severus": {"_count": 1}}}, "stature": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "losses": {"_count": 4, "so": {"_count": 1, "young": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "endowed": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "midwinter": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "hacking": {"_count": 3, "cough": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "stabbing": {"_count": 1}}}, "requiring": {"_count": 1, "much": {"_count": 1, "consultation": {"_count": 1}}}, "consultation": {"_count": 3, "of": {"_count": 1, "timetables": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "McGonagalls": {"_count": 1}}}, "timetables": {"_count": 2, "and": {"_count": 1, "calculation": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "calculation": {"_count": 1, "of": {"_count": 1, "angles": {"_count": 1}}}, "Neptunes": {"_count": 2, "here": {"_count": 1, "said": {"_count": 1}}, "appear": {"_count": 1, "in": {"_count": 1}}}, "mystical": {"_count": 3, "whisper": {"_count": 2, "when": {"_count": 1}, "that": {"_count": 1}}, "effect": {"_count": 1, "was": {"_count": 1}}}, "midget": {"_count": 1, "in": {"_count": 1, "glasses": {"_count": 1}}}, "unaspected": {"_count": 1, "planet": {"_count": 1, "": {"_count": 1}}}, "Uranus": {"_count": 5, "my": {"_count": 1, "dear": {"_count": 1}}, "too": {"_count": 1, "Lavender": {"_count": 1}}, "get": {"_count": 1, "too": {"_count": 1}}, "up": {"_count": 1, "close": {"_count": 1}}, "ha": {"_count": 1, "ha": {"_count": 1}}}, "detailed": {"_count": 8, "analysis": {"_count": 1, "of": {"_count": 1}}, "account": {"_count": 1, "of": {"_count": 1}}, "yet": {"_count": 1, "he": {"_count": 1}}, "questions": {"_count": 1, "at": {"_count": 1}}, "plan": {"_count": 1, "of": {"_count": 1}}, "training": {"_count": 1, "schemes": {"_count": 1}}, "knowledge": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "analysis": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "airyfairy": {"_count": 1, "self": {"_count": 1, "": {"_count": 1}}}, "moodily": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "a": {"_count": 1}}, "at": {"_count": 4, "the": {"_count": 2}, "a": {"_count": 2}}, "pocketing": {"_count": 1, "his": {"_count": 1}}}, "queuing": {"_count": 4, "for": {"_count": 1, "dinner": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "outside": {"_count": 1, "carrying": {"_count": 1}}, "to": {"_count": 1, "dish": {"_count": 1}}}, "FURTHER": {"_count": 1, "MISTAKES": {"_count": 1, "AT": {"_count": 1}}}, "MISTAKES": {"_count": 1, "AT": {"_count": 1, "THE": {"_count": 1}}}, "Correspondent": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Recently": {"_count": 1, "under": {"_count": 1, "fire": {"_count": 1}}}, "embarrassment": {"_count": 8, "yesterday": {"_count": 1, "by": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "he": {"_count": 2, "had": {"_count": 1}, "suddenly": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "nonentity": {"_count": 1, "isnt": {"_count": 1, "it": {"_count": 1}}}, "crowed": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}}, "tussle": {"_count": 3, "with": {"_count": 2, "several": {"_count": 1}, "a": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "lawkeepers": {"_count": 1, "policemen": {"_count": 1, "over": {"_count": 1}}}, "policemen": {"_count": 3, "over": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "refused": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}}, "aggressive": {"_count": 6, "dustbins": {"_count": 1, "": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "determined": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "model": {"_count": 1, "he": {"_count": 1}}}, "appears": {"_count": 13, "to": {"_count": 4, "have": {"_count": 3}, "be": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "deserted": {"_count": 1, "": {"_count": 1}}, "they": {"_count": 1, "say": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "that": {"_count": 5, "the": {"_count": 1}, "Healer": {"_count": 1}, "they": {"_count": 1}, "he": {"_count": 1}, "Rufus": {"_count": 1}}}, "exAuror": {"_count": 3, "who": {"_count": 1, "retired": {"_count": 1}}, "to": {"_count": 1, "teach": {"_count": 1}}, "\u2018MadEye": {"_count": 1, "Moody": {"_count": 1}}}, "handshake": {"_count": 2, "and": {"_count": 1, "attempted": {"_count": 1}}, "was": {"_count": 1, "broken": {"_count": 1}}}, "Unsurprisingly": {"_count": 1, "Mr": {"_count": 1, "Weasley": {"_count": 1}}}, "modify": {"_count": 2, "several": {"_count": 1, "memories": {"_count": 1}}, "the": {"_count": 1, "memories": {"_count": 1}}}, "undignified": {"_count": 1, "and": {"_count": 1, "potentially": {"_count": 1}}}, "potentially": {"_count": 4, "embarrassing": {"_count": 1, "scene": {"_count": 1}}, "lethal": {"_count": 1, "": {"_count": 1}}, "wonderful": {"_count": 1, "idea": {"_count": 1}}, "useful": {"_count": 1, "thing": {"_count": 1}}}, "flipping": {"_count": 3, "the": {"_count": 1, "paper": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "feverishly": {"_count": 1, "through": {"_count": 1}}}, "graze": {"_count": 1, "the": {"_count": 1, "side": {"_count": 1}}}, "LADDIE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "stoneflagged": {"_count": 2, "floor": {"_count": 2, "exactly": {"_count": 1}, "": {"_count": 1}}}, "gravelly": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Stinking": {"_count": 1, "cowardly": {"_count": 1, "scummy": {"_count": 1}}}, "scummy": {"_count": 1, "thing": {"_count": 1, "to": {"_count": 1}}}, "Teaching": {"_count": 2, "said": {"_count": 1, "Moody": {"_count": 1}}, "us": {"_count": 1, "to": {"_count": 1}}}, "wincing": {"_count": 13, "": {"_count": 3, ".": {"_count": 3}}, "as": {"_count": 5, "they": {"_count": 3}, "pain": {"_count": 1}, "he": {"_count": 1}}, "frequently": {"_count": 1, "as": {"_count": 1}}, "again": {"_count": 1, "whats": {"_count": 1}}, "slightly": {"_count": 2, "as": {"_count": 2}}, "a": {"_count": 1, "little": {"_count": 1}}}, "offenders": {"_count": 1, "Head": {"_count": 1, "of": {"_count": 1}}}, "distinguishable": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Housell": {"_count": 1, "be": {"_count": 1, "Snape": {"_count": 1}}}, "uplifted": {"_count": 1, "expression": {"_count": 1, "on": {"_count": 1}}}, "doling": {"_count": 1, "beef": {"_count": 1, "casserole": {"_count": 1}}}, "casserole": {"_count": 4, "onto": {"_count": 2, "each": {"_count": 1}, "his": {"_count": 1}}, "but": {"_count": 1, "after": {"_count": 1}}, "dish": {"_count": 1, "now": {"_count": 1}}}, "Supercool": {"_count": 1, "said": {"_count": 1, "the": {"_count": 1}}}, "Mazing": {"_count": 1, "said": {"_count": 1, "Lee": {"_count": 1}}}, "UNFORGIVABLE": {"_count": 1, "CURSES": {"_count": 1, "The": {"_count": 1}}}, "CURSES": {"_count": 1, "The": {"_count": 1, "next": {"_count": 1}}}, "attained": {"_count": 2, "new": {"_count": 1, "levels": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}}, "vindictiveness": {"_count": 1, "over": {"_count": 1, "the": {"_count": 1}}}, "disembowel": {"_count": 1, "a": {"_count": 1, "barrel": {"_count": 1}}}, "Scouring": {"_count": 1, "Charm": {"_count": 1, "to": {"_count": 1}}}, "guts": {"_count": 9, "from": {"_count": 1, "under": {"_count": 1}}, "For": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 3, "take": {"_count": 1}, "tell": {"_count": 1}, "finish": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "or": {"_count": 1, "whatever": {"_count": 1}}, "well": {"_count": 1, "wasnt": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "displaying": {"_count": 6, "overt": {"_count": 1, "animosity": {"_count": 1}}, "his": {"_count": 2, "yellowing": {"_count": 1}, "body": {"_count": 1}}, "a": {"_count": 1, "presence": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "her": {"_count": 1, "knack": {"_count": 1}}}, "overt": {"_count": 1, "animosity": {"_count": 1, "to": {"_count": 1}}}, "animosity": {"_count": 2, "to": {"_count": 1, "MadEye": {"_count": 1}}, "was": {"_count": 1, "all": {"_count": 1}}}, "distinct": {"_count": 16, "impression": {"_count": 7, "that": {"_count": 7}}, "voice": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "dottiness": {"_count": 1, "": {"_count": 1}}, "feeling": {"_count": 2, "this": {"_count": 1}, "as": {"_count": 1}}, "pride": {"_count": 1, "": {"_count": 1}}, "resemblance": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "splashes": {"_count": 1, "and": {"_count": 1}}}, "misting": {"_count": 1, "over": {"_count": 1, "and": {"_count": 1}}}, "queued": {"_count": 4, "up": {"_count": 3, "outside": {"_count": 2}, "in": {"_count": 1}}, "outside": {"_count": 1, "Herbology": {"_count": 1}}}, "rung": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "distinctive": {"_count": 6, "clunking": {"_count": 1, "footsteps": {"_count": 1}}, "motherofpearl": {"_count": 1, "sheen": {"_count": 1}}, "injury": {"_count": 1, "but": {"_count": 1}}, "then": {"_count": 1, "sprinted": {"_count": 1}}, "traces": {"_count": 1, "": {"_count": 1}}, "figure": {"_count": 1, "of": {"_count": 1}}}, "clunking": {"_count": 4, "footsteps": {"_count": 1, "coming": {"_count": 1}}, "noise": {"_count": 2, "sounded": {"_count": 1}, "behind": {"_count": 1}}, "along": {"_count": 1, "at": {"_count": 1}}}, "stumping": {"_count": 5, "over": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "behind": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "through": {"_count": 1}}}, "grounding": {"_count": 1, "in": {"_count": 1, "tackling": {"_count": 1}}}, "Kappas": {"_count": 1, "and": {"_count": 1, "werewolves": {"_count": 1}}}, "retirement": {"_count": 6, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "which": {"_count": 1, "means": {"_count": 1}}, "and": {"_count": 1, "return": {"_count": 1}}, "yourself": {"_count": 1, "said": {"_count": 1}}}, "countercurses": {"_count": 4, "and": {"_count": 3, "leave": {"_count": 1}, "things": {"_count": 1}, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "completed": {"_count": 10, "horoscope": {"_count": 1, "under": {"_count": 1}}, "the": {"_count": 3, "constellation": {"_count": 1}, "sentence": {"_count": 1}, "trio": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "essay": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "mere": {"_count": 1}}, "pamphlet": {"_count": 1, "from": {"_count": 1}}}, "horoscope": {"_count": 1, "under": {"_count": 1, "the": {"_count": 1}}}, "Imperius": {"_count": 42, "Curse": {"_count": 40, "or": {"_count": 1}, "": {"_count": 14}, "said": {"_count": 4}, "can": {"_count": 1}, "on": {"_count": 4}, "upon": {"_count": 2}, "with": {"_count": 1}, "hes": {"_count": 1}, "forced": {"_count": 1}, "very": {"_count": 1}, "Crouch": {"_count": 1}, "and": {"_count": 1}, "by": {"_count": 1}, "just": {"_count": 1}, "I": {"_count": 1}, "completely": {"_count": 1}, "lift": {"_count": 1}, "hed": {"_count": 1}, "which": {"_count": 1}, "she": {"_count": 1}}, "and": {"_count": 1, "Cruciatus": {"_count": 1}}, "Cursel": {"_count": 1, "Harry": {"_count": 1}}}, "recoil": {"_count": 3, "slightly": {"_count": 1, "next": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "Imperio": {"_count": 4, "The": {"_count": 2, "spider": {"_count": 1}, "wizard": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "trapeze": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "artist": {"_count": 1, "through": {"_count": 1}}}, "flip": {"_count": 4, "breaking": {"_count": 1, "the": {"_count": 1}}, "Cho": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "more": {"_count": 1, "a": {"_count": 1}}}, "cartwheel": {"_count": 1, "in": {"_count": 1, "circles": {"_count": 1}}}, "Total": {"_count": 1, "control": {"_count": 1, "said": {"_count": 1}}}, "balled": {"_count": 5, "itself": {"_count": 1, "up": {"_count": 1}}, "themselves": {"_count": 1, "into": {"_count": 1}}, "into": {"_count": 1, "fists": {"_count": 1}}, "his": {"_count": 1, "fist": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}}, "involuntary": {"_count": 4, "shudder": {"_count": 1, "": {"_count": 1}}, "twitch": {"_count": 1, "Padma": {"_count": 1}}, "gasp": {"_count": 1, "of": {"_count": 1}}, "movement": {"_count": 1, "for": {"_count": 1}}}, "allpowerful": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "CONSTANT": {"_count": 2, "VIGILANCE": {"_count": 2, "": {"_count": 2}}}, "VIGILANCE": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "somersaulting": {"_count": 1, "spider": {"_count": 1, "and": {"_count": 1}}}, "volunteered": {"_count": 7, "information": {"_count": 1, "was": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}, "to": {"_count": 4, "come": {"_count": 1}, "return": {"_count": 1}, "die": {"_count": 1}, "demonstrate": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}}, "Cruciatus": {"_count": 24, "Curse": {"_count": 23, "said": {"_count": 2}, "": {"_count": 7}, "on": {"_count": 6}, "believing": {"_count": 1}, "had": {"_count": 1}, "for": {"_count": 1}, "ought": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 1}, "I": {"_count": 1}, "used": {"_count": 1}}, "are": {"_count": 1, "known": {"_count": 1}}}, "Engorgio": {"_count": 2, "The": {"_count": 1, "spider": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "CrucioV": {"_count": 3, "At": {"_count": 1, "once": {"_count": 1}}, "Bellatrix": {"_count": 1, "screamed": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "Reducio": {"_count": 2, "Moody": {"_count": 1, "muttered": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "thumbscrews": {"_count": 2, "or": {"_count": 1, "knives": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Avada": {"_count": 23, "Kedavra": {"_count": 13, "Hermione": {"_count": 1}, "": {"_count": 7}, "Imperius": {"_count": 1}, "the": {"_count": 1}, "curse": {"_count": 3}}, "Kedavral": {"_count": 2, "Moody": {"_count": 1}, "Harry": {"_count": 1}}, "Kedavras": {"_count": 1, "a": {"_count": 1}}, "KedavraV": {"_count": 4, "A": {"_count": 3}, "Expelliarmus": {"_count": 1}}, "Harry": {"_count": 1, "launched": {"_count": 1}}, "As": {"_count": 1, "the": {"_count": 1}}, "KedavraY": {"_count": 1, "again": {"_count": 1}}}, "Kedavra": {"_count": 13, "Hermione": {"_count": 1, "whispered": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 3}}, "Imperius": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "way": {"_count": 1}}, "curse": {"_count": 3, "and": {"_count": 1}, "can": {"_count": 1}, "does": {"_count": 1}}}, "Killing": {"_count": 19, "Curse": {"_count": 15, "": {"_count": 3}, "at": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 2}, "said": {"_count": 1}, "missed": {"_count": 1}, "now": {"_count": 1}, "more": {"_count": 1}, "rebounded": {"_count": 1}, "Harry": {"_count": 1}, "had": {"_count": 1}, "shot": {"_count": 1}}, "rips": {"_count": 1, "the": {"_count": 1}}, "is": {"_count": 1, "not": {"_count": 1}}, "Curses": {"_count": 2, "flew": {"_count": 1}, "missed": {"_count": 1}}}, "evade": {"_count": 5, "Moodys": {"_count": 1, "fingers": {"_count": 1}}, "me": {"_count": 1, "forever": {"_count": 1}}, "death": {"_count": 1, "that": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "scuttle": {"_count": 1, "frantically": {"_count": 1, "across": {"_count": 1}}}, "Kedavral": {"_count": 2, "Moody": {"_count": 1, "roared": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}}, "instantaneously": {"_count": 1, "the": {"_count": 1, "spider": {"_count": 1}}}, "unmarked": {"_count": 5, "but": {"_count": 1, "unmistakably": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "handleless": {"_count": 1, "black": {"_count": 1}}, "sealed": {"_count": 1, "cardboard": {"_count": 1}}, "package": {"_count": 1, "how": {"_count": 1}}}, "redden": {"_count": 1, "as": {"_count": 1, "Moodys": {"_count": 1}}}, "unblemished": {"_count": 2, "and": {"_count": 1, "unmarked": {"_count": 1}}, "hands": {"_count": 1, "": {"_count": 1}}}, "begged": {"_count": 8, "him": {"_count": 5, "to": {"_count": 3}, "but": {"_count": 1}, "": {"_count": 1}}, "her": {"_count": 1, "I": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "of": {"_count": 1, "it": {"_count": 1}}}, "relive": {"_count": 6, "the": {"_count": 2, "worst": {"_count": 2}}, "everything": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "for": {"_count": 1}}, "his": {"_count": 1, "interview": {"_count": 1}}, "a": {"_count": 1, "stream": {"_count": 1}}}, "powerless": {"_count": 5, "in": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "respond": {"_count": 1}}, "without": {"_count": 1, "his": {"_count": 1}}}, "Kedavras": {"_count": 1, "a": {"_count": 1, "curse": {"_count": 1}}}, "Unforgivable": {"_count": 10, "Curses": {"_count": 6, "": {"_count": 2}, "himself": {"_count": 1}, "against": {"_count": 1}, "but": {"_count": 1}, "from": {"_count": 1}}, "Curse": {"_count": 4, "on": {"_count": 1}, "before": {"_count": 1}, "you": {"_count": 1}, "You": {"_count": 1}}}, "arming": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "neverceasing": {"_count": 1, "vigilance": {"_count": 1, "": {"_count": 1}}}, "vigilance": {"_count": 5, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "torrent": {"_count": 3, "of": {"_count": 3, "talk": {"_count": 1}, "sound": {"_count": 1}, "crashing": {"_count": 1}}}, "demonstrated": {"_count": 6, "the": {"_count": 1, "Cruciatus": {"_count": 1}}, "excellent": {"_count": 1, "use": {"_count": 1}}, "upstairs": {"_count": 1, "come": {"_count": 1}}, "a": {"_count": 1, "perfect": {"_count": 1}}, "tonight": {"_count": 1, "would": {"_count": 1}}, "how": {"_count": 1, "influential": {"_count": 1}}}, "Interesting": {"_count": 5, "lesson": {"_count": 1, "wasnt": {"_count": 1}}, "idea": {"_count": 1, "": {"_count": 1}}, "effect": {"_count": 1, "said": {"_count": 1}}, "theory": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "Greyback": {"_count": 1}}}, "gabbled": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "Mrs": {"_count": 1, "Figg": {"_count": 1}}}, "gentler": {"_count": 1, "growl": {"_count": 1, "than": {"_count": 1}}}, "sonny": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "pleadingly": {"_count": 3, "at": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "pensive": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "snuffed": {"_count": 4, "it": {"_count": 2, "right": {"_count": 1}, "out": {"_count": 1}}, "out": {"_count": 2, "candles": {"_count": 1}, "her": {"_count": 1}}}, "Attacks": {"_count": 1, "first": {"_count": 1, "and": {"_count": 1}}}, "Plants": {"_count": 2, "of": {"_count": 2, "the": {"_count": 2}}}, "Mediterranean": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Telling": {"_count": 2, "Neville": {"_count": 1, "what": {"_count": 1}}, "you": {"_count": 1, "that": {"_count": 1}}}, "tactful": {"_count": 2, "way": {"_count": 1, "of": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}}, "sums": {"_count": 1, "and": {"_count": 1, "symbols": {"_count": 1}}}, "fogged": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "calculations": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "are": {"_count": 1, "correct": {"_count": 1}}}, "standby": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pen": {"_count": 3, "into": {"_count": 1, "some": {"_count": 1}}, "pal": {"_count": 2, "if": {"_count": 1}, "said": {"_count": 1}}}, "conjunction": {"_count": 1, "of": {"_count": 1, "Mars": {"_count": 1}}}, "crumpling": {"_count": 3, "up": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Lose": {"_count": 1, "a": {"_count": 1, "treasured": {"_count": 1}}}, "Mercury": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Venus": {"_count": 3, "is": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "Mars": {"_count": 1}}}, "inscrutably": {"_count": 1, "at": {"_count": 1, "Harry": {"_count": 1}}}, "eavesdropping": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "on": {"_count": 3, "his": {"_count": 1}, "my": {"_count": 1}, "something": {"_count": 1}}}, "Shortly": {"_count": 3, "after": {"_count": 2, "that": {"_count": 1}, "this": {"_count": 1}}, "before": {"_count": 1, "lunch": {"_count": 1}}}, "arched": {"_count": 4, "his": {"_count": 1, "back": {"_count": 1}}, "quivering": {"_count": 1, "over": {"_count": 1}}, "outline": {"_count": 1, "appeared": {"_count": 1}}, "windows": {"_count": 1, "punctuated": {"_count": 1}}}, "sardonically": {"_count": 3, "as": {"_count": 2, "Crookshanks": {"_count": 1}, "one": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "forewarned": {"_count": 3, "Ron": {"_count": 1, "yawned": {"_count": 1}}, "if": {"_count": 1, "somebody": {"_count": 1}}, "of": {"_count": 1, "my": {"_count": 1}}}, "trampled": {"_count": 3, "by": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "Hermione": {"_count": 1, "will": {"_count": 1}}}, "decapitation": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "badges": {"_count": 28, "all": {"_count": 1, "of": {"_count": 1}}, "saying": {"_count": 1, "\u2018spew": {"_count": 1}}, "then": {"_count": 2, "to": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 3}}, "back": {"_count": 1, "into": {"_count": 1}}, "too": {"_count": 1, "until": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 2, "were": {"_count": 1}, "attach": {"_count": 1}}, "stuck": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 1, "Creeveys": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "tie": {"_count": 1}}, "around": {"_count": 1, "too": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "carefully": {"_count": 1, "to": {"_count": 1}}, "only": {"_count": 1, "bought": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "they": {"_count": 1}}, "she": {"_count": 1, "whispered": {"_count": 1}}, "slid": {"_count": 1, "out": {"_count": 1}}}, "\u2018Spew": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "spew": {"_count": 7, "said": {"_count": 1, "Hermione": {"_count": 1}}, "stuff": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "Ron": {"_count": 2, "Changed": {"_count": 1}, "muttered": {"_count": 1}}, "were": {"_count": 1, "you": {"_count": 1}}, "Its": {"_count": 1, "not": {"_count": 1}}}, "SPEW": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "Stands": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "Society": {"_count": 9, "for": {"_count": 3, "the": {"_count": 3}}, "Team": {"_count": 3, "Group": {"_count": 3}}, "of": {"_count": 1, "Potioneers": {"_count": 1}}, "savings": {"_count": 1, "before": {"_count": 1}}, "Beneath": {"_count": 1, "the": {"_count": 1}}}, "Promotion": {"_count": 2, "of": {"_count": 2, "Elfish": {"_count": 2}}}, "Elfish": {"_count": 2, "Welfare": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "Welfare": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "its": {"_count": 1}}}, "\u2018spew": {"_count": 2, "do": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Outrageous": {"_count": 2, "Abuse": {"_count": 1, "of": {"_count": 1}}, "behavior": {"_count": 1, "": {"_count": 1}}}, "Abuse": {"_count": 1, "of": {"_count": 1, "Our": {"_count": 1}}}, "Campaign": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "Legal": {"_count": 1, "Status": {"_count": 1, "but": {"_count": 1}}}, "Status": {"_count": 3, "but": {"_count": 1, "it": {"_count": 1}}, "meaning": {"_count": 1, "that": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "manifesto": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "researching": {"_count": 3, "it": {"_count": 1, "thoroughly": {"_count": 1}}, "magical": {"_count": 1, "methods": {"_count": 1}}, "that": {"_count": 1, "": {"_count": 1}}}, "shortterm": {"_count": 1, "aims": {"_count": 1, "said": {"_count": 1}}}, "aims": {"_count": 10, "said": {"_count": 2, "Hermione": {"_count": 2}}, "include": {"_count": 1, "changing": {"_count": 1}}, "are": {"_count": 2, "identical": {"_count": 1}, "perfectly": {"_count": 1}}, "1": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "still": {"_count": 1, "written": {"_count": 1}}, "so": {"_count": 1, "pathetic": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wages": {"_count": 6, "and": {"_count": 3, "working": {"_count": 2}, "holidays": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}}, "longterm": {"_count": 3, "aims": {"_count": 1, "include": {"_count": 1}}, "resident": {"_count": 1, "ward": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "nonwand": {"_count": 1, "use": {"_count": 1, "and": {"_count": 1}}}, "shockingly": {"_count": 5, "underrepresented": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "scarlet": {"_count": 1, "blood": {"_count": 1}}, "familiar": {"_count": 1, "to": {"_count": 1}}, "amid": {"_count": 1, "the": {"_count": 1}}}, "underrepresented": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "recruiting": {"_count": 6, "members": {"_count": 1, "said": {"_count": 1}}, "more": {"_count": 1, "people": {"_count": 1}}, "Curse": {"_count": 1, "Breakers": {"_count": 1}}, "followers": {"_count": 1, "once": {"_count": 1}}, "yet": {"_count": 1, "": {"_count": 1}}, "ground": {"_count": 1, "and": {"_count": 1}}}, "buys": {"_count": 2, "a": {"_count": 1, "badge": {"_count": 1}}, "all": {"_count": 1, "is": {"_count": 1}}}, "proceeds": {"_count": 3, "can": {"_count": 1, "fund": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "S": {"_count": 1}}}, "fund": {"_count": 2, "our": {"_count": 1, "leaflet": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "leaflet": {"_count": 11, "campaign": {"_count": 1, "": {"_count": 1}}, "stuff": {"_count": 1, "and": {"_count": 1}}, "that": {"_count": 2, "carried": {"_count": 1}, "was": {"_count": 1}}, "on": {"_count": 1, "jobs": {"_count": 1}}, "from": {"_count": 1, "under": {"_count": 1}}, "emblazoned": {"_count": 1, "with": {"_count": 1}}, "by": {"_count": 1, "owl": {"_count": 1}}, "it": {"_count": 1, "said": {"_count": 1}}, "wasnt": {"_count": 1, "very": {"_count": 1}}, "Common": {"_count": 1, "Apparition": {"_count": 1}}}, "campaign": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 3, "intimidation": {"_count": 1}, "insults": {"_count": 1}, "terror": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "treasurer": {"_count": 2, "Ron": {"_count": 1, "Ive": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "temporarily": {"_count": 15, "dumbstruck": {"_count": 1, "but": {"_count": 1}}, "speechless": {"_count": 2, "just": {"_count": 1}, "and": {"_count": 1}}, "deaf": {"_count": 1, "and": {"_count": 1}}, "limp": {"_count": 1, "with": {"_count": 1}}, "stupefied": {"_count": 1, "brain": {"_count": 1}}, "blocking": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "breath": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "empty": {"_count": 1, "seat": {"_count": 1}}, "detained": {"_count": 1, "by": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "lost": {"_count": 1, "or": {"_count": 1}}, "at": {"_count": 1, "bay": {"_count": 1}}, "mesmerized": {"_count": 1, "and": {"_count": 1}}}, "whereupon": {"_count": 1, "Hedwig": {"_count": 1, "fluttered": {"_count": 1}}}, "jolting": {"_count": 1, "Hedwig": {"_count": 1, "out": {"_count": 1}}}, "pacifying": {"_count": 1, "sort": {"_count": 1, "of": {"_count": 1}}}, "blab": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "BEAUXBATONS": {"_count": 1, "AND": {"_count": 1, "DRUMSTRANG": {"_count": 1}}}, "DRUMSTRANG": {"_count": 1, "Early": {"_count": 1, "next": {"_count": 1}}}, "briefly": {"_count": 20, "by": {"_count": 1, "Peeves": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "Dumbledore": {"_count": 1}}, "red": {"_count": 1, "and": {"_count": 1}}, "united": {"_count": 1, "against": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "nodded": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 3, "knew": {"_count": 1}, "gesturing": {"_count": 1}, "kept": {"_count": 1}}, "a": {"_count": 1, "short": {"_count": 1}}, "had": {"_count": 1, "flared": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "seized": {"_count": 1, "Harrys": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "how": {"_count": 1, "the": {"_count": 1}}, "illuminated": {"_count": 1, "by": {"_count": 1}}, "occluded": {"_count": 1, "by": {"_count": 1}}, "unconscious": {"_count": 1, "and": {"_count": 1}}}, "overturn": {"_count": 1, "a": {"_count": 1, "large": {"_count": 1}}}, "vase": {"_count": 9, "on": {"_count": 2, "him": {"_count": 1}, "its": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 2, "dried": {"_count": 1}, "flowers": {"_count": 1}}, "standing": {"_count": 2, "ready": {"_count": 1}, "in": {"_count": 1}}, "Petunia": {"_count": 1, "sent": {"_count": 1}}, "blew": {"_count": 1, "off": {"_count": 1}}}, "fourthfloor": {"_count": 1, "corridor": {"_count": 1, "finally": {"_count": 1}}}, "droppings": {"_count": 10, "and": {"_count": 1, "the": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "didnt": {"_count": 1, "work": {"_count": 1}}, "crashed": {"_count": 1, "to": {"_count": 1}}}, "regurgitated": {"_count": 3, "skeletons": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "and": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}}, "voles": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "breed": {"_count": 9, "imaginable": {"_count": 1, "were": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "from": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 1, "like": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "fast": {"_count": 1}}, "like": {"_count": 1, "gnomes": {"_count": 1}}, "of": {"_count": 1, "being": {"_count": 1}}}, "nestled": {"_count": 5, "here": {"_count": 1, "on": {"_count": 1}}, "between": {"_count": 2, "a": {"_count": 1}, "two": {"_count": 1}}, "contentedly": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 1, "rafters": {"_count": 1}}}, "perches": {"_count": 4, "that": {"_count": 1, "rose": {"_count": 1}}, "looking": {"_count": 1, "at": {"_count": 1}}, "were": {"_count": 1, "halfempty": {"_count": 1}}, "and": {"_count": 1, "soared": {"_count": 1}}}, "droppingstrewn": {"_count": 1, "floor": {"_count": 1, "": {"_count": 1}}}, "ordinarily": {"_count": 1, "have": {"_count": 1, "done": {"_count": 1}}}, "reassuring": {"_count": 9, "sort": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}, "sight": {"_count": 1, "the": {"_count": 1}}, "nod": {"_count": 1, "and": {"_count": 1}}, "something": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "catch": {"_count": 1}}, "Hermione": {"_count": 1, "was": {"_count": 1}}, "smile": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "alleviate": {"_count": 1, "his": {"_count": 1, "worries": {"_count": 1}}}, "Drop": {"_count": 7, "it": {"_count": 4, "said": {"_count": 1}, "Hermione": {"_count": 1}, "": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "your": {"_count": 1, "wands": {"_count": 1}}, "them": {"_count": 1, "or": {"_count": 1}}}, "heeded": {"_count": 1, "him": {"_count": 1, "and": {"_count": 1}}}, "visions": {"_count": 10, "of": {"_count": 4, "Sirius": {"_count": 1}, "everything": {"_count": 1}, "things": {"_count": 1}, "this": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "dreams": {"_count": 1}}, "he": {"_count": 1, "and": {"_count": 1}}, "were": {"_count": 1, "breaking": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}}, "betweentimes": {"_count": 1, "he": {"_count": 1, "tried": {"_count": 1}}}, "demanding": {"_count": 9, "than": {"_count": 2, "ever": {"_count": 2}}, "and": {"_count": 1, "time": {"_count": 1}}, "competition": {"_count": 1, "like": {"_count": 1}}, "to": {"_count": 2, "know": {"_count": 1}, "see": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 2, "she": {"_count": 1}, "they": {"_count": 1}}}, "demonstrate": {"_count": 15, "its": {"_count": 1, "power": {"_count": 1}}, "this": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "courage": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 2, "skill": {"_count": 1}, "longing": {"_count": 1}}, "the": {"_count": 2, "ability": {"_count": 1}, "correct": {"_count": 1}}, "correct": {"_count": 1, "handling": {"_count": 1}}, "his": {"_count": 1, "power": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "their": {"_count": 1, "willingness": {"_count": 1}}, "what": {"_count": 2, "happens": {"_count": 2}}}, "unblinking": {"_count": 3, "stare": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "indifferent": {"_count": 1, "unobscured": {"_count": 1}}}, "excused": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "beckon": {"_count": 1, "students": {"_count": 1, "forward": {"_count": 1}}}, "classmates": {"_count": 9, "did": {"_count": 1, "the": {"_count": 1}}, "certainly": {"_count": 1, "werent": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "turned": {"_count": 1, "curiously": {"_count": 1}}, "were": {"_count": 2, "pointing": {"_count": 1}, "deciding": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "squirrel": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "poo": {"_count": 1, "": {"_count": 1}}}, "gymnastics": {"_count": 1, "he": {"_count": 1, "would": {"_count": 1}}}, "untraceable": {"_count": 1, "happiness": {"_count": 1, "": {"_count": 1}}}, "Jump": {"_count": 4, "onto": {"_count": 3, "the": {"_count": 3}}, "NOW": {"_count": 1, "The": {"_count": 1}}}, "obediently": {"_count": 9, "preparing": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "partnered": {"_count": 1}}, "Hermione": {"_count": 1, "Neville": {"_count": 1}}, "until": {"_count": 1, "his": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "Dumbledore": {"_count": 1, "drank": {"_count": 1}}, "to": {"_count": 1, "Professor": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "fractured": {"_count": 2, "both": {"_count": 1, "his": {"_count": 1}}, "stalactites": {"_count": 1, "and": {"_count": 1}}}, "kneecaps": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "alternate": {"_count": 2, "step": {"_count": 1, "": {"_count": 1}}, "evenings": {"_count": 1, "to": {"_count": 1}}}, "\u2018Boo": {"_count": 1, "behind": {"_count": 1, "him": {"_count": 1}}}, "Fools": {"_count": 2, "Day": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 1, "wear": {"_count": 1}}}, "resisting": {"_count": 11, "the": {"_count": 6, "Imperius": {"_count": 3}, "temptation": {"_count": 1}, "urge": {"_count": 1}, "new": {"_count": 1}}, "as": {"_count": 1, "hard": {"_count": 1}}, "her": {"_count": 1, "under": {"_count": 1}}, "joining": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}}, "phase": {"_count": 5, "of": {"_count": 3, "your": {"_count": 1}, "his": {"_count": 1}, "their": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "one": {"_count": 1, "is": {"_count": 1}}}, "preparation": {"_count": 4, "you": {"_count": 1, "can": {"_count": 1}}, "for": {"_count": 2, "their": {"_count": 1}, "seeing": {"_count": 1}}, "months": {"_count": 1, "of": {"_count": 1}}}, "pincushion": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Thomas": {"_count": 1, "still": {"_count": 1}}}, "curls": {"_count": 7, "up": {"_count": 1, "in": {"_count": 1}}, "that": {"_count": 1, "contrasted": {"_count": 1}}, "of": {"_count": 1, "raw": {"_count": 1}}, "now": {"_count": 1, "hung": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "his": {"_count": 1}}}, "approaches": {"_count": 4, "it": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}}, "portions": {"_count": 2, "of": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "commending": {"_count": 1, "them": {"_count": 1, "for": {"_count": 1}}}, "unflinching": {"_count": 1, "acceptance": {"_count": 1, "of": {"_count": 1}}}, "acceptance": {"_count": 3, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "only": {"_count": 1}}, "can": {"_count": 1, "there": {"_count": 1}}}, "catastrophes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "eighteenth": {"_count": 3, "century": {"_count": 2, "": {"_count": 2}}, "birthday": {"_count": 1, "Dumbledore": {"_count": 1}}}, "research": {"_count": 10, "antidotes": {"_count": 1, "": {"_count": 1}}, "magical": {"_count": 1, "methods": {"_count": 1}}, "the": {"_count": 1, "door": {"_count": 1}}, "find": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "my": {"_count": 1, "own": {"_count": 1}}, "through": {"_count": 1, "old": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "on": {"_count": 1, "Gernumbli": {"_count": 1}}, "undertaken": {"_count": 1, "by": {"_count": 1}}}, "poisoning": {"_count": 6, "one": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 1, "said": {"_count": 1}}, "her": {"_count": 1, "mistresss": {"_count": 1}}, "Id": {"_count": 1, "never": {"_count": 1}}, "mead": {"_count": 1, "there": {"_count": 1}}, "the": {"_count": 1, "mead": {"_count": 1}}}, "Blast": {"_count": 4, "Ended": {"_count": 4, "Skrewts": {"_count": 3}, "Skrewt": {"_count": 1}}}, "Ended": {"_count": 4, "Skrewts": {"_count": 3, "were": {"_count": 1}, "for": {"_count": 1}, "or": {"_count": 1}}, "Skrewt": {"_count": 1, "": {"_count": 1}}}, "observe": {"_count": 5, "the": {"_count": 2, "skrewts": {"_count": 1}, "heavens": {"_count": 1}}, "what": {"_count": 1, "anyone": {"_count": 1}}, "her": {"_count": 1, "victim": {"_count": 1}}, "him": {"_count": 1, "recognized": {"_count": 1}}}, "proposed": {"_count": 2, "this": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 1, "but": {"_count": 1}}}, "whayer": {"_count": 1, "told": {"_count": 1, "he": {"_count": 1}}}, "sufficiently": {"_count": 4, "painful": {"_count": 1, "to": {"_count": 1}}, "accomplished": {"_count": 1, "Legilimens": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "important": {"_count": 1, "to": {"_count": 1}}}, "retorting": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "30th": {"_count": 2, "of": {"_count": 1, "October": {"_count": 1}}, "Educational": {"_count": 1, "Decree": {"_count": 1}}}, "Lessons": {"_count": 3, "will": {"_count": 1, "end": {"_count": 1}}, "were": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}}, "assemble": {"_count": 1, "in": {"_count": 1, "front": {"_count": 1}}}, "Welcoming": {"_count": 1, "Feast": {"_count": 1, "": {"_count": 1}}}, "Feast": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "which": {"_count": 1, "was": {"_count": 1}}, "became": {"_count": 1, "very": {"_count": 1}}, "had": {"_count": 1, "unblocked": {"_count": 1}}}, "scathingly": {"_count": 12, "": {"_count": 8, ".": {"_count": 8}}, "and": {"_count": 1, "she": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "but": {"_count": 1, "perhaps": {"_count": 1}}, "before": {"_count": 1, "Harry": {"_count": 1}}}, "topic": {"_count": 6, "of": {"_count": 4, "conversation": {"_count": 3}, "human": {"_count": 1}}, "to": {"_count": 2, "anybody": {"_count": 1}, "change": {"_count": 1}}}, "contagious": {"_count": 4, "germs": {"_count": 1, "who": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "my": {"_count": 1, "pockmarked": {"_count": 1}}, "so": {"_count": 1, "theyre": {"_count": 1}}}, "germs": {"_count": 1, "who": {"_count": 1, "was": {"_count": 1}}}, "involve": {"_count": 4, "how": {"_count": 1, "the": {"_count": 1}}, "Paracelsus": {"_count": 1, "falling": {"_count": 1}}, "exactly": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "wedding": {"_count": 1}}}, "differed": {"_count": 2, "from": {"_count": 2, "themselves": {"_count": 1}, "Muggle": {"_count": 1}}}, "undergoing": {"_count": 2, "an": {"_count": 1, "extrathorough": {"_count": 1}}, "some": {"_count": 1, "painful": {"_count": 1}}}, "extrathorough": {"_count": 1, "cleaning": {"_count": 1, "": {"_count": 1}}}, "grimy": {"_count": 14, "portraits": {"_count": 1, "had": {"_count": 1}}, "fronts": {"_count": 1, "of": {"_count": 1}}, "windows": {"_count": 1, "": {"_count": 1}}, "black": {"_count": 3, "pipe": {"_count": 1}, "stove": {"_count": 1}, "and": {"_count": 1}}, "window": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "dark": {"_count": 1, "door": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "rags": {"_count": 1, "": {"_count": 1}}, "basin": {"_count": 1, "": {"_count": 1}}, "landing": {"_count": 1, "windows": {"_count": 1}}, "lenses": {"_count": 1, "of": {"_count": 1}}}, "hysterics": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "transplanted": {"_count": 1, "his": {"_count": 1, "own": {"_count": 1}}}, "cactus": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "thirtieth": {"_count": 4, "of": {"_count": 1, "October": {"_count": 1}}, "the": {"_count": 1, "night": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "hed": {"_count": 1}}}, "overnight": {"_count": 9, "": {"_count": 4, ".": {"_count": 4}}, "ready": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "as": {"_count": 1, "touchy": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}}, "Enormous": {"_count": 2, "silk": {"_count": 1, "banners": {"_count": 1}}, "cheers": {"_count": 1, "from": {"_count": 1}}}, "representing": {"_count": 4, "a": {"_count": 1, "Hogwarts": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "Elder": {"_count": 1}, "Cloak": {"_count": 1}}}, "united": {"_count": 14, "around": {"_count": 1, "a": {"_count": 1}}, "against": {"_count": 1, "Krum": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 1, "is": {"_count": 1}}, "as": {"_count": 1, "weak": {"_count": 1}}, "As": {"_count": 1, "they": {"_count": 1}}, "And": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 3, "my": {"_count": 1}, "wanting": {"_count": 1}, "disapproval": {"_count": 1}}, "will": {"_count": 2, "make": {"_count": 2}}, "voices": {"_count": 1, "echoed": {"_count": 1}}, "all": {"_count": 1, "three": {"_count": 1}}}, "bummer": {"_count": 2, "all": {"_count": 1, "right": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "transfiguring": {"_count": 1, "my": {"_count": 1, "raccoon": {"_count": 1}}}, "raccoon": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "panel": {"_count": 5, "of": {"_count": 2, "judges": {"_count": 2}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "that": {"_count": 1, "will": {"_count": 1}}, "went": {"_count": 1, "out": {"_count": 1}}}, "judges": {"_count": 31, "you": {"_count": 1, "havent": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 1}, ".": {"_count": 3}, "!": {"_count": 2}}, "will": {"_count": 1, "be": {"_count": 1}}, "were": {"_count": 4, "now": {"_count": 1}, "holding": {"_count": 1}, "sitting": {"_count": 2}}, "table": {"_count": 7, "and": {"_count": 1}, "": {"_count": 1}, "looking": {"_count": 1}, "watching": {"_count": 1}, "Mr": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 1}}, "and": {"_count": 3, "champions": {"_count": 1}, "said": {"_count": 1}, "here": {"_count": 1}}, "give": {"_count": 1, "out": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "were": {"_count": 1}}, "stood": {"_count": 1, "watching": {"_count": 1}}, "went": {"_count": 1, "into": {"_count": 1}}, "so": {"_count": 1, "they": {"_count": 1}}, "balcony": {"_count": 1, "and": {"_count": 1}}, "bench": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "found": {"_count": 1}}}, "1792": {"_count": 1, "when": {"_count": 1, "a": {"_count": 1}}}, "cockatrice": {"_count": 1, "the": {"_count": 1, "champions": {"_count": 1}}}, "rampage": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Revised": {"_count": 1, "History": {"_count": 1, "of": {"_count": 1}}}, "Biased": {"_count": 1, "and": {"_count": 1, "Selective": {"_count": 1}}}, "Selective": {"_count": 1, "History": {"_count": 1, "of": {"_count": 1}}}, "Glosses": {"_count": 1, "Over": {"_count": 1, "the": {"_count": 1}}}, "Nastier": {"_count": 1, "Aspects": {"_count": 1, "of": {"_count": 1}}}, "Aspects": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "colluding": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "oppression": {"_count": 2, "of": {"_count": 2, "a": {"_count": 1}, "Muggles": {"_count": 1}}}, "slaves": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "applied": {"_count": 13, "himself": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "first": {"_count": 1, "for": {"_count": 1}}, "regularly": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 1, "cooler": {"_count": 1}}, "to": {"_count": 4, "his": {"_count": 1}, "your": {"_count": 1}, "two": {"_count": 1}, "continue": {"_count": 1}}, "charms": {"_count": 1, "etc": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "fer": {"_count": 1, "TimeTurners": {"_count": 1}}}, "curb": {"_count": 1, "Hermione": {"_count": 1, "s": {"_count": 1}}}, "pursue": {"_count": 8, "justice": {"_count": 1, "for": {"_count": 1}}, "the": {"_count": 3, "subject": {"_count": 2}, "leisure": {"_count": 1}}, "vengeance": {"_count": 1, "against": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "flighty": {"_count": 1}}, "once": {"_count": 1, "they": {"_count": 1}}}, "vociferous": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "cornering": {"_count": 4, "people": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "Peeves": {"_count": 1, "": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}}, "unpaid": {"_count": 1, "and": {"_count": 1, "enslaved": {"_count": 1}}}, "active": {"_count": 4, "role": {"_count": 1, "in": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}, "in": {"_count": 1, "S": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}}, "regarded": {"_count": 4, "the": {"_count": 1, "whole": {"_count": 1}}, "him": {"_count": 1, "as": {"_count": 1}}, "this": {"_count": 1, "Horcrux": {"_count": 1}}, "it": {"_count": 1, "as": {"_count": 1}}}, "autumn": {"_count": 5, "sunlight": {"_count": 1, "and": {"_count": 1}}, "air": {"_count": 2, "whipping": {"_count": 1}, "": {"_count": 1}}, "sunshine": {"_count": 1, "persisted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "nick": {"_count": 2, "food": {"_count": 1, "": {"_count": 1}}, "Gryffindors": {"_count": 1, "sword": {"_count": 1}}}, "uneducated": {"_count": 1, "and": {"_count": 1, "brainwashed": {"_count": 1}}}, "brainwashed": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "rinds": {"_count": 1, "which": {"_count": 1, "she": {"_count": 1}}}, "posted": {"_count": 4, "on": {"_count": 3, "everything": {"_count": 2}, "whats": {"_count": 1}}, "of": {"_count": 1, "developments": {"_count": 1}}}, "Hedwigll": {"_count": 1, "attract": {"_count": 1, "too": {"_count": 1}}}, "attentive": {"_count": 1, "in": {"_count": 1, "lessons": {"_count": 1}}}, "ordering": {"_count": 11, "their": {"_count": 1, "students": {"_count": 1}}, "very": {"_count": 1, "harsh": {"_count": 1}}, "Kreacher": {"_count": 1, "around": {"_count": 1}}, "him": {"_count": 2, "back": {"_count": 1}, "out": {"_count": 1}}, "goblins": {"_count": 1, "to": {"_count": 1}}, "Dungbombs": {"_count": 4, "": {"_count": 2}, "were": {"_count": 1}, "because": {"_count": 1}}, "them": {"_count": 1, "so": {"_count": 1}}}, "straighten": {"_count": 7, "your": {"_count": 1, "hat": {"_count": 1}}, "up": {"_count": 4, "like": {"_count": 1}, "beaming": {"_count": 1}, "again": {"_count": 1}, "dust": {"_count": 1}}, "his": {"_count": 2, "face": {"_count": 1}, "broomsticks": {"_count": 1}}}, "ornamental": {"_count": 4, "butterfly": {"_count": 1, "from": {"_count": 1}}, "paths": {"_count": 1, "and": {"_count": 1}}, "plates": {"_count": 2, "each": {"_count": 2}}}, "butterfly": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "plait": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "braided": {"_count": 1, "with": {"_count": 1}}, "down": {"_count": 2, "her": {"_count": 2}}, "Fred": {"_count": 1, "and": {"_count": 1}}}, "transparentlooking": {"_count": 1, "moon": {"_count": 1, "was": {"_count": 1}}}, "delegation": {"_count": 4, "from": {"_count": 1, "Beauxbatons": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "Ministry": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}}, "Denniss": {"_count": 1, "guess": {"_count": 1, "was": {"_count": 1}}}, "powderblue": {"_count": 2, "horsedrawn": {"_count": 1, "carriage": {"_count": 1}}, "carriage": {"_count": 1, "the": {"_count": 1}}}, "horsedrawn": {"_count": 2, "carriage": {"_count": 1, "the": {"_count": 1}}, "milk": {"_count": 1, "cart": {"_count": 1}}}, "palominos": {"_count": 2, "and": {"_count": 1, "each": {"_count": 1}}, "came": {"_count": 1, "soaring": {"_count": 1}}}, "respectfully": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "silent": {"_count": 1, "beaming": {"_count": 1}}}, "childs": {"_count": 1, "sled": {"_count": 1, "followed": {"_count": 1}}}, "sled": {"_count": 1, "followed": {"_count": 1, "almost": {"_count": 1}}}, "oliveskinned": {"_count": 2, "face": {"_count": 1, "large": {"_count": 1}}, "blackhaired": {"_count": 1, "woman": {"_count": 1}}}, "liquidlooking": {"_count": 1, "eyes": {"_count": 1, "and": {"_count": 1}}}, "beaky": {"_count": 2, "nose": {"_count": 2, "": {"_count": 1}, "redrimmed": {"_count": 1}}}, "satin": {"_count": 5, "and": {"_count": 2, "many": {"_count": 1}, "accompanied": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "dress": {"_count": 1, "and": {"_count": 1}}, "slippers": {"_count": 1, "": {"_count": 1}}}, "Dumblydorr": {"_count": 4, "said": {"_count": 1, "Madame": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "must": {"_count": 1, "ave": {"_count": 1}}, "My": {"_count": 1, "dear": {"_count": 1}}}, "ope": {"_count": 2, "I": {"_count": 1, "find": {"_count": 1}}, "said": {"_count": 1, "Fleur": {"_count": 1}}}, "teens": {"_count": 2, "had": {"_count": 1, "emerged": {"_count": 1}}, "who": {"_count": 1, "looked": {"_count": 1}}}, "unsurprising": {"_count": 1, "given": {"_count": 1, "that": {"_count": 1}}}, "Karkaroff": {"_count": 142, "arrived": {"_count": 1, "yet": {"_count": 1}}, "Dumbledore": {"_count": 1, "replied": {"_count": 1}}, "had": {"_count": 7, "a": {"_count": 1}, "just": {"_count": 1}, "to": {"_count": 1}, "given": {"_count": 1}, "been": {"_count": 1}, "drawn": {"_count": 1}, "struck": {"_count": 1}}, "beckoned": {"_count": 2, "forward": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 10, "Madame": {"_count": 5}, "the": {"_count": 1}, "Maxime": {"_count": 1}, "Harry": {"_count": 1}, "both": {"_count": 1}, "Bagman": {"_count": 1}}, "lean": {"_count": 1, "forward": {"_count": 1}}, "his": {"_count": 4, "warmly": {"_count": 1}, "steely": {"_count": 1}, "voice": {"_count": 1}, "eyes": {"_count": 1}}, "turned": {"_count": 3, "and": {"_count": 1}, "on": {"_count": 1}, "up": {"_count": 1}}, "carelessly": {"_count": 1, "glancing": {"_count": 1}}, "froze": {"_count": 1, "": {"_count": 1}}, "s": {"_count": 1, "eyes": {"_count": 1}}, "spun": {"_count": 1, "around": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}, "swept": {"_count": 1, "his": {"_count": 1}}, "so": {"_count": 1, "loudly": {"_count": 1}}, "to": {"_count": 2, "whisper": {"_count": 1}, "the": {"_count": 1}}, "Madame": {"_count": 3, "Maxime": {"_count": 3}}, "": {"_count": 20, ".": {"_count": 14}, "?": {"_count": 5}, "!": {"_count": 1}}, "said": {"_count": 5, "Snape": {"_count": 1}, "Sirius": {"_count": 1}, "Dumbledore": {"_count": 1}, "a": {"_count": 1}, "Mr": {"_count": 1}}, "it": {"_count": 1, "doesnt": {"_count": 1}}, "growled": {"_count": 1, "a": {"_count": 1}}, "bowing": {"_count": 1, "to": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "coldly": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 3, "satisfaction": {"_count": 1}, "a": {"_count": 1}, "interest": {"_count": 1}}, "livid": {"_count": 1, "Bagman": {"_count": 1}}, "kept": {"_count": 1, "twirling": {"_count": 1}}, "again": {"_count": 1, "very": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 4, "up": {"_count": 1}, "nowhere": {"_count": 1}, "hurrying": {"_count": 1}, "now": {"_count": 1}}, "got": {"_count": 1, "released": {"_count": 1}}, "put": {"_count": 1, "my": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "doesnt": {"_count": 1, "strike": {"_count": 1}}, "Hermione": {"_count": 1, "still": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "both": {"_count": 1, "saw": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "who": {"_count": 2, "put": {"_count": 1}, "was": {"_count": 1}}, "wore": {"_count": 1, "an": {"_count": 1}}, "displaying": {"_count": 1, "his": {"_count": 1}}, "came": {"_count": 2, "around": {"_count": 1}, "in": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "hurried": {"_count": 1, "away": {"_count": 1}}, "all": {"_count": 1, "worried": {"_count": 1}}, "watching": {"_count": 1, "him": {"_count": 1}}, "could": {"_count": 1, "hear": {"_count": 1}}, "clapped": {"_count": 1, "particularly": {"_count": 1}}, "a": {"_count": 3, "very": {"_count": 1}, "glowering": {"_count": 1}, "real": {"_count": 1}}, "abruptly": {"_count": 1, "when": {"_count": 1}}, "Snape": {"_count": 1, "muttered": {"_count": 1}}, "interrupted": {"_count": 1, "him": {"_count": 1}}, "looked": {"_count": 3, "extremely": {"_count": 1}, "really": {"_count": 1}, "much": {"_count": 1}}, "hovered": {"_count": 1, "behind": {"_count": 1}}, "wanted": {"_count": 2, "to": {"_count": 2}}, "pull": {"_count": 1, "up": {"_count": 1}}, "still": {"_count": 1, "making": {"_count": 1}}, "began": {"_count": 1, "in": {"_count": 1}}, "pretty": {"_count": 1, "well": {"_count": 1}}, "has": {"_count": 1, "just": {"_count": 1}}, "please": {"_count": 1, "Hagrid": {"_count": 1}}, "spat": {"_count": 1, "onto": {"_count": 1}}, "gasped": {"_count": 1, "for": {"_count": 1}}, "slid": {"_count": 1, "all": {"_count": 1}}, "straightened": {"_count": 1, "himself": {"_count": 1}}, "hurriedly": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "from": {"_count": 1, "turning": {"_count": 1}}, "breathlessly": {"_count": 1, "": {"_count": 1}}, "drew": {"_count": 1, "a": {"_count": 1}}, "eagerly": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "that": {"_count": 1}}, "looking": {"_count": 1, "quite": {"_count": 1}}, "straining": {"_count": 1, "at": {"_count": 1}}, "Crouch": {"_count": 1, "said": {"_count": 1}}, "fled": {"_count": 2, "tonight": {"_count": 2}}, "fears": {"_count": 1, "the": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "intends": {"_count": 1, "to": {"_count": 1}}}, "Warm": {"_count": 1, "up": {"_count": 1, "I": {"_count": 1}}}, "ze": {"_count": 24, "orses": {"_count": 2, "Our": {"_count": 1}, "drink": {"_count": 1}}, "bouillabaisse": {"_count": 1, "": {"_count": 1}}, "Hall": {"_count": 1, "": {"_count": 1}}, "meaning": {"_count": 1, "of": {"_count": 1}}, "line": {"_count": 1, "said": {"_count": 1}}, "apple": {"_count": 1, "": {"_count": 1}}, "chance": {"_count": 1, "to": {"_count": 1}}, "ead": {"_count": 1, "of": {"_count": 1}}, "Palace": {"_count": 1, "of": {"_count": 1}}, "dining": {"_count": 1, "chamber": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "food": {"_count": 1, "is": {"_count": 1}}, "alls": {"_count": 1, "and": {"_count": 1}}, "grindylows": {"_count": 1, "": {"_count": 1}}, "moment": {"_count": 1, "working": {"_count": 1}}, "British": {"_count": 1, "overcook": {"_count": 1}}, "date": {"_count": 2, "to": {"_count": 1}, "but": {"_count": 1}}, "only": {"_count": 1, "explanation": {"_count": 1}}, "ole": {"_count": 1, "plan": {"_count": 1}}, "wedding": {"_count": 1, "she": {"_count": 1}}, "smoothest": {"_count": 1, "shave": {"_count": 1}}, "smallest": {"_count": 1, "bedroom": {"_count": 1}}}, "orses": {"_count": 2, "Our": {"_count": 1, "Care": {"_count": 1}}, "drink": {"_count": 1, "only": {"_count": 1}}}, "arisen": {"_count": 2, "with": {"_count": 1, "some": {"_count": 1}}, "which": {"_count": 1, "I": {"_count": 1}}}, "charges": {"_count": 15, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 1}, "!": {"_count": 1}}, "each": {"_count": 1, "of": {"_count": 1}}, "relating": {"_count": 1, "to": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "and": {"_count": 1, "sentenced": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "of": {"_count": 1, "using": {"_count": 1}}, "youthful": {"_count": 1, "beginnings": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}}, "forceful": {"_count": 2, "andling": {"_count": 1, "said": {"_count": 1}}, "personality": {"_count": 1, "than": {"_count": 1}}}, "andling": {"_count": 1, "said": {"_count": 1, "Madame": {"_count": 1}}}, "Zey": {"_count": 4, "are": {"_count": 3, "very": {"_count": 1}, "saying": {"_count": 1}, "both": {"_count": 1}}, "do": {"_count": 1, "not": {"_count": 1}}}, "zis": {"_count": 8, "Agrid": {"_count": 1, "zat": {"_count": 1}}, "little": {"_count": 1, "boy": {"_count": 1}}, "Dumblydorr": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "Ogwarts": {"_count": 1, "food": {"_count": 1}}, "ugly": {"_count": 1, "armor": {"_count": 1}}, "will": {"_count": 1, "give": {"_count": 1}}, "evening": {"_count": 1, "": {"_count": 1}}}, "Agrid": {"_count": 5, "zat": {"_count": 1, "ze": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 2}}}, "zat": {"_count": 13, "ze": {"_count": 1, "orses": {"_count": 1}}, "zis": {"_count": 1, "little": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 2}, ".": {"_count": 1}, "!": {"_count": 1}}, "Tonks": {"_count": 2, "Fleur": {"_count": 1}, "said": {"_count": 1}}, "my": {"_count": 1, "husband": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "eez": {"_count": 1, "all": {"_count": 1}}, "zey": {"_count": 1, "will": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}}, "singlemalt": {"_count": 2, "whiskey": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}}, "imperiously": {"_count": 7, "to": {"_count": 2, "her": {"_count": 2}}, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}, "her": {"_count": 1, "head": {"_count": 1}}}, "Maximes": {"_count": 3, "huge": {"_count": 1, "horses": {"_count": 1}}, "staying": {"_count": 1, "to": {"_count": 1}}, "horses": {"_count": 1, "well": {"_count": 1}}}, "snorting": {"_count": 3, "and": {"_count": 1, "stamping": {"_count": 1}}, "torrents": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "laughter": {"_count": 1}}}, "riverbed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "whirlpool": {"_count": 3, "appeared": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "And": {"_count": 1, "suddenly": {"_count": 1}}}, "pole": {"_count": 1, "began": {"_count": 1, "to": {"_count": 1}}}, "rigging": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "white": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 1, "corroded": {"_count": 1}}}, "mast": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "ship": {"_count": 19, "rose": {"_count": 1, "out": {"_count": 1}}, "emerged": {"_count": 1, "entirely": {"_count": 1}}, "then": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 2, "moored": {"_count": 1}, "visible": {"_count": 1}}, "to": {"_count": 1, "try": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 1}, ".": {"_count": 6}}, "on": {"_count": 1, "the": {"_count": 1}}, "moored": {"_count": 1, "in": {"_count": 1}}, "stretched": {"_count": 1, "out": {"_count": 1}}, "Harry": {"_count": 1, "heard": {"_count": 1}}, "without": {"_count": 1, "Karkaroff": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "resurrected": {"_count": 1, "wreck": {"_count": 1, "and": {"_count": 1}}}, "portholes": {"_count": 3, "looked": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "glazed": {"_count": 1}}}, "sloshing": {"_count": 2, "noise": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}}, "anchor": {"_count": 1, "being": {"_count": 1, "thrown": {"_count": 1}}}, "plank": {"_count": 1, "being": {"_count": 1, "lowered": {"_count": 1}}}, "disembarking": {"_count": 1, "they": {"_count": 1, "could": {"_count": 1}}}, "silhouettes": {"_count": 2, "passing": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "ships": {"_count": 3, "portholes": {"_count": 2, "": {"_count": 1}, "were": {"_count": 1}}, "cabin": {"_count": 1, "": {"_count": 1}}}, "furs": {"_count": 9, "of": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 3, "looking": {"_count": 1}, "he": {"_count": 1}, "tree": {"_count": 1}}, "the": {"_count": 1, "Durmstrang": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "lifted": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 1, "in": {"_count": 1}}}, "Blooming": {"_count": 2, "thank": {"_count": 1, "you": {"_count": 1}}, "pain": {"_count": 1, "in": {"_count": 1}}}, "fruity": {"_count": 1, "unctuous": {"_count": 1, "voice": {"_count": 1}}}, "unctuous": {"_count": 5, "voice": {"_count": 1, "when": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "tone": {"_count": 1, "and": {"_count": 1}}, "note": {"_count": 1, "in": {"_count": 1}}, "smile": {"_count": 1, "had": {"_count": 1}}}, "goatee": {"_count": 6, "finishing": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "looking": {"_count": 1}}, "were": {"_count": 1, "black": {"_count": 1}}}, "tfyfflapier": {"_count": 1, "l6": {"_count": 1, "THE": {"_count": 1}}}, "l6": {"_count": 1, "THE": {"_count": 1, "GOBLET": {"_count": 1}}}, "GOBLET": {"_count": 1, "OF": {"_count": 1, "FIRE": {"_count": 1}}}, "FIRE": {"_count": 2, "I": {"_count": 1, "dont": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}}, "Kruml": {"_count": 1, "For": {"_count": 1, "heavens": {"_count": 1}}}, "recrossed": {"_count": 1, "the": {"_count": 1, "entrance": {"_count": 1}}}, "soles": {"_count": 3, "of": {"_count": 3, "his": {"_count": 2}, "enormous": {"_count": 1}}}, "lipstick": {"_count": 2, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "squabbling": {"_count": 2, "over": {"_count": 1, "the": {"_count": 1}}, "bitey": {"_count": 1, "bitey": {"_count": 1}}}, "unsure": {"_count": 9, "about": {"_count": 1, "where": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "whether": {"_count": 4, "he": {"_count": 2}, "or": {"_count": 2}}, "where": {"_count": 1, "to": {"_count": 1}}, "how": {"_count": 1, "best": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}}, "glum": {"_count": 6, "expressions": {"_count": 1, "on": {"_count": 1}}, "face": {"_count": 1, "giggling": {"_count": 1}}, "earlymorning": {"_count": 1, "looks": {"_count": 1}}, "expression": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "smarm": {"_count": 1, "up": {"_count": 1, "to": {"_count": 1}}}, "fawning": {"_count": 1, "over": {"_count": 1, "him": {"_count": 1}}}, "unembarrassed": {"_count": 1, "however": {"_count": 1, "and": {"_count": 1}}}, "muffler": {"_count": 3, "around": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "officially": {"_count": 2, "opened": {"_count": 1, "at": {"_count": 1}}, "before": {"_count": 1, "setting": {"_count": 1}}}, "engage": {"_count": 3, "him": {"_count": 2, "in": {"_count": 2}}, "Hermione": {"_count": 1, "in": {"_count": 1}}}, "shellfish": {"_count": 1, "stew": {"_count": 1, "that": {"_count": 1}}}, "Bouillabaisse": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "French": {"_count": 8, "said": {"_count": 1, "Hermione": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "girls": {"_count": 1, "who": {"_count": 1}}, "onion": {"_count": 1, "was": {"_count": 1}}}, "additional": {"_count": 10, "students": {"_count": 1, "there": {"_count": 1}}, "post": {"_count": 1, "of": {"_count": 1}}, "practice": {"_count": 2, "of": {"_count": 1}, "sessions": {"_count": 1}}, "meetings": {"_count": 1, "then": {"_count": 1}}, "security": {"_count": 1, "at": {"_count": 1}}, "notes": {"_count": 1, "not": {"_count": 1}}, "opportunities": {"_count": 1, "to": {"_count": 1}}, "protection": {"_count": 1, "in": {"_count": 1}}, "strain": {"_count": 1, "this": {"_count": 1}}}, "Thrivin": {"_count": 1, "Hagrid": {"_count": 1, "called": {"_count": 1}}}, "bouillabaisse": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "silveryblonde": {"_count": 1, "hair": {"_count": 1, "fell": {"_count": 1}}}, "wiz": {"_count": 3, "it": {"_count": 1, "": {"_count": 1}}, "ze": {"_count": 1, "line": {"_count": 1}}, "and": {"_count": 1, "witchard": {"_count": 1}}}, "veelcd": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "Karkaroffs": {"_count": 18, "other": {"_count": 1, "side": {"_count": 1}}, "face": {"_count": 2, "as": {"_count": 1}, "was": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "student": {"_count": 1, "isnt": {"_count": 1}}, "voice": {"_count": 1, "sounded": {"_count": 1}}, "satisfied": {"_count": 1, "yellowtoothed": {"_count": 1}}, "genuinely": {"_count": 1, "worried": {"_count": 1}}, "made": {"_count": 1, "it": {"_count": 1}}, "furs": {"_count": 1, "lifted": {"_count": 1}}, "arms": {"_count": 1, "binding": {"_count": 1}}, "eyes": {"_count": 1, "darted": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "gone": {"_count": 1, "": {"_count": 1}}, "chair": {"_count": 1, "was": {"_count": 1}}, "body": {"_count": 1, "in": {"_count": 1}}, "Mark": {"_count": 1, "is": {"_count": 1}}}, "blancmange": {"_count": 1, "closely": {"_count": 1, "then": {"_count": 1}}}, "casket": {"_count": 4, "The": {"_count": 1, "what": {"_count": 1}}, "then": {"_count": 1, "if": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "placed": {"_count": 1}}}, "clarify": {"_count": 2, "the": {"_count": 1, "procedure": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}}, "Bartemius": {"_count": 4, "Crouch": {"_count": 4, "Head": {"_count": 1}, "did": {"_count": 1}, "": {"_count": 1}, "the": {"_count": 1}}}, "smattering": {"_count": 4, "of": {"_count": 4, "polite": {"_count": 1}, "rubbish": {"_count": 1}, "applause": {"_count": 2}}}, "jovial": {"_count": 1, "wave": {"_count": 1, "of": {"_count": 1}}}, "attentiveness": {"_count": 3, "of": {"_count": 1, "the": {"_count": 1}}, "ebbing": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sharpen": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "spaced": {"_count": 2, "throughout": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "ground": {"_count": 1}}}, "prowess": {"_count": 2, "their": {"_count": 1, "daring": {"_count": 1}}, "at": {"_count": 1, "Summoning": {"_count": 1}}}, "deduction": {"_count": 1, "and": {"_count": 1, "of": {"_count": 1}}}, "selector": {"_count": 1, "the": {"_count": 1, "Goblet": {"_count": 1}}}, "Goblet": {"_count": 30, "of": {"_count": 29, "Fire": {"_count": 28}, "Fires": {"_count": 1}}, "or": {"_count": 1, "get": {"_count": 1}}}, "hewn": {"_count": 3, "wooden": {"_count": 1, "cup": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "onto": {"_count": 1, "a": {"_count": 1}}}, "Anybody": {"_count": 2, "wishing": {"_count": 1, "to": {"_count": 1}}, "know": {"_count": 1, "what": {"_count": 1}}}, "submit": {"_count": 4, "themselves": {"_count": 1, "as": {"_count": 1}}, "their": {"_count": 1, "name": {"_count": 1}}, "to": {"_count": 2, "a": {"_count": 2}}}, "Aspiring": {"_count": 1, "champions": {"_count": 1, "have": {"_count": 1}}}, "judged": {"_count": 3, "most": {"_count": 1, "worthy": {"_count": 1}}, "measures": {"_count": 1, "such": {"_count": 1}}, "mostly": {"_count": 1, "if": {"_count": 1}}}, "accessible": {"_count": 2, "to": {"_count": 1, "all": {"_count": 1}}, "at": {"_count": 1, "fivethirty": {"_count": 1}}}, "yields": {"_count": 1, "to": {"_count": 1, "temptation": {"_count": 1}}}, "Age": {"_count": 9, "Line": {"_count": 8, "around": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 2}, "would": {"_count": 1}, "said": {"_count": 2}}, "is": {"_count": 1, "foolish": {"_count": 1}}}, "Line": {"_count": 9, "around": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 2, "dropped": {"_count": 1}, "managed": {"_count": 1}}, "would": {"_count": 1, "keep": {"_count": 1}}, "said": {"_count": 2, "Professor": {"_count": 1}, "Ron": {"_count": 1}}, "up": {"_count": 1, "against": {"_count": 1}}}, "constitutes": {"_count": 3, "a": {"_count": 1, "binding": {"_count": 1}}, "an": {"_count": 1, "offense": {"_count": 1}}, "proof": {"_count": 1, "that": {"_count": 1}}}, "insistence": {"_count": 5, "that": {"_count": 4, "nobody": {"_count": 1}, "the": {"_count": 1}, "we": {"_count": 1}, "he": {"_count": 1}}, "hidden": {"_count": 1, "beneath": {"_count": 1}}}, "query": {"_count": 2, "was": {"_count": 1, "answered": {"_count": 1}}, "about": {"_count": 1, "your": {"_count": 1}}}, "vood": {"_count": 1, "like": {"_count": 1, "some": {"_count": 1}}}, "vine": {"_count": 2, "said": {"_count": 1, "one": {"_count": 1}}, "intent": {"_count": 1, "upon": {"_count": 1}}}, "Poliakoff": {"_count": 1, "snapped": {"_count": 1, "Karkaroff": {"_count": 1}}}, "paternal": {"_count": 1, "air": {"_count": 1, "vanishing": {"_count": 1}}}, "comprehension": {"_count": 9, "dawn": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "dawning": {"_count": 1, "across": {"_count": 1}}, "at": {"_count": 1, "Harrys": {"_count": 1}}, "catching": {"_count": 1, "up": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "gvoice": {"_count": 4, "from": {"_count": 1, "behind": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "saying": {"_count": 1, "Filth": {"_count": 1}}}, "mutilated": {"_count": 6, "face": {"_count": 2, "": {"_count": 2}}, "arm": {"_count": 1, "scrambled": {"_count": 1}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "robbed": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "breakfasted": {"_count": 2, "late": {"_count": 1, "": {"_count": 1}}, "quickly": {"_count": 1, "entered": {"_count": 1}}}, "gobbed": {"_count": 1, "you": {"_count": 1, "right": {"_count": 1}}}, "diver": {"_count": 1, "preparing": {"_count": 1, "for": {"_count": 1}}}, "shotputter": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "beards": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "is": {"_count": 1, "anything": {"_count": 1}}}, "tending": {"_count": 4, "to": {"_count": 2, "Miss": {"_count": 1}, "George": {"_count": 1}}, "the": {"_count": 2, "horrible": {"_count": 1}, "fire": {"_count": 1}}}, "Summers": {"_count": 1, "of": {"_count": 1, "Hufflepuff": {"_count": 1}}}, "sloth": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "PrettyBoy": {"_count": 1, "Diggory": {"_count": 1, "said": {"_count": 1}}}, "donate": {"_count": 1, "a": {"_count": 1, "few": {"_count": 1}}}, "veelagirl": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "dropped": {"_count": 1, "her": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}}, "slips": {"_count": 2, "of": {"_count": 1, "parchment": {"_count": 1}}, "he": {"_count": 1, "shook": {"_count": 1}}}, "reckonll": {"_count": 1, "happen": {"_count": 1, "to": {"_count": 1}}}, "submitted": {"_count": 5, "their": {"_count": 1, "names": {"_count": 1}}, "Potters": {"_count": 1, "name": {"_count": 1}}, "to": {"_count": 1, "orders": {"_count": 1}}, "my": {"_count": 1, "name": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}}, "reappearance": {"_count": 6, "with": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "Professor": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "bitter": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}}, "elephantine": {"_count": 2, "flying": {"_count": 1, "horses": {"_count": 1}}, "sounds": {"_count": 1, "of": {"_count": 1}}}, "makeshift": {"_count": 1, "paddock": {"_count": 1, "alongside": {"_count": 1}}}, "Bout": {"_count": 3, "time": {"_count": 1, "": {"_count": 1}}, "three": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "size": {"_count": 1}}}, "lotd": {"_count": 1, "forgotten": {"_count": 1, "where": {"_count": 1}}}, "Hag": {"_count": 1, "Hermione": {"_count": 1, "started": {"_count": 1}}}, "plus": {"_count": 8, "a": {"_count": 2, "checked": {"_count": 1}, "good": {"_count": 1}}, "side": {"_count": 1, "no": {"_count": 1}}, "Hermione": {"_count": 1, "came": {"_count": 1}}, "one": {"_count": 1, "equals": {"_count": 1}}, "Slughorns": {"_count": 1, "party": {"_count": 1}}, "the": {"_count": 1, "sound": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}}, "quantities": {"_count": 5, "of": {"_count": 2, "what": {"_count": 1}, "rubble": {"_count": 1}}, "the": {"_count": 1, "mixture": {"_count": 1}}, "and": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "axle": {"_count": 2, "grease": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}}, "slicked": {"_count": 1, "down": {"_count": 1, "into": {"_count": 1}}}, "mus": {"_count": 3, "be": {"_count": 3, "nearly": {"_count": 1}, "here": {"_count": 1}, "happenin": {"_count": 1}}}, "repressive": {"_count": 2, "look": {"_count": 1, "at": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}}, "hairstyle": {"_count": 2, "had": {"_count": 1, "just": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}}, "similarly": {"_count": 2, "enormous": {"_count": 1, "wooden": {"_count": 1}}, "patchy": {"_count": 1, "occasionally": {"_count": 1}}}, "hams": {"_count": 2, "and": {"_count": 1, "dead": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "unearthed": {"_count": 5, "a": {"_count": 2, "large": {"_count": 1}, "Gryffindor": {"_count": 1}}, "evidence": {"_count": 1, "that": {"_count": 1}}, "worrying": {"_count": 1, "facts": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "talon": {"_count": 1, "in": {"_count": 1, "hers": {"_count": 1}}}, "appetites": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "speculating": {"_count": 2, "which": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "what": {"_count": 1}}}, "beardless": {"_count": 3, "yet": {"_count": 1, "": {"_count": 1}}, "young": {"_count": 1, "round": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "midafternoon": {"_count": 1, "it": {"_count": 1, "was": {"_count": 1}}}, "patter": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "unkindness": {"_count": 1, "Hermione": {"_count": 1, "he": {"_count": 1}}}, "gravely": {"_count": 10, "threading": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "injured": {"_count": 1, "and": {"_count": 1}}, "inclining": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "at": {"_count": 1, "Malfoy": {"_count": 1}}}, "threading": {"_count": 1, "a": {"_count": 1, "massive": {"_count": 1}}}, "yarn": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Coughing": {"_count": 3, "Ron": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}}, "aftershave": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "eau": {"_count": 1, "de": {"_count": 1, "cologne": {"_count": 1}}}, "cologne": {"_count": 2, "Hagrid": {"_count": 1, "muttered": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Eau": {"_count": 1, "de": {"_count": 1, "cologne": {"_count": 1}}}, "mistyeyed": {"_count": 2, "expression": {"_count": 1, "Harry": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "trudging": {"_count": 1, "off": {"_count": 1, "up": {"_count": 1}}}, "ton": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Drawing": {"_count": 2, "their": {"_count": 1, "cloaks": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}}, "candlelit": {"_count": 6, "Great": {"_count": 1, "Hall": {"_count": 1}}, "dinner": {"_count": 1, "with": {"_count": 1}}, "classroom": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 1, "the": {"_count": 1}}, "squalor": {"_count": 1, "looking": {"_count": 1}}, "House": {"_count": 1, "tables": {"_count": 1}}}, "cleanshaven": {"_count": 1, "again": {"_count": 1, "seemed": {"_count": 1}}}, "extravagantly": {"_count": 3, "prepared": {"_count": 1, "food": {"_count": 1}}, "plumed": {"_count": 1, "hat": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "upswing": {"_count": 3, "in": {"_count": 3, "the": {"_count": 2}, "their": {"_count": 1}}}, "uninterested": {"_count": 2, "almost": {"_count": 1, "bored": {"_count": 1}}, "in": {"_count": 1, "such": {"_count": 1}}}, "estimate": {"_count": 1, "that": {"_count": 1, "it": {"_count": 1}}}, "receiving": {"_count": 9, "their": {"_count": 1, "first": {"_count": 1}}, "more": {"_count": 2, "admiration": {"_count": 1}, "post": {"_count": 1}}, "end": {"_count": 1, "of": {"_count": 1}}, "zero": {"_count": 1, "marks": {"_count": 1}}, "the": {"_count": 1, "results": {"_count": 1}}, "stolen": {"_count": 1, "cauldrons": {"_count": 1}}, "Ministry": {"_count": 1, "assurances": {"_count": 1}}, "instructions": {"_count": 1, "Arent": {"_count": 1}}}, "blueywhiteness": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Sparks": {"_count": 2, "began": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "flying": {"_count": 1}}}, "charred": {"_count": 5, "piece": {"_count": 1, "of": {"_count": 1}}, "hole": {"_count": 1, "in": {"_count": 1}}, "gray": {"_count": 1, "fish": {"_count": 1}}, "like": {"_count": 1, "wood": {"_count": 1}}, "desks": {"_count": 1, "and": {"_count": 1}}}, "slouch": {"_count": 1, "up": {"_count": 1, "toward": {"_count": 1}}}, "Bravo": {"_count": 1, "Viktor": {"_count": 1, "": {"_count": 1}}}, "Fleur": {"_count": 203, "Delacour": {"_count": 30, "": {"_count": 3}, "too": {"_count": 1}, "were": {"_count": 1}, "looked": {"_count": 1}, "however": {"_count": 1}, "stamping": {"_count": 1}, "swept": {"_count": 1}, "gave": {"_count": 1}, "from": {"_count": 1}, "was": {"_count": 4}, "and": {"_count": 5}, "to": {"_count": 1}, "seemed": {"_count": 1}, "saying": {"_count": 1}, "who": {"_count": 1}, "though": {"_count": 1}, "get": {"_count": 1}, "Harry": {"_count": 1}, "of": {"_count": 1}, "as": {"_count": 1}, "setting": {"_count": 1}}, "frowned": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 2, "once": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 24, "Viktor": {"_count": 2}, "Krum": {"_count": 5}, "Davies": {"_count": 1}, "Roger": {"_count": 2}, "Krumre": {"_count": 1}, "her": {"_count": 1}, "pranced": {"_count": 1}, "it": {"_count": 1}, "George": {"_count": 1}, "followed": {"_count": 1}, "Mundungus": {"_count": 1}, "MadEye": {"_count": 1}, "Mrs": {"_count": 1}, "Gabrielle": {"_count": 1}, "a": {"_count": 1}, "Mr": {"_count": 1}, "Harry": {"_count": 1}, "Percy": {"_count": 1}}, "were": {"_count": 4, "in": {"_count": 1}, "all": {"_count": 1}, "standing": {"_count": 1}, "leaving": {"_count": 1}}, "looked": {"_count": 1, "a": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 17, ".": {"_count": 15}, "?": {"_count": 2}}, "was": {"_count": 9, "part": {"_count": 1}, "trembling": {"_count": 1}, "coming": {"_count": 1}, "clapping": {"_count": 1}, "jabbering": {"_count": 1}, "no": {"_count": 1}, "wearing": {"_count": 1}, "persuading": {"_count": 1}, "trying": {"_count": 1}}, "with": {"_count": 3, "her": {"_count": 1}, "a": {"_count": 1}, "an": {"_count": 1}}, "glided": {"_count": 1, "back": {"_count": 1}}, "showed": {"_count": 1, "no": {"_count": 1}}, "had": {"_count": 12, "now": {"_count": 1}, "broken": {"_count": 1}, "many": {"_count": 1}, "disappeared": {"_count": 1}, "done": {"_count": 1}, "drifted": {"_count": 1}, "reached": {"_count": 1}, "vanished": {"_count": 1}, "removed": {"_count": 1}, "come": {"_count": 1}, "said": {"_count": 1}, "worn": {"_count": 1}}, "must": {"_count": 1, "have": {"_count": 1}}, "girl": {"_count": 1, "tried": {"_count": 1}}, "Cedric": {"_count": 1, "and": {"_count": 1}}, "went": {"_count": 3, "out": {"_count": 1}, "upstairs": {"_count": 1}, "on": {"_count": 1}}, "for": {"_count": 2, "a": {"_count": 2}}, "to": {"_count": 2, "take": {"_count": 1}, "Ron": {"_count": 1}}, "shook": {"_count": 1, "his": {"_count": 1}}, "Delacours": {"_count": 1, "sister": {"_count": 1}}, "didnt": {"_count": 1, "turn": {"_count": 1}}, "bent": {"_count": 1, "down": {"_count": 1}}, "swooped": {"_count": 1, "down": {"_count": 1}}, "throatily": {"_count": 2, "shaking": {"_count": 1}, "kissing": {"_count": 1}}, "keeps": {"_count": 1, "going": {"_count": 1}}, "beamed": {"_count": 1, "at": {"_count": 1}}, "politely": {"_count": 1, "halfway": {"_count": 1}}, "scream": {"_count": 1, "earlier": {"_count": 1}}, "as": {"_count": 2, "she": {"_count": 1}, "they": {"_count": 1}}, "smiled": {"_count": 1, "at": {"_count": 1}}, "turning": {"_count": 2, "to": {"_count": 2}}, "hurry": {"_count": 1, "back": {"_count": 1}}, "turned": {"_count": 1, "back": {"_count": 1}}, "Id": {"_count": 1, "much": {"_count": 1}}, "smiling": {"_count": 1, "serenely": {"_count": 1}}, "complacently": {"_count": 1, "we": {"_count": 1}}, "much": {"_count": 1, "to": {"_count": 1}}, "adoringly": {"_count": 1, "stroking": {"_count": 1}}, "waving": {"_count": 1, "from": {"_count": 1}}, "sitting": {"_count": 1, "at": {"_count": 1}}, "mused": {"_count": 1, "examining": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "shares": {"_count": 1, "with": {"_count": 1}}, "who": {"_count": 4, "seemed": {"_count": 1}, "was": {"_count": 2}, "wrinkled": {"_count": 1}}, "covert": {"_count": 1, "looks": {"_count": 1}}, "loudly": {"_count": 1, "": {"_count": 1}}, "decided": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 2, "whom": {"_count": 1}, "a": {"_count": 1}}, "just": {"_count": 1, "behind": {"_count": 1}}, "suddenly": {"_count": 1, "and": {"_count": 1}}, "drawing": {"_count": 1, "herself": {"_count": 1}}, "her": {"_count": 1, "nostrils": {"_count": 1}}, "mopping": {"_count": 1, "up": {"_count": 1}}, "stiffly": {"_count": 1, "": {"_count": 1}}, "happily": {"_count": 1, "plumping": {"_count": 1}}, "slender": {"_count": 1, "and": {"_count": 1}}, "lined": {"_count": 1, "up": {"_count": 1}}, "checking": {"_count": 1, "herself": {"_count": 1}}, "walked": {"_count": 1, "over": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "Tonks": {"_count": 1, "MadEye": {"_count": 1}}, "Mad": {"_count": 1, "Eye": {"_count": 1}}, "slid": {"_count": 1, "from": {"_count": 1}}, "nodded": {"_count": 1, "tear": {"_count": 1}}, "but": {"_count": 1, "still": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "everyone": {"_count": 1}}, "said": {"_count": 1, "his": {"_count": 1}}, "rushing": {"_count": 1, "forward": {"_count": 1}}, "tells": {"_count": 1, "us": {"_count": 1}}, "in": {"_count": 2, "miniature": {"_count": 1}, "Percys": {"_count": 1}}, "Ah": {"_count": 1, "yes": {"_count": 1}}, "would": {"_count": 1, "shortly": {"_count": 1}}, "the": {"_count": 1, "tiara": {"_count": 1}}, "invited": {"_count": 1, "me": {"_count": 1}}, "came": {"_count": 2, "walking": {"_count": 1}, "running": {"_count": 1}}, "gliding": {"_count": 1, "Monsieur": {"_count": 1}}, "Isabelle": {"_count": 1, "": {"_count": 1}}, "our": {"_count": 1, "present": {"_count": 1}}, "took": {"_count": 1, "to": {"_count": 1}}, "werent": {"_count": 1, "going": {"_count": 1}}, "minded": {"_count": 1, "": {"_count": 1}}, "Dean": {"_count": 1, "and": {"_count": 1}}, "hurrying": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "made": {"_count": 1, "an": {"_count": 1}}, "Luna": {"_count": 2, "and": {"_count": 2}}, "one": {"_count": 1, "blustery": {"_count": 1}}, "kissing": {"_count": 1, "him": {"_count": 1}}, "drew": {"_count": 1, "out": {"_count": 1}}, "Harry": {"_count": 1, "noticed": {"_count": 1}}, "crossly": {"_count": 1, "waving": {"_count": 1}}, "both": {"_count": 1, "squealed": {"_count": 1}}, "inquired": {"_count": 1, "": {"_count": 1}}, "knew": {"_count": 1, "or": {"_count": 1}}}, "Delacour": {"_count": 51, "": {"_count": 6, "!": {"_count": 1}, ".": {"_count": 4}, "?": {"_count": 1}}, "too": {"_count": 1, "had": {"_count": 1}}, "were": {"_count": 3, "grouped": {"_count": 1}, "finishing": {"_count": 1}, "both": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "however": {"_count": 1, "tossed": {"_count": 1}}, "stamping": {"_count": 1, "her": {"_count": 1}}, "could": {"_count": 1, "we": {"_count": 1}}, "swept": {"_count": 1, "over": {"_count": 1}}, "gave": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 1, "time": {"_count": 1}}, "was": {"_count": 6, "sitting": {"_count": 1}, "passing": {"_count": 1}, "criticizing": {"_count": 1}, "hurrying": {"_count": 1}, "nowhere": {"_count": 1}, "most": {"_count": 1}}, "and": {"_count": 6, "Krum": {"_count": 1}, "Roger": {"_count": 3}, "her": {"_count": 1}, "Fleur": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "to": {"_count": 1, "go": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "saying": {"_count": 1, "I": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "get": {"_count": 1, "up": {"_count": 1}}, "Harry": {"_count": 1, "noticed": {"_count": 1}}, "of": {"_count": 1, "Beauxbatons": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}, "setting": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 1, "taking": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "still": {"_count": 1, "holding": {"_count": 1}}, "glided": {"_count": 1, "forward": {"_count": 1}}, "pronounced": {"_count": 1, "everything": {"_count": 1}}, "assured": {"_count": 1, "him": {"_count": 1}}, "Fleur": {"_count": 1, "and": {"_count": 1}}, "while": {"_count": 1, "glancing": {"_count": 1}}, "bouncing": {"_count": 1, "and": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}}, "gracefully": {"_count": 13, "to": {"_count": 1, "her": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "tips": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 2}}, "than": {"_count": 1, "Ron": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "seemed": {"_count": 1}}, "her": {"_count": 1, "arms": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}}, "Disappointed": {"_count": 2, "was": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "emptied": {"_count": 1}}}, "understatement": {"_count": 2, "Harry": {"_count": 1, "thought": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "showered": {"_count": 3, "out": {"_count": 1, "of": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}, "Harry": {"_count": 1, "as": {"_count": 1}}}, "contribute": {"_count": 3, "in": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "or": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Automatically": {"_count": 2, "it": {"_count": 1, "seemed": {"_count": 1}}, "without": {"_count": 1, "really": {"_count": 1}}}, "FOUR": {"_count": 2, "CHAMPIONS": {"_count": 1, "Harry": {"_count": 1}}, "WEEKS": {"_count": 1, "IVE": {"_count": 1}}}, "CHAMPIONS": {"_count": 1, "Harry": {"_count": 1, "sat": {"_count": 1}}}, "bees": {"_count": 4, "was": {"_count": 1, "starting": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "hovering": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "trod": {"_count": 7, "on": {"_count": 5, "the": {"_count": 1}, "someone": {"_count": 1}, "her": {"_count": 1}, "his": {"_count": 1}, "an": {"_count": 1}}, "water": {"_count": 1, "for": {"_count": 1}}, "said": {"_count": 1, "Nick": {"_count": 1}}}, "searchlight": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "flit": {"_count": 4, "out": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "and": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "walrus": {"_count": 7, "mustache": {"_count": 6, "": {"_count": 2}, "blowing": {"_count": 1}, "curved": {"_count": 1}, "and": {"_count": 1}, "aquiver": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "grouped": {"_count": 11, "around": {"_count": 3, "the": {"_count": 2}, "a": {"_count": 1}}, "all": {"_count": 1, "looking": {"_count": 1}}, "halfway": {"_count": 1, "up": {"_count": 1}}, "haphazardly": {"_count": 1, "around": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "together": {"_count": 2, "in": {"_count": 1}, "Harry": {"_count": 1}}, "themselves": {"_count": 1, "around": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "hunchedup": {"_count": 1, "and": {"_count": 1, "brooding": {"_count": 1}}}, "zey": {"_count": 6, "want": {"_count": 1, "us": {"_count": 1}}, "are": {"_count": 1, "like": {"_count": 1}}, "attacked": {"_count": 1, "me": {"_count": 1}}, "knew": {"_count": 1, "we": {"_count": 1}}, "will": {"_count": 1, "not": {"_count": 1}}, "ave": {"_count": 1, "ad": {"_count": 1}}}, "misheard": {"_count": 3, "what": {"_count": 1, "Bagman": {"_count": 1}}, "Professor": {"_count": 1, "Sinistra": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}}, "vairy": {"_count": 1, "funny": {"_count": 1, "joke": {"_count": 1}}}, "Meester": {"_count": 1, "Bagman": {"_count": 1, "": {"_count": 1}}}, "zair": {"_count": 1, "as": {"_count": 1, "been": {"_count": 1}}}, "blacksatin": {"_count": 1, "bosom": {"_count": 1, "swelled": {"_count": 1}}}, "bosom": {"_count": 3, "swelled": {"_count": 1, "": {"_count": 1}}, "friends": {"_count": 1, "perhaps": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Cest": {"_count": 1, "impossible": {"_count": 1, "said": {"_count": 1}}}, "Fleurs": {"_count": 43, "shoulder": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "shoulders": {"_count": 1, "and": {"_count": 1}}, "marks": {"_count": 1, "were": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "sister": {"_count": 4, "were": {"_count": 1}, "": {"_count": 1}, "through": {"_count": 1}, "had": {"_count": 1}}, "little": {"_count": 1, "sister": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "stupid": {"_count": 1}}, "words": {"_count": 1, "were": {"_count": 1}}, "monologue": {"_count": 1, "": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}, "wedding": {"_count": 5, "remember": {"_count": 1}, "will": {"_count": 1}, "by": {"_count": 1}, "but": {"_count": 1}, "Mr": {"_count": 1}}, "appearing": {"_count": 1, "to": {"_count": 1}}, "agreed": {"_count": 1, "to": {"_count": 1}}, "sisters": {"_count": 1, "a": {"_count": 1}}, "family": {"_count": 2, "by": {"_count": 1}, "peering": {"_count": 1}}, "mother": {"_count": 1, "": {"_count": 1}}, "father": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "vould": {"_count": 1}}, "cousins": {"_count": 1, "Charlie": {"_count": 1}}, "new": {"_count": 1, "place": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "looking": {"_count": 1, "after": {"_count": 1}}, "coats": {"_count": 1, "crouched": {"_count": 1}}, "given": {"_count": 1, "him": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}, "bed": {"_count": 1, "that": {"_count": 1}}, "cottage": {"_count": 1, "stood": {"_count": 1}}, "questions": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "Rogers": {"_count": 1}}}, "injust": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "contestants": {"_count": 1, "Dumbledore": {"_count": 1, "said": {"_count": 1}}}, "candidates": {"_count": 2, "from": {"_count": 1, "our": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "blaming": {"_count": 6, "Dumbledore": {"_count": 1, "for": {"_count": 1}}, "yourself": {"_count": 2, "for": {"_count": 2}}, "the": {"_count": 1, "breakout": {"_count": 1}}, "Snape": {"_count": 1, "it": {"_count": 1}}, "her": {"_count": 1, "for": {"_count": 1}}}, "discern": {"_count": 4, "the": {"_count": 1, "expression": {"_count": 1}}, "shapes": {"_count": 1, "through": {"_count": 1}}, "Ron": {"_count": 1, "under": {"_count": 1}}, "amongst": {"_count": 1, "them": {"_count": 1}}}, "vehemently": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "objective": {"_count": 3, "judges": {"_count": 1, "": {"_count": 1}}, "evaluation": {"_count": 1, "said": {"_count": 1}}, "outsider": {"_count": 1, "I": {"_count": 1}}}, "irregular": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "resubmitting": {"_count": 1, "the": {"_count": 1, "names": {"_count": 1}}}, "Fires": {"_count": 1, "just": {"_count": 1, "gone": {"_count": 1}}}, "reignite": {"_count": 1, "until": {"_count": 1, "the": {"_count": 1}}}, "meetings": {"_count": 32, "and": {"_count": 3, "negotiations": {"_count": 1}, "they": {"_count": 1}, "regular": {"_count": 1}}, "started": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "for": {"_count": 1}}, "over": {"_count": 3, "and": {"_count": 1}, "you": {"_count": 1}, "Dung": {"_count": 1}}, "she": {"_count": 2, "says": {"_count": 1}, "snapped": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 5, "?": {"_count": 2}, ".": {"_count": 3}}, "then": {"_count": 1, "": {"_count": 1}}, "remembering": {"_count": 1, "how": {"_count": 1}}, "hard": {"_count": 1, "effort": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "unpredictable": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "put": {"_count": 1}}, "havent": {"_count": 1, "we": {"_count": 1}}, "anymore": {"_count": 1, "but": {"_count": 1}}, "it": {"_count": 1, "did": {"_count": 1}}, "continued": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "been": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 2}}, "this": {"_count": 1, "year": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "of": {"_count": 1, "ours": {"_count": 1}}}, "negotiations": {"_count": 1, "and": {"_count": 1, "compromises": {"_count": 1}}}, "compromises": {"_count": 1, "I": {"_count": 1, "little": {"_count": 1}}}, "threat": {"_count": 13, "Karkaroff": {"_count": 1, "growled": {"_count": 1}}, "to": {"_count": 2, "ensure": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "sounded": {"_count": 1}}, "was": {"_count": 2, "way": {"_count": 1}, "very": {"_count": 1}}, "of": {"_count": 3, "no": {"_count": 1}, "killing": {"_count": 1}, "death": {"_count": 1}}, "from": {"_count": 1, "an": {"_count": 1}}, "that": {"_count": 1, "usually": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Runcorn": {"_count": 1, "": {"_count": 1}}}, "Binding": {"_count": 1, "magical": {"_count": 1, "contract": {"_count": 1}}}, "Convenient": {"_count": 2, "eh": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "lodging": {"_count": 2, "complaints": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 1, "knees": {"_count": 1}}}, "asnt": {"_count": 1, "e": {"_count": 1, "": {"_count": 1}}}, "oping": {"_count": 2, "to": {"_count": 2, "be": {"_count": 1}, "get": {"_count": 1}}}, "Ze": {"_count": 2, "honor": {"_count": 1, "for": {"_count": 1}}, "goblin": {"_count": 1, "she": {"_count": 1}}}, "considers": {"_count": 3, "the": {"_count": 1, "morning": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}, "rules": {"_count": 1, "to": {"_count": 1}}}, "plots": {"_count": 1, "to": {"_count": 1, "murder": {"_count": 1}}}, "assassination": {"_count": 1, "too": {"_count": 1, "": {"_count": 1}}}, "Imagining": {"_count": 1, "things": {"_count": 1, "am": {"_count": 1}}}, "zere": {"_count": 2, "of": {"_count": 1, "zat": {"_count": 1}}, "isnt": {"_count": 1, "much": {"_count": 1}}}, "bamboozle": {"_count": 1, "that": {"_count": 1, "goblet": {"_count": 1}}}, "category": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "exceptional": {"_count": 1}}}, "ingenious": {"_count": 4, "theory": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "coins": {"_count": 1, "Im": {"_count": 1}}}, "cunningly": {"_count": 1, "disguised": {"_count": 1, "basilisk": {"_count": 1}}}, "tor": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "arose": {"_count": 3, "we": {"_count": 1, "do": {"_count": 1}}, "I": {"_count": 1, "settled": {"_count": 1}}, "from": {"_count": 1, "bed": {"_count": 1}}}, "reverie": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "no": {"_count": 1, "its": {"_count": 1}}, "I": {"_count": 1, "doubt": {"_count": 1}}, "hurrying": {"_count": 1, "from": {"_count": 1}}}, "papery": {"_count": 2, "look": {"_count": 1, "about": {"_count": 1}}, "skin": {"_count": 1, "hung": {"_count": 1}}}, "designed": {"_count": 4, "to": {"_count": 3, "test": {"_count": 1}, "combat": {"_count": 1}, "pull": {"_count": 1}}, "for": {"_count": 1, "human": {"_count": 1}}}, "Courage": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "twentyfourth": {"_count": 7, "in": {"_count": 1, "front": {"_count": 1}}, "but": {"_count": 1, "were": {"_count": 1}}, "looked": {"_count": 1, "a": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "June": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "drew": {"_count": 1, "closer": {"_count": 1}}}, "consuming": {"_count": 2, "nature": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "contraband": {"_count": 1}}}, "exempted": {"_count": 1, "from": {"_count": 1, "endofyear": {"_count": 1}}}, "exited": {"_count": 2, "though": {"_count": 1, "in": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}}, "deprive": {"_count": 3, "them": {"_count": 1, "of": {"_count": 1}}, "Voldemort": {"_count": 1, "of": {"_count": 1}}, "Molly": {"_count": 1, "any": {"_count": 1}}}, "jagged": {"_count": 12, "smiles": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "and": {"_count": 1}}, "rock": {"_count": 1, "and": {"_count": 1}}, "stone": {"_count": 1, "": {"_count": 1}}, "niches": {"_count": 1, "made": {"_count": 1}}, "cut": {"_count": 1, "in": {"_count": 1}}, "piece": {"_count": 1, "on": {"_count": 1}}, "edge": {"_count": 1, "of": {"_count": 1}}, "mirror": {"_count": 1, "fragment": {"_count": 1}}, "scales": {"_count": 1, "as": {"_count": 1}}, "jet": {"_count": 1, "of": {"_count": 1}}, "crack": {"_count": 1, "running": {"_count": 1}}}, "ransacked": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}}, "competitors": {"_count": 1, "whod": {"_count": 1, "had": {"_count": 1}}}, "fantasized": {"_count": 1, "about": {"_count": 1, "it": {"_count": 1}}}, "idle": {"_count": 1, "sort": {"_count": 1, "of": {"_count": 1}}}, "ensured": {"_count": 7, "that": {"_count": 5, "Harrys": {"_count": 1}, "Mr": {"_count": 1}, "I": {"_count": 1}, "her": {"_count": 1}, "they": {"_count": 1}}, "them": {"_count": 1, "a": {"_count": 1}}, "this": {"_count": 1, "twofold": {"_count": 1}}}, "keenest": {"_count": 2, "interest": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}}, "Violets": {"_count": 1, "just": {"_count": 1, "told": {"_count": 1}}}, "Vi": {"_count": 2, "its": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "snoozing": {"_count": 1}}}, "draping": {"_count": 2, "it": {"_count": 1, "around": {"_count": 1}}, "the": {"_count": 1, "bed": {"_count": 1}}}, "crisps": {"_count": 2, "and": {"_count": 1, "peanuts": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "Insisting": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "waylay": {"_count": 1, "him": {"_count": 1, "at": {"_count": 1}}}, "congratulations": {"_count": 8, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 1}, "!": {"_count": 1}}, "said": {"_count": 1, "Moody": {"_count": 1}}, "Ron": {"_count": 1, "I": {"_count": 1}}, "again": {"_count": 1, "on": {"_count": 1}}, "he": {"_count": 1, "wanted": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}}, "melodramatic": {"_count": 1, "to": {"_count": 1, "say": {"_count": 1}}}, "Violet": {"_count": 4, "shes": {"_count": 1, "already": {"_count": 1}}, "from": {"_count": 1, "downstairs": {"_count": 1}}, "the": {"_count": 1, "Fat": {"_count": 1}}, "drank": {"_count": 1, "their": {"_count": 1}}}, "endof": {"_count": 1, "year": {"_count": 1, "tests": {"_count": 1}}}, "sceptical": {"_count": 1, "tone": {"_count": 1, "as": {"_count": 1}}}, "photocall": {"_count": 1, "or": {"_count": 1, "something": {"_count": 1}}}, "WEIGHING": {"_count": 1, "OF": {"_count": 1, "THE": {"_count": 1}}}, "WANDS": {"_count": 2, "When": {"_count": 1, "Harry": {"_count": 1}}, "OUT": {"_count": 1, "FOR": {"_count": 1}}}, "resolutely": {"_count": 11, "over": {"_count": 1, "to": {"_count": 1}}, "upside": {"_count": 1, "down": {"_count": 1}}, "in": {"_count": 1, "another": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "spelling": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "away": {"_count": 1, "with": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "purple": {"_count": 1, "": {"_count": 1}}, "plowing": {"_count": 1, "on": {"_count": 1}}, "refusing": {"_count": 1, "to": {"_count": 1}}}, "moored": {"_count": 2, "reflected": {"_count": 1, "blackly": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "blackly": {"_count": 2, "in": {"_count": 2, "the": {"_count": 2}}}, "munching": {"_count": 3, "their": {"_count": 1, "toast": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "then": {"_count": 1, "Ted": {"_count": 1}}}, "\u2018not": {"_count": 1, "really": {"_count": 1, "": {"_count": 1}}}, "despairingly": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "Uncle": {"_count": 1}}, "well": {"_count": 1, "on": {"_count": 1}}, "it": {"_count": 1, "would": {"_count": 1}}}, "prat": {"_count": 18, "of": {"_count": 1, "himself": {"_count": 1}}, "Neville": {"_count": 1, "thats": {"_count": 1}}, "said": {"_count": 3, "George": {"_count": 1}, "Ron": {"_count": 1}, "Fred": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "why": {"_count": 1, "didnt": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "Ron": {"_count": 1, "look": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}, "its": {"_count": 1, "not": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}, "enough": {"_count": 1, "to": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}}, "mentions": {"_count": 3, "it": {"_count": 1, "but": {"_count": 1}}, "teams": {"_count": 1, "too": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "gawping": {"_count": 5, "at": {"_count": 3, "my": {"_count": 1}, "Malfoy": {"_count": 1}, "him": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "crowd": {"_count": 1, "nor": {"_count": 1}}}, "twinged": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tournaments": {"_count": 5, "famous": {"_count": 1, "and": {"_count": 1}}, "got": {"_count": 1, "plenty": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "going": {"_count": 1, "Mr": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}}, "tentacle": {"_count": 1, "rose": {"_count": 1, "out": {"_count": 1}}}, "Tournaments": {"_count": 2, "happening": {"_count": 1, "this": {"_count": 1}}, "aim": {"_count": 1, "was": {"_count": 1}}}, "translate": {"_count": 2, "this": {"_count": 1, "into": {"_count": 1}}, "runes": {"_count": 1, "": {"_count": 1}}}, "rafters": {"_count": 5, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "were": {"_count": 1, "visible": {"_count": 1}}, "did": {"_count": 1, "it": {"_count": 1}}}, "exacerbated": {"_count": 1, "perhaps": {"_count": 1, "by": {"_count": 1}}}, "Bouncing": {"_count": 3, "Bulbs": {"_count": 2, "at": {"_count": 1}, "wriggled": {"_count": 1}}, "toward": {"_count": 1, "Mrs": {"_count": 1}}}, "Bulbs": {"_count": 2, "at": {"_count": 1, "the": {"_count": 1}}, "wriggled": {"_count": 1, "free": {"_count": 1}}}, "smacked": {"_count": 3, "him": {"_count": 1, "hard": {"_count": 1}}, "the": {"_count": 1, "top": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}}, "Predictably": {"_count": 3, "Malfoy": {"_count": 1, "arrived": {"_count": 1}}, "Neville": {"_count": 1, "was": {"_count": 1}}, "horribly": {"_count": 1, "the": {"_count": 1}}}, "sycophantically": {"_count": 5, "but": {"_count": 1, "Malfoy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "rubbing": {"_count": 1, "his": {"_count": 1}}, "Morning": {"_count": 1, "Yaxley": {"_count": 1}}, "that": {"_count": 1, "makes": {"_count": 1}}}, "Skrewt": {"_count": 6, "": {"_count": 5, ".": {"_count": 5}}, "but": {"_count": 1, "something": {"_count": 1}}}, "excess": {"_count": 3, "of": {"_count": 1, "pentup": {"_count": 1}}, "thoughts": {"_count": 1, "from": {"_count": 1}}, "it": {"_count": 1, "causes": {"_count": 1}}}, "pentup": {"_count": 1, "energy": {"_count": 1, "and": {"_count": 1}}}, "Roun": {"_count": 1, "the": {"_count": 1, "middle": {"_count": 1}}}, "dragonhide": {"_count": 1, "gloves": {"_count": 1, "jus": {"_count": 1}}}, "intention": {"_count": 9, "however": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 4, "ceasing": {"_count": 1}, "being": {"_count": 1}, "going": {"_count": 1}, "killing": {"_count": 1}}, "whatsoever": {"_count": 1, "of": {"_count": 1}}, "became": {"_count": 1, "clear": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "competin": {"_count": 1, "Harry": {"_count": 1, "": {"_count": 1}}}, "concealing": {"_count": 10, "with": {"_count": 1, "difficulty": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "grins": {"_count": 1, "": {"_count": 1}}, "things": {"_count": 1, "at": {"_count": 1}}, "Hedwig": {"_count": 1, "behind": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "the": {"_count": 1, "Stunned": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "tapestry": {"_count": 1, "at": {"_count": 1}}}, "scorpions": {"_count": 2, "and": {"_count": 1, "elongated": {"_count": 1}}, "with": {"_count": 1, "suckers": {"_count": 1}}}, "elongated": {"_count": 5, "crabs": {"_count": 1, "but": {"_count": 1}}, "past": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "two": {"_count": 1}}, "shadows": {"_count": 1, "moving": {"_count": 1}}}, "crabs": {"_count": 2, "but": {"_count": 1, "still": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "closest": {"_count": 19, "he": {"_count": 1, "had": {"_count": 1}}, "dragon": {"_count": 1, "the": {"_count": 1}}, "bead": {"_count": 1, "of": {"_count": 1}}, "supporter": {"_count": 1, "": {"_count": 1}}, "thestral": {"_count": 2, "evidently": {"_count": 1}, "licking": {"_count": 1}}, "to": {"_count": 5, "Harry": {"_count": 1}, "his": {"_count": 1}, "the": {"_count": 1}, "Albus": {"_count": 1}, "Voldemort": {"_count": 1}}, "neighbors": {"_count": 1, "and": {"_count": 1}}, "attackers": {"_count": 1, "judging": {"_count": 1}}, "thing": {"_count": 2, "to": {"_count": 2}}, "row": {"_count": 1, "": {"_count": 1}}, "living": {"_count": 1, "relatives": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "companion": {"_count": 1, "a": {"_count": 1}}}, "coped": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "tricking": {"_count": 2, "the": {"_count": 1, "goblet": {"_count": 1}}, "him": {"_count": 1, "or": {"_count": 1}}}, "Exceptionally": {"_count": 1, "handsome": {"_count": 1, "with": {"_count": 1}}}, "certainty": {"_count": 7, "than": {"_count": 1, "usual": {"_count": 1}}, "leaked": {"_count": 1, "away": {"_count": 1}}, "had": {"_count": 1, "crashed": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "which": {"_count": 1, "remained": {"_count": 1}}}, "reassure": {"_count": 6, "him": {"_count": 1, "as": {"_count": 1}}, "one": {"_count": 1, "another": {"_count": 1}}, "her": {"_count": 1, "in": {"_count": 1}}, "them": {"_count": 1, "in": {"_count": 1}}, "you": {"_count": 1, "that": {"_count": 1}}, "his": {"_count": 1, "master": {"_count": 1}}}, "magnet": {"_count": 2, "for": {"_count": 1, "board": {"_count": 1}}, "saw": {"_count": 1, "a": {"_count": 1}}}, "dusters": {"_count": 1, "wastepaper": {"_count": 1, "baskets": {"_count": 1}}}, "lunascopes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Being": {"_count": 8, "shut": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "Dark": {"_count": 1}}, "and": {"_count": 2, "Spirit": {"_count": 2}}, "silly": {"_count": 2, "": {"_count": 1}, "she": {"_count": 1}}, "continually": {"_count": 1, "outshone": {"_count": 1}}, "fed": {"_count": 1, "and": {"_count": 1}}}, "Fridays": {"_count": 2, "worth": {"_count": 1, "with": {"_count": 1}}, "Keeper": {"_count": 1, "tryouts": {"_count": 1}}}, "intoning": {"_count": 1, "ignore": {"_count": 1, "them": {"_count": 1}}}, "Support": {"_count": 9, "CEDRIC": {"_count": 2, "DIGGORY": {"_count": 2}}, "Cedric": {"_count": 5, "Diggory": {"_count": 2}, "Diggoryl": {"_count": 3}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "Staff": {"_count": 1, "": {"_count": 1}}}, "CEDRIC": {"_count": 2, "DIGGORY": {"_count": 2, "The": {"_count": 1}, "and": {"_count": 1}}}, "DIGGORY": {"_count": 2, "The": {"_count": 1, "REAL": {"_count": 1}}, "and": {"_count": 1, "POTTER": {"_count": 1}}}, "REAL": {"_count": 3, "Hogwarts": {"_count": 1, "Champion": {"_count": 1}}, "LAUGH": {"_count": 1, "HAVENT": {"_count": 1}}, "Hermione": {"_count": 1, "Sirius": {"_count": 1}}}, "Champion": {"_count": 3, "Like": {"_count": 1, "them": {"_count": 1}}, "number": {"_count": 1, "four": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "STINKS": {"_count": 10, "The": {"_count": 1, "Slytherins": {"_count": 1}}, "was": {"_count": 1, "shining": {"_count": 1}}, "flashed": {"_count": 2, "once": {"_count": 1}, "at": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "badges": {"_count": 1, "off": {"_count": 1}}, "badge": {"_count": 1, "at": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "cracked": {"_count": 1}}}, "sliming": {"_count": 1, "it": {"_count": 1, "up": {"_count": 1}}}, "dam": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "FurnunculusV": {"_count": 1, "Harry": {"_count": 1, "yelled": {"_count": 1}}}, "DensaugeoV": {"_count": 1, "screamed": {"_count": 1, "Malfoy": {"_count": 1}}}, "Jets": {"_count": 6, "of": {"_count": 6, "light": {"_count": 4}, "red": {"_count": 2}}}, "average": {"_count": 8, "were": {"_count": 1, "now": {"_count": 1}}, "Hogwarts": {"_count": 1, "student": {"_count": 1}}, "car": {"_count": 1, "tire": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "cupboard": {"_count": 1, "": {"_count": 1}}, "school": {"_count": 1, "lesson": {"_count": 1}}, "Blast": {"_count": 1, "Ended": {"_count": 1}}, "book": {"_count": 1, "said": {"_count": 1}}}, "beaver": {"_count": 1, "as": {"_count": 1, "her": {"_count": 1}}}, "clamored": {"_count": 1, "to": {"_count": 1, "give": {"_count": 1}}}, "Lood": {"_count": 1, "He": {"_count": 1, "forced": {"_count": 1}}}, "gist": {"_count": 2, "however": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "silkiest": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "injustice": {"_count": 6, "of": {"_count": 4, "it": {"_count": 2}, "these": {"_count": 1}, "all": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "still": {"_count": 1, "rankled": {"_count": 1}}}, "horrific": {"_count": 7, "things": {"_count": 2, "happening": {"_count": 1}, "": {"_count": 1}}, "monster": {"_count": 1, "barring": {"_count": 1}}, "deaths": {"_count": 1, "quickly": {"_count": 1}}, "creatures": {"_count": 1, "": {"_count": 1}}, "scenes": {"_count": 1, "of": {"_count": 1}}, "fight": {"_count": 1, "had": {"_count": 1}}}, "Antidotes": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "recipes": {"_count": 2, "now": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "selecting": {"_count": 3, "someone": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 1, "most": {"_count": 1}}, "antidotes": {"_count": 1, "to": {"_count": 1}}}, "endtoend": {"_count": 1, "in": {"_count": 1, "front": {"_count": 1}}}, "paunchy": {"_count": 2, "man": {"_count": 1, "holding": {"_count": 1}}, "photographer": {"_count": 1, "": {"_count": 1}}}, "functional": {"_count": 1, "no": {"_count": 1, "problems": {"_count": 1}}}, "tools": {"_count": 3, "in": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "experts": {"_count": 5, "upstairs": {"_count": 1, "now": {"_count": 1}}, "at": {"_count": 2, "St": {"_count": 1}, "Dark": {"_count": 1}}, "were": {"_count": 1, "at": {"_count": 1}}, "agree": {"_count": 1, "that": {"_count": 1}}}, "elaborate": {"_count": 7, "and": {"_count": 1, "curiously": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "curls": {"_count": 1, "now": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}, "ginger": {"_count": 1, "wig": {"_count": 1}}}, "contrasted": {"_count": 1, "oddly": {"_count": 1, "with": {"_count": 1}}}, "heavyjawed": {"_count": 1, "face": {"_count": 1, "": {"_count": 1}}}, "jeweled": {"_count": 5, "spectacles": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "mirror": {"_count": 1, "and": {"_count": 1}}, "flasks": {"_count": 1, "and": {"_count": 1}}, "goblet": {"_count": 1, "tumbling": {"_count": 1}}}, "crocodileskin": {"_count": 7, "handbag": {"_count": 6, "ended": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 1}, "was": {"_count": 1}, "pulled": {"_count": 1}}, "bag": {"_count": 1, "": {"_count": 1}}}, "twoinch": {"_count": 2, "nails": {"_count": 1, "painted": {"_count": 1}}, "talons": {"_count": 1, "was": {"_count": 1}}}, "objection": {"_count": 7, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "whatsoever": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "but": {"_count": 1, "one": {"_count": 1}}}, "scarlettaloned": {"_count": 1, "fingers": {"_count": 1, "had": {"_count": 1}}}, "perching": {"_count": 2, "herself": {"_count": 1, "precariously": {"_count": 1}}, "peacefully": {"_count": 1, "on": {"_count": 1}}}, "precariously": {"_count": 7, "upon": {"_count": 1, "an": {"_count": 1}}, "balanced": {"_count": 1, "cauldrons": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "on": {"_count": 3, "her": {"_count": 1}, "stacks": {"_count": 1}, "one": {"_count": 1}}, "and": {"_count": 1, "more": {"_count": 1}}}, "cardboard": {"_count": 9, "box": {"_count": 6, "and": {"_count": 2}, "stood": {"_count": 1}, "was": {"_count": 1}, "": {"_count": 1}, "on": {"_count": 1}}, "boxes": {"_count": 2, "amongst": {"_count": 1}, "and": {"_count": 1}}, "sign": {"_count": 1, "pinned": {"_count": 1}}}, "unsnapped": {"_count": 1, "her": {"_count": 1, "crocodileskin": {"_count": 1}}}, "QuickQuotes": {"_count": 10, "Quill": {"_count": 10, "": {"_count": 3}, "and": {"_count": 2}, "might": {"_count": 1}, "in": {"_count": 1}, "was": {"_count": 2}, "at": {"_count": 1}}}, "Quill": {"_count": 12, "": {"_count": 4, "?": {"_count": 1}, "!": {"_count": 2}, ".": {"_count": 1}}, "and": {"_count": 2, "place": {"_count": 1}, "said": {"_count": 1}}, "might": {"_count": 1, "just": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "was": {"_count": 2, "out": {"_count": 1}, "actually": {"_count": 1}}, "Shop": {"_count": 1, "where": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "acidgreen": {"_count": 4, "quill": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "robes": {"_count": 1, "today": {"_count": 1}}, "writing": {"_count": 1, "aloud": {"_count": 1}}}, "Testing": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Attractive": {"_count": 1, "blonde": {"_count": 1, "Rita": {"_count": 1}}}, "fortythree": {"_count": 1, "whose": {"_count": 1, "savage": {"_count": 1}}}, "inflated": {"_count": 4, "reputations": {"_count": 1, "Lovely": {"_count": 1}}, "your": {"_count": 1, "already": {"_count": 1}}, "himself": {"_count": 1, "you": {"_count": 1}}, "pushing": {"_count": 1, "those": {"_count": 1}}}, "reputations": {"_count": 1, "Lovely": {"_count": 1, "said": {"_count": 1}}}, "disfigures": {"_count": 1, "the": {"_count": 1, "otherwise": {"_count": 1}}}, "charming": {"_count": 13, "face": {"_count": 1, "of": {"_count": 1}}, "friend": {"_count": 1, "will": {"_count": 1}}, "with": {"_count": 1, "their": {"_count": 1}}, "Wormtail": {"_count": 1, "will": {"_count": 1}}, "village": {"_count": 1, "of": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 2}}, "young": {"_count": 1, "lady": {"_count": 1}}, "Melinda": {"_count": 1, "Bobbin": {"_count": 1}}, "garden": {"_count": 1, "": {"_count": 1}}, "little": {"_count": 1, "garden": {"_count": 1}}, "boy": {"_count": 1, "to": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}}, "Reluctantly": {"_count": 2, "Harry": {"_count": 1, "looked": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "penciled": {"_count": 2, "eyebrow": {"_count": 1, "": {"_count": 1}}, "eyebrows": {"_count": 1, "": {"_count": 1}}}, "readers": {"_count": 6, "love": {"_count": 1, "a": {"_count": 1}}, "have": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 1, "summer": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}}, "rebel": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Nervous": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Champions": {"_count": 2, "have": {"_count": 1, "died": {"_count": 1}}, "over": {"_count": 1, "here": {"_count": 1}}}, "trauma": {"_count": 1, "in": {"_count": 1, "your": {"_count": 1}}}, "Frowning": {"_count": 3, "he": {"_count": 2, "avoided": {"_count": 1}, "made": {"_count": 1}}, "slightly": {"_count": 1, "he": {"_count": 1}}}, "Ritas": {"_count": 13, "clawed": {"_count": 1, "fingers": {"_count": 1}}, "article": {"_count": 3, "had": {"_count": 2}, "echoed": {"_count": 1}}, "definitely": {"_count": 1, "not": {"_count": 1}}, "using": {"_count": 1, "magic": {"_count": 1}}, "stuff": {"_count": 1, "": {"_count": 1}}, "jaw": {"_count": 1, "": {"_count": 1}}, "interview": {"_count": 1, "with": {"_count": 1}}, "book": {"_count": 2, "": {"_count": 1}, "lay": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}, "invention": {"_count": 1, "": {"_count": 1}}}, "clasp": {"_count": 7, "of": {"_count": 3, "her": {"_count": 2}, "the": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "flipped": {"_count": 1}}, "she": {"_count": 1, "threw": {"_count": 1}}, "their": {"_count": 1, "hands": {"_count": 1}}}, "mannish": {"_count": 1, "hands": {"_count": 1, "to": {"_count": 1}}}, "Conference": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "in": {"_count": 1, "Cairo": {"_count": 1}}}, "Enchantingly": {"_count": 1, "nasty": {"_count": 1, "said": {"_count": 1}}}, "obsolete": {"_count": 1, "dingbat": {"_count": 1, "": {"_count": 1}}}, "dingbat": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "reasoning": {"_count": 1, "behind": {"_count": 1, "the": {"_count": 1}}}, "rudeness": {"_count": 6, "Rita": {"_count": 1, "said": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "every": {"_count": 1}}, "occurs": {"_count": 1, "alarmingly": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}}, "courteous": {"_count": 2, "bow": {"_count": 1, "and": {"_count": 1}}, "little": {"_count": 1, "bow": {"_count": 1}}}, "Weighing": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "wandmaker": {"_count": 18, "from": {"_count": 1, "whom": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, "!": {"_count": 1}, ".": {"_count": 2}}, "and": {"_count": 2, "Harry": {"_count": 1}, "how": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "what": {"_count": 1, "does": {"_count": 1}}, "curled": {"_count": 1, "up": {"_count": 1}}, "but": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 1, "lying": {"_count": 1}}, "weakly": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 1, "utterly": {"_count": 1}}, "still": {"_count": 1, "looked": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "could": {"_count": 1, "I": {"_count": 1}}}, "Mademoiselle": {"_count": 1, "Delacour": {"_count": 1, "could": {"_count": 1}}}, "twirled": {"_count": 5, "the": {"_count": 1, "wand": {"_count": 1}}, "it": {"_count": 2, "once": {"_count": 1}, "in": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "Bellatrix": {"_count": 1}}}, "baton": {"_count": 3, "and": {"_count": 1, "it": {"_count": 1}}, "Tonks": {"_count": 1, "made": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "inflexible": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "perhaps": {"_count": 1, "but": {"_count": 1}}, "air": {"_count": 1, "": {"_count": 1}}}, "rosewood": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "grandmuzzers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "temperamental": {"_count": 1, "wands": {"_count": 1, "": {"_count": 1}}}, "scratches": {"_count": 10, "or": {"_count": 1, "bumps": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "on": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "running": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "cuts": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}}, "OrchideousV": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "Containing": {"_count": 1, "a": {"_count": 1, "single": {"_count": 1}}}, "gored": {"_count": 1, "me": {"_count": 1, "with": {"_count": 1}}}, "plucked": {"_count": 6, "his": {"_count": 1, "tail": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "courage": {"_count": 1}}, "and": {"_count": 1, "generally": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Polished": {"_count": 1, "it": {"_count": 1, "last": {"_count": 1}}}, "surreptitiously": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "through": {"_count": 1, "the": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "itll": {"_count": 1}}, "for": {"_count": 1, "some": {"_count": 1}}, "folded": {"_count": 1, "down": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}, "obtained": {"_count": 1, "hairs": {"_count": 1}}}, "patronizing": {"_count": 1, "look": {"_count": 1, "and": {"_count": 1}}}, "desisted": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "only": {"_count": 1, "when": {"_count": 1}}}, "duckfooted": {"_count": 1, "toward": {"_count": 1, "Mr": {"_count": 1}}}, "Gregorovitch": {"_count": 46, "creation": {"_count": 1, "unless": {"_count": 1}}, "": {"_count": 14, "?": {"_count": 4}, ".": {"_count": 8}, "!": {"_count": 2}}, "familiar": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "my": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "vand": {"_count": 1, "": {"_count": 1}}, "know": {"_count": 1, "better": {"_count": 1}}, "but": {"_count": 1, "Ron": {"_count": 1}}, "is": {"_count": 1, "better": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 1, "wandmaker": {"_count": 1}}, "s": {"_count": 5, "wake": {"_count": 1}, "face": {"_count": 1}, "mind": {"_count": 2}, "eyes": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "Hermione": {"_count": 1, "and": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "making": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "jumped": {"_count": 1}}, "had": {"_count": 5, "once": {"_count": 1}, "the": {"_count": 3}, "it": {"_count": 1}}, "dead": {"_count": 1, "it": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "himself": {"_count": 1, "started": {"_count": 1}}, "didnt": {"_count": 1, "have": {"_count": 1}}, "was": {"_count": 1, "stupid": {"_count": 1}}}, "creation": {"_count": 4, "unless": {"_count": 1, "Im": {"_count": 1}}, "of": {"_count": 2, "new": {"_count": 1}, "pamphlets": {"_count": 1}}, "nobody": {"_count": 1, "else": {"_count": 1}}}, "styling": {"_count": 2, "is": {"_count": 1, "never": {"_count": 1}}, "himself": {"_count": 1, "Lord": {"_count": 1}}}, "minutely": {"_count": 2, "turning": {"_count": 1, "it": {"_count": 1}}, "examining": {"_count": 1, "an": {"_count": 1}}}, "hornbeam": {"_count": 2, "and": {"_count": 1, "dragon": {"_count": 1}}, "wand": {"_count": 1, "let": {"_count": 1}}}, "Avis": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "measurements": {"_count": 1, "and": {"_count": 1, "then": {"_count": 1}}}, "compatible": {"_count": 1, "with": {"_count": 1, "this": {"_count": 1}}}, "Eventually": {"_count": 2, "however": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "area": {"_count": 1}}}, "Photos": {"_count": 1, "Dumbledore": {"_count": 1, "photos": {"_count": 1}}}, "shots": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}}, "eventually": {"_count": 9, "she": {"_count": 1, "had": {"_count": 1}}, "though": {"_count": 1, "you": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 1, "there": {"_count": 1}}, "peering": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "found": {"_count": 1}}, "be": {"_count": 1, "crushed": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}}, "prominence": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "brusquely": {"_count": 7, "the": {"_count": 1, "moment": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "Mr": {"_count": 1}}, "snapping": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "22nd": {"_count": 2, "of": {"_count": 2, "November": {"_count": 2}}}, "Entering": {"_count": 2, "you": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "common": {"_count": 1}}}, "HUNGARIAN": {"_count": 1, "HORNTAIL": {"_count": 1, "The": {"_count": 1}}}, "HORNTAIL": {"_count": 1, "The": {"_count": 1, "prospect": {"_count": 1}}}, "sustained": {"_count": 8, "Harry": {"_count": 2, "over": {"_count": 1}, "that": {"_count": 1}}, "a": {"_count": 4, "bad": {"_count": 1}, "nasty": {"_count": 1}, "serious": {"_count": 1}, "blow": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "heavy": {"_count": 1, "losses": {"_count": 1}}}, "barring": {"_count": 3, "his": {"_count": 1, "path": {"_count": 1}}, "the": {"_count": 1, "mens": {"_count": 1}}, "access": {"_count": 1, "to": {"_count": 1}}}, "experienced": {"_count": 23, "before": {"_count": 2, "a": {"_count": 1}, "": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 3}}, "his": {"_count": 1, "very": {"_count": 1}}, "an": {"_count": 1, "exemplary": {"_count": 1}}, "a": {"_count": 6, "wonderful": {"_count": 1}, "stabbing": {"_count": 1}, "much": {"_count": 1}, "split": {"_count": 1}, "surge": {"_count": 1}, "thrill": {"_count": 1}}, "terror": {"_count": 1, "relief": {"_count": 1}}, "pain": {"_count": 1, "so": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "with": {"_count": 1, "Dumbledore": {"_count": 1}}, "enough": {"_count": 1, "pain": {"_count": 1}}, "all": {"_count": 1, "evening": {"_count": 1}}, "the": {"_count": 2, "same": {"_count": 1}, "tiniest": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Admittedly": {"_count": 6, "he": {"_count": 3, "didnt": {"_count": 1}, "spotted": {"_count": 1}, "had": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "it": {"_count": 1, "took": {"_count": 1}}, "the": {"_count": 1, "fog": {"_count": 1}}}, "stragglers": {"_count": 5, "out": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "leaving": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "giving": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "resort": {"_count": 5, "to": {"_count": 3, "that": {"_count": 1}, "the": {"_count": 1}, "your": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "confines": {"_count": 2, "of": {"_count": 2, "the": {"_count": 2}}}, "misspelled": {"_count": 2, "had": {"_count": 1, "been": {"_count": 1}}, "words": {"_count": 1, "with": {"_count": 1}}}, "ers": {"_count": 1, "into": {"_count": 1, "long": {"_count": 1}}}, "sentences": {"_count": 5, "She": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "here": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "Azkaban": {"_count": 1}, "a": {"_count": 1}}}, "stunningly": {"_count": 1, "pretty": {"_count": 1, "Muggleborn": {"_count": 1}}}, "quoting": {"_count": 5, "it": {"_count": 1, "at": {"_count": 1}}, "that": {"_count": 1, "stupid": {"_count": 1}}, "Rita": {"_count": 2, "Skeeters": {"_count": 2}}, "the": {"_count": 1, "interview": {"_count": 1}}}, "hanky": {"_count": 1, "Potter": {"_count": 1, "in": {"_count": 1}}}, "bystanders": {"_count": 1, "in": {"_count": 1, "fact": {"_count": 1}}}, "handling": {"_count": 7, "the": {"_count": 1, "situation": {"_count": 1}}, "much": {"_count": 1, "more": {"_count": 1}}, "of": {"_count": 2, "bowtruckles": {"_count": 1}, "a": {"_count": 1}}, "illegally": {"_count": 1, "": {"_count": 1}}, "hot": {"_count": 1, "things": {"_count": 1}}, "Secrets": {"_count": 1, "of": {"_count": 1}}}, "Stunningly": {"_count": 1, "pretty": {"_count": 1, "": {"_count": 1}}}, "chipmunk": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "pickle": {"_count": 1, "rats": {"_count": 1, "brains": {"_count": 1}}}, "belief": {"_count": 12, "that": {"_count": 4, "Harry": {"_count": 2}, "your": {"_count": 1}, "he": {"_count": 1}}, "however": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "never": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "Malfoy": {"_count": 1, "might": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 1}}, "among": {"_count": 1, "some": {"_count": 1}}}, "adamant": {"_count": 1, "He": {"_count": 1, "would": {"_count": 1}}}, "consequently": {"_count": 3, "spent": {"_count": 1, "a": {"_count": 1}}, "forgot": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "distracting": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "the": {"_count": 1, "others": {"_count": 1}}, "Ginny": {"_count": 1, "when": {"_count": 1}}}, "Wonky": {"_count": 2, "Faint": {"_count": 1, "thing": {"_count": 1}}, "Faints": {"_count": 1, "": {"_count": 1}}}, "Faint": {"_count": 1, "thing": {"_count": 1, "Wronski": {"_count": 1}}}, "Faints": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "disobliging": {"_count": 1, "habit": {"_count": 1, "of": {"_count": 1}}}, "clocks": {"_count": 5, "to": {"_count": 2, "work": {"_count": 1}, "go": {"_count": 1}}, "gleaming": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 1, "overturning": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}}, "everpresent": {"_count": 1, "as": {"_count": 1, "the": {"_count": 1}}}, "persuasion": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "she": {"_count": 1, "became": {"_count": 1}}}, "wonderfully": {"_count": 3, "free": {"_count": 1, "under": {"_count": 1}}, "solid": {"_count": 1, "ground": {"_count": 1}}, "warm": {"_count": 1, "and": {"_count": 1}}}, "Sweetshop": {"_count": 1, "later": {"_count": 1, "eating": {"_count": 1}}}, "creamfilled": {"_count": 1, "chocolates": {"_count": 1, "": {"_count": 1}}}, "chocolates": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "away": {"_count": 1, "unopened": {"_count": 1}}, "and": {"_count": 1, "plump": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "molten": {"_count": 6, "panic": {"_count": 1, "": {"_count": 1}}, "silver": {"_count": 1, "hung": {"_count": 1}}, "wave": {"_count": 1, "of": {"_count": 1}}, "glass": {"_count": 1, "For": {"_count": 1}}, "gold": {"_count": 2, "and": {"_count": 1}, "spread": {"_count": 1}}}, "discussed": {"_count": 16, "what": {"_count": 1, "was": {"_count": 1}}, "is": {"_count": 1, "around": {"_count": 1}}, "his": {"_count": 1, "fears": {"_count": 1}}, "your": {"_count": 1, "scar": {"_count": 1}}, "this": {"_count": 2, "matter": {"_count": 1}, "Harry": {"_count": 1}}, "these": {"_count": 1, "matters": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "fighting": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "Harry": {"_count": 1, "Harrys": {"_count": 1}}, "my": {"_count": 1, "vand": {"_count": 1}}, "the": {"_count": 2, "matter": {"_count": 1}, "Cloak": {"_count": 1}}, "was": {"_count": 1, "visible": {"_count": 1}}}, "interpreting": {"_count": 2, "his": {"_count": 1, "silence": {"_count": 1}}, "them": {"_count": 1, "correctly": {"_count": 1}}}, "allwizard": {"_count": 1, "village": {"_count": 1, "in": {"_count": 1}}}, "hags": {"_count": 1, "who": {"_count": 1, "were": {"_count": 1}}}, "adept": {"_count": 4, "as": {"_count": 1, "wizards": {"_count": 1}}, "at": {"_count": 3, "hiding": {"_count": 1}, "it": {"_count": 1}, "producing": {"_count": 1}}}, "disguising": {"_count": 2, "themselves": {"_count": 1, "": {"_count": 1}}, "ones": {"_count": 1, "true": {"_count": 1}}}, "lapsed": {"_count": 3, "into": {"_count": 3, "thoughtful": {"_count": 1}, "silence": {"_count": 1}, "silent": {"_count": 1}}}, "haughty": {"_count": 9, "and": {"_count": 3, "unruffled": {"_count": 1}, "bored": {"_count": 1}, "proud": {"_count": 1}}, "features": {"_count": 1, "": {"_count": 1}}, "profile": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "after": {"_count": 1, "Harrys": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "Kendra": {"_count": 1, "Dumbledore": {"_count": 1}}}, "unruffled": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mercifully": {"_count": 5, "abandoned": {"_count": 1, "his": {"_count": 1}}, "empty": {"_count": 1, "": {"_count": 1}}, "been": {"_count": 1, "returned": {"_count": 1}}, "open": {"_count": 1, "and": {"_count": 1}}, "peaceful": {"_count": 1, "and": {"_count": 1}}}, "landlady": {"_count": 1, "didnt": {"_count": 1, "seem": {"_count": 1}}}, "askance": {"_count": 1, "at": {"_count": 1, "Moody": {"_count": 1}}}, "unattended": {"_count": 1, "cup": {"_count": 1, "": {"_count": 1}}}, "pretext": {"_count": 6, "of": {"_count": 4, "reading": {"_count": 1}, "holding": {"_count": 1}, "shifting": {"_count": 1}, "explaining": {"_count": 1}}, "to": {"_count": 1, "keep": {"_count": 1}}, "for": {"_count": 1, "going": {"_count": 1}}}, "Straightening": {"_count": 1, "up": {"_count": 1, "Hagrid": {"_count": 1}}}, "consent": {"_count": 5, "to": {"_count": 3, "take": {"_count": 1}, "come": {"_count": 1}, "be": {"_count": 1}}, "the": {"_count": 1, "most": {"_count": 1}}, "of": {"_count": 1, "its": {"_count": 1}}}, "Diggoryl": {"_count": 3, "badges": {"_count": 3, "and": {"_count": 1}, "the": {"_count": 1}, "around": {"_count": 1}}}, "artichoke": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "buttonhole": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "combs": {"_count": 1, "broken": {"_count": 1, "teeth": {"_count": 1}}}, "Bongsewer": {"_count": 1, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "Wair": {"_count": 1, "is": {"_count": 1, "it": {"_count": 1}}}, "sposed": {"_count": 1, "ter": {"_count": 1, "know": {"_count": 1}}}, "eyelashes": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "were": {"_count": 1, "hanging": {"_count": 1}}, "around": {"_count": 1, "her": {"_count": 1}}, "wispy": {"_count": 1, "hair": {"_count": 1}}}, "harebrained": {"_count": 1, "scheme": {"_count": 1, "in": {"_count": 1}}}, "stroll": {"_count": 12, "with": {"_count": 2, "Madame": {"_count": 1}, "me": {"_count": 1}}, "at": {"_count": 1, "one": {"_count": 1}}, "to": {"_count": 1, "give": {"_count": 1}}, "into": {"_count": 1, "my": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "up": {"_count": 2, "the": {"_count": 2}}, "across": {"_count": 1, "the": {"_count": 1}}, "outside": {"_count": 1, "past": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "perimeter": {"_count": 3, "of": {"_count": 2, "the": {"_count": 2}}, "wall": {"_count": 1, "": {"_count": 1}}}, "bonfires": {"_count": 1, "and": {"_count": 1, "men": {"_count": 1}}}, "viciouslooking": {"_count": 2, "dragons": {"_count": 1, "were": {"_count": 1}}, "wizard": {"_count": 1, "on": {"_count": 1}}}, "enclosure": {"_count": 16, "fenced": {"_count": 1, "with": {"_count": 1}}, "gazing": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "though": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 3, "was": {"_count": 1}, "the": {"_count": 1}, "stopping": {"_count": 1}}, "fence": {"_count": 1, "": {"_count": 1}}, "crouched": {"_count": 1, "low": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "still": {"_count": 1, "panting": {"_count": 1}}, "in": {"_count": 1, "November": {"_count": 1}}}, "fenced": {"_count": 1, "with": {"_count": 1, "thick": {"_count": 1}}}, "planks": {"_count": 1, "of": {"_count": 1, "wood": {"_count": 1}}}, "silveryblue": {"_count": 1, "one": {"_count": 1, "with": {"_count": 1}}}, "scaled": {"_count": 1, "green": {"_count": 1, "one": {"_count": 1}}}, "fringe": {"_count": 4, "of": {"_count": 1, "fine": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}}, "spikes": {"_count": 4, "around": {"_count": 1, "its": {"_count": 1}}, "protruding": {"_count": 1, "along": {"_count": 1}}, "grazed": {"_count": 1, "his": {"_count": 1}}, "erupting": {"_count": 1, "all": {"_count": 1}}}, "mushroomshaped": {"_count": 1, "fire": {"_count": 1, "clouds": {"_count": 1}}}, "lizardlike": {"_count": 1, "than": {"_count": 1, "the": {"_count": 1}}}, "Mesmerized": {"_count": 1, "Harry": {"_count": 1, "looked": {"_count": 1}}}, "vertical": {"_count": 10, "pupils": {"_count": 2, "like": {"_count": 1}, "her": {"_count": 1}}, "gold": {"_count": 1, "line": {"_count": 1}}, "wrestling": {"_count": 1, "match": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "slits": {"_count": 1, "for": {"_count": 1}}, "dive": {"_count": 1, "": {"_count": 1}}, "line": {"_count": 3, "": {"_count": 1}, "upon": {"_count": 1}, "representing": {"_count": 1}}}, "yowling": {"_count": 2, "screeching": {"_count": 1, "scream": {"_count": 1}}, "loudly": {"_count": 1, "by": {"_count": 1}}}, "Horntail": {"_count": 27, "do": {"_count": 1, "forty": {"_count": 1}}, "said": {"_count": 2, "Charlie": {"_count": 1}, "Ginny": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 6}}, "at": {"_count": 2, "that": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 5, "the": {"_count": 1}, "a": {"_count": 2}, "over": {"_count": 1}, "compared": {"_count": 1}}, "shrank": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 2, "just": {"_count": 1}, "still": {"_count": 1}}, "opened": {"_count": 1, "its": {"_count": 1}}, "didnt": {"_count": 1, "seem": {"_count": 1}}, "an": {"_count": 1, "all": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "time": {"_count": 1, "was": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}}, "Isn": {"_count": 2, "it": {"_count": 1, "beautiful": {"_count": 1}}, "tha": {"_count": 1, "nice": {"_count": 1}}}, "Stunning": {"_count": 38, "Spells": {"_count": 12, "on": {"_count": 1}, "shot": {"_count": 2}, "everywhere": {"_count": 1}, "straight": {"_count": 1}, "flew": {"_count": 2}, "Red": {"_count": 1}, "flying": {"_count": 1}, "at": {"_count": 1}, "": {"_count": 1}, "down": {"_count": 1}}, "Spell": {"_count": 20, "dragons": {"_count": 1}, "which": {"_count": 1}, "caught": {"_count": 1}, "after": {"_count": 2}, "at": {"_count": 3}, "right": {"_count": 1}, "bounced": {"_count": 1}, "back": {"_count": 1}, "Harry": {"_count": 1}, "hit": {"_count": 1}, "from": {"_count": 1}, "soared": {"_count": 1}, "straight": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "Dolohov": {"_count": 1}, "toward": {"_count": 1}}, "and": {"_count": 1, "Disarming": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 2}}, "Rookwood": {"_count": 1, "Arthur": {"_count": 1}}}, "keepers": {"_count": 5, "pull": {"_count": 1, "out": {"_count": 1}}, "lowered": {"_count": 1, "their": {"_count": 1}}, "staggered": {"_count": 1, "up": {"_count": 1}}, "rushing": {"_count": 1, "forward": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}}, "Stupefy": {"_count": 14, "they": {"_count": 1, "shouted": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "!": {"_count": 2}}, "Harry": {"_count": 1, "yelled": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "A": {"_count": 1, "jet": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "Lucius": {"_count": 1}}, "yelled": {"_count": 1, "Harry": {"_count": 1}}, "He": {"_count": 1, "missed": {"_count": 1}}}, "unison": {"_count": 6, "and": {"_count": 3, "the": {"_count": 1}, "both": {"_count": 1}, "squares": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "the": {"_count": 1, "witches": {"_count": 1}}}, "teeter": {"_count": 2, "dangerously": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "tons": {"_count": 1, "of": {"_count": 1, "sinewy": {"_count": 1}}}, "sinewy": {"_count": 1, "scalyblack": {"_count": 1, "dragon": {"_count": 1}}}, "scalyblack": {"_count": 1, "dragon": {"_count": 1, "hit": {"_count": 1}}}, "quake": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Draft": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "breeds": {"_count": 5, "you": {"_count": 1, "got": {"_count": 1}}, "of": {"_count": 1, "magical": {"_count": 1}}, "mutants": {"_count": 1, "freaks": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Abraxan": {"_count": 1, "horses": {"_count": 1}}}, "eyelid": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}, "might": {"_count": 1, "twitch": {"_count": 1}}, "crept": {"_count": 1, "beneath": {"_count": 1}}}, "Hungarian": {"_count": 6, "Horntail": {"_count": 6, "said": {"_count": 2}, "and": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 2}}}, "Swedish": {"_count": 3, "ShortSnout": {"_count": 3, "that": {"_count": 1}, "the": {"_count": 1}, "": {"_count": 1}}}, "ShortSnout": {"_count": 3, "that": {"_count": 1, "bluegray": {"_count": 1}}, "the": {"_count": 1, "number": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bluegray": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "Chinese": {"_count": 4, "Fireball": {"_count": 3, "thats": {"_count": 1}, "": {"_count": 1}, "emit": {"_count": 1}}, "Chomping": {"_count": 1, "Cabbage": {"_count": 1}}}, "Fireball": {"_count": 3, "thats": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "emit": {"_count": 1, "a": {"_count": 1}}}, "enraptured": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "romantic": {"_count": 3, "date": {"_count": 1, "Hagrid": {"_count": 1}}, "candlelit": {"_count": 1, "dinner": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}}, "Extinguishing": {"_count": 1, "Spells": {"_count": 1, "at": {"_count": 1}}}, "nesting": {"_count": 2, "mothers": {"_count": 1, "I": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}}, "envy": {"_count": 3, "the": {"_count": 1, "one": {"_count": 1}}, "envy": {"_count": 1, "engenders": {"_count": 1}}, "engenders": {"_count": 1, "spite": {"_count": 1}}}, "Vicious": {"_count": 1, "thing": {"_count": 1, "": {"_count": 1}}}, "Horntails": {"_count": 5, "tail": {"_count": 1, "and": {"_count": 1}}, "side": {"_count": 1, "": {"_count": 1}}, "head": {"_count": 3, "followed": {"_count": 1}, "rose": {"_count": 1}, "on": {"_count": 1}}}, "bronzecolored": {"_count": 1, "spikes": {"_count": 1, "protruding": {"_count": 1}}}, "clutch": {"_count": 5, "of": {"_count": 3, "huge": {"_count": 1}, "eggs": {"_count": 2}}, "his": {"_count": 1, "hand": {"_count": 1}}, "at": {"_count": 1, "Dudley": {"_count": 1}}}, "granitegray": {"_count": 1, "eggs": {"_count": 1, "between": {"_count": 1}}}, "kittens": {"_count": 6, "about": {"_count": 1, "him": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "gamboling": {"_count": 1, "around": {"_count": 1}}, "behind": {"_count": 1, "Umbridge": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "basking": {"_count": 1}}}, "\u2018": {"_count": 9, "How": {"_count": 1, "could": {"_count": 1}}, ".": {"_count": 3, "Harry": {"_count": 1}, "while": {"_count": 1}, "known": {"_count": 1}}, "which": {"_count": 1, "restores": {"_count": 1}}, "I": {"_count": 2, "must": {"_count": 1}, "have": {"_count": 1}}, "an": {"_count": 1, "immediate": {"_count": 1}}, "muttered": {"_count": 1, "Umbridge": {"_count": 1}}}, "limiti": {"_count": 1, "She": {"_count": 1, "was": {"_count": 1}}}, "floods": {"_count": 2, "after": {"_count": 1, "that": {"_count": 1}}, "concerning": {"_count": 1, "your": {"_count": 1}}}, "\u2018He": {"_count": 2, "still": {"_count": 1, "cries": {"_count": 1}}, "is": {"_count": 1, "now": {"_count": 1}}}, "Trusting": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "attractions": {"_count": 2, "of": {"_count": 1, "four": {"_count": 1}}, "the": {"_count": 1, "place": {"_count": 1}}}, "foothigh": {"_count": 2, "scaly": {"_count": 1, "spikeridden": {"_count": 1}}, "letters": {"_count": 1, "at": {"_count": 1}}}, "spikeridden": {"_count": 1, "firebreathing": {"_count": 1, "dragon": {"_count": 1}}}, "firebreathing": {"_count": 2, "dragon": {"_count": 1, "": {"_count": 1}}, "chicken": {"_count": 1, "and": {"_count": 1}}}, "Nearby": {"_count": 2, "on": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}}, "REALLY": {"_count": 2, "STINKS": {"_count": 2, "": {"_count": 1}, "badges": {"_count": 1}}}, "goner": {"_count": 2, "he": {"_count": 1, "finished": {"_count": 1}}, "wouldnt": {"_count": 1, "waste": {"_count": 1}}}, "notches": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "absorb": {"_count": 2, "yet": {"_count": 1, "another": {"_count": 1}}, "the": {"_count": 1, "enormous": {"_count": 1}}}, "actor": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Sirius": {"_count": 1}}, "not": {"_count": 1, "even": {"_count": 1}}}, "rumored": {"_count": 4, "to": {"_count": 2, "be": {"_count": 1}, "have": {"_count": 1}}, "I": {"_count": 1, "was": {"_count": 1}}, "Umbridge": {"_count": 1, "had": {"_count": 1}}}, "Stunner": {"_count": 1, "you": {"_count": 1, "need": {"_count": 1}}}, "Dressed": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "nosing": {"_count": 3, "around": {"_count": 1, "did": {"_count": 1}}, "you": {"_count": 1, "is": {"_count": 1}}, "hie": {"_count": 1, "into": {"_count": 1}}}, "toosmall": {"_count": 1, "pajamas": {"_count": 1, "and": {"_count": 1}}}, "TASK": {"_count": 4, "Harry": {"_count": 1, "got": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "You": {"_count": 1, "said": {"_count": 1}}, "Dumbledore": {"_count": 1, "reckons": {"_count": 1}}}, "inattentively": {"_count": 1, "that": {"_count": 1, "it": {"_count": 1}}}, "spoonful": {"_count": 1, "of": {"_count": 1, "porridge": {"_count": 1}}}, "Alarmed": {"_count": 1, "as": {"_count": 1, "she": {"_count": 1}}}, "warnings": {"_count": 9, "about": {"_count": 1, "Karkaroff": {"_count": 1}}, "before": {"_count": 2, "": {"_count": 1}, "always": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}, "all": {"_count": 1, "uttered": {"_count": 1}}, "when": {"_count": 1, "Voldemort": {"_count": 1}}, "the": {"_count": 1, "cards": {"_count": 1}}}, "subdue": {"_count": 5, "a": {"_count": 1, "dragon": {"_count": 1}}, "the": {"_count": 1, "Horntail": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "just": {"_count": 1}}}, "\u2018Talonclipping": {"_count": 1, "by": {"_count": 1, "charms": {"_count": 1}}}, "scalerot": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Dragons": {"_count": 1, "are": {"_count": 1, "extremely": {"_count": 1}}}, "imbues": {"_count": 1, "their": {"_count": 1, "thick": {"_count": 1}}}, "winegums": {"_count": 1, "or": {"_count": 1, "something": {"_count": 1}}}, "Transfigure": {"_count": 3, "it": {"_count": 1, "but": {"_count": 1}}, "yourself": {"_count": 1, "into": {"_count": 1}}, "or": {"_count": 1, "Untransfigure": {"_count": 1}}}, "Basic": {"_count": 3, "Hexes": {"_count": 1, "for": {"_count": 1}}, "Principles": {"_count": 1, "": {"_count": 1}}, "Blaze": {"_count": 1, "box": {"_count": 1}}}, "Hexes": {"_count": 2, "for": {"_count": 1, "the": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}}, "Vexed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Instant": {"_count": 4, "scalping": {"_count": 1, "": {"_count": 1}}, "Darkness": {"_count": 3, "Powder": {"_count": 3}}}, "scalping": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "firepower": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "clubll": {"_count": 1, "be": {"_count": 1, "here": {"_count": 1}}}, "bells": {"_count": 5, "about": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "flew": {"_count": 1, "and": {"_count": 1}}, "ringing": {"_count": 1, "in": {"_count": 1}}, "chiming": {"_count": 1, "through": {"_count": 1}}}, "Pausing": {"_count": 5, "at": {"_count": 1, "a": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "only": {"_count": 2, "to": {"_count": 2}}}, "Diffindol": {"_count": 5, "Cedrics": {"_count": 1, "bag": {"_count": 1}}, "yelled": {"_count": 1, "Harry": {"_count": 1}}, "The": {"_count": 2, "cover": {"_count": 1}, "severed": {"_count": 1}}, "Nothing": {"_count": 1, "happened": {"_count": 1}}}, "Parchment": {"_count": 1, "quills": {"_count": 1, "and": {"_count": 1}}}, "Advanced": {"_count": 29, "Transfiguration": {"_count": 1, "that": {"_count": 1}}, "Rune": {"_count": 1, "Translation": {"_count": 1}}, "PotionMaking": {"_count": 23, "": {"_count": 5}, "by": {"_count": 1}, "out": {"_count": 4}, "he": {"_count": 1}, "back": {"_count": 1}, "fresh": {"_count": 1}, "hardly": {"_count": 1}, "flying": {"_count": 1}, "and": {"_count": 2}, "off": {"_count": 1}, "before": {"_count": 1}, "with": {"_count": 1}, "swam": {"_count": 1}, "is": {"_count": 1}, "that": {"_count": 1}}, "Potion": {"_count": 4, "Making": {"_count": 4}}}, "unprepared": {"_count": 1, "well": {"_count": 1, "perhaps": {"_count": 1}}}, "footing": {"_count": 3, "arent": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "procured": {"_count": 3, "for": {"_count": 1, "them": {"_count": 1}}, "from": {"_count": 1, "Ollivander": {"_count": 1}}, "a": {"_count": 1, "wand": {"_count": 1}}}, "aerial": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "passed": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}}, "Shadowy": {"_count": 1, "figures": {"_count": 1, "were": {"_count": 1}}}, "Detectors": {"_count": 2, "do": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Sensor": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "apprehension": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "aloft": {"_count": 1, "": {"_count": 1}}, "moved": {"_count": 1, "forward": {"_count": 1}}}, "Vibrates": {"_count": 1, "when": {"_count": 1, "it": {"_count": 1}}}, "detects": {"_count": 3, "concealment": {"_count": 1, "and": {"_count": 1}}, "periods": {"_count": 1, "of": {"_count": 1}}, "magical": {"_count": 1, "activity": {"_count": 1}}}, "disable": {"_count": 1, "my": {"_count": 1, "Sneakoscope": {"_count": 1}}}, "extrasensitive": {"_count": 1, "picks": {"_count": 1, "up": {"_count": 1}}}, "picks": {"_count": 3, "up": {"_count": 1, "stuff": {"_count": 1}}, "the": {"_count": 1, "niffler": {"_count": 1}}, "things": {"_count": 1, "up": {"_count": 1}}}, "FoeGlass": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "sharpening": {"_count": 1}}, "where": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "shadowy": {"_count": 1, "figures": {"_count": 1}}}, "whites": {"_count": 3, "of": {"_count": 2, "their": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "keyholes": {"_count": 3, "in": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "dear": {"_count": 1}}}, "Cheatings": {"_count": 1, "a": {"_count": 1, "traditional": {"_count": 1}}}, "cheat": {"_count": 3, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}}, "laddie": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "highminded": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "interrupting": {"_count": 5, "him": {"_count": 2, "is": {"_count": 1}, "that": {"_count": 1}}, "Professor": {"_count": 1, "Trelawneys": {"_count": 1}}, "why": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "enable": {"_count": 8, "you": {"_count": 3, "to": {"_count": 3}}, "a": {"_count": 1, "human": {"_count": 1}}, "Harry": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 2, "to": {"_count": 2}}, "my": {"_count": 1, "selfsacrifice": {"_count": 1}}}, "uttering": {"_count": 4, "a": {"_count": 2, "hurried": {"_count": 1}, "single": {"_count": 1}}, "odd": {"_count": 1, "little": {"_count": 1}}, "loud": {"_count": 1, "war": {"_count": 1}}}, "Flutterby": {"_count": 3, "Bush": {"_count": 1, "she": {"_count": 1}}, "bushes": {"_count": 2, "standing": {"_count": 1}, "": {"_count": 1}}}, "Bush": {"_count": 1, "she": {"_count": 1, "was": {"_count": 1}}}, "Concentrate": {"_count": 2, "Harry": {"_count": 1, "concentrate": {"_count": 1}}, "on": {"_count": 1, "getting": {"_count": 1}}}, "pointblank": {"_count": 3, "to": {"_count": 3, "skive": {"_count": 1}, "accept": {"_count": 1}, "accompany": {"_count": 1}}}, "skive": {"_count": 4, "off": {"_count": 4, "Arithmancy": {"_count": 1}, "lessons": {"_count": 1}, "Divination": {"_count": 2}}}, "drawnout": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "cry": {"_count": 1, "of": {"_count": 1}}, "scream": {"_count": 3, "a": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}}, "Accio": {"_count": 26, "Dictionary": {"_count": 1, "": {"_count": 1}}, "Firebolti": {"_count": 1, "he": {"_count": 1}}, "Parchments": {"_count": 1, "The": {"_count": 1}}, "Butterbeeri": {"_count": 1, "He": {"_count": 1}}, "BroomsV": {"_count": 1, "Harry": {"_count": 1}}, "Proph": {"_count": 2, "Harry": {"_count": 1}, "Sirius": {"_count": 1}}, "Wand": {"_count": 3, "cried": {"_count": 1}, "over": {"_count": 1}, "": {"_count": 1}}, "Brain": {"_count": 1, "The": {"_count": 1}}, "Prophecy": {"_count": 1, "": {"_count": 1}}, "Horcruxl": {"_count": 1, "With": {"_count": 1}}, "Rosmertas": {"_count": 1, "Broomsl": {"_count": 1}}, "Hagridl": {"_count": 1, "The": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Glasses": {"_count": 1, "": {"_count": 1}}, "Locked": {"_count": 1, "": {"_count": 1}}, "Locket": {"_count": 1, "": {"_count": 1}}, "Dittany": {"_count": 1, "A": {"_count": 1}}, "Salmon": {"_count": 1, "": {"_count": 1}}, "Sword": {"_count": 1, "": {"_count": 1}}, "Cup": {"_count": 1, "cried": {"_count": 1}}, "Cloak": {"_count": 1, "": {"_count": 1}}, "Diadem": {"_count": 1, "": {"_count": 1}}}, "Dictionary": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "tissues": {"_count": 1, "ready": {"_count": 1, "Potted": {"_count": 1}}}, "mightnt": {"_count": 2, "just": {"_count": 1, "lose": {"_count": 1}}, "he": {"_count": 1, "": {"_count": 1}}}, "dragonfree": {"_count": 1, "hours": {"_count": 1, "": {"_count": 1}}}, "composed": {"_count": 6, "as": {"_count": 1, "usual": {"_count": 1}}, "from": {"_count": 1, "pasted": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}, "largely": {"_count": 1, "of": {"_count": 1}}, "above": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Goodo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "overblown": {"_count": 1, "cartoon": {"_count": 1, "figure": {"_count": 1}}}, "varieties": {"_count": 3, "you": {"_count": 1, "see": {"_count": 1}}, "of": {"_count": 1, "venom": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "reacted": {"_count": 12, "at": {"_count": 1, "all": {"_count": 1}}, "so": {"_count": 2, "fast": {"_count": 2}}, "to": {"_count": 1, "a": {"_count": 1}}, "instinctively": {"_count": 5, "all": {"_count": 1}, "his": {"_count": 1}, "": {"_count": 2}, "As": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "but": {"_count": 1, "before": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "species": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "blueishgray": {"_count": 1, "Swedish": {"_count": 1, "ShortSnout": {"_count": 1}}}, "refer": {"_count": 8, "to": {"_count": 6, "the": {"_count": 2}, "their": {"_count": 1}, "it": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "can": {"_count": 1, "lift": {"_count": 1}}, "us": {"_count": 1, "to": {"_count": 1}}}, "conspiratorially": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "pointers": {"_count": 1, "if": {"_count": 1, "youd": {"_count": 1}}}, "underdog": {"_count": 1, "here": {"_count": 1, "Harry": {"_count": 1}}}, "toface": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "counterpart": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "manyheaded": {"_count": 2, "entity": {"_count": 1, "as": {"_count": 1}}, "monster": {"_count": 1, "which": {"_count": 1}}}, "entity": {"_count": 1, "as": {"_count": 1, "Cedric": {"_count": 1}}}, "captured": {"_count": 10, "the": {"_count": 1, "golden": {"_count": 1}}, "these": {"_count": 1, "unfortunate": {"_count": 1}}, "Bertha": {"_count": 1, "Jorkins": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "carried": {"_count": 1}}, "bound": {"_count": 1, "and": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "erupt": {"_count": 6, "into": {"_count": 1, "applause": {"_count": 1}}, "in": {"_count": 2, "large": {"_count": 1}, "highly": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}}, "emit": {"_count": 3, "a": {"_count": 2, "horrible": {"_count": 1}, "pearly": {"_count": 1}}, "echoing": {"_count": 1, "screams": {"_count": 1}}}, "collective": {"_count": 4, "breath": {"_count": 1, "": {"_count": 1}}, "shudder": {"_count": 1, "around": {"_count": 1}}, "intake": {"_count": 1, "of": {"_count": 1}}, "sigh": {"_count": 1, "issued": {"_count": 1}}}, "Applause": {"_count": 2, "shattered": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "marshmallow": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}}, "crescendo": {"_count": 1, "inside": {"_count": 1, "him": {"_count": 1}}}, "halffurled": {"_count": 1, "her": {"_count": 1, "evil": {"_count": 1}}}, "yardlong": {"_count": 1, "gouge": {"_count": 1, "marks": {"_count": 1}}}, "gouge": {"_count": 4, "marks": {"_count": 2, "in": {"_count": 1}, "on": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 1}, "human": {"_count": 1}}}, "fiber": {"_count": 3, "of": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "merits": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "opposing": {"_count": 2, "team": {"_count": 1, "": {"_count": 1}}, "teams": {"_count": 1, "in": {"_count": 1}}}, "cementcolored": {"_count": 1, "fellows": {"_count": 1, "residing": {"_count": 1}}}, "residing": {"_count": 3, "safely": {"_count": 1, "between": {"_count": 1}}, "on": {"_count": 1, "its": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "diversionary": {"_count": 1, "tactics": {"_count": 1, "": {"_count": 1}}}, "groans": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "unfurling": {"_count": 3, "her": {"_count": 1, "wings": {"_count": 1}}, "on": {"_count": 1, "Rons": {"_count": 1}}, "below": {"_count": 1, "them": {"_count": 1}}}, "stave": {"_count": 2, "him": {"_count": 1, "off": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}}, "posing": {"_count": 4, "a": {"_count": 1, "sufficient": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "questions": {"_count": 1, "here": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fullest": {"_count": 7, "extent": {"_count": 3, "still": {"_count": 1}, "we": {"_count": 1}, "staring": {"_count": 1}}, "height": {"_count": 3, "and": {"_count": 2}, "": {"_count": 1}}, "attention": {"_count": 1, "": {"_count": 1}}}, "charmer": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "swat": {"_count": 1, "her": {"_count": 1, "tail": {"_count": 1}}}, "tantalizingly": {"_count": 4, "above": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "their": {"_count": 1}}, "close": {"_count": 1, "": {"_count": 1}}}, "unprotected": {"_count": 5, "by": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "during": {"_count": 1, "my": {"_count": 1}}, "standing": {"_count": 1, "in": {"_count": 1}}}, "uninjured": {"_count": 8, "arm": {"_count": 2, "and": {"_count": 1}, "around": {"_count": 1}}, "hand": {"_count": 5, "that": {"_count": 1}, "in": {"_count": 1}, "and": {"_count": 1}, "inside": {"_count": 1}, "closed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "quickest": {"_count": 3, "to": {"_count": 1, "get": {"_count": 1}}, "way": {"_count": 1, "is": {"_count": 1}}, "she": {"_count": 1, "snatched": {"_count": 1}}}, "shorten": {"_count": 1, "the": {"_count": 1, "odds": {"_count": 1}}}, "evident": {"_count": 3, "even": {"_count": 1, "from": {"_count": 1}}, "enjoyment": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}}, "agains": {"_count": 1, "the": {"_count": 1, "Horntail": {"_count": 1}}}, "wors": {"_count": 1, "Thanks": {"_count": 1, "Hagrid": {"_count": 1}}}, "blunder": {"_count": 9, "on": {"_count": 1, "and": {"_count": 1}}, "has": {"_count": 1, "not": {"_count": 1}}, "from": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 2, "been": {"_count": 2}}, "of": {"_count": 1, "his": {"_count": 1}}, "if": {"_count": 1, "he": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "cubicles": {"_count": 7, "he": {"_count": 1, "could": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "like": {"_count": 1, "miniature": {"_count": 1}}, "people": {"_count": 1, "poked": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "heal": {"_count": 3, "it": {"_count": 1, "up": {"_count": 1}}, "instantly": {"_count": 1, "": {"_count": 1}}, "fully": {"_count": 1, "and": {"_count": 1}}}, "dab": {"_count": 3, "of": {"_count": 1, "some": {"_count": 1}}, "it": {"_count": 1, "on": {"_count": 1}}, "hand": {"_count": 1, "at": {"_count": 1}}}, "adrenaline": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fingernail": {"_count": 2, "marks": {"_count": 1, "on": {"_count": 1}}, "and": {"_count": 1, "picked": {"_count": 1}}}, "Picking": {"_count": 2, "up": {"_count": 2, "the": {"_count": 1}, "dodgy": {"_count": 1}}}, "elated": {"_count": 5, "than": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "something": {"_count": 1, "that": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "and": {"_count": 1, "terrified": {"_count": 1}}}, "Transfigured": {"_count": 5, "a": {"_count": 2, "rock": {"_count": 1}, "teabag": {"_count": 1}}, "my": {"_count": 1, "fathers": {"_count": 1}}, "Charmed": {"_count": 1, "or": {"_count": 1}}, "and": {"_count": 1, "in": {"_count": 1}}}, "Labrador": {"_count": 1, "he": {"_count": 1, "only": {"_count": 1}}}, "skirt": {"_count": 6, "caught": {"_count": 1, "fire": {"_count": 1}}, "and": {"_count": 1, "blouse": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "Poor": {"_count": 1, "master": {"_count": 1}}}, "scumbag": {"_count": 2, "you": {"_count": 1, "gave": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}}, "behalf": {"_count": 3, "was": {"_count": 1, "worth": {"_count": 1}}, "sighed": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "reentered": {"_count": 4, "the": {"_count": 3, "tent": {"_count": 1}, "room": {"_count": 2}}, "my": {"_count": 1, "service": {"_count": 1}}}, "comparison": {"_count": 4, "the": {"_count": 1, "wait": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "today": {"_count": 1, "it": {"_count": 1}}}, "immeasurably": {"_count": 2, "worse": {"_count": 1, "": {"_count": 1}}, "rich": {"_count": 1, "would": {"_count": 1}}}, "paste": {"_count": 3, "which": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "followed": {"_count": 1}}}, "fairness": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Aberforth": {"_count": 1}}}, "HOUSEELF": {"_count": 1, "LIBERATION": {"_count": 1, "FRONT": {"_count": 1}}}, "LIBERATION": {"_count": 1, "FRONT": {"_count": 1, "Harry": {"_count": 1}}}, "unscathed": {"_count": 7, "": {"_count": 5, ".": {"_count": 5}}, "by": {"_count": 1, "his": {"_count": 1}}, "from": {"_count": 1, "its": {"_count": 1}}}, "Fits": {"_count": 1, "doesnt": {"_count": 1, "it": {"_count": 1}}}, "incessantly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "appreciated": {"_count": 10, "it": {"_count": 2, "all": {"_count": 2}}, "that": {"_count": 1, "Aunt": {"_count": 1}}, "just": {"_count": 2, "how": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "stark": {"_count": 1}}, "their": {"_count": 1, "eldest": {"_count": 1}}, "how": {"_count": 1, "beautiful": {"_count": 1}}, "what": {"_count": 1, "a": {"_count": 1}}}, "blowbyblow": {"_count": 2, "account": {"_count": 1, "of": {"_count": 1}}, "match": {"_count": 1, "analysis": {"_count": 1}}}, "flagons": {"_count": 4, "of": {"_count": 2, "pumpkin": {"_count": 2}}, "Harry": {"_count": 1, "cleared": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "depicted": {"_count": 2, "Harry": {"_count": 1, "zooming": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "groove": {"_count": 1, "that": {"_count": 1, "ran": {"_count": 1}}}, "prised": {"_count": 1, "it": {"_count": 1, "open": {"_count": 1}}}, "screechy": {"_count": 4, "wailing": {"_count": 2, "filled": {"_count": 1}, "meant": {"_count": 1}}, "songs": {"_count": 1, "": {"_count": 1}}, "noises": {"_count": 1, "that": {"_count": 1}}}, "Sounded": {"_count": 2, "like": {"_count": 2, "a": {"_count": 2}}}, "tortured": {"_count": 26, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "for": {"_count": 1, "information": {"_count": 1}}, "Mr": {"_count": 1, "and": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}, "her": {"_count": 2, "": {"_count": 1}, "until": {"_count": 1}}, "then": {"_count": 1, "Page": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "pretty": {"_count": 1}}, "into": {"_count": 3, "madness": {"_count": 1}, "insanity": {"_count": 2}}, "or": {"_count": 1, "watching": {"_count": 1}}, "face": {"_count": 1, "to": {"_count": 1}}, "NOW": {"_count": 1, "": {"_count": 1}}, "right": {"_count": 1, "now": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "Rons": {"_count": 1}, "imprisoned": {"_count": 1}}, "white": {"_count": 1, "face": {"_count": 1}}, "the": {"_count": 1, "elf": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}, "me": {"_count": 1, "you": {"_count": 1}}, "Nevilles": {"_count": 1, "mum": {"_count": 1}}}, "\u2018Anything": {"_count": 1, "we": {"_count": 1, "can": {"_count": 1}}}, "ox": {"_count": 1, "if": {"_count": 1, "I": {"_count": 1}}}, "peckish": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tickle": {"_count": 1, "the": {"_count": 1, "pear": {"_count": 1}}}, "pear": {"_count": 2, "and": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "upsetting": {"_count": 3, "them": {"_count": 1, "and": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "a": {"_count": 1, "bottle": {"_count": 1}}}, "salaries": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "hexed": {"_count": 2, "Within": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 1, "when": {"_count": 1}}}, "molted": {"_count": 1, "and": {"_count": 1, "once": {"_count": 1}}}, "Canary": {"_count": 5, "Creams": {"_count": 3, "": {"_count": 1}, "and": {"_count": 1}, "that": {"_count": 1}}, "Cream": {"_count": 1, "concealed": {"_count": 1}}, "Islands": {"_count": 1, "its": {"_count": 1}}}, "Creams": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "and": {"_count": 1, "for": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}}, "excitable": {"_count": 4, "crowd": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "Diggle": {"_count": 1, "dropping": {"_count": 1}}, "affair": {"_count": 1, "next": {"_count": 1}}}, "sleet": {"_count": 9, "to": {"_count": 2, "Hogwarts": {"_count": 1}, "meet": {"_count": 1}}, "pounded": {"_count": 2, "relentlessly": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "trudged": {"_count": 1}}, "coming": {"_count": 1, "thick": {"_count": 1}}, "trapped": {"_count": 1, "in": {"_count": 1}}}, "Drafty": {"_count": 1, "though": {"_count": 1, "the": {"_count": 1}}}, "pitching": {"_count": 4, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "tent": {"_count": 2}}, "into": {"_count": 1, "the": {"_count": 1}}}, "sails": {"_count": 3, "billowing": {"_count": 1, "against": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}}, "caravan": {"_count": 1, "was": {"_count": 1, "likely": {"_count": 1}}}, "trough": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "lightheaded": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "with": {"_count": 2, "amazement": {"_count": 1}, "hunger": {"_count": 1}}}, "unhelpful": {"_count": 5, "as": {"_count": 1, "they": {"_count": 1}}, "glance": {"_count": 1, "toward": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "mood": {"_count": 1, "": {"_count": 1}}, "useless": {"_count": 1, "like": {"_count": 1}}}, "windy": {"_count": 4, "pumpkin": {"_count": 1, "patch": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}, "two": {"_count": 1, "children": {"_count": 1}}}, "exercised": {"_count": 3, "out": {"_count": 1, "of": {"_count": 1}}, "all": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 1, "Harry": {"_count": 1}}}, "fireblasting": {"_count": 1, "ends": {"_count": 1, "their": {"_count": 1}}}, "suckers": {"_count": 2, "combined": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "stingers": {"_count": 1}}}, "repulsive": {"_count": 1, "things": {"_count": 1, "Harry": {"_count": 1}}}, "transpired": {"_count": 4, "did": {"_count": 1, "not": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "was": {"_count": 1, "picking": {"_count": 1}}, "were": {"_count": 1, "helpful": {"_count": 1}}}, "pillowlined": {"_count": 1, "boxes": {"_count": 1, "and": {"_count": 1}}}, "rampaged": {"_count": 1, "around": {"_count": 1, "the": {"_count": 1}}}, "numerous": {"_count": 4, "burns": {"_count": 1, "and": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}, "scratches": {"_count": 1, "on": {"_count": 1}}, "Quibblers": {"_count": 1, "came": {"_count": 1}}}, "loop": {"_count": 2, "of": {"_count": 1, "rope": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}}, "lively": {"_count": 2, "interest": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}}, "singed": {"_count": 9, "Seamus": {"_count": 1, "who": {"_count": 1}}, "the": {"_count": 1, "top": {"_count": 1}}, "and": {"_count": 2, "threadbare": {"_count": 1}, "whose": {"_count": 1}}, "material": {"_count": 1, "and": {"_count": 1}}, "a": {"_count": 1, "hole": {"_count": 1}}, "away": {"_count": 1, "in": {"_count": 1}}, "hole": {"_count": 1, "in": {"_count": 1}}, "sleeve": {"_count": 1, "as": {"_count": 1}}}, "Share": {"_count": 2, "some": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "between": {"_count": 1}}}, "zoological": {"_count": 1, "column": {"_count": 1, "every": {"_count": 1}}}, "BangEnded": {"_count": 1, "Scoots": {"_count": 1, "": {"_count": 1}}}, "Scoots": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "communicating": {"_count": 8, "it": {"_count": 2, "to": {"_count": 1}, "drove": {"_count": 1}}, "the": {"_count": 1, "time": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "just": {"_count": 1, "now": {"_count": 1}}, "than": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "Rosmerta": {"_count": 1}}, "silently": {"_count": 1, "": {"_count": 1}}}, "import": {"_count": 1, "those": {"_count": 1, "skrewts": {"_count": 1}}}, "consolingly": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "sitting": {"_count": 1, "down": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}, "its": {"_count": 1, "bound": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Hagridll": {"_count": 2, "have": {"_count": 2, "to": {"_count": 1}, "them": {"_count": 1}}}, "Pluto": {"_count": 2, "could": {"_count": 1, "disrupt": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "everyday": {"_count": 3, "life": {"_count": 1, "": {"_count": 1}}, "objects": {"_count": 1, "a": {"_count": 1}}, "business": {"_count": 1, "leaving": {"_count": 1}}}, "frivolous": {"_count": 1, "had": {"_count": 1, "they": {"_count": 1}}}, "needlework": {"_count": 1, "the": {"_count": 1, "urge": {"_count": 1}}}, "overpowered": {"_count": 5, "me": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}, "removed": {"_count": 1, "from": {"_count": 1}}, "his": {"_count": 1, "": {"_count": 1}}, "Draco": {"_count": 1, "weeks": {"_count": 1}}}, "crystalline": {"_count": 1, "depths": {"_count": 1, "": {"_count": 1}}}, "outsize": {"_count": 1, "specs": {"_count": 1, "": {"_count": 1}}}, "specs": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "medical": {"_count": 1, "miracle": {"_count": 1, "": {"_count": 1}}}, "extraconcentrated": {"_count": 1, "ghost": {"_count": 1, "said": {"_count": 1}}}, "sinisterly": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "sweet": {"_count": 1, "fashion": {"_count": 1}}, "revolving": {"_count": 1, "magical": {"_count": 1}}, "smooth": {"_count": 1, "water": {"_count": 1}}}, "balderdash": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Changed": {"_count": 1, "the": {"_count": 1, "name": {"_count": 1}}}, "HouseElf": {"_count": 1, "Liberation": {"_count": 1, "Front": {"_count": 1}}}, "Liberation": {"_count": 1, "Front": {"_count": 1, "": {"_count": 1}}}, "squirm": {"_count": 6, "chuckling": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "like": {"_count": 1, "serpents": {"_count": 1}}, "was": {"_count": 1, "Remus": {"_count": 1}}, "above": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 1, "discomfort": {"_count": 1}}}, "ceilinged": {"_count": 1, "room": {"_count": 1, "large": {"_count": 1}}}, "Potteri": {"_count": 2, "Next": {"_count": 1, "second": {"_count": 1}}, "Hows": {"_count": 1, "your": {"_count": 1}}}, "midriff": {"_count": 4, "hugging": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "knocked": {"_count": 1, "the": {"_count": 1}}}, "DDobby": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "tennisballshaped": {"_count": 2, "eyes": {"_count": 2, "brimming": {"_count": 1}, "were": {"_count": 1}}}, "pencil": {"_count": 3, "shaped": {"_count": 1, "nose": {"_count": 1}}, "cases": {"_count": 1, "race": {"_count": 1}}, "case": {"_count": 1, "": {"_count": 1}}}, "horseshoes": {"_count": 1, "over": {"_count": 1, "a": {"_count": 1}}}, "shorts": {"_count": 4, "and": {"_count": 2, "odd": {"_count": 1}, "drew": {"_count": 1}}, "they": {"_count": 1, "has": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "thereby": {"_count": 3, "setting": {"_count": 1, "Dobby": {"_count": 1}}, "driving": {"_count": 1, "Hagrid": {"_count": 1}}, "gaining": {"_count": 1, "his": {"_count": 1}}}, "counterparts": {"_count": 1, "above": {"_count": 1, "": {"_count": 1}}}, "curtsying": {"_count": 3, "as": {"_count": 1, "Dobby": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 1, "bustling": {"_count": 1}}}, "foraged": {"_count": 1, "for": {"_count": 1, "clothes": {"_count": 1}}}, "blouse": {"_count": 5, "with": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}}, "toothily": {"_count": 3, "at": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 2, "pointing": {"_count": 1}, "waving": {"_count": 1}}}, "welled": {"_count": 5, "in": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 3, "inside": {"_count": 2}, "in": {"_count": 1}}, "with": {"_count": 1, "tears": {"_count": 1}}}, "fistbeating": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "leisure": {"_count": 7, "and": {"_count": 1, "riches": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "activity": {"_count": 1, "of": {"_count": 1}}, "time": {"_count": 2, "": {"_count": 2}}}, "disgraced": {"_count": 1, "elf": {"_count": 1, "but": {"_count": 1}}}, "adjusting": {"_count": 3, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "the": {"_count": 1, "nozzle": {"_count": 1}}, "her": {"_count": 1, "robes": {"_count": 1}}}, "confidentially": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "upholds": {"_count": 1, "the": {"_count": 1, "familys": {"_count": 1}}}, "barmy": {"_count": 1, "old": {"_count": 1, "codger": {"_count": 1}}}, "codger": {"_count": 1, "if": {"_count": 1, "we": {"_count": 1}}}, "Practice": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "Stunning": {"_count": 1, "and": {"_count": 1}}}, "Crouches": {"_count": 1, "all": {"_count": 1, "my": {"_count": 1}}}, "bawled": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "Malfoy": {"_count": 1, "": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}}, "chatted": {"_count": 1, "happily": {"_count": 1, "about": {"_count": 1}}}, "knits": {"_count": 1, "me": {"_count": 1, "this": {"_count": 1}}}, "clustered": {"_count": 5, "around": {"_count": 3, "the": {"_count": 3}}, "in": {"_count": 1, "the": {"_count": 1}}, "together": {"_count": 1, "there": {"_count": 1}}}, "nicking": {"_count": 3, "food": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Siriuss": {"_count": 1, "stuff": {"_count": 1}}}, "doubtful": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "natural": {"_count": 1, "charms": {"_count": 1}}}, "shocks": {"_count": 2, "worn": {"_count": 1, "off": {"_count": 1}}, "in": {"_count": 1, "store": {"_count": 1}}}, "eclair": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "UNEXPECTED": {"_count": 1, "TASK": {"_count": 1, "Potter": {"_count": 1}}}, "guinea": {"_count": 3, "fowl": {"_count": 1, "they": {"_count": 1}}, "pigs": {"_count": 1, "had": {"_count": 1}}, "pig": {"_count": 1, "for": {"_count": 1}}}, "fowl": {"_count": 1, "they": {"_count": 1, "had": {"_count": 1}}}, "Describe": {"_count": 2, "with": {"_count": 1, "examples": {"_count": 1}}, "the": {"_count": 1, "circumstances": {"_count": 1}}}, "examples": {"_count": 1, "the": {"_count": 1, "ways": {"_count": 1}}}, "Transforming": {"_count": 1, "Spells": {"_count": 1, "must": {"_count": 1}}}, "adapted": {"_count": 3, "when": {"_count": 1, "performing": {"_count": 1}}, "to": {"_count": 1, "perform": {"_count": 1}}, "for": {"_count": 1, "possession": {"_count": 1}}}, "CrossSpecies": {"_count": 1, "Switches": {"_count": 1, "": {"_count": 1}}}, "Switches": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "haddock": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "drooped": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "proceeded": {"_count": 1}}}, "parrots": {"_count": 2, "beak": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "family": {"_count": 1}}}, "Yule": {"_count": 13, "Ball": {"_count": 13, "is": {"_count": 2}, "Potter": {"_count": 1}, "were": {"_count": 1}, "so": {"_count": 1}, "but": {"_count": 1}, "a": {"_count": 1}, "with": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}, "the": {"_count": 1}, "passed": {"_count": 1}}}, "Ball": {"_count": 13, "is": {"_count": 2, "approaching": {"_count": 1}, "of": {"_count": 1}}, "Potter": {"_count": 1, "she": {"_count": 1}}, "were": {"_count": 1, "flying": {"_count": 1}}, "so": {"_count": 1, "what": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 1, "houseelf": {"_count": 1}}, "with": {"_count": 1, "Padma": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "they": {"_count": 1}}, "the": {"_count": 1, "previous": {"_count": 1}}, "passed": {"_count": 1, "them": {"_count": 1}}}, "socialize": {"_count": 1, "with": {"_count": 1, "our": {"_count": 1}}}, "embarrasses": {"_count": 1, "the": {"_count": 1, "school": {"_count": 1}}}, "scuffle": {"_count": 3, "of": {"_count": 1, "activity": {"_count": 1}}, "over": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "Assuming": {"_count": 4, "this": {"_count": 1, "had": {"_count": 1}}, "they": {"_count": 1, "can": {"_count": 1}}, "that": {"_count": 1, "Mundungus": {"_count": 1}}, "I": {"_count": 1, "survive": {"_count": 1}}}, "Dance": {"_count": 1, "partners": {"_count": 1, "": {"_count": 1}}}, "Traditionally": {"_count": 1, "the": {"_count": 1, "champions": {"_count": 1}}}, "frilly": {"_count": 3, "dress": {"_count": 1, "Aunt": {"_count": 1}}, "robes": {"_count": 1, "of": {"_count": 1}}, "napkin": {"_count": 1, "and": {"_count": 1}}}, "representative": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "cinch": {"_count": 1, "compared": {"_count": 1, "to": {"_count": 1}}}, "latter": {"_count": 14, "and": {"_count": 1, "was": {"_count": 1}}, "gave": {"_count": 1, "Fudge": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "included": {"_count": 1, "a": {"_count": 1}}, "both": {"_count": 1, "panting": {"_count": 1}}, "might": {"_count": 1, "contradict": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "would": {"_count": 1, "not": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "approached": {"_count": 1, "": {"_count": 1}}, "supported": {"_count": 1, "him": {"_count": 1}}, "made": {"_count": 1, "to": {"_count": 1}}, "could": {"_count": 1, "raise": {"_count": 1}}}, "minority": {"_count": 1, "before": {"_count": 1, "now": {"_count": 1}}}, "Girls": {"_count": 5, "giggling": {"_count": 1, "and": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 2, "screaming": {"_count": 1}, "very": {"_count": 1}}, "dont": {"_count": 1, "often": {"_count": 1}}}, "Lasso": {"_count": 1, "one": {"_count": 1, "": {"_count": 1}}}, "minimum": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "five": {"_count": 1}}}, "Moreover": {"_count": 4, "to": {"_count": 1, "Harrys": {"_count": 1}}, "the": {"_count": 1, "crowd": {"_count": 1}}, "it": {"_count": 1, "had": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}}, "taunts": {"_count": 4, "about": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "snide": {"_count": 1}}, "to": {"_count": 2, "hurt": {"_count": 1}, "be": {"_count": 1}}}, "unnerved": {"_count": 9, "": {"_count": 5, ".": {"_count": 5}}, "by": {"_count": 1, "it": {"_count": 1}}, "as": {"_count": 2, "Mrs": {"_count": 1}, "he": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "tipoff": {"_count": 4, "about": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "Yeah": {"_count": 1, "mine": {"_count": 1}}}, "heighten": {"_count": 1, "Harrys": {"_count": 1, "feeling": {"_count": 1}}}, "wellbeing": {"_count": 1, "no": {"_count": 1, "story": {"_count": 1}}}, "intrested": {"_count": 3, "in": {"_count": 3, "magical": {"_count": 1}, "what": {"_count": 1}, "creatures": {"_count": 1}}}, "\u2018Never": {"_count": 3, "had": {"_count": 1, "to": {"_count": 1}}, "played": {"_count": 1, "you": {"_count": 1}}, "be": {"_count": 1, "ashamed": {"_count": 1}}}, "shelled": {"_count": 1, "salamander": {"_count": 1, "eggs": {"_count": 1}}}, "delinquent": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "appearance": {"_count": 1, "when": {"_count": 1}}}, "bu": {"_count": 7, "yehre": {"_count": 1, "all": {"_count": 1}}, "she": {"_count": 2, "never": {"_count": 1}, "got": {"_count": 1}}, "we": {"_count": 1, "were": {"_count": 1}}, "that": {"_count": 1, "inspection": {"_count": 1}}, "always": {"_count": 1, "turned": {"_count": 1}}, "wheres": {"_count": 1, "Ron": {"_count": 1}}}, "openin": {"_count": 1, "the": {"_count": 1, "dancin": {"_count": 1}}}, "dancin": {"_count": 1, "won": {"_count": 1, "yeh": {"_count": 1}}}, "instance": {"_count": 32, "that": {"_count": 4, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}, "would": {"_count": 1}, "the": {"_count": 1}}, "I": {"_count": 1, "took": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 7}, "?": {"_count": 2}}, "had": {"_count": 1, "very": {"_count": 1}}, "Slytherin": {"_count": 1, "Took": {"_count": 1}}, "given": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "papered": {"_count": 1}}, "almost": {"_count": 1, "always": {"_count": 1}}, "you": {"_count": 2, "are": {"_count": 1}, "cant": {"_count": 1}}, "what": {"_count": 1, "is": {"_count": 1}}, "is": {"_count": 1, "being": {"_count": 1}}, "We": {"_count": 1, "never": {"_count": 1}}, "the": {"_count": 1, "Cruciatus": {"_count": 1}}, "examinations": {"_count": 1, "or": {"_count": 1}}, "isnt": {"_count": 1, "seven": {"_count": 1}}, "to": {"_count": 1, "borrow": {"_count": 1}}, "or": {"_count": 1, "had": {"_count": 1}}, "of": {"_count": 1, "humor": {"_count": 1}}, "this": {"_count": 1, "new": {"_count": 1}}, "Greyback": {"_count": 1, "is": {"_count": 1}}}, "Sisters": {"_count": 11, "": {"_count": 2, ".": {"_count": 2}}, "were": {"_count": 1, "Harry": {"_count": 1}}, "now": {"_count": 1, "trooped": {"_count": 1}}, "struck": {"_count": 2, "up": {"_count": 2}}, "stopped": {"_count": 1, "playing": {"_count": 1}}, "finished": {"_count": 1, "playing": {"_count": 1}}, "getting": {"_count": 1, "married": {"_count": 1}}, "Ernie": {"_count": 1, "Prang": {"_count": 1}}, "on": {"_count": 1, "one": {"_count": 1}}}, "access": {"_count": 10, "to": {"_count": 9, "a": {"_count": 3}, "his": {"_count": 2}, "memories": {"_count": 1}, "the": {"_count": 1}, "Voldemort": {"_count": 1}, "four": {"_count": 1}}, "your": {"_count": 1, "thoughts": {"_count": 1}}}, "wireless": {"_count": 8, "but": {"_count": 1, "he": {"_count": 1}}, "set": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "Celestina": {"_count": 1}}, "which": {"_count": 1, "Mrs": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "while": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "deduced": {"_count": 9, "from": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 5, "the": {"_count": 2}, "Malfoy": {"_count": 1}, "Ginny": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "where": {"_count": 1, "you": {"_count": 1}}, "what": {"_count": 1, "has": {"_count": 1}}}, "WWN": {"_count": 1, "Wizarding": {"_count": 1, "Wireless": {"_count": 1}}}, "Wireless": {"_count": 2, "Network": {"_count": 2, "that": {"_count": 1}, "News": {"_count": 1}}}, "deflect": {"_count": 5, "Professor": {"_count": 1, "Binns": {"_count": 1}}, "more": {"_count": 1, "questions": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "any": {"_count": 1, "invitation": {"_count": 1}}, "him": {"_count": 1, "from": {"_count": 1}}}, "plowing": {"_count": 3, "on": {"_count": 3, "through": {"_count": 1}, "valiantly": {"_count": 1}, "with": {"_count": 1}}}, "riots": {"_count": 2, "sound": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "cauldronbottom": {"_count": 1, "report": {"_count": 1, "": {"_count": 1}}}, "adopt": {"_count": 2, "Harry": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "Springing": {"_count": 2, "a": {"_count": 1, "test": {"_count": 1}}, "up": {"_count": 1, "Harry": {"_count": 1}}}, "Ruining": {"_count": 1, "the": {"_count": 1, "last": {"_count": 1}}}, "pastime": {"_count": 2, "than": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "tenth": {"_count": 3, "time": {"_count": 1, "in": {"_count": 1}}, "a": {"_count": 1, "witchs": {"_count": 1}}, "gobletful": {"_count": 1, "of": {"_count": 1}}}, "constructive": {"_count": 2, "Harry": {"_count": 1, "even": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Joey": {"_count": 1, "Jenkins": {"_count": 1, "of": {"_count": 1}}}, "Jenkins": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Ballycastle": {"_count": 1, "Bats": {"_count": 1, "Chaser": {"_count": 1}}}, "Bats": {"_count": 1, "Chaser": {"_count": 1, "": {"_count": 1}}}, "singeing": {"_count": 2, "his": {"_count": 2, "eyebrows": {"_count": 1}, "whiskers": {"_count": 1}}}, "mate": {"_count": 41, "or": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 6}, "?": {"_count": 1}, "!": {"_count": 2}}, "said": {"_count": 17, "Fred": {"_count": 1}, "Ron": {"_count": 13}, "George": {"_count": 1}, "Dean": {"_count": 1}, "Sirius": {"_count": 1}}, "didnt": {"_count": 1, "mean": {"_count": 1}}, "but": {"_count": 4, "hes": {"_count": 1}, "carry": {"_count": 1}, "youll": {"_count": 1}, "I": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Voldemort": {"_count": 1, "knows": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "jinx": {"_count": 1}}, "Harry": {"_count": 1, "barely": {"_count": 1}}, "youre": {"_count": 1, "going": {"_count": 1}}, "with": {"_count": 1, "Muggles": {"_count": 1}}, "\u2018Ill": {"_count": 1, "be": {"_count": 1}}, "calling": {"_count": 1, "YouKnow": {"_count": 1}}}, "Whore": {"_count": 2, "you": {"_count": 2, "going": {"_count": 1}, "blackmailing": {"_count": 1}}}, "Oi": {"_count": 11, "": {"_count": 8, "!": {"_count": 8}}, "out": {"_count": 1, "of": {"_count": 1}}, "Harper": {"_count": 1, "": {"_count": 1}}, "wake": {"_count": 1, "up": {"_count": 1}}}, "appraising": {"_count": 5, "sort": {"_count": 1, "of": {"_count": 1}}, "eye": {"_count": 1, "at": {"_count": 1}}, "look": {"_count": 2, "down": {"_count": 1}, "": {"_count": 1}}, "his": {"_count": 1, "possibilities": {"_count": 1}}}, "acnes": {"_count": 1, "loads": {"_count": 1, "better": {"_count": 1}}}, "offcenter": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "basically": {"_count": 2, "youre": {"_count": 1, "going": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "bestlooking": {"_count": 1, "girl": {"_count": 1, "wholl": {"_count": 1}}}, "stunning": {"_count": 4, "he": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 1, "robes": {"_count": 1}}, "performance": {"_count": 1, "like": {"_count": 1}}, "reflection": {"_count": 1, "in": {"_count": 1}}}, "Everlasting": {"_count": 4, "icicles": {"_count": 1, "had": {"_count": 1}}, "fire": {"_count": 1, "said": {"_count": 1}}, "Elixirs": {"_count": 1, "occasionally": {"_count": 1}}, "Ink": {"_count": 1, "others": {"_count": 1}}}, "berries": {"_count": 3, "to": {"_count": 1, "real": {"_count": 1}}, "placed": {"_count": 1, "almost": {"_count": 1}}, "or": {"_count": 1, "stale": {"_count": 1}}}, "Ye": {"_count": 2, "Faithful": {"_count": 1, "sung": {"_count": 1}}, "Merry": {"_count": 1, "Hippogriffs": {"_count": 1}}}, "Faithful": {"_count": 1, "sung": {"_count": 1, "by": {"_count": 1}}}, "sung": {"_count": 2, "by": {"_count": 1, "an": {"_count": 1}}, "with": {"_count": 1, "great": {"_count": 1}}}, "helmet": {"_count": 5, "that": {"_count": 1, "only": {"_count": 1}}, "goblinmade": {"_count": 1, "an": {"_count": 1}}, "leerin": {"_count": 1, "at": {"_count": 1}}, "creaked": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 1, "goggles": {"_count": 1}}}, "extract": {"_count": 11, "Peeves": {"_count": 1, "from": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "feelings": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 3, "his": {"_count": 1}, "Slughorn": {"_count": 1}, "Professor": {"_count": 1}}, "his": {"_count": 2, "Invisibility": {"_count": 1}, "wand": {"_count": 1}}, "the": {"_count": 1, "true": {"_count": 1}}, "this": {"_count": 1, "memory": {"_count": 1}}, "enough": {"_count": 1, "nuggets": {"_count": 1}}}, "songs": {"_count": 3, "with": {"_count": 1, "lyrics": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "chimes": {"_count": 1}}}, "lyrics": {"_count": 2, "of": {"_count": 1, "his": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}}, "invention": {"_count": 4, "all": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "said": {"_count": 1}}}, "referring": {"_count": 9, "to": {"_count": 8, "the": {"_count": 5}, "Harrys": {"_count": 1}, "his": {"_count": 1}, "Dumbledore": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "grit": {"_count": 3, "our": {"_count": 1, "teeth": {"_count": 1}}, "and": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "impregnable": {"_count": 1, "fortress": {"_count": 1, "": {"_count": 1}}}, "ambush": {"_count": 5, "her": {"_count": 1, "as": {"_count": 1}}, "Harry": {"_count": 1, "halfway": {"_count": 1}}, "you": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "us": {"_count": 1, "well": {"_count": 1}}}, "ingredient": {"_count": 4, "a": {"_count": 1, "bezoar": {"_count": 1}}, "was": {"_count": 1, "added": {"_count": 1}}, "jars": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "Giggling": {"_count": 1, "should": {"_count": 1, "be": {"_count": 1}}}, "Wangoballwime": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "bye": {"_count": 6, "said": {"_count": 2, "Cho": {"_count": 1}, "Harry": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}}, "overlook": {"_count": 4, "the": {"_count": 1, "fact": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "Dumbledores": {"_count": 1, "greatest": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "eggcup": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "make": {"_count": 1}}}, "Fairy": {"_count": 2, "lights": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}}, "trilled": {"_count": 4, "straightening": {"_count": 1, "her": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "Guess": {"_count": 1, "who": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "soothing": {"_count": 6, "voice": {"_count": 1, "": {"_count": 1}}, "peace": {"_count": 1, "of": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 2, "his": {"_count": 2}}, "to": {"_count": 1, "the": {"_count": 1}}}, "sourly": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "who": {"_count": 1, "looked": {"_count": 1}}, "and": {"_count": 1, "turned": {"_count": 1}}}, "acidly": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "drastic": {"_count": 1, "action": {"_count": 1, "": {"_count": 1}}}, "subside": {"_count": 1, "his": {"_count": 1, "fingers": {"_count": 1}}}, "Padma": {"_count": 20, "you": {"_count": 1, "know": {"_count": 1}}, "Patils": {"_count": 1, "nose": {"_count": 1}}, "and": {"_count": 3, "led": {"_count": 1}, "walked": {"_count": 1}, "she": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "was": {"_count": 2, "looking": {"_count": 1}, "sitting": {"_count": 1}}, "were": {"_count": 2, "sitting": {"_count": 1}, "now": {"_count": 1}}, "asked": {"_count": 1, "him": {"_count": 1}}, "Patil": {"_count": 7, "who": {"_count": 1}, "for": {"_count": 1}, "said": {"_count": 1}, "with": {"_count": 1}, "shuddered": {"_count": 1}, "rather": {"_count": 1}, "Parvati": {"_count": 1}}, "Michael": {"_count": 1, "Terry": {"_count": 1}}}, "YULE": {"_count": 1, "BALL": {"_count": 1, "Despite": {"_count": 1}}}, "BALL": {"_count": 1, "Despite": {"_count": 1, "the": {"_count": 1}}}, "Despite": {"_count": 8, "the": {"_count": 4, "very": {"_count": 1}, "fact": {"_count": 2}, "cloudless": {"_count": 1}}, "his": {"_count": 4, "indignation": {"_count": 1}, "determination": {"_count": 1}, "haste": {"_count": 1}, "previous": {"_count": 1}}}, "termtime": {"_count": 1, "it": {"_count": 1, "seemed": {"_count": 1}}}, "rowdier": {"_count": 1, "than": {"_count": 1, "usual": {"_count": 1}}}, "confided": {"_count": 14, "to": {"_count": 1, "Harry": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 8, "her": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}, "me": {"_count": 2}, "both": {"_count": 1}, "": {"_count": 1}, "no": {"_count": 1}}, "but": {"_count": 1, "Voldemort": {"_count": 1}}, "none": {"_count": 1, "of": {"_count": 1}}, "this": {"_count": 1, "plan": {"_count": 1}}, "Grimmauld": {"_count": 1, "Places": {"_count": 1}}}, "frosted": {"_count": 3, "pumpkin": {"_count": 1, "next": {"_count": 1}}, "eyes": {"_count": 1, "upon": {"_count": 1}}, "web": {"_count": 1, "in": {"_count": 1}}}, "gingerbread": {"_count": 2, "house": {"_count": 1, "that": {"_count": 1}}, "houses": {"_count": 1, "": {"_count": 1}}}, "outdoing": {"_count": 1, "themselves": {"_count": 1, "with": {"_count": 1}}}, "stews": {"_count": 1, "and": {"_count": 1, "savory": {"_count": 1}}}, "savory": {"_count": 2, "puddings": {"_count": 1, "and": {"_count": 1}}, "stew": {"_count": 1, "or": {"_count": 1}}}, "eavy": {"_count": 1, "all": {"_count": 1, "zis": {"_count": 1}}}, "startle": {"_count": 1, "her": {"_count": 1, "into": {"_count": 1}}}, "longmolared": {"_count": 1, "Mudblood": {"_count": 1, "": {"_count": 1}}}, "Twitchy": {"_count": 2, "little": {"_count": 1, "ferret": {"_count": 1}}, "Ears": {"_count": 1, "he": {"_count": 1}}}, "normalsized": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mischievously": {"_count": 1, "and": {"_count": 1, "Harry": {"_count": 1}}}, "braces": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "icicleladen": {"_count": 1, "banisters": {"_count": 1, "a": {"_count": 1}}}, "weeny": {"_count": 1, "owl": {"_count": 1, "": {"_count": 1}}}, "addressee": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Clear": {"_count": 4, "off": {"_count": 1, "": {"_count": 1}}, "night": {"_count": 1, "grunted": {"_count": 1}}, "your": {"_count": 1, "mind": {"_count": 1}}, "up": {"_count": 1, "": {"_count": 1}}}, "Conjunctivitis": {"_count": 1, "Curse": {"_count": 1, "as": {"_count": 1}}}, "weakest": {"_count": 2, "point": {"_count": 1, "Thats": {"_count": 1}}, "creature": {"_count": 1, "alive": {"_count": 1}}}, "complacent": {"_count": 2, "though": {"_count": 1, "Harry": {"_count": 1}}, "smile": {"_count": 1, "and": {"_count": 1}}}, "\u2018Constant": {"_count": 1, "vigilance": {"_count": 1, "": {"_count": 1}}}, "howm": {"_count": 1, "I": {"_count": 1, "supposed": {"_count": 1}}}, "culminated": {"_count": 2, "in": {"_count": 2, "an": {"_count": 1}, "him": {"_count": 1}}}, "pawns": {"_count": 2, "and": {"_count": 1, "a": {"_count": 1}}, "chased": {"_count": 1, "off": {"_count": 1}}}, "abrupt": {"_count": 15, "return": {"_count": 3, "to": {"_count": 3}}, "change": {"_count": 2, "in": {"_count": 1}, "of": {"_count": 1}}, "departure": {"_count": 1, "took": {"_count": 1}}, "end": {"_count": 1, "": {"_count": 1}}, "fall": {"_count": 1, "in": {"_count": 1}}, "halt": {"_count": 5, "staring": {"_count": 1}, "several": {"_count": 1}, "at": {"_count": 1}, "but": {"_count": 1}, "run": {"_count": 1}}, "dismissal": {"_count": 1, "Harry": {"_count": 1}}, "rupture": {"_count": 1, "": {"_count": 1}}}, "Dobbyl": {"_count": 1, "Harry": {"_count": 1, "yelled": {"_count": 1}}}, "\u2018Merry": {"_count": 1, "Christmas": {"_count": 1, "and": {"_count": 1}}}, "heavyeyed": {"_count": 1, "and": {"_count": 1, "touslehaired": {"_count": 1}}}, "presentopening": {"_count": 1, "too": {"_count": 1, "": {"_count": 1}}}, "bauble": {"_count": 1, "tied": {"_count": 1, "to": {"_count": 1}}}, "mustard": {"_count": 1, "yellow": {"_count": 1, "and": {"_count": 1}}}, "extraknobbly": {"_count": 1, "was": {"_count": 1, "that": {"_count": 1}}}, "wrap": {"_count": 5, "them": {"_count": 1, "": {"_count": 1}}, "up": {"_count": 1, "this": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "it": {"_count": 2, "tenderly": {"_count": 1}, "": {"_count": 1}}}, "Socks": {"_count": 1, "are": {"_count": 1, "Dobbys": {"_count": 1}}}, "overwhelmed": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "him": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "astonished": {"_count": 1, "delighted": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "saw": {"_count": 1, "wands": {"_count": 1}}}, "selfless": {"_count": 2, "Theyre": {"_count": 1, "only": {"_count": 1}}, "person": {"_count": 1, "could": {"_count": 1}}}, "clashed": {"_count": 4, "horribly": {"_count": 1, "with": {"_count": 1}}, "with": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "magnificently": {"_count": 1, "with": {"_count": 1}}}, "wool": {"_count": 3, "out": {"_count": 1, "of": {"_count": 1}}, "outside": {"_count": 1, "with": {"_count": 1}}, "Reguluss": {"_count": 1, "locket": {"_count": 1}}}, "Snitches": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "according": {"_count": 1}}, "have": {"_count": 1, "flesh": {"_count": 1}}}, "leak": {"_count": 2, "with": {"_count": 1, "happiness": {"_count": 1}}, "but": {"_count": 1, "members": {"_count": 1}}}, "exception": {"_count": 4, "of": {"_count": 2, "the": {"_count": 1}, "Professor": {"_count": 1}}, "was": {"_count": 1, "Cho": {"_count": 1}}, "sits": {"_count": 1, "before": {"_count": 1}}}, "consisted": {"_count": 2, "of": {"_count": 2, "a": {"_count": 2}}}, "tissue": {"_count": 1, "an": {"_count": 1, "alltime": {"_count": 1}}}, "Teams": {"_count": 4, "of": {"_count": 3, "Britain": {"_count": 3}}, "Groups": {"_count": 1, "and": {"_count": 1}}}, "penknife": {"_count": 1, "with": {"_count": 1, "attachments": {"_count": 1}}}, "attachments": {"_count": 1, "to": {"_count": 1, "unlock": {"_count": 1}}}, "unlock": {"_count": 1, "any": {"_count": 1, "lock": {"_count": 1}}}, "undo": {"_count": 4, "any": {"_count": 1, "knot": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "enough": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "moment": {"_count": 1}}}, "Cribbages": {"_count": 1, "Wizarding": {"_count": 1, "Crackers": {"_count": 1}}}, "channels": {"_count": 5, "made": {"_count": 1, "by": {"_count": 1}}, "of": {"_count": 2, "communication": {"_count": 2}}, "they": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "lapse": {"_count": 2, "in": {"_count": 1, "concentration": {"_count": 1}}, "of": {"_count": 1, "memory": {"_count": 1}}}, "tipsy": {"_count": 2, "empty": {"_count": 1, "boxes": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}}, "liqueurs": {"_count": 1, "littering": {"_count": 1, "the": {"_count": 1}}}, "littering": {"_count": 4, "the": {"_count": 3, "bottom": {"_count": 1}, "lake": {"_count": 1}, "floor": {"_count": 1}}, "her": {"_count": 1, "desk": {"_count": 1}}}, "Lairy": {"_count": 1, "fights": {"_count": 1, "thats": {"_count": 1}}}, "fights": {"_count": 4, "thats": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "dont": {"_count": 1, "go": {"_count": 1}}, "Voldemort": {"_count": 1, "and": {"_count": 1}}}, "selfconscious": {"_count": 1, "but": {"_count": 1, "none": {"_count": 1}}}, "manly": {"_count": 1, "he": {"_count": 1, "used": {"_count": 1}}}, "Severing": {"_count": 2, "Charm": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}}, "lacefree": {"_count": 1, "although": {"_count": 1, "he": {"_count": 1}}}, "depressingly": {"_count": 1, "frayed": {"_count": 1, "as": {"_count": 1}}}, "Animal": {"_count": 2, "magnetism": {"_count": 1, "said": {"_count": 1}}, "dyou": {"_count": 1, "reckon": {"_count": 1}}}, "magnetism": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "threads": {"_count": 2, "out": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "red": {"_count": 1}}}, "braided": {"_count": 3, "with": {"_count": 1, "gold": {"_count": 1}}, "hair": {"_count": 2, "had": {"_count": 1}, "out": {"_count": 1}}}, "bracelets": {"_count": 1, "glimmering": {"_count": 1, "at": {"_count": 1}}}, "Padmas": {"_count": 2, "going": {"_count": 1, "to": {"_count": 1}}, "vacated": {"_count": 1, "seat": {"_count": 1}}}, "silvergray": {"_count": 1, "satin": {"_count": 1, "and": {"_count": 1}}}, "Roger": {"_count": 19, "Davies": {"_count": 15, "": {"_count": 2}, "stationed": {"_count": 1}, "was": {"_count": 1}, "standing": {"_count": 1}, "had": {"_count": 1}, "the": {"_count": 1}, "and": {"_count": 2}, "kissing": {"_count": 1}, "why": {"_count": 1}, "girlfriend": {"_count": 1}, "asked": {"_count": 1}, "as": {"_count": 1}, "came": {"_count": 1}}, "fall": {"_count": 1, "out": {"_count": 1}}, "Daviess": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "would": {"_count": 1, "seize": {"_count": 1}}}, "vicar": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mosscolored": {"_count": 1, "boulders": {"_count": 1, "and": {"_count": 1}}}, "boulders": {"_count": 6, "and": {"_count": 2, "neither": {"_count": 1}, "rocks": {"_count": 1}}, "an": {"_count": 1, "sleepin": {"_count": 1}}, "arms": {"_count": 1, "wrapped": {"_count": 1}}, "that": {"_count": 1, "lay": {"_count": 1}}, "Harry": {"_count": 1, "still": {"_count": 1}}}, "grotto": {"_count": 1, "full": {"_count": 1, "of": {"_count": 1}}}, "reindeer": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "now": {"_count": 1, "over": {"_count": 1}}}, "readjusted": {"_count": 3, "her": {"_count": 2, "bangles": {"_count": 1}, "monocle": {"_count": 1}}, "Dudley": {"_count": 1, "on": {"_count": 1}}}, "wreath": {"_count": 4, "of": {"_count": 3, "thistles": {"_count": 1}, "Christmas": {"_count": 2}}, "in": {"_count": 1, "her": {"_count": 1}}}, "thistles": {"_count": 1, "around": {"_count": 1, "the": {"_count": 1}}}, "floaty": {"_count": 2, "periwinkleblue": {"_count": 1, "material": {"_count": 1}}, "lilaccolored": {"_count": 1, "dress": {"_count": 1}}}, "periwinkleblue": {"_count": 1, "material": {"_count": 1, "and": {"_count": 1}}}, "slung": {"_count": 3, "over": {"_count": 3, "her": {"_count": 1}, "his": {"_count": 2}}}, "reduction": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "unflattering": {"_count": 1, "disbelief": {"_count": 1, "": {"_count": 1}}}, "garlands": {"_count": 3, "of": {"_count": 3, "mistletoe": {"_count": 1}, "holly": {"_count": 2}}}, "lavender": {"_count": 2, "silk": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "navyblue": {"_count": 1, "dress": {"_count": 1, "robes": {"_count": 1}}}, "smugness": {"_count": 5, "that": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "excitement": {"_count": 1, "or": {"_count": 1}}}, "promoted": {"_count": 4, "Percy": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "election": {"_count": 3, "as": {"_count": 1, "supreme": {"_count": 1}}, "had": {"_count": 1, "caused": {"_count": 1}}, "campaign": {"_count": 1, "": {"_count": 1}}}, "supreme": {"_count": 4, "ruler": {"_count": 1, "of": {"_count": 1}}, "authority": {"_count": 1, "over": {"_count": 1}}, "act": {"_count": 1, "of": {"_count": 1}}, "effort": {"_count": 1, "to": {"_count": 1}}}, "ruler": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "universe": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "more": {"_count": 1, "important": {"_count": 1}}, "and": {"_count": 1, "are": {"_count": 1}}}, "lectured": {"_count": 2, "on": {"_count": 1, "cauldron": {"_count": 1}}, "them": {"_count": 1, "without": {"_count": 1}}}, "overwork": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "you": {"_count": 1, "at": {"_count": 1}}}, "misbehavior": {"_count": 1, "of": {"_count": 1, "that": {"_count": 1}}}, "Blinky": {"_count": 1, "or": {"_count": 1, "whatever": {"_count": 1}}}, "comforts": {"_count": 3, "since": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}}, "resisted": {"_count": 7, "the": {"_count": 4, "temptation": {"_count": 4}}, "all": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "menus": {"_count": 1, "were": {"_count": 1, "lying": {"_count": 1}}}, "waiters": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "arrived": {"_count": 1}}, "popped": {"_count": 1, "up": {"_count": 1}}}, "menu": {"_count": 1, "then": {"_count": 1, "said": {"_count": 1}}}, "Pork": {"_count": 1, "chops": {"_count": 1, "": {"_count": 1}}}, "purposes": {"_count": 4, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "of": {"_count": 1, "our": {"_count": 1}}, "theyre": {"_count": 1, "the": {"_count": 1}}}, "vinter": {"_count": 1, "ve": {"_count": 1, "have": {"_count": 1}}}, "Igor": {"_count": 7, "all": {"_count": 1, "this": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Dumbledore": {"_count": 1, "began": {"_count": 1}}, "Karkaroff": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "Karkaroffs": {"_count": 1, "body": {"_count": 1}}}, "secrecy": {"_count": 6, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 1, "domination": {"_count": 1}}, "at": {"_count": 1, "our": {"_count": 1}}}, "yellowing": {"_count": 5, "teeth": {"_count": 1, "to": {"_count": 1}}, "Daily": {"_count": 1, "Prophets": {"_count": 1}}, "the": {"_count": 1, "use": {"_count": 1}}, "skin": {"_count": 1, "of": {"_count": 1}}, "labels": {"_count": 1, "had": {"_count": 1}}}, "domains": {"_count": 1, "are": {"_count": 1, "we": {"_count": 1}}}, "halls": {"_count": 1, "of": {"_count": 1, "learning": {"_count": 1}}}, "entrusted": {"_count": 4, "to": {"_count": 1, "us": {"_count": 1}}, "me": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}, "it": {"_count": 1, "to": {"_count": 1}}}, "amicably": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "both": {"_count": 1}}}, "proportioned": {"_count": 3, "room": {"_count": 1, "I": {"_count": 1}}, "outside": {"_count": 1, "ten": {"_count": 1}}, "his": {"_count": 1, "shoulders": {"_count": 1}}}, "fivethirty": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "seeker": {"_count": 1, "has": {"_count": 1, "an": {"_count": 1}}}, "bladder": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "goulash": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Zis": {"_count": 1, "is": {"_count": 1, "nothing": {"_count": 1}}}, "Palace": {"_count": 1, "of": {"_count": 1, "Beauxbatons": {"_count": 1}}}, "sculptures": {"_count": 1, "all": {"_count": 1, "around": {"_count": 1}}}, "Chreestmas": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "uge": {"_count": 1, "statues": {"_count": 1, "of": {"_count": 1}}}, "diamond": {"_count": 3, "glittering": {"_count": 1, "around": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "sparks": {"_count": 1, "in": {"_count": 1}}}, "seemply": {"_count": 2, "superb": {"_count": 1, "": {"_count": 1}}, "ave": {"_count": 1, "to": {"_count": 1}}}, "choirs": {"_count": 1, "of": {"_count": 1, "wood": {"_count": 1}}}, "nymphs": {"_count": 1, "oo": {"_count": 1, "serenade": {"_count": 1}}}, "serenade": {"_count": 1, "us": {"_count": 1, "as": {"_count": 1}}}, "alls": {"_count": 1, "and": {"_count": 1, "eef": {"_count": 1}}}, "eef": {"_count": 1, "a": {"_count": 1, "poltergeist": {"_count": 1}}}, "entaired": {"_count": 1, "into": {"_count": 1, "Beauxbatons": {"_count": 1}}}, "imitation": {"_count": 10, "of": {"_count": 10, "Fleur": {"_count": 2}, "her": {"_count": 1}, "politeness": {"_count": 1}, "Professor": {"_count": 1}, "my": {"_count": 1}, "life": {"_count": 1}, "Wormtails": {"_count": 1}, "Bellatrixs": {"_count": 1}, "Percys": {"_count": 1}}}, "Hermyown": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Hermyohnee": {"_count": 1, "she": {"_count": 1, "said": {"_count": 1}}}, "Hermownninny": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "drums": {"_count": 1, "several": {"_count": 1, "guitars": {"_count": 1}}}, "guitars": {"_count": 1, "a": {"_count": 1, "lute": {"_count": 1}}}, "lute": {"_count": 1, "a": {"_count": 1, "cello": {"_count": 1}}}, "cello": {"_count": 1, "and": {"_count": 1, "some": {"_count": 1}}}, "bagpipes": {"_count": 2, "were": {"_count": 1, "set": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "artfully": {"_count": 1, "ripped": {"_count": 1, "and": {"_count": 1}}}, "mournful": {"_count": 6, "tune": {"_count": 1, "Harry": {"_count": 1}}, "creak": {"_count": 1, "of": {"_count": 1}}, "face": {"_count": 1, "got": {"_count": 1}}, "air": {"_count": 1, "": {"_count": 1}}, "hum": {"_count": 1, "in": {"_count": 1}}, "sound": {"_count": 1, "": {"_count": 1}}}, "dwarfed": {"_count": 1, "by": {"_count": 1, "her": {"_count": 1}}}, "ungainly": {"_count": 3, "twostep": {"_count": 1, "with": {"_count": 1}}, "wobble": {"_count": 1, "and": {"_count": 1}}, "way": {"_count": 1, "back": {"_count": 1}}}, "twostep": {"_count": 1, "with": {"_count": 1, "Professor": {"_count": 1}}}, "clunked": {"_count": 2, "away": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "place": {"_count": 1}}}, "bagpipe": {"_count": 1, "with": {"_count": 1, "relief": {"_count": 1}}}, "exhuberantly": {"_count": 1, "that": {"_count": 1, "people": {"_count": 1}}}, "jiggling": {"_count": 1, "in": {"_count": 1, "time": {"_count": 1}}}, "Parvatis": {"_count": 5, "empty": {"_count": 1, "chair": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "hat": {"_count": 1, "off": {"_count": 1}}, "most": {"_count": 1, "recent": {"_count": 1}}, "hand": {"_count": 1, "fell": {"_count": 1}}}, "Viktors": {"_count": 2, "just": {"_count": 1, "gone": {"_count": 1}}, "do": {"_count": 1, "we": {"_count": 1}}}, "Vicky": {"_count": 4, "yet": {"_count": 1, "": {"_count": 1}}, "hell": {"_count": 1, "be": {"_count": 1}}, "Frobisher": {"_count": 1, "and": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}}, "describe": {"_count": 7, "Hermione": {"_count": 1, "s": {"_count": 1}}, "what": {"_count": 1, "had": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 3, "wand": {"_count": 1}, "sensation": {"_count": 1}, "triumphs": {"_count": 1}}, "its": {"_count": 1, "effects": {"_count": 1}}}, "fraternizing": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "pluck": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "Obvious": {"_count": 1, "isnt": {"_count": 1, "it": {"_count": 1}}}, "Vickyl": {"_count": 1, "Hermione": {"_count": 1, "jumped": {"_count": 1}}}, "Vare": {"_count": 1, "is": {"_count": 1, "Hermownninny": {"_count": 1}}}, "butterbeers": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 4, "Madam": {"_count": 1}, "under": {"_count": 1}, "a": {"_count": 1}, "beneath": {"_count": 1}}, "please": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}}, "mulishly": {"_count": 2, "looking": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "haff": {"_count": 5, "drinks": {"_count": 1, "he": {"_count": 1}}, "a": {"_count": 2, "water": {"_count": 1}, "vord": {"_count": 1}}, "never": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "": {"_count": 1}}}, "cooperation": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "thats": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "staff": {"_count": 1}}}, "waltzed": {"_count": 1, "through": {"_count": 1, "the": {"_count": 1}}}, "accosted": {"_count": 3, "him": {"_count": 2, "": {"_count": 1}, "outside": {"_count": 1}}, "late": {"_count": 1, "last": {"_count": 1}}}, "senior": {"_count": 5, "Ministry": {"_count": 2, "members": {"_count": 2}}, "the": {"_count": 1, "handsome": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "marketing": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "contacts": {"_count": 6, "of": {"_count": 1, "mine": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "protection": {"_count": 1}}, "between": {"_count": 1, "members": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "diverted": {"_count": 4, "him": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}}, "attending": {"_count": 4, "balls": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "tournament": {"_count": 1}}, "a": {"_count": 1, "concert": {"_count": 1}}, "all": {"_count": 1, "Care": {"_count": 1}}}, "cropped": {"_count": 3, "up": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}, "gray": {"_count": 1, "hair": {"_count": 1}}}, "Bashir": {"_count": 1, "was": {"_count": 1, "caught": {"_count": 1}}}, "consignment": {"_count": 1, "of": {"_count": 1, "flying": {"_count": 1}}}, "Transylvanians": {"_count": 1, "to": {"_count": 1, "sign": {"_count": 1}}}, "Ban": {"_count": 3, "on": {"_count": 2, "Dueling": {"_count": 1}, "Experimental": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}}, "paths": {"_count": 4, "and": {"_count": 2, "large": {"_count": 1}, "looked": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "ahead": {"_count": 1}}}, "Flee": {"_count": 1, "I": {"_count": 1, "will": {"_count": 1}}}, "illnatured": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Squeals": {"_count": 1, "issued": {"_count": 1, "from": {"_count": 1}}}, "Stebbins": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "discomposed": {"_count": 2, "to": {"_count": 1, "see": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}}, "Momen": {"_count": 1, "I": {"_count": 1, "saw": {"_count": 1}}}, "husky": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "halfconcealed": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "rosebush": {"_count": 2, "nearby": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "purr": {"_count": 1, "in": {"_count": 1, "her": {"_count": 1}}}, "reindeers": {"_count": 2, "back": {"_count": 1, "but": {"_count": 1}}, "antlers": {"_count": 1, "listening": {"_count": 1}}}, "maternal": {"_count": 1, "sort": {"_count": 1, "": {"_count": 1}}}, "natures": {"_count": 2, "is": {"_count": 1, "it": {"_count": 1}}, "theyre": {"_count": 1, "like": {"_count": 1}}}, "antlers": {"_count": 5, "listening": {"_count": 1, "": {"_count": 1}}, "caught": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "brokenhearted": {"_count": 1, "when": {"_count": 1, "she": {"_count": 1}}}, "wen": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "down": {"_count": 2, "ter": {"_count": 1}, "with": {"_count": 1}}, "wrong": {"_count": 1, "": {"_count": 1}}, "not": {"_count": 1, "ter": {"_count": 1}}, "through": {"_count": 1, "ter": {"_count": 1}}}, "dresser": {"_count": 10, "if": {"_count": 1, "he": {"_count": 1}}, "opened": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 3, "which": {"_count": 2}, "whence": {"_count": 1}}, "was": {"_count": 1, "sitting": {"_count": 1}}, "Ron": {"_count": 1, "left": {"_count": 1}}, "when": {"_count": 1, "Mrs": {"_count": 1}}, "each": {"_count": 1, "peopled": {"_count": 1}}}, "Used": {"_count": 3, "ter": {"_count": 2, "make": {"_count": 1}, "keep": {"_count": 1}}, "to": {"_count": 1, "images": {"_count": 1}}}, "Sorta": {"_count": 1, "had": {"_count": 1, "ter": {"_count": 1}}}, "Anuzzer": {"_count": 1, "what": {"_count": 1, "precisely": {"_count": 1}}}, "gritting": {"_count": 1, "his": {"_count": 1, "teeth": {"_count": 1}}}, "halfgiant": {"_count": 6, "o": {"_count": 1, "course": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, "!": {"_count": 1}}, "she": {"_count": 1, "definitely": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}}, "nevair": {"_count": 1, "been": {"_count": 1, "more": {"_count": 1}}}, "Alfgiant": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Moi": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "swarms": {"_count": 1, "of": {"_count": 1, "fairies": {"_count": 1}}}, "ignorance": {"_count": 5, "of": {"_count": 2, "the": {"_count": 1}, "what": {"_count": 1}}, "and": {"_count": 1, "bewitchment": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "revelations": {"_count": 1, "to": {"_count": 1, "Harry": {"_count": 1}}}, "successive": {"_count": 3, "year": {"_count": 1, "": {"_count": 1}}, "classes": {"_count": 1, "in": {"_count": 1}}, "weeks": {"_count": 1, "": {"_count": 1}}}, "giantess": {"_count": 7, "for": {"_count": 2, "a": {"_count": 2}}, "": {"_count": 1, "?": {"_count": 1}}, "Fridwulfa": {"_count": 1, "whose": {"_count": 1}}, "mother": {"_count": 2, "where": {"_count": 1}, "seemed": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}}, "lamely": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "but": {"_count": 1, "Scrimgeour": {"_count": 1}}}, "cos": {"_count": 2, "theyll": {"_count": 1, "know": {"_count": 1}}, "me": {"_count": 1, "mum": {"_count": 1}}}, "Aurors": {"_count": 40, "": {"_count": 6, ".": {"_count": 6}}, "working": {"_count": 1, "against": {"_count": 1}}, "privilege": {"_count": 1, "Snape": {"_count": 1}}, "were": {"_count": 2, "given": {"_count": 1}, "still": {"_count": 1}}, "the": {"_count": 2, "year": {"_count": 1}, "High": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "on": {"_count": 1, "our": {"_count": 1}}, "had": {"_count": 2, "covered": {"_count": 1}, "been": {"_count": 1}}, "who": {"_count": 2, "catch": {"_count": 1}, "nodded": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "worthwhile": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "frequently": {"_count": 1, "need": {"_count": 1}}, "undetected": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "at": {"_count": 1}}, "are": {"_count": 2, "on": {"_count": 1}, "part": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "dedicated": {"_count": 1, "solely": {"_count": 1}}, "waiting": {"_count": 2, "outside": {"_count": 1}, "at": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}, "in": {"_count": 1, "dark": {"_count": 1}}, "grip": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "all": {"_count": 1}}, "at": {"_count": 2, "his": {"_count": 1}, "your": {"_count": 1}}, "wont": {"_count": 1, "stop": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}}, "dinosaur": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "inclination": {"_count": 5, "to": {"_count": 5, "dance": {"_count": 1}, "follow": {"_count": 1}, "climb": {"_count": 1}, "allow": {"_count": 1}, "go": {"_count": 1}}}, "wend": {"_count": 3, "their": {"_count": 2, "way": {"_count": 2}}, "his": {"_count": 1, "way": {"_count": 1}}}, "expressing": {"_count": 3, "the": {"_count": 2, "wish": {"_count": 1}, "hope": {"_count": 1}}, "my": {"_count": 1, "confidence": {"_count": 1}}}, "mull": {"_count": 2, "things": {"_count": 1, "over": {"_count": 1}}, "that": {"_count": 1, "one": {"_count": 1}}}, "Boris": {"_count": 2, "the": {"_count": 2, "Bewildered": {"_count": 2}}}, "Passwords": {"_count": 1, "\u2018pine": {"_count": 1, "fresh": {"_count": 1}}}, "\u2018pine": {"_count": 1, "fresh": {"_count": 1, "": {"_count": 1}}}, "goldfish": {"_count": 4, "out": {"_count": 1, "of": {"_count": 1}}, "any": {"_count": 1, "time": {"_count": 1}}, "bowls": {"_count": 1, "on": {"_count": 1}}, "above": {"_count": 1, "the": {"_count": 1}}}, "proves": {"_count": 5, "completely": {"_count": 1, "missed": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}, "Malfoys": {"_count": 2, "planning": {"_count": 1}, "a": {"_count": 1}}, "nothing": {"_count": 1, "except": {"_count": 1}}}, "RITA": {"_count": 1, "SKEBTERS": {"_count": 1, "SCOOP": {"_count": 1}}}, "SKEBTERS": {"_count": 1, "SCOOP": {"_count": 1, "Everybody": {"_count": 1}}}, "SCOOP": {"_count": 1, "Everybody": {"_count": 1, "got": {"_count": 1}}}, "Boxing": {"_count": 3, "Day": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}, "Champion": {"_count": 1, "of": {"_count": 1}}}, "yawns": {"_count": 1, "punctuating": {"_count": 1, "the": {"_count": 1}}}, "punctuating": {"_count": 1, "the": {"_count": 1, "lazy": {"_count": 1}}}, "Sleekeazys": {"_count": 1, "Hair": {"_count": 1, "Potion": {"_count": 1}}}, "unspoken": {"_count": 3, "agreement": {"_count": 1, "not": {"_count": 1}}, "plea": {"_count": 1, "for": {"_count": 1}}, "reproaches": {"_count": 1, "": {"_count": 1}}}, "hysteria": {"_count": 2, "about": {"_count": 1, "giants": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}}, "prejudice": {"_count": 3, "that": {"_count": 1, "people": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "bigotry": {"_count": 1, "isnt": {"_count": 1, "it": {"_count": 1}}}, "neglected": {"_count": 5, "during": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "duty": {"_count": 1}}, "feeling": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "mention": {"_count": 1}}, "what": {"_count": 1, "did": {"_count": 1}}}, "lessthanfriendly": {"_count": 1, "feelings": {"_count": 1, "toward": {"_count": 1}}}, "explicit": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "instructions": {"_count": 1, "on": {"_count": 1}}}, "rubbishy": {"_count": 1, "help": {"_count": 1, "not": {"_count": 1}}}, "condensation": {"_count": 1, "so": {"_count": 1, "thick": {"_count": 1}}}, "GrubblyPlank": {"_count": 46, "she": {"_count": 1, "said": {"_count": 1}}, "shortly": {"_count": 1, "": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 5, "she": {"_count": 1}, "Sinistra": {"_count": 1}, "staggered": {"_count": 1}, "Professor": {"_count": 1}, "hope": {"_count": 1}}, "acted": {"_count": 1, "as": {"_count": 1}}, "throwing": {"_count": 1, "out": {"_count": 1}}, "was": {"_count": 2, "now": {"_count": 1}, "chatting": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "could": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "witch": {"_count": 1}}, "but": {"_count": 1, "neither": {"_count": 1}}, "woman": {"_count": 1, "": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 2}}, "would": {"_count": 1, "be": {"_count": 1}}, "womans": {"_count": 2, "staying": {"_count": 1}, "a": {"_count": 1}}, "stood": {"_count": 1, "waiting": {"_count": 1}}, "once": {"_count": 1, "all": {"_count": 1}}, "sharply": {"_count": 1, "scattering": {"_count": 1}}, "repressively": {"_count": 1, "which": {"_count": 1}}, "hands": {"_count": 1, "behind": {"_count": 1}}, "breezily": {"_count": 1, "": {"_count": 1}}, "heartily": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "Harry": {"_count": 1, "explained": {"_count": 1}}, "appeared": {"_count": 1, "at": {"_count": 1}}, "stuck": {"_count": 1, "her": {"_count": 1}}, "her": {"_count": 1, "pipe": {"_count": 1}}, "pulled": {"_count": 1, "a": {"_count": 1}}, "gruffly": {"_count": 1, "turning": {"_count": 1}}, "handed": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "says": {"_count": 1, "she": {"_count": 1}}, "wouldnt": {"_count": 1, "usually": {"_count": 1}}, "yehll": {"_count": 1, "yehll": {"_count": 1}}, "had": {"_count": 1, "bin": {"_count": 1}}}, "indisposed": {"_count": 1, "said": {"_count": 1, "Professor": {"_count": 1}}}, "Soft": {"_count": 1, "and": {"_count": 1, "unpleasant": {"_count": 1}}}, "ooooohed": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "pawing": {"_count": 2, "the": {"_count": 1, "ground": {"_count": 1}}, "hooves": {"_count": 1, "was": {"_count": 1}}}, "Grubbly": {"_count": 5, "Plank": {"_count": 4, "was": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 2}}, "Planks": {"_count": 1, "lessons": {"_count": 1}}}, "Plank": {"_count": 4, "was": {"_count": 1, "out": {"_count": 1}}, "who": {"_count": 1, "will": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "newsprint": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 1, "Xraying": {"_count": 1}}}, "Hate": {"_count": 3, "to": {"_count": 1, "break": {"_count": 1}}, "mail": {"_count": 1, "continued": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}}, "DUMBLEDORES": {"_count": 3, "GIANT": {"_count": 1, "MISTAKE": {"_count": 1}}, "ARMY": {"_count": 2, "Umbridge": {"_count": 1}, "across": {"_count": 1}}}, "GIANT": {"_count": 1, "MISTAKE": {"_count": 1, "Albus": {"_count": 1}}}, "eccentric": {"_count": 5, "Headmaster": {"_count": 1, "of": {"_count": 1}}, "decisions": {"_count": 1, "in": {"_count": 1}}, "appearance": {"_count": 2, "": {"_count": 2}}, "dressers": {"_count": 1, "and": {"_count": 1}}}, "controversial": {"_count": 2, "staff": {"_count": 2, "appointments": {"_count": 2}}}, "Alastor": {"_count": 11, "MadEye": {"_count": 1, "Moody": {"_count": 1}}, "said": {"_count": 1, "Fudge": {"_count": 1}}, "Moody": {"_count": 7, "said": {"_count": 2}, "": {"_count": 2}, "into": {"_count": 1}, "Harry": {"_count": 1}, "Nymphadora": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}}, "jinxhappy": {"_count": 1, "exAuror": {"_count": 1, "to": {"_count": 1}}}, "parthuman": {"_count": 2, "Dumbledore": {"_count": 1, "employs": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "employs": {"_count": 1, "to": {"_count": 1, "teach": {"_count": 1}}}, "secured": {"_count": 4, "for": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 2, "required": {"_count": 1}, "memory": {"_count": 1}}, "objects": {"_count": 1, "from": {"_count": 1}}}, "ferociouslooking": {"_count": 2, "man": {"_count": 1, "Hagrid": {"_count": 1}}, "female": {"_count": 1, "": {"_count": 1}}}, "newfound": {"_count": 2, "authority": {"_count": 1, "to": {"_count": 1}}, "brilliance": {"_count": 1, "at": {"_count": 1}}}, "authority": {"_count": 20, "to": {"_count": 4, "terrify": {"_count": 1}, "send": {"_count": 2}, "punish": {"_count": 1}}, "figures": {"_count": 1, "always": {"_count": 1}}, "and": {"_count": 1, "have": {"_count": 1}}, "over": {"_count": 2, "either": {"_count": 1}, "all": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "than": {"_count": 1, "common": {"_count": 1}}, "for": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "Your": {"_count": 1, "authority": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "fourthyear": {"_count": 6, "student": {"_count": 3, "": {"_count": 2}, "but": {"_count": 1}}, "Ravenclaws": {"_count": 1, "was": {"_count": 1}}, "girls": {"_count": 2, "came": {"_count": 1}, "was": {"_count": 1}}}, "ceasing": {"_count": 2, "his": {"_count": 1, "campaign": {"_count": 1}}, "grooming": {"_count": 1, "Malfoy": {"_count": 1}}}, "intimidation": {"_count": 2, "however": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dubbed": {"_count": 1, "BlastEnded": {"_count": 1, "Skrewts": {"_count": 1}}}, "manticores": {"_count": 1, "and": {"_count": 1, "fire": {"_count": 1}}}, "petty": {"_count": 6, "restrictions": {"_count": 1, "": {"_count": 1}}, "criminals": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}, "misdeeds": {"_count": 1, "occasionally": {"_count": 1}}, "criminal": {"_count": 1, "was": {"_count": 1}}, "obstacles": {"_count": 1, "they": {"_count": 1}}}, "restrictions": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "your": {"_count": 1}}}, "exclusively": {"_count": 5, "reveal": {"_count": 2, "is": {"_count": 1}, "regularly": {"_count": 1}}, "upon": {"_count": 1, "Hermione": {"_count": 1}}, "interviewed": {"_count": 1, "by": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "Fridwulfa": {"_count": 2, "whose": {"_count": 1, "whereabouts": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}}, "Bloodthirsty": {"_count": 1, "and": {"_count": 1, "brutal": {"_count": 1}}}, "extinction": {"_count": 1, "by": {"_count": 1, "warring": {"_count": 1}}}, "warring": {"_count": 1, "amongst": {"_count": 1, "themselves": {"_count": 1}}}, "reign": {"_count": 2, "of": {"_count": 2, "terror": {"_count": 2}}}, "HeWhoMust": {"_count": 6, "NotBeNamed": {"_count": 5, "were": {"_count": 1}, "is": {"_count": 1}, "either": {"_count": 1}, "": {"_count": 1}, "while": {"_count": 1}}, "NotBeNameds": {"_count": 1, "followers": {"_count": 1}}}, "NotBeNamed": {"_count": 5, "were": {"_count": 1, "killed": {"_count": 1}}, "is": {"_count": 1, "back": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "while": {"_count": 1, "you": {"_count": 1}}}, "communities": {"_count": 2, "still": {"_count": 1, "existing": {"_count": 1}}, "within": {"_count": 1, "a": {"_count": 1}}}, "existing": {"_count": 1, "in": {"_count": 1, "foreign": {"_count": 1}}}, "ranges": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Fridwulfas": {"_count": 1, "son": {"_count": 1, "appears": {"_count": 1}}}, "reputed": {"_count": 1, "to": {"_count": 1, "have": {"_count": 1}}}, "associating": {"_count": 1, "with": {"_count": 1, "partgiants": {"_count": 1}}}, "partgiants": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "oafs": {"_count": 2, "teaching": {"_count": 1, "career": {"_count": 1}}, "got": {"_count": 1, "himself": {"_count": 1}}}, "mummies": {"_count": 1, "and": {"_count": 1, "daddies": {"_count": 1}}}, "daddies": {"_count": 1, "are": {"_count": 1, "going": {"_count": 1}}}, "GrubblyPlanks": {"_count": 4, "voice": {"_count": 1, "carried": {"_count": 1}}, "side": {"_count": 1, "after": {"_count": 1}}, "plan": {"_count": 1, "I": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}}, "unseeingly": {"_count": 2, "at": {"_count": 2, "the": {"_count": 2}}}, "enumerating": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "uni": {"_count": 1, "Look": {"_count": 1, "at": {"_count": 1}}}, "quailing": {"_count": 1, "under": {"_count": 1, "Harrys": {"_count": 1}}}, "Missing": {"_count": 4, "your": {"_count": 1, "halfbreed": {"_count": 1}}, "the": {"_count": 1, "elephantman": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "halfbreed": {"_count": 2, "pal": {"_count": 1, "": {"_count": 1}}, "oaf": {"_count": 1, "": {"_count": 1}}}, "elephantman": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "emerge": {"_count": 10, "onto": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 3, "one": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "again": {"_count": 2, "but": {"_count": 1}, "from": {"_count": 1}}, "at": {"_count": 1, "any": {"_count": 1}}, "about": {"_count": 1, "their": {"_count": 1}}}, "tougher": {"_count": 2, "than": {"_count": 2, "he": {"_count": 1}, "youd": {"_count": 1}}}, "slushy": {"_count": 1, "High": {"_count": 1, "Street": {"_count": 1}}}, "ascertained": {"_count": 1, "that": {"_count": 1, "Hagrid": {"_count": 1}}}, "furthest": {"_count": 2, "from": {"_count": 1, "Madam": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "congratulated": {"_count": 2, "Harry": {"_count": 1, "in": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "slanting": {"_count": 10, "eyes": {"_count": 2, "": {"_count": 1}, "there": {"_count": 1}}, "shafts": {"_count": 2, "of": {"_count": 2}}, "writing": {"_count": 3, "": {"_count": 2}, "on": {"_count": 1}}, "handwriting": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}, "black": {"_count": 1, "eyes": {"_count": 1}}}, "Absolute": {"_count": 1, "nightmare": {"_count": 1, "said": {"_count": 1}}}, "Bladvak": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018pickax": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Barry": {"_count": 6, "Crouch": {"_count": 2, "": {"_count": 1}, "confess": {"_count": 1}}, "Ryan": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "whatever": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "thats": {"_count": 1, "what": {"_count": 1}}}, "Bartys": {"_count": 1, "illness": {"_count": 1, "into": {"_count": 1}}}, "illness": {"_count": 6, "into": {"_count": 1, "something": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "before": {"_count": 1, "this": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "an": {"_count": 1, "impression": {"_count": 1}}}, "cousins": {"_count": 8, "house": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 1, "marriage": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "George": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "Charlie": {"_count": 1, "Hagrid": {"_count": 1}}}, "en": {"_count": 1, "route": {"_count": 1, "": {"_count": 1}}}, "Blowed": {"_count": 1, "if": {"_count": 1, "I": {"_count": 1}}}, "elope": {"_count": 1, "for": {"_count": 1, "instance": {"_count": 1}}}, "untruthfully": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "Professor": {"_count": 1}}}, "babyblue": {"_count": 1, "eyes": {"_count": 1, "": {"_count": 1}}}, "frowns": {"_count": 1, "creased": {"_count": 1, "Bagmans": {"_count": 1}}}, "creased": {"_count": 1, "Bagmans": {"_count": 1, "smooth": {"_count": 1}}}, "snuffs": {"_count": 1, "it": {"_count": 1, "hell": {"_count": 1}}}, "jokeaboutthingslike": {"_count": 1, "that": {"_count": 1, "look": {"_count": 1}}}, "interpreter": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Worrying": {"_count": 1, "about": {"_count": 1, "poor": {"_count": 1}}}, "U": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "M": {"_count": 1, "No": {"_count": 1}}}, "bananayellow": {"_count": 1, "robes": {"_count": 1, "today": {"_count": 1}}}, "Bozo": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "we": {"_count": 1, "just": {"_count": 1}}}, "tow": {"_count": 2, "anyway": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Showing": {"_count": 1, "them": {"_count": 1, "the": {"_count": 1}}}, "sights": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "lower": {"_count": 1, "": {"_count": 1}}}, "\u2018Disgraced": {"_count": 1, "ExHead": {"_count": 1, "of": {"_count": 1}}}, "ExHead": {"_count": 1, "of": {"_count": 1, "Magical": {"_count": 1}}}, "Snappy": {"_count": 1, "start": {"_count": 1, "to": {"_count": 1}}}, "tenfoot": {"_count": 1, "broomstick": {"_count": 1, "said": {"_count": 1}}}, "oblivious": {"_count": 9, "to": {"_count": 8, "the": {"_count": 3}, "Harrys": {"_count": 2}, "their": {"_count": 1}, "Harry": {"_count": 1}, "all": {"_count": 1}}, "Screams": {"_count": 1, "a": {"_count": 1}}}, "overflowing": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "dumpster": {"_count": 2, "": {"_count": 1}, "still": {"_count": 1}}, "filing": {"_count": 1, "cabinets": {"_count": 1}}, "intray": {"_count": 1, "was": {"_count": 1}}, "bin": {"_count": 1, "": {"_count": 1}}}, "grenade": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Breaking": {"_count": 1, "into": {"_count": 1, "a": {"_count": 1}}}, "t": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "surmised": {"_count": 1, "as": {"_count": 1, "much": {"_count": 1}}}, "fended": {"_count": 1, "off": {"_count": 1, "Fang": {"_count": 1}}}, "Lo": {"_count": 2, "he": {"_count": 1, "said": {"_count": 1}}, "Fawkes": {"_count": 1, "said": {"_count": 1}}}, "cow": {"_count": 9, "sorry": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}, "over": {"_count": 1, "his": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "with": {"_count": 2, "a": {"_count": 1}, "its": {"_count": 1}}, "carcass": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}}, "universal": {"_count": 1, "popularity": {"_count": 1, "Im": {"_count": 1}}}, "Barricade": {"_count": 1, "myself": {"_count": 1, "in": {"_count": 1}}}, "Aberforth": {"_count": 74, "was": {"_count": 2, "prosecuted": {"_count": 1}, "never": {"_count": 1}}, "hide": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "time": {"_count": 1}}, "arrived": {"_count": 1, "at": {"_count": 1}}, "it": {"_count": 1, "must": {"_count": 1}}, "but": {"_count": 1, "to": {"_count": 1}}, "whose": {"_count": 1, "conviction": {"_count": 1}}, "is": {"_count": 1, "just": {"_count": 1}}, "and": {"_count": 6, "somehow": {"_count": 1}, "he": {"_count": 2}, "people": {"_count": 1}, "attacked": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 19, ".": {"_count": 19}}, "break": {"_count": 1, "Albus": {"_count": 1}}, "shouted": {"_count": 1, "that": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "later": {"_count": 1}}, "wore": {"_count": 1, "matching": {"_count": 1}}, "says": {"_count": 1, "Enid": {"_count": 1}}, "blamed": {"_count": 1, "Albus": {"_count": 1}}, "always": {"_count": 1, "talked": {"_count": 1}}, "Dumbledore": {"_count": 2, "blame": {"_count": 1}, "stood": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "leaning": {"_count": 1, "forward": {"_count": 1}}, "s": {"_count": 3, "glasses": {"_count": 1}, "gaze": {"_count": 1}, "face": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "roughly": {"_count": 1, "": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "lost": {"_count": 1}}, "tersely": {"_count": 1, "": {"_count": 1}}, "taking": {"_count": 1, "another": {"_count": 1}}, "knew": {"_count": 1, "what": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "sneered": {"_count": 1, "": {"_count": 1}}, "kept": {"_count": 1, "talking": {"_count": 1}}, "spat": {"_count": 1, "into": {"_count": 1}}, "looked": {"_count": 1, "down": {"_count": 1}}, "to": {"_count": 1, "jeer": {"_count": 1}}, "remained": {"_count": 1, "fixed": {"_count": 1}}, "Ab": {"_count": 1, "there": {"_count": 1}}, "ominously": {"_count": 1, "": {"_count": 1}}, "gruffly": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "grunted": {"_count": 1, "and": {"_count": 1}}, "has": {"_count": 1, "left": {"_count": 1}}, "again": {"_count": 1, "his": {"_count": 1}}, "havent": {"_count": 1, "seen": {"_count": 1}}, "Stunning": {"_count": 1, "Rookwood": {"_count": 1}}}, "prosecuted": {"_count": 2, "for": {"_count": 2, "practicing": {"_count": 1}, "setting": {"_count": 1}}}, "inappropriate": {"_count": 3, "charms": {"_count": 1, "on": {"_count": 1}}, "to": {"_count": 1, "your": {"_count": 1}}, "for": {"_count": 1, "schoolage": {"_count": 1}}}, "eightthirty": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "dustbinlidsized": {"_count": 1, "hands": {"_count": 1, "": {"_count": 1}}}, "ol": {"_count": 2, "dad": {"_count": 2, "woulda": {"_count": 1}, "used": {"_count": 1}}}, "woulda": {"_count": 4, "bin": {"_count": 2, "ashamed": {"_count": 1}, "diffrent": {"_count": 1}}, "done": {"_count": 1, "if": {"_count": 1}}, "got": {"_count": 1, "outta": {"_count": 1}}}, "behavin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Tha": {"_count": 3, "was": {"_count": 2, "taken": {"_count": 1}, "": {"_count": 1}}, "one": {"_count": 1, "was": {"_count": 1}}}, "chuffed": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "us": {"_count": 1}}}, "migh": {"_count": 4, "not": {"_count": 1, "be": {"_count": 1}}, "happen": {"_count": 1, "": {"_count": 1}}, "notve": {"_count": 1, "picked": {"_count": 1}}, "be": {"_count": 1, "cornin": {"_count": 1}}}, "Died": {"_count": 3, "see": {"_count": 1, "in": {"_count": 1}}, "years": {"_count": 2, "ago": {"_count": 2}}}, "trusts": {"_count": 16, "people": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 3, "growled": {"_count": 1}, "implicitly": {"_count": 1}, "so": {"_count": 1}}, "Snape": {"_count": 4, "Oh": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "even": {"_count": 1}}, "where": {"_count": 1, "a": {"_count": 1}}, "anyone": {"_count": 1, "at": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 3, "he": {"_count": 1}, "Hermione": {"_count": 1}, "doesnt": {"_count": 1}}, "Severus": {"_count": 1, "and": {"_count": 1}}, "Hagrid": {"_count": 1, "to": {"_count": 1}}}, "Gives": {"_count": 2, "em": {"_count": 1, "second": {"_count": 1}}, "light": {"_count": 1, "only": {"_count": 1}}}, "thas": {"_count": 17, "what": {"_count": 3, "sets": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 1}}, "right": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "not": {"_count": 1, "very": {"_count": 1}}, "jus": {"_count": 2, "superstition": {"_count": 1}, "normal": {"_count": 1}}, "why": {"_count": 2, "said": {"_count": 1}, "it": {"_count": 1}}, "a": {"_count": 1, "bit": {"_count": 1}}, "enough": {"_count": 1, "fer": {"_count": 1}}, "the": {"_count": 1, "way": {"_count": 1}}, "Dumbledore": {"_count": 1, "innit": {"_count": 1}}, "diffrent": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "anyway": {"_count": 1}}, "righ": {"_count": 1, "nice": {"_count": 1}}}, "apar": {"_count": 1, "from": {"_count": 1, "other": {"_count": 1}}}, "slong": {"_count": 1, "as": {"_count": 1, "theyve": {"_count": 1}}}, "tha": {"_count": 19, "respectable": {"_count": 1, "": {"_count": 1}}, "Horntail": {"_count": 1, "but": {"_count": 1}}, "bu": {"_count": 1, "she": {"_count": 1}}, "couldnta": {"_count": 1, "bin": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "migh": {"_count": 1, "happen": {"_count": 1}}, "survived": {"_count": 1, "didn": {"_count": 1}}, "job": {"_count": 1, "anymore": {"_count": 1}}, "was": {"_count": 3, "": {"_count": 2}, "before": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "niffler": {"_count": 1, "in": {"_count": 1}}, "nice": {"_count": 1, "": {"_count": 1}}, "name": {"_count": 1, "Harry": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "lyin": {"_count": 1, "on": {"_count": 1}}, "about": {"_count": 1, "": {"_count": 1}}}, "botherin": {"_count": 2, "with": {"_count": 2, "": {"_count": 1}, "her": {"_count": 1}}}, "Beat": {"_count": 1, "em": {"_count": 1, "all": {"_count": 1}}}, "banish": {"_count": 2, "the": {"_count": 2, "image": {"_count": 1}, "usurping": {"_count": 1}}}, "incomprehensible": {"_count": 8, "egg": {"_count": 1, "weighed": {"_count": 1}}, "as": {"_count": 1, "ever": {"_count": 1}}, "but": {"_count": 1, "odd": {"_count": 1}}, "note": {"_count": 1, "he": {"_count": 1}}, "hissing": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}, "truth": {"_count": 1, "that": {"_count": 1}}, "shouts": {"_count": 1, "that": {"_count": 1}}}, "conscience": {"_count": 8, "that": {"_count": 1, "evening": {"_count": 1}}, "Hermione": {"_count": 1, "": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "uneasy": {"_count": 1}}, "ached": {"_count": 1, "he": {"_count": 1}}, "squirmed": {"_count": 1, "slightly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "empty": {"_count": 1}}}, "shelve": {"_count": 1, "his": {"_count": 1, "pride": {"_count": 1}}}, "EGG": {"_count": 1, "AND": {"_count": 1, "THE": {"_count": 1}}}, "EYE": {"_count": 2, "As": {"_count": 1, "Harry": {"_count": 1}}, "OF": {"_count": 1, "THE": {"_count": 1}}}, "favours": {"_count": 1, "from": {"_count": 1, "Cedric": {"_count": 1}}}, "excursion": {"_count": 4, "carefully": {"_count": 1, "because": {"_count": 1}}, "into": {"_count": 2, "the": {"_count": 1}, "Voldemorts": {"_count": 1}}, "from": {"_count": 1, "Hogwarts": {"_count": 1}}}, "banana": {"_count": 1, "fritters": {"_count": 1, "": {"_count": 1}}}, "fritters": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "intervals": {"_count": 9, "Harry": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "ten": {"_count": 1}}, "and": {"_count": 1, "turned": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "check": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}, "along": {"_count": 2, "the": {"_count": 2}}}, "lostlooking": {"_count": 1, "wizard": {"_count": 1, "with": {"_count": 1}}}, "located": {"_count": 8, "the": {"_count": 2, "right": {"_count": 1}, "source": {"_count": 1}}, "at": {"_count": 2, "the": {"_count": 2}}, "an": {"_count": 1, "ant": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 2, "wand": {"_count": 1}, "and": {"_count": 1}}}, "Pine": {"_count": 1, "fresh": {"_count": 1, "just": {"_count": 1}}}, "rectangular": {"_count": 8, "swimming": {"_count": 1, "pool": {"_count": 1}}, "room": {"_count": 2, "full": {"_count": 1}, "was": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "parcel": {"_count": 1, "": {"_count": 1}}, "mirror": {"_count": 2, "propped": {"_count": 2}}, "patch": {"_count": 1, "on": {"_count": 1}}}, "pools": {"_count": 4, "edges": {"_count": 1, "each": {"_count": 1}}, "edge": {"_count": 2, "and": {"_count": 2}}, "of": {"_count": 1, "Snargaluff": {"_count": 1}}}, "towels": {"_count": 3, "sat": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "cloak": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "goldenframed": {"_count": 1, "painting": {"_count": 1, "on": {"_count": 1}}}, "featured": {"_count": 2, "a": {"_count": 2, "blonde": {"_count": 1}, "Cho": {"_count": 1}}}, "mermaid": {"_count": 5, "who": {"_count": 1, "was": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}}, "Magnificent": {"_count": 2, "though": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Slughorn": {"_count": 1}}}, "swimmingpoolsized": {"_count": 1, "bath": {"_count": 1, "then": {"_count": 1}}}, "gushed": {"_count": 6, "pink": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "over": {"_count": 1, "her": {"_count": 1}}, "forward": {"_count": 1, "and": {"_count": 1}}, "up": {"_count": 1, "inside": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}}, "footballs": {"_count": 1, "another": {"_count": 1, "poured": {"_count": 1}}}, "icewhite": {"_count": 1, "foam": {"_count": 1, "so": {"_count": 1}}}, "foam": {"_count": 4, "so": {"_count": 1, "thick": {"_count": 1}}, "and": {"_count": 1, "bubbles": {"_count": 1}}, "was": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "arcs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "foamy": {"_count": 3, "water": {"_count": 1, "with": {"_count": 1}}, "surface": {"_count": 1, "and": {"_count": 1}}, "grayish": {"_count": 1, "coffee": {"_count": 1}}}, "clattered": {"_count": 9, "away": {"_count": 1, "across": {"_count": 1}}, "upward": {"_count": 1, "again": {"_count": 1}}, "into": {"_count": 2, "view": {"_count": 1}, "sight": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "around": {"_count": 1, "noisily": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "glumlooking": {"_count": 1, "girl": {"_count": 1, "sitting": {"_count": 1}}}, "replicas": {"_count": 2, "of": {"_count": 1, "Crabbe": {"_count": 1}}, "burst": {"_count": 1, "out": {"_count": 1}}}, "halftrue": {"_count": 1, "Percy": {"_count": 1, "had": {"_count": 1}}}, "morose": {"_count": 3, "sort": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "baths": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "after": {"_count": 1, "dinner": {"_count": 1}}}, "honored": {"_count": 10, "said": {"_count": 1, "Harry": {"_count": 1}}, "beyond": {"_count": 2, "their": {"_count": 1}, "all": {"_count": 1}}, "by": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "delighted": {"_count": 1}}, "above": {"_count": 1, "all": {"_count": 1}}, "to": {"_count": 1, "help": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "occasion": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "hoisting": {"_count": 8, "himself": {"_count": 4, "out": {"_count": 1}, "up": {"_count": 3}}, "Hedwigs": {"_count": 1, "more": {"_count": 1}}, "his": {"_count": 1, "schoolbag": {"_count": 1}}, "the": {"_count": 1, "dead": {"_count": 1}}, "an": {"_count": 1, "unconvincing": {"_count": 1}}}, "bubblefilled": {"_count": 1, "bath": {"_count": 1, "he": {"_count": 1}}}, "chorus": {"_count": 11, "of": {"_count": 8, "eerie": {"_count": 1}, "Weasley": {"_count": 3}, "snide": {"_count": 1}, "the": {"_count": 1}, "merpeople": {"_count": 1}, "Happy": {"_count": 1}}, "now": {"_count": 1, "thundering": {"_count": 1}}, "I": {"_count": 1, "am": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "ponder": {"_count": 3, "this": {"_count": 1, "Weve": {"_count": 1}}, "in": {"_count": 1, "silence": {"_count": 1}}, "what": {"_count": 1, "she": {"_count": 1}}}, "float": {"_count": 5, "back": {"_count": 1, "upward": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "through": {"_count": 1}}, "along": {"_count": 1, "asleep": {"_count": 1}}}, "bubbly": {"_count": 2, "surface": {"_count": 1, "shaking": {"_count": 1}}, "water": {"_count": 1, "next": {"_count": 1}}}, "\u2018Come": {"_count": 3, "seek": {"_count": 1, "us": {"_count": 1}}, "and": {"_count": 1, "help": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}}, "renditions": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Slow": {"_count": 2, "arent": {"_count": 1, "you": {"_count": 1}}, "torture": {"_count": 1, "for": {"_count": 1}}}, "Underwater": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "flushes": {"_count": 1, "my": {"_count": 1, "toilet": {"_count": 1}}}, "merpeople": {"_count": 26, "in": {"_count": 2, "there": {"_count": 1}, "the": {"_count": 1}}, "would": {"_count": 1, "surely": {"_count": 1}}, "to": {"_count": 2, "give": {"_count": 1}, "lower": {"_count": 1}}, "and": {"_count": 2, "water": {"_count": 1}, "acromantulas": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "Ron": {"_count": 1, "nor": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "had": {"_count": 2, "grayish": {"_count": 1}, "broken": {"_count": 1}}, "was": {"_count": 2, "floating": {"_count": 1}, "singing": {"_count": 1}}, "surrounding": {"_count": 1, "them": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "started": {"_count": 1, "screeching": {"_count": 1}}, "whod": {"_count": 1, "looked": {"_count": 1}}, "accompanying": {"_count": 1, "them": {"_count": 1}}, "made": {"_count": 1, "when": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "rounded": {"_count": 1, "up": {"_count": 1}}, "when": {"_count": 1, "there": {"_count": 1}}, "singing": {"_count": 1, "in": {"_count": 1}}, "sank": {"_count": 1, "slowly": {"_count": 1}}, "rights": {"_count": 1, "bless": {"_count": 1}}}, "fins": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "swimmer": {"_count": 1, "hed": {"_count": 1, "never": {"_count": 1}}}, "Tactless": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "tactless": {"_count": 6, "": {"_count": 4, "?": {"_count": 2}, "!": {"_count": 1}, ".": {"_count": 1}}, "No": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}}, "\u2018Are": {"_count": 2, "you": {"_count": 2, "in": {"_count": 1}, "seeking": {"_count": 1}}}, "sulking": {"_count": 2, "Myrtle": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "her": {"_count": 1}}}, "\u2018because": {"_count": 1, "Professor": {"_count": 1, "Dippet": {"_count": 1}}}, "ooooh": {"_count": 1, "she": {"_count": 1, "didnt": {"_count": 1}}}, "merpeoples": {"_count": 1, "song": {"_count": 1, "again": {"_count": 1}}}, "bass": {"_count": 3, "drum": {"_count": 1, "on": {"_count": 1}}, "player": {"_count": 2, "in": {"_count": 1}, "from": {"_count": 1}}}, "drum": {"_count": 2, "on": {"_count": 1, "every": {"_count": 1}}, "pounding": {"_count": 1, "inside": {"_count": 1}}}, "rapid": {"_count": 4, "shuffling": {"_count": 1, "footsteps": {"_count": 1}}, "Bulgarian": {"_count": 1, "": {"_count": 1}}, "spread": {"_count": 1, "of": {"_count": 1}}, "French": {"_count": 1, "": {"_count": 1}}}, "Tri": {"_count": 3, "wizard": {"_count": 3, "clue": {"_count": 1}, "Cup": {"_count": 1}, "": {"_count": 1}}}, "Dumbledorell": {"_count": 1, "have": {"_count": 1, "you": {"_count": 1}}}, "pilfering": {"_count": 1, "poltergeist": {"_count": 1, "": {"_count": 1}}}, "apprehension": {"_count": 8, "he": {"_count": 1, "watched": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 2, "longing": {"_count": 1}, "anticipation": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "flannel": {"_count": 1, "dressing": {"_count": 1, "gown": {"_count": 1}}}, "yearningly": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "forgo": {"_count": 2, "the": {"_count": 1, "chance": {"_count": 1}}, "his": {"_count": 1, "best": {"_count": 1}}}, "plaintively": {"_count": 3, "the": {"_count": 1, "headmaster": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Clunk": {"_count": 12, "": {"_count": 12, ".": {"_count": 12}}}, "Pajama": {"_count": 1, "party": {"_count": 1, "is": {"_count": 1}}}, "strangeness": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}}, "unimportant": {"_count": 3, "said": {"_count": 1, "Snape": {"_count": 1}}, "sir": {"_count": 1, "said": {"_count": 1}}, "coincidence": {"_count": 1, "irrelevant": {"_count": 1}}}, "illicit": {"_count": 1, "mixtures": {"_count": 1, "no": {"_count": 1}}}, "mixtures": {"_count": 3, "no": {"_count": 1, "doubt": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 1, "resignation": {"_count": 1}}}, "pulsing": {"_count": 9, "more": {"_count": 1, "rapidly": {"_count": 1}}, "angrily": {"_count": 1, "as": {"_count": 1}}, "with": {"_count": 1, "rage": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "through": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "bluish": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "privilege": {"_count": 2, "Snape": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "delegate": {"_count": 1}}}, "Believes": {"_count": 1, "in": {"_count": 1, "second": {"_count": 1}}}, "Spots": {"_count": 2, "that": {"_count": 1, "never": {"_count": 1}}, "of": {"_count": 1, "light": {"_count": 1}}}, "prowl": {"_count": 1, "this": {"_count": 1, "school": {"_count": 1}}}, "Prowl": {"_count": 1, "away": {"_count": 1, "said": {"_count": 1}}}, "Parchments": {"_count": 1, "The": {"_count": 1, "map": {"_count": 1}}}, "pocketing": {"_count": 5, "it": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "PutOuter": {"_count": 1}}, "his": {"_count": 2, "schedule": {"_count": 1}, "gold": {"_count": 1}}, "her": {"_count": 1, "parchment": {"_count": 1}}}, "dilating": {"_count": 2, "trying": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 1, "excitement": {"_count": 1}}}, "Meaning": {"_count": 7, "what": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "Dumbledores": {"_count": 1}}, "Im": {"_count": 1, "an": {"_count": 1}}, "youve": {"_count": 1, "been": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}, "to": {"_count": 1, "get": {"_count": 1}}}, "torchlight": {"_count": 3, "flickered": {"_count": 1, "across": {"_count": 1}}, "his": {"_count": 1, "white": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "meow": {"_count": 1, "still": {"_count": 1, "peering": {"_count": 1}}}, "bubblebath": {"_count": 1, "smell": {"_count": 1, "": {"_count": 1}}}, "firstborn": {"_count": 1, "son": {"_count": 1, "": {"_count": 1}}}, "treachery": {"_count": 5, "": {"_count": 1, "!": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "if": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}}, "chirruping": {"_count": 2, "noise": {"_count": 1, "to": {"_count": 1}}, "noises": {"_count": 1, "in": {"_count": 1}}}, "bottommost": {"_count": 4, "stair": {"_count": 2, "and": {"_count": 1}, "when": {"_count": 1}}, "branches": {"_count": 1, "of": {"_count": 1}}, "drawer": {"_count": 1, "that": {"_count": 1}}}, "laboriously": {"_count": 2, "toward": {"_count": 1, "him": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "shave": {"_count": 2, "Potter": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}}, "napes": {"_count": 2, "office": {"_count": 1, "": {"_count": 1}}, "detention": {"_count": 1, "and": {"_count": 1}}}, "incriminated": {"_count": 1, "not": {"_count": 1, "only": {"_count": 1}}}, "owed": {"_count": 2, "Moody": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 1, "explanation": {"_count": 1}}}, "finetune": {"_count": 1, "it": {"_count": 1, "all": {"_count": 1}}}, "Banishing": {"_count": 2, "Charm": {"_count": 1, "": {"_count": 1}}, "Spell": {"_count": 1, "which": {"_count": 1}}}, "potential": {"_count": 4, "for": {"_count": 1, "nasty": {"_count": 1}}, "letterthieves": {"_count": 1, "a": {"_count": 1}}, "killer": {"_count": 1, "": {"_count": 1}}, "thieves": {"_count": 1, "": {"_count": 1}}}, "resignedly": {"_count": 1, "past": {"_count": 1, "them": {"_count": 1}}}, "recounting": {"_count": 2, "his": {"_count": 2, "adventures": {"_count": 1}, "attack": {"_count": 1}}}, "adventures": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "Ron": {"_count": 1}}}, "installments": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "Banished": {"_count": 2, "a": {"_count": 2, "cushion": {"_count": 2}}}, "ricocheting": {"_count": 3, "off": {"_count": 2, "the": {"_count": 2}}, "back": {"_count": 1, "at": {"_count": 1}}}, "sceptically": {"_count": 1, "we": {"_count": 1, "thought": {"_count": 1}}}, "catchers": {"_count": 1, "searching": {"_count": 1, "his": {"_count": 1}}}, "Obedient": {"_count": 1, "to": {"_count": 1, "Siriuss": {"_count": 1}}}, "earnest": {"_count": 8, "to": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "gazing": {"_count": 1, "beseechingly": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "immediately": {"_count": 1}}, "pained": {"_count": 1, "face": {"_count": 1}}}, "Aqua": {"_count": 2, "Lungs": {"_count": 1, "and": {"_count": 1}}, "Lung": {"_count": 1, "zooming": {"_count": 1}}}, "Lungs": {"_count": 1, "and": {"_count": 1, "Ron": {"_count": 1}}}, "Summon": {"_count": 4, "one": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 2, "Horcrux": {"_count": 1}, "fake": {"_count": 1}}, "it": {"_count": 1, "if": {"_count": 1}}}, "operate": {"_count": 4, "an": {"_count": 1, "AquaLung": {"_count": 1}}, "the": {"_count": 1, "moment": {"_count": 1}}, "alone": {"_count": 2, "": {"_count": 1}, "remember": {"_count": 1}}}, "AquaLung": {"_count": 1, "within": {"_count": 1, "the": {"_count": 1}}}, "limit": {"_count": 8, "of": {"_count": 3, "an": {"_count": 3}}, "": {"_count": 1, "!": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 1, "most": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}}, "disqualified": {"_count": 2, "for": {"_count": 1, "breaking": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "Lung": {"_count": 1, "zooming": {"_count": 1, "across": {"_count": 1}}}, "submarine": {"_count": 1, "or": {"_count": 1, "something": {"_count": 1}}}, "periscope": {"_count": 1, "sticking": {"_count": 1, "out": {"_count": 1}}}, "oxygen": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "vulturelike": {"_count": 2, "librarian": {"_count": 1, "Madam": {"_count": 1}}, "countenance": {"_count": 1, "of": {"_count": 1}}}, "Familiar": {"_count": 1, "flutterings": {"_count": 1, "of": {"_count": 1}}}, "flutterings": {"_count": 1, "of": {"_count": 1, "panic": {"_count": 1}}}, "extrafast": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Weekend": {"_count": 1, "after": {"_count": 1, "next": {"_count": 1}}}, "Advice": {"_count": 1, "on": {"_count": 1, "how": {"_count": 1}}}, "momentary": {"_count": 6, "happiness": {"_count": 1, "that": {"_count": 1}}, "inattention": {"_count": 1, "to": {"_count": 1}}, "red": {"_count": 1, "gleam": {"_count": 1}}, "urge": {"_count": 1, "to": {"_count": 1}}, "distraction": {"_count": 1, "knocking": {"_count": 1}}, "absence": {"_count": 1, "of": {"_count": 1}}}, "foals": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "is": {"_count": 1, "a": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}}, "transports": {"_count": 1, "of": {"_count": 1, "delight": {"_count": 1}}}, "Easier": {"_count": 2, "ter": {"_count": 1, "spot": {"_count": 1}}, "to": {"_count": 1, "take": {"_count": 1}}}, "adults": {"_count": 7, "Hagrid": {"_count": 1, "told": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "responsible": {"_count": 1, "for": {"_count": 1}}, "now": {"_count": 1, "said": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "yelled": {"_count": 1, "with": {"_count": 1}}, "evidently": {"_count": 1, "disappointed": {"_count": 1}}}, "aroun": {"_count": 1, "four": {"_count": 1, "": {"_count": 1}}}, "trustin": {"_count": 1, "when": {"_count": 1, "theyre": {"_count": 1}}}, "babies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "confess": {"_count": 13, "that": {"_count": 4, "he": {"_count": 1}, "you": {"_count": 1}, "I": {"_count": 1}, "at": {"_count": 1}}, "myself": {"_count": 1, "disappointed": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "finally": {"_count": 1, "seemed": {"_count": 1}}, "I": {"_count": 3, "am": {"_count": 1}, "deplore": {"_count": 1}, "should": {"_count": 1}}, "it": {"_count": 1, "meant": {"_count": 1}}}, "mastering": {"_count": 1, "it": {"_count": 1, "overnight": {"_count": 1}}}, "mandrake": {"_count": 1, "leaves": {"_count": 1, "and": {"_count": 1}}}, "Closest": {"_count": 1, "was": {"_count": 1, "that": {"_count": 1}}}, "puddles": {"_count": 2, "and": {"_count": 1, "ponds": {"_count": 1}}, "of": {"_count": 1, "sick": {"_count": 1}}}, "Drought": {"_count": 1, "Charm": {"_count": 1, "but": {"_count": 1}}}, "print": {"_count": 8, "of": {"_count": 1, "Olde": {"_count": 1}}, "on": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 1}, "because": {"_count": 1}}, "a": {"_count": 1, "story": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "inaccuracies": {"_count": 1, "make": {"_count": 1}}}, "Olde": {"_count": 1, "and": {"_count": 1, "Forgotten": {"_count": 1}}}, "Forgotten": {"_count": 1, "Bewitchments": {"_count": 1, "and": {"_count": 1}}}, "Bewitchments": {"_count": 1, "and": {"_count": 1, "Charmes": {"_count": 1}}}, "Charmes": {"_count": 1, "with": {"_count": 1, "her": {"_count": 1}}}, "undoable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "librarys": {"_count": 2, "lack": {"_count": 1, "of": {"_count": 1}}, "its": {"_count": 1, "mine": {"_count": 1}}}, "Saucy": {"_count": 1, "Tricks": {"_count": 1, "for": {"_count": 1}}}, "Tricks": {"_count": 1, "for": {"_count": 1, "Tricky": {"_count": 1}}}, "Sorts": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Dilemmas": {"_count": 2, "and": {"_count": 1, "Their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Solutions": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "today": {"_count": 1, "you": {"_count": 1}}}, "abuse": {"_count": 7, "it": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "your": {"_count": 1, "position": {"_count": 1}}, "McLaggen": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "houseelves": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "ringlets": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}}, "chivvy": {"_count": 2, "Harry": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 1, "underage": {"_count": 1}}}, "Madcap": {"_count": 1, "Magic": {"_count": 1, "for": {"_count": 1}}}, "Wacky": {"_count": 1, "Warlocks": {"_count": 1, "": {"_count": 1}}}, "exploits": {"_count": 2, "in": {"_count": 1, "An": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "Anthology": {"_count": 1, "of": {"_count": 1, "EighteenthCentury": {"_count": 1}}}, "EighteenthCentury": {"_count": 1, "Charms": {"_count": 1, "or": {"_count": 1}}}, "Denizens": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Wised": {"_count": 1, "Up": {"_count": 1, "": {"_count": 1}}}, "golfball": {"_count": 1, "stuck": {"_count": 1, "in": {"_count": 1}}}, "roundeyed": {"_count": 1, "surprise": {"_count": 1, "Karkaroffs": {"_count": 1}}}, "yellowtoothed": {"_count": 1, "smile": {"_count": 1, "": {"_count": 1}}}, "hexes": {"_count": 17, "and": {"_count": 4, "charms": {"_count": 1}, "spells": {"_count": 1}, "incorrectly": {"_count": 1}, "jinxes": {"_count": 1}}, "wouldnt": {"_count": 1, "go": {"_count": 1}}, "or": {"_count": 2, "else": {"_count": 1}, "jinxes": {"_count": 1}}, "this": {"_count": 1, "evening": {"_count": 1}}, "in": {"_count": 1, "class": {"_count": 1}}, "at": {"_count": 1, "every": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "described": {"_count": 1}}, "but": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "indiscriminately": {"_count": 1, "from": {"_count": 1}}, "scribbled": {"_count": 1, "in": {"_count": 1}}}, "inventions": {"_count": 3, "on": {"_count": 2, "anything": {"_count": 1}, "me": {"_count": 1}}, "we": {"_count": 1, "shall": {"_count": 1}}}, "survival": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "if": {"_count": 1, "he": {"_count": 1}}, "burned": {"_count": 1, "inside": {"_count": 1}}}, "Wheezy": {"_count": 8, "Find": {"_count": 1, "my": {"_count": 1}}, "back": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, "!": {"_count": 1}, ".": {"_count": 1}}, "sir": {"_count": 1, "your": {"_count": 1}}, "Wheezy": {"_count": 1, "who": {"_count": 1}}, "who": {"_count": 1, "is": {"_count": 1}}}, "\u2018But": {"_count": 2, "past": {"_count": 1, "an": {"_count": 1}}, "though": {"_count": 1, "Death": {"_count": 1}}}, "\u2018Too": {"_count": 1, "late": {"_count": 1, "its": {"_count": 1}}}, "whatve": {"_count": 2, "I": {"_count": 1, "got": {"_count": 1}}, "you": {"_count": 1, "done": {"_count": 1}}}, "grayishgreen": {"_count": 1, "rat": {"_count": 1, "tails": {"_count": 1}}}, "gillyweed": {"_count": 10, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 4}}, "and": {"_count": 1, "put": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "hard": {"_count": 1}}, "to": {"_count": 1, "great": {"_count": 1}}, "Dobby": {"_count": 1, "you": {"_count": 1}}}, "encircled": {"_count": 4, "the": {"_count": 2, "dragons": {"_count": 1}, "arms": {"_count": 1}}, "him": {"_count": 1, "laughing": {"_count": 1}}, "by": {"_count": 1, "that": {"_count": 1}}}, "ranged": {"_count": 4, "along": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "Neville": {"_count": 1}}, "dusty": {"_count": 1, "glass": {"_count": 1}}, "there": {"_count": 1, "on": {"_count": 1}}}, "flatout": {"_count": 3, "around": {"_count": 1, "the": {"_count": 1}}, "just": {"_count": 1, "to": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "waters": {"_count": 12, "edge": {"_count": 8, "": {"_count": 2}, "deep": {"_count": 1}, "as": {"_count": 1}, "where": {"_count": 1}, "she": {"_count": 1}, "two": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "around": {"_count": 1, "them": {"_count": 1}}}, "intensely": {"_count": 6, "relieved": {"_count": 1, "to": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "curious": {"_count": 1, "about": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "cross": {"_count": 1, "at": {"_count": 1}}, "shocking": {"_count": 1, "though": {"_count": 1}}}, "spacing": {"_count": 1, "them": {"_count": 1, "along": {"_count": 1}}}, "numbing": {"_count": 1, "feet": {"_count": 1, "were": {"_count": 1}}}, "silt": {"_count": 1, "and": {"_count": 1, "flat": {"_count": 1}}}, "octopus": {"_count": 1, "tentacles": {"_count": 1, "": {"_count": 1}}}, "Waistdeep": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "catcalls": {"_count": 4, "and": {"_count": 3, "jeering": {"_count": 1}, "jeers": {"_count": 2}}, "angry": {"_count": 1, "yells": {"_count": 1}}}, "gills": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "sending": {"_count": 1, "oxygen": {"_count": 1}}, "talking": {"_count": 1, "behind": {"_count": 1}}}, "flippers": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "furiously": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 1, "discovered": {"_count": 1}}}, "flipperlike": {"_count": 1, "feet": {"_count": 1, "propelled": {"_count": 1}}}, "scenes": {"_count": 5, "seemed": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "Snapes": {"_count": 1}}, "of": {"_count": 2, "euphoria": {"_count": 1}, "Dark": {"_count": 1}}, "inside": {"_count": 1, "as": {"_count": 1}}}, "loom": {"_count": 1, "suddenly": {"_count": 1, "out": {"_count": 1}}}, "weed": {"_count": 13, "wide": {"_count": 1, "plains": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "stretched": {"_count": 1, "ahead": {"_count": 1}}, "its": {"_count": 1, "long": {"_count": 1}}, "had": {"_count": 1, "seized": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}, "around": {"_count": 1, "some": {"_count": 1}}, "tying": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "unsatisfactory": {"_count": 1}}, "with": {"_count": 1, "fangs": {"_count": 1}}, "The": {"_count": 1, "chain": {"_count": 1}}}, "plains": {"_count": 1, "of": {"_count": 1, "mud": {"_count": 1}}}, "graylit": {"_count": 1, "water": {"_count": 1, "around": {"_count": 1}}}, "opaque": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "once": {"_count": 1, "more": {"_count": 1}}, "with": {"_count": 1, "hammering": {"_count": 1}}, "the": {"_count": 1, "fragments": {"_count": 1}}, "a": {"_count": 1, "bright": {"_count": 1}}, "and": {"_count": 1, "her": {"_count": 1}}}, "Small": {"_count": 9, "fish": {"_count": 1, "flickered": {"_count": 1}}, "white": {"_count": 1, "lights": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}, "comfort": {"_count": 1, "": {"_count": 1}}, "children": {"_count": 1, "often": {"_count": 1}}, "green": {"_count": 1, "shoots": {"_count": 1}}, "bundles": {"_count": 1, "seemed": {"_count": 1}}, "and": {"_count": 1, "fragile": {"_count": 1}}}, "darts": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "blackened": {"_count": 24, "log": {"_count": 1, "or": {"_count": 1}}, "brick": {"_count": 1, "behind": {"_count": 1}}, "old": {"_count": 1, "kettle": {"_count": 1}}, "kettle": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "apparently": {"_count": 1}}, "Umbridge": {"_count": 1, "tottering": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 5, "shriveled": {"_count": 1}, "dead": {"_count": 1}, "burnt": {"_count": 1}, "deadlooking": {"_count": 1}, "burned": {"_count": 1}}, "fingers": {"_count": 3, "the": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 3, "toward": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "burnedlooking": {"_count": 1, "hand": {"_count": 1}}, "fingertips": {"_count": 1, "murmuring": {"_count": 1}}, "with": {"_count": 1, "soot": {"_count": 1}}, "useless": {"_count": 1, "hand": {"_count": 1}}}, "log": {"_count": 4, "or": {"_count": 2, "a": {"_count": 1}, "something": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}, "fell": {"_count": 1, "in": {"_count": 1}}}, "thankfully": {"_count": 5, "the": {"_count": 1, "giant": {"_count": 1}}, "far": {"_count": 1, "outstrips": {"_count": 1}}, "this": {"_count": 1, "year": {"_count": 1}}, "neither": {"_count": 1, "Lavender": {"_count": 1}}, "with": {"_count": 1, "both": {"_count": 1}}}, "meadow": {"_count": 2, "of": {"_count": 1, "very": {"_count": 1}}, "she": {"_count": 1, "ran": {"_count": 1}}}, "Relashio": {"_count": 1, "Harry": {"_count": 1, "shouted": {"_count": 1}}}, "hazily": {"_count": 3, "in": {"_count": 1, "front": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "expanses": {"_count": 1, "of": {"_count": 1, "black": {"_count": 1}}}, "murkily": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "mersong": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "seriously": {"_count": 1, "": {"_count": 1}}}, "spears": {"_count": 4, "and": {"_count": 2, "chasing": {"_count": 1}, "charge": {"_count": 1}}, "clutched": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tarry": {"_count": 2, "not": {"_count": 1, "Lest": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "Lest": {"_count": 1, "what": {"_count": 1, "you": {"_count": 1}}}, "cluster": {"_count": 4, "of": {"_count": 4, "crude": {"_count": 1}, "owls": {"_count": 1}, "excited": {"_count": 1}, "low": {"_count": 1}}}, "crude": {"_count": 9, "stone": {"_count": 1, "dwellings": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "song": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "and": {"_count": 1, "badly": {"_count": 1}}, "sense": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "effective": {"_count": 1}}}, "dwellings": {"_count": 4, "stained": {"_count": 1, "with": {"_count": 1}}, "became": {"_count": 1, "more": {"_count": 1}}, "are": {"_count": 1, "magically": {"_count": 1}}, "in": {"_count": 1, "your": {"_count": 1}}}, "algae": {"_count": 1, "loomed": {"_count": 1, "suddenly": {"_count": 1}}}, "caves": {"_count": 8, "to": {"_count": 1, "watch": {"_count": 1}}, "an": {"_count": 1, "tha": {"_count": 1}}, "roun": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "night": {"_count": 1}}, "looking": {"_count": 1, "for": {"_count": 1}}, "Macnair": {"_count": 1, "an": {"_count": 1}}, "no": {"_count": 1, "go": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Merpeople": {"_count": 2, "were": {"_count": 2, "emerging": {"_count": 1}, "rising": {"_count": 1}}}, "merversion": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "choir": {"_count": 1, "of": {"_count": 1, "merpeople": {"_count": 1}}}, "merperson": {"_count": 3, "hewn": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "particularly": {"_count": 1}}}, "Delacours": {"_count": 8, "sister": {"_count": 1, "": {"_count": 1}}, "have": {"_count": 1, "got": {"_count": 1}}, "arrived": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "soon": {"_count": 1}}, "protests": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "an": {"_count": 1}}}, "hostages": {"_count": 9, "half": {"_count": 1, "expecting": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "safety": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "and": {"_count": 1, "that": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "sevenfoottall": {"_count": 1, "merman": {"_count": 1, "with": {"_count": 1}}}, "merman": {"_count": 4, "with": {"_count": 1, "a": {"_count": 1}}, "laughed": {"_count": 1, "and": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "yanked": {"_count": 1, "it": {"_count": 1}}}, "choker": {"_count": 1, "of": {"_count": 1, "shark": {"_count": 1}}}, "shark": {"_count": 2, "fangs": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hack": {"_count": 4, "at": {"_count": 3, "the": {"_count": 2}, "her": {"_count": 1}}, "to": {"_count": 1, "Hogwarts": {"_count": 1}}}, "bindings": {"_count": 2, "too": {"_count": 1, "At": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "mermen": {"_count": 4, "were": {"_count": 1, "pulling": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}, "now": {"_count": 1, "closed": {"_count": 1}}, "had": {"_count": 1, "understood": {"_count": 1}}}, "greenhaired": {"_count": 2, "heads": {"_count": 2, "and": {"_count": 1}, "were": {"_count": 1}}}, "hostage": {"_count": 9, "one": {"_count": 1, "of": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "though": {"_count": 1, "he": {"_count": 1}}, "Id": {"_count": 1, "come": {"_count": 1}}, "by": {"_count": 1, "Voldemort": {"_count": 1}}}, "silverhaired": {"_count": 4, "girl": {"_count": 1, "was": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "wizard": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "old": {"_count": 1}}}, "Krumre": {"_count": 1, "coming": {"_count": 1, "now": {"_count": 1}}}, "loosened": {"_count": 3, "their": {"_count": 1, "grip": {"_count": 1}}, "slightly": {"_count": 1, "at": {"_count": 1}}, "the": {"_count": 1, "pain": {"_count": 1}}}, "sharkman": {"_count": 1, "swam": {"_count": 1, "straight": {"_count": 1}}}, "dolphin": {"_count": 1, "and": {"_count": 1, "Harry": {"_count": 1}}}, "Darting": {"_count": 1, "forward": {"_count": 1, "Harry": {"_count": 1}}}, "potatofilled": {"_count": 1, "sacks": {"_count": 1, "dragging": {"_count": 1}}}, "thinning": {"_count": 2, "now": {"_count": 1, "": {"_count": 1}}, "Only": {"_count": 1, "a": {"_count": 1}}}, "waterlogged": {"_count": 4, "he": {"_count": 1, "couldnt": {"_count": 1}}, "floor": {"_count": 1, "with": {"_count": 1}}, "clothes": {"_count": 1, "billowed": {"_count": 1}}, "rags": {"_count": 1, "sunken": {"_count": 1}}}, "tooth": {"_count": 4, "and": {"_count": 2, "nail": {"_count": 1}, "your": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "Gabrielle": {"_count": 14, "": {"_count": 3, "!": {"_count": 2}, "?": {"_count": 1}}, "Is": {"_count": 1, "she": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "she": {"_count": 1, "told": {"_count": 1}}, "was": {"_count": 3, "holding": {"_count": 1}, "Fleur": {"_count": 1}, "sleeping": {"_count": 1}}, "will": {"_count": 1, "look": {"_count": 1}}, "followed": {"_count": 1, "her": {"_count": 1}}, "made": {"_count": 1, "the": {"_count": 1}}, "both": {"_count": 1, "wearing": {"_count": 1}}, "had": {"_count": 1, "never": {"_count": 1}}}, "urt": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "straitjacket": {"_count": 2, "and": {"_count": 1, "forced": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}}, "Hermown": {"_count": 1, "ninny": {"_count": 1, "said": {"_count": 1}}}, "ninny": {"_count": 1, "said": {"_count": 1, "Krum": {"_count": 1}}}, "stupidity": {"_count": 7, "was": {"_count": 1, "growing": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "your": {"_count": 1, "cowardice": {"_count": 1}}, "and": {"_count": 1, "carelessness": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}}, "chief": {"_count": 2, "merperson": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "conference": {"_count": 1, "before": {"_count": 1, "we": {"_count": 1}}}, "ostage": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "elped": {"_count": 1, "Yeah": {"_count": 1, "said": {"_count": 1}}}, "Merchieftainess": {"_count": 3, "Murcus": {"_count": 1, "has": {"_count": 1}}, "informs": {"_count": 1, "us": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Murcus": {"_count": 1, "has": {"_count": 1, "told": {"_count": 1}}}, "BubbleHead": {"_count": 3, "Charm": {"_count": 2, "was": {"_count": 2}}, "Charms": {"_count": 1, "on": {"_count": 1}}}, "twentyfive": {"_count": 3, "points": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "who": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "throatily": {"_count": 2, "shaking": {"_count": 1, "her": {"_count": 1}}, "kissing": {"_count": 1, "him": {"_count": 1}}}, "incomplete": {"_count": 3, "form": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "informs": {"_count": 2, "us": {"_count": 2, "that": {"_count": 2}}}, "delay": {"_count": 8, "in": {"_count": 2, "his": {"_count": 1}, "bringing": {"_count": 1}}, "on": {"_count": 1, "that": {"_count": 1}}, "laws": {"_count": 1, "he": {"_count": 1}}, "you": {"_count": 1, "leaving": {"_count": 1}}, "She": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "this": {"_count": 1}}, "him": {"_count": 1, "will": {"_count": 1}}}, "halfexasperated": {"_count": 2, "halfcommiserating": {"_count": 1, "looks": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "halfcommiserating": {"_count": 1, "looks": {"_count": 1, "": {"_count": 1}}}, "moral": {"_count": 3, "fiber": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "support": {"_count": 1, "what": {"_count": 1}}}, "notified": {"_count": 3, "of": {"_count": 1, "what": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "immediately": {"_count": 1, "and": {"_count": 1}}}, "herding": {"_count": 1, "the": {"_count": 1, "champions": {"_count": 1}}}, "RETURNS": {"_count": 2, "One": {"_count": 1, "of": {"_count": 1}}, "In": {"_count": 1, "a": {"_count": 1}}}, "subtly": {"_count": 2, "with": {"_count": 1, "every": {"_count": 1}}, "Dumbledores": {"_count": 1, "refusal": {"_count": 1}}}, "retelling": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "overheard": {"_count": 1}}, "her": {"_count": 1, "little": {"_count": 1}}}, "tallied": {"_count": 1, "with": {"_count": 1, "Hermiones": {"_count": 1}}}, "assuring": {"_count": 3, "them": {"_count": 1, "that": {"_count": 1}}, "him": {"_count": 1, "truthfully": {"_count": 1}}, "another": {"_count": 1, "that": {"_count": 1}}}, "thrilling": {"_count": 4, "tale": {"_count": 2, "of": {"_count": 1}, "I": {"_count": 1}}, "thought": {"_count": 1, "occurred": {"_count": 1}}, "opportunities": {"_count": 1, "abroad": {"_count": 1}}}, "kidnap": {"_count": 5, "in": {"_count": 2, "which": {"_count": 1}, "the": {"_count": 1}}, "growled": {"_count": 1, "Moody": {"_count": 1}}, "Crouch": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 1, "Norris": {"_count": 1}}}, "singlehandedly": {"_count": 4, "against": {"_count": 1, "fifty": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "demolished": {"_count": 1, "most": {"_count": 1}}, "delivered": {"_count": 1, "the": {"_count": 1}}}, "submission": {"_count": 1, "before": {"_count": 1, "tying": {"_count": 1}}}, "keener": {"_count": 3, "on": {"_count": 1, "Ron": {"_count": 1}}, "to": {"_count": 1, "join": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}}, "mer": {"_count": 1, "idiots": {"_count": 1, "any": {"_count": 1}}}, "idiots": {"_count": 10, "any": {"_count": 1, "time": {"_count": 1}}, "who": {"_count": 2, "ran": {"_count": 1}, "turned": {"_count": 1}}, "are": {"_count": 1, "letting": {"_count": 1}}, "cant": {"_count": 1, "come": {"_count": 1}}, "arent": {"_count": 1, "entitled": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "started": {"_count": 1, "selling": {"_count": 1}}, "copied": {"_count": 1, "it": {"_count": 1}}}, "waspishly": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "he": {"_count": 1}}}, "tetchy": {"_count": 1, "mood": {"_count": 1, "": {"_count": 1}}}, "reverted": {"_count": 2, "to": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}}, "delays": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "stile": {"_count": 5, "at": {"_count": 2, "end": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "followed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "swallowed": {"_count": 1, "his": {"_count": 1}}}, "Parkinsons": {"_count": 4, "gang": {"_count": 1, "of": {"_count": 1}}, "watch": {"_count": 1, "off": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "lap": {"_count": 1, "": {"_count": 1}}}, "Pansys": {"_count": 3, "puglike": {"_count": 1, "face": {"_count": 1}}, "answer": {"_count": 1, "": {"_count": 1}}, "hand": {"_count": 1, "aside": {"_count": 1}}}, "puglike": {"_count": 1, "face": {"_count": 1, "peered": {"_count": 1}}}, "magazine": {"_count": 31, "in": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 1, "Hermione": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 3, "continued": {"_count": 1}, "me": {"_count": 1}, "her": {"_count": 1}}, "she": {"_count": 1, "could": {"_count": 1}}, "he": {"_count": 2, "might": {"_count": 1}, "improvised": {"_count": 1}}, "entitled": {"_count": 1, "The": {"_count": 1}}, "upside": {"_count": 2, "down": {"_count": 2}}, "which": {"_count": 1, "was": {"_count": 1}}, "high": {"_count": 1, "enough": {"_count": 1}}, "again": {"_count": 1, "watching": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "slipped": {"_count": 1, "out": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "scanned": {"_count": 1}}, "Kingsley": {"_count": 1, "had": {"_count": 1}}, "often": {"_count": 1, "printed": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "said": {"_count": 1, "Luna": {"_count": 1}}, "shaking": {"_count": 1, "in": {"_count": 1}}, "The": {"_count": 1, "Quibbler": {"_count": 1}}, "having": {"_count": 1, "given": {"_count": 1}}, "of": {"_count": 1, "yours": {"_count": 1}}}, "Weekly": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "onto": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}, "article": {"_count": 1, "had": {"_count": 1}}, "knew": {"_count": 1, "all": {"_count": 1}}, "by": {"_count": 1, "any": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "others": {"_count": 1, "sporting": {"_count": 1}}}, "Heartache": {"_count": 2, "A": {"_count": 1, "boy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "pangs": {"_count": 2, "of": {"_count": 2, "adolescence": {"_count": 1}, "disappointed": {"_count": 1}}}, "adolescence": {"_count": 2, "writes": {"_count": 1, "Rita": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Deprived": {"_count": 2, "of": {"_count": 2, "love": {"_count": 1}, "their": {"_count": 1}}}, "demise": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "fourteenyearold": {"_count": 1, "Harry": {"_count": 1, "Potter": {"_count": 1}}}, "solace": {"_count": 2, "in": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "emotional": {"_count": 3, "blow": {"_count": 1, "in": {"_count": 1}}, "range": {"_count": 1, "of": {"_count": 1}}, "upheaval": {"_count": 1, "": {"_count": 1}}}, "satisfy": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "me": {"_count": 1, "I": {"_count": 1}}, "themselves": {"_count": 1, "that": {"_count": 1}}}, "toying": {"_count": 2, "with": {"_count": 2, "both": {"_count": 1}, "a": {"_count": 1}}}, "affections": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "smitten": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "devious": {"_count": 1, "Miss": {"_count": 1, "Granger": {"_count": 1}}}, "vivacious": {"_count": 1, "fourthyear": {"_count": 1, "student": {"_count": 1}}}, "brainy": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Where": {"_count": 1, "re": {"_count": 1}}}, "claims": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "wishers": {"_count": 3, "must": {"_count": 1, "hope": {"_count": 1}}, "sent": {"_count": 1, "Howlers": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bestows": {"_count": 3, "his": {"_count": 2, "heart": {"_count": 2}}, "wisdom": {"_count": 1, "she": {"_count": 1}}}, "worthier": {"_count": 3, "candidate": {"_count": 2, "": {"_count": 2}}, "of": {"_count": 1, "him": {"_count": 1}}}, "candidate": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 1, "and": {"_count": 1}}}, "Scarlet": {"_count": 1, "woman": {"_count": 1, "": {"_count": 1}}}, "unpacking": {"_count": 2, "the": {"_count": 1, "ingredients": {"_count": 1}}, "and": {"_count": 1, "repacking": {"_count": 1}}}, "WitSharpening": {"_count": 1, "Potion": {"_count": 1, "": {"_count": 1}}}, "pestle": {"_count": 4, "suspended": {"_count": 1, "over": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "down": {"_count": 1, "so": {"_count": 1}}}, "scarab": {"_count": 3, "beetles": {"_count": 3, "": {"_count": 1}, "imagining": {"_count": 1}, "even": {"_count": 1}}}, "Known": {"_count": 3, "what": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "fer": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}}, "sharks": {"_count": 1, "head": {"_count": 1, "": {"_count": 1}}}, "social": {"_count": 1, "life": {"_count": 1, "undoubtedly": {"_count": 1}}}, "magazines": {"_count": 3, "under": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}}, "cuttings": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "old": {"_count": 1}}, "all": {"_count": 1, "stuck": {"_count": 1}}}, "\u2018Harry": {"_count": 5, "Potters": {"_count": 1, "Secret": {"_count": 1}}, "Potter": {"_count": 3, "can": {"_count": 1}, "Names": {"_count": 1}, "knows": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}}, "ailing": {"_count": 1, "you": {"_count": 1, "now": {"_count": 1}}}, "wellwishers": {"_count": 1, "must": {"_count": 1, "hope": {"_count": 1}}}, "unload": {"_count": 1, "his": {"_count": 1, "cauldron": {"_count": 1}}}, "Determined": {"_count": 3, "not": {"_count": 2, "to": {"_count": 2}}, "as": {"_count": 1, "he": {"_count": 1}}}, "mashing": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "laboring": {"_count": 2, "under": {"_count": 2, "the": {"_count": 2}}}, "delusion": {"_count": 2, "that": {"_count": 2, "the": {"_count": 1}, "I": {"_count": 1}}}, "pintsized": {"_count": 1, "celebrity": {"_count": 1, "or": {"_count": 1}}}, "feigned": {"_count": 1, "deafness": {"_count": 1, "": {"_count": 1}}}, "deafness": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "whenever": {"_count": 1, "Harry": {"_count": 1}}}, "Boomslang": {"_count": 1, "skin": {"_count": 1, "": {"_count": 1}}}, "Gillyweed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tolerate": {"_count": 3, "your": {"_count": 1, "behavior": {"_count": 1}}, "another": {"_count": 1, "blunder": {"_count": 1}}, "him": {"_count": 1, "as": {"_count": 1}}}, "honesty": {"_count": 4, "this": {"_count": 1, "time": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 1, "the": {"_count": 1}}}, "Veritaserum": {"_count": 14, "a": {"_count": 2, "Truth": {"_count": 1}, "colorless": {"_count": 1}}, "with": {"_count": 2, "which": {"_count": 1}, "him": {"_count": 1}}, "he": {"_count": 1, "told": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "and": {"_count": 1, "answer": {"_count": 1}}, "as": {"_count": 1, "quick": {"_count": 1}}, "when": {"_count": 1, "she": {"_count": 1}}, "or": {"_count": 1, "Legilimency": {"_count": 1}}, "wont": {"_count": 1, "do": {"_count": 1}}, "for": {"_count": 1, "she": {"_count": 1}}}, "Truth": {"_count": 3, "Potion": {"_count": 3, "so": {"_count": 1}, "at": {"_count": 1}, "you": {"_count": 1}}}, "innermost": {"_count": 1, "secrets": {"_count": 1, "for": {"_count": 1}}}, "guidelines": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 1, "help": {"_count": 1}}}, "slicing": {"_count": 1, "them": {"_count": 1, "again": {"_count": 1}}}, "repressed": {"_count": 4, "a": {"_count": 4, "shudder": {"_count": 3}, "snort": {"_count": 1}}}, "ventriloquist": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "armadillo": {"_count": 3, "bile": {"_count": 3, "Harry": {"_count": 1}, "with": {"_count": 1}, "Professor": {"_count": 1}}}, "bile": {"_count": 4, "Harry": {"_count": 1, "sneaked": {"_count": 1}}, "with": {"_count": 1, "two": {"_count": 1}}, "Professor": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "preventing": {"_count": 6, "Snape": {"_count": 1, "from": {"_count": 1}}, "the": {"_count": 2, "escape": {"_count": 1}, "death": {"_count": 1}}, "him": {"_count": 1, "thinking": {"_count": 1}}, "his": {"_count": 1, "parents": {"_count": 1}}, "her": {"_count": 1, "from": {"_count": 1}}}, "Keen": {"_count": 4, "to": {"_count": 2, "hear": {"_count": 1}, "put": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 1, "them": {"_count": 1}}}, "milder": {"_count": 1, "than": {"_count": 1, "it": {"_count": 1}}}, "loaf": {"_count": 6, "of": {"_count": 5, "bread": {"_count": 5}}, "sliced": {"_count": 1, "itself": {"_count": 1}}}, "wagged": {"_count": 2, "its": {"_count": 1, "tail": {"_count": 1}}, "his": {"_count": 1, "tail": {"_count": 1}}}, "stony": {"_count": 5, "path": {"_count": 1, "following": {"_count": 1}}, "silence": {"_count": 1, "since": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "above": {"_count": 1, "her": {"_count": 1}}}, "wagging": {"_count": 6, "tail": {"_count": 1, "sweating": {"_count": 1}}, "his": {"_count": 2, "tail": {"_count": 1}, "finger": {"_count": 1}}, "its": {"_count": 1, "tail": {"_count": 1}}, "a": {"_count": 2, "stubby": {"_count": 1}, "reproving": {"_count": 1}}}, "fissure": {"_count": 3, "in": {"_count": 2, "the": {"_count": 2}}, "soon": {"_count": 1, "opened": {"_count": 1}}}, "cave": {"_count": 42, "": {"_count": 5, ".": {"_count": 5}}, "floor": {"_count": 3, "": {"_count": 1}, "and": {"_count": 2}}, "in": {"_count": 3, "silence": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}}, "and": {"_count": 5, "Buckbeak": {"_count": 1}, "they": {"_count": 1}, "living": {"_count": 1}, "caressed": {"_count": 1}, "Harry": {"_count": 1}}, "back": {"_count": 1, "again": {"_count": 1}}, "wall": {"_count": 4, "then": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}, "ter": {"_count": 1, "spend": {"_count": 1}}, "lookin": {"_count": 1, "down": {"_count": 1}}, "an": {"_count": 1, "watchin": {"_count": 1}}, "wed": {"_count": 1, "bin": {"_count": 1}}, "like": {"_count": 1, "Sirius": {"_count": 1}}, "with": {"_count": 1, "Tom": {"_count": 1}}, "were": {"_count": 1, "most": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "touching": {"_count": 1, "as": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 2}, "Hagrid": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "cave": {"_count": 1}}, "where": {"_count": 1, "Kreacher": {"_count": 1}}, "or": {"_count": 1, "penetrate": {"_count": 1}}, "up": {"_count": 1, "there": {"_count": 1}}}, "Tethered": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "regarding": {"_count": 7, "them": {"_count": 1, "imperiously": {"_count": 1}}, "him": {"_count": 1, "warily": {"_count": 1}}, "Harry": {"_count": 1, "with": {"_count": 1}}, "their": {"_count": 1, "gang": {"_count": 1}}, "Hermione": {"_count": 1, "with": {"_count": 1}}, "Travers": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "vault": {"_count": 1}}}, "Chicken": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "drumstick": {"_count": 1, "sitting": {"_count": 1, "down": {"_count": 1}}}, "Fulfilling": {"_count": 1, "my": {"_count": 1, "duty": {"_count": 1}}}, "doglike": {"_count": 1, "way": {"_count": 1, "": {"_count": 1}}}, "lovable": {"_count": 1, "stray": {"_count": 1, "": {"_count": 1}}}, "fishier": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "devour": {"_count": 1, "the": {"_count": 1, "chicken": {"_count": 1}}}, "Mystery": {"_count": 2, "Illness": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Illness": {"_count": 1, "of": {"_count": 1, "Bartemius": {"_count": 1}}}, "Involved": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Phrases": {"_count": 1, "jumped": {"_count": 1, "out": {"_count": 1}}}, "decline": {"_count": 1, "comment": {"_count": 1, "": {"_count": 1}}}, "refuses": {"_count": 5, "to": {"_count": 5, "confirm": {"_count": 1}, "take": {"_count": 1}, "give": {"_count": 1}, "be": {"_count": 1}, "perform": {"_count": 1}}}, "critical": {"_count": 3, "illness": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "period": {"_count": 1, "": {"_count": 1}}}, "sacking": {"_count": 3, "Winky": {"_count": 1, "isnt": {"_count": 1}}, "before": {"_count": 1, "long": {"_count": 1}}, "of": {"_count": 1, "Professor": {"_count": 1}}}, "ministers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "treats": {"_count": 2, "his": {"_count": 1, "inferiors": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "inferiors": {"_count": 1, "not": {"_count": 1, "his": {"_count": 1}}}, "equals": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "two": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "they": {"_count": 1, "departed": {"_count": 1}}}, "unshaven": {"_count": 4, "face": {"_count": 1, "evidently": {"_count": 1}}, "and": {"_count": 2, "gray": {"_count": 1}, "still": {"_count": 1}}, "man": {"_count": 1, "in": {"_count": 1}}}, "outspoken": {"_count": 3, "against": {"_count": 1, "the": {"_count": 1}}, "supporters": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "The": {"_count": 1}}}, "irritation": {"_count": 5, "in": {"_count": 1, "his": {"_count": 1}}, "was": {"_count": 1, "only": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "difficulty": {"_count": 1}}}, "disappearances": {"_count": 8, "more": {"_count": 1, "torturing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "seem": {"_count": 1, "to": {"_count": 1}}, "odd": {"_count": 1, "accidents": {"_count": 1}}, "and": {"_count": 1, "reappearances": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "his": {"_count": 1, "attack": {"_count": 1}}}, "Terror": {"_count": 5, "everywhere": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "rising": {"_count": 1}}, "of": {"_count": 1, "being": {"_count": 1}}, "tore": {"_count": 1, "at": {"_count": 1}}, "washed": {"_count": 1, "over": {"_count": 1}}}, "principles": {"_count": 3, "mightve": {"_count": 1, "been": {"_count": 1}}, "underlying": {"_count": 1, "defensive": {"_count": 1}}, "involved": {"_count": 1, "this": {"_count": 1}}}, "violence": {"_count": 10, "with": {"_count": 1, "violence": {"_count": 1}}, "and": {"_count": 1, "authorized": {"_count": 1}}, "you": {"_count": 1, "presumably": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "that": {"_count": 3, "they": {"_count": 1}, "flourished": {"_count": 1}, "tore": {"_count": 1}}, "from": {"_count": 1, "any": {"_count": 1}}}, "authorized": {"_count": 1, "the": {"_count": 1, "use": {"_count": 1}}}, "ruthless": {"_count": 1, "and": {"_count": 1, "cruel": {"_count": 1}}}, "Ought": {"_count": 3, "to": {"_count": 1, "have": {"_count": 1}}, "I": {"_count": 1, "to": {"_count": 1}}, "he": {"_count": 1, "to": {"_count": 1}}}, "dedicated": {"_count": 4, "his": {"_count": 1, "whole": {"_count": 1}}, "solely": {"_count": 1, "to": {"_count": 1}}, "friends": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "dismiss": {"_count": 2, "a": {"_count": 1, "devoted": {"_count": 1}}, "my": {"_count": 1, "teachers": {"_count": 1}}}, "accounts": {"_count": 6, "it": {"_count": 1, "wasnt": {"_count": 1}}, "he": {"_count": 1, "is": {"_count": 1}}, "just": {"_count": 1, "because": {"_count": 1}}, "unusually": {"_count": 1, "gifted": {"_count": 1}}, "no": {"_count": 1, "doubt": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}}, "shutters": {"_count": 1, "had": {"_count": 1, "closed": {"_count": 1}}}, "Grief": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "seemed": {"_count": 1}}}, "Wasted": {"_count": 1, "away": {"_count": 1, "just": {"_count": 1}}}, "dishonored": {"_count": 2, "and": {"_count": 1, "so": {"_count": 1}}, "us": {"_count": 1, "": {"_count": 1}}}, "astray": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "Dumbledore": {"_count": 1, "could": {"_count": 1}}}, "disobedient": {"_count": 1, "houseelf": {"_count": 1, "back": {"_count": 1}}}, "overreacted": {"_count": 1, "to": {"_count": 1, "Winky": {"_count": 1}}}, "grace": {"_count": 6, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "look": {"_count": 1}}, "even": {"_count": 1, "though": {"_count": 1}}, "that": {"_count": 1, "Ron": {"_count": 1}}, "his": {"_count": 1, "hands": {"_count": 1}}}, "mania": {"_count": 3, "with": {"_count": 1, "him": {"_count": 1}}, "convinced": {"_count": 1, "that": {"_count": 1}}, "for": {"_count": 1, "upholding": {"_count": 1}}}, "ticking": {"_count": 7, "off": {"_count": 1, "names": {"_count": 1}}, "noise": {"_count": 1, "came": {"_count": 1}}, "on": {"_count": 2, "said": {"_count": 1}, "the": {"_count": 1}}, "filled": {"_count": 1, "the": {"_count": 1}}, "irregularly": {"_count": 1, "alongside": {"_count": 1}}, "away": {"_count": 1, "the": {"_count": 1}}}, "Rosier": {"_count": 6, "and": {"_count": 1, "Wilkes": {"_count": 1}}, "said": {"_count": 1, "Karkaroff": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "is": {"_count": 1, "dead": {"_count": 1}}, "deserved": {"_count": 1, "": {"_count": 1}}, "Mulciber": {"_count": 1, "Dolohov": {"_count": 1}}}, "Wilkes": {"_count": 1, "they": {"_count": 1, "were": {"_count": 1}}}, "Lestranges": {"_count": 18, "theyre": {"_count": 1, "a": {"_count": 1}}, "should": {"_count": 1, "stand": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "sentenced": {"_count": 1, "to": {"_count": 1}}, "face": {"_count": 2, "to": {"_count": 1}, "making": {"_count": 1}}, "wand": {"_count": 1, "but": {"_count": 1}}, "triumphant": {"_count": 1, "scream": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "vault": {"_count": 6, "": {"_count": 5}, "only": {"_count": 1}}, "have": {"_count": 1, "got": {"_count": 1}}, "vvault": {"_count": 1, "": {"_count": 1}}, "smile": {"_count": 1, "faltered": {"_count": 1}}}, "Avery": {"_count": 14, "from": {"_count": 1, "what": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}, "Nott": {"_count": 1, "Crabbe": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "isnt": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "being": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "through": {"_count": 1, "here": {"_count": 1}}, "Yaxley": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Mulciber": {"_count": 1}}}, "accused": {"_count": 15, "of": {"_count": 6, "being": {"_count": 2}, "capturing": {"_count": 1}, "any": {"_count": 1}, "all": {"_count": 1}, "that": {"_count": 1}}, "bellowed": {"_count": 1, "Mr": {"_count": 1}}, "being": {"_count": 1, "present": {"_count": 1}}, "are": {"_count": 1, "as": {"_count": 1}}, "has": {"_count": 1, "the": {"_count": 1}}, "you": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "not": {"_count": 1}}, "me": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "feel": {"_count": 1}}, "Muggleborns": {"_count": 1, "he": {"_count": 1}}}, "quoted": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "calmly": {"_count": 1, "": {"_count": 1}}}, "Blustering": {"_count": 1, "on": {"_count": 1, "about": {"_count": 1}}}, "liability": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "Snuffles": {"_count": 11, "okay": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 2, "Ron": {"_count": 1}, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "is": {"_count": 1, "right": {"_count": 1}}, "obviously": {"_count": 1, "so": {"_count": 1}}, "Hope": {"_count": 1, "youre": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "and": {"_count": 1, "this": {"_count": 1}}}, "scrounge": {"_count": 1, "another": {"_count": 1, "paper": {"_count": 1}}}, "mountainside": {"_count": 4, "with": {"_count": 1, "him": {"_count": 1}}, "cave": {"_count": 1, "as": {"_count": 1}}, "But": {"_count": 1, "didnt": {"_count": 1}}, "where": {"_count": 1, "sleet": {"_count": 1}}}, "boulderstrewn": {"_count": 1, "ground": {"_count": 1, "and": {"_count": 1}}}, "wafted": {"_count": 4, "toward": {"_count": 1, "them": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "them": {"_count": 1}}, "tantalizingly": {"_count": 1, "in": {"_count": 1}}}, "MADNESS": {"_count": 1, "OF": {"_count": 1, "MR": {"_count": 1}}}, "unwashed": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "clothes": {"_count": 1, "and": {"_count": 1}}}, "hiccup": {"_count": 5, "": {"_count": 4, ".": {"_count": 4}}, "was": {"_count": 1, "barely": {"_count": 1}}}, "pining": {"_count": 1, "Harry": {"_count": 1, "Potter": {"_count": 1}}}, "blurrily": {"_count": 1, "at": {"_count": 1, "Harry": {"_count": 1}}}, "housework": {"_count": 2, "you": {"_count": 1, "know": {"_count": 1}}, "for": {"_count": 1, "Mr": {"_count": 1}}}, "slopping": {"_count": 7, "butterbeer": {"_count": 2, "down": {"_count": 2}}, "around": {"_count": 1, "and": {"_count": 1}}, "wildly": {"_count": 1, "over": {"_count": 1}}, "wine": {"_count": 1, "down": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "some": {"_count": 1, "of": {"_count": 1}}}, "mutinously": {"_count": 3, "swaying": {"_count": 1, "very": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "behind": {"_count": 1, "his": {"_count": 1}}}, "pry": {"_count": 2, "and": {"_count": 1, "poke": {"_count": 1}}, "him": {"_count": 1, "from": {"_count": 1}}}, "Begging": {"_count": 2, "your": {"_count": 2, "pardon": {"_count": 2}}}, "smalls": {"_count": 1, "of": {"_count": 1, "their": {"_count": 1}}}, "scoffed": {"_count": 4, "Hermione": {"_count": 1, "": {"_count": 1}}, "Ginny": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}, "Ted": {"_count": 1, "": {"_count": 1}}}, "sniping": {"_count": 2, "at": {"_count": 1, "each": {"_count": 1}}, "said": {"_count": 1, "Doge": {"_count": 1}}}, "enlisted": {"_count": 1, "the": {"_count": 1, "help": {"_count": 1}}}, "spade": {"_count": 2, "but": {"_count": 1, "did": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "prolong": {"_count": 1, "their": {"_count": 1, "talk": {"_count": 1}}}, "Unwilling": {"_count": 1, "to": {"_count": 1, "go": {"_count": 1}}}, "moods": {"_count": 2, "had": {"_count": 1, "burnt": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "substandard": {"_count": 3, "food": {"_count": 1, "up": {"_count": 1}}, "teaching": {"_count": 1, "in": {"_count": 1}}, "teacher": {"_count": 1, "that": {"_count": 1}}}, "wontve": {"_count": 1, "had": {"_count": 1, "time": {"_count": 1}}}, "subscription": {"_count": 2, "to": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "subscriptions": {"_count": 1, "did": {"_count": 1, "you": {"_count": 1}}}, "handwritten": {"_count": 5, "but": {"_count": 1, "composed": {"_count": 1}}, "HealerinCharge": {"_count": 1, "Hippocrates": {"_count": 1}}, "incantation": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "and": {"_count": 1, "crumpled": {"_count": 1}}}, "WickEd": {"_count": 1, "giRL": {"_count": 1, "": {"_count": 1}}}, "giRL": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "HarRy": {"_count": 1, "PotTER": {"_count": 1, "desErves": {"_count": 1}}}, "PotTER": {"_count": 1, "desErves": {"_count": 1, "BeTteR": {"_count": 1}}}, "desErves": {"_count": 1, "BeTteR": {"_count": 1, "": {"_count": 1}}}, "BeTteR": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wherE": {"_count": 1, "you": {"_count": 1, "cAMe": {"_count": 1}}}, "cAMe": {"_count": 1, "from": {"_count": 1, "mUGgle": {"_count": 1}}}, "mUGgle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018You": {"_count": 1, "deserve": {"_count": 1, "to": {"_count": 1}}}, "smelling": {"_count": 3, "strongly": {"_count": 2, "of": {"_count": 2}}, "potion": {"_count": 1, "within": {"_count": 1}}}, "Undiluted": {"_count": 1, "bubotuber": {"_count": 1, "pus": {"_count": 1}}}, "sores": {"_count": 2, "that": {"_count": 1, "it": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "hardship": {"_count": 1, "and": {"_count": 1, "I": {"_count": 1}}}, "snouts": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "spades": {"_count": 6, "and": {"_count": 1, "they": {"_count": 1}}, "conflict": {"_count": 1, "she": {"_count": 1}}, "an": {"_count": 1, "ill": {"_count": 1}}, "violence": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "dark": {"_count": 1}}, "of": {"_count": 1, "their": {"_count": 1}}}, "Thesere": {"_count": 1, "nifflers": {"_count": 1, "said": {"_count": 1}}}, "nifflers": {"_count": 12, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "had": {"_count": 1, "suddenly": {"_count": 1}}, "dived": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}, "arent": {"_count": 1, "they": {"_count": 1}}, "I": {"_count": 2, "thought": {"_count": 1}, "was": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 2}}, "through": {"_count": 1, "it": {"_count": 1}}}, "detectors": {"_count": 2, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "put": {"_count": 1, "them": {"_count": 1}}}, "niffler": {"_count": 13, "that": {"_count": 1, "digs": {"_count": 1}}, "an": {"_count": 1, "get": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "here": {"_count": 1, "": {"_count": 1}}, "dived": {"_count": 1, "back": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "crates": {"_count": 1, "over": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "into": {"_count": 1, "Umbridge": {"_count": 1}}, "in": {"_count": 2, "her": {"_count": 1}, "Umbridges": {"_count": 1}}}, "digs": {"_count": 1, "up": {"_count": 1, "most": {"_count": 1}}}, "valuables": {"_count": 2, "an": {"_count": 1, "choose": {"_count": 1}}, "you": {"_count": 1, "could": {"_count": 1}}}, "cuddly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "yes": {"_count": 1, "conceded": {"_count": 1}}}, "missin": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "efficient": {"_count": 3, "it": {"_count": 1, "had": {"_count": 1}}, "than": {"_count": 1, "that": {"_count": 1}}, "gets": {"_count": 1, "through": {"_count": 1}}}, "yare": {"_count": 2, "Hermione": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}}, "Count": {"_count": 1, "yer": {"_count": 1, "coins": {"_count": 1}}}, "Vanishes": {"_count": 1, "after": {"_count": 1, "a": {"_count": 1}}}, "\u2018Yehre": {"_count": 1, "a": {"_count": 1, "monster": {"_count": 1}}}, "\u2018Yer": {"_count": 1, "mother": {"_count": 1, "killed": {"_count": 1}}}, "Chuck": {"_count": 3, "em": {"_count": 1, "straigh": {"_count": 1}}, "us": {"_count": 2, "another": {"_count": 1}, "the": {"_count": 1}}}, "straigh": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "Wrong": {"_count": 2, "flavor": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "pocketful": {"_count": 1, "of": {"_count": 1, "Galleons": {"_count": 1}}}, "vanishes": {"_count": 2, "Ron": {"_count": 1, "muttered": {"_count": 1}}, "from": {"_count": 1, "view": {"_count": 1}}}, "KrumHermione": {"_count": 1, "triangle": {"_count": 1, "now": {"_count": 1}}}, "triangle": {"_count": 3, "now": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "make": {"_count": 1}}, "and": {"_count": 1, "circle": {"_count": 1}}}, "rigorous": {"_count": 1, "test": {"_count": 1, "of": {"_count": 1}}}, "hexdeflection": {"_count": 1, "that": {"_count": 1, "many": {"_count": 1}}}, "Ears": {"_count": 21, "he": {"_count": 2, "had": {"_count": 1}, "added": {"_count": 1}}, "see": {"_count": 1, "said": {"_count": 1}}, "yeah": {"_count": 1, "": {"_count": 1}}, "shes": {"_count": 1, "gone": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "had": {"_count": 1, "survived": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "quite": {"_count": 1, "unnecessary": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "before": {"_count": 1, "Herbology": {"_count": 1}}, "from": {"_count": 1, "each": {"_count": 1}}, "Yeah": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 1, "under": {"_count": 1}}, "and": {"_count": 1, "threw": {"_count": 1}}, "as": {"_count": 1, "tightly": {"_count": 1}}}, "bugged": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Bugged": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "fleas": {"_count": 1, "on": {"_count": 1, "her": {"_count": 1}}}, "microphones": {"_count": 1, "and": {"_count": 1, "recording": {"_count": 1}}}, "recording": {"_count": 2, "equipment": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "interview": {"_count": 1}}}, "electricity": {"_count": 2, "computers": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "computers": {"_count": 1, "and": {"_count": 1, "radar": {"_count": 1}}}, "radar": {"_count": 1, "and": {"_count": 1, "all": {"_count": 1}}}, "eavesdrop": {"_count": 5, "she": {"_count": 1, "must": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "vendetta": {"_count": 1, "against": {"_count": 1, "Rita": {"_count": 1}}}, "vengeance": {"_count": 4, "against": {"_count": 1, "Rita": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "for": {"_count": 1, "Luciuss": {"_count": 1}}}, "marveled": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "Gets": {"_count": 3, "it": {"_count": 1, "for": {"_count": 1}}, "him": {"_count": 1, "in": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}}, "welldeserved": {"_count": 2, "break": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "superiors": {"_count": 2, "handwriting": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "no": {"_count": 1}}}, "Growing": {"_count": 1, "nicely": {"_count": 1, "arent": {"_count": 1}}}, "lessthanhappy": {"_count": 1, "expressions": {"_count": 1, "on": {"_count": 1}}}, "Maze": {"_count": 1, "grunted": {"_count": 1, "Krum": {"_count": 1}}}, "straightforward": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "Dumbledore": {"_count": 1, "went": {"_count": 1}}, "really": {"_count": 1, "said": {"_count": 1}}}, "obstacles": {"_count": 8, "said": {"_count": 1, "Bagman": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "guarding": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "unnerving": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "stand": {"_count": 1}}, "ahead": {"_count": 1, "that": {"_count": 1}}, "they": {"_count": 1, "tried": {"_count": 1}}}, "vord": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "Vill": {"_count": 1, "you": {"_count": 1, "valk": {"_count": 1}}}, "valk": {"_count": 1, "vith": {"_count": 1, "me": {"_count": 1}}}, "vith": {"_count": 2, "me": {"_count": 1, "": {"_count": 1}}, "your": {"_count": 1, "Ministry": {"_count": 1}}}, "vant": {"_count": 2, "to": {"_count": 2, "be": {"_count": 1}, "know": {"_count": 1}}}, "vot": {"_count": 2, "there": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Hermyownninny": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "talks": {"_count": 1, "about": {"_count": 1}}}, "anew": {"_count": 1, "by": {"_count": 1, "how": {"_count": 1}}}, "elaborated": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "farfetched": {"_count": 1}}}, "eighteenyearold": {"_count": 1, "Krum": {"_count": 1, "thought": {"_count": 1}}}, "veil": {"_count": 29, "": {"_count": 13, ".": {"_count": 12}, "?": {"_count": 1}}, "that": {"_count": 2, "fell": {"_count": 2}}, "to": {"_count": 1, "protrude": {"_count": 1}}, "which": {"_count": 2, "despite": {"_count": 1}, "fluttered": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "swayed": {"_count": 1, "gently": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "intrigued": {"_count": 1, "him": {"_count": 1}}, "too": {"_count": 2, "": {"_count": 2}}, "hanging": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 1, "would": {"_count": 1}}, "didnt": {"_count": 1, "you": {"_count": 1}}, "Dumbledore": {"_count": 1, "suspended": {"_count": 1}}, "and": {"_count": 1, "suddenly": {"_count": 1}}}, "votching": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "instinctively": {"_count": 18, "grabbed": {"_count": 1, "Krums": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 1, "back": {"_count": 1}}, "together": {"_count": 1, "peering": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "yanked": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "thought": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "the": {"_count": 1, "only": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "dived": {"_count": 1, "for": {"_count": 1}}, "As": {"_count": 1, "Kreacher": {"_count": 1}}, "without": {"_count": 1, "any": {"_count": 1}}, "that": {"_count": 1, "she": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "toward": {"_count": 1, "the": {"_count": 1}}}, "Vot": {"_count": 4, "is": {"_count": 2, "it": {"_count": 1}, "wrong": {"_count": 1}}, "about": {"_count": 1, "him": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "tramp": {"_count": 2, "he": {"_count": 1, "had": {"_count": 1}}, "called": {"_count": 1, "Gaunt": {"_count": 1}}}, "rant": {"_count": 3, "about": {"_count": 3, "what": {"_count": 1}, "owls": {"_count": 1}, "Marietta": {"_count": 1}}}, "beggars": {"_count": 2, "and": {"_count": 1, "vagrants": {"_count": 1}}, "glimpsed": {"_count": 1, "Hermione": {"_count": 1}}}, "vagrants": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Vosnt": {"_count": 1, "he": {"_count": 1, "a": {"_count": 1}}}, "confirming": {"_count": 2, "the": {"_count": 1, "number": {"_count": 1}}, "his": {"_count": 1, "story": {"_count": 1}}}, "spittle": {"_count": 1, "was": {"_count": 1, "sliding": {"_count": 1}}}, "loosen": {"_count": 4, "Crouchs": {"_count": 1, "grip": {"_count": 1}}, "your": {"_count": 2, "hold": {"_count": 1}, "tongue": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}}, "Warn": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fluently": {"_count": 2, "to": {"_count": 1, "a": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}}, "memo": {"_count": 4, "from": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}, "saw": {"_count": 1, "how": {"_count": 1}}}, "Andorran": {"_count": 1, "Minister": {"_count": 1, "of": {"_count": 1}}}, "trigger": {"_count": 3, "another": {"_count": 1, "abrupt": {"_count": 1}}, "a": {"_count": 1, "search": {"_count": 1}}, "the": {"_count": 1, "crowd": {"_count": 1}}}, "squatted": {"_count": 1, "down": {"_count": 1, "next": {"_count": 1}}}, "vont": {"_count": 1, "you": {"_count": 1, "": {"_count": 1}}}, "Sher": {"_count": 1, "sherbet": {"_count": 1, "lemon": {"_count": 1}}}, "standstill": {"_count": 2, "in": {"_count": 1, "front": {"_count": 1}}, "however": {"_count": 1, "he": {"_count": 1}}}, "sidestepping": {"_count": 1, "Snape": {"_count": 1, "before": {"_count": 1}}}, "Lead": {"_count": 5, "the": {"_count": 3, "way": {"_count": 3}}, "me": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}}, "quickened": {"_count": 4, "his": {"_count": 1, "pace": {"_count": 1}}, "breath": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "pain": {"_count": 1}}}, "Renneruate": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "sir": {"_count": 1, "please": {"_count": 1}}}, "vare": {"_count": 1, "Potter": {"_count": 1, "had": {"_count": 1}}}, "Wouldve": {"_count": 2, "been": {"_count": 1, "here": {"_count": 1}}, "only": {"_count": 1, "taken": {"_count": 1}}}, "votever": {"_count": 1, "his": {"_count": 1, "name": {"_count": 1}}}, "Treachery": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "lured": {"_count": 6, "me": {"_count": 1, "here": {"_count": 1}}, "them": {"_count": 1, "out": {"_count": 1}}, "Crookshanks": {"_count": 1, "out": {"_count": 1}}, "him": {"_count": 1, "to": {"_count": 1}}, "Sirius": {"_count": 1, "from": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}}, "pretenses": {"_count": 2, "Dumbledore": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "doubledealing": {"_count": 1, "and": {"_count": 1, "corruption": {"_count": 1}}}, "corruption": {"_count": 2, "in": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "links": {"_count": 6, "of": {"_count": 2, "rebuilding": {"_count": 1}, "friendship": {"_count": 1}}, "you": {"_count": 1, "understand": {"_count": 1}}, "to": {"_count": 2, "subversive": {"_count": 1}, "life": {"_count": 1}}, "Dumbledore": {"_count": 1, "Grindelwald": {"_count": 1}}}, "rebuilding": {"_count": 1, "old": {"_count": 1, "ties": {"_count": 1}}}, "Apologize": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "to": {"_count": 1, "Evans": {"_count": 1}}}, "wanderin": {"_count": 1, "off": {"_count": 1, "with": {"_count": 1}}}, "Coulda": {"_count": 1, "jinxed": {"_count": 1, "yeh": {"_count": 1}}}, "Magine": {"_count": 1, "lettin": {"_count": 1, "him": {"_count": 1}}}, "Tryin": {"_count": 1, "ter": {"_count": 1, "get": {"_count": 1}}}, "z": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "DREAM": {"_count": 1, "It": {"_count": 1, "comes": {"_count": 1}}}, "Disapparating": {"_count": 9, "or": {"_count": 1, "anything": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "protective": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "together": {"_count": 1, "under": {"_count": 1}}, "while": {"_count": 1, "underneath": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "evaporated": {"_count": 7, "did": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "quickly": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "around": {"_count": 1, "him": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}}, "raving": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "lunatic": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "about": {"_count": 1, "Harrys": {"_count": 1}}, "as": {"_count": 1, "usual": {"_count": 1}}}, "sanest": {"_count": 1, "when": {"_count": 1, "he": {"_count": 1}}}, "stringing": {"_count": 1, "two": {"_count": 1, "words": {"_count": 1}}}, "swoop": {"_count": 5, "in": {"_count": 1, "through": {"_count": 1}}, "of": {"_count": 1, "anger": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "upon": {"_count": 1}}}, "boundaries": {"_count": 9, "doesnt": {"_count": 1, "Shh": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "of": {"_count": 3, "the": {"_count": 2}, "magic": {"_count": 1}}, "they": {"_count": 1, "wont": {"_count": 1}}, "protect": {"_count": 1, "us": {"_count": 1}}}, "payoff": {"_count": 1, "will": {"_count": 1, "you": {"_count": 1}}}, "blackmailing": {"_count": 3, "": {"_count": 2, "?": {"_count": 2}}, "someone": {"_count": 1, "said": {"_count": 1}}}, "attaching": {"_count": 1, "it": {"_count": 1, "to": {"_count": 1}}}, "Carry": {"_count": 5, "on": {"_count": 5, "like": {"_count": 1}, "": {"_count": 3}, "everyone": {"_count": 1}}}, "skeptical": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "noise": {"_count": 1, "and": {"_count": 1}}, "expression": {"_count": 1, "": {"_count": 1}}, "looks": {"_count": 1, "behind": {"_count": 1}}}, "discarded": {"_count": 5, "his": {"_count": 1, "own": {"_count": 1}}, "pile": {"_count": 1, "with": {"_count": 1}}, "Chocolate": {"_count": 1, "Frog": {"_count": 1}}, "even": {"_count": 1, "for": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}}, "preamble": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "told": {"_count": 1}}, "why": {"_count": 1, "did": {"_count": 1}}}, "Summoned": {"_count": 1, "it": {"_count": 1, "from": {"_count": 1}}}, "investigators": {"_count": 1, "but": {"_count": 1, "theres": {"_count": 1}}}, "stubbly": {"_count": 1, "chin": {"_count": 1, "": {"_count": 1}}}, "Constant": {"_count": 1, "vigilance": {"_count": 1, "": {"_count": 1}}}, "sail": {"_count": 3, "of": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "it": {"_count": 1}}, "beneath": {"_count": 1, "them": {"_count": 1}}}, "counseled": {"_count": 1, "Moody": {"_count": 1, "his": {"_count": 1}}}, "amiss": {"_count": 2, "either": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "but": {"_count": 1}}}, "outof": {"_count": 2, "bounds": {"_count": 1, "again": {"_count": 1}}, "date": {"_count": 1, "textbooks": {"_count": 1}}}, "reawoken": {"_count": 1, "by": {"_count": 1, "Harry": {"_count": 1}}}, "Stun": {"_count": 14, "her": {"_count": 1, "for": {"_count": 1}}, "him": {"_count": 5, "he": {"_count": 1}, "": {"_count": 2}, "too": {"_count": 1}, "and": {"_count": 1}}, "Padma": {"_count": 1, "Patil": {"_count": 1}}, "anything": {"_count": 1, "before": {"_count": 1}}, "them": {"_count": 1, "Filch": {"_count": 1}}, "a": {"_count": 1, "giant": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "Even": {"_count": 1, "attempting": {"_count": 1}}, "Amycus": {"_count": 1, "before": {"_count": 1}}}, "rearranging": {"_count": 1, "the": {"_count": 1, "pile": {"_count": 1}}}, "Impediment": {"_count": 11, "Curse": {"_count": 5, "": {"_count": 2}, "on": {"_count": 1}, "a": {"_count": 1}, "was": {"_count": 1}}, "Jinx": {"_count": 6, "after": {"_count": 1}, "": {"_count": 1}, "just": {"_count": 1}, "they": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}}}, "enameled": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "swelteringly": {"_count": 1, "hot": {"_count": 1, "": {"_count": 1}}}, "disentangling": {"_count": 2, "her": {"_count": 1, "shawl": {"_count": 1}}, "himself": {"_count": 1, "from": {"_count": 1}}}, "enlarged": {"_count": 2, "eyes": {"_count": 1, "we": {"_count": 1}}, "and": {"_count": 1, "reinforced": {"_count": 1}}}, "divination": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "desperation": {"_count": 1}}}, "interestingly": {"_count": 4, "at": {"_count": 1, "the": {"_count": 1}}, "windswept": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "ominously": {"_count": 1}}, "shaped": {"_count": 1, "clouds": {"_count": 1}}}, "solar": {"_count": 2, "system": {"_count": 2, "contained": {"_count": 1}, "": {"_count": 1}}}, "system": {"_count": 5, "contained": {"_count": 1, "within": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "isnt": {"_count": 1, "quite": {"_count": 1}}}, "dome": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Neptune": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ivycovered": {"_count": 1, "house": {"_count": 1, "set": {"_count": 1}}}, "hillside": {"_count": 8, "": {"_count": 3, ".": {"_count": 3}}, "Potter": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "which": {"_count": 1}}}, "reminder": {"_count": 7, "why": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 1, "term": {"_count": 1}}, "to": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 3}, "what": {"_count": 1}}}, "ft": {"_count": 1, "was": {"_count": 1, "pointing": {"_count": 1}}}, "Crucio": {"_count": 6, "said": {"_count": 1, "the": {"_count": 1}}, "The": {"_count": 2, "air": {"_count": 1}, "Death": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Crucio": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 1, "cant": {"_count": 1}}}, "premonition": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "headache": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "cure": {"_count": 1, "said": {"_count": 1}}, "would": {"_count": 1, "go": {"_count": 1}}}, "stimulated": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "Sherbet": {"_count": 1, "lemon": {"_count": 1, "": {"_count": 1}}}, "Pear": {"_count": 1, "Drop": {"_count": 1, "": {"_count": 1}}}, "Whizbee": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}, "sang": {"_count": 1, "Umbridge": {"_count": 1}}}, "immovable": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "achieving": {"_count": 3, "nothing": {"_count": 1, "but": {"_count": 1}}, "very": {"_count": 1, "poor": {"_count": 1}}, "such": {"_count": 1, "good": {"_count": 1}}}, "excruciating": {"_count": 3, "pain": {"_count": 3, "in": {"_count": 1}, "": {"_count": 1}, "hit": {"_count": 1}}}, "Sugar": {"_count": 1, "Quill": {"_count": 1, "": {"_count": 1}}}, "linked": {"_count": 9, "with": {"_count": 1, "Barty": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "because": {"_count": 1, "there": {"_count": 1}}, "Narcissa": {"_count": 1, "Black": {"_count": 1}}, "hands": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "most": {"_count": 1}}, "in": {"_count": 2, "Harrys": {"_count": 1}, "front": {"_count": 1}}}, "dancer": {"_count": 1, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "fixation": {"_count": 1, "hes": {"_count": 1, "got": {"_count": 1}}}, "PENSIEVE": {"_count": 1, "The": {"_count": 1, "door": {"_count": 1}}}, "chests": {"_count": 8, "rising": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "a": {"_count": 1, "wand": {"_count": 1}}, "looking": {"_count": 1, "rather": {"_count": 1}}, "then": {"_count": 2, "recognizing": {"_count": 1}, "waists": {"_count": 1}}, "Slytherins": {"_count": 1, "": {"_count": 1}}}, "scarletandgold": {"_count": 3, "plumage": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "bird": {"_count": 1, "perching": {"_count": 1}}}, "benignly": {"_count": 3, "at": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "upon": {"_count": 1, "Harry": {"_count": 1}}}, "founder": {"_count": 2, "of": {"_count": 2, "Harrys": {"_count": 1}, "the": {"_count": 1}}}, "carvings": {"_count": 1, "around": {"_count": 1, "the": {"_count": 1}}}, "runes": {"_count": 10, "and": {"_count": 2, "symbols": {"_count": 2}}, "which": {"_count": 1, "at": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 2, "had": {"_count": 1}, "could": {"_count": 1}}}, "basins": {"_count": 1, "contents": {"_count": 1, "which": {"_count": 1}}}, "whitish": {"_count": 1, "silver": {"_count": 1, "and": {"_count": 1}}}, "swirl": {"_count": 9, "very": {"_count": 2, "fast": {"_count": 2}}, "around": {"_count": 1, "the": {"_count": 1}}, "so": {"_count": 1, "fast": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "colors": {"_count": 1}, "robes": {"_count": 1}}, "and": {"_count": 1, "drift": {"_count": 1}}}, "Lowering": {"_count": 1, "his": {"_count": 1, "face": {"_count": 1}}}, "Chains": {"_count": 1, "encircled": {"_count": 1, "the": {"_count": 1}}}, "icycold": {"_count": 1, "and": {"_count": 1, "black": {"_count": 1}}}, "fourteenyear": {"_count": 1, "old": {"_count": 1, "boy": {"_count": 1}}}, "reverberated": {"_count": 4, "around": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}}, "presentday": {"_count": 5, "Dumbledore": {"_count": 2, "": {"_count": 2}}, "Potions": {"_count": 1, "masters": {"_count": 1}}, "office": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "bleak": {"_count": 3, "and": {"_count": 2, "forbidding": {"_count": 1}, "depressing": {"_count": 1}}, "harsh": {"_count": 1, "view": {"_count": 1}}}, "forbidding": {"_count": 7, "air": {"_count": 1, "about": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "them": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}, "gatherings": {"_count": 1, "of": {"_count": 1}}, "Voldemorts": {"_count": 1, "thoughts": {"_count": 1}}}, "serried": {"_count": 1, "rows": {"_count": 1, "of": {"_count": 1}}}, "conclusions": {"_count": 3, "about": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}}, "rottenlooking": {"_count": 1, "hands": {"_count": 1, "": {"_count": 1}}}, "snaked": {"_count": 4, "their": {"_count": 1, "way": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "backward": {"_count": 1, "and": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "mistrust": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "everything": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "friends": {"_count": 1}}}, "dissent": {"_count": 1, "through": {"_count": 1, "his": {"_count": 1}}}, "sardonic": {"_count": 2, "smile": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "ally": {"_count": 4, "itself": {"_count": 1, "with": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "if": {"_count": 1, "that": {"_count": 1}}, "might": {"_count": 1, "turn": {"_count": 1}}}, "renounce": {"_count": 2, "him": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "Antonin": {"_count": 3, "Dolohov": {"_count": 3, "he": {"_count": 1}, "read": {"_count": 1}, "the": {"_count": 1}}}, "Dolohov": {"_count": 31, "he": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 2, "Crouch": {"_count": 1}, "Ron": {"_count": 1}}, "read": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "door": {"_count": 1}, "wizard": {"_count": 1}}, "grinned": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 1, "over": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "freed": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "long": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "were": {"_count": 1, "dueling": {"_count": 1}}, "drew": {"_count": 1, "back": {"_count": 1}}, "had": {"_count": 1, "used": {"_count": 1}}, "awaiting": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "a": {"_count": 1, "man": {"_count": 1}}, "thinking": {"_count": 1, "fast": {"_count": 1}}, "shouted": {"_count": 1, "Aberforth": {"_count": 1}}, "Parvati": {"_count": 1, "with": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "peering": {"_count": 1, "into": {"_count": 1}}, "glancing": {"_count": 1, "over": {"_count": 1}}, "turned": {"_count": 1, "and": {"_count": 1}}, "stepped": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "Yaxley": {"_count": 1}}, "fall": {"_count": 1, "with": {"_count": 1}}}, "nonsupporters": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "worthless": {"_count": 12, "": {"_count": 4, ".": {"_count": 4}}, "bits": {"_count": 1, "of": {"_count": 1}}, "pile": {"_count": 1, "of": {"_count": 1}}, "mind": {"_count": 1, "": {"_count": 1}}, "greatgreatgrandson": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "because": {"_count": 1}}, "though": {"_count": 1, "some": {"_count": 1}}, "and": {"_count": 1, "if": {"_count": 1}}, "nameless": {"_count": 1, "men": {"_count": 1}}}, "Evan": {"_count": 1, "Rosier": {"_count": 1, "": {"_count": 1}}}, "Travers": {"_count": 40, "he": {"_count": 2, "helped": {"_count": 1}, "muttered": {"_count": 1}}, "and": {"_count": 2, "Mulciber": {"_count": 1}, "Bogrod": {"_count": 1}}, "sent": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 1}, ".": {"_count": 6}}, "hissed": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 3, "": {"_count": 1}, "one": {"_count": 1}, "now": {"_count": 1}}, "stopped": {"_count": 1, "in": {"_count": 1}}, "coolly": {"_count": 1, "but": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "coughed": {"_count": 1, "I": {"_count": 1}}, "curiously": {"_count": 1, "are": {"_count": 1}}, "but": {"_count": 1, "you": {"_count": 1}}, "seemed": {"_count": 1, "a": {"_count": 1}}, "extended": {"_count": 1, "two": {"_count": 1}}, "gesturing": {"_count": 1, "Hermione": {"_count": 1}}, "marching": {"_count": 1, "at": {"_count": 1}}, "theatrically": {"_count": 1, "so": {"_count": 1}}, "who": {"_count": 4, "was": {"_count": 3}, "passed": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "headed": {"_count": 1, "toward": {"_count": 1}}, "to": {"_count": 1, "step": {"_count": 1}}, "hanging": {"_count": 1, "back": {"_count": 1}}, "approaching": {"_count": 1, "the": {"_count": 1}}, "looking": {"_count": 1, "down": {"_count": 1}}, "with": {"_count": 1, "confusion": {"_count": 1}}, "come": {"_count": 1, "with": {"_count": 1}}, "nor": {"_count": 1, "Bogrod": {"_count": 1}}}, "Mulciber": {"_count": 7, "he": {"_count": 1, "specialized": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "come": {"_count": 1, "with": {"_count": 1}}, "Dolohov": {"_count": 1, "awaiting": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "What": {"_count": 1, "do": {"_count": 1}}, "and": {"_count": 1, "Avery": {"_count": 1}}}, "specialized": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "Rookwood": {"_count": 21, "who": {"_count": 2, "was": {"_count": 1}, "worked": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "kept": {"_count": 1, "talking": {"_count": 1}}, "get": {"_count": 1, "him": {"_count": 1}}, "said": {"_count": 2, "the": {"_count": 1}, "Harry": {"_count": 1}}, "whispered": {"_count": 1, "Harry": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}, "scurried": {"_count": 1, "backward": {"_count": 1}}, "hes": {"_count": 1, "one": {"_count": 1}}, "used": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "over": {"_count": 1, "there": {"_count": 1}}, "now": {"_count": 1, "maskless": {"_count": 1}}, "Arthur": {"_count": 1, "and": {"_count": 1}}}, "Augustus": {"_count": 4, "Rookwood": {"_count": 2, "of": {"_count": 1}, "said": {"_count": 1}}, "Pye": {"_count": 2, "": {"_count": 1}, "had": {"_count": 1}}}, "network": {"_count": 2, "of": {"_count": 2, "wellplaced": {"_count": 1}, "Wizarding": {"_count": 1}}}, "wellplaced": {"_count": 2, "wizards": {"_count": 1, "both": {"_count": 1}}, "JellyLegs": {"_count": 1, "Jinx": {"_count": 1}}}, "contrasting": {"_count": 1, "strongly": {"_count": 1, "with": {"_count": 1}}}, "disdainfully": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "vouched": {"_count": 2, "for": {"_count": 2, "by": {"_count": 1}, "him": {"_count": 1}}}, "skepticism": {"_count": 4, "behind": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "curiosity": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "review": {"_count": 4, "your": {"_count": 1, "case": {"_count": 1}}, "questions": {"_count": 1, "at": {"_count": 1}}, "Ancient": {"_count": 1, "Runes": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fiercer": {"_count": 3, "gaunter": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "cleverer": {"_count": 1}}, "the": {"_count": 1, "longing": {"_count": 1}}}, "gaunter": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "grayer": {"_count": 1}}}, "Quidditchplaying": {"_count": 1, "fitness": {"_count": 1, "": {"_count": 1}}}, "fitness": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "enabling": {"_count": 1, "you": {"_count": 1}}}, "bind": {"_count": 7, "him": {"_count": 2, "there": {"_count": 1}, "": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "whoever": {"_count": 1, "sat": {"_count": 1}}, "it": {"_count": 1, "tight": {"_count": 1}}, "his": {"_count": 1, "tongue": {"_count": 1}}, "Voldemort": {"_count": 1, "to": {"_count": 1}}}, "Council": {"_count": 2, "of": {"_count": 2, "Magical": {"_count": 2}}}, "relating": {"_count": 3, "to": {"_count": 3, "the": {"_count": 2}, "your": {"_count": 1}}}, "testimony": {"_count": 3, "before": {"_count": 1, "we": {"_count": 1}}, "Cornelius": {"_count": 1, "said": {"_count": 1}}, "from": {"_count": 1, "Willy": {"_count": 1}}}, "indulgently": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "them": {"_count": 1}}}, "severity": {"_count": 2, "and": {"_count": 1, "dislike": {"_count": 1}}, "of": {"_count": 1, "this": {"_count": 1}}}, "truer": {"_count": 1, "word": {"_count": 1, "boy": {"_count": 1}}}, "permanently": {"_count": 7, "affected": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "surprised": {"_count": 1, "look": {"_count": 1}}, "wipe": {"_count": 1, "Harry": {"_count": 1}}, "injured": {"_count": 1, "": {"_count": 1}}, "bloody": {"_count": 1, "look": {"_count": 1}}}, "Ludovic": {"_count": 1, "Bagman": {"_count": 1, "you": {"_count": 1}}}, "imprisonment": {"_count": 8, "in": {"_count": 4, "Azkaban": {"_count": 3}, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "has": {"_count": 1, "upset": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "outcry": {"_count": 2, "from": {"_count": 1, "the": {"_count": 1}}, "A": {"_count": 1, "thestral": {"_count": 1}}}, "titters": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "jury": {"_count": 4, "will": {"_count": 1, "please": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "Mother": {"_count": 1, "": {"_count": 1}}, "shouted": {"_count": 1, "Mr": {"_count": 1}}}, "Turkey": {"_count": 1, "last": {"_count": 1, "Saturday": {"_count": 1}}}, "Despicable": {"_count": 2, "Mr": {"_count": 1, "Crouch": {"_count": 1}}, "cowardice": {"_count": 1, "": {"_count": 1}}}, "joins": {"_count": 2, "us": {"_count": 2, "will": {"_count": 1}, "Harry": {"_count": 1}}}, "wispylooking": {"_count": 1, "witch": {"_count": 1, "in": {"_count": 1}}}, "grayer": {"_count": 3, "than": {"_count": 1, "ever": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "more": {"_count": 1, "lined": {"_count": 1}}}, "flanking": {"_count": 5, "a": {"_count": 1, "group": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "party": {"_count": 1}}, "two": {"_count": 1, "flights": {"_count": 1}}}, "throne": {"_count": 2, "and": {"_count": 1, "a": {"_count": 1}}, "himself": {"_count": 1, "he": {"_count": 1}}}, "strawcolored": {"_count": 4, "hair": {"_count": 4, "all": {"_count": 1}, "": {"_count": 1}, "quite": {"_count": 1}, "and": {"_count": 1}}}, "milkwhite": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "face": {"_count": 1, "of": {"_count": 1}}}, "wispy": {"_count": 8, "little": {"_count": 3, "witch": {"_count": 3}}, "witch": {"_count": 1, "beside": {"_count": 1}}, "and": {"_count": 1, "deadlooking": {"_count": 1}}, "clouds": {"_count": 1, "just": {"_count": 1}}, "hair": {"_count": 1, "and": {"_count": 1}}, "beard": {"_count": 1, "that": {"_count": 1}}}, "heinous": {"_count": 1, "Father": {"_count": 1, "said": {"_count": 1}}}, "court": {"_count": 11, "said": {"_count": 1, "Crouch": {"_count": 1}}, "thing": {"_count": 1, "I": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "Potter": {"_count": 1, "had": {"_count": 1}}, "proceedings": {"_count": 1, "which": {"_count": 1}}, "chambers": {"_count": 1, "": {"_count": 1}}}, "subjecting": {"_count": 2, "him": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "to": {"_count": 1}}}, "exiled": {"_count": 1, "master": {"_count": 1, "HeWhoMustNotBeNamed": {"_count": 1}}}, "crimes": {"_count": 8, "deserve": {"_count": 1, "a": {"_count": 1}}, "for": {"_count": 1, "which": {"_count": 1}}, "because": {"_count": 1, "on": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "before": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "punishments": {"_count": 1}}, "forgotten": {"_count": 1, "how": {"_count": 1}}}, "companions": {"_count": 8, "rose": {"_count": 1, "quietly": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "quickly": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "head": {"_count": 1, "but": {"_count": 1}}, "told": {"_count": 1, "the": {"_count": 1}}, "without": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "they": {"_count": 1}}}, "heavylidded": {"_count": 3, "eyes": {"_count": 2, "looked": {"_count": 1}, "who": {"_count": 1}}, "woman": {"_count": 1, "whose": {"_count": 1}}}, "slowmotion": {"_count": 2, "somersault": {"_count": 1, "suddenly": {"_count": 1}}, "game": {"_count": 1, "of": {"_count": 1}}}, "sunlit": {"_count": 11, "office": {"_count": 1, "": {"_count": 1}}, "day": {"_count": 1, "": {"_count": 1}}, "common": {"_count": 2, "room": {"_count": 2}}, "grounds": {"_count": 2, "": {"_count": 1}, "outside": {"_count": 1}}, "street": {"_count": 1, "with": {"_count": 1}}, "days": {"_count": 1, "they": {"_count": 1}}, "water": {"_count": 1, "inches": {"_count": 1}}, "orchard": {"_count": 1, "and": {"_count": 1}}, "river": {"_count": 1, "glittering": {"_count": 1}}}, "Pensieve": {"_count": 76, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 22, ".": {"_count": 20}, "?": {"_count": 1}, "!": {"_count": 1}}, "and": {"_count": 6, "swirled": {"_count": 1}, "stood": {"_count": 1}, "began": {"_count": 1}, "felt": {"_count": 1}, "moments": {"_count": 1}, "what": {"_count": 1}}, "when": {"_count": 2, "Mr": {"_count": 1}, "his": {"_count": 1}}, "illuminated": {"_count": 1, "Dumbledores": {"_count": 1}}, "swirl": {"_count": 1, "": {"_count": 1}}, "again": {"_count": 1, "which": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 1}, "completely": {"_count": 1}}, "his": {"_count": 2, "face": {"_count": 2}}, "nearly": {"_count": 1, "everything": {"_count": 1}}, "had": {"_count": 1, "watched": {"_count": 1}}, "the": {"_count": 3, "strange": {"_count": 1}, "place": {"_count": 1}, "Sorting": {"_count": 1}}, "Bellatrix": {"_count": 1, "Lestrange": {"_count": 1}}, "where": {"_count": 2, "it": {"_count": 1}, "they": {"_count": 1}}, "carefully": {"_count": 1, "removed": {"_count": 1}}, "with": {"_count": 3, "the": {"_count": 1}, "some": {"_count": 1}, "me": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "sitting": {"_count": 1, "on": {"_count": 1}}, "curiosity": {"_count": 1, "welling": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "on": {"_count": 3, "Snapes": {"_count": 1}, "the": {"_count": 2}}, "he": {"_count": 2, "had": {"_count": 1}, "used": {"_count": 1}}, "but": {"_count": 2, "he": {"_count": 1}, "which": {"_count": 1}}, "Harry": {"_count": 1, "there": {"_count": 1}}, "upon": {"_count": 1, "it": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 2, "sitting": {"_count": 1}, "ready": {"_count": 1}}, "as": {"_count": 2, "Harry": {"_count": 1}, "though": {"_count": 1}}, "silver": {"_count": 1, "as": {"_count": 1}}, "an": {"_count": 1, "extravigorous": {"_count": 1}}, "then": {"_count": 1, "And": {"_count": 1}}, "lay": {"_count": 2, "between": {"_count": 1}, "in": {"_count": 1}}, "saying": {"_count": 1, "as": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "nor": {"_count": 1, "were": {"_count": 1}}}, "siphons": {"_count": 3, "the": {"_count": 1, "excess": {"_count": 1}}, "to": {"_count": 1, "remove": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}}, "pours": {"_count": 1, "them": {"_count": 1, "into": {"_count": 1}}}, "examines": {"_count": 1, "them": {"_count": 1, "at": {"_count": 1}}}, "strand": {"_count": 4, "of": {"_count": 2, "the": {"_count": 1}, "phoenix": {"_count": 1}}, "which": {"_count": 1, "broke": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "prospector": {"_count": 2, "would": {"_count": 1, "pan": {"_count": 1}}, "sifts": {"_count": 1, "for": {"_count": 1}}}, "Undoubtedly": {"_count": 6, "I": {"_count": 2, "did": {"_count": 1}, "shall": {"_count": 1}}, "that": {"_count": 1, "is": {"_count": 1}}, "Voldemort": {"_count": 1, "had": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "Curiosity": {"_count": 1, "is": {"_count": 1, "not": {"_count": 1}}}, "revolve": {"_count": 3, "slowly": {"_count": 1, "with": {"_count": 1}}, "very": {"_count": 1, "fast": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Florence": {"_count": 1, "behind": {"_count": 1, "the": {"_count": 1}}}, "reprimand": {"_count": 1, "was": {"_count": 1, "coming": {"_count": 1}}}, "understandable": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "murmured": {"_count": 1, "Dumbledore": {"_count": 1}}}, "Continue": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "excepting": {"_count": 1, "the": {"_count": 1, "time": {"_count": 1}}}, "correspondent": {"_count": 4, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "was": {"_count": 2, "Sirius": {"_count": 1}, "now": {"_count": 1}}, "Rodent": {"_count": 1, "": {"_count": 1}}}, "probable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "characteristic": {"_count": 3, "piercing": {"_count": 1, "look": {"_count": 1}}, "spirals": {"_count": 1, "said": {"_count": 1}}, "gesture": {"_count": 1, "": {"_count": 1}}}, "wearier": {"_count": 1, "than": {"_count": 1, "ever": {"_count": 1}}}, "ascent": {"_count": 1, "to": {"_count": 1, "power": {"_count": 1}}}, "disagrees": {"_count": 3, "as": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "finality": {"_count": 4, "in": {"_count": 1, "his": {"_count": 1}}, "Mr": {"_count": 1, "Malfoy": {"_count": 1}}, "bordering": {"_count": 1, "on": {"_count": 1}}, "his": {"_count": 1, "body": {"_count": 1}}}, "THIRD": {"_count": 1, "TASK": {"_count": 1, "Dumbledore": {"_count": 1}}}, "siphon": {"_count": 1, "them": {"_count": 1, "off": {"_count": 1}}}, "\u2018Ludo": {"_count": 1, "Bagmans": {"_count": 1, "a": {"_count": 1}}}, "orphan": {"_count": 3, "but": {"_count": 1, "as": {"_count": 1}}, "he": {"_count": 1, "naturally": {"_count": 1}}, "and": {"_count": 1, "head": {"_count": 1}}}, "jeers": {"_count": 7, "of": {"_count": 2, "the": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 3, "intimidation": {"_count": 1}, "applause": {"_count": 1}, "shrieks": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "buzzed": {"_count": 3, "into": {"_count": 1, "the": {"_count": 1}}, "angrily": {"_count": 1, "against": {"_count": 1}}, "as": {"_count": 1, "frantically": {"_count": 1}}}, "available": {"_count": 6, "moment": {"_count": 1, "": {"_count": 1}}, "bore": {"_count": 1, "witness": {"_count": 1}}, "to": {"_count": 1, "them": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "you": {"_count": 1, "decided": {"_count": 1}}, "surface": {"_count": 1, "": {"_count": 1}}}, "Tired": {"_count": 2, "of": {"_count": 1, "walking": {"_count": 1}}, "and": {"_count": 1, "smelling": {"_count": 1}}}, "obstruct": {"_count": 1, "attackers": {"_count": 1, "the": {"_count": 1}}}, "attackers": {"_count": 4, "the": {"_count": 1, "Reductor": {"_count": 1}}, "escape": {"_count": 1, "had": {"_count": 1}}, "judging": {"_count": 1, "by": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}}, "Reductor": {"_count": 5, "Curse": {"_count": 5, "which": {"_count": 1}, "was": {"_count": 1}, "again": {"_count": 1}, "that": {"_count": 1}, "and": {"_count": 1}}}, "FourPoint": {"_count": 4, "Spell": {"_count": 4, "a": {"_count": 1}, "again": {"_count": 2}, "making": {"_count": 1}}}, "enabling": {"_count": 2, "him": {"_count": 1, "to": {"_count": 1}}, "you": {"_count": 1, "to": {"_count": 1}}}, "Shield": {"_count": 22, "Charm": {"_count": 16, "though": {"_count": 1}, "again": {"_count": 1}, "a": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}, "was": {"_count": 2}, "Fleur": {"_count": 1}, "by": {"_count": 1}, "between": {"_count": 2}, "with": {"_count": 1}, "break": {"_count": 1}, "expanded": {"_count": 1}}, "and": {"_count": 1, "Disillusionment": {"_count": 1}}, "Hats": {"_count": 1, "were": {"_count": 1}}, "Cloaks": {"_count": 1, "Shield": {"_count": 1}}, "Gloves": {"_count": 1, "": {"_count": 1}}, "Charms": {"_count": 2, "are": {"_count": 1}, "and": {"_count": 1}}}, "deflected": {"_count": 9, "minor": {"_count": 1, "curses": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 2, "": {"_count": 2}}, "curses": {"_count": 1, "flying": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "spell": {"_count": 1}}, "awkward": {"_count": 1, "questions": {"_count": 1}}, "curse": {"_count": 1, "hit": {"_count": 1}}}, "Jinx": {"_count": 12, "and": {"_count": 2, "Harry": {"_count": 1}, "awaiting": {"_count": 1}}, "after": {"_count": 1, "three": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "just": {"_count": 1, "for": {"_count": 1}}, "they": {"_count": 1, "laid": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "wearing": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "without": {"_count": 1, "uttering": {"_count": 1}}, "but": {"_count": 1, "Id": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}}, "counterjinx": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}, "or": {"_count": 1, "curse": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}}, "walkietalkie": {"_count": 2, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "priority": {"_count": 11, "is": {"_count": 2, "to": {"_count": 2}}, "did": {"_count": 1, "not": {"_count": 1}}, "was": {"_count": 1, "to": {"_count": 1}}, "from": {"_count": 1, "now": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "while": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "now": {"_count": 1, "had": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "hurdle": {"_count": 2, "and": {"_count": 1, "however": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "Breakfast": {"_count": 5, "was": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "goodluck": {"_count": 1, "card": {"_count": 1, "from": {"_count": 1}}}, "unconvincing": {"_count": 7, "tone": {"_count": 1, "": {"_count": 1}}, "start": {"_count": 1, "of": {"_count": 1}}, "smile": {"_count": 2, "stretching": {"_count": 1}, "": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "stab": {"_count": 1, "at": {"_count": 1}}, "expression": {"_count": 1, "of": {"_count": 1}}}, "DISTURBED": {"_count": 1, "AND": {"_count": 1, "DANGEROUS": {"_count": 1}}}, "DANGEROUS": {"_count": 2, "The": {"_count": 1, "boy": {"_count": 1}}, "DAI": {"_count": 1, "LLEWELLYN": {"_count": 1}}}, "unstable": {"_count": 5, "and": {"_count": 2, "possibly": {"_count": 1}, "a": {"_count": 1}}, "you": {"_count": 1, "make": {"_count": 1}}, "that": {"_count": 1, "it": {"_count": 1}}, "sister": {"_count": 1, "in": {"_count": 1}}}, "Alarming": {"_count": 1, "evidence": {"_count": 1, "has": {"_count": 1}}}, "casts": {"_count": 2, "doubts": {"_count": 1, "upon": {"_count": 1}}, "a": {"_count": 1, "spell": {"_count": 1}}}, "suitability": {"_count": 1, "to": {"_count": 1, "compete": {"_count": 1}}}, "relic": {"_count": 3, "of": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 1}, "Gryffindor": {"_count": 1}}}, "midway": {"_count": 3, "through": {"_count": 2, "a": {"_count": 2}}, "around": {"_count": 1, "the": {"_count": 1}}}, "claiming": {"_count": 5, "that": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "they": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "the": {"_count": 1, "gold": {"_count": 1}}}, "inflicted": {"_count": 5, "upon": {"_count": 3, "him": {"_count": 2}, "the": {"_count": 1}}, "from": {"_count": 1, "healing": {"_count": 1}}, "by": {"_count": 1, "Dark": {"_count": 1}}}, "deepseated": {"_count": 1, "confusion": {"_count": 1, "": {"_count": 1}}}, "specialist": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "plea": {"_count": 6, "for": {"_count": 4, "attention": {"_count": 1}, "their": {"_count": 1}, "her": {"_count": 1}, "information": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "thatAlbus": {"_count": 1, "Dumbledore": {"_count": 1, "Headmaster": {"_count": 1}}}, "reveals": {"_count": 5, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}, "him": {"_count": 1, "or": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "the": {"_count": 1, "disturbed": {"_count": 1}}, "that": {"_count": 1, "magic": {"_count": 1}}}, "converse": {"_count": 2, "with": {"_count": 2, "snakes": {"_count": 2}}}, "Art": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "its": {"_count": 1, "a": {"_count": 1}}, "Crookshanks": {"_count": 1, "streaked": {"_count": 1}}, "upstairs": {"_count": 1, "": {"_count": 1}}, "\u2018Muggleborn": {"_count": 1, "Register": {"_count": 1}}}, "unnamed": {"_count": 2, "stated": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}}, "investigation": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "up": {"_count": 1, "for": {"_count": 1}}, "but": {"_count": 1, "on": {"_count": 1}}}, "historically": {"_count": 1, "associated": {"_count": 1, "with": {"_count": 1}}}, "evildoers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Similarly": {"_count": 1, "anyone": {"_count": 1, "who": {"_count": 1}}}, "seeks": {"_count": 3, "out": {"_count": 1, "the": {"_count": 1}}, "another": {"_count": 1, "more": {"_count": 1}}, "the": {"_count": 1, "Elder": {"_count": 1}}}, "fondness": {"_count": 4, "for": {"_count": 4, "violence": {"_count": 1}, "Muggles": {"_count": 1}, "the": {"_count": 1}, "fiddling": {"_count": 1}}}, "grotesquely": {"_count": 2, "mad": {"_count": 1, "faces": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}}, "tongues": {"_count": 3, "like": {"_count": 1, "snakes": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "lolling": {"_count": 1, "out": {"_count": 1}}}, "bugging": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Binnss": {"_count": 4, "class": {"_count": 2, "read": {"_count": 1}, "we": {"_count": 1}}, "lesson": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}}, "Exempt": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "congregating": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Surprise": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "refrained": {"_count": 3, "from": {"_count": 3, "criticizing": {"_count": 1}, "doing": {"_count": 1}, "saying": {"_count": 1}}}, "Apollyon": {"_count": 1, "Pringle": {"_count": 1, "he": {"_count": 1}}}, "Pringle": {"_count": 1, "he": {"_count": 1, "was": {"_count": 1}}}, "Beaten": {"_count": 1, "him": {"_count": 1, "once": {"_count": 1}}}, "reminisced": {"_count": 1, "at": {"_count": 1, "length": {"_count": 1}}}, "Ogg": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rebels": {"_count": 2, "names": {"_count": 1, "so": {"_count": 1}}, "that": {"_count": 1, "James": {"_count": 1}}}, "Bodrod": {"_count": 1, "the": {"_count": 1, "Bearded": {"_count": 1}}}, "Bearded": {"_count": 1, "and": {"_count": 1, "Urg": {"_count": 1}}}, "Urg": {"_count": 1, "the": {"_count": 1, "Unclean": {"_count": 1}}}, "Unclean": {"_count": 1, "it": {"_count": 1, "wasnt": {"_count": 1}}}, "brainwave": {"_count": 1, "about": {"_count": 1, "Rita": {"_count": 1}}}, "faltering": {"_count": 2, "at": {"_count": 1, "the": {"_count": 1}}, "steps": {"_count": 1, "Aunt": {"_count": 1}}}, "dusky": {"_count": 2, "purple": {"_count": 2, "Dumbledore": {"_count": 1}, "littered": {"_count": 1}}}, "Confident": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "twentyfoothigh": {"_count": 1, "hedge": {"_count": 1, "ran": {"_count": 1}}}, "patrollers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Sonorus": {"_count": 1, "and": {"_count": 1, "his": {"_count": 1}}}, "Tied": {"_count": 1, "in": {"_count": 1, "first": {"_count": 1}}}, "eightyfive": {"_count": 2, "points": {"_count": 1, "each": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Institute": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "deepened": {"_count": 5, "to": {"_count": 1, "navy": {"_count": 1}}, "with": {"_count": 3, "every": {"_count": 2}, "the": {"_count": 1}}, "even": {"_count": 1, "further": {"_count": 1}}}, "navy": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "concoction": {"_count": 1, "": {"_count": 1}}, "robes": {"_count": 1, "": {"_count": 1}}, "blue": {"_count": 5, "robes": {"_count": 5}}}, "Point": {"_count": 5, "Me": {"_count": 1, "he": {"_count": 1}}, "Mel": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "thing": {"_count": 1}}, "it": {"_count": 1, "somewhere": {"_count": 1}}, "is": {"_count": 1, "people": {"_count": 1}}}, "northwest": {"_count": 2, "for": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "luring": {"_count": 2, "him": {"_count": 1, "into": {"_count": 1}}, "her": {"_count": 1, "there": {"_count": 1}}}, "coldness": {"_count": 3, "stealing": {"_count": 1, "over": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Patronum": {"_count": 4, "": {"_count": 4, ".": {"_count": 4}}}, "stumble": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "halfway": {"_count": 1, "down": {"_count": 1}}, "across": {"_count": 1, "something": {"_count": 1}}}, "Riddikulusl": {"_count": 2, "There": {"_count": 1, "was": {"_count": 1}}, "RIDDIKULUSl": {"_count": 1, "Crack": {"_count": 1}}}, "Left": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "alone": {"_count": 1, "in": {"_count": 1}}, "here": {"_count": 1, "Harry": {"_count": 1}}, "ave": {"_count": 1, "you": {"_count": 1}}}, "enchantment": {"_count": 14, "": {"_count": 2, ".": {"_count": 2}}, "works": {"_count": 1, "I": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "exists": {"_count": 1, "then": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "purely": {"_count": 1, "within": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}, "binding": {"_count": 1, "him": {"_count": 1}}, "by": {"_count": 1, "which": {"_count": 1}}, "all": {"_count": 1, "magical": {"_count": 1}}, "your": {"_count": 1, "mother": {"_count": 1}}, "survives": {"_count": 1, "so": {"_count": 1}}}, "Reductol": {"_count": 2, "he": {"_count": 1, "said": {"_count": 1}}, "REDUCTOl": {"_count": 1, "Harrys": {"_count": 1}}}, "intact": {"_count": 8, "": {"_count": 4, ".": {"_count": 4}}, "such": {"_count": 1, "prompt": {"_count": 1}}, "and": {"_count": 2, "whole": {"_count": 1}, "you": {"_count": 1}}, "the": {"_count": 1, "bit": {"_count": 1}}}, "chancing": {"_count": 2, "it": {"_count": 1, "or": {"_count": 1}}, "a": {"_count": 1, "glance": {"_count": 1}}}, "hesitating": {"_count": 3, "when": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "bottomless": {"_count": 1, "sky": {"_count": 1, "": {"_count": 1}}}, "starspangled": {"_count": 1, "heavens": {"_count": 1, "stretched": {"_count": 1}}}, "combat": {"_count": 5, "a": {"_count": 1, "sudden": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "Flitwick": {"_count": 1}}}, "reversal": {"_count": 2, "of": {"_count": 2, "ground": {"_count": 1}, "time": {"_count": 1}}}, "righted": {"_count": 2, "itself": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "scowling": {"_count": 1}}}, "junction": {"_count": 1, "of": {"_count": 1, "two": {"_count": 1}}}, "Fleetingly": {"_count": 1, "and": {"_count": 1, "for": {"_count": 1}}}, "distort": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "like": {"_count": 1, "hot": {"_count": 1}}}, "scorpion": {"_count": 1, "than": {"_count": 1, "anything": {"_count": 1}}}, "Impedimental": {"_count": 7, "Harry": {"_count": 1, "yelled": {"_count": 1}}, "he": {"_count": 2, "bellowed": {"_count": 1}, "said": {"_count": 1}}, "People": {"_count": 1, "froze": {"_count": 1}}, "Malfoy": {"_count": 1, "was": {"_count": 1}}, "Incarcerousl": {"_count": 1, "A": {"_count": 1}}, "The": {"_count": 1, "jinx": {"_count": 1}}}, "IMPEDIMENT": {"_count": 2, "A": {"_count": 2, "The": {"_count": 1}, "Harry": {"_count": 1}}}, "fleshy": {"_count": 4, "shellless": {"_count": 1, "underside": {"_count": 1}}, "nose": {"_count": 1, "was": {"_count": 1}}, "ear": {"_count": 1, "was": {"_count": 1}}, "feet": {"_count": 1, "into": {"_count": 1}}}, "underside": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 3}}}, "permanent": {"_count": 6, "the": {"_count": 1, "skrewt": {"_count": 1}}, "spell": {"_count": 1, "damage": {"_count": 1}}, "home": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "incapacitation": {"_count": 1, "of": {"_count": 1}}, "Keeper": {"_count": 1, "for": {"_count": 1}}}, "regaining": {"_count": 4, "the": {"_count": 3, "use": {"_count": 1}, "sort": {"_count": 1}, "power": {"_count": 1}}, "her": {"_count": 1, "usual": {"_count": 1}}}, "parallel": {"_count": 1, "to": {"_count": 1, "his": {"_count": 1}}}, "Someonell": {"_count": 1, "come": {"_count": 1, "and": {"_count": 1}}}, "sphinx": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "unharmed": {"_count": 1, "and": {"_count": 1}}, "sat": {"_count": 1, "down": {"_count": 1}}, "smiled": {"_count": 2, "at": {"_count": 1}, "more": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "almondshaped": {"_count": 2, "eyes": {"_count": 2, "upon": {"_count": 1}, "Harrys": {"_count": 1}}}, "Answer": {"_count": 4, "on": {"_count": 1, "your": {"_count": 1}}, "wrongly": {"_count": 1, "I": {"_count": 1}}, "me": {"_count": 2, "": {"_count": 2}}}, "Remain": {"_count": 1, "silent": {"_count": 1, "I": {"_count": 1}}}, "unharmed": {"_count": 2, "and": {"_count": 1, "try": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "deals": {"_count": 3, "in": {"_count": 1, "secrets": {"_count": 1}}, "off": {"_count": 1, "and": {"_count": 1}}, "with": {"_count": 1, "petty": {"_count": 1}}}, "naught": {"_count": 3, "but": {"_count": 1, "lies": {"_count": 1}}, "to": {"_count": 2, "seventy": {"_count": 1}, "sixty": {"_count": 1}}}, "hardtofind": {"_count": 1, "word": {"_count": 1, "": {"_count": 1}}}, "unwilling": {"_count": 7, "to": {"_count": 4, "kiss": {"_count": 1}, "jinx": {"_count": 1}, "allow": {"_count": 1}, "commit": {"_count": 1}}, "objects": {"_count": 1, "of": {"_count": 1}}, "giggle": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "and": {"_count": 1}}}, "imposter": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "needed": {"_count": 1, "of": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}}, "\u2018middle": {"_count": 1, "of": {"_count": 1, "middle": {"_count": 1}}}, "tofind": {"_count": 1, "word": {"_count": 1, "said": {"_count": 1}}}, "\u2018er": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Ers": {"_count": 1, "a": {"_count": 1, "sound": {"_count": 1}}}, "Spy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "spiderl": {"_count": 1, "The": {"_count": 1, "sphinx": {"_count": 1}}}, "Mel": {"_count": 1, "he": {"_count": 1, "whispered": {"_count": 1}}}, "intersected": {"_count": 1, "with": {"_count": 1, "his": {"_count": 1}}}, "hurl": {"_count": 1, "himself": {"_count": 1, "past": {"_count": 1}}}, "haste": {"_count": 9, "he": {"_count": 1, "tripped": {"_count": 1}}, "to": {"_count": 5, "ensure": {"_count": 1}, "obey": {"_count": 1}, "clear": {"_count": 1}, "reach": {"_count": 1}, "answer": {"_count": 1}}, "but": {"_count": 1, "with": {"_count": 1}}, "his": {"_count": 1, "panic": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Impedimenta": {"_count": 3, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}}, "horrifying": {"_count": 1, "glimpse": {"_count": 1, "of": {"_count": 1}}}, "underbelly": {"_count": 2, "as": {"_count": 1, "he": {"_count": 1}}, "rippling": {"_count": 1, "in": {"_count": 1}}}, "Stupefyl": {"_count": 8, "just": {"_count": 1, "as": {"_count": 1}}, "The": {"_count": 2, "great": {"_count": 1}, "werewolf": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}, "Yaxley": {"_count": 1, "slid": {"_count": 1}}, "she": {"_count": 1, "screamed": {"_count": 1}}, "They": {"_count": 1, "were": {"_count": 1}}, "he": {"_count": 1, "bellowed": {"_count": 1}}}, "strewing": {"_count": 1, "the": {"_count": 1, "path": {"_count": 1}}}, "gluey": {"_count": 1, "secretion": {"_count": 1, "from": {"_count": 1}}}, "secretion": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "reaches": {"_count": 2, "the": {"_count": 1, "cup": {"_count": 1}}, "its": {"_count": 1, "second": {"_count": 1}}}, "races": {"_count": 3, "on": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "theres": {"_count": 1}}}, "sprained": {"_count": 1, "his": {"_count": 1, "ankle": {"_count": 1}}}, "costing": {"_count": 2, "him": {"_count": 2, "every": {"_count": 2}}}, "aloft": {"_count": 13, "heard": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 7}}, "his": {"_count": 1, "face": {"_count": 1}}, "Dumbledore": {"_count": 1, "walked": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "Accio": {"_count": 1, "Horcruxl": {"_count": 1}}, "Gregorovitch": {"_count": 1, "burst": {"_count": 1}}}, "FLESH": {"_count": 1, "BLOOD": {"_count": 1, "AND": {"_count": 1}}}, "BONE": {"_count": 1, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "graveyard": {"_count": 29, "the": {"_count": 1, "black": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "watched": {"_count": 1}, "that": {"_count": 1}, "had": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "while": {"_count": 1, "Lord": {"_count": 1}}, "with": {"_count": 1, "me": {"_count": 1}}, "meant": {"_count": 1, "he": {"_count": 1}}, "clearly": {"_count": 1, "visible": {"_count": 1}}, "is": {"_count": 1, "full": {"_count": 1}}, "behind": {"_count": 1, "it": {"_count": 1}}, "gouging": {"_count": 1, "dark": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "was": {"_count": 2, "leafless": {"_count": 1}, "supposed": {"_count": 1}}, "of": {"_count": 1, "Little": {"_count": 1}}}, "church": {"_count": 20, "was": {"_count": 1, "visible": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 3, "full": {"_count": 1}, "graveyard": {"_count": 1}, "the": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "clock": {"_count": 1, "chimed": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "beside": {"_count": 1, "it": {"_count": 1}}, "whose": {"_count": 1, "stainedglass": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "doors": {"_count": 1, "the": {"_count": 1}}, "row": {"_count": 1, "upon": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "bells": {"_count": 2, "ringing": {"_count": 1}, "chiming": {"_count": 1}}}, "yew": {"_count": 8, "tree": {"_count": 3, "to": {"_count": 1}, "in": {"_count": 1}, "": {"_count": 1}}, "trees": {"_count": 1, "": {"_count": 1}}, "hedges": {"_count": 1, "muffled": {"_count": 1}}, "and": {"_count": 1, "phoenix": {"_count": 1}}, "wand": {"_count": 1, "How": {"_count": 1}}, "did": {"_count": 1, "everything": {"_count": 1}}}, "headstone": {"_count": 17, "only": {"_count": 1, "six": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "that": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 2, "could": {"_count": 1}, "felt": {"_count": 1}}, "where": {"_count": 2, "he": {"_count": 1}, "Harry": {"_count": 1}}, "of": {"_count": 2, "Voldemorts": {"_count": 2}}, "and": {"_count": 1, "knew": {"_count": 1}}, "Harry": {"_count": 1, "stood": {"_count": 1}}, "facing": {"_count": 1, "Voldemort": {"_count": 1}}, "was": {"_count": 1, "only": {"_count": 1}}, "were": {"_count": 1, "long": {"_count": 1}}}, "KedavraV": {"_count": 4, "A": {"_count": 3, "blast": {"_count": 1}, "jet": {"_count": 2}}, "Expelliarmus": {"_count": 1, "The": {"_count": 1}}}, "eternity": {"_count": 2, "Harry": {"_count": 1, "stared": {"_count": 1}}, "if": {"_count": 1, "the": {"_count": 1}}}, "halfopen": {"_count": 2, "mouth": {"_count": 1, "which": {"_count": 1}}, "clearly": {"_count": 1, "stunned": {"_count": 1}}}, "TOM": {"_count": 1, "RIDDLE": {"_count": 1, "The": {"_count": 1}}}, "tightness": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "engulfed": {"_count": 1, "them": {"_count": 1}}}, "knots": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "Wizarding": {"_count": 1}}, "free": {"_count": 1, "": {"_count": 1}}}, "starlight": {"_count": 1, "lay": {"_count": 1, "the": {"_count": 1}}}, "persistently": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "busying": {"_count": 2, "himself": {"_count": 2, "at": {"_count": 1}, "over": {"_count": 1}}}, "thickening": {"_count": 3, "blurring": {"_count": 1, "the": {"_count": 1}}, "snow": {"_count": 2, "until": {"_count": 1}, "leaving": {"_count": 1}}}, "diamonds": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Griphook": {"_count": 1}}}, "hairless": {"_count": 2, "and": {"_count": 1, "scaly": {"_count": 1}}, "snakelike": {"_count": 1, "with": {"_count": 1}}}, "helpless": {"_count": 4, "it": {"_count": 1, "raised": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Pettigrews": {"_count": 1, "pupils": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}}, "endurance": {"_count": 4, "please": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Bone": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "unknowingly": {"_count": 1, "given": {"_count": 1, "you": {"_count": 1}}}, "renew": {"_count": 1, "your": {"_count": 1, "son": {"_count": 1}}}, "poisonouslooking": {"_count": 1, "blue": {"_count": 1, "": {"_count": 1}}}, "dagger": {"_count": 8, "from": {"_count": 1, "inside": {"_count": 1}}, "very": {"_count": 1, "tightly": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "shaking": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 1, "torn": {"_count": 1}}, "however": {"_count": 1, "Sirius": {"_count": 1}}, "releases": {"_count": 1, "juice": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Flesh": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "given": {"_count": 1, "by": {"_count": 1}}}, "wwillingly": {"_count": 1, "given": {"_count": 1, "you": {"_count": 1}}}, "Bblood": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "resurrect": {"_count": 1, "your": {"_count": 1, "foe": {"_count": 1}}}, "foe": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "did": {"_count": 1}}}, "crook": {"_count": 3, "of": {"_count": 3, "his": {"_count": 1}, "her": {"_count": 1}, "its": {"_count": 1}}}, "vial": {"_count": 1, "and": {"_count": 1, "held": {"_count": 1}}}, "dribble": {"_count": 1, "of": {"_count": 1, "blood": {"_count": 1}}}, "blindingly": {"_count": 2, "bright": {"_count": 2, "that": {"_count": 1}, "sky": {"_count": 1}}}, "emanating": {"_count": 4, "from": {"_count": 3, "the": {"_count": 1}, "him": {"_count": 2}}, "in": {"_count": 1, "circles": {"_count": 1}}}, "billowed": {"_count": 5, "thickly": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 1, "swirled": {"_count": 1}}, "around": {"_count": 1, "him": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "upward": {"_count": 1, "and": {"_count": 1}}}, "obliterating": {"_count": 4, "everything": {"_count": 2, "in": {"_count": 1}, "except": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}, "those": {"_count": 1, "parts": {"_count": 1}}}, "skeletally": {"_count": 1, "thin": {"_count": 1, "rising": {"_count": 1}}}, "Robe": {"_count": 1, "me": {"_count": 1, "said": {"_count": 1}}}, "Whiter": {"_count": 1, "than": {"_count": 1, "a": {"_count": 1}}}, "DEATH": {"_count": 3, "EATERS": {"_count": 2, "Voldemort": {"_count": 1}, "Black": {"_count": 1}}, "OF": {"_count": 1, "ALBUS": {"_count": 1}}}, "EATERS": {"_count": 2, "Voldemort": {"_count": 1, "looked": {"_count": 1}}, "Black": {"_count": 1, "": {"_count": 1}}}, "caressed": {"_count": 4, "his": {"_count": 2, "own": {"_count": 1}, "face": {"_count": 1}}, "it": {"_count": 2, "gently": {"_count": 1}, "with": {"_count": 1}}}, "exultant": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "longfingered": {"_count": 12, "hands": {"_count": 4, "into": {"_count": 1}, "": {"_count": 3}}, "": {"_count": 1, ".": {"_count": 1}}, "white": {"_count": 3, "hand": {"_count": 3}}, "hand": {"_count": 3, "and": {"_count": 1}, "against": {"_count": 1}, "had": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}}, "tattoo": {"_count": 4, "a": {"_count": 1, "skull": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "the": {"_count": 1, "rain": {"_count": 1}}}, "uncontrollable": {"_count": 2, "weeping": {"_count": 1, "": {"_count": 1}}, "giggling": {"_count": 1, "etc": {"_count": 1}}}, "vowed": {"_count": 1, "to": {"_count": 1, "find": {"_count": 1}}}, "revenged": {"_count": 1, "myself": {"_count": 1, "upon": {"_count": 1}}}, "sentimental": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}}, "Thirteen": {"_count": 2, "years": {"_count": 1, "": {"_count": 1}}, "long": {"_count": 1, "years": {"_count": 1}}}, "slitlike": {"_count": 3, "nostrils": {"_count": 3, "widening": {"_count": 1}, "dilating": {"_count": 1}, "flare": {"_count": 1}}}, "prompt": {"_count": 1, "appearances": {"_count": 1, "": {"_count": 1}}}, "eternal": {"_count": 2, "loyalty": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bewitchment": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "immensity": {"_count": 1, "of": {"_count": 1, "my": {"_count": 1}}}, "mightier": {"_count": 1, "than": {"_count": 1, "any": {"_count": 1}}}, "vanquish": {"_count": 4, "even": {"_count": 1, "Lord": {"_count": 1}}, "the": {"_count": 2, "Dark": {"_count": 2}}, "Voldemort": {"_count": 1, "": {"_count": 1}}}, "allegiance": {"_count": 8, "to": {"_count": 3, "another": {"_count": 1}, "Lord": {"_count": 1}, "the": {"_count": 1}}, "he": {"_count": 1, "trusts": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "will": {"_count": 1, "change": {"_count": 1}}, "by": {"_count": 1, "taking": {"_count": 1}}}, "commoners": {"_count": 1, "of": {"_count": 1, "Mudbloods": {"_count": 1}}}, "Trembling": {"_count": 2, "from": {"_count": 1, "head": {"_count": 1}}, "she": {"_count": 1, "left": {"_count": 1}}}, "Cruciol": {"_count": 5, "The": {"_count": 2, "Death": {"_count": 1}, "man": {"_count": 1}}, "Neville": {"_count": 1, "screamed": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "forgiveness": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "by": {"_count": 1, "his": {"_count": 1}}}, "repayment": {"_count": 4, "before": {"_count": 1, "I": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "for": {"_count": 1, "your": {"_count": 1}}, "are": {"_count": 1, "not": {"_count": 1}}}, "Worthless": {"_count": 1, "and": {"_count": 1, "traitorous": {"_count": 1}}}, "traitorous": {"_count": 1, "as": {"_count": 1, "you": {"_count": 1}}}, "rewards": {"_count": 2, "his": {"_count": 1, "helpers": {"_count": 1}}, "of": {"_count": 1, "perseverance": {"_count": 1}}}, "helpers": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "children": {"_count": 1}}}, "Momentarily": {"_count": 2, "shapeless": {"_count": 1, "it": {"_count": 1}}, "stymied": {"_count": 1, "Harry": {"_count": 1}}}, "replica": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "seamlessly": {"_count": 2, "to": {"_count": 1, "his": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "waver": {"_count": 3, "again": {"_count": 1, "Wormtail": {"_count": 1}}, "from": {"_count": 2, "Mundungus": {"_count": 1}, "Harrys": {"_count": 1}}}, "halting": {"_count": 3, "before": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "passing": {"_count": 1}}, "such": {"_count": 1, "a": {"_count": 1}}}, "renounced": {"_count": 1, "the": {"_count": 1, "old": {"_count": 1}}}, "Muggletorture": {"_count": 1, "I": {"_count": 1, "believe": {"_count": 1}}}, "energies": {"_count": 2, "have": {"_count": 1, "been": {"_count": 1}}, "into": {"_count": 1, "pretending": {"_count": 1}}}, "aiding": {"_count": 1, "your": {"_count": 1, "master": {"_count": 1}}}, "merciful": {"_count": 3, "thank": {"_count": 1, "you": {"_count": 1}}, "impulse": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "entombed": {"_count": 1, "in": {"_count": 1, "Azkaban": {"_count": 1}}}, "army": {"_count": 16, "of": {"_count": 5, "creatures": {"_count": 1}, "heliopaths": {"_count": 1}, "them": {"_count": 1}, "the": {"_count": 1}, "Inferi": {"_count": 1}}, "again": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 2}, ".": {"_count": 5}}, "with": {"_count": 1, "which": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Neville": {"_count": 1}}}, "destroying": {"_count": 7, "dangerous": {"_count": 1, "beasts": {"_count": 1}}, "a": {"_count": 2, "man": {"_count": 1}, "Horcrux": {"_count": 1}}, "my": {"_count": 1, "possessions": {"_count": 1}}, "the": {"_count": 1, "danger": {"_count": 1}}, "it": {"_count": 1, "The": {"_count": 1}}, "them": {"_count": 1, "to": {"_count": 1}}}, "prostrate": {"_count": 1, "myself": {"_count": 1, "before": {"_count": 1}}}, "lipless": {"_count": 4, "mouth": {"_count": 4, "as": {"_count": 1}, "was": {"_count": 1}, "curved": {"_count": 1}, "": {"_count": 1}}}, "rebirthing": {"_count": 1, "party": {"_count": 1, "": {"_count": 1}}}, "crave": {"_count": 4, "to": {"_count": 1, "know": {"_count": 1}}, "your": {"_count": 2, "pardon": {"_count": 2}}, "cooler": {"_count": 1, "and": {"_count": 1}}}, "unwittingly": {"_count": 2, "provided": {"_count": 1, "him": {"_count": 1}}, "chose": {"_count": 1, "to": {"_count": 1}}}, "foreseen": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 2, "I": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "freak": {"_count": 1}}, "never": {"_count": 1, "having": {"_count": 1}}}, "traces": {"_count": 5, "of": {"_count": 2, "her": {"_count": 1}, "magical": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "miscalculated": {"_count": 1, "my": {"_count": 1, "friends": {"_count": 1}}}, "meanest": {"_count": 3, "ghost": {"_count": 2, "": {"_count": 2}}, "of": {"_count": 1, "them": {"_count": 1}}}, "immortality": {"_count": 7, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "or": {"_count": 1, "riches": {"_count": 1}}, "the": {"_count": 1, "diary": {"_count": 1}}}, "conquer": {"_count": 6, "death": {"_count": 2, "": {"_count": 1}, "Harry": {"_count": 1}}, "him": {"_count": 1, "and": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "Muggles": {"_count": 1, "by": {"_count": 1}}, "yours": {"_count": 1, "": {"_count": 1}}}, "experiments": {"_count": 5, "had": {"_count": 1, "worked": {"_count": 1}}, "typical": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "Gellert": {"_count": 1}}, "the": {"_count": 1, "secrets": {"_count": 1}}}, "sleeplessly": {"_count": 1, "endlessly": {"_count": 1, "second": {"_count": 1}}}, "plentiful": {"_count": 2, "for": {"_count": 1, "I": {"_count": 1}}, "supply": {"_count": 1, "of": {"_count": 1}}}, "inhabited": {"_count": 5, "animals": {"_count": 1, "snakes": {"_count": 1}}, "with": {"_count": 1, "Uncle": {"_count": 1}}, "by": {"_count": 1, "mice": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "its": {"_count": 1, "walls": {"_count": 1}}}, "preference": {"_count": 2, "but": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 1, "semidarkness": {"_count": 1}}}, "supervise": {"_count": 3, "him": {"_count": 1, "closely": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "the": {"_count": 1, "decoration": {"_count": 1}}}, "thwarted": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "him": {"_count": 1, "stopped": {"_count": 1}}, "both": {"_count": 1, "in": {"_count": 1}}, "by": {"_count": 3, "my": {"_count": 1}, "luck": {"_count": 1}, "Malfoy": {"_count": 1}}}, "affinity": {"_count": 2, "with": {"_count": 1, "rats": {"_count": 1}}, "between": {"_count": 1, "wizard": {"_count": 1}}}, "Albanian": {"_count": 2, "forest": {"_count": 1, "that": {"_count": 1}}, "woods": {"_count": 1, "have": {"_count": 1}}}, "foolishly": {"_count": 3, "stopped": {"_count": 1, "at": {"_count": 1}}, "beside": {"_count": 1, "an": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "regeneration": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "accompany": {"_count": 12, "him": {"_count": 8, "on": {"_count": 3}, "into": {"_count": 2}, "grinning": {"_count": 1}, "There": {"_count": 1}, "back": {"_count": 1}}, "Montague": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "Minister": {"_count": 1}}, "his": {"_count": 1, "mother": {"_count": 1}}, "us": {"_count": 1, "Arthur": {"_count": 1}}}, "veritable": {"_count": 1, "mine": {"_count": 1, "of": {"_count": 1}}}, "pitiless": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "red": {"_count": 2, "eyes": {"_count": 2}}}, "ablebodied": {"_count": 1, "servant": {"_count": 1, "I": {"_count": 1}}}, "rudimentary": {"_count": 1, "weak": {"_count": 1, "body": {"_count": 1}}}, "inhabit": {"_count": 2, "while": {"_count": 1, "awaiting": {"_count": 1}}, "or": {"_count": 1, "possess": {"_count": 1}}}, "rebirth": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 1, "Voldemort": {"_count": 1}}}, "reside": {"_count": 3, "in": {"_count": 2, "my": {"_count": 1}, "a": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}}, "devised": {"_count": 4, "by": {"_count": 2, "Dumbledore": {"_count": 1}, "Wizardkind": {"_count": 1}}, "our": {"_count": 1, "new": {"_count": 1}}, "a": {"_count": 1, "very": {"_count": 1}}}, "invoked": {"_count": 1, "an": {"_count": 1, "ancient": {"_count": 1}}}, "weaker": {"_count": 4, "there": {"_count": 1, "away": {"_count": 1}}, "resistance": {"_count": 1, "slower": {"_count": 1}}, "souls": {"_count": 1, "than": {"_count": 1}}, "than": {"_count": 1, "usual": {"_count": 1}}}, "splitting": {"_count": 4, "along": {"_count": 1, "his": {"_count": 1}}, "up": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "head": {"_count": 1, "could": {"_count": 1}}}, "PRIORI": {"_count": 1, "INCANTATEM": {"_count": 1, "Wormtail": {"_count": 1}}}, "INCANTATEM": {"_count": 1, "Wormtail": {"_count": 1, "approached": {"_count": 1}}}, "gravestone": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "outnumbered": {"_count": 4, "by": {"_count": 1, "at": {"_count": 1}}, "twenty": {"_count": 1, "to": {"_count": 1}}, "two": {"_count": 2, "to": {"_count": 2}}}, "unblockable": {"_count": 1, "Avada": {"_count": 1, "Kedavra": {"_count": 1}}}, "niceties": {"_count": 1, "must": {"_count": 1, "be": {"_count": 1}}}, "Bow": {"_count": 3, "to": {"_count": 2, "death": {"_count": 2}}, "on": {"_count": 1, "top": {"_count": 1}}}, "curve": {"_count": 2, "as": {"_count": 1, "though": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "ruthlessly": {"_count": 3, "forward": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Hanging": {"_count": 1, "out": {"_count": 1}}}, "allconsuming": {"_count": 2, "that": {"_count": 1, "he": {"_count": 1}}, "obsession": {"_count": 1, "": {"_count": 1}}}, "Whitehot": {"_count": 2, "knives": {"_count": 1, "were": {"_count": 1}}, "anger": {"_count": 1, "leapt": {"_count": 1}}}, "ImperioV": {"_count": 1, "And": {"_count": 1, "Harry": {"_count": 1}}}, "bliss": {"_count": 1, "not": {"_count": 1, "to": {"_count": 1}}}, "aches": {"_count": 2, "that": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "pains": {"_count": 1}}}, "realization": {"_count": 7, "of": {"_count": 2, "where": {"_count": 1}, "what": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 1, "even": {"_count": 1}}, "crashed": {"_count": 1, "over": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}}, "virtue": {"_count": 1, "I": {"_count": 1, "need": {"_count": 1}}}, "reflexes": {"_count": 3, "born": {"_count": 1, "of": {"_count": 1}}, "were": {"_count": 1, "excellent": {"_count": 1}}, "Amycus": {"_count": 1, "said": {"_count": 1}}}, "hideandseek": {"_count": 2, "Harry": {"_count": 1, "said": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "reforming": {"_count": 2, "the": {"_count": 1, "circle": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "domeshaped": {"_count": 1, "web": {"_count": 1, "a": {"_count": 1}}}, "jackals": {"_count": 1, "their": {"_count": 1, "cries": {"_count": 1}}}, "bead": {"_count": 4, "of": {"_count": 2, "light": {"_count": 2}}, "moved": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "toward": {"_count": 1}}}, "vibrated": {"_count": 3, "he": {"_count": 1, "was": {"_count": 1}}, "horribly": {"_count": 1, "so": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}}, "particle": {"_count": 5, "of": {"_count": 4, "his": {"_count": 3}, "your": {"_count": 1}}, "had": {"_count": 1, "spilled": {"_count": 1}}}, "solidest": {"_count": 1, "densest": {"_count": 1, "smoke": {"_count": 1}}}, "densest": {"_count": 1, "smoke": {"_count": 1, "": {"_count": 1}}}, "entirety": {"_count": 2, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "paround": {"_count": 2, "the": {"_count": 1, "edges": {"_count": 1}}, "your": {"_count": 1, "room": {"_count": 1}}}, "Killed": {"_count": 4, "me": {"_count": 1, "that": {"_count": 1}}, "Cedric": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "duelers": {"_count": 5, "whispered": {"_count": 1, "words": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "weaving": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "past": {"_count": 1, "struggling": {"_count": 1}}}, "encouragement": {"_count": 10, "to": {"_count": 1, "Harry": {"_count": 1}}, "chased": {"_count": 1, "away": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Ron": {"_count": 1, "went": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "but": {"_count": 1, "continued": {"_count": 1}}, "his": {"_count": 1, "fat": {"_count": 1}}, "while": {"_count": 1, "Death": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "untidyhaired": {"_count": 1, "like": {"_count": 1, "Harry": {"_count": 1}}}, "blossomed": {"_count": 4, "from": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "them": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "headstones": {"_count": 3, "feeling": {"_count": 1, "their": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}}, "Gripping": {"_count": 3, "his": {"_count": 2, "wand": {"_count": 2}}, "Harrys": {"_count": 1, "arm": {"_count": 1}}}, "VERITASERUM": {"_count": 1, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "Shock": {"_count": 2, "and": {"_count": 1, "exhaustion": {"_count": 1}}, "Spells": {"_count": 1, "at": {"_count": 1}}}, "deafened": {"_count": 3, "and": {"_count": 1, "confused": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "HarryV": {"_count": 3, "He": {"_count": 1, "opened": {"_count": 1}}, "she": {"_count": 1, "called": {"_count": 1}}, "Im": {"_count": 1, "here": {"_count": 1}}}, "gorys": {"_count": 1, "dead": {"_count": 1, "Hell": {"_count": 1}}}, "Along": {"_count": 6, "the": {"_count": 4, "corridor": {"_count": 1}, "corridors": {"_count": 1}, "way": {"_count": 1}, "aisle": {"_count": 1}}, "Apparition": {"_count": 1, "": {"_count": 1}}, "yet": {"_count": 1, "another": {"_count": 1}}}, "dueled": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "Grindelwald": {"_count": 1, "and": {"_count": 1}}, "students": {"_count": 1, "and": {"_count": 1}}, "three": {"_count": 1, "at": {"_count": 1}}}, "Drink": {"_count": 8, "it": {"_count": 2, "": {"_count": 1}, "before": {"_count": 1}}, "up": {"_count": 2, "drink": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 4, "": {"_count": 2}, "drink": {"_count": 1}, "Professor": {"_count": 1}}}, "peppery": {"_count": 1, "taste": {"_count": 1, "burning": {"_count": 1}}}, "straightaway": {"_count": 11, "Theres": {"_count": 1, "a": {"_count": 1}}, "Fudge": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "I": {"_count": 1, "went": {"_count": 1}}, "bu": {"_count": 1, "we": {"_count": 1}}, "for": {"_count": 1, "Mrs": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}}, "tracking": {"_count": 1, "his": {"_count": 1, "enemies": {"_count": 1}}}, "forgave": {"_count": 3, "them": {"_count": 1, "then": {"_count": 1}}, "the": {"_count": 1, "scum": {"_count": 1}}, "your": {"_count": 1, "insolence": {"_count": 1}}}, "treacherous": {"_count": 4, "cowards": {"_count": 1, "who": {"_count": 1}}, "descent": {"_count": 1, "and": {"_count": 1}}, "water": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "bleeder": {"_count": 1}}}, "cowards": {"_count": 1, "who": {"_count": 1, "wouldnt": {"_count": 1}}}, "faithless": {"_count": 1, "worthless": {"_count": 1, "bits": {"_count": 1}}}, "cavort": {"_count": 1, "in": {"_count": 1, "masks": {"_count": 1}}}, "guiding": {"_count": 4, "you": {"_count": 2, "through": {"_count": 1}, "": {"_count": 1}}, "them": {"_count": 1, "but": {"_count": 1}}, "him": {"_count": 1, "for": {"_count": 1}}}, "arousing": {"_count": 1, "suspicion": {"_count": 1, "": {"_count": 1}}}, "detectable": {"_count": 1, "in": {"_count": 1, "your": {"_count": 1}}}, "preferably": {"_count": 2, "with": {"_count": 1, "a": {"_count": 1}}, "involving": {"_count": 1, "a": {"_count": 1}}}, "Decent": {"_count": 1, "people": {"_count": 1, "are": {"_count": 1}}}, "manipulate": {"_count": 2, "Potter": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "misdirect": {"_count": 1}}}, "independence": {"_count": 1, "that": {"_count": 1, "might": {"_count": 1}}}, "Feed": {"_count": 1, "you": {"_count": 1, "information": {"_count": 1}}}, "staged": {"_count": 1, "a": {"_count": 1, "loud": {"_count": 1}}}, "idiocy": {"_count": 1, "for": {"_count": 1, "nobility": {"_count": 1}}}, "nobility": {"_count": 2, "and": {"_count": 1, "marked": {"_count": 1}}, "that": {"_count": 1, "befits": {"_count": 1}}}, "outer": {"_count": 6, "hedges": {"_count": 1, "able": {"_count": 1}}, "office": {"_count": 1, "\u2018Tm": {"_count": 1}}, "cave": {"_count": 1, "and": {"_count": 1}}, "chamber": {"_count": 1, "": {"_count": 1}}, "edge": {"_count": 1, "of": {"_count": 1}}, "trees": {"_count": 1, "": {"_count": 1}}}, "sharpening": {"_count": 1, "had": {"_count": 1, "become": {"_count": 1}}}, "regenerate": {"_count": 2, "and": {"_count": 1, "then": {"_count": 1}}, "making": {"_count": 1, "him": {"_count": 1}}}, "indignity": {"_count": 4, "Harry": {"_count": 1, "of": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "it": {"_count": 1}, "Malfoy": {"_count": 1}}}, "splintering": {"_count": 2, "and": {"_count": 1, "crashing": {"_count": 1}}, "sound": {"_count": 1, "and": {"_count": 1}}}, "benign": {"_count": 3, "smile": {"_count": 1, "upon": {"_count": 1}}, "interest": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "knew": {"_count": 1}}}, "twinkle": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "even": {"_count": 1, "in": {"_count": 1}}}, "radiated": {"_count": 1, "from": {"_count": 1, "Dumbledore": {"_count": 1}}}, "Understanding": {"_count": 3, "is": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "principles": {"_count": 1}}, "blazed": {"_count": 1, "suddenly": {"_count": 1}}}, "Sneakoscopes": {"_count": 6, "some": {"_count": 1, "parchment": {"_count": 1}}, "Secrecy": {"_count": 1, "Sensors": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "make": {"_count": 1}}, "to": {"_count": 1, "dust": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}}, "respective": {"_count": 1, "locks": {"_count": 1, "reopening": {"_count": 1}}}, "reopening": {"_count": 1, "the": {"_count": 1, "trunk": {"_count": 1}}}, "imposters": {"_count": 1, "cloak": {"_count": 1, "hes": {"_count": 1}}}, "simplicity": {"_count": 1, "of": {"_count": 1, "it": {"_count": 1}}}, "Minutes": {"_count": 2, "passed": {"_count": 1, "in": {"_count": 1}}, "previously": {"_count": 1, "Harry": {"_count": 1}}}, "withdrawing": {"_count": 9, "into": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Buckbeaks": {"_count": 1}}, "an": {"_count": 1, "acid": {"_count": 1}}, "her": {"_count": 1, "gaze": {"_count": 1}}, "a": {"_count": 4, "large": {"_count": 1}, "fresh": {"_count": 1}, "sheaf": {"_count": 1}, "helpful": {"_count": 1}}, "the": {"_count": 1, "rest": {"_count": 1}}}, "swivel": {"_count": 2, "in": {"_count": 1, "every": {"_count": 1}}, "around": {"_count": 1, "again": {"_count": 1}}}, "paleskinned": {"_count": 1, "slightly": {"_count": 1, "freckled": {"_count": 1}}}, "Masters": {"_count": 3, "son": {"_count": 1, "": {"_count": 1}}, "house": {"_count": 1, "said": {"_count": 1}}, "bidding": {"_count": 1, "intoned": {"_count": 1}}}, "Step": {"_count": 6, "aside": {"_count": 1, "please": {"_count": 1}}, "over": {"_count": 1, "here": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "one": {"_count": 1, "Fix": {"_count": 1}}, "two": {"_count": 1, "said": {"_count": 1}}, "three": {"_count": 1, "called": {"_count": 1}}}, "Foe": {"_count": 1, "Glass": {"_count": 1, "in": {"_count": 1}}}, "Glass": {"_count": 3, "in": {"_count": 1, "which": {"_count": 1}}, "cut": {"_count": 1, "his": {"_count": 1}}, "shattered": {"_count": 1, "to": {"_count": 1}}}, "Rennervate": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Staged": {"_count": 1, "my": {"_count": 1, "mothers": {"_count": 1}}}, "pitied": {"_count": 2, "me": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Rewards": {"_count": 1, "for": {"_count": 1, "my": {"_count": 1}}}, "confronted": {"_count": 4, "him": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "something": {"_count": 1}}, "you": {"_count": 1, "before": {"_count": 1}}, "with": {"_count": 1, "shampoo": {"_count": 1}}}, "monotonous": {"_count": 2, "voice": {"_count": 1, "": {"_count": 1}}, "drone": {"_count": 1, "on": {"_count": 1}}}, "periods": {"_count": 9, "when": {"_count": 3, "I": {"_count": 1}, "he": {"_count": 1}, "we": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}, "of": {"_count": 2, "great": {"_count": 1}, "near": {"_count": 1}}, "where": {"_count": 1, "you": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}, "after": {"_count": 1, "Charms": {"_count": 1}}}, "disloyalty": {"_count": 1, "to": {"_count": 1, "my": {"_count": 1}}}, "acquire": {"_count": 1, "a": {"_count": 1, "wand": {"_count": 1}}}, "conceived": {"_count": 1, "a": {"_count": 1, "plan": {"_count": 1}}}, "based": {"_count": 1, "upon": {"_count": 1, "the": {"_count": 1}}}, "recalling": {"_count": 4, "the": {"_count": 1, "sweetest": {"_count": 1}}, "Harry": {"_count": 2, "to": {"_count": 2}}, "it": {"_count": 1, "perfectly": {"_count": 1}}}, "sweetest": {"_count": 1, "memory": {"_count": 1, "of": {"_count": 1}}}, "Ensure": {"_count": 1, "he": {"_count": 1, "reached": {"_count": 1}}}, "Forced": {"_count": 1, "him": {"_count": 1, "into": {"_count": 1}}}, "habits": {"_count": 4, "so": {"_count": 1, "that": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "of": {"_count": 1, "selfpunishment": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "costs": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "iVoooo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Carried": {"_count": 1, "it": {"_count": 1, "into": {"_count": 1}}}, "Covered": {"_count": 2, "it": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 1, "rags": {"_count": 1}}}, "Turned": {"_count": 1, "it": {"_count": 1, "into": {"_count": 1}}}, "PARTING": {"_count": 1, "OF": {"_count": 1, "THE": {"_count": 1}}}, "WAYS": {"_count": 1, "Dumbledore": {"_count": 1, "stood": {"_count": 1}}}, "nauseous": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "numbness": {"_count": 4, "and": {"_count": 2, "a": {"_count": 1}, "sense": {"_count": 1}}, "where": {"_count": 1, "despite": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "unreality": {"_count": 2, "were": {"_count": 1, "upon": {"_count": 1}}, "firing": {"_count": 1, "him": {"_count": 1}}}, "interrogation": {"_count": 4, "of": {"_count": 2, "Barty": {"_count": 1}, "Dean": {"_count": 1}}, "from": {"_count": 1, "Lavender": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "undisturbed": {"_count": 2, "for": {"_count": 2, "hours": {"_count": 1}, "ten": {"_count": 1}}}, "phoenixs": {"_count": 2, "beautiful": {"_count": 1, "scarletandgold": {"_count": 1}}, "long": {"_count": 1, "golden": {"_count": 1}}}, "peacefully": {"_count": 5, "up": {"_count": 1, "at": {"_count": 1}}, "on": {"_count": 1, "Harrys": {"_count": 1}}, "with": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "below": {"_count": 1, "us": {"_count": 1}}}, "unwillingly": {"_count": 3, "Harry": {"_count": 1, "raised": {"_count": 1}}, "bitterly": {"_count": 1, "yet": {"_count": 1}}, "handed": {"_count": 1, "over": {"_count": 1}}}, "postpone": {"_count": 5, "the": {"_count": 3, "moment": {"_count": 2}, "test": {"_count": 1}}, "his": {"_count": 1, "meeting": {"_count": 1}}, "your": {"_count": 1, "detention": {"_count": 1}}}, "strengthening": {"_count": 2, "him": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}}, "vehement": {"_count": 2, "exclamation": {"_count": 1, "and": {"_count": 1}}, "hiss": {"_count": 1, "that": {"_count": 1}}}, "exclamation": {"_count": 4, "and": {"_count": 1, "Dumbledore": {"_count": 1}}, "she": {"_count": 1, "pointed": {"_count": 1}}, "of": {"_count": 1, "pleasure": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "weary": {"_count": 7, "as": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "voice": {"_count": 1, "": {"_count": 1}}, "sort": {"_count": 1, "of": {"_count": 1}}, "male": {"_count": 1, "voice": {"_count": 1}}, "of": {"_count": 1, "contradiction": {"_count": 1}}}, "obstructed": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 1, "mouth": {"_count": 1}}}, "Priori": {"_count": 2, "Incantatem": {"_count": 2, "he": {"_count": 1}, "said": {"_count": 1}}}, "cores": {"_count": 11, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "and": {"_count": 2, "sweet": {"_count": 1}, "only": {"_count": 1}}, "nothing": {"_count": 1, "about": {"_count": 1}}, "sure": {"_count": 1, "that": {"_count": 1}}, "is": {"_count": 1, "incredibly": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "reacted": {"_count": 1, "in": {"_count": 1}}}, "meets": {"_count": 2, "its": {"_count": 1, "brother": {"_count": 1}}, "Dad": {"_count": 1, "at": {"_count": 1}}}, "regurgitate": {"_count": 1, "spells": {"_count": 1, "it": {"_count": 1}}}, "preceded": {"_count": 3, "it": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "out": {"_count": 1}}, "murder": {"_count": 1, "": {"_count": 1}}}, "interrogatively": {"_count": 1, "at": {"_count": 1, "Harry": {"_count": 1}}}, "reawaken": {"_count": 2, "the": {"_count": 1, "dead": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "echo": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "of": {"_count": 1, "Hagrid": {"_count": 1}}}, "retained": {"_count": 3, "Cedrics": {"_count": 1, "appearance": {"_count": 1}}, "and": {"_count": 1, "rightly": {"_count": 1}}, "vestiges": {"_count": 1, "of": {"_count": 1}}}, "constricted": {"_count": 7, "": {"_count": 1, ".": {"_count": 1}}, "voice": {"_count": 3, "": {"_count": 3}}, "sensation": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "with": {"_count": 1, "emotion": {"_count": 1}}}, "resettled": {"_count": 1, "itself": {"_count": 1, "upon": {"_count": 1}}}, "screens": {"_count": 2, "around": {"_count": 1, "him": {"_count": 1}}, "Harry": {"_count": 1, "sat": {"_count": 1}}}, "bedcovers": {"_count": 4, "unnecessarily": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "twisted": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}}, "unnecessarily": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "accusatory": {"_count": 1, "tone": {"_count": 1}}, "giving": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "large": {"_count": 1, "gulp": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "holding": {"_count": 1, "up": {"_count": 1}}}, "dreamless": {"_count": 2, "sleep": {"_count": 2, "": {"_count": 1}, "broke": {"_count": 1}}}, "mouthfuls": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 2, "gateau": {"_count": 1}, "his": {"_count": 1}}, "Ron": {"_count": 1, "had": {"_count": 1}}}, "hazy": {"_count": 3, "the": {"_count": 1, "lamps": {"_count": 1}}, "though": {"_count": 1, "it": {"_count": 1}}, "forms": {"_count": 1, "they": {"_count": 1}}}, "matress": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fuzzy": {"_count": 3, "outlines": {"_count": 1, "of": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "slow": {"_count": 1, "": {"_count": 1}}}, "Regrettable": {"_count": 1, "but": {"_count": 1, "all": {"_count": 1}}}, "Unnoticed": {"_count": 3, "by": {"_count": 3, "any": {"_count": 1}, "either": {"_count": 1}, "Travers": {"_count": 1}}}, "blotches": {"_count": 3, "of": {"_count": 1, "color": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}}, "summoning": {"_count": 3, "a": {"_count": 1, "dementor": {"_count": 1}}, "us": {"_count": 1, "to": {"_count": 1}}, "my": {"_count": 1, "son": {"_count": 1}}}, "fumed": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}}, "likewise": {"_count": 4, "looked": {"_count": 1, "angrier": {"_count": 1}}, "been": {"_count": 1, "returned": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "interviewing": {"_count": 2, "a": {"_count": 1, "possibly": {"_count": 1}}, "him": {"_count": 1, "a": {"_count": 1}}}, "administered": {"_count": 1, "its": {"_count": 1, "fatal": {"_count": 1}}}, "blustered": {"_count": 8, "Fudge": {"_count": 4, "": {"_count": 2}, "fiddling": {"_count": 1}, "looking": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "the": {"_count": 1, "Prime": {"_count": 1}}, "Vernon": {"_count": 1, "Dursley": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "byproducts": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "Preposterous": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "but": {"_count": 1, "Dumbledore": {"_count": 1}}}, "doubtless": {"_count": 1, "told": {"_count": 1, "you": {"_count": 1}}}, "permit": {"_count": 15, "you": {"_count": 2, "to": {"_count": 2}}, "people": {"_count": 1, "to": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 3}}, "Sirius": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "exiting": {"_count": 1}}, "this": {"_count": 1, "flaw": {"_count": 1}}, "the": {"_count": 1, "change": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}, "her": {"_count": 2, "to": {"_count": 2}}, "Minerva": {"_count": 1, "McGonagall": {"_count": 1}}, "that": {"_count": 1, "idea": {"_count": 1}}}, "g": {"_count": 3, ".": {"_count": 1, "His": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}}, "hackles": {"_count": 1, "were": {"_count": 1, "raised": {"_count": 1}}}, "reddened": {"_count": 1, "slightly": {"_count": 1, "but": {"_count": 1}}}, "defiant": {"_count": 7, "and": {"_count": 3, "obstinate": {"_count": 1}, "hopefully": {"_count": 1}, "scared": {"_count": 1}}, "expression": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "yes": {"_count": 1, "His": {"_count": 1}}}, "obstinate": {"_count": 1, "look": {"_count": 1, "came": {"_count": 1}}}, "experiencing": {"_count": 5, "in": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "emotions": {"_count": 1}}, "the": {"_count": 1, "same": {"_count": 1}}, "were": {"_count": 1, "due": {"_count": 1}}, "jolts": {"_count": 1, "of": {"_count": 1}}}, "Headaches": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Nightmares": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "radiate": {"_count": 2, "that": {"_count": 1, "indefinable": {"_count": 1}}, "from": {"_count": 1, "Dumbledore": {"_count": 1}}}, "indefinable": {"_count": 2, "sense": {"_count": 1, "of": {"_count": 1}}, "air": {"_count": 1, "of": {"_count": 1}}}, "addled": {"_count": 4, "his": {"_count": 2, "brains": {"_count": 2}}, "by": {"_count": 1, "magic": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "donations": {"_count": 1, "to": {"_count": 1, "excellent": {"_count": 1}}}, "Also": {"_count": 3, "cleared": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "she": {"_count": 1}}, "with": {"_count": 1, "Mr": {"_count": 1}}}, "acquitted": {"_count": 2, "of": {"_count": 1, "being": {"_count": 1}}, "yourself": {"_count": 1, "beyond": {"_count": 1}}}, "crackpot": {"_count": 2, "story": {"_count": 1, "at": {"_count": 1}}, "spell": {"_count": 1, "on": {"_count": 1}}}, "swallowing": {"_count": 6, "them": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 2, "whole": {"_count": 1}, "but": {"_count": 1}}, "an": {"_count": 1, "entire": {"_count": 1}}, "before": {"_count": 1, "saying": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}}, "destabilize": {"_count": 3, "everything": {"_count": 1, "we": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "blustering": {"_count": 1, "a": {"_count": 1, "little": {"_count": 1}}}, "essentially": {"_count": 1, "good": {"_count": 1, "natured": {"_count": 1}}}, "natured": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "disruption": {"_count": 4, "in": {"_count": 1, "his": {"_count": 1}}, "particularly": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Remove": {"_count": 4, "the": {"_count": 1, "dementors": {"_count": 1}}, "something": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "foul": {"_count": 1}}, "it": {"_count": 1, "I": {"_count": 1}}}, "soundly": {"_count": 2, "in": {"_count": 1, "our": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}}, "scope": {"_count": 4, "for": {"_count": 2, "their": {"_count": 1}, "inflicting": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "tragedy": {"_count": 1}}}, "pleasures": {"_count": 2, "than": {"_count": 1, "you": {"_count": 1}}, "of": {"_count": 1, "eating": {"_count": 1}}}, "hardpressed": {"_count": 1, "to": {"_count": 1, "stop": {"_count": 1}}}, "envoys": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "Envoys": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "Extend": {"_count": 1, "them": {"_count": 1, "the": {"_count": 1}}}, "socalled": {"_count": 7, "purity": {"_count": 1, "of": {"_count": 1}}, "protective": {"_count": 1, "potions": {"_count": 1}}, "Prince": {"_count": 1, "said": {"_count": 1}}, "Inferius": {"_count": 1, "was": {"_count": 1}}, "HalfBlood": {"_count": 1, "Prince": {"_count": 1}}, "Muggleborns": {"_count": 1, "the": {"_count": 1}}, "Muggleborn": {"_count": 1, "to": {"_count": 1}}}, "purity": {"_count": 1, "of": {"_count": 1, "blood": {"_count": 1}}}, "Fail": {"_count": 2, "to": {"_count": 1, "act": {"_count": 1}}, "Grades": {"_count": 1, "Outstanding": {"_count": 1}}}, "rebuild": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "Insane": {"_count": 1, "whispered": {"_count": 1, "Fudge": {"_count": 1}}}, "decisions": {"_count": 6, "but": {"_count": 1, "Ive": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "undoubtedly": {"_count": 1}}, "theyd": {"_count": 1, "normally": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hire": {"_count": 2, "werewolves": {"_count": 1, "or": {"_count": 1}}, "take": {"_count": 1, "it": {"_count": 1}}}, "intend": {"_count": 6, "to": {"_count": 6, "work": {"_count": 1}, "tell": {"_count": 1}, "take": {"_count": 1}, "pass": {"_count": 1}, "destroy": {"_count": 2}}}, "rocked": {"_count": 5, "backward": {"_count": 2, "and": {"_count": 2}}, "faster": {"_count": 1, "than": {"_count": 1}}, "still": {"_count": 1, "faster": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "distinguishing": {"_count": 1, "one": {"_count": 1, "another": {"_count": 1}}}, "fold": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "themselves": {"_count": 1, "but": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "repelled": {"_count": 2, "by": {"_count": 1, "the": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}}, "winnings": {"_count": 6, "he": {"_count": 2, "said": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "had": {"_count": 1, "seemed": {"_count": 1}}, "last": {"_count": 1, "June": {"_count": 1}}}, "presentation": {"_count": 1, "ceremony": {"_count": 1, "but": {"_count": 1}}}, "resolute": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "lacks": {"_count": 1, "proper": {"_count": 1, "wizarding": {"_count": 1}}}, "shortsighted": {"_count": 1, "as": {"_count": 1, "Cornelius": {"_count": 1}}}, "discreet": {"_count": 1, "however": {"_count": 1, "": {"_count": 1}}}, "invitation": {"_count": 19, "said": {"_count": 3, "Dumbledore": {"_count": 1}, "Harry": {"_count": 1}, "Zabini": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "thrust": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 5, "join": {"_count": 1}, "one": {"_count": 1}, "a": {"_count": 1}, "Ron": {"_count": 1}, "every": {"_count": 1}}, "did": {"_count": 1, "he": {"_count": 1}}, "arrived": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "nor": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}}, "hostility": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Arabella": {"_count": 3, "Figg": {"_count": 2, "Mundungus": {"_count": 1}, "Harrys": {"_count": 1}}, "Doreen": {"_count": 1, "Figg": {"_count": 1}}}, "overpower": {"_count": 2, "him": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "if": {"_count": 1}}}, "instantaneous": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "irresistible": {"_count": 2, "waves": {"_count": 1, "of": {"_count": 1}}, "force": {"_count": 1, "": {"_count": 1}}}, "BEGINNING": {"_count": 1, "When": {"_count": 1, "he": {"_count": 1}}}, "recollections": {"_count": 5, "he": {"_count": 1, "did": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "these": {"_count": 1, "two": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "formulating": {"_count": 1, "their": {"_count": 1, "own": {"_count": 1}}}, "speculate": {"_count": 1, "about": {"_count": 1, "what": {"_count": 1}}}, "bucketsize": {"_count": 1, "cups": {"_count": 1, "and": {"_count": 1}}}, "saucers": {"_count": 4, "on": {"_count": 1, "the": {"_count": 1}}, "lurking": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "Olympe": {"_count": 9, "Hagrid": {"_count": 1, "said": {"_count": 1}}, "Madame": {"_count": 1, "Maxime": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "an": {"_count": 2, "me": {"_count": 1}, "I": {"_count": 1}}, "hadn": {"_count": 1, "bin": {"_count": 1}}, "talked": {"_count": 1, "it": {"_count": 1}}, "jumpin": {"_count": 1, "out": {"_count": 1}}}, "fetching": {"_count": 3, "more": {"_count": 1, "cups": {"_count": 1}}, "them": {"_count": 1, "They": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "doughy": {"_count": 3, "cookies": {"_count": 1, "he": {"_count": 1}}, "face": {"_count": 2, "turned": {"_count": 1}, "and": {"_count": 1}}}, "cookies": {"_count": 2, "he": {"_count": 1, "leaned": {"_count": 1}}, "lying": {"_count": 1, "on": {"_count": 1}}}, "Migh": {"_count": 3, "be": {"_count": 3, "able": {"_count": 1}, "he": {"_count": 1}, "a": {"_count": 1}}}, "worryin": {"_count": 2, "abou": {"_count": 2, "it": {"_count": 1}, "me": {"_count": 1}}}, "twitchy": {"_count": 2, "jumping": {"_count": 1, "every": {"_count": 1}}, "manner": {"_count": 1, "that": {"_count": 1}}}, "tenmonth": {"_count": 1, "imprisonment": {"_count": 1, "in": {"_count": 1}}}, "Pretended": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "musings": {"_count": 2, "were": {"_count": 1, "ended": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "Theirs": {"_count": 1, "had": {"_count": 1, "been": {"_count": 1}}}, "saddest": {"_count": 1, "and": {"_count": 1, "palest": {"_count": 1}}}, "acknowledge": {"_count": 3, "the": {"_count": 1, "loss": {"_count": 1}}, "your": {"_count": 1, "superiority": {"_count": 1}}, "its": {"_count": 1, "pain": {"_count": 1}}}, "exemplified": {"_count": 1, "many": {"_count": 1, "of": {"_count": 1}}}, "worker": {"_count": 2, "he": {"_count": 1, "valued": {"_count": 1}}, "Broderick": {"_count": 1, "Bode": {"_count": 1}}}, "valued": {"_count": 3, "fair": {"_count": 1, "play": {"_count": 1}}, "his": {"_count": 1, "opinion": {"_count": 1}}, "your": {"_count": 1, "views": {"_count": 1}}}, "preferable": {"_count": 2, "to": {"_count": 1, "lies": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "risked": {"_count": 7, "his": {"_count": 2, "own": {"_count": 2}}, "a": {"_count": 2, "little": {"_count": 1}, "lot": {"_count": 1}}, "everything": {"_count": 1, "always": {"_count": 1}}, "your": {"_count": 1, "neck": {"_count": 1}}, "passing": {"_count": 1, "on": {"_count": 1}}}, "promote": {"_count": 2, "magical": {"_count": 1, "understanding": {"_count": 1}}, "a": {"_count": 1, "feeling": {"_count": 1}}}, "discord": {"_count": 3, "and": {"_count": 2, "enmity": {"_count": 2}}, "crept": {"_count": 1, "among": {"_count": 1}}}, "Differences": {"_count": 1, "of": {"_count": 1, "habit": {"_count": 1}}}, "asunder": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "leafy": {"_count": 5, "its": {"_count": 1, "flower": {"_count": 1}}, "branches": {"_count": 1, "fanned": {"_count": 1}}, "canopy": {"_count": 1, "overhead": {"_count": 1}}, "plants": {"_count": 1, "": {"_count": 1}}, "ground": {"_count": 1, "and": {"_count": 1}}}, "uzzer": {"_count": 1, "again": {"_count": 1, "I": {"_count": 1}}}, "Eenglish": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 1, "he": {"_count": 1}}}, "az": {"_count": 1, "been": {"_count": 1, "a": {"_count": 1}}}, "steer": {"_count": 4, "that": {"_count": 1, "ship": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "conversation": {"_count": 1}}, "him": {"_count": 1, "toward": {"_count": 1}}}, "gruff": {"_count": 2, "voice": {"_count": 2, "": {"_count": 2}}}, "vork": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "carriagesll": {"_count": 1, "be": {"_count": 1, "here": {"_count": 1}}}, "alvays": {"_count": 1, "polite": {"_count": 1, "to": {"_count": 1}}}, "Alvays": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "internal": {"_count": 5, "struggle": {"_count": 3, "": {"_count": 2}, "he": {"_count": 1}}, "organ": {"_count": 1, "": {"_count": 1}}, "arguments": {"_count": 1, "that": {"_count": 1}}}, "gratified": {"_count": 1, "signed": {"_count": 1, "a": {"_count": 1}}}, "fragment": {"_count": 19, "of": {"_count": 12, "parchment": {"_count": 2}, "soul": {"_count": 5}, "his": {"_count": 1}, "Voldemorts": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "off": {"_count": 1, "todays": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "which": {"_count": 2}}, "fell": {"_count": 1, "sparkling": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "southward": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "schoolbag": {"_count": 16, "she": {"_count": 1, "dislodged": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 2, "after": {"_count": 1}, "left": {"_count": 1}}, "onto": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 2, "over": {"_count": 2}}, "beside": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}, "carefully": {"_count": 1, "pulled": {"_count": 1}}, "swung": {"_count": 1, "it": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}, "ignoring": {"_count": 1, "the": {"_count": 1}}}, "constrained": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "restrained": {"_count": 3, "herself": {"_count": 1, "in": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "I": {"_count": 1}}}, "Bugging": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "electronic": {"_count": 1, "bugs": {"_count": 1, "said": {"_count": 1}}}, "bugs": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "antennae": {"_count": 1, "are": {"_count": 1, "exactly": {"_count": 1}}}, "interviews": {"_count": 2, "with": {"_count": 1, "the": {"_count": 1}}, "say": {"_count": 1, "in": {"_count": 1}}}, "Unbreakable": {"_count": 8, "Charm": {"_count": 1, "on": {"_count": 1}}, "Vow": {"_count": 6, "": {"_count": 4}, "he": {"_count": 1}, "Draco": {"_count": 1}}, "Oath": {"_count": 1, "or": {"_count": 1}}}, "Mugglelovers": {"_count": 1, "first": {"_count": 1, "": {"_count": 1}}}, "f": {"_count": 1, "It": {"_count": 1, "was": {"_count": 1}}}, "Blinded": {"_count": 2, "by": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "dying": {"_count": 1}}}, "Furnunculus": {"_count": 1, "Curse": {"_count": 1, "": {"_count": 1}}}, "decor": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ignored": {"_count": 1, "our": {"_count": 1, "letter": {"_count": 1}}}, "gamble": {"_count": 1, "and": {"_count": 1, "he": {"_count": 1}}}, "Turns": {"_count": 5, "out": {"_count": 5, "hes": {"_count": 1}, "me": {"_count": 1}, "we": {"_count": 1}, "it": {"_count": 1}, "he": {"_count": 1}}}, "debts": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "outright": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "dislike": {"_count": 1, "": {"_count": 1}}, "madness": {"_count": 1, "not": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "disembark": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Buy": {"_count": 1, "Ron": {"_count": 1, "some": {"_count": 1}}}, "DEMENTED": {"_count": 1, "The": {"_count": 1, "hottest": {"_count": 1}}}, "hottest": {"_count": 1, "day": {"_count": 1, "of": {"_count": 1}}}, "Cars": {"_count": 1, "that": {"_count": 1, "were": {"_count": 1}}}, "parched": {"_count": 2, "and": {"_count": 1, "yellowing": {"_count": 1}}, "grass": {"_count": 1, "": {"_count": 1}}}, "hosepipes": {"_count": 1, "had": {"_count": 1, "been": {"_count": 1}}}, "drought": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "carwashing": {"_count": 1, "and": {"_count": 1, "lawnmowing": {"_count": 1}}}, "lawnmowing": {"_count": 1, "pursuits": {"_count": 1, "the": {"_count": 1}}}, "tempting": {"_count": 3, "in": {"_count": 1, "a": {"_count": 1}}, "offer": {"_count": 1, "though": {"_count": 1}}, "objects": {"_count": 1, "you": {"_count": 1}}}, "nonexistent": {"_count": 5, "breeze": {"_count": 1, "": {"_count": 1}}, "lawn": {"_count": 1, "competition": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "blackberries": {"_count": 1, "they": {"_count": 1}}}, "unhealthy": {"_count": 4, "look": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "even": {"_count": 2, "sinister": {"_count": 2}}}, "trainers": {"_count": 11, "were": {"_count": 1, "peeling": {"_count": 1}}, "Hedwig": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "examined": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "jumped": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "are": {"_count": 1, "too": {"_count": 1}}, "slippery": {"_count": 1, "with": {"_count": 1}}, "by": {"_count": 1, "magic": {"_count": 1}}}, "uppers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "endear": {"_count": 1, "him": {"_count": 1, "to": {"_count": 1}}}, "scruffiness": {"_count": 1, "ought": {"_count": 1, "to": {"_count": 1}}}, "punishable": {"_count": 1, "by": {"_count": 1, "law": {"_count": 1}}}, "hydrangea": {"_count": 2, "bush": {"_count": 2, "this": {"_count": 1}, "straightened": {"_count": 1}}}, "shh": {"_count": 2, "said": {"_count": 2, "Aunt": {"_count": 1}, "Hermione": {"_count": 1}}}, "jingle": {"_count": 1, "about": {"_count": 1, "Fruit": {"_count": 1}}}, "Fruit": {"_count": 1, "N": {"_count": 1, "Bran": {"_count": 1}}}, "Bran": {"_count": 1, "breakfast": {"_count": 1, "cereal": {"_count": 1}}}, "catloving": {"_count": 1, "old": {"_count": 1, "lady": {"_count": 1}}}, "Wisteria": {"_count": 7, "Walk": {"_count": 7, "amble": {"_count": 1}, "": {"_count": 3}, "surely": {"_count": 1}, "said": {"_count": 1}, "shortly": {"_count": 1}}}, "amble": {"_count": 1, "slowly": {"_count": 1, "past": {"_count": 1}}}, "Polkisses": {"_count": 1, "said": {"_count": 1, "Aunt": {"_count": 1}}}, "dimwitted": {"_count": 3, "lies": {"_count": 1, "about": {"_count": 1}}, "troll": {"_count": 1, "just": {"_count": 1}}, "but": {"_count": 1, "devoted": {"_count": 1}}}, "vandalizing": {"_count": 1, "the": {"_count": 1, "play": {"_count": 1}}}, "walks": {"_count": 2, "around": {"_count": 1, "Little": {"_count": 1}}, "past": {"_count": 1, "he": {"_count": 1}}}, "scavenging": {"_count": 3, "newspapers": {"_count": 1, "from": {"_count": 1}}, "little": {"_count": 1, "creature": {"_count": 1}}, "thestrals": {"_count": 1, "were": {"_count": 1}}}, "bins": {"_count": 3, "along": {"_count": 1, "the": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}}, "heralded": {"_count": 1, "the": {"_count": 1, "seven": {"_count": 1}}}, "Record": {"_count": 2, "numbers": {"_count": 1, "of": {"_count": 1}}, "holder": {"_count": 1, "for": {"_count": 1}}}, "holidaymakers": {"_count": 2, "fill": {"_count": 1, "airports": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "airports": {"_count": 1, "as": {"_count": 1, "the": {"_count": 1}}}, "Spanish": {"_count": 2, "baggagehandlers": {"_count": 1, "strike": {"_count": 1}}, "oak": {"_count": 1, "with": {"_count": 1}}}, "baggagehandlers": {"_count": 2, "strike": {"_count": 2, "reaches": {"_count": 1}, "was": {"_count": 1}}}, "lifelong": {"_count": 4, "siesta": {"_count": 1, "I": {"_count": 1}}, "ban": {"_count": 2, "ought": {"_count": 1}, "": {"_count": 1}}, "feuds": {"_count": 1, "and": {"_count": 1}}}, "siesta": {"_count": 1, "I": {"_count": 1, "would": {"_count": 1}}}, "newsreaders": {"_count": 1, "sentence": {"_count": 1, "but": {"_count": 1}}}, "item": {"_count": 4, "on": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "barely": {"_count": 1}}, "to": {"_count": 1, "which": {"_count": 1}}, "so": {"_count": 1, "rare": {"_count": 1}}}, "destruction": {"_count": 8, "were": {"_count": 1, "more": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "of": {"_count": 3, "this": {"_count": 1}, "the": {"_count": 1}, "his": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "would": {"_count": 1, "require": {"_count": 1}}}, "expectation": {"_count": 2, "the": {"_count": 1, "temporary": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "insistent": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "unexplained": {"_count": 1, "disappearance": {"_count": 1, "perhaps": {"_count": 1}}}, "Southeast": {"_count": 2, "I": {"_count": 1, "hope": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sprinklers": {"_count": 1, "on": {"_count": 1, "at": {"_count": 1}}}, "helicopter": {"_count": 1, "that": {"_count": 1, "had": {"_count": 1}}}, "actresss": {"_count": 1, "divorce": {"_count": 1, "from": {"_count": 1}}}, "divorce": {"_count": 1, "from": {"_count": 1, "her": {"_count": 1}}}, "sordid": {"_count": 2, "affairs": {"_count": 1, "sniffed": {"_count": 1}}, "matters": {"_count": 1, "as": {"_count": 1}}}, "obsessively": {"_count": 1, "in": {"_count": 1, "every": {"_count": 1}}}, "newsreader": {"_count": 1, "said": {"_count": 1, "And": {"_count": 1}}}, "Bungy": {"_count": 2, "the": {"_count": 1, "budgie": {"_count": 1}}, "who": {"_count": 1, "lives": {"_count": 1}}}, "budgie": {"_count": 1, "has": {"_count": 1, "found": {"_count": 1}}}, "novel": {"_count": 2, "way": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "anyway": {"_count": 1}}}, "Feathers": {"_count": 1, "in": {"_count": 1, "Barnsley": {"_count": 1}}}, "Barnsley": {"_count": 1, "has": {"_count": 1, "learned": {"_count": 1}}}, "waterski": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Mary": {"_count": 6, "Dorkins": {"_count": 1, "went": {"_count": 1}}, "Cattermole": {"_count": 1, "called": {"_count": 1}}, "Elizabeth": {"_count": 1, "Cattermole": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "Macdonald": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}}, "Dorkins": {"_count": 1, "went": {"_count": 1, "to": {"_count": 1}}}, "waterskiing": {"_count": 2, "budgerigars": {"_count": 2, "there": {"_count": 1}, "": {"_count": 1}}}, "budgerigars": {"_count": 2, "there": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "oath": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "unsheathing": {"_count": 1, "a": {"_count": 1, "sword": {"_count": 1}}}, "resultant": {"_count": 3, "crash": {"_count": 1, "made": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "knot": {"_count": 1, "took": {"_count": 1}}}, "maintaining": {"_count": 8, "a": {"_count": 2, "firm": {"_count": 1}, "onehanded": {"_count": 1}}, "the": {"_count": 3, "highpass": {"_count": 1}, "ring": {"_count": 1}, "same": {"_count": 1}}, "his": {"_count": 2, "tight": {"_count": 1}, "grip": {"_count": 1}}, "an": {"_count": 1, "unnaturally": {"_count": 1}}}, "backfire": {"_count": 2, "just": {"_count": 1, "now": {"_count": 1}}, "like": {"_count": 1, "this": {"_count": 1}}}, "pistol": {"_count": 1, "right": {"_count": 1, "outside": {"_count": 1}}}, "horsey": {"_count": 3, "face": {"_count": 2, "now": {"_count": 1}, "registered": {"_count": 1}}, "teeth": {"_count": 1, "": {"_count": 1}}}, "Listening": {"_count": 3, "to": {"_count": 3, "the": {"_count": 2}, "Snapes": {"_count": 1}}}, "lipread": {"_count": 1, "the": {"_count": 1, "next": {"_count": 1}}}, "pestilential": {"_count": 2, "birds": {"_count": 1, "": {"_count": 1}}, "school": {"_count": 1, "you": {"_count": 1}}}, "begonias": {"_count": 2, "he": {"_count": 1, "was": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "peaked": {"_count": 3, "his": {"_count": 1, "certainty": {"_count": 1}}, "too": {"_count": 1, "soon": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "overreacting": {"_count": 1, "to": {"_count": 1, "perfectly": {"_count": 1}}}, "hopelessness": {"_count": 7, "that": {"_count": 1, "had": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "spread": {"_count": 1, "through": {"_count": 1}}, "filling": {"_count": 1, "him": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "engulfed": {"_count": 1, "Harry": {"_count": 1}}, "was": {"_count": 1, "spreading": {"_count": 1}}}, "plagued": {"_count": 1, "him": {"_count": 1, "all": {"_count": 1}}}, "youknowwhat": {"_count": 2, "obviously": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "miles": {"_count": 1}}}, "unopened": {"_count": 1, "though": {"_count": 1, "he": {"_count": 1}}}, "regretted": {"_count": 7, "this": {"_count": 2, "after": {"_count": 1}, "generosity": {"_count": 1}}, "it": {"_count": 2, "almost": {"_count": 1}, "very": {"_count": 1}}, "giving": {"_count": 1, "this": {"_count": 1}}, "Muggles": {"_count": 1, "murdered": {"_count": 1}}, "his": {"_count": 1, "action": {"_count": 1}}}, "wilting": {"_count": 1, "salad": {"_count": 1, "Aunt": {"_count": 1}}}, "revisiting": {"_count": 1, "the": {"_count": 1, "graveyard": {"_count": 1}}}, "admittedly": {"_count": 6, "his": {"_count": 1, "letters": {"_count": 1}}, "the": {"_count": 1, "flobberworms": {"_count": 1}}, "had": {"_count": 1, "taken": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "not": {"_count": 1, "one": {"_count": 1}}}, "consolation": {"_count": 2, "instead": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "tantalizing": {"_count": 2, "hints": {"_count": 1, "I": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}}, "frustrating": {"_count": 2, "for": {"_count": 1, "you": {"_count": 1}}, "watching": {"_count": 1, "from": {"_count": 1}}}, "galling": {"_count": 1, "to": {"_count": 1, "be": {"_count": 1}}}, "swings": {"_count": 4, "he": {"_count": 2, "sank": {"_count": 1}, "lowered": {"_count": 1}}, "at": {"_count": 1, "me": {"_count": 1}}, "but": {"_count": 1, "Lily": {"_count": 1}}}, "coiled": {"_count": 7, "one": {"_count": 1, "arm": {"_count": 1}}, "snakeskin": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "then": {"_count": 1, "spread": {"_count": 1}}, "snakelike": {"_count": 1, "from": {"_count": 1}}, "itself": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 1, "uncoiled": {"_count": 1}}}, "unsettling": {"_count": 1, "dreams": {"_count": 1, "about": {"_count": 1}}}, "Often": {"_count": 2, "the": {"_count": 1, "old": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}}, "squatting": {"_count": 2, "among": {"_count": 1, "dying": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "grumble": {"_count": 2, "of": {"_count": 2, "traffic": {"_count": 1}, "cars": {"_count": 1}}}, "railings": {"_count": 7, "": {"_count": 3, ".": {"_count": 3}}, "separated": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}, "facing": {"_count": 1, "numbers": {"_count": 1}}, "flanking": {"_count": 1, "two": {"_count": 1}}}, "streetlamps": {"_count": 11, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "at": {"_count": 1, "either": {"_count": 1}}, "burst": {"_count": 1, "back": {"_count": 1}}, "chimneys": {"_count": 1, "and": {"_count": 1}}, "paint": {"_count": 1, "was": {"_count": 1}}, "they": {"_count": 1, "flew": {"_count": 1}}, "were": {"_count": 1, "broken": {"_count": 1}}, "and": {"_count": 1, "lit": {"_count": 1}}}, "roads": {"_count": 4, "were": {"_count": 1, "casting": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "bordered": {"_count": 1, "by": {"_count": 1}}, "and": {"_count": 1, "rivers": {"_count": 1}}}, "bikes": {"_count": 4, "that": {"_count": 1, "they": {"_count": 1}}, "exhaust": {"_count": 1, "but": {"_count": 1}}, "slipstream": {"_count": 1, "": {"_count": 1}}, "flight": {"_count": 1, "then": {"_count": 1}}}, "wending": {"_count": 3, "his": {"_count": 2, "way": {"_count": 2}}, "their": {"_count": 1, "way": {"_count": 1}}}, "dieting": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "physique": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Heavyweight": {"_count": 1, "InterSchool": {"_count": 1, "Boxing": {"_count": 1}}}, "InterSchool": {"_count": 1, "Boxing": {"_count": 1, "Champion": {"_count": 1}}}, "primary": {"_count": 4, "school": {"_count": 2, "days": {"_count": 1}, "": {"_count": 1}}, "aim": {"_count": 1, "is": {"_count": 1}}, "colors": {"_count": 1, "": {"_count": 1}}}, "accurately": {"_count": 3, "was": {"_count": 1, "cause": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "having": {"_count": 1, "taken": {"_count": 1}}}, "Neighborhood": {"_count": 1, "children": {"_count": 1, "all": {"_count": 1}}}, "hooligan": {"_count": 1, "who": {"_count": 1, "attended": {"_count": 1}}}, "beeline": {"_count": 2, "for": {"_count": 1, "him": {"_count": 1}}, "straight": {"_count": 1, "for": {"_count": 1}}}, "provoking": {"_count": 2, "Harry": {"_count": 1, "": {"_count": 1}}, "Ron": {"_count": 1, "into": {"_count": 1}}}, "dilemma": {"_count": 2, "to": {"_count": 1, "taunt": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}}, "vent": {"_count": 2, "some": {"_count": 1, "of": {"_count": 1}}, "her": {"_count": 1, "spleen": {"_count": 1}}}, "Seeking": {"_count": 3, "a": {"_count": 1, "fight": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "gloss": {"_count": 1}}}, "risking": {"_count": 6, "expulsion": {"_count": 1, "again": {"_count": 1}}, "his": {"_count": 1, "life": {"_count": 1}}, "much": {"_count": 1, "worse": {"_count": 1}}, "your": {"_count": 1, "neck": {"_count": 1}}, "our": {"_count": 1, "lives": {"_count": 1}}, "their": {"_count": 1, "own": {"_count": 1}}}, "gangs": {"_count": 3, "voices": {"_count": 1, "died": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "manicured": {"_count": 2, "lawns": {"_count": 1, "all": {"_count": 1}}, "hedge": {"_count": 1, "": {"_count": 1}}}, "householders": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "farewells": {"_count": 3, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "hugging": {"_count": 1, "the": {"_count": 1}}}, "guffaws": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "Round": {"_count": 1, "at": {"_count": 1, "my": {"_count": 1}}}, "Dud": {"_count": 3, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "thats": {"_count": 1, "true": {"_count": 1}}}, "ya": {"_count": 3, "Big": {"_count": 1, "D": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Snivellus": {"_count": 1, "": {"_count": 1}}}, "hailing": {"_count": 1, "distance": {"_count": 1, "of": {"_count": 1}}}, "tunelessly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Big": {"_count": 1, "D": {"_count": 1, "then": {"_count": 1}}}, "Diddykins": {"_count": 3, "to": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "hamlike": {"_count": 2, "hands": {"_count": 1, "had": {"_count": 1}}, "hand": {"_count": 1, "to": {"_count": 1}}}, "\u2018popkin": {"_count": 1, "and": {"_count": 1, "\u2018Dinky": {"_count": 1}}}, "\u2018Dinky": {"_count": 1, "Diddydums": {"_count": 1, "can": {"_count": 1}}}, "Diddydums": {"_count": 1, "can": {"_count": 1, "I": {"_count": 1}}}, "selfcontrol": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tenyearold": {"_count": 2, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "Evans": {"_count": 12, "two": {"_count": 1, "nights": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 2}, "!": {"_count": 3}, ".": {"_count": 1}}, "said": {"_count": 1, "James": {"_count": 1}}, "dont": {"_count": 1, "make": {"_count": 1}}, "was": {"_count": 1, "here": {"_count": 1}}, "Lily": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}}, "cheeked": {"_count": 2, "me": {"_count": 1, "": {"_count": 1}}, "blackhaired": {"_count": 1, "witch": {"_count": 1}}}, "siphoning": {"_count": 2, "off": {"_count": 1, "his": {"_count": 1}}, "the": {"_count": 1, "ink": {"_count": 1}}}, "outlet": {"_count": 1, "he": {"_count": 1, "had": {"_count": 1}}}, "Whereas": {"_count": 4, "you": {"_count": 1, "just": {"_count": 1}}, "Bill": {"_count": 1, "and": {"_count": 1}}, "Sirius": {"_count": 1, "had": {"_count": 1}}, "the": {"_count": 1, "wand": {"_count": 1}}}, "mates": {"_count": 7, "behind": {"_count": 1, "you": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "grabbed": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "to": {"_count": 1, "eat": {"_count": 1}}, "get": {"_count": 1, "up": {"_count": 1}}}, "boxing": {"_count": 2, "title": {"_count": 1, "you": {"_count": 1}}, "champ": {"_count": 1, "frightened": {"_count": 1}}}, "champ": {"_count": 1, "frightened": {"_count": 1, "of": {"_count": 1}}}, "revisited": {"_count": 1, "the": {"_count": 1, "graveyard": {"_count": 1}}}, "\u2018Dont": {"_count": 4, "kill": {"_count": 1, "Cedric": {"_count": 1}}, "forget": {"_count": 1, "to": {"_count": 1}}, "go": {"_count": 1, "looking": {"_count": 1}}, "hurt": {"_count": 1, "them": {"_count": 1}}}, "boyfriend": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "Tad": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Boo": {"_count": 1, "hoo": {"_count": 1, "": {"_count": 1}}}, "hoo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "dumb": {"_count": 5, "sprouting": {"_count": 1, "feelers": {"_count": 1}}, "midcroak": {"_count": 1, "and": {"_count": 1}}, "Order": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "THING": {"_count": 4, "AWAY": {"_count": 1, "FROM": {"_count": 1}}, "LAST": {"_count": 1, "YEAR": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "doused": {"_count": 3, "in": {"_count": 1, "icy": {"_count": 1}}, "her": {"_count": 1, "with": {"_count": 1}}, "Harrys": {"_count": 1, "jubilation": {"_count": 1}}}, "indigo": {"_count": 3, "sky": {"_count": 1, "was": {"_count": 1}}, "streaked": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 1, "still": {"_count": 1}}}, "lightless": {"_count": 1, "the": {"_count": 1, "stars": {"_count": 1}}}, "balmy": {"_count": 3, "evening": {"_count": 2, "was": {"_count": 1}, "air": {"_count": 1}}, "days": {"_count": 1, "slid": {"_count": 1}}}, "bitingly": {"_count": 1, "cold": {"_count": 1, "": {"_count": 1}}}, "mantle": {"_count": 2, "over": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "they": {"_count": 1}}}, "ddoing": {"_count": 2, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}}, "Ststop": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "ggone": {"_count": 2, "blind": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "unseeing": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wwhere": {"_count": 1, "are": {"_count": 1, "you": {"_count": 1}}}, "ddo": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "whatever": {"_count": 1, "it": {"_count": 1}}}, "lis": {"_count": 1, "But": {"_count": 1, "he": {"_count": 1}}}, "Ccut": {"_count": 1, "it": {"_count": 1, "out": {"_count": 1}}}, "hhit": {"_count": 1, "you": {"_count": 1, "I": {"_count": 1}}}, "cleaved": {"_count": 2, "in": {"_count": 1, "two": {"_count": 1}}, "Harrys": {"_count": 1, "head": {"_count": 1}}}, "RUNNING": {"_count": 2, "RIGHT": {"_count": 1, "AT": {"_count": 1}}, "A": {"_count": 1, "HIDEOUT": {"_count": 1}}}, "MOUTH": {"_count": 2, "SHUT": {"_count": 2, "": {"_count": 2}}}, "WHATEVER": {"_count": 1, "YOU": {"_count": 1, "DO": {"_count": 1}}}, "Stumbling": {"_count": 1, "backward": {"_count": 1, "Harry": {"_count": 1}}}, "Patronurrd": {"_count": 1, "A": {"_count": 1, "silvery": {"_count": 1}}}, "fogging": {"_count": 3, "his": {"_count": 1, "brain": {"_count": 1}}, "them": {"_count": 1, "up": {"_count": 1}}, "the": {"_count": 1, "surface": {"_count": 1}}}, "PatronumV": {"_count": 1, "His": {"_count": 1, "voice": {"_count": 1}}}, "feebler": {"_count": 3, "than": {"_count": 1, "the": {"_count": 1}}, "sentences": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}}, "deathcold": {"_count": 1, "breath": {"_count": 1, "filling": {"_count": 1}}}, "prizing": {"_count": 1, "them": {"_count": 1, "slowly": {"_count": 1}}}, "eyeless": {"_count": 3, "face": {"_count": 1, "was": {"_count": 1}}, "faces": {"_count": 1, "hidden": {"_count": 1}}, "dementors": {"_count": 1, "to": {"_count": 1}}}, "Trees": {"_count": 4, "rustled": {"_count": 1, "in": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "uprooted": {"_count": 1, "roofs": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "normality": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "newcomer": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "through": {"_count": 1, "the": {"_count": 1}}}, "hairnet": {"_count": 1, "a": {"_count": 1, "clanking": {"_count": 1}}}, "stow": {"_count": 3, "his": {"_count": 1, "wand": {"_count": 1}}, "them": {"_count": 1, "back": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "PECK": {"_count": 1, "OF": {"_count": 1, "OWLS": {"_count": 1}}}, "OWLS": {"_count": 7, "What": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}, "AGAIN": {"_count": 1, "": {"_count": 1}}, "IN": {"_count": 1, "MY": {"_count": 1}}, "HERE": {"_count": 1, "I": {"_count": 1}}}, "revelation": {"_count": 2, "that": {"_count": 1, "his": {"_count": 1}}, "or": {"_count": 1, "taunt": {"_count": 1}}}, "catobsessed": {"_count": 1, "neighbor": {"_count": 1, "knew": {"_count": 1}}}, "supine": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "teabag": {"_count": 1, "She": {"_count": 1, "stooped": {"_count": 1}}}, "beading": {"_count": 1, "his": {"_count": 1, "face": {"_count": 1}}}, "hanged": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "Prentice": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "independent": {"_count": 1, "movement": {"_count": 1, "": {"_count": 1}}}, "detecting": {"_count": 1, "underage": {"_count": 1, "magic": {"_count": 1}}}, "MUNDUNGUS": {"_count": 1, "FLETCHER": {"_count": 1, "I": {"_count": 1}}}, "FLETCHER": {"_count": 1, "I": {"_count": 1, "AM": {"_count": 1}}}, "GOING": {"_count": 5, "TO": {"_count": 2, "KILL": {"_count": 1}, "ACT": {"_count": 1}}, "ON": {"_count": 2, "": {"_count": 1}, "We": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "tobacco": {"_count": 3, "filled": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "spirits": {"_count": 1}}, "smoke": {"_count": 1, "His": {"_count": 1}}}, "straggly": {"_count": 4, "ginger": {"_count": 2, "hair": {"_count": 2}}, "waistlength": {"_count": 1, "dirtyblond": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "doleful": {"_count": 2, "look": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 1, "from": {"_count": 1}}}, "basset": {"_count": 2, "hound": {"_count": 1, "he": {"_count": 1}}, "hounds": {"_count": 1, "eyes": {"_count": 1}}}, "hound": {"_count": 1, "he": {"_count": 1, "was": {"_count": 1}}}, "Figgy": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "since": {"_count": 1, "": {"_count": 1}}}, "undercover": {"_count": 5, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "before": {"_count": 1, "we": {"_count": 1}}, "and": {"_count": 1, "this": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "dangled": {"_count": 8, "and": {"_count": 1, "whacked": {"_count": 1}}, "helplessly": {"_count": 1, "upside": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "over": {"_count": 3, "the": {"_count": 3}}, "beneath": {"_count": 1, "the": {"_count": 1}}, "empty": {"_count": 1, "and": {"_count": 1}}}, "gerroff": {"_count": 3, "gerroff": {"_count": 1, "you": {"_count": 1}}, "you": {"_count": 1, "mad": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "airnet": {"_count": 1, "on": {"_count": 1, "": {"_count": 1}}}, "semiconscious": {"_count": 2, "Dudley": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "catastrophe": {"_count": 4, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "couldnt": {"_count": 1, "it": {"_count": 1}}}, "distorted": {"_count": 8, "by": {"_count": 3, "the": {"_count": 1}, "suppressed": {"_count": 1}, "Hermiones": {"_count": 1}}, "reflection": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "the": {"_count": 1}}, "shadow": {"_count": 1, "and": {"_count": 1}}}, "vomited": {"_count": 2, "all": {"_count": 1, "over": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "DIDDY": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "VERNON": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "galumphing": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "negotiate": {"_count": 2, "a": {"_count": 1, "weakkneed": {"_count": 1}}, "while": {"_count": 1, "wearing": {"_count": 1}}}, "weakkneed": {"_count": 2, "Dudley": {"_count": 1, "over": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "mugged": {"_count": 1, "have": {"_count": 1, "you": {"_count": 1}}}, "Phone": {"_count": 2, "the": {"_count": 2, "police": {"_count": 2}}}, "kerfuffle": {"_count": 1, "nobody": {"_count": 1, "seemed": {"_count": 1}}}, "scrupulously": {"_count": 3, "clean": {"_count": 1, "kitchen": {"_count": 1}}, "against": {"_count": 1, "carelessness": {"_count": 1}}, "dropping": {"_count": 1, "the": {"_count": 1}}}, "youknow": {"_count": 1, "what": {"_count": 1, "darling": {"_count": 1}}}, "Narrowly": {"_count": 1, "missing": {"_count": 1, "the": {"_count": 1}}}, "wellworn": {"_count": 1, "vein": {"_count": 1, "in": {"_count": 1}}}, "ANY": {"_count": 1, "MORE": {"_count": 1, "OWLS": {"_count": 1}}}, "Adams": {"_count": 4, "apple": {"_count": 4, "": {"_count": 4}}}, "twentythree": {"_count": 3, "minutes": {"_count": 2, "past": {"_count": 2}}, "Hermione": {"_count": 1, "said": {"_count": 1}}}, "Muggleinhabited": {"_count": 2, "area": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}}, "breach": {"_count": 6, "of": {"_count": 4, "the": {"_count": 3}, "Wizarding": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "Pierre": {"_count": 1}}}, "disciplinary": {"_count": 4, "hearing": {"_count": 4, "at": {"_count": 1}, "on": {"_count": 1}, "": {"_count": 1}, "this": {"_count": 1}}}, "12th": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "August": {"_count": 1, "at": {"_count": 1}}}, "vicinity": {"_count": 10, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "jump": {"_count": 1, "": {"_count": 1}}, "yelled": {"_count": 1, "IMPEDIMENTA": {"_count": 1}}, "to": {"_count": 1, "stare": {"_count": 1}}, "working": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "no": {"_count": 1}}, "offered": {"_count": 1, "to": {"_count": 1}}}, "penetrated": {"_count": 8, "his": {"_count": 1, "consciousness": {"_count": 1}}, "during": {"_count": 1, "his": {"_count": 1}}, "many": {"_count": 1, "more": {"_count": 1}}, "by": {"_count": 1, "hand": {"_count": 1}}, "within": {"_count": 1, "Gringotts": {"_count": 1}}, "the": {"_count": 1, "deepest": {"_count": 1}}, "Hogwarts": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "retching": {"_count": 9, "again": {"_count": 1, "": {"_count": 1}}, "noises": {"_count": 2, "behind": {"_count": 1}, "Hermione": {"_count": 1}}, "cheering": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "downstairs": {"_count": 1}}, "slightly": {"_count": 1, "": {"_count": 1}}, "plus": {"_count": 1, "a": {"_count": 1}}, "soaking": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dreamlike": {"_count": 3, "state": {"_count": 1, "he": {"_count": 1}}, "across": {"_count": 1, "two": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "madhouse": {"_count": 2, "you": {"_count": 1, "call": {"_count": 1}}, "has": {"_count": 1, "chucked": {"_count": 1}}}, "CRACK": {"_count": 2, "filled": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "Disapparated": {"_count": 1}}}, "UNCLES": {"_count": 2, "HOUSE": {"_count": 2, "": {"_count": 2}}}, "ANYMORE": {"_count": 2, "MAGIC": {"_count": 1, "": {"_count": 1}}, "He": {"_count": 1, "seized": {"_count": 1}}}, "SURRENDER": {"_count": 1, "YOUR": {"_count": 1, "WAND": {"_count": 1}}}, "WAND": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "The": {"_count": 1, "world": {"_count": 1}}}, "override": {"_count": 1, "the": {"_count": 1, "Ministry": {"_count": 1}}}, "burgeoned": {"_count": 1, "in": {"_count": 1, "Harrys": {"_count": 1}}}, "surrender": {"_count": 3, "his": {"_count": 1, "wand": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "elapsed": {"_count": 1}}}, "government": {"_count": 5, "": {"_count": 1, "?": {"_count": 1}}, "supposed": {"_count": 1, "to": {"_count": 1}}, "should": {"_count": 1, "have": {"_count": 1}}, "departments": {"_count": 1, "under": {"_count": 1}}, "protection": {"_count": 1, "": {"_count": 1}}}, "AHA": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "lowfat": {"_count": 1, "snacks": {"_count": 1, "toppled": {"_count": 1}}}, "gestures": {"_count": 3, "at": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "unable": {"_count": 1}}}, "Pointed": {"_count": 1, "his": {"_count": 1, "wand": {"_count": 1}}}, "hheard": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mmy": {"_count": 6, "head": {"_count": 1, "": {"_count": 1}}, "hhome": {"_count": 1, "": {"_count": 1}}, "Lord": {"_count": 4, "gasped": {"_count": 1}, "": {"_count": 3}}}, "cheated": {"_count": 3, "more": {"_count": 1, "than": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "hosepipe": {"_count": 2, "ban": {"_count": 1, "people": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "ban": {"_count": 9, "people": {"_count": 1, "who": {"_count": 1}}, "these": {"_count": 1, "two": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "worry": {"_count": 1}}, "on": {"_count": 1, "any": {"_count": 1}}, "you": {"_count": 1, "from": {"_count": 1}}}, "pampered": {"_count": 2, "bullying": {"_count": 1, "Dudley": {"_count": 1}}, "little": {"_count": 1, "prince": {"_count": 1}}}, "Ttripped": {"_count": 1, "said": {"_count": 1, "Dudley": {"_count": 1}}}, "Felt": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "doomed": {"_count": 2, "to": {"_count": 1, "misery": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "codswallop": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "De": {"_count": 1, "men": {"_count": 1, "tors": {"_count": 1}}}, "tors": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "scrap": {"_count": 3, "of": {"_count": 2, "information": {"_count": 1}, "folded": {"_count": 1}}, "parchment": {"_count": 1, "": {"_count": 1}}}, "dementy": {"_count": 1, "whatsits": {"_count": 1, "": {"_count": 1}}}, "whatsits": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "stillopen": {"_count": 2, "window": {"_count": 1, "like": {"_count": 1}}, "fireplace": {"_count": 1, "and": {"_count": 1}}}, "effing": {"_count": 4, "owls": {"_count": 1, "": {"_count": 1}}, "difficult": {"_count": 1, "": {"_count": 1}}, "near": {"_count": 1, "in": {"_count": 1}}, "thing": {"_count": 1, "back": {"_count": 1}}}, "approximately": {"_count": 1, "twentytwo": {"_count": 1, "minutes": {"_count": 1}}}, "twentytwo": {"_count": 3, "minutes": {"_count": 2, "ago": {"_count": 1}, "of": {"_count": 1}}, "twenty": {"_count": 1, "three": {"_count": 1}}}, "revised": {"_count": 1, "its": {"_count": 1, "decision": {"_count": 1}}}, "forthwith": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "retain": {"_count": 1, "your": {"_count": 1, "wand": {"_count": 1}}}, "Following": {"_count": 2, "discussions": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "resignation": {"_count": 1}}}, "pending": {"_count": 1, "further": {"_count": 1, "inquiries": {"_count": 1}}}, "SIT": {"_count": 1, "BACK": {"_count": 1, "DOWN": {"_count": 1}}}, "FINE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "dementoids": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "doing": {"_count": 1, "in": {"_count": 1}}}, "Fought": {"_count": 1, "em": {"_count": 1, "off": {"_count": 1}}}, "plane": {"_count": 1, "he": {"_count": 1, "understood": {"_count": 1}}}, "onetwo": {"_count": 2, "did": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "GODS": {"_count": 1, "SAKE": {"_count": 1, "": {"_count": 1}}}, "SAKE": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "TELL": {"_count": 2, "YOU": {"_count": 1, "": {"_count": 1}}, "ME": {"_count": 1, "WHATS": {"_count": 1}}}, "ongoing": {"_count": 3, "rant": {"_count": 1, "about": {"_count": 1}}, "battles": {"_count": 1, "with": {"_count": 1}}, "exchange": {"_count": 1, "of": {"_count": 1}}}, "inadequate": {"_count": 3, "response": {"_count": 1, "to": {"_count": 1}}, "helping": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "misbehaved": {"_count": 1, "and": {"_count": 1, "they": {"_count": 1}}}, "tellingsoff": {"_count": 1, "until": {"_count": 1, "they": {"_count": 1}}}, "ascertain": {"_count": 1, "how": {"_count": 1, "much": {"_count": 1}}}, "peck": {"_count": 1, "I": {"_count": 1, "mean": {"_count": 1}}}, "demenders": {"_count": 1, "who": {"_count": 1, "hurt": {"_count": 1}}}, "knowwhat": {"_count": 2, "youve": {"_count": 1, "admitted": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "coincidence": {"_count": 8, "that": {"_count": 1, "they": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "it": {"_count": 1, "happened": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "helped": {"_count": 1, "found": {"_count": 1}}, "irrelevant": {"_count": 1, "perhaps": {"_count": 1}}}, "demembers": {"_count": 1, "guard": {"_count": 1, "some": {"_count": 1}}}, "lumbering": {"_count": 5, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "away": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 1, "in": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "Oho": {"_count": 8, "": {"_count": 5, "!": {"_count": 5}}, "he": {"_count": 1, "said": {"_count": 1}}, "said": {"_count": 2, "Slughorn": {"_count": 1}, "Dumbledore": {"_count": 1}}}, "unassailable": {"_count": 2, "conclusion": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tremor": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "another": {"_count": 1, "giant": {"_count": 1}}}, "Murdered": {"_count": 2, "my": {"_count": 1, "parents": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}}, "surgically": {"_count": 1, "clean": {"_count": 1, "kitchen": {"_count": 1}}}, "topof": {"_count": 1, "therange": {"_count": 1, "fridge": {"_count": 1}}}, "therange": {"_count": 1, "fridge": {"_count": 1, "and": {"_count": 1}}}, "widescreen": {"_count": 1, "television": {"_count": 1, "and": {"_count": 1}}}, "relentlessly": {"_count": 5, "nonmagical": {"_count": 1, "world": {"_count": 1}}, "on": {"_count": 2, "every": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fused": {"_count": 2, "and": {"_count": 1, "everything": {"_count": 1}}, "together": {"_count": 1, "bound": {"_count": 1}}}, "throbbed": {"_count": 7, "more": {"_count": 1, "painfully": {"_count": 1}}, "and": {"_count": 1, "bled": {"_count": 1}}, "with": {"_count": 1, "life": {"_count": 1}}, "inside": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "chose": {"_count": 1}}}, "leatherclad": {"_count": 1, "shoulders": {"_count": 1, "and": {"_count": 1}}}, "unprecedented": {"_count": 4, "understanding": {"_count": 1, "that": {"_count": 1}}, "level": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "no": {"_count": 1}}}, "sprung": {"_count": 7, "up": {"_count": 4, "between": {"_count": 1}, "among": {"_count": 1}, "along": {"_count": 1}, "around": {"_count": 1}}, "on": {"_count": 1, "him": {"_count": 1}}, "alive": {"_count": 1, "leaping": {"_count": 1}}, "into": {"_count": 1, "being": {"_count": 1}}}, "Voldythings": {"_count": 1, "back": {"_count": 1, "you": {"_count": 1}}}, "dismembers": {"_count": 1, "after": {"_count": 1, "you": {"_count": 1}}}, "hitching": {"_count": 3, "up": {"_count": 1, "his": {"_count": 1}}, "her": {"_count": 1, "bag": {"_count": 1}}, "his": {"_count": 1, "bag": {"_count": 1}}}, "loonys": {"_count": 1, "after": {"_count": 1, "you": {"_count": 1}}}, "endangering": {"_count": 1, "my": {"_count": 1, "wife": {"_count": 1}}}, "LEA": {"_count": 1, "VE": {"_count": 1, "YOUR": {"_count": 1}}}, "UNT": {"_count": 1, "AND": {"_count": 1, "UNCLES": {"_count": 1}}}, "darken": {"_count": 1, "our": {"_count": 1, "doorstep": {"_count": 1}}}, "Kitchen": {"_count": 1, "Number": {"_count": 1, "Four": {"_count": 1}}}, "confined": {"_count": 4, "space": {"_count": 1, "issuing": {"_count": 1}}, "itself": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "allow": {"_count": 1}, "the": {"_count": 1}}}, "REMEMBER": {"_count": 1, "MY": {"_count": 1, "LAST": {"_count": 1}}}, "PETUNIA": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "smoldered": {"_count": 1, "into": {"_count": 1, "ash": {"_count": 1}}}, "brisk": {"_count": 8, "snappish": {"_count": 1, "manner": {"_count": 1}}, "female": {"_count": 1, "one": {"_count": 1}}, "crisp": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "pace": {"_count": 2, "down": {"_count": 1}, "past": {"_count": 1}}, "how": {"_count": 1, "are": {"_count": 1}}, "walk": {"_count": 1, "down": {"_count": 1}}}, "snappish": {"_count": 1, "manner": {"_count": 1, "rapidly": {"_count": 1}}}, "deflating": {"_count": 2, "like": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "HEARD": {"_count": 1, "YOUR": {"_count": 1, "AUNT": {"_count": 1}}}, "ADVANCED": {"_count": 1, "GUARD": {"_count": 1, "Fve": {"_count": 1}}}, "GUARD": {"_count": 1, "Fve": {"_count": 1, "just": {"_count": 1}}}, "Fve": {"_count": 2, "just": {"_count": 2, "been": {"_count": 1}, "come": {"_count": 1}}}, "itched": {"_count": 1, "with": {"_count": 1, "tiredness": {"_count": 1}}}, "ached": {"_count": 7, "from": {"_count": 1, "carrying": {"_count": 1}}, "he": {"_count": 2, "found": {"_count": 1}, "felt": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "with": {"_count": 2, "sadness": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "starstrewn": {"_count": 2, "sky": {"_count": 2, "every": {"_count": 1}, "": {"_count": 1}}}, "relieving": {"_count": 3, "his": {"_count": 1, "anger": {"_count": 1}}, "Ginny": {"_count": 1, "of": {"_count": 1}}, "Harry": {"_count": 1, "of": {"_count": 1}}}, "IVe": {"_count": 4, "got": {"_count": 3, "work": {"_count": 1}, "another": {"_count": 1}, "no": {"_count": 1}}, "been": {"_count": 1, "wondering": {"_count": 1}}}, "thong": {"_count": 1, "and": {"_count": 1, "tying": {"_count": 1}}}, "scrolls": {"_count": 5, "to": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "vanished": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 2, "parchment": {"_count": 2}}}, "replies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "decentlength": {"_count": 1, "answers": {"_count": 1, "if": {"_count": 1}}}, "Understand": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "undressing": {"_count": 1, "and": {"_count": 1, "stared": {"_count": 1}}}, "interrogated": {"_count": 7, "the": {"_count": 1, "doorknob": {"_count": 1}}, "made": {"_count": 1, "Harry": {"_count": 1}}, "after": {"_count": 1, "McLaggen": {"_count": 1}}, "enough": {"_count": 1, "that": {"_count": 1}}, "by": {"_count": 1, "Rufus": {"_count": 1}}, "those": {"_count": 1, "of": {"_count": 1}}, "for": {"_count": 1, "improper": {"_count": 1}}}, "alternately": {"_count": 2, "with": {"_count": 2, "restless": {"_count": 1}, "a": {"_count": 1}}}, "lethargy": {"_count": 1, "so": {"_count": 1, "complete": {"_count": 1}}}, "ruled": {"_count": 3, "against": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}}, "fulltime": {"_count": 2, "with": {"_count": 1, "the": {"_count": 1}}, "education": {"_count": 1, "": {"_count": 1}}}, "invariably": {"_count": 2, "slid": {"_count": 1, "off": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}}, "apathetic": {"_count": 1, "phases": {"_count": 1, "staring": {"_count": 1}}}, "phases": {"_count": 1, "staring": {"_count": 1, "at": {"_count": 1}}}, "stereo": {"_count": 3, "or": {"_count": 1, "any": {"_count": 1}}, "was": {"_count": 1, "coming": {"_count": 1}}, "in": {"_count": 1, "number": {"_count": 1}}}, "summon": {"_count": 12, "the": {"_count": 2, "energy": {"_count": 1}, "Dark": {"_count": 1}}, "him": {"_count": 4, "here": {"_count": 1}, "what": {"_count": 1}, "Bella": {"_count": 1}, "for": {"_count": 1}}, "any": {"_count": 1, "force": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "im": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "beloved": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "blessed": {"_count": 3, "moment": {"_count": 1, "when": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}, "relief": {"_count": 1, "": {"_count": 1}}}, "gurgled": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Burglars": {"_count": 1, "he": {"_count": 1, "thought": {"_count": 1}}}, "burglars": {"_count": 1, "would": {"_count": 1, "keep": {"_count": 1}}}, "streetlight": {"_count": 1, "glowing": {"_count": 1, "through": {"_count": 1}}}, "\u2018Professor": {"_count": 5, "growled": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "yes": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "\u2018sir": {"_count": 1}}}, "impostor": {"_count": 6, "an": {"_count": 1, "impostor": {"_count": 1}}, "moreover": {"_count": 1, "who": {"_count": 1}}, "Moodys": {"_count": 1, "days": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}}, "unmasked": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "dueled": {"_count": 1, "students": {"_count": 1}}}, "shabbier": {"_count": 2, "than": {"_count": 1, "ever": {"_count": 1}}, "Lupin": {"_count": 1, "looked": {"_count": 1}}}, "Wotcher": {"_count": 6, "Harry": {"_count": 4, "": {"_count": 3}, "she": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}}, "wheezyvoiced": {"_count": 2, "silverhaired": {"_count": 1, "wizard": {"_count": 1}}, "wizard": {"_count": 1, "nodded": {"_count": 1}}}, "Lilys": {"_count": 14, "eyes": {"_count": 3, "": {"_count": 2}, "filled": {"_count": 1}}, "and": {"_count": 1, "Jamess": {"_count": 1}}, "letter": {"_count": 3, "and": {"_count": 1}, "Ron": {"_count": 1}, "Im": {"_count": 1}}, "bright": {"_count": 1, "green": {"_count": 1}}, "eyebrows": {"_count": 1, "were": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "son": {"_count": 1, "": {"_count": 1}}, "signature": {"_count": 1, "and": {"_count": 1}}, "smile": {"_count": 1, "was": {"_count": 1}}, "protection": {"_count": 1, "inside": {"_count": 1}}}, "impersonating": {"_count": 7, "him": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "duck": {"_count": 1}}, "myself": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "Inferius": {"_count": 1}}, "Runcorn": {"_count": 1, "was": {"_count": 1}}, "somebody": {"_count": 1, "other": {"_count": 1}}}, "buttock": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "has": {"_count": 1, "never": {"_count": 1}}, "I": {"_count": 1, "beg": {"_count": 1}}}, "haired": {"_count": 3, "woman": {"_count": 1, "asked": {"_count": 1}}, "girl": {"_count": 1, "lying": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}}, "Elementary": {"_count": 1, "wand": {"_count": 1, "safety": {"_count": 1}}}, "bothers": {"_count": 2, "about": {"_count": 1, "it": {"_count": 1}}, "you": {"_count": 1, "he": {"_count": 1}}}, "Ffine": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "longstanding": {"_count": 3, "arrangement": {"_count": 1, "": {"_count": 1}}, "friend": {"_count": 1, "of": {"_count": 1}}, "Potions": {"_count": 1, "master": {"_count": 1}}}, "arrangement": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}}, "combed": {"_count": 2, "his": {"_count": 1, "hair": {"_count": 1}}, "every": {"_count": 1, "inch": {"_count": 1}}}, "violethaired": {"_count": 1, "woman": {"_count": 1, "": {"_count": 1}}}, "AllEngland": {"_count": 2, "BestKept": {"_count": 2, "Suburban": {"_count": 2}}}, "BestKept": {"_count": 2, "Suburban": {"_count": 2, "Lawn": {"_count": 2}}}, "Suburban": {"_count": 2, "Lawn": {"_count": 2, "Competition": {"_count": 2}}}, "Lawn": {"_count": 2, "Competition": {"_count": 2, "": {"_count": 2}}}, "Competition": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "prizegiving": {"_count": 1, "right": {"_count": 1, "now": {"_count": 1}}}, "allclear": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "undetectable": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "side": {"_count": 1, "effects": {"_count": 1}}}, "appliances": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Ron": {"_count": 1, "long": {"_count": 1}}}, "Nymphadora": {"_count": 11, "Dont": {"_count": 1, "call": {"_count": 1}}, "Remus": {"_count": 1, "said": {"_count": 1}}, "Tonks": {"_count": 4, "who": {"_count": 1}, "may": {"_count": 1}, "Kingsley": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}, "Potter": {"_count": 1, "is": {"_count": 1}}, "were": {"_count": 1, "to": {"_count": 1}}, "usually": {"_count": 1, "known": {"_count": 1}}}, "Tonks": {"_count": 224, "": {"_count": 35, ".": {"_count": 31}, "?": {"_count": 3}, "!": {"_count": 1}}, "who": {"_count": 7, "prefers": {"_count": 1}, "was": {"_count": 4}, "seemed": {"_count": 1}, "didnt": {"_count": 1}}, "conversationally": {"_count": 1, "": {"_count": 1}}, "brightly": {"_count": 4, "": {"_count": 1}, "knocking": {"_count": 2}, "from": {"_count": 1}}, "paused": {"_count": 1, "at": {"_count": 1}}, "decisively": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "proud": {"_count": 1}}, "chuckled": {"_count": 1, "": {"_count": 1}}, "waving": {"_count": 1, "her": {"_count": 1}}, "walking": {"_count": 2, "over": {"_count": 1}, "toward": {"_count": 1}}, "slamming": {"_count": 1, "the": {"_count": 1}}, "enviously": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 21, "Harry": {"_count": 3}, "a": {"_count": 1}, "Arthur": {"_count": 1}, "Kingsley": {"_count": 2}, "Moody": {"_count": 1}, "Mad": {"_count": 1}, "Lupin": {"_count": 3}, "Sirius": {"_count": 1}, "who": {"_count": 1}, "then": {"_count": 1}, "Fleur": {"_count": 1}, "Hagrid": {"_count": 1}, "I": {"_count": 1}, "Dirk": {"_count": 1}, "you": {"_count": 1}, "an": {"_count": 1}}, "appreciatively": {"_count": 1, "staring": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "swerved": {"_count": 1, "and": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "screamed": {"_count": 1, "from": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "I": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 9, "already": {"_count": 1}, "entertaining": {"_count": 1}, "yawning": {"_count": 1}, "very": {"_count": 1}, "Lupin": {"_count": 1}, "looking": {"_count": 1}, "glaring": {"_count": 1}, "pointing": {"_count": 1}, "crying": {"_count": 1}}, "followed": {"_count": 1, "carrying": {"_count": 1}}, "carrying": {"_count": 1, "his": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "at": {"_count": 3, "the": {"_count": 1}, "once": {"_count": 1}, "her": {"_count": 1}}, "apologized": {"_count": 1, "over": {"_count": 1}}, "striding": {"_count": 1, "over": {"_count": 1}}, "enthusiastically": {"_count": 1, "bounding": {"_count": 1}}, "you": {"_count": 1, "have": {"_count": 1}}, "obliged": {"_count": 1, "and": {"_count": 1}}, "sadly": {"_count": 1, "": {"_count": 1}}, "here": {"_count": 1, "for": {"_count": 1}}, "knocking": {"_count": 1, "over": {"_count": 1}}, "isnt": {"_count": 1, "on": {"_count": 1}}, "are": {"_count": 2, "related": {"_count": 1}, "outside": {"_count": 1}}, "so": {"_count": 1, "Sirius": {"_count": 1}}, "joined": {"_count": 1, "them": {"_count": 1}}, "sitting": {"_count": 1, "there": {"_count": 1}}, "What": {"_count": 1, "were": {"_count": 1}}, "finished": {"_count": 1, "yawning": {"_count": 1}}, "to": {"_count": 3, "Harry": {"_count": 1}, "expect": {"_count": 1}, "come": {"_count": 1}}, "earnestly": {"_count": 1, "": {"_count": 1}}, "patting": {"_count": 1, "him": {"_count": 1}}, "but": {"_count": 2, "Kingsley": {"_count": 1}, "Harry": {"_count": 1}}, "shouted": {"_count": 1, "Mrs": {"_count": 1}}, "hugging": {"_count": 1, "Hermione": {"_count": 1}}, "Lupin": {"_count": 2, "Moody": {"_count": 1}, "Colin": {"_count": 1}}, "whose": {"_count": 3, "hair": {"_count": 1}, "pink": {"_count": 1}, "short": {"_count": 1}}, "musingly": {"_count": 1, "no": {"_count": 1}}, "beckoning": {"_count": 1, "them": {"_count": 1}}, "leaned": {"_count": 1, "close": {"_count": 1}}, "had": {"_count": 7, "seized": {"_count": 1}, "already": {"_count": 1}, "appeared": {"_count": 1}, "got": {"_count": 1}, "fallen": {"_count": 1}, "just": {"_count": 1}, "run": {"_count": 1}}, "said": {"_count": 3, "": {"_count": 1}, "Fleur": {"_count": 1}, "Ginny": {"_count": 1}}, "went": {"_count": 1, "in": {"_count": 1}}, "whispering": {"_count": 1, "as": {"_count": 1}}, "today": {"_count": 1, "heavily": {"_count": 1}}, "swiftly": {"_count": 1, "": {"_count": 1}}, "menacingly": {"_count": 1, "now": {"_count": 1}}, "helped": {"_count": 1, "them": {"_count": 1}}, "casting": {"_count": 1, "a": {"_count": 1}}, "still": {"_count": 2, "halfway": {"_count": 1}, "unsmiling": {"_count": 1}}, "fall": {"_count": 1, "from": {"_count": 1}}, "lay": {"_count": 1, "and": {"_count": 1}}, "may": {"_count": 1, "need": {"_count": 1}}, "Kingsley": {"_count": 1, "Shacklebolt": {"_count": 1}}, "stood": {"_count": 1, "just": {"_count": 1}}, "not": {"_count": 1, "meeting": {"_count": 1}}, "hurried": {"_count": 1, "past": {"_count": 1}}, "vanishing": {"_count": 1, "at": {"_count": 1}}, "round": {"_count": 1, "for": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "when": {"_count": 1, "Fleurs": {"_count": 1}}, "is": {"_count": 3, "okaylooking": {"_count": 1}, "going": {"_count": 1}, "with": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "a": {"_count": 2}}, "going": {"_count": 1, "to": {"_count": 1}}, "Fleur": {"_count": 1, "mused": {"_count": 1}}, "without": {"_count": 1, "smiling": {"_count": 1}}, "under": {"_count": 1, "his": {"_count": 1}}, "s": {"_count": 1, "long": {"_count": 1}}, "behind": {"_count": 1, "": {"_count": 1}}, "flatly": {"_count": 1, "": {"_count": 1}}, "frowning": {"_count": 1, "": {"_count": 1}}, "has": {"_count": 2, "got": {"_count": 1}, "had": {"_count": 1}}, "picking": {"_count": 1, "apparently": {"_count": 1}}, "blankly": {"_count": 1, "as": {"_count": 1}}, "shes": {"_count": 1, "cracking": {"_count": 1}}, "look": {"_count": 1, "thinner": {"_count": 1}}, "fighting": {"_count": 1, "an": {"_count": 1}}, "seizing": {"_count": 1, "the": {"_count": 1}}, "deserves": {"_count": 1, "somebody": {"_count": 1}}, "her": {"_count": 1, "hair": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "Doras": {"_count": 1, "father": {"_count": 1}}, "placing": {"_count": 1, "a": {"_count": 1}}, "looked": {"_count": 2, "up": {"_count": 1}, "anguished": {"_count": 1}}, "will": {"_count": 2, "once": {"_count": 1}, "be": {"_count": 1}}, "wanting": {"_count": 1, "to": {"_count": 1}}, "Dora": {"_count": 1, "to": {"_count": 1}}, "along": {"_count": 1, "a": {"_count": 1}}, "warningly": {"_count": 1, "as": {"_count": 1}}, "should": {"_count": 2, "have": {"_count": 1}, "be": {"_count": 1}}, "MadEye": {"_count": 1, "and": {"_count": 1}}, "landed": {"_count": 1, "in": {"_count": 1}}, "cried": {"_count": 1, "as": {"_count": 1}}, "warmly": {"_count": 1, "relinquishing": {"_count": 1}}, "asked": {"_count": 1, "turning": {"_count": 1}}, "sent": {"_count": 1, "me": {"_count": 1}}, "shall": {"_count": 1, "I": {"_count": 1}}, "beside": {"_count": 1, "him": {"_count": 1}}, "their": {"_count": 1, "wands": {"_count": 1}}, "remaining": {"_count": 1, "hidden": {"_count": 1}}, "itll": {"_count": 1, "be": {"_count": 1}}, "Cresswell": {"_count": 1, "and": {"_count": 1}}, "Dirk": {"_count": 1, "Cresswell": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "Tonks": {"_count": 1, "has": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}, "sped": {"_count": 1, "off": {"_count": 1}}, "both": {"_count": 1, "with": {"_count": 1}}, "called": {"_count": 1, "after": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "pale": {"_count": 1, "and": {"_count": 1}}, "lying": {"_count": 1, "dead": {"_count": 1}}, "pierced": {"_count": 1, "him": {"_count": 1}}}, "prefers": {"_count": 5, "to": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 3, "dark": {"_count": 2}, "backseat": {"_count": 1}}, "your": {"_count": 1, "friend": {"_count": 1}}}, "\u2018Nymphadora": {"_count": 1, "muttered": {"_count": 1, "Tonks": {"_count": 1}}}, "Kingsley": {"_count": 93, "Shacklebolt": {"_count": 15, "he": {"_count": 1}, "in": {"_count": 2}, "and": {"_count": 4}, "swooped": {"_count": 1}, "": {"_count": 2}, "had": {"_count": 2}, "were": {"_count": 1}, "if": {"_count": 1}, "MadEye": {"_count": 1}}, "is": {"_count": 2, "as": {"_count": 1}, "protecting": {"_count": 1}}, "Shacklebolts": {"_count": 3, "been": {"_count": 1}, "saying": {"_count": 1}, "deep": {"_count": 1}}, "Fred": {"_count": 1, "muttered": {"_count": 1}}, "and": {"_count": 10, "me": {"_count": 1}, "the": {"_count": 1}, "Dawlish": {"_count": 1}, "Umbridge": {"_count": 1}, "Mr": {"_count": 2}, "Bill": {"_count": 1}, "Lupin": {"_count": 1}, "Slughorn": {"_count": 1}, "McGonagall": {"_count": 1}}, "carelessly": {"_count": 1, "as": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "brusquely": {"_count": 1, "to": {"_count": 1}}, "tipped": {"_count": 1, "Harry": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 12}, "!": {"_count": 1}}, "specially": {"_count": 1, "with": {"_count": 1}}, "to": {"_count": 1, "know": {"_count": 1}}, "had": {"_count": 4, "handed": {"_count": 1}, "run": {"_count": 1}, "mastered": {"_count": 1}, "stepped": {"_count": 1}}, "whispered": {"_count": 1, "something": {"_count": 1}}, "started": {"_count": 1, "forward": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 1}, "a": {"_count": 1}}, "look": {"_count": 1, "at": {"_count": 1}}, "flashed": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "or": {"_count": 1}}, "also": {"_count": 1, "leaping": {"_count": 1}}, "was": {"_count": 2, "fighting": {"_count": 1}, "striding": {"_count": 1}}, "swayed": {"_count": 1, "across": {"_count": 1}}, "yelling": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 2}}, "bloke": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "bald": {"_count": 1, "black": {"_count": 1}}, "I": {"_count": 1, "thought": {"_count": 1}}, "again": {"_count": 1, "by": {"_count": 1}}, "Fleur": {"_count": 1, "onto": {"_count": 1}}, "both": {"_count": 1, "clutching": {"_count": 1}}, "showed": {"_count": 1, "no": {"_count": 1}}, "turned": {"_count": 1, "his": {"_count": 1}}, "stowing": {"_count": 1, "his": {"_count": 1}}, "reeled": {"_count": 1, "off": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "after": {"_count": 1, "Ive": {"_count": 1}}, "finally": {"_count": 1, "after": {"_count": 1}}, "walked": {"_count": 1, "away": {"_count": 1}}, "Disapparated": {"_count": 1, "just": {"_count": 1}}, "whether": {"_count": 1, "No": {"_count": 1}}, "saved": {"_count": 1, "us": {"_count": 1}}, "Youre": {"_count": 1, "kidding": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "nodded": {"_count": 1, "his": {"_count": 1}}, "right": {"_count": 1, "beside": {"_count": 1}}, "all": {"_count": 1, "at": {"_count": 1}}}, "Shacklebolt": {"_count": 19, "he": {"_count": 1, "indicated": {"_count": 1}}, "in": {"_count": 2, "his": {"_count": 2}}, "and": {"_count": 4, "Sturgis": {"_count": 1}, "a": {"_count": 1}, "Remus": {"_count": 1}, "Arthur": {"_count": 1}}, "swooped": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "!": {"_count": 1}, "?": {"_count": 1}}, "had": {"_count": 2, "given": {"_count": 1}, "been": {"_count": 1}}, "were": {"_count": 1, "already": {"_count": 1}}, "I": {"_count": 1, "I": {"_count": 1}}, "Dolores": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 1, "thats": {"_count": 1}}, "MadEye": {"_count": 1, "Moody": {"_count": 1}}}, "Elphias": {"_count": 17, "Doge": {"_count": 6, "the": {"_count": 1}, "youve": {"_count": 1}, "I": {"_count": 1}, "Special": {"_count": 1}, "member": {"_count": 1}, "mentioned": {"_count": 1}}, "Doges": {"_count": 1, "accusations": {"_count": 1}}, "dear": {"_count": 1, "boy": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 2}, "!": {"_count": 1}}, "cackled": {"_count": 1, "Auntie": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "but": {"_count": 1, "explain": {"_count": 1}}, "my": {"_count": 1, "cousin": {"_count": 1}}, "Dogbreath": {"_count": 1, "Doge": {"_count": 1}}}, "Doge": {"_count": 49, "the": {"_count": 2, "wheezyvoiced": {"_count": 1}, "dimwitted": {"_count": 1}}, "youve": {"_count": 1, "met": {"_count": 1}}, "I": {"_count": 1, "met": {"_count": 1}}, "Special": {"_count": 1, "Advisor": {"_count": 1}}, "can": {"_count": 1, "get": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "Im": {"_count": 1, "Harry": {"_count": 1}}, "gasped": {"_count": 1, "": {"_count": 1}}, "poured": {"_count": 1, "Harry": {"_count": 1}}, "dabbing": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 10, "?": {"_count": 1}, ".": {"_count": 9}}, "at": {"_count": 1, "once": {"_count": 1}}, "really": {"_count": 1, "think": {"_count": 1}}, "understand": {"_count": 1, "Harrys": {"_count": 1}}, "suspected": {"_count": 1, "Harrys": {"_count": 1}}, "looked": {"_count": 4, "up": {"_count": 1}, "stiff": {"_count": 1}, "wretched": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 2, "Harry": {"_count": 1}, "no": {"_count": 1}}, "turning": {"_count": 1, "radish": {"_count": 1}}, "more": {"_count": 1, "coldly": {"_count": 1}}, "miserably": {"_count": 1, "but": {"_count": 1}}, "but": {"_count": 2, "Auntie": {"_count": 1}, "before": {"_count": 1}}, "desperately": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "through": {"_count": 1, "trembling": {"_count": 1}}, "had": {"_count": 1, "looked": {"_count": 1}}, "did": {"_count": 1, "was": {"_count": 1}}, "clutching": {"_count": 1, "at": {"_count": 1}}, "banged": {"_count": 1, "him": {"_count": 1}}, "is": {"_count": 1, "right": {"_count": 1}}, "who": {"_count": 1, "refused": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "mentioned": {"_count": 1, "her": {"_count": 1}}, "went": {"_count": 1, "off": {"_count": 1}}}, "Emmeline": {"_count": 6, "Vance": {"_count": 6, "a": {"_count": 1}, "was": {"_count": 1}, "youve": {"_count": 1}, "maybe": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}}, "Vance": {"_count": 7, "a": {"_count": 1, "stately": {"_count": 1}}, "was": {"_count": 1, "on": {"_count": 1}}, "youve": {"_count": 1, "met": {"_count": 1}}, "murders": {"_count": 1, "": {"_count": 1}}, "maybe": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "stately": {"_count": 1, "looking": {"_count": 1, "witch": {"_count": 1}}}, "Sturgis": {"_count": 20, "Podmore": {"_count": 9, "a": {"_count": 1}, "were": {"_count": 1}, "": {"_count": 2}, "blimey": {"_count": 1}, "38": {"_count": 1}, "who": {"_count": 1}, "was": {"_count": 1}, "said": {"_count": 1}}, "Podmores": {"_count": 1, "here": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 2, "Dumbledore": {"_count": 1}, "steal": {"_count": 1}}, "was": {"_count": 3, "supposed": {"_count": 1}, "arrested": {"_count": 1}, "trying": {"_count": 1}}, "gasped": {"_count": 1, "Hermione": {"_count": 1}}, "had": {"_count": 1, "Moodys": {"_count": 1}}, "next": {"_count": 1, "had": {"_count": 1}}}, "Hestia": {"_count": 15, "Jones": {"_count": 5, "": {"_count": 1}, "was": {"_count": 1}, "and": {"_count": 1}, "broke": {"_count": 1}, "gave": {"_count": 1}}, "and": {"_count": 1, "Dedalus": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "tersely": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 1, "outraged": {"_count": 1}}, "her": {"_count": 1, "voice": {"_count": 1}}, "indignantly": {"_count": 1, "": {"_count": 1}}, "also": {"_count": 1, "clasping": {"_count": 1}}, "followed": {"_count": 1, "him": {"_count": 1}}}, "Jones": {"_count": 11, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 2}}, "was": {"_count": 1, "laughing": {"_count": 1}}, "who": {"_count": 1, "of": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "and": {"_count": 1, "Dedalus": {"_count": 1}}, "broke": {"_count": 1, "the": {"_count": 1}}, "gave": {"_count": 1, "her": {"_count": 1}}, "Captain": {"_count": 1, "of": {"_count": 1}}}, "toaster": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "was": {"_count": 1}}}, "onstage": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "slob": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "varies": {"_count": 1, "just": {"_count": 1, "like": {"_count": 1}}}, "plunger": {"_count": 2, "being": {"_count": 2, "pulled": {"_count": 1}, "withdrawn": {"_count": 1}}}, "conversationally": {"_count": 6, "": {"_count": 6, ".": {"_count": 6}}}, "relentless": {"_count": 7, "staring": {"_count": 1, "was": {"_count": 1}}, "clubbing": {"_count": 1, "of": {"_count": 1}}, "campaign": {"_count": 1, "of": {"_count": 1}}, "ticking": {"_count": 1, "filled": {"_count": 1}}, "flow": {"_count": 1, "of": {"_count": 1}}, "pacing": {"_count": 1, "as": {"_count": 1}}, "rain": {"_count": 1, "for": {"_count": 1}}}, "threehundred": {"_count": 1, "andsixty": {"_count": 1, "degrees": {"_count": 1}}}, "andsixty": {"_count": 1, "degrees": {"_count": 1, "visibility": {"_count": 1}}}, "Brooms": {"_count": 1, "said": {"_count": 1, "Lupin": {"_count": 1}}}, "lifes": {"_count": 4, "worth": {"_count": 1, "to": {"_count": 1}}, "ambition": {"_count": 2, "is": {"_count": 2}}, "too": {"_count": 1, "short": {"_count": 1}}}, "unauthorized": {"_count": 1, "Portkey": {"_count": 1, "": {"_count": 1}}}, "messier": {"_count": 2, "than": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}}, "Confined": {"_count": 1, "to": {"_count": 1, "it": {"_count": 1}}}, "tidying": {"_count": 1, "up": {"_count": 1, "after": {"_count": 1}}}, "critically": {"_count": 4, "at": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "as": {"_count": 1, "the": {"_count": 1}}}, "purples": {"_count": 1, "really": {"_count": 1, "my": {"_count": 1}}}, "peaky": {"_count": 4, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "you": {"_count": 1, "need": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}}, "decisively": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "bubblegum": {"_count": 1, "pink": {"_count": 1, "": {"_count": 1}}}, "Metamorphmagus": {"_count": 2, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Concealment": {"_count": 1, "and": {"_count": 1, "Disguise": {"_count": 1}}}, "Disguise": {"_count": 2, "during": {"_count": 1, "Auror": {"_count": 1}}, "yourselves": {"_count": 1, "and": {"_count": 1}}}, "Stealth": {"_count": 2, "and": {"_count": 1, "Tracking": {"_count": 1}}, "Sensoring": {"_count": 1, "Spells": {"_count": 1}}}, "Tracking": {"_count": 1, "Im": {"_count": 1, "dead": {"_count": 1}}}, "Metamorphmagi": {"_count": 1, "are": {"_count": 1, "really": {"_count": 1}}}, "pellmell": {"_count": 3, "into": {"_count": 2, "the": {"_count": 2}}, "up": {"_count": 1, "the": {"_count": 1}}}, "mums": {"_count": 9, "got": {"_count": 1, "this": {"_count": 1}}, "right": {"_count": 1, "and": {"_count": 1}}, "birthday": {"_count": 1, "": {"_count": 1}}, "lit": {"_count": 1, "a": {"_count": 1}}, "nose": {"_count": 1, "": {"_count": 1}}, "letter": {"_count": 1, "": {"_count": 1}}, "full": {"_count": 1, "of": {"_count": 1}}, "one": {"_count": 1, "and": {"_count": 1}}, "blouse": {"_count": 1, "": {"_count": 1}}}, "Scourgify": {"_count": 1, "She": {"_count": 1, "pointed": {"_count": 1}}}, "householdy": {"_count": 1, "spells": {"_count": 1, "": {"_count": 1}}}, "Trunk": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "conductors": {"_count": 2, "baton": {"_count": 2, "Tonks": {"_count": 1}, "": {"_count": 1}}}, "microwave": {"_count": 2, "and": {"_count": 1, "Hestia": {"_count": 1}}, "door": {"_count": 1, "Bill": {"_count": 1}}}, "peeler": {"_count": 1, "she": {"_count": 1, "had": {"_count": 1}}}, "sealing": {"_count": 8, "a": {"_count": 2, "letter": {"_count": 1}, "piece": {"_count": 1}}, "its": {"_count": 1, "many": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 2, "doors": {"_count": 1}, "fireplaces": {"_count": 1}}, "them": {"_count": 2, "off": {"_count": 1}, "inside": {"_count": 1}}}, "depress": {"_count": 1, "them": {"_count": 1, "": {"_count": 1}}}, "Disillusion": {"_count": 1, "you": {"_count": 1, "": {"_count": 1}}}, "Disillusionment": {"_count": 10, "Charm": {"_count": 6, "said": {"_count": 1}, "must": {"_count": 1}, "on": {"_count": 1}, "or": {"_count": 1}, "so": {"_count": 1}, "that": {"_count": 1}}, "Charms": {"_count": 4, "and": {"_count": 1}, "lifted": {"_count": 1}, "all": {"_count": 1}, "would": {"_count": 1}}}, "thisll": {"_count": 4, "disguise": {"_count": 1, "you": {"_count": 1}}, "mean": {"_count": 1, "detention": {"_count": 1}}, "make": {"_count": 1, "it": {"_count": 1}}, "do": {"_count": 1, "for": {"_count": 1}}}, "trickles": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "texture": {"_count": 2, "of": {"_count": 2, "the": {"_count": 1}, "candyfloss": {"_count": 1}}}, "unit": {"_count": 1, "behind": {"_count": 1, "him": {"_count": 1}}}, "chameleon": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Tonksll": {"_count": 1, "be": {"_count": 1, "right": {"_count": 1}}}, "Lupinll": {"_count": 1, "be": {"_count": 1, "covering": {"_count": 1}}}, "restll": {"_count": 1, "be": {"_count": 1, "circling": {"_count": 1}}}, "strapped": {"_count": 1, "Harrys": {"_count": 1, "trunk": {"_count": 1}}}, "greens": {"_count": 1, "and": {"_count": 1, "blacks": {"_count": 1}}}, "blacks": {"_count": 1, "and": {"_count": 1, "every": {"_count": 1}}}, "fantasizing": {"_count": 1, "about": {"_count": 1, "all": {"_count": 1}}}, "insignificant": {"_count": 4, "in": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "feat": {"_count": 1}}, "or": {"_count": 1, "wretched": {"_count": 1}}, "as": {"_count": 1, "insects": {"_count": 1}}}, "Bearing": {"_count": 2, "south": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "mind": {"_count": 1}}}, "Town": {"_count": 1, "ahead": {"_count": 1, "": {"_count": 1}}}, "spiderweb": {"_count": 1, "of": {"_count": 1, "lights": {"_count": 1}}}, "Bear": {"_count": 3, "southeast": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 2, "mind": {"_count": 2}}}, "southeast": {"_count": 1, "and": {"_count": 1, "keep": {"_count": 1}}}, "altered": {"_count": 6, "their": {"_count": 1, "course": {"_count": 1}}, "the": {"_count": 2, "story": {"_count": 1}, "course": {"_count": 1}}, "it": {"_count": 1, "raised": {"_count": 1}}, "no": {"_count": 1, "more": {"_count": 1}}, "now": {"_count": 1, "from": {"_count": 1}}}, "continuously": {"_count": 4, "like": {"_count": 1, "giant": {"_count": 1}}, "upward": {"_count": 1, "like": {"_count": 1}}, "swaying": {"_count": 1, "veil": {"_count": 1}}, "upon": {"_count": 1, "your": {"_count": 1}}}, "southwest": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "motorway": {"_count": 3, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}}, "interiors": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "pate": {"_count": 3, "and": {"_count": 2, "earring": {"_count": 1}, "chin": {"_count": 1}}, "his": {"_count": 1, "prominent": {"_count": 1}}}, "sprawling": {"_count": 3, "crisscrossing": {"_count": 1, "mass": {"_count": 1}}, "family": {"_count": 1, "tree": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "grids": {"_count": 1, "interspersed": {"_count": 1, "with": {"_count": 1}}}, "interspersed": {"_count": 3, "with": {"_count": 3, "patches": {"_count": 1}, "branches": {"_count": 1}, "squeals": {"_count": 1}}}, "aerials": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "unfreeze": {"_count": 2, "him": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 1, "take": {"_count": 1}}}, "unbuckling": {"_count": 1, "Harrys": {"_count": 1, "trunk": {"_count": 1}}}, "fronts": {"_count": 3, "of": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "streetlamp": {"_count": 4, "went": {"_count": 1, "out": {"_count": 1}}, "outside": {"_count": 2, "and": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "unlighter": {"_count": 1, "again": {"_count": 1, "the": {"_count": 1}}}, "sickle": {"_count": 1, "moon": {"_count": 1, "overhead": {"_count": 1}}}, "pungent": {"_count": 3, "smell": {"_count": 2, "of": {"_count": 1}, "drifted": {"_count": 1}}, "fumes": {"_count": 1, "but": {"_count": 1}}}, "Disillusioned": {"_count": 1, "hand": {"_count": 1, "and": {"_count": 1}}}, "Grimmauld": {"_count": 60, "Place": {"_count": 57, "London": {"_count": 1}, "than": {"_count": 1}, "and": {"_count": 5}, "who": {"_count": 1}, "by": {"_count": 1}, "": {"_count": 24}, "he": {"_count": 1}, "straightaway": {"_count": 1}, "from": {"_count": 1}, "but": {"_count": 1}, "a": {"_count": 1}, "that": {"_count": 2}, "all": {"_count": 1}, "for": {"_count": 1}, "shortly": {"_count": 1}, "as": {"_count": 2}, "again": {"_count": 1}, "flashed": {"_count": 1}, "is": {"_count": 1}, "said": {"_count": 2}, "since": {"_count": 1}, "shriveled": {"_count": 1}, "had": {"_count": 1}, "with": {"_count": 2}, "on": {"_count": 1}, "might": {"_count": 1}}, "Square": {"_count": 1, "weaving": {"_count": 1}}, "Places": {"_count": 2, "fire": {"_count": 1}, "location": {"_count": 1}}}, "TWELVE": {"_count": 1, "GRIMMAULD": {"_count": 1, "PLACE": {"_count": 1}}}, "GRIMMAULD": {"_count": 1, "PLACE": {"_count": 1, "Whats": {"_count": 1}}}, "PLACE": {"_count": 3, "Whats": {"_count": 1, "the": {"_count": 1}}, "TO": {"_count": 1, "HIDE": {"_count": 1}}, "There": {"_count": 1, "was": {"_count": 1}}}, "letterbox": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "metallic": {"_count": 5, "clicks": {"_count": 3, "and": {"_count": 3}}, "thuds": {"_count": 1, "which": {"_count": 1}}, "scales": {"_count": 1, "and": {"_count": 1}}}, "clicks": {"_count": 3, "and": {"_count": 3, "what": {"_count": 1}, "the": {"_count": 2}}}, "sweetish": {"_count": 1, "rotting": {"_count": 1, "smell": {"_count": 1}}}, "bulbs": {"_count": 2, "and": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "insubstantial": {"_count": 3, "light": {"_count": 1, "over": {"_count": 1}}, "than": {"_count": 1, "a": {"_count": 1}}, "air": {"_count": 1, "as": {"_count": 1}}}, "threadbare": {"_count": 9, "carpet": {"_count": 3, "of": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "hearthrug": {"_count": 1, "gazing": {"_count": 1}}, "surface": {"_count": 1, "of": {"_count": 1}}, "carpets": {"_count": 1, "a": {"_count": 1}}, "overcoat": {"_count": 1, "covering": {"_count": 1}}, "sofa": {"_count": 1, "an": {"_count": 1}}, "clothes": {"_count": 1, "a": {"_count": 1}}}, "cobwebby": {"_count": 1, "chandelier": {"_count": 1, "glimmered": {"_count": 1}}}, "ageblackened": {"_count": 1, "portraits": {"_count": 1, "hung": {"_count": 1}}}, "baseboard": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "candelabra": {"_count": 2, "on": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "ribcracking": {"_count": 2, "hug": {"_count": 2, "before": {"_count": 1}, "then": {"_count": 1}}}, "Pressing": {"_count": 1, "her": {"_count": 1, "finger": {"_count": 1}}}, "plaques": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "snoutlike": {"_count": 6, "nose": {"_count": 5, "": {"_count": 2}, "on": {"_count": 1}, "into": {"_count": 1}, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Darkest": {"_count": 5, "of": {"_count": 1, "wizards": {"_count": 1}}, "Art": {"_count": 4, "its": {"_count": 1}, "Crookshanks": {"_count": 1}, "upstairs": {"_count": 1}, "\u2018Muggleborn": {"_count": 1}}}, "highceilinged": {"_count": 2, "twinbedded": {"_count": 1, "room": {"_count": 1}}, "room": {"_count": 1, "on": {"_count": 1}}}, "twinbedded": {"_count": 1, "room": {"_count": 1, "then": {"_count": 1}}}, "outrageous": {"_count": 3, "Ive": {"_count": 1, "looked": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "anybody": {"_count": 1}}}, "provision": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "situations": {"_count": 5, "Let": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "threaten": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}}, "gangly": {"_count": 1, "looking": {"_count": 1, "than": {"_count": 1}}}, "Pecked": {"_count": 1, "us": {"_count": 1, "half": {"_count": 1}}}, "sported": {"_count": 2, "a": {"_count": 2, "halfhealed": {"_count": 1}, "limegreen": {"_count": 1}}}, "halfhealed": {"_count": 2, "but": {"_count": 1, "clearly": {"_count": 1}}, "puncture": {"_count": 1, "marks": {"_count": 1}}}, "yearning": {"_count": 4, "to": {"_count": 3, "see": {"_count": 1}, "enter": {"_count": 1}, "show": {"_count": 1}}, "To": {"_count": 1, "make": {"_count": 1}}}, "bareness": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "stillve": {"_count": 1, "kept": {"_count": 1, "me": {"_count": 1}}}, "disconcerted": {"_count": 9, "": {"_count": 5, ".": {"_count": 5}}, "for": {"_count": 1, "a": {"_count": 1}}, "Ernie": {"_count": 1, "muttered": {"_count": 1}}, "by": {"_count": 2, "this": {"_count": 1}, "the": {"_count": 1}}}, "MEETINGS": {"_count": 1, "BIG": {"_count": 1, "DEAL": {"_count": 1}}}, "DEAL": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "YOUVE": {"_count": 5, "STILL": {"_count": 2, "BEEN": {"_count": 2}}, "BEEN": {"_count": 1, "HAVING": {"_count": 1}}, "GOT": {"_count": 2, "IT": {"_count": 1}, "TO": {"_count": 1}}}, "HAVEN": {"_count": 2, "T": {"_count": 2, "YOU": {"_count": 1}, "SEEN": {"_count": 1}}}, "TOGETHER": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "No": {"_count": 1, "honest": {"_count": 1}}}, "IVE": {"_count": 6, "BEEN": {"_count": 2, "STUCK": {"_count": 2}}, "HANDLED": {"_count": 1, "MORE": {"_count": 1}}, "HAD": {"_count": 2, "ENOUGH": {"_count": 2}}, "SEEN": {"_count": 1, "ENOUGH": {"_count": 1}}}, "STUCK": {"_count": 2, "AT": {"_count": 1, "THE": {"_count": 1}}, "IN": {"_count": 1, "PRIVET": {"_count": 1}}}, "DURSLEYS": {"_count": 2, "FOR": {"_count": 1, "A": {"_count": 1}}, "DEPARTING": {"_count": 1, "The": {"_count": 1}}}, "MONTH": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "HANDLED": {"_count": 1, "MORE": {"_count": 1, "THAN": {"_count": 1}}}, "TWOVE": {"_count": 1, "EVER": {"_count": 1, "MANAGED": {"_count": 1}}}, "EVER": {"_count": 2, "MANAGED": {"_count": 1, "AND": {"_count": 1}}, "FEARED": {"_count": 1, "He": {"_count": 1}}}, "MANAGED": {"_count": 1, "AND": {"_count": 1, "DUMBLEDORE": {"_count": 1}}}, "KNOWS": {"_count": 1, "IT": {"_count": 1, "WHO": {"_count": 1}}}, "SORCERERS": {"_count": 1, "STONE": {"_count": 1, "": {"_count": 1}}}, "STONE": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "RID": {"_count": 1, "OF": {"_count": 1, "RIDDLE": {"_count": 1}}}, "SKINS": {"_count": 1, "FROM": {"_count": 1, "THE": {"_count": 1}}}, "halfashamed": {"_count": 1, "of": {"_count": 1, "finally": {"_count": 1}}}, "twittered": {"_count": 3, "in": {"_count": 1, "alarm": {"_count": 1}}, "more": {"_count": 1, "wildly": {"_count": 1}}, "and": {"_count": 1, "hooted": {"_count": 1}}}, "HAD": {"_count": 4, "TO": {"_count": 2, "GET": {"_count": 1}, "ESCAPE": {"_count": 1}}, "ENOUGH": {"_count": 2, "OF": {"_count": 1}, "IVE": {"_count": 1}}}, "PAST": {"_count": 1, "DRAGONS": {"_count": 1, "AND": {"_count": 1}}}, "DRAGONS": {"_count": 1, "AND": {"_count": 1, "SPHINXES": {"_count": 1}}}, "SPHINXES": {"_count": 1, "AND": {"_count": 1, "EVERY": {"_count": 1}}}, "EVERY": {"_count": 2, "OTHER": {"_count": 1, "FOUL": {"_count": 1}}, "TINY": {"_count": 1, "LITTLE": {"_count": 1}}}, "FOUL": {"_count": 1, "THING": {"_count": 1, "LAST": {"_count": 1}}}, "WHY": {"_count": 5, "SHOULD": {"_count": 2, "I": {"_count": 1}, "ANYONE": {"_count": 1}}, "SLYTHERINS": {"_count": 1, "ALL": {"_count": 1}}, "ARE": {"_count": 1, "YOU": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}}, "WHATS": {"_count": 3, "GOING": {"_count": 1, "ON": {"_count": 1}}, "BEEN": {"_count": 2, "HAPPENING": {"_count": 1}, "GOING": {"_count": 1}}}, "ANYONE": {"_count": 2, "BOTHER": {"_count": 1, "TO": {"_count": 1}}, "SICK": {"_count": 1, "": {"_count": 1}}}, "BOTHER": {"_count": 1, "TO": {"_count": 1, "TELL": {"_count": 1}}}, "HAPPENING": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "CANTVE": {"_count": 1, "WANTED": {"_count": 1, "TO": {"_count": 1}}}, "WANTED": {"_count": 2, "TO": {"_count": 1, "THAT": {"_count": 1}}, "FOR": {"_count": 1, "QUESTIONING": {"_count": 1}}}, "MUCH": {"_count": 1, "CAN": {"_count": 1, "YOU": {"_count": 1}}}, "SENT": {"_count": 1, "ME": {"_count": 1, "AN": {"_count": 1}}}, "SWEAR": {"_count": 1, "Well": {"_count": 1, "he": {"_count": 1}}}, "WEEKS": {"_count": 1, "IVE": {"_count": 1, "BEEN": {"_count": 1}}}, "PRIVET": {"_count": 1, "DRIVE": {"_count": 1, "NICKING": {"_count": 1}}}, "DRIVE": {"_count": 1, "NICKING": {"_count": 1, "PAPERS": {"_count": 1}}}, "NICKING": {"_count": 1, "PAPERS": {"_count": 1, "OUT": {"_count": 1}}}, "PAPERS": {"_count": 1, "OUT": {"_count": 1, "OF": {"_count": 1}}}, "BINS": {"_count": 1, "TO": {"_count": 1, "TRY": {"_count": 1}}}, "TRY": {"_count": 1, "AND": {"_count": 1, "FIND": {"_count": 1}}}, "FIND": {"_count": 1, "OUT": {"_count": 1, "WHATS": {"_count": 1}}}, "HAVING": {"_count": 1, "A": {"_count": 1, "REAL": {"_count": 1}}}, "LAUGH": {"_count": 1, "HAVENT": {"_count": 1, "YOU": {"_count": 1}}}, "HOLED": {"_count": 1, "UP": {"_count": 1, "HERE": {"_count": 1}}}, "floorboards": {"_count": 3, "below": {"_count": 1, "Harrys": {"_count": 1}}, "were": {"_count": 1, "ripped": {"_count": 1}}, "quake": {"_count": 1, "": {"_count": 1}}}, "Headquarters": {"_count": 5, "of": {"_count": 1, "the": {"_count": 1}}, "Official": {"_count": 1, "Gobstones": {"_count": 1}}, "and": {"_count": 3, "MuggleWorthy": {"_count": 1}, "Wizengamot": {"_count": 2}}}, "society": {"_count": 5, "said": {"_count": 1, "Hermione": {"_count": 1}}, "whose": {"_count": 1, "aim": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "live": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}}, "Voldemorti": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Extendable": {"_count": 26, "Ears": {"_count": 19, "see": {"_count": 1}, "he": {"_count": 1}, "shes": {"_count": 1}, "will": {"_count": 1}, "had": {"_count": 1}, "": {"_count": 5}, "quite": {"_count": 1}, "a": {"_count": 1}, "before": {"_count": 1}, "from": {"_count": 1}, "Yeah": {"_count": 1}, "look": {"_count": 1}, "back": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Ear": {"_count": 5, "a": {"_count": 1}, "toward": {"_count": 1}, "back": {"_count": 1}, "out": {"_count": 1}, "deeper": {"_count": 1}}, "or": {"_count": 1, "normal": {"_count": 1}}}, "binning": {"_count": 1, "them": {"_count": 1, "": {"_count": 1}}}, "decontaminating": {"_count": 1, "this": {"_count": 1, "house": {"_count": 1}}}, "tomo": {"_count": 1, "AARGH": {"_count": 1, "": {"_count": 1}}}, "AARGH": {"_count": 3, "": {"_count": 2, "!": {"_count": 2}}, "jinx": {"_count": 1, "on": {"_count": 1}}}, "dulcet": {"_count": 1, "tones": {"_count": 1, "": {"_count": 1}}}, "Apparation": {"_count": 2, "tests": {"_count": 1, "then": {"_count": 1}}, "Test": {"_count": 1, "Center": {"_count": 1}}}, "reception": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "area": {"_count": 2, "where": {"_count": 1}, "looked": {"_count": 1}}, "committee": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "confidences": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}}, "major": {"_count": 2, "meeting": {"_count": 1, "theyre": {"_count": 1}}, "jinxes": {"_count": 1, "or": {"_count": 1}}}, "Imperturbable": {"_count": 3, "Charm": {"_count": 1, "on": {"_count": 1}}, "Charms": {"_count": 1, "on": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}}, "Imperturbed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Giving": {"_count": 6, "a": {"_count": 1, "report": {"_count": 1}}, "the": {"_count": 2, "twins": {"_count": 1}, "time": {"_count": 1}}, "instructions": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 1, "sign": {"_count": 1}}}, "Git": {"_count": 2, "said": {"_count": 1, "Fred": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}}, "abated": {"_count": 3, "yet": {"_count": 1, "but": {"_count": 1}}, "perhaps": {"_count": 1, "Mrs": {"_count": 1}}, "however": {"_count": 1, "whenever": {"_count": 1}}}, "overcoming": {"_count": 1, "his": {"_count": 1, "urge": {"_count": 1}}}, "compensations": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "eemprove": {"_count": 1, "er": {"_count": 1, "Eeenglish": {"_count": 1}}}, "Eeenglish": {"_count": 1, "and": {"_count": 1, "Bills": {"_count": 1}}}, "significant": {"_count": 12, "looks": {"_count": 2, "": {"_count": 2}}, "glance": {"_count": 1, "with": {"_count": 1}}, "look": {"_count": 2, "and": {"_count": 1}, "as": {"_count": 1}}, "smile": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "voice": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "it": {"_count": 1}}, "deaths": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "Voldemort": {"_count": 1}}}, "oversight": {"_count": 1, "of": {"_count": 1, "failing": {"_count": 1}}}, "Assistant": {"_count": 3, "to": {"_count": 3, "the": {"_count": 2}, "escape": {"_count": 1}}}, "weirdo": {"_count": 2, "because": {"_count": 1, "of": {"_count": 1}}, "but": {"_count": 1, "someone": {"_count": 1}}}, "traitors": {"_count": 11, "to": {"_count": 1, "the": {"_count": 1}}, "children": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 3, "thieves": {"_count": 1}, "the": {"_count": 1}, "scum": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "are": {"_count": 1, "as": {"_count": 1}}, "theres": {"_count": 1, "a": {"_count": 1}}, "even": {"_count": 1, "if": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "ignores": {"_count": 1, "him": {"_count": 1, "I": {"_count": 1}}}, "articles": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "The": {"_count": 1}}, "about": {"_count": 1, "how": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "foundation": {"_count": 3, "for": {"_count": 1, "what": {"_count": 1}}, "of": {"_count": 1, "fact": {"_count": 1}}, "stone": {"_count": 1, "upon": {"_count": 1}}}, "deluded": {"_count": 4, "attentionseeking": {"_count": 1, "person": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "herself": {"_count": 1, "into": {"_count": 1}}, "ones": {"_count": 1, "": {"_count": 1}}}, "attentionseeking": {"_count": 4, "person": {"_count": 1, "who": {"_count": 1}}, "prat": {"_count": 1, "have": {"_count": 1}}, "stories": {"_count": 1, "did": {"_count": 1}}, "and": {"_count": 1, "impertinent": {"_count": 1}}}, "worship": {"_count": 2, "him": {"_count": 1, "next": {"_count": 1}}, "Harry": {"_count": 1, "began": {"_count": 1}}}, "parentsV": {"_count": 1, "Harry": {"_count": 1, "spluttered": {"_count": 1}}}, "outofcontrol": {"_count": 2, "dementors": {"_count": 1, "": {"_count": 1}}, "sound": {"_count": 1, "Ron": {"_count": 1}}}, "showoff": {"_count": 3, "we": {"_count": 1, "think": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "maniac": {"_count": 1, "anymore": {"_count": 1}}}, "abide": {"_count": 3, "by": {"_count": 3, "their": {"_count": 1}, "any": {"_count": 1}, "our": {"_count": 1}}}, "necessity": {"_count": 5, "of": {"_count": 4, "finding": {"_count": 1}, "asking": {"_count": 1}, "these": {"_count": 1}, "consorting": {"_count": 1}}, "for": {"_count": 1, "you": {"_count": 1}}}, "unblushingly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Kreacher": {"_count": 275, "he": {"_count": 4, "keeps": {"_count": 1}, "seems": {"_count": 1}, "will": {"_count": 1}, "said": {"_count": 1}}, "": {"_count": 29, "?": {"_count": 7}, ".": {"_count": 18}, "!": {"_count": 4}}, "too": {"_count": 1, "Yeah": {"_count": 1}}, "said": {"_count": 10, "Ron": {"_count": 1}, "Fred": {"_count": 1}, "nothing": {"_count": 1}, "Hermione": {"_count": 2}, "Dumbledore": {"_count": 1}, "Harry": {"_count": 4}}, "can": {"_count": 2, "manage": {"_count": 1}, "see": {"_count": 1}}, "oh": {"_count": 1, "the": {"_count": 1}}, "what": {"_count": 2, "can": {"_count": 1}, "they": {"_count": 1}}, "did": {"_count": 8, "not": {"_count": 6}, "wrong": {"_count": 1}, "made": {"_count": 1}}, "doesnt": {"_count": 3, "know": {"_count": 2}, "think": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "a": {"_count": 2}}, "with": {"_count": 4, "great": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}, "a": {"_count": 1}}, "was": {"_count": 11, "still": {"_count": 1}, "disappearing": {"_count": 1}, "almost": {"_count": 1}, "not": {"_count": 1}, "a": {"_count": 1}, "going": {"_count": 1}, "gulping": {"_count": 1}, "told": {"_count": 1}, "sure": {"_count": 1}, "most": {"_count": 1}, "so": {"_count": 1}}, "wonders": {"_count": 2, "how": {"_count": 1}, "": {"_count": 1}}, "s": {"_count": 3, "huge": {"_count": 1}, "favorite": {"_count": 1}, "a": {"_count": 1}}, "is": {"_count": 5, "cleaning": {"_count": 2}, "what": {"_count": 1}, "showing": {"_count": 1}, "ashamed": {"_count": 1}}, "flung": {"_count": 1, "himself": {"_count": 1}}, "lives": {"_count": 1, "to": {"_count": 1}}, "bowing": {"_count": 3, "again": {"_count": 1}, "low": {"_count": 1}, "them": {"_count": 1}}, "Sirius": {"_count": 1, "snapped": {"_count": 1}}, "bowed": {"_count": 3, "again": {"_count": 2}, "deeply": {"_count": 1}}, "serving": {"_count": 1, "him": {"_count": 1}}, "would": {"_count": 3, "never": {"_count": 1}, "be": {"_count": 1}, "much": {"_count": 1}}, "if": {"_count": 2, "the": {"_count": 1}, "Sirius": {"_count": 1}}, "must": {"_count": 3, "save": {"_count": 1}, "be": {"_count": 1}, "obey": {"_count": 1}}, "will": {"_count": 5, "not": {"_count": 2}, "say": {"_count": 1}, "do": {"_count": 1}, "pretend": {"_count": 1}}, "around": {"_count": 1, "oh": {"_count": 1}}, "had": {"_count": 11, "been": {"_count": 2}, "made": {"_count": 1}, "saved": {"_count": 1}, "salvaged": {"_count": 1}, "escaped": {"_count": 1}, "gone": {"_count": 1}, "taken": {"_count": 1}, "laundered": {"_count": 1}, "it": {"_count": 1}, "changed": {"_count": 1}}, "wont": {"_count": 6, "take": {"_count": 1}, "Kreacher": {"_count": 2}, "": {"_count": 1}, "go": {"_count": 1}, "wont": {"_count": 1}}, "sidled": {"_count": 1, "into": {"_count": 1}}, "actually": {"_count": 1, "burst": {"_count": 1}}, "wasnt": {"_count": 2, "quite": {"_count": 1}, "that": {"_count": 1}}, "fixed": {"_count": 1, "him": {"_count": 1}}, "away": {"_count": 1, "no": {"_count": 1}}, "knows": {"_count": 2, "what": {"_count": 1}, "too": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "studying": {"_count": 1}}, "looked": {"_count": 1, "less": {"_count": 1}}, "wheezed": {"_count": 1, "insults": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "and": {"_count": 5, "me": {"_count": 1}, "his": {"_count": 1}, "Dobby": {"_count": 1}, "Regulus": {"_count": 1}, "wearing": {"_count": 1}}, "coming": {"_count": 2, "down": {"_count": 1}, "downstairs": {"_count": 1}}, "curled": {"_count": 1, "up": {"_count": 1}}, "lately": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "transpired": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "company": {"_count": 1}}, "the": {"_count": 2, "houseelf": {"_count": 1}, "task": {"_count": 1}}, "informed": {"_count": 1, "the": {"_count": 1}}, "merely": {"_count": 1, "cackled": {"_count": 1}}, "thinks": {"_count": 1, "he": {"_count": 1}}, "has": {"_count": 4, "he": {"_count": 1}, "no": {"_count": 1}, "come": {"_count": 1}, "returned": {"_count": 1}}, "stopped": {"_count": 1, "in": {"_count": 1}}, "where": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 2}}, "lied": {"_count": 1, "said": {"_count": 1}}, "intended": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 6, "am": {"_count": 2}, "want": {"_count": 3}, "order": {"_count": 1}}, "seized": {"_count": 1, "his": {"_count": 1}}, "told": {"_count": 3, "me": {"_count": 1}, "you": {"_count": 1}, "the": {"_count": 1}}, "injured": {"_count": 1, "Buckbeak": {"_count": 1}}, "could": {"_count": 6, "be": {"_count": 1}, "not": {"_count": 3}, "tell": {"_count": 1}, "escape": {"_count": 1}}, "because": {"_count": 1, "Kreacher": {"_count": 1}}, "finished": {"_count": 1, "Dumbledore": {"_count": 1}}, "belongs": {"_count": 2, "to": {"_count": 2}}, "wants": {"_count": 1, "his": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "thrashed": {"_count": 1, "around": {"_count": 1}}, "who": {"_count": 4, "was": {"_count": 2}, "must": {"_count": 1}, "had": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "youre": {"_count": 1, "forbidden": {"_count": 1}}, "sinking": {"_count": 2, "into": {"_count": 1}, "so": {"_count": 1}}, "or": {"_count": 1, "to": {"_count": 1}}, "struggling": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 2, "teacozy": {"_count": 1}, "bullfrogs": {"_count": 1}}, "a": {"_count": 1, "resentful": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "But": {"_count": 1, "Kreacher": {"_count": 1}}, "should": {"_count": 1, "know": {"_count": 1}}, "averted": {"_count": 1, "his": {"_count": 1}}, "Kreacher": {"_count": 1, "will": {"_count": 1}}, "made": {"_count": 1, "one": {"_count": 1}}, "nicked": {"_count": 1, "loads": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "closed": {"_count": 1, "his": {"_count": 1}}, "failed": {"_count": 2, "in": {"_count": 1}, "to": {"_count": 1}}, "lunged": {"_count": 1, "for": {"_count": 1}}, "lay": {"_count": 1, "flat": {"_count": 1}}, "saw": {"_count": 2, "him": {"_count": 2}}, "sit": {"_count": 1, "up": {"_count": 1}}, "rocked": {"_count": 1, "still": {"_count": 1}}, "went": {"_count": 1, "to": {"_count": 1}}, "drink": {"_count": 2, "it": {"_count": 1}, "all": {"_count": 1}}, "drank": {"_count": 1, "and": {"_count": 1}}, "cried": {"_count": 1, "for": {"_count": 1}}, "needed": {"_count": 1, "water": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "raised": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "to": {"_count": 7, "come": {"_count": 2}, "stay": {"_count": 1}, "take": {"_count": 2}, "leave": {"_count": 1}, "go": {"_count": 1}}, "came": {"_count": 2, "home": {"_count": 1}, "bustling": {"_count": 1}}, "shook": {"_count": 2, "his": {"_count": 2}}, "knew": {"_count": 1, "how": {"_count": 1}}, "tears": {"_count": 1, "pouring": {"_count": 1}}, "swapped": {"_count": 1, "the": {"_count": 1}}, "stop": {"_count": 1, "stop": {"_count": 1}}, "tried": {"_count": 1, "everything": {"_count": 1}}, "punished": {"_count": 1, "himself": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 3, "she": {"_count": 1}, "if": {"_count": 1}, "Ill": {"_count": 1}}, "does": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "sobbing": {"_count": 1, "on": {"_count": 1}}, "hiccuped": {"_count": 1, "himself": {"_count": 1}}, "dropped": {"_count": 1, "his": {"_count": 1}}, "nodded": {"_count": 1, "and": {"_count": 1}}, "Id": {"_count": 1, "er": {"_count": 1}}, "disentangled": {"_count": 1, "himself": {"_count": 1}}, "apologizes": {"_count": 1, "for": {"_count": 1}}, "cornered": {"_count": 1, "the": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}, "seizing": {"_count": 1, "the": {"_count": 1}}, "hurried": {"_count": 1, "forward": {"_count": 1}}, "served": {"_count": 1, "them": {"_count": 1}}, "He": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "explained": {"_count": 1}}, "might": {"_count": 1, "bring": {"_count": 1}}}, "Nutter": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "descend": {"_count": 5, "the": {"_count": 2, "stairs": {"_count": 1}, "stone": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "jangling": {"_count": 1, "and": {"_count": 1}}}, "Dammit": {"_count": 1, "Harry": {"_count": 1, "heard": {"_count": 1}}}, "eats": {"_count": 3, "here": {"_count": 1, "Ron": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "Tonksl": {"_count": 1, "cried": {"_count": 1, "Mrs": {"_count": 1}}}, "Page": {"_count": 11, "lOOHarry": {"_count": 1, "Potter": {"_count": 1}}, "lOlHarry": {"_count": 1, "Potter": {"_count": 1}}, "llOHarry": {"_count": 1, "Potter": {"_count": 1}}, "lllHarry": {"_count": 1, "Potter": {"_count": 1}}, "five": {"_count": 1, "\u2018Basics": {"_count": 1}}, "lOOOHarry": {"_count": 1, "Potter": {"_count": 1}}, "lOOlHarry": {"_count": 1, "Potter": {"_count": 1}}, "lOlOHarry": {"_count": 1, "Potter": {"_count": 1}}, "lOUHarry": {"_count": 1, "Potter": {"_count": 1}}, "llOOHarry": {"_count": 1, "Potter": {"_count": 1}}, "llOlHarry": {"_count": 1, "Potter": {"_count": 1}}}, "lOOHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "K": {"_count": 10, "": {"_count": 10, ".": {"_count": 10}}}, "realistic": {"_count": 5, "and": {"_count": 1, "the": {"_count": 1}}, "idea": {"_count": 1, "of": {"_count": 1}}, "roar": {"_count": 1, "that": {"_count": 1}}, "thirtyminute": {"_count": 1, "daydream": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Scum": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "wholl": {"_count": 1, "come": {"_count": 1}}, "she": {"_count": 1, "screamed": {"_count": 1}}}, "Byproducts": {"_count": 1, "of": {"_count": 1, "dirt": {"_count": 1}}}, "vileness": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "mutants": {"_count": 1, "freaks": {"_count": 1, "begone": {"_count": 1}}}, "freaks": {"_count": 4, "begone": {"_count": 1, "from": {"_count": 1}}, "like": {"_count": 1, "Dad": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "school": {"_count": 1, "when": {"_count": 1}}}, "begone": {"_count": 1, "from": {"_count": 1, "this": {"_count": 1}}}, "befoul": {"_count": 1, "the": {"_count": 1, "house": {"_count": 1}}}, "Yooooul": {"_count": 1, "she": {"_count": 1, "howled": {"_count": 1}}}, "abomination": {"_count": 1, "shame": {"_count": 1, "of": {"_count": 1}}}, "fleshl": {"_count": 1, "Page": {"_count": 1, "lOlHarry": {"_count": 1}}}, "lOlHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "stupendous": {"_count": 5, "effort": {"_count": 2, "he": {"_count": 2}}, "heave": {"_count": 1, "and": {"_count": 1}}, "importance": {"_count": 1, "": {"_count": 1}}, "relief": {"_count": 1, "and": {"_count": 1}}}, "PHOENIX": {"_count": 2, "Your": {"_count": 1, "": {"_count": 1}}, "LAMENT": {"_count": 1, "Cmere": {"_count": 1}}}, "Permanent": {"_count": 4, "Sticking": {"_count": 4, "Charm": {"_count": 4}}}, "Sticking": {"_count": 5, "Charm": {"_count": 4, "on": {"_count": 2}, "did": {"_count": 1}, "that": {"_count": 1}}, "his": {"_count": 1, "head": {"_count": 1}}}, "basement": {"_count": 10, "kitchen": {"_count": 4, "": {"_count": 1}, "of": {"_count": 1}, "and": {"_count": 1}, "where": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "corridor": {"_count": 1, "that": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "near": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "stolen": {"_count": 1}}, "of": {"_count": 1, "Grimmauld": {"_count": 1}}}, "scarcely": {"_count": 7, "less": {"_count": 2, "gloomy": {"_count": 1}, "quiet": {"_count": 1}}, "say": {"_count": 1, "that": {"_count": 1}}, "belongs": {"_count": 1, "but": {"_count": 1}}, "heard": {"_count": 1, "Hermione": {"_count": 1}}, "room": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "sound": {"_count": 1}}}, "Journey": {"_count": 2, "all": {"_count": 1, "right": {"_count": 1}}, "was": {"_count": 1, "fine": {"_count": 1}}}, "via": {"_count": 1, "Greenland": {"_count": 1, "then": {"_count": 1}}}, "Greenland": {"_count": 1, "then": {"_count": 1, "": {"_count": 1}}}, "unloading": {"_count": 1, "dinner": {"_count": 1, "plates": {"_count": 1}}}, "Evanescol": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "prolonged": {"_count": 3, "grunting": {"_count": 1, "snore": {"_count": 1}}, "laughter": {"_count": 1, "of": {"_count": 1}}, "contact": {"_count": 1, "with": {"_count": 1}}}, "Somen": {"_count": 1, "say": {"_count": 1, "m": {"_count": 1}}}, "gree": {"_count": 1, "with": {"_count": 1, "Sirius": {"_count": 1}}}, "voting": {"_count": 1, "his": {"_count": 1, "droopy": {"_count": 1}}}, "droopy": {"_count": 3, "bloodshot": {"_count": 1, "eyes": {"_count": 1}}, "eyes": {"_count": 1, "fixed": {"_count": 1}}, "basset": {"_count": 1, "hounds": {"_count": 1}}}, "arry": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}}, "Owe": {"_count": 1, "you": {"_count": 1, "a": {"_count": 1}}}, "pology": {"_count": 1, "grunted": {"_count": 1, "a": {"_count": 1}}}, "supervised": {"_count": 2, "by": {"_count": 1, "Mr": {"_count": 1}}, "in": {"_count": 1, "Hogsmeade": {"_count": 1}}}, "pantry": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "skidded": {"_count": 1, "along": {"_count": 1}}, "and": {"_count": 1, "Sirius": {"_count": 1}}, "leaving": {"_count": 1, "Harry": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "carrying": {"_count": 1, "a": {"_count": 1}}}, "grimfaced": {"_count": 4, "to": {"_count": 1, "Harry": {"_count": 1}}, "bearded": {"_count": 1, "Aurors": {"_count": 1}}, "Auror": {"_count": 2, "Harry": {"_count": 1}, "casting": {"_count": 1}}}, "monotony": {"_count": 1, "nicely": {"_count": 1, "": {"_count": 1}}}, "upsurge": {"_count": 3, "of": {"_count": 3, "affection": {"_count": 1}, "noise": {"_count": 1}, "bitter": {"_count": 1}}}, "cleanings": {"_count": 1, "going": {"_count": 1, "What": {"_count": 1}}}, "habitation": {"_count": 1, "said": {"_count": 1, "Sirius": {"_count": 1}}}, "dismal": {"_count": 4, "kitchen": {"_count": 1, "": {"_count": 1}}, "funeral": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "gray": {"_count": 1, "corner": {"_count": 1}}}, "Finest": {"_count": 2, "fifteenthcentury": {"_count": 1, "goblinwrought": {"_count": 1}}, "dragon": {"_count": 1, "skin": {"_count": 1}}}, "fifteenthcentury": {"_count": 1, "goblinwrought": {"_count": 1, "silver": {"_count": 1}}}, "goblinwrought": {"_count": 1, "silver": {"_count": 1, "embossed": {"_count": 1}}}, "CARRY": {"_count": 1, "THEM": {"_count": 1, "": {"_count": 1}}}, "breadboard": {"_count": 1, "complete": {"_count": 1, "with": {"_count": 1}}}, "hurtle": {"_count": 4, "through": {"_count": 2, "the": {"_count": 1}, "Gregorovitch": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "HEAVENS": {"_count": 1, "SAKE": {"_count": 1, "": {"_count": 1}}}, "NEED": {"_count": 2, "IVE": {"_count": 1, "HAD": {"_count": 1}}, "THE": {"_count": 1, "PROPHECY": {"_count": 1}}}, "ENOUGH": {"_count": 6, "OF": {"_count": 1, "THIS": {"_count": 1}}, "TO": {"_count": 1, "WORRY": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "IVE": {"_count": 1, "SEEN": {"_count": 1}}, "I": {"_count": 1, "WANT": {"_count": 1}}}, "WHIP": {"_count": 1, "YOUR": {"_count": 1, "WANDS": {"_count": 1}}}, "TINY": {"_count": 1, "LITTLE": {"_count": 1, "THING": {"_count": 1}}}, "LITTLE": {"_count": 2, "THING": {"_count": 1, "": {"_count": 1}}, "HANGLETON": {"_count": 1, "1": {"_count": 1}}}, "whence": {"_count": 3, "his": {"_count": 1, "large": {"_count": 1}}, "came": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "indifferently": {"_count": 13, "": {"_count": 9, ".": {"_count": 9}}, "who": {"_count": 1, "was": {"_count": 1}}, "like": {"_count": 1, "thats": {"_count": 1}}, "demonstrating": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "set": {"_count": 1}}}, "doxies": {"_count": 8, "too": {"_count": 1, "Mrs": {"_count": 1}}, "than": {"_count": 1, "she": {"_count": 1}}, "in": {"_count": 1, "Gilderoy": {"_count": 1}}, "bite": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "once": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "lay": {"_count": 1, "crammed": {"_count": 1}}, "had": {"_count": 1, "gnawed": {"_count": 1}}}, "Opposite": {"_count": 1, "Harry": {"_count": 1, "Tonks": {"_count": 1}}}, "Screwing": {"_count": 1, "up": {"_count": 1, "her": {"_count": 1}}}, "beaklike": {"_count": 1, "protuberance": {"_count": 1, "like": {"_count": 1}}}, "protuberance": {"_count": 1, "like": {"_count": 1, "Snapes": {"_count": 1}}}, "resembling": {"_count": 2, "a": {"_count": 1, "button": {"_count": 1}}, "curls": {"_count": 1, "of": {"_count": 1}}}, "mushroom": {"_count": 2, "and": {"_count": 2, "then": {"_count": 1}, "had": {"_count": 1}}}, "llOHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "mealtime": {"_count": 1, "entertainment": {"_count": 1, "because": {"_count": 1}}}, "requesting": {"_count": 2, "their": {"_count": 1, "favorite": {"_count": 1}}, "an": {"_count": 1, "appointment": {"_count": 1}}}, "Nottingham": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "freedoms": {"_count": 1, "weve": {"_count": 1, "been": {"_count": 1}}}, "Ragnok": {"_count": 1, "Bill": {"_count": 1, "": {"_count": 1}}}, "antiwizard": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "lllHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "\u2018ere": {"_count": 1, "Dung": {"_count": 1, "where": {"_count": 1}}}, "\u2018Nicked": {"_count": 1, "all": {"_count": 1, "your": {"_count": 1}}}, "lads": {"_count": 4, "the": {"_count": 1, "gormless": {"_count": 1}}, "but": {"_count": 1, "Im": {"_count": 1}}, "ten": {"_count": 1, "it": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}}, "gormless": {"_count": 5, "gargoyle": {"_count": 1, "buys": {"_count": 1}}, "brother": {"_count": 1, "wed": {"_count": 1}}, "having": {"_count": 1, "copied": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "grin": {"_count": 1, "you": {"_count": 1}}}, "orf": {"_count": 2, "me": {"_count": 1, "for": {"_count": 1}}, "Warty": {"_count": 1, "Harris": {"_count": 1}}}, "Beg": {"_count": 2, "pardon": {"_count": 1, "Molly": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Harris": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "hiccuping": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "toaster": {"_count": 1, "": {"_count": 1}}, "slightly": {"_count": 2, "she": {"_count": 1}, "as": {"_count": 1}}, "again": {"_count": 1, "its": {"_count": 1}}, "from": {"_count": 1, "behind": {"_count": 1}}, "herself": {"_count": 1, "back": {"_count": 1}}}, "rhubarb": {"_count": 3, "crumble": {"_count": 3, "for": {"_count": 1}, "and": {"_count": 1}, "toward": {"_count": 1}}}, "crumble": {"_count": 6, "for": {"_count": 1, "pudding": {"_count": 1}}, "and": {"_count": 1, "custard": {"_count": 1}}, "from": {"_count": 1, "within": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "disappeared": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "crooks": {"_count": 1, "well": {"_count": 1, "he": {"_count": 1}}}, "pays": {"_count": 2, "to": {"_count": 1, "have": {"_count": 1}}, "people": {"_count": 1, "to": {"_count": 1}}}, "lull": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "into": {"_count": 1}}}, "replete": {"_count": 1, "and": {"_count": 1, "relaxed": {"_count": 1}}}, "corks": {"_count": 3, "for": {"_count": 1, "him": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "rapidity": {"_count": 2, "Harry": {"_count": 1, "associated": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "frisson": {"_count": 1, "had": {"_count": 1, "gone": {"_count": 1}}}, "drowsiness": {"_count": 2, "gone": {"_count": 1, "": {"_count": 1}}, "within": {"_count": 1, "ten": {"_count": 1}}}, "\u2018Youre": {"_count": 1, "too": {"_count": 1, "young": {"_count": 1}}}, "uncannily": {"_count": 1, "like": {"_count": 1, "his": {"_count": 1}}}, "Orders": {"_count": 9, "doing": {"_count": 1, "said": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "ears": {"_count": 1, "": {"_count": 1}}, "We": {"_count": 1, "dont": {"_count": 1}}, "confidential": {"_count": 1, "plans": {"_count": 1}}, "got": {"_count": 2, "one": {"_count": 1}, "to": {"_count": 1}}, "help": {"_count": 1, "his": {"_count": 1}}, "charms": {"_count": 1, "": {"_count": 1}}}, "readying": {"_count": 1, "himself": {"_count": 1, "for": {"_count": 1}}}, "rashly": {"_count": 2, "Sirius": {"_count": 1, "which": {"_count": 1}}, "invented": {"_count": 1, "his": {"_count": 1}}}, "accepts": {"_count": 3, "that": {"_count": 3, "Harry": {"_count": 1}, "she": {"_count": 1}, "he": {"_count": 1}}}, "garbled": {"_count": 1, "version": {"_count": 1, "from": {"_count": 1}}}, "overruled": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mollycoddling": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "legally": {"_count": 2, "adults": {"_count": 1, "now": {"_count": 1}}, "be": {"_count": 1, "used": {"_count": 1}}}, "Harryll": {"_count": 1, "tell": {"_count": 1, "me": {"_count": 1}}}, "obsessing": {"_count": 1, "him": {"_count": 1, "for": {"_count": 1}}}, "renewed": {"_count": 11, "shudders": {"_count": 1, "and": {"_count": 1}}, "giggles": {"_count": 1, "": {"_count": 1}}, "clanging": {"_count": 1, "of": {"_count": 1}}, "vigor": {"_count": 1, "": {"_count": 1}}, "muttering": {"_count": 1, "and": {"_count": 1}}, "outbreak": {"_count": 1, "of": {"_count": 1}}, "sobs": {"_count": 2, "": {"_count": 1}, "did": {"_count": 1}}, "sounds": {"_count": 1, "of": {"_count": 1}}, "use": {"_count": 1, "of": {"_count": 1}}, "closeness": {"_count": 1, "between": {"_count": 1}}}, "shudders": {"_count": 1, "and": {"_count": 1, "winces": {"_count": 1}}}, "winces": {"_count": 2, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "comeback": {"_count": 1, "didnt": {"_count": 1, "come": {"_count": 1}}}, "perplexedly": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 2, "her": {"_count": 1}, "his": {"_count": 1}}}, "Working": {"_count": 1, "as": {"_count": 1, "hard": {"_count": 1}}}, "firstly": {"_count": 6, "he": {"_count": 1, "wants": {"_count": 1}}, "in": {"_count": 1, "clockwise": {"_count": 1}}, "offer": {"_count": 1, "my": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "no": {"_count": 1, "Harry": {"_count": 1}}, "at": {"_count": 1, "him": {"_count": 1}}}, "recruit": {"_count": 3, "the": {"_count": 1, "giants": {"_count": 1}}, "more": {"_count": 1, "Death": {"_count": 1}}, "students": {"_count": 1, "to": {"_count": 1}}}, "wry": {"_count": 3, "smile": {"_count": 2, "": {"_count": 2}}, "thought": {"_count": 1, "came": {"_count": 1}}}, "overthrow": {"_count": 3, "him": {"_count": 1, "": {"_count": 1}}, "Snape": {"_count": 1, "and": {"_count": 1}}, "YouKnowWho": {"_count": 1, "": {"_count": 1}}}, "Bagnold": {"_count": 1, "retired": {"_count": 1, "": {"_count": 1}}}, "rumormongering": {"_count": 1, "so": {"_count": 1, "most": {"_count": 1}}}, "anythings": {"_count": 3, "happened": {"_count": 1, "and": {"_count": 1}}, "possible": {"_count": 1, "if": {"_count": 1}}, "real": {"_count": 1, "if": {"_count": 1}}}, "targets": {"_count": 3, "for": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "humorlessly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tenthousandGalleon": {"_count": 3, "price": {"_count": 3, "on": {"_count": 3}}}, "leaflets": {"_count": 4, "can": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 1, "notices": {"_count": 1}}, "lately": {"_count": 1, "too": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}}, "occupational": {"_count": 2, "hazard": {"_count": 2, "of": {"_count": 2}}}, "hazard": {"_count": 4, "of": {"_count": 2, "being": {"_count": 2}}, "a": {"_count": 2, "guess": {"_count": 2}}}, "Shacklebolts": {"_count": 4, "been": {"_count": 1, "a": {"_count": 1}}, "saying": {"_count": 1, "Hestias": {"_count": 1}}, "deep": {"_count": 1, "voice": {"_count": 1}}, "work": {"_count": 1, "continues": {"_count": 1}}}, "asset": {"_count": 1, "too": {"_count": 1, "": {"_count": 1}}}, "Tibet": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "discredit": {"_count": 3, "him": {"_count": 1, "said": {"_count": 1}}, "Albus": {"_count": 1, "Dumbledore": {"_count": 1}}, "Arthur": {"_count": 1, "and": {"_count": 1}}}, "Chairmanship": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "demoted": {"_count": 1, "him": {"_count": 1, "from": {"_count": 1}}}, "Chief": {"_count": 7, "Warlock": {"_count": 5, "on": {"_count": 1}, "of": {"_count": 4}}, "Death": {"_count": 2, "Eater": {"_count": 2}}}, "Wizengamot": {"_count": 29, "thats": {"_count": 1, "the": {"_count": 1}}, "Administration": {"_count": 2, "Services": {"_count": 2}}, "were": {"_count": 3, "muttering": {"_count": 1}, "all": {"_count": 1}, "filing": {"_count": 1}}, "was": {"_count": 2, "still": {"_count": 1}, "unavailable": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "Charter": {"_count": 1, "of": {"_count": 1}}, "laughed": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 1, "has": {"_count": 1}}, "in": {"_count": 1, "effect": {"_count": 1}}, "had": {"_count": 1, "fallen": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "he": {"_count": 1}, "longstanding": {"_count": 1}}, "then": {"_count": 1, "the": {"_count": 1}}, "charged": {"_count": 1, "with": {"_count": 1}}, "is": {"_count": 1, "no": {"_count": 1}}, "elders": {"_count": 1, "Gris": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "surfaced": {"_count": 1, "within": {"_count": 1}}, "for": {"_count": 1, "misuse": {"_count": 1}}, "Gold": {"_count": 1, "Medal": {"_count": 1}}}, "Court": {"_count": 8, "and": {"_count": 1, "theyre": {"_count": 1}}, "Scribe": {"_count": 1, "Percy": {"_count": 1}}, "Road": {"_count": 6, "panted": {"_count": 1}, "": {"_count": 3}, "at": {"_count": 1}, "thats": {"_count": 1}}}, "carries": {"_count": 3, "on": {"_count": 1, "defying": {"_count": 1}}, "an": {"_count": 1, "enchantment": {"_count": 1}}, "a": {"_count": 1, "curse": {"_count": 1}}}, "defying": {"_count": 1, "the": {"_count": 1, "Ministry": {"_count": 1}}}, "blackmails": {"_count": 1, "them": {"_count": 1, "": {"_count": 1}}}, "operating": {"_count": 6, "in": {"_count": 1, "secrecy": {"_count": 1}}, "on": {"_count": 1, "him": {"_count": 1}}, "amongst": {"_count": 1, "us": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "an": {"_count": 1, "OwlOrder": {"_count": 1}}}, "induct": {"_count": 1, "him": {"_count": 1, "into": {"_count": 1}}}, "overage": {"_count": 2, "wizards": {"_count": 1, "he": {"_count": 1}}, "Potter": {"_count": 1, "and": {"_count": 1}}}, "halfshrugged": {"_count": 1, "but": {"_count": 1, "did": {"_count": 1}}}, "NOBLE": {"_count": 2, "AND": {"_count": 2, "MOST": {"_count": 2}}}, "MOST": {"_count": 2, "ANCIENT": {"_count": 2, "HOUSE": {"_count": 2}}}, "ANCIENT": {"_count": 3, "HOUSE": {"_count": 2, "OF": {"_count": 2}}, "RUNES": {"_count": 1, "REVEALED": {"_count": 1}}}, "danker": {"_count": 1, "and": {"_count": 1, "gloomier": {"_count": 1}}}, "gloomier": {"_count": 3, "than": {"_count": 2, "it": {"_count": 1}, "usual": {"_count": 1}}, "view": {"_count": 1, "": {"_count": 1}}}, "pacify": {"_count": 1, "Hedwig": {"_count": 1, "and": {"_count": 1}}}, "demort": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Mumll": {"_count": 2, "be": {"_count": 1, "back": {"_count": 1}}, "fix": {"_count": 1, "that": {"_count": 1}}}, "bedsprings": {"_count": 2, "and": {"_count": 1, "Harrys": {"_count": 1}}, "Ron": {"_count": 1, "bounded": {"_count": 1}}}, "Extendables": {"_count": 1, "did": {"_count": 1, "we": {"_count": 1}}}, "perpetrate": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "guarantee": {"_count": 6, "of": {"_count": 1, "power": {"_count": 1}}, "owls": {"_count": 1, "arent": {"_count": 1}}, "you": {"_count": 1, "what": {"_count": 1}}, "anything": {"_count": 1, "": {"_count": 1}}, "zat": {"_count": 1, "zey": {"_count": 1}}, "it": {"_count": 1, "will": {"_count": 1}}}, "BatBogey": {"_count": 3, "Hexes": {"_count": 1, "have": {"_count": 1}}, "Hex": {"_count": 2, "it": {"_count": 1}, "as": {"_count": 1}}}, "halfrising": {"_count": 2, "from": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}}, "dolefully": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "at": {"_count": 1, "both": {"_count": 1}}}, "regretfully": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "in": {"_count": 1}}}, "mulling": {"_count": 1, "it": {"_count": 1, "all": {"_count": 1}}}, "manylegged": {"_count": 2, "creatures": {"_count": 1, "were": {"_count": 1}}, "pair": {"_count": 1, "of": {"_count": 1}}}, "Beauties": {"_count": 1, "aren": {"_count": 1, "they": {"_count": 1}}}, "cannons": {"_count": 1, "for": {"_count": 1, "heads": {"_count": 1}}}, "nest": {"_count": 6, "of": {"_count": 4, "dead": {"_count": 1}, "ashes": {"_count": 1}, "nastiness": {"_count": 1}, "dirty": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "puffskeins": {"_count": 2, "under": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "cant": {"_count": 1}}}, "olive": {"_count": 1, "green": {"_count": 1, "walls": {"_count": 1}}}, "exhaled": {"_count": 1, "little": {"_count": 1, "clouds": {"_count": 1}}}, "mossgreen": {"_count": 1, "velvet": {"_count": 1, "curtains": {"_count": 1}}}, "cloths": {"_count": 2, "over": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "nozzle": {"_count": 2, "at": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}}, "Cover": {"_count": 1, "your": {"_count": 1, "faces": {"_count": 1}}}, "Doxycide": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "it": {"_count": 1, "froze": {"_count": 1}}}, "infestation": {"_count": 2, "this": {"_count": 1, "bad": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Kreachers": {"_count": 34, "really": {"_count": 1, "old": {"_count": 1}}, "pale": {"_count": 1, "eyes": {"_count": 1}}, "Mistress": {"_count": 1, "saw": {"_count": 1}}, "quite": {"_count": 1, "fond": {"_count": 1}}, "ancestors": {"_count": 1, "and": {"_count": 1}}, "dead": {"_count": 1, "body": {"_count": 1}}, "footsteps": {"_count": 1, "had": {"_count": 1}}, "bedroom": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "Master": {"_count": 1, "has": {"_count": 1}}, "odd": {"_count": 1, "absence": {"_count": 1}}, "information": {"_count": 1, "made": {"_count": 1}}, "faults": {"_count": 1, "it": {"_count": 1}}, "lot": {"_count": 1, "easier": {"_count": 1}}, "continued": {"_count": 1, "croaks": {"_count": 1}}, "voice": {"_count": 1, "had": {"_count": 1}}, "mouth": {"_count": 2, "for": {"_count": 1}, "and": {"_count": 1}}, "mistress": {"_count": 2, "say": {"_count": 1}, "would": {"_count": 1}}, "wizened": {"_count": 1, "arm": {"_count": 1}}, "done": {"_count": 1, "well": {"_count": 1}}, "cupboard": {"_count": 2, "and": {"_count": 1}, "with": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "treasures": {"_count": 1, "": {"_count": 1}}, "croaking": {"_count": 1, "voice": {"_count": 1}}, "insides": {"_count": 1, "burned": {"_count": 1}}, "sobs": {"_count": 1, "came": {"_count": 1}}, "looked": {"_count": 1, "troubled": {"_count": 1}}, "absence": {"_count": 1, "as": {"_count": 1}}, "thin": {"_count": 1, "arms": {"_count": 1}}, "cooking": {"_count": 1, "had": {"_count": 1}}, "right": {"_count": 1, "said": {"_count": 1}}}, "inquiring": {"_count": 1, "look": {"_count": 1, "": {"_count": 1}}}, "cacophony": {"_count": 1, "of": {"_count": 1, "screams": {"_count": 1}}}, "triggered": {"_count": 1, "the": {"_count": 1, "previous": {"_count": 1}}}, "Stains": {"_count": 1, "of": {"_count": 1, "dishonor": {"_count": 1}}}, "dishonor": {"_count": 3, "filthy": {"_count": 1, "halfbreeds": {"_count": 1}}, "to": {"_count": 1, "mistrust": {"_count": 1}}, "taint": {"_count": 1, "of": {"_count": 1}}}, "halfbreeds": {"_count": 7, "blood": {"_count": 1, "traitors": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "during": {"_count": 1, "her": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}, "such": {"_count": 1, "as": {"_count": 1}}}, "Hestias": {"_count": 1, "just": {"_count": 1, "relieved": {"_count": 1}}}, "doxy": {"_count": 8, "party": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "soaring": {"_count": 1}}, "between": {"_count": 1, "his": {"_count": 1}}, "quickly": {"_count": 1, "in": {"_count": 1}}, "venom": {"_count": 1, "for": {"_count": 1}}, "droppings": {"_count": 1, "": {"_count": 1}}, "eggs": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}}, "sprays": {"_count": 1, "one": {"_count": 1, "good": {"_count": 1}}}, "paralyze": {"_count": 3, "them": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "cause": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "immobilized": {"_count": 7, "just": {"_count": 1, "throw": {"_count": 1}}, "by": {"_count": 2, "her": {"_count": 1}, "invisible": {"_count": 1}}, "body": {"_count": 1, "and": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 1, "I": {"_count": 1}}}, "squirti": {"_count": 1, "Harry": {"_count": 1, "had": {"_count": 1}}}, "beetlelike": {"_count": 1, "wings": {"_count": 1, "whirring": {"_count": 1}}}, "fairylike": {"_count": 1, "body": {"_count": 1, "covered": {"_count": 1}}}, "thunk": {"_count": 2, "onto": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "meant": {"_count": 1}}}, "Skiving": {"_count": 10, "Snackboxes": {"_count": 8, "George": {"_count": 1}, "": {"_count": 1}, "but": {"_count": 1}, "sorted": {"_count": 1}, "said": {"_count": 1}, "to": {"_count": 1}, "Fred": {"_count": 1}, "that": {"_count": 1}}, "Snackbox": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}}, "Snackboxes": {"_count": 10, "George": {"_count": 1, "told": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "but": {"_count": 1, "theyre": {"_count": 1}}, "sorted": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "are": {"_count": 1, "ready": {"_count": 1}}, "Fred": {"_count": 1, "and": {"_count": 1}}, "could": {"_count": 1, "compete": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "Deftly": {"_count": 1, "spraying": {"_count": 1, "two": {"_count": 1}}}, "Range": {"_count": 1, "of": {"_count": 1, "sweets": {"_count": 1}}}, "chews": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Puking": {"_count": 6, "Pastilles": {"_count": 5, "you": {"_count": 1}, "or": {"_count": 2}, "yesterday": {"_count": 1}, "Nosebleed": {"_count": 1}}, "Pastille": {"_count": 1, "": {"_count": 1}}}, "Pastilles": {"_count": 5, "you": {"_count": 1, "throw": {"_count": 1}}, "or": {"_count": 2, "Fainting": {"_count": 1}, "the": {"_count": 1}}, "yesterday": {"_count": 1, "We": {"_count": 1}}, "Nosebleed": {"_count": 1, "Nougat": {"_count": 1}}}, "Moment": {"_count": 1, "youve": {"_count": 1, "been": {"_count": 1}}}, "restores": {"_count": 1, "you": {"_count": 1, "to": {"_count": 1}}}, "unprofitable": {"_count": 1, "boredom": {"_count": 1, "": {"_count": 1}}}, "adverts": {"_count": 1, "anyway": {"_count": 1, "whispered": {"_count": 1}}}, "testers": {"_count": 3, "are": {"_count": 1, "having": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "dates": {"_count": 1}}}, "puking": {"_count": 1, "long": {"_count": 1, "enough": {"_count": 1}}}, "Testers": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Fainting": {"_count": 3, "Fancies": {"_count": 3, "we": {"_count": 1}, "": {"_count": 1}, "from": {"_count": 1}}}, "Fancies": {"_count": 4, "we": {"_count": 1, "both": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}}, "Nosebleed": {"_count": 5, "Nougat": {"_count": 5, "Mum": {"_count": 1}, "cheap": {"_count": 1}, "or": {"_count": 1}, "was": {"_count": 1}, "Extendable": {"_count": 1}}}, "Nougat": {"_count": 5, "Mum": {"_count": 1, "thought": {"_count": 1}}, "cheap": {"_count": 1, "if": {"_count": 1}}, "or": {"_count": 1, "or": {"_count": 1}}, "was": {"_count": 1, "most": {"_count": 1}}, "Extendable": {"_count": 1, "Ears": {"_count": 1}}}, "premises": {"_count": 8, "yet": {"_count": 1, "said": {"_count": 1}}, "too": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, "?": {"_count": 1}, ".": {"_count": 1}}, "in": {"_count": 1, "Diagon": {"_count": 1}}, "whacking": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 1, "dusk": {"_count": 1}}}, "thousandGalleon": {"_count": 2, "prize": {"_count": 1, "money": {"_count": 1}}, "reward": {"_count": 1, "to": {"_count": 1}}}, "furthering": {"_count": 1, "their": {"_count": 1, "plans": {"_count": 1}}}, "dedoxying": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "intensive": {"_count": 2, "spraying": {"_count": 1, "unconscious": {"_count": 1}}, "remedial": {"_count": 1, "potions": {"_count": 1}}}, "covetous": {"_count": 1, "looks": {"_count": 1, "": {"_count": 1}}}, "glassfronted": {"_count": 3, "cabinets": {"_count": 1, "standing": {"_count": 1}}, "cabinet": {"_count": 1, "on": {"_count": 1}}, "case": {"_count": 1, "": {"_count": 1}}}, "snakeskin": {"_count": 1, "a": {"_count": 1, "number": {"_count": 1}}}, "tarnished": {"_count": 7, "silver": {"_count": 2, "boxes": {"_count": 1}, "frames": {"_count": 1}}, "brass": {"_count": 1, "plaque": {"_count": 1}}, "chandeliers": {"_count": 1, "were": {"_count": 1}}, "scales": {"_count": 1, "": {"_count": 1}}, "mouth": {"_count": 1, "organ": {"_count": 1}}, "tiara": {"_count": 1, "on": {"_count": 1}}}, "inscribed": {"_count": 3, "with": {"_count": 2, "languages": {"_count": 1}, "the": {"_count": 1}}, "upon": {"_count": 1, "The": {"_count": 1}}}, "opal": {"_count": 2, "set": {"_count": 1, "into": {"_count": 1}}, "necklace": {"_count": 1, "was": {"_count": 1}}}, "gingery": {"_count": 2, "head": {"_count": 1, "and": {"_count": 1}}, "blond": {"_count": 1, "": {"_count": 1}}}, "rendered": {"_count": 5, "Extendable": {"_count": 1, "Ears": {"_count": 1}}, "him": {"_count": 1, "quite": {"_count": 1}}, "me": {"_count": 1, "a": {"_count": 1}}, "her": {"_count": 1, "temporarily": {"_count": 1}}, "his": {"_count": 1, "soul": {"_count": 1}}}, "unnecessary": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "amount": {"_count": 1, "of": {"_count": 1}}, "force": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "visits": {"_count": 1, "to": {"_count": 1}}, "by": {"_count": 1, "saying": {"_count": 1}}, "quite": {"_count": 1, "unnecessary": {"_count": 1}}, "blot": {"_count": 1, "on": {"_count": 1}}}, "HIDEOUT": {"_count": 1, "FOR": {"_count": 1, "STOLEN": {"_count": 1}}}, "STOLEN": {"_count": 2, "GOODS": {"_count": 1, "": {"_count": 1}}, "CAULDRONS": {"_count": 1, "INTO": {"_count": 1}}}, "GOODS": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "permeate": {"_count": 2, "the": {"_count": 2, "room": {"_count": 2}}}, "COMPLETELY": {"_count": 1, "IRRESPONSIBLE": {"_count": 1, "AS": {"_count": 1}}}, "IRRESPONSIBLE": {"_count": 1, "AS": {"_count": 1, "IF": {"_count": 1}}}, "WORRY": {"_count": 1, "ABOUT": {"_count": 1, "WITHOUT": {"_count": 1}}}, "WITHOUT": {"_count": 1, "YOU": {"_count": 1, "DRAGGING": {"_count": 1}}}, "DRAGGING": {"_count": 1, "STOLEN": {"_count": 1, "CAULDRONS": {"_count": 1}}}, "CAULDRONS": {"_count": 1, "INTO": {"_count": 1, "THE": {"_count": 1}}}, "INTO": {"_count": 1, "THE": {"_count": 1, "HOUSE": {"_count": 1}}}, "builds": {"_count": 1, "up": {"_count": 1, "a": {"_count": 1}}}, "loincloth": {"_count": 5, "around": {"_count": 1, "its": {"_count": 1}}, "muttering": {"_count": 1, "horrible": {"_count": 1}}, "and": {"_count": 1, "threw": {"_count": 1}}, "Sirius": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Acting": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "hunchbacked": {"_count": 4, "slowly": {"_count": 1, "and": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "jowls": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}}, "bullfrogs": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "cawing": {"_count": 1}}, "voice": {"_count": 2, "and": {"_count": 1}, "audible": {"_count": 1}}}, "Smells": {"_count": 1, "like": {"_count": 1, "a": {"_count": 1}}}, "brats": {"_count": 4, "messing": {"_count": 1, "up": {"_count": 1}}, "destroy": {"_count": 1, "it": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "of": {"_count": 1, "Mudbloods": {"_count": 1}}}, "Mistresss": {"_count": 4, "house": {"_count": 1, "oh": {"_count": 1}}, "old": {"_count": 1, "house": {"_count": 1}}, "gloves": {"_count": 1, "the": {"_count": 1}}, "heart": {"_count": 1, "with": {"_count": 1}}}, "Mistress": {"_count": 12, "if": {"_count": 1, "she": {"_count": 1}}, "knew": {"_count": 1, "oh": {"_count": 1}}, "saw": {"_count": 1, "him": {"_count": 1}}, "what": {"_count": 3, "would": {"_count": 2}, "he": {"_count": 1}}, "would": {"_count": 1, "never": {"_count": 1}}, "now": {"_count": 1, "yes": {"_count": 1}}, "are": {"_count": 1, "alone": {"_count": 1}}, "Black": {"_count": 1, "but": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "mad": {"_count": 1}}}, "audibly": {"_count": 3, "Nasty": {"_count": 1, "little": {"_count": 1}}, "Blimey": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "waved": {"_count": 1}}}, "blacker": {"_count": 2, "every": {"_count": 1, "day": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "swine": {"_count": 1, "who": {"_count": 1, "broke": {"_count": 1}}}, "disobey": {"_count": 4, "a": {"_count": 2, "direct": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "orders": {"_count": 1, "at": {"_count": 1}}}, "redolent": {"_count": 1, "of": {"_count": 1, "deepest": {"_count": 1}}}, "treasures": {"_count": 9, "thrown": {"_count": 1, "out": {"_count": 1}}, "for": {"_count": 1, "sale": {"_count": 1}}, "were": {"_count": 1, "missing": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "which": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "his": {"_count": 1, "safeguards": {"_count": 1}}}, "gnawed": {"_count": 1, "it": {"_count": 1, "in": {"_count": 1}}}, "dating": {"_count": 2, "back": {"_count": 1, "as": {"_count": 1}}, "opportunities": {"_count": 1, "are": {"_count": 1}}}, "Middle": {"_count": 2, "Ages": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "TOUJOURS": {"_count": 1, "PUR": {"_count": 1, "Youre": {"_count": 1}}}, "PUR": {"_count": 2, "Youre": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "camped": {"_count": 2, "out": {"_count": 1, "at": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}}, "Alphard": {"_count": 1, "had": {"_count": 1, "left": {"_count": 1}}}, "royal": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "REGULUS": {"_count": 1, "BLACK": {"_count": 1, "": {"_count": 1}}}, "purification": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Regulus": {"_count": 45, "was": {"_count": 6, "a": {"_count": 1}, "ever": {"_count": 1}, "instantly": {"_count": 1}, "very": {"_count": 1}, "strange": {"_count": 1}, "trying": {"_count": 1}}, "predeceased": {"_count": 1, "him": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "only": {"_count": 1, "managed": {"_count": 1}}, "Arcturus": {"_count": 2, "Black": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "had": {"_count": 7, "striven": {"_count": 1}, "to": {"_count": 1}, "proper": {"_count": 1}, "volunteered": {"_count": 1}, "disappeared": {"_count": 1}, "ffforbidden": {"_count": 1}, "placed": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "s": {"_count": 2, "said": {"_count": 1}, "family": {"_count": 1}}, "have": {"_count": 1, "to": {"_count": 1}}, "joined": {"_count": 1, "the": {"_count": 1}}, "came": {"_count": 2, "down": {"_count": 1}, "to": {"_count": 1}}, "always": {"_count": 1, "liked": {"_count": 1}}, "said": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "honor": {"_count": 1}}, "to": {"_count": 1, "save": {"_count": 1}}, "told": {"_count": 3, "Kreacher": {"_count": 3}}, "say": {"_count": 1, "when": {"_count": 1}}, "who": {"_count": 1, "sailed": {"_count": 1}}, "took": {"_count": 1, "from": {"_count": 1}}, "died": {"_count": 1, "to": {"_count": 1}}, "certainly": {"_count": 1, "was": {"_count": 1}}, "changed": {"_count": 1, "his": {"_count": 1}}, "started": {"_count": 1, "we": {"_count": 1}}, "and": {"_count": 1, "Im": {"_count": 1}}, "Black": {"_count": 1, "bouncing": {"_count": 1}}}, "Phineas": {"_count": 83, "Nigellus": {"_count": 54, "": {"_count": 6}, "to": {"_count": 3}, "said": {"_count": 2}, "had": {"_count": 2}, "stroking": {"_count": 1}, "still": {"_count": 1}, "smoothly": {"_count": 1}, "raising": {"_count": 1}, "even": {"_count": 1}, "idly": {"_count": 1}, "standing": {"_count": 1}, "gave": {"_count": 1}, "did": {"_count": 2}, "slyly": {"_count": 1}, "slowly": {"_count": 1}, "Black": {"_count": 3}, "who": {"_count": 2}, "incensed": {"_count": 1}, "was": {"_count": 3}, "say": {"_count": 1}, "actually": {"_count": 1}, "Hermione": {"_count": 1}, "will": {"_count": 1}, "free": {"_count": 1}, "would": {"_count": 2}, "slid": {"_count": 1}, "froze": {"_count": 1}, "now": {"_count": 1}, "raised": {"_count": 1}, "starting": {"_count": 1}, "paused": {"_count": 1}, "turned": {"_count": 1}, "stuck": {"_count": 1}, "talked": {"_count": 1}, "inadvertently": {"_count": 1}, "invariably": {"_count": 1}, "came": {"_count": 1}, "called": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 3}, "!": {"_count": 3}, "?": {"_count": 1}}, "said": {"_count": 4, "Dumbledore": {"_count": 4}}, "in": {"_count": 2, "a": {"_count": 2}}, "s": {"_count": 2, "voice": {"_count": 2}}, "eyeing": {"_count": 1, "this": {"_count": 1}}, "had": {"_count": 1, "reappeared": {"_count": 1}}, "Nigelluss": {"_count": 7, "empty": {"_count": 2}, "voice": {"_count": 1}, "clever": {"_count": 1}, "interest": {"_count": 1}, "portrait": {"_count": 2}}, "brusquely": {"_count": 1, "": {"_count": 1}}, "marching": {"_count": 1, "out": {"_count": 1}}, "replied": {"_count": 1, "Dumbledore": {"_count": 1}}, "redouble": {"_count": 1, "his": {"_count": 1}}, "snorted": {"_count": 1, "impatiently": {"_count": 1}}}, "Nigellus": {"_count": 54, "": {"_count": 6, ".": {"_count": 4}, "?": {"_count": 2}}, "to": {"_count": 3, "report": {"_count": 1}, "watch": {"_count": 1}, "look": {"_count": 1}}, "said": {"_count": 2, "Arthurs": {"_count": 1}, "lazily": {"_count": 1}}, "had": {"_count": 2, "appeared": {"_count": 1}, "still": {"_count": 1}}, "stroking": {"_count": 1, "his": {"_count": 1}}, "still": {"_count": 1, "stroking": {"_count": 1}}, "smoothly": {"_count": 1, "": {"_count": 1}}, "raising": {"_count": 1, "a": {"_count": 1}}, "even": {"_count": 1, "more": {"_count": 1}}, "idly": {"_count": 1, "examining": {"_count": 1}}, "standing": {"_count": 1, "again": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "slyly": {"_count": 1, "": {"_count": 1}}, "slowly": {"_count": 1, "from": {"_count": 1}}, "Black": {"_count": 3, "Siriuss": {"_count": 2}, "was": {"_count": 1}}, "who": {"_count": 2, "hissed": {"_count": 1}, "had": {"_count": 1}}, "incensed": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 3, "evidently": {"_count": 2}, "not": {"_count": 1}}, "say": {"_count": 1, "I": {"_count": 1}}, "actually": {"_count": 1, "snorted": {"_count": 1}}, "Hermione": {"_count": 1, "explained": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "free": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 2, "have": {"_count": 1}, "instantly": {"_count": 1}}, "slid": {"_count": 1, "into": {"_count": 1}}, "froze": {"_count": 1, "abandoning": {"_count": 1}}, "now": {"_count": 1, "turning": {"_count": 1}}, "raised": {"_count": 1, "supercilious": {"_count": 1}}, "starting": {"_count": 1, "to": {"_count": 1}}, "paused": {"_count": 1, "again": {"_count": 1}}, "turned": {"_count": 1, "his": {"_count": 1}}, "stuck": {"_count": 1, "his": {"_count": 1}}, "talked": {"_count": 1, "about": {"_count": 1}}, "inadvertently": {"_count": 1, "emphasized": {"_count": 1}}, "invariably": {"_count": 1, "refused": {"_count": 1}}, "came": {"_count": 1, "hurrying": {"_count": 1}}, "called": {"_count": 1, "in": {"_count": 1}}}, "greatgreatgrandfather": {"_count": 3, "see": {"_count": 1, "": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}}, "Araminta": {"_count": 1, "Meliflua": {"_count": 1, "": {"_count": 1}}}, "Meliflua": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Mugglehunting": {"_count": 1, "legal": {"_count": 1, "": {"_count": 1}}}, "legal": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Elladora": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tradition": {"_count": 5, "of": {"_count": 1, "beheading": {"_count": 1}}, "and": {"_count": 1, "innovation": {"_count": 1}}, "decreed": {"_count": 1, "that": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "disowned": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Andromeda": {"_count": 3, "was": {"_count": 1, "my": {"_count": 1}}, "married": {"_count": 1, "a": {"_count": 1}}, "says": {"_count": 1, "Tonkss": {"_count": 1}}}, "Andromedas": {"_count": 4, "not": {"_count": 1, "on": {"_count": 1}}, "sisters": {"_count": 1, "are": {"_count": 1}}, "burn": {"_count": 2, "mark": {"_count": 1}, "Bellatrix": {"_count": 1}}}, "Bellatrix": {"_count": 167, "and": {"_count": 15, "Narcissa": {"_count": 1}, "her": {"_count": 4}, "she": {"_count": 2}, "a": {"_count": 1}, "wife": {"_count": 1}, "the": {"_count": 1}, "pass": {"_count": 1}, "hers": {"_count": 1}, "Lucius": {"_count": 1}, "Malfoy": {"_count": 1}, "Molly": {"_count": 1}}, "Black": {"_count": 1, "which": {"_count": 1}}, "Lestrange": {"_count": 23, "inside": {"_count": 1}, "": {"_count": 6}, "got": {"_count": 1}, "did": {"_count": 1}, "convicted": {"_count": 1}, "have": {"_count": 1}, "and": {"_count": 2}, "sprinted": {"_count": 1}, "turned": {"_count": 1}, "Siriuss": {"_count": 1}, "but": {"_count": 1}, "wasnt": {"_count": 1}, "was": {"_count": 2}, "walked": {"_count": 1}, "shrieking": {"_count": 1}, "killed": {"_count": 1}}, "had": {"_count": 5, "not": {"_count": 1}, "lain": {"_count": 1}, "made": {"_count": 2}, "spoken": {"_count": 1}}, "Lestranges": {"_count": 5, "face": {"_count": 2}, "wand": {"_count": 1}, "triumphant": {"_count": 1}, "smile": {"_count": 1}}, "said": {"_count": 7, "Malfoy": {"_count": 1}, "nothing": {"_count": 2}, "Snape": {"_count": 2}, "Tonks": {"_count": 1}, "to": {"_count": 1}}, "": {"_count": 28, ".": {"_count": 24}, "!": {"_count": 1}, "?": {"_count": 3}}, "the": {"_count": 1, "grin": {"_count": 1}}, "shrieked": {"_count": 1, "": {"_count": 1}}, "incoherently": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "a": {"_count": 1}}, "Rodolphus": {"_count": 1, "you": {"_count": 1}}, "drew": {"_count": 1, "nearer": {"_count": 1}}, "raised": {"_count": 1, "her": {"_count": 1}}, "raising": {"_count": 1, "her": {"_count": 1}}, "nobody": {"_count": 1, "seemed": {"_count": 1}}, "triumphant": {"_count": 1, "running": {"_count": 1}}, "were": {"_count": 1, "now": {"_count": 1}}, "disappearing": {"_count": 1, "through": {"_count": 1}}, "was": {"_count": 8, "almost": {"_count": 1}, "supporting": {"_count": 1}, "directly": {"_count": 1}, "terrified": {"_count": 1}, "not": {"_count": 1}, "panting": {"_count": 1}, "still": {"_count": 1}, "equal": {"_count": 1}}, "screamed": {"_count": 2, "": {"_count": 1}, "Be": {"_count": 1}}, "s": {"_count": 1, "own": {"_count": 1}}, "flinging": {"_count": 1, "herself": {"_count": 1}}, "who": {"_count": 3, "screamed": {"_count": 1}, "likes": {"_count": 1}, "had": {"_count": 1}}, "still": {"_count": 3, "trapped": {"_count": 1}, "looked": {"_count": 1}, "attempting": {"_count": 1}}, "he": {"_count": 1, "replied": {"_count": 1}}, "lowered": {"_count": 1, "her": {"_count": 1}}, "is": {"_count": 1, "bursting": {"_count": 1}}, "I": {"_count": 2, "am": {"_count": 1}, "stayed": {"_count": 1}}, "passionately": {"_count": 1, "": {"_count": 1}}, "showed": {"_count": 1, "every": {"_count": 1}}, "The": {"_count": 1, "Dark": {"_count": 1}}, "firing": {"_count": 1, "up": {"_count": 1}}, "flushing": {"_count": 1, "": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 2, "satisfied": {"_count": 1}, "around": {"_count": 1}}, "her": {"_count": 1, "fleeting": {"_count": 1}}, "indifferently": {"_count": 1, "": {"_count": 1}}, "gasped": {"_count": 1, "Narcissa": {"_count": 1}}, "ruthlessly": {"_count": 1, "": {"_count": 1}}, "however": {"_count": 1, "let": {"_count": 1}}, "watched": {"_count": 1, "her": {"_count": 1}}, "will": {"_count": 1, "arrive": {"_count": 1}}, "oh": {"_count": 1, "yes": {"_count": 1}}, "couldnt": {"_count": 1, "have": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}, "leaned": {"_count": 1, "toward": {"_count": 1}}, "from": {"_count": 1, "you": {"_count": 1}}, "gazed": {"_count": 1, "at": {"_count": 1}}, "became": {"_count": 1, "much": {"_count": 1}}, "strode": {"_count": 1, "out": {"_count": 1}}, "bearing": {"_count": 1, "down": {"_count": 1}}, "indicating": {"_count": 1, "the": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "hit": {"_count": 1, "him": {"_count": 1}}, "screaming": {"_count": 1, "too": {"_count": 1}}, "scream": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "down": {"_count": 1}}, "softly": {"_count": 1, "as": {"_count": 1}}, "sprang": {"_count": 1, "to": {"_count": 1}}, "froze": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "there": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 2, "protect": {"_count": 1}, "have": {"_count": 1}}, "instead": {"_count": 1, "she": {"_count": 1}}, "meant": {"_count": 1, "said": {"_count": 1}}, "alone": {"_count": 1, "remained": {"_count": 1}}, "withdrawing": {"_count": 1, "a": {"_count": 1}}, "gloried": {"_count": 1, "in": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "spun": {"_count": 1, "on": {"_count": 1}}, "as": {"_count": 1, "mad": {"_count": 1}}, "laughed": {"_count": 1, "the": {"_count": 1}}}, "marriages": {"_count": 1, "but": {"_count": 1, "Andromeda": {"_count": 1}}}, "mimed": {"_count": 5, "blasting": {"_count": 1, "the": {"_count": 1}}, "writing": {"_count": 1, "in": {"_count": 1}}, "walking": {"_count": 1, "Malfoy": {"_count": 1}}, "taking": {"_count": 1, "something": {"_count": 1}}, "vomiting": {"_count": 1, "into": {"_count": 1}}}, "embroidery": {"_count": 1, "linked": {"_count": 1, "Narcissa": {"_count": 1}}}, "interrelated": {"_count": 1, "said": {"_count": 1, "Sirius": {"_count": 1}}}, "marry": {"_count": 9, "purebloods": {"_count": 1, "your": {"_count": 1}}, "me": {"_count": 1, "anymore": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 1}, "even": {"_count": 1}}, "her": {"_count": 1, "sighed": {"_count": 1}}, "a": {"_count": 2, "werewolf": {"_count": 1}, "pureblood": {"_count": 1}}, "before": {"_count": 1, "her": {"_count": 1}}, "Muggles": {"_count": 1, "": {"_count": 1}}}, "marriage": {"_count": 3, "and": {"_count": 1, "Arthurs": {"_count": 1}}, "Tom": {"_count": 1, "Riddle": {"_count": 1}}, "what": {"_count": 1, "parents": {"_count": 1}}}, "Rodolphus": {"_count": 5, "Lestrange": {"_count": 1, "": {"_count": 1}}, "came": {"_count": 1, "in": {"_count": 1}}, "s": {"_count": 1, "brother": {"_count": 1}}, "you": {"_count": 1, "take": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Lestrange": {"_count": 34, "": {"_count": 12, ".": {"_count": 8}, "?": {"_count": 1}, "!": {"_count": 3}}, "inside": {"_count": 1, "Dumbledores": {"_count": 1}}, "got": {"_count": 1, "sent": {"_count": 1}}, "did": {"_count": 1, "that": {"_count": 1}}, "convicted": {"_count": 1, "of": {"_count": 1}}, "have": {"_count": 1, "rallied": {"_count": 1}}, "and": {"_count": 2, "her": {"_count": 1}, "a": {"_count": 1}}, "sprinted": {"_count": 1, "right": {"_count": 1}}, "turned": {"_count": 1, "tail": {"_count": 1}}, "Siriuss": {"_count": 1, "killer": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "wasnt": {"_count": 1, "she": {"_count": 1}}, "was": {"_count": 2, "sneering": {"_count": 1}, "striding": {"_count": 1}}, "I": {"_count": 2, "want": {"_count": 2}}, "walked": {"_count": 1, "slowly": {"_count": 1}}, "murmured": {"_count": 1, "Tom": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "wishes": {"_count": 1, "to": {"_count": 1}}, "shrieking": {"_count": 1, "at": {"_count": 1}}, "killed": {"_count": 1, "him": {"_count": 1}}}, "brusque": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "Rabastan": {"_count": 2, "was": {"_count": 1, "with": {"_count": 1}}, "go": {"_count": 1, "right": {"_count": 1}}}, "device": {"_count": 4, "in": {"_count": 1, "which": {"_count": 1}}, "Nevilles": {"_count": 1, "grandmother": {"_count": 1}}, "but": {"_count": 1, "unfortunately": {"_count": 1}}, "that": {"_count": 1, "stored": {"_count": 1}}}, "conviction": {"_count": 8, "that": {"_count": 2, "she": {"_count": 1}, "YouKnowWho": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "slumped": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "sense": {"_count": 1}}}, "Wizardkind": {"_count": 4, "on": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "is": {"_count": 1, "living": {"_count": 1}}, "and": {"_count": 1, "if": {"_count": 1}}}, "barklike": {"_count": 3, "laugh": {"_count": 2, "": {"_count": 2}}, "face": {"_count": 1, "in": {"_count": 1}}}, "crusty": {"_count": 1, "covering": {"_count": 1, "like": {"_count": 1}}}, "restoring": {"_count": 3, "its": {"_count": 1, "skin": {"_count": 1}}, "the": {"_count": 2, "lights": {"_count": 1}, "cellars": {"_count": 1}}}, "Wartcap": {"_count": 2, "powder": {"_count": 2, "in": {"_count": 1}, "and": {"_count": 1}}}, "doxyfilled": {"_count": 1, "pocket": {"_count": 1, "": {"_count": 1}}}, "unpleasantlooking": {"_count": 1, "silver": {"_count": 1, "instrument": {"_count": 1}}}, "instrument": {"_count": 12, "something": {"_count": 1, "like": {"_count": 1}}, "and": {"_count": 1, "holding": {"_count": 1}}, "which": {"_count": 1, "looked": {"_count": 1}}, "from": {"_count": 1, "inside": {"_count": 1}}, "in": {"_count": 1, "Georges": {"_count": 1}}, "tinkled": {"_count": 1, "into": {"_count": 1}}, "was": {"_count": 2, "confirming": {"_count": 1}, "for": {"_count": 1}}, "another": {"_count": 1, "gentle": {"_count": 1}}, "upon": {"_count": 1, "its": {"_count": 1}}, "had": {"_count": 1, "stood": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Natures": {"_count": 3, "Nobility": {"_count": 3, "A": {"_count": 3}}}, "Nobility": {"_count": 4, "A": {"_count": 3, "Wizarding": {"_count": 3}}, "of": {"_count": 1, "spirit": {"_count": 1}}}, "Genealogy": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "locket": {"_count": 106, "that": {"_count": 2, "none": {"_count": 1}, "was": {"_count": 1}}, "at": {"_count": 2, "him": {"_count": 1}, "least": {"_count": 1}}, "had": {"_count": 3, "been": {"_count": 1}, "burned": {"_count": 1}, "cut": {"_count": 1}}, "eh": {"_count": 1, "wheres": {"_count": 1}}, "": {"_count": 22, "?": {"_count": 4}, ".": {"_count": 14}, "!": {"_count": 4}}, "transfixed": {"_count": 1, "": {"_count": 1}}, "back": {"_count": 2, "": {"_count": 1}, "to": {"_count": 1}}, "were": {"_count": 1, "both": {"_count": 1}}, "maybe": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "everything": {"_count": 1}, "he": {"_count": 1}, "narrowing": {"_count": 1}}, "lying": {"_count": 2, "curled": {"_count": 1}, "on": {"_count": 1}}, "from": {"_count": 3, "the": {"_count": 1}, "his": {"_count": 1}, "him": {"_count": 1}}, "they": {"_count": 2, "had": {"_count": 1}, "set": {"_count": 1}}, "over": {"_count": 1, "in": {"_count": 1}}, "he": {"_count": 2, "remembered": {"_count": 1}, "told": {"_count": 1}}, "the": {"_count": 1, "morning": {"_count": 1}}, "in": {"_count": 3, "his": {"_count": 1}, "the": {"_count": 1}, "which": {"_count": 1}}, "inside": {"_count": 1, "which": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 6, "accorded": {"_count": 1}, "not": {"_count": 2}, "here": {"_count": 1}, "twitching": {"_count": 1}, "smoking": {"_count": 1}}, "arent": {"_count": 1, "we": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}, "Master": {"_count": 1, "Reguluss": {"_count": 1}}, "Kreacher": {"_count": 1, "did": {"_count": 1}}, "\u2018Master": {"_count": 1, "Regulus": {"_count": 1}}, "into": {"_count": 5, "the": {"_count": 2}, "a": {"_count": 1}, "his": {"_count": 1}, "her": {"_count": 1}}, "like": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "home": {"_count": 1, "he": {"_count": 1}}, "where": {"_count": 1, "Master": {"_count": 1}}, "is": {"_count": 1, "": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "safely": {"_count": 1, "in": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "told": {"_count": 1}}, "bouncing": {"_count": 1, "on": {"_count": 1}}, "Todays": {"_count": 1, "French": {"_count": 1}}, "could": {"_count": 1, "be": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}, "apart": {"_count": 1, "with": {"_count": 1}}, "Ron": {"_count": 1, "Hermione": {"_count": 1}}, "against": {"_count": 1, "his": {"_count": 1}}, "once": {"_count": 1, "and": {"_count": 1}}, "on": {"_count": 2, "the": {"_count": 2}}, "rattled": {"_count": 1, "like": {"_count": 1}}, "swung": {"_count": 1, "wide": {"_count": 1}}, "steady": {"_count": 1, "on": {"_count": 1}}, "tightly": {"_count": 1, "bracing": {"_count": 1}}, "quivering": {"_count": 1, "in": {"_count": 1}}, "first": {"_count": 1, "chests": {"_count": 1}}, "side": {"_count": 1, "by": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "then": {"_count": 1, "hesitated": {"_count": 1}}, "being": {"_count": 1, "stolen": {"_count": 1}}, "are": {"_count": 1, "gone": {"_count": 1}}, "before": {"_count": 1, "coming": {"_count": 1}}, "lay": {"_count": 1, "safe": {"_count": 1}}, "of": {"_count": 1, "Regulus": {"_count": 1}}}, "seals": {"_count": 2, "and": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "mind": {"_count": 1}}}, "medal": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "wrested": {"_count": 3, "a": {"_count": 1, "large": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "the": {"_count": 1, "three": {"_count": 1}}}, "snogging": {"_count": 7, "a": {"_count": 1, "pair": {"_count": 1}}, "people": {"_count": 1, "in": {"_count": 1}}, "done": {"_count": 1, "yourself": {"_count": 1}}, "you": {"_count": 1, "doesnt": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "her": {"_count": 2, "now": {"_count": 1}, "": {"_count": 1}}}, "decontaminate": {"_count": 1, "finally": {"_count": 1, "the": {"_count": 1}}}, "undesirable": {"_count": 2, "things": {"_count": 1, "left": {"_count": 1}}, "no": {"_count": 1, "": {"_count": 1}}}, "motto": {"_count": 2, "was": {"_count": 1, "all": {"_count": 1}}, "TOU": {"_count": 1, "JOURS": {"_count": 1}}}, "unceremoniously": {"_count": 7, "into": {"_count": 2, "a": {"_count": 1}, "her": {"_count": 1}}, "from": {"_count": 3, "him": {"_count": 1}, "your": {"_count": 1}, "anywhere": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "filled": {"_count": 1, "by": {"_count": 1}}}, "waging": {"_count": 1, "war": {"_count": 1, "on": {"_count": 1}}}, "aided": {"_count": 1, "and": {"_count": 1, "abetted": {"_count": 1}}}, "abetted": {"_count": 1, "by": {"_count": 1, "Kreacher": {"_count": 1}}}, "protests": {"_count": 5, "seized": {"_count": 1, "Kreacher": {"_count": 1}}, "and": {"_count": 2, "shouts": {"_count": 1}, "insisted": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "bodily": {"_count": 4, "from": {"_count": 2, "the": {"_count": 2}}, "and": {"_count": 1, "mental": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}}, "gleaned": {"_count": 2, "very": {"_count": 1, "little": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}}, "redeemed": {"_count": 1, "himself": {"_count": 1, "slightly": {"_count": 1}}}, "rescuing": {"_count": 3, "Ron": {"_count": 1, "from": {"_count": 1}}, "Sirius": {"_count": 1, "than": {"_count": 1}}, "me": {"_count": 1, "from": {"_count": 1}}}, "faceless": {"_count": 6, "Ministry": {"_count": 1, "official": {"_count": 1}}, "figure": {"_count": 1, "shimmering": {"_count": 1}}, "people": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "unpleasant": {"_count": 1}}, "sentinels": {"_count": 1, "in": {"_count": 1}}}, "ironed": {"_count": 1, "your": {"_count": 1, "best": {"_count": 1}}}, "unconcerned": {"_count": 7, "": {"_count": 4, ".": {"_count": 4}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "that": {"_count": 1, "not": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}}, "quilted": {"_count": 1, "purple": {"_count": 1, "dressing": {"_count": 1}}}, "Mmmorning": {"_count": 1, "Harry": {"_count": 1, "yawned": {"_count": 1}}}, "bbbeen": {"_count": 1, "up": {"_count": 1, "all": {"_count": 1}}}, "Porridge": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Muffins": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Kippers": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Bacon": {"_count": 2, "and": {"_count": 2, "eggs": {"_count": 2}}}, "Toast": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Scrimgeour": {"_count": 141, "": {"_count": 24, "?": {"_count": 2}, ".": {"_count": 21}, "!": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}, "Minister": {"_count": 1, "of": {"_count": 1}}, "looked": {"_count": 3, "rather": {"_count": 1}, "annoyed": {"_count": 1}, "as": {"_count": 1}}, "to": {"_count": 2, "Fudge": {"_count": 1}, "Harry": {"_count": 1}}, "grasped": {"_count": 1, "it": {"_count": 1}}, "shortly": {"_count": 1, "or": {"_count": 1}}, "cut": {"_count": 1, "in": {"_count": 1}}, "without": {"_count": 2, "a": {"_count": 2}}, "coldly": {"_count": 1, "": {"_count": 1}}, "barely": {"_count": 1, "seemed": {"_count": 1}}, "merely": {"_count": 1, "shrugged": {"_count": 1}}, "was": {"_count": 8, "already": {"_count": 1}, "a": {"_count": 1}, "watching": {"_count": 1}, "here": {"_count": 1}, "looking": {"_count": 1}, "limping": {"_count": 1}, "right": {"_count": 1}, "I": {"_count": 1}}, "turned": {"_count": 3, "slowly": {"_count": 1}, "a": {"_count": 1}, "back": {"_count": 1}}, "previously": {"_count": 1, "Head": {"_count": 1}}, "taking": {"_count": 1, "office": {"_count": 1}}, "spoke": {"_count": 2, "today": {"_count": 1}, "": {"_count": 1}}, "who": {"_count": 3, "used": {"_count": 1}, "seemed": {"_count": 1}, "looked": {"_count": 1}}, "that": {"_count": 2, "the": {"_count": 1}, "sword": {"_count": 1}}, "has": {"_count": 1, "set": {"_count": 1}}, "this": {"_count": 1, "was": {"_count": 1}}, "first": {"_count": 1, "took": {"_count": 1}}, "about": {"_count": 1, "Stan": {"_count": 1}}, "paused": {"_count": 1, "in": {"_count": 1}}, "s": {"_count": 3, "pretense": {"_count": 1}, "eyes": {"_count": 1}, "expression": {"_count": 1}}, "could": {"_count": 2, "speak": {"_count": 1}, "answer": {"_count": 1}}, "standing": {"_count": 2, "back": {"_count": 1}, "up": {"_count": 1}}, "limping": {"_count": 1, "slightly": {"_count": 1}}, "stopping": {"_count": 1, "at": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}, "squinting": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "get": {"_count": 1, "there": {"_count": 1}}, "said": {"_count": 4, "looking": {"_count": 1}, "with": {"_count": 1}, "to": {"_count": 2}}, "sounding": {"_count": 1, "relieved": {"_count": 1}}, "frowning": {"_count": 1, "slightly": {"_count": 1}}, "did": {"_count": 5, "not": {"_count": 5}}, "quickly": {"_count": 1, "": {"_count": 1}}, "brusquely": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 2, "you": {"_count": 1}, "have": {"_count": 1}}, "his": {"_count": 2, "eyes": {"_count": 1}, "voice": {"_count": 1}}, "as": {"_count": 2, "well": {"_count": 1}, "he": {"_count": 1}}, "wanted": {"_count": 1, "to": {"_count": 1}}, "tonight": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 1, "grave": {"_count": 1}}, "or": {"_count": 1, "any": {"_count": 1}}, "quietly": {"_count": 2, "": {"_count": 2}}, "stopped": {"_count": 1, "too": {"_count": 1}}, "hesitated": {"_count": 1, "then": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "going": {"_count": 1, "in": {"_count": 1}}, "want": {"_count": 1, "": {"_count": 1}}, "must": {"_count": 2, "be": {"_count": 1}, "somehow": {"_count": 1}}, "down": {"_count": 1, "": {"_count": 1}}, "doesnt": {"_count": 1, "want": {"_count": 1}}, "remains": {"_count": 1, "shut": {"_count": 1}}, "instantly": {"_count": 1, "recognizable": {"_count": 1}}, "came": {"_count": 1, "within": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "sat": {"_count": 1, "himself": {"_count": 1}}, "gave": {"_count": 1, "Harry": {"_count": 1}}, "dismissively": {"_count": 1, "": {"_count": 1}}, "ignoring": {"_count": 1, "Hermione": {"_count": 1}}, "took": {"_count": 2, "from": {"_count": 1}, "a": {"_count": 1}}, "leaned": {"_count": 2, "forward": {"_count": 2}}, "watching": {"_count": 1, "Ron": {"_count": 1}}, "persevered": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 3, "no": {"_count": 1}, "given": {"_count": 1}, "refused": {"_count": 1}}, "now": {"_count": 1, "pulled": {"_count": 1}}, "pulled": {"_count": 1, "out": {"_count": 1}}, "shifting": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "Ron": {"_count": 1, "and": {"_count": 1}}, "scratched": {"_count": 1, "his": {"_count": 1}}, "limped": {"_count": 1, "toward": {"_count": 1}}, "breathing": {"_count": 1, "hard": {"_count": 1}}, "the": {"_count": 1, "scars": {"_count": 1}}, "made": {"_count": 1, "you": {"_count": 1}}, "is": {"_count": 1, "dead": {"_count": 1}}, "before": {"_count": 1, "they": {"_count": 1}}, "much": {"_count": 1, "but": {"_count": 1}}}, "label": {"_count": 6, "and": {"_count": 1, "smoothing": {"_count": 1}}, "it": {"_count": 1, "clearly": {"_count": 1}}, "affixed": {"_count": 1, "to": {"_count": 1}}, "said": {"_count": 1, "it": {"_count": 1}}, "reading": {"_count": 1, "TO": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "creases": {"_count": 1, "across": {"_count": 1, "the": {"_count": 1}}}, "tttoo": {"_count": 1, "tired": {"_count": 1, "Tonks": {"_count": 1}}}, "hugely": {"_count": 7, "again": {"_count": 1, "": {"_count": 1}}, "magnifying": {"_count": 2, "her": {"_count": 1}, "lenses": {"_count": 1}}, "and": {"_count": 1, "rumpled": {"_count": 1}}, "magnified": {"_count": 1, "eyes": {"_count": 1}}, "snapped": {"_count": 1, "her": {"_count": 1}}, "relieved": {"_count": 1, "": {"_count": 1}}}, "bomber": {"_count": 2, "jacket": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "hearings": {"_count": 1, "on": {"_count": 1, "my": {"_count": 1}}}, "Amelia": {"_count": 10, "Bones": {"_count": 7, "s": {"_count": 1}, "is": {"_count": 1}, "for": {"_count": 1}, "they": {"_count": 1}, "": {"_count": 3}}, "Susan": {"_count": 1, "Bones": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Boness": {"_count": 1, "death": {"_count": 1}}}, "unbolted": {"_count": 2, "the": {"_count": 2, "door": {"_count": 2}}}, "disciplined": {"_count": 1, "for": {"_count": 1, "": {"_count": 1}}}, "commuters": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "stared": {"_count": 1, "curiously": {"_count": 1}}}, "proximity": {"_count": 3, "to": {"_count": 2, "Muggles": {"_count": 1}, "a": {"_count": 1}}, "with": {"_count": 1, "Snape": {"_count": 1}}}, "machines": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wonderfully": {"_count": 1, "ingenious": {"_count": 1, "": {"_count": 1}}}, "handled": {"_count": 4, "the": {"_count": 2, "transaction": {"_count": 1}, "thing": {"_count": 1}}, "it": {"_count": 1, "fine": {"_count": 1}}, "a": {"_count": 1, "recently": {"_count": 1}}}, "transaction": {"_count": 1, "as": {"_count": 1, "Mr": {"_count": 1}}}, "rechecking": {"_count": 1, "the": {"_count": 1, "Underground": {"_count": 1}}}, "besuited": {"_count": 1, "men": {"_count": 1, "and": {"_count": 1}}}, "briefcases": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "still": {"_count": 1, "others": {"_count": 1}}}, "imposing": {"_count": 2, "looking": {"_count": 1, "buildings": {"_count": 1}}, "the": {"_count": 1, "buildings": {"_count": 1}}}, "continual": {"_count": 3, "references": {"_count": 1, "to": {"_count": 1}}, "attempts": {"_count": 1, "to": {"_count": 1}}, "predictions": {"_count": 1, "of": {"_count": 1}}}, "references": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "perspective": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "doesnt": {"_count": 1, "it": {"_count": 1}}}, "shabbylooking": {"_count": 3, "offices": {"_count": 1, "a": {"_count": 1}}, "stalls": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "dumpster": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "still": {"_count": 1, "stood": {"_count": 1}}, "then": {"_count": 1, "forced": {"_count": 1}}}, "location": {"_count": 8, "for": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}, "to": {"_count": 1, "choose": {"_count": 1}}, "we": {"_count": 1, "have": {"_count": 1}}, "had": {"_count": 1, "become": {"_count": 1}}, "Lee": {"_count": 1, "was": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "graffittied": {"_count": 1, "wall": {"_count": 1, "": {"_count": 1}}}, "apparatus": {"_count": 1, "which": {"_count": 1, "was": {"_count": 1}}}, "crookedly": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "vandal": {"_count": 1, "had": {"_count": 1, "tried": {"_count": 1}}}, "dialed": {"_count": 1, "the": {"_count": 1, "number": {"_count": 1}}}, "whirred": {"_count": 2, "smoothly": {"_count": 1, "back": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}}, "compromised": {"_count": 2, "by": {"_count": 2, "holding": {"_count": 1}, "taking": {"_count": 1}}}, "Visitor": {"_count": 3, "please": {"_count": 1, "take": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}}, "Disciplinary": {"_count": 2, "Hearing": {"_count": 1, "on": {"_count": 1}}, "hearing": {"_count": 1, "of": {"_count": 1}}}, "Atrium": {"_count": 20, "": {"_count": 7, ".": {"_count": 7}}, "said": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "level": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "was": {"_count": 3, "the": {"_count": 1}, "full": {"_count": 2}}, "above": {"_count": 1, "and": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "Fudge": {"_count": 1, "and": {"_count": 1}}, "seemed": {"_count": 1, "darker": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "The": {"_count": 1, "wizards": {"_count": 1}}}, "peacockblue": {"_count": 2, "ceiling": {"_count": 1, "was": {"_count": 1}}, "robes": {"_count": 1, "looked": {"_count": 1}}}, "inlaid": {"_count": 3, "with": {"_count": 3, "gleaming": {"_count": 1}, "many": {"_count": 1}, "glittering": {"_count": 1}}}, "heavenly": {"_count": 1, "notice": {"_count": 1, "board": {"_count": 1}}}, "queues": {"_count": 2, "of": {"_count": 1, "wizards": {"_count": 1}}, "were": {"_count": 1, "forming": {"_count": 1}}}, "depart": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "undetected": {"_count": 1, "but": {"_count": 1}}, "the": {"_count": 1, "scene": {"_count": 1}}, "together": {"_count": 1, "for": {"_count": 1}}, "for": {"_count": 1, "Greece": {"_count": 1}}}, "Tallest": {"_count": 1, "of": {"_count": 1, "them": {"_count": 1}}}, "noblelooking": {"_count": 1, "wizard": {"_count": 1, "with": {"_count": 1}}}, "Grouped": {"_count": 1, "around": {"_count": 1, "him": {"_count": 1}}}, "adoringly": {"_count": 2, "up": {"_count": 1, "at": {"_count": 1}}, "stroking": {"_count": 1, "Bills": {"_count": 1}}}, "Glittering": {"_count": 3, "jets": {"_count": 1, "of": {"_count": 1}}, "pinkandsilver": {"_count": 1, "winged": {"_count": 1}}, "shards": {"_count": 1, "of": {"_count": 1}}}, "pops": {"_count": 1, "and": {"_count": 1, "cracks": {"_count": 1}}}, "Apparators": {"_count": 2, "and": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "earlymorning": {"_count": 1, "looks": {"_count": 1, "strode": {"_count": 1}}}, "Fountain": {"_count": 4, "of": {"_count": 4, "Magical": {"_count": 3}, "Fair": {"_count": 1}}}, "Brethren": {"_count": 3, "will": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 1, "spell": {"_count": 1}}, "what": {"_count": 1, "happened": {"_count": 1}}}, "employees": {"_count": 3, "heading": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "in": {"_count": 1, "addition": {"_count": 1}}}, "SECURITY": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "TROLLS": {"_count": 1, "": {"_count": 1}}, "STATUS": {"_count": 1, "TRACKED": {"_count": 1}}}, "shaven": {"_count": 2, "wizard": {"_count": 1, "in": {"_count": 1}}, "cheek": {"_count": 1, "scrutinizing": {"_count": 1}}}, "escorting": {"_count": 3, "a": {"_count": 1, "visitor": {"_count": 1}}, "him": {"_count": 1, "back": {"_count": 1}}, "them": {"_count": 1, "": {"_count": 1}}}, "rod": {"_count": 2, "thin": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "phoenixfeather": {"_count": 2, "core": {"_count": 1, "been": {"_count": 1}}, "wand": {"_count": 1, "had": {"_count": 1}}}, "impaling": {"_count": 1, "the": {"_count": 1, "slip": {"_count": 1}}}, "spike": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "driven": {"_count": 1, "through": {"_count": 1}}}, "Eric": {"_count": 4, "said": {"_count": 1, "Mr": {"_count": 1}}, "the": {"_count": 1, "security": {"_count": 1}}, "Munch": {"_count": 1, "who": {"_count": 1}}, "Whalleys": {"_count": 1, "oozing": {"_count": 1}}}, "Jostled": {"_count": 2, "slightly": {"_count": 1, "by": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "lifts": {"_count": 15, "stood": {"_count": 1, "behind": {"_count": 1}}, "ceiling": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "jabbed": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "were": {"_count": 1, "on": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}, "stretched": {"_count": 1, "ahead": {"_count": 1}}, "called": {"_count": 1, "sycophantically": {"_count": 1}}, "Harry": {"_count": 2, "reviewed": {"_count": 1}, "started": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "then": {"_count": 1, "you": {"_count": 1}}}, "grilles": {"_count": 15, "": {"_count": 1, ".": {"_count": 1}}, "slid": {"_count": 7, "shut": {"_count": 1}, "open": {"_count": 4}, "apart": {"_count": 2}}, "closed": {"_count": 1, "with": {"_count": 1}}, "were": {"_count": 1, "fully": {"_count": 1}}, "housing": {"_count": 1, "as": {"_count": 1}}, "shut": {"_count": 1, "with": {"_count": 1}}, "opened": {"_count": 1, "once": {"_count": 1}}, "clanged": {"_count": 1, "shut": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}}, "Bob": {"_count": 4, "": {"_count": 1, "?": {"_count": 1}}, "Ogdens": {"_count": 1, "memory": {"_count": 1}}, "Ogden": {"_count": 2, "": {"_count": 2}}}, "bogstandard": {"_count": 1, "chicken": {"_count": 1, "until": {"_count": 1}}}, "grille": {"_count": 2, "slid": {"_count": 1, "back": {"_count": 1}}, "before": {"_count": 1, "them": {"_count": 1}}}, "ascended": {"_count": 5, "slowly": {"_count": 1, "chains": {"_count": 1}}, "the": {"_count": 3, "moving": {"_count": 2}, "marble": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "incorporating": {"_count": 5, "the": {"_count": 3, "British": {"_count": 1}, "Floo": {"_count": 1}, "International": {"_count": 1}}, "Beast": {"_count": 2, "Being": {"_count": 2}}}, "Official": {"_count": 1, "Gobstones": {"_count": 1, "Club": {"_count": 1}}}, "Ludicrous": {"_count": 1, "Patents": {"_count": 1, "Office": {"_count": 1}}}, "Patents": {"_count": 1, "Office": {"_count": 1, "": {"_count": 1}}}, "lopsidedly": {"_count": 2, "on": {"_count": 2, "the": {"_count": 2}}}, "extricated": {"_count": 3, "himself": {"_count": 2, "with": {"_count": 1}, "from": {"_count": 1}}, "a": {"_count": 1, "piece": {"_count": 1}}}, "juddered": {"_count": 3, "upward": {"_count": 2, "again": {"_count": 2}}, "to": {"_count": 1, "a": {"_count": 1}}}, "Transport": {"_count": 2, "incorporating": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Authority": {"_count": 2, "Broom": {"_count": 1, "Regulatory": {"_count": 1}}, "for": {"_count": 1, "years": {"_count": 1}}}, "Regulatory": {"_count": 1, "Control": {"_count": 1, "Portkey": {"_count": 1}}}, "Test": {"_count": 5, "Center": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Interdepartmental": {"_count": 1, "memos": {"_count": 1, "Mr": {"_count": 1}}}, "memos": {"_count": 7, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "flapped": {"_count": 1, "around": {"_count": 1}}, "zoomed": {"_count": 2, "out": {"_count": 1}, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}, "that": {"_count": 1, "flapped": {"_count": 1}}}, "Trading": {"_count": 1, "Standards": {"_count": 1, "Body": {"_count": 1}}}, "Standards": {"_count": 1, "Body": {"_count": 1, "the": {"_count": 1}}}, "Body": {"_count": 1, "the": {"_count": 1, "International": {"_count": 1}}}, "Beast": {"_count": 2, "Being": {"_count": 2, "and": {"_count": 2}}}, "Spirit": {"_count": 2, "Divisions": {"_count": 2, "Goblin": {"_count": 2}}}, "Divisions": {"_count": 2, "Goblin": {"_count": 2, "Liaison": {"_count": 2}}}, "Pest": {"_count": 2, "Advisory": {"_count": 2, "Bureau": {"_count": 2}}}, "Advisory": {"_count": 2, "Bureau": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "Bureau": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "Accidents": {"_count": 3, "and": {"_count": 2, "Catastrophes": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "MuggleWorthy": {"_count": 1, "Excuse": {"_count": 1, "Committee": {"_count": 1}}}, "Administration": {"_count": 2, "Services": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}}, "Maintenance": {"_count": 9, "decide": {"_count": 1, "what": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "wears": {"_count": 1, "navy": {"_count": 1}}, "he": {"_count": 1, "thought": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "gesturing": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "sort": {"_count": 1}}, "Department": {"_count": 1, "": {"_count": 1}}}, "hurricanes": {"_count": 1, "last": {"_count": 1, "time": {"_count": 1}}}, "angling": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "Memos": {"_count": 1, "were": {"_count": 1, "zooming": {"_count": 1}}}, "cubicle": {"_count": 10, "read": {"_count": 1, "AUROR": {"_count": 1}}, "walls": {"_count": 1, "with": {"_count": 1}}, "wall": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "through": {"_count": 1, "a": {"_count": 1}}, "behind": {"_count": 2, "them": {"_count": 2}}, "by": {"_count": 1, "inserting": {"_count": 1}}, "just": {"_count": 1, "in": {"_count": 1}}}, "AUROR": {"_count": 1, "HEADQUARTERS": {"_count": 1, "": {"_count": 1}}}, "HEADQUARTERS": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dictating": {"_count": 1, "a": {"_count": 1, "report": {"_count": 1}}}, "Newspaper": {"_count": 1, "cuttings": {"_count": 1, "and": {"_count": 1}}}, "papered": {"_count": 2, "the": {"_count": 1, "walls": {"_count": 1}}, "with": {"_count": 1, "pictures": {"_count": 1}}}, "Siriusfree": {"_count": 1, "space": {"_count": 1, "was": {"_count": 1}}}, "pins": {"_count": 3, "were": {"_count": 1, "glowing": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "woman": {"_count": 1, "": {"_count": 1}}}, "vehicles": {"_count": 1, "sighted": {"_count": 1, "in": {"_count": 1}}}, "firelegs": {"_count": 1, "report": {"_count": 1, "held": {"_count": 1}}}, "\u2018firearms": {"_count": 1, "said": {"_count": 1, "Mr": {"_count": 1}}}, "meatballs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Kingsleys": {"_count": 4, "cubicle": {"_count": 1, "through": {"_count": 1}}, "whisper": {"_count": 1, "and": {"_count": 1}}, "place": {"_count": 1, "Mollys": {"_count": 1}}, "smile": {"_count": 1, "Harry": {"_count": 1}}}, "MISUSE": {"_count": 1, "OF": {"_count": 1, "MUGGLE": {"_count": 1}}}, "MUGGLE": {"_count": 2, "ARTIFACTS": {"_count": 1, "": {"_count": 1}}, "RELATIONS": {"_count": 1, "": {"_count": 1}}}, "ARTIFACTS": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "files": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Snape": {"_count": 1}}}, "obsessions": {"_count": 1, "there": {"_count": 1, "were": {"_count": 1}}}, "dismantled": {"_count": 1, "engine": {"_count": 1, "two": {"_count": 1}}}, "postboxes": {"_count": 1, "he": {"_count": 1, "seemed": {"_count": 1}}}, "disconsolate": {"_count": 2, "way": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 1, "angry": {"_count": 1}}}, "Perkinss": {"_count": 4, "desk": {"_count": 2, "while": {"_count": 1}, "": {"_count": 1}}, "old": {"_count": 2, "armchairs": {"_count": 1}, "tent": {"_count": 1}}}, "Quibbler": {"_count": 35, "from": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 12, ".": {"_count": 10}, "?": {"_count": 2}}, "again": {"_count": 2, "": {"_count": 2}}, "upside": {"_count": 2, "down": {"_count": 2}}, "the": {"_count": 1, "suggestion": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "her": {"_count": 1}}, "came": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "anywhere": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "ever": {"_count": 1}}, "and": {"_count": 2, "hung": {"_count": 1}, "Neville": {"_count": 1}}, "interview": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 1, "reading": {"_count": 1}}, "months": {"_count": 1, "ago": {"_count": 1}}, "still": {"_count": 1, "going": {"_count": 1}}, "carried": {"_count": 1, "his": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}}, "regurgitating": {"_count": 5, "public": {"_count": 1, "toilet": {"_count": 1}}, "toilet": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}, "toilets": {"_count": 2, "last": {"_count": 1}, "": {"_count": 1}}}, "Bethnal": {"_count": 3, "Green": {"_count": 3, "kindly": {"_count": 1}, "": {"_count": 1}, "waiting": {"_count": 1}}}, "AntiMuggle": {"_count": 1, "pranksters": {"_count": 1, "said": {"_count": 1}}}, "pranksters": {"_count": 1, "said": {"_count": 1, "Mr": {"_count": 1}}}, "Wimbledon": {"_count": 1, "one": {"_count": 1, "in": {"_count": 1}}}, "Elephant": {"_count": 2, "and": {"_count": 2, "Castle": {"_count": 2}}}, "pumbles": {"_count": 1, "I": {"_count": 1, "think": {"_count": 1}}}, "Plumbers": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "flummoxed": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "whoevers": {"_count": 1, "doing": {"_count": 1, "it": {"_count": 1}}}, "trivial": {"_count": 2, "for": {"_count": 2, "Aurors": {"_count": 1}, "Sirius": {"_count": 1}}}, "Patrol": {"_count": 1, "ah": {"_count": 1, "Harry": {"_count": 1}}}, "timidlooking": {"_count": 3, "old": {"_count": 1, "wizard": {"_count": 1}}, "second": {"_count": 2, "years": {"_count": 2}}}, "venue": {"_count": 1, "it": {"_count": 1, "starts": {"_count": 1}}}, "Courtroom": {"_count": 2, "Ten": {"_count": 1, "Down": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "catastrophic": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "pummelled": {"_count": 1, "the": {"_count": 1, "number": {"_count": 1}}}, "courtrooms": {"_count": 5, "havent": {"_count": 1, "been": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "my": {"_count": 1}}, "with": {"_count": 1, "Umbridge": {"_count": 1}}, "was": {"_count": 1, "packed": {"_count": 1}}}, "sepulchral": {"_count": 1, "voice": {"_count": 1, "as": {"_count": 1}}}, "unfaltering": {"_count": 1, "gaze": {"_count": 1, "did": {"_count": 1}}}, "courtroom": {"_count": 10, "": {"_count": 4, ".": {"_count": 4}}, "door": {"_count": 2, "had": {"_count": 1}, "enter": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "their": {"_count": 1, "rotting": {"_count": 1}}, "behind": {"_count": 1, "her": {"_count": 1}}}, "8": {"_count": 2, "THE": {"_count": 1, "HEARING": {"_count": 1}}, "p": {"_count": 1, "": {"_count": 1}}}, "HEARING": {"_count": 1, "Harry": {"_count": 1, "gasped": {"_count": 1}}}, "Wizengamots": {"_count": 1, "fault": {"_count": 1, "said": {"_count": 1}}}, "clinked": {"_count": 3, "rather": {"_count": 1, "threateningly": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "withdrew": {"_count": 1}}}, "plumcolored": {"_count": 1, "robes": {"_count": 1, "with": {"_count": 1}}}, "austere": {"_count": 2, "expressions": {"_count": 1, "others": {"_count": 1}}, "efficiency": {"_count": 1, "": {"_count": 1}}}, "dispensed": {"_count": 2, "with": {"_count": 1, "it": {"_count": 1}}, "too": {"_count": 1, "with": {"_count": 1}}}, "indulgent": {"_count": 1, "smile": {"_count": 1, "he": {"_count": 1}}}, "monocle": {"_count": 7, "and": {"_count": 2, "looked": {"_count": 1}, "stared": {"_count": 1}}, "on": {"_count": 1, "Fudges": {"_count": 1}}, "looked": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "dug": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}}, "recognition": {"_count": 5, "from": {"_count": 1, "him": {"_count": 1}}, "a": {"_count": 1, "pallid": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "or": {"_count": 1, "greeting": {"_count": 1}}}, "offenses": {"_count": 3, "committed": {"_count": 1, "under": {"_count": 1}}, "under": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "punishments": {"_count": 1}}}, "resident": {"_count": 3, "at": {"_count": 1, "number": {"_count": 1}}, "of": {"_count": 1, "Little": {"_count": 1}}, "ward": {"_count": 1, "she": {"_count": 1}}}, "Interrogators": {"_count": 1, "Cornelius": {"_count": 1, "Oswald": {"_count": 1}}}, "Oswald": {"_count": 2, "Fudge": {"_count": 2, "Minister": {"_count": 1}, "MINISTER": {"_count": 1}}}, "Dolores": {"_count": 41, "Jane": {"_count": 6, "Umbridge": {"_count": 6}}, "Umbridges": {"_count": 4, "class": {"_count": 1}, "speech": {"_count": 1}, "office": {"_count": 1}, "door": {"_count": 1}}, "Umbridge": {"_count": 20, "": {"_count": 7}, "a": {"_count": 1}, "smiling": {"_count": 1}, "came": {"_count": 1}, "was": {"_count": 2}, "who": {"_count": 1}, "from": {"_count": 1}, "Professor": {"_count": 1}, "said": {"_count": 1}, "left": {"_count": 1}, "has": {"_count": 1}, "had": {"_count": 1}, "an": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 2}}, "said": {"_count": 3, "Dumbledore": {"_count": 2}, "Fudge": {"_count": 1}}, "is": {"_count": 1, "quite": {"_count": 1}}, "and": {"_count": 1, "myself": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "Jane": {"_count": 6, "Umbridge": {"_count": 6, "Senior": {"_count": 2}, "HIGH": {"_count": 3}, "High": {"_count": 1}}}, "Umbridge": {"_count": 542, "Senior": {"_count": 2, "Undersecretary": {"_count": 2}}, "woman": {"_count": 4, "": {"_count": 1}, "all": {"_count": 1}, "had": {"_count": 1}, "just": {"_count": 1}}, "our": {"_count": 1, "new": {"_count": 1}}, "": {"_count": 72, ".": {"_count": 57}, "?": {"_count": 11}, "!": {"_count": 4}}, "said": {"_count": 9, "Hem": {"_count": 1}, "to": {"_count": 1}, "Hermiones": {"_count": 1}, "loudly": {"_count": 1}, "theyre": {"_count": 1}, "coaxingly": {"_count": 1}, "Kingsley": {"_count": 1}, "Dumbledore": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 3, "though": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}}, "simpered": {"_count": 1, "for": {"_count": 1}}, "cleared": {"_count": 1, "her": {"_count": 1}}, "paused": {"_count": 1, "here": {"_count": 1}}, "gave": {"_count": 7, "another": {"_count": 2}, "the": {"_count": 1}, "a": {"_count": 2}, "her": {"_count": 2}}, "but": {"_count": 4, "he": {"_count": 2}, "it": {"_count": 1}, "her": {"_count": 1}}, "did": {"_count": 5, "not": {"_count": 5}}, "spoke": {"_count": 3, "though": {"_count": 1}, "again": {"_count": 1}, "to": {"_count": 1}}, "that": {"_count": 6, "was": {"_count": 1}, "you": {"_count": 1}, "made": {"_count": 1}, "several": {"_count": 1}, "by": {"_count": 1}, "Harry": {"_count": 1}}, "already": {"_count": 1, "seated": {"_count": 1}}, "was": {"_count": 32, "as": {"_count": 1}, "sure": {"_count": 1}, "not": {"_count": 2}, "now": {"_count": 1}, "saying": {"_count": 2}, "making": {"_count": 1}, "there": {"_count": 1}, "enjoying": {"_count": 1}, "standing": {"_count": 4}, "watching": {"_count": 1}, "tucking": {"_count": 1}, "steadily": {"_count": 1}, "stalking": {"_count": 1}, "horrible": {"_count": 1}, "going": {"_count": 1}, "to": {"_count": 1}, "sitting": {"_count": 2}, "feeling": {"_count": 1}, "still": {"_count": 3}, "speaking": {"_count": 1}, "walking": {"_count": 1}, "the": {"_count": 1}, "lying": {"_count": 1}, "certainly": {"_count": 1}}, "they": {"_count": 2, "chanted": {"_count": 2}}, "sweetly": {"_count": 6, "": {"_count": 4}, "were": {"_count": 1}, "poking": {"_count": 1}}, "opened": {"_count": 1, "her": {"_count": 1}}, "turning": {"_count": 1, "to": {"_count": 1}}, "or": {"_count": 3, "\u2018No": {"_count": 1}, "Harry": {"_count": 1}, "anybody": {"_count": 1}}, "rang": {"_count": 1, "through": {"_count": 1}}, "left": {"_count": 5, "the": {"_count": 3}, "Hogwarts": {"_count": 1}, "": {"_count": 1}}, "with": {"_count": 11, "her": {"_count": 3}, "the": {"_count": 1}, "a": {"_count": 4}, "that": {"_count": 2}, "Yaxley": {"_count": 1}}, "who": {"_count": 12, "was": {"_count": 5}, "had": {"_count": 4}, "continued": {"_count": 1}, "seemed": {"_count": 1}, "backed": {"_count": 1}}, "seemed": {"_count": 2, "to": {"_count": 2}}, "showing": {"_count": 1, "her": {"_count": 1}}, "raised": {"_count": 4, "her": {"_count": 4}}, "in": {"_count": 14, "a": {"_count": 7}, "her": {"_count": 3}, "one": {"_count": 1}, "the": {"_count": 1}, "honeyed": {"_count": 1}, "an": {"_count": 1}}, "repeated": {"_count": 1, "with": {"_count": 1}}, "smiling": {"_count": 8, "still": {"_count": 2}, "in": {"_count": 1}, "so": {"_count": 1}, "widely": {"_count": 3}, "sweetly": {"_count": 1}}, "promptly": {"_count": 1, "turned": {"_count": 1}}, "talked": {"_count": 1, "over": {"_count": 1}}, "turned": {"_count": 2, "away": {"_count": 1}, "her": {"_count": 1}}, "dismissively": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 4, "up": {"_count": 1}, "as": {"_count": 1}, "at": {"_count": 1}, "quickly": {"_count": 1}}, "however": {"_count": 1, "did": {"_count": 1}}, "stood": {"_count": 4, "up": {"_count": 2}, "a": {"_count": 1}, "facing": {"_count": 1}}, "triumphantly": {"_count": 2, "": {"_count": 1}, "whom": {"_count": 1}}, "sat": {"_count": 2, "down": {"_count": 1}, "bolt": {"_count": 1}}, "pulled": {"_count": 1, "a": {"_count": 1}}, "holding": {"_count": 1, "out": {"_count": 1}}, "had": {"_count": 21, "written": {"_count": 2}, "forced": {"_count": 2}, "called": {"_count": 1}, "noticed": {"_count": 1}, "just": {"_count": 1}, "nearly": {"_count": 1}, "to": {"_count": 1}, "arrived": {"_count": 1}, "it": {"_count": 1}, "been": {"_count": 2}, "continued": {"_count": 1}, "released": {"_count": 1}, "obviously": {"_count": 1}, "great": {"_count": 1}, "turned": {"_count": 1}, "fastened": {"_count": 1}, "set": {"_count": 1}, "stuck": {"_count": 1}}, "at": {"_count": 4, "five": {"_count": 1}, "all": {"_count": 1}, "more": {"_count": 1}, "once": {"_count": 1}}, "letting": {"_count": 1, "you": {"_count": 1}}, "anyway": {"_count": 1, "": {"_count": 1}}, "s": {"_count": 4, "room": {"_count": 1}, "fake": {"_count": 1}, "office": {"_count": 2}}, "a": {"_count": 4, "private": {"_count": 1}, "really": {"_count": 1}, "little": {"_count": 1}, "contemptuous": {"_count": 1}}, "would": {"_count": 5, "perhaps": {"_count": 1}, "be": {"_count": 3}, "keep": {"_count": 1}}, "look": {"_count": 1, "up": {"_count": 1}}, "womans": {"_count": 1, "foul": {"_count": 1}}, "is": {"_count": 11, "encountering": {"_count": 1}, "shorter": {"_count": 1}, "doing": {"_count": 1}, "in": {"_count": 2}, "watching": {"_count": 1}, "looking": {"_count": 1}, "already": {"_count": 1}, "still": {"_count": 1}, "shrieking": {"_count": 1}, "there": {"_count": 1}}, "now": {"_count": 3, "may": {"_count": 1}, "scribbling": {"_count": 1}, "pacing": {"_count": 1}}, "touching": {"_count": 1, "me": {"_count": 1}}, "deepened": {"_count": 1, "even": {"_count": 1}}, "came": {"_count": 3, "to": {"_count": 1}, "bustling": {"_count": 1}, "pelting": {"_count": 1}}, "and": {"_count": 22, "of": {"_count": 1}, "continued": {"_count": 1}, "her": {"_count": 4}, "the": {"_count": 2}, "Harry": {"_count": 1}, "up": {"_count": 1}, "Filch": {"_count": 2}, "did": {"_count": 1}, "blowing": {"_count": 1}, "imagined": {"_count": 1}, "and": {"_count": 1}, "Snape": {"_count": 1}, "now": {"_count": 1}, "Yaxley": {"_count": 4}}, "has": {"_count": 8, "been": {"_count": 2}, "only": {"_count": 1}, "already": {"_count": 1}, "brought": {"_count": 1}, "left": {"_count": 1}, "told": {"_count": 1}, "chucked": {"_count": 1}}, "wont": {"_count": 2, "know": {"_count": 1}, "be": {"_count": 1}}, "just": {"_count": 1, "lurked": {"_count": 1}}, "herself": {"_count": 3, "": {"_count": 1}, "had": {"_count": 1}, "because": {"_count": 1}}, "today": {"_count": 1, "said": {"_count": 1}}, "emerging": {"_count": 1, "through": {"_count": 1}}, "grasped": {"_count": 1, "the": {"_count": 1}}, "sitting": {"_count": 2, "right": {"_count": 1}, "there": {"_count": 1}}, "covertly": {"_count": 1, "": {"_count": 1}}, "looking": {"_count": 6, "up": {"_count": 1}, "so": {"_count": 1}, "displeased": {"_count": 1}, "eagerly": {"_count": 1}, "triumphant": {"_count": 1}, "at": {"_count": 1}}, "making": {"_count": 3, "a": {"_count": 2}, "another": {"_count": 1}}, "made": {"_count": 3, "another": {"_count": 1}, "a": {"_count": 2}}, "very": {"_count": 2, "clearly": {"_count": 1}, "loudly": {"_count": 1}}, "softly": {"_count": 3, "making": {"_count": 1}, "looking": {"_count": 1}, "patting": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}, "blinked": {"_count": 1, "but": {"_count": 1}}, "forgetting": {"_count": 1, "to": {"_count": 1}}, "smoothly": {"_count": 1, "": {"_count": 1}}, "sleekly": {"_count": 2, "": {"_count": 2}}, "the": {"_count": 3, "satisfaction": {"_count": 1}, "two": {"_count": 1}, "injustice": {"_count": 1}}, "muttered": {"_count": 1, "Harry": {"_count": 1}}, "get": {"_count": 1, "what": {"_count": 1}}, "employing": {"_count": 1, "the": {"_count": 1}}, "how": {"_count": 1, "you": {"_count": 1}}, "approach": {"_count": 1, "the": {"_count": 1}}, "asked": {"_count": 4, "": {"_count": 1}, "Snape": {"_count": 1}, "us": {"_count": 1}, "as": {"_count": 1}}, "dropping": {"_count": 1, "her": {"_count": 1}}, "scribbling": {"_count": 2, "upon": {"_count": 1}, "on": {"_count": 1}}, "took": {"_count": 2, "a": {"_count": 1}, "no": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "to": {"_count": 3, "pass": {"_count": 1}, "manage": {"_count": 1}, "spy": {"_count": 1}}, "were": {"_count": 2, "finally": {"_count": 1}, "standing": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "does": {"_count": 1, "come": {"_count": 1}}, "doesnt": {"_count": 1, "want": {"_count": 1}}, "finds": {"_count": 1, "out": {"_count": 1}}, "HIGH": {"_count": 3, "INQUISITOR": {"_count": 3}}, "well": {"_count": 1, "know": {"_count": 1}}, "again": {"_count": 2, "or": {"_count": 1}, "": {"_count": 1}}, "spent": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "scribbled": {"_count": 2, "on": {"_count": 2}}, "have": {"_count": 1, "got": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "attacked": {"_count": 1, "Hedwig": {"_count": 1}}, "knows": {"_count": 1, "how": {"_count": 1}}, "you": {"_count": 2, "see": {"_count": 1}, "did": {"_count": 1}}, "too": {"_count": 1, "said": {"_count": 1}}, "moved": {"_count": 2, "forward": {"_count": 1}, "past": {"_count": 1}}, "I": {"_count": 2, "think": {"_count": 2}}, "still": {"_count": 2, "smiling": {"_count": 1}, "moving": {"_count": 1}}, "her": {"_count": 4, "smile": {"_count": 1}, "voice": {"_count": 3}}, "giving": {"_count": 1, "no": {"_count": 1}}, "pointing": {"_count": 3, "at": {"_count": 2}, "a": {"_count": 1}}, "wheeled": {"_count": 1, "around": {"_count": 1}}, "cutting": {"_count": 1, "coolly": {"_count": 1}}, "swiftly": {"_count": 1, "": {"_count": 1}}, "loudly": {"_count": 3, "cupping": {"_count": 1}, "enough": {"_count": 1}, "": {"_count": 1}}, "walked": {"_count": 1, "toward": {"_count": 1}}, "smiled": {"_count": 1, "indulgently": {"_count": 1}}, "patting": {"_count": 1, "Neville": {"_count": 1}}, "on": {"_count": 3, "the": {"_count": 1}, "their": {"_count": 1}, "her": {"_count": 1}}, "could": {"_count": 2, "interfere": {"_count": 1}, "say": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 3, "seized": {"_count": 1}, "took": {"_count": 1}, "was": {"_count": 1}}, "thinks": {"_count": 1, "of": {"_count": 1}}, "merely": {"_count": 1, "increased": {"_count": 1}}, "shrilly": {"_count": 1, "": {"_count": 1}}, "about": {"_count": 1, "the": {"_count": 1}}, "silkily": {"_count": 1, "from": {"_count": 1}}, "impatiently": {"_count": 2, "just": {"_count": 1}, "gesturing": {"_count": 1}}, "admitted": {"_count": 1, "grudgingly": {"_count": 1}}, "smugly": {"_count": 1, "": {"_count": 1}}, "recovered": {"_count": 1, "first": {"_count": 1}}, "furiously": {"_count": 1, "": {"_count": 1}}, "seized": {"_count": 1, "Marietta": {"_count": 1}}, "leapt": {"_count": 1, "back": {"_count": 1}}, "breathlessly": {"_count": 1, "glancing": {"_count": 1}}, "pulling": {"_count": 1, "herself": {"_count": 1}}, "Kingsley": {"_count": 1, "and": {"_count": 1}}, "High": {"_count": 1, "Inquisitor": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "curtly": {"_count": 1, "pointing": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "slipped": {"_count": 1, "sideways": {"_count": 1}}, "raising": {"_count": 1, "her": {"_count": 1}}, "angrily": {"_count": 3, "for": {"_count": 1}, "and": {"_count": 1}, "from": {"_count": 1}}, "tottering": {"_count": 1, "sweatyfaced": {"_count": 1}}, "hasnt": {"_count": 1, "been": {"_count": 1}}, "sir": {"_count": 1, "she": {"_count": 1}}, "policing": {"_count": 1, "the": {"_count": 1}}, "groping": {"_count": 1, "around": {"_count": 1}}, "directly": {"_count": 1, "in": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "shot": {"_count": 1, "glowering": {"_count": 1}}, "almost": {"_count": 1, "crying": {"_count": 1}}, "swinging": {"_count": 1, "his": {"_count": 1}}, "struggle": {"_count": 1, "": {"_count": 1}}, "only": {"_count": 1, "had": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "reckons": {"_count": 1, "it": {"_count": 1}}, "standing": {"_count": 1, "with": {"_count": 1}}, "shooting": {"_count": 1, "a": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "will": {"_count": 1, "wait": {"_count": 1}}, "sent": {"_count": 1, "one": {"_count": 1}}, "hates": {"_count": 1, "parthumans": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "away": {"_count": 1, "again": {"_count": 1}}, "off": {"_count": 1, "": {"_count": 1}}, "coming": {"_count": 1, "replied": {"_count": 1}}, "shaking": {"_count": 2, "the": {"_count": 1}, "now": {"_count": 1}}, "watching": {"_count": 1, "Ginnys": {"_count": 1}}, "flushed": {"_count": 1, "": {"_count": 1}}, "swelling": {"_count": 1, "toadishly": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "its": {"_count": 1, "illegal": {"_count": 1}}, "seizing": {"_count": 1, "Hermione": {"_count": 1}}, "eagerly": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "disappointment": {"_count": 1, "etched": {"_count": 1}}, "harshly": {"_count": 2, "her": {"_count": 1}, "": {"_count": 1}}, "straightened": {"_count": 1, "up": {"_count": 1}}, "contemplated": {"_count": 1, "Hermione": {"_count": 1}}, "sharply": {"_count": 1, "": {"_count": 1}}, "jogging": {"_count": 1, "to": {"_count": 1}}, "whose": {"_count": 1, "excitement": {"_count": 1}}, "though": {"_count": 1, "she": {"_count": 1}}, "tripped": {"_count": 1, "over": {"_count": 1}}, "jogged": {"_count": 1, "noisily": {"_count": 1}}, "uttering": {"_count": 1, "odd": {"_count": 1}}, "pointed": {"_count": 1, "her": {"_count": 1}}, "shriek": {"_count": 1, "": {"_count": 1}}, "being": {"_count": 1, "borne": {"_count": 1}}, "from": {"_count": 1, "Hogwarts": {"_count": 1}}, "Professor": {"_count": 1, "Snape": {"_count": 1}}, "fake": {"_count": 1, "Veritaserum": {"_count": 1}}, "without": {"_count": 1, "so": {"_count": 1}}, "sinking": {"_count": 1, "back": {"_count": 1}}, "ran": {"_count": 1, "afoul": {"_count": 1}}, "can": {"_count": 1, "he": {"_count": 1}}, "an": {"_count": 1, "unconvincing": {"_count": 1}}, "shed": {"_count": 1, "never": {"_count": 1}}, "Ill": {"_count": 1, "go": {"_count": 1}}, "knew": {"_count": 1, "all": {"_count": 1}}, "while": {"_count": 1, "she": {"_count": 1}}, "she": {"_count": 1, "couldnt": {"_count": 1}}, "ignored": {"_count": 1, "her": {"_count": 1}}, "Yaxley": {"_count": 1, "and": {"_count": 1}}, "laughed": {"_count": 1, "a": {"_count": 1}}, "no": {"_count": 1, "I": {"_count": 1}}, "held": {"_count": 1, "out": {"_count": 1}}, "glancing": {"_count": 1, "down": {"_count": 1}}, "crumpled": {"_count": 1, "and": {"_count": 1}}}, "Senior": {"_count": 7, "Undersecretary": {"_count": 6, "to": {"_count": 5}, "": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "Undersecretary": {"_count": 6, "to": {"_count": 5, "the": {"_count": 5}}, "": {"_count": 1, ".": {"_count": 1}}}, "Scribe": {"_count": 1, "Percy": {"_count": 1, "Ignatius": {"_count": 1}}}, "Ignatius": {"_count": 1, "Weasley": {"_count": 1, "Witness": {"_count": 1}}}, "Witness": {"_count": 2, "for": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "knuckleheaded": {"_count": 1}}}, "Percival": {"_count": 6, "Wulfric": {"_count": 2, "Brian": {"_count": 2}}, "had": {"_count": 1, "been": {"_count": 1}}, "was": {"_count": 2, "imprisoned": {"_count": 1}, "a": {"_count": 1}}, "holding": {"_count": 1, "newborn": {"_count": 1}}}, "Wulfric": {"_count": 2, "Brian": {"_count": 2, "Dumbledore": {"_count": 2}}}, "Brian": {"_count": 2, "Dumbledore": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}}, "cricked": {"_count": 1, "his": {"_count": 1, "neck": {"_count": 1}}}, "fortified": {"_count": 1, "hopeful": {"_count": 1, "feeling": {"_count": 1}}}, "awareness": {"_count": 4, "of": {"_count": 3, "the": {"_count": 1}, "enchantments": {"_count": 1}, "what": {"_count": 1}}, "as": {"_count": 1, "well": {"_count": 1}}}, "illegality": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "Fully": {"_count": 1, "aware": {"_count": 1, "that": {"_count": 1}}}, "corporeal": {"_count": 2, "Patronus": {"_count": 2, "": {"_count": 2}}}, "Impressive": {"_count": 2, "said": {"_count": 1, "Madam": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}}, "testy": {"_count": 2, "voice": {"_count": 2, "": {"_count": 2}}}, "sanctimonious": {"_count": 2, "little": {"_count": 2, "nod": {"_count": 2}}}, "goaded": {"_count": 2, "Harry": {"_count": 1, "into": {"_count": 1}}, "past": {"_count": 1, "endurance": {"_count": 1}}}, "denser": {"_count": 3, "than": {"_count": 2, "before": {"_count": 1}, "normal": {"_count": 1}}, "darkness": {"_count": 1, "than": {"_count": 1}}}, "supercilious": {"_count": 2, "look": {"_count": 1, "on": {"_count": 1}}, "eyebrows": {"_count": 1, "": {"_count": 1}}}, "wellrehearsed": {"_count": 1, "story": {"_count": 1, "Dumbledore": {"_count": 1}}}, "slacken": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "taradiddles": {"_count": 1, "Im": {"_count": 1, "afraid": {"_count": 1}}}, "Charter": {"_count": 1, "of": {"_count": 1, "Rights": {"_count": 1}}}, "Rights": {"_count": 1, "the": {"_count": 1, "accused": {"_count": 1}}}, "policy": {"_count": 5, "of": {"_count": 2, "the": {"_count": 1}, "feigning": {"_count": 1}}, "when": {"_count": 1, "they": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Perfectly": {"_count": 1, "true": {"_count": 1, "": {"_count": 1}}}, "balcony": {"_count": 4, "and": {"_count": 1, "hastened": {"_count": 1}}, "turning": {"_count": 1, "up": {"_count": 1}}, "that": {"_count": 1, "ran": {"_count": 1}}, "overhead": {"_count": 1, "as": {"_count": 1}}}, "Doreen": {"_count": 1, "Figg": {"_count": 1, "said": {"_count": 1}}}, "quavery": {"_count": 3, "voice": {"_count": 2, "": {"_count": 2}}, "old": {"_count": 1, "voice": {"_count": 1}}}, "monitored": {"_count": 4, "given": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}}, "monocles": {"_count": 1, "edges": {"_count": 1, "disappeared": {"_count": 1}}}, "flesh": {"_count": 23, "": {"_count": 5, ".": {"_count": 5}}, "from": {"_count": 1, "the": {"_count": 1}}, "stripping": {"_count": 1, "themselves": {"_count": 1}}, "feeling": {"_count": 1, "his": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "they": {"_count": 1, "could": {"_count": 1}}, "must": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 3, "provided": {"_count": 1}, "did": {"_count": 1}, "could": {"_count": 1}}, "that": {"_count": 1, "cannot": {"_count": 1}}, "memories": {"_count": 1, "she": {"_count": 1}}, "was": {"_count": 1, "missing": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 1}, "her": {"_count": 1}}, "colored": {"_count": 1, "strings": {"_count": 1}}, "Ron": {"_count": 1, "grunted": {"_count": 1}}, "crawl": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "flame": {"_count": 1}}}, "frizzyhaired": {"_count": 2, "witch": {"_count": 2, "and": {"_count": 1}, "in": {"_count": 1}}}, "suburb": {"_count": 1, "and": {"_count": 1, "just": {"_count": 1}}}, "bilge": {"_count": 1, "Dumbledore": {"_count": 1, "": {"_count": 1}}}, "flabby": {"_count": 2, "face": {"_count": 2, "as": {"_count": 1}, "look": {"_count": 1}}}, "Chair": {"_count": 1, "recognizes": {"_count": 1, "Dolores": {"_count": 1}}}, "recognizes": {"_count": 2, "Dolores": {"_count": 1, "Jane": {"_count": 1}}, "you": {"_count": 1, "again": {"_count": 1}}}, "fluttery": {"_count": 1, "girlish": {"_count": 1, "highpitched": {"_count": 1}}}, "girlish": {"_count": 7, "highpitched": {"_count": 1, "voice": {"_count": 1}}, "voice": {"_count": 3, "Come": {"_count": 1}, "": {"_count": 1}, "sounding": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "giggle": {"_count": 1, "": {"_count": 1}}, "laugh": {"_count": 1, "that": {"_count": 1}}}, "croak": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "leapt": {"_count": 1}}}, "simper": {"_count": 2, "that": {"_count": 1, "left": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "teensy": {"_count": 1, "moment": {"_count": 1, "as": {"_count": 1}}}, "authorization": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "that": {"_count": 1}}}, "uninvestigated": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "figments": {"_count": 1, "of": {"_count": 1, "this": {"_count": 1}}}, "Clause": {"_count": 1, "seven": {"_count": 1, "of": {"_count": 1}}}, "exceptional": {"_count": 5, "circumstances": {"_count": 3, "and": {"_count": 1}, "include": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "potionmaking": {"_count": 1, "": {"_count": 1}}}, "describes": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "eyewitness": {"_count": 2, "Dumbledore": {"_count": 1, "interrupted": {"_count": 1}}, "accounts": {"_count": 1, "just": {"_count": 1}}}, "truthfulness": {"_count": 1, "call": {"_count": 1, "her": {"_count": 1}}}, "miscarriage": {"_count": 2, "of": {"_count": 1, "justice": {"_count": 1}}, "my": {"_count": 1, "hat": {"_count": 1}}}, "Serious": {"_count": 3, "miscarriage": {"_count": 1, "my": {"_count": 1}}, "Black": {"_count": 2, "something": {"_count": 1}, "with": {"_count": 1}}}, "tot": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "cockandbull": {"_count": 3, "stories": {"_count": 1, "this": {"_count": 1}}, "story": {"_count": 2, "": {"_count": 1}, "designed": {"_count": 1}}}, "flagrant": {"_count": 1, "misuse": {"_count": 1, "of": {"_count": 1}}}, "misuse": {"_count": 2, "of": {"_count": 2, "magic": {"_count": 2}}}, "SEE": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "flamboyantly": {"_count": 2, "in": {"_count": 1, "Harrys": {"_count": 1}}, "cut": {"_count": 1, "suit": {"_count": 1}}}, "employ": {"_count": 6, "of": {"_count": 1, "Hogwarts": {"_count": 1}}, "someone": {"_count": 1, "whos": {"_count": 1}}, "Harry": {"_count": 1, "Potter": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}}, "Gods": {"_count": 1, "sake": {"_count": 1, "": {"_count": 1}}}, "misdemeanors": {"_count": 1, "at": {"_count": 1, "school": {"_count": 1}}}, "coolness": {"_count": 2, "behind": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "confiscate": {"_count": 6, "wands": {"_count": 1, "until": {"_count": 1}}, "the": {"_count": 2, "letter": {"_count": 1}, "contents": {"_count": 1}}, "them": {"_count": 1, "then": {"_count": 1}}, "or": {"_count": 1, "destroy": {"_count": 1}}, "his": {"_count": 1, "will": {"_count": 1}}}, "inadvertently": {"_count": 5, "I": {"_count": 2, "am": {"_count": 2}}, "reminded": {"_count": 1, "him": {"_count": 1}}, "emphasized": {"_count": 1, "this": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}}, "Laws": {"_count": 1, "can": {"_count": 1, "be": {"_count": 1}}}, "inclining": {"_count": 5, "his": {"_count": 5, "head": {"_count": 3}, "whiteblond": {"_count": 1}, "barely": {"_count": 1}}}, "toadlike": {"_count": 12, "witch": {"_count": 4, "on": {"_count": 2}, "were": {"_count": 1}, "wearing": {"_count": 1}}, "face": {"_count": 3, "and": {"_count": 1}, "as": {"_count": 1}, "a": {"_count": 1}}, "mouth": {"_count": 1, "stretched": {"_count": 1}}, "smile": {"_count": 2, "widened": {"_count": 1}, "": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}}, "courts": {"_count": 1, "job": {"_count": 1, "is": {"_count": 1}}}, "specific": {"_count": 2, "offense": {"_count": 1, "and": {"_count": 1}}, "number": {"_count": 1, "of": {"_count": 1}}}, "constricting": {"_count": 2, "his": {"_count": 2, "air": {"_count": 1}, "windpipe": {"_count": 1}}}, "laces": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "WOES": {"_count": 1, "OF": {"_count": 1, "MRS": {"_count": 1}}}, "MRS": {"_count": 2, "WEASLEY": {"_count": 1, "Dumbledores": {"_count": 1}}, "COLE": {"_count": 1, "": {"_count": 1}}}, "Boness": {"_count": 2, "wanting": {"_count": 1, "to": {"_count": 1}}, "death": {"_count": 1, "did": {"_count": 1}}}, "Cleared": {"_count": 1, "Harry": {"_count": 1, "said": {"_count": 1}}}, "Beaming": {"_count": 3, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "he": {"_count": 1, "closed": {"_count": 1}}, "Harry": {"_count": 1, "threw": {"_count": 1}}}, "appraisingly": {"_count": 2, "at": {"_count": 2, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}}, "funnier": {"_count": 1, "than": {"_count": 1, "usual": {"_count": 1}}}, "vandalism": {"_count": 1, "Harry": {"_count": 1, "": {"_count": 1}}}, "ninthlevel": {"_count": 1, "corridor": {"_count": 1, "and": {"_count": 1}}}, "midconversation": {"_count": 1, "his": {"_count": 1, "cold": {"_count": 1}}}, "wriggle": {"_count": 3, "out": {"_count": 2, "of": {"_count": 2}}, "and": {"_count": 1, "squeak": {"_count": 1}}}, "Snakelike": {"_count": 1, "in": {"_count": 1, "fact": {"_count": 1}}}, "artifacts": {"_count": 6, "home": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "at": {"_count": 1}}, "have": {"_count": 1, "disappeared": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "indulgence": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "generously": {"_count": 1, "to": {"_count": 1, "all": {"_count": 1}}}, "almostdeserted": {"_count": 1, "Atrium": {"_count": 1, "": {"_count": 1}}}, "vapid": {"_count": 1, "smile": {"_count": 1, "like": {"_count": 1}}}, "contestant": {"_count": 1, "and": {"_count": 1, "from": {"_count": 1}}}, "soppily": {"_count": 1, "at": {"_count": 1, "humans": {"_count": 1}}}, "servility": {"_count": 1, "looked": {"_count": 1, "convincing": {"_count": 1}}}, "vomiting": {"_count": 8, "toilet": {"_count": 1, "in": {"_count": 1}}, "would": {"_count": 1, "immediately": {"_count": 1}}, "charm": {"_count": 1, "on": {"_count": 1}}, "students": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "but": {"_count": 1, "pale": {"_count": 1}}, "slugs": {"_count": 1, "and": {"_count": 1}}}, "giddy": {"_count": 2, "relief": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dishing": {"_count": 1, "great": {"_count": 1, "mounds": {"_count": 1}}}, "Scar": {"_count": 1, "Harry": {"_count": 1, "mumbled": {"_count": 1}}}, "wholly": {"_count": 3, "overjoyed": {"_count": 1, "that": {"_count": 1}}, "unnecessary": {"_count": 1, "amount": {"_count": 1}}, "in": {"_count": 1, "command": {"_count": 1}}}, "overjoyed": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "moodier": {"_count": 1, "and": {"_count": 1, "surlier": {"_count": 1}}}, "outcasts": {"_count": 1, "together": {"_count": 1, "": {"_count": 1}}}, "Suit": {"_count": 1, "yourselves": {"_count": 1, "": {"_count": 1}}}, "sponsored": {"_count": 1, "scrub": {"_count": 1, "of": {"_count": 1}}}, "funds": {"_count": 2, "Ill": {"_count": 1, "sponsor": {"_count": 1}}, "were": {"_count": 1, "low": {"_count": 1}}}, "sponsor": {"_count": 1, "you": {"_count": 1, "to": {"_count": 1}}}, "daydreaming": {"_count": 1, "about": {"_count": 1, "Hogwarts": {"_count": 1}}}, "antiVoldemort": {"_count": 2, "movement": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}}, "Booklists": {"_count": 1, "have": {"_count": 1, "arrived": {"_count": 1}}}, "belched": {"_count": 3, "loudly": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "flame": {"_count": 1, "again": {"_count": 1}}}, "Wilbert": {"_count": 4, "Slinkhard": {"_count": 3, "": {"_count": 3}}, "Slinkhards": {"_count": 1, "book": {"_count": 1}}}, "Slinkhard": {"_count": 7, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 2}}, "book": {"_count": 1, "said": {"_count": 1}}, "says": {"_count": 1, "about": {"_count": 1}}, "doesnt": {"_count": 1, "like": {"_count": 1}}, "s": {"_count": 1, "opinion": {"_count": 1}}}, "watermark": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "cert": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Winning": {"_count": 1, "the": {"_count": 1, "Triwizard": {"_count": 1}}}, "contaminate": {"_count": 2, "him": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "many": {"_count": 1}}}, "confirmation": {"_count": 2, "that": {"_count": 2, "it": {"_count": 1}, "this": {"_count": 1}}}, "superimposed": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "Unexpected": {"_count": 1, "said": {"_count": 1, "George": {"_count": 1}}}, "booklists": {"_count": 2, "had": {"_count": 1, "come": {"_count": 1}}, "arrived": {"_count": 1, "from": {"_count": 1}}}, "Match": {"_count": 1, "his": {"_count": 1, "what": {"_count": 1}}}, "nextdoor": {"_count": 3, "neighbors": {"_count": 2, "": {"_count": 1}, "lawn": {"_count": 1}}, "neighbor": {"_count": 1, "who": {"_count": 1}}}, "thrilled": {"_count": 7, "oh": {"_count": 1, "Ronnie": {"_count": 1}}, "she": {"_count": 1, "added": {"_count": 1}}, "if": {"_count": 1, "Id": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "that": {"_count": 1, "McLaggen": {"_count": 1}}}, "generosity": {"_count": 4, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "and": {"_count": 1, "Snapes": {"_count": 1}}}, "rusting": {"_count": 2, "through": {"_count": 1, "or": {"_count": 1}}, "swords": {"_count": 1, "and": {"_count": 1}}}, "dither": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}}, "curtsy": {"_count": 1, "if": {"_count": 1, "you": {"_count": 1}}}, "lawbreaking": {"_count": 1, "days": {"_count": 1, "are": {"_count": 1}}}, "prats": {"_count": 1, "become": {"_count": 1, "prefects": {"_count": 1}}}, "winging": {"_count": 1, "their": {"_count": 1, "way": {"_count": 1}}}, "probing": {"_count": 2, "his": {"_count": 1, "own": {"_count": 1}}, "the": {"_count": 1, "air": {"_count": 1}}}, "usage": {"_count": 1, "that": {"_count": 1, "had": {"_count": 1}}}, "sulk": {"_count": 1, "because": {"_count": 1, "he": {"_count": 1}}}, "belongings": {"_count": 2, "from": {"_count": 1, "all": {"_count": 1}}, "Say": {"_count": 1, "it": {"_count": 1}}}, "tenderly": {"_count": 3, "in": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "upon": {"_count": 1, "each": {"_count": 1}}}, "CONGRATULATIONS": {"_count": 1, "RON": {"_count": 1, "AND": {"_count": 1}}}, "HERMIONE": {"_count": 12, "NEW": {"_count": 1, "PREFECTS": {"_count": 1}}, "": {"_count": 11, "!": {"_count": 11}}}, "NEW": {"_count": 2, "PREFECTS": {"_count": 1, "": {"_count": 1}}, "SONG": {"_count": 1, "Harry": {"_count": 1}}}, "PREFECTS": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sitdown": {"_count": 1, "dinner": {"_count": 1, "she": {"_count": 1}}}, "electricblue": {"_count": 1, "eye": {"_count": 1, "swiveled": {"_count": 1}}}, "Desk": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "ruffling": {"_count": 2, "Rons": {"_count": 2, "hair": {"_count": 2}}}, "withstand": {"_count": 1, "most": {"_count": 1, "major": {"_count": 1}}}, "responding": {"_count": 3, "by": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "concerns": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "declined": {"_count": 1, "the": {"_count": 1, "offer": {"_count": 1}}}, "lacked": {"_count": 3, "certain": {"_count": 1, "necessary": {"_count": 1}}, "confidence": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "rhapsodizing": {"_count": 1, "about": {"_count": 1, "his": {"_count": 1}}}, "Ninetys": {"_count": 1, "only": {"_count": 1, "naught": {"_count": 1}}}, "tailwind": {"_count": 1, "according": {"_count": 1, "to": {"_count": 1}}}, "segregation": {"_count": 1, "isnt": {"_count": 1, "it": {"_count": 1}}}, "stems": {"_count": 1, "from": {"_count": 1, "this": {"_count": 1}}}, "financial": {"_count": 1, "backer": {"_count": 1, "": {"_count": 1}}}, "backer": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Dungs": {"_count": 2, "gotten": {"_count": 1, "us": {"_count": 1}}, "been": {"_count": 1, "dressing": {"_count": 1}}}, "seeds": {"_count": 1, "said": {"_count": 1, "George": {"_count": 1}}}, "NonTradeable": {"_count": 1, "Substance": {"_count": 1, "so": {"_count": 1}}}, "Substance": {"_count": 1, "so": {"_count": 1, "weve": {"_count": 1}}}, "Wiv": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "saggy": {"_count": 2, "bloodshot": {"_count": 1, "eyes": {"_count": 1}}, "left": {"_count": 1, "Dont": {"_count": 1}}}, "Knut": {"_count": 8, "under": {"_count": 1, "twenty": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "its": {"_count": 1}}, "and": {"_count": 2, "unfolded": {"_count": 1}, "finding": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "knarl": {"_count": 3, "quills": {"_count": 1, "said": {"_count": 1}}, "droppings": {"_count": 1, "crashed": {"_count": 1}}, "hidden": {"_count": 1, "among": {"_count": 1}}}, "cooing": {"_count": 1, "over": {"_count": 1, "Prefect": {"_count": 1}}}, "financing": {"_count": 1, "their": {"_count": 1, "joke": {"_count": 1}}}, "Percylike": {"_count": 1, "estrangement": {"_count": 1, "": {"_count": 1}}}, "estrangement": {"_count": 2, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "unsuitable": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "varnish": {"_count": 1, "and": {"_count": 1, "inbuilt": {"_count": 1}}}, "inbuilt": {"_count": 1, "vibration": {"_count": 1, "control": {"_count": 1}}}, "vibration": {"_count": 1, "control": {"_count": 1, "Ron": {"_count": 1}}}, "Original": {"_count": 1, "Order": {"_count": 1, "of": {"_count": 1}}}, "Marlene": {"_count": 1, "McKinnon": {"_count": 1, "she": {"_count": 1}}}, "McKinnon": {"_count": 1, "she": {"_count": 1, "was": {"_count": 1}}}, "Alice": {"_count": 6, "Longbottom": {"_count": 3, "Harrys": {"_count": 1}, "he": {"_count": 1}, "": {"_count": 1}}, "band": {"_count": 1, "that": {"_count": 1}}, "dear": {"_count": 2, "what": {"_count": 1}, "very": {"_count": 1}}}, "Benjy": {"_count": 2, "Fenwick": {"_count": 2, "he": {"_count": 1}, "who": {"_count": 1}}}, "Fenwick": {"_count": 2, "he": {"_count": 1, "copped": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}}, "copped": {"_count": 1, "it": {"_count": 1, "too": {"_count": 1}}}, "Edgar": {"_count": 1, "Bones": {"_count": 1, "": {"_count": 1}}}, "Caradoc": {"_count": 1, "Dearborn": {"_count": 1, "vanished": {"_count": 1}}}, "Dearborn": {"_count": 1, "vanished": {"_count": 1, "six": {"_count": 1}}}, "Gideon": {"_count": 3, "Prewett": {"_count": 2, "it": {"_count": 1}, "who": {"_count": 1}}, "and": {"_count": 1, "Fabian": {"_count": 1}}}, "Prewett": {"_count": 3, "it": {"_count": 1, "took": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Fabian": {"_count": 3, "they": {"_count": 1, "fought": {"_count": 1}}, "Prewett": {"_count": 1, "": {"_count": 1}}, "Prewetts": {"_count": 1, "": {"_count": 1}}}, "heroes": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "night": {"_count": 1}}, "up": {"_count": 1, "again": {"_count": 1}}}, "forefront": {"_count": 2, "of": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}}, "Dorcas": {"_count": 1, "Meadowes": {"_count": 1, "Voldemort": {"_count": 1}}}, "Meadowes": {"_count": 1, "Voldemort": {"_count": 1, "killed": {"_count": 1}}}, "wateryeyed": {"_count": 2, "man": {"_count": 1, "Harry": {"_count": 1}}, "flushed": {"_count": 1, "with": {"_count": 1}}}, "pitted": {"_count": 1, "face": {"_count": 1, "": {"_count": 1}}}, "Sprawled": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "Rrriddikulus": {"_count": 1, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "Rriddikulus": {"_count": 1, "she": {"_count": 1, "sobbed": {"_count": 1}}}, "riddikulus": {"_count": 1, "Riddikulusl": {"_count": 1, "RIDDIKULUSl": {"_count": 1}}}, "RIDDIKULUSl": {"_count": 1, "Crack": {"_count": 1, "": {"_count": 1}}}, "dddead": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "tttime": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "dd": {"_count": 2, "dream": {"_count": 1, "about": {"_count": 1}}, "dreadful": {"_count": 1, "happens": {"_count": 1}}}, "Dddont": {"_count": 1, "tell": {"_count": 1, "Arthur": {"_count": 1}}}, "ssso": {"_count": 1, "worried": {"_count": 1, "she": {"_count": 1}}}, "fffamilys": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "bbbe": {"_count": 1, "a": {"_count": 1, "miracle": {"_count": 1}}}, "PPercys": {"_count": 1, "not": {"_count": 1, "talking": {"_count": 1}}}, "mmmade": {"_count": 1, "up": {"_count": 1, "": {"_count": 1}}}, "gggoing": {"_count": 1, "to": {"_count": 1, "look": {"_count": 1}}}, "Cut": {"_count": 2, "it": {"_count": 1, "out": {"_count": 1}}, "away": {"_count": 1, "those": {"_count": 1}}}, "LUNA": {"_count": 2, "LOVEGOOD": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "LOVEGOOD": {"_count": 3, "Harry": {"_count": 2, "had": {"_count": 2}}, "the": {"_count": 1, "second": {"_count": 1}}}, "wove": {"_count": 7, "in": {"_count": 2, "and": {"_count": 2}}, "his": {"_count": 1, "way": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "from": {"_count": 1}}, "and": {"_count": 1, "ducked": {"_count": 1}}, "its": {"_count": 1, "way": {"_count": 1}}}, "crowns": {"_count": 3, "and": {"_count": 1, "yet": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "whitebeaded": {"_count": 1}}}, "SERIOUS": {"_count": 2, "INJURY": {"_count": 1, "YOU": {"_count": 1}}, "BITES": {"_count": 1, "": {"_count": 1}}}, "INJURY": {"_count": 1, "YOU": {"_count": 1, "IDIOTS": {"_count": 1}}}, "IDIOTS": {"_count": 1, "FILTHY": {"_count": 1, "HALFBREEDS": {"_count": 1}}}, "HALFBREEDS": {"_count": 1, "BESMIRCHING": {"_count": 1, "THE": {"_count": 1}}}, "BESMIRCHING": {"_count": 1, "THE": {"_count": 1, "HOUSE": {"_count": 1}}}, "obligingly": {"_count": 3, "over": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "her": {"_count": 1}}, "stretched": {"_count": 1, "into": {"_count": 1}}}, "Podmores": {"_count": 1, "here": {"_count": 1, "otherwise": {"_count": 1}}}, "Guard": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "dustbin": {"_count": 2, "to": {"_count": 1, "try": {"_count": 1}}, "lid": {"_count": 1, "": {"_count": 1}}}, "LOT": {"_count": 1, "GET": {"_count": 1, "DOWN": {"_count": 1}}}, "PLEASE": {"_count": 3, "": {"_count": 3, "!": {"_count": 3}}}, "scalded": {"_count": 1, "and": {"_count": 1, "hurried": {"_count": 1}}}, "rouse": {"_count": 5, "her": {"_count": 1, "again": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "their": {"_count": 1, "friends": {"_count": 1}}, "Uncle": {"_count": 1, "Vernon": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}}, "MUDBLOODSl": {"_count": 1, "SCUM": {"_count": 1, "CREATURES": {"_count": 1}}}, "CREATURES": {"_count": 1, "OF": {"_count": 1, "DIRV": {"_count": 1}}}, "DIRV": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Alastors": {"_count": 1, "going": {"_count": 1, "to": {"_count": 1}}}, "cluttering": {"_count": 1, "the": {"_count": 1, "hall": {"_count": 1}}}, "averting": {"_count": 1, "her": {"_count": 1, "eyes": {"_count": 1}}}, "lolloping": {"_count": 2, "black": {"_count": 1, "dog": {"_count": 1}}, "beside": {"_count": 1, "them": {"_count": 1}}}, "porkpie": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "hat": {"_count": 1, "were": {"_count": 1}}}, "joyful": {"_count": 2, "bark": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "made": {"_count": 1}}}, "gamboled": {"_count": 1, "around": {"_count": 1, "them": {"_count": 1}}}, "pigeons": {"_count": 1, "and": {"_count": 1, "chasing": {"_count": 1}}}, "Petuniaish": {"_count": 1, "way": {"_count": 1, "": {"_count": 1}}}, "eventful": {"_count": 3, "happened": {"_count": 1, "during": {"_count": 1}}, "in": {"_count": 1, "several": {"_count": 1}}, "Rufus": {"_count": 1, "Scrim": {"_count": 1}}}, "scaring": {"_count": 1, "a": {"_count": 1, "couple": {"_count": 1}}}, "sooty": {"_count": 2, "steam": {"_count": 1, "over": {"_count": 1}}, "station": {"_count": 1, "the": {"_count": 1}}}, "departing": {"_count": 2, "students": {"_count": 1, "and": {"_count": 1}}, "delivery": {"_count": 1, "owl": {"_count": 1}}}, "inhaled": {"_count": 4, "the": {"_count": 1, "familiar": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "Somehow": {"_count": 1, "it": {"_count": 1}}, "half": {"_count": 1, "his": {"_count": 1}}}, "arch": {"_count": 5, "spanning": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "had": {"_count": 1, "appeared": {"_count": 1}}}, "spanning": {"_count": 1, "the": {"_count": 1, "platform": {"_count": 1}}}, "porters": {"_count": 1, "cap": {"_count": 1, "pulled": {"_count": 1}}}, "reporting": {"_count": 6, "Sturgis": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "meeting": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 1, "man": {"_count": 1}}, "techniques": {"_count": 1, "enabled": {"_count": 1}}}, "unreliable": {"_count": 2, "as": {"_count": 1, "Mundungus": {"_count": 1}}, "bit": {"_count": 1, "of": {"_count": 1}}}, "Onto": {"_count": 1, "the": {"_count": 1, "train": {"_count": 1}}}, "lighten": {"_count": 3, "up": {"_count": 1, "said": {"_count": 1}}, "his": {"_count": 1, "present": {"_count": 1}}, "the": {"_count": 1, "ominous": {"_count": 1}}}, "caged": {"_count": 1, "Pigwidgeon": {"_count": 1, "off": {"_count": 1}}}, "glasspaneled": {"_count": 1, "doors": {"_count": 1, "into": {"_count": 1}}}, "consecutive": {"_count": 1, "carriages": {"_count": 1, "he": {"_count": 1}}}, "Lovegood": {"_count": 63, "in": {"_count": 1, "here": {"_count": 1}}, "": {"_count": 16, ".": {"_count": 13}, "?": {"_count": 3}}, "clutching": {"_count": 1, "a": {"_count": 1}}, "who": {"_count": 4, "was": {"_count": 3}, "piped": {"_count": 1}}, "had": {"_count": 3, "got": {"_count": 1}, "drifted": {"_count": 1}, "better": {"_count": 1}}, "emerged": {"_count": 1, "trailing": {"_count": 1}}, "comes": {"_count": 1, "out": {"_count": 1}}, "then": {"_count": 1, "Katie": {"_count": 1}}, "gazing": {"_count": 1, "dreamily": {"_count": 1}}, "was": {"_count": 3, "similarly": {"_count": 1}, "under": {"_count": 1}, "getting": {"_count": 1}}, "proudly": {"_count": 1, "from": {"_count": 1}}, "entered": {"_count": 1, "looking": {"_count": 1}}, "and": {"_count": 1, "none": {"_count": 1}}, "overtook": {"_count": 1, "them": {"_count": 1}}, "I": {"_count": 2, "suppose": {"_count": 1}, "recognize": {"_count": 1}}, "actually": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "Slughorns": {"_count": 1}}, "commentate": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "seizing": {"_count": 1, "Lunas": {"_count": 1}}, "wearing": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 1, "the": {"_count": 1}}, "veil": {"_count": 1, "": {"_count": 1}}, "oddity": {"_count": 1, "": {"_count": 1}}, "His": {"_count": 1, "hand": {"_count": 1}}, "lets": {"_count": 1, "try": {"_count": 1}}, "wants": {"_count": 1, "to": {"_count": 1}}, "barefoot": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 3, "Harry": {"_count": 2}, "Selwyn": {"_count": 1}}, "whats": {"_count": 1, "that": {"_count": 1}}, "you": {"_count": 1, "need": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "how": {"_count": 1, "can": {"_count": 1}}, "Hermione": {"_count": 1, "began": {"_count": 1}}, "does": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "kid": {"_count": 1}}, "we": {"_count": 1, "werent": {"_count": 1}}, "erstwhile": {"_count": 1, "editor": {"_count": 1}}}, "Luna": {"_count": 317, "said": {"_count": 5, "Ginny": {"_count": 1}, "her": {"_count": 1}, "vaguely": {"_count": 1}, "When": {"_count": 1}, "Harry": {"_count": 1}}, "watched": {"_count": 1, "them": {"_count": 1}}, "": {"_count": 56, "?": {"_count": 9}, ".": {"_count": 46}, "!": {"_count": 1}}, "dreamily": {"_count": 3, "without": {"_count": 1}, "pointing": {"_count": 1}, "": {"_count": 1}}, "turned": {"_count": 2, "her": {"_count": 2}}, "Lovegood": {"_count": 21, "": {"_count": 4}, "who": {"_count": 4}, "had": {"_count": 2}, "emerged": {"_count": 1}, "comes": {"_count": 1}, "then": {"_count": 1}, "gazing": {"_count": 1}, "was": {"_count": 1}, "proudly": {"_count": 1}, "entered": {"_count": 1}, "and": {"_count": 1}, "overtook": {"_count": 1}, "to": {"_count": 1}, "commentate": {"_count": 1}}, "in": {"_count": 4, "a": {"_count": 3}, "the": {"_count": 1}}, "Lovegoods": {"_count": 3, "popping": {"_count": 1}, "magazine": {"_count": 1}, "famous": {"_count": 1}}, "informed": {"_count": 1, "him": {"_count": 1}}, "laughing": {"_count": 1, "but": {"_count": 1}}, "eagerly": {"_count": 2, "": {"_count": 1}, "as": {"_count": 1}}, "had": {"_count": 6, "been": {"_count": 1}, "said": {"_count": 2}, "squeezed": {"_count": 1}, "decorated": {"_count": 1}, "to": {"_count": 1}}, "her": {"_count": 3, "voice": {"_count": 1}, "protuberant": {"_count": 1}, "bulging": {"_count": 1}}, "coldly": {"_count": 1, "and": {"_count": 1}}, "rolled": {"_count": 1, "up": {"_count": 1}}, "to": {"_count": 5, "Harry": {"_count": 1}, "Hermione": {"_count": 1}, "the": {"_count": 1}, "a": {"_count": 1}, "follow": {"_count": 1}}, "girl": {"_count": 1, "was": {"_count": 1}}, "appeared": {"_count": 1, "holding": {"_count": 1}}, "made": {"_count": 2, "for": {"_count": 1}, "to": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "were": {"_count": 3, "having": {"_count": 1}, "sitting": {"_count": 1}, "there": {"_count": 1}}, "unfazed": {"_count": 1, "": {"_count": 1}}, "did": {"_count": 2, "not": {"_count": 2}}, "was": {"_count": 11, "to": {"_count": 1}, "wearing": {"_count": 2}, "standing": {"_count": 1}, "already": {"_count": 1}, "smiling": {"_count": 1}, "demonstrating": {"_count": 1}, "not": {"_count": 1}, "arranging": {"_count": 1}, "saying": {"_count": 2}}, "drifted": {"_count": 1, "away": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "gave": {"_count": 1, "her": {"_count": 1}}, "solemnly": {"_count": 1, "": {"_count": 1}}, "angrily": {"_count": 1, "": {"_count": 1}}, "pointing": {"_count": 1, "unnecessarily": {"_count": 1}}, "happily": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "as": {"_count": 1}}, "very": {"_count": 1, "seriously": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "chipping": {"_count": 1, "into": {"_count": 1}}, "dipping": {"_count": 1, "her": {"_count": 1}}, "says": {"_count": 1, "her": {"_count": 1}}, "brightly": {"_count": 2, "": {"_count": 2}}, "who": {"_count": 11, "had": {"_count": 2}, "as": {"_count": 1}, "were": {"_count": 1}, "was": {"_count": 6}, "answered": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "walked": {"_count": 2, "serenely": {"_count": 1}, "checking": {"_count": 1}}, "serenely": {"_count": 7, "": {"_count": 5}, "while": {"_count": 1}, "as": {"_count": 1}}, "looking": {"_count": 2, "mildly": {"_count": 1}, "thoughtful": {"_count": 1}}, "and": {"_count": 17, "I": {"_count": 3}, "to": {"_count": 1}, "Ginny": {"_count": 1}, "Neville": {"_count": 1}, "Harry": {"_count": 1}, "her": {"_count": 1}, "a": {"_count": 1}, "she": {"_count": 1}, "stood": {"_count": 1}, "Dean": {"_count": 6}}, "if": {"_count": 1, "you": {"_count": 1}}, "however": {"_count": 1, "stood": {"_count": 1}}, "looked": {"_count": 2, "mildly": {"_count": 1}, "rather": {"_count": 1}}, "escape": {"_count": 1, "": {"_count": 1}}, "hurrying": {"_count": 1, "along": {"_count": 1}}, "asked": {"_count": 1, "interestedly": {"_count": 1}}, "smiling": {"_count": 2, "happily": {"_count": 1}, "": {"_count": 1}}, "maddeningly": {"_count": 1, "": {"_count": 1}}, "calmly": {"_count": 1, "counting": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "sliding": {"_count": 1, "obligingly": {"_count": 1}}, "dismounted": {"_count": 1, "smoothly": {"_count": 1}}, "squashed": {"_count": 1, "themselves": {"_count": 1}}, "right": {"_count": 1, "behind": {"_count": 1}}, "excitedly": {"_count": 1, "": {"_count": 1}}, "joining": {"_count": 1, "them": {"_count": 1}}, "rose": {"_count": 1, "on": {"_count": 1}}, "sprint": {"_count": 1, "past": {"_count": 1}}, "gestured": {"_count": 1, "hopelessly": {"_count": 1}}, "sadly": {"_count": 1, "but": {"_count": 1}}, "can": {"_count": 2, "you": {"_count": 2}}, "sticking": {"_count": 1, "her": {"_count": 1}}, "for": {"_count": 1, "support": {"_count": 1}}, "Neville": {"_count": 1, "help": {"_count": 1}}, "cry": {"_count": 1, "Collo": {"_count": 1}}, "hit": {"_count": 1, "a": {"_count": 1}}, "vaguely": {"_count": 3, "turning": {"_count": 1}, "glancing": {"_count": 1}, "": {"_count": 1}}, "observing": {"_count": 1, "him": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "simply": {"_count": 1, "my": {"_count": 1}}, "conversationally": {"_count": 1, "": {"_count": 1}}, "believed": {"_count": 1, "so": {"_count": 1}}, "hi": {"_count": 1, "how": {"_count": 1}}, "often": {"_count": 1, "said": {"_count": 1}}, "once": {"_count": 1, "again": {"_count": 1}}, "sympathetically": {"_count": 1, "peering": {"_count": 1}}, "as": {"_count": 2, "they": {"_count": 1}, "she": {"_count": 1}}, "beaming": {"_count": 1, "as": {"_count": 1}}, "matteroffactly": {"_count": 1, "": {"_count": 1}}, "repeating": {"_count": 1, "her": {"_count": 1}}, "after": {"_count": 1, "him": {"_count": 1}}, "politely": {"_count": 1, "to": {"_count": 1}}, "with": {"_count": 2, "some": {"_count": 1}, "an": {"_count": 1}}, "unexpectedly": {"_count": 1, "": {"_count": 1}}, "just": {"_count": 2, "for": {"_count": 1}, "let": {"_count": 1}}, "er": {"_count": 1, "bathroom": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "always": {"_count": 1, "commentates": {"_count": 1}}, "rummaging": {"_count": 1, "in": {"_count": 1}}, "smiled": {"_count": 1, "vaguely": {"_count": 1}}, "he": {"_count": 2, "said": {"_count": 1}, "whispered": {"_count": 1}}, "or": {"_count": 2, "some": {"_count": 1}, "her": {"_count": 1}}, "Tonks": {"_count": 1, "and": {"_count": 1}}, "alone": {"_count": 2, "of": {"_count": 1}, "in": {"_count": 1}}, "rushed": {"_count": 1, "up": {"_count": 1}}, "my": {"_count": 1, "love": {"_count": 1}}, "sucking": {"_count": 1, "her": {"_count": 1}}, "sat": {"_count": 1, "alone": {"_count": 1}}, "swaying": {"_count": 1, "in": {"_count": 1}}, "is": {"_count": 3, "not": {"_count": 1}, "down": {"_count": 2}}, "probably": {"_count": 1, "had": {"_count": 1}}, "along": {"_count": 1, "with": {"_count": 1}}, "ll": {"_count": 1, "be": {"_count": 1}}, "sometimes": {"_count": 1, "wore": {"_count": 1}}, "could": {"_count": 2, "be": {"_count": 1}, "act": {"_count": 1}}, "ought": {"_count": 1, "to": {"_count": 1}}, "has": {"_count": 1, "told": {"_count": 1}}, "because": {"_count": 1, "her": {"_count": 1}}, "much": {"_count": 1, "tougher": {"_count": 1}}, "saying": {"_count": 1, "": {"_count": 1}}, "whispered": {"_count": 2, "": {"_count": 2}}, "all": {"_count": 2, "eyes": {"_count": 1}, "battling": {"_count": 1}}, "watching": {"_count": 1, "his": {"_count": 1}}, "Dean": {"_count": 3, "and": {"_count": 2}, "called": {"_count": 1}}, "gathering": {"_count": 1, "around": {"_count": 1}}, "slept": {"_count": 1, "by": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "we": {"_count": 1, "told": {"_count": 1}}, "approaching": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "new": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "Christmas": {"_count": 1}}, "will": {"_count": 1, "take": {"_count": 1}}, "hurried": {"_count": 2, "up": {"_count": 1}, "back": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "plucking": {"_count": 1, "his": {"_count": 1}}, "reached": {"_count": 1, "out": {"_count": 1}}, "seriously": {"_count": 1, "": {"_count": 1}}, "sounding": {"_count": 1, "mildly": {"_count": 1}}, "where": {"_count": 1, "are": {"_count": 1}}, "stood": {"_count": 1, "": {"_count": 1}}, "jogged": {"_count": 1, "behind": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "flying": {"_count": 1}}, "ran": {"_count": 2, "into": {"_count": 1}, "after": {"_count": 1}}, "running": {"_count": 1, "back": {"_count": 1}}, "sped": {"_count": 1, "back": {"_count": 1}}, "Ernie": {"_count": 2, "and": {"_count": 2}}, "encouragingly": {"_count": 1, "as": {"_count": 1}}}, "waistlength": {"_count": 5, "dirtyblond": {"_count": 1, "hair": {"_count": 1}}, "silver": {"_count": 1, "hair": {"_count": 1}}, "hair": {"_count": 3, "of": {"_count": 1}, "and": {"_count": 2}}}, "dirtyblond": {"_count": 1, "hair": {"_count": 1, "very": {"_count": 1}}}, "protuberant": {"_count": 6, "eyes": {"_count": 5, "that": {"_count": 1}, "widening": {"_count": 1}, "": {"_count": 1}, "upon": {"_count": 2}}, "slightly": {"_count": 1, "mad": {"_count": 1}}}, "dottiness": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "safekeeping": {"_count": 2, "or": {"_count": 1, "that": {"_count": 1}}, "putting": {"_count": 1, "an": {"_count": 1}}}, "caps": {"_count": 2, "or": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "upsidedown": {"_count": 6, "magazine": {"_count": 3, "which": {"_count": 1}, "high": {"_count": 1}, "again": {"_count": 1}}, "goldfish": {"_count": 1, "bowls": {"_count": 1}}, "look": {"_count": 1, "of": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}}, "Lunas": {"_count": 24, "in": {"_count": 1, "my": {"_count": 1}}, "hat": {"_count": 1, "before": {"_count": 1}}, "ludicrous": {"_count": 1, "lion": {"_count": 1}}, "blonde": {"_count": 1, "one": {"_count": 1}}, "hand": {"_count": 1, "and": {"_count": 1}}, "conversation": {"_count": 1, "forgetting": {"_count": 1}}, "megaphone": {"_count": 1, "": {"_count": 1}}, "mouth": {"_count": 1, "trembled": {"_count": 1}}, "outstretched": {"_count": 1, "finger": {"_count": 1}}, "vacant": {"_count": 1, "seat": {"_count": 1}}, "father": {"_count": 3, "was": {"_count": 1}, "it": {"_count": 1}, "": {"_count": 1}}, "dad": {"_count": 1, "was": {"_count": 1}}, "house": {"_count": 2, "who": {"_count": 1}, "": {"_count": 1}}, "style": {"_count": 1, "The": {"_count": 1}}, "got": {"_count": 1, "ten": {"_count": 1}}, "been": {"_count": 1, "here": {"_count": 1}}, "bed": {"_count": 1, "was": {"_count": 1}}, "dots": {"_count": 1, "at": {"_count": 1}}, "spell": {"_count": 1, "had": {"_count": 1}}, "feet": {"_count": 1, "appeared": {"_count": 1}}, "shoulder": {"_count": 1, "to": {"_count": 1}}}, "Wit": {"_count": 1, "beyond": {"_count": 1, "measure": {"_count": 1}}}, "marblelike": {"_count": 1, "device": {"_count": 1, "Nevilles": {"_count": 1}}}, "spines": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "books": {"_count": 1}}, "etc": {"_count": 1, "": {"_count": 1}}, "others": {"_count": 1, "with": {"_count": 1}}}, "Mimbulus": {"_count": 9, "mimbletonia": {"_count": 7, "he": {"_count": 1}, "up": {"_count": 1}, "tenderly": {"_count": 1}, "said": {"_count": 2}, "which": {"_count": 1}, "": {"_count": 1}}, "mimbletonio": {"_count": 1, "1": {"_count": 1}}, "mimbletoniaV": {"_count": 1, "he": {"_count": 1}}}, "mimbletonia": {"_count": 7, "he": {"_count": 1, "said": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "tenderly": {"_count": 1, "on": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Rons": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "pulsating": {"_count": 3, "slightly": {"_count": 1, "giving": {"_count": 1}}, "green": {"_count": 1, "object": {"_count": 1}}, "pod": {"_count": 1, "at": {"_count": 1}}}, "diseased": {"_count": 3, "internal": {"_count": 1, "organ": {"_count": 1}}, "over": {"_count": 1, "time": {"_count": 1}}, "things": {"_count": 1, "infecting": {"_count": 1}}}, "organ": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "among": {"_count": 1, "them": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "was": {"_count": 1, "only": {"_count": 1}}}, "greatuncle": {"_count": 1, "Algie": {"_count": 1, "got": {"_count": 1}}}, "Assyria": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "stunted": {"_count": 3, "little": {"_count": 2, "plant": {"_count": 1}, "cactus": {"_count": 1}}, "creature": {"_count": 1, "under": {"_count": 1}}}, "defensive": {"_count": 21, "mechanism": {"_count": 1, "hold": {"_count": 1}}, "magic": {"_count": 5, "this": {"_count": 1}, "": {"_count": 1}, "can": {"_count": 1}, "in": {"_count": 1}, "probably": {"_count": 1}}, "spells": {"_count": 8, "": {"_count": 3}, "in": {"_count": 1}, "We": {"_count": 1}, "on": {"_count": 1}, "right": {"_count": 1}, "and": {"_count": 1}}, "spell": {"_count": 2, "Miss": {"_count": 1}, "wed": {"_count": 1}}, "jinxes": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "resentful": {"_count": 1}}, "jinx": {"_count": 1, "": {"_count": 1}}, "enchantments": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "mechanism": {"_count": 1, "hold": {"_count": 1, "Trevor": {"_count": 1}}}, "Liquid": {"_count": 1, "squirted": {"_count": 1, "from": {"_count": 1}}}, "darkgreen": {"_count": 1, "jets": {"_count": 1, "of": {"_count": 1}}}, "rancid": {"_count": 1, "manure": {"_count": 1, "": {"_count": 1}}}, "Ssorry": {"_count": 1, "he": {"_count": 1, "gasped": {"_count": 1}}}, "Stinksaps": {"_count": 1, "not": {"_count": 1, "poisonous": {"_count": 1}}}, "Um": {"_count": 7, "": {"_count": 7, ".": {"_count": 7}}}, "Stinksap": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "vanished": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "time": {"_count": 1}}, "she": {"_count": 1, "snapped": {"_count": 1}}, "was": {"_count": 1, "strong": {"_count": 1}}, "teachers": {"_count": 1, "and": {"_count": 1}}}, "Scour": {"_count": 1, "gif": {"_count": 1, "yY": {"_count": 1}}}, "gif": {"_count": 1, "yY": {"_count": 1, "The": {"_count": 1}}}, "yY": {"_count": 1, "The": {"_count": 1, "Stinksap": {"_count": 1}}}, "exhausting": {"_count": 1, "morning": {"_count": 1, "": {"_count": 1}}}, "concussed": {"_count": 1, "troll": {"_count": 1, "": {"_count": 1}}}, "Anthony": {"_count": 8, "Goldstein": {"_count": 7, "and": {"_count": 4}, "Michael": {"_count": 1}, "his": {"_count": 1}, "Gregory": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}}, "Goldstein": {"_count": 7, "and": {"_count": 4, "Padma": {"_count": 1}, "Hermione": {"_count": 1}, "Terry": {"_count": 1}, "Michael": {"_count": 1}}, "Michael": {"_count": 1, "Corner": {"_count": 1}}, "his": {"_count": 1, "own": {"_count": 1}}, "Gregory": {"_count": 1, "Goyle": {"_count": 1}}}, "misbehaving": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "students": {"_count": 1, "": {"_count": 1}}}, "baboons": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ludicrously": {"_count": 3, "prolonged": {"_count": 1, "laughter": {"_count": 1}}, "from": {"_count": 1, "one": {"_count": 1}}, "batlike": {"_count": 1, "like": {"_count": 1}}}, "mickey": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "out": {"_count": 2, "of": {"_count": 2}}}, "Baboons": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "throttling": {"_count": 2, "a": {"_count": 1, "goblin": {"_count": 1}}, "him": {"_count": 1, "he": {"_count": 1}}}, "captioned": {"_count": 7, "How": {"_count": 1, "Far": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "URQUHART": {"_count": 1, "RACKHARROW": {"_count": 1}}, "with": {"_count": 3, "a": {"_count": 1}, "the": {"_count": 2}}, "For": {"_count": 1, "Enemies": {"_count": 1}}}, "Gain": {"_count": 1, "Gringotts": {"_count": 1, "": {"_count": 1}}}, "Beneath": {"_count": 11, "this": {"_count": 2, "were": {"_count": 1}, "was": {"_count": 1}}, "the": {"_count": 7, "branch": {"_count": 1}, "Cloak": {"_count": 2}, "photograph": {"_count": 1}, "title": {"_count": 1}, "robe": {"_count": 1}, "disbelief": {"_count": 1}}, "Bellatrixs": {"_count": 1, "astonished": {"_count": 1}}, "his": {"_count": 1, "fingers": {"_count": 1}}}, "CORRUPTION": {"_count": 1, "IN": {"_count": 1, "THE": {"_count": 1}}}, "LEAGUE": {"_count": 1, "How": {"_count": 1, "the": {"_count": 1}}}, "Tornados": {"_count": 5, "Are": {"_count": 1, "Taking": {"_count": 1}}, "were": {"_count": 1, "winning": {"_count": 1}}, "badge": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "right": {"_count": 1, "": {"_count": 1}}}, "RUNES": {"_count": 1, "REVEALED": {"_count": 1, "SIRIUS": {"_count": 1}}}, "REVEALED": {"_count": 1, "SIRIUS": {"_count": 1, "BLACK": {"_count": 1}}}, "Villain": {"_count": 1, "or": {"_count": 1, "Victim": {"_count": 1}}}, "Victim": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "edition": {"_count": 5, "of": {"_count": 4, "The": {"_count": 3}, "A": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "illustrated": {"_count": 1, "by": {"_count": 1, "a": {"_count": 1}}}, "Painted": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Notorious": {"_count": 1, "Mass": {"_count": 1, "Murderer": {"_count": 1}}}, "Mass": {"_count": 1, "Murderer": {"_count": 1, "OR": {"_count": 1}}}, "Murderer": {"_count": 1, "OR": {"_count": 1, "Innocent": {"_count": 1}}}, "Singing": {"_count": 1, "Sensation": {"_count": 1, "": {"_count": 1}}}, "Sensation": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "audacious": {"_count": 1, "escape": {"_count": 1, "from": {"_count": 1}}}, "manhunt": {"_count": 1, "ever": {"_count": 1, "conducted": {"_count": 1}}}, "recaptured": {"_count": 1, "and": {"_count": 1, "handed": {"_count": 1}}}, "DOES": {"_count": 2, "HE": {"_count": 2, "": {"_count": 2}}}, "Startling": {"_count": 1, "new": {"_count": 1, "evidence": {"_count": 1}}}, "Purkiss": {"_count": 2, "of": {"_count": 1, "18": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "18": {"_count": 1, "Acanthia": {"_count": 1, "Way": {"_count": 1}}}, "Acanthia": {"_count": 1, "Way": {"_count": 1, "Little": {"_count": 1}}}, "Norton": {"_count": 2, "Black": {"_count": 1, "may": {"_count": 1}}, "Church": {"_count": 1, "Hall": {"_count": 1}}}, "Stubby": {"_count": 4, "Boardman": {"_count": 2, "lead": {"_count": 1}, "": {"_count": 1}}, "couldnt": {"_count": 1, "possibly": {"_count": 1}}, "alias": {"_count": 1, "Sirius": {"_count": 1}}}, "Boardman": {"_count": 2, "lead": {"_count": 1, "singer": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "singer": {"_count": 3, "of": {"_count": 2, "the": {"_count": 1}, "The": {"_count": 1}}, "Celestina": {"_count": 1, "Warbeck": {"_count": 1}}}, "Hobgoblins": {"_count": 2, "who": {"_count": 1, "retired": {"_count": 1}}, "was": {"_count": 1, "quite": {"_count": 1}}}, "turnip": {"_count": 1, "at": {"_count": 1, "a": {"_count": 1}}}, "Church": {"_count": 1, "Hall": {"_count": 1, "nearly": {"_count": 1}}}, "alias": {"_count": 1, "Sirius": {"_count": 1, "a": {"_count": 1}}}, "spoof": {"_count": 1, "items": {"_count": 1, "": {"_count": 1}}}, "cooperate": {"_count": 4, "peacefully": {"_count": 1, "with": {"_count": 1}}, "you": {"_count": 1, "need": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "with": {"_count": 1, "you": {"_count": 1}}}, "guardians": {"_count": 3, "of": {"_count": 2, "our": {"_count": 1}, "fabulous": {"_count": 1}}, "usually": {"_count": 1, "live": {"_count": 1}}}, "Sources": {"_count": 1, "close": {"_count": 1, "to": {"_count": 1}}}, "disclosed": {"_count": 1, "that": {"_count": 1, "Fudges": {"_count": 1}}}, "supplies": {"_count": 2, "and": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "insider": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "last": {"_count": 1, "night": {"_count": 1}}, "confirmed": {"_count": 1, "that": {"_count": 1}}}, "\u2018GoblinCrusher": {"_count": 1, "Fudge": {"_count": 1, "thats": {"_count": 1}}}, "Tutshill": {"_count": 1, "Tornados": {"_count": 1, "were": {"_count": 1}}}, "tampering": {"_count": 2, "and": {"_count": 1, "torture": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "claimed": {"_count": 6, "to": {"_count": 1, "have": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "could": {"_count": 1}}, "credit": {"_count": 1, "": {"_count": 1}}, "my": {"_count": 1, "life": {"_count": 1}}, "conquered": {"_count": 1, "death": {"_count": 1}}}, "enemys": {"_count": 2, "ears": {"_count": 1, "turn": {"_count": 1}}, "shell": {"_count": 1, "": {"_count": 1}}}, "kumquats": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Quibblers": {"_count": 5, "rubbish": {"_count": 1, "everyone": {"_count": 1}}, "been": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "came": {"_count": 1, "streaming": {"_count": 1}}, "going": {"_count": 1, "for": {"_count": 1}}}, "editor": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 3, "The": {"_count": 2}, "the": {"_count": 1}}}, "Rifling": {"_count": 1, "through": {"_count": 1, "it": {"_count": 1}}}, "fiftyseven": {"_count": 2, "she": {"_count": 1, "turned": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Manners": {"_count": 2, "Potter": {"_count": 2, "or": {"_count": 1}, "said": {"_count": 1}}}, "secondbest": {"_count": 2, "to": {"_count": 1, "Weasley": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "dogging": {"_count": 2, "your": {"_count": 1, "footsteps": {"_count": 1}}, "been": {"_count": 1, "a": {"_count": 1}}}, "Sniggering": {"_count": 1, "Malfoy": {"_count": 1, "gave": {"_count": 1}}}, "undecided": {"_count": 1, "as": {"_count": 1, "they": {"_count": 1}}}, "halfhearted": {"_count": 2, "way": {"_count": 1, "then": {"_count": 1}}, "shrug": {"_count": 1, "": {"_count": 1}}}, "moonless": {"_count": 1, "night": {"_count": 1, "and": {"_count": 1}}}, "rainstreaked": {"_count": 1, "window": {"_count": 1, "was": {"_count": 1}}}, "pine": {"_count": 8, "trees": {"_count": 2, "that": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 1, "turned": {"_count": 1}}, "tree": {"_count": 3, "and": {"_count": 1}, "which": {"_count": 1}, "at": {"_count": 1}}, "as": {"_count": 1, "far": {"_count": 1}}, "with": {"_count": 1, "an": {"_count": 1}}}, "relying": {"_count": 1, "on": {"_count": 1, "it": {"_count": 1}}}, "rainwashed": {"_count": 5, "road": {"_count": 1, "outside": {"_count": 1}}, "window": {"_count": 2, "at": {"_count": 1}, "with": {"_count": 1}}, "street": {"_count": 1, "with": {"_count": 1}}, "glasses": {"_count": 1, "Harry": {"_count": 1}}}, "coaches": {"_count": 2, "were": {"_count": 2, "no": {"_count": 1}, "being": {"_count": 1}}}, "shafts": {"_count": 6, "if": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "of": {"_count": 3, "soft": {"_count": 1}, "light": {"_count": 1}, "sunlight": {"_count": 1}}, "but": {"_count": 1, "forcing": {"_count": 1}}}, "reptilian": {"_count": 3, "about": {"_count": 1, "them": {"_count": 1}}, "winged": {"_count": 1, "horse": {"_count": 1}}, "heads": {"_count": 1, "throwing": {"_count": 1}}}, "fleshless": {"_count": 3, "their": {"_count": 1, "black": {"_count": 1}}, "arms": {"_count": 1, "cold": {"_count": 1}}, "with": {"_count": 1, "empty": {"_count": 1}}}, "dragonish": {"_count": 3, "and": {"_count": 1, "their": {"_count": 1}}, "horses": {"_count": 1, "he": {"_count": 1}}, "face": {"_count": 1, "neck": {"_count": 1}}}, "pupilless": {"_count": 1, "eyes": {"_count": 1, "white": {"_count": 1}}}, "Wings": {"_count": 1, "sprouted": {"_count": 1, "from": {"_count": 1}}}, "wither": {"_count": 1, "vast": {"_count": 1, "black": {"_count": 1}}}, "fillup": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Harnessed": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "solidly": {"_count": 3, "in": {"_count": 1, "the": {"_count": 1}}, "black": {"_count": 1, "as": {"_count": 1}}, "present": {"_count": 1, "": {"_count": 1}}}, "coachs": {"_count": 1, "dark": {"_count": 1, "interior": {"_count": 1}}}, "interior": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 1}, "your": {"_count": 1}, "a": {"_count": 1}}, "was": {"_count": 1, "exactly": {"_count": 1}}}, "batwinged": {"_count": 1, "horses": {"_count": 1, "reflected": {"_count": 1}}}, "XX": {"_count": 1, "THE": {"_count": 1, "SORTING": {"_count": 1}}}, "HATS": {"_count": 1, "NEW": {"_count": 1, "SONG": {"_count": 1}}}, "SONG": {"_count": 1, "Harry": {"_count": 1, "did": {"_count": 1}}}, "hallucination": {"_count": 3, "if": {"_count": 1, "that": {"_count": 1}}, "brought": {"_count": 1, "on": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "unfazed": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "expression": {"_count": 1, "when": {"_count": 1}}}, "Rattling": {"_count": 1, "and": {"_count": 1, "swaying": {"_count": 1}}}, "convoy": {"_count": 2, "up": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "thestraldrawn": {"_count": 1}}}, "jingled": {"_count": 1, "to": {"_count": 1, "a": {"_count": 1}}}, "Unwillingly": {"_count": 1, "because": {"_count": 1, "he": {"_count": 1}}}, "solidlooking": {"_count": 1, "beasts": {"_count": 1, "strong": {"_count": 1}}}, "starless": {"_count": 1, "black": {"_count": 1, "ceiling": {"_count": 1}}}, "overly": {"_count": 1, "friendly": {"_count": 1, "greetings": {"_count": 1}}}, "conclusive": {"_count": 2, "explanation": {"_count": 1, "of": {"_count": 1}}, "proof": {"_count": 1, "": {"_count": 1}}}, "deeppurple": {"_count": 1, "robes": {"_count": 1, "scattered": {"_count": 1}}}, "maiden": {"_count": 1, "aunt": {"_count": 1, "squat": {"_count": 1}}}, "mousebrown": {"_count": 1, "hair": {"_count": 1, "in": {"_count": 1}}}, "palely": {"_count": 4, "in": {"_count": 2, "the": {"_count": 2}}, "where": {"_count": 1, "their": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "fleetingly": {"_count": 5, "how": {"_count": 1, "terrified": {"_count": 1}}, "what": {"_count": 1, "would": {"_count": 1}}, "a": {"_count": 1, "look": {"_count": 1}}, "of": {"_count": 1, "trying": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}}, "determine": {"_count": 2, "to": {"_count": 1, "which": {"_count": 1}}, "the": {"_count": 1, "possible": {"_count": 1}}}, "selfsame": {"_count": 2, "yearning": {"_count": 1, "To": {"_count": 1}}, "connection": {"_count": 1, "between": {"_count": 1}}}, "someday": {"_count": 1, "be": {"_count": 1, "divided": {"_count": 1}}}, "Gryffndor": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Huffepuff": {"_count": 1, "and": {"_count": 1, "Ravenclaw": {"_count": 1}}}, "friendships": {"_count": 2, "fail": {"_count": 1, "": {"_count": 1}}, "firm": {"_count": 1, "and": {"_count": 1}}}, "ancestry": {"_count": 3, "is": {"_count": 1, "purest": {"_count": 1}}, "exists": {"_count": 1, "therefore": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "purest": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "loathing": {"_count": 1, "": {"_count": 1}}, "sunlight": {"_count": 1, "": {"_count": 1}}}, "Intelligence": {"_count": 1, "is": {"_count": 1, "surest": {"_count": 1}}}, "surest": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "strife": {"_count": 2, "When": {"_count": 1, "first": {"_count": 1}}, "and": {"_count": 1, "when": {"_count": 1}}}, "sharpest": {"_count": 1, "mind": {"_count": 1, "Were": {"_count": 1}}}, "boldest": {"_count": 1, "Went": {"_count": 1, "to": {"_count": 1}}}, "Retained": {"_count": 1, "friendships": {"_count": 1, "firm": {"_count": 1}}}, "Feeding": {"_count": 1, "on": {"_count": 1, "our": {"_count": 1}}}, "Divided": {"_count": 1, "sought": {"_count": 1, "to": {"_count": 1}}}, "clash": {"_count": 2, "of": {"_count": 1, "friend": {"_count": 1}}, "with": {"_count": 1, "our": {"_count": 1}}}, "downhearted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "perils": {"_count": 1, "read": {"_count": 1, "the": {"_count": 1}}}, "foes": {"_count": 3, "And": {"_count": 1, "we": {"_count": 1}}, "all": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}}, "unite": {"_count": 4, "inside": {"_count": 1, "her": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "Deathly": {"_count": 1}, "Hallows": {"_count": 1}}}, "Branched": {"_count": 1, "out": {"_count": 1, "a": {"_count": 1}}}, "scorches": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "primly": {"_count": 1, "upright": {"_count": 1, "again": {"_count": 1}}}, "Abercrombie": {"_count": 4, "Euan": {"_count": 1, "": {"_count": 1}}, "staggered": {"_count": 1, "to": {"_count": 1}}, "looked": {"_count": 2, "petrified": {"_count": 1}, "equally": {"_count": 1}}}, "Euan": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "Abercrombie": {"_count": 3, "staggered": {"_count": 1}, "looked": {"_count": 2}}, "and": {"_count": 1, "whispered": {"_count": 1}}}, "GR": {"_count": 1, "YFFIND": {"_count": 1, "OR": {"_count": 1}}}, "YFFIND": {"_count": 1, "OR": {"_count": 1, "": {"_count": 1}}}, "pauses": {"_count": 2, "between": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "she": {"_count": 1}}}, "Hats": {"_count": 4, "decisions": {"_count": 1, "Harry": {"_count": 1}}, "warning": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "were": {"_count": 1, "a": {"_count": 1}}}, "Zeller": {"_count": 1, "Rose": {"_count": 1, "was": {"_count": 1}}}, "Rose": {"_count": 6, "was": {"_count": 1, "sorted": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 2}}, "looked": {"_count": 1, "solemn": {"_count": 1}}, "craned": {"_count": 1, "around": {"_count": 1}}, "Hugo": {"_count": 1, "and": {"_count": 1}}}, "soothed": {"_count": 1, "to": {"_count": 1, "see": {"_count": 1}}}, "anticipated": {"_count": 7, "was": {"_count": 1, "full": {"_count": 1}}, "you": {"_count": 1, "found": {"_count": 1}}, "its": {"_count": 1, "just": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "times": {"_count": 1}}, "useless": {"_count": 1, "boring": {"_count": 1}}, "or": {"_count": 1, "understood": {"_count": 1}}}, "jarring": {"_count": 1, "notes": {"_count": 1, "in": {"_count": 1}}}, "appreciative": {"_count": 3, "laugh": {"_count": 1, "and": {"_count": 1}}, "murmuring": {"_count": 1, "and": {"_count": 1}}, "whoops": {"_count": 1, "of": {"_count": 1}}}, "joints": {"_count": 3, "and": {"_count": 2, "pies": {"_count": 1}, "I": {"_count": 1}}, "that": {"_count": 1, "made": {"_count": 1}}}, "sauces": {"_count": 1, "and": {"_count": 1, "flagons": {"_count": 1}}}, "indecent": {"_count": 8, "enthusiasm": {"_count": 1, "": {"_count": 1}}, "excitement": {"_count": 1, "in": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "anybody": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "haste": {"_count": 1, "": {"_count": 1}}}, "kunnit": {"_count": 1, "nofe": {"_count": 1, "skusin": {"_count": 1}}}, "nofe": {"_count": 1, "skusin": {"_count": 1, "danger": {"_count": 1}}}, "skusin": {"_count": 1, "danger": {"_count": 1, "ifzat": {"_count": 1}}}, "ifzat": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Peaceful": {"_count": 2, "cooperation": {"_count": 1, "thats": {"_count": 1}}, "PureBlood": {"_count": 1, "Society": {"_count": 1}}}, "maintain": {"_count": 8, "links": {"_count": 1, "of": {"_count": 1}}, "a": {"_count": 2, "close": {"_count": 1}, "straight": {"_count": 1}}, "an": {"_count": 1, "uninterrupted": {"_count": 1}}, "secrecy": {"_count": 1, "": {"_count": 1}}, "possession": {"_count": 1, "of": {"_count": 1}}, "their": {"_count": 1, "immortality": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}}, "competitiveness": {"_count": 1, "between": {"_count": 1, "Gryffindor": {"_count": 1}}}, "Porpington": {"_count": 2, "have": {"_count": 1, "never": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "node": {"_count": 1, "iddum": {"_count": 1, "eentup": {"_count": 1}}}, "iddum": {"_count": 1, "eentup": {"_count": 1, "sechew": {"_count": 1}}}, "eentup": {"_count": 1, "sechew": {"_count": 1, "which": {"_count": 1}}}, "sechew": {"_count": 1, "which": {"_count": 1, "Nick": {"_count": 1}}}, "constituted": {"_count": 1, "an": {"_count": 1, "adequate": {"_count": 1}}}, "adequate": {"_count": 1, "apology": {"_count": 1, "": {"_count": 1}}}, "Rising": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "feathered": {"_count": 1, "hat": {"_count": 1, "and": {"_count": 1}}}, "huffy": {"_count": 2, "silence": {"_count": 1, "": {"_count": 1}}, "irritable": {"_count": 1, "noises": {"_count": 1}}}, "reconcile": {"_count": 1, "them": {"_count": 1, "he": {"_count": 1}}}, "steakand": {"_count": 1, "kidney": {"_count": 1, "pie": {"_count": 1}}}, "plateful": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "digesting": {"_count": 2, "another": {"_count": 1, "magnificent": {"_count": 1}}, "the": {"_count": 1, "horrible": {"_count": 1}}}, "smirks": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sixtysecond": {"_count": 1, "time": {"_count": 1, "to": {"_count": 1}}}, "staffing": {"_count": 3, "this": {"_count": 1, "year": {"_count": 1}}, "problems": {"_count": 1, "": {"_count": 1}}, "changes": {"_count": 1, "at": {"_count": 1}}}, "Tryouts": {"_count": 2, "for": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "on": {"_count": 1}}}, "Hem": {"_count": 13, "hem": {"_count": 13, "and": {"_count": 3}, "but": {"_count": 1}, "said": {"_count": 3}, "": {"_count": 6}}}, "alertly": {"_count": 1, "at": {"_count": 1, "Professor": {"_count": 1}}}, "desired": {"_count": 5, "nothing": {"_count": 1, "better": {"_count": 1}}, "food": {"_count": 1, "who": {"_count": 1}}, "destination": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "her": {"_count": 1, "that": {"_count": 1}}}, "breathy": {"_count": 1, "and": {"_count": 1, "littlegirlish": {"_count": 1}}}, "littlegirlish": {"_count": 1, "and": {"_count": 1, "again": {"_count": 1}}}, "throatclearing": {"_count": 1, "cough": {"_count": 1, "Hem": {"_count": 1}}}, "breathiness": {"_count": 1, "had": {"_count": 1, "vanished": {"_count": 1}}}, "learnedbyheart": {"_count": 1, "sound": {"_count": 1, "to": {"_count": 1}}}, "vital": {"_count": 1, "importance": {"_count": 1, "": {"_count": 1}}}, "gifts": {"_count": 6, "with": {"_count": 1, "which": {"_count": 1}}, "show": {"_count": 1, "some": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "ter": {"_count": 1, "the": {"_count": 1}}}, "nurtured": {"_count": 1, "and": {"_count": 1, "honed": {"_count": 1}}}, "instruction": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "Crush": {"_count": 1, "with": {"_count": 1}}, "he": {"_count": 1, "needed": {"_count": 1}}, "deep": {"_count": 1, "cuts": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}}, "trove": {"_count": 2, "of": {"_count": 2, "magical": {"_count": 1}, "gold": {"_count": 1}}}, "amassed": {"_count": 1, "by": {"_count": 1, "our": {"_count": 1}}}, "replenished": {"_count": 1, "and": {"_count": 1, "polished": {"_count": 1}}}, "profession": {"_count": 1, "of": {"_count": 1, "teaching": {"_count": 1}}}, "hawklike": {"_count": 2, "and": {"_count": 1, "Harry": {"_count": 1}}, "head": {"_count": 1, "peered": {"_count": 1}}}, "weighty": {"_count": 2, "task": {"_count": 1, "of": {"_count": 1}}, "parasite": {"_count": 1, "now": {"_count": 1}}}, "governing": {"_count": 1, "this": {"_count": 1, "historic": {"_count": 1}}}, "historic": {"_count": 1, "school": {"_count": 1, "and": {"_count": 1}}}, "stagnation": {"_count": 1, "and": {"_count": 1, "decay": {"_count": 1}}}, "progresss": {"_count": 2, "sake": {"_count": 2, "must": {"_count": 2}}}, "discouraged": {"_count": 5, "for": {"_count": 1, "our": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "she": {"_count": 1, "seemed": {"_count": 1}}, "and": {"_count": 1, "anxious": {"_count": 1}}}, "traditions": {"_count": 2, "often": {"_count": 1, "require": {"_count": 1}}, "and": {"_count": 1, "values": {"_count": 1}}}, "permanence": {"_count": 1, "and": {"_count": 1, "change": {"_count": 1}}}, "innovation": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "glassyeyed": {"_count": 1, "and": {"_count": 1, "Harry": {"_count": 1}}}, "restlessness": {"_count": 1, "of": {"_count": 1, "her": {"_count": 1}}}, "fullscale": {"_count": 1, "riot": {"_count": 1, "could": {"_count": 1}}}, "attentively": {"_count": 2, "and": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "fullness": {"_count": 1, "of": {"_count": 1, "time": {"_count": 1}}}, "errors": {"_count": 2, "of": {"_count": 1, "judgment": {"_count": 1}}, "than": {"_count": 1, "to": {"_count": 1}}}, "rightly": {"_count": 6, "so": {"_count": 1, "whereas": {"_count": 1}}, "says": {"_count": 1, "they": {"_count": 1}}, "you": {"_count": 1, "didnt": {"_count": 1}}, "said": {"_count": 2, "Sirius": {"_count": 1}, "was": {"_count": 1}}, "seeing": {"_count": 1, "how": {"_count": 1}}}, "outmoded": {"_count": 1, "and": {"_count": 1, "outworn": {"_count": 1}}}, "outworn": {"_count": 1, "must": {"_count": 1, "be": {"_count": 1}}}, "era": {"_count": 1, "of": {"_count": 1, "openness": {"_count": 1}}}, "openness": {"_count": 1, "effectiveness": {"_count": 1, "and": {"_count": 1}}}, "effectiveness": {"_count": 1, "and": {"_count": 1, "accountability": {"_count": 1}}}, "accountability": {"_count": 1, "intent": {"_count": 1, "on": {"_count": 1}}}, "preserved": {"_count": 2, "perfecting": {"_count": 1, "what": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "perfecting": {"_count": 1, "what": {"_count": 1, "needs": {"_count": 1}}}, "perfected": {"_count": 3, "and": {"_count": 1, "pruning": {"_count": 1}}, "one": {"_count": 1, "type": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}}, "prohibited": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "or": {"_count": 1, "": {"_count": 1}}}, "unawares": {"_count": 3, "by": {"_count": 1, "the": {"_count": 1}}, "felt": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tryouts": {"_count": 9, "will": {"_count": 1, "be": {"_count": 1}}, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 3}, "?": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}}, "\u2018progress": {"_count": 1, "for": {"_count": 1, "progresss": {"_count": 1}}}, "\u2018pruning": {"_count": 1, "wherever": {"_count": 1, "we": {"_count": 1}}}, "hey": {"_count": 6, "you": {"_count": 1, "lot": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "Nick": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}}, "Midgets": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "titchy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "midgets": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "commandingly": {"_count": 1, "along": {"_count": 1, "the": {"_count": 1}}}, "shyly": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "mimbletonio": {"_count": 1, "1": {"_count": 1, "Correct": {"_count": 1}}}, "Correct": {"_count": 8, "said": {"_count": 5, "the": {"_count": 1}, "Dumbledore": {"_count": 2}, "Mr": {"_count": 1}, "Scrimgeour": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "dilapidated": {"_count": 3, "squashy": {"_count": 1, "armchairs": {"_count": 1}}, "brick": {"_count": 1, "houses": {"_count": 1}}, "houses": {"_count": 1, "looked": {"_count": 1}}}, "relate": {"_count": 1, "and": {"_count": 1, "he": {"_count": 1}}}, "Kenmare": {"_count": 1, "Kestrels": {"_count": 1, "Quidditch": {"_count": 1}}}, "Kestrels": {"_count": 1, "Quidditch": {"_count": 1, "team": {"_count": 1}}}, "mam": {"_count": 2, "didnt": {"_count": 1, "want": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Dursleyish": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "buttoning": {"_count": 1, "his": {"_count": 1, "pajamas": {"_count": 1}}}, "slipper": {"_count": 1, "went": {"_count": 1, "oddly": {"_count": 1}}}, "contempt": {"_count": 10, "he": {"_count": 1, "turned": {"_count": 1}}, "yet": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "for": {"_count": 1, "anything": {"_count": 1}}, "as": {"_count": 2, "he": {"_count": 1}, "she": {"_count": 1}}, "in": {"_count": 2, "Voldemorts": {"_count": 1}, "his": {"_count": 1}}}, "weasel": {"_count": 5, "anything": {"_count": 1, "out": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 1, "affected": {"_count": 1}}, "which": {"_count": 1, "stood": {"_count": 1}}, "that": {"_count": 1, "spoke": {"_count": 1}}}, "owlishly": {"_count": 1, "over": {"_count": 1, "them": {"_count": 1}}}, "grans": {"_count": 3, "always": {"_count": 1, "said": {"_count": 1}}, "and": {"_count": 1, "shes": {"_count": 1}}, "going": {"_count": 1, "do": {"_count": 1}}}, "UMBRIDGE": {"_count": 3, "Seamus": {"_count": 1, "dressed": {"_count": 1}}, "APPOINTED": {"_count": 1, "FIRSTEVER": {"_count": 1}}, "SENIOR": {"_count": 1, "UNDERSECRETARY": {"_count": 1}}}, "itshisproblemnot": {"_count": 1, "yours": {"_count": 1, "looks": {"_count": 1}}}, "consoled": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "GALLONS": {"_count": 1, "OF": {"_count": 1, "GALLEONS": {"_count": 1}}}, "GALLEONS": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "outgoings": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Contact": {"_count": 1, "Fred": {"_count": 1, "and": {"_count": 1}}}, "parttime": {"_count": 2, "virtually": {"_count": 1, "painless": {"_count": 1}}, "at": {"_count": 1, "Gringotts": {"_count": 1}}}, "virtually": {"_count": 10, "painless": {"_count": 1, "jobs": {"_count": 1}}, "undetectable": {"_count": 1, "side": {"_count": 1}}, "no": {"_count": 1, "contact": {"_count": 1}}, "nonexistent": {"_count": 1, "and": {"_count": 1}}, "nose": {"_count": 1, "to": {"_count": 1}}, "silent": {"_count": 1, "said": {"_count": 1}}, "nothing": {"_count": 1, "": {"_count": 1}}, "impenetrable": {"_count": 1, "": {"_count": 1}}, "unassailable": {"_count": 1, "": {"_count": 1}}, "lived": {"_count": 1, "in": {"_count": 1}}}, "REGRET": {"_count": 1, "THAT": {"_count": 1, "ALL": {"_count": 1}}}, "UNDERTAKEN": {"_count": 1, "AT": {"_count": 1, "APPLICANTS": {"_count": 1}}}, "APPLICANTS": {"_count": 1, "OWN": {"_count": 1, "RISK": {"_count": 1}}}, "RISK": {"_count": 1, "They": {"_count": 1, "are": {"_count": 1}}}, "engrossed": {"_count": 2, "in": {"_count": 2, "their": {"_count": 1}, "a": {"_count": 1}}}, "succinctly": {"_count": 2, "when": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "react": {"_count": 9, "angrily": {"_count": 1, "on": {"_count": 1}}, "when": {"_count": 4, "they": {"_count": 1}, "all": {"_count": 1}, "he": {"_count": 2}}, "to": {"_count": 1, "the": {"_count": 1}}, "well": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "Horcrux": {"_count": 1}}}, "\u2018His": {"_count": 1, "gift": {"_count": 1, "for": {"_count": 1}}}, "asperity": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "matey": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "interHouse": {"_count": 1, "unity": {"_count": 1, "said": {"_count": 1}}}, "unity": {"_count": 2, "said": {"_count": 1, "Hermione": {"_count": 1}}, "dont": {"_count": 1, "you": {"_count": 1}}}, "raincloud": {"_count": 1, "gray": {"_count": 1, "": {"_count": 1}}}, "longwinded": {"_count": 2, "as": {"_count": 1, "Oliver": {"_count": 1}}, "reminiscence": {"_count": 1, "but": {"_count": 1}}}, "personll": {"_count": 1, "fit": {"_count": 1, "in": {"_count": 1}}}, "breakfasters": {"_count": 1, "with": {"_count": 1, "droplets": {"_count": 1}}}, "droplets": {"_count": 4, "of": {"_count": 4, "water": {"_count": 2}, "blood": {"_count": 1}, "Grawps": {"_count": 1}}}, "deceive": {"_count": 1, "me": {"_count": 1, "": {"_count": 1}}}, "bro": {"_count": 3, "said": {"_count": 3, "Fred": {"_count": 3}}}, "kipper": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "unwonted": {"_count": 1}}}, "advertise": {"_count": 2, "for": {"_count": 1, "testers": {"_count": 1}}, "his": {"_count": 1, "difference": {"_count": 1}}}, "Snackbox": {"_count": 3, "before": {"_count": 1, "long": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "which": {"_count": 1, "they": {"_count": 1}}}, "Fifth": {"_count": 4, "years": {"_count": 2, "O": {"_count": 1}, "were": {"_count": 1}}, "Floor": {"_count": 1, "If": {"_count": 1}}, "floor": {"_count": 1, "said": {"_count": 1}}}, "grindstone": {"_count": 1, "theyll": {"_count": 1, "be": {"_count": 1}}}, "breakdowns": {"_count": 1, "coming": {"_count": 1, "up": {"_count": 1}}}, "Patricia": {"_count": 1, "Stimpson": {"_count": 1, "kept": {"_count": 1}}}, "Stimpson": {"_count": 1, "kept": {"_count": 1, "coming": {"_count": 1}}}, "Kenneth": {"_count": 1, "Towler": {"_count": 1, "came": {"_count": 1}}}, "Towler": {"_count": 1, "came": {"_count": 1, "out": {"_count": 1}}}, "reminiscently": {"_count": 5, "": {"_count": 5, ".": {"_count": 5}}}, "Bulbadox": {"_count": 1, "Powder": {"_count": 1, "in": {"_count": 1}}}, "futures": {"_count": 3, "lie": {"_count": 1, "outside": {"_count": 1}}, "for": {"_count": 1, "many": {"_count": 1}}, "to": {"_count": 1, "think": {"_count": 1}}}, "academic": {"_count": 2, "achievement": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "debated": {"_count": 2, "whether": {"_count": 1, "we": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "evaluate": {"_count": 1, "the": {"_count": 1, "results": {"_count": 1}}}, "materials": {"_count": 2, "and": {"_count": 1, "premises": {"_count": 1}}, "there": {"_count": 1, "when": {"_count": 1}}}, "\u2018Ask": {"_count": 1, "us": {"_count": 1, "no": {"_count": 1}}}, "Bound": {"_count": 2, "to": {"_count": 2, "be": {"_count": 2}}}, "sheepish": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "expression": {"_count": 1, "on": {"_count": 1}}, "but": {"_count": 1, "also": {"_count": 1}}, "he": {"_count": 1, "rocked": {"_count": 1}}}, "elite": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "worthwhile": {"_count": 5, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "thing": {"_count": 1, "said": {"_count": 1}}, "after": {"_count": 1, "all": {"_count": 1}}, "opening": {"_count": 1, "hostilities": {"_count": 1}}}, "droning": {"_count": 2, "voice": {"_count": 1, "that": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "soporific": {"_count": 1, "power": {"_count": 1, "of": {"_count": 1}}}, "wars": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "Snape": {"_count": 1, "wants": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "mean": {"_count": 1, "to": {"_count": 1}}}, "disengaged": {"_count": 2, "and": {"_count": 1, "he": {"_count": 1}}, "herself": {"_count": 1, "gently": {"_count": 1}}}, "thirtyfive": {"_count": 1, "minutes": {"_count": 1, "playing": {"_count": 1}}}, "hangman": {"_count": 1, "on": {"_count": 1, "a": {"_count": 1}}}, "mollified": {"_count": 2, "as": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "drizzle": {"_count": 2, "was": {"_count": 1, "falling": {"_count": 1}}, "and": {"_count": 1, "departed": {"_count": 1}}}, "huddles": {"_count": 1, "around": {"_count": 1, "the": {"_count": 1}}}, "secluded": {"_count": 4, "corner": {"_count": 1, "under": {"_count": 1}}, "corners": {"_count": 1, "of": {"_count": 1}}, "spot": {"_count": 1, "traveling": {"_count": 1}}, "Albanian": {"_count": 1, "woods": {"_count": 1}}}, "collars": {"_count": 2, "of": {"_count": 1, "their": {"_count": 1}}, "turned": {"_count": 1, "up": {"_count": 1}}}, "agreeing": {"_count": 6, "that": {"_count": 1, "it": {"_count": 1}}, "to": {"_count": 3, "": {"_count": 1}, "Cho": {"_count": 1}, "deliver": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "whenever": {"_count": 1, "there": {"_count": 1}}}, "twomonth": {"_count": 1, "holiday": {"_count": 1, "when": {"_count": 1}}}, "opposed": {"_count": 3, "to": {"_count": 2, "mortifying": {"_count": 1}, "a": {"_count": 1}}, "as": {"_count": 1, "we": {"_count": 1}}}, "mortifying": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tauten": {"_count": 3, "in": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 1, "strain": {"_count": 1}}, "He": {"_count": 1, "pulled": {"_count": 1}}}, "accusatory": {"_count": 3, "tone": {"_count": 1, "of": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}}, "supports": {"_count": 1, "the": {"_count": 1, "Tornados": {"_count": 1}}}, "bandwagon": {"_count": 1, "Thats": {"_count": 1, "the": {"_count": 1}}}, "reflect": {"_count": 4, "that": {"_count": 1, "between": {"_count": 1}}, "the": {"_count": 1, "time": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Moronic": {"_count": 1, "though": {"_count": 1, "some": {"_count": 1}}}, "\u2018Acceptable": {"_count": 3, "in": {"_count": 1, "your": {"_count": 1}}, "and": {"_count": 1, "thats": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "cease": {"_count": 5, "studying": {"_count": 1, "with": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "operate": {"_count": 1}}, "with": {"_count": 1, "death": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}}, "highpass": {"_count": 1, "level": {"_count": 1, "I": {"_count": 1}}}, "Peace": {"_count": 2, "a": {"_count": 1, "potion": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "heavyhanded": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "irreversible": {"_count": 1, "sleep": {"_count": 1, "so": {"_count": 1}}}, "straighter": {"_count": 10, "her": {"_count": 1, "expression": {"_count": 1}}, "in": {"_count": 4, "his": {"_count": 4}}, "and": {"_count": 2, "wincing": {"_count": 1}, "looked": {"_count": 1}}, "apparently": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "fiddly": {"_count": 1, "potion": {"_count": 1, "": {"_count": 1}}}, "clockwise": {"_count": 6, "then": {"_count": 1, "in": {"_count": 1}}, "stir": {"_count": 2, "after": {"_count": 1}, "No": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "pause": {"_count": 1, "": {"_count": 1}}}, "copious": {"_count": 2, "amounts": {"_count": 2, "of": {"_count": 2}}}, "\u2018Add": {"_count": 1, "powdered": {"_count": 1, "moonstone": {"_count": 1}}}, "moonstone": {"_count": 7, "stir": {"_count": 1, "three": {"_count": 1}}, "and": {"_count": 2, "its": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "essay": {"_count": 3, "": {"_count": 1}, "was": {"_count": 1}, "back": {"_count": 1}}}, "simmer": {"_count": 2, "for": {"_count": 2, "seven": {"_count": 2}}}, "hellebore": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "but": {"_count": 1, "had": {"_count": 1}}}, "Evanesco": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "odor": {"_count": 2, "of": {"_count": 2, "bad": {"_count": 1}, "old": {"_count": 1}}}, "consistency": {"_count": 1, "of": {"_count": 1, "justmixed": {"_count": 1}}}, "justmixed": {"_count": 1, "cement": {"_count": 1, "and": {"_count": 1}}}, "cement": {"_count": 1, "and": {"_count": 1, "which": {"_count": 1}}}, "corked": {"_count": 5, "flagons": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "and": {"_count": 1}}, "his": {"_count": 1, "sample": {"_count": 1}}, "the": {"_count": 1, "bottle": {"_count": 1}}, "bottles": {"_count": 1, "whose": {"_count": 1}}}, "murkier": {"_count": 2, "gray": {"_count": 1, "during": {"_count": 1}}, "and": {"_count": 1, "stranger": {"_count": 1}}}, "mutual": {"_count": 5, "enmity": {"_count": 1, "had": {"_count": 1}}, "dislike": {"_count": 1, "": {"_count": 1}}, "attraction": {"_count": 1, "was": {"_count": 1}}, "support": {"_count": 1, "and": {"_count": 1}}, "quest": {"_count": 1, "for": {"_count": 1}}}, "afforded": {"_count": 2, "him": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "crooked": {"_count": 1}}}, "Serve": {"_count": 1, "them": {"_count": 1, "right": {"_count": 1}}}, "Bickering": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "rebuffed": {"_count": 2, "by": {"_count": 1, "its": {"_count": 1}}, "Bathilda": {"_count": 1, "when": {"_count": 1}}}, "inhabitant": {"_count": 1, "a": {"_count": 1, "large": {"_count": 1}}}, "angrylooking": {"_count": 1, "wolfhound": {"_count": 1, "": {"_count": 1}}}, "wolfhound": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ascend": {"_count": 1, "the": {"_count": 1, "silver": {"_count": 1}}}, "premature": {"_count": 2, "death": {"_count": 2, "every": {"_count": 1}, "down": {"_count": 1}}}, "magnifying": {"_count": 3, "her": {"_count": 1, "eyes": {"_count": 1}}, "lenses": {"_count": 1, "": {"_count": 1}}, "spectacles": {"_count": 1, "": {"_count": 1}}}, "lowburning": {"_count": 1, "sicklyscented": {"_count": 1, "fire": {"_count": 1}}}, "sicklyscented": {"_count": 1, "fire": {"_count": 1, "that": {"_count": 1}}}, "overstuffed": {"_count": 3, "poufs": {"_count": 1, "": {"_count": 1}}, "armchair": {"_count": 2, "lying": {"_count": 1}, "which": {"_count": 1}}}, "fortunes": {"_count": 2, "most": {"_count": 1, "carefully": {"_count": 1}}, "the": {"_count": 1, "appearance": {"_count": 1}}}, "Dream": {"_count": 10, "Oracle": {"_count": 7, "by": {"_count": 1}, "to": {"_count": 2}, "without": {"_count": 1}, "watching": {"_count": 1}, "": {"_count": 1}, "yet": {"_count": 1}}, "interpretation": {"_count": 1, "is": {"_count": 1}}, "Oracles": {"_count": 1, "look": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "Oracle": {"_count": 11, "by": {"_count": 1, "Inigo": {"_count": 1}}, "to": {"_count": 2, "interpret": {"_count": 1}, "tell": {"_count": 1}}, "without": {"_count": 1, "interest": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "watching": {"_count": 1, "Umbridge": {"_count": 1}}, "yet": {"_count": 1, "again": {"_count": 1}}, "down": {"_count": 1, "on": {"_count": 1}}, "at": {"_count": 1, "Seamus": {"_count": 1}}}, "Inigo": {"_count": 1, "Imago": {"_count": 1, "": {"_count": 1}}}, "Imago": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "has": {"_count": 1, "to": {"_count": 1}}}, "interpretation": {"_count": 3, "is": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "divining": {"_count": 1, "the": {"_count": 1, "future": {"_count": 1}}}, "failures": {"_count": 2, "are": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "remotest": {"_count": 3, "importance": {"_count": 1, "when": {"_count": 1}}, "sense": {"_count": 1, "to": {"_count": 1}}, "antiMuggle": {"_count": 1, "tendency": {"_count": 1}}}, "sacred": {"_count": 1, "art": {"_count": 1, "of": {"_count": 1}}}, "certificates": {"_count": 1, "and": {"_count": 1, "grades": {"_count": 1}}}, "introduction": {"_count": 9, "and": {"_count": 1, "read": {"_count": 1}}, "of": {"_count": 4, "the": {"_count": 3}, "Educational": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "is": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 2, "Ciceron": {"_count": 1}, "Magick": {"_count": 1}}}, "paired": {"_count": 1, "up": {"_count": 1, "with": {"_count": 1}}}, "embarked": {"_count": 2, "on": {"_count": 1, "a": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}}, "footandahalflong": {"_count": 1, "essay": {"_count": 1, "on": {"_count": 1}}}, "moonstones": {"_count": 3, "and": {"_count": 1, "now": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "potionmaking": {"_count": 1}}}, "disciplinarian": {"_count": 1, "she": {"_count": 1, "was": {"_count": 1}}}, "\u2018Good": {"_count": 1, "afternoon": {"_count": 1, "Professor": {"_count": 1}}}, "chanted": {"_count": 2, "back": {"_count": 1, "at": {"_count": 1}}, "drearily": {"_count": 1, "": {"_count": 1}}}, "Return": {"_count": 1, "to": {"_count": 1, "Basic": {"_count": 1}}}, "Principles": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "Re": {"_count": 1}}}, "fragmented": {"_count": 2, "hasnt": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "Ministryapproved": {"_count": 2, "curriculum": {"_count": 1, "has": {"_count": 1}}, "method": {"_count": 1, "that": {"_count": 1}}}, "curriculum": {"_count": 1, "has": {"_count": 1, "unfortunately": {"_count": 1}}}, "rectified": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "structured": {"_count": 1, "theorycentered": {"_count": 1, "Ministry": {"_count": 1}}}, "theorycentered": {"_count": 1, "Ministry": {"_count": 1, "approved": {"_count": 1}}}, "Copy": {"_count": 1, "down": {"_count": 1, "the": {"_count": 1}}}, "underlying": {"_count": 1, "defensive": {"_count": 1, "magic": {"_count": 1}}}, "Learning": {"_count": 1, "to": {"_count": 1, "recognize": {"_count": 1}}}, "Placing": {"_count": 1, "the": {"_count": 1, "use": {"_count": 1}}}, "context": {"_count": 1, "for": {"_count": 1, "practical": {"_count": 1}}}, "Umbridges": {"_count": 83, "three": {"_count": 1, "course": {"_count": 1}}, "eye": {"_count": 1, "than": {"_count": 1}}, "pouchy": {"_count": 1, "eyes": {"_count": 1}}, "face": {"_count": 3, "was": {"_count": 2}, "": {"_count": 1}}, "note": {"_count": 2, "and": {"_count": 1}, "again": {"_count": 1}}, "class": {"_count": 2, "could": {"_count": 1}, "again": {"_count": 1}}, "speech": {"_count": 1, "at": {"_count": 1}}, "office": {"_count": 25, "on": {"_count": 1}, "": {"_count": 4}, "door": {"_count": 2}, "and": {"_count": 5}, "that": {"_count": 1}, "so": {"_count": 1}, "said": {"_count": 1}, "ahead": {"_count": 1}, "again": {"_count": 1}, "mere": {"_count": 1}, "was": {"_count": 1}, "I": {"_count": 2}, "as": {"_count": 1}, "with": {"_count": 1}, "is": {"_count": 1}, "at": {"_count": 1}}, "window": {"_count": 1, "": {"_count": 1}}, "quill": {"_count": 1, "or": {"_count": 1}}, "soft": {"_count": 2, "voice": {"_count": 2}}, "comments": {"_count": 1, "about": {"_count": 1}}, "lessons": {"_count": 1, "like": {"_count": 1}}, "toadlike": {"_count": 1, "smile": {"_count": 1}}, "eyebrows": {"_count": 2, "were": {"_count": 1}, "rose": {"_count": 1}}, "first": {"_count": 1, "lesson": {"_count": 1}}, "sign": {"_count": 1, "had": {"_count": 1}}, "notice": {"_count": 1, "scare": {"_count": 1}}, "hand": {"_count": 1, "was": {"_count": 1}}, "classes": {"_count": 1, "and": {"_count": 1}}, "robes": {"_count": 1, "and": {"_count": 1}}, "inspection": {"_count": 1, "and": {"_count": 1}}, "clipboard": {"_count": 1, "but": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "most": {"_count": 1, "recent": {"_count": 1}}, "homework": {"_count": 1, "": {"_count": 1}}, "attention": {"_count": 1, "": {"_count": 1}}, "grasp": {"_count": 1, "as": {"_count": 1}}, "sudden": {"_count": 1, "attack": {"_count": 1}}, "door": {"_count": 5, "and": {"_count": 1}, "": {"_count": 3}, "handle": {"_count": 1}}, "smile": {"_count": 2, "widened": {"_count": 1}, "vanished": {"_count": 1}}, "and": {"_count": 2, "Filchs": {"_count": 1}, "it": {"_count": 1}}, "new": {"_count": 1, "screening": {"_count": 1}}, "hard": {"_count": 1, "stone": {"_count": 1}}, "fire": {"_count": 2, "with": {"_count": 1}, "and": {"_count": 1}}, "desk": {"_count": 1, "and": {"_count": 1}}, "screening": {"_count": 1, "process": {"_count": 1}}, "corridor": {"_count": 2, "okay": {"_count": 1}, "": {"_count": 1}}, "slack": {"_count": 1, "face": {"_count": 1}}, "carpet": {"_count": 1, "as": {"_count": 1}}, "conversation": {"_count": 1, "with": {"_count": 1}}, "velvet": {"_count": 1, "hairbow": {"_count": 1}}, "blouse": {"_count": 1, "": {"_count": 1}}, "lie": {"_count": 1, "that": {"_count": 1}}, "old": {"_count": 1, "decree": {"_count": 1}}}, "\u2018Yes": {"_count": 1, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}}, "\u2018No": {"_count": 1, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}}, "\u2018Basics": {"_count": 2, "for": {"_count": 2, "Beginners": {"_count": 2}}}, "neglecting": {"_count": 1, "to": {"_count": 1, "read": {"_count": 1}}}, "questioningly": {"_count": 4, "but": {"_count": 1, "she": {"_count": 1}}, "at": {"_count": 3, "her": {"_count": 2}, "Belby": {"_count": 1}}}, "indicate": {"_count": 6, "that": {"_count": 3, "she": {"_count": 1}, "it": {"_count": 1}, "that": {"_count": 1}}, "talking": {"_count": 1, "": {"_count": 1}}, "amused": {"_count": 1, "skepticism": {"_count": 1}}, "disappearance": {"_count": 1, "": {"_count": 1}}}, "tedious": {"_count": 5, "that": {"_count": 1, "more": {"_count": 1}}, "job": {"_count": 1, "": {"_count": 1}}, "paperwork": {"_count": 1, "and": {"_count": 1}}, "interruptions": {"_count": 1, "": {"_count": 1}}, "hard": {"_count": 1, "and": {"_count": 1}}}, "mute": {"_count": 2, "attempt": {"_count": 1, "to": {"_count": 1}}, "call": {"_count": 1, "of": {"_count": 1}}}, "Basics": {"_count": 1, "for": {"_count": 1, "Beginners": {"_count": 1}}}, "queries": {"_count": 2, "we": {"_count": 1, "can": {"_count": 1}}, "about": {"_count": 1, "Travers": {"_count": 1}}}, "sweetness": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "bluntly": {"_count": 6, "": {"_count": 5, ".": {"_count": 5}}, "dumping": {"_count": 1, "far": {"_count": 1}}}, "Using": {"_count": 3, "defensive": {"_count": 1, "spells": {"_count": 1}}, "a": {"_count": 1, "repulsed": {"_count": 1}}, "his": {"_count": 1, "name": {"_count": 1}}}, "arising": {"_count": 1, "in": {"_count": 1, "my": {"_count": 1}}}, "ejaculated": {"_count": 2, "loudly": {"_count": 1, "": {"_count": 1}}, "Slughorn": {"_count": 1, "who": {"_count": 1}}}, "Ministrytrained": {"_count": 1, "educational": {"_count": 1, "expert": {"_count": 1}}}, "educational": {"_count": 1, "expert": {"_count": 1, "Miss": {"_count": 1}}}, "Svhole": {"_count": 1, "point": {"_count": 1, "of": {"_count": 1}}}, "riskfree": {"_count": 2, "way": {"_count": 1, "What": {"_count": 1}}, "I": {"_count": 1, "repeat": {"_count": 1}}}, "irritating": {"_count": 7, "fashion": {"_count": 1, "at": {"_count": 1}}, "Harry": {"_count": 1, "Anyone": {"_count": 1}}, "habit": {"_count": 1, "of": {"_count": 1}}, "having": {"_count": 1, "to": {"_count": 1}}, "sight": {"_count": 1, "than": {"_count": 1}}, "things": {"_count": 1, "about": {"_count": 1}}, "beyond": {"_count": 1, "belief": {"_count": 1}}}, "Grangeii": {"_count": 1, "Hermione": {"_count": 1, "put": {"_count": 1}}}, "predecessor": {"_count": 3, "not": {"_count": 1, "only": {"_count": 1}}, "Armando": {"_count": 1, "Dippet": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "ThomasY": {"_count": 1, "trilled": {"_count": 1, "Professor": {"_count": 1}}}, "theoretical": {"_count": 1, "knowledge": {"_count": 1, "will": {"_count": 1}}}, "inquired": {"_count": 10, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "George": {"_count": 3, "pulling": {"_count": 1}, "reemerging": {"_count": 1}, "": {"_count": 1}}, "Ron": {"_count": 2, "hopefully": {"_count": 1}, "": {"_count": 1}}, "curiously": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Xenophilius": {"_count": 1, "sharply": {"_count": 1}}}, "honeyed": {"_count": 2, "voice": {"_count": 1, "": {"_count": 1}}, "tones": {"_count": 1, "quite": {"_count": 1}}}, "stubbyfingered": {"_count": 1, "hands": {"_count": 1, "splayed": {"_count": 1}}}, "PotteryouhavealreadylostyourHouseten": {"_count": 1, "pointsdonotmakemattersworseforyourself": {"_count": 1, "said": {"_count": 1}}}, "pointsdonotmakemattersworseforyourself": {"_count": 1, "said": {"_count": 1, "Professor": {"_count": 1}}}, "guarantees": {"_count": 1, "that": {"_count": 1, "you": {"_count": 1}}}, "fibs": {"_count": 1, "about": {"_count": 1, "reborn": {"_count": 1}}}, "halfscared": {"_count": 2, "halffascinated": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "what": {"_count": 1}}}, "halffascinated": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "inkwells": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "fall": {"_count": 1}}}, "Wee": {"_count": 1, "Potter": {"_count": 1, "": {"_count": 1}}}, "snarl": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}}, "Crackpots": {"_count": 1, "feeling": {"_count": 1, "cranky": {"_count": 1}}}, "cranky": {"_count": 1, "said": {"_count": 1, "Peeves": {"_count": 1}}}, "pursuing": {"_count": 12, "Harry": {"_count": 1, "along": {"_count": 1}}, "our": {"_count": 1, "separate": {"_count": 1}}, "them": {"_count": 4, "aiming": {"_count": 1}, "had": {"_count": 1}, "licking": {"_count": 1}, "crumpled": {"_count": 1}}, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "the": {"_count": 2, "motorbike": {"_count": 1}, "subject": {"_count": 1}}, "goblins": {"_count": 1, "hurled": {"_count": 1}}, "daggers": {"_count": 1, "Snape": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}}, "ALONE": {"_count": 3, "": {"_count": 3, "!": {"_count": 3}}}, "banister": {"_count": 2, "on": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "screamed": {"_count": 1}}}, "Peevesy": {"_count": 1, "knows": {"_count": 1, "better": {"_count": 1}}}, "biscuit": {"_count": 4, "Potter": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 2, "repeated": {"_count": 1}, "said": {"_count": 1}}, "tin": {"_count": 1, "slid": {"_count": 1}}}, "caned": {"_count": 1, "by": {"_count": 1, "Professor": {"_count": 1}}}, "Ginger": {"_count": 3, "Newt": {"_count": 2, "feeling": {"_count": 1}, "and": {"_count": 1}}, "Newts": {"_count": 1, "": {"_count": 1}}}, "wrongfooted": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "Misbehavior": {"_count": 1, "in": {"_count": 1, "Dolores": {"_count": 1}}}, "Tread": {"_count": 1, "carefully": {"_count": 1, "around": {"_count": 1}}}, "DETENTION": {"_count": 1, "WITH": {"_count": 1, "DOLORES": {"_count": 1}}}, "DOLORES": {"_count": 3, "Dinner": {"_count": 1, "in": {"_count": 1}}, "UMBRIDGE": {"_count": 2, "APPOINTED": {"_count": 1}, "SENIOR": {"_count": 1}}}, "Pur": {"_count": 1, "lease": {"_count": 1, "": {"_count": 1}}}, "lease": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "halffinished": {"_count": 2, "apple": {"_count": 1, "pie": {"_count": 1}}, "antidote": {"_count": 1, "comprising": {"_count": 1}}}, "firstfloor": {"_count": 3, "landing": {"_count": 2, "": {"_count": 2}}, "corridor": {"_count": 1, "peering": {"_count": 1}}}, "nutcase": {"_count": 1, "and": {"_count": 1, "Dumbledores": {"_count": 1}}}, "senile": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "windowpanes": {"_count": 3, "as": {"_count": 1, "they": {"_count": 1}}, "behind": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 1, "Crookshanks": {"_count": 1}}}, "uncoiled": {"_count": 2, "himself": {"_count": 1, "from": {"_count": 1}}, "or": {"_count": 1, "was": {"_count": 1}}}, "retaliate": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "Parvati": {"_count": 1}}}, "schoolbags": {"_count": 2, "from": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "\u2018The": {"_count": 9, "properties": {"_count": 1, "": {"_count": 1}}, "Ministry": {"_count": 3, "of": {"_count": 2}, "is": {"_count": 1}}, "Minister": {"_count": 1, "has": {"_count": 1}}, "Inquisitor": {"_count": 1, "will": {"_count": 1}}, "Last": {"_count": 1, "Will": {"_count": 1}}, "first": {"_count": 1, "brother": {"_count": 1}}, "last": {"_count": 1, "enemy": {"_count": 1}}}, "underlined": {"_count": 1, "the": {"_count": 1, "title": {"_count": 1}}}, "innocentlooking": {"_count": 1, "first": {"_count": 1, "years": {"_count": 1}}}, "mallets": {"_count": 1, "the": {"_count": 1, "first": {"_count": 1}}}, "slumping": {"_count": 5, "unconscious": {"_count": 1, "in": {"_count": 1}}, "back": {"_count": 2, "onto": {"_count": 1}, "in": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "low": {"_count": 1, "onto": {"_count": 1}}}, "clipboards": {"_count": 2, "closely": {"_count": 1, "observing": {"_count": 1}}, "like": {"_count": 1, "Umbridges": {"_count": 1}}}, "dosage": {"_count": 1, "looks": {"_count": 1, "strong": {"_count": 1}}}, "inserting": {"_count": 3, "purple": {"_count": 1, "sweets": {"_count": 1}}, "a": {"_count": 1, "gum": {"_count": 1}}, "his": {"_count": 1, "golden": {"_count": 1}}}, "clipboard": {"_count": 33, "and": {"_count": 7, "the": {"_count": 2}, "Professor": {"_count": 1}, "when": {"_count": 1}, "began": {"_count": 2}, "went": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 13}}, "from": {"_count": 1, "her": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "were": {"_count": 1, "sitting": {"_count": 1}}, "waiting": {"_count": 1, "for": {"_count": 1}}, "on": {"_count": 2, "her": {"_count": 2}}, "at": {"_count": 1, "the": {"_count": 1}}, "\u2018has": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "plowing": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "ten": {"_count": 1}}, "to": {"_count": 1, "her": {"_count": 1}}}, "reacts": {"_count": 1, "the": {"_count": 1, "same": {"_count": 1}}}, "Idliketosee": {"_count": 1, "youtryit": {"_count": 1, "voice": {"_count": 1}}}, "youtryit": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "Onlookers": {"_count": 1, "all": {"_count": 1, "over": {"_count": 1}}}, "crackle": {"_count": 2, "with": {"_count": 1, "electricity": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "misshapen": {"_count": 6, "woolly": {"_count": 1, "objects": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "yellow": {"_count": 1, "teeth": {"_count": 1}}, "canvas": {"_count": 1, "which": {"_count": 1}}, "features": {"_count": 1, "": {"_count": 1}}, "bird": {"_count": 1, "flew": {"_count": 1}}}, "screwedup": {"_count": 1, "bits": {"_count": 1, "of": {"_count": 1}}}, "knitter": {"_count": 1, "without": {"_count": 1, "magic": {"_count": 1}}}, "provocation": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "Malfoy": {"_count": 1, "offered": {"_count": 1}}}, "rainy": {"_count": 2, "as": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cuttingly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bladders": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "lecturing": {"_count": 3, "the": {"_count": 1, "class": {"_count": 1}}, "them": {"_count": 1, "about": {"_count": 1}}, "him": {"_count": 1, "the": {"_count": 1}}}, "reviewing": {"_count": 2, "Summoning": {"_count": 1, "Charms": {"_count": 1}}, "those": {"_count": 1, "topics": {"_count": 1}}}, "application": {"_count": 3, "practice": {"_count": 1, "and": {"_count": 1}}, "of": {"_count": 1, "thumbscrews": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "snail": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "an": {"_count": 1}}}, "tenpoint": {"_count": 1, "bonus": {"_count": 1, "for": {"_count": 1}}}, "slur": {"_count": 1, "on": {"_count": 1, "her": {"_count": 1}}}, "bucktoothed": {"_count": 1, "imitation": {"_count": 1, "of": {"_count": 1}}}, "eagerness": {"_count": 4, "to": {"_count": 2, "answer": {"_count": 1}, "help": {"_count": 1}}, "and": {"_count": 1, "greed": {"_count": 1}}, "with": {"_count": 1, "as": {"_count": 1}}}, "pixieish": {"_count": 1, "creatures": {"_count": 1, "made": {"_count": 1}}}, "twiglike": {"_count": 2, "fingers": {"_count": 2, "at": {"_count": 2}}}, "beetlebrown": {"_count": 1, "eyes": {"_count": 1, "glittered": {"_count": 1}}}, "stickcreatures": {"_count": 1, "who": {"_count": 1, "immediately": {"_count": 1}}}, "Bowtruckles": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "wandtrees": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bowtruckles": {"_count": 5, "and": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "Professor": {"_count": 1}}, "were": {"_count": 1, "scrabbling": {"_count": 1}}, "on": {"_count": 1, "doxy": {"_count": 1}}}, "lice": {"_count": 4, "said": {"_count": 1, "Hermione": {"_count": 1}}, "ready": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "like": {"_count": 1, "so": {"_count": 1}}}, "grains": {"_count": 1, "of": {"_count": 1, "brown": {"_count": 1}}}, "bowtruckle": {"_count": 15, "lodges": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "remain": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "so": {"_count": 1, "hard": {"_count": 1}}, "set": {"_count": 1, "off": {"_count": 1}}, "picture": {"_count": 1, "and": {"_count": 1}}, "drawing": {"_count": 1, "and": {"_count": 1}}, "nor": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "meanwhile": {"_count": 1}}, "feed": {"_count": 1, "and": {"_count": 1}}, "flexing": {"_count": 1, "its": {"_count": 1}}, "husbandry": {"_count": 1, "": {"_count": 1}}, "legs": {"_count": 1, "when": {"_count": 1}}}, "lodges": {"_count": 1, "it": {"_count": 1, "is": {"_count": 1}}}, "placate": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "angered": {"_count": 1, "they": {"_count": 1, "will": {"_count": 1}}}, "desirable": {"_count": 3, "near": {"_count": 1, "the": {"_count": 1}}, "circumstance": {"_count": 1, "": {"_count": 1}}, "object": {"_count": 1, "and": {"_count": 1}}}, "sketch": {"_count": 1, "from": {"_count": 1, "each": {"_count": 1}}}, "repressively": {"_count": 3, "which": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Smirking": {"_count": 2, "all": {"_count": 1, "over": {"_count": 1}}, "slightly": {"_count": 1, "Harry": {"_count": 1}}}, "retaliatory": {"_count": 2, "swipe": {"_count": 1, "at": {"_count": 1}}, "jets": {"_count": 1, "of": {"_count": 1}}}, "guffawing": {"_count": 2, "at": {"_count": 1, "the": {"_count": 1}}, "witches": {"_count": 1, "and": {"_count": 1}}}, "tilt": {"_count": 1, "toward": {"_count": 1, "the": {"_count": 1}}}, "stickman": {"_count": 1, "soon": {"_count": 1, "swallowed": {"_count": 1}}}, "exemplary": {"_count": 1, "Care": {"_count": 1, "of": {"_count": 1}}}, "smudge": {"_count": 1, "of": {"_count": 1, "earth": {"_count": 1}}}, "bulge": {"_count": 3, "excitedly": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "Dedaluss": {"_count": 1}}, "For": {"_count": 1, "the": {"_count": 1}}}, "preliminary": {"_count": 1, "hello": {"_count": 1, "I": {"_count": 1}}}, "radishes": {"_count": 5, "for": {"_count": 1, "earrings": {"_count": 1}}, "swinging": {"_count": 1, "madly": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}, "dangling": {"_count": 1, "from": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "earlobes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Blibbering": {"_count": 3, "Humdinger": {"_count": 3, "or": {"_count": 2}, "": {"_count": 1}}}, "Humdinger": {"_count": 3, "or": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 1, "!": {"_count": 1}}}, "CrumpleHorned": {"_count": 9, "Snorkack": {"_count": 7, "": {"_count": 2}, "cant": {"_count": 1}, "or": {"_count": 1}, "said": {"_count": 2}, "No": {"_count": 1}}, "Snorkacks": {"_count": 2, "": {"_count": 2}}}, "Snorkack": {"_count": 10, "": {"_count": 4, "!": {"_count": 1}, ".": {"_count": 3}}, "cant": {"_count": 1, "fly": {"_count": 1}}, "or": {"_count": 1, "something": {"_count": 1}}, "said": {"_count": 2, "Xenophilius": {"_count": 2}}, "No": {"_count": 1, "it": {"_count": 1}}, "horn": {"_count": 1, "said": {"_count": 1}}}, "flounced": {"_count": 3, "away": {"_count": 1, "radishes": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "off": {"_count": 1, "to": {"_count": 1}}}, "devote": {"_count": 3, "much": {"_count": 1, "more": {"_count": 1}}, "an": {"_count": 2, "hour": {"_count": 1}, "entire": {"_count": 1}}}, "tryout": {"_count": 4, "with": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "though": {"_count": 1, "I": {"_count": 1}}}, "figment": {"_count": 1, "of": {"_count": 1, "your": {"_count": 1}}}, "therel": {"_count": 1, "She": {"_count": 1, "stormed": {"_count": 1}}}, "channeling": {"_count": 1, "his": {"_count": 1, "spirit": {"_count": 1}}}, "Less": {"_count": 6, "than": {"_count": 4, "zero": {"_count": 1}, "a": {"_count": 1}, "two": {"_count": 1}, "twentyfour": {"_count": 1}}, "I": {"_count": 1, "spose": {"_count": 1}}, "substantial": {"_count": 1, "than": {"_count": 1}}}, "sugary": {"_count": 2, "voice": {"_count": 1, "": {"_count": 1}}, "warmth": {"_count": 1, "of": {"_count": 1}}}, "detection": {"_count": 5, "of": {"_count": 1, "wrongdoing": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "by": {"_count": 1, "diving": {"_count": 1}}, "let": {"_count": 1, "alone": {"_count": 1}}}, "wrongdoing": {"_count": 4, "and": {"_count": 1, "concealment": {"_count": 1}}, "although": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "school": {"_count": 1}}}, "surfaces": {"_count": 3, "had": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "leaned": {"_count": 1}}}, "vases": {"_count": 3, "full": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "baskets": {"_count": 1}}}, "doily": {"_count": 1, "and": {"_count": 1, "on": {"_count": 1}}}, "technicolor": {"_count": 1, "kitten": {"_count": 1, "wearing": {"_count": 1}}}, "kitten": {"_count": 3, "wearing": {"_count": 1, "a": {"_count": 1}}, "gamboling": {"_count": 1, "and": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "luridly": {"_count": 1, "flowered": {"_count": 1, "set": {"_count": 1}}}, "straightbacked": {"_count": 3, "chair": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 1, "wooden": {"_count": 1}}}, "adjusted": {"_count": 5, "to": {"_count": 1, "suit": {"_count": 1}}, "the": {"_count": 1, "steak": {"_count": 1}}, "their": {"_count": 1, "parchment": {"_count": 1}}, "on": {"_count": 1, "its": {"_count": 1}}, "Dumbledore": {"_count": 1, "landed": {"_count": 1}}}, "convenience": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "reinforce": {"_count": 2, "the": {"_count": 1, "lesson": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "creditable": {"_count": 1, "imitation": {"_count": 1, "of": {"_count": 1}}}, "politeness": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "why": {"_count": 1, "You": {"_count": 1}}, "to": {"_count": 1, "meet": {"_count": 1}}}, "scalpel": {"_count": 1, "yet": {"_count": 1, "even": {"_count": 1}}}, "healed": {"_count": 10, "over": {"_count": 2, "again": {"_count": 1}, "seconds": {"_count": 1}}, "and": {"_count": 2, "then": {"_count": 1}, "by": {"_count": 1}}, "but": {"_count": 1, "that": {"_count": 1}}, "everywhere": {"_count": 1, "and": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "all": {"_count": 1, "right": {"_count": 1}}, "instantly": {"_count": 1, "just": {"_count": 1}}, "Malfoys": {"_count": 1, "wounds": {"_count": 1}}}, "stubby": {"_count": 13, "fingers": {"_count": 4, "on": {"_count": 1}, "": {"_count": 3}}, "short": {"_count": 1, "fingered": {"_count": 1}}, "hand": {"_count": 1, "at": {"_count": 1}}, "little": {"_count": 2, "fingers": {"_count": 1}, "legs": {"_count": 1}}, "finger": {"_count": 2, "at": {"_count": 2}}, "and": {"_count": 1, "shapeless": {"_count": 1}}, "hands": {"_count": 1, "still": {"_count": 1}}, "forefinger": {"_count": 1, "to": {"_count": 1}}}, "madeup": {"_count": 2, "dreams": {"_count": 2, "for": {"_count": 1}, "": {"_count": 1}}}, "Lines": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "commitments": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wills": {"_count": 2, "and": {"_count": 1, "he": {"_count": 1}}, "are": {"_count": 1, "examined": {"_count": 1}}}, "shiftily": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "not": {"_count": 1}}}, "inflamed": {"_count": 3, "Harry": {"_count": 1, "thought": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "dismissal": {"_count": 5, "again": {"_count": 1, "past": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "got": {"_count": 1}}}, "clothed": {"_count": 4, "on": {"_count": 1, "top": {"_count": 1}}, "hunched": {"_count": 1, "against": {"_count": 1}}, "and": {"_count": 1, "staring": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "oughtnt": {"_count": 2, "it": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}}, "etch": {"_count": 1, "the": {"_count": 1, "message": {"_count": 1}}}, "contender": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Lachlan": {"_count": 1, "the": {"_count": 1, "Lanky": {"_count": 1}}}, "Lanky": {"_count": 1, "clutching": {"_count": 1, "his": {"_count": 1}}}, "Laugh": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Cleans": {"_count": 1, "weep": {"_count": 1, "": {"_count": 1}}}, "weep": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mountainous": {"_count": 2, "pile": {"_count": 1, "of": {"_count": 1}}, "horizon": {"_count": 1, "and": {"_count": 1}}}, "goalposts": {"_count": 5, "apparently": {"_count": 1, "awaiting": {"_count": 1}}, "now": {"_count": 1, "was": {"_count": 1}}, "Harry": {"_count": 2, "playing": {"_count": 1}, "release": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}}, "afresh": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "making": {"_count": 1}}}, "defending": {"_count": 5, "the": {"_count": 1, "goalposts": {"_count": 1}}, "ourselves": {"_count": 1, "against": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "what": {"_count": 1, "I": {"_count": 1}}, "himself": {"_count": 1, "": {"_count": 1}}}, "ringed": {"_count": 1, "fingers": {"_count": 1, "for": {"_count": 1}}}, "mimbletoniaV": {"_count": 1, "he": {"_count": 1, "gasped": {"_count": 1}}}, "bled": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "when": {"_count": 1, "fangs": {"_count": 1}}, "half": {"_count": 1, "to": {"_count": 1}}}, "nosebleeds": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "stressful": {"_count": 1, "this": {"_count": 1, "managing": {"_count": 1}}}, "lark": {"_count": 1, "you": {"_count": 1, "know": {"_count": 1}}}, "banking": {"_count": 4, "on": {"_count": 2, "him": {"_count": 1}, "Harrys": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "Frobisher": {"_count": 1, "and": {"_count": 1, "Geoffrey": {"_count": 1}}}, "Geoffrey": {"_count": 1, "Hooper": {"_count": 1, "both": {"_count": 1}}}, "Hooper": {"_count": 1, "both": {"_count": 1, "flew": {"_count": 1}}}, "Hoopers": {"_count": 1, "a": {"_count": 1, "real": {"_count": 1}}}, "whiner": {"_count": 1, "hes": {"_count": 1, "always": {"_count": 1}}}, "Vickys": {"_count": 1, "involved": {"_count": 1, "in": {"_count": 1}}}, "societies": {"_count": 4, "she": {"_count": 1, "admitted": {"_count": 1}}, "right": {"_count": 1, "under": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "unwary": {"_count": 2, "elves": {"_count": 1, "might": {"_count": 1}}, "user": {"_count": 1, "around": {"_count": 1}}}, "possessing": {"_count": 8, "her": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "Harry": {"_count": 1}}, "me": {"_count": 2, "then": {"_count": 1}, "Im": {"_count": 1}}, "the": {"_count": 1, "snake": {"_count": 1}}, "you": {"_count": 1, "as": {"_count": 1}}, "Ginny": {"_count": 1, "wasnt": {"_count": 1}}, "them": {"_count": 1, "was": {"_count": 1}}}, "Twisted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bobbles": {"_count": 1, "and": {"_count": 1, "all": {"_count": 1}}}, "PERCY": {"_count": 1, "AND": {"_count": 1, "PADFOOT": {"_count": 1}}}, "savored": {"_count": 1, "the": {"_count": 1, "thought": {"_count": 1}}}, "minted": {"_count": 1, "look": {"_count": 1, "of": {"_count": 1}}}, "extinct": {"_count": 2, "fire": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "detritus": {"_count": 2, "of": {"_count": 2, "crumpledup": {"_count": 1}, "centuries": {"_count": 1}}}, "crumpledup": {"_count": 1, "bits": {"_count": 1, "of": {"_count": 1}}}, "pose": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "letterthieves": {"_count": 1, "a": {"_count": 1, "lot": {"_count": 1}}}, "Considering": {"_count": 1, "it": {"_count": 1, "was": {"_count": 1}}}, "Sealing": {"_count": 1, "the": {"_count": 1, "parchment": {"_count": 1}}}, "disconcertingly": {"_count": 1, "through": {"_count": 1, "a": {"_count": 1}}}, "Funnily": {"_count": 1, "enough": {"_count": 1, "it": {"_count": 1}}}, "Subtlety": {"_count": 1, "has": {"_count": 1, "never": {"_count": 1}}}, "Wilfred": {"_count": 1, "the": {"_count": 1, "Wistful": {"_count": 1}}}, "Wistful": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "glassless": {"_count": 1, "windows": {"_count": 1, "dazzled": {"_count": 1}}}, "crunched": {"_count": 6, "a": {"_count": 1, "little": {"_count": 1}}, "under": {"_count": 1, "their": {"_count": 1}}, "excitedly": {"_count": 1, "through": {"_count": 1}}, "underfoot": {"_count": 1, "as": {"_count": 1}}, "beneath": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}}, "\u2018Snuffles": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "uninhabited": {"_count": 2, "the": {"_count": 1, "chimney": {"_count": 1}}, "apart": {"_count": 1, "from": {"_count": 1}}}, "smokeless": {"_count": 1, "the": {"_count": 1, "curtains": {"_count": 1}}}, "pterodactyls": {"_count": 1, "rose": {"_count": 1, "up": {"_count": 1}}}, "coaxed": {"_count": 1, "it": {"_count": 1, "down": {"_count": 1}}}, "obliging": {"_count": 1, "leg": {"_count": 1, "so": {"_count": 1}}}, "Tornadohater": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "halfattached": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "Putting": {"_count": 1, "you": {"_count": 1, "in": {"_count": 1}}}, "reinflated": {"_count": 1, "so": {"_count": 1, "rapidly": {"_count": 1}}}, "accidentallyonpurpose": {"_count": 1, "showing": {"_count": 1, "her": {"_count": 1}}}, "veined": {"_count": 3, "cheeks": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "knotted": {"_count": 1}}, "hands": {"_count": 1, "": {"_count": 1}}}, "mewing": {"_count": 3, "hungrily": {"_count": 1, "": {"_count": 1}}, "attempted": {"_count": 1, "to": {"_count": 1}}, "hopefully": {"_count": 1, "at": {"_count": 1}}}, "admonitory": {"_count": 2, "hoot": {"_count": 1, "but": {"_count": 1}}, "finger": {"_count": 1, "": {"_count": 1}}}, "dawdled": {"_count": 4, "in": {"_count": 1, "posting": {"_count": 1}}, "enough": {"_count": 1, "by": {"_count": 1}}, "deliberately": {"_count": 1, "wanting": {"_count": 1}}, "behind": {"_count": 1, "taking": {"_count": 1}}}, "posting": {"_count": 1, "off": {"_count": 1, "the": {"_count": 1}}}, "contorting": {"_count": 2, "with": {"_count": 1, "rage": {"_count": 1}}, "twisting": {"_count": 1, "itself": {"_count": 1}}}, "perilously": {"_count": 1, "close": {"_count": 1, "to": {"_count": 1}}}, "guff": {"_count": 1, "about": {"_count": 1, "the": {"_count": 1}}}, "notorious": {"_count": 3, "mass": {"_count": 1, "murderer": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "grudge": {"_count": 1, "": {"_count": 1}}}, "blah": {"_count": 3, "blah": {"_count": 2, "blah": {"_count": 1}, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Ministry": {"_count": 1, "warns": {"_count": 1, "Wizarding": {"_count": 1}}}, "warns": {"_count": 3, "Wizarding": {"_count": 1, "community": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}, "Dark": {"_count": 1, "wizards": {"_count": 1}}}, "headlined": {"_count": 1, "TRESPASS": {"_count": 1, "AT": {"_count": 1}}}, "TRESPASS": {"_count": 1, "AT": {"_count": 1, "MINISTRY": {"_count": 1}}}, "38": {"_count": 1, "of": {"_count": 1, "number": {"_count": 1}}}, "Laburnum": {"_count": 1, "Gardens": {"_count": 1, "Clapham": {"_count": 1}}}, "Gardens": {"_count": 1, "Clapham": {"_count": 1, "has": {"_count": 1}}}, "Clapham": {"_count": 2, "has": {"_count": 1, "appeared": {"_count": 1}}, "home": {"_count": 1, "": {"_count": 1}}}, "31st": {"_count": 2, "August": {"_count": 2, "": {"_count": 1}, "next": {"_count": 1}}}, "Munch": {"_count": 1, "who": {"_count": 1, "found": {"_count": 1}}}, "Ord": {"_count": 1, "Ron": {"_count": 1, "shh": {"_count": 1}}}, "iob": {"_count": 1, "for": {"_count": 1, "them": {"_count": 1}}}, "frameup": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "exclaimed": {"_count": 5, "excitedly": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "Ron": {"_count": 1, "slamming": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "Doge": {"_count": 1, "": {"_count": 1}}}, "SelfFertilizing": {"_count": 1, "Shrubs": {"_count": 1, "first": {"_count": 1}}}, "Shrubs": {"_count": 1, "first": {"_count": 1, "and": {"_count": 1}}}, "Inanimatus": {"_count": 2, "Conjurus": {"_count": 2, "before": {"_count": 1}, "spell": {"_count": 1}}}, "Conjurus": {"_count": 2, "before": {"_count": 1, "lunch": {"_count": 1}}, "spell": {"_count": 1, "and": {"_count": 1}}}, "exhilarating": {"_count": 3, "blue": {"_count": 1, "and": {"_count": 1}}, "sense": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dire": {"_count": 4, "warnings": {"_count": 2, "that": {"_count": 1}, "all": {"_count": 1}}, "accusation": {"_count": 1, "It": {"_count": 1}}, "retribution": {"_count": 1, "to": {"_count": 1}}}, "heartened": {"_count": 3, "tone": {"_count": 1, "": {"_count": 1}}, "well": {"_count": 1, "I": {"_count": 1}}, "only": {"_count": 1, "thirty": {"_count": 1}}}, "broader": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "uninvited": {"_count": 1, "spectators": {"_count": 1, "were": {"_count": 1}}}, "hangerson": {"_count": 1, "who": {"_count": 1, "were": {"_count": 1}}}, "accelerating": {"_count": 1, "to": {"_count": 1, "catch": {"_count": 1}}}, "Spread": {"_count": 2, "out": {"_count": 2, "then": {"_count": 1}, "": {"_count": 1}}}, "liedown": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "converged": {"_count": 2, "on": {"_count": 2, "Katie": {"_count": 1}, "her": {"_count": 1}}}, "meaningless": {"_count": 3, "roaring": {"_count": 1, "in": {"_count": 1}}, "noise": {"_count": 1, "the": {"_count": 1}}, "compared": {"_count": 1, "to": {"_count": 1}}}, "rigidity": {"_count": 1, "about": {"_count": 1, "her": {"_count": 1}}}, "goalpost": {"_count": 1, "pulled": {"_count": 1, "up": {"_count": 1}}}, "aggrieved": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "silence": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 1, "watery": {"_count": 1}}}, "Blisterpod": {"_count": 1, "by": {"_count": 1, "mistake": {"_count": 1}}}, "frostiness": {"_count": 2, "seemed": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "loyally": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "headway": {"_count": 2, "with": {"_count": 1, "their": {"_count": 1}}, "against": {"_count": 1, "Greybacks": {"_count": 1}}}, "Jupiters": {"_count": 3, "moons": {"_count": 2, "": {"_count": 1}, "right": {"_count": 1}}, "biggest": {"_count": 1, "moon": {"_count": 1}}}, "Ganymede": {"_count": 1, "not": {"_count": 1, "Callisto": {"_count": 1}}}, "Callisto": {"_count": 1, "she": {"_count": 1, "said": {"_count": 1}}}, "Io": {"_count": 2, "thats": {"_count": 1, "got": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "volcanos": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sermon": {"_count": 1, "all": {"_count": 1, "right": {"_count": 1}}}, "flouting": {"_count": 1, "authority": {"_count": 1, "and": {"_count": 1}}}, "fraternization": {"_count": 1, "with": {"_count": 1, "that": {"_count": 1}}}, "tarred": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "damaging": {"_count": 1, "to": {"_count": 1, "your": {"_count": 1}}}, "technicality": {"_count": 1, "if": {"_count": 1, "you": {"_count": 1}}}, "sever": {"_count": 2, "ties": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "feelers": {"_count": 1}}}, "delightful": {"_count": 2, "woman": {"_count": 1, "who": {"_count": 1}}, "young": {"_count": 1, "wizard": {"_count": 1}}}, "encountering": {"_count": 1, "very": {"_count": 1, "little": {"_count": 1}}}, "strives": {"_count": 1, "to": {"_count": 1, "make": {"_count": 1}}}, "ardently": {"_count": 1, "desires": {"_count": 1, "although": {"_count": 1}}}, "desires": {"_count": 1, "although": {"_count": 1, "she": {"_count": 1}}}, "stigma": {"_count": 1, "of": {"_count": 1, "association": {"_count": 1}}}, "association": {"_count": 1, "with": {"_count": 1, "such": {"_count": 1}}}, "misguided": {"_count": 1, "nature": {"_count": 1, "of": {"_count": 1}}}, "beliefs": {"_count": 2, "and": {"_count": 1, "actions": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018sever": {"_count": 1, "ties": {"_count": 1, "with": {"_count": 1}}}, "eighths": {"_count": 1, "git": {"_count": 1, "": {"_count": 1}}}, "lifesaver": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "allusions": {"_count": 1, "to": {"_count": 1, "him": {"_count": 1}}}, "Europas": {"_count": 1, "covered": {"_count": 1, "in": {"_count": 1}}}, "hearthrug": {"_count": 7, "gazing": {"_count": 1, "into": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 4}}, "and": {"_count": 1, "Hedwig": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "Siriusl": {"_count": 1, "She": {"_count": 1, "gasped": {"_count": 1}}}, "codes": {"_count": 3, "are": {"_count": 1, "breakable": {"_count": 1}}, "or": {"_count": 1, "any": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}}, "breakable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "accusingly": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "drafted": {"_count": 1, "a": {"_count": 1, "bit": {"_count": 1}}}, "legislation": {"_count": 3, "two": {"_count": 1, "years": {"_count": 1}}, "giving": {"_count": 1, "itself": {"_count": 1}}, "contribute": {"_count": 1, "to": {"_count": 1}}}, "loathes": {"_count": 1, "parthumans": {"_count": 1, "she": {"_count": 1}}}, "parthumans": {"_count": 2, "she": {"_count": 1, "campaigned": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "campaigned": {"_count": 1, "to": {"_count": 1, "have": {"_count": 1}}}, "tagged": {"_count": 1, "last": {"_count": 1, "year": {"_count": 1}}}, "persecuting": {"_count": 1, "merpeople": {"_count": 1, "when": {"_count": 1}}}, "toerags": {"_count": 1, "like": {"_count": 1, "Kreacher": {"_count": 1}}}, "Trained": {"_count": 1, "in": {"_count": 1, "combat": {"_count": 1}}}, "trumpedup": {"_count": 1, "charge": {"_count": 1, "": {"_count": 1}}}, "Unconvinced": {"_count": 1, "Harry": {"_count": 1, "Ron": {"_count": 1}}}, "HIGH": {"_count": 9, "INQUISITOR": {"_count": 9, "They": {"_count": 1}, "High": {"_count": 1}, "OF": {"_count": 3}, "Harry": {"_count": 1}, "This": {"_count": 1}, "For": {"_count": 1}, "": {"_count": 1}}}, "INQUISITOR": {"_count": 9, "They": {"_count": 1, "had": {"_count": 1}}, "High": {"_count": 1, "Inquisitor": {"_count": 1}}, "OF": {"_count": 3, "HOGWARTS": {"_count": 3}}, "Harry": {"_count": 1, "and": {"_count": 1}}, "This": {"_count": 1, "latest": {"_count": 1}}, "For": {"_count": 1, "some": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "SEEKS": {"_count": 1, "EDUCATIONAL": {"_count": 1, "REFORM": {"_count": 1}}}, "EDUCATIONAL": {"_count": 2, "REFORM": {"_count": 1, "DOLORES": {"_count": 1}}, "DECREE": {"_count": 1, "NUMBER": {"_count": 1}}}, "REFORM": {"_count": 1, "DOLORES": {"_count": 1, "UMBRIDGE": {"_count": 1}}}, "APPOINTED": {"_count": 1, "FIRSTEVER": {"_count": 1, "HIGH": {"_count": 1}}}, "FIRSTEVER": {"_count": 1, "HIGH": {"_count": 1, "INQUISITOR": {"_count": 1}}}, "Inquisitor": {"_count": 19, "": {"_count": 3, "?": {"_count": 1}, ".": {"_count": 2}}, "will": {"_count": 3, "have": {"_count": 1}, "be": {"_count": 1}, "henceforth": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "Hogwarts": {"_count": 1}}, "gets": {"_count": 1, "sacked": {"_count": 1}}, "Professor": {"_count": 1, "Umbridge": {"_count": 1}}, "has": {"_count": 2, "to": {"_count": 1}, "replaced": {"_count": 1}}, "said": {"_count": 1, "Umbridge": {"_count": 1}}, "it": {"_count": 1, "is": {"_count": 1}}, "was": {"_count": 1, "nowhere": {"_count": 1}}, "of": {"_count": 2, "Hogwarts": {"_count": 2}}, "you": {"_count": 1, "have": {"_count": 1}}, "the": {"_count": 1, "Minister": {"_count": 1}}}, "halfeaten": {"_count": 1, "bit": {"_count": 1, "of": {"_count": 1}}}, "improvements": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "Educational": {"_count": 11, "Decree": {"_count": 11, "Twenty": {"_count": 1}, "Twentythree": {"_count": 1}, "Number": {"_count": 7}, "Twentytwo": {"_count": 1}, "Twentynine": {"_count": 1}}}, "\u2018Thats": {"_count": 1, "how": {"_count": 1, "Dolores": {"_count": 1}}}, "revolutionizing": {"_count": 1, "the": {"_count": 1, "teaching": {"_count": 1}}}, "ontheground": {"_count": 1, "feedback": {"_count": 1, "about": {"_count": 1}}}, "feedback": {"_count": 1, "about": {"_count": 1, "whats": {"_count": 1}}}, "function": {"_count": 2, "that": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "had": {"_count": 1}}}, "formalized": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "Twentythree": {"_count": 2, "which": {"_count": 1, "creates": {"_count": 1}}, "the": {"_count": 1, "High": {"_count": 1}}}, "\u2018Hogwarts": {"_count": 2, "High": {"_count": 1, "Inquisitor": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}}, "\u2018This": {"_count": 3, "is": {"_count": 2, "an": {"_count": 1}, "a": {"_count": 1}}, "second": {"_count": 1, "search": {"_count": 1}}}, "educators": {"_count": 1, "and": {"_count": 1, "make": {"_count": 1}}}, "evaluation": {"_count": 1, "said": {"_count": 1, "Mr": {"_count": 1}}}, "41": {"_count": 1, "speaking": {"_count": 1, "from": {"_count": 1}}}, "Wiltshire": {"_count": 1, "mansion": {"_count": 1, "last": {"_count": 1}}}, "mansion": {"_count": 1, "last": {"_count": 1, "night": {"_count": 1}}}, "\u2018Many": {"_count": 1, "of": {"_count": 1, "us": {"_count": 1}}}, "Among": {"_count": 3, "those": {"_count": 1, "\u2018eccentric": {"_count": 1}}, "Us": {"_count": 1, "": {"_count": 1}}, "Scrimgeours": {"_count": 1, "entourage": {"_count": 1}}}, "\u2018eccentric": {"_count": 1, "decisions": {"_count": 1, "are": {"_count": 1}}}, "hiring": {"_count": 1, "of": {"_count": 1, "werewolf": {"_count": 1}}}, "delusional": {"_count": 2, "exAuror": {"_count": 1, "\u2018MadEye": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018MadEye": {"_count": 2, "Moody": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "abound": {"_count": 1, "of": {"_count": 1, "course": {"_count": 1}}}, "prestigious": {"_count": 1, "school": {"_count": 1, "of": {"_count": 1}}}, "repose": {"_count": 1, "confidence": {"_count": 1, "said": {"_count": 1}}}, "elders": {"_count": 1, "Gris": {"_count": 1, "elda": {"_count": 1}}}, "Gris": {"_count": 1, "elda": {"_count": 1, "M": {"_count": 1}}}, "elda": {"_count": 1, "M": {"_count": 1, "archbanks": {"_count": 1}}}, "archbanks": {"_count": 1, "and": {"_count": 1, "Tiberius": {"_count": 1}}}, "Tiberius": {"_count": 3, "Ogden": {"_count": 2, "have": {"_count": 1}, "that": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}}, "Ogden": {"_count": 64, "have": {"_count": 1, "resigned": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 12, "?": {"_count": 3}, ".": {"_count": 9}}, "he": {"_count": 1, "was": {"_count": 1}}, "had": {"_count": 3, "set": {"_count": 1}, "broken": {"_count": 1}, "lifted": {"_count": 1}}, "said": {"_count": 1, "LITTLE": {"_count": 1}}, "who": {"_count": 4, "had": {"_count": 1}, "leapt": {"_count": 1}, "was": {"_count": 1}, "bounced": {"_count": 1}}, "moved": {"_count": 1, "forward": {"_count": 1}}, "for": {"_count": 1, "backing": {"_count": 1}}, "nervously": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 2, "being": {"_count": 1}, "on": {"_count": 1}}, "knife": {"_count": 1, "in": {"_count": 1}}, "began": {"_count": 2, "but": {"_count": 1}, "again": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "angrily": {"_count": 1, "dabbing": {"_count": 1}}, "clambering": {"_count": 1, "back": {"_count": 1}}, "pointed": {"_count": 1, "his": {"_count": 1}}, "could": {"_count": 1, "hear": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "coldly": {"_count": 1, "and": {"_count": 1}}, "rise": {"_count": 1, "": {"_count": 1}}, "tartly": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 1, "inquiringly": {"_count": 1}}, "to": {"_count": 1, "get": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "alarm": {"_count": 1}}, "but": {"_count": 1, "seemed": {"_count": 1}}, "Merope": {"_count": 1, "picked": {"_count": 1}}, "sternly": {"_count": 1, "": {"_count": 1}}, "now": {"_count": 1, "with": {"_count": 1}}, "looking": {"_count": 1, "wary": {"_count": 1}}, "the": {"_count": 1, "ugly": {"_count": 1}}, "blinking": {"_count": 1, "as": {"_count": 1}}, "by": {"_count": 1, "a": {"_count": 1}}, "shaking": {"_count": 1, "a": {"_count": 1}}, "hastily": {"_count": 1, "": {"_count": 1}}, "doggedly": {"_count": 1, "I": {"_count": 1}}, "firmly": {"_count": 1, "": {"_count": 1}}, "broke": {"_count": 1, "off": {"_count": 1}}, "yelled": {"_count": 1, "No": {"_count": 1}}, "raised": {"_count": 1, "his": {"_count": 1}}, "brandishing": {"_count": 1, "his": {"_count": 1}}, "ran": {"_count": 1, "for": {"_count": 1}}, "hurtled": {"_count": 1, "up": {"_count": 1}}, "Apparated": {"_count": 1, "back": {"_count": 1}}, "received": {"_count": 1, "six": {"_count": 1}}}, "outpost": {"_count": 1, "of": {"_count": 1, "Cornelius": {"_count": 1}}}, "Marchbanks": {"_count": 17, "": {"_count": 2, ".": {"_count": 2}}, "alleged": {"_count": 1, "links": {"_count": 1}}, "weve": {"_count": 1, "had": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "not": {"_count": 1, "if": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Step": {"_count": 1}}, "would": {"_count": 1, "shortly": {"_count": 1}}, "gave": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "Tofty": {"_count": 1}}, "came": {"_count": 1, "walking": {"_count": 1}}, "moved": {"_count": 1, "on": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "alleged": {"_count": 2, "links": {"_count": 1, "to": {"_count": 1}}, "sightings": {"_count": 1, "of": {"_count": 1}}}, "subversive": {"_count": 1, "goblin": {"_count": 1, "groups": {"_count": 1}}}, "17": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "hang": {"_count": 1}}}, "\u2018Educational": {"_count": 2, "Decree": {"_count": 2, "and": {"_count": 1}, "Number": {"_count": 1}}}, "inspected": {"_count": 3, "said": {"_count": 1, "Ron": {"_count": 1}}, "lesson": {"_count": 1, "yet": {"_count": 1}}, "Binns": {"_count": 1, "yet": {"_count": 1}}}, "inspecting": {"_count": 3, "Binnss": {"_count": 1, "class": {"_count": 1}}, "their": {"_count": 1, "History": {"_count": 1}}, "your": {"_count": 1, "lesson": {"_count": 1}}}, "dunces": {"_count": 1, "who": {"_count": 1, "get": {"_count": 1}}}, "Ds": {"_count": 7, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 1}, "!": {"_count": 1}}, "in": {"_count": 1, "Potions": {"_count": 1}}, "stood": {"_count": 1, "for": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "which": {"_count": 1, "had": {"_count": 1}}}, "grade": {"_count": 8, "he": {"_count": 1, "had": {"_count": 1}}, "not": {"_count": 1, "if": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "I": {"_count": 1, "see": {"_count": 1}}, "but": {"_count": 2, "that": {"_count": 1}, "four": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "security": {"_count": 1, "status": {"_count": 1}}}, "Strengthening": {"_count": 4, "Solution": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "Solutions": {"_count": 2, "today": {"_count": 1}, "": {"_count": 1}}}, "defiance": {"_count": 6, "and": {"_count": 2, "relief": {"_count": 1}, "shame": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "inside": {"_count": 1, "him": {"_count": 1}}}, "noncommittal": {"_count": 3, "noise": {"_count": 1, "in": {"_count": 1}}, "jerk": {"_count": 1, "of": {"_count": 1}}, "grunt": {"_count": 1, "": {"_count": 1}}}, "baseline": {"_count": 1, "arent": {"_count": 1, "they": {"_count": 1}}}, "Boor": {"_count": 1, "yeah": {"_count": 1, "said": {"_count": 1}}}, "\u2018Dreadful": {"_count": 2, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "\u2018Outstanding": {"_count": 7, "she": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 4, "all": {"_count": 1}, "their": {"_count": 1}, "my": {"_count": 2}}, "O": {"_count": 2, "": {"_count": 2}}}, "\u2018Exceeds": {"_count": 8, "Expectations": {"_count": 8, "": {"_count": 2}, "grade": {"_count": 1}, "or": {"_count": 1}, "for": {"_count": 1}, "at": {"_count": 2}, "in": {"_count": 1}}}, "Expectations": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "grade": {"_count": 1, "I": {"_count": 1}}, "or": {"_count": 1, "higher": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "E": {"_count": 1, "Dreadful": {"_count": 1}}, "at": {"_count": 2, "Defense": {"_count": 1}, "O": {"_count": 1}}, "in": {"_count": 1, "Charms": {"_count": 1}}}, "exceeded": {"_count": 2, "expectations": {"_count": 2, "just": {"_count": 1}, "at": {"_count": 1}}}, "expectations": {"_count": 3, "just": {"_count": 1, "by": {"_count": 1}}, "at": {"_count": 1, "Potions": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "dunking": {"_count": 1, "an": {"_count": 1, "entire": {"_count": 1}}}, "transferring": {"_count": 2, "it": {"_count": 1, "to": {"_count": 1}}, "power": {"_count": 1, "to": {"_count": 1}}}, "\u2018Poor": {"_count": 1, "Ron": {"_count": 1, "raised": {"_count": 1}}}, "Ts": {"_count": 1, "in": {"_count": 1, "all": {"_count": 1}}}, "Whove": {"_count": 2, "you": {"_count": 2, "got": {"_count": 1}, "been": {"_count": 1}}}, "Angelinall": {"_count": 1, "do": {"_count": 1, "her": {"_count": 1}}}, "cheerily": {"_count": 3, "fell": {"_count": 1, "silent": {"_count": 1}}, "Hermione": {"_count": 1, "strolled": {"_count": 1}}, "as": {"_count": 1, "were": {"_count": 1}}}, "Oracles": {"_count": 1, "look": {"_count": 1, "round": {"_count": 1}}}, "prophetic": {"_count": 1, "dreams": {"_count": 1, "today": {"_count": 1}}}, "mystic": {"_count": 2, "tones": {"_count": 1, "though": {"_count": 1}}, "voice": {"_count": 1, "but": {"_count": 1}}}, "Divide": {"_count": 1, "into": {"_count": 1, "pairs": {"_count": 1}}}, "covertly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}}, "protested": {"_count": 5, "its": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "hurrying": {"_count": 1}}, "Ron": {"_count": 1, "when": {"_count": 1}}, "raising": {"_count": 1, "his": {"_count": 1}}}, "\u2018drowning": {"_count": 1, "or": {"_count": 1, "\u2018cauldron": {"_count": 1}}}, "\u2018cauldron": {"_count": 1, "or": {"_count": 1, "\u2018Snape": {"_count": 1}}}, "\u2018Snape": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "greatgreatgranddaughter": {"_count": 2, "of": {"_count": 2, "the": {"_count": 1}, "a": {"_count": 1}}}, "stiffened": {"_count": 5, "as": {"_count": 1, "though": {"_count": 1}}, "looking": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 1, "glanced": {"_count": 1}}, "others": {"_count": 1, "fidgeted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "ethereal": {"_count": 2, "voice": {"_count": 1, "though": {"_count": 1}}, "mystic": {"_count": 1, "voice": {"_count": 1}}}, "interpreted": {"_count": 3, "Harrys": {"_count": 1, "dreams": {"_count": 1}}, "this": {"_count": 1, "as": {"_count": 1}}, "the": {"_count": 1, "prophecy": {"_count": 1}}}, "smilingly": {"_count": 1, "and": {"_count": 1, "those": {"_count": 1}}}, "commence": {"_count": 2, "chapter": {"_count": 1, "two": {"_count": 1}}, "their": {"_count": 1, "search": {"_count": 1}}}, "\u2018Common": {"_count": 1, "Defensive": {"_count": 1, "Theories": {"_count": 1}}}, "Theories": {"_count": 1, "and": {"_count": 1, "Their": {"_count": 1}}}, "Derivation": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "chapters": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "nine": {"_count": 1, "to": {"_count": 1}}}, "strategy": {"_count": 6, "for": {"_count": 1, "just": {"_count": 1}}, "meant": {"_count": 1, "that": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 1, "might": {"_count": 1}}, "of": {"_count": 1, "remaining": {"_count": 1}}}, "eventuality": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "poise": {"_count": 1, "almost": {"_count": 1, "instantly": {"_count": 1}}}, "counterjinxes": {"_count": 4, "in": {"_count": 1, "chapter": {"_count": 1}}, "are": {"_count": 1, "improperly": {"_count": 1}}, "and": {"_count": 2, "hexes": {"_count": 1}, "defensive": {"_count": 1}}}, "improperly": {"_count": 1, "named": {"_count": 1, "said": {"_count": 1}}}, "\u2018counterjinx": {"_count": 1, "is": {"_count": 1, "just": {"_count": 1}}}, "acceptable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "jauntiness": {"_count": 1, "she": {"_count": 1, "had": {"_count": 1}}}, "disrupting": {"_count": 2, "my": {"_count": 1, "class": {"_count": 1}}, "leisure": {"_count": 1, "time": {"_count": 1}}}, "interruptions": {"_count": 2, "said": {"_count": 1, "Professor": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "opinions": {"_count": 3, "on": {"_count": 1, "matters": {"_count": 1}}, "could": {"_count": 1, "find": {"_count": 1}}, "when": {"_count": 1, "a": {"_count": 1}}}, "ageappropriate": {"_count": 1, "subjects": {"_count": 1, "would": {"_count": 1}}}, "silences": {"_count": 3, "Harry": {"_count": 1, "had": {"_count": 1}}, "rather": {"_count": 1, "dour": {"_count": 1}}, "the": {"_count": 1, "next": {"_count": 1}}}, "sleekly": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "ahead": {"_count": 1, "filling": {"_count": 1}}}, "squareframed": {"_count": 1, "eyes": {"_count": 1, "": {"_count": 1}}}, "confine": {"_count": 1, "your": {"_count": 1, "shouting": {"_count": 1}}}, "Captaincy": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "sliced": {"_count": 5, "open": {"_count": 1, "every": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "itself": {"_count": 1, "and": {"_count": 1}}, "away": {"_count": 1, "behind": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}}, "gesticulated": {"_count": 1, "forcefully": {"_count": 1, "from": {"_count": 1}}}, "indication": {"_count": 3, "that": {"_count": 2, "she": {"_count": 1}, "Hermione": {"_count": 1}}, "of": {"_count": 1, "what": {"_count": 1}}}, "employing": {"_count": 2, "the": {"_count": 1, "same": {"_count": 1}}, "Occlumency": {"_count": 1, "against": {"_count": 1}}}, "inspec": {"_count": 1, "Obviously": {"_count": 1, "I": {"_count": 1}}}, "vanishment": {"_count": 1, "of": {"_count": 1, "mice": {"_count": 1}}}, "supremely": {"_count": 1, "unconcerned": {"_count": 1, "Professor": {"_count": 1}}}, "complexity": {"_count": 3, "of": {"_count": 1, "the": {"_count": 1}}, "its": {"_count": 1, "impenetrability": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "invertebrate": {"_count": 1, "does": {"_count": 1, "not": {"_count": 1}}}, "mammal": {"_count": 1, "offers": {"_count": 1, "a": {"_count": 1}}}, "offers": {"_count": 4, "a": {"_count": 1, "much": {"_count": 1}}, "to": {"_count": 2, "barter": {"_count": 1}, "accompany": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "accomplish": {"_count": 1, "with": {"_count": 1, "your": {"_count": 1}}}, "captive": {"_count": 3, "bowtruckles": {"_count": 1, "were": {"_count": 1}}, "of": {"_count": 1, "Lord": {"_count": 1}}, "now": {"_count": 1, "as": {"_count": 1}}}, "Fraid": {"_count": 1, "I": {"_count": 1, "cant": {"_count": 1}}}, "Overall": {"_count": 2, "said": {"_count": 1, "Professor": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}}, "lengthy": {"_count": 4, "interrogation": {"_count": 1, "of": {"_count": 1}}, "breakfast": {"_count": 1, "had": {"_count": 1}}, "conversations": {"_count": 1, "could": {"_count": 1}}, "with": {"_count": 1, "Ron": {"_count": 1}}}, "management": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "incredulous": {"_count": 6, "Umbridge": {"_count": 1, "made": {"_count": 1}}, "look": {"_count": 1, "with": {"_count": 1}}, "delight": {"_count": 1, "spread": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "laugh": {"_count": 1, "": {"_count": 1}}, "faces": {"_count": 1, "": {"_count": 1}}}, "porlocks": {"_count": 2, "and": {"_count": 1, "kneazles": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}}, "kneazles": {"_count": 1, "make": {"_count": 1, "sure": {"_count": 1}}}, "crups": {"_count": 1, "and": {"_count": 1, "knarls": {"_count": 1}}}, "knarls": {"_count": 4, "you": {"_count": 1, "know": {"_count": 1}}, "and": {"_count": 1, "hedgehogs": {"_count": 1}}, "than": {"_count": 1, "chimaeras": {"_count": 1}}, "highly": {"_count": 1, "suspicious": {"_count": 1}}}, "Jolly": {"_count": 2, "good": {"_count": 2, "said": {"_count": 1}, "jolly": {"_count": 1}}}, "ie": {"_count": 3, "ie": {"_count": 2, "ie": {"_count": 1}, "It": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}}, "murtlap": {"_count": 7, "tentacles": {"_count": 2, "it": {"_count": 1}, "": {"_count": 1}}, "essence": {"_count": 4, "fell": {"_count": 1}, "": {"_count": 1}, "to": {"_count": 1}, "sorts": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "complains": {"_count": 1, "about": {"_count": 1, "the": {"_count": 1}}}, "retort": {"_count": 11, "but": {"_count": 1, "nothing": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "looking": {"_count": 1, "furious": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "scared": {"_count": 1, "that": {"_count": 1}}, "was": {"_count": 1, "lost": {"_count": 1}}, "that": {"_count": 1, "sprang": {"_count": 1}}, "you": {"_count": 1, "think": {"_count": 1}}, "ready": {"_count": 1, "for": {"_count": 1}}}, "Awful": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "old": {"_count": 1, "hypocrite": {"_count": 1}}}, "fervor": {"_count": 1, "that": {"_count": 1, "S": {"_count": 1}}}, "guttered": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "schemes": {"_count": 7, "like": {"_count": 1, "S": {"_count": 1}}, "it": {"_count": 1, "seems": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "might": {"_count": 1, "occur": {"_count": 1}}, "the": {"_count": 1, "Deathly": {"_count": 1}}, "for": {"_count": 1, "Muggle": {"_count": 1}}}, "consternation": {"_count": 2, "however": {"_count": 1, "Ron": {"_count": 1}}, "and": {"_count": 1, "disappointment": {"_count": 1}}}, "Actually": {"_count": 4, "I": {"_count": 2, "havent": {"_count": 1}, "dunno": {"_count": 1}}, "Ive": {"_count": 1, "been": {"_count": 1}}, "Harry": {"_count": 1, "I": {"_count": 1}}}, "Uh": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fluke": {"_count": 1, "if": {"_count": 1, "the": {"_count": 1}}}, "LAUGHING": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "likel": {"_count": 1, "You": {"_count": 1, "neither": {"_count": 1}}}, "memorizing": {"_count": 3, "a": {"_count": 2, "bunch": {"_count": 2}}, "as": {"_count": 1, "The": {"_count": 1}}}, "rreally": {"_count": 3, "like": {"_count": 1, "": {"_count": 1}}, "good": {"_count": 1, "teacher": {"_count": 1}}, "important": {"_count": 1, "": {"_count": 1}}}, "VVoldemort": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "oh": {"_count": 2, "dont": {"_count": 1}, "for": {"_count": 1}}}, "Reparo": {"_count": 8, "Harry": {"_count": 1, "muttered": {"_count": 1}}, "hissed": {"_count": 1, "Snape": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "There": {"_count": 1, "sat": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "HOGS": {"_count": 1, "HEAD": {"_count": 1, "Hermione": {"_count": 1}}}, "HEAD": {"_count": 2, "Hermione": {"_count": 1, "made": {"_count": 1}}, "OF": {"_count": 1, "THE": {"_count": 1}}}, "broached": {"_count": 1, "again": {"_count": 1, "on": {"_count": 1}}}, "blustery": {"_count": 3, "evening": {"_count": 1, "at": {"_count": 1}}, "overcast": {"_count": 1, "grounds": {"_count": 1}}, "April": {"_count": 1, "evening": {"_count": 1}}}, "Asiatic": {"_count": 2, "AntiVenoms": {"_count": 1, "because": {"_count": 1}}, "antivenoms": {"_count": 1, "interesting": {"_count": 1}}}, "AntiVenoms": {"_count": 1, "because": {"_count": 1, "he": {"_count": 1}}}, "encounters": {"_count": 2, "with": {"_count": 2, "Dark": {"_count": 1}, "dementors": {"_count": 1}}}, "subconsciously": {"_count": 1, "planning": {"_count": 1, "lessons": {"_count": 1}}}, "antivenoms": {"_count": 1, "interesting": {"_count": 1, "much": {"_count": 1}}}, "crick": {"_count": 1, "his": {"_count": 1, "neck": {"_count": 1}}}, "ho": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "mite": {"_count": 1, "anxious": {"_count": 1, "again": {"_count": 1}}}, "Octobers": {"_count": 1, "a": {"_count": 1, "Hogsmeade": {"_count": 1}}}, "Chomping": {"_count": 1, "Cabbage": {"_count": 1, "she": {"_count": 1}}}, "Cabbage": {"_count": 1, "she": {"_count": 1, "was": {"_count": 1}}}, "listens": {"_count": 1, "to": {"_count": 1, "Dumbledore": {"_count": 1}}}, "knit": {"_count": 2, "more": {"_count": 1, "elf": {"_count": 1}}, "groups": {"_count": 1, "moving": {"_count": 1}}}, "recounted": {"_count": 7, "the": {"_count": 3, "story": {"_count": 2}, "stories": {"_count": 1}}, "all": {"_count": 1, "that": {"_count": 1}}, "it": {"_count": 2, "felt": {"_count": 1}, "a": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}}, "cleanliness": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "goats": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "an": {"_count": 1, "such": {"_count": 1}}, "worse": {"_count": 1, "even": {"_count": 1}}}, "grime": {"_count": 4, "that": {"_count": 1, "very": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "moldy": {"_count": 1, "and": {"_count": 1}}, "coating": {"_count": 1, "Rons": {"_count": 1}}}, "accumulated": {"_count": 1, "filth": {"_count": 1, "of": {"_count": 1}}}, "accents": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "protrude": {"_count": 1, "slightly": {"_count": 1, "": {"_count": 1}}}, "triplechecked": {"_count": 1, "the": {"_count": 1, "school": {"_count": 1}}}, "barman": {"_count": 19, "sidled": {"_count": 1, "toward": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "had": {"_count": 1, "frozen": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "was": {"_count": 2, "listening": {"_count": 1}, "the": {"_count": 1}}, "who": {"_count": 1, "worked": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}, "easy": {"_count": 1, "enough": {"_count": 1}}, "standing": {"_count": 1, "with": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "down": {"_count": 1, "below": {"_count": 1}}, "entered": {"_count": 1, "the": {"_count": 1}}, "grunted": {"_count": 1, "": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "nodded": {"_count": 1, "and": {"_count": 1}}}, "barmans": {"_count": 3, "eyes": {"_count": 1, "traveled": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}, "face": {"_count": 1, "was": {"_count": 1}}}, "firewhisky": {"_count": 17, "You": {"_count": 1, "are": {"_count": 1}}, "down": {"_count": 1, "herself": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "in": {"_count": 1, "them": {"_count": 1}}, "and": {"_count": 2, "some": {"_count": 1}, "he": {"_count": 1}}, "seared": {"_count": 1, "Harrys": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "for": {"_count": 1, "something": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "then": {"_count": 1, "run": {"_count": 1}}, "others": {"_count": 1, "tottering": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "incoming": {"_count": 1, "rush": {"_count": 1, "of": {"_count": 1}}}, "girlfriends": {"_count": 2, "then": {"_count": 1, "on": {"_count": 1}}, "while": {"_count": 1, "everyone": {"_count": 1}}}, "Michael": {"_count": 26, "Corner": {"_count": 17, "and": {"_count": 2}, "": {"_count": 7}, "at": {"_count": 1}, "And": {"_count": 1}, "had": {"_count": 1}, "she": {"_count": 2}, "with": {"_count": 1}, "went": {"_count": 1}, "rolling": {"_count": 1}}, "what": {"_count": 1, "was": {"_count": 1}}, "she": {"_count": 1, "knew": {"_count": 1}}, "and": {"_count": 1, "Ginny": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "was": {"_count": 1, "either": {"_count": 1}}, "but": {"_count": 1, "said": {"_count": 1}}, "or": {"_count": 1, "Dean": {"_count": 1}}, "did": {"_count": 1, "so": {"_count": 1}}, "Terry": {"_count": 1, "and": {"_count": 1}}}, "Corner": {"_count": 17, "and": {"_count": 2, "Terry": {"_count": 1}, "his": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 4}, "?": {"_count": 3}}, "at": {"_count": 1, "once": {"_count": 1}}, "And": {"_count": 1, "talking": {"_count": 1}}, "had": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 2, "was": {"_count": 1}, "said": {"_count": 1}}, "with": {"_count": 1, "great": {"_count": 1}}, "went": {"_count": 1, "and": {"_count": 1}}, "rolling": {"_count": 1, "his": {"_count": 1}}}, "Cough": {"_count": 2, "up": {"_count": 2, "everyone": {"_count": 1}, "": {"_count": 1}}}, "beers": {"_count": 1, "from": {"_count": 1, "Fred": {"_count": 1}}}, "reddishblonde": {"_count": 1, "hair": {"_count": 1, "did": {"_count": 1}}}, "mistrustful": {"_count": 1, "look": {"_count": 1, "that": {"_count": 1}}}, "predictable": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "why": {"_count": 1}}}, "rudely": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "interrupted": {"_count": 1, "by": {"_count": 1}}}, "Zacharias": {"_count": 35, "Smith": {"_count": 23, "said": {"_count": 2}, "though": {"_count": 2}, "": {"_count": 3}, "rolling": {"_count": 1}, "every": {"_count": 1}, "glared": {"_count": 1}, "in": {"_count": 1}, "superciliously": {"_count": 1}, "had": {"_count": 1}, "beats": {"_count": 1}, "zoomed": {"_count": 1}, "a": {"_count": 1}, "through": {"_count": 1}, "but": {"_count": 1}, "who": {"_count": 3}, "was": {"_count": 1}, "bowling": {"_count": 1}}, "straight": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 1, "dismissively": {"_count": 1}}, "Smiths": {"_count": 1, "aggressive": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "flushed": {"_count": 1, "": {"_count": 1}}, "folded": {"_count": 1, "his": {"_count": 1}}, "slowly": {"_count": 1, "not": {"_count": 1}}, "had": {"_count": 1, "signed": {"_count": 1}}, "blokes": {"_count": 1, "a": {"_count": 1}}, "wondering": {"_count": 1, "loudly": {"_count": 1}}, "loftily": {"_count": 1, "theyve": {"_count": 1}}, "was": {"_count": 1, "feebly": {"_count": 1}}}, "Smith": {"_count": 40, "said": {"_count": 2, "the": {"_count": 1}, "Ginny": {"_count": 1}}, "though": {"_count": 2, "he": {"_count": 2}}, "": {"_count": 7, ".": {"_count": 5}, "!": {"_count": 1}, "?": {"_count": 1}}, "just": {"_count": 1, "discernible": {"_count": 1}}, "rolling": {"_count": 1, "his": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}, "and": {"_count": 1, "taking": {"_count": 1}}, "glared": {"_count": 1, "at": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "superciliously": {"_count": 1, "having": {"_count": 1}}, "strode": {"_count": 1, "away": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "beats": {"_count": 1, "us": {"_count": 1}}, "zoomed": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 1, "Hufflepuff": {"_count": 1}}, "he": {"_count": 1, "is": {"_count": 1}}, "through": {"_count": 1, "his": {"_count": 1}}, "really": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 3, "right": {"_count": 1}, "being": {"_count": 1}, "escorted": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "who": {"_count": 3, "played": {"_count": 1}, "had": {"_count": 2}}, "of": {"_count": 1, "Hufflepuff": {"_count": 1}}, "looked": {"_count": 1, "a": {"_count": 1}}, "died": {"_count": 1, "two": {"_count": 1}}, "from": {"_count": 1, "whom": {"_count": 1}}, "bowling": {"_count": 1, "over": {"_count": 1}}}, "intervening": {"_count": 6, "swiftly": {"_count": 1, "thats": {"_count": 1}}, "before": {"_count": 1, "Ron": {"_count": 1}}, "time": {"_count": 1, "": {"_count": 1}}, "school": {"_count": 1, "years": {"_count": 1}}, "years": {"_count": 1, "": {"_count": 1}}, "space": {"_count": 1, "again": {"_count": 1}}}, "Smiths": {"_count": 3, "aggressive": {"_count": 1, "face": {"_count": 1}}, "shoulder": {"_count": 1, "blades": {"_count": 1}}, "commentary": {"_count": 1, "or": {"_count": 1}}}, "Sorcerous": {"_count": 1, "Stone": {"_count": 1, "Sorcerers": {"_count": 1}}}, "Abbotts": {"_count": 1, "eyes": {"_count": 1, "were": {"_count": 1}}}, "acromantulas": {"_count": 3, "and": {"_count": 1, "things": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "They": {"_count": 1, "had": {"_count": 1}}}, "praised": {"_count": 1, "him": {"_count": 1, "made": {"_count": 1}}}, "churlish": {"_count": 1, "to": {"_count": 1, "disagree": {"_count": 1}}}, "lethallooking": {"_count": 1, "metal": {"_count": 1, "instrument": {"_count": 1}}}, "VVoldemorts": {"_count": 2, "Death": {"_count": 1, "Eaters": {"_count": 1}}, "Harry": {"_count": 1, "weve": {"_count": 1}}}, "foisted": {"_count": 1, "such": {"_count": 1, "a": {"_count": 1}}}, "denial": {"_count": 2, "about": {"_count": 1, "the": {"_count": 1}}, "left": {"_count": 1, "him": {"_count": 1}}}, "actively": {"_count": 1, "prevent": {"_count": 1, "us": {"_count": 1}}}, "mobilize": {"_count": 1, "us": {"_count": 1, "against": {"_count": 1}}}, "heliopaths": {"_count": 2, "said": {"_count": 1, "Luna": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "gallop": {"_count": 2, "across": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "narrowminded": {"_count": 1, "you": {"_count": 1, "need": {"_count": 1}}}, "accommodating": {"_count": 1, "this": {"_count": 1, "time": {"_count": 1}}}, "rebellious": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "purchase": {"_count": 2, "well": {"_count": 1, "be": {"_count": 1}}, "a": {"_count": 1, "Gregorovitch": {"_count": 1}}}, "blokes": {"_count": 3, "a": {"_count": 1, "wart": {"_count": 1}}, "and": {"_count": 1, "Smith": {"_count": 1}}, "called": {"_count": 1, "Crabbe": {"_count": 1}}}, "wart": {"_count": 5, "said": {"_count": 2, "Ron": {"_count": 2}}, "I": {"_count": 1, "have": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "plasters": {"_count": 1, "": {"_count": 1}}}, "discernible": {"_count": 3, "in": {"_count": 1, "the": {"_count": 1}}, "only": {"_count": 1, "when": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Scrivenshafts": {"_count": 3, "Quill": {"_count": 1, "Shop": {"_count": 1}}, "cold": {"_count": 1, "heavy": {"_count": 1}}, "but": {"_count": 1, "at": {"_count": 1}}}, "pheasantfeather": {"_count": 1, "quills": {"_count": 1, "in": {"_count": 1}}}, "pityingly": {"_count": 1, "and": {"_count": 1, "shook": {"_count": 1}}}, "chunter": {"_count": 1, "under": {"_count": 1, "his": {"_count": 1}}}, "imprecations": {"_count": 1, "about": {"_count": 1, "Michael": {"_count": 1}}}, "DECREE": {"_count": 1, "NUMBER": {"_count": 1, "TWENTYFOUR": {"_count": 1}}}, "TWENTYFOUR": {"_count": 1, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "lounged": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "producing": {"_count": 8, "more": {"_count": 1, "hats": {"_count": 1}}, "hotheadedness": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "a": {"_count": 2, "Patronus": {"_count": 1}, "bunch": {"_count": 1}}, "it": {"_count": 1, "when": {"_count": 1}}, "the": {"_count": 1, "fountain": {"_count": 1}}, "and": {"_count": 1, "which": {"_count": 1}}}, "praising": {"_count": 1, "his": {"_count": 1, "performance": {"_count": 1}}}, "buoyed": {"_count": 1, "him": {"_count": 1, "up": {"_count": 1}}}, "Sloth": {"_count": 2, "Grip": {"_count": 2, "Roll": {"_count": 2}}}, "Grip": {"_count": 2, "Roll": {"_count": 2, "during": {"_count": 1}, "to": {"_count": 1}}}, "Roll": {"_count": 2, "during": {"_count": 1, "that": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}}, "affixed": {"_count": 2, "to": {"_count": 2, "the": {"_count": 2}}}, "reminders": {"_count": 3, "of": {"_count": 2, "school": {"_count": 1}, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "barter": {"_count": 1, "certain": {"_count": 1, "Chocolate": {"_count": 1}}}, "lostandfound": {"_count": 1, "notices": {"_count": 1, "": {"_count": 1}}}, "Student": {"_count": 2, "Organizations": {"_count": 1, "Societies": {"_count": 1}}, "Organization": {"_count": 1, "Society": {"_count": 1}}}, "Organizations": {"_count": 1, "Societies": {"_count": 1, "Teams": {"_count": 1}}}, "Societies": {"_count": 1, "Teams": {"_count": 1, "Groups": {"_count": 1}}}, "Groups": {"_count": 1, "and": {"_count": 1, "Clubs": {"_count": 1}}}, "Clubs": {"_count": 1, "are": {"_count": 1, "henceforth": {"_count": 1}}}, "Organization": {"_count": 3, "Society": {"_count": 3, "Team": {"_count": 3}}}, "Group": {"_count": 4, "or": {"_count": 3, "Club": {"_count": 3}}, "": {"_count": 1, "?": {"_count": 1}}}, "Permission": {"_count": 2, "to": {"_count": 1, "reform": {"_count": 1}}, "of": {"_count": 1, "Regulus": {"_count": 1}}}, "reform": {"_count": 5, "may": {"_count": 1, "be": {"_count": 1}}, "the": {"_count": 2, "Gryffindor": {"_count": 1}, "Quidditch": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "Harry": {"_count": 1, "seemed": {"_count": 1}}}, "accordance": {"_count": 4, "with": {"_count": 4, "Educational": {"_count": 4}}}, "anxiouslooking": {"_count": 2, "second": {"_count": 1, "years": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "klaxonlike": {"_count": 1, "sound": {"_count": 1, "and": {"_count": 1}}}, "windmills": {"_count": 1, "then": {"_count": 1, "he": {"_count": 1}}}, "created": {"_count": 11, "slide": {"_count": 1, "coming": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "mask": {"_count": 1}}, "more": {"_count": 1, "than": {"_count": 1}}, "a": {"_count": 3, "total": {"_count": 1}, "barrier": {"_count": 1}, "perfect": {"_count": 1}}, "his": {"_count": 1, "worst": {"_count": 1}}, "to": {"_count": 1, "stop": {"_count": 1}}, "confusion": {"_count": 1, "uncertainty": {"_count": 1}}, "since": {"_count": 1, "his": {"_count": 1}}}, "blabbed": {"_count": 2, "to": {"_count": 1, "her": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "naive": {"_count": 2, "said": {"_count": 1, "Ron": {"_count": 1}}, "sometimes": {"_count": 1, "Harry": {"_count": 1}}}, "honorable": {"_count": 1, "and": {"_count": 1, "trustworthy": {"_count": 1}}}, "Midgens": {"_count": 1, "acne": {"_count": 1, "look": {"_count": 1}}}, "intensity": {"_count": 7, "about": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "Fred": {"_count": 1}}, "even": {"_count": 1, "since": {"_count": 1}}, "that": {"_count": 1, "some": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "of": {"_count": 2, "his": {"_count": 2}}}, "conferring": {"_count": 1, "on": {"_count": 1, "what": {"_count": 1}}}, "quizzically": {"_count": 1, "at": {"_count": 1, "Ron": {"_count": 1}}}, "spotty": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "youth": {"_count": 1, "he": {"_count": 1}}}, "lateri": {"_count": 1, "Ill": {"_count": 1, "tell": {"_count": 1}}}, "repercussions": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "doodled": {"_count": 1, "idly": {"_count": 1, "on": {"_count": 1}}}, "glares": {"_count": 1, "and": {"_count": 1, "nudges": {"_count": 1}}}, "nudges": {"_count": 1, "until": {"_count": 1, "a": {"_count": 1}}}, "snidely": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Injured": {"_count": 1, "owl": {"_count": 1, "did": {"_count": 1}}}, "Thestrals": {"_count": 4, "will": {"_count": 1, "sometimes": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "aren": {"_count": 1, "dangerous": {"_count": 1}}, "are": {"_count": 1, "nothing": {"_count": 1}}}, "thestrals": {"_count": 30, "well": {"_count": 1, "trained": {"_count": 1}}, "were": {"_count": 3, "he": {"_count": 1}, "picking": {"_count": 1}, "sliding": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Hem": {"_count": 1, "hem": {"_count": 1}}, "today": {"_count": 1, "Im": {"_count": 1}}, "as": {"_count": 1, "\u2018dangerous": {"_count": 1}}, "have": {"_count": 1, "jus": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "?": {"_count": 1}}, "Longbottom": {"_count": 1, "can": {"_count": 1}}, "are": {"_count": 1, "fine": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}, "watching": {"_count": 1, "the": {"_count": 1}}, "youre": {"_count": 1, "not": {"_count": 1}}, "with": {"_count": 1, "raw": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}, "standing": {"_count": 1, "around": {"_count": 1}}, "glossy": {"_count": 1, "black": {"_count": 1}}, "sides": {"_count": 1, "so": {"_count": 1}}, "head": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 1, "foraging": {"_count": 1}}, "and": {"_count": 2, "Hagrids": {"_count": 1}, "Buckbeak": {"_count": 1}}, "cant": {"_count": 1, "take": {"_count": 1}}}, "distances": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "Wilhelmina": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "communication": {"_count": 5, "in": {"_count": 3, "and": {"_count": 3}}, "the": {"_count": 1, "group": {"_count": 1}}, "I": {"_count": 1, "forgot": {"_count": 1}}}, "sheltered": {"_count": 6, "corner": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "pebbly": {"_count": 1}}, "she": {"_count": 1, "agreed": {"_count": 1}}, "clearing": {"_count": 1, "had": {"_count": 1}}}, "intercept": {"_count": 1, "Hedwig": {"_count": 1, "": {"_count": 1}}}, "\u2018Same": {"_count": 1, "time": {"_count": 1, "same": {"_count": 1}}}, "reseal": {"_count": 1, "the": {"_count": 1, "scroll": {"_count": 1}}}, "carted": {"_count": 2, "off": {"_count": 2, "to": {"_count": 2}}}, "exerting": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "Release": {"_count": 3, "Longbottom": {"_count": 1, "Potter": {"_count": 1}}, "me": {"_count": 2, "woman": {"_count": 1}, "I": {"_count": 1}}}, "distressing": {"_count": 2, "to": {"_count": 1, "Neville": {"_count": 1}}, "events": {"_count": 1, "of": {"_count": 1}}}, "matured": {"_count": 2, "well": {"_count": 1, "over": {"_count": 1}}, "mead": {"_count": 1, "crystalized": {"_count": 1}}}, "Salamander": {"_count": 1, "blood": {"_count": 1, "Harry": {"_count": 1}}}, "pomegranate": {"_count": 1, "juice": {"_count": 1, "": {"_count": 1}}}, "Thomass": {"_count": 1, "cauldron": {"_count": 1, "": {"_count": 1}}}, "syllabus": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "unfathomable": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "returned": {"_count": 1}}}, "consistently": {"_count": 1, "refused": {"_count": 1, "to": {"_count": 1}}}, "appoint": {"_count": 3, "you": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 2, "new": {"_count": 1}, "suitable": {"_count": 1}}}, "backgrounds": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "congealing": {"_count": 1, "foully": {"_count": 1, "and": {"_count": 1}}}, "foully": {"_count": 2, "and": {"_count": 1, "giving": {"_count": 1}}, "Snape": {"_count": 1, "treated": {"_count": 1}}}, "brims": {"_count": 1, "of": {"_count": 1, "hats": {"_count": 1}}}, "Hark": {"_count": 2, "whos": {"_count": 2, "talking": {"_count": 2}}}, "appalling": {"_count": 3, "teacher": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "damage": {"_count": 1, "you": {"_count": 1}}}, "employed": {"_count": 2, "doing": {"_count": 1, "Snapes": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "Insinuations": {"_count": 1, "have": {"_count": 1, "been": {"_count": 1}}}, "Unfounded": {"_count": 1, "accusations": {"_count": 1, "levelled": {"_count": 1}}}, "levelled": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "establishment": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "even": {"_count": 1, "within": {"_count": 1}}}, "Mundane": {"_count": 1, "to": {"_count": 1, "See": {"_count": 1}}}, "persecuted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "probation": {"_count": 10, "": {"_count": 5, ".": {"_count": 2}, "?": {"_count": 2}, "!": {"_count": 1}}, "already": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "felt": {"_count": 1}, "mumbled": {"_count": 1}}, "became": {"_count": 1, "common": {"_count": 1}}, "and": {"_count": 1, "sack": {"_count": 1}}}, "dares": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "shrieked": {"_count": 1, "Bellatrix": {"_count": 1}}}, "drearily": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "thirtyfour": {"_count": 1, "of": {"_count": 1, "Defensive": {"_count": 1}}}, "Case": {"_count": 1, "for": {"_count": 1, "NonOffensive": {"_count": 1}}}, "NonOffensive": {"_count": 1, "Responses": {"_count": 1, "to": {"_count": 1}}}, "Responses": {"_count": 1, "to": {"_count": 1, "Magical": {"_count": 1}}}, "Attack": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "relinquish": {"_count": 2, "that": {"_count": 1, "weapon": {"_count": 1}}, "it": {"_count": 1, "even": {"_count": 1}}}, "whooping": {"_count": 5, "crowd": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "voices": {"_count": 1, "": {"_count": 1}}, "celebrating": {"_count": 1, "": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}}, "assisting": {"_count": 1, "the": {"_count": 1, "demonstration": {"_count": 1}}}, "advance": {"_count": 3, "orders": {"_count": 1, "from": {"_count": 1}}, "us": {"_count": 1, "much": {"_count": 1}}, "publicity": {"_count": 1, "for": {"_count": 1}}}, "sniffs": {"_count": 1, "that": {"_count": 1, "Harry": {"_count": 1}}}, "technically": {"_count": 1, "doing": {"_count": 1, "anything": {"_count": 1}}}, "projectilevomit": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "disparagingly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 1, "Luna": {"_count": 1}}}, "takings": {"_count": 1, "even": {"_count": 1, "longer": {"_count": 1}}}, "ostentatiously": {"_count": 4, "so": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "showing": {"_count": 1, "no": {"_count": 1}}, "upon": {"_count": 1, "Bill": {"_count": 1}}}, "decree": {"_count": 5, "which": {"_count": 1, "means": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "banning": {"_count": 1, "all": {"_count": 1}}, "came": {"_count": 1, "into": {"_count": 1}}, "forbidding": {"_count": 1, "gatherings": {"_count": 1}}}, "tove": {"_count": 1, "seen": {"_count": 1, "him": {"_count": 1}}}, "messenger": {"_count": 3, "and": {"_count": 1, "make": {"_count": 1}}, "off": {"_count": 1, "ter": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "fiddled": {"_count": 2, "with": {"_count": 1, "a": {"_count": 1}}, "aimlessly": {"_count": 1, "with": {"_count": 1}}}, "organizing": {"_count": 3, "this": {"_count": 1, "group": {"_count": 1}}, "their": {"_count": 1, "things": {"_count": 1}}, "a": {"_count": 1, "wedding": {"_count": 1}}}, "twentyeight": {"_count": 2, "of": {"_count": 1, "us": {"_count": 1}}, "people": {"_count": 1, "can": {"_count": 1}}}, "Marquee": {"_count": 1, "Fair": {"_count": 1, "point": {"_count": 1}}}, "Caved": {"_count": 1, "in": {"_count": 1, "or": {"_count": 1}}}, "fingered": {"_count": 3, "hand": {"_count": 1, "covered": {"_count": 1}}, "and": {"_count": 1, "white": {"_count": 1}}, "the": {"_count": 1, "handle": {"_count": 1}}}, "ARMY": {"_count": 2, "Umbridge": {"_count": 1, "has": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "croaking": {"_count": 3, "bullfrogs": {"_count": 1, "and": {"_count": 1}}, "feebly": {"_count": 1, "on": {"_count": 1}}, "voice": {"_count": 1, "seemed": {"_count": 1}}}, "cawing": {"_count": 1, "ravens": {"_count": 1, "and": {"_count": 1}}}, "whens": {"_count": 2, "he": {"_count": 1, "ever": {"_count": 1}}, "practice": {"_count": 1, "": {"_count": 1}}}, "Silenciol": {"_count": 6, "The": {"_count": 2, "bullfrog": {"_count": 1}, "large": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "SILENCIO": {"_count": 1, "The": {"_count": 1}}, "He": {"_count": 1, "jabbed": {"_count": 1}}, "cried": {"_count": 1, "Hermione": {"_count": 1}}}, "Silencing": {"_count": 4, "Charm": {"_count": 2, "was": {"_count": 1}, "for": {"_count": 1}}, "Charms": {"_count": 2, "to": {"_count": 1}, "seemed": {"_count": 1}}}, "midcroak": {"_count": 1, "and": {"_count": 1, "glared": {"_count": 1}}}, "raven": {"_count": 4, "in": {"_count": 1, "front": {"_count": 1}}, "cawed": {"_count": 1, "more": {"_count": 1}}, "and": {"_count": 1, "replacing": {"_count": 1}}, "continued": {"_count": 1, "to": {"_count": 1}}}, "caw": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "SILENCIO": {"_count": 1, "The": {"_count": 1, "raven": {"_count": 1}}}, "cawed": {"_count": 1, "more": {"_count": 1, "loudly": {"_count": 1}}}, "jab": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ravens": {"_count": 1, "are": {"_count": 1, "harder": {"_count": 1}}}, "Silencio": {"_count": 1, "The": {"_count": 1, "raven": {"_count": 1}}}, "overcrowded": {"_count": 3, "classroom": {"_count": 1, "on": {"_count": 1}}, "house": {"_count": 1, "": {"_count": 1}}, "table": {"_count": 1, "although": {"_count": 1}}}, "pellet": {"_count": 3, "at": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "Peeves": {"_count": 1}}, "whizzed": {"_count": 1, "past": {"_count": 1}}}, "appealed": {"_count": 3, "to": {"_count": 3, "Dumbledore": {"_count": 1}, "Ron": {"_count": 1}, "her": {"_count": 1}}}, "Siri": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "peashooter": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "\u2018living": {"_count": 1, "through": {"_count": 1, "us": {"_count": 1}}}, "thundery": {"_count": 1, "gray": {"_count": 1, "and": {"_count": 1}}}, "respite": {"_count": 1, "was": {"_count": 1, "only": {"_count": 1}}}, "Fever": {"_count": 1, "Fudge": {"_count": 1, "George": {"_count": 1}}}, "temperaturell": {"_count": 1, "go": {"_count": 1, "right": {"_count": 1}}}, "pusfilled": {"_count": 1, "boils": {"_count": 1, "too": {"_count": 1}}}, "deepening": {"_count": 2, "mud": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "Impervius": {"_count": 3, "Charm": {"_count": 1, "light": {"_count": 1}}, "to": {"_count": 1, "protect": {"_count": 1}}, "screeched": {"_count": 1, "Hermione": {"_count": 1}}}, "conceding": {"_count": 1, "defeat": {"_count": 1, "": {"_count": 1}}}, "toweled": {"_count": 1, "his": {"_count": 1, "hair": {"_count": 1}}}, "ruptured": {"_count": 1, "said": {"_count": 1, "Fred": {"_count": 1}}}, "prophecies": {"_count": 3, "said": {"_count": 1, "Harry": {"_count": 1}}, "held": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "peg": {"_count": 5, "and": {"_count": 1, "swinging": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "which": {"_count": 1}}, "swinging": {"_count": 1, "dangerously": {"_count": 1}}, "soared": {"_count": 1, "to": {"_count": 1}}}, "battles": {"_count": 1, "with": {"_count": 1, "Umbridge": {"_count": 1}}}, "scurvygrass": {"_count": 1, "lovage": {"_count": 1, "and": {"_count": 1}}}, "lovage": {"_count": 1, "and": {"_count": 1, "sneezewort": {"_count": 1}}}, "sneezewort": {"_count": 1, "and": {"_count": 1, "not": {"_count": 1}}}, "plantes": {"_count": 1, "are": {"_count": 1, "moste": {"_count": 1}}}, "moste": {"_count": 2, "efficacious": {"_count": 2, "in": {"_count": 2}}}, "efficacious": {"_count": 3, "in": {"_count": 2, "the": {"_count": 2}}, "if": {"_count": 1, "picked": {"_count": 1}}}, "inflaming": {"_count": 2, "of": {"_count": 2, "the": {"_count": 2}}}, "braine": {"_count": 2, "and": {"_count": 2, "are": {"_count": 2}}}, "Befuddlement": {"_count": 2, "Draughts": {"_count": 2, "where": {"_count": 1}, "": {"_count": 1}}}, "Draughts": {"_count": 2, "where": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "desirous": {"_count": 2, "of": {"_count": 1, "producing": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hotheadedness": {"_count": 2, "and": {"_count": 1, "recklessness": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "recklessness": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "dangerous": {"_count": 1}}}, "satisfactorily": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "linked": {"_count": 1, "the": {"_count": 1}}, "why": {"_count": 1, "he": {"_count": 1}}}, "Whozair": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "bobble": {"_count": 1, "sat": {"_count": 1, "Hedwig": {"_count": 1}}}, "pencillike": {"_count": 2, "nose": {"_count": 1, "brushed": {"_count": 1}}, "something": {"_count": 1, "his": {"_count": 1}}}, "indignant": {"_count": 5, "hoot": {"_count": 1, "and": {"_count": 1}}, "voice": {"_count": 2, "": {"_count": 1}, "are": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "innumerable": {"_count": 4, "socks": {"_count": 1, "so": {"_count": 1}}, "shawls": {"_count": 1, "and": {"_count": 1}}, "contributions": {"_count": 1, "to": {"_count": 1}}, "objects": {"_count": 1, "crashing": {"_count": 1}}}, "Especially": {"_count": 4, "Harry": {"_count": 1, "clenched": {"_count": 1}}, "another": {"_count": 1, "parthuman": {"_count": 1}}, "what": {"_count": 1, "happened": {"_count": 1}}, "as": {"_count": 1, "I": {"_count": 1}}}, "Requirement": {"_count": 60, "": {"_count": 17, "!": {"_count": 3}, ".": {"_count": 12}, "?": {"_count": 2}}, "and": {"_count": 5, "he": {"_count": 1}, "what": {"_count": 1}, "Harry": {"_count": 1}, "checked": {"_count": 1}, "this": {"_count": 1}}, "is": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "me": {"_count": 1}}, "while": {"_count": 1, "Professor": {"_count": 1}}, "working": {"_count": 1, "hard": {"_count": 1}}, "during": {"_count": 1, "their": {"_count": 1}}, "opened": {"_count": 1, "and": {"_count": 1}}, "I": {"_count": 1, "would": {"_count": 1}}, "on": {"_count": 2, "there": {"_count": 1}, "the": {"_count": 1}}, "so": {"_count": 2, "hes": {"_count": 1}, "me": {"_count": 1}}, "without": {"_count": 1, "knowing": {"_count": 1}}, "she": {"_count": 1, "jerked": {"_count": 1}}, "but": {"_count": 2, "Harry": {"_count": 1}, "his": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}, "he": {"_count": 1, "attempted": {"_count": 1}}, "to": {"_count": 1, "retrieve": {"_count": 1}}, "repeated": {"_count": 1, "Harry": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "hes": {"_count": 1, "going": {"_count": 1}}, "or": {"_count": 1, "had": {"_count": 1}}, "was": {"_count": 2, "indeed": {"_count": 1}, "waiting": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}, "with": {"_count": 1, "Ginny": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "vanished": {"_count": 2, "and": {"_count": 1}, "He": {"_count": 1}}, "sweat": {"_count": 1, "pouring": {"_count": 1}}, "swam": {"_count": 1, "before": {"_count": 1}}, "might": {"_count": 1, "he": {"_count": 1}}, "grew": {"_count": 1, "louder": {"_count": 1}}, "the": {"_count": 1, "situation": {"_count": 1}}, "had": {"_count": 1, "vanished": {"_count": 1}}}, "seekers": {"_count": 1, "needs": {"_count": 1, "": {"_count": 1}}}, "elfsized": {"_count": 1, "bed": {"_count": 1, "to": {"_count": 1}}}, "Mostly": {"_count": 2, "people": {"_count": 1, "stumbles": {"_count": 1}}, "you": {"_count": 1, "just": {"_count": 1}}}, "stumbles": {"_count": 1, "across": {"_count": 1, "it": {"_count": 1}}}, "Anytime": {"_count": 1, "Harry": {"_count": 1, "Potter": {"_count": 1}}}, "raindrops": {"_count": 2, "hard": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "behind": {"_count": 1}}}, "hailstones": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "relocated": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "stormswept": {"_count": 1, "grounds": {"_count": 1, "to": {"_count": 1}}}, "Barnabas": {"_count": 6, "the": {"_count": 4, "Barmy": {"_count": 3}, "Barmys": {"_count": 1}}, "Cuffe": {"_count": 1, "editor": {"_count": 1}}, "Deverill": {"_count": 1, "whom": {"_count": 1}}}, "Barmy": {"_count": 3, "being": {"_count": 1, "clubbed": {"_count": 1}}, "but": {"_count": 1, "a": {"_count": 1}}, "teaching": {"_count": 1, "trolls": {"_count": 1}}}, "clubbed": {"_count": 2, "by": {"_count": 1, "those": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "mash": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Somewhat": {"_count": 1, "to": {"_count": 1, "Harrys": {"_count": 1}}}, "depicting": {"_count": 1, "Barnabas": {"_count": 1, "the": {"_count": 1}}}, "Barmys": {"_count": 1, "foolish": {"_count": 1, "attempt": {"_count": 1}}}, "clubbing": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "mansize": {"_count": 1, "vase": {"_count": 1, "on": {"_count": 1}}}, "spacious": {"_count": 2, "room": {"_count": 1, "lit": {"_count": 1}}, "and": {"_count": 1, "must": {"_count": 1}}}, "bookcases": {"_count": 5, "and": {"_count": 2, "instead": {"_count": 1}, "in": {"_count": 1}}, "or": {"_count": 1, "standing": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "tinkled": {"_count": 1, "": {"_count": 1}}}, "Sensors": {"_count": 4, "and": {"_count": 1, "a": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}, "everywhere": {"_count": 1, "he": {"_count": 1}}, "detect": {"_count": 1, "jinxes": {"_count": 1}}}, "tomes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Compendium": {"_count": 1, "of": {"_count": 1, "Common": {"_count": 1}}}, "CounterActions": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Outsmarted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "SelfDefensive": {"_count": 1, "Spellwork": {"_count": 1, "": {"_count": 1}}}, "Spellwork": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Jinxes": {"_count": 4, "for": {"_count": 2, "the": {"_count": 2}}, "put": {"_count": 1, "on": {"_count": 1}}, "go": {"_count": 1, "in": {"_count": 1}}}, "satisfyingly": {"_count": 3, "loud": {"_count": 1, "way": {"_count": 1}}, "accurate": {"_count": 1, "": {"_count": 1}}, "impressed": {"_count": 1, "by": {"_count": 1}}}, "Basically": {"_count": 1, "they": {"_count": 1, "all": {"_count": 1}}}, "elect": {"_count": 1, "a": {"_count": 1, "leader": {"_count": 1}}}, "AntiUmbridge": {"_count": 1, "League": {"_count": 1, "": {"_count": 1}}}, "Morons": {"_count": 1, "Group": {"_count": 1, "": {"_count": 1}}}, "Army": {"_count": 15, "because": {"_count": 1, "thats": {"_count": 1}}, "Cornelius": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "used": {"_count": 1, "last": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "used": {"_count": 1}}, "Still": {"_count": 1, "Recruiting": {"_count": 1}}, "were": {"_count": 1, "nodding": {"_count": 1}}, "Fred": {"_count": 1, "explained": {"_count": 1}}, "and": {"_count": 1, "Harrys": {"_count": 1}}, "A": {"_count": 1, "teenagers": {"_count": 1}}}, "partnerless": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Expelliarmusl": {"_count": 6, "Wands": {"_count": 1, "flew": {"_count": 1}}, "said": {"_count": 1, "Neville": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "Mundungus": {"_count": 1, "s": {"_count": 1}}, "Hermione": {"_count": 1, "s": {"_count": 1}}, "Goyle": {"_count": 1, "s": {"_count": 1}}}, "shoddy": {"_count": 1, "spellwork": {"_count": 1, "going": {"_count": 1}}}, "succeeding": {"_count": 3, "in": {"_count": 3, "disarming": {"_count": 1}, "catching": {"_count": 1}, "squeezing": {"_count": 1}}}, "flourishing": {"_count": 5, "his": {"_count": 1, "wand": {"_count": 1}}, "blackmarket": {"_count": 1, "trade": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "potted": {"_count": 1, "plants": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}}, "erratic": {"_count": 1, "and": {"_count": 1, "mainly": {"_count": 1}}}, "patchy": {"_count": 5, "occasionally": {"_count": 1, "sending": {"_count": 1}}, "violet": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "it": {"_count": 1}}, "performance": {"_count": 1, "as": {"_count": 1}}, "every": {"_count": 1, "now": {"_count": 1}}}, "FinchFletchleys": {"_count": 1, "wand": {"_count": 1, "spinning": {"_count": 1}}}, "Expelliarmiousl": {"_count": 1, "I": {"_count": 1, "mean": {"_count": 1}}}, "Exnellimellius": {"_count": 1, "I": {"_count": 1, "oh": {"_count": 1}}}, "Marietta": {"_count": 35, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 4}}, "extinguished": {"_count": 1, "it": {"_count": 1}}, "looked": {"_count": 1, "at": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 2}}, "raised": {"_count": 1, "her": {"_count": 1}}, "gave": {"_count": 2, "a": {"_count": 1}, "another": {"_count": 1}}, "with": {"_count": 2, "what": {"_count": 1}, "her": {"_count": 1}}, "would": {"_count": 2, "not": {"_count": 1}, "tell": {"_count": 1}}, "shook": {"_count": 2, "her": {"_count": 2}}, "nodded": {"_count": 2, "": {"_count": 2}}, "pulled": {"_count": 1, "her": {"_count": 1}}, "waving": {"_count": 1, "her": {"_count": 1}}, "was": {"_count": 3, "standing": {"_count": 1}, "now": {"_count": 1}, "still": {"_count": 1}}, "his": {"_count": 1, "wand": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "reaching": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "Edgecombe": {"_count": 2, "which": {"_count": 1}, "who": {"_count": 1}}, "had": {"_count": 1, "blabbed": {"_count": 1}}}, "Boots": {"_count": 1, "wand": {"_count": 1, "went": {"_count": 1}}}, "supportive": {"_count": 2, "of": {"_count": 2, "any": {"_count": 1}, "the": {"_count": 1}}}, "disentangle": {"_count": 3, "himself": {"_count": 1, "from": {"_count": 1}}, "separate": {"_count": 1, "memories": {"_count": 1}}, "the": {"_count": 1, "tent": {"_count": 1}}}, "assassinated": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Umgubular": {"_count": 1, "Slashkilter": {"_count": 1, "Dont": {"_count": 1}}}, "Slashkilter": {"_count": 1, "Dont": {"_count": 1, "ask": {"_count": 1}}}, "overrun": {"_count": 1, "wed": {"_count": 1, "better": {"_count": 1}}}, "Sooner": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "you": {"_count": 1, "ask": {"_count": 1}}}, "seasons": {"_count": 1, "about": {"_count": 1, "to": {"_count": 1}}}, "LION": {"_count": 1, "AND": {"_count": 1, "THE": {"_count": 1}}}, "SERPENT": {"_count": 1, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "talisman": {"_count": 3, "inside": {"_count": 1, "his": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}, "against": {"_count": 1, "them": {"_count": 1}}}, "Slinkhards": {"_count": 1, "book": {"_count": 1, "during": {"_count": 1}}}, "dwelled": {"_count": 4, "instead": {"_count": 1, "on": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "deep": {"_count": 1, "in": {"_count": 1}}, "as": {"_count": 1, "Rons": {"_count": 1}}}, "unpredictable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "serial": {"_count": 1, "number": {"_count": 1, "referring": {"_count": 1}}}, "Protean": {"_count": 2, "Charm": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}}, "mimic": {"_count": 1, "his": {"_count": 1, "": {"_count": 1}}}, "engrave": {"_count": 1, "the": {"_count": 1, "date": {"_count": 1}}}, "confuse": {"_count": 1, "it": {"_count": 1, "with": {"_count": 1}}}, "forthcoming": {"_count": 4, "game": {"_count": 1, "": {"_count": 1}}, "Occlumency": {"_count": 1, "classes": {"_count": 1}}, "match": {"_count": 1, "against": {"_count": 1}}, "lessons": {"_count": 1, "a": {"_count": 1}}}, "sportsmanship": {"_count": 1, "were": {"_count": 1, "determined": {"_count": 1}}}, "abstained": {"_count": 2, "from": {"_count": 2, "giving": {"_count": 1}, "walking": {"_count": 1}}}, "accustomed": {"_count": 4, "to": {"_count": 4, "seeing": {"_count": 1}, "the": {"_count": 2}, "": {"_count": 1}}}, "partisan": {"_count": 1, "He": {"_count": 1, "had": {"_count": 1}}}, "HairThickening": {"_count": 1, "Charm": {"_count": 1, "on": {"_count": 1}}}, "Miles": {"_count": 1, "Bletchley": {"_count": 1, "hit": {"_count": 1}}}, "optimistic": {"_count": 3, "about": {"_count": 1, "Gryffindors": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "certain": {"_count": 1, "that": {"_count": 1}}}, "tendency": {"_count": 4, "to": {"_count": 2, "lose": {"_count": 1}, "trust": {"_count": 1}}, "for": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "favorably": {"_count": 3, "with": {"_count": 1, "one": {"_count": 1}}, "impressed": {"_count": 2, "by": {"_count": 2}}}, "Polands": {"_count": 1, "top": {"_count": 1, "Chaser": {"_count": 1}}}, "Ladislaw": {"_count": 1, "Zamojski": {"_count": 1, "": {"_count": 1}}}, "Zamojski": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "endured": {"_count": 8, "their": {"_count": 1, "snide": {"_count": 1}}, "a": {"_count": 1, "relentless": {"_count": 1}}, "several": {"_count": 1, "days": {"_count": 1}}, "the": {"_count": 1, "dementors": {"_count": 1}}, "much": {"_count": 1, "worse": {"_count": 1}}, "worse": {"_count": 1, "mutterings": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "next": {"_count": 1, "day": {"_count": 1}}}, "Warringtons": {"_count": 3, "sworn": {"_count": 1, "to": {"_count": 1}}, "aims": {"_count": 1, "so": {"_count": 1}}, "half": {"_count": 1, "nelson": {"_count": 1}}}, "frosts": {"_count": 1, "every": {"_count": 1, "morning": {"_count": 1}}}, "drafts": {"_count": 1, "that": {"_count": 1, "bit": {"_count": 1}}}, "greenandsilver": {"_count": 2, "scarves": {"_count": 1, "and": {"_count": 1}}, "blur": {"_count": 1, "lying": {"_count": 1}}}, "uproariously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rousing": {"_count": 3, "welcome": {"_count": 1, "at": {"_count": 1}}, "choruses": {"_count": 1, "of": {"_count": 1}}, "chorus": {"_count": 1, "of": {"_count": 1}}}, "sap": {"_count": 1, "the": {"_count": 1, "last": {"_count": 1}}}, "cereals": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "redandgold": {"_count": 2, "scarves": {"_count": 1, "gloves": {"_count": 1}}, "bird": {"_count": 1, "the": {"_count": 1}}}, "crownshaped": {"_count": 3, "badges": {"_count": 2, "as": {"_count": 1}, "": {"_count": 1}}, "badge": {"_count": 1, "on": {"_count": 1}}}, "KING": {"_count": 5, "With": {"_count": 1, "an": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "WEASLEY": {"_count": 1, "IS": {"_count": 1}}}, "frosty": {"_count": 2, "grass": {"_count": 2, "crunched": {"_count": 2}}}, "factors": {"_count": 2, "to": {"_count": 1, "Ron": {"_count": 1}}, "there": {"_count": 1, "might": {"_count": 1}}}, "backtofront": {"_count": 1, "for": {"_count": 1, "several": {"_count": 1}}}, "Montagues": {"_count": 4, "replaced": {"_count": 1, "them": {"_count": 1}}, "watch": {"_count": 1, "strap": {"_count": 1}}, "permanently": {"_count": 1, "injured": {"_count": 1}}, "open": {"_count": 1, "mouth": {"_count": 1}}}, "gorillas": {"_count": 1, "rather": {"_count": 1, "than": {"_count": 1}}}, "signposts": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "banked": {"_count": 1, "benches": {"_count": 1, "of": {"_count": 1}}}, "whistles": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "forearms": {"_count": 3, "like": {"_count": 1, "hairy": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "bore": {"_count": 1}}}, "umpire": {"_count": 1, "Madam": {"_count": 1, "Hooch": {"_count": 1}}}, "adds": {"_count": 1, "a": {"_count": 1, "bit": {"_count": 1}}}, "booing": {"_count": 2, "and": {"_count": 1, "singing": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "avoids": {"_count": 1, "a": {"_count": 1, "Bludger": {"_count": 1}}}, "loving": {"_count": 6, "this": {"_count": 1, "just": {"_count": 1}}, "caress": {"_count": 1, "in": {"_count": 1}}, "detail": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "possibly": {"_count": 1, "tearful": {"_count": 1}}, "smile": {"_count": 1, "": {"_count": 1}}}, "SHOOTS": {"_count": 1, "SHE": {"_count": 1, "aah": {"_count": 1}}}, "lone": {"_count": 5, "figure": {"_count": 1, "at": {"_count": 1}}, "voice": {"_count": 1, "of": {"_count": 1}}, "gargoyle": {"_count": 1, "stood": {"_count": 1}}, "mans": {"_count": 1, "sock": {"_count": 1}}, "clog": {"_count": 1, "the": {"_count": 1}}}, "promising": {"_count": 3, "new": {"_count": 1, "talent": {"_count": 1}}, "Gryffindor": {"_count": 1, "team": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}}, "central": {"_count": 1, "hoop": {"_count": 1, "": {"_count": 1}}}, "tennil": {"_count": 1, "to": {"_count": 1, "Slytherin": {"_count": 1}}}, "BORN": {"_count": 5, "IN": {"_count": 3, "A": {"_count": 3}}, "27": {"_count": 1, "MARCH": {"_count": 1}}, "30": {"_count": 1, "JANUARY": {"_count": 1}}}, "BIN": {"_count": 3, "HE": {"_count": 2, "ALWAYS": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "ALWAYS": {"_count": 2, "LETS": {"_count": 2, "THE": {"_count": 2}}}, "LETS": {"_count": 4, "THE": {"_count": 2, "QUAFFLE": {"_count": 2}}, "GO": {"_count": 2, "": {"_count": 2}}}, "tanking": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "MAKE": {"_count": 4, "SURE": {"_count": 2, "WE": {"_count": 2}}, "A": {"_count": 1, "BANG": {"_count": 1}}, "ANYONE": {"_count": 1, "SICK": {"_count": 1}}}, "SURE": {"_count": 2, "WE": {"_count": 2, "WIN": {"_count": 2}}}, "WIN": {"_count": 2, "WEASLEY": {"_count": 1, "IS": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}}, "sparing": {"_count": 2, "a": {"_count": 1, "thought": {"_count": 1}}, "the": {"_count": 1, "watch": {"_count": 1}}}, "Puceys": {"_count": 2, "off": {"_count": 1, "past": {"_count": 1}}, "dodged": {"_count": 1, "Alicia": {"_count": 1}}}, "CANNOT": {"_count": 1, "SAVE": {"_count": 1, "A": {"_count": 1}}}, "SAVE": {"_count": 1, "A": {"_count": 1, "THING": {"_count": 1}}}, "pugfaced": {"_count": 1, "Pansy": {"_count": 1, "Parkinson": {"_count": 1}}}, "SLYTHERINS": {"_count": 1, "ALL": {"_count": 1, "SING": {"_count": 1}}}, "SING": {"_count": 1, "WEASLEY": {"_count": 1, "IS": {"_count": 1}}}, "twentynil": {"_count": 1, "was": {"_count": 1, "nothing": {"_count": 1}}}, "amidst": {"_count": 4, "the": {"_count": 2, "Gryffindor": {"_count": 1}, "terrible": {"_count": 1}}, "a": {"_count": 1, "mass": {"_count": 1}}, "all": {"_count": 1, "this": {"_count": 1}}}, "scouring": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "bare": {"_count": 1}}}, "fruitlessly": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "mutely": {"_count": 1, "against": {"_count": 1}}, "as": {"_count": 1, "wasps": {"_count": 1}}}, "intervenes": {"_count": 1, "Johnson": {"_count": 1, "takes": {"_count": 1}}}, "skirted": {"_count": 2, "the": {"_count": 2, "foot": {"_count": 1}, "walls": {"_count": 1}}}, "scrabbled": {"_count": 2, "the": {"_count": 1, "back": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "compounded": {"_count": 1, "of": {"_count": 1, "catcalls": {"_count": 1}}}, "thug": {"_count": 1, "Crabbe": {"_count": 1, "said": {"_count": 1}}}, "Saved": {"_count": 4, "Weasleys": {"_count": 1, "neck": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}}, "verses": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "rhymes": {"_count": 1, "for": {"_count": 1, "fat": {"_count": 1}}}, "loser": {"_count": 3, "either": {"_count": 1, "for": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}}, "Spend": {"_count": 1, "holidays": {"_count": 1, "there": {"_count": 1}}}, "stink": {"_count": 1, "but": {"_count": 1, "I": {"_count": 1}}}, "hovel": {"_count": 4, "smells": {"_count": 1, "okay": {"_count": 1}}, "cleared": {"_count": 1, "away": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}, "performed": {"_count": 1, "the": {"_count": 1}}}, "stank": {"_count": 2, "like": {"_count": 1, "Potter": {"_count": 1}}, "of": {"_count": 1, "stale": {"_count": 1}}}, "pigsty": {"_count": 1, "reminds": {"_count": 1, "you": {"_count": 1}}}, "GEORGE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "1VO": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "IMPEDIMENTA": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "abandon": {"_count": 10, "the": {"_count": 3, "attempt": {"_count": 2}, "plan": {"_count": 1}}, "it": {"_count": 3, "": {"_count": 2}, "said": {"_count": 1}}, "his": {"_count": 1, "recital": {"_count": 1}}, "forever": {"_count": 1, "the": {"_count": 1}}, "Plan": {"_count": 1, "A": {"_count": 1}}, "your": {"_count": 1, "kid": {"_count": 1}}}, "Snitchs": {"_count": 2, "silver": {"_count": 1, "wings": {"_count": 1}}, "inscription": {"_count": 1, "": {"_count": 1}}}, "Provoked": {"_count": 1, "you": {"_count": 1, "": {"_count": 1}}}, "Newts": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "justified": {"_count": 2, "what": {"_count": 1, "you": {"_count": 1}}, "in": {"_count": 1, "saying": {"_count": 1}}}, "enhanced": {"_count": 1, "her": {"_count": 1, "resemblance": {"_count": 1}}}, "associate": {"_count": 4, "with": {"_count": 3, "imminent": {"_count": 1}, "dementors": {"_count": 1}, "Ravenclaw": {"_count": 1}}, "himself": {"_count": 1, "with": {"_count": 1}}}, "poisonously": {"_count": 1, "sweet": {"_count": 1, "voice": {"_count": 1}}}, "\u2018help": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "reciprocal": {"_count": 1, "smile": {"_count": 1, "that": {"_count": 1}}}, "counts": {"_count": 4, "as": {"_count": 1, "they": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "is": {"_count": 1, "producin": {"_count": 1}}}, "fussily": {"_count": 2, "before": {"_count": 1, "starting": {"_count": 1}}, "checking": {"_count": 1, "the": {"_count": 1}}}, "amendment": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "sanctions": {"_count": 2, "and": {"_count": 2, "removal": {"_count": 1}, "removals": {"_count": 1}}}, "pertaining": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "alter": {"_count": 1, "such": {"_count": 1, "punishments": {"_count": 1}}}, "removals": {"_count": 1, "of": {"_count": 1, "privileges": {"_count": 1}}}, "etc": {"_count": 6, "": {"_count": 6, ".": {"_count": 6}}}, "comprehend": {"_count": 3, "what": {"_count": 1, "she": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "infringement": {"_count": 1, "of": {"_count": 1, "my": {"_count": 1}}}, "unreasonable": {"_count": 4, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "exchange": {"_count": 1, "for": {"_count": 1}}, "and": {"_count": 1, "irascible": {"_count": 1}}}, "Banned": {"_count": 2, "said": {"_count": 1, "Angelina": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "banning": {"_count": 4, "Fred": {"_count": 1, "when": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "all": {"_count": 1, "student": {"_count": 1}}, "him": {"_count": 1, "from": {"_count": 1}}}, "Sove": {"_count": 1, "Fred": {"_count": 1, "and": {"_count": 1}}}, "Join": {"_count": 1, "the": {"_count": 1, "club": {"_count": 1}}}, "HAGRIDS": {"_count": 1, "TALE": {"_count": 1, "Harry": {"_count": 1}}}, "TALE": {"_count": 4, "Harry": {"_count": 3, "sprinted": {"_count": 1}, "woke": {"_count": 1}, "remained": {"_count": 1}}, "OF": {"_count": 1, "THE": {"_count": 1}}}, "dozy": {"_count": 1, "dog": {"_count": 1, "": {"_count": 1}}}, "nuthin": {"_count": 5, "its": {"_count": 1, "nuthin": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "said": {"_count": 2, "Hagrid": {"_count": 2}}}, "congealed": {"_count": 4, "blood": {"_count": 2, "and": {"_count": 1}, "on": {"_count": 1}}, "slightly": {"_count": 1, "did": {"_count": 1}}, "potions": {"_count": 1, "hats": {"_count": 1}}}, "puffy": {"_count": 14, "slit": {"_count": 1, "amid": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "blackened": {"_count": 1, "eyes": {"_count": 1}}, "red": {"_count": 2, "and": {"_count": 1}, "eyes": {"_count": 1}}, "eyed": {"_count": 1, "Death": {"_count": 1}}, "and": {"_count": 1, "red": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "eyes": {"_count": 1, "he": {"_count": 1}}, "eyelids": {"_count": 1, "Harry": {"_count": 1}}, "mask": {"_count": 1, "Harry": {"_count": 1}}}, "purpleandblack": {"_count": 1, "bruises": {"_count": 1, "": {"_count": 1}}}, "bruises": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "had": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}}, "haversack": {"_count": 3, "large": {"_count": 1, "enough": {"_count": 1}}, "against": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tellinyeh": {"_count": 1, "Im": {"_count": 1, "fine": {"_count": 1}}}, "dealin": {"_count": 1, "with": {"_count": 1, "it": {"_count": 1}}}, "greentinged": {"_count": 1, "steak": {"_count": 1, "slightly": {"_count": 1}}}, "posed": {"_count": 3, "ter": {"_count": 2, "look": {"_count": 1}, "use": {"_count": 1}}, "the": {"_count": 1, "same": {"_count": 1}}}, "Greenish": {"_count": 2, "blood": {"_count": 1, "trickled": {"_count": 1}}, "smoke": {"_count": 1, "billowed": {"_count": 1}}}, "stingin": {"_count": 1, "yeh": {"_count": 1, "know": {"_count": 1}}}, "Giants": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "like": {"_count": 1, "magic": {"_count": 1}}}, "bucketshaped": {"_count": 1, "mugs": {"_count": 1, "": {"_count": 1}}}, "complimentin": {"_count": 1, "yeh": {"_count": 1, "neither": {"_count": 1}}}, "Nosy": {"_count": 1, "somed": {"_count": 1, "call": {"_count": 1}}}, "somed": {"_count": 1, "call": {"_count": 1, "it": {"_count": 1}}}, "Interferin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Pretty": {"_count": 7, "big": {"_count": 1, "see": {"_count": 1}}, "girl": {"_count": 1, "is": {"_count": 1}}, "much": {"_count": 1, "said": {"_count": 1}}, "amusing": {"_count": 1, "yeah": {"_count": 1}}, "lucky": {"_count": 1, "the": {"_count": 1}}, "firm": {"_count": 1, "with": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}}, "Mountains": {"_count": 2, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "unhelpfully": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mountaineerin": {"_count": 1, "accidents": {"_count": 1, "aren": {"_count": 1}}}, "bruising": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "all": {"_count": 1, "around": {"_count": 1}}}, "splat": {"_count": 1, "onto": {"_count": 1, "the": {"_count": 1}}}, "Whadda": {"_count": 1, "yeh": {"_count": 1, "mean": {"_count": 1}}}, "followin": {"_count": 2, "me": {"_count": 1, "all": {"_count": 1}}, "mornin": {"_count": 1, "we": {"_count": 1}}}, "hygien": {"_count": 1, "Hermione": {"_count": 1, "began": {"_count": 1}}}, "fortifying": {"_count": 1, "gulp": {"_count": 1, "of": {"_count": 1}}}, "roughin": {"_count": 1, "it": {"_count": 1, "Olympe": {"_count": 1}}}, "welldressed": {"_count": 1, "woman": {"_count": 1, "an": {"_count": 1}}}, "clamberin": {"_count": 1, "over": {"_count": 1, "boulders": {"_count": 1}}}, "sleepin": {"_count": 3, "in": {"_count": 1, "caves": {"_count": 1}}, "spots": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "we": {"_count": 1}}}, "mos": {"_count": 1, "wizards": {"_count": 1, "aren": {"_count": 1}}}, "ares": {"_count": 1, "very": {"_count": 1, "difficult": {"_count": 1}}}, "unobscured": {"_count": 3, "eye": {"_count": 2, "as": {"_count": 1}, "rested": {"_count": 1}}, "by": {"_count": 1, "flying": {"_count": 1}}}, "pitying": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "expression": {"_count": 1, "on": {"_count": 1}}}, "cagily": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pretendin": {"_count": 1, "we": {"_count": 1, "was": {"_count": 1}}}, "headin": {"_count": 1, "fer": {"_count": 1, "where": {"_count": 1}}}, "Olympes": {"_count": 1, "school": {"_count": 1, "is": {"_count": 1}}}, "tailed": {"_count": 7, "by": {"_count": 1, "someone": {"_count": 1}}, "away": {"_count": 5, "": {"_count": 1}, "as": {"_count": 1}, "in": {"_count": 1}, "he": {"_count": 1}, "He": {"_count": 1}}, "Ministry": {"_count": 1, "workers": {"_count": 1}}}, "berk": {"_count": 2, "tailin": {"_count": 1, "us": {"_count": 1}}, "muttered": {"_count": 1, "Aberforth": {"_count": 1}}}, "tailin": {"_count": 1, "us": {"_count": 1, "the": {"_count": 1}}}, "DeeJohn": {"_count": 1, "Ooooh": {"_count": 1, "Dijon": {"_count": 1}}}, "Dijon": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Ran": {"_count": 2, "inter": {"_count": 1, "a": {"_count": 1}}, "wild": {"_count": 1, "": {"_count": 1}}}, "border": {"_count": 1, "an": {"_count": 1, "I": {"_count": 1}}}, "sligh": {"_count": 1, "disagreement": {"_count": 1, "with": {"_count": 1}}}, "Minsk": {"_count": 1, "but": {"_count": 1, "apart": {"_count": 1}}}, "couldnta": {"_count": 1, "bin": {"_count": 1, "smoother": {"_count": 1}}}, "trekkin": {"_count": 1, "up": {"_count": 1, "through": {"_count": 1}}}, "Partly": {"_count": 2, "cause": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 1, "change": {"_count": 1}}}, "drawin": {"_count": 1, "attention": {"_count": 1, "ter": {"_count": 1}}}, "baldly": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "The": {"_count": 1, "Prophet": {"_count": 1}}, "I": {"_count": 1, "havent": {"_count": 1}}, "the": {"_count": 1, "words": {"_count": 1}}, "coldly": {"_count": 1, "": {"_count": 1}}}, "nigh": {"_count": 2, "an": {"_count": 2, "there": {"_count": 1}, "through": {"_count": 1}}}, "ou": {"_count": 1, "underneath": {"_count": 1, "us": {"_count": 1}}}, "burnin": {"_count": 1, "below": {"_count": 1, "an": {"_count": 1}}}, "movin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "T3out": {"_count": 1, "twenty": {"_count": 1, "feet": {"_count": 1}}}, "tribes": {"_count": 2, "from": {"_count": 1, "all": {"_count": 1}}, "fight": {"_count": 1, "each": {"_count": 1}}}, "sneakin": {"_count": 3, "up": {"_count": 1, "on": {"_count": 1}}, "round": {"_count": 1, "the": {"_count": 1}}, "Squib": {"_count": 1, "": {"_count": 1}}}, "snorin": {"_count": 1, "was": {"_count": 1, "unbelievable": {"_count": 1}}}, "Caused": {"_count": 1, "an": {"_count": 1, "avalanche": {"_count": 1}}}, "avalanche": {"_count": 3, "near": {"_count": 1, "mornin": {"_count": 1}}, "of": {"_count": 2, "homework": {"_count": 1}, "fiery": {"_count": 1}}}, "Gurg": {"_count": 12, "gifts": {"_count": 1, "show": {"_count": 1}}, "means": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "an": {"_count": 2, "ignore": {"_count": 1}, "he": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}, "to": {"_count": 1, "speak": {"_count": 1}}, "Golgomath": {"_count": 1, "": {"_count": 1}}, "two": {"_count": 1, "days": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}}, "laziest": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Sittin": {"_count": 1, "there": {"_count": 1, "waitin": {"_count": 1}}}, "Karkus": {"_count": 10, "": {"_count": 2, ".": {"_count": 2}}, "was": {"_count": 2, "lyin": {"_count": 1}, "killed": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "knew": {"_count": 1, "enough": {"_count": 1}}, "overload": {"_count": 1, "em": {"_count": 1}}, "sittin": {"_count": 1, "up": {"_count": 1}}, "seemed": {"_count": 1, "ter": {"_count": 1}}, "s": {"_count": 1, "helmet": {"_count": 1}}}, "elephants": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "making": {"_count": 1, "the": {"_count": 1}}}, "Skin": {"_count": 1, "like": {"_count": 1, "rhino": {"_count": 1}}}, "lyin": {"_count": 7, "in": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "low": {"_count": 1, "up": {"_count": 1}}, "there": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "but": {"_count": 1}}}, "roarin": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "defnitely": {"_count": 1, "on": {"_count": 1, "some": {"_count": 1}}}, "Karkuss": {"_count": 3, "feet": {"_count": 2, "an": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "Food": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "is": {"_count": 1, "the": {"_count": 1}}}, "usin": {"_count": 1, "it": {"_count": 1, "against": {"_count": 1}}}, "Gubraithian": {"_count": 1, "fire": {"_count": 1, "": {"_count": 1}}}, "evermore": {"_count": 1, "which": {"_count": 1, "isn": {"_count": 1}}}, "respectful": {"_count": 3, "greetings": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "possible": {"_count": 1}}, "salute": {"_count": 1, "before": {"_count": 1}}}, "Didn": {"_count": 2, "speak": {"_count": 1, "English": {"_count": 1}}, "matter": {"_count": 1, "said": {"_count": 1}}}, "imperturbably": {"_count": 1, "Dumbledore": {"_count": 1, "had": {"_count": 1}}}, "lingo": {"_count": 1, "an": {"_count": 1, "they": {"_count": 1}}}, "translated": {"_count": 2, "fer": {"_count": 2, "us": {"_count": 1}, "the": {"_count": 1}}}, "cooler": {"_count": 6, "side": {"_count": 2, "to": {"_count": 2}}, "friends": {"_count": 1, "than": {"_count": 1}}, "than": {"_count": 2, "I": {"_count": 1}, "it": {"_count": 1}}, "and": {"_count": 1, "fresher": {"_count": 1}}}, "Altars": {"_count": 2, "Dumbledore": {"_count": 1, "asks": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "promises": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "overload": {"_count": 1, "em": {"_count": 1, "with": {"_count": 1}}}, "simplify": {"_count": 1, "things": {"_count": 1, "": {"_count": 1}}}, "goblinmade": {"_count": 9, "an": {"_count": 1, "indestructible": {"_count": 1}}, "armor": {"_count": 2, "said": {"_count": 1}, "possesses": {"_count": 1}}, "which": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 1, "": {"_count": 1}}, "swords": {"_count": 1, "and": {"_count": 1}}, "objects": {"_count": 3, "are": {"_count": 1}, "passing": {"_count": 2}}}, "indestructible": {"_count": 3, "yeh": {"_count": 1, "know": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "stuff": {"_count": 1, "Well": {"_count": 1}}}, "Listened": {"_count": 2, "mostly": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "Albus": {"_count": 1}}}, "Promised": {"_count": 1, "ter": {"_count": 1, "come": {"_count": 1}}}, "squabbles": {"_count": 1, "over": {"_count": 1, "food": {"_count": 1}}}, "seein": {"_count": 1, "as": {"_count": 1, "how": {"_count": 1}}}, "Golgomath": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "wouldn": {"_count": 1, "be": {"_count": 1}}, "no": {"_count": 1, "wonder": {"_count": 1}}, "as": {"_count": 1, "Gurg": {"_count": 1}}, "s": {"_count": 1, "way": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}}, "hadn": {"_count": 6, "bargained": {"_count": 1, "on": {"_count": 1}}, "gone": {"_count": 2, "all": {"_count": 1}, "ter": {"_count": 1}}, "bin": {"_count": 1, "there": {"_count": 1}}, "wanted": {"_count": 1, "Golgomath": {"_count": 1}}, "stepped": {"_count": 1, "in": {"_count": 1}}}, "wearin": {"_count": 1, "Karkus": {"_count": 1, "s": {"_count": 1}}}, "leerin": {"_count": 1, "at": {"_count": 1, "us": {"_count": 1}}}, "matchin": {"_count": 1, "teeth": {"_count": 1, "an": {"_count": 1}}}, "Humanlookin": {"_count": 1, "bones": {"_count": 1, "some": {"_count": 1}}}, "Nex": {"_count": 1, "thing": {"_count": 1, "I": {"_count": 1}}}, "hangin": {"_count": 2, "upside": {"_count": 1, "down": {"_count": 1}}, "off": {"_count": 1, "em": {"_count": 1}}}, "Wouldnta": {"_count": 1, "done": {"_count": 1, "if": {"_count": 1}}}, "fastes": {"_count": 1, "spellwork": {"_count": 1, "Ive": {"_count": 1}}}, "holdin": {"_count": 1, "me": {"_count": 1, "right": {"_count": 1}}}, "Conjunctivitus": {"_count": 1, "Curses": {"_count": 1, "an": {"_count": 1}}}, "relyin": {"_count": 1, "on": {"_count": 1, "us": {"_count": 1}}}, "rethink": {"_count": 1, "a": {"_count": 1, "bit": {"_count": 1}}}, "Spent": {"_count": 1, "a": {"_count": 1, "couple": {"_count": 1}}}, "squeamish": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "squeeze": {"_count": 1, "it": {"_count": 1}}}, "Couple": {"_count": 5, "of": {"_count": 4, "em": {"_count": 1}, "Stunners": {"_count": 1}, "days": {"_count": 1}, "kids": {"_count": 1}}, "more": {"_count": 1, "": {"_count": 1}}}, "visitin": {"_count": 3, "him": {"_count": 1, "evry": {"_count": 1}}, "the": {"_count": 1, "wounded": {"_count": 1}}, "Grawp": {"_count": 1, "hes": {"_count": 1}}}, "bringin": {"_count": 2, "gifts": {"_count": 1, "ter": {"_count": 1}}, "em": {"_count": 1, "on": {"_count": 1}}}, "Bloke": {"_count": 1, "they": {"_count": 1, "sent": {"_count": 1}}}, "Maniac": {"_count": 1, "he": {"_count": 1, "is": {"_count": 1}}}, "Likes": {"_count": 1, "killin": {"_count": 1, "as": {"_count": 1}}}, "favorin": {"_count": 1, "YouKnowWho": {"_count": 1, "didn": {"_count": 1}}}, "roun": {"_count": 3, "the": {"_count": 1, "gully": {"_count": 1}}, "gather": {"_count": 1, "roun": {"_count": 1}}, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "gully": {"_count": 2, "jus": {"_count": 1, "like": {"_count": 1}}, "keepin": {"_count": 1, "our": {"_count": 1}}}, "pokin": {"_count": 1, "round": {"_count": 1, "the": {"_count": 1}}}, "spect": {"_count": 5, "Golgomath": {"_count": 1, "told": {"_count": 1}}, "its": {"_count": 1, "the": {"_count": 1}}, "some": {"_count": 1, "o": {"_count": 1}}, "hes": {"_count": 2, "gone": {"_count": 1}, "got": {"_count": 1}}}, "creepin": {"_count": 1, "inter": {"_count": 1, "the": {"_count": 1}}}, "jumpin": {"_count": 1, "out": {"_count": 1, "at": {"_count": 1}}}, "rarin": {"_count": 1, "ter": {"_count": 1, "attack": {"_count": 1}}}, "Fiery": {"_count": 1, "yeh": {"_count": 1, "know": {"_count": 1}}}, "reminiscence": {"_count": 2, "before": {"_count": 1, "clearing": {"_count": 1}}, "but": {"_count": 1, "Harry": {"_count": 1}}}, "Cave": {"_count": 3, "mustve": {"_count": 1, "been": {"_count": 1}}, "Inimicum": {"_count": 2, "Hermione": {"_count": 1}, "": {"_count": 1}}}, "Wasn": {"_count": 2, "room": {"_count": 1, "ter": {"_count": 1}}, "a": {"_count": 1, "great": {"_count": 1}}}, "kneazle": {"_count": 1, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "Golgomaths": {"_count": 2, "lot": {"_count": 2, "had": {"_count": 1}, "raided": {"_count": 1}}}, "poin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018at": {"_count": 1, "one": {"_count": 1, "point": {"_count": 1}}}, "themll": {"_count": 1, "remember": {"_count": 1, "it": {"_count": 1}}}, "Golgomathll": {"_count": 1, "move": {"_count": 1, "outta": {"_count": 1}}}, "emphatically": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "why": {"_count": 1, "were": {"_count": 1}}}, "Huddled": {"_count": 1, "together": {"_count": 1, "they": {"_count": 1}}}, "earflaps": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Lips": {"_count": 1, "pursed": {"_count": 1, "she": {"_count": 1}}}, "sandwiched": {"_count": 1, "between": {"_count": 1, "Ron": {"_count": 1}}}, "manyd": {"_count": 1, "take": {"_count": 1, "tha": {"_count": 1}}}, "Whas": {"_count": 3, "that": {"_count": 1, "": {"_count": 1}}, "made": {"_count": 1, "yeh": {"_count": 1}}, "tha": {"_count": 1, "lyin": {"_count": 1}}}, "cabins": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "blackandpurple": {"_count": 1, "bruising": {"_count": 1, "all": {"_count": 1}}}, "Friend": {"_count": 1, "o": {"_count": 1, "mine": {"_count": 1}}}, "Abraxan": {"_count": 1, "horses": {"_count": 1, "I": {"_count": 1}}}, "babbling": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "uncovered": {"_count": 3, "eye": {"_count": 1, "": {"_count": 1}}, "I": {"_count": 1, "ask": {"_count": 1}}, "a": {"_count": 1, "positive": {"_count": 1}}}, "discolored": {"_count": 3, "and": {"_count": 1, "swollen": {"_count": 1}}, "tiara": {"_count": 2, "": {"_count": 1}, "What": {"_count": 1}}}, "Mountain": {"_count": 1, "scenery": {"_count": 1, "": {"_count": 1}}}, "South": {"_count": 1, "of": {"_count": 1, "France": {"_count": 1}}}, "tan": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ingratiating": {"_count": 1, "smile": {"_count": 1, "": {"_count": 1}}}, "inspectin": {"_count": 2, "us": {"_count": 1, "": {"_count": 1}}, "people": {"_count": 1, "is": {"_count": 1}}}, "hedgehogs": {"_count": 2, "stuff": {"_count": 1, "like": {"_count": 1}}, "the": {"_count": 1, "trick": {"_count": 1}}}, "gots": {"_count": 1, "much": {"_count": 1, "more": {"_count": 1}}}, "domestic": {"_count": 1, "herd": {"_count": 1, "in": {"_count": 1}}}, "herd": {"_count": 9, "in": {"_count": 1, "Britain": {"_count": 1}}, "of": {"_count": 4, "em": {"_count": 1}, "murderous": {"_count": 1}, "centaurs": {"_count": 1}, "galloping": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "has": {"_count": 1, "banished": {"_count": 1}}, "onto": {"_count": 1, "him": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "Lisen": {"_count": 1, "its": {"_count": 1, "bin": {"_count": 1}}}, "Obliteration": {"_count": 1, "Charm": {"_count": 1, "Hermione": {"_count": 1}}}, "tobogganing": {"_count": 1, "and": {"_count": 1, "worst": {"_count": 1}}}, "Gits": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "chimaeras": {"_count": 3, "oh": {"_count": 1, "I": {"_count": 1}}, "in": {"_count": 1, "Greece": {"_count": 1}}, "and": {"_count": 1, "dragons": {"_count": 1}}}, "chimaera": {"_count": 2, "she": {"_count": 1, "added": {"_count": 1}}, "bore": {"_count": 1, "down": {"_count": 1}}}, "aisle": {"_count": 16, "between": {"_count": 5, "the": {"_count": 4}, "two": {"_count": 1}}, "after": {"_count": 1, "empty": {"_count": 1}}, "flickered": {"_count": 1, "past": {"_count": 1}}, "ran": {"_count": 1, "down": {"_count": 1}}, "blowing": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "smiling": {"_count": 1, "and": {"_count": 1}}, "Fleur": {"_count": 1, "gliding": {"_count": 1}}, "next": {"_count": 1, "door": {"_count": 1}}, "shot": {"_count": 1, "a": {"_count": 1}}, "toward": {"_count": 1, "them": {"_count": 1}}}, "Planks": {"_count": 1, "lessons": {"_count": 1, "and": {"_count": 1}}}, "wounds": {"_count": 17, "it": {"_count": 2, "inflicted": {"_count": 1}, "doesnt": {"_count": 1}}, "open": {"_count": 1, "": {"_count": 1}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "run": {"_count": 1, "too": {"_count": 1}}, "Harrys": {"_count": 1, "curse": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "with": {"_count": 2, "some": {"_count": 1}, "a": {"_count": 1}}, "so": {"_count": 1, "easily": {"_count": 1}}, "and": {"_count": 1, "now": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "stabbed": {"_count": 1, "in": {"_count": 1}}}, "workin": {"_count": 1, "in": {"_count": 1, "here": {"_count": 1}}}, "discomfort": {"_count": 9, "was": {"_count": 1, "all": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "not": {"_count": 1, "eased": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}}, "savin": {"_count": 1, "a": {"_count": 1, "trip": {"_count": 1}}}, "habitat": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "stringy": {"_count": 4, "Slytherin": {"_count": 1, "boy": {"_count": 1}}, "pallid": {"_count": 1, "look": {"_count": 1}}, "wiregray": {"_count": 1, "hair": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "gorge": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "Immensely": {"_count": 2, "pleased": {"_count": 1, "to": {"_count": 1}}, "powerful": {"_count": 1, "dangerous": {"_count": 1}}}, "carcass": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 1, "to": {"_count": 1}}}, "Bits": {"_count": 3, "of": {"_count": 2, "flesh": {"_count": 1}, "him": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "superstition": {"_count": 1, "that": {"_count": 1, "is": {"_count": 1}}}, "pullin": {"_count": 2, "the": {"_count": 1, "school": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}}, "thestral": {"_count": 21, "evidently": {"_count": 1, "under": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "licking": {"_count": 1, "his": {"_count": 1}}, "placed": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 2, "was": {"_count": 1}, "marching": {"_count": 1}}, "did": {"_count": 1, "nothing": {"_count": 1}}, "streaked": {"_count": 1, "over": {"_count": 1}}, "to": {"_count": 2, "protect": {"_count": 1}, "hold": {"_count": 1}}, "with": {"_count": 1, "every": {"_count": 1}}, "onto": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "unable": {"_count": 1}}, "a": {"_count": 1, "quick": {"_count": 1}}, "said": {"_count": 1, "Bill": {"_count": 1}}, "Hermione": {"_count": 1, "looked": {"_count": 1}}, "by": {"_count": 1, "Kingsley": {"_count": 1}}, "flicked": {"_count": 1, "past": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "looked": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cupping": {"_count": 1, "her": {"_count": 1, "hand": {"_count": 1}}}, "thestralsl": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "\u2018has": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Appears": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Tenebrus": {"_count": 1, "hes": {"_count": 1, "my": {"_count": 1}}}, "\u2018dangerous": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "\u2018Shows": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dogll": {"_count": 1, "bite": {"_count": 1, "if": {"_count": 1}}}, "incoherent": {"_count": 2, "because": {"_count": 1, "she": {"_count": 1}}, "and": {"_count": 1, "Lilys": {"_count": 1}}}, "unbruised": {"_count": 1, "bits": {"_count": 1, "of": {"_count": 1}}}, "tamed": {"_count": 1, "like": {"_count": 1, "this": {"_count": 1}}}, "\u2018Mazin": {"_count": 1, "senses": {"_count": 1, "o": {"_count": 1}}}, "Whom": {"_count": 1, "did": {"_count": 1, "you": {"_count": 1}}}, "grandad": {"_count": 1, "said": {"_count": 1, "Neville": {"_count": 1}}}, "\u2018Students": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "intimidated": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "leer": {"_count": 4, "to": {"_count": 1, "Harry": {"_count": 1}}, "an": {"_count": 1, "evil": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Unheard": {"_count": 1, "by": {"_count": 1, "any": {"_count": 1}}}, "muffling": {"_count": 4, "snow": {"_count": 1, "Malfoy": {"_count": 1}}, "the": {"_count": 1, "loud": {"_count": 1}}, "his": {"_count": 2, "voice": {"_count": 1}, "batlike": {"_count": 1}}}, "intoned": {"_count": 2, "Hermione": {"_count": 1, "pulling": {"_count": 1}}, "Kreacher": {"_count": 1, "": {"_count": 1}}}, "onerous": {"_count": 2, "as": {"_count": 1, "Christmas": {"_count": 1}}, "I": {"_count": 1, "assure": {"_count": 1}}}, "cheeky": {"_count": 2, "little": {"_count": 1, "snotrags": {"_count": 1}}, "answers": {"_count": 1, "I": {"_count": 1}}}, "snotrags": {"_count": 1, "you": {"_count": 1, "know": {"_count": 1}}}, "shifts": {"_count": 1, "with": {"_count": 1, "Argus": {"_count": 1}}}, "fretting": {"_count": 1, "that": {"_count": 1, "she": {"_count": 1}}}, "skiing": {"_count": 2, "with": {"_count": 2, "her": {"_count": 1}, "your": {"_count": 1}}}, "marred": {"_count": 2, "by": {"_count": 2, "Harrys": {"_count": 1}, "grisly": {"_count": 1}}}, "loggerheads": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "decorate": {"_count": 1, "the": {"_count": 1, "place": {"_count": 1}}}, "baubles": {"_count": 3, "from": {"_count": 1, "the": {"_count": 1}}, "shaped": {"_count": 1, "like": {"_count": 1}}, "holly": {"_count": 1, "hung": {"_count": 1}}}, "CHRISTMAS": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "ON": {"_count": 1, "THE": {"_count": 1}}, "So": {"_count": 1, "Snape": {"_count": 1}}}, "Mistletoe": {"_count": 2, "said": {"_count": 2, "Luna": {"_count": 1}, "Cho": {"_count": 1}}}, "infested": {"_count": 1, "with": {"_count": 1, "nargles": {"_count": 1}}}, "nargles": {"_count": 4, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "were": {"_count": 1, "by": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}}, "Replaced": {"_count": 1, "me": {"_count": 1, "": {"_count": 1}}}, "Andrew": {"_count": 1, "Kirke": {"_count": 1, "said": {"_count": 1}}}, "Kirke": {"_count": 3, "said": {"_count": 1, "Alicia": {"_count": 1}}, "theyre": {"_count": 1, "pathetic": {"_count": 1}}, "shrieking": {"_count": 1, "and": {"_count": 1}}}, "Jack": {"_count": 4, "Sloper": {"_count": 3, "": {"_count": 1}, "up": {"_count": 1}, "one": {"_count": 1}}, "Russell": {"_count": 1, "terrier": {"_count": 1}}}, "Sloper": {"_count": 8, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "Kirke": {"_count": 1}}, "missing": {"_count": 1, "the": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "would": {"_count": 1, "be": {"_count": 1}}, "in": {"_count": 1, "midsentence": {"_count": 1}}}, "threeweek": {"_count": 1, "break": {"_count": 1, "Were": {"_count": 1}}}, "partnered": {"_count": 1, "Neville": {"_count": 1, "as": {"_count": 1}}}, "intermittent": {"_count": 1, "cries": {"_count": 1, "of": {"_count": 1}}}, "aimlessly": {"_count": 2, "around": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "unfrozen": {"_count": 1, "three": {"_count": 1, "times": {"_count": 1}}}, "Space": {"_count": 1, "was": {"_count": 1, "really": {"_count": 1}}}, "Patronuses": {"_count": 15, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "which": {"_count": 2, "everybody": {"_count": 1}, "would": {"_count": 1}}, "people": {"_count": 1, "had": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "glided": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "still": {"_count": 1}}, "youll": {"_count": 1, "be": {"_count": 1}}, "can": {"_count": 1, "change": {"_count": 1}}, "ran": {"_count": 1, "sleekly": {"_count": 1}}, "left": {"_count": 1, "them": {"_count": 1}}, "Harry": {"_count": 1, "come": {"_count": 1}}, "Luna": {"_count": 1, "Ernie": {"_count": 1}}, "to": {"_count": 1, "him": {"_count": 1}}}, "heartless": {"_count": 1, "saying": {"_count": 1, "it": {"_count": 1}}}, "inability": {"_count": 1, "to": {"_count": 1, "move": {"_count": 1}}}, "Numbly": {"_count": 2, "surprised": {"_count": 1, "Harry": {"_count": 1}}, "Harry": {"_count": 1, "thought": {"_count": 1}}}, "Disregarding": {"_count": 1, "this": {"_count": 1, "completely": {"_count": 1}}}, "hilarity": {"_count": 3, "to": {"_count": 1, "Hermiones": {"_count": 1}}, "simply": {"_count": 1, "roared": {"_count": 1}}, "mounted": {"_count": 1, "Draco": {"_count": 1}}}, "peal": {"_count": 1, "of": {"_count": 1, "laughter": {"_count": 1}}}, "jubilation": {"_count": 5, "or": {"_count": 2, "disgust": {"_count": 1}, "fury": {"_count": 1}}, "Ron": {"_count": 1, "was": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "and": {"_count": 1, "mourning": {"_count": 1}}}, "loos": {"_count": 1, "all": {"_count": 1, "over": {"_count": 1}}}, "insensitive": {"_count": 2, "wart": {"_count": 1, "I": {"_count": 1}}, "if": {"_count": 1, "Hagrid": {"_count": 1}}}, "teaspoon": {"_count": 3, "doesnt": {"_count": 1, "mean": {"_count": 1}}, "proceeded": {"_count": 1, "alone": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "vista": {"_count": 1, "of": {"_count": 1, "frightening": {"_count": 1}}}, "opportunities": {"_count": 8, "to": {"_count": 2, "ask": {"_count": 1}, "question": {"_count": 1}}, "abroad": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "offered": {"_count": 1}}, "when": {"_count": 2, "he": {"_count": 1}, "Dumbledore": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "going": {"_count": 1}}}, "snorts": {"_count": 2, "of": {"_count": 1, "impatience": {"_count": 1}}, "subsided": {"_count": 1, "": {"_count": 1}}}, "crossingsout": {"_count": 3, "Hermione": {"_count": 1, "writing": {"_count": 1}}, "and": {"_count": 2, "revisions": {"_count": 1}, "alterations": {"_count": 1}}}, "crackled": {"_count": 5, "lower": {"_count": 1, "and": {"_count": 1}}, "beneath": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 3, "the": {"_count": 1}, "popped": {"_count": 1}, "Bill": {"_count": 1}}}, "redhot": {"_count": 4, "embers": {"_count": 1, "crumbled": {"_count": 1}}, "wire": {"_count": 1, "": {"_count": 1}}, "treasure": {"_count": 1, "they": {"_count": 1}}, "objects": {"_count": 1, "": {"_count": 1}}}, "crumbled": {"_count": 4, "into": {"_count": 2, "ash": {"_count": 1}, "the": {"_count": 1}}, "away": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "grouchy": {"_count": 2, "git": {"_count": 1, "isnt": {"_count": 1}}, "yeah": {"_count": 1, "said": {"_count": 1}}}, "snuffled": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "fistfuls": {"_count": 1, "of": {"_count": 1, "cards": {"_count": 1}}}, "protesting": {"_count": 2, "that": {"_count": 1, "he": {"_count": 1}}, "mouth": {"_count": 1, "": {"_count": 1}}}, "vibrant": {"_count": 3, "colors": {"_count": 1, "": {"_count": 1}}, "blurred": {"_count": 1, "outline": {"_count": 1}}, "tones": {"_count": 1, "noticing": {"_count": 1}}}, "drowsing": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "creature": {"_count": 1, "in": {"_count": 1}}}, "splinter": {"_count": 1, "beneath": {"_count": 1, "his": {"_count": 1}}}, "gush": {"_count": 4, "of": {"_count": 3, "blood": {"_count": 1}, "the": {"_count": 1}, "flame": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "halfblinding": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "uncomprehendingly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "Sirius": {"_count": 1}}}, "subsiding": {"_count": 1, "slightly": {"_count": 1, "though": {"_count": 1}}}, "prescribing": {"_count": 1, "useless": {"_count": 1, "potions": {"_count": 1}}}, "contracting": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dressinggown": {"_count": 1, "were": {"_count": 1, "going": {"_count": 1}}}, "MUNGOS": {"_count": 2, "HOSPITAL": {"_count": 1, "FOR": {"_count": 1}}, "HEALER": {"_count": 1, "17221741": {"_count": 1}}}, "HOSPITAL": {"_count": 2, "FOR": {"_count": 1, "MAGICAL": {"_count": 1}}, "SHOP": {"_count": 1, "": {"_count": 1}}}, "MALADIES": {"_count": 1, "AND": {"_count": 1, "INJURIES": {"_count": 1}}}, "INJURIES": {"_count": 2, "Harry": {"_count": 1, "was": {"_count": 1}}, "First": {"_count": 1, "Floor": {"_count": 1}}}, "sedately": {"_count": 2, "and": {"_count": 1, "what": {"_count": 1}}, "past": {"_count": 1, "the": {"_count": 1}}}, "slunk": {"_count": 7, "away": {"_count": 2, "into": {"_count": 1}, "under": {"_count": 1}}, "down": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "into": {"_count": 1, "Harrys": {"_count": 1}}, "inside": {"_count": 1, "the": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}}, "purpleandgold": {"_count": 2, "dressing": {"_count": 1, "gown": {"_count": 1}}, "sleeve": {"_count": 1, "over": {"_count": 1}}}, "snowywhite": {"_count": 3, "nightshirt": {"_count": 1, "but": {"_count": 1}}, "towel": {"_count": 1, "his": {"_count": 1}}, "Gringotts": {"_count": 1, "stood": {"_count": 1}}}, "~": {"_count": 1, "I": {"_count": 1, "": {"_count": 1}}}, "interlocked": {"_count": 2, "fingers": {"_count": 2, "": {"_count": 1}, "they": {"_count": 1}}}, "reverberate": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "comic": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "Malfoy": {"_count": 1}}, "directly": {"_count": 1, "below": {"_count": 1}}}, "meditatively": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "wheyfaced": {"_count": 1, "said": {"_count": 1, "in": {"_count": 1}}}, "Everard": {"_count": 6, "": {"_count": 1, "?": {"_count": 1}}, "you": {"_count": 1, "will": {"_count": 1}}, "and": {"_count": 2, "Dilys": {"_count": 2}}, "had": {"_count": 1, "reappeared": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}}, "Dilys": {"_count": 6, "": {"_count": 1, "!": {"_count": 1}}, "were": {"_count": 1, "two": {"_count": 1}}, "may": {"_count": 1, "not": {"_count": 1}}, "will": {"_count": 1, "have": {"_count": 1}}, "was": {"_count": 1, "eyeing": {"_count": 1}}, "Derwent": {"_count": 1, "sobbed": {"_count": 1}}}, "backdrop": {"_count": 3, "of": {"_count": 1, "dark": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "mistresses": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "were": {"_count": 1, "not": {"_count": 1}}}, "convincingly": {"_count": 3, "kept": {"_count": 1, "sneaking": {"_count": 1}}, "exasperated": {"_count": 1, "voice": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "peeks": {"_count": 1, "at": {"_count": 1, "him": {"_count": 1}}}, "institutions": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tinkled": {"_count": 4, "into": {"_count": 1, "life": {"_count": 1}}, "loudly": {"_count": 1, "as": {"_count": 1}}, "again": {"_count": 1, "Borgin": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "rhythmic": {"_count": 2, "clinking": {"_count": 1, "noises": {"_count": 1}}, "rumbling": {"_count": 1, "that": {"_count": 1}}}, "tube": {"_count": 3, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}}, "Elfrida": {"_count": 1, "Craggs": {"_count": 1, "portrait": {"_count": 1}}}, "Craggs": {"_count": 1, "portrait": {"_count": 1, "to": {"_count": 1}}}, "convulsive": {"_count": 1, "movement": {"_count": 1, "I": {"_count": 1}}}, "silverringletted": {"_count": 1, "witch": {"_count": 1, "had": {"_count": 1}}}, "Portus": {"_count": 2, "for": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cleverlooking": {"_count": 2, "wizard": {"_count": 2, "with": {"_count": 1}, "continued": {"_count": 1}}}, "feign": {"_count": 2, "sleep": {"_count": 2, "some": {"_count": 1}, "Harry": {"_count": 1}}}, "PHINEAS": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "theatrical": {"_count": 1, "jerk": {"_count": 1, "and": {"_count": 1}}}, "Visit": {"_count": 1, "my": {"_count": 1, "other": {"_count": 1}}}, "Insubordination": {"_count": 1, "sir": {"_count": 1, "": {"_count": 1}}}, "corpulent": {"_count": 4, "rednosed": {"_count": 4, "wizard": {"_count": 4}}}, "rednosed": {"_count": 4, "wizard": {"_count": 4, "brandishing": {"_count": 1}, "on": {"_count": 1}, "who": {"_count": 1}, "had": {"_count": 1}}}, "Dereliction": {"_count": 1, "of": {"_count": 1, "duty": {"_count": 1}}}, "honorbound": {"_count": 1, "to": {"_count": 1, "give": {"_count": 1}}}, "gimlet": {"_count": 1, "eyed": {"_count": 1, "witch": {"_count": 1}}}, "greatgreatgrandson": {"_count": 3, "has": {"_count": 1, "always": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "the": {"_count": 1, "last": {"_count": 1}}}, "houseguests": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "infinitesimal": {"_count": 3, "pause": {"_count": 1, "before": {"_count": 1}}, "gap": {"_count": 1, "left": {"_count": 1}}, "amount": {"_count": 1, "": {"_count": 1}}}, "unbidden": {"_count": 5, "unwanted": {"_count": 1, "but": {"_count": 1}}, "voice": {"_count": 2, "inside": {"_count": 1}, "in": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "unwelcome": {"_count": 1, "thoughts": {"_count": 1}}}, "unwanted": {"_count": 5, "but": {"_count": 1, "terrifyingly": {"_count": 1}}, "Apparators": {"_count": 1, "": {"_count": 1}}, "notoriety": {"_count": 1, "": {"_count": 1}}, "attention": {"_count": 1, "": {"_count": 1}}, "stuffed": {"_count": 1, "out": {"_count": 1}}}, "terrifyingly": {"_count": 1, "strong": {"_count": 1, "there": {"_count": 1}}}, "guttering": {"_count": 3, "candle": {"_count": 3, "which": {"_count": 1}, "placed": {"_count": 1}, "": {"_count": 1}}}, "Mundunguslike": {"_count": 1, "whiff": {"_count": 1, "of": {"_count": 1}}}, "mulish": {"_count": 2, "expression": {"_count": 1, "hes": {"_count": 1}}, "look": {"_count": 1, "upon": {"_count": 1}}}, "Butterbeeri": {"_count": 1, "He": {"_count": 1, "raised": {"_count": 1}}}, "inescapable": {"_count": 2, "business": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 1, "the": {"_count": 1}}}, "wick": {"_count": 1, "sinking": {"_count": 1, "lower": {"_count": 1}}}, "downed": {"_count": 1, "the": {"_count": 1, "rest": {"_count": 1}}}, "accursed": {"_count": 1, "houseelf": {"_count": 1, "": {"_count": 1}}}, "KREACHER": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "summons": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "night": {"_count": 1}}, "and": {"_count": 1, "yet": {"_count": 1}}, "he": {"_count": 1, "felt": {"_count": 1}}}, "intrude": {"_count": 3, "upon": {"_count": 1, "the": {"_count": 1}}, "wouldnt": {"_count": 1, "be": {"_count": 1}}, "said": {"_count": 1, "Scrimgeour": {"_count": 1}}}, "merrier": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "sincerity": {"_count": 1, "that": {"_count": 1, "Mrs": {"_count": 1}}}, "bedstead": {"_count": 2, "keeping": {"_count": 1, "himself": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "riotously": {"_count": 1, "happy": {"_count": 1, "and": {"_count": 1}}}, "sweatshirts": {"_count": 1, "and": {"_count": 1, "they": {"_count": 1}}}, "musingly": {"_count": 1, "no": {"_count": 1, "I": {"_count": 1}}}, "prophecy": {"_count": 106, "youre": {"_count": 1, "doing": {"_count": 1}}, "Potter": {"_count": 3, "": {"_count": 3}}, "or": {"_count": 3, "we": {"_count": 1}, "you": {"_count": 1}, "watch": {"_count": 1}}, "and": {"_count": 7, "no": {"_count": 1}, "he": {"_count": 2}, "not": {"_count": 1}, "thrown": {"_count": 1}, "that": {"_count": 1}, "giving": {"_count": 1}}, "is": {"_count": 2, "it": {"_count": 1}, "unknown": {"_count": 1}}, "held": {"_count": 1, "up": {"_count": 1}}, "are": {"_count": 1, "we": {"_count": 1}}, "": {"_count": 21, "?": {"_count": 4}, ".": {"_count": 13}, "!": {"_count": 4}}, "Im": {"_count": 1, "supposed": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "about": {"_count": 4, "me": {"_count": 1}, "Voldemort": {"_count": 1}, "you": {"_count": 1}, "him": {"_count": 1}}, "the": {"_count": 2, "reason": {"_count": 1}, "final": {"_count": 1}}, "still": {"_count": 2, "clutched": {"_count": 2}}, "Jugson": {"_count": 1, "come": {"_count": 1}}, "you": {"_count": 1, "can": {"_count": 1}}, "Hey": {"_count": 1, "": {"_count": 1}}, "high": {"_count": 1, "above": {"_count": 1}}, "was": {"_count": 5, "still": {"_count": 1}, "hot": {"_count": 1}, "made": {"_count": 2}, "incomplete": {"_count": 1}}, "like": {"_count": 1, "a": {"_count": 1}}, "DOND": {"_count": 1, "GIB": {"_count": 1}}, "The": {"_count": 1, "man": {"_count": 1}}, "AARGH": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "saw": {"_count": 1}}, "had": {"_count": 4, "again": {"_count": 1}, "been": {"_count": 1}, "contained": {"_count": 1}, "outlined": {"_count": 1}}, "grab": {"_count": 1, "Neville": {"_count": 1}}, "give": {"_count": 1, "me": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "could": {"_count": 3, "he": {"_count": 1}, "have": {"_count": 2}}, "roll": {"_count": 1, "it": {"_count": 1}}, "smashed": {"_count": 1, "when": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "made": {"_count": 2, "shortly": {"_count": 1}, "about": {"_count": 1}}, "in": {"_count": 2, "its": {"_count": 1}, "the": {"_count": 1}}, "kept": {"_count": 1, "by": {"_count": 1}}, "for": {"_count": 2, "the": {"_count": 1}, "instance": {"_count": 1}}, "names": {"_count": 1, "him": {"_count": 1}}, "if": {"_count": 1, "it": {"_count": 1}}, "concerned": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 4, "": {"_count": 1}, "Ron": {"_count": 1}, "Neville": {"_count": 1}, "Dumbledore": {"_count": 1}}, "how": {"_count": 1, "it": {"_count": 1}}, "a": {"_count": 1, "few": {"_count": 1}}, "Harry": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "says": {"_count": 2, "that": {"_count": 1}, "is": {"_count": 1}}, "means": {"_count": 1, "If": {"_count": 1}}, "would": {"_count": 1, "it": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "caused": {"_count": 1, "Lord": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 1, "Voldemort": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}}, "wintry": {"_count": 3, "air": {"_count": 1, "on": {"_count": 1}}, "wind": {"_count": 1, "": {"_count": 1}}, "disapproval": {"_count": 1, "upon": {"_count": 1}}}, "storelined": {"_count": 1, "street": {"_count": 1, "packed": {"_count": 1}}}, "shoppers": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "plainly": {"_count": 1, "intent": {"_count": 1}}, "stayed": {"_count": 1, "together": {"_count": 1}}, "abroad": {"_count": 1, "": {"_count": 1}}}, "Nowhere": {"_count": 2, "in": {"_count": 1, "Diagon": {"_count": 1}}, "near": {"_count": 1, "Muriel": {"_count": 1}}}, "blend": {"_count": 3, "in": {"_count": 3, "with": {"_count": 3}}}, "electrical": {"_count": 1, "gadgets": {"_count": 1, "": {"_count": 1}}}, "gadgets": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Purge": {"_count": 2, "and": {"_count": 2, "Dowse": {"_count": 2}}}, "Dowse": {"_count": 2, "Ltd": {"_count": 2, "": {"_count": 2}}}, "Ltd": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "displays": {"_count": 4, "consisted": {"_count": 1, "of": {"_count": 1}}, "as": {"_count": 1, "ugly": {"_count": 1}}, "of": {"_count": 2, "spellbooks": {"_count": 1}, "Parseltongue": {"_count": 1}}}, "dummies": {"_count": 2, "with": {"_count": 1, "their": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}}, "wigs": {"_count": 2, "askew": {"_count": 1, "standing": {"_count": 1}}, "they": {"_count": 1, "reached": {"_count": 1}}}, "modeling": {"_count": 2, "fashions": {"_count": 1, "at": {"_count": 1}}, "a": {"_count": 1, "green": {"_count": 1}}}, "fashions": {"_count": 1, "at": {"_count": 1, "least": {"_count": 1}}}, "CLOSED": {"_count": 2, "FOR": {"_count": 1, "REFURBISHMENT": {"_count": 1}}, "WARD": {"_count": 1, "Was": {"_count": 1}}}, "REFURBISHMENT": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dummy": {"_count": 6, "whose": {"_count": 1, "false": {"_count": 1}}, "and": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 1, "hear": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "green": {"_count": 1}}}, "nylon": {"_count": 2, "pinafore": {"_count": 1, "dress": {"_count": 1}}, "stood": {"_count": 1, "then": {"_count": 1}}}, "pinafore": {"_count": 1, "dress": {"_count": 1, "": {"_count": 1}}}, "clustering": {"_count": 1, "around": {"_count": 1, "her": {"_count": 1}}}, "blades": {"_count": 3, "to": {"_count": 1, "urge": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "imbibe": {"_count": 1, "only": {"_count": 1}}}, "jointed": {"_count": 1, "finger": {"_count": 1, "and": {"_count": 1}}}, "disfigurements": {"_count": 1, "such": {"_count": 1, "as": {"_count": 1}}}, "sweatyfaced": {"_count": 3, "witch": {"_count": 1, "in": {"_count": 1}}, "from": {"_count": 1, "Professor": {"_count": 1}}, "and": {"_count": 1, "had": {"_count": 1}}}, "clang": {"_count": 7, "his": {"_count": 1, "head": {"_count": 1}}, "and": {"_count": 4, "began": {"_count": 1}, "tapped": {"_count": 1}, "a": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "metal": {"_count": 1}}}, "emblem": {"_count": 3, "embroidered": {"_count": 1, "on": {"_count": 1}}, "of": {"_count": 1, "St": {"_count": 1}}, "shield": {"_count": 1, "and": {"_count": 1}}}, "Doctors": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Healers": {"_count": 9, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "lit": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "what": {"_count": 1, "bit": {"_count": 1}}, "called": {"_count": 2, "out": {"_count": 1}, "to": {"_count": 1}}, "from": {"_count": 1, "St": {"_count": 1}}, "Helpmate": {"_count": 1, "open": {"_count": 1}}}, "CLEAN": {"_count": 1, "CAULDRON": {"_count": 1, "KEEPS": {"_count": 1}}}, "KEEPS": {"_count": 1, "POTIONS": {"_count": 1, "FROM": {"_count": 1}}}, "BECOMING": {"_count": 1, "POISONS": {"_count": 1, "and": {"_count": 1}}}, "POISONS": {"_count": 1, "and": {"_count": 1, "ANTIDOTES": {"_count": 1}}}, "ANTIDOTES": {"_count": 1, "ARE": {"_count": 1, "ANTIDONTS": {"_count": 1}}}, "ANTIDONTS": {"_count": 1, "UNLESS": {"_count": 1, "APPROVED": {"_count": 1}}}, "APPROVED": {"_count": 1, "BY": {"_count": 1, "A": {"_count": 1}}}, "QUALIFIED": {"_count": 1, "HEALER": {"_count": 1, "": {"_count": 1}}}, "HEALER": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "17221741": {"_count": 1, "HEADMISTRESS": {"_count": 1}}}, "labelled": {"_count": 1, "DILYS": {"_count": 1, "DERWENT": {"_count": 1}}}, "DILYS": {"_count": 1, "DERWENT": {"_count": 1, "ST": {"_count": 1}}}, "DERWENT": {"_count": 1, "ST": {"_count": 1, "": {"_count": 1}}}, "17221741": {"_count": 1, "HEADMISTRESS": {"_count": 1, "OF": {"_count": 1}}}, "HEADMISTRESS": {"_count": 2, "OF": {"_count": 1, "HOGWARTS": {"_count": 1}}, "also": {"_count": 1, "his": {"_count": 1}}}, "WITCHCRAFT": {"_count": 1, "AND": {"_count": 1, "WIZARDRY": {"_count": 1}}}, "I74II768": {"_count": 1, "Dilys": {"_count": 1, "was": {"_count": 1}}}, "onthespot": {"_count": 1, "jig": {"_count": 1, "and": {"_count": 1}}}, "predicament": {"_count": 3, "to": {"_count": 1, "the": {"_count": 1}}, "if": {"_count": 1, "HeWhoMustNotBeNamed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Damage": {"_count": 2, "fourth": {"_count": 2, "floor": {"_count": 2}}}, "pranced": {"_count": 2, "sideways": {"_count": 1, "out": {"_count": 1}}, "across": {"_count": 1, "the": {"_count": 1}}}, "ARTIFACT": {"_count": 1, "ACCIDENTS": {"_count": 1, "Ground": {"_count": 1}}}, "ACCIDENTS": {"_count": 2, "Ground": {"_count": 1, "Floor": {"_count": 1}}, "AND": {"_count": 1, "CATASTROPHES": {"_count": 1}}}, "Ground": {"_count": 1, "Floor": {"_count": 1, "Cauldron": {"_count": 1}}}, "backfiring": {"_count": 3, "broom": {"_count": 1, "crashes": {"_count": 1}}, "jinx": {"_count": 1, "down": {"_count": 1}}, "charm": {"_count": 1, "a": {"_count": 1}}}, "CREATUREINDUCED": {"_count": 1, "INJURIES": {"_count": 1, "First": {"_count": 1}}}, "Bites": {"_count": 1, "stings": {"_count": 1, "burns": {"_count": 1}}}, "BUGS": {"_count": 1, "Second": {"_count": 1, "Floor": {"_count": 1}}}, "Contagious": {"_count": 1, "maladies": {"_count": 1, "e": {"_count": 1}}}, "maladies": {"_count": 1, "e": {"_count": 1, "": {"_count": 1}}}, "pox": {"_count": 6, "vanishing": {"_count": 1, "sickness": {"_count": 1}}, "at": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "top": {"_count": 1}}, "shortly": {"_count": 1, "before": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "once": {"_count": 1}}}, "scrofungulus": {"_count": 1, "POTION": {"_count": 1, "AND": {"_count": 1}}}, "PLANT": {"_count": 1, "POISONING": {"_count": 1, "": {"_count": 1}}}, "POISONING": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Rashes": {"_count": 1, "regurgitation": {"_count": 1, "uncontrollable": {"_count": 1}}}, "regurgitation": {"_count": 1, "uncontrollable": {"_count": 1, "giggling": {"_count": 1}}}, "SPELL": {"_count": 3, "DAMAGE": {"_count": 2, "Fourth": {"_count": 1}, "": {"_count": 1}}, "IT": {"_count": 1, "OR": {"_count": 1}}}, "DAMAGE": {"_count": 2, "Fourth": {"_count": 1, "Floor": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Unliftable": {"_count": 1, "jinxes": {"_count": 1, "hexes": {"_count": 1}}}, "incorrectly": {"_count": 1, "applied": {"_count": 1, "charms": {"_count": 1}}}, "VISITORS": {"_count": 1, "TEAROOM": {"_count": 1, "AND": {"_count": 1}}}, "TEAROOM": {"_count": 1, "AND": {"_count": 1, "HOSPITAL": {"_count": 1}}}, "SHOP": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "trumpet": {"_count": 3, "had": {"_count": 1, "shuffled": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "call": {"_count": 1, "": {"_count": 1}}}, "Broderick": {"_count": 3, "Bode": {"_count": 2, "": {"_count": 1}, "49": {"_count": 1}}, "youve": {"_count": 1, "been": {"_count": 1}}}, "Ward": {"_count": 1, "fortynine": {"_count": 1, "but": {"_count": 1}}}, "fortynine": {"_count": 1, "but": {"_count": 1, "Im": {"_count": 1}}}, "romper": {"_count": 1, "suit": {"_count": 1, "": {"_count": 1}}}, "Dai": {"_count": 1, "Llewellyn": {"_count": 1, "ward": {"_count": 1}}}, "Llewellyn": {"_count": 1, "ward": {"_count": 1, "": {"_count": 1}}}, "soapsuds": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "CreatureInduced": {"_count": 1, "Injuries": {"_count": 1, "corridor": {"_count": 1}}}, "DAI": {"_count": 1, "LLEWELLYN": {"_count": 1, "WARD": {"_count": 1}}}, "LLEWELLYN": {"_count": 1, "WARD": {"_count": 1, "SERIOUS": {"_count": 1}}}, "WARD": {"_count": 2, "SERIOUS": {"_count": 1, "BITES": {"_count": 1}}, "Was": {"_count": 1, "this": {"_count": 1}}}, "BITES": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "HealerinCharge": {"_count": 1, "Hippocrates": {"_count": 1, "Smethwyck": {"_count": 1}}}, "Hippocrates": {"_count": 1, "Smethwyck": {"_count": 1, "Trainee": {"_count": 1}}}, "Smethwyck": {"_count": 3, "Trainee": {"_count": 1, "Healer": {"_count": 1}}, "have": {"_count": 1, "you": {"_count": 1}}, "worked": {"_count": 1, "his": {"_count": 1}}}, "Trainee": {"_count": 2, "Healer": {"_count": 2, "Augustus": {"_count": 1}, "you": {"_count": 1}}}, "Healer": {"_count": 22, "Augustus": {"_count": 1, "Pye": {"_count": 1}}, "Smethwyck": {"_count": 2, "have": {"_count": 1}, "worked": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}, "pursued": {"_count": 1, "him": {"_count": 1}}, "wearing": {"_count": 1, "a": {"_count": 1}}, "with": {"_count": 1, "another": {"_count": 1}}, "taking": {"_count": 1, "Lockharts": {"_count": 1}}, "was": {"_count": 2, "smiling": {"_count": 1}, "ever": {"_count": 1}}, "along": {"_count": 1, "the": {"_count": 1}}, "pointed": {"_count": 1, "her": {"_count": 1}}, "Gilderoy": {"_count": 1, "pulled": {"_count": 1}}, "brightly": {"_count": 1, "to": {"_count": 1}}, "bustling": {"_count": 1, "along": {"_count": 1}}, "Miriam": {"_count": 1, "Strout": {"_count": 1}}, "Strout": {"_count": 2, "busy": {"_count": 1}, "encouraged": {"_count": 1}}, "said": {"_count": 1, "it": {"_count": 1}}, "told": {"_count": 1, "us": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "at": {"_count": 1, "St": {"_count": 1}}}, "Pye": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 1, "I": {"_count": 1}}}, "panelled": {"_count": 1, "oak": {"_count": 1, "and": {"_count": 1}}}, "URQUHART": {"_count": 1, "RACKHARROW": {"_count": 1, "16121697": {"_count": 1}}}, "RACKHARROW": {"_count": 1, "16121697": {"_count": 1, "INVENTOR": {"_count": 1}}}, "16121697": {"_count": 1, "INVENTOR": {"_count": 1, "OF": {"_count": 1}}}, "INVENTOR": {"_count": 1, "OF": {"_count": 1, "THE": {"_count": 1}}}, "ENTRAIL": {"_count": 1, "EXPELLING": {"_count": 1, "CURSE": {"_count": 1}}}, "EXPELLING": {"_count": 1, "CURSE": {"_count": 1, "": {"_count": 1}}}, "CURSE": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "occupying": {"_count": 2, "the": {"_count": 1, "bed": {"_count": 1}}, "at": {"_count": 1, "least": {"_count": 1}}}, "BloodReplenishing": {"_count": 1, "Potion": {"_count": 1, "every": {"_count": 1}}}, "dressings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Willy": {"_count": 6, "Widdershinss": {"_count": 1, "arrest": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}, "Widdershins": {"_count": 4, "Arthur": {"_count": 1}, "Minerva": {"_count": 1}, "had": {"_count": 1}, "was": {"_count": 1}}}, "Widdershinss": {"_count": 1, "arrest": {"_count": 1, "when": {"_count": 1}}}, "\u2018on": {"_count": 1, "duty": {"_count": 1, "Fred": {"_count": 1}}}, "Widdershins": {"_count": 4, "Arthur": {"_count": 1, "Well": {"_count": 1}}, "Minerva": {"_count": 1, "who": {"_count": 1}}, "had": {"_count": 1, "indeed": {"_count": 1}}, "was": {"_count": 1, "lying": {"_count": 1}}}, "Willys": {"_count": 1, "been": {"_count": 1, "caught": {"_count": 1}}}, "doorknobs": {"_count": 1, "to": {"_count": 1, "Muggles": {"_count": 1}}}, "regrowth": {"_count": 1, "and": {"_count": 1, "memory": {"_count": 1}}}, "modification": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "signpost": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "was": {"_count": 1}}}, "contaminated": {"_count": 4, "as": {"_count": 1, "though": {"_count": 1}}, "or": {"_count": 2, "dangerous": {"_count": 1}, "if": {"_count": 1}}, "tainted": {"_count": 1, "Was": {"_count": 1}}}, "germ": {"_count": 1, "unworthy": {"_count": 1, "to": {"_count": 1}}}, "taint": {"_count": 2, "of": {"_count": 2, "Voldemort": {"_count": 1}, "shame": {"_count": 1}}}, "writhe": {"_count": 4, "and": {"_count": 3, "squirm": {"_count": 1}, "shriek": {"_count": 1}, "struggle": {"_count": 1}}, "in": {"_count": 1, "agony": {"_count": 1}}}, "insurance": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "readymade": {"_count": 2, "excuse": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Nigelluss": {"_count": 7, "empty": {"_count": 2, "portrait": {"_count": 1}, "frame": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "clever": {"_count": 1, "dark": {"_count": 1}}, "interest": {"_count": 1, "": {"_count": 1}}, "portrait": {"_count": 2, "back": {"_count": 1}, "and": {"_count": 1}}}, "maim": {"_count": 1, "and": {"_count": 1, "injure": {"_count": 1}}}, "injure": {"_count": 2, "what": {"_count": 1, "if": {"_count": 1}}, "your": {"_count": 1, "hand": {"_count": 1}}}, "sneaky": {"_count": 1, "voice": {"_count": 1, "said": {"_count": 1}}}, "dolt": {"_count": 1, "said": {"_count": 1, "Phineas": {"_count": 1}}}, "\u2018Stay": {"_count": 1, "where": {"_count": 1, "you": {"_count": 1}}}, "impertinent": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "even": {"_count": 1, "but": {"_count": 1}}, "request": {"_count": 1, "I": {"_count": 1}}, "questions": {"_count": 1, "about": {"_count": 1}}, "You": {"_count": 1, "see": {"_count": 1}}}, "grownups": {"_count": 1, "sort": {"_count": 1, "it": {"_count": 1}}}, "infernally": {"_count": 1, "convinced": {"_count": 1, "that": {"_count": 1}}}, "puffedup": {"_count": 3, "popinjay": {"_count": 1, "that": {"_count": 1}}, "powercrazy": {"_count": 1, "old": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}}, "popinjay": {"_count": 1, "that": {"_count": 1, "there": {"_count": 1}}}, "confiding": {"_count": 2, "every": {"_count": 1, "tiny": {"_count": 1}}, "something": {"_count": 1, "this": {"_count": 1}}}, "harddoneby": {"_count": 1, "to": {"_count": 1, "note": {"_count": 1}}}, "adolescent": {"_count": 2, "agonizing": {"_count": 1, "": {"_count": 1}}, "wanderings": {"_count": 1, "": {"_count": 1}}}, "inflict": {"_count": 1, "his": {"_count": 1, "company": {"_count": 1}}}, "unclean": {"_count": 1, "intensified": {"_count": 1, "": {"_count": 1}}}, "obeyed": {"_count": 13, "Dumbledore": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "Merope": {"_count": 1, "s": {"_count": 1}}, "his": {"_count": 1, "mind": {"_count": 1}}, "noticing": {"_count": 1, "as": {"_count": 1}}, "him": {"_count": 1, "opening": {"_count": 1}}, "running": {"_count": 1, "toward": {"_count": 1}}, "its": {"_count": 1, "pressure": {"_count": 1}}, "Snape": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "pressing": {"_count": 1, "his": {"_count": 1}}, "without": {"_count": 1, "hesitation": {"_count": 1}}, "her": {"_count": 1, "sister": {"_count": 1}}}, "whiter": {"_count": 3, "threatening": {"_count": 1, "snow": {"_count": 1}}, "than": {"_count": 1, "a": {"_count": 1}}, "still": {"_count": 1, "and": {"_count": 1}}}, "strawstrewn": {"_count": 1, "floor": {"_count": 1, "for": {"_count": 1}}}, "skiings": {"_count": 1, "not": {"_count": 1, "really": {"_count": 1}}}, "unabashed": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "lightening": {"_count": 3, "almost": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "darkness": {"_count": 1, "": {"_count": 1}}}, "tramping": {"_count": 2, "past": {"_count": 1, "their": {"_count": 1}}, "footsteps": {"_count": 1, "signs": {"_count": 1}}}, "Rest": {"_count": 1, "Ye": {"_count": 1, "Merry": {"_count": 1}}}, "runup": {"_count": 2, "to": {"_count": 2, "Christmas": {"_count": 1}, "this": {"_count": 1}}}, "decorating": {"_count": 1, "with": {"_count": 1, "their": {"_count": 1}}}, "chandeliers": {"_count": 1, "were": {"_count": 1, "no": {"_count": 1}}}, "cobwebs": {"_count": 6, "but": {"_count": 2, "with": {"_count": 1}, "which": {"_count": 1}}, "Umbridge": {"_count": 1, "was": {"_count": 1}}, "the": {"_count": 1, "floor": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "obtained": {"_count": 5, "by": {"_count": 1, "Mundungus": {"_count": 1}}, "with": {"_count": 1, "enormous": {"_count": 1}}, "magical": {"_count": 1, "power": {"_count": 1}}, "your": {"_count": 1, "magical": {"_count": 1}}, "hairs": {"_count": 1, "from": {"_count": 1}}}, "haul": {"_count": 3, "this": {"_count": 2, "year": {"_count": 2}}, "for": {"_count": 1, "one": {"_count": 1}}}, "Compass": {"_count": 1, "its": {"_count": 1, "excellent": {"_count": 1}}}, "beats": {"_count": 5, "Hermiones": {"_count": 1, "shes": {"_count": 1}}, "us": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "were": {"_count": 1, "numbered": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}}, "planner": {"_count": 4, "Harry": {"_count": 1, "sorted": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "opened": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}}, "Practical": {"_count": 3, "Defensive": {"_count": 2, "Magic": {"_count": 2}}, "Potioneer": {"_count": 1, "": {"_count": 1}}}, "wallet": {"_count": 1, "that": {"_count": 1, "had": {"_count": 1}}}, "antitheft": {"_count": 1, "device": {"_count": 1, "but": {"_count": 1}}}, "Tonkss": {"_count": 15, "present": {"_count": 1, "was": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "Patronus": {"_count": 2, "has": {"_count": 1}, "and": {"_count": 1}}, "parents": {"_count": 5, "": {"_count": 4}, "garden": {"_count": 1}}, "resemblance": {"_count": 1, "to": {"_count": 1}}, "wrist": {"_count": 1, "and": {"_count": 1}}, "family": {"_count": 1, "": {"_count": 1}}, "father": {"_count": 1, "": {"_count": 1}}, "changed": {"_count": 1, "didnt": {"_count": 1}}, "hair": {"_count": 1, "started": {"_count": 1}}}, "fullsize": {"_count": 1, "version": {"_count": 1, "Ron": {"_count": 1}}}, "EveryFlavor": {"_count": 1, "Beans": {"_count": 1, "Mr": {"_count": 1}}}, "jumper": {"_count": 6, "and": {"_count": 4, "some": {"_count": 1}, "trousers": {"_count": 1}, "several": {"_count": 1}, "glanced": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "humongous": {"_count": 1, "pile": {"_count": 1, "of": {"_count": 1}}}, "gibbon": {"_count": 1, "with": {"_count": 1, "two": {"_count": 1}}}, "likeness": {"_count": 1, "said": {"_count": 1, "Fred": {"_count": 1}}}, "ts": {"_count": 1, "then": {"_count": 1, "you": {"_count": 1}}}, "pleasel": {"_count": 1, "They": {"_count": 1, "got": {"_count": 1}}}, "brighten": {"_count": 2, "up": {"_count": 1, "his": {"_count": 1}}, "things": {"_count": 1, "up": {"_count": 1}}}, "den": {"_count": 2, "said": {"_count": 1, "Hermione": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "boiler": {"_count": 2, "in": {"_count": 1, "that": {"_count": 1}}, "but": {"_count": 1, "in": {"_count": 1}}}, "foots": {"_count": 1, "space": {"_count": 1, "underneath": {"_count": 1}}}, "crusts": {"_count": 1, "and": {"_count": 1, "moldy": {"_count": 1}}}, "magpielike": {"_count": 2, "from": {"_count": 1, "Siriuss": {"_count": 1}}, "tendency": {"_count": 1, "for": {"_count": 1}}}, "silverframed": {"_count": 1, "family": {"_count": 1, "photographs": {"_count": 1}}}, "fore": {"_count": 1, "of": {"_count": 1, "all": {"_count": 1}}}, "depression": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "\u2018out": {"_count": 1, "maybe": {"_count": 1, "he": {"_count": 1}}}, "contradicted": {"_count": 2, "him": {"_count": 2, "": {"_count": 2}}}, "bloomers": {"_count": 1, "or": {"_count": 1, "something": {"_count": 1}}}, "airing": {"_count": 1, "cupboard": {"_count": 1, "and": {"_count": 1}}}, "Enlarging": {"_count": 1, "Spell": {"_count": 1, "put": {"_count": 1}}}, "backseat": {"_count": 5, "between": {"_count": 1, "Fred": {"_count": 1}}, "more": {"_count": 1, "room": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "then": {"_count": 1, "while": {"_count": 1}}}, "furtively": {"_count": 3, "up": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "check": {"_count": 1}}}, "orbs": {"_count": 6, "that": {"_count": 2, "illuminated": {"_count": 1}, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "there": {"_count": 1, "shattered": {"_count": 1}}, "and": {"_count": 1, "celestial": {"_count": 1}}, "sprinkled": {"_count": 1, "with": {"_count": 1}}}, "fusewire": {"_count": 1, "and": {"_count": 1, "screwdrivers": {"_count": 1}}}, "screwdrivers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bandaging": {"_count": 2, "under": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "deflate": {"_count": 1, "under": {"_count": 1, "Mrs": {"_count": 1}}}, "complementary": {"_count": 1, "medicine": {"_count": 1, "": {"_count": 1}}}, "sew": {"_count": 1, "your": {"_count": 1, "skin": {"_count": 1}}}, "MEAN": {"_count": 1, "THATS": {"_count": 1, "THE": {"_count": 1}}}, "GENERAL": {"_count": 1, "IDEA": {"_count": 1, "": {"_count": 1}}}, "IDEA": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Stitches": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dissolves": {"_count": 1, "them": {"_count": 1, "or": {"_count": 1}}}, "tearoom": {"_count": 2, "is": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "quiet": {"_count": 1}}}, "Witchs": {"_count": 1, "desk": {"_count": 1, "": {"_count": 1}}}, "brutallooking": {"_count": 2, "Healers": {"_count": 1, "": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}}, "diagnosing": {"_count": 1, "odd": {"_count": 1, "complaints": {"_count": 1}}}, "spattergroit": {"_count": 8, "": {"_count": 3, ".": {"_count": 2}, "!": {"_count": 1}}, "which": {"_count": 1, "is": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "Im": {"_count": 1, "sure": {"_count": 1}}, "and": {"_count": 1, "Mummyll": {"_count": 1}}, "Ron": {"_count": 1, "": {"_count": 1}}}, "grievous": {"_count": 2, "affliction": {"_count": 1, "of": {"_count": 1}}, "peril": {"_count": 1, "I": {"_count": 1}}}, "affliction": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "can": {"_count": 1}}}, "pockmarked": {"_count": 6, "and": {"_count": 1, "more": {"_count": 1}}, "man": {"_count": 1, "with": {"_count": 1}}, "the": {"_count": 1, "scars": {"_count": 1}}, "Rookwood": {"_count": 1, "now": {"_count": 1}}, "visage": {"_count": 1, "and": {"_count": 1}}, "stone": {"_count": 1, "warlock": {"_count": 1}}}, "unsightly": {"_count": 1, "blemishes": {"_count": 1, "upon": {"_count": 1}}}, "blemishes": {"_count": 1, "upon": {"_count": 1, "your": {"_count": 1}}}, "visage": {"_count": 3, "young": {"_count": 1, "master": {"_count": 1}}, "and": {"_count": 1, "greenish": {"_count": 1}}, "shone": {"_count": 1, "with": {"_count": 1}}}, "signposted": {"_count": 1, "SPELL": {"_count": 1, "DAMAGE": {"_count": 1}}}, "exDefense": {"_count": 2, "Against": {"_count": 2, "the": {"_count": 2}}}, "exuberantly": {"_count": 2, "pulling": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "peacockfeather": {"_count": 1, "quill": {"_count": 1, "from": {"_count": 1}}}, "autographs": {"_count": 4, "would": {"_count": 1, "you": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}}, "joinedup": {"_count": 2, "writing": {"_count": 2, "now": {"_count": 1}, "for": {"_count": 1}}}, "Taught": {"_count": 1, "you": {"_count": 1, "everything": {"_count": 1}}}, "motherly": {"_count": 2, "looking": {"_count": 1, "Healer": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}}, "sweetie": {"_count": 1, "arent": {"_count": 1, "you": {"_count": 1}}}, "precocious": {"_count": 1, "twoyearold": {"_count": 1, "": {"_count": 1}}}, "twoyearold": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "uselessly": {"_count": 3, "at": {"_count": 2, "the": {"_count": 2}}, "off": {"_count": 1, "its": {"_count": 1}}}, "nothingness": {"_count": 9, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 2, "then": {"_count": 1}, "landed": {"_count": 1}}, "moving": {"_count": 1, "with": {"_count": 1}}, "spinning": {"_count": 1, "uncontrollably": {"_count": 1}}, "her": {"_count": 1, "scream": {"_count": 1}}, "that": {"_count": 1, "surrounded": {"_count": 1}}}, "Janus": {"_count": 1, "Thickey": {"_count": 1, "ward": {"_count": 1}}}, "Thickey": {"_count": 1, "ward": {"_count": 1, "and": {"_count": 1}}}, "Gilderoys": {"_count": 2, "arm": {"_count": 1, "until": {"_count": 1}}, "headboard": {"_count": 1, "for": {"_count": 1}}}, "remedial": {"_count": 1, "potions": {"_count": 1, "and": {"_count": 1}}}, "autographed": {"_count": 1, "many": {"_count": 1, "of": {"_count": 1}}}, "disjointed": {"_count": 1, "childish": {"_count": 1, "writing": {"_count": 1}}}, "vigor": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}}, "mournfullooking": {"_count": 2, "wizard": {"_count": 1, "lay": {"_count": 1}}, "Hagrid": {"_count": 1, "he": {"_count": 1}}}, "Agnes": {"_count": 2, "said": {"_count": 1, "the": {"_count": 1}}, "gave": {"_count": 1, "several": {"_count": 1}}}, "furryfaced": {"_count": 1, "woman": {"_count": 1, "handing": {"_count": 1}}}, "potted": {"_count": 4, "plant": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "plants": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}}, "calendar": {"_count": 2, "with": {"_count": 1, "a": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "unquestioned": {"_count": 1, "but": {"_count": 1, "Ron": {"_count": 1}}}, "proffering": {"_count": 1, "her": {"_count": 1, "hand": {"_count": 1}}}, "regally": {"_count": 1, "to": {"_count": 1, "Ron": {"_count": 1}}}, "Helped": {"_count": 2, "him": {"_count": 2, "out": {"_count": 1}, "": {"_count": 1}}}, "sorrier": {"_count": 1, "for": {"_count": 1, "anyone": {"_count": 1}}}, "insanity": {"_count": 3, "by": {"_count": 2, "YouKnow": {"_count": 1}, "Bellatrix": {"_count": 1}}, "of": {"_count": 1, "cruel": {"_count": 1}}}, "mortified": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}, "to": {"_count": 1, "produce": {"_count": 1}}}, "deadlooking": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}}, "motions": {"_count": 2, "toward": {"_count": 1, "Neville": {"_count": 1}}, "with": {"_count": 1, "his": {"_count": 1}}}, "OCCLUMENCY": {"_count": 1, "Kreacher": {"_count": 1, "it": {"_count": 1}}}, "relics": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "docilely": {"_count": 1, "than": {"_count": 1, "usual": {"_count": 1}}}, "cheerfulness": {"_count": 2, "was": {"_count": 1, "evaporating": {"_count": 1}}, "that": {"_count": 1, "were": {"_count": 1}}}, "evaporating": {"_count": 1, "fast": {"_count": 1, "now": {"_count": 1}}}, "sullens": {"_count": 1, "in": {"_count": 1, "which": {"_count": 1}}}, "taciturn": {"_count": 1, "and": {"_count": 1, "grumpy": {"_count": 1}}}, "noxious": {"_count": 1, "gas": {"_count": 1, "so": {"_count": 1}}}, "infected": {"_count": 2, "by": {"_count": 1, "it": {"_count": 1}}, "Harry": {"_count": 1, "too": {"_count": 1}}}, "tyranny": {"_count": 1, "of": {"_count": 1, "Dolores": {"_count": 1}}}, "decrees": {"_count": 2, "in": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "likelihood": {"_count": 3, "that": {"_count": 1, "their": {"_count": 1}}, "Undesirable": {"_count": 1, "No": {"_count": 1}}, "of": {"_count": 1, "hurting": {"_count": 1}}}, "engaged": {"_count": 2, "in": {"_count": 2, "a": {"_count": 1}, "pulling": {"_count": 1}}}, "Squash": {"_count": 1, "him": {"_count": 1, "squash": {"_count": 1}}}, "Merely": {"_count": 3, "that": {"_count": 1, "I": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "taking": {"_count": 1, "your": {"_count": 1}}}, "Occlumency": {"_count": 48, "this": {"_count": 1, "term": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "lessons": {"_count": 10, "to": {"_count": 1}, "with": {"_count": 3}, "anymore": {"_count": 1}, "again": {"_count": 1}, "": {"_count": 3}, "of": {"_count": 1}}, "classes": {"_count": 1, "": {"_count": 1}}, "": {"_count": 13, ".": {"_count": 7}, "?": {"_count": 3}, "!": {"_count": 3}}, "are": {"_count": 1, "able": {"_count": 1}}, "much": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "weakened": {"_count": 1}}, "as": {"_count": 2, "Neville": {"_count": 1}, "hard": {"_count": 1}}, "his": {"_count": 1, "scar": {"_count": 1}}, "lesson": {"_count": 2, "with": {"_count": 1}, "": {"_count": 1}}, "from": {"_count": 1, "now": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}, "once": {"_count": 1, "since": {"_count": 1}}, "again": {"_count": 1, "said": {"_count": 1}}, "tuition": {"_count": 1, "If": {"_count": 1}}, "was": {"_count": 1, "for": {"_count": 1}}, "properly": {"_count": 1, "youd": {"_count": 1}}, "against": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 2, "see": {"_count": 1}, "never": {"_count": 1}}, "than": {"_count": 1, "poor": {"_count": 1}}, "But": {"_count": 1, "Harry": {"_count": 1}}, "whose": {"_count": 1, "magic": {"_count": 1}}}, "penetration": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "pump": {"_count": 1, "very": {"_count": 1, "fast": {"_count": 1}}}, "Occlu": {"_count": 1, "thing": {"_count": 1, "": {"_count": 1}}}, "Extra": {"_count": 2, "lessons": {"_count": 2, "with": {"_count": 2}}}, "delegate": {"_count": 1, "less": {"_count": 1, "enjoyable": {"_count": 1}}}, "Remedial": {"_count": 6, "Potions": {"_count": 6, "": {"_count": 6}}}, "unlimited": {"_count": 1, "leisure": {"_count": 1, "time": {"_count": 1}}}, "bounces": {"_count": 2, "off": {"_count": 2, "him": {"_count": 1}, "": {"_count": 1}}}, "squaring": {"_count": 2, "up": {"_count": 1, "to": {"_count": 1}}, "his": {"_count": 1, "shoulders": {"_count": 1}}}, "Snivellus": {"_count": 6, "said": {"_count": 1, "Sirius": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 2}, "?": {"_count": 1}, "!": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}}, "reformed": {"_count": 5, "I": {"_count": 1, "know": {"_count": 1}}, "in": {"_count": 1, "midair": {"_count": 1}}, "and": {"_count": 1, "solidified": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "instantly": {"_count": 1, "": {"_count": 1}}}, "lapdogs": {"_count": 1, "working": {"_count": 1, "at": {"_count": 1}}}, "jaunt": {"_count": 1, "outside": {"_count": 1, "": {"_count": 1}}}, "castiron": {"_count": 1, "excuse": {"_count": 1, "not": {"_count": 1}}}, "hidey": {"_count": 1, "hole": {"_count": 1, "in": {"_count": 1}}}, "vaulting": {"_count": 1, "over": {"_count": 1, "the": {"_count": 1}}}, "mackintosh": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Cured": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "midaction": {"_count": 1, "both": {"_count": 1, "Sirius": {"_count": 1}}}, "dabbling": {"_count": 1, "in": {"_count": 1, "Muggle": {"_count": 1}}}, "meekly": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "their": {"_count": 1}}}, "goading": {"_count": 1, "him": {"_count": 1, "deliberately": {"_count": 1}}}, "incumbent": {"_count": 1, "upon": {"_count": 1, "him": {"_count": 1}}}, "paperback": {"_count": 1, "book": {"_count": 1, "into": {"_count": 1}}}, "mittens": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "godfathers": {"_count": 7, "face": {"_count": 1, "and": {"_count": 1}}, "kitchen": {"_count": 1, "this": {"_count": 1}}, "wasted": {"_count": 1, "oncehandsome": {"_count": 1}}, "dead": {"_count": 2, "": {"_count": 2}}, "last": {"_count": 1, "gift": {"_count": 1}}, "bedroom": {"_count": 1, "before": {"_count": 1}}}, "tweedy": {"_count": 1, "woman": {"_count": 1, "with": {"_count": 1}}}, "chivvying": {"_count": 1, "him": {"_count": 1, "down": {"_count": 1}}}, "lamppost": {"_count": 1, "which": {"_count": 1, "jumped": {"_count": 1}}}, "jugeared": {"_count": 1, "youth": {"_count": 1, "in": {"_count": 1}}}, "oblivion": {"_count": 4, "muttered": {"_count": 1, "Tonks": {"_count": 1}}, "and": {"_count": 1, "back": {"_count": 1}}, "better": {"_count": 1, "than": {"_count": 1}}, "the": {"_count": 1, "promise": {"_count": 1}}}, "decks": {"_count": 2, "had": {"_count": 1, "been": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "cockroaches": {"_count": 2, "and": {"_count": 1, "custard": {"_count": 1}}, "exploded": {"_count": 1, "over": {"_count": 1}}}, "Tonics": {"_count": 1, "briskly": {"_count": 1, "looking": {"_count": 1}}}, "Square": {"_count": 1, "weaving": {"_count": 1, "on": {"_count": 1}}}, "Birmingham": {"_count": 2, "said": {"_count": 1, "Stan": {"_count": 1}}, "motorway": {"_count": 1, "to": {"_count": 1}}}, "unasked": {"_count": 2, "question": {"_count": 1, "as": {"_count": 1}}, "they": {"_count": 1, "must": {"_count": 1}}}, "\u2018e": {"_count": 2, "didnt": {"_count": 1, "seem": {"_count": 1}}, "was": {"_count": 1, "going": {"_count": 1}}}, "dunnit": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "enthralled": {"_count": 1, "at": {"_count": 1, "Harry": {"_count": 1}}}, "nutty": {"_count": 2, "somebody": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "squirrel": {"_count": 1}}}, "Chairs": {"_count": 1, "slid": {"_count": 1, "backward": {"_count": 1}}}, "bends": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Hedgerows": {"_count": 1, "on": {"_count": 1, "either": {"_count": 1}}}, "verges": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "viaduct": {"_count": 1, "surrounded": {"_count": 1, "by": {"_count": 1}}}, "highrise": {"_count": 1, "flats": {"_count": 1, "each": {"_count": 1}}}, "flats": {"_count": 1, "each": {"_count": 1, "time": {"_count": 1}}}, "spattering": {"_count": 4, "sound": {"_count": 1, "": {"_count": 1}}, "down": {"_count": 1, "onto": {"_count": 1}}, "his": {"_count": 1, "robes": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}}, "murmurings": {"_count": 1, "of": {"_count": 1, "her": {"_count": 1}}}, "Flecks": {"_count": 1, "of": {"_count": 1, "snow": {"_count": 1}}}, "goodbyes": {"_count": 3, "with": {"_count": 1, "Tonks": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "no": {"_count": 1}}}, "Occlumens": {"_count": 4, "and": {"_count": 1, "we": {"_count": 1}}, "The": {"_count": 1, "word": {"_count": 1}}, "isnt": {"_count": 1, "he": {"_count": 1}}, "said": {"_count": 1, "Lupin": {"_count": 1}}}, "prematurely": {"_count": 2, "lined": {"_count": 2, "face": {"_count": 2}}}, "halfwished": {"_count": 1, "given": {"_count": 1, "what": {"_count": 1}}}, "dispel": {"_count": 1, "his": {"_count": 1, "trepidation": {"_count": 1}}}, "superciliously": {"_count": 1, "having": {"_count": 1, "cornered": {"_count": 1}}}, "stup": {"_count": 1, "Hi": {"_count": 1, "Harry": {"_count": 1}}}, "IIll": {"_count": 1, "see": {"_count": 1, "you": {"_count": 1}}}, "CHO": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "bouncy": {"_count": 1, "way": {"_count": 1, "himself": {"_count": 1}}}, "insufficient": {"_count": 1, "to": {"_count": 1, "lighten": {"_count": 1}}}, "variously": {"_count": 3, "colored": {"_count": 1, "potions": {"_count": 1}}, "shaped": {"_count": 1, "hourglasses": {"_count": 1}}, "known": {"_count": 1, "as": {"_count": 1}}}, "imprisoning": {"_count": 5, "himself": {"_count": 1, "as": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "her": {"_count": 2, "daughter": {"_count": 1}, "all": {"_count": 1}}, "traitors": {"_count": 1, "all": {"_count": 1}}}, "\u2018sir": {"_count": 5, "or": {"_count": 1, "\u2018Professor": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "Professor": {"_count": 1, "": {"_count": 1}}}, "intrusion": {"_count": 2, "and": {"_count": 1, "influence": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "Legilimency": {"_count": 14, "Whats": {"_count": 1, "that": {"_count": 1}}, "are": {"_count": 1, "able": {"_count": 1}}, "sounded": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "Harry": {"_count": 1, "blinked": {"_count": 1}}, "and": {"_count": 1, "open": {"_count": 1}}, "to": {"_count": 1, "coax": {"_count": 1}}, "against": {"_count": 1, "you": {"_count": 1}}, "really": {"_count": 1, "knew": {"_count": 1}}}, "subtlety": {"_count": 1, "Potter": {"_count": 1, "said": {"_count": 1}}}, "distinctions": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "shortcomings": {"_count": 1, "that": {"_count": 1, "makes": {"_count": 1}}}, "lamentable": {"_count": 1, "potionmaker": {"_count": 1, "": {"_count": 1}}}, "potionmaker": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "hed": {"_count": 1, "ever": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "needs": {"_count": 1, "": {"_count": 1}}}, "savor": {"_count": 2, "the": {"_count": 1, "pleasure": {"_count": 1}}, "their": {"_count": 1, "freedom": {"_count": 1}}}, "\u2018mind": {"_count": 1, "reading": {"_count": 1, "": {"_count": 1}}}, "Thoughts": {"_count": 2, "are": {"_count": 1, "not": {"_count": 1}}, "of": {"_count": 1, "Fred": {"_count": 1}}}, "perused": {"_count": 3, "by": {"_count": 1, "any": {"_count": 1}}, "the": {"_count": 2, "article": {"_count": 1}, "old": {"_count": 1}}}, "invader": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "manylayered": {"_count": 1, "thing": {"_count": 1, "Potter": {"_count": 1}}}, "delve": {"_count": 2, "into": {"_count": 1, "the": {"_count": 1}}, "further": {"_count": 1, "into": {"_count": 1}}}, "findings": {"_count": 2, "correctly": {"_count": 1, "": {"_count": 1}}, "teach": {"_count": 1, "us": {"_count": 1}}}, "contradict": {"_count": 6, "the": {"_count": 1, "lie": {"_count": 1}}, "you": {"_count": 2, "because": {"_count": 1}, "Minerva": {"_count": 1}}, "her": {"_count": 2, "but": {"_count": 1}, "": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "falsehoods": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "forged": {"_count": 6, "some": {"_count": 1, "kind": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "between": {"_count": 1, "you": {"_count": 1}}, "centuries": {"_count": 1, "ago": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}, "on": {"_count": 1, "through": {"_count": 1}}}, "inadvisable": {"_count": 2, "for": {"_count": 1, "this": {"_count": 1}}, "to": {"_count": 1, "do": {"_count": 1}}}, "represented": {"_count": 4, "such": {"_count": 1, "a": {"_count": 1}}, "much": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "stone": {"_count": 1}, "the": {"_count": 1}}}, "incursion": {"_count": 1, "upon": {"_count": 1, "the": {"_count": 1}}}, "unconsciously": {"_count": 3, "on": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "tensed": {"_count": 2, "in": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}}, "gossamer": {"_count": 1, "strand": {"_count": 1, "which": {"_count": 1}}}, "aptitude": {"_count": 4, "at": {"_count": 1, "resisting": {"_count": 1}}, "tests": {"_count": 2, "at": {"_count": 1}, "do": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "Brace": {"_count": 1, "yourself": {"_count": 1, "now": {"_count": 1}}}, "LegilimensV": {"_count": 2, "Snape": {"_count": 1, "had": {"_count": 1}}, "A": {"_count": 1, "hundred": {"_count": 1}}}, "resistance": {"_count": 9, "the": {"_count": 1, "office": {"_count": 1}}, "rather": {"_count": 1, "than": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "slower": {"_count": 1, "reflexes": {"_count": 1}}, "to": {"_count": 1, "Voldemort": {"_count": 1}}, "instead": {"_count": 1, "of": {"_count": 1}}, "we": {"_count": 1, "must": {"_count": 1}}, "or": {"_count": 1, "take": {"_count": 1}}, "is": {"_count": 1, "crumbling": {"_count": 1}}}, "weal": {"_count": 1, "there": {"_count": 1, "like": {"_count": 1}}}, "scorch": {"_count": 1, "mark": {"_count": 1, "": {"_count": 1}}}, "Stinging": {"_count": 2, "Hex": {"_count": 1, "": {"_count": 1}}, "Jinx": {"_count": 1, "to": {"_count": 1}}}, "Flashes": {"_count": 1, "of": {"_count": 1, "it": {"_count": 1}}}, "Repel": {"_count": 1, "me": {"_count": 1, "with": {"_count": 1}}}, "discipline": {"_count": 4, "than": {"_count": 1, "this": {"_count": 1}}, "your": {"_count": 1, "mind": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Focus": {"_count": 1, "now": {"_count": 1, "": {"_count": 1}}}, "Legilimensl": {"_count": 1, "A": {"_count": 1, "great": {"_count": 1}}}, "wallow": {"_count": 2, "in": {"_count": 2, "sad": {"_count": 1}, "selfpity": {"_count": 1}}}, "Legilimens": {"_count": 4, "He": {"_count": 2, "was": {"_count": 2}}, "myself": {"_count": 1, "to": {"_count": 1}}, "the": {"_count": 1, "world": {"_count": 1}}}, "Realized": {"_count": 1, "what": {"_count": 1, "": {"_count": 1}}}, "ream": {"_count": 1, "of": {"_count": 1, "homework": {"_count": 1}}}, "lamplit": {"_count": 3, "tables": {"_count": 1, "nearby": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}, "square": {"_count": 1, "outside": {"_count": 1}}}, "Pinces": {"_count": 1, "shoes": {"_count": 1, "as": {"_count": 1}}}, "aisles": {"_count": 5, "menacingly": {"_count": 1, "breathing": {"_count": 1}}, "and": {"_count": 1, "up": {"_count": 1}}, "between": {"_count": 1, "two": {"_count": 1}}, "of": {"_count": 1, "junk": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}}, "\u2018Unspeakables": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "pinkfeathered": {"_count": 1, "hat": {"_count": 1, "from": {"_count": 1}}}, "invisibility": {"_count": 1, "beyond": {"_count": 1, "the": {"_count": 1}}}, "secondrateri": {"_count": 1, "chided": {"_count": 1, "the": {"_count": 1}}}, "chided": {"_count": 1, "the": {"_count": 1, "book": {"_count": 1}}}, "Maniacal": {"_count": 1, "laughter": {"_count": 1, "was": {"_count": 1}}}, "Jubilant": {"_count": 2, "ecstatic": {"_count": 1, "triumphant": {"_count": 1}}, "at": {"_count": 1, "her": {"_count": 1}}}, "foray": {"_count": 1, "into": {"_count": 1, "Occlumency": {"_count": 1}}}, "BEETLE": {"_count": 1, "AT": {"_count": 1, "BAY": {"_count": 1}}}, "BAY": {"_count": 1, "Harrys": {"_count": 1, "question": {"_count": 1}}}, "lidded": {"_count": 5, "eyes": {"_count": 5, "an": {"_count": 1}, "and": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "disdainful": {"_count": 1}}}, "incapacitation": {"_count": 1, "of": {"_count": 1, "Frank": {"_count": 1}}}, "MASS": {"_count": 1, "BREAKOUT": {"_count": 1, "FROM": {"_count": 1}}}, "BREAKOUT": {"_count": 1, "FROM": {"_count": 1, "AZKABAN": {"_count": 1}}}, "AZKABAN": {"_count": 1, "MINISTRY": {"_count": 1, "FEARS": {"_count": 1}}}, "FEARS": {"_count": 1, "BLACK": {"_count": 1, "IS": {"_count": 1}}}, "RALLYING": {"_count": 1, "POINT": {"_count": 1, "FOR": {"_count": 1}}}, "POINT": {"_count": 1, "FOR": {"_count": 1, "OLD": {"_count": 1}}}, "individuals": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "who": {"_count": 1, "include": {"_count": 1}}, "be": {"_count": 1, "approached": {"_count": 1}}}, "breakouts": {"_count": 2, "are": {"_count": 1, "unrelated": {"_count": 1}}, "from": {"_count": 1, "Azkaban": {"_count": 1}}}, "unrelated": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "what": {"_count": 1}}}, "magnitude": {"_count": 3, "suggests": {"_count": 1, "outside": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}}, "ideally": {"_count": 1, "placed": {"_count": 1, "to": {"_count": 1}}}, "rallied": {"_count": 3, "around": {"_count": 1, "Black": {"_count": 1}}, "almost": {"_count": 2, "at": {"_count": 2}}}, "cautious": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "options": {"_count": 6, "does": {"_count": 1, "he": {"_count": 1}}, "with": {"_count": 1, "our": {"_count": 1}}, "Draco": {"_count": 1, "": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 2}, ".": {"_count": 1}}}, "\u2018Sorry": {"_count": 1, "everyone": {"_count": 1, "Dumbledore": {"_count": 1}}}, "liars": {"_count": 1, "hasnt": {"_count": 1, "he": {"_count": 1}}}, "yolk": {"_count": 1, "falling": {"_count": 1, "into": {"_count": 1}}}, "TRAGIC": {"_count": 1, "DEMISE": {"_count": 1, "OF": {"_count": 1}}}, "DEMISE": {"_count": 1, "OF": {"_count": 1, "MINISTRY": {"_count": 1}}}, "WORKER": {"_count": 1, "St": {"_count": 1, "": {"_count": 1}}}, "49": {"_count": 1, "was": {"_count": 1, "discovered": {"_count": 1}}}, "pottedplant": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "workplace": {"_count": 2, "accident": {"_count": 1, "some": {"_count": 1}}, "and": {"_count": 1, "as": {"_count": 1}}}, "Miriam": {"_count": 1, "Strout": {"_count": 1, "who": {"_count": 1}}}, "Strout": {"_count": 3, "who": {"_count": 1, "was": {"_count": 1}}, "busy": {"_count": 1, "over": {"_count": 1}}, "encouraged": {"_count": 1, "Mr": {"_count": 1}}}, "Bodes": {"_count": 2, "ward": {"_count": 1, "at": {"_count": 1}}, "bedside": {"_count": 1, "table": {"_count": 1}}}, "spokeswizard": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "wards": {"_count": 1, "but": {"_count": 1, "it": {"_count": 1}}}, "mobility": {"_count": 1, "improved": {"_count": 1, "Healer": {"_count": 1}}}, "Flitterbloom": {"_count": 1, "but": {"_count": 1, "a": {"_count": 1}}}, "convalescent": {"_count": 1, "Mr": {"_count": 1, "Bode": {"_count": 1}}}, "throttled": {"_count": 1, "him": {"_count": 1, "instantly": {"_count": 1}}}, "Unspeakable": {"_count": 1, "he": {"_count": 1, "worked": {"_count": 1}}}, "assumption": {"_count": 2, "of": {"_count": 1, "airiness": {"_count": 1}}, "that": {"_count": 1, "Dumbledore": {"_count": 1}}}, "airiness": {"_count": 2, "he": {"_count": 1, "waved": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "concussing": {"_count": 1, "a": {"_count": 1, "frightenedlooking": {"_count": 1}}}, "frightenedlooking": {"_count": 2, "Professor": {"_count": 1, "Vector": {"_count": 1}}, "until": {"_count": 1, "at": {"_count": 1}}}, "scale": {"_count": 1, "rot": {"_count": 1, "an": {"_count": 1}}}, "Bes": {"_count": 2, "go": {"_count": 1, "an": {"_count": 1}}, "wiz": {"_count": 1, "and": {"_count": 1}}}, "mb": {"_count": 1, "a": {"_count": 1, "bit": {"_count": 1}}}, "chili": {"_count": 1, "powder": {"_count": 1, "on": {"_count": 1}}}, "tailsll": {"_count": 1, "be": {"_count": 1, "hangin": {"_count": 1}}}, "freakish": {"_count": 1, "death": {"_count": 1, "of": {"_count": 1}}}, "employee": {"_count": 2, "in": {"_count": 1, "St": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "convicts": {"_count": 2, "had": {"_count": 1, "been": {"_count": 1}}, "pictured": {"_count": 1, "": {"_count": 1}}}, "dumping": {"_count": 1, "far": {"_count": 1, "too": {"_count": 1}}}, "Screechsnap": {"_count": 1, "seedlings": {"_count": 1, "causing": {"_count": 1}}}, "detected": {"_count": 8, "a": {"_count": 1, "slight": {"_count": 1}}, "only": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "open": {"_count": 1}}, "him": {"_count": 1, "doing": {"_count": 1}}, "something": {"_count": 1, "special": {"_count": 1}}, "They": {"_count": 1, "had": {"_count": 1}}, "underneath": {"_count": 1, "the": {"_count": 1}}, "spells": {"_count": 1, "of": {"_count": 1}}}, "hostile": {"_count": 1, "now": {"_count": 1, "and": {"_count": 1}}}, "speakers": {"_count": 2, "were": {"_count": 1, "not": {"_count": 1}}, "one": {"_count": 1, "with": {"_count": 1}}}, "doubters": {"_count": 1, "now": {"_count": 1, "seemed": {"_count": 1}}}, "expounding": {"_count": 1, "since": {"_count": 1, "the": {"_count": 1}}}, "Twentysix": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "they": {"_count": 1}}}, "Snaps": {"_count": 1, "got": {"_count": 1, "nothing": {"_count": 1}}}, "recommended": {"_count": 1, "essence": {"_count": 1, "of": {"_count": 1}}}, "humbled": {"_count": 1, "Umbridge": {"_count": 1, "a": {"_count": 1}}}, "beloved": {"_count": 5, "Fudges": {"_count": 1, "nose": {"_count": 1}}, "pet": {"_count": 1, "had": {"_count": 1}}, "Regulus": {"_count": 1, "who": {"_count": 1}}, "master": {"_count": 1, "I": {"_count": 1}}, "castle": {"_count": 1, "his": {"_count": 1}}}, "Ornithomancy": {"_count": 1, "and": {"_count": 1, "Heptomology": {"_count": 1}}}, "Heptomology": {"_count": 1, "insisting": {"_count": 1, "that": {"_count": 1}}}, "occurrence": {"_count": 1, "as": {"_count": 1, "she": {"_count": 1}}}, "ousted": {"_count": 2, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "crup": {"_count": 1, "a": {"_count": 1, "creature": {"_count": 1}}}, "Russell": {"_count": 1, "terrier": {"_count": 1, "except": {"_count": 1}}}, "terrier": {"_count": 2, "except": {"_count": 1, "for": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}}, "jeopardized": {"_count": 1, "his": {"_count": 1, "job": {"_count": 1}}}, "depriving": {"_count": 1, "him": {"_count": 1, "of": {"_count": 1}}}, "redoubling": {"_count": 1, "his": {"_count": 1, "efforts": {"_count": 1}}}, "torturers": {"_count": 2, "escape": {"_count": 1, "in": {"_count": 1}}, "surrounded": {"_count": 1, "him": {"_count": 1}}}, "deflecting": {"_count": 2, "minor": {"_count": 1, "jinxes": {"_count": 1}}, "the": {"_count": 1, "curse": {"_count": 1}}}, "Nowadays": {"_count": 1, "however": {"_count": 1, "his": {"_count": 1}}}, "lurches": {"_count": 1, "of": {"_count": 1, "annoyance": {"_count": 1}}}, "fluctuations": {"_count": 1, "in": {"_count": 1, "Voldemorts": {"_count": 1}}}, "sensitivity": {"_count": 2, "firmly": {"_count": 1, "from": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "fever": {"_count": 1, "or": {"_count": 1, "something": {"_count": 1}}}, "snappishly": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "dubiously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "uneaten": {"_count": 1, "toast": {"_count": 1, "in": {"_count": 1}}}, "plight": {"_count": 1, "when": {"_count": 1, "he": {"_count": 1}}}, "Pride": {"_count": 1, "of": {"_count": 1, "Portree": {"_count": 1}}}, "Portree": {"_count": 1, "is": {"_count": 1, "that": {"_count": 1}}}, "exaggerated": {"_count": 1, "glances": {"_count": 1, "back": {"_count": 1}}}, "pavements": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Hogsmeaders": {"_count": 1, "were": {"_count": 1, "looking": {"_count": 1}}}, "Puddifoots": {"_count": 4, "": {"_count": 1, "?": {"_count": 1}}, "Tea": {"_count": 3, "Shop": {"_count": 3}}}, "frills": {"_count": 1, "or": {"_count": 1, "bows": {"_count": 1}}}, "Cute": {"_count": 1, "isnt": {"_count": 1, "it": {"_count": 1}}}, "cherubs": {"_count": 1, "that": {"_count": 1, "were": {"_count": 1}}}, "couples": {"_count": 4, "all": {"_count": 1, "of": {"_count": 1}}, "surrounded": {"_count": 1, "them": {"_count": 1}}, "broke": {"_count": 1, "apart": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "mdears": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Puddifoot": {"_count": 1, "a": {"_count": 1, "very": {"_count": 1}}}, "Daviess": {"_count": 3, "with": {"_count": 1, "great": {"_count": 1}}, "so": {"_count": 1, "I": {"_count": 1}}, "first": {"_count": 1, "goal": {"_count": 1}}}, "coffees": {"_count": 2, "please": {"_count": 1, "said": {"_count": 1}}, "to": {"_count": 1, "arrive": {"_count": 1}}}, "steamed": {"_count": 1, "up": {"_count": 1, "he": {"_count": 1}}}, "paintwork": {"_count": 2, "and": {"_count": 1, "received": {"_count": 1}}, "below": {"_count": 1, "a": {"_count": 1}}}, "cherub": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "threw": {"_count": 1, "another": {"_count": 1}}, "floated": {"_count": 1, "over": {"_count": 1}}}, "abusing": {"_count": 4, "her": {"_count": 1, "but": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 2, "Minister": {"_count": 1}, "Apparition": {"_count": 1}}}, "canvassed": {"_count": 1, "during": {"_count": 1, "D": {"_count": 1}}}, "slurping": {"_count": 1, "noises": {"_count": 1, "coming": {"_count": 1}}}, "fount": {"_count": 1, "of": {"_count": 1, "mingled": {"_count": 1}}}, "glacial": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mmmention": {"_count": 1, "me": {"_count": 1, "at": {"_count": 1}}}, "uuunderstand": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "ttoo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "nightmarishly": {"_count": 1, "wrong": {"_count": 1, "Roger": {"_count": 1}}}, "unglued": {"_count": 1, "herself": {"_count": 1, "to": {"_count": 1}}}, "Pperhaps": {"_count": 1, "it": {"_count": 1, "would": {"_count": 1}}}, "ppaid": {"_count": 1, "and": {"_count": 1, "you": {"_count": 1}}}, "GGranger": {"_count": 1, "like": {"_count": 1, "you": {"_count": 1}}}, "tuneful": {"_count": 1, "tinkle": {"_count": 1, "": {"_count": 1}}}, "Women": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "splashy": {"_count": 1, "run": {"_count": 1, "and": {"_count": 1}}}, "outsiders": {"_count": 3, "like": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "who": {"_count": 1, "like": {"_count": 1}}}, "diffrence": {"_count": 1, "havin": {"_count": 1, "a": {"_count": 1}}}, "seeinyeh": {"_count": 1, "Harry": {"_count": 1, "": {"_count": 1}}}, "unlikeliest": {"_count": 1, "pair": {"_count": 1, "of": {"_count": 1}}}, "ex": {"_count": 1, "journalist": {"_count": 1, "on": {"_count": 1}}}, "journalist": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "long": {"_count": 1}}}, "slurp": {"_count": 1, "of": {"_count": 1, "her": {"_count": 1}}}, "Unemployment": {"_count": 1, "did": {"_count": 1, "not": {"_count": 1}}}, "Prissy": {"_count": 1, "you": {"_count": 1, "just": {"_count": 1}}}, "Betrayed": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Distraught": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Misunderstood": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "garbage": {"_count": 1, "Dumbledores": {"_count": 1, "been": {"_count": 1}}}, "dozenodd": {"_count": 1, "Death": {"_count": 1, "Eaters": {"_count": 1}}}, "Accuses": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "subheading": {"_count": 1, "\u2018Harry": {"_count": 1, "Potter": {"_count": 1}}}, "\u2018Disturbed": {"_count": 1, "teenage": {"_count": 1, "survivor": {"_count": 1}}}, "rapturous": {"_count": 1, "expression": {"_count": 1, "died": {"_count": 1}}}, "undiscovered": {"_count": 1, "Death": {"_count": 1, "Eaters": {"_count": 1}}}, "blotted": {"_count": 1, "the": {"_count": 1, "front": {"_count": 1}}}, "raincoat": {"_count": 1, "still": {"_count": 1, "staring": {"_count": 1}}}, "exists": {"_count": 12, "to": {"_count": 2, "tell": {"_count": 1}, "sell": {"_count": 1}}, "if": {"_count": 2, "you": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "are": {"_count": 1, "unknown": {"_count": 1}}, "then": {"_count": 2, "the": {"_count": 1}, "Mr": {"_count": 1}}, "said": {"_count": 1, "Hermione": {"_count": 1}}, "only": {"_count": 1, "": {"_count": 1}}, "therefore": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}}, "chipping": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "Sucking": {"_count": 1, "on": {"_count": 1, "her": {"_count": 1}}}, "publishes": {"_count": 1, "important": {"_count": 1, "stories": {"_count": 1}}}, "newsletter": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Twentyfive": {"_count": 1, "Ways": {"_count": 1, "to": {"_count": 1}}}, "Ways": {"_count": 3, "to": {"_count": 3, "Mingle": {"_count": 1}, "Charm": {"_count": 2}}}, "Mingle": {"_count": 1, "with": {"_count": 1, "Muggles": {"_count": 1}}}, "andFly": {"_count": 1, "Sale": {"_count": 1, "": {"_count": 1}}}, "Sale": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "\u2018Important": {"_count": 1, "stories": {"_count": 1, "he": {"_count": 1}}}, "publishing": {"_count": 2, "it": {"_count": 1, "": {"_count": 1}}, "guides": {"_count": 1, "to": {"_count": 1}}}, "Quibbleii": {"_count": 1, "she": {"_count": 1, "said": {"_count": 1}}}, "fee": {"_count": 2, "am": {"_count": 1, "I": {"_count": 1}}, "two": {"_count": 1, "years": {"_count": 1}}}, "authorities": {"_count": 4, "that": {"_count": 1, "you": {"_count": 1}}, "were": {"_count": 1, "perplexed": {"_count": 1}}, "agree": {"_count": 1, "that": {"_count": 1}}, "are": {"_count": 1, "attributing": {"_count": 1}}}, "insiders": {"_count": 1, "account": {"_count": 1, "of": {"_count": 1}}}, "SEEN": {"_count": 3, "AND": {"_count": 1, "UNFORESEEN": {"_count": 1}}, "Sirius": {"_count": 1, "told": {"_count": 1}}, "ENOUGH": {"_count": 1, "I": {"_count": 1}}}, "UNFORESEEN": {"_count": 1, "Luna": {"_count": 1, "said": {"_count": 1}}}, "Snorkacks": {"_count": 6, "": {"_count": 4, ".": {"_count": 2}, "!": {"_count": 1}, "?": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "chickenandham": {"_count": 1, "pie": {"_count": 1, "on": {"_count": 1}}}, "jumps": {"_count": 2, "up": {"_count": 1, "right": {"_count": 1}}, "out": {"_count": 1, "at": {"_count": 1}}}, "\u2018111": {"_count": 1, "see": {"_count": 1, "you": {"_count": 1}}}, "snog": {"_count": 3, "Cedric": {"_count": 1, "in": {"_count": 1}}, "Krum": {"_count": 1, "": {"_count": 1}}, "me": {"_count": 1, "too": {"_count": 1}}}, "overemotional": {"_count": 1, "toddler": {"_count": 1, "you": {"_count": 1}}}, "toddler": {"_count": 1, "you": {"_count": 1, "shouldnt": {"_count": 1}}}, "maddeningly": {"_count": 4, "patient": {"_count": 1, "air": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "smug": {"_count": 1, "": {"_count": 1}}}, "translating": {"_count": 1, "mad": {"_count": 1, "things": {"_count": 1}}}, "Rune": {"_count": 3, "books": {"_count": 1, "": {"_count": 1}}, "translation": {"_count": 1, "it": {"_count": 1}}, "Translation": {"_count": 1, "": {"_count": 1}}}, "Hieroglyphs": {"_count": 1, "and": {"_count": 1, "Logograms": {"_count": 1}}}, "Logograms": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "disconsolately": {"_count": 2, "at": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "Spellmans": {"_count": 5, "Syllabary": {"_count": 5, "and": {"_count": 1}, "she": {"_count": 1}, "": {"_count": 2}, "lay": {"_count": 1}}}, "Syllabary": {"_count": 5, "and": {"_count": 1, "caught": {"_count": 1}}, "she": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "lay": {"_count": 1, "open": {"_count": 1}}}, "incredulity": {"_count": 4, "on": {"_count": 2, "their": {"_count": 1}, "Nevilles": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "depend": {"_count": 1, "on": {"_count": 1, "Rons": {"_count": 1}}}, "goalkeeping": {"_count": 2, "ability": {"_count": 1, "": {"_count": 1}}, "record": {"_count": 1, "": {"_count": 1}}}, "closerun": {"_count": 1, "contest": {"_count": 1, "between": {"_count": 1}}}, "contest": {"_count": 1, "between": {"_count": 1, "Rons": {"_count": 1}}}, "Summerbys": {"_count": 2, "nose": {"_count": 1, "so": {"_count": 1}}, "got": {"_count": 1, "a": {"_count": 1}}}, "goalscoring": {"_count": 1, "to": {"_count": 1, "Seeking": {"_count": 1}}}, "faith": {"_count": 7, "she": {"_count": 1, "was": {"_count": 1}}, "in": {"_count": 3, "such": {"_count": 1}, "the": {"_count": 1}, "you": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "at": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "gusto": {"_count": 3, "by": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "having": {"_count": 1, "studied": {"_count": 1}}}, "doggypaddle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "plausible": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Kirkes": {"_count": 1, "ankle": {"_count": 1, "if": {"_count": 1}}}, "squatly": {"_count": 1, "in": {"_count": 1, "her": {"_count": 1}}}, "languidly": {"_count": 1, "removing": {"_count": 1, "his": {"_count": 1}}}, "recipients": {"_count": 1, "name": {"_count": 1, "and": {"_count": 1}}}, "jockeying": {"_count": 1, "for": {"_count": 1, "position": {"_count": 1}}}, "salt": {"_count": 6, "and": {"_count": 3, "each": {"_count": 1}, "hear": {"_count": 1}, "seaweed": {"_count": 1}}, "cellar": {"_count": 1, "in": {"_count": 1}}, "spray": {"_count": 1, "hitting": {"_count": 1}}, "the": {"_count": 1, "sea": {"_count": 1}}}, "cylindrical": {"_count": 1, "package": {"_count": 1, "": {"_count": 1}}}, "packaging": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "containing": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "furled": {"_count": 3, "copy": {"_count": 1, "of": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "scroll": {"_count": 1, "it": {"_count": 1}}}, "Marchs": {"_count": 1, "edition": {"_count": 1, "of": {"_count": 1}}}, "SPEAKS": {"_count": 1, "OUT": {"_count": 1, "AT": {"_count": 1}}}, "TRUTH": {"_count": 2, "ABOUT": {"_count": 1, "HEWHOMUSTNOTBE": {"_count": 1}}, "AT": {"_count": 1, "LAST": {"_count": 1}}}, "HEWHOMUSTNOTBE": {"_count": 1, "NAMED": {"_count": 1, "AND": {"_count": 1}}}, "NAMED": {"_count": 1, "AND": {"_count": 1, "THE": {"_count": 1}}}, "RETURN": {"_count": 1, "Its": {"_count": 1, "good": {"_count": 1}}}, "recommends": {"_count": 1, "you": {"_count": 1, "try": {"_count": 1}}}, "Paisley": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "letteropening": {"_count": 1, "with": {"_count": 1, "enthusiasm": {"_count": 1}}}, "\u2018Having": {"_count": 1, "read": {"_count": 1, "your": {"_count": 1}}}, "unfairly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "converted": {"_count": 2, "and": {"_count": 1, "she": {"_count": 1}}, "the": {"_count": 1, "rest": {"_count": 1}}}, "incandescent": {"_count": 1, "with": {"_count": 1, "rage": {"_count": 1}}}, "trips": {"_count": 6, "for": {"_count": 1, "you": {"_count": 1}}, "would": {"_count": 1, "still": {"_count": 1}}, "they": {"_count": 1, "find": {"_count": 1}}, "there": {"_count": 1, "and": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}, "into": {"_count": 1, "an": {"_count": 1}}}, "Twentyseven": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bombarding": {"_count": 1, "me": {"_count": 1, "with": {"_count": 1}}}, "extracts": {"_count": 1, "from": {"_count": 1, "textbooks": {"_count": 1}}}, "textbooks": {"_count": 5, "if": {"_count": 1, "anyone": {"_count": 1}}, "that": {"_count": 2, "sort": {"_count": 1}, "bore": {"_count": 1}}, "were": {"_count": 1, "piled": {"_count": 1}}, "though": {"_count": 1, "admittedly": {"_count": 1}}}, "peruse": {"_count": 2, "it": {"_count": 1, "again": {"_count": 1}}, "his": {"_count": 1, "copy": {"_count": 1}}}, "unbelievably": {"_count": 2, "no": {"_count": 1, "sooner": {"_count": 1}}, "cheerful": {"_count": 1, "all": {"_count": 1}}}, "weedylooking": {"_count": 1, "boy": {"_count": 1, "Hermione": {"_count": 1}}}, "Theodore": {"_count": 1, "Nott": {"_count": 1, "": {"_count": 1}}}, "browsed": {"_count": 1, "the": {"_count": 1, "shelves": {"_count": 1}}}, "Partial": {"_count": 1, "Vanishment": {"_count": 1, "and": {"_count": 1}}}, "Vanishment": {"_count": 1, "and": {"_count": 1, "Goyle": {"_count": 1}}}, "reprinting": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Crumple": {"_count": 5, "Horned": {"_count": 4, "Snorkacks": {"_count": 3}, "Snorkack": {"_count": 1}}, "bang": {"_count": 1, "Headed": {"_count": 1}}}, "Horned": {"_count": 4, "Snorkacks": {"_count": 3, "": {"_count": 1}, "in": {"_count": 1}, "said": {"_count": 1}}, "Snorkack": {"_count": 1, "": {"_count": 1}}}, "daringly": {"_count": 1, "Fred": {"_count": 1, "and": {"_count": 1}}}, "Enlargement": {"_count": 1, "Charm": {"_count": 1, "on": {"_count": 1}}}, "proceedings": {"_count": 6, "occasionally": {"_count": 1, "saying": {"_count": 1}}, "he": {"_count": 1, "found": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "which": {"_count": 1, "would": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}}, "morons": {"_count": 1, "and": {"_count": 1, "Eat": {"_count": 1}}}, "interfered": {"_count": 2, "with": {"_count": 1, "her": {"_count": 1}}, "at": {"_count": 1, "Keeper": {"_count": 1}}}, "disconnected": {"_count": 2, "words": {"_count": 1, "like": {"_count": 1}}, "now": {"_count": 1, "his": {"_count": 1}}}, "progressively": {"_count": 1, "higher": {"_count": 1, "voice": {"_count": 1}}}, "umpteenth": {"_count": 2, "time": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}}, "pulsed": {"_count": 3, "with": {"_count": 1, "anger": {"_count": 1}}, "like": {"_count": 1, "an": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "relinquished": {"_count": 5, "his": {"_count": 1, "grip": {"_count": 1}}, "Harry": {"_count": 1, "at": {"_count": 1}}, "its": {"_count": 1, "hold": {"_count": 1}}, "Dobbys": {"_count": 1, "hand": {"_count": 1}}, "him": {"_count": 1, "clapped": {"_count": 1}}}, "agespotted": {"_count": 1, "mirror": {"_count": 1, "hung": {"_count": 1}}}, "NOOOOOOOOO": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Rookwoods": {"_count": 3, "going": {"_count": 1, "to": {"_count": 1}}, "just": {"_count": 1, "told": {"_count": 1}}, "told": {"_count": 1, "Voldemort": {"_count": 1}}}, "deathly": {"_count": 2, "white": {"_count": 1, "and": {"_count": 1}}, "stillness": {"_count": 1, "of": {"_count": 1}}}, "Arrested": {"_count": 1, "for": {"_count": 1, "trying": {"_count": 1}}}, "Voldemortll": {"_count": 2, "send": {"_count": 1, "Rookwood": {"_count": 1}}, "say": {"_count": 1, "about": {"_count": 1}}}, "tellingoff": {"_count": 1, "from": {"_count": 1, "Hermione": {"_count": 1}}}, "concerning": {"_count": 5, "humiliations": {"_count": 1, "Dudley": {"_count": 1}}, "a": {"_count": 1, "man": {"_count": 1}}, "various": {"_count": 1, "Wizarding": {"_count": 1}}, "your": {"_count": 1, "adventure": {"_count": 1}}, "the": {"_count": 1, "wizard": {"_count": 1}}}, "humiliations": {"_count": 1, "Dudley": {"_count": 1, "and": {"_count": 1}}}, "images": {"_count": 10, "and": {"_count": 1, "sound": {"_count": 1}}, "flew": {"_count": 1, "from": {"_count": 1}}, "of": {"_count": 2, "Malfoy": {"_count": 1}, "Fred": {"_count": 1}}, "in": {"_count": 1, "your": {"_count": 1}}, "were": {"_count": 1, "racing": {"_count": 1}}, "swarmed": {"_count": 1, "into": {"_count": 1}}, "which": {"_count": 1, "were": {"_count": 1}}, "sharp": {"_count": 1, "as": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "Remind": {"_count": 2, "me": {"_count": 2, "why": {"_count": 1}, "what": {"_count": 1}}}, "Protegol": {"_count": 4, "Snape": {"_count": 1, "staggered": {"_count": 1}}, "The": {"_count": 2, "jet": {"_count": 1}, "invisible": {"_count": 1}}, "His": {"_count": 1, "Shield": {"_count": 1}}}, "teenager": {"_count": 2, "sat": {"_count": 1, "alone": {"_count": 1}}, "wiry": {"_count": 1, "and": {"_count": 1}}}, "blackwalled": {"_count": 1, "blackfloored": {"_count": 1, "circular": {"_count": 1}}}, "blackfloored": {"_count": 1, "circular": {"_count": 1, "room": {"_count": 1}}}, "blueflamed": {"_count": 1, "candles": {"_count": 1, "and": {"_count": 1}}}, "firing": {"_count": 13, "up": {"_count": 5, "again": {"_count": 1}, "at": {"_count": 3}, "": {"_count": 1}}, "review": {"_count": 1, "questions": {"_count": 1}}, "spells": {"_count": 2, "down": {"_count": 1}, "from": {"_count": 1}}, "hexes": {"_count": 1, "indiscriminately": {"_count": 1}}, "off": {"_count": 2, "everywhere": {"_count": 1}, "jinxes": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}, "a": {"_count": 1, "gun": {"_count": 1}}}, "Others": {"_count": 1, "had": {"_count": 1, "crammed": {"_count": 1}}}, "seams": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "callously": {"_count": 1, "amused": {"_count": 1, "and": {"_count": 1}}}, "Incapable": {"_count": 1, "though": {"_count": 1, "you": {"_count": 1}}}, "inspections": {"_count": 1, "and": {"_count": 1, "lack": {"_count": 1}}}, "HHogwarts": {"_count": 1, "is": {"_count": 1, "mmy": {"_count": 1}}}, "hhome": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "countersigned": {"_count": 1, "the": {"_count": 1, "order": {"_count": 1}}}, "paroxysms": {"_count": 1, "of": {"_count": 1, "grief": {"_count": 1}}}, "Blow": {"_count": 1, "your": {"_count": 1, "nose": {"_count": 1}}}, "singularly": {"_count": 4, "unpleasant": {"_count": 1, "little": {"_count": 1}}, "humorless": {"_count": 1, "laugh": {"_count": 1}}, "uninterested": {"_count": 1, "in": {"_count": 1}}, "mirthless": {"_count": 1, "smile": {"_count": 1}}}, "Dismissal": {"_count": 1, "signed": {"_count": 1, "by": {"_count": 1}}}, "resides": {"_count": 2, "with": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "his": {"_count": 1}}}, "ggo": {"_count": 1, "Dumbledore": {"_count": 1, "": {"_count": 1}}}, "shshall": {"_count": 1, "1leave": {"_count": 1, "Hogwarts": {"_count": 1}}}, "1leave": {"_count": 1, "Hogwarts": {"_count": 1, "and": {"_count": 1}}}, "sseek": {"_count": 1, "my": {"_count": 1, "fortune": {"_count": 1}}}, "guided": {"_count": 2, "her": {"_count": 1, "past": {"_count": 1}}, "his": {"_count": 1, "headmaster": {"_count": 1}}}, "trunksl": {"_count": 1, "and": {"_count": 1, "Professor": {"_count": 1}}}, "lodgings": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Twentytwo": {"_count": 1, "the": {"_count": 1, "Ministry": {"_count": 1}}}, "CENTAUR": {"_count": 1, "AND": {"_count": 1, "THE": {"_count": 1}}}, "SNEAK": {"_count": 2, "Ill": {"_count": 1, "bet": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "daffodils": {"_count": 1, "not": {"_count": 1, "the": {"_count": 1}}}, "honking": {"_count": 1, "ones": {"_count": 1, "that": {"_count": 1}}}, "Impossible": {"_count": 2, "said": {"_count": 2, "Ron": {"_count": 1}, "Lupin": {"_count": 1}}}, "appointing": {"_count": 1, "a": {"_count": 1, "new": {"_count": 1}}}, "bypassed": {"_count": 2, "the": {"_count": 1, "marble": {"_count": 1}}, "thought": {"_count": 1, "": {"_count": 1}}}, "Classroom": {"_count": 1, "eleven": {"_count": 1, "was": {"_count": 1}}}, "groundfloor": {"_count": 1, "corridor": {"_count": 1, "leading": {"_count": 1}}}, "storeroom": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "springily": {"_count": 1, "mossy": {"_count": 1, "and": {"_count": 1}}}, "hoof": {"_count": 2, "shaped": {"_count": 1, "bruise": {"_count": 1}}, "descended": {"_count": 1, "upon": {"_count": 1}}}, "Herd": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "playthings": {"_count": 1, "of": {"_count": 1, "humans": {"_count": 1}}}, "betrayal": {"_count": 5, "of": {"_count": 3, "our": {"_count": 1}, "the": {"_count": 1}, "trust": {"_count": 1}}, "even": {"_count": 1, "from": {"_count": 1}}, "was": {"_count": 1, "almost": {"_count": 1}}}, "dimmed": {"_count": 4, "so": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}, "everyone": {"_count": 1, "else": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "oohs": {"_count": 1, "and": {"_count": 1, "gasps": {"_count": 1}}}, "mapped": {"_count": 1, "the": {"_count": 1, "stars": {"_count": 1}}}, "Astrology": {"_count": 1, "with": {"_count": 1, "us": {"_count": 1}}}, "Trivial": {"_count": 1, "hurts": {"_count": 1, "tiny": {"_count": 1}}}, "significance": {"_count": 2, "than": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "what": {"_count": 1}}}, "scurryings": {"_count": 3, "of": {"_count": 1, "ants": {"_count": 1}}, "and": {"_count": 2, "prowlings": {"_count": 1}, "scrapings": {"_count": 1}}}, "unaffected": {"_count": 1, "by": {"_count": 1, "planetary": {"_count": 1}}}, "blinkered": {"_count": 1, "and": {"_count": 1, "fettered": {"_count": 1}}}, "fettered": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "limitations": {"_count": 1, "of": {"_count": 1, "your": {"_count": 1}}}, "wastes": {"_count": 1, "her": {"_count": 1, "time": {"_count": 1}}}, "wisdom": {"_count": 8, "of": {"_count": 2, "centaurs": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "displayed": {"_count": 1}}, "Rita": {"_count": 1, "Skeeter": {"_count": 1}}, "never": {"_count": 1, "goes": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "impersonal": {"_count": 1, "and": {"_count": 1, "impartial": {"_count": 1}}}, "tides": {"_count": 1, "of": {"_count": 1, "evil": {"_count": 1}}}, "decade": {"_count": 1, "the": {"_count": 1, "indications": {"_count": 1}}}, "indications": {"_count": 1, "have": {"_count": 1, "been": {"_count": 1}}}, "bringer": {"_count": 1, "of": {"_count": 1, "battle": {"_count": 1}}}, "shines": {"_count": 1, "brightly": {"_count": 1, "above": {"_count": 1}}}, "observation": {"_count": 3, "of": {"_count": 1, "fume": {"_count": 1}}, "which": {"_count": 1, "of": {"_count": 1}}, "and": {"_count": 1, "Apparition": {"_count": 1}}}, "fume": {"_count": 1, "and": {"_count": 1, "flame": {"_count": 1}}}, "sage": {"_count": 1, "and": {"_count": 1, "mallowsweet": {"_count": 1}}}, "mallowsweet": {"_count": 2, "there": {"_count": 1, "on": {"_count": 1}}, "fire": {"_count": 1, "": {"_count": 1}}}, "competent": {"_count": 2, "and": {"_count": 1, "finished": {"_count": 1}}, "teacher": {"_count": 1, "": {"_count": 1}}}, "foolproof": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "ways": {"_count": 1, "of": {"_count": 1}}}, "impassively": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "squally": {"_count": 1, "April": {"_count": 1, "his": {"_count": 1}}}, "attemps": {"_count": 1, "cornin": {"_count": 1, "on": {"_count": 1}}}, "importan": {"_count": 2, "than": {"_count": 1, "keepin": {"_count": 1}}, "ter": {"_count": 1, "me": {"_count": 1}}}, "degree": {"_count": 3, "but": {"_count": 1, "Hannah": {"_count": 1}}, "though": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "damage": {"_count": 1}}}, "Calming": {"_count": 1, "Draught": {"_count": 1, "from": {"_count": 1}}}, "Outstanding": {"_count": 7, "in": {"_count": 1, "their": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "O": {"_count": 3, "": {"_count": 2}, "Poor": {"_count": 1}}, "at": {"_count": 1, "Defense": {"_count": 1}}, "wizard": {"_count": 1, "outstanding": {"_count": 1}}}, "killjoy": {"_count": 1, "said": {"_count": 1, "Cho": {"_count": 1}}}, "swanshaped": {"_count": 1, "Patronus": {"_count": 1, "soar": {"_count": 1}}}, "otter": {"_count": 4, "was": {"_count": 1, "gamboling": {"_count": 1}}, "burst": {"_count": 1, "from": {"_count": 1}}, "soaring": {"_count": 1, "alongside": {"_count": 1}}, "twist": {"_count": 1, "in": {"_count": 1}}}, "gamboling": {"_count": 3, "around": {"_count": 2, "her": {"_count": 1}, "the": {"_count": 1}}, "and": {"_count": 1, "frisking": {"_count": 1}}}, "selfpunishment": {"_count": 1, "made": {"_count": 1, "to": {"_count": 1}}}, "cushioned": {"_count": 1, "by": {"_count": 1, "his": {"_count": 1}}}, "\u2018she": {"_count": 1, "Dobby": {"_count": 1, "": {"_count": 1}}}, "induce": {"_count": 3, "such": {"_count": 1, "fear": {"_count": 1}}, "panic": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "elevated": {"_count": 1}}}, "WAITING": {"_count": 1, "FOR": {"_count": 1, "": {"_count": 1}}}, "scrum": {"_count": 2, "at": {"_count": 2, "the": {"_count": 2}}}, "dragonshaped": {"_count": 1, "vase": {"_count": 1, "": {"_count": 1}}}, "Trip": {"_count": 1, "Jinx": {"_count": 1, "Potter": {"_count": 1}}}, "jubilantly": {"_count": 3, "at": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}}, "vicelike": {"_count": 2, "grip": {"_count": 1, "and": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}}, "bathrooms": {"_count": 4, "Miss": {"_count": 1, "Parkinson": {"_count": 1}}, "dropped": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "in": {"_count": 1}}, "between": {"_count": 1, "classes": {"_count": 1}}}, "serene": {"_count": 2, "the": {"_count": 1, "tips": {"_count": 1}}, "silverbearded": {"_count": 1, "wisdom": {"_count": 1}}}, "toughlooking": {"_count": 1, "wizard": {"_count": 1, "Harry": {"_count": 1}}}, "shamming": {"_count": 1, "sleep": {"_count": 1, "tonight": {"_count": 1}}}, "callous": {"_count": 2, "pleasure": {"_count": 1, "Harry": {"_count": 1}}, "voice": {"_count": 1, "and": {"_count": 1}}}, "inattention": {"_count": 1, "to": {"_count": 1, "steal": {"_count": 1}}}, "amended": {"_count": 3, "Fudge": {"_count": 1, "angrily": {"_count": 1}}, "Hagrid": {"_count": 1, "": {"_count": 1}}, "Ted": {"_count": 1, "hastily": {"_count": 1}}}, "informant": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Mariettas": {"_count": 4, "mother": {"_count": 1, "Minister": {"_count": 1}}, "concealed": {"_count": 1, "face": {"_count": 1}}, "face": {"_count": 2, "": {"_count": 2}}}, "Edgecombe": {"_count": 11, "from": {"_count": 1, "the": {"_count": 1}}, "here": {"_count": 1, "came": {"_count": 1}}, "is": {"_count": 2, "here": {"_count": 1}, "using": {"_count": 1}}, "said": {"_count": 1, "Umbridge": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "you": {"_count": 1, "told": {"_count": 1}}, "tipped": {"_count": 1, "me": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}}, "disfigured": {"_count": 1, "by": {"_count": 1, "a": {"_count": 1}}}, "pustules": {"_count": 3, "that": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "unimpaired": {"_count": 1, "said": {"_count": 1, "Umbridge": {"_count": 1}}}, "insight": {"_count": 3, "into": {"_count": 3, "our": {"_count": 1}, "Voldemorts": {"_count": 2}}}, "Blatant": {"_count": 1, "corruption": {"_count": 1, "": {"_count": 1}}}, "schoolage": {"_count": 1, "I": {"_count": 1, "think": {"_count": 1}}}, "midbounce": {"_count": 1, "his": {"_count": 1, "mouth": {"_count": 1}}}, "Evidence": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "coaxingly": {"_count": 2, "to": {"_count": 1, "Marietta": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "activate": {"_count": 1, "the": {"_count": 1, "jinx": {"_count": 1}}}, "\u2018no": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "manhandle": {"_count": 1, "my": {"_count": 1, "students": {"_count": 1}}}, "Requirements": {"_count": 2, "wall": {"_count": 1, "and": {"_count": 1}}, "door": {"_count": 1, "was": {"_count": 1}}}, "DumbledoresArmy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Statement": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "recruited": {"_count": 2, "these": {"_count": 1, "students": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "notetaking": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "radiant": {"_count": 4, "with": {"_count": 1, "glee": {"_count": 1}}, "expression": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "smile": {"_count": 1, "He": {"_count": 1}}}, "Duplicate": {"_count": 1, "your": {"_count": 1, "notes": {"_count": 1}}}, "snag": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Dumbledore": {"_count": 1, "": {"_count": 1}}}, "Snag": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Dawlish": {"_count": 19, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "blinked": {"_count": 1, "looking": {"_count": 1}}, "Shacklebolt": {"_count": 1, "Dolores": {"_count": 1}}, "": {"_count": 4, "!": {"_count": 3}, ".": {"_count": 1}}, "lay": {"_count": 1, "motionless": {"_count": 1}}, "was": {"_count": 1, "stirring": {"_count": 1}}, "and": {"_count": 2, "he": {"_count": 1}, "nicked": {"_count": 1}}, "are": {"_count": 1, "here": {"_count": 1}}, "that": {"_count": 1, "Auror": {"_count": 1}}, "to": {"_count": 1, "tail": {"_count": 1}}, "once": {"_count": 1, "I": {"_count": 1}}, "the": {"_count": 1, "Auror": {"_count": 1}}, "seemed": {"_count": 1, "quite": {"_count": 1}}, "believes": {"_count": 1, "an": {"_count": 1}}, "is": {"_count": 1, "still": {"_count": 1}}}, "\u2018bring": {"_count": 1, "me": {"_count": 1, "in": {"_count": 1}}}, "Dust": {"_count": 2, "was": {"_count": 1, "still": {"_count": 1}}, "swirled": {"_count": 1, "around": {"_count": 1}}}, "overturned": {"_count": 8, "all": {"_count": 1, "of": {"_count": 1}}, "examination": {"_count": 1, "papers": {"_count": 1}}, "his": {"_count": 1, "desk": {"_count": 1}}, "beetles": {"_count": 1, "Harry": {"_count": 1}}, "sofa": {"_count": 1, "but": {"_count": 1}}, "troll": {"_count": 1, "leg": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "bottle": {"_count": 1}}}, "modifying": {"_count": 1, "Miss": {"_count": 1, "Edgecombes": {"_count": 1}}}, "Edgecombes": {"_count": 1, "memory": {"_count": 1, "like": {"_count": 1}}}, "shirtsleeve": {"_count": 1, "Im": {"_count": 1, "afraid": {"_count": 1}}}, "dismissive": {"_count": 1, "nod": {"_count": 1, "toward": {"_count": 1}}}, "MEMORY": {"_count": 2, "BY": {"_count": 1, "ORDER": {"_count": 1}}, "Late": {"_count": 1, "in": {"_count": 1}}}, "Twentyeight": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "MINISTER": {"_count": 3, "OF": {"_count": 1, "MAGIC": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}, "Below": {"_count": 1, "that": {"_count": 1}}}, "awry": {"_count": 3, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "MadEye": {"_count": 1, "battleworn": {"_count": 1}}}, "besieged": {"_count": 2, "with": {"_count": 2, "requests": {"_count": 2}}}, "requests": {"_count": 3, "to": {"_count": 1, "give": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "our": {"_count": 1, "recipe": {"_count": 1}}}, "Lording": {"_count": 1, "it": {"_count": 1, "over": {"_count": 1}}}, "powercrazy": {"_count": 1, "old": {"_count": 1, "Now": {"_count": 1}}}, "Afraid": {"_count": 1, "Im": {"_count": 1, "going": {"_count": 1}}}, "dock": {"_count": 5, "a": {"_count": 1, "few": {"_count": 1}}, "points": {"_count": 4, "from": {"_count": 1}, "Weasel": {"_count": 1}, "": {"_count": 2}}}, "Inquisitorial": {"_count": 13, "Squad": {"_count": 13, "The": {"_count": 1}, "Granger": {"_count": 1}, "do": {"_count": 1}, "is": {"_count": 1}, "who": {"_count": 1}, "closed": {"_count": 1}, "were": {"_count": 1}, "sitting": {"_count": 1}, "floating": {"_count": 1}, "laughed": {"_count": 1}, "her": {"_count": 1}, "": {"_count": 1}, "said": {"_count": 1}}}, "contradicting": {"_count": 2, "me": {"_count": 2, "": {"_count": 2}}}, "shirts": {"_count": 1, "untucked": {"_count": 1, "so": {"_count": 1}}}, "untucked": {"_count": 1, "so": {"_count": 1, "Ill": {"_count": 1}}}, "Wise": {"_count": 1, "move": {"_count": 1, "Granger": {"_count": 1}}}, "undermine": {"_count": 2, "the": {"_count": 1, "prefect": {"_count": 1}}, "Snape": {"_count": 1, "s": {"_count": 1}}}, "niches": {"_count": 2, "along": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 1, "footholds": {"_count": 1}}}, "reducing": {"_count": 1, "the": {"_count": 1, "amounts": {"_count": 1}}}, "unchanged": {"_count": 1, "was": {"_count": 1, "the": {"_count": 1}}}, "emeraldfilled": {"_count": 1, "one": {"_count": 1, "of": {"_count": 1}}}, "Noticed": {"_count": 1, "have": {"_count": 1, "you": {"_count": 1}}}, "docked": {"_count": 1, "us": {"_count": 1, "all": {"_count": 1}}}, "\u2018tried": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Cabinet": {"_count": 4, "on": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "which": {"_count": 1}}, "that": {"_count": 1, "no": {"_count": 1}}, "Draco": {"_count": 1, "Malfoy": {"_count": 1}}}, "reappears": {"_count": 1, "and": {"_count": 1, "that": {"_count": 1}}}, "Guilty": {"_count": 1, "conscience": {"_count": 1, "eh": {"_count": 1}}}, "creakily": {"_count": 1, "under": {"_count": 1, "his": {"_count": 1}}}, "Yerse": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Stinkpellets": {"_count": 2, "if": {"_count": 1, "youd": {"_count": 1}}, "were": {"_count": 1, "dropped": {"_count": 1}}}, "Twentynine": {"_count": 1, "comes": {"_count": 1, "in": {"_count": 1}}}, "maam": {"_count": 5, "": {"_count": 2, ".": {"_count": 2}}, "not": {"_count": 1, "at": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "Through": {"_count": 1, "his": {"_count": 1}}}, "busily": {"_count": 1, "scribbling": {"_count": 1, "upon": {"_count": 1}}}, "rheumatism": {"_count": 1, "would": {"_count": 1, "permit": {"_count": 1}}}, "Coffee": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "gaily": {"_count": 1, "Youre": {"_count": 1, "not": {"_count": 1}}}, "Regulator": {"_count": 1, "is": {"_count": 1, "keeping": {"_count": 1}}}, "reigned": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "greenandgold": {"_count": 1, "sparks": {"_count": 1, "were": {"_count": 1}}}, "Catherine": {"_count": 3, "wheels": {"_count": 3, "five": {"_count": 1}, "seemed": {"_count": 1}, "hit": {"_count": 1}}}, "diameter": {"_count": 1, "were": {"_count": 1, "whizzing": {"_count": 1}}}, "Rockets": {"_count": 1, "with": {"_count": 1, "long": {"_count": 1}}}, "Sparklers": {"_count": 1, "were": {"_count": 1, "writing": {"_count": 1}}}, "swearwords": {"_count": 2, "in": {"_count": 1, "midair": {"_count": 1}}, "and": {"_count": 1, "hexes": {"_count": 1}}}, "Firecrackers": {"_count": 1, "were": {"_count": 1, "exploding": {"_count": 1}}}, "fizzling": {"_count": 1, "to": {"_count": 1, "a": {"_count": 1}}}, "pyrotechnical": {"_count": 1, "miracles": {"_count": 1, "seemed": {"_count": 1}}}, "miracles": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "momentum": {"_count": 2, "the": {"_count": 1, "longer": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "maneuver": {"_count": 2, "it": {"_count": 1, "whirled": {"_count": 1}}, "knives": {"_count": 1, "and": {"_count": 1}}}, "voheeeeeeeeee": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "soppylooking": {"_count": 1, "witch": {"_count": 1, "in": {"_count": 1}}}, "swatting": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "multiply": {"_count": 4, "by": {"_count": 1, "ten": {"_count": 1}}, "her": {"_count": 1, "ferret": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "exhaling": {"_count": 1, "flame": {"_count": 1, "": {"_count": 1}}}, "upshot": {"_count": 2, "of": {"_count": 2, "it": {"_count": 1}, "this": {"_count": 1}}}, "summonses": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "sparklers": {"_count": 1, "myself": {"_count": 1, "of": {"_count": 1}}}, "admiringly": {"_count": 3, "": {"_count": 3, ".": {"_count": 3}}}, "Wildfire": {"_count": 2, "WhizBangs": {"_count": 1, "": {"_count": 1}}, "Whiz": {"_count": 1, "Bangs": {"_count": 1}}}, "WhizBangs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Blaze": {"_count": 1, "box": {"_count": 1, "and": {"_count": 1}}}, "Deflagration": {"_count": 1, "Deluxe": {"_count": 1, "": {"_count": 1}}}, "Deluxe": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "silvertailed": {"_count": 1, "Weasley": {"_count": 1, "rocket": {"_count": 1}}}, "sparkler": {"_count": 1, "floated": {"_count": 1, "past": {"_count": 1}}}, "POO": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "whizzes": {"_count": 1, "and": {"_count": 1, "bangs": {"_count": 1}}}, "inward": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "at": {"_count": 2, "their": {"_count": 1}, "his": {"_count": 1}}, "and": {"_count": 1, "drove": {"_count": 1}}}, "mechanical": {"_count": 2, "clicking": {"_count": 2, "": {"_count": 1}, "but": {"_count": 1}}}, "spheres": {"_count": 10, "": {"_count": 3, ".": {"_count": 3}}, "on": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "glowed": {"_count": 1}}, "had": {"_count": 1, "melted": {"_count": 1}}, "burst": {"_count": 1, "apart": {"_count": 1}}, "began": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "found": {"_count": 1}}, "the": {"_count": 1, "Deluminator": {"_count": 1}}}, "mated": {"_count": 1, "come": {"_count": 1, "and": {"_count": 1}}}, "pinkandsilver": {"_count": 1, "winged": {"_count": 1, "piglets": {"_count": 1}}}, "piglets": {"_count": 1, "were": {"_count": 1, "now": {"_count": 1}}}, "whoops": {"_count": 2, "of": {"_count": 1, "Gryffindors": {"_count": 1}}, "Ron": {"_count": 1, "took": {"_count": 1}}}, "\u2018sneak": {"_count": 1, "written": {"_count": 1, "across": {"_count": 1}}}, "Seething": {"_count": 1, "Harry": {"_count": 1, "replaced": {"_count": 1}}}, "expense": {"_count": 1, "of": {"_count": 1, "Malfoy": {"_count": 1}}}, "limbo": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "sometimes": {"_count": 1}}, "between": {"_count": 1, "Disapparition": {"_count": 1}}}, "Snapetheteenager": {"_count": 1, "had": {"_count": 1, "a": {"_count": 1}}}, "DEFENSE": {"_count": 1, "AGAINST": {"_count": 1, "THE": {"_count": 1}}}, "AGAINST": {"_count": 2, "THE": {"_count": 1, "DARK": {"_count": 1}}, "DARK": {"_count": 1, "FORCES": {"_count": 1}}}, "ARTS": {"_count": 1, "ORDINARY": {"_count": 1, "WIZARDING": {"_count": 1}}}, "ORDINARY": {"_count": 2, "WIZARDING": {"_count": 2, "LEVEL": {"_count": 2}}}, "WIZARDING": {"_count": 2, "LEVEL": {"_count": 2, "So": {"_count": 1}, "RESULTS": {"_count": 1}}}, "LEVEL": {"_count": 2, "So": {"_count": 1, "Snape": {"_count": 1}}, "RESULTS": {"_count": 1, "Pass": {"_count": 1}}}, "fifteenyear": {"_count": 1, "old": {"_count": 1, "father": {"_count": 1}}}, "hazel": {"_count": 1, "his": {"_count": 1, "nose": {"_count": 1}}}, "lounging": {"_count": 2, "in": {"_count": 1, "his": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "elegance": {"_count": 1, "neither": {"_count": 1, "Jamess": {"_count": 1}}}, "pleasurable": {"_count": 2, "squirm": {"_count": 1, "was": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}}, "scuffing": {"_count": 3, "the": {"_count": 1, "ground": {"_count": 1}}, "sound": {"_count": 1, "to": {"_count": 1}}, "and": {"_count": 1, "scraping": {"_count": 1}}}, "doodling": {"_count": 2, "on": {"_count": 1, "a": {"_count": 1}}, "absently": {"_count": 1, "on": {"_count": 1}}}, "Quills": {"_count": 2, "down": {"_count": 1, "please": {"_count": 1}}, "are": {"_count": 1, "banned": {"_count": 1}}}, "embellishing": {"_count": 1, "jumped": {"_count": 1, "to": {"_count": 1}}}, "Roundshouldered": {"_count": 1, "yet": {"_count": 1, "angular": {"_count": 1}}}, "angular": {"_count": 1, "he": {"_count": 1, "walked": {"_count": 1}}}, "planting": {"_count": 2, "himself": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "diary": {"_count": 1}}}, "identify": {"_count": 5, "the": {"_count": 3, "werewolf": {"_count": 1}, "knarl": {"_count": 1}, "first": {"_count": 1}}, "a": {"_count": 1, "lone": {"_count": 1}}, "these": {"_count": 1, "": {"_count": 1}}}, "Nicked": {"_count": 3, "it": {"_count": 2, "said": {"_count": 1}, "": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}}, "foursome": {"_count": 1, "under": {"_count": 1, "the": {"_count": 1}}}, "cooling": {"_count": 3, "their": {"_count": 1, "feet": {"_count": 1}}, "drink": {"_count": 1, "of": {"_count": 1}}, "air": {"_count": 1, "was": {"_count": 1}}}, "handsomely": {"_count": 2, "so": {"_count": 1, "": {"_count": 1}}, "robed": {"_count": 1, "wizards": {"_count": 1}}}, "rumpling": {"_count": 2, "up": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "hair": {"_count": 1}}}, "wets": {"_count": 1, "himself": {"_count": 1, "from": {"_count": 1}}}, "liven": {"_count": 1, "you": {"_count": 1, "up": {"_count": 1}}}, "avid": {"_count": 2, "anticipation": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Dropping": {"_count": 1, "his": {"_count": 1, "bag": {"_count": 1}}}, "entertained": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Snivelly": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "wipe": {"_count": 1, "your": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "Scourgifyl": {"_count": 1, "Pink": {"_count": 1, "soap": {"_count": 1}}}, "Pink": {"_count": 2, "soap": {"_count": 1, "bubbles": {"_count": 1}}, "pages": {"_count": 1, "flew": {"_count": 1}}}, "froth": {"_count": 2, "was": {"_count": 1, "covering": {"_count": 1}}, "and": {"_count": 1, "smoke": {"_count": 1}}}, "gag": {"_count": 3, "choking": {"_count": 1, "him": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}}, "startlingly": {"_count": 2, "green": {"_count": 1, "almondshaped": {"_count": 1}}, "huge": {"_count": 1, "face": {"_count": 1}}}, "watchers": {"_count": 5, "laughed": {"_count": 1, "Sirius": {"_count": 1}}, "looked": {"_count": 1, "away": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "rent": {"_count": 1, "the": {"_count": 1}}}, "toerag": {"_count": 2, "Potter": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "underpants": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "to": {"_count": 1, "come": {"_count": 1}}}, "Disentangling": {"_count": 1, "himself": {"_count": 1, "from": {"_count": 1}}}, "Messing": {"_count": 1, "up": {"_count": 1, "your": {"_count": 1}}}, "hexing": {"_count": 3, "anyone": {"_count": 1, "who": {"_count": 1}}, "people": {"_count": 1, "just": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}}, "SICK": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "EVANS": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "throwaway": {"_count": 2, "question": {"_count": 1, "of": {"_count": 1}}, "comment": {"_count": 1, "of": {"_count": 1}}}, "Reading": {"_count": 1, "between": {"_count": 1, "the": {"_count": 1}}}, "conceited": {"_count": 1, "mate": {"_count": 1, "said": {"_count": 1}}}, "Snivellys": {"_count": 1, "pants": {"_count": 1, "": {"_count": 1}}}, "pincerlike": {"_count": 1, "grip": {"_count": 1, "": {"_count": 1}}}, "Wincing": {"_count": 1, "Harry": {"_count": 1, "looked": {"_count": 1}}}, "adultsized": {"_count": 1, "Snape": {"_count": 1, "standing": {"_count": 1}}}, "Nno": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Amusing": {"_count": 2, "man": {"_count": 1, "your": {"_count": 1}}, "really": {"_count": 1, "": {"_count": 1}}}, "CAREER": {"_count": 2, "ADVICE": {"_count": 2, "But": {"_count": 1}, "All": {"_count": 1}}}, "ADVICE": {"_count": 2, "But": {"_count": 1, "why": {"_count": 1}}, "All": {"_count": 1, "fifth": {"_count": 1}}}, "custom": {"_count": 2, "had": {"_count": 1, "spent": {"_count": 1}}, "or": {"_count": 1, "else": {"_count": 1}}}, "aspersions": {"_count": 2, "on": {"_count": 1, "his": {"_count": 1}}, "cast": {"_count": 1, "upon": {"_count": 1}}}, "forerunners": {"_count": 2, "of": {"_count": 2, "the": {"_count": 2}}}, "intervened": {"_count": 5, "his": {"_count": 1, "mother": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "if": {"_count": 1, "such": {"_count": 1}}}, "breezier": {"_count": 1, "brighter": {"_count": 1, "and": {"_count": 1}}}, "traipsing": {"_count": 1, "back": {"_count": 1, "and": {"_count": 1}}}, "unchallenged": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rewrapped": {"_count": 1, "and": {"_count": 1, "there": {"_count": 1}}}, "INSPECTED": {"_count": 1, "AND": {"_count": 1, "PASSED": {"_count": 1}}}, "PASSED": {"_count": 1, "BY": {"_count": 1, "THE": {"_count": 1}}}, "franticlooking": {"_count": 1, "Hannah": {"_count": 1, "Abbott": {"_count": 1}}}, "policing": {"_count": 1, "the": {"_count": 1, "fires": {"_count": 1}}}, "underline": {"_count": 2, "the": {"_count": 1, "importance": {"_count": 1}}, "his": {"_count": 1, "difference": {"_count": 1}}}, "upcoming": {"_count": 4, "examinations": {"_count": 1, "a": {"_count": 1}}, "match": {"_count": 2, "against": {"_count": 1}, "not": {"_count": 1}}, "Quidditch": {"_count": 1, "match": {"_count": 1}}}, "pamphlets": {"_count": 4, "leaflets": {"_count": 1, "and": {"_count": 1}}, "littering": {"_count": 1, "her": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "the": {"_count": 1}}}, "Times": {"_count": 6, "of": {"_count": 1, "individual": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wearing": {"_count": 1, "on": {"_count": 1}}, "change": {"_count": 1, "said": {"_count": 1}}, "running": {"_count": 1, "out": {"_count": 1}}, "nearly": {"_count": 1, "up": {"_count": 1}}}, "perusal": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Healing": {"_count": 2, "said": {"_count": 1, "Ron": {"_count": 1}}, "Spells": {"_count": 1, "but": {"_count": 1}}}, "boneandwand": {"_count": 1, "emblem": {"_count": 1, "of": {"_count": 1}}}, "pinkandorange": {"_count": 1, "leaflet": {"_count": 1, "that": {"_count": 1}}}, "RELATIONS": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "qualifications": {"_count": 1, "to": {"_count": 1, "liaise": {"_count": 1}}}, "liaise": {"_count": 2, "with": {"_count": 2, "Muggles": {"_count": 1}, "my": {"_count": 1}}}, "\u2018Much": {"_count": 1, "more": {"_count": 1, "important": {"_count": 1}}}, "offunV": {"_count": 1, "Youd": {"_count": 1, "need": {"_count": 1}}}, "pamphlet": {"_count": 3, "on": {"_count": 1, "Wizard": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "again": {"_count": 1}}}, "substantial": {"_count": 2, "dangerrelated": {"_count": 1, "treasure": {"_count": 1}}, "than": {"_count": 1, "living": {"_count": 1}}}, "dangerrelated": {"_count": 1, "treasure": {"_count": 1, "bonuses": {"_count": 1}}}, "bonuses": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "TAKES": {"_count": 1, "TO": {"_count": 1, "TRAIN": {"_count": 1}}}, "TRAIN": {"_count": 1, "SECURITY": {"_count": 1, "TROLLS": {"_count": 1}}}, "TROLLS": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "booklets": {"_count": 1, "on": {"_count": 1, "careers": {"_count": 1}}}, "DEPARTMENT": {"_count": 2, "OF": {"_count": 2, "MAGICAL": {"_count": 1}, "MYSTERIES": {"_count": 1}}}, "CATASTROPHES": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "frisking": {"_count": 2, "all": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "sickening": {"_count": 1}}}, "thoughtfulness": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "obtuse": {"_count": 1, "even": {"_count": 1, "if": {"_count": 1}}}, "cultivated": {"_count": 1, "fungus": {"_count": 1, "trade": {"_count": 1}}}, "Spoken": {"_count": 2, "like": {"_count": 1, "a": {"_count": 1}}, "both": {"_count": 1, "like": {"_count": 1}}}, "maximum": {"_count": 1, "impact": {"_count": 1, "if": {"_count": 1}}}, "Smarmys": {"_count": 1, "corridor": {"_count": 1, "round": {"_count": 1}}}, "opalescent": {"_count": 1, "blue": {"_count": 1, "": {"_count": 1}}}, "Directly": {"_count": 2, "ahead": {"_count": 1, "of": {"_count": 1}}, "above": {"_count": 1, "them": {"_count": 1}}}, "mitigating": {"_count": 1, "factors": {"_count": 1, "there": {"_count": 1}}}, "unequal": {"_count": 1, "to": {"_count": 1, "stoking": {"_count": 1}}}, "stoking": {"_count": 1, "the": {"_count": 1, "fire": {"_count": 1}}}, "restful": {"_count": 1, "one": {"_count": 1, "but": {"_count": 1}}}, "dissuade": {"_count": 1, "him": {"_count": 1, "from": {"_count": 1}}}, "inattentive": {"_count": 1, "to": {"_count": 1, "Professor": {"_count": 1}}}, "admonitions": {"_count": 2, "that": {"_count": 1, "Harry": {"_count": 1}}, "to": {"_count": 1, "helpers": {"_count": 1}}}, "Undeterred": {"_count": 1, "she": {"_count": 1, "took": {"_count": 1}}}, "uninterrupted": {"_count": 1, "flow": {"_count": 1, "of": {"_count": 1}}}, "tactic": {"_count": 1, "as": {"_count": 1, "it": {"_count": 1}}}, "concoct": {"_count": 1, "an": {"_count": 1, "Invigoration": {"_count": 1}}}, "Invigoration": {"_count": 1, "Draught": {"_count": 1, "quite": {"_count": 1}}}, "piefrill": {"_count": 1, "around": {"_count": 1, "her": {"_count": 1}}}, "undergo": {"_count": 1, "a": {"_count": 1, "stringent": {"_count": 1}}}, "stringent": {"_count": 4, "series": {"_count": 1, "of": {"_count": 1}}, "Anti": {"_count": 1, "Cheating": {"_count": 1}}, "new": {"_count": 1, "security": {"_count": 1}}, "security": {"_count": 1, "measures": {"_count": 1}}}, "Untransfigure": {"_count": 1, "in": {"_count": 1, "their": {"_count": 1}}}, "averaging": {"_count": 1, "\u2018Acceptable": {"_count": 1, "at": {"_count": 1}}}, "teensiest": {"_count": 1, "interruption": {"_count": 1, "Minerva": {"_count": 1}}}, "temperament": {"_count": 1, "for": {"_count": 1, "an": {"_count": 1}}}, "graded": {"_count": 1, "you": {"_count": 1, "between": {"_count": 1}}}, "Acceptable": {"_count": 4, "and": {"_count": 1, "\u2018Exceeds": {"_count": 1}}, "A": {"_count": 1, "Troll": {"_count": 1}}, "Harry": {"_count": 1, "watched": {"_count": 1}}, "really": {"_count": 1, "isnt": {"_count": 1}}}, "folder": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "without": {"_count": 1, "comment": {"_count": 1}}, "and": {"_count": 1, "shut": {"_count": 1}}}, "False": {"_count": 1, "hope": {"_count": 1, "": {"_count": 1}}}, "lightbulb": {"_count": 1, "blowing": {"_count": 1, "": {"_count": 1}}}, "perseverance": {"_count": 2, "and": {"_count": 2, "dedication": {"_count": 1}, "skill": {"_count": 1}}}, "dedication": {"_count": 1, "because": {"_count": 1, "Auror": {"_count": 1}}}, "applying": {"_count": 2, "to": {"_count": 1, "be": {"_count": 1}}, "copious": {"_count": 1, "amounts": {"_count": 1}}}, "demeanor": {"_count": 3, "had": {"_count": 1, "given": {"_count": 1}}, "where": {"_count": 1, "Narcissa": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}}, "nightly": {"_count": 2, "I": {"_count": 1, "will": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}}, "concludes": {"_count": 1, "our": {"_count": 1, "career": {"_count": 1}}}, "NonRetaliation": {"_count": 1, "and": {"_count": 1, "Negotiation": {"_count": 1}}}, "Negotiation": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "trespassing": {"_count": 1, "in": {"_count": 1, "Professor": {"_count": 1}}}, "sacrificed": {"_count": 1, "himself": {"_count": 1, "to": {"_count": 1}}}, "dissuading": {"_count": 1, "Harry": {"_count": 1, "some": {"_count": 1}}}, "Dashing": {"_count": 1, "behind": {"_count": 1, "a": {"_count": 1}}}, "donned": {"_count": 1, "the": {"_count": 1, "Invisibility": {"_count": 1}}}, "frolic": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "sensations": {"_count": 2, "he": {"_count": 1, "had": {"_count": 1}}, "lifted": {"_count": 1, "": {"_count": 1}}}, "objecting": {"_count": 1, "painfully": {"_count": 1, "to": {"_count": 1}}}, "sorer": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "placatingly": {"_count": 1, "James": {"_count": 1, "and": {"_count": 1}}}, "oddball": {"_count": 1, "who": {"_count": 1, "was": {"_count": 1}}}, "berks": {"_count": 1, "you": {"_count": 1, "mean": {"_count": 1}}}, "inhale": {"_count": 1, "a": {"_count": 1, "mouthful": {"_count": 1}}}, "overreaction": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Places": {"_count": 2, "fire": {"_count": 1, "": {"_count": 1}}, "location": {"_count": 1, "had": {"_count": 1}}}, "rifling": {"_count": 1, "through": {"_count": 1, "the": {"_count": 1}}}, "Approval": {"_count": 2, "for": {"_count": 2, "Whipping": {"_count": 2}}}, "Whipping": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "hobbling": {"_count": 3, "along": {"_count": 1, "faster": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "into": {"_count": 1, "view": {"_count": 1}}}, "Prominent": {"_count": 1, "among": {"_count": 1, "the": {"_count": 1}}}, "swamp": {"_count": 4, "do": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "now": {"_count": 1}}, "in": {"_count": 1, "an": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}}, "whips": {"_count": 1, "waiting": {"_count": 1, "": {"_count": 1}}}, "wrongdoers": {"_count": 2, "in": {"_count": 1, "my": {"_count": 1}}, "and": {"_count": 1, "their": {"_count": 1}}}, "outgrown": {"_count": 1, "fulltime": {"_count": 1, "education": {"_count": 1}}}, "talents": {"_count": 4, "in": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "coercion": {"_count": 1}}, "are": {"_count": 1, "better": {"_count": 1}}, "at": {"_count": 1, "your": {"_count": 1}}}, "BroomsV": {"_count": 1, "Harry": {"_count": 1, "heard": {"_count": 1}}}, "Portable": {"_count": 1, "Swamp": {"_count": 1, "as": {"_count": 1}}}, "Swamp": {"_count": 1, "as": {"_count": 1, "demonstrated": {"_count": 1}}}, "ninetythree": {"_count": 1, "Diagon": {"_count": 1, "Alley": {"_count": 1}}}, "discounts": {"_count": 1, "to": {"_count": 1, "Hogwarts": {"_count": 1}}}, "belled": {"_count": 1, "hat": {"_count": 1, "from": {"_count": 1}}}, "GRAWP": {"_count": 2, "The": {"_count": 1, "story": {"_count": 1}}, "WANT": {"_count": 1, "HAGGER": {"_count": 1}}}, "retold": {"_count": 2, "so": {"_count": 1, "often": {"_count": 1}}, "the": {"_count": 1, "story": {"_count": 1}}}, "divebomb": {"_count": 1, "Umbridge": {"_count": 1, "on": {"_count": 1}}}, "roped": {"_count": 2, "off": {"_count": 1, "and": {"_count": 1}}, "it": {"_count": 1, "off": {"_count": 1}}}, "gnashing": {"_count": 1, "his": {"_count": 1, "teeth": {"_count": 1}}}, "punting": {"_count": 1, "students": {"_count": 1, "across": {"_count": 1}}}, "Whiz": {"_count": 1, "Bangs": {"_count": 1, "they": {"_count": 1}}}, "Bangs": {"_count": 1, "they": {"_count": 1, "seemed": {"_count": 1}}}, "broomshaped": {"_count": 1, "holes": {"_count": 1, "in": {"_count": 1}}}, "vying": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "TroublemakersinChief": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "snouted": {"_count": 1, "niffler": {"_count": 1, "into": {"_count": 1}}}, "reentrance": {"_count": 1, "and": {"_count": 1, "tried": {"_count": 1}}}, "gnaw": {"_count": 1, "the": {"_count": 1, "rings": {"_count": 1}}}, "horsewhip": {"_count": 1, "ready": {"_count": 1, "in": {"_count": 1}}}, "miscreants": {"_count": 1, "but": {"_count": 1, "the": {"_count": 1}}}, "coated": {"_count": 5, "in": {"_count": 4, "cornflakes": {"_count": 1}, "grime": {"_count": 1}, "dust": {"_count": 2}}, "the": {"_count": 1, "very": {"_count": 1}}}, "fevers": {"_count": 1, "or": {"_count": 1, "else": {"_count": 1}}}, "Umbridgeitis": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "droves": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "users": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "it": {"_count": 1}}}, "Cackling": {"_count": 2, "madly": {"_count": 1, "he": {"_count": 1}}, "Stump": {"_count": 1, "": {"_count": 1}}}, "upending": {"_count": 3, "tables": {"_count": 1, "bursting": {"_count": 1}}, "the": {"_count": 1, "chessboard": {"_count": 1}}, "a": {"_count": 1, "ketchup": {"_count": 1}}}, "blackboards": {"_count": 1, "and": {"_count": 1, "toppling": {"_count": 1}}}, "juggled": {"_count": 1, "burning": {"_count": 1, "torches": {"_count": 1}}}, "topple": {"_count": 3, "into": {"_count": 1, "fires": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}, "over": {"_count": 1, "backward": {"_count": 1}}}, "tarantulas": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "raspberries": {"_count": 1, "every": {"_count": 1, "time": {"_count": 1}}}, "unscrews": {"_count": 1, "the": {"_count": 1, "other": {"_count": 1}}}, "sojourn": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "spouted": {"_count": 1, "four": {"_count": 1, "very": {"_count": 1}}}, "sturdy": {"_count": 1, "little": {"_count": 1, "willowpatterned": {"_count": 1}}}, "Specially": {"_count": 1, "if": {"_count": 1, "she": {"_count": 1}}}, "reverting": {"_count": 1, "to": {"_count": 1, "it": {"_count": 1}}}, "\u2018just": {"_count": 1, "a": {"_count": 1, "bit": {"_count": 1}}}, "brutally": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "short": {"_count": 1, "haircut": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "saturated": {"_count": 1, "with": {"_count": 1, "information": {"_count": 1}}}, "overwrought": {"_count": 1, "brain": {"_count": 1, "presented": {"_count": 1}}}, "optimism": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "gosh": {"_count": 1, "I": {"_count": 1, "forgot": {"_count": 1}}}, "choruses": {"_count": 1, "of": {"_count": 1, "Weasley": {"_count": 1}}}, "pitches": {"_count": 1, "he": {"_count": 1, "named": {"_count": 1}}}, "Bradley": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "came": {"_count": 1, "toward": {"_count": 1}}}, "evryones": {"_count": 2, "watchin": {"_count": 1, "the": {"_count": 1}}, "lookin": {"_count": 1, "the": {"_count": 1}}}, "Till": {"_count": 1, "the": {"_count": 1, "match": {"_count": 1}}}, "ppreciate": {"_count": 1, "this": {"_count": 1, "you": {"_count": 1}}}, "mo": {"_count": 4, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Hagrid": {"_count": 1, "finished": {"_count": 1}}}, "outermost": {"_count": 1, "edge": {"_count": 1, "of": {"_count": 1}}}, "riled": {"_count": 1, "at": {"_count": 1, "me": {"_count": 1}}}, "emselves": {"_count": 2, "to": {"_count": 1, "emselves": {"_count": 1}}, "bu": {"_count": 1, "always": {"_count": 1}}}, "passin": {"_count": 2, "really": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "today": {"_count": 1}}}, "sendin": {"_count": 2, "me": {"_count": 1, "stupid": {"_count": 1}}, "a": {"_count": 1, "kid": {"_count": 1}}}, "warnins": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Cleverest": {"_count": 1, "creatures": {"_count": 1, "in": {"_count": 1}}}, "complicate": {"_count": 3, "the": {"_count": 1, "problem": {"_count": 1}}, "matters": {"_count": 1, "he": {"_count": 1}}, "organizing": {"_count": 1, "a": {"_count": 1}}}, "thickets": {"_count": 2, "of": {"_count": 2, "thorn": {"_count": 1}, "wildest": {"_count": 1}}}, "thorn": {"_count": 1, "through": {"_count": 1, "which": {"_count": 1}}}, "entangling": {"_count": 1, "them": {"_count": 1, "so": {"_count": 1}}}, "sparrow": {"_count": 1, "caused": {"_count": 1, "Harry": {"_count": 1}}}, "momen": {"_count": 1, "so": {"_count": 1, "I": {"_count": 1}}}, "ge": {"_count": 1, "there": {"_count": 1, "like": {"_count": 1}}}, "lotll": {"_count": 1, "have": {"_count": 1, "GrubblyPlank": {"_count": 1}}}, "withou": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "fellin": {"_count": 1, "someone": {"_count": 1}}}, "fellin": {"_count": 1, "someone": {"_count": 1, "": {"_count": 1}}}, "willin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "lair": {"_count": 2, "of": {"_count": 2, "some": {"_count": 1}, "the": {"_count": 1}}}, "barricade": {"_count": 3, "behind": {"_count": 1, "which": {"_count": 1}}, "herself": {"_count": 1, "in": {"_count": 1}}, "the": {"_count": 1, "school": {"_count": 1}}}, "Sleepin": {"_count": 1, "breathed": {"_count": 1, "Hagrid": {"_count": 1}}}, "evryone": {"_count": 2, "hes": {"_count": 1, "harmless": {"_count": 1}}, "appreciates": {"_count": 1, "how": {"_count": 1}}}, "Harmless": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "fightin": {"_count": 2, "so": {"_count": 1, "much": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "bullyin": {"_count": 1, "him": {"_count": 1, "Hermione": {"_count": 1}}}, "\u2018brother": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "halfbrother": {"_count": 4, "amended": {"_count": 1, "Hagrid": {"_count": 1}}, "a": {"_count": 1, "vicious": {"_count": 1}}, "but": {"_count": 1, "this": {"_count": 1}}, "and": {"_count": 1, "Grawp": {"_count": 1}}}, "Grawp": {"_count": 58, "here": {"_count": 1, "Grawp": {"_count": 1}}, "": {"_count": 8, "?": {"_count": 2}, ".": {"_count": 4}, "!": {"_count": 2}}, "lay": {"_count": 1, "curled": {"_count": 1}}, "had": {"_count": 2, "his": {"_count": 1}, "pulled": {"_count": 1}}, "looked": {"_count": 1, "strangely": {"_count": 1}}, "s": {"_count": 4, "head": {"_count": 1}, "lopsided": {"_count": 2}, "feet": {"_count": 1}}, "slept": {"_count": 1, "it": {"_count": 1}}, "English": {"_count": 1, "": {"_count": 1}}, "hard": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 4, "rising": {"_count": 1}, "snatching": {"_count": 1}, "positively": {"_count": 1}, "indeed": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "knelt": {"_count": 1, "between": {"_count": 1}}, "raised": {"_count": 1, "dirty": {"_count": 1}}, "merely": {"_count": 1, "gave": {"_count": 1}}, "apparently": {"_count": 1, "losing": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "were": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 1}, "their": {"_count": 1}}, "would": {"_count": 1, "ever": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 2, "giant": {"_count": 2}}, "caught": {"_count": 1, "sight": {"_count": 1}}, "opened": {"_count": 1, "his": {"_count": 1}}, "I": {"_count": 1, "dont": {"_count": 1}}, "gave": {"_count": 1, "another": {"_count": 1}}, "said": {"_count": 2, "Harry": {"_count": 1}, "Hagrid": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "hes": {"_count": 1, "cornin": {"_count": 1}}, "look": {"_count": 1, "a": {"_count": 1}}, "his": {"_count": 1, "great": {"_count": 1}}, "patted": {"_count": 1, "Hagrid": {"_count": 1}}, "a": {"_count": 1, "wide": {"_count": 1}}, "ever": {"_count": 1, "since": {"_count": 1}}, "came": {"_count": 2, "lurching": {"_count": 1}, "lumbering": {"_count": 1}}, "or": {"_count": 1, "of": {"_count": 1}}, "like": {"_count": 1, "bull": {"_count": 1}}, "punched": {"_count": 1, "and": {"_count": 1}}, "peered": {"_count": 1, "in": {"_count": 1}}}, "giantesses": {"_count": 1, "what": {"_count": 1, "counts": {"_count": 1}}}, "producin": {"_count": 1, "good": {"_count": 1, "big": {"_count": 1}}}, "rippedup": {"_count": 1, "tree": {"_count": 1, "and": {"_count": 1}}}, "Violent": {"_count": 1, "thas": {"_count": 1, "a": {"_count": 1}}}, "agitatedly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "settlin": {"_count": 1, "down": {"_count": 1, "well": {"_count": 1}}}, "saplings": {"_count": 1, "stretching": {"_count": 1, "from": {"_count": 1}}}, "deer": {"_count": 2, "an": {"_count": 1, "stuff": {"_count": 1}}, "coming": {"_count": 1, "and": {"_count": 1}}}, "carryin": {"_count": 2, "on": {"_count": 1, "tryin": {"_count": 1}}, "us": {"_count": 1, "Fang": {"_count": 1}}}, "teachin": {"_count": 2, "him": {"_count": 1, "yeh": {"_count": 1}}, "yeh": {"_count": 1, "At": {"_count": 1}}}, "oversize": {"_count": 1, "human": {"_count": 1, "Grawp": {"_count": 1}}}, "earthen": {"_count": 1, "mound": {"_count": 1, "he": {"_count": 1}}}, "proportion": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "closegrowing": {"_count": 2, "hair": {"_count": 1, "the": {"_count": 1}}, "trees": {"_count": 1, "back": {"_count": 1}}}, "bracken": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "brownish": {"_count": 1, "smock": {"_count": 1, "comprised": {"_count": 1}}}, "smock": {"_count": 3, "comprised": {"_count": 1, "of": {"_count": 1}}, "beneath": {"_count": 1, "it": {"_count": 1}}, "looked": {"_count": 1, "less": {"_count": 1}}}, "sledges": {"_count": 1, "resting": {"_count": 1, "one": {"_count": 1}}}, "proceeding": {"_count": 1, "toward": {"_count": 1, "Grawp": {"_count": 1}}}, "bough": {"_count": 4, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "raised": {"_count": 1, "ready": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}}, "Grawpy": {"_count": 7, "": {"_count": 3, "?": {"_count": 2}, "!": {"_count": 1}}, "shouted": {"_count": 1, "Hagrid": {"_count": 1}}, "don": {"_count": 1, "do": {"_count": 1}}, "an": {"_count": 1, "Fang": {"_count": 1}}, "was": {"_count": 1, "carryin": {"_count": 1}}}, "uprooted": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "roofs": {"_count": 1, "ripped": {"_count": 1}}}, "halfbricks": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "greenishbrown": {"_count": 1, "and": {"_count": 1, "just": {"_count": 1}}}, "gummed": {"_count": 1, "together": {"_count": 1, "with": {"_count": 1}}}, "cricket": {"_count": 1, "balls": {"_count": 1, "to": {"_count": 1}}}, "agility": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "wakefulness": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "Grawps": {"_count": 8, "wrists": {"_count": 1, "and": {"_count": 1}}, "knee": {"_count": 1, "a": {"_count": 1}}, "hand": {"_count": 1, "had": {"_count": 1}}, "fist": {"_count": 1, "scraped": {"_count": 1}}, "about": {"_count": 1, "sixteen": {"_count": 1}}, "outstretched": {"_count": 1, "fingers": {"_count": 1}}, "blood": {"_count": 2, "showered": {"_count": 1}, "": {"_count": 1}}}, "grenades": {"_count": 1, "toward": {"_count": 1, "the": {"_count": 1}}}, "Company": {"_count": 1, "see": {"_count": 1, "": {"_count": 1}}}, "buffoon": {"_count": 2, "I": {"_count": 1, "brought": {"_count": 1}}, "she": {"_count": 1, "nodded": {"_count": 1}}}, "deluged": {"_count": 3, "Hagrid": {"_count": 1, "with": {"_count": 1}}, "in": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}}, "hastening": {"_count": 4, "over": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "her": {"_count": 1}}, "his": {"_count": 1, "departure": {"_count": 1}}}, "Hermy": {"_count": 4, "Hermione": {"_count": 1, "": {"_count": 1}}, "Grawp": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "GRAWPY": {"_count": 2, "NO": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "BAD": {"_count": 2, "BOY": {"_count": 2, "GRAWPY": {"_count": 1}, "": {"_count": 1}}}, "DON": {"_count": 1, "GRAB": {"_count": 1, "OUCH": {"_count": 1}}}, "GRAB": {"_count": 1, "OUCH": {"_count": 1, "": {"_count": 1}}}, "boulderish": {"_count": 1, "face": {"_count": 1, "the": {"_count": 1}}}, "civilize": {"_count": 1, "the": {"_count": 1, "giant": {"_count": 1}}}, "capacity": {"_count": 2, "to": {"_count": 1, "delude": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "delude": {"_count": 1, "himself": {"_count": 1, "that": {"_count": 1}}}, "lovably": {"_count": 1, "harmless": {"_count": 1, "fool": {"_count": 1}}}, "highcheekboned": {"_count": 1, "face": {"_count": 1, "and": {"_count": 1}}}, "quiverful": {"_count": 1, "of": {"_count": 1, "arrows": {"_count": 1}}}, "Magorian": {"_count": 18, "": {"_count": 5, "?": {"_count": 1}, ".": {"_count": 4}}, "quietly": {"_count": 1, "": {"_count": 1}}, "smoothly": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "up": {"_count": 1}}, "calmly": {"_count": 1, "the": {"_count": 1}}, "called": {"_count": 1, "after": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "walking": {"_count": 1}}, "roughly": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 2, "many": {"_count": 1}, "Bane": {"_count": 1}}, "she": {"_count": 1, "continued": {"_count": 1}}, "and": {"_count": 1, "screamed": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}}, "blackbodied": {"_count": 1, "and": {"_count": 1, "bearded": {"_count": 1}}}, "inflection": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "stoppin": {"_count": 1, "all": {"_count": 1, "of": {"_count": 1}}}, "committin": {"_count": 1, "murder": {"_count": 1, "": {"_count": 1}}}, "servitude": {"_count": 1, "to": {"_count": 1, "humans": {"_count": 1}}}, "Servitude": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "peddling": {"_count": 1, "our": {"_count": 1, "knowledge": {"_count": 1}}}, "\u2018our": {"_count": 1, "forest": {"_count": 1, "if": {"_count": 1}}}, "profited": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "irenze": {"_count": 1, "s": {"_count": 1, "teachings": {"_count": 1}}}, "teachings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Henceforth": {"_count": 1, "stay": {"_count": 1, "away": {"_count": 1}}}, "forfeited": {"_count": 1, "the": {"_count": 1, "friendship": {"_count": 1}}}, "fores": {"_count": 1, "by": {"_count": 1, "a": {"_count": 1}}}, "mules": {"_count": 1, "like": {"_count": 1, "you": {"_count": 1}}}, "tolerance": {"_count": 4, "is": {"_count": 1, "waning": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "he": {"_count": 1, "wasnt": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "waning": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "nags": {"_count": 2, "though": {"_count": 1, "eh": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "greenandsilverclad": {"_count": 1, "Slytherins": {"_count": 1, "but": {"_count": 1}}}, "WON": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "lintel": {"_count": 2, "but": {"_count": 1, "nobody": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "strains": {"_count": 1, "of": {"_count": 1, "Weasley": {"_count": 1}}}, "erupting": {"_count": 3, "into": {"_count": 1, "the": {"_count": 1}}, "inside": {"_count": 1, "Harrys": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}}, "reality": {"_count": 5, "in": {"_count": 1, "quite": {"_count": 1}}, "reliving": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "outbursts": {"_count": 2, "of": {"_count": 1, "Weasley": {"_count": 1}}, "from": {"_count": 1, "Mrs": {"_count": 1}}}, "dozenth": {"_count": 1, "time": {"_count": 1, "": {"_count": 1}}}, "modestly": {"_count": 3, "sweeping": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "we": {"_count": 1, "got": {"_count": 1}}}, "wilt": {"_count": 1, "with": {"_count": 1, "disappointment": {"_count": 1}}}, "placatory": {"_count": 1, "hand": {"_count": 1, "toward": {"_count": 1}}}, "untrue": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "twentyfoot": {"_count": 1, "pine": {"_count": 1, "trees": {"_count": 1}}}, "millimeter": {"_count": 2, "apart": {"_count": 1, "from": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "satingreen": {"_count": 1, "lawns": {"_count": 1, "rippled": {"_count": 1}}}, "purposeful": {"_count": 4, "feverish": {"_count": 1, "atmosphere": {"_count": 1}}, "tread": {"_count": 1, "breaking": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "look": {"_count": 1, "on": {"_count": 1}}}, "tuition": {"_count": 1, "If": {"_count": 1, "he": {"_count": 1}}}, "Eights": {"_count": 1, "my": {"_count": 1, "average": {"_count": 1}}}, "recital": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Examinations": {"_count": 2, "Authority": {"_count": 1, "for": {"_count": 1}}, "Authoritys": {"_count": 1, "rules": {"_count": 1}}}, "Griselda": {"_count": 2, "Marchbanks": {"_count": 2, "weve": {"_count": 1}, "is": {"_count": 1}}}, "blackmarket": {"_count": 2, "trade": {"_count": 1, "in": {"_count": 1}}, "butterbeers": {"_count": 1, "they": {"_count": 1}}}, "aids": {"_count": 1, "to": {"_count": 1, "concentration": {"_count": 1}}}, "wakefulness": {"_count": 1, "had": {"_count": 1, "sprung": {"_count": 1}}}, "Baruffios": {"_count": 1, "Brain": {"_count": 1, "Elixir": {"_count": 1}}}, "Brain": {"_count": 5, "Elixir": {"_count": 1, "offered": {"_count": 1}}, "Room": {"_count": 3, "and": {"_count": 1}, "descending": {"_count": 1}, "stood": {"_count": 1}}, "The": {"_count": 1, "scene": {"_count": 1}}}, "Eddie": {"_count": 1, "Carmichael": {"_count": 1, "who": {"_count": 1}}}, "Carmichael": {"_count": 2, "who": {"_count": 1, "swore": {"_count": 1}}, "and": {"_count": 1, "poured": {"_count": 1}}}, "solely": {"_count": 2, "responsible": {"_count": 1, "for": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "pint": {"_count": 3, "for": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "reimburse": {"_count": 1, "him": {"_count": 1, "for": {"_count": 1}}}, "Dingles": {"_count": 2, "powdered": {"_count": 1, "dragon": {"_count": 1}}, "got": {"_count": 1, "powdered": {"_count": 1}}}, "boost": {"_count": 2, "you": {"_count": 1, "come": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "stimulants": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Anti": {"_count": 1, "Cheating": {"_count": 1, "Charms": {"_count": 1}}}, "Cheating": {"_count": 1, "Charms": {"_count": 1, "have": {"_count": 1}}}, "AutoAnswer": {"_count": 1, "Quills": {"_count": 1, "are": {"_count": 1}}}, "Remembralls": {"_count": 1, "Detachable": {"_count": 1, "Cribbing": {"_count": 1}}}, "Detachable": {"_count": 1, "Cribbing": {"_count": 1, "Cuffs": {"_count": 1}}}, "Cribbing": {"_count": 1, "Cuffs": {"_count": 1, "and": {"_count": 1}}}, "Cuffs": {"_count": 1, "and": {"_count": 1, "Self": {"_count": 1}}}, "Correcting": {"_count": 1, "Ink": {"_count": 1, "": {"_count": 1}}}, "Authoritys": {"_count": 1, "rules": {"_count": 1, "": {"_count": 1}}}, "contemplating": {"_count": 4, "a": {"_count": 1, "particularly": {"_count": 1}}, "hideous": {"_count": 1, "revenges": {"_count": 1}}, "his": {"_count": 1, "hoop": {"_count": 1}}, "the": {"_count": 1, "name": {"_count": 1}}}, "headmistresss": {"_count": 1, "new": {"_count": 1, "regime": {"_count": 1}}}, "flare": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "asked": {"_count": 1}}}, "Achievements": {"_count": 1, "in": {"_count": 1, "Charming": {"_count": 1}}}, "definition": {"_count": 2, "of": {"_count": 2, "a": {"_count": 2}}}, "Substantive": {"_count": 1, "Charm": {"_count": 1, "while": {"_count": 1}}}, "locomotion": {"_count": 1, "charms": {"_count": 1, "were": {"_count": 1}}}, "examiners": {"_count": 4, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "looked": {"_count": 1, "around": {"_count": 1}}, "reflection": {"_count": 1, "": {"_count": 1}}}, "deferentially": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dawdling": {"_count": 2, "around": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Examined": {"_count": 1, "him": {"_count": 1, "personally": {"_count": 1}}}, "declaration": {"_count": 1, "that": {"_count": 1, "she": {"_count": 1}}}, "expressed": {"_count": 7, "a": {"_count": 2, "more": {"_count": 1}, "desire": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "disgust": {"_count": 1, "and": {"_count": 1}}, "any": {"_count": 1, "of": {"_count": 1}}, "that": {"_count": 1, "view": {"_count": 1}}, "agony": {"_count": 1, "of": {"_count": 1}}}, "achievable": {"_count": 1, "ambition": {"_count": 1, "now": {"_count": 1}}}, "Achievement": {"_count": 1, "in": {"_count": 1, "Charming": {"_count": 1}}}, "milled": {"_count": 1, "around": {"_count": 1, "in": {"_count": 1}}}, "reenter": {"_count": 4, "the": {"_count": 4, "Great": {"_count": 1}, "battle": {"_count": 1}, "Slytherin": {"_count": 1}, "castle": {"_count": 1}}}, "stafftable": {"_count": 1, "end": {"_count": 1, "of": {"_count": 1}}}, "hiccups": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "alphabetical": {"_count": 2, "order": {"_count": 2, "those": {"_count": 1}, "replace": {"_count": 1}}}, "Daphne": {"_count": 1, "Greengrass": {"_count": 1, "": {"_count": 1}}}, "Greengrass": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Tofty": {"_count": 12, "is": {"_count": 1, "free": {"_count": 1}}, "consulting": {"_count": 1, "his": {"_count": 1}}, "smiled": {"_count": 1, "back": {"_count": 1}}, "who": {"_count": 3, "was": {"_count": 2}, "seemed": {"_count": 1}}, "clapped": {"_count": 1, "his": {"_count": 1}}, "strolled": {"_count": 1, "among": {"_count": 1}}, "gave": {"_count": 1, "another": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "anxiously": {"_count": 1, "": {"_count": 1}}}, "baldest": {"_count": 1, "examiner": {"_count": 1, "who": {"_count": 1}}}, "examiner": {"_count": 6, "who": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "plump": {"_count": 1}}, "in": {"_count": 1, "detail": {"_count": 1}}, "just": {"_count": 1, "spotted": {"_count": 1}}, "and": {"_count": 1, "Ron": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cartwheels": {"_count": 1, "for": {"_count": 1, "me": {"_count": 1}}}, "Levitation": {"_count": 1, "Charm": {"_count": 1, "was": {"_count": 1}}}, "Color": {"_count": 2, "Change": {"_count": 1, "and": {"_count": 1}}, "flooded": {"_count": 1, "Freds": {"_count": 1}}}, "Growth": {"_count": 1, "Charms": {"_count": 1, "so": {"_count": 1}}}, "rectify": {"_count": 1, "his": {"_count": 1, "mistake": {"_count": 1}}}, "mutate": {"_count": 1, "into": {"_count": 1, "a": {"_count": 1}}}, "submerged": {"_count": 2, "themselves": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "iguana": {"_count": 1, "whereas": {"_count": 1, "poor": {"_count": 1}}}, "flamingos": {"_count": 1, "causing": {"_count": 1, "the": {"_count": 1}}}, "Geranium": {"_count": 1, "Harry": {"_count": 1, "felt": {"_count": 1}}}, "banishing": {"_count": 1, "spell": {"_count": 1, "": {"_count": 1}}}, "desultory": {"_count": 1, "game": {"_count": 1, "of": {"_count": 1}}}, "tempered": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "mistranslated": {"_count": 1, "\u2018ehwaz": {"_count": 1, "said": {"_count": 1}}}, "\u2018ehwaz": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "\u2018partnership": {"_count": 1, "not": {"_count": 1, "\u2018defense": {"_count": 1}}}, "\u2018defense": {"_count": 1, "I": {"_count": 1, "mixed": {"_count": 1}}}, "\u2018eihwaz": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sweettempered": {"_count": 1, "girl": {"_count": 1, "said": {"_count": 1}}}, "ambitions": {"_count": 3, "to": {"_count": 1, "become": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "toughest": {"_count": 2, "subject": {"_count": 1, "there": {"_count": 1}}, "most": {"_count": 1, "skilled": {"_count": 1}}}, "Tuesdays": {"_count": 1, "Care": {"_count": 1, "of": {"_count": 1}}}, "firecrab": {"_count": 1, "without": {"_count": 1, "sustaining": {"_count": 1}}}, "sustaining": {"_count": 1, "serious": {"_count": 1, "burns": {"_count": 1}}}, "tealeaf": {"_count": 1, "reading": {"_count": 1, "saying": {"_count": 1}}}, "stargazing": {"_count": 1, "cloudless": {"_count": 1, "and": {"_count": 1}}}, "Orion": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "parapet": {"_count": 3, "where": {"_count": 1, "he": {"_count": 1}}, "toward": {"_count": 1, "Hagrids": {"_count": 1}}, "and": {"_count": 1, "pointing": {"_count": 1}}}, "adjustment": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "refocused": {"_count": 1, "it": {"_count": 1, "now": {"_count": 1}}}, "squattest": {"_count": 1, "among": {"_count": 1, "them": {"_count": 1}}}, "Venuss": {"_count": 1, "position": {"_count": 1, "jamming": {"_count": 1}}}, "jamming": {"_count": 1, "his": {"_count": 1, "eye": {"_count": 1}}}, "Figures": {"_count": 2, "were": {"_count": 1, "now": {"_count": 1}}, "on": {"_count": 1, "broomsticks": {"_count": 1}}}, "Marchbankss": {"_count": 1, "eyes": {"_count": 1, "on": {"_count": 1}}}, "mislabelled": {"_count": 1, "Venus": {"_count": 1, "as": {"_count": 1}}}, "Cries": {"_count": 1, "and": {"_count": 1, "yells": {"_count": 1}}}, "damned": {"_count": 3, "yeh": {"_count": 1, "won": {"_count": 1}}, "to": {"_count": 1, "your": {"_count": 1}}, "door": {"_count": 1, "": {"_count": 1}}}, "warrant": {"_count": 1, "such": {"_count": 1, "Hermione": {"_count": 1}}}, "Galloping": {"_count": 1, "gargoyles": {"_count": 1, "": {"_count": 1}}}, "COWARDS": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "helper": {"_count": 2, "seemed": {"_count": 1, "highly": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}}, "fullpelt": {"_count": 1, "toward": {"_count": 1, "the": {"_count": 1}}}, "Toftys": {"_count": 1, "voice": {"_count": 1, "said": {"_count": 1}}}, "twothirds": {"_count": 3, "of": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}, "Rons": {"_count": 1, "height": {"_count": 1}}}, "mes": {"_count": 1, "been": {"_count": 1, "putting": {"_count": 1}}}, "hideous": {"_count": 2, "revenges": {"_count": 1, "and": {"_count": 1}}, "yells": {"_count": 1, "and": {"_count": 1}}}, "revenges": {"_count": 1, "and": {"_count": 1, "arose": {"_count": 1}}}, "unrested": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "threeandahalf": {"_count": 1, "feet": {"_count": 1, "high": {"_count": 1}}}, "distractingly": {"_count": 1, "against": {"_count": 1, "one": {"_count": 1}}}, "tortuously": {"_count": 1, "he": {"_count": 1, "began": {"_count": 1}}}, "breached": {"_count": 2, "in": {"_count": 1, "1": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "749": {"_count": 1, "and": {"_count": 1, "what": {"_count": 1}}}, "recurrence": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "of": {"_count": 1, "that": {"_count": 1}}}, "alighted": {"_count": 2, "upon": {"_count": 1, "number": {"_count": 1}}, "whole": {"_count": 1, "and": {"_count": 1}}}, "Liechtenstein": {"_count": 6, "refused": {"_count": 1, "to": {"_count": 1}}, "because": {"_count": 1, "All": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "was": {"_count": 1, "having": {"_count": 1}}, "had": {"_count": 1, "wanted": {"_count": 1}}}, "torpid": {"_count": 1, "and": {"_count": 1, "slack": {"_count": 1}}}, "visualize": {"_count": 3, "a": {"_count": 1, "heading": {"_count": 1}}, "them": {"_count": 1, "quite": {"_count": 1}}, "it": {"_count": 1, "as": {"_count": 1}}}, "glistened": {"_count": 6, "in": {"_count": 1, "it": {"_count": 1}}, "like": {"_count": 1, "raindrops": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "a": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "sweat": {"_count": 1}}}, "Pierre": {"_count": 2, "Bonaccord": {"_count": 2, "but": {"_count": 1}, "and": {"_count": 1}}}, "Bonaccord": {"_count": 4, "but": {"_count": 1, "his": {"_count": 1}}, "had": {"_count": 2, "done": {"_count": 1}, "wanted": {"_count": 1}}, "and": {"_count": 1, "Liechtenstein": {"_count": 1}}}, "contested": {"_count": 2, "by": {"_count": 1, "the": {"_count": 1}}, "between": {"_count": 1, "wizards": {"_count": 1}}}, "burrowing": {"_count": 1, "rats": {"_count": 1, "": {"_count": 1}}}, "tribe": {"_count": 2, "of": {"_count": 1, "particularly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "confederation": {"_count": 2, "had": {"_count": 2, "gone": {"_count": 1}, "met": {"_count": 1}}}, "neverending": {"_count": 1, "answers": {"_count": 1, "and": {"_count": 1}}}, "destination": {"_count": 16, "at": {"_count": 1, "last": {"_count": 1}}, "and": {"_count": 4, "wondered": {"_count": 1}, "move": {"_count": 1}, "ours": {"_count": 1}, "hope": {"_count": 1}}, "said": {"_count": 1, "Twycross": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "found": {"_count": 1}, "could": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "Hogsmeade": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "it": {"_count": 1}}, "not": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}}, "cathedralsized": {"_count": 1, "room": {"_count": 1, "full": {"_count": 1}}}, "ninetyseven": {"_count": 5, "he": {"_count": 1, "turned": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "whispered": {"_count": 1, "Hermione": {"_count": 1}}, "but": {"_count": 1, "found": {"_count": 1}}, "Harry": {"_count": 1, "turned": {"_count": 1}}}, "kindness": {"_count": 2, "Take": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "respect": {"_count": 1}}}, "Lift": {"_count": 1, "it": {"_count": 1, "down": {"_count": 1}}}, "Pressure": {"_count": 1, "of": {"_count": 1, "examinations": {"_count": 1}}}, "reproaches": {"_count": 2, "and": {"_count": 1, "burst": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hurricane": {"_count": 5, "causing": {"_count": 1, "Madam": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Fudge": {"_count": 1}}}, "irascible": {"_count": 2, "and": {"_count": 1, "inflexible": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dependably": {"_count": 1, "solidly": {"_count": 1, "present": {"_count": 1}}}, "Cowardice": {"_count": 1, "thats": {"_count": 1, "what": {"_count": 1}}}, "expanding": {"_count": 4, "inside": {"_count": 2, "him": {"_count": 2}}, "gold": {"_count": 1, "": {"_count": 1}}, "avalanche": {"_count": 1, "of": {"_count": 1}}}, "Gget": {"_count": 1, "there": {"_count": 1, "": {"_count": 1}}}, "undetected": {"_count": 5, "": {"_count": 1, "?": {"_count": 1}}, "but": {"_count": 1, "unfortunately": {"_count": 1}}, "around": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "wrongdoing": {"_count": 1, "at": {"_count": 1}}}, "savingpeoplething": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "\u2018savingpeoplething": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "prickly": {"_count": 5, "anger": {"_count": 1, "swept": {"_count": 1}}, "bramblelike": {"_count": 1, "vines": {"_count": 1}}, "vines": {"_count": 1, "shot": {"_count": 1}}, "feeling": {"_count": 1, "of": {"_count": 1}}, "silence": {"_count": 1, "": {"_count": 1}}}, "Myst": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "peoplething": {"_count": 1, "when": {"_count": 1, "it": {"_count": 1}}}, "ACT": {"_count": 1, "LIKE": {"_count": 1, "I": {"_count": 1}}}, "EXPECT": {"_count": 1, "HED": {"_count": 1, "SAY": {"_count": 1}}}, "HED": {"_count": 1, "SAY": {"_count": 1, "SOMETHING": {"_count": 1}}}, "SAY": {"_count": 2, "SOMETHING": {"_count": 1, "DIFFERENT": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "DIFFERENT": {"_count": 1, "IF": {"_count": 1, "HE": {"_count": 1}}}, "KNEW": {"_count": 1, "WHAT": {"_count": 1, "ID": {"_count": 1}}}, "ID": {"_count": 3, "JUST": {"_count": 1, "The": {"_count": 1}}, "DO": {"_count": 2, "DEM": {"_count": 2}}}, "establish": {"_count": 2, "whether": {"_count": 1, "Sirius": {"_count": 1}}, "basic": {"_count": 1, "protection": {"_count": 1}}}, "lookouts": {"_count": 5, "and": {"_count": 1, "thats": {"_count": 1}}, "around": {"_count": 1, "my": {"_count": 1}}, "or": {"_count": 1, "backup": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "\u2018Sirius": {"_count": 1, "are": {"_count": 1, "you": {"_count": 1}}}, "Garroting": {"_count": 3, "Gas": {"_count": 3, "": {"_count": 1}, "just": {"_count": 1}, "seemed": {"_count": 1}}}, "readiness": {"_count": 1, "with": {"_count": 1, "which": {"_count": 1}}}, "solidarity": {"_count": 1, "and": {"_count": 1, "loyalty": {"_count": 1}}}, "minutesll": {"_count": 1, "be": {"_count": 1, "enough": {"_count": 1}}}, "dusktilldawn": {"_count": 1, "endofexams": {"_count": 1, "celebration": {"_count": 1}}}, "endofexams": {"_count": 1, "celebration": {"_count": 1, "in": {"_count": 1}}}, "Dingle": {"_count": 1, "reckons": {"_count": 1, "he": {"_count": 1}}}, "recess": {"_count": 1, "where": {"_count": 1, "the": {"_count": 1}}}, "Latin": {"_count": 1, "mumblings": {"_count": 1, "of": {"_count": 1}}}, "mumblings": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "garish": {"_count": 2, "kittens": {"_count": 1, "were": {"_count": 1}}, "shade": {"_count": 1, "of": {"_count": 1}}}, "fairground": {"_count": 1, "ride": {"_count": 1, "though": {"_count": 1}}}, "inflicting": {"_count": 1, "punishment": {"_count": 1, "upon": {"_count": 1}}}, "abruptness": {"_count": 1, "he": {"_count": 1, "was": {"_count": 1}}}, "Sensoring": {"_count": 1, "Spells": {"_count": 1, "placed": {"_count": 1}}}, "grope": {"_count": 5, "inside": {"_count": 2, "the": {"_count": 1}, "it": {"_count": 1}}, "our": {"_count": 1, "way": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}}, "Hers": {"_count": 1, "too": {"_count": 1, "": {"_count": 1}}}, "LiaA": {"_count": 1, "shouted": {"_count": 1, "Umbridge": {"_count": 1}}}, "pinioned": {"_count": 1, "against": {"_count": 1, "the": {"_count": 1}}}, "stranglehold": {"_count": 1, "by": {"_count": 1, "Crabbe": {"_count": 1}}}, "suffocation": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "found": {"_count": 1}}}, "struggles": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "free": {"_count": 1}}}, "Weasleyfree": {"_count": 1, "zone": {"_count": 1, "doesnt": {"_count": 1}}}, "zone": {"_count": 1, "doesnt": {"_count": 1, "it": {"_count": 1}}}, "chintzcovered": {"_count": 1, "armchair": {"_count": 1, "blinking": {"_count": 1}}}, "captives": {"_count": 1, "like": {"_count": 1, "a": {"_count": 1}}}, "flowerbed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wreaking": {"_count": 2, "havoc": {"_count": 2, "in": {"_count": 1}, "": {"_count": 1}}}, "smearing": {"_count": 1, "ink": {"_count": 1, "on": {"_count": 1}}}, "eyepieces": {"_count": 1, "of": {"_count": 1, "all": {"_count": 1}}}, "fidgetings": {"_count": 1, "and": {"_count": 1, "scufflings": {"_count": 1}}}, "scufflings": {"_count": 1, "resultant": {"_count": 1, "from": {"_count": 1}}}, "nelson": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "captor": {"_count": 2, "gazing": {"_count": 1, "vaguely": {"_count": 1}}, "her": {"_count": 1, "wand": {"_count": 1}}}, "indifference": {"_count": 6, "": {"_count": 3, ".": {"_count": 3}}, "was": {"_count": 1, "as": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "interrogate": {"_count": 4, "Potter": {"_count": 1, "he": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "them": {"_count": 1, "about": {"_count": 1}}, "your": {"_count": 1, "wife": {"_count": 1}}}, "cycle": {"_count": 1, "to": {"_count": 1, "mature": {"_count": 1}}}, "toadishly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "unflinchingly": {"_count": 1, "concentrating": {"_count": 1, "hard": {"_count": 1}}}, "stocks": {"_count": 1, "of": {"_count": 1, "Veritaserum": {"_count": 1}}}, "truthtelling": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ironic": {"_count": 1, "bow": {"_count": 1, "and": {"_count": 1}}}, "inscrutable": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "reasons": {"_count": 1, "Voldemort": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "Beverage": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "suffocates": {"_count": 1, "it": {"_count": 1, "will": {"_count": 1}}}, "turmoil": {"_count": 2, "than": {"_count": 1, "before": {"_count": 1}}, "fatalities": {"_count": 1, "and": {"_count": 1}}}, "bleating": {"_count": 1, "about": {"_count": 1, "silencing": {"_count": 1}}}, "silencing": {"_count": 2, "you": {"_count": 1, "somehow": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}}, "discrediting": {"_count": 1, "you": {"_count": 1, "but": {"_count": 1}}}, "Cruc": {"_count": 3, "NO": {"_count": 1, "": {"_count": 1}}, "But": {"_count": 1, "Snape": {"_count": 1}}, "yelled": {"_count": 1, "Harry": {"_count": 1}}}, "QuestionAll": {"_count": 1, "is": {"_count": 1, "going": {"_count": 1}}}, "nee": {"_count": 1, "no": {"_count": 1, "": {"_count": 1}}}, "captors": {"_count": 3, "toes": {"_count": 1, "even": {"_count": 1}}, "encircling": {"_count": 1, "grip": {"_count": 1}}, "over": {"_count": 1, "and": {"_count": 1}}}, "minions": {"_count": 1, "was": {"_count": 1, "focused": {"_count": 1}}}, "anguish": {"_count": 5, "but": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Harry": {"_count": 1, "but": {"_count": 1}}, "than": {"_count": 1, "ever": {"_count": 1}}}, "resurgence": {"_count": 1, "of": {"_count": 1, "excitement": {"_count": 1}}}, "rready": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Weapon": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "Yyyes": {"_count": 1, "gasped": {"_count": 1, "Hermione": {"_count": 1}}}, "nnnow": {"_count": 1, "weve": {"_count": 1, "finished": {"_count": 1}}}, "cccant": {"_count": 1, "find": {"_count": 1, "him": {"_count": 1}}}, "rrreally": {"_count": 1, "understand": {"_count": 1, "it": {"_count": 1}}}, "jjjust": {"_count": 1, "did": {"_count": 1, "what": {"_count": 1}}}, "PPProfessor": {"_count": 1, "Dumbledore": {"_count": 1, "told": {"_count": 1}}}, "Ththat": {"_count": 1, "would": {"_count": 1, "serve": {"_count": 1}}}, "whwhole": {"_count": 1, "school": {"_count": 1, "knew": {"_count": 1}}}, "uuse": {"_count": 1, "it": {"_count": 1, "and": {"_count": 1}}}, "ssort": {"_count": 1, "you": {"_count": 1, "out": {"_count": 1}}}, "contemplated": {"_count": 4, "Hermione": {"_count": 1, "for": {"_count": 1}}, "Harry": {"_count": 1, "for": {"_count": 1}}, "each": {"_count": 1, "other": {"_count": 1}}, "the": {"_count": 1, "thing": {"_count": 1}}}, "squad": {"_count": 1, "should": {"_count": 1, "come": {"_count": 1}}}, "schoolchildren": {"_count": 1, "should": {"_count": 1, "see": {"_count": 1}}}, "FIGHT": {"_count": 1, "AND": {"_count": 1, "FLIGHT": {"_count": 1}}}, "Umb": {"_count": 1, "ridges": {"_count": 1, "office": {"_count": 1}}}, "ridges": {"_count": 1, "office": {"_count": 1, "knowing": {"_count": 1}}}, "uncertainty": {"_count": 3, "in": {"_count": 1, "her": {"_count": 1}}, "with": {"_count": 1, "YouKnowWho": {"_count": 1}}, "and": {"_count": 1, "fear": {"_count": 1}}}, "bramble": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sapling": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "whimpers": {"_count": 2, "of": {"_count": 1, "terror": {"_count": 1}}, "and": {"_count": 1, "blunderings": {"_count": 1}}}, "chestnutbodied": {"_count": 1, "centaur": {"_count": 1, "called": {"_count": 1}}}, "bowstrings": {"_count": 1, "around": {"_count": 1, "them": {"_count": 1}}}, "\u2018Any": {"_count": 1, "attack": {"_count": 1, "by": {"_count": 1}}}, "deemed": {"_count": 4, "to": {"_count": 2, "have": {"_count": 2}}, "smart": {"_count": 1, "enough": {"_count": 1}}, "it": {"_count": 1, "prudent": {"_count": 1}}}, "nearhuman": {"_count": 1, "intelligence": {"_count": 1, "and": {"_count": 1}}}, "\u2018Nearhuman": {"_count": 1, "intelligence": {"_count": 1, "": {"_count": 1}}}, "permits": {"_count": 1, "you": {"_count": 1, "certain": {"_count": 1}}}, "areas": {"_count": 1, "of": {"_count": 1, "land": {"_count": 1}}}, "raucously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "neighing": {"_count": 2, "laughter": {"_count": 1, "echoing": {"_count": 1}}, "roars": {"_count": 1, "of": {"_count": 1}}}, "Uncontrolled": {"_count": 1, "animals": {"_count": 1, "": {"_count": 1}}}, "Incarcerousl": {"_count": 2, "Ropes": {"_count": 1, "flew": {"_count": 1}}, "A": {"_count": 1, "few": {"_count": 1}}}, "trapping": {"_count": 2, "his": {"_count": 1, "arms": {"_count": 1}}, "a": {"_count": 1, "couple": {"_count": 1}}}, "Nooooo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Noooooo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "unhand": {"_count": 1, "me": {"_count": 1, "you": {"_count": 1}}}, "nooooo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Lifting": {"_count": 1, "his": {"_count": 1, "head": {"_count": 1}}}, "cleanly": {"_count": 3, "in": {"_count": 2, "half": {"_count": 1}, "two": {"_count": 1}}, "away": {"_count": 1, "as": {"_count": 1}}}, "manycolored": {"_count": 1, "backs": {"_count": 1, "and": {"_count": 1}}}, "manhood": {"_count": 1, "this": {"_count": 1, "one": {"_count": 1}}}, "arrogance": {"_count": 5, "of": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 2, "pride": {"_count": 1}, "stupidity": {"_count": 1}}, "or": {"_count": 1, "aggression": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "obedient": {"_count": 1, "hounds": {"_count": 1, "": {"_count": 1}}}, "hounds": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "eyes": {"_count": 1, "and": {"_count": 1}}}, "duncolored": {"_count": 1, "centaur": {"_count": 1, "shouted": {"_count": 1}}}, "invasions": {"_count": 1, "and": {"_count": 1, "insults": {"_count": 1}}}, "bricklike": {"_count": 1, "yellow": {"_count": 1, "teeth": {"_count": 1}}}, "halflight": {"_count": 1, "his": {"_count": 1, "dull": {"_count": 1}}}, "sludgecolored": {"_count": 1, "eyes": {"_count": 1, "narrowed": {"_count": 1}}}, "Hagger": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "hagger": {"_count": 1, "meant": {"_count": 1, "or": {"_count": 1}}}, "Haggeii": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "insistently": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "HAGGER": {"_count": 5, "": {"_count": 5, "!": {"_count": 3}, "?": {"_count": 2}}}, "\u2018Hagrid": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "HERMY": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "WHERE": {"_count": 1, "HAGGER": {"_count": 1, "": {"_count": 1}}}, "Wandless": {"_count": 2, "Harry": {"_count": 1, "braced": {"_count": 1}}, "helpless": {"_count": 1, "Pettigrews": {"_count": 1}}}, "peppering": {"_count": 1, "his": {"_count": 1, "enormous": {"_count": 1}}}, "Pebblesized": {"_count": 1, "droplets": {"_count": 1, "of": {"_count": 1}}}, "disorder": {"_count": 1, "galloping": {"_count": 1, "away": {"_count": 1}}}, "Smart": {"_count": 2, "plan": {"_count": 1, "he": {"_count": 1}}, "girl": {"_count": 1, "that": {"_count": 1}}}, "insurmountable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bogeys": {"_count": 2, "attacking": {"_count": 1, "him": {"_count": 1}}, "landed": {"_count": 1, "on": {"_count": 1}}}, "frustratedly": {"_count": 1, "because": {"_count": 1, "we": {"_count": 1}}}, "Kacky": {"_count": 1, "Snorgle": {"_count": 1, "or": {"_count": 1}}}, "Snorgle": {"_count": 1, "or": {"_count": 1, "whatever": {"_count": 1}}}, "manes": {"_count": 2, "and": {"_count": 2, "Harry": {"_count": 1}, "told": {"_count": 1}}}, "lures": {"_count": 1, "thestrals": {"_count": 1, "with": {"_count": 1}}}, "occurring": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "MYSTERIES": {"_count": 1, "Harry": {"_count": 1, "wound": {"_count": 1}}}, "silken": {"_count": 4, "back": {"_count": 1, "": {"_count": 1}}, "wrappings": {"_count": 1, "": {"_count": 1}}, "rustle": {"_count": 1, "of": {"_count": 1}}, "handkerchief": {"_count": 1, "": {"_count": 1}}}, "sidesaddle": {"_count": 1, "and": {"_count": 1, "adjusting": {"_count": 1}}}, "mounts": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "steed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rump": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "silky": {"_count": 4, "mane": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "skein": {"_count": 1, "of": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}}, "gullies": {"_count": 1, "below": {"_count": 1, "them": {"_count": 1}}}, "collections": {"_count": 1, "of": {"_count": 1, "lights": {"_count": 1}}}, "beetling": {"_count": 1, "its": {"_count": 1, "way": {"_count": 1}}}, "Twilight": {"_count": 1, "fell": {"_count": 1, "The": {"_count": 1}}}, "willed": {"_count": 2, "it": {"_count": 1, "to": {"_count": 1}}, "Hermione": {"_count": 1, "to": {"_count": 1}}}, "elapsed": {"_count": 4, "since": {"_count": 3, "he": {"_count": 2}, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sear": {"_count": 2, "as": {"_count": 1, "painfully": {"_count": 1}}, "the": {"_count": 1, "back": {"_count": 1}}}, "Presumably": {"_count": 1, "they": {"_count": 1, "had": {"_count": 1}}}, "rounder": {"_count": 1, "on": {"_count": 1, "all": {"_count": 1}}}, "vandalized": {"_count": 1, "telephone": {"_count": 1, "box": {"_count": 1}}}, "streetlights": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "indicated": {"_count": 1, "the": {"_count": 1}}}, "foraging": {"_count": 2, "for": {"_count": 1, "scraps": {"_count": 1}}, "emerged": {"_count": 1, "with": {"_count": 1}}}, "Whoevers": {"_count": 1, "nearest": {"_count": 1, "the": {"_count": 1}}}, "bizarrely": {"_count": 2, "to": {"_count": 1, "reach": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "Visitors": {"_count": 1, "please": {"_count": 1, "take": {"_count": 1}}}, "RESCUE": {"_count": 1, "MISSION": {"_count": 1, "Visitor": {"_count": 1}}}, "MISSION": {"_count": 1, "Visitor": {"_count": 1, "to": {"_count": 1}}}, "mantelpieces": {"_count": 1, "set": {"_count": 1, "into": {"_count": 1}}}, "sinuously": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "around": {"_count": 1, "Filchs": {"_count": 1}}}, "handleless": {"_count": 1, "black": {"_count": 1, "doors": {"_count": 1}}}, "streaks": {"_count": 3, "burned": {"_count": 1, "into": {"_count": 1}}, "of": {"_count": 2, "blue": {"_count": 1}, "gray": {"_count": 1}}}, "erase": {"_count": 1, "the": {"_count": 1, "blue": {"_count": 1}}}, "glitters": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "deepgreen": {"_count": 1, "water": {"_count": 1, "big": {"_count": 1}}}, "Aquavirius": {"_count": 1, "maggots": {"_count": 1, "": {"_count": 1}}}, "maggots": {"_count": 4, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "slimy": {"_count": 1, "white": {"_count": 1}}, "and": {"_count": 1, "putting": {"_count": 1}}}, "Brains": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}}, "Glimmering": {"_count": 1, "eerily": {"_count": 1, "they": {"_count": 1}}}, "cauliflowers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "FlagrateV": {"_count": 1, "She": {"_count": 1, "drew": {"_count": 1}}}, "X": {"_count": 2, "appeared": {"_count": 1, "on": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "redgold": {"_count": 2, "blur": {"_count": 1, "in": {"_count": 1}}, "glow": {"_count": 1, "burst": {"_count": 1}}}, "tier": {"_count": 3, "of": {"_count": 2, "what": {"_count": 1}, "stone": {"_count": 1}}, "until": {"_count": 1, "at": {"_count": 1}}}, "amphitheater": {"_count": 1, "or": {"_count": 1, "the": {"_count": 1}}}, "dais": {"_count": 17, "in": {"_count": 1, "the": {"_count": 1}}, "stood": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 5}}, "but": {"_count": 1, "there": {"_count": 1}}, "and": {"_count": 2, "walk": {"_count": 1}, "wrenched": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Lupin": {"_count": 1, "grabbed": {"_count": 1}}, "Harry": {"_count": 1, "still": {"_count": 1}}, "there": {"_count": 1, "were": {"_count": 1}}}, "Unsupported": {"_count": 1, "by": {"_count": 1, "any": {"_count": 1}}}, "sway": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "ominously": {"_count": 1, "Its": {"_count": 1}}}, "\u2018in": {"_count": 2, "there": {"_count": 2, "": {"_count": 1}, "its": {"_count": 1}}}, "warranted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mesmerized": {"_count": 5, "at": {"_count": 1, "the": {"_count": 1}}, "girls": {"_count": 1, "": {"_count": 1}}, "into": {"_count": 1, "its": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "at": {"_count": 1}}}, "lowest": {"_count": 1, "stone": {"_count": 1, "bench": {"_count": 1}}}, "inscribing": {"_count": 1, "a": {"_count": 1, "fiery": {"_count": 1}}}, "nowuseless": {"_count": 1, "handle": {"_count": 1, "of": {"_count": 1}}}, "blibbering": {"_count": 1, "no": {"_count": 1, "doubt": {"_count": 1}}}, "diamondsparkling": {"_count": 1, "light": {"_count": 1, "": {"_count": 1}}}, "ranging": {"_count": 1, "the": {"_count": 1, "length": {"_count": 1}}}, "diamondbright": {"_count": 1, "light": {"_count": 1, "was": {"_count": 1}}}, "Drifting": {"_count": 1, "along": {"_count": 1, "in": {"_count": 1}}}, "hummingbird": {"_count": 1, "emerged": {"_count": 1, "which": {"_count": 1}}}, "blueglowing": {"_count": 1, "candles": {"_count": 1, "protruding": {"_count": 1}}}, "53": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fiftyfour": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "alleys": {"_count": 1, "of": {"_count": 1, "shelves": {"_count": 1}}}, "lightbulbs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "eightyfour": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ninetyseven": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Anywhere": {"_count": 1, "here": {"_count": 1, "": {"_count": 1}}}, "skulk": {"_count": 2, "down": {"_count": 1, "here": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "suspense": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Expecting": {"_count": 2, "even": {"_count": 1, "hoping": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}}, "35": {"_count": 1, "BEYOND": {"_count": 1, "THE": {"_count": 1}}}, "BEYOND": {"_count": 2, "THE": {"_count": 1, "VEIL": {"_count": 1}}, "MEASURE": {"_count": 1, "IS": {"_count": 1}}}, "VEIL": {"_count": 1, "Black": {"_count": 1, "shapes": {"_count": 1}}}, "sickeningly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "mimicked": {"_count": 3, "the": {"_count": 1, "woman": {"_count": 1}}, "him": {"_count": 1, "let": {"_count": 1}}, "Crabbe": {"_count": 1, "": {"_count": 1}}}, "ninetyseventh": {"_count": 1, "row": {"_count": 1, "": {"_count": 1}}}, "fwightened": {"_count": 1, "and": {"_count": 1, "fort": {"_count": 1}}}, "fort": {"_count": 1, "what": {"_count": 1, "it": {"_count": 1}}}, "dweamed": {"_count": 1, "was": {"_count": 1, "twoo": {"_count": 1}}}, "twoo": {"_count": 1, "said": {"_count": 1, "the": {"_count": 1}}}, "mockbaby": {"_count": 2, "voice": {"_count": 2, "": {"_count": 1}, "which": {"_count": 1}}}, "heroics": {"_count": 1, "the": {"_count": 1, "Dark": {"_count": 1}}}, "understands": {"_count": 5, "this": {"_count": 1, "about": {"_count": 1}}, "why": {"_count": 1, "Harry": {"_count": 1}}, "Potter": {"_count": 1, "as": {"_count": 1}}, "nothing": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "there": {"_count": 1}}}, "constrict": {"_count": 2, "and": {"_count": 1, "he": {"_count": 1}}, "it": {"_count": 1, "reminded": {"_count": 1}}}, "Proph": {"_count": 2, "Harry": {"_count": 1, "was": {"_count": 1}}, "Sirius": {"_count": 1, "hurtled": {"_count": 1}}}, "Protego": {"_count": 9, "before": {"_count": 1, "she": {"_count": 1}}, "Harry": {"_count": 1, "felt": {"_count": 1}}, "a": {"_count": 1, "cry": {"_count": 1}}, "Totalum": {"_count": 2, "": {"_count": 2}}, "she": {"_count": 1, "cried": {"_count": 1}}, "They": {"_count": 1, "saw": {"_count": 1}}, "Horribilis": {"_count": 1, "the": {"_count": 1}}, "roared": {"_count": 1, "Harry": {"_count": 1}}}, "cling": {"_count": 7, "on": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 5, "it": {"_count": 2}, "his": {"_count": 1}, "the": {"_count": 1}, "its": {"_count": 1}}, "onto": {"_count": 1, "its": {"_count": 1}}}, "bitty": {"_count": 1, "baby": {"_count": 1, "Potter": {"_count": 1}}}, "spunglass": {"_count": 2, "sphere": {"_count": 1, "": {"_count": 1}}, "ball": {"_count": 1, "dropped": {"_count": 1}}}, "fanatical": {"_count": 1, "glow": {"_count": 1, "": {"_count": 1}}}, "moistening": {"_count": 1, "her": {"_count": 1, "thin": {"_count": 1}}}, "lOOOHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "jest": {"_count": 1, "Harry": {"_count": 1, "Potter": {"_count": 1}}}, "jesting": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "link": {"_count": 2, "a": {"_count": 1, "space": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "besmirch": {"_count": 1, "it": {"_count": 1, "with": {"_count": 1}}}, "STUPEF": {"_count": 1, "iVO": {"_count": 1, "": {"_count": 1}}}, "iVO": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "lOOlHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "vied": {"_count": 1, "with": {"_count": 1, "each": {"_count": 1}}}, "Bellatrixs": {"_count": 32, "shouts": {"_count": 1, "": {"_count": 1}}, "jet": {"_count": 1, "of": {"_count": 1}}, "robes": {"_count": 1, "whipped": {"_count": 1}}, "glowering": {"_count": 1, "face": {"_count": 1}}, "mouth": {"_count": 2, "twisted": {"_count": 1}, "fell": {"_count": 1}}, "astonished": {"_count": 1, "gaze": {"_count": 1}}, "astounded": {"_count": 1, "face": {"_count": 1}}, "face": {"_count": 1, "so": {"_count": 1}}, "wrist": {"_count": 1, "preventing": {"_count": 1}}, "voice": {"_count": 4, "": {"_count": 2}, "we": {"_count": 1}, "and": {"_count": 1}}, "feet": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "wand": {"_count": 8, "onto": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}, "had": {"_count": 1}, "examined": {"_count": 1}, "yes": {"_count": 1}, "when": {"_count": 1}, "at": {"_count": 1}}, "knife": {"_count": 1, "flew": {"_count": 1}}, "silver": {"_count": 1, "knife": {"_count": 1}}, "low": {"_count": 1, "voice": {"_count": 1}}, "most": {"_count": 1, "contemptuous": {"_count": 1}}, "side": {"_count": 1, "there": {"_count": 1}}, "commanding": {"_count": 1, "arrogant": {"_count": 1}}, "outstretched": {"_count": 1, "arm": {"_count": 1}}, "gloating": {"_count": 1, "smile": {"_count": 1}}}, "Solstice": {"_count": 1, "will": {"_count": 1, "come": {"_count": 1}}}, "PROPHECY": {"_count": 4, "": {"_count": 3, "!": {"_count": 3}}, "Harrys": {"_count": 1, "feet": {"_count": 1}}}, "UNTIL": {"_count": 1, "WEVE": {"_count": 1, "GOT": {"_count": 1}}}, "WEVE": {"_count": 3, "GOT": {"_count": 3, "THE": {"_count": 1}, "HIM": {"_count": 1}, "THEM": {"_count": 1}}}, "erstwhile": {"_count": 2, "homes": {"_count": 1, "but": {"_count": 1}}, "editor": {"_count": 1, "of": {"_count": 1}}}, "homes": {"_count": 5, "but": {"_count": 1, "fragments": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "bound": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 1}, "knots": {"_count": 1}}}, "conveying": {"_count": 1, "it": {"_count": 1, "to": {"_count": 1}}}, "bowels": {"_count": 3, "of": {"_count": 3, "the": {"_count": 3}}}, "Smash": {"_count": 1, "shelves": {"_count": 1, "Dumbledore": {"_count": 1}}}, "wording": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "slitted": {"_count": 1, "eyeholes": {"_count": 1, "through": {"_count": 1}}}, "eyeholes": {"_count": 1, "through": {"_count": 1, "which": {"_count": 1}}}, "gritty": {"_count": 1, "with": {"_count": 1, "dust": {"_count": 1}}}, "unintell": {"_count": 1, "NOW": {"_count": 1, "": {"_count": 1}}}, "REDUCTOl": {"_count": 2, "Five": {"_count": 1, "curses": {"_count": 1}}, "Harrys": {"_count": 1, "heart": {"_count": 1}}}, "structure": {"_count": 1, "swayed": {"_count": 1, "as": {"_count": 1}}}, "longdead": {"_count": 1, "past": {"_count": 1, "amid": {"_count": 1}}}, "unleashed": {"_count": 3, "from": {"_count": 1, "their": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "power": {"_count": 1}}}, "Colloportus": {"_count": 2, "gasped": {"_count": 1, "Hermione": {"_count": 1}}, "shouted": {"_count": 1, "Harry": {"_count": 1}}}, "Notts": {"_count": 2, "injuries": {"_count": 1, "as": {"_count": 1}}, "father": {"_count": 1, "when": {"_count": 1}}}, "Jugson": {"_count": 2, "come": {"_count": 1, "back": {"_count": 1}}, "Dolohov": {"_count": 1, "the": {"_count": 1}}}, "unhatching": {"_count": 1, "toward": {"_count": 1, "the": {"_count": 1}}}, "STUPEFY": {"_count": 4, "A": {"_count": 1, "jet": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "screamed": {"_count": 1, "Hermione": {"_count": 1}}, "The": {"_count": 1, "Death": {"_count": 1}}}, "EXPELLIARMUS": {"_count": 1, "Both": {"_count": 1, "Harrys": {"_count": 1}}}, "Prophecy": {"_count": 7, "both": {"_count": 1, "scrambled": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 1}, "?": {"_count": 1}}, "that": {"_count": 1, "Voldemort": {"_count": 1}}, "has": {"_count": 1, "been": {"_count": 1}}}, "STUP": {"_count": 1, "STUPEFY": {"_count": 1, "screamed": {"_count": 1}}}, "balder": {"_count": 3, "and": {"_count": 2, "balder": {"_count": 1}, "grayer": {"_count": 1}}, "the": {"_count": 1, "black": {"_count": 1}}}, "retracting": {"_count": 1, "into": {"_count": 1, "his": {"_count": 1}}}, "peachlike": {"_count": 1, "fuzz": {"_count": 1, "": {"_count": 1}}}, "fuzz": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "babys": {"_count": 3, "head": {"_count": 2, "now": {"_count": 1}, "bawling": {"_count": 1}}, "sake": {"_count": 1, "": {"_count": 1}}}, "muscled": {"_count": 2, "neck": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "way": {"_count": 1}}}, "babyhood": {"_count": 1, "once": {"_count": 1, "more": {"_count": 1}}}, "GINNY": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Veering": {"_count": 1, "left": {"_count": 1, "he": {"_count": 1}}}, "Collo": {"_count": 2, "began": {"_count": 1, "Hermione": {"_count": 1}}, "aargh": {"_count": 1, "": {"_count": 1}}}, "bookcase": {"_count": 4, "and": {"_count": 2, "was": {"_count": 1}, "crumpled": {"_count": 1}}, "beside": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "lOlOHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "lOUHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "Whaddever": {"_count": 1, "you": {"_count": 1, "do": {"_count": 1}}}, "dond": {"_count": 1, "gib": {"_count": 1, "it": {"_count": 1}}}, "gib": {"_count": 1, "it": {"_count": 1, "to": {"_count": 1}}}, "babyheaded": {"_count": 3, "Death": {"_count": 3, "Eater": {"_count": 3}}}, "PETRIFICUS": {"_count": 1, "TOT": {"_count": 1, "ALU": {"_count": 1}}}, "TOT": {"_count": 1, "ALU": {"_count": 1, "S": {"_count": 1}}}, "ALU": {"_count": 1, "S": {"_count": 1, "The": {"_count": 1}}}, "comrade": {"_count": 1, "both": {"_count": 1, "of": {"_count": 1}}}, "Whaddid": {"_count": 1, "he": {"_count": 1, "do": {"_count": 1}}}, "kneel": {"_count": 3, "at": {"_count": 1, "her": {"_count": 1}}, "or": {"_count": 1, "even": {"_count": 1}}, "before": {"_count": 1, "me": {"_count": 1}}}, "Dats": {"_count": 1, "a": {"_count": 1, "pulse": {"_count": 1}}}, "Ib": {"_count": 6, "sure": {"_count": 1, "id": {"_count": 1}}, "going": {"_count": 1, "do": {"_count": 1}}, "sorry": {"_count": 1, "": {"_count": 1}}, "so": {"_count": 1, "sorry": {"_count": 1}}, "really": {"_count": 1, "sorry": {"_count": 1}}, "Bardy": {"_count": 1, "said": {"_count": 1}}}, "id": {"_count": 1, "is": {"_count": 1, "": {"_count": 1}}}, "dink": {"_count": 3, "so": {"_count": 1, "": {"_count": 1}}, "hes": {"_count": 2, "all": {"_count": 2}}}, "blunderings": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Raise": {"_count": 1, "the": {"_count": 1, "alarm": {"_count": 1}}}, "whad": {"_count": 1, "are": {"_count": 1, "you": {"_count": 1}}}, "dem": {"_count": 2, "wid": {"_count": 1, "you": {"_count": 1}}, "dan": {"_count": 1, "I": {"_count": 1}}}, "wid": {"_count": 2, "you": {"_count": 1, "said": {"_count": 1}}, "us": {"_count": 1, "said": {"_count": 1}}}, "dake": {"_count": 1, "her": {"_count": 1, "wid": {"_count": 1}}}, "bedder": {"_count": 1, "at": {"_count": 1, "fighding": {"_count": 1}}}, "fighding": {"_count": 2, "dem": {"_count": 1, "dan": {"_count": 1}}, "the": {"_count": 1, "brain": {"_count": 1}}}, "dan": {"_count": 1, "I": {"_count": 1, "ab": {"_count": 1}}}, "ab": {"_count": 1, "He": {"_count": 1, "stood": {"_count": 1}}}, "dat": {"_count": 2, "was": {"_count": 1, "by": {"_count": 1}}, "man": {"_count": 1, "was": {"_count": 1}}}, "TimeTurners": {"_count": 3, "continued": {"_count": 1, "to": {"_count": 1}}, "We": {"_count": 1, "couldnt": {"_count": 1}}, "when": {"_count": 1, "we": {"_count": 1}}}, "rotate": {"_count": 2, "once": {"_count": 1, "more": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "unsteadied": {"_count": 1, "him": {"_count": 1, "he": {"_count": 1}}}, "reck": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "oneintwelve": {"_count": 1, "chance": {"_count": 1, "of": {"_count": 1}}}, "THEYRE": {"_count": 1, "HERE": {"_count": 1, "": {"_count": 1}}}, "Colloportusl": {"_count": 1, "There": {"_count": 1, "were": {"_count": 1}}}, "launch": {"_count": 1, "itself": {"_count": 1, "against": {"_count": 1}}}, "Honest": {"_count": 1, "Harry": {"_count": 1, "theyre": {"_count": 1}}}, "ribbons": {"_count": 3, "of": {"_count": 1, "moving": {"_count": 1}}, "were": {"_count": 1, "spinning": {"_count": 1}}, "and": {"_count": 1, "flowers": {"_count": 1}}}, "disgorge": {"_count": 1, "its": {"_count": 1, "gaudy": {"_count": 1}}}, "gaudy": {"_count": 2, "innards": {"_count": 1, "": {"_count": 1}}, "glare": {"_count": 1, "was": {"_count": 1}}}, "innards": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "everything": {"_count": 1, "that": {"_count": 1}}}, "octopuss": {"_count": 1, "body": {"_count": 1, "": {"_count": 1}}}, "suffocate": {"_count": 3, "him": {"_count": 1, "": {"_count": 1}}, "the": {"_count": 1, "invisible": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}}, "STUBEFYl": {"_count": 4, "shouted": {"_count": 1, "Neville": {"_count": 1}}, "But": {"_count": 1, "nothing": {"_count": 1}}, "Neville": {"_count": 1, "shouted": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "STUBEFY": {"_count": 1, "STUBEFYl": {"_count": 1, "But": {"_count": 1}}}, "craters": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "Inwardly": {"_count": 1, "praying": {"_count": 1, "that": {"_count": 1}}}, "god": {"_count": 1, "be": {"_count": 1, "": {"_count": 1}}}, "STUBE": {"_count": 1, "One": {"_count": 1, "of": {"_count": 1}}}, "pinioning": {"_count": 1, "his": {"_count": 1, "arms": {"_count": 1}}}, "DOE": {"_count": 2, "YOU": {"_count": 1, "HAB": {"_count": 1}}, "It": {"_count": 1, "was": {"_count": 1}}}, "HAB": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "lasts": {"_count": 1, "before": {"_count": 1, "he": {"_count": 1}}}, "DOND": {"_count": 2, "GIB": {"_count": 2, "ID": {"_count": 2}}}, "GIB": {"_count": 2, "ID": {"_count": 2, "DO": {"_count": 2}}}, "DEM": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "HARRY": {"_count": 1, "": {"_count": 1}}}, "taster": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "windpipe": {"_count": 2, "that": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tiered": {"_count": 1, "seats": {"_count": 1, "was": {"_count": 1}}}, "articulate": {"_count": 1, "a": {"_count": 1, "spell": {"_count": 1}}}, "eyehole": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Tarantallegrcd": {"_count": 1, "he": {"_count": 1, "shouted": {"_count": 1}}}, "frenzied": {"_count": 3, "tap": {"_count": 1, "dance": {"_count": 1}}, "mouthfuls": {"_count": 1, "of": {"_count": 1}}, "it": {"_count": 1, "could": {"_count": 1}}}, "unbalancing": {"_count": 1, "him": {"_count": 1, "and": {"_count": 1}}}, "Dolohovs": {"_count": 3, "arms": {"_count": 1, "and": {"_count": 1}}, "forehead": {"_count": 1, "and": {"_count": 1}}, "eyes": {"_count": 1, "became": {"_count": 1}}}, "maskless": {"_count": 1, "another": {"_count": 1, "jet": {"_count": 1}}}, "hauling": {"_count": 1, "at": {"_count": 1, "Nevilles": {"_count": 1}}}, "floundering": {"_count": 1, "feet": {"_count": 1, "kicked": {"_count": 1}}}, "flounder": {"_count": 1, "Ib": {"_count": 1, "so": {"_count": 1}}}, "didnd": {"_count": 1, "bean": {"_count": 1, "do": {"_count": 1}}}, "Dubbledorel": {"_count": 1, "said": {"_count": 1, "Neville": {"_count": 1}}}, "DUBBLEDORE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "monkey": {"_count": 3, "up": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}}, "effortlessly": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "graceful": {"_count": 2, "arc": {"_count": 1, "as": {"_count": 1}}, "pirouette": {"_count": 1, "": {"_count": 1}}}, "oncehandsome": {"_count": 1, "face": {"_count": 1, "as": {"_count": 1}}}, "ONLY": {"_count": 1, "ONE": {"_count": 1, "HE": {"_count": 1}}}, "FEARED": {"_count": 1, "He": {"_count": 1, "hasnt": {"_count": 1}}}, "DEAD": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "precautionary": {"_count": 1, "grip": {"_count": 1, "on": {"_count": 1}}}, "Deyre": {"_count": 1, "all": {"_count": 1, "back": {"_count": 1}}}, "dere": {"_count": 1, "said": {"_count": 1, "Neville": {"_count": 1}}}, "addacked": {"_count": 1, "Ron": {"_count": 1, "bud": {"_count": 1}}}, "bud": {"_count": 2, "I": {"_count": 1, "dink": {"_count": 1}}, "we": {"_count": 1, "could": {"_count": 1}}}, "righd": {"_count": 1, "and": {"_count": 1, "Herbiones": {"_count": 1}}}, "Herbiones": {"_count": 1, "unconscious": {"_count": 1, "bud": {"_count": 1}}}, "bulse": {"_count": 1, "There": {"_count": 1, "was": {"_count": 1}}}, "slackened": {"_count": 4, "grip": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "grip": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "ILL": {"_count": 2, "KILL": {"_count": 2, "HER": {"_count": 1}, "YOU": {"_count": 1}}}, "Levioscd": {"_count": 1, "and": {"_count": 1, "they": {"_count": 1}}}, "jangled": {"_count": 1, "and": {"_count": 1, "banged": {"_count": 1}}}, "Hatred": {"_count": 2, "rose": {"_count": 1, "in": {"_count": 1}}, "boiled": {"_count": 1, "up": {"_count": 1}}}, "counterspell": {"_count": 1, "hit": {"_count": 1, "the": {"_count": 1}}}, "gouging": {"_count": 4, "long": {"_count": 1, "scratches": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}, "dark": {"_count": 1, "tracks": {"_count": 1}}, "spells": {"_count": 1, "": {"_count": 1}}}, "righteous": {"_count": 1, "anger": {"_count": 1, "wont": {"_count": 1}}}, "unconnected": {"_count": 2, "with": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "arm": {"_count": 1}}}, "ACCIO": {"_count": 1, "PROPHECY": {"_count": 1, "": {"_count": 1}}}, "incense": {"_count": 1, "her": {"_count": 1, "the": {"_count": 1}}}, "oneeared": {"_count": 1, "goblin": {"_count": 1, "and": {"_count": 1}}}, "TRIED": {"_count": 2, "I": {"_count": 1, "TRIED": {"_count": 1}}, "DO": {"_count": 1, "NOT": {"_count": 1}}}, "PUNISH": {"_count": 1, "ME": {"_count": 1, "Dont": {"_count": 1}}}, "blackhooded": {"_count": 1, "his": {"_count": 1, "terrible": {"_count": 1}}}, "slitpupiled": {"_count": 1, "eyes": {"_count": 1, "staring": {"_count": 1}}}, "Bella": {"_count": 14, "he": {"_count": 1, "is": {"_count": 1}}, "said": {"_count": 1, "Voldemort": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "followed": {"_count": 2, "at": {"_count": 1}, "her": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "panted": {"_count": 1, "and": {"_count": 1}}, "merely": {"_count": 1, "laughed": {"_count": 1}}, "let": {"_count": 1, "go": {"_count": 1}}, "cursing": {"_count": 1, "under": {"_count": 1}}, "were": {"_count": 1, "perfectly": {"_count": 1}}, "Potter": {"_count": 1, "has": {"_count": 1}}, "you": {"_count": 1, "dont": {"_count": 1}}}, "Months": {"_count": 1, "of": {"_count": 1, "preparation": {"_count": 1}}}, "thwart": {"_count": 4, "me": {"_count": 1, "again": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 2}}, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}}, "sniveling": {"_count": 1, "apologies": {"_count": 1, "": {"_count": 1}}}, "irked": {"_count": 1, "me": {"_count": 1, "too": {"_count": 1}}}, "AVADA": {"_count": 1, "KEDAVRAl": {"_count": 1, "Harry": {"_count": 1}}}, "KEDAVRAl": {"_count": 1, "Harry": {"_count": 1, "had": {"_count": 1}}}, "emanated": {"_count": 3, "from": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}, "the": {"_count": 1, "flames": {"_count": 1}}}, "shielded": {"_count": 2, "by": {"_count": 1, "his": {"_count": 1}}, "his": {"_count": 1, "face": {"_count": 1}}}, "gonglike": {"_count": 1, "note": {"_count": 1, "reverberated": {"_count": 1}}}, "Above": {"_count": 2, "such": {"_count": 1, "brutality": {"_count": 1}}, "what": {"_count": 1, "Harry": {"_count": 1}}}, "brutality": {"_count": 2, "are": {"_count": 1, "you": {"_count": 1}}, "that": {"_count": 1, "suggested": {"_count": 1}}}, "undefended": {"_count": 1, "shieldless": {"_count": 1, "": {"_count": 1}}}, "shieldless": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "failure": {"_count": 4, "to": {"_count": 1, "understand": {"_count": 1}}, "and": {"_count": 1, "by": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "outi": {"_count": 1, "Harry": {"_count": 1, "yelled": {"_count": 1}}}, "flightless": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "cocoon": {"_count": 1, "of": {"_count": 1, "molten": {"_count": 1}}}, "stunnedlooking": {"_count": 2, "Cornelius": {"_count": 1, "Fudge": {"_count": 1}}, "people": {"_count": 1, "had": {"_count": 1}}}, "Williamson": {"_count": 2, "I": {"_count": 1, "know": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "gibbered": {"_count": 1, "Fudge": {"_count": 1, "who": {"_count": 1}}}, "slipperclad": {"_count": 1, "feet": {"_count": 1, "left": {"_count": 1}}}, "AntiDisapparation": {"_count": 1, "Jinx": {"_count": 1, "and": {"_count": 1}}}, "Hehere": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "magisterially": {"_count": 1, "over": {"_count": 1, "his": {"_count": 1}}}, "caring": {"_count": 4, "what": {"_count": 1, "he": {"_count": 1}}, "much": {"_count": 1, "about": {"_count": 1}}, "that": {"_count": 1, "their": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}}, "whirlwind": {"_count": 1, "of": {"_count": 1, "color": {"_count": 1}}}, "LOST": {"_count": 2, "PROPHECY": {"_count": 1, "Harrys": {"_count": 1}}, "DIADEM": {"_count": 1, "Neville": {"_count": 1}}}, "Dawn": {"_count": 3, "was": {"_count": 2, "approaching": {"_count": 1}, "breaking": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "snuffle": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "rightful": {"_count": 6, "headmaster": {"_count": 1, "": {"_count": 1}}, "mistress": {"_count": 1, "": {"_count": 1}}, "owner": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "place": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "true": {"_count": 1}}}, "irretrievable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "thronelike": {"_count": 3, "chair": {"_count": 3, "on": {"_count": 1}, "in": {"_count": 1}, "behind": {"_count": 1}}}, "Holds": {"_count": 1, "you": {"_count": 1, "in": {"_count": 1}}}, "esteem": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "parasite": {"_count": 1, "now": {"_count": 1, "writhed": {"_count": 1}}}, "featherless": {"_count": 1, "Fawkes": {"_count": 1, "whom": {"_count": 1}}}, "patching": {"_count": 2, "everybody": {"_count": 1, "up": {"_count": 1}}, "us": {"_count": 1, "up": {"_count": 1}}}, "selfpity": {"_count": 1, "stew": {"_count": 1, "in": {"_count": 1}}}, "emptiness": {"_count": 3, "filling": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "calmness": {"_count": 1, "and": {"_count": 1, "his": {"_count": 1}}}, "TOBE": {"_count": 1, "HUMAN": {"_count": 1, "": {"_count": 1}}}, "HUMAN": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Reallyl": {"_count": 1, "I": {"_count": 1, "DONT": {"_count": 1}}}, "CARE": {"_count": 3, "": {"_count": 1, "!": {"_count": 1}}, "ANYMORE": {"_count": 1, "He": {"_count": 1}}, "WHAT": {"_count": 1, "YOUVE": {"_count": 1}}}, "END": {"_count": 2, "I": {"_count": 1, "DONT": {"_count": 1}}, "Many": {"_count": 1, "miles": {"_count": 1}}}, "demolishing": {"_count": 1, "his": {"_count": 1, "office": {"_count": 1}}}, "FEEL": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "hatefully": {"_count": 1, "calm": {"_count": 1, "old": {"_count": 1}}}, "energetic": {"_count": 2, "man": {"_count": 1, "and": {"_count": 1}}, "means": {"_count": 1, "he": {"_count": 1}}}, "content": {"_count": 6, "to": {"_count": 3, "sit": {"_count": 1}, "remain": {"_count": 1}, "watch": {"_count": 1}}, "with": {"_count": 1, "corrupting": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "bears": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "hallmarks": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "failings": {"_count": 1, "of": {"_count": 1, "age": {"_count": 1}}}, "Youth": {"_count": 2, "cannot": {"_count": 1, "know": {"_count": 1}}, "Representative": {"_count": 1, "to": {"_count": 1}}}, "gouged": {"_count": 1, "deeply": {"_count": 1, "into": {"_count": 1}}}, "misdirect": {"_count": 1, "your": {"_count": 1, "thoughts": {"_count": 1}}}, "incentives": {"_count": 1, "to": {"_count": 1, "do": {"_count": 1}}}, "relationship": {"_count": 12, "was": {"_count": 1, "or": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "with": {"_count": 4, "Lavender": {"_count": 2}, "Ginny": {"_count": 1}, "Dumbledore": {"_count": 1}}, "then": {"_count": 1, "certainly": {"_count": 1}}, "that": {"_count": 1, "will": {"_count": 1}}, "or": {"_count": 1, "what": {"_count": 1}}, "between": {"_count": 1, "their": {"_count": 1}}}, "distancing": {"_count": 1, "myself": {"_count": 1, "from": {"_count": 1}}}, "dormant": {"_count": 3, "snake": {"_count": 1, "had": {"_count": 1}}, "leadership": {"_count": 1, "qualities": {"_count": 1}}, "there": {"_count": 1, "for": {"_count": 1}}}, "chasm": {"_count": 1, "inside": {"_count": 1, "him": {"_count": 1}}}, "assaults": {"_count": 1, "on": {"_count": 1, "your": {"_count": 1}}}, "relieve": {"_count": 1, "some": {"_count": 1, "of": {"_count": 1}}}, "\u2018get": {"_count": 2, "out": {"_count": 2, "": {"_count": 1}, "of": {"_count": 1}}}, "cryptic": {"_count": 1, "warning": {"_count": 1, "he": {"_count": 1}}}, "delegated": {"_count": 1, "to": {"_count": 1, "Kreacher": {"_count": 1}}}, "confidential": {"_count": 2, "plans": {"_count": 1, "that": {"_count": 1}}, "tipoff": {"_count": 1, "Yeah": {"_count": 1}}}, "accomplished": {"_count": 7, "Legilimens": {"_count": 2, "myself": {"_count": 1}, "the": {"_count": 1}}, "caster": {"_count": 1, "of": {"_count": 1}}, "at": {"_count": 3, "Occlumency": {"_count": 1}, "it": {"_count": 1}, "household": {"_count": 1}}, "Occlumens": {"_count": 1, "said": {"_count": 1}}}, "acute": {"_count": 2, "as": {"_count": 2, "a": {"_count": 2}}}, "disregarded": {"_count": 2, "this": {"_count": 2, "he": {"_count": 1}, "too": {"_count": 1}}}, "easing": {"_count": 1, "his": {"_count": 1, "own": {"_count": 1}}}, "ggoaded": {"_count": 1, "Sirius": {"_count": 1, "about": {"_count": 1}}}, "mutterings": {"_count": 4, "of": {"_count": 2, "the": {"_count": 1}, "Uncle": {"_count": 1}}, "than": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Indifference": {"_count": 1, "and": {"_count": 1, "neglect": {"_count": 1}}}, "neglect": {"_count": 5, "often": {"_count": 1, "do": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "and": {"_count": 2, "often": {"_count": 1}, "abuse": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "abused": {"_count": 3, "our": {"_count": 1, "fellows": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "Snape": {"_count": 1, "hotly": {"_count": 1}}}, "reaping": {"_count": 3, "our": {"_count": 1, "reward": {"_count": 1}}, "some": {"_count": 1, "kind": {"_count": 1}}, "his": {"_count": 1, "reward": {"_count": 1}}}, "DESERVED": {"_count": 1, "WHAT": {"_count": 1, "HE": {"_count": 1}}}, "uncharacteristic": {"_count": 1, "sign": {"_count": 1, "of": {"_count": 1}}}, "condemning": {"_count": 1, "you": {"_count": 1, "to": {"_count": 1}}}, "vanquished": {"_count": 2, "hours": {"_count": 1, "before": {"_count": 1}}, "Horcrux": {"_count": 1, "into": {"_count": 1}}}, "invincible": {"_count": 6, "if": {"_count": 1, "he": {"_count": 1}}, "You": {"_count": 1, "claim": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "swallowed": {"_count": 1, "him": {"_count": 1}}}, "despises": {"_count": 1, "and": {"_count": 1, "which": {"_count": 1}}}, "underestimated": {"_count": 2, "to": {"_count": 1, "his": {"_count": 1}}, "you": {"_count": 1, "Potter": {"_count": 1}}}, "flows": {"_count": 1, "in": {"_count": 1, "your": {"_count": 1}}}, "houseroom": {"_count": 2, "may": {"_count": 1, "well": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "pact": {"_count": 1, "she": {"_count": 1, "had": {"_count": 1}}}, "surrogate": {"_count": 1, "son": {"_count": 1, "": {"_count": 1}}}, "nourished": {"_count": 1, "as": {"_count": 1, "I": {"_count": 1}}}, "prouder": {"_count": 1, "of": {"_count": 1, "you": {"_count": 1}}}, "undoing": {"_count": 3, "of": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 2, "enchantments": {"_count": 1}, "pouch": {"_count": 1}}}, "succeed": {"_count": 10, "I": {"_count": 1, "told": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "he": {"_count": 1, "wants": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "in": {"_count": 2, "getting": {"_count": 1}, "mending": {"_count": 1}}, "the": {"_count": 1, "first": {"_count": 1}}, "or": {"_count": 1, "I": {"_count": 1}}}, "challenges": {"_count": 1, "even": {"_count": 1, "grown": {"_count": 1}}}, "exhilarated": {"_count": 2, "and": {"_count": 1, "if": {"_count": 1}}, "laugh": {"_count": 1, "her": {"_count": 1}}}, "defy": {"_count": 2, "anyone": {"_count": 1, "who": {"_count": 1}}, "your": {"_count": 1, "masters": {"_count": 1}}}, "nameless": {"_count": 2, "and": {"_count": 1, "faceless": {"_count": 1}}, "men": {"_count": 1, "How": {"_count": 1}}}, "afar": {"_count": 1, "as": {"_count": 1, "you": {"_count": 1}}}, "burdens": {"_count": 1, "than": {"_count": 1, "any": {"_count": 1}}}, "fulfilling": {"_count": 2, "the": {"_count": 1, "terms": {"_count": 1}}, "my": {"_count": 1, "useful": {"_count": 1}}}, "assiduously": {"_count": 1, "since": {"_count": 1, "his": {"_count": 1}}}, "resided": {"_count": 2, "gleamed": {"_count": 1, "white": {"_count": 1}}, "in": {"_count": 1, "this": {"_count": 1}}}, "prophecys": {"_count": 1, "smashed": {"_count": 1, "Harry": {"_count": 1}}}, "Inn": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "which": {"_count": 1, "Sibyll": {"_count": 1}}}, "applicant": {"_count": 2, "for": {"_count": 1, "the": {"_count": 1}}, "however": {"_count": 1, "was": {"_count": 1}}}, "tormenting": {"_count": 1, "Snape": {"_count": 1, "": {"_count": 1}}}, "gossamerfine": {"_count": 1, "strands": {"_count": 1, "of": {"_count": 1}}}, "strands": {"_count": 2, "of": {"_count": 2, "thought": {"_count": 1}, "glittering": {"_count": 1}}}, "thrice": {"_count": 3, "defied": {"_count": 2, "him": {"_count": 1}, "Voldemort": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "defied": {"_count": 3, "him": {"_count": 1, "born": {"_count": 1}}, "Voldemort": {"_count": 2, "three": {"_count": 1}, "": {"_count": 1}}}, "survives": {"_count": 13, "": {"_count": 7, ".": {"_count": 7}}, "said": {"_count": 2, "Dumbledore": {"_count": 2}}, "Azkaban": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "place": {"_count": 1}}, "so": {"_count": 1, "do": {"_count": 1}}, "and": {"_count": 1, "one": {"_count": 1}}}, "conquering": {"_count": 2, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "army": {"_count": 1, "": {"_count": 1}}}, "Sibylls": {"_count": 1, "prophecy": {"_count": 1, "could": {"_count": 1}}}, "relabeled": {"_count": 1, "after": {"_count": 1, "Voldemort": {"_count": 1}}}, "identifying": {"_count": 4, "feature": {"_count": 1, "of": {"_count": 1}}, "which": {"_count": 1, "was": {"_count": 1}}, "edible": {"_count": 1, "fungi": {"_count": 1}}, "characteristics": {"_count": 1, "that": {"_count": 1}}}, "\u2018mark": {"_count": 1, "him": {"_count": 1, "as": {"_count": 1}}}, "creed": {"_count": 1, "is": {"_count": 1, "the": {"_count": 1}}}, "cheapness": {"_count": 1, "has": {"_count": 1, "long": {"_count": 1}}}, "clientele": {"_count": 1, "than": {"_count": 1, "the": {"_count": 1}}}, "eavesdropper": {"_count": 1, "was": {"_count": 1, "detected": {"_count": 1}}}, "foretelling": {"_count": 1, "the": {"_count": 1, "birth": {"_count": 1}}}, "Consequently": {"_count": 1, "he": {"_count": 1, "could": {"_count": 1}}}, "\u2018power": {"_count": 2, "the": {"_count": 2, "Dark": {"_count": 2}}}, "detests": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018neither": {"_count": 1, "can": {"_count": 1, "live": {"_count": 1}}}, "dredging": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "WAR": {"_count": 1, "BEGINS": {"_count": 1, "HEWHOMUSTNOTBENAMED": {"_count": 1}}}, "BEGINS": {"_count": 1, "HEWHOMUSTNOTBENAMED": {"_count": 1, "RETURNS": {"_count": 1}}}, "HEWHOMUSTNOTBENAMED": {"_count": 1, "RETURNS": {"_count": 1, "In": {"_count": 1}}}, "averse": {"_count": 1, "to": {"_count": 1, "continuing": {"_count": 1}}}, "population": {"_count": 5, "to": {"_count": 1, "remain": {"_count": 1}}, "from": {"_count": 1, "getting": {"_count": 1}}, "under": {"_count": 2, "control": {"_count": 1}, "his": {"_count": 1}}, "I": {"_count": 1, "should": {"_count": 1}}}, "vigilant": {"_count": 1, "The": {"_count": 1, "Ministry": {"_count": 1}}}, "elementary": {"_count": 2, "home": {"_count": 1, "and": {"_count": 1}}, "mistakes": {"_count": 1, "I": {"_count": 1}}}, "dismay": {"_count": 4, "and": {"_count": 1, "alarm": {"_count": 1}}, "however": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "Rons": {"_count": 1, "new": {"_count": 1}}}, "persistent": {"_count": 4, "rumors": {"_count": 1, "that": {"_count": 1}}, "habit": {"_count": 1, "of": {"_count": 1}}, "glass": {"_count": 1, "of": {"_count": 1}}, "doubts": {"_count": 1, "could": {"_count": 1}}}, "Details": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "turnaround": {"_count": 1, "are": {"_count": 1, "still": {"_count": 1}}}, "reinstated": {"_count": 5, "headmaster": {"_count": 1, "of": {"_count": 1}}, "member": {"_count": 1, "of": {"_count": 1}}, "Chief": {"_count": 2, "Warlock": {"_count": 2}}, "Umbridges": {"_count": 1, "old": {"_count": 1}}}, "Lived": {"_count": 10, "There": {"_count": 1, "you": {"_count": 1}}, "again": {"_count": 1, "now": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "were": {"_count": 1, "sure": {"_count": 1}}, "had": {"_count": 1, "escaped": {"_count": 1}}, "remains": {"_count": 1, "a": {"_count": 1}}, "is": {"_count": 1, "finished": {"_count": 1}}, "the": {"_count": 1, "reason": {"_count": 1}}}, "trice": {"_count": 2, "by": {"_count": 1, "Madam": {"_count": 1}}, "Gabrielle": {"_count": 1, "followed": {"_count": 1}}}, "welts": {"_count": 2, "on": {"_count": 1, "his": {"_count": 1}}, "across": {"_count": 1, "his": {"_count": 1}}}, "scarring": {"_count": 2, "than": {"_count": 1, "almost": {"_count": 1}}, "but": {"_count": 1, "if": {"_count": 1}}}, "Ubblys": {"_count": 1, "Oblivious": {"_count": 1, "Unction": {"_count": 1}}}, "Oblivious": {"_count": 1, "Unction": {"_count": 1, "there": {"_count": 1}}}, "Unction": {"_count": 1, "there": {"_count": 1, "seemed": {"_count": 1}}}, "complimentary": {"_count": 1, "about": {"_count": 1, "you": {"_count": 1}}}, "perceived": {"_count": 1, "as": {"_count": 1, "unbalanced": {"_count": 1}}}, "slander": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ridiculing": {"_count": 1, "and": {"_count": 1, "slandering": {"_count": 1}}}, "slandering": {"_count": 1, "though": {"_count": 1, "": {"_count": 1}}}, "\u2018YouKnow": {"_count": 1, "Whos": {"_count": 1, "Last": {"_count": 1}}}, "Attempt": {"_count": 1, "to": {"_count": 1, "Take": {"_count": 1}}}, "Exclusive": {"_count": 1, "Interview": {"_count": 1, "with": {"_count": 1}}}, "Interview": {"_count": 1, "with": {"_count": 1, "Harry": {"_count": 1}}}, "exclusive": {"_count": 3, "its": {"_count": 1, "the": {"_count": 1}}, "interview": {"_count": 1, "the": {"_count": 1}}, "property": {"_count": 1, "of": {"_count": 1}}}, "expedition": {"_count": 2, "to": {"_count": 1, "Sweden": {"_count": 1}}, "as": {"_count": 1, "an": {"_count": 1}}}, "Sweden": {"_count": 1, "this": {"_count": 1, "summer": {"_count": 1}}}, "monument": {"_count": 2, "to": {"_count": 2, "Fred": {"_count": 1}, "the": {"_count": 1}}}, "propping": {"_count": 2, "a": {"_count": 1, "Chocolate": {"_count": 1}}, "it": {"_count": 1, "up": {"_count": 1}}}, "featuring": {"_count": 2, "Dumbledore": {"_count": 1, "against": {"_count": 1}}, "a": {"_count": 1, "highly": {"_count": 1}}}, "Sulking": {"_count": 1, "more": {"_count": 1, "like": {"_count": 1}}}, "clipclopping": {"_count": 1, "noises": {"_count": 1, "": {"_count": 1}}}, "unhampered": {"_count": 2, "by": {"_count": 1, "studying": {"_count": 1}}, "the": {"_count": 1, "icy": {"_count": 1}}}, "othersll": {"_count": 1, "be": {"_count": 1, "out": {"_count": 1}}}, "scumbags": {"_count": 1, "they": {"_count": 1, "are": {"_count": 1}}}, "Gryff": {"_count": 1, "Snape": {"_count": 1, "looked": {"_count": 1}}}, "carpetbag": {"_count": 2, "in": {"_count": 1, "one": {"_count": 1}}, "into": {"_count": 1, "Crabbe": {"_count": 1}}}, "alerting": {"_count": 1, "the": {"_count": 1, "world": {"_count": 1}}}, "bulb": {"_count": 2, "of": {"_count": 1, "Gryffindors": {"_count": 1}}, "leaving": {"_count": 1, "a": {"_count": 1}}}, "sunbathing": {"_count": 1, "talking": {"_count": 1, "reading": {"_count": 1}}}, "dandelion": {"_count": 3, "juice": {"_count": 2, "": {"_count": 1}, "half": {"_count": 1}}, "clock": {"_count": 1, "and": {"_count": 1}}}, "whereve": {"_count": 1, "you": {"_count": 1, "been": {"_count": 1}}}, "Grawpys": {"_count": 1, "loads": {"_count": 1, "better": {"_count": 1}}}, "thinkin": {"_count": 2, "abou": {"_count": 1, "tryin": {"_count": 1}}, "o": {"_count": 1, "trainin": {"_count": 1}}}, "Evryone": {"_count": 1, "knows": {"_count": 1, "youve": {"_count": 1}}}, "hedve": {"_count": 1, "wanted": {"_count": 1, "ter": {"_count": 1}}}, "mechanically": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "Hepzibah": {"_count": 1}}}, "shrubs": {"_count": 1, "and": {"_count": 1, "stared": {"_count": 1}}}, "fend": {"_count": 1, "off": {"_count": 1, "a": {"_count": 1}}}, "Unhappy": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "remonstrances": {"_count": 1, "and": {"_count": 1, "was": {"_count": 1}}}, "ofterm": {"_count": 1, "feast": {"_count": 1, "": {"_count": 1}}}, "twoway": {"_count": 1, "mirror": {"_count": 1, "": {"_count": 1}}}, "Disappointment": {"_count": 1, "was": {"_count": 1, "burning": {"_count": 1}}}, "NICK": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "imprint": {"_count": 4, "of": {"_count": 4, "themselves": {"_count": 1}, "a": {"_count": 2}, "the": {"_count": 1}}}, "\u2018gone": {"_count": 2, "on": {"_count": 2, "": {"_count": 2}}}, "\u2018Loony": {"_count": 2, "Lovegood": {"_count": 1, "actually": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}}, "llOOHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "ooze": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "docking": {"_count": 1, "points": {"_count": 1, "from": {"_count": 1}}}, "mumll": {"_count": 1, "be": {"_count": 1, "really": {"_count": 1}}}, "betterlooking": {"_count": 2, "now": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Fred": {"_count": 1}}}, "crooning": {"_count": 3, "noises": {"_count": 1, "when": {"_count": 1}}, "softly": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "snippets": {"_count": 2, "from": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "llOlHarry": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "Wanting": {"_count": 1, "to": {"_count": 1, "impress": {"_count": 1}}}, "universes": {"_count": 1, "the": {"_count": 1, "one": {"_count": 1}}}, "inspector": {"_count": 1, "signaled": {"_count": 1, "to": {"_count": 1}}}, "signaled": {"_count": 2, "to": {"_count": 1, "him": {"_count": 1}}, "the": {"_count": 1, "end": {"_count": 1}}}, "bubblegumpink": {"_count": 2, "hair": {"_count": 2, "gleaming": {"_count": 1}, "": {"_count": 1}}}, "WEIRD": {"_count": 1, "SISTERS": {"_count": 1, "": {"_count": 1}}}, "SISTERS": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "zip": {"_count": 2, "a": {"_count": 1, "little": {"_count": 1}}, "up": {"_count": 1, "his": {"_count": 1}}}, "tweak": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "circumstances": {"_count": 1}}, "and": {"_count": 1, "again": {"_count": 1}}}, "Business": {"_count": 1, "is": {"_count": 1, "booming": {"_count": 1}}}, "committee": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bristle": {"_count": 1, "with": {"_count": 1, "indignation": {"_count": 1}}}, "kindred": {"_count": 1, "spirit": {"_count": 1, "he": {"_count": 1}}}, "Telephone": {"_count": 1, "whispered": {"_count": 1, "Hermione": {"_count": 1}}}, "outweigh": {"_count": 1, "even": {"_count": 1, "his": {"_count": 1}}}, "oddballs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "piteously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "T3ye": {"_count": 1, "then": {"_count": 1, "Potter": {"_count": 1}}}, "tiring": {"_count": 2, "and": {"_count": 1, "difficult": {"_count": 1}}, "existence": {"_count": 1, "for": {"_count": 1}}}, "political": {"_count": 1, "opponents": {"_count": 1, "": {"_count": 1}}}, "enumerate": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "governments": {"_count": 2, "fault": {"_count": 2, "": {"_count": 1}, "after": {"_count": 1}}}, "bridges": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "river": {"_count": 16, "below": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 2, "wound": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "from": {"_count": 1, "a": {"_count": 1}}, "beside": {"_count": 2, "them": {"_count": 2}}, "made": {"_count": 1, "it": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "rushed": {"_count": 1, "on": {"_count": 1}}, "chattering": {"_count": 1, "through": {"_count": 1}}, "too": {"_count": 1, "deep": {"_count": 1}}, "fashioned": {"_count": 1, "a": {"_count": 1}}, "she": {"_count": 1, "told": {"_count": 1}}, "glittering": {"_count": 1, "through": {"_count": 1}}}, "wellpublicized": {"_count": 3, "murders": {"_count": 1, "": {"_count": 1}}, "attack": {"_count": 1, "upon": {"_count": 1}}, "arrest": {"_count": 1, "and": {"_count": 1}}}, "Country": {"_count": 4, "that": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "village": {"_count": 1, "where": {"_count": 1}}}, "Herbert": {"_count": 3, "Chorley": {"_count": 2, "had": {"_count": 1}, "your": {"_count": 1}}, "Chorleys": {"_count": 1, "family": {"_count": 1}}}, "Chorley": {"_count": 2, "had": {"_count": 1, "chosen": {"_count": 1}}, "your": {"_count": 1, "Junior": {"_count": 1}}}, "peculiarly": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "Stretching": {"_count": 2, "his": {"_count": 1, "arms": {"_count": 1}}, "Jinxes": {"_count": 1, "put": {"_count": 1}}}, "sash": {"_count": 1, "windows": {"_count": 1, "firmly": {"_count": 1}}}, "unseasonable": {"_count": 1, "chill": {"_count": 1, "": {"_count": 1}}}, "responded": {"_count": 5, "at": {"_count": 1, "once": {"_count": 1}}, "to": {"_count": 1, "Hermione": {"_count": 1}}, "with": {"_count": 2, "further": {"_count": 1}, "such": {"_count": 1}}, "by": {"_count": 1, "maintaining": {"_count": 1}}}, "decisive": {"_count": 2, "voice": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "forceful": {"_count": 1}}}, "froglike": {"_count": 1, "little": {"_count": 1, "man": {"_count": 1}}}, "Sincerely": {"_count": 2, "Fudge": {"_count": 1, "": {"_count": 1}}, "Professor": {"_count": 1, "H": {"_count": 1}}}, "antique": {"_count": 3, "rug": {"_count": 2, "brushing": {"_count": 1}, "": {"_count": 1}}, "shop": {"_count": 1, "and": {"_count": 1}}}, "compliment": {"_count": 3, "so": {"_count": 1, "said": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "": {"_count": 1}}}, "Furthermore": {"_count": 1, "Fudge": {"_count": 1, "was": {"_count": 1}}}, "careworn": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "she": {"_count": 1, "left": {"_count": 1}}}, "politicians": {"_count": 1, "before": {"_count": 1, "and": {"_count": 1}}}, "boded": {"_count": 2, "well": {"_count": 1, "": {"_count": 1}}, "ill": {"_count": 1, "": {"_count": 1}}}, "Brockdale": {"_count": 3, "Bridge": {"_count": 3, "": {"_count": 1}, "didnt": {"_count": 1}, "he": {"_count": 1}}}, "Bridge": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "didnt": {"_count": 1, "wear": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "she": {"_count": 1, "is": {"_count": 1}}, "fishing": {"_count": 1, "for": {"_count": 1}}}, "ruckus": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "Harry": {"_count": 1, "darted": {"_count": 1}}}, "ignorant": {"_count": 5, "schoolboy": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}, "old": {"_count": 1, "git": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "scheming": {"_count": 1, "when": {"_count": 1, "he": {"_count": 1}}}, "selfproclaimed": {"_count": 1, "wizard": {"_count": 1, "had": {"_count": 1}}}, "reassurances": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "encompassed": {"_count": 1, "everything": {"_count": 1, "from": {"_count": 1}}}, "regulations": {"_count": 3, "on": {"_count": 1, "responsible": {"_count": 1}}, "If": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 1, "was": {"_count": 1}}}, "stilldumbstruck": {"_count": 1, "Prime": {"_count": 1, "Minister": {"_count": 1}}}, "oddson": {"_count": 1, "youll": {"_count": 1, "never": {"_count": 1}}}, "hoax": {"_count": 2, "planned": {"_count": 1, "by": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}}, "opposition": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "might": {"_count": 1, "say": {"_count": 1}}, "but": {"_count": 1, "merely": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "gerbil": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "his": {"_count": 1}}}, "bleated": {"_count": 1, "the": {"_count": 1, "Prime": {"_count": 1}}}, "grueling": {"_count": 1, "election": {"_count": 1, "campaign": {"_count": 1}}}, "niece": {"_count": 3, "and": {"_count": 1, "instructed": {"_count": 1}}, "Bellatrix": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "ours": {"_count": 1}}}, "carpenters": {"_count": 1, "a": {"_count": 1, "builder": {"_count": 1}}}, "historian": {"_count": 5, "and": {"_count": 3, "the": {"_count": 1}, "Adalbert": {"_count": 1}, "an": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "who": {"_count": 1, "has": {"_count": 1}}}, "Chancellor": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Exchequer": {"_count": 1, "had": {"_count": 1, "all": {"_count": 1}}}, "unsuccessfully": {"_count": 1, "to": {"_count": 1, "prise": {"_count": 1}}}, "prise": {"_count": 6, "it": {"_count": 2, "from": {"_count": 1}, "open": {"_count": 1}}, "herself": {"_count": 1, "off": {"_count": 1}}, "the": {"_count": 1, "locket": {"_count": 1}}, "a": {"_count": 1, "heavy": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}}, "Occasionally": {"_count": 4, "he": {"_count": 1, "could": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}, "there": {"_count": 1, "had": {"_count": 1}}, "they": {"_count": 1, "would": {"_count": 1}}}, "muddybrown": {"_count": 1, "canvas": {"_count": 1, "behind": {"_count": 1}}}, "resented": {"_count": 2, "being": {"_count": 1, "told": {"_count": 1}}, "it": {"_count": 1, "Harry": {"_count": 1}}}, "whiskeyfree": {"_count": 1, "hand": {"_count": 1, "": {"_count": 1}}}, "Kwidditch": {"_count": 1, "or": {"_count": 1, "that": {"_count": 1}}}, "modifications": {"_count": 1, "as": {"_count": 1, "they": {"_count": 1}}}, "importing": {"_count": 2, "three": {"_count": 1, "foreign": {"_count": 1}}, "it": {"_count": 1, "from": {"_count": 1}}}, "sphinxes": {"_count": 1, "would": {"_count": 1, "be": {"_count": 1}}}, "graver": {"_count": 3, "news": {"_count": 1, "still": {"_count": 1}}, "doubt": {"_count": 1, "than": {"_count": 1}}, "than": {"_count": 1, "you": {"_count": 1}}}, "fretful": {"_count": 1, "and": {"_count": 1, "sternly": {"_count": 1}}}, "Chorleys": {"_count": 1, "family": {"_count": 1, "would": {"_count": 1}}}, "effected": {"_count": 1, "tonight": {"_count": 1, "": {"_count": 1}}}, "\u2018back": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "eclipsed": {"_count": 2, "almost": {"_count": 1, "immediately": {"_count": 1}}, "it": {"_count": 1, "so": {"_count": 1}}}, "deficient": {"_count": 1, "though": {"_count": 1, "he": {"_count": 1}}}, "materializing": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "theby": {"_count": 1, "now": {"_count": 1, "": {"_count": 1}}}, "overstatement": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "rusted": {"_count": 2, "rigging": {"_count": 1, "and": {"_count": 1}}, "gate": {"_count": 1, "not": {"_count": 1}}}, "corroded": {"_count": 1, "expansion": {"_count": 1, "joints": {"_count": 1}}}, "expansion": {"_count": 1, "joints": {"_count": 1, "and": {"_count": 1}}}, "coloring": {"_count": 1, "up": {"_count": 1, "": {"_count": 1}}}, "blackmailer": {"_count": 1, "before": {"_count": 1, "he": {"_count": 1}}}, "atrocity": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "eluded": {"_count": 2, "capture": {"_count": 1, "for": {"_count": 1}}, "generations": {"_count": 1, "of": {"_count": 1}}}, "decades": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "disasters": {"_count": 1, "and": {"_count": 1, "not": {"_count": 1}}}, "roofs": {"_count": 2, "ripped": {"_count": 1, "off": {"_count": 1}}, "and": {"_count": 1, "their": {"_count": 1}}}, "NotBeNameds": {"_count": 1, "followers": {"_count": 1, "": {"_count": 1}}}, "involvement": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "Misinformation": {"_count": 1, "has": {"_count": 1, "been": {"_count": 1}}}, "Obliviators": {"_count": 1, "out": {"_count": 1, "trying": {"_count": 1}}}, "Somerset": {"_count": 1, "but": {"_count": 1, "we": {"_count": 1}}}, "baffled": {"_count": 2, "you": {"_count": 1, "see": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018breakdown": {"_count": 1, "of": {"_count": 1, "law": {"_count": 1}}}, "unintelligible": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "voters": {"_count": 1, "made": {"_count": 1, "him": {"_count": 1}}}, "Requesting": {"_count": 1, "a": {"_count": 1, "meeting": {"_count": 1}}}, "Rufus": {"_count": 21, "Scrimgeour": {"_count": 16, "Minister": {"_count": 1}, "looked": {"_count": 1}, "previously": {"_count": 1}, "spoke": {"_count": 1}, "who": {"_count": 1}, "": {"_count": 3}, "has": {"_count": 1}, "this": {"_count": 1}, "was": {"_count": 2}, "paused": {"_count": 1}, "as": {"_count": 1}, "tonight": {"_count": 1}, "instantly": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "Scrim": {"_count": 1, "Ive": {"_count": 1}}, "found": {"_count": 1, "a": {"_count": 1}}, "Scrimgeours": {"_count": 1, "power": {"_count": 1}}}, "disgorging": {"_count": 1, "him": {"_count": 1, "moments": {"_count": 1}}}, "wirerimmed": {"_count": 2, "spectacles": {"_count": 1, "and": {"_count": 1}}, "glasses": {"_count": 1, "": {"_count": 1}}}, "rangy": {"_count": 2, "loping": {"_count": 1, "grace": {"_count": 1}}, "man": {"_count": 1, "with": {"_count": 1}}}, "loping": {"_count": 1, "grace": {"_count": 1, "even": {"_count": 1}}}, "shrewdness": {"_count": 1, "and": {"_count": 1, "toughness": {"_count": 1}}}, "toughness": {"_count": 2, "the": {"_count": 1, "Prime": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "continues": {"_count": 4, "to": {"_count": 3, "be": {"_count": 1}, "set": {"_count": 1}, "resist": {"_count": 1}}, "until": {"_count": 1, "that": {"_count": 1}}}, "quacking": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "developments": {"_count": 1, "Prime": {"_count": 1, "Minister": {"_count": 1}}}, "advisory": {"_count": 1, "capacity": {"_count": 1, "": {"_count": 1}}}, "toothache": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "SPINNERS": {"_count": 1, "END": {"_count": 1, "Many": {"_count": 1}}}, "disused": {"_count": 1, "mill": {"_count": 1, "reared": {"_count": 1}}}, "fishandchip": {"_count": 1, "wrappings": {"_count": 1, "in": {"_count": 1}}}, "phenomenon": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}, "by": {"_count": 1, "regarding": {"_count": 1}}}, "bearings": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "Cissy": {"_count": 10, "wait": {"_count": 2, "": {"_count": 1}, "Bella": {"_count": 1}}, "Narcissa": {"_count": 1, "listen": {"_count": 1}}, "you": {"_count": 1, "must": {"_count": 1}}, "your": {"_count": 1, "own": {"_count": 1}}, "and": {"_count": 1, "\u2018Miss": {"_count": 1}}, "": {"_count": 3, "?": {"_count": 1}, "!": {"_count": 2}}, "I": {"_count": 1, "think": {"_count": 1}}}, "dunghill": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "pursuer": {"_count": 2, "caught": {"_count": 1, "up": {"_count": 1}}, "followed": {"_count": 1, "again": {"_count": 1}}}, "Narcisscd": {"_count": 1, "But": {"_count": 1, "Narcissa": {"_count": 1}}}, "Rubbing": {"_count": 1, "her": {"_count": 1, "hand": {"_count": 1}}}, "labyrinth": {"_count": 3, "of": {"_count": 1, "brick": {"_count": 1}}, "comprised": {"_count": 1, "of": {"_count": 1}}, "he": {"_count": 1, "went": {"_count": 1}}}, "Spinners": {"_count": 2, "End": {"_count": 2, "over": {"_count": 1}, "by": {"_count": 1}}}, "cobbles": {"_count": 1, "as": {"_count": 1, "she": {"_count": 1}}}, "stillhooded": {"_count": 1, "sister": {"_count": 1, "followed": {"_count": 1}}}, "mocking": {"_count": 1, "smile": {"_count": 1, "as": {"_count": 1}}}, "padded": {"_count": 1, "cell": {"_count": 1, "": {"_count": 1}}}, "caressing": {"_count": 2, "his": {"_count": 1, "right": {"_count": 1}}, "the": {"_count": 1, "stem": {"_count": 1}}}, "encased": {"_count": 3, "in": {"_count": 2, "a": {"_count": 1}, "Wellington": {"_count": 1}}, "him": {"_count": 1, "head": {"_count": 1}}}, "craving": {"_count": 5, "more": {"_count": 1, "dangerous": {"_count": 1}}, "his": {"_count": 1, "advice": {"_count": 1}}, "to": {"_count": 1, "know": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "the": {"_count": 1, "clifftop": {"_count": 1}}}, "assignments": {"_count": 1, "said": {"_count": 1, "Snape": {"_count": 1}}}, "elfmade": {"_count": 2, "wine": {"_count": 2, "will": {"_count": 1}, "and": {"_count": 1}}}, "bookcovered": {"_count": 1, "door": {"_count": 1, "behind": {"_count": 1}}}, "glower": {"_count": 2, "at": {"_count": 1, "Snape": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}}, "discompose": {"_count": 1, "him": {"_count": 1, "on": {"_count": 1}}}, "\u2018Present": {"_count": 1, "company": {"_count": 1, "": {"_count": 1}}}, "procuring": {"_count": 4, "the": {"_count": 1, "Sorcerers": {"_count": 1}}, "that": {"_count": 1, "memory": {"_count": 1}}, "for": {"_count": 1, "us": {"_count": 1}}, "Veritaserum": {"_count": 1, "for": {"_count": 1}}}, "battled": {"_count": 1, "to": {"_count": 1, "retrieve": {"_count": 1}}}, "Fooled": {"_count": 1, "the": {"_count": 1, "Dark": {"_count": 1}}}, "discomfited": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "forestalled": {"_count": 3, "her": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 2, "with": {"_count": 1}, "in": {"_count": 1}}}, "Yaxley": {"_count": 51, "the": {"_count": 2, "Carrows": {"_count": 1}, "Auror": {"_count": 1}}, "his": {"_count": 1, "blunt": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}, "thrust": {"_count": 1, "his": {"_count": 1}}, "sped": {"_count": 1, "toward": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "lingered": {"_count": 1, "for": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 5}, "?": {"_count": 1}, "!": {"_count": 2}}, "beside": {"_count": 1, "Dolohov": {"_count": 1}}, "had": {"_count": 3, "leaned": {"_count": 1}, "burst": {"_count": 1}, "just": {"_count": 1}}, "waited": {"_count": 1, "but": {"_count": 1}}, "he": {"_count": 1, "gave": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "subsided": {"_count": 1, "at": {"_count": 1}}, "squared": {"_count": 1, "his": {"_count": 1}}, "looked": {"_count": 4, "impressed": {"_count": 1}, "at": {"_count": 1}, "from": {"_count": 1}, "down": {"_count": 1}}, "who": {"_count": 1, "seemed": {"_count": 1}}, "ignored": {"_count": 1, "them": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "swept": {"_count": 1, "away": {"_count": 1}}, "on": {"_count": 1, "one": {"_count": 1}}, "and": {"_count": 4, "Hermione": {"_count": 1}, "hes": {"_count": 1}, "Dolohov": {"_count": 2}}, "but": {"_count": 1, "even": {"_count": 1}}, "were": {"_count": 1, "concentrating": {"_count": 1}}, "still": {"_count": 1, "intent": {"_count": 1}}, "laughed": {"_count": 1, "jeeringly": {"_count": 1}}, "confused": {"_count": 1, "looked": {"_count": 1}}, "slid": {"_count": 1, "to": {"_count": 1}}, "caught": {"_count": 1, "hold": {"_count": 1}}, "could": {"_count": 1, "now": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "Grimmauld": {"_count": 1}}, "close": {"_count": 1, "to": {"_count": 1}}, "rejoined": {"_count": 1, "the": {"_count": 1}}, "slammed": {"_count": 1, "to": {"_count": 1}}}, "Carrows": {"_count": 19, "Greyback": {"_count": 1, "Lucius": {"_count": 1}}, "": {"_count": 6, "?": {"_count": 3}, ".": {"_count": 3}}, "as": {"_count": 1, "his": {"_count": 1}}, "if": {"_count": 1, "we": {"_count": 1}}, "never": {"_count": 1, "rumbled": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 2, "chasing": {"_count": 1}, "hunting": {"_count": 1}}, "cant": {"_count": 1, "get": {"_count": 1}}, "binding": {"_count": 1, "them": {"_count": 1}}, "predicament": {"_count": 1, "if": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "so": {"_count": 1, "much": {"_count": 1}}}, "Greyback": {"_count": 83, "Lucius": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 23, "?": {"_count": 1}, ".": {"_count": 19}, "!": {"_count": 3}}, "is": {"_count": 3, "perhaps": {"_count": 1}, "not": {"_count": 1}, "involved": {"_count": 1}}, "specializes": {"_count": 1, "in": {"_count": 1}}, "who": {"_count": 2, "bit": {"_count": 1}, "had": {"_count": 1}}, "and": {"_count": 9, "telling": {"_count": 1}, "the": {"_count": 1}, "Harry": {"_count": 3}, "Scabior": {"_count": 1}, "seemed": {"_count": 1}, "make": {"_count": 1}, "yelled": {"_count": 1}}, "said": {"_count": 3, "Hermione": {"_count": 1}, "Scabior": {"_count": 2}}, "grinned": {"_count": 1, "showing": {"_count": 1}}, "attacked": {"_count": 2, "him": {"_count": 2}}, "being": {"_count": 1, "a": {"_count": 1}}, "hadnt": {"_count": 1, "transformed": {"_count": 1}}, "were": {"_count": 2, "back": {"_count": 1}, "dead": {"_count": 1}}, "all": {"_count": 1, "suddenly": {"_count": 1}}, "was": {"_count": 4, "saying": {"_count": 1}, "wondering": {"_count": 1}, "not": {"_count": 1}, "thrown": {"_count": 1}}, "smelled": {"_count": 1, "as": {"_count": 1}}, "could": {"_count": 1, "see": {"_count": 1}}, "appreciatively": {"_count": 1, "taking": {"_count": 1}}, "to": {"_count": 2, "see": {"_count": 1}, "his": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}, "wait": {"_count": 1, "And": {"_count": 1}}, "I": {"_count": 2, "havent": {"_count": 1}, "cant": {"_count": 1}}, "had": {"_count": 1, "not": {"_count": 1}}, "covering": {"_count": 1, "his": {"_count": 1}}, "whatll": {"_count": 1, "we": {"_count": 1}}, "seizing": {"_count": 1, "a": {"_count": 1}}, "roared": {"_count": 1, "triumphantly": {"_count": 1}}, "now": {"_count": 1, "he": {"_count": 1}}, "seized": {"_count": 1, "Harry": {"_count": 1}}, "forced": {"_count": 2, "the": {"_count": 2}}, "menacingly": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "its": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "crooned": {"_count": 1, "as": {"_count": 1}}, "unlocked": {"_count": 1, "it": {"_count": 1}}, "take": {"_count": 1, "her": {"_count": 1}}, "wheeled": {"_count": 1, "about": {"_count": 1}}, "takes": {"_count": 1, "care": {"_count": 1}}, "after": {"_count": 1, "what": {"_count": 1}}, "Aberforth": {"_count": 1, "Stunning": {"_count": 1}}}, "Gesture": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "relapse": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "welcomeback": {"_count": 1, "present": {"_count": 1, "than": {"_count": 1}}}, "reminiscences": {"_count": 1, "of": {"_count": 1, "how": {"_count": 1}}}, "stint": {"_count": 1, "in": {"_count": 1, "Azkaban": {"_count": 1}}}, "stooge": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pitiable": {"_count": 1, "condition": {"_count": 1, "very": {"_count": 1}}}, "mediocre": {"_count": 4, "wizard": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}, "arrogant": {"_count": 1, "as": {"_count": 1}}, "and": {"_count": 1, "who": {"_count": 1}}}, "initial": {"_count": 3, "displeasure": {"_count": 1, "at": {"_count": 1}}, "contact": {"_count": 1, "led": {"_count": 1}}, "attraction": {"_count": 1, "and": {"_count": 1}}}, "conveyed": {"_count": 1, "directly": {"_count": 1, "to": {"_count": 1}}}, "inflected": {"_count": 1, "to": {"_count": 1, "suggest": {"_count": 1}}}, "apportioning": {"_count": 1, "blame": {"_count": 1, "said": {"_count": 1}}}, "foresaw": {"_count": 1, "his": {"_count": 1, "use": {"_count": 1}}}, "circulating": {"_count": 3, "about": {"_count": 3, "him": {"_count": 2}, "Dumbledores": {"_count": 1}}}, "obnoxious": {"_count": 1, "and": {"_count": 1, "selfsatisfied": {"_count": 1}}}, "implicitly": {"_count": 1, "still": {"_count": 1, "": {"_count": 1}}}, "acknowledges": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "therein": {"_count": 1, "lies": {"_count": 1, "my": {"_count": 1}}}, "eloquent": {"_count": 1, "with": {"_count": 1, "despair": {"_count": 1}}}, "granting": {"_count": 1, "him": {"_count": 1, "a": {"_count": 1}}}, "beseechingly": {"_count": 2, "all": {"_count": 1, "the": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "Luciuss": {"_count": 9, "mistake": {"_count": 1, "I": {"_count": 1}}, "old": {"_count": 1, "friend": {"_count": 1}}, "fear": {"_count": 1, "of": {"_count": 1}}, "wand": {"_count": 3, "is": {"_count": 1}, "shattered": {"_count": 1}, "had": {"_count": 1}}, "voice": {"_count": 1, "": {"_count": 1}}, "recent": {"_count": 1, "failures": {"_count": 1}}, "position": {"_count": 1, "": {"_count": 1}}}, "succeeds": {"_count": 2, "said": {"_count": 1, "Snape": {"_count": 1}}, "I": {"_count": 1, "shall": {"_count": 1}}}, "advisor": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "selfrestraint": {"_count": 1, "she": {"_count": 1, "still": {"_count": 1}}}, "tained": {"_count": 1, "face": {"_count": 1, "he": {"_count": 1}}}, "intends": {"_count": 3, "me": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 2, "move": {"_count": 1}, "flee": {"_count": 1}}}, "Vow": {"_count": 6, "": {"_count": 4, "?": {"_count": 3}, ".": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}, "Draco": {"_count": 1, "Looks": {"_count": 1}}}, "unreadable": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "she": {"_count": 1}}}, "Narcissas": {"_count": 4, "tearfilled": {"_count": 1, "blue": {"_count": 1}}, "cold": {"_count": 1, "voice": {"_count": 1}}, "and": {"_count": 1, "Greybacks": {"_count": 1}}, "wand": {"_count": 1, "too": {"_count": 1}}}, "tearfilled": {"_count": 2, "blue": {"_count": 1, "ones": {"_count": 1}}, "eyes": {"_count": 1, "": {"_count": 1}}}, "Bonder": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "interlinked": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "deed": {"_count": 1, "that": {"_count": 1, "the": {"_count": 1}}}, "fug": {"_count": 1, "his": {"_count": 1, "breath": {"_count": 1}}}, "artificial": {"_count": 2, "light": {"_count": 1, "drained": {"_count": 1}}, "smile": {"_count": 1, "that": {"_count": 1}}}, "higgledypiggledy": {"_count": 1, "among": {"_count": 1, "the": {"_count": 1}}}, "CHOSEN": {"_count": 1, "ONE": {"_count": 1, "": {"_count": 1}}}, "centered": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "fabled": {"_count": 2, "Hall": {"_count": 1, "of": {"_count": 1}}, "prophecy": {"_count": 1, "for": {"_count": 1}}}, "spokeswizards": {"_count": 1, "have": {"_count": 1, "hitherto": {"_count": 1}}}, "theft": {"_count": 4, "were": {"_count": 1, "attempting": {"_count": 1}}, "or": {"_count": 1, "force": {"_count": 1}}, "had": {"_count": 1, "happened": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "speculation": {"_count": 5, "is": {"_count": 1, "rife": {"_count": 1}}, "however": {"_count": 1, "Clearly": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "became": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "turned": {"_count": 1}}}, "rife": {"_count": 1, "that": {"_count": 1, "it": {"_count": 1}}}, "Chosen": {"_count": 24, "One": {"_count": 22, "believing": {"_count": 1}, "": {"_count": 8}, "rumors": {"_count": 1}, "at": {"_count": 1}, "theyre": {"_count": 1}, "sneered": {"_count": 1}, "There": {"_count": 1}, "well": {"_count": 1}, "would": {"_count": 1}, "or": {"_count": 2}, "you": {"_count": 2}, "working": {"_count": 1}, "and": {"_count": 1}}, "Captain": {"_count": 1, "\u2018the": {"_count": 1}}, "Boy": {"_count": 1, "Who": {"_count": 1}}}, "ctd": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "SCRIMGEOUR": {"_count": 1, "SUCCEEDS": {"_count": 1, "FUDGE": {"_count": 1}}}, "SUCCEEDS": {"_count": 1, "FUDGE": {"_count": 1, "Most": {"_count": 1}}}, "lionlike": {"_count": 1, "mane": {"_count": 1, "of": {"_count": 1}}}, "ravaged": {"_count": 1, "face": {"_count": 1, "": {"_count": 1}}}, "surfaced": {"_count": 2, "within": {"_count": 1, "hours": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Scrimgeours": {"_count": 7, "representatives": {"_count": 1, "admitted": {"_count": 1}}, "talk": {"_count": 1, "that": {"_count": 1}}, "tone": {"_count": 1, "too": {"_count": 1}}, "appointment": {"_count": 1, "we": {"_count": 1}}, "power": {"_count": 1, "he": {"_count": 1}}, "entourage": {"_count": 1, "Harry": {"_count": 1}}, "murder": {"_count": 1, "is": {"_count": 1}}}, "Newly": {"_count": 1, "appointed": {"_count": 1, "Minister": {"_count": 1}}}, "Augusta": {"_count": 2, "Longbottom": {"_count": 1, "My": {"_count": 1}}, "a": {"_count": 1, "line": {"_count": 1}}}, "residue": {"_count": 3, "of": {"_count": 1, "old": {"_count": 1}}, "from": {"_count": 1, "Malfoys": {"_count": 1}}, "covering": {"_count": 1, "the": {"_count": 1}}}, "ISSUED": {"_count": 1, "ON": {"_count": 1, "BEHALF": {"_count": 1}}}, "BEHALF": {"_count": 1, "OF": {"_count": 1, "THE": {"_count": 1}}}, "PROTECTING": {"_count": 1, "YOUR": {"_count": 1, "HOME": {"_count": 1}}}, "FORCES": {"_count": 1, "The": {"_count": 1, "Wizarding": {"_count": 1}}}, "Observing": {"_count": 1, "the": {"_count": 1, "following": {"_count": 1}}}, "Particular": {"_count": 1, "care": {"_count": 1, "should": {"_count": 1}}}, "Review": {"_count": 1, "the": {"_count": 1, "security": {"_count": 1}}}, "SideAlongApparition": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Agree": {"_count": 1, "on": {"_count": 1, "security": {"_count": 1}}}, "masquerading": {"_count": 1, "as": {"_count": 1, "others": {"_count": 1}}}, "Unconfirmed": {"_count": 1, "sightings": {"_count": 1, "suggest": {"_count": 1}}}, "Inferi": {"_count": 21, "see": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 1}, "?": {"_count": 1}, "!": {"_count": 1}}, "have": {"_count": 1, "not": {"_count": 1}}, "to": {"_count": 1, "have": {"_count": 1}}, "A": {"_count": 1, "seedylooking": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "are": {"_count": 1, "dead": {"_count": 1}}, "were": {"_count": 1, "already": {"_count": 1}}, "holding": {"_count": 1, "Harry": {"_count": 1}}, "but": {"_count": 1, "taller": {"_count": 1}}, "bumped": {"_count": 1, "into": {"_count": 1}}, "seemed": {"_count": 1, "unaware": {"_count": 1}}, "accompanying": {"_count": 1, "them": {"_count": 1}}, "swarming": {"_count": 1, "below": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "creeping": {"_count": 1, "toward": {"_count": 1}}, "a": {"_count": 1, "chorus": {"_count": 1}}, "which": {"_count": 1, "means": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}}, "Beside": {"_count": 4, "it": {"_count": 1, "held": {"_count": 1}}, "Luna": {"_count": 1, "Professor": {"_count": 1}}, "him": {"_count": 2, "was": {"_count": 1}, "making": {"_count": 1}}}, "agreeable": {"_count": 2, "I": {"_count": 1, "should": {"_count": 1}}, "feeling": {"_count": 1, "of": {"_count": 1}}}, "missive": {"_count": 1, "every": {"_count": 1, "few": {"_count": 1}}}, "unpack": {"_count": 1, "again": {"_count": 1, "": {"_count": 1}}}, "Hastily": {"_count": 4, "straightening": {"_count": 1, "his": {"_count": 1}}, "scooping": {"_count": 1, "it": {"_count": 1}}, "stowing": {"_count": 1, "her": {"_count": 1}}, "pulling": {"_count": 1, "out": {"_count": 1}}}, "Downstairs": {"_count": 3, "in": {"_count": 2, "the": {"_count": 2}}, "he": {"_count": 1, "found": {"_count": 1}}}, "Halfmoon": {"_count": 1, "spectacles": {"_count": 1, "were": {"_count": 1}}}, "overlong": {"_count": 4, "on": {"_count": 1, "doorsteps": {"_count": 1}}, "robe": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "with": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "doorsteps": {"_count": 1, "in": {"_count": 1, "these": {"_count": 1}}}, "agapanthus": {"_count": 1, "are": {"_count": 1, "flourishing": {"_count": 1}}}, "robbed": {"_count": 3, "him": {"_count": 1, "temporarily": {"_count": 1}}, "the": {"_count": 1, "other": {"_count": 1}}, "of": {"_count": 1, "all": {"_count": 1}}}, "wizardishness": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "accidental": {"_count": 2, "rudeness": {"_count": 1, "occurs": {"_count": 1}}, "victims": {"_count": 1, "of": {"_count": 1}}}, "occurs": {"_count": 3, "alarmingly": {"_count": 1, "often": {"_count": 1}}, "when": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "me": {"_count": 1}}}, "housecoat": {"_count": 1, "over": {"_count": 1, "her": {"_count": 1}}}, "wipedown": {"_count": 1, "of": {"_count": 1, "all": {"_count": 1}}}, "corresponded": {"_count": 1, "of": {"_count": 1, "course": {"_count": 1}}}, "stripy": {"_count": 1, "collar": {"_count": 1, "of": {"_count": 1}}}, "hospitality": {"_count": 3, "only": {"_count": 1, "a": {"_count": 1}}, "quite": {"_count": 1, "long": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "refreshment": {"_count": 1, "Dumbledore": {"_count": 1, "said": {"_count": 1}}}, "foolishness": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "he": {"_count": 1, "vented": {"_count": 1}}}, "oakmatured": {"_count": 3, "mead": {"_count": 3, "said": {"_count": 1}, "": {"_count": 2}}}, "inherit": {"_count": 2, "all": {"_count": 1, "of": {"_count": 1}}, "his": {"_count": 1, "house": {"_count": 1}}}, "problematic": {"_count": 1, "part": {"_count": 1, "of": {"_count": 1}}}, "legacy": {"_count": 1, "His": {"_count": 1, "godfathers": {"_count": 1}}}, "pits": {"_count": 1, "dark": {"_count": 1, "musty": {"_count": 1}}}, "decreed": {"_count": 1, "that": {"_count": 1, "the": {"_count": 1}}}, "\u2018Black": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "predeceased": {"_count": 1, "him": {"_count": 1, "and": {"_count": 1}}}, "childless": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ownership": {"_count": 9, "of": {"_count": 2, "the": {"_count": 1}, "Bellatrix": {"_count": 1}}, "has": {"_count": 1, "passed": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "will": {"_count": 1}}, "had": {"_count": 1, "altered": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "payment": {"_count": 1, "and": {"_count": 1}}}, "fraught": {"_count": 2, "with": {"_count": 1, "complications": {"_count": 1}}, "for": {"_count": 1, "centuries": {"_count": 1}}}, "clarified": {"_count": 1, "the": {"_count": 1, "position": {"_count": 1}}}, "retorts": {"_count": 1, "but": {"_count": 1, "he": {"_count": 1}}}, "shag": {"_count": 1, "carpet": {"_count": 1, "and": {"_count": 1}}}, "hairraising": {"_count": 1, "shriek": {"_count": 1, "nothing": {"_count": 1}}}, "mistress": {"_count": 8, "Kreacher": {"_count": 1, "wont": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "say": {"_count": 1, "": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "and": {"_count": 2, "elf": {"_count": 1}, "his": {"_count": 1}}}, "croaks": {"_count": 1, "of": {"_count": 1, "wont": {"_count": 1}}}, "reluctance": {"_count": 2, "to": {"_count": 1, "pass": {"_count": 1}}, "even": {"_count": 1, "fear": {"_count": 1}}}, "owning": {"_count": 2, "him": {"_count": 1, "of": {"_count": 1}}, "the": {"_count": 1, "book": {"_count": 1}}}, "repugnant": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "choke": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "simplifies": {"_count": 1, "matters": {"_count": 1, "said": {"_count": 1}}}, "rechristen": {"_count": 1, "him": {"_count": 1, "\u2018Witherwings": {"_count": 1}}}, "\u2018Witherwings": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "Doubtful": {"_count": 1, "that": {"_count": 1, "I": {"_count": 1}}}, "colorchange": {"_count": 1, "ink": {"_count": 1, "and": {"_count": 1}}}, "warfare": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mistreat": {"_count": 1, "Dudders": {"_count": 1, "": {"_count": 1}}}, "evoked": {"_count": 1, "fifteen": {"_count": 1, "years": {"_count": 1}}}, "\u2018home": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "seventeenth": {"_count": 6, "birthday": {"_count": 3, "which": {"_count": 1}, "cake": {"_count": 1}, "": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "doffing": {"_count": 1, "his": {"_count": 1, "hat": {"_count": 1}}}, "encumbered": {"_count": 1, "by": {"_count": 1, "these": {"_count": 1}}}, "flighty": {"_count": 1, "temptress": {"_count": 1, "adventure": {"_count": 1}}}, "temptress": {"_count": 1, "adventure": {"_count": 1, "": {"_count": 1}}}, "HORACE": {"_count": 1, "SLUGHORN": {"_count": 1, "Despite": {"_count": 1}}}, "SLUGHORN": {"_count": 1, "Despite": {"_count": 1, "the": {"_count": 1}}}, "heightened": {"_count": 1, "Harrys": {"_count": 1, "sense": {"_count": 1}}}, "proffered": {"_count": 1, "forearm": {"_count": 1, "": {"_count": 1}}}, "bands": {"_count": 3, "tightening": {"_count": 1, "around": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "something": {"_count": 1}}}, "lungfuls": {"_count": 2, "of": {"_count": 2, "cold": {"_count": 1}, "fresh": {"_count": 1}}}, "memorial": {"_count": 4, "and": {"_count": 1, "a": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "solicitously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Budleigh": {"_count": 1, "Babberton": {"_count": 1, "": {"_count": 1}}}, "Babberton": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Courtesy": {"_count": 1, "dictates": {"_count": 1, "that": {"_count": 1}}}, "dictates": {"_count": 1, "that": {"_count": 1, "we": {"_count": 1}}}, "personality": {"_count": 4, "than": {"_count": 1, "Cornelius": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "he": {"_count": 1, "seemed": {"_count": 1}}, "into": {"_count": 1, "you": {"_count": 1}}}, "underestimate": {"_count": 3, "Lord": {"_count": 1, "Voldemort": {"_count": 1}}, "the": {"_count": 2, "power": {"_count": 1}, "constant": {"_count": 1}}}, "snubbed": {"_count": 1, "and": {"_count": 1, "that": {"_count": 1}}}, "reprimanded": {"_count": 2, "or": {"_count": 1, "not": {"_count": 1}}, "one": {"_count": 1, "of": {"_count": 1}}}, "preferences": {"_count": 1, "before": {"_count": 1, "impersonating": {"_count": 1}}}, "corpses": {"_count": 1, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "pendulum": {"_count": 1, "lying": {"_count": 1, "a": {"_count": 1}}}, "piano": {"_count": 4, "was": {"_count": 1, "on": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 1, "silence": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Cushions": {"_count": 1, "lay": {"_count": 1, "deflated": {"_count": 1}}}, "slashes": {"_count": 2, "in": {"_count": 1, "their": {"_count": 1}}, "across": {"_count": 1, "its": {"_count": 1}}}, "Horace": {"_count": 25, "said": {"_count": 5, "Dumbledore": {"_count": 5}}, "as": {"_count": 1, "with": {"_count": 1}}, "Slughorn": {"_count": 6, "": {"_count": 3}, "to": {"_count": 1}, "before": {"_count": 1}, "who": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "would": {"_count": 1, "have": {"_count": 1}}, "we": {"_count": 2, "shall": {"_count": 1}, "duel": {"_count": 1}}, "exactly": {"_count": 1, "how": {"_count": 1}}, "formed": {"_count": 1, "a": {"_count": 1}}, "or": {"_count": 1, "as": {"_count": 1}}, "described": {"_count": 1, "": {"_count": 1}}, "Slughorns": {"_count": 1, "office": {"_count": 1}}, "was": {"_count": 1, "an": {"_count": 1}}}, "walruslike": {"_count": 1, "mustache": {"_count": 1, "and": {"_count": 1}}}, "upholstery": {"_count": 1, "when": {"_count": 1, "you": {"_count": 1}}}, "ornaments": {"_count": 2, "reformed": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 1, "make": {"_count": 1}}}, "reignited": {"_count": 1, "a": {"_count": 1, "vast": {"_count": 1}}}, "untarnished": {"_count": 2, "upon": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "whole": {"_count": 1}}}, "chiming": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "unsmashed": {"_count": 1, "grandfather": {"_count": 1, "clock": {"_count": 1}}}, "plunk": {"_count": 3, "from": {"_count": 1, "the": {"_count": 1}}, "plunk": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "prices": {"_count": 2, "are": {"_count": 2, "skyhigh": {"_count": 1}, "skyrocketing": {"_count": 1}}}, "skyhigh": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "reusable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ohol": {"_count": 1, "This": {"_count": 1, "said": {"_count": 1}}}, "Slughorn": {"_count": 371, "": {"_count": 47, ".": {"_count": 42}, "?": {"_count": 5}}, "turned": {"_count": 2, "on": {"_count": 1}, "paler": {"_count": 1}}, "hesitated": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 15, "so": {"_count": 1}, "finished": {"_count": 1}, "not": {"_count": 2}, "taught": {"_count": 1}, "lent": {"_count": 1}, "sent": {"_count": 1}, "peered": {"_count": 1}, "taken": {"_count": 1}, "been": {"_count": 1}, "pronounced": {"_count": 1}, "gone": {"_count": 1}, "brought": {"_count": 1}, "given": {"_count": 1}, "just": {"_count": 1}}, "who": {"_count": 11, "had": {"_count": 2}, "was": {"_count": 3}, "turned": {"_count": 1}, "Harry": {"_count": 1}, "like": {"_count": 1}, "pocketed": {"_count": 1}, "approved": {"_count": 1}, "looked": {"_count": 1}}, "at": {"_count": 4, "once": {"_count": 2}, "all": {"_count": 1}, "the": {"_count": 1}}, "said": {"_count": 6, "half": {"_count": 1}, "sounding": {"_count": 1}, "next": {"_count": 1}, "Dumbledore": {"_count": 1}, "Hermione": {"_count": 1}, "nothing": {"_count": 1}}, "bluntly": {"_count": 1, "": {"_count": 1}}, "eyed": {"_count": 1, "Dumbledore": {"_count": 1}}, "looked": {"_count": 5, "round": {"_count": 1}, "down": {"_count": 2}, "around": {"_count": 1}, "deeply": {"_count": 1}}, "clearly": {"_count": 1, "disappointed": {"_count": 1}}, "got": {"_count": 1, "to": {"_count": 1}}, "s": {"_count": 22, "watery": {"_count": 1}, "face": {"_count": 2}, "cosseted": {"_count": 1}, "voice": {"_count": 2}, "great": {"_count": 1}, "desk": {"_count": 3}, "party": {"_count": 1}, "office": {"_count": 3}, "word": {"_count": 1}, "overheated": {"_count": 1}, "open": {"_count": 1}, "a": {"_count": 1}, "instructions": {"_count": 1}, "back": {"_count": 1}, "flattering": {"_count": 1}, "tearfilled": {"_count": 1}}, "added": {"_count": 1, "in": {"_count": 1}}, "if": {"_count": 1, "hampers": {"_count": 1}}, "himself": {"_count": 2, "he": {"_count": 1}, "": {"_count": 1}}, "would": {"_count": 5, "be": {"_count": 2}, "have": {"_count": 2}, "remember": {"_count": 1}}, "gave": {"_count": 3, "a": {"_count": 2}, "him": {"_count": 1}}, "gazed": {"_count": 1, "into": {"_count": 1}}, "jumped": {"_count": 1, "as": {"_count": 1}}, "seemed": {"_count": 6, "taken": {"_count": 1}, "agitated": {"_count": 1}, "paralyzed": {"_count": 1}, "suddenly": {"_count": 1}, "to": {"_count": 2}}, "standing": {"_count": 1, "breathless": {"_count": 1}}, "impatiently": {"_count": 1, "": {"_count": 1}}, "or": {"_count": 2, "not": {"_count": 1}, "Voldemort": {"_count": 1}}, "but": {"_count": 4, "to": {"_count": 1}, "also": {"_count": 1}, "I": {"_count": 1}, "the": {"_count": 1}}, "proved": {"_count": 1, "much": {"_count": 1}}, "to": {"_count": 5, "take": {"_count": 1}, "divulge": {"_count": 1}, "hand": {"_count": 1}, "talk": {"_count": 1}, "find": {"_count": 1}}, "makes": {"_count": 1, "mistakes": {"_count": 1}}, "seem": {"_count": 1, "like": {"_count": 1}}, "jumping": {"_count": 1, "up": {"_count": 1}}, "they": {"_count": 1, "sat": {"_count": 1}}, "and": {"_count": 8, "looking": {"_count": 1}, "start": {"_count": 1}, "the": {"_count": 1}, "Hagrid": {"_count": 1}, "Harry": {"_count": 1}, "hide": {"_count": 1}, "positively": {"_count": 1}, "Kingsley": {"_count": 1}}, "asked": {"_count": 1, "Harry": {"_count": 1}}, "finished": {"_count": 1, "": {"_count": 1}}, "cozily": {"_count": 1, "": {"_count": 1}}, "told": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 1, "swallowed": {"_count": 1}}, "calmly": {"_count": 1, "pointing": {"_count": 1}}, "looking": {"_count": 1, "questioningly": {"_count": 1}}, "I": {"_count": 2, "happen": {"_count": 1}, "want": {"_count": 1}}, "now": {"_count": 5, "offering": {"_count": 1}, "looking": {"_count": 1}, "eyeing": {"_count": 1}, "swapping": {"_count": 1}, "dabbing": {"_count": 1}}, "was": {"_count": 13, "reserving": {"_count": 1}, "going": {"_count": 1}, "saying": {"_count": 2}, "just": {"_count": 1}, "raving": {"_count": 1}, "out": {"_count": 1}, "wearing": {"_count": 1}, "calling": {"_count": 1}, "not": {"_count": 1}, "in": {"_count": 1}, "the": {"_count": 1}, "different": {"_count": 1}}, "shifting": {"_count": 1, "massively": {"_count": 1}}, "watching": {"_count": 1, "Harry": {"_count": 1}}, "comfortably": {"_count": 1, "looking": {"_count": 1}}, "turning": {"_count": 2, "back": {"_count": 1}, "around": {"_count": 1}}, "beamed": {"_count": 1, "at": {"_count": 1}}, "with": {"_count": 5, "great": {"_count": 1}, "thick": {"_count": 1}, "a": {"_count": 1}, "his": {"_count": 1}, "Tom": {"_count": 1}}, "came": {"_count": 2, "in": {"_count": 2}}, "want": {"_count": 4, "": {"_count": 2}, "to": {"_count": 2}}, "probably": {"_count": 1, "hasnt": {"_count": 1}}, "Slughorn": {"_count": 1, "stood": {"_count": 1}}, "stood": {"_count": 1, "up": {"_count": 1}}, "bloke": {"_count": 1, "might": {"_count": 1}}, "however": {"_count": 2, "is": {"_count": 1}, "did": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "whose": {"_count": 1, "massive": {"_count": 1}}, "strode": {"_count": 1, "over": {"_count": 1}}, "returning": {"_count": 1, "to": {"_count": 1}}, "pointed": {"_count": 1, "at": {"_count": 1}}, "happily": {"_count": 3, "": {"_count": 2}, "before": {"_count": 1}}, "ignoring": {"_count": 1, "Hermiones": {"_count": 1}}, "showed": {"_count": 2, "no": {"_count": 1}, "us": {"_count": 1}}, "genially": {"_count": 3, "": {"_count": 3}}, "it": {"_count": 2, "is": {"_count": 1}, "seemed": {"_count": 1}}, "again": {"_count": 2, "": {"_count": 1}, "the": {"_count": 1}}, "his": {"_count": 4, "full": {"_count": 1}, "face": {"_count": 1}, "eyes": {"_count": 2}}, "apparently": {"_count": 1, "coming": {"_count": 1}}, "taking": {"_count": 1, "a": {"_count": 1}}, "suddenly": {"_count": 2, "brisk": {"_count": 1}, "raising": {"_count": 1}}, "without": {"_count": 1, "looking": {"_count": 1}}, "moved": {"_count": 2, "slowly": {"_count": 1}, "around": {"_count": 1}}, "couldve": {"_count": 1, "handed": {"_count": 1}}, "why": {"_count": 1, "they": {"_count": 1}}, "that": {"_count": 2, "night": {"_count": 1}, "might": {"_count": 1}}, "back": {"_count": 1, "the": {"_count": 1}}, "appeared": {"_count": 2, "in": {"_count": 1}, "at": {"_count": 1}}, "made": {"_count": 1, "Hermione": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "folded": {"_count": 1, "his": {"_count": 1}}, "invited": {"_count": 1, "Hermione": {"_count": 1}}, "poking": {"_count": 1, "him": {"_count": 1}}, "dramatically": {"_count": 1, "": {"_count": 1}}, "Dumbledore": {"_count": 1, "reckons": {"_count": 1}}, "can": {"_count": 2, "make": {"_count": 1}, "represent": {"_count": 1}}, "its": {"_count": 1, "illegal": {"_count": 1}}, "have": {"_count": 1, "taught": {"_count": 1}}, "almost": {"_count": 1, "as": {"_count": 1}}, "led": {"_count": 1, "him": {"_count": 1}}, "only": {"_count": 1, "the": {"_count": 1}}, "regarding": {"_count": 1, "Harry": {"_count": 1}}, "threw": {"_count": 1, "out": {"_count": 1}}, "wheezed": {"_count": 1, "Filch": {"_count": 1}}, "waving": {"_count": 3, "a": {"_count": 1}, "away": {"_count": 1}, "his": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "hiccuping": {"_count": 1, "again": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}, "all": {"_count": 1, "on": {"_count": 1}}, "wagging": {"_count": 2, "a": {"_count": 1}, "his": {"_count": 1}}, "pulled": {"_count": 1, "himself": {"_count": 1}}, "has": {"_count": 1, "meddled": {"_count": 1}}, "is": {"_count": 1, "an": {"_count": 1}}, "by": {"_count": 1, "force": {"_count": 1}}, "think": {"_count": 2, "out": {"_count": 1}, "that": {"_count": 1}}, "called": {"_count": 1, "Two": {"_count": 1}}, "reached": {"_count": 2, "her": {"_count": 1}, "their": {"_count": 1}}, "were": {"_count": 2, "the": {"_count": 1}, "sitting": {"_count": 1}}, "affably": {"_count": 1, "snapping": {"_count": 1}}, "froze": {"_count": 1, "": {"_count": 1}}, "quietly": {"_count": 1, "still": {"_count": 1}}, "might": {"_count": 1, "be": {"_count": 1}}, "into": {"_count": 2, "his": {"_count": 1}, "such": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}, "relenting": {"_count": 1, "": {"_count": 1}}, "opening": {"_count": 1, "his": {"_count": 1}}, "smoothly": {"_count": 1, "handing": {"_count": 1}}, "watched": {"_count": 1, "him": {"_count": 1}}, "chuckled": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "Ron": {"_count": 1}}, "continued": {"_count": 2, "now": {"_count": 1}, "to": {"_count": 1}}, "since": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 5, "a": {"_count": 4}, "conversation": {"_count": 1}}, "handing": {"_count": 2, "Harry": {"_count": 1}, "over": {"_count": 1}}, "ran": {"_count": 1, "for": {"_count": 1}}, "poured": {"_count": 1, "it": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "very": {"_count": 1, "well": {"_count": 1}}, "about": {"_count": 3, "it": {"_count": 1}, "Horcruxes": {"_count": 1}, "them": {"_count": 1}}, "amongst": {"_count": 1, "them": {"_count": 1}}, "the": {"_count": 1, "teacher": {"_count": 1}}, "where": {"_count": 1, "other": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}, "cheerily": {"_count": 1, "as": {"_count": 1}}, "airily": {"_count": 1, "": {"_count": 1}}, "an": {"_count": 1, "hour": {"_count": 1}}, "immediately": {"_count": 1, "glanced": {"_count": 1}}, "enter": {"_count": 1, "the": {"_count": 1}}, "remember": {"_count": 1, "": {"_count": 1}}, "directed": {"_count": 1, "his": {"_count": 1}}, "stopping": {"_count": 1, "dead": {"_count": 1}}, "scowl": {"_count": 1, "": {"_count": 1}}, "softly": {"_count": 1, "looking": {"_count": 1}}, "absentmindedly": {"_count": 1, "his": {"_count": 1}}, "met": {"_count": 1, "me": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}, "hurried": {"_count": 1, "over": {"_count": 1}}, "approaching": {"_count": 1, "the": {"_count": 1}}, "bent": {"_count": 1, "over": {"_count": 1}}, "stepping": {"_count": 1, "back": {"_count": 1}}, "wore": {"_count": 1, "a": {"_count": 1}}, "uncorked": {"_count": 1, "one": {"_count": 1}}, "dividing": {"_count": 1, "a": {"_count": 1}}, "took": {"_count": 1, "another": {"_count": 1}}, "began": {"_count": 1, "making": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}, "plaintively": {"_count": 1, "": {"_count": 1}}, "repressing": {"_count": 1, "a": {"_count": 1}}, "straight": {"_count": 1, "in": {"_count": 1}}, "raised": {"_count": 1, "a": {"_count": 1}}, "put": {"_count": 1, "his": {"_count": 1}}, "touched": {"_count": 1, "the": {"_count": 1}}, "lowered": {"_count": 1, "it": {"_count": 1}}, "tears": {"_count": 1, "trickling": {"_count": 1}}, "briskly": {"_count": 1, "couldnt": {"_count": 1}}, "heaved": {"_count": 1, "himself": {"_count": 1}}, "stared": {"_count": 1, "at": {"_count": 1}}, "knew": {"_count": 1, "perfectly": {"_count": 1}}, "not": {"_count": 1, "looking": {"_count": 1}}, "uncomfortably": {"_count": 1, "you": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "gruffly": {"_count": 1, "": {"_count": 1}}, "explained": {"_count": 1, "to": {"_count": 1}}, "Harrys": {"_count": 1, "stomach": {"_count": 1}}, "believing": {"_count": 1, "that": {"_count": 1}}, "says": {"_count": 1, "the": {"_count": 1}}, "traipsed": {"_count": 1, "into": {"_count": 1}}, "talking": {"_count": 1, "about": {"_count": 1}}, "how": {"_count": 1, "to": {"_count": 1}}, "panting": {"_count": 1, "along": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "rumbled": {"_count": 1, "into": {"_count": 1}}, "splutter": {"_count": 1, "He": {"_count": 1}}, "blasted": {"_count": 1, "backward": {"_count": 1}}}, "ungraciously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "impersonated": {"_count": 1, "which": {"_count": 1, "stood": {"_count": 1}}}, "decanters": {"_count": 1, "and": {"_count": 1, "glasses": {"_count": 1}}}, "Hmpf": {"_count": 2, "he": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Rheumatism": {"_count": 1, "too": {"_count": 1, "": {"_count": 1}}}, "Fatigue": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Intruder": {"_count": 1, "Charm": {"_count": 1, "go": {"_count": 1}}}, "stuffy": {"_count": 2, "and": {"_count": 2, "cluttered": {"_count": 1}, "bathed": {"_count": 1}}}, "footstools": {"_count": 2, "drinks": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "gooseberry": {"_count": 1, "eyes": {"_count": 1, "had": {"_count": 1}}}, "Reactions": {"_count": 1, "not": {"_count": 1, "what": {"_count": 1}}}, "Slughorns": {"_count": 39, "eyes": {"_count": 1, "lingered": {"_count": 1}}, "old": {"_count": 1, "favorites": {"_count": 1}}, "only": {"_count": 1, "invitees": {"_count": 1}}, "welcome": {"_count": 1, "Harry": {"_count": 1}}, "back": {"_count": 1, "": {"_count": 1}}, "taste": {"_count": 1, "": {"_count": 1}}, "interested": {"_count": 1, "in": {"_count": 1}}, "belly": {"_count": 1, "preceded": {"_count": 1}}, "dungeon": {"_count": 1, "": {"_count": 1}}, "latest": {"_count": 1, "party": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}, "favorites": {"_count": 1, "is": {"_count": 1}}, "party": {"_count": 8, "": {"_count": 4}, "after": {"_count": 1}, "with": {"_count": 1}, "tonight": {"_count": 1}, "together": {"_count": 1}}, "dimly": {"_count": 1, "lit": {"_count": 1}}, "Christmas": {"_count": 2, "party": {"_count": 2}}, "office": {"_count": 7, "said": {"_count": 2}, "and": {"_count": 2}, "was": {"_count": 1}, "around": {"_count": 1}, "many": {"_count": 1}}, "arm": {"_count": 1, "around": {"_count": 1}}, "parry": {"_count": 1, "before": {"_count": 1}}, "desk": {"_count": 2, "chimed": {"_count": 1}, "which": {"_count": 1}}, "voice": {"_count": 1, "boomed": {"_count": 1}}, "memory": {"_count": 3, "for": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}}, "curiosity": {"_count": 1, "was": {"_count": 1}}}, "buffer": {"_count": 2, "like": {"_count": 1, "me": {"_count": 1}}, "in": {"_count": 1, "search": {"_count": 1}}}, "coercion": {"_count": 1, "torture": {"_count": 1, "and": {"_count": 1}}}, "Islands": {"_count": 1, "its": {"_count": 1, "been": {"_count": 1}}}, "burglar": {"_count": 1, "alarms": {"_count": 1, "they": {"_count": 1}}}, "alarms": {"_count": 1, "they": {"_count": 1, "use": {"_count": 1}}}, "\u2018filthy": {"_count": 1, "halfbreeds": {"_count": 1, "": {"_count": 1}}}, "Idiotic": {"_count": 1, "woman": {"_count": 1, "": {"_count": 1}}}, "brightest": {"_count": 4, "I": {"_count": 1, "ever": {"_count": 1}}, "blue": {"_count": 2, "": {"_count": 1}, "Dumbledores": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Vivacious": {"_count": 1, "you": {"_count": 1, "know": {"_count": 1}}}, "collector": {"_count": 1, "who": {"_count": 1, "had": {"_count": 1}}}, "outbid": {"_count": 1, "at": {"_count": 1, "auction": {"_count": 1}}}, "auction": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Dirk": {"_count": 22, "Cresswell": {"_count": 6, "in": {"_count": 1}, "eh": {"_count": 1}, "": {"_count": 2}, "is": {"_count": 1}, "Bathilda": {"_count": 1}}, "Cresswells": {"_count": 1, "": {"_count": 1}}, "Im": {"_count": 1, "surprised": {"_count": 1}}, "": {"_count": 8, ".": {"_count": 8}}, "that": {"_count": 1, "there": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "me": {"_count": 1, "included": {"_count": 1}}, "had": {"_count": 1, "swallowed": {"_count": 1}}, "heavily": {"_count": 1, "": {"_count": 1}}, "murmured": {"_count": 1, "Ted": {"_count": 1}}}, "Cresswell": {"_count": 7, "in": {"_count": 1, "the": {"_count": 1}}, "eh": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "is": {"_count": 1, "ten": {"_count": 1}}, "and": {"_count": 1, "Gornuk": {"_count": 1}}, "Bathilda": {"_count": 1, "Bagshot": {"_count": 1}}}, "goingson": {"_count": 1, "at": {"_count": 1, "Gringotts": {"_count": 1}}}, "peopled": {"_count": 1, "with": {"_count": 1, "tiny": {"_count": 1}}}, "exstudents": {"_count": 1, "all": {"_count": 1, "signed": {"_count": 1}}}, "Cuffe": {"_count": 1, "editor": {"_count": 1, "of": {"_count": 1}}}, "Ambrosius": {"_count": 1, "Flume": {"_count": 1, "of": {"_count": 1}}}, "Flume": {"_count": 1, "of": {"_count": 1, "Honeydukes": {"_count": 1}}}, "hamper": {"_count": 1, "every": {"_count": 1, "birthday": {"_count": 1}}}, "Ciceron": {"_count": 1, "Harkiss": {"_count": 1, "who": {"_count": 1}}}, "Harkiss": {"_count": 1, "who": {"_count": 1, "gave": {"_count": 1}}}, "Gwenog": {"_count": 7, "Jones": {"_count": 6, "who": {"_count": 1}, "I": {"_count": 1}, "": {"_count": 3}, "Captain": {"_count": 1}}, "telling": {"_count": 1, "me": {"_count": 1}}}, "Holyhead": {"_count": 4, "Harpies": {"_count": 4, "": {"_count": 2}, "He": {"_count": 1}, "on": {"_count": 1}}}, "Harpies": {"_count": 5, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "and": {"_count": 1, "free": {"_count": 1}}, "He": {"_count": 1, "meandered": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "firstname": {"_count": 1, "terms": {"_count": 1, "with": {"_count": 1}}}, "hampers": {"_count": 1, "of": {"_count": 1, "sweets": {"_count": 1}}}, "tantamount": {"_count": 2, "to": {"_count": 2, "declaring": {"_count": 1}, "a": {"_count": 1}}}, "declaring": {"_count": 1, "my": {"_count": 1, "public": {"_count": 1}}}, "mortality": {"_count": 1, "rate": {"_count": 1, "You": {"_count": 1}}}, "derision": {"_count": 2, "out": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "sympathize": {"_count": 2, "with": {"_count": 1, "Slughorn": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cosseted": {"_count": 1, "existence": {"_count": 1, "when": {"_count": 1}}}, "Upset": {"_count": 1, "stomach": {"_count": 1, "": {"_count": 1}}}, "trespassed": {"_count": 1, "upon": {"_count": 1, "Horaces": {"_count": 1}}}, "Horaces": {"_count": 1, "hospitality": {"_count": 1, "quite": {"_count": 1}}}, "notwithstanding": {"_count": 2, "you": {"_count": 1, "will": {"_count": 1}}, "does": {"_count": 1, "Skeeter": {"_count": 1}}}, "Wonderful": {"_count": 3, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "influences": {"_count": 1, "these": {"_count": 1, "people": {"_count": 1}}}, "handpick": {"_count": 1, "favorites": {"_count": 1, "at": {"_count": 1}}}, "introductions": {"_count": 1, "forging": {"_count": 1, "useful": {"_count": 1}}}, "forging": {"_count": 1, "useful": {"_count": 1, "contacts": {"_count": 1}}}, "crystalized": {"_count": 6, "pineapple": {"_count": 6, "or": {"_count": 1}, "and": {"_count": 2}, "": {"_count": 2}, "well": {"_count": 1}}}, "Braced": {"_count": 1, "this": {"_count": 1, "time": {"_count": 1}}}, "outhouse": {"_count": 1, "where": {"_count": 1, "the": {"_count": 1}}}, "coping": {"_count": 2, "after": {"_count": 1, "everything": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Permit": {"_count": 1, "me": {"_count": 1, "to": {"_count": 1}}}, "devastating": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "godson": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "approving": {"_count": 3, "pat": {"_count": 1, "on": {"_count": 1}}, "nod": {"_count": 1, "": {"_count": 1}}, "look": {"_count": 1, "that": {"_count": 1}}}, "disservice": {"_count": 1, "by": {"_count": 1, "not": {"_count": 1}}}, "Private": {"_count": 1, "with": {"_count": 1, "you": {"_count": 1}}}, "\u2018fiasco": {"_count": 1, "would": {"_count": 1, "be": {"_count": 1}}}, "lastly": {"_count": 3, "while": {"_count": 1, "you": {"_count": 1}}, "I": {"_count": 1, "hope": {"_count": 1}}, "your": {"_count": 1, "pretty": {"_count": 1}}}, "inconvenience": {"_count": 2, "to": {"_count": 1, "Arthur": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "deplore": {"_count": 2, "how": {"_count": 1, "thin": {"_count": 1}}, "the": {"_count": 1, "necessity": {"_count": 1}}}, "EXCESS": {"_count": 1, "OF": {"_count": 1, "PHLEGM": {"_count": 1}}}, "PHLEGM": {"_count": 1, "Harry": {"_count": 1, "and": {"_count": 1}}}, "clucking": {"_count": 2, "of": {"_count": 1, "sleepy": {"_count": 1}}, "noise": {"_count": 1, "and": {"_count": 1}}}, "Declare": {"_count": 1, "yourself": {"_count": 1, "": {"_count": 1}}}, "persuadable": {"_count": 2, "than": {"_count": 2, "I": {"_count": 1}, "usual": {"_count": 1}}}, "colorful": {"_count": 2, "than": {"_count": 1, "usual": {"_count": 1}}, "glittering": {"_count": 1, "window": {"_count": 1}}}, "customary": {"_count": 1, "shade": {"_count": 1, "of": {"_count": 1}}}, "Bread": {"_count": 1, "dear": {"_count": 1, "": {"_count": 1}}}, "ups": {"_count": 1, "but": {"_count": 1, "he": {"_count": 1}}}, "highflier": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Detection": {"_count": 2, "and": {"_count": 2, "Confiscation": {"_count": 2}}}, "Confiscation": {"_count": 3, "of": {"_count": 2, "Counterfeit": {"_count": 2}}, "gives": {"_count": 1, "the": {"_count": 1}}}, "Counterfeit": {"_count": 2, "Defensive": {"_count": 2, "Spells": {"_count": 2}}}, "Protective": {"_count": 2, "Objects": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}}, "cropping": {"_count": 3, "up": {"_count": 3, "for": {"_count": 1}, "in": {"_count": 1}, "doesnt": {"_count": 1}}}, "perpetrators": {"_count": 1, "are": {"_count": 1, "just": {"_count": 1}}}, "spark": {"_count": 4, "plugs": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}, "that": {"_count": 1, "ignited": {"_count": 1}}, "then": {"_count": 1, "a": {"_count": 1}}}, "toasters": {"_count": 1, "and": {"_count": 1, "all": {"_count": 1}}}, "Mollywobbles": {"_count": 1, "whispered": {"_count": 1, "a": {"_count": 1}}}, "rimmed": {"_count": 2, "spectacles": {"_count": 1, "and": {"_count": 1}}, "glasses": {"_count": 1, "and": {"_count": 1}}}, "MetamorphMedals": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "tentaclelike": {"_count": 2, "warts": {"_count": 1, "all": {"_count": 1}}, "branches": {"_count": 1, "Hermione": {"_count": 1}}}, "undeceived": {"_count": 1, "Mrs": {"_count": 1, "Weasley": {"_count": 1}}}, "flair": {"_count": 3, "for": {"_count": 2, "business": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "Gnight": {"_count": 1, "Harry": {"_count": 1, "said": {"_count": 1}}}, "bathing": {"_count": 2, "the": {"_count": 1, "room": {"_count": 1}}, "costume": {"_count": 1, "": {"_count": 1}}}, "gunpowder": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "warehouse": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "purpleand": {"_count": 1, "orange": {"_count": 1, "sweet": {"_count": 1}}}, "Pastille": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "awakened": {"_count": 1, "by": {"_count": 1, "what": {"_count": 1}}}, "Shielding": {"_count": 1, "them": {"_count": 1, "with": {"_count": 1}}}, "Wuzzgoinon": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "manifest": {"_count": 1, "themselves": {"_count": 1, "at": {"_count": 1}}}, "plonking": {"_count": 1, "herself": {"_count": 1, "down": {"_count": 1}}}, "Starting": {"_count": 1, "to": {"_count": 1, "feel": {"_count": 1}}}, "airless": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "willowy": {"_count": 1, "with": {"_count": 1, "long": {"_count": 1}}}, "emanate": {"_count": 2, "a": {"_count": 1, "faint": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "throaty": {"_count": 2, "voice": {"_count": 1, "": {"_count": 1}}, "tones": {"_count": 1, "": {"_count": 1}}}, "Eet": {"_count": 2, "as": {"_count": 1, "been": {"_count": 1}}, "was": {"_count": 1, "no": {"_count": 1}}}, "seester": {"_count": 1, "Gabrielle": {"_count": 1, "": {"_count": 1}}}, "Ariy": {"_count": 2, "Potter": {"_count": 1, "": {"_count": 1}}, "said": {"_count": 1, "Fleur": {"_count": 1}}}, "ard": {"_count": 2, "and": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "tchah": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "eloping": {"_count": 1, "left": {"_count": 1, "right": {"_count": 1}}}, "Including": {"_count": 1, "you": {"_count": 1, "and": {"_count": 1}}}, "downto": {"_count": 1, "earth": {"_count": 1, "sort": {"_count": 1}}}, "downtoearth": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "CurseBreaker": {"_count": 1, "isnt": {"_count": 1, "he": {"_count": 1}}}, "glamour": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}}, "Phlegm": {"_count": 8, "": {"_count": 3, ".": {"_count": 1}, "!": {"_count": 1}, "?": {"_count": 1}}, "said": {"_count": 1, "Ginny": {"_count": 1}}, "says": {"_count": 1, "\u2018Arry": {"_count": 1}}, "I": {"_count": 1, "mean": {"_count": 1}}, "around": {"_count": 1, "": {"_count": 1}}, "hoping": {"_count": 1, "shell": {"_count": 1}}}, "punchdrunk": {"_count": 2, "he": {"_count": 1, "was": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}}, "experimentally": {"_count": 1, "like": {"_count": 1, "a": {"_count": 1}}}, "okaylooking": {"_count": 1, "when": {"_count": 1, "she": {"_count": 1}}}, "\u2018Arry": {"_count": 1, "do": {"_count": 1, "you": {"_count": 1}}}, "survivors": {"_count": 5, "guilt": {"_count": 1, "said": {"_count": 1}}, "stood": {"_count": 1, "in": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "took": {"_count": 1, "up": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "Metamorphosing": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "ballerina": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Georgeve": {"_count": 1, "left": {"_count": 1, "it": {"_count": 1}}}, "raking": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "tangled": {"_count": 1}}}, "antijinxes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "obstruction": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "bracing": {"_count": 3, "words": {"_count": 1, "of": {"_count": 1}}, "himself": {"_count": 1, "already": {"_count": 1}}, "herself": {"_count": 1, "and": {"_count": 1}}}, "evasive": {"_count": 1, "enchantments": {"_count": 1, "generally": {"_count": 1}}}, "lessen": {"_count": 1, "her": {"_count": 1, "resemblance": {"_count": 1}}}, "panda": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Helpmate": {"_count": 1, "open": {"_count": 1, "at": {"_count": 1}}}, "Bruises": {"_count": 1, "Cuts": {"_count": 1, "and": {"_count": 1}}}, "Cuts": {"_count": 1, "and": {"_count": 1, "Abrasions": {"_count": 1}}}, "Abrasions": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mistranslation": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "complacently": {"_count": 1, "we": {"_count": 1, "ad": {"_count": 1}}}, "eet": {"_count": 5, "was": {"_count": 1, "better": {"_count": 1}}, "over": {"_count": 1, "": {"_count": 1}}, "ees": {"_count": 1, "lucky": {"_count": 1}}, "does": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "tawnies": {"_count": 1, "each": {"_count": 1, "of": {"_count": 1}}}, "RESULTS": {"_count": 1, "Pass": {"_count": 1, "Grades": {"_count": 1}}}, "Grades": {"_count": 2, "Fail": {"_count": 1, "Grades": {"_count": 1}}, "Outstanding": {"_count": 1, "O": {"_count": 1}}}, "Exceeds": {"_count": 1, "Expectations": {"_count": 1, "E": {"_count": 1}}}, "ArtsO": {"_count": 1, "Divination": {"_count": 1, "P": {"_count": 1}}}, "Outstandings": {"_count": 1, "there": {"_count": 1, "": {"_count": 1}}}, "\u2018Outstandings": {"_count": 1, "and": {"_count": 1, "one": {"_count": 1}}}, "halfamused": {"_count": 1, "halfexasperated": {"_count": 1, "": {"_count": 1}}}, "DRACOS": {"_count": 1, "DETOUR": {"_count": 1, "Harry": {"_count": 1}}}, "DETOUR": {"_count": 1, "Harry": {"_count": 1, "remained": {"_count": 1}}}, "Burrows": {"_count": 5, "garden": {"_count": 1, "over": {"_count": 1}}, "kitchen": {"_count": 2, "sink": {"_count": 1}, "to": {"_count": 1}}, "boundaries": {"_count": 1, "": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}}, "twoaside": {"_count": 2, "Quidditch": {"_count": 2, "in": {"_count": 1}, "with": {"_count": 1}}}, "triple": {"_count": 3, "helpings": {"_count": 1, "of": {"_count": 1}}, "murder": {"_count": 1, "by": {"_count": 1}}, "spell": {"_count": 1, "flew": {"_count": 1}}}, "tidings": {"_count": 1, "brought": {"_count": 1, "to": {"_count": 1}}}, "liberally": {"_count": 1, "with": {"_count": 1, "gray": {"_count": 1}}}, "deserting": {"_count": 1, "the": {"_count": 1, "Death": {"_count": 1}}}, "diff": {"_count": 1, "Did": {"_count": 1, "you": {"_count": 1}}}, "plied": {"_count": 1, "with": {"_count": 1, "wine": {"_count": 1}}}, "icecream": {"_count": 1, "place": {"_count": 1, "in": {"_count": 1}}}, "Dragged": {"_count": 1, "off": {"_count": 1, "by": {"_count": 1}}}, "voluntarily": {"_count": 1, "or": {"_count": 1, "was": {"_count": 1}}}, "kidnapped": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "held": {"_count": 1}}, "Luna": {"_count": 1, "because": {"_count": 1}}, "Ollivander": {"_count": 1, "however": {"_count": 1}}}, "makers": {"_count": 1, "said": {"_count": 1, "Lupin": {"_count": 1}}}, "status": {"_count": 4, "with": {"_count": 1, "prefects": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "of": {"_count": 1, "pureblood": {"_count": 1}}}, "securitys": {"_count": 2, "a": {"_count": 2, "laughing": {"_count": 1}, "million": {"_count": 1}}}, "wanna": {"_count": 4, "come": {"_count": 1, "I": {"_count": 1}}, "do": {"_count": 1, "it": {"_count": 1}}, "help": {"_count": 1, "I": {"_count": 1}}, "kill": {"_count": 1, "Death": {"_count": 1}}}, "immature": {"_count": 1, "to": {"_count": 1, "come": {"_count": 1}}}, "flippant": {"_count": 1, "about": {"_count": 1, "Voldemort": {"_count": 1}}}, "Arkie": {"_count": 2, "Philpott": {"_count": 1, "had": {"_count": 1}}, "Alderton": {"_count": 1, "hes": {"_count": 1}}}, "Philpott": {"_count": 1, "had": {"_count": 1, "a": {"_count": 1}}}, "Probity": {"_count": 2, "Probe": {"_count": 1, "stuck": {"_count": 1}}, "Probes": {"_count": 1, "sighed": {"_count": 1}}}, "Probe": {"_count": 3, "stuck": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "thumped": {"_count": 2, "him": {"_count": 1, "on": {"_count": 1}}, "the": {"_count": 1, "table": {"_count": 1}}}, "twoseater": {"_count": 1, "sofa": {"_count": 1, "": {"_count": 1}}}, "battalion": {"_count": 1, "of": {"_count": 1, "Aurors": {"_count": 1}}}, "Witherwings": {"_count": 3, "I": {"_count": 1, "mean": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "\u2018security": {"_count": 1, "meant": {"_count": 1, "you": {"_count": 1}}}, "innit": {"_count": 5, "": {"_count": 5, "?": {"_count": 4}, ".": {"_count": 1}}}, "blownup": {"_count": 1, "versions": {"_count": 1, "of": {"_count": 1}}}, "versions": {"_count": 4, "of": {"_count": 3, "the": {"_count": 1}, "carols": {"_count": 1}, "himself": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "awning": {"_count": 1, "had": {"_count": 1, "a": {"_count": 1}}}, "AMULETS": {"_count": 1, "Effective": {"_count": 1, "Against": {"_count": 1}}}, "Effective": {"_count": 1, "Against": {"_count": 1, "Werewolves": {"_count": 1}}}, "seedylooking": {"_count": 1, "little": {"_count": 1, "wizard": {"_count": 1}}}, "madam": {"_count": 6, "": {"_count": 1, "?": {"_count": 1}}, "squeaked": {"_count": 2, "Hokey": {"_count": 1}, "the": {"_count": 1}}, "who": {"_count": 1, "must": {"_count": 1}}, "said": {"_count": 2, "the": {"_count": 2}}}, "Protect": {"_count": 1, "her": {"_count": 1, "pretty": {"_count": 1}}}, "amulet": {"_count": 1, "seller": {"_count": 1, "": {"_count": 1}}}, "seller": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "arresting": {"_count": 1, "anyone": {"_count": 1, "now": {"_count": 1}}}, "harried": {"_count": 2, "anxious": {"_count": 1, "look": {"_count": 1}}, "DUMBLEDORE": {"_count": 1, "THE": {"_count": 1}}}, "blacked": {"_count": 1, "your": {"_count": 1, "eye": {"_count": 1}}}, "pallor": {"_count": 3, "still": {"_count": 1, "resembled": {"_count": 1}}, "and": {"_count": 1, "by": {"_count": 1}}, "of": {"_count": 1, "him": {"_count": 1}}}, "pals": {"_count": 4, "to": {"_count": 1, "do": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "last": {"_count": 1, "year": {"_count": 1}}, "with": {"_count": 1, "Grindelwald": {"_count": 1}}}, "mockingly": {"_count": 1, "all": {"_count": 1, "around": {"_count": 1}}}, "dithered": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "Twilfitt": {"_count": 1, "and": {"_count": 1, "Tattings": {"_count": 1}}}, "Tattings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "reallyl": {"_count": 1, "said": {"_count": 1, "Madam": {"_count": 1}}}, "fitting": {"_count": 3, "of": {"_count": 1, "Rons": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "this": {"_count": 1}}}, "evrything": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "disabuse": {"_count": 1, "Hagrid": {"_count": 1, "of": {"_count": 1}}}, "notion": {"_count": 3, "Mr": {"_count": 1, "and": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "ninetyfour": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "postermuffled": {"_count": 1, "shop": {"_count": 1, "fronts": {"_count": 1}}}, "Casual": {"_count": 1, "passersby": {"_count": 1, "were": {"_count": 1}}}, "WORRYING": {"_count": 2, "ABOUT": {"_count": 2, "YOUKNOWWHO": {"_count": 1}, "UNOPOO": {"_count": 1}}}, "YOUKNOWWHO": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "then": {"_count": 1, "": {"_count": 1}}}, "UNOPOO": {"_count": 1, "THE": {"_count": 1, "CONSTIPATION": {"_count": 1}}}, "CONSTIPATION": {"_count": 1, "SENSATION": {"_count": 1, "THATS": {"_count": 1}}}, "SENSATION": {"_count": 1, "THATS": {"_count": 1, "GRIPPING": {"_count": 1}}}, "GRIPPING": {"_count": 1, "THE": {"_count": 1, "NATION": {"_count": 1}}}, "NATION": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "UNoPoo": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "cheapest": {"_count": 1, "merely": {"_count": 1, "turning": {"_count": 1}}}, "briefs": {"_count": 1, "when": {"_count": 1, "waved": {"_count": 1}}}, "user": {"_count": 1, "around": {"_count": 1, "the": {"_count": 1}}}, "Inking": {"_count": 1, "SpellChecking": {"_count": 1, "and": {"_count": 1}}}, "SpellChecking": {"_count": 1, "and": {"_count": 1, "SmartAnswer": {"_count": 1}}}, "SmartAnswer": {"_count": 1, "varieties": {"_count": 1, "": {"_count": 1}}}, "tenyearolds": {"_count": 1, "was": {"_count": 1, "watching": {"_count": 1}}}, "ascending": {"_count": 1, "the": {"_count": 1, "steps": {"_count": 1}}}, "REUSABLE": {"_count": 1, "HANGMAN": {"_count": 1, "SPELL": {"_count": 1}}}, "HANGMAN": {"_count": 1, "SPELL": {"_count": 1, "IT": {"_count": 1}}}, "HELL": {"_count": 1, "SWING": {"_count": 1, "": {"_count": 1}}}, "SWING": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "\u2018Patented": {"_count": 1, "Daydream": {"_count": 1, "Charms": {"_count": 1}}}, "Daydream": {"_count": 2, "Charms": {"_count": 2, "": {"_count": 2}}}, "pirate": {"_count": 1, "ship": {"_count": 1, "": {"_count": 1}}}, "\u2018One": {"_count": 2, "simple": {"_count": 1, "incantation": {"_count": 1}}, "of": {"_count": 1, "my": {"_count": 1}}}, "thirtyminute": {"_count": 1, "daydream": {"_count": 1, "easy": {"_count": 1}}}, "daydream": {"_count": 1, "easy": {"_count": 1, "to": {"_count": 1}}}, "undersixteens": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bruisell": {"_count": 1, "be": {"_count": 1, "gone": {"_count": 1}}}, "remover": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "earner": {"_count": 1, "but": {"_count": 1, "we": {"_count": 1}}}, "novelties": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "GalleonsV": {"_count": 1, "he": {"_count": 1, "added": {"_count": 1}}}, "EDIBLE": {"_count": 1, "DARK": {"_count": 1, "MARKS": {"_count": 1}}}, "MARKS": {"_count": 1, "THEYLL": {"_count": 1, "MAKE": {"_count": 1}}}, "THEYLL": {"_count": 1, "MAKE": {"_count": 1, "ANYONE": {"_count": 1}}}, "Gloves": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "moderate": {"_count": 1, "hexes": {"_count": 1, "or": {"_count": 1}}}, "spinner": {"_count": 1, "continued": {"_count": 1, "George": {"_count": 1}}}, "Handy": {"_count": 2, "if": {"_count": 1, "you": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Decoy": {"_count": 7, "Detonators": {"_count": 4, "are": {"_count": 1}, "": {"_count": 2}, "but": {"_count": 1}}, "Detonator": {"_count": 3, "on": {"_count": 1}, "": {"_count": 1}, "which": {"_count": 1}}}, "Detonators": {"_count": 4, "are": {"_count": 1, "just": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "but": {"_count": 1, "perhaps": {"_count": 1}}}, "weirdlooking": {"_count": 1, "black": {"_count": 1, "horntype": {"_count": 1}}}, "horntype": {"_count": 1, "objects": {"_count": 1, "that": {"_count": 1}}}, "scurry": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "Verity": {"_count": 1, "Im": {"_count": 1, "coming": {"_count": 1}}}, "startup": {"_count": 1, "loan": {"_count": 1, "we": {"_count": 1}}}, "loan": {"_count": 1, "we": {"_count": 1, "havent": {"_count": 1}}}, "Patented": {"_count": 1, "Daydream": {"_count": 1, "Charms": {"_count": 1}}}, "WonderWitch": {"_count": 1, "products": {"_count": 1, "yet": {"_count": 1}}}, "attractiveness": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Guaranteed": {"_count": 1, "tensecond": {"_count": 1, "pimple": {"_count": 1}}}, "tensecond": {"_count": 1, "pimple": {"_count": 1, "vanisher": {"_count": 1}}}, "pimple": {"_count": 1, "vanisher": {"_count": 1, "said": {"_count": 1}}}, "vanisher": {"_count": 1, "said": {"_count": 1, "Fred": {"_count": 1}}}, "blackheads": {"_count": 1, "but": {"_count": 1, "dont": {"_count": 1}}}, "shades": {"_count": 1, "of": {"_count": 1, "pink": {"_count": 1}}}, "Pygmy": {"_count": 9, "Puffs": {"_count": 4, "said": {"_count": 1}, "crowd": {"_count": 1}, "and": {"_count": 1}, "": {"_count": 1}}, "Puff": {"_count": 5, "": {"_count": 1}, "Arnold": {"_count": 1}, "for": {"_count": 1}, "riding": {"_count": 1}, "but": {"_count": 1}}}, "Puffs": {"_count": 4, "said": {"_count": 1, "George": {"_count": 1}}, "crowd": {"_count": 1, "around": {"_count": 1}}, "and": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Miniature": {"_count": 1, "puffskeins": {"_count": 1, "we": {"_count": 1}}}, "conceded": {"_count": 2, "Fred": {"_count": 1, "": {"_count": 1}}, "George": {"_count": 1, "": {"_count": 1}}}, "boyfriends": {"_count": 2, "a": {"_count": 1, "bit": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}}, "Weasleyish": {"_count": 1, "glare": {"_count": 1, "on": {"_count": 1}}}, "Puff": {"_count": 5, "": {"_count": 1, "?": {"_count": 1}}, "Arnold": {"_count": 1, "in": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "riding": {"_count": 1, "on": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}}, "unimpeded": {"_count": 1, "view": {"_count": 1, "out": {"_count": 1}}}, "feetll": {"_count": 1, "be": {"_count": 1, "seen": {"_count": 1}}}, "nowadays": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "oilyhaired": {"_count": 1, "stooping": {"_count": 1, "man": {"_count": 1}}}, "retribution": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "if": {"_count": 1, "they": {"_count": 1}}, "to": {"_count": 1, "potential": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "Fenrir": {"_count": 16, "Greyback": {"_count": 8, "": {"_count": 4}, "is": {"_count": 1}, "said": {"_count": 1}, "was": {"_count": 1}, "Aberforth": {"_count": 1}}, "Grey": {"_count": 2, "back": {"_count": 2}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "he": {"_count": 1, "did": {"_count": 1}}, "moving": {"_count": 1, "toward": {"_count": 1}}, "collapse": {"_count": 1, "against": {"_count": 1}}, "skulking": {"_count": 1, "chewing": {"_count": 1}}}, "includes": {"_count": 1, "my": {"_count": 1, "mother": {"_count": 1}}}, "\u2018that": {"_count": 1, "one": {"_count": 1, "": {"_count": 1}}}, "Humming": {"_count": 1, "cheerily": {"_count": 1, "Hermione": {"_count": 1}}}, "Sixteen": {"_count": 3, "Galleons": {"_count": 1, "": {"_count": 1}}, "years": {"_count": 2, "old": {"_count": 1}, "of": {"_count": 1}}}, "lame": {"_count": 1, "story": {"_count": 1, "in": {"_count": 1}}}, "Worth": {"_count": 1, "a": {"_count": 1, "try": {"_count": 1}}}, "bickered": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "SLUG": {"_count": 1, "CLUB": {"_count": 1, "Harry": {"_count": 1}}}, "Translation": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "shriveledup": {"_count": 1, "arm": {"_count": 1, "Malfoy": {"_count": 1}}}, "Borgins": {"_count": 2, "got": {"_count": 1, "another": {"_count": 1}}, "progress": {"_count": 1, "": {"_count": 1}}}, "branded": {"_count": 6, "with": {"_count": 3, "the": {"_count": 3}}, "on": {"_count": 2, "the": {"_count": 1}, "her": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}}, "Annoyed": {"_count": 2, "but": {"_count": 1, "absolutely": {"_count": 1}}, "Harry": {"_count": 1, "uncorked": {"_count": 1}}}, "selfpeeling": {"_count": 1, "sprouts": {"_count": 1, "looking": {"_count": 1}}}, "bridesmaids": {"_count": 2, "Ginny": {"_count": 1, "and": {"_count": 1}}, "shoes": {"_count": 1, "Charmanti": {"_count": 1}}}, "togezzer": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "theenking": {"_count": 1, "of": {"_count": 1, "dressing": {"_count": 1}}}, "zem": {"_count": 2, "in": {"_count": 1, "pale": {"_count": 1}}, "knowing": {"_count": 1, "ze": {"_count": 1}}}, "orrible": {"_count": 3, "with": {"_count": 1, "Ginnys": {"_count": 1}}, "Shall": {"_count": 1, "we": {"_count": 1}}, "said": {"_count": 1, "Fleur": {"_count": 1}}}, "monologue": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "erself": {"_count": 1, "go": {"_count": 1, "zat": {"_count": 1}}}, "mused": {"_count": 1, "examining": {"_count": 1, "her": {"_count": 1}}}, "Au": {"_count": 1, "revoir": {"_count": 1, "Ariy": {"_count": 1}}}, "revoir": {"_count": 2, "Ariy": {"_count": 1, "said": {"_count": 1}}, "Mr": {"_count": 1, "Ollivander": {"_count": 1}}}, "redfaced": {"_count": 3, "and": {"_count": 3, "dirt": {"_count": 1}, "whose": {"_count": 1}, "furious": {"_count": 1}}}, "Station": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "had": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "efficiency": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "spur": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "investigations": {"_count": 3, "and": {"_count": 1, "secondly": {"_count": 1}}, "into": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "secondly": {"_count": 2, "because": {"_count": 1, "he": {"_count": 1}}, "Harry": {"_count": 1, "found": {"_count": 1}}}, "whim": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "on": {"_count": 1, "which": {"_count": 1}}}, "disregarding": {"_count": 3, "Mr": {"_count": 1, "Weasleys": {"_count": 1}}, "a": {"_count": 1, "strong": {"_count": 1}}, "Harrys": {"_count": 1, "drawn": {"_count": 1}}}, "investigating": {"_count": 3, "": {"_count": 1, "?": {"_count": 1}}, "the": {"_count": 1, "source": {"_count": 1}}, "headed": {"_count": 1, "the": {"_count": 1}}}, "humoring": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "cloistered": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "shamelessly": {"_count": 2, "as": {"_count": 1, "he": {"_count": 1}}, "cheery": {"_count": 1, "": {"_count": 1}}}, "Spectrespecs": {"_count": 4, "inside": {"_count": 1, "": {"_count": 1}}, "which": {"_count": 1, "gave": {"_count": 1}}, "farther": {"_count": 1, "up": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "circulations": {"_count": 1, "well": {"_count": 1, "up": {"_count": 1}}}, "hordes": {"_count": 1, "of": {"_count": 1, "silently": {"_count": 1}}}, "Cherry": {"_count": 1, "and": {"_count": 1, "unicorn": {"_count": 1}}}, "oi": {"_count": 1, "come": {"_count": 1, "back": {"_count": 1}}}, "detaching": {"_count": 1, "a": {"_count": 1, "pair": {"_count": 1}}}, "psychedelic": {"_count": 1, "spectacles": {"_count": 1, "from": {"_count": 1}}}, "boldlooking": {"_count": 1, "girl": {"_count": 1, "with": {"_count": 1}}}, "Romilda": {"_count": 18, "Romilda": {"_count": 1, "Vane": {"_count": 1}}, "Vane": {"_count": 13, "she": {"_count": 1}, "was": {"_count": 1}, "who": {"_count": 1}, "again": {"_count": 1}, "trying": {"_count": 1}, "looked": {"_count": 1}, "": {"_count": 3}, "the": {"_count": 1}, "said": {"_count": 1}, "looking": {"_count": 1}, "does": {"_count": 1}}, "thrusting": {"_count": 1, "a": {"_count": 1}}, "gave": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}}, "Vane": {"_count": 13, "she": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "amongst": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}, "looked": {"_count": 1, "like": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "the": {"_count": 1, "moment": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "looking": {"_count": 1, "as": {"_count": 1}}, "does": {"_count": 1, "is": {"_count": 1}}}, "demented": {"_count": 3, "multicolored": {"_count": 1, "owl": {"_count": 1}}, "inhuman": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "resignedlooking": {"_count": 1, "Trevor": {"_count": 1, "in": {"_count": 1}}}, "\u2018That": {"_count": 2, "Harry": {"_count": 1, "Potters": {"_count": 1}}, "very": {"_count": 1, "night": {"_count": 1}}}, "backbone": {"_count": 1, "than": {"_count": 1, "the": {"_count": 1}}}, "blighted": {"_count": 1, "by": {"_count": 1, "Voldemort": {"_count": 1}}}, "referred": {"_count": 2, "to": {"_count": 2, "either": {"_count": 1}, "this": {"_count": 1}}}, "scarless": {"_count": 1, "Harry": {"_count": 1, "who": {"_count": 1}}}, "Wrackspurt": {"_count": 5, "got": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "siphons": {"_count": 2, "to": {"_count": 1}, "But": {"_count": 1}}}, "stretches": {"_count": 2, "of": {"_count": 2, "the": {"_count": 1}, "numbness": {"_count": 1}}}, "expound": {"_count": 2, "on": {"_count": 1, "his": {"_count": 1}}, "upon": {"_count": 1, "his": {"_count": 1}}}, "PPotter": {"_count": 2, "she": {"_count": 1, "faltered": {"_count": 1}}, "bboy": {"_count": 1, "and": {"_count": 1}}}, "Perplexed": {"_count": 3, "Harry": {"_count": 2, "and": {"_count": 1}, "looked": {"_count": 1}}, "Ron": {"_count": 1, "followed": {"_count": 1}}}, "hunch": {"_count": 2, "was": {"_count": 1, "correct": {"_count": 1}}, "shouldered": {"_count": 1, "muttering": {"_count": 1}}}, "makeup": {"_count": 1, "that": {"_count": 1, "did": {"_count": 1}}}, "invitees": {"_count": 1, "although": {"_count": 1, "judging": {"_count": 1}}}, "mboy": {"_count": 8, "": {"_count": 4, "!": {"_count": 3}, "?": {"_count": 1}}, "Im": {"_count": 1, "determined": {"_count": 1}}, "ask": {"_count": 2, "away": {"_count": 2}}, "dont": {"_count": 1, "mention": {"_count": 1}}}, "cheekbones": {"_count": 3, "and": {"_count": 2, "long": {"_count": 1}, "straight": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "seventhyear": {"_count": 1, "boys": {"_count": 1, "Harry": {"_count": 1}}}, "principle": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "see": {"_count": 1, "so": {"_count": 1}}}, "Cormac": {"_count": 13, "McLaggen": {"_count": 8, "perhaps": {"_count": 1}, "Keeper": {"_count": 1}, "saved": {"_count": 1}, "entering": {"_count": 1}, "you": {"_count": 1}, "nonstop": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}, "said": {"_count": 1, "Slughorn": {"_count": 1}}, "at": {"_count": 1, "eight": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "hasnt": {"_count": 1, "asked": {"_count": 1}}}, "McLaggen": {"_count": 65, "perhaps": {"_count": 1, "youve": {"_count": 1}}, "a": {"_count": 1, "large": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 8, "Zabini": {"_count": 2}, "thinking": {"_count": 1}, "all": {"_count": 1}, "she": {"_count": 1}, "Lavender": {"_count": 1}, "kill": {"_count": 1}, "the": {"_count": 1}}, "you": {"_count": 2, "must": {"_count": 1}, "mean": {"_count": 1}}, "from": {"_count": 1, "Gryffindor": {"_count": 1}}, "Keeper": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "something": {"_count": 1}}, "expected": {"_count": 1, "preferential": {"_count": 1}}, "saved": {"_count": 1, "four": {"_count": 1}}, "returned": {"_count": 1, "to": {"_count": 1}}, "to": {"_count": 1, "tell": {"_count": 1}}, "menacingly": {"_count": 1, "": {"_count": 1}}, "took": {"_count": 2, "a": {"_count": 2}}, "might": {"_count": 1, "punch": {"_count": 1}}, "anyway": {"_count": 1, "said": {"_count": 1}}, "entering": {"_count": 1, "the": {"_count": 1}}, "looks": {"_count": 1, "like": {"_count": 1}}, "coming": {"_count": 2, "and": {"_count": 1}, "for": {"_count": 1}}, "because": {"_count": 1, "hes": {"_count": 1}}, "then": {"_count": 1, "Slughorn": {"_count": 1}}, "makes": {"_count": 1, "Grawp": {"_count": 1}}, "Theres": {"_count": 1, "a": {"_count": 1}}, "nonstop": {"_count": 1, "ever": {"_count": 1}}, "forcing": {"_count": 1, "his": {"_count": 1}}, "disregarding": {"_count": 1, "Harrys": {"_count": 1}}, "was": {"_count": 1, "talking": {"_count": 1}}, "had": {"_count": 4, "certainly": {"_count": 1}, "marched": {"_count": 1}, "been": {"_count": 1}, "messed": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "kept": {"_count": 1, "up": {"_count": 1}}, "as": {"_count": 1, "much": {"_count": 1}}, "could": {"_count": 1, "follow": {"_count": 1}}, "shaping": {"_count": 1, "up": {"_count": 1}}, "said": {"_count": 1, "bracingly": {"_count": 1}}, "shut": {"_count": 1, "up": {"_count": 1}}, "will": {"_count": 1, "you": {"_count": 1}}, "shouted": {"_count": 1, "back": {"_count": 1}}, "for": {"_count": 1, "reasons": {"_count": 1}}, "just": {"_count": 1, "as": {"_count": 1}}, "You": {"_count": 1, "dont": {"_count": 1}}, "hitting": {"_count": 1, "that": {"_count": 1}}, "next": {"_count": 1, "time": {"_count": 1}}, "so": {"_count": 1, "glad": {"_count": 1}}, "before": {"_count": 1, "being": {"_count": 1}}}, "wiryhaired": {"_count": 2, "youth": {"_count": 1, "raised": {"_count": 1}}, "boy": {"_count": 1, "Harry": {"_count": 1}}}, "Belby": {"_count": 12, "I": {"_count": 1, "dont": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 1}, "seemed": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "started": {"_count": 1, "and": {"_count": 1}}, "had": {"_count": 1, "just": {"_count": 1}}, "whose": {"_count": 1, "airway": {"_count": 1}}, "his": {"_count": 1, "eyes": {"_count": 1}}, "was": {"_count": 1, "missed": {"_count": 1}}, "McLaggen": {"_count": 1, "and": {"_count": 1}}, "from": {"_count": 1, "Ravenclaw": {"_count": 1}}}, "cozily": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "closeted": {"_count": 1, "in": {"_count": 1}}}, "licorice": {"_count": 2, "wands": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "digestive": {"_count": 1, "system": {"_count": 1, "isnt": {"_count": 1}}}, "Pheasant": {"_count": 1, "Belby": {"_count": 1, "": {"_count": 1}}}, "pheasant": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}, "until": {"_count": 1, "he": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}}, "Damocles": {"_count": 1, "Slughorn": {"_count": 1, "told": {"_count": 1}}}, "Anapneo": {"_count": 1, "said": {"_count": 1, "Slughorn": {"_count": 1}}}, "airway": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "nogtails": {"_count": 2, "in": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "influential": {"_count": 2, "everyone": {"_count": 1, "except": {"_count": 1}}, "a": {"_count": 1, "role": {"_count": 1}}}, "famously": {"_count": 3, "beautiful": {"_count": 1, "witch": {"_count": 1}}, "ferocious": {"_count": 1, "quillportraits": {"_count": 1}}, "interviewed": {"_count": 1, "last": {"_count": 1}}}, "husbands": {"_count": 2, "dying": {"_count": 1, "mysteriously": {"_count": 1}}, "crime": {"_count": 1, "she": {"_count": 1}}}, "reserving": {"_count": 1, "judgment": {"_count": 1, "on": {"_count": 1}}}, "massively": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "compere": {"_count": 1, "introducing": {"_count": 1, "his": {"_count": 1}}}, "introducing": {"_count": 1, "his": {"_count": 1, "star": {"_count": 1}}}, "succulent": {"_count": 1, "piece": {"_count": 1, "of": {"_count": 1}}}, "inaccuracies": {"_count": 1, "make": {"_count": 1, "mistakes": {"_count": 1}}}, "geranium": {"_count": 1, "pink": {"_count": 1, "as": {"_count": 1}}}, "staunchly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Chosen": {"_count": 1, "One": {"_count": 1, "rubbish": {"_count": 1}}}, "clamlike": {"_count": 1, "before": {"_count": 1, "his": {"_count": 1}}}, "exaggerates": {"_count": 1, "of": {"_count": 1, "course": {"_count": 1}}}, "meandered": {"_count": 2, "off": {"_count": 1, "into": {"_count": 1}}, "around": {"_count": 1, "the": {"_count": 1}}}, "anecdotes": {"_count": 1, "about": {"_count": 1, "illustrious": {"_count": 1}}}, "illustrious": {"_count": 1, "wizards": {"_count": 1, "Slughorn": {"_count": 1}}}, "wildness": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "ensuing": {"_count": 1, "ruckus": {"_count": 1, "Harry": {"_count": 1}}}, "Zabinis": {"_count": 1, "temporarily": {"_count": 1, "empty": {"_count": 1}}}, "trainer": {"_count": 2, "as": {"_count": 1, "it": {"_count": 1}}, "allowing": {"_count": 1, "most": {"_count": 1}}}, "wellconnected": {"_count": 2, "people": {"_count": 1, "said": {"_count": 1}}, "but": {"_count": 1, "he": {"_count": 1}}}, "humorless": {"_count": 3, "laugh": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "and": {"_count": 1, "insane": {"_count": 1}}}, "hasbeen": {"_count": 1, "likes": {"_count": 1, "me": {"_count": 1}}}, "grooming": {"_count": 1, "Malfoy": {"_count": 1, "at": {"_count": 1}}}, "Crouched": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "mar": {"_count": 2, "his": {"_count": 2, "haughty": {"_count": 1}, "buoyant": {"_count": 1}}}, "inspiring": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "relishing": {"_count": 2, "the": {"_count": 2, "effect": {"_count": 1}, "manual": {"_count": 1}}}, "disarrange": {"_count": 1, "the": {"_count": 1, "cloak": {"_count": 1}}}, "blinds": {"_count": 2, "so": {"_count": 1, "that": {"_count": 1}}, "were": {"_count": 1, "drawn": {"_count": 1}}}, "floorshaking": {"_count": 1, "crash": {"_count": 1, "at": {"_count": 1}}}, "absurdly": {"_count": 4, "into": {"_count": 1, "the": {"_count": 1}}, "spreadeagled": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 1, "middance": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "SNAPE": {"_count": 3, "VICTORIOUS": {"_count": 1, "Harry": {"_count": 1}}, "CONFIRMED": {"_count": 1, "AS": {"_count": 1}}, "The": {"_count": 1, "moment": {"_count": 1}}}, "VICTORIOUS": {"_count": 1, "Harry": {"_count": 1, "could": {"_count": 1}}}, "dispiriting": {"_count": 1, "realization": {"_count": 1, "that": {"_count": 1}}}, "faroff": {"_count": 1, "hoot": {"_count": 1, "of": {"_count": 1}}}, "thestraldrawn": {"_count": 1, "carriages": {"_count": 1, "trundling": {"_count": 1}}}, "unfroze": {"_count": 1, "he": {"_count": 1, "was": {"_count": 1}}}, "miserablelooking": {"_count": 1, "as": {"_count": 1, "she": {"_count": 1}}}, "matron": {"_count": 3, "in": {"_count": 1, "whom": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Episkey": {"_count": 2, "said": {"_count": 1, "Tonks": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dawdle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Proudfoot": {"_count": 1, "Savage": {"_count": 1, "and": {"_count": 1}}}, "Savage": {"_count": 1, "and": {"_count": 1, "Dawlish": {"_count": 1}}}, "inquisitive": {"_count": 2, "to": {"_count": 2, "the": {"_count": 1}, "discover": {"_count": 1}}}, "consoling": {"_count": 2, "about": {"_count": 1, "Sirius": {"_count": 1}}, "hand": {"_count": 1, "but": {"_count": 1}}}, "boar": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "padlock": {"_count": 2, "but": {"_count": 1, "nothing": {"_count": 1}}, "once": {"_count": 1, "so": {"_count": 1}}}, "Antiintruder": {"_count": 1, "jinxes": {"_count": 1, "on": {"_count": 1}}}, "Securitys": {"_count": 1, "been": {"_count": 1, "tightened": {"_count": 1}}}, "hundredfold": {"_count": 2, "this": {"_count": 1, "summer": {"_count": 1}}, "in": {"_count": 1, "benefits": {"_count": 1}}}, "helpfulness": {"_count": 1, "I": {"_count": 1, "suppose": {"_count": 1}}}, "criticisms": {"_count": 2, "of": {"_count": 2, "his": {"_count": 1}, "Firenze": {"_count": 1}}}, "tardiness": {"_count": 1, "and": {"_count": 1, "rants": {"_count": 1}}}, "rants": {"_count": 1, "about": {"_count": 1, "how": {"_count": 1}}}, "timekeeping": {"_count": 1, "would": {"_count": 1, "improve": {"_count": 1}}}, "uplit": {"_count": 1, "hooked": {"_count": 1, "nose": {"_count": 1}}}, "detract": {"_count": 1, "from": {"_count": 1, "your": {"_count": 1}}}, "generating": {"_count": 1, "waves": {"_count": 1, "of": {"_count": 1}}}, "irrevocably": {"_count": 1, "beyond": {"_count": 1, "the": {"_count": 1}}}, "factor": {"_count": 1, "in": {"_count": 1, "Sirius": {"_count": 1}}}, "enabled": {"_count": 4, "him": {"_count": 2, "to": {"_count": 2}}, "Umbridge": {"_count": 1, "to": {"_count": 1}}, "me": {"_count": 1, "to": {"_count": 1}}}, "attire": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "negative": {"_count": 1, "figures": {"_count": 1, "this": {"_count": 1}}}, "oaken": {"_count": 2, "front": {"_count": 2, "doors": {"_count": 2}}}, "inconveniently": {"_count": 2, "was": {"_count": 1, "the": {"_count": 1}}, "sharp": {"_count": 1, "woman": {"_count": 1}}}, "Whereve": {"_count": 1, "you": {"_count": 1, "blimey": {"_count": 1}}}, "Tergeol": {"_count": 1, "and": {"_count": 1, "siphoned": {"_count": 1}}}, "siphoned": {"_count": 3, "off": {"_count": 2, "the": {"_count": 1}, "most": {"_count": 1}}, "away": {"_count": 1, "nor": {"_count": 1}}}, "Bumped": {"_count": 1, "into": {"_count": 1, "him": {"_count": 1}}}, "comport": {"_count": 1, "himself": {"_count": 1, "with": {"_count": 1}}}, "beaconlike": {"_count": 1, "eyes": {"_count": 1, "swiveled": {"_count": 1}}}, "miming": {"_count": 2, "the": {"_count": 1, "shattering": {"_count": 1}}, "something": {"_count": 1, "to": {"_count": 1}}}, "shattering": {"_count": 6, "of": {"_count": 2, "a": {"_count": 1}, "glass": {"_count": 1}}, "glass": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 2, "lamp": {"_count": 1}, "nearest": {"_count": 1}}, "crash": {"_count": 1, "": {"_count": 1}}}, "oneonone": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pester": {"_count": 1, "you": {"_count": 1, "for": {"_count": 1}}}, "nauseated": {"_count": 3, "expression": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "held": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "commentators": {"_count": 5, "who": {"_count": 1, "should": {"_count": 1}}, "started": {"_count": 1, "up": {"_count": 1}}, "podium": {"_count": 3, "": {"_count": 3}}}, "waistcoated": {"_count": 1, "belly": {"_count": 1, "casting": {"_count": 1}}}, "acknowledgment": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Seemingly": {"_count": 1, "oblivious": {"_count": 1, "to": {"_count": 1}}}, "imparted": {"_count": 2, "Dumbledore": {"_count": 1, "said": {"_count": 1}}, "in": {"_count": 1, "you": {"_count": 1}}}, "emphasize": {"_count": 3, "strongly": {"_count": 1, "enough": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}, "the": {"_count": 1, "opposite": {"_count": 1}}}, "fortifications": {"_count": 1, "have": {"_count": 1, "been": {"_count": 1}}}, "carelessness": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "prove": {"_count": 1, "how": {"_count": 1}}}, "implore": {"_count": 1, "you": {"_count": 1, "should": {"_count": 1}}}, "wellrested": {"_count": 1, "for": {"_count": 1, "your": {"_count": 1}}}, "Pip": {"_count": 1, "pip": {"_count": 1, "": {"_count": 1}}}, "pip": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "retell": {"_count": 1, "the": {"_count": 1, "story": {"_count": 1}}}, "nosestamping": {"_count": 1, "lagged": {"_count": 1, "behind": {"_count": 1}}}, "retie": {"_count": 1, "the": {"_count": 1, "lace": {"_count": 1}}}, "boasts": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pigheadedness": {"_count": 1, "however": {"_count": 1, "Ron": {"_count": 1}}}, "Los": {"_count": 1, "track": {"_count": 1, "o": {"_count": 1}}}, "vocabulary": {"_count": 1, "had": {"_count": 1, "comprised": {"_count": 1}}}, "trainin": {"_count": 1, "him": {"_count": 1, "up": {"_count": 1}}}, "Buck": {"_count": 2, "I": {"_count": 2, "mean": {"_count": 2}}}, "HALFBLOOD": {"_count": 1, "PRINCE": {"_count": 1, "Harry": {"_count": 1}}}, "PRINCE": {"_count": 3, "Harry": {"_count": 2, "and": {"_count": 1}, "felt": {"_count": 1}}, "CAPTAIN": {"_count": 1, "OF": {"_count": 1}}}, "Whole": {"_count": 1, "periods": {"_count": 1, "when": {"_count": 1}}}, "doss": {"_count": 1, "I": {"_count": 1, "reckon": {"_count": 1}}}, "disk": {"_count": 1, "clutched": {"_count": 1, "tightly": {"_count": 1}}}, "Frisbee": {"_count": 3, "ducked": {"_count": 1, "under": {"_count": 1}}, "from": {"_count": 1, "Hermione": {"_count": 1}}, "Hermione": {"_count": 1, "had": {"_count": 1}}}, "remonstration": {"_count": 1, "was": {"_count": 1, "drowned": {"_count": 1}}}, "distribution": {"_count": 1, "of": {"_count": 1, "class": {"_count": 1}}}, "firstperiod": {"_count": 1, "Ancient": {"_count": 1, "Runes": {"_count": 1}}}, "coursework": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "confusedly": {"_count": 2, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hopefuls": {"_count": 1, "have": {"_count": 1, "already": {"_count": 1}}}, "putupon": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "translations": {"_count": 1, "and": {"_count": 1, "Ive": {"_count": 1}}}, "Confronting": {"_count": 1, "the": {"_count": 1, "Faceless": {"_count": 1}}}, "Faceless": {"_count": 1, "back": {"_count": 1, "into": {"_count": 1}}}, "craned": {"_count": 3, "their": {"_count": 1, "necks": {"_count": 1}}, "around": {"_count": 2, "on": {"_count": 1}, "to": {"_count": 1}}}, "unfixed": {"_count": 2, "mutating": {"_count": 1, "indestructible": {"_count": 1}}, "indestructible": {"_count": 1, "stuff": {"_count": 1}}}, "mutating": {"_count": 2, "indestructible": {"_count": 1, "": {"_count": 1}}, "forming": {"_count": 1, "a": {"_count": 1}}}, "caress": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "inventive": {"_count": 1, "as": {"_count": 1, "the": {"_count": 1}}}, "representation": {"_count": 1, "of": {"_count": 1, "what": {"_count": 1}}}, "blankeyed": {"_count": 1, "slumped": {"_count": 1, "against": {"_count": 1}}}, "aggression": {"_count": 3, "of": {"_count": 1, "the": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "at": {"_count": 1, "all": {"_count": 1}}}, "Inferius": {"_count": 9, "a": {"_count": 1, "bloody": {"_count": 1}}, "been": {"_count": 1, "seen": {"_count": 1}}, "during": {"_count": 1, "an": {"_count": 1}}, "and": {"_count": 2, "a": {"_count": 2}}, "No": {"_count": 1, "there": {"_count": 1}}, "was": {"_count": 1, "nothing": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 1, "had": {"_count": 1}}}, "welladvised": {"_count": 1, "to": {"_count": 1, "assume": {"_count": 1}}}, "novices": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "nonverbal": {"_count": 9, "spells": {"_count": 5, "": {"_count": 1}, "forgotten": {"_count": 1}, "Potter": {"_count": 1}, "was": {"_count": 1}, "something": {"_count": 1}}, "spell": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "goodbye": {"_count": 1, "just": {"_count": 1}}, "incantations": {"_count": 1, "that": {"_count": 1}}}, "adversary": {"_count": 1, "has": {"_count": 1, "no": {"_count": 1}}}, "splitsecond": {"_count": 1, "advantage": {"_count": 1, "": {"_count": 1}}}, "essentials": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "packed": {"_count": 1, "for": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}}, "spellcasting": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ensued": {"_count": 1, "many": {"_count": 1, "people": {"_count": 1}}}, "Typically": {"_count": 1, "ten": {"_count": 1, "minutes": {"_count": 1}}}, "compressed": {"_count": 2, "to": {"_count": 1, "save": {"_count": 1}}, "almost": {"_count": 1, "past": {"_count": 1}}}, "offbalance": {"_count": 1, "and": {"_count": 1, "hit": {"_count": 1}}}, "quickthinking": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Whenre": {"_count": 1, "you": {"_count": 1, "holding": {"_count": 1}}}, "afterlunch": {"_count": 1, "free": {"_count": 1, "period": {"_count": 1}}}, "speeded": {"_count": 1, "up": {"_count": 1, "the": {"_count": 1}}}, "progressing": {"_count": 1, "to": {"_count": 1, "N": {"_count": 1}}}, "portentously": {"_count": 1, "holding": {"_count": 1, "out": {"_count": 1}}}, "lags": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "vapors": {"_count": 2, "and": {"_count": 1, "odd": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "goldcolored": {"_count": 1, "cauldron": {"_count": 1, "that": {"_count": 1}}}, "seductive": {"_count": 1, "scents": {"_count": 1, "Harry": {"_count": 1}}}, "scents": {"_count": 1, "Harry": {"_count": 1, "had": {"_count": 1}}}, "simultaneously": {"_count": 4, "of": {"_count": 1, "treacle": {"_count": 1}}, "cross": {"_count": 1, "and": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "terrified": {"_count": 1, "and": {"_count": 1}}}, "woody": {"_count": 1, "smell": {"_count": 1, "of": {"_count": 1}}}, "Scales": {"_count": 1, "out": {"_count": 1, "everyone": {"_count": 1}}}, "kits": {"_count": 1, "and": {"_count": 1, "dont": {"_count": 1}}}, "PotionMaking": {"_count": 23, "": {"_count": 5, ".": {"_count": 5}}, "by": {"_count": 1, "Libatius": {"_count": 1}}, "out": {"_count": 4, "of": {"_count": 4}}, "he": {"_count": 1, "had": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}, "fresh": {"_count": 1, "from": {"_count": 1}}, "hardly": {"_count": 1, "qualified": {"_count": 1}}, "flying": {"_count": 1, "in": {"_count": 1}}, "and": {"_count": 2, "continued": {"_count": 1}, "found": {"_count": 1}}, "off": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "getting": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "swam": {"_count": 1, "hazily": {"_count": 1}}, "is": {"_count": 1, "it": {"_count": 1}}, "that": {"_count": 1, "you": {"_count": 1}}}, "nors": {"_count": 1, "Ron": {"_count": 1, "we": {"_count": 1}}}, "Libatius": {"_count": 3, "Borage": {"_count": 1, "which": {"_count": 1}}, "Borages": {"_count": 2, "with": {"_count": 1}, "text": {"_count": 1}}}, "Borage": {"_count": 1, "which": {"_count": 1, "he": {"_count": 1}}}, "wellpracticed": {"_count": 1, "hand": {"_count": 1, "hit": {"_count": 1}}}, "odorless": {"_count": 1, "potion": {"_count": 1, "that": {"_count": 1}}}, "Featured": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "slowbubbling": {"_count": 1, "mudlike": {"_count": 1, "substance": {"_count": 1}}}, "mudlike": {"_count": 3, "substance": {"_count": 1, "in": {"_count": 1}}, "liquid": {"_count": 1, "": {"_count": 1}}, "potion": {"_count": 1, "against": {"_count": 1}}}, "resent": {"_count": 1, "Hermione": {"_count": 1, "getting": {"_count": 1}}}, "Amortentia": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "doesnt": {"_count": 1, "really": {"_count": 1}}}, "motherofpearl": {"_count": 1, "sheen": {"_count": 1, "": {"_count": 1}}}, "sheen": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "spirals": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "attracts": {"_count": 1, "us": {"_count": 1, "and": {"_count": 1}}}, "mown": {"_count": 2, "grass": {"_count": 1, "and": {"_count": 1}}, "lawn": {"_count": 1, "Ron": {"_count": 1}}}, "Hector": {"_count": 1, "DagworthGranger": {"_count": 1, "who": {"_count": 1}}}, "DagworthGranger": {"_count": 1, "who": {"_count": 1, "founded": {"_count": 1}}}, "Potioneers": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "wellearned": {"_count": 1, "points": {"_count": 1, "for": {"_count": 1}}}, "shhing": {"_count": 1, "gesture": {"_count": 1, "so": {"_count": 1}}}, "manufacture": {"_count": 1, "or": {"_count": 1, "imitate": {"_count": 1}}}, "imitate": {"_count": 4, "love": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "for": {"_count": 1}}, "Celestina": {"_count": 1, "singing": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "infatuation": {"_count": 2, "or": {"_count": 1, "obsession": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "obsessive": {"_count": 3, "love": {"_count": 1, "": {"_count": 1}}, "discussion": {"_count": 1, "about": {"_count": 1}}, "longing": {"_count": 1, "": {"_count": 1}}}, "Felix": {"_count": 32, "Felicis": {"_count": 26, "": {"_count": 10}, "does": {"_count": 1}, "said": {"_count": 2}, "is": {"_count": 1}, "as": {"_count": 1}, "now": {"_count": 1}, "to": {"_count": 1}, "or": {"_count": 1}, "I": {"_count": 1}, "knew": {"_count": 1}, "gave": {"_count": 1}, "leading": {"_count": 1}, "told": {"_count": 1}, "wearing": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}}, "here": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "have": {"_count": 1}}, "does": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "telling": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "potion": {"_count": 1, "I": {"_count": 1}}}, "Felicis": {"_count": 26, "": {"_count": 10, ".": {"_count": 8}, "!": {"_count": 1}, "?": {"_count": 1}}, "does": {"_count": 1, "Miss": {"_count": 1}}, "said": {"_count": 2, "Slughorn": {"_count": 2}}, "is": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "promised": {"_count": 1}}, "now": {"_count": 1, "safely": {"_count": 1}}, "to": {"_count": 1, "Rons": {"_count": 1}}, "or": {"_count": 1, "what": {"_count": 1}}, "I": {"_count": 1, "suppose": {"_count": 1}}, "knew": {"_count": 1, "that": {"_count": 1}}, "gave": {"_count": 1, "Harry": {"_count": 1}}, "leading": {"_count": 1, "him": {"_count": 1}}, "told": {"_count": 1, "Harry": {"_count": 1}}, "wearing": {"_count": 1, "off": {"_count": 1}}, "was": {"_count": 1, "becoming": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "undivided": {"_count": 1, "attention": {"_count": 1, "": {"_count": 1}}}, "Desperately": {"_count": 1, "tricky": {"_count": 1, "to": {"_count": 1}}}, "brewed": {"_count": 1, "correctly": {"_count": 1, "as": {"_count": 1}}}, "endeavors": {"_count": 1, "tend": {"_count": 1, "to": {"_count": 1}}}, "giddiness": {"_count": 1, "recklessness": {"_count": 1, "and": {"_count": 1}}}, "overconfidence": {"_count": 1, "said": {"_count": 1, "Slughorn": {"_count": 1}}}, "toxic": {"_count": 1, "in": {"_count": 1, "large": {"_count": 1}}}, "sparingly": {"_count": 1, "and": {"_count": 1, "very": {"_count": 1}}}, "tablespoonfuls": {"_count": 1, "taken": {"_count": 1, "with": {"_count": 1}}}, "playacting": {"_count": 1, "or": {"_count": 1, "not": {"_count": 1}}}, "gurgle": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "tenfold": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "competitions": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "elections": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "weights": {"_count": 1, "to": {"_count": 1, "their": {"_count": 1}}}, "tangible": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "riffling": {"_count": 1, "feverishly": {"_count": 1, "through": {"_count": 1}}}, "margins": {"_count": 4, "were": {"_count": 1, "as": {"_count": 1}}, "honestly": {"_count": 1, "Ginny": {"_count": 1}}, "which": {"_count": 1, "Harry": {"_count": 1}}, "stealing": {"_count": 1, "and": {"_count": 1}}}, "Bending": {"_count": 2, "low": {"_count": 2, "to": {"_count": 1}, "so": {"_count": 1}}}, "decipher": {"_count": 4, "the": {"_count": 3, "ingredients": {"_count": 1}, "directions": {"_count": 1}, "Princes": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "annotations": {"_count": 1, "and": {"_count": 1, "crossed": {"_count": 1}}}, "valerian": {"_count": 1, "roots": {"_count": 1, "as": {"_count": 1}}}, "disadvantage": {"_count": 1, "of": {"_count": 1, "Potions": {"_count": 1}}}, "bluish": {"_count": 3, "steam": {"_count": 1, "": {"_count": 1}}, "flecks": {"_count": 1, "were": {"_count": 1}}, "like": {"_count": 1, "that": {"_count": 1}}}, "currantcolored": {"_count": 1, "liquid": {"_count": 1, "mentioned": {"_count": 1}}}, "scribbles": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "sopophorous": {"_count": 2, "bean": {"_count": 2, "and": {"_count": 1}, "was": {"_count": 1}}}, "Crush": {"_count": 1, "with": {"_count": 1, "flat": {"_count": 1}}}, "releases": {"_count": 2, "juice": {"_count": 1, "better": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Abraxas": {"_count": 1, "Malfoy": {"_count": 1, "": {"_count": 1}}}, "preferential": {"_count": 2, "treatment": {"_count": 2, "of": {"_count": 1}, "because": {"_count": 1}}}, "exuded": {"_count": 1, "so": {"_count": 1, "much": {"_count": 1}}}, "bushier": {"_count": 2, "and": {"_count": 1, "bushier": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "stirs": {"_count": 2, "counterclockwise": {"_count": 2, "one": {"_count": 2}}}, "concoction": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ensconced": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "stonier": {"_count": 1, "with": {"_count": 1, "every": {"_count": 1}}}, "Puked": {"_count": 1, "on": {"_count": 1, "by": {"_count": 1}}}, "perking": {"_count": 1, "up": {"_count": 1, "at": {"_count": 1}}}, "Specialis": {"_count": 2, "Revelio": {"_count": 1, "she": {"_count": 1}}, "Reveliol": {"_count": 1, "over": {"_count": 1}}}, "Revelio": {"_count": 1, "she": {"_count": 1, "said": {"_count": 1}}}, "dogeared": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "backflips": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Property": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "HalfBlood": {"_count": 23, "Prince": {"_count": 11, "": {"_count": 4}, "had": {"_count": 1}, "he": {"_count": 1}, "and": {"_count": 2}, "than": {"_count": 1}, "is": {"_count": 1}, "how": {"_count": 1}}, "Princes": {"_count": 9, "instructions": {"_count": 1}, "copy": {"_count": 2}, "book": {"_count": 5}, "version": {"_count": 1}}, "what": {"_count": 1, "": {"_count": 1}}, "Ill": {"_count": 1, "explain": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Prince": {"_count": 53, "": {"_count": 10, ".": {"_count": 6}, "?": {"_count": 1}, "!": {"_count": 3}}, "had": {"_count": 5, "been": {"_count": 1}, "not": {"_count": 1}, "made": {"_count": 1}, "invented": {"_count": 1}, "proved": {"_count": 1}}, "he": {"_count": 2, "was": {"_count": 1}, "hadnt": {"_count": 1}}, "some": {"_count": 1, "trouble": {"_count": 1}}, "character": {"_count": 1, "was": {"_count": 1}}, "possibly": {"_count": 1, "be": {"_count": 1}}, "Hermione": {"_count": 2, "he": {"_count": 1}, "PrinceV": {"_count": 1}}, "as": {"_count": 1, "if": {"_count": 1}}, "and": {"_count": 3, "his": {"_count": 1}, "finally": {"_count": 1}, "her": {"_count": 1}}, "than": {"_count": 1, "Snape": {"_count": 1}}, "said": {"_count": 2, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "she": {"_count": 1, "gave": {"_count": 1}}, "is": {"_count": 1, "someone": {"_count": 1}}, "has": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 2, "at": {"_count": 1}, "a": {"_count": 1}}, "wont": {"_count": 1, "be": {"_count": 1}}, "hasnt": {"_count": 1, "got": {"_count": 1}}, "like": {"_count": 1, "Hermione": {"_count": 1}}, "hex": {"_count": 1, "wasnt": {"_count": 1}}, "would": {"_count": 1, "have": {"_count": 1}}, "Ron": {"_count": 1, "wouldnt": {"_count": 1}}, "isnt": {"_count": 1, "going": {"_count": 1}}, "been": {"_count": 1, "thinking": {"_count": 1}}, "person": {"_count": 1, "Hermione": {"_count": 1}}, "only": {"_count": 1, "copied": {"_count": 1}}, "Id": {"_count": 1, "never": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "if": {"_count": 1, "I": {"_count": 1}}, "business": {"_count": 1, "she": {"_count": 1}}, "once": {"_count": 1, "owning": {"_count": 1}}, "marrying": {"_count": 1, "a": {"_count": 1}}, "you": {"_count": 1, "see": {"_count": 1}}, "how": {"_count": 1, "could": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "GAUNT": {"_count": 1, "For": {"_count": 1, "the": {"_count": 1}}}, "Princes": {"_count": 18, "instructions": {"_count": 1, "wherever": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "copy": {"_count": 3, "disguised": {"_count": 1}, "of": {"_count": 2}}, "self": {"_count": 1, "invented": {"_count": 1}}, "useful": {"_count": 1, "additions": {"_count": 1}}, "hand": {"_count": 1, "to": {"_count": 1}}, "book": {"_count": 6, "and": {"_count": 2}, "yawning": {"_count": 1}, "deeper": {"_count": 1}, "behind": {"_count": 1}, "": {"_count": 1}}, "notes": {"_count": 1, "so": {"_count": 1}}, "version": {"_count": 1, "of": {"_count": 1}}}, "deviated": {"_count": 1, "from": {"_count": 1, "Libatius": {"_count": 1}}}, "Borages": {"_count": 2, "with": {"_count": 1, "the": {"_count": 1}}, "text": {"_count": 1, "": {"_count": 1}}}, "Re": {"_count": 1, "materialization": {"_count": 1, "away": {"_count": 1}}}, "materialization": {"_count": 1, "away": {"_count": 1, "from": {"_count": 1}}}, "dirtylooking": {"_count": 1, "playing": {"_count": 1, "cards": {"_count": 1}}}, "Knave": {"_count": 1, "of": {"_count": 1, "spades": {"_count": 1}}}, "dislikes": {"_count": 1, "the": {"_count": 1, "questioner": {"_count": 1}}}, "questioner": {"_count": 1, "She": {"_count": 1, "stopped": {"_count": 1}}}, "reshuffling": {"_count": 1, "vigorously": {"_count": 1, "as": {"_count": 1}}}, "seventhfloor": {"_count": 6, "corridor": {"_count": 6, "where": {"_count": 1}, "": {"_count": 2}, "that": {"_count": 1}, "was": {"_count": 1}, "checking": {"_count": 1}}}, "spindle": {"_count": 2, "legged": {"_count": 2, "tables": {"_count": 2}}}, "journeying": {"_count": 2, "together": {"_count": 1, "through": {"_count": 1}}, "to": {"_count": 1, "ever": {"_count": 1}}}, "marshes": {"_count": 1, "of": {"_count": 1, "memory": {"_count": 1}}}, "woefully": {"_count": 3, "wrong": {"_count": 1, "as": {"_count": 1}}, "ignorant": {"_count": 1, "": {"_count": 1}}, "incomplete": {"_count": 1, "Harry": {"_count": 1}}}, "Humphrey": {"_count": 1, "Belcher": {"_count": 1, "who": {"_count": 1}}}, "Belcher": {"_count": 1, "who": {"_count": 1, "believed": {"_count": 1}}}, "correspondingly": {"_count": 1, "huger": {"_count": 1, "": {"_count": 1}}}, "huger": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "shimmered": {"_count": 2, "neither": {"_count": 1, "liquid": {"_count": 1}}, "evilly": {"_count": 1, "several": {"_count": 1}}}, "bordered": {"_count": 4, "by": {"_count": 3, "high": {"_count": 1}, "higher": {"_count": 1}, "teetering": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "hedgerows": {"_count": 3, "beneath": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "wide": {"_count": 1}}, "than": {"_count": 1, "those": {"_count": 1}}}, "molelike": {"_count": 1, "specks": {"_count": 1, "": {"_count": 1}}}, "inexperienced": {"_count": 1, "wizards": {"_count": 1, "trying": {"_count": 1}}}, "frock": {"_count": 4, "coat": {"_count": 4, "and": {"_count": 2}, "vanishing": {"_count": 1}, "flying": {"_count": 1}}}, "spats": {"_count": 1, "over": {"_count": 1, "a": {"_count": 1}}}, "costume": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "mister": {"_count": 1, "": {"_count": 1}}}, "GREAT": {"_count": 1, "HANGLETON": {"_count": 1, "5": {"_count": 1}}}, "HANGLETON": {"_count": 2, "5": {"_count": 1, "MILES": {"_count": 1}}, "1": {"_count": 1, "MILE": {"_count": 1}}}, "MILES": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "MILE": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "frockcoated": {"_count": 1, "figure": {"_count": 1, "ahead": {"_count": 1}}}, "expanse": {"_count": 4, "of": {"_count": 4, "velvety": {"_count": 1}, "smooth": {"_count": 1}, "flat": {"_count": 1}, "aged": {"_count": 1}}}, "potholed": {"_count": 1, "sloping": {"_count": 1, "downhill": {"_count": 1}}}, "copse": {"_count": 3, "and": {"_count": 1, "Dumbledore": {"_count": 1}}, "where": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "trees": {"_count": 1}}}, "discerned": {"_count": 1, "the": {"_count": 1, "building": {"_count": 1}}}, "goo": {"_count": 1, "squirted": {"_count": 1, "from": {"_count": 1}}}, "Morfin": {"_count": 58, "": {"_count": 10, "!": {"_count": 3}, ".": {"_count": 5}, "?": {"_count": 2}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "wasnt": {"_count": 1, "it": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 3, "sitting": {"_count": 1}, "working": {"_count": 1}, "he": {"_count": 1}}, "Or": {"_count": 1, "hell": {"_count": 1}}, "performed": {"_count": 2, "magic": {"_count": 1}, "a": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "has": {"_count": 1, "broken": {"_count": 1}}, "cackled": {"_count": 2, "again": {"_count": 2}}, "Morfin": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 4, "the": {"_count": 1}, "his": {"_count": 2}, "he": {"_count": 1}}, "giggled": {"_count": 1, "": {"_count": 1}}, "fell": {"_count": 1, "silent": {"_count": 1}}, "will": {"_count": 1, "attend": {"_count": 1}}, "hissed": {"_count": 1, "and": {"_count": 1}}, "made": {"_count": 1, "to": {"_count": 1}}, "in": {"_count": 2, "Parseltongue": {"_count": 1}, "the": {"_count": 1}}, "a": {"_count": 1, "vicious": {"_count": 1}}, "went": {"_count": 1, "on": {"_count": 1}}, "leapt": {"_count": 1, "out": {"_count": 1}}, "who": {"_count": 1, "already": {"_count": 1}}, "attacked": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "safely": {"_count": 1}}, "return": {"_count": 1, "to": {"_count": 1}}, "aint": {"_count": 1, "1": {"_count": 1}}, "pushed": {"_count": 1, "the": {"_count": 1}}, "looked": {"_count": 1, "slightly": {"_count": 1}}, "as": {"_count": 1, "though": {"_count": 1}}, "spitting": {"_count": 1, "on": {"_count": 1}}, "s": {"_count": 2, "candle": {"_count": 1}, "ring": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "never": {"_count": 1, "realized": {"_count": 1}}, "had": {"_count": 1, "died": {"_count": 1}}, "Gaunt": {"_count": 1, "and": {"_count": 1}}, "did": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "Ministry": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}, "having": {"_count": 1, "been": {"_count": 1}}}, "pathetically": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Gaunt": {"_count": 54, "": {"_count": 11, "?": {"_count": 2}, ".": {"_count": 8}, "!": {"_count": 1}}, "aggressively": {"_count": 1, "": {"_count": 1}}, "spoke": {"_count": 1, "out": {"_count": 1}}, "said": {"_count": 8, "Ogden": {"_count": 4}, "defiantly": {"_count": 1}, "he": {"_count": 2}, "it": {"_count": 1}}, "felt": {"_count": 1, "rather": {"_count": 1}}, "grudgingly": {"_count": 1, "as": {"_count": 1}}, "bellowed": {"_count": 1, "at": {"_count": 1}}, "please": {"_count": 1, "": {"_count": 1}}, "screamed": {"_count": 1, "Mend": {"_count": 1}}, "looked": {"_count": 1, "for": {"_count": 1}}, "Ogden": {"_count": 1, "began": {"_count": 1}}, "imitated": {"_count": 1, "Ogdens": {"_count": 1}}, "his": {"_count": 1, "voice": {"_count": 1}}, "advancing": {"_count": 1, "on": {"_count": 1}}, "was": {"_count": 3, "making": {"_count": 1}, "thrown": {"_count": 1}, "an": {"_count": 1}}, "ran": {"_count": 1, "toward": {"_count": 1}}, "your": {"_count": 1, "daughter": {"_count": 1}}, "had": {"_count": 1, "already": {"_count": 1}}, "triumphantly": {"_count": 1, "as": {"_count": 1}}, "in": {"_count": 2, "Parseltongue": {"_count": 1}, "a": {"_count": 1}}, "and": {"_count": 3, "he": {"_count": 1}, "his": {"_count": 1}, "I": {"_count": 1}}, "froze": {"_count": 1, "listening": {"_count": 1}}, "sharply": {"_count": 1, "also": {"_count": 1}}, "quietly": {"_count": 1, "": {"_count": 1}}, "losing": {"_count": 1, "control": {"_count": 1}}, "cottage": {"_count": 1, "and": {"_count": 1}}, "cherished": {"_count": 1, "a": {"_count": 1}}, "showed": {"_count": 1, "Ogden": {"_count": 1}}, "relatives": {"_count": 1, "": {"_count": 1}}, "hovel": {"_count": 1, "performed": {"_count": 1}}, "shack": {"_count": 2, "": {"_count": 1}, "first": {"_count": 1}}}, "Sright": {"_count": 1, "said": {"_count": 1, "Gaunt": {"_count": 1}}}, "Defend": {"_count": 1, "himself": {"_count": 1, "against": {"_count": 1}}}, "Busybodies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Intruders": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "distinguished": {"_count": 1, "the": {"_count": 1, "weird": {"_count": 1}}}, "disagreeing": {"_count": 1, "but": {"_count": 1, "when": {"_count": 1}}}, "gait": {"_count": 2, "and": {"_count": 1, "slamming": {"_count": 1}}, "all": {"_count": 1, "gave": {"_count": 1}}}, "adder": {"_count": 1, "between": {"_count": 1, "his": {"_count": 1}}}, "Hissy": {"_count": 1, "hissy": {"_count": 1, "little": {"_count": 1}}}, "hissy": {"_count": 1, "little": {"_count": 1, "snakey": {"_count": 1}}}, "snakey": {"_count": 1, "Slither": {"_count": 1, "on": {"_count": 1}}}, "Slither": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "squalidlooking": {"_count": 1, "pots": {"_count": 1, "and": {"_count": 1}}}, "defeatedlooking": {"_count": 1, "person": {"_count": 1, "": {"_count": 1}}}, "Mdaughter": {"_count": 1, "Merope": {"_count": 1, "said": {"_count": 1}}}, "Merope": {"_count": 32, "said": {"_count": 2, "Gaunt": {"_count": 1}, "Harry": {"_count": 1}}, "had": {"_count": 3, "dropped": {"_count": 1}, "lied": {"_count": 1}, "got": {"_count": 1}}, "who": {"_count": 2, "had": {"_count": 1}, "was": {"_count": 1}}, "stumbled": {"_count": 1, "across": {"_count": 1}}, "picked": {"_count": 1, "up": {"_count": 1}}, "spluttered": {"_count": 1, "and": {"_count": 1}}, "she": {"_count": 1, "staggered": {"_count": 1}}, "huddled": {"_count": 1, "beside": {"_count": 1}}, "raised": {"_count": 1, "her": {"_count": 1}}, "was": {"_count": 5, "so": {"_count": 1}, "": {"_count": 1}, "a": {"_count": 1}, "left": {"_count": 1}, "alone": {"_count": 1}}, "shook": {"_count": 2, "her": {"_count": 2}}, "": {"_count": 3, "?": {"_count": 2}, ".": {"_count": 1}}, "s": {"_count": 1, "screams": {"_count": 1}}, "or": {"_count": 1, "whatever": {"_count": 1}}, "were": {"_count": 1, "the": {"_count": 1}}, "Gaunt": {"_count": 1, "cherished": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}, "and": {"_count": 1, "returned": {"_count": 1}}, "stopped": {"_count": 1, "using": {"_count": 1}}, "refused": {"_count": 1, "to": {"_count": 1}}, "Riddle": {"_count": 1, "chose": {"_count": 1}}}, "Pick": {"_count": 3, "it": {"_count": 2, "up": {"_count": 2}}, "up": {"_count": 1, "your": {"_count": 1}}}, "grub": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "inaudible": {"_count": 3, "spell": {"_count": 1, "that": {"_count": 1}}, "sniff": {"_count": 1, "": {"_count": 1}}, "for": {"_count": 1, "Ron": {"_count": 1}}}, "Mend": {"_count": 2, "it": {"_count": 2, "you": {"_count": 1}, "": {"_count": 1}}}, "\u2018Morfin": {"_count": 1, "has": {"_count": 1, "broken": {"_count": 1}}}, "Summons": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}}, "obscene": {"_count": 2, "hand": {"_count": 1, "gesture": {"_count": 1}}, "gestures": {"_count": 1, "but": {"_count": 1}}}, "stoned": {"_count": 1, "ring": {"_count": 1, "he": {"_count": 1}}}, "Centuries": {"_count": 2, "its": {"_count": 1, "been": {"_count": 1}}, "ago": {"_count": 1, "they": {"_count": 1}}}, "Peverell": {"_count": 13, "coat": {"_count": 3, "of": {"_count": 3}}, "family": {"_count": 1, "have": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "brothers": {"_count": 3, "Antioch": {"_count": 1}, "were": {"_count": 2}}, "bloke": {"_count": 1, "whos": {"_count": 1}}, "a": {"_count": 1, "filthy": {"_count": 1}}, "is": {"_count": 1, "buried": {"_count": 1}}}, "throttle": {"_count": 3, "her": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}}, "Slytherinsl": {"_count": 1, "yelled": {"_count": 1, "Gaunt": {"_count": 1}}}, "dispute": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Generations": {"_count": 3, "of": {"_count": 3, "purebloods": {"_count": 1}, "students": {"_count": 2}}}, "hives": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "all": {"_count": 1, "over": {"_count": 1}}}, "Mugglelover": {"_count": 1, "the": {"_count": 1, "moment": {"_count": 1}}}, "Mugg": {"_count": 1, "Ogden": {"_count": 1, "broke": {"_count": 1}}}, "clopping": {"_count": 3, "sounds": {"_count": 2, "of": {"_count": 1}, "were": {"_count": 1}}, "noises": {"_count": 1, "were": {"_count": 1}}}, "starkly": {"_count": 1, "white": {"_count": 1, "": {"_count": 1}}}, "eyesore": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Cecilia": {"_count": 1, "darling": {"_count": 1, "": {"_count": 1}}}, "\u2018Darling": {"_count": 2, "whispered": {"_count": 1, "Morfin": {"_count": 1}}, "he": {"_count": 1, "called": {"_count": 1}}}, "Gaunts": {"_count": 10, "seemed": {"_count": 1, "to": {"_count": 1}}, "a": {"_count": 1, "very": {"_count": 1}}, "in": {"_count": 1, "Tom": {"_count": 1}}, "ring": {"_count": 2, "had": {"_count": 1}, "lay": {"_count": 1}}, "house": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "Hallow": {"_count": 1}}}, "pureblooded": {"_count": 1, "descendant": {"_count": 1, "of": {"_count": 1}}}, "hankering": {"_count": 1, "after": {"_count": 1, "a": {"_count": 1}}}, "dirtveined": {"_count": 1, "Muggle": {"_count": 1, "": {"_count": 1}}}, "FatheA": {"_count": 1, "cackled": {"_count": 1, "Morfin": {"_count": 1}}}, "traitoA": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Relashiol": {"_count": 4, "Gaunt": {"_count": 1, "was": {"_count": 1}}, "The": {"_count": 2, "chains": {"_count": 1}, "cuffs": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "indiscriminately": {"_count": 1, "from": {"_count": 1, "his": {"_count": 1}}}, "flank": {"_count": 2, "and": {"_count": 1, "set": {"_count": 1}}, "poured": {"_count": 1, "blood": {"_count": 1}}}, "weightlessly": {"_count": 2, "through": {"_count": 2, "darkness": {"_count": 2}}}, "twilit": {"_count": 4, "office": {"_count": 1, "": {"_count": 1}}, "deserted": {"_count": 1, "lane": {"_count": 1}}, "grounds": {"_count": 1, "": {"_count": 1}}, "street": {"_count": 1, "": {"_count": 1}}}, "reseating": {"_count": 2, "himself": {"_count": 2, "behind": {"_count": 2}}}, "subsequently": {"_count": 1, "convicted": {"_count": 1, "by": {"_count": 1}}}, "instability": {"_count": 1, "and": {"_count": 1, "violence": {"_count": 1}}}, "marrying": {"_count": 6, "their": {"_count": 1, "own": {"_count": 1}}, "filth": {"_count": 1, "said": {"_count": 1}}, "me": {"_count": 1, "said": {"_count": 1}}, "a": {"_count": 2, "man": {"_count": 1}, "tall": {"_count": 1}}, "Tonks": {"_count": 1, "": {"_count": 1}}}, "Lack": {"_count": 1, "of": {"_count": 1, "sense": {"_count": 1}}}, "grandeur": {"_count": 4, "meant": {"_count": 1, "that": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "or": {"_count": 1, "mystique": {"_count": 1}}}, "squandered": {"_count": 1, "several": {"_count": 1, "generations": {"_count": 1}}}, "squalor": {"_count": 2, "and": {"_count": 1, "poverty": {"_count": 1}}, "looking": {"_count": 1, "toward": {"_count": 1}}}, "poverty": {"_count": 1, "with": {"_count": 1, "a": {"_count": 1}}}, "heirlooms": {"_count": 3, "that": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "cherished": {"_count": 1, "a": {"_count": 1, "secret": {"_count": 1}}}, "passion": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "terrorized": {"_count": 2, "by": {"_count": 1, "her": {"_count": 1}}, "two": {"_count": 1, "children": {"_count": 1}}}, "squires": {"_count": 1, "son": {"_count": 1, "ran": {"_count": 1}}}, "tramps": {"_count": 1, "daughter": {"_count": 1, "Merope": {"_count": 1}}}, "Marvolos": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "treasured": {"_count": 1, "family": {"_count": 1}}, "blackstoned": {"_count": 1, "ring": {"_count": 1}}, "ring": {"_count": 2, "had": {"_count": 1}, "": {"_count": 1}}, "last": {"_count": 1, "heirloom": {"_count": 1}}, "goldand": {"_count": 1, "black": {"_count": 1}}, "goldandblack": {"_count": 1, "ring": {"_count": 1}}}, "dutifully": {"_count": 1, "awaiting": {"_count": 1, "his": {"_count": 1}}}, "desertion": {"_count": 1, "may": {"_count": 1, "have": {"_count": 1}}}, "contributed": {"_count": 1, "to": {"_count": 1, "his": {"_count": 1}}}, "deduce": {"_count": 1, "what": {"_count": 1, "happened": {"_count": 1}}}, "runaway": {"_count": 2, "marriage": {"_count": 1, "Tom": {"_count": 1}}, "goblin": {"_count": 1, "and": {"_count": 1}}}, "neighborhood": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "\u2018hoodwinked": {"_count": 1, "and": {"_count": 1, "\u2018taken": {"_count": 1}}}, "\u2018taken": {"_count": 1, "in": {"_count": 1, "": {"_count": 1}}}, "enslaving": {"_count": 1, "him": {"_count": 1, "by": {"_count": 1}}}, "besotted": {"_count": 2, "as": {"_count": 1, "she": {"_count": 1}}, "old": {"_count": 1, "woman": {"_count": 1}}}, "HAND": {"_count": 1, "As": {"_count": 1, "Hermione": {"_count": 1}}}, "blissful": {"_count": 2, "relaxation": {"_count": 1, "Ron": {"_count": 1}}, "oblivion": {"_count": 1, "better": {"_count": 1}}}, "Incredibly": {"_count": 1, "and": {"_count": 1, "to": {"_count": 1}}}, "Nonverbal": {"_count": 1, "spells": {"_count": 1, "were": {"_count": 1}}}, "overdosed": {"_count": 1, "on": {"_count": 1, "UNoPoo": {"_count": 1}}}, "Aguamenti": {"_count": 8, "Charm": {"_count": 1, "from": {"_count": 1}}, "he": {"_count": 1, "shouted": {"_count": 1}}, "Aguamenti": {"_count": 1, "A": {"_count": 1}}, "A": {"_count": 2, "GUAMENTP": {"_count": 1}, "jet": {"_count": 1}}, "too": {"_count": 1, "Together": {"_count": 1}}, "screamed": {"_count": 1, "Hermione": {"_count": 1}}, "Harry": {"_count": 1, "bawled": {"_count": 1}}}, "shoelaces": {"_count": 1, "if": {"_count": 1, "wed": {"_count": 1}}}, "confronting": {"_count": 2, "the": {"_count": 1, "first": {"_count": 1}}, "his": {"_count": 1, "elder": {"_count": 1}}}, "fanciable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "disdain": {"_count": 1, "before": {"_count": 1, "turning": {"_count": 1}}}, "inconsequentially": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "graffitied": {"_count": 3, "copy": {"_count": 1, "back": {"_count": 1}}, "or": {"_count": 1, "stolen": {"_count": 1}}, "fire": {"_count": 1, "door": {"_count": 1}}}, "\u2018Stanley": {"_count": 1, "Shunpike": {"_count": 1, "conductor": {"_count": 1}}}, "conveyance": {"_count": 1, "the": {"_count": 1, "Knight": {"_count": 1}}}, "21": {"_count": 1, "was": {"_count": 1, "taken": {"_count": 1}}}, "custody": {"_count": 2, "late": {"_count": 1, "last": {"_count": 1}}, "and": {"_count": 1, "is": {"_count": 1}}}, "raid": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "Sluggys": {"_count": 2, "compartment": {"_count": 1, "he": {"_count": 1}}, "favorites": {"_count": 1, "": {"_count": 1}}}, "breadth": {"_count": 1, "of": {"_count": 1, "McLaggen": {"_count": 1}}}, "McLaggens": {"_count": 3, "face": {"_count": 1, "and": {"_count": 1}}, "red": {"_count": 1, "face": {"_count": 1}}, "Quidditch": {"_count": 1, "lectures": {"_count": 1}}}, "applicants": {"_count": 2, "for": {"_count": 1, "the": {"_count": 1}}, "saved": {"_count": 1, "more": {"_count": 1}}}, "silliest": {"_count": 1, "girls": {"_count": 1, "Harry": {"_count": 1}}}, "encountered": {"_count": 7, "who": {"_count": 1, "when": {"_count": 1}}, "a": {"_count": 1, "particularly": {"_count": 1}}, "nothing": {"_count": 1, "but": {"_count": 1}}, "the": {"_count": 1, "thing": {"_count": 1}}, "or": {"_count": 2, "imagined": {"_count": 2}}, "before": {"_count": 1, "": {"_count": 1}}}, "heckle": {"_count": 1, "everyone": {"_count": 1, "else": {"_count": 1}}}, "pileup": {"_count": 1, "halfway": {"_count": 1, "around": {"_count": 1}}}, "Demelza": {"_count": 15, "Robins": {"_count": 4, "who": {"_count": 1}, "appearing": {"_count": 1}, "in": {"_count": 1}, "to": {"_count": 1}}, "and": {"_count": 2, "Ginny": {"_count": 1}, "examining": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "!": {"_count": 1}}, "really": {"_count": 1, "sorry": {"_count": 1}}, "pull": {"_count": 1, "yourself": {"_count": 1}}, "were": {"_count": 1, "already": {"_count": 1}}, "scored": {"_count": 1, "a": {"_count": 1}}}, "Robins": {"_count": 4, "who": {"_count": 1, "was": {"_count": 1}}, "appearing": {"_count": 1, "suddenly": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "tears": {"_count": 1}}}, "outflown": {"_count": 2, "all": {"_count": 1, "the": {"_count": 1}}, "Seamus": {"_count": 1, "at": {"_count": 1}}}, "Pleased": {"_count": 3, "though": {"_count": 1, "he": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}, "but": {"_count": 1, "surprised": {"_count": 1}}}, "complainers": {"_count": 1, "and": {"_count": 1, "was": {"_count": 1}}}, "enduring": {"_count": 4, "a": {"_count": 2, "similar": {"_count": 1}, "Transfiguration": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "mortal": {"_count": 1, "agony": {"_count": 1}}}, "rejected": {"_count": 2, "Beaters": {"_count": 1, "": {"_count": 1}}, "players": {"_count": 1, "and": {"_count": 1}}}, "Jimmy": {"_count": 3, "Peakes": {"_count": 2, "a": {"_count": 1}, "who": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Peakes": {"_count": 12, "a": {"_count": 1, "short": {"_count": 1}}, "and": {"_count": 2, "Coote": {"_count": 2}}, "who": {"_count": 2, "was": {"_count": 2}}, "go": {"_count": 1, "and": {"_count": 1}}, "the": {"_count": 1, "Beaters": {"_count": 1}}, "youll": {"_count": 1, "want": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "s": {"_count": 1, "bat": {"_count": 1}}, "hadnt": {"_count": 1, "caught": {"_count": 1}}}, "broadchested": {"_count": 1, "thirdyear": {"_count": 1, "boy": {"_count": 1}}}, "Ritchie": {"_count": 1, "Coote": {"_count": 1, "who": {"_count": 1}}}, "Coote": {"_count": 10, "who": {"_count": 1, "looked": {"_count": 1}}, "were": {"_count": 1, "getting": {"_count": 1}}, "instead": {"_count": 1, "": {"_count": 1}}, "isnt": {"_count": 1, "really": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}, "grinning": {"_count": 1, "broadly": {"_count": 1}}, "and": {"_count": 3, "Peakes": {"_count": 3}}, "Peakes": {"_count": 1, "youll": {"_count": 1}}}, "weedy": {"_count": 1, "but": {"_count": 1, "aimed": {"_count": 1}}}, "gwhat": {"_count": 1, "sounded": {"_count": 1, "like": {"_count": 1}}}, "drizzling": {"_count": 1, "at": {"_count": 1, "last": {"_count": 1}}}, "Looked": {"_count": 2, "like": {"_count": 2, "hed": {"_count": 1}, "a": {"_count": 1}}}, "emphasizing": {"_count": 1, "the": {"_count": 1, "last": {"_count": 1}}}, "amusin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "outsmarted": {"_count": 1, "innit": {"_count": 1, "": {"_count": 1}}}, "Mumbling": {"_count": 1, "darkly": {"_count": 1, "he": {"_count": 1}}}, "Feelin": {"_count": 1, "sorry": {"_count": 1, "for": {"_count": 1}}}, "Missed": {"_count": 1, "me": {"_count": 1, "have": {"_count": 1}}}, "bucketsized": {"_count": 1, "mugs": {"_count": 1, "of": {"_count": 1}}}, "mahoganybrown": {"_count": 1, "tea": {"_count": 1, "in": {"_count": 1}}}, "tuber": {"_count": 1, "had": {"_count": 1, "done": {"_count": 1}}}, "grubs": {"_count": 3, "said": {"_count": 1, "Hagrid": {"_count": 1}}, "to": {"_count": 1, "a": {"_count": 1}}, "and": {"_count": 1, "his": {"_count": 1}}}, "tergether": {"_count": 2, "so": {"_count": 1, "long": {"_count": 1}}, "but": {"_count": 1, "attempted": {"_count": 1}}}, "croon": {"_count": 1, "over": {"_count": 1, "giant": {"_count": 1}}}, "stingers": {"_count": 1, "attempt": {"_count": 1, "to": {"_count": 1}}}, "grimaces": {"_count": 2, "and": {"_count": 1, "head": {"_count": 1}}, "of": {"_count": 1, "shock": {"_count": 1}}}, "shakings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Aragogs": {"_count": 8, "family": {"_count": 1, "": {"_count": 1}}, "worse": {"_count": 1, "I": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "gone": {"_count": 1, "": {"_count": 1}}, "body": {"_count": 2, "out": {"_count": 1}, "lying": {"_count": 1}}, "memory": {"_count": 1, "": {"_count": 1}}, "descendants": {"_count": 1, "had": {"_count": 1}}}, "restive": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "colony": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "offerin": {"_count": 1, "Hermione": {"_count": 1, "": {"_count": 1}}}, "gargantuan": {"_count": 2, "spider": {"_count": 1, "Hagrid": {"_count": 1}}, "monster": {"_count": 1, "trying": {"_count": 1}}}, "categorically": {"_count": 1, "and": {"_count": 1, "untruthfully": {"_count": 1}}}, "substituted": {"_count": 1, "for": {"_count": 1, "Hagrid": {"_count": 1}}}, "dishonest": {"_count": 1, "Hermione": {"_count": 1, "": {"_count": 1}}}, "Melinda": {"_count": 1, "Bobbin": {"_count": 1, "I": {"_count": 1}}}, "Bobbin": {"_count": 1, "I": {"_count": 1, "dont": {"_count": 1}}}, "apothecaries": {"_count": 1, "and": {"_count": 1, "of": {"_count": 1}}}, "comically": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "Ginnyll": {"_count": 1, "probably": {"_count": 1, "be": {"_count": 1}}}, "stymied": {"_count": 1, "Harry": {"_count": 1, "watched": {"_count": 1}}}, "invitations": {"_count": 1, "youve": {"_count": 1, "received": {"_count": 1}}}, "SILVER": {"_count": 2, "AND": {"_count": 1, "OPALS": {"_count": 1}}, "DOE": {"_count": 1, "It": {"_count": 1}}}, "OPALS": {"_count": 1, "Where": {"_count": 1, "was": {"_count": 1}}}, "bolstered": {"_count": 1, "comforted": {"_count": 1, "and": {"_count": 1}}}, "comforted": {"_count": 1, "and": {"_count": 1, "now": {"_count": 1}}}, "imaginative": {"_count": 1, "little": {"_count": 1, "jinxes": {"_count": 1}}}, "revisions": {"_count": 1, "that": {"_count": 1, "the": {"_count": 1}}}, "Muffliato": {"_count": 11, "a": {"_count": 1, "spell": {"_count": 1}}, "spell": {"_count": 3, "on": {"_count": 1}, "was": {"_count": 1}, "upon": {"_count": 1}}, "Harry": {"_count": 1, "": {"_count": 1}}, "she": {"_count": 1, "whispered": {"_count": 1}}, "charm": {"_count": 3, "had": {"_count": 1}, "upon": {"_count": 1}, "over": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "MuggleRepelling": {"_count": 1, "and": {"_count": 1}}}, "unidentifiable": {"_count": 2, "buzzing": {"_count": 1, "so": {"_count": 1}}, "junk": {"_count": 1, "and": {"_count": 1}}}, "alterations": {"_count": 2, "but": {"_count": 1, "finally": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Levicorpus": {"_count": 5, "nvbl": {"_count": 1, "While": {"_count": 1}}, "Oh": {"_count": 1, "that": {"_count": 1}}, "Ron": {"_count": 1, "yelled": {"_count": 1}}, "and": {"_count": 1, "flicked": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "nvbl": {"_count": 1, "While": {"_count": 1, "the": {"_count": 1}}}, "Nvbl": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Levicorpusl": {"_count": 1, "inside": {"_count": 1, "his": {"_count": 1}}}, "riffled": {"_count": 2, "through": {"_count": 2, "it": {"_count": 1}, "the": {"_count": 1}}}, "Liberacorpus": {"_count": 2, "with": {"_count": 1, "all": {"_count": 1}}, "yelled": {"_count": 1, "Harry": {"_count": 1}}}, "padding": {"_count": 2, "themselves": {"_count": 1, "out": {"_count": 1}}, "softly": {"_count": 1, "across": {"_count": 1}}}, "regaling": {"_count": 1, "Hermione": {"_count": 1, "with": {"_count": 1}}}, "anecdote": {"_count": 1, "and": {"_count": 1, "now": {"_count": 1}}}, "Dangling": {"_count": 3, "people": {"_count": 2, "upside": {"_count": 1}, "in": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "robustly": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "sane": {"_count": 1, "you": {"_count": 1}}}, "\u2018halfblood": {"_count": 1, "would": {"_count": 1, "he": {"_count": 1}}}, "distraction": {"_count": 5, "arrived": {"_count": 1, "in": {"_count": 1}}, "watching": {"_count": 1, "Mrs": {"_count": 1}}, "he": {"_count": 1, "slipped": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "knocking": {"_count": 1, "him": {"_count": 1}}}, "triplechecking": {"_count": 1, "everybody": {"_count": 1, "with": {"_count": 1}}}, "jabs": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "enveloped": {"_count": 2, "by": {"_count": 1, "warm": {"_count": 1}}, "him": {"_count": 1, "seeming": {"_count": 1}}}, "toffeescented": {"_count": 1, "air": {"_count": 1, "": {"_count": 1}}}, "suppers": {"_count": 1, "youve": {"_count": 1, "missed": {"_count": 1}}}, "scheduling": {"_count": 1, "practices": {"_count": 1, "every": {"_count": 1}}}, "ribbonadorned": {"_count": 1, "invitation": {"_count": 1, "": {"_count": 1}}}, "recreation": {"_count": 1, "never": {"_count": 1, "hurt": {"_count": 1}}}, "Unlucky": {"_count": 1, "again": {"_count": 1, "": {"_count": 1}}}, "regal": {"_count": 1, "wave": {"_count": 1, "he": {"_count": 1}}}, "deluxe": {"_count": 1, "sugar": {"_count": 1, "quills": {"_count": 1}}}, "extralarge": {"_count": 1, "sugar": {"_count": 1, "quills": {"_count": 1}}}, "destinations": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "exceptions": {"_count": 2, "were": {"_count": 1, "two": {"_count": 1}}, "to": {"_count": 1, "Gamps": {"_count": 1}}}, "ello": {"_count": 1, "Arry": {"_count": 1, "said": {"_count": 1}}}, "Gimme": {"_count": 1, "that": {"_count": 1, "": {"_count": 1}}}, "Mundunguss": {"_count": 3, "throat": {"_count": 1, "": {"_count": 1}}, "baggy": {"_count": 1, "bloodshot": {"_count": 1}}, "nose": {"_count": 1, "that": {"_count": 1}}}, "THIEVING": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "barmaid": {"_count": 1, "Madam": {"_count": 1, "Rosmerta": {"_count": 1}}}, "\u2018nothings": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "jibe": {"_count": 2, "sipping": {"_count": 1, "his": {"_count": 1}}, "about": {"_count": 1, "Rons": {"_count": 1}}}, "slush": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "closeted": {"_count": 2, "in": {"_count": 1, "Madam": {"_count": 1}}, "together": {"_count": 1, "": {"_count": 1}}}, "shriller": {"_count": 1, "and": {"_count": 1, "louder": {"_count": 1}}}, "Leanne": {"_count": 20, "": {"_count": 5, "!": {"_count": 1}, ".": {"_count": 3}, "?": {"_count": 1}}, "made": {"_count": 1, "to": {"_count": 1}}, "had": {"_count": 1, "all": {"_count": 1}}, "started": {"_count": 1, "to": {"_count": 1}}, "were": {"_count": 1, "all": {"_count": 1}}, "isnt": {"_count": 1, "it": {"_count": 1}}, "pointing": {"_count": 1, "at": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "shook": {"_count": 1, "with": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}, "told": {"_count": 1, "Professor": {"_count": 1}}, "was": {"_count": 2, "so": {"_count": 1}, "just": {"_count": 1}}, "and": {"_count": 1, "get": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "hedgerow": {"_count": 2, "into": {"_count": 1, "which": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Lemme": {"_count": 1, "see": {"_count": 1, "her": {"_count": 1}}}, "Somethings": {"_count": 1, "happened": {"_count": 1, "to": {"_count": 1}}}, "brownpaper": {"_count": 1, "package": {"_count": 1, "on": {"_count": 1}}}, "Imperiused": {"_count": 6, "and": {"_count": 1, "I": {"_count": 1}}, "me": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "goblin": {"_count": 1, "shook": {"_count": 1}}, "he": {"_count": 1, "added": {"_count": 1}}, "up": {"_count": 1, "and": {"_count": 1}}}, "sleetspattered": {"_count": 1, "windows": {"_count": 1, "were": {"_count": 1}}}, "Haltingly": {"_count": 1, "and": {"_count": 1, "with": {"_count": 1}}}, "advisability": {"_count": 1, "of": {"_count": 1, "agreeing": {"_count": 1}}}, "unkindly": {"_count": 2, "go": {"_count": 1, "up": {"_count": 1}}, "at": {"_count": 1, "Rons": {"_count": 1}}}, "Away": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "confidences": {"_count": 3, "Dumbledore": {"_count": 1, "though": {"_count": 1}}, "I": {"_count": 1, "wouldnt": {"_count": 1}}, "had": {"_count": 1, "received": {"_count": 1}}}, "lifeanddeath": {"_count": 1, "matter": {"_count": 1, "though": {"_count": 1}}}, "\u2018How": {"_count": 1, "would": {"_count": 1, "I": {"_count": 1}}}, "purely": {"_count": 3, "because": {"_count": 1, "he": {"_count": 1}}, "within": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "siding": {"_count": 1, "with": {"_count": 1, "McGonagall": {"_count": 1}}}, "compelled": {"_count": 2, "to": {"_count": 2, "join": {"_count": 1}, "keep": {"_count": 1}}}, "sided": {"_count": 1, "with": {"_count": 1, "Dumbledore": {"_count": 1}}}, "accomplice": {"_count": 3, "then": {"_count": 1, "said": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}, "waiting": {"_count": 1, "up": {"_count": 1}}}, "Dilligrout": {"_count": 2, "said": {"_count": 1, "Hermione": {"_count": 1}}, "he": {"_count": 1, "said": {"_count": 1}}}, "slick": {"_count": 1, "attack": {"_count": 1, "really": {"_count": 1}}}, "turfing": {"_count": 1, "a": {"_count": 1, "first": {"_count": 1}}}, "thoughtout": {"_count": 1, "at": {"_count": 1, "all": {"_count": 1}}}, "thinkers": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "immediate": {"_count": 1, "area": {"_count": 1}}}, "feigning": {"_count": 2, "deafness": {"_count": 1, "whenever": {"_count": 1}}, "death": {"_count": 1, "on": {"_count": 1}}}, "MalfoyIsaDeathEater": {"_count": 1, "theory": {"_count": 1, "": {"_count": 1}}}, "unwell": {"_count": 1, "although": {"_count": 1, "she": {"_count": 1}}}, "relatively": {"_count": 2, "lucky": {"_count": 1, "": {"_count": 1}}, "simple": {"_count": 1, "one": {"_count": 1}}}, "ungloved": {"_count": 1, "hand": {"_count": 1, "she": {"_count": 1}}}, "Impertinent": {"_count": 1, "said": {"_count": 1, "a": {"_count": 1}}}, "quellingly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "hourly": {"_count": 1, "reports": {"_count": 1, "and": {"_count": 1}}}, "uncorking": {"_count": 1, "it": {"_count": 1, "with": {"_count": 1}}}, "inheritance": {"_count": 1, "with": {"_count": 1, "lightfingered": {"_count": 1}}}, "lightfingered": {"_count": 1, "contempt": {"_count": 1, "said": {"_count": 1}}}, "dreads": {"_count": 1, "facing": {"_count": 1, "me": {"_count": 1}}}, "Caractacus": {"_count": 3, "Burke": {"_count": 3, "said": {"_count": 1}, "descended": {"_count": 1}, "was": {"_count": 1}}}, "Burke": {"_count": 13, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "descended": {"_count": 1, "back": {"_count": 1}}, "was": {"_count": 1, "not": {"_count": 1}}, "would": {"_count": 1, "like": {"_count": 1}}, "wishes": {"_count": 1, "me": {"_count": 1}}, "phooey": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "Ive": {"_count": 1, "got": {"_count": 1}}, "not": {"_count": 1, "to": {"_count": 1}}, "knows": {"_count": 1, "Ive": {"_count": 1}}, "bought": {"_count": 1, "it": {"_count": 1}}, "paid": {"_count": 1, "her": {"_count": 1}}, "were": {"_count": 1, "experts": {"_count": 1}}}, "swill": {"_count": 1, "them": {"_count": 1, "before": {"_count": 1}}}, "sifts": {"_count": 1, "for": {"_count": 1, "gold": {"_count": 1}}}, "thatch": {"_count": 1, "of": {"_count": 1, "hair": {"_count": 1}}}, "extravigorous": {"_count": 1, "shake": {"_count": 1, "and": {"_count": 1}}}, "famed": {"_count": 1, "for": {"_count": 1, "his": {"_count": 1}}}, "pregnancy": {"_count": 1, "Merope": {"_count": 1, "was": {"_count": 1}}}, "unrequited": {"_count": 1, "love": {"_count": 1, "and": {"_count": 1}}}, "attendant": {"_count": 1, "despair": {"_count": 1, "sapped": {"_count": 1}}}, "sapped": {"_count": 1, "her": {"_count": 1, "of": {"_count": 1}}}, "fronted": {"_count": 1, "a": {"_count": 1, "rather": {"_count": 1}}}, "scruffy": {"_count": 1, "girl": {"_count": 1, "wearing": {"_count": 1}}}, "Cole": {"_count": 18, "who": {"_count": 2, "I": {"_count": 1}, "seemed": {"_count": 1}}, "simply": {"_count": 1, "gaped": {"_count": 1}}, "blinked": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 2, "an": {"_count": 1}, "no": {"_count": 1}}, "helping": {"_count": 1, "herself": {"_count": 1}}, "nodded": {"_count": 1, "impressively": {"_count": 1}}, "helped": {"_count": 1, "herself": {"_count": 1}}, "pulled": {"_count": 1, "up": {"_count": 1}}, "frowning": {"_count": 1, "slightly": {"_count": 1}}, "took": {"_count": 1, "another": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "as": {"_count": 1, "they": {"_count": 1}}, "closed": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 2, "just": {"_count": 1}, "confided": {"_count": 1}}}, "bewilderedlooking": {"_count": 1, "girl": {"_count": 1, "taking": {"_count": 1}}}, "COLE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "tiled": {"_count": 5, "in": {"_count": 2, "black": {"_count": 1}, "grimy": {"_count": 1}}, "bathroom": {"_count": 1, "": {"_count": 1}}, "room": {"_count": 1, "": {"_count": 1}}, "wall": {"_count": 1, "where": {"_count": 1}}}, "spotlessly": {"_count": 1, "clean": {"_count": 1, "": {"_count": 1}}}, "sharpfeatured": {"_count": 1, "face": {"_count": 1, "that": {"_count": 1}}}, "unkind": {"_count": 2, "and": {"_count": 1, "she": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "aproned": {"_count": 1, "helper": {"_count": 1, "as": {"_count": 1}}}, "iodine": {"_count": 1, "upstairs": {"_count": 1, "to": {"_count": 1}}}, "Martha": {"_count": 1, "Billy": {"_count": 1, "Stubbs": {"_count": 1}}}, "Billy": {"_count": 3, "Stubbs": {"_count": 1, "has": {"_count": 1}}, "Stubbss": {"_count": 1, "rabbit": {"_count": 1}}, "had": {"_count": 1, "argued": {"_count": 1}}}, "Stubbs": {"_count": 1, "has": {"_count": 1, "been": {"_count": 1}}}, "scabs": {"_count": 1, "and": {"_count": 1, "Eric": {"_count": 1}}}, "Whalleys": {"_count": 1, "oozing": {"_count": 1, "all": {"_count": 1}}}, "giraffe": {"_count": 1, "had": {"_count": 1, "just": {"_count": 1}}}, "scholarship": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Coles": {"_count": 2, "desktop": {"_count": 1, "": {"_count": 1}}, "eyes": {"_count": 1, "slid": {"_count": 1}}}, "gin": {"_count": 11, "and": {"_count": 2, "two": {"_count": 1}, "her": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 3}}, "drinking": {"_count": 1, "": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "glass": {"_count": 1, "": {"_count": 1}}, "slopping": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}}, "extrarefined": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "novice": {"_count": 1, "when": {"_count": 1, "it": {"_count": 1}}}, "Pouring": {"_count": 1, "both": {"_count": 1, "of": {"_count": 1}}}, "Smacking": {"_count": 1, "her": {"_count": 1, "lips": {"_count": 1}}}, "snowing": {"_count": 3, "you": {"_count": 1, "know": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "papa": {"_count": 1, "and": {"_count": 1, "I": {"_count": 1}}}, "blurry": {"_count": 1, "or": {"_count": 1, "vague": {"_count": 1}}}, "inquisitorial": {"_count": 1, "glance": {"_count": 1, "she": {"_count": 1}}}, "incidents": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "which": {"_count": 1}}}, "rosier": {"_count": 1, "still": {"_count": 1, "": {"_count": 1}}}, "Stubbss": {"_count": 1, "rabbit": {"_count": 1, "": {"_count": 1}}}, "jiggered": {"_count": 1, "if": {"_count": 1, "I": {"_count": 1}}}, "outing": {"_count": 1, "we": {"_count": 1, "take": {"_count": 1}}}, "seaside": {"_count": 1, "well": {"_count": 1, "Amy": {"_count": 1}}}, "Amy": {"_count": 2, "Benson": {"_count": 2, "and": {"_count": 1}, "or": {"_count": 1}}}, "Benson": {"_count": 2, "and": {"_count": 1, "Dennis": {"_count": 1}}, "or": {"_count": 1, "Dennis": {"_count": 1}}}, "Bishop": {"_count": 2, "were": {"_count": 1, "never": {"_count": 1}}, "and": {"_count": 1, "you": {"_count": 1}}}, "wellcared": {"_count": 1, "for": {"_count": 1, "but": {"_count": 1}}}, "Dumberton": {"_count": 1, "sorry": {"_count": 1, "Dunderbore": {"_count": 1}}}, "Dunderbore": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018doctor": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "warier": {"_count": 1, "still": {"_count": 1, "": {"_count": 1}}}, "asylum": {"_count": 3, "thats": {"_count": 1, "where": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "fevered": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "prayer": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "finely": {"_count": 2, "carved": {"_count": 1, "features": {"_count": 1}}, "wrought": {"_count": 1, "handles": {"_count": 1}}}, "rougher": {"_count": 2, "his": {"_count": 1, "expression": {"_count": 1}}, "and": {"_count": 1, "less": {"_count": 1}}}, "bestial": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "commanding": {"_count": 2, "tone": {"_count": 1, "he": {"_count": 1}}, "arrogant": {"_count": 1, "voice": {"_count": 1}}}, "unrecognizably": {"_count": 1, "polite": {"_count": 1, "voice": {"_count": 1}}}, "demonstrations": {"_count": 1, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "worldly": {"_count": 1, "possessions": {"_count": 1, "must": {"_count": 1}}}, "undamaged": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "and": {"_count": 1, "his": {"_count": 1}}}, "rail": {"_count": 1, "of": {"_count": 1, "threadbare": {"_count": 1}}}, "yoyo": {"_count": 1, "a": {"_count": 1, "silver": {"_count": 1}}}, "thimble": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "Thieving": {"_count": 2, "is": {"_count": 1, "not": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "tolerated": {"_count": 2, "at": {"_count": 2, "Hogwarts": {"_count": 1}, "our": {"_count": 1}}}, "cache": {"_count": 1, "of": {"_count": 1, "stolen": {"_count": 1}}}, "remedied": {"_count": 1, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "moneypouch": {"_count": 1, "from": {"_count": 1, "his": {"_count": 1}}}, "displace": {"_count": 1, "an": {"_count": 1, "irksome": {"_count": 1}}}, "withheld": {"_count": 1, "mention": {"_count": 1, "of": {"_count": 1}}}, "whitehaired": {"_count": 1, "Dumbledore": {"_count": 1, "at": {"_count": 1}}}, "\u2018special": {"_count": 1, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "consciously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "typical": {"_count": 2, "of": {"_count": 2, "young": {"_count": 1}, "his": {"_count": 1}}}, "suggestive": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "supposedly": {"_count": 3, "connected": {"_count": 1, "with": {"_count": 1}}, "finishing": {"_count": 1, "his": {"_count": 1}}, "to": {"_count": 1, "care": {"_count": 1}}}, "domination": {"_count": 2, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}}, "\u2018Lord": {"_count": 1, "Voldemort": {"_count": 1, "behind": {"_count": 1}}}, "selfsufficient": {"_count": 1, "secretive": {"_count": 1, "and": {"_count": 1}}}, "companionship": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "trophies": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "poor": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "astute": {"_count": 1, "Harry": {"_count": 1, "but": {"_count": 1}}}, "enigmatic": {"_count": 1, "note": {"_count": 1, "he": {"_count": 1}}}, "FELIX": {"_count": 1, "FELICIS": {"_count": 1, "Harry": {"_count": 1}}}, "FELICIS": {"_count": 1, "Harry": {"_count": 1, "had": {"_count": 1}}}, "Snargaluff": {"_count": 6, "stumps": {"_count": 1, "that": {"_count": 1}}, "pods": {"_count": 3, "Ron": {"_count": 1}, "": {"_count": 1}, "down": {"_count": 1}}, "and": {"_count": 1, "gave": {"_count": 1}}, "juice": {"_count": 1, "toward": {"_count": 1}}}, "weaknesses": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "like": {"_count": 1, "the": {"_count": 1}}}, "goggles": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "up": {"_count": 1, "onto": {"_count": 1}}, "back": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 1, "sitting": {"_count": 1}}, "on": {"_count": 1, "": {"_count": 1}}}, "drones": {"_count": 1, "on": {"_count": 1, "about": {"_count": 1}}}, "expupils": {"_count": 1, "a": {"_count": 1, "bit": {"_count": 1}}}, "fawns": {"_count": 1, "on": {"_count": 1, "McLaggen": {"_count": 1}}}, "lagging": {"_count": 2, "behind": {"_count": 1, "everybody": {"_count": 1}}, "a": {"_count": 1, "little": {"_count": 1}}}, "pod": {"_count": 13, "": {"_count": 1, "!": {"_count": 1}}, "just": {"_count": 1, "like": {"_count": 1}}, "at": {"_count": 1, "arms": {"_count": 1}}, "into": {"_count": 1, "it": {"_count": 1}}, "in": {"_count": 2, "the": {"_count": 2}}, "flew": {"_count": 1, "out": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}, "had": {"_count": 1, "flown": {"_count": 1}}, "and": {"_count": 1, "began": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "hit": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}}, "bramblelike": {"_count": 1, "vines": {"_count": 1, "flew": {"_count": 1}}}, "vines": {"_count": 4, "flew": {"_count": 1, "out": {"_count": 1}}, "and": {"_count": 1, "knotting": {"_count": 1}}, "forcing": {"_count": 1, "the": {"_count": 1}}, "shot": {"_count": 1, "back": {"_count": 1}}}, "secateurs": {"_count": 1, "Harry": {"_count": 1, "succeeded": {"_count": 1}}}, "knotting": {"_count": 1, "them": {"_count": 1, "together": {"_count": 1}}}, "\u2018Slug": {"_count": 2, "Club": {"_count": 2, "\u2018Slug": {"_count": 1}, "repeated": {"_count": 1}}}, "hooking": {"_count": 2, "up": {"_count": 1, "with": {"_count": 1}}, "it": {"_count": 1, "onto": {"_count": 1}}}, "Queen": {"_count": 1, "Slug": {"_count": 1, "Were": {"_count": 1}}}, "resilient": {"_count": 1, "pod": {"_count": 1, "with": {"_count": 1}}}, "trowel": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "thorny": {"_count": 1, "vine": {"_count": 1, "intent": {"_count": 1}}}, "excruciatingly": {"_count": 3, "embarrassing": {"_count": 1, "to": {"_count": 1}}, "painful": {"_count": 2, "": {"_count": 1}, "face": {"_count": 1}}}, "tubers": {"_count": 3, "wriggling": {"_count": 1, "like": {"_count": 1}}, "like": {"_count": 1, "fat": {"_count": 1}}, "had": {"_count": 1, "hit": {"_count": 1}}}, "canaries": {"_count": 2, "whizzed": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "inconsistent": {"_count": 1, "player": {"_count": 1, "who": {"_count": 1}}}, "insecurities": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "technique": {"_count": 2, "became": {"_count": 1, "wilder": {"_count": 1}}, "somehow": {"_count": 1, "": {"_count": 1}}}, "Panicked": {"_count": 1, "Ginny": {"_count": 1, "said": {"_count": 1}}}, "Demelzas": {"_count": 1, "mouth": {"_count": 1, "and": {"_count": 1}}}, "marginally": {"_count": 1, "more": {"_count": 1, "cheerful": {"_count": 1}}}, "jelly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wrestling": {"_count": 1, "with": {"_count": 1, "this": {"_count": 1}}}, "butting": {"_count": 2, "in": {"_count": 2, "": {"_count": 2}}}, "snogged": {"_count": 4, "anyone": {"_count": 1, "in": {"_count": 1}}, "Cho": {"_count": 1, "Chang": {"_count": 1}}, "Viktor": {"_count": 1, "Krum": {"_count": 1}}, "Krum": {"_count": 1, "": {"_count": 1}}}, "Muriel": {"_count": 49, "Shut": {"_count": 1, "your": {"_count": 1}}, "stashed": {"_count": 1, "under": {"_count": 1}}, "said": {"_count": 5, "Mrs": {"_count": 1}, "Doge": {"_count": 1}, "hiccuping": {"_count": 1}, "stuff": {"_count": 1}, "": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "is": {"_count": 1, "said": {"_count": 1}}, "doesnt": {"_count": 1, "agree": {"_count": 1}}, "": {"_count": 10, "?": {"_count": 3}, ".": {"_count": 7}}, "in": {"_count": 1, "a": {"_count": 1}}, "grumbling": {"_count": 1, "audibly": {"_count": 1}}, "Ron": {"_count": 1, "led": {"_count": 1}}, "standing": {"_count": 1, "there": {"_count": 1}}, "swung": {"_count": 1, "it": {"_count": 1}}, "drained": {"_count": 1, "her": {"_count": 1}}, "looking": {"_count": 1, "delighted": {"_count": 1}}, "swaying": {"_count": 1, "a": {"_count": 1}}, "cackled": {"_count": 1, "again": {"_count": 1}}, "ignored": {"_count": 1, "him": {"_count": 1}}, "steamrollered": {"_count": 1, "on": {"_count": 1}}, "how": {"_count": 1, "you": {"_count": 1}}, "who": {"_count": 1, "seemed": {"_count": 1}}, "resumed": {"_count": 1, "Id": {"_count": 1}}, "thoughtfully": {"_count": 1, "": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "happily": {"_count": 1, "": {"_count": 1}}, "swigged": {"_count": 1, "yet": {"_count": 1}}, "cheerfully": {"_count": 1, "": {"_count": 1}}, "through": {"_count": 1, "streaming": {"_count": 1}}, "testily": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "talking": {"_count": 1}}, "had": {"_count": 2, "told": {"_count": 1}, "got": {"_count": 1}}, "or": {"_count": 1, "from": {"_count": 1}}, "she": {"_count": 1, "was": {"_count": 1}}, "called": {"_count": 1, "her": {"_count": 1}}, "up": {"_count": 1, "the": {"_count": 1}}}, "bypassing": {"_count": 1, "red": {"_count": 1, "and": {"_count": 1}}}, "stashed": {"_count": 1, "under": {"_count": 1, "your": {"_count": 1}}}, "twelveyearold": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "toadspawn": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}}, "disoriented": {"_count": 4, "dizzy": {"_count": 1, "being": {"_count": 1}}, "twisting": {"_count": 1, "her": {"_count": 1}}, "many": {"_count": 1, "welts": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "intruded": {"_count": 1, "in": {"_count": 1, "which": {"_count": 1}}}, "brotherly": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "feeling": {"_count": 1, "": {"_count": 1}}}, "coldshouldering": {"_count": 1, "Ginny": {"_count": 1, "and": {"_count": 1}}}, "lash": {"_count": 1, "out": {"_count": 1, "as": {"_count": 1}}}, "dudgeon": {"_count": 1, "and": {"_count": 1, "Ron": {"_count": 1}}}, "coincided": {"_count": 2, "with": {"_count": 2, "an": {"_count": 1}, "Rons": {"_count": 1}}}, "caster": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "dead": {"_count": 1}}}, "Bat": {"_count": 1, "Bogey": {"_count": 1, "Hex": {"_count": 1}}}, "Bogey": {"_count": 1, "Hex": {"_count": 1, "soared": {"_count": 1}}}, "intervene": {"_count": 3, "before": {"_count": 1, "things": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}, "but": {"_count": 1, "nobody": {"_count": 1}}}, "sag": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "resigning": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, "?": {"_count": 1}}}, "boosting": {"_count": 1, "Rons": {"_count": 1, "confidence": {"_count": 1}}}, "assertion": {"_count": 2, "that": {"_count": 2, "the": {"_count": 1}, "he": {"_count": 1}}}, "undermined": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "goalsaving": {"_count": 1, "attitude": {"_count": 1, "but": {"_count": 1}}}, "blithely": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "an": {"_count": 1}}}, "sicklooking": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Conditions": {"_count": 1, "look": {"_count": 1, "ideal": {"_count": 1}}}, "Vaisey": {"_count": 3, "he": {"_count": 1, "took": {"_count": 1}}, "off": {"_count": 1, "too": {"_count": 1}}, "couldnt": {"_count": 1, "play": {"_count": 1}}}, "Harper": {"_count": 12, "instead": {"_count": 2, "hes": {"_count": 1}, "who": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "collided": {"_count": 1, "with": {"_count": 1}}, "had": {"_count": 2, "already": {"_count": 1}, "not": {"_count": 1}}, "of": {"_count": 1, "Slytherins": {"_count": 1}}, "was": {"_count": 2, "still": {"_count": 1}, "feet": {"_count": 1}}, "got": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "did": {"_count": 1, "a": {"_count": 1}}}, "rescheduled": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "Fishy": {"_count": 1, "isnt": {"_count": 1, "it": {"_count": 1}}}, "animated": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "discussion": {"_count": 1, "about": {"_count": 1}}}, "scorer": {"_count": 1, "I": {"_count": 1, "didnt": {"_count": 1}}}, "Amidst": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "liontopped": {"_count": 1, "hat": {"_count": 1, "": {"_count": 1}}}, "Urquhart": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "streaking": {"_count": 1, "down": {"_count": 1}}}, "jarringly": {"_count": 1, "different": {"_count": 1, "to": {"_count": 1}}}, "elusive": {"_count": 4, "Snitch": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Mr": {"_count": 1, "Potter": {"_count": 1}}, "as": {"_count": 1, "Harry": {"_count": 1}}}, "Thinks": {"_count": 1, "hes": {"_count": 1, "something": {"_count": 1}}}, "bloodtraitor": {"_count": 3, "pal": {"_count": 1, "": {"_count": 1}}, "Weasley": {"_count": 1, "and": {"_count": 1}}, "family": {"_count": 1, "there": {"_count": 1}}}, "doubletake": {"_count": 1, "he": {"_count": 1, "fumbled": {"_count": 1}}}, "irate": {"_count": 2, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}, "McLaggen": {"_count": 1, "and": {"_count": 1}}}, "Avoiding": {"_count": 1, "her": {"_count": 1, "gaze": {"_count": 1}}}, "jubilant": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "friends": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "they": {"_count": 1}}}, "letdown": {"_count": 1, "he": {"_count": 1, "had": {"_count": 1}}}, "Renewed": {"_count": 1, "cheers": {"_count": 1, "and": {"_count": 1}}}, "mob": {"_count": 1, "of": {"_count": 1, "people": {"_count": 1}}}, "batting": {"_count": 3, "their": {"_count": 1, "eyelids": {"_count": 1}}, "her": {"_count": 2, "lashes": {"_count": 1}, "eyelashes": {"_count": 1}}}, "hinting": {"_count": 2, "heavily": {"_count": 1, "that": {"_count": 1}}, "now": {"_count": 1, "that": {"_count": 1}}}, "hypocrite": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "telling": {"_count": 1, "everyone": {"_count": 1}}}, "dispassionately": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "occurs": {"_count": 1, "when": {"_count": 1}}}, "refine": {"_count": 1, "his": {"_count": 1, "technique": {"_count": 1}}}, "surfacing": {"_count": 2, "soon": {"_count": 1, "just": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "sidestepped": {"_count": 1, "Romilda": {"_count": 1, "Vane": {"_count": 1}}}, "bravado": {"_count": 2, "and": {"_count": 1, "awkwardness": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "awkwardness": {"_count": 2, "Hi": {"_count": 1, "Harry": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Wondered": {"_count": 1, "where": {"_count": 1, "youd": {"_count": 1}}}, "twitter": {"_count": 1, "in": {"_count": 1, "circles": {"_count": 1}}}, "erectly": {"_count": 1, "toward": {"_count": 1, "the": {"_count": 1}}}, "Oppugno": {"_count": 1, "came": {"_count": 1, "a": {"_count": 1}}}, "Gerremoffme": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "UNBREAKABLE": {"_count": 1, "VOW": {"_count": 1, "Snow": {"_count": 1}}}, "VOW": {"_count": 1, "Snow": {"_count": 1, "was": {"_count": 1}}}, "everlasting": {"_count": 1, "candles": {"_count": 1, "glowed": {"_count": 1}}}, "helmets": {"_count": 3, "of": {"_count": 1, "suits": {"_count": 1}}, "set": {"_count": 1, "on": {"_count": 1}}, "creaked": {"_count": 1, "at": {"_count": 1}}}, "converge": {"_count": 1, "underneath": {"_count": 1, "the": {"_count": 1}}}, "blockages": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "navigate": {"_count": 2, "mistletoefree": {"_count": 1, "routes": {"_count": 1}}, "their": {"_count": 1, "way": {"_count": 1}}}, "mistletoefree": {"_count": 1, "routes": {"_count": 1, "between": {"_count": 1}}}, "routes": {"_count": 1, "between": {"_count": 1, "classes": {"_count": 1}}}, "detours": {"_count": 2, "a": {"_count": 1, "cause": {"_count": 1}}, "to": {"_count": 1, "wherever": {"_count": 1}}}, "Quintessence": {"_count": 2, "A": {"_count": 1, "Quest": {"_count": 1}}, "aware": {"_count": 1, "that": {"_count": 1}}}, "Quest": {"_count": 4, "": {"_count": 4, ".": {"_count": 2}, "!": {"_count": 2}}}, "agent": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "you": {"_count": 1, "stupid": {"_count": 1}}}, "whomever": {"_count": 1, "he": {"_count": 1, "likes": {"_count": 1}}}, "Elixirs": {"_count": 1, "occasionally": {"_count": 1, "pausing": {"_count": 1}}}, "additions": {"_count": 1, "to": {"_count": 1, "Libatius": {"_count": 1}}}, "text": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "juncture": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "devoutly": {"_count": 1, "thankful": {"_count": 1, "that": {"_count": 1}}}, "perfumes": {"_count": 1, "and": {"_count": 1, "cough": {"_count": 1}}}, "Service": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "countenance": {"_count": 1, "of": {"_count": 1, "Madam": {"_count": 1}}}, "unflatteringly": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "depraved": {"_count": 1, "boy": {"_count": 1, "": {"_count": 1}}}, "Despoiled": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Desecrated": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Befouled": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Baubles": {"_count": 2, "said": {"_count": 2, "Harry": {"_count": 1}, "Ron": {"_count": 1}}}, "whatdidItellyou": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "handlebar": {"_count": 1, "mustache": {"_count": 1, "Ron": {"_count": 1}}}, "truths": {"_count": 2, "he": {"_count": 2, "had": {"_count": 1}, "shouted": {"_count": 1}}}, "intentions": {"_count": 2, "perfectly": {"_count": 1, "clear": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "dyed": {"_count": 1, "your": {"_count": 1, "eyebrow": {"_count": 1}}}, "partyl": {"_count": 1, "Potty": {"_count": 1, "lurves": {"_count": 1}}}, "lurves": {"_count": 1, "Loony": {"_count": 1, "": {"_count": 1}}}, "luuuuurves": {"_count": 1, "LooooooonyV": {"_count": 1, "And": {"_count": 1}}}, "LooooooonyV": {"_count": 1, "And": {"_count": 1, "he": {"_count": 1}}}, "anyonel": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Anyonel": {"_count": 1, "And": {"_count": 1, "you": {"_count": 1}}}, "freaked": {"_count": 1, "them": {"_count": 1, "out": {"_count": 1}}}, "unHermioneish": {"_count": 1, "giggle": {"_count": 1, "": {"_count": 1}}}, "agog": {"_count": 1, "at": {"_count": 1, "this": {"_count": 1}}}, "development": {"_count": 1, "with": {"_count": 1, "everything": {"_count": 1}}}, "publish": {"_count": 1, "by": {"_count": 1, "somebody": {"_count": 1}}}, "trickery": {"_count": 2, "to": {"_count": 1, "make": {"_count": 1}}, "about": {"_count": 1, "him": {"_count": 1}}}, "mandolins": {"_count": 1, "issued": {"_count": 1, "from": {"_count": 1}}}, "negotiating": {"_count": 1, "their": {"_count": 1, "way": {"_count": 1}}}, "Eldred": {"_count": 1, "Worple": {"_count": 1, "an": {"_count": 1}}}, "Worple": {"_count": 6, "an": {"_count": 1, "old": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "peering": {"_count": 1, "shortsightedly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "suddenly": {"_count": 1, "stern": {"_count": 1}}, "seizing": {"_count": 1, "one": {"_count": 1}}}, "Amongst": {"_count": 1, "the": {"_count": 1, "Vampires": {"_count": 1}}}, "Sanguini": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "here": {"_count": 1, "if": {"_count": 1}}, "stay": {"_count": 1, "here": {"_count": 1}}}, "emaciated": {"_count": 4, "with": {"_count": 1, "dark": {"_count": 1}}, "old": {"_count": 1, "man": {"_count": 1}}, "figure": {"_count": 1, "stirred": {"_count": 1}}, "the": {"_count": 1, "bones": {"_count": 1}}}, "shortsightedly": {"_count": 1, "up": {"_count": 1, "into": {"_count": 1}}}, "\u2018Where": {"_count": 1, "is": {"_count": 1, "the": {"_count": 1}}}, "biography": {"_count": 4, "of": {"_count": 2, "Harry": {"_count": 1}, "Dumbledore": {"_count": 1}}, "The": {"_count": 1, "Life": {"_count": 1}}, "has": {"_count": 1, "certainly": {"_count": 1}}}, "grant": {"_count": 1, "me": {"_count": 1, "a": {"_count": 1}}}, "fivehour": {"_count": 1, "sessions": {"_count": 1, "why": {"_count": 1}}}, "Sanguinis": {"_count": 1, "hand": {"_count": 1, "before": {"_count": 1}}}, "HermioneV": {"_count": 1, "Harry": {"_count": 1, "": {"_count": 1}}}, "titter": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Dobbin": {"_count": 1, "as": {"_count": 1, "I": {"_count": 1}}}, "Hundred": {"_count": 1, "Great": {"_count": 1, "Saves": {"_count": 1}}}, "Saves": {"_count": 1, "Made": {"_count": 1, "by": {"_count": 1}}}, "Sybill": {"_count": 4, "we": {"_count": 1, "all": {"_count": 1}}, "why": {"_count": 1, "even": {"_count": 1}}, "said": {"_count": 1, "Dumbledore": {"_count": 1}}, "Trelawney": {"_count": 1, "to": {"_count": 1}}}, "Instinctive": {"_count": 1, "you": {"_count": 1, "know": {"_count": 1}}}, "Trapped": {"_count": 2, "with": {"_count": 1, "Slughorns": {"_count": 1}}, "and": {"_count": 1, "wasted": {"_count": 1}}}, "Rotfang": {"_count": 2, "Conspiracy": {"_count": 2, "I": {"_count": 1}, "with": {"_count": 1}}}, "Conspiracy": {"_count": 2, "I": {"_count": 1, "thought": {"_count": 1}}, "with": {"_count": 1, "Professor": {"_count": 1}}}, "disease": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Emerging": {"_count": 1, "from": {"_count": 1, "his": {"_count": 1}}}, "calculated": {"_count": 1, "to": {"_count": 1, "raise": {"_count": 1}}}, "maniacal": {"_count": 2, "light": {"_count": 1, "of": {"_count": 1}}, "laugh": {"_count": 1, "Mrs": {"_count": 1}}}, "mischiefdetection": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "gatecrash": {"_count": 1, "happy": {"_count": 1, "": {"_count": 1}}}, "prowlings": {"_count": 2, "out": {"_count": 1, "unless": {"_count": 1}}, "from": {"_count": 1, "noises": {"_count": 1}}}, "suckingup": {"_count": 1, "that": {"_count": 1, "intrigued": {"_count": 1}}}, "backup": {"_count": 4, "these": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "has": {"_count": 1, "been": {"_count": 1}}}, "pres": {"_count": 1, "What": {"_count": 1, "does": {"_count": 1}}}, "incautious": {"_count": 1, "wandering": {"_count": 1, "around": {"_count": 1}}}, "reliance": {"_count": 2, "in": {"_count": 1, "assistants": {"_count": 1}}, "can": {"_count": 1, "be": {"_count": 1}}}, "assistants": {"_count": 1, "like": {"_count": 1, "Crabbe": {"_count": 1}}}, "FROSTY": {"_count": 1, "CHRISTMAS": {"_count": 1, "So": {"_count": 1}}}, "himl": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Oath": {"_count": 1, "or": {"_count": 1, "something": {"_count": 1}}}, "funnily": {"_count": 1, "enough": {"_count": 1, "": {"_count": 1}}}, "whoopsadaisy": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "dazzle": {"_count": 2, "us": {"_count": 1, "all": {"_count": 1}}, "Harrys": {"_count": 1, "eyes": {"_count": 1}}}, "unsuspected": {"_count": 2, "magical": {"_count": 1, "skills": {"_count": 1}}, "skills": {"_count": 1, "Ronald": {"_count": 1}}}, "snappy": {"_count": 1, "retort": {"_count": 1, "said": {"_count": 1}}}, "characterbuilding": {"_count": 1, "stuff": {"_count": 1, "learning": {"_count": 1}}}, "parry": {"_count": 2, "before": {"_count": 1, "he": {"_count": 1}}, "the": {"_count": 1, "question": {"_count": 1}}}, "lavishly": {"_count": 1, "that": {"_count": 1, "it": {"_count": 1}}}, "paperchain": {"_count": 1, "explosion": {"_count": 1, "": {"_count": 1}}}, "Stupefied": {"_count": 4, "painted": {"_count": 1, "gold": {"_count": 1}}, "his": {"_count": 1, "uncle": {"_count": 1}}, "Flitwick": {"_count": 1, "but": {"_count": 1}}, "a": {"_count": 1, "Death": {"_count": 1}}}, "tutu": {"_count": 2, "and": {"_count": 1, "with": {"_count": 1}}, "at": {"_count": 1, "the": {"_count": 1}}}, "broadcast": {"_count": 3, "by": {"_count": 1, "Mrs": {"_count": 1}}, "again": {"_count": 1, "but": {"_count": 1}}, "was": {"_count": 1, "over": {"_count": 1}}}, "warbling": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "jazzy": {"_count": 1, "number": {"_count": 1, "called": {"_count": 1}}}, "covert": {"_count": 2, "looks": {"_count": 1, "as": {"_count": 1}}, "glances": {"_count": 1, "plainly": {"_count": 1}}}, "Celestinas": {"_count": 2, "voice": {"_count": 1, "": {"_count": 1}}, "crooning": {"_count": 1, "": {"_count": 1}}}, "Mphf": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "satsuma": {"_count": 2, "he": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "arrests": {"_count": 3, "weve": {"_count": 1, "made": {"_count": 1}}, "sounds": {"_count": 1, "better": {"_count": 1}}, "and": {"_count": 1, "releases": {"_count": 1}}}, "\u2018three": {"_count": 2, "arrests": {"_count": 1, "sounds": {"_count": 1}}, "mistaken": {"_count": 1, "arrests": {"_count": 1}}}, "embark": {"_count": 1, "on": {"_count": 1, "what": {"_count": 1}}}, "marshaled": {"_count": 1, "his": {"_count": 1, "thoughts": {"_count": 1}}}, "ballad": {"_count": 1, "called": {"_count": 1, "You": {"_count": 1}}}, "Charmed": {"_count": 2, "the": {"_count": 1, "Heart": {"_count": 1}}, "or": {"_count": 1, "otherwise": {"_count": 1}}}, "\u2018accidentally": {"_count": 1, "let": {"_count": 1, "it": {"_count": 1}}}, "wreaked": {"_count": 1, "much": {"_count": 1, "worse": {"_count": 1}}}, "Eez": {"_count": 1, "eet": {"_count": 1, "over": {"_count": 1}}}, "literally": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "flown": {"_count": 1, "launched": {"_count": 1}}}, "incomprehension": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "on": {"_count": 1, "their": {"_count": 1}}}, "Grey": {"_count": 7, "back": {"_count": 7, "out": {"_count": 1}, "": {"_count": 2}, "was": {"_count": 1}, "the": {"_count": 1}, "laughed": {"_count": 1}, "quietly": {"_count": 1}}}, "regards": {"_count": 1, "it": {"_count": 1, "as": {"_count": 1}}}, "specializes": {"_count": 2, "in": {"_count": 1, "children": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}}, "Bite": {"_count": 1, "them": {"_count": 1, "young": {"_count": 1}}}, "marshal": {"_count": 2, "the": {"_count": 1, "werewolves": {"_count": 1}}, "his": {"_count": 1, "ideas": {"_count": 1}}}, "Greybacks": {"_count": 6, "insistence": {"_count": 1, "that": {"_count": 1}}, "gloating": {"_count": 1, "voice": {"_count": 1}}, "boots": {"_count": 1, "as": {"_count": 1}}, "hand": {"_count": 1, "but": {"_count": 1}}, "wand": {"_count": 1, "back": {"_count": 1}}, "wands": {"_count": 1, "Harry": {"_count": 1}}}, "\u2018furry": {"_count": 1, "little": {"_count": 1, "problem": {"_count": 1}}}, "princes": {"_count": 2, "said": {"_count": 1, "Lupin": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "adopting": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "vogue": {"_count": 1, "during": {"_count": 1, "my": {"_count": 1}}}, "\u2018Prince": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "delved": {"_count": 2, "into": {"_count": 1, "his": {"_count": 1}}, "deeper": {"_count": 1, "into": {"_count": 1}}}, "Sweetheart": {"_count": 2, "Nice": {"_count": 1, "he": {"_count": 1}}, "round": {"_count": 1, "your": {"_count": 1}}}, "Classy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Stutter": {"_count": 1, "at": {"_count": 1, "me": {"_count": 1}}}, "\u2018My": {"_count": 1, "Sweetheart": {"_count": 1, "round": {"_count": 1}}}, "Snogging": {"_count": 3, "said": {"_count": 1, "Harry": {"_count": 1}}, "Victoire": {"_count": 1, "He": {"_count": 1}}, "our": {"_count": 1, "Victoire": {"_count": 1}}}, "moldysmelling": {"_count": 1, "package": {"_count": 1, "that": {"_count": 1}}}, "mails": {"_count": 1, "still": {"_count": 1, "being": {"_count": 1}}}, "sobered": {"_count": 1, "Ron": {"_count": 1, "up": {"_count": 1}}}, "starlike": {"_count": 1, "diamonds": {"_count": 1, "and": {"_count": 1}}}, "Parsnips": {"_count": 1, "Remus": {"_count": 1, "": {"_count": 1}}}, "maggot": {"_count": 2, "in": {"_count": 1, "your": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Gravy": {"_count": 1, "Fleur": {"_count": 1, "": {"_count": 1}}}, "daughterinlaw": {"_count": 1, "instead": {"_count": 1, "of": {"_count": 1}}}, "upheaval": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "to": {"_count": 1, "continue": {"_count": 1}}}, "affecting": {"_count": 3, "scene": {"_count": 1, "": {"_count": 1}}, "was": {"_count": 1, "slightly": {"_count": 1}}, "the": {"_count": 1, "Muggle": {"_count": 1}}}, "pokerstraight": {"_count": 1, "and": {"_count": 1, "awkwardlooking": {"_count": 1}}}, "awkwardlooking": {"_count": 1, "and": {"_count": 1, "stared": {"_count": 1}}}, "purkey": {"_count": 1, "or": {"_count": 1, "some": {"_count": 1}}}, "tooding": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "perceptibly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "snowcovered": {"_count": 1, "garden": {"_count": 1, "Scrimgeour": {"_count": 1}}}, "battlescarred": {"_count": 1, "very": {"_count": 1, "different": {"_count": 1}}}, "oblige": {"_count": 2, "so": {"_count": 1, "he": {"_count": 1}}, "me": {"_count": 1, "by": {"_count": 1}}}, "understandably": {"_count": 1, "as": {"_count": 1, "I": {"_count": 1}}}, "deliberated": {"_count": 1, "wondering": {"_count": 1, "whether": {"_count": 1}}}, "prints": {"_count": 2, "all": {"_count": 1, "around": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "scuffedup": {"_count": 1, "patch": {"_count": 1, "that": {"_count": 1}}}, "rhododendron": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "now": {"_count": 1}}, "bush": {"_count": 1, "": {"_count": 1}}}, "perception": {"_count": 1, "isnt": {"_count": 1, "it": {"_count": 1}}}, "\u2018Stand": {"_count": 1, "alongside": {"_count": 1, "the": {"_count": 1}}}, "ample": {"_count": 2, "opportunity": {"_count": 1, "to": {"_count": 1}}, "amount": {"_count": 1, "of": {"_count": 1}}}, "Gawain": {"_count": 1, "Robards": {"_count": 1, "my": {"_count": 1}}}, "Robards": {"_count": 1, "my": {"_count": 1, "successor": {"_count": 1}}}, "cherish": {"_count": 1, "an": {"_count": 1, "ambition": {"_count": 1}}}, "cottoned": {"_count": 1, "on": {"_count": 1, "so": {"_count": 1}}}, "endeavoring": {"_count": 1, "to": {"_count": 1, "keep": {"_count": 1}}}, "Locking": {"_count": 1, "up": {"_count": 1, "Stan": {"_count": 1}}}, "scapegoat": {"_count": 1, "just": {"_count": 1, "like": {"_count": 1}}}, "mascot": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "disassociate": {"_count": 1, "yourself": {"_count": 1, "from": {"_count": 1}}}, "carve": {"_count": 2, "into": {"_count": 1, "his": {"_count": 1}}, "for": {"_count": 1, "himself": {"_count": 1}}}, "SLUGGISH": {"_count": 1, "MEMORY": {"_count": 1, "Late": {"_count": 1}}}, "Late": {"_count": 3, "in": {"_count": 2, "the": {"_count": 2}}, "again": {"_count": 1, "Potter": {"_count": 1}}}, "oneoff": {"_count": 1, "connection": {"_count": 1, "to": {"_count": 1}}}, "parsnip": {"_count": 1, "for": {"_count": 1, "which": {"_count": 1}}}, "permitting": {"_count": 3, "his": {"_count": 1, "mother": {"_count": 1}}, "Harry": {"_count": 1, "entrance": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}}, "enfolded": {"_count": 1, "Harry": {"_count": 1, "in": {"_count": 1}}}, "Scrim": {"_count": 1, "Ive": {"_count": 1, "got": {"_count": 1}}}, "Abstinence": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Overindulged": {"_count": 1, "over": {"_count": 1, "Christmas": {"_count": 1}}}, "WonWons": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "vat": {"_count": 3, "of": {"_count": 3, "fivehundred": {"_count": 1}, "it": {"_count": 1}, "freshest": {"_count": 1}}}, "fivehundred": {"_count": 1, "year": {"_count": 1, "old": {"_count": 1}}}, "APPARITION": {"_count": 1, "LESSONS": {"_count": 1, "If": {"_count": 1}}}, "LESSONS": {"_count": 1, "If": {"_count": 1, "you": {"_count": 1}}}, "eligible": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "twelveweek": {"_count": 1, "course": {"_count": 1, "of": {"_count": 1}}}, "instructor": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}}, "Cost": {"_count": 1, "12": {"_count": 1, "Galleons": {"_count": 1}}}, "12": {"_count": 1, "Galleons": {"_count": 1, "": {"_count": 1}}}, "WonWon": {"_count": 4, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "thinks": {"_count": 1, "that": {"_count": 1}}, "said": {"_count": 1, "a": {"_count": 1}}}, "Fergus": {"_count": 1, "does": {"_count": 1, "it": {"_count": 1}}}, "hoselike": {"_count": 1, "jet": {"_count": 1, "that": {"_count": 1}}}, "baboon": {"_count": 1, "brandishing": {"_count": 1, "a": {"_count": 1}}}, "Dum": {"_count": 1, "er": {"_count": 1, "someone": {"_count": 1}}}, "SideAlong": {"_count": 2, "Apparition": {"_count": 2, "you": {"_count": 1}, "and": {"_count": 1}}}, "originally": {"_count": 1, "you": {"_count": 1, "know": {"_count": 1}}}, "intriguing": {"_count": 5, "subject": {"_count": 2, "but": {"_count": 1}, "so": {"_count": 1}}, "words": {"_count": 1, "For": {"_count": 1}}, "note": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "brainpower": {"_count": 1, "I": {"_count": 1, "understood": {"_count": 1}}}, "tolerant": {"_count": 3, "enough": {"_count": 1, "to": {"_count": 1}}, "anymore": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "sometimes": {"_count": 1}}}, "thievery": {"_count": 1, "when": {"_count": 1, "he": {"_count": 1}}}, "selfimportance": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "impressing": {"_count": 1, "fellow": {"_count": 1, "Slytherins": {"_count": 1}}}, "observations": {"_count": 1, "at": {"_count": 1, "first": {"_count": 1}}}, "motley": {"_count": 1, "collection": {"_count": 1, "a": {"_count": 1}}}, "gravitating": {"_count": 1, "toward": {"_count": 1, "a": {"_count": 1}}}, "Rigidly": {"_count": 1, "controlled": {"_count": 1, "by": {"_count": 1}}}, "Few": {"_count": 1, "who": {"_count": 1, "knew": {"_count": 1}}}, "painstaking": {"_count": 2, "effort": {"_count": 1, "after": {"_count": 1}}, "research": {"_count": 1, "through": {"_count": 1}}}, "succumbed": {"_count": 3, "to": {"_count": 2, "the": {"_count": 2}}, "for": {"_count": 1, "once": {"_count": 1}}}, "\u2018Marvolo": {"_count": 1, "which": {"_count": 1, "he": {"_count": 1}}}, "annually": {"_count": 1, "and": {"_count": 1, "set": {"_count": 1}}}, "indescribably": {"_count": 1, "filthy": {"_count": 1, "than": {"_count": 1}}}, "crusted": {"_count": 1, "pots": {"_count": 1, "": {"_count": 1}}}, "aint": {"_count": 5, "1": {"_count": 1, "": {"_count": 1}}, "got": {"_count": 1, "none": {"_count": 1}}, "a": {"_count": 1, "lot": {"_count": 1}}, "Greyback": {"_count": 1, "were": {"_count": 1}}, "answering": {"_count": 1, "you": {"_count": 1}}}, "blackstoned": {"_count": 1, "ring": {"_count": 1, "on": {"_count": 1}}}, "oldern": {"_count": 1, "you": {"_count": 1, "now": {"_count": 1}}}, "Robbed": {"_count": 1, "us": {"_count": 1, "mind": {"_count": 1}}}, "Dishonored": {"_count": 1, "us": {"_count": 1, "she": {"_count": 1}}}, "slut": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "sits": {"_count": 2, "before": {"_count": 1, "me": {"_count": 1}}, "here": {"_count": 1, "in": {"_count": 1}}}, "Mugglehater": {"_count": 3, "lived": {"_count": 1, "across": {"_count": 1}}, "who": {"_count": 1, "had": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}}, "\u2018Hell": {"_count": 2, "kill": {"_count": 2, "me": {"_count": 2}}}, "lamenting": {"_count": 1, "the": {"_count": 1, "loss": {"_count": 1}}}, "heirloom": {"_count": 3, "and": {"_count": 1, "is": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}}, "souls": {"_count": 5, "who": {"_count": 2, "have": {"_count": 1}, "had": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "than": {"_count": 1, "he": {"_count": 1}}, "are": {"_count": 1, "maimed": {"_count": 1}}}, "expired": {"_count": 1, "within": {"_count": 1, "its": {"_count": 1}}}, "Morfins": {"_count": 4, "wand": {"_count": 2, "and": {"_count": 1}, "beside": {"_count": 1}}, "mind": {"_count": 1, "when": {"_count": 1}}, "release": {"_count": 1, "from": {"_count": 1}}}, "revenging": {"_count": 1, "himself": {"_count": 1, "upon": {"_count": 1}}}, "implant": {"_count": 1, "a": {"_count": 1, "false": {"_count": 1}}}, "coax": {"_count": 1, "it": {"_count": 1, "out": {"_count": 1}}}, "perpetrator": {"_count": 1, "You": {"_count": 1, "will": {"_count": 1}}}, "rankled": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "enforce": {"_count": 1, "their": {"_count": 1, "offsprings": {"_count": 1}}}, "offsprings": {"_count": 1, "obedience": {"_count": 1, "while": {"_count": 1}}}, "phial": {"_count": 4, "and": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "into": {"_count": 1, "her": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Galleonsized": {"_count": 1, "bald": {"_count": 1, "patch": {"_count": 1}}}, "rotund": {"_count": 1, "as": {"_count": 1, "the": {"_count": 1}}}, "pouffe": {"_count": 2, "he": {"_count": 1, "was": {"_count": 1}}, "a": {"_count": 1, "small": {"_count": 1}}}, "midteens": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "negligently": {"_count": 1, "upon": {"_count": 1, "the": {"_count": 1}}}, "goldand": {"_count": 1, "black": {"_count": 1, "ring": {"_count": 1}}}, "Merrythought": {"_count": 3, "is": {"_count": 2, "retiring": {"_count": 2}}, "who": {"_count": 1, "had": {"_count": 1}}}, "retiring": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "sugarcovered": {"_count": 1, "finger": {"_count": 1, "at": {"_count": 1}}}, "knowledgeable": {"_count": 2, "than": {"_count": 2, "half": {"_count": 2}}}, "flattery": {"_count": 3, "of": {"_count": 2, "the": {"_count": 2}}, "none": {"_count": 1, "of": {"_count": 1}}}, "tittered": {"_count": 2, "something": {"_count": 1, "very": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "allusion": {"_count": 1, "to": {"_count": 1, "it": {"_count": 1}}}, "Horcruxes": {"_count": 89, "": {"_count": 37, "?": {"_count": 7}, ".": {"_count": 27}, "!": {"_count": 3}}, "and": {"_count": 5, "I": {"_count": 1}, "Dumbledores": {"_count": 1}, "kill": {"_count": 1}, "how": {"_count": 1}, "even": {"_count": 1}}, "were": {"_count": 3, "": {"_count": 1}, "Id": {"_count": 1}, "no": {"_count": 1}}, "sir": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "was": {"_count": 1}}, "do": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 2, "mumbled": {"_count": 1}, "Lord": {"_count": 1}}, "Tom": {"_count": 1, "thats": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "Horcruxes": {"_count": 1, "in": {"_count": 1}}, "in": {"_count": 5, "the": {"_count": 3}, "that": {"_count": 1}, "places": {"_count": 1}}, "to": {"_count": 1, "Lord": {"_count": 1}}, "He": {"_count": 1, "would": {"_count": 1}}, "six": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "said": {"_count": 1}}, "remain": {"_count": 1, "": {"_count": 1}}, "with": {"_count": 1, "some": {"_count": 1}}, "three": {"_count": 1, "and": {"_count": 1}}, "for": {"_count": 1, "particularly": {"_count": 1}}, "but": {"_count": 2, "still": {"_count": 1}, "I": {"_count": 1}}, "are": {"_count": 1, "destroyed": {"_count": 1}}, "Voldemort": {"_count": 1, "will": {"_count": 1}}, "out": {"_count": 2, "there": {"_count": 2}}, "havent": {"_count": 1, "I": {"_count": 1}}, "as": {"_count": 1, "soon": {"_count": 1}}, "till": {"_count": 1, "youre": {"_count": 1}}, "Ill": {"_count": 1, "find": {"_count": 1}}, "our": {"_count": 1, "priority": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "would": {"_count": 1, "it": {"_count": 1}}, "before": {"_count": 1, "he": {"_count": 1}}, "shall": {"_count": 1, "we": {"_count": 1}}, "Harry": {"_count": 2, "": {"_count": 1}, "finished": {"_count": 1}}, "left": {"_count": 1, "he": {"_count": 1}}, "or": {"_count": 1, "Hallows": {"_count": 1}}, "must": {"_count": 1, "be": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "hes": {"_count": 1, "keeping": {"_count": 1}}, "now": {"_count": 1, "Neville": {"_count": 1}}}, "mg": {"_count": 1, "in": {"_count": 1, "front": {"_count": 1}}}, "Tampered": {"_count": 1, "with": {"_count": 1, "": {"_count": 1}}}, "rework": {"_count": 1, "the": {"_count": 1, "memory": {"_count": 1}}}, "crudely": {"_count": 1, "done": {"_count": 1, "and": {"_count": 1}}}, "coerced": {"_count": 1, "him": {"_count": 1, "into": {"_count": 1}}}, "wrest": {"_count": 1, "the": {"_count": 1, "truth": {"_count": 1}}}, "SURPRISES": {"_count": 1, "The": {"_count": 1, "next": {"_count": 1}}}, "forkful": {"_count": 1, "of": {"_count": 1, "fried": {"_count": 1}}}, "Wons": {"_count": 1, "judgment": {"_count": 1, "ever": {"_count": 1}}}, "ankledeep": {"_count": 1, "in": {"_count": 1, "snow": {"_count": 1}}}, "Golpalotts": {"_count": 4, "Third": {"_count": 4, "Law": {"_count": 4}}}, "GolpalottsThird": {"_count": 1, "Lawstatesthattheantidoteforablendedpoison": {"_count": 1, "willbeequaltomorethanthesumoftheantidotes": {"_count": 1}}}, "Lawstatesthattheantidoteforablendedpoison": {"_count": 1, "willbeequaltomorethanthesumoftheantidotes": {"_count": 1, "foreachoftheseparatecomponents": {"_count": 1}}}, "willbeequaltomorethanthesumoftheantidotes": {"_count": 1, "foreachoftheseparatecomponents": {"_count": 1, "": {"_count": 1}}}, "foreachoftheseparatecomponents": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "identification": {"_count": 4, "of": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "arrest": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "before": {"_count": 1, "": {"_count": 1}}}, "Scarpins": {"_count": 1, "Revelaspell": {"_count": 1, "our": {"_count": 1}}}, "Revelaspell": {"_count": 1, "our": {"_count": 1, "primary": {"_count": 1}}}, "component": {"_count": 1, "that": {"_count": 1, "will": {"_count": 1}}}, "alchemical": {"_count": 1, "process": {"_count": 1, "transform": {"_count": 1}}}, "disparate": {"_count": 1, "elements": {"_count": 1, "Ron": {"_count": 1}}}, "elements": {"_count": 2, "Ron": {"_count": 1, "was": {"_count": 1}}, "now": {"_count": 1, "": {"_count": 1}}}, "cheats": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "trusty": {"_count": 1, "copy": {"_count": 1, "of": {"_count": 1}}}, "Reveliol": {"_count": 1, "over": {"_count": 1, "his": {"_count": 1}}}, "exclaim": {"_count": 1, "in": {"_count": 1, "delight": {"_count": 1}}}, "smugger": {"_count": 1, "she": {"_count": 1, "had": {"_count": 1}}}, "outperformed": {"_count": 1, "in": {"_count": 1, "every": {"_count": 1}}}, "decanting": {"_count": 1, "the": {"_count": 1, "mysteriously": {"_count": 1}}}, "bezoars": {"_count": 2, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "Golpalott": {"_count": 1, "problem": {"_count": 1, "and": {"_count": 1}}}, "driedup": {"_count": 1, "kidneys": {"_count": 1, "than": {"_count": 1}}}, "kidneys": {"_count": 1, "than": {"_count": 1, "real": {"_count": 1}}}, "comprising": {"_count": 1, "fiftytwo": {"_count": 1, "ingredients": {"_count": 1}}}, "intuitive": {"_count": 1, "grasp": {"_count": 1, "of": {"_count": 1}}}, "catsick": {"_count": 1, "over": {"_count": 1, "himself": {"_count": 1}}}, "inordinate": {"_count": 1, "amount": {"_count": 1, "of": {"_count": 1}}}, "affably": {"_count": 1, "snapping": {"_count": 1, "the": {"_count": 1}}}, "clasps": {"_count": 1, "shut": {"_count": 1, "on": {"_count": 1}}}, "licked": {"_count": 3, "his": {"_count": 3, "lips": {"_count": 3}}}, "genial": {"_count": 1, "anymore": {"_count": 1, "but": {"_count": 1}}}, "dragonskin": {"_count": 1, "briefcase": {"_count": 1, "stuffed": {"_count": 1}}}, "Infuriated": {"_count": 1, "by": {"_count": 1, "his": {"_count": 1}}}, "attitudes": {"_count": 1, "Harry": {"_count": 1, "brooded": {"_count": 1}}}, "brooded": {"_count": 2, "for": {"_count": 1, "the": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "reschedule": {"_count": 1, "Quidditch": {"_count": 1, "practice": {"_count": 1}}}, "Magick": {"_count": 1, "Moste": {"_count": 1, "Evile": {"_count": 1}}}, "Evile": {"_count": 1, "listen": {"_count": 1, "\u2018Of": {"_count": 1}}}, "\u2018Of": {"_count": 1, "the": {"_count": 1, "Horcrux": {"_count": 1}}}, "Horcrux": {"_count": 137, "wickedest": {"_count": 1, "of": {"_count": 1}}, "memory": {"_count": 1, "and": {"_count": 1}}, "is": {"_count": 12, "the": {"_count": 2}, "supposed": {"_count": 1}, "as": {"_count": 1}, "": {"_count": 1}, "destroyed": {"_count": 1}, "it": {"_count": 2}, "here": {"_count": 1}, "at": {"_count": 1}, "in": {"_count": 2}}, "would": {"_count": 1, "use": {"_count": 1}}, "be": {"_count": 2, "much": {"_count": 1}, "the": {"_count": 1}}, "": {"_count": 33, "?": {"_count": 10}, ".": {"_count": 21}, "!": {"_count": 2}}, "hidden": {"_count": 2, "somewhere": {"_count": 1}, "in": {"_count": 1}}, "what": {"_count": 1, "would": {"_count": 1}}, "seemed": {"_count": 1, "most": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "short": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}, "that": {"_count": 4, "was": {"_count": 1}, "currently": {"_count": 1}, "resided": {"_count": 1}, "the": {"_count": 1}}, "other": {"_count": 1, "than": {"_count": 1}}, "for": {"_count": 1, "his": {"_count": 1}}, "he": {"_count": 3, "wanted": {"_count": 1}, "became": {"_count": 1}, "never": {"_count": 1}}, "a": {"_count": 1, "body": {"_count": 1}}, "we": {"_count": 1, "shall": {"_count": 1}}, "and": {"_count": 5, "intend": {"_count": 2}, "placed": {"_count": 1}, "Hermione": {"_count": 1}, "Harry": {"_count": 1}}, "against": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "had": {"_count": 4, "to": {"_count": 1}, "tightened": {"_count": 1}, "vanished": {"_count": 1}, "not": {"_count": 1}}, "knew": {"_count": 1, "Voldemort": {"_count": 1}}, "which": {"_count": 4, "he": {"_count": 1}, "was": {"_count": 1}, "Harry": {"_count": 1}, "swung": {"_count": 1}}, "but": {"_count": 4, "in": {"_count": 1}, "somehow": {"_count": 1}, "they": {"_count": 1}, "his": {"_count": 1}}, "in": {"_count": 2, "which": {"_count": 1}, "the": {"_count": 1}}, "books": {"_count": 1, "": {"_count": 1}}, "then": {"_count": 1, "if": {"_count": 1}}, "by": {"_count": 2, "the": {"_count": 1}, "borrowing": {"_count": 1}}, "cant": {"_count": 1, "repair": {"_count": 1}}, "wont": {"_count": 1, "do": {"_count": 1}}, "the": {"_count": 1, "substitute": {"_count": 1}}, "Harry": {"_count": 4, "told": {"_count": 1}, "youre": {"_count": 1}, "said": {"_count": 1}, "the": {"_count": 1}}, "ring": {"_count": 1, "had": {"_count": 1}}, "to": {"_count": 1, "Harry": {"_count": 1}}, "lying": {"_count": 1, "around": {"_count": 1}}, "straightaway": {"_count": 1, "": {"_count": 1}}, "around": {"_count": 1, "his": {"_count": 1}}, "here": {"_count": 1, "Harry": {"_count": 1}}, "between": {"_count": 1, "them": {"_count": 1}}, "locations": {"_count": 1, "but": {"_count": 1}}, "glinting": {"_count": 1, "there": {"_count": 1}}, "every": {"_count": 1, "other": {"_count": 1}}, "Yeah": {"_count": 1, "and": {"_count": 1}}, "beat": {"_count": 1, "faster": {"_count": 1}}, "beating": {"_count": 1, "fast": {"_count": 1}}, "twitched": {"_count": 1, "so": {"_count": 1}}, "hard": {"_count": 1, "into": {"_count": 1}}, "off": {"_count": 1, "you": {"_count": 1}}, "dangling": {"_count": 1, "from": {"_count": 1}}, "was": {"_count": 3, "still": {"_count": 1}, "connected": {"_count": 1}, "he": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "down": {"_count": 2, "mate": {"_count": 1}, "said": {"_count": 1}}, "Marvolo": {"_count": 1, "Gaunt": {"_count": 1}}, "demonstrate": {"_count": 1, "that": {"_count": 1}}, "though": {"_count": 1, "": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "because": {"_count": 1, "he": {"_count": 1}}, "there": {"_count": 1, "was": {"_count": 1}}, "decides": {"_count": 1, "it": {"_count": 1}}, "or": {"_count": 1, "at": {"_count": 1}}, "almost": {"_count": 1, "forgotten": {"_count": 1}}, "sat": {"_count": 2, "waiting": {"_count": 1}, "lopsided": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}, "remained": {"_count": 1, "to": {"_count": 1}}}, "wickedest": {"_count": 1, "of": {"_count": 1, "magical": {"_count": 1}}}, "dreary": {"_count": 3, "wetness": {"_count": 1, "": {"_count": 1}}, "litany": {"_count": 1, "those": {"_count": 1}}, "shower": {"_count": 1, "of": {"_count": 1}}}, "wetness": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "Purplishgray": {"_count": 1, "clouds": {"_count": 1, "hung": {"_count": 1}}}, "gust": {"_count": 3, "of": {"_count": 3, "wind": {"_count": 2}, "chilly": {"_count": 1}}}, "reappearances": {"_count": 1, "had": {"_count": 1, "somehow": {"_count": 1}}}, "Wilkie": {"_count": 3, "Twycross": {"_count": 3, "and": {"_count": 2}, "dispassionately": {"_count": 1}}}, "Twycross": {"_count": 13, "and": {"_count": 3, "I": {"_count": 1}, "only": {"_count": 1}, "his": {"_count": 1}}, "continued": {"_count": 1, "as": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "focus": {"_count": 1, "your": {"_count": 1}}, "dryly": {"_count": 1, "who": {"_count": 1}}, "dispassionately": {"_count": 1, "occurs": {"_count": 1}}, "stepped": {"_count": 1, "forward": {"_count": 1}}, "did": {"_count": 1, "not": {"_count": 1}}, "going": {"_count": 1, "on": {"_count": 1}}}, "marshaling": {"_count": 3, "them": {"_count": 1, "into": {"_count": 1}}, "his": {"_count": 1, "thoughts": {"_count": 1}}, "counterarguments": {"_count": 1, "against": {"_count": 1}}}, "chivying": {"_count": 1, "the": {"_count": 1, "Hufflepuffs": {"_count": 1}}}, "secondguess": {"_count": 1, "what": {"_count": 1, "he": {"_count": 1}}}, "Oldfashioned": {"_count": 1, "wooden": {"_count": 1, "hoops": {"_count": 1}}}, "Destination": {"_count": 3, "Determination": {"_count": 1, "Deliberation": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Determination": {"_count": 2, "Deliberation": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Deliberation": {"_count": 2, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}}, "Fix": {"_count": 1, "your": {"_count": 1, "mind": {"_count": 1}}}, "puzzling": {"_count": 1, "over": {"_count": 1, "what": {"_count": 1}}}, "visualized": {"_count": 2, "space": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "a": {"_count": 1}}}, "Quafflesized": {"_count": 1, "egg": {"_count": 1, "": {"_count": 1}}}, "deliberation": {"_count": 4, "": {"_count": 3, "!": {"_count": 1}, ".": {"_count": 2}}, "divination": {"_count": 1, "and": {"_count": 1}}}, "pirouetting": {"_count": 1, "leap": {"_count": 1, "into": {"_count": 1}}}, "Adjust": {"_count": 1, "your": {"_count": 1, "hoops": {"_count": 1}}}, "Splinching": {"_count": 3, "or": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "as": {"_count": 1, "something": {"_count": 1}}}, "insufficiently": {"_count": 1, "determined": {"_count": 1, "": {"_count": 1}}}, "Susans": {"_count": 1, "Splinching": {"_count": 1, "was": {"_count": 1}}}, "Fastening": {"_count": 1, "his": {"_count": 1, "cloak": {"_count": 1}}}, "detained": {"_count": 1, "by": {"_count": 1, "Peeves": {"_count": 1}}}, "rummage": {"_count": 2, "in": {"_count": 1, "it": {"_count": 1}}, "after": {"_count": 1, "a": {"_count": 1}}}, "aha": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "parchments": {"_count": 1, "surface": {"_count": 1, "": {"_count": 1}}}, "signified": {"_count": 1, "each": {"_count": 1, "of": {"_count": 1}}}, "locate": {"_count": 6, "on": {"_count": 1, "the": {"_count": 1}}, "Malfoy": {"_count": 1, "on": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}, "the": {"_count": 1, "exit": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "a": {"_count": 1, "good": {"_count": 1}}}, "inseparable": {"_count": 1, "these": {"_count": 1, "things": {"_count": 1}}}, "Splinch": {"_count": 1, "themselves": {"_count": 1, "": {"_count": 1}}}, "Frustration": {"_count": 2, "was": {"_count": 1, "running": {"_count": 1}}, "and": {"_count": 1, "bitter": {"_count": 1}}}, "illfeeling": {"_count": 1, "toward": {"_count": 1, "Wilkie": {"_count": 1}}}, "politest": {"_count": 1, "of": {"_count": 1, "which": {"_count": 1}}}, "Dogbreath": {"_count": 4, "and": {"_count": 1, "Dunghead": {"_count": 1}}, "Doge": {"_count": 3, "the": {"_count": 1}, "who": {"_count": 1}, "could": {"_count": 1}}}, "Dunghead": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "drowsily": {"_count": 1, "and": {"_count": 1, "as": {"_count": 1}}}, "turfed": {"_count": 1, "out": {"_count": 1, "half": {"_count": 1}}}, "periodic": {"_count": 1, "disappearances": {"_count": 1, "but": {"_count": 1}}}, "impractical": {"_count": 1, "idea": {"_count": 1, "Harry": {"_count": 1}}}, "remarked": {"_count": 1, "upon": {"_count": 1, "": {"_count": 1}}}, "bedpost": {"_count": 1, "staring": {"_count": 1, "out": {"_count": 1}}}, "scrutinized": {"_count": 1, "him": {"_count": 1, "suspiciously": {"_count": 1}}}, "albeit": {"_count": 2, "puzzled": {"_count": 1, "as": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "LavLav": {"_count": 1, "he": {"_count": 1, "would": {"_count": 1}}}, "stampeding": {"_count": 2, "troll": {"_count": 1, "": {"_count": 1}}, "centaurs": {"_count": 1, "and": {"_count": 1}}}, "undying": {"_count": 1, "love": {"_count": 1, "for": {"_count": 1}}}, "complication": {"_count": 1, "Harry": {"_count": 1, "had": {"_count": 1}}}, "pouted": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Hepzibah": {"_count": 1, "": {"_count": 1}}}, "potioneer": {"_count": 1, "like": {"_count": 1, "you": {"_count": 1}}}, "Helpfully": {"_count": 1, "Ron": {"_count": 1, "chose": {"_count": 1}}}, "strengthen": {"_count": 4, "you": {"_count": 1, "know": {"_count": 1}}, "them": {"_count": 1, "Harry": {"_count": 1}}, "him": {"_count": 1, "": {"_count": 1}}, "himself": {"_count": 1, "he": {"_count": 1}}}, "overheated": {"_count": 1, "crowded": {"_count": 1, "study": {"_count": 1}}}, "pinches": {"_count": 1, "of": {"_count": 1, "this": {"_count": 1}}}, "arrives": {"_count": 1, "you": {"_count": 1, "know": {"_count": 1}}}, "Pickmeup": {"_count": 1, "thats": {"_count": 1, "what": {"_count": 1}}}, "hmm": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ralph": {"_count": 1, "Ron": {"_count": 1, "whispered": {"_count": 1}}}, "heartbeat": {"_count": 3, "in": {"_count": 1, "which": {"_count": 1}}, "then": {"_count": 1, "Snape": {"_count": 1}}, "ticking": {"_count": 1, "irregularly": {"_count": 1}}}, "halfrose": {"_count": 1, "from": {"_count": 1, "his": {"_count": 1}}}, "extremities": {"_count": 2, "jerking": {"_count": 1, "uncontrollably": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "Foam": {"_count": 1, "was": {"_count": 1, "dribbling": {"_count": 1}}}, "pouches": {"_count": 1, "while": {"_count": 1, "the": {"_count": 1}}}, "gargling": {"_count": 1, "breath": {"_count": 1, "filled": {"_count": 1}}}, "kidneylike": {"_count": 1, "stone": {"_count": 1, "Slughorn": {"_count": 1}}}, "ELF": {"_count": 2, "TAILS": {"_count": 1, "So": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "TAILS": {"_count": 1, "So": {"_count": 1, "all": {"_count": 1}}}, "clenchjawed": {"_count": 1, "and": {"_count": 1, "frightenedlooking": {"_count": 1}}}, "mumble": {"_count": 1, "a": {"_count": 1, "little": {"_count": 1}}}, "Anythings": {"_count": 1, "possible": {"_count": 1, "said": {"_count": 1}}}, "poisoner": {"_count": 2, "could": {"_count": 1, "just": {"_count": 1}}, "didnt": {"_count": 1, "know": {"_count": 1}}}, "Ermynee": {"_count": 2, "croaked": {"_count": 1, "Ron": {"_count": 1}}, "oo": {"_count": 1, "worry": {"_count": 1}}}, "incomprehensibly": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "rainflecked": {"_count": 1, "his": {"_count": 1, "bearskin": {"_count": 1}}}, "bearskin": {"_count": 1, "coat": {"_count": 1, "flapping": {"_count": 1}}}, "dolphinsized": {"_count": 1, "footprints": {"_count": 1, "all": {"_count": 1}}}, "vastness": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 2, "the": {"_count": 2}}}, "nex": {"_count": 1, "thing": {"_count": 1, "yeh": {"_count": 1}}}, "governorsll": {"_count": 1, "be": {"_count": 1, "talkin": {"_count": 1}}}, "shuttin": {"_count": 1, "us": {"_count": 1, "up": {"_count": 1}}}, "Mag": {"_count": 1, "Dont": {"_count": 1, "try": {"_count": 1}}}, "evenin": {"_count": 2, "an": {"_count": 1, "I": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}}, "arguin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "overworked": {"_count": 1, "thas": {"_count": 1, "all": {"_count": 1}}}, "obnoxiously": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "yearolds": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "inexplicable": {"_count": 7, "times": {"_count": 1, "when": {"_count": 1}}, "smirk": {"_count": 1, "cross": {"_count": 1}}, "feeling": {"_count": 1, "that": {"_count": 1}}, "moments": {"_count": 1, "when": {"_count": 1}}, "danger": {"_count": 1, "": {"_count": 1}}, "familiarity": {"_count": 1, "": {"_count": 1}}, "absence": {"_count": 1, "of": {"_count": 1}}}, "dogged": {"_count": 3, "wherever": {"_count": 1, "he": {"_count": 1}}, "him": {"_count": 1, "even": {"_count": 1}}, "the": {"_count": 1, "little": {"_count": 1}}}, "sidling": {"_count": 1, "up": {"_count": 1, "to": {"_count": 1}}}, "lectures": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "indepth": {"_count": 1, "chats": {"_count": 1, "with": {"_count": 1}}}, "chats": {"_count": 1, "with": {"_count": 1, "him": {"_count": 1}}}, "forgone": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "overexcite": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "shaping": {"_count": 1, "up": {"_count": 1, "": {"_count": 1}}}, "worldclass": {"_count": 1, "and": {"_count": 1, "I": {"_count": 1}}}, "McLag": {"_count": 1, "I": {"_count": 1, "mean": {"_count": 1}}}, "gauge": {"_count": 2, "how": {"_count": 1, "much": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Scored": {"_count": 1, "whatever": {"_count": 1, "they": {"_count": 1}}}, "dirtyblonde": {"_count": 1, "hair": {"_count": 1, "nor": {"_count": 1}}}, "Bibble": {"_count": 1, "no": {"_count": 1, "Buggins": {"_count": 1}}}, "Buggins": {"_count": 1, "Its": {"_count": 1, "Cadwallader": {"_count": 1}}}, "Cadwallader": {"_count": 4, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "scored": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}}, "ruse": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Swearing": {"_count": 1, "angrily": {"_count": 1, "Harry": {"_count": 1}}}, "redandgoldclad": {"_count": 1, "supporters": {"_count": 1, "below": {"_count": 1}}}, "Losers": {"_count": 2, "Lurgy": {"_count": 2, "": {"_count": 2}}}, "Lurgy": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Seventyforty": {"_count": 1, "to": {"_count": 1, "Hufflepuff": {"_count": 1}}}, "mishit": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "familiarlooking": {"_count": 1, "freckly": {"_count": 1, "redhaired": {"_count": 1}}}, "Cracked": {"_count": 1, "skull": {"_count": 1, "said": {"_count": 1}}}, "overexert": {"_count": 1, "yourself": {"_count": 1, "for": {"_count": 1}}}, "\u2018overexertion": {"_count": 1, "said": {"_count": 1, "Madam": {"_count": 1}}}, "discharge": {"_count": 1, "you": {"_count": 1, "Potter": {"_count": 1}}}, "Final": {"_count": 1, "score": {"_count": 1, "was": {"_count": 1}}}, "toenail": {"_count": 1, "thing": {"_count": 1, "of": {"_count": 1}}}, "tender": {"_count": 1, "underneath": {"_count": 1, "all": {"_count": 1}}}, "commentates": {"_count": 1, "from": {"_count": 1, "now": {"_count": 1}}}, "overdrive": {"_count": 1, "rapidly": {"_count": 1, "constructing": {"_count": 1}}}, "constructing": {"_count": 1, "a": {"_count": 1, "scene": {"_count": 1}}}, "attraction": {"_count": 5, "to": {"_count": 1, "him": {"_count": 1}}, "of": {"_count": 1, "teaching": {"_count": 1}}, "was": {"_count": 1, "undoubtedly": {"_count": 1}}, "He": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "imploded": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "disappears": {"_count": 1, "off": {"_count": 1, "the": {"_count": 1}}}, "lamplight": {"_count": 5, "above": {"_count": 1, "him": {"_count": 1}}, "fell": {"_count": 1, "across": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}, "hands": {"_count": 1, "still": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "incurably": {"_count": 1, "inept": {"_count": 1, "Professor": {"_count": 1}}}, "regrowing": {"_count": 1, "an": {"_count": 1, "armful": {"_count": 1}}}, "MuffliatoV": {"_count": 1, "so": {"_count": 1, "that": {"_count": 1}}}, "bitey": {"_count": 2, "bitey": {"_count": 1, "punchy": {"_count": 1}}, "punchy": {"_count": 1, "punchy": {"_count": 1}}}, "punchy": {"_count": 2, "punchy": {"_count": 1, "Kreacher": {"_count": 1}}, "Kreacher": {"_count": 1, "will": {"_count": 1}}}, "kicky": {"_count": 1, "scratchy": {"_count": 1, "": {"_count": 1}}}, "enrage": {"_count": 1, "them": {"_count": 1, "further": {"_count": 1}}}, "Tweaky": {"_count": 1, "pokey": {"_count": 1, "": {"_count": 1}}}, "pokey": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "nosey": {"_count": 1, "draw": {"_count": 1, "his": {"_count": 1}}}, "earsies": {"_count": 1, "Harry": {"_count": 1, "aimed": {"_count": 1}}}, "Langlockl": {"_count": 1, "Peeves": {"_count": 1, "clutched": {"_count": 1}}}, "tennisballsized": {"_count": 1, "eyes": {"_count": 1, "still": {"_count": 1}}}, "greatnephew": {"_count": 2, "of": {"_count": 1, "my": {"_count": 1}}, "Gellert": {"_count": 1, "Grindelwald": {"_count": 1}}}, "foreseeing": {"_count": 1, "a": {"_count": 1, "great": {"_count": 1}}}, "determining": {"_count": 1, "to": {"_count": 1, "prevent": {"_count": 1}}}, "plasters": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "VOLDEMORTS": {"_count": 1, "REQUEST": {"_count": 1, "Harry": {"_count": 1}}}, "REQUEST": {"_count": 1, "Harry": {"_count": 1, "and": {"_count": 1}}}, "ministrations": {"_count": 2, "of": {"_count": 1, "Madam": {"_count": 1}}, "Georges": {"_count": 1, "wound": {"_count": 1}}}, "tutus": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "toadstool": {"_count": 3, "and": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "back": {"_count": 1, "into": {"_count": 1}}}, "onionlike": {"_count": 1, "object": {"_count": 1, "up": {"_count": 1}}}, "Gurdyroot": {"_count": 4, "she": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "infusion": {"_count": 2, "and": {"_count": 1}, "": {"_count": 1}}}, "warding": {"_count": 1, "off": {"_count": 1, "Gulping": {"_count": 1}}}, "Gulping": {"_count": 2, "Plimpies": {"_count": 1, "": {"_count": 1}}, "Madam": {"_count": 1, "Pomfrey": {"_count": 1}}}, "Plimpies": {"_count": 5, "": {"_count": 3, ".": {"_count": 3}}, "to": {"_count": 1, "make": {"_count": 1}}, "soon": {"_count": 1, "he": {"_count": 1}}}, "usurping": {"_count": 1, "nag": {"_count": 1, "so": {"_count": 1}}}, "enlighten": {"_count": 1, "her": {"_count": 1, "that": {"_count": 1}}}, "exerted": {"_count": 2, "your": {"_count": 1, "very": {"_count": 1}}, "a": {"_count": 1, "powerful": {"_count": 1}}}, "ingenuity": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "depth": {"_count": 2, "of": {"_count": 2, "cunning": {"_count": 1}, "velvety": {"_count": 1}}}, "unplumbed": {"_count": 1, "in": {"_count": 1, "your": {"_count": 1}}}, "stalled": {"_count": 2, "at": {"_count": 1, "a": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "embarrassingly": {"_count": 1, "feeble": {"_count": 1, "": {"_count": 1}}}, "shamefacedly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "realms": {"_count": 4, "of": {"_count": 4, "guesswork": {"_count": 1}, "what": {"_count": 1}, "whooping": {"_count": 1}, "magic": {"_count": 1}}}, "deductions": {"_count": 1, "as": {"_count": 1, "to": {"_count": 1}}}, "reminisce": {"_count": 1, "about": {"_count": 1, "the": {"_count": 1}}}, "retrieving": {"_count": 2, "the": {"_count": 1, "Horcrux": {"_count": 1}}, "an": {"_count": 1, "old": {"_count": 1}}}, "Hokey": {"_count": 16, "": {"_count": 7, ".": {"_count": 3}, "!": {"_count": 2}, "?": {"_count": 2}}, "witnessed": {"_count": 1, "I": {"_count": 1}}, "the": {"_count": 2, "houseelf": {"_count": 2}}, "bring": {"_count": 1, "it": {"_count": 1}}, "where": {"_count": 1, "are": {"_count": 1}}, "take": {"_count": 1, "these": {"_count": 1}}, "confessed": {"_count": 1, "": {"_count": 1}}, "because": {"_count": 1, "she": {"_count": 1}}, "was": {"_count": 1, "convicted": {"_count": 1}}}, "schooling": {"_count": 1, "with": {"_count": 1, "as": {"_count": 1}}}, "Hokeys": {"_count": 3, "memory": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}, "contract": {"_count": 1, "that": {"_count": 1}}}, "stronghold": {"_count": 1, "of": {"_count": 1, "ancient": {"_count": 1}}}, "unravel": {"_count": 2, "stores": {"_count": 1, "of": {"_count": 1}}, "them": {"_count": 1, "for": {"_count": 1}}}, "envisaged": {"_count": 2, "spending": {"_count": 1, "the": {"_count": 1}}, "a": {"_count": 1, "situation": {"_count": 1}}}, "reapply": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "Deeply": {"_count": 1, "uneasy": {"_count": 1, "said": {"_count": 1}}}, "Galatea": {"_count": 1, "Merrythought": {"_count": 1, "who": {"_count": 1}}}, "Polite": {"_count": 1, "and": {"_count": 1, "handsome": {"_count": 1}}}, "Hepzibah": {"_count": 24, "Smith": {"_count": 4, "": {"_count": 1}, "looked": {"_count": 1}, "died": {"_count": 1}, "from": {"_count": 1}}, "imperiously": {"_count": 1, "": {"_count": 1}}, "s": {"_count": 2, "chair": {"_count": 1}, "fat": {"_count": 1}}, "turning": {"_count": 1, "her": {"_count": 1}}, "and": {"_count": 2, "the": {"_count": 1}, "Voldemort": {"_count": 1}}, "though": {"_count": 1, "Harry": {"_count": 1}}, "I": {"_count": 1, "know": {"_count": 1}}, "simpered": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "waving": {"_count": 1, "a": {"_count": 1}}, "shows": {"_count": 1, "me": {"_count": 1}}, "gave": {"_count": 1, "another": {"_count": 1}}, "happily": {"_count": 2, "taking": {"_count": 1}, "wheres": {"_count": 1}}, "leaning": {"_count": 1, "forward": {"_count": 1}}, "turned": {"_count": 1, "her": {"_count": 1}}, "delighted": {"_count": 1, "apparently": {"_count": 1}}, "looking": {"_count": 1, "unnerved": {"_count": 1}}, "so": {"_count": 1, "regularly": {"_count": 1}}}, "flowed": {"_count": 3, "all": {"_count": 1, "around": {"_count": 1}}, "down": {"_count": 1, "Hermiones": {"_count": 1}}, "from": {"_count": 1, "brain": {"_count": 1}}}, "rouge": {"_count": 1, "onto": {"_count": 1, "her": {"_count": 1}}}, "lacquered": {"_count": 1, "boxes": {"_count": 1, "cases": {"_count": 1}}}, "goldembossed": {"_count": 1, "books": {"_count": 1, "shelves": {"_count": 1}}}, "containers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "conservatory": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mistresss": {"_count": 3, "elbow": {"_count": 1, "": {"_count": 1}}, "evening": {"_count": 1, "cocoa": {"_count": 1}}, "cocoa": {"_count": 1, "that": {"_count": 1}}}, "lashes": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Harry": {"_count": 1, "saw": {"_count": 1}}}, "trinkets": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "Kreacher": {"_count": 1, "had": {"_count": 1}}}, "inquire": {"_count": 2, "Oh": {"_count": 1, "Mr": {"_count": 1}}, "further": {"_count": 1, "": {"_count": 1}}}, "phooey": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "volition": {"_count": 2, "though": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "wended": {"_count": 1, "her": {"_count": 1, "way": {"_count": 1}}}, "pouffes": {"_count": 1, "and": {"_count": 1, "footstools": {"_count": 1}}}, "Hepzibahs": {"_count": 3, "face": {"_count": 1, "except": {"_count": 1}}, "family": {"_count": 1, "had": {"_count": 1}}, "cup": {"_count": 1, "and": {"_count": 1}}}, "corsets": {"_count": 1, "and": {"_count": 1, "actually": {"_count": 1}}}, "boxed": {"_count": 1, "cup": {"_count": 1, "and": {"_count": 1}}}, "Lean": {"_count": 2, "in": {"_count": 1, "a": {"_count": 1}}, "on": {"_count": 1, "me": {"_count": 1}}}, "filigree": {"_count": 1, "clasp": {"_count": 1, "and": {"_count": 1}}}, "raggedlooking": {"_count": 1, "woman": {"_count": 1, "who": {"_count": 1}}}, "whiten": {"_count": 3, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "lockets": {"_count": 7, "chain": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 2, "mysterious": {"_count": 1}, "watched": {"_count": 1}}, "hiding": {"_count": 1, "place": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "gone": {"_count": 1, "I": {"_count": 1}}, "two": {"_count": 1, "windows": {"_count": 1}}}, "pittance": {"_count": 1, "but": {"_count": 1, "there": {"_count": 1}}}, "attributed": {"_count": 2, "to": {"_count": 1, "it": {"_count": 1}}, "this": {"_count": 1, "to": {"_count": 1}}}, "similarities": {"_count": 1, "between": {"_count": 1, "this": {"_count": 1}}}, "littleknown": {"_count": 1, "poison": {"_count": 1, "said": {"_count": 1}}}, "predisposed": {"_count": 1, "to": {"_count": 1, "suspect": {"_count": 1}}}, "Risking": {"_count": 1, "everything": {"_count": 1, "throwing": {"_count": 1}}}, "rightfully": {"_count": 2, "his": {"_count": 1, "": {"_count": 1}}, "theirs": {"_count": 1, "": {"_count": 1}}}, "Hogwartss": {"_count": 2, "founders": {"_count": 1, "said": {"_count": 1}}, "secrets": {"_count": 1, "": {"_count": 1}}}, "steeped": {"_count": 1, "in": {"_count": 1, "Hogwarts": {"_count": 1}}}, "separates": {"_count": 1, "Hokeys": {"_count": 1, "memory": {"_count": 1}}}, "slumbering": {"_count": 3, "happily": {"_count": 1, "on": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}, "creature": {"_count": 1, "": {"_count": 1}}}, "youthful": {"_count": 2, "beginnings": {"_count": 1, "": {"_count": 1}}, "victims": {"_count": 1, "who": {"_count": 1}}}, "dictate": {"_count": 1, "the": {"_count": 1, "terms": {"_count": 1}}}, "hone": {"_count": 1, "young": {"_count": 1, "minds": {"_count": 1}}}, "expectancy": {"_count": 1, "for": {"_count": 1, "Voldemort": {"_count": 1}}}, "doings": {"_count": 1, "have": {"_count": 1, "reached": {"_count": 1}}}, "Greatness": {"_count": 1, "inspires": {"_count": 1, "envy": {"_count": 1}}}, "inspires": {"_count": 1, "envy": {"_count": 1, "envy": {"_count": 1}}}, "engenders": {"_count": 1, "spite": {"_count": 1, "spite": {"_count": 1}}}, "spawns": {"_count": 1, "lies": {"_count": 1, "": {"_count": 1}}}, "\u2018greatness": {"_count": 1, "what": {"_count": 1, "you": {"_count": 1}}}, "experimented": {"_count": 1, "I": {"_count": 1, "have": {"_count": 1}}}, "pronouncements": {"_count": 1, "that": {"_count": 1, "love": {"_count": 1}}}, "researches": {"_count": 1, "than": {"_count": 1, "here": {"_count": 1}}}, "disposal": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Devoted": {"_count": 1, "friends": {"_count": 1, "indeed": {"_count": 1}}}, "omniscient": {"_count": 1, "as": {"_count": 1, "ever": {"_count": 1}}}, "barmen": {"_count": 1, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "henchmen": {"_count": 2, "to": {"_count": 1, "request": {"_count": 1}}, "know": {"_count": 1, "even": {"_count": 1}}}, "jigsaw": {"_count": 1, "everything": {"_count": 1, "will": {"_count": 1}}}, "UNKNOWABLE": {"_count": 1, "ROOM": {"_count": 1, "Harry": {"_count": 1}}}, "wracked": {"_count": 1, "his": {"_count": 1, "brains": {"_count": 1}}}, "Sectumsempral": {"_count": 2, "scrawled": {"_count": 1, "in": {"_count": 1}}, "SECTUMSEMPRAl": {"_count": 1, "But": {"_count": 1}}}, "twentyfirst": {"_count": 1, "of": {"_count": 1, "April": {"_count": 1}}}, "rematerialize": {"_count": 1, "inside": {"_count": 1, "his": {"_count": 1}}}, "disagreed": {"_count": 1, "with": {"_count": 1, "Snape": {"_count": 1}}}, "\u2018belligerent": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "\u2018augury": {"_count": 1, "doesnt": {"_count": 1, "begin": {"_count": 1}}}, "SpellCheck": {"_count": 1, "ones": {"_count": 1, "": {"_count": 1}}}, "\u2018Dugbogs": {"_count": 1, "and": {"_count": 1, "I": {"_count": 1}}}, "\u2018Roonil": {"_count": 2, "Wazlib": {"_count": 2, "either": {"_count": 1}, "written": {"_count": 1}}}, "Wazlib": {"_count": 2, "either": {"_count": 1, "": {"_count": 1}}, "written": {"_count": 1, "inside": {"_count": 1}}}, "ditch": {"_count": 2, "me": {"_count": 1, "": {"_count": 1}}, "her": {"_count": 1, "if": {"_count": 1}}}, "teacozy": {"_count": 1, "hat": {"_count": 1, "askew": {"_count": 1}}}, "befits": {"_count": 1, "his": {"_count": 1, "pure": {"_count": 1}}}, "tassel": {"_count": 2, "of": {"_count": 1, "his": {"_count": 1}}, "dangled": {"_count": 1, "in": {"_count": 1}}}, "attends": {"_count": 1, "his": {"_count": 1, "classes": {"_count": 1}}}, "enters": {"_count": 1, "The": {"_count": 1, "Room": {"_count": 1}}}, "elffree": {"_count": 1, "again": {"_count": 1, "": {"_count": 1}}}, "Variety": {"_count": 1, "of": {"_count": 1, "students": {"_count": 1}}}, "workshop": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "wood": {"_count": 1, "shavings": {"_count": 1}}}, "burglary": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Octavius": {"_count": 1, "Pepper": {"_count": 1, "has": {"_count": 1}}}, "nineyearold": {"_count": 1, "boy": {"_count": 1, "has": {"_count": 1}}}, "mundanely": {"_count": 1, "blank": {"_count": 1, "wall": {"_count": 1}}}, "experimental": {"_count": 1, "push": {"_count": 1, "": {"_count": 1}}}, "unyielding": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pondered": {"_count": 1, "for": {"_count": 1, "a": {"_count": 1}}}, "foulmouthed": {"_count": 1, "ghost": {"_count": 1, "": {"_count": 1}}}, "variation": {"_count": 1, "of": {"_count": 1, "I": {"_count": 1}}}, "concede": {"_count": 1, "that": {"_count": 1, "Hermione": {"_count": 1}}}, "Frustrated": {"_count": 1, "and": {"_count": 1, "annoyed": {"_count": 1}}}, "sakes": {"_count": 2, "they": {"_count": 1, "are": {"_count": 1}}, "you": {"_count": 1, "havent": {"_count": 1}}}, "\u2018Ghosts": {"_count": 1, "are": {"_count": 1, "transparent": {"_count": 1}}}, "fiveyearold": {"_count": 1, "could": {"_count": 1, "have": {"_count": 1}}}, "reanimated": {"_count": 1, "by": {"_count": 1, "a": {"_count": 1}}}, "shufti": {"_count": 1, "to": {"_count": 1, "see": {"_count": 1}}}, "\u2018Excuse": {"_count": 1, "me": {"_count": 1, "are": {"_count": 1}}}, "quelled": {"_count": 2, "by": {"_count": 1, "the": {"_count": 1}}, "him": {"_count": 1, "with": {"_count": 1}}}, "sophisticated": {"_count": 1, "from": {"_count": 1, "you": {"_count": 1}}}, "paragraphs": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "irritate": {"_count": 1, "Ron": {"_count": 1, "and": {"_count": 1}}}, "summ": {"_count": 1, "Myrtle": {"_count": 1, "this": {"_count": 1}}}, "Vividly": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "Sbend": {"_count": 1, "too": {"_count": 1, "": {"_count": 1}}}, "sewers": {"_count": 1, "maybe": {"_count": 1, "": {"_count": 1}}}, "slop": {"_count": 1, "over": {"_count": 1, "the": {"_count": 1}}}, "Goading": {"_count": 1, "Myrtle": {"_count": 1, "seemed": {"_count": 1}}}, "assault": {"_count": 3, "on": {"_count": 3, "the": {"_count": 2}, "Gringotts": {"_count": 1}}}, "gramophone": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "contemplate": {"_count": 3, "the": {"_count": 2, "blank": {"_count": 1}, "alternative": {"_count": 1}}, "quite": {"_count": 1, "cheerfully": {"_count": 1}}}, "variations": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "doorless": {"_count": 2, "as": {"_count": 1, "ever": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "mousecolored": {"_count": 1, "hair": {"_count": 1, "lank": {"_count": 1}}}, "overshot": {"_count": 1, "it": {"_count": 1, "a": {"_count": 1}}}, "territory": {"_count": 2, "than": {"_count": 1, "his": {"_count": 1}}, "brought": {"_count": 1, "them": {"_count": 1}}}, "Goes": {"_count": 1, "back": {"_count": 1, "to": {"_count": 1}}}, "sulked": {"_count": 1, "for": {"_count": 1, "half": {"_count": 1}}}, "BURIAL": {"_count": 1, "Patches": {"_count": 1, "of": {"_count": 1}}}, "Patches": {"_count": 1, "of": {"_count": 1, "bright": {"_count": 1}}}, "Mistakes": {"_count": 1, "and": {"_count": 1, "How": {"_count": 1}}}, "Avoid": {"_count": 1, "Them": {"_count": 1, "for": {"_count": 1}}}, "slanted": {"_count": 1, "writing": {"_count": 1, "he": {"_count": 1}}}, "burial": {"_count": 4, "later": {"_count": 1, "this": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "now": {"_count": 1, "came": {"_count": 1}}}, "mentaft": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "Fiftyseventh": {"_count": 1, "time": {"_count": 1, "lucky": {"_count": 1}}}, "unformulated": {"_count": 1, "plans": {"_count": 1, "that": {"_count": 1}}}, "fermenting": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "unacknowledged": {"_count": 1, "except": {"_count": 1, "during": {"_count": 1}}}, "Montgomery": {"_count": 1, "sisters": {"_count": 1, "and": {"_count": 1}}}, "\u2018something": {"_count": 1, "amusing": {"_count": 1, "": {"_count": 1}}}, "begrudging": {"_count": 1, "the": {"_count": 1, "time": {"_count": 1}}}, "boasted": {"_count": 2, "openly": {"_count": 1, "of": {"_count": 1}}, "loudly": {"_count": 1, "of": {"_count": 1}}}, "Cheered": {"_count": 1, "by": {"_count": 1, "this": {"_count": 1}}}, "Induce": {"_count": 1, "Euphoria": {"_count": 1, "which": {"_count": 1}}}, "Euphoria": {"_count": 2, "which": {"_count": 1, "seemed": {"_count": 1}}, "I": {"_count": 1, "take": {"_count": 1}}}, "Mmmm": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sprig": {"_count": 1, "of": {"_count": 1, "peppermint": {"_count": 1}}}, "Unorthodox": {"_count": 1, "but": {"_count": 1, "what": {"_count": 1}}}, "counterbalance": {"_count": 1, "the": {"_count": 1, "occasional": {"_count": 1}}}, "nosetweaking": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "genes": {"_count": 1, "coming": {"_count": 1, "out": {"_count": 1}}}, "outshine": {"_count": 1, "Harry": {"_count": 1, "for": {"_count": 1}}}, "curdled": {"_count": 1, "and": {"_count": 1, "formed": {"_count": 1}}}, "dumpling": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "sourfaced": {"_count": 1, "Slughorn": {"_count": 1, "had": {"_count": 1}}}, "Hiccuping": {"_count": 1, "Solution": {"_count": 1, "merely": {"_count": 1}}}, "passable": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "imitation": {"_count": 1, "of": {"_count": 1}}}, "po": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "roundly": {"_count": 1, "abusing": {"_count": 1, "the": {"_count": 1}}}, "fractionally": {"_count": 1, "more": {"_count": 1, "cheerful": {"_count": 1}}}, "Essence": {"_count": 1, "of": {"_count": 1, "Insanity": {"_count": 1}}}, "Insanity": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "elation": {"_count": 3, "increasing": {"_count": 1, "Harry": {"_count": 1}}, "flooding": {"_count": 1, "out": {"_count": 1}}, "as": {"_count": 1, "Molly": {"_count": 1}}}, "luckiest": {"_count": 1, "person": {"_count": 1, "at": {"_count": 1}}}, "Pomona": {"_count": 2, "Slughorn": {"_count": 1, "was": {"_count": 1}}, "said": {"_count": 1, "Professor": {"_count": 1}}}, "overstews": {"_count": 1, "them": {"_count": 1, "": {"_count": 1}}}, "Seized": {"_count": 1, "with": {"_count": 1, "an": {"_count": 1}}}, "aroused": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "buries": {"_count": 1, "it": {"_count": 1, "and": {"_count": 1}}}, "Touching": {"_count": 1, "touching": {"_count": 1, "said": {"_count": 1}}}, "acromantula": {"_count": 2, "venom": {"_count": 1, "is": {"_count": 1}}, "while": {"_count": 1, "its": {"_count": 1}}}, "salary": {"_count": 1, "is": {"_count": 1, "not": {"_count": 1}}}, "hesitancy": {"_count": 2, "well": {"_count": 1, "if": {"_count": 1}}, "the": {"_count": 1, "casual": {"_count": 1}}}, "sendoff": {"_count": 2, "you": {"_count": 1, "know": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "armband": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "webs": {"_count": 2, "now": {"_count": 1, "Aragogs": {"_count": 1}}, "between": {"_count": 1, "the": {"_count": 1}}}, "respects": {"_count": 4, "to": {"_count": 2, "Aragog": {"_count": 1}, "Dumbledore": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "at": {"_count": 1, "Kendras": {"_count": 1}}}, "Cornin": {"_count": 1, "ter": {"_count": 1, "see": {"_count": 1}}}, "edible": {"_count": 3, "flesh": {"_count": 1, "he": {"_count": 1}}, "fungi": {"_count": 1, "could": {"_count": 1}}, "humans": {"_count": 1, "sitting": {"_count": 1}}}, "cravat": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Sad": {"_count": 1, "night": {"_count": 1, "sad": {"_count": 1}}}, "tenfoothigh": {"_count": 1, "mound": {"_count": 1, "of": {"_count": 1}}}, "appreciates": {"_count": 1, "how": {"_count": 1, "beauiful": {"_count": 1}}}, "beauiful": {"_count": 2, "they": {"_count": 1, "are": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Interested": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "revere": {"_count": 1, "them": {"_count": 1, "said": {"_count": 1}}}, "crunchy": {"_count": 1, "thud": {"_count": 1, "": {"_count": 1}}}, "arachnids": {"_count": 1, "whose": {"_count": 1, "long": {"_count": 1}}}, "lingers": {"_count": 1, "on": {"_count": 1, "in": {"_count": 1}}}, "webspun": {"_count": 1, "places": {"_count": 1, "of": {"_count": 1}}}, "manyeyed": {"_count": 1, "descendants": {"_count": 1, "ever": {"_count": 1}}}, "Rupert": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "\u2018Axebanger": {"_count": 1, "Brookstanton": {"_count": 1}}}, "Pekingese": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "contrived": {"_count": 1, "to": {"_count": 1, "have": {"_count": 1}}}, "skein": {"_count": 1, "of": {"_count": 1, "bright": {"_count": 1}}}, "bindin": {"_count": 2, "on": {"_count": 1, "bandages": {"_count": 1}}, "up": {"_count": 1, "a": {"_count": 1}}}, "convert": {"_count": 1, "into": {"_count": 1, "a": {"_count": 1}}}, "expansive": {"_count": 1, "under": {"_count": 1, "the": {"_count": 1}}}, "husbandry": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "nudge": {"_count": 2, "at": {"_count": 1, "this": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "Refilling": {"_count": 1, "Charm": {"_count": 1, "without": {"_count": 1}}}, "refill": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "goblet": {"_count": 1}}}, "toasts": {"_count": 1, "to": {"_count": 1, "Hogwarts": {"_count": 1}}}, "Parry": {"_count": 1, "Otter": {"_count": 1, "the": {"_count": 1}}}, "Otter": {"_count": 1, "the": {"_count": 1, "Chosen": {"_count": 1}}}, "Odo": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 2, "hero": {"_count": 1}, "Hero": {"_count": 1}}}, "warble": {"_count": 1, "the": {"_count": 1, "refrain": {"_count": 1}}}, "refrain": {"_count": 4, "": {"_count": 3, ".": {"_count": 3}}, "from": {"_count": 1, "shouting": {"_count": 1}}}, "oozed": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "witchard": {"_count": 1, "o": {"_count": 1, "their": {"_count": 1}}}, "repressing": {"_count": 1, "a": {"_count": 1, "large": {"_count": 1}}}, "resorted": {"_count": 2, "to": {"_count": 2, "refilling": {"_count": 1}, "crude": {"_count": 1}}}, "remorselessly": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "plead": {"_count": 2, "with": {"_count": 1, "Voldemort": {"_count": 1}}, "her": {"_count": 1, "case": {"_count": 1}}}, "Liked": {"_count": 1, "her": {"_count": 1, "": {"_count": 1}}}, "cancel": {"_count": 1, "out": {"_count": 1, "anything": {"_count": 1}}}, "Longer": {"_count": 1, "and": {"_count": 1, "longer": {"_count": 1}}}, "HORCRUXES": {"_count": 1, "Harry": {"_count": 1, "could": {"_count": 1}}}, "\u2018tapeworm": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "gingeryblond": {"_count": 1, "mustache": {"_count": 1, "sitting": {"_count": 1}}}, "halfdozen": {"_count": 1, "teenage": {"_count": 1, "boys": {"_count": 1}}}, "goldandblack": {"_count": 1, "ring": {"_count": 1, "gleaming": {"_count": 1}}}, "politics": {"_count": 1, "would": {"_count": 1, "suit": {"_count": 1}}}, "leaders": {"_count": 4, "famous": {"_count": 1, "ancestor": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "up": {"_count": 1, "here": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "ancestor": {"_count": 3, "": {"_count": 2, ".": {"_count": 1}, "!": {"_count": 1}}, "Salazar": {"_count": 1, "Slytherin": {"_count": 1}}}, "Project": {"_count": 1, "for": {"_count": 1, "Defense": {"_count": 1}}}, "hardpushed": {"_count": 1, "to": {"_count": 1, "find": {"_count": 1}}}, "overdone": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wheedle": {"_count": 2, "information": {"_count": 1, "out": {"_count": 1}}, "the": {"_count": 1, "location": {"_count": 1}}}, "overview": {"_count": 2, "of": {"_count": 1, "course": {"_count": 1}}, "excellent": {"_count": 1, "positions": {"_count": 1}}}, "earthbound": {"_count": 1, "and": {"_count": 1, "undamaged": {"_count": 1}}}, "Splitting": {"_count": 1, "it": {"_count": 1, "is": {"_count": 1}}}, "violation": {"_count": 1, "it": {"_count": 1, "is": {"_count": 1}}}, "encase": {"_count": 1, "the": {"_count": 1, "torn": {"_count": 1}}}, "portion": {"_count": 6, "Encase": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 3, "his": {"_count": 1}, "approval": {"_count": 1}, "truth": {"_count": 1}}, "away": {"_count": 1, "looking": {"_count": 1}}, "showing": {"_count": 1, "James": {"_count": 1}}}, "Encase": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "mosquitoes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "caliber": {"_count": 1, "have": {"_count": 1, "always": {"_count": 1}}}, "hypothetical": {"_count": 1, "what": {"_count": 1, "were": {"_count": 1}}}, "enhance": {"_count": 3, "his": {"_count": 1, "handsome": {"_count": 1}}, "the": {"_count": 2, "ability": {"_count": 1}, "wisdom": {"_count": 1}}}, "confirms": {"_count": 1, "the": {"_count": 1, "theory": {"_count": 1}}}, "reopen": {"_count": 4, "the": {"_count": 1, "Chamber": {"_count": 1}}, "because": {"_count": 1, "it": {"_count": 1}}, "next": {"_count": 1, "year": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "sapping": {"_count": 1, "the": {"_count": 1, "life": {"_count": 1}}}, "safeguard": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "blase": {"_count": 1, "about": {"_count": 1, "that": {"_count": 1}}}, "detrimental": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Further": {"_count": 1, "than": {"_count": 1, "anybody": {"_count": 1}}}, "plural": {"_count": 1, "Harry": {"_count": 1, "which": {"_count": 1}}}, "undergone": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "explicable": {"_count": 1, "if": {"_count": 1, "his": {"_count": 1}}}, "\u2018usual": {"_count": 1, "evil": {"_count": 1, "So": {"_count": 1}}}, "Therefore": {"_count": 2, "Voldemort": {"_count": 1, "would": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "dependent": {"_count": 3, "on": {"_count": 2, "the": {"_count": 2}}, "even": {"_count": 1, "on": {"_count": 1}}}, "intolerable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "partlife": {"_count": 1, "to": {"_count": 1, "which": {"_count": 1}}}, "Thereafter": {"_count": 2, "I": {"_count": 1, "am": {"_count": 1}}, "Griphook": {"_count": 1, "joined": {"_count": 1}}}, "\u2018Wouldnt": {"_count": 1, "it": {"_count": 1, "be": {"_count": 1}}}, "sevenpart": {"_count": 2, "soul": {"_count": 2, "would": {"_count": 1}, "four": {"_count": 1}}}, "regenerated": {"_count": 1, "body": {"_count": 1, "": {"_count": 1}}}, "exile": {"_count": 3, "without": {"_count": 1, "that": {"_count": 1}}, "These": {"_count": 1, "formed": {"_count": 1}}, "and": {"_count": 1, "Dumbledore": {"_count": 1}}}, "burnedlooking": {"_count": 1, "hand": {"_count": 1, "": {"_count": 1}}}, "seemly": {"_count": 1, "modesty": {"_count": 1, "for": {"_count": 1}}}, "modesty": {"_count": 1, "for": {"_count": 1, "my": {"_count": 1}}}, "prodigious": {"_count": 3, "skill": {"_count": 2, "and": {"_count": 2}}, "magical": {"_count": 1, "skill": {"_count": 1}}}, "favoring": {"_count": 1, "objects": {"_count": 1, "worthy": {"_count": 1}}}, "trawled": {"_count": 1, "back": {"_count": 1, "through": {"_count": 1}}}, "reposed": {"_count": 2, "within": {"_count": 1, "a": {"_count": 1}}, "was": {"_count": 1, "out": {"_count": 1}}}, "conclude": {"_count": 5, "that": {"_count": 5, "he": {"_count": 1}, "this": {"_count": 1}, "Grindelwald": {"_count": 1}, "the": {"_count": 2}}}, "fulfilled": {"_count": 4, "his": {"_count": 2, "ambition": {"_count": 1}, "true": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}}, "interval": {"_count": 1, "of": {"_count": 1, "some": {"_count": 1}}}, "underlines": {"_count": 1, "the": {"_count": 1, "Slytherin": {"_count": 1}}}, "enhances": {"_count": 1, "Lord": {"_count": 1, "Voldemorts": {"_count": 1}}}, "mystique": {"_count": 2, "I": {"_count": 1, "think": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "succinct": {"_count": 1, "and": {"_count": 1, "accurate": {"_count": 1}}}, "summary": {"_count": 1, "yes": {"_count": 1, "said": {"_count": 1}}}, "behold": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sayso": {"_count": 2, "and": {"_count": 1, "he": {"_count": 1}}, "from": {"_count": 1, "YouKnowWho": {"_count": 1}}}, "incriminating": {"_count": 1, "magical": {"_count": 1, "object": {"_count": 1}}}, "uncommon": {"_count": 2, "skill": {"_count": 2, "and": {"_count": 2}}}, "tyrants": {"_count": 2, "everywhere": {"_count": 1, "do": {"_count": 1}}, "fear": {"_count": 1, "the": {"_count": 1}}}, "oppress": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "rises": {"_count": 2, "against": {"_count": 1, "them": {"_count": 1}}, "about": {"_count": 1, "two": {"_count": 1}}}, "strikes": {"_count": 1, "back": {"_count": 1, "": {"_count": 1}}}, "uniquely": {"_count": 1, "deadly": {"_count": 1, "weapons": {"_count": 1}}}, "privileged": {"_count": 2, "insight": {"_count": 1, "into": {"_count": 1}}, "to": {"_count": 1, "be": {"_count": 1}}}, "seduced": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "mutilate": {"_count": 1, "his": {"_count": 1, "own": {"_count": 1}}}, "incomparable": {"_count": 1, "power": {"_count": 1, "of": {"_count": 1}}}, "argumentative": {"_count": 1, "it": {"_count": 1, "all": {"_count": 1}}}, "arena": {"_count": 2, "to": {"_count": 1, "face": {"_count": 1}}, "with": {"_count": 1, "your": {"_count": 1}}}, "SECTUMSEMPRA": {"_count": 1, "Exhausted": {"_count": 1, "but": {"_count": 1}}}, "redirecting": {"_count": 1, "his": {"_count": 1, "wand": {"_count": 1}}}, "flakes": {"_count": 2, "had": {"_count": 1, "started": {"_count": 1}}, "drifted": {"_count": 1, "down": {"_count": 1}}}, "dandruff": {"_count": 1, "now": {"_count": 1, "": {"_count": 1}}}, "Coward": {"_count": 3, "said": {"_count": 1, "Hermione": {"_count": 1}}, "did": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "romance": {"_count": 1, "all": {"_count": 1, "around": {"_count": 1}}}, "conga": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "vinegar": {"_count": 2, "into": {"_count": 1, "wine": {"_count": 1}}, "turned": {"_count": 1, "to": {"_count": 1}}}, "flasks": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "reemerging": {"_count": 2, "from": {"_count": 2, "under": {"_count": 1}, "the": {"_count": 1}}}, "prance": {"_count": 1, "past": {"_count": 1, "all": {"_count": 1}}}, "Luck": {"_count": 2, "can": {"_count": 1, "only": {"_count": 1}}, "isnt": {"_count": 1, "enough": {"_count": 1}}}, "Sectumsempra": {"_count": 5, "spell": {"_count": 2, "captioned": {"_count": 1}, "good": {"_count": 1}}, "wounds": {"_count": 1, "so": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "was": {"_count": 1, "always": {"_count": 1}}}, "stoically": {"_count": 1, "enough": {"_count": 1, "when": {"_count": 1}}}, "breakup": {"_count": 1, "with": {"_count": 1, "Dean": {"_count": 1}}}, "postLavender": {"_count": 1, "Ron": {"_count": 1, "might": {"_count": 1}}}, "tweaking": {"_count": 1, "the": {"_count": 1, "circumstances": {"_count": 1}}}, "GryffindorRavenclaw": {"_count": 1, "game": {"_count": 1, "was": {"_count": 1}}}, "captained": {"_count": 1, "Gryffindor": {"_count": 1, "to": {"_count": 1}}}, "bottomofthetable": {"_count": 1, "defeat": {"_count": 1, "in": {"_count": 1}}}, "intimidate": {"_count": 1, "opposing": {"_count": 1, "teams": {"_count": 1}}}, "chants": {"_count": 1, "about": {"_count": 1, "individual": {"_count": 1}}}, "swaggering": {"_count": 1, "around": {"_count": 1, "enjoying": {"_count": 1}}}, "inextricably": {"_count": 1, "linked": {"_count": 1, "in": {"_count": 1}}}, "preoccupations": {"_count": 1, "Harry": {"_count": 1, "had": {"_count": 1}}}, "reworded": {"_count": 1, "his": {"_count": 1, "request": {"_count": 1}}}, "coupling": {"_count": 1, "when": {"_count": 1, "he": {"_count": 1}}}, "crooned": {"_count": 3, "Moaning": {"_count": 1, "Myrtles": {"_count": 1}}, "RiddleHermione": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "he": {"_count": 1}}}, "cistern": {"_count": 1, "beneath": {"_count": 1, "Moaning": {"_count": 1}}}, "Cruci": {"_count": 1, "SECTUMSEMPRAl": {"_count": 1, "bellowed": {"_count": 1}}}, "SECTUMSEMPRAl": {"_count": 2, "bellowed": {"_count": 1, "Harry": {"_count": 1}}, "But": {"_count": 1, "though": {"_count": 1}}}, "MURDER": {"_count": 3, "": {"_count": 2, "!": {"_count": 2}}, "IN": {"_count": 1, "THE": {"_count": 1}}}, "BATHROOM": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Pushing": {"_count": 4, "Harry": {"_count": 1, "roughly": {"_count": 1}}, "himself": {"_count": 1, "to": {"_count": 1}}, "open": {"_count": 1, "the": {"_count": 1}}, "Hermione": {"_count": 1, "ahead": {"_count": 1}}}, "halflifted": {"_count": 1, "Malfoy": {"_count": 1, "into": {"_count": 1}}}, "dittany": {"_count": 4, "immediately": {"_count": 1, "we": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}, "onto": {"_count": 1, "their": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "shimmer": {"_count": 2, "before": {"_count": 1, "his": {"_count": 1}}, "of": {"_count": 1, "spells": {"_count": 1}}}, "overawed": {"_count": 1, "by": {"_count": 1, "what": {"_count": 1}}}, "cathedral": {"_count": 2, "whose": {"_count": 1, "high": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "alleyways": {"_count": 3, "and": {"_count": 1, "roads": {"_count": 1}}, "between": {"_count": 1, "all": {"_count": 1}}, "of": {"_count": 1, "hidden": {"_count": 1}}}, "mishandled": {"_count": 1, "magic": {"_count": 1, "or": {"_count": 1}}}, "castleproud": {"_count": 1, "houseelves": {"_count": 1, "": {"_count": 1}}}, "catapults": {"_count": 1, "and": {"_count": 1, "Fanged": {"_count": 1}}}, "eggshells": {"_count": 1, "corked": {"_count": 1, "bottles": {"_count": 1}}}, "blistered": {"_count": 5, "surface": {"_count": 1, "": {"_count": 1}}, "fingers": {"_count": 1, "": {"_count": 1}}, "goblin": {"_count": 1, "emerged": {"_count": 1}}, "skin": {"_count": 1, "the": {"_count": 1}}, "old": {"_count": 1, "cupboard": {"_count": 1}}}, "Seizing": {"_count": 2, "the": {"_count": 2, "chipped": {"_count": 1}, "chance": {"_count": 1}}}, "tiara": {"_count": 17, "on": {"_count": 1, "the": {"_count": 1}}, "goblinmade": {"_count": 1, "which": {"_count": 1}}, "she": {"_count": 1, "shouted": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 4}, "!": {"_count": 1}}, "sets": {"_count": 1, "off": {"_count": 1}}, "sat": {"_count": 1, "glittering": {"_count": 1}}, "back": {"_count": 1, "though": {"_count": 1}}, "piped": {"_count": 1, "up": {"_count": 1}}, "passed": {"_count": 1, "under": {"_count": 1}}, "Fleur": {"_count": 1, "had": {"_count": 1}}, "Crabbes": {"_count": 1, "curse": {"_count": 1}}, "had": {"_count": 1, "fallen": {"_count": 1}}, "What": {"_count": 1, "are": {"_count": 1}}}, "sicker": {"_count": 1, "he": {"_count": 1, "was": {"_count": 1}}}, "appetite": {"_count": 1, "at": {"_count": 1, "all": {"_count": 1}}}, "vilifying": {"_count": 1, "Harry": {"_count": 1, "far": {"_count": 1}}}, "rejoining": {"_count": 1, "the": {"_count": 1, "team": {"_count": 1}}}, "postmatch": {"_count": 1, "euphoria": {"_count": 1, "": {"_count": 1}}}, "harping": {"_count": 1, "on": {"_count": 1, "about": {"_count": 1}}}, "\u2018try": {"_count": 1, "this": {"_count": 1, "out": {"_count": 1}}}, "lightheartedness": {"_count": 1, "was": {"_count": 1, "shortlived": {"_count": 1}}}, "shortlived": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "firework": {"_count": 1, "that": {"_count": 1}}}, "obliterated": {"_count": 4, "knowing": {"_count": 1, "that": {"_count": 1}}, "his": {"_count": 2, "sense": {"_count": 1}, "own": {"_count": 1}}, "all": {"_count": 1, "the": {"_count": 1}}}, "Ominously": {"_count": 1, "there": {"_count": 1, "were": {"_count": 1}}}, "cobwebbed": {"_count": 3, "boxes": {"_count": 1, "piled": {"_count": 1}}, "the": {"_count": 1, "outlines": {"_count": 1}}, "chandelier": {"_count": 1, "": {"_count": 1}}}, "syllables": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fiftysix": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018James": {"_count": 1, "Potter": {"_count": 1, "and": {"_count": 1}}}, "Apprehended": {"_count": 1, "using": {"_count": 1, "an": {"_count": 1}}}, "Bertram": {"_count": 1, "Aubrey": {"_count": 1, "": {"_count": 1}}}, "Aubrey": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Aubreys": {"_count": 1, "head": {"_count": 1, "twice": {"_count": 1}}}, "achievements": {"_count": 5, "remains": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "cannot": {"_count": 1, "I": {"_count": 1}}, "the": {"_count": 1, "stateliness": {"_count": 1}}}, "Biting": {"_count": 1, "his": {"_count": 1, "tongue": {"_count": 1}}}, "retaliating": {"_count": 1, "he": {"_count": 1, "sat": {"_count": 1}}}, "misdeeds": {"_count": 2, "occasionally": {"_count": 1, "accompanied": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "commiserated": {"_count": 1, "in": {"_count": 1, "their": {"_count": 1}}}, "Quid": {"_count": 1, "agis": {"_count": 1, "": {"_count": 1}}}, "agis": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "wolfwhistled": {"_count": 2, "and": {"_count": 2, "there": {"_count": 2}}}, "SEER": {"_count": 1, "OVERHEARD": {"_count": 1, "The": {"_count": 1}}}, "OVERHEARD": {"_count": 1, "The": {"_count": 1, "fact": {"_count": 1}}}, "impervious": {"_count": 3, "to": {"_count": 3, "gossip": {"_count": 1}, "the": {"_count": 2}}}, "tattooed": {"_count": 1, "across": {"_count": 1, "your": {"_count": 1}}}, "macho": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "withdraw": {"_count": 1, "it": {"_count": 1, "\u2018Your": {"_count": 1}}}, "\u2018Your": {"_count": 1, "permission": {"_count": 1, "scoffed": {"_count": 1}}}, "accordingly": {"_count": 1, "though": {"_count": 1, "Slughorn": {"_count": 1}}}, "jocularly": {"_count": 1, "attributed": {"_count": 1, "this": {"_count": 1}}}, "lovesick": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "PrinceV": {"_count": 1, "Right": {"_count": 1, "": {"_count": 1}}}, "yellowed": {"_count": 1, "with": {"_count": 1, "age": {"_count": 1}}}, "EILEEN": {"_count": 1, "PRINCE": {"_count": 1, "CAPTAIN": {"_count": 1}}}, "CAPTAIN": {"_count": 1, "OF": {"_count": 1, "THE": {"_count": 1}}}, "GOBSTONES": {"_count": 1, "TEAM": {"_count": 1, "": {"_count": 1}}}, "TEAM": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "interschool": {"_count": 1, "competitions": {"_count": 1, "": {"_count": 1}}}, "Eileen": {"_count": 4, "Prince": {"_count": 4, "": {"_count": 1}, "if": {"_count": 1}, "once": {"_count": 1}, "marrying": {"_count": 1}}}, "predictably": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "awards": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "and": {"_count": 1, "prizes": {"_count": 1}}}, "contemplation": {"_count": 4, "of": {"_count": 4, "the": {"_count": 3}, "his": {"_count": 1}}}, "outperforming": {"_count": 1, "her": {"_count": 1, "in": {"_count": 1}}}, "asides": {"_count": 1, "about": {"_count": 1, "Harry": {"_count": 1}}}, "curfew": {"_count": 6, "most": {"_count": 1, "people": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "again": {"_count": 1, "and": {"_count": 1}}, "lifts": {"_count": 1, "then": {"_count": 1}}, "and": {"_count": 1, "a": {"_count": 1}}}, "vouchsafed": {"_count": 1, "what": {"_count": 1, "": {"_count": 1}}}, "vastly": {"_count": 1, "magnified": {"_count": 1, "eyes": {"_count": 1}}}, "deposit": {"_count": 1, "certain": {"_count": 1, "um": {"_count": 1}}}, "Saying": {"_count": 2, "what": {"_count": 1, "": {"_count": 1}}, "it": {"_count": 1, "out": {"_count": 1}}}, "Whooping": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Gleefully": {"_count": 1, "she": {"_count": 1, "said": {"_count": 1}}}, "intimated": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "lightningstruck": {"_count": 1, "tower": {"_count": 1, "she": {"_count": 1}}}, "Calamity": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Disaster": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "blueandwhite": {"_count": 1, "vase": {"_count": 1, "standing": {"_count": 1}}}, "soulfully": {"_count": 1, "as": {"_count": 1, "they": {"_count": 1}}}, "Object": {"_count": 2, "Harry": {"_count": 1, "did": {"_count": 1}}, "of": {"_count": 1, "Professor": {"_count": 1}}}, "cartomancy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "greatgreatgrandmothers": {"_count": 1, "gift": {"_count": 1, "": {"_count": 1}}}, "bandied": {"_count": 1, "about": {"_count": 1, "by": {"_count": 1}}}, "bedbugs": {"_count": 1, "dear": {"_count": 1, "boy": {"_count": 1}}}, "illdisposed": {"_count": 1, "toward": {"_count": 1, "Divination": {"_count": 1}}}, "uncouth": {"_count": 2, "barman": {"_count": 1, "standing": {"_count": 1}}, "voice": {"_count": 1, "that": {"_count": 1}}}, "waffling": {"_count": 1, "about": {"_count": 1, "having": {"_count": 1}}}, "unassuming": {"_count": 1, "manners": {"_count": 1, "and": {"_count": 1}}}, "assaulted": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "sentry": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Boiling": {"_count": 1, "with": {"_count": 1, "anger": {"_count": 1}}}, "whitened": {"_count": 3, "under": {"_count": 1, "the": {"_count": 1}}, "face": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 1, "his": {"_count": 1}}}, "refraining": {"_count": 1, "from": {"_count": 1, "yelling": {"_count": 1}}}, "LET": {"_count": 1, "HIM": {"_count": 1, "TEACH": {"_count": 1}}}, "exercising": {"_count": 2, "every": {"_count": 1, "last": {"_count": 1}}, "all": {"_count": 1, "his": {"_count": 1}}}, "\u2018run": {"_count": 1, "\u2018hide": {"_count": 1, "or": {"_count": 1}}}, "\u2018hide": {"_count": 1, "or": {"_count": 1, "\u2018go": {"_count": 1}}}, "\u2018go": {"_count": 1, "back": {"_count": 1, "": {"_count": 1}}}, "ruby": {"_count": 2, "red": {"_count": 1, "glare": {"_count": 1}}, "she": {"_count": 1, "moved": {"_count": 1}}}, "balledup": {"_count": 1, "socks": {"_count": 1, "": {"_count": 1}}}, "salty": {"_count": 3, "air": {"_count": 2, "": {"_count": 2}}, "wind": {"_count": 1, "on": {"_count": 1}}}, "CAVE": {"_count": 1, "Harry": {"_count": 1, "could": {"_count": 1}}}, "outcrop": {"_count": 2, "of": {"_count": 2, "dark": {"_count": 1}, "rock": {"_count": 1}}}, "unrelieved": {"_count": 1, "by": {"_count": 1, "any": {"_count": 1}}}, "picnic": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "mate": {"_count": 1, "said": {"_count": 1}}}, "cliffs": {"_count": 3, "behind": {"_count": 1, "us": {"_count": 1}}, "the": {"_count": 1, "waters": {"_count": 1}}, "to": {"_count": 1, "purple": {"_count": 1}}}, "uncommonly": {"_count": 1, "good": {"_count": 1, "mountaineers": {"_count": 1}}}, "mountaineers": {"_count": 1, "and": {"_count": 1, "boats": {"_count": 1}}}, "terrorizing": {"_count": 1, "them": {"_count": 1, "": {"_count": 1}}}, "footholds": {"_count": 1, "leading": {"_count": 1, "down": {"_count": 1}}}, "halfsubmerged": {"_count": 1, "in": {"_count": 1, "water": {"_count": 1}}}, "seawater": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "that": {"_count": 1, "filled": {"_count": 1}}}, "plunge": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "the": {"_count": 1, "cafe": {"_count": 1}}}, "breaststroke": {"_count": 1, "toward": {"_count": 1, "the": {"_count": 1}}}, "tang": {"_count": 1, "of": {"_count": 1, "salt": {"_count": 1}}}, "tar": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "benumbed": {"_count": 1, "fingers": {"_count": 1, "brushing": {"_count": 1}}}, "shivers": {"_count": 1, "he": {"_count": 1, "was": {"_count": 1}}}, "spinedeep": {"_count": 1, "coldness": {"_count": 1, "or": {"_count": 1}}}, "antechamber": {"_count": 1, "the": {"_count": 1, "entrance": {"_count": 1}}}, "ineptitude": {"_count": 1, "than": {"_count": 1, "expertise": {"_count": 1}}}, "ddone": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "payment": {"_count": 4, "to": {"_count": 1, "pass": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "repayment": {"_count": 1}}, "little": {"_count": 1, "more": {"_count": 1}}}, "Payment": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "weaken": {"_count": 1, "him": {"_count": 1, "or": {"_count": 1}}}, "fails": {"_count": 2, "to": {"_count": 1, "grasp": {"_count": 1}}, "is": {"_count": 1, "yourself": {"_count": 1}}}, "fitter": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "peppered": {"_count": 1, "with": {"_count": 1, "dark": {"_count": 1}}}, "bloodspattered": {"_count": 1, "rock": {"_count": 1, "within": {"_count": 1}}}, "cavern": {"_count": 8, "so": {"_count": 1, "high": {"_count": 1}}, "wall": {"_count": 2, "on": {"_count": 1}, "": {"_count": 1}}, "they": {"_count": 1, "might": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "in": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "knew": {"_count": 1, "how": {"_count": 1}}}, "vary": {"_count": 1, "on": {"_count": 1, "one": {"_count": 1}}}, "boundless": {"_count": 1, "expanse": {"_count": 1, "of": {"_count": 1}}}, "oppressive": {"_count": 2, "unnerving": {"_count": 1, "": {"_count": 1}}, "though": {"_count": 1, "the": {"_count": 1}}}, "Horcruxl": {"_count": 1, "With": {"_count": 1, "a": {"_count": 1}}}, "ripples": {"_count": 5, "on": {"_count": 1, "the": {"_count": 1}}, "had": {"_count": 1, "vanished": {"_count": 1}}, "upon": {"_count": 1, "the": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "emanating": {"_count": 1, "in": {"_count": 1}}}, "demons": {"_count": 1, "kelpies": {"_count": 1, "and": {"_count": 1}}}, "sprites": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "coppery": {"_count": 2, "green": {"_count": 1, "chain": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "prow": {"_count": 2, "of": {"_count": 1, "a": {"_count": 1}}, "cleaving": {"_count": 1, "the": {"_count": 1}}}, "underestimates": {"_count": 1, "youth": {"_count": 1, "": {"_count": 1}}}, "jutting": {"_count": 1, "over": {"_count": 1, "the": {"_count": 1}}}, "cleaving": {"_count": 2, "the": {"_count": 1, "water": {"_count": 1}}, "a": {"_count": 1, "gap": {"_count": 1}}}, "carving": {"_count": 4, "deep": {"_count": 2, "ripples": {"_count": 1}, "trenches": {"_count": 1}}, "out": {"_count": 1, "the": {"_count": 1}}, "knives": {"_count": 1, "and": {"_count": 1}}}, "grooves": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "faceup": {"_count": 1, "inches": {"_count": 1, "beneath": {"_count": 1}}}, "peaceable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "arise": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "inexorably": {"_count": 2, "sailing": {"_count": 1, "": {"_count": 1}}, "toward": {"_count": 1, "his": {"_count": 1}}}, "pedestal": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "will": {"_count": 1, "bleat": {"_count": 1}}}, "phosphorescent": {"_count": 1, "glow": {"_count": 1, "": {"_count": 1}}}, "worrisome": {"_count": 1, "than": {"_count": 1, "blood": {"_count": 1}}}, "render": {"_count": 1, "me": {"_count": 1, "incapable": {"_count": 1}}}, "forcefeed": {"_count": 1, "Dumbledore": {"_count": 1, "a": {"_count": 1}}}, "unendurable": {"_count": 4, "pain": {"_count": 2, "": {"_count": 2}}, "thought": {"_count": 1, "now": {"_count": 1}}, "agony": {"_count": 1, "": {"_count": 1}}}, "gobletsful": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "slackening": {"_count": 1, "the": {"_count": 1, "potion": {"_count": 1}}}, "Hating": {"_count": 1, "himself": {"_count": 1, "repulsed": {"_count": 1}}}, "repulsed": {"_count": 5, "by": {"_count": 1, "what": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Hermione": {"_count": 1, "to": {"_count": 1}}, "him": {"_count": 2, "": {"_count": 2}}}, "agape": {"_count": 1, "his": {"_count": 1, "eyes": {"_count": 1}}}, "pant": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "AguamentiV": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "GUAMENTP": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mirrorsmooth": {"_count": 1, "it": {"_count": 1, "was": {"_count": 1}}}, "swiped": {"_count": 2, "his": {"_count": 1, "wand": {"_count": 1}}, "the": {"_count": 1, "air": {"_count": 1}}}, "unfeeling": {"_count": 1, "their": {"_count": 1, "shrunken": {"_count": 1}}}, "Wordlessly": {"_count": 2, "he": {"_count": 1, "gestured": {"_count": 1}}, "Harry": {"_count": 1, "pulled": {"_count": 1}}}, "resurface": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "how": {"_count": 1, "he": {"_count": 1}}}, "welldesigned": {"_count": 1, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "fearing": {"_count": 3, "how": {"_count": 1, "slurred": {"_count": 1}}, "an": {"_count": 1, "angry": {"_count": 1}}, "he": {"_count": 1, "had": {"_count": 1}}}, "slurred": {"_count": 1, "Dumbledores": {"_count": 1, "voice": {"_count": 1}}}, "Save": {"_count": 3, "your": {"_count": 2, "energy": {"_count": 1}, "breath": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}}, "reopened": {"_count": 2, "instantly": {"_count": 1, "": {"_count": 1}}, "he": {"_count": 1, "considered": {"_count": 1}}}, "crevice": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "turning": {"_count": 1, "cautiously": {"_count": 1}}}, "LIGHTNINGSTRUCK": {"_count": 1, "TOWER": {"_count": 1, "Once": {"_count": 1}}}, "TOWER": {"_count": 1, "Once": {"_count": 1, "back": {"_count": 1}}}, "Sodden": {"_count": 1, "and": {"_count": 1, "shivering": {"_count": 1}}}, "Closing": {"_count": 2, "his": {"_count": 2, "eyes": {"_count": 1}, "puffy": {"_count": 1}}}, "compression": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "inexpert": {"_count": 1, "Apparition": {"_count": 1, "had": {"_count": 1}}}, "damper": {"_count": 2, "than": {"_count": 1, "ever": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "Dread": {"_count": 3, "flooded": {"_count": 1, "Harry": {"_count": 1}}, "doused": {"_count": 1, "Harrys": {"_count": 1}}, "filled": {"_count": 1, "Harry": {"_count": 1}}}, "Broomsl": {"_count": 1, "A": {"_count": 1, "second": {"_count": 1}}}, "stimulant": {"_count": 2, "He": {"_count": 1, "was": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "compressing": {"_count": 4, "his": {"_count": 1, "lungs": {"_count": 1}}, "darkness": {"_count": 2, "once": {"_count": 1}, "and": {"_count": 1}}, "bands": {"_count": 1, "but": {"_count": 1}}}, "boundary": {"_count": 7, "wall": {"_count": 2, "into": {"_count": 1}, "where": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 3}}, "walls": {"_count": 1, "regular": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "crenellated": {"_count": 1, "ramparts": {"_count": 1, "and": {"_count": 1}}}, "ramparts": {"_count": 8, "and": {"_count": 3, "was": {"_count": 1}, "understood": {"_count": 1}, "staggered": {"_count": 1}}, "were": {"_count": 1, "deserted": {"_count": 1}}, "very": {"_count": 1, "white": {"_count": 1}}, "the": {"_count": 1, "strength": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "burst": {"_count": 1, "open": {"_count": 1}}}, "dismounting": {"_count": 2, "Harry": {"_count": 1, "landed": {"_count": 1}}, "from": {"_count": 1, "brooms": {"_count": 1}}}, "disarmer": {"_count": 1, "and": {"_count": 1, "said": {"_count": 1}}}, "latters": {"_count": 1, "heart": {"_count": 1, "": {"_count": 1}}}, "differ": {"_count": 1, "on": {"_count": 1, "that": {"_count": 1}}}, "\u2018Did": {"_count": 1, "you": {"_count": 1, "do": {"_count": 1}}}, "gratifying": {"_count": 1, "said": {"_count": 1, "Dumbledore": {"_count": 1}}}, "appreciation": {"_count": 3, "for": {"_count": 1, "our": {"_count": 1}}, "of": {"_count": 2, "this": {"_count": 1}, "the": {"_count": 1}}}, "lurk": {"_count": 1, "in": {"_count": 1, "her": {"_count": 1}}}, "Enchanted": {"_count": 1, "coins": {"_count": 1, "said": {"_count": 1}}}, "conversational": {"_count": 2, "but": {"_count": 1, "Harry": {"_count": 1}}, "he": {"_count": 1, "might": {"_count": 1}}}, "involuntarily": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "octave": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "unintentional": {"_count": 1, "victims": {"_count": 1, "survived": {"_count": 1}}}, "lumpylooking": {"_count": 1, "man": {"_count": 1, "with": {"_count": 1}}}, "stocky": {"_count": 1, "little": {"_count": 1, "woman": {"_count": 1}}}, "Amycus": {"_count": 18, "said": {"_count": 2, "Dumbledore": {"_count": 2}}, "whose": {"_count": 1, "eyes": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "was": {"_count": 2, "giggling": {"_count": 1}, "coming": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "fills": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "bloke": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "before": {"_count": 1, "the": {"_count": 1}}, "burst": {"_count": 1, "over": {"_count": 1}}, "his": {"_count": 1, "piglike": {"_count": 1}}, "moved": {"_count": 1, "forward": {"_count": 1}}, "spun": {"_count": 1, "around": {"_count": 1}}, "got": {"_count": 1, "up": {"_count": 1}}}, "Alecto": {"_count": 15, "too": {"_count": 1, "": {"_count": 1}}, "sprinting": {"_count": 1, "away": {"_count": 1}}, "Carrow": {"_count": 3, "will": {"_count": 1}, "was": {"_count": 1}, "in": {"_count": 1}}, "Amycuss": {"_count": 1, "sister": {"_count": 1}}, "lying": {"_count": 1, "there": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 3}, "?": {"_count": 2}}, "sprawled": {"_count": 1, "motionless": {"_count": 1}}, "was": {"_count": 1, "ambushed": {"_count": 1}}, "had": {"_count": 1, "apprehended": {"_count": 1}}}, "jokesll": {"_count": 1, "help": {"_count": 1, "you": {"_count": 1}}}, "Jokes": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "rasped": {"_count": 8, "the": {"_count": 2, "other": {"_count": 1}, "werewolf": {"_count": 1}}, "Greyback": {"_count": 5, "": {"_count": 5}}, "Griphook": {"_count": 1, "": {"_count": 1}}}, "obscenely": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Frightens": {"_count": 1, "you": {"_count": 1, "": {"_count": 1}}}, "Delicious": {"_count": 2, "delicious": {"_count": 1, "": {"_count": 1}}, "girl": {"_count": 1, "": {"_count": 1}}}, "afters": {"_count": 1, "Dumbledore": {"_count": 1, "": {"_count": 1}}}, "rampart": {"_count": 2, "wall": {"_count": 1, "": {"_count": 1}}, "cried": {"_count": 1, "Finite": {"_count": 1}}}, "accompaniment": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "Dumby": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "talking": {"_count": 1, "and": {"_count": 1}}}, "eliminated": {"_count": 2, "all": {"_count": 1, "opposition": {"_count": 1}}, "before": {"_count": 1, "there": {"_count": 1}}}, "brutalfaced": {"_count": 3, "man": {"_count": 2, "angrily": {"_count": 1}, "there": {"_count": 1}}, "Death": {"_count": 1, "Eater": {"_count": 1}}}, "cowed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "waxwork": {"_count": 2, "but": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "fighters": {"_count": 9, "detached": {"_count": 1, "themselves": {"_count": 1}}, "up": {"_count": 1, "to": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "were": {"_count": 1, "crammed": {"_count": 1}}, "slipping": {"_count": 1, "a": {"_count": 1}}, "scattered": {"_count": 1, "Death": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "Hogwarts": {"_count": 1}}}, "piglike": {"_count": 2, "squeal": {"_count": 1, "of": {"_count": 1}}, "face": {"_count": 1, "suddenly": {"_count": 1}}}, "Mall": {"_count": 1, "right": {"_count": 1, "muttered": {"_count": 1}}}, "footprint": {"_count": 1, "that": {"_count": 1, "showed": {"_count": 1}}}, "bewigged": {"_count": 1, "witches": {"_count": 1, "in": {"_count": 1}}}, "pajamaclad": {"_count": 1, "Hufflepuffs": {"_count": 1, "stood": {"_count": 1}}}, "smears": {"_count": 1, "of": {"_count": 1, "blood": {"_count": 1}}}, "flagstones": {"_count": 3, "and": {"_count": 1, "several": {"_count": 1}}, "below": {"_count": 1, "": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}}, "overtaken": {"_count": 1, "using": {"_count": 1, "his": {"_count": 1}}}, "crescent": {"_count": 1, "moon": {"_count": 1, "revealed": {"_count": 1}}}, "toughened": {"_count": 2, "skin": {"_count": 1, "he": {"_count": 1}}, "her": {"_count": 1, "up": {"_count": 1}}}, "parried": {"_count": 1, "the": {"_count": 1, "curse": {"_count": 1}}}, "Incendiol": {"_count": 1, "Harry": {"_count": 1, "heard": {"_count": 1}}}, "Incarc": {"_count": 1, "Harry": {"_count": 1, "roared": {"_count": 1}}}, "Fight": {"_count": 8, "back": {"_count": 2, "": {"_count": 1}, "you": {"_count": 1}}, "it": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}, "for": {"_count": 1, "my": {"_count": 1}}, "the": {"_count": 1, "Dark": {"_count": 1}}}, "Stupe": {"_count": 1, "Blocked": {"_count": 1, "again": {"_count": 1}}}, "Blocked": {"_count": 1, "again": {"_count": 1, "and": {"_count": 1}}}, "Impedi": {"_count": 1, "But": {"_count": 1, "before": {"_count": 1}}}, "inarticulate": {"_count": 1, "yell": {"_count": 1, "of": {"_count": 1}}}, "Sectum": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Mustering": {"_count": 1, "all": {"_count": 1, "his": {"_count": 1}}}, "Levi": {"_count": 1, "No": {"_count": 1, "Potter": {"_count": 1}}}, "inhuman": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "CALL": {"_count": 1, "ME": {"_count": 1, "COWARD": {"_count": 1}}}, "COWARD": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "whiplike": {"_count": 3, "something": {"_count": 1, "hit": {"_count": 1}}, "movement": {"_count": 1, "Crabbe": {"_count": 1}}, "slashing": {"_count": 1, "branches": {"_count": 1}}}, "discarding": {"_count": 1, "twigs": {"_count": 1, "he": {"_count": 1}}}, "HAGRID": {"_count": 5, "": {"_count": 3, "?": {"_count": 1}, "!": {"_count": 2}}, "NO": {"_count": 1, "": {"_count": 1}}, "COME": {"_count": 1, "BACK": {"_count": 1}}}, "thankfulness": {"_count": 1, "Harry": {"_count": 1, "sank": {"_count": 1}}}, "stabs": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "regret": {"_count": 1}}}, "\u2018Aguamenti": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Theyllve": {"_count": 1, "bin": {"_count": 1, "burnt": {"_count": 1}}}, "uncomprehending": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dressinggowned": {"_count": 1, "people": {"_count": 1, "were": {"_count": 1}}}, "LAMENT": {"_count": 1, "Cmere": {"_count": 1, "Harry": {"_count": 1}}}, "Incomprehensible": {"_count": 1, "voices": {"_count": 1, "battered": {"_count": 1}}}, "Faces": {"_count": 2, "swam": {"_count": 1, "on": {"_count": 1}}, "appeared": {"_count": 1, "at": {"_count": 1}}}, "inert": {"_count": 3, "figures": {"_count": 1, "he": {"_count": 1}}, "body": {"_count": 1, "overhead": {"_count": 1}}, "man": {"_count": 1, "to": {"_count": 1}}}, "harshsmelling": {"_count": 1, "green": {"_count": 1, "ointment": {"_count": 1}}}, "ointment": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "from": {"_count": 2, "Madam": {"_count": 1}, "her": {"_count": 1}}}, "contamination": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "Arthur": {"_count": 1, "said": {"_count": 1}}}, "characteristics": {"_count": 2, "from": {"_count": 1, "now": {"_count": 1}}, "that": {"_count": 1, "those": {"_count": 1}}}, "lament": {"_count": 3, "of": {"_count": 1, "terrible": {"_count": 1}}, "was": {"_count": 1, "still": {"_count": 1}}, "to": {"_count": 1, "the": {"_count": 1}}}, "mourning": {"_count": 4, "but": {"_count": 1, "it": {"_count": 1}}, "his": {"_count": 1, "mother": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "grief": {"_count": 1}}}, "grazes": {"_count": 1, "on": {"_count": 1, "her": {"_count": 1}}}, "ironclad": {"_count": 2, "reason": {"_count": 1, "for": {"_count": 1}}, "punch": {"_count": 1, "": {"_count": 1}}}, "explicitly": {"_count": 1, "that": {"_count": 1, "Snape": {"_count": 1}}}, "repentance": {"_count": 1, "was": {"_count": 1, "absolutely": {"_count": 1}}}, "digest": {"_count": 1, "the": {"_count": 1, "monstrous": {"_count": 1}}}, "Filius": {"_count": 4, "to": {"_count": 1, "fetch": {"_count": 1}}, "told": {"_count": 1, "him": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "duplicity": {"_count": 1, "and": {"_count": 1, "infamy": {"_count": 1}}}, "infamy": {"_count": 1, "feverishly": {"_count": 1, "collecting": {"_count": 1}}}, "Cabinets": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "pathway": {"_count": 1, "they": {"_count": 1, "formed": {"_count": 1}}}, "Peruvian": {"_count": 2, "Instant": {"_count": 2, "Darkness": {"_count": 2}}}, "Gibbon": {"_count": 3, "broke": {"_count": 1, "away": {"_count": 1}}, "liked": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "down": {"_count": 1}}}, "awakens": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bboy": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "ttwo": {"_count": 1}}}, "theenk": {"_count": 3, "Bill": {"_count": 1, "will": {"_count": 1}}, "because": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "zan": {"_count": 2, "a": {"_count": 1, "werewolf": {"_count": 1}}, "you": {"_count": 1, "would": {"_count": 1}}}, "weesh": {"_count": 1, "to": {"_count": 1, "marry": {"_count": 1}}}, "peraps": {"_count": 1, "you": {"_count": 1, "hoped": {"_count": 1}}}, "GreatAuntie": {"_count": 1, "Muriel": {"_count": 1, "said": {"_count": 1}}}, "Mmoved": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "copiously": {"_count": 3, "his": {"_count": 1, "huge": {"_count": 1}}, "from": {"_count": 1, "his": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "closure": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "procedures": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "stayin": {"_count": 1, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "briskness": {"_count": 1, "as": {"_count": 1, "her": {"_count": 1}}}, "funerals": {"_count": 1, "over": {"_count": 1, "": {"_count": 1}}}, "Seconded": {"_count": 1, "barked": {"_count": 1, "Professor": {"_count": 1}}}, "jampacked": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "upwards": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "WHITE": {"_count": 1, "TOMB": {"_count": 1, "All": {"_count": 1}}}, "TOMB": {"_count": 1, "All": {"_count": 1, "lessons": {"_count": 1}}}, "haughtylooking": {"_count": 1, "father": {"_count": 1, "": {"_count": 1}}}, "officials": {"_count": 1, "including": {"_count": 1, "the": {"_count": 1}}}, "accommodated": {"_count": 1, "within": {"_count": 1, "the": {"_count": 1}}}, "diligently": {"_count": 1, "avoiding": {"_count": 1, "contact": {"_count": 1}}}, "discharged": {"_count": 1, "but": {"_count": 1, "Bill": {"_count": 1}}}, "steaks": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "for": {"_count": 1, "Griphook": {"_count": 1}}}, "ees": {"_count": 1, "lucky": {"_count": 1, "e": {"_count": 1}}}, "plumping": {"_count": 1, "up": {"_count": 1, "Bills": {"_count": 1}}}, "overcook": {"_count": 1, "their": {"_count": 1, "meat": {"_count": 1}}}, "Hermioneish": {"_count": 1, "look": {"_count": 1, "on": {"_count": 1}}}, "listing": {"_count": 1, "them": {"_count": 1, "he": {"_count": 1}}}, "mantra": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "initials": {"_count": 3, "as": {"_count": 1, "belonging": {"_count": 1}}, "Rosalind": {"_count": 1, "Antigone": {"_count": 1}}, "into": {"_count": 1, "the": {"_count": 1}}}, "Rosalind": {"_count": 1, "Antigone": {"_count": 1, "Bungs": {"_count": 1}}}, "Antigone": {"_count": 1, "Bungs": {"_count": 1, "": {"_count": 1}}}, "Bungs": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "Axebanger": {"_count": 1}}}, "\u2018Axebanger": {"_count": 1, "Brookstanton": {"_count": 1, "": {"_count": 1}}}, "Brookstanton": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Axebanger": {"_count": 1, "ever": {"_count": 1, "had": {"_count": 1}}}, "looker": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Tobias": {"_count": 2, "Snape": {"_count": 2, "and": {"_count": 1}, "was": {"_count": 1}}}, "\u2018half": {"_count": 1, "a": {"_count": 1, "Prince": {"_count": 1}}}, "Pure": {"_count": 1, "blood": {"_count": 1, "mother": {"_count": 1}}}, "inexcusable": {"_count": 1, "trust": {"_count": 1, "in": {"_count": 1}}}, "nastiness": {"_count": 2, "of": {"_count": 1, "those": {"_count": 1}}, "but": {"_count": 1, "as": {"_count": 1}}}, "\u2018Evil": {"_count": 1, "is": {"_count": 1, "a": {"_count": 1}}}, "overwhelm": {"_count": 3, "him": {"_count": 2, "there": {"_count": 1}, "": {"_count": 1}}, "Professor": {"_count": 1, "McGonagall": {"_count": 1}}}, "entourage": {"_count": 1, "Harry": {"_count": 1, "spotted": {"_count": 1}}}, "unwonted": {"_count": 1, "venom": {"_count": 1, "": {"_count": 1}}}, "Hulking": {"_count": 1, "boys": {"_count": 1, "though": {"_count": 1}}}, "hum": {"_count": 4, "in": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "excited": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "prefer": {"_count": 1}}}, "reeking": {"_count": 1, "of": {"_count": 1, "mothballs": {"_count": 1}}}, "mothballs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "vividest": {"_count": 1, "pink": {"_count": 1, "Remus": {"_count": 1}}}, "insubstantially": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "birdsong": {"_count": 1, "was": {"_count": 1, "louder": {"_count": 1}}}, "infuriated": {"_count": 2, "to": {"_count": 1, "see": {"_count": 1}}, "Hermione": {"_count": 1, "who": {"_count": 1}}}, "redtaloned": {"_count": 1, "hand": {"_count": 1, "and": {"_count": 1}}}, "ironcolored": {"_count": 1, "curls": {"_count": 1, "": {"_count": 1}}}, "sentinel": {"_count": 3, "near": {"_count": 1, "the": {"_count": 1}}, "before": {"_count": 1, "the": {"_count": 1}}, "on": {"_count": 1, "either": {"_count": 1}}}, "otherworldly": {"_count": 1, "music": {"_count": 1, "and": {"_count": 1}}}, "singers": {"_count": 1, "he": {"_count": 1, "had": {"_count": 1}}}, "trumpeting": {"_count": 1, "noises": {"_count": 1, "that": {"_count": 1}}}, "marquee": {"_count": 17, "was": {"_count": 2, "the": {"_count": 1}, "nearly": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "beyond": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "revealed": {"_count": 1, "rows": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}, "as": {"_count": 1, "Luna": {"_count": 1}}, "with": {"_count": 1, "Fred": {"_count": 1}}, "both": {"_count": 1, "wearing": {"_count": 1}}, "back": {"_count": 1, "to": {"_count": 1}}, "told": {"_count": 1, "everyone": {"_count": 1}}, "vanished": {"_count": 1, "so": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}, "waiting": {"_count": 1, "to": {"_count": 1}}}, "boulderlike": {"_count": 1, "head": {"_count": 1, "bowed": {"_count": 1}}}, "tuftyhaired": {"_count": 4, "man": {"_count": 1, "in": {"_count": 1}}, "wizard": {"_count": 3, "who": {"_count": 1}, "waved": {"_count": 1}, "": {"_count": 1}}}, "intellectual": {"_count": 1, "contribution": {"_count": 1, "": {"_count": 1}}}, "nitwit": {"_count": 1, "oddment": {"_count": 1, "blubber": {"_count": 1}}}, "oddment": {"_count": 1, "blubber": {"_count": 1, "and": {"_count": 1}}}, "undeniably": {"_count": 1, "than": {"_count": 1, "it": {"_count": 1}}}, "nightmarish": {"_count": 2, "trip": {"_count": 1, "into": {"_count": 1}}, "experience": {"_count": 1, "seeing": {"_count": 1}}}, "eradicated": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "illusion": {"_count": 4, "he": {"_count": 1, "ought": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}, "of": {"_count": 1, "coziness": {"_count": 1}}, "was": {"_count": 1, "gone": {"_count": 1}}}, "protectors": {"_count": 2, "had": {"_count": 1, "died": {"_count": 1}}, "who": {"_count": 1, "have": {"_count": 1}}}, "speeches": {"_count": 3, "probably": {"_count": 1, "from": {"_count": 1}}, "promoting": {"_count": 1, "Muggle": {"_count": 1}}, "trying": {"_count": 1, "to": {"_count": 1}}}, "tomb": {"_count": 13, "encasing": {"_count": 1, "Dumbledores": {"_count": 1}}, "and": {"_count": 2, "walked": {"_count": 1}, "this": {"_count": 1}}, "reflected": {"_count": 1, "in": {"_count": 1}}, "": {"_count": 5, ".": {"_count": 2}, "?": {"_count": 2}, "!": {"_count": 1}}, "an": {"_count": 1, "unnecessary": {"_count": 1}}, "split": {"_count": 1, "open": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "encasing": {"_count": 1, "Dumbledores": {"_count": 1, "body": {"_count": 1}}}, "Likewise": {"_count": 1, "the": {"_count": 1, "merpeople": {"_count": 1}}}, "steeled": {"_count": 1, "himself": {"_count": 1, "to": {"_count": 1}}}, "Moving": {"_count": 3, "felt": {"_count": 1, "much": {"_count": 1}}, "away": {"_count": 1, "from": {"_count": 1}}, "through": {"_count": 1, "the": {"_count": 1}}}, "delicacy": {"_count": 1, "The": {"_count": 1, "Ministry": {"_count": 1}}}, "Released": {"_count": 2, "Stan": {"_count": 1, "Shunpike": {"_count": 1}}, "it": {"_count": 1, "into": {"_count": 1}}}, "Everywheres": {"_count": 1, "the": {"_count": 1, "same": {"_count": 1}}}, "monumental": {"_count": 2, "figure": {"_count": 1, "of": {"_count": 1}}, "foot": {"_count": 1, "which": {"_count": 1}}}, "cuddled": {"_count": 1, "Hagrid": {"_count": 1, "whose": {"_count": 1}}}, "undertaking": {"_count": 2, "this": {"_count": 1, "most": {"_count": 1}}, "a": {"_count": 1, "survey": {"_count": 1}}}, "ASCENDING": {"_count": 1, "The": {"_count": 1, "two": {"_count": 1}}}, "News": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "and": {"_count": 1, "Daily": {"_count": 1}}}, "overhanging": {"_count": 2, "trees": {"_count": 1, "broke": {"_count": 1}}, "forehead": {"_count": 1, "shadowed": {"_count": 1}}}, "trickier": {"_count": 1, "than": {"_count": 1, "I": {"_count": 1}}}, "purewhite": {"_count": 2, "peacock": {"_count": 1, "strutting": {"_count": 1}}, "hair": {"_count": 1, "and": {"_count": 1}}}, "majestically": {"_count": 1, "along": {"_count": 1, "the": {"_count": 1}}}, "Peacocks": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "diamondpaned": {"_count": 1, "downstairs": {"_count": 1, "windows": {"_count": 1}}}, "Gravel": {"_count": 1, "crackled": {"_count": 1, "beneath": {"_count": 1}}}, "sumptuously": {"_count": 1, "decorated": {"_count": 1, "with": {"_count": 1}}}, "Illumination": {"_count": 1, "came": {"_count": 1, "from": {"_count": 1}}}, "surmounted": {"_count": 1, "by": {"_count": 1, "a": {"_count": 1}}}, "singular": {"_count": 1, "sight": {"_count": 1, "was": {"_count": 1}}}, "allotted": {"_count": 2, "places": {"_count": 1, "": {"_count": 1}}, "by": {"_count": 1, "Voldemort": {"_count": 1}}}, "palpably": {"_count": 2, "Some": {"_count": 1, "stiffened": {"_count": 1}}, "content": {"_count": 1, "": {"_count": 1}}}, "scorched": {"_count": 2, "by": {"_count": 1, "the": {"_count": 1}}, "again": {"_count": 1, "For": {"_count": 1}}}, "susceptible": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "infiltrated": {"_count": 3, "the": {"_count": 2, "Ministry": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "suceeded": {"_count": 1, "in": {"_count": 1, "placing": {"_count": 1}}}, "Pius": {"_count": 5, "Thicknesse": {"_count": 5, "": {"_count": 2}, "has": {"_count": 1}, "thinks": {"_count": 1}, "who": {"_count": 1}}}, "Thicknesse": {"_count": 19, "": {"_count": 4, ".": {"_count": 4}}, "is": {"_count": 4, "only": {"_count": 1}, "not": {"_count": 1}, "going": {"_count": 1}, "taking": {"_count": 1}}, "has": {"_count": 2, "regular": {"_count": 1}, "gone": {"_count": 1}}, "thinks": {"_count": 1, "hes": {"_count": 1}}, "who": {"_count": 2, "is": {"_count": 1}, "dropped": {"_count": 1}}, "march": {"_count": 1, "away": {"_count": 1}}, "had": {"_count": 2, "not": {"_count": 1}, "fallen": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "finally": {"_count": 1, "walked": {"_count": 1}}, "and": {"_count": 1, "Lucius": {"_count": 1}}}, "highranking": {"_count": 1, "official": {"_count": 1, "under": {"_count": 1}}}, "subjugate": {"_count": 1, "the": {"_count": 1, "others": {"_count": 1}}}, "Apparates": {"_count": 2, "or": {"_count": 1, "uses": {"_count": 1}}, "unless": {"_count": 1, "you": {"_count": 1}}}, "eschewing": {"_count": 1, "any": {"_count": 1, "form": {"_count": 1}}}, "regulated": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "wreckers": {"_count": 1, "of": {"_count": 1, "all": {"_count": 1}}}, "displayed": {"_count": 3, "nothing": {"_count": 1, "but": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "Scrimgeour": {"_count": 1}}}, "volunteers": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Elm": {"_count": 1, "my": {"_count": 1, "Lord": {"_count": 1}}}, "displeases": {"_count": 2, "you": {"_count": 1, "Lucius": {"_count": 1}}, "me": {"_count": 1, "": {"_count": 1}}}, "thigh": {"_count": 2, "its": {"_count": 1, "eyes": {"_count": 1}}, "sparks": {"_count": 1, "flew": {"_count": 1}}}, "professed": {"_count": 1, "to": {"_count": 1, "desire": {"_count": 1}}}, "closeness": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "between": {"_count": 1, "Albus": {"_count": 1}}}, "disliking": {"_count": 1, "the": {"_count": 1, "disturbance": {"_count": 1}}}, "outpouring": {"_count": 1, "of": {"_count": 1, "mirth": {"_count": 1}}}, "marries": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "babysit": {"_count": 1, "the": {"_count": 1, "cubs": {"_count": 1}}}, "deadpan": {"_count": 1, "stare": {"_count": 1, "at": {"_count": 1}}}, "imploring": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "canker": {"_count": 1, "that": {"_count": 1, "infects": {"_count": 1}}}, "infects": {"_count": 1, "us": {"_count": 1, "until": {"_count": 1}}}, "wandfree": {"_count": 2, "hand": {"_count": 2, "": {"_count": 1}, "and": {"_count": 1}}}, "Charity": {"_count": 6, "Burbage": {"_count": 4, "who": {"_count": 1}, "revolved": {"_count": 2}, "the": {"_count": 1}}, "fell": {"_count": 2, "silent": {"_count": 1}, "with": {"_count": 1}}}, "Burbage": {"_count": 7, "who": {"_count": 1, "until": {"_count": 1}}, "taught": {"_count": 1, "the": {"_count": 1}}, "revolved": {"_count": 2, "to": {"_count": 2}}, "wrote": {"_count": 1, "an": {"_count": 1}}, "a": {"_count": 1, "most": {"_count": 1}}, "the": {"_count": 1, "Muggle": {"_count": 1}}}, "corrupting": {"_count": 1, "and": {"_count": 1, "polluting": {"_count": 1}}}, "polluting": {"_count": 1, "the": {"_count": 1, "minds": {"_count": 1}}}, "impassioned": {"_count": 1, "defense": {"_count": 1, "of": {"_count": 1}}}, "circumstance": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "Ron": {"_count": 1}}}, "MEMORIAM": {"_count": 1, "Harry": {"_count": 1, "was": {"_count": 1}}}, "booby": {"_count": 2, "trap": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}}, "elevated": {"_count": 2, "Harry": {"_count": 1, "scraped": {"_count": 1}}, "frame": {"_count": 1, "of": {"_count": 1}}}, "desiccated": {"_count": 1, "beetle": {"_count": 1, "eyes": {"_count": 1}}}, "mulch": {"_count": 1, "experienced": {"_count": 1, "a": {"_count": 1}}}, "Kneeling": {"_count": 1, "down": {"_count": 1, "beside": {"_count": 1}}}, "wornout": {"_count": 1, "Sneakoscope": {"_count": 1, "and": {"_count": 1}}}, "twoinchlong": {"_count": 1, "fragment": {"_count": 1, "of": {"_count": 1}}}, "unread": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "occasioned": {"_count": 1, "by": {"_count": 1, "attacking": {"_count": 1}}}, "rucksack": {"_count": 22, "": {"_count": 3, ".": {"_count": 3}}, "filled": {"_count": 1, "with": {"_count": 1}}, "then": {"_count": 1, "poked": {"_count": 1}}, "gave": {"_count": 1, "his": {"_count": 1}}, "Firebolt": {"_count": 1, "and": {"_count": 1}}, "and": {"_count": 6, "broomstick": {"_count": 1}, "the": {"_count": 1}, "attempted": {"_count": 1}, "went": {"_count": 1}, "pulled": {"_count": 1}, "started": {"_count": 1}}, "were": {"_count": 1, "already": {"_count": 1}}, "slipped": {"_count": 1, "from": {"_count": 1}}, "with": {"_count": 1, "him": {"_count": 1}}, "lay": {"_count": 2, "on": {"_count": 1}, "yards": {"_count": 1}}, "swung": {"_count": 1, "it": {"_count": 1}}, "toward": {"_count": 1, "him": {"_count": 1}}, "this": {"_count": 1, "morning": {"_count": 1}}, "from": {"_count": 1, "Hermione": {"_count": 1}}}, "accorded": {"_count": 1, "this": {"_count": 1, "place": {"_count": 1}}}, "attain": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "REMEMBERED": {"_count": 1, "by": {"_count": 1, "Elphias": {"_count": 1}}}, "hue": {"_count": 1, "did": {"_count": 1, "not": {"_count": 1}}}, "notoriety": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Scarcely": {"_count": 1, "a": {"_count": 1, "year": {"_count": 1}}}, "hater": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "attest": {"_count": 1, "he": {"_count": 1, "never": {"_count": 1}}}, "subsequent": {"_count": 1, "years": {"_count": 1, "": {"_count": 1}}}, "Albuss": {"_count": 10, "own": {"_count": 1, "fame": {"_count": 1}}, "brother": {"_count": 1, "Aberforth": {"_count": 1}}, "shadow": {"_count": 1, "cannot": {"_count": 1}}, "mother": {"_count": 1, "Kendra": {"_count": 1}}, "feeling": {"_count": 1, "of": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "nose": {"_count": 1, "at": {"_count": 1}}, "trip": {"_count": 1, "round": {"_count": 1}}, "voice": {"_count": 1, "drifted": {"_count": 1}}, "face": {"_count": 1, "when": {"_count": 1}}}, "eclipse": {"_count": 1, "that": {"_count": 1, "of": {"_count": 1}}}, "correspondence": {"_count": 2, "with": {"_count": 2, "the": {"_count": 1}, "\u2018the": {"_count": 1}}}, "notable": {"_count": 3, "magical": {"_count": 2, "names": {"_count": 2}}, "homes": {"_count": 1, "to": {"_count": 1}}}, "theoretician": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "publications": {"_count": 1, "such": {"_count": 1, "as": {"_count": 1}}}, "Challenges": {"_count": 1, "in": {"_count": 1, "Charming": {"_count": 1}}}, "Potioneer": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "meteoric": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "Ministerial": {"_count": 1, "ambitions": {"_count": 1, "": {"_count": 1}}}, "bookish": {"_count": 1, "and": {"_count": 1, "unlike": {"_count": 1}}}, "outshone": {"_count": 1, "was": {"_count": 1, "an": {"_count": 1}}}, "Kendra": {"_count": 16, "died": {"_count": 2, "leaving": {"_count": 1}, "before": {"_count": 1}}, "was": {"_count": 1, "a": {"_count": 1}}, "Dumbledore": {"_count": 2, "wouldnt": {"_count": 1}, "could": {"_count": 1}}, "hadnt": {"_count": 1, "died": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "Aberforth": {"_count": 1}, "Arianas": {"_count": 1}}, "had": {"_count": 1, "jetblack": {"_count": 1}}, "knew": {"_count": 1, "none": {"_count": 1}}, "leading": {"_count": 1, "Ariana": {"_count": 1}}, "thought": {"_count": 1, "the": {"_count": 1}}, "made": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "course": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}}, "breadwinner": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Kendras": {"_count": 4, "funeral": {"_count": 1, "then": {"_count": 1}}, "death": {"_count": 2, "as": {"_count": 1}, "Bathilda": {"_count": 1}}, "premature": {"_count": 1, "death": {"_count": 1}}}, "insensitively": {"_count": 1, "the": {"_count": 1, "wonders": {"_count": 1}}}, "escapes": {"_count": 1, "from": {"_count": 1, "chimaeras": {"_count": 1}}}, "Greece": {"_count": 2, "to": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "following": {"_count": 1}}}, "alchemists": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "daytoday": {"_count": 1, "life": {"_count": 1, "which": {"_count": 1}}}, "frustratingly": {"_count": 1, "dull": {"_count": 1, "for": {"_count": 1}}}, "Immersed": {"_count": 1, "in": {"_count": 1, "my": {"_count": 1}}}, "Ariana": {"_count": 43, "": {"_count": 6, ".": {"_count": 5}, "?": {"_count": 1}}, "had": {"_count": 5, "been": {"_count": 2}, "led": {"_count": 1}, "never": {"_count": 1}, "become": {"_count": 1}}, "s": {"_count": 1, "death": {"_count": 1}}, "from": {"_count": 1, "then": {"_count": 1}}, "began": {"_count": 1, "Elphias": {"_count": 1}}, "was": {"_count": 7, "locked": {"_count": 1}, "not": {"_count": 1}, "delicate": {"_count": 1}, "dead": {"_count": 1}, "little": {"_count": 1}, "barely": {"_count": 1}, "walking": {"_count": 1}}, "How": {"_count": 1, "can": {"_count": 1}}, "of": {"_count": 1, "what": {"_count": 1}}, "murdered": {"_count": 1, "her": {"_count": 1}}, "might": {"_count": 1, "have": {"_count": 1}}, "business": {"_count": 1, "and": {"_count": 1}}, "Kendra": {"_count": 1, "and": {"_count": 1}}, "out": {"_count": 1, "into": {"_count": 1}}, "once": {"_count": 1, "and": {"_count": 1}}, "ever": {"_count": 1, "demonstrating": {"_count": 1}}, "would": {"_count": 1, "of": {"_count": 1}}, "Dumbledore": {"_count": 2, "": {"_count": 1}, "was": {"_count": 1}}, "calling": {"_count": 1, "her": {"_count": 1}}, "dying": {"_count": 1, "I": {"_count": 1}}, "Dumbledores": {"_count": 1, "funeral": {"_count": 1}}, "die": {"_count": 1, "": {"_count": 1}}, "couldnt": {"_count": 1, "control": {"_count": 1}}, "took": {"_count": 1, "a": {"_count": 1}}, "set": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "our": {"_count": 1}}, "dead": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "my": {"_count": 1}}}, "profound": {"_count": 1, "effect": {"_count": 1, "on": {"_count": 1}}}, "guiltless": {"_count": 1, "left": {"_count": 1, "their": {"_count": 1}}}, "hearted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "reestablished": {"_count": 2, "if": {"_count": 1, "not": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cordial": {"_count": 1, "one": {"_count": 1, "": {"_count": 1}}}, "contributions": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "judgments": {"_count": 1, "he": {"_count": 1, "made": {"_count": 1}}}, "945": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "endowed": {"_count": 1, "him": {"_count": 1, "with": {"_count": 1}}}, "humanity": {"_count": 1, "and": {"_count": 1, "sympathy": {"_count": 1}}}, "obituary": {"_count": 6, "": {"_count": 2, ".": {"_count": 2}}, "he": {"_count": 1, "had": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "you": {"_count": 1, "wrote": {"_count": 1}}, "of": {"_count": 1, "yours": {"_count": 1}}}, "Xraying": {"_count": 2, "Harry": {"_count": 1, "whose": {"_count": 1}}, "the": {"_count": 1, "object": {"_count": 1}}}, "venerable": {"_count": 1, "and": {"_count": 1, "silverhaired": {"_count": 1}}}, "irreplaceable": {"_count": 1, "opportunities": {"_count": 1, "when": {"_count": 1}}}, "noting": {"_count": 4, "that": {"_count": 1, "it": {"_count": 1}}, "the": {"_count": 1, "bats": {"_count": 1}}, "Griphooks": {"_count": 1, "rising": {"_count": 1}}, "small": {"_count": 1, "comfort": {"_count": 1}}}, "flawed": {"_count": 1, "genius": {"_count": 1, "considered": {"_count": 1}}}, "Stripping": {"_count": 1, "away": {"_count": 1, "the": {"_count": 1}}}, "silverbearded": {"_count": 1, "wisdom": {"_count": 1, "Rita": {"_count": 1}}}, "lawless": {"_count": 2, "youth": {"_count": 1, "the": {"_count": 1}}, "ways": {"_count": 1, "": {"_count": 1}}}, "feuds": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "explored": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "Lies": {"_count": 8, "of": {"_count": 4, "Albus": {"_count": 4}}, "": {"_count": 2, "!": {"_count": 2}}, "ofAlbus": {"_count": 2, "Dumbledore": {"_count": 2}}}, "Betty": {"_count": 2, "Braithwaite": {"_count": 1, "In": {"_count": 1}}, "Im": {"_count": 1, "not": {"_count": 1}}}, "Braithwaite": {"_count": 1, "In": {"_count": 1, "person": {"_count": 1}}}, "quillportraits": {"_count": 1, "might": {"_count": 1, "suggest": {"_count": 1}}}, "Greeting": {"_count": 1, "me": {"_count": 1, "in": {"_count": 1}}}, "freshest": {"_count": 1, "gossip": {"_count": 1, "": {"_count": 1}}}, "biographers": {"_count": 1, "dream": {"_count": 1, "says": {"_count": 1}}}, "hundredpage": {"_count": 1, "book": {"_count": 1, "was": {"_count": 1}}}, "superfast": {"_count": 1, "feat": {"_count": 1, "": {"_count": 1}}}, "deadline": {"_count": 1, "is": {"_count": 1, "second": {"_count": 1}}}, "publicized": {"_count": 1, "remarks": {"_count": 1, "of": {"_count": 1}}}, "Advisor": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "Dodgy": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "Doge": {"_count": 1, "can": {"_count": 1}}}, "gaga": {"_count": 3, "seemed": {"_count": 1, "to": {"_count": 1}}, "these": {"_count": 1, "days": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Lake": {"_count": 1, "Windermere": {"_count": 1, "kept": {"_count": 1}}}, "Windermere": {"_count": 1, "kept": {"_count": 1, "telling": {"_count": 1}}}, "trout": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "which": {"_count": 1, "resulted": {"_count": 1}}}, "Doges": {"_count": 4, "accusations": {"_count": 1, "of": {"_count": 1}}, "tiny": {"_count": 1, "eyes": {"_count": 1}}, "face": {"_count": 1, "flooded": {"_count": 1}}, "earnest": {"_count": 1, "pained": {"_count": 1}}}, "inaccuracy": {"_count": 1, "have": {"_count": 1, "been": {"_count": 1}}}, "generated": {"_count": 1, "by": {"_count": 1, "a": {"_count": 1}}}, "journalists": {"_count": 2, "would": {"_count": 2, "swap": {"_count": 2}}}, "blameless": {"_count": 1, "life": {"_count": 1, "": {"_count": 1}}}, "highlights": {"_count": 1, "before": {"_count": 1, "anybodys": {"_count": 1}}}, "awakening": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "dabbled": {"_count": 2, "in": {"_count": 2, "the": {"_count": 2}}}, "broadminded": {"_count": 1, "when": {"_count": 1, "he": {"_count": 1}}}, "Mugglemaiming": {"_count": 1, "father": {"_count": 1, "Dumbledore": {"_count": 1}}}, "concedes": {"_count": 1, "although": {"_count": 1, "many": {"_count": 1}}}, "Ivor": {"_count": 2, "Dillonsby": {"_count": 2, "claims": {"_count": 1}, "put": {"_count": 1}}}, "Dillonsby": {"_count": 2, "claims": {"_count": 1, "he": {"_count": 1}}, "put": {"_count": 1, "it": {"_count": 1}}}, "\u2018borrowed": {"_count": 1, "his": {"_count": 1, "papers": {"_count": 1}}}, "venture": {"_count": 1, "be": {"_count": 1, "denied": {"_count": 1}}}, "dewyeyed": {"_count": 1, "over": {"_count": 1, "Dumbledores": {"_count": 1}}}, "brace": {"_count": 3, "themselves": {"_count": 1, "for": {"_count": 1}}, "yourself": {"_count": 1, "": {"_count": 1}}, "yourselves": {"_count": 1, "here": {"_count": 1}}}, "fascinate": {"_count": 1, "her": {"_count": 1, "readers": {"_count": 1}}}, "PotterDumbledore": {"_count": 2, "relationship": {"_count": 2, "": {"_count": 2}}}, "breakthrough": {"_count": 1, "piece": {"_count": 1, "in": {"_count": 1}}}, "quilled": {"_count": 1, "an": {"_count": 1, "instant": {"_count": 1}}}, "legions": {"_count": 1, "of": {"_count": 1, "admirers": {"_count": 1}}}, "Revulsion": {"_count": 2, "and": {"_count": 1, "fury": {"_count": 1}}, "Jinx": {"_count": 1, "but": {"_count": 1}}}, "phrases": {"_count": 1, "from": {"_count": 1, "Ritas": {"_count": 1}}}, "restart": {"_count": 1, "his": {"_count": 1, "lawn": {"_count": 1}}}, "mower": {"_count": 2, "look": {"_count": 1, "up": {"_count": 1}}, "stalled": {"_count": 1, "again": {"_count": 1}}}, "defaming": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "peach": {"_count": 1, "color": {"_count": 1, "of": {"_count": 1}}}, "pierce": {"_count": 2, "him": {"_count": 1, "again": {"_count": 1}}, "Harrys": {"_count": 1, "heart": {"_count": 1}}}, "DEPARTING": {"_count": 1, "The": {"_count": 1, "sound": {"_count": 1}}}, "fawn": {"_count": 1, "zipup": {"_count": 1, "jacket": {"_count": 1}}}, "zipup": {"_count": 1, "jacket": {"_count": 1, "Aunt": {"_count": 1}}}, "salmoncolored": {"_count": 1, "coat": {"_count": 1, "and": {"_count": 1}}}, "claptrap": {"_count": 1, "said": {"_count": 1, "Uncle": {"_count": 1}}}, "dumbbells": {"_count": 1, "to": {"_count": 1, "his": {"_count": 1}}}, "unpacked": {"_count": 1, "had": {"_count": 1, "attempted": {"_count": 1}}}, "\u2018my": {"_count": 1, "lot": {"_count": 1, "right": {"_count": 1}}}, "skyrocketing": {"_count": 1, "around": {"_count": 1, "here": {"_count": 1}}}, "Slights": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "Thing": {"_count": 2, "Voldemort": {"_count": 1, "said": {"_count": 1}}, "was": {"_count": 1, "he": {"_count": 1}}}, "unannounced": {"_count": 1, "visit": {"_count": 1, "a": {"_count": 1}}}, "exposes": {"_count": 1, "you": {"_count": 1, "as": {"_count": 1}}}, "privet": {"_count": 1, "hedges": {"_count": 1, "": {"_count": 1}}}, "harboring": {"_count": 1, "a": {"_count": 1, "marked": {"_count": 1}}}, "discreetly": {"_count": 1, "behind": {"_count": 1, "the": {"_count": 1}}}, "CVs": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "TV": {"_count": 1, "set": {"_count": 1, "himself": {"_count": 1}}}, "derailments": {"_count": 1, "and": {"_count": 1, "whatever": {"_count": 1}}}, "fogs": {"_count": 1, "theyre": {"_count": 1, "caused": {"_count": 1}}}, "outrun": {"_count": 2, "wizards": {"_count": 1, "I": {"_count": 1}}, "Voldemort": {"_count": 1, "": {"_count": 1}}}, "bestowing": {"_count": 1, "a": {"_count": 1, "small": {"_count": 1}}}, "bamboozled": {"_count": 1, "by": {"_count": 1, "all": {"_count": 1}}}, "Dedaluss": {"_count": 3, "pocket": {"_count": 1, "watch": {"_count": 1}}, "waistcoat": {"_count": 1, "pocket": {"_count": 1}}, "top": {"_count": 1, "hat": {"_count": 1}}}, "Disapparition": {"_count": 2, "Harry": {"_count": 1, "thus": {"_count": 1}}, "and": {"_count": 1, "Apparition": {"_count": 1}}}, "metronome": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "concepts": {"_count": 1, "too": {"_count": 1, "difficult": {"_count": 1}}}, "grapple": {"_count": 1, "with": {"_count": 1, "thoughts": {"_count": 1}}}, "unwieldy": {"_count": 1, "for": {"_count": 1, "expression": {"_count": 1}}}, "scarletfaced": {"_count": 1, "silence": {"_count": 1, "": {"_count": 1}}}, "Sso": {"_count": 1, "sweet": {"_count": 1, "Dudders": {"_count": 1}}}, "Ssuch": {"_count": 1, "a": {"_count": 1, "lovely": {"_count": 1}}}, "ssaying": {"_count": 1, "thank": {"_count": 1, "you": {"_count": 1}}}, "exchanges": {"_count": 1, "with": {"_count": 1, "an": {"_count": 1}}}, "bemusement": {"_count": 1, "and": {"_count": 1, "now": {"_count": 1}}}, "clasping": {"_count": 1, "his": {"_count": 1, "hand": {"_count": 1}}}, "chums": {"_count": 1, "said": {"_count": 1, "Diggle": {"_count": 1}}}, "repress": {"_count": 2, "an": {"_count": 1, "urge": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}}, "graveled": {"_count": 1, "drive": {"_count": 1, "and": {"_count": 1}}}, "SEVEN": {"_count": 1, "POTTERS": {"_count": 1, "Harry": {"_count": 1}}}, "POTTERS": {"_count": 1, "Harry": {"_count": 1, "ran": {"_count": 1}}}, "solitude": {"_count": 3, "had": {"_count": 1, "been": {"_count": 1}}, "whenever": {"_count": 1, "it": {"_count": 1}}, "this": {"_count": 1, "did": {"_count": 1}}}, "puked": {"_count": 1, "on": {"_count": 1, "it": {"_count": 1}}}, "choicest": {"_count": 1, "swear": {"_count": 1, "words": {"_count": 1}}}, "Dominating": {"_count": 1, "the": {"_count": 1, "scene": {"_count": 1}}}, "sidecar": {"_count": 19, "attached": {"_count": 1, "": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "began": {"_count": 3, "to": {"_count": 3}}, "give": {"_count": 1, "a": {"_count": 1}}, "by": {"_count": 1, "Hedwigs": {"_count": 1}}, "he": {"_count": 1, "could": {"_count": 1}}, "for": {"_count": 1, "dear": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}, "sway": {"_count": 1, "ominously": {"_count": 1}}, "was": {"_count": 1, "starting": {"_count": 1}}, "broke": {"_count": 1, "away": {"_count": 1}}, "and": {"_count": 2, "shouted": {"_count": 1}, "yelled": {"_count": 1}}, "rose": {"_count": 1, "like": {"_count": 1}}, "beginning": {"_count": 1, "to": {"_count": 1}}, "Harry": {"_count": 1, "pulled": {"_count": 1}}}, "Wrenching": {"_count": 1, "open": {"_count": 1, "the": {"_count": 1}}}, "dizzying": {"_count": 2, "rapidity": {"_count": 1, "": {"_count": 1}}, "circles": {"_count": 1, "Harry": {"_count": 1}}}, "identically": {"_count": 1, "Bill": {"_count": 1, "badly": {"_count": 1}}}, "kindfaced": {"_count": 1, "balding": {"_count": 1, "his": {"_count": 1}}}, "battleworn": {"_count": 1, "one": {"_count": 1, "legged": {"_count": 1}}}, "broadshouldered": {"_count": 1, "Hagrid": {"_count": 1, "with": {"_count": 1}}}, "hangdog": {"_count": 2, "with": {"_count": 1, "his": {"_count": 1}}, "expressions": {"_count": 1, "of": {"_count": 1}}}, "machine": {"_count": 2, "and": {"_count": 1, "she": {"_count": 1}}, "seized": {"_count": 1, "a": {"_count": 1}}}, "congrat": {"_count": 1, "All": {"_count": 1, "right": {"_count": 1}}}, "catchup": {"_count": 1, "later": {"_count": 1, "": {"_count": 1}}}, "Plan": {"_count": 2, "A": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "imprisonable": {"_count": 1, "offense": {"_count": 1, "to": {"_count": 1}}}, "Trace": {"_count": 14, "on": {"_count": 7, "you": {"_count": 3}, "me": {"_count": 1}, "him": {"_count": 3}}, "the": {"_count": 1, "Trace": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "to": {"_count": 1, "break": {"_count": 1}}, "cant": {"_count": 1, "detect": {"_count": 1}}, "Harry": {"_count": 1, "sent": {"_count": 1}}, "breaks": {"_count": 1, "at": {"_count": 1}}, "back": {"_count": 1, "on": {"_count": 1}}}, "underseventeens": {"_count": 1, "the": {"_count": 1, "way": {"_count": 1}}}, "flaws": {"_count": 1, "in": {"_count": 1, "this": {"_count": 1}}}, "pristine": {"_count": 4, "kitchen": {"_count": 1, "you": {"_count": 1}}, "bowls": {"_count": 1, "whistling": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "copy": {"_count": 1, "of": {"_count": 1}}}, "Muriels": {"_count": 6, "you": {"_count": 1, "get": {"_count": 1}}, "not": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "wed": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "zis": {"_count": 1, "evening": {"_count": 1}}}, "headcount": {"_count": 1, "fourteen": {"_count": 1, "of": {"_count": 1}}}, "complacency": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "specky": {"_count": 1, "scrawny": {"_count": 1, "gits": {"_count": 1}}}, "scuppered": {"_count": 1, "said": {"_count": 1, "George": {"_count": 1}}}, "decoys": {"_count": 3, "": {"_count": 2, ".": {"_count": 2}}, "that": {"_count": 1, "I": {"_count": 1}}}, "doit": {"_count": 1, "sort": {"_count": 1, "of": {"_count": 1}}}, "hank": {"_count": 1, "of": {"_count": 1, "hair": {"_count": 1}}}, "tastier": {"_count": 1, "than": {"_count": 1, "Crabbe": {"_count": 1}}}, "toldjer": {"_count": 1, "Id": {"_count": 1, "sooner": {"_count": 1}}}, "spineless": {"_count": 1, "worm": {"_count": 1, "any": {"_count": 1}}}, "Eatersll": {"_count": 2, "want": {"_count": 1, "to": {"_count": 1}}, "be": {"_count": 1, "taken": {"_count": 1}}}, "eggcupsized": {"_count": 1, "glasses": {"_count": 1, "from": {"_count": 1}}}, "Altogether": {"_count": 1, "then": {"_count": 1, "": {"_count": 1}}}, "Bah": {"_count": 1, "said": {"_count": 1, "Fleur": {"_count": 1}}}, "ideous": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "vice": {"_count": 1, "versa": {"_count": 1, "": {"_count": 1}}}, "versa": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "doppelgangers": {"_count": 1, "rummaged": {"_count": 1, "in": {"_count": 1}}}, "impunity": {"_count": 1, "clearly": {"_count": 1, "much": {"_count": 1}}}, "eyesight": {"_count": 1, "really": {"_count": 1, "is": {"_count": 1}}}, "luggageladen": {"_count": 1, "Harrys": {"_count": 1, "faced": {"_count": 1}}}, "Whym": {"_count": 1, "I": {"_count": 1, "with": {"_count": 1}}}, "soppy": {"_count": 1, "slavish": {"_count": 1, "look": {"_count": 1}}}, "slavish": {"_count": 1, "look": {"_count": 1, "that": {"_count": 1}}}, "bumper": {"_count": 1, "car": {"_count": 1, "": {"_count": 1}}}, "tinkerin": {"_count": 1, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "handlebars": {"_count": 5, "now": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "sped": {"_count": 1}}, "I": {"_count": 1, "think": {"_count": 1}}, "Harry": {"_count": 1, "could": {"_count": 1}}, "to": {"_count": 1, "avoid": {"_count": 1}}}, "speedometer": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "emergencies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "diversions": {"_count": 1, "lost": {"_count": 1, "": {"_count": 1}}}, "Screams": {"_count": 3, "a": {"_count": 1, "blaze": {"_count": 1}}, "of": {"_count": 1, "terror": {"_count": 1}}, "split": {"_count": 1, "the": {"_count": 1}}}, "Streetlights": {"_count": 1, "above": {"_count": 1, "him": {"_count": 1}}}, "HEDWIG": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "paramount": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "flares": {"_count": 1, "of": {"_count": 1, "green": {"_count": 1}}}, "ramming": {"_count": 1, "Hedwigs": {"_count": 1, "cage": {"_count": 1}}}, "TURN": {"_count": 1, "AROUND": {"_count": 1, "": {"_count": 1}}}, "fuel": {"_count": 1, "gauge": {"_count": 1, "": {"_count": 1}}}, "bloomed": {"_count": 2, "suddenly": {"_count": 1, "out": {"_count": 1}}, "like": {"_count": 1, "two": {"_count": 1}}}, "REPAROl": {"_count": 1, "There": {"_count": 1, "was": {"_count": 1}}}, "impetus": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "unsteerable": {"_count": 1, "but": {"_count": 1, "at": {"_count": 1}}}, "motorbikes": {"_count": 2, "seat": {"_count": 1, "and": {"_count": 1}}, "engine": {"_count": 1, "Next": {"_count": 1}}}, "backto": {"_count": 2, "back": {"_count": 2, "with": {"_count": 1}, "to": {"_count": 1}}}, "Confringo": {"_count": 1, "He": {"_count": 1, "knew": {"_count": 1}}}, "gutwrenching": {"_count": 1, "pang": {"_count": 1, "for": {"_count": 1}}}, "dragonfire": {"_count": 3, "button": {"_count": 2, "again": {"_count": 1}, "": {"_count": 1}}, "thing": {"_count": 1, "again": {"_count": 1}}}, "insecurely": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "pursuers": {"_count": 3, "barely": {"_count": 1, "holding": {"_count": 1}}, "had": {"_count": 1, "fallen": {"_count": 1}}, "he": {"_count": 1, "was": {"_count": 1}}}, "whiteblue": {"_count": 1, "fire": {"_count": 1, "shot": {"_count": 1}}}, "lapped": {"_count": 2, "at": {"_count": 1, "him": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}}, "Disarm": {"_count": 3, "Stan": {"_count": 1, "": {"_count": 1}}, "him": {"_count": 1, "instead": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "millimeters": {"_count": 1, "cast": {"_count": 1, "from": {"_count": 1}}}, "Clinging": {"_count": 1, "on": {"_count": 1, "for": {"_count": 1}}}, "Selwyn": {"_count": 6, "give": {"_count": 1, "me": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "said": {"_count": 2, "a": {"_count": 1}, "the": {"_count": 1}}, "if": {"_count": 1, "you": {"_count": 1}}}, "groundtrembling": {"_count": 1, "crash": {"_count": 1, "he": {"_count": 1}}}, "FALLEN": {"_count": 1, "WARRIOR": {"_count": 1, "Hagrid": {"_count": 1}}}, "WARRIOR": {"_count": 1, "Hagrid": {"_count": 1, "": {"_count": 1}}}, "Crashed": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "fairhaired": {"_count": 1, "bigbellied": {"_count": 1, "man": {"_count": 1}}}, "bigbellied": {"_count": 1, "man": {"_count": 1, "was": {"_count": 1}}}, "wifes": {"_count": 2, "seeing": {"_count": 1, "to": {"_count": 1}}, "Blood": {"_count": 1, "Status": {"_count": 1}}}, "Doras": {"_count": 2, "father": {"_count": 2, "": {"_count": 2}}}, "overstretch": {"_count": 1, "himself": {"_count": 1, "again": {"_count": 1}}}, "aspidistra": {"_count": 1, "he": {"_count": 1, "covered": {"_count": 1}}}, "goners": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Dorall": {"_count": 1, "be": {"_count": 1, "okay": {"_count": 1}}}, "Dromeda": {"_count": 1, "said": {"_count": 1, "Ted": {"_count": 1}}}, "insincere": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Dora": {"_count": 3, "to": {"_count": 1, "send": {"_count": 1}}, "quite": {"_count": 1, "agrees": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}}, "silverbacked": {"_count": 1, "hairbrush": {"_count": 1, "lying": {"_count": 1}}}, "hairbrush": {"_count": 3, "lying": {"_count": 1, "on": {"_count": 1}}, "glowed": {"_count": 1, "bright": {"_count": 1}}, "Harry": {"_count": 1, "stood": {"_count": 1}}}, "Throwing": {"_count": 1, "aside": {"_count": 1, "the": {"_count": 1}}}, "selfjustifying": {"_count": 1, "note": {"_count": 1, "in": {"_count": 1}}}, "medicinal": {"_count": 1, "purposes": {"_count": 1, "": {"_count": 1}}}, "sneaker": {"_count": 1, "should": {"_count": 1, "have": {"_count": 1}}}, "Le": {"_count": 2, "go": {"_count": 2, "of": {"_count": 2}}}, "checkin": {"_count": 1, "me": {"_count": 1, "": {"_count": 1}}}, "Repeating": {"_count": 1, "it": {"_count": 1, "tonight": {"_count": 1}}}, "suicidal": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "idiotic": {"_count": 1, "and": {"_count": 1, "yet": {"_count": 1}}}, "grain": {"_count": 1, "of": {"_count": 1, "defiance": {"_count": 1}}}, "oaths": {"_count": 1, "and": {"_count": 1, "apologies": {"_count": 1}}}, "Followed": {"_count": 1, "by": {"_count": 1, "five": {"_count": 1}}}, "Fly": {"_count": 1, "supplied": {"_count": 1, "Harry": {"_count": 1}}}, "Traverss": {"_count": 1, "hood": {"_count": 1, "fell": {"_count": 1}}}, "specialty": {"_count": 1, "of": {"_count": 1, "Snapes": {"_count": 1}}}, "staunched": {"_count": 1, "his": {"_count": 1, "bleeding": {"_count": 1}}}, "Georgie": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Saintlike": {"_count": 2, "he": {"_count": 1, "murmured": {"_count": 1}}, "repeated": {"_count": 1, "George": {"_count": 1}}}, "holy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Hole": {"_count": 1, "v": {"_count": 1, "Fred": {"_count": 1}}}, "v": {"_count": 1, "Fred": {"_count": 1, "geddit": {"_count": 1}}}, "geddit": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "earrelated": {"_count": 1, "humor": {"_count": 1, "before": {"_count": 1}}}, "holey": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "tearsoaked": {"_count": 1, "mother": {"_count": 1, "": {"_count": 1}}}, "sickbed": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "of": {"_count": 1, "a": {"_count": 1}}}, "vigil": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "relinquishing": {"_count": 1, "her": {"_count": 1, "hold": {"_count": 1}}}, "Downing": {"_count": 1, "Street": {"_count": 1, "I": {"_count": 1}}}, "bestowed": {"_count": 2, "upon": {"_count": 2, "her": {"_count": 1}, "Harry": {"_count": 1}}}, "perfunctory": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "consummate": {"_count": 1, "survivor": {"_count": 1, "": {"_count": 1}}}, "protegee": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "dispelling": {"_count": 1, "the": {"_count": 1, "numbness": {"_count": 1}}}, "skullduggery": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "eez": {"_count": 4, "all": {"_count": 1, "very": {"_count": 1}}, "in": {"_count": 1, "ze": {"_count": 1}}, "charmante": {"_count": 1, "your": {"_count": 1}}, "leetle": {"_count": 1, "Teddy": {"_count": 1}}}, "ole": {"_count": 2, "plan": {"_count": 1, "": {"_count": 1}}, "lot": {"_count": 1, "of": {"_count": 1}}}, "amplified": {"_count": 1, "his": {"_count": 1, "voice": {"_count": 1}}}, "willingness": {"_count": 2, "to": {"_count": 1, "trust": {"_count": 1}}, "for": {"_count": 1, "immediate": {"_count": 1}}}, "irrationally": {"_count": 1, "angry": {"_count": 1, "": {"_count": 1}}}, "suddenness": {"_count": 1, "and": {"_count": 1, "completeness": {"_count": 1}}}, "completeness": {"_count": 1, "of": {"_count": 1, "death": {"_count": 1}}}, "beleaguered": {"_count": 1, "and": {"_count": 1, "blackmailed": {"_count": 1}}}, "blackmailed": {"_count": 1, "Did": {"_count": 1, "they": {"_count": 1}}}, "Escaped": {"_count": 1, "him": {"_count": 1, "fought": {"_count": 1}}}, "pressured": {"_count": 1, "situation": {"_count": 1, "you": {"_count": 1}}}, "GHOUL": {"_count": 1, "IN": {"_count": 1, "PAJAMAS": {"_count": 1}}}, "PAJAMAS": {"_count": 1, "The": {"_count": 1, "shock": {"_count": 1}}}, "relay": {"_count": 2, "news": {"_count": 1, "": {"_count": 1}}, "to": {"_count": 1, "Lord": {"_count": 1}}}, "assuage": {"_count": 2, "his": {"_count": 2, "feelings": {"_count": 1}, "torturing": {"_count": 1}}}, "YouKnowWhats": {"_count": 1, "are": {"_count": 1, "": {"_count": 1}}}, "Tracell": {"_count": 1, "break": {"_count": 1, "on": {"_count": 1}}}, "scullery": {"_count": 2, "off": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "mangle": {"_count": 1, "turned": {"_count": 1, "of": {"_count": 1}}}, "\u2018stuff": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "bulrushes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "preparations": {"_count": 5, "for": {"_count": 3, "Bill": {"_count": 1}, "the": {"_count": 2}}, "complete": {"_count": 1, "in": {"_count": 1}}, "to": {"_count": 1, "watch": {"_count": 1}}}, "kindest": {"_count": 1, "explanation": {"_count": 1, "of": {"_count": 1}}}, "terrors": {"_count": 2, "of": {"_count": 1, "their": {"_count": 1}}, "alone": {"_count": 1, "and": {"_count": 1}}}, "colormatching": {"_count": 1, "favors": {"_count": 1, "ribbons": {"_count": 1}}}, "gnoming": {"_count": 1, "the": {"_count": 1, "garden": {"_count": 1}}}, "batches": {"_count": 1, "of": {"_count": 1, "canapes": {"_count": 1}}}, "canapes": {"_count": 1, "however": {"_count": 1, "Harry": {"_count": 1}}}, "motive": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "volau": {"_count": 1, "vents": {"_count": 1, "": {"_count": 1}}}, "vents": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "dilutes": {"_count": 1, "the": {"_count": 1, "power": {"_count": 1}}}, "unsaid": {"_count": 2, "things": {"_count": 2, "that": {"_count": 1}, "into": {"_count": 1}}}, "Azkabans": {"_count": 1, "seen": {"_count": 1, "a": {"_count": 1}}}, "champagne": {"_count": 9, "": {"_count": 4, ".": {"_count": 4}}, "that": {"_count": 1, "floated": {"_count": 1}}, "in": {"_count": 1, "her": {"_count": 1}}, "belched": {"_count": 1, "and": {"_count": 1}}, "was": {"_count": 1, "stealing": {"_count": 1}}, "which": {"_count": 1, "dribbled": {"_count": 1}}}, "Monsieur": {"_count": 11, "and": {"_count": 2, "Madame": {"_count": 2}}, "Delacour": {"_count": 9, "was": {"_count": 1}, "still": {"_count": 1}, "": {"_count": 2}, "pronounced": {"_count": 1}, "were": {"_count": 1}, "assured": {"_count": 1}, "and": {"_count": 1}, "bouncing": {"_count": 1}}}, "gaskin": {"_count": 1, "as": {"_count": 1, "I": {"_count": 1}}}, "battery": {"_count": 1, "and": {"_count": 1, "itll": {"_count": 1}}}, "messy": {"_count": 3, "as": {"_count": 1, "it": {"_count": 1}}, "kitchen": {"_count": 1, "and": {"_count": 1}}, "affair": {"_count": 1, "it": {"_count": 1}}}, "Grammatica": {"_count": 1, "onto": {"_count": 1, "one": {"_count": 1}}}, "tidied": {"_count": 1, "up": {"_count": 1, "after": {"_count": 1}}}, "Startled": {"_count": 1, "Harry": {"_count": 1, "looked": {"_count": 1}}}, "fished": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "revoltinglooking": {"_count": 1, "handkerchief": {"_count": 1, "that": {"_count": 1}}}, "Tergeo": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "The": {"_count": 1, "dust": {"_count": 1}}}, "awfful": {"_count": 1, "isnt": {"_count": 1, "it": {"_count": 1}}}, "jjust": {"_count": 1, "nnever": {"_count": 1, "imagined": {"_count": 1}}}, "nnever": {"_count": 1, "imagined": {"_count": 1, "MadEye": {"_count": 1}}}, "\u2018Cconstant": {"_count": 1, "vigilance": {"_count": 1, "said": {"_count": 1}}}, "squit": {"_count": 1, "Mundungus": {"_count": 1, "": {"_count": 1}}}, "retied": {"_count": 1, "it": {"_count": 1, "shut": {"_count": 1}}}, "mobile": {"_count": 1, "library": {"_count": 1, "": {"_count": 1}}}, "syllabary": {"_count": 2, "onto": {"_count": 1, "the": {"_count": 1}}, "either": {"_count": 1, "": {"_count": 1}}}, "Wendell": {"_count": 2, "and": {"_count": 2, "Monica": {"_count": 2}}}, "Monica": {"_count": 2, "Wilkins": {"_count": 2, "and": {"_count": 1}, "dont": {"_count": 1}}}, "Wilkins": {"_count": 2, "and": {"_count": 1, "that": {"_count": 1}}, "dont": {"_count": 1, "know": {"_count": 1}}}, "reproaching": {"_count": 1, "him": {"_count": 1, "for": {"_count": 1}}}, "tact": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Descendo": {"_count": 1, "muttered": {"_count": 1, "Ron": {"_count": 1}}}, "hatch": {"_count": 1, "opened": {"_count": 1, "right": {"_count": 1}}}, "halfmoaning": {"_count": 1, "sound": {"_count": 1, "came": {"_count": 1}}}, "drains": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ghouls": {"_count": 3, "normally": {"_count": 1, "wear": {"_count": 1}}, "were": {"_count": 1, "generally": {"_count": 1}}, "going": {"_count": 1, "to": {"_count": 1}}}, "Spattergroit": {"_count": 1, "s": {"_count": 1, "really": {"_count": 1}}}, "uvula": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "poxy": {"_count": 1, "napkin": {"_count": 1, "ring": {"_count": 1}}}, "bridesmaid": {"_count": 1, "she": {"_count": 1, "needs": {"_count": 1}}}, "rehearsal": {"_count": 1, "and": {"_count": 1, "shes": {"_count": 1}}}, "indecisively": {"_count": 1, "over": {"_count": 1, "Break": {"_count": 1}}}, "counterargument": {"_count": 1, "Ron": {"_count": 1, "spoke": {"_count": 1}}}, "interposed": {"_count": 1, "Hermione": {"_count": 1, "": {"_count": 1}}}, "Remorse": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "footnote": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "destructive": {"_count": 2, "that": {"_count": 1, "the": {"_count": 1}}, "as": {"_count": 1, "basilisk": {"_count": 1}}}, "\u25a1": {"_count": 1, "phoenix": {"_count": 1, "tears": {"_count": 1}}}, "substances": {"_count": 2, "as": {"_count": 1, "destructive": {"_count": 1}}, "that": {"_count": 1, "destroy": {"_count": 1}}}, "container": {"_count": 2, "its": {"_count": 1, "enchanted": {"_count": 1}}, "is": {"_count": 1, "still": {"_count": 1}}}, "emotionally": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wallshaking": {"_count": 1, "crash": {"_count": 1, "": {"_count": 1}}}, "weddings": {"_count": 2, "over": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "spruced": {"_count": 1, "up": {"_count": 1, "although": {"_count": 1}}}, "contingent": {"_count": 1, "of": {"_count": 1, "capering": {"_count": 1}}}, "capering": {"_count": 2, "gnomes": {"_count": 1, "": {"_count": 1}}, "as": {"_count": 1, "Mollys": {"_count": 1}}}, "leafgreen": {"_count": 1, "robes": {"_count": 1, "who": {"_count": 1}}}, "Maman": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Papa": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "union": {"_count": 2, "of": {"_count": 2, "our": {"_count": 1}, "two": {"_count": 1}}}, "Apolline": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Enchantee": {"_count": 1, "she": {"_count": 1, "said": {"_count": 1}}}, "usband": {"_count": 1, "as": {"_count": 1, "been": {"_count": 1}}}, "leetle": {"_count": 3, "daughter": {"_count": 1, "Gabrielle": {"_count": 1}}, "less": {"_count": 1, "hair": {"_count": 1}}, "Teddy": {"_count": 1, "": {"_count": 1}}}, "Charmanti": {"_count": 1, "Madame": {"_count": 1, "Delacour": {"_count": 1}}}, "downside": {"_count": 2, "the": {"_count": 1, "Burrow": {"_count": 1}}, "no": {"_count": 1, "sword": {"_count": 1}}}, "Opportunities": {"_count": 1, "to": {"_count": 1, "make": {"_count": 1}}}, "volunteering": {"_count": 1, "to": {"_count": 1, "feed": {"_count": 1}}}, "foiled": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "henhouse": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Millamants": {"_count": 1, "Magic": {"_count": 1, "Marquees": {"_count": 1}}}, "Marquees": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "humbly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "safetys": {"_count": 1, "much": {"_count": 1, "more": {"_count": 1}}}, "envisaging": {"_count": 1, "the": {"_count": 1, "additional": {"_count": 1}}}, "\u2018Gregorovitch": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "cradled": {"_count": 2, "in": {"_count": 1, "a": {"_count": 1}}, "Harry": {"_count": 1, "in": {"_count": 1}}}, "Gorgovitch": {"_count": 3, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "Chaser": {"_count": 1, "transferred": {"_count": 1}}}, "Dragomir": {"_count": 3, "Gorgovitch": {"_count": 1, "Chaser": {"_count": 1}}, "Despard": {"_count": 1, "said": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Glasses": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Slick": {"_count": 1, "snorted": {"_count": 1, "Ron": {"_count": 1}}}, "Reveling": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "Unwrap": {"_count": 1, "it": {"_count": 1, "up": {"_count": 1}}}, "FailSafe": {"_count": 2, "Ways": {"_count": 2, "to": {"_count": 2}}}, "Explains": {"_count": 1, "everything": {"_count": 1, "you": {"_count": 1}}}, "cooker": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Fabians": {"_count": 1, "and": {"_count": 1, "he": {"_count": 1}}}, "razor": {"_count": 1, "from": {"_count": 1, "Bill": {"_count": 1}}}, "smoothest": {"_count": 1, "shave": {"_count": 1, "you": {"_count": 1}}}, "ozzerwise": {"_count": 1, "you": {"_count": 1, "might": {"_count": 1}}}, "allwitch": {"_count": 1, "Quidditch": {"_count": 1, "team": {"_count": 1}}}, "weepy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sweetsmelling": {"_count": 1, "hair": {"_count": 1, "The": {"_count": 1}}}, "forgetfulness": {"_count": 1, "was": {"_count": 1, "gone": {"_count": 1}}}, "stillcrowded": {"_count": 1, "kitchen": {"_count": 1, "and": {"_count": 1}}}, "seclusion": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "unencumbered": {"_count": 1, "whereas": {"_count": 1, "his": {"_count": 1}}}, "onetoone": {"_count": 1, "meeting": {"_count": 1, "with": {"_count": 1}}}, "drape": {"_count": 1, "themselves": {"_count": 1, "artistically": {"_count": 1}}}, "artistically": {"_count": 1, "over": {"_count": 1, "the": {"_count": 1}}}, "crabapple": {"_count": 1, "tree": {"_count": 1, "to": {"_count": 1}}}, "beachballsized": {"_count": 1, "Snitch": {"_count": 1, "floating": {"_count": 1}}}, "suspending": {"_count": 1, "with": {"_count": 1, "her": {"_count": 1}}}, "Vaguely": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "gazes": {"_count": 1, "as": {"_count": 1, "Hagrid": {"_count": 1}}}, "Mokeskin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Hide": {"_count": 3, "anythin": {"_count": 1, "in": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "them": {"_count": 1, "all": {"_count": 1}}}, "Snothin": {"_count": 1, "said": {"_count": 1, "Hagrid": {"_count": 1}}}, "dustbinlid": {"_count": 1, "sized": {"_count": 1, "hand": {"_count": 1}}}, "muscley": {"_count": 1, "arms": {"_count": 1, "": {"_count": 1}}}, "Norberta": {"_count": 1, "now": {"_count": 1, "": {"_count": 1}}}, "scraggy": {"_count": 1, "and": {"_count": 1, "grim": {"_count": 1}}}, "gatecrashing": {"_count": 1, "a": {"_count": 1, "party": {"_count": 1}}}, "hostilities": {"_count": 1, "this": {"_count": 1, "early": {"_count": 1}}}, "Aall": {"_count": 1, "of": {"_count": 1, "us": {"_count": 1}}}, "Justifiable": {"_count": 1, "Confiscation": {"_count": 1, "gives": {"_count": 1}}}, "deceaseds": {"_count": 1, "possessions": {"_count": 1, "are": {"_count": 1}}}, "thirtyone": {"_count": 2, "days": {"_count": 2, "are": {"_count": 1}, "I": {"_count": 1}}}, "stoptalkingnow": {"_count": 1, "sort": {"_count": 1, "of": {"_count": 1}}}, "bequests": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "negligible": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Testament": {"_count": 1, "of": {"_count": 1, "Albus": {"_count": 1}}}, "\u2018To": {"_count": 2, "Ronald": {"_count": 1, "Bilius": {"_count": 1}}, "Harry": {"_count": 1, "James": {"_count": 1}}}, "Deluminator": {"_count": 25, "in": {"_count": 2, "the": {"_count": 1}, "his": {"_count": 1}}, "to": {"_count": 3, "Ron": {"_count": 1}, "plunge": {"_count": 1}, "release": {"_count": 1}}, "Mr": {"_count": 1, "Weasley": {"_count": 1}}, "and": {"_count": 6, "The": {"_count": 1}, "Harry": {"_count": 1}, "restoring": {"_count": 1}, "it": {"_count": 1}, "its": {"_count": 1}, "the": {"_count": 1}}, "for": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "maybe": {"_count": 1, "Im": {"_count": 1}}, "again": {"_count": 2, "came": {"_count": 1}, "the": {"_count": 1}}, "didnt": {"_count": 1, "he": {"_count": 1}}, "turned": {"_count": 1, "out": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "had": {"_count": 1, "sucked": {"_count": 1}}}, "design": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "persevered": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "so": {"_count": 1, "as": {"_count": 1}}}, "Jean": {"_count": 1, "Granger": {"_count": 1, "I": {"_count": 1}}}, "Tales": {"_count": 12, "of": {"_count": 12, "Beedle": {"_count": 12}}}, "Beedle": {"_count": 17, "the": {"_count": 14, "Bard": {"_count": 14}}, "s": {"_count": 1, "arent": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "probably": {"_count": 1, "took": {"_count": 1}}}, "Bard": {"_count": 14, "in": {"_count": 1, "the": {"_count": 1}}, "and": {"_count": 2, "lamented": {"_count": 1}, "did": {"_count": 1}}, "": {"_count": 7, ".": {"_count": 6}, "?": {"_count": 1}}, "how": {"_count": 1, "do": {"_count": 1}}, "from": {"_count": 1, "the": {"_count": 1}}, "they": {"_count": 1, "wouldnt": {"_count": 1}}, "when": {"_count": 1, "he": {"_count": 1}}}, "anticlimax": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "persevere": {"_count": 1, "and": {"_count": 1, "whatever": {"_count": 1}}}, "symbolic": {"_count": 1, "keepsake": {"_count": 1, "then": {"_count": 1}}}, "keepsake": {"_count": 1, "then": {"_count": 1, "": {"_count": 1}}}, "Dusk": {"_count": 1, "was": {"_count": 1, "really": {"_count": 1}}}, "ingrained": {"_count": 1, "habit": {"_count": 1, "she": {"_count": 1}}}, "disputed": {"_count": 1, "capture": {"_count": 1, "": {"_count": 1}}}, "bequest": {"_count": 1, "Potter": {"_count": 1, "": {"_count": 1}}}, "rekindling": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "artifact": {"_count": 1, "and": {"_count": 1, "as": {"_count": 1}}}, "Deluminators": {"_count": 1, "or": {"_count": 1, "covering": {"_count": 1}}}, "counties": {"_count": 1, "he": {"_count": 1, "killed": {"_count": 1}}}, "Remembered": {"_count": 2, "youre": {"_count": 1, "not": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}}, "insolence": {"_count": 1, "and": {"_count": 1, "insubordination": {"_count": 1}}}, "insubordination": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "awfully": {"_count": 1, "hungry": {"_count": 1, "we": {"_count": 1}}}, "overstretched": {"_count": 1, "Burrow": {"_count": 1, "left": {"_count": 1}}}, "mokeskin": {"_count": 2, "purse": {"_count": 1, "not": {"_count": 1}}, "and": {"_count": 1, "for": {"_count": 1}}}, "shard": {"_count": 4, "of": {"_count": 4, "Siriuss": {"_count": 2}, "mirror": {"_count": 1}, "ice": {"_count": 1}}}, "quickening": {"_count": 2, "as": {"_count": 1, "he": {"_count": 1}}, "excitement": {"_count": 1, "that": {"_count": 1}}}, "Writing": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Engraved": {"_count": 2, "upon": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 1, "foothigh": {"_count": 1}}}, "inflections": {"_count": 1, "they": {"_count": 1, "were": {"_count": 1}}}, "unresponsive": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Fortune": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Hopping": {"_count": 1, "Pot": {"_count": 1, "": {"_count": 1}}}, "Pot": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Babbitty": {"_count": 1, "Rabbitty": {"_count": 1, "and": {"_count": 1}}}, "Rabbitty": {"_count": 2, "and": {"_count": 1, "her": {"_count": 1}}, "Ron": {"_count": 1, "you": {"_count": 1}}}, "Stump": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Babbitty": {"_count": 1, "Rabbitty": {"_count": 1, "Ron": {"_count": 1}}}, "\u2018Snow": {"_count": 1, "White": {"_count": 1, "and": {"_count": 1}}}, "Dwarfs": {"_count": 1, "and": {"_count": 1, "\u2018Cinderella": {"_count": 1}}}, "\u2018Cinderella": {"_count": 1, "Whats": {"_count": 1, "that": {"_count": 1}}}, "oversleep": {"_count": 1, "tomorrow": {"_count": 1, "": {"_count": 1}}}, "bridegrooms": {"_count": 1, "mother": {"_count": 1, "might": {"_count": 1}}}, "WEDDING": {"_count": 1, "Three": {"_count": 1, "oclock": {"_count": 1}}}, "Cousin": {"_count": 2, "Barny": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "muttered": {"_count": 1}}}, "Barny": {"_count": 6, "and": {"_count": 1, "trust": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "Weasley": {"_count": 1, "": {"_count": 1}}, "you": {"_count": 1, "know": {"_count": 1}}}, "camouflage": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "whiterobed": {"_count": 1, "waiters": {"_count": 1, "had": {"_count": 1}}}, "goldenjacketed": {"_count": 1, "band": {"_count": 1, "and": {"_count": 1}}}, "fatter": {"_count": 1, "than": {"_count": 1, "him": {"_count": 1}}}, "Cried": {"_count": 1, "a": {"_count": 1, "bit": {"_count": 1}}}, "Brightly": {"_count": 1, "colored": {"_count": 1, "figures": {"_count": 1}}}, "Exotic": {"_count": 1, "flowers": {"_count": 1, "and": {"_count": 1}}}, "gems": {"_count": 1, "glittered": {"_count": 1, "from": {"_count": 1}}}, "cravats": {"_count": 1, "a": {"_count": 1, "hum": {"_count": 1}}}, "Holeyness": {"_count": 1, "said": {"_count": 1, "Fred": {"_count": 1}}}, "permettezmoi": {"_count": 1, "to": {"_count": 1, "assister": {"_count": 1}}}, "assister": {"_count": 1, "vous": {"_count": 1, "to": {"_count": 1}}}, "vous": {"_count": 1, "to": {"_count": 1, "a": {"_count": 1}}}, "antiwerewolf": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "reinforced": {"_count": 2, "seat": {"_count": 1, "set": {"_count": 1}}, "by": {"_count": 1, "Hermione": {"_count": 1}}}, "matchsticks": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "eccentriclooking": {"_count": 1, "wizard": {"_count": 1, "": {"_count": 1}}}, "candyfloss": {"_count": 2, "he": {"_count": 1, "wore": {"_count": 1}}, "hair": {"_count": 1, "was": {"_count": 1}}}, "eyewatering": {"_count": 1, "shade": {"_count": 1, "of": {"_count": 1}}}, "eggyolk": {"_count": 1, "yellow": {"_count": 1, "": {"_count": 1}}}, "Xenophilius": {"_count": 86, "Lovegood": {"_count": 7, "he": {"_count": 1}, "wearing": {"_count": 1}, "hes": {"_count": 1}, "": {"_count": 2}, "barefoot": {"_count": 1}, "erstwhile": {"_count": 1}}, "who": {"_count": 2, "was": {"_count": 2}}, "toward": {"_count": 1, "their": {"_count": 1}}, "despite": {"_count": 1, "the": {"_count": 1}}, "too": {"_count": 1, "": {"_count": 1}}, "this": {"_count": 1, "is": {"_count": 1}}, "": {"_count": 18, ".": {"_count": 18}}, "doesnt": {"_count": 1, "actually": {"_count": 1}}, "had": {"_count": 7, "been": {"_count": 3}, "climbed": {"_count": 1}, "said": {"_count": 1}, "just": {"_count": 1}, "described": {"_count": 1}}, "did": {"_count": 3, "not": {"_count": 3}}, "slammed": {"_count": 1, "the": {"_count": 1}}, "still": {"_count": 1, "looking": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "very": {"_count": 1, "clearly": {"_count": 1}}, "dogmatically": {"_count": 1, "two": {"_count": 1}}, "glanced": {"_count": 2, "behind": {"_count": 1}, "out": {"_count": 1}}, "gulped": {"_count": 1, "": {"_count": 1}}, "strode": {"_count": 1, "back": {"_count": 1}}, "raised": {"_count": 2, "his": {"_count": 2}}, "smacking": {"_count": 1, "his": {"_count": 1}}, "set": {"_count": 1, "aside": {"_count": 1}}, "nodded": {"_count": 1, "gravely": {"_count": 1}}, "sharply": {"_count": 1, "and": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}, "maddeningly": {"_count": 1, "smug": {"_count": 1}}, "waving": {"_count": 1, "an": {"_count": 1}}, "as": {"_count": 2, "if": {"_count": 1}, "he": {"_count": 1}}, "but": {"_count": 1, "she": {"_count": 1}}, "looked": {"_count": 2, "taken": {"_count": 1}, "ghastly": {"_count": 1}}, "now": {"_count": 1, "sitting": {"_count": 1}}, "his": {"_count": 1, "forefinger": {"_count": 1}}, "moving": {"_count": 1, "about": {"_count": 1}}, "was": {"_count": 6, "that": {"_count": 1}, "cooking": {"_count": 1}, "trying": {"_count": 2}, "making": {"_count": 1}, "feet": {"_count": 1}}, "reached": {"_count": 1, "the": {"_count": 1}}, "halted": {"_count": 1, "on": {"_count": 1}}, "tried": {"_count": 1, "to": {"_count": 1}}, "s": {"_count": 2, "hands": {"_count": 1}, "banging": {"_count": 1}}, "dropped": {"_count": 1, "the": {"_count": 1}}, "froze": {"_count": 1, "his": {"_count": 1}}, "licked": {"_count": 1, "his": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "hadnt": {"_count": 1, "been": {"_count": 1}}, "if": {"_count": 1, "if": {"_count": 1}}}, "Gernumbli": {"_count": 2, "gardensi": {"_count": 1, "": {"_count": 1}}, "magic": {"_count": 1, "": {"_count": 1}}}, "gardensi": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ours": {"_count": 1, "do": {"_count": 1, "know": {"_count": 1}}}, "accessorized": {"_count": 1, "with": {"_count": 1, "a": {"_count": 1}}}, "sunflower": {"_count": 1, "in": {"_count": 1, "her": {"_count": 1}}}, "acquaintance": {"_count": 2, "had": {"_count": 1, "missed": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "Bidding": {"_count": 1, "the": {"_count": 1, "wizard": {"_count": 1}}}, "Gnome": {"_count": 1, "saliva": {"_count": 1, "is": {"_count": 1}}}, "beneficial": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "burgeoning": {"_count": 1, "talent": {"_count": 1, "today": {"_count": 1}}}, "declaim": {"_count": 1, "in": {"_count": 1, "Mermish": {"_count": 1}}}, "Gernumblies": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "redrimmed": {"_count": 1, "eyes": {"_count": 1, "and": {"_count": 1}}}, "flamingo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ginevra": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "omelet": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bride": {"_count": 2, "on": {"_count": 1, "how": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Goblinmade": {"_count": 3, "you": {"_count": 1, "know": {"_count": 1}}, "armor": {"_count": 1, "does": {"_count": 1}}, "blades": {"_count": 1, "imbibe": {"_count": 1}}}, "Nightmare": {"_count": 1, "Muriel": {"_count": 1, "is": {"_count": 1}}}, "richer": {"_count": 1, "than": {"_count": 1, "anyone": {"_count": 1}}}, "lilaccolored": {"_count": 1, "dress": {"_count": 1, "with": {"_count": 1}}}, "GreatAunt": {"_count": 1, "Muriel": {"_count": 1, "doesnt": {"_count": 1}}}, "\u2018Bad": {"_count": 1, "posture": {"_count": 1, "and": {"_count": 1}}}, "posture": {"_count": 1, "and": {"_count": 1, "skinny": {"_count": 1}}}, "amaze": {"_count": 1, "me": {"_count": 1, "said": {"_count": 1}}}, "latecomer": {"_count": 1, "a": {"_count": 1, "darkhaired": {"_count": 1}}}, "vunderful": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "beaded": {"_count": 25, "bag": {"_count": 24, "which": {"_count": 2}, "": {"_count": 4}, "from": {"_count": 1}, "Polyjuice": {"_count": 1}, "and": {"_count": 7}, "this": {"_count": 1}, "when": {"_count": 1}, "three": {"_count": 1}, "every": {"_count": 1}, "containing": {"_count": 1}, "they": {"_count": 1}, "then": {"_count": 1}, "into": {"_count": 1}, "rummaged": {"_count": 1}}, "handbag": {"_count": 1, "in": {"_count": 1}}}, "disproportionate": {"_count": 1, "to": {"_count": 1, "its": {"_count": 1}}}, "jittery": {"_count": 1, "anticipation": {"_count": 1, "had": {"_count": 1}}}, "spurts": {"_count": 1, "of": {"_count": 1, "excited": {"_count": 1}}}, "amethystcolored": {"_count": 1, "robes": {"_count": 1, "with": {"_count": 1}}}, "buttonholes": {"_count": 1, "Fred": {"_count": 1, "wolfwhistled": {"_count": 1}}}, "radiance": {"_count": 1, "usually": {"_count": 1, "dimmed": {"_count": 1}}}, "beautified": {"_count": 1, "everybody": {"_count": 1, "it": {"_count": 1}}}, "prettier": {"_count": 1, "than": {"_count": 1, "usual": {"_count": 1}}}, "Ginevras": {"_count": 1, "dress": {"_count": 1, "is": {"_count": 1}}}, "William": {"_count": 1, "Arthur": {"_count": 1, "take": {"_count": 1}}}, "Isabelle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Trumpetlike": {"_count": 1, "sounds": {"_count": 1, "from": {"_count": 1}}}, "bonded": {"_count": 1, "for": {"_count": 1, "life": {"_count": 1}}}, "chimes": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "whiteclothed": {"_count": 1, "tables": {"_count": 1, "which": {"_count": 1}}}, "jacketed": {"_count": 1, "band": {"_count": 1, "trooped": {"_count": 1}}}, "Smooth": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "cop": {"_count": 1, "hold": {"_count": 1, "lets": {"_count": 1}}}, "emptiest": {"_count": 1, "was": {"_count": 1, "the": {"_count": 1}}}, "lifetimes": {"_count": 2, "supply": {"_count": 1, "of": {"_count": 1}}, "beats": {"_count": 1, "before": {"_count": 1}}}, "Gurdyroots": {"_count": 3, "": {"_count": 3, "?": {"_count": 2}, "!": {"_count": 1}}}, "waltzlike": {"_count": 1, "tune": {"_count": 1, "and": {"_count": 1}}}, "pleasurably": {"_count": 1, "flustered": {"_count": 1, "but": {"_count": 1}}}, "pugnacious": {"_count": 1, "tone": {"_count": 1, "indicated": {"_count": 1}}}, "vould": {"_count": 1, "duel": {"_count": 1, "him": {"_count": 1}}}, "vearing": {"_count": 1, "that": {"_count": 1, "filthy": {"_count": 1}}}, "Sign": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Grindelvald": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "killed": {"_count": 1, "many": {"_count": 1}}, "carved": {"_count": 1, "it": {"_count": 1}}, "taught": {"_count": 1, "them": {"_count": 1}}}, "Grindelvalds": {"_count": 1, "sign": {"_count": 1, "": {"_count": 1}}}, "poverful": {"_count": 1, "in": {"_count": 1, "this": {"_count": 1}}}, "vunce": {"_count": 1, "Grindelvald": {"_count": 1, "carved": {"_count": 1}}}, "vail": {"_count": 1, "at": {"_count": 1, "Durmstrang": {"_count": 1}}}, "ven": {"_count": 1, "he": {"_count": 1, "vos": {"_count": 1}}}, "runelike": {"_count": 1, "shape": {"_count": 1, "": {"_count": 1}}}, "Grindelwalds": {"_count": 4, "": {"_count": 1, "?": {"_count": 1}}, "mark": {"_count": 2, "": {"_count": 2}}, "still": {"_count": 1, "alive": {"_count": 1}}}, "valked": {"_count": 1, "past": {"_count": 1, "that": {"_count": 1}}}, "Vy": {"_count": 1, "is": {"_count": 1, "she": {"_count": 1}}}, "vand": {"_count": 3, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "with": {"_count": 1, "fans": {"_count": 1}}}, "improvised": {"_count": 1, "wildly": {"_count": 1, "and": {"_count": 1}}}, "Britons": {"_count": 1, "set": {"_count": 1, "much": {"_count": 1}}}, "dancers": {"_count": 2, "like": {"_count": 1, "Krum": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "waiter": {"_count": 2, "and": {"_count": 1, "make": {"_count": 1}}, "for": {"_count": 1, "a": {"_count": 1}}}, "revelry": {"_count": 1, "became": {"_count": 1, "more": {"_count": 1}}}, "uncontained": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Hero": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "Racking": {"_count": 1, "his": {"_count": 1, "brains": {"_count": 1}}}, "pestered": {"_count": 1, "me": {"_count": 1, "to": {"_count": 1}}}, "plumes": {"_count": 1, "dancing": {"_count": 1, "on": {"_count": 1}}}, "plopped": {"_count": 1, "herself": {"_count": 1, "down": {"_count": 1}}}, "solemn": {"_count": 3, "at": {"_count": 2, "this": {"_count": 1}, "once": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Illinformed": {"_count": 1, "sniping": {"_count": 1, "said": {"_count": 1}}}, "worshipped": {"_count": 1, "Dumbledore": {"_count": 1, "I": {"_count": 1}}}, "saint": {"_count": 1, "even": {"_count": 1, "if": {"_count": 1}}}, "Muriell": {"_count": 1, "exclaimed": {"_count": 1, "Doge": {"_count": 1}}}, "Untrue": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "coffin": {"_count": 2, "out": {"_count": 1, "of": {"_count": 1}}, "side": {"_count": 1, "brawl": {"_count": 1}}}, "domineering": {"_count": 1, "the": {"_count": 1, "sort": {"_count": 1}}}, "shipped": {"_count": 1, "off": {"_count": 1, "to": {"_count": 1}}}, "integrate": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "Lancelot": {"_count": 2, "was": {"_count": 1, "a": {"_count": 1}}, "thought": {"_count": 1, "": {"_count": 1}}}, "strictest": {"_count": 1, "confidence": {"_count": 1, "that": {"_count": 1}}}, "Arianas": {"_count": 8, "funeral": {"_count": 1, "were": {"_count": 1}}, "arm": {"_count": 1, "waved": {"_count": 1}}, "existence": {"_count": 1, "could": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "death": {"_count": 1, "": {"_count": 1}}, "picture": {"_count": 1, "": {"_count": 1}}, "portrait": {"_count": 2, "": {"_count": 2}}}, "heartbroken": {"_count": 1, "His": {"_count": 1, "heart": {"_count": 1}}}, "coffinside": {"_count": 1, "brawl": {"_count": 1, "": {"_count": 1}}}, "brawl": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "known": {"_count": 1, "only": {"_count": 1}}}, "swigged": {"_count": 2, "yet": {"_count": 1, "more": {"_count": 1}}, "their": {"_count": 1, "bottles": {"_count": 1}}}, "recitation": {"_count": 2, "of": {"_count": 2, "these": {"_count": 1}, "Dumbledores": {"_count": 1}}}, "scandals": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "elate": {"_count": 1, "her": {"_count": 1, "as": {"_count": 1}}}, "bleat": {"_count": 2, "feebly": {"_count": 1, "that": {"_count": 1}}, "that": {"_count": 1, "he": {"_count": 1}}}, "dishonorable": {"_count": 1, "for": {"_count": 1, "Skeeter": {"_count": 1}}}, "Bathildas": {"_count": 10, "completely": {"_count": 1, "cuckoo": {"_count": 1}}, "embossed": {"_count": 1, "name": {"_count": 1}}, "house": {"_count": 4, "": {"_count": 1}, "to": {"_count": 1}, "immersed": {"_count": 1}, "on": {"_count": 1}}, "memories": {"_count": 1, "": {"_count": 1}}, "backside": {"_count": 1, "to": {"_count": 1}}, "neck": {"_count": 1, "Hermione": {"_count": 1}}, "sitting": {"_count": 1, "room": {"_count": 1}}}, "cuckoo": {"_count": 1, "Im": {"_count": 1, "sure": {"_count": 1}}}, "Graceful": {"_count": 2, "and": {"_count": 1, "gleaming": {"_count": 1}}, "arched": {"_count": 1, "windows": {"_count": 1}}}, "lynx": {"_count": 2, "landed": {"_count": 1, "lightly": {"_count": 1}}, "we": {"_count": 1, "saw": {"_count": 1}}}, "middance": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Patronuss": {"_count": 1, "mouth": {"_count": 1, "opened": {"_count": 1}}}, "HIDE": {"_count": 1, "Everything": {"_count": 1, "seemed": {"_count": 1}}}, "Guests": {"_count": 1, "were": {"_count": 1, "sprinting": {"_count": 1}}}, "Tottenham": {"_count": 6, "Court": {"_count": 6, "Road": {"_count": 6}}}, "thronged": {"_count": 1, "with": {"_count": 1, "latenight": {"_count": 1}}}, "latenight": {"_count": 1, "revelers": {"_count": 1, "and": {"_count": 1}}}, "revelers": {"_count": 1, "and": {"_count": 1, "lined": {"_count": 1}}}, "doubledecker": {"_count": 1, "bus": {"_count": 1, "rumbled": {"_count": 1}}}, "merry": {"_count": 3, "pubgoers": {"_count": 1, "ogled": {"_count": 1}}, "wild": {"_count": 1, "there": {"_count": 1}}, "blondhaired": {"_count": 1, "boy": {"_count": 1}}}, "pubgoers": {"_count": 1, "ogled": {"_count": 1, "them": {"_count": 1}}}, "ogled": {"_count": 1, "them": {"_count": 1, "as": {"_count": 1}}}, "Extension": {"_count": 1, "Charm": {"_count": 1, "said": {"_count": 1}}}, "fragilelooking": {"_count": 1, "bag": {"_count": 1, "a": {"_count": 1}}}, "cargo": {"_count": 1, "hold": {"_count": 1, "as": {"_count": 1}}}, "getaway": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bundledup": {"_count": 1, "robes": {"_count": 1, "": {"_count": 1}}}, "drunkest": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Ditch": {"_count": 1, "ginger": {"_count": 1, "and": {"_count": 1}}}, "allnight": {"_count": 1, "cafe": {"_count": 1, "": {"_count": 1}}}, "cafe": {"_count": 7, "": {"_count": 2, ".": {"_count": 2}}, "and": {"_count": 1, "squeezed": {"_count": 1}}, "into": {"_count": 1, "darkness": {"_count": 1}}, "was": {"_count": 1, "restored": {"_count": 1}}, "door": {"_count": 1, "Ron": {"_count": 1}}, "on": {"_count": 1, "Tottenham": {"_count": 1}}}, "Formica": {"_count": 1, "topped": {"_count": 1, "tables": {"_count": 1}}}, "relapsed": {"_count": 1, "into": {"_count": 1, "a": {"_count": 1}}}, "gumchewing": {"_count": 1, "waitress": {"_count": 1, "shuffled": {"_count": 1}}}, "waitress": {"_count": 7, "shuffled": {"_count": 1, "over": {"_count": 1}}, "had": {"_count": 1, "heard": {"_count": 1}}, "screamed": {"_count": 1, "and": {"_count": 1}}, "who": {"_count": 1, "collapsed": {"_count": 1}}, "while": {"_count": 1, "Ron": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "or": {"_count": 1, "either": {"_count": 1}}}, "cappuccinos": {"_count": 1, "As": {"_count": 1, "Harry": {"_count": 1}}}, "workmen": {"_count": 3, "entered": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 1, "was": {"_count": 1}}, "made": {"_count": 1, "identical": {"_count": 1}}}, "Building": {"_count": 1, "Society": {"_count": 1, "savings": {"_count": 1}}}, "wandtip": {"_count": 3, "and": {"_count": 1, "bound": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "ignited": {"_count": 1, "": {"_count": 1}}}, "Expulsol": {"_count": 1, "bellowed": {"_count": 1, "the": {"_count": 1}}}, "TotalusV": {"_count": 1, "screamed": {"_count": 1, "Hermione": {"_count": 1}}}, "ashtray": {"_count": 1, "out": {"_count": 1, "of": {"_count": 1}}}, "Ddiffindo": {"_count": 1, "she": {"_count": 1, "said": {"_count": 1}}}, "Thorfinn": {"_count": 1, "Rowle": {"_count": 1, "": {"_count": 1}}}, "Rowle": {"_count": 6, "": {"_count": 1, ".": {"_count": 1}}, "or": {"_count": 1, "shall": {"_count": 1}}, "another": {"_count": 1, "taste": {"_count": 1}}, "and": {"_count": 2, "Dolohov": {"_count": 1}, "with": {"_count": 1}}, "was": {"_count": 1, "dabbing": {"_count": 1}}}, "Lock": {"_count": 1, "the": {"_count": 1, "door": {"_count": 1}}}, "profoundly": {"_count": 1, "relieved": {"_count": 1, "": {"_count": 1}}}, "bombed": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "tainted": {"_count": 2, "Was": {"_count": 1, "that": {"_count": 1}}, "with": {"_count": 1, "resentment": {"_count": 1}}}, "activated": {"_count": 1, "if": {"_count": 1, "he": {"_count": 1}}}, "TTongueTying": {"_count": 1, "Curse": {"_count": 1, "MadEye": {"_count": 1}}}, "Gingerly": {"_count": 1, "Harry": {"_count": 1, "took": {"_count": 1}}}, "dustcolored": {"_count": 1, "and": {"_count": 1, "terrible": {"_count": 1}}}, "dreadfully": {"_count": 2, "altered": {"_count": 1, "it": {"_count": 1}}, "familiar": {"_count": 1, "drawling": {"_count": 1}}}, "rright": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "gaslight": {"_count": 1, "as": {"_count": 1, "Mrs": {"_count": 1}}}, "horrorfigure": {"_count": 1, "aside": {"_count": 1, "as": {"_count": 1}}}, "Nerves": {"_count": 1, "still": {"_count": 1, "tingling": {"_count": 1}}}, "Homenum": {"_count": 2, "revelio": {"_count": 2, "": {"_count": 1}, "said": {"_count": 1}}}, "revelio": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 1, "the": {"_count": 1}}}, "Dusty": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "corpsefigure": {"_count": 1, "had": {"_count": 1, "risen": {"_count": 1}}}, "ignite": {"_count": 1, "the": {"_count": 1, "old": {"_count": 1}}}, "badgered": {"_count": 2, "confused": {"_count": 1, "and": {"_count": 1}}, "me": {"_count": 1, "This": {"_count": 1}}}, "solidified": {"_count": 4, "into": {"_count": 1, "the": {"_count": 1}}, "in": {"_count": 2, "seconds": {"_count": 1}, "his": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}}, "peak": {"_count": 1, "burning": {"_count": 1, "as": {"_count": 1}}}, "Faintly": {"_count": 1, "he": {"_count": 1, "heard": {"_count": 1}}}, "succumb": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Bathroom": {"_count": 1, "he": {"_count": 1, "muttered": {"_count": 1}}}, "Bolting": {"_count": 1, "the": {"_count": 1, "door": {"_count": 1}}}, "slighter": {"_count": 2, "figure": {"_count": 1, "standing": {"_count": 1}}, "and": {"_count": 1, "rather": {"_count": 1}}}, "merciless": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "bathtub": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "KREACHERS": {"_count": 1, "TALE": {"_count": 1, "Harry": {"_count": 1}}}, "gallantry": {"_count": 1, "and": {"_count": 1, "insisted": {"_count": 1}}}, "daunting": {"_count": 2, "complex": {"_count": 1, "mission": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "nested": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "infecting": {"_count": 1, "his": {"_count": 1, "memories": {"_count": 1}}}, "tool": {"_count": 2, "to": {"_count": 1, "be": {"_count": 1}}, "that": {"_count": 1, "Voldemort": {"_count": 1}}}, "Desperate": {"_count": 2, "for": {"_count": 1, "something": {"_count": 1}}, "to": {"_count": 1, "see": {"_count": 1}}}, "pilfered": {"_count": 1, "plenty": {"_count": 1, "from": {"_count": 1}}}, "nameplate": {"_count": 1, "reading": {"_count": 1, "SIRIUS": {"_count": 1}}}, "frostlike": {"_count": 1, "drips": {"_count": 1, "": {"_count": 1}}}, "drips": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "silverygray": {"_count": 1, "silk": {"_count": 1, "was": {"_count": 1}}}, "bikiniclad": {"_count": 1, "Muggle": {"_count": 1, "girls": {"_count": 1}}}, "inclusion": {"_count": 1, "in": {"_count": 1, "this": {"_count": 1}}}, "coolest": {"_count": 1, "of": {"_count": 1, "gangs": {"_count": 1}}}, "muchadmired": {"_count": 1, "rebels": {"_count": 1, "that": {"_count": 1}}}, "redecorating": {"_count": 1, "his": {"_count": 1, "room": {"_count": 1}}}, "shaft": {"_count": 1, "of": {"_count": 1, "light": {"_count": 1}}}, "sundry": {"_count": 1, "pages": {"_count": 1, "littered": {"_count": 1}}}, "maintenance": {"_count": 1, "manual": {"_count": 1, "": {"_count": 1}}}, "manual": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "work": {"_count": 1, "glorying": {"_count": 1}}}, "dotes": {"_count": 1, "on": {"_count": 1, "Harry": {"_count": 1}}}, "excursions": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wormy": {"_count": 2, "was": {"_count": 2, "here": {"_count": 2}}}, "nerveless": {"_count": 2, "fingers": {"_count": 2, "while": {"_count": 1}, "fumbled": {"_count": 1}}}, "Lurching": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "gs": {"_count": 1, "the": {"_count": 1, "same": {"_count": 1}}}, "Impatiently": {"_count": 1, "brushing": {"_count": 1, "away": {"_count": 1}}}, "halfremembered": {"_count": 1, "voice": {"_count": 1, "": {"_count": 1}}}, "perished": {"_count": 1, "like": {"_count": 1, "his": {"_count": 1}}}, "DumblecLores": {"_count": 1, "still": {"_count": 1, "got": {"_count": 1}}}, "carrier": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "goatcharming": {"_count": 1, "like": {"_count": 1, "Aberforth": {"_count": 1}}}, "searcher": {"_count": 1, "he": {"_count": 1, "pulled": {"_count": 1}}}, "Information": {"_count": 2, "on": {"_count": 1, "the": {"_count": 1}}, "repeated": {"_count": 1, "Snape": {"_count": 1}}}, "lettered": {"_count": 2, "by": {"_count": 1, "hand": {"_count": 1}}, "words": {"_count": 1, "scribbles": {"_count": 1}}}, "Arcturus": {"_count": 2, "Black": {"_count": 1, "Excitement": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Reguluss": {"_count": 8, "sign": {"_count": 1, "": {"_count": 1}}, "door": {"_count": 1, "to": {"_count": 1}}, "bedroom": {"_count": 2, "was": {"_count": 1}, "door": {"_count": 1}}, "locket": {"_count": 4, "Kreacher": {"_count": 1}, "is": {"_count": 1}, "bouncing": {"_count": 1}, "Todays": {"_count": 1}}}, "disenchanted": {"_count": 1, "then": {"_count": 1, "he": {"_count": 1}}}, "striven": {"_count": 1, "to": {"_count": 1, "emphasize": {"_count": 1}}}, "painstakingly": {"_count": 1, "painted": {"_count": 1, "over": {"_count": 1}}}, "TOU": {"_count": 1, "JOURS": {"_count": 1, "PUR": {"_count": 1}}}, "JOURS": {"_count": 1, "PUR": {"_count": 1, "": {"_count": 1}}}, "collage": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "clippings": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "manually": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "rallying": {"_count": 3, "tone": {"_count": 1, "as": {"_count": 1}}, "point": {"_count": 1, "for": {"_count": 1}}, "resistance": {"_count": 1, "instead": {"_count": 1}}}, "Obliviated": {"_count": 1, "her": {"_count": 1, "eyes": {"_count": 1}}}, "stash": {"_count": 1, "of": {"_count": 1, "stuff": {"_count": 1}}}, "salvaged": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Refusing": {"_count": 1, "to": {"_count": 1, "believe": {"_count": 1}}}, "Kreacherl": {"_count": 1, "There": {"_count": 1, "was": {"_count": 1}}}, "humansized": {"_count": 1, "his": {"_count": 1, "pale": {"_count": 1}}}, "outfit": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018blood": {"_count": 1, "traitor": {"_count": 1, "or": {"_count": 1}}}, "unlovable": {"_count": 1, "object": {"_count": 1, "even": {"_count": 1}}}, "framing": {"_count": 1, "the": {"_count": 1, "insults": {"_count": 1}}}, "Bellas": {"_count": 1, "and": {"_count": 1, "Miss": {"_count": 1}}}, "Cissys": {"_count": 1, "pictures": {"_count": 1, "my": {"_count": 1}}}, "gushing": {"_count": 2, "from": {"_count": 2, "his": {"_count": 1}, "the": {"_count": 1}}}, "rran": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Master": {"_count": 1, "Regulus": {"_count": 1, "s": {"_count": 1}}}, "riddance": {"_count": 1, "for": {"_count": 1, "he": {"_count": 1}}}, "ccome": {"_count": 1, "home": {"_count": 1, "": {"_count": 1}}}, "disposable": {"_count": 1, "creature": {"_count": 1, "a": {"_count": 1}}}, "bbasin": {"_count": 1, "full": {"_count": 1, "of": {"_count": 1}}}, "DDark": {"_count": 1, "Lord": {"_count": 1, "made": {"_count": 1}}}, "quaked": {"_count": 2, "from": {"_count": 1, "head": {"_count": 1}}, "again": {"_count": 1, "and": {"_count": 1}}}, "pitilessly": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "islands": {"_count": 1, "edge": {"_count": 1, "and": {"_count": 1}}}, "digested": {"_count": 1, "this": {"_count": 1, "": {"_count": 1}}}, "MMaster": {"_count": 1, "Regulus": {"_count": 1, "took": {"_count": 1}}}, "switch": {"_count": 2, "the": {"_count": 1, "lockets": {"_count": 1}}, "them": {"_count": 1, "and": {"_count": 1}}}, "rasps": {"_count": 1, "now": {"_count": 1, "Harry": {"_count": 1}}}, "mucus": {"_count": 1, "glistening": {"_count": 1, "around": {"_count": 1}}}, "casing": {"_count": 1, "Kreacher": {"_count": 1, "was": {"_count": 1}}}, "ffforbidden": {"_count": 1, "him": {"_count": 1, "to": {"_count": 1}}}, "fffamily": {"_count": 1, "what": {"_count": 1, "happened": {"_count": 1}}}, "ccave": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "coherent": {"_count": 1, "words": {"_count": 1, "": {"_count": 1}}}, "parroted": {"_count": 1, "their": {"_count": 1, "beliefs": {"_count": 1}}}, "\u2018Miss": {"_count": 2, "Cissy": {"_count": 1, "and": {"_count": 1}}, "Bella": {"_count": 1, "were": {"_count": 1}}}, "token": {"_count": 2, "of": {"_count": 1, "gratitude": {"_count": 1}}, "into": {"_count": 1, "a": {"_count": 1}}}, "Overkill": {"_count": 1, "mate": {"_count": 1, "said": {"_count": 1}}}, "totter": {"_count": 2, "a": {"_count": 1, "few": {"_count": 1}}, "then": {"_count": 1, "the": {"_count": 1}}}, "BRIBE": {"_count": 1, "If": {"_count": 1, "Kreacher": {"_count": 1}}}, "Transfigurations": {"_count": 1, "did": {"_count": 1, "nothing": {"_count": 1}}}, "Restless": {"_count": 1, "and": {"_count": 1, "irritable": {"_count": 1}}}, "whiling": {"_count": 1, "away": {"_count": 1, "the": {"_count": 1}}}, "decapitated": {"_count": 1, "elf": {"_count": 1, "heads": {"_count": 1}}}, "dustfigure": {"_count": 1, "exploded": {"_count": 1, "again": {"_count": 1}}}, "dishonoring": {"_count": 1, "my": {"_count": 1, "house": {"_count": 1}}}, "John": {"_count": 2, "Lupin": {"_count": 2, "werewolf": {"_count": 1}, "": {"_count": 1}}}, "creators": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Wrapped": {"_count": 1, "in": {"_count": 1, "a": {"_count": 1}}}, "staking": {"_count": 1, "out": {"_count": 1, "everywhere": {"_count": 1}}}, "coziness": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "intents": {"_count": 1, "and": {"_count": 1, "purposes": {"_count": 1}}}, "Orderconnected": {"_count": 1, "house": {"_count": 1, "in": {"_count": 1}}}, "forestalling": {"_count": 1, "the": {"_count": 1, "question": {"_count": 1}}}, "QUESTIONING": {"_count": 1, "ABOUT": {"_count": 1, "THE": {"_count": 1}}}, "coup": {"_count": 1, "has": {"_count": 1, "been": {"_count": 1}}}, "Effectively": {"_count": 1, "he": {"_count": 1, "is": {"_count": 1}}}, "darent": {"_count": 2, "confide": {"_count": 1, "in": {"_count": 1}}, "try": {"_count": 1, "in": {"_count": 1}}}, "targeted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Declaring": {"_count": 1, "himself": {"_count": 1, "might": {"_count": 1}}}, "Remaining": {"_count": 1, "masked": {"_count": 1, "has": {"_count": 1}}}, "masterstroke": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sown": {"_count": 1, "doubt": {"_count": 1, "and": {"_count": 1}}}, "\u2018Muggleborn": {"_count": 1, "Register": {"_count": 1, "she": {"_count": 1}}}, "Register": {"_count": 1, "she": {"_count": 1, "read": {"_count": 1}}}, "\u2018Recent": {"_count": 1, "research": {"_count": 1, "undertaken": {"_count": 1}}}, "undertaken": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "reproduce": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "usurpers": {"_count": 1, "of": {"_count": 1, "magical": {"_count": 1}}}, "Registration": {"_count": 1, "Commission": {"_count": 1, "": {"_count": 1}}}, "Commission": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018stolen": {"_count": 1, "magic": {"_count": 1, "": {"_count": 1}}}, "Attendance": {"_count": 1, "is": {"_count": 1, "now": {"_count": 1}}}, "compulsory": {"_count": 2, "for": {"_count": 2, "every": {"_count": 1}, "everyone": {"_count": 1}}}, "obligatory": {"_count": 1, "before": {"_count": 1, "": {"_count": 1}}}, "weeding": {"_count": 1, "out": {"_count": 1, "Muggleborns": {"_count": 1}}}, "elevenyearolds": {"_count": 1, "would": {"_count": 1, "be": {"_count": 1}}}, "bidden": {"_count": 2, "to": {"_count": 1, "memorize": {"_count": 1}}, "as": {"_count": 1, "the": {"_count": 1}}}, "unborn": {"_count": 1, "child": {"_count": 1, "": {"_count": 1}}}, "halfwerewolf": {"_count": 1, "whose": {"_count": 1, "fathers": {"_count": 1}}}, "daredevil": {"_count": 1, "Harry": {"_count": 1, "said": {"_count": 1}}}, "communications": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "distinctivelooking": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Native": {"_count": 1, "Americans": {"_count": 1, "hed": {"_count": 1}}}, "Americans": {"_count": 1, "hed": {"_count": 1, "seen": {"_count": 1}}}, "highnecked": {"_count": 1, "silk": {"_count": 1, "gown": {"_count": 1}}}, "collared": {"_count": 1, "jackets": {"_count": 1, "and": {"_count": 1}}}, "hairstyles": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Baby": {"_count": 1, "Arianas": {"_count": 1, "arm": {"_count": 1}}}, "EXCLUSIVE": {"_count": 1, "EXTRACT": {"_count": 1, "FROM": {"_count": 1}}}, "EXTRACT": {"_count": 1, "FROM": {"_count": 1, "THE": {"_count": 1}}}, "UPCOMING": {"_count": 1, "BIOGRAPHY": {"_count": 1, "OF": {"_count": 1}}}, "BIOGRAPHY": {"_count": 1, "OF": {"_count": 1, "ALBUS": {"_count": 1}}}, "MouldontheWold": {"_count": 2, "after": {"_count": 1, "her": {"_count": 1}}, "Godrics": {"_count": 1, "Hollow": {"_count": 1}}}, "Percivals": {"_count": 1, "wellpublicized": {"_count": 1, "arrest": {"_count": 1}}}, "uproot": {"_count": 2, "the": {"_count": 1, "family": {"_count": 1}}, "himself": {"_count": 1, "from": {"_count": 1}}}, "relocate": {"_count": 1, "to": {"_count": 1, "Godrics": {"_count": 1}}}, "rebuffing": {"_count": 1, "the": {"_count": 1, "friendly": {"_count": 1}}}, "advances": {"_count": 2, "of": {"_count": 1, "her": {"_count": 1}}, "to": {"_count": 1, "find": {"_count": 1}}}, "Slammed": {"_count": 1, "the": {"_count": 1, "door": {"_count": 1}}}, "Plangentines": {"_count": 1, "by": {"_count": 1, "moonlight": {"_count": 1}}}, "Walked": {"_count": 1, "her": {"_count": 1, "round": {"_count": 1}}}, "Prizes": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "Pretense": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wildeyed": {"_count": 1, "Mundungus": {"_count": 1, "dived": {"_count": 1}}}, "rugbytackled": {"_count": 1, "him": {"_count": 1, "and": {"_count": 1}}}, "Whave": {"_count": 1, "I": {"_count": 1, "done": {"_count": 1}}}, "bleedin": {"_count": 4, "ouseelf": {"_count": 1, "on": {"_count": 1}}, "YouKnowWho": {"_count": 1, "come": {"_count": 1}}, "eroes": {"_count": 1, "then": {"_count": 1}}, "gave": {"_count": 1, "it": {"_count": 1}}}, "ouseelf": {"_count": 1, "on": {"_count": 1, "me": {"_count": 1}}}, "whave": {"_count": 1, "I": {"_count": 1, "done": {"_count": 1}}}, "lemme": {"_count": 2, "go": {"_count": 2, "lemme": {"_count": 1}, "or": {"_count": 1}}}, "apologizes": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "hideyholes": {"_count": 1, "and": {"_count": 1, "accomplices": {"_count": 1}}}, "accomplices": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "eroes": {"_count": 1, "then": {"_count": 1, "arent": {"_count": 1}}}, "ell": {"_count": 2, "am": {"_count": 1, "I": {"_count": 1}}, "you": {"_count": 1, "are": {"_count": 1}}}, "unted": {"_count": 1, "down": {"_count": 1, "by": {"_count": 1}}}, "ouseelves": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "pattering": {"_count": 1, "feet": {"_count": 1, "a": {"_count": 1}}}, "heavybottomed": {"_count": 1, "pan": {"_count": 1, "again": {"_count": 1}}}, "trading": {"_count": 1, "in": {"_count": 1, "magical": {"_count": 1}}}, "Bleedin": {"_count": 1, "snoop": {"_count": 1, "": {"_count": 1}}}, "snoop": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fink": {"_count": 1, "meself": {"_count": 1, "lucky": {"_count": 1}}}, "engulfing": {"_count": 1, "a": {"_count": 1, "spluttering": {"_count": 1}}}, "MIGHT": {"_count": 2, "As": {"_count": 1, "August": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "numbering": {"_count": 1, "that": {"_count": 1, "had": {"_count": 1}}}, "anomaly": {"_count": 1, "most": {"_count": 1, "intriguing": {"_count": 1}}}, "lurkers": {"_count": 1, "were": {"_count": 1, "never": {"_count": 1}}}, "Londoners": {"_count": 1, "who": {"_count": 1, "passed": {"_count": 1}}}, "dressers": {"_count": 1, "and": {"_count": 1, "took": {"_count": 1}}}, "gleaning": {"_count": 1, "little": {"_count": 1, "satisfaction": {"_count": 1}}}, "podgy": {"_count": 1, "pallid": {"_count": 1, "man": {"_count": 1}}}, "inactivity": {"_count": 1, "looking": {"_count": 1, "frustrated": {"_count": 1}}}, "Shutting": {"_count": 1, "the": {"_count": 1, "front": {"_count": 1}}}, "jinxfigure": {"_count": 1, "exploded": {"_count": 1, "": {"_count": 1}}}, "cotton": {"_count": 2, "wool": {"_count": 1, "Reguluss": {"_count": 1}}, "curtains": {"_count": 1, "against": {"_count": 1}}}, "Shoes": {"_count": 1, "off": {"_count": 1, "if": {"_count": 1}}}, "handdrawn": {"_count": 2, "maps": {"_count": 1, "that": {"_count": 1}}, "map": {"_count": 1, "of": {"_count": 1}}}, "SEVERUS": {"_count": 2, "SNAPE": {"_count": 2, "CONFIRMED": {"_count": 1}, "The": {"_count": 1}}}, "CONFIRMED": {"_count": 1, "AS": {"_count": 1, "HOGWARTS": {"_count": 1}}}, "\u2018Severus": {"_count": 1, "Snape": {"_count": 1, "longstanding": {"_count": 1}}}, "Carrow": {"_count": 8, "will": {"_count": 1, "take": {"_count": 1}}, "for": {"_count": 1, "yelling": {"_count": 1}}, "supporters": {"_count": 1, "to": {"_count": 1}}, "was": {"_count": 1, "standing": {"_count": 1}}, "brother": {"_count": 1, "Amycus": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}}, "fills": {"_count": 1, "the": {"_count": 1, "position": {"_count": 1}}}, "values": {"_count": 1, "Like": {"_count": 1, "committing": {"_count": 1}}}, "\u2018Merlins": {"_count": 1, "pants": {"_count": 1, "": {"_count": 1}}}, "reentering": {"_count": 1, "the": {"_count": 1, "kitchen": {"_count": 1}}}, "Y": {"_count": 1, "Fronts": {"_count": 1, "was": {"_count": 1}}}, "Fronts": {"_count": 1, "was": {"_count": 1, "that": {"_count": 1}}}, "Opening": {"_count": 1, "it": {"_count": 1, "she": {"_count": 1}}}, "patently": {"_count": 1, "too": {"_count": 1, "large": {"_count": 1}}}, "capacious": {"_count": 1, "depths": {"_count": 1, "": {"_count": 1}}}, "sonorous": {"_count": 1, "clanking": {"_count": 1, "crash": {"_count": 1}}}, "towertop": {"_count": 1, "room": {"_count": 1, "where": {"_count": 1}}}, "soupspoon": {"_count": 1, "suspended": {"_count": 1, "in": {"_count": 1}}}, "reconnaissance": {"_count": 1, "trips": {"_count": 1, "if": {"_count": 1}}}, "\u2018Ill": {"_count": 1, "be": {"_count": 1, "up": {"_count": 1}}}, "tokens": {"_count": 3, "or": {"_count": 1, "whatever": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "Hermione": {"_count": 1, "told": {"_count": 1}}}, "relies": {"_count": 1, "on": {"_count": 1, "chance": {"_count": 1}}}, "eavesdropped": {"_count": 2, "on": {"_count": 1, "their": {"_count": 1}}, "now": {"_count": 1, "found": {"_count": 1}}}, "relied": {"_count": 2, "upon": {"_count": 1, "to": {"_count": 1}}, "on": {"_count": 1, "others": {"_count": 1}}}, "sketchy": {"_count": 1, "maps": {"_count": 1, "and": {"_count": 1}}}, "dated": {"_count": 1, "ten": {"_count": 1, "days": {"_count": 1}}}, "partial": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Aware": {"_count": 1, "that": {"_count": 1, "Hermione": {"_count": 1}}}, "Grunting": {"_count": 1, "with": {"_count": 1, "pain": {"_count": 1}}}, "timbered": {"_count": 1, "gables": {"_count": 1, "they": {"_count": 1}}}, "gables": {"_count": 1, "they": {"_count": 1, "looked": {"_count": 1}}}, "wohnt": {"_count": 1, "hier": {"_count": 1, "nicht": {"_count": 1}}}, "hier": {"_count": 1, "nicht": {"_count": 1, "mehr": {"_count": 1}}}, "nicht": {"_count": 1, "mehr": {"_count": 1, "she": {"_count": 1}}}, "mehr": {"_count": 1, "she": {"_count": 1, "cried": {"_count": 1}}}, "Das": {"_count": 1, "weifi": {"_count": 1, "ich": {"_count": 1}}}, "weifi": {"_count": 1, "ich": {"_count": 1, "nichti": {"_count": 1}}}, "ich": {"_count": 1, "nichti": {"_count": 1, "He": {"_count": 1}}}, "nichti": {"_count": 1, "He": {"_count": 1, "move": {"_count": 1}}}, "counterarguments": {"_count": 2, "against": {"_count": 1, "both": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "recite": {"_count": 1, "it": {"_count": 1, "word": {"_count": 1}}}, "acknowledging": {"_count": 1, "their": {"_count": 1, "presence": {"_count": 1}}}, "fantasize": {"_count": 1, "about": {"_count": 1, "cutting": {"_count": 1}}}, "scouting": {"_count": 1, "trips": {"_count": 1, "into": {"_count": 1}}}, "theater": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "door": {"_count": 1, "as": {"_count": 1}}}, "Nicely": {"_count": 2, "done": {"_count": 1, "Hermione": {"_count": 1}}, "phrased": {"_count": 1, "replied": {"_count": 1}}}, "backstage": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "identified": {"_count": 2, "their": {"_count": 1, "victim": {"_count": 1}}, "most": {"_count": 1, "of": {"_count": 1}}}, "heliotrope": {"_count": 1, "color": {"_count": 1, "and": {"_count": 1}}}, "Mafaldas": {"_count": 2, "spectacles": {"_count": 1, "and": {"_count": 1}}, "tokens": {"_count": 1, "Hermione": {"_count": 1}}}, "ferretylooking": {"_count": 1, "wizard": {"_count": 1, "appeared": {"_count": 1}}}, "pastilles": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "pastille": {"_count": 1, "touched": {"_count": 1, "his": {"_count": 1}}}, "skirts": {"_count": 2, "of": {"_count": 2, "her": {"_count": 1}, "greater": {"_count": 1}}}, "ferrety": {"_count": 2, "as": {"_count": 1, "the": {"_count": 1}}, "wizard": {"_count": 1, "from": {"_count": 1}}}, "Reg": {"_count": 11, "Cattermole": {"_count": 5, "according": {"_count": 1}, "no": {"_count": 1}, "to": {"_count": 1}, "screamed": {"_count": 1}, "was": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 2}}, "said": {"_count": 2, "Mr": {"_count": 1}, "you": {"_count": 1}}, "I": {"_count": 2, "really": {"_count": 1}, "dont": {"_count": 1}}}, "Cattermole": {"_count": 43, "according": {"_count": 1, "to": {"_count": 1}}, "": {"_count": 12, "!": {"_count": 2}, ".": {"_count": 7}, "?": {"_count": 3}}, "do": {"_count": 1, "you": {"_count": 1}}, "and": {"_count": 5, "if": {"_count": 1}, "Harry": {"_count": 1}, "this": {"_count": 1}, "she": {"_count": 1}, "himself": {"_count": 1}}, "Yaxley": {"_count": 1, "swept": {"_count": 1}}, "s": {"_count": 2, "wife": {"_count": 1}, "lack": {"_count": 1}}, "called": {"_count": 1, "Umbridge": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "stumbled": {"_count": 1, "to": {"_count": 1}}, "gave": {"_count": 1, "a": {"_count": 1}}, "of": {"_count": 1, "the": {"_count": 1}}, "burst": {"_count": 1, "into": {"_count": 1}}, "sobbed": {"_count": 1, "harder": {"_count": 1}}, "Umbridge": {"_count": 1, "was": {"_count": 1}}, "nodded": {"_count": 1, "mopping": {"_count": 1}}, "let": {"_count": 1, "out": {"_count": 1}}, "looked": {"_count": 2, "just": {"_count": 1}, "over": {"_count": 1}}, "to": {"_count": 2, "the": {"_count": 2}}, "no": {"_count": 1, "longer": {"_count": 1}}, "had": {"_count": 2, "now": {"_count": 1}, "his": {"_count": 1}}, "pulled": {"_count": 1, "her": {"_count": 1}}, "screamed": {"_count": 1, "My": {"_count": 1}}, "by": {"_count": 1, "SideAlong": {"_count": 1}}, "was": {"_count": 1, "all": {"_count": 1}}}, "sicksplattered": {"_count": 1, "alleyway": {"_count": 1, "beside": {"_count": 1}}}, "wellmuscled": {"_count": 1, "arms": {"_count": 1, "powerfully": {"_count": 1}}}, "Stowing": {"_count": 1, "the": {"_count": 1, "Invisibility": {"_count": 1}}}, "GENTLEMEN": {"_count": 1, "the": {"_count": 1, "other": {"_count": 1}}}, "LADIES": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "bum": {"_count": 1, "this": {"_count": 1, "eh": {"_count": 1}}}, "Forcing": {"_count": 1, "us": {"_count": 1, "all": {"_count": 1}}}, "adjoining": {"_count": 1, "cubicles": {"_count": 1, "": {"_count": 1}}}, "booted": {"_count": 1, "feet": {"_count": 1, "climbing": {"_count": 1}}}, "Previously": {"_count": 1, "a": {"_count": 1, "golden": {"_count": 1}}}, "dominated": {"_count": 2, "the": {"_count": 2, "scene": {"_count": 1}, "distant": {"_count": 1}}}, "sculpture": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "ornately": {"_count": 1, "carved": {"_count": 1, "thrones": {"_count": 1}}}, "thrones": {"_count": 2, "looking": {"_count": 1, "down": {"_count": 1}}, "were": {"_count": 1, "actually": {"_count": 1}}}, "Runcorn": {"_count": 13, "": {"_count": 6, "!": {"_count": 1}, "?": {"_count": 2}, ".": {"_count": 3}}, "was": {"_count": 3, "intimidating": {"_count": 1}, "so": {"_count": 1}, "sufficiently": {"_count": 1}}, "said": {"_count": 1, "Mr": {"_count": 1}}, "and": {"_count": 1, "ask": {"_count": 1}}, "let": {"_count": 1, "me": {"_count": 1}}, "echoed": {"_count": 1, "through": {"_count": 1}}}, "bog": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "decoratively": {"_count": 1, "carved": {"_count": 1, "thrones": {"_count": 1}}}, "robed": {"_count": 1, "wizards": {"_count": 1, "": {"_count": 1}}}, "housing": {"_count": 1, "as": {"_count": 1, "many": {"_count": 1}}}, "brutish": {"_count": 2, "face": {"_count": 2, "was": {"_count": 1}, "": {"_count": 1}}}, "Raining": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Yaxleys": {"_count": 5, "eyes": {"_count": 1, "widened": {"_count": 1}}, "office": {"_count": 2, "but": {"_count": 1}, "is": {"_count": 1}}, "head": {"_count": 1, "turn": {"_count": 1}}, "curse": {"_count": 1, "sailed": {"_count": 1}}}, "waits": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Atmospheric": {"_count": 1, "Charm": {"_count": 1, "which": {"_count": 1}}}, "interim": {"_count": 1, "measure": {"_count": 1, "try": {"_count": 1}}}, "Albert": {"_count": 5, "said": {"_count": 1, "a": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 1}, "?": {"_count": 1}}, "arent": {"_count": 1, "you": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}}, "bushily": {"_count": 1, "whiskered": {"_count": 1, "man": {"_count": 1}}}, "whiskered": {"_count": 1, "man": {"_count": 1, "smiling": {"_count": 1}}}, "Staff": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "MUGGLEBORN": {"_count": 2, "REGISTRATION": {"_count": 2, "COMMISSION": {"_count": 2}}}, "REGISTRATION": {"_count": 2, "COMMISSION": {"_count": 2, "Ah": {"_count": 1}, "Harry": {"_count": 1}}}, "COMMISSION": {"_count": 2, "Ah": {"_count": 1, "Mafalda": {"_count": 1}}, "Harry": {"_count": 1, "looked": {"_count": 1}}}, "Yyes": {"_count": 1, "squeaked": {"_count": 1, "Hermione": {"_count": 1}}}, "recordkeeping": {"_count": 1, "we": {"_count": 1, "shall": {"_count": 1}}}, "Runcorns": {"_count": 1, "deep": {"_count": 1, "voice": {"_count": 1}}}, "hairbow": {"_count": 1, "level": {"_count": 1, "with": {"_count": 1}}}, "Needed": {"_count": 1, "a": {"_count": 1, "quick": {"_count": 1}}}, "Undesirable": {"_count": 4, "": {"_count": 1, "?": {"_count": 1}}, "No": {"_count": 1, "": {"_count": 1}}, "Number": {"_count": 2, "One": {"_count": 2}}}, "Panic": {"_count": 2, "pulsed": {"_count": 1, "in": {"_count": 1}}, "flared": {"_count": 1, "within": {"_count": 1}}}, "occupation": {"_count": 1, "upon": {"_count": 1, "it": {"_count": 1}}}, "impenetrability": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "concocting": {"_count": 1, "with": {"_count": 1, "Ron": {"_count": 1}}}, "laughably": {"_count": 1, "childish": {"_count": 1, "": {"_count": 1}}}, "jewelry": {"_count": 1, "in": {"_count": 1, "her": {"_count": 1}}}, "graffiti": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "all": {"_count": 1, "said": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}}, "mesmerizing": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "kites": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rhythm": {"_count": 2, "to": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "carpetmuffled": {"_count": 1, "footstep": {"_count": 1, "and": {"_count": 1}}}, "Dangers": {"_count": 1, "They": {"_count": 1, "Pose": {"_count": 1}}}, "Pose": {"_count": 1, "to": {"_count": 1, "a": {"_count": 1}}}, "PureBlood": {"_count": 1, "Society": {"_count": 1, "Beneath": {"_count": 1}}}, "petals": {"_count": 2, "being": {"_count": 1, "strangled": {"_count": 1}}, "like": {"_count": 1, "some": {"_count": 1}}}, "authors": {"_count": 1, "name": {"_count": 1, "upon": {"_count": 1}}}, "pamphletmakers": {"_count": 3, "Harry": {"_count": 1, "looked": {"_count": 1}}, "Though": {"_count": 1, "they": {"_count": 1}}, "were": {"_count": 1, "still": {"_count": 1}}}, "peephole": {"_count": 1, "on": {"_count": 1, "a": {"_count": 1}}}, "iris": {"_count": 1, "had": {"_count": 1, "been": {"_count": 1}}}, "SENIOR": {"_count": 1, "UNDERSECRETARY": {"_count": 1, "TO": {"_count": 1}}}, "UNDERSECRETARY": {"_count": 1, "TO": {"_count": 1, "THE": {"_count": 1}}}, "shinier": {"_count": 1, "new": {"_count": 1, "plaque": {"_count": 1}}}, "rubberbulbed": {"_count": 1, "horn": {"_count": 1, "for": {"_count": 1}}}, "Detonator": {"_count": 3, "on": {"_count": 1, "the": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "which": {"_count": 1, "continued": {"_count": 1}}}, "Lace": {"_count": 1, "draperies": {"_count": 1, "doilies": {"_count": 1}}}, "draperies": {"_count": 1, "doilies": {"_count": 1, "and": {"_count": 1}}}, "doilies": {"_count": 1, "and": {"_count": 1, "dried": {"_count": 1}}}, "beribboned": {"_count": 1, "kitten": {"_count": 1, "gamboling": {"_count": 1}}}, "cuteness": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "flouncy": {"_count": 1, "flowered": {"_count": 1, "cloth": {"_count": 1}}}, "telescopic": {"_count": 1, "attachment": {"_count": 1, "enabled": {"_count": 1}}}, "attachment": {"_count": 1, "enabled": {"_count": 1, "Umbridge": {"_count": 1}}}, "Locket": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "notebooks": {"_count": 1, "and": {"_count": 1, "Spellotape": {"_count": 1}}}, "folders": {"_count": 1, "each": {"_count": 1, "labeled": {"_count": 1}}}, "ARTHUR": {"_count": 1, "WEASLEY": {"_count": 1, "BLOOD": {"_count": 1}}}, "STATUS": {"_count": 2, "Pureblood": {"_count": 1, "but": {"_count": 1}}, "TRACKED": {"_count": 1, "": {"_count": 1}}}, "Pureblood": {"_count": 1, "but": {"_count": 1, "with": {"_count": 1}}}, "unacceptable": {"_count": 1, "proMuggle": {"_count": 1, "leanings": {"_count": 1}}}, "proMuggle": {"_count": 1, "leanings": {"_count": 1, "": {"_count": 1}}}, "leanings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wife": {"_count": 1, "pureblood": {"_count": 1, "seven": {"_count": 1}}}, "NB": {"_count": 1, "Youngest": {"_count": 1, "son": {"_count": 1}}}, "Youngest": {"_count": 1, "son": {"_count": 1, "currently": {"_count": 1}}}, "TRACKED": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Angrier": {"_count": 1, "than": {"_count": 1, "ever": {"_count": 1}}}, "ofAlbus": {"_count": 2, "Dumbledore": {"_count": 2, "nor": {"_count": 1}, "under": {"_count": 1}}}, "bestselling": {"_count": 1, "author": {"_count": 1, "of": {"_count": 1}}}, "Moron": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "fullpage": {"_count": 1, "photograph": {"_count": 1, "of": {"_count": 1}}}, "immoderately": {"_count": 2, "with": {"_count": 1, "their": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Speeding": {"_count": 1, "back": {"_count": 1, "toward": {"_count": 1}}}, "reviewed": {"_count": 1, "his": {"_count": 1, "options": {"_count": 1}}}, "soakingwet": {"_count": 1, "and": {"_count": 1, "wildeyed": {"_count": 1}}}, "Mmorning": {"_count": 1, "he": {"_count": 1, "stammered": {"_count": 1}}}, "anthill": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "hair": {"_count": 1, "left": {"_count": 1}}}, "Wakanda": {"_count": 1, "but": {"_count": 1, "Im": {"_count": 1}}}, "Bernie": {"_count": 1, "Pillsworth": {"_count": 1, "I": {"_count": 1}}}, "Pillsworth": {"_count": 1, "I": {"_count": 1, "think": {"_count": 1}}}, "Meteolojinx": {"_count": 2, "Recanto": {"_count": 2, "": {"_count": 2}}}, "Recanto": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "nonreappearance": {"_count": 1, "might": {"_count": 1, "trigger": {"_count": 1}}}, "instinctive": {"_count": 1, "attempt": {"_count": 1, "to": {"_count": 1}}}, "resilience": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Alderton": {"_count": 1, "hes": {"_count": 1, "a": {"_count": 1}}}, "designer": {"_count": 1, "look": {"_count": 1, "him": {"_count": 1}}}, "improper": {"_count": 1, "use": {"_count": 1, "of": {"_count": 1}}}, "claustrophobic": {"_count": 1, "sense": {"_count": 1, "of": {"_count": 1}}}, "sentinels": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "balustrade": {"_count": 3, "sat": {"_count": 1, "Umbridge": {"_count": 1}}, "Mrs": {"_count": 1, "Cattermoles": {"_count": 1}}, "gone": {"_count": 1, "and": {"_count": 1}}}, "brightsilver": {"_count": 1, "longhaired": {"_count": 1, "cat": {"_count": 1}}}, "prosecutors": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "accusers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Elizabeth": {"_count": 1, "Cattermole": {"_count": 1, "": {"_count": 1}}}, "Married": {"_count": 1, "to": {"_count": 1, "Reginald": {"_count": 1}}}, "Reginald": {"_count": 1, "Cattermole": {"_count": 1, "of": {"_count": 1}}}, "Maisie": {"_count": 1, "Ellie": {"_count": 1, "and": {"_count": 1}}}, "Ellie": {"_count": 1, "and": {"_count": 1, "Alfred": {"_count": 1}}}, "Alfred": {"_count": 1, "Cattermole": {"_count": 1, "": {"_count": 1}}}, "sympathies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Cattermoles": {"_count": 6, "sobs": {"_count": 1, "masked": {"_count": 1}}, "name": {"_count": 1, "on": {"_count": 1}}, "questionnaire": {"_count": 1, "that": {"_count": 1}}, "papers": {"_count": 1, "slid": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "and": {"_count": 1, "there": {"_count": 1}}}, "Eightandthreequarter": {"_count": 1, "inches": {"_count": 1, "cherry": {"_count": 1}}}, "unicornhair": {"_count": 1, "core": {"_count": 1, "": {"_count": 1}}}, "Ttook": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "ttake": {"_count": 1, "it": {"_count": 1, "from": {"_count": 1}}}, "bbought": {"_count": 1, "it": {"_count": 1, "when": {"_count": 1}}}, "void": {"_count": 1, "the": {"_count": 1, "locket": {"_count": 1}}}, "responses": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "questionnaire": {"_count": 2, "that": {"_count": 2, "was": {"_count": 1}, "the": {"_count": 1}}}, "documents": {"_count": 1, "balanced": {"_count": 1, "on": {"_count": 1}}}, "pendant": {"_count": 1, "gleaming": {"_count": 1, "in": {"_count": 1}}}, "Selwyns": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Parents": {"_count": 1, "professions": {"_count": 1, "greengrocers": {"_count": 1}}}, "professions": {"_count": 1, "greengrocers": {"_count": 1, "": {"_count": 1}}}, "greengrocers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "jeeringly": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bribe": {"_count": 1, "from": {"_count": 1, "a": {"_count": 1}}}, "bolster": {"_count": 1, "her": {"_count": 1, "own": {"_count": 1}}}, "credentials": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "psilver": {"_count": 1, "cat": {"_count": 1, "vanished": {"_count": 1}}}, "Icecold": {"_count": 1, "air": {"_count": 1, "hit": {"_count": 1}}}, "leaped": {"_count": 1, "toward": {"_count": 1, "the": {"_count": 1}}}, "stags": {"_count": 1, "light": {"_count": 1, "more": {"_count": 1}}}, "duplicate": {"_count": 2, "it": {"_count": 2, "Geminio": {"_count": 1}, "": {"_count": 1}}}, "Geminio": {"_count": 1, "There": {"_count": 1, "": {"_count": 1}}}, "Expec": {"_count": 1, "Expecto": {"_count": 1, "patronum": {"_count": 1}}}, "melding": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "disengaging": {"_count": 1, "himself": {"_count": 1, "": {"_count": 1}}}, "Cresswells": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Purer": {"_count": 1, "than": {"_count": 1, "many": {"_count": 1}}}, "RReg": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Seal": {"_count": 1, "the": {"_count": 1, "exit": {"_count": 1}}}, "SEAL": {"_count": 1, "IT": {"_count": 1, "": {"_count": 1}}}, "THIEF": {"_count": 1, "Harry": {"_count": 1, "opened": {"_count": 1}}}, "Splinched": {"_count": 2, "said": {"_count": 1, "Hermione": {"_count": 1}}, "myself": {"_count": 1, "again": {"_count": 1}}}, "wettest": {"_count": 1, "and": {"_count": 1, "darkest": {"_count": 1}}}, "\u2018Essence": {"_count": 1, "of": {"_count": 1, "Dittany": {"_count": 1}}}, "Bag": {"_count": 1, "right": {"_count": 1, "Harry": {"_count": 1}}}, "jumpers": {"_count": 1, "heels": {"_count": 1, "of": {"_count": 1}}}, "Unstopper": {"_count": 1, "it": {"_count": 1, "for": {"_count": 1}}}, "unshed": {"_count": 1, "tears": {"_count": 1, "as": {"_count": 1}}}, "SecretKeepers": {"_count": 1, "so": {"_count": 1, "Ive": {"_count": 1}}}, "Gloomy": {"_count": 1, "and": {"_count": 1, "oppressive": {"_count": 1}}}, "friendlier": {"_count": 2, "a": {"_count": 1, "kind": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "glade": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "disturbances": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "Salvio": {"_count": 2, "Hexia": {"_count": 2, "": {"_count": 2}}}, "Hexia": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Totalum": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Repello": {"_count": 1, "Muggletum": {"_count": 1, "": {"_count": 1}}}, "Muggletum": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Tent": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "lumbagos": {"_count": 1, "so": {"_count": 1, "bad": {"_count": 1}}}, "figureofeight": {"_count": 1, "movements": {"_count": 1, "with": {"_count": 1}}}, "ErectoV": {"_count": 1, "she": {"_count": 1, "added": {"_count": 1}}}, "constructed": {"_count": 1, "onto": {"_count": 1, "the": {"_count": 1}}}, "guy": {"_count": 1, "rope": {"_count": 1, "": {"_count": 1}}}, "Inimicum": {"_count": 2, "Hermione": {"_count": 1, "finished": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Respect": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "tenderness": {"_count": 1, "in": {"_count": 1, "her": {"_count": 1}}}, "diffused": {"_count": 1, "light": {"_count": 1, "shining": {"_count": 1}}}, "Sudden": {"_count": 1, "awareness": {"_count": 1, "of": {"_count": 1}}}, "Mastering": {"_count": 1, "himself": {"_count": 1, "again": {"_count": 1}}}, "squirrels": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mushrooms": {"_count": 3, "that": {"_count": 1, "Hermione": {"_count": 1}}, "tingled": {"_count": 1, "with": {"_count": 1}}, "Ron": {"_count": 1, "became": {"_count": 1}}}, "billycan": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rustlings": {"_count": 1, "and": {"_count": 1, "what": {"_count": 1}}}, "crackings": {"_count": 1, "of": {"_count": 1, "twigs": {"_count": 1}}}, "tingled": {"_count": 1, "with": {"_count": 1, "unease": {"_count": 1}}}, "irregularly": {"_count": 1, "alongside": {"_count": 1, "his": {"_count": 1}}}, "Nameless": {"_count": 1, "forebodings": {"_count": 1, "crept": {"_count": 1}}}, "forebodings": {"_count": 1, "crept": {"_count": 1, "upon": {"_count": 1}}}, "channel": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "abilities": {"_count": 1}}, "your": {"_count": 1, "magic": {"_count": 1}}}, "elfish": {"_count": 1, "Apparition": {"_count": 1, "being": {"_count": 1}}}, "invisibly": {"_count": 3, "and": {"_count": 1, "eerily": {"_count": 1}}, "in": {"_count": 1, "the": {"_count": 1}}, "behind": {"_count": 1, "them": {"_count": 1}}}, "trussedup": {"_count": 1, "Father": {"_count": 1, "Christmas": {"_count": 1}}}, "dilated": {"_count": 2, "with": {"_count": 1, "fear": {"_count": 1}}, "in": {"_count": 1, "terror": {"_count": 1}}}, "shavings": {"_count": 1, "and": {"_count": 1, "gold": {"_count": 1}}}, "crow": {"_count": 1, "of": {"_count": 1, "laughter": {"_count": 1}}}, "tunnellike": {"_count": 1, "pupils": {"_count": 1, "and": {"_count": 1}}}, "stillpale": {"_count": 1, "face": {"_count": 1, "was": {"_count": 1}}}, "slats": {"_count": 1, "of": {"_count": 1, "Rons": {"_count": 1}}}, "repositioned": {"_count": 1, "himself": {"_count": 1, "in": {"_count": 1}}}, "wandlore": {"_count": 4, "": {"_count": 2, ".": {"_count": 2}}, "with": {"_count": 1, "other": {"_count": 1}}, "recognize": {"_count": 1, "": {"_count": 1}}}, "blondhaired": {"_count": 2, "youths": {"_count": 1, "face": {"_count": 1}}, "boy": {"_count": 1, "swam": {"_count": 1}}}, "youths": {"_count": 1, "face": {"_count": 1, "it": {"_count": 1}}}, "Georgeish": {"_count": 1, "air": {"_count": 1, "of": {"_count": 1}}}, "merryfaced": {"_count": 2, "thief": {"_count": 2, "who": {"_count": 1}, "the": {"_count": 1}}}, "GOBLINS": {"_count": 1, "REVENGE": {"_count": 1, "Early": {"_count": 1}}}, "REVENGE": {"_count": 1, "Early": {"_count": 1, "next": {"_count": 1}}}, "resilientlooking": {"_count": 1, "tree": {"_count": 1, "he": {"_count": 1}}}, "proviso": {"_count": 1, "that": {"_count": 1, "their": {"_count": 1}}}, "impressions": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "sustenance": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "before": {"_count": 1, "long": {"_count": 1}}}, "willpower": {"_count": 2, "to": {"_count": 2, "uproot": {"_count": 1}, "prevent": {"_count": 1}}}, "assuredly": {"_count": 1, "feel": {"_count": 1, "the": {"_count": 1}}}, "obtain": {"_count": 1, "eggs": {"_count": 1, "and": {"_count": 1}}}, "devoured": {"_count": 1, "scrambled": {"_count": 1, "eggs": {"_count": 1}}}, "Elax": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "starvation": {"_count": 1, "at": {"_count": 1, "the": {"_count": 1}}}, "scavenge": {"_count": 1, "nothing": {"_count": 1, "but": {"_count": 1}}}, "dour": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Accordingly": {"_count": 1, "Harry": {"_count": 1, "and": {"_count": 1}}}, "repetitive": {"_count": 1, "as": {"_count": 1, "they": {"_count": 1}}}, "litany": {"_count": 1, "those": {"_count": 1, "locations": {"_count": 1}}}, "locations": {"_count": 5, "they": {"_count": 1, "knew": {"_count": 1}}, "but": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 2, "Gryffindors": {"_count": 1}, "the": {"_count": 1}}, "in": {"_count": 1, "case": {"_count": 1}}}, "speculations": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Repressing": {"_count": 1, "a": {"_count": 1, "strong": {"_count": 1}}}, "foundations": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "crevices": {"_count": 1, "of": {"_count": 1, "cliffs": {"_count": 1}}}, "gorsecovered": {"_count": 1, "mountainsides": {"_count": 1, "and": {"_count": 1}}}, "mountainsides": {"_count": 1, "and": {"_count": 1, "once": {"_count": 1}}}, "pebbly": {"_count": 1, "cove": {"_count": 1, "": {"_count": 1}}}, "cove": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "perverse": {"_count": 1, "slowmotion": {"_count": 1, "game": {"_count": 1}}}, "passtheparcel": {"_count": 1, "where": {"_count": 1, "they": {"_count": 1}}}, "reacting": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "leadership": {"_count": 3, "": {"_count": 1, ".": {"_count": 1}}, "qualities": {"_count": 1, "Ron": {"_count": 1}}, "thrust": {"_count": 1, "upon": {"_count": 1}}}, "Autumn": {"_count": 2, "rolled": {"_count": 1, "over": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "mulches": {"_count": 1, "of": {"_count": 1, "fallen": {"_count": 1}}}, "mists": {"_count": 1, "joined": {"_count": 1, "those": {"_count": 1}}}, "compensate": {"_count": 1, "for": {"_count": 1, "their": {"_count": 1}}}, "riverbank": {"_count": 4, "in": {"_count": 1, "Wales": {"_count": 1}}, "several": {"_count": 1, "times": {"_count": 1}}, "where": {"_count": 1, "wed": {"_count": 1}}, "and": {"_count": 1, "gave": {"_count": 1}}}, "Principal": {"_count": 1, "Exceptions": {"_count": 1, "to": {"_count": 1}}}, "Exceptions": {"_count": 1, "to": {"_count": 1, "Gamps": {"_count": 1}}}, "Gamps": {"_count": 2, "Law": {"_count": 2, "of": {"_count": 2}}}, "Elemental": {"_count": 2, "Transfigur": {"_count": 1, "Oh": {"_count": 1}}, "Transfiguration": {"_count": 1, "said": {"_count": 1}}}, "Transfigur": {"_count": 1, "Oh": {"_count": 1, "speak": {"_count": 1}}}, "pike": {"_count": 1, "slid": {"_count": 1, "off": {"_count": 1}}}, "MuggleRepelling": {"_count": 1, "and": {"_count": 1, "Disillusionment": {"_count": 1}}}, "wooded": {"_count": 2, "slope": {"_count": 2, "that": {"_count": 1}, "": {"_count": 1}}}, "intelligible": {"_count": 1, "as": {"_count": 1, "the": {"_count": 1}}}, "estimated": {"_count": 2, "that": {"_count": 1, "their": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}}, "cascading": {"_count": 1, "river": {"_count": 1, "made": {"_count": 1}}}, "Salmon": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "unmelodious": {"_count": 1, "tongue": {"_count": 1, "a": {"_count": 1}}}, "guttural": {"_count": 1, "noises": {"_count": 1, "and": {"_count": 1}}}, "Gornuk": {"_count": 8, "": {"_count": 1, ".": {"_count": 1}}, "not": {"_count": 1, "long": {"_count": 1}}, "laughed": {"_count": 2, "": {"_count": 1}, "again": {"_count": 1}}, "and": {"_count": 2, "Dirks": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 1, "also": {"_count": 1}}, "may": {"_count": 1, "have": {"_count": 1}}}, "roundbellied": {"_count": 1, "cheerfulfaced": {"_count": 1, "man": {"_count": 1}}}, "cheerfulfaced": {"_count": 1, "man": {"_count": 1, "": {"_count": 1}}}, "Refused": {"_count": 1, "to": {"_count": 1, "register": {"_count": 1}}}, "Word": {"_count": 1, "was": {"_count": 1, "youd": {"_count": 1}}}, "highervoiced": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "goblin": {"_count": 1, "": {"_count": 1}}}, "deepervoiced": {"_count": 1, "goblin": {"_count": 1, "": {"_count": 1}}}, "jeopardy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Duties": {"_count": 1, "illbefitting": {"_count": 1, "the": {"_count": 1}}}, "illbefitting": {"_count": 1, "the": {"_count": 1, "dignity": {"_count": 1}}}, "Similar": {"_count": 1, "reasons": {"_count": 1, "said": {"_count": 1}}}, "lifelines": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wizardmade": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "possesses": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Dirks": {"_count": 1, "laughter": {"_count": 1, "": {"_count": 1}}}, "exboyfriend": {"_count": 1, "of": {"_count": 1, "Ginnys": {"_count": 1}}}, "cruelly": {"_count": 1, "said": {"_count": 1, "Griphook": {"_count": 1}}}, "Xeno": {"_count": 4, "Lovegoods": {"_count": 1, "": {"_count": 1}}, "is": {"_count": 1, "printing": {"_count": 1}}, "says": {"_count": 1, "front": {"_count": 1}}, "Lovegood": {"_count": 1, "was": {"_count": 1}}}, "printing": {"_count": 9, "all": {"_count": 1, "the": {"_count": 1}}, "press": {"_count": 8, "due": {"_count": 1}, "still": {"_count": 1}, "Luna": {"_count": 1}, "and": {"_count": 1}, "gave": {"_count": 1}, "lay": {"_count": 1}, "blocking": {"_count": 2}}}, "numberone": {"_count": 1, "priority": {"_count": 1, "": {"_count": 1}}}, "yets": {"_count": 1, "one": {"_count": 1, "hell": {"_count": 1}}}, "informers": {"_count": 1, "looking": {"_count": 1, "for": {"_count": 1}}}, "publicizing": {"_count": 1, "it": {"_count": 1, "": {"_count": 1}}}, "incline": {"_count": 1, "their": {"_count": 1, "voices": {"_count": 1}}}, "hangs": {"_count": 1, "right": {"_count": 1, "beside": {"_count": 1}}}, "\u2018Please": {"_count": 1, "always": {"_count": 1, "helps": {"_count": 1}}}, "Obscuro": {"_count": 1, "A": {"_count": 1, "black": {"_count": 1}}}, "blindfold": {"_count": 3, "appeared": {"_count": 1, "over": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "again": {"_count": 1, "": {"_count": 1}}}, "thieving": {"_count": 1, "said": {"_count": 1, "Harry": {"_count": 1}}}, "oddity": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "forebears": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "imbibing": {"_count": 1, "only": {"_count": 1, "that": {"_count": 1}}}, "strengthens": {"_count": 2, "it": {"_count": 1, "": {"_count": 1}}, "over": {"_count": 1, "time": {"_count": 1}}}, "contradiction": {"_count": 1, "said": {"_count": 1, "Phineas": {"_count": 1}}}, "blindfolded": {"_count": 3, "he": {"_count": 1, "began": {"_count": 1}}, "head": {"_count": 1, "back": {"_count": 1}}, "every": {"_count": 1, "few": {"_count": 1}}}, "commune": {"_count": 1, "with": {"_count": 1, "each": {"_count": 1}}}, "redouble": {"_count": 2, "his": {"_count": 1, "attempts": {"_count": 1}}, "protection": {"_count": 1, "around": {"_count": 1}}}, "eccentricities": {"_count": 1, "of": {"_count": 1, "Albus": {"_count": 1}}}, "imbibe": {"_count": 1, "only": {"_count": 1, "that": {"_count": 1}}}, "impregnated": {"_count": 1, "with": {"_count": 1, "basilisk": {"_count": 1}}}, "reservations": {"_count": 1, "however": {"_count": 1, "faint": {"_count": 1}}}, "trustworthiness": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Problem": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "plunks": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "Plunk": {"_count": 1, "plunk": {"_count": 1, "plunk": {"_count": 1}}}, "hotels": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Finding": {"_count": 1, "a": {"_count": 1, "Horcrux": {"_count": 1}}}, "fart": {"_count": 1, "do": {"_count": 1, "you": {"_count": 1}}}, "IveFacedWorse": {"_count": 1, "Potter": {"_count": 1, "doesnt": {"_count": 1}}}, "Mummyll": {"_count": 1, "be": {"_count": 1, "able": {"_count": 1}}}, "corrosive": {"_count": 1, "hatred": {"_count": 1, "toward": {"_count": 1}}}, "gggone": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "GODRICS": {"_count": 1, "HOLLOW": {"_count": 1, "When": {"_count": 1}}}, "HOLLOW": {"_count": 1, "When": {"_count": 1, "Harry": {"_count": 1}}}, "repetition": {"_count": 1, "would": {"_count": 1, "dull": {"_count": 1}}}, "rainswept": {"_count": 1, "woods": {"_count": 1, "another": {"_count": 1}}}, "heathercovered": {"_count": 1, "hillside": {"_count": 1, "": {"_count": 1}}}, "supposing": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "heather": {"_count": 1, "walking": {"_count": 1, "in": {"_count": 1}}}, "Cudgel": {"_count": 1, "his": {"_count": 1, "brains": {"_count": 1}}}, "unattainable": {"_count": 1, "as": {"_count": 1, "they": {"_count": 1}}}, "Hopelessness": {"_count": 1, "threatened": {"_count": 1, "to": {"_count": 1}}}, "presumption": {"_count": 2, "in": {"_count": 1, "accepting": {"_count": 1}}, "Presumption": {"_count": 1, "": {"_count": 1}}}, "meandering": {"_count": 2, "pointless": {"_count": 1, "journey": {"_count": 1}}, "past": {"_count": 1, "swinging": {"_count": 1}}}, "relished": {"_count": 1, "any": {"_count": 1, "news": {"_count": 1}}}, "informer": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "venerated": {"_count": 1, "Snape": {"_count": 1, "the": {"_count": 1}}}, "mutiny": {"_count": 1, "from": {"_count": 1, "a": {"_count": 1}}}, "gatherings": {"_count": 1, "of": {"_count": 1, "three": {"_count": 1}}}, "unofficial": {"_count": 1, "student": {"_count": 1, "societies": {"_count": 1}}}, "scant": {"_count": 2, "news": {"_count": 1, "made": {"_count": 1}}, "white": {"_count": 1, "hair": {"_count": 1}}}, "exgirlfriend": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "crackdown": {"_count": 1, "Harry": {"_count": 1, "experienced": {"_count": 1}}}, "destabilization": {"_count": 1, "of": {"_count": 1, "Snapes": {"_count": 1}}}, "emphasized": {"_count": 2, "this": {"_count": 1, "fact": {"_count": 1}}, "the": {"_count": 1, "pointed": {"_count": 1}}}, "unceremonious": {"_count": 1, "goodbyes": {"_count": 1, "": {"_count": 1}}}, "braving": {"_count": 1, "a": {"_count": 1, "mountainside": {"_count": 1}}}, "Scottish": {"_count": 1, "loch": {"_count": 1, "where": {"_count": 1}}}, "loch": {"_count": 1, "where": {"_count": 1, "snow": {"_count": 1}}}, "unexplored": {"_count": 1, "avenue": {"_count": 1, "left": {"_count": 1}}}, "avenue": {"_count": 1, "left": {"_count": 1, "to": {"_count": 1}}}, "spaghetti": {"_count": 1, "Bolognese": {"_count": 1, "and": {"_count": 1}}}, "Bolognese": {"_count": 1, "and": {"_count": 1, "tinned": {"_count": 1}}}, "pears": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "foresight": {"_count": 1, "to": {"_count": 1, "suggest": {"_count": 1}}}, "inked": {"_count": 1, "in": {"_count": 1, "look": {"_count": 1}}}, "pore": {"_count": 2, "over": {"_count": 1, "the": {"_count": 1}}, "of": {"_count": 1, "his": {"_count": 1}}}, "birthplace": {"_count": 1, "Really": {"_count": 1, "": {"_count": 1}}}, "\u2018Upon": {"_count": 1, "the": {"_count": 1, "signature": {"_count": 1}}}, "1689": {"_count": 1, "wizards": {"_count": 1, "went": {"_count": 1}}}, "hamlets": {"_count": 1, "attracted": {"_count": 1, "several": {"_count": 1}}}, "banded": {"_count": 1, "together": {"_count": 1, "for": {"_count": 1}}}, "Tinworth": {"_count": 2, "in": {"_count": 1, "Cornwall": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "Cornwall": {"_count": 1, "Upper": {"_count": 1, "Flagley": {"_count": 1}}}, "Upper": {"_count": 2, "Flagley": {"_count": 2, "in": {"_count": 1}, "is": {"_count": 1}}}, "Flagley": {"_count": 2, "in": {"_count": 1, "Yorkshire": {"_count": 1}}, "is": {"_count": 1, "a": {"_count": 1}}}, "halfmagical": {"_count": 1, "dwelling": {"_count": 1, "places": {"_count": 1}}}, "Bowman": {"_count": 1, "Wright": {"_count": 1, "Wizarding": {"_count": 1}}}, "Wright": {"_count": 1, "Wizarding": {"_count": 1, "smith": {"_count": 1}}}, "smith": {"_count": 1, "forged": {"_count": 1, "the": {"_count": 1}}}, "hauntings": {"_count": 1, "that": {"_count": 1, "have": {"_count": 1}}}, "nineteenth": {"_count": 1, "century": {"_count": 1, "": {"_count": 1}}}, "greataunt": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "in": {"_count": 1, "Godrics": {"_count": 1}}}, "offing": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "hog": {"_count": 1, "and": {"_count": 1, "use": {"_count": 1}}}, "Convinced": {"_count": 2, "as": {"_count": 2, "she": {"_count": 1}, "he": {"_count": 1}}}, "buttonedup": {"_count": 1, "coat": {"_count": 1, "": {"_count": 1}}}, "Cottages": {"_count": 1, "stood": {"_count": 1, "on": {"_count": 1}}}, "pantomime": {"_count": 1, "horse": {"_count": 1, "trying": {"_count": 1}}}, "snowburdened": {"_count": 1, "roofs": {"_count": 1, "and": {"_count": 1}}}, "porches": {"_count": 1, "wondering": {"_count": 1, "whether": {"_count": 1}}}, "Strung": {"_count": 1, "all": {"_count": 1, "around": {"_count": 1}}}, "windblown": {"_count": 1, "Christmas": {"_count": 1, "tree": {"_count": 1}}}, "stainedglass": {"_count": 1, "windows": {"_count": 1, "were": {"_count": 1}}}, "impacted": {"_count": 1, "It": {"_count": 1, "was": {"_count": 1}}}, "Villagers": {"_count": 1, "were": {"_count": 1, "crisscrossing": {"_count": 1}}}, "carol": {"_count": 2, "start": {"_count": 1, "up": {"_count": 1}}, "that": {"_count": 1, "they": {"_count": 1}}}, "obelisk": {"_count": 1, "covered": {"_count": 1, "in": {"_count": 1}}}, "Halls": {"_count": 1, "twelve": {"_count": 1, "Christmas": {"_count": 1}}}, "trenches": {"_count": 1, "behind": {"_count": 1, "them": {"_count": 1}}}, "tombstones": {"_count": 2, "protruded": {"_count": 1, "from": {"_count": 1}}, "away": {"_count": 1, "he": {"_count": 1}}}, "longlost": {"_count": 1, "relation": {"_count": 1, "of": {"_count": 1}}}, "Hannahs": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "lichenspotted": {"_count": 1, "granite": {"_count": 1, "the": {"_count": 1}}}, "KENDRA": {"_count": 1, "DUMBLEDORE": {"_count": 1, "and": {"_count": 1}}}, "DAUGHTER": {"_count": 2, "ARIANA": {"_count": 1, "": {"_count": 1}}, "YOU": {"_count": 1, "BITCH": {"_count": 1}}}, "ARIANA": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "quotation": {"_count": 2, "Where": {"_count": 1, "your": {"_count": 1}}, "marks": {"_count": 1, "around": {"_count": 1}}}, "irrelevant": {"_count": 1, "perhaps": {"_count": 1, "to": {"_count": 1}}}, "sidetracked": {"_count": 2, "again": {"_count": 1, "and": {"_count": 1}}, "Harry": {"_count": 1, "was": {"_count": 1}}}, "illegible": {"_count": 1, "name": {"_count": 1, "": {"_count": 1}}}, "Ig": {"_count": 1, "Ignotus": {"_count": 1, "I": {"_count": 1}}}, "Ignotus": {"_count": 8, "I": {"_count": 1, "think": {"_count": 1}}, "Peverell": {"_count": 3, "": {"_count": 2}, "is": {"_count": 1}}, "s": {"_count": 1, "grave": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}, "was": {"_count": 1, "in": {"_count": 1}}, "its": {"_count": 1, "power": {"_count": 1}}}, "Deeper": {"_count": 4, "and": {"_count": 4, "deeper": {"_count": 4}}}, "churchgoers": {"_count": 1, "were": {"_count": 1, "fading": {"_count": 1}}}, "27": {"_count": 1, "MARCH": {"_count": 1, "1960": {"_count": 1}}}, "MARCH": {"_count": 1, "1960": {"_count": 1, "LILY": {"_count": 1}}}, "1960": {"_count": 2, "LILY": {"_count": 1, "POTTER": {"_count": 1}}, "DIED": {"_count": 1, "31": {"_count": 1}}}, "30": {"_count": 1, "JANUARY": {"_count": 1, "1960": {"_count": 1}}}, "JANUARY": {"_count": 1, "1960": {"_count": 1, "DIED": {"_count": 1}}}, "1981": {"_count": 1, "The": {"_count": 1, "last": {"_count": 1}}}, "defeating": {"_count": 3, "death": {"_count": 1, "in": {"_count": 1}}, "Voldemort": {"_count": 1, "or": {"_count": 1}}, "the": {"_count": 1, "wizard": {"_count": 1}}}, "unknowing": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "leafless": {"_count": 2, "and": {"_count": 1, "frozen": {"_count": 1}}, "trees": {"_count": 1, "": {"_count": 1}}}, "BATHILDAS": {"_count": 1, "SECRET": {"_count": 1, "Harry": {"_count": 1}}}, "eddy": {"_count": 1, "of": {"_count": 1, "dislodged": {"_count": 1}}}, "sanguine": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "rebuilt": {"_count": 2, "it": {"_count": 1, "": {"_count": 1}}, "his": {"_count": 1, "living": {"_count": 1}}}, "unsafe": {"_count": 1, "it": {"_count": 1, "might": {"_count": 1}}}, "fastgrowing": {"_count": 1, "flower": {"_count": 1, "and": {"_count": 1}}}, "981": {"_count": 1, "Lily": {"_count": 1, "and": {"_count": 1}}}, "stoutness": {"_count": 1, "her": {"_count": 1, "shuffling": {"_count": 1}}}, "Dumbledoreish": {"_count": 1, "power": {"_count": 1, "that": {"_count": 1}}}, "Leading": {"_count": 1, "them": {"_count": 1, "past": {"_count": 1}}}, "cataracts": {"_count": 1, "and": {"_count": 1, "sunken": {"_count": 1}}}, "unwound": {"_count": 1, "a": {"_count": 1, "motheaten": {"_count": 1}}}, "\u2018gaga": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "mildewed": {"_count": 2, "smell": {"_count": 1, "something": {"_count": 1}}, "object": {"_count": 1, "by": {"_count": 1}}}, "bowfronted": {"_count": 1, "chest": {"_count": 1, "of": {"_count": 1}}}, "goldenhaired": {"_count": 1, "merryfaced": {"_count": 1, "thief": {"_count": 1}}}, "Gregorovitchs": {"_count": 1, "windowsill": {"_count": 1, "smiling": {"_count": 1}}}, "lowceilinged": {"_count": 2, "bedroom": {"_count": 1, "": {"_count": 1}}, "They": {"_count": 1, "had": {"_count": 1}}}, "agitating": {"_count": 2, "sensation": {"_count": 1, "": {"_count": 1}}, "thoughts": {"_count": 1, "whirled": {"_count": 1}}}, "fetid": {"_count": 2, "room": {"_count": 1, "dissolved": {"_count": 1}}, "bedroom": {"_count": 1, "his": {"_count": 1}}}, "unmade": {"_count": 1, "bed": {"_count": 1, "his": {"_count": 1}}}, "dizzyingly": {"_count": 1, "around": {"_count": 1, "the": {"_count": 1}}}, "Fragments": {"_count": 2, "of": {"_count": 2, "the": {"_count": 1}, "wood": {"_count": 1}}}, "Yesss": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "soursmelling": {"_count": 1, "darkness": {"_count": 1, "Nagini": {"_count": 1}}}, "Frozen": {"_count": 1, "air": {"_count": 1, "filled": {"_count": 1}}}, "comingl": {"_count": 1, "As": {"_count": 1, "he": {"_count": 1}}}, "ConfringoV": {"_count": 1, "and": {"_count": 1, "her": {"_count": 1}}}, "unbearably": {"_count": 2, "didnt": {"_count": 1, "pain": {"_count": 1}}, "bitter": {"_count": 1, "": {"_count": 1}}}, "tawdry": {"_count": 1, "Muggle": {"_count": 1, "trappings": {"_count": 1}}}, "trappings": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "rightness": {"_count": 1, "in": {"_count": 1, "him": {"_count": 1}}}, "mister": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "darkred": {"_count": 1, "hair": {"_count": 1, "falling": {"_count": 1}}}, "pram": {"_count": 1, "pushed": {"_count": 1, "against": {"_count": 1}}}, "marionette": {"_count": 1, "whose": {"_count": 1, "strings": {"_count": 1}}}, "crib": {"_count": 5, "behind": {"_count": 1, "her": {"_count": 1}}, "but": {"_count": 1, "it": {"_count": 1}}, "and": {"_count": 1, "he": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, ".": {"_count": 1}}}, "Screamed": {"_count": 1, "curses": {"_count": 1, "like": {"_count": 1}}}, "RReparo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "resealed": {"_count": 3, "itself": {"_count": 2, "": {"_count": 1}, "at": {"_count": 1}}, "red": {"_count": 1, "sparks": {"_count": 1}}}, "sparked": {"_count": 1, "feebly": {"_count": 1, "then": {"_count": 1}}}, "Blasting": {"_count": 1, "Curse": {"_count": 1, "and": {"_count": 1}}}, "desiring": {"_count": 1, "nothing": {"_count": 1, "more": {"_count": 1}}}, "LIFE": {"_count": 1, "AND": {"_count": 1, "LIES": {"_count": 1}}}, "LIES": {"_count": 2, "OF": {"_count": 1, "ALBUS": {"_count": 1}}, "DOBBY": {"_count": 1, "A": {"_count": 1}}}, "calamity": {"_count": 2, "of": {"_count": 1, "losing": {"_count": 1}}, "but": {"_count": 1, "another": {"_count": 1}}}, "blanketed": {"_count": 1, "in": {"_count": 1, "snow": {"_count": 1}}}, "fatally": {"_count": 2, "weakened": {"_count": 1, "vulnerable": {"_count": 1}}, "ill": {"_count": 1, "": {"_count": 1}}}, "Impenetrable": {"_count": 1, "unhelpful": {"_count": 1, "useless": {"_count": 1}}}, "lava": {"_count": 1, "scorching": {"_count": 1, "him": {"_count": 1}}}, "scorching": {"_count": 2, "him": {"_count": 1, "inside": {"_count": 1}}, "pain": {"_count": 1, "in": {"_count": 1}}}, "undreamedof": {"_count": 1, "terrors": {"_count": 1, "alone": {"_count": 1}}}, "unaided": {"_count": 1, "Nothing": {"_count": 1, "was": {"_count": 1}}}, "Timidly": {"_count": 1, "she": {"_count": 1, "pushed": {"_count": 1}}}, "Batty": {"_count": 2, "Thanks": {"_count": 1, "for": {"_count": 1}}, "pretends": {"_count": 1, "a": {"_count": 1}}}, "longforgotten": {"_count": 1, "joke": {"_count": 1, "": {"_count": 1}}}, "Gellert": {"_count": 13, "Grindelwald": {"_count": 9, "": {"_count": 4}, "devoted": {"_count": 1}, "and": {"_count": 1}, "in": {"_count": 1}, "than": {"_count": 1}, "was": {"_count": 1}}, "know": {"_count": 1, "immediately": {"_count": 1}}, "Your": {"_count": 1, "point": {"_count": 1}}, "was": {"_count": 1, "there": {"_count": 1}}, "could": {"_count": 1, "not": {"_count": 1}}}, "Winner": {"_count": 2, "of": {"_count": 1, "the": {"_count": 1}}, "for": {"_count": 1, "GroundBreaking": {"_count": 1}}}, "Barnabus": {"_count": 1, "Finkley": {"_count": 1, "Prize": {"_count": 1}}}, "Finkley": {"_count": 1, "Prize": {"_count": 1, "for": {"_count": 1}}}, "Exceptional": {"_count": 1, "SpellCasting": {"_count": 1, "British": {"_count": 1}}}, "SpellCasting": {"_count": 1, "British": {"_count": 1, "Youth": {"_count": 1}}}, "Representative": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "GroundBreaking": {"_count": 1, "Contribution": {"_count": 1, "to": {"_count": 1}}}, "Contribution": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "Alchemical": {"_count": 1, "Conference": {"_count": 1, "in": {"_count": 1}}}, "Cairo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Tour": {"_count": 1, "with": {"_count": 1, "Elphias": {"_count": 1}}}, "represents": {"_count": 1, "Kendras": {"_count": 1, "death": {"_count": 1}}}, "selfsacrifice": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "as": {"_count": 1, "you": {"_count": 1}}}, "Smeek": {"_count": 1, "whose": {"_count": 1, "family": {"_count": 1}}}, "jailer": {"_count": 1, "had": {"_count": 1, "died": {"_count": 1}}}, "transspecies": {"_count": 1, "transformation": {"_count": 1, "in": {"_count": 1}}}, "exhibited": {"_count": 1, "earlier": {"_count": 1, "in": {"_count": 1}}}, "Smeeks": {"_count": 1, "slightly": {"_count": 1, "earthier": {"_count": 1}}}, "earthier": {"_count": 1, "phrase": {"_count": 1, "Shes": {"_count": 1}}}, "poo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "triedandtested": {"_count": 1, "reporting": {"_count": 1, "techniques": {"_count": 1}}}, "techniques": {"_count": 1, "enabled": {"_count": 1, "me": {"_count": 1}}}, "nuggets": {"_count": 1, "of": {"_count": 1, "hard": {"_count": 1}}}, "scandalous": {"_count": 1, "story": {"_count": 1, "": {"_count": 1}}}, "bestkept": {"_count": 1, "secret": {"_count": 1, "of": {"_count": 1}}}, "justly": {"_count": 1, "famous": {"_count": 1, "In": {"_count": 1}}}, "Educated": {"_count": 1, "at": {"_count": 1, "Durmstrang": {"_count": 1}}}, "precociously": {"_count": 1, "brilliant": {"_count": 1, "as": {"_count": 1}}}, "attainment": {"_count": 1, "of": {"_count": 1, "awards": {"_count": 1}}}, "prizes": {"_count": 3, "however": {"_count": 1, "Gellert": {"_count": 1}}, "keeping": {"_count": 1, "up": {"_count": 1}}, "for": {"_count": 1, "looking": {"_count": 1}}}, "Hitherto": {"_count": 1, "all": {"_count": 1, "that": {"_count": 1}}}, "babbles": {"_count": 1, "Bathilda": {"_count": 1, "whatever": {"_count": 1}}}, "Gellerts": {"_count": 1, "bedroom": {"_count": 1, "window": {"_count": 1}}}, "Profoundly": {"_count": 1, "shocking": {"_count": 1, "though": {"_count": 1}}}, "relayed": {"_count": 1, "to": {"_count": 1, "his": {"_count": 1}}}, "dominance": {"_count": 1, "being": {"_count": 1, "FOR": {"_count": 1}}}, "GOOD": {"_count": 3, "this": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "responsibilities": {"_count": 1, "over": {"_count": 1, "the": {"_count": 1}}}, "GREATER": {"_count": 2, "GOOD": {"_count": 2, "": {"_count": 2}}}, "Astonished": {"_count": 1, "and": {"_count": 1, "appalled": {"_count": 1}}}, "overthrowing": {"_count": 1, "the": {"_count": 1, "Statute": {"_count": 1}}}, "portrayed": {"_count": 1, "Dumbledore": {"_count": 1, "as": {"_count": 1}}}, "Muggleboms": {"_count": 1, "greatest": {"_count": 1, "champion": {"_count": 1}}}, "promoting": {"_count": 1, "Muggle": {"_count": 1, "rights": {"_count": 1}}}, "damning": {"_count": 1, "new": {"_count": 1, "evidence": {"_count": 1}}}, "despicable": {"_count": 2, "does": {"_count": 1, "Albus": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "22": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "rupture": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Terribly": {"_count": 1, "distressed": {"_count": 1, "you": {"_count": 1}}}, "raises": {"_count": 1, "several": {"_count": 1, "questions": {"_count": 1}}}, "pretends": {"_count": 1, "a": {"_count": 1, "mere": {"_count": 1}}}, "effusion": {"_count": 1, "of": {"_count": 1, "grief": {"_count": 1}}}, "boyhood": {"_count": 1, "friendship": {"_count": 1, "in": {"_count": 1}}}, "fatalities": {"_count": 1, "and": {"_count": 1, "disappearances": {"_count": 1}}}, "exposure": {"_count": 1, "as": {"_count": 1, "his": {"_count": 1}}}, "inadvertent": {"_count": 1, "victim": {"_count": 1, "of": {"_count": 1}}}, "rite": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "embodiment": {"_count": 1, "of": {"_count": 1, "goodness": {"_count": 1}}}, "\u2018For": {"_count": 2, "the": {"_count": 2, "Greater": {"_count": 2}}}, "slogan": {"_count": 1, "his": {"_count": 1, "justification": {"_count": 1}}}, "justification": {"_count": 1, "for": {"_count": 1, "all": {"_count": 1}}}, "atrocities": {"_count": 1, "he": {"_count": 1, "committed": {"_count": 1}}}, "Nurmengard": {"_count": 5, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "and": {"_count": 1, "why": {"_count": 1}}, "FOR": {"_count": 1, "THE": {"_count": 1}}}, "\u2018right": {"_count": 1, "to": {"_count": 1, "rule": {"_count": 1}}}, "\u2018Magic": {"_count": 1, "Is": {"_count": 1, "Might": {"_count": 1}}}, "blackbirds": {"_count": 1, "rose": {"_count": 1, "into": {"_count": 1}}}, "disillusionment": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "insects": {"_count": 2, "beneath": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "birds": {"_count": 1}}}, "recuperating": {"_count": 1, "from": {"_count": 1, "some": {"_count": 1}}}, "solicitousness": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dusting": {"_count": 1, "of": {"_count": 1, "powdery": {"_count": 1}}}, "proclaim": {"_count": 1, "other": {"_count": 1, "sinister": {"_count": 1}}}, "doe": {"_count": 21, "moonbright": {"_count": 1, "and": {"_count": 1}}, "made": {"_count": 1, "no": {"_count": 1}}, "faded": {"_count": 1, "away": {"_count": 1}}, "which": {"_count": 2, "he": {"_count": 1}, "the": {"_count": 1}}, "was": {"_count": 2, "nothing": {"_count": 1}, "benign": {"_count": 1}}, "": {"_count": 7, "?": {"_count": 3}, ".": {"_count": 3}, "!": {"_count": 1}}, "had": {"_count": 1, "seemed": {"_count": 1}}, "first": {"_count": 1, "obviously": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "recovery": {"_count": 1}}, "Patronus": {"_count": 1, "to": {"_count": 1}}, "She": {"_count": 1, "landed": {"_count": 1}}, "said": {"_count": 1, "Harry": {"_count": 1}}}, "moonbright": {"_count": 1, "and": {"_count": 1, "dazzling": {"_count": 1}}}, "hoofprints": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "powdering": {"_count": 1, "of": {"_count": 1, "snow": {"_count": 1}}}, "longlashed": {"_count": 1, "eyes": {"_count": 1, "held": {"_count": 1}}}, "familiarity": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "staked": {"_count": 1, "his": {"_count": 1, "life": {"_count": 1}}}, "retinas": {"_count": 1, "it": {"_count": 1, "obscured": {"_count": 1}}}, "disorienting": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "crackles": {"_count": 1, "of": {"_count": 1, "twigs": {"_count": 1}}}, "swishes": {"_count": 1, "of": {"_count": 1, "snow": {"_count": 1}}}, "enticed": {"_count": 1, "him": {"_count": 1, "into": {"_count": 1}}}, "carapace": {"_count": 1, "something": {"_count": 1, "else": {"_count": 1}}}, "angled": {"_count": 1, "the": {"_count": 1, "wand": {"_count": 1}}}, "leavened": {"_count": 1, "his": {"_count": 1, "exhilaration": {"_count": 1}}}, "exhilaration": {"_count": 2, "as": {"_count": 1, "he": {"_count": 1}}, "in": {"_count": 1, "his": {"_count": 1}}}, "reposing": {"_count": 1, "upon": {"_count": 1, "the": {"_count": 1}}}, "dispersing": {"_count": 1, "rapidly": {"_count": 1, "upon": {"_count": 1}}}, "uninviting": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "layers": {"_count": 1, "of": {"_count": 1, "clothing": {"_count": 1}}}, "chivalrous": {"_count": 1, "that": {"_count": 1, "he": {"_count": 1}}}, "stead": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "barefooted": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "Diffindo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "submerge": {"_count": 1, "himself": {"_count": 1, "completely": {"_count": 1}}}, "Contemplating": {"_count": 1, "the": {"_count": 1, "task": {"_count": 1}}}, "submersion": {"_count": 1, "from": {"_count": 1, "second": {"_count": 1}}}, "Thrashing": {"_count": 1, "suffocating": {"_count": 1, "he": {"_count": 1}}}, "Deaths": {"_count": 5, "": {"_count": 1, ".": {"_count": 1}}, "got": {"_count": 1, "an": {"_count": 1}}, "gifts": {"_count": 1, "": {"_count": 1}}, "welcoming": {"_count": 1, "arms": {"_count": 1}}, "own": {"_count": 1, "Hallows": {"_count": 1}}}, "Choking": {"_count": 1, "and": {"_count": 1, "retching": {"_count": 1}}}, "coughs": {"_count": 1, "not": {"_count": 1, "judging": {"_count": 1}}}, "saviors": {"_count": 1, "identity": {"_count": 1, "": {"_count": 1}}}, "parody": {"_count": 1, "of": {"_count": 1, "hypnosis": {"_count": 1}}}, "hypnosis": {"_count": 1, "didnt": {"_count": 1, "you": {"_count": 1}}}, "Shuddering": {"_count": 1, "with": {"_count": 1, "cold": {"_count": 1}}}, "yyou": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "nearstrangulation": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Yyou": {"_count": 1, "cast": {"_count": 1, "that": {"_count": 1}}}, "oaks": {"_count": 1, "grew": {"_count": 1, "close": {"_count": 1}}}, "rubied": {"_count": 3, "hilt": {"_count": 2, "glinting": {"_count": 1}, "and": {"_count": 1}}, "handle": {"_count": 1, "The": {"_count": 1}}}, "flattish": {"_count": 1, "rock": {"_count": 1, "lying": {"_count": 1}}}, "wield": {"_count": 1, "the": {"_count": 1, "sword": {"_count": 1}}}, "incalculable": {"_count": 1, "power": {"_count": 1, "of": {"_count": 1}}}, "Straightaway": {"_count": 1, "okay": {"_count": 1, "": {"_count": 1}}}, "whatevers": {"_count": 2, "in": {"_count": 1, "there": {"_count": 1}}, "down": {"_count": 1, "there": {"_count": 1}}}, "affects": {"_count": 1, "me": {"_count": 1, "worse": {"_count": 1}}}, "pupiled": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Stab": {"_count": 3, "said": {"_count": 1, "Harry": {"_count": 1}}, "it": {"_count": 1, "": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "craved": {"_count": 4, "a": {"_count": 1, "daughter": {"_count": 1}}, "most": {"_count": 2, "of": {"_count": 1}, "": {"_count": 1}}, "the": {"_count": 1, "company": {"_count": 1}}}, "eternally": {"_count": 3, "overshadowed": {"_count": 1, "": {"_count": 1}}, "giving": {"_count": 2, "constant": {"_count": 2}}}, "waists": {"_count": 1, "then": {"_count": 1, "legs": {"_count": 1}}}, "RiddleHarry": {"_count": 4, "was": {"_count": 1, "now": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}, "while": {"_count": 1, "RiddleHermione": {"_count": 1}}, "wrapping": {"_count": 1, "him": {"_count": 1}}}, "Presumption": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "RiddleHermione": {"_count": 4, "who": {"_count": 1, "was": {"_count": 1}}, "were": {"_count": 1, "reflected": {"_count": 1}}, "jeered": {"_count": 1, "that": {"_count": 1}}, "and": {"_count": 1, "she": {"_count": 1}}}, "STAB": {"_count": 1, "IT": {"_count": 1, "": {"_count": 1}}}, "duet": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "slackly": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "Finishing": {"_count": 1, "off": {"_count": 1, "the": {"_count": 1}}}, "Saving": {"_count": 1, "my": {"_count": 1, "life": {"_count": 1}}}, "Simultaneously": {"_count": 1, "they": {"_count": 1, "walked": {"_count": 1}}}, "stillsopping": {"_count": 1, "back": {"_count": 1, "of": {"_count": 1}}}, "gloriously": {"_count": 1, "warm": {"_count": 1, "after": {"_count": 1}}}, "illumination": {"_count": 1, "the": {"_count": 1, "bluebell": {"_count": 1}}}, "sleepwalker": {"_count": 1, "toward": {"_count": 1, "Ron": {"_count": 1}}}, "OW": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "arse": {"_count": 1, "Ronald": {"_count": 1, "Weasley": {"_count": 1}}}, "Spitting": {"_count": 1, "hair": {"_count": 1, "out": {"_count": 1}}}, "malediction": {"_count": 1, "and": {"_count": 1, "Harry": {"_count": 1}}}, "Rack": {"_count": 1, "your": {"_count": 1, "brains": {"_count": 1}}}, "Weeks": {"_count": 1, "and": {"_count": 1, "weeks": {"_count": 1}}}, "Snatchers": {"_count": 15, "Hermione": {"_count": 1, "and": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "caught": {"_count": 2, "me": {"_count": 1}, "them": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}, "theyre": {"_count": 1, "only": {"_count": 1}}, "watching": {"_count": 1, "frozen": {"_count": 1}}, "skulking": {"_count": 1, "in": {"_count": 1}}, "were": {"_count": 1, "closing": {"_count": 1}}, "strode": {"_count": 1, "to": {"_count": 1}}, "forced": {"_count": 1, "the": {"_count": 1}}, "was": {"_count": 1, "watching": {"_count": 1}}, "by": {"_count": 1, "the": {"_count": 1}}}, "Disarmed": {"_count": 3, "the": {"_count": 1, "bloke": {"_count": 1}}, "Voldemort": {"_count": 1, "throwing": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}}, "Gosh": {"_count": 1, "what": {"_count": 1, "a": {"_count": 1}}}, "sufferings": {"_count": 2, "into": {"_count": 1, "perspective": {"_count": 1}}, "which": {"_count": 1, "I": {"_count": 1}}}, "\u2018Ron": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "repairing": {"_count": 1, "Harrys": {"_count": 1, "wand": {"_count": 1}}}, "illustrating": {"_count": 1, "the": {"_count": 1, "movement": {"_count": 1}}}, "figured": {"_count": 1, "its": {"_count": 1, "always": {"_count": 1}}}, "Mines": {"_count": 1, "broken": {"_count": 1, "": {"_count": 1}}}, "XEN": {"_count": 1, "OPHILIUS": {"_count": 1, "LOVEGOOD": {"_count": 1}}}, "OPHILIUS": {"_count": 1, "LOVEGOOD": {"_count": 1, "Harry": {"_count": 1}}}, "abate": {"_count": 1, "overnight": {"_count": 1, "and": {"_count": 1}}}, "communicated": {"_count": 1, "mainly": {"_count": 1, "by": {"_count": 1}}}, "nonmourner": {"_count": 1, "at": {"_count": 1, "a": {"_count": 1}}}, "Bolstered": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "breakthroughs": {"_count": 1, "would": {"_count": 1, "succeed": {"_count": 1}}}, "sulkiness": {"_count": 1, "could": {"_count": 1, "not": {"_count": 1}}}, "blackberries": {"_count": 1, "they": {"_count": 1, "continued": {"_count": 1}}}, "Taboo": {"_count": 3, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "on": {"_count": 1, "it": {"_count": 1}}}, "trackable": {"_count": 1, "quickandeasy": {"_count": 1, "way": {"_count": 1}}}, "quickandeasy": {"_count": 1, "way": {"_count": 1, "to": {"_count": 1}}}, "inexpressibly": {"_count": 1, "comforting": {"_count": 1, "": {"_count": 1}}}, "condescended": {"_count": 1, "to": {"_count": 1, "examine": {"_count": 1}}}, "blackthorn": {"_count": 14, "": {"_count": 1, ".": {"_count": 1}}, "wand": {"_count": 11, "": {"_count": 4}, "if": {"_count": 1}, "levitate": {"_count": 1}, "he": {"_count": 1}, "at": {"_count": 2}, "but": {"_count": 1}, "insisting": {"_count": 1}}, "wands": {"_count": 1, "fault": {"_count": 1}}, "one": {"_count": 1, "ever": {"_count": 1}}}, "intrusively": {"_count": 1, "unfamiliar": {"_count": 1, "like": {"_count": 1}}}, "enlarge": {"_count": 2, "and": {"_count": 1, "reduce": {"_count": 1}}, "the": {"_count": 1, "passageway": {"_count": 1}}}, "clumsier": {"_count": 1, "and": {"_count": 1, "less": {"_count": 1}}}, "deign": {"_count": 1, "to": {"_count": 1, "respond": {"_count": 1}}}, "straws": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Outvoted": {"_count": 1, "Harry": {"_count": 1, "sorry": {"_count": 1}}}, "Alls": {"_count": 1, "fair": {"_count": 1, "in": {"_count": 1}}}, "vantage": {"_count": 1, "point": {"_count": 1, "the": {"_count": 1}}}, "shadowing": {"_count": 1, "their": {"_count": 1, "eyes": {"_count": 1}}}, "Cottage": {"_count": 10, "": {"_count": 4, ".": {"_count": 3}, "?": {"_count": 1}}, "on": {"_count": 1, "the": {"_count": 1}}, "could": {"_count": 1, "hardly": {"_count": 1}}, "so": {"_count": 1, "that": {"_count": 1}}, "told": {"_count": 1, "me": {"_count": 1}}, "lying": {"_count": 1, "dark": {"_count": 1}}, "and": {"_count": 1, "clean": {"_count": 1}}}, "geraniums": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "cylinder": {"_count": 1, "with": {"_count": 1, "a": {"_count": 1}}}, "rook": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "said": {"_count": 1, "Ron": {"_count": 1}}}, "handpainted": {"_count": 1, "signs": {"_count": 1, "had": {"_count": 1}}}, "QUIBBLER": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "EDITOR": {"_count": 1, "X": {"_count": 1, "": {"_count": 1}}}, "PICK": {"_count": 1, "YOUR": {"_count": 1, "OWN": {"_count": 1}}}, "MISTLETOE": {"_count": 1, "the": {"_count": 1, "third": {"_count": 1}}}, "DIRIGIBLE": {"_count": 1, "PLUMS": {"_count": 1, "The": {"_count": 1}}}, "PLUMS": {"_count": 1, "The": {"_count": 1, "gate": {"_count": 1}}}, "radishlike": {"_count": 1, "fruit": {"_count": 1, "Luna": {"_count": 1}}}, "berrysized": {"_count": 1, "red": {"_count": 1, "fruits": {"_count": 1}}}, "fruits": {"_count": 1, "and": {"_count": 1, "bushy": {"_count": 1}}}, "whitebeaded": {"_count": 1, "mistletoe": {"_count": 1, "stood": {"_count": 1}}}, "studded": {"_count": 1, "with": {"_count": 1, "iron": {"_count": 1}}}, "barefoot": {"_count": 1, "and": {"_count": 1, "wearing": {"_count": 1}}}, "dapper": {"_count": 1, "at": {"_count": 1, "Bill": {"_count": 1}}}, "querulous": {"_count": 1, "voice": {"_count": 1, "looking": {"_count": 1}}}, "lessthanwarm": {"_count": 1, "welcome": {"_count": 1, "": {"_count": 1}}}, "QuicklyV": {"_count": 1, "They": {"_count": 1, "were": {"_count": 1}}}, "unforgettable": {"_count": 1, "occasion": {"_count": 1, "that": {"_count": 1}}}, "Delicately": {"_count": 1, "made": {"_count": 1, "models": {"_count": 1}}}, "offspring": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "workbench": {"_count": 1, "and": {"_count": 1, "a": {"_count": 1}}}, "clatters": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "nows": {"_count": 1, "not": {"_count": 1, "the": {"_count": 1}}}, "Erumpent": {"_count": 6, "horn": {"_count": 5, "": {"_count": 3}, "and": {"_count": 1}, "didnt": {"_count": 1}}, "not": {"_count": 1, "a": {"_count": 1}}}, "Tradeable": {"_count": 1, "Material": {"_count": 1, "and": {"_count": 1}}}, "Material": {"_count": 1, "and": {"_count": 1, "its": {"_count": 1}}}, "grooved": {"_count": 1, "markings": {"_count": 1, "around": {"_count": 1}}}, "dogmatically": {"_count": 1, "two": {"_count": 1, "weeks": {"_count": 1}}}, "exquisite": {"_count": 1, "Snorkack": {"_count": 1, "": {"_count": 1}}}, "Freshwater": {"_count": 2, "Plimpies": {"_count": 1, "": {"_count": 1}}, "Plimpy": {"_count": 1, "soup": {"_count": 1}}}, "Cowardly": {"_count": 1, "old": {"_count": 1, "wart": {"_count": 1}}}, "Xenophiliuss": {"_count": 5, "attitude": {"_count": 1, "proved": {"_count": 1}}, "Stunning": {"_count": 1, "Spell": {"_count": 1}}, "paper": {"_count": 1, "white": {"_count": 1}}, "house": {"_count": 2, "": {"_count": 1}, "wearing": {"_count": 1}}}, "austerelooking": {"_count": 1, "witch": {"_count": 1, "wearing": {"_count": 1}}}, "bizarrelooking": {"_count": 1, "headdress": {"_count": 1, "": {"_count": 1}}}, "headdress": {"_count": 5, "": {"_count": 3, ".": {"_count": 2}, "?": {"_count": 1}}, "they": {"_count": 1, "had": {"_count": 1}}, "and": {"_count": 1, "then": {"_count": 1}}}, "trumpets": {"_count": 2, "curved": {"_count": 1, "out": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Fetching": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Surprised": {"_count": 1, "he": {"_count": 1, "didnt": {"_count": 1}}}, "illassorted": {"_count": 1, "teacups": {"_count": 1, "and": {"_count": 1}}}, "Modeled": {"_count": 1, "fittingly": {"_count": 1, "enough": {"_count": 1}}}, "fittingly": {"_count": 1, "enough": {"_count": 1, "upon": {"_count": 1}}}, "\u2018Wit": {"_count": 2, "beyond": {"_count": 2, "measure": {"_count": 2}}}, "treasureV": {"_count": 1, "He": {"_count": 1, "indicated": {"_count": 1}}}, "billywig": {"_count": 2, "propeller": {"_count": 1, "to": {"_count": 1}}, "wings": {"_count": 1, "really": {"_count": 1}}}, "propeller": {"_count": 1, "to": {"_count": 1, "induce": {"_count": 1}}}, "Dirigible": {"_count": 1, "Plum": {"_count": 1, "so": {"_count": 1}}}, "Plum": {"_count": 1, "so": {"_count": 1, "as": {"_count": 1}}}, "beetroot": {"_count": 1, "juice": {"_count": 1, "he": {"_count": 1}}}, "Bottom": {"_count": 2, "Bridge": {"_count": 2, "she": {"_count": 1}, "fishing": {"_count": 1}}}, "Wellingtoned": {"_count": 1, "legs": {"_count": 1, "crossed": {"_count": 1}}}, "Deathly": {"_count": 30, "Hallows": {"_count": 30, "": {"_count": 11}, "said": {"_count": 2}, "on": {"_count": 1}, "at": {"_count": 1}, "cant": {"_count": 1}, "was": {"_count": 1}, "would": {"_count": 1}, "surely": {"_count": 1}, "he": {"_count": 2}, "are": {"_count": 1}, "really": {"_count": 1}, "we": {"_count": 1}, "were": {"_count": 1}, "had": {"_count": 1}, "especially": {"_count": 1}, "Harry": {"_count": 1}, "dreams": {"_count": 1}, "I": {"_count": 1}}}, "Hallows": {"_count": 67, "": {"_count": 22, "?": {"_count": 9}, ".": {"_count": 10}, "!": {"_count": 3}}, "at": {"_count": 3, "least": {"_count": 1}, "all": {"_count": 1}, "last": {"_count": 1}}, "said": {"_count": 2, "Xenophilius": {"_count": 2}}, "in": {"_count": 1, "the": {"_count": 1}}, "which": {"_count": 2, "if": {"_count": 2}}, "actually": {"_count": 1, "exist": {"_count": 1}}, "Quest": {"_count": 1, "": {"_count": 1}}, "on": {"_count": 1, "Ignotus": {"_count": 1}}, "cant": {"_count": 1, "exist": {"_count": 1}}, "story": {"_count": 1, "Fit": {"_count": 1}}, "was": {"_count": 1, "on": {"_count": 1}}, "facing": {"_count": 1, "Voldemort": {"_count": 1}}, "versus": {"_count": 1, "Horcruxes": {"_count": 1}}, "would": {"_count": 1, "he": {"_count": 1}}, "as": {"_count": 2, "if": {"_count": 1}, "I": {"_count": 1}}, "surely": {"_count": 1, "he": {"_count": 1}}, "he": {"_count": 2, "might": {"_count": 1}, "said": {"_count": 1}}, "are": {"_count": 1, "real": {"_count": 1}}, "really": {"_count": 1, "existed": {"_count": 1}}, "we": {"_count": 1, "cant": {"_count": 1}}, "were": {"_count": 1, "real": {"_count": 1}}, "business": {"_count": 1, "": {"_count": 1}}, "had": {"_count": 1, "taken": {"_count": 1}}, "especially": {"_count": 1, "of": {"_count": 1}}, "burned": {"_count": 1, "inside": {"_count": 1}}, "consumed": {"_count": 1, "him": {"_count": 1}}, "for": {"_count": 1, "Hermione": {"_count": 1}}, "Harry": {"_count": 2, "hurried": {"_count": 1}, "": {"_count": 1}}, "and": {"_count": 1, "whatever": {"_count": 1}}, "the": {"_count": 1, "Hallows": {"_count": 1}}, "murmured": {"_count": 2, "Dumbledore": {"_count": 2}}, "not": {"_count": 1, "Horcruxes": {"_count": 1}}, "seems": {"_count": 1, "to": {"_count": 1}}, "but": {"_count": 1, "I": {"_count": 1}}, "when": {"_count": 1, "you": {"_count": 1}}, "with": {"_count": 1, "a": {"_count": 1}}, "dreams": {"_count": 1, "in": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}}, "BROTHERS": {"_count": 1, "Harry": {"_count": 1, "turned": {"_count": 1}}}, "knuckleheaded": {"_count": 1, "young": {"_count": 1, "man": {"_count": 1}}}, "oneself": {"_count": 1, "to": {"_count": 1, "other": {"_count": 1}}}, "believers": {"_count": 2, "in": {"_count": 1, "the": {"_count": 1}}, "seek": {"_count": 1, "the": {"_count": 1}}}, "liquidized": {"_count": 1, "bogeyflavored": {"_count": 1, "Every": {"_count": 1}}}, "bogeyflavored": {"_count": 1, "Every": {"_count": 1, "Flavor": {"_count": 1}}}, "Tale": {"_count": 3, "of": {"_count": 3, "the": {"_count": 3}}}, "\u2018There": {"_count": 1, "were": {"_count": 1, "once": {"_count": 1}}}, "spookier": {"_count": 1, "if": {"_count": 1, "its": {"_count": 1}}}, "\u2018In": {"_count": 2, "time": {"_count": 1, "the": {"_count": 1}}, "due": {"_count": 1, "course": {"_count": 1}}}, "\u2018And": {"_count": 5, "Death": {"_count": 2, "spoke": {"_count": 2}}, "then": {"_count": 1, "Death": {"_count": 1}}, "so": {"_count": 2, "Death": {"_count": 2}}}, "\u2018So": {"_count": 1, "the": {"_count": 1, "oldest": {"_count": 1}}}, "\u2018Then": {"_count": 2, "the": {"_count": 1, "second": {"_count": 1}}, "Death": {"_count": 1, "stood": {"_count": 1}}}, "humiliate": {"_count": 1, "Death": {"_count": 1, "still": {"_count": 1}}}, "humblest": {"_count": 1, "and": {"_count": 1, "also": {"_count": 1}}}, "wisest": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "quarrel": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Elder": {"_count": 59, "Wand": {"_count": 58, "as": {"_count": 1}, "he": {"_count": 2}, "said": {"_count": 1}, "is": {"_count": 4}, "lies": {"_count": 1}, "made": {"_count": 1}, "and": {"_count": 5}, "": {"_count": 13}, "without": {"_count": 1}, "where": {"_count": 1}, "the": {"_count": 3}, "but": {"_count": 1}, "only": {"_count": 1}, "must": {"_count": 1}, "didnt": {"_count": 2}, "a": {"_count": 1}, "to": {"_count": 1}, "how": {"_count": 1}, "was": {"_count": 2}, "slashed": {"_count": 1}, "that": {"_count": 1}, "holding": {"_count": 1}, "through": {"_count": 1}, "refuses": {"_count": 1}, "cannot": {"_count": 2}, "belongs": {"_count": 1}, "in": {"_count": 1}, "between": {"_count": 1}, "has": {"_count": 1}, "removes": {"_count": 1}, "from": {"_count": 1}, "recognized": {"_count": 1}, "fly": {"_count": 1}}, "Wands": {"_count": 1, "real": {"_count": 1}}}, "winesodden": {"_count": 1, "upon": {"_count": 1, "his": {"_count": 1}}}, "\u2018Meanwhile": {"_count": 1, "the": {"_count": 1, "second": {"_count": 1}}}, "untimely": {"_count": 1, "death": {"_count": 1, "appeared": {"_count": 1}}}, "\u2018Yet": {"_count": 1, "she": {"_count": 1, "was": {"_count": 1}}}, "Resurrection": {"_count": 13, "Stone": {"_count": 13, "he": {"_count": 2}, "": {"_count": 5}, "Hermione": {"_count": 1}, "to": {"_count": 2}, "hidden": {"_count": 1}, "had": {"_count": 1}, "slipped": {"_count": 1}}}, "\u2018Deathly": {"_count": 1, "Hallows": {"_count": 1, "in": {"_count": 1}}}, "instruct": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "refers": {"_count": 1, "to": {"_count": 1, "three": {"_count": 1}}}, "possessor": {"_count": 7, "master": {"_count": 3, "of": {"_count": 3}}, "would": {"_count": 1, "be": {"_count": 1}}, "of": {"_count": 3, "the": {"_count": 3}}}, "\u2018master": {"_count": 1, "of": {"_count": 1, "Death": {"_count": 1}}}, "Conqueror": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Vanquisher": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "unintelligent": {"_count": 1, "but": {"_count": 1, "painfully": {"_count": 1}}}, "Closeminded": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Hallow": {"_count": 9, "is": {"_count": 1, "a": {"_count": 1}}, "that": {"_count": 2, "is": {"_count": 1}, "could": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "and": {"_count": 2, "when": {"_count": 1}, "turned": {"_count": 1}}, "the": {"_count": 1, "Elder": {"_count": 1}}, "I": {"_count": 1, "had": {"_count": 1}}}, "imbued": {"_count": 1, "with": {"_count": 1, "a": {"_count": 1}}}, "Bedazzling": {"_count": 1, "Hex": {"_count": 1, "or": {"_count": 1}}}, "Demiguise": {"_count": 1, "hair": {"_count": 1, "which": {"_count": 1}}}, "initially": {"_count": 1, "but": {"_count": 1, "fade": {"_count": 1}}}, "renders": {"_count": 2, "the": {"_count": 2, "wearer": {"_count": 2}}}, "wearer": {"_count": 3, "completely": {"_count": 2, "invisible": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "endures": {"_count": 2, "eternally": {"_count": 2, "giving": {"_count": 2}}}, "Egbert": {"_count": 1, "the": {"_count": 1, "Egregious": {"_count": 1}}}, "Egregious": {"_count": 1, "after": {"_count": 1, "his": {"_count": 1}}}, "Godelot": {"_count": 1, "died": {"_count": 1, "in": {"_count": 1}}}, "Hereward": {"_count": 1, "took": {"_count": 1, "the": {"_count": 1}}}, "Loxias": {"_count": 2, "who": {"_count": 1, "took": {"_count": 1}}, "and": {"_count": 1, "which": {"_count": 1}}}, "Deverill": {"_count": 1, "whom": {"_count": 1, "he": {"_count": 1}}}, "Arcus": {"_count": 1, "and": {"_count": 1, "Livius": {"_count": 1}}}, "Livius": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Questers": {"_count": 1, "believe": {"_count": 1, "that": {"_count": 1}}}, "Peverells": {"_count": 6, "have": {"_count": 1, "everything": {"_count": 1}}, "": {"_count": 4, "?": {"_count": 1}, ".": {"_count": 1}, "!": {"_count": 2}}, "were": {"_count": 1, "one": {"_count": 1}}}, "pedantically": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Antioch": {"_count": 1, "Cadmus": {"_count": 1, "and": {"_count": 1}}}, "Cadmus": {"_count": 1, "and": {"_count": 1, "Ignotus": {"_count": 1}}}, "Plimpy": {"_count": 1, "soup": {"_count": 1, "": {"_count": 1}}}, "Poisoning": {"_count": 1, "Department": {"_count": 1, "at": {"_count": 1}}}, "superstitions": {"_count": 2, "isnt": {"_count": 1, "it": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Mayborn": {"_count": 1, "witches": {"_count": 1, "will": {"_count": 1}}}, "\u2018Jinx": {"_count": 1, "by": {"_count": 1, "twilight": {"_count": 1}}}, "undone": {"_count": 1, "by": {"_count": 1, "midnight": {"_count": 1}}}, "\u2018Wand": {"_count": 1, "of": {"_count": 1, "elder": {"_count": 1}}}, "prosper": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "morality": {"_count": 1, "tale": {"_count": 1, "its": {"_count": 1}}}, "\u2018Ive": {"_count": 1, "got": {"_count": 1, "an": {"_count": 1}}}, "endearingly": {"_count": 1, "familiar": {"_count": 1, "that": {"_count": 1}}}, "Deathstick": {"_count": 8, "the": {"_count": 3, "Wand": {"_count": 3}}, "and": {"_count": 2, "the": {"_count": 1}, "whatever": {"_count": 1}}, "unbeatable": {"_count": 1, "invincible": {"_count": 1}}, "is": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Destiny": {"_count": 5, "they": {"_count": 1, "crop": {"_count": 1}}, "arent": {"_count": 1, "the": {"_count": 1}}, "or": {"_count": 1, "the": {"_count": 1}}, "the": {"_count": 1, "Deathstick": {"_count": 1}}, "is": {"_count": 1, "truly": {"_count": 1}}}, "infallible": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "linking": {"_count": 1, "them": {"_count": 1, "together": {"_count": 1}}}, "bettergroomed": {"_count": 1, "in": {"_count": 1, "this": {"_count": 1}}}, "cobweb": {"_count": 1, "stretched": {"_count": 1, "over": {"_count": 1}}}, "chugging": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "UNDESIRABLE": {"_count": 2, "NUMBER": {"_count": 2, "ONE": {"_count": 2}}}, "ghastly": {"_count": 1, "a": {"_count": 1, "century": {"_count": 1}}}, "Headed": {"_count": 1, "bang": {"_count": 1, "Snorkacks": {"_count": 1}}}, "immersing": {"_count": 1, "his": {"_count": 1, "body": {"_count": 1}}}, "Deprimo": {"_count": 1, "She": {"_count": 1, "had": {"_count": 1}}}, "DEATHLY": {"_count": 1, "HALLOWS": {"_count": 1, "Harry": {"_count": 1}}}, "HALLOWS": {"_count": 1, "Harry": {"_count": 1, "fell": {"_count": 1}}}, "bleeder": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "inmates": {"_count": 1, "about": {"_count": 1, "Wrackspurts": {"_count": 1}}}, "Wrackspurts": {"_count": 1, "and": {"_count": 1, "Nargles": {"_count": 1}}}, "Nargles": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sketched": {"_count": 1, "quotation": {"_count": 1, "marks": {"_count": 1}}}, "definable": {"_count": 1, "in": {"_count": 1, "Hermiones": {"_count": 1}}}, "\u2018Peverell": {"_count": 1, "is": {"_count": 1, "Natures": {"_count": 1}}}, "earliest": {"_count": 1, "families": {"_count": 1, "to": {"_count": 1}}}, "\u2018Extinct": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "Gaunti": {"_count": 1, "You": {"_count": 1, "Know": {"_count": 1}}}, "Work": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "Fit": {"_count": 1, "everything": {"_count": 1, "in": {"_count": 1}}}, "vistas": {"_count": 1, "of": {"_count": 1, "truth": {"_count": 1}}}, "joyous": {"_count": 1, "as": {"_count": 1, "he": {"_count": 1}}}, "smokegray": {"_count": 1, "and": {"_count": 1, "silver": {"_count": 1}}}, "Limited": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "landscapes": {"_count": 1, "that": {"_count": 1, "Harry": {"_count": 1}}}, "extinguish": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dampening": {"_count": 1, "his": {"_count": 1, "spirits": {"_count": 1}}}, "erode": {"_count": 1, "his": {"_count": 1, "certainty": {"_count": 1}}}, "Obsession": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "sideshow": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "unsatisfying": {"_count": 1, "vague": {"_count": 1, "images": {"_count": 1}}}, "selfabsorption": {"_count": 1, "that": {"_count": 1, "Ron": {"_count": 1}}}, "listlessness": {"_count": 1, "galvanized": {"_count": 1, "his": {"_count": 1}}}, "galvanized": {"_count": 1, "his": {"_count": 1, "dormant": {"_count": 1}}}, "exhorting": {"_count": 1, "the": {"_count": 1, "other": {"_count": 1}}}, "pestering": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "forays": {"_count": 1, "into": {"_count": 1, "Wizarding": {"_count": 1}}}, "Potterwatch": {"_count": 6, "On": {"_count": 1, "what": {"_count": 1}}, "didnt": {"_count": 1, "I": {"_count": 1}}, "": {"_count": 3, ".": {"_count": 3}}, "applaud": {"_count": 1, "Hagrids": {"_count": 1}}}, "tuning": {"_count": 2, "in": {"_count": 1, "": {"_count": 1}}, "panel": {"_count": 1, "went": {"_count": 1}}}, "rhythms": {"_count": 1, "on": {"_count": 1, "top": {"_count": 1}}}, "grape": {"_count": 1, "hyacinths": {"_count": 1, "that": {"_count": 1}}}, "hyacinths": {"_count": 1, "that": {"_count": 1, "had": {"_count": 1}}}, "Roused": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "airwaves": {"_count": 1, "which": {"_count": 1, "was": {"_count": 1}}}, "contributors": {"_count": 1, "have": {"_count": 1, "joined": {"_count": 1}}}, "River": {"_count": 4, "": {"_count": 1, ".": {"_count": 1}}, "said": {"_count": 2, "an": {"_count": 1}, "another": {"_count": 1}}, "I": {"_count": 1, "can": {"_count": 1}}}, "\u2018River": {"_count": 1, "thats": {"_count": 1, "Lee": {"_count": 1}}}, "Royal": {"_count": 4, "and": {"_count": 2, "Romulus": {"_count": 1}, "youve": {"_count": 1}}, "for": {"_count": 1, "an": {"_count": 1}}, "to": {"_count": 1, "those": {"_count": 1}}}, "Romulus": {"_count": 5, "Lee": {"_count": 1, "went": {"_count": 1}}, "for": {"_count": 1, "our": {"_count": 1}}, "do": {"_count": 1, "you": {"_count": 1}}, "": {"_count": 1, "?": {"_count": 1}}, "said": {"_count": 1, "Lee": {"_count": 1}}}, "listeners": {"_count": 7, "of": {"_count": 1, "the": {"_count": 1}}, "that": {"_count": 1, "the": {"_count": 1}}, "to": {"_count": 1, "emulate": {"_count": 1}}, "who": {"_count": 1, "reply": {"_count": 1}}, "will": {"_count": 2, "know": {"_count": 2}}, "": {"_count": 1, ".": {"_count": 1}}}, "Gaddley": {"_count": 1, "a": {"_count": 1, "Muggle": {"_count": 1}}}, "attributing": {"_count": 1, "the": {"_count": 1, "deaths": {"_count": 1}}}, "recreational": {"_count": 1, "sport": {"_count": 1, "under": {"_count": 1}}}, "Listeners": {"_count": 2, "Id": {"_count": 1, "like": {"_count": 1}}, "that": {"_count": 1, "brings": {"_count": 1}}}, "contributor": {"_count": 1, "Royal": {"_count": 1, "for": {"_count": 1}}}, "update": {"_count": 2, "on": {"_count": 2, "how": {"_count": 1}, "those": {"_count": 1}}}, "inspirational": {"_count": 1, "stories": {"_count": 1, "of": {"_count": 1}}}, "emulate": {"_count": 1, "their": {"_count": 1, "example": {"_count": 1}}}, "\u2018Purebloods": {"_count": 1, "first": {"_count": 1, "and": {"_count": 1}}}, "\u2018Death": {"_count": 1, "Eaters": {"_count": 1, "replied": {"_count": 1}}}, "Excellently": {"_count": 1, "put": {"_count": 1, "Royal": {"_count": 1}}}, "\u2018Pals": {"_count": 1, "of": {"_count": 1, "Potter": {"_count": 1}}}, "\u2018Support": {"_count": 2, "Harry": {"_count": 2, "Potter": {"_count": 2}}}, "sixteenfoothigh": {"_count": 1, "half": {"_count": 1, "brother": {"_count": 1}}}, "applaud": {"_count": 1, "Hagrids": {"_count": 1, "spirit": {"_count": 1}}}, "PotterwatcM": {"_count": 1, "And": {"_count": 1, "now": {"_count": 1}}}, "Rodent": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "\u2018Rodent": {"_count": 2, "": {"_count": 1, "?": {"_count": 1}}, "no": {"_count": 1, "way": {"_count": 1}}}, "\u2018Rapier": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "could": {"_count": 1, "you": {"_count": 1}}}, "Agreed": {"_count": 2, "said": {"_count": 2, "Fred": {"_count": 1}, "Professor": {"_count": 1}}}, "lulled": {"_count": 1, "into": {"_count": 1, "a": {"_count": 1}}}, "shampoo": {"_count": 1, "when": {"_count": 1, "he": {"_count": 1}}}, "Rapier": {"_count": 1, "said": {"_count": 1, "Lee": {"_count": 1}}}, "radios": {"_count": 1, "dial": {"_count": 1, "twirled": {"_count": 1}}}, "demorts": {"_count": 1, "after": {"_count": 1, "the": {"_count": 1}}}, "MALFOY": {"_count": 1, "MANOR": {"_count": 1, "Harry": {"_count": 1}}}, "MANOR": {"_count": 1, "Harry": {"_count": 1, "looked": {"_count": 1}}}, "Unknown": {"_count": 1, "hands": {"_count": 1, "dragged": {"_count": 1}}}, "allergic": {"_count": 1, "reaction": {"_count": 1, "": {"_count": 1}}}, "softness": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "savagery": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "of": {"_count": 1, "lions": {"_count": 1}}}, "diaphragm": {"_count": 1, "that": {"_count": 1, "made": {"_count": 1}}}, "Stung": {"_count": 1, "Harry": {"_count": 1, "muttered": {"_count": 1}}}, "Scabior": {"_count": 17, "said": {"_count": 2, "Greyback": {"_count": 1}, "it": {"_count": 1}}, "": {"_count": 9, ".": {"_count": 8}, "?": {"_count": 1}}, "over": {"_count": 1, "the": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "was": {"_count": 1, "saying": {"_count": 1}}, "sounding": {"_count": 1, "awed": {"_count": 1}}, "thrust": {"_count": 1, "the": {"_count": 1}}, "drew": {"_count": 1, "his": {"_count": 1}}}, "Bardy": {"_count": 2, "said": {"_count": 1, "Ron": {"_count": 1}}, "Weadley": {"_count": 1, "": {"_count": 1}}}, "Weadley": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "girly": {"_count": 2, "": {"_count": 2, "?": {"_count": 2}}}, "ogwarts": {"_count": 1, "age": {"_count": 1, "Weh": {"_count": 1}}}, "Weh": {"_count": 1, "lebt": {"_count": 1, "said": {"_count": 1}}}, "lebt": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Nod": {"_count": 1, "a": {"_count": 1, "laugh": {"_count": 1}}}, "Aggiden": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Accident": {"_count": 5, "": {"_count": 1, "?": {"_count": 1}}, "was": {"_count": 1, "it": {"_count": 1}}, "when": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 1, "I": {"_count": 1}}, "and": {"_count": 1, "chance": {"_count": 1}}}, "Mean": {"_count": 1, "anything": {"_count": 1, "to": {"_count": 1}}}, "Doh": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Tabooed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Bind": {"_count": 1, "them": {"_count": 1, "up": {"_count": 1}}}, "backtoback": {"_count": 2, "with": {"_count": 1, "other": {"_count": 1}}, "and": {"_count": 1, "in": {"_count": 1}}}, "truants": {"_count": 2, "to": {"_count": 1, "sell": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "hobnailed": {"_count": 1, "boots": {"_count": 1, "marched": {"_count": 1}}}, "Veery": {"_count": 1, "nice": {"_count": 1, "said": {"_count": 1}}}, "firewood": {"_count": 1, "ang": {"_count": 1, "on": {"_count": 1}}}, "ang": {"_count": 1, "on": {"_count": 1, "a": {"_count": 1}}}, "Propheti": {"_count": 1, "As": {"_count": 1, "Scabior": {"_count": 1}}}, "distended": {"_count": 1, "forehead": {"_count": 1, "burned": {"_count": 1}}}, "euphoric": {"_count": 1, "purpose": {"_count": 1, "": {"_count": 1}}}, "\u2018ermione": {"_count": 1, "Granger": {"_count": 1, "Scabior": {"_count": 1}}}, "exquisitely": {"_count": 1, "painful": {"_count": 1, "but": {"_count": 1}}}, "Fragmented": {"_count": 1, "visions": {"_count": 1, "were": {"_count": 1}}}, "inadequacy": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "gutless": {"_count": 1, "to": {"_count": 1, "come": {"_count": 1}}}, "celllike": {"_count": 1, "room": {"_count": 1, "The": {"_count": 1}}}, "acclimatize": {"_count": 1, "then": {"_count": 1, "he": {"_count": 1}}}, "fortresslike": {"_count": 1, "place": {"_count": 1, "at": {"_count": 1}}}, "abstract": {"_count": 1, "furls": {"_count": 1, "and": {"_count": 1}}}, "furls": {"_count": 1, "and": {"_count": 1, "coils": {"_count": 1}}}, "State": {"_count": 1, "your": {"_count": 1, "purpose": {"_count": 1}}}, "albino": {"_count": 1, "peacock": {"_count": 1, "": {"_count": 1}}}, "shuffle": {"_count": 2, "around": {"_count": 1, "too": {"_count": 1}}, "across": {"_count": 1, "to": {"_count": 1}}}, "obliquely": {"_count": 1, "a": {"_count": 1, "figure": {"_count": 1}}}, "intricately": {"_count": 1, "scrolled": {"_count": 1, "frame": {"_count": 1}}}, "scrolled": {"_count": 1, "frame": {"_count": 1, "": {"_count": 1}}}, "forgiv": {"_count": 1, "Now": {"_count": 1, "we": {"_count": 1}}}, "languid": {"_count": 1, "pale": {"_count": 1, "face": {"_count": 1}}}, "Prophett": {"_count": 1, "Look": {"_count": 1, "Draco": {"_count": 1}}}, "brotherinlaw": {"_count": 1, "her": {"_count": 1, "free": {"_count": 1}}}, "scavenger": {"_count": 1, "what": {"_count": 1, "do": {"_count": 1}}}, "capitulation": {"_count": 1, "Lucius": {"_count": 1, "threw": {"_count": 1}}}, "Snatcher": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}}, "yorn": {"_count": 1, "missus": {"_count": 1, "its": {"_count": 1}}}, "missus": {"_count": 1, "its": {"_count": 1, "mine": {"_count": 1}}}, "waxen": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "unresisting": {"_count": 1, "grip": {"_count": 1, "": {"_count": 1}}}, "projecting": {"_count": 1, "an": {"_count": 1, "invisible": {"_count": 1}}}, "fibers": {"_count": 1, "to": {"_count": 1, "work": {"_count": 1}}}, "luminescent": {"_count": 1, "spheres": {"_count": 1, "the": {"_count": 1}}}, "ANSWER": {"_count": 2, "ME": {"_count": 2, "": {"_count": 2}}}, "CRUCIO": {"_count": 1, "Hermione": {"_count": 1, "s": {"_count": 1}}}, "Manor": {"_count": 4, "help": {"_count": 1, "us": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}, "lay": {"_count": 1, "curled": {"_count": 1}}, "were": {"_count": 1, "confined": {"_count": 1}}}, "cellars": {"_count": 1, "darkness": {"_count": 1, "": {"_count": 1}}}, "DOB": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "wandmakers": {"_count": 2, "hands": {"_count": 1, "in": {"_count": 1}}, "have": {"_count": 1, "made": {"_count": 1}}}, "beseeched": {"_count": 1, "Luna": {"_count": 1, "and": {"_count": 1}}}, "ratlike": {"_count": 1, "mans": {"_count": 1, "small": {"_count": 1}}}, "Cautiously": {"_count": 1, "they": {"_count": 1, "crept": {"_count": 1}}}, "toothlessly": {"_count": 1, "at": {"_count": 1, "him": {"_count": 1}}}, "controllable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "NOOOOOOOOOOOO": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "DIES": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "begrudge": {"_count": 1, "you": {"_count": 1, "the": {"_count": 1}}}, "Hoisting": {"_count": 1, "the": {"_count": 1, "groaning": {"_count": 1}}}, "DOBBY": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "A": {"_count": 1, "FREE": {"_count": 1}}}, "HELP": {"_count": 2, "": {"_count": 2, "!": {"_count": 2}}}, "supplication": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "sprinkled": {"_count": 1, "with": {"_count": 1, "light": {"_count": 1}}}, "WANDMAKER": {"_count": 1, "It": {"_count": 1, "was": {"_count": 1}}}, "diminish": {"_count": 1, "it": {"_count": 1, "so": {"_count": 1}}}, "ocean": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "and": {"_count": 1, "felt": {"_count": 1}}}, "glorying": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "blister": {"_count": 1, "felt": {"_count": 1, "like": {"_count": 1}}}, "mourned": {"_count": 1, "Dobby": {"_count": 1, "": {"_count": 1}}}, "subsuming": {"_count": 1, "his": {"_count": 1, "grief": {"_count": 1}}}, "snugly": {"_count": 1, "in": {"_count": 1, "his": {"_count": 1}}}, "stateliness": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "pats": {"_count": 1, "upon": {"_count": 1, "his": {"_count": 1}}}, "pillowlike": {"_count": 1, "over": {"_count": 1, "the": {"_count": 1}}}, "FREE": {"_count": 1, "ELF": {"_count": 1, "": {"_count": 1}}}, "lightcolored": {"_count": 1, "pretty": {"_count": 1, "with": {"_count": 1}}}, "driftwood": {"_count": 2, "burning": {"_count": 1, "brightly": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Moved": {"_count": 1, "them": {"_count": 1, "to": {"_count": 1}}}, "Griphooks": {"_count": 7, "legs": {"_count": 1, "are": {"_count": 1}}, "rising": {"_count": 1, "color": {"_count": 1}}, "preference": {"_count": 1, "in": {"_count": 1}}, "handdrawn": {"_count": 1, "map": {"_count": 1}}, "face": {"_count": 1, "when": {"_count": 1}}, "clasped": {"_count": 1, "hands": {"_count": 1}}, "fingers": {"_count": 1, "and": {"_count": 1}}}, "hells": {"_count": 1, "going": {"_count": 1, "on": {"_count": 1}}}, "Painful": {"_count": 1, "replied": {"_count": 1, "the": {"_count": 1}}}, "truculent": {"_count": 1, "half": {"_count": 1, "intrigued": {"_count": 1}}}, "rancorous": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "minimal": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "slantwise": {"_count": 1, "at": {"_count": 1, "Harry": {"_count": 1}}}, "carriers": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Wandcarriers": {"_count": 1, "repeated": {"_count": 1, "Harry": {"_count": 1}}}, "northward": {"_count": 1, "and": {"_count": 1, "as": {"_count": 1}}}, "immaterial": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "wandcarriers": {"_count": 1, "protests": {"_count": 1, "": {"_count": 1}}}, "hunted": {"_count": 2, "quite": {"_count": 1, "as": {"_count": 1}}, "students": {"_count": 1, "the": {"_count": 1}}}, "acknowledgement": {"_count": 1, "then": {"_count": 1, "flexed": {"_count": 1}}}, "stilldark": {"_count": 1, "landing": {"_count": 1, "are": {"_count": 1}}}, "envied": {"_count": 2, "anyone": {"_count": 1, "who": {"_count": 1}}, "even": {"_count": 1, "his": {"_count": 1}}}, "Feigning": {"_count": 1, "a": {"_count": 1, "calm": {"_count": 1}}}, "Holly": {"_count": 1, "and": {"_count": 1, "phoenix": {"_count": 1}}}, "knobbleknuckled": {"_count": 1, "fingers": {"_count": 1, "flexing": {"_count": 1}}}, "Walnut": {"_count": 1, "and": {"_count": 1, "dragon": {"_count": 1}}}, "andthreequarter": {"_count": 1, "inches": {"_count": 1, "": {"_count": 1}}}, "Unyielding": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Hawthorn": {"_count": 1, "and": {"_count": 1, "unicorn": {"_count": 1}}}, "Reasonably": {"_count": 1, "springy": {"_count": 1, "": {"_count": 1}}}, "Subtle": {"_count": 1, "laws": {"_count": 1, "govern": {"_count": 1}}}, "govern": {"_count": 1, "wand": {"_count": 1, "ownership": {"_count": 1}}}, "Chestnut": {"_count": 1, "and": {"_count": 1, "dragon": {"_count": 1}}}, "Nineanda": {"_count": 1, "quarter": {"_count": 1, "inches": {"_count": 1}}}, "Brittle": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "kidnapping": {"_count": 2, "for": {"_count": 1, "Peter": {"_count": 1}}, "kids": {"_count": 1, "to": {"_count": 1}}}, "Wandlore": {"_count": 1, "is": {"_count": 1, "a": {"_count": 1}}}, "Legends": {"_count": 1, "about": {"_count": 1, "a": {"_count": 1}}}, "appealingly": {"_count": 1, "at": {"_count": 1, "Ron": {"_count": 1}}}, "recreate": {"_count": 2, "the": {"_count": 2, "spells": {"_count": 1}, "lost": {"_count": 1}}}, "invulnerable": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "enthrall": {"_count": 1, "him": {"_count": 1, "as": {"_count": 1}}}, "resurfaces": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "authenticity": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "arouses": {"_count": 1, "such": {"_count": 1, "passions": {"_count": 1}}}, "passions": {"_count": 1, "in": {"_count": 1, "wizards": {"_count": 1}}}, "duplicating": {"_count": 1, "the": {"_count": 1, "qualities": {"_count": 1}}}, "predawn": {"_count": 1, "coming": {"_count": 1, "closer": {"_count": 1}}}, "clifftop": {"_count": 2, "garden": {"_count": 1, "": {"_count": 1}}, "view": {"_count": 1, "of": {"_count": 1}}}, "kingdom": {"_count": 1, "his": {"_count": 1, "birthright": {"_count": 1}}}, "birthright": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "heady": {"_count": 2, "sense": {"_count": 1, "of": {"_count": 1}}, "control": {"_count": 1, "that": {"_count": 1}}}, "violate": {"_count": 1, "his": {"_count": 1, "tomb": {"_count": 1}}}, "spiderlike": {"_count": 1, "hand": {"_count": 1, "swooped": {"_count": 1}}}, "SHELL": {"_count": 1, "COTTAGE": {"_count": 1, "Bill": {"_count": 1}}}, "COTTAGE": {"_count": 1, "Bill": {"_count": 1, "and": {"_count": 1}}}, "shells": {"_count": 1, "and": {"_count": 1, "whitewashed": {"_count": 1}}}, "whitewashed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "enormity": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "\u2018worthy": {"_count": 1, "to": {"_count": 1, "get": {"_count": 1}}}, "reconstruct": {"_count": 1, "the": {"_count": 1, "internal": {"_count": 1}}}, "repellent": {"_count": 1, "not": {"_count": 1, "to": {"_count": 1}}}, "Gripook": {"_count": 1, "would": {"_count": 1, "like": {"_count": 1}}}, "overeard": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ragnuk": {"_count": 1, "the": {"_count": 1, "Firsts": {"_count": 1}}}, "Firsts": {"_count": 1, "taken": {"_count": 1, "from": {"_count": 1}}}, "goblinwork": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "skates": {"_count": 1, "over": {"_count": 1, "what": {"_count": 1}}}, "bunnies": {"_count": 1, "though": {"_count": 1, "are": {"_count": 1}}}, "underhanded": {"_count": 1, "and": {"_count": 1, "violent": {"_count": 1}}}, "scarper": {"_count": 1, "before": {"_count": 1, "he": {"_count": 1}}}, "doublecross": {"_count": 2, "him": {"_count": 1, "": {"_count": 1}}, "that": {"_count": 1, "Harry": {"_count": 1}}}, "indispensable": {"_count": 2, "weapon": {"_count": 1, "against": {"_count": 1}}, "part": {"_count": 1, "of": {"_count": 1}}}, "purebloodloving": {"_count": 1, "Slytherin": {"_count": 1, "": {"_count": 1}}}, "historys": {"_count": 1, "right": {"_count": 1, "": {"_count": 1}}}, "Changes": {"_count": 1, "how": {"_count": 1, "I": {"_count": 1}}}, "handover": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "cupboardlike": {"_count": 1, "room": {"_count": 1, "for": {"_count": 1}}}, "depleted": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bloodthirsty": {"_count": 1, "laughed": {"_count": 1, "at": {"_count": 1}}}, "stillfrail": {"_count": 1, "Ollivander": {"_count": 1, "until": {"_count": 1}}}, "Zat": {"_count": 1, "will": {"_count": 1, "make": {"_count": 1}}}, "zings": {"_count": 1, "easier": {"_count": 1, "": {"_count": 1}}}, "hippos": {"_count": 1, "Daddy": {"_count": 1, "says": {"_count": 1}}}, "waltz": {"_count": 1, "nothing": {"_count": 1, "too": {"_count": 1}}}, "jugs": {"_count": 1, "of": {"_count": 1, "pumpkin": {"_count": 1}}}, "relaid": {"_count": 1, "the": {"_count": 1, "fire": {"_count": 1}}}, "au": {"_count": 1, "revoir": {"_count": 1, "Mr": {"_count": 1}}}, "whezzer": {"_count": 1, "you": {"_count": 1, "could": {"_count": 1}}}, "Moonstones": {"_count": 1, "and": {"_count": 1, "diamonds": {"_count": 1}}}, "gusted": {"_count": 1, "against": {"_count": 1, "the": {"_count": 1}}}, "Everythings": {"_count": 1, "fine": {"_count": 1, "he": {"_count": 1}}}, "OwlOrder": {"_count": 1, "business": {"_count": 1, "out": {"_count": 1}}}, "charmante": {"_count": 1, "your": {"_count": 1, "aunt": {"_count": 1}}}, "diadem": {"_count": 41, "of": {"_count": 5, "Ravenclaw": {"_count": 5}}, "": {"_count": 11, ".": {"_count": 6}, "?": {"_count": 4}, "!": {"_count": 1}}, "said": {"_count": 1, "Michael": {"_count": 1}}, "vanished": {"_count": 1, "with": {"_count": 1}}, "looks": {"_count": 2, "like": {"_count": 2}}, "if": {"_count": 1, "I": {"_count": 1}}, "that": {"_count": 2, "had": {"_count": 1}, "suggested": {"_count": 1}}, "in": {"_count": 2, "living": {"_count": 1}, "the": {"_count": 1}}, "she": {"_count": 1, "said": {"_count": 1}}, "Your": {"_count": 1, "mothers": {"_count": 1}}, "bestows": {"_count": 1, "wisdom": {"_count": 1}}, "from": {"_count": 3, "my": {"_count": 1}, "its": {"_count": 1}, "his": {"_count": 1}}, "repeated": {"_count": 1, "Helena": {"_count": 1}}, "was": {"_count": 1, "gone": {"_count": 1}}, "out": {"_count": 1, "of": {"_count": 1}}, "once": {"_count": 1, "it": {"_count": 1}}, "had": {"_count": 1, "been": {"_count": 1}}, "on": {"_count": 1, "his": {"_count": 1}}, "upon": {"_count": 1, "her": {"_count": 1}}, "thing": {"_count": 1, "": {"_count": 1}}, "soared": {"_count": 1, "upward": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "Adding": {"_count": 1, "the": {"_count": 1, "billywig": {"_count": 1}}}, "Mme": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Teddy": {"_count": 9, "Remus": {"_count": 1, "Lupin": {"_count": 1}}, "Lupin": {"_count": 2, "as": {"_count": 1}, "Snogging": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 1}, "!": {"_count": 1}}, "at": {"_count": 1, "your": {"_count": 1}}, "what": {"_count": 1, "he": {"_count": 1}}, "would": {"_count": 1, "really": {"_count": 1}}, "could": {"_count": 1, "have": {"_count": 1}}}, "Oo": {"_count": 1, "does": {"_count": 1, "e": {"_count": 1}}}, "siege": {"_count": 2, "Tidings": {"_count": 1, "of": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "Tidings": {"_count": 1, "of": {"_count": 1, "new": {"_count": 1}}}, "declining": {"_count": 1, "yet": {"_count": 1, "another": {"_count": 1}}}, "stillvoluble": {"_count": 1, "voices": {"_count": 1, "of": {"_count": 1}}}, "notions": {"_count": 1, "of": {"_count": 1, "ownership": {"_count": 1}}}, "Dealings": {"_count": 1, "between": {"_count": 1, "wizards": {"_count": 1}}}, "purchaser": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "died": {"_count": 1, "": {"_count": 1}}}, "rented": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "disapproves": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "fiercest": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "renege": {"_count": 1, "on": {"_count": 1, "a": {"_count": 1}}}, "coarse": {"_count": 1, "black": {"_count": 1, "hair": {"_count": 1}}}, "antagonize": {"_count": 1, "her": {"_count": 1, "": {"_count": 1}}}, "capabilities": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "hawthorn": {"_count": 4, "wand": {"_count": 4, "that": {"_count": 1}, "beneath": {"_count": 1}, "": {"_count": 1}, "and": {"_count": 1}}}, "expedient": {"_count": 1, "of": {"_count": 1, "stuffing": {"_count": 1}}}, "confinement": {"_count": 1, "of": {"_count": 1, "Shell": {"_count": 1}}}, "skulduggery": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Griphookfree": {"_count": 1, "moments": {"_count": 1, "had": {"_count": 1}}}, "jolts": {"_count": 1, "of": {"_count": 1, "anxiety": {"_count": 1}}}, "wellprepared": {"_count": 1, "for": {"_count": 1, "all": {"_count": 1}}}, "shoots": {"_count": 1, "were": {"_count": 1, "forcing": {"_count": 1}}}, "aspects": {"_count": 1, "of": {"_count": 1, "Rons": {"_count": 1}}}, "subserviently": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "piggyback": {"_count": 1, "under": {"_count": 1, "the": {"_count": 1}}}, "establishments": {"_count": 1, "dedicated": {"_count": 1, "to": {"_count": 1}}}, "bloodied": {"_count": 1, "bandage": {"_count": 1, "came": {"_count": 1}}}, "prosperouslooking": {"_count": 1, "passersby": {"_count": 1, "gathered": {"_count": 1}}}, "trots": {"_count": 1, "keen": {"_count": 1, "to": {"_count": 1}}}, "vacate": {"_count": 1, "the": {"_count": 1, "scene": {"_count": 1}}}, "forgives": {"_count": 1, "those": {"_count": 1, "who": {"_count": 1}}}, "youV": {"_count": 1, "he": {"_count": 1, "said": {"_count": 1}}}, "misinformed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Despard": {"_count": 1, "said": {"_count": 1, "Hermione": {"_count": 1}}}, "fictional": {"_count": 1, "foreigner": {"_count": 1, "was": {"_count": 1}}}, "foreigner": {"_count": 1, "was": {"_count": 1, "the": {"_count": 1}}}, "dirtying": {"_count": 1, "himself": {"_count": 1, "": {"_count": 1}}}, "liveried": {"_count": 1, "goblins": {"_count": 1, "who": {"_count": 1}}}, "Probes": {"_count": 2, "sighed": {"_count": 1, "Travers": {"_count": 1}}, "Harry": {"_count": 1, "knew": {"_count": 1}}}, "theatrically": {"_count": 1, "so": {"_count": 1, "crude": {"_count": 1}}}, "Confundo": {"_count": 1, "twice": {"_count": 1, "": {"_count": 1}}}, "Marius": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "knifesharp": {"_count": 1, "memory": {"_count": 1, "came": {"_count": 1}}}, "repository": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "manned": {"_count": 1, "by": {"_count": 1, "goblins": {"_count": 1}}}, "eyeglass": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Leprechaun": {"_count": 1, "and": {"_count": 1, "then": {"_count": 1}}}, "Identification": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Cursel": {"_count": 1, "Harry": {"_count": 1, "raised": {"_count": 1}}}, "Imperiol": {"_count": 3, "A": {"_count": 1, "curious": {"_count": 1}}, "once": {"_count": 1, "more": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}}, "sinews": {"_count": 1, "and": {"_count": 1, "veins": {"_count": 1}}}, "Clankers": {"_count": 5, "he": {"_count": 1, "told": {"_count": 1}}, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "come": {"_count": 1, "": {"_count": 1}}, "and": {"_count": 1, "the": {"_count": 1}}}, "Bogrod": {"_count": 14, "": {"_count": 2, "!": {"_count": 1}, ".": {"_count": 1}}, "showed": {"_count": 1, "the": {"_count": 1}}, "who": {"_count": 2, "were": {"_count": 1}, "whistled": {"_count": 1}}, "to": {"_count": 1, "control": {"_count": 1}}, "in": {"_count": 1, "front": {"_count": 1}}, "shaking": {"_count": 1, "his": {"_count": 1}}, "submitted": {"_count": 1, "once": {"_count": 1}}, "panting": {"_count": 1, "in": {"_count": 1}}, "accepted": {"_count": 1, "his": {"_count": 1}}, "must": {"_count": 1, "place": {"_count": 1}}, "will": {"_count": 1, "be": {"_count": 1}}, "from": {"_count": 1, "slipping": {"_count": 1}}}, "Bogrods": {"_count": 1, "ear": {"_count": 1, "but": {"_count": 1}}}, "clients": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "waterfall": {"_count": 2, "pounding": {"_count": 1, "over": {"_count": 1}}, "and": {"_count": 1, "cried": {"_count": 1}}}, "braking": {"_count": 1, "They": {"_count": 1, "zoomed": {"_count": 1}}}, "painlessly": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "CCushioning": {"_count": 1, "Charm": {"_count": 1, "Hermione": {"_count": 1}}}, "Thiefs": {"_count": 2, "Downfall": {"_count": 2, "": {"_count": 1}, "seemed": {"_count": 1}}}, "Downfall": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "seemed": {"_count": 1, "to": {"_count": 1}}}, "deluge": {"_count": 1, "onto": {"_count": 1, "the": {"_count": 1}}}, "washes": {"_count": 1, "away": {"_count": 1, "all": {"_count": 1}}}, "impostors": {"_count": 3, "in": {"_count": 1, "Gringotts": {"_count": 1}}, "": {"_count": 2, "?": {"_count": 2}}}, "flaky": {"_count": 1, "during": {"_count": 1, "its": {"_count": 1}}}, "incarceration": {"_count": 1, "under": {"_count": 1, "the": {"_count": 1}}}, "milkily": {"_count": 1, "pink": {"_count": 1, "both": {"_count": 1}}}, "hammers": {"_count": 1, "on": {"_count": 1, "anvils": {"_count": 1}}}, "anvils": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "grossly": {"_count": 1, "magnified": {"_count": 1, "so": {"_count": 1}}}, "cavelike": {"_count": 1, "opening": {"_count": 1, "crammed": {"_count": 1}}}, "Gemino": {"_count": 1, "and": {"_count": 1, "Flagrante": {"_count": 1}}}, "Flagrante": {"_count": 1, "Curses": {"_count": 1, "": {"_count": 1}}}, "threeway": {"_count": 1, "spotlight": {"_count": 1, "the": {"_count": 1}}}, "Hoisted": {"_count": 1, "into": {"_count": 1, "the": {"_count": 1}}}, "replicate": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "waistdeep": {"_count": 1, "in": {"_count": 1, "treasure": {"_count": 1}}}, "skewered": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "replicating": {"_count": 1, "treasure": {"_count": 1, "Harry": {"_count": 1}}}, "Sliding": {"_count": 1, "from": {"_count": 1, "Harrys": {"_count": 1}}}, "Thieves": {"_count": 3, "": {"_count": 3, "!": {"_count": 3}}}, "chaining": {"_count": 1, "the": {"_count": 1, "beast": {"_count": 1}}}, "untethered": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "skittles": {"_count": 1, "and": {"_count": 1, "it": {"_count": 1}}}, "Deafened": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "Defodiol": {"_count": 1, "She": {"_count": 1, "was": {"_count": 1}}}, "fresher": {"_count": 2, "air": {"_count": 2, "away": {"_count": 1}, "It": {"_count": 1}}}, "HIDING": {"_count": 1, "PLACE": {"_count": 1, "There": {"_count": 1}}}, "grayandgreen": {"_count": 1, "map": {"_count": 1, "Harrys": {"_count": 1}}}, "dismount": {"_count": 1, "remained": {"_count": 1, "rather": {"_count": 1}}}, "capital": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "parceled": {"_count": 1, "out": {"_count": 1, "in": {"_count": 1}}}, "matte": {"_count": 1, "and": {"_count": 1, "glossy": {"_count": 1}}}, "cities": {"_count": 1, "and": {"_count": 1, "towns": {"_count": 1}}}, "divined": {"_count": 1, "the": {"_count": 1, "presence": {"_count": 1}}}, "honing": {"_count": 1, "in": {"_count": 1, "it": {"_count": 1}}}, "feetfirst": {"_count": 1, "toward": {"_count": 1, "the": {"_count": 1}}}, "reedfilled": {"_count": 1, "world": {"_count": 1, "": {"_count": 1}}}, "reeds": {"_count": 1, "and": {"_count": 1, "mud": {"_count": 1}}}, "doublecrossing": {"_count": 1, "little": {"_count": 1, "scab": {"_count": 1}}}, "scab": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Glinting": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "semicircle": {"_count": 1, "of": {"_count": 1, "wizards": {"_count": 1}}}, "Mmy": {"_count": 1, "Lord": {"_count": 1, "stammered": {"_count": 1}}}, "ttried": {"_count": 1, "tto": {"_count": 1, "ststop": {"_count": 1}}}, "tto": {"_count": 1, "ststop": {"_count": 1, "them": {"_count": 1}}}, "ststop": {"_count": 1, "them": {"_count": 1, "": {"_count": 1}}}, "Imimpostors": {"_count": 1, "my": {"_count": 1, "Lord": {"_count": 1}}}, "vvault": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Impostors": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "ttwo": {"_count": 1, "accomplices": {"_count": 1, "": {"_count": 1}}}, "ssmall": {"_count": 1, "golden": {"_count": 1, "ccup": {"_count": 1}}}, "ccup": {"_count": 1, "mmy": {"_count": 1, "Lord": {"_count": 1}}}, "safeguards": {"_count": 1, "his": {"_count": 1, "anchors": {"_count": 1}}}, "anchors": {"_count": 1, "to": {"_count": 1, "immortality": {"_count": 1}}}, "ignominy": {"_count": 1, "of": {"_count": 1, "death": {"_count": 1}}}, "modicum": {"_count": 1, "of": {"_count": 1, "calm": {"_count": 1}}}, "cooled": {"_count": 1, "his": {"_count": 1, "rage": {"_count": 1}}}, "plumbed": {"_count": 1, "the": {"_count": 1, "deepest": {"_count": 1}}}, "undertake": {"_count": 1, "alone": {"_count": 1, "": {"_count": 1}}}, "MISSING": {"_count": 1, "MIRROR": {"_count": 1, "Harrys": {"_count": 1}}}, "achingly": {"_count": 1, "familiar": {"_count": 1, "Hogsmeade": {"_count": 1}}}, "accuracy": {"_count": 1, "how": {"_count": 1, "he": {"_count": 1}}}, "Kissed": {"_count": 1, "first": {"_count": 1, "": {"_count": 1}}}, "environment": {"_count": 1, "right": {"_count": 1, "up": {"_count": 1}}}, "pitchblackness": {"_count": 1, "he": {"_count": 1, "felt": {"_count": 1}}}, "tasting": {"_count": 1, "despair": {"_count": 1, "on": {"_count": 1}}}, "sawdust": {"_count": 1, "strewn": {"_count": 1, "bar": {"_count": 1}}}, "Shouts": {"_count": 1, "reached": {"_count": 1, "them": {"_count": 1}}}, "savior": {"_count": 3, "whom": {"_count": 1, "Harry": {"_count": 1}}, "and": {"_count": 2, "Ron": {"_count": 1}, "their": {"_count": 1}}}, "Stag": {"_count": 3, "": {"_count": 3, "!": {"_count": 2}, "?": {"_count": 1}}}, "Curfews": {"_count": 1, "been": {"_count": 1, "broken": {"_count": 1}}}, "Caterwauling": {"_count": 3, "Charm": {"_count": 2, "": {"_count": 1}, "on": {"_count": 1}}, "Charms": {"_count": 1, "set": {"_count": 1}}}, "traffick": {"_count": 1, "potions": {"_count": 1, "and": {"_count": 1}}}, "wobblelegged": {"_count": 1, "chair": {"_count": 1, "": {"_count": 1}}}, "rebolting": {"_count": 1, "the": {"_count": 1, "door": {"_count": 1}}}, "wiregray": {"_count": 1, "hair": {"_count": 1, "and": {"_count": 1}}}, "prods": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "Ravenous": {"_count": 1, "they": {"_count": 1, "ate": {"_count": 1}}}, "dozily": {"_count": 1, "in": {"_count": 1, "their": {"_count": 1}}}, "sluggish": {"_count": 1, "with": {"_count": 1, "exhaustion": {"_count": 1}}}, "surfeit": {"_count": 1, "of": {"_count": 1, "food": {"_count": 1}}}, "Pleasant": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "overstretching": {"_count": 1, "themselves": {"_count": 1, "": {"_count": 1}}}, "Iits": {"_count": 1, "not": {"_count": 1, "easy": {"_count": 1}}}, "\u2018Got": {"_count": 2, "to": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}}, "\u2018got": {"_count": 2, "to": {"_count": 1, "": {"_count": 1}}, "Potter": {"_count": 1, "": {"_count": 1}}}, "differents": {"_count": 2, "kidding": {"_count": 2, "themselves": {"_count": 2}}}, "orifice": {"_count": 1, "he": {"_count": 1, "did": {"_count": 1}}}, "uncertainties": {"_count": 1, "about": {"_count": 1, "Dumbledore": {"_count": 1}}}, "strikingly": {"_count": 1, "like": {"_count": 1, "his": {"_count": 1}}}, "scrutiny": {"_count": 1, "and": {"_count": 1, "Harry": {"_count": 1}}}, "bastards": {"_count": 1, "that": {"_count": 1, "did": {"_count": 1}}}, "Aberforths": {"_count": 3, "wrinkles": {"_count": 1, "and": {"_count": 1}}, "face": {"_count": 1, "": {"_count": 1}}, "getting": {"_count": 1, "a": {"_count": 1}}}, "wrinkles": {"_count": 1, "and": {"_count": 1, "tangled": {"_count": 1}}}, "rages": {"_count": 2, "and": {"_count": 2, "when": {"_count": 1}, "my": {"_count": 1}}}, "repulsion": {"_count": 1, "he": {"_count": 1, "did": {"_count": 1}}}, "comedown": {"_count": 1, "for": {"_count": 1, "Mr": {"_count": 1}}}, "occluded": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "scarpered": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Free": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "dispensable": {"_count": 1, "just": {"_count": 1, "like": {"_count": 1}}}, "Tou": {"_count": 1, "Know": {"_count": 1, "Whos": {"_count": 1}}}, "jeer": {"_count": 1, "or": {"_count": 1, "to": {"_count": 1}}}, "patrols": {"_count": 1, "inside": {"_count": 1, "the": {"_count": 1}}}, "deputies": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Larger": {"_count": 1, "and": {"_count": 1, "larger": {"_count": 1}}}, "HarryY": {"_count": 1, "THE": {"_count": 1, "LOST": {"_count": 1}}}, "DIADEM": {"_count": 1, "Neville": {"_count": 1, "what": {"_count": 1}}}, "unkemptness": {"_count": 1, "suggested": {"_count": 1, "that": {"_count": 1}}}, "Ab": {"_count": 1, "there": {"_count": 1, "might": {"_count": 1}}}, "fanlike": {"_count": 1, "across": {"_count": 1, "the": {"_count": 1}}}, "exaggerate": {"_count": 1, "Ron": {"_count": 1, "But": {"_count": 1}}}, "Amycuss": {"_count": 1, "sister": {"_count": 1, "teaches": {"_count": 1}}}, "sharpener": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "mouthy": {"_count": 1, "but": {"_count": 1, "they": {"_count": 1}}}, "Quihhler": {"_count": 1, "so": {"_count": 1, "they": {"_count": 1}}}, "Recruiting": {"_count": 1, "stuff": {"_count": 1, "like": {"_count": 1}}}, "stunts": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Multicolored": {"_count": 1, "hammocks": {"_count": 1, "were": {"_count": 1}}}, "hammocks": {"_count": 2, "were": {"_count": 1, "strung": {"_count": 1}}, "every": {"_count": 1, "time": {"_count": 1}}}, "cased": {"_count": 1, "wireless": {"_count": 1, "": {"_count": 1}}}, "Surpassed": {"_count": 1, "itself": {"_count": 1, "hasnt": {"_count": 1}}}, "hammock": {"_count": 1, "and": {"_count": 1, "just": {"_count": 1}}}, "loopholes": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "foods": {"_count": 1, "one": {"_count": 1, "of": {"_count": 1}}}, "Thereve": {"_count": 1, "been": {"_count": 1, "so": {"_count": 1}}}, "disinterred": {"_count": 1, "golden": {"_count": 1, "box": {"_count": 1}}}, "succumbing": {"_count": 1, "again": {"_count": 1, "to": {"_count": 1}}}, "revolution": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "formulate": {"_count": 1, "a": {"_count": 1, "new": {"_count": 1}}}, "diadems": {"_count": 2, "supposed": {"_count": 1, "to": {"_count": 1}}, "at": {"_count": 1, "Hogwarts": {"_count": 1}}}, "poltergeists": {"_count": 1, "approach": {"_count": 1, "": {"_count": 1}}}, "airier": {"_count": 1, "than": {"_count": 1, "any": {"_count": 1}}}, "blueandbronze": {"_count": 1, "silks": {"_count": 1, "By": {"_count": 1}}}, "silks": {"_count": 1, "By": {"_count": 1, "day": {"_count": 1}}}, "circlet": {"_count": 1, "had": {"_count": 1, "been": {"_count": 1}}}, "reproduced": {"_count": 1, "in": {"_count": 1, "marble": {"_count": 1}}}, "skint": {"_count": 1, "witless": {"_count": 1, "said": {"_count": 1}}}, "witless": {"_count": 1, "said": {"_count": 1, "a": {"_count": 1}}}, "slopingshouldered": {"_count": 1, "figure": {"_count": 1, "of": {"_count": 1}}}, "SACKING": {"_count": 1, "OF": {"_count": 1, "SEVERUS": {"_count": 1}}}, "nightclothes": {"_count": 3, "flooded": {"_count": 1, "into": {"_count": 1}}, "but": {"_count": 1, "was": {"_count": 1}}, "with": {"_count": 1, "the": {"_count": 1}}}, "ALECTO": {"_count": 1, "If": {"_count": 1, "he": {"_count": 1}}}, "Amyous": {"_count": 1, "bellowed": {"_count": 1, "shaking": {"_count": 1}}}, "besom": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Garn": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "genteel": {"_count": 1, "tap": {"_count": 1, "of": {"_count": 1}}}, "nonbeing": {"_count": 1, "which": {"_count": 1, "is": {"_count": 1}}}, "phrased": {"_count": 1, "replied": {"_count": 1, "the": {"_count": 1}}}, "Hunched": {"_count": 2, "like": {"_count": 1, "his": {"_count": 1}}, "in": {"_count": 1, "a": {"_count": 1}}}, "whelps": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Cruciate": {"_count": 1, "the": {"_count": 1, "lot": {"_count": 1}}}, "gorn": {"_count": 2, "and": {"_count": 2, "killed": {"_count": 1}, "sent": {"_count": 1}}}, "bludgering": {"_count": 1, "well": {"_count": 1, "wont": {"_count": 1}}}, "crafty": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "ineptitudes": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "offensively": {"_count": 1, "close": {"_count": 1, "to": {"_count": 1}}}, "lavatory": {"_count": 1, "seat": {"_count": 1, "": {"_count": 1}}}, "insensible": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "outlaw": {"_count": 1, "seemed": {"_count": 1, "to": {"_count": 1}}}, "ddiadem": {"_count": 1, "of": {"_count": 1, "Ravenclaw": {"_count": 1}}}, "blueandgold": {"_count": 1, "ceiling": {"_count": 1, "like": {"_count": 1}}}, "crumple": {"_count": 1, "unconscious": {"_count": 1, "but": {"_count": 1}}}, "swiftness": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "clangs": {"_count": 1, "the": {"_count": 1, "daggers": {"_count": 1}}}, "Snapeshaped": {"_count": 1, "hole": {"_count": 1, "in": {"_count": 1}}}, "Inferifilled": {"_count": 1, "lake": {"_count": 1, "sliding": {"_count": 1}}}, "indefinitely": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "evacuated": {"_count": 1, "though": {"_count": 1, "if": {"_count": 1}}}, "Horribilis": {"_count": 1, "the": {"_count": 1, "diadem": {"_count": 1}}}, "todo": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Piertotum": {"_count": 2, "oh": {"_count": 1, "for": {"_count": 1}}, "Locomotori": {"_count": 1, "cried": {"_count": 1}}}, "blithering": {"_count": 1, "idiot": {"_count": 1, "": {"_count": 1}}}, "PPeeves": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Peevesl": {"_count": 1, "Havent": {"_count": 1, "you": {"_count": 1}}}, "Locomotori": {"_count": 1, "cried": {"_count": 1, "Professor": {"_count": 1}}}, "plinths": {"_count": 1, "and": {"_count": 1, "from": {"_count": 1}}}, "Clattering": {"_count": 1, "and": {"_count": 1, "yelling": {"_count": 1}}}, "barricading": {"_count": 1, "the": {"_count": 1, "school": {"_count": 1}}}, "snowballed": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "evacuating": {"_count": 3, "the": {"_count": 1, "younger": {"_count": 1}}, "students": {"_count": 1, "": {"_count": 1}}, "Harry": {"_count": 1, "said": {"_count": 1}}}, "solidifying": {"_count": 1, "like": {"_count": 1, "ice": {"_count": 1}}}, "Ministryloving": {"_count": 1, "familydisowning": {"_count": 1, "powerhungry": {"_count": 1}}}, "familydisowning": {"_count": 1, "powerhungry": {"_count": 1, "moron": {"_count": 1}}}, "sisterinlaw": {"_count": 1, "now": {"_count": 1, "": {"_count": 1}}}, "reconciliation": {"_count": 1, "to": {"_count": 1, "sneak": {"_count": 1}}}, "BATTLE": {"_count": 1, "OF": {"_count": 1, "HOGWARTS": {"_count": 1}}}, "evacuation": {"_count": 2, "will": {"_count": 1, "be": {"_count": 1}}, "point": {"_count": 1, "": {"_count": 1}}}, "overseen": {"_count": 1, "by": {"_count": 1, "Mr": {"_count": 1}}}, "orderly": {"_count": 1, "fashion": {"_count": 1, "to": {"_count": 1}}}, "futile": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "presses": {"_count": 1, "against": {"_count": 1, "the": {"_count": 1}}}, "trooping": {"_count": 1, "out": {"_count": 1, "on": {"_count": 1}}}, "necessitating": {"_count": 1, "Professor": {"_count": 1, "McGonagalls": {"_count": 1}}}, "processes": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wasps": {"_count": 1, "trapped": {"_count": 1, "beneath": {"_count": 1}}}, "density": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "firstyears": {"_count": 1, "to": {"_count": 1, "get": {"_count": 1}}}, "siblings": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "clamor": {"_count": 2, "": {"_count": 1, ".": {"_count": 1}}, "his": {"_count": 1, "sons": {"_count": 1}}}, "Gray": {"_count": 4, "Lady": {"_count": 4, "of": {"_count": 1}, "": {"_count": 2}, "and": {"_count": 1}}}, "covet": {"_count": 1, "the": {"_count": 1, "diadem": {"_count": 1}}}, "composure": {"_count": 1, "was": {"_count": 1, "slipping": {"_count": 1}}}, "Helena": {"_count": 3, "Ravenclaw": {"_count": 2, "": {"_count": 1}, "in": {"_count": 1}}, "Ravenclaws": {"_count": 1, "desire": {"_count": 1}}}, "perfidy": {"_count": 1, "she": {"_count": 1, "was": {"_count": 1}}}, "spurned": {"_count": 1, "his": {"_count": 1, "advances": {"_count": 1}}}, "hottempered": {"_count": 1, "man": {"_count": 1, "": {"_count": 1}}}, "penitence": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Concealed": {"_count": 1, "inside": {"_count": 1, "a": {"_count": 1}}}, "Sense": {"_count": 1, "was": {"_count": 1, "emerging": {"_count": 1}}}, "farflung": {"_count": 1, "forest": {"_count": 1, "and": {"_count": 1}}}, "boarhounds": {"_count": 1, "attentions": {"_count": 1, "as": {"_count": 1}}}, "attentions": {"_count": 1, "as": {"_count": 1, "the": {"_count": 1}}}, "cursory": {"_count": 1, "and": {"_count": 1, "ribcracking": {"_count": 1}}}, "keening": {"_count": 1, "scream": {"_count": 1, "": {"_count": 1}}}, "Voice": {"_count": 1, "carried": {"_count": 1, "didn": {"_count": 1}}}, "gimme": {"_count": 1, "Potter": {"_count": 1, "": {"_count": 1}}}, "Smashed": {"_count": 1, "our": {"_count": 1, "way": {"_count": 1}}}, "effigy": {"_count": 1, "came": {"_count": 1, "back": {"_count": 1}}}, "lob": {"_count": 1, "them": {"_count": 1, "over": {"_count": 1}}}, "ruffs": {"_count": 1, "and": {"_count": 1, "breeches": {"_count": 1}}}, "breeches": {"_count": 1, "in": {"_count": 1, "armor": {"_count": 1}}}, "canvases": {"_count": 1, "screaming": {"_count": 1, "news": {"_count": 1}}}, "slivers": {"_count": 1, "of": {"_count": 1, "china": {"_count": 1}}}, "shrapnel": {"_count": 1, "through": {"_count": 1, "the": {"_count": 1}}}, "Braggarts": {"_count": 1, "and": {"_count": 1, "rogues": {"_count": 1}}}, "rogues": {"_count": 1, "dogs": {"_count": 1, "and": {"_count": 1}}}, "scoundrels": {"_count": 1, "drive": {"_count": 1, "them": {"_count": 1}}}, "ransom": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Genius": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "ini": {"_count": 1, "Hang": {"_count": 1, "on": {"_count": 1}}}, "Dobbies": {"_count": 1, "do": {"_count": 1, "we": {"_count": 1}}}, "01": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "deteriorated": {"_count": 1, "severely": {"_count": 1, "The": {"_count": 1}}}, "breaching": {"_count": 1, "the": {"_count": 1, "north": {"_count": 1}}}, "entrant": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "longgone": {"_count": 1, "students": {"_count": 1, "": {"_count": 1}}}, "Diadem": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "adjacent": {"_count": 1, "aisles": {"_count": 1, "Harry": {"_count": 1}}}, "Winners": {"_count": 1, "keepers": {"_count": 1, "Malfoy": {"_count": 1}}}, "humorous": {"_count": 1, "about": {"_count": 1, "the": {"_count": 1}}}, "ung": {"_count": 1, "back": {"_count": 1, "Potter": {"_count": 1}}}, "Decided": {"_count": 1, "to": {"_count": 1, "bring": {"_count": 1}}}, "Hidden": {"_count": 2, "Things": {"_count": 1, "all": {"_count": 1}}, "beneath": {"_count": 1, "the": {"_count": 1}}}, "Disslusion": {"_count": 1, "Charms": {"_count": 1, "now": {"_count": 1}}}, "diedum": {"_count": 3, "": {"_count": 3, "!": {"_count": 1}, "?": {"_count": 2}}}, "DescendoV": {"_count": 1, "The": {"_count": 1, "wall": {"_count": 1}}}, "destabilized": {"_count": 1, "wall": {"_count": 1, "He": {"_count": 1}}}, "slowwittedness": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "\u2018Must": {"_count": 1, "mean": {"_count": 1, "": {"_count": 1}}}, "undisguised": {"_count": 2, "ferocity": {"_count": 1, "": {"_count": 1}}, "greed": {"_count": 1, "in": {"_count": 1}}}, "thediff": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "bulwark": {"_count": 1, "of": {"_count": 1, "objects": {"_count": 1}}}, "KedavraY": {"_count": 1, "again": {"_count": 1, "": {"_count": 1}}}, "bulwarks": {"_count": 1, "which": {"_count": 1, "were": {"_count": 1}}}, "sentient": {"_count": 1, "intent": {"_count": 1, "upon": {"_count": 1}}}, "inferno": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "heavylooking": {"_count": 1, "broomsticks": {"_count": 1, "from": {"_count": 1}}}, "kicks": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "raptor": {"_count": 1, "that": {"_count": 1, "snapped": {"_count": 1}}}, "contraband": {"_count": 1, "of": {"_count": 1, "generations": {"_count": 1}}}, "outcomes": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "devouring": {"_count": 2, "flame": {"_count": 1, "": {"_count": 1}}, "flames": {"_count": 1, "were": {"_count": 1}}}, "firestorm": {"_count": 1, "below": {"_count": 1, "seeking": {"_count": 1}}}, "unburned": {"_count": 1, "by": {"_count": 1, "the": {"_count": 1}}}, "maw": {"_count": 1, "of": {"_count": 1, "a": {"_count": 1}}}, "prayed": {"_count": 1, "the": {"_count": 1, "door": {"_count": 1}}}, "CCrabbe": {"_count": 2, "choked": {"_count": 1, "Malfoy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "cavalcade": {"_count": 1, "of": {"_count": 1, "transparent": {"_count": 1}}}, "bloodlust": {"_count": 1, "under": {"_count": 1, "their": {"_count": 1}}}, "WIT": {"_count": 1, "BEYOND": {"_count": 1, "MEASURE": {"_count": 1}}}, "MEASURE": {"_count": 1, "IS": {"_count": 1, "MANS": {"_count": 1}}}, "MANS": {"_count": 1, "GREATEST": {"_count": 1, "TREASURE": {"_count": 1}}}, "GREATEST": {"_count": 1, "TREASURE": {"_count": 1, "": {"_count": 1}}}, "TREASURE": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "bloodlike": {"_count": 1, "substance": {"_count": 1, "dark": {"_count": 1}}}, "Fiendfyre": {"_count": 2, "": {"_count": 1, "!": {"_count": 1}}, "cursed": {"_count": 1, "fire": {"_count": 1}}}, "urchin": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "stickiness": {"_count": 1, "on": {"_count": 1, "his": {"_count": 1}}}, "ELDER": {"_count": 1, "WAND": {"_count": 1, "The": {"_count": 1}}}, "combatant": {"_count": 1, "laid": {"_count": 1, "down": {"_count": 1}}}, "impossibility": {"_count": 1, "because": {"_count": 1, "Fred": {"_count": 1}}}, "coating": {"_count": 1, "Rons": {"_count": 1, "face": {"_count": 1}}}, "liberated": {"_count": 1, "from": {"_count": 1, "the": {"_count": 1}}}, "masonry": {"_count": 1, "glass": {"_count": 1, "long": {"_count": 1}}}, "Rounding": {"_count": 1, "the": {"_count": 1, "corner": {"_count": 1}}}, "bulllike": {"_count": 1, "roar": {"_count": 1, "ROOKWOOD": {"_count": 1}}}, "ROOKWOOD": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "embracing": {"_count": 1, "again": {"_count": 1, "then": {"_count": 1}}}, "ROM": {"_count": 1, "I": {"_count": 1, "wanna": {"_count": 1}}}, "Pursuing": {"_count": 1, "another": {"_count": 1, "Horcrux": {"_count": 1}}}, "desolate": {"_count": 1, "but": {"_count": 1, "strangely": {"_count": 1}}}, "yyourself": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "smashes": {"_count": 1, "and": {"_count": 1, "bangs": {"_count": 1}}}, "Glisseo": {"_count": 1, "The": {"_count": 1, "stairs": {"_count": 1}}}, "Duro": {"_count": 1, "cried": {"_count": 1, "Hermione": {"_count": 1}}}, "crunches": {"_count": 1, "as": {"_count": 1, "the": {"_count": 1}}}, "CHARGE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "clogged": {"_count": 1, "the": {"_count": 1, "air": {"_count": 1}}}, "Wheeeeeeeeeeee": {"_count": 1, "and": {"_count": 1, "looking": {"_count": 1}}}, "improbably": {"_count": 1, "in": {"_count": 1, "midair": {"_count": 1}}}, "twofaced": {"_count": 1, "bastard": {"_count": 1, "": {"_count": 1}}}, "bastard": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "Hogwartians": {"_count": 1, "alike": {"_count": 1, "and": {"_count": 1}}}, "onslaught": {"_count": 1, "of": {"_count": 1, "spells": {"_count": 1}}}, "treelike": {"_count": 1, "hairy": {"_count": 1, "shins": {"_count": 1}}}, "undersized": {"_count": 1, "giant": {"_count": 1, "": {"_count": 1}}}, "kin": {"_count": 2, "and": {"_count": 2, "Grawp": {"_count": 1}, "mortal": {"_count": 1}}}, "halfbrick": {"_count": 1, "sized": {"_count": 1, "teeth": {"_count": 1}}}, "Shapes": {"_count": 1, "moved": {"_count": 1, "out": {"_count": 1}}}, "muted": {"_count": 1, "deadened": {"_count": 1, "because": {"_count": 1}}}, "expire": {"_count": 1, "he": {"_count": 1, "saw": {"_count": 1}}}, "hare": {"_count": 1, "a": {"_count": 1, "boar": {"_count": 1}}}, "earthquaking": {"_count": 1, "tremor": {"_count": 1, "another": {"_count": 1}}}, "bellows": {"_count": 1, "echoed": {"_count": 1, "through": {"_count": 1}}}, "outdistance": {"_count": 1, "death": {"_count": 1, "itself": {"_count": 1}}}, "windless": {"_count": 1, "through": {"_count": 1, "grounds": {"_count": 1}}}, "swiping": {"_count": 1, "branches": {"_count": 1, "peering": {"_count": 1}}}, "booms": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "Skilled": {"_count": 1, "wizard": {"_count": 1, "though": {"_count": 1}}}, "sibilant": {"_count": 1, "sigh": {"_count": 1, "lingering": {"_count": 1}}}, "musing": {"_count": 1, "calm": {"_count": 1, "but": {"_count": 1}}}, "Capture": {"_count": 1, "Potter": {"_count": 1, "": {"_count": 1}}}, "brink": {"_count": 1, "of": {"_count": 1, "victory": {"_count": 1}}}, "reprieved": {"_count": 1, "But": {"_count": 1, "then": {"_count": 1}}}, "staunch": {"_count": 1, "the": {"_count": 1, "bloody": {"_count": 1}}}, "PRINCES": {"_count": 1, "TALE": {"_count": 1, "Harry": {"_count": 1}}}, "deathblow": {"_count": 1, "away": {"_count": 1, "": {"_count": 1}}}, "Dispose": {"_count": 1, "of": {"_count": 1, "your": {"_count": 1}}}, "recommences": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "clog": {"_count": 1, "the": {"_count": 1, "size": {"_count": 1}}}, "Emeralds": {"_count": 1, "were": {"_count": 1, "still": {"_count": 1}}}, "peacefullooking": {"_count": 1, "apparently": {"_count": 1, "asleep": {"_count": 1}}}, "runic": {"_count": 1, "markings": {"_count": 1, "around": {"_count": 1}}}, "abandonment": {"_count": 1, "as": {"_count": 1, "though": {"_count": 1}}}, "smocklike": {"_count": 1, "shirt": {"_count": 1, "": {"_count": 1}}}, "asphalt": {"_count": 1, "she": {"_count": 1, "soared": {"_count": 1}}}, "sandals": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "Tuney": {"_count": 6, "look": {"_count": 1, "at": {"_count": 1}}, "": {"_count": 3, "!": {"_count": 3}}, "Im": {"_count": 1, "sorry": {"_count": 1}}, "hhates": {"_count": 1, "me": {"_count": 1}}}, "manylipped": {"_count": 1, "oyster": {"_count": 1, "": {"_count": 1}}}, "oyster": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "tag": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "recommendation": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dirtyhaired": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "brimful": {"_count": 1, "of": {"_count": 1, "confidence": {"_count": 1}}}, "hurtful": {"_count": 1, "to": {"_count": 1, "say": {"_count": 1}}}, "sourlooking": {"_count": 1, "woman": {"_count": 1, "who": {"_count": 1}}}, "halfglancing": {"_count": 1, "toward": {"_count": 1, "where": {"_count": 1}}}, "Freak": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "hhates": {"_count": 1, "me": {"_count": 1, "": {"_count": 1}}}, "wellcaredfor": {"_count": 1, "even": {"_count": 1, "adored": {"_count": 1}}}, "adored": {"_count": 1, "that": {"_count": 1, "Snape": {"_count": 1}}}, "conspicuously": {"_count": 1, "lacked": {"_count": 1, "": {"_count": 1}}}, "\u2018Gryffindor": {"_count": 1, "where": {"_count": 1, "dwell": {"_count": 1}}}, "disparaging": {"_count": 1, "noise": {"_count": 1, "": {"_count": 1}}}, "brawny": {"_count": 1, "than": {"_count": 1, "brainy": {"_count": 1}}}, "Gryffindoii": {"_count": 1, "Harry": {"_count": 1, "heard": {"_count": 1}}}, "Slytherinl": {"_count": 1, "cried": {"_count": 1, "the": {"_count": 1}}}, "Sev": {"_count": 3, "but": {"_count": 1, "I": {"_count": 1}}, "hes": {"_count": 1, "creepy": {"_count": 1}}, "": {"_count": 1, ".": {"_count": 1}}}, "Macdonald": {"_count": 1, "the": {"_count": 1, "other": {"_count": 1}}}, "rendering": {"_count": 1, "him": {"_count": 1, "incoherent": {"_count": 1}}}, "Mulcibers": {"_count": 1, "and": {"_count": 1, "Averys": {"_count": 1}}}, "Averys": {"_count": 1, "idea": {"_count": 1, "of": {"_count": 1}}}, "strictures": {"_count": 1, "on": {"_count": 1, "Mulciber": {"_count": 1}}}, "unforgivable": {"_count": 1, "word": {"_count": 1, "MudbloocL": {"_count": 1}}}, "MudbloocL": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Evanss": {"_count": 1, "eyes": {"_count": 1, "I": {"_count": 1}}}, "rulebreaker": {"_count": 1, "delighted": {"_count": 1, "to": {"_count": 1}}}, "engaging": {"_count": 1, "child": {"_count": 1, "": {"_count": 1}}}, "Rogers": {"_count": 1, "retreating": {"_count": 1, "figures": {"_count": 1}}}, "Sorely": {"_count": 1, "tempted": {"_count": 1, "": {"_count": 1}}}, "Tempted": {"_count": 1, "by": {"_count": 1, "what": {"_count": 1}}}, "curio": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "delirious": {"_count": 1, "no": {"_count": 1, "doubt": {"_count": 1}}}, "foresees": {"_count": 1, "a": {"_count": 1, "moment": {"_count": 1}}}, "Offer": {"_count": 1, "him": {"_count": 1, "help": {"_count": 1}}}, "blames": {"_count": 1, "me": {"_count": 1, "he": {"_count": 1}}}, "usurped": {"_count": 1, "Luciuss": {"_count": 1, "position": {"_count": 1}}}, "Ultimately": {"_count": 1, "of": {"_count": 1, "course": {"_count": 1}}}, "cuttlebone": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "irony": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "epitaph": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "withholding": {"_count": 1, "the": {"_count": 1, "essentials": {"_count": 1}}}, "Souls": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "latched": {"_count": 2, "itself": {"_count": 1, "onto": {"_count": 1}}, "to": {"_count": 1, "you": {"_count": 1}}}, "unmissed": {"_count": 1, "by": {"_count": 1, "Voldemort": {"_count": 1}}}, "parasitic": {"_count": 1, "growth": {"_count": 1, "Sometimes": {"_count": 1}}}, "Lately": {"_count": 1, "only": {"_count": 1, "those": {"_count": 1}}}, "spied": {"_count": 1, "for": {"_count": 1, "you": {"_count": 1}}}, "Patronuml": {"_count": 1, "From": {"_count": 1, "the": {"_count": 1}}}, "Confunding": {"_count": 1, "Mundungus": {"_count": 1, "Fletcher": {"_count": 1}}}, "tavern": {"_count": 1, "Mundungus": {"_count": 1, "s": {"_count": 1}}}, "Identical": {"_count": 1, "Potters": {"_count": 1, "": {"_count": 1}}}, "Sectumsemprcd": {"_count": 1, "shouted": {"_count": 1, "Snape": {"_count": 1}}}, "valor": {"_count": 1, "and": {"_count": 1, "he": {"_count": 1}}}, "cavity": {"_count": 1, "behind": {"_count": 1, "it": {"_count": 1}}}, "mishap": {"_count": 1, "Snape": {"_count": 1, "turned": {"_count": 1}}}, "pumped": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "numbered": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "coldblooded": {"_count": 1, "walk": {"_count": 1, "to": {"_count": 1}}}, "span": {"_count": 1, "had": {"_count": 1, "always": {"_count": 1}}}, "eliminate": {"_count": 1, "all": {"_count": 1, "the": {"_count": 1}}}, "overestimated": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "incontrovertible": {"_count": 1, "truth": {"_count": 1, "which": {"_count": 1}}}, "lifeblood": {"_count": 1, "were": {"_count": 1, "concentrated": {"_count": 1}}}, "mourners": {"_count": 1, "were": {"_count": 1, "crammed": {"_count": 1}}}, "firemans": {"_count": 1, "lift": {"_count": 1, "and": {"_count": 1}}}, "Calls": {"_count": 1, "it": {"_count": 1, "Nagini": {"_count": 1}}}, "awfulness": {"_count": 1, "of": {"_count": 1, "that": {"_count": 1}}}, "smothered": {"_count": 1, "him": {"_count": 1, "for": {"_count": 1}}}, "backups": {"_count": 1, "others": {"_count": 1, "to": {"_count": 1}}}, "Ripples": {"_count": 1, "of": {"_count": 1, "cold": {"_count": 1}}}, "undulated": {"_count": 1, "over": {"_count": 1, "Harrys": {"_count": 1}}}, "loped": {"_count": 1, "with": {"_count": 1, "an": {"_count": 1}}}, "feasted": {"_count": 1, "on": {"_count": 1, "her": {"_count": 1}}}, "Dying": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "Quicker": {"_count": 1, "and": {"_count": 1, "easier": {"_count": 1}}}, "beseeching": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "spawned": {"_count": 1, "had": {"_count": 1, "been": {"_count": 1}}}, "roughhewn": {"_count": 1, "like": {"_count": 1, "rock": {"_count": 1}}}, "hideand": {"_count": 1, "seek": {"_count": 1, "": {"_count": 1}}}, "halo": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "worshipful": {"_count": 1, "fascination": {"_count": 1, "": {"_count": 1}}}, "trussed": {"_count": 1, "tied": {"_count": 1, "to": {"_count": 1}}}, "WHATRE": {"_count": 1, "YEH": {"_count": 1, "": {"_count": 1}}}, "KINGS": {"_count": 1, "CROSS": {"_count": 1, "He": {"_count": 1}}}, "CROSS": {"_count": 1, "He": {"_count": 1, "lay": {"_count": 1}}}, "intrigue": {"_count": 1, "him": {"_count": 1, "slightly": {"_count": 1}}}, "unformed": {"_count": 1, "nothingness": {"_count": 1, "that": {"_count": 1}}}, "thumpings": {"_count": 1, "of": {"_count": 1, "something": {"_count": 1}}}, "invent": {"_count": 1, "themselves": {"_count": 1, "before": {"_count": 1}}}, "wideopen": {"_count": 1, "space": {"_count": 1, "bright": {"_count": 1}}}, "flayedlooking": {"_count": 1, "and": {"_count": 1, "it": {"_count": 1}}}, "sprightly": {"_count": 1, "and": {"_count": 1, "upright": {"_count": 1}}}, "flayed": {"_count": 1, "child": {"_count": 1, "lay": {"_count": 1}}}, "Happiness": {"_count": 2, "seemed": {"_count": 1, "to": {"_count": 1}}, "would": {"_count": 1, "come": {"_count": 1}}}, "railing": {"_count": 1, "here": {"_count": 1, "and": {"_count": 1}}}, "agonized": {"_count": 1, "creature": {"_count": 1, "behind": {"_count": 1}}}, "unspeakable": {"_count": 1, "evil": {"_count": 1, "the": {"_count": 1}}}, "guesses": {"_count": 1, "have": {"_count": 1, "usually": {"_count": 1}}}, "untested": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "twofold": {"_count": 1, "connection": {"_count": 1, "having": {"_count": 1}}}, "destinies": {"_count": 1, "together": {"_count": 1, "more": {"_count": 1}}}, "imbibed": {"_count": 1, "some": {"_count": 1, "of": {"_count": 1}}}, "illadvisedly": {"_count": 1, "with": {"_count": 1, "the": {"_count": 1}}}, "discourteous": {"_count": 1, "I": {"_count": 1, "do": {"_count": 1}}}, "minimize": {"_count": 1, "your": {"_count": 1, "sufferings": {"_count": 1}}}, "Real": {"_count": 1, "and": {"_count": 1, "dangerous": {"_count": 1}}}, "ultimately": {"_count": 1, "than": {"_count": 1, "Voldemort": {"_count": 1}}}, "creations": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Ignotuss": {"_count": 2, "last": {"_count": 1, "living": {"_count": 1}}, "present": {"_count": 1, "though": {"_count": 1}}}, "uniting": {"_count": 1, "the": {"_count": 1, "Hallows": {"_count": 1}}}, "curseproof": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "wayward": {"_count": 1, "brother": {"_count": 1, "I": {"_count": 1}}}, "subservience": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "scruples": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "assuaged": {"_count": 1, "my": {"_count": 1, "conscience": {"_count": 1}}}, "repaid": {"_count": 1, "a": {"_count": 1, "hundredfold": {"_count": 1}}}, "fruition": {"_count": 1, "all": {"_count": 1, "my": {"_count": 1}}}, "trio": {"_count": 1, "for": {"_count": 1, "the": {"_count": 1}}}, "\u2018invincible": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Invincible": {"_count": 1, "masters": {"_count": 1, "of": {"_count": 1}}}, "Reality": {"_count": 1, "returned": {"_count": 1, "in": {"_count": 1}}}, "unlettered": {"_count": 1, "and": {"_count": 1, "infinitely": {"_count": 1}}}, "infinitely": {"_count": 1, "more": {"_count": 1, "admirable": {"_count": 1}}}, "skillful": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "unstoppable": {"_count": 1, "and": {"_count": 1, "I": {"_count": 1}}}, "whimperings": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "amends": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "dominate": {"_count": 1, "your": {"_count": 1, "good": {"_count": 1}}}, "removes": {"_count": 1, "his": {"_count": 1, "last": {"_count": 1}}}, "rawlooking": {"_count": 1, "thing": {"_count": 1, "that": {"_count": 1}}}, "FLAW": {"_count": 1, "IN": {"_count": 1, "THE": {"_count": 1}}}, "PLAN": {"_count": 1, "He": {"_count": 1, "was": {"_count": 1}}}, "solicitous": {"_count": 1, "murmurs": {"_count": 1, "filled": {"_count": 1}}}, "murmurs": {"_count": 1, "filled": {"_count": 1, "the": {"_count": 1}}}, "cushioning": {"_count": 1, "effect": {"_count": 1, "in": {"_count": 1}}}, "Various": {"_count": 1, "Death": {"_count": 1, "Eaters": {"_count": 1}}}, "Examine": {"_count": 1, "him": {"_count": 1, "": {"_count": 1}}}, "verify": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "traitorously": {"_count": 1, "and": {"_count": 1, "wait": {"_count": 1}}}, "unsullied": {"_count": 1, "upon": {"_count": 1, "the": {"_count": 1}}}, "floppy": {"_count": 1, "and": {"_count": 1, "lifeless": {"_count": 1}}}, "Branches": {"_count": 1, "caught": {"_count": 1, "at": {"_count": 1}}}, "quiescent": {"_count": 1, "his": {"_count": 1, "mouth": {"_count": 1}}}, "victorious": {"_count": 1, "procession": {"_count": 1, "marched": {"_count": 1}}}, "BANE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "ddead": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "freshening": {"_count": 1, "of": {"_count": 1, "the": {"_count": 1}}}, "outnumber": {"_count": 1, "you": {"_count": 1, "and": {"_count": 1}}}, "gloried": {"_count": 1, "in": {"_count": 1, "McGonagalls": {"_count": 1}}}, "vanquishers": {"_count": 1, "and": {"_count": 1, "see": {"_count": 1}}}, "Naginis": {"_count": 1, "head": {"_count": 1, "with": {"_count": 1}}}, "defenders": {"_count": 2, "of": {"_count": 2, "Hogwarts": {"_count": 2}}}, "challengers": {"_count": 1, "wand": {"_count": 1, "aside": {"_count": 1}}}, "noman": {"_count": 1, "s": {"_count": 1, "land": {"_count": 1}}}, "silkiness": {"_count": 1, "of": {"_count": 1, "his": {"_count": 1}}}, "revert": {"_count": 1, "to": {"_count": 1, "the": {"_count": 1}}}, "oppose": {"_count": 1, "me": {"_count": 1, "said": {"_count": 1}}}, "aflame": {"_count": 1, "rooted": {"_count": 1, "to": {"_count": 1}}}, "twangs": {"_count": 1, "of": {"_count": 1, "bows": {"_count": 1}}}, "clashing": {"_count": 1, "giants": {"_count": 1, "or": {"_count": 1}}}, "WHERES": {"_count": 1, "HARRY": {"_count": 1, "": {"_count": 1}}}, "Chaos": {"_count": 1, "reigned": {"_count": 1, "": {"_count": 1}}}, "shopkeepers": {"_count": 1, "and": {"_count": 1, "homeowners": {"_count": 1}}}, "homeowners": {"_count": 1, "of": {"_count": 1, "Hogsmeade": {"_count": 1}}}, "cleavers": {"_count": 1, "and": {"_count": 1, "at": {"_count": 1}}}, "smiting": {"_count": 1, "all": {"_count": 1, "within": {"_count": 1}}}, "flooring": {"_count": 1, "Thicknesse": {"_count": 1, "and": {"_count": 1}}}, "BITCH": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "challenger": {"_count": 1, "": {"_count": 1, ".": {"_count": 1}}}, "Freddie": {"_count": 1, "": {"_count": 1, "?": {"_count": 1}}}, "lieutenant": {"_count": 1, "exploded": {"_count": 1, "with": {"_count": 1}}}, "ALIVE": {"_count": 1, "": {"_count": 1, "!": {"_count": 1}}}, "dispelled": {"_count": 1, "Voldemort": {"_count": 1, "began": {"_count": 1}}}, "Than": {"_count": 1, "I": {"_count": 1, "than": {"_count": 1}}}, "decays": {"_count": 1, "in": {"_count": 1, "the": {"_count": 1}}}, "wolves": {"_count": 1, "about": {"_count": 1, "to": {"_count": 1}}}, "purer": {"_count": 1, "blood": {"_count": 1, "worthier": {"_count": 1}}}, "undefeated": {"_count": 1, "the": {"_count": 1, "wands": {"_count": 1}}}, "Possessing": {"_count": 1, "the": {"_count": 1, "wand": {"_count": 1}}}, "Blank": {"_count": 1, "shock": {"_count": 1, "showed": {"_count": 1}}}, "unerring": {"_count": 1, "skill": {"_count": 1, "of": {"_count": 1}}}, "outpourings": {"_count": 1, "of": {"_count": 1, "jubilation": {"_count": 1}}}, "bereaved": {"_count": 1, "clasp": {"_count": 1, "their": {"_count": 1}}}, "bashed": {"_count": 1, "them": {"_count": 1, "wee": {"_count": 1}}}, "Voldys": {"_count": 1, "gone": {"_count": 1, "moldy": {"_count": 1}}}, "Painstakingly": {"_count": 1, "he": {"_count": 1, "recounted": {"_count": 1}}}, "ovation": {"_count": 1, "they": {"_count": 1, "waved": {"_count": 1}}}, "Derwent": {"_count": 1, "sobbed": {"_count": 1, "unashamedly": {"_count": 1}}}, "unashamedly": {"_count": 1, "Dexter": {"_count": 1, "Fortescue": {"_count": 1}}}, "Dexter": {"_count": 1, "Fortescue": {"_count": 1, "was": {"_count": 1}}}, "eartrumpet": {"_count": 1, "and": {"_count": 1, "Phineas": {"_count": 1}}}, "balm": {"_count": 1, "as": {"_count": 1, "phoenix": {"_count": 1}}}, "sleepdeprived": {"_count": 1, "state": {"_count": 1, "Harry": {"_count": 1}}}, "rejoicing": {"_count": 1, "at": {"_count": 1, "their": {"_count": 1}}}, "ayue": {"_count": 1, "NINETEEN": {"_count": 1, "YEARS": {"_count": 1}}}, "NINETEEN": {"_count": 1, "YEARS": {"_count": 1, "LATER": {"_count": 1}}}, "LATER": {"_count": 1, "Autumn": {"_count": 1, "seemed": {"_count": 1}}}, "exhausts": {"_count": 1, "and": {"_count": 1, "the": {"_count": 1}}}, "pedestrians": {"_count": 1, "sparkled": {"_count": 1, "like": {"_count": 1}}}, "wonti": {"_count": 1, "I": {"_count": 1, "wont": {"_count": 1}}}, "Slyth": {"_count": 1, "But": {"_count": 1, "James": {"_count": 1}}}, "capitalizing": {"_count": 1, "on": {"_count": 1, "the": {"_count": 1}}}, "Indistinct": {"_count": 1, "figures": {"_count": 1, "were": {"_count": 1}}}, "Detached": {"_count": 1, "from": {"_count": 1, "their": {"_count": 1}}}, "discoursing": {"_count": 1, "loudly": {"_count": 1, "on": {"_count": 1}}}, "Al": {"_count": 4, "said": {"_count": 2, "Ginny": {"_count": 1}, "Harry": {"_count": 1}}, "": {"_count": 2, ".": {"_count": 2}}}, "Parked": {"_count": 1, "all": {"_count": 1, "right": {"_count": 1}}}, "Confund": {"_count": 2, "the": {"_count": 1, "examiner": {"_count": 1}}, "him": {"_count": 1, "Ron": {"_count": 1}}}, "Supersensory": {"_count": 1, "Charm": {"_count": 1, "for": {"_count": 1}}}, "Hugo": {"_count": 3, "Roses": {"_count": 1, "younger": {"_count": 1}}, "laughed": {"_count": 1, "but": {"_count": 1}}, "and": {"_count": 1, "Lily": {"_count": 1}}}, "Roses": {"_count": 1, "younger": {"_count": 1, "brother": {"_count": 1}}}, "disinherit": {"_count": 1, "you": {"_count": 1, "said": {"_count": 1}}}, "buttoned": {"_count": 1, "up": {"_count": 1, "to": {"_count": 1}}}, "Scorpius": {"_count": 1, "said": {"_count": 1, "Ron": {"_count": 1}}}, "Rosie": {"_count": 2, "": {"_count": 2, ".": {"_count": 2}}}, "Granddad": {"_count": 1, "Weasley": {"_count": 1, "would": {"_count": 1}}}, "divested": {"_count": 1, "himself": {"_count": 1, "of": {"_count": 1}}}, "Teddys": {"_count": 1, "back": {"_count": 1, "there": {"_count": 1}}}, "Victoire": {"_count": 2, "He": {"_count": 1, "gazed": {"_count": 1}}, "": {"_count": 1, "!": {"_count": 1}}}, "A1": {"_count": 2, "Teddy": {"_count": 1, "could": {"_count": 1}}, "will": {"_count": 1, "share": {"_count": 1}}}, "sincere": {"_count": 1, "that": {"_count": 1, "fear": {"_count": 1}}}, "kisses": {"_count": 1, "lastminute": {"_count": 1, "reminders": {"_count": 1}}}, "bereavement": {"_count": 1, "watching": {"_count": 1, "his": {"_count": 1}}}} \ No newline at end of file diff --git a/potter_sample.txt b/potter_sample.txt new file mode 100644 index 0000000000000000000000000000000000000000..c6e9a8e5535c2f3a2922965341352abb16f8cbff GIT binary patch literal 284842 zcmagn*_I^Nk)>%o3h@HDdbsJkUV$-CiK!65M6>TWlSL9_17tE;4_uGY-RILk1fu5d z%vxMTxSOe-Bg2+0!%;K;|Nh?}-uv@=e|ztb@BQ%JPu~0Md%t_{=kI-Ye)`>ezdrx{ z`}xi5zc|1B?!DiicYbw#`}z6*U(a2CJ^%ald*5HL|MtB0m-EvfulxS|-fzzDfBW$Y z*SqrjbJzFhoj`ZU?a)p?ocn%$?)d9j*Y0-t#kKSAu2t+p=3l?} zr}NV{*Sh5W&AIEBmn6TrWFnPyyOyMX{PBvvU-y51UH$sn?fdusajs;K{1O24@7|HFCTN`E_&{qE@UFX#8q&j0`0d4=phdGG6Mo!_6k=gv^eXITK?DzAtcI*E7z5h6}|N5+E?WcFU{?)M-&;8@9^0)Kv&(BJK zJpb|%86WSv>-+zl>yvZ#{@}dg`mx&IFIoES`^$5F&WFD}`~CUSgdhLUbJtIg{r-C1 zwfjeBr9U0dwI2dw%|ISD1i4II-%l&d*^HLKfE$&--K`$xqH5JV2NGtFO;%@a)?413gIa%Xdkoo6pr9YilScxycJ^!ZZFV7w1aF6S<(09jjKY8!Xk?rRfDqyr& zX4Pc*$+5++&-M2^)60FoKkvYG5k7H9>fgV!RF-jFD~JH``QTrec#<=PFlYnHc4VE0)qHt7Nx{BC+S% z;hXpip1wM3WucV{)_!y8G~W8`T=nlqI(GZT`9G=udbIt?dmo;k|9sXC0dYf2KlhT- zzVI~G9!z8paVOHrGd^TB83@My?YuAYF}nElS`5Sb?6chV_j85&*ysE6UQ)P%2eP{T z+&MX?2w{1ev$A)7dH%;{VWtc+>|h5RMkY9Ck?{@7g&8~k@rnt!$-70?$bHAwvWLC+ z)oyHzjc_Yntn{nPQm-!!yh7K%9IY{^%*Cp-^PW4yva3YZn*>@6P{{8q+R2;HY1n_co(^cJ^T-*N1LZ1&q>T5D?mVWOt;8>tu)aqE#I55*DT+ z=?W-=ia#9biVynX&E#2T{^YunU4DDs!~HRBQS6R#QmiS4M9WVOic}JI8$O}UPu~0D zy!PMDD&Jr4;tW!IClvCfC~MVUULNyv$n)-B&fV6Uj5WOT*K;2W{r$ZA-_M%gUp`m$ z{Nv!_UjJ<6F&4(!;s#cW2$o0|NWt{U7gof%T4K<*vO}P~p^Mf2cI2IVLu`1PnulcW zE>_(wPGI7nBjLkKM)?4OKfN>*m5br3rynj2{EQvxYE8D@oNkROr@dPQV1XiQE0oRg zIc>pPZ)!j@YyfU>shP1@E_+II!+!80kQ;-|8VIN>RB^pwEhp5_v!JJ zV`rs2kuNOSaRXY{5wc0Hp8o2{4eLu*kd9`q_}G^GmM;9#V=3WbC}c5y&5AW z6;H*P<@}LY7PLM@lpWkZ*#PdX<-gxwF&N+c?$`?lsHDS^)ve`sTD-dM;*)z6l~u%E zC@r4iqAIUykl&oU$}mYo6Lm$_tG4*}3uj#~dSE&9!}Xu8-{SbJ9eTQcvPrmPue*(_ z0pM_Kx-1tyFjf3t-ho{*s~y#lFq&ORB1U5FcE9%pN!+SdAc>BIJz)qg$1{Jr_Jjpj z@;a?q@}-KM7e2lsO0@8O^+#M*PI9jbMRg~7vd8cOsfsnVxR}kiKfB~|XS&MigNw=J zaQpAq{pGx@F}dRPSt~q^g$JwCzYRw0TGzmK&=hm|$&tR+R+TI?v1M0h_hmCksYa`&scW}7 zSwbAIkm<3W4Lg(b;U@X`V0NoAusg2Rt*A-l$2Z3s>@~a;?y7R@G>ffaJ{BpW^}=@g z=&UHa+D$$cTe95KHRT@H|1a(F6uq>; z^W9s751yATST^2f_hsMqsGAh&tls()>(>UP^@m5IzZ}U#ootY9lPRpn z+QrD*ALY0Apk@5S9$u|()2$?7IcPBrUBA6NS)@+9dwu%Z@#yT4)y6{V5^M9O-rZH! zitA~|+IF07qd0K2>Xt`-bL`G$-2=;2@%feBR^-=ulVR1~S67qUK7YQl!k^EovBFwi z4a8%R%bT_<^=>x(0kRepJXo?Ho=GHQ{z)yAwPKVcoZTI2Ou4;#YD{yt!;E)yH9vv_Ri}^3@w)1@2!Nky_DBSe> zXIJK|R?HjFTRy=Z<)rP*MFqP;OAG>w>;%Sb?et+SK2C@G3Y9V!ErQgI&{()_N z7<{EG9LP{?^W}L@mk>hVKd)?!@cDVKN!6RP-dJ_tpD6j^ijY`R2A?^N_v4naxv0L! zTeZ-vv%N7?Z5{O8k&48{*WjD&!j(MHG+;Q4O+|sI8y4bk=z}-+V$vV34AJisGw}D< zqpdoo+|e$ijPIXYAkK^feRQtZX*NxdBVz9Ha1qk3d4Jxi;^x`sS#+mG?8~!!PrkUO{$%s($YUNLU%3+Y z;3&J0s{LcQS@)xJ$IMwjzx>ZL^mj#!S45K{ehP=N>+UetUj5k8wO9m#utPl8j38T& z>|tYK?1v*e+d}yr{c~OeXEDCHyZn-6?iDtcQ#Fq5?$cftsz>)P{*-mgrAbr`{`R_i zve&OJd71@2)}dH(rZ_AmgRn&2V^g_)*wrKr8&Ay;t4?=BVj4|OgODu8midzfVHP{( z4;JRBQ0%{XTFt>WTkp8i`tBq{XHvV8*k!xD4u^bsu2aE~wVsWhpPcE}H|O8Cr=k&a zU!2pNPtX58Kfk>>zkhYQm@m)2pPrw-I=E_=*bh%^wJ=j@djH3fz_e*5Qp5gf8iVb* z#rk<`iz>9qs(KJpgX)z*;fF{6swQZeMPagvpOy zfvU$Iu>E#^8QR{QUF!Sr$NOhBcHx`x4EztDxT%2KNcaW9ED0U)EPAbk6a}MXL4bJ+q(;-h>d}(2EqsV(YT8eBQ(g zB9ga!jNM2&ex!L(Fr9_-%gNqW+&%|?wg>!HpA5Fb5G3##Ss!N`KU|XTS<-MGJHoGb z)Ye&%Z}H$}7R)u?gUz?+eb=&q>ECb8yUm{B^yDLPIKfd_`1QGC`bK$*SC`LlP5Ek~ zb1*X4ZQo@HF^ZSQqE;u_oM!UvZ-0zPalGuFH#H>@TZ#_2E$4E1HpK6jVzC99< z+S+k%h|ZRAto!pF%X(+e=e$DZuAj^eH6$yt+>>6-^}YN0xz7s|ys5V|f#vSC==7&X*W{?Mn7LLh18=AM43^B2cB8pBFRi zAa}d6dxnLY#pAW2wUc+eAV*9TyuK{l#F4GBPz*ol<^$1X&p`z#%Zy^i9F(-n;xkQb z5`NbsR@NuYQ}ef>j9o&dDRgR@p<9MS6F9cJ>!tvr;wU`iq5{1*uv@2^(cyY};&c{B^I*{M?jk zICB_#Y=oU$V~=cqNA%+qYCQS;M3}590gO*0r*fS%i4C$g2_TR4T_+M&iosr8)adf+ z$Ykd2o+4*)OTPNT}b( zy%>P)N&2gct4weqP!BUPofUCA1dg3WO4S{Y?CYve(J{{w)qM<--4!c6BCvjoMW9+W zTxGXWI8VEI-F5V*89(xM`Iuf1FHXuzR>G4!F1ynA?YW;Ecyu_YbB5y5wP}CHj7%ZQ ziy}MUXBBa-|7Ml!QzYFx-L3Sq=ioalE+*uzI*eZ()Y~nIs$QEN)C1D~UfHJO>r2B~ zofRfK$AiUij07`r!3 z_sv;h`lXGk#RyGb>bLY2u?)`JC>@(WR>;mt?3s<`XOS`dFpNB_KCJ^(26`@e#DvRl zWc&2|jB(ikYGAc2CtmF5-!f|ZijeQl>uR9s^4U7}um;;>jgbv2w`RN)8&wCgczTWP zA9vZhcn~mAyq>fwTMU{pOY>6yW)b}${PDP0eyJ;q?dinBPoJ;*{94t$cB(4(RGQz@ z1q1m>?LKi4E5)4bU1#vpQ#i3s@j{>R^6=Q54;NoQdC$|b%gv@*GR5%t+jo*|g;8b; z-ytyD#69_D(8P!A%qGol*?6>j>=4F(POs)H6dK@#RmN{Ufst3*O&r(7&KfcXg!1{! zSmaIX4XQ#}DE|213;)FEY4UVmD2^4Yw9B_%V`&vozTC)58gqo+!Jps1xn}XUK2O>h&cOIUyM$z-^}jgvp+`8|4_qYTXPJahG%<5+U#;X{n`1Mer1-P z8ridaQC8*=`_P-cVDhJDjrvaUp;o0?oNeydd4L!n)>m;)tNc5}P4AP0?=Gf% zb9Pi8VMF)JnY0ZFv$A-tPWa%G^Rb>1J@ueiY3*o7dQUCRpCd`U-AuJCmQM!nEL%?V zy2%h^;r2V9lT>XzD9*=rY@Or}#aZMoAxX2#>$8IAh(v^{fK~6t9^<`u4hV z&SMt;(=X=f;W^r{a;8WBb02&xbMX9RCi1bJ->3hH<(BKnU$pQ-PmQdFzPR4~ z)rFji(A}$5%brl5EaUUtQOs8D>3T@`;iZopNycowyWXET*Y8aXyOze7DqbC&ZI;55 zd-9*%?V1&`T$5{d8(E8<^@2}CdueBy;RtwJaYx(hO~UFzTF*Nn-c$&SO)Sj}G|SE`vE0vN+d1+ZJCFX5 z)=t&8gDbxEo(TiwgqqF$dZCH_81?xX1&pyisY3eB1s-ta6+fG+hx7O;n{CYT#8_V(*dgYsN2?xSZBH@$@?1NJ zoPVeGSSgZ~jZ7BC^YR*dJ!ZD`7;h}wK)JrK+(P4?#44sbrL2;eIxUPZ4>f$0r&1+tiGuH>1D4uA2$)-Dk2ptGn;3qglF;80*)AHwUAK*KsMWk{%ZC zpSB#-vU1(&%==>O@prk8EydCF`n^hSxS3vKaoTCs^XdSHj#i;STw^qdZ1y=*K`|;v zbXEwRb*K}iab!Bd@pvvi*qphn_WW}!toiwmh^Pu;C6FI@p6z09xw6;@pZvswn2IIm%ur>3dF|%@YIOTl_kFCrCW8&u-h%bBfgr6jCH(gU%V0r%d&$6{;9HRV%wQc8M!E(HAo=`rg!JJZ;#e$ z^?SZ#zn%3ygTc?~O!$w%b(8RXVND;#RMkVh@sA;q76PId6i) zyms%k9;FD+@lP?{q|xfK{!|+Hmjn>fr%0;~VSbbu4ak(?D zK~lczdOGc=*s81I6xK06y7xLbU?v<>(`TDJc(47c&S?AiG-i=I)`>gFS|#=T{3}LN zA&|!Zlf23)jMcFZ`iHyjwJFWYU?la^*Lovi|%^O4LB&C}b3-Ja|08O?G{+Jx9$xxC31^2;x- z&mi^91=}Ug*$OUSZs-m>zyoxTMPj-#UDJYa?)|JXmi1dR9qVSRIr&|kU!L~Bp2<@& zTa<4nmObh$J*P+jXqE(`?ZQ{l1D`kEyq4H z6JY0gExSxSiG+AqZKaOdiGrsTZ~_chF|#)hKJPmDMi!X5Y1nb(Ws7n%T*QT69ZAWm zT4AxNH1s$8SiUGyKe^dX~XZ-K){U7iBZwFW6>8qR6_laUmJ5|HtKl{CZ z?p!Rq^!&&dXRl9>9z7X`L)Ex)Uo{CmWb3tAQ zs$yudCh0Z?+%Z^KYvYy2>2A3u43LVQ!=Af!hpza`wZp_@r`%0t?L3-h_j?=_d)v89 zy)$=^y(rF8qaDnIpJizN#VGKDo1uc;v)Ajh($1=&L6q%z+~yCAOg9}zyOM#lB%DY~LDe=H#|4 zpJpVO*iqwqx}LY&Q(f15qt7~9A&wAxR(OhN8dQahzdMm(v57-mL86gvDlmv3+uX_5 zq=k6;Ju;kFaP=@9Rvk}`FR<)0QNE zm44Z=DvwX&X()Dm&r05-tLqnOIApx>_&mw;>6ggFnD3vJHxqqyS&FV~y>;FoBn$Rz zf;grx>BVN&P~G-aLf>=r%~>(q;qv+XnYG=mzwcyvyOSmYTlKkS_Af4Hm3uE7S7oP1 zzItTiIx^RN`_3b-hL?#79&Gx6*ZHhkf1X5e@9V=N_s`GJt!wcSOvrP0PBV4N%lNpn z0NR8-=uu7{(>Y}Z!We7UEDw=tkH8U{nF}L zjeVL=hsB=wV5MSAOqiCDW#S*t&J=NLAnU!oBBn}i(17i`|IVQ~C#-fqk=6>FL zeZAWATk~wh{pn_QCQ&i9*)T4_Z|Zj#aLqowgsI`%eZy+WF#48d{`pvo9+t3&Gj;!Y{gEmkET=C3>)$Fd`IEbK-Fu_HtSv{3r=rP z&u6FYI(LH2n#IasMg$ax-t&2(vScu`#H!E?)WSnzB{Ym^Ty%~ z%H;RB9v-W1R{ku?*W;1L$(SpjVoT1S>G5Muq6-$Tv!V6QtDvu`adxzG{J9+T<+-B# zla|dBo_y>HK5vF4y!4Ro*0;}dJ=p~;6Y&4*}UT~_|`{A=!$f3_xnL^bO| z;_D;DZ{IOkj6g@WsyqMs{01A<&sNtzln2W%oBOI|i%u5JW_d3*Uc|FU9YJ2P<1a2R z`21o$1Knw&ZX@f5mnD4Ol7H#i8O}~-hJC6Wutmt6N_S6Z_LPNop|3e8pVM~v#oc7_ z8ZYb_N+|G(HTta@x9@+Pie}LbTXl0Zn){tD+d-d^JVjbszCHUto$s51vhl|4#PU2f z;`c{iW<@*#)lJ%e*=G!#s98_4p3S%I`1DJl-5GkMxOgRx3q8iCU_@Z6PjR$o|9lvo*A^0f94RAC-dCKglIeSVnk#`M9&^J2rL)@>mU$U{IYxyZJsmeuaA$!gIyL#KoNbHfz9d zv1mPUsKA%;E#6ke>b1M>^K(ZG@%$V&|Ju1{bT$L`%@t`6^foRzDLanrG$)~Z+57*hOsm}JMc&@bv>!f1S z*$2wuW}aKh({r`jY$`|6@Y}`|d1aY0Cu{dzCXZ{v)Hi3H=5Bs_oRH?Vsa){`2`8>$ zQFOrsv|u7$q<2@J0&pNlAe7URs55Ml!?k?8Yuk+-|>aWk0_iVxQ^Rx=jsra(zR?Z?wCXpp) zvbET}pPz0;J4i0$#(Me0+}$^F(Vqs{i2ShHrxV_sovJBg_W2wd_RTsWOzehWwuEqN zRD13Bif`vUX9L!td3EyeG|cNms?^u(-yAFQ2D`>3Gcj^U&uA=n&_pGNTQK2N6BE7T zdkD6dYEmUoZ6vbhO1>4x5MHI}-L?E@*Xq{jgbqgR_Y@bio_bE-|J{4fI`O#`9kJl#1$xMpYW?j6cV;%o@C^!Tpk@)Cp>pTsz+`SB z`0ZKkuh+NXi7WE%JmKrJ0^TPPk2WQzW6ap<*=J(l-b=X;E5SY9vW9wNzbVi6{D^vd z7w?ahUN6oEd+R$HWh_CLc_)qPcJa1rsy3ZwS0i*jL(2Ri3pCm3N>&RQ*;fpuCoS$w zm_^|S#_1;h7s=3d_Y@mEN=n8-xY_^%&J-Z@!_HX$rCQgw<8&I>Jvnu`^yU=VL#QWhJnGR6*2^WPAuYvriqhNKfHE?+nyJAb*?3k9M)4(k646i zGESCWYkG2dCv)ZM;gsQw_}s*&sx%GMmlF>YrK&g?yX?9-bgB~eZ$=2~a%p zLYP%1=rb-5^7HcwG|abxsp4iv(f)&hQuf z$?^{jS-;6ucC^p*9i+ybi;3sY)T=+sHFwXF1$xS?Z!aG}3JLoc8#bw%-0bgJK&@QP z%IR4R*>rB=cR09Q)pOQineBMZI-+Oe=Ji?i-m{P|M9r%AI>yh%$LPNJnj8xKo%d8N z$fUcLTqE0HG}@FWWC%7W#>a=GEQ4gT{5Y)5Tlc5Oc=4qg>CM@X$C?L14DXHnv)A({ zD~q#o(?nN!6<>UE)|)Aq_#{geG2*QAc&00|AhzggIw9_# z{zU-St?uO~d-mP_FZt``xxwO09Wu}ALWoEf-}kfK_F=!|E4HePH#(mF9u~zdKMxyh z2a}J*M{JpH{yW_8vg}w9&whATh5|ey3gk~0SBd6(%n!hruyw9nH)R_Zw<)ge^6Dm?k`>^d>@ zm}5RWcbLxc+{_rp1H%|FxYM4vK_nGl-<{p=&tZ>zug?`e{buc+xX2=U(L0~od1f@P z&(&eJXBOg9Q=@X8cW3?1IsG=3)UXqDm}>FZ+aHns^Yh!&6R7)iUv1EL#K#`R7<~8% zuWcTmSN5cX<)IZ{*2BU6GBg`b#wTCCClULw^gdPDv>JOssm377R4@rOR|#S-iY(>BlbcM3rc zc_Jw%{ysgwV~=XAY8Dk{NMrf&Ih??8lcO@zy~d_twSG^BPRy!1*<^AC{ILwSCyVPo zxUQiA34VX9-zkhtGZNDtn(w$FHD2Oh>p%(S;D7j?&n$WGn{$nBs`t{0rT4SV!<6;F zB&^bbGP+po=b}R~D%S2D z+G2-)re7f~q&F{_r&GcrG_&@cwxrwQ(OyL_>&w6Sfwuen8~f}GWN?C;##fzFTW!2P zYy%ao230sCe|dF%6VuHrMFGUu!Aw6B?nJp&$_J~9UD!gLSApLVP;D`+-<%4!Ley|u zRU40sp{KSYce%_v^@PLs;bSc}XqoD0R%9b!H!|S3c~HFRu0FyRHzE!&WojCjqPV8BX!!6&8e5tVG|@ z$-Y^2P{9&aG;(SvGf9|}#`>Q*8+rV$?5$dOygIdthn)1>=W6)#tMj{jR!pnJ$qFMy zqndPnj=|Mcv>prjmqv6ds_;_T;^RwO6%*ZQ$_s;e5j6eSep0OZNe+K}(gsUnjQ=>9 zj`hiCg~6XWNPYeAINQlo;d|={nl&Y(Tb)5uT@0QVLNkQ$MHPzp8pPn%?dhLB;oF=c zT*G31WXn2H_Os8#SKcmNzY(&mGSKs@zK}g@iP=(WZc@+)*y5Bq5?q%&qvnq_c7l*yrlUPs1+% zfB)Y5XSHvSwWhMSx>*zty}j&HRO4mS5PZ)@)e%tRPF`o9pTWQ%2v?8u&MBO5FeirD## zGan8HisY#^p4P@6ot2t%?_c1VT=>OV!?^^{%QzpN9qHRs2l49c^3l1@RM)gCE}JLi zvGSe!%g^`ckLcJF829L~R&%t;Z_RP{9Q%WdH}9P^?A#ezJtmr)Rd#mPXL;l=Hp0ev zkMBP?ulQbfTEUTjA2~j37DF=^OlnAjkI9_%#pKy&&40Q%dqTl-!0JwtR|f;b;GqZN zzC5p06G2H98cfLP>e;lRmnyi*_2rWp^(4y-2QL!yu{}1@r?P6lzSr+j`aPTMr}^YE zY?EX@?>V2iTgkoOl+3jd3BfeU-g717?YGrnC3%sry3Sd#*mFG{UShKQELR;qo!{Fl z66h$2wVGg+Z>cZ9RQH{t3 zx}zjWzd8@EgxdJE9B&^nLFQ~a^}9XmY9?EKefCu;xt3Q4Gx%X=7oMsO*UOgwdik~b zqpSf9YCjs8!Rj%{B9g4nyQGcZ^i53%FchSVwL$uPT5g|VU=#YylOLpQb}Z&Lw!LN| zhVKURuFZn-uR0(;;sIPEo>)I@RJq%a4$Z*WTgMNPw15SxPhVHO>;CNZ(PalxZT&F_ z^RKSX`hKob3+d^&yHYTc$;frC?|8 z-nFf6cy-y?^)oMA3~#*t%jJI^T4$YMbpPVe-qR@)zuuo6#Qcy!Z+0qkr@7x~Dz=K{ z$&Tz$uM}hR(?@w`YXrm}XN3WuH2%t^4lio~8P#G|5&ADZ6%>8v;VKh3P) zoZZBQOt?=2dsXDH=Ka%mN&nMxt+)_lxVt_?giRJ<2{O^e48n}DIHFUQn>@&h^Rup6 zM8k;tpK|&j_g)LxE3WG^uT{!BKkC`cJn}!Q5JW!2^5R6>=0*%M-jQ=e2=>XQ!#(Ud zXDqnpgL8%JSSvZjO)NY5d~?}<_gpzyqVKXODxr(Dde$sn&^1Ad3h(WCKS}Cn=Pyj) z=qw7E#qF0T3%xzRJ%8qp+^?^7%%SZkE|*`5=DIrk4sT?h49Mq?f8U3l*l()EVwj{G zMN>_BWw1X{p_=y8&%Dm-FHPnL19g&^w>Zwi>_rPz1B9|JFOILr#*+b>LCek%@89N1 zj~pkncIt)WNgVqXw>@W~LL~h!&lO&G<;0>Yfn8v0Uj6G?W0`C_8}%S-n>VRNheh+& zoPE^W*VV7@uz8Zr&Q6s`yZ+AJT{V*xS#;)zQ#Z&L~NcO zgknpw4ddS@lY^nJk1jagbzhvH__KX6*QQYE&dlRSUh=iWO*xrc8!FdI}2r;%3& zRiUK0f*g!p%8BKr^c*y};yxRBeSS+8*Hwe&yNOcv(VxZW%ar<{oj=~s8>Tk2VmYf! zw!YjcB(KX)Y}!*^ug||5E7P$|MSvL}zrpG56Olc&_xh)*>-CZL@wCfIY&1N`cd@X0 zz4MQ=+dfALe_vhPriR&xO}TRU@?KRAF6gxNG2B%tl#_pRdByH=KCW&i^3-2sRO{7s z4!`nlsPz6+bF_dyH38X2Usq#-&Nzk>H`5oZvHyIV4L!0WEo2lsu@Sy=?=lS!K0dKo zhv^Po-(v1LOR)_5Syk**^?!V(HtgY(W0UhXTClczvSl@I)1vq^bjiZ)kC*p3_osP8 zt{pb{=rmBGi?PgxG1#mO)|JrOVd`I^6sUTnrji^ckzR^bm`P$}RLkqPJ3iq(%$ zVuf(uyQ(?$5kK6&i#cw%Temu9J^$P@qbZH#=GeeIfHk4!&5;bd%eM9<%}Wy(*M4x` zw*rgM4UR*JeX1j2Jil}f ze0J?R?2JEQ#}lW}N4tD9=OSbb87e${#$s3#XP3eBXeK0d{kQ9V67yiy`l}OR+0A4q z<`ZwC9xix2UpF7k=W3z*$@=u3Pd|tG;pGdys)F7caI?*?js(?(Jf~kMU)`fseM%A< zi-N8XiS=sy)8v_UtU1#NnWNhKWlxl+VK)weRfv+K#m>Diz`1k~O{APSS5L7hyAEEr zj!ACXxe6-T*IIRd^Ul4}kBcX-?qi{LnV1WUJ5i0vLyP^2SS#+Q z9k%Dj1T!%myWG#8*;f_C5B%f|ime`Vg-(a>t%mdDisAk74m7%JY@?2IeHm=_9=2Q5 zgmza}v#MEC?ZZ!_VcCowiVS{kE+jr?{hc_EFWArYdo4ygt6_2bW?>oIuH+|4&ww^_ z5lz0Wq^O->Ok4ij%D()vIL~gp_0`#P-u3hZ zDUze;j(N$llZL5eV2XF03F#9;nt$2haWeM!J#w+C$eg+cPTb|*?MufGWBskVAA6=M zYbdy%8mpw9&Lr#U)fGjlJ$+6Q>*WtRvCNn6w0r7n`9IcC?S}(T`p;y%Z{ih4e3VY? z=kLkU(SLjL*DhE{4Dh_4tyAqx_pM9#vhNib&UDsdUTT%M@9@B))x#kJM`gR7SKvda zECZzlcAV~gSz^3NCO;?B* zRDsY|991)`-R0NKl=tV{`Is#RQ{vU`i-WoEF^iG=%d@g56n*8Gco_QgaZ%3}ULi$! zbY~0qZ~I}$bdStFat}iI5dX7*Tnx8Qzwt}f|EtS_UR86b zet3SL`q@aRA5vA(v9Jf?titrikJ64IJW68wm#-v z3<7JcT`nrm@_?GB3?4>9?Hxz??Iq@Aw?XMJ{4oARGfYg>^JX4@eqQW4aZ@$Bb6Olb zD3MiJ7IVy+cS%PEwt&F$)%0WZ@Xp&~-&u247Y!n$$i3sm?(LWVtLfBMs$PE1suQ35 zZ(2i}ktDA>7u*~f0_;17=XZDGEI<1W2fCVGkSfFu3geME)4TVnBGwwyX^`Zr zBQ4&3#Mb?kzwq(Y7=AWnPoyiI+nrj^|&~(7X4aN9)QD1eR}Kx8O0L&eSWUO9b{>(r<&J)qDp2pZB$P$g5jRsuF3uIeylhS=N5rO;YUN zWDE6GHrDO^!Oy4HE1~iAk(5_x<~$IN+B56^^hn#2np2^wl5~B$?&xTJbvOHj$IkRH z_+*L2#7n!qIqQ-kYr3nbNOJK?-Z{sDB{oUB-R0gNu(oU1*SC1yr`UN&)e`_%Qxo~2Bb!sNv@AprFiutNq8Cd>q z5)4Va7G@Tcag*G_hQ&WW$YpoC6-VX$qQO4w>ikqR-k+PW{%2>eVdu1o6KUABK zPZZ1~-U?3U?xSYRWThl=j$YVSG^KkcMJ&Yzx) z7Jociw*n8Y40--{@7BI&fVg{dz@34MfvO;09MpJvQLYFxclo|~r_Wr8WghGQIq}{3 zXRAzAU>9B*9Fepv#ABpbJHB+zETf3({JVcYsw~%>aIX7HUI1R|9`m{n{RbQ zvRf>P{hM0j8auy~ljpCTG(Qy~n1roj3HJ>T;(BXU74(g3Ro)|`I%c8_-;gS4-<&n& zY|%tJ_P|cnbK+jUXVZI3uGi~iV!bL5wV-uK8!pH8vgOn^R{Z+9CT8iojqeD>`r>i* z6&ZXwVgf>`m5&F z-}BgF5%ualtI>|^P3@{7F+@GWoM7WtS59wI^n}h~MAwiJ20~Z8VAfs4VeIC@{2_}Z_ccoR)FdbOaAhwhnbPII&>dIW z@SP)@%UiKe3Oz?K3{;EI!u$biJbKwGRWRiVD5x%S9*b-j1;vvu+cm4uuv5qI^Xd5=hSU}-L$#qUGsa>e>%~RYk7{~0Xik!C21jCV zd>>1{y}U*zYxVDTmF{aN>t*41rP)uOP!G+sA4vq2%~)n8&9luji>sZjxr496c&rh= znpcQcd^hM3aU++U0V$z`m95rqbz(HyF7ff+PDW=k{>fR%^!Xp>|Kf^2zdqKY|Jr-v zC9Z&jo=BuETbEU5f^H3;PM}}j<}bW3lZUVb!)z$pW(K}>yglc1qMUYLukU}rCr$qA z3rUvmA0r7mL^G82y_kzu=zXlKu>_4EE{3WegE0A^>4TiqtSbcByUxcub*;MM`Akv% z9!#p+nkvLd*(s@6Ii?X+gWR#@_yVT+zAIaWoq5LnxTjSoc5&LA>aF-8q&J&*nO7m$tns_^?;UfS z3)IkZq)A~ltX03gUgg7&ET)@iydYc~vfx25cG|J%%C4X;0b>LEnb zsm%&u7rNdaY5LAZnF98Bu}M&JV?pclMmwadd&dfV7Gmc!!n3}tpOinj{(ecbVu%|C zT>hB(C)~}-nA5emsYx?le*DXAEcQR%&7%1kZ?l*QAY@F0g@|l3OrQobHJDn(&egaZ zTk?l2GAuQ9D!WxfmjUOKvaT$TTdnMe1!I`mxfqvOk~y#PmW&No-nmygH0Q?THq1i6Oi02Fo06gLCkihxHPyA5 z@!0Owd0mF}_Yc`jb}ZWtuKZ0Bxi(LDPu{QkWACt$95Pd{u^mhKt(sNDngn`Uh;Buk zmHTY{#?s?7NF>IGko@ZWY}F(ZN0ZSes%1RqK=<6sj*rN;s*VSzsIcfB=XRaAY;v*n zPLaY!*;EE%kKs~3?*x&A8(o;cOwnxrr3^%p=e5v8#8`6h($%WQ`bCI#x7vF6Wl*I8 z*PY(K&8muky!$B@7T%n(9(n1TU1z35%X%falOw8Iac=Bt)z6O2Tp45Gvd2>n6$H)X z>b^}e{M7N`HqV>SXYW-j!(04)XEOfTC?WyNh?uULs(E+{vgEtNo|vPJ2T- zU0z>k8FqndD~zpsE;lS?m)@`9daPx|_VzHthk1DXE^4uecply_&%*f3g~>)wH53_D z@M%^io7KFgmhl~M{3Z77o0aCOdG5UVqF7*MR@sxCVeF^tV{VwNreztc(vw_G;nud3 zuXmo#a!;+ypZ9Oc>kd$NcxqHW89c=|?l@XjjoQ*-d3!G(j?By>x zm_G5&uv^)7m{6I@G@%shTkRTNUn&`)3tZk*;_mDJzrX zF>{nf^K=|IwFdlrb+m2oo#4jxcSa%K{qr*;!^TDT6q!1^>1C&mFWR@hj?K$jy{AIJ z8O6ZjFAn|uyr+Y>OEs}rWciMy@os0Uc%#)uUU6ww-;V6$m1e`S8JqmxVhu@ssn8-#&5vGuGKKe|RYMYds}!44_v zc|++)|`bBbPZwmw!EZWzyvc5g1!_FI0$xLbvOaem(K z5_yz8OF|iG{>P8cM0|1WI-VGhvF>{6hog=AWyB(6Enjpj0!G%ajzydAObs{hlp+6q z;pXm{dwtL@vo4b6@jXe#4F{HGi28sx`d674nBiXSTL~ z{X=~N-gH;px?HzsjWMeo#0i_j%-bIkFfp;8hOoM*ty2Hh6~DhY_sCr)09a(uQ5KTl zn%!-l-8lnP%nAQ8)I_H)D~q&3n%8TDYxFuFZaGK!gMm&M=svsfzsO)TGMO=U<7m9+Sa)%(19(^A#JJhwI1u>#w$!b}t= zg8Z%)8KxeT4ui8i@30C+m}$>v=jZI%N_Z}`nc>gGyULX3Ri7sAq_@|im3Nz&*>lkv zqIH=?#@ln(pDyhE?7Y$^P)ObxO?%hJtPdU|(&V;h6w8@i_RQn^t1BRokd95?{}B|AJ1{ZJti6+=a({F((!0g!E9AVpXno6{+5r}Y>=5< z+I#wfLF-F#W&baaMeRIw>C{C}=g7&*>SE#ZW09?n%!qo%mxafB;j1n{1rQVRDC^z- z?n#=eA)CeOf8)iE&TIYVn(^*VDMUb7ZYM{qVk$fJ8{dVNDibIt!M%bhMy6xQzA@7s z>%$&fXLn_*t550WOrwaamddYusCr{ZPr}HS-hnMlz@t8YV4g|O>OS7F;&`!|UbSD; zhqvz8-ujLy{n9W5`Rgx|81iMRWSc#PH|2!CADJiT)GeverUD>yXtTn2%Bz!Kd$&kw zXWER_@+beO`u)v?W>hla$JZ{4%SS)py^X-B8?lu-b=V>Out(qUkl#(2vu?F|H7rT# zWzIS09K909@WcD({kufo=fCk0T>jzwzjz%VzIo?i{N`Hx^!A4*E3rbTgUy*f zZ-z6ENLn(j-PppeRbO#tnc(pmoku^%k?{E0(Jk)Lag=}h?73=Zb{%iC(smOpg84T7 z>L&(8RU$J3l~pE+>4?wWKM^;KJN#XxJ}8^`8-HWJsd?z(uTbfl`pbOZomYmNP5x+j z@5}z}?A%u{wa^3}ULtcm%mLl^7uAEZ_7g~>r`d4G0H538=vrxqAb_Pq$?%p$MP%8v~A z>G_?V*oIBVx_$oo!z1yR=hdH`$5J?4 z?)&PTqJMr~`{4S!!shQkJ@0>TUi6AD=SRY08SfKkM@4r$?Vxm&SDe z`Zg1Y^@sn+p~@1s_Ws8Uvy7b>HxtCscAEOTIQaG;&g*mQTEjLz-!r^wC{s zCzfO@{x*M($xYZ)UikMPrv{i)rQ-XJ2*?;)v3AuRO`(HPj;NE*bEoXWV;HIA0`Xu5ztXG>aQb0Bu{#seEbL6OuH`S6RCm91N(Uz@R7eyVey1;~Hje8Izk7F$ee5TeJ6nJO zR`~eJ15ep`mfcJ6(| zf_g%1hVIsO23HSAr-|^f&0wg%pZ2t)c$~zDn0RgO`ueOV--)U6PVbN*$~ zuP*PvdT5ek_FOyfg zn|0V$hXWNbUB;O2h$&vD`rD|q^Xnt!P+~q}|G_oY#rSFpt-&oFSBc^#WoNGR2#TnBS_9_VZ+r6#nmVviP{aTI@6(ymtd@ zeOac8hR)c5^yU+N18IC=&uXRniRT~*2F#7>ZZX{>SN(Gf(v;2<3HK<<{^O&0=H_uK z^LP>kg|RSyTh-N2Fq2Qa&C^25B5a^%o!&CkzCE&)xv+T|+-uhU;8>@Ogm;Pp_Iq=z zz&kp5lF#*`rcOR@X1RIV-I}bXnuF+U-kcdL_5Dwz!4VLfHQ+XRhHLCuypSR^^=Zhi z)5-FVecGwl@fw7}4qqg}=+C!awfaPbr)PC*^<42hJJMsl2{qGiR7J#b)eU90LHNCU zhNzj8hJ%Pet^I8})Xfbs zb9qaixzCM1IgcWeatgyTc zL+li{hNHSz2;3-@fto_)`H3%_?;Wa^?0kNzWVDeD`}R_nrs_?Hy4U&oZ{&*>9m#YMs>DQgRqu0!e4&} zMQy?BJI|Q+$0o8l+*v)TNuyqH4-fNvQu^H*7_WJfbG z=Q>fB*GcfRv)kjdCoG9y>SxNad~~#g+MNhbEgzCq zZ4llB&pf_RG*c{!q51- zc%Hb?by%ldKG#&$W73$7{CKar%1LwaL~h7|w))MoqiVUTx{A8I5ewG2-E(kuQ$bCS zvU%|9v--V{o4TMbRm_Z3FLlDt&voiFNS)n>=ZfHoDX5swrz|Gs-MeOGi{|mwYGXsc z!A{k5Q&*fRM*A)PmYCq^GlCbDq#1_IFk1 zigMFtM9~=2Sbfiq?P`~aCAj4O=}*~ZJchTvId?Dn?$c{!3~R@&8)Ns*x%m?h-0RD# zx@y{c_YtNZv+ZcauG?QvL_At*Jkn=qoJV`5e8CnN`cKD0v^5iYxxR1}d+EXBnC3@$ z8w0BZ$40WLSS|PV*Zwfe=jWRFwm)~e<8Gtuw>6%aQ!yvq{WPK{GSx5QqbLo%p{R^; zpLc{OSJp{%bx(7Ac2)^{ELx<*h+a>s;S+u)_AH zf~<%CNNaYYXRvR*;>L&9Wj$-NmTP+ozNvs|3z^quRl0G8J33D;V#x9Jxr1lyJn;ZS zBmMYA-w;CS$4hy>_$gxKAjsS~QBN+pA>scqh%}c5f{3=Vxx5?3& zzj<@rq*oVlcSdtROS6oh=lSGTZ;}GBkF2B7`CxSPIYn&J*`MCO+C=>@Psl6+rna?S z-wO*FkF%<=3I?k#yjw_r%kEG{26(d?*)c)6Fv|=luuo_9gRSbD@^3LQlFjF_mOa?p z4%UuA#%sgi)l04^Lbf_!Stt6_-Lq|VQ~lC-zNcGfuK)J3v-Or??SZ?o6fNpUioSAU zdUPFZl9ry<@tHK1Qt1?-RTKHsbAyob>Dnmf4awAL)P2h$~O7OdiY&W(P`R9I~6dy-De*&-}%pHKG+C8 z;kNG*B@7D9Zw?=22T?ocA3X!G zHBijSW1;@#{)o0>E6>)keh7_8G? z)p^S}FUOI*&>0ZS-0|TZQCt_c)8J0PSe1pYs8v+_J0pPQnY_*!$S`49aBY&j>+VhdOF{!aBC>&955mHoU=1&n2fT_91m3(0r( z%_6KWCS)`Ggk#Gyy+7Xc9d`J|m3_-Qd$&uRm1eBtx;^c(YPzvHM!ut4mr?h>v!Tzf zxD40R5xzOsVNagg3D5emxaLLDPwt3U}N!lvgv>P1i`!OEr zXZ6?D&$2mLtEyUW=d#{;|E&4uoegBr@K&eC-jDTcHiaI1JX{tY9{bJby})=KCPdNH zFn7PpL`|{Bdvt#6Rm`NSxKtZ6{hTW0xh+J;tAoNn9POGQ7bSV?j!*fE{WepE4gZxL z(sNKZ`mkMId@9Fr*pVf)x^YGwRSi+R$oAzj;QPmBl zEHzW@Sqbj+BUr=V#S(R4zWRaYML|d^H?TMq zlk47(yj-D*^rpHoXIZCfi&(ZJnRp*v)dlmEs%MR93L*Z_ZgjnK+9MnBi7A0x#7?tn zzW?{j6Z;%kdK8x;Z>yEpmt8jQyl0Z@j$$!CS=XLo?D3NY!}Q-A9qy+OJ6i~)S^1yW zd+I|v{^7zA?Zpv}EF+sVV1R$Nf;+xESKO_!dFY$#-d4iKY`ve!a_`%VRUlYQ&2Hts z<;I?P*Fo5)^X28xJzWYvd!p0T&p$cNx)V>bz;N_Rv#X0u>(on@(+3qI1;%3Jo%+;K z@!P%T9BFv0o}>N?8%<48veZodo^~(l=eteF%nsAD(BPx%wJ`AUc{gtA+ZA75IzE5q zwrYFrH?#b>k`-lneymD}S9wU)XD=~0dCP0}8Vz=<6dxxUu&VN$4A2=*xRYP3|Lu9V z8d5~w|Nh&?tvf<43F@arZ#{Chaj)yF`S$$FQsu_kZ?uPIo_AjyuocL7>9OOOJgw#t zBjwbmpA9M6t7_Cdt|B#lzR&&c63Rn*=3(h-xu({zD;B0=!O0j4gD*y0)m}Tza$R|t zPyJ2Tst?1}ML=V$e^80gcETT^{Fq6QFWVnPK#;ZW^mK4`@wQg*%4T zF^}hsW{PBwtgj-~m6cQOY!oMzz2RMbHa(Fpy&bG%HVVh)S!Da-%7taL@Pre{l*L>b z`%DK6$0{_d?v&A5uP#q}!X<69@YKvuz^>szMvX1qITHp5CcmCs6w1~Usj=U8=iTQO zUAwEf@H0K2Ckq`r45Z5Asde8IHt2Jb&U`Vu=9C(yP$D9b&4p1w814oR|E$O`Xl8;9^5 zPAGoaW+LLF%O^=~&O>weknOW~eivmt@L0*u3g$9S(0b-CZ+v)Ok?&&3sg=JxzgMf| zyNQGUa;{cKuoj7%3_ebw@L?w{kDLWNJ>@|1&F4DbJ%@Zc#bc|gW+;)R%kXhN+xLV; zJC3IEU_GQ)#<%YL`(-&2$DN%I7B6stStcLQ)Py=rhh2QO9e?-9E^(b&6bH_HgZ1LE zr>8Ca3lXq0n0R~n(>vsB3e?<{1R`@Lgt1?dl!uud5Nq zYGYID#Yb`8+>5o6ZDkIXp`;3a_{AFT-zUh+JkGWB-f93oce)>!Rh4FGGERofT5yxz0@J77T4kp`>bJASZpv1N{?Vsy2hURHpQm|*A1kGb~0o-1gf5|~fY zcj9lhoo2}mDdb_hJUG@PYfK#@%&0h2JKLvi-=1vr`T2G*S?PoG>Q9f9YH6R$_0xQ!cJKJt zbEnVc-miLdrpSG6>+>J)>9e`B{%7Z|PtSY1i+ZW5WBR3+eCZSZsw>`CO~N!=esQ$J zD)*=gdstP3G*@qyQoNS|tf6|X!^(H;Bwo#z@hczqcWS+J?^y0$Cdaow`rnm#q3rhd z$9KldvkPqWETV3l1Xis|D$n4)oeea%sD6Bj3GIu=hxe;*uu|Eym{F+|KXqsjA_A?O zU2*Bt{?4^573#5vRmxh+cK2ufirZLN#0(cMnm;=7@@CBR>fMSMq5dd2SuKwh19j>2 z&u2-(2Q!n*H>`R0Sg05uG}{{%ioIK39LHhR%iE>eX;@HYYIno?cbjF z@&KfNaBP;GG)U5W=eu&rS^PwMo}ZZ_t@w)F?%8m1saFSKqGg{l#u4x_StP9WiK==y zUS54wrdj5TYaM+z_Mm&2I-FzAJVvguvwzvf)n;NNM@XBK;q-IgJb|nCgSBE$_e0K| zC1z(<>1o+Jqms6GPDgc*_pPznx&C9bYTlD6r^|XN0v;zE+tEI)x>O!w3T9{eL0URK zUJDN*W6qjh`t%rk_W21pE!#cz(ANF*yyJZ-CCr5Vb*1LEKq^e8ZO^LnfIg1^5{G;IKsAl%;-l)D!5Hb+sw7GaY}GU^zOCj}EA7+Yd5s1ty*wRC)(<); zSc7q1TRx9<;{Bdbm>J$6jVJDN{-;x_BpsYKQ5QqiV6Wfd7h3a!E5mnM_j!R(R&J#= z`(YE(j+Nk<2XV9avP_*mAId_WrIP*Q3$M=9+4Zqn939)NX5Mw*V;@3BRa>mN`6|0r z!&kk2ckZ9b;d4~z(4X=xFFsmtI@~z%&V%je_02?V&5{!llUvJjq#CLBN#>RDrSo{T za&c7myH8bBdwz8!t^*O}%e>-R7Fj!R6i6y?IeC^^~h){3TRC~KIn4`8&k5U%oEPj)>_S7 z7tc>?ljo5@GqxPG-Dfg8=^Z8%C+=v*DiYF>hHo!;F5T>} z>Ur8fs-ipf|M0xKrz-q1-FaLtyNIx+S7Hg9t8P?b_{-{i$#TuD?zZ0?gP-p+zd_4B z<4LFH727q_VyerndE)WW5Q2T0XDbi5t-hLQT7*`aZQXsZ1iYH{Qc=R9Thw^&dgS|RW92}9)HLW)+UgYn@w`mVgW4}(D+3sI2i_d2$_&YA6 z*_~r{g0tCqxS_c!OYyIhf%?c{AHBoG*k_l`)RKLEipKf6s+Vk4gu_Iz;l25r%&PUY zT;7}dqSsXm`IJm{mu39y+=5LYwI1{9>pf?@t}}bS@8K&WX%Uf$aA|`^X|iP`<@Fg!!Pc$ zp!kV-^txNKmm?Po+ey8|3L6t+i-~95xAj9mE7ap;zkYsokiZVZ)}3CzIoI;UGKtuN znfN|T%0IGb6Eiy%g^O6;7B|B;TjPr_d$8WumjtZg$?D~^vDfC1D(m{o;U0daqZ$`F zpwOL|$?A`&ooZz=bd_c}!9b?ixMt(tZvRBldt`8qtD;W2qGDvWb`|tojWy_(?lPLF%2WJD|E721f&Y6} z7r(YPo5DnAbRxtGc1o_gY+T8jVSCQ&UY}JSCtJTe*Fg>(vY}|ce=A1_Y?du9=4qvg zo}QZ#L!HA+=T)sb9eer2tS=p^4)0bkH_qh3`%bEG`eeOoqp{-`XTM^tDGlz}PnXby zW^C9D0z-x?D6YGA&RGp82FTWTKtUjl*-o5SRiv3+v-5LXiZszUJJUjZmNWC8UG_k5*zUU^wPMgItwnzCl0%c$jHRr5 z_hS~pe?74fE=29t+SccXSo!|utC_Rm zBO*J2Wz%8AGJJT+hP#g6-7gYN`FKI~67$E-Uh63wR$~#bd~kj)2H&3hip%%U>#vUV zY=%?H922X*I<~1ht-5emc5X_ELG?L3Q3#j(Ib6mT_WkmbZY)>!uA04b>)UI0UZWih zKt$MRlEXgry>v2h{O;YA{dAvFu-DYhJx9Yb_?Cp$wS%3oOtql(pMN5JtJ3jm`l-0! z5k6S(AIBqQB;K>~RHycv%5K>W2ld<(Y1k>RTgBawa_`f{YBd$B&8#UL(1phLNvqdr zCi&)Z~T z^$Q7$d70gPW7nN_k=OcF5>E8WV5?QEvvZ1lR;=A0bG5nA_ZK%z{O~dyI z+4fv#yU3U9#ow>bN)SiWcr~kt<*|smtojG~%B0~??9bE=*6B8;;diPSLv{TSDF%Z?oq7%a6P4Jb^O3$ z?7?a*LgS(`zxchZs(-d7KUD{1vGpH$U9oqvt{rI9InDNqt_q8K5>K?LQ$^lb%Fo$@ z2ex;7KIIy;^YYuXuB+*+`BvwAssYV5Iqe(C-kYgV-8*ju+ay>PW~Q)$weddna7%No0{_8&g3r#rn^CQ)Czl(%`)GS>Rl~p^ zmb1H`$4>UUTZ7HT#(fU`h#K;eYAvzVE4ij-kKJIg-a^jX$~0@Tjn#Zku^5`j&PvTX z9^>QDUu4A;{Hjmm?eYEg(z7aSC)fO|`+!FOO@dcftgGczNrU<<&r+fdW@V<>v8UFu z3pw^1K(}HQK}D*ks$9$0x`KU%(jM~+GC$g-tn|&fu3phKudn-K_Lusxq-sKuZO0;^ zBYS>wd70iYkX7)hpP`8+vI4duapxb8962#`&%!2PU5iaRmua=xg$MDO&(SScvK#D$ zzKNFEVRIEbx>oGWguv&}LhMJE-==aTyE?15V7qV5``?{^*)8O&iQhl3ES{gUjSdP@ z@w!#sp1Z|>DwBs|EU&R^G%pP%im9%vrTSN4S;*>*k! z*c3y>y56G^`wd$ZaTqb1_k30v)_#MAZ_gTefGs=Q<$WG}wC>o7luan)Otos)Ce2`m zj1b|!i#q7NR~Bq0LVq|{sYb>Ji|1G83bviy=i3HI{mA~FCK$hV))X&}NB`|u`Va4H z|I%N*ohNMvnXx#TI-5+^kdRJaT^8rn>_DbiN_@tq!?XO%6KoA9xB|o0$)ux+Aqy<0 zrM2j-nsoLBlhuq{+48QPi(>YEbNyVMii^wautc9KtciJO;~B3PC2MV(@nZGn-su(f zrL}iHR3+SQx{}W7suSI}-eL&kB%Ggp^ll^YwM_)XK#XJN>gdR9vusu{_#f z!YqhY*oCR@LRM>^S?~Gt2914e|cBQ+Z{#iLdcn-SzZT z@$z9@0&-yZ(-(US``}m!O z#*%mDW5=H6eDokp$vbmqfuYjio69CiVWrn+<$L!c@;*Bjc18IRZ>rtA<7D2e`R^qQ zyz~Tq6$G@!G55%Rj?j&e=CoCitn&6)Y4RQE#uLr1NUVyg=T+(X_G!6Q)HLb3V>gSj zIBrR{c9j2UX-~42MPXf3%{d#+e0t84_lE=Ts8fm3Z0gro0b@WcOh9uvc9H(vI&Y3N zoyYMTso~qdlV`F3*+Y??>@v~z(fLh8i{Fp0pR81TZa>54`Cnhaj?K!N55qF+i#IDJ zKbG!*4TJ3#9`3(FJfB~vY)$sh^` zy{;LyaUDOf@??Y9G94#g`F!HVdbmk+c2%+H`ypuC-v6`jOD(Ig5-qHtX7OB=-|_SrxSN0Ag{16T=X&qEReh{b=Hj7|if86o!mrL%Q=8_k*XO<8zFV_y_o>y$ zQf>UyzVj5|Mss_TgatpoB1e>ed0t`hco=KM1GFcr6Dl&2C1#u6rd}_0-$;UPXtFal zq83_}PR`j$3PzjyGdm9>&cy^lw!dT!`E{#~8+y>|Otv z9IhKq8OiREj2FXa))_{upQ);uj5%m2Zsj~xM;YufmhX}BSf^k?5e2WTHTeODV0;#N zbAE=(UdiX#&>i;01!2E^*E`h$FP%Qzd2tzZYmeP;IdQ5@RveU&gdf^};$2Q+C-q2~ zBIejtVG6#gA@FBUen7@cc%+%0$zH7T_Ob^YG?TNwd#%Xx_q;p$;W$;K6W=)tu12>` zR(|<;p12mK?eX^5+nUX?yKhi+kGD=>^hqQA>tmC9waJ5~n!kQ`_E2>7gpgOgKbH25 z0ad$RWuqe772-@6RfIv5{Qdi5|H(7FQ9Wbb=e2ZQop-8*VlBGG7VNHK5f@W;-eX>z zk&guYL(}zkxQ3fWQ`x8-!ei}tpZ?QRl(Y8qDwFreqI9=64`NgAS69tvkN@qw;z>gc zRJO==A+}xZ5Kp`uE5j9XMHOe3AvfgNA$|Q<{vc15hRCpsTUG7zJ9eF)?axP5=phtK zd!KEpN@5wBl+lM1WVo$4?|yMb^U3rlZPM9kIyGL2tLvNW$x6CJTGU0zMRHOo+iCpP z8swPI+S3jWc}}+5{9Jy?rrB+yCo6bwEHfPJ8knCf&%SUx*Y#P+rf@Q|y~{x`A};fX z$>ZcpsIJPnM;gq{H&J?>_9~9?BBYE})54m|GQ)YB!^9?x4d(nb_<&lwiROGX(v7FG zz`Yxx5gE#(kKfWXSiPUC)YpA_*6(Cx>^oTem$TmMOD22H=K}914oS`uc}zbvbLX+l z)TqP3udZmnKWE!##`haBX0@0Z{&j7CJom8|ZVW+V+vMig>U6*3l(_hJM{+iy&4=gC z)?-amV7{I?NoPys?o7^f8Go2do5r~_ly=u}@awbwbVm1@KwOgjp4~eS64!h+41tHt zb$FVb-yRM4e&WC?kG#;G>mjpJcZ6FEG@oe>RdVj0H71eRNC$|)0WvPzh00}W3{^*Y zXX@pA=daya*4a4iuBjT!WIL&o=S@~vW$MYNe0ZN94i$VuW@xR}6+wpGM z|Kp>tS(WHbSM~>8Z_`KJPiK5&a=KF!&IXu5+=sd zTQ+Oum!E@y;5$=54=vrZPm)8!muIKqAzr%k`PPy73y-HKSr^|U`R*|MT^)PRZP_3m zg#kGVXWZ)h5y{d3ozP|GLR5lG}wrP#}DrDa?PaA9%n`~d7{Z-Md#QMv#bf1XJhrBs>HA4|G-;g`rE)P!crP9`^@zT%EoxZ786f8s82}id>d4J-lr>OEZYv6%hDWAkt zJqJAf2cF(fo$_NI%!a%#yJ11QcY090gGQ zHa(mE*gd4;9_GUfpE9bw*i!G6MfGDVZyNgV)MKNS&S!fGua;-<&-k(as9xEc#p~T) z&X=nr*_<@)cN*EW$txt93GnRBCow7;e13itPp)R!c4T3BXl!YX&|U6z=i5_Te0=@; z&8Zr{J^%l|PiOGWVI=SQ=B;l|1@!97RX;xezP(<(v)ACB71z$VrfNeq09Ej{vl3CF z?hX5{e&o@?=~qYdy5Rd3ID)?7!%W>LsMumS34N)an!XWn<2hKdPvn>|-zA%ksx7c3I9VGVS`5&GHrLn}ye%tFm0bHQC4K zedo{dXLo&me#0N4`>S_Si_Li&gQaKsjt5oGY#i_BCmIa0)iHaLmb~*`DC?BXs>Lc6 zrcZMgsNi>a?)=i~eSSgpH`(>m^S&%$2R4}KwJN6Twek`#c#hw?))$kTP5LDD2iMvp z{rP2!x0kNnKM{}DW0L3mHM!ggxestiWECKQj;8u6||y~`p(n>fTnBkRaj4(j`r*!x~9 z?7WTF``DNR|(0 zigK^VhRdH~QjV2nWp@n8TCDJg3;kuGR?hZw9SvD~;tiYm&RbcVy&!0=xjz;0xPSHK zJg?FdzwYXZn#T$!od5rv-P@KW$#tD+Jc{rFy6?-ZDxji-I;k>&Z0L?4slkI-(jcWK z!3XAZw14~0Df1l}MfK=`fy#)z-ObivuDO;iGxv~XS{>2YwX;UtQRk7w+fz29eW`CR z$*=)EV%k3GzZ?DS9?hwYXxEub9Q*V28%|}z#$5Mck%KizHfHW~m98p=jOB`5e_}~I zFO!IH67o^I)>Vr1{O;4IJ*7|ERi2?^`k&moGc^Bxw0?6*7Wb~7`r3l--x&%!I=aS? zx)Wb?I$ZL)W`YskntWp`TDHD9ymsE=aX8^Vx~O>f@N5##o3FF{sfR;Lm^M-!9IU{m z{yovZ+TgHlZ>As5pNt1x)&nuXx0i<2V^A_qk~7X*8=iTH=G8&nQ*@M{%Fy#+XSMvL ztWLFz!Oi4edm%FSeeIO4lOv{p;r1KG9Ac0K-tI2puih_gM$z~F`Xv2j7Hlvi}m*~@S^SaQl@fMewf3-15$Tm-&e(NykY{hDpWynR~V#FD{ zal;6eVmK?dq{GTI3Jo+kS&(eJw0%ZaheDP%8|K7GX}egBVPyGEc-d3H1TyP1 zYma>ASjnYNw^}C6_|2&>Oj>;{@}}+SKAgxS4PJBq=YEi{Fi=%wckyF3AI`kj16S3x zc>b>Hva`4M{23Y-Jylf48gynW=uy+Nck8w@r``aIom}$Yu20~9W!c6V$nR(&HL+-DT5id}s7)u%gFGx2$hQB74JuQiLPE8?;( zSti+Rf=|lScI(a#gSkFF` zC4S8+ss`^7kw4u(jD7d;S&Z1q>0~IL&JX3ax`MIUbN6L3JlE26?#bm<{*Ab~i(oUv zv+!`bX6Gt(ElG~ft5($t_@mfT6_GCc9eb{JIgCJ_a;m7?n`GWUykfMTo!Dq>hHH#X z1OKvfe;Z;ti$7WATnP_8t?Tjbe`~qF6HtDhp6)dA^QTz33{{6~b?8{-{xr;@_1GQO zUak@H`7_SPm@wfCF77 z`Mvk%D(jT?EvqiA7P1*HLSFA&ij%Di=36tX9(rSjuE)vyyh69D6^3>T` zXXiy1<3C>adwS3HSmAzF>Nk&QUN_=i*JPbV=={$+&38IoSp*tohMgq2uQ%Ey_}yj0 zA^}h0i9AG$?0a%7O^Og4cbzNsQ9WAcEf%2AZ?1fIje5|+(xTsIL$rH4 z5uVg4++kB3mS3tLW)*eK7JCf=FTPzTR;E#_ShFTeRf60*9X~(4 zLW5Phuix3@E>`-RPmIl@v~6|y!(;YoAT!eqE}Q-RC5>3$d1SKgYQ7ekaeGL~m*q8U z>GCwZ$2aSJ871Fa1CsHJYo@zbK4<$RvL3_$e|gTA#*LF8#Pa<<0#aM>n~5rOT4u;60&^BNvn^+w~m z&tMD%kr1pxh%u`@l6t&Ib;<%EUc!Hf5`G|m$%N=p0|3lAPlT};+Jn8h?q}( ztJ6SNv14XTB{rdAR%8RXx?`gXvg+q~B{nO{6XG5|%~TJ1R#G=&U*E+|ej|gpQ&){U z?mpk$A0Kx6hwFOdvL`H^ZV6nI_N!|wlEQ)xg57-{0v0tvMi|eyb z8MCx5mh1oVvMC#XzN7Q@i5%#0y&VR3la&5eX6^oyj?Y@hww_V*WM4LjnV`h|_h|a1 zzn?K|&OSo{1m+nr()zOghz$PhtNf7uv^b2q_}&Sg=e5aUoKtDGcQYv#5%l7bynj3( z7qo^JLwusL>y+EZxHIV)PyXmxUD~J(=xO8+55!g9(CNINXwd+X;j)Yd3E|lIoA=b1 z$6EJ3?=t*3D|m7}c|;1m=~%`;_Ij(2MD~vlUy09eF7%PoNY=411x-+M_m>*A8qs{o zv|6}a5?ibT8xKJjRP?sMELJ?E1MFg8&$DFJcD6#~S<{O`(ICdg{PA`9fK27z!%Fo0 z=F+Q^1dE1U1#z*wsBNtG*BEM0QNgd~A}#qy`o;BAo)delFMNgcdq~H zj-A+q2t3Ggf4-y&-LdL9M+8ZodJ-|lj+etG8Pi#$R`+C6pO0l^uA!OE)wlOGJ{GUX zGh1}saOc{squ84)S-QW{{r&ZsTvjHib~G92Vr@O<-Gt5RRfOTJT&Rkx|Khr1d0D*EVIeZl;)7p5B;0Hv zqtb0x; z|E?JyZ%?es6x*mE@b*2o7dx$S;NYGi!%}x!zq;)Jgs&OtT*!CPQNn zZ>N_t{p$E(tX1J`2#0b^`zU##UOpKWFJMk#yq|Gn}36A0AjXANkT4cfY&-UsRQ=RLVa8@nLJ;WDniJ z(CxQ_p!e73_x*mleDkoLqGWL{P^E~dh*?z z-#;)1vG?~1iO9ROcOHe$str78jF-pNEXg}NF+d(!ECzDMsqgx$5uM|tTiq{lVf{Y4 zozIWWNYTs?@H&r#kZP4M0&B{&a%AC4iHTy#hAZ?AiotzstYKDcE0m|zheE4SMopPj79ey{7+IDlkB zR%_^k-nVe^_M6KV2lJfl)H;ZFn#p(NX6L8alB}&0U*{It_UsEDUmV%KyGGk;a7_2C zulZSCL}jTzUt{`BjJMJ{2rPHipT_4&+OAbAgZB@OynT`f*=@B>-Y5@1)fl8%`M96X z?CzFpt3YLsDvw11EJDtazKAzY)iT?aM`B6L0p(vlW?HK)SA{d5B=^gXw#& z{KF+dt6`{yJaWsxG&fs3`fP{dC5^>{nC%?NBIbOD9Z%=6^--3e4I#z&cy`|Mue?kKJ!X2JcA;tMr&7#g!6P{cqHuX^As7aXirym1Dc3$rM7P_1p z<%#VU=1Jc{dz|WuQ(Z$vUaRVWNBlIc$`?imTkunj$U9$OzolExB#5JOEEam^knb)T z?!Nf;`dwc9&2>jOkzvi(2wz=eS&f*N#Q*8KzV+4TXK-JxI^pXJEAq(qSBLla*T3(t z|9e8~r|Z)nu5*5{^uu-4$E!;D>H6mV^~s0J{^He~7|jfjfcr>O9WmY$8S$RzZ8b_V z2;2_%v(EPap5v81G%}BqY1L`r26|!QWT7EoSV}_D<*j}G^)=?_f6Lwqu^EcdqAQIz z6C8T_RL(XoraR}~LI(Wv)Mh)q8yo>Gt<*x6tCq!g4;zTR`&!dHW0ubDm><@SKYo$R z)z5anHcB11A@tiz@^w?X2A3pjdGN!-%iTR3KX-pl1a9vjJMb|NKmR7vsfjw3td=}X z)sx{m0p}OwoAfjkCg)8)EHw%VPaE5FdTb=q<|>C6AK{A{PjG59&Ft)Va?OdEf!V-;$I&(C19 zq^N10bCR%ZcE=J+)TOcFPY#wS)1Fup8D}?PIMefov+C8dv`Y4M=ees$J+O`+HASV-)iI;_hlwFs{(cPiKO#4mFZWks#&lh&U3ZcS(lULs=VR0 zI8#5+m}aiU3Gc7p_%K@-7uSgVt~FwK%hRFbbL16er_v}-l5S%a0o5Dz=zjl@xrqJ4 z<4U>}m-UsxJ}-0{SrtMq(Z_n#uKe@WrKMHHUB7H`xc@u{T{QczwT2mW+E~7mJE7Gq zKG_J?tR(NMP6{nEOc7luUcL*UOX7{bqZ7F*!%uqQ{8Ut zBA~aqzOIjx!}G@?V>`h7E+Q5?#(*GsL^dU_^BwYq=$CPdCQ<79S^m_!)kMe3zkOUe z7Q8>NUQC4--u&j8ft)gS5rtvgNn@5!o!$T5O%g%+`^yf0^FZu37Z#5#Uapaz-;T_0 zDgpX+UO|K|5<2UW4$E^^vsg96b?z{Z5^Kl)@$BZ_^PoK4-tu2u^E_wq82r@l-5ZKn zBLB}jpJ#H|+*)SRx~FwmtJ@gQXhrg_+b-nf?Yu}`&$H%P43>jl@1ULR&VsQecBi}d z@vQqTLdHI-lsgNsifrAMU2bm0zlh z!xQ{sXV;JAd=}ysOX7@{cMcj>pr|VU%ZF{_CRww&P9{Bf)9c?pt;A_pg=jW5iNPVB z#SU)nGFp$QoL%*dxV^`@xH4yJqp^wKr(v8;QqdC*wI58vVwh>} zIsm&4*I_Ew=q|rk>y^33Z>L86_!v))Wy>*zl?ngHj>|RoinKG(&M>*=WQdT?=B z*WM)|Ea&;Ij=N%F?7XV}&P#V|&4O?BqCY$|g5CSycxuIxb&90FyDaplhsD?rH}A~a zY*7AN#gs?kNUb*!Xt|)gOENUe>`eR)g?W z{MY3d*Jt%ZlHUG8@54XGpJw@`Dle>8sip6b3cc+mux+`DL{)_IfIfhn+3BT4sU2Bd zSEuMV*T3xNI@OMAs|LQk{4iZ~bQhUE ziHl>Fv%~)5!$Km=)9hl(li=*LF41i7UpCx{yJF{`t~=tpN$5Hr*@@5HFM9LNbXd(c zY%K?d9p`kb&$6u9i>X}9(uu=7>buzgVkgYDDrL3p&h@S zb?@e5Aw9(Y_S3U0SWs;=Y+H-?IU7L#x}qEHZCi*48WiR4F1=Yn^gidSkX(PBC#FSQ zu}n~mhFWVUGT+xw&pe?H$9xcQp2R*?%;{S$YSZ`S(yhLOJC~P9m5p!_4z1FUTkm;{ zjYKpqp~pF6`r-QBecwGSTW>Zde!VJP4zyNxM|SU1b#>>n_~bdlV{SN;?e|8-?j}oe zt3y-@vVDiVv4x&Is1streI1s|Q$ml`?FetoGLXPEIA66d0N>+ItqAr&_O* zyMAtVl#~Aat6yL9^t+foQARQzT;~(+ib8R;Zx^+25o6rneny9Pk5R%oHeW^UyVmeW z8uL{JWoZ?OS=s9T{xy<^E)j9|eLiP~blBR&oClxbBCIVAjT}Gxbj|(qbv>_P1ix(u zqxw@#AqVnZ8Dds(PaL<=-p;qxqh=BRRTdj-68R>t_%E$bXVy8*PCFDwnAps^uKcwz z^g#Z6X;Qtw3g2HppH9BDKwKA++&8SqChLiup7`fk!fL_Hjo_!d&64Eqe_6STz*you z%}MvoL;897^;6@djTJ-)N!z>V9RW(eyB9Q0hy88aM z8>mnXu1??+SIB>Kbc2Hraoe!f28*E1p+>K)!snwfoT>n|S?S4n+& zdC&M&EsIcV1p0)Du4#1%Wo+V`B0t7DS@(D(6zH*KjYV~Oh}^A-NC#`7tf&7@2V|@x zTZ`ngid$r!{CoVGRmmxX{cvdmVat*3#O5c5_e88{in~MaI;QjN##4c_7J0;4y^t~< zZF(X`$KXih=lFEI-`Op!*{)@^Sd7)^NpWzanm=zYTYbn^+1Utbtc%@z(0B0BY@L4k zcwH+_+O3dVIyXeCdu0X>ue<9-N1BL(_m|zoxw+UL=Vu8~7;AebRHRs0(TPW6M*r?E zqpeR6Q=RB;<;5F!M%`6q!mViP!_g&+$R4XdVCWu?qU?TlY2Agb^l760++DGC(y%h$ ziV&DuzB|l^=U9qO*cg{pU-|9)?YPqwZ@xuP75DS|%R`crGh6!)qrBPvh1JG(%E}0& zyhm?%e$GWIt@ZvtJZwk5bEWU$%_nybSe(-K#7C>@!#=(>x)EX-y0T;(`dpRp9GTfE z3CcJ2EO=es%#T$a)wRaIuX*FlJEF&h+joJvA3jwbA?wU%mUbX{nY2~A{>5VR8W|5G zVYySuxU2e1*EXBbt96Chzq~ZzO9+}L&uA=#i+G|p($&>6ZrX{S&Q-l;=-KVwCvsnv zq;GYN-d$s#6+qI;U+q1Sa8J1JEKRuo=DP1Zc}X9BfhZa|K_RQ2HRJKLG2dPPzxS8? zW(=BEVV*l##kZ{%++`-3lsk*S^4dL{!bkN$mYO}pClsw-T?ff0$NP4a?0?A>Sfkp7 zuOZpaDn^z+MHbmQL3Pj8;$;r&3o{rVaAPWr;bEt( z^A0-?^Rt_7M}P5$yv0OO3s+qQ4cTyaZ7rHN@820^zB(uB;|(>Q_-cjcN<5+q>}S}4 zE~BOC>4)HppRP}>f$AvfQf0p|c=i#_&-$6vEZ3VcB zVod0I-J_!8bYN6dXI(^ZqmX^iZ^(Kw*zS~HswzX_Yz-Is#GR*M1(~0>yOT%j<{ZoI z-v1My-~*Lle%ZN$)$yI*RH4R;t@c`_*HKb$9G#P%^;`ALQ$yp%T@*euHIA?@h_mUp zm27K+kXuzulKPh4T>qXsUayh$n{@`t6|u_QFO$e;VeWJlSjAhCVegOEDBJh(yzZ&P ze|>%X;gct<)nKZcoE><^8|rb`B5&(?{j>Vz>2!a(%{asN%coJrNINE{*F(0q*-Fo- zotwH}UtPcFpXnTL!MqBmQzGj-nVmf0$Zxtltz@U|f4)BPTuAj%sDAtTp1TID5)-mG zHjpjM4pF{gr<3bhj+WnFHQL8tvGxxSPjnq*)aj6gS2vKF?f?G47rtjZ`p_iw!34kb zx0$j@-}WYrn3ODI^}N|S?;uWXUmPEhmHUat7t>pSD}tN)f!>CfM-_RGd)kgc|g8|aW@aI|0sV%FCNzpen#gzQpong3| zuuooddi<#`b#k2%&wHO)L8du*yV>rDUX7+ErHpx>N0n6>tRfe|ddw z{+R2m!Do$mVwsC4=ik#8|LHOB<~Z86(zFj>49Hsb#m)T}*Sul?MqujY@%yPB>khPZG8PgT*XJfHBheAikr=9%59Ut49lPTdI8=ELXx>nzUR(qp~}eep*!yTC9l8B|LdEnLy8-kxp$Ty>U^7z?%gz!<_VU9JS(enEd-tY-h6lB z>~u{UnMVEH09QUU#Or&XV>GrUP2I-VdD{2SyRF^9=I~e)&hLId@gcUHkl$5#h3#Xw zJh5{!?Yg(0CmM>4{C_wGcknu`aCK3$8GLHiJN9Iv7^s=YlCbd8_1(@b7>x&g-f26$ zxJpQk(Jn<^gFaPIae*@?gQ_f^-w@=|Al<@9$C$)JmVX4LJ3R+eUk*?b)~Bm4aI z+O_=}eAL>Ny~Eusw>z=}>pf!?Clo8j4-=c6Mm&8-*3X}=@_90aO*;#0mhHETdN}*L z>l-y1M#n_|?XvkQm1n#?clr4uK7ydC9#$&9@*)k6&3N+V`u@IiG=J1U#Cmd z5bJ#;9b8%ubsy_=RtT2ki&%-Be2crGrZ}ln98TegmFA6MEX$Q&WXEz3q+qM_B+wmW z_pa7fGCh-2y)FigbZqYKYUrwBc6sgpBqCpa{PxnPbusPPcBeCn>+tf7{(EnB_$A5v zOK-WY_1jR@N|UZ^Ssh7cT**tZ6`!9tkkQ#5>Wmmes+(n(cpk#Py*_~$pQ&BdBwt>4 z@KW_sIB12G#_(|Boxh-99L1+F#nU|7YW}qq#qYmf|J&LxB+L^en~(05V`sRB-C`N9 z(krexJwX|{lP;vNKE8WeOv@-mRC>+cZ=aZK57mAei}3a7ZPKD>>q)e%x$#){nftTV z%O%6}X?&h|&U43p_`2GVt*da<-67geHRR!myPgnyk8D!LqNjR4)oYS2GrqsZbba=X zgRfKl;o3^V1JF&a#Sk@!?n9VXbNg*kLxF@l(>55r1vGP^Ew#@tD9 zY<>9EwI3hawFj4kxFAmA-|2;Cmx1;f-Zt0aEYZztjdY$YY4!cgpm&Mrb6=J4jZyj6 zPt)igLB;0Y9mo!>-JN{udlnOEvQ@Z;AbT2S6c=Jml?YefT*lX@t10_d2lLgb>)u^I z$C2k+bMlgvhf&UoslOkf0;?)!oi83Ux^6LKuGT;Inn;wbdSM6tXLmo-SDtAX2hwPZ zxqtVtLvQ^o7u2`j`l|cR8l$IC$A;#x;-}*(jjqsPD6fv&F-2+e-tVWBMvBD$~Ev^1Hk59t5OjSR8sQ&!wdj(i-uZy+O&blPb%lY{2 zzWXSnfAPsDEQK-t<@)TWYko6Y=h;&+!aSxXi0?L&8ee||9){HWK1+GmdfI#{8qC(3 z;KKt!b=_rEScWGa6?3yzW57Q=KpnKUhAmc%JH#v+Ld^XnBmA$cAb)TCt&>D3&G+U^ zRf4Jt->W~fWqdbM& z%%XI_^Kr^@N|A|^ME{=g+iskD>erEuXVL%)$RvvM))<{?$V#@%-&IL#q}(h^@yERt2k!PJE8JVyqADDJPvi1JA^`_guwCv+2wAeZPh1V=G=E;o_+J3hMDm zSyE-D3S?bUpXd>5vUk0S$qH%oNv2_;*o9-hHYUt9Z$0~OuHR1dLJX9Z56NZR^2E>b?JV+fx^+?aLeiLm-R{_2zFapGincCy z_x;*1Df?LyiAFvt=3MKiMc$aT%4j^nqI7WIedMy5?3482$*0z|DzR03?8A=3IKAo? zlPRxnmz)PT8zw(%<>UJ!1&$|m=#W!lR#t`-t2|oHQ^`;_Z|pM8czMiwuUoec3*9kU z8A{|7aeaC+E*-0QzPo-(x8Gb+iDy#P8DVj<7LpGRm9XsHGx_Ixd(PWs;V2$}st&lV@xm8&)c`6il$197` zyb%Uz_3kl$Ywfdp>jd#+Dk|^@-TSZXLEdM49v0)(yU(1S_{YlvJJaAaQs*v>2+i(b zQ~&z^*vR+vOAD*?tUtVnp?f5)wq3Qgv0&!JSctweNld^Z_QmeC08NJ2(_0kP^743= zHO|wvcgw^)d`iRns_3lJU!RsCbx%~QjL(~pXeV~Eo^wSc71veJhll1xs@pYsD&;CCKp%^x3FU~7H9Iu#^8HJ-BqdK@~&u6sV$k*sQ$ z*LQ8^=j-Kzcp_WU;zad_Pky%+BsX-InR#4S%>LFqkuTj{w5;ww5z7nqBzVs?_t+Ot z?V8qmJ?kQNd4E|T&g<_YjaTp0XKTvVTc@ti|7yuHUuTtFOM=jpy-sCuKZ)u7JFkwf z-CcgL`_Wql%@JRfi*cvxR%MN6i>A{nKDp?=DoFCh-rLwx>+ym-+4aVT>2)H_e(!5x zwzwI-`dKAahkCP}?9sZA53@r$vz02&*!xBl!-Wcb9fC8m{+zY(YkuH^s-&@iwE&&U zH@H|QV^6!WCmx2^b$5%_$uvuRxOC#>R>1E2@-eQcNsI5U-|x=~=$^&ut(x4kxcTLX zy`P|+ho4z#R#o$;U6!+}yRAagAY43m$qpjKfnKD4|M<`h7htV#9~Ng3Pw%iZ$yasS zR}qtZeUP>)u8byj>%L9jWchsO%Q$-*#6d-?uIe)QTZSdmwD;NbZi%~A9fVpwbPrsK zB{-HnSB=sD-jY?e#N+7}*2Yh$u{u9%->I8-H{0?pwVp=<6-4 zyafm99l+|dy$!>ps*n?Mf6dR#Tb-H)ezs9Q9ZN`t6 z&01$|R@S;dJMv5VvHfN*i)3Gnf^XQL%@+4^&Q1jFvuf)4m_9q>wL)qgYbJXc#yWjh zTxwUUEVzhd;TY)k8Veo|-{+6d&$_aa8cSb3e6<2GOIRPPurdv;$-*yQ!|3fLuznpR z9xB^~_x7hICms`tym8PFL*j=)pYTikA&$Dob zi<|wIc*^H$>8h15TISG0uU8>YtG!yqPIjMIKam#V@*kPm?bHHer}51*N@Tm3INQ13 zh~HkH^4K%;KU=qFn&jMg=tP;>;|F7Xc=(-Eb@#XKBuTY)H9{HHtk?-(kWHOl4Of+X zzhn7+I`;49RlD3OCuZMyOPr}yS?t%>wFY&hPW-@`(G6{r~8H_x55!)#gcRM$ApJ&T{Sr{+_d zV-Y@J1AePE!QSq9p4D%io@ll8n+G=I$Q$#b6n;+k{SzcKOQskE&S+i}84uk|Kn(Nym__CEUnWxMq_rYHT* z>R~>}hrO%#;A=jd-aC)aLL$SA>++G|U#?FvDXwdk5SOg-qX9;%Yphdfw_m4V49r*S zP3{EE=~%y9-#+gtH*&FZk1I^bnyrOh1xLjnA6bJ;ckAn&zTiV%bM5mpU5kz^4qN5S zI-mK*o$Umft?GfL%#QEQ!iFENFyPJ@c4qs~o1TDksCLIr1C6jg6<1uA|NX z4^^Yb6o(b&lPU#Wlxi?|IpbRW#U7Z2{p(xw2EM#j#eY^g^~91)cDe5q<5CFW8BE%4 z9cvo@^E^_I139Drx?#M=awm7|f_+{;)Tuc~$80Wp^Y+QF@Ha~4` za8AMb{QHMyc{dx8*DMDOEHuekvUlN=)d(N1>s12oSwzeyBEGSVne=q(?|{&?j#5~g z{JZOFS6R{}jjQ0=H&n~e=cj8#XOEx(+mV_iY5Utx z-eS$!Wb(RF6>mqGE!T4`qQAT}U>`WA`4^WRI-8=}Y#todyU}?z^qti_Pq*)840(7n z%P7qr!>jxM>m>(NjXTo%pn`5}+Im_=;CB)>x1Sr$*zrkKIGnPm-QMa{_&pJT&+57~ z0tO?|G?H&r)np69)zm*;^RN{wwobCj{mZMj21jMdW*Rnomg)36NspUO+?z>FCMRK< zG@u&`v1sSaAVTeBCg*8rKI=a3Ib4Fhbq z9^Cw^b5PcTBhfKk_4D@GB=lULvDvvOVZDRrY~RWw59EJ61sUrt+`i4+IHi8^)(7mi zcfl5|cjh?$cze99HsmL`z*4h;_=1+RhG-2Vl2~N91O8YV9$=(zLZ9e{u-Sb$>{^*X zHkOxSXbg*&R1l(&weJ;coyM#;gsM|;5JY`=V1e!7MQwAp2AuG`*ya7sZekPI@j1V* z``;|`hB4gt9PN2pr1E@E52?4(|E!xQmp#BT*cq`J>{!K0C}!m8@x<_xN7%Ry!$Ft| zy}ZjSMa=8F^}DMq)pADE_C3>aIw&HlcgH zqI+F`&$+C~=kZXzAH5KF)}fRqar&86{P9;YkWH(w>a{%AO1nyJeKNCXRCT=mi@M)m zGud6Knj^)x*C%&2SMe>%NdXnmVJ!CHzdEhoJfu9`9~Qae@vL8=2=-VZ{Ksaea)0+2 z%UZD-uc!5Qbqt12Lf^eUCL89o24^4gE`HVgXDxI;y+iYl*R{jGm?;BKUt?5_6jSv( zLzq0+Pqgo(KG6E%%V?&5#5>9=Bw1H74qLqN{OQ%z<$`v)yN-v28_&hFlwy;E#@!Q4|lTo z{L?+z{+uqi{)CsE+=j26k;%4r531PcXqSEH%JGk5lezp~rLH^D z3XR3W5w2^d(1t_Bbl57JmzjRPn`mimlYt>zx~SEK{{DVp=JrNo$b%IzN6t*-f++xo6iS?mT0iTHy0l2W`8ujv-m0 zt_)*jNYMva?&r787W4KU!7QQckOke@Q$oXHteeG$bJvFGyz6K4wUR5Z6k9lf#op?3 zE*6i!R!41sXL`+7N{e-=H}a3^_VwXnUrU#?l6d#0|!!AFasBBapg-#^`w zL?_o}TecvPGvln(XwL7c0D2<}tL$vGXARl;*-txd$wsVo{Bm|4x&yw9`|InPm+L1s zl8yZ?bfF7pjs-6w5G%@%TYTgP^7o&4|g!ea`IizWrTUv z97Zr_SK?{W*>m4UKlbxeXuY4%VcqSV%YsMKpDt~xT%N1m{IKj7hh^t#pLBMrq{!BB zja_5upFYXx9y9*tfh$&lp!b)I+gE{xBhULw7oOyqcaO2N6sx-OTg&YEiO0|8#)zo+Bd>(l4B^|y;<5Y~RK5H}nB&ifTx*Rba- zlvY*aR-vSU25jTr_BtTR=UYPz$)3H#8#L5EYhAVMl%8bkdK@ASSwt*C#Cmv@n3FesMc^;YUM#FS;i zb#u=1v+9DqEqi`x)hC|g<(J1btqonhN^iE)aohW=t0BnUzN+k$Oe8r~PM?oIj40A~ zcecn!ki4$@^Y`~|ne~BQfjfuj^>^WNm|gV7Dy}!TI~x0bZ62?RzJI?EeV+YAPi(qXHIL?7D>c^3 z>(4%!U5mLBqhqz-UiXR6GVfsqbJ2|VSy)v^S6DDZz561*6?787@4v?=>r5ODlhdmS zwpKNBU7nESgjDQ*KLZ()(1^wRUX_*a_yWV|8qsZU#WF6ve0%Tp#8N&xIWT4ylWKv} zmnyn<&bHd_%sLjVzEk`539Ld&{hK{uob1L}gtCiPEj9XVpga3 z;}YM{d@DVbWc~K%I8;%>CuGBRz9y%r3(Nj3s?}er9}>MhW)esD{ch5PNT()MmODWe zGCS$D>b5!hY!S%cM!}r*ANrRR^Y`kiJrPBoFRuA$Jlm@@${e`Y(;Tns&FU1nr?sbiczR*wR){I$ibqm?f5~`yv^%LV?*8}JoXb4og2l&@Arr#r zpYGNFr-RwvuIf(x*O`xO1u@vFXq9xd??9GEL?t$@zVUBs*_|obN_1xl zPaKCha-7;a%QcD`f_6pdLHc|=d+a>u;rL`Y?}robwD3H^;ZXNy%OTT!W?i*w&a;xr za_U%^pH+5(e>qCWMfH!V?d=v7?Ki1OoZ6t38n-ovyxUKwH@50Jw#44cE$b&?E3DT% zV-Y8&|K<~8uw~wPUWMG(9_b&K;1#HHb@e%vlmpx8rwiFXTytbc-_Ls1^6ltj7nTx1X-d!ygy6$}xlC?&THQrr!b~f4* zY$VN(lfKGPM0Jjh4*!4d89MX(_{=OAr*7EtBDO!($8#NiGSu-GTfM(5+FN2^e#&Qc55p> zTz|VK0JmcR@$6^*AXKjIjQO zh?OmtSKi)1PxobJ5|NBV>XpB^I!3gS*?gnYfTk?DY`NMZZE<`)+dG9=f=^yc#LlZ^ z-^zL+=+rRts2F7#{l{c8b9D?nhz27U%W8kN^bLMAiu-yC^*7h=?OLfmSS3}cHFVxCk z1ibC*gJjx4c>AvRr_qeGh`e`DC+Atg;n7$$cAPJErE1FQ*Q7g{t?xTaV73nre~?<& zEC#4X<~i$)Q{Vmiy6R{_%X5;>nbpY|m~*t%0bl7pIHc zpC98)`)PWfV0ez*gSDgQcoMsozs&M%{nJgsib>JTakjqm^GOo5Nbd$)&7#uTnp(vp zD&(ETjySB3Mq?3-nMktT#@0vbrIY7QO%k)@={w`V+Iq6Z*XQ;0*2?lUERf*c12aRp zjOy-?Fq>f>$cL_R_*PMTRDbxaEDnOwdRN4AfAwIJ_{{knEAoxXig&qp=Q|ISl(JY#LU{8JY&48FfU_5O4DVX^q-rLP&{%psCo2MY&P z-(REO*G6KIzZ=b6AFrS9`xy47_+EAyn-}Ne>vWGofbIqh_^tc^xqY%xn}yW;=ihbi z^G-SQ@OV!T)O)4ps@q}Yr)#!zqSojy*ELm1WURX)&eX0v!yZ*};iziNxOwTnJ~#^# zk$rU;wu3rXkD1+He5|^%;%jA5p2vl*C=Pi_MNCtYe%`mF6>s#{UyRSn^{&lb_qW{n zY}X;e6?I+A0G-BQ=j19ts-DbXO=+N3&p_xAY^!fS%ugWd5jWO~l ztQA?avYE+HUT_s=>eM)H!$xwwaqifFVE4h#@DGVG$oU&hEV9hbkFtBLp~}iXT~j;{ zkI5s8*KcSCn@*~ZtjfYB8cHq3MnP0?i&!#>jNn}HOIPIKv_7dCH>RYRHAC&Q#E$|QOf9d`+@qNUc*r&8kZsOM&v}byRiKB*=*9{@J$|~Mj&63>?a6Rh z^65r9vDH{C3Yi}+Yp9@bKTbN@i1D&xC?dHmvAlQ?=&sF!!R7l#s}4`DX}l}h$eq8r z=607z|9IUOlN3WvZzoxN+1zRq@%H?*wrp9i!c5;^--|f26xq#IHC$gT_L>~;uWPH= zn#EH(f4*iX%Mw7B>C|0&FZejUHL5E zVx_7L^+}aZ&y|@!o6Y`ytM;hwtr8WLc}5M-hE-?vrt{Xg5K{LuJKbeHzmWr9o0t8U zZ{j_*^cbm`>6a|4BDT|~+CA9)55M})7c#8kTW>ddcasZhNZ-8SSB+YYC0Fqj&+>Xm zhKaK;;}nbvTJEtr@pGKFj2)6`fFGT6gay9(cC~Dz zw6&X8-$u=$PNG3;n|oA+S!+aV6kLqSTCYHMdbcLo>XZMrDp{U=t}L9Zu}*aNqAwhV z3?9rwWegVnzYu?e&1YPJ?ml~Dk|AZWxaigjkwQ? z_+qRs9v{lmvvqRU*?BvnAioi?pSafnYtAvi{f$S@SjT}RY=nEntC>VotD%u$Bk{Eh@*6Nis#kEY^`|DZ8b#`TFSS)TG zo@DffI(02%o@!N2;$QYO4<9vOos;5T^+hTSzjcl?cjsO+ygcMq1G>sAVu2QmdD8g3 zIG$~-z}ZdgHKM3+tx-?S)%8iqLRtK9x_l5Wj3N^lqZ2l)(mJSo&^|;gy83le!EbL- zz;hwB$SAWkqiaHAb5?WkPthit%}DCWQ{4C)fEbMYn7%tmA!b++?o`~Y$Og+qNwIFJ zk@*L)TX8k6B~IIKG`g++n4`IC>r@v{GRS7?1k`iY-;Z!6lkC10Nif;QT&TXp7`$nt^7N7s*m>W@yY75?K$HgOwn3URZ*nG-r1<#{dQls zju+`>uIDZL539%W=VV!{X!5dfsPfaY(=s*fAP6TJQ(VH3HMY+VC;#$(>FVl5&@58D z3)3=8eTyHjaaG#<0&TsEFx=T|F!wLb1aW+^^@VkFI~v&zE>0%nE&L0!G|4~ls_U(+ z;`P-B@SUWK?RzarG9G2cJ2J^0%4I6QxgzA0C)jv42|-R($t0_fW~0uhU~iZ*<2Mh9 zX4#Ex9ual2D~9e=4~8*2z4N?v7KZexnL2B+TySbk5z;!dh=ui5q@qd-v5gEU*gY&fqbeXp<|Ui-cW`SLAM9m-*PO>cn-ux$4xpzrH@ZqeQTqCSU6}fH{8rTIhqV^X|D@4fm{rJpWZ$_|-{$Xh^IyL=D`r@a zJRPl0Ran`xGZEG#-JR8&k*u4$Z_Bfo?f%|x8uMA!yW2s2Y95RtOXl;jG<=lrb+2Ot z()lSV$tl8FI5d4On^8NbB~zuDc>H+%Cg1(fhZODdCga9fCcAUzPoL(|)1j9rV>u(f zJjP45qH6g?N3NaZd_mfS^Dv=18dLoEW@TlasovoE$(su*utnZuIW>uD zAiQKf_Wz{_H_{z3W})%B|2<|o25+`LDMy|a*7^i2QU!8+PXFwMqp)ea=gA8V&wb^X zV#x2ksfRaCyqC4$A3ouv?hTe%jK5xQ(zFOvZ;Ckb)`yPS$cQzdWESo&m09`lZ?1ns zBEt9o{e=OuGBv z2ToL_voQJigYWvAk;|mJV%0A%^e(LYRkdQg5Dd46OY0^4@fx#pI%mJ*)Jxlk|Mp!p$o1WO)HM~;apw7j3uZ}o-)U&A8$24X0vcqJqvMW3zjnOBwc{}~D11Qd$ zao5ZFPBysy!{b{Rt>$Ux$sNW#n2HBlckUvHKTeP3o*y}{|8&*NXdc%4Bu zqMQsb&u6aqIJ~Gg&wB6OHCJ3fmv^76gF%d^9wF;lEs7+u!)-sO&tFC7~MNDN%j75Ren1WyLt*6uY=?IhYU5$|Kvv{AK5G5*NAFy(|U0I&m?g^=w|RAU(B_U(u|2&` zj_EX!tN?!`HfmOT_6?usVp(S_6q;{4fqC%eU7jd=4wE%>U_{^O>9H6-X|F^_SJp=keHiD~_{; zIC`h2#WdMJK0F*djDyXZ9scbh#qmf;nY3lTXA8W=(zH?yn9azi78swB4VG0Kr+SG! z_%c7nQobi)x%mBMyL%pa&O-C2Tv8XHJilygtg7wR%F8xy%iC_@JXpVwbyx%{RTU7x z`fLhU_h&L#0*jbaM5#&YF?43E^r?ro)!Oq}>x2AuZK_#CkL=LcaZ+6JylehTHD0o3i|)=Ivm6c2`L%s|&zi6hpVhU6 zj`7IwAbQrr8gre!K>jfDcAv#tQDS9Vrpw-R6{YOOcY1*2#Q^Pd{_Ayb_9=>%*|r{) zS;y?^*!yn#c%YL!{-WOW;1?X%YCLK0b`sf`jud{<>!5?XtWU5@=WS%>^|j*QuJE(# z=l#&1W_a#-w=G1nMftOJr8UOx6Khr_vPtY!udX_~na4p`zFwAb^WOUNY$-3x0I=F` z=R9~L=|60L-Kb?wqv6I-kUzxQ>HStQ(C;lax}T3Kp5J~e#_P3}+;OUgd&->;y9Zx*(x`gI+J#Nbbu5h+MMC}CtQv;g z^;f_8_4O@joPlb-#hxlh9Xa3MtGTmk*|%rc=V)&3y3y7F_mxD5sIKF^dL3!98ik#T z_s=afMCskfOYPZ@ZP|cis>y%7d?d%0zi3xPsVrOv8+hX`-?P8eYoWU8Ff3x)R^q3= zJe6UyZ`W6DG6Fx0m*6GjsbicNb-u9au>$W5;y~ zPA3$a+y_YzG3HrTqm3&%hd}~wf6g+q5Bp=?<2QNgo~_QgfY&{zcK3{EW*S$;ow2No zdYfW?z$ME?{P=SS+A1`~z(tfMvVn z{2hYKJ_cRo6c;s{d~Y;b(0@Mp_$gog?c;uPALP59ZbL&DZay^`WK|PDm@8S`)&5(p zjXlbX8|5CsBIIy1KMcowxI0)gdwzICixpaRf@mT|`>Ush%A4iCBfpaq=S<_h+L=z} zxmfGIMm`lNjQCr?Y;oj+8&#WK=9n-q-uJSh0wSM#)L|4Bo>>Y4^cLcVT~*ZqLDKnEG@id#q_gv+ z*%&xLMkL+dIdFWzukSAFw8CUHW7btNL#vv0GsM}h!)wp=ZKngA&5fN;#aN!fP0+Tg zo;_xBvup*h_;-C-7xx*naowX6Ad<@-)dB|tY#+O;?7n>1)kz|=w|@Wf!Ib1b+Sep?4j?TwAh@^6OlXt_mh^d$1A%&cdCkm zq7tfRANvK{!4VahykuixD#X2|p9WyLHX^TW5#@3l$(-daFBCbJkZGdp z8v@lXu9@rSzC82`&wso=%_sa6Qg}#) z$xdaxlkM0npNP?V-7*5b)ADt8;y-BidF&NVV;Q+)Gj)GYqr~27AA2$I;oA`N+=(S& z`!eI-d+uXhp8t5WNg3QXv(NM2S!{Ln9-GEpvxNSUin$8LRnhc>1Baa z{ci-Qkx7hf7M5j;`q9;u&-Kq?5bUbnJ6U-s5(y%z?iH?t<}gw1_;#n}pzNzl0f}`}Os+G5BjtVGc5dqt#FD>Wl@fr!hIrfo+mGtB>cQUkCADum7)9p2@VSd%nm$QWxl-KnuMy*tR$+uh8^)A>y$ z!}7<5c%%2rrm4!PigWciM8RKqgAHU_c!g#yHhk>W^%cWG70@ zT<=j-xNiHF&D~CBoZt#fnOrC5J!dcDy}z!s7nIy%OCITY(8GT(*L=@)wQ4Ai`kTl7 zd|fQBqdaVi@;%*0k95Uw$p$mW_U?L)kr)Ysg@*l?_1*it=W_O!mLJcY(3fT5>*K?Y z)v}WnZrZ)NV=r9uSA9gipsJ4L13F^ua>2ZjKaHe*kR?>V)}YCLP(IGc7IHC$DMp+9 zp1+4r7GKqq?Y$FTHFfmK-sF3JJ5M&AZ1p%{d;WO~#pHDdWSx@+RsLj-D^y$1b$?d4 zD!7`Z{0sG+rC&_VHz(_a`Fl>8bXh>O=tSg;lN~U_Y^0ydFXztoKeKAgoqu+R+_sb5 z%O}6PK2t~gFaEX1fS2-@x+CUr-|CE3BJ;#Sc&ONHCx6|aD8tF(q`MDJ+QBg|ACw8O zQT@WBWhV%dZ!1?UR`w)s`_9j?_x_T;eLOtOy6tDvRJF!VXWp#^VnELm^DLS7-Xayk zeSdpCuwto-Fpm*CC3V(M<3<|zv~}$6#|Y{^64AgK*?3|(>=l>Qi!rZC;PsU!qS;W~ zi@L4&^HA>;u&TnjuxcFttzup#tRk4VTbt|dkhQKO#K<{SdGD^D%dtORYRm5Ulyild!`kv$HRz$>tuyhx5i`f;bM3> zybo*l{SnvlL$M^PcMl8l9lOrQd)ZsA=LdS-SF8W=`u*jT97f7VhqK6A9du9y1EKxc>vcqoYh{5m zT9p|)!M$gRiC^Y)_o?0G=p5V_HwE6}9CU#$J%nv+dbsP>M?(QZ*s*o>`>yJ|Wax89Y% zXwj^7h0_Xa+@JdFz9L{bf;ae-jCCN?5M6=->>;qbs<&0 z+MBI<^5@sr?_WH|kyU7QxKSQp8^|wbs%$!mQ0{5pE8McuJ~APrI=C^u2djK0YLA)p2?{`4Rr}q~ERPcsG3g=JC_2ptCn$cbg>+7MEea zecazpDeXS*qp|asm!$W)quS!N=c*i6OHVVH9vha2fBy-qq;90oW9l`+wt|jDUR%=1 z5PzqFMc6-<@Vh)&MIttIT~=?N(-kM~+{;R`bk;gCB9<_ft6hc7`;Cxj3Tu*qV+! zcio4Dvm0+Fa?BU**laJ?=PY~d{_@b2)nY@o!k4Vib7B+2$IhKiJheKnT8X+VMty7L zfZO&wVn{JA3E9NmG;YqV$A(~B!z;^Js;TxEX4B8D(YU0Ji5od2rfHa*?W)+u?yfjb ze+|FutFq=74}HXzZesp?cYUtLfpPQG(@yNxaxYg0@3+_gzP(O-|M=-=8REyw5_HDV zWxMus+Ep`#E<+l0lK;nR)PKD44x9e%V}yPZZDZAMub!$O_sq3D%h1PjDv-lnv@(McS#6e4V=kW7i7Veh{N68VXbek+03fr4?%VNXf*8o;gX?RkKNNe7R%CIw`!5kTq9~|+LdSJ zchAUmn3C%Cx^LcR*P?$p(&$-stKa5OO_3BrdMZ3ln`gv$DBo%0|NHs`D*QbX(X_WP zvAU<(#|b<*Yb+9HV|S8BAB5GyEF2o8u3|Ont{j&(CJUV&TNWMj^#(Lr89APU%I`0k zpI1eYO^WII@|e4x{C(Zx8W<-n>+pM?60xfJqLr*+Gq;>od;X6H63?#gZy&gIAKO-q=i?BKjraWGsU_67 z>onfimeWr+PkjTwt$5BH`TDRCNyL(qFC=Z(A4;$Vq?Tdsk#J{;>;(gI3+ZLx?742Z zt}lLY)hePQuGP6U(x0yXkyj4g&Y!#jC7(0dyT?pwg61rjg?D~W%VY80B%G|P{Og$0 z^yRvqJR*b!_P6J?qSPn5GIX>mSS>LPVRf}rsDYDpJmu-#F(0?q?>9D@5A~84NwNe# zoeYmr>-JAa*Q#6MtU49WW3f5O->TT&+Fv=<1)QFp$?T9OY{Why{GOMKo@{@j?o-yKX%dh#+ zF7=0B{rdXuxu*Z6{*ugMti!-ZVk{v4#M5f1YCgGz*7vu4@zfBGWqPW#y-?phS3>-Z z9pRv7PqJV(ZQXg|5}IL_r^*_zpJnbClSyJGV_WgW``rUQ_*R#%IP8?-*S=EjfwxOqia zm2r~!FAdvUB=gHd=2Z=}PCk~6pJNX(ONMY@r(^re^Dx`vu62y@J74SO<3M*qfqx;3 zWz9EsBAW`gtTql;HSoC|k7>;kcw~G_BkPK)Wme-M2%w?0v+Qo}FR!1>P)(syrI*vE z#Y-q%52cFbE}ytP&j*nH`Hd>||M{1!AvVtpQ`o=wpkBr3H!qc+JwAN$9@r z$*D(AOz_p=vXfb!$L`EX>!fAS{d+PUK8t&kopeP5bc$q{IMvnges*YJ5n9y&bax+% zzP3fX+-C>b_h$a<2ao10UOBAe3ixPuFFo(I9k%MM%~@$3X20LvDjnWgPKFgBst1xc zBb4WLvh-GF+E?*R68MfY+iU6WXXYP&oE0sbOoqBj2kG|+&x4bkMMWdTzuwE1QL>Dy ziwd?W7B{+@gtoh%oyrhHP2+bO?iqy#c`ug)TN7kymMl7B#lvOyN{n}l#;>mH#m#a) zna>FAf3%Xz1LNAQEb3Rdi?8OB>=b%MTAa@p8_PKEP!V_1#;nb8v~tDv@YvvsPd>+z z&;6=YY}Qjq$$I@eQ8OJ)XapPQlA^(qU$HzRry;Ids_=ggBR5LHr9PZeTjC&#C zo9nt$XIHV(2}0TzvV&kW)$aei5cJpAPi1jF81IV5cA&GBnTzbh!}I6;lWY#Zoy51Tt=dD9!z)H#By57)Tia1|dviUBh6rrFq(ePVAmEkdW8YeW{k#%LDoRLq%AK% z7R$1@=weZb9~QGooHB`cb1_n#SDu9Lb%PfpbP_|$59jl7D^CvrC$=#Aast$)pNat= z6c_TpTDtf7%)-O1nZ^#~DGXO6*Kf}9oqzf7mxns9ClBpOk#!B5Z&FN$*Q;TluNwPY zW3`>!*;?{s@?x76*q$YMoPF8*9=&pdsB$F)s+z(!{mj@{r^iy}8m85XYWEYxzOl9* zT25d8unz=%dD-8}@KiI$*P=FjY?S-_<|J91uw1@)JYA&jg~U_E9+c_%!WLxG-M=(n z4ABcJ%Zt9T*5>_P$u~n36oibj@@%K-g`StkEb{R3HNUDUhI6NO${MWGx4K{1VXH>g zhp{SG7MQohm--LGW1^lx(twVJtF#e*V3R(VSfk zgYh9Bwo++5J^#Q}dcqpysokFS2=lAp;akNtEqFLDSkv1<7pK^TKjZFsq361x<iV{u%VhYNiRn3mBBC~&dJ6jB*^QN^LbxpsJ&;6Rpvz*+a9!a9ep4x{@loF z4SuhyZXcM>X|vkIC!~kH&wJeMxERw8IYt_$Umo|}ak^FO$$#xL{cuHYm4G}2DL-EK z*2{_2@xte)j94iSX$S4M4>@V`+(}(F`028+IFzgISU*|YXi4z>1AC&1MZ;P7_PHA^ z_jPWNq}{u?+hx?HX6aR6KC+4mY#e zVw!M=aXTA{S&k*=YpDG2KrP*OLSn3UBK@apUgx~3Q;ez#C5stPXL+-QEwLEFNh>0T zpfELS4PiJUdraq->kgd<9SC*Mu?p;#S6Y9-gVS|qzXNv_ozE8e@%nsK0O{icny|*# z*FEb!%Gr&MSN#^7B^`@(qOA219bJE9+|y?v^5xP&c6Z-2J{YgZ(v`6nt|1X7$am1T z4x3N9XEJuzYu?xhN7F2{yXGu_tAj{9E5*Zpr<#OM$2*2I4%{Z#;HV<|6P8vc}+HBT-c3e6;*3Dd} zzu4uy51&Tmk#uKGbI%T^3d+ob2Pal|LmdEfv!XR?$QGSRP%YonD^L@ z->NY3_Yg65y^{ZP?rSRc#=jlGlf{>6W$K_*zXEuj#(ysSk zXKXsH_PX0Vwy4TD-Adm7c#Y#c5T;(0S)^>e$4c=}Kjm+q;Fp+wu@U1OhP?BR8F%tqh59P z57%eaJ$7i^DtmT2PvlN3I+PVfuZ=6!s!X_BBH`Eoa9X*3jA2e3;?BK5LHU@bz7w$=%h_?yFCL zManfIE#$I^RiaPIA1t2d&9z)lhB8%_B!w&IM|!2>_Tpt90PIjcjSpGa52hDQRw0uW8Y((-p88wioDZMOj}EIhRLV-p#PrVVbFbi`u_U2F}qqG z`SH4s#rCYBS!Ehod){@Am35u8pReDZ*B-C=&dDs#bbxaY#phoA=B$3%p*5_pY2FAy(Opsvb{sVQ?&) zCD@IBo)K6d5C-m%KdYS+fN@2=jU(OHmp-Z-3`%N|thd+tnwRniEn2zC9rEp@2#2&Q zVo&!wFEp=8x4(B;?buF8&-IvheA}o!YrvPhpym-zm~T}CQEgL| zOQ!$tCka`jCr;h>n`?HJiF!=zs%Mk;uzT-sA-6ley6)d|02rr?EDOnp5Z$vVY{-A- ziB7dCzSr@tSAZd!ecg50fA+x0<%!d&OmFtr@xlqmt3#z|Dxc{%nB&d}bX|;}8q_Cz z-5bPPQT}{g`Etn@GKvv#$?GD=x4orQKAvR8fB#?&^8E9qja;n{;R?|po}NcOI-f4D zyQ@Y*3LWeio~p-+inn}5$|PhlKgT%Go;_K%IvmHIXc6hFlUCiT6Fxu5yvlUGI@mn2 zo-B6Xr+}M}pY&m$Y2?20(_z=RxR~x*{&OWc#Z7sKh9Y*m3}V@;5W3XYJu`H;h2_m` z4D8HW^$#Zn>JKLL=lSvxujxeJpf818{bI#Q{DT zTgp1~T%7PanxNyXy40WRs+?26><7Wm)x`19a){Y`7x$?s;N|%g_5Z2UHG7HeSib7o zZy`&rX6@f!zss3){KG>&o@2XV>~+VgJhmCc>OIHjTj=Ij|250I>;H1wIf3ER*J~1) z(fubk#su<)Ri$-lUUBy~j~FCJ-2GPNdt&SJN{UCENg)-EA6odY-G}K?j=^vz|HjR- z<@ze=8N+R57!t<};-$z~)yB4GKj3t)+}CP@RDZhO+=h3n3gD4lLccy9@A++P-TqK@ z$~ObM`QTOvD_w*m$7LEIS zwquW%%SP+=k*6HFI#%^W$9k_UxYS`&1-Y zYv?_i_m2+^L!3-~Fs@cxEx5i+NPmB6>fTilA^C1w_$@{oL6%pc@qFFB(8x|z>|tqR zsASqHXl;=Fc>JvLtG~+<-eo85)epTf>8!hawpR`jJG3ET&6oDiD_i!f9`C<(26`Wi zS)cc_>OKA88mTPGUJ!HY*bsU5V{0H7o!s!L`fpVPq3}TSDrL6dkz#TPR+-Agb)%-8 zT^dhJLzjBG8*R`>ekWG$yZXEQk1S}9B6KicEU|91IhSDuwVOdhS%r<{AwR;s4i z7p^*QRPTCY9=w`U{?3MME24Ts2kZ4Y%gNolA9~2@cL>&1V&Ohr6hRo9b{AV?lh({J zL#RJ1h3~Fe!~iV)cwPAqpL~XOF?Xx%%}!D{3#Tz1sYKUKW9huCGO<2@<+J{oM@fUr z^uteu9{XUWlV_eKko!qMzO!ylw`}3Ri=WBeDzqr=uD+qQ>#IXp?dbG!jsN-IhIoHn zP3mx-yvA~`xIeY<8L4`iotpc@^{<(Ky6)QfE^<_dp58_B+@GadR{!Z5fvmIU^jv?k zXp{+#r+LF=!-`BbE;O{P3_)8uy7QzHCWT*AI$eFK(*wY`F z4l(lESz?i`4k$ao!TIZ1;lA}y*+*@vUbA;o{yfO}d=HiF_4)ajeZvN(>FMs-`>nMl zYZqP1u5#s8%y7F(soY)6$nd%*EG!oHj=id;liREYNRfuFez|_fwPVV$S(qdj=%!>N3V-REbk0W0|Shr06Ry6@DAS(8R$S6tUC zi^auvY(-YsC);lyBZ~J~Dt;bT4_mTqk-{S^#~!qS@jZ2%rD%VDb8Gm3hs{zCwf#gn zx5l_e|&z{wj{(We5kIz z+i*1_1nj=>J4t3wCKXzN;knR3qqET8QZaK0}G+LGG4cMN2ibI*F%WuJOtNR_^**^Wkz4jag(}s-cM9vjp!$N>87` zxwV!5S+RV${#6y`KRcJKQ4g=3z-+iH&N{`D7XNbnKhFR5l3qkYO{WdK7BiSJNu=rPx&soY`ts>y1)y40wPgF;fT!sn_?%;J6{pR|YFPCkr z1u$rJr)%O6J|q2ES$XCQcZ;GT1((akvviiiA3WmIxaRXr6`M5s>7~{AeMXVlc+e^` ze0T9gwef#=JgKWL`F|ecL&RI2h%ae$R%)~@avIooWhrm)OTXi*&Hr4}z?S&Qa%bNAsE5VV2s=IR((n-d z7hS7RSSzNY=U9#{Xhqt(iJy-+X07Wp*?CW9;^kdIpT(+((lcZKSg5>{rCO=LjO+B= z_!w_sFrz?H-g~Qtw|1&FA_K4Hby0wgw=Nwkh+Y=(mfEhI%y;Wrp|)-`285IOtLxM4 zT$82BclR5aMV%jA=4yt+IPImhhNtIm9#V*%w^mIow!Xu8e#fU6lw6$w+KTBepPfN# z-Xw_m`Nw^18Z+_s{am+ocU`)JQC_G@@@*N;D5nOxTMl1|tPj_<_=&W7qjjg|1vZmQ z;SXxb=gR6INW$9N{d4Wm1{tImk$$pXqJ?{0bMiJs$rxM9h*%@ZL~-1tfmT|RVBYM^ zaAyz7yfWLK2KTerdPb!2jKC}Z@%pK~zDaJDD#f%m+hO;&*!TAj9Lbxj%EUI@*-E}S9iCN3EJ7}OBO&1Ky{t>a?J*`}=k3-@Bh~lU6?fZ?E1%!J=Sm#s zN}VBdg(+5ey#qwH7?Sp?m{t1E&tY%RBPhJIJBKGxN_H!z#MY~NKR)iMP8*W(9FKpz?%!(4 zoS4{mMLQf6IaohC^ZC!$RU%(y0;wcOGJ4AA$A+skTq9~QpV*TxKCf{xm5QG%+hMV0 zIKA1srpt%24oi^h#L>OFo8HDRf)94oo0D!;ZC;|y?(_@*>om)6uYdQxU32o@!PoA2 ztHQ=*t7K$0);?07oKy^Nr1|vTF}+*j`CP{94jpUL+LIaBRcz+PjX%3rx7=3>u)YkO zr(>I;`S7Q@Z5ZMOnZVs=wQDsLR!^TqpBf&MGLMi1OVxiltl*lu`($y7Y}%{qt;B}yeXbhfjeop6 zxO$UyL_8LxOZpZQvl7-&dEq@$r@IVv`o{k+YyY-vNs?S=x_Fg*0f@BhEz*}Qk;fHe zo|q9pN?sNKHhYsml0vdK06uU(NBcMb7-c?JtSt6LOG#zSgS(lU>d>JFv+2tizU75K zKdz)}Xz6Mwt@C~F2a{2jmA7rjlqRc7+D#FcRLo_yo8{egmC6X~@uu~!K3=bjq%fO( ztQm5`+^M##=HUIi>#En!zp|d8F?~Eoa>((CSZcNT(liG@&fCf}Q=Q^f3MSe+>b&kvvV#_4W((2)Ry{FY2TlxI< zj%B#%tY@g7pOllNe;C35Rf?xecsP@eWV`7VUcR~HtNZM`y9MukD3UeG(b2LZ-<>MZ z=vl%#t=%jiAFF;wBmJu|s{9ri!>8`pu^}dgOHWU&bGCc*ja)~|bjyb@_WbVq>l;_Z z1xG*G2kNp_d4n~EQ&PEFe2i1mx3&Dy6Q5bJ6^a;T-CM&mQt&67{=;8=agBGL-%cL0 zy*x&eofe_Z`r)CG*;#Io&zP&ar`~Hbu9|lJy{0V(%wDuKrZWS6t`0gjK2iQJtz4Ex zk2H272!DT$^WR(@#&`_}t}6KEdR?9;R<}aD!BgCiQ_@Q(C0OF09-2GS(PFDwRG5Fj zV_pH9O#UTp(Ypw>I~Ni2uRmQf+W9If zePX^7|UuZh-W=`-J+2n69f zGjgIe^nU)ksP;Mhii0%X=`NVPXF!mErIUV^8t1H1nkC^)FCmV__G#;$1M&+R9mg*l z#P+A_X@(fH=Wkgd3$QMKdiG8lle=Jg)^lyxx+BrN=Qjsw&N#`VuK4Tg&h@U(3GBRQ zeJ}P9AG|*vU_HF$PY?Y6dX06raC5~$3IPnYIscU|V1zwxQ;zjbak z?0vfR^iEgvIa;L`RxP&_725%><4K;pk+iy9*oj_!HXZgW1-4H!A1-NP#5!v2 zA&I^*56#9{th3Q4ud7Zq2fM|z5Py#n*vLrjkyY!m&#B$XxtwD%@!oQQlcU=Amy02HA+5>AJ+PmkNZ5^khYrQPezSZ&mGd9_cB7<0j!2o!m z+4#u6Uhl$abp#ENf}cCB*?9{-!85FopXOIyx%>FS7uQw4Tvxc7gfRgr={Y}`^~qeU z%~v7DHE?g7dXMvy<<-{r?$fyYPL6A&gN50Rj@Zk3n#(u&+Z{2jz#Qqz^?84oW8LBd zi^hp`J70LtBpW%tod&{}F^Aq&u>78;tn9~|t%gIo6fa`46Kl5mX4|i}j6V&Nz{nzZ zzD4J&k0$#)TXrSxC@&TZt#ac*4<4-h<(tW1blM~9=?Qk9G1bwuE|TcJ{OS6C)tC6~ zdkFE(*Vn&`H#@25`ke~lkI*+A$4O(vanjiG$lf^<{D_U{n)ej7^E1qKkDEM{-S0Ut zo^2(0K)UPxp*|bqRnbcYH816fc5V1Vry9v|w@K?LtKb#=?l5e8yhihxeu^Hd9<>pj zkenrkwy^H1;}bl)ULuTqxb!ar7Nhd##ZIvuTH_4XGjBYT)}11&J~4Xn1YbD2Enb8= zNO3pcY83Onwv<@p+hOeM$6VIP%d_=czvR#t!A9@~FK|u|*5iGD!A6e5`+WleJi>cb zpF1ErZJWP!i+`boTqkPL4-}5Atg=4X-GWB73vMhmmi3d=mGREWx1PI}#k8XdyKvSt zkDhcV=Orm=p1bMeU+81E)wkIW>UU!0j0j0*+#~TlUJf7mEyinRxSWjsJr?}_p<_JJ z70>Y=x4?h*)Ab$w*%S^$q5ZBeiC@PJdVu`!_Lp|4tEn-SeT96udqp3tPa@9}fDI9s zZr@%1mn~q2ynMWuE<%A(!xwp;ZE_GIvYqPok1F|o8OVAuF#W+5lw!*CKu2nXQ=1*O z=9h=rT^G|DL2Z>+yPh<>LLA!8DXwTPe1~1EJ`c<1=jkT~s)-J^$(A;t5WdV24)9W% zHiz-p89I_A8A+Cp*PShbvC?Wj*36dpEcPZXjI-@9WQPCnSx4A4_&gO%~nCmh5c z8?BQ}eDdUg|MemBd1~fe{<1&Xz1Ie@T{QX&nln; zlhe$zMqaK_$xbiDw-47EH4rUVh(WjQd-O_41@@ zg)u9M?wLU+S3}aGgL9!`LAuUbb>EX`=%{CeL5yjg8)37VyLF3sB0E2AHrk5U@1wpI zFE^?T69(c8E8(4VP#*E)rB@XQ?O6T2Q&AjEC%oqM?Bz1$9=LoO;X!%S51&>5IVZ}* z4F`#>WwF+^R-|vSJeJnfnCl~T2h8zmw*7b4^>Su%EZ)fq_c{;!U;gU<`&a+#U;Tfs z>x~e$)t~DVvB%Lrymjg^?d6}HsTX}hlG$UW_C${t9x2_a-YUj7n)#uE|E&gwJsl90 z(_(@CMROVDzdiix<@#)SeLZ~{b3F}~nuo=qV)uNO%qk-KAkm*5GeRy8t4~~%uqGKg zokIw#uG9F;ltmzo{m2tr!A5a`^}+$oVM+Q=J6mt#W$}$jy7j=`$^^{woO6+(TKQP{%uX*f`nT78 z&|Vb$^^!8bVP_+zd%XN|jmJx6N$J#_G!a7P5A-3Ap~K=-ICcO1?`raeaZp<2YtBf? z=eO?cNi$_|hfz15aXstEj@-XI*7V!;iQm3#4ZHHI$0xAa-=9`9#a4LT?B=1B_m>Q1 zEb~M85VZEZjP2vP|GDQ=JJ!ca+Ij1|lFTpHYVWeX zd_oZkV`4cZ&AhIFo;fPajAsvy#Wb3z#~)_LL)MjikV(IK7BUNR7dglQozryLHw_q- z#~LL(^K-AJFIl=Q#MPeeuziT|0bA|*@{&3U^-pj)UC})c&RdI|~(>%S9EFOK$N%VKT;J0f;d>ZHFDd|NIgY{e2xg%|o zBai*@)4b=3&!5<0b@1|fcl4f*(xd!gQXkB_J0GtT86JyZXV&kol`LO&$IJCTkL;;% ze-y!JN|!8T(_#AjTq7|-SpJ+{4?61a(et;LB{o_b+eR#v(@~lUm zt`En2Oytk}(&n;T zY(Izm<|*>9H0}FTyf6baLIXsGc$GjM@Ua+u#UAwgx(BNE?_51u#FOoC#XJ7%Zdj>* zgso`cM2X+7`Tyl1OVR7T-n*XMS0AE?zpNzm%R4&rRPN**Z^5zh25W8a>DkU6 zoQ(VQfu84rnh&46Xm{oZ=M;br&*_Jsp2CqEkBpbgi}RGQeLqLflG7ClvhM= zwX)|n_;>9~V>kh!xB>8?7zMzc0$hZC9a3cB|n@_$xW;R>8Brp4wr_B=WHne+{ZO^_f zX_IQ}7-GBIOi3bI{^!SURn7eVk}fQ+=QfKZrTDl1HY9eSVz@zdvNncYx({9ZU~Jr$}+8Wa)}vGzWu%I<GS zv6YpNw1P5zY^X0$6pp)SV!g59^yDk2UwHN^!y*mC;r5pVvOh! zPo8hd;fk_$_OZe|X&R@^SiXLt=lRW&Co+F|t-L3w{Qg*#b)3Kdv9VMNt~1MT4_&R- zy?kw)3n46Pop+mWpJTqTk$G}?`|gXo%6+IZ07A#6(o4On=x)aV=mfk zEo{qzvhy^(ZcALoD~pyzoFZ_Y%0<~~SDHTg&D-+85PNL3JEbsbioWErrr9|rt|we4 zVyh@Be({j~k2BXJ)#iDKdsi=qUjAy`AvGcudUG9&4SrV?E^C(^x2j_QspOc|gv&`yv>$I+| zM|~Ju8QH46XMwHA=UJ>zSZy)>9@X7<#yr7l1~G>HogJrdzdW2L~tjYW(l6?|1HvO~p^2=x=3vpW4yBGfGm7If`nu zW3Kf4{xK3+i%J{wizl5WLZzu=ukdAN8oCn87l6Vt&>-#4?szG`VL4bOMLvVB|B`$u8lM#=7^+{p>Bv=zB7I zxP;nYuKV;;F&GQMZQ73;%fMq#QhmM$S(ePVPd#q@w~!EWbspJ)OzGl>$Gt4jUnVS? z9$i7;IxA#Z-H1!GyK9@V5x3q+l5g!(eI1#VdcRy`HFYSbi6T`jY~-TGk%=!Z7mfjr z7rW=ayle4E335?)kpa{3@(Gvl-ycn6Kk&Xzj{%3C_vK z<-2%wS*3k}XG?7c8gv>b@5#5*{H`e5^&L!y z+GqPWYuf(dp@ZV1{zdjZn3E%x9o%_j%xtE59&`e?SD^rSB)+=s=d*}Vj zOKKV~KG3mu<8D?f130JkLMHtm4)2+AX64heru$igEJ`jb@h_>^X8F$ZFTL?gOxPS_ z%DYaA38Lms*wAoShDBrWOnC?#$7XqNbwf0^P~CA3wx}G&#n31 zA-1x+tamTpiWf`MeSXt_dF`@Y8KBC8r|USBo!)K1=YN0btMBkWu4aAOGiG^Gcf0nj z=LD!nMHpI>i9p5lcyjeVp^cB%HH)`(Dlz~5lA6`!v39?AuEBNWIk72ZsLOa4KZU%m zG8dUQ3nsR&NpuKJ&%$UyviECy8gBHcIB3z zpj#KlsQj)w}-|~dK1$Ia@u3^P8)y=@u>^=dwsUyXgQFsLSBy{wu5Oj@x*gR8~qtyn4&XHYFhId zm+W$EuUR&HEaG+UXL}}e&Vtoct(F#KSmuIeTr2{+7JlRKyNzhWOeFaA`nR})IcDKS zr!wDIvT=&jJ~wuG&9e0}OIOE*pZj4agV`#JO|RcwbJwY5_fYulbxn-H>SZ=%1Nr_v z3ov5&1Ycsaqd)A%Mwr)CaJ;;3`d9PdrLGz>?$vcnFm{d;-#VF%VgAb_26aa^s_tVc zzs`d{+FX8?4;8)I_xtcz`~I@Z-Hyv6-d!2>yX*AgPuKtLjh&|roN6Vez!kLJxdkk< z8ZU1avGRoVK;h!$x(=_(qD0hk6rOp|Y6Vp@VwhF@%k_y^LI?PREPNfV>W%oXE&#jC^KosY=@|4vfy6aJcXyK1pkP1+fPdlZp<#dUww z;lrqli0lhvhqZQUJ1fxc$7|iBdVN~Meb76b!7FU5NnIcR9n`x1<+|o|2Wsm%nV3=1 zbxe^(hKhSdvuI})R%%|6Y`xj#i);d~d+OJ;nLOU~n2!T0k6z7cVnFHd3dF&17M;zSSM(dUWD#s0cRIGNnVhP2rCq<`*u_xWss z@6L0Z(%SjG3mw9uJZyP#SSq^w^Fyxs+Qp`2@X0wQv_1%PFDVbM=&0wl_`Es9x}B5h zmr67ma$l|y)+y@u*)#()Y+m2SZaHg=b9D&Pv};3!l|q&o`ow4E5`RdPR>Yr!LHClxwd1~xJelEn9uPD1tDd8!t(j&;g))b!lgI zgAr7yTdDbQLbaoH@7%=n9H*J(x9d9NG}mEuau03k;eIxCK73?3zSl^z6FJWF2=YuG zxCnjM$7?Tq9to$B=&b9t%;owpG*-G-)vU*h&3LlX*&ot=e|*CSTyuD0*Z9|NL#(^b zbA0LQ^vN@_gwHVEJlmc*pWL0HodsE-+#BzAc14BG7sI3xy`P6*$m){A0;ii#l3y=r zU43FH|K!6v3G2?~f%mZ&N%Lx!wPJGfx1X+8{jX=J+%Yh}n;*VBtS{H&5BW&gA>qeM zx)=vS>HMn;E5^qBtWAG(a}bPaJA07iM?b^%U7ly1VJOw5R>7azaicRee!o}!yN7=C zV`wr7Y297A9JHR)EPNu#w6)cwn~<-PXkRccE8_n1^{F1#WZ#|o53(yBvojLT{PNW0 zNn)oS(`ugG%bVKu-l(uf7x&+=%*HVD{uP}Sful0kW*Ge^6#(J$?v?b-zUZvtIZ@rS2ue-_FxhCYIJsH zvpOiNp-$Y`90zODx%~}(_ee6Bj|XlXIUQ6d(XpK?(p}YpaqhoX zns!79{*^8BYx+o^n?+2GU#;Jq>1xr3<`4cB4S;>hOu6?=Yq`#O2hn~|qM^D?4${&8e?#LTXY(Gqvf2XZ*=qlERl%chpdfq7q z=1uhAp7sa4&JGa5H=zXQ{&aoQy*v9=ue)8Rc9~=$dE+ztzSTPvGZ!_^s+Z5v)5mKx zm`Rc_cQ6YbCsVRUC_W4^{T5|qg<_TQtl1i4vFF^u{19o*{0@F$3Bz@EhBweFpE;2c zhSLSFT^4k9b}-_YDqcy37|rUcTy`2}aVLA$Z&{xP_96Hlz3F1|(Ob5~#_d=Yd#X{h zxK0nuWZ8K*#Hznxs!9~Bvsba*grZt#Yi+s@GDfSi zCO)UqfBhtYDs)z456E1{X1Trl*%J&Q+96XfY6efJ5YSi5S*JVnRQ`^@z9OWgVKVNc$= z%4Cf4I_DGl$|cXQpBlRr{(g;dvZngoDn`r$6GiYwzsIsp7oJ~tJx9UTVBYGfvy0E( zNgsl-CyQdv@~h&BzdBZJuA>sag#$Sa?47?jbF}n~X;;xlPY|iM?=y_gHV_G$aSqQf za+Eofspv2)u-$g$7R@&Iu}Yc7$xCFjybs5l*FRrnE zy~e!fKgKrGYRpbp9}8F=Z#+!z>U|%p(a7@6(7r4N9=?6tZzoiY5W%cz^?AOv?r#{2 z1*Sh0sn6M)?D@op>vgPa4!&^WM%@+rKUM$gpp#41#r*z~cuX>Doc z9p>&hU*`hpa0$S4KuDAoHlv? zcHpxYA_Y*8l<;5%$tUd5WzYiy2T4|7;O-;F1R zHy$8D(<;v88}4>>wmaB{6Si+Qub{rYPWbv$h{LTE+_OKq7>C%;3`%c%o9=pN( z>0R=mP%w+j8LR^%ee-x_%|<)%1{=S{<1g3eucI9cEtdYJ9vMb=k^&OvrD=?Wb&2fd zx9`EiA0Ha#;fq1A_WV?e*swZVoM-d(N6m82*sVFFY`p1Yb^7~jbURHLS&l;^^>@Fz zUh^{upGHMx3}I#F+Guw^ryW`$TRl=4D2p6?44J0`vKcm_Onm;!26!PKSSN+&Ln3We zRnCv9>+0fI_sRT=4B3Kjoqk67>MBa#$jutVY7Z-n1ys9}@W*ScxEp)MN%31};_j8n zu`_h{Y>DXxCgW_?LAr=<>mmF0?9!ngoyv29)QNobyI+i%y)1lgOct#!DYk4?_SY1O`Z<%{c%X9mTo$8vBU z*Bp=I|NL{+HS5!*e`U4Brr4QO_wnAcAsNn$i*(qP7LP`Ej)$$wNqBWdC5O-{Qg?e zbbs=l;Z`=l3RP76PHetE7d_6{^@n-43Jk`gEGLK6*EQef+?~aGSDh$g#Ubl+Enzwy zf`gv1tcyF&cHgN@ae0-yk>R_3OlKhOU5ao)8rsX7bl{3VLz}A>hnr(+V?`WGJz%7~IKdiAhaQ9j=)eCbHI?K~>Xfc*OzhZx!5LT_>Tr*_O zua0%rKTlS7@i7%DzoQ49r{|z!^1 z)+{_|YdWkx59u40q8V|C?#gjsfo0(!Ryn&VA#)nY!!VWm@B1BoAMX=Zf%-8BiE;R3 z6MNT}cKtJ7e}Ao8&B4<3u~dEhiEKsL;`=YxXRBMVr5Rjfg{)y7+*lNwG_zHEP$xTU zm1d3KTOY3TURhOuI8j9z61LeHxQy7vJJA+#k+&nrbNW zFJGXK>GIig%dE;sV{Ee14V$)-q2bx8;ziw$!;%Xy4 z_eI17wq=XSA?{RTrU!BBbyfUw&Hi@mVrTYsZw%Qe$xV}Fgzn*&SIIV@Qon-UG2fyo zzc`U9mMmu>aTU$xkYD#(qn*Axl31g;jo%A)jL15V)1nM94Bz-5-CK#_OKu`px6}b{fr`$1WeqmZw4|S6KM^8iT!P^#6a! z2^FWG*L}%W&VqwvkX8#_WedFJ<2A-mjCZ_#p8u`th$fBbUN*^(@^DpX>uA>LJndWM z>0|WU6}Tx=5XnLU9WK(6X{fm)#1&wmz~0FNCvKT*Ud{RC*mS7iiSjUG;V`2~gg)aX+zebtVe5mWo z<9902KD}>XvOJZ(v&emQv%Kt_h0V@BJ3D;ml=`K<&HCfXBECD}XM0J{@;9?NcsJju z*UVq?4Cva3>4y*YyCC>Wr{;>qo}&*dSf|rDi=I}lPNdD_Csw+hw#|3O|KZZn=^j-T zzEyp(KCU5^)x3PNP~Eob&}yp9?&|Y|uU063v&!^MQa+jokr9H*;CD8xe1n}}m3^Nh zcL>6=XT|JJyI8pAgJU`o=+0v7+HXY6LF&c7m~BXrd*mC#iB*UZ>+ThwTj6GUca2_@ zru|cE#69__bw5}CjbSC>zh7<0S7Eze3u$oC=P_g+$3C5Vrmb=|BjY4qvvs7gB#PZS zm3@A<=5Eg~ixHlECF}W{vPI8lCOcUIX=r1oF^W69`{(OkahYU!{d7*l_gd)J2Tx#+ z&;R$Fb3o|U*Ph40*rGwc`O9P8bN6eu9kbE^zrhfmvgj-*4Qs~Mn?0oCkvJ_6 zsjtdAc3o^~eED$Mc(Y-Tex*%+rv_eD>MB`Fn9Y}XC2x;aMF2W3<70VssJftPa2bRZ z()7PR)><|kJ1i3VcE5>Yp^p#LwC+2yM2d2?_6g|E^8Uu`$LDD*lvSx;9URQ6|-FCJHVf|J~d#;}etPq*!` zJ#>VAv&fC-QxvsstuuxZE^;nr`xsLl< z{iy)V@bwK9uBdK-scJeFCeyKz9ZZop9kEruzH^JSeR)8ql`v}SftDjn5`At{o>#SG z6pTiDSYSQNdnb5kStYa+CD6pf`d)uyD4G@z_DT2K!_M*Y=P|QN9ojn0W(=G~(o+pW z16j@7ib=7U9e23zXt$ix2`s;&IC_4r;f7pSyj*hL|3Z#=9aRsjh$IDy1bVLwx-zC zdwjuLjlMYCRq^IL(RZ@9D#Vk2V!Sj|d@zpL7)7XJHca5SL3eG+e{cFjIyVm41K(XPI}9lLw_rDH?8s>aq0i~G=g5^qHIcwst&t3MfY^rT)4e)jO~-;ekOQL*!||FB=Ke$U}f1Sl)C*6m(l z^CF+`j?F`D-og&+=KT7wOZz*|m3Q^3%5~_A^{@difO4AWwTEZ^>oqG~#vo(v^n1Eq zS#Y0*gw@jNu50r^$oFblO7WaWKx`fx-k~gS$b+gn`kPWL?T+=A@^K^Yl;+9Kzq{sw zkSZHH&#jjgtSoeHhoMiJv5Ld)U%x}jn;|{lbb1yGR@I#B$aT2Hs$_g=*1OoA4pi{w zibJZ)(v7to8_?^)2+!=dIyAh!71#5Mc0}zxLJ=wCCx;cLN8@#-t4h`!;;O7-oyT#F zXi3_xq{pM##-l-ASGK=7s-6#a#*OE0(xz>!XO{eee(&-3-aGxtVVcKG;+6WP-E%lYDD`g>;K<&)E# zQCXRX$Who;T!NzCF3a`nZ1qG|FJqYpxN04cU$1LaOgI9*`JsFWKF;}oof zD2KArf4Tl^9PwjS+cQR=8S*)6lYv!FpUj9y`Skp47um)=Ql4vBpWViw?9k4*%)rdW z$U9>Ax9fUZM0%smG70~d$wOafg3XRaMQ6-n){{lC#{N!in%JFiv0oD$EDh@z8h@qi?I6 z4Rk2qUGFg)Z6CHDO0flw385mZtMX^QkpGn%8o3iLMF z8XHcR)f+JY~aW&BZO~gCN(O(>CXPry1Q# z781z)zP>sOKVG>aR{ZJGkX-hs3)$aXuYSD#>*->U{@eB6Z?AVhT(#f#*E{$Aa((~v z)5UtAIuN(?f9p26Fv2c{CHR1oFBK= z;#e1g$E#(-;wz0EZeB+=+*wPQ+)ghUj8T8nO#D5M{nPbIW=Lk0hdZ;?H;*-sdqj`d zdlJi^zrXIlr+CIH%gxSi{$?CL__tjVXyET==i$%$R-zJ&xB^3;-MWK7{tOk>f8|>r zFFV1dRrAoptv_Gy8>mpZC{_AVuCPL)M0deBeA8FU%L?U4M4qS(8>twev<< zbUiy#8u#Os{d{x%`@;jD?=ED2eZBwX>TdSg&yRnhB$iQ;{L`gJ7N;fNFP_n>)yt#n zL!@Qd8YwVU0QPvSJh)9#)UA6Q?g;R&>5mango@Ik0mL--Dw=)%9o zOr!GCe)9oK#Z>mdTF=!0o!(jN`1WcGSrBv3unSNpc+2ZnII&wb^EQ7e`_3*QK$pK%O zZ4A-+V;k{^S67VSp-pM`)=|s~w=&iiIcn34hQM4xG>uxB>3>bA>xvYGMX(R29)$z;pWQYZDf{#^u>xBR92dCyCl^@}bLxl_L+kXzC} zJVWBIpHLa6es^8b-_!6N9EkVjy4jmYiBtY7=5CCzdao;dqq`_iug-cN{fEcr&3jHI zRb~HrjT}~r8Y1)}XnAcXj`j=*x_f`E3mVAQtIzrJL@}$?c(oWwr31I)|f{5 z1CN#?ivsc65CT8dfpqfzl8|oW#(U;0J0wr_V|ms&J4Z*NpgGg$#%F1DtIrp?;^Chj z_7Njb^fOEQUgwFANnM72M#-k{9<$M@Z`i?FdF}ED2SLKH{d5t8=vmH$G!jI(ILP85+RL< z3jIZHNSU7bQ}K&7+HW;W`(3m$`ClIL@t-g%udz~?bf4JiTlY*aytiyCTWl;6xDI3a zB^Imj>g*DaL5qm6=r2x(O*}aErRn)eZ0dbDTs(#BXV$Os;WK3@?;lds#VIzFh1{zh zYgHq(Grx72?cRH4vHi*`RPu%sZ?g3e$R=51S=zfx4=N0P^hc4CrKicxaM6pAt@OWN z_m?%es=62gbc%QtUh1#FxO!RNIQ8gtHk28_OD8kfy6*A4!_;1h@!(*4V2!E$6^ z9pv(0>tOkxum55b*ly)k7h>ez+eO%#zj}Ooc4w+<(@LEjwmKg8_Affm_w^5;hQ#ju z?V&;bptBSkpX)zdpOks=ll*hC=Q)$t*&HI^mJtF8+-CN+rGQdb6>5P zkB$77U+}!JM~>wPs?@Q;>C&B8UH`C3T9onLNIyJQr`EK-uP@V#)9> zJAdw#$UW*ae0hyH4?S3V|InA*W1b)ScvX>PY;h1qOOwIM567@n_9T({)_=T5j`dOG zKI{lx*6ieN`H8uV6`!PIa)i!z4}GmF-`eZmW#!YsW5@TGJ!lwz9*J6K6}zhUnZ?}q z&8PXkyQGwp=nwPo*MH0Y&R5G_I^j5$_&1Mv`$cr>E4VW7&XfK3?lL?p=#;J!8S@Cbz|G&R9`Qf_q^fAA^^(RA6+Q(gcP7^#VV*d6?esb1&Dw@oT?c+pKaf`ecO|Iq9pD(<5n5*PI^9l_48q ztz0C4lzd0VC_l#2p@^icrCTJwDOx5K{=-6HkbN-NY+;05L5K6wdk3NJCx3G;-JMz1 z%B-Q>iv)hfBA*``dJX}-u0x$>jHSEt@)+UFs-uG~NgL))2I9S%(W%|mPV=YM%KMBc zo>^BF#q^{Wk*z@we6&*0xXRFIUtQnx{{Qq>UtI6%j-0229V?Oj*N222x!suxmObA)BQ6*A}5)d4H=h`ya)_>E~GA)gM3E*tn!_oOv%kwhB3;Z@uTQR&L$+ z!s?3|B3e;?K2qEveLNYm%=^oAuWMyGklD$v$#`_0JO|6{WL6TAh?bfq9}P3x-G1(z zwAN*=b!ai;deEZ%7|6V5)*^$Q5_Ty|gynyEFwciiI%EsJI2mQIY%J3^N`@15-S@{07!k$jPOS>?Dy^fltiGK$jK3ZKfOSkV~d96RvzlS#hqzwIkc zWA1c<37Y5&&b_|hD;ll4zx)2(wW9mqgf07VzbFqs_>z2!l2*>v=SnlN-_d9FYZzL@ zG}2;48d^m$hD)dG`R>^f^(#)^_Pag}b9>qd_2+!;oldoqL1{O<<#75=mT_4x#`#=chfLA#D_FBizQ4M8y z!Cdz&O>Pq7u=BGomjQG#N>&}G(na+eP2FRcipwVu2BXzWR%wrJ2stOkr|EyVY*5wM zCssONkxvybPB$vKto7_2pZ&1m_45p>>}BFWQm-iG~`C=HQ=gna4KVIMHKZqQ8gZc1feTNU%yD}tF@xHim zD_ahwZ_}^CLZRw{ajye#eDz1n zdjGwOuI2b|EE4+iU0TS;yfQEBv(V~dC|DQ#ZyxC7opQ6fTlsa_I?2}`?e_}DX6#c0 zn3q92Y^--a^ji@7=%xU1h4s-Iq zo`^3aGEUD$gi;tRGjmq={ATOf-?Lf0h<7(FwYP6ABE|i=jd`x@rr#WIFE7l(#h4@O z6>rl@hrwF*=P$Gqk>YX}?+kEC2gTE_h0NWdGuN_wkdjyT?j-@Lj*y;Bb2OqjNcyxLE9h zH?Qb>nP%Rxj%Zbysw)4UjQ8$UYa7?cYT-eAqRD^#v`=8}t}chn3&h!2&`Qj+6B5t9 z#ZvNh`8@rYiL~j$z1CdC9#(m1HSp2TyUSv&*Jt+7MFc$j8nI{hWV7%S*~#Kq{<3e+ znTFLSp4mj|WaG24%h-V)*ya2V%9`+KJDk6Nl82PbLGBjDx~o_CVIw_Xfe~1agr}1> z8?sDR<<)k^c#cfW^>5WV_YO$bsG`Y-W>c%=xyi?8?%v0Ppran7Rgzsk)!zm2-RVD0 z)1Pw|B%23D$oq1=il5BQ{y$uwh?F7jt4j{};~CHX_Pl$f!Cx?Y60xEeTc8GnTk8F|DHm2D!V;MTm5exWIXjS`_S^fIn2zKA0O+?Pxz<1 zt#x_T-(K&1nttk@9nLnw`-h!R#dg?pj>W^@m(>9RZo=1MP*od zba>yd{N`K3Dh|vac3nOja=NNLnAl1;P#)R$)=^(J8HytAS_T7O&l&P!4fceG=_FLf z2J|cj?HnwPoZo-KV!U-{R#=c*8K+KrJ;?uY`-MX5kuQ6`SKLnnMUQa<4_j6=gt5}} z*b3qOkFz4PwfnuS=)-MZ_d?X>CwVy8Cv1PTJf#0o=DxU;2J+T% zAe~vA`SM%LCCgf+-}U`|Vfo&j`>g$~eNTGEhE|i7(jjCf$?GV+Ts4n#jj_MEQ0Cun zFR7|MjL^BnaleuETii3fxazy>jxbjBWtFogOVx>L-DPY;Bn~GxJcv}C_QH(PZ8uNVjLtJ$Srchvcszqq?BjrLtF4#Z_+&UWv7`^EMBy-vU!c1;%3)-|0x zX@6B?JH= zJ!c!jRqDQZ%QvC%u=q6I>XwJnKAw>eEnnrKzkiyIBr0mWboQ=X3#)tr>lex9^P){V z4I8udLb`EQg^4V*eD@M-pHJMgaZ(p6tag@vYt?jGuLrWNvy&xIW`x-6JP9;Sp0PcF z9H&^r?qMmIOaA1GV_oHhC>{LM1Ajcoj%^(`^#EQ;zcfSx2cvJTfM%aL)jg{n%R^5d zmHe()Y;S+=;FSm1ZNp;ol~7^k#Ic@8 zS#||)Pz|}0QB-qfk+JK(yWTI-Sz);chK$Qjtxz^V*NyP&HM(jW)?Ay#NI(u&u_CKo z-`I|>K4Fpettfuq*?8{L|Ho?->?z(Fck9gW_z|qUyZ$e->Hzs~_k8|45ZHUUzBLjn zTDAKz81&{mkf>+2m092?qL6}39?#=<hOJp5pP$)t6%hSjxSy9iK^@m}RMN9&qr!*qyJS(yu0&UYKXQzx_{1BS?derTAa zM#Hsdp4~GHbo!{+VijrDN`ATKgS<}2_3VJo4f=I26#D&BPmDJ=sc0$<>9cxw_OWO$ zE~_#$cJEp8t=tudh8H81ZFrRr7%wy!WpRC{H(_Ggu`J1Yt?IRB%F}%Q<3n$=@&CBq zbx#s*?p3*2z_@9sQH2eQ{fb}Y z-hGf!TL0Jqj7k>RbjoIu3}f%F zEB@!ZiCz8sHO{j~#!a&}8H&#volmt>U7pTTx&)*+`IAq^32G6jqZugOyV!IwuoHgk z8_EUYy;#>XfW;m1 z2*t85^WJ}-#|zCYI}#mxM)${0mXmp&?xo*{k;2X{-4>6mi@&gTc^00=UgkY@=8%?m zH}06#z6M*=d$C5IQ4QPpA*l)!zMpdh*`?@FeNP+SlOl$TQIpgX4LCeIKp(ExWGDGNvyqDy zLo+;`ynGRKY!F+)#yx{}4;z_bedT-PBJ(QxEO=tY`0=X;LilGV?c$Gd9~)R7DSvw4 zRAs(=W~|#@K+@cO&VD5e|LMAeXKc@)E|6^Z^F5Qd`y6E{`4>HsmY28ysukWyQOtZ1ZLwG%@SYw~+$bA09qwlUyJ6(6Lj?^A? zqVKapF&&5k)o^u|c=WoD#ijE^{rmlYci9Ej*S%)FXJkOyc#quw^oWG?$euE$tnijM zzJ2>=1E2Xc?LPMc$alBiQ1;A8 zA+z|GpOw?qdGoXfSA6{BRXU7ve&5zUL|HExqO)MSEi}>cK(G9Y@yBZp^CY->-X@XTS}s^OaTipZge={^fC9nd*4S zsNX#4M%SZXDHb!9bF*Mskb7PptA@!T?y&Z|OAcsng=Thw9k=tVINlo1j+YE(qaXCW zJrBOM=8d%YE5|7Jlix3LzUJV4Q>N7lXTf#p*l2khZInyJx~@&a#jktD#G3AuH~;p~ z0gvNwWpS8ZVZAS!tQ! zsjAO8k@i!|lZ_Y}hskVpaMI`L&OPN2%RXk6X%r?{o)3NfX=M1xi+R7i=x?u2{`iE7 zs9MIcU(u7&*}#D`?we)Z-eiuG5Y_!N6=Lm5?-slIxv%f7Y|36~Iq*6C5KPBSPK!ouSaC;vJ7^Mr}5Sz#5@yorXU1sN+wjkQLm~4(WNt>&cn~L+Z4?{C4kOk9cMmr(Uj6XqaC;^Je?0xJLdY zLf|Mii#`4bXSyM-%c|ld-YC0$=Ed-uoNNmhG)YgaoqhVWD3YyNwhq~tgwLCA9JCm@ zJ>es9ygKWj=WLiuY_0;Pjj_hAeU7s|?_xdba>kw<>@!)5uws)8F#z{igmp|y^(TJQdw6vI}*osv*bAy7sK(# zb)lUZv9LZ?OQZ<4oHN#i`# z=`g6c$zxwLoWIo{ppARofP)W{V#&knvcG!0JTjYS5xL0Ni!8ir`=mZ!&O%qo`Z_W# zhA*q2ALGnw&-z|`F+1#t_6ON7*PYLig)f&aq>0zFC*kn7{P{%p)=D?U1M6EC%$jzp z1HST7-;=Ct$~D!xFjA$ljOP4C9SAr1prazv7VkIJ+xb@ws(j@UgRhv&HFSB<(aS!WyMt2qa_DcZF}` z)O9}dd85cw7uVUEN6s_T1Eh5VQOvczgNe6v`&NJbudlnD>ceU2`b6#N$G63ETD^BD zmhVgtI}?M?$A=h_Y#$!F=(pJr;Ti~2o!%qqedTm_YHJmV_4e!oV-{J-WbNbSPB!>H zUDJxrM0==bzj_r&HdFhZQ;7Q9JwJf2*Kf+F%FtA1q{G^zhxoF{(08I3+_2YlG|yKJ zlCTpauQfY%8IthNW@MqTqEGp;_5>Y#Y*^Gi0-+m-b@p0yX;kOGog)?z$&0k9C$)sqq_i zW6zfIhn@>S{??LqK0fT-*(N^UIRVvza~&aF?7}9Ct%s9Np2FK$Y%?EyVWMT5#kw!9 zu|8+x*VO=Ye7x4k3itiTMjoz;t8~p$@f3j@#J|KE-uFyF6UUfX&6%t9oAsWKnZ#@(b`-$}Got(R4{_GQ}Q=doLr zw*O+CA)Fp)2_uDzaGR$smtigV>@FOho!Eq=WA(+}gX1r+Ysu&OudY|LY*ZfXZZ)_V zWt_=+bmFR{+ewCly0_xh_YWO~3u`1B*1WH*{VaIOQ(#P`)phxQ=(z8i(W!WvCpKQa z<+Ik1gU!8~6#09dcP9k$2a%=uXWt@pJB;-x8o^ld&E<>pozM4GPXtk&l@p~?KKJeu zj+#dd6^n|aJgU5iorVW%s1qSFmrc-2ES=>i{qsqlFk~&pm6r^!`8|ExjZo(lt&P53 z1{+k#;uTyMddlzOfnwo_47B0wQ?-RFN&39wO$%Yru6O$$atA2uzGHnlFze3`8Oehw zf4JVMCwwE;;hQ#O^SmGB2-3VL0=aU0?$1{qVSl$H$`|9wR$t9WJfY`s>Gp7VkDwJUrHyN06+Uib6@H zUJ&=v6Km5iJ_$Zmdr#T<_mbE9IMMzI@pgujA)I9O1uTzWwhnKJ3?+oz0=eVm;l(a@HNU zhBEn0xVZoNwHfd1KyIUa`OrjBdwKfZ#ykX*UtFKRT=#63c^u6DTz|4W>v5;-?DKQuR;sEvp3icgI*V7y5g&&oahnWf3*TPS zo+la5H#_i5h(6jN+rM1nv8wD~8B0;*t7~>Fp<_;qwEG{g_ow4RGhbb!(g3d3WuOlC*k#(SEal>FKTg-sLCh3xaf*-LcNubKXyz+l42s_f~7fDyK$F zuZx^_&r05|G7q1oySf2Tc1{4&|HnVikiM45;qfwv{i0S@6yEAk@owXW=C|sokJoIt z69TQ*9UI?$q@4E7u6~;LU7fRbTlyPS>nDfheBbKWYr0Yyz3wT@8^zzE9D8C5NS_Ya zMX?qth}hmkmH=zA?Fv z2ZqjhPd=_65DHH>+p1U_D&fHR>}SsM>O2)9X|_Eex;^#s>s$)9;fz0$(S5^Lo-%$= zwPfWxit+2I%^FRd`{5y(e9DN%)@vCTVLoS3)IjR5ko*=mH)57@KCM$7*-Gxd=wrNA z&nG7H^QX_XU7WT^LAPajsUY%^(?~c;X*#ln2PnU238H@1cG%weCpNqq^ zxz}%T2&?{bUHSXy6uJ0p>@bJ z%ZA=v{}!pMU0Wdwg-3ZxpA{!D$=_Xf@X6xFPWv=Jc8JmD0d-O*-6~9y!~3v$_ks0O zhoH`Kk$8J{UaNcNiCOo~7_-~3@Zp+|_tpJS$IA9Z#~ASI$M@{=@fx>XEr{eHEW2^C z9c1Cs?R;&wF@Fk$x`6#%;4)FsgZ7&bUY6|?g`YLF{V#Z2u9XyWMOr&Dv0MytGB;P0 z-H89=|Jj6xVnr4_zl&eQ@}0f`w0?Ev8-H^>9pLNh^~=={``btVtG}iA&Gp&0kH56& zJeKRexIX#r(#vXuWkXq+jC8sTiBvSg&U%r6dwME|x&QWo*QJ>(O;m*a#- z`HE}j7no0^e19P}tDOjF-vtWeXPC%`@eTikH&WbdJ9hN90*W5SJQ0QcCoRwO&K23b zJ78yQOxC=6oHrYY16ipk-e~>{CwJa`<~*8Cg6BG@wSE6ssUE74=(c&!?02aTgWUB) z{!onj^9xo?i?sFb(qkFb#w{{bDar%s1c%-0p6#BLyATg(5HgrmeOc9fS<~)9{GT7{$zMdm+pKS!IDf&GB?FO^UFUgYp&wCVk z+U}iPe7r8=x;^v~?yPaz7m?wQ73*o9Unqzt>b1DhehhZh^>BA~V<{E9?}j0nKO3E# zhlUP&-k%n6p7NCBI7yxjgJEwzaUV_I*|%lX+ru_X_#5(1rQPSxlB|E61>r4L7~bQC zG0ozf>&|Y(W}@+;e^#0$NLZzZr~L|ewt{o-cqcwQ?1;hIF$_J~sI{4WIDPAhP`J7| z$5(W@_+-BGOcCDGxwiA0O>(z_w?-d--)CvRKP0p>W`&ahP8#pIN?p8|-m-x@n{U$< z$@Z)HK2?j9nbH|gUBqgJGL-2z3)G2vxvq!i6JLs2{r8?LvHi((UZ3fh559b|5WHI9 zy%Kr7BD3<5GxaA7HJKe!BL6>C~xC;+G>yj7K%zoD#LLqa0V(sDBihcjx zrD5Yj6SihKzR&APb8>N(l@I!^{v0ie!9Ibg9 z*C!PX(8gwMynl0z1vQfhYmPaJrq(rV(Tr=)uXJMG`Rww0af#1D*QC7v74rTboIcj# z`de9n^@hJ?i1(O4>iXk%Oj)&^!6Myaj1?6}$*Wf@Gc^ADYZR8qdOL6bUmsZ6d5qJ) zxX(0ny3>pz!LnFdq-obcChR8rzx|{WTK@9-EZlCa?=Fq}>n90|Ht_#%uj|xK&_w3t z^s!JH_Pc_t&!cF*6FkqX4hicIum}Ci@s=Tzxbu@Rc6Pabz4XVHH09N@{O0`Xp<7S4 z_~QEho5wRt4g($Sm6`IwqQ!9KZ&i)CcoJ!N5udQyc=GSA*Nbc{xQ@5gdZ&|rB5`L( z^FTFk+(>&rKCDqhPy3BZF0}^Mr`i4TIgcP88?1K=)h7=jXI;V~pd7KN9>(%H_sCX` zMh>1_2M_lg{IJ8KL)K)0^tA|E_GNCpD?ChEc=%k-u!bA*`tEIHE8=T;{=E9%UAj== zVu9`P7+;3Na~gr3^ah%j{*3?34`=1NBhP;~u%3_6V4yDf@7Jr@+^XYU)+u|=0`qOS zktd|{Y)f-A&LZj{7=dD*Fikv1dA@UYZKngiu&&H>R}76yw$cyRRZs}g=IN9I-SFfS zhsTQkjcx>KG6yw${2Wt1w4zm^Djf`#-jys zY9}{%1(tv{-Fygih5m&_kO z$pYxyR@ z_gN3@u;(bkAZ*LO7OCqvp1t$ae@#o_*i5i8pZw(-wXB^+U`ULz28geckr_CFL}K_H zDrLxKxj#`>?7PR5MUxP&>n`to>u-lxEgk;-HR_!|w?39(VLHqDa6@O};yQtlUoQen z@i1|bt)KJASTR}fPj^{A@9x`s4oo(Pk~N#3Ch`em*P$mJFH(Jk^L2x1`}ga!yvBVn zktS(t(Xx5ZlVWK)G?!CUhwZF$k>0H1yYv!IwfeXB^(R4@Uey5pF{0k(B1rn})4Nrw zz(nF=Tou(hMP+T}XpQw;V?e4ot?uwaD2;dN>fpC{6N{zCUE5jM|Ndv|k?YRVw0z&^ zYuyJmF#!xgR}p%sil3|`tI&cg#UnQU;(C3@DXcwnELIgU+*KC$7URfi%G;l<2$4Ro z&b`kx_ITE9T8dZ59-l9Rl&Sr6{qNsiEbia0AM*dvlPGx9sXna#87b;ISt3oq3ZHCk z{UVxA;`A8T`st=$<(*#qb`H8b`Nd1Mx9ozo#2g-XI=mS-e&k^t=8T@vNoYhUEn;kOn5f@^idMUNf&^3`u5r zzUQr6;pc}Oewk0^!%5#?pI8r^82hfh<-Eg1zW?&L?jGx7jamPXa{}Eyb79V^K7JDt ztz}UnIY=ySiN{IbDe_|VS-~`=vJ^umEnTrjx;atH758T!mUZ3zBz%qy-LIY^AKrnTv5rK~xj9C{T{;Bq zDp+fLMl)v*Z@8zsAr#tSmy91D{%0g?pbn*nEa#r(7SA5>&8NG6d)yWG>}(B*V&)cUtTldy6mZnN{{iXS*Jzcl=t2{D>@ke z{8<0@kN>_rRz0ssk1}IYRPn%EtiCm~L6~oaY z_2Q2m>G5^WA_^uIWJ0WGYw3f~>Acu$@80TBsaV$Qc>DXmzxK=6o?ccZn-vnCBPv|5 z#)%~KUcWhf`EC;bcwODO=2c(x34tn%(_heq@8sO@9;>sxHSg@!@-ujrf6DehAMITK zR_{w*E|xei$_`mr+&ooIQHL$IrXiwua6BBoVX4d^uZkDR_3JfPK4|@+AeM?t*iha& zJWuCzD*on4i{*Kz3Ns92=H5XUD_a*E_WY{OE%2eO!oSumqLJ_Ax_Wthzp;oF%94xe z7|pmM{h~UX;FEg>MP{D#x@S{I_4EbJ`^z;ZbXB3SfGA`&Z+XD?*G%#A@7EQO1BE1y zsp=rm7F}hOYS;sp|?I46_HjrPpHp>GhoP$WO0Xm_=u0 zW5qAAW>IZ-V%NniS-{C7#2eqalAQ0aSEo*n^ACTPb-3=^YrcQ~;5V9~m8@RZ2m8Id z{(soz^*O%s<`6PIJX`?lc6OkaG)8ARoV|+vo5$*BQS!&UbrpP`o!2+#Gf=0#Scer_ zLXI`bec6H6d;j6m3;WHERyvK&gR<2sb=(+i<4kUMK_PyC-T(cPHBMR{(7f)i>q3jaTvGi0Se*<*@AJO?gEnJU7t2$3 zeh(h4n5TVl-79nCv1x2$A5Q%F`bL(xr$Bgi)lOuF`cSqJwzjRLejOe;RyYW{>)G1A zx?~gO=w!9C5$PE+PKFd)#;oM9MxKhxtbBZl;nU)N^~N_mJ3B@$p4~NgXLqlgL!4M_ z)IqW{hn-Zm_;Js~6&ZN!J<>qou--cK97IggCSB{HgV|tFy8io+xxK5SL%k;q9~PV| zA~mbffqBXZXBlxqZ9U}A5Ajtj(^+KC{cTM5^M}@eec=-#=aK4J zY{x5BE$+GNb+2=F-P3Jlh(loKhs`ZVFvfnz87EH~HZh}>EsoGfk^SX*1zo;5C)Z!I z#q|9-?~-`?B-y4pj+Nmr+aAoo+w?h0zz;4b&$FC7;2$4&rlG^4ueDXZapH0PDhM|= z9kV5ie0(6{UmsQpJ1jaY(hhsM^5lTY`TO(T7+KZ+u+OXX)yvbU zp2j`z5pVQ?R%1^)=Abbn%l|s7bn2xzf#vB4lN873sA>bN58dSQ)%V=Z^<^CbKA8b3M86u!O2<74})m^|n8GZtX^^x{A7!+=)tgGnm)Ucw~-S?{s^Z@?;`o`+;9GtMw>ztyec-#?*dC&79$1dz9 zD=oU770OMEGOVC)P1A7v@i8|KgMqvk2U!=r+ta3B8b0iL$C?rAIL!*iy~~Q1#8=~1 z6ZtObjd41~?QOu(dNY%Z_0C@}NS0ZDmd#!=A#BTT_w4Cdpl`~;UbaFnUtX`4+my8@%~y|mWNGkqm*DMv+q5A^%uD4s?)>c< zpWa39bv3%S%K!W8`YPS3u&=K*^!q_t#Z-J6M;oQM8{5C$CI8#&+H=-Uztlar(mM4> zcMgab4(0dkVQ8dH`MCS)!_v8{T1!~;E}O-@dtKa?Sx){kLjO(kiMKST?10^B=4-t{8gWg^5Cj+FY=~#iD%<=B}f4C}Y zEc<;c51vM5*X6BQ0_K;S8Tp%QUDc}Jf5O3GHkv#Uji*d2<-qqHH|u`Bo`%Ju)`gcs z72mOL5ommvRf;EKO-wsv^{st?dOMA2wBmgH%FB(ACWpH`O!k-k7L$Iwu7y?lAcyP& zYU7qz)aj*|y}rrGou=C)krBr@f4W9nuJxZEmSgddw~QcELwu{h@AHc5?6<6$Pj4>P zBK1xn?waI>C+Ia>eh_yXE9r-e_K?|t1Z6g%oQ~+AiosYzeXHoVA18m#E(hmE!SC6_ zeC)wSM^;wPYUPn4TbAqWhx4QDNZjv_6N~wIbpDhCC$}#qLal3AqyAYMq4{!(?J2op z+0l4;`l6@eh8>5VL$|*~^v$1Z)s6UC+F6?}tIzbEw@a+ALgND9(%uEv`5+mx{KXdU$*IVcrg`U4@ zB$cVp)=3+$kS5=x%foa&#agE#Va?2$K)c!|7*z{u?=~!i7mS4ah-sTc1z0-FxF( z{cjgG*hBs|1`6ln&S_nj-W4#k`gNzQ%LB%A%g99ox*qc1KXO=-#_1vU`Ba+qe4Zs( zNgOAd;Y*x;#_{?Y#iu@kKGtuxK6j@*{E)eI(@AS*-T7!zA53|2&o9^ietUG&4lX`i z_u_ytT#V1xX*c#QZw=c+%l&Lbae%a0aJw^&5{C8Wjj;RAJ>=)>@wCrdP1z$Z>ZHj~ zQbel@Ps2UQVSo36oy#f4NwGO@^XlWD$LBTw=arr47{p$%OG*;IbzXt&@2|TcSH14E zTzzgz@1mBTciED_y~QIxu{*)xPdMxi(Hpx}k`4_V}uV^6dIb4_jnsYOUwSw--g6G8^VwSY>gv&*89P0?P_>oAe-gz2Wy)y?-hKM~ zu9zS?j>S~Hyl5DFJtpl#EBR^XS?>0FF$2w8opF|hZq?m0ys%bzILye$Wsc8%9G{u3 zb4xg&we8>U9+v6v9>9!@%Sy?>5;Rn`HTzH|q>td4!N5>Bma@LK!EQKhK}Ut{TxGg=o1PPG)8 zPh}=nbtbBqj2oba)W=_BZKw8cy~P#s=^IUBI}0o~HpbEOG$Yb?KBPI|j?6=0YbO^Z z@`AB{pS&IMj@CZ+&3i6sT(aF)w_1xl_v()xSbluvHSgOR#pCr1=wz>9gT2*vU2j}* zG=?ax%C#pZ)QA{l)eA<8@6@#eK~_q}HKpA06i8oGR${AM*6GqcOeS@udbV?+}$eIVs&Y zPaR8k^PZjP`*ad8eO8@}!JQ~z2cR$yz!p7PHfe!<9}F& ze!VXfEdGk*e|LQsUt?xbS0v7#%PH!N9HhX5T`i-2d5sr$t}F437VD{_NZMqMVNT7@ zcd{3bA!!+N-dm((ch}K;QPyiQ&pmrip#Ja4H#%`mQ7po_WIFNK9WZmV(p6?#=|Ca}j_EfL9`eY5uP|7+M?TVG^ z3ye68yskp-Og2fYV5Sl47G;+WutEBBuSkf!ceW`(SNXB}@~AkhLItw1bDAD{OC^4kAdyj>nTZ@5>R?Nx6* zM@K`AZ}80hX~o5e>Gee6*VWQt^`9SO;1FxCioBob#y@l}BZCRKwpp?fhT3f8TE?=v zjs)TIS+dCvH_-9Jb)9EQu-E%*CTwQBBEzbmMu+>J7dqXr^@+GI*Spms#`wS6x?>%u zf*1o$?_04JC#T8N z%gBnU9kbic$_(ef@jm?9+krdpa3>{_C3SYi)E*n1K0+BOj7{IUu`(}H9HSdTYhCwAl0)Qz3Gp7JqId4iJnsrE33&J?Y(AEljJ&d;%`3Qo5u zZGCtc!>rwDb+EnAf%M|aaGc{4xuove^dQHw$0r|AfRkc+<=5M>Mzu>7{^&{k(BZTW z``G#M&I-PmYU<1J)9+)Pz0_kODGDJvtXUr?L=^U4kAIYMzS(KMbTeP4Nuu5^*#I4} zVd5oY#k8xJtjV`l`hK%|PPAy|Ruylz8K*xXkJTOVS?s7j+Ha+riyhYG?|8wUkY zi5sh72ca^Wt&+TL9qi$gIWIJr4p0o32#X75pPh)cn$hbZKI>vgh zikBzn+?A(zQe8h5kNSiV7=YhY0p=kYeq(I)|*4K}6Yiuu@)yD%g13tvHwIX<0QI9&Uf@ r>~HaL^ENbj7pv`F*Fde{32JafA?JoNWOcVSe2WRhO}F&@%e$9<^{N;k literal 0 HcmV?d00001 diff --git a/simple.txt b/simple.txt new file mode 100644 index 0000000..e69de29 diff --git a/test.json b/test.json new file mode 100644 index 0000000..ce7e20b --- /dev/null +++ b/test.json @@ -0,0 +1 @@ +{"Hello": {"_count": 3, ",": {"_count": 2, "this": {"_count": 2}}, "this": {"_count": 1, "is": {"_count": 1}}}, ",": {"_count": 3, "this": {"_count": 3, "is": {"_count": 3}}}, "this": {"_count": 4, "is": {"_count": 4, "Liz": {"_count": 3}, ",": {"_count": 1}}}, "is": {"_count": 5, "Liz": {"_count": 3, "Miller": {"_count": 3}}, "a": {"_count": 1, "small": {"_count": 1}}, ",": {"_count": 1, "this": {"_count": 1}}}, "Liz": {"_count": 3, "Miller": {"_count": 3, ".": {"_count": 2}, "This": {"_count": 1}}}, "Miller": {"_count": 3, ".": {"_count": 2, "This": {"_count": 1}, "Hello": {"_count": 1}}, "This": {"_count": 1, "is": {"_count": 1}}}, ".": {"_count": 3, "This": {"_count": 1, "is": {"_count": 1}}, "Hello": {"_count": 2, "this": {"_count": 1}, ",": {"_count": 1}}}, "This": {"_count": 2, "is": {"_count": 2, "a": {"_count": 2}}}, "a": {"_count": 2, "small": {"_count": 1, "test": {"_count": 1}}, "trigram": {"_count": 1, "markov": {"_count": 1}}}, "small": {"_count": 1, "test": {"_count": 1, "text": {"_count": 1}}}, "test": {"_count": 1, "text": {"_count": 1, "from": {"_count": 1}}}, "text": {"_count": 1, "from": {"_count": 1, "which": {"_count": 1}}}, "from": {"_count": 1, "which": {"_count": 1, "to": {"_count": 1}}}, "which": {"_count": 1, "to": {"_count": 1, "generate": {"_count": 1}}}, "to": {"_count": 1, "generate": {"_count": 1, "a": {"_count": 1}}}, "generate": {"_count": 1, "a": {"_count": 1, "trigram": {"_count": 1}}}, "trigram": {"_count": 1, "markov": {"_count": 1, "language": {"_count": 1}}}, "markov": {"_count": 1, "language": {"_count": 1, "model": {"_count": 1}}}, "language": {"_count": 1, "model": {"_count": 1, ".": {"_count": 1}}}, "model": {"_count": 1, ".": {"_count": 1, "Hello": {"_count": 1}}}} \ No newline at end of file diff --git a/test.txt b/test.txt new file mode 100644 index 0000000..509cb09 --- /dev/null +++ b/test.txt @@ -0,0 +1,2 @@ +Hello, this is Liz Miller. This is a small test text from which to generate a trigram markov language model. +Hello this is, this is Liz Miller. Hello, this is Liz Miller This is a small \ No newline at end of file diff --git a/text/1.txt b/text/1.txt new file mode 100644 index 0000000..b326f52 --- /dev/null +++ b/text/1.txt @@ -0,0 +1,22748 @@ +The Project Gutenberg eBook of The City of God, Volume I + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: The City of God, Volume I + +Author: Saint of Hippo Augustine + +Editor: Marcus Dods + +Release date: April 8, 2014 [eBook #45304] + Most recently updated: October 24, 2024 + +Language: English + +Credits: Produced by Douglas L. Alley, III, Charlene Taylor, Joe + C and the Online Distributed Proofreading Team at + http://www.pgdp.net (This file was produced from images + generously made available by The Internet Archive/Canadian + Libraries) + + +*** START OF THE PROJECT GUTENBERG EBOOK THE CITY OF GOD, VOLUME I *** + + THE WORKS + + OF + + AURELIUS AUGUSTINE, + + BISHOP OF HIPPO. + + _A NEW TRANSLATION._ + + =Edited by the= + + REV. MARCUS DODS, M.A. + + + VOL. I. + + THE CITY OF GOD, + + VOLUME I. + + + EDINBURGH: + T. & T. CLARK, 38, GEORGE STREET. + + MDCCCLXXI. + + + + + PRINTED BY MURRAY AND GIBB, + + FOR + + T. & T. CLARK, EDINBURGH. + + LONDON, HAMILTON, ADAMS, AND CO. + DUBLIN, JOHN ROBERTSON AND CO. + NEW YORK, C. SCRIBNER AND CO. + + + + + THE + + CITY OF GOD. + + =Translated by the= + + REV. MARCUS DODS, M.A. + + VOLUME I. + + + EDINBURGH: + T. & T. CLARK, 38, GEORGE STREET. + + MDCCCLXXI. + + +Of the following Work, Books IV. XVII. and XVIII. have been +translated by the Rev. GEORGE WILSON, Glenluce; Books V. VI. VII. and +VIII. by the Rev. J. J. SMITH. + + + + + CONTENTS. + + + BOOK I. + + PAGE + + Augustine censures the pagans, who attributed the calamities of the + world, and especially the sack of Rome by the Goths, to the + Christian religion and its prohibition of the worship of the + gods, 1 + + + BOOK II. + + A review of the calamities suffered by the Romans before the time + of Christ, showing that their gods had plunged them into + corruption and vice, 48 + + + BOOK III. + + The external calamities of Rome, 91 + + + BOOK IV. + + That empire was given to Rome not by the gods, but by the One True + God, 135 + + + BOOK V. + + Of fate, freewill, and God's prescience, and of the source of the + virtues of the ancient Romans, 177 + + + BOOK VI. + + Of Varro's threefold division of theology, and of the inability of + the gods to contribute anything to the happiness of the future + life, 228 + + + BOOK VII. + + Of the "select gods" of the civil theology, and that eternal life + is not obtained by worshipping them, 258 + + + BOOK VIII. + + Some account of the Socratic and Platonic philosophy, and a + refutation of the doctrine of Apuleius that the demons should + be worshipped as mediators between gods and men, 305 + + + BOOK IX. + + Of those who allege a distinction among demons, some being good + and others evil, 353 + + BOOK X. + + Porphyry's doctrine of redemption, 382 + + + BOOK XI. + + Augustine passes to the second part of the work, in which the + origin, progress, and destinies of the earthly and heavenly + cities are discussed.--Speculations regarding the creation of + the world, 436 + + + BOOK XII. + + Of the creation of angels and men, and of the origin of evil, 481 + + + BOOK XIII. + + That death is penal, and had its origin in Adam's sin, 521 + + + + + EDITOR'S PREFACE. + + +"Rome having been stormed and sacked by the Goths under Alaric +their king,[1] the worshippers of false gods, or pagans, as we +commonly call them, made an attempt to attribute this calamity to +the Christian religion, and began to blaspheme the true God with +even more than their wonted bitterness and acerbity. It was this +which kindled my zeal for the house of God, and prompted me to +undertake the defence of the city of God against the charges and +misrepresentations of its assailants. This work was in my hands for +several years, owing to the interruptions occasioned by many other +affairs which had a prior claim on my attention, and which I could +not defer. However, this great undertaking was at last completed in +twenty-two books. Of these, the first five refute those who fancy +that the polytheistic worship is necessary in order to secure worldly +prosperity, and that all these overwhelming calamities have befallen +us in consequence of its prohibition. In the following five books I +address myself to those who admit that such calamities have at all +times attended, and will at all times attend, the human race, and +that they constantly recur in forms more or less disastrous, varying +only in the scenes, occasions, and persons on whom they light, but, +while admitting this, maintain that the worship of the gods is +advantageous for the life to come. In these ten books, then, I refute +these two opinions, which are as groundless as they are antagonistic +to the Christian religion. + +"But that no one might have occasion to say, that though I had +refuted the tenets of other men, I had omitted to establish my +own, I devote to this object the second part of this work, which +comprises twelve books, although I have not scrupled, as occasion +offered, either to advance my own opinions in the first ten books, +or to demolish the arguments of my opponents in the last twelve. Of +these twelve books, the first four contain an account of the origin +of these two cities--the city of God, and the city of the world. +The second four treat of their history or progress; the third and +last four, of their deserved destinies. And so, though all these +twenty-two books refer to both cities, yet I have named them after +the better city, and called them The City of God." + +Such is the account given by Augustine himself[2] of the occasion +and plan of this his greatest work. But in addition to this explicit +information, we learn from the correspondence[3] of Augustine, that +it was due to the importunity of his friend Marcellinus that this +defence of Christianity extended beyond the limits of a few letters. +Shortly before the fall of Rome, Marcellinus had been sent to Africa +by the Emperor Honorius to arrange a settlement of the differences +between the Donatists and the Catholics. This brought him into +contact not only with Augustine, but with Volusian, the proconsul +of Africa, and a man of rare intelligence and candour. Finding that +Volusian, though as yet a pagan, took an interest in the Christian +religion, Marcellinus set his heart on converting him to the true +faith. The details of the subsequent significant intercourse between +the learned and courtly bishop and the two imperial statesmen, +are unfortunately almost entirely lost to us; but the impression +conveyed by the extant correspondence is, that Marcellinus was +the means of bringing his two friends into communication with one +another. The first overture was on Augustine's part, in the shape of +a simple and manly request that Volusian would carefully peruse the +Scriptures, accompanied by a frank offer to do his best to solve any +difficulties that might arise in such a course of inquiry. Volusian +accordingly enters into correspondence with Augustine; and in order +to illustrate the kind of difficulties experienced by men in his +position, he gives some graphic notes of a conversation in which +he had recently taken part at a gathering of some of his friends. +The difficulty to which most weight is attached in this letter, is +the apparent impossibility of believing in the Incarnation. But a +letter which Marcellinus immediately despatched to Augustine, urging +him to reply to Volusian at large, brought the intelligence that +the difficulties and objections to Christianity were thus limited +merely out of a courteous regard to the preciousness of the bishop's +time, and the vast number of his engagements. This letter, in short, +brought out the important fact, that a removal of speculative doubts +would not suffice for the conversion of such men as Volusian, whose +life was one with the life of the empire. Their difficulties were +rather political, historical, and social. They could not see how +the reception of the Christian rule of life was compatible with +the interests of Rome as the mistress of the world.[4] And thus +Augustine was led to take a more distinct and wider view of the whole +relation which Christianity bore to the old state of things,--moral, +political, philosophical, and religious,--and was gradually drawn on +to undertake the elaborate work now presented to the English reader, +and which may more appropriately than any other of his writings be +called his masterpiece[5] or life-work. It was begun the very year +of Marcellinus' death, A.D. 413, and was issued in detached portions +from time to time, until its completion in the year 426. It thus +occupied the maturest years of Augustine's life--from his fifty-ninth +to his seventy-second year.[6] + +From this brief sketch, it will be seen that though the accompanying +work is essentially an Apology, the Apologetic of Augustine can be +no mere rehabilitation of the somewhat threadbare, if not effete, +arguments of Justin and Tertullian.[7] In fact, as Augustine +considered what was required of him,--to expound the Christian faith, +and justify it to enlightened men; to distinguish it from, and +show its superiority to, all those forms of truth, philosophical or +popular, which were then striving for the mastery, or at least for +standing-room; to set before the world's eye a vision of glory that +might win the regard even of men who were dazzled by the fascinating +splendour of a world-wide empire,--he recognised that a task was laid +before him to which even his powers might prove unequal,--a task +certainly which would afford ample scope for his learning, dialectic, +philosophical grasp and acumen, eloquence, and faculty of exposition. + +But it is the occasion of this great Apology which invests it at once +with grandeur and vitality. After more than eleven hundred years +of steady and triumphant progress, Rome had been taken and sacked. +It is difficult for us to appreciate, impossible to overestimate, +the shock which was thus communicated from centre to circumference +of the whole known world. It was generally believed, not only by +the heathen, but also by many of the most liberal-minded of the +Christians, that the destruction of Rome would be the prelude to +the destruction of the world.[8] Even Jerome, who might have been +supposed to be embittered against the proud mistress of the world by +her inhospitality to himself, cannot conceal his profound emotion +on hearing of her fall. "A terrible rumour," he says, "reaches me +from the West, telling of Rome besieged, bought for gold, besieged +again, life and property perishing together. My voice falters, sobs +stifle the words I dictate; for she is a captive, that city which +enthralled the world."[9] Augustine is never so theatrical as Jerome +in the expression of his feeling, but he is equally explicit in +lamenting the fall of Rome as a great calamity; and while he does not +scruple to ascribe her recent disgrace to the profligate manners, +the effeminacy, and the pride of her citizens, he is not without hope +that, by a return to the simple, hardy, and honourable mode of life +which characterized the early Romans, she may still be restored to +much of her former prosperity.[10] But as Augustine contemplates the +ruins of Rome's greatness, and feels, in common with all the world +at this crisis, the instability of the strongest governments, the +insufficiency of the most authoritative statesmanship, there hovers +over these ruins the splendid vision of the city of God "coming down +out of heaven, adorned as a bride for her husband." The old social +system is crumbling away on all sides, but in its place he seems to +see a pure Christendom arising. He sees that human history and human +destiny are not wholly identified with the history of any earthly +power--not though it be as cosmopolitan as the empire of Rome.[11] +He directs the attention of men to the fact that there is another +kingdom on earth,--a city which hath foundations, whose builder and +maker is God. He teaches men to take profounder views of history, +and shows them how from the first the city of God, or community of +God's people, has lived alongside of the kingdoms of this world and +their glory, and has been silently increasing, "crescit occulto velut +arbor ævo." He demonstrates that the superior morality, the true +doctrine, the heavenly origin of this city, ensure its success; and +over against this, he depicts the silly or contradictory theorizings +of the pagan philosophers, and the unhinged morals of the people, +and puts it to all candid men to say, whether in the presence of +so manifestly sufficient a cause for Rome's downfall, there is +room for imputing it to the spread of Christianity. He traces the +antagonism of these two grand communities of rational creatures, +back to their first divergence in the fall of the angels, and down +to the consummation of all things in the last judgment and eternal +destination of the good and evil. In other words, the city of God is +"the first real effort to produce a philosophy of history,"[12] to +exhibit historical events in connection with their true causes, and +in their real sequence. This plan of the work is not only a great +conception, but it is accompanied with many practical advantages; +the chief of which is, that it admits, and even requires, a full +treatment of those doctrines of our faith that are more directly +historical,--the doctrines of creation, the fall, the incarnation, +the connection between the Old and New Testaments, and the doctrine +of "the last things."[13] + +The effect produced by this great work it is impossible to determine +with accuracy. Beugnot, with an absoluteness which we should condemn +as presumption in any less competent authority, declares that its +effect can only have been very slight.[14] Probably its effect +would be silent and slow; telling first upon cultivated minds, and +only indirectly upon the people. Certainly its effect must have +been weakened by the interrupted manner of its publication. It is +an easier task to estimate its intrinsic value. But on this also +patristic and literary authorities widely differ. Dupin admits that +it is very pleasant reading, owing to the surprising variety of +matters which are introduced to illustrate and forward the argument, +but censures the author for discussing very useless questions, and +for adducing reasons which could satisfy no one who was not already +convinced.[15] Huet also speaks of the book as "un amas confus +d'excellents materiaux; c'est de l'or en barre et en lingots."[16] +L'Abbé Flottes censures these opinions as unjust, and cites with +approbation the unqualified eulogy of Pressensé.[17] But probably the +popularity of the book is its best justification. This popularity +may be measured by the circumstance that, between the year 1467 and +the end of the fifteenth century, no fewer than twenty editions +were called for, that is to say, a fresh edition every eighteen +months.[18] And in the interesting series of letters that passed +between Ludovicus Vives and Erasmus, who had engaged him to write a +commentary on the _City of God_ for his edition of Augustine's works, +we find Vives pleading for a separate edition of this work, on the +plea that, of all the writings of Augustine, it was almost the only +one read by patristic students, and might therefore naturally be +expected to have a much wider circulation.[19] + +If it were asked to what this popularity is due, we should be +disposed to attribute it mainly to the great variety of ideas, +opinions, and facts that are here brought before the reader's mind. +Its importance as a contribution to the history of opinion cannot be +overrated. We find in it not only indications or explicit enouncement +of the author's own views upon almost every important topic which +occupied his thoughts, but also a compendious exhibition of the +ideas which most powerfully influenced the life of that age. It +thus becomes, as Poujoulat says, "comme l'encyclopédie du cinquième +siècle." All that is valuable, together with much indeed that is +not so, in the religion and philosophy of the classical nations of +antiquity, is reviewed. And on some branches of these subjects it +has, in the judgment of one well qualified to judge, "preserved +more than the whole surviving Latin literature." It is true we +are sometimes wearied by the too elaborate refutation of opinions +which to a modern mind seem self-evident absurdities; but if these +opinions were actually prevalent in the fifth century, the historical +inquirer will not quarrel with the form in which his information is +conveyed, nor will commit the absurdity of attributing to Augustine +the foolishness of these opinions, but rather the credit of exploding +them. That Augustine is a well-informed and impartial critic, +is evinced by the courteousness and candour which he uniformly +displays to his opponents, by the respect he won from the heathen +themselves, and by his own early life. The most rigorous criticism +has found him at fault regarding matters of fact only in some very +rare instances, which can be easily accounted for. His learning +would not indeed stand comparison with what is accounted such in our +day: his life was too busy, and too devoted to the poor and to the +spiritually necessitous, to admit of any extraordinary acquisition. +He had access to no literature but the Latin; or at least he had only +sufficient Greek to enable him to refer to Greek authors on points of +importance, and not enough to enable him to read their writings with +ease and pleasure.[20] But he had a profound knowledge of his own +time, and a familiar acquaintance not only with the Latin poets, but +with many other authors, some of whose writings are now lost to us, +save the fragments preserved through his quotations. + +But the interest attaching to the _City of God_ is not merely +historical. It is the earnestness and ability with which he developes +his own philosophical and theological views which gradually fascinate +the reader, and make him see why the world has set this among the few +greatest books of all time. The fundamental lines of the Augustinian +theology are here laid down in a comprehensive and interesting form. +Never was thought so abstract expressed in language so popular. +He handles metaphysical problems with the unembarrassed ease of +Plato, with all Cicero's accuracy and acuteness, and more than +Cicero's profundity. He is never more at home than when exposing +the incompetency of Neoplatonism, or demonstrating the harmony of +Christian doctrine and true philosophy. And though there are in +the _City of God_, as in all ancient books, things that seem to us +childish and barren, there are also the most surprising anticipations +of modern speculation. There is an earnest grappling with those +problems which are continually re-opened because they underlie man's +relation to God and the spiritual world,--the problems which are not +peculiar to any one century. As we read these animated discussions, + + "The fourteen centuries fall away + Between us and the Afric saint, + And at his side we urge, to-day, + The immemorial quest and old complaint. + + No outward sign to us is given, + From sea or earth comes no reply; + Hushed as the warm Numidian heaven + He vainly questioned bends our frozen sky." + +It is true, the style of the book is not all that could be desired: +there are passages which can possess an interest only to the +antiquarian; there are others with nothing to redeem them but +the glow of their eloquence; there are many repetitions; there +is an occasional use of arguments "plus ingenieux que solides," +as M. Saisset says. Augustine's great admirer, Erasmus, does not +scruple to call him a writer "obscuræ subtilitatis et parum amœnæ +prolixitatis;"[21] but "the toil of penetrating the apparent +obscurities will be rewarded by finding a real wealth of insight and +enlightenment." Some who have read the opening chapters of the _City +of God_, may have considered it would be a waste of time to proceed; +but no one, we are persuaded, ever regretted reading it all. The +book has its faults; but it effectually introduces us to the most +influential of theologians, and the greatest popular teacher; to a +genius that cannot nod for many lines together; to a reasoner whose +dialectic is more formidable, more keen and sifting, than that of +Socrates or Aquinas; to a saint whose ardent and genuine devotional +feeling bursts up through the severest argumentation; to a man whose +kindliness and wit, universal sympathies and breadth of intelligence, +lend piquancy and vitality to the most abstract dissertation. + +The propriety of publishing a translation of so choice a specimen +of ancient literature needs no defence. As Poujoulat very sensibly +remarks, there are not a great many men now-a-days who will read a +work in Latin of twenty-two books. Perhaps there are fewer still who +ought to do so. With our busy neighbours in France, this work has +been a prime favourite for 400 years. There may be said to be eight +independent translations of it into the French tongue, though some +of these are _in part_ merely revisions. One of these translations +has gone through as many as four editions. The most recent is that +which forms part of the Nisard series; but the best, so far as we +have seen, is that of the accomplished Professor of Philosophy in the +College of France, Emile Saisset. This translation is indeed all that +can be desired: here and there an omission occurs, and about one or +two renderings a difference of opinion may exist; but the exceeding +felicity and spirit of the whole show it to have been a labour of +love, the fond homage of a disciple proud of his master. The preface +of M. Saisset is one of the most valuable contributions ever made to +the understanding of Augustine's philosophy.[22] + +Of English translations there has been an unaccountable poverty. Only +one exists,[23] and this so exceptionally bad, so unlike the racy +translations of the seventeenth century in general, so inaccurate, +and so frequently unintelligible, that it is not impossible it may +have done something towards giving the English public a distaste for +the book itself. That the present translation also might be improved, +we know; that many men were fitter for the task, on the score of +scholarship, we are very sensible; but that any one would have executed +it with intenser affection and veneration for the author, we are not +prepared to admit. A few notes have been added where it appeared to be +necessary. Some are original, some from the Benedictine Augustine, and +the rest from the elaborate commentary of Vives.[24] + + THE EDITOR. + +GLASGOW, 1871. + +FOOTNOTES: + +[1] A.D. 410. + +[2] _Retractations_, ii. 43. + +[3] _Letters_ 132-8. + +[4] See some admirable remarks on this subject in the useful work of +Beugnot, _Histoire de la Destruction du Paganisme_, ii. 83 et sqq. + +[5] As Waterland (iv. 760) does call it, adding that it is "his most +learned, most correct, and most elaborate work." + +[6] For proof, see the Benedictine Preface. + +[7] "Hitherto the Apologies had been framed to meet particular +exigencies: they were either brief and pregnant statements of the +Christian doctrines; refutations of prevalent calumnies; invectives +against the follies and crimes of Paganism; or confutations of +anti-Christian works like those of Celsus, Porphyry, or Julian, +closely following their course of argument, and rarely expanding into +general and comprehensive views of the great conflict."--MILMAN, +_History of Christianity_, iii. c. 10. We are not acquainted with any +more complete preface to the _City of God_ than is contained in the +two or three pages which Milman has devoted to this subject. + +[8] See the interesting remarks of Lactantius, _Instit._ vii. 25. + +[9] "Hæret vox et singultus intercipiunt verba dictantis. Capitur +urbs quæ totum cepit orbem."--JEROME, iv. 783. + +[10] See below, iv. 7. + +[11] This is well brought out by Merivale, _Conversion of the Roman +Empire_, p. 145, etc. + +[12] Ozanam, _History of Civilisation in the Fifth Century_ (Eng. +trans.), ii. 160. + +[13] Abstracts of the work at greater or less length are given by +Dupin, Bindemann, Böhringer, Poujoulat, Ozanam, and others. + +[14] His words are: "Plus on examine la Cité de Dieu, plus on reste +convaincu que cet ouvrage dût exercea tres-peu d'influence sur +l'esprit des païens" (ii. 122); and this though he thinks one cannot +but be struck with the grandeur of the ideas it contains. + +[15] _History of Ecclesiastical Writers_, i. 406. + +[16] _Huetiana_, p. 24. + +[17] Flottes, _Etudes sur S. Augustin_ (Paris, 1861), pp. 154-6, one +of the most accurate and interesting even of French monographs on +theological writers. + +[18] These editions will be found detailed in the second volume of +Schoenemann's _Bibliotheca Pat._ + +[19] His words (in Ep. vi.) are quite worth quoting: "Cura rogo te, +ut excudantur aliquot centena exemplarium istius operis a reliquo +Augustini corpore separata; nam multi erunt studiosi qui Augustinum +totum emere vel nollent, vel non poterunt, quia non egebunt, seu +quia tantum pecuniæ non habebunt. Scio enim fere a deditis studiis +istis elegantioribus præter hoc Augustini opus nullum fere aliud legi +ejusdem autoris." + +[20] The fullest and fairest discussion of the very simple yet +never settled question of Augustine's learning will be found in +Nourrisson's _Philosophie de S. Augustin_, ii. 92-100. + +[21] Erasmi _Epistolæ_ xx. 2. + +[22] A large part of it has been translated in Saisset's _Pantheism_ +(Clark, Edin.). + +[23] By J. H., published in 1610, and again in 1620, with Vives' +commentary. + +[24] As the letters of Vives are not in every library, we give his +comico-pathetic account of the result of his Augustinian labours on +his health: "Ex quo Augustinum perfeci, nunquam valui ex sententia; +proximâ vero hebdomade et hac, fracto corpore cuncto, et nervis +lassitudine quadam et debilitate dejectis, in caput decem turres +incumbere mihi videntur incidendo pondere, ac mole intolerabili; isti +sunt fructus studiorum, et merces pulcherrimi laboris; quid labor et +benefacta juvant?" + + + + + THE CITY OF GOD. + + + + + BOOK FIRST. + + ARGUMENT. + + AUGUSTINE CENSURES THE PAGANS, WHO ATTRIBUTED THE CALAMITIES OF THE + WORLD, AND ESPECIALLY THE RECENT SACK OF ROME BY THE GOTHS, TO + THE CHRISTIAN RELIGION, AND ITS PROHIBITION OF THE WORSHIP OF + THE GODS. HE SPEAKS OF THE BLESSINGS AND ILLS OF LIFE, WHICH + THEN, AS ALWAYS, HAPPENED TO GOOD AND BAD MEN ALIKE. FINALLY, + HE REBUKES THE SHAMELESSNESS OF THOSE WHO CAST UP TO THE + CHRISTIANS THAT THEIR WOMEN HAD BEEN VIOLATED BY THE SOLDIERS. + + + PREFACE, EXPLAINING HIS DESIGN IN UNDERTAKING + THIS WORK. + + +The glorious city of God is my theme in this work, which you, my +dearest son Marcellinus,[25] suggested, and which is due to you by +my promise. I have undertaken its defence against those who prefer +their own gods to the Founder of this city,--a city surpassingly +glorious, whether we view it as it still lives by faith in this +fleeting course of time, and sojourns as a stranger in the midst +of the ungodly, or as it shall dwell in the fixed stability of its +eternal seat, which it now with patience waits for, expecting until +"righteousness shall return unto judgment,"[26] and it obtain, by +virtue of its excellence, final victory and perfect peace. A great +work this, and an arduous; but God is my helper. For I am aware what +ability is requisite to persuade the proud how great is the virtue +of humility, which raises us, not by a quite human arrogance, but +by a divine grace, above all earthly dignities that totter on this +shifting scene. For the King and Founder of this city of which we +speak, has in Scripture uttered to His people a dictum of the divine +law in these words: "God resisteth the proud, but giveth grace unto +the humble."[27] But this, which is God's prerogative, the inflated +ambition of a proud spirit also affects, and dearly loves that this +be numbered among its attributes, to + + "Show pity to the humbled soul, + And crush the sons of pride."[28] + +And therefore, as the plan of this work we have undertaken requires, +and as occasion offers, we must speak also of the earthly city, +which, though it be mistress of the nations, is itself ruled by its +lust of rule. + + + 1. _Of the adversaries of the name of Christ, whom the barbarians for + Christ's sake spared when they stormed the city._ + +For to this earthly city belong the enemies against whom I have to +defend the city of God. Many of them, indeed, being reclaimed from +their ungodly error, have become sufficiently creditable citizens +of this city; but many are so inflamed with hatred against it, and +are so ungrateful to its Redeemer for His signal benefits, as to +forget that they would now be unable to utter a single word to its +prejudice, had they not found in its sacred places, as they fled from +the enemy's steel, that life in which they now boast themselves. Are +not those very Romans, who were spared by the barbarians through +their respect for Christ, become enemies to the name of Christ? The +reliquaries of the martyrs and the churches of the apostles bear +witness to this; for in the sack of the city they were open sanctuary +for all who fled to them, whether Christian or Pagan. To their very +threshold the bloodthirsty enemy raged; there his murderous fury +owned a limit. Thither did such of the enemy as had any pity convey +those to whom they had given quarter, lest any less mercifully +disposed might fall upon them. And, indeed, when even those murderers +who everywhere else showed themselves pitiless came to these spots +where that was forbidden which the licence of war permitted in every +other place, their furious rage for slaughter was bridled, and their +eagerness to take prisoners was quenched. Thus escaped multitudes +who now reproach the Christian religion, and impute to Christ the +ills that have befallen their city; but the preservation of their own +life--a boon which they owe to the respect entertained for Christ +by the barbarians--they attribute not to our Christ, but to their +own good luck. They ought rather, had they any right perceptions, to +attribute the severities and hardships inflicted by their enemies, to +that divine providence which is wont to reform the depraved manners +of men by chastisement, and which exercises with similar afflictions +the righteous and praiseworthy,--either translating them, when they +have passed through the trial, to a better world, or detaining them +still on earth for ulterior purposes. And they ought to attribute +it to the spirit of these Christian times, that, contrary to the +custom of war, these bloodthirsty barbarians spared them, and +spared them for Christ's sake, whether this mercy was actually +shown in promiscuous places, or in those places specially dedicated +to Christ's name, and of which the very largest were selected as +sanctuaries, that full scope might thus be given to the expansive +compassion which desired that a large multitude might find shelter +there. Therefore ought they to give God thanks, and with sincere +confession flee for refuge to His name, that so they may escape +the punishment of eternal fire--they who with lying lips took upon +them this name, that they might escape the punishment of present +destruction. For of those whom you see insolently and shamelessly +insulting the servants of Christ, there are numbers who would not +have escaped that destruction and slaughter had they not pretended +that they themselves were Christ's servants. Yet now, in ungrateful +pride and most impious madness, and at the risk of being punished in +everlasting darkness, they perversely oppose that name under which +they fraudulently protected themselves for the sake of enjoying the +light of this brief life. + + + 2. _That it is quite contrary to the usage of war, that the victors + should spare the vanquished for the sake of their gods._ + +There are histories of numberless wars, both before the building of +Rome and since its rise and the extension of its dominion: let these +be read, and let one instance be cited in which, when a city had been +taken by foreigners, the victors spared those who were found to have +fled for sanctuary to the temples of their gods;[29] or one instance +in which a barbarian general gave orders that none should be put to +the sword who had been found in this or that temple. Did not Æneas see + + "Dying Priam at the shrine, + Staining the hearth he made divine?"[30] + +Did not Diomede and Ulysses + + "Drag with red hands, the sentry slain, + Her fateful image from your fane, + Her chaste locks touch, and stain with gore + The virgin coronal she wore?"[31] + +Neither is that true which follows, that + + "Thenceforth the tide of fortune changed, + And Greece grew weak."[32] + +For after this they conquered and destroyed Troy with fire and sword; +after this they beheaded Priam as he fled to the altars. Neither did +Troy perish because it lost Minerva. For what had Minerva herself +first lost, that she should perish? Her guards perhaps? No doubt; +just her guards. For as soon as they were slain, she could be stolen. +It was not, in fact, the men who were preserved by the image, but the +image by the men. How, then, was she invoked to defend the city and +the citizens, she who could not defend her own defenders? + + + 3. _That the Romans did not show their usual sagacity when they + trusted that they would be benefited by the gods who had been + unable to defend Troy._ + +And these be the gods to whose protecting care the Romans were +delighted to entrust their city! O too, too piteous mistake! And +they are enraged at us when we speak thus about their gods, though, +so far from being enraged at their own writers, they part with money +to learn what they say; and, indeed, the very teachers of these +authors are reckoned worthy of a salary from the public purse, and of +other honours. There is Virgil, who is read by boys, in order that +this great poet, this most famous and approved of all poets, may +impregnate their virgin minds, and may not readily be forgotten by +them, according to that saying of Horace, + + "The fresh cask long keeps its first tang."[33] + +Well, in this Virgil, I say, Juno is introduced as hostile to the +Trojans, and stirring up Æolus, the king of the winds, against them +in the words, + + "A race I hate now ploughs the sea, + Transporting Troy to Italy, + And home-gods conquered. "[34]... + +And ought prudent men to have entrusted the defence of Rome to these +conquered gods? But it will be said, this was only the saying of +Juno, who, like an angry woman, did not know what she was saying. +What, then, says Æneas himself,--Æneas who is so often designated +"pious?" Does he not say, + + "Lo! Panthus, 'scaped from death by flight, + Priest of Apollo on the height, + His conquered gods with trembling hands + He bears, and shelter swift demands?"[35] + +Is it not clear that the gods (whom he does not scruple to call +"conquered") were rather entrusted to Æneas than he to them, when it +is said to him, + + "The gods of her domestic shrines + Your country to your care consigns?"[36] + +If, then, Virgil says that the gods were such as these, and were +conquered, and that when conquered they could not escape except under +the protection of a man, what madness is it to suppose that Rome had +been wisely entrusted to these guardians, and could not have been +taken unless it had lost them! Indeed, to worship conquered gods +as protectors and champions, what is this but to worship, not good +divinities, but evil omens?[37] Would it not be wiser to believe, +not that Rome would never have fallen into so great a calamity had +not they first perished, but rather that they would have perished +long since had not Rome preserved them as long as she could? For who +does not see, when he thinks of it, what a foolish assumption it is +that they could not be vanquished under vanquished defenders, and +that they only perished because they had lost their guardian gods, +when, indeed, the only cause of their perishing was that they chose +for their protectors gods condemned to perish? The poets, therefore, +when they composed and sang these things about the conquered gods, +had no intention to invent falsehoods, but uttered, as honest men, +what the truth extorted from them. This, however, will be carefully +and copiously discussed in another and more fitting place. Meanwhile +I will briefly, and to the best of my ability, explain what I meant +to say about these ungrateful men who blasphemously impute to Christ +the calamities which they deservedly suffer in consequence of their +own wicked ways, while that which is for Christ's sake spared them +in spite of their wickedness they do not even take the trouble to +notice; and in their mad and blasphemous insolence, they use against +His name those very lips wherewith they falsely claimed that same +name that their lives might be spared. In the places consecrated +to Christ, where for His sake no enemy would injure them, they +restrained their tongues that they might be safe and protected; but +no sooner do they emerge from these sanctuaries, than they unbridle +these tongues to hurl against Him curses full of hate. + + + 4. _Of the asylum of Juno in Troy, which saved no one from the + Greeks; and of the churches of the apostles, which protected + from the barbarians all who fled to them._ + +Troy itself, the mother of the Roman people, was not able, as I have +said, to protect its own citizens in the sacred places of their gods +from the fire and sword of the Greeks, though the Greeks worshipped +the same gods. Not only so, but + + "Phœnix and Ulysses fell + In the void courts by Juno's cell + Were set the spoil to keep; + Snatched from the burning shrines away, + There Ilium's mighty treasure lay, + Rich altars, bowls of massy gold, + And captive raiment, rudely rolled + In one promiscuous heap; + While boys and matrons, wild with fear, + In long array were standing near."[38] + +In other words, the place consecrated to so great a goddess was +chosen, not that from it none might be led out a captive, but that in +it all the captives might be immured. Compare now this "asylum"--the +asylum not of an ordinary god, not of one of the rank and file +of gods, but of Jove's own sister and wife, the queen of all the +gods--with the churches built in memory of the apostles. Into it were +collected the spoils rescued from the blazing temples and snatched +from the gods, not that they might be restored to the vanquished, but +divided among the victors; while into these was carried back, with +the most religious observance and respect, everything which belonged +to them, even though found elsewhere. There liberty was lost; here +preserved. There bondage was strict; here strictly excluded. Into +that temple men were driven to become the chattels of their enemies, +now lording it over them; into these churches men were led by +their relenting foes, that they might be at liberty. In fine, the +gentle[39] Greeks appropriated that temple of Juno to the purposes +of their own avarice and pride; while these churches of Christ were +chosen even by the savage barbarians as the fit scenes for humility +and mercy. But perhaps, after all, the Greeks did in that victory +of theirs spare the temples of those gods whom they worshipped in +common with the Trojans, and did not dare to put to the sword or +make captive the wretched and vanquished Trojans who fled thither; +and perhaps Virgil, in the manner of poets, has depicted what never +really happened? But there is no question that he depicted the usual +custom of an enemy when sacking a city. + + + 5. _Cæsar's statement regarding the universal custom of an enemy when + sacking a city._ + +Even Cæsar himself gives us positive testimony regarding this custom; +for, in his deliverance in the senate about the conspirators, he +says (as Sallust, a historian of distinguished veracity, writes[40]) +"that virgins and boys are violated, children torn from the embrace +of their parents, matrons subjected to whatever should be the +pleasure of the conquerors, temples and houses plundered, slaughter +and burning rife; in fine, all things filled with arms, corpses, +blood, and wailing." If he had not mentioned temples here, we might +suppose that enemies were in the habit of sparing the dwellings of +the gods. And the Roman temples were in danger of these disasters, +not from foreign foes, but from Catiline and his associates, the most +noble senators and citizens of Rome. But these, it may be said, were +abandoned men, and the parricides of their fatherland. + + + 6. _That not even the Romans, when they took cities, spared the + conquered in their temples._ + +Why, then, need our argument take note of the many nations who have +waged wars with one another, and have nowhere spared the conquered +in the temples of their gods? Let us look at the practice of the +Romans themselves: let us, I say, recall and review the Romans, +whose chief praise it has been "to spare the vanquished and subdue +the proud," and that they preferred "rather to forgive than to +revenge an injury;"[41] and among so many and great cities which +they have stormed, taken, and overthrown for the extension of their +dominion, let us be told what temples they were accustomed to exempt, +so that whoever took refuge in them was free. Or have they really +done this, and has the fact been suppressed by the historians of +these events? Is it to be believed, that men who sought out with +the greatest eagerness points they could praise, would omit those +which, in their own estimation, are the most signal proofs of piety? +Marcus Marcellus, a distinguished Roman, who took Syracuse, a most +splendidly adorned city, is reported to have bewailed its coming +ruin, and to have shed his own tears over it before he spilt its +blood. He took steps also to preserve the chastity even of his enemy. +For before he gave orders for the storming of the city, he issued +an edict forbidding the violation of any free person. Yet the city +was sacked according to the custom of war; nor do we anywhere read, +that even by so chaste and gentle a commander orders were given that +no one should be injured who had fled to this or that temple. And +this certainly would by no means have been omitted, when neither +his weeping nor his edict preservative of chastity could be passed +in silence. Fabius, the conqueror of the city of Tarentum, is +praised for abstaining from making booty of the images. For when his +secretary proposed the question to him, what he wished done with the +statues of the gods, which had been taken in large numbers, he veiled +his moderation under a joke. For he asked of what sort they were; +and when they reported to him that there were not only many large +images, but some of them armed, "Oh," says he, "let us leave with +the Tarentines their angry gods." Seeing, then, that the writers of +Roman history could not pass in silence, neither the weeping of the +one general nor the laughing of the other, neither the chaste pity of +the one nor the facetious moderation of the other, on what occasion +would it be omitted, if, for the honour of any of their enemy's gods, +they had shown this particular form of leniency, that in any temple +slaughter or captivity was prohibited? + + + 7. _That the cruelties which occurred in the sack of Rome were in + accordance with the custom of war, whereas the acts of clemency + resulted from the influence of Christ's name._ + +All the spoiling, then, which Rome was exposed to in the recent +calamity--all the slaughter, plundering, burning, and misery--was +the result of the custom of war. But what was novel, was that savage +barbarians showed themselves in so gentle a guise, that the largest +churches were chosen and set apart for the purpose of being filled with +the people to whom quarter was given, and that in them none were slain, +from them none forcibly dragged; that into them many were led by their +relenting enemies to be set at liberty, and that from them none were +led into slavery by merciless foes. Whoever does not see that this is +to be attributed to the name of Christ, and to the Christian temper, is +blind; whoever sees this, and gives no praise, is ungrateful; whoever +hinders any one from praising it, is mad. Far be it from any prudent +man to impute this clemency to the barbarians. Their fierce and bloody +minds were awed, and bridled, and marvellously tempered by Him who so +long before said by His prophet, "I will visit their transgression +with the rod, and their iniquities with stripes; nevertheless my +loving-kindness will I not utterly take from them."[42] + + + 8. _Of the advantages and disadvantages which often indiscriminately + accrue to good and wicked men._ + +Will some one say, Why, then, was this divine compassion extended +even to the ungodly and ungrateful? Why, but because it was the mercy +of Him who daily "maketh His sun to rise on the evil and on the good, +and sendeth rain on the just and on the unjust."[43] For though some +of these men, taking thought of this, repent of their wickedness +and reform, some, as the apostle says, "despising the riches of His +goodness and long-suffering, after their hardness and impenitent +heart, treasure up unto themselves wrath against the day of wrath +and revelation of the righteous judgment of God, who will render to +every man according to his deeds:"[44] nevertheless does the patience +of God still invite the wicked to repentance, even as the scourge of +God educates the good to patience. And so, too, does the mercy of God +embrace the good that it may cherish them, as the severity of God +arrests the wicked to punish them. To the divine providence it has +seemed good to prepare in the world to come for the righteous good +things, which the unrighteous shall not enjoy; and for the wicked +evil things, by which the good shall not be tormented. But as for the +good things of this life, and its ills, God has willed that these +should be common to both; that we might not too eagerly covet the +things which wicked men are seen equally to enjoy, nor shrink with an +unseemly fear from the ills which even good men often suffer. + +There is, too, a very great difference in the purpose served both +by those events which we call adverse and those called prosperous. +For the good man is neither uplifted with the good things of +time, nor broken by its ills; but the wicked man, because he is +corrupted by this world's happiness, feels himself punished by its +unhappiness.[45] Yet often, even in the present distribution of +temporal things, does God plainly evince His own interference. For if +every sin were now visited with manifest punishment, nothing would +seem to be reserved for the final judgment; on the other hand, if no +sin received now a plainly divine punishment, it would be concluded +that there is no divine providence at all. And so of the good things +of this life: if God did not by a very visible liberality confer +these on some of those persons who ask for them, we should say that +these good things were not at His disposal; and if He gave them +to all who sought them, we should suppose that such were the only +rewards of His service; and such a service would make us not godly, +but greedy rather, and covetous. Wherefore, though good and bad men +suffer alike, we must not suppose that there is no difference between +the men themselves, because there is no difference in what they both +suffer. For even in the likeness of the sufferings, there remains an +unlikeness in the sufferers; and though exposed to the same anguish, +virtue and vice are not the same thing. For as the same fire causes +gold to glow brightly, and chaff to smoke; and under the same flail +the straw is beaten small, while the grain is cleansed; and as the +lees are not mixed with the oil, though squeezed out of the vat by +the same pressure, so the same violence of affliction proves, purges, +clarifies the good, but damns, ruins, exterminates the wicked. And +thus it is that in the same affliction the wicked detest God and +blaspheme, while the good pray and praise. So material a difference +does it make, not what ills are suffered, but what kind of man +suffers them. For, stirred up with the same movement, mud exhales a +horrible stench, and ointment emits a fragrant odour. + + + 9. _Of the reasons for administering correction to bad and good + together._ + +What, then, have the Christians suffered in that calamitous period, +which would not profit every one who duly and faithfully considered +the following circumstances? First of all, they must humbly consider +those very sins which have provoked God to fill the world with such +terrible disasters; for although they be far from the excesses of +wicked, immoral, and ungodly men, yet they do not judge themselves so +clean removed from all faults as to be too good to suffer for these +even temporal ills. For every man, however laudably he lives, yet +yields in some points to the lust of the flesh. Though he do not fall +into gross enormity of wickedness, and abandoned viciousness, and +abominable profanity, yet he slips into some sins, either rarely or +so much the more frequently as the sins seem of less account. But not +to mention this, where can we readily find a man who holds in fit and +just estimation those persons on account of whose revolting pride, +luxury, and avarice, and cursed iniquities and impiety, God now smites +the earth as His predictions threatened? Where is the man who lives +with them in the style in which it becomes us to live with them? For +often we wickedly blind ourselves to the occasions of teaching and +admonishing them, sometimes even of reprimanding and chiding them, +either because we shrink from the labour or are ashamed to offend them, +or because we fear to lose good friendships, lest this should stand in +the way of our advancement, or injure us in some worldly matter, which +either our covetous disposition desires to obtain, or our weakness +shrinks from losing. So that, although the conduct of wicked men is +distasteful to the good, and therefore they do not fall with them into +that damnation which in the next life awaits such persons, yet, because +they spare their damnable sins through fear, therefore, even though +their own sins be slight and venial, they are justly scourged with the +wicked in this world, though in eternity they quite escape punishment. +Justly, when God afflicts them in common with the wicked, do they find +this life bitter, through love of whose sweetness they declined to be +bitter to these sinners. + +If any one forbears to reprove and find fault with those who are +doing wrong, because he seeks a more seasonable opportunity, or +because he fears they may be made worse by his rebuke, or that other +weak persons may be disheartened from endeavouring to lead a good and +pious life, and may be driven from the faith; this man's omission +seems to be occasioned not by covetousness, but by a charitable +consideration. But what is blameworthy is, that they who themselves +revolt from the conduct of the wicked, and live in quite another +fashion, yet spare those faults in other men which they ought to +reprehend and wean them from; and spare them because they fear to +give offence, lest they should injure their interests in those things +which good men may innocently and legitimately use,--though they use +them more greedily than becomes persons who are strangers in this +world, and profess the hope of a heavenly country. For not only the +weaker brethren, who enjoy married life, and have children (or desire +to have them), and own houses and establishments, whom the apostle +addresses in the churches, warning and instructing them how they +should live, both the wives with their husbands, and the husbands +with their wives, the children with their parents, and parents with +their children, and servants with their masters, and masters with +their servants,--not only do these weaker brethren gladly obtain +and grudgingly lose many earthly and temporal things on account of +which they dare not offend men whose polluted and wicked life greatly +displeases them; but those also who live at a higher level, who are +not entangled in the meshes of married life, but use meagre food and +raiment, do often take thought of their own safety and good name, +and abstain from finding fault with the wicked, because they fear +their wiles and violence. And although they do not fear them to such +an extent as to be drawn to the commission of like iniquities, nay, +not by any threats or violence soever; yet those very deeds which +they refuse to share in the commission of, they often decline to find +fault with, when possibly they might by finding fault prevent their +commission. They abstain from interference, because they fear that, +if it fail of good effect, their own safety or reputation may be +damaged or destroyed; not because they see that their preservation +and good name are needful, that they may be able to influence those +who need their instruction, but rather because they weakly relish +the flattery and respect of men, and fear the judgments of the +people, and the pain or death of the body; that is to say, their +non-intervention is the result of selfishness, and not of love. + +Accordingly, this seems to me to be one principal reason why the good +are chastised along with the wicked, when God is pleased to visit +with temporal punishments the profligate manners of a community. +They are punished together, not because they have spent an equally +corrupt life, but because the good as well as the wicked, though +not equally with them, love this present life; while they ought to +hold it cheap, that the wicked, being admonished and reformed by +their example, might lay hold of life eternal. And if they will not +be the companions of the good in seeking life everlasting, they +should be loved as enemies, and be dealt with patiently. For so long +as they live, it remains uncertain whether they may not come to a +better mind. These selfish persons have more cause to fear than +those to whom it was said through the prophet, "He is taken away +in his iniquity, but his blood will I require at the watchman's +hand."[46] For watchmen or overseers of the people are appointed +in churches, that they may unsparingly rebuke sin. Nor is that man +guiltless of the sin we speak of, who, though he be not a watchman, +yet sees in the conduct of those with whom the relationships of this +life bring him into contact, many things that should be blamed, +and yet overlooks them, fearing to give offence, and lose such +worldly blessings as may legitimately be desired, but which he too +eagerly grasps. Then, lastly, there is another reason why the good +are afflicted with temporal calamities--the reason which Job's +case exemplifies: that the human spirit may be proved, and that it +may be manifested with what fortitude of pious trust, and with how +unmercenary a love, it cleaves to God.[47] + + + 10. _That the saints lose nothing in losing temporal goods._ + +These are the considerations which one must keep in view, that he may +answer the question whether any evil happens to the faithful and godly +which cannot be turned to profit. Or shall we say that the question is +needless, and that the apostle is vapouring when he says, "We know that +all things work together for good to them that love God?"[48] + +They lost all they had. Their faith? Their godliness? The possessions +of the hidden man of the heart, which in the sight of God are of great +price?[49] Did they lose these? For these are the wealth of Christians, +to whom the wealthy apostle said, "Godliness with contentment is great +gain. For we brought nothing into this world, and it is certain we can +carry nothing out. And having food and raiment, let us be therewith +content. But they that will be rich fall into temptation and a snare, +and into many foolish and hurtful lusts, which drown men in destruction +and perdition. For the love of money is the root of all evil; which, +while some coveted after, they have erred from the faith, and pierced +themselves through with many sorrows."[50] + +They, then, who lost their worldly all in the sack of Rome, if they +owned their possessions as they had been taught by the apostle, who +himself was poor without, but rich within,--that is to say, if they +used the world as not using it,--could say in the words of Job, +heavily tried, but not overcome: "Naked came I out of my mother's +womb, and naked shall I return thither: the Lord gave, and the Lord +hath taken away; as it pleased the Lord, so has it come to pass: +blessed be the name of the Lord."[51] Like a good servant, Job +counted the will of his Lord his great possession, by obedience to +which his soul was enriched; nor did it grieve him to lose, while +yet living, those goods which he must shortly leave at his death. +But as to those feebler spirits who, though they cannot be said to +prefer earthly possessions to Christ, do yet cleave to them with a +somewhat immoderate attachment, they have discovered by the pain +of losing these things how much they were sinning in loving them. +For their grief is of their own making; in the words of the apostle +quoted above, "they have pierced themselves through with many +sorrows." For it was well that they who had so long despised these +verbal admonitions should receive the teaching of experience. For +when the apostle says, "They that will be rich fall into temptation," +and so on, what he blames in riches is not the possession of them, +but the desire of them. For elsewhere he says, "Charge them that +are rich in this world, that they be not high-minded, nor trust in +uncertain riches, but in the living God, who giveth us richly all +things to enjoy; that they do good, that they be rich in good works, +ready to distribute, willing to communicate; laying up in store for +themselves a good foundation against the time to come, that they may +lay hold on eternal life."[52] They who were making such a use of +their property have been consoled for light losses by great gains, +and have had more pleasure in those possessions which they have +securely laid past, by freely giving them away, than grief in those +which they entirely lost by an anxious and selfish hoarding of them. +For nothing could perish on earth save what they would be ashamed to +carry away from earth. Our Lord's injunction runs, "Lay not up for +yourselves treasures upon earth, where moth and rust doth corrupt, +and where thieves break through and steal; but lay up for yourselves +treasures in heaven, where neither moth nor rust doth corrupt, and +where thieves do not break through nor steal: for where your treasure +is, there will your heart be also."[53] And they who have listened +to this injunction have proved in the time of tribulation how well +they were advised in not despising this most trustworthy teacher, +and most faithful and mighty guardian of their treasure. For if +many were glad that their treasure was stored in places which the +enemy chanced not to light upon, how much better founded was the +joy of those who, by the counsel of their God, had fled with their +treasure to a citadel which no enemy can possibly reach! Thus our +Paulinus, bishop of Nola,[54] who voluntarily abandoned vast wealth +and became quite poor, though abundantly rich in holiness, when the +barbarians sacked Nola, and took him prisoner, used silently to pray, +as he afterwards told me, "O Lord, let me not be troubled for gold +and silver, for where all my treasure is Thou knowest." For all his +treasure was where he had been taught to hide and store it by Him who +had also foretold that these calamities would happen in the world. +Consequently those persons who obeyed their Lord when He warned them +where and how to lay up treasure, did not lose even their earthly +possessions in the invasion of the barbarians; while those who are +now repenting that they did not obey Him have learnt the right use +of earthly goods, if not by the wisdom which would have prevented +their loss, at least by the experience which follows it. + +But some good and Christian men have been put to the torture, that +they might be forced to deliver up their goods to the enemy. They +could indeed neither deliver nor lose that good which made themselves +good. If, however, they preferred torture to the surrender of the +mammon of iniquity, then I say they were not good men. Rather they +should have been reminded that, if they suffered so severely for +the sake of money, they should endure all torment, if need be, for +Christ's sake; that they might be taught to love Him rather who +enriches with eternal felicity all who suffer for Him, and not +silver and gold, for which it was pitiable to suffer, whether they +preserved it by telling a lie, or lost it by telling the truth. For +under these tortures no one lost Christ by confessing Him, no one +preserved wealth save by denying its existence. So that possibly +the torture which taught them that they should set their affections +on a possession they could not lose, was more useful than those +possessions which, without any useful fruit at all, disquieted +and tormented their anxious owners. But then we are reminded that +some were tortured who had no wealth to surrender, but who were +not believed when they said so. These too, however, had perhaps +some craving for wealth, and were not willingly poor with a holy +resignation; and to such it had to be made plain, that not the actual +possession alone, but also the desire of wealth, deserved such +excruciating pains. And even if they were destitute of any hidden +stores of gold and silver, because they were living in hopes of a +better life,--I know not indeed if any such person was tortured on +the supposition that he had wealth; but if so, then certainly in +confessing, when put to the question, a holy poverty, he confessed +Christ. And though it was scarcely to be expected that the barbarians +should believe him, yet no confessor of a holy poverty could be +tortured without receiving a heavenly reward. + +Again, they say that the long famine laid many a Christian low. But +this, too, the faithful turned to good uses by a pious endurance of +it. For those whom famine killed outright it rescued from the ills +of this life, as a kindly disease would have done; and those who were +only hunger-bitten were taught to live more sparingly, and inured to +longer fasts. + + + 11. _Of the end of this life, whether it is material that it be long + delayed._ + +But, it is added, many Christians were slaughtered, and were put to +death in a hideous variety of cruel ways. Well, if this be hard to +bear, it is assuredly the common lot of all who are born into this +life. Of this at least I am certain, that no one has ever died who +was not destined to die some time. Now the end of life puts the +longest life on a par with the shortest. For of two things which +have alike ceased to be, the one is not better, the other worse--the +one greater, the other less.[55] And of what consequence is it what +kind of death puts an end to life, since he who has died once is +not forced to go through the same ordeal a second time? And as in +the daily casualties of life every man is, as it were, threatened +with numberless deaths, so long as it remains uncertain which of +them is his fate, I would ask whether it is not better to suffer +one and die, than to live in fear of all? I am not unaware of the +poor-spirited fear which prompts us to choose rather to live long in +fear of so many deaths, than to die once and so escape them all; but +the weak and cowardly shrinking of the flesh is one thing, and the +well-considered and reasonable persuasion of the soul quite another. +That death is not to be judged an evil which is the end of a good +life; for death becomes evil only by the retribution which follows +it. They, then, who are destined to die, need not be careful to +inquire what death they are to die, but into what place death will +usher them. And since Christians are well aware that the death of the +godly pauper whose sores the dogs licked was far better than of the +wicked rich man who lay in purple and fine linen, what harm could +these terrific deaths do to the dead who had lived well? + + + 12. _Of the burial of the dead: that the denial of it to Christians + does them no injury._[56] + +Further still, we are reminded that in such a carnage as then +occurred, the bodies could not even be buried. But godly confidence +is not appalled by so ill-omened a circumstance; for the faithful +bear in mind that assurance has been given that not a hair of their +head shall perish, and that, therefore, though they even be devoured +by beasts, their blessed resurrection will not hereby be hindered. +The Truth would nowise have said, "Fear not them which kill the body, +but are not able to kill the soul,"[57] if anything whatever that +an enemy could do to the body of the slain could be detrimental to +the future life. Or will some one perhaps take so absurd a position +as to contend that those who kill the body are not to be feared +before death, and lest they kill the body, but after death, lest they +deprive it of burial? If this be so, then that is false which Christ +says, "Be not afraid of them that kill the body, and after that have +no more that they can do;"[58] for it seems they can do great injury +to the dead body. Far be it from us to suppose that the Truth can +be thus false. They who kill the body are said "to do something," +because the death-blow is felt, the body still having sensation; but +after that, they have no more that they can do, for in the slain +body there is no sensation. And so there are indeed many bodies +of Christians lying unburied; but no one has separated them from +heaven, nor from that earth which is all filled with the presence +of Him who knows whence He will raise again what He created. It is +said, indeed, in the Psalm: "The dead bodies of Thy servants have +they given to be meat unto the fowls of the heaven, the flesh of Thy +saints unto the beasts of the earth. Their blood have they shed like +water round about Jerusalem; and there was none to bury them."[59] +But this was said rather to exhibit the cruelty of those who did +these things, than the misery of those who suffered them. To the eyes +of men this appears a harsh and doleful lot, yet "precious in the +sight of the Lord is the death of His saints."[60] Wherefore all +these last offices and ceremonies that concern the dead, the careful +funeral arrangements, and the equipment of the tomb, and the pomp of +obsequies, are rather the solace of the living than the comfort of +the dead. If a costly burial does any good to a wicked man, a squalid +burial, or none at all, may harm the godly. His crowd of domestics +furnished the purple-clad Dives with a funeral gorgeous in the eye of +man; but in the sight of God that was a more sumptuous funeral which +the ulcerous pauper received at the hands of the angels, who did not +carry him out to a marble tomb, but bore him aloft to Abraham's bosom. + +The men against whom I have undertaken to defend the city of God +laugh at all this. But even their own philosophers[61] have despised +a careful burial; and often whole armies have fought and fallen for +their earthly country without caring to inquire whether they would +be left exposed on the field of battle, or become the food of wild +beasts. Of this noble disregard of sepulture poetry has well said: +"He who has no tomb has the sky for his vault."[62] How much less +ought they to insult over the unburied bodies of Christians, to whom +it has been promised that the flesh itself shall be restored, and +the body formed anew, all the members of it being gathered not only +from the earth, but from the most secret recesses of any other of the +elements in which the dead bodies of men have lain hid! + + + 13. _Reasons for burying the bodies of the saints._ + +Nevertheless the bodies of the dead are not on this account to be +despised and left unburied; least of all the bodies of the righteous +and faithful, which have been used by the Holy Ghost as His organs +and instruments for all good works. For if the dress of a father, +or his ring, or anything he wore, be precious to his children, in +proportion to the love they bore him, with how much more reason +ought we to care for the bodies of those we love, which they wore +far more closely and intimately than any clothing! For the body +is not an extraneous ornament or aid, but a part of man's very +nature. And therefore to the righteous of ancient times the last +offices were piously rendered, and sepulchres provided for them, and +obsequies celebrated;[63] and they themselves, while yet alive, gave +commandment to their sons about the burial, and, on occasion, even +about the removal of their bodies to some favourite place.[64] And +Tobit, according to the angel's testimony, is commended, and is said +to have pleased God by burying the dead.[65] Our Lord Himself, too, +though He was to rise again the third day, applauds, and commends +to our applause, the good work of the religious woman who poured +precious ointment over His limbs, and did it against His burial.[66] +And the Gospel speaks with commendation of those who were careful to +take down His body from the cross, and wrap it lovingly in costly +cerements, and see to its burial.[67] These instances certainly +do not prove that corpses have any feeling; but they show that +God's providence extends even to the bodies of the dead, and that +such pious offices are pleasing to Him, as cherishing faith in the +resurrection. And we may also draw from them this wholesome lesson, +that if God does not forget even any kind office which loving care +pays to the unconscious dead, much more does He reward the charity +we exercise towards the living. Other things, indeed, which the holy +patriarchs said of the burial and removal of their bodies, they meant +to be taken in a prophetic sense; but of these we need not here speak +at large, what we have already said being sufficient. But if the want +of those things which are necessary for the support of the living, +as food and clothing, though painful and trying, does not break down +the fortitude and virtuous endurance of good men, nor eradicate piety +from their souls, but rather renders it more fruitful, how much less +can the absence of the funeral, and of the other customary attentions +paid to the dead, render those wretched who are already reposing in +the hidden abodes of the blessed! Consequently, though in the sack +of Rome and of other towns the dead bodies of the Christians were +deprived of these last offices, this is neither the fault of the +living, for they could not render them; nor an infliction to the +dead, for they cannot feel the loss. + + + 14. _Of the captivity of the saints, and that divine consolation + never failed them therein._ + +But, say they, many Christians were even led away captive. This +indeed were a most pitiable fate, if they could be led away to any +place where they could not find their God. But for this calamity also +sacred Scripture affords great consolation. The three youths[68] were +captives; Daniel was a captive; so were other prophets: and God, the +comforter, did not fail them. And in like manner He has not failed +His own people in the power of a nation which, though barbarous, is +yet human,--He who did not abandon the prophet[69] in the belly of +a monster. These things, indeed, are turned to ridicule rather than +credited by those with whom we are debating; though they believe +what they read in their own books, that Arion of Methymna, the +famous lyrist,[70] when he was thrown overboard, was received on a +dolphin's back and carried to land. But that story of ours about the +prophet Jonah is far more incredible,--more incredible because more +marvellous, and more marvellous because a greater exhibition of power. + + + 15. _Of Regulus, in whom we have an example of the voluntary + endurance of captivity for the sake of religion; which yet did + not profit him, though he was a worshipper of the gods._ + +But among their own famous men they have a very noble example of the +voluntary endurance of captivity in obedience to a religious scruple. +Marcus Attilius Regulus, a Roman general, was a prisoner in the +hands of the Carthaginians. But they, being more anxious to exchange +their prisoners with the Romans than to keep them, sent Regulus as a +special envoy with their own ambassadors to negotiate this exchange, +but bound him first with an oath, that if he failed to accomplish +their wish, he would return to Carthage. He went, and persuaded the +senate to the opposite course, because he believed it was not for +the advantage of the Roman republic to make an exchange of prisoners. +After he had thus exerted his influence, the Romans did not compel +him to return to the enemy; but what he had sworn he voluntarily +performed. But the Carthaginians put him to death with refined, +elaborate, and horrible tortures. They shut him up in a narrow box, +in which he was compelled to stand, and in which finely sharpened +nails were fixed all round about him, so that he could not lean +upon any part of it without intense pain; and so they killed him by +depriving him of sleep.[71] With justice, indeed, do they applaud the +virtue which rose superior to so frightful a fate. However, the gods +he swore by were those who are now supposed to avenge the prohibition +of their worship, by inflicting these present calamities on the +human race. But if these gods, who were worshipped specially in this +behalf, that they might confer happiness in this life, either willed +or permitted these punishments to be inflicted on one who kept his +oath to them, what more cruel punishment could they in their anger +have inflicted on a perjured person? But why may I not draw from my +reasoning a double inference? Regulus certainly had such reverence +for the gods, that for his oath's sake he would neither remain in +his own land, nor go elsewhere, but without hesitation returned +to his bitterest enemies. If he thought that this course would be +advantageous with respect to this present life, he was certainly +much deceived, for it brought his life to a frightful termination. +By his own example, in fact, he taught that the gods do not secure +the temporal happiness of their worshippers; since he himself, who +was devoted to their worship, was both conquered in battle and taken +prisoner, and then, because he refused to act in violation of the +oath he had sworn by them, was tortured and put to death by a new, +and hitherto unheard of, and all too horrible kind of punishment. +And on the supposition that the worshippers of the gods are rewarded +by felicity in the life to come, why, then, do they calumniate the +influence of Christianity? why do they assert that this disaster has +overtaken the city because it has ceased to worship its gods, since, +worship them as assiduously as it may, it may yet be as unfortunate +as Regulus was? Or will some one carry so wonderful a blindness to +the extent of wildly attempting, in the face of the evident truth, to +contend that though one man might be unfortunate, though a worshipper +of the gods, yet a whole city could not be so? That is to say, the +power of their gods is better adapted to preserve multitudes than +individuals,--as if a multitude were not composed of individuals. + +But if they say that M. Regulus, even while a prisoner and enduring +these bodily torments, might yet enjoy the blessedness of a virtuous +soul,[72] then let them recognise that true virtue by which a city +also may be blessed. For the blessedness of a community and of an +individual flow from the same source; for a community is nothing +else than a harmonious collection of individuals. So that I am not +concerned meantime to discuss what kind of virtue Regulus possessed: +enough, that by his very noble example they are forced to own that +the gods are to be worshipped not for the sake of bodily comforts or +external advantages; for he preferred to lose all such things rather +than offend the gods by whom he had sworn. But what can we make of +men who glory in having such a citizen, but dread having a city +like him? If they do not dread this, then let them acknowledge that +some such calamity as befell Regulus may also befall a community, +though they be worshipping their gods as diligently as he; and let +them no longer throw the blame of their misfortunes on Christianity. +But as our present concern is with those Christians who were taken +prisoners, let those who take occasion from this calamity to revile +our most wholesome religion in a fashion not less imprudent than +impudent, consider this and hold their peace; for if it was no +reproach to their gods that a most punctilious worshipper of theirs +should, for the sake of keeping his oath to them, be deprived of his +native land without hope of finding another, and fall into the hands +of his enemies, and be put to death by a long-drawn and exquisite +torture, much less ought the Christian name to be charged with the +captivity of those who believe in its power, since they, in confident +expectation of a heavenly country, know that they are pilgrims even +in their own homes. + + + 16. _Of the violation of the consecrated and other Christian + virgins to which they were subjected in captivity, and to which + their own will gave no consent; and whether this contaminated + their souls._ + +But they fancy they bring a conclusive charge against Christianity, +when they aggravate the horror of captivity by adding that not only +wives and unmarried maidens, but even consecrated virgins, were +violated. But truly, with respect to this, it is not Christian faith, +nor piety, nor even the virtue of chastity, which is hemmed into any +difficulty: the only difficulty is so to treat the subject as to +satisfy at once modesty and reason. And in discussing it we shall not +be so careful to reply to our accusers as to comfort our friends. Let +this, therefore, in the first place, be laid down as an unassailable +position, that the virtue which makes the life good has its throne +in the soul, and thence rules the members of the body, which becomes +holy in virtue of the holiness of the will; and that while the will +remains firm and unshaken, nothing that another person does with the +body, or upon the body, is any fault of the person who suffers it, +so long as he cannot escape it without sin. But as not only pain may +be inflicted, but lust gratified on the body of another, whenever +anything of this latter kind takes place, shame invades even a +thoroughly pure spirit from which modesty has not departed,--shame, +lest that act which could not be suffered without some sensual +pleasure, should be believed to have been committed also with some +assent of the will. + + + 17. _Of suicide committed through fear of punishment or dishonour._ + +And consequently, even if some of these virgins killed themselves +to avoid such disgrace, who that has any human feeling would refuse +to forgive them? And as for those who would not put an end to their +lives, lest they might seem to escape the crime of another by a sin +of their own, he who lays this to their charge as a great wickedness +is himself not guiltless of the fault of folly. For if it is not +lawful to take the law into our own hands, and slay even a guilty +person, whose death no public sentence has warranted, then certainly +he who kills himself is a homicide, and so much the guiltier of +his own death, as he was more innocent of that offence for which +he doomed himself to die. Do we justly execrate the deed of Judas, +and does truth itself pronounce that by hanging himself he rather +aggravated than expiated the guilt of that most iniquitous betrayal, +since, by despairing of God's mercy in his sorrow that wrought death, +he left to himself no place for a healing penitence? How much more +ought he to abstain from laying violent hands on himself who has +done nothing worthy of such a punishment! For Judas, when he killed +himself, killed a wicked man; but he passed from this life chargeable +not only with the death of Christ, but with his own: for though he +killed himself on account of his crime, his killing himself was +another crime. Why, then, should a man who has done no ill do ill to +himself, and by killing himself kill the innocent to escape another's +guilty act, and perpetrate upon himself a sin of his own, that the +sin of another may not be perpetrated on him? + + + 18. _Of the violence which may be done to the body by another's + lust, while the mind remains inviolate._ + +But is there a fear that even another's lust may pollute the +violated? It will not pollute, if it be another's: if it pollute, +it is not another's, but is shared also by the polluted. But since +purity is a virtue of the soul, and has for its companion virtue +the fortitude which will rather endure all ills than consent to +evil; and since no one, however magnanimous and pure, has always +the disposal of his own body, but can control only the consent and +refusal of his will, what sane man can suppose that, if his body be +seized and forcibly made use of to satisfy the lust of another, he +thereby loses his purity? For if purity can be thus destroyed, then +assuredly purity is no virtue of the soul; nor can it be numbered +among those good things by which the life is made good, but among the +good things of the body, in the same category as strength, beauty, +sound and unbroken health, and, in short, all such good things as may +be diminished without at all diminishing the goodness and rectitude +of our life. But if purity be nothing better than these, why should +the body be perilled that it may be preserved? If, on the other hand, +it belongs to the soul, then not even when the body is violated is it +lost. Nay more, the virtue of holy continence, when it resists the +uncleanness of carnal lust, sanctifies even the body, and therefore +when this continence remains unsubdued, even the sanctity of the body +is preserved, because the will to use it holily remains, and, so far +as lies in the body itself, the power also. + +For the sanctity of the body does not consist in the integrity of +its members, nor in their exemption from all touch; for they are +exposed to various accidents which do violence to and wound them, +and the surgeons who administer relief often perform operations that +sicken the spectator. A midwife, suppose, has (whether maliciously or +accidentally, or through unskilfulness) destroyed the virginity of +some girl, while endeavouring to ascertain it: I suppose no one is so +foolish as to believe that, by this destruction of the integrity of +one organ, the virgin has lost anything even of her bodily sanctity. +And thus, so long as the soul keeps this firmness of purpose which +sanctifies even the body, the violence done by another's lust makes +no impression on this bodily sanctity, which is preserved intact by +one's own persistent continence. Suppose a virgin violates the oath +she has sworn to God, and goes to meet her seducer with the intention +of yielding to him, shall we say that as she goes she is possessed +even of bodily sanctity, when already she has lost and destroyed +that sanctity of soul which sanctifies the body? Far be it from us +to so misapply words. Let us rather draw this conclusion, that while +the sanctity of the soul remains even when the body is violated, +the sanctity of the body is not lost; and that, in like manner, +the sanctity of the body is lost when the sanctity of the soul is +violated, though the body itself remain intact. And therefore a woman +who has been violated by the sin of another, and without any consent +of her own, has no cause to put herself to death; much less has she +cause to commit suicide in order to avoid such violation, for in +that case she commits certain homicide to prevent a crime which is +uncertain as yet, and not her own. + + + 19. _Of Lucretia, who put an end to her life because of the outrage + done her._ + +This, then, is our position, and it seems sufficiently lucid. We +maintain that when a woman is violated while her soul admits no +consent to the iniquity, but remains inviolably chaste, the sin is +not hers, but his who violates her. But do they against whom we have +to defend not only the souls, but the sacred bodies too of these +outraged Christian captives,--do they, perhaps, dare to dispute +our position? But all know how loudly they extol the purity of +Lucretia, that noble matron of ancient Rome. When King Tarquin's son +had violated her body, she made known the wickedness of this young +profligate to her husband Collatinus, and to Brutus her kinsman, +men of high rank and full of courage, and bound them by an oath to +avenge it. Then, heart-sick, and unable to bear the shame, she put an +end to her life. What shall we call her? An adulteress, or chaste? +There is no question which she was. Not more happily than truly did +a declaimer say of this sad occurrence: "Here was a marvel: there +were two, and only one committed adultery." Most forcibly and truly +spoken. For this declaimer, seeing in the union of the two bodies +the foul lust of the one, and the chaste will of the other, and +giving heed not to the contact of the bodily members, but to the wide +diversity of their souls, says: "There were two, but the adultery was +committed only by one." + +But how is it, that she who was no partner to the crime bears the +heavier punishment of the two? For the adulterer was only banished +along with his father; she suffered the extreme penalty. If that was +not impurity by which she was unwillingly ravished, then this is not +justice by which she, being chaste, is punished. To you I appeal, +ye laws and judges of Rome. Even after the perpetration of great +enormities, you do not suffer the criminal to be slain untried. If, +then, one were to bring to your bar this case, and were to prove +to you that a woman not only untried, but chaste and innocent, +had been killed, would you not visit the murderer with punishment +proportionably severe? This crime was committed by Lucretia; that +Lucretia so celebrated and lauded slew the innocent, chaste, outraged +Lucretia. Pronounce sentence. But if you cannot, because there does +not compear any one whom you can punish, why do you extol with such +unmeasured laudation her who slew an innocent and chaste woman? +Assuredly you will find it impossible to defend her before the judges +of the realms below, if they be such as your poets are fond of +representing them; for she is among those + + "Who guiltless sent themselves to doom, + And all for loathing of the day, + In madness threw their lives away." + +And if she with the others wishes to return, + + "Fate bars the way: around their keep + The slow unlovely waters creep, + And bind with ninefold chain."[73] + +Or perhaps she is not there, because she slew herself conscious of +guilt, not of innocence? She herself alone knows her reason; but what +if she was betrayed by the pleasure of the act, and gave some consent +to Sextus, though so violently abusing her, and then was so affected +with remorse, that she thought death alone could expiate her sin? +Even though this were the case, she ought still to have held her hand +from suicide, if she could with her false gods have accomplished a +fruitful repentance. However, if such were the state of the case, +and if it were false that there were two, but one only committed +adultery; if the truth were that both were involved in it, one by +open assault, the other by secret consent, then she did not kill an +innocent woman; and therefore her erudite defenders may maintain that +she is not among that class of the dwellers below "who guiltless sent +themselves to doom." But this case of Lucretia is in such a dilemma, +that if you extenuate the homicide, you confirm the adultery: if you +acquit her of adultery, you make the charge of homicide heavier; +and there is no way out of the dilemma, when one asks, If she was +adulterous, why praise her? if chaste, why slay her? + +Nevertheless, for our purpose of refuting those who are unable to +comprehend what true sanctity is, and who therefore insult over our +outraged Christian women, it is enough that in the instance of this +noble Roman matron it was said in her praise, "There were two, but +the adultery was the crime of only one." For Lucretia was confidently +believed to be superior to the contamination of any consenting +thought to the adultery. And accordingly, since she killed herself +for being subjected to an outrage in which she had no guilty part, +it is obvious that this act of hers was prompted not by the love of +purity, but by the overwhelming burden of her shame. She was ashamed +that so foul a crime had been perpetrated upon her, though without +her abetting; and this matron, with the Roman love of glory in her +veins, was seized with a proud dread that, if she continued to live, +it would be supposed she willingly did not resent the wrong that had +been done her. She could not exhibit to men her conscience, but she +judged that her self-inflicted punishment would testify her state +of mind; and she burned with shame at the thought that her patient +endurance of the foul affront that another had done her, should be +construed into complicity with him. Not such was the decision of +the Christian women who suffered as she did, and yet survive. They +declined to avenge upon themselves the guilt of others, and so add +crimes of their own to those crimes in which they had no share. For +this they would have done had their shame driven them to homicide, as +the lust of their enemies had driven them to adultery. Within their +own souls, in the witness of their own conscience, they enjoy the +glory of chastity. In the sight of God, too, they are esteemed pure, +and this contents them; they ask no more: it suffices them to have +opportunity of doing good, and they decline to evade the distress of +human suspicion, lest they thereby deviate from the divine law. + + + 20. _That Christians have no authority for committing suicide in any + circumstances whatever._ + +It is not without significance, that in no passage of the holy +canonical books there can be found either divine precept or +permission to take away our own life, whether for the sake of +entering on the enjoyment of immortality, or of shunning, or ridding +ourselves of anything whatever. Nay, the law, rightly interpreted, +even prohibits suicide, where it says, "Thou shalt not kill." This +is proved specially by the omission of the words "thy neighbour," +which are inserted when false witness is forbidden: "Thou shalt not +bear false witness against thy neighbour." Nor yet should any one +on this account suppose he has not broken this commandment if he +has borne false witness only against himself. For the love of our +neighbour is regulated by the love of ourselves, as it is written, +"Thou shalt love thy neighbour as thyself." If, then, he who makes +false statements about himself is not less guilty of bearing false +witness than if he had made them to the injury of his neighbour; +although in the commandment prohibiting false witness only his +neighbour is mentioned, and persons taking no pains to understand +it might suppose that a man was allowed to be a false witness to +his own hurt; how much greater reason have we to understand that a +man may not kill himself, since in the commandment, "Thou shalt not +kill," there is no limitation added nor any exception made in favour +of any one, and least of all in favour of him on whom the command is +laid! And so some attempt to extend this command even to beasts and +cattle, as if it forbade us to take life from any creature. But if +so, why not extend it also to the plants, and all that is rooted in +and nourished by the earth? For though this class of creatures have +no sensation, yet they also are said to live, and consequently they +can die; and therefore, if violence be done them, can be killed. +So, too, the apostle, when speaking of the seeds of such things +as these, says, "That which thou sowest is not quickened except +it die;" and in the Psalm it is said, "He killed their vines with +hail." Must we therefore reckon it a breaking of this commandment, +"Thou shalt not kill," to pull a flower? Are we thus insanely to +countenance the foolish error of the Manichæans? Putting aside, +then, these ravings, if, when we say, Thou shalt not kill, we do not +understand this of the plants, since they have no sensation, nor of +the irrational animals that fly, swim, walk, or creep, since they are +dissociated from us by their want of reason, and are therefore by +the just appointment of the Creator subjected to us to kill or keep +alive for our own uses; if so, then it remains that we understand +that commandment simply of man. The commandment is, "Thou shalt not +kill man;" therefore neither another nor yourself, for he who kills +himself still kills nothing else than man. + + + 21. _Of the cases in which we may put men to death without incurring + the guilt of murder._ + +However, there are some exceptions made by the divine authority to +its own law, that men may not be put to death. These exceptions +are of two kinds, being justified either by a general law, or by a +special commission granted for a time to some individual. And in +this latter case, he to whom authority is delegated, and who is but +the sword in the hand of him who uses it, is not himself responsible +for the death he deals. And, accordingly, they who have waged war +in obedience to the divine command, or in conformity with His laws +have represented in their persons the public justice or the wisdom of +government, and in this capacity have put to death wicked men; such +persons have by no means violated the commandment, "Thou shalt not +kill." Abraham indeed was not merely deemed guiltless of cruelty, but +was even applauded for his piety, because he was ready to slay his +son in obedience to God, not to his own passion. And it is reasonably +enough made a question, whether we are to esteem it to have been in +compliance with a command of God that Jephthah killed his daughter, +because she met him when he had vowed that he would sacrifice to God +whatever first met him as he returned victorious from battle. Samson, +too, who drew down the house on himself and his foes together, is +justified only on this ground, that the Spirit who wrought wonders by +him had given him secret instructions to do this. With the exception, +then, of these two classes of cases, which are justified either by a +just law that applies generally, or by a special intimation from God +Himself, the fountain of all justice, whoever kills a man, either +himself or another, is implicated in the guilt of murder. + + + 22. _That suicide can never be prompted by magnanimity._ + +But they who have laid violent hands on themselves are perhaps to be +admired for their greatness of soul, though they cannot be applauded +for the soundness of their judgment. However, if you look at the +matter more closely, you will scarcely call it greatness of soul, +which prompts a man to kill himself rather than bear up against some +hardships of fortune, or sins in which he is not implicated. Is it not +rather proof of a feeble mind, to be unable to bear either the pains +of bodily servitude or the foolish opinion of the vulgar? And is not +that to be pronounced the greater mind, which rather faces than flees +the ills of life, and which, in comparison of the light and purity of +conscience, holds in small esteem the judgment of men, and specially +of the vulgar, which is frequently involved in a mist of error? And, +therefore, if suicide is to be esteemed a magnanimous act, none can +take higher rank for magnanimity than that Cleombrotus, who (as the +story goes), when he had read Plato's book in which he treats of the +immortality of the soul, threw himself from a wall, and so passed +from this life to that which he believed to be better. For he was +not hard pressed by calamity, nor by any accusation, false or true, +which he could not very well have lived down: there was, in short, +no motive but only magnanimity urging him to seek death, and break +away from the sweet detention of this life. And yet that this was a +magnanimous rather than a justifiable action, Plato himself, whom he +had read, would have told him; for he would certainly have been forward +to commit, or at least to recommend suicide, had not the same bright +intellect which saw that the soul was immortal, discerned also that to +seek immortality by suicide was to be prohibited rather than encouraged. + +Again, it is said many have killed themselves to prevent an enemy +doing so. But we are not inquiring whether it has been done, but +whether it ought to have been done. Sound judgment is to be preferred +even to examples, and indeed examples harmonize with the voice of +reason; but not all examples, but those only which are distinguished +by their piety, and are proportionately worthy of imitation. For +suicide we cannot cite the example of patriarchs, prophets, or +apostles; though our Lord Jesus Christ, when He admonished them to +flee from city to city if they were persecuted, might very well +have taken that occasion to advise them to lay violent hands on +themselves, and so escape their persecutors. But seeing He did not +do this, nor proposed this mode of departing this life, though +He were addressing His own friends for whom He had promised to +prepare everlasting mansions, it is obvious that such examples as +are produced from the "nations that forget God," give no warrant of +imitation to the worshippers of the one true God. + + + 23. _What we are to think of the example of Cato, who slew himself + because unable to endure Cæsar's victory._ + +Besides Lucretia, of whom enough has already been said, our advocates +of suicide have some difficulty in finding any other prescriptive +example, unless it be that of Cato, who killed himself at Utica. His +example is appealed to, not because he was the only man who did so, +but because he was so esteemed as a learned and excellent man, that +it could plausibly be maintained that what he did was and is a good +thing to do. But of this action of his, what can I say but that his +own friends, enlightened men as he, prudently dissuaded him, and +therefore judged his act to be that of a feeble rather than a strong +spirit, and dictated not by honourable feeling forestalling shame, +but by weakness shrinking from hardships? Indeed, Cato condemns +himself by the advice he gave to his dearly loved son. For if it +was a disgrace to live under Cæsar's rule, why did the father urge +the son to this disgrace, by encouraging him to trust absolutely to +Cæsar's generosity? Why did he not persuade him to die along with +himself? If Torquatus was applauded for putting his son to death, +when contrary to orders he had engaged, and engaged successfully, +with the enemy, why did conquered Cato spare his conquered son, +though he did not spare himself? Was it more disgraceful to be a +victor contrary to orders, than to submit to a victor contrary to the +received ideas of honour? Cato, then, cannot have deemed it to be +shameful to live under Cæsar's rule, for had he done so, the father's +sword would have delivered his son from this disgrace. The truth +is, that his son, whom he both hoped and desired would be spared by +Cæsar, was not more loved by him than Cæsar was envied the glory of +pardoning him (as indeed Cæsar himself is reported to have said[74]); +or if envy is too strong a word, let us say he was _ashamed_ that +this glory should be his. + + + 24. _That in that virtue in which Regulus excels Cato, Christians + are pre-eminently distinguished._ + +Our opponents are offended at our preferring to Cato the saintly +Job, who endured dreadful evils in his body rather than deliver +himself from all torment by self-inflicted death; or other saints, of +whom it is recorded in our authoritative and trustworthy books that +they bore captivity and the oppression of their enemies rather than +commit suicide. But their own books authorize us to prefer to Marcus +Cato, Marcus Regulus. For Cato had never conquered Cæsar; and when +conquered by him, disdained to submit himself to him, and that he +might escape this submission put himself to death. Regulus, on the +contrary, had formerly conquered the Carthaginians, and in command of +the army of Rome had won for the Roman republic a victory which no +citizen could bewail, and which the enemy himself was constrained to +admire; yet afterwards, when he in his turn was defeated by them, he +preferred to be their captive rather than to put himself beyond their +reach by suicide. Patient under the domination of the Carthaginians, +and constant in his love of the Romans, he neither deprived the one +of his conquered body, nor the other of his unconquered spirit. +Neither was it love of life that prevented him from killing himself. +This was plainly enough indicated by his unhesitatingly returning, +on account of his promise and oath, to the same enemies whom he had +more grievously provoked by his words in the senate than even by his +arms in battle. Having such a contempt of life, and preferring to +end it by whatever torments excited enemies might contrive, rather +than terminate it by his own hand, he could not more distinctly have +declared how great a crime he judged suicide to be. Among all their +famous and remarkable citizens, the Romans have no better man to +boast of than this, who was neither corrupted by prosperity, for he +remained a very poor man after winning such victories; nor broken +by adversity, for he returned intrepidly to the most miserable end. +But if the bravest and most renowned heroes, who had but an earthly +country to defend, and who, though they had but false gods, yet +rendered them a true worship, and carefully kept their oath to them; +if these men, who by the custom and right of war put conquered +enemies to the sword, yet shrank from putting an end to their own +lives even when conquered by their enemies; if, though they had no +fear at all of death, they would yet rather suffer slavery than +commit suicide, how much rather must Christians, the worshippers +of the true God, the aspirants to a heavenly citizenship, shrink +from this act, if in God's providence they have been for a season +delivered into the hands of their enemies to prove or to correct +them! And, certainly, Christians subjected to this humiliating +condition will not be deserted by the Most High, who for their sakes +humbled Himself. Neither should they forget that they are bound by +no laws of war, nor military orders, to put even a conquered enemy +to the sword; and if a man may not put to death the enemy who has +sinned, or may yet sin against him, who is so infatuated as to +maintain that he may kill himself because an enemy has sinned, or is +going to sin, against him? + + + 25. _That we should not endeavour by sin to obviate sin._ + +But, we are told, there is ground to fear that, when the body is +subjected to the enemy's lust, the insidious pleasure of sense may +entice the soul to consent to the sin, and steps must be taken to +prevent so disastrous a result. And is not suicide the proper mode of +preventing not only the enemy's sin, but the sin of the Christian so +allured? Now, in the first place, the soul which is led by God and +His wisdom, rather than by bodily concupiscence, will certainly never +consent to the desire aroused in its own flesh by another's lust. +And, at all events, if it be true, as the truth plainly declares, +that suicide is a detestable and damnable wickedness, who is such a +fool as to say, Let us sin now, that we may obviate a possible future +sin; let us now commit murder, lest we perhaps afterwards should +commit adultery? If we are so controlled by iniquity that innocence +is out of the question, and we can at best but make a choice of +sins, is not a future and uncertain adultery preferable to a present +and certain murder? Is it not better to commit a wickedness which +penitence may heal, than a crime which leaves no place for healing +contrition? I say this for the sake of those men or women who fear +they may be enticed into consenting to their violator's lust, and +think they should lay violent hands on themselves, and so prevent, +not another's sin, but their own. But far be it from the mind of +a Christian confiding in God, and resting in the hope of His aid; +far be it, I say, from such a mind to yield a shameful consent to +pleasures of the flesh, howsoever presented. And if that lustful +disobedience, which still dwells in our mortal members, follows its +own law irrespective of our will, surely its motions in the body of +one who rebels against them are as blameless as its motions in the +body of one who sleeps. + + + 26. _That in certain peculiar cases the examples of the saints are + not to be followed._ + +But, they say, in the time of persecution some holy women escaped +those who menaced them with outrage, by casting themselves into +rivers which they knew would drown them; and having died in this +manner, they are venerated in the church catholic as martyrs. +Of such persons I do not presume to speak rashly. I cannot tell +whether there may not have been vouchsafed to the church some divine +authority, proved by trustworthy evidences, for so honouring their +memory: it may be that it is so. It may be they were not deceived +by human judgment, but prompted by divine wisdom, to their act of +self-destruction. We know that this was the case with Samson. And +when God enjoins any act, and intimates by plain evidence that He +has enjoined it, who will call obedience criminal? Who will accuse +so religious a submission? But then every man is not justified in +sacrificing his son to God, because Abraham was commendable in so +doing. The soldier who has slain a man in obedience to the authority +under which he is lawfully commissioned, is not accused of murder by +any law of his state; nay, if he has not slain him, it is then he is +accused of treason to the state, and of despising the law. But if he +has been acting on his own authority, and at his own impulse, he has +in this case incurred the crime of shedding human blood. And thus he +is punished for doing without orders the very thing he is punished +for neglecting to do when he has been ordered. If the commands of +a general make so great a difference, shall the commands of God +make none? He, then, who knows it is unlawful to kill himself, +may nevertheless do so if he is ordered by Him whose commands we +may not neglect. Only let him be very sure that the divine command +has been signified. As for us, we can become privy to the secrets +of conscience only in so far as these are disclosed to us, and so +far only do we judge: "No one knoweth the things of a man, save the +spirit of man which is in him."[75] But this we affirm, this we +maintain, this we every way pronounce to be right, that no man ought +to inflict on himself voluntary death, for this is to escape the ills +of time by plunging into those of eternity; that no man ought to do +so on account of another man's sins, for this were to escape a guilt +which could not pollute him, by incurring great guilt of his own; +that no man ought to do so on account of his own past sins, for he +has all the more need of this life that these sins may be healed by +repentance; that no man should put an end to this life to obtain that +better life we look for after death, for those who die by their own +hand have no better life after death. + + + 27. _Whether voluntary death should be sought in order to avoid sin._ + +There remains one reason for suicide which I mentioned before, and +which is thought a sound one,--namely, to prevent one's falling into +sin either through the blandishments of pleasure or the violence of +pain. If this reason were a good one, then we should be impelled +to exhort men at once to destroy themselves, as soon as they have +been washed in the laver of regeneration, and have received the +forgiveness of all sin. Then is the time to escape all future sin, +when all past sin is blotted out. And if this escape be lawfully +secured by suicide, why not then specially? Why does any baptized +person hold his hand from taking his own life? Why does any person +who is freed from the hazards of this life again expose himself to +them, when he has power so easily to rid himself of them all, and +when it is written, "He who loveth danger shall fall into it?"[76] +Why does he love, or at least face, so many serious dangers, by +remaining in this life from which he may legitimately depart? But is +any one so blinded and twisted in his moral nature, and so far astray +from the truth, as to think that, though a man ought to make away +with himself for fear of being led into sin by the oppression of one +man, his master, he ought yet to live, and so expose himself to the +hourly temptations of this world, both to all those evils which the +oppression of one master involves, and to numberless other miseries +in which this life inevitably implicates us? What reason, then, is +there for our consuming time in those exhortations by which we seek +to animate the baptized, either to virginal chastity, or vidual +continence, or matrimonial fidelity, when we have so much more simple +and compendious a method of deliverance from sin, by persuading those +who are fresh from baptism to put an end to their lives, and so pass +to their Lord pure and well-conditioned? If any one thinks that such +persuasion should be attempted, I say not he is foolish, but mad. +With what face, then, can he say to any man, "Kill yourself, lest +to your small sins you add a heinous sin, while you live under an +unchaste master, whose conduct is that of a barbarian?" How can he +say this, if he cannot without wickedness say, "Kill yourself, now +that you are washed from all your sins, lest you fall again into +similar or even aggravated sins, while you live in a world which has +such power to allure by its unclean pleasures, to torment by its +horrible cruelties, to overcome by its errors and terrors?" It is +wicked to say this; it is therefore wicked to kill oneself. For if +there could be any just cause of suicide, this were so. And since not +even this is so, there is none. + + + 28. _By what judgment of God the enemy was permitted to indulge + his lust on the bodies of continent Christians._ + +Let not your life, then, be a burden to you, ye faithful servants of +Christ, though your chastity was made the sport of your enemies. You +have a grand and true consolation, if you maintain a good conscience, +and know that you did not consent to the sins of those who were +permitted to commit sinful outrage upon you. And if you should ask +why this permission was granted, indeed it is a deep providence +of the Creator and Governor of the world; and "unsearchable are +His judgments, and His ways past finding out."[77] Nevertheless, +faithfully interrogate your own souls, whether ye have not been +unduly puffed up by your integrity, and continence, and chastity; +and whether ye have not been so desirous of the human praise that is +accorded to these virtues, that ye have envied some who possessed +them. I, for my part, do not know your hearts, and therefore I make +no accusation; I do not even hear what your hearts answer when you +question them. And yet, if they answer that it is as I have supposed +it might be, do not marvel that you have lost that by which you can +win men's praise, and retain that which cannot be exhibited to men. +If you did not consent to sin, it was because God added His aid +to His grace that it might not be lost, and because shame before +men succeeded to human glory that it might not be loved. But in +both respects even the fainthearted among you have a consolation, +approved by the one experience, chastened by the other; justified +by the one, corrected by the other. As to those whose hearts, when +interrogated, reply that they have never been proud of the virtue of +virginity, widowhood, or matrimonial chastity, but, condescending +to those of low estate, rejoiced with trembling in these gifts of +God, and that they have never envied any one the like excellences +of sanctity and purity, but rose superior to human applause, which +is wont to be abundant in proportion to the rarity of the virtue +applauded, and rather desired that their own number be increased, +than that by the smallness of their numbers each of them should be +conspicuous;--even such faithful women, I say, must not complain +that permission was given to the barbarians so grossly to outrage +them; nor must they allow themselves to believe that God overlooked +their character when He permitted acts which no one with impunity +commits. For some most flagrant and wicked desires are allowed free +play at present by the secret judgment of God, and are reserved to +the public and final judgment. Moreover, it is possible that those +Christian women, who are unconscious of any undue pride on account of +their virtuous chastity, whereby they sinlessly suffered the violence +of their captors, had yet some lurking infirmity which might have +betrayed them into a proud and contemptuous bearing, had they not +been subjected to the humiliation that befell them in the taking +of the city. As, therefore, some men were removed by death, that +no wickedness might change their disposition, so these women were +outraged lest prosperity should corrupt their modesty. Neither those +women, then, who were already puffed up by the circumstance that +they were still virgins, nor those who might have been so puffed up +had they not been exposed to the violence of the enemy, lost their +chastity, but rather gained humility: the former were saved from +pride already cherished, the latter from pride that would shortly +have grown upon them. + +We must further notice that some of those sufferers may have +conceived that continence is a bodily good, and abides so long as +the body is inviolate, and did not understand that the purity both +of the body and the soul rests on the stedfastness of the will +strengthened by God's grace, and cannot be forcibly taken from an +unwilling person. From this error they are probably now delivered. +For when they reflect how conscientiously they served God, and when +they settle again to the firm persuasion that He can in nowise +desert those who so serve Him, and so invoke His aid; and when they +consider, what they cannot doubt, how pleasing to Him is chastity, +they are shut up to the conclusion that He could never have permitted +these disasters to befall His saints, if by them that saintliness +could be destroyed which He Himself had bestowed upon them, and +delights to see in them. + + + 29. _What the servants of Christ should say in reply to the + unbelievers who cast in their teeth that Christ did not rescue + them from the fury of their enemies._ + +The whole family of God, most high and most true, has therefore a +consolation of its own,--a consolation which cannot deceive, and +which has in it a surer hope than the tottering and falling affairs +of earth can afford. They will not refuse the discipline of this +temporal life, in which they are schooled for life eternal; nor will +they lament their experience of it, for the good things of earth they +use as pilgrims who are not detained by them, and its ills either +prove or improve them. As for those who insult over them in their +trials, and when ills befall them say, "Where is thy God?"[78] we may +ask them where their gods are when they suffer the very calamities +for the sake of avoiding which they worship their gods, or maintain +they ought to be worshipped; for the family of Christ is furnished +with its reply: our God is everywhere present, wholly everywhere; not +confined to any place. He can be present unperceived, and be absent +without moving; when He exposes us to adversities, it is either to +prove our perfections or correct our imperfections; and in return +for our patient endurance of the sufferings of time, He reserves for +us an everlasting reward. But who are you, that we should deign to +speak with you even about your own gods, much less about our God, who +is "to be feared above all gods? For all the gods of the nations are +idols; but the Lord made the heavens."[79] + + + 30. _That those who complain of Christianity really desire to + live without restraint in shameful luxury._ + +If the famous Scipio Nasica were now alive, who was once your pontiff, +and was unanimously chosen by the senate, when, in the panic created +by the Punic war, they sought for the best citizen to entertain the +Phrygian goddess, he would curb this shamelessness of yours, though +you would perhaps scarcely dare to look upon the countenance of such +a man. For why in your calamities do you complain of Christianity, +unless because you desire to enjoy your luxurious licence unrestrained, +and to lead an abandoned and profligate life without the interruption +of any uneasiness or disaster? For certainly your desire for peace, +and prosperity, and plenty is not prompted by any purpose of using +these blessings honestly, that is to say, with moderation, sobriety, +temperance, and piety; for your purpose rather is to run riot in an +endless variety of sottish pleasures, and thus to generate from your +prosperity a moral pestilence which will prove a thousand-fold more +disastrous than the fiercest enemies. It was such a calamity as this +that Scipio, your chief pontiff, your best man in the judgment of the +whole senate, feared when he refused to agree to the destruction of +Carthage, Rome's rival; and opposed Cato, who advised its destruction. +He feared security, that enemy of weak minds, and he perceived that +a wholesome fear would be a fit guardian for the citizens. And he +was not mistaken: the event proved how wisely he had spoken. For +when Carthage was destroyed, and the Roman republic delivered from +its great cause of anxiety, a crowd of disastrous evils forthwith +resulted from the prosperous condition of things. First concord was +weakened, and destroyed by fierce and bloody seditions; then followed, +by a concatenation of baleful causes, civil wars, which brought in +their train such massacres, such bloodshed, such lawless and cruel +proscription and plunder, that those Romans who, in the days of their +virtue, had expected injury only at the hands of their enemies, now +that their virtue was lost, suffered greater cruelties at the hands of +their fellow-citizens. The lust of rule, which with other vices existed +among the Romans in more unmitigated intensity than among any other +people, after it had taken possession of the more powerful few, subdued +under its yoke the rest, worn and wearied. + + + 31. _By what steps the passion for governing increased among + the Romans._ + +For at what stage would that passion rest when once it has lodged +in a proud spirit, until by a succession of advances it has reached +even the throne? And to obtain such advances nothing avails but +unscrupulous ambition. But unscrupulous ambition has nothing to work +upon, save in a nation corrupted by avarice and luxury. Moreover, +a people becomes avaricious and luxurious by prosperity; and it +was this which that very prudent man Nasica was endeavouring to +avoid when he opposed the destruction of the greatest, strongest, +wealthiest city of Rome's enemy. He thought that thus fear would act +as a curb on lust, and that lust being curbed would not run riot +in luxury, and that luxury being prevented avarice would be at an +end; and that these vices being banished, virtue would flourish and +increase, to the great profit of the state; and liberty, the fit +companion of virtue, would abide unfettered. For similar reasons, +and animated by the same considerate patriotism, that same chief +pontiff of yours--I still refer to him who was adjudged Rome's best +man without one dissentient voice--threw cold water on the proposal +of the senate to build a circle of seats round the theatre, and in +a very weighty speech warned them against allowing the luxurious +manners of Greece to sap the Roman manliness, and persuaded them not +to yield to the enervating and emasculating influence of foreign +licentiousness. So authoritative and forcible were his words, that +the senate was moved to prohibit the use even of those benches +which hitherto had been customarily brought to the theatre for the +temporary use of the citizens.[80] How eagerly would such a man as +this have banished from Rome the scenic exhibitions themselves, had +he dared to oppose the authority of those whom he supposed to be +gods! For he did not know that they were malicious devils; or if he +did, he supposed they should rather be propitiated than despised. +For there had not yet been revealed to the Gentiles the heavenly +doctrine which should purify their hearts by faith, and transform +their natural disposition by humble godliness, and turn them from the +service of proud devils to seek the things that are in heaven, or +even above the heavens. + + + 32. _Of the establishment of scenic entertainments._ + +Know then, ye who are ignorant of this, and ye who feign ignorance be +reminded, while you murmur against Him who has freed you from such +rulers, that the scenic games, exhibitions of shameless folly and +licence, were established at Rome, not by men's vicious cravings, +but by the appointment of your gods. Much more pardonably might +you have rendered divine honours to Scipio than to such gods as +these. The gods were not so moral as their pontiff. But give me now +your attention, if your mind, inebriated by its deep potations of +error, can take in any sober truth. The gods enjoined that games +be exhibited in their honour to stay a physical pestilence; their +pontiff prohibited the theatre from being constructed, to prevent a +moral pestilence. If, then, there remains in you sufficient mental +enlightenment to prefer the soul to the body, choose whom you will +worship. Besides, though the pestilence was stayed, this was not +because the voluptuous madness of stage-plays had taken possession of +a warlike people hitherto accustomed only to the games of the circus; +but these astute and wicked spirits, foreseeing that in due course +the pestilence would shortly cease, took occasion to infect, not the +bodies, but the morals of their worshippers, with a far more serious +disease. And in this pestilence these gods find great enjoyment, +because it benighted the minds of men with so gross a darkness, and +dishonoured them with so foul a deformity, that even quite recently +(will posterity be able to credit it?) some of those who fled from +the sack of Rome and found refuge in Carthage, were so infected with +this disease, that day after day they seemed to contend with one +another who should most madly run after the actors in the theatres. + + + 33. _That the overthrow of Rome has not corrected the vices of + the Romans._ + +Oh infatuated men, what is this blindness, or rather madness, which +possesses you? How is it that while, as we hear, even the eastern +nations are bewailing your ruin, and while powerful states in the +most remote parts of the earth are mourning your fall as a public +calamity, ye yourselves should be crowding to the theatres, should +be pouring into them and filling them; and, in short, be playing a +madder part now than ever before? This was the foul plague-spot, +this the wreck of virtue and honour that Scipio sought to preserve +you from when he prohibited the construction of theatres; this was +his reason for desiring that you might still have an enemy to fear, +seeing as he did how easily prosperity would corrupt and destroy you. +He did not consider that republic flourishing whose walls stand, but +whose morals are in ruins. But the seductions of evil-minded devils +had more influence with you than the precautions of prudent men. +Hence the injuries you do, you will not permit to be imputed to you; +but the injuries you suffer, you impute to Christianity. Depraved by +good fortune, and not chastened by adversity, what you desire in the +restoration of a peaceful and secure state, is not the tranquillity +of the commonwealth, but the impunity of your own vicious luxury. +Scipio wished you to be hard pressed by an enemy, that you might not +abandon yourselves to luxurious manners; but so abandoned are you, +that not even when crushed by the enemy is your luxury repressed. +You have missed the profit of your calamity; you have been made most +wretched, and have remained most profligate. + + + 34. _Of God's clemency in moderating the ruin of the city._ + +And that you are yet alive is due to God, who spares you that you +may be admonished to repent and reform your lives. It is He who has +permitted you, ungrateful as you are, to escape the sword of the +enemy, by calling yourselves His servants, or by finding asylum in +the sacred places of the martyrs. + +It is said that Romulus and Remus, in order to increase the +population of the city they founded, opened a sanctuary in which +every man might find asylum and absolution of all crime,--a +remarkable foreshadowing of what has recently occurred in honour of +Christ. The destroyers of Rome followed the example of its founders. +But it was not greatly to their credit that the latter, for the sake +of increasing the number of their citizens, did that which the former +have done, lest the number of their enemies should be diminished. + + + 35. _Of the sons of the church who are hidden among the wicked, + and of false Christians within the church._ + +Let these and similar answers (if any fuller and fitter answers can be +found) be given to their enemies by the redeemed family of the Lord +Christ, and by the pilgrim city of King Christ. But let this city bear +in mind, that among her enemies lie hid those who are destined to +be fellow-citizens, that she may not think it a fruitless labour to +bear what they inflict as enemies until they become confessors of the +faith. So, too, as long as she is a stranger in the world, the city +of God has in her communion, and bound to her by the sacraments, some +who shall not eternally dwell in the lot of the saints. Of these, some +are not now recognised; others declare themselves, and do not hesitate +to make common cause with our enemies in murmuring against God, whose +sacramental badge they wear. These men you may to-day see thronging the +churches with us, to-morrow crowding the theatres with the godless. +But we have the less reason to despair of the reclamation even of such +persons, if among our most declared enemies there are now some, unknown +to themselves, who are destined to become our friends. In truth, these +two cities are entangled together in this world, and intermixed until +the last judgment effect their separation. I now proceed to speak, as +God shall help me, of the rise, progress, and end of these two cities; +and what I write, I write for the glory of the city of God, that, being +placed in comparison with the other, it may shine with a brighter +lustre. + + + 36. _What subjects are to be handled in the following discourse._ + +But I have still some things to say in confutation of those who +refer the disasters of the Roman republic to our religion, because +it prohibits the offering of sacrifices to the gods. For this end +I must recount all, or as many as may seem sufficient, of the +disasters which befell that city and its subject provinces, before +these sacrifices were prohibited; for all these disasters they would +doubtless have attributed to us, if at that time our religion had +shed its light upon them, and had prohibited their sacrifices. I +must then go on to show what social well-being the true God, in +whose hand are all kingdoms, vouchsafed to grant to them that their +empire might increase. I must show why He did so, and how their false +gods, instead of at all aiding them, greatly injured them by guile +and deceit. And, lastly, I must meet those who, when on this point +convinced and confuted by irrefragable proofs, endeavour to maintain +that they worship the gods, not hoping for the present advantages of +this life, but for those which are to be enjoyed after death. And +this, if I am not mistaken, will be the most difficult part of my +task, and will be worthy of the loftiest argument; for we must then +enter the lists with the philosophers, not the mere common herd of +philosophers, but the most renowned, who in many points agree with +ourselves, as regarding the immortality of the soul, and that the +true God created the world, and by His providence rules all He has +created. But as they differ from us on other points, we must not +shrink from the task of exposing their errors, that, having refuted +the gainsaying of the wicked with such ability as God may vouchsafe, +we may assert the city of God, and true piety, and the worship of +God, to which alone the promise of true and everlasting felicity is +attached. Here, then, let us conclude, that we may enter on these +subjects in a fresh book. + +FOOTNOTES: + +[25] See the Editor's Preface. + +[26] Ps. xciv. 15, rendered otherwise in Eng. ver. + +[27] Jas. iv. 6 and 1 Pet. v. 5. + +[28] Virgil, _Æneid_, vi. 854. + +[29] The Benedictines remind us that Alexander and Xenophon, at least +on some occasions, did so. + +[30] Virgil, _Æneid_, ii. 501-2. The renderings of Virgil are from +Conington. + +[31] _Ibid._ ii. 166. + +[32] _Ibid._ + +[33] Horace, _Ep._ I. ii. 69. + +[34] _Æneid_, i. 71. + +[35] _Ibid._ ii. 319. + +[36] _Ibid._ 293. + +[37] Non numina bona, sed omina mala. + +[38] Virgil, _Æneid_, ii. 761. + +[39] Though "levis" was the word usually employed to signify the +inconstancy of the Greeks, it is evidently here used, in opposition +to "immanis" of the following clause, to indicate that the Greeks +were more civilised than the barbarians, and not relentless, but, as +we say, easily moved. + +[40] _De Conj. Cat._ c. 51. + +[41] Sallust, _Cat. Conj._ ix. + +[42] Ps. lxxxix. 32. + +[43] Matt. v. 45. + +[44] Rom. ii. 4. + +[45] So Cyprian (_Contra Demetrianum_) says, "Pœnam de adversis mundi +ille sentit, cui et lætitia et gloria omnis in mundo est." + +[46] Ezek. xxxiii. 6. + +[47] Compare with this chapter the first homily of Chrysostom to the +people of Antioch. + +[48] Rom. viii. 28. + +[49] 1 Pet. iii. 4. + +[50] 1 Tim. vi. 6-10. + +[51] Job i. 21. + +[52] 1 Tim. vi. 17-19. + +[53] Matt. vi. 19-21. + +[54] Paulinus was a native of Bordeaux, and both by inheritance and +marriage acquired great wealth, which, after his conversion in his +thirty-sixth year, he distributed to the poor. He became bishop of +Nola in A.D. 409, being then in his fifty-sixth year. Nola was taken +by Alaric shortly after the sack of Rome. + +[55] Much of a kindred nature might be gathered from the Stoics. +Antoninus says (ii. 14): "Though thou shouldest be going to live +3000 years, and as many times 10,000 years, still remember that no +man loses any other life than this which he now lives, nor lives any +other than this which he now loses. The longest and the shortest are +thus brought to the same." + +[56] Augustine expresses himself more fully on this subject in his +tract, _De cura pro mortuis gerenda_. + +[57] Matt. x. 28. + +[58] Luke xii. 4. + +[59] Ps. lxxix. 2, 3. + +[60] Ps. cxvi. 15. + +[61] Diogenes especially, and his followers. See also Seneca, _De +Tranq._ c. 14, and _Epist._ 92; and in Cicero's _Tusc. Disp._ i. 43, +the answer of Theodorus, the Cyrenian philosopher, to Lysimachus, who +threatened him with the cross: "Threaten that to your courtiers; it +is of no consequence to Theodorus whether he rot in the earth or in +the air." + +[62] Lucan, _Pharsalia_, vii. 819, of those whom Cæsar forbade to be +buried after the battle of Pharsalia. + +[63] Gen. xxv. 9, xxxv. 29, etc. + +[64] Gen. xlvii. 29, l. 24. + +[65] Tob. xii. 12. + +[66] Matt. xxvi. 10-13. + +[67] John xix. 38. + +[68] Dan. iii. + +[69] Jonah. + +[70] "Second to none," as he is called by Herodotus, who first of all +tells his well-known story (_Clio._ 23, 24). + +[71] Augustine here uses the words of Cicero ("vigilando +peremerunt"), who refers to Regulus, _in Pisonem_, c. 19. Aulus +Gellius, quoting Tubero and Tuditanus (vi. 4), adds some further +particulars regarding these tortures. + +[72] As the Stoics generally would affirm. + +[73] Virgil, _Æneid_, vi. 434. + +[74] Plutarch's _Life of Cato_, 72. + +[75] 1 Cor. ii. 11. + +[76] Ecclus. iii. 27. + +[77] Rom. xi. 33. + +[78] Ps. xlii. 10. + +[79] Ps. xcvi. 4, 5. + +[80] Originally the spectators had to stand, and now (according to +Livy, _Ep._ xlviii.) the old custom was restored. + + + + + BOOK SECOND. + + ARGUMENT. + + IN THIS BOOK AUGUSTINE REVIEWS THOSE CALAMITIES WHICH THE ROMANS + SUFFERED BEFORE THE TIME OF CHRIST, AND WHILE THE WORSHIP OF + THE FALSE GODS WAS UNIVERSALLY PRACTISED; AND DEMONSTRATES + THAT, FAR FROM BEING PRESERVED FROM MISFORTUNE BY THE GODS, THE + ROMANS HAVE BEEN BY THEM OVERWHELMED WITH THE ONLY, OR AT LEAST + THE GREATEST, OF ALL CALAMITIES--THE CORRUPTION OF MANNERS, AND + THE VICES OF THE SOUL. + + + 1. _Of the limits which must be put to the necessity of replying + to an adversary._ + +If the feeble mind of man did not presume to resist the clear evidence +of truth, but yielded its infirmity to wholesome doctrines, as to a +health-giving medicine, until it obtained from God, by its faith and +piety, the grace needed to heal it, they who have just ideas, and +express them in suitable language, would need to use no long discourse +to refute the errors of empty conjecture. But this mental infirmity +is now more prevalent and hurtful than ever, to such an extent that +even after the truth has been as fully demonstrated as man can prove +it to man, they hold for the very truth their own unreasonable +fancies, either on account of their great blindness, which prevents +them from seeing what is plainly set before them, or on account of +their opinionative obstinacy, which prevents them from acknowledging +the force of what they do see. There therefore frequently arises a +necessity of speaking more fully on those points which are already +clear, that we may, as it were, present them not to the eye, but +even to the touch, so that they may be felt even by those who close +their eyes against them. And yet to what end shall we ever bring our +discussions, or what bounds can be set to our discourse, if we proceed +on the principle that we must always reply to those who reply to us? +For those who are either unable to understand our arguments, or are so +hardened by the habit of contradiction, that though they understand +they cannot yield to them, reply to us, and, as it is written, "speak +hard things,"[81] and are incorrigibly vain. Now, if we were to propose +to confute their objections as often as they with brazen face chose +to disregard our arguments, and as often as they could by any means +contradict our statements, you see how endless, and fruitless, and +painful a task we should be undertaking. And therefore I do not wish my +writings to be judged even by you, my son Marcellinus, nor by any of +those others at whose service this work of mine is freely and in all +Christian charity put, if at least you intend always to require a reply +to every exception which you hear taken to what you read in it; for so +you would become like those silly women of whom the apostle says that +they are "always learning, and never able to come to the knowledge of +the truth."[82] + + + 2. _Recapitulation of the contents of the first book._ + +In the foregoing book, having begun to speak of the city of God, to +which I have resolved, Heaven helping me, to consecrate the whole of +this work, it was my first endeavour to reply to those who attribute +the wars by which the world is being devastated, and specially the +recent sack of Rome by the barbarians, to the religion of Christ, which +prohibits the offering of abominable sacrifices to devils. I have shown +that they ought rather to attribute it to Christ, that for His name's +sake the barbarians, in contravention of all custom and law of war, +threw open as sanctuaries the largest churches, and in many instances +showed such reverence to Christ, that not only His genuine servants, +but even those who in their terror feigned themselves to be so, were +exempted from all those hardships which by the custom of war may +lawfully be inflicted. Then out of this there arose the question, why +wicked and ungrateful men were permitted to share in these benefits; +and why, too, the hardships and calamities of war were inflicted on the +godly as well as on the ungodly. And in giving a suitably full answer +to this large question, I occupied some considerable space, partly that +I might relieve the anxieties which disturb many when they observe that +the blessings of God, and the common and daily human casualties, fall +to the lot of bad men and good without distinction; but mainly that I +might minister some consolation to those holy and chaste women who were +outraged by the enemy, in such a way as to shock their modesty, though +not to sully their purity, and that I might preserve them from being +ashamed of life, though they have no guilt to be ashamed of. And then I +briefly spoke against those who with a most shameless wantonness insult +over those poor Christians who were subjected to those calamities, and +especially over those broken-hearted and humiliated, though chaste and +holy women; these fellows themselves being most depraved and unmanly +profligates, quite degenerate from the genuine Romans, whose famous +deeds are abundantly recorded in history, and everywhere celebrated, +but who have found in their descendants the greatest enemies of +their glory. In truth, Rome, which was founded and increased by the +labours of these ancient heroes, was more shamefully ruined by their +descendants, while its walls were still standing, than it is now by the +razing of them. For in this ruin there fell stones and timbers; but in +the ruin those profligates effected, there fell, not the mural, but the +moral bulwarks and ornaments of the city, and their hearts burned with +passions more destructive than the flames which consumed their houses. +Thus I brought my first book to a close. And now I go on to speak of +those calamities which that city itself, or its subject provinces, +have suffered since its foundation; all of which they would equally +have attributed to the Christian religion, if at that early period the +doctrine of the gospel against their false and deceiving gods had been +as largely and freely proclaimed as now. + + + 3. _That we need only to read history in order to see what + calamities the Romans suffered before the religion of Christ + began to compete with the worship of the gods._ + +But remember that, in recounting these things, I have still to +address myself to ignorant men; so ignorant, indeed, as to give birth +to the common saying, "Drought and Christianity go hand in hand."[83] +There are indeed some among them who are thoroughly well educated +men, and have a taste for history, in which the things I speak of are +open to their observation; but in order to irritate the uneducated +masses against us, they feign ignorance of these events, and do what +they can to make the vulgar believe that those disasters, which in +certain places and at certain times uniformly befall mankind, are +the result of Christianity, which is being everywhere diffused, and +is possessed of a renown and brilliancy which quite eclipse their +own gods.[84] Let them then, along with us, call to mind with what +various and repeated disasters the prosperity of Rome was blighted, +before ever Christ had come in the flesh, and before His name had +been blazoned among the nations with that glory which they vainly +grudge. Let them, if they can, defend their gods in this article, +since they maintain that they worship them in order to be preserved +from these disasters, which they now impute to us if they suffer in +the least degree. For why did these gods permit the disasters I am +to speak of to fall on their worshippers before the preaching of +Christ's name offended them, and put an end to their sacrifices? + + + 4. _That the worshippers of the gods never received from them any + healthy moral precepts, and that in celebrating their worship + all sorts of impurities were practised._ + +First of all, we would ask why their gods took no steps to improve +the morals of their worshippers. That the true God should neglect +those who did not seek His help, that was but justice; but why did +those gods, from whose worship ungrateful men are now complaining +that they are prohibited, issue no laws which might have guided +their devotees to a virtuous life? Surely it was but just, that +such care as men showed to the worship of the gods, the gods on +their part should have to the conduct of men. But, it is replied, it +is by his own will a man goes astray. Who denies it? But none the +less was it incumbent on these gods, who were men's guardians, to +publish in plain terms the laws of a good life, and not to conceal +them from their worshippers. It was their part to send prophets to +reach and convict such as broke these laws, and publicly to proclaim +the punishments which await evildoers, and the rewards which may +be looked for by those that do well. Did ever the walls of any of +their temples echo to any such warning voice? I myself, when I was a +young man, used sometimes to go to the sacrilegious entertainments +and spectacles; I saw the priests raving in religious excitement, +and heard the choristers; I took pleasure in the shameful games +which were celebrated in honour of gods and goddesses, of the virgin +Cœlestis,[85] and Berecynthia,[86] the mother of all the gods. And on +the holy day consecrated to her purification, there were sung before +her couch productions so obscene and filthy for the ear--I do not say +of the mother of the gods, but of the mother of any senator or honest +man--nay, so impure, that not even the mother of the foul-mouthed +players themselves could have formed one of the audience. For natural +reverence for parents is a bond which the most abandoned cannot +ignore. And, accordingly, the lewd actions and filthy words with +which these players honoured the mother of the gods, in presence of +a vast assemblage and audience of both sexes, they could not for +very shame have rehearsed at home in presence of their own mothers. +And the crowds that were gathered from all quarters by curiosity, +offended modesty must, I should suppose, have scattered in the +confusion of shame. If these are sacred rites, what is sacrilege? If +this is purification, what is pollution? This festivity was called +the Tables,[87] as if a banquet were being given at which unclean +devils might find suitable refreshment. For it is not difficult to +see what kind of spirits they must be who are delighted with such +obscenities, unless, indeed, a man be blinded by these evil spirits +passing themselves off under the name of gods, and either disbelieves +in their existence, or leads such a life as prompts him rather to +propitiate and fear them than the true God. + + + 5. _Of the obscenities practised in honour of the mother of + the gods._ + +In this matter I would prefer to have as my assessors in judgment, +not those men who rather take pleasure in these infamous customs +than take pains to put an end to them, but that same Scipio Nasica +who was chosen by the senate as the citizen most worthy to receive +in his hands the image of that demon Cybele, and convey it into the +city. He would tell us whether he would be proud to see his own +mother so highly esteemed by the state as to have divine honours +adjudged to her; as the Greeks and Romans and other nations have +decreed divine honours to men who had been of material service to +them, and have believed that their mortal benefactors were thus made +immortal, and enrolled among the gods.[88] Surely he would desire +that his mother should enjoy such felicity were it possible. But if +we proceeded to ask him whether, among the honours paid to her, he +would wish such shameful rites as these to be celebrated, would he +not at once exclaim that he would rather his mother lay stone-dead, +than survive as a goddess to lend her ear to these obscenities? Is it +possible that he who was of so severe a morality, that he used his +influence as a Roman senator to prevent the building of a theatre in +that city dedicated to the manly virtues, would wish his mother to +be propitiated as a goddess with words which would have brought the +blush to her cheek when a Roman matron? Could he possibly believe +that the modesty of an estimable woman would be so transformed by her +promotion to divinity, that she would suffer herself to be invoked +and celebrated in terms so gross and immodest, that if she had heard +the like while alive upon earth, and had listened without stopping +her ears and hurrying from the spot, her relatives, her husband, and +her children would have blushed for her? Therefore, the mother of +the gods being such a character as the most profligate man would be +ashamed to have for his mother, and meaning to enthral the minds of +the Romans, demanded for her service their best citizen, not to ripen +him still more in virtue by her helpful counsel, but to entangle +him by her deceit, like her of whom it is written, "The adulteress +will hunt for the precious soul."[89] Her intent was to puff up this +high-souled man by an apparently divine testimony to his excellence, +in order that he might rely upon his own eminence in virtue, and +make no further efforts after true piety and religion, without which +natural genius, however brilliant, vapours into pride and comes to +nothing. For what but a guileful purpose could that goddess demand +the best man, seeing that in her own sacred festivals she requires +such obscenities as the best men would be covered with shame to hear +at their own tables? + + + 6. _That the gods of the pagans never inculcated holiness of life._ + +This is the reason why those divinities quite neglected the lives +and morals of the cities and nations who worshipped them, and threw +no dreadful prohibition in their way to hinder them from becoming +utterly corrupt, and to preserve them from those terrible and +detestable evils which visit not harvests and vintages, not house and +possessions, not the body which is subject to the soul, but the soul +itself, the spirit that rules the whole man. If there was any such +prohibition, let it be produced, let it be proved. They will tell us +that purity and probity were inculcated upon those who were initiated +in the mysteries of religion, and that secret incitements to virtue +were whispered in the ear of the _élite_; but this is an idle boast. +Let them show or name to us the places which were at any time +consecrated to assemblages in which, instead of the obscene songs and +licentious acting of players, instead of the celebration of those +most filthy and shameless Fugalia[90] (well called Fugalia, since +they banish modesty and right feeling), the people were commanded +in the name of the gods to restrain avarice, bridle impurity, and +conquer ambition; where, in short, they might learn in that school +which Persius vehemently lashes them to, when he says: "Be taught, +ye abandoned creatures, and ascertain the causes of things; what we +are, and for what end we are born; what is the law of our success in +life, and by what art we may turn the goal without making shipwreck; +what limit we should put to our wealth, what we may lawfully desire, +and what uses filthy lucre serves; how much we should bestow upon our +country and our family; learn, in short, what God meant thee to be, +and what place He has ordered you to fill."[91] Let them name to us +the places where such instructions were wont to be communicated from +the gods, and where the people who worshipped them were accustomed to +resort to hear them, as we can point to our churches built for this +purpose in every land where the Christian religion is received. + + + 7. _That the suggestions of philosophers are precluded from having + any moral effect, because they have not the authority which + belongs to divine instruction, and because man's natural bias + to evil induces him rather to follow the examples of the gods + than to obey the precepts of men._ + +But will they perhaps remind us of the schools of the philosophers, +and their disputations? In the first place, these belong not to Rome, +but to Greece; and even if we yield to them that they are now Roman, +because Greece itself has become a Roman province, still the teachings +of the philosophers are not the commandments of the gods, but the +discoveries of men, who, at the prompting of their own speculative +ability, made efforts to discover the hidden laws of nature, and +the right and wrong in ethics, and in dialectic what was consequent +according to the rules of logic, and what was inconsequent and +erroneous. And some of them, by God's help, made great discoveries; +but when left to themselves they were betrayed by human infirmity, and +fell into mistakes. And this was ordered by divine providence, that +their pride might be restrained, and that by their example it might +be pointed out that it is humility which has access to the highest +regions. But of this we shall have more to say, if the Lord God of +truth permit, in its own place.[92] However, if the philosophers have +made any discoveries which are sufficient to guide men to virtue and +blessedness, would it not have been greater justice to vote divine +honours to them? Were it not more accordant with every virtuous +sentiment to read Plato's writings in a "Temple of Plato," than to be +present in the temples of devils to witness the priests of Cybele[93] +mutilating themselves, the effeminate being consecrated, the raving +fanatics cutting themselves, and whatever other cruel or shameful, +or shamefully cruel or cruelly shameful, ceremony is enjoined by the +ritual of such gods as these? Were it not a more suitable education, +and more likely to prompt the youth to virtue, if they heard public +recitals of the laws of the gods, instead of the vain laudation of the +customs and laws of their ancestors? Certainly all the worshippers of +the Roman gods, when once they are possessed by what Persius calls "the +burning poison of lust,"[94] prefer to witness the deeds of Jupiter +rather than to hear what Plato taught or Cato censured. Hence the young +profligate in Terence, when he sees on the wall a fresco representing +the fabled descent of Jupiter into the lap of Danaë in the form of a +golden shower, accepts this as authoritative precedent for his own +licentiousness, and boasts that he is an imitator of God. "And what +God?" he says. "He who with His thunder shakes the loftiest temples. +And was I, a poor creature compared to Him, to make bones of it? No; I +did it, and with all my heart."[95] + + + 8. _That the theatrical exhibitions publishing the shameful actions + of the gods, propitiated rather than offended them._ + +But, some one will interpose, these are the fables of poets, not +the deliverances of the gods themselves. Well, I have no mind to +arbitrate between the lewdness of theatrical entertainments and of +mystic rites; only this I say, and history bears me out in making the +assertion, that those same entertainments, in which the fictions of +poets are the main attraction, were not introduced in the festivals +of the gods by the ignorant devotion of the Romans, but that the gods +themselves gave the most urgent commands to this effect, and indeed +extorted from the Romans these solemnities and celebrations in their +honour. I touched on this in the preceding book, and mentioned that +dramatic entertainments were first inaugurated at Rome on occasion +of a pestilence, and by authority of the pontiff. And what man is +there who is not more likely to adopt, for the regulation of his own +life, the examples that are represented in plays which have a divine +sanction, rather than the precepts written and promulgated with no +more than human authority? If the poets gave a false representation +of Jove in describing him as adulterous, then it were to be expected +that the chaste gods should in anger avenge so wicked a fiction, in +place of encouraging the games which circulated it. Of these plays, +the most inoffensive are comedies and tragedies, that is to say, the +dramas which poets write for the stage, and which, though they often +handle impure subjects, yet do so without the filthiness of language +which characterizes many other performances; and it is these dramas +which boys are obliged by their seniors to read and learn as a part +of what is called a liberal and gentlemanly education.[96] + + + 9. _That the poetical licence which the Greeks, in obedience to + their gods, allowed, was restrained by the ancient Romans._ + +The opinion of the ancient Romans on this matter is attested by +Cicero in his work _De Republica_, in which Scipio, one of the +interlocutors, says, "The lewdness of comedy could never have been +suffered by audiences, unless the customs of society had previously +sanctioned the same lewdness." And in the earlier days the Greeks +preserved a certain reasonableness in their licence, and made it a +law, that whatever comedy wished to say of any one, it must say it +of him by name. And so in the same work of Cicero's, Scipio says, +"Whom has it not aspersed? Nay, whom has it not worried? Whom has +it spared? Allow that it may assail demagogues and factions, men +injurious to the commonwealth--a Cleon, a Cleophon, a Hyperbolus. +That is tolerable, though it had been more seemly for the public +censor to brand such men, than for a poet to lampoon them; but to +blacken the fame of Pericles with scurrilous verse, after he had +with the utmost dignity presided over their state alike in war and +in peace, was as unworthy of a poet, as if our own Plautus or Nævius +were to bring Publius and Cneius Scipio on the comic stage, or as if +Cæcilius were to caricature Cato." And then a little after he goes +on: "Though our Twelve Tables attached the penalty of death only to +a very few offences, yet among these few this was one: if any man +should have sung a pasquinade, or have composed a satire calculated +to bring infamy or disgrace on another person. Wisely decreed. For it +is by the decisions of magistrates, and by a well-informed justice, +that our lives ought to be judged, and not by the flighty fancies of +poets; neither ought we to be exposed to hear calumnies, save where +we have the liberty of replying, and defending ourselves before an +adequate tribunal." This much I have judged it advisable to quote +from the fourth book of Cicero's _De Republica_; and I have made the +quotation word for word, with the exception of some words omitted, +and some slightly transposed, for the sake of giving the sense more +readily. And certainly the extract is pertinent to the matter I am +endeavouring to explain. Cicero makes some further remarks, and +concludes the passage by showing that the ancient Romans did not +permit any living man to be either praised or blamed on the stage. +But the Greeks, as I said, though not so moral, were more logical in +allowing this licence which the Romans forbade: for they saw that +their gods approved and enjoyed the scurrilous language of low comedy +when directed not only against men, but even against themselves; and +this, whether the infamous actions imputed to them were the fictions +of poets, or were their actual iniquities commemorated and acted in +the theatres. And would that the spectators had judged them worthy +only of laughter, and not of imitation! Manifestly it had been a +stretch of pride to spare the good name of the leading men and the +common citizens, when the very deities did not grudge that their own +reputation should be blemished. + + + 10. _That the devils, in suffering either false or true crimes to + be laid to their charge, meant to do men a mischief._ + +It is alleged, in excuse of this practice, that the stories told +of the gods are not true, but false, and mere inventions; but this +only makes matters worse, if we form our estimate by the morality +our religion teaches; and if we consider the malice of the devils, +what more wily and astute artifice could they practise upon men? +When a slander is uttered against a leading statesman of upright and +useful life, is it not reprehensible in proportion to its untruth +and groundlessness? What punishment, then, shall be sufficient when +the gods are the objects of so wicked and outrageous an injustice? +But the devils, whom these men repute gods, are content that even +iniquities they are guiltless of should be ascribed to them, so long +as they may entangle men's minds in the meshes of these opinions, and +draw them on along with themselves to their predestinated punishment: +whether such things were actually committed by the men whom these +devils, delighting in human infatuation, cause to be worshipped as +gods, and in whose stead they, by a thousand malign and deceitful +artifices, substitute themselves, and so receive worship; or whether, +though they were really the crimes of men, these wicked spirits +gladly allowed them to be attributed to higher beings, that there +might seem to be conveyed from heaven itself a sufficient sanction +for the perpetration of shameful wickedness. The Greeks, therefore, +seeing the character of the gods they served, thought that the poets +should certainly not refrain from showing up human vices on the +stage, either because they desired to be like their gods in this, or +because they were afraid that, if they required for themselves a more +unblemished reputation than they asserted for the gods, they might +provoke them to anger. + + + 11. _That the Greeks admitted players to offices of state, on + the ground that men who pleased the gods should not be + contemptuously treated by their fellows_. + +It was a part of this same reasonableness of the Greeks which induced +them to bestow upon the actors of these same plays no inconsiderable +civic honours. In the above-mentioned book of the _De Republica_, +it is mentioned that Æschines, a very eloquent Athenian, who had +been a tragic actor in his youth, became a statesman, and that the +Athenians again and again sent another tragedian, Aristodemus, as +their plenipotentiary to Philip. For they judged it unbecoming to +condemn and treat as infamous persons those who were the chief actors +in the scenic entertainments which they saw to be so pleasing to +the gods. No doubt this was immoral of the Greeks, but there can +be as little doubt they acted in conformity with the character of +their gods; for how could they have presumed to protect the conduct +of the citizens from being cut to pieces by the tongues of poets +and players, who were allowed, and even enjoined by the gods, to +tear their divine reputation to tatters? And how could they hold in +contempt the men who acted in the theatres those dramas which, as +they had ascertained, gave pleasure to the gods whom they worshipped? +Nay, how could they but grant to them the highest civic honours? +On what plea could they honour the priests who offered for them +acceptable sacrifices to the gods, if they branded with infamy the +actors who in behalf of the people gave to the gods that pleasure +or honour which they demanded, and which, according to the account +of the priests, they were angry at not receiving? Labeo,[97] whose +learning makes him an authority on such points, is of opinion that +the distinction between good and evil deities should find expression +in a difference of worship; that the evil should be propitiated by +bloody sacrifices and doleful rites, but the good with a joyful and +pleasant observance, as, _e.g._ (as he says himself), with plays, +festivals, and banquets.[98] All this we shall, with God's help, +hereafter discuss. At present, and speaking to the subject on hand, +whether all kinds of offerings are made indiscriminately to all the +gods, as if all were good (and it is an unseemly thing to conceive +that there are evil gods; but these gods of the pagans are all evil, +because they are not gods, but evil spirits), or whether, as Labeo +thinks, a distinction is made between the offerings presented to the +different gods, the Greeks are equally justified in honouring alike +the priests by whom the sacrifices are offered, and the players by +whom the dramas are acted, that they may not be open to the charge of +doing an injury to all their gods, if the plays are pleasing to all +of them, or (which were still worse) to their good gods, if the plays +are relished only by them. + + + 12. _That the Romans, by refusing to the poets the same licence in + respect of men which they allowed them in the case of the gods, + showed a more delicate sensitiveness regarding themselves than + regarding the gods._ + +The Romans, however, as Scipio boasts in that same discussion, +declined having their conduct and good name subjected to the assaults +and slanders of the poets, and went so far as to make it a capital +crime if any one should dare to compose such verses. This was a +very honourable course to pursue, so far as they themselves were +concerned, but in respect of the gods it was proud and irreligious: +for they knew that the gods not only tolerated, but relished, being +lashed by the injurious expressions of the poets, and yet they +themselves would not suffer this same handling; and what their +ritual prescribed as acceptable to the gods, their law prohibited +as injurious to themselves. How then, Scipio, do you praise the +Romans for refusing this licence to the poets, so that no citizen +could be calumniated, while you know that the gods were not included +under this protection? Do you count your senate-house worthy of +so much higher a regard than the Capitol? Is the one city of Rome +more valuable in your eyes than the whole heaven of gods, that you +prohibit your poets from uttering any injurious words against a +citizen, though they may with impunity cast what imputations they +please upon the gods, without the interference of senator, censor, +prince, or pontiff? It was, forsooth, intolerable that Plautus or +Nævius should attack Publius and Cneius Scipio, insufferable that +Cæcilius should lampoon Cato; but quite proper that your Terence +should encourage youthful lust by the wicked example of supreme Jove. + + + 13. _That the Romans should have understood that gods who desired + to be worshipped in licentious entertainments were unworthy of + divine honour._ + +But Scipio, were he alive, would possibly reply: "How could we attach +a penalty to that which the gods themselves have consecrated? For +the theatrical entertainments in which such things are said, and +acted, and performed, were introduced into Roman society by the +gods, who ordered that they should be dedicated and exhibited in +their honour." But was not this, then, the plainest proof that they +were no true gods, nor in any respect worthy of receiving divine +honours from the republic? Suppose they had required that in their +honour the citizens of Rome should be held up to ridicule, every +Roman would have resented the hateful proposal. How then, I would +ask, can they be esteemed worthy of worship, when they propose +that their own crimes be used as material for celebrating their +praises? Does not this artifice expose them, and prove that they are +detestable devils? Thus the Romans, though they were superstitious +enough to serve as gods those who made no secret of their desire +to be worshipped in licentious plays, yet had sufficient regard +to their hereditary dignity and virtue, to prompt them to refuse +to players any such rewards as the Greeks accorded them. On this +point we have this testimony of Scipio, recorded in Cicero: "They +[the Romans] considered comedy and all theatrical performances as +disgraceful, and therefore not only debarred players from offices and +honours open to ordinary citizens, but also decreed that their names +should be branded by the censor, and erased from the roll of their +tribe." An excellent decree, and another testimony to the sagacity +of Rome; but I could wish their prudence had been more thoroughgoing +and consistent. For when I hear that if any Roman citizen chose +the stage as his profession, he not only closed to himself every +laudable career, but even became an outcast from his own tribe, I +cannot but exclaim: This is the true Roman spirit, this is worthy of +a state jealous of its reputation. But then some one interrupts my +rapture, by inquiring with what consistency players are debarred +from all honours, while plays are counted among the honours due to +the gods? For a long while the virtue of Rome was uncontaminated +by theatrical exhibitions;[99] and if they had been adopted for +the sake of gratifying the taste of the citizens, they would have +been introduced hand in hand with the relaxation of manners. But +the fact is, that it was the gods who demanded that they should be +exhibited to gratify them. With what justice, then, is the player +excommunicated by whom God is worshipped? On what pretext can you at +once adore him who exacts, and brand him who acts these plays? This, +then, is the controversy in which the Greeks and Romans are engaged. +The Greeks think they justly honour players, because they worship the +gods who demand plays: the Romans, on the other hand, do not suffer +an actor to disgrace by his name his own plebeian tribe, far less +the senatorial order. And the whole of this discussion may be summed +up in the following syllogism. The Greeks give us the major premiss: +If such gods are to be worshipped, then certainly such men may be +honoured. The Romans add the minor: But such men must by no means be +honoured. The Christians draw the conclusion: Therefore such gods +must by no means be worshipped. + + + 14. _That Plato, who excluded poets from a well-ordered city, was + better than these gods who desire to be honoured by theatrical + plays._ + +We have still to inquire why the poets who write the plays, and who +by the law of the twelve tables are prohibited from injuring the good +name of the citizens, are reckoned more estimable than the actors, +though they so shamefully asperse the character of the gods? Is it +right that the actors of these poetical and God-dishonouring effusions +be branded, while their authors are honoured? Must we not here award +the palm to a Greek, Plato, who, in framing his ideal republic,[100] +conceived that poets should be banished from the city as enemies of the +state? He could not brook that the gods be brought into disrepute, +nor that the minds of the citizens be depraved and besotted, by the +fictions of the poets. Compare now human nature as you see it in +Plato, expelling poets from the city that the citizens be uninjured, +with the divine nature as you see it in these gods exacting plays in +their own honour. Plato strove, though unsuccessfully, to persuade the +light-minded and lascivious Greeks to abstain from so much as writing +such plays; the gods used their authority to extort the acting of the +same from the dignified and sober-minded Romans. And not content with +having them acted, they had them dedicated to themselves, consecrated +to themselves, solemnly celebrated in their own honour. To which, then, +would it be more becoming in a state to decree divine honours,--to +Plato, who prohibited these wicked and licentious plays, or to the +demons who delighted in blinding men to the truth of what Plato +unsuccessfully sought to inculcate? + +This philosopher, Plato, has been elevated by Labeo to the rank +of a demigod, and set thus upon a level with such as Hercules and +Romulus. Labeo ranks demigods higher than heroes, but both he counts +among the deities. But I have no doubt that he thinks this man whom +he reckons a demigod worthy of greater respect not only than the +heroes, but also than the gods themselves. The laws of the Romans +and the speculations of Plato have this resemblance, that the latter +pronounces a wholesale condemnation of poetical fictions, while the +former restrain the licence of satire, at least so far as men are the +objects of it. Plato will not suffer poets even to dwell in his city: +the laws of Rome prohibit actors from being enrolled as citizens; +and if they had not feared to offend the gods who had asked the +services of the players, they would in all likelihood have banished +them altogether. It is obvious, therefore, that the Romans could not +receive, nor reasonably expect to receive, laws for the regulation +of their conduct from their gods, since the laws they themselves +enacted far surpassed and put to shame the morality of the gods. +The gods demand stage-plays in their own honour; the Romans exclude +the players from all civic honours:[101] the former commanded that +they should be celebrated by the scenic representation of their own +disgrace; the latter commanded that no poet should dare to blemish +the reputation of any citizen. But that demigod Plato resisted the +lust of such gods as these, and showed the Romans what their genius +had left incomplete; for he absolutely excluded poets from his ideal +state, whether they composed fictions with no regard to truth, or +set the worst possible examples before wretched men under the guise +of divine actions. We for our part, indeed, reckon Plato neither a +god nor a demigod; we would not even compare him to any of God's +holy angels, nor to the truth-speaking prophets, nor to any of the +apostles or martyrs of Christ, nay, not to any faithful Christian +man. The reason of this opinion of ours we will, God prospering +us, render in its own place. Nevertheless, since they wish him to +be considered a demigod, we think he certainly is more entitled to +that rank, and is every way superior, if not to Hercules and Romulus +(though no historian could ever narrate nor any poet sing of him that +he had killed his brother, or committed any crime), yet certainly +to Priapus, or a Cynocephalus,[102] or the Fever,[103]--divinities +whom the Romans have partly received from foreigners, and partly +consecrated by home-grown rites. How, then, could gods such as these +be expected to promulgate good and wholesome laws, either for the +prevention of moral and social evils, or for their eradication where +they had already sprung up?--gods who used their influence even to +sow and cherish profligacy, by appointing that deeds truly or falsely +ascribed to them should be published to the people by means of +theatrical exhibitions, and by thus gratuitously fanning the flame of +human lust with the breath of a seemingly divine approbation. In vain +does Cicero, speaking of poets, exclaim against this state of things +in these words: "When the plaudits and acclamation of the people, +who sit as infallible judges, are won by the poets, what darkness +benights the mind, what fears invade, what passions inflame it!"[104] + + + 15. _That it was vanity, not reason, which created some of the + Roman gods._ + +But is it not manifest that vanity rather than reason regulated the +choice of some of their false gods? This Plato, whom they reckon a +demigod, and who used all his eloquence to preserve men from the +most dangerous spiritual calamities, has yet not been counted worthy +even of a little shrine; but Romulus, because they can call him +their own, they have esteemed more highly than many gods, though +their secret doctrine can allow him the rank only of a demigod. To +him they allotted a flamen, that is to say, a priest of a class so +highly esteemed in their religion (distinguished, too, by their +conical mitres), that for only three of their gods were flamens +appointed--the Flamen Dialis for Jupiter, Martialis for Mars, and +Quirinalis for Romulus (for when the ardour of his fellow-citizens +had given Romulus a seat among the gods, they gave him this new name +Quirinus). And thus by this honour Romulus has been preferred to +Neptune and Pluto, Jupiter's brothers, and to Saturn himself, their +father. They have assigned the same priesthood to serve him as to +serve Jove; and in giving Mars (the reputed father of Romulus) the +same honour, is this not rather for Romulus' sake than to honour Mars? + + + 16. _That if the gods had really possessed any regard for + righteousness, the Romans should have received good laws from + them, instead of having to borrow them from other nations._ + +Moreover, if the Romans had been able to receive a rule of life +from their gods, they would not have borrowed Solon's laws from +the Athenians, as they did some years after Rome was founded; and +yet they did not keep them as they received them, but endeavoured +to improve and amend them.[105] Although Lycurgus pretended that +he was authorized by Apollo to give laws to the Lacedemonians, the +sensible Romans did not choose to believe this, and were not induced +to borrow laws from Sparta. Numa Pompilius, who succeeded Romulus +in the kingdom, is said to have framed some laws, which, however, +were not sufficient for the regulation of civic affairs. Among these +regulations were many pertaining to religious observances, and yet +he is not reported to have received even these from the gods. With +respect, then, to moral evils, evils of life and conduct,--evils +which are so mighty, that, according to the wisest pagans,[106] by +them states are ruined while their cities stand uninjured,--their +gods made not the smallest provision for preserving their worshippers +from these evils, but, on the contrary, took special pains to +increase them, as we have previously endeavoured to prove. + + + 17. _Of the rape of the Sabine women, and other iniquities + perpetrated in Rome's palmiest days._ + +But possibly we are to find the reason for this neglect of the +Romans by their gods, in the saying of Sallust, that "equity and +virtue prevailed among the Romans not more by force of laws than of +nature."[107] I presume it is to this inborn equity and goodness of +disposition we are to ascribe the rape of the Sabine women. What, +indeed, could be more equitable and virtuous, than to carry off by +force, as each man was fit, and without their parents' consent, +girls who were strangers and guests, and who had been decoyed and +entrapped by the pretence of a spectacle! If the Sabines were wrong +to deny their daughters when the Romans asked for them, was it not +a greater wrong in the Romans to carry them off after that denial? +The Romans might more justly have waged war against the neighbouring +nation for having refused their daughters in marriage when they first +sought them, than for having demanded them back when they had stolen +them. War should have been proclaimed at first: it was then that Mars +should have helped his warlike son, that he might by force of arms +avenge the injury done him by the refusal of marriage, and might also +thus win the women he desired. There might have been some appearance +of "right of war" in a victor carrying off, in virtue of this right, +the virgins who had been without any show of right denied him; +whereas there was no "right of peace" entitling him to carry off +those who were not given to him, and to wage an unjust war with their +justly enraged parents. One happy circumstance was indeed connected +with this act of violence, viz., that though it was commemorated +by the games of the circus, yet even this did not constitute it a +precedent in the city or realm of Rome. If one would find fault with +the results of this act, it must rather be on the ground that the +Romans made Romulus a god in spite of his perpetrating this iniquity; +for one cannot reproach them with making this deed any kind of +precedent for the rape of women. + +Again, I presume it was due to this natural equity and virtue, that +after the expulsion of King Tarquin, whose son had violated Lucretia, +Junius Brutus the consul forced Lucius Tarquinius Collatinus, +Lucretia's husband and his own colleague, a good and innocent man, +to resign his office and go into banishment, on the one sole charge +that he was of the name and blood of the Tarquins. This injustice was +perpetrated with the approval, or at least connivance, of the people, +who had themselves raised to the consular office both Collatinus +and Brutus. Another instance of this equity and virtue is found in +their treatment of Marcus Camillus. This eminent man, after he had +rapidly conquered the Veians, at that time the most formidable of +Rome's enemies, and who had maintained a ten years' war, in which +the Roman army had suffered the usual calamities attendant on bad +generalship, after he had restored security to Rome, which had begun +to tremble for its safety, and after he had taken the wealthiest +city of the enemy, had charges brought against him by the malice of +those that envied his success, and by the insolence of the tribunes +of the people; and seeing that the city bore him no gratitude for +preserving it, and that he would certainly be condemned, he went into +exile, and even in his absence was fined 10,000 asses. Shortly after, +however, his ungrateful country had again to seek his protection from +the Gauls. But I cannot now mention all the shameful and iniquitous +acts with which Rome was agitated, when the aristocracy attempted to +subject the people, and the people resented their encroachments, and +the advocates of either party were actuated rather by the love of +victory than by any equitable or virtuous consideration. + + + 18. _What the history of Sallust reveals regarding the life of the + Romans, either when straitened by anxiety or relaxed in security._ + +I will therefore pause, and adduce the testimony of Sallust himself, +whose words in praise of the Romans (that "equity and virtue +prevailed among them not more by force of laws than of nature") +have given occasion to this discussion. He was referring to that +period immediately after the expulsion of the kings, in which the +city became great in an incredibly short space of time. And yet this +same writer acknowledges in the first book of his history, in the +very exordium of his work, that even at that time, when a very brief +interval had elapsed after the government had passed from kings to +consuls, the more powerful men began to act unjustly, and occasioned +the defection of the people from the patricians, and other disorders +in the city. For after Sallust had stated that the Romans enjoyed +greater harmony and a purer state of society between the second and +third Punic wars than at any other time, and that the cause of this +was not their love of good order, but their fear lest the peace +they had with Carthage might be broken (this also, as we mentioned, +Nasica contemplated when he opposed the destruction of Carthage, +for he supposed that fear would tend to repress wickedness, and to +preserve wholesome ways of living), he then goes on to say: "Yet, +after the destruction of Carthage, discord, avarice, ambition, and +the other vices which are commonly generated by prosperity, more +than ever increased." If they "increased," and that "more than +ever," then already they had appeared, and had been increasing. And +so Sallust adds this reason for what he said. "For," he says, "the +oppressive measures of the powerful, and the consequent secessions +of the plebs from the patricians, and other civil dissensions, had +existed from the first, and affairs were administered with equity +and well-tempered justice for no longer a period than the short +time after the expulsion of the kings, while the city was occupied +with the serious Tuscan war and Tarquin's vengeance." You see how, +even in that brief period after the expulsion of the kings, fear, +he acknowledges, was the cause of the interval of equity and good +order. They were afraid, in fact, of the war which Tarquin waged +against them, after he had been driven from the throne and the city, +and had allied himself with the Tuscans. But observe what he adds: +"After that, the patricians treated the people as their slaves, +ordering them to be scourged or beheaded just as the kings had done, +driving them from their holdings, and harshly tyrannizing over +those who had no property to lose. The people, overwhelmed by these +oppressive measures, and most of all by exorbitant usury, and obliged +to contribute both money and personal service to the constant wars, +at length took arms, and seceded to Mount Aventine and Mount Sacer, +and thus obtained for themselves tribunes and protective laws. But +it was only the second Punic war that put an end on both sides to +discord and strife." You see what kind of men the Romans were, even +so early as a few years after the expulsion of the kings; and it is +of these men he says, that "equity and virtue prevailed among them +not more by force of law than of nature." + +Now, if these were the days in which the Roman republic shows fairest +and best, what are we to say or think of the succeeding age, when, +to use the words of the same historian, "changing little by little +from the fair and virtuous city it was, it became utterly wicked +and dissolute?" This was, as he mentions, after the destruction of +Carthage. Sallust's brief sum and sketch of this period may be read in +his own history, in which he shows how the profligate manners which +were propagated by prosperity resulted at last even in civil wars. He +says: "And from this time the primitive manners, instead of undergoing +an insensible alteration as hitherto they had done, were swept away as +by a torrent: the young men were so depraved by luxury and avarice, +that it may justly be said that no father had a son who could either +preserve his own patrimony, or keep his hands off other men's." Sallust +adds a number of particulars about the vices of Sylla, and the debased +condition of the republic in general; and other writers make similar +observations, though in much less striking language. + +However, I suppose you now see, or at least any one who gives his +attention has the means of seeing, in what a sink of iniquity +that city was plunged before the advent of our heavenly King. For +these things happened not only before Christ had begun to teach, +but before He was even born of the Virgin. If, then, they dare not +impute to their gods the grievous evils of those former times, more +tolerable before the destruction of Carthage, but intolerable and +dreadful after it, although it was the gods who by their malign craft +instilled into the minds of men the conceptions from which such +dreadful vices branched out on all sides, why do they impute these +present calamities to Christ, who teaches life-giving truth, and +forbids us to worship false and deceitful gods, and who, abominating +and condemning with His divine authority those wicked and hurtful +lusts of men, gradually withdraws His own people from a world that is +corrupted by these vices, and is falling into ruins, to make of them +an eternal city, whose glory rests not on the acclamations of vanity, +but on the judgment of truth? + + + 19. _Of the corruption which had grown upon the Roman republic + before Christ abolished the worship of the gods._ + +Here, then, is this Roman republic, "which has changed little by +little from the fair and virtuous city it was, and has become utterly +wicked and dissolute." It is not I who am the first to say this, but +their own authors, from whom we learned it for a fee, and who wrote +it long before the coming of Christ. You see how, before the coming +of Christ, and after the destruction of Carthage, "the primitive +manners, instead of undergoing insensible alteration, as hitherto +they had done, were swept away as by a torrent; and how depraved by +luxury and avarice the youth were." Let them now, on their part, read +to us any laws given by their gods to the Roman people, and directed +against luxury and avarice. And would that they had only been silent +on the subjects of chastity and modesty, and had not demanded from +the people indecent and shameful practices, to which they lent a +pernicious patronage by their so-called divinity. Let them read +our commandments in the Prophets, Gospels, Acts of the Apostles, +or Epistles; let them peruse the large number of precepts against +avarice and luxury which are everywhere read to the congregations +that meet for this purpose, and which strike the ear, not with the +uncertain sound of a philosophical discussion, but with the thunder +of God's own oracle pealing from the clouds. And yet they do not +impute to their gods the luxury and avarice, the cruel and dissolute +manners, that had rendered the republic utterly wicked and corrupt, +even before the coming of Christ; but whatever affliction their +pride and effeminacy have exposed them to in these latter days, +they furiously impute to our religion. If the kings of the earth +and all their subjects, if all princes and judges of the earth, if +young men and maidens, old and young, every age, and both sexes; if +they whom the Baptist addressed, the publicans and the soldiers, +were all together to hearken to and observe the precepts of the +Christian religion regarding a just and virtuous life, then should +the republic adorn the whole earth with its own felicity, and attain +in life everlasting to the pinnacle of kingly glory. But because +this man listens, and that man scoffs, and most are enamoured of the +blandishments of vice rather than the wholesome severity of virtue, +the people of Christ, whatever be their condition--whether they be +kings, princes, judges, soldiers, or provincials, rich or poor, +bond or free, male or female--are enjoined to endure this earthly +republic, wicked and dissolute as it is, that so they may by this +endurance win for themselves an eminent place in that most holy and +august assembly of angels and republic of heaven, in which the will +of God is the law. + + + 20. _Of the kind of happiness and life truly delighted in by those + who inveigh against the Christian religion._ + +But the worshippers and admirers of these gods delight in imitating +their scandalous iniquities, and are nowise concerned that the +republic be less depraved and licentious. Only let it remain +undefeated, they say, only let it flourish and abound in resources; +let it be glorious by its victories, or still better, secure in +peace; and what matters it to us? This is our concern, that every +man be able to increase his wealth so as to supply his daily +prodigalities, and so that the powerful may subject the weak for +their own purposes. Let the poor court the rich for a living, and +that under their protection they may enjoy a sluggish tranquillity; +and let the rich abuse the poor as their dependants, to minister +to their pride. Let the people applaud not those who protect their +interests, but those who provide them with pleasure. Let no severe +duty be commanded, no impurity forbidden. Let kings estimate their +prosperity, not by the righteousness, but by the servility of their +subjects. Let the provinces stand loyal to the kings, not as moral +guides, but as lords of their possessions and purveyors of their +pleasures; not with a hearty reverence, but a crooked and servile +fear. Let the laws take cognizance rather of the injury done to +another man's property, than of that done to one's own person. +If a man be a nuisance to his neighbour, or injure his property, +family, or person, let him be actionable; but in his own affairs +let every one with impunity do what he will in company with his +own family, and with those who willingly join him. Let there be a +plentiful supply of public prostitutes for every one who wishes to +use them, but specially for those who are too poor to keep one for +their private use. Let there be erected houses of the largest and +most ornate description: in these let there be provided the most +sumptuous banquets, where every one who pleases may, by day or night, +play, drink, vomit,[108] dissipate. Let there be everywhere heard +the rustling of dancers, the loud, immodest laughter of the theatre; +let a succession of the most cruel and the most voluptuous pleasures +maintain a perpetual excitement. If such happiness is distasteful +to any, let him be branded as a public enemy; and if any attempt to +modify or put an end to it, let him be silenced, banished, put an end +to. Let these be reckoned the true gods, who procure for the people +this condition of things, and preserve it when once possessed. Let +them be worshipped as they wish; let them demand whatever games they +please, from or with their own worshippers; only let them secure +that such felicity be not imperilled by foe, plague, or disaster of +any kind. What sane man would compare a republic such as this, I +will not say to the Roman empire, but to the palace of Sardanapalus, +the ancient king who was so abandoned to pleasures, that he caused +it to be inscribed on his tomb, that now that he was dead, he +possessed only those things which he had swallowed and consumed by +his appetites while alive? If these men had such a king as this, who, +while self-indulgent, should lay no severe restraint on them, they +would more enthusiastically consecrate to him a temple and a flamen +than the ancient Romans did to Romulus. + + + 21. _Cicero's opinion of the Roman republic._ + +But if our adversaries do not care how foully and disgracefully +the Roman republic be stained by corrupt practices, so long only +as it holds together and continues in being, and if they therefore +pooh-pooh the testimony of Sallust to its "utterly wicked and +profligate" condition, what will they make of Cicero's statement, +that even in his time it had become entirely extinct, and that there +remained extant no Roman republic at all? He introduces Scipio (the +Scipio who had destroyed Carthage) discussing the republic, at a time +when already there were presentiments of its speedy ruin by that +corruption which Sallust describes. In fact, at the time when the +discussion took place, one of the Gracchi, who, according to Sallust, +was the first great instigator of seditions, had already been put to +death. His death, indeed, is mentioned in the same book. Now Scipio, +in the end of the second book, says: "As, among the different sounds +which proceed from lyres, flutes, and the human voice, there must be +maintained a certain harmony which a cultivated ear cannot endure +to hear disturbed or jarring, but which may be elicited in full and +absolute concord by the modulation even of voices very unlike one +another; so, where reason is allowed to modulate the diverse elements +of the state, there is obtained a perfect concord from the upper, +lower, and middle classes as from various sounds; and what musicians +call harmony in singing, is concord in matters of state, which is the +strictest bond and best security of any republic, and which by no +ingenuity can be retained where justice has become extinct." Then, +when he had expatiated somewhat more fully, and had more copiously +illustrated the benefits of its presence and the ruinous effects +of its absence upon a state, Pilus, one of the company present at +the discussion, struck in and demanded that the question should be +more thoroughly sifted, and that the subject of justice should be +freely discussed for the sake of ascertaining what truth there was +in the maxim which was then becoming daily more current, that "the +republic cannot be governed without injustice." Scipio expressed +his willingness to have this maxim discussed and sifted, and gave +it as his opinion that it was baseless, and that no progress could +be made in discussing the republic unless it was established, not +only that this maxim, that "the republic cannot be governed without +injustice," was false, but also that the truth is, that it cannot +be governed without the most absolute justice. And the discussion +of this question, being deferred till the next day, is carried on +in the third book with great animation. For Pilus himself undertook +to defend the position that the republic cannot be governed without +injustice, at the same time being at special pains to clear himself +of any real participation in that opinion. He advocated with great +keenness the cause of injustice against justice, and endeavoured +by plausible reasons and examples to demonstrate that the former +is beneficial, the latter useless, to the republic. Then, at the +request of the company, Lælius attempted to defend justice, and +strained every nerve to prove that nothing is so hurtful to a state +as injustice; and that without justice a republic can neither be +governed, nor even continue to exist. + +When this question has been handled to the satisfaction of the +company, Scipio reverts to the original thread of discourse, and +repeats with commendation his own brief definition of a republic, +that it is the weal of the people. "The people" he defines as being +not every assemblage or mob, but an assemblage associated by a common +acknowledgment of law, and by a community of interests. Then he shows +the use of definition in debate; and from these definitions of his +own he gathers that a republic, or "weal of the people," then exists +only when it is well and justly governed, whether by a monarch, or an +aristocracy, or by the whole people. But when the monarch is unjust, +or, as the Greeks say, a tyrant; or the aristocrats are unjust, and +form a faction; or the people themselves are unjust, and become, as +Scipio for want of a better name calls them, themselves the tyrant, +then the republic is not only blemished (as had been proved the day +before), but by legitimate deduction from those definitions, it +altogether ceases to be. For it could not be the people's weal when a +tyrant factiously lorded it over the state; neither would the people +be any longer a people if it were unjust, since it would no longer +answer the definition of a people--"an assemblage associated by a +common acknowledgment of law, and by a community of interests." + +When, therefore, the Roman republic was such as Sallust described +it, it was not "utterly wicked and profligate," as he says, but had +altogether ceased to exist, if we are to admit the reasoning of +that debate maintained on the subject of the republic by its best +representatives. Tully himself, too, speaking not in the person +of Scipio or any one else, but uttering his own sentiments, uses +the following language in the beginning of the fifth book, after +quoting a line from the poet Ennius, in which he said, "Rome's severe +morality and her citizens are her safeguard." "This verse," says +Cicero, "seems to me to have all the sententious truthfulness of +an oracle. For neither would the citizens have availed without the +morality of the community, nor would the morality of the commons +without outstanding men have availed either to establish or so long +to maintain in vigour so grand a republic with so wide and just an +empire. Accordingly, before our day, the hereditary usages formed +our foremost men, and they on their part retained the usages and +institutions of their fathers. But our age, receiving the republic as +a _chef-d'œuvre_ of another age which has already begun to grow old, +has not merely neglected to restore the colours of the original, but +has not even been at the pains to preserve so much as the general +outline and most outstanding features. For what survives of that +primitive morality which the poet called Rome's safeguard? It is +so obsolete and forgotten, that, far from practising it, one does +not even know it. And of the citizens what shall I say? Morality +has perished through poverty of great men; a poverty for which we +must not only assign a reason, but for the guilt of which we must +answer as criminals charged with a capital crime. For it is through +our vices, and not by any mishap, that we retain only the name of a +republic, and have long since lost the reality." + +This is the confession of Cicero, long indeed after the death of +Africanus, whom he introduced as an interlocutor in his work _De +Republica_, but still before the coming of Christ. Yet, if the +disasters he bewails had been lamented after the Christian religion +had been diffused, and had begun to prevail, is there a man of our +adversaries who would not have thought that they were to be imputed +to the Christians? Why, then, did their gods not take steps then to +prevent the decay and extinction of that republic, over the loss of +which Cicero, long before Christ had come in the flesh, sings so +lugubrious a dirge? Its admirers have need to inquire whether, even +in the days of primitive men and morals, true justice flourished in +it; or was it not perhaps even then, to use the casual expression +of Cicero, rather a coloured painting than the living reality? +But, if God will, we shall consider this elsewhere. For I mean in +its own place to show that--according to the definitions in which +Cicero himself, using Scipio as his mouthpiece, briefly propounded +what a republic is, and what a people is, and according to many +testimonies, both of his own lips and of those who took part in that +same debate--Rome never was a republic, because true justice had +never a place in it. But accepting the more feasible definitions +of a republic, I grant there was a republic of a certain kind, and +certainly much better administered by the more ancient Romans than by +their modern representatives. But the fact is, true justice has no +existence save in that republic whose founder and ruler is Christ, +if at least any choose to call this a republic; and indeed we cannot +deny that it is the people's weal. But if perchance this name, which +has become familiar in other connections, be considered alien to our +common parlance, we may at all events say that in this city is true +justice; the city of which Holy Scripture says, "Glorious things are +said of thee, O city of God." + + + 22. _That the Roman gods never took any steps to prevent the + republic from being ruined by immorality._ + +But what is relevant to the present question is this, that however +admirable our adversaries say the republic was or is, it is certain +that by the testimony of their own most learned writers it had +become, long before the coming of Christ, utterly wicked and +dissolute, and indeed had no existence, but had been destroyed by +profligacy. To prevent this, surely these guardian gods ought to have +given precepts of morals and a rule of life to the people by whom +they were worshipped in so many temples, with so great a variety of +priests and sacrifices, with such numberless and diverse rites, so +many festal solemnities, so many celebrations of magnificent games. +But in all this the demons only looked after their own interest, +and cared not at all how their worshippers lived, or rather were at +pains to induce them to lead an abandoned life, so long as they paid +these tributes to their honour, and regarded them with fear. If any +one denies this, let him produce, let him point to, let him read the +laws which the gods had given against sedition, and which the Gracchi +transgressed when they threw everything into confusion; or those +Marius, and Cinna, and Carbo broke when they involved their country +in civil wars, most iniquitous and unjustifiable in their causes, +cruelly conducted, and yet more cruelly terminated; or those which +Sylla scorned, whose life, character, and deeds, as described by +Sallust and other historians, are the abhorrence of all mankind. Who +will deny that at that time the republic had become extinct? + +Possibly they will be bold enough to suggest in defence of the gods, +that they abandoned the city on account of the profligacy of the +citizens, according to the lines of Virgil: + + "Gone from each fane, each sacred shrine, + Are those who made this realm divine."[109] + +But, firstly, if it be so, then they cannot complain against the +Christian religion, as if it were that which gave offence to the +gods and caused them to abandon Rome, since the Roman immorality had +long ago driven from the altars of the city a cloud of little gods, +like as many flies. And yet where was this host of divinities, when, +long before the corruption of the primitive morality, Rome was taken +and burnt by the Gauls? Perhaps they were present, but asleep? For +at that time the whole city fell into the hands of the enemy, with +the single exception of the Capitoline hill; and this too would have +been taken, had not--the watchful geese aroused the sleeping gods! +And this gave occasion to the festival of the goose, in which Rome +sank nearly to the superstition of the Egyptians, who worship beasts +and birds. But of these adventitious evils which are inflicted by +hostile armies or by some disaster, and which attach rather to the +body than the soul, I am not meanwhile disputing. At present I speak +of the decay of morality, which at first almost imperceptibly lost +its brilliant hue, but afterwards was wholly obliterated, was swept +away as by a torrent, and involved the republic in such disastrous +ruin, that though the houses and walls remained standing, the leading +writers do not scruple to say that the republic was destroyed. Now, +the departure of the gods "from each fane, each sacred shrine," and +their abandonment of the city to destruction, was an act of justice, +if their laws inculcating justice and a moral life had been held in +contempt by that city. But what kind of gods were these, pray, who +declined to live with a people who worshipped them, and whose corrupt +life they had done nothing to reform? + + + 23. _That the vicissitudes of this life are dependent not on + the favour or hostility of demons, but on the will of the true God._ + +But, further, is it not obvious that the gods have abetted the +fulfilment of men's desires, instead of authoritatively bridling them? +For Marius, a low-born and self-made man, who ruthlessly provoked and +conducted civil wars, was so effectually aided by them, that he was +seven times consul, and died full of years in his seventh consulship, +escaping the hands of Sylla, who immediately afterwards came into +power. Why, then, did they not also aid him, so as to restrain him from +so many enormities? For if it is said that the gods had no hand in +his success, this is no trivial admission, that a man can attain the +dearly coveted felicity of this life even though his own gods be not +propitious; that men can be loaded with the gifts of fortune as Marius +was, can enjoy health, power, wealth, honours, dignity, length of days, +though the gods be hostile to him; and that, on the other hand, men +can be tormented as Regulus was, with captivity, bondage, destitution, +watchings, pain, and cruel death, though the gods be his friends. To +concede this is to make a compendious confession that the gods are +useless, and their worship superfluous. If the gods have taught the +people rather what goes clean counter to the virtues of the soul, and +that integrity of life which meets a reward after death; if even in +respect of temporal and transitory blessings they neither hurt those +whom they hate nor profit whom they love, why are they worshipped, why +are they invoked with such eager homage? Why do men murmur in difficult +and sad emergencies, as if the gods had retired in anger? and why, on +their account, is the Christian religion injured by the most unworthy +calumnies? If in temporal matters they have power either for good or +for evil, why did they stand by Marius, the worst of Rome's citizens, +and abandon Regulus, the best? Does this not prove themselves to be +most unjust and wicked? And even if it be supposed that for this +very reason they are the rather to be feared and worshipped, this +is a mistake; for we do not read that Regulus worshipped them less +assiduously than Marius. Neither is it apparent that a wicked life is +to be chosen, on the ground that the gods are supposed to have favoured +Marius more than Regulus. For Metellus, the most highly esteemed of +all the Romans, who had five sons in the consulship, was prosperous +even in this life; and Catiline, the worst of men, reduced to poverty +and defeated in the war his own guilt had aroused, lived and perished +miserably. Real and secure felicity is the peculiar possession of those +who worship that God by whom alone it can be conferred. + +It is thus apparent, that when the republic was being destroyed by +profligate manners, its gods did nothing to hinder its destruction by +the direction or correction of its manners, but rather accelerated +its destruction by increasing the demoralization and corruption +that already existed. They need not pretend that their goodness was +shocked by the iniquity of the city, and that they withdrew in anger. +For they were there, sure enough; they are detected, convicted: +they were equally unable to break silence so as to guide others, +and to keep silence so as to conceal themselves. I do not dwell on +the fact that the inhabitants of Minturnæ took pity on Marius, and +commended him to the goddess Marica in her grove, that she might +give him success in all things, and that from the abyss of despair +in which he then lay he forthwith returned unhurt to Rome, and +entered the city the ruthless leader of a ruthless army; and they +who wish to know how bloody was his victory, how unlike a citizen, +and how much more relentlessly than any foreign foe he acted, let +them read the histories. But this, as I said, I do not dwell upon; +nor do I attribute the bloody bliss of Marius to, I know not what +Minturnian goddess [Marica], but rather to the secret providence of +God, that the mouths of our adversaries might be shut, and that they +who are not led by passion, but by prudent consideration of events, +might be delivered from error. And even if the demons have any +power in these matters, they have only that power which the secret +decree of the Almighty allots to them, in order that we may not +set too great store by earthly prosperity, seeing it is oftentimes +vouchsafed even to wicked men like Marius; and that we may not, on +the other hand, regard it as an evil, since we see that many good and +pious worshippers of the one true God are, in spite of the demons, +pre-eminently successful; and, finally, that we may not suppose that +these unclean spirits are either to be propitiated or feared for the +sake of earthly blessings or calamities: for as wicked men on earth +cannot do all they would, so neither can these demons, but only in so +far as they are permitted by the decree of Him whose judgments are +fully comprehensible, justly reprehensible by none. + + + 24. _Of the deeds of Sylla, in which the demons boasted that he + had their help._ + +It is certain that Sylla--whose rule was so cruel, that, in +comparison with it, the preceding state of things which he came +to avenge was regretted--when first he advanced towards Rome to +give battle to Marius, found the auspices so favourable when he +sacrificed, that, according to Livy's account, the augur Postumius +expressed his willingness to lose his head if Sylla did not, with the +help of the gods, accomplish what he designed. The gods, you see, had +not departed from "every fane and sacred shrine," since they were +still predicting the issue of these affairs, and yet were taking no +steps to correct Sylla himself. Their presages promised him great +prosperity, but no threatenings of theirs subdued his evil passions. +And then, when he was in Asia conducting the war against Mithridates, +a message from Jupiter was delivered to him by Lucius Titius, to the +effect that he would conquer Mithridates; and so it came to pass. +And afterwards, when he was meditating a return to Rome for the +purpose of avenging in the blood of the citizens injuries done to +himself and his friends, a second message from Jupiter was delivered +to him by a soldier of the sixth legion, to the effect that it was +he who had predicted the victory over Mithridates, and that now he +promised to give him power to recover the republic from his enemies, +though with great bloodshed. Sylla at once inquired of the soldier +what form had appeared to him; and, on his reply, recognised that it +was the same as Jupiter had formerly employed to convey to him the +assurance regarding the victory over Mithridates. How, then, can the +gods be justified in this matter for the care they took to predict +these shadowy successes, and for their negligence in correcting +Sylla, and restraining him from stirring up a civil war so lamentable +and atrocious, that it not merely disfigured, but extinguished, +the republic? The truth is, as I have often said, and as Scripture +informs us, and as the facts themselves sufficiently indicate, the +demons are found to look after their own ends only, that they may +be regarded and worshipped as gods, and that men may be induced to +offer to them a worship which associates them with their crimes, and +involves them in one common wickedness and judgment of God. + +Afterwards, when Sylla had come to Tarentum, and had sacrificed +there, he saw on the head of the victim's liver the likeness of a +golden crown. Thereupon the same soothsayer Postumius interpreted +this to signify a signal victory, and ordered that he only should eat +of the entrails. A little afterwards, the slave of a certain Lucius +Pontius cried out, "I am Bellona's messenger; the victory is yours, +Sylla!" Then he added that the Capitol should be burned. As soon as +he had uttered this prediction he left the camp, but returned the +following day more excited than ever, and shouted, "The Capitol is +fired!" And fired indeed it was. This it was easy for a demon both +to foresee and quickly to announce. But observe, as relevant to +our subject, what kind of gods they are under whom these men desire +to live, who blaspheme the Saviour that delivers the wills of the +faithful from the dominion of devils. The man cried out in prophetic +rapture, "The victory is yours, Sylla!" And to certify that he spoke +by a divine spirit, he predicted also an event which was shortly to +happen, and which indeed did fall out, in a place from which he in +whom this spirit was speaking was far distant. But he never cried, +Forbear thy villanies, Sylla!--the villanies which were committed at +Rome by that victor to whom a golden crown on the calf's liver had +been shown as the divine evidence of his victory. If such signs as +this were customarily sent by just gods, and not by wicked demons, +then certainly the entrails he consulted should rather have given +Sylla intimation of the cruel disasters that were to befall the city +and himself. For that victory was not so conducive to his exaltation +to power, as it was fatal to his ambition; for by it he became so +insatiable in his desires, and was rendered so arrogant and reckless +by prosperity, that he may be said rather to have inflicted a moral +destruction on himself than corporal destruction on his enemies. But +these truly woful and deplorable calamities the gods gave him no +previous hint of, neither by entrails, augury, dream, nor prediction. +For they feared his amendment more than his defeat. Yea, they took +good care that this glorious conqueror of his own fellow-citizens +should be conquered and led captive by his own infamous vices, and +should thus be the more submissive slave of the demons themselves. + + + 25. _How powerfully the evil spirits incite men to wicked actions, + by giving them the quasi-divine authority of their example._ + +Now, who does not hereby comprehend,--unless he has preferred to +imitate such gods rather than by divine grace to withdraw himself +from their fellowship,--who does not see how eagerly these evil +spirits strive by their example to lend, as it were, divine authority +to crime? Is not this proved by the fact that they were seen in a +wide plain in Campania rehearsing among themselves the battle which +shortly after took place there with great bloodshed between the +armies of Rome? For at first there were heard loud crashing noises, +and afterwards many reported that they had seen for some days +together two armies engaged. And when this battle ceased, they found +the ground all indented with just such footprints of men and horses +as a great conflict would leave. If, then, the deities were veritably +fighting with one another, the civil wars of men are sufficiently +justified; yet, by the way, let it be observed that such pugnacious +gods must be very wicked or very wretched. If, however, it was but +a sham-fight, what did they intend by this, but that the civil wars +of the Romans should seem no wickedness, but an imitation of the +gods? For already the civil wars had begun; and before this, some +lamentable battles and execrable massacres had occurred. Already +many had been moved by the story of the soldier, who, on stripping +the spoils of his slain foe, recognised in the stripped corpse his +own brother, and, with deep curses on civil wars, slew himself there +and then on his brother's body. To disguise the bitterness of such +tragedies, and kindle increasing ardour in this monstrous warfare, +these malign demons, who were reputed and worshipped as gods, fell +upon this plan of revealing themselves in a state of civil war, +that no compunction for fellow-citizens might cause the Romans to +shrink from such battles, but that the human criminality might be +justified by the divine example. By a like craft, too, did these +evil spirits command that scenic entertainments, of which I have +already spoken, should be instituted and dedicated to them. And in +these entertainments the poetical compositions and actions of the +drama ascribed such iniquities to the gods, that every one might +safely imitate them, whether he believed the gods had actually done +such things, or, not believing this, yet perceived that they most +eagerly desired to be represented as having done them. And that no +one might suppose, that in representing the gods as fighting with one +another, the poets had slandered them, and imputed to them unworthy +actions, the gods themselves, to complete the deception, confirmed +the compositions of the poets by exhibiting their own battles to the +eyes of men, not only through actions in the theatres, but in their +own persons on the actual field. + +We have been forced to bring forward these facts, because their +authors have not scrupled to say and to write that the Roman +republic had already been ruined by the depraved moral habits of +the citizens, and had ceased to exist before the advent of our Lord +Jesus Christ. Now this ruin they do not impute to their own gods, +though they impute to our Christ the evils of this life, which cannot +ruin good men, be they alive or dead. And this they do, though our +Christ has issued so many precepts inculcating virtue and restraining +vice; while their own gods have done nothing whatever to preserve +that republic that served them, and to restrain it from ruin by such +precepts, but have rather hastened its destruction, by corrupting its +morality through their pestilent example. No one, I fancy, will now +be bold enough to say that the republic was then ruined because of +the departure of the gods "from each fane, each sacred shrine," as +if they were the friends of virtue, and were offended by the vices +of men. No, there are too many presages from entrails, auguries, +soothsayings, whereby they boastingly proclaimed themselves prescient +of future events and controllers of the fortune of war,--all which +prove them to have been present. And had they been indeed absent, the +Romans would never in these civil wars have been so far transported +by their own passions as they were by the instigations of these gods. + + + 26. _That the demons gave in secret certain obscure instructions in + morals, while in public their own solemnities inculcated all + wickedness._ + +Seeing that this is so,--seeing that the filthy and cruel deeds, +the disgraceful and criminal actions of the gods, whether real or +feigned, were at their own request published, and were consecrated, +and dedicated in their honour as sacred and stated solemnities; +seeing they vowed vengeance on those who refused to exhibit them +to the eyes of all, that they might be proposed as deeds worthy of +imitation, why is it that these same demons, who, by taking pleasure +in such obscenities, acknowledge themselves to be unclean spirits, +and by delighting in their own villanies and iniquities, real or +imaginary, and by requesting from the immodest, and extorting from +the modest, the celebration of these licentious acts, proclaim +themselves instigators to a criminal and lewd life;--why, I ask, are +they represented as giving some good moral precepts to a few of their +own elect, initiated in the secrecy of their shrines? If it be so, +this very thing only serves further to demonstrate the malicious +craft of these pestilent spirits. For so great is the influence of +probity and chastity, that all men, or almost all men, are moved by +the praise of these virtues; nor is any man so depraved by vice, but +he hath some feeling of honour left in him. So that, unless the devil +sometimes transformed himself, as Scripture says, into an angel of +light,[110] he could not compass his deceitful purpose. Accordingly, +in public, a bold impurity fills the ear of the people with noisy +clamour; in private, a feigned chastity speaks in scarce audible +whispers to a few: an open stage is provided for shameful things, but +on the praiseworthy the curtain falls: grace hides, disgrace flaunts: +a wicked deed draws an overflowing house, a virtuous speech finds +scarce a hearer, as though purity were to be blushed at, impurity +boasted of. Where else can such confusion reign, but in devils' +temples? Where, but in the haunts of deceit? For the secret precepts +are given as a sop to the virtuous, who are few in number; the wicked +examples are exhibited to encourage the vicious, who are countless. + +Where and when those initiated in the mysteries of Cœlestis received +any good instructions, we know not. What we do know is, that before +her shrine, in which her image is set, and amidst a vast crowd +gathering from all quarters, and standing closely packed together, +we were intensely interested spectators of the games which were +going on, and saw, as we pleased to turn the eye, on this side a +grand display of harlots, on the other the virgin goddess: we saw +this virgin worshipped with prayer and with obscene rites. There we +saw no shamefaced mimes, no actress overburdened with modesty: all +that the obscene rites demanded was fully complied with. We were +plainly shown what was pleasing to the virgin deity, and the matron +who witnessed the spectacle returned home from the temple a wiser +woman. Some, indeed, of the more prudent women turned their faces +from the immodest movements of the players, and learned the art of +wickedness by a furtive regard. For they were restrained, by the +modest demeanour due to men, from looking boldly at the immodest +gestures; but much more were they restrained from condemning with +chaste heart the sacred rites of her whom they adored. And yet this +licentiousness--which, if practised in one's home, could only be done +there in secret--was practised as a public lesson in the temple; +and if any modesty remained in men, it was occupied in marvelling +that wickedness which men could not unrestrainedly commit should be +part of the religious teaching of the gods, and that to omit its +exhibition should incur the anger of the gods. What spirit can that +be, which by a hidden inspiration stirs men's corruption, and goads +them to adultery, and feeds on the full-fledged iniquity, unless it +be the same that finds pleasure in such religious ceremonies, sets in +the temples images of devils, and loves to see in play the images of +vices; that whispers in secret some righteous sayings to deceive the +few who are good, and scatters in public invitations to profligacy, +to gain possession of the millions who are wicked? + + + 27. _That the obscenities of those plays which the Romans + consecrated in order to propitiate their gods, contributed + largely to the overthrow of public order._ + +Cicero, a weighty man, and a philosopher in his way, when about to +be made edile, wished the citizens to understand[111] that, among +the other duties of his magistracy, he must propitiate Flora by +the celebration of games. And these games are reckoned devout in +proportion to their lewdness. In another place,[112] and when he was +now consul, and the state in great peril, he says that games had been +celebrated for ten days together, and that nothing had been omitted +which could pacify the gods: as if it had not been more satisfactory +to irritate the gods by temperance, than to pacify them by debauchery; +and to provoke their hate by honest living, than soothe it by such +unseemly grossness. For no matter how cruel was the ferocity of those +men who were threatening the state, and on whose account the gods +were being propitiated: it could not have been more hurtful than +the alliance of gods who were won with the foulest vices. To avert +the danger which threatened men's bodies, the gods were conciliated +in a fashion that drove virtue from their spirits; and the gods did +not enrol themselves as defenders of the battlements against the +besiegers, until they had first stormed and sacked the morality of +the citizens. This propitiation of such divinities,--a propitiation +so wanton, so impure, so immodest, so wicked, so filthy, whose actors +the innate and praiseworthy virtue of the Romans disabled from civic +honours, erased from their tribe, recognised as polluted and made +infamous;--this propitiation, I say, so foul, so detestable, and alien +from every religious feeling, these fabulous and ensnaring accounts +of the criminal actions of the gods, these scandalous actions which +they either shamefully and wickedly committed, or more shamefully and +wickedly feigned, all this the whole city learned in public both by +the words and gestures of the actors. They saw that the gods delighted +in the commission of these things, and therefore believed that they +wished them not only to be exhibited to them, but to be imitated by +themselves. But as for that good and honest instruction which they +speak of, it was given in such secrecy, and to so few (if indeed given +at all), that they seemed rather to fear it might be divulged, than +that it might not be practised. + + + 28. _That the Christian religion is health-giving._ + +They, then, are but abandoned and ungrateful wretches, in deep and +fast bondage to that malign spirit, who complain and murmur that men +are rescued by the name of Christ from the hellish thraldom of these +unclean spirits, and from a participation in their punishment, and +are brought out of the night of pestilential ungodliness into the +light of most healthful piety. Only such men could murmur that the +masses flock to the churches and their chaste acts of worship, where +a seemly separation of the sexes is observed; where they learn how +they may so spend this earthly life, as to merit a blessed eternity +hereafter; where Holy Scripture and instruction in righteousness +are proclaimed from a raised platform in presence of all, that both +they who do the word may hear to their salvation, and they who do +it not may hear to judgment. And though some enter who scoff at +such precepts, all their petulance is either quenched by a sudden +change, or is restrained through fear or shame. For no filthy and +wicked action is there set forth to be gazed at or to be imitated; +but either the precepts of the true God are recommended, His miracles +narrated, His gifts praised, or His benefits implored. + + + 29. _An exhortation to the Romans to renounce paganism._ + +This, rather, is the religion worthy of your desires, O admirable +Roman race,--the progeny of your Scævolas and Scipios, of Regulus, +and of Fabricius. This rather covet, this distinguish from that foul +vanity and crafty malice of the devils. If there is in your nature +any eminent virtue, only by true piety is it purged and perfected, +while by impiety it is wrecked and punished. Choose now what you +will pursue, that your praise may be not in yourself, but in the +true God, in whom is no error. For of popular glory you have had +your share; but by the secret providence of God, the true religion +was not offered to your choice. Awake, it is now day; as you have +already awaked in the persons of some in whose perfect virtue and +sufferings for the true faith we glory: for they, contending on all +sides with hostile powers, and conquering them all by bravely dying, +have purchased for us this country of ours with their blood; to which +country we invite you, and exhort you to add yourselves to the number +of the citizens of this city, which also has a sanctuary[113] of its +own in the true remission of sins. Do not listen to those degenerate +sons of thine who slander Christ and Christians, and impute to them +these disastrous times, though they desire times in which they may +enjoy rather impunity for their wickedness than a peaceful life. Such +has never been Rome's ambition even in regard to her earthly country. +Lay hold now on the celestial country, which is easily won, and in +which you will reign truly and for ever. For there shalt thou find no +vestal fire, no Capitoline stone, but the one true God + + "No date, no goal will here ordain: + But grant an endless, boundless reign."[114] + +No longer, then, follow after false and deceitful gods; abjure them +rather, and despise them, bursting forth into true liberty. Gods +they are not, but malignant spirits, to whom your eternal happiness +will be a sore punishment. Juno, from whom you deduce your origin +according to the flesh, did not so bitterly grudge Rome's citadels +to the Trojans, as these devils whom yet ye repute gods, grudge an +everlasting seat to the race of mankind. And thou thyself hast in no +wavering voice passed judgment on them, when thou didst pacify them +with games, and yet didst account as infamous the men by whom the +plays were acted. Suffer us, then, to assert thy freedom against the +unclean spirits who had imposed on thy neck the yoke of celebrating +their own shame and filthiness. The actors of these divine crimes +thou hast removed from offices of honour; supplicate the true +God, that He may remove from thee those gods who delight in their +crimes,--a most disgraceful thing if the crimes are really theirs, +and a most malicious invention if the crimes are feigned. Well done, +in that thou hast spontaneously banished from the number of your +citizens all actors and players. Awake more fully: the majesty of God +cannot be propitiated by that which defiles the dignity of man. How, +then, can you believe that gods who take pleasure in such lewd plays, +belong to the number of the holy powers of heaven, when the men by +whom these plays are acted are by yourselves refused admission into +the number of Roman citizens even of the lowest grade? Incomparably +more glorious than Rome, is that heavenly city in which for victory +you have truth; for dignity, holiness; for peace, felicity; for life, +eternity. Much less does it admit into its society such gods, if thou +dost blush to admit into thine such men. Wherefore, if thou wouldst +attain to the blessed city, shun the society of devils. They who +are propitiated by deeds of shame, are unworthy of the worship of +right-hearted men. Let these, then, be obliterated from your worship +by the cleansing of the Christian religion, as those men were blotted +from your citizenship by the censor's mark. + +But, so far as regards carnal benefits, which are the only blessings +the wicked desire to enjoy, and carnal miseries, which alone they +shrink from enduring, we will show in the following book that the +demons have not the power they are supposed to have; and although +they had it, we ought rather on that account to despise these +blessings, than for the sake of them to worship those gods, and +by worshipping them to miss the attainment of these blessings +they grudge us. But that they have not even this power which is +ascribed to them by those who worship them for the sake of temporal +advantages, this, I say, I will prove in the following book; so let +us here close the present argument. + +FOOTNOTES: + +[81] Ps. xciv. 4. + +[82] 2 Tim. iii. 7. + +[83] "Pluvia defit, causa Christiani." Similar accusations and +similar replies may be seen in the celebrated passage of Tertullian's +_Apol._ c. 40, and in the eloquent exordium of Arnobius, _C. Gentes_. + +[84] Augustine is supposed to refer to Symmachus, who similarly +accused the Christians in his address to the Emperor Valentinianus +in the year 384. At Augustine's request, Paulus Orosius wrote his +history in confutation of Symmachus' charges. + +[85] Tertullian (_Apol._ c. 24) mentions Cœlestis as specially +worshipped in Africa. Augustine mentions her again in the 26th +chapter of this book, and in other parts of his works. + +[86] Berecynthia is one of the many names of Rhea or Cybele. Livy +(xxix. 11) relates that the image of Cybele was brought to Rome the +day before the ides of April, which was accordingly dedicated as +her feast-day. The image, it seems, had to be washed in the stream +Almon, a tributary of the Tiber, before being placed in the temple +of Victory; and each year, as the festival returned, the washing +was repeated with much pomp at the same spot. Hence Lucan's line +(i. 600), 'Et lotam parvo revocant Almone Cybelen,' and the elegant +verses of Ovid, _Fast._ iv. 337 et seq. + +[87] "Fercula," dishes, or courses. + +[88] See Cicero, _De Nat. Deor._ ii. 24. + +[89] Prov. vi. 26. + +[90] Fugalia. Vives is uncertain to what feast Augustine refers. +Censorinus understands him to refer to a feast celebrating the +expulsion of the kings from Rome. This feast, however (celebrated on +the 24th February), was commonly called "Regifugium." + +[91] Persius, _Sat._ iii. 66-72. + +[92] See below, books viii.-xii. + +[93] "Galli," the castrated priests of Cybele, who were named after +the river Gallus, in Phrygia, the water of which was supposed to +intoxicate or madden those who drank it. According to Vitruvius +(viii. 3), there was a similar fountain in Paphlagonia. Apuleius +(_Golden Ass_, viii.) gives a graphic and humorous description of +the dress, dancing, and imposture of these priests; mentioning, +among other things, that they lashed themselves with whips and cut +themselves with knives till the ground was wet with blood. + +[94] Persius, _Sat._ iii. 37. + +[95] Ter. _Eun._ iii. 5. 36; and cf. the similar allusion in +Aristoph. _Clouds_, 1033-4. It may be added that the argument of this +chapter was largely used by the wiser of the heathen themselves. +Dionysius Hal. (ii. 20) and Seneca (_De Brev. Vit._ c. xvi.) make +the very same complaint; and it will be remembered that his adoption +of this reasoning was one of the grounds on which Euripides was +suspected of atheism. + +[96] This sentence recalls Augustine's own experience as a boy, which +he bewails in his _Confessions_. + +[97] Labeo, a jurist of the time of Augustus, learned in law and +antiquities, and the author of several works much prized by his own +and some succeeding ages. The two articles in Smith's Dictionary on +Antistius and Cornelius Labeo should be read. + +[98] "Lectisternia," feasts in which the images of the gods were laid +on pillows in the streets, and all kinds of food set before them. + +[99] According to Livy (vii. 2), theatrical exhibitions were +introduced in the year 392 A. U. C. Before that time, he says, there +had only been the games of the circus. The Romans sent to Etruria for +players, who were called "histriones," "hister" being the Tuscan word +for a player. Other particulars are added by Livy. + +[100] See the _Republic_, book iii. + +[101] Comp. Tertullian, _De Spectac._ c. 22. + +[102] The Egyptian gods represented with dogs' heads, called by Lucan +(viii. 832) _semicanes deos_. + +[103] The Fever had, according to Vives, three altars in Rome. See +Cicero, _De Nat. Deor._ iii. 25, and Ælian, _Var. Hist._ xii. 11. + +[104] Cicero, _De Republica_, v. Compare the third _Tusculan Quæst._ +c. ii. + +[105] In the year A.U. 299, three ambassadors were sent from Rome +to Athens to copy Solon's laws, and acquire information about the +institutions of Greece. On their return the Decemviri were appointed +to draw up a code; and finally, after some tragic interruptions, the +celebrated Twelve Tables were accepted as the fundamental statutes +of Roman law (_fons universi publici privatique juris_). These were +graven on brass, and hung up for public information. Livy, iii. 31-34. + +[106] Possibly he refers to Plautus' _Persa_, iv. 4. 11-14. + +[107] Sallust, _Cat. Con._ ix. Compare the similar saying of Tacitus +regarding the chastity of the Germans: "Plusque ibi boni mores +valent, quam alibi bonæ leges" (_Germ._ xix.). + +[108] The same collocation of words is used by Cicero with reference to +the well-known mode of renewing the appetite in use among the Romans. + +[109] _Æneid_, ii. 351-2. + +[110] 2 Cor. xi. 14. + +[111] Cicero, _C. Verrem_, vi. 8. + +[112] Cicero, _C. Catilinam_, iii. 8. + +[113] Alluding to the sanctuary given to all who fled to Rome in its +early days. + +[114] Virgil, _Æneid_, i. 278. + + + + + BOOK THIRD. + + ARGUMENT. + + AS IN THE FOREGOING BOOK AUGUSTINE HAS PROVED REGARDING MORAL AND + SPIRITUAL CALAMITIES, SO IN THIS BOOK HE PROVES REGARDING + EXTERNAL AND BODILY DISASTERS, THAT SINCE THE FOUNDATION OF + THE CITY THE ROMANS HAVE BEEN CONTINUALLY SUBJECT TO THEM; AND + THAT EVEN WHEN THE FALSE GODS WERE WORSHIPPED WITHOUT A RIVAL, + BEFORE THE ADVENT OF CHRIST, THEY AFFORDED NO RELIEF FROM SUCH + CALAMITIES. + + + 1. _Of the ills which alone the wicked fear, and which the world + continually suffered, even when the gods were worshipped._ + +Of moral and spiritual evils, which are above all others to be +deprecated, I think enough has already been said to show that the +false gods took no steps to prevent the people who worshipped them +from being overwhelmed by such calamities, but rather aggravated +the ruin. I see I must now speak of those evils which alone are +dreaded by the heathen--famine, pestilence, war, pillage, captivity, +massacre, and the like calamities, already enumerated in the first +book. For evil men account those things alone evil which do not make +men evil; neither do they blush to praise good things, and yet to +remain evil among the good things they praise. It grieves them more +to own a bad house than a bad life, as if it were man's greatest good +to have everything good but himself. But not even such evils as were +alone dreaded by the heathen were warded off by their gods, even when +they were most unrestrictedly worshipped. For in various times and +places before the advent of our Redeemer, the human race was crushed +with numberless and sometimes incredible calamities; and at that +time what gods but those did the world worship, if you except the +one nation of the Hebrews, and, beyond them, such individuals as the +most secret and most just judgment of God counted worthy of divine +grace?[115] But that I may not be prolix, I will be silent regarding +the heavy calamities that have been suffered by any other nations, +and will speak only of what happened to Rome and the Roman empire, by +which I mean Rome properly so called, and those lands which already, +before the coming of Christ, had by alliance or conquest become, as +it were, members of the body of the state. + + + 2. _Whether the gods, whom the Greeks and Romans worshipped in + common, were justified in permitting the destruction of Ilium._ + +First, then, why was Troy or Ilium, the cradle of the Roman people +(for I must not overlook nor disguise what I touched upon in the +first book[116]), conquered, taken, and destroyed by the Greeks, +though it esteemed and worshipped the same gods as they? Priam, some +answer, paid the penalty of the perjury of his father Laomedon.[117] +Then it is true that Laomedon hired Apollo and Neptune as his +workmen. For the story goes that he promised them wages, and then +broke his bargain. I wonder that famous diviner Apollo toiled at so +huge a work, and never suspected Laomedon was going to cheat him of +his pay. And Neptune too, his uncle, brother of Jupiter, king of the +sea, it really was not seemly that he should be ignorant of what was +to happen. For he is introduced by Homer[118] (who lived and wrote +before the building of Rome) as predicting something great of the +posterity of Æneas, who in fact founded Rome. And as Homer says, +Neptune also rescued Æneas in a cloud from the wrath of Achilles, +though (according to Virgil[119]) + + "All his will was to destroy + His own creation, perjured Troy." + +Gods, then, so great as Apollo and Neptune, in ignorance of the cheat +that was to defraud them of their wages, built the walls of Troy for +nothing but thanks and thankless people.[120] There may be some doubt +whether it is not a worse crime to believe such persons to be gods, +than to cheat such gods. Even Homer himself did not give full credence +to the story; for while he represents Neptune, indeed, as hostile to +the Trojans, he introduces Apollo as their champion, though the story +implies that both were offended by that fraud. If, therefore, they +believe their fables, let them blush to worship such gods; if they +discredit the fables, let no more be said of the "Trojan perjury;" or +let them explain how the gods hated Trojan, but loved Roman perjury. +For how did the conspiracy of Catiline, even in so large and corrupt a +city, find so abundant a supply of men whose hands and tongues found +them a living by perjury and civic broils? What else but perjury +corrupted the judgments pronounced by so many of the senators? What +else corrupted the people's votes and decisions of all causes tried +before them? For it seems that the ancient practice of taking oaths has +been preserved even in the midst of the greatest corruption, not for +the sake of restraining wickedness by religious fear, but to complete +the tale of crimes by adding that of perjury. + + + 3. _That the gods could not be offended by the adultery of Paris, + this crime being so common among themselves._ + +There is no ground, then, for representing the gods (by whom, as they +say, that empire stood, though they are proved to have been conquered +by the Greeks) as being enraged at the Trojan perjury. Neither, +as others again plead in their defence, was it indignation at the +adultery of Paris that caused them to withdraw their protection from +Troy. For their habit is to be instigators and instructors in vice, +not its avengers. "The city of Rome," says Sallust, "was first built +and inhabited, as I have heard, by the Trojans, who, flying their +country, under the conduct of Æneas, wandered about without making +any settlement."[121] If, then, the gods were of opinion that the +adultery of Paris should be punished, it was chiefly the Romans, or +at least the Romans also, who should have suffered; for the adultery +was brought about by Æneas' mother. But how could they hate in Paris +a crime which they made no objection to in their own sister Venus, +who (not to mention any other instance) committed adultery with +Anchises, and so became the mother of Æneas? Is it because in the +one case Menelaus[122] was aggrieved, while in the other Vulcan[123] +connived at the crime? For the gods, I fancy, are so little jealous +of their wives, that they make no scruple of sharing them with men. +But perhaps I may be suspected of turning the myths into ridicule, +and not handling so weighty a subject with sufficient gravity. Well, +then, let us say that Æneas is not the son of Venus. I am willing +to I admit it; but is Romulus any more the son of Mars? For why +not the one as well as the other? Or is it lawful for gods to have +intercourse with women, unlawful for men to have intercourse with +goddesses? A hard, or rather an incredible condition, that what +was allowed to Mars by the law of Venus, should not be allowed to +Venus herself by her own law. However, both cases have the authority +of Rome; for Cæsar in modern times believed no less that he was +descended from Venus,[124] than the ancient Romulus believed himself +the son of Mars. + + + 4. _Of Varro's opinion, that it is useful for men to feign + themselves the offspring of the gods._ + +Some one will say, But do you believe all this? Not I indeed. For +even Varro, a very learned heathen, all but admits that these stories +are false, though he does not boldly and confidently say so. But he +maintains it is useful for states that brave men believe, though +falsely, that they are descended from the gods; for that thus the +human spirit, cherishing the belief of its divine descent, will both +more boldly venture into great enterprises, and will carry them +out more energetically, and will therefore by its very confidence +secure more abundant success. You see how wide a field is opened to +falsehood by this opinion of Varro's, which I have expressed as well +as I could in my own words; and how comprehensible it is, that many +of the religions and sacred legends should be feigned in a community +in which it was judged profitable for the citizens that lies should +be told even about the gods themselves. + + + 5. _That it is not credible that the gods should have punished the + adultery of Paris, seeing they showed no indignation at the + adultery of the mother of Romulus._ + +But whether Venus could bear Æneas to a human father Anchises, or +Mars beget Romulus of the daughter of Numitor, we leave as unsettled +questions. For our own Scriptures suggest the very similar question, +whether the fallen angels had sexual intercourse with the daughters +of men, by which the earth was at that time filled with giants, +that is, with enormously large and strong men. At present, then, I +will limit my discussion to this dilemma: If that which their books +relate about the mother of Æneas and the father of Romulus be true, +how can the gods be displeased with men for adulteries which, when +committed by themselves, excite no displeasure? If it is false, +not even in this case can the gods be angry that men should really +commit adulteries, which, even when falsely attributed to the gods, +they delight in. Moreover, if the adultery of Mars be discredited, +that Venus also may be freed from the imputation, then the mother +of Romulus is left unshielded by the pretext of a divine seduction. +For Sylvia was a vestal priestess, and the gods ought to avenge this +sacrilege on the Romans with greater severity than Paris' adultery +on the Trojans. For even the Romans themselves in primitive times +used to go so far as to bury alive any vestal who was detected in +adultery, while women unconsecrated, though they were punished, +were never punished with death for that crime; and thus they more +earnestly vindicated the purity of shrines they esteemed divine, than +of the human bed. + + + 6. _That the gods exacted no penalty for the fratricidal act of + Romulus._ + +I add another instance: If the sins of men so greatly incensed those +divinities, that they abandoned Troy to fire and sword to punish +the crime of Paris, the murder of Romulus' brother ought to have +incensed them more against the Romans than the cajoling of a Greek +husband moved them against the Trojans: fratricide in a newly-born +city should have provoked them more than adultery in a city already +flourishing. It makes no difference to the question we now discuss, +whether Romulus ordered his brother to be slain, or slew him with +his own hand; a crime this latter which many shamelessly deny, many +through shame doubt, many in grief disguise. And we shall not pause +to examine and weigh the testimonies of historical writers on the +subject. All agree that the brother of Romulus was slain, not by +enemies, not by strangers. If it was Romulus who either commanded or +perpetrated this crime; Romulus was more truly the head of the Romans +than Paris of the Trojans; why then did he who carried off another +man's wife bring down the anger of the gods on the Trojans, while he +who took his brother's life obtained the guardianship of those same +gods? If, on the other hand, that crime was not wrought either by the +hand or will of Romulus, then the whole city is chargeable with it, +because it did not see to its punishment, and thus committed, not +fratricide, but parricide, which is worse. For both brothers were +the founders of that city, of which the one was by villany prevented +from being a ruler. So far as I see, then, no evil can be ascribed +to Troy which warranted the gods in abandoning it to destruction, +nor any good to Rome which accounts for the gods visiting it with +prosperity; unless the truth be, that they fled from Troy because +they were vanquished, and betook themselves to Rome to practise their +characteristic deceptions there. Nevertheless they kept a footing for +themselves in Troy, that they might deceive future inhabitants who +repeopled these lands; while at Rome, by a wider exercise of their +malignant arts, they exulted in more abundant honours. + + + 7. _Of the destruction of Ilium by Fimbria, a lieutenant of Marius._ + +And surely we may ask what wrong poor Ilium had done, that, in the +first heat of the civil wars of Rome, it should suffer at the hand of +Fimbria, the veriest villain among Marius' partisans, a more fierce +and cruel destruction than the Grecian sack.[125] For when the Greeks +took it many escaped, and many who did not escape were suffered to +live, though in captivity. But Fimbria from the first gave orders +that not a life should be spared, and burnt up together the city and +all its inhabitants. Thus was Ilium requited, not by the Greeks, whom +she had provoked by wrong-doing; but by the Romans, who had been +built out of her ruins; while the gods, adored alike of both sides, +did simply nothing, or, to speak more correctly, could do nothing. +Is it then true, that at this time also, after Troy had repaired +the damage done by the Grecian fire, all the gods by whose help the +kingdom stood, "forsook each fane, each sacred shrine?" + +But if so, I ask the reason; for in my judgment, the conduct of +the gods was as much to be reprobated as that of the townsmen to +be applauded. For these closed their gates against Fimbria, that +they might preserve the city for Sylla, and were therefore burnt +and consumed by the enraged general. Now, up to this time, Sylla's +cause was the more worthy of the two; for till now he used arms to +restore the republic, and as yet his good intentions had met with no +reverses. What better thing, then, could the Trojans have done? What +more honourable, what more faithful to Rome, or more worthy of her +relationship, than to preserve their city for the better part of the +Romans, and to shut their gates against a parricide of his country? +It is for the defenders of the gods to consider the ruin which this +conduct brought on Troy. The gods deserted an adulterous people, and +abandoned Troy to the fires of the Greeks, that out of her ashes a +chaster Rome might arise. But why did they a second time abandon this +same town, allied now to Rome, and not making war upon her noble +daughter, but preserving a most stedfast and pious fidelity to Rome's +most justifiable faction? Why did they give her up to be destroyed, not +by the Greek heroes, but by the basest of the Romans? Or, if the gods +did not favour Sylla's cause, for which the unhappy Trojans maintained +their city, why did they themselves predict and promise Sylla such +successes? Must we call them flatterers of the fortunate, rather than +helpers of the wretched? Troy was not destroyed, then, because the gods +deserted it. For the demons, always watchful to deceive, did what they +could. For, when all the statues were overthrown and burnt together +with the town, Livy tells us that only the image of Minerva is said to +have been found standing uninjured amidst the ruins of her temple; not +that it might be said in their praise, "The gods who made this realm +divine," but that it might not be said in their defence, They are "gone +from each fane, each sacred shrine:" for that marvel was permitted to +them, not that they might be proved to be powerful, but that they might +be convicted of being present. + + + 8. _Whether Rome ought to have been entrusted to the Trojan gods?_ + +Where, then, was the wisdom of entrusting Rome to the Trojan +gods, who had demonstrated their weakness in the loss of Troy? +Will some one say that, when Fimbria stormed Troy, the gods were +already resident in Rome? How, then, did the image of Minerva remain +standing? Besides, if they were at Rome when Fimbria destroyed Troy, +perhaps they were at Troy when Rome itself was taken and set on fire +by the Gauls. But as they are very acute in hearing, and very swift +in their movements, they came quickly at the cackling of the goose to +defend at least the Capitol, though to defend the rest of the city +they were too long in being warned. + + + 9. _Whether it is credible that the peace during the reign of Numa + was brought about by the gods._ + +It is also believed that it was by the help of the gods that the +successor of Romulus, Numa Pompilius, enjoyed peace during his entire +reign, and shut the gates of Janus, which are customarily kept +open[126] during war. And it is supposed he was thus requited for +appointing many religious observances among the Romans. Certainly that +king would have commanded our congratulations for so rare a leisure, +had he been wise enough to spend it on wholesome pursuits, and, +subduing a pernicious curiosity, had sought out the true God with true +piety. But as it was, the gods were not the authors of his leisure; but +possibly they would have deceived him less had they found him busier. +For the more disengaged they found him, the more they themselves +occupied his attention. Varro informs us of all his efforts, and of the +arts he employed to associate these gods with himself and the city; +and in its own place, if God will, I shall discuss these matters. +Meanwhile, as we are speaking of the benefits conferred by the gods, +I readily admit that peace is a great benefit; but it is a benefit of +the true God, which, like the sun, the rain, and other supports of +life, is frequently conferred on the ungrateful and wicked. But if this +great boon was conferred on Rome and Pompilius by their gods, why did +they never afterwards grant it to the Roman empire during even more +meritorious periods? Were the sacred rites more efficient at their +first institution than during their subsequent celebration? But they +had no existence in Numa's time, until he added them to the ritual; +whereas afterwards they had already been celebrated and preserved, that +benefit might arise from them. How, then, is it that those forty-three, +or as others prefer it, thirty-nine years of Numa's reign, were passed +in unbroken peace, and yet that afterwards, when the worship was +established, and the gods themselves, who were invoked by it, were the +recognised guardians and patrons of the city, we can with difficulty +find during the whole period, from the building of the city to the +reign of Augustus, one year--that, viz., which followed the close of +the first Punic war--in which, for a marvel, the Romans were able to +shut the gates of war?[127] + + + 10. _Whether it was desirable that the Roman empire should be + increased by such a furious succession of wars, when it might + have been quiet and safe by following in the peaceful ways of + Numa._ + +Do they reply that the Roman empire could never have been so widely +extended, nor so glorious, save by constant and unintermitting wars? +A fit argument, truly! Why must a kingdom be distracted in order to +be great? In this little world of man's body, is it not better to +have a moderate stature, and health with it, than to attain the huge +dimensions of a giant by unnatural torments, and when you attain it +to find no rest, but to be pained the more in proportion to the size +of your members? What evil would have resulted, or rather what good +would not have resulted, had those times continued which Sallust +sketched, when he says, "At first the kings (for that was the first +title of empire in the world) were divided in their sentiments: part +cultivated the mind, others the body: at that time the life of men +was led without covetousness; every one was sufficiently satisfied +with his own!"[128] Was it requisite, then, for Rome's prosperity, +that the state of things which Virgil reprobates should succeed: + + "At length stole on a baser age, + And war's indomitable rage, + And greedy lust of gain?"[129] + +But obviously the Romans have a plausible defence for undertaking +and carrying on such disastrous wars,--to wit, that the pressure of +their enemies forced them to resist, so that they were compelled +to fight, not by any greed of human applause, but by the necessity +of protecting life and liberty. Well, let that pass. Here is +Sallust's account of the matter: "For when their state, enriched +with laws, institutions, territory, seemed abundantly prosperous and +sufficiently powerful, according to the ordinary law of human nature, +opulence gave birth to envy. Accordingly, the neighbouring kings and +states took arms and assaulted them. A few allies lent assistance; +the rest, struck with fear, kept aloof from dangers. But the Romans, +watchful at home and in war, were active, made preparations, +encouraged one another, marched to meet their enemies,--protected +by arms their liberty, country, parents. Afterwards, when they had +repelled the dangers by their bravery, they carried help to their +allies and friends, and procured alliances more by conferring than +by receiving favours."[130] This was to build up Rome's greatness by +honourable means. But, in Numa's reign, I would know whether the long +peace was maintained in spite of the incursions of wicked neighbours, +or if these incursions were discontinued that the peace might be +maintained? For if even then Rome was harassed by wars, and yet did +not meet force with force, the same means she then used to quiet her +enemies without conquering them in war, or terrifying them with the +onset of battle, she might have used always, and have reigned in +peace with the gates of Janus shut. And if this was not in her power, +then Rome enjoyed peace not at the will of her gods, but at the will +of her neighbours round about, and only so long as they cared to +provoke her with no war, unless perhaps these pitiful gods will dare +to sell to one man as their favour what lies not in their power to +bestow, but in the will of another man. These demons, indeed, in so +far as they are permitted, can terrify or incite the minds of wicked +men by their own peculiar wickedness. But if they always had this +power, and if no action were taken against their efforts by a more +secret and higher power, they would be supreme to give peace or the +victories of war, which almost always fall out through some human +emotion, and frequently in opposition to the will of the gods, as is +proved not only by lying legends, which scarcely hint or signify any +grain of truth, but even by Roman history itself. + + + 11. _Of the statue of Apollo at Cumæ, whose tears are supposed to + have portended disaster to the Greeks, whom the god was unable + to succour._ + +And it is still this weakness of the gods which is confessed in the +story of the Cuman Apollo, who is said to have wept for four days +during the war with the Achæans and King Aristonicus. And when the +augurs were alarmed at the portent, and had determined to cast the +statue into the sea, the old men of Cumæ interposed, and related +that a similar prodigy had occurred to the same image during the +wars against Antiochus and against Perseus, and that by a decree of +the senate gifts had been presented to Apollo, because the event had +proved favourable to the Romans. Then soothsayers were summoned who +were supposed to have greater professional skill, and they pronounced +that the weeping of Apollo's image was propitious to the Romans, +because Cumæ was a Greek colony, and that Apollo was bewailing (and +thereby presaging) the grief and calamity that was about to light +upon his own land of Greece, from which he had been brought. Shortly +afterwards it was reported that King Aristonicus was defeated and +made prisoner,--a defeat certainly opposed to the will of Apollo; +and this he indicated by even shedding tears from his marble image. +And this shows us that, though the verses of the poets are mythical, +they are not altogether devoid of truth, but describe the manners of +the demons in a sufficiently fit style. For in Virgil Diana mourned +for Camilla,[131] and Hercules wept for Pallas doomed to die.[132] +This is perhaps the reason why Numa Pompilius, too, when, enjoying +prolonged peace, but without knowing or inquiring from whom he +received it, he began in his leisure to consider to what gods he +should entrust the safe keeping and conduct of Rome, and not dreaming +that the true, almighty, and most high God cares for earthly affairs, +but recollecting only that the Trojan gods which Æneas had brought +to Italy had been able to preserve neither the Trojan nor Lavinian +kingdom founded by Æneas himself, concluded that he must provide +other gods as guardians of fugitives and helpers of the weak, and add +them to those earlier divinities who had either come over to Rome +with Romulus, or when Alba was destroyed. + + + 12. _That the Romans added a vast number of gods to those introduced + by Numa, and that their numbers helped them not at all._ + +But though Pompilius introduced so ample a ritual, yet did not Rome +see fit to be content with it. For as yet Jupiter himself had not +his chief temple,--it being King Tarquin who built the Capitol. +And Æsculapius left Epidaurus for Rome, that in this foremost city +he might have a finer field for the exercise of his great medical +skill.[133] The mother of the gods, too, came I know not whence from +Pessinuns; it being unseemly that, while her son presided on the +Capitoline hill, she herself should lie hid in obscurity. But if she +is the mother of all the gods, she not only followed some of her +children to Rome, but left others to follow her. I wonder, indeed, +if she were the mother of Cynocephalus, who a long while afterwards +came from Egypt. Whether also the goddess Fever was her offspring, +is a matter for her grandson Æsculapius[134] to decide. But of +whatever breed she be, the foreign gods will not presume, I trust, to +call a goddess base-born who is a Roman citizen. Who can number the +deities to whom the guardianship of Rome was entrusted? Indigenous +and imported, both of heaven, earth, hell, seas, fountains, rivers; +and, as Varro says, gods certain and uncertain, male and female: +for, as among animals, so among all kinds of gods are there these +distinctions. Rome, then, enjoying the protection of such a cloud of +deities, might surely have been preserved from some of those great +and horrible calamities, of which I can mention but a few. For by +the great smoke of her altars she summoned to her protection, as by +a beacon-fire, a host of gods, for whom she appointed and maintained +temples, altars, sacrifices, priests, and thus offended the true and +most high God, to whom alone all this ceremonial is lawfully due. +And, indeed, she was more prosperous when she had fewer gods; but +the greater she became, the more gods she thought she should have, as +the larger ship needs to be manned by a larger crew. I suppose she +despaired of the smaller number, under whose protection she had spent +comparatively happy days, being able to defend her greatness. For +even under the kings (with the exception of Numa Pompilius, of whom I +have already spoken), how wicked a contentiousness must have existed +to occasion the death of Romulus' brother! + + + 13. _By what right or agreement the Romans obtained their first + wives._ + +How is it that neither Juno, who with her husband Jupiter even then +cherished + + "Rome's sons, the nation of the gown,"[135] + +nor Venus herself, could assist the children of the loved Æneas to find +wives by some right and equitable means? For the lack of this entailed +upon the Romans the lamentable necessity of stealing their wives, and +then waging war with their fathers-in-law; so that the wretched women, +before they had recovered from the wrong done them by their husbands, +were dowried with the blood of their fathers. "But the Romans conquered +their neighbours." Yes; but with what wounds on both sides, and with +what sad slaughter of relatives and neighbours! The war of Cæsar and +Pompey was the contest of only one father-in-law with one son-in-law; +and before it began, the daughter of Cæsar, Pompey's wife, was already +dead. But with how keen and just an accent of grief does Lucan[136] +exclaim: "I sing that worse than civil war waged in the plains of +Emathia, and in which the crime was justified by the victory!" + +The Romans, then, conquered that they might, with hands stained in the +blood of their fathers-in-law, wrench the miserable girls from their +embrace,--girls who dared not weep for their slain parents, for fear +of offending their victorious husbands; and while yet the battle was +raging, stood with their prayers on their lips, and knew not for whom +to utter them. Such nuptials were certainly prepared for the Roman +people not by Venus, but Bellona; or possibly that infernal fury +Alecto had more liberty to injure them now that Juno was aiding them, +than when the prayers of that goddess had excited her against Æneas. +Andromache in captivity was happier than these Roman brides. For though +she was a slave, yet, after she had become the wife of Pyrrhus, no +more Trojans fell by his hand; but the Romans slew in battle the very +fathers of the brides they fondled. Andromache, the victor's captive, +could only mourn, not fear, the death of her people. The Sabine women, +related to men still combatants, feared the death of their fathers +when their husbands went out to battle, and mourned their death as +they returned, while neither their grief nor their fear could be +freely expressed. For the victories of their husbands, involving the +destruction of fellow-townsmen, relatives, brothers, fathers, caused +either pious agony or cruel exultation. Moreover, as the fortune of +war is capricious, some of them lost their husbands by the sword of +their parents, while others lost husband and father together in mutual +destruction. For the Romans by no means escaped with impunity, but they +were driven back within their walls, and defended themselves behind +closed gates; and when the gates were opened by guile, and the enemy +admitted into the town, the Forum itself was the field of a hateful +and fierce engagement of fathers-in-law and sons-in-law. The ravishers +were indeed quite defeated, and, flying on all sides to their houses, +sullied with new shame their original shameful and lamentable triumph. +It was at this juncture that Romulus, hoping no more from the valour +of his citizens, prayed Jupiter that they might stand their ground; +and from this occasion the god gained the name of Stator. But not even +thus would the mischief have been finished, had not the ravished women +themselves flashed out with dishevelled hair, and cast themselves +before their parents, and thus disarmed their just rage, not with +the arms of victory, but with the supplications of filial affection. +Then Romulus, who could not brook his own brother as a colleague, was +compelled to accept Titus Tatius, king of the Sabines, as his partner +on the throne. But how long would he who misliked the fellowship of his +own twin-brother endure a stranger? So, Tatius being slain, Romulus +remained sole king, that he might be the greater god. See what rights +of marriage these were that fomented unnatural wars. These were the +Roman leagues of kindred, relationship, alliance, religion. This was +the life of the city so abundantly protected by the gods. You see how +many severe things might be said on this theme; but our purpose carries +us past them, and requires our discourse for other matters. + + + 14. _Of the wickedness of the war waged by the Romans against + the Albans, and of the victories won by the lust of power._ + +But what happened after Numa's reign, and under the other kings, +when the Albans were provoked into war, with sad results not to +themselves alone, but also to the Romans? The long peace of Numa had +become tedious; and with what endless slaughter and detriment of both +states did the Roman and Alban armies bring it to an end! For Alba, +which had been founded by Ascanius, son of Æneas, and which was more +properly the mother of Rome than Troy herself, was provoked to battle +by Tullus Hostilius, king of Rome, and in the conflict both inflicted +and received such damage, that at length both parties wearied of the +struggle. It was then devised that the war should be decided by the +combat of three twin-brothers from each army: from the Romans the +three Horatii stood forward, from the Albans the three Curiatii. Two +of the Horatii were overcome and disposed of by the Curiatii; but +by the remaining Horatius the three Curiatii were slain. Thus Rome +remained victorious, but with such a sacrifice that only one survivor +returned to his home. Whose was the loss on both sides? Whose the +grief, but of the offspring of Æneas, the descendants of Ascanius, +the progeny of Venus, the grandsons of Jupiter? For this, too, was +a "worse than civil" war, in which the belligerent states were +mother and daughter. And to this combat of the three twin-brothers +there was added another atrocious and horrible catastrophe. For +as the two nations had formerly been friendly (being related and +neighbours), the sister of the Horatii had been betrothed to one of +the Curiatii; and she, when she saw her brother wearing the spoils of +her betrothed, burst into tears, and was slain by her own brother in +his anger. To me, this one girl seems to have been more humane than +the whole Roman people. I cannot think her to blame for lamenting +the man to whom already she had plighted her troth, or, as perhaps +she was doing, for grieving that her brother should have slain him +to whom he had promised his sister. For why do we praise the grief +of Æneas (in Virgil[137]) over the enemy cut down even by his own +hand? Why did Marcellus shed tears over the city of Syracuse, when he +recollected, just before he destroyed, its magnificence and meridian +glory, and thought upon the common lot of all things? I demand, in +the name of humanity, that if men are praised for tears shed over +enemies conquered by themselves, a weak girl should not be counted +criminal for bewailing her lover slaughtered by the hand of her +brother. While, then, that maiden was weeping for the death of her +betrothed inflicted by her brother's hand, Rome was rejoicing that +such devastation had been wrought on her mother state, and that she +had purchased a victory with such an expenditure of the common blood +of herself and the Albans. + +Why allege to me the mere names and words of "glory" and "victory?" +Tear off the disguise of wild delusion, and look at the naked deeds: +weigh them naked, judge them naked. Let the charge be brought against +Alba, as Troy was charged with adultery. There is no such charge, +none like it found: the war was kindled only in order that there + + "Might sound in languid ears the cry + Of Tullus and of victory."[138] + +This vice of restless ambition was the sole motive to that social and +parricidal war,--a vice which Sallust brands in passing; for when +he has spoken with brief but hearty commendation of those primitive +times in which life was spent without covetousness, and every one +was sufficiently satisfied with what he had, he goes on: "But after +Cyrus in Asia, and the Lacedemonians and Athenians in Greece, began +to subdue cities and nations, and to account the lust of sovereignty +a sufficient ground for war, and to reckon that the greatest glory +consisted in the greatest empire;"[139] and so on, as I need not +now quote. This lust of sovereignty disturbs and consumes the human +race with frightful ills. By this lust Rome was overcome when she +triumphed over Alba, and praising her own crime, called it glory. +For, as our Scriptures say, "the wicked boasteth of his heart's +desire, and blesseth the covetous, whom the Lord abhorreth."[140] +Away, then, with these deceitful masks, these deluding whitewashes, +that things may be truthfully seen and scrutinized. Let no man tell +me that this and the other was a "great" man, because he fought +and conquered so and so. Gladiators fight and conquer, and this +barbarism has its meed of praise; but I think it were better to take +the consequences of any sloth, than to seek the glory won by such +arms. And if two gladiators entered the arena to fight, one being +father, the other his son, who would endure such a spectacle? who +would not be revolted by it? How, then, could that be a glorious war +which a daughter-state waged against its mother? Or did it constitute +a difference, that the battlefield was not an arena, and that the +wide plains were filled with the carcases not of two gladiators, but +of many of the flower of two nations; and that those contests were +viewed not by the amphitheatre, but by the whole world, and furnished +a profane spectacle both to those alive at the time, and to their +posterity, so long as the fame of it is handed down? + +Yet those gods, guardians of the Roman empire, and, as it were, +theatric spectators of such contests as these, were not satisfied until +the sister of the Horatii was added by her brother's sword as a third +victim from the Roman side, so that Rome herself, though she won the +day, should have as many deaths to mourn. Afterwards, as a fruit of the +victory, Alba was destroyed, though it was there the Trojan gods had +formed a third asylum after Ilium had been sacked by the Greeks, and +after they had left Lavinium, where Æneas had founded a kingdom in a +land of banishment. But probably Alba was destroyed because from it too +the gods had migrated, in their usual fashion, as Virgil says: + + "Gone from each fane, each sacred shrine, + Are those who made this realm divine."[141] + +Gone, indeed, and from now their third asylum, that Rome might +seem all the wiser in committing herself to them after they had +deserted three other cities. Alba, whose king Amulius had banished +his brother, displeased them; Rome, whose king Romulus had slain his +brother, pleased them. But before Alba was destroyed, its population, +they say, was amalgamated with the inhabitants of Rome, so that +the two cities were one. Well, admitting it was so, yet the fact +remains that the city of Ascanius, the third retreat of the Trojan +gods, was destroyed by the daughter-city. Besides, to effect this +pitiful conglomerate of the war's leavings, much blood was spilt on +both sides. And how shall I speak in detail of the same wars, so +often renewed in subsequent reigns, though they seemed to have been +finished by great victories; and of wars that time after time were +brought to an end by great slaughters, and which yet time after time +were renewed by the posterity of those who had made peace and struck +treaties? Of this calamitous history we have no small proof, in the +fact that no subsequent king closed the gates of war; and therefore, +with all their tutelar gods, no one of them reigned in peace. + + + 15. _What manner of life and death the Roman kings had._ + +And what was the end of the kings themselves? Of Romulus, a flattering +legend tells us that he was assumed into heaven. But certain Roman +historians relate that he was torn in pieces by the senate for his +ferocity, and that a man, Julius Proculus, was suborned to give out +that Romulus had appeared to him, and through him commanded the Roman +people to worship him as a god; and that in this way the people, who +were beginning to resent the action of the senate, were quieted and +pacified. For an eclipse of the sun had also happened; and this was +attributed to the divine power of Romulus by the ignorant multitude, +who did not know that it was brought about by the fixed laws of the +sun's course: though this grief of the sun might rather have been +considered proof that Romulus had been slain, and that the crime +was indicated by this deprivation of the sun's light; as, in truth, +was the case when the Lord was crucified through the cruelty and +impiety of the Jews. For it is sufficiently demonstrated that this +latter obscuration of the sun did not occur by the natural laws of +the heavenly bodies, because it was then the Jewish passover, which +is held only at full moon, whereas natural eclipses of the sun happen +only at the last quarter of the moon. Cicero, too, shows plainly enough +that the apotheosis of Romulus was imaginary rather than real, when, +even while he is praising him in one of Scipio's remarks in the _De +Republica_, he says: "Such a reputation had he acquired, that when he +suddenly disappeared during an eclipse of the sun, he was supposed to +have been assumed into the number of the gods, which could be supposed +of no mortal who had not the highest reputation for virtue."[142] By +these words, "he suddenly disappeared," we are to understand that he +was mysteriously made away with by the violence either of the tempest +or of a murderous assault. For their other writers speak not only of an +eclipse, but of a sudden storm also, which certainly either afforded +opportunity for the crime, or itself made an end of Romulus. And of +Tullus Hostilius, who was the third king of Rome, and who was himself +destroyed by lightning, Cicero in the same book says, that "he was +not supposed to have been deified by this death, possibly because the +Romans were unwilling to vulgarize the promotion they were assured or +persuaded of in the case of Romulus, lest they should bring it into +contempt by gratuitously assigning it to all and sundry." In one of his +invectives,[143] too, he says, in round terms, "The founder of this +city, Romulus, we have raised to immortality and divinity by kindly +celebrating his services;" implying that his deification was not real, +but reputed, and called so by courtesy on account of his virtues. In +the dialogue _Hortensius_, too, while speaking of the regular eclipses +of the sun, he says that they "produce the same darkness as covered the +death of Romulus, which happened during an eclipse of the sun." Here +you see he does not at all shrink from speaking of his "death," for +Cicero was more of a reasoner than an eulogist. + +The other kings of Rome, too, with the exception of Numa Pompilius and +Ancus Marcius, who died natural deaths, what horrible ends they had! +Tullus Hostilius, the conqueror and destroyer of Alba, was, as I said, +himself and all his house consumed by lightning. Priscus Tarquinius was +slain by his predecessor's sons. Servius Tullius was foully murdered by +his son-in-law Tarquinius Superbus, who succeeded him on the throne. +Nor did so flagrant a parricide committed against Rome's best king +drive from their altars and shrines those gods who were said to have +been moved by Paris' adultery to treat poor Troy in this style, and +abandon it to the fire and sword of the Greeks. Nay, the very Tarquin +who had murdered, was allowed to succeed his father-in-law. And this +infamous parricide, during the reign he had secured by murder, was +allowed to triumph in many victorious wars, and to build the Capitol +from their spoils; the gods meanwhile not departing, but abiding, and +abetting, and suffering their king Jupiter to preside and reign over +them in that very splendid Capitol, the work of a parricide. For he did +not build the Capitol in the days of his innocence, and then suffer +banishment for subsequent crimes; but to that reign during which he +built the Capitol, he won his way by unnatural crime. And when he was +afterwards banished by the Romans, and forbidden the city, it was not +for his own but his son's wickedness in the affair of Lucretia,--a +crime perpetrated not only without his cognizance, but in his absence. +For at that time he was besieging Ardea, and fighting Rome's battles; +and we cannot say what he would have done had he been aware of his +son's crime. Notwithstanding, though his opinion was neither inquired +into nor ascertained, the people stripped him of royalty; and when he +returned to Rome with his army, it was admitted, but he was excluded, +abandoned by his troops, and the gates shut in his face. And yet, after +he had appealed to the neighbouring states, and tormented the Romans +with calamitous but unsuccessful wars, and when he was deserted by the +ally on whom he most depended, despairing of regaining the kingdom, he +lived a retired and quiet life for fourteen years, as it is reported, +in Tusculum, a Roman town; where he grew old in his wife's company, +and at last terminated his days in a much more desirable fashion than +his father-in-law, who had perished by the hand of his son-in-law; +his own daughter abetting, if report be true. And this Tarquin the +Romans called, not the Cruel, nor the Infamous, but the Proud; their +own pride perhaps resenting his tyrannical airs. So little did they +make of his murdering their best king, his own father-in-law, that +they elected him their own king. I wonder if it was not even more +criminal in them to reward so bountifully so great a criminal. And yet +there was no word of the gods abandoning the altars; unless, perhaps, +some one will say in defence of the gods, that they remained at Rome +for the purpose of punishing the Romans, rather than of aiding and +profiting them, seducing them by empty victories, and wearing them out +by severe wars. Such was the life of the Romans under the kings during +the much-praised epoch of the state which extends to the expulsion of +Tarquinius Superbus in the 243d year, during which all those victories, +which were bought with so much blood and such disasters, hardly pushed +Rome's dominion twenty miles from the city; a territory which would by +no means bear comparison with that of any petty Gætulian state. + + + 16. _Of the first Roman consuls, the one of whom drove the other + from the country, and shortly after perished at Rome by the + hand of a wounded enemy, and so ended a career of unnatural + murders._ + +To this epoch let us add also that of which Sallust says, that it was +ordered with justice and moderation, while the fear of Tarquin and +of a war with Etruria was impending. For so long as the Etrurians +aided the efforts of Tarquin to regain the throne, Rome was convulsed +with distressing war. And therefore he says that the state was +ordered with justice and moderation, through the pressure of fear, +not through the influence of equity. And in this very brief period, +how calamitous a year was that in which consuls were first created, +when the kingly power was abolished! They did not fulfil their term +of office. For Junius Brutus deprived his colleague Lucius Tarquinius +Collatinus, and banished him from the city; and shortly after he +himself fell in battle, at once slaying and slain, having formerly +put to death his own sons and his brothers-in-law, because he had +discovered that they were conspiring to restore Tarquin. It is this +deed that Virgil shudders to record, even while he seems to praise +it; for when he says, + + "And call his own rebellious seed + For menaced liberty to bleed," + +he immediately exclaims, + + "Unhappy father! howsoe'er + The deed be judged by after days;" + +that is to say, let posterity judge the deed as they please, let them +praise and extol the father who slew his sons, he is unhappy. And +then he adds, as if to console so unhappy a man: + + "His country's love shall all o'erbear, + And unextinguished thirst of praise."[144] + +In the tragic end of Brutus, who slew his own sons, and though he +slew his enemy, Tarquin's son, yet could not survive him, but was +survived by Tarquin the elder, does not the innocence of his colleague +Collatinus seem to be vindicated, who, though a good citizen, suffered +the same punishment as Tarquin himself, when that tyrant was banished? +For Brutus himself is said to have been a relative[145] of Tarquin. +But Collatinus had the misfortune to bear not only the blood, but the +name of Tarquin. To change his name, then, not his country, would have +been his fit penalty: to abridge his name by this word, and be called +simply L. Collatinus. But he was not compelled to lose what he could +lose without detriment, but was stripped of the honour of the first +consulship, and was banished from the land he loved. Is this, then, the +glory of Brutus--this injustice, alike detestable and profitless to +the republic? Was it to this he was driven by "his country's love, and +unextinguished thirst of praise?" + +When Tarquin the tyrant was expelled, L. Tarquinius Collatinus, +the husband of Lucretia, was created consul along with Brutus. How +justly the people acted, in looking more to the character than the +name of a citizen! How unjustly Brutus acted, in depriving of honour +and country his colleague in that new office, whom he might have +deprived of his name, if it were so offensive to him! Such were the +ills, such the disasters, which fell out when the government was +"ordered with justice and moderation." Lucretius, too, who succeeded +Brutus, was carried off by disease before the end of that same year. +So P. Valerius, who succeeded Collatinus, and M. Horatius, who +filled the vacancy occasioned by the death of Lucretius, completed +that disastrous and funereal year, which had five consuls. Such was +the year in which the Roman republic inaugurated the new honour and +office of the consulship. + + + 17. _Of the disasters which vexed the Roman republic after the + inauguration of the consulship, and of the non-intervention of + the gods of Rome._ + +After this, when their fears were gradually diminished,--not because +the wars ceased, but because they were not so furious,--that period in +which things were "ordered with justice and moderation" drew to an end, +and there followed that state of matters which Sallust thus briefly +sketches: "Then began the patricians to oppress the people as slaves, +to condemn them to death or scourging, as the kings had done, to drive +them from their holdings, and to tyrannize over those who had no +property to lose. The people, overwhelmed by these oppressive measures, +and most of all by usury, and obliged to contribute both money and +personal service to the constant wars, at length took arms and seceded +to Mount Aventine and Mount Sacer, and thus secured for themselves +tribunes and protective laws. But it was only the second Punic war that +put an end on both sides to discord and strife."[146] But why should I +spend time in writing such things, or make others spend it in reading +them? Let the terse summary of Sallust suffice to intimate the misery +of the republic through all that long period till the second Punic +war,--how it was distracted from without by unceasing wars, and torn +with civil broils and dissensions. So that those victories they boast +were not the substantial joys of the happy, but the empty comforts of +wretched men, and seductive incitements to turbulent men to concoct +disasters upon disasters. And let not the good and prudent Romans be +angry at our saying this; and indeed we need neither deprecate nor +denounce their anger, for we know they will harbour none. For we speak +no more severely than their own authors, and much less elaborately and +strikingly; yet they diligently read these authors, and compel their +children to learn them. But they who are angry, what would they do to +me were I to say what Sallust says? "Frequent mobs, seditions, and at +last civil wars, became common, while a few leading men on whom the +masses were dependent, affected supreme power under the seemly pretence +of seeking the good of senate and people; citizens were judged good +or bad, without reference to their loyalty to the republic (for all +were equally corrupt); but the wealthy and dangerously powerful were +esteemed good citizens, because they maintained the existing state of +things." Now, if those historians judged that an honourable freedom of +speech required that they should not be silent regarding the blemishes +of their own state, which they have in many places loudly applauded in +their ignorance of that other and true city in which citizenship is an +everlasting dignity; what does it become us to do, whose liberty ought +to be so much greater, as our hope in God is better and more assured, +when they impute to our Christ the calamities of this age, in order +that men of the less instructed and weaker sort may be alienated from +that city in which alone eternal and blessed life can be enjoyed? Nor +do we utter against their gods anything more horrible than their own +authors do, whom they read and circulate. For, indeed, all that we have +said we have derived from them, and there is much more to say of a +worse kind which we are unable to say. + +Where, then, were those gods who are supposed to be justly worshipped +for the slender and delusive prosperity of this world, when the +Romans, who were seduced to their service by lying wiles, were +harassed by such calamities? Where were they when Valerius the consul +was killed while defending the Capitol, that had been fired by +exiles and slaves? He was himself better able to defend the temple +of Jupiter, than that crowd of divinities with their most high and +mighty king, whose temple he came to the rescue of, were able to +defend him. Where were they when the city, worn out with unceasing +seditions, was waiting in some kind of calm for the return of the +ambassadors who had been sent to Athens to borrow laws, and was +desolated by dreadful famine and pestilence? Where were they when the +people, again distressed with famine, created for the first time a +prefect of the market; and when Spurius Melius, who, as the famine +increased, distributed corn to the famishing masses, was accused +of aspiring to royalty, and at the instance of this same prefect, +and on the authority of the superannuated dictator L. Quintius, was +put to death by Quintus Servilius, master of the horse,--an event +which occasioned a serious and dangerous riot? Where were they +when that very severe pestilence visited Rome, on account of which +the people, after long and wearisome and useless supplications of +the helpless gods, conceived the idea of celebrating Lectisternia, +which had never been done before; that is to say, they set couches +in honour of the gods, which accounts for the name of this sacred +rite, or rather sacrilege?[147] Where were they when, during ten +successive years of reverses, the Roman army suffered frequent and +great losses among the Veians, and would have been destroyed but +for the succour of Furius Camillus, who was afterwards banished by +an ungrateful country? Where were they when the Gauls took, sacked, +burned, and desolated Rome? Where were they when that memorable +pestilence wrought such destruction, in which Furius Camillus too +perished, who first defended the ungrateful republic from the Veians, +and afterwards saved it from the Gauls? Nay, during this plague they +introduced a new pestilence of scenic entertainments, which spread +its more fatal contagion, not to the bodies, but the morals of the +Romans? Where were they when another frightful pestilence visited +the city--I mean the poisonings imputed to an incredible number of +noble Roman matrons, whose characters were infected with a disease +more fatal than any plague? Or when both consuls at the head of the +army were beset by the Samnites in the Caudine Forks, and forced to +strike a shameful treaty, 600 Roman knights being kept as hostages; +while the troops, having laid down their arms, and being stripped of +everything, were made to pass under the yoke with one garment each? +Or when, in the midst of a serious pestilence, lightning struck the +Roman camp and killed many? Or when Rome was driven, by the violence +of another intolerable plague, to send to Epidaurus for Æsculapius +as a god of medicine; since the frequent adulteries of Jupiter in +his youth had not perhaps left this king of all who so long reigned +in the Capitol, any leisure for the study of medicine? Or when, at +one time, the Lucanians, Brutians, Samnites, Tuscans, and Senonian +Gauls conspired against Rome, and first slew her ambassadors, then +overthrew an army under the prætor, putting to the sword 13,000 +men, besides the commander and seven tribunes? Or when the people, +after the serious and long-continued disturbances at Rome, at last +plundered the city and withdrew to Janiculus; a danger so grave, +that Hortensius was created dictator,--an office which they had +recourse to only in extreme emergencies; and he, having brought back +the people, died while yet he retained his office,--an event without +precedent in the case of any dictator, and which was a shame to those +gods who had now Æsculapius among them? + +At that time, indeed, so many wars were everywhere engaged in, that +through scarcity of soldiers they enrolled for military service the +_proletarii_, who received this name, because, being too poor to +equip for military service, they had leisure to beget offspring.[148] +Pyrrhus, king of Greece, and at that time of wide-spread renown, was +invited by the Tarentines to enlist himself against Rome. It was to +him that Apollo, when consulted regarding the issue of his enterprise, +uttered with some pleasantry so ambiguous an oracle, that whichever +alternative happened, the god himself should be counted divine. For he +so worded the oracle,[149] that whether Pyrrhus was conquered by the +Romans, or the Romans by Pyrrhus, the soothsaying god would securely +await the issue. And then what frightful massacres of both armies +ensued! Yet Pyrrhus remained conqueror, and would have been able now +to proclaim Apollo a true diviner, as he understood the oracle, had +not the Romans been the conquerors in the next engagement. And while +such disastrous wars were being waged, a terrible disease broke out +among the women. For the pregnant women died before delivery. And +Æsculapius, I fancy, excused himself in this matter on the ground that +he professed to be arch-physician, not midwife. Cattle, too, similarly +perished; so that it was believed that the whole race of animals was +destined to become extinct. Then what shall I say of that memorable +winter in which the weather was so incredibly severe, that in the +Forum frightfully deep snow lay for forty days together, and the Tiber +was frozen? Had such things happened in our time, what accusations we +should have heard from our enemies! And that other great pestilence, +which raged so long and carried off so many; what shall I say of it? +Spite of all the drugs of Æsculapius, it only grew worse in its second +year, till at last recourse was had to the Sibylline books,--a kind of +oracle which, as Cicero says in his _De Divinatione_, owes significance +to its interpreters, who make doubtful conjectures as they can or as +they wish. In this instance, the cause of the plague was said to be +that so many temples had been used as private residences. And thus +Æsculapius for the present escaped the charge of either ignominious +negligence or want of skill. But why were so many allowed to occupy +sacred tenements without interference, unless because supplication had +long been addressed in vain to such a crowd of gods, and so by degrees +the sacred places were deserted of worshippers, and being thus vacant, +could without offence be put at least to some human uses? And the +temples, which were at that time laboriously recognised and restored +that the plague might be stayed, fell afterwards into disuse, and were +again devoted to the same human uses. Had they not thus lapsed into +obscurity, it could not have been pointed to as proof of Varro's great +erudition, that in his work on sacred places he cites so many that were +unknown. Meanwhile, the restoration of the temples procured no cure of +the plague, but only a fine excuse for the gods. + + + 18. _The disasters suffered by the Romans in the Punic wars, which + were not mitigated by the protection of the gods._ + +In the Punic wars, again, when victory hung so long in the balance +between the two kingdoms, when two powerful nations were straining +every nerve and using all their resources against one another, how +many smaller kingdoms were crushed, how many large and flourishing +cities were demolished, how many states were overwhelmed and ruined, +how many districts and lands far and near were desolated! How often +were the victors on either side vanquished! What multitudes of +men, both of those actually in arms and of others, were destroyed! +What huge navies, too, were crippled in engagements, or were sunk +by every kind of marine disaster! Were we to attempt to recount +or mention these calamities, we should become writers of history. +At that period Rome was mightily perturbed, and resorted to vain +and ludicrous expedients. On the authority of the Sibylline books, +the secular games were re-appointed, which had been inaugurated a +century before, but had faded into oblivion in happier times. The +games consecrated to the infernal gods were also renewed by the +pontiffs; for they, too, had sunk into disuse in the better times. +And no wonder; for when they were renewed, the great abundance of +dying men made all hell rejoice at its riches, and give itself up to +sport: for certainly the ferocious wars, and disastrous quarrels, and +bloody victories--now on one side, and now on the other--though most +calamitous to men, afforded great sport and a rich banquet to the +devils. But in the first Punic war there was no more disastrous event +than the Roman defeat in which Regulus was taken. We made mention of +him in the two former books as an incontestably great man, who had +before conquered and subdued the Carthaginians, and who would have +put an end to the first Punic war, had not an inordinate appetite for +praise and glory prompted him to impose on the worn-out Carthaginians +harder conditions than they could bear. If the unlooked-for captivity +and unseemly bondage of this man, his fidelity to his oath, and his +surpassingly cruel death, do not bring a blush to the face of the +gods, it is true that they are brazen and bloodless. + +Nor were there wanting at that time very heavy disasters within the +city itself. For the Tiber was extraordinarily flooded, and destroyed +almost all the lower parts of the city; some buildings being carried +away by the violence of the torrent, while others were soaked to +rottenness by the water that stood round them even after the flood +was gone. This visitation was followed by a fire which was still +more destructive, for it consumed some of the loftier buildings +round the Forum, and spared not even its own proper temple, that of +Vesta, in which virgins chosen for this honour, or rather for this +punishment, had been employed in conferring, as it were, everlasting +life on fire, by ceaselessly feeding it with fresh fuel. But at the +time we speak of, the fire in the temple was not content with being +kept alive: it raged. And when the virgins, scared by its vehemence, +were unable to save those fatal images which had already brought +destruction on three cities[150] in which they had been received, +Metellus the priest, forgetful of his own safety, rushed in and +rescued the sacred things, though he was half roasted in doing so. +For either the fire did not recognise even him, or else the goddess +of fire was there,--a goddess who would not have fled from the fire +supposing she had been there. But here you see how a man could be of +greater service to Vesta than she could be to him. Now if these gods +could not avert the fire from themselves, what help against flames or +flood could they bring to the state of which they were the reputed +guardians? Facts have shown that they were useless. These objections +of ours would be idle if our adversaries maintained that their idols +are consecrated rather as symbols of things eternal, than to secure +the blessings of time; and that thus, though the symbols, like all +material and visible things, might perish, no damage thereby resulted +to the things for the sake of which they had been consecrated, +while, as for the images themselves, they could be renewed again +for the same purposes they had formerly served. But with lamentable +blindness, they suppose that, through the intervention of perishable +gods, the earthly well-being and temporal prosperity of the state can +be preserved from perishing. And so, when they are reminded that even +when the gods remained among them this well-being and prosperity were +blighted, they blush to change the opinion they are unable to defend. + + + 19. _Of the calamity of the second Punic war, which consumed the + strength of both parties._ + +As to the second Punic war, it were tedious to recount the disasters +it brought on both the nations engaged in so protracted and shifting +a war, that (by the acknowledgment even of those writers who have +made it their object not so much to narrate the wars as to eulogize +the dominion of Rome) the people who remained victorious were less +like conquerors than conquered. For, when Hannibal poured out of +Spain over the Pyrenees, and overran Gaul, and burst through the +Alps, and during his whole course gathered strength by plundering and +subduing as he went, and inundated Italy like a torrent, how bloody +were the wars, and how continuous the engagements, that were fought! +How often were the Romans vanquished! How many towns went over to +the enemy, and how many were taken and subdued! What fearful battles +there were, and how often did the defeat of the Romans shed lustre +on the arms of Hannibal! And what shall I say of the wonderfully +crushing defeat at Cannæ, where even Hannibal, cruel as he was, was +yet sated with the blood of his bitterest enemies, and gave orders +that they be spared? From this field of battle he sent to Carthage +three bushels of gold rings, signifying that so much of the rank +of Rome had that day fallen, that it was easier to give an idea of +it by measure than by numbers; and that the frightful slaughter of +the common rank and file whose bodies lay undistinguished by the +ring, and who were numerous in proportion to their meanness, was +rather to be conjectured than accurately reported. In fact, such +was the scarcity of soldiers after this, that the Romans impressed +their criminals on the promise of impunity, and their slaves by +the bribe of liberty, and out of these infamous classes did not so +much recruit as create an army. But these slaves, or, to give them +all their titles, these freedmen who were enlisted to do battle for +the republic of Rome, lacked arms. And so they took arms from the +temples, as if the Romans were saying to their gods: Lay down those +arms you have held so long in vain, if by chance our slaves may be +able to use to purpose what you, our gods, have been impotent to +use. At that time, too, the public treasury was too low to pay the +soldiers, and private resources were used for public purposes; and +so generously did individuals contribute of their property, that, +saving the gold ring and bulla which each wore, the pitiful mark +of his rank, no senator, and much less any of the other orders and +tribes, reserved any gold for his own use. But if in our day they +were reduced to this poverty, who would be able to endure their +reproaches, barely endurable as they are now, when more money is +spent on actors for the sake of a superfluous gratification, than was +then disbursed to the legions? + + + 20. _Of the destruction of the Saguntines, who received no help + from the Roman gods, though perishing on account of their + fidelity to Rome._ + +But among all the disasters of the second Punic war, there occurred +none more lamentable, or calculated to excite deeper complaint, than +the fate of the Saguntines. This city of Spain, eminently friendly +to Rome, was destroyed by its fidelity to the Roman people. For when +Hannibal had broken treaty with the Romans, he sought occasion for +provoking them to war, and accordingly made a fierce assault upon +Saguntum. When this was reported at Rome, ambassadors were sent to +Hannibal, urging him to raise the siege; and when this remonstrance +was neglected, they proceeded to Carthage, lodged complaint against +the breaking of the treaty, and returned to Rome without accomplishing +their object. Meanwhile the siege went on; and in the eighth or ninth +month, this opulent but ill-fated city, dear as it was to its own +state and to Rome, was taken, and subjected to treatment which one +cannot read, much less narrate, without horror. And yet, because it +bears directly on the matter in hand, I will briefly touch upon it. +First, then, famine wasted the Saguntines, so that even human corpses +were eaten by some: so at least it is recorded. Subsequently, when +thoroughly worn out, that they might at least escape the ignominy +of falling into the hands of Hannibal, they publicly erected a huge +funeral pile, and cast themselves into its flames, while at the same +time they slew their children and themselves with the sword. Could +these gods, these debauchees and gourmands, whose mouths water for +fat sacrifices, and whose lips utter lying divinations,--could they +not do anything in a case like this? Could they not interfere for the +preservation of a city closely allied to the Roman people, or prevent +it perishing for its fidelity to that alliance of which they themselves +had been the mediators? Saguntum, faithfully keeping the treaty it had +entered into before these gods, and to which it had firmly bound itself +by an oath, was besieged, taken, and destroyed by a perjured person. +If afterwards, when Hannibal was close to the walls of Rome, it was +the gods who terrified him with lightning and tempest, and drove him +to a distance, why, I ask, did they not thus interfere before? For I +make bold to say, that this demonstration with the tempest would have +been more honourably made in defence of the allies of Rome--who were in +danger on account of their reluctance to break faith with the Romans, +and had no resources of their own--than in defence of the Romans +themselves, who were fighting in their own cause, and had abundant +resources to oppose Hannibal. If, then, they had been the guardians of +Roman prosperity and glory, they would have preserved that glory from +the stain of this Saguntine disaster; and how silly it is to believe +that Rome was preserved from destruction at the hands of Hannibal by +the guardian care of those gods who were unable to rescue the city of +Saguntum from perishing through its fidelity to the alliance of Rome. +If the population of Saguntum had been Christian, and had suffered as +it did for the Christian faith (though, of course, Christians would +not have used fire and sword against their own persons), they would +have suffered with that hope which springs from faith in Christ--the +hope not of a brief temporal reward, but of unending and eternal bliss. +What, then, will the advocates and apologists of these gods say in +their defence, when charged with the blood of these Saguntines; for +they are professedly worshipped and invoked for this very purpose of +securing prosperity in this fleeting and transitory life? Can anything +be said but what was alleged in the case of Regulus' death? For +though there is a difference between the two cases, the one being an +individual, the other a whole community, yet the cause of destruction +was in both cases the keeping of their plighted troth. For it was this +which made Regulus willing to return to his enemies, and this which +made the Saguntines unwilling to revolt to their enemies. Does, then, +the keeping of faith provoke the gods to anger? Or is it possible +that not only individuals, but even entire communities, perish while +the gods are propitious to them? Let our adversaries choose which +alternative they will. If, on the one hand, those gods are enraged +at the keeping of faith, let them enlist perjured persons as their +worshippers. If, on the other hand, men and states can suffer great and +terrible calamities, and at last perish while favoured by the gods, +then does their worship not produce happiness as its fruit. Let those, +therefore, who suppose that they have fallen into distress because +their religious worship has been abolished, lay aside their anger; for +it were quite possible that did the gods not only remain with them, but +regard them with favour, they might yet be left to mourn an unhappy +lot, or might, even like Regulus and the Saguntines, be horribly +tormented, and at last perish miserably. + + + 21. _Of the ingratitude of Rome to Scipio, its deliverer, and of + its manners during the period which Sallust describes as the best._ + +Omitting many things, that I may not exceed the limits of the work +I have proposed to myself, I come to the epoch between the second +and last Punic wars, during which, according to Sallust, the Romans +lived with the greatest virtue and concord. Now, in this period of +virtue and harmony, the great Scipio, the liberator of Rome and +Italy, who had with surprising ability brought to a close the second +Punic war--that horrible, destructive, dangerous contest--who had +defeated Hannibal and subdued Carthage, and whose whole life is +said to have been dedicated to the gods, and cherished in their +temples,--this Scipio, after such a triumph, was obliged to yield to +the accusations of his enemies, and to leave his country, which his +valour had saved and liberated, to spend the remainder of his days in +the town of Liternum, so indifferent to a recall from exile, that he +is said to have given orders that not even his remains should lie in +his ungrateful country. It was at that time also that the proconsul +Cn. Manlius, after subduing the Galatians, introduced into Rome the +luxury of Asia, more destructive than all hostile armies. It was then +that iron bedsteads and expensive carpets were first used; then, too, +that female singers were admitted at banquets, and other licentious +abominations were introduced. But at present I meant to speak, not +of the evils men voluntarily practise, but of those they suffer in +spite of themselves. So that the case of Scipio, who succumbed to +his enemies, and died in exile from the country he had rescued, was +mentioned by me as being pertinent to the present discussion; for +this was the reward he received from those Roman gods whose temples +he saved from Hannibal, and who are worshipped only for the sake of +securing temporal happiness. But since Sallust, as we have seen, +declares that the manners of Rome were never better than at that +time, I therefore judged it right to mention the Asiatic luxury then +introduced, that it might be seen that what he says is true, only +when that period is compared with the others, during which the morals +were certainly worse, and the factions more violent. For at that +time--I mean between the second and third Punic war--that notorious +Lex Voconia was passed, which prohibited a man from making a woman, +even an only daughter, his heir; than which law I am at a loss to +conceive what could be more unjust. It is true that in the interval +between these two Punic wars the misery of Rome was somewhat less. +Abroad, indeed, their forces were consumed by wars, yet also consoled +by victories; while at home there were not such disturbances as at +other times. But when the last Punic war had terminated in the utter +destruction of Rome's rival, which quickly succumbed to the other +Scipio, who thus earned for himself the surname of Africanus, then +the Roman republic was overwhelmed with such a host of ills, which +sprang from the corrupt manners induced by prosperity and security, +that the sudden overthrow of Carthage is seen to have injured +Rome more seriously than her long-continued hostility. During the +whole subsequent period down to the time of Cæsar Augustus, who +seems to have entirely deprived the Romans of liberty,--a liberty, +indeed, which in their own judgment was no longer glorious, but +full of broils and dangers, and which now was quite enervated and +languishing,--and who submitted all things again to the will of a +monarch, and infused as it were a new life into the sickly old age of +the republic, and inaugurated a fresh _régime_;--during this whole +period, I say, many military disasters were sustained on a variety +of occasions, all of which I here pass by. There was specially the +treaty of Numantia, blotted as it was with extreme disgrace; for the +sacred chickens, they say, flew out of the coop, and thus augured +disaster to Mancinus the consul; just as if, during all these years +in which that little city of Numantia had withstood the besieging +army of Rome, and had become a terror to the republic, the other +generals had all marched against it under unfavourable auspices. + + + 22. _Of the edict of Mithridates, commanding that all Roman + citizens found in Asia should be slain._ + +These things, I say, I pass in silence; but I can by no means be +silent regarding the order given by Mithridates, king of Asia, that +on one day all Roman citizens residing anywhere in Asia (where great +numbers of them were following their private business) should be put +to death: and this order was executed. How miserable a spectacle +was then presented, when each man was suddenly and treacherously +murdered wherever he happened to be, in the field or on the road, in +the town, in his own home, or in the street, in market or temple, in +bed or at table! Think of the groans of the dying, the tears of the +spectators, and even of the executioners themselves. For how cruel a +necessity was it that compelled the hosts of these victims, not only +to see these abominable butcheries in their own houses, but even to +perpetrate them: to change their countenance suddenly from the bland +kindliness of friendship, and in the midst of peace set about the +business of war; and, shall I say, give and receive wounds, the slain +being pierced in body, the slayer in spirit! Had all these murdered +persons, then, despised auguries? Had they neither public nor +household gods to consult when they left their homes and set out on +that fatal journey? If they had not, our adversaries have no reason +to complain of these Christian times in this particular, since long +ago the Romans despised auguries as idle. If, on the other hand, they +did consult omens, let them tell us what good they got thereby, even +when such things were not prohibited, but authorized, by human, if +not by divine law. + + + 23. _Of the internal disasters which vexed the Roman republic, and + followed a portentous madness which seized all the domestic + animals._ + +But let us now mention, as succinctly as possible, those disasters +which were still more vexing, because nearer home; I mean those +discords which are erroneously called civil, since they destroy civil +interests. The seditions had now become urban wars, in which blood +was freely shed, and in which parties raged against one another, +not with wrangling and verbal contention, but with physical force +and arms. What a sea of Roman blood was shed, what desolations and +devastations were occasioned in Italy by wars social, wars servile, +wars civil! Before the Latins began the social war against Rome, all +the animals used in the service of man--dogs, horses, asses, oxen, +and all the rest that are subject to man--suddenly grew wild, and +forgot their domesticated tameness, forsook their stalls and wandered +at large, and could not be closely approached either by strangers or +their own masters without danger. If this was a portent, how serious +a calamity must have been portended by a plague which, whether +portent or no, was in itself a serious calamity! Had it happened in +our day, the heathen would have been more rabid against us than their +animals were against them. + + + 24. _Of the civil dissension occasioned by the sedition of + the Gracchi._ + +The civil wars originated in the seditions which the Gracchi excited +regarding the agrarian laws; for they were minded to divide among the +people the lands which were wrongfully possessed by the nobility. +But to reform an abuse of so long standing was an enterprise full +of peril, or rather, as the event proved, of destruction. For what +disasters accompanied the death of the elder Gracchus! what slaughter +ensued when, shortly after, the younger brother met the same fate! For +noble and ignoble were indiscriminately massacred; and this not by +legal authority and procedure, but by mobs and armed rioters. After +the death of the younger Gracchus, the consul Lucius Opimius, who had +given battle to him within the city, and had defeated and put to the +sword both himself and his confederates, and had massacred many of the +citizens, instituted a judicial examination of others, and is reported +to have put to death as many as 3000 men. From this it may be gathered +how many fell in the riotous encounters, when the result even of a +judicial investigation was so bloody. The assassin of Gracchus himself +sold his head to the consul for its weight in gold, such being the +previous agreement. In this massacre, too, Marcus Fulvius, a man of +consular rank, with all his children, was put to death. + + + 25. _Of the temple of Concord, which was erected by a decree of + the senate on the scene of these seditions and massacres._ + +A pretty decree of the senate it was, truly, by which the temple of +Concord was built on the spot where that disastrous rising had taken +place, and where so many citizens of every rank had fallen.[151] I +suppose it was that the monument of the Gracchi's punishment might +strike the eye and affect the memory of the pleaders. But what was +this but to deride the gods, by building a temple to that goddess who, +had she been in the city, would not have suffered herself to be torn +by such dissensions? Or was it that Concord was chargeable with that +bloodshed because she had deserted the minds of the citizens, and was +therefore incarcerated in that temple? For if they had any regard to +consistency, why did they not rather erect on that site a temple of +Discord? Or is there a reason for Concord being a goddess while Discord +is none? Does the distinction of Labeo hold here, who would have made +the one a good, the other an evil deity?--a distinction which seems to +have been suggested to him by the mere fact of his observing at Rome +a temple to Fever as well as one to Health. But, on the same ground, +Discord as well as Concord ought to be deified. A hazardous venture the +Romans made in provoking so wicked a goddess, and in forgetting that +the destruction of Troy had been occasioned by her taking offence. For, +being indignant that she was not invited with the other gods [to the +nuptials of Peleus and Thetis], she created dissension among the three +goddesses by sending in the golden apple, which occasioned strife in +heaven, victory to Venus, the rape of Helen, and the destruction of +Troy. Wherefore, if she was perhaps offended that the Romans had not +thought her worthy of a temple among the other gods in their city, and +therefore disturbed the state with such tumults, to how much fiercer +passion would she be roused when she saw the temple of her adversary +erected on the scene of that massacre, or, in other words, on the scene +of her own handiwork! Those wise and learned men are enraged at our +laughing at these follies; and yet, being worshippers of good and bad +divinities alike, they cannot escape this dilemma about Concord and +Discord: either they have neglected the worship of these goddesses, and +preferred Fever and War, to whom there are shrines erected of great +antiquity, or they have worshipped them, and after all Concord has +abandoned them, and Discord has tempestuously hurled them into civil +wars. + + + 26. _Of the various kinds of wars which followed the building of + the temple of Concord._ + +But they supposed that, in erecting the temple of Concord within the +view of the orators, as a memorial of the punishment and death of +the Gracchi, they were raising an effectual obstacle to sedition. +How much effect it had, is indicated by the still more deplorable +wars that followed. For after this the orators endeavoured not to +avoid the example of the Gracchi, but to surpass their projects; as +did Lucius Saturninus, a tribune of the people, and Caius Servilius +the prætor, and some time after Marcus Drusus, all of whom stirred +seditions which first of all occasioned bloodshed, and then the +social wars by which Italy was grievously injured, and reduced to a +piteously desolate and wasted condition. Then followed the servile +war and the civil wars; and in them what battles were fought, and +what blood was shed, so that almost all the peoples of Italy, which +formed the main strength of the Roman empire, were conquered as +if they were barbarians! Then even historians themselves find it +difficult to explain how the servile war was begun by a very few, +certainly less than seventy gladiators, what numbers of fierce +and cruel men attached themselves to these, how many of the Roman +generals this band defeated, and how it laid waste many districts +and cities. And that was not the only servile war: the province of +Macedonia, and subsequently Sicily and the sea-coast, were also +depopulated by bands of slaves. And who can adequately describe +either the horrible atrocities which the pirates first committed, or +the wars they afterwards maintained against Rome? + + + 27. _Of the civil war between Marius and Sylla._ + +But when Marius, stained with the blood of his fellow-citizens, whom +the rage of party had sacrificed, was in his turn vanquished and +driven from the city, it had scarcely time to breathe freely, when, +to use the words of Cicero, "Cinna and Marius together returned and +took possession of it. Then, indeed, the foremost men in the state +were put to death, its lights quenched. Sylla afterwards avenged +this cruel victory; but we need not say with what loss of life, and +with what ruin to the republic."[152] For of this vengeance, which +was more destructive than if the crimes which it punished had been +committed with impunity, Lucan says: "The cure was excessive, and too +closely resembled the disease. The guilty perished, but when none but +the guilty survived: and then private hatred and anger, unbridled +by law, were allowed free indulgence."[153] In that war between +Marius and Sylla, besides those who fell in the field of battle, the +city, too, was filled with corpses in its streets, squares, markets, +theatres, and temples; so that it is not easy to reckon whether the +victors slew more before or after victory, that they might be, or +because they were, victors. As soon as Marius triumphed, and returned +from exile, besides the butcheries everywhere perpetrated, the head +of the consul Octavius was exposed on the rostrum; Cæsar and Fimbria +were assassinated in their own houses; the two Crassi, father and +son, were murdered in one another's sight; Bebius and Numitorius were +disembowelled by being dragged with hooks; Catulus escaped the hands +of his enemies by drinking poison; Merula, the flamen of Jupiter, cut +his veins and made a libation of his own blood to his god. Moreover, +every one whose salutation Marius did not answer by giving his hand, +was at once cut down before his face. + + + 28. _Of the victory of Sylla, the avenger of the cruelties of + Marius._ + +Then followed the victory of Sylla, the so-called avenger of the +cruelties of Marius. But not only was his victory purchased with +great bloodshed; but when hostilities were finished, hostility +survived, and the subsequent peace was bloody as the war. To the +former and still recent massacres of the elder Marius, the younger +Marius and Carbo, who belonged to the same party, added greater +atrocities. For when Sylla approached, and they despaired not only +of victory, but of life itself, they made a promiscuous massacre +of friends and foes. And, not satisfied with staining every corner +of Rome with blood, they besieged the senate, and led forth the +senators to death from the curia as from a prison. Mucius Scævola +the pontiff was slain at the altar of Vesta, which he had clung to +because no spot in Rome was more sacred than her temple; and his +blood well-nigh extinguished the fire which was kept alive by the +constant care of the virgins. Then Sylla entered the city victorious, +after having slaughtered in the Villa Publica, not by combat, but by +an order, 7000 men who had surrendered, and were therefore unarmed; +so fierce was the rage of peace itself, even after the rage of war +was extinct. Moreover, throughout the whole city every partisan of +Sylla slew whom he pleased, so that the number of deaths went beyond +computation, till it was suggested to Sylla that he should allow some +to survive, that the victors might not be destitute of subjects. Then +this furious and promiscuous licence to murder was checked, and much +relief was expressed at the publication of the prescription list, +containing though it did the death-warrant of two thousand men of +the highest ranks, the senatorial and equestrian. The large number +was indeed saddening, but it was consolatory that a limit was fixed; +nor was the grief at the numbers slain so great as the joy that the +rest were secure. But this very security, hard-hearted as it was, +could not but bemoan the exquisite torture applied to some of those +who had been doomed to die. For one was torn to pieces by the unarmed +hands of the executioners; men treating a living man more savagely +than wild beasts are used to tear an abandoned corpse. Another had +his eyes dug out, and his limbs cut away bit by bit, and was forced +to live a long while, or rather to die a long while, in such torture. +Some celebrated cities were put up to auction, like farms; and one +was collectively condemned to slaughter, just as an individual +criminal would be condemned to death. These things were done in +peace when the war was over, not that victory might be more speedily +obtained, but that, after being obtained, it might not be thought +lightly of. Peace vied with war in cruelty, and surpassed it: for +while war overthrew armed hosts, peace slew the defenceless. War gave +liberty to him who was attacked, to strike if he could; peace granted +to the survivors not life, but an unresisting death. + + + 29. _A comparison of the disasters which Rome experienced during + the Gothic and Gallic invasions, with those occasioned by the + authors of the civil wars._ + +What fury of foreign nations, what barbarian ferocity, can compare +with this victory of citizens over citizens? Which was more +disastrous, more hideous, more bitter to Rome: the recent Gothic and +the old Gallic invasion, or the cruelty displayed by Marius and Sylla +and their partisans against men who were members of the same body as +themselves? The Gauls, indeed, massacred all the senators they found +in any part of the city except the Capitol, which alone was defended; +but they at least sold life to those who were in the Capitol, though +they might have starved them out if they could not have stormed +it. The Goths, again, spared so many senators, that it is the more +surprising that they killed any. But Sylla, while Marius was still +living, established himself as conqueror in the Capitol, which the +Gauls had not violated, and thence issued his death-warrants; and +when Marius had escaped by flight, though destined to return more +fierce and bloodthirsty than ever, Sylla issued from the Capitol +even decrees of the senate for the slaughter and confiscation of +the property of many citizens. Then, when Sylla left, what did the +Marian faction hold sacred or spare, when they gave no quarter even +to Mucius, a citizen, a senator, a pontiff, and though clasping +in piteous embrace the very altar in which, they say, reside the +destinies of Rome? And that final proscription list of Sylla's, not +to mention countless other massacres, despatched more senators than +the Goths could even plunder. + + + 30. _Of the connection of the wars which with great severity and + frequency followed one another before the advent of Christ._ + +With what effrontery, then, with what assurance, with what impudence, +with what folly, or rather insanity, do they refuse to impute these +disasters to their own gods, and impute the present to our Christ! +These bloody civil wars, more distressing, by the avowal of their own +historians, than any foreign wars, and which were pronounced to be +not merely calamitous, but absolutely ruinous to the republic, began +long before the coming of Christ, and gave birth to one another; so +that a concatenation of unjustifiable causes led from the wars of +Marius and Sylla to those of Sertorius and Catiline, of whom the +one was proscribed, the other brought up by Sylla; from this to the +war of Lepidus and Catulus, of whom the one wished to rescind, the +other to defend the acts of Sylla; from this to the war of Pompey +and Cæsar, of whom Pompey had been a partisan of Sylla, whose power +he equalled or even surpassed, while Cæsar condemned Pompey's power +because it was not his own, and yet exceeded it when Pompey was +defeated and slain. From him the chain of civil wars extended to the +second Cæsar, afterwards called Augustus, and in whose reign Christ +was born. For even Augustus himself waged many civil wars; and in +these wars many of the foremost men perished, among them that skilful +manipulator of the republic, Cicero. Caius [Julius] Cæsar, when he +had conquered Pompey, though he used his victory with clemency, and +granted to men of the opposite faction both life and honours, was +suspected of aiming at royalty, and was assassinated in the curia by +a party of noble senators, who had conspired to defend the liberty +of the republic. His power was then coveted by Antony, a man of very +different character, polluted and debased by every kind of vice, who +was strenuously resisted by Cicero on the same plea of defending +the liberty of the republic. At this juncture that other Cæsar, +the adopted son of Caius, and afterwards, as I said, known by the +name of Augustus, had made his _début_ as a young man of remarkable +genius. This youthful Cæsar was favoured by Cicero, in order that his +influence might counteract that of Antony; for he hoped that Cæsar +would overthrow and blast the power of Antony, and establish a free +state,--so blind and unaware of the future was he: for that very +young man, whose advancement and influence he was fostering, allowed +Cicero to be killed as the seal of an alliance with Antony, and +subjected to his own rule the very liberty of the republic in defence +of which he had made so many orations. + + + 31. _That it is effrontery to impute the present troubles to Christ + and the prohibition of polytheistic worship, since even when + the gods were worshipped such calamities befell the people._ + +Let those who have no gratitude to Christ for His great benefits, +blame their own gods for these heavy disasters. For certainly +when these occurred the altars of the gods were kept blazing, and +there rose the mingled fragrance of "Sabæan incense and fresh +garlands;"[154] the priests were clothed with honour, the shrines +were maintained in splendour; sacrifices, games, sacred ecstasies, +were common in the temples; while the blood of the citizens was +being so freely shed, not only in remote places, but among the +very altars of the gods. Cicero did not choose to seek sanctuary +in a temple, because Mucius had sought it there in vain. But they +who most unpardonably calumniate this Christian era, are the very +men who either themselves fled for asylum to the places specially +dedicated to Christ, or were led there by the barbarians that they +might be safe. In short, not to recapitulate the many instances I +have cited, and not to add to their number others which it were +tedious to enumerate, this one thing I am persuaded of, and this +every impartial judgment will readily acknowledge, that if the human +race had received Christianity before the Punic wars, and if the +same desolating calamities which these wars brought upon Europe and +Africa had followed the introduction of Christianity, there is no one +of those who now accuse us who would not have attributed them to our +religion. How intolerable would their accusations have been, at least +so far as the Romans are concerned, if the Christian religion had +been received and diffused prior to the invasion of the Gauls, or to +the ruinous floods and fires which desolated Rome, or to those most +calamitous of all events, the civil wars! And those other disasters, +which were of so strange a nature that they were reckoned prodigies, +had they happened since the Christian era, to whom but to the +Christians would they have imputed these as crimes? I do not speak +of those things which were rather surprising than hurtful,--oxen +speaking, unborn infants articulating some words in their mothers' +wombs, serpents flying, hens and women being changed into the other +sex; and other similar prodigies which, whether true or false, are +recorded not in their imaginative, but in their historical works, +and which do not injure, but only astonish men. But when it rained +earth, when it rained chalk, when it rained stones--not hailstones, +but real stones--this certainly was calculated to do serious damage. +We have read in their books that the fires of Etna, pouring down from +the top of the mountain to the neighbouring shore, caused the sea to +boil, so that rocks were burnt up, and the pitch of ships began to +run,--a phenomenon incredibly surprising, but at the same time no +less hurtful. By the same violent heat, they relate that on another +occasion Sicily was filled with cinders, so that the houses of the +city Catina were destroyed and buried under them,--a calamity which +moved the Romans to pity them, and remit their tribute for that +year. One may also read that Africa, which had by that time become a +province of Rome, was visited by a prodigious multitude of locusts, +which, after consuming the fruit and foliage of the trees, were +driven into the sea in one vast and measureless cloud; so that when +they were drowned and cast upon the shore the air was polluted, and +so serious a pestilence produced that in the kingdom of Masinissa +alone they say there perished 800,000 persons, besides a much greater +number in the neighbouring districts. At Utica they assure us that, +of 30,000 soldiers then garrisoning it, there survived only ten. Yet +which of these disasters, suppose they happened now, would not be +attributed to the Christian religion by those who thus thoughtlessly +accuse us, and whom we are compelled to answer? And yet to their own +gods they attribute none of these things, though they worship them +for the sake of escaping lesser calamities of the same kind, and do +not reflect that they who formerly worshipped them were not preserved +from these serious disasters. + +FOOTNOTES: + +[115] Compare Aug. _Epist. ad Deogratias_, 102, 13; and _De Præd. +Sanct._ 19. + +[116] Ch. iv. + +[117] Virg. _Georg._ i. 502, 'Laomedonteæ luimus perjuria Trojæ.' + +[118] _Iliad_, xx. 293 et seqq. + +[119] _Æneid_, v. 810, 811. + +[120] Gratis et ingratis. + +[121] _De Conj. Cat._ vi. + +[122] Helen's husband. + +[123] Venus' husband. + +[124] Suetonius, in his _Life of Julius Cæsar_ (c. 6), relates that, +in pronouncing a funeral oration in praise of his aunt Julia, Cæsar +claimed for the Julian gens to which his family belonged a descent +from Venus, through Iulus, son of Eneas. + +[125] Livy, 83, one of the lost books; and Appian, _in Mithridat_. + +[126] The gates of Janus were not the gates of a temple, but the +gates of a passage called Janus, which was used only for military +purposes; shut therefore in peace, open in war. + +[127] The year of the Consuls T. Manlius and C. Atilius, A. U. C. 519. + +[128] Sall. _Conj. Cat._ ii. + +[129] _Æneid_, viii. 326-7. + +[130] Sall. _Cat. Conj._ vi. + +[131] _Æneid_, xi. 532. + +[132] _Ibid._ x. 464. + +[133] Livy, x. 47. + +[134] Being son of Apollo. + +[135] Virgil, _Æn._ i. 286. + +[136] _Pharsal._ v. 1. + +[137] _Æneid_, x. 821, of Lausus: + + "But when Anchises' son surveyed + The fair, fair face so ghastly made, + He groaned, by tenderness unmanned, + And stretched the sympathizing hand," etc. + +[138] Virgil, _Æneid_, vi. 813. + +[139] Sallust, _Cat. Conj._ ii. + +[140] Ps. x. 3. + +[141] _Æneid_, ii. 351-2. + +[142] Cicero, _De Rep._ ii. 10. + +[143] _Contra Cat._ iii. 2. + +[144] _Æneid_, vi. 820, etc. + +[145] His nephew. + +[146] _Hist._ i. + +[147] Lectisternia, from _lectus_, a couch, and _sterno_, I spread. + +[148] _Proletarius_, from _proles_, offspring. + +[149] The oracle ran: "Dico te, Pyrrhe, vincere posse Romanos." + +[150] Troy, Lavinia, Alba. + +[151] Under the inscription on the temple some person wrote the line, +"Vecordiæ opus ædem facit Concordiæ"--The work of discord makes the +temple of Concord. + +[152] Cicero, _in Catilin._ iii. _sub. fin._ + +[153] Lucan, _Pharsal._ ii. 142-146. + +[154] Virgil, _Æneid_, i. 417. + + + + + BOOK FOURTH.[155] + + ARGUMENT. + + IN THIS BOOK IT IS PROVED THAT THE EXTENT AND LONG DURATION OF THE + ROMAN EMPIRE IS TO BE ASCRIBED, NOT TO JOVE OR THE GODS OF THE + HEATHEN, TO WHOM INDIVIDUALLY SCARCE EVEN SINGLE THINGS AND THE + VERY BASEST FUNCTIONS WERE BELIEVED TO BE ENTRUSTED, BUT TO + THE ONE TRUE GOD, THE AUTHOR OF FELICITY, BY WHOSE POWER AND + JUDGMENT EARTHLY KINGDOMS ARE FOUNDED AND MAINTAINED. + + + 1. _Of the things which have been discussed in the first book._ + +Having begun to speak of the city of God, I have thought it necessary +first of all to reply to its enemies, who, eagerly pursuing earthly +joys, and gaping after transitory things, throw the blame of all the +sorrow they suffer in them--rather through the compassion of God +in admonishing, than His severity in punishing--on the Christian +religion, which is the one salutary and true religion. And since +there is among them also an unlearned rabble, they are stirred up as +by the authority of the learned to hate us more bitterly, thinking +in their inexperience that things which have happened unwontedly +in their days were not wont to happen in other times gone by; and +whereas this opinion of theirs is confirmed even by those who know +that it is false, and yet dissemble their knowledge in order that +they may seem to have just cause for murmuring against us, it was +necessary, from books in which their authors recorded and published +the history of bygone times that it might be known, to demonstrate +that it is far otherwise than they think; and at the same time to +teach that the false gods, whom they openly worshipped, or still +worship in secret, are most unclean spirits, and most malignant and +deceitful demons, even to such a pitch that they take delight in +crimes which, whether real or only fictitious, are yet their own, +which it has been their will to have celebrated in honour of them at +their own festivals; so that human infirmity cannot be called back +from the perpetration of damnable deeds, so long as authority is +furnished for imitating them that seems even divine. These things we +have proved, not from our own conjectures, but partly from recent +memory, because we ourselves have seen such things celebrated, and +to such deities, partly from the writings of those who have left +these things on record to posterity, not as if in reproach, but as +in honour of their own gods. Thus Varro, a most learned man among +them, and of the weightiest authority, when he made separate books +concerning things human and things divine, distributing some among +the human, others among the divine, according to the special dignity +of each, placed the scenic plays not at all among things human, but +among things divine; though, certainly, if only there were good and +honest men in the state, the scenic plays ought not to be allowed +even among things human. And this he did not on his own authority, +but because, being born and educated at Rome, he found them among the +divine things. Now as we briefly stated in the end of the first book +what we intended afterwards to discuss, and as we have disposed of +a part of this in the next two books, we see what our readers will +expect us now to take up. + + + 2. _Of those things which are contained in Books Second and Third._ + +We had promised, then, that we would say something against those who +attribute the calamities of the Roman republic to our religion, and +that we would recount the evils, as many and great as we could remember +or might deem sufficient, which that city, or the provinces belonging +to its empire, had suffered before their sacrifices were prohibited, +all of which would beyond doubt have been attributed to us, if our +religion had either already shone on them, or had thus prohibited +their sacrilegious rites. These things we have, as we think, fully +disposed of in the second and third books, treating in the second of +evils in morals, which alone or chiefly are to be accounted evils; +and in the third, of those which only fools dread to undergo--namely, +those of the body or of outward things--which for the most part the +good also suffer. But those evils by which they themselves become +evil, they take, I do not say patiently, but with pleasure. And how +few evils have I related concerning that one city and its empire! Not +even all down to the time of Cæsar Augustus. What if I had chosen to +recount and enlarge on those evils, not which men have inflicted on +each other, such as the devastations and destructions of war, but which +happen in earthly things, from the elements of the world itself? Of +such evils Apuleius speaks briefly in one passage of that book which +he wrote, _De Mundo_, saying that all earthly things are subject to +change, overthrow, and destruction.[156] For, to use his own words, by +excessive earthquakes the ground has burst asunder, and cities with +their inhabitants have been clean destroyed: by sudden rains whole +regions have been washed away; those also which formerly had been +continents, have been insulated by strange and new-come waves, and +others, by the subsiding of the sea, have been made passable by the +foot of man: by winds and storms cities have been overthrown; fires +have flashed forth from the clouds, by which regions in the East being +burnt up have perished; and on the western coasts the like destructions +have been caused by the bursting forth of waters and floods. So, +formerly, from the lofty craters of Etna, rivers of fire kindled by God +have flowed like a torrent down the steeps. If I had wished to collect +from history wherever I could, these and similar instances, where +should I have finished what happened even in those times before the +name of Christ had put down those of their idols, so vain and hurtful +to true salvation? I promised that I should also point out which of +their customs, and for what cause, the true God, in whose power all +kingdoms are, had deigned to favour to the enlargement of their empire; +and how those whom they think gods can have profited them nothing, but +much rather hurt them by deceiving and beguiling them; so that it seems +to me I must now speak of these things, and chiefly of the increase of +the Roman empire. For I have already said not a little, especially in +the second book, about the many evils introduced into their manners by +the hurtful deceits of the demons whom they worshipped as gods. But +throughout all the three books already completed, where it appeared +suitable, we have set forth how much succour God, through the name of +Christ, to whom the barbarians beyond the custom of war paid so much +honour, has bestowed on the good and bad, according as it is written, +"Who maketh His sun to rise on the good and the evil, and giveth rain +to the just and the unjust."[157] + + + 3. _Whether the great extent of the empire, which has been + acquired only by wars, is to be reckoned among the good things + either of the wise or the happy._ + +Now, therefore, let us see how it is that they dare to ascribe the very +great extent and duration of the Roman empire to those gods whom they +contend that they worship honourably, even by the obsequies of vile +games and the ministry of vile men: although I should like first to +inquire for a little what reason, what prudence, there is in wishing +to glory in the greatness and extent of the empire, when you cannot +point out the happiness of men who are always rolling, with dark fear +and cruel lust, in warlike slaughters and in blood, which, whether +shed in civil or foreign war, is still human blood; so that their +joy may be compared to glass in its fragile splendour, of which one +is horribly afraid lest it should be suddenly broken in pieces. That +this may be more easily discerned, let us not come to nought by being +carried away with empty boasting, or blunt the edge of our attention +by loud-sounding names of things, when we hear of peoples, kingdoms, +provinces. But let us suppose a case of two men; for each individual +man, like one letter in a language, is as it were the element of a city +or kingdom, however far-spreading in its occupation of the earth. Of +these two men let us suppose that one is poor, or rather of middling +circumstances; the other very rich. But the rich man is anxious with +fears, pining with discontent, burning with covetousness, never secure, +always uneasy, panting from the perpetual strife of his enemies, adding +to his patrimony indeed by these miseries to an immense degree, and by +these additions also heaping up most bitter cares. But that other man +of moderate wealth is contented with a small and compact estate, most +dear to his own family, enjoying the sweetest peace with his kindred +neighbours and friends, in piety religious, benignant in mind, healthy +in body, in life frugal, in manners chaste, in conscience secure. I +know not whether any one can be such a fool, that he dare hesitate +which to prefer. As, therefore, in the case of these two men, so in two +families, in two nations, in two kingdoms, this test of tranquillity +holds good; and if we apply it vigilantly and without prejudice, we +shall quite easily see where the mere show of happiness dwells, and +where real felicity. Wherefore if the true God is worshipped, and if He +is served with genuine rites and true virtue, it is advantageous that +good men should long reign both far and wide. Nor is this advantageous +so much to themselves, as to those over whom they reign. For, so far +as concerns themselves, their piety and probity, which are great gifts +of God, suffice to give them true felicity, enabling them to live well +the life that now is, and afterwards to receive that which is eternal. +In this world, therefore, the dominion of good men is profitable, not +so much for themselves as for human affairs. But the dominion of bad +men is hurtful chiefly to themselves who rule, for they destroy their +own souls by greater licence in wickedness; while those who are put +under them in service are not hurt except by their own iniquity. For +to the just all the evils imposed on them by unjust rulers are not the +punishment of crime, but the test of virtue. Therefore the good man, +although he is a slave, is free; but the bad man, even if he reigns, is +a slave, and that not of one man, but, what is far more grievous, of as +many masters as he has vices; of which vices when the divine Scripture +treats, it says, "For of whom any man is overcome, to the same he is +also the bond-slave."[158] + + + 4. _How like kingdoms without justice are to robberies._ + +Justice being taken away, then, what are kingdoms but great +robberies? For what are robberies themselves, but little kingdoms? +The band itself is made up of men; it is ruled by the authority +of a prince, it is knit together by the pact of the confederacy; +the booty is divided by the law agreed on. If, by the admittance +of abandoned men, this evil increases to such a degree that it +holds places, fixes abodes, takes possession of cities, and subdues +peoples, it assumes the more plainly the name of a kingdom, because +the reality is now manifestly conferred on it, not by the removal of +covetousness, but by the addition of impunity. Indeed, that was an +apt and true reply which was given to Alexander the Great by a pirate +who had been seized. For when that king had asked the man what he +meant by keeping hostile possession of the sea, he answered with bold +pride, "What thou meanest by seizing the whole earth; but because I +do it with a petty ship, I am called a robber, whilst thou who dost +it with a great fleet art styled emperor."[159] + + + 5. _Of the runaway gladiators whose power became like that of + royal dignity._ + +I shall not therefore stay to inquire what sort of men Romulus +gathered together, seeing he deliberated much about them,--how, +being assumed out of that life they led into the fellowship of his +city, they might cease to think of the punishment they deserved, +the fear of which had driven them to greater villanies; so that +henceforth they might be made more peaceable members of society. But +this I say, that the Roman empire, which by subduing many nations +had already grown great and an object of universal dread, was itself +greatly alarmed, and only with much difficulty avoided a disastrous +overthrow, because a mere handful of gladiators in Campania, escaping +from the games, had recruited a great army, appointed three generals, +and most widely and cruelly devastated Italy. Let them say what +god aided these men, so that from a small and contemptible band of +robbers they attained to a kingdom, feared even by the Romans, who +had such great forces and fortresses. Or will they deny that they +were divinely aided because they did not last long?[160] As if, +indeed, the life of any man whatever lasted long. In that case, too, +the gods aid no one to reign, since all individuals quickly die; nor +is sovereign power to be reckoned a benefit, because in a little time +in every man, and thus in all of them one by one, it vanishes like +a vapour. For what does it matter to those who worshipped the gods +under Romulus, and are long since dead, that after their death the +Roman empire has grown so great, while they plead their causes before +the powers beneath? Whether those causes are good or bad, it matters +not to the question before us. And this is to be understood of all +those who carry with them the heavy burden of their actions, having +in the few days of their life swiftly and hurriedly passed over the +stage of the imperial office, although the office itself has lasted +through long spaces of time, being filled by a constant succession +of dying men. If, however, even those benefits which last only for +the shortest time are to be ascribed to the aid of the gods, these +gladiators were not a little aided, who broke the bonds of their +servile condition, fled, escaped, raised a great and most powerful +army, obedient to the will and orders of their chiefs and much feared +by the Roman majesty, and remaining unsubdued by several Roman +generals, seized many places, and, having won very many victories, +enjoyed whatever pleasures they wished, and did what their lust +suggested, and, until at last they were conquered, which was done +with the utmost difficulty, lived sublime and dominant. But let us +come to greater matters. + + + 6. _Concerning the covetousness of Ninus, who was the first who + made war on his neighbours, that he might rule more widely._ + +Justinus, who wrote Greek or rather foreign history in Latin, and +briefly, like Trogus Pompeius whom he followed, begins his work +thus: "In the beginning of the affairs of peoples and nations the +government was in the hands of kings, who were raised to the height +of this majesty not by courting the people, but by the knowledge +good men had of their moderation. The people were held bound by no +laws; the decisions of the princes were instead of laws. It was +the custom to guard rather than to extend the boundaries of the +empire; and kingdoms were kept within the bounds of each ruler's +native land. Ninus king of the Assyrians first of all, through new +lust of empire, changed the old and, as it were, ancestral custom +of nations. He first made war on his neighbours, and wholly subdued +as far as to the frontiers of Libya the nations as yet untrained to +resist." And a little after he says: "Ninus established by constant +possession the greatness of the authority he had gained. Having +mastered his nearest neighbours, he went on to others, strengthened +by the accession of forces, and by making each fresh victory the +instrument of that which followed, subdued the nations of the whole +East." Now, with whatever fidelity to fact either he or Trogus may +in general have written--for that they sometimes told lies is shown +by other more trustworthy writers--yet it is agreed among other +authors, that the kingdom of the Assyrians was extended far and wide +by King Ninus. And it lasted so long, that the Roman empire has not +yet attained the same age; for, as those write who have treated of +chronological history, this kingdom endured for twelve hundred and +forty years from the first year in which Ninus began to reign, until +it was transferred to the Medes. But to make war on your neighbours, +and thence to proceed to others, and through mere lust of dominion to +crush and subdue people who do you no harm, what else is this to be +called than great robbery? + + + 7. _Whether earthly kingdoms in their rise and fall have been + either aided or deserted by the help of the gods._ + +If this kingdom was so great and lasting without the aid of the +gods, why is the ample territory and long duration of the Roman +empire to be ascribed to the Roman gods? For whatever is the cause +in it, the same is in the other also. But if they contend that the +prosperity of the other also is to be attributed to the aid of the +gods, I ask of which? For the other nations whom Ninus overcame, did +not then worship other gods. Or if the Assyrians had gods of their +own, who, so to speak, were more skilful workmen in the construction +and preservation of the empire, whether are they dead, since they +themselves have also lost the empire; or, having been defrauded of +their pay, or promised a greater, have they chosen rather to go over +to the Medes, and from them again to the Persians, because Cyrus +invited them, and promised them something still more advantageous? +This nation, indeed, since the time of the kingdom of Alexander +the Macedonian, which was as brief in duration as it was great in +extent, has preserved its own empire, and at this day occupies no +small territories in the East. If this is so, then either the gods +are unfaithful, who desert their own and go over to their enemies, +which Camillus, who was but a man, did not do, when, being victor +and subduer of a most hostile state, although he had felt that +Rome, for whom he had done so much, was ungrateful, yet afterwards, +forgetting the injury and remembering his native land, he freed her +again from the Gauls; or they are not so strong as gods ought to be, +since they can be overcome by human skill or strength. Or if, when +they carry on war among themselves, the gods are not overcome by +men, but some gods who are peculiar to certain cities are perchance +overcome by other gods, it follows that they have quarrels among +themselves which they uphold, each for his own part. Therefore a +city ought not to worship its own gods, but rather others who aid +their own worshippers. Finally, whatever may have been the case as +to this change of sides, or flight, or migration, or failure in +battle on the part of the gods, the name of Christ had not yet been +proclaimed in those parts of the earth when these kingdoms were lost +and transferred through great destructions in war. For if, after more +than twelve hundred years, when the kingdom was taken away from the +Assyrians, the Christian religion had there already preached another +eternal kingdom, and put a stop to the sacrilegious worship of false +gods, what else would the foolish men of that nation have said, but +that the kingdom which had been so long preserved, could be lost for +no other cause than the desertion of their own religions and the +reception of Christianity? In which foolish speech that might have +been uttered, let those we speak of observe their own likeness, and +blush, if there is any sense of shame in them, because they have +uttered similar complaints; although the Roman empire is afflicted +rather than changed,--a thing which has befallen it in other times +also, before the name of Christ was heard, and it has been restored +after such affliction,--a thing which even in these times is not to +be despaired of. For who knows the will of God concerning this matter? + + + 8. _Which of the gods can the Romans suppose presided over the + increase and preservation of their empire, when they have + believed that even the care of single things could scarcely be + committed to single gods?_ + +Next let us ask, if they please, out of so great a crowd of gods +which the Romans worship, whom in especial, or what gods they +believe to have extended and preserved that empire. Now, surely of +this work, which is so excellent and so very full of the highest +dignity, they dare not ascribe any part to the goddess Cloacina;[161] +or to Volupia, who has her appellation from voluptuousness; or to +Libentina, who has her name from lust; or to Vaticanus, who presides +over the screaming of infants; or to Cunina, who rules over their +cradles. But how is it possible to recount in one part of this +book all the names of gods or goddesses, which they could scarcely +comprise in great volumes, distributing among these divinities their +peculiar offices about single things? They have not even thought +that the charge of their lands should be committed to any one god: +but they have entrusted their farms to Rusina; the ridges of the +mountains to Jugatinus; over the downs they have set the goddess +Collatina; over the valleys, Vallonia. Nor could they even find one +Segetia so competent, that they could commend to her care all their +corn crops at once; but so long as their seed-corn was still under +the ground, they would have the goddess Seia set over it; then, +whenever it was above ground and formed straw, they set over it +the goddess Segetia; and when the grain was collected and stored, +they set over it the goddess Tutilina, that it might be kept safe. +Who would not have thought that goddess Segetia sufficient to take +care of the standing corn until it had passed from the first green +blades to the dry ears? Yet she was not enough for men, who loved +a multitude of gods, that the miserable soul, despising the chaste +embrace of the one true God, should be prostituted to a crowd of +demons. Therefore they set Proserpina over the germinating seeds; +over the joints and knots of the stems, the god Nodotus; over +the sheaths enfolding the ears, the goddess Volutina; when the +sheaths opened that the spike might shoot forth, it was ascribed +to the goddess Patelana; when the stems stood all equal with new +ears, because the ancients described this equalizing by the term +_hostire_, it was ascribed to the goddess Hostilina; when the grain +was in flower, it was dedicated to the goddess Flora; when full of +milk, to the god Lacturnus; when maturing, to the goddess Matuta; +when the crop was runcated,--that is, removed from the soil,--to the +goddess Runcina. Nor do I yet recount them all, for I am sick of all +this, though it gives them no shame. Only, I have said these very few +things, in order that it may be understood they dare by no means say +that the Roman empire has been established, increased, and preserved +by their deities, who had all their own functions assigned to them +in such a way, that no general oversight was entrusted to any one of +them. When, therefore, could Segetia take care of the empire, who was +not allowed to take care of the corn and the trees? When could Cunina +take thought about war, whose oversight was not allowed to go beyond +the cradles of the babies? When could Nodotus give help in battle, +who had nothing to do even with the sheath of the ear, but only with +the knots of the joints? Every one sets a porter at the door of his +house, and because he is a man, he is quite sufficient; but these +people have set three gods, Forculus to the doors, Cardea to the +hinge, Limentinus to the threshold.[162] Thus Forculus could not at +the same time take care also of the hinge and the threshold. + + + 9. _Whether the great extent and long duration of the Roman empire + should be ascribed to Jove, whom his worshippers believe to be + the chief god._ + +Therefore omitting, or passing by for a little, that crowd of petty +gods, we ought to inquire into the part performed by the great gods, +whereby Rome has been made so great as to reign so long over so many +nations. Doubtless, therefore, this is the work of Jove. For they +will have it that he is the king of all the gods and goddesses, +as is shown by his sceptre and by the Capitol on the lofty hill. +Concerning that god they publish a saying which, although that of a +poet, is most apt, "All things are full of Jove."[163] Varro believes +that this god is worshipped, although called by another name, even +by those who worship one God alone without any image. But if this +is so, why has he been so badly used at Rome (and indeed by other +nations too), that an image of him should be made?--a thing which +was so displeasing to Varro himself, that although he was overborne +by the perverse custom of so great a city, he had not the least +hesitation in both saying and writing, that those who have appointed +images for the people have both taken away fear and added error. + + + 10. _What opinions those have followed who have set divers gods + over divers parts of the world._ + +Why, also, is Juno united to him as his wife, who is called at once +"sister and yokefellow?"[164] Because, say they, we have Jove in the +ether, Juno in the air; and these two elements are united, the one +being superior, the other inferior. It is not he, then, of whom it is +said, "All things are full of Jove," if Juno also fills some part. +Does each fill either, and are both of this couple in both of these +elements, and in each of them at the same time? Why, then, is the ether +given to Jove, the air to Juno? Besides, these two should have been +enough. Why is it that the sea is assigned to Neptune, the earth to +Pluto? And that these also might not be left without mates, Salacia +is joined to Neptune, Proserpine to Pluto. For they say that, as Juno +possesses the lower part of the heavens,--that is, the air,--so Salacia +possesses the lower part of the sea, and Proserpine the lower part of +the earth. They seek how they may patch up these fables, but they find +no way. For if these things were so, their ancient sages would have +maintained that there are three chief elements of the world, not four, +in order that each of the elements might have a pair of gods. Now, they +have positively affirmed that the ether is one thing, the air another. +But water, whether higher or lower, is surely water. Suppose it ever +so unlike, can it ever be so much so as no longer to be water? And +the lower earth, by whatever divinity it may be distinguished, what +else can it be than earth? Lo, then, since the whole physical world +is complete in these four or three elements, where shall Minerva be? +What should she possess, what should she fill? For she is placed in +the Capitol along with these two, although she is not the offspring of +their marriage. Or if they say that she possesses the higher part of +the ether,--and on that account the poets have feigned that she sprang +from the head of Jove,--why then is she not rather reckoned queen of +the gods, because she is superior to Jove? Is it because it would be +improper to set the daughter before the father? Why, then, is not that +rule of justice observed concerning Jove himself toward Saturn? Is it +because he was conquered? Have they fought then? By no means, say they; +that is an old wife's fable. Lo, we are not to believe fables, and +must hold more worthy opinions concerning the gods! Why, then, do they +not assign to the father of Jove a seat, if not of higher, at least +of equal honour? Because Saturn, say they, is length of time.[165] +Therefore they who worship Saturn worship Time; and it is insinuated +that Jupiter, the king of the gods, was born of Time. For is anything +unworthy said when Jupiter and Juno are said to have been sprung from +Time, if he is the heaven and she is the earth, since both heaven and +earth have been made, and are therefore not eternal? For their learned +and wise men have this also in their books. Nor is that saying taken by +Virgil out of poetic figments, but out of the books of philosophers, + + "Then Ether, the Father Almighty, in copious showers descended + Into his spouse's glad bosom, making it fertile,"[166] + +--that is, into the bosom of Tellus, or the earth. Although here, +also, they will have it that there are some differences, and think +that in the earth herself Terra is one thing, Tellus another, and +Tellumo another. And they have all these as gods, called by their +own names, distinguished by their own offices, and venerated with +their own altars and rites. This same earth also they call the +mother of the gods, so that even the fictions of the poets are more +tolerable, if, according, not to their poetical but sacred books, +Juno is not only the sister and wife, but also the mother of Jove. +The same earth they worship as Ceres, and also as Vesta; while yet +they more frequently affirm that Vesta is nothing else than fire, +pertaining to the hearths, without which the city cannot exist; and +therefore virgins are wont to serve her, because as nothing is born +of a virgin, so nothing is born of fire;--but all this nonsense +ought to be completely abolished and extinguished by Him who is +born of a virgin. For who can bear that, while they ascribe to the +fire so much honour, and, as it were, chastity, they do not blush +sometimes even to call Vesta Venus, so that honoured virginity may +vanish in her handmaidens? For if Vesta is Venus, how can virgins +rightly serve her by abstaining from venery? Are there two Venuses, +the one a virgin, the other not a maid? Or rather, are there three, +one the goddess of virgins, who is also called Vesta, another the +goddess of wives, and another of harlots? To her also the Phenicians +offered a gift by prostituting their daughters before they united +them to husbands.[167] Which of these is the wife of Vulcan? +Certainly not the virgin, since she has a husband. Far be it from +us to say it is the harlot, lest we should seem to wrong the son of +Juno and fellow-worker of Minerva. Therefore it is to be understood +that she belongs to the married people; but we would not wish them +to imitate her in what she did with Mars. "Again," say they, "you +return to fables." What sort of justice is that, to be angry with us +because we say such things of their gods, and not to be angry with +themselves, who in their theatres most willingly behold the crimes of +their gods? And,--a thing incredible, if it were not thoroughly well +proved,--these very theatric representations of the crimes of their +gods have been instituted in honour of these same gods. + + + 11. _Concerning the many gods whom the pagan doctors defend as + being one and the same Jove._ + +Let them therefore assert as many things as ever they please in +physical reasonings and disputations. One while let Jupiter be the +soul of this corporeal world, who fills and moves that whole mass, +constructed and compacted out of four, or as many elements as they +please; another while, let him yield to his sister and brothers their +parts of it: now let him be the ether, that from above he may embrace +Juno, the air spread out beneath; again, let him be the whole heaven +along with the air, and impregnate with fertilizing showers and seeds +the earth, as his wife, and, at the same time, his mother (for this +is not vile in divine beings); and yet again (that it may not be +necessary to run through them all), let him, the one god, of whom +many think it has been said by a most noble poet, + + "For God pervadeth all things, + All lands, and the tracts of the sea, and the depth of the + heavens,"[168]-- + +let it be him who in the ether is Jupiter; in the air, Juno; in the +sea, Neptune; in the lower parts of the sea, Salacia; in the earth, +Pluto; in the lower part of the earth, Proserpine; on the domestic +hearths, Vesta; in the furnace of the workmen, Vulcan; among the +stars, Sol, and Luna, and the Stars; in divination, Apollo; in +merchandise, Mercury; in Janus, the initiator; in Terminus, the +terminator; Saturn, in time; Mars and Bellona, in war; Liber, in +vineyards; Ceres, in corn-fields; Diana, in forests; Minerva, in +learning. Finally, let it be him who is in that crowd, as it were, +of plebeian gods: let him preside under the name of Liber over the +seed of men, and under that of Libera over that of women: let him be +Diespiter, who brings forth the birth to the light of day: let him be +the goddess Mena, whom they set over the menstruation of women: let +him be Lucina, who is invoked by women in childbirth: let him bring +help to those who are being born, by taking them up from the bosom +of the earth, and let him be called Opis: let him open the mouth in +the crying babe, and be called the god Vaticanus: let him lift it +from the earth, and be called the goddess Levana; let him watch over +cradles, and be called the goddess Cunina: let it be no other than he +who is in those goddesses, who sing the fates of the new born, and +are called Carmentes: let him preside over fortuitous events, and be +called Fortuna: in the goddess Rumina, let him milk out the breast +to the little one, because the ancients termed the breast _ruma_: in +the goddess Potina, let him administer drink: in the goddess Educa, +let him supply food: from the terror of infants, let him be styled +Paventia: from the hope which comes, Venilia; from voluptuousness, +Volupia; from action, Agenor: from the stimulants by which man is +spurred on to much action, let him be named the goddess Stimula: +let him be the goddess Strenia, for making strenuous; Numeria, who +teaches to number; Camœna, who teaches to sing: let him be both the +god Consus for granting counsel, and the goddess Sentia for inspiring +sentences: let him be the goddess Juventas, who, after the robe of +boyhood is laid aside, takes charge of the beginning of the youthful +age: let him be Fortuna Barbata, who endues adults with a beard, whom +they have not chosen to honour; so that this divinity, whatever it +may be, should at least be a male god, named either Barbatus, from +_barba_, like Nodotus, from _nodus_; or, certainly, not Fortuna, but +because he has beards, Fortunius: let him, in the god Jugatinus, +yoke couples in marriage; and when the girdle of the virgin wife is +loosed, let him be invoked as the goddess Virginiensis: let him be +Mutunus or Tuternus, who, among the Greeks, is called Priapus. If +they are not ashamed of it, let all these which I have named, and +whatever others I have not named (for I have not thought fit to name +all), let all these gods and goddesses be that one Jupiter, whether, +as some will have it, all these are parts of him, or are his powers, +as those think who are pleased to consider him the soul of the +world, which is the opinion of most of their doctors, and these the +greatest. If these things are so (how evil they may be I do not yet +meanwhile inquire), what would they lose, if they, by a more prudent +abridgment, should worship one god? For what part of him could be +contemned if he himself should be worshipped? But if they are afraid +lest parts of him should be angry at being passed by or neglected, +then it is not the case, as they will have it, that this whole is as +the life of one living being, which contains all the gods together, +as if they were its virtues, or members, or parts; but each part +has its own life separate from the rest, if it is so that one can +be angered, appeased, or stirred up more than another. But if it is +said that all together,--that is, the whole Jove himself,--would be +offended if his parts were not also worshipped singly and minutely, +it is foolishly spoken. Surely none of them could be passed by if +he who singly possesses them all should be worshipped. For, to omit +other things which are innumerable, when they say that all the stars +are parts of Jove, and are all alive, and have rational souls, and +therefore without controversy are gods, can they not see how many +they do not worship, to how many they do not build temples or set up +altars, and to how very few, in fact, of the stars they have thought +of setting them up and offering sacrifice? If, therefore, those are +displeased who are not severally worshipped, do they not fear to live +with only a few appeased, while all heaven is displeased? But if +they worship all the stars because they are part of Jove whom they +worship, by the same compendious method they could supplicate them +all in him alone. For in this way no one would be displeased, since +in him alone all would be supplicated. No one would be contemned, +instead of there being just cause of displeasure given to the +much greater number who are passed by in the worship offered to +some; especially when Priapus, stretched out in vile nakedness, is +preferred to those who shine from their supernal abode. + + + 12. _Concerning the opinion of those who have thought that God is + the soul of the world, and the world is the body of God._ + +Ought not men of intelligence, and indeed men of every kind, to be +stirred up to examine the nature of this opinion? For there is no need +of excellent capacity for this task, that putting away the desire of +contention, they may observe that if God is the soul of the world, and +the world is as a body to Him, who is the soul, He must be one living +being consisting of soul and body, and that this same God is a kind +of womb of nature containing all things in Himself, so that the lives +and souls of all living things are taken, according to the manner of +each one's birth, out of His soul which vivifies that whole mass, and +therefore nothing at all remains which is not a part of God. And if +this is so, who cannot see what impious and irreligious consequences +follow, such as that whatever one may trample, he must trample a part +of God, and in slaying any living creature, a part of God must be +slaughtered? But I am unwilling to utter all that may occur to those +who think of it, yet cannot be spoken without irreverence. + + + 13. _Concerning those who assert that only rational animals are + parts of the one God._ + +But if they contend that only rational animals, such as men, are +parts of God, I do not really see how, if the whole world is God, +they can separate beasts from being parts of Him. But what need +is there of striving about that? Concerning the rational animal +himself,--that is, man,--what more unhappy belief can be entertained +than that a part of God is whipped when a boy is whipped? And who, +unless he is quite mad, could bear the thought that parts of God can +become lascivious, iniquitous, impious, and altogether damnable? In +brief, why is God angry at those who do not worship Him, since these +offenders are parts of Himself? It remains, therefore, that they +must say that all the gods have their own lives; that each one lives +for himself, and none of them is a part of any one; but that all are +to be worshipped,--at least as many as can be known and worshipped; +for they are so many it is impossible that all can be so. And of +all these, I believe that Jupiter, because he presides as king, is +thought by them to have both established and extended the Roman +empire. For if he has not done it, what other god do they believe +could have attempted so great a work, when they must all be occupied +with their own offices and works, nor can one intrude on that of +another? Could the kingdom of men then be propagated and increased by +the king of the gods? + + + 14. _The enlargement of kingdoms is unsuitably ascribed to Jove; + for if, as they will have it, Victoria is a goddess, she alone + would suffice for this business._ + +Here, first of all, I ask, why even the kingdom itself is not some +god? For why should not it also be so, if Victory is a goddess? Or +what need is there of Jove himself in this affair, if Victory favours +and is propitious, and always goes to those whom she wishes to be +victorious? With this goddess favourable and propitious, even if Jove +was idle and did nothing, what nations could remain unsubdued, what +kingdom would not yield? But perhaps it is displeasing to good men to +fight with most wicked unrighteousness, and provoke with voluntary +war neighbours who are peaceable and do no wrong, in order to enlarge +a kingdom? If they feel thus, I entirely approve and praise them. + + + 15. _Whether it is suitable for good men to wish to rule more + widely._ + +Let them ask, then, whether it is quite fitting for good men to +rejoice in extended empire. For the iniquity of those with whom just +wars are carried on favours the growth of a kingdom, which would +certainly have been small if the peace and justice of neighbours had +not by any wrong provoked the carrying on of war against them; and +human affairs being thus more happy, all kingdoms would have been +small, rejoicing in neighbourly concord; and thus there would have +been very many kingdoms of nations in the world, as there are very +many houses of citizens in a city. Therefore, to carry on war and +extend a kingdom over wholly subdued nations seems to bad men to +be felicity, to good men necessity. But because it would be worse +that the injurious should rule over those who are more righteous, +therefore even that is not unsuitably called felicity. But beyond +doubt it is greater felicity to have a good neighbour at peace, than +to conquer a bad one by making war. Your wishes are bad, when you +desire that one whom you hate or fear should be in such a condition +that you can conquer him. If, therefore, by carrying on wars that +were just, not impious or unrighteous, the Romans could have acquired +so great an empire, ought they not to worship as a goddess even +the injustice of foreigners? For we see that this has co-operated +much in extending the empire, by making foreigners so unjust that +they became people with whom just wars might be carried on, and +the empire increased. And why may not injustice, at least that of +foreign nations, also be a goddess, if Fear and Dread, and Ague +have deserved to be Roman gods? By these two, therefore,--that is, +by foreign injustice, and the goddess Victoria, for injustice stirs +up causes of wars, and Victoria brings these same wars to a happy +termination,--the empire has increased, even although Jove has been +idle. For what part could Jove have here, when those things which +might be thought to be his benefits are held to be gods, called +gods, worshipped as gods, and are themselves invoked for their own +parts? He also might have some part here, if he himself might be +called Empire, just as she is called Victory. Or if empire is the +gift of Jove, why may not victory also be held to be his gift? And it +certainly would have been held to be so, had he been recognised and +worshipped, not as a stone in the Capitol, but as the true King of +kings and Lord of lords. + + + 16. _What was the reason why the Romans, in detailing separate gods + for all things and all movements of the mind, chose to have the + temple of Quiet outside the gates._ + +But I wonder very much, that while they assigned to separate gods +single things, and (well nigh) all movements of the mind; that while +they invoked the goddess Agenoria, who should excite to action; the +goddess Stimula, who should stimulate to unusual action; the goddess +Murcia, who should not move men beyond measure, but make them, as +Pomponius says, _murcid_--that is, too slothful and inactive; the +goddess Strenua, who should make them strenuous; and that while they +offered to all these gods and goddesses solemn and public worship, +they should yet have been unwilling to give public acknowledgment +to her whom they name Quies because she makes men quiet, but built +her temple outside the Colline gate. Whether was this a symptom of +an unquiet mind, or rather was it thus intimated that he who should +persevere in worshipping that crowd, not, to be sure, of gods, but +of demons, could not dwell with quiet; to which the true Physician +calls, saying, "Learn of me, for I am meek and lowly in heart, and ye +shall find rest unto your souls?" + + + 17. _Whether, if the highest power belongs to Jove, Victoria also + ought to be worshipped._ + +Or do they say, perhaps, that Jupiter sends the goddess Victoria, +and that she, as it were, acting in obedience to the king of the +gods, comes to those to whom he may have despatched her, and takes +up her quarters on their side? This is truly said, not of Jove, whom +they, according to their own imagination, feign to be king of the +gods, but of Him who is the true eternal King, because he sends, not +Victory, who is no person, but His angel, and causes whom He pleases +to conquer; whose counsel may be hidden, but cannot be unjust. For +if Victory is a goddess, why is not Triumph also a god, and joined +to Victory either as husband, or brother, or son? Indeed, they have +imagined such things concerning the gods, that if the poets had +feigned the like, and they should have been discussed by us, they +would have replied that they were laughable figments of the poets not +to be attributed to true deities. And yet they themselves did not +laugh when they were, not reading in the poets, but worshipping in +the temples such doating follies. Therefore they should entreat Jove +alone for all things, and supplicate him only. For if Victory is a +goddess, and is under him as her king, wherever he might have sent +her, she could not dare to resist and do her own will rather than his. + + + 18. _With what reason they who think Felicity and Fortune + goddesses have distinguished them._ + +What shall we say, besides, of the idea that Felicity also is a +goddess? She has received a temple; she has merited an altar; +suitable rites of worship are paid to her. She alone, then, should be +worshipped. For where she is present, what good thing can be absent? +But what does a man wish, that he thinks Fortune also a goddess +and worships her? Is felicity one thing, fortune another? Fortune, +indeed, may be bad as well as good; but felicity, if it could be +bad, would not be felicity. Certainly we ought to think all the +gods of either sex (if they also have sex) are only good. This says +Plato; this say other philosophers; this say all estimable rulers +of the republic and the nations. How is it, then, that the goddess +Fortune is sometimes good, sometimes bad? Is it perhaps the case +that when she is bad she is not a goddess, but is suddenly changed +into a malignant demon? How many Fortunes are there then? Just as +many as there are men who are fortunate, that is, of good fortune. +But since there must also be very many others who at the very same +time are men of bad fortune, could she, being one and the same +Fortune, be at the same time both bad and good--the one to these, +the other to those? She who is the goddess, is she always good? +Then she herself is felicity. Why, then, are two names given her? +Yet this is tolerable; for it is customary that one thing should be +called by two names. But why different temples, different altars, +different rituals? There is a reason, say they, because Felicity +is she whom the good have by previous merit; but fortune, which is +termed good without any trial of merit, befalls both good and bad +men fortuitously, whence also she is named Fortune. How, therefore, +is she good, who without any discernment comes both to the good and +to the bad? Why is she worshipped, who is thus blind, running at +random on any one whatever, so that for the most part she passes by +her worshippers, and cleaves to those who despise her? Or if her +worshippers profit somewhat, so that they are seen by her and loved, +then she follows merit, and does not come fortuitously. What, then, +becomes of that definition of fortune? What becomes of the opinion +that she has received her very name from fortuitous events? For it +profits one nothing to worship her if she is truly _fortune_. But if +she distinguishes her worshippers, so that she may benefit them, she +is not fortune. Or does Jupiter send her too, whither he pleases? +Then let him alone be worshipped; because Fortune is not able to +resist him when he commands her, and sends her where he pleases. Or, +at least, let the bad worship her, who do not choose to have merit by +which the goddess Felicity might be invited. + + + 19. _Concerning Fortuna Muliebris._[169] + +To this supposed deity, whom they call Fortuna, they ascribe so much, +indeed, that they have a tradition that the image of her, which was +dedicated by the Roman matrons, and called Fortuna Muliebris, has +spoken, and has said, once and again, that the matrons pleased her by +their homage; which, indeed, if it is true, ought not to excite our +wonder. For it is not so difficult for malignant demons to deceive, +and they ought the rather to advert to their wits and wiles, because +it is that goddess who comes by haphazard who has spoken, and not she +who comes to reward merit. For Fortuna was loquacious, and Felicitas +mute; and for what other reason but that men might not care to live +rightly, having made Fortuna their friend, who could make them +fortunate without any good desert? And truly, if Fortuna speaks, she +should at least speak, not with a womanly, but with a manly voice; +lest they themselves who have dedicated the image should think so +great a miracle has been wrought by feminine loquacity. + + + 20. _Concerning Virtue and Faith, which the pagans have honoured + with temples and sacred rites, passing by other good qualities, + which ought likewise to have been worshipped, if deity was + rightly attributed to these._ + +They have made Virtue also a goddess, which, indeed, if it could be +a goddess, had been preferable to many. And now, because it is not +a goddess, but a gift of God, let _it_ be obtained by prayer from +Him, by whom alone it can be given, and the whole crowd of false gods +vanishes. But why is Faith believed to be a goddess, and why does she +herself receive temple and altar? For whoever prudently acknowledges +her makes his own self an abode for her. But how do they know what +faith is, of which it is the prime and greatest function that the +true God may be believed in? But why had not virtue sufficed? Does +it not include faith also? Forasmuch as they have thought proper to +distribute virtue into four divisions--prudence, justice, fortitude, +and temperance--and as each of these divisions has its own virtues, +faith is among the parts of justice, and has the chief place with +as many of us as know what that saying means, "The just shall live +by faith."[170] But if Faith is a goddess, I wonder why these keen +lovers of a multitude of gods have wronged so many other goddesses, +by passing them by, when they could have dedicated temples and altars +to them likewise. Why has temperance not deserved to be a goddess, +when some Roman princes have obtained no small glory on account of +her? Why, in fine, is fortitude not a goddess, who aided Mucius +when he thrust his right hand into the flames; who aided Curtius, +when for the sake of his country he threw himself headlong into the +yawning earth; who aided Decius the sire, and Decius the son, when +they devoted themselves for the army?--though we might question +whether these men had _true_ fortitude, if this concerned our present +discussion. Why have prudence and wisdom merited no place among the +gods? Is it because they are all worshipped under the general name +of Virtue itself? Then they could thus worship the true God also, of +whom all the other gods are thought to be parts. But in that one name +of virtue is comprehended both faith and chastity, which yet have +obtained separate altars in temples of their own. + + + 21. _That although not understanding them to be the gifts of God, + they ought at least to have been content with Virtue and Felicity._ + +These, not verity but vanity has made goddesses. For these are gifts +of the true God, not themselves goddesses. However, where virtue and +felicity are, what else is sought for? What can suffice the man whom +virtue and felicity do not suffice? For surely virtue comprehends +all things we need do, felicity all things we need wish for. If +Jupiter, then, was worshipped in order that he might give these two +things,--because, if extent and duration of empire is something good, +it pertains to this same felicity,--why is it not understood that +they are not goddesses, but the gifts of God? But if they are judged +to be goddesses, then at least that other great crowd of gods should +not be sought after. For, having considered all the offices which +their fancy has distributed among the various gods and goddesses, +let them find out, if they can, anything which could be bestowed by +any god whatever on a man possessing virtue, possessing felicity. +What instruction could be sought either from Mercury or Minerva, when +Virtue already possessed all in herself? Virtue, indeed, is defined +by the ancients as itself the art of living well and rightly. Hence, +because virtue is called in Greek ἀρετὴ, it has been thought the +Latins have derived from it the term _art_. But if Virtue cannot +come except to the clever, what need was there of the god Father +Catius, who should make men cautious, that is, acute, when Felicity +could confer this? Because, to be born clever belongs to felicity. +Whence, although goddess Felicity could not be worshipped by one not +yet born, in order that, being made his friend, she might bestow +this on him, yet she might confer this favour on parents who were +her worshippers, that clever children should be born to them. What +need had women in childbirth to invoke Lucina, when, if Felicity +should be present, they would have, not only a good delivery, but +good children too? What need was there to commend the children to +the goddess Ops when they were being born; to the god Vaticanus in +their birth-cry; to the goddess Cunina when lying cradled; to the +goddess Rumina when sucking; to the god Statilinus when standing; to +the goddess Adeona when coming; to Abeona when going away; to the +goddess Mens that they might have a good mind; to the god Volumnus, +and the goddess Volumna, that they might wish for good things; to +the nuptial gods, that they might make good matches; to the rural +gods, and chiefly to the goddess Fructesca herself, that they might +receive the most abundant fruits; to Mars and Bellona, that they +might carry on war well; to the goddess Victoria, that they might +be victorious; to the god Honor, that they might be honoured; to +the goddess Pecunia, that they might have plenty money; to the god +Aesculanus, and his son Argentinus, that they might have brass and +silver coin? For they set down Aesculanus as the father of Argentinus +for this reason, that brass coin began to be used before silver. +But I wonder Argentinus has not begotten Aurinus, since gold coin +also has followed. Could they have him for a god, they would prefer +Aurinus both to his father Argentinus and his grandfather Aesculanus, +just as they set Jove before Saturn. Therefore, what necessity was +there on account of these gifts, either of soul, or body, or outward +estate, to worship and invoke so great a crowd of gods, all of whom I +have not mentioned, nor have they themselves been able to provide for +all human benefits, minutely and singly methodized, minute and single +gods, when the one goddess Felicity was able, with the greatest ease, +compendiously to bestow the whole of them? nor should any other be +sought after, either for the bestowing of good things, or for the +averting of evil. For why should they invoke the goddess Fessonia for +the weary; for driving away enemies, the goddess Pellonia; for the +sick, as a physician, either Apollo or Æsculapius, or both together +if there should be great danger? Neither should the god Spiniensis be +entreated that he might root out the thorns from the fields; nor the +goddess Rubigo that the mildew might not come,--Felicitas alone being +present and guarding, either no evils would have arisen, or they +would have been quite easily driven away. Finally, since we treat of +these two goddesses, Virtue and Felicity, if felicity is the reward +of virtue, she is not a goddess, but a gift of God. But if she is a +goddess, why may she not be said to confer virtue itself, inasmuch as +it is a great felicity to attain virtue? + + + 22. _Concerning the knowledge of the worship due to the gods, + which Varro glories in having himself conferred on the Romans._ + +What is it, then, that Varro boasts he has bestowed as a very great +benefit on his fellow-citizens, because he not only recounts the gods +who ought to be worshipped by the Romans, but also tells what pertains +to each of them? "Just as it is of no advantage," he says, "to know the +name and appearance of any man who is a physician, and not know that he +is a physician, so," he says, "it is of no advantage to know well that +Æsculapius is a god, if you are not aware that he can bestow the gift +of health, and consequently do not know why you ought to supplicate +him." He also affirms this by another comparison, saying, "No one is +able, not only to live well, but even to live at all, if he does not +know who is a smith, who a baker, who a weaver, from whom he can seek +any utensil, whom he may take for a helper, whom for a leader, whom for +a teacher;" asserting, "that in this way it can be doubtful to no one, +that thus the knowledge of the gods is useful, if one can know what +force, and faculty, or power any god may have in anything. For from +this we may be able," he says, "to know what god we ought to call to, +and invoke for any cause; lest we should do as too many are wont to +do, and desire water from Liber, and wine from Lymphs." Very useful, +forsooth! Who would not give this man thanks if he could show true +things, and if he could teach that the one true God, from whom all good +things are, is to be worshipped by men? + + + 23. _Concerning Felicity, whom the Romans, who venerate many gods, + for a long time did not worship with divine honour, though she + alone would have sufficed instead of all._ + +But how does it happen, if their books and rituals are true, and +Felicity is a goddess, that she herself is not appointed as the +only one to be worshipped, since she could confer all things, and +all at once make men happy? For who wishes anything for any other +reason than that he may become happy? Why was it left to Lucullus +to dedicate a temple to so great a goddess at so late a date, and +after so many Roman rulers? Why did Romulus himself, ambitious as he +was of founding a fortunate city, not erect a temple to this goddess +before all others? Why did he supplicate the other gods for anything, +since he would have lacked nothing had she been with him? For even +he himself would neither have been first a king, then afterwards, +as they think, a god, if this goddess had not been propitious to +him. Why, therefore, did he appoint as gods for the Romans, Janus, +Jove, Mars, Picus, Faunus, Tiberinus, Hercules, and others, if there +were more of them? Why did Titus Tatius add Saturn, Ops, Sun, Moon, +Vulcan, Light, and whatever others he added, among whom was even the +goddess Cloacina, while Felicity was neglected? Why did Numa appoint +so many gods and so many goddesses without this one? Was it perhaps +because he could not see her among so great a crowd? Certainly king +Hostilius would not have introduced the new gods Fear and Dread to +be propitiated, if he could have known or might have worshipped this +goddess. For, in presence of Felicity, Fear and Dread would have +disappeared,--I do not say propitiated, but put to flight. Next, I +ask, how is it that the Roman empire had already immensely increased +before any one worshipped Felicity? Was the empire, therefore, more +great than happy? For how could true felicity be there, where there +was not true piety? For piety is the genuine worship of the true God, +and not the worship of as many demons as there are false gods. Yet +even afterwards, when Felicity had already been taken into the number +of the gods, the great infelicity of the civil wars ensued. Was +Felicity perhaps justly indignant, both because she was invited so +late, and was invited not to honour, but rather to reproach, because +along with her were worshipped Priapus, and Cloacina, and Fear and +Dread, and Ague, and others which were not gods to be worshipped, +but the crimes of the worshippers? Last of all, if it seemed good +to worship so great a goddess along with a most unworthy crowd, why +at least was she not worshipped in a more honourable way than the +rest? For is it not intolerable that Felicity is placed neither among +the gods _Consentes_,[171] whom they allege to be admitted into the +council of Jupiter, nor among the gods whom they term _Select_? Some +temple might be made for her which might be pre-eminent, both in +loftiness of site and dignity of style. Why, indeed, not something +better than is made for Jupiter himself? For who gave the kingdom +even to Jupiter but Felicity? I am supposing that when he reigned +he was happy. Felicity, however, is certainly more valuable than +a kingdom. For no one doubts that a man might easily be found who +may fear to be made a king; but no one is found who is unwilling +to be happy. Therefore, if it is thought they can be consulted by +augury, or in any other way, the gods themselves should be consulted +about this thing, whether they may wish to give place to Felicity. +If, perchance, the place should already be occupied by the temples +and altars of others, where a greater and more lofty temple might +be built to Felicity, even Jupiter himself might give way, so that +Felicity might rather obtain the very pinnacle of the Capitoline +hill. For there is not any one who would resist Felicity, except, +which is impossible, one who might wish to be unhappy. Certainly, if +he should be consulted, Jupiter would in no case do what those three +gods, Mars, Terminus, and Juventas, did, who positively refused to +give place to their superior and king. For, as their books record, +when king Tarquin wished to construct the Capitol, and perceived that +the place which seemed to him to be the most worthy and suitable was +preoccupied by other gods, not daring to do anything contrary to +their pleasure, and believing that they would willingly give place +to a god who was so great, and was their own master, because there +were many of them there when the Capitol was founded, he inquired by +augury whether they chose to give place to Jupiter, and they were +all willing to remove thence except those whom I have named, Mars, +Terminus, and Juventas; and therefore the Capitol was built in such a +way that these three also might be within it, yet with such obscure +signs that even the most learned men could scarcely know this. +Surely, then, Jupiter himself would by no means despise Felicity as +he was himself despised by Terminus, Mars, and Juventas. But even +they themselves who had not given place to Jupiter, would certainly +give place to Felicity, who had made Jupiter king over them. Or if +they should not give place, they would act thus not out of contempt +of her, but because they chose rather to be obscure in the house of +Felicity, than to be eminent without her in their own places. + +Thus the goddess Felicity being established in the largest and +loftiest place, the citizens should learn whence the furtherance +of every good desire should be sought. And so, by the persuasion +of nature herself, the superfluous multitude of other gods being +abandoned, Felicity alone would be worshipped, prayer would be made +to her alone, her temple alone would be frequented by the citizens +who wished to be happy, which no one of them would not wish; and +thus felicity, who was sought for from all the gods, would be sought +for only from her own self. For who wishes to receive from any god +anything else than felicity, or what he supposes to tend to felicity? +Wherefore, if Felicity has it in her power to be with what man she +pleases (and she has it if she is a goddess), what folly is it, after +all, to seek from any other god her whom you can obtain by request +from her own self! Therefore they ought to honour this goddess above +other gods, even by dignity of place. For, as we read in their own +authors, the ancient Romans paid greater honours to I know not what +Summanus, to whom they attributed nocturnal thunderbolts, than to +Jupiter, to whom diurnal thunderbolts were held to pertain. But, +after a famous and conspicuous temple had been built to Jupiter, +owing to the dignity of the building, the multitude resorted to him +in so great numbers, that scarce one can be found who remembers even +to have read the name of Summanus, which now he cannot once hear +named. But if Felicity is not a goddess, because, as is true, it is +a gift of God, that god must be sought who has power to give it, and +that hurtful multitude of false gods must be abandoned which the vain +multitude of foolish men follows after, making gods to itself of +the gifts of God, and offending Himself whose gifts they are by the +stubbornness of a proud will. For he cannot be free from infelicity +who worships Felicity as a goddess, and forsakes God, the giver of +felicity; just as he cannot be free from hunger who licks a painted +loaf of bread, and does not buy it of the man who has a real one. + + + 24. _The reasons by which the pagans attempt to defend their + worshipping among the gods the divine gifts themselves._ + +We may, however, consider their reasons. Is it to be believed, say +they, that our forefathers were besotted even to such a degree as +not to know that these things are divine gifts, and not gods? But as +they knew that such things are granted to no one, except by some god +freely bestowing them, they called the gods whose names they did not +find out by the names of those things which they deemed to be given +by them; sometimes slightly altering the name for that purpose, +as, for example, from war they have named Bellona, not _bellum_; +from cradles, Cunina, not _cunæ_; from standing corn, Segetia, not +_seges_; from apples, Pomona, not _pomum_; from oxen, Bubona, not +_bos_. Sometimes, again, with no alteration of the word, just as the +things themselves are named, so that the goddess who gives money is +called Pecunia, and money is not thought to be itself a goddess: so +of Virtus, who gives virtue; Honor, who gives honour; Concordia, +who gives concord; Victoria, who gives victory. So, they say, when +Felicitas is called a goddess, what is meant is not the thing itself +which is given, but that deity by whom felicity is given. + + + 25. _Concerning the one God only to be worshipped, who, although + His name is unknown, is yet deemed to be the giver of felicity._ + +Having had that reason rendered to us, we shall perhaps much more +easily persuade, as we wish, those whose heart has not become too +much hardened. For if now human infirmity has perceived that felicity +cannot be given except by some god; if this was perceived by those +who worshipped so many gods, at whose head they set Jupiter himself; +if, in their ignorance of the name of Him by whom felicity was given, +they agreed to call Him by the name of that very thing which they +believed He gave;--then it follows that they thought that felicity +could not be given even by Jupiter himself, whom they already +worshipped, but certainly by him whom they thought fit to worship +under the name of Felicity itself. I thoroughly affirm the statement +that they believed felicity to be given by a certain God whom they +knew not: let Him therefore be sought after, let Him be worshipped, +and it is enough. Let the train of innumerable demons be repudiated, +and let this God suffice every man whom his gift suffices. For him, +I say, God the giver of felicity will not be enough to worship, +for whom felicity itself is not enough to receive. But let him for +whom it suffices (and man has nothing more he ought to wish for) +serve the one God, the giver of felicity. This God is not he whom +they call Jupiter. For if they acknowledged him to be the giver of +felicity, they would not seek, under the name of Felicity itself, for +another god or goddess by whom felicity might be given; nor could +they tolerate that Jupiter himself should be worshipped with such +infamous attributes. For he is said to be the debaucher of the wives +of others; he is the shameless lover and ravisher of a beautiful boy. + + + 26. _Of the scenic plays, the celebration of which the gods have + exacted from their worshippers._ + +"But," says Cicero, "Homer invented these things, and transferred +things human to the gods: I would rather transfer things divine to +us."[172] The poet, by ascribing such crimes to the gods, has justly +displeased the grave man. Why, then, are the scenic plays, where +these crimes are habitually spoken of, acted, exhibited, in honour +of the gods, reckoned among things divine by the most learned men? +Cicero should exclaim, not against the inventions of the poets, but +against the customs of the ancients. Would not they have exclaimed in +reply, What have we done? The gods themselves have loudly demanded +that these plays should be exhibited in their honour, have fiercely +exacted them, have menaced destruction unless this was performed, +have avenged its neglect with great severity, and have manifested +pleasure at the reparation of such neglect. Among their virtuous +and wonderful deeds the following is related. It was announced in a +dream to Titus Latinius, a Roman rustic, that he should go to the +senate and tell them to recommence the games of Rome, because on the +first day of their celebration a condemned criminal had been led to +punishment in sight of the people, an incident so sad as to disturb +the gods who were seeking amusement from the games. And when the +peasant who had received this intimation was afraid on the following +day to deliver it to the senate, it was renewed next night in a +severer form: he lost his son, because of his neglect. On the third +night he was warned that a yet graver punishment was impending, if +he should still refuse obedience. When even thus he did not dare to +obey, he fell into a virulent and horrible disease. But then, on the +advice of his friends, he gave information to the magistrates, and +was carried in a litter into the senate, and having, on declaring +his dream, immediately recovered strength, went away on his own +feet whole.[173] The senate, amazed at so great a miracle, decreed +that the games should be renewed at fourfold cost. What sensible +man does not see that men, being put upon by malignant demons, from +whose domination nothing save the grace of God through Jesus Christ +our Lord sets free, have been compelled by force to exhibit to such +gods as these, plays which, if well advised, they should condemn as +shameful? Certain it is that in these plays the poetic crimes of the +gods are celebrated, yet they are plays which were re-established +by decree of the senate, under compulsion of the gods. In these +plays the most shameless actors celebrated Jupiter as the corrupter +of chastity, and thus gave him pleasure. If that was a fiction, he +would have been moved to anger; but if he was delighted with the +representation of his crimes, even although fabulous, then, when he +happened to be worshipped, who but the devil could be served? Is +it so that he could found, extend, and preserve the Roman empire, +who was more vile than any Roman man whatever, to whom such things +were displeasing? Could he give felicity who was so infelicitously +worshipped, and who, unless he should be thus worshipped, was yet +more infelicitously provoked to anger? + + + 27. _Concerning the three kinds of gods about which the pontiff + Scævola has discoursed._ + +It is recorded that the very learned pontiff Scævola[174] had +distinguished about three kinds of gods--one introduced by the poets, +another by the philosophers, another by the statesmen. The first kind +he declares to be trifling, because many unworthy things have been +invented by the poets concerning the gods; the second does not suit +states, because it contains some things that are superfluous, and +some, too, which it would be prejudicial for the people to know. It +is no great matter about the superfluous things, for it is a common +saying of skilful lawyers, "Superfluous things do no harm."[175] +But what are those things which do harm when brought before the +multitude? "These," he says, "that Hercules, Æsculapius, Castor and +Pollux, are not gods; for it is declared by learned men that these +were but men, and yielded to the common lot of mortals." What else? +"That states have not the true images of the gods; because the true +God has neither sex, nor age, nor definite corporeal members." The +pontiff is not willing that the people should know these things; for +he does not think they are false. He thinks it expedient, therefore, +that states should be deceived in matters of religion; which Varro +himself does not hesitate even to say in his books about things +divine. Excellent religion! to which the weak, who requires to be +delivered, may flee for succour; and when he seeks for the truth by +which he may be delivered, it is believed to be expedient for him +that he be deceived. And, truly, in these same books, Scævola is not +silent as to his reason for rejecting the poetic sort of gods,--to +wit, "because they so disfigure the gods that they could not bear +comparison even with good men, when they make one to commit theft, +another adultery; or, again, to say or do something else basely and +foolishly; as that three goddesses contested (with each other) the +prize of beauty, and the two vanquished by Venus destroyed Troy; that +Jupiter turned himself into a bull or swan that he might copulate +with some one; that a goddess married a man, and Saturn devoured his +children; that, in fine, there is nothing that could be imagined, +either of the miraculous or vicious, which may not be found there, +and yet is far removed from the nature of the gods." O chief pontiff +Scævola, take away the plays if thou art able; instruct the people +that they may not offer such honours to the immortal gods, in which, +if they like, they may admire the crimes of the gods, and, so far as +it is possible, may, if they please, imitate them. But if the people +shall have answered thee, You, O pontiff, have brought these things +in among us, then ask the gods themselves at whose instigation you +have ordered these things, that they may not order such things to +be offered to them. For if they are bad, and therefore in no way to +be believed concerning the majority of the gods, the greater is the +wrong done the gods about whom they are feigned with impunity. But +they do not hear thee, they are demons, they teach wicked things, +they rejoice in vile things; not only do they not count it a wrong if +these things are feigned about them, but it is a wrong they are quite +unable to bear if they are not acted at their stated festivals. But +now, if thou wouldst call on Jupiter against them, chiefly for that +reason that more of his crimes are wont to be acted in the scenic +plays, is it not the case that, although you call him god Jupiter, by +whom this whole world is ruled and administered, it is he to whom the +greatest wrong is done by you, because you have thought he ought to +be worshipped along with them, and have styled him their king? + + + 28. _Whether the worship of the gods has been of service to the + Romans in obtaining and extending the empire._ + +Therefore such gods, who are propitiated by such honours, or rather are +impeached by them (for it is a greater crime to delight in having such +things said of them falsely, than even if they could be said truly), +could never by any means have been able to increase and preserve +the Roman empire. For if they could have done it, they would rather +have bestowed so grand a gift on the Greeks, who, in this kind of +divine things,--that is, in scenic plays,--have worshipped them more +honourably and worthily, although they have not exempted themselves +from those slanders of the poets, by whom they saw the gods torn in +pieces, giving them licence to ill-use any man they pleased, and have +not deemed the scenic players themselves to be base, but have held +them worthy even of distinguished honour. But just as the Romans were +able to have gold money, although they did not worship a god Aurinus, +so also they could have silver and brass coin, and yet worship neither +Argentinus nor his father Æsculanus; and so of all the rest, which it +would be irksome for me to detail. It follows, therefore, both that +they could not by any means attain such dominion if the true God was +unwilling; and that if these gods, false and many, were unknown or +contemned, and He alone was known and worshipped with sincere faith +and virtue, they would both have a better kingdom here, whatever might +be its extent, and whether they might have one here or not, would +afterwards receive an eternal kingdom. + + + 29. _Of the falsity of the augury by which the strength and + stability of the Roman empire was considered to be indicated._ + +For what kind of augury is that which they have declared to be most +beautiful, and to which I referred a little ago, that Mars, and +Terminus, and Juventas would not give place even to Jove the king +of the gods? For thus, they say, it was signified that the nation +dedicated to Mars,--that is, the Roman,--should yield to none +the place it once occupied; likewise, that on account of the god +Terminus, no one would be able to disturb the Roman frontiers; and +also, that the Roman youth, because of the goddess Juventas, should +yield to no one. Let them see, therefore, how they can hold him to +be the king of their gods, and the giver of their own kingdom, if +these auguries set him down for an adversary, to whom it would have +been honourable not to yield. However, if these things are true, they +need not be at all afraid. For they are not going to confess that the +gods who would not yield to Jove have yielded to Christ. For, without +altering the boundaries of the empire, Jesus Christ has proved +Himself able to drive them, not only from their temples, but from the +hearts of their worshippers. But, before Christ came in the flesh, +and, indeed, before these things which we have quoted from their +books could have been written, but yet after that auspice was made +under king Tarquin, the Roman army has been divers times scattered or +put to flight, and has shown the falseness of the auspice, which they +derived from the fact that the goddess Juventas had not given place +to Jove; and the nation dedicated to Mars was trodden down in the +city itself by the invading and triumphant Gauls; and the boundaries +of the empire, through the falling away of many cities to Hannibal, +had been hemmed into a narrow space. Thus the beauty of the auspices +is made void, and there has remained only the contumacy against Jove, +not of gods, but of demons. For it is one thing not to have yielded, +and another to have returned whither you have yielded. Besides, even +afterwards, in the oriental regions, the boundaries of the Roman +empire were changed by the will of Hadrian; for he yielded up to the +Persian empire those three noble provinces, Armenia, Mesopotamia, and +Assyria. Thus that god Terminus, who according to these books was the +guardian of the Roman frontiers, and by that most beautiful auspice +had not given place to Jove, would seem to have been more afraid of +Hadrian, a king of men, than of the king of the gods. The aforesaid +provinces having also been taken back again, almost within our own +recollection the frontier fell back, when Julian, given up to the +oracles of their gods, with immoderate daring ordered the victualling +ships to be set on fire. The army being thus left destitute of +provisions, and he himself also being presently killed by the enemy, +and the legions being hard pressed, while dismayed by the loss of +their commander, they were reduced to such extremities that no one +could have escaped, unless by articles of peace the boundaries of +the empire had then been established where they still remain; not, +indeed, with so great a loss as was suffered by the concession of +Hadrian, but still at a considerable sacrifice. It was a vain augury, +then, that the god Terminus did not yield to Jove, since he yielded +to the will of Hadrian, and yielded also to the rashness of Julian, +and the necessity of Jovinian. The more intelligent and grave Romans +have seen these things, but have had little power against the custom +of the state, which was bound to observe the rites of the demons; +because even they themselves, although they perceived that these +things were vain, yet thought that the religious worship which is due +to God should be paid to the nature of things which is established +under the rule and government of the one true God, "serving," as +saith the apostle, "the creature more than the Creator, who is +blessed for evermore."[176] The help of this true God was necessary +to send holy and truly pious men, who would die for the true religion +that they might remove the false from among the living. + + + 30. _What kind of things even their worshippers have owned they + have thought about the gods of the nations._ + +Cicero the augur laughs at auguries, and reproves men for regulating +the purposes of life by the cries of crows and jackdaws.[177] But +it will be said that an academic philosopher, who argues that all +things are uncertain, is unworthy to have any authority in these +matters. In the second book of his _De Natura Deorum_,[178] he +introduces Lucilius Balbus, who, after showing that superstitions +have their origin in physical and philosophical truths, expresses +his indignation at the setting up of images and fabulous notions, +speaking thus: "Do you not therefore see that from true and useful +physical discoveries the reason may be drawn away to fabulous and +imaginary gods? This gives birth to false opinions and turbulent +errors, and superstitions well-nigh old-wifeish. For both the forms +of the gods, and their ages, and clothing, and ornaments, are made +familiar to us; their genealogies, too, their marriages, kinships, +and all things about them, are debased to the likeness of human +weakness. They are even introduced as having perturbed minds; for +we have accounts of the lusts, cares, and angers of the gods. Nor, +indeed, as the fables go, have the gods been without their wars and +battles. And that not only when, as in Homer, some gods on either +side have defended two opposing armies, but they have even carried +on wars on their own account, as with the Titans or with the Giants. +Such things it is quite absurd either to say or to believe: they are +utterly frivolous and groundless." Behold, now, what is confessed by +those who defend the gods of the nations. Afterwards he goes on to +say that some things belong to superstition, but others to religion, +which he thinks good to teach according to the Stoics. "For not only +the philosophers," he says, "but also our forefathers, have made a +distinction between superstition and religion. For those," he says, +"who spent whole days in prayer, and offered sacrifice, that their +children might outlive them, are called superstitious."[179] Who does +not see that he is trying, while he fears the public prejudice, to +praise the religion of the ancients, and that he wishes to disjoin +it from superstition, but cannot find out how to do so? For if +those who prayed and sacrificed all day were called superstitious +by the ancients, were those also called so who instituted (what +he blames) the images of the gods of diverse age and distinct +clothing, and invented the genealogies of gods, their marriages, +and kinships? When, therefore, these things are found fault with +as superstitious, he implicates in that fault the ancients who +instituted and worshipped such images. Nay, he implicates himself, +who, with whatever eloquence he may strive to extricate himself and +be free, was yet under the necessity of venerating these images; +nor dared he so much as whisper in a discourse to the people what +in this disputation he plainly sounds forth. Let us Christians, +therefore, give thanks to the Lord our God,--not to heaven and earth, +as that author argues, but to Him who has made heaven and earth; +because these superstitions, which that Balbus, like a babbler,[180] +scarcely reprehends, He, by the most deep lowliness of Christ, by +the preaching of the apostles, by the faith of the martyrs dying +for the truth and living with the truth, has overthrown, not only +in the hearts of the religious, but even in the temples of the +superstitious, by their own free service. + + + 31. _Concerning the opinions of Varro, who, while reprobating the + popular belief, thought that their worship should be confined + to one god, though he was unable to discover the true God._ + +What says Varro himself, whom we grieve to have found, although not +by his own judgment, placing the scenic plays among things divine? +When in many passages he is exhorting, like a religious man, to the +worship of the gods, does he not in doing so admit that he does not in +his own judgment believe those things which he relates that the Roman +state has instituted; so that he does not hesitate to affirm that if he +were founding a new state, he could enumerate the gods and their names +better by the rule of nature? But being born into a nation already +ancient, he says that he finds himself bound to accept the traditional +names and surnames of the gods, and the histories connected with them, +and that his purpose in investigating and publishing these details is +to incline the people to worship the gods, and not to despise them. By +which words this most acute man sufficiently indicates that he does not +publish all things, because they would not only have been contemptible +to himself, but would have seemed despicable even to the rabble, unless +they had been passed over in silence. I should be thought to conjecture +these things, unless he himself, in another passage, had openly said, +in speaking of religious rites, that many things are true which it +is not only not useful for the common people to know, but that it is +expedient that the people should think otherwise, even though falsely, +and therefore the Greeks have shut up the religious ceremonies and +mysteries in silence, and within walls. In this he no doubt expresses +the policy of the so-called wise men by whom states and peoples are +ruled. Yet by this crafty device the malign demons are wonderfully +delighted, who possess alike the deceivers and the deceived, and from +whose tyranny nothing sets free save the grace of God through Jesus +Christ our Lord. + +The same most acute and learned author also says, that those alone +seem to him to have perceived what God is, who have believed Him to +be the soul of the world, governing it by design and reason.[181] +And by this, it appears, that although he did not attain to the +truth,--for the true God is not a soul, but the maker and author +of the soul,--yet if he could have been free to go against the +prejudices of custom, he could have confessed and counselled others +that the one God ought to be worshipped, who governs the world by +design and reason; so that on this subject only this point would +remain to be debated with him, that he had called Him a soul, and +not rather the creator of the soul. He says, also, that the ancient +Romans, for more than a hundred and seventy years, worshipped the +gods without an image.[182] "And if this custom," he says, "could +have remained till now, the gods would have been more purely +worshipped." In favour of this opinion, he cites as a witness among +others the Jewish nation; nor does he hesitate to conclude that +passage by saying of those who first consecrated images for the +people, that they have both taken away religious fear from their +fellow-citizens, and increased error, wisely thinking that the gods +easily fall into contempt when exhibited under the stolidity of +images. But as he does not say they have transmitted error, but that +they have increased it, he therefore wishes it to be understood that +there was error already when there were no images. Wherefore, when +he says they alone have perceived what God is who have believed Him +to be the governing soul of the world, and thinks that the rites +of religion would have been more purely observed without images, +who fails to see how near he has come to the truth? For if he had +been able to do anything against so inveterate an error, he would +certainly have given it as his opinion both that the one God should +be worshipped, and that He should be worshipped without an image; +and having so nearly discovered the truth, perhaps he might easily +have been put in mind of the mutability of the soul, and might thus +have perceived that the true God is that immutable nature which made +the soul itself. Since these things are so, whatever ridicule such +men have poured in their writings against the plurality of the gods, +they have done so rather as compelled by the secret will of God to +confess them, than as trying to persuade others. If, therefore, any +testimonies are adduced by us from these writings, they are adduced +for the confutation of those who are unwilling to consider from how +great and malignant a power of the demons the singular sacrifice of +the shedding of the most holy blood, and the gift of the imparted +Spirit, can set us free. + + + 32. _In what interest the princes of the nations wished false + religions to continue among the people subject to them._ + +Varro says also, concerning the generations of the gods, that +the people have inclined to the poets rather than to the natural +philosophers; and that therefore their forefathers,--that is, the +ancient Romans,--believed both in the sex and the generations of the +gods, and settled their marriages; which certainly seems to have +been done for no other cause except that it was the business of +such men as were prudent and wise to deceive the people in matters +of religion, and in that very thing not only to worship, but also +to imitate the demons, whose greatest lust is to deceive. For just +as the demons cannot possess any but those whom they have deceived +with guile, so also men in princely office, not indeed being just, +but like demons, have persuaded the people in the name of religion +to receive as true those things which they themselves knew to be +false; in this way, as it were, binding them up more firmly in civil +society, so that they might in like manner possess them as subjects. +But who that was weak and unlearned could escape the deceits of both +the princes of the state and the demons? + + + 33. _That the times of all kings and kingdoms are ordained by the + judgment and power of the true God._ + +Therefore that God, the author and giver of felicity, because He +alone is the true God, Himself gives earthly kingdoms both to +good and bad. Neither does He do this rashly, and, as it were, +fortuitously,--because He is God, not fortune,--but according to the +order of things and times, which is hidden from us, but thoroughly +known to Himself; which same order of times, however, He does not +serve as subject to it, but Himself rules as lord and appoints as +governor. Felicity He gives only to the good. Whether a man be a +subject or a king makes no difference: he may equally either possess +or not possess it. And it shall be full in that life where kings and +subjects exist no longer. And therefore earthly kingdoms are given by +Him both to the good and the bad; lest His worshippers, still under +the conduct of a very weak mind, should covet these gifts from Him as +some great things. And this is the mystery of the Old Testament, in +which the New was hidden, that there even earthly gifts are promised: +those who were spiritual understanding even then, although not yet +openly declaring, both the eternity which was symbolized by these +earthly things, and in what gifts of God true felicity could be found. + + + 34. _Concerning the kingdom of the Jews, which was founded by the + one and true God, and preserved by Him as long as they remained + in the true religion._ + +Therefore, that it might be known that these earthly good things, after +which those pant who cannot imagine better things, remain in the power +of the one God Himself, not of the many false gods whom the Romans +have formerly believed worthy of worship, He multiplied His people in +Egypt from being very few, and delivered them out of it by wonderful +signs. Nor did their women invoke Lucina when their offspring was being +incredibly multiplied; and that nation having increased incredibly, +He Himself delivered, He Himself saved them from the hands of the +Egyptians, who persecuted them, and wished to kill all their infants. +Without the goddess Rumina they sucked; without Cunina they were +cradled; without Educa and Potina they took food and drink; without +all those puerile gods they were educated; without the nuptial gods +they were married; without the worship of Priapus they had conjugal +intercourse; without invocation of Neptune the divided sea opened up +a way for them to pass over, and overwhelmed with its returning waves +their enemies who pursued them. Neither did they consecrate any goddess +Mannia when they received manna from heaven; nor, when the smitten rock +poured forth water to them when they thirsted, did they worship Nymphs +and Lymphs. Without the mad rites of Mars and Bellona they carried +on war; and while, indeed, they did not conquer without victory, yet +they did not hold it to be a goddess, but the gift of their God. +Without Segetia they had harvests; without Bubona, oxen; honey without +Mellona; apples without Pomona: and, in a word, everything for which +the Romans thought they must supplicate so great a crowd of false +gods, they received much more happily from the one true God. And if +they had not sinned against Him with impious curiosity, which seduced +them like magic arts, and drew them to strange gods and idols, and at +last led them to kill Christ, their kingdom would have remained to +them, and would have been, if not more spacious, yet more happy, than +that of Rome. And now that they are dispersed through almost all lands +and nations, it is through the providence of that one true God; that +whereas the images, altars, groves, and temples of the false gods are +everywhere overthrown, and their sacrifices prohibited, it may be shown +from their books how this has been foretold by their prophets so long +before; lest, perhaps, when they should be read in ours, they might +seem to be invented by us. But now, reserving what is to follow for the +following book, we must here set a bound to the prolixity of this one. + +FOOTNOTES: + +[155] In Augustine's letter to Evodius (169), which was written +towards the end of the year 415, he mentions that this fourth book +and the following one were begun and finished during that same year. + +[156] Comp. Bacon's _Essay on the Vicissitudes of Things_. + +[157] Matt. v. 45. + +[158] 2 Pet. ii. 19. + +[159] Nonius Marcell. borrows this anecdote from Cicero, _De Repub._ +iii. + +[160] It was extinguished by Crassus in its third year. + +[161] Cloacina, supposed by Lactantius (_De falsa relig._ i. 20), +Cyprian (_De Idol. vanit._), and Augustine (_infra._, c. 23) to be +the goddess of the "cloaca," or sewage of Rome. Others, however, +suppose it to be equivalent to Cluacina, a title given to Venus, +because the Romans after the end of the Sabine war purified +themselves (_cluere_) in the vicinity of her statue. + +[162] Forculum foribus, Cardeam cardini, Limentinum limini. + +[163] Virgil, _Eclog._ iii. 60. + +[164] Virgil, _Æneid_, i. 47. + +[165] Cicero, _De Nat. Deor._ ii. 25. + +[166] Virgil, _Georg._ ii. 325, 326. + +[167] Eusebius, _De Præp. Evang._ i. 10. + +[168] Virgil, _Georg._ iv. 221, 222. + +[169] The feminine Fortune. + +[170] Hab. ii. 4. + +[171] So called from the consent or harmony of the celestial +movements of these gods. + +[172] _Tusc. Quæst._ i. 26. + +[173] Livy, ii. 36; Cicero, _De Divin._ 26. + +[174] Called by Cicero (_De Oratore_, i. 39) the most eloquent of +lawyers, and the best skilled lawyer among eloquent men. + +[175] Superflua non nocent. + +[176] Rom. i. 25. + +[177] _De Divin._ ii. 37. + +[178] Cic. _De Nat. Deorum_, lib. ii. c. 28. + +[179] Superstition, from _superstes_. Against this etymology of +Cicero, see Lact. _Inst. Div._ iv. 28. + +[180] Balbus, from _balbutiens_, stammering, babbling. + +[181] See Cicero, _De Nat. Deor._ i. 2. + +[182] Plutarch's _Numa_, c. 8. + + + + + BOOK FIFTH.[183] + + ARGUMENT. + + AUGUSTINE FIRST DISCUSSES THE DOCTRINE OF FATE, FOR THE SAKE OF + CONFUTING THOSE WHO ARE DISPOSED TO REFER TO FATE THE POWER AND + INCREASE OF THE ROMAN EMPIRE, WHICH COULD NOT BE ATTRIBUTED + TO FALSE GODS, AS HAS BEEN SHOWN IN THE PRECEDING BOOK. AFTER + THAT, HE PROVES THAT THERE IS NO CONTRADICTION BETWEEN GOD'S + PRESCIENCE AND OUR FREE WILL. HE THEN SPEAKS OF THE MANNERS OF + THE ANCIENT ROMANS, AND SHOWS IN WHAT SENSE IT WAS DUE TO THE + VIRTUE OF THE ROMANS THEMSELVES, AND IN HOW FAR TO THE COUNSEL + OF GOD, THAT HE INCREASED THEIR DOMINION, THOUGH THEY DID NOT + WORSHIP HIM. FINALLY, HE EXPLAINS WHAT IS TO BE ACCOUNTED THE + TRUE HAPPINESS OF THE CHRISTIAN EMPERORS. + + + PREFACE. + +Since, then, it is established that the complete attainment of all we +desire is that which constitutes felicity, which is no goddess, but a +gift of God, and that therefore men can worship no god save Him who +is able to make them happy,--and were Felicity herself a goddess, she +would with reason be the only object of worship,--since, I say, this +is established, let us now go on to consider why God, who is able to +give with all other things those good gifts which can be possessed +by men who are not good, and consequently not happy, has seen fit to +grant such extended and long-continued dominion to the Roman empire; +for that this was not effected by that multitude of false gods which +they worshipped, we have both already adduced, and shall, as occasion +offers, yet adduce considerable proof. + + + 1. _That the cause of the Roman empire, and of all kingdoms, is + neither fortuitous nor consists in the position of the stars._[184] + +The cause, then, of the greatness of the Roman empire is neither +fortuitous nor fatal, according to the judgment or opinion of those +who call those things _fortuitous_ which either have no causes, or +such causes as do not proceed from some intelligible order, and those +things _fatal_ which happen independently of the will of God and man, +by the necessity of a certain _order_. In a word, human kingdoms are +established by divine providence. And if any one attributes their +existence to fate, because he calls the will or the power of God +itself by the name of fate, let him keep his opinion, but correct his +language. For why does he not say at first what he will say afterwards, +when some one shall put the question to him, What he means by _fate_? +For when men hear that word, according to the ordinary use of the +language, they simply understand by it the virtue of that particular +position of the stars which may exist at the time when any one is born +or conceived, which some separate altogether from the will of God, +whilst others affirm that this also is dependent on that will. But +those who are of opinion that, apart from the will of God, the stars +determine what we shall do, or what good things we shall possess, or +what evils we shall suffer, must be refused a hearing by all, not +only by those who hold the true religion, but by those who wish to +be the worshippers of any gods whatsoever, even false gods. For what +does this opinion really amount to but this, that no god whatever is +to be worshipped or prayed to? Against these, however, our present +disputation is not intended to be directed, but against those who, +in defence of those whom they think to be gods, oppose the Christian +religion. They, however, who make the position of the stars depend on +the divine will, and in a manner decree what character each man shall +have, and what good or evil shall happen to him, if they think that +these same stars have that power conferred upon them by the supreme +power of God, in order that they may determine these things according +to their will, do a great injury to the celestial sphere, in whose most +brilliant senate, and most splendid senate-house, as it were, they +suppose that wicked deeds are decreed to be done,--such deeds as that +if any terrestrial state should decree them, it would be condemned +to overthrow by the decree of the whole human race. What judgment, +then, is left to God concerning the deeds of men, who is Lord both of +the stars and of men, when to these deeds a celestial necessity is +attributed? Or, if they do not say that the stars, though they have +indeed received a certain power from God, who is supreme, determine +those things according to their own discretion, but simply that His +commands are fulfilled by them instrumentally in the application and +enforcing of such necessities, are we thus to think concerning God even +what it seemed unworthy that we should think concerning the will of +the stars? But, if the stars are said rather to signify these things +than to effect them, so that that _position of the stars_ is, as it +were, a kind of speech predicting, not causing future things,--for +this has been the opinion of men of no ordinary learning,--certainly +the mathematicians are not wont so to speak, saying, for example, +Mars in such or such a position _signifies_ a homicide, but _makes_ a +homicide. But, nevertheless, though we grant that they do not speak as +they ought, and that we ought to accept as the proper form of speech +that employed by the philosophers in predicting those things which +they think they discover in the position of the stars, how comes it +that they have never been able to assign any cause why, in the life +of twins, in their actions, in the events which befall them, in their +professions, arts, honours, and other things pertaining to human life, +also in their very death, there is often so great a difference, that, +as far as these things are concerned, many entire strangers are more +like them than they are like each other, though separated at birth by +the smallest interval of time, but at conception generated by the same +act of copulation, and at the same moment? + + + 2. _On the difference in the health of twins._ + +Cicero says that the famous physician Hippocrates has left in writing +that he had suspected that a certain pair of brothers were twins, +from the fact that they both took ill at once, and their disease +advanced to its crisis and subsided in the same time in each of +them.[185] Posidonius the Stoic, who was much given to astrology, +used to explain the fact by supposing that they had been born +and conceived under the same constellation. In this question the +conjecture of the physician is by far more worthy to be accepted, +and approaches much nearer to credibility, since, according as the +parents were affected in body at the time of copulation, so might the +first elements of the fœtuses have been affected, so that all that +was necessary for their growth and development up till birth having +been supplied from the body of the same mother, they might be born +with like constitutions. Thereafter, nourished in the same house, on +the same kinds of food, where they would have also the same kinds of +air, the same locality, the same quality of water,--which, according +to the testimony of medical science, have a very great influence, +good or bad, on the condition of bodily health,--and where they +would also be accustomed to the same kinds of exercise, they would +have bodily constitutions so similar that they would be similarly +affected with sickness at the same time and by the same causes. But, +to wish to adduce that particular position of the stars which existed +at the time when they were born or conceived as the cause of their +being simultaneously affected with sickness, manifests the greatest +arrogance, when so many beings of most diverse kinds, in the most +diverse conditions, and subject to the most diverse events, may have +been conceived and born at the same time, and in the same district, +lying under the same sky. But we know that twins do not only act +differently, and travel to very different places, but that they +also suffer from different kinds of sickness; for which Hippocrates +would give what is in my opinion the simplest reason, namely, that, +through diversity of food and exercise, which arises not from the +constitution of the body, but from the inclination of the mind, they +may have come to be different from each other in respect of health. +Moreover, Posidonius, or any other asserter of the fatal influence of +the stars, will have enough to do to find anything to say to this, +if he be unwilling to impose upon the minds of the uninstructed in +things of which they are ignorant. But, as to what they attempt to +make out from that very small interval of time elapsing between +the births of twins, on account of that point in the heavens where +the mark of the natal hour is placed, and which they call the +"horoscope," it is either disproportionately small to the diversity +which is found in the dispositions, actions, habits, and fortunes +of twins, or it is disproportionately great when compared with the +estate of twins, whether low or high, which is the same for both of +them, the cause for whose greatest difference they place, in every +case, in the hour on which one is born; and, for this reason, if the +one is born so immediately after the other that there is no change +in the horoscope, I demand an entire similarity in all that respects +them both, which can never be found in the case of any twins. But if +the slowness of the birth of the second give time for a change in the +horoscope, I demand different parents, which twins can never have. + + + 3. _Concerning the arguments which Nigidius the mathematician drew + from the potter's wheel, in the question about the birth of + twins._ + +It is to no purpose, therefore, that that famous fiction about the +potter's wheel is brought forward, which tells of the answer which +Nigidius is said to have given when he was perplexed with this +question, and on account of which he was called _Figulus_.[186] For, +having whirled round the potter's wheel with all his strength, he +marked it with ink, striking it twice with the utmost rapidity, so +that the strokes seemed to fall on the very same part of it. Then, +when the rotation had ceased, the marks which he had made were found +upon the rim of the wheel at no small distance apart. Thus, said +he, considering the great rapidity with which the celestial sphere +revolves, even though twins were born with as short an interval +between their births as there was between the strokes which I gave +this wheel, that brief interval of time is equivalent to a very great +distance in the celestial sphere. Hence, said he, come whatever +dissimilitudes may be remarked in the habits and fortunes of twins. +This argument is more fragile than the vessels which are fashioned +by the rotation of that wheel. For if there is so much significance +in the heavens which cannot be comprehended by observation of the +constellations, that, in the case of twins, an inheritance may fall +to the one and not to the other, why, in the case of others who +are not twins, do they dare, having examined their constellations, +to declare such things as pertain to that secret which no one can +comprehend, and to attribute them to the precise moment of the birth +of each individual? Now, if such predictions in connection with the +natal hours of others who are not twins are to be vindicated on the +ground that they are founded on the observation of more extended +spaces in the heavens, whilst those very small moments of time which +separated the births of twins, and correspond to minute portions +of celestial space, are to be connected with trifling things about +which the mathematicians are not wont to be consulted,--for who would +consult them as to when he is to sit, when to walk abroad, when and +on what he is to dine?--how can we be justified in so speaking, when +we can point out such manifold diversity both in the habits, doings, +and destinies of twins? + + + 4. _Concerning the twins Esau and Jacob, who were very unlike each + other both in their character and actions._ + +In the time of the ancient fathers, to speak concerning illustrious +persons, there were born two twin brothers, the one so immediately +after the other, that the first took hold of the heel of the second. +So great a difference existed in their lives and manners, so great a +dissimilarity in their actions, so great a difference in their parents' +love for them respectively, that the very contrast between them +produced even a mutual hostile antipathy. Do we mean, when we say that +they were so unlike each other, that when the one was walking the other +was sitting, when the one was sleeping the other was waking,--which +differences are such as are attributed to those minute portions of +space which cannot be appreciated by those who note down the position +of the stars which exists at the moment of one's birth, in order that +the mathematicians may be consulted concerning it? One of these twins +was for a long time a hired servant; the other never served. One of +them was beloved by his mother; the other was not so. One of them lost +that honour which was so much valued among their people; the other +obtained it. And what shall we say of their wives, their children, and +their possessions? How different they were in respect to all these! +If, therefore, such things as these are connected with those minute +intervals of time which elapse between the births of twins, and are not +to be attributed to the constellations, wherefore are they predicted in +the case of others from the examination of their constellations? And +if, on the other hand, these things are said to be predicted, because +they are connected, not with minute and inappreciable moments, but with +intervals of time which can be observed and noted down, what purpose +is that potter's wheel to serve in this matter, except it be to whirl +round men who have hearts of clay, in order that they may be prevented +from detecting the emptiness of the talk of the mathematicians? + + + 5. _In what manner the mathematicians are convicted of professing + a vain science._ + +Do not those very persons whom the medical sagacity of Hippocrates +led him to suspect to be twins, because their disease was observed +by him to develope to its crisis and to subside again in the same +time in each of them,--do not these, I say, serve as a sufficient +refutation of those who wish to attribute to the influence of the +stars that which was owing to a similarity of bodily constitution? +For wherefore were they both sick of the same disease, and at the +same time, and not the one after the other in the order of their +birth? (for certainly they could not both be born at the same time.) +Or, if the fact of their having been born at different times by +no means necessarily implies that they must be sick at different +times, why do they contend that the difference in the time of their +births was the cause of their difference in other things? Why could +they travel in foreign parts at different times, marry at different +times, beget children at different times, and do many other things +at different times, by reason of their having been born at different +times, and yet could not, for the same reason, also be sick at +different times? For if a difference in the moment of birth changed +the horoscope, and occasioned dissimilarity in all other things, why +has that simultaneousness which belonged to their conception remained +in their attacks of sickness? Or, if the destinies of health are +involved in the time of conception, but those of other things be +said to be attached to the time of birth, they ought not to predict +anything concerning health from examination of the constellations +of birth, when the hour of conception is not also given, that its +constellations may be inspected. But if they say that they predict +attacks of sickness without examining the horoscope of conception, +because these are indicated by the moments of birth, how could +they inform either of these twins when he would be sick, from the +horoscope of his birth, when the other also, who had not the same +horoscope of birth, must of necessity fall sick at the same time? +Again, I ask, if the distance of time between the births of twins +is so great as to occasion a difference of their constellations on +account of the difference of their horoscopes, and therefore of +all the cardinal points to which so much influence is attributed, +that even from such change there comes a difference of destiny, +how is it possible that this should be so, since they cannot have +been conceived at different times? Or, if two conceived at the same +moment of time could have different destinies with respect to their +births, why may not also two born at the same moment of time have +different destinies for life and for death? For if the one moment +in which both were conceived did not hinder that the one should be +born before the other, why, if two are born at the same moment, +should anything hinder them from dying at the same moment? If a +simultaneous conception allows of twins being differently affected +in the _womb_, why should not simultaneousness of birth allow of any +two individuals having different fortunes in the _world_? and thus +would all the fictions of this art, or rather delusion, be swept +away. What strange circumstance is this, that two children conceived +at the same time, nay, at the same moment, under the same position of +the stars, have different fates which bring them to different hours +of birth, whilst two children, born of two different mothers, at the +same moment of time, under one and the same position of the stars, +cannot have different fates which shall conduct them by necessity +to diverse manners of life and of death? Are they at conception as +yet without destinies, because they can only have them if they be +born? What, therefore, do they mean when they say that, if the hour +of the conception be found, many things can be predicted by these +astrologers? from which also arose that story which is reiterated +by some, that a certain sage chose an hour in which to lie with his +wife, in order to secure his begetting an illustrious son. From this +opinion also came that answer of Posidonius, the great astrologer +and also philosopher, concerning those twins who were attacked with +sickness at the same time, namely, "That this had happened to them +because they were conceived at the same time, and born at the same +time." For certainly he added "conception," lest it should be said +to him that they could not both be _born_ at the same time, knowing +that at any rate they must both have been conceived at the same time; +wishing thus to show that he did not attribute the fact of their +being similarly and simultaneously affected with sickness to the +similarity of their bodily constitutions as its proximate cause, but +that he held that even in respect of the similarity of their health, +they were bound together by a sidereal connection. If, therefore, +the time of conception has so much to do with the similarity of +destinies, these same destinies ought not to be changed by the +circumstances of birth; or, if the destinies of twins be said to be +changed because they are born at different times, why should we not +rather understand that they had been already changed in order that +they might be born at different times? Does not, then, the will of +men living in the world change the destinies of birth, when the order +of birth can change the destinies they had at conception? + + + 6. _Concerning twins of different sexes._ + +But even in the very conception of twins, which certainly occurs at +the same moment in the case of both, it often happens that the one is +conceived a male, and the other a female. I know two of different sexes +who are twins. Both of them are alive, and in the flower of their age; +and though they resemble each other in body, as far as difference of +sex will permit, still they are very different in the whole scope and +purpose of their lives (consideration being had of those differences +which necessarily exist between the lives of males and females),--the +one holding the office of a count, and being almost constantly away +from home with the army in foreign service, the other never leaving +her country's soil, or her native district. Still more,--and this is +more incredible, if the destinies of the stars are to be believed in, +though it is not wonderful if we consider the wills of men, and the +free gifts of God,--he is married; she is a sacred virgin: he has +begotten a numerous offspring; she has never even married. But is not +the virtue of the horoscope very great? I think I have said enough +to show the absurdity of that. But, say those astrologers, whatever +be the virtue of the horoscope in other respects, it is certainly of +significance with respect to birth. But why not also with respect to +conception, which takes place undoubtedly with one act of copulation? +And, indeed, so great is the force of nature, that after a woman has +once conceived, she ceases to be liable to conception. Or were they, +perhaps, changed at birth, either he into a male, or she into a female, +because of the difference in their horoscopes? But, whilst it is not +altogether absurd to say that certain sidereal influences have some +power to cause differences in bodies alone,--as, for instance, we see +that the seasons of the year come round by the approaching and receding +of the sun, and that certain kinds of things are increased in size or +diminished by the waxings and wanings of the moon, such as sea-urchins, +oysters, and the wonderful tides of the ocean,--it does not follow that +the _wills of men_ are to be made subject to the position of the stars. +The astrologers, however, when they wish to bind our actions also to +the constellations, only set us on investigating whether, even in +these bodies, the changes may not be attributable to some other than a +sidereal cause. For what is there which more intimately concerns a body +than its sex? And yet, under the same position of the stars, twins of +different sexes may be conceived. Wherefore, what greater absurdity can +be affirmed or believed than that the position of the stars, which was +the same for both of them at the time of conception, could not cause +that the one child should not have been of a different sex from her +brother, with whom she had a common constellation, whilst the position +of the stars which existed at the hour of their birth could cause that +she should be separated from him by the great distance between marriage +and holy virginity? + + + 7. _Concerning the choosing of a day for marriage, or for planting, + or sowing._ + +Now, will any one bring forward this, that in choosing certain +particular days for particular actions, men bring about certain new +destinies for their actions? That man, for instance, according to +this doctrine, was not born to have an illustrious son, but rather a +contemptible one, and therefore, being a man of learning, he chose an +hour in which to lie with his wife. He made, therefore, a destiny +which he did not have before, and from that destiny of his own making +something began to be fatal which was not contained in the destiny of +his natal hour. Oh, singular stupidity! A day is chosen on which to +marry; and for this reason, I believe, that unless a day be chosen, +the marriage may fall on an unlucky day, and turn out an unhappy +one. What then becomes of what the stars have already decreed at +the hour of birth? Can a man be said to change by an act of choice +that which has already been determined for him, whilst that which he +himself has determined in the choosing of a day cannot be changed by +another power? Thus, if men alone, and not all things under heaven, +are subject to the influence of the stars, why do they choose some +days as suitable for planting vines or trees, or for sowing grain, +other days as suitable for taming beasts on, or for putting the +males to the females, that the cows and mares may be impregnated, +and for such-like things? If it be said that certain chosen days +have an influence on these things, because the constellations rule +over all terrestrial bodies, animate and inanimate, according to +differences in moments of time, let it be considered what innumerable +multitudes of beings are born or arise, or take their origin at the +very same instant of time, which come to ends so different, that +they may persuade any little boy that these observations about days +are ridiculous. For who is so mad as to dare affirm that all trees, +all herbs, all beasts, serpents, birds, fishes, worms, have each +separately their own moments of birth or commencement? Nevertheless, +men are wont, in order to try the skill of the mathematicians, +to bring before them the constellations of dumb animals, the +constellations of whose birth they diligently observe at home with +a view to this discovery; and they prefer those mathematicians to +all others, who say from the inspection of the constellations that +they indicate the birth of a beast and not of a man. They also dare +tell what kind of beast it is, whether it is a wool-bearing beast, +or a beast suited for carrying burthens, or one fit for the plough, +or for watching a house; for the astrologers are also tried with +respect to the fates of dogs, and their answers concerning these are +followed by shouts of admiration on the part of those who consult +them. They so deceive men as to make them think that during the birth +of a man the births of all other beings are suspended, so that not +even a fly comes to life at the same time that he is being born, +under the same region of the heavens. And if this be admitted with +respect to the fly, the reasoning cannot stop there, but must ascend +from flies till it lead them up to camels and elephants. Nor are they +willing to attend to this, that when a day has been chosen whereon +to sow a field, so many grains fall into the ground simultaneously, +germinate simultaneously, spring up, come to perfection, and ripen +simultaneously; and yet, of all the ears which are coeval, and, so to +speak, _congerminal_, some are destroyed by mildew, some are devoured +by the birds, and some are pulled by men. How can they say that all +these had their different constellations, which they see coming to so +different ends? Will they confess that it is folly to choose days for +such things, and to affirm that they do not come within the sphere of +the celestial decree, whilst they subject men alone to the stars, on +whom alone in the world God has bestowed free wills? All these things +being considered, we have good reason to believe that, when the +astrologers give very many wonderful answers, it is to be attributed +to the occult inspiration of spirits not of the best kind, whose care +it is to insinuate into the minds of men, and to confirm in them, +those false and noxious opinions concerning the fatal influence of +the stars, and not to their marking and inspecting of horoscopes, +according to some kind of art which in reality has no existence. + + + 8. _Concerning those who call by the name of fate, not the + position of the stars, but the connection of causes which + depends on the will of God._ + +But, as to those who call by the name of fate, not the disposition of +the stars as it may exist when any creature is conceived, or born, +or commences its existence, but the whole connection and train of +causes which makes everything become what it does become, there is +no need that I should labour and strive with them in a merely verbal +controversy, since they attribute the so-called order and connection +of causes to the will and power of God most high, who is most rightly +and most truly believed to know all things before they come to pass, +and to leave nothing unordained; from whom are all powers, although +the wills of all are not from Him. Now, that it is chiefly the will +of God most high, whose power extends itself irresistibly through all +things which they call fate, is proved by the following verses, of +which, if I mistake not, Annæus Seneca is the author:-- + + "Father supreme, Thou ruler of the lofty heavens, + Lead me where'er it is Thy pleasure; I will give + A prompt obedience, making no delay, + Lo! here I am. Promptly I come to do Thy sovereign will; + If Thy command shall thwart my inclination, I will still + Follow Thee groaning, and the work assigned, + With all the suffering of a mind repugnant, + Will perform, being evil; which, had I been good, + I should have undertaken and performed, though hard, + With virtuous cheerfulness. + The Fates do lead the man that follows willing; + But the man that is unwilling, him they drag."[187] + +Most evidently, in this last verse, he calls that "fate" which he had +before called "the will of the Father supreme," whom, he says, he is +ready to obey that he may be led, being willing, not dragged, being +unwilling, since "the Fates do lead the man that follows willing, but +the man that is unwilling, him they drag." + +The following Homeric lines, which Cicero translates into Latin, also +favour this opinion:-- + + "Such are the minds of men, as is the light + Which Father Jove himself doth pour + Illustrious o'er the fruitful earth."[188] + +Not that Cicero wishes that a poetical sentiment should have any +weight in a question like this; for when he says that the Stoics, when +asserting the power of fate, were in the habit of using these verses +from Homer, he is not treating concerning the opinion of that poet, but +concerning that of those philosophers, since by these verses, which +they quote in connection with the controversy which they hold about +fate, is most distinctly manifested what it is which they reckon fate, +since they call by the name of Jupiter him whom they reckon the supreme +god, from whom, they say, hangs the whole chain of fates. + + + 9. _Concerning the foreknowledge of God and the free will of man, + in opposition to the definition of Cicero._ + +The manner in which Cicero addresses himself to the task of +refuting the Stoics, shows that he did not think he could effect +anything against them in argument unless he had first demolished +divination.[189] And this he attempts to accomplish by denying that +there is any knowledge of future things, and maintains with all +his might that there is no such knowledge either in God or man, +and that there is no prediction of events. Thus he both denies the +foreknowledge of God, and attempts by vain arguments, and by opposing +to himself certain oracles very easy to be refuted, to overthrow all +prophecy, even such as is clearer than the light (though even these +oracles are not refuted by him). + +But, in refuting these conjectures of the mathematicians, his +argument is triumphant, because truly these are such as destroy +and refute themselves. Nevertheless, they are far more tolerable +who assert the fatal influence of the stars than they who deny the +foreknowledge of future events. For, to confess that God exists, +and at the same time to deny that He has foreknowledge of future +things, is the most manifest folly. This Cicero himself saw, and +therefore attempted to assert the doctrine embodied in the words of +Scripture, "The fool hath said in his heart, There is no God."[190] +That, however, he did not do in his own person, for he saw how odious +and offensive such an opinion would be; and, therefore in his book +on the nature of the gods,[191] he makes Cotta dispute concerning +this against the Stoics, and preferred to give his own opinion in +favour of Lucilius Balbus, to whom he assigned the defence of the +Stoical position, rather than in favour of Cotta, who maintained +that no divinity exists. However, in his book on divination, he in +his own person most openly opposes the doctrine of the prescience of +future things. But all this he seems to do in order that he may not +grant the doctrine of fate, and by so doing destroy free will. For he +thinks that, the knowledge of future things being once conceded, fate +follows as so necessary a consequence that it cannot be denied. + +But, let these perplexing debatings and disputations of the +philosophers go on as they may, we, in order that we may confess the +most high and true God Himself, do confess His will, supreme power, +and prescience. Neither let us be afraid lest, after all, we do not +do by will that which we do by will, because He, whose foreknowledge +is infallible, foreknew that we would do it. It was this which Cicero +was afraid of, and therefore opposed foreknowledge. The Stoics also +maintained that all things do not come to pass by necessity, although +they contended that all things happen according to destiny. What is it, +then, that Cicero feared in the prescience of future things? Doubtless +it was this,--that if all future things have been foreknown, they will +happen in the order in which they have been foreknown; and if they come +to pass in this order, there is a certain order of things foreknown +by God; and if a certain order of things, then a certain order of +causes, for nothing can happen which is not preceded by some efficient +cause. But if there is a certain order of causes according to which +everything happens which does happen, then by fate, says he, all things +happen which do happen. But if this be so, then is there nothing in +our own power, and there is no such thing as freedom of will; and if +we grant that, says he, the whole economy of human life is subverted. +In vain are laws enacted. In vain are reproaches, praises, chidings, +exhortations had recourse to; and there is no justice whatever in the +appointment of rewards for the good, and punishments for the wicked. +And that consequences so disgraceful, and absurd, and pernicious to +humanity may not follow, Cicero chooses to reject the foreknowledge of +future things, and shuts up the religious mind to this alternative, to +make choice between two things, either that something is in our own +power, or that there is foreknowledge,--both of which cannot be true; +but if the one is affirmed, the other is thereby denied. He therefore, +like a truly great and wise man, and one who consulted very much and +very skilfully for the good of humanity, of those two chose the freedom +of the will, to confirm which he denied the foreknowledge of future +things; and thus, wishing to make men free, he makes them sacrilegious. +But the religious mind chooses both, confesses both, and maintains both +by the faith of piety. But how so? says Cicero; for the knowledge of +future things being granted, there follows a chain of consequences +which ends in this, that there can be nothing depending on our own free +wills. And further, if there is anything depending on our wills, we +must go backwards by the same steps of reasoning till we arrive at the +conclusion that there is no foreknowledge of future things. For we go +backwards through all the steps in the following order:--If there is +free will, all things do not happen according to fate; if all things do +not happen according to fate, there is not a certain order of causes; +and if there is not a certain order of causes, neither is there a +certain order of things foreknown by God,--for things cannot come to +pass except they are preceded by efficient causes,--but, if there is no +fixed and certain order of causes foreknown by God, all things cannot +be said to happen according as He foreknew that they would happen. And +further, if it is not true that all things happen just as they have +been foreknown by Him, there is not, says he, in God any foreknowledge +of future events. + +Now, against the sacrilegious and impious darings of reason, we +assert both that God knows all things before they come to pass, and +that we do by our free will whatsoever we know and feel to be done +by us only because we will it. But that all things come to pass by +fate, we do not say; nay we affirm that nothing comes to pass by +fate; for we demonstrate that the name of fate, as it is wont to +be used by those who speak of fate, meaning thereby the position +of the stars at the time of each one's conception or birth, is an +unmeaning word, for astrology itself is a delusion. But an order of +causes in which the highest efficiency is attributed to the will of +God, we neither deny nor do we designate it by the name of fate, +unless, perhaps, we may understand fate to mean that which is spoken, +deriving it from _fari_, to speak; for we cannot deny that it is +written in the sacred Scriptures, "God hath spoken once; these two +things have I heard, that power belongeth unto God. Also unto Thee, O +God, belongeth mercy: for Thou wilt render unto every man according +to his works."[192] Now the expression, "Once hath He spoken," is to +be understood as meaning "_immovably_," that is, unchangeably hath +He spoken, inasmuch as He knows unchangeably all things which shall +be, and all things which He will do. We might, then, use the word +fate in the sense it bears when derived from _fari_, to speak, had +it not already come to be understood in another sense, into which I +am unwilling that the hearts of men should unconsciously slide. But +it does not follow that, though there is for God a certain order of +all causes, there must therefore be nothing depending on the free +exercise of our own wills, for our wills themselves are included in +that order of causes which is certain to God, and is embraced by His +foreknowledge, for human wills are also causes of human actions; +and He who foreknew all the causes of things would certainly among +those causes not have been ignorant of our wills. For even that very +concession which Cicero himself makes is enough to refute him in +this argument. For what does it help him to say that nothing takes +place without a cause, but that every cause is not fatal, there being +a fortuitous cause, a natural cause, and a voluntary cause? It is +sufficient that he confesses that whatever happens must be preceded +by a cause. For we say that those causes which are called fortuitous +are not a mere name for the absence of causes, but are only latent, +and we attribute them either to the will of the true God, or to that +of spirits of some kind or other. And as to natural causes, we by no +means separate them from the will of Him who is the author and framer +of all nature. But now as to voluntary causes. They are referable +either to God, or to angels, or to men, or to animals of whatever +description, if indeed those instinctive movements of animals devoid +of reason, by which, in accordance with their own nature, they seek +or shun various things, are to be called wills. And when I speak of +the wills of angels, I mean either the wills of good angels, whom we +call the angels of God, or of the wicked angels, whom we call the +angels of the devil, or demons. Also by the wills of men I mean the +wills either of the good or of the wicked. And from this we conclude +that there are no efficient causes of all things which come to pass +unless voluntary causes, that is, such as belong to that nature which +is the spirit of life. For the air or wind is called spirit, but, +inasmuch as it is a body, it is not the spirit of life. The spirit +of life, therefore, which quickens all things, and is the creator +of every body, and of every created spirit, is God Himself, the +uncreated spirit. In His supreme will resides the power which acts +on the wills of all created spirits, helping the good, judging the +evil, controlling all, granting power to some, not granting it to +others. For, as He is the creator of all natures, so also is He the +bestower of all powers, not of all wills; for wicked wills are not +from Him, being contrary to nature, which is from Him. As to bodies, +they are more subject to wills: some to our wills, by which I mean +the wills of all living mortal creatures, but more to the wills of +men than of beasts. But all of them are most of all subject to the +will of God, to whom all wills also are subject, since they have no +power except what He has bestowed upon them. The cause of things, +therefore, which makes but is not made, is God; but all other causes +both make and are made. Such are all created spirits, and especially +the rational. Material causes, therefore, which may rather be said to +be made than to make, are not to be reckoned among efficient causes, +because they can only do what the wills of spirits do by them. How, +then, does an order of causes which is certain to the foreknowledge +of God necessitate that there should be nothing which is dependent +on our wills, when our wills themselves have a very important place +in the order of causes? Cicero, then, contends with those who call +this order of causes fatal, or rather designate this order itself +by the name of fate; to which we have an abhorrence, especially on +account of the word, which men have become accustomed to understand +as meaning what is not true. But, whereas he denies that the order +of all causes is most certain, and perfectly clear to the prescience +of God, we detest his opinion more than the Stoics do. For he either +denies that God exists,--which, indeed, in an assumed personage, +he has laboured to do, in his book _De Natura Deorum_,--or if he +confesses that He exists, but denies that He is prescient of future +things, what is that but just "the fool saying in his heart there is +no God?" For one who is not prescient of all future things is not +God. Wherefore our wills also have just so much power as God willed +and foreknew that they should have; and therefore whatever power +they have, they have it within most certain limits; and whatever they +are to do, they are most assuredly to do, for He whose foreknowledge +is infallible foreknew that they would have the power to do it, and +would do it. Wherefore, if I should choose to apply the name of fate +to anything at all, I should rather say that fate belongs to the +weaker of two parties, will to the stronger, who has the other in his +power, than that the freedom of our will is excluded by that order +of causes, which, by an unusual application of the word peculiar to +themselves, the Stoics call _Fate_. + + + 10. _Whether our wills are ruled by necessity._ + +Wherefore, neither is that necessity to be feared, for dread of which +the Stoics laboured to make such distinctions among the causes of +things as should enable them to rescue certain things from the dominion +of necessity, and to subject others to it. Among those things which +they wished not to be subject to necessity they placed our wills, +knowing that they would not be free if subjected to necessity. For +if that is to be called _our necessity_ which is not in our power, +but even though we be unwilling effects what it can effect,--as, for +instance, the necessity of death,--it is manifest that our wills by +which we live uprightly or wickedly are not under such a necessity; for +we do many things which, if we were not willing, we should certainly +not do. This is primarily true of the act of willing itself,--for if +we will, it _is_; if we will not, it _is_ not,--for we should not will +if we were unwilling. But if we define necessity to be that according +to which we say that it is necessary that anything be of such or such +a nature, or be done in such and such a manner, I know not why we +should have any dread of that necessity taking away the freedom of +our will. For we do not put the life of God or the foreknowledge of +God under necessity if we should say that it is necessary that God +should live for ever, and foreknow all things; as neither is His power +diminished when we say that He cannot die or fall into error,--for +this is in such a way impossible to Him, that if it were possible for +Him, He would be of less power. But assuredly He is rightly called +omnipotent, though He can neither die nor fall into error. For He +is called omnipotent on account of His doing what He wills, not on +account of His suffering what He wills not; for if that should befall +Him, He would by no means be omnipotent. Wherefore, He cannot do some +things for the very reason that He is omnipotent. So also, when we say +that it is necessary that, when we will, we will by free choice, in +so saying we both affirm what is true beyond doubt, and do not still +subject our wills thereby to a necessity which destroys liberty. Our +wills, therefore, _exist_ as _wills_, and do themselves whatever we +do by willing, and which would not be done if we were unwilling. But +when any one suffers anything, being unwilling, by the will of another, +even in that case will retains its essential validity,--we do not mean +the will of the party who inflicts the suffering, for we resolve it +into the power of God. For if a will should simply exist, but not be +able to do what it wills, it would be overborne by a more powerful +will. Nor would this be the case unless there had existed will, and +that not the will of the other party, but the will of him who willed, +but was not able to accomplish what he willed. Therefore, whatsoever +a man suffers contrary to his own will, he ought not to attribute to +the will of men, or of angels, or of any created spirit, but rather to +His will who gives power to wills. It is not the case, therefore, that +because God foreknew what would be in the power of our wills, there is +for that reason nothing in the power of our wills. For he who foreknew +this did not foreknow nothing. Moreover, if He who foreknew what would +be in the power of our wills did not foreknow nothing, but something, +assuredly, even though He did foreknow, there is something in the +power of our wills. Therefore we are by no means compelled, either, +retaining the prescience of God, to take away the freedom of the will, +or, retaining the freedom of the will, to deny that He is prescient of +future things, which is impious. But we embrace both. We faithfully +and sincerely confess both. The former, that we may believe well; the +latter, that we may live well. For he lives ill who does not believe +well concerning God. Wherefore, be it far from us, in order to maintain +our freedom, to deny the prescience of Him by whose help we are or +shall be free. Consequently, it is not in vain that laws are enacted, +and that reproaches, exhortations, praises, and vituperations are had +recourse to; for these also He foreknew, and they are of great avail, +even as great as He foreknew that they would be of. Prayers, also, are +of avail to procure those things which He foreknew that He would grant +to those who offered them; and with justice have rewards been appointed +for good deeds, and punishments for sins. For a man does not therefore +sin because God foreknew that he would sin. Nay, it cannot be doubted +but that it is the man himself who sins when he does sin, because He, +whose foreknowledge is infallible, foreknew not that fate, or fortune, +or something else would sin, but that the man himself would sin, who, +if he wills not, sins not. But if he shall not will to sin, even this +did God foreknow. + + + 11. _Concerning the universal providence of God in the laws of + which all things are comprehended._ + +Therefore God supreme and true, with His Word and Holy Spirit (which +three are one), one God omnipotent, creator and maker of every soul and +of every body; by whose gift all are happy who are happy through verity +and not through vanity; who made man a rational animal consisting +of soul and body, who, when he sinned, neither permitted him to go +unpunished, nor left him without mercy; who has given to the good and +to the evil, being in common with stones, vegetable life in common with +trees, sensuous life in common with brutes, intellectual life in common +with angels alone; from whom is every mode, every species, every order; +from whom are measure, number, weight; from whom is everything which +has an existence in nature, of whatever kind it be, and of whatever +value; from whom are the seeds of forms and the forms of seeds, and +the motion of seeds and of forms; who gave also to flesh its origin, +beauty, health, reproductive fecundity, disposition of members, and +the salutary concord of its parts; who also to the irrational soul has +given memory, sense, appetite, but to the rational soul, in addition to +these, has given intelligence and will; who has not left, not to speak +of heaven and earth, angels and men, but not even the entrails of the +smallest and most contemptible animal, or the feather of a bird, or the +little flower of a plant, or the leaf of a tree, without an harmony, +and, as it were, a mutual peace among all its parts;--that God can +never be believed to have left the kingdoms of men, their dominations +and servitudes, outside of the laws of His providence. + + + 12. _By what virtues the ancient Romans merited that the true God, + although they did not worship Him, should enlarge their empire._ + +Wherefore let us go on to consider what virtues of the Romans they +were which the true God, in whose power are also the kingdoms of the +earth, condescended to help in order to raise the empire, and also +for what reason He did so. And, in order to discuss this question on +clearer ground, we have written the former books, to show that the +power of those gods, who, they thought, were to be worshipped with +such trifling and silly rites, had nothing to do in this matter; and +also what we have already accomplished of the present volume, to +refute the doctrine of fate, lest any one who might have been already +persuaded that the Roman empire was not extended and preserved by +the worship of these gods, might still be attributing its extension +and preservation to some kind of fate, rather than to the most +powerful will of God most high. The ancient and primitive Romans, +therefore, though their history shows us that, like all the other +nations, with the sole exception of the Hebrews, they worshipped +false gods, and sacrificed victims, not to God, but to demons, have +nevertheless this commendation bestowed on them by their historian, +that they were "greedy of praise, prodigal of wealth, desirous of +great glory, and content with a moderate fortune."[193] Glory they +most ardently loved: for it they wished to live, for it they did not +hesitate to die. Every other desire was repressed by the strength of +their passion for that one thing. At length their country itself, +because it seemed inglorious to serve, but glorious to rule and to +command, they first earnestly desired to be free, and then to be +mistress. Hence it was that, not enduring the domination of kings, +they put the government into the hands of two chiefs, holding office +for a year, who were called consuls, not kings or lords.[194] But +royal pomp seemed inconsistent with the administration of a ruler +(_regentis_), or the benevolence of one who consults (that is, for +the public good) (_consulentis_), but rather with the haughtiness of +a lord (_dominantis_). King Tarquin, therefore, having been banished, +and the consular government having been instituted, it followed, as +the same author already alluded to says in his praises of the Romans, +that "the state grew with amazing rapidity after it had obtained +liberty, so great a desire of glory had taken possession of it." +That eagerness for praise and desire of glory, then, was that which +accomplished those many wonderful things, laudable, doubtless, and +glorious according to human judgment. The same Sallust praises the +great men of his own time, Marcus Cato, and Caius Cæsar, saying that +for a long time the republic had no one great in virtue, but that +within his memory there had been these two men of eminent virtue, and +very different pursuits. Now, among the praises which he pronounces +on Cæsar he put this, that he wished for a great empire, an army, +and a new war, that he might have a sphere where his genius and +virtue might shine forth. Thus it was ever the prayer of men of +heroic character that Bellona would excite miserable nations to war, +and lash them into agitation with her bloody scourge, so that there +might be occasion for the display of their valour. This, forsooth, is +what that desire of praise and thirst for glory did. Wherefore, by +the love of liberty in the first place, afterwards also by that of +domination and through the desire of praise and glory, they achieved +many great things; and their most eminent poet testifies to their +having been prompted by all these motives: + + "Porsenna there, with pride elate, + Bids Rome to Tarquin ope her gate; + With arms he hems the city in, + Æneas' sons stand firm to win."[195] + +At that time it was their greatest ambition either to die bravely +or to live free; but when liberty was obtained, so great a desire +of glory took possession of them, that liberty alone was not enough +unless domination also should be sought, their great ambition being +that which the same poet puts into the mouth of Jupiter: + + "Nay, Juno's self, whose wild alarms + Set ocean, earth, and heaven in arms, + Shall change for smiles her moody frown, + And vie with me in zeal to crown + Rome's sons, the nation of the gown. + So stands my will. There comes a day, + While Rome's great ages hold their way, + When old Assaracus's sons + Shall quit them on the myrmidons, + O'er Phthia and Mycenæ reign, + And humble Argos to their chain."[196] + +Which things, indeed, Virgil makes Jupiter predict as future, whilst, +in reality, he was only himself passing in review in his own mind +things which were already done, and which were beheld by him as +present realities. But I have mentioned them with the intention +of showing that, next to liberty, the Romans so highly esteemed +domination, that it received a place among those things on which +they bestowed the greatest praise. Hence also it is that that poet, +preferring to the arts of other nations those arts which peculiarly +belong to the Romans, namely, the arts of ruling and commanding, and +of subjugating and vanquishing nations, says, + + "Others, belike, with happier grace, + From bronze or stone shall call the face, + Plead doubtful causes, map the skies, + And tell when planets set or rise; + But Roman thou, do thou control + The nations far and wide; + Be this thy genius, to impose + The rule of peace on vanquished foes, + Show pity to the humbled soul, + And crush the sons of pride."[197] + +These arts they exercised with the more skill the less they gave +themselves up to pleasures, and to enervation of body and mind in +coveting and amassing riches, and through these corrupting morals, by +extorting them from the miserable citizens and lavishing them on base +stage-players. Hence these men of base character, who abounded when +Sallust wrote and Virgil sang these things, did not seek after honours +and glory by these arts, but by treachery and deceit. Wherefore the +same says, "But at first it was rather ambition than avarice that +stirred the minds of men, which vice, however, is nearer to virtue. For +glory, honour, and power are desired alike by the good man and by the +ignoble; but the former," he says, "strives onward to them by the true +way, whilst the other, knowing nothing of the good arts, seeks them by +fraud and deceit."[198] And what is meant by seeking the attainment +of glory, honour, and power by good arts, is to seek them by virtue, +and not by deceitful intrigue; for the good and the ignoble man alike +desire these things, but the good man strives to overtake them by the +true way. The way is virtue, along which he presses as to the goal of +possession--namely, to glory, honour, and power. Now that this was a +sentiment engrained in the Roman mind, is indicated even by the temples +of their gods; for they built in very close proximity the temples of +Virtue and Honour, worshipping as gods the gifts of God. Hence we can +understand what they who were good thought to be the end of virtue, +and to what they ultimately referred it, namely, to honour; for, as to +the bad, they had no virtue though they desired honour, and strove to +possess it by fraud and deceit. Praise of a higher kind is bestowed +upon Cato, for he says of him, "The less he sought glory, the more it +followed him."[199] We say praise of a higher kind; for the glory with +the desire of which the Romans burned is the judgment of men thinking +well of men. And therefore virtue is better, which is content with no +human judgment save that of one's own conscience. Whence the apostle +says, "For this is our glory, the testimony of our conscience."[200] +And in another place he says, "But let every one prove his own work, +and then he shall have glory in himself, and not in another."[201] That +glory, honour, and power, therefore, which they desired for themselves, +and to which the good sought to attain by good arts, should not be +sought after by virtue, but virtue by them. For there is no true virtue +except that which is directed towards that end in which is the highest +and ultimate good of man. Wherefore even the honours which Cato sought +he ought not to have sought, but the state ought to have conferred them +on him unsolicited, on account of his virtues. + +But, of the two great Romans of that time, Cato was he whose virtue +was by far the nearest to the true idea of virtue. Wherefore, let +us refer to the opinion of Cato himself, to discover what was the +judgment he had formed concerning the condition of the state both +then and in former times. "I do not think," he says, "that it was by +arms that our ancestors made the republic great from being small. +Had that been the case, the republic of our day would have been by +far more flourishing than that of their times, for the number of +our allies and citizens is far greater; and, besides, we possess a +far greater abundance of armour and of horses than they did. But it +was other things than these that made them great, and we have none +of them: industry at home, just government without, a mind free in +deliberation, addicted neither to crime nor to lust. Instead of +these, we have luxury and avarice, poverty in the state, opulence +among citizens; we laud riches, we follow laziness; there is no +difference made between the good and the bad; all the rewards of +virtue are got possession of by intrigue. And no wonder, when every +individual consults only for his own good, when ye are the slaves of +pleasure at home, and, in public affairs, of money and favour, no +wonder that an onslaught is made upon the unprotected republic."[202] + +He who hears these words of Cato or of Sallust probably thinks that +such praise bestowed on the ancient Romans was applicable to all of +them, or, at least, to very many of them. It is not so; otherwise +the things which Cato himself writes, and which I have quoted in +the second book of this work, would not be true. In that passage he +says, that even from the very beginning of the state wrongs were +committed by the more powerful, which led to the separation of the +people from the fathers, besides which there were other internal +dissensions; and the only time at which there existed a just and +moderate administration was after the banishment of the kings, and +that no longer than whilst they had cause to be afraid of Tarquin, +and were carrying on the grievous war which had been undertaken on +his account against Etruria; but afterwards the fathers oppressed the +people as slaves, flogged them as the kings had done, drove them from +their land, and, to the exclusion of all others, held the government +in their own hands alone. And to these discords, whilst the fathers +were wishing to rule, and the people were unwilling to serve, the +second Punic war put an end; for again great fear began to press upon +their disquieted minds, holding them back from those distractions by +another and greater anxiety, and bringing them back to civil concord. +But the great things which were then achieved were accomplished +through the administration of a few men, who were good in their own +way. And by the wisdom and forethought of these few good men, which +first enabled the republic to endure these evils and mitigated them, +it waxed greater and greater. And this the same historian affirms, +when he says that, reading and hearing of the many illustrious +achievements of the Roman people in peace and in war, by land and by +sea, he wished to understand what it was by which these great things +were specially sustained. For he knew that very often the Romans had +with a small company contended with great legions of the enemy; and +he knew also that with small resources they had carried on wars with +opulent kings. And he says that, after having given the matter much +consideration, it seemed evident to him that the pre-eminent virtue +of a few citizens had achieved the whole, and that that explained +how poverty overcame wealth, and small numbers great multitudes. +But, he adds, after that the state had been corrupted by luxury and +indolence, again the republic, by its own greatness, was able to bear +the vices of its magistrates and generals. Wherefore even the praises +of Cato are only applicable to a few; for only a few were possessed +of that virtue which leads men to pursue after glory, honour, and +power by the true way,--that is, by virtue itself. This industry at +home, of which Cato speaks, was the consequence of a desire to enrich +the public treasury, even though the result should be poverty at +home; and therefore, when he speaks of the evil arising out of the +corruption of morals, he reverses the expression, and says, "Poverty +in the state, riches at home." + + + 13. _Concerning the love of praise, which, though it is a vice, is + reckoned a virtue, because by it greater vice is restrained._ + +Wherefore, when the kingdoms of the East had been illustrious for +a long time, it pleased God that there should also arise a Western +empire, which, though later in time, should be more illustrious +in extent and greatness. And, in order that it might overcome the +grievous evils which existed among other nations, He purposely +granted it to such men as, for the sake of honour, and praise, and +glory, consulted well for their country, in whose glory they sought +their own, and whose safety they did not hesitate to prefer to their +own, suppressing the desire of wealth and many other vices for +this one vice, namely, the love of praise. For he has the soundest +perception who recognises that even the love of praise is a vice; nor +has this escaped the perception of the poet Horace, who says, + + "You're bloated by ambition? take advice: + Yon book will ease you if you read it thrice."[203] + +And the same poet, in a lyric song, hath thus spoken with the desire +of repressing the passion for domination: + + "Rule an ambitious spirit, and thou hast + A wider kingdom than if thou shouldst join + To distant Gades Lybia, and thus + Shouldst hold in service either Carthaginian."[204] + +Nevertheless, they who restrain baser lusts, not by the power of +the Holy Spirit obtained by the faith of piety, or by the love +of intelligible beauty, but by desire of human praise, or, at +all events, restrain them better by the love of such praise, are +not indeed yet holy, but only less base. Even Tully was not able +to conceal this fact; for, in the same books which he wrote, _De +Republica_, when speaking concerning the education of a chief of +the state, who ought, he says, to be nourished on glory, goes on to +say that their ancestors did many wonderful and illustrious things +through desire of glory. So far, therefore, from resisting this +vice, they even thought that it ought to be excited and kindled up, +supposing that that would be beneficial to the republic. But not even +in his books on philosophy does Tully dissimulate this poisonous +opinion, for he there avows it more clearly than day. For when he is +speaking of those studies which are to be pursued with a view to the +_true good_, and not with the vainglorious desire of human praise, he +introduces the following universal and general statement: + + "Honour nourishes the arts, and all are stimulated to the + prosecution of studies by glory; and those pursuits are always + neglected which are generally discredited."[205] + + + 14. _Concerning the eradication of the love of human praise, + because all the glory of the righteous is in God._ + +It is, therefore, doubtless far better to resist this desire than to +yield to it, for the purer one is from this defilement, the liker +is he to God; and, though this vice be not thoroughly eradicated +from his heart,--for it does not cease to tempt even the minds of +those who are making good progress in virtue,--at any rate, let +the desire of glory be surpassed by the love of righteousness, so +that, if there be seen anywhere "lying neglected things which are +generally discredited," if they are good, if they are right, even +the love of human praise may blush and yield to the love of truth. +For so hostile is this vice to pious faith, if the love of glory be +greater in the heart than the fear or love of God, that the Lord +said, "How can ye believe, who look for glory from one another, +and do not seek the glory which is from God alone?"[206] Also, +concerning some who had believed on Him, but were afraid to confess +Him openly, the evangelist says, "They loved the praise of men more +than the praise of God;"[207] which did not the holy apostles, who, +when they proclaimed the name of Christ in those places where it +was not only discredited, and therefore neglected,--according as +Cicero says, "Those things are always neglected which are generally +discredited,"--but was even held in the utmost detestation, holding +to what they had heard from the Good Master, who was also the +physician of minds, "If any one shall deny me before men, him will I +also deny before my Father who is in heaven, and before the angels +of God,"[208] amidst maledictions and reproaches, and most grievous +persecutions and cruel punishments, were not deterred from the +preaching of human salvation by the noise of human indignation. And +when, as they did and spake divine things, and lived divine lives, +conquering, as it were, hard hearts, and introducing into them the +peace of righteousness, great glory followed them in the church of +Christ, they did not rest in that as in the end of their virtue, but, +referring that glory itself to the glory of God, by whose grace they +were what they were, they sought to kindle, also by that same flame, +the minds of those for whose good they consulted, to the love of Him, +by whom they could be made to be what they themselves were. For their +Master had taught them not to seek to be good for the sake of human +glory, saying, "Take heed that ye do not your righteousness before +men to be seen of them, or otherwise ye shall not have a reward from +your Father who is in heaven."[209] But again, lest, understanding +this wrongly, they should, through fear of pleasing men, be less +useful through concealing their goodness, showing for what end they +ought to make it known, He says, "Let your works shine before men, +that they may see your good deeds, and glorify your Father who is in +heaven."[210] Not, observe, "that ye may be seen by them, that is, in +order that their eyes may be directed upon you,"--for of yourselves +ye are nothing,--but "that they may glorify your Father who is in +heaven," by fixing their regards on whom they may become such as ye +are. These the martyrs followed, who surpassed the Scævolas, and the +Curtiuses, and the Deciuses, both in true virtue, because in true +piety, and also in the greatness of their number. But since those +Romans were in an earthly city, and had before them, as the end of +all the offices undertaken in its behalf, its safety, and a kingdom, +not in heaven, but in earth,--not in the sphere of eternal life, but +in the sphere of demise and succession, where the dead are succeeded +by the dying,--what else but glory should they love, by which they +wished even after death to live in the mouths of their admirers? + + + 15. _Concerning the temporal reward which God granted to the + virtues of the Romans._ + +Now, therefore, with regard to those to whom God did not purpose to +give eternal life with His holy angels in His own celestial city, +to the society of which that true piety which does not render the +service of religion, which the Greeks call λατρεία, to any save the +true God conducts, if He had also withheld from them the terrestrial +glory of that most excellent empire, a reward would not have been +rendered to their good arts,--that is, their virtues,--by which they +sought to attain so great glory. For as to those who seem to do +some good that they may receive glory from men, the Lord also says, +"Verily I say unto you, they have received their reward."[211] So +also these despised their own private affairs for the sake of the +republic, and for its treasury resisted avarice, consulted for the +good of their country with a spirit of freedom, addicted neither to +what their laws pronounced to be crime nor to lust. By all these +acts, as by the true way, they pressed forward to honours, power, +and glory; they were honoured among almost all nations; they imposed +the laws of their empire upon many nations; and at this day, both in +literature and history, they are glorious among almost all nations. +There is no reason why they should complain against the justice of +the supreme and true God,--"they have received their reward." + + + 16. _Concerning the reward of the holy citizens of the celestial + city, to whom the example of the virtues of the Roman are useful._ + +But the reward of the saints is far different, who even here endured +reproaches for that city of God which is hateful to the lovers of +this world. That city is eternal. There none are born, for none die. +There is true and full felicity,--not a goddess, but a gift of God. +Thence we receive the pledge of faith, whilst on our pilgrimage we +sigh for its beauty. There rises not the sun on the good and the +evil, but the Sun of Righteousness protects the good alone. There no +great industry shall be expended to enrich the public treasury by +suffering privations at home, for there is the common treasury of +truth. And, therefore, it was not only for the sake of recompensing +the citizens of Rome that her empire and glory had been so signally +extended, but also that the citizens of that eternal city, during +their pilgrimage here, might diligently and soberly contemplate these +examples, and see what a love they owe to the supernal country on +account of life eternal, if the terrestrial country was so much +beloved by its citizens on account of human glory. + + + 17. _To what profit the Romans carried on wars, and how much they + contributed to the well-being of those whom they conquered._ + +For, as far as this life of mortals is concerned, which is spent +and ended in a few days, what does it matter under whose government +a dying man lives, if they who govern do not force him to impiety +and iniquity? Did the Romans at all harm those nations, on whom, +when subjugated, they imposed their laws, except in as far as that +was accomplished with great slaughter in war? Now, had it been done +with consent of the nations, it would have been done with greater +success, but there would have been no glory of conquest, for neither +did the Romans themselves live exempt from those laws which they +imposed on others. Had this been done without Mars and Bellona, so +that there should have been no place for victory, no one conquering +where no one had fought, would not the condition of the Romans and +of the other nations have been one and the same, especially if that +had been done at once which afterwards was done most humanely and +most acceptably, namely, the admission of all to the rights of Roman +citizens who belonged to the Roman empire, and if that had been made +the privilege of all which was formerly the privilege of a few, with +this one condition, that the humbler class who had no lands of their +own should live at the public expense--an alimentary impost, which +would have been paid with a much better grace by them into the hands +of good administrators of the republic, of which they were members, +by their own hearty consent, than it would have been paid with had it +to be extorted from them as conquered men? For I do not see what it +makes for the safety, good morals, and certainly not for the dignity, +of men, that some have conquered and others have been conquered, +except that it yields them that most insane pomp of human glory, in +which "they have received their reward," who burned with excessive +desire of it, and carried on most eager wars. For do not their lands +pay tribute? Have they any privilege of learning what the others are +not privileged to learn? Are there not many senators in the other +countries who do not even know Rome by sight? Take away outward +show,[212] and what are all men after all but men? But even though +the perversity of the age should permit that all the better men +should be more highly honoured than others, neither thus should human +honour be held at a great price, for it is smoke which has no weight. +But let us avail ourselves even in these things of the kindness of +God. Let us consider how great things they despised, how great things +they endured, what lusts they subdued for the sake of human glory, +who merited that glory, as it were, in reward for such virtues; and +let this be useful to us even in suppressing pride, so that, as that +city in which it has been promised us to reign as far surpasses this +one as heaven is distant from the earth, as eternal life surpasses +temporal joy, solid glory empty praise, or the society of angels the +society of mortals, or the glory of Him who made the sun and moon +the light of the sun and moon, the citizens of so great a country +may not seem to themselves to have done anything very great, if, in +order to obtain it, they have done some good works or endured some +evils, when those men for this terrestrial country already obtained, +did such great things, suffered such great things. And especially +are all these things to be considered, because the remission of +sins which collects citizens to the celestial country has something +in it to which a shadowy resemblance is found in that asylum of +Romulus, whither escape from the punishment of all manner of crimes +congregated that multitude with which the state was to be founded. + + + 18. _How far Christians ought to be from boasting, if they have done + anything for the love of the eternal country, when the Romans did + such great things for human glory and a terrestrial city._ + +What great thing, therefore, is it for that eternal and celestial +city to despise all the charms of this world, however pleasant, if +for the sake of this terrestrial city Brutus could even put to death +his son,--a sacrifice which the heavenly city compels no one to make? +But certainly it is more difficult to put to death one's sons, than +to do what is required to be done for the heavenly country, even +to distribute to the poor those things which were looked upon as +things to be amassed and laid up for one's children, or to let them +go, if there arise any temptation which compels us to do so, for +the sake of faith and righteousness. For it is not earthly riches +which make us or our sons happy; for they must either be lost by us +in our lifetime, or be possessed when we are dead, by whom we know +not, or perhaps by whom we would not. But it is God who makes us +happy, who is the true riches of minds. But of Brutus, even the poet +who celebrates his praises testifies that it was the occasion of +unhappiness to him that he slew his son, for he says, + + "And call his own rebellious seed + For menaced liberty to bleed. + Unhappy father! howsoe'er + The deed be judged by after days."[213] + +But in the following verse he consoles him in his unhappiness, saying, + + "His country's love shall all o'erbear." + +There are those two things, namely, liberty and the desire of human +praise, which compelled the Romans to admirable deeds. If, therefore, +for the liberty of dying men, and for the desire of human praise +which is sought after by mortals, sons could be put to death by a +father, what great thing is it, if, for the true liberty which has +made us free from the dominion of sin, and death, and the devil,--not +through the desire of human praise, but through the earnest desire of +freeing men, not from King Tarquin, but from demons and the prince +of the demons,--we should, I do not say put to death our sons, but +reckon among our sons Christ's poor ones? If, also, another Roman +chief, surnamed Torquatus, slew his son, not because he fought +against his country, but because, being challenged by an enemy, +he through youthful impetuosity fought, though for his country, +yet contrary to orders which he his father had given as general; +and this he did, notwithstanding that his son was victorious, lest +there should be more evil in the example of authority despised, than +good in the glory of slaying an enemy;--if, I say, Torquatus acted +thus, wherefore should they boast themselves, who, for the laws of +a celestial country, despise all earthly good things, which are +loved far less than sons? If Furius Camillus, who was condemned by +those who envied him, notwithstanding that he had thrown off from +the necks of his countrymen the yoke of their most bitter enemies, +the Veientes, again delivered his ungrateful country from the Gauls, +because he had no other in which he could have better opportunities +for living a life of glory;--if Camillus did thus, why should he be +extolled as having done some great thing, who, having, it may be, +suffered in the church at the hands of carnal enemies most grievous +and dishonouring injury, has not betaken himself to heretical +enemies, or himself raised some heresy against her, but has rather +defended her, as far as he was able, from the most pernicious +perversity of heretics, since there is not another church, I say not +in which one can live a life of glory, but in which eternal life can +be obtained? If Mucius, in order that peace might be made with King +Porsenna, who was pressing the Romans with a most grievous war, when +he did not succeed in slaying Porsenna, but slew another by mistake +for him, reached forth his right hand and laid it on a red-hot altar, +saying that many such as he saw him to be had conspired for his +destruction, so that Porsenna, terrified at his daring, and at the +thought of a conspiracy of such as he, without any delay recalled all +his warlike purposes, and made peace;--if, I say, Mucius did this, +who shall speak of his meritorious claims to the kingdom of heaven, +if for it he may have given to the flames not one hand, but even his +whole body, and that not by his own spontaneous act, but because he +was persecuted by another? If Curtius, spurring on his steed, threw +himself all armed into a precipitous gulf, obeying the oracles of +their gods, which had commanded that the Romans should throw into +that gulf the best thing which they possessed, and they could only +understand thereby that, since they excelled in men and arms, the +gods had commanded that an armed man should be cast headlong into +that destruction;--if he did this, shall we say that that man has +done a great thing for the eternal city who may have died by a like +death, not, however, precipitating himself spontaneously into a +gulf, but having suffered this death at the hands of some enemy of +his faith, more especially when he has received from his Lord, who +is also King of his country, a more certain oracle, "Fear not them +who kill the body, but cannot kill the soul?"[214] If the Decii +dedicated themselves to death, consecrating themselves in a form of +words, as it were, that falling, and pacifying by their blood the +wrath of the gods, they might be the means of delivering the Roman +army;--if they did this, let not the holy martyrs carry themselves +proudly, as though they had done some meritorious thing for a share +in that country where are eternal life and felicity, if even to +the shedding of their blood, loving not only the brethren for whom +it was shed, but, according as had been commanded them, even their +enemies by whom it was being shed, they have vied with one another in +faith of love and love of faith. If Marcus Pulvillus, when engaged +in dedicating a temple to Jupiter, Juno, and Minerva, received with +such indifference the false intelligence which was brought to him of +the death of his son, with the intention of so agitating him that he +should go away, and thus the glory of dedicating the temple should +fall to his colleague;--if he received that intelligence with such +indifference that he even ordered that his son should be cast out +unburied, the love of glory having overcome in his heart the grief +of bereavement, how shall any one affirm that he has done a great +thing for the preaching of the gospel, by which the citizens of the +heavenly city are delivered from divers errors, and gathered together +from divers wanderings, to whom his Lord has said, when anxious about +the burial of his father, "Follow me, and let the dead bury their +dead?"[215] Regulus, in order not to break his oath, even with his +most cruel enemies, returned to them from Rome itself, because (as +he is said to have replied to the Romans when they wished to retain +him) he could not have the dignity of an honourable citizen at Rome +after having been a slave to the Africans, and the Carthaginians put +him to death with the utmost tortures, because he had spoken against +them in the senate. If Regulus acted thus, what tortures are not to +be despised for the sake of good faith toward that country to whose +beatitude faith itself leads? Or what will a man have rendered to the +Lord for all He has bestowed upon him, if, for the faithfulness he +owes to Him, he shall have suffered such things as Regulus suffered +at the hands of his most ruthless enemies for the good faith which +he owed to them? And how shall a Christian dare vaunt himself of +his voluntary poverty, which he has chosen in order that during the +pilgrimage of this life he may walk the more disencumbered on the +way which leads to the country where the true riches are, even God +Himself;--how, I say, shall he vaunt himself for this, when he hears +or reads that Lucius Valerius, who died when he was holding the +office of consul, was so poor that his funeral expenses were paid +with money collected by the people?--or when he hears that Quintius +Cincinnatus, who, possessing only four acres of land, and cultivating +them with his own hands, was taken from the plough to be made +dictator,--an office more honourable even than that of consul,--and +that, after having won great glory by conquering the enemy, he +preferred notwithstanding to continue in his poverty? Or how shall he +boast of having done a great thing, who has not been prevailed upon +by the offer of any reward of this world to renounce his connection +with that heavenly and eternal country, when he hears that Fabricius +could not be prevailed on to forsake the Roman city by the great +gifts offered to him by Pyrrhus king of the Epirots, who promised him +the fourth part of his kingdom, but preferred to abide there in his +poverty as a private individual? For if, when their republic,--that +is, the interest of the people, the interest of the country, the +common interest,--was most prosperous and wealthy, they themselves +were so poor in their own houses, that one of them, who had already +been twice a consul, was expelled from that senate of poor men by +the censor, because he was discovered to possess ten pounds weight +of silver-plate,--since, I say, those very men by whose triumphs the +public treasury was enriched were so poor, ought not all Christians, +who make common property of their riches with a far nobler purpose, +even that (according to what is written in the Acts of the Apostles) +they may distribute to each one according to his need, and that no +one may say that anything is his own, but that all things may be +their common possession,[216]--ought they not to understand that they +should not vaunt themselves, because they do that to obtain the +society of angels, when those men did well-nigh the same thing to +preserve the glory of the Romans? + +How could these, and whatever like things are found in the Roman +history, have become so widely known, and have been proclaimed by so +great a fame, had not the Roman empire, extending far and wide, been +raised to its greatness by magnificent successes? Wherefore, through +that empire, so extensive and of so long continuance, so illustrious +and glorious also through the virtues of such great men, the reward +which they sought was rendered to their earnest aspirations, and also +examples are set before us, containing necessary admonition, in order +that we may be stung with shame if we shall see that we have not held +fast those virtues for the sake of the most glorious city of God, which +are, in whatever way, resembled by those virtues which they held fast +for the sake of the glory of a terrestrial city, and that, too, if we +shall feel conscious that we have held them fast, we may not be lifted +up with pride, because, as the apostle says, "The sufferings of the +present time are not worthy to be compared to the glory which shall be +revealed in us."[217] But so far as regards human and temporal glory, +the lives of these ancient Romans were reckoned sufficiently worthy. +Therefore, also, we see, in the light of that truth which, veiled in +the Old Testament, is revealed in the New, namely, that it is not in +view of terrestrial and temporal benefits, which divine providence +grants promiscuously to good and evil, that God is to be worshipped, +but in view of eternal life, everlasting gifts, and of the society +of the heavenly city itself;--in the light of this truth we see that +the Jews were most righteously given as a trophy to the glory of the +Romans; for we see that these Romans, who rested on earthly glory, and +sought to obtain it by virtues, such as they were, conquered those who, +in their great depravity, slew and rejected the giver of true glory, +and of the eternal city. + + + 19. _Concerning the difference between true glory and the desire + of domination._ + +There is assuredly a difference between the desire of human glory +and the desire of domination; for, though he who has an overweening +delight in human glory will be also very prone to aspire earnestly +after domination, nevertheless they who desire the true glory even of +human praise strive not to displease those who judge well of them. +For there are many good moral qualities, of which many are competent +judges, although they are not possessed by many; and by those good +moral qualities those men press on to glory, honour, and domination, +of whom Sallust says, "But they press on by the true way." + +But whosoever, without possessing that desire of glory which makes +one fear to displease those who judge his conduct, desires domination +and power, very often seeks to obtain what he loves by most open +crimes. Therefore he who desires glory presses on to obtain it either +by the true way, or certainly by deceit and artifice, wishing to +appear good when he is not. Therefore to him who possesses virtues +it is a great virtue to despise glory; for contempt of it is seen by +God, but is not manifest to human judgment. For whatever any one does +before the eyes of men in order to show himself to be a despiser of +glory, if they suspect that he is doing it in order to get greater +praise,--that is, greater glory,--he has no means of demonstrating +to the perceptions of those who suspect him that the case is really +otherwise than they suspect it to be. But he who despises the judgment +of praisers, despises also the rashness of suspectors. Their salvation, +indeed, he does not despise, if he is truly good; for so great is the +righteousness of that man who receives his virtues from the Spirit of +God, that he loves his very enemies, and so loves them that he desires +that his haters and detractors may be turned to righteousness, and +become his associates, and that not in an earthly but in a heavenly +country. But with respect to his praisers, though he sets little value +on their praise, he does not set little value on their love; neither +does he elude their praise, lest he should forfeit their love. And, +therefore, he strives earnestly to have their praises directed to Him +from whom every one receives whatever in him is truly praiseworthy. But +he who is a despiser of glory, but is greedy of domination, exceeds +the beasts in the vices of cruelty and luxuriousness. Such, indeed, +were certain of the Romans, who, wanting the love of esteem, wanted +not the thirst for domination; and that there were many such, history +testifies. But it was Nero Cæsar who was the first to reach the summit, +and, as it were, the citadel, of this vice; for so great was his +luxuriousness, that one would have thought there was nothing manly to +be dreaded in him, and such his cruelty, that, had not the contrary +been known, no one would have thought there was anything effeminate in +his character. Nevertheless power and domination are not given even to +such men save by the providence of the most high God, when He judges +that the state of human affairs is worthy of such lords. The divine +utterance is clear on this matter; for the Wisdom of God thus speaks: +"By me kings reign, and tyrants possess the land."[218] But, that it +may not be thought that by "tyrants" is meant, not wicked and impious +kings, but brave men, in accordance with the ancient use of the word, +as when Virgil says, + + "For know that treaty may not stand + Where king greets king and joins not hand,"[219] + +in another place it is most unambiguously said of God, that He +"maketh the man who is an hypocrite to reign on account of the +perversity of the people."[220] Wherefore, though I have, according +to my ability, shown for what reason God, who alone is true and just, +helped forward the Romans, who were good according to a certain +standard of an earthly state, to the acquirement of the glory of so +great an empire, there may be, nevertheless, a more hidden cause, +known better to God than to us, depending on the diversity of the +merits of the human race. Among all who are truly pious, it is at all +events agreed that no one without true piety--that is, true worship +of the true God--can have true virtue; and that it is not true virtue +which is the slave of human praise. Though, nevertheless, they who +are not citizens of the eternal city, which is called the city of +God in the sacred Scriptures, are more useful to the earthly city +when they possess even that virtue than if they had not even that. +But there could be nothing more fortunate for human affairs than +that, by the mercy of God, they who are endowed with true piety of +life, if they have the skill for ruling people, should also have the +power. But such men, however great virtues they may possess in this +life, attribute it solely to the grace of God that He has bestowed +it on them--willing, believing, seeking. And, at the same time, they +understand how far they are short of that perfection of righteousness +which exists in the society of those holy angels for which they are +striving to fit themselves. But however much that virtue may be +praised and cried up, which without true piety is the slave of human +glory, it is not at all to be compared even to the feeble beginnings +of the virtue of the saints, whose hope is placed in the grace and +mercy of the true God. + + + 20. _That it is as shameful for the virtues to serve human glory + as bodily pleasure._ + +Philosophers,--who place the end of human good in virtue itself, in +order to put to shame certain other philosophers, who indeed approve +of the virtues, but measure them all with reference to the end of +bodily pleasure, and think that this pleasure is to be sought for its +own sake, but the virtues on account of pleasure,--are wont to paint +a kind of word-picture, in which Pleasure sits like a luxurious queen +on a royal seat, and all the virtues are subjected to her as slaves, +watching her nod, that they may do whatever she shall command. She +commands Prudence to be ever on the watch to discover how Pleasure +may rule, and be safe. Justice she orders to grant what benefits +she can, in order to secure those friendships which are necessary +for bodily pleasure; to do wrong to no one, lest, on account of the +breaking of the laws, Pleasure be not able to live in security. +Fortitude she orders to keep her mistress, that is, Pleasure, bravely +in her mind, if any affliction befall her body which does not +occasion death, in order that by remembrance of former delights she +may mitigate the poignancy of present pain. Temperance she commands +to take only a certain quantity even of the most favourite food, +lest, through immoderate use, anything prove hurtful by disturbing +the health of the body, and thus Pleasure, which the Epicureans make +to consist chiefly in the health of the body, be grievously offended. +Thus the virtues, with the whole dignity of their glory, will be the +slaves of Pleasure, as of some imperious and disreputable woman. + +There is nothing, say our philosophers, more disgraceful and +monstrous than this picture, and which the eyes of good men can +less endure. And they say the truth. But I do not think that the +picture would be sufficiently becoming, even if it were made so that +the virtues should be represented as the slaves of human glory; +for, though that glory be not a luxurious woman, it is nevertheless +puffed up, and has much vanity in it. Wherefore it is unworthy +of the solidity and firmness of the virtues to represent them as +serving this glory, so that Prudence shall provide nothing, Justice +distribute nothing, Temperance moderate nothing, except to the end +that men may be pleased and vainglory served. Nor will they be able +to defend themselves from the charge of such baseness, whilst they, +by way of being despisers of glory, disregard the judgment of other +men, seem to themselves wise, and please themselves. For their +virtue,--if, indeed, it is virtue at all,--is only in another way +subjected to human praise; for he who seeks to please himself seeks +still to please man. But he who, with true piety towards God, whom +he loves, believes, and hopes in, fixes his attention more on those +things in which he displeases himself, than on those things, if there +are any such, which please himself, or rather, not himself, but the +truth, does not attribute that by which he can now please the truth +to anything but to the mercy of Him whom he has feared to displease, +giving thanks for what in him is healed, and pouring out prayers for +the healing of that which is yet unhealed. + + + 21. _That the Roman dominion was granted by Him from whom is all + power, and by whose providence all things are ruled._ + +These things being so, we do not attribute the power of giving kingdoms +and empires to any save to the true God, who gives happiness in the +kingdom of heaven to the pious alone, but gives kingly power on earth +both to the pious and the impious, as it may please Him, whose good +pleasure is always just. For though we have said something about the +principles which guide His administration, in so far as it has seemed +good to Him to explain it, nevertheless it is too much for us, and far +surpasses our strength, to discuss the hidden things of men's hearts, +and by a clear examination to determine the merits of various kingdoms. +He, therefore, who is the one true God, who never leaves the human +race without just judgment and help, gave a kingdom to the Romans when +He would, and as great as He would, as He did also to the Assyrians, +and even the Persians, by whom, as their own books testify, only two +gods are worshipped, the one good and the other evil,--to say nothing +concerning the Hebrew people, of whom I have already spoken as much +as seemed necessary, who, as long as they were a kingdom, worshipped +none save the true God. The same, therefore, who gave to the Persians +harvests, though they did not worship the goddess Segetia, who gave the +other blessings of the earth, though they did not worship the many gods +which the Romans supposed to preside, each one over some particular +thing, or even many of them over each several thing,--He, I say, gave +the Persians dominion, though they worshipped none of those gods to +whom the Romans believed themselves indebted for the empire. And the +same is true in respect of men as well as nations. He who gave power to +Marius gave it also to Caius Cæsar; He who gave it to Augustus gave it +also to Nero; He also who gave it to the most benignant emperors, the +Vespasians, father and son, gave it also to the cruel Domitian; and, +finally, to avoid the necessity of going over them all, He who gave it +to the Christian Constantine gave it also to the apostate Julian, whose +gifted mind was deceived by a sacrilegious and detestable curiosity, +stimulated by the love of power. And it was because he was addicted +through curiosity to vain oracles, that, confident of victory, he +burned the ships which were laden with the provisions necessary for +his army, and therefore, engaging with hot zeal in rashly audacious +enterprises, he was soon slain, as the just consequence of his +recklessness, and left his army unprovisioned in an enemy's country, +and in such a predicament that it never could have escaped, save by +altering the boundaries of the Roman empire, in violation of that omen +of the god Terminus of which I spoke in the preceding book; for the god +Terminus yielded to necessity, though he had not yielded to Jupiter. +Manifestly these things are ruled and governed by the one God according +as He pleases; and if His motives are hid, are they therefore unjust? + + + 22. _The durations and issues of war depend on the will of God._ + +Thus also the durations of wars are determined by Him as He may see +meet, according to His righteous will, and pleasure, and mercy, to +afflict or to console the human race, so that they are sometimes of +longer, sometimes of shorter duration. The war of the Pirates and the +third Punic war were terminated with incredible celerity. Also the war +of the fugitive gladiators, though in it many Roman generals and the +consuls were defeated, and Italy was terribly wasted and ravaged, was +nevertheless ended in the third year, having itself been, during its +continuance, the end of much. The Picentes, the Marsi, and the Peligni, +not distant but Italian nations, after a long and most loyal servitude +under the Roman yoke, attempted to raise their heads into liberty, +though many nations had now been subjected to the Roman power, and +Carthage had been overthrown. In this Italian war the Romans were very +often defeated, and two consuls perished, besides other noble senators; +nevertheless this calamity was not protracted over a long space of +time, for the fifth year put an end to it. But the second Punic war, +lasting for the space of eighteen years, and occasioning the greatest +disasters and calamities to the republic, wore out and well-nigh +consumed the strength of the Romans; for in two battles about seventy +thousand Romans fell.[221] The first Punic war was terminated after +having been waged for three-and-twenty years. The Mithridatic war was +waged for forty years. And that no one may think that in the early and +much belauded times of the Romans they were far braver and more able +to bring wars to a speedy termination, the Samnite war was protracted +for nearly fifty years; and in this war the Romans were so beaten that +they were even put under the yoke. But because they did not love glory +for the sake of justice, but seemed rather to have loved justice for +the sake of glory, they broke the peace and the treaty which had been +concluded. These things I mention, because many, ignorant of past +things, and some also dissimulating what they know, if in Christian +times they see any war protracted a little longer than they expected, +straightway make a fierce and insolent attack on our religion, +exclaiming that, but for it, the deities would have been supplicated +still, according to ancient rites; and then, by that bravery of the +Romans, which, with the help of Mars and Bellona, speedily brought to +an end such great wars, this war also would be speedily terminated. Let +them, therefore, who have read history recollect what long-continued +wars, having various issues and entailing woful slaughter, were waged +by the ancient Romans, in accordance with the general truth that +the earth, like the tempestuous deep, is subject to agitations from +tempests--tempests of such evils, in various degrees,--and let them +sometimes confess what they do not like to own, and not, by madly +speaking against God, destroy themselves and deceive the ignorant. + + + 23. _Concerning the war in which Radagaisus, king of the Goths, a + worshipper of demons, was conquered in one day, with all his + mighty forces._ + +Nevertheless they do not mention with thanksgiving what God has very +recently, and within our own memory, wonderfully and mercifully done, +but as far as in them lies they attempt, if possible, to bury it in +universal oblivion. But should we be silent about these things, we +should be in like manner ungrateful. When Radagaisus, king of the +Goths, having taken up his position very near to the city, with a +vast and savage army, was already close upon the Romans, he was in +one day so speedily and so thoroughly beaten, that, whilst not even +one Roman was wounded, much less slain, far more than a hundred +thousand of his army were prostrated, and he himself and his sons, +having been captured, were forthwith put to death, suffering the +punishment they deserved. For had so impious a man, with so great and +so impious a host, entered the city, whom would he have spared? what +tombs of the martyrs would he have respected? in his treatment of what +person would he have manifested the fear of God? whose blood would +he have refrained from shedding? whose chastity would he have wished +to preserve inviolate? But how loud would they not have been in the +praises of their gods! How insultingly they would have boasted, saying +that Radagaisus had conquered, that he had been able to achieve such +great things, because he propitiated and won over the gods by daily +sacrifices,--a thing which the Christian religion did not allow the +Romans to do! For when he was approaching to those places where he +was overwhelmed at the nod of the Supreme Majesty, as his fame was +everywhere increasing, it was being told us at Carthage that the +pagans were believing, publishing, and boasting, that he, on account +of the help and protection of the gods friendly to him, because of +the sacrifices which he was said to be daily offering to them, would +certainly not be conquered by those who were not performing such +sacrifices to the Roman gods, and did not even permit that they should +be offered by any one. And now these wretched men do not give thanks +to God for His great mercy, who, having determined to chastise the +corruption of men, which was worthy of far heavier chastisement than +the corruption of the barbarians, tempered His indignation with such +mildness as, in the first instance, to cause that the king of the Goths +should be conquered in a wonderful manner, lest glory should accrue to +demons, whom he was known to be supplicating, and thus the minds of +the weak should be overthrown; and then, afterwards, to cause that, +when Rome was to be taken, it should be taken by those barbarians +who, contrary to any custom of all former wars, protected, through +reverence for the Christian religion, those who fled for refuge to +the sacred places, and who so opposed the demons themselves, and the +rites of impious sacrifices, that they seemed to be carrying on a far +more terrible war with them than with men. Thus did the true Lord +and Governor of things both scourge the Romans mercifully, and, by +the marvellous defeat of the worshippers of demons, show that those +sacrifices were not necessary even for the safety of present things; +so that, by those who do not obstinately hold out, but prudently +consider the matter, true religion may not be deserted on account of +the urgencies of the present time, but may be more clung to in most +confident expectation of eternal life. + + + 24. _What was the happiness of the Christian emperors, and how far + it was true happiness._ + +For neither do we say that certain Christian emperors were therefore +happy because they ruled a long time, or, dying a peaceful death, +left their sons to succeed them in the empire, or subdued the +enemies of the republic, or were able both to guard against and to +suppress the attempt of hostile citizens rising against them. These +and other gifts or comforts of this sorrowful life even certain +worshippers of demons have merited to receive, who do not belong to +the kingdom of God to which these belong; and this is to be traced to +the mercy of God, who would not have those who believe in Him desire +such things as the highest good. But we say that they are happy if +they rule justly; if they are not lifted up amid the praises of those +who pay them sublime honours, and the obsequiousness of those who +salute them with an excessive humility, but remember that they are +men; if they make their power the handmaid of His majesty by using +it for the greatest possible extension of His worship; if they fear, +love, worship God; if more than their own they love that kingdom +in which they are not afraid to have partners; if they are slow to +punish, ready to pardon; if they apply that punishment as necessary +to government and defence of the republic, and not in order to +gratify their own enmity; if they grant pardon, not that iniquity may +go unpunished, but with the hope that the transgressor may amend his +ways; if they compensate with the lenity of mercy and the liberality +of benevolence for whatever severity they may be compelled to +decree; if their luxury is as much restrained as it might have been +unrestrained; if they prefer to govern depraved desires rather than +any nation whatever; and if they do all these things, not through +ardent desire of empty glory, but through love of eternal felicity, +not neglecting to offer to the true God, who is their God, for their +sins, the sacrifices of humility, contrition, and prayer. Such +Christian emperors, we say, are happy in the present time by hope, +and are destined to be so in the enjoyment of the reality itself, +when that which we wait for shall have arrived. + + + 25. _Concerning the prosperity which God granted to the Christian + emperor Constantine._ + +For the good God, lest men, who believe that He is to be worshipped +with a view to eternal life, should think that no one could attain +to all this high estate, and to this terrestrial dominion, unless he +should be a worshipper of the demons,--supposing that these spirits +have great power with respect to such things,--for this reason He +gave to the Emperor Constantine, who was not a worshipper of demons, +but of the true God Himself, such fulness of earthly gifts as no +one would even dare wish for. To him also He granted the honour of +founding a city,[222] a companion to the Roman empire, the daughter, +as it were, of Rome itself, but without any temple or image of the +demons. He reigned for a long period as sole emperor, and unaided +held and defended the whole Roman world. In conducting and carrying +on wars he was most victorious; in overthrowing tyrants he was most +successful. He died at a great age, of sickness and old age, and +left his sons to succeed him in the empire.[223] But again, lest any +emperor should become a Christian in order to merit the happiness +of Constantine, when every one should be a Christian for the sake +of eternal life, God took away Jovian far sooner than Julian, and +permitted that Gratian should be slain by the sword of a tyrant. But +in his case there was far more mitigation of the calamity than in the +case of the great Pompey, for he could not be avenged by Cato, whom +he had left, as it were, heir to the civil war. But Gratian, though +pious minds require not such consolations, was avenged by Theodosius, +whom he had associated with himself in the empire, though he had a +little brother of his own, being more desirous of a faithful alliance +than of extensive power. + + + 26. _On the faith and piety of Theodosius Augustus._ + +And on this account, Theodosius not only preserved during the +lifetime of Gratian that fidelity which was due to him, but also, +after his death, he, like a true Christian, took his little brother +Valentinian under his protection, as joint emperor, after he had +been expelled by Maximus, the murderer of his father. He guarded +him with paternal affection, though he might without any difficulty +have got rid of him, being entirely destitute of all resources, +had he been animated with the desire of extensive empire, and not +with the ambition of being a benefactor. It was therefore a far +greater pleasure to him, when he had adopted the boy, and preserved +to him his imperial dignity, to console him by his very humanity +and kindness. Afterwards, when that success was rendering Maximus +terrible, Theodosius, in the midst of his perplexing anxieties, +was not drawn away to follow the suggestions of a sacrilegious and +unlawful curiosity, but sent to John, whose abode was in the desert +of Egypt,--for he had learned that this servant of God (whose fame +was spreading abroad) was endowed with the gift of prophecy,--and +from him he received assurance of victory. Immediately the slayer +of the tyrant Maximus, with the deepest feelings of compassion and +respect, restored the boy Valentinianus to his share in the empire +from which he had been driven. Valentinianus being soon after +slain by secret assassination, or by some other plot or accident, +Theodosius, having again received a response from the prophet, and +placing entire confidence in it, marched against the tyrant Eugenius, +who had been unlawfully elected to succeed that emperor, and defeated +his very powerful army, more by prayer than by the sword. Some +soldiers who were at the battle reported to me that all the missiles +they were throwing were snatched from their hands by a vehement wind, +which blew from the direction of Theodosius' army upon the enemy; nor +did it only drive with greater velocity the darts which were hurled +against them, but also turned back upon their own bodies the darts +which they themselves were throwing. And therefore the poet Claudian, +although an alien from the name of Christ, nevertheless says in his +praises of him, "O prince, too much beloved by God, for thee Æolus +pours armed tempests from their caves; for thee the air fights, and +the winds with one accord obey thy bugles."[224] But the victor, as +he had believed and predicted, overthrew the statues of Jupiter, +which had been, as it were, consecrated by I know not what kind of +rites against him, and set up in the Alps. And the thunderbolts of +these statues, which were made of gold, he mirthfully and graciously +presented to his couriers, who (as the joy of the occasion permitted) +were jocularly saying that they would be most happy to be struck +by such thunderbolts. The sons of his own enemies, whose fathers +had been slain not so much by his orders as by the vehemence of +war, having fled for refuge to a church, though they were not yet +Christians, he was anxious, taking advantage of the occasion, to +bring over to Christianity, and treated them with Christian love. +Nor did he deprive them of their property, but, besides allowing +them to retain it, bestowed on them additional honours. He did not +permit private animosities to affect the treatment of any man after +the war. He was not like Cinna, and Marius, and Sylla, and other +such men, who wished not to finish civil wars even when they were +finished, but rather grieved that they had arisen at all, than wished +that when they were finished they should harm any one. Amid all +these events, from the very commencement of his reign, he did not +cease to help the troubled church against the impious by most just +and merciful laws, which the heretical Valens, favouring the Arians, +had vehemently afflicted. Indeed, he rejoiced more to be a member of +this church than he did to be a king upon the earth. The idols of the +Gentiles he everywhere ordered to be overthrown, understanding well +that not even terrestrial gifts are placed in the power of demons, +but in that of the true God. And what could be more admirable than +his religious humility, when, compelled by the urgency of certain of +his intimates, he avenged the grievous crime of the Thessalonians, +which at the prayer of the bishops he had promised to pardon, and, +being laid hold of by the discipline of the church, did penance +in such a way that the sight of his imperial loftiness prostrated +made the people who were interceding for him weep more than the +consciousness of offence had made them fear it when enraged? These +and other similar good works, which it would be long to tell, he +carried with him from this world of time, where the greatest human +nobility and loftiness are but vapour. Of these works the reward is +eternal happiness, of which God is the giver, though only to those +who are sincerely pious. But all other blessings and privileges of +this life, as the world itself, light, air, earth, water, fruits, and +the soul of man himself, his body, senses, mind, life, He lavishes on +good and bad alike. And among these blessings is also to be reckoned +the possession of an empire, whose extent He regulates according to +the requirements of His providential government at various times. +Whence, I see, we must now answer those who, being confuted and +convicted by the most manifest proofs, by which it is shown that for +obtaining these terrestrial things, which are all the foolish desire +to have, that multitude of false gods is of no use, attempt to assert +that the gods are to be worshipped with a view to the interest, not +of the present life, but of that which is to come after death. For +as to those who, for the sake of the friendship of this world, are +willing to worship vanities, and do not grieve that they are left to +their puerile understandings, I think they have been sufficiently +answered in these five books; of which books, when I had published +the first three, and they had begun to come into the hands of many, +I heard that certain persons were preparing against them an answer +of some kind or other in writing. Then it was told me that they had +already written their answer, but were waiting a time when they +could publish it without danger. Such persons I would advise not to +desire what cannot be of any advantage to them; for it is very easy +for a man to seem to himself to have answered arguments, when he has +only been unwilling to be silent. For what is more loquacious than +vanity? And though it be able, if it like, to shout more loudly than +the truth, it is not, for all that, more powerful than the truth. +But let men consider diligently all the things that we have said, +and if, perchance, judging without party spirit, they shall clearly +perceive that they are such things as may rather be shaken than torn +up by their most impudent garrulity, and, as it were, satirical and +mimic levity, let them restrain their absurdities, and let them +choose rather to be corrected by the wise than to be lauded by the +foolish. For if they are waiting an opportunity, not for liberty to +speak the truth, but for licence to revile, may not that befall them +which Tully says concerning some one, "Oh, wretched man! who was at +liberty to sin?"[225] Wherefore, whoever he be who deems himself +happy because of licence to revile, he would be far happier if that +were not allowed him at all; for he might all the while, laying aside +empty boast, be contradicting those to whose views he is opposed by +way of free consultation with them, and be listening, as it becomes +him, honourably, gravely, candidly, to all that can be adduced by +those whom he consults by friendly disputation. + +FOOTNOTES: + +[183] Written in the year 415. + +[184] On the application of astrology to national prosperity, and the +success of certain religions, see Lecky's _Rationalism_, i. 303. + +[185] This fact is not recorded in any of the extant works of +Hippocrates or Cicero. Vives supposes it may have found place in +Cicero's book, _De Fato_. + +[186] _i.e._ the potter. + +[187] _Epist._ 107. + +[188] _Odyssey_, xviii. 136, 137. + +[189] _De Divinat._ ii. + +[190] Ps. xiv. 1 + +[191] Book iii. + +[192] Ps. lxii. 11, 12. + +[193] Sallust, _Cat._ vii. + +[194] Augustine notes that the name consul is derived from +_consulere_, and thus signifies a more benign rule than that of a rex +(from _regere_), or dominus (from _dominari_). + +[195] _Æneid_, viii. 646. + +[196] _Æneid_, i. 279. + +[197] _Ibid._ vi. 847. + +[198] Sallust, _in Cat._ c. xi. + +[199] Sallust, _in Cat._ c. 54. + +[200] 2 Cor. i. 12. + +[201] Gal. vi. 4. + +[202] Sallust, _in Cat._ c. 52. + +[203] Horace, _Epist._ i. 1. 36, 37. + +[204] Hor. _Carm._ ii. 2. + +[205] _Tusc. Quæst._ i. 2. + +[206] John v. 44. + +[207] John xii. 43. + +[208] Matt. x. 33. + +[209] Matt. vi. 1. + +[210] Matt. v. 16. + +[211] Matt. vi. 2. + +[212] _Jactantia._ + +[213] _Æneid_, vi. 820. + +[214] Matt. x. 28. + +[215] Matt. viii. 22. + +[216] Acts ii. 45. + +[217] Rom. viii. 18. + +[218] Prov. viii. 15. + +[219] _Æneid_, vii. 266. + +[220] Job xxxiv. 30. + +[221] Of the Thrasymene Lake and Cannæ. + +[222] Constantinople. + +[223] Constantius, Constantine, and Constans. + +[224] _Panegyr. de tertio Honorii consulatu._ + +[225] _Tusc. Quaest._ v. 19. + + + + + BOOK SIXTH. + + ARGUMENT. + + HITHERTO THE ARGUMENT HAS BEEN CONDUCTED AGAINST THOSE WHO BELIEVE + THAT THE GODS ARE TO BE WORSHIPPED FOR THE SAKE OF TEMPORAL + ADVANTAGES, NOW IT IS DIRECTED AGAINST THOSE WHO BELIEVE THAT + THEY ARE TO BE WORSHIPPED FOR THE SAKE OF ETERNAL LIFE. AUGUSTINE + DEVOTES THE FIVE FOLLOWING BOOKS TO THE CONFUTATION OF THIS + LATTER BELIEF, AND FIRST OF ALL SHOWS HOW MEAN AN OPINION OF + THE GODS WAS HELD BY VARRO HIMSELF, THE MOST ESTEEMED WRITER + ON HEATHEN THEOLOGY. OF THIS THEOLOGY AUGUSTINE ADOPTS VARRO'S + DIVISION INTO THREE KINDS, MYTHICAL, NATURAL, AND CIVIL; AND AT + ONCE DEMONSTRATES THAT NEITHER THE MYTHICAL NOR THE CIVIL CAN + CONTRIBUTE ANYTHING TO THE HAPPINESS OF THE FUTURE LIFE. + + + PREFACE. + +In the five former books, I think I have sufficiently disputed +against those who believe that the many false gods, which the +Christian truth shows to be useless images, or unclean spirits and +pernicious demons, or certainly creatures, not the Creator, are to be +worshipped for the advantage of this mortal life, and of terrestrial +affairs, with that rite and service which the Greeks call λατρεία, +and which is due to the one true God. And who does not know that, +in the face of excessive stupidity and obstinacy, neither these +five nor any other number of books whatsoever could be enough, +when it is esteemed the glory of vanity to yield to no amount of +strength on the side of truth,--certainly to his destruction over +whom so heinous a vice tyrannizes? For, notwithstanding all the +assiduity of the physician who attempts to effect a cure, the disease +remains unconquered, not through any fault of his, but because of +the incurableness of the sick man. But those who thoroughly weigh +the things which they read, having understood and considered them, +without any, or with no great and excessive degree of that obstinacy +which belongs to a long-cherished error, will more readily judge +that, in the five books already finished, we have done more than +the necessity of the question demanded, than that we have given +it less discussion than it required. And they cannot have doubted +but that all the hatred which the ignorant attempt to bring upon +the Christian religion on account of the disasters of this life, +and the destruction and change which befall terrestrial things, +whilst the learned do not merely dissimulate, but encourage that +hatred, contrary to their own consciences, being possessed by a mad +impiety;--they cannot have doubted, I say, but that this hatred +is devoid of right reflection and reason, and full of most light +temerity, and most pernicious animosity. + + + 1. _Of those who maintain that they worship the gods not for the + sake of temporal, but eternal advantages._ + +Now, as, in the next place (as the promised order demands), those are +to be refuted and taught who contend that the gods of the nations, +which the Christian truth destroys, are to be worshipped not on account +of this life, but on account of that which is to be after death, I +shall do well to commence my disputation with the truthful oracle of +the holy psalm, "Blessed is the man whose hope is the Lord God, and who +respecteth not Vanities and lying follies."[226] Nevertheless, in all +vanities and lying follies the philosophers are to be listened to with +far more toleration, who have repudiated those opinions and errors of +the people; for the people set up images to the deities, and either +feigned concerning those whom they call immortal gods many false and +unworthy things, or believed them, already feigned, and, when believed, +mixed them up with their worship and sacred rites. + +With those men who, though not by free avowal of their convictions, do +still testify that they disapprove of those things by their muttering +disapprobation during disputations on the subject, it may not be +very far amiss to discuss the following question: Whether, for the +sake of the life which is to be after death, we ought to worship, +not the one God, who made all creatures spiritual and corporeal, but +those many gods who, as some of these philosophers hold, were made by +that one God, and placed by Him in their respective sublime spheres, +and are therefore considered more excellent and more noble than all +the others?[227] But who will assert that it must be affirmed and +contended that those gods, certain of whom I have mentioned in the +fourth book,[228] to whom are distributed, each to each, the charges +of minute things, do bestow eternal life? But will those most skilled +and most acute men, who glory in having written for the great benefit +of men, to teach on what account each god is to be worshipped, and +what is to be sought from each, lest with most disgraceful absurdity, +such as a mimic is wont for the sake of merriment to exhibit, water +should be sought from Liber, wine from the Lymphs,--will those men +indeed affirm to any man supplicating the immortal gods, that when he +shall have asked wine from the Lymphs, and they shall have answered +him, "We have water, seek wine from Liber," he may rightly say, "If +ye have not wine, at least give me eternal life?" What more monstrous +than this absurdity? Will not these Lymphs,--for they are wont to be +very easily made laugh,[229]--laughing loudly (if they do not attempt +to deceive like demons), answer the suppliant, "O man, dost thou think +that we have life (_vitam_) in our power, who thou hearest have not +even the vine (_vitem_)?" It is therefore most impudent folly to seek +and hope for eternal life from such gods as are asserted so to preside +over the separate minute concernments of this most sorrowful and short +life, and whatever is useful for supporting and propping it, as that +if anything which is under the care and power of one be sought from +another, it is so incongruous and absurd that it appears very like to +mimic drollery,--which, when it is done by mimics knowing what they are +doing, is deservedly laughed at in the theatre, but when it is done by +foolish persons, who do not know better, is more deservedly ridiculed +in the world. Wherefore, as concerns those gods which the states have +established, it has been cleverly invented and handed down to memory +by learned men, what god or goddess is to be supplicated in relation +to every particular thing,--what, for instance, is to be sought from +Liber, what from the Lymphs, what from Vulcan, and so of all the rest, +some of whom I have mentioned in the fourth book, and some I have +thought right to omit. Further, if it is an error to seek wine from +Ceres, bread from Liber, water from Vulcan, fire from the Lymphs, how +much greater absurdity ought it to be thought, if supplication be made +to any one of these for eternal life? + +Wherefore, if, when we were inquiring what gods or goddesses are +to be believed to be able to confer earthly kingdoms upon men, all +things having been discussed, it was shown to be very far from the +truth to think that even terrestrial kingdoms are established by any +of those many false deities, is it not most insane impiety to believe +that eternal life, which is, without any doubt or comparison, to be +preferred to all terrestrial kingdoms, can be given to any one by any +of these gods? For the reason why such gods seemed to us not to be +able to give even an earthly kingdom, was not because they are very +great and exalted, whilst that is something small and abject, which +they, in their so great sublimity, would not condescend to care for, +but because, however deservedly any one may, in consideration of +human frailty, despise the falling pinnacles of an earthly kingdom, +these gods have presented such an appearance as to seem most unworthy +to have the granting and preserving of even those entrusted to them; +and consequently, if (as we have taught in the two last books of our +work, where this matter is treated of) no god out of all that crowd, +either belonging to, as it were, the plebeian or to the noble gods, +is fit to give mortal kingdoms to mortals, how much less is he able +to make immortals of mortals? + +And more than this, if, according to the opinion of those with whom we +are now arguing, the gods are to be worshipped, not on account of the +present life, but of that which is to be after death, then, certainly, +they are not to be worshipped on account of those particular things +which are distributed and portioned out (not by any law of rational +truth, but by mere vain conjecture) to the power of such gods, as +they believe they ought to be worshipped, who contend that their +worship is necessary for all the desirable things of this mortal life, +against whom I have disputed sufficiently, as far as I was able, in +the five preceding books. These things being so, if the age itself +of those who worshipped the goddess Juventas should be characterized +by remarkable vigour, whilst her despisers should either die within +the years of youth, or should, during that period, grow cold as with +the torpor of old age; if bearded Fortuna should cover the cheeks of +her worshippers more handsomely and more gracefully than all others, +whilst we should see those by whom she was despised either altogether +beardless or ill-bearded; even then we should most rightly say, that +thus far these several gods had power, limited in some way by their +functions, and that, consequently, neither ought eternal life to be +sought from Juventas, who could not give a beard, nor ought any good +thing after this life to be expected from Fortuna Barbata, who has +no power even in this life to give the age itself at which the beard +grows. But now, when their worship is necessary not even on account of +those very things which they think are subjected to their power,--for +many worshippers of the goddess Juventas have not been at all vigorous +at that age, and many who do not worship her rejoice in youthful +strength; and also many suppliants of Fortuna Barbata have either not +been able to attain to any beard at all, not even an ugly one, although +they who adore her in order to obtain a beard are ridiculed by her +bearded despisers,--is the human heart really so foolish as to believe +that that worship of the gods, which it acknowledges to be vain and +ridiculous with respect to those very temporal and swiftly passing +gifts, over each of which one of these gods is said to preside, is +fruitful in results with respect to eternal life? And that they are +able to give eternal life has not been affirmed even by those who, that +they might be worshipped by the silly populace, distributed in minute +division among them these temporal occupations, that none of them might +sit idle; for they had supposed the existence of an exceedingly great +number. + + + 2. _What we are to believe that Varro thought concerning the gods + of the nations, whose various kinds and sacred rites he has + shown to be such that he would have acted more reverently + towards them had he been altogether silent concerning them._ + +Who has investigated those things more carefully than Marcus Varro? +Who has discovered them more learnedly? Who has considered them more +attentively? Who has distinguished them more acutely? Who has written +about them more diligently and more fully?--who, though he is less +pleasing in his eloquence, is nevertheless so full of instruction +and wisdom, that in all the erudition which we call secular, but +they liberal, he will teach the student of things as much as Cicero +delights the student of words. And even Tully himself renders him +such testimony, as to say in his Academic books that he had held that +disputation which is there carried on with Marcus Varro, "a man," he +adds, "unquestionably the acutest of all men, and, without any doubt, +the most learned."[230] He does not say the most eloquent or the most +fluent, for in reality he was very deficient in this faculty, but he +says, "of all men the most acute." And in those books,--that is, the +Academic,--where he contends that all things are to be doubted, he +adds of him, "without any doubt the most learned." In truth, he was +so certain concerning this thing, that he laid aside that doubt which +he is wont to have recourse to in all things, as if, when about to +dispute in favour of the doubt of the Academics, he had, with respect +to this one thing, forgotten that he was an Academic. But in the first +book, when he extols the literary works of the same Varro, he says, +"Us straying and wandering in our own city like strangers, thy books, +as it were, brought home, that at length we might come to know of who +we were and where we were. Thou hast opened up to us the age of the +country, the distribution of seasons, the laws of sacred things, and of +the priests; thou hast opened up to us domestic and public discipline; +thou hast pointed out to us the proper places for religious ceremonies, +and hast informed us concerning sacred places. Thou hast shown us the +names, kinds, offices, causes of all divine and human things."[231] + +This man, then, of so distinguished and excellent acquirements, and, +as Terentian briefly says of him in a most elegant verse, + + "Varro, a man universally informed,"[232] + +who read so much that we wonder when he had time to write, wrote so +much that we can scarcely believe any one could have read it all,--this +man, I say, so great in talent, so great in learning, had he been an +opposer and destroyer of the so-called divine things of which he wrote, +and had he said that they pertained to superstition rather than to +religion, might perhaps, even in that case, not have written so many +things which are ridiculous, contemptible, detestable. But when he so +worshipped these same gods, and so vindicated their worship, as to say, +in that same literary work of his, that he was afraid lest they should +perish, not by an assault by enemies, but by the negligence of the +citizens, and that from this ignominy they are being delivered by him, +and are being laid up and preserved in the memory of the good by means +of such books, with a zeal far more beneficial than that through which +Metellus is declared to have rescued the sacred things of Vesta from +the flames, and Æneas to have rescued the Penates from the burning of +Troy; and when he, nevertheless, gives forth such things to be read by +succeeding ages as are deservedly judged by wise and unwise to be unfit +to be read, and to be most hostile to the truth of religion; what ought +we to think but that a most acute and learned man,--not, however, made +free by the Holy Spirit,--was overpowered by the custom and laws of his +state, and, not being able to be silent about those things by which he +was influenced, spoke of them under pretence of commending religion? + + + 3. _Varro's distribution of his book which he composed concerning + the antiquities of human and divine things._ + +He wrote forty-one books of antiquities. These he divided into human +and divine things. Twenty-five he devoted to human things, sixteen +to divine things; following this plan in that division,--namely, +to give six books to each of the four divisions of human things. +For he directs his attention to these considerations: who perform, +where they perform, when they perform, what they perform. Therefore +in the first six books he wrote concerning men; in the second six, +concerning places; in the third six, concerning times; in the fourth +and last six, concerning things. Four times six, however, make only +twenty-four. But he placed at the head of them one separate work, +which spoke of all these things conjointly. + +In divine things, the same order he preserved throughout, as far as +concerns those things which are performed to the gods. For sacred +things are performed by men in places and times. These four things +I have mentioned he embraced in twelve books, allotting three to +each. For he wrote the first three concerning men, the following +three concerning places, the third three concerning times, and the +fourth three concerning sacred rites,--showing who should perform, +where they should perform, when they should perform, what they should +perform, with most subtle distinction. But because it was necessary +to say--and that especially was expected--to whom they should perform +sacred rites, he wrote concerning the gods themselves the last three +books; and these five times three made fifteen. But they are in all, +as we have said, sixteen. For he put also at the beginning of these +one distinct book, speaking by way of introduction of all which +follows; which being finished, he proceeded to subdivide the first +three in that fivefold distribution which pertain to men, making +the first concerning high priests, the second concerning augurs, +the third concerning the fifteen men presiding over the sacred +ceremonies.[233] The second three he made concerning places, speaking +in one of them concerning their chapels, in the second concerning +their temples, and in the third concerning religious places. The +next three which follow these, and pertain to times,--that is, to +festival days,--he distributed so as to make one concerning holidays, +the other concerning the circus games, and the third concerning +scenic plays. Of the fourth three, pertaining to sacred things, he +devoted one to consecrations, another to private, the last to public, +sacred rites. In the three which remain, the gods themselves follow +this pompous train, as it were, for whom all this culture has been +expended. In the first book are the certain gods, in the second the +uncertain, in the third, and last of all, the chief and select gods. + + + 4. _That from the disputation of Varro, it follows that the + worshippers of the gods regard human things as more ancient + than divine things._ + +In this whole series of most beautiful and most subtle distributions +and distinctions, it will most easily appear evident from the things +we have said already, and from what is to be said hereafter, to any +man who is not, in the obstinacy of his heart, an enemy to himself, +that it is vain to seek and to hope for, and even most impudent to +wish for eternal life. For these institutions are either the work +of men, or of demons,--not of those whom they call good demons, +but, to speak more plainly, of unclean, and, without controversy, +malign spirits, who with wonderful slyness and secretness suggest to +the thoughts of the impious, and sometimes openly present to their +understandings, noxious opinions, by which the human mind grows more +and more foolish, and becomes unable to adapt itself to and abide in +the immutable and eternal truth, and seek to confirm these opinions +by every kind of fallacious attestation in their power. This very +same Varro testifies that he wrote first concerning human things, +but afterwards concerning divine things, because the states existed +first, and afterward these things were instituted by them. But the +true religion was not instituted by any earthly state, but plainly it +established the celestial city. It, however, is inspired and taught +by the true God, the giver of eternal life to His true worshippers. + +The following is the reason Varro gives when he confesses that he +had written first concerning human things, and afterwards of divine +things, because these divine things were instituted by men:--"As the +painter is before the painted tablet, the mason before the edifice, +so states are before those things which are instituted by states." +But he says that he would have written first concerning the gods, +afterwards concerning men, if he had been writing concerning the +whole nature of the gods,--as if he were really writing concerning +some portion of, and not all, the nature of the gods; or as if, +indeed, some portion of, though not all, the nature of the gods ought +not to be put before that of men. How, then, comes it that in those +three last books, when he is diligently explaining the certain, +uncertain, and select gods, he seems to pass over no portion of the +nature of the gods? Why, then, does he say, "If we had been writing +on the whole nature of the gods, we would first have finished the +divine things before we touched the human?" For he either writes +concerning the whole nature of the gods, or concerning some portion +of it, or concerning no part of it at all. If concerning it all, it +is certainly to be put before human things; if concerning some part +of it, why should it not, from the very nature of the case, precede +human things? Is not even some part of the gods to be preferred +to the whole of humanity? But if it is too much to prefer a part +of the divine to all human things, that part is certainly worthy +to be preferred to the Romans at least. For he writes the books +concerning human things, not with reference to the whole world, but +only to Rome; which books he says he had properly placed, in the +order of writing, before the books on divine things, like a painter +before the painted tablet, or a mason before the building, most +openly confessing that, as a picture or a structure, even these +divine things were instituted by men. There remains only the third +supposition, that he is to be understood to have written concerning +no divine nature, but that he did not wish to say this openly, but +left it to the intelligent to infer; for when one says "not all," +usage understands that to mean "some," but it _may_ be understood +as meaning _none_, because that which is _none_ is neither all nor +some. In fact, as he himself says, if he had been writing concerning +all the nature of the gods, its due place would have been before +human things in the order of writing. But, as the truth declares, +even though Varro is silent, the divine nature should have taken +precedence of Roman things, though it were not _all_, but only +_some_. But it is properly put after, therefore it is _none_. His +arrangement, therefore, was due, not to a desire to give human things +priority to divine things, but to his unwillingness to prefer false +things to true. For in what he wrote on human things, he followed +the history of affairs; but in what he wrote concerning those things +which they call divine, what else did he follow but mere conjectures +about vain things? This, doubtless, is what, in a subtle manner, he +wished to signify; not only writing concerning divine things after +the human, but even giving a reason why he did so; for if he had +suppressed this, some, perchance, would have defended his doing so +in one way, and some in another. But in that very reason he has +rendered, he has left nothing for men to conjecture at will, and has +sufficiently proved that he preferred men to the institutions of men, +not the nature of men to the nature of the gods. Thus he confessed +that, in writing the books concerning divine things, he did not write +concerning the truth which belongs to nature, but the falseness which +belongs to error; which he has elsewhere expressed more openly (as +I have mentioned in the fourth book[234]), saying that, had he been +founding a new city himself, he would have written according to the +order of nature; but as he had only found an old one, he could not +but follow its custom. + + + 5. _Concerning the three kinds of theology according to Varro, + namely, one fabulous, the other natural, the third civil._ + +Now what are we to say of this proposition of his, namely, that there +are three kinds of theology, that is, of the account which is given +of the gods; and of these, the one is called mythical, the other +physical, and the third civil? Did the Latin usage permit, we should +call the kind which he has placed first in order _fabular_,[235] but +let us call it _fabulous_,[236] for mythical is derived from the Greek +μῦθος, a fable; but that the second should be called _natural_, the +usage of speech now admits; the third he himself has designated in +Latin, calling it _civil_.[237] Then he says, "they call that kind +_mythical_ which the poets chiefly use; _physical_, that which the +philosophers use; _civil_, that which the people use. As to the first I +have mentioned," says he, "in it are many fictions, which are contrary +to the dignity and nature of the immortals. For we find in it that one +god has been born from the head, another from the thigh, another from +drops of blood; also, in this we find that gods have stolen, committed +adultery, served men; in a word, in this all manner of things are +attributed to the gods, such as may befall, not merely any man, but +even the most contemptible man." He certainly, where he could, where he +dared, where he thought he could do it with impunity, has manifested, +without any of the haziness of ambiguity, how great injury was done +to the nature of the gods by lying fables; for he was speaking, not +concerning natural theology, not concerning civil, but concerning +fabulous theology, which he thought he could freely find fault with. + +Let us see, now, what he says concerning the second kind. "The second +kind which I have explained," he says, "is that concerning which +philosophers have left many books, in which they treat such questions +as these: what gods there are, where they are, of what kind and +character they are, since what time they have existed, or if they +have existed from eternity; whether they are of fire, as Heraclitus +believes; or of number, as Pythagoras; or of atoms, as Epicurus says; +and other such things, which men's ears can more easily hear inside +the walls of a school than outside in the Forum." He finds fault +with nothing in this kind of theology which they call _physical_, +and which belongs to philosophers, except that he has related their +controversies among themselves, through which there has arisen a +multitude of dissentient sects. Nevertheless he has removed this kind +from the Forum, that is, from the populace, but he has shut it up in +schools. But that first kind, most false and most base, he has not +removed from the citizens. Oh, the religious ears of the people, and +among them even those of the Romans, that are not able to bear what +the philosophers dispute concerning the gods! But when the poets sing +and stage-players act such things as are derogatory to the dignity +and the nature of the immortals, such as may befall not a man merely, +but the most contemptible man, they not only bear, but willingly +listen to. Nor is this all, but they even consider that these things +please the gods, and that they are propitiated by them. + +But some one may say, Let us distinguish these two kinds of theology, +the mythical and the physical,--that is, the fabulous and the +natural,--from this civil kind about which we are now speaking. +Anticipating this, he himself has distinguished them. Let us see +now how he explains the civil theology itself. I see, indeed, +why it should be distinguished as fabulous, even because it is +false, because it is base, because it is unworthy. But to wish to +distinguish the natural from the civil, what else is that but to +confess that the civil itself is false? For if that be natural, what +fault has it that it should be excluded? And if this which is called +civil be not natural, what merit has it that it should be admitted? +This, in truth, is the cause why he wrote first concerning human +things, and afterwards concerning divine things; since in divine +things he did not follow nature, but the institution of men. Let us +look at this civil theology of his. "The third kind," says he, "is +that which citizens in cities, and especially the priests, ought to +know and to administer. From it is to be known what god each one +may suitably worship, what sacred rites and sacrifices each one may +suitably perform." Let us still attend to what follows. "The first +theology," he says, "is especially adapted to the theatre, the second +to the world, the third to the city." Who does not see to which he +gives the palm? Certainly to the second, which he said above is that +of the philosophers. For he testifies that this pertains to the +world, than which they think there is nothing better. But those two +theologies, the first and the third,--to wit, those of the theatre +and of the city,--has he distinguished them or united them? For +although we see that the city is in the world, we do not see that it +follows that any things belonging to the city pertain to the world. +For it is possible that such things may be worshipped and believed in +the city, according to false opinions, as have no existence either +in the world or out of it. But where is the theatre but in the city? +Who instituted the theatre but the state? For what purpose did it +constitute it but for scenic plays? And to what class of things do +scenic plays belong but to those divine things concerning which these +books of Varro's are written with so much ability? + + + 6. _Concerning the mythic, that is, the fabulous, theology, and + the civil, against Varro._ + +O Marcus Varro! thou art the most acute, and without doubt the most +learned, but still a man, not God,--now lifted up by the Spirit of +God to see and to announce divine things, thou seest, indeed, that +divine things are to be separated from human trifles and lies, but +thou fearest to offend those most corrupt opinions of the populace, +and their customs in public superstitions, which thou thyself, when +thou considerest them on all sides, perceivest, and all your literature +loudly pronounces to be abhorrent from the nature of the gods, even +of such gods as the frailty of the human mind supposes to exist in +the elements of this world. What can the most excellent human talent +do here? What can human learning, though manifold, avail thee in +this perplexity? Thou desirest to worship the natural gods; thou art +compelled to worship the civil. Thou hast found some of the gods to be +fabulous, on whom thou vomitest forth very freely what thou thinkest, +and, whether thou willest or not, thou wettest therewith even the civil +gods. Thou sayest, forsooth, that the fabulous are adapted to the +theatre, the natural to the world, and the civil to the city; though +the world is a divine work, but cities and theatres are the works of +men, and though the gods who are laughed at in the theatre are not +other than those who are adored in the temples; and ye do not exhibit +games in honour of other gods than those to whom ye immolate victims. +How much more freely and more subtly wouldst thou have decided these +hadst thou said that some gods are natural, others established by men; +and concerning those who have been so established, the literature of +the poets gives one account, and that of the priests another,--both +of which are, nevertheless, so friendly the one to the other, through +fellowship in falsehood, that they are both pleasing to the demons, to +whom the doctrine of the truth is hostile. + +That theology, therefore, which they call natural, being put aside +for a moment, as it is afterwards to be discussed, we ask if any one +is really content to seek a hope for eternal life from poetical, +theatrical, scenic gods? Perish the thought! The true God avert so +wild and sacrilegious a madness! What, is eternal life to be asked +from those gods whom these things pleased, and whom these things +propitiate, in which their own crimes are represented? No one, as I +think, has arrived at such a pitch of headlong and furious impiety. +So then, neither by the fabulous nor by the civil theology does any +one obtain eternal life. For the one sows base things concerning +the gods by feigning them, the other reaps by cherishing them; the +one scatters lies, the other gathers them together; the one pursues +divine things with false crimes, the other incorporates among divine +things the plays which are made up of these crimes; the one sounds +abroad in human songs impious fictions concerning the gods, the other +consecrates these for the festivities of the gods themselves; the +one sings the misdeeds and crimes of the gods, the other loves them; +the one gives forth or feigns, the other either attests the true or +delights in the false. Both are base; both are damnable. But the one +which is theatrical teaches public abomination, and that one which +is of the city adorns itself with that abomination. Shall eternal +life be hoped for from these, by which this short and temporal life +is polluted? Does the society of wicked men pollute our life if they +insinuate themselves into our affections, and win our assent? and +does not the society of demons pollute the life, who are worshipped +with their own crimes?--if with true crimes, how wicked the demons! +if with false, how wicked the worship! + +When we say these things, it may perchance seem to some one who is +very ignorant of these matters that only those things concerning +the gods which are sung in the songs of the poets and acted on +the stage are unworthy of the divine majesty, and ridiculous, and +too detestable to be celebrated, whilst those sacred things which +not stage-players but priests perform are pure and free from all +unseemliness. Had this been so, never would any one have thought that +these theatrical abominations should be celebrated in their honour, +never would the gods themselves have ordered them to be performed to +them. But men are in nowise ashamed to perform these things in the +theatres, because similar things are carried on in the temples. In +short, when the fore-mentioned author attempted to distinguish the +civil theology from the fabulous and natural, as a sort of third and +distinct kind, he wished it to be understood to be rather tempered by +both than separated from either. For he says that those things which +the poets write are less than the people ought to follow, whilst what +the philosophers say is more than it is expedient for the people to +pry into. "Which," says he, "differ in such a way, that nevertheless +not a few things from both of them have been taken to the account +of the civil theology; wherefore we will indicate what the civil +theology has in common with that of the poet, though it ought to be +more closely connected with the theology of philosophers." Civil +theology is therefore not quite disconnected from that of the poets. +Nevertheless, in another place, concerning the generations of the +gods, he says that the people are more inclined toward the poets +than toward the physical theologists. For in this place he said what +ought to be done; in that other place, what was really done. He said +that the latter had written for the sake of utility, but the poets +for the sake of amusement. And hence the things from the poets' +writings, which the people ought not to follow, are the crimes of the +gods; which, nevertheless, amuse both the people and the gods. For, +for amusement's sake, he says, the poets write, and not for that of +utility; nevertheless they write such things as the gods will desire, +and the people perform. + + + 7. _Concerning the likeness and agreement of the fabulous and + civil theologies._ + +That theology, therefore, which is fabulous, theatrical, scenic, +and full of all baseness and unseemliness, is taken up into the +civil theology; and part of that theology, which in its totality +is deservedly judged to be worthy of reprobation and rejection, is +pronounced worthy to be cultivated and observed;--not at all an +incongruous part, as I have undertaken to show, and one which, being +alien to the whole body, was unsuitably attached to and suspended +from it, but a part entirely congruous with, and most harmoniously +fitted to the rest, as a member of the same body. For what else do +those images, forms, ages, sexes, characteristics of the gods show? +If the poets have Jupiter with a beard, and Mercury beardless, have +not the priests the same? Is the Priapus of the priests less obscene +than the Priapus of the players? Does he receive the adoration of +worshippers in a different form from that in which he moves about +the stage for the amusement of spectators? Is not Saturn old and +Apollo young in the shrines where their images stand, as well as when +represented by actor's masks? Why are Forculus, who presides over +doors, and Limentinus, who presides over thresholds and lintels, male +gods, and Cardea between them feminine, who presides over hinges? +Are not those things found in books on divine things, which grave +poets have deemed unworthy of their verses? Does the Diana of the +theatre carry arms, whilst the Diana of the city is simply a virgin? +Is the stage Apollo a lyrist, but the Delphic Apollo ignorant of this +art? But these things are decent compared with the more shameful +things. What was thought of Jupiter himself by those who placed his +wet nurse in the Capitol? Did they not bear witness to Euhemerus, +who, not with the garrulity of a fable-teller, but with the gravity +of an historian who had diligently investigated the matter, wrote +that all such gods had been men and mortals? And they who appointed +the Epulones as parasites at the table of Jupiter, what else did +they wish for but mimic sacred rites? For if any mimic had said +that parasites of Jupiter were made use of at his table, he would +assuredly have appeared to be seeking to call forth laughter. Varro +said it,--not when he was mocking, but when he was commending the +gods did he say it. His books on divine, not on human, things testify +that he wrote this,--not where he set forth the scenic games, but +where he explained the Capitoline laws. In a word, he is conquered, +and confesses that, as they made the gods with a human form, so they +believed that they are delighted with human pleasures. + +For also malign spirits were not so wanting to their own business as +not to confirm noxious opinions in the minds of men by converting +them into sport. Whence also is that story about the sacristan of +Hercules, which says that, having nothing to do, he took to playing +at dice as a pastime, throwing them alternately with the one hand +for Hercules, with the other for himself, with this understanding, +that if he should win, he should from the funds of the temple prepare +himself a supper, and hire a mistress; but if Hercules should win the +game, he himself should, at his own expense, provide the same for the +pleasure of Hercules. Then, when he had been beaten by himself, as +though by Hercules, he gave to the god Hercules the supper he owed +him, and also the most noble harlot Larentina. But she, having fallen +asleep in the temple, dreamed that Hercules had had intercourse with +her, and had said to her that she would find her payment with the +youth whom she should first meet on leaving the temple, and that she +was to believe this to be paid to her by Hercules. And so the first +youth that met her on going out was the wealthy Tarutius, who kept +her a long time, and when he died left her his heir. She, having +obtained a most ample fortune, that she should not seem ungrateful +for the divine hire, in her turn made the Roman people her heir, +which she thought to be most acceptable to the deities; and, having +disappeared, the will was found. By which meritorious conduct they +say that she gained divine honours. + +Now had these things been feigned by the poets and acted by the +mimics, they would without any doubt have been said to pertain to the +fabulous theology, and would have been judged worthy to be separated +from the dignity of the civil theology. But when these shameful +things,--not of the poets, but of the people; not of the mimics, but +of the sacred things; not of the theatres, but of the temples, that +is, not of the fabulous, but of the civil theology,--are reported +by so great an author, not in vain do the actors represent with +theatrical art the baseness of the gods, which is so great; but +surely in vain do the priests attempt, by rites called sacred, to +represent their nobleness of character, which has no existence. There +are sacred rites of Juno; and these are celebrated in her beloved +island, Samos, where she was given in marriage to Jupiter. There are +sacred rites of Ceres, in which Proserpine is sought for, having +been carried off by Pluto. There are sacred rites Venus, in which, +her beloved Adonis being slain by a boar's tooth, the lovely youth +is lamented. There are sacred rites of the mother of the gods, in +which the beautiful youth Atys, loved by her, and castrated by her +through a woman's jealousy, is deplored by men who have suffered +the like calamity, whom they call Galli. Since, then, these things +are more unseemly than all scenic abomination, why is it that they +strive to separate, as it were, the fabulous fictions of the poet +concerning the gods, as, forsooth, pertaining to the theatre, from +the civil theology which they wish to belong to the city, as though +they were separating from noble and worthy things, things unworthy +and base? Wherefore there is more reason to thank the stage-actors, +who have spared the eyes of men, and have not laid bare by theatrical +exhibition all the things which are hid by the walls of the temples. +What good is to be thought of their sacred rites which are concealed +in darkness, when those which are brought forth into the light are +so detestable? And certainly they themselves have seen what they +transact in secret through the agency of mutilated and effeminate +men. Yet they have _not_ been able to conceal those same men +miserably and vilely enervated and corrupted. Let them persuade +whom they can that they transact anything holy through such men, +who, they cannot deny, are numbered, and live among their sacred +things. We know not what they transact, but we know through whom they +transact; for we know what things are transacted on the stage, where +never, even in a chorus of harlots, hath one who is mutilated or an +effeminate appeared. And, nevertheless, even these things are acted +by vile and infamous characters; for, indeed, they ought not to be +acted by men of good character. What, then, are those sacred rites, +for the performance of which holiness has chosen such men as not even +the obscenity of the stage has admitted? + + + 8. _Concerning the interpretations, consisting of natural + explanations, which the pagan teachers attempt to show for + their gods._ + +But all these things, they say, have certain physical, that is, +natural interpretations, showing their natural meaning; as though +in this disputation we were seeking physics and not theology, which +is the account, not of nature, but of God. For although He who is +the true God is God, not by opinion, but by nature, nevertheless +all nature is not God; for there is certainly a nature of man, of a +beast, of a tree, of a stone,--none of which is God. For if, when the +question is concerning the mother of the gods, that from which the +whole system of interpretation starts certainly is, that the mother +of the gods is the earth, why do we make further inquiry? why do we +carry our investigation through all the rest of it? What can more +manifestly favour them who say that all those gods were men? For they +are earth-born in the sense that the earth is their mother. But in +the true theology the earth is the work, not the mother, of God. But +in whatever way their sacred rites may be interpreted, and, whatever +reference they may have to the nature of things, it is not according +to nature, but contrary to nature, that men should be effeminates. +This disease, this crime, this abomination, has a recognised place +among those sacred things, though even depraved men will scarcely +be compelled by torments to confess they are guilty of it. Again, +if these sacred rites, which are proved to be fouler than scenic +abominations, are excused and justified on the ground that they have +their own interpretations, by which they are shown to symbolize the +nature of things, why are not the poetical things in like manner +excused and justified? For many have interpreted even these in like +fashion, to such a degree that even that which they say is the most +monstrous and most horrible,--namely, that Saturn devoured his own +children,--has been interpreted by some of them to mean that length +of time, which is signified by the name of Saturn, consumes whatever +it begets; or that, as the same Varro thinks, Saturn belongs to seeds +which fall back again into the earth from whence they spring. And so +one interprets it in one way, and one in another. And the same is to +be said of all the rest of this theology. + +And, nevertheless, it is called the fabulous theology, and is +censured, cast off, rejected, together with all such interpretations +belonging to it. And not only by the natural theology, which is that +of the philosophers, but also by this civil theology, concerning +which we are speaking, which is asserted to pertain to cities and +peoples, it is judged worthy of repudiation, because it has invented +unworthy things concerning the gods. Of which, I wot, this is +the secret: that those most acute and learned men, by whom those +things were written, understood that both theologies ought to be +rejected,--to wit, both that fabulous and this civil one,--but the +former they dared to reject, the latter they dared not; the former +they set forth to be censured, the latter they showed to be very +like it; not that it might be chosen to be held in preference to the +other, but that it might be understood to be worthy of being rejected +together with it. And thus, without danger to those who feared to +censure the civil theology, both of them being brought into contempt, +that theology which they call natural might find a place in better +disposed minds; for the civil and the fabulous are both fabulous and +both civil. He who shall wisely inspect the vanities and obscenities +of both will find that they are both fabulous; and he who shall +direct his attention to the scenic plays pertaining to the fabulous +theology in the festivals of the civil gods, and in the divine rites +of the cities, will find they are both civil. How, then, can the +power of giving eternal life be attributed to any of those gods whose +own images and sacred rites convict them of being most like to the +fabulous gods, which are most openly reprobated, in forms, ages, sex, +characteristics, marriages, generations, rites; in all which things +they are understood either to have been men, and to have had their +sacred rites and solemnities instituted in their honour according +to the life or death of each of them, the demons suggesting and +confirming this error, or certainly most foul spirits, who, taking +advantage of some occasion or other, have stolen into the minds of +men to deceive them? + + + 9. _Concerning the special offices of the gods._ + +And as to those very offices of the gods, so meanly and so minutely +portioned out, so that they say that they ought to be supplicated, +each one according to his special function,--about which we have +spoken much already, though not all that is to be said concerning +it,--are they not more consistent with mimic buffoonery than divine +majesty? If any one should use two nurses for his infant, one of whom +should give nothing but food, the other nothing but drink, as these +make use of two goddesses for this purpose, Educa and Potina, he +should certainly seem to be foolish, and to do in his house a thing +worthy of a mimic. They would have Liber to have been named from +"liberation," because through him males at the time of copulation +are liberated by the emission of the seed. They also say that Libera +(the same in their opinion as Venus) exercises the same function in +the case of women, because they say that they also emit seed; and +they also say that on this account the same part of the male and +of the female is placed in the temple, that of the male to Liber, +and that of the female to Libera. To these things they add the +women assigned to Liber, and the wine for exciting lust. Thus the +Bacchanalia are celebrated with the utmost insanity, with respect to +which Varro himself confesses that such things would not be done by +the Bacchanals except their minds were highly excited. These things, +however, afterwards displeased a saner senate, and it ordered them +to be discontinued. Here, at length, they perhaps perceived how +much power unclean spirits, when held to be gods, exercise over the +minds of men. These things, certainly, were not to be done in the +theatres; for there they play, not rave, although to have gods who +are delighted with such plays is very like raving. + +But what kind of distinction is this which he makes between the +religious and the superstitious man, saying that the gods are +feared[238] by the superstitious man, but are reverenced[239] as +parents by the religious man, not feared as enemies; and that they are +all so good that they will more readily spare those who are impious +than hurt one who is innocent? And yet he tells us that three gods are +assigned as guardians to a woman after she has been delivered, lest +the god Silvanus come in and molest her; and that in order to signify +the presence of these protectors, three men go round the house during +the night, and first strike the threshold with a hatchet, next with a +pestle, and the third time sweep it with a brush, in order that these +symbols of agriculture having been exhibited, the god Silvanus might be +hindered from entering, because neither are trees cut down or pruned +without a hatchet, neither is grain ground without a pestle, nor corn +heaped up without a besom. Now from these three things three gods +have been named: Intercidona, from the cut[240] made by the hatchet; +Pilumnus, from the pestle; Diverra, from the besom;--by which guardian +gods the woman who has been delivered is preserved against the power of +the god Silvanus. Thus the guardianship of kindly-disposed gods would +not avail against the malice of a mischievous god, unless they were +three to one, and fought against him, as it were, with the opposing +emblems of cultivation, who, being an inhabitant of the woods, is +rough, horrible, and uncultivated. Is this the innocence of the gods? +Is this their concord? Are these the health-giving deities of the +cities, more ridiculous than the things which are laughed at in the +theatres? + +When a male and a female are united, the god Jugatinus presides. +Well, let this be borne with. But the married woman must be brought +home: the god Domiducus also is invoked. That she may be in the +house, the god Domitius is introduced. That she may remain with her +husband, the goddess Manturnæ is used. What more is required? Let +human modesty be spared. Let the lust of flesh and blood go on with +the rest, the secret of shame being respected. Why is the bedchamber +filled with a crowd of deities, when even the groomsmen[241] have +departed? And, moreover, it is so filled, not that in consideration +of their presence more regard may be paid to chastity, but that by +their help the woman, naturally of the weaker sex, and trembling +with the novelty of her situation, may the more readily yield her +virginity. For there are the goddess Virginiensis, and the god-father +Subigus, and the goddess-mother Prema, and the goddess Pertunda, +and Venus, and Priapus.[242] What is this? If it was absolutely +necessary that a man, labouring at this work, should be helped by +the gods, might not some one god or goddess have been sufficient? +Was Venus not sufficient alone, who is even said to be named from +this, that without her power a woman does not cease to be a virgin? +If there is any shame in men, which is not in the deities, is it not +the case that, when the married couple believe that so many gods +of either sex are present, and busy at this work, they are so much +affected with shame, that the man is less moved, and the woman more +reluctant? And certainly, if the goddess Virginiensis is present +to loose the virgin's zone, if the god Subigus is present that the +virgin may be got under the man, if the goddess Prema is present +that, having been got under him, she may be kept down, and may not +move herself, what has the goddess Pertunda to do there? Let her +blush; let her go forth. Let the husband himself do something. It is +disgraceful that any one but himself should do that from which she +gets her name. But perhaps she is tolerated because she is said to +be a goddess, and not a god. For if she were believed to be a male, +and were called Pertundus, the husband would demand more help against +him for the chastity of his wife than the newly-delivered woman +against Silvanus. But why am I saying this, when Priapus, too, is +there, a male to excess, upon whose immense and most unsightly member +the newly-married bride is commanded to sit, according to the most +honourable and most religious custom of matrons? + +Let them go on, and let them attempt with all the subtlety they can +to distinguish the civil theology from the fabulous, the cities from +the theatres, the temples from the stages, the sacred things of the +priests from the songs of the poets, as honourable things from base +things, truthful things from fallacious, grave from light, serious +from ludicrous, desirable things from things to be rejected, we +understand what they do. They are aware that that theatrical and +fabulous theology hangs by the civil, and is reflected back upon it +from the songs of the poets as from a mirror; and thus, that theology +having been exposed to view which they do not dare to condemn, they +more freely assail and censure that picture of it, in order that +those who perceive what they mean may detest this very face itself of +which that is the picture,--which, however, the gods themselves, as +though seeing themselves in the same mirror, love so much, that it is +better seen in both of them who and what they are. Whence, also, they +have compelled their worshippers, with terrible commands, to dedicate +to them the uncleanness of the fabulous theology, to put them among +their solemnities, and reckon them among divine things; and thus they +have both shown themselves more manifestly to be most impure spirits, +and have made that rejected and reprobated theatrical theology a +member and a part of this, as it were, chosen and approved theology +of the city, so that, though the whole is disgraceful and false, and +contains in it fictitious gods, one part of it is in the literature +of the priests, the other in the songs of the poets. Whether it may +have other parts is another question. At present, I think, I have +sufficiently shown, on account of the division of Varro, that the +theology of the city and that of the theatre belong to one civil +theology. Wherefore, because they are both equally disgraceful, +absurd, shameful, false, far be it from religious men to hope for +eternal life from either the one or the other. + +In fine, even Varro himself, in his account and enumeration of the +gods, starts from the moment of a man's conception. He commences +the series of those gods who take charge of man with Janus, carries +it on to the death of the man decrepit with age, and terminates +it with the goddess Nænia, who is sung at the funerals of the +aged. After that, he begins to give an account of the other gods, +whose province is not man himself, but man's belongings, as food, +clothing, and all that is necessary for this life; and, in the case +of all these, he explains what is the special office of each, and +for what each ought to be supplicated. But with all this scrupulous +and comprehensive diligence, he has neither proved the existence, +nor so much as mentioned the name, of any god from whom eternal life +is to be sought,--the one object for which we are Christians. Who, +then, is so stupid as not to perceive that this man, by setting forth +and opening up so diligently the civil theology, and by exhibiting +its likeness to that fabulous, shameful, and disgraceful theology, +and also by teaching that that fabulous sort is also a part of this +other, was labouring to obtain a place in the minds of men for none +but that natural theology which he says pertains to philosophers, +with such subtlety that he censures the fabulous, and, not daring +openly to censure the civil, shows its censurable character by simply +exhibiting it; and thus, both being reprobated by the judgment of men +of right understanding, the natural alone remains to be chosen? But +concerning this in its own place, by the help of the true God, we +have to discuss more diligently. + + + 10. _Concerning the liberty of Seneca, who more vehemently + censured the civil theology than Varro did the fabulous._ + +That liberty, in truth, which this man wanted, so that he did not +dare to censure that theology of the city, which is very similar +to the theatrical, so openly as he did the theatrical itself, was, +though not fully, yet in part possessed by Annæus Seneca, whom we +have some evidence to show to have flourished in the times of our +apostles. It was in part possessed by him, I say, for he possessed +it in writing, but not in living. For in that book which he wrote +against superstition,[243] he more copiously and vehemently censured +that civil and urban theology than Varro the theatrical and fabulous. +For, when speaking concerning images, he says, "They dedicate +images of the sacred and inviolable immortals in most worthless and +motionless matter. They give them the appearance of man, beasts, and +fishes, and some make them of mixed sex, and heterogeneous bodies. +They call them deities, when they are such that if they should get +breath and should suddenly meet them, they would be held to be +monsters." Then, a while afterwards, when extolling the natural +theology, he had expounded the sentiments of certain philosophers, he +opposes to himself a question, and says, "Here some one says, Shall +I believe that the heavens and the earth are gods, and that some are +above the moon and some below it? Shall I bring forward either Plato +or the peripatetic Strato, one of whom made God to be without a body, +the other without a mind?" In answer to which he says, "And, really, +what truer do the dreams of Titus Tatius, or Romulus, or Tullus +Hostilius appear to thee? Tatius declared the divinity of the goddess +Cloacina; Romulus that of Picus and Tiberinus; Tullus Hostilius that +of Pavor and Pallor, the most disagreeable affections of men, the one +of which is the agitation of the mind under fright, the other that +of the body, not a disease, indeed, but a change of colour." Wilt +thou rather believe that these are deities, and receive them into +heaven? But with what freedom he has written concerning the rites +themselves, cruel and shameful! "One," he says, "castrates himself, +another cuts his arms. Where will they find room for the fear of +these gods when angry, who use such means of gaining their favour +when propitious? But gods who wish to be worshipped in this fashion +should be worshipped in none. So great is the frenzy of the mind when +perturbed and driven from its seat, that the gods are propitiated by +men in a manner in which not even men of the greatest ferocity and +fable-renowned cruelty vent their rage. Tyrants have lacerated the +limbs of some; they never ordered any one to lacerate his own. For +the gratification of royal lust, some have been castrated; but no +one ever, by the command of his lord, laid violent hands on himself +to emasculate himself. They kill themselves in the temples. They +supplicate with their wounds and with their blood. If any one has +time to see the things they do and the things they suffer, he will +find so many things unseemly for men of respectability, so unworthy +of freemen, so unlike the doings of sane men, that no one would +doubt that they are mad, had they been mad with the minority; but now +the multitude of the insane is the defence of their sanity." + +He next relates those things which are wont to be done in the Capitol, +and with the utmost intrepidity insists that they are such things as +one could only believe to be done by men making sport, or by madmen. +For, having spoken with derision of this, that in the Egyptian sacred +rites Osiris, being lost, is lamented for, but straightway, when found, +is the occasion of great joy by his reappearance, because both the +losing and the finding of him are feigned; and yet that grief and that +joy which are elicited thereby from those who have lost nothing and +found nothing are real;--having, I say, so spoken of this, he says, +"Still there is a fixed time for this frenzy. It is tolerable to go +mad once in the year. Go into the Capitol. One is suggesting divine +commands[244] to a god; another is telling the hours to Jupiter; +one is a lictor; another is an anointer, who with the mere movement +of his arms imitates one anointing. There are women who arrange the +hair of Juno and Minerva, standing far away not only from her image, +but even from her temple. These move their fingers in the manner of +hair-dressers. There are some women who hold a mirror. There are some +who are calling the gods to assist them in court. There are some who +are holding up documents to them, and are explaining to them their +cases. A learned and distinguished comedian, now old and decrepit, +was daily playing the mimic in the Capitol, as though the gods would +gladly be spectators of that which men had ceased to care about. Every +kind of artificers working for the immortal gods is dwelling there in +idleness." And a little after he says, "Nevertheless these, though they +give themselves up to the gods for purposes superfluous enough, do not +do so for any abominable or infamous purpose. There sit certain women +in the Capitol who think they are beloved by Jupiter; nor are they +frightened even by the look of the, if you will believe the poets, most +wrathful Juno." + +This liberty Varro did not enjoy. It was only the poetical theology he +seemed to censure. The civil, which this man cuts to pieces, he was +not bold enough to impugn. But if we attend to the truth, the temples +where these things are performed are far worse than the theatres where +they are represented. Whence, with respect to these sacred rites of the +civil theology, Seneca preferred, as the best course to be followed +by a wise man, to feign respect for them in act, but to have no real +regard for them at heart. "All which things," he says, "a wise man will +observe as being commanded by the laws, but not as being pleasing to +the gods." And a little after he says, "And what of this, that we unite +the gods in marriage, and that not even naturally, for we join brothers +and sisters? We marry Bellona to Mars, Venus to Vulcan, Salacia to +Neptune. Some of them we leave unmarried, as though there were no match +for them, which is surely needless, especially when there are certain +unmarried goddesses, as Populonia, or Fulgora, or the goddess Rumina, +for whom I am not astonished that suitors have been awanting. All this +ignoble crowd of gods, which the superstition of ages has amassed, we +ought," he says, "to adore in such a way as to remember all the while +that its worship belongs rather to custom than to reality." Wherefore, +neither those laws nor customs instituted in the civil theology that +which was pleasing to the gods, or which pertained to reality. But this +man, whom philosophy had made, as it were, free, nevertheless, because +he was an illustrious senator of the Roman people, worshipped what he +censured, did what he condemned, adored what he reproached, because, +forsooth, philosophy had taught him something great,--namely, not to +be superstitious in the world, but, on account of the laws of cities +and the customs of men, to be an actor, not on the stage, but in the +temples,--conduct the more to be condemned, that those things which +he was deceitfully acting he so acted that the people thought he was +acting sincerely. But a stage-actor would rather delight people by +acting plays than take them in by false pretences. + + + 11. _What Seneca thought concerning the Jews._ + +Seneca, among the other superstitions of civil theology, also +found fault with the sacred things of the Jews, and especially the +sabbaths, affirming that they act uselessly in keeping those seventh +days, whereby they lose through idleness about the seventh part of +their life, and also many things which demand immediate attention +are damaged. The Christians, however, who were already most hostile +to the Jews, he did not dare to mention, either for praise or blame, +lest, if he praised them, he should do so against the ancient custom +of his country, or, perhaps, if he should blame them, he should do so +against his own will. + +When he was speaking concerning those Jews, he said, "When, +meanwhile, the customs of that most accursed nation have gained such +strength that they have been now received in all lands, the conquered +have given laws to the conquerors." By these words he expresses his +astonishment; and, not knowing what the providence of God was leading +him to say, subjoins in plain words an opinion by which he showed +what he thought about the meaning of those sacred institutions: +"For," he says, "those, however, know the cause of their rites, +whilst the greater part of the people know not why they perform +theirs." But concerning the solemnities of the Jews, either why or +how far they were instituted by divine authority, and afterwards, in +due time, by the same authority taken away from the people of God, to +whom the mystery of eternal life was revealed, we have both spoken +elsewhere, especially when we were treating against the Manichæans, +and also intend to speak in this work in a more suitable place. + + + 12. _That when once the vanity of the gods of the nations has been + exposed, it cannot be doubted that they are unable to bestow + eternal life on any one, when they cannot afford help even with + respect to the things of this temporal life._ + +Now, since there are three theologies, which the Greeks call +respectively mythical, physical, and political, and which may be +called in Latin fabulous, natural, and civil; and since neither from +the fabulous, which even the worshippers of many and false gods have +themselves most freely censured, nor from the civil, of which that is +convicted of being a part, or even worse than it, can eternal life be +hoped for from any of these theologies,--if any one thinks that what +has been said in this book is not enough for him, let him also add +to it the many and various dissertations concerning God as the giver +of felicity, contained in the former books, especially the fourth one. + +For to what but to felicity should men consecrate themselves, were +felicity a goddess? However, as it is not a goddess, but a gift of +God, to what God but the giver of happiness ought we to consecrate +ourselves, who piously love eternal life, in which there is true and +full felicity? But I think, from what has been said, no one ought +to doubt that none of those gods is the giver of happiness, who are +worshipped with such shame, and who, if they are not so worshipped, +are more shamefully enraged, and thus confess that they are most +foul spirits. Moreover, how can he give eternal life who cannot +give happiness? For we mean by eternal life that life where there +is endless happiness. For if the soul live in eternal punishments, +by which also those unclean spirits shall be tormented, that is +rather eternal death than eternal life. For there is no greater or +worse death than when death never dies. But because the soul from +its very nature, being created immortal, cannot be without some kind +of life, its utmost death is alienation from the life of God in an +eternity of punishment. So, then, He only who gives true happiness +gives eternal life, that is, an endlessly happy life. And since those +gods whom this civil theology worships have been proved to be unable +to give this happiness, they ought not to be worshipped on account +of those temporal and terrestrial things, as we showed in the five +former books, much less on account of eternal life, which is to be +after death, as we have sought to show in this one book especially, +whilst the other books also lend it their co-operation. But since +the strength of inveterate habit has its roots very deep, if any one +thinks that I have not disputed sufficiently to show that this civil +theology ought to be rejected and shunned, let him attend to another +book which, with God's help, is to be joined to this one. + +FOOTNOTES: + +[226] Ps. xl. 4. + +[227] Plato, in the _Timæus_. + +[228] Ch. xi. and xxi. + +[229] See Virgil, _Ec._ iii. 9. + +[230] Of the four books _De Acad._, dedicated to Varro, only a part +of the first is extant. + +[231] Cicero, _De Quæst. Acad._ i. 3. + +[232] In his book _De Metris_, chapter on phalæcian verses. + +[233] Tarquin the Proud, having bought the books of the sibyl, +appointed two men to preserve and interpret them (Dionys. Halic. +_Antiq._ iv. 62). These were afterwards increased to ten, while the +plebeians were contending for larger privileges; and subsequently +five more were added. + +[234] Ch. 31. + +[235] _Fabulare._ + +[236] _Fabulosum._ + +[237] _Civile._ + +[238] _Timeri._ + +[239] _Vereri._ + +[240] _Intercido_, I cut or cleave. + +[241] _Paranymphi._ + +[242] Comp. Tertullian, _Adv. Nat._ ii. 11; Arnobius, _Contra Gent._ +iv.; Lactantius, _Inst._ i. 20. + +[243] Mentioned also by Tertullian, _Apol._ 12, but not extant. + +[244] _Numina._ Another reading is _nomina_; and with either reading +another translation is admissible: "One is announcing to a god the +names (or gods) who salute him." + + + + + BOOK SEVENTH. + + ARGUMENT. + + IN THIS BOOK IT IS SHOWN THAT ETERNAL LIFE IS NOT OBTAINED BY THE + WORSHIP OF JANUS, JUPITER, SATURN, AND THE OTHER "SELECT GODS" + OF THE CIVIL THEOLOGY. + + + PREFACE. + +It will be the duty of those who are endowed with quicker and better +understandings, in whose case the former books are sufficient, and +more than sufficient, to effect their intended object, to bear with +me with patience and equanimity whilst I attempt with more than +ordinary diligence to tear up and eradicate depraved and ancient +opinions hostile to the truth of piety, which the long-continued +error of the human race has fixed very deeply in unenlightened minds; +co-operating also in this, according to my little measure, with the +grace of Him who, being the true God, is able to accomplish it, and +on whose help I depend in my work; and, for the sake of others, such +should not deem superfluous what they feel to be no longer necessary +for themselves. A very great matter is at stake when the true and +truly holy divinity is commended to men as that which they ought to +seek after and to worship; not, however, on account of the transitory +vapour of mortal life, but on account of life eternal, which alone is +blessed, although the help necessary for this frail life we are now +living is also afforded us by it. + + + 1. _Whether, since it is evident that Deity is not to be found in + the civil theology, we are to believe that it is to be found in + the select gods._ + +If there is any one whom the sixth book, which I have last finished, +has not persuaded that this divinity, or, so to speak, deity--for +this word also our authors do not hesitate to use, in order to +translate more accurately that which the Greeks call θεότης;--if +there is any one, I say, whom the sixth book has not persuaded that +this divinity or deity is not to be found in that theology which +they call civil, and which Marcus Varro has explained in sixteen +books,--that is, that the happiness of eternal life is not attainable +through the worship of gods such as states have established to be +worshipped, and that in such a form,--perhaps, when he has read this +book, he will not have anything further to desire in order to the +clearing up of this question. For it is possible that some one may +think that at least the select and chief gods, whom Varro comprised +in his last book, and of whom we have not spoken sufficiently, are +to be worshipped on account of the blessed life, which is none other +than eternal. In respect to which matter I do not say what Tertullian +said, perhaps more wittily than truly, "If gods are selected like +onions, certainly the rest are rejected as bad."[245] I do not say +this, for I see that even from among the select, some are selected +for some greater and more excellent office: as in warfare, when +recruits have been elected, there are some again elected from among +those for the performance of some greater military service; and in +the church, when persons are elected to be overseers, certainly the +rest are not rejected, since all good Christians are deservedly +called elect; in the erection of a building corner stones are +elected, though the other stones, which are destined for other parts +of the structure, are not rejected; grapes are elected for eating, +whilst the others, which we leave for drinking, are not rejected. +There is no need of adducing many illustrations, since the thing is +evident. Wherefore the selection of certain gods from among many +affords no proper reason why either he who wrote on this subject, +or the worshippers of the gods, or the gods themselves, should be +spurned. We ought rather to seek to know what gods these are, and for +what purpose they may appear to have been selected. + + + 2. _Who are the select gods, and whether they are held to be + exempt from the offices of the commoner gods._ + +The following gods, certainly, Varro signalizes as select, devoting +one book to this subject: Janus, Jupiter, Saturn, Genius, Mercury, +Apollo, Mars, Vulcan, Neptune, Sol, Orcus, father Liber, Tellus, +Ceres, Juno, Luna, Diana, Minerva, Venus, Vesta; of which twenty +gods, twelve are males, and eight females. Whether are these deities +called select, because of their higher spheres of administration in +the world, or because they have become better known to the people, +and more worship has been expended on them? If it be on account of +the greater works which are performed by them in the world, we ought +not to have found them among that, as it were, plebeian crowd of +deities, which has assigned to it the charge of minute and trifling +things. For, first of all, at the conception of a fœtus, from which +point all the works commence which have been distributed in minute +detail to many deities, Janus himself opens the way for the reception +of the seed; there also is Saturn, on account of the seed itself; +there is Liber,[246] who liberates the male by the effusion of the +seed; there is Libera, whom they also would have to be Venus, who +confers this same benefit on the woman, namely, that she also be +liberated by the emission of the seed;--all these are of the number +of those who are called select. But there is also the goddess Mena, +who presides over the menses; though the daughter of Jupiter, ignoble +nevertheless. And this province of the menses the same author, in his +book on the select gods, assigns to Juno herself, who is even queen +among the select gods; and here, as Juno Lucina, along with the same +Mena, her stepdaughter, she presides over the same blood. There also +are two gods, exceedingly obscure, Vitumnus and Sentinus--the one of +whom imparts life to the fœtus, and the other sensation; and, of a +truth, they bestow, most ignoble though they be, far more than all +those noble and select gods bestow. For, surely, without life and +sensation, what is the whole fœtus which a woman carries in her womb, +but a most vile and worthless thing, no better than slime and dust? + + + 3. _How there is no reason which can be shown for the selection of + certain gods, when the administration of more exalted offices + is assigned to many inferior gods._ + +What is the cause, therefore, which has driven so many select gods +to these very small works, in which they are excelled by Vitumnus +and Sentinus, though little known and sunk in obscurity, inasmuch +as they confer the munificent gifts of life and sensation? For the +select Janus bestows an entrance, and, as it were, a door[247] for +the seed; the select Saturn bestows the seed itself; the select Liber +bestows on men the emission of the same seed; Libera, who is Ceres +or Venus, confers the same on women; the select Juno confers (not +alone, but together with Mena, the daughter of Jupiter) the menses, +for the growth of that which has been conceived; and the obscure +and ignoble Vitumnus confers life, whilst the obscure and ignoble +Sentinus confers sensation;--which two last things are as much more +excellent than the others, as they themselves are excelled by reason +and intellect. For as those things which reason and understand are +preferable to those which, without intellect and reason, as in the +case of cattle, live and feel; so also those things which have +been endowed with life and sensation are deservedly preferred to +those things which neither live nor feel. Therefore Vitumnus the +life-giver,[248] and Sentinus the sense-giver,[249] ought to have +been reckoned among the select gods, rather than Janus the admitter +of seed, and Saturn the giver or sower of seed, and Liber and Libera +the movers and liberators of seed; which seed is not worth a thought, +unless it attain to life and sensation. Yet these select gifts are +not given by select gods, but by certain unknown, and, considering +their dignity, neglected gods. But if it be replied that Janus has +dominion over all beginnings, and therefore the opening of the way +for conception is not without reason assigned to him; and that +Saturn has dominion over all seeds, and therefore the sowing of the +seed whereby a human being is generated cannot be excluded from his +operation; that Liber and Libera have power over the emission of +all seeds, and therefore preside over those seeds which pertain to +the procreation of men; that Juno presides over all purgations and +births, and therefore she has also charge of the purgations of women +and the births of human beings;--if they give this reply, let them +find an answer to the question concerning Vitumnus and Sentinus, +whether they are willing that these likewise should have dominion +over all things which live and feel. If they grant this, let them +observe in how sublime a position they are about to place them. For +to spring from seeds is in the earth and of the earth, but to live +and feel are supposed to be properties even of the sidereal gods. +But if they say that only such things as come to life in flesh, and +are supported by senses, are assigned to Sentinus, why does not that +God who made all things live and feel, bestow on flesh also life +and sensation, in the universality of His operation conferring also +on fœtuses this gift? And what, then, is the use of Vitumnus and +Sentinus? But if these, as it were, extreme and lowest things have +been committed by Him who presides universally over life and sense to +these gods as to servants, are these select gods then so destitute +of servants, that they could not find any to whom even they might +commit those things, but with all their dignity, for which they are, +it seems, deemed worthy to be selected, were compelled to perform +their work along with ignoble ones? Juno is select queen of the gods, +and the sister and wife of Jupiter; nevertheless she is Iterduca, +the conductor, to boys, and performs this work along with a most +ignoble pair--the goddesses Abeona and Adeona. There they have also +placed the goddess Mena, who gives to boys a good mind, and she is +not placed among the select gods; as if anything greater could be +bestowed on a man than a good mind. But Juno is placed among the +select because she is Iterduca and Domiduca (she who conducts one +on a journey, and who conducts him home again); as if it is of any +advantage for one to make a journey, and to be conducted home again, +if his mind is not good. And yet the goddess who bestows that gift +has not been placed by the selectors among the select gods, though +she ought indeed to have been preferred even to Minerva, to whom, in +this minute distribution of work, they have allotted the memory of +boys. For who will doubt that it is a far better thing to have a good +mind, than ever so great a memory? For no one is bad who has a good +mind;[250] but some who are very bad are possessed of an admirable +memory, and are so much the worse, the less they are able to forget +the bad things which they think. And yet Minerva is among the select +gods, whilst the goddess Mena is hidden by a worthless crowd. What +shall I say concerning Virtus? What concerning Felicitas?--concerning +whom I have already spoken much in the fourth book,[251] to whom, +though they held them to be goddesses, they have not thought fit to +assign a place among the select gods, among whom they have given a +place to Mars and Orcus, the one the causer of death, the other the +receiver of the dead. + +Since, therefore, we see that even the select gods themselves work +together with the others, like a senate with the people, in all those +minute works which have been minutely portioned out among many gods; +and since we find that far greater and better things are administered +by certain gods who have not been reckoned worthy to be selected +than by those who are called select, it remains that we suppose that +they were called select and chief, not on account of their holding +more exalted offices in the world, but because it happened to them +to become better known to the people. And even Varro himself says, +that in that way obscurity had fallen to the lot of some father +gods and mother goddesses,[252] as it falls to the lot of men. If, +therefore, Felicity ought not perhaps to have been put among the +select gods, because they did not attain to that noble position +by merit, but by chance, Fortune at least should have been placed +among them, or rather before them; for they say that that goddess +distributes to every one the gifts she receives, not according to +any rational arrangement, but according as chance may determine. +She ought to have held the uppermost place among the select gods, +for among them chiefly it is that she shows what power she has. For +we see that they have been selected not on account of some eminent +virtue or rational happiness, but by that random power of Fortune +which the worshippers of these gods think that she exerts. For that +most eloquent man Sallust also may perhaps have the gods themselves +in view when he says: "But, in truth, fortune rules in everything; +it renders all things famous or obscure, according to caprice rather +than according to truth."[253] For they cannot discover a reason +why Venus should have been made famous, whilst Virtus has been +made obscure, when the divinity of both of them has been solemnly +recognised by them, and their merits are not to be compared. Again, +if she has deserved a noble position on account of the fact that she +is much sought after--for there are more who seek after Venus than +after Virtus--why has Minerva been celebrated whilst Pecunia has been +left in obscurity, although throughout the whole human race avarice +allures a far greater number than skill? And even among those who are +skilled in the arts, you will rarely find a man who does not practise +his own art for the purpose of pecuniary gain; and that for the sake +of which anything is made, is always valued more than that which is +made for the sake of something else. If, then, this selection of gods +has been made by the judgment of the foolish multitude, why has not +the goddess Pecunia been preferred to Minerva, since there are many +artificers for the sake of money? But if this distinction has been +made by the few wise, why has Virtus been preferred to Venus, when +reason by far prefers the former? At all events, as I have already +said, Fortune herself--who, according to those who attribute most +influence to her, renders all things famous or obscure according to +caprice rather than according to the truth--since she has been able +to exercise so much power even over the gods, as, according to her +capricious judgment, to render those of them famous whom she would, +and those obscure whom she would; Fortune herself ought to occupy the +place of pre-eminence among the select gods, since over them also she +has such pre-eminent power. Or must we suppose that the reason why +she is not among the select is simply this, that even Fortune herself +has had an adverse fortune? She was adverse, then, to herself, since, +whilst ennobling others, she herself has remained obscure. + + + 4. _The inferior gods, whose names are not associated with infamy, + have been better dealt with than the select gods, whose + infamies are celebrated._ + +However, any one who eagerly seeks for celebrity and renown, might +congratulate those select gods, and call them fortunate, were it not +that he saw that they have been selected more to their injury than to +their honour. For that low crowd of gods have been protected by their +very meanness and obscurity from being overwhelmed with infamy. We +laugh, indeed, when we see them distributed by the mere fiction of +human opinions, according to the special works assigned to them, like +those who farm small portions of the public revenue, or like workmen +in the street of the silversmiths,[254] where one vessel, in order +that it may go out perfect, passes through the hands of many, when +it might have been finished by one perfect workman. But the only +reason why the combined skill of many workmen was thought necessary, +was, that it is better that each part of an art should be learned by +a special workman, which can be done speedily and easily, than that +they should all be compelled to be perfect in one art throughout all +its parts, which they could only attain slowly and with difficulty. +Nevertheless there is scarcely to be found one of the non-select +gods who has brought infamy on himself by any crime, whilst there +is scarce any one of the select gods who has not received upon +himself the brand of notable infamy. These latter have descended to +the humble works of the others, whilst the others have not come up +to their sublime crimes. Concerning Janus, there does not readily +occur to my recollection anything infamous; and perhaps he was such +an one as lived more innocently than the rest, and further removed +from misdeeds and crimes. He kindly received and entertained Saturn +when he was fleeing; he divided his kingdom with his guest, so that +each of them had a city for himself,[255]--the one Janiculum, and the +other Saturnia. But those seekers after every kind of unseemliness +in the worship of the gods have disgraced him, whose life they found +to be less disgraceful than that of the other gods, with an image +of monstrous deformity, making it sometimes with two faces, and +sometimes, as it were, double, with four faces.[256] Did they wish +that, as the most of the select gods had lost shame[257] through the +perpetration of shameful crimes, his greater innocence should be +marked by a greater number of faces?[258] + + + 5. _Concerning the more secret doctrine of the pagans, and + concerning the physical interpretations._ + +But let us hear their own physical interpretations by which they +attempt to colour, as with the appearance of profounder doctrine, +the baseness of most miserable error. Varro, in the first place, +commends these interpretations so strongly as to say, that the +ancients invented the images, badges, and adornments of the gods, +in order that when those who went to the mysteries should see them +with their bodily eyes, they might with the eyes of their mind see +the soul of the world, and its parts, that is, the true gods; and +also that the meaning which was intended by those who made their +images with the human form, seemed to be this,--namely, that the mind +of mortals, which is in a human body, is very like to the immortal +mind,[259] just as vessels might be placed to represent the gods, +as, for instance, a wine-vessel might be placed in the temple of +Liber, to signify wine, that which is contained being signified by +that which contains. Thus by an image which had the human form the +rational soul was signified, because the human form is the vessel, +as it were, in which that nature is wont to be contained which they +attribute to God, or to the gods. These are the mysteries of doctrine +to which that most learned man penetrated in order that he might +bring them forth to the light. But, O thou most acute man, hast thou +lost among those mysteries that prudence which led thee to form the +sober opinion, that those who first established those images for the +people took away fear from the citizens and added error, and that +the ancient Romans honoured the gods more chastely without images? +For it was through consideration of them that thou wast emboldened +to speak these things against the later Romans. For if those most +ancient Romans also had worshipped images, perhaps thou wouldst +have suppressed by the silence of fear all those sentiments (true +sentiments, nevertheless) concerning the folly of setting up images, +and wouldst have extolled more loftily, and more loquaciously, +those mysterious doctrines consisting of these vain and pernicious +fictions. Thy soul, so learned and so clever (and for this I grieve +much for thee), could never through these mysteries have reached its +God; that is, the God by whom, not with whom, it was made, of whom +it is not a part, but a work,--that God who is not the soul of all +things, but who made every soul, and in whose light alone every soul +is blessed, if it be not ungrateful for His grace. + +But the things which follow in this book will show what is the nature +of these mysteries, and what value is to be set upon them. Meanwhile, +this most learned man confesses as his opinion that the soul of the +world and its parts are the true gods, from which we perceive that +his theology (to wit, that same natural theology to which he pays +great regard) has been able, in its completeness, to extend itself +even to the nature of the rational soul. For in this book (concerning +the select gods) he says a very few things by anticipation concerning +the natural theology; and we shall see whether he has been able in +that book, by means of physical interpretations, to refer to this +natural theology that civil theology, concerning which he wrote last +when treating of the select gods. Now, if he has been able to do +this, the whole is natural; and in that case, what need was there for +distinguishing so carefully the civil from the natural? But if it +has been distinguished by a veritable distinction, then, since not +even this natural theology with which he is so much pleased is true +(for though it has reached as far as the soul, it has not reached +to the true God who made the soul), how much more contemptible and +false is that civil theology which is chiefly occupied about what is +corporeal, as will be shown by its very interpretations, which they +have with such diligence sought out and enucleated, some of which I +must necessarily mention! + + + 6. _Concerning the opinion of Varro, that God is the soul of the + world, which nevertheless, in its various parts, has many souls + whose nature is divine._ + +The same Varro, then, still speaking by anticipation, says that he +thinks that God is the soul of the world (which the Greeks call +κόσμος), and that this world itself is God; but as a wise man, though +he consists of body and mind, is nevertheless called wise on account +of his mind, so the world is called God on account of mind, although +it consists of mind and body. Here he seems, in some fashion at least, +to acknowledge one God; but that he may introduce more, he adds that +the world is divided into two parts, heaven and earth, which are +again divided each into two parts, heaven into ether and air, earth +into water and land, of all which the ether is the highest, the air +second, the water third, and the earth the lowest. All these four +parts, he says, are full of souls; those which are in the ether and +air being immortal, and those which are in the water and on the earth +mortal. From the highest part of the heavens to the orbit of the moon +there are souls, namely, the stars and planets; and these are not only +understood to be gods, but are seen to be such. And between the orbit +of the moon and the commencement of the region of clouds and winds +there are aerial souls; but these are seen with the mind, not with the +eyes, and are called Heroes, and Lares, and Genii. This is the natural +theology which is briefly set forth in these anticipatory statements, +and which satisfied not Varro only, but many philosophers besides. This +I must discuss more carefully, when, with the help of God, I shall have +completed what I have yet to say concerning the civil theology, as far +as it concerns the select gods. + + + 7. _Whether it is reasonable to separate Janus and Terminus as + two distinct deities._ + +Who, then, is Janus, with whom Varro commences? He is the world. +Certainly a very brief and unambiguous reply. Why, then, do they +say that the beginnings of things pertain to him, but the ends to +another whom they call Terminus? For they say that two months have +been dedicated to these two gods, with reference to beginnings +and ends--January to Janus, and February to Terminus--over and +above those ten months which commence with March and end with +December. And they say that that is the reason why the Terminalia +are celebrated in the month of February, the same month in which +the sacred purification is made which they call Februum, and from +which the month derives its name.[260] Do the beginnings of things, +therefore, pertain to the world, which is Janus, and not also the +ends, since another god has been placed over them? Do they not +own that all things which they say begin in this world also come +to an end in this world? What folly it is, to give him only half +power in work, when in his image they give him two faces! Would it +not be a far more elegant way of interpreting the two-faced image, +to say that Janus and Terminus are the same, and that the one face +has reference to beginnings, the other to ends? For one who works +ought to have respect to both. For he who in every forthputting of +activity does not look back on the beginning, does not look forward +to the end. Wherefore it is necessary that prospective intention be +connected with retrospective memory. For how shall one find how to +finish anything, if he has forgotten what it was which he had begun? +But if they thought that the blessed life is begun in this world, +and perfected beyond the world, and for that reason attributed to +Janus, that is, to the world, only the power of beginnings, they +should certainly have preferred Terminus to him, and should not have +shut him out from the number of the select gods. Yet even now, when +the beginnings and ends of temporal things are represented by these +two gods, more honour ought to have been given to Terminus. For the +greater joy is that which is felt when anything is finished; but +things begun are always cause of much anxiety until they are brought +to an end, which end he who begins anything very greatly longs for, +fixes his mind on, expects, desires; nor does any one ever rejoice +over anything he has begun, unless it be brought to an end. + + + 8. _For what reason the worshippers of Janus have made his image + with two faces, when they would sometimes have it be seen with + four._ + +But now let the interpretation of the two-faced image be produced. +For they say that it has two faces, one before and one behind, +because our gaping mouths seem to resemble the world: whence the +Greeks call the palate οὐρανός, and some Latin poets,[261] he says, +have called the heavens palatum [the palate]; and from the gaping +mouth, they say, there is a way out in the direction of the teeth, +and a way in in the direction of the gullet. See what the world has +been brought to on account of a Greek or a poetical word for our +palate! Let this god be worshipped only on account of saliva, which +has two open doorways under the heavens of the palate,--one through +which part of it may be spitten out, the other through which part of +it may be swallowed down. Besides, what is more absurd than not to +find in the world itself two doorways opposite to each other, through +which it may either receive anything into itself, or cast it out from +itself; and to seek of our throat and gullet, to which the world has +no resemblance, to make up an image of the world in Janus, because +the world is said to resemble the _palate_, to which Janus bears no +likeness? But when they make him four-faced, and call him double +Janus, they interpret this as having reference to the four quarters +of the world, as though the world looked out on anything, like Janus +through his four faces. Again, if Janus is the world, and the world +consists of four quarters, then the image of the two-faced Janus +is false. Or if it is true, because the whole world is sometimes +understood by the expression east and west, will any one call the +world double when north and south also are mentioned, as they call +Janus double when he has four faces? They have no way at all of +interpreting, in relation to the world, four doorways by which to go +in and to come out as they did in the case of the two-faced Janus, +where they found, at any rate in the human mouth, something which +answered to what they said about him; unless perhaps Neptune come to +their aid, and hand them a fish, which, besides the mouth and gullet, +has also the openings of the gills, one on each side. Nevertheless, +with all the doors, no soul escapes this vanity but that one which +hears the truth saying, "I am the door."[262] + + + 9. _Concerning the power of Jupiter, and a comparison of Jupiter + with Janus._ + +But they also show whom they would have Jove (who is also called +Jupiter) understood to be. He is the god, say they, who has the power +of the causes by which anything comes to be in the world. And how +great a thing this is, that most noble verse of Virgil testifies: + + "Happy is he who has learned the causes of things."[263] + +But why is Janus preferred to him? Let that most acute and most +learned man answer us this question. "Because," says he, "Janus +has dominion over first things, Jupiter over highest[264] things. +Therefore Jupiter is deservedly held to be the king of all things; +for highest things are better than first things: for although first +things precede in time, highest things excel by dignity." + +Now this would have been rightly said had the first parts of things +which are done been distinguished from the highest parts; as, for +instance, it is the beginning of a thing done to set out, the highest +part to arrive. The commencing to learn is the first part of a thing +begun, the acquirement of knowledge is the highest part. And so of +all things: the beginnings are first, the ends highest. This matter, +however, has been already discussed in connection with Janus and +Terminus. But the causes which are attributed to Jupiter are things +effecting, not things effected; and it is impossible for them to +be prevented in time by things which are made or done, or by the +beginnings of such things; for the thing which makes is always prior +to the thing which is made. Therefore, though the beginnings of +things which are made or done pertain to Janus, they are nevertheless +not prior to the efficient causes which they attribute to Jupiter. +For as nothing takes place without being preceded by an efficient +cause, so without an efficient cause nothing begins to take place. +Verily, if the people call this god Jupiter, in whose power are all +the causes of all natures which have been made, and of all natural +things, and worship him with such insults and infamous criminations, +they are guilty of more shocking sacrilege than if they should +totally deny the existence of any god. It would therefore be better +for them to call some other god by the name of Jupiter--some one +worthy of base and criminal honours; substituting instead of Jupiter +some vain fiction (as Saturn is said to have had a stone given to him +to devour instead of his son), which they might make the subject of +their blasphemies, rather than speak of _that_ god as both thundering +and committing adultery,--ruling the whole world, and laying himself +out for the commission of so many licentious acts,--having in his +power nature and the highest causes of all natural things, but not +having his own causes good. + +Next, I ask what place they find any longer for this Jupiter among +the gods, if Janus is the world; for Varro defined the true gods to +be the soul of the world, and the parts of it. And therefore whatever +falls not within this definition, is certainly not a true god, +according to them. Will they then say that Jupiter is the soul of +the world, and Janus the body--that is, this visible world? If they +say this, it will not be possible for them to affirm that Janus is +a god. For even, according to them, the body of the world is not a +god, but the soul of the world and its parts. Wherefore Varro, seeing +this, says that he thinks God is the soul of the world, and that +this world itself is God; but that as a wise man, though he consists +of soul and body, is nevertheless called wise from the soul, so the +world is called God from the soul, though it consists of soul and +body. Therefore the body of the world alone is not God, but either +the soul of it alone, or the soul and the body together, yet so as +that it is God not by virtue of the body, but by virtue of the soul. +If, therefore, Janus is the world, and Janus is a god, will they say, +in order that Jupiter may be a god, that he is some part of Janus? +For they are wont rather to attribute universal existence to Jupiter; +whence the saying, "All things are full of Jupiter."[265] Therefore +they must think Jupiter also, in order that he may be a god, and +especially king of the gods, to be the world, that he may rule over +the other gods--according to them, his parts. To this effect, also, +the same Varro expounds certain verses of Valerius Soranus[266] in +that book which he wrote apart from the others concerning the worship +of the gods. These are the verses: + + "Almighty Jove, progenitor of kings, and things, and gods, + And eke the mother of the gods, god one and all." + +But in the same book he expounds these verses by saying that as the +male emits seed, and the female receives it, so Jupiter, whom they +believed to be the world, both emits all seeds from himself and +receives them into himself. For which reason, he says, Soranus wrote, +"Jove, progenitor and mother;" and with no less reason said that one +and all were the same. For the world is one, and in that one are all +things. + + + 10. _Whether the distinction between Janus and Jupiter is a proper + one._ + +Since, therefore, Janus is the world, and Jupiter is the world, +wherefore are Janus and Jupiter two gods, while the world is but one? +Why do they have separate temples, separate altars, different rites, +dissimilar images? If it be because the nature of beginnings is one, +and the nature of causes another, and the one has received the name +of Janus, the other of Jupiter; is it then the case, that if one man +has two distinct offices of authority, or two arts, two judges or two +artificers are spoken of, because the nature of the offices or the +arts is different? So also with respect to one god: if he have the +power of beginnings and of causes, must he therefore be thought to be +two gods, because beginnings and causes are two things? But if they +think that this is right, let them also affirm that Jupiter is as +many gods as they have given him surnames, on account of many powers; +for the things from which these surnames are applied to him are many +and diverse. I shall mention a few of them. + + + 11. _Concerning the surnames of Jupiter, which are referred not to + many gods, but to one and the same god._ + +They have called him Victor, Invictus, Opitulus, Impulsor, Stator, +Centumpeda, Supinalis, Tigillus, Almus, Ruminus, and other names +which it were long to enumerate. But these surnames they have given +to one god on account of diverse causes and powers, but yet have not +compelled him to be, on account of so many things, as many gods. They +gave him these surnames because he conquered all things; because he +was conquered by none; because he brought help to the needy; because +he had the power of impelling, stopping, stablishing, throwing on +the back; because as a beam[267] he held together and sustained the +world; because he nourished all things; because, like the pap,[268] +he nourished animals. Here, we perceive, are some great things and +some small things; and yet it is one who is said to perform them +all. I think that the causes and the beginnings of things, on account +of which they have thought that the one world is two gods, Jupiter +and Janus, are nearer to each other than the holding together of the +world, and the giving of the pap to animals; and yet, on account +of these two works so far apart from each other, both in nature +and dignity, there has not been any necessity for the existence of +two gods; but one Jupiter has been called, on account of the one +Tigillus, on account of the other Ruminus. I am unwilling to say +that the giving of the pap to sucking animals might have become Juno +rather than Jupiter, especially when there was the goddess Rumina to +help and to serve her in this work; for I think it may be replied +that Juno herself is nothing else than Jupiter, according to those +verses of Valerius Soranus, where it has been said: + + "Almighty Jove, progenitor of kings, and things, and gods, + And eke the mother of the gods," etc. + +Why, then, was he called Ruminus, when they who may perchance inquire +more diligently may find that he is also that goddess Rumina? + +If, then, it was rightly thought unworthy of the majesty of the gods, +that in one ear of corn one god should have the care of the joint, +another that of the husk, how much more unworthy of that majesty is +it, that one thing, and that of the lowest kind, even the giving of +the pap to animals that they may be nourished, should be under the +care of two gods, one of whom is Jupiter himself, the very king of +all things, who does this not along with his own wife, but with some +ignoble Rumina (unless perhaps he himself is Rumina, being Ruminus +for males and Rumina for females)! I should certainly have said that +they had been unwilling to apply to Jupiter a feminine name, had he +not been styled in these verses "progenitor and mother," and had I +not read among other surnames of his that of Pecunia [money], which +we found as a goddess among those petty deities, as I have already +mentioned in the fourth book. But since both males and females have +money [_pecuniam_], why has he not been called both Pecunius and +Pecunia? That is their concern. + + + 12. _That Jupiter is also called Pecunia._ + +How elegantly they have accounted for this name! "He is also called +Pecunia," say they, "because all things belong to him." Oh how grand an +explanation of the name of a deity! Yes; he to whom all things belong +is most meanly and most contumeliously called Pecunia. In comparison of +all things which are contained by heaven and earth, what are all things +together which are possessed by men under the name of money?[269] And +this name, forsooth, hath avarice given to Jupiter, that whoever was a +lover of money might seem to himself to love not an ordinary god, but +the very king of all things himself. But it would be a far different +thing if he had been called Riches. For riches are one thing, money +another. For we call rich the wise, the just, the good, who have either +no money or very little. For they are more truly rich in possessing +virtue, since by it, even as respects things necessary for the body, +they are content with what they have. But we call the greedy poor, +who are always craving and always wanting. For they may possess ever +so great an amount of money; but whatever be the abundance of that, +they are not able but to want. And we properly call God Himself rich; +not, however, in money, but in omnipotence. Therefore they who have +abundance of money are called rich, but inwardly needy if they are +greedy. So also, those who have no money are called poor, but inwardly +rich if they are wise. + +What, then, ought the wise man to think of this theology, in which +the king of the gods receives the name of that thing "which no wise +man has desired?"[270] For had there been anything wholesomely +taught by this philosophy concerning eternal life, how much more +appropriately would that god who is the ruler of the world have been +called by them, not money, but wisdom, the love of which purges from +the filth of avarice, that is, of the love of money! + + + 13. _That when it is expounded what Saturn is, what Genius is, it + comes to this, that both of them are shown to be Jupiter._ + +But why speak more of this Jupiter, with whom perchance all the +rest are to be identified; so that, he being all, the opinion as to +the existence of many gods may remain as a mere opinion, empty of +all truth? And they are all to be referred to him, if his various +parts and powers are thought of as so many gods, or if the principle +of mind which they think to be diffused through all things has +received the names of many gods from the various parts which the +mass of this visible world combines in itself, and from the manifold +administration of nature. For what is Saturn also? "One of the +principal gods," he says, "who has dominion over all sowings." Does +not the exposition of the verses of Valerius Soranus teach that +Jupiter is the world, and that he emits all seeds from himself, and +receives them into himself? + +It is he, then, with whom is the dominion of all sowings. What +is Genius? "He is the god who is set over, and has the power of +begetting, all things." Who else than the world do they believe to +have this power, to which it has been said: + + "Almighty Jove, progenitor and mother?" + +And when in another place he says that Genius is the rational soul of +every one, and therefore exists separately in each individual, but +that the corresponding soul of the world is God, he just comes back +to this same thing,--namely, that the soul of the world itself is to +be held to be, as it were, the universal genius. This, therefore, is +what he calls Jupiter. For if every genius is a god, and the soul +of every man a genius, it follows that the soul of every man is a +god. But if very absurdity compels even these theologists themselves +to shrink from this, it remains that they call that genius god by +special and pre-eminent distinction, whom they call the soul of the +world, and therefore Jupiter. + + + 14. _Concerning the offices of Mercury and Mars._ + +But they have not found how to refer Mercury and Mars to any parts +of the world, and to the works of God which are in the elements; +and therefore they have set them at least over human works, making +them assistants in speaking and in carrying on wars. Now Mercury, +if he has also the power of the speech of the gods, rules also over +the king of the gods himself, if Jupiter, as he receives from him +the faculty of speech, also speaks according as it is his pleasure +to permit him--which surely is absurd; but if it is only the power +over human speech which is held to be attributed to him, then we say +it is incredible that Jupiter should have condescended to give the +pap not only to children, but also to beasts--from which he has been +surnamed Ruminus--and yet should have been unwilling that the care of +our speech, by which we excel the beasts, should pertain to him. And +thus speech itself both belongs to Jupiter, and is Mercury. But if +speech itself is said to be Mercury, as those things which are said +concerning him by way of interpretation show it to be;--for he is +said to have been called Mercury, that is, he who runs between,[271] +because speech runs between men: they say also that the Greeks call +him Ἑρμῆς, because speech, or interpretation, which certainly belongs +to speech, is called by them ἑρμηνεία: also he is said to preside +over payments, because speech passes between sellers and buyers: +the wings, too, which he has on his head and on his feet, they say, +mean that speech passes winged through the air: he is also said to +have been called the messenger,[272] because by means of speech all +our thoughts are expressed;[273]--if, therefore, speech itself is +Mercury, then, even by their own confession, he is not a god. But +when they make to themselves gods of such as are not even demons, by +praying to unclean spirits, they are possessed by such as are not +gods, but demons. In like manner, because they have not been able +to find for Mars any element or part of the world in which he might +perform some works of nature of whatever kind, they have said that he +is the god of war, which is a work of men, and that not one which is +considered desirable by them. If, therefore, Felicitas should give +perpetual peace, Mars would have nothing to do. But if war itself is +Mars, as speech is Mercury, I wish it were as true that there were no +war to be falsely called a god, as it is true that it is not a god. + + 15. _Concerning certain stars which the pagans have called by the + names of their gods._ + +But possibly these stars which have been called by their names are +these gods. For they call a certain star Mercury, and likewise a +certain other star Mars. But among those stars which are called by the +names of gods, is that one which they call Jupiter, and yet with them +Jupiter is the world. There also is that one they call Saturn, and yet +they give to him no small property besides,--namely, all seeds. There +also is that brightest of them all which is called by them Venus, +and yet they will have this same Venus to be also the moon:--not to +mention how Venus and Juno are said by them to contend about that most +brilliant star, as though about another golden apple. For some say +that Lucifer belongs to Venus, and some to Juno. But, as usual, Venus +conquers. For by far the greatest number assign that star to Venus, so +much so that there is scarcely found one of them who thinks otherwise. +But since they call Jupiter the king of all, who will not laugh to see +his star so far surpassed in brilliancy by the star of Venus? For it +ought to have been as much more brilliant than the rest, as he himself +is more powerful. They answer that it only appears so because it is +higher up, and very much farther away from the earth. If, therefore, +its greater dignity has deserved a higher place, why is Saturn higher +in the heavens than Jupiter? Was the vanity of the fable which made +Jupiter king not able to reach the stars? And has Saturn been permitted +to obtain at least in the heavens, what he could not obtain in his own +kingdom nor in the Capitol? + +But why has Janus received no star? If it is because he is the world, +and they are all in him, the world is also Jupiter's, and yet he has +one. Did Janus compromise his case as best he could, and instead of +the one star which he does not have among the heavenly bodies, accept +so many faces on earth? Again, if they think that on account of the +stars alone Mercury and Mars are parts of the world, in order that +they may be able to have them for gods, since speech and war are not +parts of the world, but acts of men, how is it that they have made +no altars, established no rites, built no temples for Aries, and +Taurus, and Cancer, and Scorpio, and the rest which they number as +the celestial signs, and which consist not of single stars, but each +of them of many stars, which also they say are situated above those +already mentioned in the highest part of the heavens, where a more +constant motion causes the stars to follow an undeviating course? And +why have they not reckoned them as gods, I do not say among those +select gods, but not even among those, as it were, plebeian gods? + + + 16. _Concerning Apollo and Diana, and the other select gods whom + they would have to be parts of the world._ + +Although they would have Apollo to be a diviner and physician, they +have nevertheless given him a place as some part of the world. They +have said that he is also the sun; and likewise they have said that +Diana, his sister, is the moon, and the guardian of roads. Whence +also they will have her be a virgin, because a road brings forth +nothing. They also make both of them have arrows, because those two +planets send their rays from the heavens to the earth. They make +Vulcan to be the fire of the world; Neptune the waters of the world; +Father Dis, that is, Orcus, the earthy and lowest part of the world. +Liber and Ceres they set over seeds,--the former over the seeds of +males, the latter over the seeds of females; or the one over the +fluid part of seed, but the other over the dry part. And all this +together is referred to the world, that is, to Jupiter, who is called +"progenitor and mother," because he emitted all seeds from himself, +and received them into himself. For they also make this same Ceres +to be the Great Mother, who they say is none other than the earth, +and call her also Juno. And therefore they assign to her the second +causes of things, notwithstanding that it has been said to Jupiter, +"progenitor and mother of the gods;" because, according to them, the +whole world itself is Jupiter's. Minerva, also, because they set +her over human arts, and did not find even a star in which to place +her, has been said by them to be either the highest æther, or even +the moon. Also Vesta herself they have thought to be the highest of +the goddesses, because she is the earth; although they have thought +that the milder fire of the world, which is used for the ordinary +purposes of human life, not the more violent fire, such as belongs to +Vulcan, is to be assigned to her. And thus they will have all those +select gods to be the world and its parts,--some of them the whole +world, others of them its parts; the whole of it Jupiter,--its parts, +Genius, Mater Magna, Sol and Luna, or rather Apollo and Diana, and so +on. And sometimes they make one god many things; sometimes one thing +many gods. Many things are one god in the case of Jupiter; for both +the whole world is Jupiter, and the sky alone is Jupiter, and the +star alone is said and held to be Jupiter. Juno also is mistress of +second causes,--Juno is the air, Juno is the earth; and had she won +it over Venus, Juno would have been the star. Likewise Minerva is the +highest æther, and Minerva is likewise the moon, which they suppose +to be in the lowest limit of the æther. And also they make one thing +many gods in this way. The world is both Janus and Jupiter; also the +earth is Juno, and Mater Magna, and Ceres. + + + 17. _That even Varro himself pronounced his own opinions regarding + the gods ambiguous._ + +And the same is true with respect to all the rest, as is true with +respect to those things which I have mentioned for the sake of +example. They do not explain them, but rather involve them. They +rush hither and thither, to this side or to that, according as they +are driven by the impulse of erratic opinion; so that even Varro +himself has chosen rather to doubt concerning all things, than to +affirm anything. For, having written the first of the three last +books concerning the certain gods, and having commenced in the second +of these to speak of the uncertain gods, he says: "I ought not to +be censured for having stated in this book the doubtful opinions +concerning the gods. For he who, when he has read them, shall +think that they both ought to be, and can be, conclusively judged +of, will do so himself. For my own part, I can be more easily led +to doubt the things which I have written in the first book, than +to attempt to reduce all the things I shall write in this one to +any orderly system." Thus he makes uncertain not only that book, +concerning the uncertain gods, but also that other concerning the +certain gods. Moreover, in that third book concerning the select +gods, after having exhibited by anticipation as much of the natural +theology as he deemed necessary, and when about to commence to +speak of the vanities and lying insanities of the civil theology, +where he was not only without the guidance of the truth of things, +but was also pressed by the authority of tradition, he says: "I +will write in this book concerning the public gods of the Roman +people, to whom they have dedicated temples, and whom they have +conspicuously distinguished by many adornments; but, as Xenophon of +Colophon writes, I will state what I think, not what I am prepared to +maintain: it is for man to think those things, for God to know them." + +It is not, then, an account of things comprehended and most certainly +believed which he promised, when about to write those things which +were instituted by men. He only timidly promises an account of things +which are but the subject of doubtful opinion. Nor, indeed, was it +possible for him to affirm with the same certainty that Janus was the +world, and such like things; or to discover with the same certainty +such things as how Jupiter was the son of Saturn, while Saturn was +made subject to him as king:--he could, I say, neither affirm nor +discover such things with the same certainty with which he knew such +things as that the world existed, that the heavens and earth existed, +the heavens bright with stars, and the earth fertile through seeds; +or with the same perfect conviction with which he believed that this +universal mass of nature is governed and administered by a certain +invisible and mighty force. + + + 18. _A more credible cause of the rise of pagan error._ + +A far more credible account of these gods is given, when it is said +that they were men, and that to each one of them sacred rites and +solemnities were instituted, according to his particular genius, +manners, actions, circumstances; which rites and solemnities, by +gradually creeping through the souls of men, which are like demons, +and eager for things which yield them sport, were spread far and +wide; the poets adorning them with lies, and false spirits seducing +men to receive them. For it is far more likely that some youth, +either impious himself, or afraid of being slain by an impious +father, being desirous to reign, dethroned his father, than that +(according to Varro's interpretation) Saturn was overthrown by his +son Jupiter; for cause, which belongs to Jupiter, is before seed, +which belongs to Saturn. For had this been so, Saturn would never +have been before Jupiter, nor would he have been the father of +Jupiter. For cause always precedes seed, and is never generated from +seed. But when they seek to honour by natural interpretation most +vain fables or deeds of men, even the acutest men are so perplexed +that we are compelled to grieve for their folly also. + + + 19. _Concerning the interpretations which compose the reason of + the worship of Saturn._ + +They said, says Varro, that Saturn was wont to devour all that +sprang from him, because seeds returned to the earth from whence +they sprang. And when it is said that a lump of earth was put before +Saturn to be devoured instead of Jupiter, it is signified, he says, +that before the art of ploughing was discovered, seeds were buried in +the earth by the hands of men. The earth itself, then, and not seeds, +should have been called Saturn, because it in a manner devours what +it has brought forth, when the seeds which have sprung from it return +again into it. And what has Saturn's receiving of a lump of earth +instead of Jupiter to do with this, that the seeds were covered in +the soil by the hands of men? Was the seed kept from being devoured, +like other things, by being covered with the soil? For what they +say would imply that he who put on the soil took away the seed, as +Jupiter is said to have been taken away when the lump of soil was +offered to Saturn instead of him, and not rather that the soil, by +covering the seed, only caused it to be devoured the more eagerly. +Then, in that way, Jupiter is the seed, and not the cause of the +seed, as was said a little before. + +But what shall men do who cannot find anything wise to say, because +they are interpreting foolish things? Saturn has a pruning-knife. That, +says Varro, is on account of agriculture. Certainly in Saturn's reign +there as yet existed no agriculture, and therefore the former times +of Saturn are spoken of, because, as the same Varro interprets the +fables, the primeval men lived on those seeds which the earth produced +spontaneously. Perhaps he received a pruning-knife when he had lost +his sceptre; that he who had been a king, and lived at ease during +the first part of his time, should become a laborious workman whilst +his son occupied the throne. Then he says that boys were wont to be +immolated to him by certain peoples, the Carthaginians for instance; +and also that adults were immolated by some nations, for example the +Gauls--because, of all seeds, the human race is the best. What need +we say more concerning this most cruel vanity? Let us rather attend +to and hold by this, that these interpretations are not carried up to +the true God,--a living, incorporeal, unchangeable nature, from whom a +blessed life enduring for ever may be obtained,--but that they end in +things which are corporeal, temporal, mutable, and mortal. And whereas +it is said in the fables that Saturn castrated his father Cœlus, this +signifies, says Varro, that the divine seed belongs to Saturn, and +not to Cœlus; for this reason, as far as a reason can be discovered, +namely, that in heaven[274] nothing is born from seed. But, lo! Saturn, +if he is the son of Cœlus, is the son of Jupiter. For they affirm +times without number, and that emphatically, that the heavens[275] are +Jupiter. Thus those things which come not of the truth, do very often, +without being impelled by any one, themselves overthrow one another. He +says that Saturn was called Κρόνος, which in the Greek tongue signifies +a space of time,[276] because, without that, seed cannot be productive. +These and many other things are said concerning Saturn, and they are +all referred to seed. But Saturn surely, with all that great power, +might have sufficed for seed. Why are other gods demanded for it, +especially Liber and Libera, that is, Ceres?--concerning whom again, +as far as seed is concerned, he says as many things as if he had said +nothing concerning Saturn. + + + 20. _Concerning the rites of Eleusinian Ceres_. + +Now among the rites of Ceres, those Eleusinian rites are much famed +which were in the highest repute among the Athenians, of which Varro +offers no interpretation except with respect to corn, which Ceres +discovered, and with respect to Proserpine, whom Ceres lost, Orcus +having carried her away. And this Proserpine herself, he says, +signifies the fecundity of seeds. But as this fecundity departed at +a certain season, whilst the earth wore an aspect of sorrow through +the consequent sterility, there arose an opinion that the daughter +of Ceres, that is, fecundity itself, who was called Proserpine, from +_proserpere_ (to creep forth, to spring), had been carried away by +Orcus, and detained among the inhabitants of the nether world; which +circumstance was celebrated with public mourning. But since the same +fecundity again returned, there arose joy because Proserpine had been +given back by Orcus, and thus these rites were instituted. Then Varro +adds, that many things are taught in the mysteries of Ceres which +only refer to the discovery of fruits. + + + 21. _Concerning the shamefulness of the rites which are celebrated + in honour of Liber_. + +Now as to the rites of Liber, whom they have set over liquid seeds, +and therefore not only over the liquors of fruits, among which +wine holds, so to speak, the primacy, but also over the seeds of +animals:--as to these rites, I am unwilling to undertake to show +to what excess of turpitude they had reached, because that would +entail a lengthened discourse, though I am not unwilling to do so +as a demonstration of the proud stupidity of those who practise +them. Among other rites which I am compelled from the greatness +of their number to omit, Varro says that in Italy, at the places +where roads crossed each other, the rites of Liber were celebrated +with such unrestrained turpitude, that the private parts of a man +were worshipped in his honour. Nor was this abomination transacted +in secret, that some regard at least might be paid to modesty, +but was openly and wantonly displayed. For during the festival of +Liber, this obscene member, placed on a car, was carried with great +honour, first over the cross-roads in the country, and then into +the city. But in the town of Lavinium a whole month was devoted to +Liber alone, during the days of which all the people gave themselves +up to the most dissolute conversation, until that member had been +carried through the forum and brought to rest in its own place; on +which unseemly member it was necessary that the most honourable +matron should place a wreath in the presence of all the people. Thus, +forsooth, was the god Liber to be appeased in order to the growth of +seeds. Thus was enchantment to be driven away from fields, even by a +matron's being compelled to do in public what not even a harlot ought +to be permitted to do in a theatre, if there were matrons among the +spectators. For these reasons, then, Saturn alone was not believed +to be sufficient for seeds,--namely, that the impure mind might find +occasions for multiplying the gods; and that, being righteously +abandoned to uncleanness by the one true God, and being prostituted +to the worship of many false gods, through an avidity for ever +greater and greater uncleanness, it should call these sacrilegious +rites sacred things, and should abandon itself to be violated and +polluted by crowds of foul demons. + + + 22. _Concerning Neptune, and Salacia, and Venilia_. + +Now Neptune had Salacia to wife, who they say is the nether waters of +the sea. Wherefore was Venilia also joined to him? Was it not simply +through the lust of the soul desiring a greater number of demons to +whom to prostitute itself, and not because this goddess was necessary +to the perfection of their sacred rites? But let the interpretation +of this illustrious theology be brought forward to restrain us from +this censuring by rendering a satisfactory reason. Venilia, says +this theology, is the wave which comes to the shore, Salacia the +wave which returns into the sea. Why, then, are there two goddesses, +when it is one wave which comes and returns? Certainly it is mad +lust itself, which in its eagerness for many deities resembles the +waves which break on the shore. For though the water which goes is +not different from that which returns, still the soul which goes and +returns not is defiled by two demons, whom it has taken occasion by +this false pretext to invite. I ask thee, O Varro, and you who have +read such works of learned men, and think ye have learned something +great,--I ask you to interpret this, I do not say in a manner +consistent with the eternal and unchangeable nature which alone is +God, but only in a manner consistent with the doctrine concerning the +soul of the world and its parts, which ye think to be the true gods. +It is a somewhat more tolerable thing that ye have made that part of +the soul of the world which pervades the sea your god Neptune. Is +the wave, then, which comes to the shore and returns to the main, +two parts of the world, or two parts of the soul of the world? Who +of you is so silly as to think so? Why, then, have they made to you +two goddesses? The only reason seems to be, that your wise ancestors +have provided, not that many gods should rule you, but that many +of such demons as are delighted with those vanities and falsehoods +should possess you. But why has that Salacia, according to this +interpretation, lost the lower part of the sea, seeing that she was +represented as subject to her husband? For in saying that she is the +receding wave, ye have put her on the surface. Was she enraged at her +husband for taking Venilia as a concubine, and thus drove him from +the upper part of the sea? + + + 23. _Concerning the earth, which Varro affirms to be a goddess, + because that soul of the world which he thinks to be God + pervades also this lowest part of his body, and imparts to it a + divine force._ + +Surely the earth, which we see full of its own living creatures, is +one; but for all that, it is but a mighty mass among the elements, +and the lowest part of the world. Why, then, would they have it to +be a goddess? Is it because it is fruitful? Why, then, are not men +rather held to be gods, who render it fruitful by cultivating it; +but though they plough it, do not adore it? But, say they, the part +of the soul of the world which pervades it makes it a goddess. As +if it were not a far more evident thing, nay, a thing which is not +called in question, that there is a soul in man. And yet men are not +held to be gods, but (a thing to be sadly lamented), with wonderful +and pitiful delusion, are subjected to those who are not gods, and +than whom they themselves are better, as the objects of deserved +worship and adoration. And certainly the same Varro, in the book +concerning the select gods, affirms that there are three grades of +soul in universal nature. One which pervades all the living parts of +the body, and has not sensation, but only the power of life,--that +principle which penetrates into the bones, nails, and hair. By this +principle in the world trees are nourished, and grow without being +possessed of sensation, and live in a manner peculiar to themselves. +The second grade of soul is that in which there is sensation. This +principle penetrates into the eyes, ears, nostrils, mouth, and the +organs of sensation. The third grade of soul is the highest, and is +called mind, where intelligence has its throne. This grade of soul no +mortal creatures except man are possessed of. Now this part of the +soul of the world, Varro says, is called God, and in us is called +Genius. And the stones and earth in the world, which we see, and +which are not pervaded by the power of sensation, are, as it were, +the bones and nails of God. Again, the sun, moon, and stars, which we +perceive, and by which He perceives, are His organs of perception. +Moreover, the ether is His mind; and by the virtue which is in it, +which penetrates into the stars, it also makes them gods; and because +it penetrates through them into the earth, it makes it the goddess +Tellus, whence again it enters and permeates the sea and ocean, +making them the god Neptune. + +Let him return from this, which he thinks to be natural theology, +back to that from which he went out, in order to rest from the +fatigue occasioned by the many turnings and windings of his path. +Let him return, I say, let him return to the civil theology. I wish +to detain him there a while. I have somewhat to say which has to do +with that theology. I am not yet saying, that if the earth and stones +are similar to our bones and nails, they are in like manner devoid +of intelligence, as they are devoid of sensation. Nor am I saying +that, if our bones and nails are said to have intelligence, because +they are in a man who has intelligence, he who says that the things +analogous to these in the world are gods, is as stupid as he is who +says that our bones and nails are men. We shall perhaps have occasion +to dispute these things with the philosophers. At present, however, I +wish to deal with Varro as a political theologian. For it is possible +that, though he may seem to have wished to lift up his head, as it +were, into the liberty of natural theology, the consciousness that +the book with which he was occupied was one concerning a subject +belonging to civil theology, may have caused him to relapse into the +point of view of that theology, and to say this in order that the +ancestors of his nation, and other states, might not be believed to +have bestowed on Neptune an irrational worship. What I am to say is +this: Since the earth is one, why has not that part of the soul of +the world which permeates the earth made it that one goddess which he +calls Tellus? But had it done so, what then had become of Orcus, the +brother of Jupiter and Neptune, whom they call Father Dis?[277] And +where, in that case, had been his wife Proserpine, who, according to +another opinion given in the same book, is called, not the fecundity +of the earth, but its lower part?[278] But if they say that part of +the soul of the world, when it permeates the upper part of the earth, +makes the god Father Dis, but when it pervades the nether part of the +same the goddess Proserpine; what, in that case, will that Tellus be? +For all that which she was has been divided into these two parts, +and these two gods; so that it is impossible to find what to make or +where to place her as a third goddess, except it be said that those +divinities Orcus and Proserpine are the one goddess Tellus, and that +they are not three gods, but one or two, whilst notwithstanding they +are called three, held to be three, worshipped as three, having +their own several altars, their own shrines, rites, images, priests, +whilst their own false demons also through these things defile the +prostituted soul. Let this further question be answered: What part of +the earth does a part of the soul of the world permeate in order to +make the god Tellumo? No, says he; but the earth being one and the +same, has a double life,--the masculine, which produces seed, and +the feminine, which receives and nourishes the seed. Hence it has +been called Tellus from the feminine principle, and Tellumo from the +masculine. Why, then, do the priests, as he indicates, perform divine +service to four gods, two others being added,--namely, to Tellus, +Tellumo, Altor, and Rusor? We have already spoken concerning Tellus +and Tellumo. But why do they worship Altor?[279] Because, says he, +all that springs of the earth is nourished by the earth. Wherefore do +they worship Rusor?[280] Because all things return back again to the +place whence they proceeded. + + + 24. _Concerning the surnames of Tellus and their significations, + which, although they indicate many properties, ought not to have + established the opinion that there is a corresponding number of + gods._ + +The one earth, then, on account of this fourfold virtue, ought to +have had four surnames, but not to have been considered as four +gods,--as Jupiter and Juno, though they have so many surnames, are +for all that only single deities,--for by all these surnames it +is signified that a manifold virtue belongs to one god or to one +goddess; but the multitude of surnames does not imply a multitude of +gods. But as sometimes even the vilest women themselves grow tired of +those crowds which they have sought after under the impulse of wicked +passion, so also the soul, become vile, and prostituted to impure +spirits, sometimes begins to loathe to multiply to itself gods to +whom to surrender itself to be polluted by them, as much as it once +delighted in so doing. For Varro himself, as if ashamed of that crowd +of gods, would make Tellus to be one goddess. "They say," says he, +"that whereas the one great mother has a tympanum, it is signified +that she is the orb of the earth; whereas she has towers on her head, +towns are signified; and whereas seats are fixed round about her, it +is signified that whilst all things move, she moves not. And their +having made the Galli to serve this goddess, signifies that they +who are in need of seed ought to follow the earth, for in it all +seeds are found. By their throwing themselves down before her, it is +taught," he says, "that they who cultivate the earth should not sit +idle, for there is always something for them to do. The sound of the +cymbals signifies the noise made by the throwing of iron utensils, +and by men's hands, and all other noises connected with agricultural +operations; and these cymbals are of brass, because the ancients used +brazen utensils in their agriculture before iron was discovered. +They place beside the goddess an unbound and tame lion, to show that +there is no kind of land so wild and so excessively barren as that it +would be profitless to attempt to bring it in and cultivate it." Then +he adds that, because they gave many names and surnames to mother +Tellus, it came to be thought that these signified many gods. "They +think," says he, "that Tellus is Ops, because the earth is improved +by labour; Mother, because it brings forth much; Great, because it +brings forth seed; Proserpine, because fruits creep forth from it; +Vesta, because it is invested with herbs. And thus," says he, "they +not at all absurdly identify other goddesses with the earth." If, +then, it is one goddess (though, if the truth were consulted, it is +not even that), why do they nevertheless separate it into many? Let +there be many names of one goddess, and let there not be as many +goddesses as there are names. + +But the authority of the erring ancients weighs heavily on Varro, and +compels him, after having expressed this opinion, to show signs of +uneasiness; for he immediately adds, "With which things the opinion +of the ancients, who thought that there were really many goddesses, +does not conflict." How does it not conflict, when it is entirely a +different thing to say that one goddess has many names, and to say +that there are many goddesses? But it is possible, he says, that the +same thing may both be one, and yet have in it a plurality of things. +I grant that there are many things in one man; are there therefore in +him many men? In like manner, in one goddess there are many things; +are there therefore also many goddesses? But let them divide, unite, +multiply, reduplicate, and implicate as they like. + +These are the famous mysteries of Tellus and the Great Mother, all of +which are shown to have reference to mortal seeds and to agriculture. +Do these things, then,--namely, the tympanum, the towers, the +Galli, the tossing to and fro of limbs, the noise of cymbals, the +images of lions,--do these things, having this reference and this +end, promise eternal life? Do the mutilated Galli, then, serve this +Great Mother in order to signify that they who are in need of seed +should follow the earth, as though it were not rather the case that +this very service caused them to want seed? For whether do they, by +following this goddess, acquire seed, being in want of it, or, by +following her, lose seed when they have it? Is this to interpret or +to deprecate? Nor is it considered to what a degree malign demons +have gained the upper hand, inasmuch as they have been able to exact +such cruel rites without having dared to promise any great things +in return for them. Had the earth not been a goddess, men would +have, by labouring, laid their hands on _it_ in order to obtain seed +through it, and would not have laid violent hands on themselves in +order to lose seed on account of it. Had it not been a goddess, it +would have become so fertile by the hands of others, that it would +not have compelled a man to be rendered barren by his own hands; +nor that in the festival of Liber an honourable matron put a wreath +on the private parts of a man in the sight of the multitude, where +perhaps her husband was standing by blushing and perspiring, if there +is any shame left in men; and that in the celebration of marriages +the newly-married bride was ordered to sit upon Priapus. These things +are bad enough, but they are small and contemptible in comparison +with that most cruel abomination, or most abominable cruelty, by +which either set is so deluded that neither perishes of its wound. +There the enchantment of fields is feared; here the amputation of +members is not feared. There the modesty of the bride is outraged, +but in such a manner as that neither her fruitfulness nor even her +virginity is taken away; here a man is so mutilated that he is +neither changed into a woman nor remains a man. + + + 25. _The interpretation of the mutilation of Atys which the + doctrine of the Greek sages set forth._ + +Varro has not spoken of that Atys, nor sought out any interpretation +for him, in memory of whose being loved by Ceres the Gallus is +mutilated. But the learned and wise Greeks have by no means been silent +about an interpretation so holy and so illustrious. The celebrated +philosopher Porphyry has said that Atys signifies the flowers of +spring, which is the most beautiful season, and therefore was mutilated +because the flower falls before the fruit appears.[281] They have not, +then, compared the man himself, or rather that semblance of a man they +called Atys, to the flower, but his male organs,--these, indeed, fell +whilst he was living. Did I say fell? nay, truly they did not fall, nor +were they plucked off, but torn away. Nor when that flower was lost +did any fruit follow, but rather sterility. What, then, do they say is +signified by the castrated Atys himself, and whatever remained to him +after his castration? To what do they refer that? What interpretation +does that give rise to? Do they, after vain endeavours to discover +an interpretation, seek to persuade men that that is rather to be +believed which report has made public, and which has also been written +concerning his having been a mutilated man? Our Varro has very properly +opposed this, and has been unwilling to state it; for it certainly was +not unknown to that most learned man. + + + 26. _Concerning the abomination of the sacred rites of the Great + Mother_. + +Concerning the effeminates consecrated to the same Great Mother, in +defiance of all the modesty which belongs to men and women, Varro has +not wished to say anything, nor do I remember to have read anywhere +aught concerning them. These effeminates, no later than yesterday, +were going through the streets and places of Carthage with anointed +hair, whitened faces, relaxed bodies, and feminine gait, exacting from +the people the means of maintaining their ignominious lives. Nothing +has been said concerning them. Interpretation failed, reason blushed, +speech was silent. The Great Mother has surpassed all her sons, not +in greatness of deity, but of crime. To this monster not even the +monstrosity of Janus is to be compared. His deformity was only in his +image; hers was the deformity of cruelty in her sacred rites. He has a +redundancy of members in stone images; she inflicts the loss of members +on men. This abomination is not surpassed by the licentious deeds of +Jupiter, so many and so great. He, with all his seductions of women, +only disgraced heaven with one Ganymede; she, with so many avowed and +public effeminates, has both defiled the earth and outraged heaven. +Perhaps we may either compare Saturn to this Magna Mater, or even set +him before her in this kind of abominable cruelty, for he mutilated his +father. But at the festivals of Saturn men could rather be slain by the +hands of others than mutilated by their own. He devoured his sons, as +the poets say, and the natural theologists interpret this as they list. +History says he slew them. But the Romans never received, like the +Carthaginians, the custom of sacrificing their sons to him. This Great +Mother of the gods, however, has brought mutilated men into Roman +temples, and has preserved that cruel custom, being believed to promote +the strength of the Romans by emasculating their men. Compared with +this evil, what are the thefts of Mercury, the wantonness of Venus, and +the base and flagitious deeds of the rest of them, which we might bring +forward from books, were it not that they are daily sung and danced in +the theatres? But what are these things to so great an evil,--an evil +whose magnitude was only proportioned to the greatness of the Great +Mother,--especially as these are said to have been invented by the +poets? as if the poets had also invented this, that they are acceptable +to the gods. Let it be imputed, then, to the audacity and impudence of +the poets that these things have been sung and written of. But that +they have been incorporated into the body of divine rites and honours, +the deities themselves demanding and extorting that incorporation, +what is that but the crime of the gods? nay more, the confession of +demons and the deception of wretched men? But as to this, that the +Great Mother is considered to be worshipped in the appropriate form +when she is worshipped by the consecration of mutilated men, this is +not an invention of the poets, nay, they have rather shrunk from it +with horror than sung of it. Ought any one, then, to be consecrated to +these select gods, that he may live blessedly after death, consecrated +to whom he could not live decently before death, being subjected to +such foul superstitions, and bound over to unclean demons? But all +these things, says Varro, are to be referred to the world.[282] Let +him consider if it be not rather to the unclean.[283] But why not +refer that to the world which is demonstrated to be in the world? +We, however, seek for a mind which, trusting to true religion, does +not adore the world as its god, but for the sake of God praises the +world as a work of God, and, purified from mundane defilements, comes +pure[284] to God Himself who founded the world.[285] + + + 27. _Concerning the figments of the physical theologists, who + neither worship the true divinity, nor perform the worship + wherewith the true divinity should be served._ + +We see that these select gods have, indeed, become more famous than +the rest; not, however, that their merits may be brought to light, +but that their opprobrious deeds may not be hid. Whence it is more +credible that they were men, as not only poetic but also historical +literature has handed down. For this which Virgil says, + + "Then from Olympus' heights came down + Good Saturn, exiled from his throne + By Jove, his mightier heir;"[286] + +and what follows with reference to this affair, is fully related +by the historian Euhemerus, and has been translated into Latin by +Ennius. And as they who have written before us in the Greek or in the +Latin tongue against such errors as these have said much concerning +this matter, I have thought it unnecessary to dwell upon it. When I +consider those physical reasons, then, by which learned and acute men +attempt to turn human things into divine things, all I see is that +they have been able to refer these things only to temporal works and +to that which has a corporeal nature, and even though invisible still +mutable; and this is by no means the true God. But if this worship +had been performed as the symbolism of ideas at least congruous +with religion, though it would indeed have been cause of grief that +the true God was not announced and proclaimed by its symbolism, +nevertheless it could have been in some degree borne with, when +it did not occasion and command the performance of such foul and +abominable things. But since it is impiety to worship the body or the +soul for the true God, by whose indwelling alone the soul is happy, +how much more impious is it to worship those things through which +neither soul nor body can obtain either salvation or human honour? +Wherefore if with temple, priest, and sacrifice, which are due to +the true God, any element of the world be worshipped, or any created +spirit, even though not impure and evil, that worship is still evil, +not because the things are evil by which the worship is performed, +but because those things ought only to be used in the worship of +Him to whom alone such worship and service are due. But if any one +insist that he worships the one true God,--that is, the Creator of +every soul and of every body,--with stupid and monstrous idols, with +human victims, with putting a wreath on the male organ, with the +wages of unchastity, with the cutting of limbs, with emasculation, +with the consecration of effeminates, with impure and obscene plays, +such a one does not sin because he worships One who ought not to be +worshipped, but because he worships Him who ought to be worshipped +in a way in which He ought not to be worshipped. But he who worships +with such things,--that is, foul and obscene things,--and that not +the true God, namely, the maker of soul and body, but a creature, +even though not a wicked creature, whether it be soul or body, or +soul and body together, twice sins against God, because he both +worships for God what is not God, and also worships with such things +as neither God nor what is not God ought to be worshipped with. +It is, indeed, manifest how these pagans worship,--that is, how +shamefully and criminally they worship; but what or whom they worship +would have been left in obscurity, had not their history testified +that those same confessedly base and foul rites were rendered in +obedience to the demands of the gods, who exacted them with terrible +severity. Wherefore it is evident beyond doubt that this whole civil +theology is occupied in inventing means for attracting wicked and +most impure spirits, inviting them to visit senseless images, and +through these to take possession of stupid hearts. + + + 28. _That the doctrine of Varro concerning theology is in no part + consistent with itself_. + +To what purpose, then, is it that this most learned and most acute +man Varro attempts, as it were, with subtle disputation, to reduce +and refer all these gods to heaven and earth? He cannot do it. They +go out of his hands like water; they shrink back; they slip down and +fall. For when about to speak of the females, that is, the goddesses, +he says, "Since, as I observed in the first book concerning places, +heaven and earth are the two origins of the gods, on which account +they are called celestials and terrestrials, and as I began in the +former books with heaven, speaking of Janus, whom some have said to be +heaven, and others the earth, so I now commence with Tellus in speaking +concerning the goddesses." I can understand what embarrassment so +great a mind was experiencing. For he is influenced by the perception +of a certain plausible resemblance, when he says that the heaven is +that which does, and the earth that which suffers, and therefore +attributes the masculine principle to the one, and the feminine to +the other,--not considering that it is rather He who made both heaven +and earth who is the maker of both activity and passivity. On this +principle he interprets the celebrated mysteries of the Samothracians, +and promises, with an air of great devoutness, that he will by writing +expound these mysteries, which have not been so much as known to his +countrymen, and will send them his exposition. Then he says that he +had from many proofs gathered that, in those mysteries, among the +images one signifies heaven, another the earth, another the patterns of +things, which Plato calls ideas. He makes Jupiter to signify heaven, +Juno the earth, Minerva the ideas. Heaven, by which anything is made; +the earth, from which it is made; and the pattern, according to which +it is made. But, with respect to the last, I am forgetting to say +that Plato attributed so great an importance to these ideas as to +say, not that anything was made by heaven according to them, but that +according to them heaven itself was made.[287] To return, however,--it +is to be observed that Varro has, in the book on the select gods, lost +that theory of these gods, in whom he has, as it were, embraced all +things. For he assigns the male gods to heaven, the females to earth; +among which latter he has placed Minerva, whom he had before placed +above heaven itself. Then the male god Neptune is in the sea, which +pertains rather to earth than to heaven. Last of all, father Dis, who +is called in Greek Πλούτων, another male god, brother of both (Jupiter +and Neptune), is also held to be a god of the earth, holding the +upper region of the earth himself, and allotting the nether region to +his wife Proserpine. How, then, do they attempt to refer the gods to +heaven, and the goddesses to earth? What solidity, what consistency, +what sobriety has this disputation? But that Tellus is the origin +of the goddesses,--the great mother, to wit, beside whom there is +continually the noise of the mad and abominable revelry of effeminates +and mutilated men, and men who cut themselves, and indulge in frantic +gesticulations,--how is it, then, that Janus is called the head of +the gods, and Tellus the head of the goddesses? In the one case error +does not make one head, and in the other frenzy does not make a sane +one. Why do they vainly attempt to refer these to the world? Even if +they could do so, no pious person worships the world for the true God. +Nevertheless, plain truth makes it evident that they are not able even +to do this. Let them rather identify them with dead men and most wicked +demons, and no further question will remain. + + + 29. _That all things which the physical theologists have referred + to the world and its parts, they ought to have referred to the + one true God_. + +For all those things which, according to the account given of those +gods, are referred to the world by so-called physical interpretation, +may, without any religious scruple, be rather assigned to the true +God, who made heaven and earth, and created every soul and every +body; and the following is the manner in which we see that this may +be done. We worship God,--not heaven and earth, of which two parts +this world consists, nor the soul or souls diffused through all +living things,--but God who made heaven and earth, and all things +which are in them; who made every soul, whatever be the nature of its +life, whether it have life without sensation and reason, or life with +sensation, or life with both sensation and reason. + + + 30. _How piety distinguishes the Creator from the creatures, so + that, instead of one God, there are not worshipped as many gods + as there are works of the one author._ + +And now, to begin to go over those works of the one true God, on +account of which these have made to themselves many and false gods, +whilst they attempt to give an honourable interpretation to their +many most abominable and most infamous mysteries,--we worship +that God who has appointed to the natures created by Him both the +beginnings and the end of their existing and moving; who holds, +knows, and disposes the causes of things; who hath created the virtue +of seeds; who hath given to what creatures He would a rational soul, +which is called mind; who hath bestowed the faculty and use of +speech; who hath imparted the gift of foretelling future things to +whatever spirits it seemed to Him good; who also Himself predicts +future things, through whom He pleases, and through whom He will +removes diseases; who, when the human race is to be corrected and +chastised by wars, regulates also the beginnings, progress, and ends +of these wars; who hath created and governs the most vehement and +most violent fire of this world, in due relation and proportion to +the other elements of immense nature; who is the governor of all the +waters; who hath made the sun brightest of all material lights, and +hath given him suitable power and motion; who hath not withdrawn, +even from the inhabitants of the nether world, His dominion and +power; who hath appointed to mortal natures their suitable seed and +nourishment, dry or liquid; who establishes and makes fruitful the +earth; who bountifully bestows its fruits on animals and on men; who +knows and ordains, not only principal causes, but also subsequent +causes; who hath determined for the moon her motion; who affords +ways in heaven and on earth for passage from one place to another; +who hath granted also to human minds, which He hath created, the +knowledge of the various arts for the help of life and nature; who +hath appointed the union of male and female for the propagation of +offspring; who hath favoured the societies of men with the gift of +terrestrial fire for the simplest and most familiar purposes, to burn +on the hearth and to give light. These are, then, the things which +that most acute and most learned man Varro has laboured to distribute +among the select gods, by I know not what physical interpretation, +which he has got from other sources, and also conjectured for +himself. But these things the one true God makes and does, but as +_the same_ God,--that is, as He who is wholly everywhere, included +in no space, bound by no chains, mutable in no part of His being, +filling heaven and earth with omnipresent power, not with a needy +nature. Therefore He governs all things in such a manner as to +allow them to perform and exercise their own proper movements. For +although they can be nothing without Him, they are not what He is. +He does also many things through angels; but only from Himself does +He beatify angels. So also, though He send angels to men for certain +purposes, He does not for all that beatify men by the good inherent +in the angels, but by Himself, as He does the angels themselves. + + + 31. _What benefits God gives to the followers of the truth to + enjoy over and above His general bounty._ + +For, besides such benefits as, according to this administration +of nature of which we have made some mention, He lavishes on good +and bad alike, we have from Him a great manifestation of great +love, which belongs only to the good. For although we can never +sufficiently give thanks to Him, that we are, that we live, that we +behold heaven and earth, that we have mind and reason by which to +seek after Him who made all these things, nevertheless, what hearts, +what number of tongues, shall affirm that they are sufficient to +render thanks to Him for this, that He hath not wholly departed from +us, laden and overwhelmed with sins, averse to the contemplation of +His light, and blinded by the love of darkness, that is, of iniquity, +but hath sent to us His own Word, who is His only Son, that by His +birth and suffering for us in the flesh, which He assumed, we might +know how much God valued man, and that by that unique sacrifice +we might be purified from all our sins, and that, love being shed +abroad in our hearts by His Spirit, we might, having surmounted all +difficulties, come into eternal rest, and the ineffable sweetness of +the contemplation of Himself? + + + 32. _That at no time in the past was the mystery of Christ's + redemption awanting, but was at all times declared, though in + various forms._ + +This mystery of eternal life, even from the beginning of the human +race, was, by certain signs and sacraments suitable to the times, +announced through angels to those to whom it was meet. Then the +Hebrew people was congregated into one republic, as it were, to +perform this mystery; and in that republic was foretold, sometimes +through men who understood what they spake, and sometimes through +men who understood not, all that had transpired since the advent of +Christ until now, and all that will transpire. This same nation, too, +was afterwards dispersed through the nations, in order to testify +to the scriptures in which eternal salvation in Christ had been +declared. For not only the prophecies which are contained in words, +nor only the precepts for the right conduct of life, which teach +morals and piety, and are contained in the sacred writings,--not +only these, but also the rites, priesthood, tabernacle or temple, +altars, sacrifices, ceremonies, and whatever else belongs to that +service which is due to God, and which in Greek is properly called +λατρεία,--all these signified and fore-announced those things which +we who believe in Jesus Christ unto eternal life believe to have been +fulfilled, or behold in process of fulfilment, or confidently believe +shall yet be fulfilled. + + + 33. _That only through the Christian religion could the deceit of + malign spirits, who rejoice in the errors of men, have been + manifested._ + +This, the only true religion, has alone been able to manifest that +the gods of the nations are most impure demons, who desire to be +thought gods, availing themselves of the names of certain defunct +souls, or the appearance of mundane creatures, and with proud +impurity rejoicing in things most base and infamous, as though in +divine honours, and envying human souls their conversion to the +true God. From whose most cruel and most impious dominion a man is +liberated when he believes on Him who has afforded an example of +humility, following which men may rise as great as was that pride +by which they fell. Hence are not only those gods, concerning whom +we have already spoken much, and many others belonging to different +nations and lands, but also those of whom we are now treating, who +have been selected as it were into the senate of the gods,--selected, +however, on account of the notoriousness of their crimes, not on +account of the dignity of their virtues,--whose sacred things Varro +attempts to refer to certain natural reasons, seeking to make base +things honourable, but cannot find how to square and agree with +these reasons, because these are not the causes of those rites, +which he thinks, or rather wishes to be thought to be so. For had +not only these, but also all others of this kind, been real causes, +even though they had nothing to do with the true God and eternal +life, which is to be sought in religion, they would, by affording +some sort of reason drawn from the nature of things, have mitigated +in some degree that offence which was occasioned by some turpitude +or absurdity in the sacred rites, which was not understood. This +he attempted to do in respect to certain fables of the theatres, +or mysteries of the shrines; but he did not acquit the theatres +of likeness to the shrines, but rather condemned the shrines for +likeness to the theatres. However, he in some way made the attempt to +soothe the feelings shocked by horrible things, by rendering what he +would have to be natural interpretations. + + + 34. _Concerning the books of Numa Pompilius, which the senate + ordered to be burned, in order that the causes of sacred rites + therein assigned should not become known._. + +But, on the other hand, we find, as the same most learned man has +related, that the causes of the sacred rites which were given from +the books of Numa Pompilius could by no means be tolerated, and were +considered unworthy, not only to become known to the religious by +being read, but even to lie written in the darkness in which they had +been concealed. For now let me say what I promised in the third book +of this work to say in its proper place. For, as we read in the same +Varro's book on the worship of the gods, "A certain one Terentius had +a field at the Janiculum, and once, when his ploughman was passing +the plough near to the tomb of Numa Pompilius, he turned up from the +ground the books of Numa, in which were written the causes of the +sacred institutions; which books he carried to the prætor, who, having +read the beginnings of them, referred to the senate what seemed to +be a matter of so much importance. And when the chief senators had +read certain of the causes why this or that rite was instituted, the +senate assented to the dead Numa, and the conscript fathers, as though +concerned for the interests of religion, ordered the prætor to burn +the books."[288] Let each one believe what he thinks; nay, let every +champion of such impiety say whatever mad contention may suggest. For +my part, let it suffice to suggest that the causes of those sacred +things which were written down by King Numa Pompilius, the institutor +of the Roman rites, ought never to have become known to people or +senate, or even to the priests themselves; and also that Numa himself +attained to these secrets of demons by an illicit curiosity, in order +that he might write them down, so as to be able, by reading, to be +reminded of them. However, though he was king, and had no cause to +be afraid of any one, he neither dared to teach them to any one, nor +to destroy them by obliteration, or any other form of destruction. +Therefore, because he was unwilling that any one should know them, +lest men should be taught infamous things, and because he was afraid +to violate them, lest he should enrage the demons against himself, he +buried them in what he thought a safe place, believing that a plough +could not approach his sepulchre. But the senate, fearing to condemn +the religious solemnities of their ancestors, and therefore compelled +to assent to Numa, were nevertheless so convinced that those books were +pernicious, that they did not order them to be buried again, knowing +that human curiosity would thereby be excited to seek with far greater +eagerness after the matter already divulged, but ordered the scandalous +relics to be destroyed with fire; because, as they thought it was now +a necessity to perform those sacred rites, they judged that the error +arising from ignorance of their causes was more tolerable than the +disturbance which the knowledge of them would occasion the state. + + + 35. _Concerning the hydromancy through which Numa was befooled + by certain images of demons seen in the water._ + +For Numa himself also, to whom no prophet of God, no holy angel +was sent, was driven to have recourse to hydromancy, that he might +see the images of the gods in the water (or, rather, appearances +whereby the demons made sport of him), and might learn from them +what he ought to ordain and observe in the sacred rites. This kind +of divination, says Varro, was introduced from the Persians, and +was used by Numa himself, and at an after time by the philosopher +Pythagoras. In this divination, he says, they also inquire at the +inhabitants of the nether world, and make use of blood; and this +the Greeks call νεκρομαντείαν. But whether it be called necromancy +or hydromancy it is the same thing, for in either case the dead are +supposed to foretell future things. But by what artifices these +things are done, let themselves consider; for I am unwilling to say +that these artifices were wont to be prohibited by the laws, and to +be very severely punished even in the Gentile states, before the +advent of our Saviour. I am unwilling, I say, to affirm this, for +perhaps even such things were then allowed. However, it was by these +arts that Pompilius learned those sacred rites which he gave forth +as facts, whilst he concealed their causes; for even he himself was +afraid of that which he had learned. The senate also caused the +books in which those causes were recorded to be burned. What is it, +then, to me, that Varro attempts to adduce all sorts of fanciful +physical interpretations, which if these books had contained, they +would certainly not have been burned? For otherwise the conscript +fathers would also have burned those books which Varro published +and dedicated to the high priest Cæsar.[289] Now Numa is said to +have married the nymph Egeria, because (as Varro explains it in the +forementioned book) he carried forth[290] water wherewith to perform +his hydromancy. Thus facts are wont to be converted into fables +through false colourings. It was by that hydromancy, then, that that +over-curious Roman king learned both the sacred rites which were +to be written in the books of the priests, and also the causes of +those rites,--which latter, however, he was unwilling that any one +besides himself should know. Wherefore he made these causes, as it +were, to die along with himself, taking care to have them written by +themselves, and removed from the knowledge of men by being buried in +the earth. Wherefore the things which are written in those books were +either abominations of demons, so foul and noxious as to render that +whole civil theology execrable even in the eyes of such men as those +senators, who had accepted so many shameful things in the sacred +rites themselves, or they were nothing else than the accounts of dead +men, whom, through the lapse of ages, almost all the Gentile nations +had come to believe to be immortal gods; whilst those same demons +were delighted even with such rites, having presented themselves to +receive worship under pretence of being those very dead men whom +they had caused to be thought immortal gods by certain fallacious +miracles, performed in order to establish that belief. But, by the +hidden providence of the true God, these demons were permitted to +confess these things to their friend Numa, having been gained by +those arts through which necromancy could be performed, and yet were +not constrained to admonish him rather at his death to burn than to +bury the books in which they were written. But, in order that these +books might be unknown, the demons could not resist the plough by +which they were thrown up, or the pen of Varro, through which the +things which were done in reference to this matter have come down +even to our knowledge. For they are not able to effect anything which +they are not allowed; but they are permitted to influence those whom +God, in His deep and just judgment, according to their deserts, gives +over either to be simply afflicted by them, or to be also subdued and +deceived. But how pernicious these writings were judged to be, or +how alien from the worship of the true Divinity, may be understood +from the fact that the senate preferred to burn what Pompilius had +hid, rather than to fear what he feared, so that he could not dare to +do that. Wherefore let him who does not desire to live a pious life +even now, seek eternal life by means of such rites. But let him who +does not wish to have fellowship with malign demons have no fear for +the noxious superstition wherewith they are worshipped, but let him +recognise the true religion by which they are unmasked and vanquished. + +FOOTNOTES: + +[245] Tert. _Apol._ 13, "Nec electio sine reprobatione;" and _Ad +Nationes_, ii. 9, "Si dei ut bulbi seliguntur, qui non seliguntur, +reprobi pronuntiantur." + +[246] Cicero, _De Nat. Deor._ ii., distinguishes this Liber from +Liber Bacchus, son of Jupiter and Semele. + +[247] _Januam._ + +[248] _Vivificator._ + +[249] _Sensificator._ + +[250] As we say, "right-minded." + +[251] Ch. 21, 23. + +[252] The father Saturn, and the mother Ops, _e.g._, being more +obscure than their son Jupiter and daughter Juno. + +[253] Sallust, _Cat. Conj._ ch. 8. + +[254] Vicus argentarius. + +[255] Virgil, _Æneid_, viii. 357, 358. + +[256] Quadrifrons. + +[257] Frons. + +[258] "Quanto iste innocentior esset, tanto frontosior appareret;" +being used for the shamelessness of innocence, as we use "face" for +the shamelessness of impudence. + +[259] Cicero, _Tusc. Quæst._ v. 13. + +[260] An interesting account of the changes made in the Roman year by +Numa is given in Plutarch's life of that king. Ovid also (_Fasti_, +ii.) explains the derivation of February, telling us that it was the +last month of the old year, and took its name from the lustrations +performed then: "Februa Romani dixere piamina patres." + +[261] Ennius, in Cicero, _De Nat. Deor._ ii. 18. + +[262] John x. 9. + +[263] _Georgic_, ii. 470. + +[264] _Summa_, which also includes the meaning "last." + +[265] Virgil, _Eclog._ iii. 60, who borrows the expression from the +_Phænomena_ of Aratus. + +[266] Soranus lived about B.C. 100. See Smith's _Dict._ + +[267] Tigillus. + +[268] Ruma. + +[269] "Pecunia," that is, property; the original meaning of "pecunia" +being property in cattle, then property or wealth of any kind. Comp. +Augustine, _De discipl. Christ._ 6. + +[270] Sallust, _Catil._ c. 11. + +[271] Quasi medius currens. + +[272] Nuncius. + +[273] Enunciantur. + +[274] Cœlo. + +[275] Cœlum. + +[276] Sc. Χρόνος. + +[277] See c. 16. + +[278] Varro, _De Ling. Lat._ v. 68. + +[279] Nourisher. + +[280] Returner. + +[281] In the book _De Ratione Naturali Deorum_. + +[282] Mundum. + +[283] Immundum. + +[284] Mundus. + +[285] Mundum. + +[286] Virgil, _Æneid_, viii. 319-20. + +[287] In the _Timæus_. + +[288] Plutarch's _Numa_; Livy, xl. 29. + +[289] Comp. Lactantius, _Instit._ i. 6. + +[290] Egesserit. + + + + + BOOK EIGHTH. + + ARGUMENT. + + AUGUSTINE COMES NOW TO THE THIRD KIND OF THEOLOGY, THAT IS, THE + NATURAL, AND TAKES UP THE QUESTION, WHETHER THE WORSHIP OF THE + GODS OF THE NATURAL THEOLOGY IS OF ANY AVAIL TOWARDS SECURING + BLESSEDNESS IN THE LIFE TO COME. THIS QUESTION HE PREFERS TO + DISCUSS WITH THE PLATONISTS, BECAUSE THE PLATONIC SYSTEM IS + "FACILE PRINCEPS" AMONG PHILOSOPHIES, AND MAKES THE NEAREST + APPROXIMATION TO CHRISTIAN TRUTH. IN PURSUING THIS ARGUMENT, HE + FIRST REFUTES APULEIUS, AND ALL WHO MAINTAIN THAT THE DEMONS + SHOULD BE WORSHIPPED AS MESSENGERS AND MEDIATORS BETWEEN GODS + AND MEN; DEMONSTRATING THAT BY NO POSSIBILITY CAN MEN BE + RECONCILED TO GOOD GODS BY DEMONS, WHO ARE THE SLAVES OF VICE, + AND WHO DELIGHT IN AND PATRONIZE WHAT GOOD AND WISE MEN ABHOR + AND CONDEMN,--THE BLASPHEMOUS FICTIONS OF POETS, THEATRICAL + EXHIBITIONS, AND MAGICAL ARTS. + + + 1. _That the question of natural theology is to be discussed with + those philosophers who sought a more excellent wisdom_. + +We shall require to apply our mind with far greater intensity to the +present question than was requisite in the solution and unfolding +of the questions handled in the preceding books; for it is not with +ordinary men, but with philosophers that we must confer concerning the +theology which they call natural. For it is not like the fabulous, that +is, the theatrical; nor the civil, that is, the urban theology: the one +of which displays the crimes of the gods, whilst the other manifests +their criminal desires, which demonstrate them to be rather malign +demons than gods. It is, we say, with philosophers we have to confer +with respect to this theology,--men whose very name, if rendered into +Latin, signifies those who profess the love of wisdom. Now, if wisdom +is God, who made all things, as is attested by the divine authority and +truth,[291] then the philosopher is a lover of God. But since the thing +itself, which is called by this name, exists not in all who glory in +the name,--for it does not follow, of course, that all who are called +philosophers are lovers of true wisdom,--we must needs select from +the number of those with whose opinions we have been able to acquaint +ourselves by reading, some with whom we may not unworthily engage in +the treatment of this question. For I have not in this work undertaken +to refute all the vain opinions of the philosophers, but only such as +pertain to theology, which Greek word we understand to mean an account +or explanation of the divine nature. Nor, again, have I undertaken to +refute all the vain theological opinions of all the philosophers, but +only of such of them as, agreeing in the belief that there is a divine +nature, and that this divine nature is concerned about human affairs, +do nevertheless deny that the worship of the one unchangeable God is +sufficient for the obtaining of a blessed life after death, as well +as at the present time; and hold that, in order to obtain that life, +many gods, created, indeed, and appointed to their several spheres by +that one God, are to be worshipped. These approach nearer to the truth +than even Varro; for, whilst he saw no difficulty in extending natural +theology in its entirety even to the world and the soul of the world, +these acknowledge God as existing above all that is of the nature of +soul, and as the Creator not only of this visible world, which is often +called heaven and earth, but also of every soul whatsoever, and as Him +who gives blessedness to the rational soul,--of which kind is the human +soul,--by participation in His own unchangeable and incorporeal light. +There is no one, who has even a slender knowledge of these things, who +does not know of the Platonic philosophers, who derive their name from +their master Plato. Concerning this Plato, then, I will briefly state +such things as I deem necessary to the present question, mentioning +beforehand those who preceded him in time in the same department of +literature. + + + 2. _Concerning the two schools of philosophers, that is, the + Italic and Ionic, and their founders._ + +As far as concerns the literature of the Greeks, whose language holds a +more illustrious place than any of the languages of the other nations, +history mentions two schools of philosophers, the one called the Italic +school, originating in that part of Italy which was formerly called +Magna Græcia; the other called the Ionic school, having its origin in +those regions which are still called by the name of Greece. The Italic +school had for its founder Pythagoras of Samos, to whom also the term +"philosophy" is said to owe its origin. For whereas formerly those who +seemed to excel others by the laudable manner in which they regulated +their lives were called sages, Pythagoras, on being asked what he +professed, replied that he was a philosopher, that is, a student or +lover of wisdom; for it seemed to him to be the height of arrogance to +profess oneself a sage.[292] The founder of the Ionic school, again, +was Thales of Miletus, one of those seven who were styled the "seven +sages," of whom six were distinguished by the kind of life they lived, +and by certain maxims which they gave forth for the proper conduct of +life. Thales was distinguished as an investigator into the nature of +things; and, in order that he might have successors in his school, he +committed his dissertations to writing. That, however, which especially +rendered him eminent was his ability, by means of astronomical +calculations, even to predict eclipses of the sun and moon. He thought, +however, that water was the first principle of things, and that of it +all the elements of the world, the world itself, and all things which +are generated in it, ultimately consist. Over all this work, however, +which, when we consider the world, appears so admirable, he set nothing +of the nature of divine mind. To him succeeded Anaximander, his pupil, +who held a different opinion concerning the nature of things; for he +did not hold that all things spring from one principle, as Thales +did, who held that principle to be water, but thought that each thing +springs from its own proper principle. These principles of things he +believed to be infinite in number, and thought that they generated +innumerable worlds, and all the things which arise in them. He thought, +also, that these worlds are subject to a perpetual process of alternate +dissolution and regeneration, each one continuing for a longer or +shorter period of time, according to the nature of the case; nor did +he, any more than Thales, attribute anything to a divine mind in the +production of all this activity of things. Anaximander left as his +successor his disciple Anaximenes, who attributed all the causes of +things to an infinite air. He neither denied nor ignored the existence +of gods, but, so far from believing that the air was made by them, +he held, on the contrary, that they sprang from the air. Anaxagoras, +however, who was his pupil, perceived that a divine mind was the +productive cause of all things which we see, and said that all the +various kinds of things, according to their several modes and species, +were produced out of an infinite matter consisting of homogeneous +particles, but by the efficiency of a divine mind. Diogenes, also, +another pupil of Anaximenes, said that a certain air was the original +substance of things out of which all things were produced, but that +it was possessed of a divine reason, without which nothing could be +produced from it. Anaxagoras was succeeded by his disciple Archelaus, +who also thought that all things consisted of homogeneous particles, +of which each particular thing was made, but that those particles were +pervaded by a divine mind, which perpetually energized all the eternal +bodies, namely, those particles, so that they are alternately united +and separated. Socrates, the master of Plato, is said to have been the +disciple of Archelaus; and on Plato's account it is that I have given +this brief historical sketch of the whole history of these schools. + + + 3. _Of the Socratic philosophy._ + +Socrates is said to have been the first who directed the entire +effort of philosophy to the correction and regulation of manners, all +who went before him having expended their greatest efforts in the +investigation of physical, that is, natural phenomena. However, it +seems to me that it cannot be certainly discovered whether Socrates +did this because he was wearied of obscure and uncertain things, +and so wished to direct his mind to the discovery of something +manifest and certain, which was necessary in order to the obtaining +of a blessed life,--that one great object toward which the labour, +vigilance, and industry of all philosophers seem to have been +directed,--or whether (as some yet more favourable to him suppose) +he did it because he was unwilling that minds defiled with earthly +desires should essay to raise themselves upward to divine things. For +he saw that the causes of things were sought for by them,--which +causes he believed to be ultimately reducible to nothing else than +the will of the one true and supreme God,--and on this account he +thought they could only be comprehended by a purified mind; and +therefore that all diligence ought to be given to the purification of +the life by good morals, in order that the mind, delivered from the +depressing weight of lusts, might raise itself upward by its native +vigour to eternal things, and might, with purified understanding, +contemplate that nature which is incorporeal and unchangeable light, +where live the causes of all created natures. It is evident, however, +that he hunted out and pursued, with a wonderful pleasantness of +style and argument, and with a most pointed and insinuating urbanity, +the foolishness of ignorant men, who thought that they knew this +or that,--sometimes confessing his own ignorance, and sometimes +dissimulating his knowledge, even in those very moral questions to +which he seems to have directed the whole force of his mind. And +hence there arose hostility against him, which ended in his being +calumniously impeached, and condemned to death. Afterwards, however, +that very city of the Athenians, which had publicly condemned him, +did publicly bewail him,--the popular indignation having turned +with such vehemence on his accusers, that one of them perished by +the violence of the multitude, whilst the other only escaped a like +punishment by voluntary and perpetual exile. + +Illustrious, therefore, both in his life and in his death, Socrates +left very many disciples of his philosophy, who vied with one another +in desire for proficiency in handling those moral questions which +concern the chief good (_summum bonum_), the possession of which can +make a man blessed; and because, in the disputations of Socrates, +where he raises all manner of questions, makes assertions, and then +demolishes them, it did not evidently appear what he held to be the +chief good, every one took from these disputations what pleased him +best, and every one placed the final good[293] in whatever it appeared +to himself to consist. Now, that which is called the final good is +that at which, when one has arrived, he is blessed. But so diverse +were the opinions held by those followers of Socrates concerning this +final good, that (a thing scarcely to be credited with respect to the +followers of one master) some placed the chief good in pleasure, as +Aristippus, others in virtue, as Antisthenes. Indeed, it were tedious +to recount the various opinions of various disciples. + + + 4. _Concerning Plato, the chief among the disciples of Socrates, + and his threefold division of philosophy._ + +But, among the disciples of Socrates, Plato was the one who shone with +a glory which far excelled that of the others, and who not unjustly +eclipsed them all. By birth an Athenian of honourable parentage, he +far surpassed his fellow-disciples in natural endowments, of which +he was possessed in a wonderful degree. Yet, deeming himself and the +Socratic discipline far from sufficient for bringing philosophy to +perfection, he travelled as extensively as he was able, going to every +place famed for the cultivation of any science of which he could make +himself master. Thus he learned from the Egyptians whatever they held +and taught as important; and from Egypt, passing into those parts of +Italy which were filled with the fame of the Pythagoreans, he mastered, +with the greatest facility, and under the most eminent teachers, +all the Italic philosophy which was then in vogue. And, as he had a +peculiar love for his master Socrates, he made him the speaker in +all his dialogues, putting into his mouth whatever he had learned, +either from others, or from the efforts of his own powerful intellect, +tempering even his moral disputations with the grace and politeness of +the Socratic style. And, as the study of wisdom consists in action and +contemplation, so that one part of it may be called active, and the +other contemplative,--the active part having reference to the conduct +of life, that is, to the regulation of morals, and the contemplative +part to the investigation into the causes of nature and into pure +truth,--Socrates is said to have excelled in the active part of that +study, while Pythagoras gave more attention to its contemplative part, +on which he brought to bear all the force of his great intellect. To +Plato is given the praise of having perfected philosophy by combining +both parts into one. He then divides it into three parts,--the first +moral, which is chiefly occupied with action; the second natural, +of which the object is contemplation; and the third rational, which +discriminates between the true and the false. And though this last +is necessary both to action and contemplation, it is contemplation, +nevertheless, which lays peculiar claim to the office of investigating +the nature of truth. Thus this tripartite division is not contrary +to that which made the study of wisdom to consist in action and +contemplation. Now, as to what Plato thought with respect to each of +these parts,--that is, what he believed to be the end of all actions, +the cause of all natures, and the light of all intelligences,--it +would be a question too long to discuss, and about which we ought +not to make any rash affirmation. For, as Plato liked and constantly +affected the well-known method of his master Socrates, namely, that of +dissimulating his knowledge or his opinions, it is not easy to discover +clearly what he himself thought on various matters, any more than +it is to discover what were the real opinions of Socrates. We must, +nevertheless, insert into our work certain of those opinions which he +expresses in his writings, whether he himself uttered them, or narrates +them as expressed by others, and seems himself to approve of,--opinions +sometimes favourable to the true religion, which our faith takes up +and defends, and sometimes contrary to it, as, for example, in the +questions concerning the existence of one God or of many, as it relates +to the truly blessed life which is to be after death. For those who are +praised as having most closely followed Plato, who is justly preferred +to all the other philosophers of the Gentiles, and who are said to have +manifested the greatest acuteness in understanding him, do perhaps +entertain such an idea of God as to admit that in Him are to be found +the cause of existence, the ultimate reason for the understanding, +and the end in reference to which the whole life is to be regulated. +Of which three things, the first is understood to pertain to the +natural, the second to the rational, and the third to the moral part of +philosophy. For if man has been so created as to attain, through that +which is most excellent in him, to that which excels all things,--that +is, to the one true and absolutely good God, without whom no nature +exists, no doctrine instructs, no exercise profits,--let Him be sought +in whom all things are secure to us, let Him be discovered in whom all +truth becomes certain to us, let Him be loved in whom all becomes right +to us. + + + 5. _That it is especially with the Platonists that we must carry + on our disputations on matters of theology, their opinions + being preferable to those of all other philosophers._ + +If, then, Plato defined the wise man as one who imitates, knows, +loves this God, and who is rendered blessed through fellowship with +Him in His own blessedness, why discuss with the other philosophers? +It is evident that none come nearer to us than the Platonists. +To them, therefore, let that fabulous theology give place which +delights the minds of men with the crimes of the gods; and that +civil theology also, in which impure demons, under the name of +gods, have seduced the peoples of the earth given up to earthly +pleasures, desiring to be honoured by the errors of men, and, by +filling the minds of their worshippers with impure desires, exciting +them to make the representation of their crimes one of the rites of +their worship, whilst they themselves found in the spectators of +these exhibitions a most pleasing spectacle,--a theology in which, +whatever was honourable in the temple, was defiled by its mixture +with the obscenity of the theatre, and whatever was base in the +theatre was vindicated by the abominations of the temples. To these +philosophers also the interpretations of Varro must give place, in +which he explains the sacred rites as having reference to heaven and +earth, and to the seeds and operations of perishable things; for, +in the first place, those rites have not the signification which +he would have men believe is attached to them, and therefore truth +does not follow him in his attempt so to interpret them; and even +if they had this signification, still those things ought not to be +worshipped by the rational soul as its god which are placed below +it in the scale of nature, nor ought the soul to prefer to itself +as gods things to which the true God has given it the preference. +The same must be said of those writings pertaining to the sacred +rites, which Numa Pompilius took care to conceal by causing them to +be buried along with himself, and which, when they were afterwards +turned up by the plough, were burned by order of the senate. And, to +treat Numa with all honour, let us mention as belonging to the same +rank as these writings that which Alexander of Macedon wrote to his +mother as communicated to him by Leo, an Egyptian high priest. In +this letter not only Picus and Faunus, and Æneas and Romulus, or even +Hercules and Æsculapius and Liber, born of Semele, and the twin sons +of Tyndareus, or any other mortals who have been deified, but even +the principal gods themselves,[294] to whom Cicero, in his Tusculan +questions,[295] alludes without mentioning their names, Jupiter, +Juno, Saturn, Vulcan, Vesta, and many others whom Varro attempts to +identify with the parts or the elements of the world, are shown to +have been men. There is, as we have said, a similarity between this +case and that of Numa; for, the priest being afraid because he had +revealed a mystery, earnestly begged of Alexander to command his +mother to burn the letter which conveyed these communications to her. +Let these two theologies, then, the fabulous and the civil, give +place to the Platonic philosophers, who have recognised the true God +as the author of all things, the source of the light of truth, and +the bountiful bestower of all blessedness. And not these only, but +to these great acknowledgers of so great a God, those philosophers +must yield who, having their mind enslaved to their body, supposed +the principles of all things to be material; as Thales, who held that +the first principle of all things was water; Anaximenes, that it +was air; the Stoics, that it was fire; Epicurus, who affirmed that +it consisted of atoms, that is to say, of minute corpuscules; and +many others whom it is needless to enumerate, but who believed that +bodies, simple or compound, animate or inanimate, but nevertheless +bodies, were the cause and principle of all things. For some of +them--as, for instance, the Epicureans--believed that living things +could originate from things without life; others held that all things +living or without life spring from a living principle, but that, +nevertheless, all things, being material, spring from a material +principle. For the Stoics thought that fire, that is, one of the four +material elements of which this visible world is composed, was both +living and intelligent, the maker of the world and of all things +contained in it,--that it was in fact God. These and others like +them have only been able to suppose that which their hearts enslaved +to sense have vainly suggested to them. And yet they have within +themselves something which they could not see: they represented +to themselves inwardly things which they had seen without, even +when they were not seeing them, but only thinking of them. But +this representation in thought is no longer a body, but only the +similitude of a body; and that faculty of the mind by which this +similitude of a body is seen is neither a body nor the similitude of +a body; and the faculty which judges whether the representation is +beautiful or ugly is without doubt superior to the object judged of. +This principle is the understanding of man, the rational soul; and +it is certainly not a body, since that similitude of a body which +it beholds and judges of is itself not a body. The soul is neither +earth, nor water, nor air, nor fire, of which four bodies, called the +four elements, we see that this world is composed. And if the soul +is not a body, how should God, its Creator, be a body? Let all those +philosophers, then, give place, as we have said, to the Platonists, +and those also who have been ashamed to say that God is a body, but +yet have thought that our souls are of the same nature as God. They +have not been staggered by the great changeableness of the soul,--an +attribute which it would be impious to ascribe to the divine +nature,--but they say it is the body which changes the soul, for in +itself it is unchangeable. As well might they say, "Flesh is wounded +by some body, for in itself it is invulnerable." In a word, that +which is unchangeable can be changed by nothing, so that that which +can be changed by the body cannot properly be said to be immutable. + + + 6. _Concerning the meaning of the Platonists in that part of + philosophy called physical._ + +These philosophers, then, whom we see not undeservedly exalted above +the rest in fame and glory, have seen that no material body is God, +and therefore they have transcended all bodies in seeking for God. +They have seen that whatever is changeable is not the most high God, +and therefore they have transcended every soul and all changeable +spirits in seeking the supreme. They have seen also that, in every +changeable thing, the form which makes it that which it is, whatever +be its mode or nature, can only _be_ through Him who truly _is_, +because He is unchangeable. And therefore, whether we consider the +whole body of the world, its figure, qualities, and orderly movement, +and also all the bodies which are in it; or whether we consider +all life, either that which nourishes and maintains, as the life +of trees, or that which, besides this, has also sensation, as the +life of beasts; or that which adds to all these intelligence, as the +life of man; or that which does not need the support of nutriment, +but only maintains, feels, understands, as the life of angels,--all +can only _be_ through Him who absolutely _is_. For to Him it is not +one thing to _be_, and another to live, as though He could _be_, +not living; nor is it to Him one thing to live, and another thing +to understand, as though He could live, not understanding; nor is +it to Him one thing to understand, another thing to be blessed, as +though He could understand and not be blessed. But to Him to live, to +understand, to be blessed, are to _be_. They have understood, from +this unchangeableness and this simplicity, that all things must have +been made by Him, and that He could Himself have been made by none. +For they have considered that whatever is is either body or life, +and that life is something better than body, and that the nature +of body is sensible, and that of life intelligible. Therefore they +have preferred the intelligible nature to the sensible. We mean by +sensible things such things as can be perceived by the sight and +touch of the body; by intelligible things, such as can be understood +by the sight of the mind. For there is no corporeal beauty, whether +in the condition of a body, as figure, or in its movement, as in +music, of which it is not the mind that judges. But this could never +have been, had there not existed in the mind itself a superior form +of these things, without bulk, without noise of voice, without +space and time. But even in respect of these things, had the mind +not been mutable, it would not have been possible for one to judge +better than another with regard to sensible forms. He who is clever +judges better than he who is slow, he who is skilled than he who is +unskilful, he who is practised than he who is unpractised; and the +same person judges better after he has gained experience than he did +before. But that which is capable of more and less is mutable; whence +able men, who have thought deeply on these things, have gathered +that the first form is not to be found in those things whose form is +changeable. Since, therefore, they saw that body and mind might be +more or less beautiful in form, and that, if they wanted form, they +could have no existence, they saw that there is some existence in +which is the first form, unchangeable, and therefore not admitting +of degrees of comparison, and in that they most rightly believed +was the first principle of things, which was not made, and by which +all things were made. Therefore that which is known of God He +manifested to them when His invisible things were seen by them, being +understood by those things which have been made; also His eternal +power and Godhead by whom all visible and temporal things have been +created.[296] We have said enough upon that part of theology which +they call physical, that is, natural. + + + 7. _How much the Platonists are to be held as excelling other + philosophers in logic_, i.e. _rational philosophy._ + +Then, again, as far as regards the doctrine which treats of that +which they call logic, that is, rational philosophy, far be it from +us to compare them with those who attributed to the bodily senses the +faculty of discriminating truth, and thought that all we learn is to +be measured by their untrustworthy and fallacious rules. Such were the +Epicureans, and all of the same school. Such also were the Stoics, who +ascribed to the bodily senses that expertness in disputation which they +so ardently love, called by them dialectic, asserting that from the +senses the mind conceives the notions (ἔννοιαι) of those things which +they explicate by definition. And hence is developed the whole plan and +connection of their learning and teaching. I often wonder, with respect +to this, how they can say that none are beautiful but the wise; for +by what bodily sense have they perceived that beauty, by what eyes of +the flesh have they seen wisdom's comeliness of form? Those, however, +whom we justly rank before all others, have distinguished those things +which are conceived by the mind from those which are perceived by the +senses, neither taking away from the senses anything to which they are +competent, nor attributing to them anything beyond their competency. +And the light of our understandings, by which all things are learned by +us, they have affirmed to be that selfsame God by whom all things were +made. + + + 8. _That the Platonists hold the first rank in moral philosophy + also._ + +The remaining part of philosophy is morals, or what is called by the +Greeks ἠθική, in which is discussed the question concerning the chief +good,--that which will leave us nothing further to seek in order to +be blessed, if only we make all our actions refer to it, and seek it +not for the sake of something else, but for its own sake. Therefore +it is called the end, because we wish other things on account of it, +but itself only for its own sake. This beatific good, therefore, +according to some, comes to a man from the body, according to others, +from the mind, and, according to others, from both together. For +they saw that man himself consists of soul and body; and therefore +they believed that from either of these two, or from both together, +their well-being must proceed, consisting in a certain final good, +which could render them blessed, and to which they might refer all +their actions, not requiring anything ulterior to which to refer that +good itself. This is why those who have added a third kind of good +things, which they call extrinsic,--as honour, glory, wealth, and the +like,--have not regarded them as part of the final good, that is, to +be sought after for their own sake, but as things which are to be +sought for the sake of something else, affirming that this kind of +good is good to the good, and evil to the evil. Wherefore, whether +they have sought the good of man from the mind or from the body, or +from both together, it is still only from man they have supposed that +it must be sought. But they who have sought it from the body have +sought it from the inferior part of man; they who have sought it from +the mind, from the superior part; and they who have sought it from +both, from the whole man. Whether, therefore, they have sought it +from any part, or from the whole man, still they have only sought it +from man; nor have these differences, being three, given rise only +to three dissentient sects of philosophers, but to many. For diverse +philosophers have held diverse opinions, both concerning the good of +the body, and the good of the mind, and the good of both together. +Let, therefore, all these give place to those philosophers who have +not affirmed that a man is blessed by the enjoyment of the body, or +by the enjoyment of the mind, but by the enjoyment of God,--enjoying +Him, however, not as the mind does the body or itself, or as one +friend enjoys another, but as the eye enjoys light, if, indeed, we +may draw any comparison between these things. But what the nature of +this comparison is, will, if God help me, be shown in another place, +to the best of my ability. At present, it is sufficient to mention +that Plato determined the final good to be to live according to +virtue, and affirmed that he only can attain to virtue who knows and +imitates God,--which knowledge and imitation are the only cause of +blessedness. Therefore he did not doubt that to philosophize is to +love God, whose nature is incorporeal. Whence it certainly follows +that the student of wisdom, that is, the philosopher, will then +become blessed when he shall have begun to enjoy God. For though he +is not necessarily blessed who enjoys that which he loves (for many +are miserable by loving that which ought not to be loved, and still +more miserable when they enjoy it), nevertheless no one is blessed +who does not enjoy that which he loves. For even they who love things +which ought not to be loved do not count themselves blessed by loving +merely, but by enjoying them. Who, then, but the most miserable will +deny that he is blessed, who enjoys that which he loves, and loves +the true and highest good? But the true and highest good, according +to Plato, is God, and therefore he would call him a philosopher who +loves God; for philosophy is directed to the obtaining of the blessed +life, and he who loves God is blessed in the enjoyment of God. + + + 9. _Concerning that philosophy which has come nearest to the + Christian faith._ + +Whatever philosophers, therefore, thought concerning the supreme God, +that He is both the maker of all created things, the light by which +things are known, and the good in reference to which things are to be +done; that we have in Him the first principle of nature, the truth +of doctrine, and the happiness of life,--whether these philosophers +may be more suitably called Platonists, or whether they may give some +other name to their sect; whether, we say, that only the chief men +of the Ionic school, such as Plato himself, and they who have well +understood him, have thought thus; or whether we also include the +Italic school, on account of Pythagoras and the Pythagoreans, and all +who may have held like opinions; and, lastly, whether also we include +all who have been held wise men and philosophers among all nations +who are discovered to have seen and taught this, be they Atlantics, +Libyans, Egyptians, Indians, Persians, Chaldeans, Scythians, Gauls, +Spaniards, or of other nations,--we prefer these to all other +philosophers, and confess that they approach nearest to us. + + + 10. _That the excellency of the Christian religion is above all + the science of philosophers._ + +For although a Christian man instructed only in ecclesiastical +literature may perhaps be ignorant of the very name of Platonists, and +may not even know that there have existed two schools of philosophers +speaking the Greek tongue, to wit, the Ionic and Italic, he is +nevertheless not so deaf with respect to human affairs, as not to +know that philosophers profess the study, and even the possession, +of wisdom. He is on his guard, however, with respect to those who +philosophize according to the elements of this world, not according +to God, by whom the world itself was made; for he is warned by the +precept of the apostle, and faithfully hears what has been said, +"Beware that no one deceive you through philosophy and vain deceit, +according to the elements of the world."[297] Then, that he may not +suppose that all philosophers are such as do this, he hears the same +apostle say concerning certain of them, "Because that which is known +of God is manifest among them, for God has manifested it to them. For +His invisible things from the creation of the world are clearly seen, +being understood by the things which are made, also His eternal power +and Godhead."[298] And, when speaking to the Athenians, after having +spoken a mighty thing concerning God, which few are able to understand, +"In Him we live, and move, and have our being,"[299] he goes on to say, +"As certain also of your own have said." He knows well, too, to be on +his guard against even these philosophers in their errors. For where +it has been said by him, "that God has manifested to them by those +things which are made His invisible things, that they might be seen +by the understanding," there it has also been said that they did not +rightly worship God Himself, because they paid divine honours, which +are due to Him alone, to other things also to which they ought not to +have paid them,--"because, knowing God, they glorified Him not as God; +neither were thankful, but became vain in their imaginations, and their +foolish heart was darkened. Professing themselves to be wise, they +became fools, and changed the glory of the incorruptible God into the +likeness of the image of corruptible man, and of birds, and fourfooted +beasts, and creeping things;"[300]--where the apostle would have us +understand him as meaning the Romans, and Greeks, and Egyptians, who +gloried in the name of wisdom; but concerning this we will dispute +with them afterwards. With respect, however, to that wherein they +agree with us we prefer them to all others, namely, concerning the one +God, the author of this universe, who is not only above every body, +being incorporeal, but also above all souls, being incorruptible--our +principle, our light, our good. And though the Christian man, being +ignorant of their writings, does not use in disputation words which he +has not learned,--not calling that part of philosophy natural (which +is the Latin term), or physical (which is the Greek one), which treats +of the investigation of nature; or that part rational, or logical, +which deals with the question how truth may be discovered; or that +part moral, or ethical, which concerns morals, and shows how good is +to be sought, and evil to be shunned,--he is not, therefore, ignorant +that it is from the one true and supremely good God that we have that +nature in which we are made in the image of God, and that doctrine by +which we know Him and ourselves, and that grace through which, by +cleaving to Him, we are blessed. This, therefore, is the cause why we +prefer these to all the others, because, whilst other philosophers +have worn out their minds and powers in seeking the causes of things, +and endeavouring to discover the right mode of learning and of living, +these, by knowing God, have found where resides the cause by which +the universe has been constituted, and the light by which truth is to +be discovered, and the fountain at which felicity is to be drunk. All +philosophers, then, who have had these thoughts concerning God, whether +Platonists or others, agree with us. But we have thought it better to +plead our cause with the Platonists, because their writings are better +known. For the Greeks, whose tongue holds the highest place among the +languages of the Gentiles, are loud in their praises of these writings; +and the Latins, taken with their excellence, or their renown, have +studied them more heartily than other writings, and, by translating +them into our tongue, have given them greater celebrity and notoriety. + + + 11. _How Plato has been able to approach so nearly to Christian + knowledge._ + +Certain partakers with us in the grace of Christ, wonder when +they hear and read that Plato had conceptions concerning God, in +which they recognise considerable agreement with the truth of our +religion. Some have concluded from this, that when he went to Egypt +he had heard the prophet Jeremiah, or, whilst travelling in the +same country, had read the prophetic scriptures, which opinion I +myself have expressed in certain of my writings.[301] But a careful +calculation of dates, contained in chronological history, shows +that Plato was born about a hundred years after the time in which +Jeremiah prophesied, and, as he lived eighty-one years, there are +found to have been about seventy years from his death to that time +when Ptolemy, king of Egypt, requested the prophetic scriptures +of the Hebrew people to be sent to him from Judea, and committed +them to seventy Hebrews, who also knew the Greek tongue, to be +translated and kept. Therefore, on that voyage of his, Plato could +neither have seen Jeremiah, who was dead so long before, nor have +read those same scriptures which had not yet been translated into +the Greek language, of which he was a master, unless, indeed, we +say that, as he was most earnest in the pursuit of knowledge, he +also studied those writings through an interpreter, as he did those +of the Egyptians,--not, indeed, writing a translation of them (the +facilities for doing which were only gained even by Ptolemy in return +for munificent acts of kindness,[302] though fear of his kingly +authority might have seemed a sufficient motive), but learning as +much as he possibly could concerning their contents by means of +conversation. What warrants this supposition is the opening verses +of Genesis: "In the beginning God made the heaven and earth. And the +earth was invisible, and without order; and darkness was over the +abyss: and the Spirit of God moved over the waters."[303] For in +the _Timæus_, when writing on the formation of the world, he says +that God first united earth and fire; from which it is evident that +he assigns to fire a place in heaven. This opinion bears a certain +resemblance to the statement, "In the beginning God made heaven and +earth." Plato next speaks of those two intermediary elements, water +and air, by which the other two extremes, namely, earth and fire, +were mutually united; from which circumstance he is thought to have +so understood the words, "The Spirit of God moved over the waters." +For, not paying sufficient attention to the designations given by +those scriptures to the Spirit of God, he may have thought that the +four elements are spoken of in that place, because the air also is +called spirit.[304] Then, as to Plato's saying that the philosopher +is a lover of God, nothing shines forth more conspicuously in those +sacred writings. But the most striking thing in this connection, and +that which most of all inclines me almost to assent to the opinion +that Plato was not ignorant of those writings, is the answer which +was given to the question elicited from the holy Moses when the words +of God were conveyed to him by the angel; for, when he asked what was +the name of that God who was commanding him to go and deliver the +Hebrew people out of Egypt, this answer was given: "I am who am; +and thou shalt say to the children of Israel, He who _is_ sent me +unto you;"[305] as though compared with Him that truly _is_, because +He is unchangeable, those things which have been created mutable +_are_ not,--a truth which Plato vehemently held, and most diligently +commended. And I know not whether this sentiment is anywhere to be +found in the books of those who were before Plato, unless in that +book where it is said, "I am who am; and thou shalt say to the +children of Israel, _Who is_ sent me unto you." + + + 12. _That even the Platonists, though they say these things + concerning the one true God, nevertheless thought that sacred + rites were to be performed in honour of many gods._ + +But we need not determine from what source he learned these +things,--whether it was from the books of the ancients who preceded +him, or, as is more likely, from the words of the apostle: "Because +that which is known of God has been manifested among them, for +God hath manifested it to them. For His invisible things from +the creation of the world are clearly seen, being understood by +those things which have been made, also His eternal power and +Godhead."[306] From whatever source he may have derived this +knowledge, then, I think I have made it sufficiently plain that +I have not chosen the Platonic philosophers undeservedly as the +parties with whom to discuss; because the question we have just +taken up concerns the natural theology,--the question, namely, +whether sacred rites are to be performed to one God, or to many, +for the sake of the happiness which is to be after death. I have +specially chosen them because their juster thoughts concerning the +one God who made heaven and earth, have made them illustrious among +philosophers. This has given them such superiority to all others +in the judgment of posterity, that, though Aristotle, the disciple +of Plato, a man of eminent abilities, inferior in eloquence to +Plato, yet far superior to many in that respect, had founded the +Peripatetic sect,--so called because they were in the habit of +walking about during their disputations,--and though he had, through +the greatness of his fame, gathered very many disciples into his +school, even during the life of his master; and though Plato at his +death was succeeded in his school, which was called the Academy, by +Speusippus, his sister's son, and Xenocrates, his beloved disciple, +who, together with their successors, were called from this name of +the school, Academics; nevertheless the most illustrious recent +philosophers, who have chosen to follow Plato, have been unwilling to +be called Peripatetics, or Academics, but have preferred the name of +Platonists. Among these were the renowned Plotinus, Iamblichus, and +Porphyry, who were Greeks, and the African Apuleius, who was learned +both in the Greek and Latin tongues. All these, however, and the rest +who were of the same school, and also Plato himself, thought that +sacred rites ought to be performed in honour of many gods. + + + 13. _Concerning the opinion of Plato, according to which he defined + the gods as beings entirely good and the friends of virtue._ + +Therefore, although in many other important respects they differ from +us, nevertheless with respect to this particular point of difference, +which I have just stated, as it is one of great moment, and the +question on hand concerns it, I will first ask them to what gods +they think that sacred rites are to be performed,--to the good or to +the bad, or to both the good and the bad? But we have the opinion of +Plato affirming that all the gods are good, and that there is not +one of the gods bad. It follows, therefore, that these are to be +performed to the good, for then they are performed to gods; for if +they are not good, neither are they gods. Now, if this be the case +(for what else ought we to believe concerning the gods?), certainly +it explodes the opinion that the bad gods are to be propitiated by +sacred rites in order that they may not harm us, but the good gods +are to be invoked in order that they may assist us. For there are no +bad gods, and it is to the good that, as they say, the due honour of +such rites is to be paid. Of what character, then, are those gods who +love scenic displays, even demanding that a place be given them among +divine things, and that they be exhibited in their honour? The power +of these gods proves that they exist, but their liking such things +proves that they are bad. For it is well known what Plato's opinion +was concerning scenic plays. He thinks that the poets themselves, +because they have composed songs so unworthy of the majesty and +goodness of the gods, ought to be banished from the state. Of what +character, therefore, are those gods who contend with Plato himself +about those scenic plays? He does not suffer the gods to be defamed +by false crimes; the gods command those same crimes to be celebrated +in their own honour. + +In fine, when they ordered these plays to be inaugurated, they not +only demanded base things, but also did cruel things, taking from +Titus Latinius his son, and sending a disease upon him because he +had refused to obey them, which they removed when he had fulfilled +their commands. Plato, however, bad though they were, did not +think they were to be feared; but, holding to his opinion with the +utmost firmness and constancy, does not hesitate to remove from a +well-ordered state all the sacrilegious follies of the poets, with +which these gods are delighted because they themselves are impure. +But Labeo places this same Plato (as I have mentioned already in the +second book[307]) among the demi-gods. Now Labeo thinks that the +bad deities are to be propitiated with bloody victims, and by fasts +accompanied with the same, but the good deities with plays, and all +other things which are associated with joyfulness. How comes it, +then, that the demi-god Plato so persistently dares to take away +those pleasures, because he deems them base, not from the demi-gods +but from the gods, and these the good gods? And, moreover, those very +gods themselves do certainly refute the opinion of Labeo, for they +showed themselves in the case of Latinius to be not only wanton and +sportive, but also cruel and terrible. Let the Platonists, therefore, +explain these things to us, since, following the opinion of their +master, they think that all the gods are good and honourable, and +friendly to the virtues of the wise, holding it unlawful to think +otherwise concerning any of the gods. We will explain it, say they. +Let us then attentively listen to them. + + + 14. _Of the opinion of those who have said that rational souls are + of three kinds, to wit, those of the celestial gods, those of + the aerial demons, and those of terrestrial men._ + +There is, say they, a threefold division of all animals endowed with +a rational soul, namely, into gods, men, and demons. The gods occupy +the loftiest region, men the lowest, the demons the middle region. +For the abode of the gods is heaven, that of men the earth, that of +the demons the air. As the dignity of their regions is diverse, so +also is that of their natures; therefore the gods are better than men +and demons. Men have been placed below the gods and demons, both in +respect of the order of the regions they inhabit, and the difference +of their merits. The demons, therefore, who hold the middle place, +as they are inferior to the gods, than whom they inhabit a lower +region, so they are superior to men, than whom they inhabit a loftier +one. For they have immortality of body in common with the gods, but +passions of the mind in common with men. On which account, say they, +it is not wonderful that they are delighted with the obscenities +of the theatre, and the fictions of the poets, since they are also +subject to human passions, from which the gods are far removed, and +to which they are altogether strangers. Whence we conclude that it +was not the gods, who are all good and highly exalted, that Plato +deprived of the pleasure of theatric plays, by reprobating and +prohibiting the fictions of the poets, but the demons. + +Of these things many have written: among others Apuleius, the Platonist +of Madaura, who composed a whole work on the subject, entitled, +_Concerning the God of Socrates_. He there discusses and explains of +what kind that deity was who attended on Socrates, a sort of familiar, +by whom it is said he was admonished to desist from any action which +would not turn out to his advantage. He asserts most distinctly, and +proves at great length, that it was not a god but a demon; and he +discusses with great diligence the opinion of Plato concerning the +lofty estate of the gods, the lowly estate of men, and the middle +estate of demons. These things being so, how did Plato dare to take +away, if not from the gods, whom he removed from all human contagion, +certainly from the demons, all the pleasures of the theatre, by +expelling the poets from the state? Evidently in this way he wished +to admonish the human soul, although still confined in these moribund +members, to despise the shameful commands of the demons, and to detest +their impurity, and to choose rather the splendour of virtue. But +if Plato showed himself virtuous in answering and prohibiting these +things, then certainly it was shameful of the demons to command them. +Therefore either Apuleius is wrong, and Socrates' familiar did not +belong to this class of deities, or Plato held contradictory opinions, +now honouring the demons, now removing from the well-regulated +state the things in which they delighted, or Socrates is not to be +congratulated on the friendship of the demon, of which Apuleius was +so ashamed that he entitled his book _On the God of Socrates_, whilst +according to the tenor of his discussion, wherein he so diligently +and at such length distinguishes gods from demons, he ought not to +have entitled it, _Concerning the God_, but _Concerning the Demon of +Socrates_. But he preferred to put this into the discussion itself +rather than into the title of his book. For, through the sound doctrine +which has illuminated human society, all, or almost all men have such +a horror at the name of demons, that every one who, before reading +the dissertation of Apuleius, which sets forth the dignity of demons, +should have read the title of the book, _On the Demon of Socrates_, +would certainly have thought that the author was not a sane man. But +what did even Apuleius find to praise in the demons, except subtlety +and strength of body and a higher place of habitation? For when he +spoke generally concerning their manners, he said nothing that was +good, but very much that was bad. Finally, no one, when he has read +that book, wonders that they desired to have even the obscenity of the +stage among divine things, or that, wishing to be thought gods, they +should be delighted with the crimes of the gods, or that all those +sacred solemnities, whose obscenity occasions laughter, and whose +shameful cruelty causes horror, should be in agreement with their +passions. + + + 15. _That the demons are not better than men because of their + aerial bodies, or on account of their superior place of abode._ + +Wherefore let not the mind truly religious, and submitted to the +true God, suppose that demons are better than men, because they +have better bodies. Otherwise it must put many beasts before itself +which are superior to us both in acuteness of the senses, in ease +and quickness of movement, in strength and in long-continued vigour +of body. What man can equal the eagle or the vulture in strength of +vision? Who can equal the dog in acuteness of smell? Who can equal +the hare, the stag, and all the birds in swiftness? Who can equal +in strength the lion or the elephant? Who can equal in length of +life the serpents, which are affirmed to put off old age along with +their skin, and to return to youth again? But as we are better than +all these by the possession of reason and understanding, so we ought +also to be better than the demons by living good and virtuous lives. +For divine providence gave to them bodies of a better quality than +ours, that that in which we excel them might in this way be commended +to us as deserving to be far more cared for than the body, and that +we should learn to despise the bodily excellence of the demons +compared with goodness of life, in respect of which we are better +than they, knowing that we too shall have immortality of body,--not +an immortality tortured by eternal punishment, but that which is +consequent on purity of soul. + +But now, as regards loftiness of place, it is altogether ridiculous +to be so influenced by the fact that the demons inhabit the air, and +we the earth, as to think that on that account they are to be put +before us; for in this way we put all the birds before ourselves. +But the birds, when they are weary with flying, or require to repair +their bodies with food, come back to the earth to rest or to feed, +which the demons, they say, do not. Are they, therefore, inclined +to say that the birds are superior to us, and the demons superior +to the birds? But if it be madness to think so, there is no reason +why we should think that, on account of their inhabiting a loftier +element, the demons have a claim to our religious submission. But +as it is really the case that the birds of the air are not only not +put before us who dwell on the earth, but are even subjected to us +on account of the dignity of the rational soul which is in us, so +also it is the case that the demons, though they are aerial, are not +better than we who are terrestrial because the air is higher than +the earth, but, on the contrary, men are to be put before demons +because their despair is not to be compared to the hope of pious men. +Even that law of Plato's, according to which he mutually orders +and arranges the four elements, inserting between the two extreme +elements--namely, fire, which is in the highest degree mobile, and +the immoveable earth--the two middle ones, air and water, that by +how much the air is higher up than the water, and the fire than the +air, by so much also are the waters higher than the earth,--this +law, I say, sufficiently admonishes us not to estimate the merits +of animated creatures according to the grades of the elements. And +Apuleius himself says that man is a terrestrial animal in common with +the rest, who is nevertheless to be put far before aquatic animals, +though Plato puts the waters themselves before the land. By this he +would have us understand that the same order is not to be observed +when the question concerns the merits of animals, though it seems +to be the true one in the gradation of bodies; for it appears to be +possible that a soul of a higher order may inhabit a body of a lower, +and a soul of a lower order a body of a higher. + + + 16. _What Apuleius the Platonist thought concerning the manners + and actions of demons._ + +The same Apuleius, when speaking concerning the manners of demons, +said that they are agitated with the same perturbations of mind as +men; that they are provoked by injuries, propitiated by services and +by gifts, rejoice in honours, are delighted with a variety of sacred +rites, and are annoyed if any of them be neglected. Among other +things, he also says that on them depend the divinations of augurs, +soothsayers, and prophets, and the revelations of dreams; and that +from them also are the miracles of the magicians. But, when giving a +brief definition of them, he says, "Demons are of an animal nature, +passive in soul, rational in mind, aerial in body, eternal in time." +"Of which five things, the three first are common to them and us, the +fourth peculiar to themselves, and the fifth common to them with the +gods."[308] But I see that they have in common with the gods two of +the first things, which they have in common with us. For he says that +the gods also are animals; and when he is assigning to every order +of beings its own element, he places us among the other terrestrial +animals which live and feel upon the earth. Wherefore, if the demons +are animals as to genus, this is common to them, not only with men, +but also with the gods and with beasts; if they are rational as to +their mind, this is common to them with the gods and with men; if +they are eternal in time, this is common to them with the gods only; +if they are passive as to their soul, this is common to them with men +only; if they are aerial in body, in this they are alone. Therefore +it is no great thing for them to be of an animal nature, for so also +are the beasts; in being rational as to mind, they are not above +ourselves, for so are we also; and as to their being eternal as to +time, what is the advantage of that if they are not blessed? for +better is temporal happiness than eternal misery. Again, as to their +being passive in soul, how are they in this respect above us, since +we also are so, but would not have been so had we not been miserable? +Also, as to their being aerial in body, how much value is to be set +on that, since a soul of any kind whatsoever is to be set above every +body? and therefore religious worship, which ought to be rendered +from the soul, is by no means due to that thing which is inferior +to the soul. Moreover, if he had, among those things which he says +belong to demons, enumerated virtue, wisdom, happiness, and affirmed +that they have those things in common with the gods, and, like them, +eternally, he would assuredly have attributed to them something +greatly to be desired, and much to be prized. And even in that case +it would not have been our duty to worship them like God on account +of these things, but rather to worship Him from whom we know they had +received them. But how much less are they really worthy of divine +honour,--those aerial animals who are only rational that they may be +capable of misery, passive that they may be actually miserable, and +eternal that it may be impossible for them to end their misery! + + + 17. _Whether it is proper that men should worship those spirits + from whose vices it is necessary that they be freed._ + +Wherefore, to omit other things, and confine our attention to that +which he says is common to the demons with us, let us ask this +question: If all the four elements are full of their own animals, the +fire and the air of immortal, and the water and the earth of mortal +ones, why are the souls of demons agitated by the whirlwinds and +tempests of passions?--for the Greek word πάθος means perturbation, +whence he chose to call the demons "passive in soul," because the word +passion, which is derived from πάθος, signified a commotion of the +mind contrary to reason. Why, then, are these things in the minds of +demons which are not in beasts? For if anything of this kind appears in +beasts, it is not perturbation, because it is not contrary to reason, +of which they are devoid. Now it is foolishness or misery which is +the cause of these perturbations in the case of men, for we are not +yet blessed in the possession of that perfection of wisdom which is +promised to us at last, when we shall be set free from our present +mortality. But the gods, they say, are free from these perturbations, +because they are not only eternal, but also blessed; for they also +have the same kind of rational souls, but most pure from all spot and +plague. Wherefore, if the gods are free from perturbation because they +are blessed, not miserable animals, and the beasts are free from them +because they are animals which are capable neither of blessedness +nor misery, it remains that the demons, like men, are subject to +perturbations because they are not blessed but miserable animals. +What folly, therefore, or rather what madness, to submit ourselves +through any sentiment of religion to demons, when it belongs to the +true religion to deliver us from that depravity which makes us like to +them! For Apuleius himself, although he is very sparing toward them, +and thinks they are worthy of divine honours, is nevertheless compelled +to confess that they are subject to anger; and the true religion +commands us not to be moved with anger, but rather to resist it. The +demons are won over by gifts; and the true religion commands us to +favour no one on account of gifts received. The demons are flattered by +honours; but the true religion commands us by no means to be moved by +such things. The demons are haters of some men and lovers of others, +not in consequence of a prudent and calm judgment, but because of what +he calls their "passive soul;" whereas the true religion commands us +to love even our enemies. Lastly, the true religion commands us to +put away all disquietude of heart, and agitation of mind, and also +all commotions and tempests of the soul, which Apuleius asserts to +be continually swelling and surging in the souls of demons. Why, +therefore, except through foolishness and miserable error, shouldst +thou humble thyself to worship a being to whom thou desirest to be +unlike in thy life? And why shouldst thou pay religious homage to him +whom thou art unwilling to imitate, when it is the highest duty of +religion to imitate Him whom thou worshippest? + + + 18. _What kind of religion that is which teaches that men ought to + employ the advocacy of demons in order to be recommended to the + favour of the good gods._ + +In vain, therefore, have Apuleius, and they who think with him, +conferred on the demons the honour of placing them in the air, between +the ethereal heavens and the earth, that they may carry to the gods +the prayers of men, to men the answers of the gods; for Plato held, +they say, that no god has intercourse with man. They who believe these +things have thought it unbecoming that men should have intercourse with +the gods, and the gods with men, but a befitting thing that the demons +should have intercourse with both gods and men, presenting to the gods +the petitions of men, and conveying to men what the gods have granted; +so that a chaste man, and one who is a stranger to the crimes of the +magic arts, must use as patrons, through whom the gods may be induced +to hear him, demons who love these crimes, although the very fact of +his not loving them ought to have recommended him to them as one who +deserved to be listened to with greater readiness and willingness on +their part. They love the abominations of the stage, which chastity +does not love. They love, in the sorceries of the magicians, "_a +thousand arts of inflicting harm_,"[309] which innocence does not love. +Yet both chastity and innocence, if they wish to obtain anything from +the gods, will not be able to do so by their own merits, except their +enemies act as mediators on their behalf. Apuleius need not attempt +to justify the fictions of the poets, and the mockeries of the stage. +If human modesty can act so faithlessly towards itself as not only to +love shameful things, but even to think that they are pleasing to the +divinity, we can cite on the other side their own highest authority and +teacher, Plato. + + + 19. _Of the impiety of the magic art, which is dependent on the + assistance of malign spirits._ + +Moreover, against those magic arts, concerning which some men, +exceedingly wretched and exceedingly impious, delight to boast, may +not public opinion itself be brought forward as a witness? For why are +those arts so severely punished by the laws, if they are the works +of deities who ought to be worshipped? Shall it be said that the +Christians have ordained those laws by which magic arts are punished? +With what other meaning, except that these sorceries are without doubt +pernicious to the human race, did the most illustrious poet say, + + "By heaven, I swear, and your dear life, + Unwillingly these arms I wield, + And take, to meet the coming strife, + Enchantment's sword and shield."[310] + +And that also which he says in another place concerning magic arts, + + "I've seen him to another place transport the standing + corn,"[311] + +has reference to the fact that the fruits of one field are said to +be transferred to another by these arts which this pestiferous and +accursed doctrine teaches. Does not Cicero inform us that, among +the laws of the Twelve Tables, that is, the most ancient laws of +the Romans, there was a law written which appointed a punishment +to be inflicted on him who should do this?[312] Lastly, was it +before Christian judges that Apuleius himself was accused of magic +arts?[313] Had he known these arts to be divine and pious, and +congruous with the works of divine power, he ought not only to +have confessed, but also to have professed them, rather blaming +the laws by which these things were prohibited and pronounced +worthy of condemnation, while they ought to have been held worthy +of admiration and respect. For by so doing, either he would have +persuaded the judges to adopt his own opinion, or, if they had +shown their partiality for unjust laws, and condemned him to death +notwithstanding his praising and commending such things, the demons +would have bestowed on his soul such rewards as he deserved, who, in +order to proclaim and set forth their divine works, had not feared +the loss of his human life. As our martyrs, when that religion was +charged on them as a crime, by which they knew they were made safe +and most glorious throughout eternity, did not choose, by denying it, +to escape temporal punishments, but rather by confessing, professing, +and proclaiming it, by enduring all things for it with fidelity and +fortitude, and by dying for it with pious calmness, put to shame the +law by which that religion was prohibited, and caused its revocation. +But there is extant a most copious and eloquent oration of this +Platonic philosopher, in which he defends himself against the charge +of practising these arts, affirming that he is wholly a stranger to +them, and only wishing to show his innocence by denying such things +as cannot be innocently committed. But all the miracles of the +magicians, who he thinks are justly deserving of condemnation, are +performed according to the teaching and by the power of demons. Why, +then, does he think that they ought to be honoured? For he asserts +that they are necessary, in order to present our prayers to the +gods, and yet their works are such as we must shun if we wish our +prayers to reach the true God. Again, I ask, what kind of prayers of +men does he suppose are presented to the good gods by the demons? +If magical prayers, they will have none such; if lawful prayers, +they will not receive them through such beings. But if a sinner who +is penitent pour out prayers, especially if he has committed any +crime of sorcery, does he receive pardon through the intercession of +those demons by whose instigation and help he has fallen into the +sin he mourns? or do the demons themselves, in order that they may +merit pardon for the penitent, first become penitents because they +have deceived them? This no one ever said concerning the demons; +for had this been the case, they would never have dared to seek for +themselves divine honours. For how should they do so who desired by +penitence to obtain the grace of pardon, seeing that such detestable +pride could not exist along with a humility worthy of pardon? + + + 20. _Whether we are to believe that the good gods are more willing + to have intercourse with demons than with men._ + +But does any urgent and most pressing cause compel the demons to +mediate between the gods and men, that they may offer the prayers of +men, and bring back the answers from the gods? and if so, what, pray, +is that cause, what is that so great necessity? Because, say they, no +god has intercourse with man. Most admirable holiness of God, which +has no intercourse with a supplicating man, and yet has intercourse +with an arrogant demon! which has no intercourse with a penitent +man, and yet has intercourse with a deceiving demon! which has no +intercourse with a man fleeing for refuge to the divine nature, and +yet has intercourse with a demon feigning divinity! which has no +intercourse with a man seeking pardon, and yet has intercourse with +a demon persuading to wickedness! which has no intercourse with a +man expelling the poets by means of philosophical writings from a +well-regulated state, and yet has intercourse with a demon requesting +from the princes and priests of a state the theatrical performance of +the mockeries of the poets! which has no intercourse with the man who +prohibits the ascribing of crime to the gods, and yet has intercourse +with a demon who takes delight in the fictitious representation of +their crimes! which has no intercourse with a man punishing the +crimes of the magicians by just laws, and yet has intercourse with a +demon teaching and practising magical arts! which has no intercourse +with a man shunning the imitation of a demon, and yet has intercourse +with a demon lying in wait for the deception of a man! + + + 21. _Whether the gods use the demons as messengers and + interpreters, and whether they are deceived by them willingly, + or without their own knowledge._ + +But herein, no doubt, lies the great necessity for this absurdity, so +unworthy of the gods, that the ethereal gods, who are concerned about +human affairs, would not know what terrestrial men were doing unless +the aerial demons should bring them intelligence, because the ether +is suspended far away from the earth and far above it, but the air is +contiguous both to the ether and to the earth. O admirable wisdom! +what else do these men think concerning the gods who, they say, are +all in the highest degree good, but that they are concerned about +human affairs, lest they should seem unworthy of worship, whilst, +on the other hand, from the distance between the elements, they are +ignorant of terrestrial things? It is on this account that they have +supposed the demons to be necessary as agents, through whom the gods +may inform themselves with respect to human affairs, and through +whom, when necessary, they may succour men; and it is on account of +this office that the demons themselves have been held as deserving of +worship. If this be the case, then a demon is better known by these +good gods through nearness of body, than a man is by goodness of mind. +O mournful necessity! or shall I not rather say detestable and vain +error, that I may not impute vanity to the divine nature! For if the +gods can, with their minds free from the hindrance of bodies, see +our mind, they do not need the demons as messengers from our mind to +them; but if the ethereal gods, by means of their bodies, perceive the +corporeal indices of minds, as the countenance, speech, motion, and +thence understand what the demons tell them, then it is also possible +that they may be deceived by the falsehoods of demons. Moreover, if the +divinity of the gods cannot be deceived by the demons, neither can it +be ignorant of our actions. But I would they would tell me whether the +demons have informed the gods that the fictions of the poets concerning +the crimes of the gods displease Plato, concealing the pleasure which +they themselves take in them; or whether they have concealed both, and +have preferred that the gods should be ignorant with respect to this +whole matter, or have told both, as well the pious prudence of Plato +with respect to the gods as their own lust, which is injurious to the +gods; or whether they have concealed Plato's opinion, according to +which he was unwilling that the gods should be defamed with falsely +alleged crimes through the impious licence of the poets, whilst they +have not been ashamed nor afraid to make known their own wickedness, +which make them love theatrical plays, in which the infamous deeds of +the gods are celebrated. Let them choose which they will of these +four alternatives, and let them consider how much evil any one of +them would require them to think of the gods. For if they choose the +first, they must then confess that it was not possible for the good +gods to dwell with the good Plato, though he sought to prohibit things +injurious to them, whilst they dwelt with evil demons, who exulted +in their injuries; and this because they suppose that the good gods +can only know a good man, placed at so great a distance from them, +through the mediation of evil demons, whom they could know on account +of their nearness to themselves.[314] If they shall choose the second, +and shall say that both these things are concealed by the demons, so +that the gods are wholly ignorant both of Plato's most religious law +and the sacrilegious pleasure of the demons, what, in that case, can +the gods know to any profit with respect to human affairs through +these mediating demons, when they do not know those things which are +decreed, through the piety of good men, for the honour of the good +gods against the lust of evil demons? But if they shall choose the +third, and reply that these intermediary demons have communicated, +not only the opinion of Plato, which prohibited wrongs to be done to +the gods, but also their own delight in these wrongs, I would ask if +such a communication is not rather an insult? Now the gods, hearing +both and knowing both, not only permit the approach of those malign +demons, who desire and do things contrary to the dignity of the gods +and the religion of Plato, but also, through these wicked demons, who +are near to them, send good things to the good Plato, who is far away +from them; for they inhabit such a place in the concatenated series of +the elements, that they can come into contact with those by whom they +are accused, but not with him by whom they are defended,--knowing the +truth on both sides, but not being able to change the weight of the air +and the earth. There remains the fourth supposition; but it is worse +than the rest. For who will suffer it to be said that the demons have +made known the calumnious fictions of the poets concerning the immortal +gods, and also the disgraceful mockeries of the theatres, and their +own most ardent lust after, and most sweet pleasure in these things, +whilst they have concealed from them that Plato, with the gravity of +a philosopher, gave it as his opinion that all these things ought to +be removed from a well-regulated republic; so that the good gods are +now compelled, through such messengers, to know the evil doings of the +most wicked beings, that is to say, of the messengers themselves, and +are not allowed to know the good deeds of the philosophers, though the +former are for the injury, but these latter for the honour of the gods +themselves? + + + 22. _That we must, notwithstanding the opinion of Apuleius, reject + the worship of demons._ + +None of these four alternatives, then, is to be chosen; for we +dare not suppose such unbecoming things concerning the gods as the +adoption of any one of them would lead us to think. It remains, +therefore, that no credence whatever is to be given to the opinion +of Apuleius and the other philosophers of the same school, namely, +that the demons act as messengers and interpreters between the gods +and men to carry our petitions from us to the gods, and to bring +back to us the help of the gods. On the contrary, we must believe +them to be spirits most eager to inflict harm, utterly alien from +righteousness, swollen with pride, pale with envy, subtle in deceit; +who dwell indeed in this air as in a prison, in keeping with their +own character, because, cast down from the height of the higher +heaven, they have been condemned to dwell in this element as the +just reward of irretrievable transgression. But, though the air is +situated above the earth and the waters, they are not on that account +superior in merit to men, who, though they do not surpass them as +far as their earthly bodies are concerned, do nevertheless far excel +them through piety of mind,--they having made choice of the true God +as their helper. Over many, however, who are manifestly unworthy of +participation in the true religion, they tyrannize as over captives +whom they have subdued,--the greatest part of whom they have +persuaded of their divinity by wonderful and lying signs, consisting +either of deeds or of predictions. Some, nevertheless, who have more +attentively and diligently considered their vices, they have not been +able to persuade that they are gods, and so have feigned themselves +to be messengers between the gods and men. Some, indeed, have +thought that not even this latter honour ought to be acknowledged as +belonging to them, not believing that they were gods, because they +saw that they were wicked, whereas the gods, according to their view, +are all good. Nevertheless they dared not say that they were wholly +unworthy of all divine honour, for fear of offending the multitude, +by whom, through inveterate superstition, the demons were served by +the performance of many rites, and the erection of many temples. + + + 23. _What Hermes Trismegistus thought concerning idolatry, and from + what source he knew that the superstitions of Egypt were to be + abolished._ + +The Egyptian Hermes, whom they call Trismegistus, had a different +opinion concerning those demons. Apuleius, indeed, denies that they +are gods; but when he says that they hold a middle place between the +gods and men, so that they seem to be necessary for men as mediators +between them and the gods, he does not distinguish between the +worship due to them and the religious homage due to the supernal +gods. This Egyptian, however, says that there are some gods made by +the supreme God, and some made by men. Any one who hears this, as I +have stated it, no doubt supposes that it has reference to images, +because they are the works of the hands of men; but he asserts that +visible and tangible images are, as it were, only the bodies of the +gods, and that there dwell in them certain spirits, which have been +invited to come into them, and which have power to inflict harm, or +to fulfil the desires of those by whom divine honours and services +are rendered to them. To unite, therefore, by a certain art, those +invisible spirits to visible and material things, so as to make, as +it were, animated bodies, dedicated and given up to those spirits +who inhabit them,--this, he says, is to make gods, adding that men +have received this great and wonderful power. I will give the words +of this Egyptian as they have been translated into our tongue: "And, +since we have undertaken to discourse concerning the relationship +and fellowship between men and the gods, know, O Æsculapius, the +power and strength of man. As the Lord and Father, or that which is +highest, even God, is the maker of the celestial gods, so man is +the maker of the gods who are in the temples, content to dwell near +to men."[315] And a little after he says, "Thus humanity, always +mindful of its nature and origin, perseveres in the imitation of +divinity; and as the Lord and Father made eternal gods, that they +should be like Himself, so humanity fashioned its own gods according +to the likeness of its own countenance." When this Æsculapius, to +whom especially he was speaking, had answered him, and had said, +"Dost thou mean the statues, O Trismegistus?"--"Yes, the statues," +replied he, "however unbelieving thou art, O Æsculapius,--the +statues, animated, and full of sensation and spirit, and who do +such great and wonderful things,--the statues, prescient of future +things, and foretelling them by lot, by prophet, by dreams, and +many other things, who bring diseases on men and cure them again, +giving them joy or sorrow according to their merits. Dost thou +not know, Æsculapius, that Egypt is an image of heaven, or, more +truly, a translation and descent of all things which are ordered and +transacted there,--that it is, in truth, if we may say so, to be the +temple of the whole world? And yet, as it becomes the prudent man to +know all things beforehand, ye ought not to be ignorant of this, that +there is a time coming when it shall appear that the Egyptians have +all in vain, with pious mind, and with most scrupulous diligence, +waited on the divinity, and when all their holy worship shall come to +nought, and be found to be in vain." + +Hermes then follows out at great length the statements of this +passage, in which he seems to predict the present time, in which +the Christian religion is overthrowing all lying figments with +a vehemence and liberty proportioned to its superior truth and +holiness, in order that the grace of the true Saviour may deliver +men from those gods which man has made, and subject them to that +God by whom man was made. But when Hermes predicts these things, he +speaks as one who is a friend to these same mockeries of demons, +and does not clearly express the name of Christ. On the contrary, +he deplores, as if it had already taken place, the future abolition +of those things by the observance of which there was maintained in +Egypt a resemblance of heaven,--he bears witness to Christianity +by a kind of mournful prophecy. Now it was with reference to such +that the apostle said, that "knowing God, they glorified Him not as +God, neither were thankful, but became vain in their imaginations, +and their foolish heart was darkened; professing themselves to be +wise, they became fools, and changed the glory of the incorruptible +God into the likeness of the image of corruptible man,"[316] and so +on, for the whole passage is too long to quote. For Hermes makes +many such statements agreeable to the truth concerning the one true +God who fashioned this world. And I know not how he has become so +bewildered by that "darkening of the heart" as to stumble into the +expression of a desire that men should always continue in subjection +to those gods which he confesses to be made by men, and to bewail +their future removal; as if there could be anything more wretched +than mankind tyrannized over by the work of his own hands, since man, +by worshipping the works of his own hands, may more easily cease to +be man, than the works of his hands can, through his worship of them, +become gods. For it can sooner happen that man, who has received +an honourable position, may, through lack of understanding, become +comparable to the beasts, than that the works of man may become +preferable to the work of God, made in His own image, that is, to man +himself. Wherefore deservedly is man left to fall away from Him who +made him, when he prefers to himself that which he himself has made. + +For these vain, deceitful, pernicious, sacrilegious things did the +Egyptian Hermes sorrow, because he knew that the time was coming when +they should be removed. But his sorrow was as impudently expressed +as his knowledge was imprudently obtained; for it was not the Holy +Spirit who revealed these things to him, as He had done to the holy +prophets, who, foreseeing these things, said with exultation, "If +a man shall make gods, lo, they are no gods;"[317] and in another +place, "And it shall come to pass in that day, saith the Lord, that +I will cut off the names of the idols out of the land, and they +shall no more be remembered."[318] But the holy Isaiah prophesies +expressly concerning Egypt in reference to this matter, saying, "And +the idols of Egypt shall be moved at His presence, and their heart +shall be overcome in them,"[319] and other things to the same effect. +And with the prophet are to be classed those who rejoiced that that +which they knew was to come had actually come,--as Simeon, or Anna, +who immediately recognised Jesus when He was born, or Elisabeth, who +in the Spirit recognised Him when He was conceived, or Peter, who +said by the revelation of the Father, "Thou art Christ, the Son of +the living God."[320] But to this Egyptian those spirits indicated +the time of their own destruction, who also, when the Lord was +present in the flesh, said with trembling, "Art Thou come hither to +destroy us before the time?"[321] meaning by destruction before the +time, either that very destruction which they expected to come, but +which they did not think would come so suddenly as it appeared to +have done, or only that destruction which consisted in their being +brought into contempt by being made known. And, indeed, this was a +destruction before the time, that is, before the time of judgment, +when they are to be punished with eternal damnation, together with +all men who are implicated in their wickedness, as the true religion +declares, which neither errs nor leads into error; for it is not like +him who, blown hither and thither by every wind of doctrine, and +mixing true things with things which are false, bewails as about to +perish a religion which he afterwards confesses to be error. + + + 24. _How Hermes openly confessed the error of his forefathers, the + coming destruction of which he nevertheless bewailed._ + +After a long interval, Hermes again comes back to the subject of +the gods which men have made, saying as follows: "But enough on +this subject. Let us return to man and to reason, that divine gift +on account of which man has been called a rational animal. For the +things which have been said concerning man, wonderful though they +are, are less wonderful than those which have been said concerning +reason. For man to discover the divine nature, and to make it, +surpasses the wonder of all other wonderful things. Because, +therefore, our forefathers erred very far with respect to the +knowledge of the gods, through incredulity and through want of +attention to their worship and service, they invented this art of +making gods; and this art once invented, they associated with it a +suitable virtue borrowed from universal nature, and, being incapable +of making souls, they evoked those of demons or of angels, and united +them with these holy images and divine mysteries, in order that +through these souls the images might have power to do good or harm to +men." I know not whether the demons themselves could have been made, +even by adjuration, to confess as he has confessed in these words: +"Because our forefathers erred very far with respect to the knowledge +of the gods, through incredulity and through want of attention to +their worship and service, they invented the art of making gods." +Does he say that it was a moderate degree of error which resulted +in their discovery of the art of making gods, or was he content to +say "they erred?" No; he must needs add "very far," and say, "_They +erred very far._" It was this great error and incredulity, then, +of their forefathers who did not attend to the worship and service +of the gods, which was the origin of the art of making gods. And +yet this wise man grieves over the ruin of this art at some future +time, as if it were a divine religion. Is he not verily compelled by +divine influence, on the one hand, to reveal the past error of his +forefathers, and by a diabolical influence, on the other hand, to +bewail the future punishment of demons? For if their forefathers, by +erring very far with respect to the knowledge of the gods, through +incredulity and aversion of mind from their worship and service, +invented the art of making gods, what wonder is it that all that is +done by this detestable art, which is opposed to the divine religion, +should be taken away by that religion, when truth corrects error, +faith refutes incredulity, and conversion rectifies aversion? + +For if he had only said, without mentioning the cause, that his +forefathers had discovered the art of making gods, it would have +been our duty, if we paid any regard to what is right and pious, to +consider and to see that they could never have attained to this art +if they had not erred from the truth, if they had believed those +things which are worthy of God, if they had attended to divine +worship and service. However, if we alone should say that the causes +of this art were to be found in the great error and incredulity of +men, and aversion of the mind erring from and unfaithful to divine +religion, the impudence of those who resist the truth were in some +way to be borne with; but when he who admires in man, above all other +things, this power which it has been granted him to practise, and +sorrows because a time is coming when all those figments of gods +invented by men shall even be commanded by the laws to be taken +away,--when even this man confesses nevertheless, and explains the +causes which led to the discovery of this art, saying that their +ancestors, through great error and incredulity, and through not +attending to the worship and service of the gods, invented this art +of making gods,--what ought we to say, or rather to do, but to give +to the Lord our God all the thanks we are able, because He has taken +away those things by causes the contrary of those which led to their +institution? For that which the prevalence of error instituted, the +way of truth took away; that which incredulity instituted, faith took +away; that which aversion from divine worship and service instituted, +conversion to the one true and holy God took away. Nor was this the +case only in Egypt, for which country alone the spirit of the demons +lamented in Hermes, but in all the earth, which sings to the Lord a +new song,[322] as the truly holy and truly prophetic Scriptures have +predicted, in which it is written, "Sing unto the Lord a new song; +sing unto the Lord, all the earth." For the title of this psalm is, +"When the house was built after the captivity." For a house is being +built to the Lord in all the earth, even the city of God, which is +the holy Church, after that captivity in which demons held captive +those men who, through faith in God, became living stones in the +house. For although man made gods, it did not follow that he who made +them was not held captive by them, when, by worshipping them, he was +drawn into fellowship with them,--into the fellowship not of stolid +idols, but of cunning demons; for what are idols but what they are +represented to be in the same Scriptures, "They have eyes, but they +do not see,"[323] and, though artistically fashioned, are still +without life and sensation? But unclean spirits, associated through +that wicked art with these same idols, have miserably taken captive +the souls of their worshippers, by bringing them down into fellowship +with themselves. Whence the apostle says, "We know that an idol is +nothing, but those things which the Gentiles sacrifice they sacrifice +to demons, and not to God; and I would not ye should have fellowship +with demons."[324] After this captivity, therefore, in which men were +held by malign demons, the house of God is being built in all the +earth; whence the title of that psalm in which it is said, "Sing unto +the Lord a new song; sing unto the Lord, all the earth. Sing unto the +Lord, bless His name; declare well His salvation from day to day. +Declare His glory among the nations, among all people His wonderful +things. For great is the Lord, and much to be praised: He is terrible +above all gods. For all the gods of the nations are demons: but the +Lord made the heavens."[325] + +Wherefore he who sorrowed because a time was coming when the worship +of idols should be abolished, and the domination of the demons over +those who worshipped them, wished, under the influence of a demon, +that that captivity should always continue, at the cessation of which +that psalm celebrates the building of the house of the Lord in all +the earth. Hermes foretold these things with grief, the prophet with +joyfulness; and because the Spirit is victorious who sang these things +through the ancient prophets, even Hermes himself was compelled in a +wonderful manner to confess, that those very things which he wished not +to be removed, and at the prospect of whose removal he was sorrowful, +had been instituted, not by prudent, faithful, and religious, but by +erring and unbelieving men, averse to the worship and service of the +gods. And although he calls them gods, nevertheless, when he says +that they were made by such men as we certainly ought not to be, he +shows, whether he will or not, that they are not to be worshipped by +those who do not resemble these image-makers, that is, by prudent, +faithful, and religious men, at the same time also making it manifest +that the very men who made them involved themselves in the worship +of those as gods who were not gods. For true is the saying of the +prophet, "If a man _make_ gods, lo, they are no gods."[326] Such gods, +therefore, acknowledged by such worshippers and made by such men, +did Hermes call "gods made by men," that is to say, demons, through +some art of I know not what description, bound by the chains of their +own lusts to images. But, nevertheless, he did not agree with that +opinion of the Platonic Apuleius, of which we have already shown the +incongruity and absurdity, namely, that they were interpreters and +intercessors between the gods whom God made, and men whom the same +God made, bringing to God the prayers of men, and from God the gifts +given in answer to these prayers. For it is exceedingly stupid to +believe that gods whom men have made have more influence with gods +whom God has made than men themselves have, whom the very same God has +made. And consider, too, that it is a demon which, bound by a man to +an image by means of an impious art, has been made a god, but a god +to such a man only, not to every man. What kind of god, therefore, is +that which no man would make but one erring, incredulous, and averse +to the true God? Moreover, if the demons which are worshipped in the +temples, being introduced by some kind of strange art into images, that +is, into visible representations of themselves, by those men who by +this art made gods when they were straying away from, and were averse +to the worship and service of the gods,--if, I say, those demons are +neither mediators nor interpreters between men and the gods, both on +account of their own most wicked and base manners, and because men, +though erring, incredulous, and averse from the worship and service of +the gods, are nevertheless beyond doubt better than the demons whom +they themselves have evoked, then it remains to be affirmed that what +power they possess they possess as demons, doing harm by bestowing +pretended benefits,--harm all the greater for the deception,--or else +openly and undisguisedly doing evil to men. They cannot, however, do +anything of this kind unless where they are permitted by the deep and +secret providence of God, and then only so far as they are permitted. +When, however, they are permitted, it is not because they, being +midway between men and the gods, have through the friendship of the +gods great power over men; for these demons cannot possibly be friends +to the good gods who dwell in the holy and heavenly habitation, by +whom we mean holy angels and rational creatures, whether thrones, or +dominations, or principalities, or powers, from whom they are as far +separated in disposition and character as vice is distant from virtue, +wickedness from goodness. + + + 25. _Concerning those things which may be common to the holy angels + and to men._ + +Wherefore we must by no means seek, through the supposed mediation +of demons, to avail ourselves of the benevolence or beneficence of +the gods, or rather of the good angels, but through resembling them +in the possession of a good will, through which we are with them, +and live with them, and worship with them the same God, although +we cannot see them with the eyes of our flesh. But it is not in +locality we are distant from them, but in merit of life, caused by +our miserable unlikeness to them in will, and by the weakness of +our character; for the mere fact of our dwelling on earth under the +conditions of life in the flesh does not prevent our fellowship with +them. It is only prevented when we, in the impurity of our hearts, +mind earthly things. But in this present time, while we are being +healed that we may eventually be as they are, we are brought near to +them by faith, if by their assistance we believe that He who is their +blessedness is also ours. + + + 26. _That all the religion of the pagans has reference to dead + men._ + +It is certainly a remarkable thing how this Egyptian, when expressing +his grief that a time was coming when those things would be taken +away from Egypt, which he confesses to have been invented by men +erring, incredulous, and averse to the service of divine religion, +says, among other things, "Then shall that land, the most holy place +of shrines and temples, be full of sepulchres and dead men," as if, +in sooth, if these things were not taken away, men would not die! +as if dead bodies could be buried elsewhere than in the ground! as +if, as time advanced, the number of sepulchres must not necessarily +increase in proportion to the increase of the number of the dead! +But they who are of a perverse mind, and opposed to us, suppose that +what he grieves for is that the memorials of our martyrs were to +succeed to their temples and shrines, in order, forsooth, that they +may have grounds for thinking that gods were worshipped by the pagans +in temples, but that dead men are worshipped by us in sepulchres. +For with such blindness do impious men, as it were, stumble over +mountains, and will not see the things which strike their own eyes, +that they do not attend to the fact that in all the literature of +the pagans there are not found any, or scarcely any gods, who have +not been men, to whom, when dead, divine honours have been paid. I +will not enlarge on the fact that Varro says that all dead men are +thought by them to be gods Manes, and proves it by those sacred +rites which are performed in honour of almost all the dead, among +which he mentions funeral games, considering this the very highest +proof of divinity, because games are only wont to be celebrated in +honour of divinities. Hermes himself, of whom we are now treating, +in that same book in which, as if foretelling future things, he +says with sorrow, "Then shall that land, the most holy place of +shrines and temples, be full of sepulchres and dead men," testifies +that the gods of Egypt were dead men. For, having said that their +forefathers, erring very far with respect to the knowledge of the +gods, incredulous and inattentive to the divine worship and service, +invented the art of making gods, with which art, when invented, they +associated the appropriate virtue which is inherent in universal +nature, and by mixing up that virtue with this art, they called forth +the souls of demons or of angels (for they could not make souls), +and caused them to take possession of, or associate themselves with +holy images and divine mysteries, in order that through these souls +the images might have power to do good or harm to men;--having said +this, he goes on, as it were, to prove it by illustrations, saying, +"Thy grandsire, O Æsculapius, the first discoverer of medicine, +to whom a temple was consecrated in a mountain of Libya, near to +the shore of the crocodiles, in which temple lies his earthly man, +that is, his body,--for the better part of him, or rather the whole +of him, if the whole man is in the intelligent life, went back to +heaven,--affords even now by his divinity all those helps to infirm +men, which formerly he was wont to afford to them by the art of +medicine." He says, therefore, that a dead man was worshipped as a +god in that place where he had his sepulchre. He deceives men by a +falsehood, for the man "went back to heaven." Then he adds, "Does not +Hermes, who was my grandsire, and whose name I bear, abiding in the +country which is called by his name, help and preserve all mortals +who come to him from every quarter?" For this elder Hermes, that is, +Mercury, who, he says, was his grandsire, is said to be buried in +Hermopolis, that is, in the city called by his name; so here are two +gods whom he affirms to have been men, Æsculapius and Mercury. Now +concerning Æsculapius, both the Greeks and the Latins think the same +thing; but as to Mercury, there are many who do not think that he was +formerly a mortal, though Hermes testifies that he was his grandsire. +But are these two different individuals who were called by the same +name? I will not dispute much whether they are different individuals +or not. It is sufficient to know that this Mercury of whom Hermes +speaks is, as well as Æsculapius, a god who once was a man, according +to the testimony of this same Trismegistus, esteemed so great by his +countrymen, and also the grandson of Mercury himself. + +Hermes goes on to say, "But do we know how many good things Isis, +the wife of Osiris, bestows when she is propitious, and what great +opposition she can offer when enraged?" Then, in order to show that +there were gods made by men through this art, he goes on to say, +"For it is easy for earthly and mundane gods to be angry, being +made and composed by men out of either nature;" thus giving us to +understand that he believed that demons were formerly the souls of +dead men, which, as he says, by means of a certain art invented by +men very far in error, incredulous, and irreligious, were caused +to take possession of images, because they who made such gods were +not able to make souls. When, therefore, he says "either nature," +he means soul and body,--the demon being the soul, and the image +the body. What, then, becomes of that mournful complaint, that the +land of Egypt, the most holy place of shrines and temples, was to be +full of sepulchres and dead men? Verily, the fallacious spirit, by +whose inspiration Hermes spoke these things, was compelled to confess +through him that even already that land was full of sepulchres and of +dead men, whom they were worshipping as gods. But it was the grief of +the demons which was expressing itself through his mouth, who were +sorrowing on account of the punishments which were about to fall upon +them at the tombs of the martyrs. For in many such places they are +tortured and compelled to confess, and are cast out of the bodies of +men, of which they had taken possession. + + + 27. _Concerning the nature of the honour which the Christians + pay to their martyrs._ + +But, nevertheless, we do not build temples, and ordain priests, +rites, and sacrifices for these same martyrs; for they are not +our gods, but their God is our God. Certainly we honour their +reliquaries, as the memorials of holy men of God who strove for the +truth even to the death of their bodies, that the true religion might +be made known, and false and fictitious religions exposed. For if +there were some before them who thought that these religions were +really false and fictitious, they were afraid to give expression +to their convictions. But who ever heard a priest of the faithful, +standing at an altar built for the honour and worship of God over +the holy body of some martyr, say in the prayers, I offer to thee a +sacrifice, O Peter, or O Paul, or O Cyprian? for it is to God that +sacrifices are offered at their tombs,--the God who made them both +men and martyrs, and associated them with holy angels in celestial +honour; and the reason why we pay such honours to their memory +is, that by so doing we may both give thanks to the true God for +their victories, and, by recalling them afresh to remembrance, may +stir ourselves up to imitate them by seeking to obtain like crowns +and palms, calling to our help that same God on whom they called. +Therefore, whatever honours the religious may pay in the places of +the martyrs, they are but honours rendered to their memory,[327] not +sacred rites or sacrifices offered to dead men as to gods. And even +such as bring thither food,--which, indeed, is not done by the better +Christians, and in most places of the world is not done at all,--do +so in order that it may be sanctified to them through the merits of +the martyrs, in the name of the Lord of the martyrs, first presenting +the food and offering prayer, and thereafter taking it away to be +eaten, or to be in part bestowed upon the needy.[328] But he who +knows the one sacrifice of Christians, which is the sacrifice offered +in those places, also knows that these are not sacrifices offered to +the martyrs. It is, then, neither with divine honours nor with human +crimes, by which they worship their gods, that we honour our martyrs; +neither do we offer sacrifices to them, or convert the crimes of the +gods into their sacred rites. For let those who will and can read +the letter of Alexander to his mother Olympias, in which he tells +the things which were revealed to him by the priest Leon, and let +those who have read it recall to memory what it contains, that they +may see what great abominations have been handed down to memory, not +by poets, but by the mystic writings of the Egyptians, concerning +the goddess Isis, the wife of Osiris, and the parents of both, all +of whom, according to these writings, were royal personages. Isis, +when sacrificing to her parents, is said to have discovered a crop +of barley, of which she brought some ears to the king her husband, +and his councillor Mercurius, and hence they identify her with Ceres. +Those who read the letter may there see what was the character of +those people to whom when dead sacred rites were instituted as +to gods, and what those deeds of theirs were which furnished the +occasion for these rites. Let them not once dare to compare in any +respect those people, though they hold them to be gods, to our holy +martyrs, though we do not hold them to be gods. For we do not ordain +priests and offer sacrifices to our martyrs, as they do to their +dead men, for that would be incongruous, undue, and unlawful, such +being due only to God; and thus we do not delight them with their +own crimes, or with such shameful plays as those in which the crimes +of the gods are celebrated, which are either real crimes committed +by them at a time when they were men, or else, if they never were +men, fictitious crimes invented for the pleasure of noxious demons. +The god of Socrates, if he had a god, cannot have belonged to this +class of demons. But perhaps they who wished to excel in this art of +making gods, imposed a god of this sort on a man who was a stranger +to, and innocent of any connection with that art. What need we say +more? No one who is even moderately wise imagines that demons are to +be worshipped on account of the blessed life which is to be after +death. But perhaps they will say that all the gods are good, but that +of the demons some are bad and some good, and that it is the good who +are to be worshipped, in order that through them we may attain to the +eternally blessed life. To the examination of this opinion we will +devote the following book. + +FOOTNOTES: + +[291] Wisdom vii. 24-27. + +[292] "Sapiens," that is, a wise man, one who had attained to wisdom. + +[293] Finem boni. + +[294] Dii majorum gentium. + +[295] Book i. 13. + +[296] Rom. i. 19, 20. + +[297] Col. ii. 8. + +[298] Rom. i. 19, 20. + +[299] Acts xvii. 28. + +[300] Rom. i. 21-23. + +[301] _De Doctrina Christiana_, ii. 43. Comp. _Retract._ ii. 4, 2. + +[302] Liberating Jewish slaves, and sending gifts to the temple. See +Josephus, _Ant._ xii. 2. + +[303] Gen. i. 1, 2. + +[304] Spiritus. + +[305] Ex. iii. 14. + +[306] Rom. i. 20. + +[307] Ch. 14. + +[308] _De Deo Socratis._ + +[309] Virgil, _Æn._ 7. 338. + +[310] Virgil, _Æn._ 4. 492, 493. + +[311] Virgil, _Ec._ 8. 99. + +[312] Pliny (_Hist. Nat._ xxviii. 2) and others quote the law as +running: "Qui fruges incantasit, qui malum carmen incantasit.... neu +alienam segetem pelexeris." + +[313] Before Claudius, the prefect of Africa, a heathen. + +[314] Another reading, "whom they could not know, though near to +themselves." + +[315] These quotations are from a dialogue between Hermes and +Æsculapius, which is said to have been translated into Latin by +Apuleius. + +[316] Rom. i. 21. + +[317] Jer. xvi. 20. + +[318] Zech. xiii. 2. + +[319] Isa. xix. 1. + +[320] Matt. xvi. 16. + +[321] Matt. viii. 29. + +[322] Ps. xcvi. 1. + +[323] Ps. cxv. 5, etc. + +[324] 1 Cor. x. 19, 20. + +[325] Ps. xcvi. 1-5. + +[326] Jer. xvi. 20. + +[327] Ornamenta memoriarum. + +[328] Comp. _The Confessions_, vi. 2. + + + + + BOOK NINTH. + + ARGUMENT. + + HAVING IN THE PRECEDING BOOK SHOWN THAT THE WORSHIP OF DEMONS MUST + BE ABJURED, SINCE THEY IN A THOUSAND WAYS PROCLAIM THEMSELVES + TO BE WICKED SPIRITS, AUGUSTINE IN THIS BOOK MEETS THOSE WHO + ALLEGE A DISTINCTION AMONG DEMONS, SOME BEING EVIL, WHILE + OTHERS ARE GOOD; AND, HAVING EXPLODED THIS DISTINCTION, HE + PROVES THAT TO NO DEMON, BUT TO CHRIST ALONE, BELONGS THE + OFFICE OF PROVIDING MEN WITH ETERNAL BLESSEDNESS. + + + 1. _The point at which the discussion has arrived, and what remains + to be handled._ + +Some have advanced the opinion that there are both good and bad gods; +but some, thinking more respectfully of the gods have attributed +to them so much honour and praise as to preclude the supposition +of any god being wicked. But those who have maintained that there +are wicked gods as well as good ones have included the demons under +the name "gods," and sometimes, though more rarely, have called the +gods demons; so that they admit that Jupiter, whom they make the +king and head of all the rest, is called a demon by Homer.[329] +Those, on the other hand, who maintain that the gods are all good, +and far more excellent than the men who are justly called good, are +moved by the actions of the demons, which they can neither deny nor +impute to the gods whose goodness they affirm, to distinguish between +gods and demons; so that, whenever they find anything offensive +in the deeds or sentiments by which unseen spirits manifest their +power, they believe this to proceed not from the gods, but from +the demons. At the same time they believe that, as no god can hold +direct intercourse with men, these demons hold the position of +mediators, ascending with prayers, and returning with gifts. This +is the opinion of the Platonists, the ablest and most esteemed of +their philosophers, with whom we therefore chose to debate this +question,--whether the worship of a number of gods is of any service +towards obtaining blessedness in the future life. And this is the +reason why, in the preceding book, we have inquired how the demons, +who take pleasure in such things as good and wise men loathe and +execrate, in the sacrilegious and immoral fictions which the poets +have written, not of men, but of the gods themselves, and in the +wicked and criminal violence of magical arts, can be regarded as +more nearly related and more friendly to the gods than men are, and +can mediate between good men and the good gods; and it has been +demonstrated that this is absolutely impossible. + + + 2. _Whether among the demons, inferior to the gods, there are any + good spirits under whose guardianship the human soul might + reach true blessedness._ + +This book, then, ought, according to the promise made in the end of the +preceding one, to contain a discussion, not of the difference which +exists among the gods, who, according to the Platonists, are all good, +nor of the difference between gods and demons, the former of whom they +separate by a wide interval from men, while the latter are placed +intermediately between the gods and men, but of the difference, since +they make one, among the demons themselves. This we shall discuss so +far as it bears on our theme. It has been the common and usual belief +that some of the demons are bad, others good; and this opinion, whether +it be that of the Platonists or any other sect, must by no means be +passed over in silence, lest some one suppose he ought to cultivate +the good demons in order that by their mediation he may be accepted +by the gods, all of whom he believes to be good, and that he may live +with them after death; whereas he would thus be ensnared in the toils +of wicked spirits, and would wander far from the true God, with whom +alone, and in whom alone, the human soul, that is to say, the soul that +is rational and intellectual, is blessed. + + + 3. _What Apuleius attributes to the demons, to whom, though he + does not deny them reason, he does not ascribe virtue._ + +What, then, is the difference between good and evil demons? For the +Platonist Apuleius, in a treatise on this whole subject,[330] while +he says a great deal about their aerial bodies, has not a word to say +of the spiritual virtues with which, if they were good, they must have +been endowed. Not a word has he said, then, of that which could give +them happiness; but proof of their misery he has given, acknowledging +that their mind, by which they rank as reasonable beings, is not only +not imbued and fortified with virtue so as to resist all unreasonable +passions, but that it is somehow agitated with tempestuous emotions, +and is thus on a level with the mind of foolish men. His own words +are: "It is this class of demons the poets refer to, when, without +serious error, they feign that the gods hate and love individuals +among men, prospering and ennobling some, and opposing and distressing +others. Therefore pity, indignation, grief, joy, every human emotion is +experienced by the demons, with the same mental disturbance, and the +same tide of feeling and thought. These turmoils and tempests banish +them far from the tranquillity of the celestial gods." Can there be +any doubt that in these words it is not some inferior part of their +spiritual nature, but the very mind by which the demons hold their +rank as rational beings, which he says is tossed with passion like a +stormy sea? They cannot, then, be compared even to wise men, who with +undisturbed mind resist these perturbations to which they are exposed +in this life, and from which human infirmity is never exempt, and who +do not yield themselves to approve of or perpetrate anything which +might deflect them from the path of wisdom and law of rectitude. They +resemble in character, though not in bodily appearance, wicked and +foolish men. I might indeed say they are worse, inasmuch as they have +grown old in iniquity, and incorrigible by punishment. Their mind, as +Apuleius says, is a sea tossed with tempest, having no rallying point +of truth or virtue in their soul from which they can resist their +turbulent and depraved emotions. + + + 4. _The opinion of the Peripatetics and Stoics about mental + emotions._ + +Among the philosophers there are two opinions about these mental +emotions, which the Greeks call πάθη, while some of our own writers, +as Cicero, call them perturbations,[331] some affections, and some, +to render the Greek word more accurately, passions. Some say that even +the wise man is subject to these perturbations, though moderated and +controlled by reason, which imposes laws upon them, and so restrains +them within necessary bounds. This is the opinion of the Platonists +and Aristotelians; for Aristotle was Plato's disciple, and the founder +of the Peripatetic school. But others, as the Stoics, are of opinion +that the wise man is not subject to these perturbations. But Cicero, +in his book _De Finibus_, shows that the Stoics are here at variance +with the Platonists and Peripatetics rather in words than in reality; +for the Stoics decline to apply the term "goods" to external and bodily +advantages,[332] because they reckon that the only good is virtue, +the art of living well, and this exists only in the mind. The other +philosophers, again, use the simple and customary phraseology, and +do not scruple to call these things goods, though in comparison of +virtue, which guides our life, they are little and of small esteem. +And thus it is obvious that, whether these outward things are called +goods or advantages, they are held in the same estimation by both +parties, and that in this matter the Stoics are pleasing themselves +merely with a novel phraseology. It seems, then, to me that in this +question, whether the wise man is subject to mental passions, or +wholly free from them, the controversy is one of words rather than of +things; for I think that, if the reality and not the mere sound of the +words is considered, the Stoics hold precisely the same opinion as the +Platonists and Peripatetics. For, omitting for brevity's sake other +proofs which I might adduce in support of this opinion, I will state +but one which I consider conclusive. Aulus Gellius, a man of extensive +erudition, and gifted with an eloquent and graceful style, relates, +in his work entitled _Noctes Atticæ_,[333] that he once made a voyage +with an eminent Stoic philosopher; and he goes on to relate fully and +with gusto what I shall barely state, that when the ship was tossed +and in danger from a violent storm, the philosopher grew pale with +terror. This was noticed by those on board, who, though themselves +threatened with death, were curious to see whether a philosopher would +be agitated like other men. When the tempest had passed over, and as +soon as their security gave them freedom to resume their talk, one +of the passengers, a rich and luxurious Asiatic, begins to banter +the philosopher, and rally him because he had even become pale with +fear, while he himself had been unmoved by the impending destruction. +But the philosopher availed himself of the reply of Aristippus the +Socratic, who, on finding himself similarly bantered by a man of the +same character, answered, "You had no cause for anxiety for the soul +of a profligate debauchee, but I had reason to be alarmed for the soul +of Aristippus." The rich man being thus disposed of, Aulus Gellius +asked the philosopher, in the interests of science and not to annoy +him, what was the reason of his fear? And he, willing to instruct a man +so zealous in the pursuit of knowledge, at once took from his wallet +a book of Epictetus the Stoic,[334] in which doctrines were advanced +which precisely harmonized with those of Zeno and Chrysippus, the +founders of the Stoical school. Aulus Gellius says that he read in +this book that the Stoics maintain that there are certain impressions +made on the soul by external objects which they call _phantasiæ_, +and that it is not in the power of the soul to determine whether or +when it shall be invaded by these. When these impressions are made by +alarming and formidable objects, it must needs be that they move the +soul even of the wise man, so that for a little he trembles with fear, +or is depressed by sadness, these impressions anticipating the work of +reason and self-control; but this does not imply that the mind accepts +these evil impressions, or approves or consents to them. For this +consent is, they think, in a man's power; there being this difference +between the mind of the wise man and that of the fool, that the fool's +mind yields to these passions and consents to them, while that of the +wise man, though it cannot help being invaded by them, yet retains +with unshaken firmness a true and steady persuasion of those things +which it ought rationally to desire or avoid. This account of what +Aulus Gellius relates that he read in the book of Epictetus about the +sentiments and doctrines of the Stoics I have given as well as I could, +not, perhaps, with his choice language, but with greater brevity, and, +I think, with greater clearness. And if this be true, then there is no +difference, or next to none, between the opinion of the Stoics and that +of the other philosophers regarding mental passions and perturbations, +for both parties agree in maintaining that the mind and reason of the +wise man are not subject to these. And perhaps what the Stoics mean +by asserting this, is that the wisdom which characterizes the wise +man is clouded by no error and sullied by no taint, but, with this +reservation that his wisdom remains undisturbed, he is exposed to the +impressions which the goods and ills of this life (or, as they prefer +to call them, the advantages or disadvantages) make upon them. For we +need not say that if that philosopher had thought nothing of those +things which he thought he was forthwith to lose, life and bodily +safety, he would not have been so terrified by his danger as to betray +his fear by the pallor of his cheek. Nevertheless, he might suffer this +mental disturbance, and yet maintain the fixed persuasion that life +and bodily safety, which the violence of the tempest threatened to +destroy, are not those good things which make their possessors good, +as the possession of righteousness does. But in so far as they persist +that we must call them not goods but advantages, they quarrel about +words and neglect things. For what difference does it make whether +goods or advantages be the better name, while the Stoic no less than +the Peripatetic is alarmed at the prospect of losing them, and while, +though they name them differently, they hold them in like esteem? Both +parties assure us that, if urged to the commission of some immorality +or crime by the threatened loss of these goods or advantages, they +would prefer to lose such things as preserve bodily comfort and +security rather than commit such things as violate righteousness. And +thus the mind in which this resolution is well grounded suffers no +perturbations to prevail with it in opposition to reason, even though +they assail the weaker parts of the soul; and not only so, but it +rules over them, and, while it refuses its consent and resists them, +administers a reign of virtue. Such a character is ascribed to Æneas +by Virgil when he says, + + "He stands immovable by tears, + Nor tenderest words with pity hears."[335] + + + 5. _That the passions which assail the souls of Christians do not + seduce them to vice, but exercise their virtue._ + +We need not at present give a careful and copious exposition of the +doctrine of Scripture, the sum of Christian knowledge, regarding +these passions. It subjects the mind itself to God, that He may +rule and aid it, and the passions, again, to the mind, to moderate +and bridle them, and turn them to righteous uses. In our ethics, we +do not so much inquire whether a pious soul is angry, as why he is +angry; not whether he is sad, but what is the cause of his sadness; +not whether he fears, but what he fears. For I am not aware that any +right thinking person would find fault with anger at a wrongdoer +which seeks his amendment, or with sadness which intends relief to +the suffering, or with fear lest one in danger be destroyed. The +Stoics, indeed, are accustomed to condemn compassion.[336] But how +much more honourable had it been in that Stoic we have been telling +of, had he been disturbed by compassion prompting him to relieve a +fellow-creature, than to be disturbed by the fear of shipwreck! Far +better, and more humane, and more consonant with pious sentiments, +are the words of Cicero in praise of Cæsar, when he says, "Among +your virtues none is more admirable and agreeable than your +compassion."[337] And what is compassion but a fellow-feeling for +another's misery, which prompts us to help him if we can? And this +emotion is obedient to reason, when compassion is shown without +violating right, as when the poor are relieved, or the penitent +forgiven. Cicero, who knew how to use language, did not hesitate to +call this a virtue, which the Stoics are not ashamed to reckon among +the vices, although, as the book of that eminent Stoic, Epictetus, +quoting the opinions of Zeno and Chrysippus, the founders of the +school, has taught us, they admit that passions of this kind invade +the soul of the wise man, whom they would have to be free from all +vice. Whence it follows that these very passions are not judged by +them to be vices, since they assail the wise man without forcing him +to act against reason and virtue; and that, therefore, the opinion of +the Peripatetics or Platonists and of the Stoics is one and the same. +But, as Cicero says,[338] mere logomachy is the bane of these pitiful +Greeks, who thirst for contention rather than for truth. However, +it may justly be asked, whether our subjection to these affections, +even while we follow virtue, is a part of the infirmity of this life? +For the holy angels feel no anger while they punish those whom the +eternal law of God consigns to punishment, no fellow-feeling with +misery while they relieve the miserable, no fear while they aid +those who are in danger; and yet ordinary language ascribes to them +also these mental emotions, because, though they have none of our +weakness, their acts resemble the actions to which these emotions +move us; and thus even God Himself is said in Scripture to be angry, +and yet without any perturbation. For this word is used of the effect +of His vengeance, not of the disturbing mental affection. + + + 6. _Of the passions which, according to Apuleius, agitate the + demons who are supposed by him to mediate between gods and men._ + +Deferring for the present the question about the holy angels, let +us examine the opinion of the Platonists, that the demons who +mediate between gods and men are agitated by passions. For if their +mind, though exposed to their incursion, still remained free and +superior to them, Apuleius could not have said that their hearts +are tossed with passions as the sea by stormy winds.[339] Their +mind, then,--that superior part of their soul whereby they are +rational beings, and which, if it actually exists in them, should +rule and bridle the turbulent passions of the inferior parts of the +soul,--this mind of theirs, I say, is, according to the Platonist +referred to, tossed with a hurricane of passions. The mind of the +demons, therefore, is subject to the emotions of fear, anger, lust, +and all similar affections. What part of them, then, is free, and +endued with wisdom, so that they are pleasing to the gods, and the +fit guides of men into purity of life, since their very highest part, +being the slave of passion and subject to vice, only makes them more +intent on deceiving and seducing, in proportion to the mental force +and energy of desire they possess? + + + 7. _That the Platonists maintain that the poets wrong the gods by + representing them as distracted by party feeling, to which the + demons, and not the gods, are subject._ + +But if any one says that it is not of all the demons, but only of the +wicked, that the poets, not without truth, say that they violently +love or hate certain men,--for it was of them Apuleius said that they +were driven about by strong currents of emotion,--how can we accept +this interpretation, when Apuleius, in the very same connection, +represents all the demons, and not only the wicked, as intermediate +between gods and men by their aerial bodies? The fiction of the +poets, according to him, consists in their making gods of demons, +and giving them the names of gods, and assigning them as allies +or enemies to individual men, using this poetical licence, though +they profess that the gods are very different in character from the +demons, and far exalted above them by their celestial abode and +wealth of beatitude. This, I say, is the poets' fiction, to say that +these are gods who are not gods, and that, under the names of gods, +they fight among themselves about the men whom they love or hate +with keen partisan feeling. Apuleius says that this is not far from +the truth, since, though they are wrongfully called by the names +of the gods, they are described in their own proper character as +demons. To this category, he says, belongs the Minerva of Homer, "who +interposed in the ranks of the Greeks to restrain Achilles."[340] +For that this was Minerva he supposes to be poetical fiction; for he +thinks that Minerva is a goddess, and he places her among the gods +whom he believes to be all good and blessed in the sublime ethereal +region, remote from intercourse with men. But that there was a demon +favourable to the Greeks and adverse to the Trojans, as another, +whom the same poet mentions under the name of Venus or Mars (gods +exalted above earthly affairs in their heavenly habitations), was the +Trojans' ally and the foe of the Greeks, and that these demons fought +for those they loved against those they hated,--in all this he owned +that the poets stated something very like the truth. For they made +these statements about beings to whom he ascribes the same violent +and tempestuous passions as disturb men, and who are therefore +capable of loves and hatreds not justly formed, but formed in a +party spirit, as the spectators in races or hunts take fancies and +prejudices. It seems to have been the great fear of this Platonist +that the poetical fictions should be believed of the gods, and not of +the demons who bore their names. + + + 8. _How Apuleius defines the gods who dwell in heaven, the demons + who occupy the air, and men who inhabit earth._ + +The definition which Apuleius gives of demons, and in which he of +course includes all demons, is that they are in nature animals, in soul +subject to passion, in mind reasonable, in body aerial, in duration +eternal. Now in these five qualities he has named absolutely nothing +which is proper to good men and not also to bad. For when Apuleius had +spoken of the celestials first, and had then extended his description +so as to include an account of those who dwell far below on the earth, +that, after describing the two extremes of rational being, he might +proceed to speak of the intermediate demons, he says, "Men, therefore, +who are endowed with the faculty of reason and speech, whose soul is +immortal and their members mortal, who have weak and anxious spirits, +dull and corruptible bodies, dissimilar characters, similar ignorance, +who are obstinate in their audacity, and persistent in their hope, +whose labour is vain, and whose fortune is ever on the wane, their +race immortal, themselves perishing, each generation replenished with +creatures whose life is swift and their wisdom slow, their death sudden +and their life a wail,--these are the men who dwell on the earth."[341] +In recounting so many qualities which belong to the large proportion +of men, did he forget that which is the property of the few when he +speaks of their wisdom being slow? If this had been omitted, this his +description of the human race, so carefully elaborated, would have +been defective. And when he commended the excellence of the gods, +he affirmed that they excelled in that very blessedness to which he +thinks men must attain by wisdom. And therefore, if he had wished us +to believe that some of the demons are good, he should have inserted +in his description something by which we might see that they have, in +common with the gods, some share of blessedness, or, in common with +men, some wisdom. But, as it is, he has mentioned no good quality by +which the good may be distinguished from the bad. For although he +refrained from giving a full account of their wickedness, through +fear of offending, not themselves but their worshippers, for whom he +was writing, yet he sufficiently indicated to discerning readers what +opinion he had of them; for only in the one article of the eternity +of their bodies does he assimilate them to the gods, all of whom, he +asserts, are good and blessed, and absolutely free from what he himself +calls the stormy passions of the demons; and as to the soul, he quite +plainly affirms that they resemble men and not the gods, and that this +resemblance lies not in the possession of wisdom, which even men can +attain to, but in the perturbation of passions which sway the foolish +and wicked, but is so ruled by the good and wise that they prefer not +to admit rather than to conquer it. For if he had wished it to be +understood that the demons resembled the gods in the eternity not of +their bodies but of their souls, he would certainly have admitted men +to share in this privilege, because, as a Platonist, he of course must +hold that the human soul is eternal. Accordingly, when describing this +race of living beings, he said that their souls were immortal, their +members mortal. And, consequently, if men have not eternity in common +with the gods because they have mortal bodies, demons have eternity in +common with the gods because their bodies are immortal. + + + 9. _Whether the intercession of the demons can secure for men the + friendship of the celestial gods._ + +How, then, can men hope for a favourable introduction to the +friendship of the gods by such mediators as these, who are, like men, +defective in that which is the better part of every living creature, +viz. the soul, and who resemble the gods only in the body, which is +the inferior part? For a living creature or animal consists of soul +and body, and of these two parts the soul is undoubtedly the better; +even though vicious and weak, it is obviously better than even the +soundest and strongest body, for the greater excellence of its nature +is not reduced to the level of the body even by the pollution of +vice, as gold, even when tarnished, is more precious than the purest +silver or lead. And yet these mediators, by whose interposition +things human and divine are to be harmonized, have an eternal body +in common with the gods, and a vicious soul in common with men,--as +if the religion by which these demons are to unite gods and men +were a bodily, and not a spiritual matter. What wickedness, then, +or punishment has suspended these false and deceitful mediators, as +it were head downwards, so that their inferior part, their body, +is linked to the gods above, and their superior part, the soul, +bound to men beneath; united to the celestial gods by the part that +serves, and miserable, together with the inhabitants of earth, by +the part that rules? For the body is the servant, as Sallust says: +"We use the soul to rule, the body to obey;"[342] adding, "the one +we have in common with the gods, the other with the brutes." For he +was here speaking of men; and they have, like the brutes, a mortal +body. These demons, whom our philosophic friends have provided for +us as mediators with the gods, may indeed say of the soul and body, +the one we have in common with the gods, the other with men; but, +as I said, they are as it were suspended and bound head downwards, +having the slave, the body, in common with the gods, the master, the +soul, in common with miserable men,--their inferior part exalted, +their superior part depressed. And therefore, if any one supposes +that, because they are not subject, like terrestrial animals, to the +separation of soul and body by death, they therefore resemble the +gods in their eternity, their body must not be considered a chariot +of an eternal triumph, but rather the chain of an eternal punishment. + + + 10. _That, according to Plotinus, men, whose body is mortal, are + less wretched than demons, whose body is eternal._ + +Plotinus, whose memory is quite recent,[343] enjoys the reputation +of having understood Plato better than any other of his disciples. +In speaking of human souls, he says, "The Father in compassion made +their bonds mortal;"[344] that is to say, he considered it due to the +Father's mercy that men, having a mortal body, should not be for ever +confined in the misery of this life. But of this mercy the demons have +been judged unworthy, and they have received, in conjunction with a +soul subject to passions, a body not mortal like man's, but eternal. +For they should have been happier than men if they had, like men, had a +mortal body, and, like the gods, a blessed soul. And they should have +been equal to men, if in conjunction with a miserable soul they had +at least received, like men, a mortal body, so that death might have +freed them from trouble, if, at least, they should have attained some +degree of piety. But, as it is, they are not only no happier than men, +having, like them, a miserable soul, they are also more wretched, being +eternally bound to the body; for he does not leave us to infer that by +some progress in wisdom and piety they can become gods, but expressly +says that they are demons for ever. + + + 11. _Of the opinion of the Platonists, that the souls of men become + demons when disembodied._ + +He[345] says, indeed, that the souls of men are demons, and that men +become _Lares_ if they are good, _Lemures_ or _Larvæ_ if they are +bad, and _Manes_ if it is uncertain whether they deserve well or ill. +Who does not see at a glance that this is a mere whirlpool sucking +men to moral destruction? For, however wicked men have been, if they +suppose they shall become Larvæ or divine Manes, they will become +the worse the more love they have for inflicting injury; for, as +the Larvæ are hurtful demons made out of wicked men, these men must +suppose that after death they will be invoked with sacrifices and +divine honours that they may inflict injuries. But this question we +must not pursue. He also states that the blessed are called in Greek +εὐδαίμονες, because they are good souls, that is to say, good demons, +confirming his opinion that the souls of men are demons. + + + 12. _Of the three opposite qualities by which the Platonists + distinguish between the nature of men and that of demons._ + +But at present we are speaking of those beings whom he described as +being properly intermediate between gods and men, in nature animals, +in mind rational, in soul subject to passion, in body aerial, in +duration eternal. When he had distinguished the gods, whom he placed +in the highest heaven, from men, whom he placed on earth, not only by +position but also by the unequal dignity of their natures, he concluded +in these words: "You have here two kinds of animals: the gods, widely +distinguished from men by sublimity of abode, perpetuity of life, +perfection of nature; for their habitations are separated by so wide +an interval that there can be no intimate communication between them, +and while the vitality of the one is eternal and indefeasible, that +of the others is fading and precarious, and while the spirits of the +gods are exalted in bliss, those of men are sunk in miseries."[346] +Here I find three opposite qualities ascribed to the extremes of being, +the highest and lowest. For, after mentioning the three qualities for +which we are to admire the gods, he repeated, though in other words, +the same three as a foil to the defects of man. The three qualities +are, "sublimity of abode, perpetuity of life, perfection of nature." +These he again mentioned so as to bring out their contrasts in man's +condition. As he had mentioned "sublimity of abode," he says, "Their +habitations are separated by so wide an interval;" as he had mentioned +"perpetuity of life," he says, that "while divine life is eternal and +indefeasible, human life is fading and precarious;" and as he had +mentioned "perfection of nature," he says, that "while the spirits of +the gods are exalted in bliss, those of men are sunk in miseries." +These three things, then, he predicates of the gods, exaltation, +eternity, blessedness; and of man he predicates the opposite, lowliness +of habitation, mortality, misery. + + + 13. _How the demons can mediate between gods and men if they have + nothing in common with both, being neither blessed like the + gods, nor miserable like men._ + +If, now, we endeavour to find between these opposites the mean occupied +by the demons, there can be no question as to their local position; +for, between the highest and lowest place, there is a place which +is rightly considered and called the middle place. The other two +qualities remain, and to them we must give greater care, that we may +see whether they are altogether foreign to the demons, or how they are +so bestowed upon them without infringing upon their mediate position. +We may dismiss the idea that they are foreign to them. For we cannot +say that the demons, being rational animals, are neither blessed nor +wretched, as we say of the beasts and plants, which are void of feeling +and reason, or as we say of the middle place, that it is neither the +highest nor the lowest. The demons, being rational, must be either +miserable or blessed. And, in like manner, we cannot say that they +are neither mortal nor immortal; for all living things either live +eternally or end life in death. Our author, besides, stated that the +demons are eternal. What remains for us to suppose, then, but that +these mediate beings are assimilated to the gods in one of the two +remaining qualities, and to men in the other? For if they received both +from above, or both from beneath, they should no longer be mediate, but +either rise to the gods above, or sink to men beneath. Therefore, as +it has been demonstrated that they must possess these two qualities, +they will hold their middle place if they receive one from each party. +Consequently, as they cannot receive their eternity from beneath, +because it is not there to receive, they must get it from above; and +accordingly they have no choice but to complete their mediate position +by accepting misery from men. + +According to the Platonists, then, the gods, who occupy the highest +place, enjoy eternal blessedness, or blessed eternity; men, who +occupy the lowest, a mortal misery, or a miserable mortality; and +the demons, who occupy the mean, a miserable eternity, or an eternal +misery. As to those five things which Apuleius included in his +definition of demons, he did not show, as he promised, that the +demons are mediate. For three of them, that their nature is animal, +their mind rational, their soul subject to passions, he said that +they have in common with men; one thing, their eternity, in common +with the gods; and one proper to themselves, their aerial body. How, +then, are they intermediate, when they have three things in common +with the lowest, and only one in common with the highest? Who does +not see that the intermediate position is abandoned in proportion +as they tend to, and are depressed towards, the lowest extreme? But +perhaps we are to accept them as intermediate because of their one +property of an aerial body, as the two extremes have each their +proper body, the gods an ethereal, men a terrestrial body, and +because two of the qualities they possess in common with man they +possess also in common with the gods, namely, their animal nature +and rational mind. For Apuleius himself, in speaking of gods and +men, said, "You have two animal natures." And Platonists are wont +to ascribe a rational mind to the gods. Two qualities remain, their +liability to passion, and their eternity,--the first of which they +have in common with men, the second with the gods; so that they are +neither wafted to the highest nor depressed to the lowest extreme, +but perfectly poised in their intermediate position. But then, this +is the very circumstance which constitutes the eternal misery, or +miserable eternity, of the demons. For he who says that their soul +is subject to passions would also have said that they are miserable, +had he not blushed for their worshippers. Moreover, as the world +is governed, not by fortuitous haphazard, but, as the Platonists +themselves avow, by the providence of the supreme God, the misery of +the demons would not be eternal unless their wickedness were great. + +If, then, the blessed are rightly styled _eudemons_, the demons +intermediate between gods and men are not eudemons. What, then, is +the local position of those good demons, who, above men but beneath +the gods, afford assistance to the former, minister to the latter? +For if they are good and eternal, they are doubtless blessed. But +eternal blessedness destroys their intermediate character, giving +them a close resemblance to the gods, and widely separating them +from men. And therefore the Platonists will in vain strive to show +how the good demons, if they are both immortal and blessed, can +justly be said to hold a middle place between the gods, who are +immortal and blessed, and men, who are mortal and miserable. For if +they have both immortality and blessedness in common with the gods, +and neither of these in common with men, who are both miserable and +mortal, are they not rather remote from men and united with the gods, +than intermediate between them? They would be intermediate if they +held one of their qualities in common with the one party, and the +other with the other, as man is a kind of mean between angels and +beasts,--the beast being an irrational and mortal animal, the angel +a rational and immortal one, while man, inferior to the angel and +superior to the beast, and having in common with the one mortality, +and with the other reason, is a rational and mortal animal. So, +when we seek for an intermediate between the blessed immortals and +miserable mortals, we should find a being which is either mortal and +blessed, or immortal and miserable. + + + 14. _Whether men, though mortal, can enjoy true blessedness._ + +It is a great question among men, whether man can be mortal and +blessed. Some, taking the humbler view of his condition, have denied +that he is capable of blessedness so long as he continues in this +mortal life; others, again, have spurned this idea, and have been +bold enough to maintain that, even though mortal, men may be blessed +by attaining wisdom. But if this be the case, why are not these wise +men constituted mediators between miserable mortals and the blessed +immortals, since they have blessedness in common with the latter, and +mortality in common with the former? Certainly, if they are blessed, +they envy no one (for what more miserable than envy?), but seek with +all their might to help miserable mortals on to blessedness, so that +after death they may become immortal, and be associated with the +blessed and immortal angels. + + + 15. _Of the man Christ Jesus, the Mediator between God and men_. + +But if, as is much more probable and credible, it must needs be that +all men, so long as they are mortal, are also miserable, we must +seek an intermediate who is not only man, but also God, that, by +the interposition of His blessed mortality, He may bring men out of +their mortal misery to a blessed immortality. In this intermediate +two things are requisite, that He become mortal, and that He do not +continue mortal. He did become mortal, not rendering the divinity of +the Word infirm, but assuming the infirmity of flesh. Neither did +He continue mortal in the flesh, but raised it from the dead; for +it is the very fruit of His mediation that those, for the sake of +whose redemption He became the Mediator, should not abide eternally +in bodily death. Wherefore it became the Mediator between us and +God to have both a transient mortality and a permanent blessedness, +that by that which is transient He might be assimilated to mortals, +and might translate them from mortality to that which is permanent. +Good angels, therefore, cannot mediate between miserable mortals and +blessed immortals, for they themselves also are both blessed and +immortal; but evil angels can mediate, because they are immortal like +the one party, miserable like the other. To these is opposed the good +Mediator, who, in opposition to their immortality and misery, has +chosen to be mortal for a time, and has been able to continue blessed +in eternity. It is thus He has destroyed, by the humility of His +death and the benignity of His blessedness, those proud immortals and +hurtful wretches, and has prevented them from seducing to misery by +their boast of immortality those men whose hearts He has cleansed by +faith, and whom He has thus freed from their impure dominion. + +Man, then, mortal and miserable, and far removed from the immortal and +the blessed, what medium shall he choose by which he may be united to +immortality and blessedness? The immortality of the demons, which might +have some charm for man, is miserable; the mortality of Christ, which +might offend man, exists no longer. In the one there is the fear of an +eternal misery; in the other, death, which could not be eternal, can no +longer be feared, and blessedness, which is eternal, must be loved. For +the immortal and miserable mediator interposes himself to prevent us +from passing to a blessed immortality, because that which hinders such +a passage, namely, misery, continues in him; but the mortal and blessed +Mediator interposed Himself, in order that, having passed through +mortality, He might of mortals make immortals (showing His power to do +this in His own resurrection), and from being miserable to raise them +to the blessed company from the number of whom He had Himself never +departed. There is, then, a wicked mediator, who separates friends, +and a good Mediator, who reconciles enemies. And those who separate +are numerous, because the multitude of the blessed are blessed only +by their participation in the one God; of which participation the +evil angels being deprived, they are wretched, and interpose to hinder +rather than to help to this blessedness, and by their very number +prevent us from reaching that one beatific good, to obtain which we +need not many but one Mediator, the uncreated Word of God, by whom all +things were made, and in partaking of whom we are blessed. I do not +say that He is Mediator because He is the Word, for as the Word He +is supremely blessed and supremely immortal, and therefore far from +miserable mortals; but He is Mediator as He is man, for by His humanity +He shows us that, in order to obtain that blessed and beatific good, +we need not seek other mediators to lead us through the successive +steps of this attainment, but that the blessed and beatific God, +having Himself become a partaker of our humanity, has afforded us +ready access to the participation of His divinity. For in delivering +us from our mortality and misery, He does not lead us to the immortal +and blessed angels, so that we should become immortal and blessed +by participating in their nature, but He leads us straight to that +Trinity, by participating in which the angels themselves are blessed. +Therefore, when He chose to be in the form of a servant, and lower than +the angels, that He might be our Mediator, He remained higher than the +angels, in the form of God,--Himself at once the way of life on earth +and life itself in heaven. + + + 16. _Whether it is reasonable in the Platonists to determine that + the celestial gods decline contact with earthly things and + intercourse with men, who therefore require the intercession of + the demons._ + +That opinion, which the same Platonist avers that Plato uttered, +is not true, "that no god holds intercourse with men."[347] And +this, he says, is the chief evidence of their exaltation, that they +are never contaminated by contact with men. He admits, therefore, +that the demons are contaminated; and it follows that they cannot +cleanse those by whom they are themselves contaminated, and thus +all alike become impure, the demons by associating with men, and +men by worshipping the demons. Or, if they say that the demons are +not contaminated by associating and dealing with men, then they are +better than the gods, for the gods, were they to do so, would be +contaminated. For this, we are told, is the glory of the gods, that +they are so highly exalted that no human intercourse can sully them. +He affirms, indeed, that the supreme God, the Creator of all things, +whom we call the true God, is spoken of by Plato as the only God whom +the poverty of human speech fails even passably to describe; and +that even the wise, when their mental energy is as far as possible +delivered from the trammels of connection with the body, have only +such gleams of insight into His nature as may be compared to a flash +of lightning illumining the darkness. If, then, this supreme God, who +is truly exalted above all things, does nevertheless visit the minds +of the wise, when emancipated from the body, with an intelligible and +ineffable presence, though this be only occasional, and as it were +a swift flash of light athwart the darkness, why are the other gods +so sublimely removed from all contact with men, as if they would be +polluted by it? as if it were not a sufficient refutation of this +to lift up our eyes to those heavenly bodies which give the earth +its needful light. If the stars, though they, by his account, are +visible gods, are not contaminated when we look at them, neither are +the demons contaminated when men see them quite closely. But perhaps +it is the human voice, and not the eye, which pollutes the gods; +and therefore the demons are appointed to mediate and carry men's +utterances to the gods, who keep themselves remote through fear of +pollution? What am I to say of the other senses? For by smell neither +the demons, who are present, nor the gods, though they were present +and inhaling the exhalations of living men, would be polluted if +they are not contaminated with the effluvia of the carcases offered +in sacrifice. As for taste, they are pressed by no necessity of +repairing bodily decay, so as to be reduced to ask food from men. And +touch is in their own power. For while it may seem that contact is so +called, because the sense of touch is specially concerned in it, yet +the gods, if so minded, might mingle with men, so as to see and be +seen, hear and be heard; and where is the need of touching? For men +would not dare to desire this, if they were favoured with the sight +or conversation of gods or good demons; and if through excessive +curiosity they should desire it, how could they accomplish their wish +without the consent of the god or demon, when they cannot touch so +much as a sparrow unless it be caged? + +There is, then, nothing to hinder the gods from mingling in a bodily +form with men, from seeing and being seen, from speaking and hearing. +And if the demons do thus mix with men, as I said, and are not +polluted, while the gods, were they to do so, should be polluted, +then the demons are less liable to pollution than the gods. And if +even the demons are contaminated, how can they help men to attain +blessedness after death, if, so far from being able to cleanse them, +and present them clean to the unpolluted gods, these mediators +are themselves polluted? And if they cannot confer this benefit +on men, what good can their friendly mediation do? Or shall its +result be, not that men find entrance to the gods, but that men and +demons abide together in a state of pollution, and consequently of +exclusion from blessedness? Unless, perhaps, some one may say that, +like sponges or things of that sort, the demons themselves, in the +process of cleansing their friends, become themselves the filthier in +proportion as the others become clean. But if this is the solution, +then the gods, who shun contact or intercourse with men for fear of +pollution, mix with demons who are far more polluted. Or perhaps +the gods, who cannot cleanse men without polluting themselves, can +without pollution cleanse the demons who have been contaminated +by human contact? Who can believe such follies, unless the demons +have practised their deceit upon him? If seeing and being seen is +contamination, and if the gods, whom Apuleius himself calls visible, +"the brilliant lights of the world,"[348] and the other stars, are +seen by men, are we to believe that the demons, who cannot be seen +unless they please, are safer from contamination? Or if it is only +the seeing and not the being seen which contaminates, then they must +deny that these gods of theirs, these brilliant lights of the world, +see men when their rays beam upon the earth. Their rays are not +contaminated by lighting on all manner of pollution, and are we to +suppose that the gods would be contaminated if they mixed with men, +and even if contact were needed in order to assist them? For there is +contact between the earth and the sun's or moon's rays, and yet this +does not pollute the light. + + + 17. _That to obtain the blessed life, which consists in partaking + of the supreme good, man needs such mediation as is furnished + not by a demon, but by Christ alone._ + +I am considerably surprised that such learned men, men who pronounce +all material and sensible things to be altogether inferior to those +that are spiritual and intelligible, should mention bodily contact +in connection with the blessed life. Is that sentiment of Plotinus +forgotten?--"We must fly to our beloved fatherland. There is the +Father, there our all. What fleet or flight shall convey us thither? +Our way is, to become like God."[349] If, then, one is nearer to God +the liker he is to Him, there is no other distance from God than +unlikeness to Him. And the soul of man is unlike that incorporeal and +unchangeable and eternal essence, in proportion as it craves things +temporal and mutable. And as the things beneath, which are mortal and +impure, cannot hold intercourse with the immortal purity which is +above, a mediator is indeed needed to remove this difficulty; but not +a mediator who resembles the highest order of being by possessing an +immortal body, and the lowest by having a diseased soul, which makes +him rather grudge that we be healed than help our cure. We need a +Mediator who, being united to us here below by the mortality of His +body, should at the same time be able to afford us truly divine help +in cleansing and liberating us by means of the immortal righteousness +of His spirit, whereby He remained heavenly even while here upon +earth. Far be it from the incontaminable God to fear pollution from +the man[350] He assumed, or from the men among whom He lived in the +form of a man. For, though His incarnation showed us nothing else, +these two wholesome facts were enough, that true divinity cannot be +polluted by flesh, and that demons are not to be considered better +than ourselves because they have not flesh.[351] This, then, as +Scripture says, is the "Mediator between God and man, the man Christ +Jesus,"[352] of whose divinity, whereby He is equal to the Father, +and humanity, whereby He has become like us, this is not the place to +speak as fully as I could. + + + 18. _That the deceitful demons, while promising to conduct men to + God by their intercession, mean to turn them from the path of truth._ + +As to the demons, these false and deceitful mediators, who, though +their uncleanness of spirit frequently reveals their misery and +malignity, yet, by virtue of the levity of their aerial bodies and +the nature of the places they inhabit, do contrive to turn us aside +and hinder our spiritual progress; they do not help us towards God, +but rather prevent us from reaching Him. Since even in the bodily +way, which is erroneous and misleading, and in which righteousness +does not walk,--for we must rise to God not by bodily ascent, but +by incorporeal or spiritual conformity to Him,--in this bodily way, +I say, which the friends of the demons arrange according to the +weight of the various elements, the aerial demons being set between +the ethereal gods and earthy men, they imagine the gods to have +this privilege, that by this local interval they are preserved from +the pollution of human contact. Thus they believe that the demons +are contaminated by men rather than men cleansed by the demons, +and that the gods themselves should be polluted unless their local +superiority preserved them. Who is so wretched a creature as to +expect purification by a way in which men are contaminating, demons +contaminated, and gods contaminable? Who would not rather choose +that way whereby we escape the contamination of the demons, and +are cleansed from pollution by the incontaminable God, so as to be +associated with the uncontaminated angels? + + + 19. _That even among their own worshippers the name "demon" has + never a good signification._ + +But as some of these demonolators, as I may call them, and among them +Labeo, allege that those whom they call demons are by others called +angels, I must, if I would not seem to dispute merely about words, +say something about the good angels. The Platonists do not deny their +existence, but prefer to call them good demons. But we, following +Scripture, according to which we are Christians, have learned that some +of the angels are good, some bad, but never have we read in Scripture +of good demons; but wherever this or any cognate term occurs, it is +applied only to wicked spirits. And this usage has become so universal, +that, even among those who are called pagans, and who maintain that +demons as well as gods should be worshipped, there is scarcely a man, +no matter how well read and learned, who would dare to say by way of +praise to his slave, You have a demon, or who could doubt that the +man to whom he said this would consider it a curse? Why, then, are we +to subject ourselves to the necessity of explaining away what we have +said when we have given offence by using the word demon, with which +every one, or almost every one, connects a bad meaning, while we can so +easily evade this necessity by using the word angel? + + + 20. _Of the kind of knowledge which puffs up the demons._ + +However, the very origin of the name suggests something worthy of +consideration, if we compare it with the divine books. They are +called demons from a Greek word meaning knowledge.[353] Now the +apostle, speaking with the Holy Spirit, says, "Knowledge puffeth up, +but charity buildeth up."[354] And this can only be understood as +meaning that without charity knowledge does no good, but inflates a +man or magnifies him with an empty windiness. The demons, then, have +knowledge without charity, and are thereby so inflated or proud, +that they crave those divine honours and religious services which +they know to be due to the true God, and still, as far as they can, +exact these from all over whom they have influence. Against this +pride of the demons, under which the human race was held subject +as its merited punishment, there was exerted the mighty influence +of the humility of God, who appeared in the form of a servant; but +men, resembling the demons in pride, but not in knowledge, and being +puffed up with uncleanness, failed to recognise Him. + + + 21. _To what extent the Lord was pleased to make Himself known to + the demons._ + +The devils themselves knew this manifestation of God so well, that +they said to the Lord, though clothed with the infirmity of flesh, +"What have we to do with Thee, Jesus of Nazareth? Art Thou come to +destroy us before the time?"[355] From these words, it is clear that +they had great knowledge, and no charity. They feared His power to +punish, and did not love His righteousness. He made known to them +so much as He pleased, and He was pleased to make known so much as +was needful. But He made Himself known, not as to the holy angels, +who know Him as the Word of God, and rejoice in His eternity, which +they partake, but as was requisite to strike with terror the beings +from whose tyranny He was going to free those who were predestined to +His kingdom and the glory of it, eternally true and truly eternal. +He made Himself known, therefore, to the demons, not by that which +is life eternal, and the unchangeable light which illumines the +pious, whose souls are cleansed by the faith that is in Him, but by +some temporal effects of His power, and evidences of His mysterious +presence, which were more easily discerned by the angelic senses +even of wicked spirits than by human infirmity. But when He judged +it advisable gradually to suppress these signs, and to retire into +deeper obscurity, the prince of the demons doubted whether He were +the Christ, and endeavoured to ascertain this by tempting Him, in so +far as He permitted Himself to be tempted, that He might adapt the +manhood He wore to be an example for our imitation. But after that +temptation, when, as Scripture says, He was ministered to[356] by the +angels who are good and holy, and therefore objects of terror to the +impure spirits, He revealed more and more distinctly to the demons +how great He was, so that, even though the infirmity of His flesh +might seem contemptible, none dared to resist His authority. + + + 22. _The difference between the knowledge of the holy angels and + that of the demons._ + +The good angels, therefore, hold cheap all that knowledge of +material and transitory things which the demons are so proud of +possessing,--not that they are ignorant of these things, but because +the love of God, whereby they are sanctified, is very dear to them, +and because, in comparison of that not merely immaterial but also +unchangeable and ineffable beauty, with the holy love of which they +are inflamed, they despise all things which are beneath it, and all +that is not it, that they may with every good thing that is in them +enjoy that good which is the source of their goodness. And therefore +they have a more certain knowledge even of those temporal and mutable +things, because they contemplate their principles and causes in the +word of God, by which the world was made,--those causes by which one +thing is approved, another rejected, and all arranged. But the demons +do not behold in the wisdom of God these eternal, and, as it were, +cardinal causes of things temporal, but only foresee a larger part +of the future than men do, by reason of their greater acquaintance +with the signs which are hidden from us. Sometimes, too, it is their +own intentions they predict. And, finally, the demons are frequently, +the angels never, deceived. For it is one thing, by the aid of things +temporal and changeable, to conjecture the changes that may occur in +time, and to modify such things by one's own will and faculty,--and +this is to a certain extent permitted to the demons,--it is another +thing to foresee the changes of times in the eternal and immutable +laws of God, which live in His wisdom, and to know the will of God, +the most infallible and powerful of all causes, by participating +in His spirit; and this is granted to the holy angels by a just +discretion. And thus they are not only eternal, but blessed And the +good wherein they are blessed is God, by whom they were created. For +without end they enjoy the contemplation and participation of Him. + + + 23. _That the name of gods is falsely given to the gods of the + Gentiles, though Scripture applies it both to the holy angels + and just men._ + +If the Platonists prefer to call these angels gods rather than +demons, and to reckon them with those whom Plato, their founder and +master, maintains were created by the supreme God,[357] they are +welcome to do so, for I will not spend strength in fighting about +words. For if they say that these beings are immortal, and yet +created by the supreme God, blessed but by cleaving to their Creator +and not by their own power, they say what we say, whatever name they +call these beings by. And that this is the opinion either of all or +the best of the Platonists can be ascertained by their writings. +And regarding the name itself, if they see fit to call such blessed +and immortal creatures gods, this need not give rise to any serious +discussion between us, since in our own Scriptures we read, "The God +of gods, the Lord hath spoken;"[358] and again, "Confess to the God +of gods;"[359] and again, "He is a great King above all gods."[360] +And where it is said, "He is to be feared above all gods," the reason +is forthwith added, for it follows, "for all the gods of the nations +are idols, but the Lord made the heavens."[361] He said, "above all +gods," but added, "of the nations;" that is to say, above all those +whom the nations count gods, in other words, demons. By them He is +to be feared with that terror in which they cried to the Lord, "Hast +Thou come to destroy us?" But where it is said, "the God of gods," it +cannot be understood as the god of the demons; and far be it from us +to say that "great King above all gods" means "great King above all +demons." But the same Scripture also calls men who belong to God's +people "gods:" "I have said, Ye are gods, and all of you children of +the Most High."[362] Accordingly, when God is styled God of gods, +this may be understood of these gods; and so, too, when He is styled +a great King above all gods. + +Nevertheless, some one may say, if men are called gods because they +belong to God's people, whom He addresses by means of men and angels, +are not the immortals, who already enjoy that felicity which men seek +to attain by worshipping God, much more worthy of the title? And +what shall we reply to this, if not that it is not without reason +that in holy Scripture men are more expressly styled gods than those +immortal and blessed spirits to whom we hope to be equal in the +resurrection, because there was a fear that the weakness of unbelief, +being overcome with the excellence of these beings, might presume to +constitute some of them a god? In the case of men this was a result +that need not be guarded against. Besides, it was right that the men +belonging to God's people should be more expressly called gods, to +assure and certify them that He who is called God of gods is their +God; because, although those immortal and blessed spirits who dwell +in the heavens are called gods, yet they are not called gods of gods, +that is to say, gods of the men who constitute God's people, and +to whom it is said, "I have said, Ye are gods, and all of you the +children of the Most High." Hence the saying of the apostle, "Though +there be that are called gods, whether in heaven or in earth, as +there be gods many and lords many, but to us there is but one God, +the Father, of whom are all things, and we in Him; and one Lord Jesus +Christ, by whom are all things, and we by Him."[363] + +We need not, therefore, laboriously contend about the name, since +the reality is so obvious as to admit of no shadow of doubt. That +which we say, that the angels who are sent to announce the will +of God to men belong to the order of blessed immortals, does not +satisfy the Platonists, because they believe that this ministry is +discharged, not by those whom they call gods, in other words, not by +blessed immortals, but by demons, whom they dare not affirm to be +blessed, but only immortal, or if they do rank them among the blessed +immortals, yet only as good demons, and not as gods who dwell in +the heaven of heavens remote from all human contact. But, though it +may seem mere wrangling about a name, yet the name of demon is so +detestable that we cannot bear in any sense to apply it to the holy +angels. Now, therefore, let us close this book in the assurance that, +whatever we call these immortal and blessed spirits, who yet are only +creatures, they do not act as mediators to introduce to everlasting +felicity miserable mortals, from whom they are severed by a twofold +distinction. And those others who are mediators, in so far as they +have immortality in common with their superiors, and misery in common +with their inferiors (for they are justly miserable in punishment +of their wickedness), cannot bestow upon us, but rather grudge that +we should possess, the blessedness from which they themselves are +excluded. And so the friends of the demons have nothing considerable +to allege why we should rather worship them as our helpers than avoid +them as traitors to our interests. As for those spirits who are +good, and who are therefore not only immortal but also blessed, and +to whom they suppose we should give the title of gods, and offer +worship and sacrifices for the sake of inheriting a future life, we +shall, by God's help, endeavour in the following book to show that +these spirits, call them by what name, and ascribe to them what +nature you will, desire that religious worship be paid to God alone, +by whom they were created, and by whose communications of Himself to +them they are blessed. + +FOOTNOTES: + +[329] See Plutarch, on the Cessation of Oracles. + +[330] The _De Deo Socratis._ + +[331] _De Fin._ iii. 20; _Tusc. Disp._ iii. 4. + +[332] The distinction between _bona_ and _commoda_ is thus given by +Seneca (_Ep._ 87, _ad fin._): "Commodum est quod plus usus est quam +molestiæ; bonum sincerum debet esse et ab omni parte innoxium." + +[333] Book xix. ch. 1. + +[334] See _Diog. Laert._ ii. 71. + +[335] Virgil, _Æneid_, iv. 449. + +[336] Seneca, _De Clem._ ii. 4 and 5. + +[337] _Pro. Lig._ c. 12. + +[338] _De Oratore_, i. 11, 47. + +[339] _De Deo Soc._ + +[340] _De Deo Soc._ + +[341] _De Deo Soc._ + +[342] _Cat. Conj._ i. + +[343] Plotinus died in 270 A.D. For his relation to Plato, see +Augustine's _Contra Acad._ iii. 41. + +[344] _Ennead._ iv. 3. 12. + +[345] Apuleius, not Plotinus. + +[346] _De Deo Socratis._ + +[347] Apuleius, _ibid._ + +[348] Virgil, _Georg._ i. 5. + +[349] Augustine apparently quotes from memory from two passages of +the _Enneades_, I. vi. 8, and ii. 3. + +[350] Or, humanity. + +[351] Comp. _De Trin._ 13. 22. + +[352] 1 Tim. ii. 5. + +[353] δαίμων = δαήμων, knowing; so Plato, _Cratylus_, 398. B. + +[354] 1 Cor. viii. 1. + +[355] Mark i. 24. + +[356] Matt. iv. 3-11. + +[357] _Timæus._ + +[358] Ps. l. 1. + +[359] Ps. cxxxvi. 2. + +[360] Ps. xcv. 3. + +[361] Ps. xcvi. 5, 6. + +[362] Ps. lxxxii. 6. + +[363] 1 Cor. viii. 5, 6. + + + + + BOOK TENTH. + + ARGUMENT. + + IN THIS BOOK AUGUSTINE TEACHES THAT THE GOOD ANGELS WISH GOD + ALONE, WHOM THEY THEMSELVES SERVE, TO RECEIVE THAT DIVINE + HONOUR WHICH IS RENDERED BY SACRIFICE, AND WHICH IS CALLED + "LATREIA." HE THEN GOES ON TO DISPUTE AGAINST PORPHYRY ABOUT + THE PRINCIPLE AND WAY OF THE SOUL'S CLEANSING AND DELIVERANCE. + + + 1. _That the Platonists themselves have determined that God alone + can confer happiness either on angels or men, but that it yet + remains a question whether those spirits whom they direct us + to worship, that we may obtain happiness, wish sacrifice to be + offered to themselves, or to the one God only._ + +It is the decided opinion of all who use their brains, that all men +desire to be happy. But who are happy, or how they become so, these +are questions about which the weakness of human understanding stirs +endless and angry controversies, in which philosophers have wasted +their strength and expended their leisure. To adduce and discuss +their various opinions would be tedious, and is unnecessary. The +reader may remember what we said in the eighth book, while making a +selection of the philosophers with whom we might discuss the question +regarding the future life of happiness, whether we can reach it by +paying divine honours to the one true God, the Creator of all gods, +or by worshipping many gods, and he will not expect us to repeat +here the same argument, especially as, even if he has forgotten it, +he may refresh his memory by reperusal. For we made selection of +the Platonists, justly esteemed the noblest of the philosophers, +because they had the wit to perceive that the human soul, immortal +and rational, or intellectual, as it is, cannot be happy except +by partaking of the light of that God by whom both itself and the +world were made; and also that the happy life which all men desire +cannot be reached by any who does not cleave with a pure and holy +love to that one supreme good, the unchangeable God. But as even +these philosophers, whether accommodating to the folly and ignorance +of the people, or, as the apostle says, "becoming vain in their +imaginations,"[364] supposed or allowed others to suppose that many +gods should be worshipped, so that some of them considered that +divine honour by worship and sacrifice should be rendered even to +the demons (an error I have already exploded), we must now, by God's +help, ascertain what is thought about our religious worship and piety +by those immortal and blessed spirits, who dwell in the heavenly +places among dominations, principalities, powers, whom the Platonists +call gods, and some either good demons, or, like us, angels,--that +is to say, to put it more plainly, whether the angels desire us to +offer sacrifice and worship, and to consecrate our possessions and +ourselves, to them, or only to God, theirs and ours. + +For this is the worship which is due to the Divinity, or, to +speak more accurately, to the Deity; and, to express this worship +in a single word, as there does not occur to me any Latin term +sufficiently exact, I shall avail myself, whenever necessary, of a +Greek word. Λατρεία, whenever it occurs in Scripture, is rendered +by the word service. But that service which is due to men, and in +reference to which the apostle writes that servants must be subject +to their own masters,[365] is usually designated by another word +in Greek,[366] whereas the service which is paid to God alone by +worship, is always, or almost always, called λατρεία in the usage +of those who wrote from the divine oracles. This cannot so well be +called simply "cultus," for in that case it would not seem to be due +exclusively to God; for the same word is applied to the respect we +pay either to the memory or the living presence of men. From it, too, +we derive the words agriculture, colonist, and others.[367] And the +heathen call their gods "cœlicolæ," not because they worship heaven, +but because they dwell in it, and as it were colonize it,--not in +the sense in which we call those colonists who are attached to their +native soil to cultivate it under the rule of the owners, but in the +sense in which the great master of the Latin language says, "There +was an ancient city inhabited by Tyrian colonists."[368] He called +them colonists, not because they cultivated the soil, but because +they inhabited the city. So, too, cities that have hived off from +larger cities are called colonies. Consequently, while it is quite +true that, using the word in a special sense, "cult" can be rendered +to none but God, yet, as the word is applied to other things besides, +the cult due to God cannot in Latin be expressed by this word alone. + +The word "religion" might seem to express more definitely the worship +due to God alone, and therefore Latin translators have used this word +to represent θρησκεία; yet, as not only the uneducated, but also +the best instructed, use the word religion to express human ties, +and relationships, and affinities, it would inevitably introduce +ambiguity to use this word in discussing the worship of God, unable +as we are to say that religion is nothing else than the worship +of God, without contradicting the common usage which applies this +word to the observance of social relationships. "Piety," again, or, +as the Greeks say, εὐσέβεια, is commonly understood as the proper +designation of the worship of God. Yet this word also is used of +dutifulness to parents. The common people, too, use it of works +of charity, which, I suppose, arises from the circumstance that +God enjoins the performance of such works, and declares that He +is pleased with them instead of, or in preference to sacrifices. +From this usage it has also come to pass that God Himself is called +pious,[369] in which sense the Greeks never use εὐσεβεῖν, though +εὐσέβεια is applied to works of charity by their common people +also. In some passages of Scripture, therefore, they have sought to +preserve the distinction by using not εὐσέβεια, the more general +word, but θεοσέβεια, which literally denotes the worship of God. +We, on the other hand, cannot express either of these ideas by one +word. This worship, then, which in Greek is called λατρεία, and in +Latin "servitus" [service], but the service due to God only; this +worship, which in Greek is called θρησκεία, and in Latin "religio," +but the religion by which we are bound to God only; this worship, +which they call θεοσέβεια, but which we cannot express in one word, +but call it the worship of God,--this, we say, belongs only to that +God who is the true God, and who makes His worshippers gods.[370] And +therefore, whoever these immortal and blessed inhabitants of heaven +be, if they do not love us, and wish us to be blessed, then we ought +not to worship them; and if they do love us and desire our happiness, +they cannot wish us to be made happy by any other means than they +themselves have enjoyed,--for how could they wish our blessedness to +flow from one source, theirs from another? + + + 2. _The opinion of Plotinus the Platonist regarding enlightenment + from above._ + +But with these more estimable philosophers we have no dispute in +this matter. For they perceived, and in various forms abundantly +expressed in their writings, that these spirits have the same source +of happiness as ourselves,--a certain intelligible light, which is +their God, and is different from themselves, and illumines them that +they may be penetrated with light, and enjoy perfect happiness in the +participation of God. Plotinus, commenting on Plato, repeatedly and +strongly asserts that not even the soul which they believe to be the +soul of the world, derives its blessedness from any other source than +we do, viz. from that Light which is distinct from it and created +it, and by whose intelligible illumination it enjoys light in things +intelligible. He also compares those spiritual things to the vast and +conspicuous heavenly bodies, as if God were the sun, and the soul the +moon; for they suppose that the moon derives its light from the sun. +That great Platonist, therefore, says that the rational soul, or rather +the intellectual soul,--in which class he comprehends the souls of the +blessed immortals who inhabit heaven,--has no nature superior to it +save God, the Creator of the world and the soul itself, and that these +heavenly spirits derive their blessed life, and the light of truth, +from the same source as ourselves, agreeing with the gospel where we +read, "There was a man sent from God whose name was John; the same came +for a witness to bear witness of that Light, that through Him all +might believe. He was not that Light, but that he might bear witness of +the Light. That was the true Light which lighteth every man that cometh +into the world;"[371]--a distinction which sufficiently proves that the +rational or intellectual soul such as John had cannot be its own light, +but needs to receive illumination from another, the true Light. This +John himself avows when he delivers his witness: "We have all received +of His fulness."[372] + + + 3. _That the Platonists, though knowing something of the Creator + of the universe, have misunderstood the true worship of God, by + giving divine honour to angels, good or bad._ + +This being so, if the Platonists, or those who think with them, +knowing God, glorified Him as God and gave thanks, if they did +not become vain in their own thoughts, if they did not originate +or yield to the popular errors, they would certainly acknowledge +that neither could the blessed immortals retain, nor we miserable +mortals reach, a happy condition without worshipping the one God +of gods, who is both theirs and ours. To Him we owe the service +which is called in Greek λατρεία, whether we render it outwardly or +inwardly; for we are all His temple, each of us severally and all +of us together, because He condescends to inhabit each individually +and the whole harmonious body, being no greater in all than in +each, since He is neither expanded nor divided. Our heart when it +rises to Him is His altar; the priest who intercedes for us is His +Only-begotten; we sacrifice to Him bleeding victims when we contend +for His truth even unto blood; to Him we offer the sweetest incense +when we come before Him burning with holy and pious love; to Him +we devote and surrender ourselves and His gifts in us; to Him, by +solemn feasts and on appointed days, we consecrate the memory of +His benefits, lest through the lapse of time ungrateful oblivion +should steal upon us; to Him we offer on the altar of our heart the +sacrifice of humility and praise, kindled by the fire of burning +love. It is that we may see Him, so far as He can be seen; it is +that we may cleave to Him, that we are cleansed from all stain of +sins and evil passions, and are consecrated in His name. For He is +the fountain of our happiness, He the end of all our desires. Being +attached to Him, or rather let me say, re-attached,--for we had +detached ourselves and lost hold of Him,--being, I say, re-attached +to Him,[373] we tend towards Him by love, that we may rest in Him, +and find our blessedness by attaining that end. For our good, about +which philosophers have so keenly contended, is nothing else than to +be united to God. It is, if I may say so, by spiritually embracing +Him that the intellectual soul is filled and impregnated with true +virtues. We are enjoined to love this good with all our heart, +with all our soul, with all our strength. To this good we ought to +be led by those who love us, and to lead those we love. Thus are +fulfilled those two commandments on which hang all the law and the +prophets: "Thou shalt love the Lord thy God with all thy heart, and +with all thy mind, and with all thy soul;" and "Thou shalt love thy +neighbour as thyself."[374] For, that man might be intelligent in +his self-love, there was appointed for him an end to which he might +refer all his actions, that he might be blessed. For he who loves +himself wishes nothing else than this. And the end set before him is +"to draw near to God."[375] And so, when one who has this intelligent +self-love is commanded to love his neighbour as himself, what else +is enjoined than that he shall do all in his power to commend to him +the love of God? This is the worship of God, this is true religion, +this right piety, this the service due to God only. If any immortal +power, then, no matter with what virtue endowed, loves us as himself, +he must desire that we find our happiness by submitting ourselves to +Him, in submission to whom he himself finds happiness. If he does not +worship God, he is wretched, because deprived of God; if he worships +God, he cannot wish to be worshipped in God's stead. On the contrary, +these higher powers acquiesce heartily in the divine sentence in +which it is written, "He that sacrificeth unto any god, save unto the +Lord only, he shall be utterly destroyed."[376] + + + 4. _That sacrifice is due to the true God only._ + +But, putting aside for the present the other religious services +with which God is worshipped, certainly no man would dare to say +that sacrifice is due to any but God. Many parts, indeed, of divine +worship are unduly used in showing honour to men, whether through an +excessive humility or pernicious flattery; yet, while this is done, +those persons who are thus worshipped and venerated, or even adored, +are reckoned no more than human; and who ever thought of sacrificing +save to one whom he knew, supposed, or feigned to be a god? And how +ancient a part of God's worship sacrifice is, those two brothers, +Cain and Abel, sufficiently show, of whom God rejected the elder's +sacrifice, and looked favourably on the younger's. + + + 5. _Of the sacrifices which God does not require, but wished to + be observed for the exhibition of those things which He does + require._ + +And who is so foolish as to suppose that the things offered to God +are needed by Him for some uses of His own? Divine Scripture in many +places explodes this idea. Not to be wearisome, suffice it to quote +this brief saying from a psalm: "I have said to the Lord, Thou art my +God: for Thou needest not my goodness."[377] We must believe, then, +that God has no need, not only of cattle, or any other earthly and +material thing, but even of man's righteousness, and that whatever +right worship is paid to God profits not Him, but man. For no man +would say he did a benefit to a fountain by drinking, or to the +light by seeing. And the fact that the ancient church offered animal +sacrifices, which the people of God now-a-days reads of without +imitating, proves nothing else than this, that those sacrifices +signified the things which we do for the purpose of drawing near +to God, and inducing our neighbour to do the same. A sacrifice, +therefore, is the visible sacrament or sacred sign of an invisible +sacrifice. Hence that penitent in the psalm, or it may be the +Psalmist himself, entreating God to be merciful to his sins, says, +"If Thou desiredst sacrifice, I would give it: Thou delightest not +in whole burnt-offerings. The sacrifice of God is a broken heart: a +heart contrite and humble God will not despise."[378] Observe how, in +the very words in which he is expressing God's refusal of sacrifice, +he shows that God requires sacrifice. He does not desire the +sacrifice of a slaughtered beast, but He desires the sacrifice of a +contrite heart. Thus, that sacrifice which he says God does not wish, +is the symbol of the sacrifice which God does wish. God does not wish +sacrifices in the sense in which foolish people think He wishes them, +viz. to gratify His own pleasure. For if He had not wished that the +sacrifices He requires, as, _e.g._, a heart contrite and humbled by +penitent sorrow, should be symbolized by those sacrifices which He +was thought to desire because pleasant to Himself, the old law would +never have enjoined their presentation; and they were destined to +be merged when the fit opportunity arrived, in order that men might +not suppose that the sacrifices themselves, rather than the things +symbolized by them, were pleasing to God or acceptable in us. Hence, +in another passage from another psalm, he says, "If I were hungry, I +would not tell thee; for the world is mine and the fulness thereof. +Will I eat the flesh of bulls, or drink the blood of goats?"[379] +as if He should say, Supposing such things were necessary to me, I +would never ask thee for what I have in my own hand. Then he goes +on to mention what these signify: "Offer unto God the sacrifice of +praise, and pay thy vows unto the Most High. And call upon me in +the day of trouble: I will deliver thee, and thou shalt glorify +me."[380] So in another prophet: "Wherewith shall I come before the +Lord, and bow myself before the High God? Shall I come before Him +with burnt-offerings, with calves of a year old? Will the Lord be +pleased with thousands of rams, or with ten thousands of rivers of +oil? Shall I give my first-born for my transgression, the fruit of +my body for the sin of my soul? Hath He showed thee, O man, what is +good; and what doth the Lord require of thee, but to do justly, and +to love mercy, and to walk humbly with thy God?"[381] In the words of +this prophet, these two things are distinguished and set forth with +sufficient explicitness, that God does not require these sacrifices +for their own sakes, and that He does require the sacrifices which +they symbolize. In the epistle entitled "To the Hebrews" it is said, +"To do good and to communicate, forget not: for with such sacrifices +God is well pleased."[382] And so, when it is written, "I desire +mercy rather than sacrifice,"[383] nothing else is meant than that +one sacrifice is preferred to another; for that which in common +speech is called sacrifice is only the symbol of the true sacrifice. +Now mercy is the true sacrifice, and therefore it is said, as I have +just quoted, "with such sacrifices God is well pleased." All the +divine ordinances, therefore, which we read concerning the sacrifices +in the service of the tabernacle or the temple, we are to refer to +the love of God and our neighbour. For "on these two commandments," +as it is written, "hang all the law and the prophets."[384] + + + 6. _Of the true and perfect sacrifice._ + +Thus a true sacrifice is every work which is done that we may be +united to God in holy fellowship, and which has a reference to that +supreme good and end in which alone we can be truly blessed.[385] +And therefore even the mercy we show to men, if it is not shown for +God's sake, is not a sacrifice. For, though made or offered by man, +sacrifice is a divine thing, as those who called it _sacrifice_[386] +meant to indicate. Thus man himself, consecrated in the name of God, +and vowed to God, is a sacrifice in so far as he dies to the world +that he may live to God. For this is a part of that mercy which each +man shows to himself; as it is written, "Have mercy on thy soul by +pleasing God."[387] Our body, too, is a sacrifice when we chasten +it by temperance, if we do so as we ought, for God's sake, that we +may not yield our members instruments of unrighteousness unto sin, +but instruments of righteousness unto God.[388] Exhorting to this +sacrifice, the apostle says, "I beseech you, therefore, brethren, by +the mercy of God, that ye present your bodies a living sacrifice, +holy, acceptable to God, which is your reasonable service."[389] If, +then, the body, which, being inferior, the soul uses as a servant or +instrument, is a sacrifice when it is used rightly, and with reference +to God, how much more does the soul itself become a sacrifice when +it offers itself to God, in order that, being inflamed by the fire of +His love, it may receive of His beauty and become pleasing to Him, +losing the shape of earthly desire, and being remoulded in the image +of permanent loveliness? And this, indeed, the apostle subjoins, +saying, "And be not conformed to this world; but be ye transformed +in the renewing of your mind, that ye may prove what is that good, +and acceptable, and perfect will of God."[390] Since, therefore, true +sacrifices are works of mercy to ourselves or others, done with a +reference to God, and since works of mercy have no other object than +the relief of distress or the conferring of happiness, and since there +is no happiness apart from that good of which it is said, "It is good +for me to be very near to God,"[391] it follows that the whole redeemed +city, that is to say, the congregation or community of the saints, is +offered to God as our sacrifice through the great High Priest, who +offered Himself to God in His passion for us, that we might be members +of this glorious head, according to the form of a servant. For it was +this form He offered, in this He was offered, because it is according +to it He is Mediator, in this He is our Priest, in this the Sacrifice. +Accordingly, when the apostle had exhorted us to present our bodies +a living sacrifice, holy, acceptable to God, our reasonable service, +and not to be conformed to the world, but to be transformed in the +renewing of our mind, that we might prove what is that good, and +acceptable, and perfect will of God, that is to say, the true sacrifice +of ourselves, he says, "For I say, through the grace of God which is +given unto me, to every man that is among you, not to think of himself +more highly than he ought to think, but to think soberly, according +as God hath dealt to every man the measure of faith. For, as we have +many members in one body, and all members have not the same office, so +we, being many, are one body in Christ, and every one members one of +another, having gifts differing according to the grace that is given +to us."[392] This is the sacrifice of Christians: we, being many, are +one body in Christ. And this also is the sacrifice which the Church +continually celebrates in the sacrament of the altar, known to the +faithful, in which she teaches that she herself is offered in the +offering she makes to God. + + + 7. _Of the love of the holy angels, which prompts them to desire + that we worship the one true God, and not themselves._ + +It is very right that these blessed and immortal spirits, who +inhabit celestial dwellings, and rejoice in the communications +of their Creator's fulness, firm in His eternity, assured in His +truth, holy by His grace, since they compassionately and tenderly +regard us miserable mortals, and wish us to become immortal and +happy, do not desire us to sacrifice to themselves, but to Him whose +sacrifice they know themselves to be in common with us. For we and +they together are the one city of God, to which it is said in the +psalm, "Glorious things are spoken of thee, O city of God;"[393] the +human part sojourning here below, the angelic aiding from above. For +from that heavenly city, in which God's will is the intelligible +and unchangeable law, from that heavenly council-chamber,--for +they sit in counsel regarding us,--that holy Scripture, descended +to us by the ministry of angels, in which it is written, "He that +sacrificeth unto any god, save unto the Lord only, he shall be +utterly destroyed,"[394]--this Scripture, this law, these precepts, +have been confirmed by such miracles, that it is sufficiently evident +to whom these immortal and blessed spirits, who desire us to be like +themselves, wish us to sacrifice. + + + 8. _Of the miracles which God has condescended to adhibit, through + the ministry of angels, to His promises for the confirmation of + the faith of the godly._ + +I should seem tedious were I to recount all the ancient miracles, +which were wrought in attestation of God's promises which He made +to Abraham thousands of years ago, that in his seed all the nations +of the earth should be blessed.[395] For who can but marvel that +Abraham's barren wife should have given birth to a son at an age +when not even a prolific woman could bear children; or, again, that +when Abraham sacrificed, a flame from heaven should have run between +the divided parts;[396] or that the angels in human form, whom he +had hospitably entertained, and who had renewed God's promise of +offspring, should also have predicted the destruction of Sodom by +fire from heaven;[397] and that his nephew Lot should have been +rescued from Sodom by the angels as the fire was just descending, +while his wife, who looked back as she went, and was immediately +turned into salt, stood as a sacred beacon warning us that no one +who is being saved should long for what he is leaving? How striking +also were the wonders done by Moses to rescue God's people from the +yoke of slavery in Egypt, when the magi of the Pharaoh, that is, the +king of Egypt, who tyrannized over this people, were suffered to do +some wonderful things that they might be vanquished all the more +signally! They did these things by the magical arts and incantations +to which the evil spirits or demons are addicted; while Moses, having +as much greater power as he had right on his side, and having the +aid of angels, easily conquered them in the name of the Lord who +made heaven and earth. And, in fact, the magicians failed at the +third plague; whereas Moses, dealing out the miracles delegated to +him, brought ten plagues upon the land, so that the hard hearts +of Pharaoh and the Egyptians yielded, and the people were let go. +But, quickly repenting, and essaying to overtake the departing +Hebrews, who had crossed the sea on dry ground, they were covered +and overwhelmed in the returning waters. What shall I say of those +frequent and stupendous exhibitions of divine power, while the people +were conducted through the wilderness?--of the waters which could not +be drunk, but lost their bitterness, and quenched the thirsty, when +at God's command a piece of wood was cast into them? of the manna +that descended from heaven to appease their hunger, and which begat +worms and putrefied when any one collected more than the appointed +quantity, and yet, though double was gathered on the day before the +Sabbath (it not being lawful to gather it on that day), remained +fresh? of the birds which filled the camp, and turned appetite into +satiety when they longed for flesh, which it seemed impossible to +supply to so vast a population? of the enemies who met them, and +opposed their passage with arms, and were defeated without the loss +of a single Hebrew, when Moses prayed with his hands extended in +the form of a cross? of the seditious persons who arose among God's +people, and separated themselves from the divinely-ordered community, +and were swallowed up alive by the earth, a visible token of an +invisible punishment? of the rock struck with the rod, and pouring +out waters more than enough for all the host? of the deadly serpents' +bites, sent in just punishment of sin, but healed by looking at the +lifted brazen serpent, so that not only were the tormented people +healed, but a symbol of the crucifixion of death set before them in +this destruction of death by death? It was this serpent which was +preserved in memory of this event, and was afterwards worshipped by +the mistaken people as an idol, and was destroyed by the pious and +God-fearing king Hezekiah, much to his credit. + + + 9. _Of the illicit arts connected with demonolatry, and of which + the Platonist Porphyry adopts some, and discards others._ + +These miracles, and many others of the same nature, which it were +tedious to mention, were wrought for the purpose of commending +the worship of the one true God, and prohibiting the worship of a +multitude of false gods. Moreover, they were wrought by simple faith +and godly confidence, not by the incantations and charms composed +under the influence of a criminal tampering with the unseen world, of +an art which they call either magic, or by the more abominable title +necromancy,[398] or the more honourable designation theurgy; for they +wish to discriminate between those whom the people call magicians, +who practise necromancy, and are addicted to illicit arts and +condemned, and those others who seem to them to be worthy of praise +for their practice of theurgy,--the truth, however, being that both +classes are the slaves of the deceitful rites of the demons whom they +invoke under the names of angels. + +For even Porphyry promises some kind of purgation of the soul by the +help of theurgy, though he does so with some hesitation and shame, +and denies that this art can secure to any one a return to God; so +that you can detect his opinion vacillating between the profession +of philosophy and an art which he feels to be presumptuous and +sacrilegious. For at one time he warns us to avoid it as deceitful, +and prohibited by law, and dangerous to those who practise it; then +again, as if in deference to its advocates, he declares it useful for +cleansing one part of the soul, not, indeed, the intellectual part, +by which the truth of things intelligible, which have no sensible +images, is recognised, but the spiritual part, which takes cognizance +of the images of things material. This part, he says, is prepared and +fitted for intercourse with spirits and angels, and for the vision of +the gods, by the help of certain theurgic consecrations, or, as they +call them, mysteries. He acknowledges, however, that these theurgic +mysteries impart to the intellectual soul no such purity as fits it +to see its God, and recognise the things that truly exist. And from +this acknowledgment we may infer what kind of gods these are, and +what kind of vision of them is imparted by theurgic consecrations, +if by it one cannot see the things which truly exist. He says, +further, that the rational, or, as he prefers calling it, the +intellectual soul, can pass into the heavens without the spiritual +part being cleansed by theurgic art, and that this art cannot so +purify the spiritual part as to give it entrance to immortality +and eternity. And therefore, although he distinguishes angels from +demons, asserting that the habitation of the latter is in the air, +while the former dwell in the ether and empyrean, and although he +advises us to cultivate the friendship of some demon, who may be able +after our death to assist us, and elevate us at least a little above +the earth,--for he owns that it is by another way we must reach the +heavenly society of the angels,--he at the same time distinctly warns +us to avoid the society of demons, saying that the soul, expiating +its sin after death, execrates the worship of demons by whom it +was entangled. And of theurgy itself, though he recommends it as +reconciling angels and demons, he cannot deny that it treats with +powers which either themselves envy the soul its purity, or serve +the arts of those who do envy it. He complains of this through the +mouth of some Chaldæan or other: "A good man in Chaldæa complains," +he says, "that his most strenuous efforts to cleanse his soul were +frustrated, because another man, who had influence in these matters, +and who envied him purity, had prayed to the powers, and bound them +by his conjuring not to listen to his request. Therefore," adds +Porphyry, "what the one man bound, the other could not loose." And +from this he concludes that theurgy is a craft which accomplishes +not only good but evil among gods and men; and that the gods also +have passions, and are perturbed and agitated by the emotions which +Apuleius attributed to demons and men, but from which he preserved +the gods by that sublimity of residence, which, in common with Plato, +he accorded to them. + + + 10. _Concerning theurgy, which promises a delusive purification of + the soul by the invocation of demons._ + +But here we have another and a much more learned Platonist than +Apuleius, Porphyry, to wit, asserting that, by I know not what theurgy, +even the gods themselves are subjected to passions and perturbations; +for by adjurations they were so bound and terrified that they could not +confer purity of soul,--were so terrified by him who imposed on them a +wicked command, that they could not by the same theurgy be freed from +that terror, and fulfil the righteous behest of him who prayed to them, +or do the good he sought. Who does not see that all these things are +fictions of deceiving demons, unless he be a wretched slave of theirs, +and an alien from the grace of the true Liberator? For if the Chaldæan +had been dealing with good gods, certainly a well-disposed man, who +sought to purify his own soul, would have had more influence with them +than an evil-disposed man seeking to hinder him. Or, if the gods were +just, and considered the man unworthy of the purification he sought, at +all events they should not have been terrified by an envious person, +nor hindered, as Porphyry avows, by the fear of a stronger deity, but +should have simply denied the boon on their own free judgment. And it +is surprising that that well-disposed Chaldæan, who desired to purify +his soul by theurgical rites, found no superior deity who could either +terrify the frightened gods still more, and force them to confer the +boon, or compose their fears, and so enable them to do good without +compulsion,--even supposing that the good theurgist had no rites by +which he himself might purge away the taint of fear from the gods whom +he invoked for the purification of his own soul. And why is it that +there is a god who has power to terrify the inferior gods, and none who +has power to free them from fear? Is there found a god who listens to +the envious man, and frightens the gods from doing good? and is there +not found a god who listens to the well-disposed man, and removes the +fear of the gods that they may do him good? O excellent theurgy! O +admirable purification of the soul!--a theurgy in which the violence +of an impure envy has more influence than the entreaty of purity and +holiness. Rather let us abominate and avoid the deceit of such wicked +spirits, and listen to sound doctrine. As to those who perform these +filthy cleansings by sacrilegious rites, and see in their initiated +state (as he further tells us, though we may question this vision) +certain wonderfully lovely appearances of angels or gods, this is what +the apostle refers to when he speaks of "Satan transforming himself +into an angel of light."[399] For these are the delusive appearances +of that spirit who longs to entangle wretched souls in the deceptive +worship of many and false gods, and to turn them aside from the true +worship of the true God, by whom alone they are cleansed and healed, +and who, as was said of Proteus, "turns himself into all shapes,"[400] +equally hurtful, whether he assaults us as an enemy, or assumes the +disguise of a friend. + + + 11. _Of Porphyry's epistle to Anebo, in which he asks for + information about the differences among demons._ + +It was a better tone which Porphyry adopted in his letter to Anebo +the Egyptian, in which, assuming the character of an inquirer +consulting him, he unmasks and explodes these sacrilegious arts. In +that letter, indeed, he repudiates all demons, whom he maintains to +be so foolish as to be attracted by the sacrificial vapours, and +therefore residing not in the ether, but in the air beneath the +moon, and indeed in the moon itself. Yet he has not the boldness +to attribute to all the demons all the deceptions and malicious +and foolish practices which justly move his indignation. For, +though he acknowledges that as a race demons are foolish, he so +far accommodates himself to popular ideas as to call some of them +benignant demons. He expresses surprise that sacrifices not only +incline the gods, but also compel and force them to do what men wish; +and he is at a loss to understand how the sun and moon, and other +visible celestial bodies,--for bodies he does not doubt that they +are,--are considered gods, if the gods are distinguished from the +demons by their incorporeality; also, if they are gods, how some are +called beneficent and others hurtful, and how they, being corporeal, +are numbered with the gods, who are incorporeal. He inquires further, +and still as one in doubt, whether diviners and wonderworkers are +men of unusually powerful souls, or whether the power to do these +things is communicated by spirits from without. He inclines to the +latter opinion, on the ground that it is by the use of stones and +herbs that they lay spells on people, and open closed doors, and do +similar wonders. And on this account, he says, some suppose that +there is a race of beings whose property it is to listen to men,--a +race deceitful, full of contrivances, capable of assuming all forms, +simulating gods, demons, and dead men,--and that it is this race +which brings about all these things which have the appearance of +good or evil, but that what is really good they never help us in, +and are indeed unacquainted with, for they make wickedness easy, but +throw obstacles in the path of those who eagerly follow virtue; and +that they are filled with pride and rashness, delight in sacrificial +odours, are taken with flattery. These and the other characteristics +of this race of deceitful and malicious spirits, who come into the +souls of men and delude their senses, both in sleep and waking, he +describes not as things of which he is himself convinced, but only +with so much suspicion and doubt as to cause him to speak of them +as commonly received opinions. We should sympathize with this great +philosopher in the difficulty he experienced in acquainting himself +with and confidently assailing the whole fraternity of devils, which +any Christian old woman would unhesitatingly describe and most +unreservedly detest. Perhaps, however, he shrank from offending +Anebo, to whom he was writing, himself the most eminent patron of +these mysteries, or the others who marvelled at these magical feats +as divine works, and closely allied to the worship of the gods. + +However, he pursues this subject, and, still in the character of +an inquirer, mentions some things which no sober judgment could +attribute to any but malicious and deceitful powers. He asks why, +after the better class of spirits have been invoked, the worse +should be commanded to perform the wicked desires of men; why they +do not hear a man who has just left a woman's embrace, while they +themselves make no scruple of tempting men to incest and adultery; +why their priests are commanded to abstain from animal food for fear +of being polluted by the corporeal exhalations, while they themselves +are attracted by the fumes of sacrifices and other exhalations; +why the initiated are forbidden to touch a dead body, while their +mysteries are celebrated almost entirely by means of dead bodies; +why it is that a man addicted to any vice should utter threats, not +to a demon or to the soul of a dead man, but to the sun and moon, +or some of the heavenly bodies, which he intimidates by imaginary +terrors, that he may wring from them a real boon,--for he threatens +that he will demolish the sky, and such like impossibilities,--that +those gods, being alarmed, like silly children, with imaginary and +absurd threats, may do what they are ordered. Porphyry further +relates that a man Chæremon, profoundly versed in these sacred or +rather sacrilegious mysteries, had written that the famous Egyptian +mysteries of Isis and her husband Osiris had very great influence +with the gods to compel them to do what they were ordered, when he +who used the spells threatened to divulge or do away with these +mysteries, and cried with a threatening voice that he would scatter +the members of Osiris if they neglected his orders. Not without +reason is Porphyry surprised that a man should utter such wild and +empty threats against the gods,--not against gods of no account, +but against the heavenly gods, and those that shine with sidereal +light,--and that these threats should be effectual to constrain them +with resistless power, and alarm them so that they fulfil his wishes. +Not without reason does he, in the character of an inquirer into the +reasons of these surprising things, give it to be understood that +they are done by that race of spirits which he previously described +as if quoting other people's opinions,--spirits who deceive not, as +he said, by nature, but by their own corruption, and who simulate +gods and dead men, but not, as he said, demons, for demons they +really are. As to his idea that by means of herbs, and stones, +and animals, and certain incantations and noises, and drawings, +sometimes fanciful, and sometimes copied from the motions of the +heavenly bodies, men create upon earth powers capable of bringing +about various results, all that is only the mystification which these +demons practise on those who are subject to them, for the sake of +furnishing themselves with merriment at the expense of their dupes. +Either, then, Porphyry was sincere in his doubts and inquiries, and +mentioned these things to demonstrate and put beyond question that +they were the work, not of powers which aid us in obtaining life, +but of deceitful demons; or, to take a more favourable view of the +philosopher, he adopted this method with the Egyptian who was wedded +to these errors, and was proud of them, that he might not offend him +by assuming the attitude of a teacher, nor discompose his mind by the +altercation of a professed assailant, but, by assuming the character +of an inquirer, and the humble attitude of one who was anxious to +learn, might turn his attention to these matters, and show how worthy +they are to be despised and relinquished. Towards the conclusion +of his letter, he requests Anebo to inform him what the Egyptian +wisdom indicates as the way to blessedness. But as to those who hold +intercourse with the gods, and pester them only for the sake of +finding a runaway slave, or acquiring property, or making a bargain +of a marriage, or such things, he declares that their pretensions to +wisdom are vain. He adds that these same gods, even granting that +on other points their utterances were true, were yet so ill-advised +and unsatisfactory in their disclosures about blessedness, that they +cannot be either gods or good demons, but are either that spirit who +is called the deceiver, or mere fictions of the imagination. + + + 12. _Of the miracles wrought by the true God through the ministry + of the holy angels._ + +Since by means of these arts wonders are done which quite surpass human +power, what choice have we but to believe that these predictions and +operations, which seem to be miraculous and divine, and which at the +same time form no part of the worship of the one God, in adherence to +whom, as the Platonists themselves abundantly testify, all blessedness +consists, are the pastime of wicked spirits, who thus seek to seduce +and hinder the truly godly? On the other hand, we cannot but believe +that all miracles, whether wrought by angels or by other means, so long +as they are so done as to commend the worship and religion of the one +God in whom alone is blessedness, are wrought by those who love us in +a true and godly sort, or through their means, God Himself working in +them. For we cannot listen to those who maintain that the invisible +God works no visible miracles; for even they believe that He made the +world, which surely they will not deny to be visible. Whatever marvel +happens in this world, it is certainly less marvellous than this whole +world itself,--I mean the sky and earth, and all that is in them,--and +these God certainly made. But, as the Creator Himself is hidden and +incomprehensible to man, so also is the manner of creation. Although, +therefore, the standing miracle of this visible world is little +thought of, because always before us, yet, when we arouse ourselves +to contemplate it, it is a greater miracle than the rarest and most +unheard-of marvels. For man himself is a greater miracle than any +miracle done through his instrumentality. Therefore God, who made the +visible heaven and earth, does not disdain to work visible miracles in +heaven or earth, that He may thereby awaken the soul which is immersed +in things visible to worship Himself, the Invisible. But the place and +time of these miracles are dependent on His unchangeable will, in which +things future are ordered as if already they were accomplished. For He +moves things temporal without Himself moving in time. He does not in +one way know things that are to be, and, in another, things that have +been; neither does He listen to those who pray otherwise than as He +sees those that will pray. For, even when His angels hear us, it is +He Himself who hears us in them, as in His true temple not made with +hands, as in those men who are His saints; and His answers, though +accomplished in time, have been arranged by His eternal appointment. + + + 13. _Of the invisible God, who has often made Himself visible, + not as He really is, but as the beholders could bear the sight._ + +Neither need we be surprised that God, invisible as He is, should +often have appeared visibly to the patriarchs. For as the sound which +communicates the thought conceived in the silence of the mind is +not the thought itself, so the form by which God, invisible in His +own nature, became visible, was not God Himself. Nevertheless it is +He Himself who was seen under that form, as that thought itself is +heard in the sound of the voice; and the patriarchs recognised that, +though the bodily form was not God, they saw the invisible God. For, +though Moses conversed with God, yet he said, 'If I have found grace +in Thy sight, show me Thyself, that I may see and know Thee.'[401] +And as it was fit that the law, which was given, not to one man or a +few enlightened men, but to the whole of a populous nation, should be +accompanied by awe-inspiring signs, great marvels were wrought, by +the ministry of angels, before the people on the mount where the law +was being given to them through one man, while the multitude beheld +the awful appearances. For the people of Israel believed Moses, not +as the Lacedæmonians believed their Lycurgus, because he had received +from Jupiter or Apollo the laws he gave them. For when the law which +enjoined the worship of one God was given to the people, marvellous +signs and earthquakes, such as the divine wisdom judged sufficient, +were brought about in the sight of all, that they might know that it +was the Creator who could thus use creation to promulgate His law. + + + 14. _That the one God is to be worshipped not only for the sake + of eternal blessings, but also in connection with temporal + prosperity, because all things are regulated by His providence._ + +The education of the human race, represented by the people of God, +has advanced, like that of an individual, through certain epochs, or, +as it were, ages, so that it might gradually rise from earthly to +heavenly things, and from the visible to the invisible. This object +was kept so clearly in view, that, even in the period when temporal +rewards were promised, the one God was presented as the object of +worship, that men might not acknowledge any other than the true +Creator and Lord of the spirit, even in connection with the earthly +blessings of this transitory life. For he who denies that all things, +which either angels or men can give us, are in the hand of the one +Almighty, is a madman. The Platonist Plotinus discourses concerning +providence, and, from the beauty of flowers and foliage, proves +that from the supreme God, whose beauty is unseen and ineffable, +providence reaches down even to these earthly things here below; +and he argues that all these frail and perishing things could not +have so exquisite and elaborate a beauty, were they not fashioned +by Him whose unseen and unchangeable beauty continually pervades +all things.[402] This is proved also by the Lord Jesus, where He +says, 'Consider the lilies, how they grow; they toil not, neither +do they spin. And yet I say unto you that Solomon in all his glory +was not arrayed like one of these. But if God so clothe the grass +of the field, which to-day is and to-morrow is cast into the oven, +how much more shall He clothe you, O ye of little faith!'[403] It +was best, therefore, that the soul of man, which was still weakly +desiring earthly things, should be accustomed to seek from God alone +even these petty temporal boons, and the earthly necessaries of this +transitory life, which are contemptible in comparison with eternal +blessings, in order that the desire even of these things might not +draw it aside from the worship of Him, to whom we come by despising +and forsaking such things. + + + 15. _Of the ministry of the holy angels, by which they fulfil + the providence of God._ + +And so it has pleased Divine Providence, as I have said, and as we +read in the Acts of the Apostles,[404] that the law enjoining the +worship of one God should be given by the disposition of angels. But +among them the person of God Himself visibly appeared, not, indeed, +in His proper substance, which ever remains invisible to mortal eyes, +but by the infallible signs furnished by creation in obedience to its +Creator. He made use, too, of the words of human speech, uttering +them syllable by syllable successively, though in His own nature He +speaks not in a bodily but in a spiritual way; not to sense, but +to the mind; not in words that occupy time, but, if I may so say, +eternally, neither beginning to speak nor coming to an end. And what +He says is accurately heard, not by the bodily but by the mental +ear of His ministers and messengers, who are immortally blessed in +the enjoyment of His unchangeable truth; and the directions which +they in some ineffable way receive, they execute without delay or +difficulty in the sensible and visible world. And this law was given +in conformity with the age of the world, and contained at the first +earthly promises, as I have said, which, however, symbolized eternal +ones; and these eternal blessings few understood, though many took a +part in the celebration of their visible signs. Nevertheless, with +one consent both the words and the visible rites of that law enjoin +the worship of one God,--not one of a crowd of gods, but Him who made +heaven and earth, and every soul and every spirit which is other than +Himself. He created; all else was created; and, both for being and +well-being, all things need Him who created them. + + + 16. _Whether those angels who demand that we pay them divine + honour, or those who teach us to render holy service, not to + themselves, but to God, are to be trusted about the way to life + eternal._ + +What angels, then, are we to believe in this matter of blessed and +eternal life?--those who wish to be worshipped with religious rites +and observances, and require that men sacrifice to them; or those who +say that all this worship is due to one God, the Creator, and teach us +to render it with true piety to Him, by the vision of whom they are +themselves already blessed, and in whom they promise that we shall be +so? For that vision of God is the beauty of a vision so great, and is +so infinitely desirable, that Plotinus does not hesitate to say that +he who enjoys all other blessings in abundance, and has not this, is +supremely miserable.[405] Since, therefore, miracles are wrought by +some angels to induce us to worship this God, by others, to induce +us to worship themselves; and since the former forbid us to worship +these, while the latter dare not forbid us to worship God, which +are we to listen to? Let the Platonists reply, or any philosophers, +or the theurgists, or rather, _periurgists_,[406]--for this name is +good enough for those who practise such arts. In short, let all men +answer,--if, at least, there survives in them any spark of that natural +perception which, as rational beings, they possess when created,--let +them, I say, tell us whether we should sacrifice to the gods or +angels who order us to sacrifice to them, or to that One to whom we +are ordered to sacrifice by those who forbid us to worship either +themselves or these others. If neither the one party nor the other had +wrought miracles, but had merely uttered commands, the one to sacrifice +to themselves, the other forbidding that, and ordering us to sacrifice +to God, a godly mind would have been at no loss to discern which +command proceeded from proud arrogance, and which from true religion. +I will say more. If miracles had been wrought only by those who demand +sacrifice for themselves, while those who forbade this, and enjoined +sacrificing to the one God only, thought fit entirely to forego the use +of visible miracles, the authority of the latter was to be preferred +by all who would use, not their eyes only, but their reason. But since +God, for the sake of commending to us the oracles of His truth, has, by +means of these immortal messengers, who proclaim His majesty and not +their own pride, wrought miracles of surpassing grandeur, certainty, +and distinctness, in order that the weak among the godly might not be +drawn away to false religion by those who require us to sacrifice to +them and endeavour to convince us by stupendous appeals to our senses, +who is so utterly unreasonable as not to choose and follow the truth, +when he finds that it is heralded by even more striking evidences than +falsehood? + +As for those miracles which history ascribes to the gods of the +heathen,--I do not refer to those prodigies which at intervals +happen from some unknown physical causes, and which are arranged and +appointed by Divine Providence, such as monstrous births, and unusual +meteorological phenomena, whether startling only, or also injurious, +and which are said to be brought about and removed by communication +with demons, and by their most deceitful craft,--but I refer to these +prodigies which manifestly enough are wrought by their power and +force, as, that the household gods which Æneas carried from Troy in +his flight moved from place to place; that Tarquin cut a whetstone +with a razor; that the Epidaurian serpent attached himself as a +companion to Æsculapius on his voyage to Rome; that the ship in which +the image of the Phrygian mother stood, and which could not be moved +by a host of men and oxen, was moved by one weak woman, who attached +her girdle to the vessel and drew it, as proof of her chastity; that +a vestal, whose virginity was questioned, removed the suspicion by +carrying from the Tiber a sieve full of water without any of it +dropping: these, then, and the like, are by no means to be compared +for greatness and virtue to those which, we read, were wrought among +God's people. How much less can we compare those marvels, which even +the laws of heathen nations prohibit and punish,--I mean the magical +and theurgic marvels, of which the great part are merely illusions +practised upon the senses, as the drawing down of the moon, "that," +as Lucan says, "it may shed a stronger influence on the plants?"[407] +And if some of these do seem to equal those which are wrought by the +godly, the end for which they are wrought distinguishes the two, +and shows that ours are incomparably the more excellent. For those +miracles commend the worship of a plurality of gods, who deserve +worship the less the more they demand it; but these of ours commend +the worship of the one God, who, both by the testimony of His own +Scriptures, and by the eventual abolition of sacrifices, proves +that He needs no such offerings. If, therefore, any angels demand +sacrifice for themselves, we must prefer those who demand it, not +for themselves, but for God, the Creator of all, whom they serve. +For thus they prove how sincerely they love us, since they wish +by sacrifice to subject us, not to themselves, but to Him by the +contemplation of whom they themselves are blessed, and to bring us to +Him from whom they themselves have never strayed. If, on the other +hand, any angels wish us to sacrifice, not to one, but to many, not, +indeed, to themselves, but to the gods whose angels they are, we must +in this case also prefer those who are the angels of the one God of +gods, and who so bid us to worship Him as to preclude our worshipping +any other. But, further, if it be the case, as their pride and +deceitfulness rather indicate, that they are neither good angels nor +the angels of good gods, but wicked demons, who wish sacrifice to be +paid, not to the one only and supreme God, but to themselves, what +better protection against them can we choose than that of the one God +whom the good angels serve, the angels who bid us sacrifice, not to +themselves, but to Him whose sacrifice we ourselves ought to be? + + + 17. _Concerning the ark of the covenant, and the miraculous signs + whereby God authenticated the law and the promise._ + +On this account it was that the law of God, given by the disposition +of angels, and which commanded that the one God of gods alone receive +sacred worship, to the exclusion of all others, was deposited in the +ark, called the ark of the testimony. By this name it is sufficiently +indicated, not that God, who was worshipped by all those rites, was +shut up and enclosed in that place, though His responses emanated from +it along with signs appreciable by the senses, but that His will was +declared from that throne. The law itself, too, was engraven on tables +of stone, and, as I have said, deposited in the ark, which the priests +carried with due reverence during the sojourn in the wilderness, along +with the tabernacle, which was in like manner called the tabernacle +of the testimony; and there was then an accompanying sign, which +appeared as a cloud by day and as a fire by night; when the cloud +moved, the camp was shifted, and where it stood the camp was pitched. +Besides these signs, and the voices which proceeded from the place +where the ark was, there were other miraculous testimonies to the law. +For when the ark was carried across Jordan, on the entrance to the +land of promise, the upper part of the river stopped in its course, +and the lower part flowed on, so as to present both to the ark and +the people dry ground to pass over. Then, when it was carried seven +times round the first hostile and polytheistic city they came to, its +walls suddenly fell down, though assaulted by no hand, struck by no +battering-ram. Afterwards, too, when they were now resident in the land +of promise, and the ark had, in punishment of their sin, been taken +by their enemies, its captors triumphantly placed it in the temple of +their favourite god, and left it shut up there, but, on opening the +temple next day, they found the image they used to pray to fallen to +the ground and shamefully shattered. Then, being themselves alarmed by +portents, and still more shamefully punished, they restored the ark +of the testimony to the people from whom they had taken it. And what +was the manner of its restoration? They placed it on a wagon, and +yoked to it cows from which they had taken the calves, and let them +choose their own course, expecting that in this way the divine will +would be indicated; and the cows, without any man driving or directing +them, steadily pursued the way to the Hebrews, without regarding the +lowing of their calves, and thus restored the ark to its worshippers. +To God these and such like wonders are small, but they are mighty to +terrify and give wholesome instruction to men. For if philosophers, and +especially the Platonists, are with justice esteemed wiser than other +men, as I have just been mentioning, because they taught that even +these earthly and insignificant things are ruled by Divine Providence, +inferring this from the numberless beauties which are observable not +only in the bodies of animals, but even in plants and grasses, how much +more plainly do these things attest the presence of divinity which +happen at the time predicted, and in which that religion is commended +which forbids the offering of sacrifice to any celestial, terrestrial, +or infernal being, and commands it to be offered to God only, who alone +blesses us by His love for us, and by our love to Him, and who, by +arranging the appointed times of those sacrifices, and by predicting +that they were to pass into a better sacrifice by a better Priest, +testified that He has no appetite for these sacrifices, but through +them indicated others of more substantial blessing,--and all this not +that He Himself may be glorified by these honours, but that we may be +stirred up to worship and cleave to Him, being inflamed by His love, +which is our advantage rather than His? + + + 18. _Against those who deny that the books of the Church are to + be believed about the miracles whereby the people of God were + educated._ + +Will some one say that these miracles are false, that they never +happened, and that the records of them are lies? Whoever says so, and +asserts that in such matters no records whatever can be credited, +may also say that there are no gods who care for human affairs. For +they have induced men to worship them only by means of miraculous +works, which the heathen histories testify, and by which the gods +have made a display of their own power rather than done any real +service. This is the reason why we have not undertaken in this +work, of which we are now writing the tenth book, to refute those +who either deny that there is any divine power, or contend that it +does not interfere with human affairs, but those who prefer their +own god to our God, the Founder of the holy and most glorious city, +not knowing that He is also the invisible and unchangeable Founder +of this visible and changing world, and the truest bestower of the +blessed life which resides not in things created, but in Himself. +For thus speaks His most trustworthy prophet: "It is good for me to +be united to God."[408] Among philosophers it is a question, what +is that end and good to the attainment of which all our duties are +to have a relation? The Psalmist did not say, It is good for me to +have great wealth, or to wear imperial insignia, purple, sceptre, +and diadem; or, as some even of the philosophers have not blushed to +say, It is good for me to enjoy sensual pleasure; or, as the better +men among them seemed to say, My good is my spiritual strength; but, +"It is good for me to be united to God." This he had learned from +Him whom the holy angels, with the accompanying witness of miracles, +presented as the sole object of worship. And hence he himself became +the sacrifice of God, whose spiritual love inflamed him, and into +whose ineffable and incorporeal embrace he yearned to cast himself. +Moreover, if the worshippers of many gods (whatever kind of gods they +fancy their own to be) believe that the miracles recorded in their +civil histories, or in the books of magic, or of the more respectable +theurgy, were wrought by these gods, what reason have they for +refusing to believe the miracles recorded in those writings, to which +we owe a credence as much greater as He is greater to whom alone +these writings teach us to sacrifice? + + + 19. _On the reasonableness of offering, as the true religion + teaches, a visible sacrifice to the one true and invisible God._ + +As to those who think that these visible sacrifices are suitably +offered to other gods, but that invisible sacrifices, the graces of +purity of mind and holiness of will, should be offered, as greater +and better, to the invisible God, Himself greater and better than +all others, they must be oblivious that these visible sacrifices +are signs of the invisible, as the words we utter are the signs of +things. And therefore, as in prayer or praise we direct intelligible +words to Him to whom in our heart we offer the very feelings we +are expressing, so we are to understand that in sacrifice we offer +visible sacrifice only to Him to whom in our heart we ought to +present ourselves an invisible sacrifice. It is then that the angels, +and all those superior powers who are mighty by their goodness and +piety, regard us with pleasure, and rejoice with us and assist us to +the utmost of their power. But if we offer such worship to them, they +decline it; and when on any mission to men they become visible to the +senses, they positively forbid it. Examples of this occur in holy +writ. Some fancied they should, by adoration or sacrifice, pay the +same honour to angels as is due to God, and were prevented from doing +so by the angels themselves, and ordered to render it to Him to whom +alone they know it to be due. And the holy angels have in this been +imitated by holy men of God. For Paul and Barnabas, when they had +wrought a miracle of healing in Lycaonia, were thought to be gods, +and the Lycaonians desired to sacrifice to them, and they humbly and +piously declined this honour, and announced to them the God in whom +they should believe. And those deceitful and proud spirits, who exact +worship, do so simply because they know it to be due to the true God. +For that which they take pleasure in is not, as Porphyry says and +some fancy, the smell of the victims, but divine honours. They have, +in fact, plenty odours on all hands, and if they wished more, they +could provide them for themselves. But the spirits who arrogate to +themselves divinity are delighted not with the smoke of carcases, but +with the suppliant spirit which they deceive and hold in subjection, +and hinder from drawing near to God, preventing him from offering +himself in sacrifice to God by inducing him to sacrifice to others. + + + 20. _Of the supreme and true sacrifice which was effected by the + Mediator between God and men._ + +And hence that true Mediator, in so far as, by assuming the form of a +servant, He became the Mediator between God and men, the man Christ +Jesus, though in the form of God He received sacrifice together with +the Father, with whom He is one God, yet in the form of a servant He +chose rather to be than to receive a sacrifice, that not even by +this instance any one might have occasion to suppose that sacrifice +should be rendered to any creature. Thus He is both the Priest who +offers and the Sacrifice offered. And He designed that there should +be a daily sign of this in the sacrifice of the Church, which, +being His body, learns to offer herself through Him. Of this true +Sacrifice the ancient sacrifices of the saints were the various and +numerous signs; and it was thus variously figured, just as one thing +is signified by a variety of words, that there may be less weariness +when we speak of it much. To this supreme and true sacrifice all +false sacrifices have given place. + + + 21. _Of the power delegated to demons for the trial and + glorification of the saints, who conquer not by propitiating + the spirits of the air, but by abiding in God._ + +The power delegated to the demons at certain appointed and +well-adjusted seasons, that they may give expression to their +hostility to the city of God by stirring up against it the men +who are under their influence, and may not only receive sacrifice +from those who willingly offer it, but may also extort it from the +unwilling by violent persecution;--this power is found to be not +merely harmless, but even useful to the Church, completing as it +does the number of martyrs, whom the city of God esteems as all the +more illustrious and honoured citizens, because they have striven +even to blood against the sin of impiety. If the ordinary language +of the Church allowed it, we might more elegantly call these men our +heroes. For this name is said to be derived from Juno, who in Greek +is called Hêrê, and hence, according to the Greek myths, one of her +sons was called Heros. And these fables mystically signified that +Juno was mistress of the air, which they suppose to be inhabited +by the demons and the heroes, understanding by heroes the souls of +the well-deserving dead. But for a quite opposite reason would we +call our martyrs heroes,--supposing, as I said, that the usage of +ecclesiastical language would admit of it,--not because they lived +along with the demons in the air, but because they conquered these +demons or powers of the air, and among them Juno herself, be she +what she may, not unsuitably represented, as she commonly is by the +poets, as hostile to virtue, and jealous of men of mark aspiring to +the heavens. Virgil, however, unhappily gives way, and yields to +her; for, though he represents her as saying, "I am conquered by +Æneas,"[409] Helenus gives Æneas himself this religious advice: + + "Pay vows to Juno: overbear + Her queenly soul with gift and prayer."[410] + +In conformity with this opinion, Porphyry--expressing, however, not +so much his own views as other people's--says that a good god or +genius cannot come to a man unless the evil genius has been first of +all propitiated, implying that the evil deities had greater power +than the good; for, until they have been appeased and give place, the +good can give no assistance; and if the evil deities oppose, the good +can give no help; whereas the evil can do injury without the good +being able to prevent them. This is not the way of the true and truly +holy religion; not thus do our martyrs conquer Juno, that is to say, +the powers of the air, who envy the virtues of the pious. Our heroes, +if we could so call them, overcome Hêrê, not by suppliant gifts, but +by divine virtues. As Scipio, who conquered Africa by his valour, is +more suitably styled Africanus than if he had appeased his enemies by +gifts, and so won their mercy. + + + 22. _Whence the saints derive power against demons and true + purification of heart._ + +It is by true piety that men of God cast out the hostile power +of the air which opposes godliness; it is by exorcising it, not +by propitiating it; and they overcome all the temptations of the +adversary by praying, not to him, but to their own God against him. +For the devil cannot conquer or subdue any but those who are in +league with sin; and therefore he is conquered in the name of Him +who assumed humanity, and that without sin, that Himself being both +Priest and Sacrifice, He might bring about the remission of sins, +that is to say, might bring it about through the Mediator between God +and men, the man Christ Jesus, by whom we are reconciled to God, the +cleansing from sin being accomplished. For men are separated from +God only by sins, from which we are in this life cleansed not by our +own virtue, but by the divine compassion; through His indulgence, +not through our own power. For, whatever virtue we call our own is +itself bestowed upon us by His goodness. And we might attribute too +much to ourselves while in the flesh, unless we lived in the receipt +of pardon until we laid it down. This is the reason why there has +been vouchsafed to us, through the Mediator, this grace, that we who +are polluted by sinful flesh should be cleansed by the likeness of +sinful flesh. By this grace of God, wherein He has shown His great +compassion toward us, we are both governed by faith in this life, +and, after this life, are led onwards to the fullest perfection by +the vision of immutable truth. + + + 23. _Of the principles which, according to the Platonists, + regulate the purification of the soul._ + +Even Porphyry asserts that it was revealed by divine oracles that +we are not purified by any sacrifices[411] to sun or moon, meaning +it to be inferred that we are not purified by sacrificing to any +gods. For what mysteries can purify, if those of the sun and moon, +which are esteemed the chief of the celestial gods, do not purify? +He says, too, in the same place, that "principles" can purify, +lest it should be supposed, from his saying that sacrificing to +the sun and moon cannot purify, that sacrificing to some other of +the host of gods might do so. And what he as a Platonist means by +"principles," we know.[412] For he speaks of God the Father and God +the Son, whom he calls (writing in Greek) the intellect or mind of +the Father;[413] but of the Holy Spirit he says either nothing, or +nothing plainly, for I do not understand what other he speaks of as +holding the middle place between these two. For if, like Plotinus +in his discussion regarding the three principal substances,[414] he +wished us to understand by this third the soul of nature, he would +certainly not have given it the middle place between these two, that +is, between the Father and the Son. For Plotinus places the soul of +nature after the intellect of the Father, while Porphyry, making it +the mean, does not place it after, but between the others. No doubt +he spoke according to his light, or as he thought expedient; but we +assert that the Holy Spirit is the Spirit not of the Father only, nor +of the Son only, but of both. For philosophers speak as they have a +mind to, and in the most difficult matters do not scruple to offend +religious ears; but we are bound to speak according to a certain +rule, lest freedom of speech beget impiety of opinion about the +matters themselves of which we speak. + + + 24. _Of the one only true principle which alone purifies and renews + human nature._ + +Accordingly, when we speak of God, we do not affirm two or three +principles, no more than we are at liberty to affirm two or three gods; +although, speaking of each, of the Father, or of the Son, or of the +Holy Ghost, we confess that each is God: and yet we do not say, as the +Sabellian heretics say, that the Father is the same as the Son, and the +Holy Spirit the same as the Father and the Son; but we say that the +Father is the Father of the Son, and the Son the Son of the Father, +and that the Holy Spirit of the Father and the Son is neither the +Father nor the Son. It was therefore truly said that man is cleansed +only by a Principle, although the Platonists erred in speaking in the +plural of _principles_. But Porphyry, being under the dominion of +these envious powers, whose influence he was at once ashamed of and +afraid to throw off, refused to recognise that Christ is the Principle +by whose incarnation we are purified. Indeed he despised Him, because +of the flesh itself which He assumed, that He might offer a sacrifice +for our purification,--a great mystery, unintelligible to Porphyry's +pride, which that true and benignant Redeemer brought low by His +humility, manifesting Himself to mortals by the mortality which He +assumed, and which the malignant and deceitful mediators are proud of +wanting, promising, as the boon of immortals, a deceptive assistance +to wretched men. Thus the good and true Mediator showed that it is sin +which is evil, and not the substance or nature of flesh; for this, +together with the human soul, could without sin be both assumed and +retained, and laid down in death, and changed to something better by +resurrection. He showed also that death itself, although the punishment +of sin, was submitted to by Him for our sakes without sin, and must +not be evaded by sin on our part, but rather, if opportunity serves, +be borne for righteousness' sake. For he was able to expiate sins by +dying, because He both died, and not for sin of His own. But He has +not been recognised by Porphyry as the Principle, otherwise he would +have recognised Him as the Purifier. The Principle is neither the flesh +nor the human soul in Christ, but the Word by which all things were +made. The flesh, therefore, does not by its own virtue purify, but +by virtue of the Word by which it was assumed, when "the Word became +flesh and dwelt among us."[415] For, speaking mystically of eating His +flesh, when those who did not understand Him were offended and went +away, saying, "This is an hard saying, who can hear it?" He answered +to the rest who remained, "It is the Spirit that quickeneth; the flesh +profiteth nothing."[416] The Principle, therefore, having assumed +a human soul and flesh, cleanses the soul and flesh of believers. +Therefore, when the Jews asked Him who He was, He answered that He +was the _Principle_.[417] And this we carnal and feeble men, liable +to sin, and involved in the darkness of ignorance, could not possibly +understand, unless we were cleansed and healed by Him, both by means +of what we were, and of what we were not. For we were men, but we were +not righteous; whereas in His incarnation there was a human nature, but +it was righteous, and not sinful. This is the mediation whereby a hand +is stretched to the lapsed and fallen; this is the seed "ordained by +angels," by whose ministry the law also was given enjoining the worship +of one God, and promising that this Mediator should come. + + + 25. _That all the saints, both under the law and before it, were + justified by faith in the mystery of Christ's incarnation._ + +It was by faith in this mystery, and godliness of life, that +purification was attainable even by the saints of old, whether before +the law was given to the Hebrews (for God and the angels were even then +present as instructors), or in the periods under the law, although the +promises of spiritual things, being presented in figure, seemed to +be carnal, and hence the name of Old Testament. For it was then the +prophets lived, by whom, as by angels, the same promise was announced; +and among them was he whose grand and divine sentiment regarding the +end and supreme good of man I have just now quoted, "It is good for +me to cleave to God."[418] In this psalm the distinction between the +Old and New Testaments is distinctly announced. For the Psalmist says, +that when he saw that the carnal and earthly promises were abundantly +enjoyed by the ungodly, his feet were almost gone, his steps had +well-nigh slipped; and that it seemed to him as if he had served God +in vain, when he saw that those who despised God increased in that +prosperity which he looked for at God's hand. He says, too, that, in +investigating this matter with the desire of understanding why it was +so, he had laboured in vain, until he went into the sanctuary of God, +and understood the end of those whom he had erroneously considered +happy. Then he understood that they were cast down by that very thing, +as he says, which they had made their boast, and that they had been +consumed and perished for their iniquities; and that that whole fabric +of temporal prosperity had become as a dream when one awaketh, and +suddenly finds himself destitute of all the joys he had imaged in +sleep. And, as in this earth or earthy city they seemed to themselves +to be great, he says, "O Lord, in Thy city Thou wilt reduce their image +to nothing." He also shows how beneficial it had been for him to seek +even earthly blessings only from the one true God, in whose power are +all things, for he says, "As a beast was I before Thee, and I am always +with Thee." "As a beast," he says, meaning that he was stupid. For I +ought to have sought from Thee such things as the ungodly could not +enjoy as well as I, and not those things which I saw them enjoying in +abundance, and hence concluded I was serving Thee in vain, because +they who declined to serve Thee had what I had not. Nevertheless, "I +am always with Thee," because even in my desire for such things I did +not pray to other gods. And consequently he goes on, "Thou hast holden +me by my right hand, and by Thy counsel Thou hast guided me, and with +glory hast taken me up;" as if all earthly advantages were left-hand +blessings, though, when he saw them enjoyed by the wicked, his feet +had almost gone. "For what," he says, "have I in heaven, and what have +I desired from Thee upon earth?" He blames himself, and is justly +displeased with himself; because, though he had in heaven so vast a +possession (as he afterwards understood), he yet sought from his God +on earth a transitory and fleeting happiness,--a happiness of mire, we +may say. "My heart and my flesh," he says, "fail, O God of my heart." +Happy failure, from things below to things above! And hence in another +psalm he says, "My soul longeth, yea, even faileth, for the courts +of the Lord."[419] Yet, though he had said of both his heart and his +flesh that they were failing, he did not say, O God of my heart and +my flesh, but, O God of my heart; for by the heart the flesh is made +clean. Therefore, says the Lord, "Cleanse that which is within, and the +outside shall be clean also."[420] He then says that God Himself,--not +anything received from Him, but Himself,--is his portion. "The God of +my heart, and my portion for ever." Among the various objects of human +choice, God alone satisfied him. "For, lo," he says, "they that are +far from Thee shall perish: Thou destroyest all them that go a-whoring +from Thee,"--that is, who prostitute themselves to many gods. And then +follows the verse for which all the rest of the psalm seems to prepare: +"It is good for me to cleave to God,"--not to go far off; not to go +a-whoring with a multitude of gods. And then shall this union with God +be perfected, when all that is to be redeemed in us has been redeemed. +But for the present we must, as he goes on to say, "place our hope in +God." "For that which is seen," says the apostle, "is not hope. For +what a man sees, why does he yet hope for? But if we hope for that +we see not, then do we with patience wait for it."[421] Being, then, +for the present established in this hope, let us do what the Psalmist +further indicates, and become in our measure angels or messengers of +God, declaring His will, and praising His glory and His grace. For +when he had said, "To place my hope in God," he goes on, "that I may +declare all Thy praises in the gates of the daughter of Zion." This +is the most glorious city of God; this is the city which knows and +worships one God: she is celebrated by the holy angels, who invite us +to their society, and desire us to become fellow-citizens with them in +this city; for they do not wish us to worship them as our gods, but to +join them in worshipping their God and ours; nor to sacrifice to them, +but, together with them, to become a sacrifice to God. Accordingly, +whoever will lay aside malignant obstinacy, and consider these things, +shall be assured that all these blessed and immortal spirits, who do +not envy us (for if they envied they were not blessed), but rather +love us, and desire us to be as blessed as themselves, look on us with +greater pleasure, and give us greater assistance, when we join them in +worshipping one God, Father, Son, and Holy Ghost, than if we were to +offer to themselves sacrifice and worship. + + + 26. _Of Porphyry's weakness in wavering between the confession of + the true God and the worship of demons._ + +I know not how it is so, but it seems to me that Porphyry blushed for +his friends the theurgists; for he knew all that I have adduced, but +did not frankly condemn polytheistic worship. He said, in fact, that +there are some angels who visit earth, and reveal divine truth to +theurgists, and others who publish on earth the things that belong to +the Father, His height and depth. Can we believe, then, that the angels +whose office it is to declare the will of the Father, wish us to be +subject to any but Him whose will they declare? And hence, even this +Platonist himself judiciously observes that we should rather imitate +than invoke them. We ought not, then, to fear that we may offend these +immortal and happy subjects of the one God by not sacrificing to them; +for this they know to be due only to the one true God, in allegiance +to whom they themselves find their blessedness, and therefore they +will not have it given to them, either in figure or in the reality, +which the mysteries of sacrifice symbolized. Such arrogance belongs to +proud and wretched demons, whose disposition is diametrically opposite +to the piety of those who are subject to God, and whose blessedness +consists in attachment to Him. And, that we also may attain to this +bliss, they aid us, as is fit, with sincere kindliness, and usurp over +us no dominion, but declare to us Him under whose rule we are then +fellow-subjects. Why, then, O philosopher, do you still fear to speak +freely against the powers which are inimical both to true virtue and +to the gifts of the true God? Already you have discriminated between +the angels who proclaim God's will, and those who visit theurgists, +drawn down by I know not what art. Why do you still ascribe to these +latter the honour of declaring divine truth? If they do not declare +the will of the Father, what divine revelations can they make? Are not +these the evil spirits who were bound over by the incantations of an +envious man,[422] that they should not grant purity of soul to another, +and could not, as you say, be set free from these bonds by a good man +anxious for purity, and recover power over their own actions? Do you +still doubt whether these are wicked demons; or do you, perhaps, feign +ignorance, that you may not give offence to the theurgists, who have +allured you by their secret rites, and have taught you, as a mighty +boon, these insane and pernicious devilries? Do you dare to elevate +above the air, and even to heaven, these envious powers, or pests, +let me rather call them, less worthy of the name of sovereign than of +slaves, as you yourself own; and are you not ashamed to place them even +among your sidereal gods, and so put a slight upon the stars themselves? + + + 27. _Of the impiety of Porphyry, which is worse than even the + mistake of Apuleius._ + +How much more tolerable and accordant with human feeling is the +error of your Platonist co-sectary Apuleius! for he attributed the +diseases and storms of human passions only to the demons who occupy a +grade beneath the moon, and makes even this avowal as by constraint +regarding gods whom he honours; but the superior and celestial gods, +who inhabit the ethereal regions, whether visible, as the sun, moon, +and other luminaries, whose brilliancy makes them conspicuous, or +invisible, but believed in by him, he does his utmost to remove +beyond the slightest stain of these perturbations. It is not, then, +from Plato, but from your Chaldæan teachers you have learned to +elevate human vices to the ethereal and empyreal regions of the world +and to the celestial firmament, in order that your theurgists might +be able to obtain from your gods divine revelations; and yet you make +yourself superior to these divine revelations by your intellectual +life, which dispenses with these theurgic purifications as not +needed by a philosopher. But, by way of rewarding your teachers, you +recommend these arts to other men, who, not being philosophers, may +be persuaded to use what you acknowledge to be useless to yourself, +who are capable of higher things; so that those who cannot avail +themselves of the virtue of philosophy, which is too arduous for the +multitude, may, at your instigation, betake themselves to theurgists +by whom they may be purified, not, indeed, in the intellectual, but +in the spiritual part of the soul. Now, as the persons who are unfit +for philosophy form incomparably the majority of mankind, more may +be compelled to consult these secret and illicit teachers of yours +than frequent the Platonic schools. For these most impure demons, +pretending to be ethereal gods, whose herald and messenger you have +become, have promised that those who are purified by theurgy in the +spiritual part of their soul shall not indeed return to the Father, +but shall dwell among the ethereal gods above the aerial regions. But +such fancies are not listened to by the multitudes of men whom Christ +came to set free from the tyranny of demons. For in Him they have +the most gracious cleansing, in which mind, spirit, and body alike +participate. For, in order that He might heal the whole man from the +plague of sin, He took without sin the whole human nature. Would that +you had known Him, and would that you had committed yourself for +healing to Him rather than to your own frail and infirm human virtue, +or to pernicious and curious arts! He would not have deceived you; +for Him your own oracles, on your own showing, acknowledged holy +and immortal. It is of Him, too, that the most famous poet speaks, +poetically indeed, since he applies it to the person of another, yet +truly, if you refer it to Christ, saying, "Under thine auspices, +if any traces of our crimes remain, they shall be obliterated, and +earth freed from its perpetual fear."[423] By which he indicates +that, by reason of the infirmity which attaches to this life, the +greatest progress in virtue and righteousness leaves room for the +existence, if not of crimes, yet of the traces of crimes, which are +obliterated only by that Saviour of whom this verse speaks. For that +he did not say this at the prompting of his own fancy, Virgil tells +us in almost the last verse of that 4th Eclogue, when he says, "The +last age predicted by the Cumæan sibyl has now arrived;" whence it +plainly appears that this had been dictated by the Cumæan sibyl. But +those theurgists, or rather demons, who assume the appearance and +form of gods, pollute rather than purify the human spirit by false +appearances and the delusive mockery of unsubstantial forms. How +can those whose own spirit is unclean cleanse the spirit of man? +Were they not unclean, they would not be bound by the incantations +of an envious man, and would neither be afraid nor grudge to bestow +that hollow boon which they promise. But it is sufficient for our +purpose that you acknowledge that the intellectual soul, that is, our +mind, cannot be justified by theurgy; and that even the spiritual +or inferior part of our soul cannot by this act be made eternal +and immortal, though you maintain that it can be purified by it. +Christ, however, promises life eternal; and therefore to Him the +world flocks, greatly to your indignation, greatly also to your +astonishment and confusion. What avails your forced avowal that +theurgy leads men astray, and deceives vast numbers by its ignorant +and foolish teaching, and that it is the most manifest mistake to +have recourse by prayer and sacrifice to angels and principalities, +when at the same time, to save yourself from the charge of spending +labour in vain on such arts, you direct men to the theurgists, that +by their means men, who do not live by the rule of the intellectual +soul, may have their spiritual soul purified? + + + 28. _How it is that Porphyry has been so blind as not to recognise + the true wisdom--Christ._ + +You drive men, therefore, into the most palpable error. And yet you +are not ashamed of doing so much harm, though you call yourself a +lover of virtue and wisdom. Had you been true and faithful in this +profession, you would have recognised Christ, the virtue of God and +the wisdom of God, and would not, in the pride of vain science, have +revolted from His wholesome humility. Nevertheless you acknowledge +that the spiritual part of the soul can be purified by the virtue +of chastity without the aid of those theurgic arts and mysteries +which you wasted your time in learning. You even say, sometimes, +that these mysteries do not raise the soul after death, so that, +after the termination of this life, they seem to be of no service +even to the part you call spiritual; and yet you recur on every +opportunity to these arts, for no other purpose, so far as I see, +than to appear an accomplished theurgist, and gratify those who are +curious in illicit arts, or else to inspire others with the same +curiosity. But we give you all praise for saying that this art is +to be feared, both on account of the legal enactments against it, +and by reason of the danger involved in the very practice of it. And +would that in this, at least, you were listened to by its wretched +votaries, that they might be withdrawn from entire absorption in it, +or might even be preserved from tampering with it at all! You say, +indeed, that ignorance, and the numberless vices resulting from it, +cannot be removed by any mysteries, but only by the πατρικὸς νοῦς, +that is, the Father's mind or intellect conscious of the Father's +will. But that Christ is this mind you do not believe; for Him you +despise on account of the body He took of a woman and the shame of +the cross; for your lofty wisdom spurns such low and contemptible +things, and soars to more exalted regions. But He fulfils what +the holy prophets truly predicted regarding Him: "I will destroy +the wisdom of the wise, and bring to nought the prudence of the +prudent."[424] For He does not destroy and bring to nought His own +gift in them, but what they arrogate to themselves, and do not hold +of Him. And hence the apostle, having quoted this testimony from +the prophet, adds, "Where is the wise? where is the scribe? where +is the disputer of this world? Hath not God made foolish the wisdom +of this world? For after that, in the wisdom of God, the world by +wisdom knew not God, it pleased God by the foolishness of preaching +to save them that believe. For the Jews require a sign, and the +Greeks seek after wisdom; but we preach Christ crucified, unto the +Jews a stumbling-block, and unto the Greeks foolishness; but unto +them which are called, both Jews and Greeks, Christ the power of +God, and the wisdom of God. Because the foolishness of God is wiser +than men; and the weakness of God is stronger than men."[425] This +is despised as a weak and foolish thing by those who are wise and +strong in themselves; yet this is the grace which heals the weak, who +do not proudly boast a blessedness of their own, but rather humbly +acknowledge their real misery. + + + 29. _Of the incarnation of our Lord Jesus Christ, which the + Platonists in their impiety blush to acknowledge._ + +You proclaim the Father and His Son, whom you call the Father's +intellect or mind, and between these a third, by whom we suppose you +mean the Holy Spirit, and in your own fashion you call these three +Gods. In this, though your expressions are inaccurate, you do in some +sort, and as through a veil, see what we should strive towards; but +the incarnation of the unchangeable Son of God, whereby we are saved, +and are enabled to reach the things we believe, or in part understand, +this is what you refuse to recognise. You see in a fashion, although +at a distance, although with filmy eye, the country in which we should +abide; but the way to it you know not. Yet you believe in grace, for +you say it is granted to few to reach God by virtue of intelligence. +For you do not say, "Few have thought fit or have wished," but, "It +has been granted to few,"--distinctly acknowledging God's grace, +not man's sufficiency. You also use this word more expressly, when, +in accordance with the opinion of Plato, you make no doubt that in +this life a man cannot by any means attain to perfect wisdom, but +that whatever is lacking is in the future life made up to those who +live intellectually, by God's providence and grace. Oh, had you but +recognised the grace of God in Jesus Christ our Lord, and that very +incarnation of His, wherein He assumed a human soul and body, you +might have seemed the brightest example of grace![426] But what am +I doing? I know it is useless to speak to a dead man,--useless, at +least, so far as regards you, but perhaps not in vain for those who +esteem you highly, and love you on account of their love of wisdom or +curiosity about those arts which you ought not to have learned; and +these persons I address in your name. The grace of God could not have +been more graciously commended to us than thus, that the only Son of +God, remaining unchangeable in Himself, should assume humanity, and +should give us the hope of His love, by means of the mediation of +a human nature, through which we, from the condition of men, might +come to Him who was so far off,--the immortal from the mortal; the +unchangeable from the changeable; the just from the unjust; the blessed +from the wretched. And, as He had given us a natural instinct to desire +blessedness and immortality, He Himself continuing to be blessed, but +assuming mortality, by enduring what we fear, taught us to despise it, +that what we long for He might bestow upon us. + +But in order to your acquiescence in this truth, it is lowliness that +is requisite, and to this it is extremely difficult to bend you. For +what is there incredible, especially to men like you, accustomed to +speculation, which might have predisposed you to believe in this,--what +is there incredible, I say, in the assertion that God assumed a +human soul and body? You yourselves ascribe such excellence to the +intellectual soul, which is, after all, the human soul, that you +maintain that it can become consubstantial with that intelligence of +the Father whom you believe in as the Son of God. What incredible +thing is it, then, if some one soul be assumed by Him in an ineffable +and unique manner for the salvation of many? Moreover, our nature +itself testifies that a man is incomplete unless a body be united with +the soul. This certainly would be more incredible, were it not of all +things the most common; for we should more easily believe in a union +between spirit and spirit, or, to use your own terminology, between the +incorporeal and the incorporeal, even though the one were human, the +other divine, the one changeable and the other unchangeable, than in a +union between the corporeal and the incorporeal. But perhaps it is the +unprecedented birth of a body from a virgin that staggers you? But, +so far from this being a difficulty, it ought rather to assist you to +receive our religion, that a miraculous person was born miraculously. +Or, do you find a difficulty in the fact that, after His body had been +given up to death, and had been changed into a higher kind of body +by resurrection, and was now no longer mortal but incorruptible, He +carried it up into heavenly places? Perhaps you refuse to believe this, +because you remember that Porphyry, in these very books from which +I have cited so much, and which treat of the return of the soul, so +frequently teaches that a body of every kind is to be escaped from, in +order that the soul may dwell in blessedness with God. But here, in +place of following Porphyry, you ought rather to have corrected him, +especially since you agree with him in believing such incredible things +about the soul of this visible world and huge material frame. For, as +scholars of Plato, you hold that the world is an animal, and a very +happy animal, which you wish to be also everlasting. How, then, is +it never to be loosed from a body, and yet never lose its happiness, +if, in order to the happiness of the soul, the body must be left +behind? The sun, too, and the other stars, you not only acknowledge +to be bodies, in which you have the cordial assent of all seeing men, +but also, in obedience to what you reckon a profounder insight, you +declare that they are very blessed animals, and eternal, together +with their bodies. Why is it, then, that when the Christian faith is +pressed upon you, you forget, or pretend to ignore, what you habitually +discuss or teach? Why is it that you refuse to be Christians, on the +ground that you hold opinions which, in fact, you yourselves demolish? +Is it not because Christ came in lowliness, and ye are proud? The +precise nature of the resurrection bodies of the saints may sometimes +occasion discussion among those who are best read in the Christian +Scriptures; yet there is not among us the smallest doubt that they +shall be everlasting, and of a nature exemplified in the instance of +Christ's risen body. But whatever be their nature, since we maintain +that they shall be absolutely incorruptible and immortal, and shall +offer no hindrance to the soul's contemplation by which it is fixed +in God, and as you say that among the celestials the bodies of the +eternally blessed are eternal, why do you maintain that, in order to +blessedness, every body must be escaped from? Why do you thus seek +such a plausible reason for escaping from the Christian faith, if not +because, as I again say, Christ is humble and ye proud? Are ye ashamed +to be corrected? This is the vice of the proud. It is, forsooth, a +degradation for learned men to pass from the school of Plato to the +discipleship of Christ, who by His Spirit taught a fisherman to think +and to say, "In the beginning was the Word, and the Word was with God, +and the Word was God. The same was in the beginning with God. All +things were made by Him; and without Him was not anything made that +was made. In Him was life; and the life was the light of men. And the +light shineth in darkness; and the darkness comprehended it not."[427] +The old saint Simplicianus, afterwards bishop of Milan, used to tell me +that a certain Platonist was in the habit of saying that this opening +passage of the holy gospel, entitled "According to John," should be +written in letters of gold, and hung up in all churches in the most +conspicuous place. But the proud scorn to take God for their Master, +because "the Word was made flesh and dwelt among us."[428] So that, +with these miserable creatures, it is not enough that they are sick, +but they boast of their sickness, and are ashamed of the medicine which +could heal them. And, doing so, they secure not elevation, but a more +disastrous fall. + + + 30. _Porphyry's emendations and modifications of Platonism._ + +If it is considered unseemly to emend anything which Plato has +touched, why did Porphyry himself make emendations, and these not +a few? for it is very certain that Plato wrote that the souls of +men return after death to the bodies of beasts.[429] Plotinus also, +Porphyry's teacher, held this opinion;[430] yet Porphyry justly +rejected it. He was of opinion that human souls return indeed into +human bodies, but not into the bodies they had left, but other new +bodies. He shrank from the other opinion, lest a woman who had +returned into a mule might possibly carry her own son on her back. He +did not shrink, however, from a theory which admitted the possibility +of a mother coming back into a girl and marrying her own son. How +much more honourable a creed is that which was taught by the holy +and truthful angels, uttered by the prophets who were moved by God's +Spirit, preached by Him who was foretold as the coming Saviour by His +forerunning heralds, and by the apostles whom He sent forth, and who +filled the whole world with the gospel,--how much more honourable, +I say, is the belief that souls return once for all to their own +bodies, than that they return again and again to divers bodies? +Nevertheless Porphyry, as I have said, did considerably improve upon +this opinion, in so far, at least, as he maintained that human souls +could transmigrate only into human bodies, and made no scruple about +demolishing the bestial prisons into which Plato had wished to cast +them. He says, too, that God put the soul into the world that it +might recognise the evils of matter, and return to the Father, and +be for ever emancipated from the polluting contact of matter. And +although here is some inappropriate thinking (for the soul is rather +given to the body that it may do good; for it would not learn evil +unless it did it), yet he corrects the opinion of other Platonists, +and that on a point of no small importance, inasmuch as he avows that +the soul, which is purged from all evil and received to the Father's +presence, shall never again suffer the ills of this life. By this +opinion he quite subverted the favourite Platonic dogma, that as dead +men are made out of living ones, so living men are made out of dead +ones; and he exploded the idea which Virgil seems to have adopted +from Plato, that the purified souls which have been sent into the +Elysian fields (the poetic name for the joys of the blessed) are +summoned to the river Lethe, that is, to the oblivion of the past, + + "That earthward they may pass once more, + Remembering not the things before, + And with a blind propension yearn + To fleshly bodies to return."[431] + +This found no favour with Porphyry, and very justly; for it is indeed +foolish to believe that souls should desire to return from that +life, which cannot be very blessed unless by the assurance of its +permanence, and to come back into this life, and to the pollution +of corruptible bodies, as if the result of perfect purification +were only to make defilement desirable. For if perfect purification +effects the oblivion of all evils, and the oblivion of evils creates +a desire for a body in which the soul may again be entangled with +evils, then the supreme felicity will be the cause of infelicity, and +the perfection of wisdom the cause of foolishness, and the purest +cleansing the cause of defilement. And, however long the blessedness +of the soul last, it cannot be founded on truth, if, in order to +be blessed, it must be deceived. For it cannot be blessed unless +it be free from fear. But, to be free from fear, it must be under +the _false_ impression that it shall be always blessed,--the false +impression, for it is destined to be also at some time miserable. +How, then, shall the soul rejoice in truth, whose joy is founded on +falsehood? Porphyry saw this, and therefore said that the purified +soul returns to the Father, that it may never more be entangled in +the polluting contact with evil. The opinion, therefore, of some +Platonists, that there is a necessary revolution carrying souls away +and bringing them round again to the same things, is false. But, were +it true, what were the advantage of knowing it? Would the Platonists +presume to allege their superiority to us, because we were in this +life ignorant of what they themselves were doomed to be ignorant of +when perfected in purity and wisdom in another and better life, and +which they must be ignorant of if they are to be blessed? If it were +most absurd and foolish to say so, then certainly we must prefer +Porphyry's opinion to the idea of a circulation of souls through +constantly alternating happiness and misery. And if this is just, +here is a Platonist emending Plato, here is a man who saw what Plato +did not see, and who did not shrink from correcting so illustrious a +master, but preferred truth to Plato. + + + 31. _Against the arguments on which the Platonists ground their + assertion that the human soul is co-eternal with God._ + +Why, then, do we not rather believe the divinity in those matters, +which human talent cannot fathom? Why do we not credit the assertion +of divinity, that the soul is not co-eternal with God, but is +created, and once was not? For the Platonists seemed to themselves to +allege an adequate reason for their rejection of this doctrine, when +they affirmed that nothing could be everlasting which had not always +existed. Plato, however, in writing concerning the world and the gods +in it, whom the Supreme made, most expressly states that they had +a beginning and yet would have no end, but, by the sovereign will +of the Creator, would endure eternally. But, by way of interpreting +this, the Platonists have discovered that he meant a beginning, +not of time, but of cause. "For as if a foot," they say, "had been +always from eternity in dust, there would always have been a print +underneath it; and yet no one would doubt that this print was made +by the pressure of the foot, nor that, though the one was made by +the other, neither was prior to the other; so," they say, "the world +and the gods created in it have always been, their Creator always +existing, and yet they were made." If, then, the soul has always +existed, are we to say that its wretchedness has always existed? +For if there is something in it which was not from eternity, but +began in time, why is it impossible that the soul itself, though not +previously existing, should begin to be in time? Its blessedness, +too, which, as he owns, is to be more stable, and indeed endless, +after the soul's experience of evils,--this undoubtedly has a +beginning in time, and yet is to be always, though previously it +had no existence. This whole argumentation, therefore, to establish +that nothing can be endless except that which has had no beginning, +falls to the ground. For here we find the blessedness of the soul, +which has a beginning, and yet has no end. And, therefore, let the +incapacity of man give place to the authority of God; and let us +take our belief regarding the true religion from the ever-blessed +spirits, who do not seek for themselves that honour which they +know to be due to their God and ours, and who do not command us to +sacrifice save only to Him, whose sacrifice, as I have often said +already, and must often say again, we and they ought together to be, +offered through that Priest who offered Himself to death a sacrifice +for us, in that human nature which He assumed, and according to which +He desired to be our Priest. + + + 32. _Of the universal way of the soul's deliverance, which Porphyry + did not find because he did not rightly seek it, and which the + grace of Christ has alone thrown open._ + +This is the religion which possesses the universal way for delivering +the soul; for, except by this way, none can be delivered. This is +a kind of royal way, which alone leads to a kingdom which does not +totter like all temporal dignities, but stands firm on eternal +foundations. And when Porphyry says, towards the end of the first +book _De Regressu Animæ_, that no system of doctrine which furnishes +the universal way for delivering the soul has as yet been received, +either from the truest philosophy, or from the ideas and practices +of the Indians, or from the reasoning[432] of the Chaldæans, or from +any source whatever, and that no historical reading had made him +acquainted with that way, he manifestly acknowledges that there is +such a way, but that as yet he was not acquainted with it. Nothing of +all that he had so laboriously learned concerning the deliverance of +the soul, nothing of all that he seemed to others, if not to himself, +to know and believe, satisfied him. For he perceived that there was +still wanting a commanding authority which it might be right to +follow in a matter of such importance. And when he says that he had +not learned from any truest philosophy a system which possessed the +universal way of the soul's deliverance, he shows plainly enough, +as it seems to me, either that the philosophy of which he was a +disciple was not the truest, or that it did not comprehend such +a way. And how can that be the truest philosophy which does not +possess this way? For what else is the universal way of the soul's +deliverance than that by which all souls universally are delivered, +and without which, therefore, no soul is delivered? And when he says, +in addition, "or from the ideas and practices of the Indians, or from +the reasoning of the Chaldæans, or from any source whatever," he +declares in the most unequivocal language that this universal way of +the soul's deliverance was not embraced in what he had learned either +from the Indians or the Chaldæans; and yet he could not forbear +stating that it was from the Chaldæans he had derived these divine +oracles of which he makes such frequent mention. What, therefore, +does he mean by this universal way of the soul's deliverance, which +had not yet been made known by any truest philosophy, or by the +doctrinal systems of those nations which were considered to have +great insight in things divine, because they indulged more freely +in a curious and fanciful science and worship of angels? What is +this universal way of which he acknowledges his ignorance, if not +a way which does not belong to one nation as its special property, +but is common to all, and divinely bestowed? Porphyry, a man of no +mediocre abilities, does not question that such a way exists; for he +believes that Divine Providence could not have left men destitute of +this universal way of delivering the soul. For he does not say that +this way does not exist, but that this great boon and assistance has +not yet been discovered, and has not come to his knowledge. And no +wonder; for Porphyry lived in an age when this universal way of the +soul's deliverance,--in other words, the Christian religion,--was +exposed to the persecutions of idolaters and demon-worshippers, and +earthly rulers,[433] that the number of martyrs or witnesses for the +truth might be completed and consecrated, and that by them proof +might be given that we must endure all bodily sufferings in the cause +of the holy faith, and for the commendation of the truth. Porphyry, +being a witness of these persecutions, concluded that this way was +destined to a speedy extinction, and that it, therefore, was not +the universal way of the soul's deliverance, and did not see that +the very thing that thus moved him, and deterred him from becoming +a Christian, contributed to the confirmation and more effectual +commendation of our religion. + +This, then, is the universal way of the soul's deliverance, the way +that is granted by the divine compassion to the nations universally. +And no nation to which the knowledge of it has already come, or may +hereafter come, ought to demand, Why so soon? or, Why so late?--for +the design of Him who sends it is impenetrable by human capacity. This +was felt by Porphyry when he confined himself to saying that this gift +of God was not yet received, and had not yet come to his knowledge. +For, though this was so, he did not on that account pronounce that the +way itself had no existence. This, I say, is the universal way for +the deliverance of believers, concerning which the faithful Abraham +received the divine assurance, "In thy seed shall all nations be +blessed."[434] He, indeed, was by birth a Chaldæan; but, that he might +receive these great promises, and that there might be propagated from +him a seed "disposed by angels in the hand of a Mediator,"[435] in whom +this universal way, thrown open to all nations for the deliverance +of the soul, might be found, he was ordered to leave his country, +and kindred, and father's house. Then was he himself, first of all, +delivered from the Chaldæan superstitions, and by his obedience +worshipped the one true God, whose promises he faithfully trusted. +This is the universal way, of which it is said in holy prophecy, "God +be merciful unto us, and bless us, and cause His face to shine upon +us; that Thy way may be known upon earth, Thy saving health among all +nations."[436] And hence, when our Saviour, so long after, had taken +flesh of the seed of Abraham, He says of Himself, "I am the way, the +truth, and the life."[437] This is the universal way, of which so long +before it had been predicted, "And it shall come to pass in the last +days, that the mountain of the Lord's house shall be established in the +top of the mountains, and shall be exalted above the hills; and all +nations shall flow unto it. And many people shall go and say, Come ye, +and let us go up to the mountain of the Lord, to the house of the God +of Jacob; and He will teach us of His ways, and we will walk in His +paths: for out of Sion shall go forth the law, and the word of the +Lord from Jerusalem."[438] This way, therefore, is not the property +of one, but of all nations. The law and the word of the Lord did not +remain in Zion and Jerusalem, but issued thence to be universally +diffused. And therefore the Mediator Himself, after His resurrection, +says to His alarmed disciples, "These are the words which I spake +unto you while I was yet with you, that all things must be fulfilled +which were written in the law of Moses, and in the prophets, and in +the Psalms, concerning me. Then opened He their understandings that +they might understand the Scriptures, and said unto them, Thus it is +written, and thus it behoved Christ to suffer, and to rise from the +dead the third day: and that repentance and remission of sins should be +preached in His name among all nations, beginning at Jerusalem."[439] +This is the universal way of the soul's deliverance, which the holy +angels and the holy prophets formerly disclosed where they could +among the few men who found the grace of God, and especially in the +Hebrew nation, whose commonwealth was, as it were, consecrated to +prefigure and fore-announce the city of God which was to be gathered +from all nations, by their tabernacle, and temple, and priesthood, +and sacrifices. In some explicit statements, and in many obscure +foreshadowings, this way was declared; but latterly came the Mediator +Himself in the flesh, and His blessed apostles, revealing how the grace +of the New Testament more openly explained what had been obscurely +hinted to preceding generations, in conformity with the relation of the +ages of the human race, and as it pleased God in His wisdom to appoint, +who also bore them witness with signs and miracles, some of which I +have cited above. For not only were there visions of angels, and words +heard from those heavenly ministrants, but also men of God, armed with +the word of simple piety, cast out unclean spirits from the bodies and +senses of men, and healed deformities and sicknesses; the wild beasts +of earth and sea, the birds of air, inanimate things, the elements, +the stars, obeyed their divine commands; the powers of hell gave way +before them, the dead were restored to life. I say nothing of the +miracles peculiar and proper to the Saviour's own person, especially +the nativity and the resurrection; in the one of which He wrought only +the mystery of a virgin maternity, while in the other He furnished an +instance of the resurrection which all shall at last experience. This +way purifies the whole man, and prepares the mortal in all his parts +for immortality. For, to prevent us from seeking for one purgation for +the part which Porphyry calls intellectual, and another for the part he +calls spiritual, and another for the body itself, our most mighty and +truthful Purifier and Saviour assumed the whole human nature. Except by +this way, which has been present among men both during the period of +the promises and of the proclamation of their fulfilment, no man has +been delivered, no man is delivered, no man shall be delivered. + +As to Porphyry's statement that the universal way of the soul's +deliverance had not yet come to his knowledge by any acquaintance he +had with history, I would ask, what more remarkable history can be +found than that which has taken possession of the whole world by its +authoritative voice? or what more trustworthy than that which narrates +past events, and predicts the future with equal clearness, and in the +unfulfilled predictions of which we are constrained to believe by those +that are already fulfilled? For neither Porphyry nor any Platonists +can despise divination and prediction, even of things that pertain to +this life and earthly matters, though they justly despise ordinary +soothsaying and the divination that is connected with magical arts. +They deny that these are the predictions of great men, or are to be +considered important, and they are right; for they are founded, either +on the foresight of subsidiary causes, as to a professional eye much of +the course of a disease is foreseen by certain premonitory symptoms, +or the unclean demons predict what they have resolved to do, that they +may thus work upon the thoughts and desires of the wicked with an +appearance of authority, and incline human frailty to imitate their +impure actions. It is not such things that the saints who walk in the +universal way care to predict as important, although, for the purpose +of commending the faith, they knew and often predicted even such things +as could not be detected by human observation, nor be readily verified +by experience. But there were other truly important and divine events +which they predicted, in so far as it was given them to know the will +of God. For the incarnation of Christ, and all those important marvels +that were accomplished in Him, and done in His name; the repentance +of men and the conversion of their wills to God; the remission of +sins, the grace of righteousness, the faith of the pious, and the +multitudes in all parts of the world who believe in the true divinity; +the overthrow of idolatry and demon worship, and the testing of the +faithful by trials; the purification of those who persevered, and their +deliverance from all evil; the day of judgment, the resurrection of +the dead, the eternal damnation of the community of the ungodly, and +the eternal kingdom of the most glorious city of God, ever-blessed +in the enjoyment of the vision of God,--these things were predicted +and promised in the Scriptures of this way; and of these we see so +many fulfilled, that we justly and piously trust that the rest will +also come to pass. As for those who do not believe, and consequently +do not understand, that this is the way which leads straight to the +vision of God and to eternal fellowship with Him, according to the true +predictions and statements of the Holy Scriptures, they may storm at +our position, but they cannot storm it. + +And therefore, in these ten books, though not meeting, I dare say, +the expectation of some, yet I have, as the true God and Lord has +vouchsafed to aid me, satisfied the desire of certain persons, by +refuting the objections of the ungodly, who prefer their own gods to +the Founder of the holy city, about which we undertook to speak. Of +these ten books, the first five were directed against those who think +we should worship the gods for the sake of the blessings of this +life, and the second five against those who think we should worship +them for the sake of the life which is to be after death. And now, in +fulfilment of the promise I made in the first book, I shall go on to +say, as God shall aid me, what I think needs to be said regarding the +origin, history, and deserved ends of the two cities, which, as already +remarked, are in this world commingled and implicated with one another. + +FOOTNOTES: + +[364] Rom. i. 21. + +[365] Eph. vi. 5. + +[366] Namely, δουλεία: comp. _Quæst. in Exod._ 94; _Quæst. in Gen._ +21; _Contra Faustum_, 15, 9, etc. + +[367] Agricolæ, coloni, incolæ. + +[368] Virgil, _Eneid_, i. 12. + +[369] 2 Chron. xxx. 9; Eccl. xi. 13; Judith vii. 20. + +[370] Ps. lxxxii. 6. + +[371] John i. 6-9. + +[372] _Ibid._ 16. + +[373] Augustine here remarks, in a clause that cannot be given in +English, that the word _religio_ is derived from _religere_.--So +Cicero, _De Nat. Deor._ ii. 28. + +[374] Matt. xxii. 37-40. + +[375] Ps. lxxiii. 28. + +[376] Ex. xxii. 20. + +[377] Ps. xvi. 2. + +[378] Ps. li. 16, 17. + +[379] Ps. l. 12, 13. + +[380] Ps. l. 14, 15. + +[381] Micah vi. 6-8. + +[382] Heb. xiii. 16. + +[383] Hos. vi. 6. + +[384] Matt. xxii. 40. + +[385] On the service rendered to the Church by this definition, see +Waterland's Works, v. 124. + +[386] Literally, a sacred action. + +[387] Ecclus. xxx. 24. + +[388] Rom. vi. 13. + +[389] Rom. xii. 1. + +[390] Rom. xii. 2. + +[391] Ps. lxxiii. 28. + +[392] Rom. xii. 3-6. + +[393] Ps. lxxxvii. 3. + +[394] Ex. xxii. 20. + +[395] Gen. xviii. 18. + +[396] Gen. xv. 17. In his _Retractations_, ii. 43, Augustine says +that he should not have spoken of this as miraculous, because it was +an appearance seen in sleep. + +[397] Gen. xviii. + +[398] _Goetia._ + +[399] 2 Cor. xi. 14. + +[400] Virgil, _Georg._ iv. 411. + +[401] Ex. xxxiii. 13. + +[402] Plotin. _Ennead._ III. ii. 13. + +[403] Matt. vi. 28-30. + +[404] Acts vii. 53. + +[405] _Ennead._ I. vi. 7. + +[406] Meaning, officious meddlers. + +[407] _Pharsal._ vi. 503. + +[408] Ps. lxxiii. 28. + +[409] _Æneid_, vii. 310. + +[410] _Æneid_, iii. 438, 439. + +[411] _Teletis._ + +[412] The Platonists of the Alexandrian and Athenian schools, +from Plotinus to Proclus, are at one in recognising in God three +principles or hypostases: 1st, the One or the Good, which is the +Father; 2d, the Intelligence or Word, which is the Son; 3d, the Soul, +which is the universal principle of life. But as to the nature and +order of these hypostases, the Alexandrians are no longer at one with +the school of Athens. On the very subtle differences between the +Trinity of Plotinus and that of Porphyry, consult M. Jules Simon, ii. +110, and M. Vacherot, ii. 37.--SAISSET. + +[413] See below, c. 28. + +[414] _Ennead._ v. 1. + +[415] John i. 14. + +[416] John vi. 60-64. + +[417] John viii. 25; or "the beginning," following a different +reading from ours. + +[418] Ps. lxxiii. 28. + +[419] Ps. lxxxiv. 2. + +[420] Matt. xxiii. 26. + +[421] Rom. viii. 24, 25. + +[422] See above, c. 9. + +[423] Virgil, _Eclog._ iv. 13, 14. + +[424] Isa. xxix. 14. + +[425] 1 Cor. i. 19-25. + +[426] According to another reading, "You might have seen it to be," +etc. + +[427] John i. 1-5. + +[428] John i. 14. + +[429] Comp. Euseb. _Præp. Evan._ xiii. 16. + +[430] _Ennead._ iii. 4. 2. + +[431] _Æneid_, vi. 750, 751. + +[432] _Inductio._ + +[433] Namely, under Diocletian and Maximian. + +[434] Gen. xxii. 18. + +[435] Gal. iii. 19. + +[436] Ps. lxvii. 1, 2. + +[437] John xiv. 6. + +[438] Isa. ii. 2, 3. + +[439] Luke xxiv. 44-47. + + + + + BOOK ELEVENTH. + + ARGUMENT. + + HERE BEGINS THE SECOND PART[440] OF THIS WORK, WHICH TREATS OF + THE ORIGIN, HISTORY, AND DESTINIES OF THE TWO CITIES, THE + EARTHLY AND THE HEAVENLY. IN THE FIRST PLACE, AUGUSTINE SHOWS + IN THIS BOOK HOW THE TWO CITIES WERE FORMED ORIGINALLY, BY THE + SEPARATION OF THE GOOD AND BAD ANGELS; AND TAKES OCCASION TO + TREAT OF THE CREATION OF THE WORLD, AS IT IS DESCRIBED IN HOLY + SCRIPTURE IN THE BEGINNING OF THE BOOK OF GENESIS. + + + 1. _Of this part of the work, wherein we begin to explain the origin + and end of the two cities._ + +The city of God we speak of is the same to which testimony is borne +by that Scripture, which excels all the writings of all nations +by its divine authority, and has brought under its influence all +kinds of minds, and this not by a casual intellectual movement, but +obviously by an express providential arrangement. For there it is +written, "Glorious things are spoken of thee, O city of God."[441] +And in another psalm we read, "Great is the Lord, and greatly to be +praised in the city of our God, in the mountain of His holiness, +increasing the joy of the whole earth."[442] And, a little after, in +the same psalm, "As we have heard, so have we seen in the city of the +Lord of hosts, in the city of our God. God has established it for +ever." And in another, "There is a river the streams whereof shall +make glad the city of our God, the holy place of the tabernacles +of the Most High. God is in the midst of her, she shall not be +moved."[443] From these and similar testimonies, all of which it +were tedious to cite, we have learned that there is a city of God, +and its Founder has inspired us with a love which makes us covet its +citizenship. To this Founder of the holy city the citizens of the +earthly city prefer their own gods, not knowing that He is the God +of gods, not of false, _i.e._ of impious and proud gods, who, being +deprived of His unchangeable and freely communicated light, and so +reduced to a kind of poverty-stricken power, eagerly grasp at their +own private privileges, and seek divine honours from their deluded +subjects; but of the pious and holy gods, who are better pleased to +submit themselves to one, than to subject many to themselves, and +who would rather worship God than be worshipped as God. But to the +enemies of this city we have replied in the ten preceding books, +according to our ability and the help afforded by our Lord and King. +Now, recognising what is expected of me, and not unmindful of my +promise, and relying, too, on the same succour, I will endeavour to +treat of the origin, and progress, and deserved destinies of the two +cities (the earthly and the heavenly, to wit), which, as we said, are +in this present world commingled, and as it were entangled together. +And, first, I will explain how the foundations of these two cities +were originally laid, in the difference that arose among the angels. + + + 2. _Of the knowledge of God, to which no man can attain save + through the Mediator between God and men, the man Christ Jesus._ + +It is a great and very rare thing for a man, after he has +contemplated the whole creation, corporeal and incorporeal, and has +discerned its mutability, to pass beyond it, and, by the continued +soaring of his mind, to attain to the unchangeable substance of God, +and, in that height of contemplation, to learn from God Himself that +none but He has made all that is not of the divine essence. For God +speaks with a man not by means of some audible creature dinning in +his ears, so that atmospheric vibrations connect Him that makes with +him that hears the sound, nor even by means of a spiritual being +with the semblance of a body, such as we see in dreams or similar +states; for even in this case He speaks as if to the ears of the +body, because it is by means of the semblance of a body He speaks, +and with the appearance of a real interval of space,--for visions are +exact representations of bodily objects. Not by these, then, does God +speak, but by the truth itself, if any one is prepared to hear with +the mind rather than with the body. For He speaks to that part of +man which is better than all else that is in him, and than which God +Himself alone is better. For since man is most properly understood +(or, if that cannot be, then, at least, _believed_) to be made in +God's image, no doubt it is that part of him by which he rises above +those lower parts he has in common with the beasts, which brings him +nearer to the Supreme. But since the mind itself, though naturally +capable of reason and intelligence, is disabled by besotting and +inveterate vices not merely from delighting and abiding in, but even +from tolerating His unchangeable light, until it has been gradually +healed, and renewed, and made capable of such felicity, it had, in +the first place, to be impregnated with faith, and so purified. And +that in this faith it might advance the more confidently towards the +truth, the truth itself, God, God's Son, assuming humanity without +destroying His divinity,[444] established and founded this faith, +that there might be a way for man to man's God through a God-man. For +this is the Mediator between God and men, the man Christ Jesus. For +it is as man that He is the Mediator and the Way. Since, if the way +lieth between him who goes, and the place whither he goes, there is +hope of his reaching it; but if there be no way, or if he know not +where it is, what boots it to know whither he should go? Now the only +way that is infallibly secured against all mistakes, is when the very +same person is at once God and man, God our end, man our way.[445] + + + 3. _Of the authority of the canonical Scriptures composed by the + Divine Spirit._ + +This Mediator, having spoken what He judged sufficient, first by +the prophets, then by His own lips, and afterwards by the apostles, +has besides produced the Scripture which is called canonical, +which has paramount authority, and to which we yield assent in all +matters of which we ought not to be ignorant, and yet cannot know +of ourselves. For if we attain the knowledge of present objects by +the testimony of our own senses,[446] whether internal or external, +then, regarding objects remote from our own senses, we need others +to bring their testimony, since we cannot know them by our own, and +we credit the persons to whom the objects have been or are sensibly +present. Accordingly, as in the case of visible objects which we have +not seen, we trust those who have, (and likewise with all sensible +objects,) so in the case of things which are perceived[447] by the +mind and spirit, _i.e._ which are remote from our own interior +sense, it behoves us to trust those who have seen them set in that +incorporeal light, or abidingly contemplate them. + + + 4. _That the world is neither without beginning, nor yet created + by a new decree of God, by which He afterwards willed what He + had not before willed._ + +Of all visible things, the world is the greatest; of all invisible, +the greatest is God. But, that the world is, we see; that God is, we +believe. That God made the world, we can believe from no one more +safely than from God Himself. But where have we heard Him? Nowhere +more distinctly than in the Holy Scriptures, where His prophet said, +"In the beginning God created the heavens and the earth."[448] Was +the prophet present when God made the heavens and the earth? No; but +the wisdom of God, by whom all things were made, was there,[449] and +wisdom insinuates itself into holy souls, and makes them the friends +of God and His prophets, and noiselessly informs them of His works. +They are taught also by the angels of God, who always behold the face +of the Father,[450] and announce His will to whom it befits. Of these +prophets was he who said and wrote, "In the beginning God created the +heavens and the earth." And so fit a witness was he of God, that the +same Spirit of God, who revealed these things to him, enabled him also +so long before to predict that our faith also would be forthcoming. + +But why did God choose then to create the heavens and earth which +up to that time He had not made?[451] If they who put this question +wish to make out that the world is eternal and without beginning, and +that consequently it has not been made by God, they are strangely +deceived, and rave in the incurable madness of impiety. For, though +the voices of the prophets were silent, the world itself, by its +well-ordered changes and movements, and by the fair appearance of +all visible things, bears a testimony of its own, both that it has +been created, and also that it could not have been created save by +God, whose greatness and beauty are unutterable and invisible. As +for those[452] who own, indeed, that it was made by God, and yet +ascribe to it not a temporal but only a creational beginning, so +that in some scarcely intelligible way the world should always have +existed a created world, they make an assertion which seems to them +to defend God from the charge of arbitrary hastiness, or of suddenly +conceiving the idea of creating the world as a quite new idea, or +of casually changing His will, though He be unchangeable. But I do +not see how this supposition of theirs can stand in other respects, +and chiefly in respect of the soul; for if they contend that it is +co-eternal with God, they will be quite at a loss to explain whence +there has accrued to it new misery, which through a previous eternity +had not existed. For if they said that its happiness and misery +ceaselessly alternate, they must say, further, that this alternation +will continue for ever; whence will result this absurdity, that, +though the soul is called blessed, it is not so in this, that it +foresees its own misery and disgrace. And yet, if it does not foresee +it, and supposes that it will be neither disgraced nor wretched, but +always blessed, then it is blessed because it is deceived; and a more +foolish statement one cannot make. But if their idea is that the +soul's misery has alternated with its bliss during the ages of the +past eternity, but that now, when once the soul has been set free, +it will return henceforth no more to misery, they are nevertheless +of opinion that it has never been truly blessed before, but begins +at last to enjoy a new and uncertain happiness; that is to say, +they must acknowledge that some new thing, and that an important +and signal thing, happens to the soul which never in a whole past +eternity happened it before. And if they deny that God's eternal +purpose included this new experience of the soul, they deny that He +is the Author of its blessedness, which is unspeakable impiety. +If, on the other hand, they say that the future blessedness of the +soul is the result of a new decree of God, how will they show that +God is not chargeable with that mutability which displeases them? +Further, if they acknowledge that it was created in time, but will +never perish in time,--that it has, like number,[453] a beginning +but no end,--and that, therefore, having once made trial of misery, +and been delivered from it, it will never again return thereto, they +will certainly admit that this takes place without any violation of +the immutable counsel of God. Let them, then, in like manner believe +regarding the world that it too could be made in time, and yet that +God, in making it, did not alter His eternal design. + + + 5. _That we ought not to seek to comprehend the infinite ages of + time before the world, nor the infinite realms of space._ + +Next, we must see what reply can be made to those who agree that God +is the Creator of the world, but have difficulties about the time of +its creation, and what reply, also, they can make to difficulties +we might raise about the place of its creation. For, as they demand +why the world was created then and no sooner, we may ask why it +was created just here where it is, and not elsewhere. For if they +imagine infinite spaces of time before the world, during which God +could not have been idle, in like manner they may conceive outside +the world infinite realms of space, in which, if any one says that +the Omnipotent cannot hold His hand from working, will it not follow +that they must adopt Epicurus' dream of innumerable worlds? with +this difference only, that he asserts that they are formed and +destroyed by the fortuitous movements of atoms, while they will hold +that they are made by God's hand, if they maintain that, throughout +the boundless immensity of space, stretching interminably in every +direction round the world, God cannot rest, and that the worlds which +they suppose Him to make cannot be destroyed. For here the question +is with those who, with ourselves, believe that God is spiritual, +and the Creator of all existences but Himself. As for others, it +is a condescension to dispute with them on a religious question, +for they have acquired a reputation only among men who pay divine +honours to a number of gods, and have become conspicuous among the +other philosophers for no other reason than that, though they are +still far from the truth, they are near it in comparison with the +rest. While these, then, neither confine in any place, nor limit, nor +distribute the divine substance, but, as is worthy of God, own it to +be wholly though spiritually present everywhere, will they perchance +say that this substance is absent from such immense spaces outside +the world, and is occupied in one only, (and that a very little one +compared with the infinity beyond,) the one, namely, in which is +the world? I think they will not proceed to this absurdity. Since +they maintain that there is but one world, of vast material bulk, +indeed, yet finite, and in its own determinate position, and that +this was made by the working of God, let them give the same account +of God's resting in the infinite times before the world as they +give of His resting in the infinite spaces outside of it. And as it +does not follow that God set the world in the very spot it occupies +and no other by accident rather than by divine reason, although no +human reason can comprehend why it was so set, and though there was +no merit in the spot chosen to give it the precedence of infinite +others, so neither does it follow that we should suppose that God was +guided by chance when He created the world in that and no earlier +time, although previous times had been running by during an infinite +past, and though there was no difference by which one time could be +chosen in preference to another. But if they say that the thoughts +of men are idle when they conceive infinite places, since there is +no place beside the world, we reply that, by the same showing, it is +vain to conceive of the past times of God's rest, since there is no +time before the world. + + + 6. _That the world and time had both one beginning, and the one + did not anticipate the other._ + +For if eternity and time are rightly distinguished by this, that +time does not exist without some movement and transition, while in +eternity there is no change, who does not see that there could have +been no time had not some creature been made, which by some motion +could give birth to change,--the various parts of which motion and +change, as they cannot be simultaneous, succeed one another,--and +thus, in these shorter or longer intervals of duration, time would +begin? Since then, God, in whose eternity is no change at all, is the +Creator and Ordainer of time, I do not see how He can be said to have +created the world after spaces of time had elapsed, unless it be said +that prior to the world there was some creature by whose movement +time could pass. And if the sacred and infallible Scriptures say that +in the beginning God created the heavens and the earth, in order that +it may be understood that He had made nothing previously,--for if He +had made anything before the rest, this thing would rather be said +to have been made "in the beginning,"--then assuredly the world was +made, not in time, but simultaneously with time. For that which is +made in time is made both after and before some time,--after that +which is past, before that which is future. But none could then be +past, for there was no creature by whose movements its duration could +be measured. But simultaneously with time the world was made, if in +the world's creation change and motion were created, as seems evident +from the order of the first six or seven days. For in these days the +morning and evening are counted, until, on the sixth day, all things +which God then made were finished, and on the seventh the rest of +God was mysteriously and sublimely signalized. What kind of days +these were it is extremely difficult, or perhaps impossible for us to +conceive, and how much more to say! + + + 7. _Of the nature of the first days, which are said to have had + morning and evening, before there was a sun._ + +We see, indeed, that our ordinary days have no evening but by the +setting, and no morning but by the rising, of the sun; but the first +three days of all were passed without sun, since it is reported to have +been made on the fourth day. And first of all, indeed, light was made +by the word of God, and God, we read, separated it from the darkness, +and called the light Day, and the darkness Night; but what kind of +light that was, and by what periodic movement it made evening and +morning, is beyond the reach of our senses; neither can we understand +how it was, and yet must unhesitatingly believe it. For either it was +some material light, whether proceeding from the upper parts of the +world, far removed from our sight, or from the spot where the sun +was afterwards kindled; or under the name of light the holy city was +signified, composed of holy angels and blessed spirits, the city of +which the apostle says, "Jerusalem which is above is our eternal mother +in heaven;"[454] and in another place, "For ye are all the children of +the light, and the children of the day; we are not of the night, nor of +darkness."[455] Yet in some respects we may appropriately speak of a +morning and evening of this day also. For the knowledge of the creature +is, in comparison of the knowledge of the Creator, but a twilight; and +so it dawns and breaks into morning when the creature is drawn to the +praise and love of the Creator; and night never falls when the Creator +is not forsaken through love of the creature. In fine, Scripture, when +it would recount those days in order, never mentions the word night. +It never says, "Night was," but "The evening and the morning were the +first day." So of the second and the rest. And, indeed, the knowledge +of created things contemplated by themselves is, so to speak, more +colourless than when they are seen in the wisdom of God, as in the art +by which they were made. Therefore evening is a more suitable figure +than night; and yet, as I said, morning returns when the creature +returns to the praise and love of the Creator. When it does so in the +knowledge of itself, that is the first day; when in the knowledge of +the firmament, which is the name given to the sky between the waters +above and those beneath, that is the second day; when in the knowledge +of the earth, and the sea, and all things that grow out of the earth, +that is the third day; when in the knowledge of the greater and less +luminaries, and all the stars, that is the fourth day; when in the +knowledge of all animals that swim in the waters and that fly in the +air, that is the fifth day; when in the knowledge of all animals that +live on the earth, and of man himself, that is the sixth day.[456] + + + 8. _What we are to understand of God's resting on the seventh day, + after the six days' work._ + +When it is said that God rested on the seventh day from all His +works, and hallowed it, we are not to conceive of this in a +childish fashion, as if work were a toil to God, who "spake and it +was done,"--spake by the spiritual and eternal, not audible and +transitory word. But God's rest signifies the rest of those who rest +in God, as the joy of a house means the joy of those in the house +who rejoice, though not the house, but something else, causes the +joy. How much more intelligible is such phraseology, then, if the +house itself, by its own beauty, makes the inhabitants joyful! For +in this case we not only call it joyful by that figure of speech in +which the thing containing is used for the thing contained (as when +we say, "The theatres applaud," "The meadows low," meaning that the +men in the one applaud, and the oxen in the other low), but also by +that figure in which the cause is spoken of as if it were the effect, +as when a letter is said to be joyful, because it makes its readers +so. Most appropriately, therefore, the sacred narrative states that +God rested, meaning thereby that those rest who are in Him, and whom +He makes to rest. And this the prophetic narrative promises also to +the men to whom it speaks, and for whom it was written, that they +themselves, after those good works which God does in and by them, if +they have managed by faith to get near to God in this life, shall +enjoy in Him eternal rest. This was prefigured to the ancient people +of God by the rest enjoined in their sabbath law, of which, in its +own place, I shall speak more at large. + + + 9. _What the Scriptures teach us to believe concerning the creation + of the angels._ + +At present, since I have undertaken to treat of the origin of the holy +city, and first of the holy angels, who constitute a large part of this +city, and indeed the more blessed part, since they have never been +expatriated, I will give myself to the task of explaining, by God's +help, and as far as seems suitable, the Scriptures which relate to +this point. Where Scripture speaks of the world's creation, it is not +plainly said whether or when the angels were created; but if mention +of them is made, it is implicitly under the name of "heaven," when it +is said, "In the beginning God created the heavens and the earth," +or perhaps rather under the name of "light," of which presently. But +that they were wholly omitted, I am unable to believe, because it is +written that God on the seventh day rested from all His works which +He made; and this very book itself begins, "In the beginning God +created the heavens and the earth," so that before heaven and earth +God seems to have made nothing. Since, therefore, He began with the +heavens and the earth,--and the earth itself, as Scripture adds, was +at first invisible and formless, light not being as yet made, and +darkness covering the face of the deep (that is to say, covering an +undefined chaos of earth and sea, for where light is not, darkness must +needs be),--and then when all things, which are recorded to have been +completed in six days, were created and arranged, how should the angels +be omitted, as if they were not among the works of God, from which on +the seventh day He rested? Yet, though the fact that the angels are the +work of God is not omitted here, it is indeed not explicitly mentioned; +but elsewhere Holy Scripture asserts it in the clearest manner. For +in the Hymn of the Three Children in the Furnace it was said, "O all +ye works of the Lord, bless ye the Lord;"[457] and among these works +mentioned afterwards in detail, the angels are named. And in the psalm +it is said, "Praise ye the Lord from the heavens, praise Him in the +heights. Praise ye Him, all His angels; praise ye Him, all His hosts. +Praise ye Him, sun and moon; praise Him, all ye stars of light. Praise +Him, ye heaven of heavens; and ye waters that be above the heavens. +Let them praise the name of the Lord; for He commanded, and they +were created."[458] Here the angels are most expressly and by divine +authority said to have been made by God, for of them among the other +heavenly things it is said, "He commanded, and they were created." +Who, then, will be bold enough to suggest that the angels were made +after the six days' creation? If any one is so foolish, his folly is +disposed of by a scripture of like authority, where God says, "When the +stars were made, the angels praised me with a loud voice."[459] The +angels therefore existed before the stars; and the stars were made the +fourth day. Shall we then say that they were made the third day? Far +from it; for we know what was made that day. The earth was separated +from the water, and each element took its own distinct form, and the +earth produced all that grows on it. On the second day, then? Not even +on this; for on it the firmament was made between the waters above and +beneath, and was called "Heaven," in which firmament the stars were +made on the fourth day. There is no question, then, that if the angels +are included in the works of God during these six days, they are that +light which was called "Day," and whose unity Scripture signalizes +by calling that day not the "first day," but "one day."[460] For the +second day, the third, and the rest are not other days; but the same +"one" day is repeated to complete the number six or seven, so that +there should be knowledge both of God's works and of His rest. For +when God said, "Let there be light, and there was light," if we are +justified in understanding in this light the creation of the angels, +then certainly they were created partakers of the eternal light which +is the unchangeable Wisdom of God, by which all things were made, +and whom we call the only-begotten Son of God; so that they, being +illumined by the Light that created them, might themselves become light +and be called "Day," in participation of that unchangeable Light and +Day which is the Word of God, by whom both themselves and all else were +made. "The true Light, which lighteth every man that cometh into the +world,"[461]--this Light lighteth also every pure angel, that he may +be light not in himself, but in God; from whom if an angel turn away, +he becomes impure, as are all those who are called unclean spirits, +and are no longer light in the Lord, but darkness in themselves, +being deprived of the participation of Light eternal. For evil has no +positive nature; but the loss of good has received the name "evil."[462] + + + 10. _Of the simple and unchangeable Trinity, Father, Son, and Holy + Ghost, one God, in whom substance and quality are identical._ + +There is, accordingly, a good which is alone simple, and therefore +alone unchangeable, and this is God. By this Good have all others +been created, but not simple, and therefore not unchangeable. +"Created," I say,--that is, made, not begotten. For that which is +begotten of the simple Good is simple as itself, and the same as +itself. These two we call the Father and the Son; and both together +with the Holy Spirit are one God; and to this Spirit the epithet Holy +is in Scripture, as it were, appropriated. And He is another than +the Father and the Son, for He is neither the Father nor the Son. +I say "another," not "another thing," because He is equally with +them the simple Good, unchangeable and co-eternal. And this Trinity +is one God; and none the less simple because a Trinity. For we do +not say that the nature of the good is simple, because the Father +alone possesses it, or the Son alone, or the Holy Ghost alone; nor +do we say, with the Sabellian heretics, that it is only nominally a +Trinity, and has no real distinction of persons; but we say it is +simple, because it is what it has, with the exception of the relation +of the persons to one another. For, in regard to this relation, it is +true that the Father has a Son, and yet is not Himself the Son; and +the Son has a Father, and is not Himself the Father. But, as regards +Himself, irrespective of relation to the other, each is what He has; +thus, He is in Himself living, for He has life, and is Himself the +Life which He has. + +It is for this reason, then, that the nature of the Trinity is +called simple, because it has not anything which it can lose, and +because it is not one thing and its contents another, as a cup and +the liquor, or a body and its colour, or the air and the light or +heat of it, or a mind and its wisdom. For none of these is what it +has: the cup is not liquor, nor the body colour, nor the air light +and heat, nor the mind wisdom. And hence they can be deprived of +what they have, and can be turned or changed into other qualities +and states, so that the cup may be emptied of the liquid of which +it is full, the body be discoloured, the air darken, the mind grow +silly. The incorruptible body which is promised to the saints in +the resurrection cannot, indeed, lose its quality of incorruption, +but the bodily substance and the quality of incorruption are not +the same thing. For the quality of incorruption resides entire in +each several part, not greater in one and less in another; for +no part is more incorruptible than another. The body, indeed, is +itself greater in whole than in part; and one part of it is larger, +another smaller, yet is not the larger more incorruptible than the +smaller. The body, then, which is not in each of its parts a whole +body, is one thing; incorruptibility, which is throughout complete, +is another thing;--for every part of the incorruptible body, +however unequal to the rest otherwise, is equally incorrupt. For +the hand, _e.g._, is not more incorrupt than the finger because it +is larger than the finger; so, though finger and hand are unequal, +their incorruptibility is equal. Thus, although incorruptibility is +inseparable from an incorruptible body, yet the substance of the body +is one thing, the quality of incorruption another. And therefore the +body is not what it has. The soul itself, too, though it be always +wise (as it will be eternally when it is redeemed), will be so by +participating in the unchangeable wisdom, which it is not; for though +the air be never robbed of the light that is shed abroad in it, it is +not on that account the same thing as the light. I do not mean that +the soul is air, as has been supposed by some who could not conceive +a spiritual nature;[463] but, with much dissimilarity, the two things +have a kind of likeness, which makes it suitable to say that the +immaterial soul is illumined with the immaterial light of the simple +wisdom of God, as the material air is irradiated with material light, +and that, as the air, when deprived of this light, grows dark, (for +material darkness is nothing else than air wanting light,[464]) so +the soul, deprived of the light of wisdom, grows dark. + +According to this, then, those things which are essentially and truly +divine are called simple, because in them quality and substance +are identical, and because they are divine, or wise, or blessed in +themselves, and without extraneous supplement. In Holy Scripture, it +is true, the Spirit of wisdom is called "manifold"[465] because it +contains many things in it; but what it contains it also is, and it +being one is all these things. For neither are there many wisdoms, +but one, in which are untold and infinite treasures of things +intellectual, wherein are all invisible and unchangeable reasons of +things visible and changeable which were created by it.[466] For God +made nothing unwittingly; not even a human workman can be said to do +so. But if He knew all that He made, He made only those things which +He had known. Whence flows a very striking but true conclusion, that +this world could not be known to us unless it existed, but could not +have existed unless it had been known to God. + + + 11. _Whether the angels that fell partook of the blessedness which + the holy angels have always enjoyed from the time of their creation._ + +And since these things are so, those spirits whom we call angels were +never at any time or in any way darkness, but, as soon as they were +made, were made light; yet they were not so created in order that +they might exist and live in any way whatever, but were enlightened +that they might live wisely and blessedly. Some of them, having +turned away from this light, have not won this wise and blessed life, +which is certainly eternal, and accompanied with the sure confidence +of its eternity; but they have still the life of reason, though +darkened with folly, and this they cannot lose, even if they would. +But who can determine to what extent they were partakers of that +wisdom before they fell? And how shall we say that they participated +in it equally with those who through it are truly and fully blessed, +resting in a true certainty of eternal felicity? For if they had +equally participated in this true knowledge, then the evil angels +would have remained eternally blessed equally with the good, because +they were equally expectant of it. For, though a life be never so +long, it cannot be truly called eternal if it is destined to have +an end; for it is called life inasmuch as it is lived, but eternal +because it has no end. Wherefore, although everything eternal is not +therefore blessed (for hell-fire is eternal), yet if no life can be +truly and perfectly blessed except it be eternal, the life of these +angels was not blessed, for it was doomed to end, and therefore not +eternal, whether they knew it or not. In the one case fear, in the +other ignorance, prevented them from being blessed. And even if +their ignorance was not so great as to breed in them a wholly false +expectation, but left them wavering in uncertainty whether their +good would be eternal or would some time terminate, this very doubt +concerning so grand a destiny was incompatible with the plenitude +of blessedness which we believe the holy angels enjoyed. For we do +not so narrow and restrict the application of the term "blessedness" +as to apply it to God only,[467] though doubtless He is so truly +blessed that greater blessedness cannot be; and, in comparison of His +blessedness, what is that of the angels, though, according to their +capacity, they be perfectly blessed? + + + 12. _A comparison of the blessedness of the righteous, who have not + yet received the divine reward, with that of our first parents + in paradise._ + +And the angels are not the only members of the rational and +intellectual creation whom we call blessed. For who will take upon him +to deny that those first men in Paradise were blessed previously to +sin, although they were uncertain how long their blessedness was to +last, and whether it would be eternal (and eternal it would have been +had they not sinned),--who, I say, will do so, seeing that even now we +not unbecomingly call those blessed whom we see leading a righteous +and holy life in hope of immortality, who have no harrowing remorse of +conscience, but obtain readily divine remission of the sins of their +present infirmity? These, though they are certain that they shall be +rewarded if they persevere, are not certain that they will persevere. +For what man can know that he will persevere to the end in the exercise +and increase of grace, unless he has been certified by some revelation +from Him who, in His just and secret judgment, while He deceives none, +informs few regarding this matter? Accordingly, so far as present +comfort goes, the first man in Paradise was more blessed than any just +man in this insecure state; but as regards the hope of future good, +every man who not merely supposes, but certainly knows that he shall +eternally enjoy the most high God in the company of angels, and beyond +the reach of ill,--this man, no matter what bodily torments afflict +him, is more blessed than was he who, even in that great felicity of +Paradise, was uncertain of his fate.[468] + + + 13. _Whether all the angels were so created in one common state of + felicity, that those who fell were not aware that they would + fall, and that those who stood received assurance of their own + perseverance after the ruin of the fallen._ + +From all this, it will readily occur to any one that the blessedness +which an intelligent being desires as its legitimate object results +from a combination of these two things, namely, that it uninterruptedly +enjoy the unchangeable good, which is God; and that it be delivered +from all dubiety, and know certainly that it shall eternally abide in +the same enjoyment. That it is so with the angels of light we piously +believe; but that the fallen angels, who by their own default lost that +light, did not enjoy this blessedness even before they sinned, reason +bids us conclude. Yet if their life was of any duration before they +fell, we must allow them a blessedness of some kind, though not that +which is accompanied with foresight. Or, if it seems hard to believe +that, when the angels were created, some were created in ignorance +either of their perseverance or their fall, while others were most +certainly assured of the eternity of their felicity,--if it is hard to +believe that they were not all from the beginning on an equal footing, +until these who are now evil did of their own will fall away from the +light of goodness, certainly it is much harder to believe that the +holy angels are now uncertain of their eternal blessedness, and do +not know regarding themselves as much as we have been able to gather +regarding them from the Holy Scriptures. For what catholic Christian +does not know that no new devil will ever arise among the good angels, +as he knows that this present devil will never again return into +the fellowship of the good? For the truth in the gospel promises to +the saints and the faithful that they will be equal to the angels of +God; and it is also promised them that they will "go away into life +eternal."[469] But if we are certain that we shall never lapse from +eternal felicity, while they are not certain, then we shall not be +their equals, but their superiors. But as the truth never deceives, and +as we shall be their equals, they must be certain of their blessedness. +And because the evil angels could not be certain of that, since their +blessedness was destined to come to an end, it follows either that the +angels were unequal, or that, if equal, the good angels were assured of +the eternity of their blessedness after the perdition of the others; +unless, possibly, some one may say that the words of the Lord about +the devil, "He was a murderer from the beginning, and abode not in the +truth,"[470] are to be understood as if he was not only a murderer +from the beginning of the human race, when man, whom he could kill by +his deceit, was made, but also that he did not abide in the truth from +the time of his own creation, and was accordingly never blessed with +the holy angels, but refused to submit to his Creator, and proudly +exulted as if in a private lordship of his own, and was thus deceived +and deceiving. For the dominion of the Almighty cannot be eluded; +and he who will not piously submit himself to things as they are, +proudly feigns, and mocks himself with a state of things that does +not exist; so that what the blessed Apostle John says thus becomes +intelligible: "The devil sinneth from the beginning,"[471]--that is, +from the time he was created he refused righteousness which none but a +will piously subject to God can enjoy. Whoever adopts this opinion at +least disagrees with those heretics the Manichees, and with any other +pestilential sect that may suppose that the devil has derived from some +adverse evil principle a nature proper to himself. These persons are so +befooled by error, that, although they acknowledge with ourselves the +authority of the gospels, they do not notice that the Lord did not say, +"The devil was naturally a stranger to the truth," but "The devil abode +not in the truth," by which He meant us to understand that he had +fallen from the truth, in which, if he had abode, he would have become +a partaker of it, and have remained in blessedness along with the holy +angels.[472] + + + 14. _An explanation of what is said of the devil, that he did not + abide in the truth, because the truth was not in him._ + +Moreover, as if we had been inquiring why the devil did not abide in +the truth, our Lord subjoins the reason, saying, "because the truth +is not in him." Now, it would be in him had he abode in it. But the +phraseology is unusual. For, as the words stand, "He abode not in the +truth, because the truth is not in him," it seems as if the truth's +not being in him were the cause of his not abiding in it; whereas his +not abiding in the truth is rather the cause of its not being in him. +The same form of speech is found in the psalm: "I have called upon +Thee, for Thou hast heard me, O God,"[473] where we should expect it +to be said, Thou hast heard me, O God, for I have called upon Thee. +But when he had said, "I have called," then, as if some one were +seeking proof of this, he demonstrates the effectual earnestness of +his prayer by the effect of God's hearing it; as if he had said, The +proof that I have prayed is that Thou hast heard me. + + + 15. _How we are to understand the words, "The devil sinneth from + the beginning."_ + +As for what John says about the devil, "The devil sinneth from the +beginning,"[474] they[475] who suppose it is meant hereby that the +devil was made with a sinful nature, misunderstand it; for if sin be +natural, it is not sin at all. And how do they answer the prophetic +proofs,--either what Isaiah says when he represents the devil under +the person of the king of Babylon, "How art thou fallen, O Lucifer, +son of the morning!"[476] or what Ezekiel says, "Thou hast been in +Eden, the garden of God; every precious stone was thy covering,"[477] +where it is meant that he was some time without sin; for a little +after it is still more explicitly said, "Thou wast perfect in thy +ways?" And if these passages cannot well be otherwise interpreted, +we must understand by this one also, "He abode not in the truth," +that he was once in the truth, but did not remain in it. And from +this passage, "The devil sinneth from the beginning," it is not +to be supposed that he sinned from the beginning of his created +existence, but from the beginning of his sin, when by his pride he +had once commenced to sin. There is a passage, too, in the Book of +Job, of which the devil is the subject: "This is the beginning of the +creation of God, which He made to be a sport to His angels,"[478] +which agrees with the psalm, where it is said, "There is that +dragon which Thou hast made to be a sport therein."[479] But these +passages are not to lead us to suppose that the devil was originally +created to be the sport of the angels, but that he was doomed to +this punishment after his sin. His beginning, then, is the handiwork +of God; for there is no nature, even among the least, and lowest, +and last of the beasts, which was not the work of Him from whom has +proceeded all measure, all form, all order, without which nothing can +be planned or conceived. How much more, then, is this angelic nature, +which surpasses in dignity all else that He has made, the handiwork +of the Most High! + + + 16. _Of the ranks and differences of the creatures, estimated by + their utility, or according to the natural gradations of being._ + +For, among those beings which exist, and which are not of God +the Creator's essence, those which have life are ranked above +those which have none; those that have the power of generation, +or even of desiring, above those which want this faculty. And, +among things that have life, the sentient are higher than those +which have no sensation, as animals are ranked above trees. And, +among the sentient, the intelligent are above those that have not +intelligence,--men, _e.g._, above cattle. And, among the intelligent, +the immortal, such as the angels, above the mortal, such as men. +These are the gradations according to the order of nature; but +according to the utility each man finds in a thing, there are various +standards of value, so that it comes to pass that we prefer some +things that have no sensation to some sentient beings. And so strong +is this preference, that, had we the power, we would abolish the +latter from nature altogether, whether in ignorance of the place they +hold in nature, or, though we know it, sacrificing them to our own +convenience. Who, _e.g._, would not rather have bread in his house +than mice, gold than fleas? But there is little to wonder at in +this, seeing that even when valued by men themselves (whose nature +is certainly of the highest dignity), more is often given for a +horse than for a slave, for a jewel than for a maid. Thus the reason +of one contemplating nature prompts very different judgments from +those dictated by the necessity of the needy, or the desire of the +voluptuous; for the former considers what value a thing in itself has +in the scale of creation, while necessity considers how it meets its +need; reason looks for what the mental light will judge to be true, +while pleasure looks for what pleasantly titillates the bodily sense. +But of such consequence in rational natures is the weight, so to +speak, of will and of love, that though in the order of nature angels +rank above men, yet, by the scale of justice, good men are of greater +value than bad angels. + + + 17. _That the flaw of wickedness is not nature, but contrary to + nature, and has its origin, not in the Creator, but in the will._ + +It is with reference to the nature, then, and not to the wickedness +of the devil, that we are to understand these words, "This is the +beginning of God's handiwork;"[480] for, without doubt, wickedness +can be a flaw or vice[481] only where the nature previously was not +vitiated. Vice, too, is so contrary to nature, that it cannot but +damage it. And therefore departure from God would be no vice, unless +in a nature whose property it was to abide with God. So that even +the wicked will is a strong proof of the goodness of the nature. But +God, as He is the supremely good Creator of good natures, so is He of +evil wills the most just Ruler; so that, while they make an ill use +of good natures, He makes a good use even of evil wills. Accordingly, +He caused the devil (good by God's creation, wicked by his own will) +to be cast down from his high position, and to become the mockery +of His angels,--that is, He caused his temptations to benefit those +whom he wishes to injure by them. And because God, when He created +him, was certainly not ignorant of his future malignity, and foresaw +the good which He Himself would bring out of his evil, therefore +says the psalm, "This leviathan whom Thou hast made to be a sport +therein,"[482] that we may see that, even while God in His goodness +created him good, He yet had already foreseen and arranged how He +would make use of him when he became wicked. + + + 18. _Of the beauty of the universe, which becomes, by God's + ordinance, more brilliant by the opposition of contraries._ + +For God would never have created any, I do not say angel, but even +man, whose future wickedness He foreknew, unless He had equally +known to what uses in behalf of the good He could turn him, thus +embellishing the course of the ages, as it were an exquisite poem +set off with antitheses. For what are called antitheses are among +the most elegant of the ornaments of speech. They might be called in +Latin "oppositions," or, to speak more accurately, "contrapositions;" +but this word is not in common use among us,[483] though the Latin, +and indeed the languages of all nations, avail themselves of the same +ornaments of style. In the Second Epistle to the Corinthians the +Apostle Paul also makes a graceful use of antithesis, in that place +where he says, "By the armour of righteousness on the right hand and +on the left, by honour and dishonour, by evil report and good report: +as deceivers, and yet true; as unknown, and yet well known; as dying, +and, behold, we live; as chastened, and not killed; as sorrowful, yet +alway rejoicing; as poor, yet making many rich; as having nothing, +and yet possessing all things."[484] As, then, these oppositions of +contraries lend beauty to the language, so the beauty of the course +of this world is achieved by the opposition of contraries, arranged, +as it were, by an eloquence not of words, but of things. This is +quite plainly stated in the Book of Ecclesiasticus, in this way: +"Good is set against evil, and life against death: so is the sinner +against the godly. So look upon all the works of the Most High, and +these are two and two, one against another."[485] + + + 19. _What, seemingly, we are to understand by the words, "God + divided the light from the darkness."_ + +Accordingly, though the obscurity of the divine word has certainly +this advantage, that it causes many opinions about the truth to be +started and discussed, each reader seeing some fresh meaning in +it, yet, whatever is said to be meant by an obscure passage should +be either confirmed by the testimony of obvious facts, or should +be asserted in other and less ambiguous texts. This obscurity is +beneficial, whether the sense of the author is at last reached after +the discussion of many other interpretations, or whether, though +that sense remain concealed, other truths are brought out by the +discussion of the obscurity. To me it does not seem incongruous with +the working of God, if we understand that the angels were created +when that first light was made, and that a separation was made +between the holy and the unclean angels, when, as is said, "God +divided the light from the darkness; and God called the light Day, +and the darkness He called Night." For He alone could make this +discrimination, who was able also, before they fell, to foreknow that +they would fall, and that, being deprived of the light of truth, they +would abide in the darkness of pride. For, so far as regards the day +and night, with which we are familiar, He commanded those luminaries +of heaven that are obvious to our senses to divide between the light +and the darkness. "Let there be," He says, "lights in the firmament +of the heaven, to divide the day from the night;" and shortly after +He says, "And God made two great lights; the greater light to rule +the day, and the lesser light to rule the night: the stars also. And +God set them in the firmament of the heaven, to give light upon the +earth, and to rule over the day and over the night, and to divide the +light from the darkness."[486] But between that light, which is the +holy company of the angels spiritually radiant with the illumination +of the truth, and that opposing darkness, which is the noisome +foulness of the spiritual condition of those angels who are turned +away from the light of righteousness, only He Himself could divide, +from whom their wickedness (not of nature, but of will), while yet it +was future, could not be hidden or uncertain. + + + 20. _Of the words which follow the separation of light and + darkness, "And God saw the light that it was good."_ + +Then, we must not pass from this passage of Scripture without noticing +that when God said, "Let there be light, and there was light," it was +immediately added, "And God saw the light that it was good." No such +expression followed the statement that He separated the light from the +darkness, and called the light Day and the darkness Night, lest the +seal of His approval might seem to be set on such darkness, as well as +on the light. For when the darkness was not subject of disapprobation, +as when it was divided by the heavenly bodies from this light which our +eyes discern, the statement that God saw that it was good is inserted, +not before, but after the division is recorded. "And God set them," so +runs the passage, "in the firmament of the heaven, to give light upon +the earth, and to rule over the day and over the night, and to divide +the light from the darkness: and God saw that it was good." For He +approved of both, because both were sinless. But where God said, "Let +there be light, and there was light; and God saw the light that it was +good;" and the narrative goes on, "and God divided the light from the +darkness: and God called the light Day, and the darkness He called +Night," there was not in this place subjoined the statement, "And God +saw that it was good," lest both should be designated good, while one +of them was evil, not by nature, but by its own fault. And therefore, +in this case, the light alone received the approbation of the Creator, +while the angelic darkness, though it had been ordained, was yet not +approved. + + + 21. _Of God's eternal and unchangeable knowledge and will, whereby + all He has made pleased Him in the eternal design as well as in + the actual result._ + +For what else is to be understood by that invariable refrain, "And +God saw that it was good," than the approval of the work in its +design, which is the wisdom of God? For certainly God did not in the +actual achievement of the work first learn that it was good, but, +on the contrary, nothing would have been made had it not been first +known by Him. While, therefore, He sees that that is good which, had +He not seen it before it was made, would never have been made, it +is plain that He is not discovering, but teaching that it is good. +Plato, indeed, was bold enough to say that, when the universe was +completed, God was, as it were, elated with joy.[487] And Plato was +not so foolish as to mean by this that God was rendered more blessed +by the novelty of His creation; but he wished thus to indicate that +the work now completed met with its Maker's approval, as it had while +yet in design. It is not as if the knowledge of God were of various +kinds, knowing in different ways things which as yet are not, things +which are, and things which have been. For not in our fashion does He +look forward to what is future, nor at what is present, nor back upon +what is past; but in a manner quite different and far and profoundly +remote from our way of thinking. For He does not pass from this to +that by transition of thought, but beholds all things with absolute +unchangeableness; so that of those things which emerge in time, the +future, indeed, are not yet, and the present are now, and the past no +longer are; but all of these are by Him comprehended in His stable +and eternal presence. Neither does He see in one fashion by the eye, +in another by the mind, for He is not composed of mind and body; nor +does His present knowledge differ from that which it ever was or +shall be, for those variations of time, past, present, and future, +though they alter our knowledge, do not affect His, "with whom is +no variableness, neither shadow of turning."[488] Neither is there +any growth from thought to thought in the conceptions of Him whose +spiritual vision all things which He knows are at once embraced. For +as without any movement that time can measure, He Himself moves all +temporal things, so He knows all times with a knowledge that time +cannot measure. And therefore He saw that what He had made was good, +when He saw that it was good to make it. And when He saw it made, He +had not on that account a twofold nor any way increased knowledge +of it; as if He had less knowledge before He made what He saw. For +certainly He would not be the perfect worker He is, unless His +knowledge were so perfect as to receive no addition from His finished +works. Wherefore, if the only object had been to inform us who made +the light, it had been enough to say, "God made the light;" and if +further information regarding the means by which it was made had been +intended, it would have sufficed to say, "And God said, Let there be +light, and there was light," that we might know not only that God +had made the world, but also that He had made it by the word. But +because it was right that three leading truths regarding the creature +be intimated to us, viz., who made it, by what means, and why, it is +written, "God said, Let there be light, and there was light. And God +saw the light that it was good." If, then, we ask who made it, it +was "God." If, by what means, He said "Let it be," and it was. If we +ask, why He made it, "it was good." Neither is there any author more +excellent than God, nor any skill more efficacious than the word of +God, nor any cause better than that good might be created by the good +God. This also Plato has assigned as the most sufficient reason for +the creation of the world, that good works might be made by a good +God;[489] whether he read this passage, or, perhaps, was informed of +these things by those who had read them, or, by his quick-sighted +genius, penetrated to things spiritual and invisible through the +things that are created, or was instructed regarding them by those +who had discerned them. + + + 22. _Of those who do not approve of certain things which are a part + of this good creation of a good Creator, and who think that + there is some natural evil._ + +This cause, however, of a good creation, namely, the goodness of +God,--this cause, I say, so just and fit, which, when piously and +carefully weighed, terminates all the controversies of those who +inquire into the origin of the world, has not been recognised by +some heretics,[490] because there are, forsooth, many things, such +as fire, frost, wild beasts, and so forth, which do not suit but +injure this thin-blooded and frail mortality of our flesh, which is +at present under just punishment. They do not consider how admirable +these things are in their own places, how excellent in their own +natures, how beautifully adjusted to the rest of creation, and how +much grace they contribute to the universe by their own contributions +as to a commonwealth; and how serviceable they are even to ourselves, +if we use them with a knowledge of their fit adaptations,--so that +even poisons, which are destructive when used injudiciously, become +wholesome and medicinal when used in conformity with their qualities +and design; just as, on the other hand, those things which give us +pleasure, such as food, drink, and the light of the sun, are found to +be hurtful when immoderately or unseasonably used. And thus divine +providence admonishes us not foolishly to vituperate things, but to +investigate their utility with care; and, where our mental capacity +or infirmity is at fault, to believe that there is a utility, though +hidden, as we have experienced that there were other things which +we all but failed to discover. For this concealment of the use of +things is itself either an exercise of our humility or a levelling +of our pride; for no nature at all is evil, and this is a name for +nothing but the want of good. But from things earthly to things +heavenly, from the visible to the invisible, there are some things +better than others; and for this purpose are they unequal, in order +that they might all exist. Now God is in such sort a great worker in +great things, that He is not less in little things,--for these little +things are to be measured not by their own greatness (which does +not exist), but by the wisdom of their Designer; as, in the visible +appearance of a man, if one eyebrow be shaved off, how nearly nothing +is taken from the body, but how much from the beauty!--for that is +not constituted by bulk, but by the proportion and arrangement of +the members. But we do not greatly wonder that persons, who suppose +that some evil nature has been generated and propagated by a kind of +opposing principle proper to it, refuse to admit that the cause of +the creation was this, that the good God produced a good creation. +For they believe that He was driven to this enterprise of creation +by the urgent necessity of repulsing the evil that warred against +Him, and that He mixed His good nature with the evil for the sake +of restraining and conquering it; and that this nature of His, +being thus shamefully polluted, and most cruelly oppressed and held +captive, He labours to cleanse and deliver it, and with all His pains +does not wholly succeed; but such part of it as could not be cleansed +from that defilement is to serve as a prison and chain of the +conquered and incarcerated enemy. The Manichæans would not drivel, +or rather, rave in such a style as this, if they believed the nature +of God to be, as it is, unchangeable and absolutely incorruptible, +and subject to no injury; and if, moreover, they held in Christian +sobriety, that the soul which has shown itself capable of being +altered for the worse by its own will, and of being corrupted by sin, +and so, of being deprived of the light of eternal truth,--that this +soul, I say, is not a part of God, nor of the same nature as God, but +is created by Him, and is far different from its Creator. + + + 23. _Of the error in which the doctrine of Origen is involved._ + +But it is much more surprising that some even of those who, with +ourselves, believe that there is one only source of all things, +and that no nature which is not divine can exist unless originated +by that Creator, have yet refused to accept with a good and simple +faith this so good and simple a reason of the world's creation, +that a good God made it good; and that the things created, being +different from God, were inferior to Him, and yet were good, being +created by none other than He. But they say that souls, though not, +indeed, parts of God, but created by Him, sinned by abandoning God; +that, in proportion to their various sins, they merited different +degrees of debasement from heaven to earth, and diverse bodies as +prison-houses; and that this is the world, and this the cause of its +creation, not the production of good things, but the restraining +of evil. Origen is justly blamed for holding this opinion. For in +the books which he entitles περὶ ἀρχῶν, that is, _Of origins_, this +is his sentiment, this his utterance. And I cannot sufficiently +express my astonishment, that a man so erudite and well versed in +ecclesiastical literature, should not have observed, in the first +place, how opposed this is to the meaning of this authoritative +Scripture, which, in recounting all the works of God, regularly +adds, "And God saw that it was good;" and, when all were completed, +inserts the words, "And God saw everything that He had made, and, +behold, it was very good."[491] Was it not obviously meant to be +understood that there was no other cause of the world's creation than +that good creatures should be made by a good God? In this creation, +had no one sinned, the world would have been filled and beautified +with natures good without exception; and though there is sin, all +things are not therefore full of sin, for the great majority of the +heavenly inhabitants preserve their nature's integrity. And the +sinful will, though it violated the order of its own nature, did not +on that account escape the laws of God, who justly orders all things +for good. For as the beauty of a picture is increased by well-managed +shadows, so, to the eye that has skill to discern it, the universe is +beautified even by sinners, though, considered by themselves, their +deformity is a sad blemish. + +In the second place, Origen, and all who think with him, ought to +have seen that if it were the true opinion that the world was created +in order that souls might, for their sins, be accommodated with +bodies in which they should be shut up as in houses of correction, +the more venial sinners receiving lighter and more ethereal bodies, +while the grosser and graver sinners received bodies more crass and +grovelling, then it would follow that the devils, who are deepest +in wickedness, ought, rather than even wicked men, to have earthly +bodies, since these are the grossest and least ethereal of all. But +in point of fact, that we might see that the deserts of souls are +not to be estimated by the qualities of bodies, the wickedest devil +possesses an ethereal body, while man, wicked, it is true, but with +a wickedness small and venial in comparison with his, received even +before his sin a body of clay. And what more foolish assertion can +be advanced than that God, by this sun of ours, did not design to +benefit the material creation, or lend lustre to its loveliness, +and therefore created one single sun for this single world, but +that it so happened that one soul only had so sinned as to deserve +to be enclosed in such a body as it is? On this principle, if it +had chanced that not one, but two, yea, or ten, or a hundred had +sinned similarly, and with a like degree of guilt, then this world +would have one hundred suns. And that such is not the case, is due +not to the considerate foresight of the Creator, contriving the +safety and beauty of things material, but rather to the fact that +so fine a quality of sinning was hit upon by only one soul, so that +it alone has merited such a body. Manifestly persons holding such +opinions should aim at confining, not souls of which they know not +what they say, but themselves, lest they fall, and deservedly, far +indeed from the truth. And as to these three answers which I formerly +recommended when in the case of any creature the questions are put, +Who made it? By what means? Why? that it should be replied, God, By +the Word, Because it was good,--as to these three answers, it is very +questionable whether the Trinity itself is thus mystically indicated, +that is, the Father, the Son, and the Holy Ghost, or whether +there is some good reason for this acceptation in this passage of +Scripture,--this, I say, is questionable, and one can't be expected +to explain everything in one volume. + + + 24. _Of the divine Trinity, and the indications of its presence + scattered everywhere among its works._ + +We believe, we maintain, we faithfully preach, that the Father +begat the Word, that is, Wisdom, by which all things were made, the +only-begotten Son, one as the Father is one, eternal as the Father +is eternal, and, equally with the Father, supremely good; and that +the Holy Spirit is the Spirit alike of Father and of Son, and is +Himself consubstantial and co-eternal with both; and that this whole +is a Trinity by reason of the individuality[492] of the persons, and +one God by reason of the indivisible divine substance, as also one +Almighty by reason of the indivisible omnipotence; yet so that, when +we inquire regarding each singly, it is said that each is God and +Almighty; and, when we speak of all together, it is said that there +are not three Gods, nor three Almighties, but one God Almighty; so +great is the indivisible unity of these Three, which requires that it +be so stated. But, whether the Holy Spirit of the Father, and of the +Son, who are both good, can be with propriety called the goodness of +both, because He is common to both, I do not presume to determine +hastily. Nevertheless, I would have less hesitation in saying that +He is the holiness of both, not as if He were a divine attribute +merely, but Himself also the divine substance, and the third person +in the Trinity. I am the rather emboldened to make this statement, +because, though the Father is a spirit, and the Son a spirit, and the +Father holy, and the Son holy, yet the third person is distinctively +called the Holy Spirit, as if He were the substantial holiness +consubstantial with the other two. But if the divine goodness is +nothing else than the divine holiness, then certainly it is a +reasonable studiousness, and not presumptuous intrusion, to inquire +whether the same Trinity be not hinted at in an enigmatical mode of +speech, by which our inquiry is stimulated, when it is written who +made each creature, and by what means, and why. For it is the Father +of the Word who said, Let there be. And that which was made when He +spoke was certainly made by means of the Word. And by the words, "God +saw that it was good," it is sufficiently intimated that God made +what was made not from any necessity, nor for the sake of supplying +any want, but solely from His own goodness, _i.e._, because it was +good. And this is stated after the creation had taken place, that +there might be no doubt that the thing made satisfied the goodness on +account of which it was made. And if we are right in understanding +that this goodness is the Holy Spirit, then the whole Trinity is +revealed to us in the creation. In this, too, is the origin, the +enlightenment, the blessedness of the holy city which is above among +the holy angels. For if we inquire whence it is, God created it; or +whence its wisdom, God illumined it; or whence its blessedness, God +is its bliss. It has its form by subsisting in Him; its enlightenment +by contemplating Him; its joy by abiding in Him. It is; it sees; it +loves. In God's eternity is its life; in God's truth its light; in +God's goodness its joy. + + + 25. _Of the division of philosophy into three parts._ + +As far as one can judge, it is for the same reason that philosophers +have aimed at a threefold division of science, or rather, were enabled +to see that there was a threefold division (for they did not invent, +but only discovered it), of which one part is called physical, another +logical, the third ethical. The Latin equivalents of these names +are now naturalized in the writings of many authors, so that these +divisions are called natural, rational, and moral, on which I have +touched slightly in the eighth book. Not that I would conclude that +these philosophers, in this threefold division, had any thought of +a trinity in God, although Plato is said to have been the first to +discover and promulgate this distribution, and he saw that God alone +could be the author of nature, the bestower of intelligence, and the +kindler of love by which life becomes good and blessed. But certain +it is that, though philosophers disagree both regarding the nature +of things, and the mode of investigating truth, and of the good to +which all our actions ought to tend, yet in these three great general +questions all their intellectual energy is spent. And though there +be a confusing diversity of opinion, every man striving to establish +his own opinion in regard to each of these questions, yet no one of +them all doubts that nature has some cause, science some method, life +some end and aim. Then, again, there are three things which every +artificer must possess if he is to effect anything,--nature, education, +practice. Nature is to be judged by capacity, education by knowledge, +practice by its fruit. I am aware that, properly speaking, fruit is +what one enjoys, use [practice] what one uses. And this seems to be +the difference between them, that we are said to _enjoy_ that which +in itself, and irrespective of other ends, delights us; to _use_ that +which we seek for the sake of some end beyond. For which reason the +things of time are to be used rather than enjoyed, that we may deserve +to enjoy things eternal; and not as those perverse creatures who would +fain enjoy money and use God,--not spending money for God's sake, but +worshipping God for money's sake. However, in common parlance, we both +use fruits and enjoy uses. For we correctly speak of the "fruits of +the field," which certainly we all use in the present life. And it was +in accordance with this usage that I said that there were three things +to be observed in a man, nature, education, practice. From these the +philosophers have elaborated, as I said, the threefold division of +that science by which a blessed life is attained: the natural having +respect to nature, the rational to education, the moral to practice. +If, then, we were ourselves the authors of our nature, we should have +generated knowledge in ourselves, and should not require to reach +it by education, _i.e._, by learning it from others. Our love, too, +proceeding from ourselves and returning to us, would suffice to make +our life blessed, and would stand in need of no extraneous enjoyment. +But now, since our nature has God as its requisite author, it is +certain that we must have Him for our teacher that we may be wise; Him, +too, to dispense to us spiritual sweetness that we may be blessed. + + + 26. _Of the image of the supreme Trinity, which we find in some + sort in human nature even in its present state._ + +And we indeed recognise in ourselves the image of God, that is, +of the supreme Trinity, an image which, though it be not equal to +God, or rather, though it be very far removed from Him,--being +neither co-eternal, nor, to say all in a word, consubstantial with +Him,--is yet nearer to Him in nature than any other of His works, +and is destined to be yet restored, that it may bear a still closer +resemblance. For we both are, and know that we are, and delight in +our being, and our knowledge of it. Moreover, in these three things +no true-seeming illusion disturbs us; for we do not come into contact +with these by some bodily sense, as we perceive the things outside +of us,--colours, _e.g._, by seeing, sounds by hearing, smells by +smelling, tastes by tasting, hard and soft objects by touching,--of +all which sensible objects it is the images resembling them, but not +themselves which we perceive in the mind and hold in the memory, and +which excite us to desire the objects. But, without any delusive +representation of images or phantasms, I am most certain that I am, +and that I know and delight in this. In respect of these truths, I +am not at all afraid of the arguments of the Academicians, who say, +What if you are deceived? For if I am deceived, I am.[493] For he +who is not, cannot be deceived; and if I am deceived, by this same +token I am. And since I am if I am deceived, how am I deceived in +believing that I am? for it is certain that I am if I am deceived. +Since, therefore, I, the person deceived, should be, even if I were +deceived, certainly I am not deceived in this knowledge that I am. +And, consequently, neither am I deceived in knowing that I know. For, +as I know that I am, so I know this also, that I know. And when I +love these two things, I add to them a certain third thing, namely, +my love, which is of equal moment. For neither am I deceived in this, +that I love, since in those things which I love I am not deceived; +though even if these were false, it would still be true that I +_loved_ false things. For how could I justly be blamed and prohibited +from loving false things, if it were false that I loved them? But, +since they are true and real, who doubts that when they are loved, +the love of them is itself true and real? Further, as there is no one +who does not wish to be happy, so there is no one who does not wish +to be. For how can he be happy, if he is nothing? + + + 27. _Of existence, and knowledge of it, and the love of both._ + +And truly the very fact of existing is by some natural spell so +pleasant, that even the wretched are, for no other reason, unwilling +to perish; and, when they feel that they are wretched, wish not that +they themselves be annihilated, but that their misery be so. Take +even those who, both in their own esteem, and in point of fact, are +utterly wretched, and who are reckoned so, not only by wise men on +account of their folly, but by those who count themselves blessed, +and who think them wretched because they are poor and destitute,--if +any one should give these men an immortality, in which their misery +should be deathless, and should offer the alternative, that if they +shrank from existing eternally in the same misery they might be +annihilated, and exist nowhere at all, nor in any condition, on the +instant they would joyfully, nay exultantly, make election to exist +always, even in such a condition, rather than not exist at all. The +well-known feeling of such men witnesses to this. For when we see +that they fear to die, and will rather live in such misfortune than +end it by death, is it not obvious enough how nature shrinks from +annihilation? And, accordingly, when they know that they must die, +they seek, as a great boon, that this mercy be shown them, that they +may a little longer live in the same misery, and delay to end it by +death. And so they indubitably prove with what glad alacrity they +would accept immortality, even though it secured to them endless +destruction. What! do not even all irrational animals, to whom such +calculations are unknown, from the huge dragons down to the least +worms, all testify that they wish to exist, and therefore shun death +by every movement in their power? Nay, the very plants and shrubs, +which have no such life as enables them to shun destruction by +movements we can see, do not they all seek, in their own fashion, +to conserve their existence, by rooting themselves more and more +deeply in the earth, that so they may draw nourishment, and throw out +healthy branches towards the sky? In fine, even the lifeless bodies, +which want not only sensation but seminal life, yet either seek the +upper air or sink deep, or are balanced in an intermediate position, +so that they may protect their existence in that situation where they +can exist in most accordance with their nature. + +And how much human nature loves the knowledge of its existence, and +how it shrinks from being deceived, will be sufficiently understood +from this fact, that every man prefers to grieve in a sane mind, +rather than to be glad in madness. And this grand and wonderful +instinct belongs to men alone of all animals; for, though some of +them have keener eyesight than ourselves for this world's light, they +cannot attain to that spiritual light with which our mind is somehow +irradiated, so that we can form right judgments of all things. For +our power to judge is proportioned to our acceptance of this light. +Nevertheless, the irrational animals, though they have not knowledge, +have certainly something resembling knowledge; whereas the other +material things are said to be sensible, not because they have +senses, but because they are the objects of our senses. Yet among +plants, their nourishment and generation have some resemblance to +sensible life. However, both these and all material things have their +causes hidden in their nature; but their outward forms, which lend +beauty to this visible structure of the world, are perceived by our +senses, so that they seem to wish to compensate for their own want +of knowledge by providing us with knowledge. But we perceive them +by our bodily senses in such a way that we do not judge of them by +these senses. For we have another and far superior sense, belonging +to the inner man, by which we perceive what things are just, and what +unjust,--just by means of an intelligible idea, unjust by the want of +it. This sense is aided in its functions neither by the eyesight, nor +by the orifice of the ear, nor by the air-holes of the nostrils, nor +by the palate's taste, nor by any bodily touch. By it I am assured +both that I am, and that I know this; and these two I love, and in +the same manner I am assured that I love them. + + + 28. _Whether we ought to love the love itself with which we love + our existence and our knowledge of it, that so we may more + nearly resemble the image of the divine Trinity._ + +We have said as much as the scope of this work demands regarding +these two things, to wit, our existence, and our knowledge of it, and +how much they are loved by us, and how there is found even in the +lower creatures a kind of likeness of these things, and yet with a +difference. We have yet to speak of the love wherewith they are loved, +to determine whether this love itself is loved. And doubtless it is; +and this is the proof. Because in men who are justly loved, it is +rather love itself that is loved; for he is not justly called a good +man who knows what is good, but who loves it. Is it not then obvious +that we love in ourselves the very love wherewith we love whatever +good we love? For there is also a love wherewith we love that which +we ought not to love; and this love is hated by him who loves that +wherewith he loves what ought to be loved. For it is quite possible +for both to exist in one man. And this co-existence is good for a man, +to the end that this love which conduces to our living well may grow, +and the other, which leads us to evil may decrease, until our whole +life be perfectly healed and transmuted into good. For if we were +beasts, we should love the fleshly and sensual life, and this would +be our sufficient good; and when it was well with us in respect of +it, we should seek nothing beyond. In like manner, if we were trees, +we could not, indeed, in the strict sense of the word, love anything; +nevertheless we should seem, as it were, to long for that by which +we might become more abundantly and luxuriantly fruitful. If we were +stones, or waves, or wind, or flame, or anything of that kind, we +should want, indeed, both sensation and life, yet should possess a kind +of attraction towards our own proper position and natural order. For +the specific gravity of bodies is, as it were, their love, whether they +are carried downwards by their weight, or upwards by their levity. For +the body is borne by its gravity, as the spirit by love, whithersoever +it is borne.[494] But we are men, created in the image of our Creator, +whose eternity is true, and whose truth is eternal, whose love is +eternal and true, and who Himself is the eternal, true, and adorable +Trinity, without confusion, without separation; and, therefore, while, +as we run over all the works which He has established, we may detect, +as it were, His footprints, now more and now less distinct even in +those things that are beneath us, since they could not so much as +exist, or be bodied forth in any shape, or follow and observe any law, +had they not been made by Him who supremely is, and is supremely good +and supremely wise; yet in ourselves beholding His image, let us, like +that younger son of the gospel, come to ourselves, and arise and return +to Him from whom by our sin we had departed. There our being will have +no death, our knowledge no error, our love no mishap. But now, though +we are assured of our possession of these three things, not on the +testimony of others, but by our own consciousness of their presence, +and because we see them with our own most truthful interior vision, +yet, as we cannot of ourselves know how long they are to continue, and +whether they shall never cease to be, and what issue their good or +bad use will lead to, we seek for others who can acquaint us of these +things, if we have not already found them. Of the trustworthiness +of these witnesses, there will, not now, but subsequently, be an +opportunity of speaking. But in this book let us go on as we have +begun, with God's help, to speak of the city of God, not in its state +of pilgrimage and mortality, but as it exists ever immortal in the +heavens,--that is, let us speak of the holy angels who maintain their +allegiance to God, who never were, nor ever shall be, apostate, between +whom and those who forsook light eternal and became darkness, God, as +we have already said, made at the first a separation. + + + 29. _Of the knowledge by which the holy angels know God in His + essence, and by which they see the causes of His works in the + art of the worker, before they see them in the works of the + artist._ + +Those holy angels come to the knowledge of God not by audible words, +but by the presence to their souls of immutable truth, _i.e._, of +the only-begotten Word of God; and they know this Word Himself, +and the Father, and their Holy Spirit, and that this Trinity is +indivisible, and that the three persons of it are one substance, +and that there are not three Gods but one God; and this they so +know, that it is better understood by them than we are by ourselves. +Thus, too, they know the creature also, not in itself, but by this +better way, in the wisdom of God, as if in the art by which it was +created; and, consequently, they know themselves better in God than +in themselves, though they have also this latter knowledge. For +they were created, and are different from their Creator. In Him, +therefore, they have, as it were, a noonday knowledge; in themselves, +a twilight knowledge, according to our former explanations.[495] For +there is a great difference between knowing a thing in the design in +conformity to which it was made, and knowing it in itself,--_e.g._, +the straightness of lines and correctness of figures is known in one +way when mentally conceived, in another when described on paper; and +justice is known in one way in the unchangeable truth, in another in +the spirit of a just man. So is it with all other things,--as, the +firmament between the water above and below, which was called the +heaven; the gathering of the waters beneath, and the laying bare of +the dry land, and the production of plants and trees; the creation +of sun, moon, and stars; and of the animals out of the waters, +fowls, and fish, and monsters of the deep; and of everything that +walks or creeps on the earth, and of man himself, who excels all +that is on the earth,--all these things are known in one way by the +angels in the Word of God, in which they see the eternally abiding +causes and reasons according to which they were made, and in another +way in themselves: in the former, with a clearer knowledge; in the +latter, with a knowledge dimmer, and rather of the bare works than +of the design. Yet, when these works are referred to the praise and +adoration of the Creator Himself, it is as if morning dawned in the +minds of those who contemplate them. + + + 30. _Of the perfection of the number six, which is the first of + the numbers which is composed of its aliquot parts._ + +These works are recorded to have been completed in six days (the same +day being six times repeated), because six is a perfect number,--not +because God required a protracted time, as if He could not at once +create all things, which then should mark the course of time by the +movements proper to them, but because the perfection of the works was +signified by the number six. For the number six is the first which is +made up of its own[496] parts, _i.e._, of its sixth, third, and half, +which are respectively one, two, and three, and which make a total +of six. In this way of looking at a number, those are said to be its +parts which exactly divide it, as a half, a third, a fourth, or a +fraction with any denominator,--_e.g._, four is a part of nine, but not +therefore an aliquot part; but one is, for it is the ninth part; and +three is, for it is the third. Yet these two parts, the ninth and the +third, or one and three, are far from making its whole sum of nine. So +again, in the number ten, four is a part, yet does not divide it; but +one is an aliquot part, for it is a tenth; so it has a fifth, which +is two; and a half, which is five. But these three parts, a tenth, a +fifth, and a half, or one, two, and five, added together, do not make +ten, but eight. Of the number twelve, again, the parts added together +exceed the whole; for it has a twelfth, that is, one; a sixth, or two; +a fourth, which is three; a third, which is four; and a half, which +is six. But one, two, three, four, and six make up, not twelve, but +more, viz. sixteen. So much I have thought fit to state for the sake +of illustrating the perfection of the number six, which is, as I said, +the first which is exactly made up of its own parts added together; +and in this number of days God finished His work.[497] And, therefore, +we must not despise the science of numbers, which, in many passages +of holy Scripture, is found to be of eminent service to the careful +interpreter.[498] Neither has it been without reason numbered among +God's praises, "Thou hast ordered all things in number, and measure, +and weight."[499] + + + 31. _Of the seventh day, in which completeness and repose are + celebrated._ + +But, on the seventh day (_i.e._, the same day repeated seven times, +which number is also a perfect one, though for another reason), the +rest of God is set forth, and then, too, we first hear of its being +hallowed. So that God did not wish to hallow this day by His works, but +by His rest, which has no evening, for it is not a creature; so that, +being known in one way in the Word of God, and in another in itself, it +should make a twofold knowledge, daylight and dusk (day and evening). +Much more might be said about the perfection of the number seven, +but this book is already too long, and I fear lest I should seem to +catch at an opportunity of airing my little smattering of science more +childishly than profitably. I must speak, therefore, in moderation and +with dignity, lest, in too keenly following "number," I be accused of +forgetting "weight" and "measure." Suffice it here to say, that three +is the first whole number that is odd, four the first that is even, +and of these two, seven is composed. On this account it is often put +for all numbers together, as, "A just man falleth seven times, and +riseth up again,"[500]--that is, let him fall never so often, he will +not perish (and this was meant to be understood not of sins, but of +afflictions conducing to lowliness). Again, "Seven times a day will I +praise Thee,"[501] which elsewhere is expressed thus, "I will bless the +Lord _at all times_."[502] And many such instances are found in the +divine authorities, in which the number seven is, as I said, commonly +used to express the whole, or the completeness of anything. And so the +Holy Spirit, of whom the Lord says, "He will teach you all truth,"[503] +is signified by this number.[504] In it is the rest of God, the rest +His people find in Him. For rest is in the whole, _i.e._ in perfect +completeness, while in the part there is labour. And thus we labour +as long as we know in part; "but when that which is perfect is come, +then that which is in part shall be done away."[505] It is even with +toil we search into the Scriptures themselves. But the holy angels, +towards whose society and assembly we sigh while in this our toilsome +pilgrimage, as they already abide in their eternal home, so do they +enjoy perfect facility of knowledge and felicity of rest. It is without +difficulty that they help us; for their spiritual movements, pure and +free, cost them no effort. + + + 32. _Of the opinion that the angels were created before the world._ + +But if some one oppose our opinion, and say that the holy angels +are not referred to when it is said, "Let there be light, and there +was light;" if he suppose or teach that some material light, then +first created, was meant, and that the angels were created, not only +before the firmament dividing the waters and named "the heaven," but +also before the time signified in the words, "In the beginning God +created the heaven and the earth;" if he allege that this phrase, "In +the beginning," does not mean that nothing was made before (for the +angels were), but that God made all things by His Wisdom or Word, who +is named in Scripture "the Beginning," as He Himself, in the gospel, +replied to the Jews when they asked Him who He was, that He was the +Beginning;[506]--I will not contest the point, chiefly because it +gives me the liveliest satisfaction to find the Trinity celebrated +in the very beginning of the book of Genesis. For, having said, "In +the Beginning God created the heaven and the earth," meaning that the +Father made them in the Son (as the psalm testifies where it says, +"How manifold are Thy works, O Lord! in Wisdom hast Thou made them +all"[507]), a little afterwards mention is fitly made of the Holy +Spirit also. For, when it had been told us what kind of earth God +created at first, or what the mass or matter was which God, under +the name of "heaven and earth," had provided for the construction of +the world, as is told in the additional words, "And the earth was +without form, and void; and darkness was upon the face of the deep," +then, for the sake of completing the mention of the Trinity, it is +immediately added, "And the Spirit of God moved upon the face of the +waters." Let each one, then, take it as he pleases; for it is so +profound a passage, that it may well suggest, for the exercise of the +reader's tact, many opinions, and none of them widely departing from +the rule of faith. At the same time, let none doubt that the holy +angels in their heavenly abodes are, though not, indeed, co-eternal +with God, yet secure and certain of eternal and true felicity. To +their company the Lord teaches that His little ones belong; and not +only says, "They shall be equal to the angels of God,"[508] but +shows, too, what blessed contemplation the angels themselves enjoy, +saying, "Take heed that ye despise not one of these little ones: for +I say unto you, that in heaven their angels do always behold the face +of my Father which is in heaven."[509] + + + 33. _Of the two different and dissimilar communities of angels, + which are not inappropriately signified by the names light and + darkness._ + +That certain angels sinned, and were thrust down to the lowest parts +of this world, where they are, as it were, incarcerated till their +final damnation in the day of judgment, the Apostle Peter very +plainly declares, when he says that "God spared not the angels that +sinned, but cast them down to hell, and delivered them into chains +of darkness to be reserved unto judgment."[510] Who, then, can doubt +that God, either in foreknowledge or in act, separated between these +and the rest? And who will dispute that the rest are justly called +"light?" For even we who are yet living by faith, hoping only and not +yet enjoying equality with them, are already called "light" by the +apostle: "For ye were sometimes darkness, but now are ye light in the +Lord."[511] But as for these apostate angels, all who understand or +believe them to be worse than unbelieving men are well aware that +they are called "darkness." Wherefore, though light and darkness +are to be taken in their literal signification in these passages +of Genesis in which it is said, "God said, Let there be light, and +there was light," and "God divided the light from the darkness," yet, +for our part, we understand these two societies of angels,--the one +enjoying God, the other swelling with pride; the one to whom it is +said, "Praise ye Him, all His angels,"[512] the other whose prince +says, "All these things will I give Thee if Thou wilt fall down and +worship me;"[513] the one blazing with the holy love of God, the +other reeking with the unclean lust of self-advancement. And since, +as it is written, "God resisteth the proud, but giveth grace unto +the humble,"[514] we may say, the one dwelling in the heaven of +heavens, the other cast thence, and raging through the lower regions +of the air; the one tranquil in the brightness of piety, the other +tempest-tossed with beclouding desires; the one, at God's pleasure, +tenderly succouring, justly avenging,--the other, set on by its own +pride, boiling with the lust of subduing and hurting; the one the +minister of God's goodness to the utmost of their good pleasure, +the other held in by God's power from doing the harm it would; the +former laughing at the latter when it does good unwillingly by its +persecutions, the latter envying the former when it gathers in +its pilgrims. These two angelic communities, then, dissimilar and +contrary to one another, the one both by nature good and by will +upright, the other also good by nature but by will depraved, as they +are exhibited in other and more explicit passages of holy writ, so I +think they are spoken of in this book of Genesis under the names of +light and darkness; and even if the author perhaps had a different +meaning, yet our discussion of the obscure language has not been +wasted time; for, though we have been unable to discover his meaning, +yet we have adhered to the rule of faith, which is sufficiently +ascertained by the faithful from other passages of equal authority. +For, though it is the material works of God which are here spoken +of, they have certainly a resemblance to the spiritual, so that Paul +can say, "Ye are all the children of light, and the children of the +day: we are not of the night, nor of darkness."[515] If, on the other +hand, the author of Genesis saw in the words what we see, then our +discussion reaches this more satisfactory conclusion, that the man of +God, so eminently and divinely wise, or rather, that the Spirit of +God who by him recorded God's works which were finished on the sixth +day, may be supposed not to have omitted all mention of the angels, +whether he included them in the words "in the beginning," because He +made them first, or, which seems most likely, because He made them +in the only-begotten Word. And, under these names heaven and earth, +the whole creation is signified, either as divided into spiritual and +material, which seems the more likely, or into the two great parts of +the world in which all created things are contained, so that, first +of all, the creation is presented in sum, and then its parts are +enumerated according to the mystic number of the days. + + + 34. _Of the idea that the angels were meant where the separation + of the waters by the firmament is spoken of, and of that other + idea that the waters were not created._ + +Some,[516] however, have supposed that the angelic hosts are somehow +referred to under the name of waters, and that this is what is meant +by, "Let there be a firmament in the midst of the waters:"[517] that +the waters above should be understood of the angels, and those below +either of the visible waters, or of the multitude of bad angels, or +of the nations of men. If this be so, then it does not here appear +when the angels were created, but when they were separated. Though +there have not been wanting men foolish and wicked enough[518] to +deny that the waters were made by God, because it is nowhere written, +"God said, Let there be waters." With equal folly they might say the +same of the earth, for nowhere do we read, "God said, Let the earth +be." But, say they, it is written, "In the beginning God created +the heaven and the earth." Yes, and there the water is meant, for +both are included in one word. For "the sea is His," as the psalm +says, "and He made it; and His hands formed the dry land."[519] But +those who would understand the angels by the waters above the skies +have a difficulty about the specific gravity of the elements, and +fear that the waters, owing to their fluidity and weight, could not +be set in the upper parts of the world. So that, if they were to +construct a man upon their own principles, they would not put in his +head any moist humours, or "phlegm" as the Greeks call it, and which +acts the part of water among the elements of our body. But, in God's +handiwork, the head is the seat of the phlegm, and surely most fitly; +and yet, according to their supposition, so absurdly that if we were +not aware of the fact, and were informed by this same record that God +had put a moist and cold and therefore heavy humour in the uppermost +part of man's body, these world-weighers would refuse belief. And +if they were confronted with the authority of Scripture, they would +maintain that something else must be meant by the words. But, were we +to investigate and discover all the details which are written in this +divine book regarding the creation of the world, we should have much +to say, and should widely digress from the proposed aim of this work. +Since, then, we have now said what seemed needful regarding these two +diverse and contrary communities of angels, in which the origin of +the two human communities (of which we intend to speak anon) is also +found, let us at once bring this book also to a conclusion. + +FOOTNOTES: + +[440] Written in the year 416 or 417. + +[441] Ps. lxxxvii. 3. + +[442] Ps. xlviii. 1. + +[443] Ps. xlvi. 4. + +[444] Homine assumto, non Deo consumto. + +[445] Quo itur Deus, qua itur homo. + +[446] A clause is here inserted to give the etymology of _præsentia_ +from _præ vensibus_. + +[447] Another derivation, _sententia_ from _sensus_, the inward +perception of the mind. + +[448] Gen. i. 1. + +[449] Prov. viii. 27. + +[450] Matt. xviii. 10. + +[451] A common question among the Epicureans; urged by Velleius in +Cic. _De Nat. Deor._ i. 9; adopted by the Manichæans and spoken to by +Augustine in the _Conf._ xi. 10, 12, also in _De Gen. contra Man._ i. 3. + +[452] The Neo-Platonists. + +[453] Number begins at one, but runs on infinitely. + +[454] Gal. iv. 26. + +[455] 1 Thess. v. 5. + +[456] Comp. _de Gen. ad lit._ i. and iv. + +[457] Ver. 35. + +[458] Ps. cxlviii. 1-5. + +[459] Job xxxviii. 7. + +[460] Vives here notes that the Greek theologians and Jerome held, +with Plato, that spiritual creatures were made first, and used by God +in the creation of things material. The Latin theologians and Basil +held that God made all things at once. + +[461] John i. 9. + +[462] Mali enim nulla natura est: sed amissio boni, mali nomen accepit. + +[463] Plutarch (_De Plac. Phil._ i. 3, and iv. 3) tells us that +this opinion was held by Anaximenes of Miletus, the followers of +Anaxagoras, and many of the Stoics. Diogenes the Cynic, as well as +Diogenes of Apollonia, seems to have adopted the same opinion. See +Zeller's _Stoics_, pp. 121 and 199. + +[464] "Ubi lux non est, tenebræ sunt, non quia aliquid sunt tenebræ, +sed ipsa lucis absentia tenebræ dicuntur."--Aug. _De Gen. contra +Man._ 7. + +[465] Wisdom vii. 22. + +[466] The strongly Platonic tinge of this language is perhaps best +preserved in a bare literal translation. + +[467] Vives remarks that the ancients defined blessedness as an +absolutely perfect state in all good, peculiar to God. Perhaps +Augustine had a reminiscence of the remarkable discussion in the +_Tusc. Disp._ lib. v., and the definition "Neque ulla alia huic +verbo, quum beatum dicimus, subjecta notio est, nisi, secretis malis +omnibus, cumulata bonorum complexio." + +[468] With this chapter compare the books _De Dono Persever._ and _De +Correp. et Gratia_. + +[469] Matt. xxv. 46. + +[470] John viii. 44. + +[471] 1 John iii. 8. + +[472] Cf. _Gen. ad Lit._ xi. 27 et seqq. + +[473] Ps. xvii. 6. + +[474] 1 John iii. 8. + +[475] The Manichæans. + +[476] Isa. xiv. 12. + +[477] Ezek. xxviii. 13. + +[478] Job xl. 14 (LXX.). + +[479] Ps. civ. 26. + +[480] Job. xl. 14 (LXX.). + +[481] It must be kept in view that "vice" has, in this passage, the +meaning of sinful blemish. + +[482] Ps. civ. 26. + +[483] Quintilian uses it commonly in the sense of antithesis. + +[484] 2 Cor. vi. 7-10. + +[485] Ecclus. xxxiii. 15. + +[486] Gen. i. 14-18. + +[487] The reference is to the _Timæus_, p. 37 C., where he says, +"When the parent Creator perceived this created image of the eternal +gods in life and motion, He was delighted, and in His joy considered +how He might make it still liker its model." + +[488] Jas. i. 17. + +[489] The passage referred to is in the TIMÆUS, p. 29 D.: "Let us +say what was the cause of the Creator's forming this universe. He +was good; and in the good no envy is ever generated about anything +whatever. Therefore, being free from envy, He desired that all things +should, as much as possible, resemble Himself." + +[490] The Manichæans, to wit. + +[491] Gen. i. 31. + +[492] _Proprietas._ + +[493] This is one of the passages cited by Sir William Hamilton, +along with the "Cogito, ergo sum" of Descartes, in confirmation of +his proof, that in so far as we are _conscious_ of certain modes of +existence, in so far we possess an absolute certainty that we exist. +See note A in Hamilton's _Reid_, p. 744. + +[494] Compare the _Confessions_, xiii. 9. + +[495] Ch. 7. + +[496] Or aliquot parts. + +[497] Comp. Aug. _Gen. ad Lit._ iv. 2, and _De Trinitate_, iv. 7. + +[498] For passages illustrating early opinions regarding numbers, see +Smith's _Dict._ Art. number. + +[499] Wisd. xi. 20. + +[500] Prov. xxiv. 16. + +[501] Ps. cxix. 164. + +[502] Ps. xxxiv. 1. + +[503] John xvi. 13. + +[504] In Isa. xi. 2, as he shows in his eighth sermon, where this +subject is further pursued; otherwise, one might have supposed he +referred to Rev. iii. 1. + +[505] 1 Cor. xiii. 10. + +[506] Augustine refers to John viii. 25; see p. 415. He might rather +have referred to Rev. iii. 14. + +[507] Ps. civ. 24. + +[508] Matt. xxii. 30. + +[509] Matt. xviii. 10. + +[510] 2 Peter ii. 4. + +[511] Eph. v. 8. + +[512] Ps. cxlviii. 2. + +[513] Matt. iv. 9. + +[514] Jas. iv. 6. + +[515] 1 Thess. v. 5 + +[516] Augustine himself published this idea in his _Conf._ xiii. +32, but afterwards retracted it, as "said without sufficient +consideration" (_Retract._ II. vi. 2). Epiphanius and Jerome ascribe +it to Origen. + +[517] Gen. i. 6. + +[518] Namely, the Audians and Sampsæans, insignificant heretical +sects mentioned by Theodoret and Epiphanius. + +[519] Ps. xcv. 5. + + + + + BOOK TWELFTH. + + ARGUMENT. + + AUGUSTINE FIRST INSTITUTES TWO INQUIRIES REGARDING THE ANGELS; + NAMELY, WHENCE IS THERE IN SOME A GOOD, AND IN OTHERS AN + EVIL WILL? AND, WHAT IS THE REASON OF THE BLESSEDNESS OF THE + GOOD, AND THE MISERY OF THE EVIL? AFTERWARDS HE TREATS OF THE + CREATION OF MAN, AND TEACHES THAT HE IS NOT FROM ETERNITY, BUT + WAS CREATED, AND BY NONE OTHER THAN GOD. + + + 1. _That the nature of the angels, both good and bad, is one and + the same._ + +It has already, in the preceding book, been shown how the two cities +originated among the angels. Before I speak of the creation of man, +and show how the cities took their rise, so far as regards the race +of rational mortals, I see that I must first, so far as I can, adduce +what may demonstrate that it is not incongruous and unsuitable to +speak of a society composed of angels and men together; so that there +are not four cities or societies,--two, namely, of angels, and as +many of men,--but rather two in all, one composed of the good, the +other of the wicked, angels or men indifferently. + +That the contrary propensities in good and bad angels have arisen, +not from a difference in their nature and origin, since God, the +good Author and Creator of all essences, created them both, but from +a difference in their wills and desires, it is impossible to doubt. +While some stedfastly continued in that which was the common good of +all, namely, in God Himself, and in His eternity, truth, and love; +others, being enamoured rather of their own power, as if they could +be their own good, lapsed to this private good of their own, from +that higher and beatific good which was common to all, and, bartering +the lofty dignity of eternity for the inflation of pride, the most +assured verity for the slyness of vanity, uniting love for factious +partisanship, they became proud, deceived, envious. The cause, +therefore, of the blessedness of the good is adherence to God. And so +the cause of the others' misery will be found in the contrary, that +is, in their not adhering to God. Wherefore, if when the question +is asked, why are the former blessed, it is rightly answered, +because they adhere to God; and when it is asked, why are the latter +miserable, it is rightly answered, because they do not adhere to +God,--then there is no other good for the rational or intellectual +creature save God only. Thus, though it is not every creature that +can be blessed (for beasts, trees, stones, and things of that kind +have not this capacity), yet that creature which has the capacity +cannot be blessed of itself, since it is created out of nothing, but +only by Him by whom it has been created. For it is blessed by the +possession of that whose loss makes it miserable. He, then, who is +blessed not in another, but in himself, cannot be miserable, because +he cannot lose himself. + +Accordingly we say that there is no unchangeable good but the one, +true, blessed God; that the things which He made are indeed good +because from Him, yet mutable because made not out of Him, but out of +nothing. Although, therefore, they are not the supreme good, for God +is a greater good, yet those mutable things which can adhere to the +immutable good, and so be blessed, are very good; for so completely +is He their good, that without Him they cannot but be wretched. And +the other created things in the universe are not better on this +account, that they cannot be miserable. For no one would say that +the other members of the body are superior to the eyes, because they +cannot be blind. But as the sentient nature, even when it feels +pain, is superior to the stony, which can feel none, so the rational +nature, even when wretched, is more excellent than that which lacks +reason or feeling, and can therefore experience no misery. And since +this is so, then in this nature which has been created so excellent, +that though it be mutable itself, it can yet secure its blessedness +by adhering to the immutable good, the supreme God; and since it is +not satisfied unless it be perfectly blessed, and cannot be thus +blessed save in God,--in this nature, I say, not to adhere to God, is +manifestly a fault.[520] Now every fault injures the nature, and is +consequently contrary to the nature. The creature, therefore, which +cleaves to God, differs from those who do not, not by nature, but +by fault; and yet by this very fault the nature itself is proved to +be very noble and admirable. For that nature is certainly praised, +the fault of which is justly blamed. For we justly blame the fault +because it mars the praiseworthy nature. As, then, when we say that +blindness is a defect of the eyes, we prove that sight belongs to the +nature of the eyes; and when we say that deafness is a defect of the +ears, hearing is thereby proved to belong to their nature;--so, when +we say that it is a fault of the angelic creature that it does not +cleave to God, we hereby most plainly declare that it pertained to +its nature to cleave to God. And who can worthily conceive or express +how great a glory that is, to cleave to God, so as to live to Him, to +draw wisdom from Him, to delight in Him, and to enjoy this so great +good, without death, error, or grief? And thus, since every vice is +an injury of the nature, that very vice of the wicked angels, their +departure from God, is sufficient proof that God created their nature +so good, that it is an injury to it not to be with God. + + + 2. _That there is no entity_[521] _contrary to the divine, because + nonentity seems to be that which is wholly opposite to Him who + supremely and always is._ + +This may be enough to prevent any one from supposing, when we speak +of the apostate angels, that they could have another nature, derived, +as it were, from some different origin, and not from God. From the +great impiety of this error we shall disentangle ourselves the more +readily and easily, the more distinctly we understand that which God +spoke by the angel when He sent Moses to the children of Israel: "I +am that I am."[522] For since God is the supreme existence, that is +to say, supremely is, and is therefore unchangeable, the things that +He made He empowered to be, but not to be supremely like Himself. +To some He communicated a more ample, to others a more limited +existence, and thus arranged the natures of beings in ranks. For as +from _sapere_ comes _sapientia_, so from _esse_ comes _essentia_,--a +new word indeed, which the old Latin writers did not use, but which +is naturalized in our day,[523] that our language may not want an +equivalent for the Greek οὐσία. For this is expressed word for word +by _essentia_. Consequently, to that nature which supremely is, and +which created all else that exists, no nature is contrary save that +which does not exist. For nonentity is the contrary of that which is. +And thus there is no being contrary to God, the Supreme Being, and +Author of all beings whatsoever. + + + 3. _That the enemies of God are so, not by nature but by will, + which, as it injures them, injures a good nature; for if vice + does not injure, it is not vice._ + +In Scripture they are called God's enemies who oppose His rule, +not by nature, but by vice; having no power to hurt Him, but only +themselves. For they are His enemies, not through their power to +hurt, but by their will to oppose Him. For God is unchangeable, and +wholly proof against injury. Therefore the vice which makes those +who are called His enemies resist Him, is an evil not to God, but to +themselves. And to them it is an evil, solely because it corrupts the +good of their nature. It is not nature, therefore, but vice, which +is contrary to God. For that which is evil is contrary to the good. +And who will deny that God is the supreme good? Vice, therefore, is +contrary to God, as evil to good. Further, the nature it vitiates is +a good, and therefore to this good also it is contrary. But while +it is contrary to God only as evil to good, it is contrary to the +nature it vitiates, both as evil and as hurtful. For to God no evils +are hurtful; but only to natures mutable and corruptible, though, +by the testimony of the vices themselves, originally good. For were +they not good, vices could not hurt them. For how do they hurt them +but by depriving them of integrity, beauty, welfare, virtue, and, in +short, whatever natural good vice is wont to diminish or destroy? But +if there be no good to take away, then no injury can be done, and +consequently there can be no vice. For it is impossible that there +should be a harmless vice. Whence we gather, that though vice cannot +injure the unchangeable good, it can injure nothing but good; because +it does not exist where it does not injure. This, then, may be thus +formulated: Vice cannot be in the highest good, and cannot be but in +some good. Things solely good, therefore, can in some circumstances +exist; things solely evil, never; for even those natures which are +vitiated by an evil will, so far indeed as they are vitiated, are +evil, but in so far as they are natures they are good. And when +a vitiated nature is punished, besides the good it has in being a +nature, it has this also, that it is not unpunished.[524] For this is +just, and certainly everything just is a good. For no one is punished +for natural, but for voluntary vices. For even the vice which by the +force of habit and long continuance has become a second nature, had +its origin in the will. For at present we are speaking of the vices +of the nature, which has a mental capacity for that enlightenment +which discriminates between what is just and what is unjust. + + + 4. _Of the nature of irrational and lifeless creatures, which in + their own kind and order do not mar the beauty of the universe._ + +But it is ridiculous to condemn the faults of beasts and trees, and +other such mortal and mutable things as are void of intelligence, +sensation, or life, even though these faults should destroy their +corruptible nature; for these creatures received, at their Creator's +will, an existence fitting them, by passing away and giving place to +others, to secure that lowest form of beauty, the beauty of seasons, +which in its own place is a requisite part of this world. For things +earthly were neither to be made equal to things heavenly, nor were +they, though inferior, to be quite omitted from the universe. Since, +then, in those situations where such things are appropriate, some +perish to make way for others that are born in their room, and the +less succumb to the greater, and the things that are overcome are +transformed into the quality of those that have the mastery, this is +the appointed order of things transitory. Of this order the beauty +does not strike us, because by our mortal frailty we are so involved +in a part of it, that we cannot perceive the whole, in which these +fragments that offend us are harmonized with the most accurate +fitness and beauty. And therefore, where we are not so well able to +perceive the wisdom of the Creator, we are very properly enjoined to +believe it, lest in the vanity of human rashness we presume to find +any fault with the work of so great an Artificer. At the same time, +if we attentively consider even these faults of earthly things, +which are neither voluntary nor penal, they seem to illustrate the +excellence of the natures themselves, which are all originated and +created by God; for it is that which pleases us in this nature which +we are displeased to see removed by the fault,--unless even the +natures themselves displease men, as often happens when they become +hurtful to them, and then men estimate them not by their nature, +but by their utility; as in the case of those animals whose swarms +scourged the pride of the Egyptians. But in this way of estimating, +they may find fault with the sun itself; for certain criminals or +debtors are sentenced by the judges to be set in the sun. Therefore +it is not with respect to our convenience or discomfort, but with +respect to their own nature, that the creatures are glorifying to +their Artificer. Thus even the nature of the eternal fire, penal +though it be to the condemned sinners, is most assuredly worthy of +praise. For what is more beautiful than fire flaming, blazing, and +shining? What more useful than fire for warming, restoring, cooking, +though nothing is more destructive than fire burning and consuming? +The same thing, then, when applied in one way, is destructive, but +when applied suitably, is most beneficial. For who can find words to +tell its uses throughout the whole world? We must not listen, then, +to those who praise the light of fire but find fault with its heat, +judging it not by its nature, but by their convenience or discomfort. +For they wish to see, but not to be burnt. But they forget that this +very light which is so pleasant to them, disagrees with and hurts +weak eyes; and in that heat which is disagreeable to them, some +animals find the most suitable conditions of a healthy life. + + + 5. _That in all natures, of every kind and rank, God is glorified._ + +All natures, then, inasmuch as they are, and have therefore a rank +and species of their own, and a kind of internal harmony, are +certainly good. And when they are in the places assigned to them by +the order of their nature, they preserve such being as they have +received. And those things which have not received everlasting being, +are altered for better or for worse, so as to suit the wants and +motions of those things to which the Creator's law has made them +subservient; and thus they tend in the divine providence to that +end which is embraced in the general scheme of the government of the +universe. So that, though the corruption of transitory and perishable +things brings them to utter destruction, it does not prevent their +producing that which was designed to be their result. And this being +so, God, who supremely is, and who therefore created every being +which has not supreme existence (for that which was made of nothing +could not be equal to Him, and indeed could not be at all had He not +made it), is not to be found fault with on account of the creature's +faults, but is to be praised in view of the natures He has made. + + + 6. _What the cause of the blessedness of the good angels is, and + what the cause of the misery of the wicked._ + +Thus the true cause of the blessedness of the good angels is found +to be this, that they cleave to Him who supremely is. And if we +ask the cause of the misery of the bad, it occurs to us, and not +unreasonably, that they are miserable because they have forsaken +Him who supremely is, and have turned to themselves who have no +such essence. And this vice, what else is it called than pride? For +"pride is the beginning of sin."[525] They were unwilling, then, to +preserve their strength for God; and as adherence to God was the +condition of their enjoying an ampler being, they diminished it by +preferring themselves to Him. This was the first defect, and the +first impoverishment, and the first flaw of their nature, which was +created, not indeed supremely existent, but finding its blessedness +in the enjoyment of the Supreme Being; whilst by abandoning Him it +should become, not indeed no nature at all, but a nature with a less +ample existence, and therefore wretched. + +If the further question be asked, What was the efficient cause of +their evil will? there is none. For what is it which makes the will +bad, when it is the will itself which makes the action bad? And +consequently the bad will is the cause of the bad action, but nothing +is the efficient cause of the bad will. For if anything is the cause, +this thing either has or has not a will. If it has, the will is +either good or bad. If good, who is so left to himself as to say that +a good will makes a will bad? For in this case a good will would be +the cause of sin; a most absurd supposition. On the other hand, if +this hypothetical thing has a bad will, I wish to know what made it +so; and that we may not go on for ever, I ask at once, what made the +_first_ evil will bad? For that is not the first which was itself +corrupted by an evil will, but that is the first which was made +evil by no other will. For if it were preceded by that which made +it evil, that will was first which made the other evil. But if it +is replied, "Nothing made it evil; it always was evil," I ask if it +has been existing in some nature. For if not, then it did not exist +at all; and if it did exist in some nature, then it vitiated and +corrupted it, and injured it, and consequently deprived it of good. +And therefore the evil will could not exist in an evil nature, but +in a nature at once good and mutable, which this vice could injure. +For if it did no injury, it was no vice; and consequently the will +in which it was, could not be called evil. But if it did injury, it +did it by taking away or diminishing good. And therefore there could +not be from eternity, as was suggested, an evil will in that thing +in which there had been previously a natural good, which the evil +will was able to diminish by corrupting it. If, then, it was not from +eternity, who, I ask, made it? The only thing that can be suggested +in reply is, that something which itself had no will, made the will +evil. I ask, then, whether this thing was superior, inferior, or +equal to it? If superior, then it is better. How, then, has it no +will, and not rather a good will? The same reasoning applies if +it was equal; for so long as two things have equally a good will, +the one cannot produce in the other an evil will. Then remains the +supposition that that which corrupted the will of the angelic nature +which first sinned, was itself an inferior thing without a will. But +that thing, be it of the lowest and most earthly kind, is certainly +itself good, since it is a nature and being, with a form and rank of +its own in its own kind and order. How, then, can a good thing be the +efficient cause of an evil will? How, I say, can good be the cause +of evil? For when the will abandons what is above itself, and turns +to what is lower, it becomes evil--not because that is evil to which +it turns, but because the turning itself is wicked. Therefore it is +not an inferior thing which has made the will evil, but it is itself +which has become so by wickedly and inordinately desiring an inferior +thing. For if two men, alike in physical and moral constitution, see +the same corporal beauty, and one of them is excited by the sight to +desire an illicit enjoyment, while the other stedfastly maintains a +modest restraint of his will, what do we suppose brings it about, +that there is an evil will in the one and not in the other? What +produces it in the man in whom it exists? Not the bodily beauty, +for that was presented equally to the gaze of both, and yet did +not produce in both an evil will. Did the flesh of the one cause +the desire as he looked? But why did not the flesh of the other? +Or was it the disposition? But why not the disposition of both? +For we are supposing that both were of a like temperament of body +and soul. Must we, then, say that the one was tempted by a secret +suggestion of the evil spirit? As if it was not by his own will that +he consented to this suggestion and to any inducement whatever! +This consent, then, this evil will which he presented to the evil +suasive influence,--what was the cause of it, we ask? For, not to +delay on such a difficulty as this, if both are tempted equally, and +one yields and consents to the temptation, while the other remains +unmoved by it, what other account can we give of the matter than +this, that the one is willing, the other unwilling, to fall away from +chastity? And what causes this but their own wills, in cases at least +such as we are supposing, where the temperament is identical? The +same beauty was equally obvious to the eyes of both; the same secret +temptation pressed on both with equal violence. However minutely we +examine the case, therefore, we can discern nothing which caused the +will of the one to be evil. For if we say that the man himself made +his will evil, what was the man himself before his will was evil but +a good nature created by God, the unchangeable good? Here are two men +who, before the temptation, were alike in body and soul, and of whom +one yielded to the tempter who persuaded him, while the other could +not be persuaded to desire that lovely body which was equally before +the eyes of both. Shall we say of the successfully tempted man that +he corrupted his own will, since he was certainly good before his +will became bad? Then, why did he do so? Was it because his will was +a nature, or because it was made of nothing? We shall find that the +latter is the case. For if a nature is the cause of an evil will, +what else can we say than that evil arises from good, or that good is +the cause of evil? And how can it come to pass that a nature, good +though mutable, should produce any evil--that is to say, should make +the will itself wicked? + + + 7. _That we ought not to expect to find any efficient cause of the + evil will._ + +Let no one, therefore, look for an efficient cause of the evil will; +for it is not efficient, but deficient, as the will itself is not an +effecting of something, but a defect. For defection from that which +supremely is, to that which has less of being,--this is to begin +to have an evil will. Now, to seek to discover the causes of these +defections,--causes, as I have said, not efficient, but deficient,--is +as if some one sought to see darkness, or hear silence. Yet both of +these are known by us, and the former by means only of the eye, the +latter only by the ear; but not by their positive actuality,[526] but +by their want of it. Let no one, then, seek to know from me what I know +that I do not know; unless he perhaps wishes to learn to be ignorant of +that of which all we know is, that it cannot be known. For those things +which are known not by their actuality, but by their want of it, are +known, if our expression may be allowed and understood, by not knowing +them, that by knowing them they may be not known. For when the eyesight +surveys objects that strike the sense, it nowhere sees darkness but +where it begins not to see. And so no other sense but the ear can +perceive silence, and yet it is only perceived by not hearing. Thus, +too, our mind perceives intelligible forms by understanding them; but +when they are deficient, it knows them by not knowing them; for "who +can understand defects?"[527] + + + 8. _Of the misdirected love whereby the will fell away from the + immutable to the mutable good._ + +This I do know, that the nature of God can never, nowhere, +nowise be defective, and that natures made of nothing can. These +latter, however, the more being they have, and the more good they +do (for then they do something positive), the more they have +efficient causes; but in so far as they are defective in being, and +consequently do evil (for then what is their work but vanity?), they +have deficient causes. And I know likewise, that the will could +not become evil, were it unwilling to become so; and therefore its +failings are justly punished, being not necessary, but voluntary. +For its defections are not to evil things, but are themselves evil; +that is to say, are not towards things that are naturally and in +themselves evil, but the defection of the will is evil, because it +is contrary to the order of nature, and an abandonment of that which +has supreme being for that which has less. For avarice is not a +fault inherent in gold, but in the man who inordinately loves gold, +to the detriment of justice, which ought to be held in incomparably +higher regard than gold. Neither is luxury the fault of lovely and +charming objects, but of the heart that inordinately loves sensual +pleasures, to the neglect of temperance, which attaches us to objects +more lovely in their spirituality, and more delectable by their +incorruptibility. Nor yet is boasting the fault of human praise, but +of the soul that is inordinately fond of the applause of men, and +that makes light of the voice of conscience. Pride, too, is not the +fault of him who delegates power, nor of power itself, but of the +soul that is inordinately enamoured of its own power, and despises +the more just dominion of a higher authority. Consequently he who +inordinately loves the good which any nature possesses, even though +he obtain it, himself becomes evil in the good, and wretched because +deprived of a greater good. + + + 9. _Whether the angels, besides receiving from God their nature, + received from Him also their good will by the Holy Spirit + imbuing them with love._ + +There is, then, no natural efficient cause, or, if I may be allowed +the expression, no essential cause, of the evil will, since itself +is the origin of evil in mutable spirits, by which the good of their +nature is diminished and corrupted; and the will is made evil by +nothing else than defection from God,--a defection of which the +cause, too, is certainly deficient. But as to the good will, if we +should say that there is no efficient cause of it, we must beware of +giving currency to the opinion that the good will of the good angels +is not created, but is co-eternal with God. For if they themselves +are created, how can we say that their good will was eternal? But +if created, was it created along with themselves, or did they exist +for a time without it? If along with themselves, then doubtless it +was created by Him who created them, and, as soon as ever they were +created, they attached themselves to Him who created them, with the +love He created in them. And they are separated from the society of +the rest, because they have continued in the same good will; while +the others have fallen away to another will, which is an evil one, by +the very fact of its being a falling away from the good; from which, +we may add, they would not have fallen away had they been unwilling +to do so. But if the good angels existed for a time without a good +will, and produced it in themselves without God's interference, then +it follows that they made themselves better than He made them. Away +with such a thought! For without a good will, what were they but +evil? Or if they were not evil, because they had not an evil will +any more than a good one (for they had not fallen away from that +which as yet they had not begun to enjoy), certainly they were not +the same, not so good, as when they came to have a good will. Or if +they could not make themselves better than they were made by Him +who is surpassed by none in His work, then certainly, without His +helpful operation, they could not come to possess that good will +which made them better. And though their good will effected that +they did not turn to themselves, who had a more stinted existence, +but to Him who supremely is, and that, being united to Him, their +own being was enlarged, and they lived a wise and blessed life by +His communications to them, what does this prove but that the will, +however good it might be, would have continued helplessly only to +desire Him, had not He who had made their nature out of nothing, and +yet capable of enjoying Him, first stimulated it to desire Him, and +then filled it with Himself, and so made it better? + +Besides, this too has to be inquired into, whether, if the good +angels made their own will good, they did so with or without will? +If without, then it was not their doing. If with, was the will good +or bad? If bad, how could a bad will give birth to a good one? If +good, then already they had a good will. And who made this will, +which already they had, but He who created them with a good will, +or with that chaste love by which they cleaved to Him, in one and +the same act creating their nature, and endowing it with grace? And +thus we are driven to believe that the holy angels never existed +without a good will or the love of God. But the angels who, though +created good, are yet evil now, became so by their own will. And +this will was not made evil by their good nature, unless by its +voluntary defection from good; for good is not the cause of evil, but +a defection from good is. These angels, therefore, either received +less of the grace of the divine love than those who persevered in the +same; or if both were created equally good, then, while the one fell +by their evil will, the others were more abundantly assisted, and +attained to that pitch of blessedness at which they became certain +they should never fall from it,--as we have already shown in the +preceding book.[528] We must therefore acknowledge, with the praise +due to the Creator, that not only of holy men, but also of the holy +angels, it can be said that "the love of God is shed abroad in their +hearts by the Holy Ghost, which is given unto them."[529] And that +not only of men, but primarily and principally of angels it is true, +as it is written, "It is good to draw near to God."[530] And those +who have this good in common, have, both with Him to whom they draw +near, and with one another, a holy fellowship, and form one city of +God--His living sacrifice, and His living temple. And I see that, as +I have now spoken of the rise of this city among the angels, it is +time to speak of the origin of that part of it which is hereafter +to be united to the immortal angels, and which at present is being +gathered from among mortal men, and is either sojourning on earth, +or, in the persons of those who have passed through death, is resting +in the secret receptacles and abodes of disembodied spirits. For +from one man, whom God created as the first, the whole human race +descended, according to the faith of Holy Scripture, which deservedly +is of wonderful authority among all nations throughout the world; +since, among its other true statements, it predicted, by its divine +foresight, that all nations would give credit to it. + + + 10. _Of the falseness of the history which allots many thousand + years to the world's past._ + +Let us, then, omit the conjectures of men who know not what they say, +when they speak of the nature and origin of the human race. For some +hold the same opinion regarding men that they hold regarding the world +itself, that they have always been. Thus Apuleius says when he is +describing our race, "Individually they are mortal, but collectively, +and as a race, they are immortal."[531] And when they are asked, how, +if the human race has always been, they vindicate the truth of their +history, which narrates who were the inventors, and what they invented, +and who first instituted the liberal studies and the other arts, and +who first inhabited this or that region, and this or that island? they +reply[532] that most, if not all lands, were so desolated at intervals +by fire and flood, that men were greatly reduced in numbers, and from +these, again, the population was restored to its former numbers, and +that thus there was at intervals a new beginning made, and though +those things which had been interrupted and checked by the severe +devastations were only renewed, yet they seemed to be originated then, +but that man could not exist at all save as produced by man. But they +say what they think, not what they know. + +They are deceived, too, by those highly mendacious documents which +profess to give the history of many thousand years, though, reckoning +by the sacred writings, we find that not 6000 years have yet +passed.[533] And, not to spend many words in exposing the baselessness +of these documents, in which so many thousands of years are accounted +for, nor in proving that their authorities are totally inadequate, +let me cite only that letter which Alexander the Great wrote to his +mother Olympias,[534] giving her the narrative he had from an Egyptian +priest, which he had extracted from their sacred archives, and which +gave an account of kingdoms mentioned also by the Greek historians. +In this letter of Alexander's a term of upwards of 5000 years is +assigned to the kingdom of Assyria; while in the Greek history only +1300 years are reckoned from the reign of Bel himself, whom both +Greek and Egyptian agree in counting the first king of Assyria. Then +to the empire of the Persians and Macedonians this Egyptian assigned +more than 8000 years, counting to the time of Alexander, to whom he +was speaking; while among the Greeks, 485 years are assigned to the +Macedonians down to the death of Alexander, and to the Persians 233 +years, reckoning to the termination of his conquests. Thus these give +a much smaller number of years than the Egyptians; and indeed, though +multiplied three times, the Greek chronology would still be shorter. +For the Egyptians are said to have formerly reckoned only four months +to their year;[535] so that one year, according to the fuller and truer +computation now in use among them as well as among ourselves, would +comprehend three of their old years. But not even thus, as I said, does +the Greek history correspond with the Egyptian in its chronology. And +therefore the former must receive the greater credit, because it does +not exceed the true account of the duration of the world as it is given +by our documents, which are truly sacred. Further, if this letter of +Alexander, which has become so famous, differs widely in this matter +of chronology from the probable credible account, how much less can we +believe these documents which, though full of fabulous and fictitious +antiquities, they would fain oppose to the authority of our well-known +and divine books, which predicted that the whole world would believe +them, and which the whole world accordingly has believed; which proved, +too, that it had truly narrated past events by its prediction of future +events, which have so exactly come to pass! + + + 11. _Of those who suppose that this world indeed is not eternal, + but that either there are numberless worlds, or that one and + the same world is perpetually resolved into its elements, and + renewed at the conclusion of fixed cycles._ + +There are some, again, who, though they do not suppose that this +world is eternal, are of opinion either that this is not the only +world, but that there are numberless worlds, or that indeed it is the +only one, but that it dies, and is born again at fixed intervals, +and this times without number;[536] but they must acknowledge that +the human race existed before there were other men to beget them. +For they cannot suppose that, if the whole world perish, some men +would be left alive in the world, as they might survive in floods and +conflagrations, which those other speculators suppose to be partial, +and from which they can therefore reasonably argue that a few men +survived whose posterity would renew the population; but as they +believe that the world itself is renewed out of its own material, +so they must believe that out of its elements the human race was +produced, and then that the progeny of mortals sprang like that of +other animals from their parents. + + +12. _How these persons are to be answered, who find fault with the +creation of man on the score of its recent date._ + +As to those who are always asking why man was not created during +these countless ages of the infinitely extended past, and came into +being so lately that, according to Scripture, less than 6000 years +have elapsed since he began to be, I would reply to them regarding +the creation of man, just as I replied regarding the origin of the +world to those who will not believe that it is not eternal, but had a +beginning, which even Plato himself most plainly declares, though some +think his statement was not consistent with his real opinion.[537] If +it offends them that the time that has elapsed since the creation of +man is so short, and his years so few according to our authorities, +let them take this into consideration, that nothing that has a limit +is long, and that all the ages of time being finite, are very little, +or indeed nothing at all, when compared to the interminable eternity. +Consequently, if there had elapsed since the creation of man, I do not +say five or six, but even sixty or six hundred thousand years, or sixty +times as many, or six hundred or six hundred thousand times as many, or +this sum multiplied until it could no longer be expressed in numbers, +the same question could still be put, Why was he not made before? +For the past and boundless eternity during which God abstained from +creating man is so great, that, compare it with what vast and untold +number of ages you please, so long as there is a definite conclusion of +this term of time, it is not even as if you compared the minutest drop +of water with the ocean that everywhere flows around the globe. For +of these two, one indeed is very small, the other incomparably vast, +yet both are finite; but that space of time which starts from some +beginning, and is limited by some termination, be it of what extent it +may, if you compare it with that which has no beginning, I know not +whether to say we should count it the very minutest thing, or nothing +at all. For, take this limited time, and deduct from the end of it, +one by one, the briefest moments (as you might take day by day from a +man's life, beginning at the day in which he now lives, back to that +of his birth), and though the number of moments you must subtract in +this backward movement be so great that no word can express it, yet +this subtraction will some time carry you to the beginning. But if +you take away from a time which has no beginning, I do not say brief +moments one by one, nor yet hours, or days, or months, or years even in +quantities, but terms of years so vast that they cannot be named by the +most skilful arithmetician,--take away terms of years as vast as that +which we have supposed to be gradually consumed by the deduction of +moments,--and take them away not once and again repeatedly, but always, +and what do you effect, what do you make by your deduction, since you +never reach the beginning which has no existence? Wherefore, that +which we now demand after five thousand odd years, our descendants +might with like curiosity demand after six hundred thousand years, +supposing these dying generations of men continue so long to decay and +be renewed, and supposing posterity continues as weak and ignorant as +ourselves. The same question might have been asked by those who have +lived before us, and while man was even newer upon earth. The first +man himself, in short, might, the day after, or the very day of his +creation, have asked why he was created no sooner. And no matter at +what earlier or later period he had been created, this controversy +about the commencement of this world's history would have had precisely +the same difficulties as it has now. + + + 13. _Of the revolution of the ages, which some philosophers believe + will bring all things round again, after a certain fixed cycle, + to the same order and form as at first._ + +This controversy some philosophers have seen no other approved means +of solving than by introducing cycles of time, in which there should +be a constant renewal and repetition of the order of nature;[538] +and they have therefore asserted that these cycles will ceaselessly +recur, one passing away and another coming, though they are not +agreed as to whether one permanent world shall pass through all these +cycles, or whether the world shall at fixed intervals die out, and +be renewed so as to exhibit a recurrence of the same phenomena--the +things which have been, and those which are to be, coinciding. And +from this fantastic vicissitude they exempt not even the immortal +soul that has attained wisdom, consigning it to a ceaseless +transmigration between delusive blessedness and real misery. For how +can that be truly called blessed which has no assurance of being so +eternally, and is either in ignorance of the truth, and blind to the +misery that is approaching, or, knowing it, is in misery and fear? +Or if it passes to bliss, and leaves miseries for ever, then there +happens in time a new thing which time shall not end. Why not, then, +the world also? Why may not man, too, be a similar thing? So that, by +following the straight path of sound doctrine, we escape, I know not +what circuitous paths, discovered by deceiving and deceived sages. + +Some, too, in advocating these recurring cycles that restore all +things to their original, cite in favour of their supposition what +Solomon says in the book of Ecclesiastes: "What is that which hath +been? It is that which shall be. And what is that which is done? It +is that which shall be done: and there is no new thing under the sun. +Who can speak and say, See, this is new? It hath been already of old +time, which was before us."[539] This he said either of those things +of which he had just been speaking--the succession of generations, +the orbit of the sun, the course of rivers,--or else of all kinds of +creatures that are born and die. For men were before us, are with +us, and shall be after us; and so all living things and all plants. +Even monstrous and irregular productions, though differing from one +another, and though some are reported as solitary instances, yet +resemble one another generally, in so far as they are miraculous and +monstrous, and, in this sense, have been, and shall be, and are no +new and recent things under the sun. However, some would understand +these words as meaning that in the predestination of God all things +have already existed, and that thus there is no new thing under the +sun. At all events, far be it from any true believer to suppose that +by these words of Solomon those cycles are meant, in which, according +to those philosophers, the same periods and events of time are +repeated; as if, for example, the philosopher Plato, having taught +in the school at Athens which is called the Academy, so, numberless +ages before, at long but certain intervals, this same Plato, and the +same school, and the same disciples existed, and so also are to be +repeated during the countless cycles that are yet be be,--far be it, +I say, from us to believe this. For once Christ died for our sins; +and, rising from the dead, He dieth no more. "Death hath no more +dominion over Him;"[540] and we ourselves after the resurrection +shall be "ever with the Lord,"[541] to whom we now say, as the +sacred Psalmist dictates, "Thou shalt keep us, O Lord, Thou shalt +preserve us from this generation."[542] And that too which follows, +is, I think, appropriate enough: "The wicked walk _in a circle_;" +not because their life is to recur by means of these circles, which +these philosophers imagine, but because the path in which their false +doctrine now runs is circuitous. + + + 14. _Of the creation of the human race in time, and how this was + effected without any new design or change of purpose on God's + part._ + +What wonder is it if, entangled in these circles, they find neither +entrance nor egress? For they know not how the human race, and this +mortal condition of ours, took its origin, nor how it will be brought +to an end, since they cannot penetrate the inscrutable wisdom of God. +For, though Himself eternal, and without beginning, yet He caused +time to have a beginning; and man, whom He had not previously made, +He made in time, not from a new and sudden resolution, but by His +unchangeable and eternal design. Who can search out the unsearchable +depth of this purpose, who can scrutinize the inscrutable wisdom, +wherewith God, without change of will, created man, who had never +before been, and gave him an existence in time, and increased the +human race from one individual? For the Psalmist himself, when he had +first said, "Thou shalt keep us, O Lord, Thou shalt preserve us from +this generation for ever," and had then rebuked those whose foolish +and impious doctrine preserves for the soul no eternal deliverance +and blessedness, adds immediately, "The wicked walk in a circle." +Then, as if it were said to him, "What then do you believe, feel, +know? Are we to believe that it suddenly occurred to God to create +man, whom He had never before made in a past eternity,--God, to +whom nothing new can occur, and in whom is no changeableness?" the +Psalmist goes on to reply, as if addressing God Himself, "According +to the depth of Thy wisdom Thou hast multiplied the children of men." +Let men, he seems to say, fancy what they please, let them conjecture +and dispute as seems good to them, but Thou hast multiplied the +children of men according to the depth of thy wisdom, which no man +can comprehend. For this is a depth indeed, that God always has been, +and that man, whom He had never made before, He willed to make in +time, and this without changing His design and will. + + + 15. _Whether we are to believe that God, as He has always been + sovereign Lord, has always had creatures over whom He exercised + His sovereignty; and in what sense we can say that the creature + has always been, and yet cannot say it is co-eternal._ + +For my own part, indeed, as I dare not say that there ever was a time +when the Lord God was not Lord,[543] so I ought not to doubt that man +had no existence before time, and was first created in time. But when +I consider what God could be the Lord of, if there was not always +some creature, I shrink from making any assertion, remembering my +own insignificance, and that it is written, "What man is he that can +know the counsel of God? or who can think what the will of the Lord +is? For the thoughts of mortal men are timid, and our devices are +but uncertain. For the corruptible body presseth down the soul, and +the earthly tabernacle weigheth down the mind that museth upon many +things."[544] Many things certainly do I muse upon in this earthly +tabernacle, because the one thing which is true among the many, or +beyond the many, I cannot find. If, then, among these many thoughts, +I say that there have always been creatures for Him to be Lord of, +who is always and ever has been Lord, but that these creatures have +not always been the same, but succeeded one another (for we would not +seem to say that any is co-eternal with the Creator, an assertion +condemned equally by faith and sound reason), I must take care lest I +fall into the absurd and ignorant error of maintaining that by these +successions and changes mortal creatures have always existed, whereas +the immortal creatures had not begun to exist until the date of our +own world, when the angels were created; if at least the angels are +intended by that light which was first made, or, rather, by that +heaven of which it is said, "In the beginning God created the heavens +and the earth."[545] The angels at least did not exist before they +were created; for if we say that they have always existed, we shall +seem to make them co-eternal with the Creator. Again, if I say that +the angels were not created in time, but existed before all times, +as those over whom God, who has ever been Sovereign, exercised His +sovereignty, then I shall be asked whether, if they were created +before all time, they, being creatures, could possibly always +exist. It may perhaps be replied, Why not _always_, since that which +is in all time may very properly be said to be "always?" Now, so +true is it that these angels have existed in all time, that even +before time was, they were created; if at least time began with the +heavens, and the angels existed before the heavens. And if time was +even before the heavenly bodies, not indeed marked by hours, days, +months, and years,--for these measures of time's periods which are +commonly and properly called times, did manifestly begin with the +motion of the heavenly bodies, and so God said, when He appointed +them, "Let them be for signs, and for seasons, and for days, and for +years,"[546]--if, I say, time was before these heavenly bodies by +some changing movement, whose parts succeeded one another and could +not exist simultaneously, and if there was some such movement among +the angels which necessitated the existence of time, and that they +from their very creation should be subject to these temporal changes, +then they have existed in all time, for time came into being along +with them. And who will say that what was in all time, was not always? + +But if I make such a reply, it will be said to me, How, then, are +they not co-eternal with the Creator, if He and they always have +been? How even can they be said to have been created, if we are to +understand that they have always existed? What shall we reply to +this? Shall we say that both statements are true? that they always +have been, since they have been in all time, they being created +along with time, or time along with them, and yet that also they +were created? For, similarly, we will not deny that time itself was +created, though no one doubts that time has been in all time; for if +it has not been in all time, then there was a time when there was no +time. But the most foolish person could not make such an assertion. +For we can reasonably say there was a time when Rome was not; there +was a time when Jerusalem was not; there was a time when Abraham was +not; there was a time when man was not, and so on: in fine, if the +world was not made at the commencement of time, but after some time +had elapsed, we can say there was a time when the world was not. +But to say there was a time when time was not, is as absurd as to +say there was a man when there was no man; or, this world was when +this world was not. For if we are not referring to the same object, +the form of expression may be used, as, there was another man when +this man was not. Thus we can reasonably say there was another time +when this time was not; but not the merest simpleton could say there +was a time when there was no time. As, then, we say that time was +created, though we also say that it always has been, since in all +time time has been, so it does not follow that if the angels have +always been, they were therefore not created. For we say that they +have always been, because they have been in all time; and we say +they have been in all time, because time itself could no wise be +without them. For where there is no creature whose changing movements +admit of succession, there cannot be time at all. And consequently, +even if they have always existed, they were created; neither, if +they have always existed, are they therefore co-eternal with the +Creator. For He has always existed in unchangeable eternity; while +they were created, and are said to have been always, because they +have been in all time, time being impossible without the creature. +But time passing away by its changefulness, cannot be co-eternal +with changeless eternity. And consequently, though the immortality +of the angels does not pass in time, does not become past as if now +it were not, nor has a future as if it were not yet, still their +movements, which are the basis of time, do pass from future to past; +and therefore they cannot be co-eternal with the Creator, in whose +movement we cannot say that there has been that which now is not, or +shall be that which is not yet. Wherefore, if God always has been +Lord, He has always had creatures under His dominion,--creatures, +however, not begotten of Him, but created by Him out of nothing; +nor co-eternal with Him, for He was before them, though at no time +without them, because He preceded them, not by the lapse of time, +but by His abiding eternity. But if I make this reply to those who +demand how He was always Creator, always Lord, if there were not +always a subject creation; or how this was created, and not rather +co-eternal with its Creator, if it always was, I fear I may be +accused of recklessly affirming what I know not, instead of teaching +what I know. I return, therefore, to that which our Creator has seen +fit that we should know; and those things which He has allowed the +abler men to know in this life, or has reserved to be known in the +next by the perfected saints, I acknowledge to be beyond my capacity. +But I have thought it right to discuss these matters without making +positive assertions, that they who read may be warned to abstain from +hazardous questions, and may not deem themselves fit for everything. +Let them rather endeavour to obey the wholesome injunction of the +apostle, when he says, "For I say, through the grace given unto me, +to every man that is among you, not to think of himself more highly +than he ought to think; but to think soberly, according as God hath +dealt to every man the measure of faith."[547] For if an infant +receive nourishment suited to its strength, it becomes capable, as it +grows, of taking more; but if its strength and capacity be overtaxed, +it dwines away in place of growing. + + + 16. _How we are to understand God's promise of life eternal, + which was uttered before the "eternal times."_ + +I own that I do not know what ages passed before the human race was +created, yet I have no doubt that no created thing is co-eternal with +the Creator. But even the apostle speaks of time as eternal, and this +with reference, not to the future, but, which is more surprising, to +the past. For he says, "In hope of eternal life, which God that cannot +lie promised before the eternal times, but hath in due times manifested +His word."[548] You see he says that in the past there have been +eternal times, which, however, were not co-eternal with God. And since +God before these eternal times not only existed, but also "promised" +life eternal, which He manifested in its own times (that is to say, in +due times), what else is this than His word? For this is life eternal. +But then, how did He promise; for the promise was made to men, and yet +they had no existence before eternal times? Does this not mean that, +in His own eternity, and in His co-eternal word, that which was to be +in its own time was already predestined and fixed? + + + 17. _What defence is made by sound faith regarding God's + unchangeable counsel and will, against the reasonings of those + who hold that the works of God are eternally repeated in + revolving cycles that restore all things as they were._ + +Of this, too, I have no doubt, that before the first man was created, +there never had been a man at all, neither this same man himself +recurring by I know not what cycles, and having made I know not +how many revolutions, nor any other of similar nature. From this +belief I am not frightened by philosophical arguments, among which +that is reckoned the most acute which is founded on the assertion +that the infinite cannot be comprehended by any mode of knowledge. +Consequently, they argue, God has in His own mind finite conceptions +of all finite things which He makes. Now it cannot be supposed that +His goodness was ever idle; for if it were, there should be ascribed +to Him an awakening to activity in time, from a past eternity of +inactivity, as if He repented of an idleness that had no beginning, +and proceeded, therefore, to make a beginning of work. This being the +case, they say it must be that the same things are always repeated, +and that as they pass, so they are destined always to return, whether +amidst all these changes the world remains the same,--the world which +has always been, and yet was created,--or that the world in these +revolutions is perpetually dying out and being renewed; otherwise, +if we point to a time when the works of God were begun, it would be +believed that He considered His past eternal leisure to be inert and +indolent, and therefore condemned and altered it as displeasing to +Himself. Now if God is supposed to have been indeed always making +temporal things, but different from one another, and one after the +other, so that He thus came at last to make man, whom He had never +made before, then it may seem that He made man not with knowledge +(for they suppose no knowledge can comprehend the infinite succession +of creatures), but at the dictate of the hour, as it struck Him at +the moment, with a sudden and accidental change of mind. On the +other hand, say they, if those cycles be admitted, and if we suppose +that the same temporal things are repeated, while the world either +remains identical through all these rotations, or else dies away and +is renewed, then there is ascribed to God neither the slothful ease +of a past eternity, nor a rash and unforeseen creation. And if the +same things be not thus repeated in cycles, then they cannot by any +science or prescience be comprehended in their endless diversity. +Even though reason could not refute, faith would smile at these +argumentations, with which the godless endeavour to turn our simple +piety from the right way, that we may walk with them "in a circle." +But by the help of the Lord our God, even reason, and that readily +enough, shatters these revolving circles which conjecture frames. +For that which specially leads these men astray to prefer their own +circles to the straight path of truth, is, that they measure by +their own human, changeable, and narrow intellect the divine mind, +which is absolutely unchangeable, infinitely capacious, and, without +succession of thought, counting all things without number. So that +saying of the apostle comes true of them, for, "comparing themselves +with themselves, they do not understand."[549] For because they do, +in virtue of a new purpose, whatever new thing has occurred to them +to be done (their minds being changeable), they conclude it is so +with God; and thus compare, not God,--for they cannot conceive God, +but think of one like themselves when they think of Him,--not God, +but themselves, and not with Him, but with themselves. For our part, +we dare not believe that God is affected in one way when He works, +in another when He rests. Indeed, to say that He is affected at all, +is an abuse of language, since it implies that there comes to be +something in His nature which was not there before. For he who is +affected is acted upon, and whatever is acted upon is changeable. In +His leisure, therefore, is no laziness, indolence, inactivity; as in +His work is no labour, effort, industry. He can act while He reposes, +and repose while He acts. He can begin a new work with (not a new, +but) an eternal design; and what He has not made before, He does +not now begin to make because He repents of His former repose. But +when one speaks of His former repose and subsequent operation (and +I know not how men can understand these things), this "former" and +"subsequent" are applied only to the things created, which formerly +did not exist, and subsequently came into existence. But in God the +former purpose is not altered and obliterated by the subsequent and +different purpose, but by one and the same eternal and unchangeable +will He effected regarding the things He created, both that formerly, +so long as they were not, they should not be, and that subsequently, +when they began to be, they should come into existence. And thus, +perhaps, He would show in a very striking way, to those who have eyes +for such things, how independent He is of what He makes, and how it +is of His own gratuitous goodness He creates, since from eternity He +dwelt without creatures in no less perfect a blessedness. + + + 18. _Against those who assert that things that are infinite_[550] + _cannot be comprehended by the knowledge of God._ + +As for their other assertion, that God's knowledge cannot comprehend +things infinite, it only remains for them to affirm, in order that +they may sound the depths of their impiety, that God does not know +all numbers. For it is very certain that they are infinite; since, +no matter at what number you suppose an end to be made, this number +can be, I will not say, increased by the addition of one more, but +however great it be, and however vast be the multitude of which it +is the rational and scientific expression, it can still be not only +doubled, but even multiplied. Moreover, each number is so defined by +its own properties, that no two numbers are equal. They are therefore +both unequal and different from one another; and while they are +simply finite, collectively they are infinite. Does God, therefore, +not know numbers on account of this infinity; and does His knowledge +extend only to a certain height in numbers, while of the rest He is +ignorant? Who is so left to himself as to say so? Yet they can hardly +pretend to put numbers out of the question, or maintain that they +have nothing to do with the knowledge of God; for Plato,[551] their +great authority, represents God as framing the world on numerical +principles; and in our books also it is said to God, "Thou hast +ordered all things in number, and measure, and weight."[552] The +prophet also says, "Who bringeth out their host by number."[553] And +the Saviour says in the Gospel, "The very hairs of your head are all +numbered."[554] Far be it, then, from us to doubt that all number +is known to Him "whose understanding," according to the Psalmist, +"is infinite."[555] The infinity of number, though there be no +numbering of infinite numbers, is yet not incomprehensible by Him +whose understanding is infinite. And thus, if everything which is +comprehended is defined or made finite by the comprehension of him +who knows it, then all infinity is in some ineffable way made finite +to God, for it is comprehensible by His knowledge. Wherefore, if the +infinity of numbers cannot be infinite to the knowledge of God, by +which it is comprehended, what are we poor creatures that we should +presume to fix limits to His knowledge, and say that unless the same +temporal things be repeated by the same periodic revolutions, God +cannot either foreknow His creatures that He may make them, or know +them when He has made them? God, whose knowledge is simply manifold, +and uniform in its variety, comprehends all incomprehensibles with +so incomprehensible a comprehension, that though He willed always +to make His later works novel and unlike what went before them, He +could not produce them without order and foresight, nor conceive them +suddenly, but by His eternal foreknowledge. + + + 19. _Of worlds without end, or ages of ages._[556] + +I do not presume to determine whether God does so, and whether +these times which are called "ages of ages" are joined together +in a continuous series, and succeed one another with a regulated +diversity, and leave exempt from their vicissitudes only those who +are freed from their misery, and abide without end in a blessed +immortality; or whether these are called "ages of ages," that we may +understand that the ages remain unchangeable in God's unwavering +wisdom, and are the efficient causes, as it were, of those ages +which are being spent in time. Possibly "ages" is used for "age," +so that nothing else is meant by "ages of ages" than by "age of +age," as nothing else is meant by "heavens of heavens" than by +"heaven of heaven." For God called the firmament, above which are +the waters, "Heaven," and yet the psalm says, "Let the waters that +are above the _heavens_ praise the name of the Lord."[557] Which of +these two meanings we are to attach to "ages of ages," or whether +there is not some other and better meaning still, is a very profound +question; and the subject we are at present handling presents no +obstacle to our meanwhile deferring the discussion of it, whether +we may be able to determine anything about it, or may only be made +more cautious by its further treatment, so as to be deterred from +making any rash affirmations in a matter of such obscurity. For at +present we are disputing the opinion that affirms the existence +of those periodic revolutions by which the same things are always +recurring at intervals of time. Now, whichever of these suppositions +regarding the "ages of ages" be the true one, it avails nothing for +the substantiating of those cycles; for whether the ages of ages be +not a repetition of the same world, but different worlds succeeding +one another in a regulated connection, the ransomed souls abiding in +well-assured bliss without any recurrence of misery, or whether the +ages of ages be the eternal causes which rule what shall be and is +in time, it equally follows, that those cycles which bring round the +same things have no existence; and nothing more thoroughly explodes +them than the fact of the eternal life of the saints. + + + 20. _Of the impiety of those who assert that the souls which enjoy + true and perfect blessedness, must yet again and again in these + periodic revolutions return to labour and misery._ + +What pious ears could bear to hear that after a life spent in so +many and severe distresses (if, indeed, that should be called a +life at all which is rather a death, so utter that the love of this +present death makes us fear that death which delivers us from it), +that after evils so disastrous, and miseries of all kinds have at +length been expiated and finished by the help of true religion and +wisdom, and when we have thus attained to the vision of God, and +have entered into bliss by the contemplation of spiritual light +and participation in His unchangeable immortality, which we burn to +attain,--that we must at some time lose all this, and that they who +do lose it are cast down from that eternity, truth, and felicity to +infernal mortality and shameful foolishness, and are involved in +accursed woes, in which God is lost, truth held in detestation, and +happiness sought in iniquitous impurities? and that this will happen +endlessly again and again, recurring at fixed intervals, and in +regularly returning periods? and that this everlasting and ceaseless +revolution of definite cycles, which remove and restore true misery +and deceitful bliss in turn, is contrived in order that God may be +able to know His own works, since on the one hand He cannot rest from +creating, and on the other, cannot know the infinite number of His +creatures, if He always makes creatures? Who, I say, can listen to +such things? Who can accept or suffer them to be spoken? Were they +true, it were not only more prudent to keep silence regarding them, +but even (to express myself as best I can) it were the part of wisdom +not to know them. For if in the future world we shall not remember +these things, and by this oblivion be blessed, why should we now +increase our misery, already burdensome enough, by the knowledge of +them? If, on the other hand, the knowledge of them will be forced +upon us hereafter, now at least let us remain in ignorance, that in +the present expectation we may enjoy a blessedness which the future +reality is not to bestow; since in this life we are expecting to +obtain life everlasting, but in the world to come are to discover it +to be blessed, but not everlasting. + +And if they maintain that no one can attain to the blessedness of +the world to come, unless in this life he has been indoctrinated in +those cycles in which bliss and misery relieve one another, how do +they avow that the more a man loves God, the more readily he attains +to blessedness,--they who teach what paralyzes love itself? For who +would not be more remiss and lukewarm in his love for a person whom +he thinks he shall be forced to abandon, and whose truth and wisdom +he shall come to hate; and this, too, after he has quite attained +to the utmost and most blissful knowledge of Him that he is capable +of? Can any one be faithful in his love, even to a human friend, if +he knows that he is destined to become his enemy?[558] God forbid +that there be any truth in an opinion which threatens us with a +real misery that is never to end, but is often and endlessly to be +interrupted by intervals of fallacious happiness. For what happiness +can be more fallacious and false than that in whose blaze of truth +we yet remain ignorant that we shall be miserable, or in whose most +secure citadel we yet fear that we shall be so? For if, on the one +hand, we are to be ignorant of coming calamity, then our present +misery is not so shortsighted, for it is assured of coming bliss. +If, on the other hand, the disaster that threatens is not concealed +from us in the world to come, then the time of misery which is to be +at last exchanged for a state of blessedness, is spent by the soul +more happily than its time of happiness, which is to end in a return +to misery. And thus our expectation of unhappiness is happy, but of +happiness unhappy. And therefore, as we here suffer present ills, and +hereafter fear ills that are imminent, it were truer to say that we +shall always be miserable, than that we can some time be happy. + +But these things are declared to be false by the loud testimony +of religion and truth; for religion truthfully promises a true +blessedness, of which we shall be eternally assured, and which cannot +be interrupted by any disaster. Let us therefore keep to the straight +path, which is Christ, and, with Him as our Guide and Saviour, let +us turn away in heart and mind from the unreal and futile cycles of +the godless. Porphyry, Platonist though he was, abjured the opinion +of his school, that in these cycles souls are ceaselessly passing +away and returning, either being struck with the extravagance of the +idea, or sobered by his knowledge of Christianity. As I mentioned in +the tenth book,[559] he preferred saying that the soul, as it had +been sent into the world that it might know evil, and be purged and +delivered from it, was never again exposed to such an experience +after it had once returned to the Father. And if he abjured the +tenets of his school, how much more ought we Christians to abominate +and avoid an opinion so unfounded and hostile to our faith? But +having disposed of these cycles and escaped out of them, no necessity +compels us to suppose that the human race had no beginning in time, +on the ground that there is nothing new in nature which, by I know +not what cycles, has not at some previous period existed, and is +not hereafter to exist again. For if the soul, once delivered, +as it never was before, is never to return to misery, then there +happens in its experience something which never happened before; +and this, indeed, something of the greatest consequence, to wit, +the secure entrance into eternal felicity. And if in an immortal +nature there can occur a novelty, which never has been, nor ever +shall be, reproduced by any cycle, why is it disputed that the same +may occur in mortal natures? If they maintain that blessedness is +no new experience to the soul, but only a return to that state in +which it has been eternally, then at least its deliverance from +misery is something new, since, by their own showing, the misery +from which it is delivered is itself, too, a new experience. And if +this new experience fell out by accident, and was not embraced in +the order of things appointed by Divine Providence, then where are +those determinate and measured cycles in which no new thing happens, +but all things are reproduced as they were before? If, however, this +new experience was embraced in that providential order of nature +(whether the soul was exposed to the evil of this world for the +sake of discipline, or fell into it by sin), then it is possible +for new things to happen which never happened before, and which yet +are not extraneous to the order of nature. And if the soul is able +by its own imprudence to create for itself a new misery, which was +not unforeseen by the Divine Providence, but was provided for in the +order of nature along with the deliverance from it, how can we, even +with all the rashness of human vanity, presume to deny that God can +create new things--new to the world, but not to Him--which He never +before created, but yet foresaw from all eternity? If they say that +it is indeed true that ransomed souls return no more to misery, but +that even so no new thing happens, since there always have been, +now are, and ever shall be a succession of ransomed souls, they must +at least grant that in this case there are new souls to whom the +misery and the deliverance from it are new. For if they maintain that +those souls out of which new men are daily being made (from whose +bodies, if they have lived wisely, they are so delivered that they +never return to misery) are not new, but have existed from eternity, +they must logically admit that they are infinite. For however great +a finite number of souls there were, that would not have sufficed +to make perpetually new men from eternity,--men whose souls were to +be eternally freed from this mortal state, and never afterwards to +return to it. And our philosophers will find it hard to explain how +there is an infinite number of souls in an order of nature which they +require shall be finite, that it may be known by God. + +And now that we have exploded these cycles which were supposed to +bring back the soul at fixed periods to the same miseries, what can +seem more in accordance with godly reason than to believe that it is +possible for God both to create new things never before created, and +in doing so, to preserve His will unaltered? But whether the number +of eternally redeemed souls can be continually increased or not, let +the philosophers themselves decide, who are so subtle in determining +where infinity cannot be admitted. For our own part, our reasoning +holds in either case. For if the number of souls can be indefinitely +increased, what reason is there to deny that what had never before +been created, could be created? since the number of ransomed souls +never existed before, and has yet not only been once made, but will +never cease to be anew coming into being. If, on the other hand, +it be more suitable that the number of eternally ransomed souls be +definite, and that this number will never be increased, yet this +number, whatever it be, did assuredly never exist before, and it +cannot increase, and reach the amount it signifies, without having +some beginning; and this beginning never before existed. That this +beginning, therefore, might be, the first man was created. + + + 21. _That there was created at first but one individual, and that + the human race was created in him._ + +Now that we have solved, as well as we could, this very difficult +question about the eternal God creating new things, without any +novelty of will, it is easy to see how much better it is that God was +pleased to produce the human race from the one individual whom He +created, than if He had originated it in several men. For as to the +other animals, He created some solitary, and naturally seeking lonely +places,--as the eagles, kites, lions, wolves, and such like; others +gregarious, which herd together, and prefer to live in company,--as +pigeons, starlings, stags, and little fallow deer, and the like: but +neither class did He cause to be propagated from individuals, but +called into being several at once. Man, on the other hand, whose +nature was to be a mean between the angelic and bestial, He created +in such sort, that if he remained in subjection to His Creator as +his rightful Lord, and piously kept His commandments, he should pass +into the company of the angels, and obtain, without the intervention +of death,[560] a blessed and endless immortality; but if he offended +the Lord his God by a proud and disobedient use of his free will, +he should become subject to death, and live as the beasts do,--the +slave of appetite, and doomed to eternal punishment after death. And +therefore God created only one single man, not, certainly, that he +might be a solitary bereft of all society, but that by this means the +unity of society and the bond of concord might be more effectually +commended to him, men being bound together not only by similarity of +nature, but by family affection. And indeed He did not even create +the woman that was to be given him as his wife, as he created the +man, but created her out of the man, that the whole human race might +derive from one man. + + + 22. _That God foreknew that the first man would sin, and that He at + the same time foresaw how large a multitude of godly persons + would by His grace be translated to the fellowship of the angels._ + +And God was not ignorant that man would sin, and that, being himself +made subject now to death, he would propagate men doomed to die, and +that these mortals would run to such enormities in sin, that even the +beasts devoid of rational will, and who were created in numbers from +the waters and the earth, would live more securely and peaceably with +their own kind than men, who had been propagated from one individual +for the very purpose of commending concord. For not even lions or +dragons have ever waged with their kind such wars as men have waged +with one another.[561] But God foresaw also that by His grace a +people would be called to adoption, and that they, being justified +by the remission of their sins, would be united by the Holy Ghost +to the holy angels in eternal peace, the last enemy, death, being +destroyed; and He knew that this people would derive profit from the +consideration that God had caused all men to be derived from one, for +the sake of showing how highly He prizes unity in a multitude. + + + 23. _Of the nature of the human soul created in the image of God._ + +God, then, made man in His own image. For He created for him a soul +endowed with reason and intelligence, so that he might excel all the +creatures of earth, air, and sea, which were not so gifted. And when +He had formed the man out of the dust of the earth, and had willed +that his soul should be such as I have said,--whether He had already +made it, and now by breathing imparted it to man, or rather made it +by breathing, so that that breath which God made by breathing (for +what else is "to breathe" than to make breath?) is the soul,[562]--He +made also a wife for him, to aid him in the work of generating his +kind, and her He formed of a bone taken out of the man's side, +working in a divine manner. For we are not to conceive of this work +in a carnal fashion, as if God wrought as we commonly see artisans, +who use their hands, and material furnished to them, that by their +artistic skill they may fashion some material object. God's hand is +God's power; and He, working invisibly, effects visible results. +But this seems fabulous rather than true to men, who measure by +customary and everyday works the power and wisdom of God, whereby He +understands and produces without seeds even seeds themselves; and +because they cannot understand the things which at the beginning were +created, they are sceptical regarding them--as if the very things +which they do know about human propagation, conceptions and births, +would seem less incredible if told to those who had no experience of +them; though these very things, too, are attributed by many rather to +physical and natural causes than to the work of the divine mind. + + + 24. _Whether the angels can be said to be the creators of any, even + the least creature._ + +But in this book we have nothing to do with those who do not believe +that the divine mind made or cares for this world. As for those who +believe their own Plato, that all mortal animals--among whom man +holds the pre-eminent place, and is near to the gods themselves--were +created not by that most high God who made the world, but by other +lesser gods created by the Supreme, and exercising a delegated power +under His control,--if only those persons be delivered from the +superstition which prompts them to seek a plausible reason for paying +divine honours and sacrificing to these gods as their creators, they +will easily be disentangled also from this their error. For it is +blasphemy to believe or to say (even before it can be understood) +that any other than God is creator of any nature, be it never so +small and mortal. And as for the angels, whom those Platonists prefer +to call gods, although they do, so far as they are permitted and +commissioned, aid in the production of the things around us, yet not +on that account are we to call them creators, any more than we call +gardeners the creators of fruits and trees. + + + 25. _That God alone is the Creator of every kind of creature, + whatever its nature or form._ + +For whereas there is one form which is given from without to every +bodily substance,--such as the form which is constructed by potters +and smiths, and that class of artists who paint and fashion forms +like the body of animals,--but another and internal form which is not +itself constructed, but, as the efficient cause, produces not only +the natural bodily forms, but even the life itself of the living +creatures, and which proceeds from the secret and hidden choice of +an intelligent and living nature,--let that first-mentioned form be +attributed to every artificer, but this latter to one only, God, the +Creator and Originator who made the world itself and the angels, +without the help of world or angels. For the same divine and, so +to speak, creative energy, which cannot be made, but makes, and +which gave to the earth and sky their roundness,--this same divine, +effective, and creative energy gave their roundness to the eye and +to the apple; and the other natural objects which we anywhere see, +received also their form, not from without, but from the secret and +profound might of the Creator, who said, "Do not I fill heaven and +earth?"[563] and whose wisdom it is that "reacheth from one end +to another mightily; and sweetly doth she order all things."[564] +Wherefore I know not what kind of aid the angels, themselves created +first, afforded to the Creator in making other things. I cannot +ascribe to them what perhaps they cannot do, neither ought I to deny +them such faculty as they have. But, by their leave, I attribute the +creating and originating work which gave being to all natures to God, +to whom they themselves thankfully ascribe their existence. We do not +call gardeners the creators of their fruits, for we read, "Neither +is he that planteth anything, neither he that watereth, but God that +giveth the increase."[565] Nay, not even the earth itself do we call +a creator, though she seems to be the prolific mother of all things +which she aids in germinating and bursting forth from the seed, and +which she keeps rooted in her own breast; for we likewise read, +"God giveth it a body, as it hath pleased Him, and to every seed +his own body."[566] We ought not even to call a woman the creatress +of her own offspring; for He rather is its creator who said to His +servant, "Before I formed thee in the womb, I knew thee."[567] And +although the various mental emotions of a pregnant woman do produce +in the fruit of her womb similar qualities,--as Jacob with his +peeled wands caused piebald sheep to be produced,--yet the mother +as little creates her offspring, as she created herself. Whatever +bodily or seminal causes, then, may be used for the production of +things, either by the co-operation of angels, men, or the lower +animals, or by sexual generation; and whatever power the desires +and mental emotions of the mother have to produce in the tender and +plastic fœtus, corresponding lineaments and colours; yet the natures +themselves, which are thus variously affected, are the production of +none but the most high God. It is His occult power which pervades +all things, and is present in all without being contaminated, which +gives being to all that is, and modifies and limits its existence; +so that without Him it would not be thus or thus, nor would have any +being at all.[568] If, then, in regard to that outward form which +the workman's hand imposes on his work, we do not say that Rome and +Alexandria were built by masons and architects, but by the kings by +whose will, plan, and resources they were built, so that the one has +Romulus, the other Alexander, for its founder; with how much greater +reason ought we to say that God alone is the Author of all natures, +since He neither uses for His work any material which was not made +by Him, nor any workmen who were not also made by Him, and since, if +He were, so to speak, to withdraw from created things His creative +power, they would straightway relapse into the nothingness in which +they were before they were created? "Before," I mean, in respect of +eternity, not of time. For what other creator could there be of time, +than He who created those things whose movements make time?[569] + + + 26. _Of that opinion of the Platonists, that the angels were + themselves indeed created by God, but that afterwards they + created man's body._ + +It is obvious, that in attributing the creation of the other animals +to those inferior gods who were made by the Supreme, he meant it to be +understood that the immortal part was taken from God Himself, and that +these minor creators added the mortal part; that is to say, he meant +them to be considered the creators of our bodies, but not of our souls. +But since Porphyry maintains that if the soul is to be purified, all +entanglement with a body must be escaped from; and at the same time +agrees with Plato and the Platonists in thinking that those who have +not spent a temperate and honourable life return to mortal bodies as +their punishment (to bodies of brutes in Plato's opinion, to human +bodies in Porphyry's); it follows that those whom they would have us +worship as our parents and authors, that they may plausibly call them +gods, are, after all, but the forgers of our fetters and chains,--not +our creators, but our jailers and turnkeys, who lock us up in the +most bitter and melancholy house of correction. Let the Platonists, +then, either cease menacing us with our bodies as the punishment of +our souls, or preaching that we are to worship as gods those whose +work upon us they exhort us by all means in our power to avoid and +escape from. But, indeed, both opinions are quite false. It is false +that souls return again to this life to be punished; and it is false +that there is any other creator of anything in heaven or earth, than +He who made the heaven and the earth. For if we live in a body only +to expiate our sins, how says Plato in another place, that the world +could not have been the most beautiful and good, had it not been filled +with all kinds of creatures, mortal and immortal?[570] But if our +creation even as mortals be a divine benefit, how is it a punishment +to be restored to a body, that is, to a divine benefit? And if God, as +Plato continually maintains, embraced in His eternal intelligence the +ideas both of the universe and of all the animals, how, then, should +He not with His own hand make them all? Could He be unwilling to be +the constructor of works, the idea and plan of which called for His +ineffable and ineffably to be praised intelligence? + + + 27. _That the whole plenitude of the human race was embraced in the + first man, and that God there saw the portion of it which was + to be honoured and rewarded, and that which was to be condemned + and punished._ + +With good cause, therefore, does the true religion recognise and +proclaim that the same God who created the universal cosmos, created +also all the animals, souls as well as bodies. Among the terrestrial +animals man was made by Him in His own image, and, for the reason +I have given, was made one individual, though he was not left +solitary. For there is nothing so social by nature, so unsocial by +its corruption, as this race. And human nature has nothing more +appropriate, either for the prevention of discord, or for the healing +of it, where it exists, than the remembrance of that first parent +of us all, whom God was pleased to create alone, that all men might +be derived from one, and that they might thus be admonished to +preserve unity among their whole multitude. But from the fact that +the woman was made for him from his side, it was plainly meant that +we should learn how dear the bond between man and wife should be. +These works of God do certainly seem extraordinary, because they are +the first works. They who do not believe them, ought not to believe +any prodigies; for these would not be called prodigies did they not +happen out of the ordinary course of nature. But, is it possible that +anything should happen in vain, however hidden be its cause, in so +grand a government of divine providence? One of the sacred Psalmists +says, "Come, behold the works of the Lord, what prodigies He hath +wrought in the earth."[571] Why God made woman out of man's side, and +what this first prodigy prefigured, I shall, with God's help, tell +in another place. But at present, since this book must be concluded, +let us merely say that in this first man, who was created in the +beginning, there was laid the foundation, not indeed evidently, but +in God's foreknowledge, of these two cities or societies, so far +as regards the human race. For from that man all men were to be +derived--some of them to be associated with the good angels in their +reward, others with the wicked in punishment; all being ordered by +the secret yet just judgment of God. For since it is written, "All +the paths of the Lord are mercy and truth,"[572] neither can His +grace be unjust, nor His justice cruel. + +FOOTNOTES: + +[520] _Vitium_: perhaps "fault" most nearly embraces all the uses of +this word. + +[521] Essentia. + +[522] Ex. iii. 14. + +[523] Quintilian calls it _dura_. + +[524] With this may be compared the argument of Socrates in the +_Gorgias_, in which it is shown that to escape punishment is worse +than to suffer it, and that the greatest of evils is to do wrong and +not be chastised. + +[525] Eccles. x. 13. + +[526] Specie. + +[527] Ps. xix. 12. + +[528] C. 13. + +[529] Rom. v. 5. + +[530] Ps. lxxiii. 28. + +[531] _De Deo Socratis._ + +[532] Augustine no doubt refers to the interesting account given by +Critias, near the beginning of the _Timæus_, of the conversation of +Solon with the Egyptian priests. + +[533] Augustine here follows the chronology of Eusebius, who reckons +5611 years from the Creation to the taking of Rome by the Goths; +adopting the Septuagint version of the patriarchal ages. + +[534] See above, viii. 5. + +[535] It is not apparent to what Augustine refers. The Arcadians, +according to Macrobius (_Saturn._ i. 7), divided their year into +three months, and the Egyptians divided theirs into three seasons: +each of these seasons having four months, it is possible that +Augustine may have referred to this. See Wilkinson's excursus on the +Egyptian year, in Rawlinson's _Herod._ Book ii. + +[536] The former opinion was held by Democritus and his disciple +Epicurus; the latter by Heraclitus, who supposed that "God amused +Himself" by thus renewing worlds. + +[537] The Alexandrian Neo-Platonists endeavoured in this way to +escape from the obvious meaning of the _Timæus_. + +[538] Antoninus says (ii. 14), "All things from eternity are of +like forms, and come round in a circle." Cf. also ix. 28, and the +references to more ancient philosophical writers in Gataker's notes +on these passages. + +[539] Eccles. i. 9, 10. So Origen, _de Prin._ iii. 5, and ii. 3. + +[540] Rom. vi. 9. + +[541] 1 Thess. iv. 16. + +[542] Ps. xii. 7. + +[543] Cf. _de Trin._ v. 17. + +[544] Wisdom ix. 13-15. + +[545] Gen. i. 1. + +[546] Gen. i. 14. + +[547] Rom. xii. 3. + +[548] Titus i. 2, 3. Augustine here follows the version of Jerome, +and not the Vulgate. Comp. _Contra Priscill._ 6, and _de Gen. c. +Man._ iv. 4. + +[549] 2 Cor. x. 12. Here, and in _Enar. in_ Ps. xxxiv., and also in +_Cont. Faust._ xxii. 47, Augustine follows the Greek, and not the +Vulgate. + +[550] _i.e._ indefinite, or an indefinite succession of things. + +[551] Again in the _Timæus_. + +[552] Wisdom xi. 20. + +[553] Isa. xl. 26. + +[554] Matt. x. 30. + +[555] Ps. cxlvii. 5. + +[556] De sæculis sæculorum. + +[557] Ps. cxlviii. 4. + +[558] Cicero has the same (_de Amicitia_, 16): "Quonam modo quisquam +amicus esse poterit, cui se putabit inimicum esse posse?" He also +quotes Scipio to the effect that no sentiment is more unfriendly to +friendship than this, that we should love as if some day we were to +hate. + +[559] C. 30. + +[560] Coquæus remarks that this is levelled against the Pelagians. + +[561] + + "Quando leoni + Fortior eripuit vitam leo? quo nemore unquam + Exspiravit aper majoris dentibus apri? + Indica tigris agit rabida cum tigride pacem + Perpetuam; sævis inter se convenit ursis. + Ast homini," etc. + JUVENAL, _Sat._ xv. 160-5. + +--See also the very striking lines which precede these. + +[562] See this further discussed in _Gen. ad Lit._ vii. 35, and in +Delitzsch's _Bibl. Psychology_. + +[563] Jer. xxiii. 24. + +[564] Wisdom viii. 1. + +[565] 1 Cor. iii. 7. + +[566] 1 Cor. xv. 38. + +[567] Jer. i. 5. + +[568] Compare _de Trin._ iii. 13-16. + +[569] See Book xi. 5. + +[570] "The Deity, desirous of making the universe in all respects +resemble the most beautiful and entirely perfect of intelligible +objects, formed it into one visible animal, containing within itself +all the other animals with which it is naturally allied."--_Timæus_, +c. xi. + +[571] Ps. xlvi. 8. + +[572] Ps. xxv. 10. + + + + + BOOK THIRTEENTH. + + ARGUMENT. + + IN THIS BOOK IT IS TAUGHT THAT DEATH IS PENAL, AND HAD ITS + ORIGIN IN ADAM'S SIN. + + + 1. _Of the fall of the first man, through which mortality has + been contracted._ + +Having disposed of the very difficult questions concerning the origin +of our world and the beginning of the human race, the natural order +requires that we now discuss the fall of the first man (we may say +of the first men), and of the origin and propagation of human death. +For God had not made man like the angels, in such a condition that, +even though they had sinned, they could none the more die. He had so +made them, that if they discharged the obligations of obedience, an +angelic immortality and a blessed eternity might ensue, without the +intervention of death; but if they disobeyed, death should be visited +on them with just sentence--which, too, has been spoken to in the +preceding book. + + + 2. _Of that death which can affect an immortal soul, and of that + to which the body is subject._ + +But I see I must speak a little more carefully of the nature of +death. For although the human soul is truly affirmed to be immortal, +yet it also has a certain death of its own. For it is therefore +called immortal, because, in a sense, it does not cease to live and +to feel; while the body is called mortal, because it can be forsaken +of all life, and cannot by itself live at all. The death, then, of +the soul takes place when God forsakes it, as the death of the body +when the soul forsakes it. Therefore the death of both--that is, of +the whole man--occurs when the soul, forsaken by God, forsakes the +body. For, in this case, neither is God the life of the soul, nor +the soul the life of the body. And this death of the whole man is +followed by that which, on the authority of the divine oracles, we +call the second death. This the Saviour referred to when He said, +"Fear Him which is able to destroy both soul and body in hell."[573] +And since this does not happen before the soul is so joined to its +body that they cannot be separated at all, it may be matter of wonder +how the body can be said to be killed by that death in which it is +not forsaken by the soul, but, being animated and rendered sensitive +by it, is tormented. For in that penal and everlasting punishment, +of which in its own place we are to speak more at large, the soul +is justly said to die, because it does not live in connection with +God; but how can we say that the body is dead, seeing that it lives +by the soul? For it could not otherwise feel the bodily torments +which are to follow the resurrection. Is it because life of every +kind is good, and pain an evil, that we decline to say that that body +lives, in which the soul is the cause, not of life, but of pain? +The soul, then, lives by God when it lives well, for it cannot live +well unless by God working in it what is good; and the body lives by +the soul when the soul lives in the body, whether itself be living +by God or no. For the wicked man's life in the body is a life not +of the soul, but of the body, which even dead souls--that is, souls +forsaken of God--can confer upon bodies, how little soever of their +own proper life, by which they are immortal, they retain. But in +the last damnation, though man does not cease to feel, yet because +this feeling of his is neither sweet with pleasure nor wholesome +with repose, but painfully penal, it is not without reason called +death rather than life. And it is called the second death because it +follows the first, which sunders the two cohering essences, whether +these be God and the soul, or the soul and the body. Of the first and +bodily death, then, we may say that to the good it is good, and evil +to the evil. But, doubtless, the second, as it happens to none of the +good, so it can be good for none. + + + 3. _Whether death, which by the sin of our first parents has passed + upon all men, is the punishment of sin, even to the good._ + +But a question not to be shirked arises: Whether in very truth death, +which separates soul and body, is good to the good?[574] For if it +be, how has it come to pass that such a thing should be the punishment +of sin? For the first men would not have suffered death had they not +sinned. How, then, can that be good to the good, which could not have +happened except to the evil? Then, again, if it could only happen to +the evil, to the good it ought not to be good, but non-existent. For +why should there be any punishment where there is nothing to punish? +Wherefore we must say that the first men were indeed so created, that +if they had not sinned, they would not have experienced any kind of +death; but that, having become sinners, they were so punished with +death, that whatsoever sprang from their stock should also be punished +with the same death. For nothing else could be born of them than that +which they themselves had been. Their nature was deteriorated in +proportion to the greatness of the condemnation of their sin, so that +what existed as punishment in those who first sinned, became a natural +consequence in their children. For man is not produced by man, as he +was from the dust. For dust was the material out of which man was made: +man is the parent by whom man is begotten. Wherefore earth and flesh +are not the same thing, though flesh be made of earth. But as man the +parent is, such is man the offspring. In the first man, therefore, +there existed the whole human nature, which was to be transmitted by +the woman to posterity, when that conjugal union received the divine +sentence of its own condemnation; and what man was made, not when +created, but when he sinned and was punished, this he propagated, +so far as the origin of sin and death are concerned. For neither by +sin nor its punishment was he himself reduced to that infantine and +helpless infirmity of body and mind which we see in children. For God +ordained that infants should begin the world as the young of beasts +begin it, since their parents had fallen to the level of the beasts +in the fashion of their life and of their death; as it is written, +"Man when he was in honour understood not; he became like the beasts +that have no understanding."[575] Nay more, infants, we see, are even +feebler in the use and movement of their limbs, and more infirm to +choose and refuse, than the most tender offspring of other animals; +as if the force that dwells in human nature were destined to surpass +all other living things so much the more eminently, as its energy has +been longer restrained, and the time of its exercise delayed, just as +an arrow flies the higher the further back it has been drawn. To this +infantine imbecility[576] the first man did not fall by his lawless +presumption and just sentence; but human nature was in his person +vitiated and altered to such an extent, that he suffered in his members +the warring of disobedient lust, and became subject to the necessity +of dying. And what he himself had become by sin and punishment, such +he generated those whom he begot; that is to say, subject to sin and +death. And if infants are delivered from this bondage of sin by the +Redeemer's grace, they can suffer only this death which separates soul +and body; but being redeemed from the obligation of sin, they do not +pass to that second endless and penal death. + + + 4. _Why death, the punishment of sin, is not withheld from those + who by the grace of regeneration are absolved from sin._ + +If, moreover, any one is solicitous about this point, how, if death +be the very punishment of sin, they whose guilt is cancelled by grace +do yet suffer death, this difficulty has already been handled and +solved in our other work which we have written on the baptism of +infants.[577] There it was said that the parting of soul and body was +left, though its connection with sin was removed, for this reason, +that if the immortality of the body followed immediately upon the +sacrament of regeneration, faith itself would be thereby enervated. +For faith is then only faith when it waits in hope for what is not +yet seen in substance. And by the vigour and conflict of faith, at +least in times past, was the fear of death overcome. Specially was +this conspicuous in the holy martyrs, who could have had no victory, +no glory, to whom there could not even have been any conflict, if, +after the laver of regeneration, saints could not suffer bodily +death. Who would not, then, in company with the infants presented +for baptism, run to the grace of Christ, that so he might not be +dismissed from the body? And thus faith would not be tested with an +unseen reward; and so would not even be faith, seeking and receiving +an immediate recompense of its works. But now, by the greater and +more admirable grace of the Saviour, the punishment of sin is turned +to the service of righteousness. For then it was proclaimed to man, +"If thou sinnest, thou shalt die;" now it is said to the martyr, +"Die, that thou sin not." Then it was said, "If ye transgress the +commandments, ye shall die;" now it is said, "If ye decline death, +ye transgress the commandment." That which was formerly set as an +object of terror, that men might not sin, is now to be undergone if +we would not sin. Thus, by the unutterable mercy of God, even the +very punishment of wickedness has become the armour of virtue, and +the penalty of the sinner becomes the reward of the righteous. For +then death was incurred by sinning, now righteousness is fulfilled +by dying. In the case of the holy martyrs it is so; for to them the +persecutor proposes the alternative, apostasy or death. For the +righteous prefer by believing to suffer what the first transgressors +suffered by not believing. For unless they had sinned, they would +not have died; but the martyrs sin if they do not die. The one died +because they sinned, the others do not sin because they die. By the +guilt of the first, punishment was incurred; by the punishment of +the second, guilt is prevented. Not that death, which was before an +evil, has become something good, but only that God has granted to +faith this grace, that death, which is the admitted opposite to life, +should become the instrument by which life is reached. + + + 5. _As the wicked make an ill use of the law, which is good, so + the good make a good use of death, which is an ill._ + +The apostle, wishing to show how hurtful a thing sin is, when grace +does not aid us, has not hesitated to say that the strength of sin +is that very law by which sin is prohibited. "The sting of death +is sin, and the strength of sin is the law."[578] Most certainly +true; for prohibition increases the desire of illicit action, if +righteousness is not so loved that the desire of sin is conquered +by that love. But unless divine grace aid us, we cannot love nor +delight in true righteousness. But lest the law should be thought to +be an evil, since it is called the strength of sin, the apostle, when +treating a similar question in another place, says, "The law indeed +is holy, and the commandment holy, and just, and good. Was then that +which is holy made death unto me? God forbid. But sin, that it might +appear sin, working death in me by that which is good; that sin by +the commandment might become exceeding sinful."[579] _Exceeding_, +he says, because the transgression is more heinous when through the +increasing lust of sin the law itself also is despised. Why have we +thought it worth while to mention this? For this reason, because, as +the law is not an evil when it increases the lust of those who sin, +so neither is death a good thing when it increases the glory of those +who suffer it, since either the former is abandoned wickedly, and +makes transgressors, or the latter is embraced for the truth's sake, +and makes martyrs. And thus the law is indeed good, because it is +prohibition of sin, and death is evil because it is the wages of sin; +but as wicked men make an evil use not only of evil, but also of good +things, so the righteous make a good use not only of good, but also +of evil things. Whence it comes to pass that the wicked make an ill +use of the law, though the law is good; and that the good die well, +though death is an evil. + + + 6. _Of the evil of death in general, considered as the separation + of soul and body._ + +Wherefore, as regards bodily death, that is, the separation of the +soul from the body, it is good unto none while it is being endured +by those whom we say are in the article of death. For the very +violence with which body and soul are wrenched asunder, which in +the living had been conjoined and closely intertwined, brings with +it a harsh experience, jarring horridly on nature so long as it +continues, till there comes a total loss of sensation, which arose +from the very interpenetration of spirit and flesh. And all this +anguish is sometimes forestalled by one stroke of the body or sudden +flitting of the soul, the swiftness of which prevents it from being +felt. But whatever that may be in the dying which with violently +painful sensation robs of all sensation, yet, when it is piously +and faithfully borne, it increases the merit of patience, but does +not make the name of punishment inapplicable. Death, proceeding by +ordinary generation from the first man, is the punishment of all who +are born of him, yet, if it be endured for righteousness' sake, it +becomes the glory of those who are born again; and though death be +the award of sin, it sometimes secures that nothing be awarded to sin. + + + 7. _Of the death which the unbaptized_[580] _suffer for the + confession of Christ._ + +For whatever unbaptized persons die confessing Christ, this +confession is of the same efficacy for the remission of sins as if +they were washed in the sacred font of baptism. For He who said, +"Except a man be born of water and of the Spirit, he cannot enter +into the kingdom of God,"[581] made also an exception in their +favour, in that other sentence where He no less absolutely said, +"Whosoever shall confess me before men, him will I confess also +before my Father which is in heaven;"[582] and in another place, +"Whosoever will lose his life for my sake, shall find it."[583] And +this explains the verse, "Precious in the sight of the Lord is the +death of His saints."[584] For what is more precious than a death +by which a man's sins are all forgiven, and his merits increased an +hundredfold? For those who have been baptized when they could no +longer escape death, and have departed this life with all their sins +blotted out, have not equal merit with those who did not defer death, +though it was in their power to do so, but preferred to end their +life by confessing Christ, rather than by denying Him to secure an +opportunity of baptism. And even had they denied Him under pressure +of the fear of death, this too would have been forgiven them in +that baptism, in which was remitted even the enormous wickedness of +those who had slain Christ. But how abundant in these men must have +been the grace of the Spirit, who breathes where He listeth, seeing +that they so dearly loved Christ as to be unable to deny Him even in +so sore an emergency, and with so sure a hope of pardon! Precious, +therefore, is the death of the saints, to whom the grace of Christ +has been applied with such gracious effects, that they do not +hesitate to meet death themselves, if so be they might meet Him. And +precious is it, also, because it has proved that what was originally +ordained for the punishment of the sinner, has been used for the +production of a richer harvest of righteousness. But not on this +account should we look upon death as a good thing, for it is diverted +to such useful purposes, not by any virtue of its own, but by the +divine interference. Death was originally proposed as an object of +dread, that sin might not be committed; now it must be undergone that +sin may not be committed, or, if committed, be remitted, and the +award of righteousness bestowed on him whose victory has earned it. + + + 8. _That the saints, by suffering the first death for the truth's + sake, are freed from the second._ + +For if we look at the matter a little more carefully, we shall see +that even when a man dies faithfully and laudably for the truth's +sake, it is still death he is avoiding. For he submits to some part +of death, for the very purpose of avoiding the whole, and the second +and eternal death over and above. He submits to the separation of +soul and body, lest the soul be separated both from God and from the +body, and so the whole first death be completed, and the second death +receive him everlastingly. Wherefore death is indeed, as I said, good +to none while it is being actually suffered, and while it is subduing +the dying to its power; but it is meritoriously endured for the sake +of retaining or winning what _is_ good. And regarding what happens +after death, it is no absurdity to say that death is good to the +good, and evil to the evil. For the disembodied spirits of the just +are at rest; but those of the wicked suffer punishment till their +bodies rise again,--those of the just to life everlasting, and of the +others to death eternal, which is called the second death. + + + 9. _Whether we should say that the moment of death, in which + sensation ceases, occurs in the experience of the dying or in + that of the dead._ + +The point of time in which the souls of the good and evil are +separated from the body, are we to say it is after death, or in death +rather? If it is after death, then it is not death which is good or +evil, since death is done with and past, but it is the life which +the soul has now entered on. Death was an evil when it was present, +that is to say, when it was being suffered by the dying; for to them +it brought with it a severe and grievous experience, which the good +make a good use of. But when death is past, how can that which no +longer is be either good or evil? Still further, if we examine the +matter more closely, we shall see that even that sore and grievous +pain which the dying experience is not death itself. For so long as +they have any sensation, they are certainly still alive; and, if +still alive, must rather be said to be in a state previous to death +than in death. For when death actually comes, it robs us of all +bodily sensation, which, while death is only approaching, is painful. +And thus it is difficult to explain how we speak of those who are not +yet dead, but are agonized in their last and mortal extremity, as +being in the article of death. Yet what else can we call them than +dying persons? for when death which was imminent shall have actually +come, we can no longer call them dying but dead. No one, therefore, +is dying unless living; since even he who is in the last extremity of +life, and, as we say, giving up the ghost, yet lives. The same person +is therefore at once dying and living, but drawing near to death, +departing from life; yet in life, because his spirit yet abides in +the body; not yet in death, because not yet has his spirit forsaken +the body. But if, when it has forsaken it, the man is not even then +in death, but after death, who shall say when he is in death? On the +one hand, no one can be called dying, if a man cannot be dying and +living at the same time; and as long as the soul is in the body, we +cannot deny that he is living. On the other hand, if the man who is +approaching death be rather called dying, I know not who is living. + + + 10. _Of the life of mortals, which is rather to be called death + than life._ + +For no sooner do we begin to live in this dying body, than we begin +to move ceaselessly towards death.[585] For in the whole course of +this life (if life we must call it) its mutability tends towards +death. Certainly there is no one who is not nearer it this year than +last year, and to-morrow than to-day, and to-day than yesterday, +and a short while hence than now, and now than a short while ago. +For whatever time we live is deducted from our whole term of life, +and that which remains is daily becoming less and less; so that our +whole life is nothing but a race towards death, in which no one is +allowed to stand still for a little space, or to go somewhat more +slowly, but all are driven forwards with an impartial movement, and +with equal rapidity. For he whose life is short spends a day no more +swiftly than he whose life is longer. But while the equal moments are +impartially snatched from both, the one has a nearer and the other +a more remote goal to reach with this their equal speed. It is one +thing to make a longer journey, and another to walk more slowly. +He, therefore, who spends longer time on his way to death does not +proceed at a more leisurely pace, but goes over more ground. Further, +if every man begins to die, that is, is in death, as soon as death +has begun to show itself in him (by taking away life, to wit; for +when life is all taken away, the man will be then not in death, but +after death), then he begins to die so soon as he begins to live. +For what else is going on in all his days, hours, and moments, until +this slow-working death is fully consummated? And then comes the time +_after death_, instead of that in which life was being withdrawn, +and which we called being _in death_. Man, then, is never in life +from the moment he dwells in this dying rather than living body,--if, +at least, he cannot be in life and death at once. Or rather, shall +we say, he is in both?--in life, namely, which he lives till all is +consumed; but in death also, which he dies as his life is consumed? +For if he is not in life, what is it which is consumed till all be +gone? And if he is not in death, what is this consumption itself? +For when the whole of life has been consumed, the expression "after +death" would be meaningless, had that consumption not been death. And +if, when it has all been consumed, a man is not in death but after +death, when is he in death, unless when life is being consumed away? + + + 11. _Whether one can both be living and dead at the same time._ + +But if it is absurd to say that a man is in death before he reaches +death (for to what is his course running as he passes through life, +if already he is in death?), and if it outrage common usage to speak +of a man being at once alive and dead, as much as it does so, to +speak of him as at once asleep and awake, it remains to be asked +when a man is dying? For, before death comes, he is not dying but +living; and when death has come, he is not dying but dead. The one +is before, the other after death. When, then, is he in death so that +we can say he is dying? For as there are three times, before death, +in death, after death, so there are three states corresponding, +living, dying, dead. And it is very hard to define when a man is in +death or dying, when he is neither living, which is before death, +nor dead, which is after death, but dying, which is in death. For so +long as the soul is in the body, especially if consciousness remain, +the man certainly lives; for body and soul constitute the man. And +thus, before death, he cannot be said to be in death; but when, on +the other hand, the soul has departed, and all bodily sensation is +extinct, death is past, and the man is dead. Between these two states +the dying condition finds no place; for if a man yet lives, death has +not arrived; if he has ceased to live, death is past. Never, then, +is he dying, that is, comprehended in the state of death. So also +in the passing of time,--you try to lay your finger on the present, +and cannot find it, because the present occupies no space, but is +only the transition of time from the future to the past. Must we +then conclude that there is thus no death of the body at all? For if +there is, where is it, since it is in no one, and no one can be in +it? Since, indeed, if there is yet life, death is not yet; for this +state is before death, not in death: and if life has already ceased, +death is not present; for this state is after death, not in death. On +the other hand, if there is no death before or after, what do we mean +when we say "after death," or "before death?" This is a foolish way +of speaking if there is no death. And would that we had lived so well +in Paradise that in very truth there were now no death! But not only +does it now exist, but so grievous a thing is it, that no skill is +sufficient either to explain or to escape it. + +Let us, then, speak in the customary way,--no man ought to speak +otherwise,--and let us call the time before death come, "before death;" +as it is written, "Praise no man before his death."[586] And when it +has happened, let us say that "after death" this or that took place. +And of the present time let us speak as best we can, as when we say, +"He, when dying, made his will, and left this or that to such and such +persons,"--though, of course, he could not do so unless he were living, +and did this rather before death than in death. And let us use the same +phraseology as Scripture uses; for it makes no scruple of saying that +the dead are not after but in death. So that verse, "For in death there +is no remembrance of thee."[587] For until the resurrection men are +justly said to be in death; as every one is said to be in sleep till +he awakes. However, though we can say of persons in sleep that they +are sleeping, we cannot speak in this way of the dead, and say they +are dying. For, so far as regards the death of the body, of which we +are now speaking, one cannot say that those who are already separated +from their bodies continue dying. But this, you see, is just what I +was saying,--that no words can explain how either the dying are said +to live, or how the dead are said, even after death, to be in death. +For how can they be after death if they be in death, especially when we +do not even call them dying, as we call those in sleep, sleeping; and +those in languor, languishing; and those in grief, grieving; and those +in life, living? And yet the dead, until they rise again, are said to +be in death, but cannot be called dying. + +And therefore I think it has not unsuitably nor inappropriately come +to pass, though not by the intention of man, yet perhaps with divine +purpose, that this Latin word _moritur_ cannot be declined by the +grammarians according to the rule followed by similar words. For +_oritur_ gives the form _ortus est_ for the perfect; and all similar +verbs form this tense from their perfect participles. But if we ask the +perfect of _moritur_, we get the regular answer, _mortuus est_ with a +double _u_. For thus _mortuus_ is pronounced, like _fatuus_, _arduus_, +_conspicuus_, and similar words, which are not perfect participles but +adjectives, and are declined without regard to tense. But _mortuus_, +though in form an adjective, is used as perfect participle, as if that +were to be declined which cannot be declined; and thus it has suitably +come to pass that, as the thing itself cannot in point of fact be +declined, so neither can the word significant of the act be declined. +Yet, by the aid of our Redeemer's grace, we may manage at least to +decline the second. For that is more grievous still, and, indeed, of +all evils the worst, since it consists not in the separation of soul +and body, but in the uniting of both in death eternal. And there, in +striking contrast to our present conditions, men will not be before or +after death, but always in death; and thus never living, never dead, +but endlessly dying. And never can a man be more disastrously in death +than when death itself shall be deathless. + + + 12. _What death God intended, when He threatened our first parents + with death if they should disobey His commandment._ + +When, therefore, it is asked what death it was with which God +threatened our first parents if they should transgress the commandment +they had received from Him, and should fail to preserve their +obedience,--whether it was the death of soul, or of body, or of the +whole man, or that which is called second death,--we must answer, It is +all. For the first consists of two; the second is the complete death, +which consists of all. For, as the whole earth consists of many lands, +and the Church universal of many churches, so death universal consists +of all deaths. The first consists of two, one of the body, and another +of the soul. So that the first death is a death of the whole man, since +the soul without God and without the body suffers punishment for a +time; but the second is when the soul, without God but with the body, +suffers punishment everlasting. When, therefore, God said to that first +man whom he had placed in Paradise, referring to the forbidden fruit, +"In the day that thou eatest thereof thou shalt surely die,"[588] that +threatening included not only the first part of the first death, by +which the soul is deprived of God; nor only the subsequent part of the +first death, by which the body is deprived of the soul; nor only the +whole first death itself, by which the soul is punished in separation +from God and from the body;--but it includes whatever of death there +is, even to that final death which is called second, and to which none +is subsequent. + + + 13. _What was the first punishment of the transgression of our + first parents?_ + +For, as soon as our first parents had transgressed the commandment, +divine grace forsook them, and they were confounded at their own +wickedness; and therefore they took fig-leaves (which were possibly +the first that came to hand in their troubled state of mind), and +covered their shame; for though their members remained the same, +they had shame now where they had none before. They experienced a +new motion of their flesh, which had become disobedient to them, in +strict retribution of their own disobedience to God. For the soul, +revelling in its own liberty, and scorning to serve God, was itself +deprived of the command it had formerly maintained over the body. And +because it had wilfully deserted its superior Lord, it no longer held +its own inferior servant; neither could it hold the flesh subject, as +it would always have been able to do had it remained itself subject +to God. Then began the flesh to lust against the Spirit,[589] in +which strife we are born, deriving from the first transgression +a seed of death, and bearing in our members, and in our vitiated +nature, the contest or even victory of the flesh. + + + 14. _In what state man was made by God, and into what estate he + fell by the choice of his own will._ + +For God, the author of natures, not of vices, created man upright; +but man, being of his own will corrupted, and justly condemned, begot +corrupted and condemned children. For we all were in that one man, +since we all were that one man who fell into sin by the woman who was +made from him before the sin. For not yet was the particular form +created and distributed to us, in which we as individuals were to +live, but already the seminal nature was there from which we were +to be propagated; and this being vitiated by sin, and bound by the +chain of death, and justly condemned, man could not be born of man +in any other state. And thus, from the bad use of free will, there +originated the whole train of evil, which, with its concatenation of +miseries, convoys the human race from its depraved origin, as from a +corrupt root, on to the destruction of the second death, which has no +end, those only being excepted who are freed by the grace of God. + + + 15. _That Adam in his sin forsook God ere God forsook him, and + that his falling away from God was the first death of the soul._ + +It may perhaps be supposed that because God said, "Ye shall die the +death,"[590] and not "deaths," we should understand only that death +which occurs when the soul is deserted by God, who is its life; for +it was not deserted by God, and so deserted Him, but deserted Him, +and so was deserted by Him. For its own will was the originator of +its evil, as God was the originator of its motions towards good, +both in making it when it was not, and in re-making it when it had +fallen and perished. But though we suppose that God meant only this. +death, and that the words, "In the day ye eat of it ye shall die the +death," should be understood as meaning, "In the day ye desert me in +disobedience, I will desert you in justice," yet assuredly in this +death the other deaths also were threatened, which were its inevitable +consequence. For in the first stirring of the disobedient motion which +was felt in the flesh of the disobedient soul, and which caused our +first parents to cover their shame, one death indeed is experienced, +that, namely, which occurs when God forsakes the soul. (This was +intimated by the words He uttered, when the man, stupefied by fear, +had hid himself, "Adam, where art thou?"[591]--words which He used not +in ignorance of inquiry, but warning him to consider where he was, +since God was not with him.) But when the soul itself forsook the body, +corrupted and decayed with age, the other death was experienced of +which God had spoken in pronouncing man's sentence, "Earth thou art, +and unto earth shalt thou return."[592] And of these two deaths that +first death of the whole man is composed. And this first death is +finally followed by the second, unless man be freed by grace. For the +body would not return to the earth from which it was made, save only +by the death proper to itself, which occurs when it is forsaken of the +soul, its life. And therefore it is agreed among all Christians who +truthfully hold the catholic faith, that we are subject to the death of +the body, not by the law of nature, by which God ordained no death for +man, but by His righteous infliction on account of sin; for God, taking +vengeance on sin, said to the man, in whom we all then were, "Dust thou +art, and unto dust shalt thou return." + + + 16. _Concerning the philosophers who think that the separation of + soul and body is not penal, though Plato represents the supreme + Deity as promising to the inferior gods that they shall never + be dismissed from their bodies._ + +But the philosophers against whom we are defending the city of God, +that is, His Church, seem to themselves to have good cause to deride +us, because we say that the separation of the soul from the body +is to be held as part of man's punishment. For they suppose that +the blessedness of the soul then only is complete, when it is quite +denuded of the body, and returns to God a pure and simple, and, as it +were, naked soul. On this point, if I should find nothing in their +own literature to refute this opinion, I should be forced laboriously +to demonstrate that it is not the body, but the corruptibility of +the body, which is a burden to the soul. Hence that sentence of +Scripture we quoted in a foregoing book, "For the corruptible body +presseth down the soul."[593] The word corruptible is added to show +that the soul is burdened, not by any body whatsoever, but by the +body such as it has become in consequence of sin. And even though +the word had not been added, we could understand nothing else. +But when Plato most expressly declares that the gods who are made +by the Supreme have immortal bodies, and when he introduces their +Maker himself promising them as a great boon that they should abide +in their bodies eternally, and never by any death be loosed from +them, why do these adversaries of ours, for the sake of troubling +the Christian faith, feign to be ignorant of what they quite well +know, and even prefer to contradict themselves rather than lose +an opportunity of contradicting us? Here are Plato's words, as +Cicero has translated them,[594] in which he introduces the Supreme +addressing the gods He had made, and saying, "Ye who are sprung from +a divine stock, consider of what works I am the parent and author. +These (your bodies) are indestructible so long as I will it; although +all that is composed can be destroyed. But it is wicked to dissolve +what reason has compacted. But, seeing that ye have been born, ye +cannot indeed be immortal and indestructible; yet ye shall by no +means be destroyed, nor shall any fates consign you to death, and +prove superior to my will, which is a stronger assurance of your +perpetuity than those bodies to which ye were joined when ye were +born." Plato, you see, says that the gods are both mortal by the +connection of the body and soul, and yet are rendered immortal by the +will and decree of their Maker. If, therefore, it is a punishment to +the soul to be connected with any body whatever, why does God address +them as if they were afraid of death, that is, of the separation +of soul and body? Why does He seek to reassure them by promising +them immortality, not in virtue of their nature, which is composite +and not simple, but by virtue of His invincible will, whereby He +can effect that neither things born die, nor things compounded be +dissolved, but preserved eternally? + +Whether this opinion of Plato's about the stars is true or not, is +another question. For we cannot at once grant to him that these +luminous bodies or globes, which by day and night shine on the earth +with the light of their bodily substance, have also intellectual and +blessed souls which animate each its own body, as he confidently +affirms of the universe itself, as if it were one huge animal, in +which all other animals were contained.[595] But this, as I said, +is another question, which we have not undertaken to discuss at +present. This much only I deemed right to bring forward, in opposition +to those who so pride themselves on being, or on being called +Platonists, that they blush to be Christians, and who cannot brook +to be called by a name which the common people also bear, lest they +vulgarize the philosophers' coterie, which is proud in proportion to +its exclusiveness. These men, seeking a weak point in the Christian +doctrine, select for attack the eternity of the body, as if it were +a contradiction to contend for the blessedness of the soul, and to +wish it to be always resident in the body, bound, as it were, in a +lamentable chain; and this although Plato, their own founder and +master, affirms that it was granted by the Supreme as a boon to the +gods He had made, that they should not die, that is, should not be +separated from the bodies with which He had connected them. + + + 17. _Against those who affirm that earthly bodies cannot be made + incorruptible and eternal._ + +These same philosophers further contend that terrestrial bodies +cannot be eternal, though they make no doubt that the whole earth, +which is itself the central member of their god,--not, indeed, of the +greatest, but yet of a great god, that is, of this whole world,--is +eternal. Since, then, the Supreme made for them another god, that +is, this world, superior to the other gods beneath Him; and since +they suppose that this god is an animal, having, as they affirm, +a rational or intellectual soul enclosed in the huge mass of its +body, and having, as the fitly situated and adjusted members of its +body, the four elements, whose union they wish to be indissoluble +and eternal, lest perchance this great god of theirs might some day +perish; what reason is there that the earth, which is the central +member in the body of a greater creature, should be eternal, and the +bodies of other terrestrial creatures should not possibly be eternal +if God should so will it? But earth, say they, must return to earth, +out of which the terrestrial bodies of the animals have been taken. +For this, they say, is the reason of the necessity of their death and +dissolution, and this the manner of their restoration to the solid +and eternal earth whence they came. But if any one says the same +thing of fire, holding that the bodies which are derived from it to +make celestial beings must be restored to the universal fire, does +not the immortality which Plato represents these gods as receiving +from the Supreme evanesce in the heat of this dispute? Or does this +not happen with those celestials because God, whose will, as Plato +says, overpowers all powers, has willed it should not be so? What, +then, hinders God from ordaining the same of terrestrial bodies? And +since, indeed, Plato acknowledges that God can prevent things that +are born from dying, and things that are joined from being sundered, +and things that are composed from being dissolved, and can ordain +that the souls once allotted to their bodies should never abandon +them, but enjoy along with them immortality and everlasting bliss, +why may He not also effect that terrestrial bodies die not? Is +God powerless to do everything that is special to the Christian's +creed, but powerful to effect everything the Platonists desire? The +philosophers, forsooth, have been admitted to a knowledge of the +divine purposes and power which has been denied to the prophets! The +truth is, that the Spirit of God taught His prophets so much of His +will as He thought fit to reveal, but the philosophers, in their +efforts to discover it, were deceived by human conjecture. + +But they should not have been so led astray, I will not say by their +ignorance, but by their obstinacy, as to contradict themselves so +frequently; for they maintain, with all their vaunted might, that +in order to the happiness of the soul, it must abandon not only its +earthly body, but every kind of body. And yet they hold that the +gods, whose souls are most blessed, are bound to everlasting bodies, +the celestials to fiery bodies, and the soul of Jove himself (or this +world, as they would have us believe) to all the physical elements +which compose this entire mass reaching from earth to heaven. For +this soul Plato believes to be extended and diffused by musical +numbers,[596] from the middle of the inside of the earth, which +geometricians call the centre, outwards through all its parts to the +utmost heights and extremities of the heavens; so that this world is +a very great and blessed immortal animal, whose soul has both the +perfect blessedness of wisdom, and never leaves its own body, and +whose body has life everlasting from the soul, and by no means clogs +or hinders it, though itself be not a simple body, but compacted +of so many and so huge materials. Since, therefore, they allow so +much to their own conjectures, why do they refuse to believe that by +the divine will and power immortality can be conferred on earthly +bodies, in which the souls would be neither oppressed with the burden +of them, nor separated from them by any death, but live eternally +and blessedly? Do they not assert that their own gods so live in +bodies of fire, and that Jove himself, their king, so lives in the +physical elements? If, in order to its blessedness, the soul must +quit every kind of body, let their gods flit from the starry spheres, +and Jupiter from earth to sky; or, if they cannot do so, let them be +pronounced miserable. But neither alternative will these men adopt. +For, on the one hand, they dare not ascribe to their own gods a +departure from the body, lest they should seem to worship mortals; on +the other hand, they dare not deny their happiness, lest they should +acknowledge wretches as gods. Therefore, to obtain blessedness, +we need not quit every kind of body, but only the corruptible, +cumbersome, painful, dying,--not such bodies as the goodness of God +contrived for the first man, but such only as man's sin entailed. + + + 18. _Of earthly bodies, which the philosophers affirm cannot be in + heavenly places, because whatever is of earth is by its natural + weight attracted to earth._ + +But it is necessary, they say, that the natural weight of earthly +bodies either keep them on earth or draw them to it; and therefore +they cannot be in heaven. Our first parents were indeed on earth, in +a well-wooded and fruitful spot, which has been named Paradise. But +let our adversaries a little more carefully consider this subject +of earthly weight, because it has important bearings, both on the +ascension of the body of Christ, and also on the resurrection body +of the saints. If human skill can by some contrivance fabricate +vessels that float, out of metals which sink as soon as they are +placed on the water, how much more credible is it that God, by +some occult mode of operation, should even more certainly effect +that these earthy masses be emancipated from the downward pressure +of their weight? This cannot be impossible to that God by whose +almighty will, according to Plato, neither things born perish, nor +things composed dissolve, especially since it is much more wonderful +that spiritual and bodily essences be conjoined than that bodies +be adjusted to other material substances. Can we not also easily +believe that souls, being made perfectly blessed, should be endowed +with the power of moving their earthy but incorruptible bodies as +they please, with almost spontaneous movement, and of placing them +where they please with the readiest action? If the angels transport +whatever terrestrial creatures they please from any place they +please, and convey them whither they please, is it to be believed +that they cannot do so without toil and the feeling of burden? +Why, then, may we not believe that the spirits of the saints, made +perfect and blessed by divine grace, can carry their own bodies +where they please, and set them where they will? For, though we have +been accustomed to notice, in bearing weights, that the larger the +quantity the greater the weight of earthy bodies is, and that the +greater the weight the more burdensome it is, yet the soul carries +the members of its own flesh with less difficulty when they are +massive with health, than in sickness when they are wasted. And +though the hale and strong man feels heavier to other men carrying +him than the lank and sickly, yet the man himself moves and carries +his own body with less feeling of burden when he has the greater +bulk of vigorous health, than when his frame is reduced to a minimum +by hunger or disease. Of such consequence, in estimating the weight +of earthly bodies, even while yet corruptible and mortal, is the +consideration not of dead weight, but of the healthy equilibrium of +the parts. And what words can tell the difference between what we now +call health and future immortality? Let not the philosophers, then, +think to upset our faith with arguments from the weight of bodies; +for I don't care to inquire why they cannot believe an earthly body +can be in heaven, while the whole earth is suspended on nothing. +For perhaps the world keeps its central place by the same law that +attracts to its centre all heavy bodies. But this I say, if the +lesser gods, to whom Plato committed the creation of man and the +other terrestrial creatures, were able, as he affirms, to withdraw +from the fire its quality of burning, while they left it that of +lighting, so that it should shine through the eyes; and if to the +supreme God Plato also concedes the power of preserving from death +things that have been born, and of preserving from dissolution things +that are composed of parts so different as body and spirit;--are we +to hesitate to concede to this same God the power to operate on the +flesh of him whom He has endowed with immortality, so as to withdraw +its corruption but leave its nature, remove its burdensome weight but +retain its seemly form and members? But concerning our belief in the +resurrection of the dead, and concerning their immortal bodies, we +shall speak more at large, God willing, in the end of this work. + + + 19. _Against the opinion of those who do not believe that the + primitive men would have been immortal if they had not sinned._ + +At present let us go on, as we have begun, to give some explanation +regarding the bodies of our first parents. I say then, that, except +as the just consequence of sin, they would not have been subjected +even to this death, which is good to the good,--this death, which +is not exclusively known and believed in by a few, but is known to +all, by which soul and body are separated, and by which the body of +an animal which was but now visibly living is now visibly dead. For +though there can be no manner of doubt that the souls of the just +and holy dead live in peaceful rest, yet so much better would it +be for them to be alive in healthy, well-conditioned bodies, that +even those who hold the tenet that it is most blessed to be quit of +every kind of body, condemn this opinion in spite of themselves. +For no one will dare to set wise men, whether yet to die or already +dead,--in other words, whether already quit of the body, or shortly +to be so,--above the immortal gods, to whom the Supreme, in Plato, +promises as a munificent gift life indissoluble, or in eternal union +with their bodies. But this same Plato thinks that nothing better can +happen to men than that they pass through life piously and justly, +and, being separated from their bodies, be received into the bosom +of the gods, who never abandon theirs; "that, oblivious of the past, +they may revisit the upper air, and conceive the longing to return +again to the body."[597] Virgil is applauded for borrowing this from +the Platonic system. Assuredly Plato thinks that the souls of mortals +cannot always be in their bodies, but must necessarily be dismissed +by death; and, on the other hand, he thinks that without bodies they +cannot endure for ever, but with ceaseless alternation pass from +life to death, and from death to life. This difference, however, +he sets between wise men and the rest, that they are carried after +death to the stars, that each man may repose for a while in a star +suitable for him, and may thence return to the labours and miseries +of mortals when he has become oblivious of his former misery, and +possessed with the desire of being embodied. Those, again, who have +lived foolishly transmigrate into bodies fit for them, whether human +or bestial. Thus he has appointed even the good and wise souls to a +very hard lot indeed, since they do not receive such bodies as they +might always and even immortally inhabit, but such only as they can +neither permanently retain nor enjoy eternal purity without. Of this +notion of Plato's, we have in a former book already said[598] that +Porphyry was ashamed in the light of these Christian times, so that +he not only emancipated human souls from a destiny in the bodies of +beasts, but also contended for the liberation of the souls of the +wise from all bodily ties, so that, escaping from all flesh, they +might, as bare and blessed souls, dwell with the Father time without +end. And that he might not seem to be outbid by Christ's promise of +life everlasting to His saints, he also established purified souls in +endless felicity, without return to their former woes; but, that he +might contradict Christ, he denies the resurrection of incorruptible +bodies, and maintains that these souls will live eternally, not +only without earthly bodies, but without any bodies at all. And +yet, whatever he meant by this teaching, he at least did not teach +that these souls should offer no religious observance to the gods +who dwelt in bodies. And why did he not, unless because he did not +believe that the souls, even though separate from the body, were +superior to those gods? Wherefore, if these philosophers will not +dare (as I think they will not) to set human souls above the gods who +are most blessed, and yet are tied eternally to their bodies, why +do they find that absurd which the Christian faith preaches,[599] +namely, that our first parents were so created that, if they had not +sinned, they would not have been dismissed from their bodies by any +death, but would have been endowed with immortality as the reward of +their obedience, and would have lived eternally with their bodies; +and further, that the saints will in the resurrection inhabit those +very bodies in which they have here toiled, but in such sort that +neither shall any corruption or unwieldiness be suffered to attach to +their flesh, nor any grief or trouble to cloud their felicity? + + + 20. _That the flesh now resting in peace shall be raised to a + perfection not enjoyed by the flesh of our first parents._ + +Thus the souls of departed saints are not affected by the death which +dismisses them from their bodies, because their flesh rests in hope, +no matter what indignities it receives after sensation is gone. For +they do not desire that their bodies be forgotten, as Plato thinks +fit, but rather, because they remember what has been promised by Him +who deceives no man, and who gave them security for the safe keeping +even of the hairs of their head, they with a longing patience wait in +hope of the resurrection of their bodies, in which they have suffered +many hardships, and are now to suffer never again. For if they did not +"hate their own flesh," when it, with its native infirmity, opposed +their will, and had to be constrained by the spiritual law, how +much more shall they love it, when it shall even itself have become +spiritual! For as, when the spirit serves the flesh, it is fitly called +carnal, so, when the flesh serves the spirit, it will justly be called +spiritual. Not that it is converted into spirit, as some fancy from the +words, "It is sown in corruption, it is raised in incorruption,"[600] +but because it is subject to the spirit with a perfect and marvellous +readiness of obedience, and responds in all things to the will that +has entered on immortality,--all reluctance, all corruption, and all +slowness being removed. For the body will not only be better than it +was here in its best estate of health, but it will surpass the bodies +of our first parents ere they sinned. For, though they were not to die +unless they should sin, yet they used food as men do now, their bodies +not being as yet spiritual, but animal only. And though they decayed +not with years, nor drew nearer to death,--a condition secured to them +in God's marvellous grace by the tree of life, which grew along with +the forbidden tree in the midst of Paradise,--yet they took other +nourishment, though not of that one tree, which was interdicted not +because it was itself bad, but for the sake of commending a pure and +simple obedience, which is the great virtue of the rational creature +set under the Creator as his Lord. For, though no evil thing was +touched, yet if a thing forbidden was touched, the very disobedience +was sin. They were, then, nourished by other fruit, which they took +that their animal bodies might not suffer the discomfort of hunger or +thirst; but they tasted the tree of life, that death might not steal +upon them from any quarter, and that they might not, spent with age, +decay. Other fruits were, so to speak, their nourishment, but this +their sacrament. So that the tree of life would seem to have been in +the terrestrial Paradise what the wisdom of God is in the spiritual, of +which it is written, "She is a tree of life to them that lay hold upon +her."[601] + + + 21. _Of Paradise, that it can be understood in a spiritual sense + without sacrificing the historic truth of the narrative + regarding the real place._ + +On this account some allegorize all that concerns Paradise itself, +where the first men, the parents of the human race, are, according to +the truth of holy Scripture, recorded to have been; and they understand +all its trees and fruit-bearing plants as virtues and habits of life, +as if they had no existence in the external world, but were only so +spoken of or related for the sake of spiritual meanings. As if there +could not be a real terrestrial Paradise! As if there never existed +these two women, Sarah and Hagar, nor the two sons who were born to +Abraham, the one of the bond woman, the other of the free, because the +apostle says that in them the two covenants were prefigured; or as if +water never flowed from the rock when Moses struck it, because therein +Christ can be seen in a figure, as the same apostle says, "Now that +rock was Christ!"[602] No one, then, denies that Paradise may signify +the life of the blessed; its four rivers, the four virtues, prudence, +fortitude, temperance, and justice; its trees, all useful knowledge; +its fruits, the customs of the godly; its tree of life, wisdom herself, +the mother of all good; and the tree of the knowledge of good and +evil, the experience of a broken commandment. The punishment which God +appointed was in itself a just, and therefore a good thing; but man's +experience of it is not good. + +These things can also and more profitably be understood of the +Church, so that they become prophetic foreshadowings of things +to come. Thus Paradise is the Church, as it is called in the +Canticles;[603] the four rivers of Paradise are the four gospels; the +fruit-trees the saints, and the fruit their works; the tree of life +is the holy of holies, Christ; the tree of the knowledge of good and +evil, the will's free choice. For if man despise the will of God, he +can only destroy himself; and so he learns the difference between +consecrating himself to the common good and revelling in his own. For +he who loves himself is abandoned to himself, in order that, being +overwhelmed with fears and sorrows, he may cry, if there be yet soul +in him to feel his ills, in the words of the psalm, "My soul is cast +down within me,"[604] and when chastened, may say, "Because of his +strength I will wait upon Thee."[605] These and similar allegorical +interpretations may be suitably put upon Paradise without giving +offence to any one, while yet we believe the strict truth of the +history, confirmed by its circumstantial narrative of facts.[606] + + + 22. _That the bodies of the saints shall after the resurrection be + spiritual, and yet flesh shall not be changed into spirit._ + +The bodies of the righteous, then, such as they shall be in the +resurrection, shall need neither any fruit to preserve them from +dying of disease or the wasting decay of old age, nor any other +physical nourishment to allay the cravings of hunger or of thirst; +for they shall be invested with so sure and every way inviolable an +immortality, that they shall not eat save when they choose, nor be +under the necessity of eating, while they enjoy the power of doing +so. For so also was it with the angels who presented themselves to +the eye and touch of men, not because they could do no otherwise, +but because they were able and desirous to suit themselves to men +by a kind of manhood ministry. For neither are we to suppose, when +men receive them as guests, that the angels eat only in appearance, +though to any who did not know them to be angels they might seem +to eat from the same necessity as ourselves. So these words spoken +in the Book of Tobit, "You saw me eat, but you saw it but in +vision;"[607] that is, you thought I took food as you do for the +sake of refreshing my body. But if in the case of the angels another +opinion seems more capable of defence, certainly our faith leaves +no room to doubt regarding our Lord Himself, that even after His +resurrection, and when now in spiritual but yet real flesh, He ate +and drank with His disciples; for not the power, but the need, of +eating and drinking is taken from these bodies. And so they will be +spiritual, not because they shall cease to be bodies, but because +they shall subsist by the quickening spirit. + + + 23. _What we are to understand by the animal and spiritual body; or + of those who die in Adam, and of those who are made alive in + Christ._ + +For as those bodies of ours, that have a living soul, though not as +yet a quickening spirit, are called soul-informed bodies, and yet are +not souls but bodies, so also those bodies are called spiritual,--yet +God forbid we should therefore suppose them to be spirits and not +bodies,--which, being quickened by the Spirit, have the substance, +but not the unwieldiness and corruption of flesh. Man will then be +not earthly but heavenly,--not because the body will not be that very +body which was made of earth, but because by its heavenly endowment it +will be a fit inhabitant of heaven, and this not by losing its nature, +but by changing its quality. The first man, of the earth earthy, was +made a living soul, not a quickening spirit,--which rank was reserved +for him as the reward of obedience. And therefore his body, which +required meat and drink to satisfy hunger and thirst, and which had +no absolute and indestructible immortality, but by means of the tree +of life warded off the necessity of dying, and was thus maintained in +the flower of youth,--this body, I say, was doubtless not spiritual, +but animal; and yet it would not have died but that it provoked God's +threatened vengeance by offending. And though sustenance was not denied +him even outside Paradise, yet, being forbidden the tree of life, he +was delivered over to the wasting of time, at least in respect of that +life which, had he not sinned, he might have retained perpetually in +Paradise, though only in an animal body, till such time as it became +spiritual in acknowledgment of his obedience. + +Wherefore, although we understand that this manifest death, which +consists in the separation of soul and body, was also signified by +God when He said, "In the day thou eatest thereof thou shalt surely +die,"[608] it ought not on that account to seem absurd that they were +not dismissed from the body on that very day on which they took the +forbidden and death-bringing fruit. For certainly on that very day +their nature was altered for the worse and vitiated, and by their +most just banishment from the tree of life they were involved in the +necessity even of bodily death, in which necessity we are born. And +therefore the apostle does not say, "The body indeed is doomed to die +on account of sin," but he says, "The body indeed is dead because of +sin." Then he adds, "But if the Spirit of Him that raised up Jesus +from the dead dwell in you, He that raised up Christ from the dead +shall also quicken your mortal bodies by His Spirit that dwelleth in +you."[609] Then accordingly shall the body become a quickening spirit +which is now a living soul; and yet the apostle calls it "dead," +because already it lies under the necessity of dying. But in Paradise +it was so made a living soul, though not a quickening spirit, that it +could not properly be called dead, for, save through the commission +of sin, it could not come under the power of death. Now, since God by +the words, "Adam, where art thou?" pointed to the death of the soul, +which results when He abandons it, and since in the words, "Earth +thou art, and unto earth shalt thou return,"[610] He signified the +death of the body, which results when the soul departs from it, we +are led, therefore, to believe that He said nothing of the second +death, wishing it to be kept hidden, and reserving it for the New +Testament dispensation, in which it is most plainly revealed. And +this He did in order that, first of all, it might be evident that +this first death, which is common to all, was the result of that sin +which in one man became common to all.[611] But the second death is +not common to all, those being excepted who were "called according to +His purpose. For whom He did foreknow, He also did predestinate to be +conformed to the image of His Son, that He might be the first-born +among many brethren."[612] Those the grace of God has, by a Mediator, +delivered from the second death. + +Thus the apostle states that the first man was made in an animal body. +For, wishing to distinguish the animal body which now is from the +spiritual, which is to be in the resurrection, he says, "It is sown in +corruption, it is raised in incorruption: it is sown in dishonour, it +is raised in glory: it is sown in weakness, it is raised in power: it +is sown a natural body, it is raised a spiritual body." Then, to prove +this, he goes on, "There is a natural body, and there is a spiritual +body." And to show what the animated body is, he says, "Thus it was +written, The first man Adam was made a living soul, the last Adam +was made a quickening spirit."[613] He wished thus to show what the +animated body is, though Scripture did not say of the first man Adam, +when his soul was created by the breath of God, "Man was made in an +animated body," but "Man was made a living soul."[614] By these words, +therefore, "The first man was made a living soul," the apostle wishes +man's animated body to be understood. But how he wishes the spiritual +body to be understood he shows when he adds, "But the last Adam was +made a quickening spirit," plainly referring to Christ, who has so +risen from the dead that He cannot die any more. He then goes on to +say, "But that was not first which is spiritual, but that which is +natural; and afterward that which is spiritual." And here he much more +clearly asserts that he referred to the animal body when he said that +the first man was made a living soul, and to the spiritual when he +said that the last man was made a quickening spirit. The animal body +is the first, being such as the first Adam had, and which would not +have died had he not sinned, being such also as we now have, its nature +being changed and vitiated by sin to the extent of bringing us under +the necessity of death, and being such as even Christ condescended +first of all to assume, not indeed of necessity, but of choice; +but afterwards comes the spiritual body, which already is worn by +anticipation by Christ as our head, and will be worn by His members in +the resurrection of the dead. + +Then the apostle subjoins a notable difference between these two men, +saying, "The first man is of the earth, earthy; the second man is +the Lord from heaven. As is the earthy, such are they also that are +earthy; and as is the heavenly, such are they also that are heavenly. +And as we have borne the image of the earthy, we shall also bear the +image of the heavenly."[615] So he elsewhere says, "As many of you +as have been baptized into Christ have put on Christ;"[616] but in +very deed this shall be accomplished when that which is animal in us +by our birth shall have become spiritual in our resurrection. For, +to use his words again, "We are saved by hope."[617] Now we bear the +image of the earthly man by the propagation of sin and death, which +pass on us by ordinary generation; but we bear the image of the +heavenly by the grace of pardon and life eternal, which regeneration +confers upon us through the Mediator of God and men, the Man Christ +Jesus. And He is the heavenly Man of Paul's passage, because He came +from heaven to be clothed with a body of earthly mortality, that +He might clothe it with heavenly immortality. And he calls others +heavenly, because by grace they become His members, that, together +with them, He may become one Christ, as head and body. In the same +epistle he puts this yet more clearly: "Since by man came death, +by Man came also the resurrection of the dead. For as in Adam all +die, even so in Christ shall all be made alive,"[618]--that is to +say, in a spiritual body which shall be made a quickening spirit. +Not that all who die in Adam shall be members of Christ,--for the +great majority shall be punished in eternal death,--but he uses the +word "all" in both clauses, because, as no one dies in an animal +body except in Adam, so no one is quickened a spiritual body save +in Christ. We are not, then, by any means to suppose that we shall +in the resurrection have such a body as the first man had before he +sinned, nor that the words, "As is the earthy, such are they also +that are earthy," are to be understood of that which was brought +about by sin; for we are not to think that Adam had a spiritual body +before he fell, and that, in punishment of his sin, it was changed +into an animal body. If this be thought, small heed has been given +to the words of so great a teacher, who says, "There is a natural +body, there is also a spiritual body; as it is written, The first man +Adam was made a living soul." Was it after sin he was made so? or was +not this the primal condition of man from which the blessed apostle +selects his testimony to show what the animal body is? + + + 24. _How we must understand that breathing of God by which "the + first man was made a living soul," and that also by which + the Lord conveyed His Spirit to His disciples when He said, + "Receive ye the Holy Ghost."_ + +Some have hastily supposed from the words, "God breathed into Adam's +nostrils the breath of life, and man became a living soul,"[619] +that a soul was not then first given to man, but that the soul +already given was quickened by the Holy Ghost. They are encouraged +in this supposition by the fact that the Lord Jesus after His +resurrection breathed on His disciples, and said, "Receive ye the +Holy Spirit."[620] From this they suppose that the same thing was +effected in either case, as if the evangelist had gone on to say, +And they became living souls. But if he had made this addition, we +should only understand that the Spirit is in some way the life of +souls, and that without Him reasonable souls must be accounted dead, +though their bodies seem to live before our eyes. But that this +was not what happened when man was created, the very words of the +narrative sufficiently show: "And God made man dust of the earth;" +which some have thought to render more clearly by the words, "And +God formed man of the clay of the earth." For it had before been +said that "there went up a mist from the earth, and watered the whole +face of the ground,"[621] in order that the reference to clay, formed +of this moisture and dust, might be understood. For on this verse +there immediately follows the announcement, "And God created man dust +of the earth;" so those Greek manuscripts have it from which this +passage has been translated into Latin. But whether one prefers to +read "_created_" or "_formed_," where the Greek reads ἔπλασεν, is +of little importance; yet "_formed_" is the better rendering. But +those who preferred "created" thought they thus avoided the ambiguity +arising from the fact, that in the Latin language the usage obtains +that those are said to form a thing who frame some feigned and +fictitious thing. This man, then, who was created of the dust of the +earth, or of the moistened dust or clay,--this "dust of the earth" +(that I may use the express words of Scripture) was made, as the +apostle teaches, an animated body when he received a soul. This man, +he says, "was made a living soul;" that is, this fashioned dust was +made a living soul. + +They say, Already he had a soul, else he would not be called a man; +for man is not a body alone, nor a soul alone, but a being composed of +both. This, indeed, is true, that the soul is not the whole man, but +the better part of man; the body not the whole, but the inferior part +of man; and that then, when both are joined, they receive the name of +man,--which, however, they do not severally lose even when we speak of +them singly. For who is prohibited from saying, in colloquial usage, +"That man is dead, and is now at rest or in torment," though this can +be spoken only of the soul; or "He is buried in such and such a place," +though this refers only to the body? Will they say that Scripture +follows no such usage? On the contrary, it so thoroughly adopts it, +that even while a man is alive, and body and soul are united, it +calls each of them singly by the name "_man_," speaking of the soul +as the "inward man," and of the body as the "outward man,"[622] as if +there were two men, though both together are indeed but one. But we +must understand in what sense man is said to be in the image of God, +and is yet dust, and to return to the dust. The former is spoken +of the rational soul, which God by His breathing, or, to speak more +appropriately, by His inspiration, conveyed to man, that is, to his +body; but the latter refers to his body, which God formed of the dust, +and to which a soul was given, that it might become a living body, that +is, that man might become a living soul. + +Wherefore, when our Lord breathed on His disciples, and said, "Receive +ye the Holy Ghost," He certainly wished it to be understood that +the Holy Ghost was not only the Spirit of the Father, but of the +only-begotten Son Himself. For the same Spirit is, indeed, the Spirit +of the Father and of the Son, making with them the trinity of Father, +Son, and Spirit, not a creature, but the Creator. For neither was that +material breath which proceeded from the mouth of His flesh the very +substance and nature of the Holy Spirit, but rather the intimation, +as I said, that the Holy Spirit was common to the Father and to the +Son; for they have not each a separate Spirit, but both one and the +same. Now this Spirit is always spoken of in sacred Scripture by the +Greek word πνεῦμα, as the Lord, too, named Him in the place cited when +He gave Him to His disciples, and intimated the gift by the breathing +of His lips; and there does not occur to me any place in the whole +Scriptures where He is otherwise named. But in this passage where it +is said, "And the Lord formed man dust of the earth, and breathed, or +inspired, into his face the breath of life;" the Greek has not πνεῦμα, +the usual word for the Holy Spirit, but πνοή, a word more frequently +used of the creature than of the Creator; and for this reason some +Latin interpreters have preferred to render it by "breath" rather +than "spirit." For this word occurs also in the Greek in Isa. lvii. +16, where God says, "I have made all breath," meaning, doubtless, all +souls. Accordingly, this word πνοή is sometimes rendered "breath," +sometimes "spirit," sometimes "inspiration," sometimes "aspiration," +sometimes "soul," even when it is used of God. Πνεῦμα, on the other +hand, is uniformly rendered "spirit," whether of man, of whom the +apostle says, "For what man knoweth the things of a man, save the +spirit of man which is in him?"[623] or of beast, as in the book of +Solomon, "Who knoweth the spirit of man that goeth upward, and the +spirit of the beast that goeth downward to the earth?"[624] or of +that physical spirit which is called wind, for so the Psalmist calls +it: "Fire and hail; snow and vapours; stormy wind;"[625] or of the +uncreated Creator Spirit, of whom the Lord said in the gospel, "Receive +ye the Holy Ghost," indicating the gift by the breathing of His mouth; +and when He says, "Go ye and baptize all nations in the name of the +Father, of the Son, and of the Holy Ghost,"[626] words which very +expressly and excellently commend the Trinity; and where it is said, +"God is a Spirit;"[627] and in very many other places of the sacred +writings. In all these quotations from Scripture we do not find in the +Greek the word πνοή used, but πνεῦμα, and in the Latin, not _flatus_, +but _spiritus_. Wherefore, referring again to that place where it is +written, "He inspired," or, to speak more properly, "breathed into his +face the breath of life," even though the Greek had not used πνοή (as +it has) but πνεῦμα, it would not on that account necessarily follow +that the Creator Spirit, who in the Trinity is distinctively called the +Holy Ghost, was meant, since, as has been said, it is plain that πνεῦμα +is used not only of the Creator, but also of the creature. + +But, say they, when the Scripture used the word "spirit,"[628] it would +not have added "of life" unless it meant us to understand the Holy +Spirit; nor, when it said, "Man became a soul," would it also have +inserted the word "living" unless that life of the soul were signified +which is imparted to it from above by the gift of God. For, seeing +that the soul by itself has a proper life of its own, what need, they +ask, was there of adding living, save only to show that the life which +is given it by the Holy Spirit was meant? What is this but to fight +strenuously for their own conjectures, while they carelessly neglect +the teaching of Scripture? Without troubling themselves much, they +might have found in a preceding page of this very book of Genesis the +words, "Let the earth bring forth the living soul,"[629] when all the +terrestrial animals were created. Then at a slight interval, but still +in the same book, was it impossible for them to notice this verse, +"All in whose nostrils was the breath of life, of all that was in the +dry land, died," by which it was signified that all the animals which +lived on the earth had perished in the deluge? If, then, we find that +Scripture is accustomed to speak both of the "living soul" and the +"spirit of life" even in reference to beasts; and if in this place, +where it is said, "All things which have the spirit of life," the word +πνοή, not πνεῦμα, is used; why may we not say, What need was there to +add "living," since the soul cannot exist without being alive? or, What +need to add "of life" after the word spirit? But we understand that +Scripture used these expressions in its ordinary style so long as it +speaks of animals, that is, animated bodies, in which the soul serves +as the residence of sensation; but when man is spoken of, we forget +the ordinary and established usage of Scripture, whereby it signifies +that man received a rational soul, which was not produced out of the +waters and the earth like the other living creatures, but was created +by the breath of God. Yet this creation was so ordered that the human +soul should live in an animal body, like those other animals of which +the Scripture said, "Let the earth produce every living soul," and +regarding which it again says that in them is the breath of life, where +the word πνοή and not πνεῦμα is used in the Greek, and where certainly +not the Holy Spirit, but their spirit, is signified under that name. + +But, again, they object that breath is understood to have been +emitted from the mouth of God; and if we believe that is the soul, +we must consequently acknowledge it to be of the same substance, and +equal to that wisdom, which says, "I come out of the mouth of the +Most High."[630] Wisdom, indeed, does not say it was breathed out of +the mouth of God, but proceeded out of it. But as we are able, when +we breathe, to make a breath, not of our own human nature, but of the +surrounding air, which we inhale and exhale as we draw our breath and +breathe again, so almighty God was able to make breath, not of His +own nature, nor of the creature beneath Him, but even of nothing; +and this breath, when He communicated it to man's body, He is most +appropriately said to have breathed or inspired,--the Immaterial +breathing it also immaterial, but the Immutable not also the +immutable; for it was created, He uncreated. Yet, that these persons +who are forward to quote Scripture, and yet know not the usages of +its language, may know that not only what is equal and consubstantial +with God is said to proceed out of His mouth, let them hear or read +what God says: "So then because thou art lukewarm, and neither cold +nor hot, I will spue thee out of my mouth."[631] + +There is no ground, then, for our objecting, when the apostle so +expressly distinguishes the animal body from the spiritual,--that is +to say, the body in which we now are from that in which we are to +be. He says, "It is sown a natural body, it is raised a spiritual +body. There is a natural body, and there is a spiritual body. And so +it is written, The first man Adam was made a living soul; the last +Adam was made a quickening spirit. Howbeit that was not first which +is spiritual, but that which is natural; and afterward that which is +spiritual. The first man is of the earth, earthy; the second man is +the Lord from heaven. As is the earthy, such are they also that are +earthy; and as is the heavenly, such are they also that are heavenly. +And as we have borne the image of the earthy, we shall also bear +the image of the heavenly."[632] Of all which words of his we have +previously spoken. The animal body, accordingly, in which the apostle +says that the first man Adam was made, was not so made that it could +not die at all, but so that it should not die unless he should have +sinned. That body, indeed, which shall be made spiritual and immortal +by the quickening Spirit shall not be able to die at all; as the soul +has been created immortal, and therefore, although by sin it may be +said to die, and does lose a certain life of its own, namely, the +Spirit of God, by whom it was enabled to live wisely and blessedly, +yet it does not cease living a kind of life, though a miserable, +because it is immortal by creation. So, too, the rebellious angels, +though by sinning they did in a sense die, because they forsook +God, the Fountain of life, which while they drank they were able +to live wisely and well, yet they could not so die as to utterly +cease living and feeling, for they are immortals by creation. And +so, after the final judgment, they shall be hurled into the second +death, and not even there be deprived of life or of sensation, but +shall suffer torment. But those men who have been embraced by God's +grace, and are become the fellow-citizens of the holy angels who have +continued in bliss, shall never more either sin or die, being endued +with spiritual bodies; yet, being clothed with immortality, such as +the angels enjoy, of which they cannot be divested even by sinning, +the nature of their flesh shall continue the same, but all carnal +corruption and unwieldiness shall be removed. + +There remains a question which must be discussed, and, by the help of +the Lord God of truth, solved: If the motion of concupiscence in the +unruly members of our first parents arose out of their sin, and only +when the divine grace deserted them; and if it was on that occasion +that their eyes were opened to see, or, more exactly, notice their +nakedness, and that they covered their shame because the shameless +motion of their members was not subject to their will,--how, then, +would they have begotten children had they remained sinless as they +were created? But as this book must be concluded, and so large a +question cannot be summarily disposed of, we may relegate it to the +following book, in which it will be more conveniently treated. + + MURRAY AND GIBB, EDINBURGH, + PRINTERS TO HER MAJESTY'S STATIONERY OFFICE. + +FOOTNOTES: + +[573] Matt. x. 28. + +[574] On this question compare the 24th and 25th epistles of Jerome, +_de obitu Leæ_, and _de obitu Blesillæ filiæ_. Coquæus. + +[575] Ps. xlix. 12. + +[576] On which see further in _de Peccat. Mer._ i. 67 et seq. + +[577] _De Baptismo Parvulorum_ is the second half of the title of the +book, _de Peccatorum Meritis et Remissione_. + +[578] 1 Cor. xv. 56. + +[579] Rom. vii. 12, 13. + +[580] Literally, unregenerate. + +[581] John iii. 5. + +[582] Matt. x. 32. + +[583] Matt. xvi. 25. + +[584] Ps. cxvi. 15. + +[585] Much of this paradoxical statement about death is taken from +Seneca. See, among other places, his epistle on the premeditation of +future dangers, the passage beginning, "Quotidie morimur, quotidie +enim demitur aliqua pars vitæ." + +[586] Ecclus. xi. 28. + +[587] Ps. vi. 5. + +[588] Gen. ii. 17. + +[589] Gal. v. 17. + +[590] Gen. ii. 17. + +[591] Gen. iii. 9. + +[592] Gen. iii. 19. + +[593] Wisdom ix. 15. + +[594] A translation of part of the _Timæus_, given in a little book +of Cicero's, _De Universo_. + +[595] Plato, in the _Timæus_, represents the Demiurgus as +constructing the _kosmos_ or universe to be a complete representation +of the idea of animal. He planted in its centre a soul, spreading +outwards so as to pervade the whole body of the _kosmos_; and then +he introduced into it those various species of animals which were +contained in the idea of animal. Among these animals stand first the +celestial, the gods embodied in the stars; and of these the oldest +is the earth, set in the centre of all, close packed round the great +axis which traverses the centre of the _kosmos_.--See the _Timæus_ +and Grote's _Plato_, iii. 250 et seq. + +[596] On these numbers see Grote's _Plato_, iii. 254. + +[597] Virgil, _Æneid_, vi. 750, 751. + +[598] Book x. 30. + +[599] A catena of passages, showing that this is the catholic +Christian faith, will be found in Bull's _State of Man before the +Fall_ (_Works_, vol. ii.). + +[600] 1 Cor. xv. 42. + +[601] Prov. iii. 18. + +[602] 1 Cor. x. 4. + +[603] Cant. iv. 13. + +[604] Ps. xlii. 6. + +[605] Ps. lix. 9. + +[606] Those who wish to pursue this subject will find a pretty +full collection of opinions in the learned commentary on Genesis +by the Jesuit Pererius. Philo was, of course, the leading culprit, +but Ambrose and other Church fathers went nearly as far. Augustine +condemns the Seleucians for this among other heresies, that they +denied a visible Paradise.--_De Hæres._ 59. + +[607] Tobit xii. 19. + +[608] Gen. ii. 17. + +[609] Rom. viii. 10, 11. + +[610] Gen. iii. 19. + +[611] "In uno commune factum est omnibus." + +[612] Rom. viii. 28, 29. + +[613] 1 Cor. xv. 42-45. + +[614] Gen. ii. 7. + +[615] 1 Cor. xv. 47-49. + +[616] Gal. iii. 27. + +[617] Rom. viii. 24. + +[618] 1 Cor. xv. 21, 22. + +[619] Gen. ii. 7. + +[620] John xx. 22. + +[621] Gen. ii. 6. + +[622] 2 Cor. iv. 16. + +[623] 1 Cor. ii. 11. + +[624] Eccles. iii. 21. + +[625] Ps. cxlviii. 8. + +[626] Matt. xxviii. 19. + +[627] John iv. 24. + +[628] "Breath," Eng. ver. + +[629] Gen. i. 24. + +[630] Ecclus. xxiv. 3. + +[631] Rev. iii. 16. + +[632] 1 Cor. xv. 44-49. + + + + + LIST OF WORKS + + PUBLISHED BY + + T. & T. CLARK, EDINBURGH. + + + SUBSCRIPTION BOOKS. + + =Foreign Theological Library.= + + _MESSRS. CLARK beg respectfully to intimate that from this time + they will allow a Selection of Twenty Volumes (or more at the + same ratio) from the various Series, with the exception of + the Volumes issued in 1868-69-70. No Duplicates allowed in a + Selection of Twelve or Twenty Volumes._ + + At the Subscription Price of £5, 5s. + + + ----------------------------------------------------+--------------- + | Selling Price. + | £ _s._ _d._ + Any 12 vols. of First Series (or more at same | + ratio), | 3 3 0 + | + =FIRST SERIES=, 29 vols. demy 8vo. _netto_ | 7 12 0 + | + Hengstenberg's Commentary on the Psalms. 3 vols. | + Shedd's History of Christian Doctrine. 2 vols. | + Gieseler's Compendium of Ecclesiastical History. | + 5 vols. | + Neander's General Church History. 9 vols. | + Olshausen on the Gospels and Acts. 4 vols. | + Olshausen on the Romans. | + Olshausen on the Corinthians. | + Olshausen on the Galatians, Ephesians, Colossians, | + and Thessalonians. | + Olshausen on Philippians, Titus, and Timothy. | + Olshausen and Ebrard on the Hebrews. | + Havernick's General Introduction to the Old | + Testament. | + | + =SECOND SERIES=, 20 vols. demy 8vo, cloth, | 5 5 0 + | + Stier on the Words of the Lord Jesus. 8 vols. | + Hengstenberg's Christology of the Old Testament. | + 4 vols. | + Ullmann's Reformers before the Reformation. 2 vols. | + Gerlach's Commentary on the Pentateuch. 1 vol. | + Müller on the Christian Doctrine of Sin. 2 vols. | + (_new translation_). | + Baumgarten's Apostolic History. 3 vols. | + | + =THIRD SERIES=, 20 vols. demy 8vo, cloth, | 5 5 0 + | + Kurtz's History of the Old Covenant. 3 vols. | + Stier on the Words of the Risen Saviour, etc. 1 vol.| + Tholuck on the Gospel of St. John. 1 vol. | + Hengstenberg on Ecclesiastes, etc. 1 vol. | + Tholuck on Christ's Sermon on the Mount. 1 vol. | + Ebrard on Epistles of John. 1 vol. | + Dorner on the Person of Christ. 5 vols. | + Lange on the Gospels of St. Matthew and St. Mark. | + 3 vols. | + Oosterzee and Lange on St. Luke's Gospel. 2 vols. | + Ebrard's Gospel History. 1 vol. | + Kurtz's Sacrificial Worship of the Old Testament. | + 1 vol. | + | + =FOURTH SERIES= (1864-71), | 8 8 0 + | + Any two years in this series can be had at | + Subscription price. | + | + (1864-65.) | + Lange on the Acts of the Apostles. 2 vols. } | + Keil and Delitzsch on the Pentateuch. 3 vols. } | 2 2 0 + Hengstenberg on the Gospel of John. 2 vols. } | + Keil and Delitzsch on Joshua, Judges, and Ruth. } | + 1 vol. } | + | + (1866.) | + Keil and Delitzsch on Samuel. 1 vol. } | + Keil and Delitzsch on Job. 2 vols. } | 1 1 0 + Martensen's System of Christian Doctrine. } | + 1 vol. } | + | + (1867.) | + Delitzsch on Isaiah. Vol. I. } | + Delitzsch on Biblical Psychology. } | 1 1 0 + Delitzsch on Isaiah. Vol. II. } | + Auberlen on Divine Revelation. } | + | + (1868.) | + Keil's Commentary on the Minor Prophets. } | + 2 vols. } | + Delitzsch's Commentary on Epistle to the } | + Hebrews. Vol. I. } | 1 1 0 + Harless' System of Christian Ethics. 1 vol. } | + | + (1869.) | + Hengstenberg on Ezekiel. 1 vol. } | + Stier on the Words of the Apostles. 1 vol. } | 1 1 0 + Keil's Introduction to the Old Testament. } | + Vol. I. } | + Bleek's Introduction to the New Testament. } | + Vol. I. } | + | + (1870.) | + Keil's Introduction to the Old Testament. } | + Vol. II. } | + Bleek's Introduction to the New Testament. } | 1 1 0 + Vol. II. } | + Schmid's New Testament Theology. 1 vol. } | + Delitzsch's Commentary on Epistle to the } | + Hebrews. Vol. II. } | + | + _The First Issue for_ 1871 _comprises_-- } | + Delitzsch's Commentary on the Psalms. Vols. I. } | + and II. } | 1 1 0 + _This Subscription includes other two volumes,_ } | + _the names of which will be announced shortly._ } | + | + _The Retail Bookseller is entitled to charge_ | + 24 _s. if the Subscription is not paid by | + his Customer in advance._ | + | + | + =BENGEL'S GNOMON OF THE NEW TESTAMENT.= (Sixth | + Thousand now ready.) Now first translated | + into English, with Original Notes, | + Explanatory and Illustrative, in five large | + volumes, demy 8vo, Edited by Rev. ANDREW | + R. FAUSSETT, M.A., Rector of St. | + Cuthbert's, York, _netto_ | 1 11 + ----------------------------------------------------+--------------- + + + + +Transcriber's Notes: + + +Obvious punctuation and spelling errors have been fixed throughout. + +Inconsistent hyphenation is as in the original. + + + + + + +End of Project Gutenberg's The City of God, Volume I, by Aurelius Augustine + + + +*** END OF THE PROJECT GUTENBERG EBOOK THE CITY OF GOD, VOLUME I *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + diff --git a/text/2.txt b/text/2.txt new file mode 100644 index 0000000..d217b58 --- /dev/null +++ b/text/2.txt @@ -0,0 +1,9106 @@ +The Project Gutenberg eBook of A Room with a View + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: A Room with a View + +Author: E. M. Forster + +Release date: May 1, 2001 [eBook #2641] + Most recently updated: August 11, 2025 + +Language: English + + + +*** START OF THE PROJECT GUTENBERG EBOOK A ROOM WITH A VIEW *** + + + + +[Illustration] + + + + +A Room With A View + +By E. M. Forster + + + + +CONTENTS + + Part One. + Chapter I. The Bertolini + Chapter II. In Santa Croce with No Baedeker + Chapter III. Music, Violets, and the Letter “S” + Chapter IV. Fourth Chapter + Chapter V. Possibilities of a Pleasant Outing + Chapter VI. The Reverend Arthur Beebe, the Reverend Cuthbert Eager, Mr. Emerson, Mr. George Emerson, Miss Eleanor Lavish, Miss Charlotte Bartlett, and Miss Lucy Honeychurch Drive Out in Carriages to See a View; Italians Drive Them + Chapter VII. They Return + + Part Two. + Chapter VIII. Medieval + Chapter IX. Lucy As a Work of Art + Chapter X. Cecil as a Humourist + Chapter XI. In Mrs. Vyse’s Well-Appointed Flat + Chapter XII. Twelfth Chapter + Chapter XIII. How Miss Bartlett’s Boiler Was So Tiresome + Chapter XIV. How Lucy Faced the External Situation Bravely + Chapter XV. The Disaster Within + Chapter XVI. Lying to George + Chapter XVII. Lying to Cecil + Chapter XVIII. Lying to Mr. Beebe, Mrs. Honeychurch, Freddy, and The Servants + Chapter XIX. Lying to Mr. Emerson + Chapter XX. The End of the Middle Ages + + + + +PART ONE + + + + +Chapter I +The Bertolini + + +“The Signora had no business to do it,” said Miss Bartlett, “no +business at all. She promised us south rooms with a view close +together, instead of which here are north rooms, looking into a +courtyard, and a long way apart. Oh, Lucy!” + +“And a Cockney, besides!” said Lucy, who had been further saddened by +the Signora’s unexpected accent. “It might be London.” She looked at +the two rows of English people who were sitting at the table; at the +row of white bottles of water and red bottles of wine that ran between +the English people; at the portraits of the late Queen and the late +Poet Laureate that hung behind the English people, heavily framed; at +the notice of the English church (Rev. Cuthbert Eager, M. A. Oxon.), +that was the only other decoration of the wall. “Charlotte, don’t you +feel, too, that we might be in London? I can hardly believe that all +kinds of other things are just outside. I suppose it is one’s being so +tired.” + +“This meat has surely been used for soup,” said Miss Bartlett, laying +down her fork. + +“I want so to see the Arno. The rooms the Signora promised us in her +letter would have looked over the Arno. The Signora had no business to +do it at all. Oh, it is a shame!” + +“Any nook does for me,” Miss Bartlett continued; “but it does seem hard +that you shouldn’t have a view.” + +Lucy felt that she had been selfish. “Charlotte, you mustn’t spoil me: +of course, you must look over the Arno, too. I meant that. The first +vacant room in the front—” “You must have it,” said Miss Bartlett, part +of whose travelling expenses were paid by Lucy’s mother—a piece of +generosity to which she made many a tactful allusion. + +“No, no. You must have it.” + +“I insist on it. Your mother would never forgive me, Lucy.” + +“She would never forgive _me_.” + +The ladies’ voices grew animated, and—if the sad truth be owned—a +little peevish. They were tired, and under the guise of unselfishness +they wrangled. Some of their neighbours interchanged glances, and one +of them—one of the ill-bred people whom one does meet abroad—leant +forward over the table and actually intruded into their argument. He +said: + +“I have a view, I have a view.” + +Miss Bartlett was startled. Generally at a pension people looked them +over for a day or two before speaking, and often did not find out that +they would “do” till they had gone. She knew that the intruder was +ill-bred, even before she glanced at him. He was an old man, of heavy +build, with a fair, shaven face and large eyes. There was something +childish in those eyes, though it was not the childishness of senility. +What exactly it was Miss Bartlett did not stop to consider, for her +glance passed on to his clothes. These did not attract her. He was +probably trying to become acquainted with them before they got into the +swim. So she assumed a dazed expression when he spoke to her, and then +said: “A view? Oh, a view! How delightful a view is!” + +“This is my son,” said the old man; “his name’s George. He has a view +too.” + +“Ah,” said Miss Bartlett, repressing Lucy, who was about to speak. + +“What I mean,” he continued, “is that you can have our rooms, and we’ll +have yours. We’ll change.” + +The better class of tourist was shocked at this, and sympathized with +the new-comers. Miss Bartlett, in reply, opened her mouth as little as +possible, and said “Thank you very much indeed; that is out of the +question.” + +“Why?” said the old man, with both fists on the table. + +“Because it is quite out of the question, thank you.” + +“You see, we don’t like to take—” began Lucy. Her cousin again +repressed her. + +“But why?” he persisted. “Women like looking at a view; men don’t.” And +he thumped with his fists like a naughty child, and turned to his son, +saying, “George, persuade them!” + +“It’s so obvious they should have the rooms,” said the son. “There’s +nothing else to say.” + +He did not look at the ladies as he spoke, but his voice was perplexed +and sorrowful. Lucy, too, was perplexed; but she saw that they were in +for what is known as “quite a scene,” and she had an odd feeling that +whenever these ill-bred tourists spoke the contest widened and deepened +till it dealt, not with rooms and views, but with—well, with something +quite different, whose existence she had not realized before. Now the +old man attacked Miss Bartlett almost violently: Why should she not +change? What possible objection had she? They would clear out in half +an hour. + +Miss Bartlett, though skilled in the delicacies of conversation, was +powerless in the presence of brutality. It was impossible to snub any +one so gross. Her face reddened with displeasure. She looked around as +much as to say, “Are you all like this?” And two little old ladies, who +were sitting further up the table, with shawls hanging over the backs +of the chairs, looked back, clearly indicating “We are not; we are +genteel.” + +“Eat your dinner, dear,” she said to Lucy, and began to toy again with +the meat that she had once censured. + +Lucy mumbled that those seemed very odd people opposite. + +“Eat your dinner, dear. This pension is a failure. To-morrow we will +make a change.” + +Hardly had she announced this fell decision when she reversed it. The +curtains at the end of the room parted, and revealed a clergyman, stout +but attractive, who hurried forward to take his place at the table, +cheerfully apologizing for his lateness. Lucy, who had not yet acquired +decency, at once rose to her feet, exclaiming: “Oh, oh! Why, it’s Mr. +Beebe! Oh, how perfectly lovely! Oh, Charlotte, we must stop now, +however bad the rooms are. Oh!” + +Miss Bartlett said, with more restraint: + +“How do you do, Mr. Beebe? I expect that you have forgotten us: Miss +Bartlett and Miss Honeychurch, who were at Tunbridge Wells when you +helped the Vicar of St. Peter’s that very cold Easter.” + +The clergyman, who had the air of one on a holiday, did not remember +the ladies quite as clearly as they remembered him. But he came forward +pleasantly enough and accepted the chair into which he was beckoned by +Lucy. + +“I _am_ so glad to see you,” said the girl, who was in a state of +spiritual starvation, and would have been glad to see the waiter if her +cousin had permitted it. “Just fancy how small the world is. Summer +Street, too, makes it so specially funny.” + +“Miss Honeychurch lives in the parish of Summer Street,” said Miss +Bartlett, filling up the gap, “and she happened to tell me in the +course of conversation that you have just accepted the living—” + +“Yes, I heard from mother so last week. She didn’t know that I knew you +at Tunbridge Wells; but I wrote back at once, and I said: ‘Mr. Beebe +is—’” + +“Quite right,” said the clergyman. “I move into the Rectory at Summer +Street next June. I am lucky to be appointed to such a charming +neighbourhood.” + +“Oh, how glad I am! The name of our house is Windy Corner.” Mr. Beebe +bowed. + +“There is mother and me generally, and my brother, though it’s not +often we get him to ch—— The church is rather far off, I mean.” + +“Lucy, dearest, let Mr. Beebe eat his dinner.” + +“I am eating it, thank you, and enjoying it.” + +He preferred to talk to Lucy, whose playing he remembered, rather than +to Miss Bartlett, who probably remembered his sermons. He asked the +girl whether she knew Florence well, and was informed at some length +that she had never been there before. It is delightful to advise a +newcomer, and he was first in the field. “Don’t neglect the country +round,” his advice concluded. “The first fine afternoon drive up to +Fiesole, and round by Settignano, or something of that sort.” + +“No!” cried a voice from the top of the table. “Mr. Beebe, you are +wrong. The first fine afternoon your ladies must go to Prato.” + +“That lady looks so clever,” whispered Miss Bartlett to her cousin. “We +are in luck.” + +And, indeed, a perfect torrent of information burst on them. People +told them what to see, when to see it, how to stop the electric trams, +how to get rid of the beggars, how much to give for a vellum blotter, +how much the place would grow upon them. The Pension Bertolini had +decided, almost enthusiastically, that they would do. Whichever way +they looked, kind ladies smiled and shouted at them. And above all rose +the voice of the clever lady, crying: “Prato! They must go to Prato. +That place is too sweetly squalid for words. I love it; I revel in +shaking off the trammels of respectability, as you know.” + +The young man named George glanced at the clever lady, and then +returned moodily to his plate. Obviously he and his father did not do. +Lucy, in the midst of her success, found time to wish they did. It gave +her no extra pleasure that any one should be left in the cold; and when +she rose to go, she turned back and gave the two outsiders a nervous +little bow. + +The father did not see it; the son acknowledged it, not by another bow, +but by raising his eyebrows and smiling; he seemed to be smiling across +something. + +She hastened after her cousin, who had already disappeared through the +curtains—curtains which smote one in the face, and seemed heavy with +more than cloth. Beyond them stood the unreliable Signora, bowing +good-evening to her guests, and supported by ’Enery, her little boy, +and Victorier, her daughter. It made a curious little scene, this +attempt of the Cockney to convey the grace and geniality of the South. +And even more curious was the drawing-room, which attempted to rival +the solid comfort of a Bloomsbury boarding-house. Was this really +Italy? + +Miss Bartlett was already seated on a tightly stuffed arm-chair, which +had the colour and the contours of a tomato. She was talking to Mr. +Beebe, and as she spoke, her long narrow head drove backwards and +forwards, slowly, regularly, as though she were demolishing some +invisible obstacle. “We are most grateful to you,” she was saying. “The +first evening means so much. When you arrived we were in for a +peculiarly _mauvais quart d’heure_.” + +He expressed his regret. + +“Do you, by any chance, know the name of an old man who sat opposite us +at dinner?” + +“Emerson.” + +“Is he a friend of yours?” + +“We are friendly—as one is in pensions.” + +“Then I will say no more.” + +He pressed her very slightly, and she said more. + +“I am, as it were,” she concluded, “the chaperon of my young cousin, +Lucy, and it would be a serious thing if I put her under an obligation +to people of whom we know nothing. His manner was somewhat unfortunate. +I hope I acted for the best.” + +“You acted very naturally,” said he. He seemed thoughtful, and after a +few moments added: “All the same, I don’t think much harm would have +come of accepting.” + +“No _harm_, of course. But we could not be under an obligation.” + +“He is rather a peculiar man.” Again he hesitated, and then said +gently: “I think he would not take advantage of your acceptance, nor +expect you to show gratitude. He has the merit—if it is one—of saying +exactly what he means. He has rooms he does not value, and he thinks +you would value them. He no more thought of putting you under an +obligation than he thought of being polite. It is so difficult—at +least, I find it difficult—to understand people who speak the truth.” + +Lucy was pleased, and said: “I was hoping that he was nice; I do so +always hope that people will be nice.” + +“I think he is; nice and tiresome. I differ from him on almost every +point of any importance, and so, I expect—I may say I hope—you will +differ. But his is a type one disagrees with rather than deplores. When +he first came here he not unnaturally put people’s backs up. He has no +tact and no manners—I don’t mean by that that he has bad manners—and he +will not keep his opinions to himself. We nearly complained about him +to our depressing Signora, but I am glad to say we thought better of +it.” + +“Am I to conclude,” said Miss Bartlett, “that he is a Socialist?” + +Mr. Beebe accepted the convenient word, not without a slight twitching +of the lips. + +“And presumably he has brought up his son to be a Socialist, too?” + +“I hardly know George, for he hasn’t learnt to talk yet. He seems a +nice creature, and I think he has brains. Of course, he has all his +father’s mannerisms, and it is quite possible that he, too, may be a +Socialist.” + +“Oh, you relieve me,” said Miss Bartlett. “So you think I ought to have +accepted their offer? You feel I have been narrow-minded and +suspicious?” + +“Not at all,” he answered; “I never suggested that.” + +“But ought I not to apologize, at all events, for my apparent +rudeness?” + +He replied, with some irritation, that it would be quite unnecessary, +and got up from his seat to go to the smoking-room. + +“Was I a bore?” said Miss Bartlett, as soon as he had disappeared. “Why +didn’t you talk, Lucy? He prefers young people, I’m sure. I do hope I +haven’t monopolized him. I hoped you would have him all the evening, as +well as all dinner-time.” + +“He is nice,” exclaimed Lucy. “Just what I remember. He seems to see +good in everyone. No one would take him for a clergyman.” + +“My dear Lucia—” + +“Well, you know what I mean. And you know how clergymen generally +laugh; Mr. Beebe laughs just like an ordinary man.” + +“Funny girl! How you do remind me of your mother. I wonder if she will +approve of Mr. Beebe.” + +“I’m sure she will; and so will Freddy.” + +“I think everyone at Windy Corner will approve; it is the fashionable +world. I am used to Tunbridge Wells, where we are all hopelessly behind +the times.” + +“Yes,” said Lucy despondently. + +There was a haze of disapproval in the air, but whether the disapproval +was of herself, or of Mr. Beebe, or of the fashionable world at Windy +Corner, or of the narrow world at Tunbridge Wells, she could not +determine. She tried to locate it, but as usual she blundered. Miss +Bartlett sedulously denied disapproving of any one, and added “I am +afraid you are finding me a very depressing companion.” + +And the girl again thought: “I must have been selfish or unkind; I must +be more careful. It is so dreadful for Charlotte, being poor.” + +Fortunately one of the little old ladies, who for some time had been +smiling very benignly, now approached and asked if she might be allowed +to sit where Mr. Beebe had sat. Permission granted, she began to +chatter gently about Italy, the plunge it had been to come there, the +gratifying success of the plunge, the improvement in her sister’s +health, the necessity of closing the bed-room windows at night, and of +thoroughly emptying the water-bottles in the morning. She handled her +subjects agreeably, and they were, perhaps, more worthy of attention +than the high discourse upon Guelfs and Ghibellines which was +proceeding tempestuously at the other end of the room. It was a real +catastrophe, not a mere episode, that evening of hers at Venice, when +she had found in her bedroom something that is one worse than a flea, +though one better than something else. + +“But here you are as safe as in England. Signora Bertolini is so +English.” + +“Yet our rooms smell,” said poor Lucy. “We dread going to bed.” + +“Ah, then you look into the court.” She sighed. “If only Mr. Emerson +was more tactful! We were so sorry for you at dinner.” + +“I think he was meaning to be kind.” + +“Undoubtedly he was,” said Miss Bartlett. + +“Mr. Beebe has just been scolding me for my suspicious nature. Of +course, I was holding back on my cousin’s account.” + +“Of course,” said the little old lady; and they murmured that one could +not be too careful with a young girl. + +Lucy tried to look demure, but could not help feeling a great fool. No +one was careful with her at home; or, at all events, she had not +noticed it. + +“About old Mr. Emerson—I hardly know. No, he is not tactful; yet, have +you ever noticed that there are people who do things which are most +indelicate, and yet at the same time—beautiful?” + +“Beautiful?” said Miss Bartlett, puzzled at the word. “Are not beauty +and delicacy the same?” + +“So one would have thought,” said the other helplessly. “But things are +so difficult, I sometimes think.” + +She proceeded no further into things, for Mr. Beebe reappeared, looking +extremely pleasant. + +“Miss Bartlett,” he cried, “it’s all right about the rooms. I’m so +glad. Mr. Emerson was talking about it in the smoking-room, and knowing +what I did, I encouraged him to make the offer again. He has let me +come and ask you. He would be so pleased.” + +“Oh, Charlotte,” cried Lucy to her cousin, “we must have the rooms now. +The old man is just as nice and kind as he can be.” + +Miss Bartlett was silent. + +“I fear,” said Mr. Beebe, after a pause, “that I have been officious. I +must apologize for my interference.” + +Gravely displeased, he turned to go. Not till then did Miss Bartlett +reply: “My own wishes, dearest Lucy, are unimportant in comparison with +yours. It would be hard indeed if I stopped you doing as you liked at +Florence, when I am only here through your kindness. If you wish me to +turn these gentlemen out of their rooms, I will do it. Would you then, +Mr. Beebe, kindly tell Mr. Emerson that I accept his kind offer, and +then conduct him to me, in order that I may thank him personally?” + +She raised her voice as she spoke; it was heard all over the +drawing-room, and silenced the Guelfs and the Ghibellines. The +clergyman, inwardly cursing the female sex, bowed, and departed with +her message. + +“Remember, Lucy, I alone am implicated in this. I do not wish the +acceptance to come from you. Grant me that, at all events.” + +Mr. Beebe was back, saying rather nervously: + +“Mr. Emerson is engaged, but here is his son instead.” + +The young man gazed down on the three ladies, who felt seated on the +floor, so low were their chairs. + +“My father,” he said, “is in his bath, so you cannot thank him +personally. But any message given by you to me will be given by me to +him as soon as he comes out.” + +Miss Bartlett was unequal to the bath. All her barbed civilities came +forth wrong end first. Young Mr. Emerson scored a notable triumph to +the delight of Mr. Beebe and to the secret delight of Lucy. + +“Poor young man!” said Miss Bartlett, as soon as he had gone. + +“How angry he is with his father about the rooms! It is all he can do +to keep polite.” + +“In half an hour or so your rooms will be ready,” said Mr. Beebe. Then +looking rather thoughtfully at the two cousins, he retired to his own +rooms, to write up his philosophic diary. + +“Oh, dear!” breathed the little old lady, and shuddered as if all the +winds of heaven had entered the apartment. “Gentlemen sometimes do not +realize—” Her voice faded away, but Miss Bartlett seemed to understand +and a conversation developed, in which gentlemen who did not thoroughly +realize played a principal part. Lucy, not realizing either, was +reduced to literature. Taking up Baedeker’s Handbook to Northern Italy, +she committed to memory the most important dates of Florentine History. +For she was determined to enjoy herself on the morrow. Thus the +half-hour crept profitably away, and at last Miss Bartlett rose with a +sigh, and said: + +“I think one might venture now. No, Lucy, do not stir. I will +superintend the move.” + +“How you do do everything,” said Lucy. + +“Naturally, dear. It is my affair.” + +“But I would like to help you.” + +“No, dear.” + +Charlotte’s energy! And her unselfishness! She had been thus all her +life, but really, on this Italian tour, she was surpassing herself. So +Lucy felt, or strove to feel. And yet—there was a rebellious spirit in +her which wondered whether the acceptance might not have been less +delicate and more beautiful. At all events, she entered her own room +without any feeling of joy. + +“I want to explain,” said Miss Bartlett, “why it is that I have taken +the largest room. Naturally, of course, I should have given it to you; +but I happen to know that it belongs to the young man, and I was sure +your mother would not like it.” + +Lucy was bewildered. + +“If you are to accept a favour it is more suitable you should be under +an obligation to his father than to him. I am a woman of the world, in +my small way, and I know where things lead to. However, Mr. Beebe is a +guarantee of a sort that they will not presume on this.” + +“Mother wouldn’t mind I’m sure,” said Lucy, but again had the sense of +larger and unsuspected issues. + +Miss Bartlett only sighed, and enveloped her in a protecting embrace as +she wished her good-night. It gave Lucy the sensation of a fog, and +when she reached her own room she opened the window and breathed the +clean night air, thinking of the kind old man who had enabled her to +see the lights dancing in the Arno and the cypresses of San Miniato, +and the foot-hills of the Apennines, black against the rising moon. + +Miss Bartlett, in her room, fastened the window-shutters and locked the +door, and then made a tour of the apartment to see where the cupboards +led, and whether there were any oubliettes or secret entrances. It was +then that she saw, pinned up over the washstand, a sheet of paper on +which was scrawled an enormous note of interrogation. Nothing more. + +“What does it mean?” she thought, and she examined it carefully by the +light of a candle. Meaningless at first, it gradually became menacing, +obnoxious, portentous with evil. She was seized with an impulse to +destroy it, but fortunately remembered that she had no right to do so, +since it must be the property of young Mr. Emerson. So she unpinned it +carefully, and put it between two pieces of blotting-paper to keep it +clean for him. Then she completed her inspection of the room, sighed +heavily according to her habit, and went to bed. + + + + +Chapter II +In Santa Croce with No Baedeker + + +It was pleasant to wake up in Florence, to open the eyes upon a bright +bare room, with a floor of red tiles which look clean though they are +not; with a painted ceiling whereon pink griffins and blue amorini +sport in a forest of yellow violins and bassoons. It was pleasant, too, +to fling wide the windows, pinching the fingers in unfamiliar +fastenings, to lean out into sunshine with beautiful hills and trees +and marble churches opposite, and close below, the Arno, gurgling +against the embankment of the road. + +Over the river men were at work with spades and sieves on the sandy +foreshore, and on the river was a boat, also diligently employed for +some mysterious end. An electric tram came rushing underneath the +window. No one was inside it, except one tourist; but its platforms +were overflowing with Italians, who preferred to stand. Children tried +to hang on behind, and the conductor, with no malice, spat in their +faces to make them let go. Then soldiers appeared—good-looking, +undersized men—wearing each a knapsack covered with mangy fur, and a +great-coat which had been cut for some larger soldier. Beside them +walked officers, looking foolish and fierce, and before them went +little boys, turning somersaults in time with the band. The tramcar +became entangled in their ranks, and moved on painfully, like a +caterpillar in a swarm of ants. One of the little boys fell down, and +some white bullocks came out of an archway. Indeed, if it had not been +for the good advice of an old man who was selling button-hooks, the +road might never have got clear. + +Over such trivialities as these many a valuable hour may slip away, and +the traveller who has gone to Italy to study the tactile values of +Giotto, or the corruption of the Papacy, may return remembering nothing +but the blue sky and the men and women who live under it. So it was as +well that Miss Bartlett should tap and come in, and having commented on +Lucy’s leaving the door unlocked, and on her leaning out of the window +before she was fully dressed, should urge her to hasten herself, or the +best of the day would be gone. By the time Lucy was ready her cousin +had done her breakfast, and was listening to the clever lady among the +crumbs. + +A conversation then ensued, on not unfamiliar lines. Miss Bartlett was, +after all, a wee bit tired, and thought they had better spend the +morning settling in; unless Lucy would at all like to go out? Lucy +would rather like to go out, as it was her first day in Florence, but, +of course, she could go alone. Miss Bartlett could not allow this. Of +course she would accompany Lucy everywhere. Oh, certainly not; Lucy +would stop with her cousin. Oh, no! that would never do. Oh, yes! + +At this point the clever lady broke in. + +“If it is Mrs. Grundy who is troubling you, I do assure you that you +can neglect the good person. Being English, Miss Honeychurch will be +perfectly safe. Italians understand. A dear friend of mine, Contessa +Baroncelli, has two daughters, and when she cannot send a maid to +school with them, she lets them go in sailor-hats instead. Every one +takes them for English, you see, especially if their hair is strained +tightly behind.” + +Miss Bartlett was unconvinced by the safety of Contessa Baroncelli’s +daughters. She was determined to take Lucy herself, her head not being +so very bad. The clever lady then said that she was going to spend a +long morning in Santa Croce, and if Lucy would come too, she would be +delighted. + +“I will take you by a dear dirty back way, Miss Honeychurch, and if you +bring me luck, we shall have an adventure.” + +Lucy said that this was most kind, and at once opened the Baedeker, to +see where Santa Croce was. + +“Tut, tut! Miss Lucy! I hope we shall soon emancipate you from +Baedeker. He does but touch the surface of things. As to the true +Italy—he does not even dream of it. The true Italy is only to be found +by patient observation.” + +This sounded very interesting, and Lucy hurried over her breakfast, and +started with her new friend in high spirits. Italy was coming at last. +The Cockney Signora and her works had vanished like a bad dream. + +Miss Lavish—for that was the clever lady’s name—turned to the right +along the sunny Lung’ Arno. How delightfully warm! But a wind down the +side streets cut like a knife, didn’t it? Ponte alle +Grazie—particularly interesting, mentioned by Dante. San +Miniato—beautiful as well as interesting; the crucifix that kissed a +murderer—Miss Honeychurch would remember the story. The men on the +river were fishing. (Untrue; but then, so is most information.) Then +Miss Lavish darted under the archway of the white bullocks, and she +stopped, and she cried: + +“A smell! a true Florentine smell! Every city, let me teach you, has +its own smell.” + +“Is it a very nice smell?” said Lucy, who had inherited from her mother +a distaste to dirt. + +“One doesn’t come to Italy for niceness,” was the retort; “one comes +for life. Buon giorno! Buon giorno!” bowing right and left. “Look at +that adorable wine-cart! How the driver stares at us, dear, simple +soul!” + +So Miss Lavish proceeded through the streets of the city of Florence, +short, fidgety, and playful as a kitten, though without a kitten’s +grace. It was a treat for the girl to be with any one so clever and so +cheerful; and a blue military cloak, such as an Italian officer wears, +only increased the sense of festivity. + +“Buon giorno! Take the word of an old woman, Miss Lucy: you will never +repent of a little civility to your inferiors. _That_ is the true +democracy. Though I am a real Radical as well. There, now you’re +shocked.” + +“Indeed, I’m not!” exclaimed Lucy. “We are Radicals, too, out and out. +My father always voted for Mr. Gladstone, until he was so dreadful +about Ireland.” + +“I see, I see. And now you have gone over to the enemy.” + +“Oh, please—! If my father was alive, I am sure he would vote Radical +again now that Ireland is all right. And as it is, the glass over our +front door was broken last election, and Freddy is sure it was the +Tories; but mother says nonsense, a tramp.” + +“Shameful! A manufacturing district, I suppose?” + +“No—in the Surrey hills. About five miles from Dorking, looking over +the Weald.” + +Miss Lavish seemed interested, and slackened her trot. + +“What a delightful part; I know it so well. It is full of the very +nicest people. Do you know Sir Harry Otway—a Radical if ever there +was?” + +“Very well indeed.” + +“And old Mrs. Butterworth the philanthropist?” + +“Why, she rents a field of us! How funny!” + +Miss Lavish looked at the narrow ribbon of sky, and murmured: “Oh, you +have property in Surrey?” + +“Hardly any,” said Lucy, fearful of being thought a snob. “Only thirty +acres—just the garden, all downhill, and some fields.” + +Miss Lavish was not disgusted, and said it was just the size of her +aunt’s Suffolk estate. Italy receded. They tried to remember the last +name of Lady Louisa someone, who had taken a house near Summer Street +the other year, but she had not liked it, which was odd of her. And +just as Miss Lavish had got the name, she broke off and exclaimed: + +“Bless us! Bless us and save us! We’ve lost the way.” + +Certainly they had seemed a long time in reaching Santa Croce, the +tower of which had been plainly visible from the landing window. But +Miss Lavish had said so much about knowing her Florence by heart, that +Lucy had followed her with no misgivings. + +“Lost! lost! My dear Miss Lucy, during our political diatribes we have +taken a wrong turning. How those horrid Conservatives would jeer at us! +What are we to do? Two lone females in an unknown town. Now, this is +what _I_ call an adventure.” + +Lucy, who wanted to see Santa Croce, suggested, as a possible solution, +that they should ask the way there. + +“Oh, but that is the word of a craven! And no, you are not, not, _not_ +to look at your Baedeker. Give it to me; I shan’t let you carry it. We +will simply drift.” + +Accordingly they drifted through a series of those grey-brown streets, +neither commodious nor picturesque, in which the eastern quarter of the +city abounds. Lucy soon lost interest in the discontent of Lady Louisa, +and became discontented herself. For one ravishing moment Italy +appeared. She stood in the Square of the Annunziata and saw in the +living terra-cotta those divine babies whom no cheap reproduction can +ever stale. There they stood, with their shining limbs bursting from +the garments of charity, and their strong white arms extended against +circlets of heaven. Lucy thought she had never seen anything more +beautiful; but Miss Lavish, with a shriek of dismay, dragged her +forward, declaring that they were out of their path now by at least a +mile. + +The hour was approaching at which the continental breakfast begins, or +rather ceases, to tell, and the ladies bought some hot chestnut paste +out of a little shop, because it looked so typical. It tasted partly of +the paper in which it was wrapped, partly of hair oil, partly of the +great unknown. But it gave them strength to drift into another Piazza, +large and dusty, on the farther side of which rose a black-and-white +façade of surpassing ugliness. Miss Lavish spoke to it dramatically. It +was Santa Croce. The adventure was over. + +“Stop a minute; let those two people go on, or I shall have to speak to +them. I do detest conventional intercourse. Nasty! they are going into +the church, too. Oh, the Britisher abroad!” + +“We sat opposite them at dinner last night. They have given us their +rooms. They were so very kind.” + +“Look at their figures!” laughed Miss Lavish. “They walk through my +Italy like a pair of cows. It’s very naughty of me, but I would like to +set an examination paper at Dover, and turn back every tourist who +couldn’t pass it.” + +“What would you ask us?” + +Miss Lavish laid her hand pleasantly on Lucy’s arm, as if to suggest +that she, at all events, would get full marks. In this exalted mood +they reached the steps of the great church, and were about to enter it +when Miss Lavish stopped, squeaked, flung up her arms, and cried: + +“There goes my local-colour box! I must have a word with him!” + +And in a moment she was away over the Piazza, her military cloak +flapping in the wind; nor did she slacken speed till she caught up an +old man with white whiskers, and nipped him playfully upon the arm. + +Lucy waited for nearly ten minutes. Then she began to get tired. The +beggars worried her, the dust blew in her eyes, and she remembered that +a young girl ought not to loiter in public places. She descended slowly +into the Piazza with the intention of rejoining Miss Lavish, who was +really almost too original. But at that moment Miss Lavish and her +local-colour box moved also, and disappeared down a side street, both +gesticulating largely. Tears of indignation came to Lucy’s eyes partly +because Miss Lavish had jilted her, partly because she had taken her +Baedeker. How could she find her way home? How could she find her way +about in Santa Croce? Her first morning was ruined, and she might never +be in Florence again. A few minutes ago she had been all high spirits, +talking as a woman of culture, and half persuading herself that she was +full of originality. Now she entered the church depressed and +humiliated, not even able to remember whether it was built by the +Franciscans or the Dominicans. Of course, it must be a wonderful +building. But how like a barn! And how very cold! Of course, it +contained frescoes by Giotto, in the presence of whose tactile values +she was capable of feeling what was proper. But who was to tell her +which they were? She walked about disdainfully, unwilling to be +enthusiastic over monuments of uncertain authorship or date. There was +no one even to tell her which, of all the sepulchral slabs that paved +the nave and transepts, was the one that was really beautiful, the one +that had been most praised by Mr. Ruskin. + +Then the pernicious charm of Italy worked on her, and, instead of +acquiring information, she began to be happy. She puzzled out the +Italian notices—the notices that forbade people to introduce dogs into +the church—the notice that prayed people, in the interest of health and +out of respect to the sacred edifice in which they found themselves, +not to spit. She watched the tourists; their noses were as red as their +Baedekers, so cold was Santa Croce. She beheld the horrible fate that +overtook three Papists—two he-babies and a she-baby—who began their +career by sousing each other with the Holy Water, and then proceeded to +the Machiavelli memorial, dripping but hallowed. Advancing towards it +very slowly and from immense distances, they touched the stone with +their fingers, with their handkerchiefs, with their heads, and then +retreated. What could this mean? They did it again and again. Then Lucy +realized that they had mistaken Machiavelli for some saint, hoping to +acquire virtue. Punishment followed quickly. The smallest he-baby +stumbled over one of the sepulchral slabs so much admired by Mr. +Ruskin, and entangled his feet in the features of a recumbent bishop. +Protestant as she was, Lucy darted forward. She was too late. He fell +heavily upon the prelate’s upturned toes. + +“Hateful bishop!” exclaimed the voice of old Mr. Emerson, who had +darted forward also. “Hard in life, hard in death. Go out into the +sunshine, little boy, and kiss your hand to the sun, for that is where +you ought to be. Intolerable bishop!” + +The child screamed frantically at these words, and at these dreadful +people who picked him up, dusted him, rubbed his bruises, and told him +not to be superstitious. + +“Look at him!” said Mr. Emerson to Lucy. “Here’s a mess: a baby hurt, +cold, and frightened! But what else can you expect from a church?” + +The child’s legs had become as melting wax. Each time that old Mr. +Emerson and Lucy set it erect it collapsed with a roar. Fortunately an +Italian lady, who ought to have been saying her prayers, came to the +rescue. By some mysterious virtue, which mothers alone possess, she +stiffened the little boy’s back-bone and imparted strength to his +knees. He stood. Still gibbering with agitation, he walked away. + +“You are a clever woman,” said Mr. Emerson. “You have done more than +all the relics in the world. I am not of your creed, but I do believe +in those who make their fellow-creatures happy. There is no scheme of +the universe—” + +He paused for a phrase. + +“Niente,” said the Italian lady, and returned to her prayers. + +“I’m not sure she understands English,” suggested Lucy. + +In her chastened mood she no longer despised the Emersons. She was +determined to be gracious to them, beautiful rather than delicate, and, +if possible, to erase Miss Bartlett’s civility by some gracious +reference to the pleasant rooms. + +“That woman understands everything,” was Mr. Emerson’s reply. “But what +are you doing here? Are you doing the church? Are you through with the +church?” + +“No,” cried Lucy, remembering her grievance. “I came here with Miss +Lavish, who was to explain everything; and just by the door—it is too +bad!—she simply ran away, and after waiting quite a time, I had to come +in by myself.” + +“Why shouldn’t you?” said Mr. Emerson. + +“Yes, why shouldn’t you come by yourself?” said the son, addressing the +young lady for the first time. + +“But Miss Lavish has even taken away Baedeker.” + +“Baedeker?” said Mr. Emerson. “I’m glad it’s _that_ you minded. It’s +worth minding, the loss of a Baedeker. _That’s_ worth minding.” + +Lucy was puzzled. She was again conscious of some new idea, and was not +sure whither it would lead her. + +“If you’ve no Baedeker,” said the son, “you’d better join us.” Was this +where the idea would lead? She took refuge in her dignity. + +“Thank you very much, but I could not think of that. I hope you do not +suppose that I came to join on to you. I really came to help with the +child, and to thank you for so kindly giving us your rooms last night. +I hope that you have not been put to any great inconvenience.” + +“My dear,” said the old man gently, “I think that you are repeating +what you have heard older people say. You are pretending to be touchy; +but you are not really. Stop being so tiresome, and tell me instead +what part of the church you want to see. To take you to it will be a +real pleasure.” + +Now, this was abominably impertinent, and she ought to have been +furious. But it is sometimes as difficult to lose one’s temper as it is +difficult at other times to keep it. Lucy could not get cross. Mr. +Emerson was an old man, and surely a girl might humour him. On the +other hand, his son was a young man, and she felt that a girl ought to +be offended with him, or at all events be offended before him. It was +at him that she gazed before replying. + +“I am not touchy, I hope. It is the Giottos that I want to see, if you +will kindly tell me which they are.” + +The son nodded. With a look of sombre satisfaction, he led the way to +the Peruzzi Chapel. There was a hint of the teacher about him. She felt +like a child in school who had answered a question rightly. + +The chapel was already filled with an earnest congregation, and out of +them rose the voice of a lecturer, directing them how to worship +Giotto, not by tactful valuations, but by the standards of the spirit. + +“Remember,” he was saying, “the facts about this church of Santa Croce; +how it was built by faith in the full fervour of medievalism, before +any taint of the Renaissance had appeared. Observe how Giotto in these +frescoes—now, unhappily, ruined by restoration—is untroubled by the +snares of anatomy and perspective. Could anything be more majestic, +more pathetic, beautiful, true? How little, we feel, avails knowledge +and technical cleverness against a man who truly feels!” + +“No!” exclaimed Mr. Emerson, in much too loud a voice for church. +“Remember nothing of the sort! Built by faith indeed! That simply means +the workmen weren’t paid properly. And as for the frescoes, I see no +truth in them. Look at that fat man in blue! He must weigh as much as I +do, and he is shooting into the sky like an air balloon.” + +He was referring to the fresco of the “Ascension of St. John.” Inside, +the lecturer’s voice faltered, as well it might. The audience shifted +uneasily, and so did Lucy. She was sure that she ought not to be with +these men; but they had cast a spell over her. They were so serious and +so strange that she could not remember how to behave. + +“Now, did this happen, or didn’t it? Yes or no?” + +George replied: + +“It happened like this, if it happened at all. I would rather go up to +heaven by myself than be pushed by cherubs; and if I got there I should +like my friends to lean out of it, just as they do here.” + +“You will never go up,” said his father. “You and I, dear boy, will lie +at peace in the earth that bore us, and our names will disappear as +surely as our work survives.” + +“Some of the people can only see the empty grave, not the saint, +whoever he is, going up. It did happen like that, if it happened at +all.” + +“Pardon me,” said a frigid voice. “The chapel is somewhat small for two +parties. We will incommode you no longer.” + +The lecturer was a clergyman, and his audience must be also his flock, +for they held prayer-books as well as guide-books in their hands. They +filed out of the chapel in silence. Amongst them were the two little +old ladies of the Pension Bertolini—Miss Teresa and Miss Catherine +Alan. + +“Stop!” cried Mr. Emerson. “There’s plenty of room for us all. Stop!” + +The procession disappeared without a word. + +Soon the lecturer could be heard in the next chapel, describing the +life of St. Francis. + +“George, I do believe that clergyman is the Brixton curate.” + +George went into the next chapel and returned, saying “Perhaps he is. I +don’t remember.” + +“Then I had better speak to him and remind him who I am. It’s that Mr. +Eager. Why did he go? Did we talk too loud? How vexatious. I shall go +and say we are sorry. Hadn’t I better? Then perhaps he will come back.” + +“He will not come back,” said George. + +But Mr. Emerson, contrite and unhappy, hurried away to apologize to the +Rev. Cuthbert Eager. Lucy, apparently absorbed in a lunette, could hear +the lecture again interrupted, the anxious, aggressive voice of the old +man, the curt, injured replies of his opponent. The son, who took every +little contretemps as if it were a tragedy, was listening also. + +“My father has that effect on nearly everyone,” he informed her. “He +will try to be kind.” + +“I hope we all try,” said she, smiling nervously. + +“Because we think it improves our characters. But he is kind to people +because he loves them; and they find him out, and are offended, or +frightened.” + +“How silly of them!” said Lucy, though in her heart she sympathized; “I +think that a kind action done tactfully—” + +“Tact!” + +He threw up his head in disdain. Apparently she had given the wrong +answer. She watched the singular creature pace up and down the chapel. +For a young man his face was rugged, and—until the shadows fell upon +it—hard. Enshadowed, it sprang into tenderness. She saw him once again +at Rome, on the ceiling of the Sistine Chapel, carrying a burden of +acorns. Healthy and muscular, he yet gave her the feeling of greyness, +of tragedy that might only find solution in the night. The feeling soon +passed; it was unlike her to have entertained anything so subtle. Born +of silence and of unknown emotion, it passed when Mr. Emerson returned, +and she could re-enter the world of rapid talk, which was alone +familiar to her. + +“Were you snubbed?” asked his son tranquilly. + +“But we have spoilt the pleasure of I don’t know how many people. They +won’t come back.” + +“...full of innate sympathy...quickness to perceive good in +others...vision of the brotherhood of man...” Scraps of the lecture on +St. Francis came floating round the partition wall. + +“Don’t let us spoil yours,” he continued to Lucy. “Have you looked at +those saints?” + +“Yes,” said Lucy. “They are lovely. Do you know which is the tombstone +that is praised in Ruskin?” + +He did not know, and suggested that they should try to guess it. +George, rather to her relief, refused to move, and she and the old man +wandered not unpleasantly about Santa Croce, which, though it is like a +barn, has harvested many beautiful things inside its walls. There were +also beggars to avoid and guides to dodge round the pillars, and an old +lady with her dog, and here and there a priest modestly edging to his +Mass through the groups of tourists. But Mr. Emerson was only half +interested. He watched the lecturer, whose success he believed he had +impaired, and then he anxiously watched his son. + +“Why will he look at that fresco?” he said uneasily. “I saw nothing in +it.” + +“I like Giotto,” she replied. “It is so wonderful what they say about +his tactile values. Though I like things like the Della Robbia babies +better.” + +“So you ought. A baby is worth a dozen saints. And my baby’s worth the +whole of Paradise, and as far as I can see he lives in Hell.” + +Lucy again felt that this did not do. + +“In Hell,” he repeated. “He’s unhappy.” + +“Oh, dear!” said Lucy. + +“How can he be unhappy when he is strong and alive? What more is one to +give him? And think how he has been brought up—free from all the +superstition and ignorance that lead men to hate one another in the +name of God. With such an education as that, I thought he was bound to +grow up happy.” + +She was no theologian, but she felt that here was a very foolish old +man, as well as a very irreligious one. She also felt that her mother +might not like her talking to that kind of person, and that Charlotte +would object most strongly. + +“What are we to do with him?” he asked. “He comes out for his holiday +to Italy, and behaves—like that; like the little child who ought to +have been playing, and who hurt himself upon the tombstone. Eh? What +did you say?” + +Lucy had made no suggestion. Suddenly he said: + +“Now don’t be stupid over this. I don’t require you to fall in love +with my boy, but I do think you might try and understand him. You are +nearer his age, and if you let yourself go I am sure you are sensible. +You might help me. He has known so few women, and you have the time. +You stop here several weeks, I suppose? But let yourself go. You are +inclined to get muddled, if I may judge from last night. Let yourself +go. Pull out from the depths those thoughts that you do not understand, +and spread them out in the sunlight and know the meaning of them. By +understanding George you may learn to understand yourself. It will be +good for both of you.” + +To this extraordinary speech Lucy found no answer. + +“I only know what it is that’s wrong with him; not why it is.” + +“And what is it?” asked Lucy fearfully, expecting some harrowing tale. + +“The old trouble; things won’t fit.” + +“What things?” + +“The things of the universe. It is quite true. They don’t.” + +“Oh, Mr. Emerson, whatever do you mean?” + +In his ordinary voice, so that she scarcely realized he was quoting +poetry, he said: + +“‘From far, from eve and morning, + And yon twelve-winded sky, +The stuff of life to knit me + Blew hither: here am I’ + + +George and I both know this, but why does it distress him? We know that +we come from the winds, and that we shall return to them; that all life +is perhaps a knot, a tangle, a blemish in the eternal smoothness. But +why should this make us unhappy? Let us rather love one another, and +work and rejoice. I don’t believe in this world sorrow.” + +Miss Honeychurch assented. + +“Then make my boy think like us. Make him realize that by the side of +the everlasting Why there is a Yes—a transitory Yes if you like, but a +Yes.” + +Suddenly she laughed; surely one ought to laugh. A young man melancholy +because the universe wouldn’t fit, because life was a tangle or a wind, +or a Yes, or something! + +“I’m very sorry,” she cried. “You’ll think me unfeeling, but—but—” Then +she became matronly. “Oh, but your son wants employment. Has he no +particular hobby? Why, I myself have worries, but I can generally +forget them at the piano; and collecting stamps did no end of good for +my brother. Perhaps Italy bores him; you ought to try the Alps or the +Lakes.” + +The old man’s face saddened, and he touched her gently with his hand. +This did not alarm her; she thought that her advice had impressed him +and that he was thanking her for it. Indeed, he no longer alarmed her +at all; she regarded him as a kind thing, but quite silly. Her feelings +were as inflated spiritually as they had been an hour ago esthetically, +before she lost Baedeker. The dear George, now striding towards them +over the tombstones, seemed both pitiable and absurd. He approached, +his face in the shadow. He said: + +“Miss Bartlett.” + +“Oh, good gracious me!” said Lucy, suddenly collapsing and again seeing +the whole of life in a new perspective. “Where? Where?” + +“In the nave.” + +“I see. Those gossiping little Miss Alans must have—” She checked +herself. + +“Poor girl!” exploded Mr. Emerson. “Poor girl!” + +She could not let this pass, for it was just what she was feeling +herself. + +“Poor girl? I fail to understand the point of that remark. I think +myself a very fortunate girl, I assure you. I’m thoroughly happy, and +having a splendid time. Pray don’t waste time mourning over _me_. +There’s enough sorrow in the world, isn’t there, without trying to +invent it. Good-bye. Thank you both so much for all your kindness. Ah, +yes! there does come my cousin. A delightful morning! Santa Croce is a +wonderful church.” + +She joined her cousin. + + + + +Chapter III +Music, Violets, and the Letter “S” + + +It so happened that Lucy, who found daily life rather chaotic, entered +a more solid world when she opened the piano. She was then no longer +either deferential or patronizing; no longer either a rebel or a slave. +The kingdom of music is not the kingdom of this world; it will accept +those whom breeding and intellect and culture have alike rejected. The +commonplace person begins to play, and shoots into the empyrean without +effort, whilst we look up, marvelling how he has escaped us, and +thinking how we could worship him and love him, would he but translate +his visions into human words, and his experiences into human actions. +Perhaps he cannot; certainly he does not, or does so very seldom. Lucy +had done so never. + +She was no dazzling _exécutante;_ her runs were not at all like strings +of pearls, and she struck no more right notes than was suitable for one +of her age and situation. Nor was she the passionate young lady, who +performs so tragically on a summer’s evening with the window open. +Passion was there, but it could not be easily labelled; it slipped +between love and hatred and jealousy, and all the furniture of the +pictorial style. And she was tragical only in the sense that she was +great, for she loved to play on the side of Victory. Victory of what +and over what—that is more than the words of daily life can tell us. +But that some sonatas of Beethoven are written tragic no one can +gainsay; yet they can triumph or despair as the player decides, and +Lucy had decided that they should triumph. + +A very wet afternoon at the Bertolini permitted her to do the thing she +really liked, and after lunch she opened the little draped piano. A few +people lingered round and praised her playing, but finding that she +made no reply, dispersed to their rooms to write up their diaries or to +sleep. She took no notice of Mr. Emerson looking for his son, nor of +Miss Bartlett looking for Miss Lavish, nor of Miss Lavish looking for +her cigarette-case. Like every true performer, she was intoxicated by +the mere feel of the notes: they were fingers caressing her own; and by +touch, not by sound alone, did she come to her desire. + +Mr. Beebe, sitting unnoticed in the window, pondered this illogical +element in Miss Honeychurch, and recalled the occasion at Tunbridge +Wells when he had discovered it. It was at one of those entertainments +where the upper classes entertain the lower. The seats were filled with +a respectful audience, and the ladies and gentlemen of the parish, +under the auspices of their vicar, sang, or recited, or imitated the +drawing of a champagne cork. Among the promised items was “Miss +Honeychurch. Piano. Beethoven,” and Mr. Beebe was wondering whether it +would be Adelaida, or the march of The Ruins of Athens, when his +composure was disturbed by the opening bars of Opus 111. He was in +suspense all through the introduction, for not until the pace quickens +does one know what the performer intends. With the roar of the opening +theme he knew that things were going extraordinarily; in the chords +that herald the conclusion he heard the hammer strokes of victory. He +was glad that she only played the first movement, for he could have +paid no attention to the winding intricacies of the measures of +nine-sixteen. The audience clapped, no less respectful. It was Mr. +Beebe who started the stamping; it was all that one could do. + +“Who is she?” he asked the vicar afterwards. + +“Cousin of one of my parishioners. I do not consider her choice of a +piece happy. Beethoven is so usually simple and direct in his appeal +that it is sheer perversity to choose a thing like that, which, if +anything, disturbs.” + +“Introduce me.” + +“She will be delighted. She and Miss Bartlett are full of the praises +of your sermon.” + +“My sermon?” cried Mr. Beebe. “Why ever did she listen to it?” + +When he was introduced he understood why, for Miss Honeychurch, +disjoined from her music stool, was only a young lady with a quantity +of dark hair and a very pretty, pale, undeveloped face. She loved going +to concerts, she loved stopping with her cousin, she loved iced coffee +and meringues. He did not doubt that she loved his sermon also. But +before he left Tunbridge Wells he made a remark to the vicar, which he +now made to Lucy herself when she closed the little piano and moved +dreamily towards him: + +“If Miss Honeychurch ever takes to live as she plays, it will be very +exciting both for us and for her.” + +Lucy at once re-entered daily life. + +“Oh, what a funny thing! Some one said just the same to mother, and she +said she trusted I should never live a duet.” + +“Doesn’t Mrs. Honeychurch like music?” + +“She doesn’t mind it. But she doesn’t like one to get excited over +anything; she thinks I am silly about it. She thinks—I can’t make out. +Once, you know, I said that I liked my own playing better than any +one’s. She has never got over it. Of course, I didn’t mean that I +played well; I only meant—” + +“Of course,” said he, wondering why she bothered to explain. + +“Music—” said Lucy, as if attempting some generality. She could not +complete it, and looked out absently upon Italy in the wet. The whole +life of the South was disorganized, and the most graceful nation in +Europe had turned into formless lumps of clothes. + +The street and the river were dirty yellow, the bridge was dirty grey, +and the hills were dirty purple. Somewhere in their folds were +concealed Miss Lavish and Miss Bartlett, who had chosen this afternoon +to visit the Torre del Gallo. + +“What about music?” said Mr. Beebe. + +“Poor Charlotte will be sopped,” was Lucy’s reply. + +The expedition was typical of Miss Bartlett, who would return cold, +tired, hungry, and angelic, with a ruined skirt, a pulpy Baedeker, and +a tickling cough in her throat. On another day, when the whole world +was singing and the air ran into the mouth, like wine, she would refuse +to stir from the drawing-room, saying that she was an old thing, and no +fit companion for a hearty girl. + +“Miss Lavish has led your cousin astray. She hopes to find the true +Italy in the wet I believe.” + +“Miss Lavish is so original,” murmured Lucy. This was a stock remark, +the supreme achievement of the Pension Bertolini in the way of +definition. Miss Lavish was so original. Mr. Beebe had his doubts, but +they would have been put down to clerical narrowness. For that, and for +other reasons, he held his peace. + +“Is it true,” continued Lucy in awe-struck tone, “that Miss Lavish is +writing a book?” + +“They do say so.” + +“What is it about?” + +“It will be a novel,” replied Mr. Beebe, “dealing with modern Italy. +Let me refer you for an account to Miss Catharine Alan, who uses words +herself more admirably than any one I know.” + +“I wish Miss Lavish would tell me herself. We started such friends. But +I don’t think she ought to have run away with Baedeker that morning in +Santa Croce. Charlotte was most annoyed at finding me practically +alone, and so I couldn’t help being a little annoyed with Miss Lavish.” + +“The two ladies, at all events, have made it up.” + +He was interested in the sudden friendship between women so apparently +dissimilar as Miss Bartlett and Miss Lavish. They were always in each +other’s company, with Lucy a slighted third. Miss Lavish he believed he +understood, but Miss Bartlett might reveal unknown depths of +strangeness, though not perhaps, of meaning. Was Italy deflecting her +from the path of prim chaperon, which he had assigned to her at +Tunbridge Wells? All his life he had loved to study maiden ladies; they +were his specialty, and his profession had provided him with ample +opportunities for the work. Girls like Lucy were charming to look at, +but Mr. Beebe was, from rather profound reasons, somewhat chilly in his +attitude towards the other sex, and preferred to be interested rather +than enthralled. + +Lucy, for the third time, said that poor Charlotte would be sopped. The +Arno was rising in flood, washing away the traces of the little carts +upon the foreshore. But in the south-west there had appeared a dull +haze of yellow, which might mean better weather if it did not mean +worse. She opened the window to inspect, and a cold blast entered the +room, drawing a plaintive cry from Miss Catharine Alan, who entered at +the same moment by the door. + +“Oh, dear Miss Honeychurch, you will catch a chill! And Mr. Beebe here +besides. Who would suppose this is Italy? There is my sister actually +nursing the hot-water can; no comforts or proper provisions.” + +She sidled towards them and sat down, self-conscious as she always was +on entering a room which contained one man, or a man and one woman. + +“I could hear your beautiful playing, Miss Honeychurch, though I was in +my room with the door shut. Doors shut; indeed, most necessary. No one +has the least idea of privacy in this country. And one person catches +it from another.” + +Lucy answered suitably. Mr. Beebe was not able to tell the ladies of +his adventure at Modena, where the chambermaid burst in upon him in his +bath, exclaiming cheerfully, “Fa niente, sono vecchia.” He contented +himself with saying: “I quite agree with you, Miss Alan. The Italians +are a most unpleasant people. They pry everywhere, they see everything, +and they know what we want before we know it ourselves. We are at their +mercy. They read our thoughts, they foretell our desires. From the +cab-driver down to—to Giotto, they turn us inside out, and I resent it. +Yet in their heart of hearts they are—how superficial! They have no +conception of the intellectual life. How right is Signora Bertolini, +who exclaimed to me the other day: ‘Ho, Mr. Beebe, if you knew what I +suffer over the children’s edjucaishion. _Hi_ won’t ’ave my little +Victorier taught by a hignorant Italian what can’t explain nothink!’” + +Miss Alan did not follow, but gathered that she was being mocked in an +agreeable way. Her sister was a little disappointed in Mr. Beebe, +having expected better things from a clergyman whose head was bald and +who wore a pair of russet whiskers. Indeed, who would have supposed +that tolerance, sympathy, and a sense of humour would inhabit that +militant form? + +In the midst of her satisfaction she continued to sidle, and at last +the cause was disclosed. From the chair beneath her she extracted a +gun-metal cigarette-case, on which were powdered in turquoise the +initials “E. L.” + +“That belongs to Lavish.” said the clergyman. “A good fellow, Lavish, +but I wish she’d start a pipe.” + +“Oh, Mr. Beebe,” said Miss Alan, divided between awe and mirth. +“Indeed, though it is dreadful for her to smoke, it is not quite as +dreadful as you suppose. She took to it, practically in despair, after +her life’s work was carried away in a landslip. Surely that makes it +more excusable.” + +“What was that?” asked Lucy. + +Mr. Beebe sat back complacently, and Miss Alan began as follows: “It +was a novel—and I am afraid, from what I can gather, not a very nice +novel. It is so sad when people who have abilities misuse them, and I +must say they nearly always do. Anyhow, she left it almost finished in +the Grotto of the Calvary at the Capuccini Hotel at Amalfi while she +went for a little ink. She said: ‘Can I have a little ink, please?’ But +you know what Italians are, and meanwhile the Grotto fell roaring on to +the beach, and the saddest thing of all is that she cannot remember +what she has written. The poor thing was very ill after it, and so got +tempted into cigarettes. It is a great secret, but I am glad to say +that she is writing another novel. She told Teresa and Miss Pole the +other day that she had got up all the local colour—this novel is to be +about modern Italy; the other was historical—but that she could not +start till she had an idea. First she tried Perugia for an inspiration, +then she came here—this must on no account get round. And so cheerful +through it all! I cannot help thinking that there is something to +admire in everyone, even if you do not approve of them.” + +Miss Alan was always thus being charitable against her better +judgement. A delicate pathos perfumed her disconnected remarks, giving +them unexpected beauty, just as in the decaying autumn woods there +sometimes rise odours reminiscent of spring. She felt she had made +almost too many allowances, and apologized hurriedly for her +toleration. + +“All the same, she is a little too—I hardly like to say unwomanly, but +she behaved most strangely when the Emersons arrived.” + +Mr. Beebe smiled as Miss Alan plunged into an anecdote which he knew +she would be unable to finish in the presence of a gentleman. + +“I don’t know, Miss Honeychurch, if you have noticed that Miss Pole, +the lady who has so much yellow hair, takes lemonade. That old Mr. +Emerson, who puts things very strangely—” + +Her jaw dropped. She was silent. Mr. Beebe, whose social resources were +endless, went out to order some tea, and she continued to Lucy in a +hasty whisper: + +“Stomach. He warned Miss Pole of her stomach-acidity, he called it—and +he may have meant to be kind. I must say I forgot myself and laughed; +it was so sudden. As Teresa truly said, it was no laughing matter. But +the point is that Miss Lavish was positively _attracted_ by his +mentioning S., and said she liked plain speaking, and meeting different +grades of thought. She thought they were commercial +travellers—‘drummers’ was the word she used—and all through dinner she +tried to prove that England, our great and beloved country, rests on +nothing but commerce. Teresa was very much annoyed, and left the table +before the cheese, saying as she did so: ‘There, Miss Lavish, is one +who can confute you better than I,’ and pointed to that beautiful +picture of Lord Tennyson. Then Miss Lavish said: ‘Tut! The early +Victorians.’ Just imagine! ‘Tut! The early Victorians.’ My sister had +gone, and I felt bound to speak. I said: ‘Miss Lavish, _I_ am an early +Victorian; at least, that is to say, I will hear no breath of censure +against our dear Queen.’ It was horrible speaking. I reminded her how +the Queen had been to Ireland when she did not want to go, and I must +say she was dumbfounded, and made no reply. But, unluckily, Mr. Emerson +overheard this part, and called in his deep voice: ‘Quite so, quite so! +I honour the woman for her Irish visit.’ The woman! I tell things so +badly; but you see what a tangle we were in by this time, all on +account of S. having been mentioned in the first place. But that was +not all. After dinner Miss Lavish actually came up and said: ‘Miss +Alan, I am going into the smoking-room to talk to those two nice men. +Come, too.’ Needless to say, I refused such an unsuitable invitation, +and she had the impertinence to tell me that it would broaden my ideas, +and said that she had four brothers, all University men, except one who +was in the army, who always made a point of talking to commercial +travellers.” + +“Let me finish the story,” said Mr. Beebe, who had returned. + +“Miss Lavish tried Miss Pole, myself, everyone, and finally said: ‘I +shall go alone.’ She went. At the end of five minutes she returned +unobtrusively with a green baize board, and began playing patience.” + +“Whatever happened?” cried Lucy. + +“No one knows. No one will ever know. Miss Lavish will never dare to +tell, and Mr. Emerson does not think it worth telling.” + +“Mr. Beebe—old Mr. Emerson, is he nice or not nice? I do so want to +know.” + +Mr. Beebe laughed and suggested that she should settle the question for +herself. + +“No; but it is so difficult. Sometimes he is so silly, and then I do +not mind him. Miss Alan, what do you think? Is he nice?” + +The little old lady shook her head, and sighed disapprovingly. Mr. +Beebe, whom the conversation amused, stirred her up by saying: + +“I consider that you are bound to class him as nice, Miss Alan, after +that business of the violets.” + +“Violets? Oh, dear! Who told you about the violets? How do things get +round? A pension is a bad place for gossips. No, I cannot forget how +they behaved at Mr. Eager’s lecture at Santa Croce. Oh, poor Miss +Honeychurch! It really was too bad. No, I have quite changed. I do +_not_ like the Emersons. They are _not_ nice.” + +Mr. Beebe smiled nonchalantly. He had made a gentle effort to introduce +the Emersons into Bertolini society, and the effort had failed. He was +almost the only person who remained friendly to them. Miss Lavish, who +represented intellect, was avowedly hostile, and now the Miss Alans, +who stood for good breeding, were following her. Miss Bartlett, +smarting under an obligation, would scarcely be civil. The case of Lucy +was different. She had given him a hazy account of her adventures in +Santa Croce, and he gathered that the two men had made a curious and +possibly concerted attempt to annex her, to show her the world from +their own strange standpoint, to interest her in their private sorrows +and joys. This was impertinent; he did not wish their cause to be +championed by a young girl: he would rather it should fail. After all, +he knew nothing about them, and pension joys, pension sorrows, are +flimsy things; whereas Lucy would be his parishioner. + +Lucy, with one eye upon the weather, finally said that she thought the +Emersons were nice; not that she saw anything of them now. Even their +seats at dinner had been moved. + +“But aren’t they always waylaying you to go out with them, dear?” said +the little lady inquisitively. + +“Only once. Charlotte didn’t like it, and said something—quite +politely, of course.” + +“Most right of her. They don’t understand our ways. They must find +their level.” + +Mr. Beebe rather felt that they had gone under. They had given up their +attempt—if it was one—to conquer society, and now the father was almost +as silent as the son. He wondered whether he would not plan a pleasant +day for these folk before they left—some expedition, perhaps, with Lucy +well chaperoned to be nice to them. It was one of Mr. Beebe’s chief +pleasures to provide people with happy memories. + +Evening approached while they chatted; the air became brighter; the +colours on the trees and hills were purified, and the Arno lost its +muddy solidity and began to twinkle. There were a few streaks of +bluish-green among the clouds, a few patches of watery light upon the +earth, and then the dripping façade of San Miniato shone brilliantly in +the declining sun. + +“Too late to go out,” said Miss Alan in a voice of relief. “All the +galleries are shut.” + +“I think I shall go out,” said Lucy. “I want to go round the town in +the circular tram—on the platform by the driver.” + +Her two companions looked grave. Mr. Beebe, who felt responsible for +her in the absence of Miss Bartlett, ventured to say: + +“I wish we could. Unluckily I have letters. If you do want to go out +alone, won’t you be better on your feet?” + +“Italians, dear, you know,” said Miss Alan. + +“Perhaps I shall meet someone who reads me through and through!” + +But they still looked disapproval, and she so far conceded to Mr. Beebe +as to say that she would only go for a little walk, and keep to the +street frequented by tourists. + +“She oughtn’t really to go at all,” said Mr. Beebe, as they watched her +from the window, “and she knows it. I put it down to too much +Beethoven.” + + + + +Chapter IV +Fourth Chapter + + +Mr. Beebe was right. Lucy never knew her desires so clearly as after +music. She had not really appreciated the clergyman’s wit, nor the +suggestive twitterings of Miss Alan. Conversation was tedious; she +wanted something big, and she believed that it would have come to her +on the wind-swept platform of an electric tram. This she might not +attempt. It was unladylike. Why? Why were most big things unladylike? +Charlotte had once explained to her why. It was not that ladies were +inferior to men; it was that they were different. Their mission was to +inspire others to achievement rather than to achieve themselves. +Indirectly, by means of tact and a spotless name, a lady could +accomplish much. But if she rushed into the fray herself she would be +first censured, then despised, and finally ignored. Poems had been +written to illustrate this point. + +There is much that is immortal in this medieval lady. The dragons have +gone, and so have the knights, but still she lingers in our midst. She +reigned in many an early Victorian castle, and was Queen of much early +Victorian song. It is sweet to protect her in the intervals of +business, sweet to pay her honour when she has cooked our dinner well. +But alas! the creature grows degenerate. In her heart also there are +springing up strange desires. She too is enamoured of heavy winds, and +vast panoramas, and green expanses of the sea. She has marked the +kingdom of this world, how full it is of wealth, and beauty, and war—a +radiant crust, built around the central fires, spinning towards the +receding heavens. Men, declaring that she inspires them to it, move +joyfully over the surface, having the most delightful meetings with +other men, happy, not because they are masculine, but because they are +alive. Before the show breaks up she would like to drop the august +title of the Eternal Woman, and go there as her transitory self. + +Lucy does not stand for the medieval lady, who was rather an ideal to +which she was bidden to lift her eyes when feeling serious. Nor has she +any system of revolt. Here and there a restriction annoyed her +particularly, and she would transgress it, and perhaps be sorry that +she had done so. This afternoon she was peculiarly restive. She would +really like to do something of which her well-wishers disapproved. As +she might not go on the electric tram, she went to Alinari’s shop. + +There she bought a photograph of Botticelli’s “Birth of Venus.” Venus, +being a pity, spoilt the picture, otherwise so charming, and Miss +Bartlett had persuaded her to do without it. (A pity in art of course +signified the nude.) Giorgione’s “Tempesta,” the “Idolino,” some of the +Sistine frescoes and the Apoxyomenos, were added to it. She felt a +little calmer then, and bought Fra Angelico’s “Coronation,” Giotto’s +“Ascension of St. John,” some Della Robbia babies, and some Guido Reni +Madonnas. For her taste was catholic, and she extended uncritical +approval to every well-known name. + +But though she spent nearly seven lire, the gates of liberty seemed +still unopened. She was conscious of her discontent; it was new to her +to be conscious of it. “The world,” she thought, “is certainly full of +beautiful things, if only I could come across them.” It was not +surprising that Mrs. Honeychurch disapproved of music, declaring that +it always left her daughter peevish, unpractical, and touchy. + +“Nothing ever happens to me,” she reflected, as she entered the Piazza +Signoria and looked nonchalantly at its marvels, now fairly familiar to +her. The great square was in shadow; the sunshine had come too late to +strike it. Neptune was already unsubstantial in the twilight, half god, +half ghost, and his fountain plashed dreamily to the men and satyrs who +idled together on its marge. The Loggia showed as the triple entrance +of a cave, wherein many a deity, shadowy, but immortal, looking forth +upon the arrivals and departures of mankind. It was the hour of +unreality—the hour, that is, when unfamiliar things are real. An older +person at such an hour and in such a place might think that sufficient +was happening to him, and rest content. Lucy desired more. + +She fixed her eyes wistfully on the tower of the palace, which rose out +of the lower darkness like a pillar of roughened gold. It seemed no +longer a tower, no longer supported by earth, but some unattainable +treasure throbbing in the tranquil sky. Its brightness mesmerized her, +still dancing before her eyes when she bent them to the ground and +started towards home. + +Then something did happen. + +Two Italians by the Loggia had been bickering about a debt. “Cinque +lire,” they had cried, “cinque lire!” They sparred at each other, and +one of them was hit lightly upon the chest. He frowned; he bent towards +Lucy with a look of interest, as if he had an important message for +her. He opened his lips to deliver it, and a stream of red came out +between them and trickled down his unshaven chin. + +That was all. A crowd rose out of the dusk. It hid this extraordinary +man from her, and bore him away to the fountain. Mr. George Emerson +happened to be a few paces away, looking at her across the spot where +the man had been. How very odd! Across something. Even as she caught +sight of him he grew dim; the palace itself grew dim, swayed above her, +fell on to her softly, slowly, noiselessly, and the sky fell with it. + +She thought: “Oh, what have I done?” + +“Oh, what have I done?” she murmured, and opened her eyes. + +George Emerson still looked at her, but not across anything. She had +complained of dullness, and lo! one man was stabbed, and another held +her in his arms. + +They were sitting on some steps in the Uffizi Arcade. He must have +carried her. He rose when she spoke, and began to dust his knees. She +repeated: + +“Oh, what have I done?” + +“You fainted.” + +“I—I am very sorry.” + +“How are you now?” + +“Perfectly well—absolutely well.” And she began to nod and smile. + +“Then let us come home. There’s no point in our stopping.” + +He held out his hand to pull her up. She pretended not to see it. The +cries from the fountain—they had never ceased—rang emptily. The whole +world seemed pale and void of its original meaning. + +“How very kind you have been! I might have hurt myself falling. But now +I am well. I can go alone, thank you.” + +His hand was still extended. + +“Oh, my photographs!” she exclaimed suddenly. + +“What photographs?” + +“I bought some photographs at Alinari’s. I must have dropped them out +there in the square.” She looked at him cautiously. “Would you add to +your kindness by fetching them?” + +He added to his kindness. As soon as he had turned his back, Lucy arose +with the running of a maniac and stole down the arcade towards the +Arno. + +“Miss Honeychurch!” + +She stopped with her hand on her heart. + +“You sit still; you aren’t fit to go home alone.” + +“Yes, I am, thank you so very much.” + +“No, you aren’t. You’d go openly if you were.” + +“But I had rather—” + +“Then I don’t fetch your photographs.” + +“I had rather be alone.” + +He said imperiously: “The man is dead—the man is probably dead; sit +down till you are rested.” She was bewildered, and obeyed him. “And +don’t move till I come back.” + +In the distance she saw creatures with black hoods, such as appear in +dreams. The palace tower had lost the reflection of the declining day, +and joined itself to earth. How should she talk to Mr. Emerson when he +returned from the shadowy square? Again the thought occurred to her, +“Oh, what have I done?”—the thought that she, as well as the dying man, +had crossed some spiritual boundary. + +He returned, and she talked of the murder. Oddly enough, it was an easy +topic. She spoke of the Italian character; she became almost garrulous +over the incident that had made her faint five minutes before. Being +strong physically, she soon overcame the horror of blood. She rose +without his assistance, and though wings seemed to flutter inside her, +she walked firmly enough towards the Arno. There a cabman signalled to +them; they refused him. + +“And the murderer tried to kiss him, you say—how very odd Italians +are!—and gave himself up to the police! Mr. Beebe was saying that +Italians know everything, but I think they are rather childish. When my +cousin and I were at the Pitti yesterday—What was that?” + +He had thrown something into the stream. + +“What did you throw in?” + +“Things I didn’t want,” he said crossly. + +“Mr. Emerson!” + +“Well?” + +“Where are the photographs?” + +He was silent. + +“I believe it was my photographs that you threw away.” + +“I didn’t know what to do with them,” he cried, and his voice was that +of an anxious boy. Her heart warmed towards him for the first time. +“They were covered with blood. There! I’m glad I’ve told you; and all +the time we were making conversation I was wondering what to do with +them.” He pointed down-stream. “They’ve gone.” The river swirled under +the bridge, “I did mind them so, and one is so foolish, it seemed +better that they should go out to the sea—I don’t know; I may just mean +that they frightened me.” Then the boy verged into a man. “For +something tremendous has happened; I must face it without getting +muddled. It isn’t exactly that a man has died.” + +Something warned Lucy that she must stop him. + +“It has happened,” he repeated, “and I mean to find out what it is.” + +“Mr. Emerson—” + +He turned towards her frowning, as if she had disturbed him in some +abstract quest. + +“I want to ask you something before we go in.” + +They were close to their pension. She stopped and leant her elbows +against the parapet of the embankment. He did likewise. There is at +times a magic in identity of position; it is one of the things that +have suggested to us eternal comradeship. She moved her elbows before +saying: + +“I have behaved ridiculously.” + +He was following his own thoughts. + +“I was never so much ashamed of myself in my life; I cannot think what +came over me.” + +“I nearly fainted myself,” he said; but she felt that her attitude +repelled him. + +“Well, I owe you a thousand apologies.” + +“Oh, all right.” + +“And—this is the real point—you know how silly people are +gossiping—ladies especially, I am afraid—you understand what I mean?” + +“I’m afraid I don’t.” + +“I mean, would you not mention it to any one, my foolish behaviour?” + +“Your behaviour? Oh, yes, all right—all right.” + +“Thank you so much. And would you—” + +She could not carry her request any further. The river was rushing +below them, almost black in the advancing night. He had thrown her +photographs into it, and then he had told her the reason. It struck her +that it was hopeless to look for chivalry in such a man. He would do +her no harm by idle gossip; he was trustworthy, intelligent, and even +kind; he might even have a high opinion of her. But he lacked chivalry; +his thoughts, like his behaviour, would not be modified by awe. It was +useless to say to him, “And would you—” and hope that he would complete +the sentence for himself, averting his eyes from her nakedness like the +knight in that beautiful picture. She had been in his arms, and he +remembered it, just as he remembered the blood on the photographs that +she had bought in Alinari’s shop. It was not exactly that a man had +died; something had happened to the living: they had come to a +situation where character tells, and where childhood enters upon the +branching paths of Youth. + +“Well, thank you so much,” she repeated, “How quickly these accidents +do happen, and then one returns to the old life!” + +“I don’t.” + +Anxiety moved her to question him. + +His answer was puzzling: “I shall probably want to live.” + +“But why, Mr. Emerson? What do you mean?” + +“I shall want to live, I say.” + +Leaning her elbows on the parapet, she contemplated the River Arno, +whose roar was suggesting some unexpected melody to her ears. + + + + +Chapter V +Possibilities of a Pleasant Outing + + +It was a family saying that “you never knew which way Charlotte +Bartlett would turn.” She was perfectly pleasant and sensible over +Lucy’s adventure, found the abridged account of it quite adequate, and +paid suitable tribute to the courtesy of Mr. George Emerson. She and +Miss Lavish had had an adventure also. They had been stopped at the +Dazio coming back, and the young officials there, who seemed impudent +and _désœuvré_, had tried to search their reticules for provisions. It +might have been most unpleasant. Fortunately Miss Lavish was a match +for any one. + +For good or for evil, Lucy was left to face her problem alone. None of +her friends had seen her, either in the Piazza or, later on, by the +embankment. Mr. Beebe, indeed, noticing her startled eyes at +dinner-time, had again passed to himself the remark of “Too much +Beethoven.” But he only supposed that she was ready for an adventure, +not that she had encountered it. This solitude oppressed her; she was +accustomed to have her thoughts confirmed by others or, at all events, +contradicted; it was too dreadful not to know whether she was thinking +right or wrong. + +At breakfast next morning she took decisive action. There were two +plans between which she had to choose. Mr. Beebe was walking up to the +Torre del Gallo with the Emersons and some American ladies. Would Miss +Bartlett and Miss Honeychurch join the party? Charlotte declined for +herself; she had been there in the rain the previous afternoon. But she +thought it an admirable idea for Lucy, who hated shopping, changing +money, fetching letters, and other irksome duties—all of which Miss +Bartlett must accomplish this morning and could easily accomplish +alone. + +“No, Charlotte!” cried the girl, with real warmth. “It’s very kind of +Mr. Beebe, but I am certainly coming with you. I had much rather.” + +“Very well, dear,” said Miss Bartlett, with a faint flush of pleasure +that called forth a deep flush of shame on the cheeks of Lucy. How +abominably she behaved to Charlotte, now as always! But now she should +alter. All morning she would be really nice to her. + +She slipped her arm into her cousin’s, and they started off along the +Lung’ Arno. The river was a lion that morning in strength, voice, and +colour. Miss Bartlett insisted on leaning over the parapet to look at +it. She then made her usual remark, which was “How I do wish Freddy and +your mother could see this, too!” + +Lucy fidgeted; it was tiresome of Charlotte to have stopped exactly +where she did. + +“Look, Lucia! Oh, you are watching for the Torre del Gallo party. I +feared you would repent you of your choice.” + +Serious as the choice had been, Lucy did not repent. Yesterday had been +a muddle—queer and odd, the kind of thing one could not write down +easily on paper—but she had a feeling that Charlotte and her shopping +were preferable to George Emerson and the summit of the Torre del +Gallo. Since she could not unravel the tangle, she must take care not +to re-enter it. She could protest sincerely against Miss Bartlett’s +insinuations. + +But though she had avoided the chief actor, the scenery unfortunately +remained. Charlotte, with the complacency of fate, led her from the +river to the Piazza Signoria. She could not have believed that stones, +a Loggia, a fountain, a palace tower, would have such significance. For +a moment she understood the nature of ghosts. + +The exact site of the murder was occupied, not by a ghost, but by Miss +Lavish, who had the morning newspaper in her hand. She hailed them +briskly. The dreadful catastrophe of the previous day had given her an +idea which she thought would work up into a book. + +“Oh, let me congratulate you!” said Miss Bartlett. “After your despair +of yesterday! What a fortunate thing!” + +“Aha! Miss Honeychurch, come you here I am in luck. Now, you are to +tell me absolutely everything that you saw from the beginning.” Lucy +poked at the ground with her parasol. + +“But perhaps you would rather not?” + +“I’m sorry—if you could manage without it, I think I would rather not.” + +The elder ladies exchanged glances, not of disapproval; it is suitable +that a girl should feel deeply. + +“It is I who am sorry,” said Miss Lavish. “We literary hacks are +shameless creatures. I believe there’s no secret of the human heart +into which we wouldn’t pry.” + +She marched cheerfully to the fountain and back, and did a few +calculations in realism. Then she said that she had been in the Piazza +since eight o’clock collecting material. A good deal of it was +unsuitable, but of course one always had to adapt. The two men had +quarrelled over a five-franc note. For the five-franc note she should +substitute a young lady, which would raise the tone of the tragedy, and +at the same time furnish an excellent plot. + +“What is the heroine’s name?” asked Miss Bartlett. + +“Leonora,” said Miss Lavish; her own name was Eleanor. + +“I do hope she’s nice.” + +That desideratum would not be omitted. + +“And what is the plot?” + +Love, murder, abduction, revenge, was the plot. But it all came while +the fountain plashed to the satyrs in the morning sun. + +“I hope you will excuse me for boring on like this,” Miss Lavish +concluded. “It is so tempting to talk to really sympathetic people. Of +course, this is the barest outline. There will be a deal of local +colouring, descriptions of Florence and the neighbourhood, and I shall +also introduce some humorous characters. And let me give you all fair +warning: I intend to be unmerciful to the British tourist.” + +“Oh, you wicked woman,” cried Miss Bartlett. “I am sure you are +thinking of the Emersons.” + +Miss Lavish gave a Machiavellian smile. + +“I confess that in Italy my sympathies are not with my own countrymen. +It is the neglected Italians who attract me, and whose lives I am going +to paint so far as I can. For I repeat and I insist, and I have always +held most strongly, that a tragedy such as yesterday’s is not the less +tragic because it happened in humble life.” + +There was a fitting silence when Miss Lavish had concluded. Then the +cousins wished success to her labours, and walked slowly away across +the square. + +“She is my idea of a really clever woman,” said Miss Bartlett. “That +last remark struck me as so particularly true. It should be a most +pathetic novel.” + +Lucy assented. At present her great aim was not to get put into it. Her +perceptions this morning were curiously keen, and she believed that +Miss Lavish had her on trial for an _ingenué_. + +“She is emancipated, but only in the very best sense of the word,” +continued Miss Bartlett slowly. “None but the superficial would be +shocked at her. We had a long talk yesterday. She believes in justice +and truth and human interest. She told me also that she has a high +opinion of the destiny of woman—Mr. Eager! Why, how nice! What a +pleasant surprise!” + +“Ah, not for me,” said the chaplain blandly, “for I have been watching +you and Miss Honeychurch for quite a little time.” + +“We were chatting to Miss Lavish.” + +His brow contracted. + +“So I saw. Were you indeed? Andate via! sono occupato!” The last remark +was made to a vender of panoramic photographs who was approaching with +a courteous smile. “I am about to venture a suggestion. Would you and +Miss Honeychurch be disposed to join me in a drive some day this week—a +drive in the hills? We might go up by Fiesole and back by Settignano. +There is a point on that road where we could get down and have an +hour’s ramble on the hillside. The view thence of Florence is most +beautiful—far better than the hackneyed view of Fiesole. It is the view +that Alessio Baldovinetti is fond of introducing into his pictures. +That man had a decided feeling for landscape. Decidedly. But who looks +at it to-day? Ah, the world is too much for us.” + +Miss Bartlett had not heard of Alessio Baldovinetti, but she knew that +Mr. Eager was no commonplace chaplain. He was a member of the +residential colony who had made Florence their home. He knew the people +who never walked about with Baedekers, who had learnt to take a siesta +after lunch, who took drives the pension tourists had never heard of, +and saw by private influence galleries which were closed to them. +Living in delicate seclusion, some in furnished flats, others in +Renaissance villas on Fiesole’s slope, they read, wrote, studied, and +exchanged ideas, thus attaining to that intimate knowledge, or rather +perception, of Florence which is denied to all who carry in their +pockets the coupons of Cook. + +Therefore an invitation from the chaplain was something to be proud of. +Between the two sections of his flock he was often the only link, and +it was his avowed custom to select those of his migratory sheep who +seemed worthy, and give them a few hours in the pastures of the +permanent. Tea at a Renaissance villa? Nothing had been said about it +yet. But if it did come to that—how Lucy would enjoy it! + +A few days ago and Lucy would have felt the same. But the joys of life +were grouping themselves anew. A drive in the hills with Mr. Eager and +Miss Bartlett—even if culminating in a residential tea-party—was no +longer the greatest of them. She echoed the raptures of Charlotte +somewhat faintly. Only when she heard that Mr. Beebe was also coming +did her thanks become more sincere. + +“So we shall be a _partie carrée_,” said the chaplain. “In these days +of toil and tumult one has great needs of the country and its message +of purity. Andate via! andate presto, presto! Ah, the town! Beautiful +as it is, it is the town.” + +They assented. + +“This very square—so I am told—witnessed yesterday the most sordid of +tragedies. To one who loves the Florence of Dante and Savonarola there +is something portentous in such desecration—portentous and +humiliating.” + +“Humiliating indeed,” said Miss Bartlett. “Miss Honeychurch happened to +be passing through as it happened. She can hardly bear to speak of it.” +She glanced at Lucy proudly. + +“And how came we to have you here?” asked the chaplain paternally. + +Miss Bartlett’s recent liberalism oozed away at the question. “Do not +blame her, please, Mr. Eager. The fault is mine: I left her +unchaperoned.” + +“So you were here alone, Miss Honeychurch?” His voice suggested +sympathetic reproof but at the same time indicated that a few harrowing +details would not be unacceptable. His dark, handsome face drooped +mournfully towards her to catch her reply. + +“Practically.” + +“One of our pension acquaintances kindly brought her home,” said Miss +Bartlett, adroitly concealing the sex of the preserver. + +“For her also it must have been a terrible experience. I trust that +neither of you was at all—that it was not in your immediate proximity?” + +Of the many things Lucy was noticing to-day, not the least remarkable +was this: the ghoulish fashion in which respectable people will nibble +after blood. George Emerson had kept the subject strangely pure. + +“He died by the fountain, I believe,” was her reply. + +“And you and your friend—” + +“Were over at the Loggia.” + +“That must have saved you much. You have not, of course, seen the +disgraceful illustrations which the gutter Press—This man is a public +nuisance; he knows that I am a resident perfectly well, and yet he goes +on worrying me to buy his vulgar views.” + +Surely the vendor of photographs was in league with Lucy—in the eternal +league of Italy with youth. He had suddenly extended his book before +Miss Bartlett and Mr. Eager, binding their hands together by a long +glossy ribbon of churches, pictures, and views. + +“This is too much!” cried the chaplain, striking petulantly at one of +Fra Angelico’s angels. She tore. A shrill cry rose from the vendor. The +book it seemed, was more valuable than one would have supposed. + +“Willingly would I purchase—” began Miss Bartlett. + +“Ignore him,” said Mr. Eager sharply, and they all walked rapidly away +from the square. + +But an Italian can never be ignored, least of all when he has a +grievance. His mysterious persecution of Mr. Eager became relentless; +the air rang with his threats and lamentations. He appealed to Lucy; +would not she intercede? He was poor—he sheltered a family—the tax on +bread. He waited, he gibbered, he was recompensed, he was dissatisfied, +he did not leave them until he had swept their minds clean of all +thoughts whether pleasant or unpleasant. + +Shopping was the topic that now ensued. Under the chaplain’s guidance +they selected many hideous presents and mementoes—florid little +picture-frames that seemed fashioned in gilded pastry; other little +frames, more severe, that stood on little easels, and were carven out +of oak; a blotting book of vellum; a Dante of the same material; cheap +mosaic brooches, which the maids, next Christmas, would never tell from +real; pins, pots, heraldic saucers, brown art-photographs; Eros and +Psyche in alabaster; St. Peter to match—all of which would have cost +less in London. + +This successful morning left no pleasant impressions on Lucy. She had +been a little frightened, both by Miss Lavish and by Mr. Eager, she +knew not why. And as they frightened her, she had, strangely enough, +ceased to respect them. She doubted that Miss Lavish was a great +artist. She doubted that Mr. Eager was as full of spirituality and +culture as she had been led to suppose. They were tried by some new +test, and they were found wanting. As for Charlotte—as for Charlotte +she was exactly the same. It might be possible to be nice to her; it +was impossible to love her. + +“The son of a labourer; I happen to know it for a fact. A mechanic of +some sort himself when he was young; then he took to writing for the +Socialistic Press. I came across him at Brixton.” + +They were talking about the Emersons. + +“How wonderfully people rise in these days!” sighed Miss Bartlett, +fingering a model of the leaning Tower of Pisa. + +“Generally,” replied Mr. Eager, “one has only sympathy for their +success. The desire for education and for social advance—in these +things there is something not wholly vile. There are some working men +whom one would be very willing to see out here in Florence—little as +they would make of it.” + +“Is he a journalist now?” Miss Bartlett asked. + +“He is not; he made an advantageous marriage.” + +He uttered this remark with a voice full of meaning, and ended with a +sigh. + +“Oh, so he has a wife.” + +“Dead, Miss Bartlett, dead. I wonder—yes I wonder how he has the +effrontery to look me in the face, to dare to claim acquaintance with +me. He was in my London parish long ago. The other day in Santa Croce, +when he was with Miss Honeychurch, I snubbed him. Let him beware that +he does not get more than a snub.” + +“What?” cried Lucy, flushing. + +“Exposure!” hissed Mr. Eager. + +He tried to change the subject; but in scoring a dramatic point he had +interested his audience more than he had intended. Miss Bartlett was +full of very natural curiosity. Lucy, though she wished never to see +the Emersons again, was not disposed to condemn them on a single word. + +“Do you mean,” she asked, “that he is an irreligious man? We know that +already.” + +“Lucy, dear—” said Miss Bartlett, gently reproving her cousin’s +penetration. + +“I should be astonished if you knew all. The boy—an innocent child at +the time—I will exclude. God knows what his education and his inherited +qualities may have made him.” + +“Perhaps,” said Miss Bartlett, “it is something that we had better not +hear.” + +“To speak plainly,” said Mr. Eager, “it is. I will say no more.” For +the first time Lucy’s rebellious thoughts swept out in words—for the +first time in her life. + +“You have said very little.” + +“It was my intention to say very little,” was his frigid reply. + +He gazed indignantly at the girl, who met him with equal indignation. +She turned towards him from the shop counter; her breast heaved +quickly. He observed her brow, and the sudden strength of her lips. It +was intolerable that she should disbelieve him. + +“Murder, if you want to know,” he cried angrily. “That man murdered his +wife!” + +“How?” she retorted. + +“To all intents and purposes he murdered her. That day in Santa +Croce—did they say anything against me?” + +“Not a word, Mr. Eager—not a single word.” + +“Oh, I thought they had been libelling me to you. But I suppose it is +only their personal charms that makes you defend them.” + +“I’m not defending them,” said Lucy, losing her courage, and relapsing +into the old chaotic methods. “They’re nothing to me.” + +“How could you think she was defending them?” said Miss Bartlett, much +discomfited by the unpleasant scene. The shopman was possibly +listening. + +“She will find it difficult. For that man has murdered his wife in the +sight of God.” + +The addition of God was striking. But the chaplain was really trying to +qualify a rash remark. A silence followed which might have been +impressive, but was merely awkward. Then Miss Bartlett hastily +purchased the Leaning Tower, and led the way into the street. + +“I must be going,” said he, shutting his eyes and taking out his watch. + +Miss Bartlett thanked him for his kindness, and spoke with enthusiasm +of the approaching drive. + +“Drive? Oh, is our drive to come off?” + +Lucy was recalled to her manners, and after a little exertion the +complacency of Mr. Eager was restored. + +“Bother the drive!” exclaimed the girl, as soon as he had departed. “It +is just the drive we had arranged with Mr. Beebe without any fuss at +all. Why should he invite us in that absurd manner? We might as well +invite him. We are each paying for ourselves.” + +Miss Bartlett, who had intended to lament over the Emersons, was +launched by this remark into unexpected thoughts. + +“If that is so, dear—if the drive we and Mr. Beebe are going with Mr. +Eager is really the same as the one we are going with Mr. Beebe, then I +foresee a sad kettle of fish.” + +“How?” + +“Because Mr. Beebe has asked Eleanor Lavish to come, too.” + +“That will mean another carriage.” + +“Far worse. Mr. Eager does not like Eleanor. She knows it herself. The +truth must be told; she is too unconventional for him.” + +They were now in the newspaper-room at the English bank. Lucy stood by +the central table, heedless of Punch and the Graphic, trying to answer, +or at all events to formulate the questions rioting in her brain. The +well-known world had broken up, and there emerged Florence, a magic +city where people thought and did the most extraordinary things. +Murder, accusations of murder, a lady clinging to one man and being +rude to another—were these the daily incidents of her streets? Was +there more in her frank beauty than met the eye—the power, perhaps, to +evoke passions, good and bad, and to bring them speedily to a +fulfillment? + +Happy Charlotte, who, though greatly troubled over things that did not +matter, seemed oblivious to things that did; who could conjecture with +admirable delicacy “where things might lead to,” but apparently lost +sight of the goal as she approached it. Now she was crouching in the +corner trying to extract a circular note from a kind of linen nose-bag +which hung in chaste concealment round her neck. She had been told that +this was the only safe way to carry money in Italy; it must only be +broached within the walls of the English bank. As she groped she +murmured: “Whether it is Mr. Beebe who forgot to tell Mr. Eager, or Mr. +Eager who forgot when he told us, or whether they have decided to leave +Eleanor out altogether—which they could scarcely do—but in any case we +must be prepared. It is you they really want; I am only asked for +appearances. You shall go with the two gentlemen, and I and Eleanor +will follow behind. A one-horse carriage would do for us. Yet how +difficult it is!” + +“It is indeed,” replied the girl, with a gravity that sounded +sympathetic. + +“What do you think about it?” asked Miss Bartlett, flushed from the +struggle, and buttoning up her dress. + +“I don’t know what I think, nor what I want.” + +“Oh, dear, Lucy! I do hope Florence isn’t boring you. Speak the word, +and, as you know, I would take you to the ends of the earth to-morrow.” + +“Thank you, Charlotte,” said Lucy, and pondered over the offer. + +There were letters for her at the bureau—one from her brother, full of +athletics and biology; one from her mother, delightful as only her +mother’s letters could be. She had read in it of the crocuses which had +been bought for yellow and were coming up puce, of the new +parlour-maid, who had watered the ferns with essence of lemonade, of +the semi-detached cottages which were ruining Summer Street, and +breaking the heart of Sir Harry Otway. She recalled the free, pleasant +life of her home, where she was allowed to do everything, and where +nothing ever happened to her. The road up through the pine-woods, the +clean drawing-room, the view over the Sussex Weald—all hung before her +bright and distinct, but pathetic as the pictures in a gallery to +which, after much experience, a traveller returns. + +“And the news?” asked Miss Bartlett. + +“Mrs. Vyse and her son have gone to Rome,” said Lucy, giving the news +that interested her least. “Do you know the Vyses?” + +“Oh, not that way back. We can never have too much of the dear Piazza +Signoria.” + +“They’re nice people, the Vyses. So clever—my idea of what’s really +clever. Don’t you long to be in Rome?” + +“I die for it!” + +The Piazza Signoria is too stony to be brilliant. It has no grass, no +flowers, no frescoes, no glittering walls of marble or comforting +patches of ruddy brick. By an odd chance—unless we believe in a +presiding genius of places—the statues that relieve its severity +suggest, not the innocence of childhood, nor the glorious bewilderment +of youth, but the conscious achievements of maturity. Perseus and +Judith, Hercules and Thusnelda, they have done or suffered something, +and though they are immortal, immortality has come to them after +experience, not before. Here, not only in the solitude of Nature, might +a hero meet a goddess, or a heroine a god. + +“Charlotte!” cried the girl suddenly. “Here’s an idea. What if we +popped off to Rome to-morrow—straight to the Vyses’ hotel? For I do +know what I want. I’m sick of Florence. No, you said you’d go to the +ends of the earth! Do! Do!” + +Miss Bartlett, with equal vivacity, replied: + +“Oh, you droll person! Pray, what would become of your drive in the +hills?” + +They passed together through the gaunt beauty of the square, laughing +over the unpractical suggestion. + + + + +Chapter VI +The Reverend Arthur Beebe, the Reverend Cuthbert Eager, Mr. Emerson, +Mr. George Emerson, Miss Eleanor Lavish, Miss Charlotte Bartlett, and +Miss Lucy Honeychurch Drive Out in Carriages to See a View; Italians +Drive Them. + + +It was Phaethon who drove them to Fiesole that memorable day, a youth +all irresponsibility and fire, recklessly urging his master’s horses up +the stony hill. Mr. Beebe recognized him at once. Neither the Ages of +Faith nor the Age of Doubt had touched him; he was Phaethon in Tuscany +driving a cab. And it was Persephone whom he asked leave to pick up on +the way, saying that she was his sister—Persephone, tall and slender +and pale, returning with the Spring to her mother’s cottage, and still +shading her eyes from the unaccustomed light. To her Mr. Eager +objected, saying that here was the thin edge of the wedge, and one must +guard against imposition. But the ladies interceded, and when it had +been made clear that it was a very great favour, the goddess was +allowed to mount beside the god. + +Phaethon at once slipped the left rein over her head, thus enabling +himself to drive with his arm round her waist. She did not mind. Mr. +Eager, who sat with his back to the horses, saw nothing of the +indecorous proceeding, and continued his conversation with Lucy. The +other two occupants of the carriage were old Mr. Emerson and Miss +Lavish. For a dreadful thing had happened: Mr. Beebe, without +consulting Mr. Eager, had doubled the size of the party. And though +Miss Bartlett and Miss Lavish had planned all the morning how the +people were to sit, at the critical moment when the carriages came +round they lost their heads, and Miss Lavish got in with Lucy, while +Miss Bartlett, with George Emerson and Mr. Beebe, followed on behind. + +It was hard on the poor chaplain to have his _partie carrée_ thus +transformed. Tea at a Renaissance villa, if he had ever meditated it, +was now impossible. Lucy and Miss Bartlett had a certain style about +them, and Mr. Beebe, though unreliable, was a man of parts. But a +shoddy lady writer and a journalist who had murdered his wife in the +sight of God—they should enter no villa at his introduction. + +Lucy, elegantly dressed in white, sat erect and nervous amid these +explosive ingredients, attentive to Mr. Eager, repressive towards Miss +Lavish, watchful of old Mr. Emerson, hitherto fortunately asleep, +thanks to a heavy lunch and the drowsy atmosphere of Spring. She looked +on the expedition as the work of Fate. But for it she would have +avoided George Emerson successfully. In an open manner he had shown +that he wished to continue their intimacy. She had refused, not because +she disliked him, but because she did not know what had happened, and +suspected that he did know. And this frightened her. + +For the real event—whatever it was—had taken place, not in the Loggia, +but by the river. To behave wildly at the sight of death is pardonable. +But to discuss it afterwards, to pass from discussion into silence, and +through silence into sympathy, that is an error, not of a startled +emotion, but of the whole fabric. There was really something +blameworthy (she thought) in their joint contemplation of the shadowy +stream, in the common impulse which had turned them to the house +without the passing of a look or word. This sense of wickedness had +been slight at first. She had nearly joined the party to the Torre del +Gallo. But each time that she avoided George it became more imperative +that she should avoid him again. And now celestial irony, working +through her cousin and two clergymen, did not suffer her to leave +Florence till she had made this expedition with him through the hills. + +Meanwhile Mr. Eager held her in civil converse; their little tiff was +over. + +“So, Miss Honeychurch, you are travelling? As a student of art?” + +“Oh, dear me, no—oh, no!” + +“Perhaps as a student of human nature,” interposed Miss Lavish, “like +myself?” + +“Oh, no. I am here as a tourist.” + +“Oh, indeed,” said Mr. Eager. “Are you indeed? If you will not think me +rude, we residents sometimes pity you poor tourists not a little—handed +about like a parcel of goods from Venice to Florence, from Florence to +Rome, living herded together in pensions or hotels, quite unconscious +of anything that is outside Baedeker, their one anxiety to get ‘done’ +or ‘through’ and go on somewhere else. The result is, they mix up +towns, rivers, palaces in one inextricable whirl. You know the American +girl in Punch who says: ‘Say, poppa, what did we see at Rome?’ And the +father replies: ‘Why, guess Rome was the place where we saw the yaller +dog.’ There’s travelling for you. Ha! ha! ha!” + +“I quite agree,” said Miss Lavish, who had several times tried to +interrupt his mordant wit. “The narrowness and superficiality of the +Anglo-Saxon tourist is nothing less than a menace.” + +“Quite so. Now, the English colony at Florence, Miss Honeychurch—and it +is of considerable size, though, of course, not all equally—a few are +here for trade, for example. But the greater part are students. Lady +Helen Laverstock is at present busy over Fra Angelico. I mention her +name because we are passing her villa on the left. No, you can only see +it if you stand—no, do not stand; you will fall. She is very proud of +that thick hedge. Inside, perfect seclusion. One might have gone back +six hundred years. Some critics believe that her garden was the scene +of The Decameron, which lends it an additional interest, does it not?” + +“It does indeed!” cried Miss Lavish. “Tell me, where do they place the +scene of that wonderful seventh day?” + +But Mr. Eager proceeded to tell Miss Honeychurch that on the right +lived Mr. Someone Something, an American of the best type—so rare!—and +that the Somebody Elses were farther down the hill. “Doubtless you know +her monographs in the series of ‘Mediæval Byways’? He is working at +Gemistus Pletho. Sometimes as I take tea in their beautiful grounds I +hear, over the wall, the electric tram squealing up the new road with +its loads of hot, dusty, unintelligent tourists who are going to ‘do’ +Fiesole in an hour in order that they may say they have been there, and +I think—think—I think how little they think what lies so near them.” + +During this speech the two figures on the box were sporting with each +other disgracefully. Lucy had a spasm of envy. Granted that they wished +to misbehave, it was pleasant for them to be able to do so. They were +probably the only people enjoying the expedition. The carriage swept +with agonizing jolts up through the Piazza of Fiesole and into the +Settignano road. + +“Piano! piano!” said Mr. Eager, elegantly waving his hand over his +head. + +“Va bene, signore, va bene, va bene,” crooned the driver, and whipped +his horses up again. + +Now Mr. Eager and Miss Lavish began to talk against each other on the +subject of Alessio Baldovinetti. Was he a cause of the Renaissance, or +was he one of its manifestations? The other carriage was left behind. +As the pace increased to a gallop the large, slumbering form of Mr. +Emerson was thrown against the chaplain with the regularity of a +machine. + +“Piano! piano!” said he, with a martyred look at Lucy. + +An extra lurch made him turn angrily in his seat. Phaethon, who for +some time had been endeavouring to kiss Persephone, had just succeeded. + +A little scene ensued, which, as Miss Bartlett said afterwards, was +most unpleasant. The horses were stopped, the lovers were ordered to +disentangle themselves, the boy was to lose his _pourboire_, the girl +was immediately to get down. + +“She is my sister,” said he, turning round on them with piteous eyes. + +Mr. Eager took the trouble to tell him that he was a liar. + +Phaethon hung down his head, not at the matter of the accusation, but +at its manner. At this point Mr. Emerson, whom the shock of stopping +had awoke, declared that the lovers must on no account be separated, +and patted them on the back to signify his approval. And Miss Lavish, +though unwilling to ally him, felt bound to support the cause of +Bohemianism. + +“Most certainly I would let them be,” she cried. “But I dare say I +shall receive scant support. I have always flown in the face of the +conventions all my life. This is what _I_ call an adventure.” + +“We must not submit,” said Mr. Eager. “I knew he was trying it on. He +is treating us as if we were a party of Cook’s tourists.” + +“Surely no!” said Miss Lavish, her ardour visibly decreasing. + +The other carriage had drawn up behind, and sensible Mr. Beebe called +out that after this warning the couple would be sure to behave +themselves properly. + +“Leave them alone,” Mr. Emerson begged the chaplain, of whom he stood +in no awe. “Do we find happiness so often that we should turn it off +the box when it happens to sit there? To be driven by lovers—A king +might envy us, and if we part them it’s more like sacrilege than +anything I know.” + +Here the voice of Miss Bartlett was heard saying that a crowd had begun +to collect. + +Mr. Eager, who suffered from an over-fluent tongue rather than a +resolute will, was determined to make himself heard. He addressed the +driver again. Italian in the mouth of Italians is a deep-voiced stream, +with unexpected cataracts and boulders to preserve it from monotony. In +Mr. Eager’s mouth it resembled nothing so much as an acid whistling +fountain which played ever higher and higher, and quicker and quicker, +and more and more shrilly, till abruptly it was turned off with a +click. + +“Signorina!” said the man to Lucy, when the display had ceased. Why +should he appeal to Lucy? + +“Signorina!” echoed Persephone in her glorious contralto. She pointed +at the other carriage. Why? + +For a moment the two girls looked at each other. Then Persephone got +down from the box. + +“Victory at last!” said Mr. Eager, smiting his hands together as the +carriages started again. + +“It is not victory,” said Mr. Emerson. “It is defeat. You have parted +two people who were happy.” + +Mr. Eager shut his eyes. He was obliged to sit next to Mr. Emerson, but +he would not speak to him. The old man was refreshed by sleep, and took +up the matter warmly. He commanded Lucy to agree with him; he shouted +for support to his son. + +“We have tried to buy what cannot be bought with money. He has +bargained to drive us, and he is doing it. We have no rights over his +soul.” + +Miss Lavish frowned. It is hard when a person you have classed as +typically British speaks out of his character. + +“He was not driving us well,” she said. “He jolted us.” + +“That I deny. It was as restful as sleeping. Aha! he is jolting us now. +Can you wonder? He would like to throw us out, and most certainly he is +justified. And if I were superstitious I’d be frightened of the girl, +too. It doesn’t do to injure young people. Have you ever heard of +Lorenzo de Medici?” + +Miss Lavish bristled. + +“Most certainly I have. Do you refer to Lorenzo il Magnifico, or to +Lorenzo, Duke of Urbino, or to Lorenzo surnamed Lorenzino on account of +his diminutive stature?” + +“The Lord knows. Possibly he does know, for I refer to Lorenzo the +poet. He wrote a line—so I heard yesterday—which runs like this: ‘Don’t +go fighting against the Spring.’” + +Mr. Eager could not resist the opportunity for erudition. + +“Non fate guerra al Maggio,” he murmured. “‘War not with the May’ would +render a correct meaning.” + +“The point is, we have warred with it. Look.” He pointed to the Val +d’Arno, which was visible far below them, through the budding trees. +“Fifty miles of Spring, and we’ve come up to admire them. Do you +suppose there’s any difference between Spring in nature and Spring in +man? But there we go, praising the one and condemning the other as +improper, ashamed that the same laws work eternally through both.” + +No one encouraged him to talk. Presently Mr. Eager gave a signal for +the carriages to stop and marshalled the party for their ramble on the +hill. A hollow like a great amphitheatre, full of terraced steps and +misty olives, now lay between them and the heights of Fiesole, and the +road, still following its curve, was about to sweep on to a promontory +which stood out in the plain. It was this promontory, uncultivated, +wet, covered with bushes and occasional trees, which had caught the +fancy of Alessio Baldovinetti nearly five hundred years before. He had +ascended it, that diligent and rather obscure master, possibly with an +eye to business, possibly for the joy of ascending. Standing there, he +had seen that view of the Val d’Arno and distant Florence, which he +afterwards had introduced not very effectively into his work. But where +exactly had he stood? That was the question which Mr. Eager hoped to +solve now. And Miss Lavish, whose nature was attracted by anything +problematical, had become equally enthusiastic. + +But it is not easy to carry the pictures of Alessio Baldovinetti in +your head, even if you have remembered to look at them before starting. +And the haze in the valley increased the difficulty of the quest. + +The party sprang about from tuft to tuft of grass, their anxiety to +keep together being only equalled by their desire to go different +directions. Finally they split into groups. Lucy clung to Miss Bartlett +and Miss Lavish; the Emersons returned to hold laborious converse with +the drivers; while the two clergymen, who were expected to have topics +in common, were left to each other. + +The two elder ladies soon threw off the mask. In the audible whisper +that was now so familiar to Lucy they began to discuss, not Alessio +Baldovinetti, but the drive. Miss Bartlett had asked Mr. George Emerson +what his profession was, and he had answered “the railway.” She was +very sorry that she had asked him. She had no idea that it would be +such a dreadful answer, or she would not have asked him. Mr. Beebe had +turned the conversation so cleverly, and she hoped that the young man +was not very much hurt at her asking him. + +“The railway!” gasped Miss Lavish. “Oh, but I shall die! Of course it +was the railway!” She could not control her mirth. “He is the image of +a porter—on, on the South-Eastern.” + +“Eleanor, be quiet,” plucking at her vivacious companion. “Hush! +They’ll hear—the Emersons—” + +“I can’t stop. Let me go my wicked way. A porter—” + +“Eleanor!” + +“I’m sure it’s all right,” put in Lucy. “The Emersons won’t hear, and +they wouldn’t mind if they did.” + +Miss Lavish did not seem pleased at this. + +“Miss Honeychurch listening!” she said rather crossly. “Pouf! Wouf! You +naughty girl! Go away!” + +“Oh, Lucy, you ought to be with Mr. Eager, I’m sure.” + +“I can’t find them now, and I don’t want to either.” + +“Mr. Eager will be offended. It is your party.” + +“Please, I’d rather stop here with you.” + +“No, I agree,” said Miss Lavish. “It’s like a school feast; the boys +have got separated from the girls. Miss Lucy, you are to go. We wish to +converse on high topics unsuited for your ear.” + +The girl was stubborn. As her time at Florence drew to its close she +was only at ease amongst those to whom she felt indifferent. Such a one +was Miss Lavish, and such for the moment was Charlotte. She wished she +had not called attention to herself; they were both annoyed at her +remark and seemed determined to get rid of her. + +“How tired one gets,” said Miss Bartlett. “Oh, I do wish Freddy and +your mother could be here.” + +Unselfishness with Miss Bartlett had entirely usurped the functions of +enthusiasm. Lucy did not look at the view either. She would not enjoy +anything till she was safe at Rome. + +“Then sit you down,” said Miss Lavish. “Observe my foresight.” + +With many a smile she produced two of those mackintosh squares that +protect the frame of the tourist from damp grass or cold marble steps. +She sat on one; who was to sit on the other? + +“Lucy; without a moment’s doubt, Lucy. The ground will do for me. +Really I have not had rheumatism for years. If I do feel it coming on I +shall stand. Imagine your mother’s feelings if I let you sit in the wet +in your white linen.” She sat down heavily where the ground looked +particularly moist. “Here we are, all settled delightfully. Even if my +dress is thinner it will not show so much, being brown. Sit down, dear; +you are too unselfish; you don’t assert yourself enough.” She cleared +her throat. “Now don’t be alarmed; this isn’t a cold. It’s the tiniest +cough, and I have had it three days. It’s nothing to do with sitting +here at all.” + +There was only one way of treating the situation. At the end of five +minutes Lucy departed in search of Mr. Beebe and Mr. Eager, vanquished +by the mackintosh square. + +She addressed herself to the drivers, who were sprawling in the +carriages, perfuming the cushions with cigars. The miscreant, a bony +young man scorched black by the sun, rose to greet her with the +courtesy of a host and the assurance of a relative. + +“Dove?” said Lucy, after much anxious thought. + +His face lit up. Of course he knew where. Not so far either. His arm +swept three-fourths of the horizon. He should just think he did know +where. He pressed his finger-tips to his forehead and then pushed them +towards her, as if oozing with visible extract of knowledge. + +More seemed necessary. What was the Italian for “clergyman”? + +“Dove buoni uomini?” said she at last. + +Good? Scarcely the adjective for those noble beings! He showed her his +cigar. + +“Uno—piu—piccolo,” was her next remark, implying “Has the cigar been +given to you by Mr. Beebe, the smaller of the two good men?” + +She was correct as usual. He tied the horse to a tree, kicked it to +make it stay quiet, dusted the carriage, arranged his hair, remoulded +his hat, encouraged his moustache, and in rather less than a quarter of +a minute was ready to conduct her. Italians are born knowing the way. +It would seem that the whole earth lay before them, not as a map, but +as a chess-board, whereon they continually behold the changing pieces +as well as the squares. Any one can find places, but the finding of +people is a gift from God. + +He only stopped once, to pick her some great blue violets. She thanked +him with real pleasure. In the company of this common man the world was +beautiful and direct. For the first time she felt the influence of +Spring. His arm swept the horizon gracefully; violets, like other +things, existed in great profusion there; “would she like to see them?” + +“Ma buoni uomini.” + +He bowed. Certainly. Good men first, violets afterwards. They proceeded +briskly through the undergrowth, which became thicker and thicker. They +were nearing the edge of the promontory, and the view was stealing +round them, but the brown network of the bushes shattered it into +countless pieces. He was occupied in his cigar, and in holding back the +pliant boughs. She was rejoicing in her escape from dullness. Not a +step, not a twig, was unimportant to her. + +“What is that?” + +There was a voice in the wood, in the distance behind them. The voice +of Mr. Eager? He shrugged his shoulders. An Italian’s ignorance is +sometimes more remarkable than his knowledge. She could not make him +understand that perhaps they had missed the clergymen. The view was +forming at last; she could discern the river, the golden plain, other +hills. + +“Eccolo!” he exclaimed. + +At the same moment the ground gave way, and with a cry she fell out of +the wood. Light and beauty enveloped her. She had fallen on to a little +open terrace, which was covered with violets from end to end. + +“Courage!” cried her companion, now standing some six feet above. +“Courage and love.” + +She did not answer. From her feet the ground sloped sharply into view, +and violets ran down in rivulets and streams and cataracts, irrigating +the hillside with blue, eddying round the tree stems collecting into +pools in the hollows, covering the grass with spots of azure foam. But +never again were they in such profusion; this terrace was the +well-head, the primal source whence beauty gushed out to water the +earth. + +Standing at its brink, like a swimmer who prepares, was the good man. +But he was not the good man that she had expected, and he was alone. + +George had turned at the sound of her arrival. For a moment he +contemplated her, as one who had fallen out of heaven. He saw radiant +joy in her face, he saw the flowers beat against her dress in blue +waves. The bushes above them closed. He stepped quickly forward and +kissed her. + +Before she could speak, almost before she could feel, a voice called, +“Lucy! Lucy! Lucy!” The silence of life had been broken by Miss +Bartlett who stood brown against the view. + + + + +Chapter VII +They Return + + +Some complicated game had been playing up and down the hillside all the +afternoon. What it was and exactly how the players had sided, Lucy was +slow to discover. Mr. Eager had met them with a questioning eye. +Charlotte had repulsed him with much small talk. Mr. Emerson, seeking +his son, was told whereabouts to find him. Mr. Beebe, who wore the +heated aspect of a neutral, was bidden to collect the factions for the +return home. There was a general sense of groping and bewilderment. Pan +had been amongst them—not the great god Pan, who has been buried these +two thousand years, but the little god Pan, who presides over social +contretemps and unsuccessful picnics. Mr. Beebe had lost everyone, and +had consumed in solitude the tea-basket which he had brought up as a +pleasant surprise. Miss Lavish had lost Miss Bartlett. Lucy had lost +Mr. Eager. Mr. Emerson had lost George. Miss Bartlett had lost a +mackintosh square. Phaethon had lost the game. + +That last fact was undeniable. He climbed on to the box shivering, with +his collar up, prophesying the swift approach of bad weather. “Let us +go immediately,” he told them. “The signorino will walk.” + +“All the way? He will be hours,” said Mr. Beebe. + +“Apparently. I told him it was unwise.” He would look no one in the +face; perhaps defeat was particularly mortifying for him. He alone had +played skilfully, using the whole of his instinct, while the others had +used scraps of their intelligence. He alone had divined what things +were, and what he wished them to be. He alone had interpreted the +message that Lucy had received five days before from the lips of a +dying man. Persephone, who spends half her life in the grave—she could +interpret it also. Not so these English. They gain knowledge slowly, +and perhaps too late. + +The thoughts of a cab-driver, however just, seldom affect the lives of +his employers. He was the most competent of Miss Bartlett’s opponents, +but infinitely the least dangerous. Once back in the town, he and his +insight and his knowledge would trouble English ladies no more. Of +course, it was most unpleasant; she had seen his black head in the +bushes; he might make a tavern story out of it. But after all, what +have we to do with taverns? Real menace belongs to the drawing-room. It +was of drawing-room people that Miss Bartlett thought as she journeyed +downwards towards the fading sun. Lucy sat beside her; Mr. Eager sat +opposite, trying to catch her eye; he was vaguely suspicious. They +spoke of Alessio Baldovinetti. + +Rain and darkness came on together. The two ladies huddled together +under an inadequate parasol. There was a lightning flash, and Miss +Lavish who was nervous, screamed from the carriage in front. At the +next flash, Lucy screamed also. Mr. Eager addressed her professionally: + +“Courage, Miss Honeychurch, courage and faith. If I might say so, there +is something almost blasphemous in this horror of the elements. Are we +seriously to suppose that all these clouds, all this immense electrical +display, is simply called into existence to extinguish you or me?” + +“No—of course—” + +“Even from the scientific standpoint the chances against our being +struck are enormous. The steel knives, the only articles which might +attract the current, are in the other carriage. And, in any case, we +are infinitely safer than if we were walking. Courage—courage and +faith.” + +Under the rug, Lucy felt the kindly pressure of her cousin’s hand. At +times our need for a sympathetic gesture is so great that we care not +what exactly it signifies or how much we may have to pay for it +afterwards. Miss Bartlett, by this timely exercise of her muscles, +gained more than she would have got in hours of preaching or cross +examination. + +She renewed it when the two carriages stopped, half into Florence. + +“Mr. Eager!” called Mr. Beebe. “We want your assistance. Will you +interpret for us?” + +“George!” cried Mr. Emerson. “Ask your driver which way George went. +The boy may lose his way. He may be killed.” + +“Go, Mr. Eager,” said Miss Bartlett, “don’t ask our driver; our driver +is no help. Go and support poor Mr. Beebe—, he is nearly demented.” + +“He may be killed!” cried the old man. “He may be killed!” + +“Typical behaviour,” said the chaplain, as he quitted the carriage. “In +the presence of reality that kind of person invariably breaks down.” + +“What does he know?” whispered Lucy as soon as they were alone. +“Charlotte, how much does Mr. Eager know?” + +“Nothing, dearest; he knows nothing. But—” she pointed at the +driver—“_he_ knows everything. Dearest, had we better? Shall I?” She +took out her purse. “It is dreadful to be entangled with low-class +people. He saw it all.” Tapping Phaethon’s back with her guide-book, +she said, “Silenzio!” and offered him a franc. + +“Va bene,” he replied, and accepted it. As well this ending to his day +as any. But Lucy, a mortal maid, was disappointed in him. + +There was an explosion up the road. The storm had struck the overhead +wire of the tramline, and one of the great supports had fallen. If they +had not stopped perhaps they might have been hurt. They chose to regard +it as a miraculous preservation, and the floods of love and sincerity, +which fructify every hour of life, burst forth in tumult. They +descended from the carriages; they embraced each other. It was as +joyful to be forgiven past unworthinesses as to forgive them. For a +moment they realized vast possibilities of good. + +The older people recovered quickly. In the very height of their emotion +they knew it to be unmanly or unladylike. Miss Lavish calculated that, +even if they had continued, they would not have been caught in the +accident. Mr. Eager mumbled a temperate prayer. But the drivers, +through miles of dark squalid road, poured out their souls to the +dryads and the saints, and Lucy poured out hers to her cousin. + +“Charlotte, dear Charlotte, kiss me. Kiss me again. Only you can +understand me. You warned me to be careful. And I—I thought I was +developing.” + +“Do not cry, dearest. Take your time.” + +“I have been obstinate and silly—worse than you know, far worse. Once +by the river—Oh, but he isn’t killed—he wouldn’t be killed, would he?” + +The thought disturbed her repentance. As a matter of fact, the storm +was worst along the road; but she had been near danger, and so she +thought it must be near to everyone. + +“I trust not. One would always pray against that.” + +“He is really—I think he was taken by surprise, just as I was before. +But this time I’m not to blame; I want you to believe that. I simply +slipped into those violets. No, I want to be really truthful. I am a +little to blame. I had silly thoughts. The sky, you know, was gold, and +the ground all blue, and for a moment he looked like someone in a +book.” + +“In a book?” + +“Heroes—gods—the nonsense of schoolgirls.” + +“And then?” + +“But, Charlotte, you know what happened then.” + +Miss Bartlett was silent. Indeed, she had little more to learn. With a +certain amount of insight she drew her young cousin affectionately to +her. All the way back Lucy’s body was shaken by deep sighs, which +nothing could repress. + +“I want to be truthful,” she whispered. “It is so hard to be absolutely +truthful.” + +“Don’t be troubled, dearest. Wait till you are calmer. We will talk it +over before bed-time in my room.” + +So they re-entered the city with hands clasped. It was a shock to the +girl to find how far emotion had ebbed in others. The storm had ceased, +and Mr. Emerson was easier about his son. Mr. Beebe had regained good +humour, and Mr. Eager was already snubbing Miss Lavish. Charlotte alone +she was sure of—Charlotte, whose exterior concealed so much insight and +love. + +The luxury of self-exposure kept her almost happy through the long +evening. She thought not so much of what had happened as of how she +should describe it. All her sensations, her spasms of courage, her +moments of unreasonable joy, her mysterious discontent, should be +carefully laid before her cousin. And together in divine confidence +they would disentangle and interpret them all. + +“At last,” thought she, “I shall understand myself. I shan’t again be +troubled by things that come out of nothing, and mean I don’t know +what.” + +Miss Alan asked her to play. She refused vehemently. Music seemed to +her the employment of a child. She sat close to her cousin, who, with +commendable patience, was listening to a long story about lost luggage. +When it was over she capped it by a story of her own. Lucy became +rather hysterical with the delay. In vain she tried to check, or at all +events to accelerate, the tale. It was not till a late hour that Miss +Bartlett had recovered her luggage and could say in her usual tone of +gentle reproach: + +“Well, dear, I at all events am ready for Bedfordshire. Come into my +room, and I will give a good brush to your hair.” + +With some solemnity the door was shut, and a cane chair placed for the +girl. Then Miss Bartlett said “So what is to be done?” + +She was unprepared for the question. It had not occurred to her that +she would have to do anything. A detailed exhibition of her emotions +was all that she had counted upon. + +“What is to be done? A point, dearest, which you alone can settle.” + +The rain was streaming down the black windows, and the great room felt +damp and chilly. One candle burnt trembling on the chest of drawers +close to Miss Bartlett’s toque, which cast monstrous and fantastic +shadows on the bolted door. A tram roared by in the dark, and Lucy felt +unaccountably sad, though she had long since dried her eyes. She lifted +them to the ceiling, where the griffins and bassoons were colourless +and vague, the very ghosts of joy. + +“It has been raining for nearly four hours,” she said at last. + +Miss Bartlett ignored the remark. + +“How do you propose to silence him?” + +“The driver?” + +“My dear girl, no; Mr. George Emerson.” + +Lucy began to pace up and down the room. + +“I don’t understand,” she said at last. + +She understood very well, but she no longer wished to be absolutely +truthful. + +“How are you going to stop him talking about it?” + +“I have a feeling that talk is a thing he will never do.” + +“I, too, intend to judge him charitably. But unfortunately I have met +the type before. They seldom keep their exploits to themselves.” + +“Exploits?” cried Lucy, wincing under the horrible plural. + +“My poor dear, did you suppose that this was his first? Come here and +listen to me. I am only gathering it from his own remarks. Do you +remember that day at lunch when he argued with Miss Alan that liking +one person is an extra reason for liking another?” + +“Yes,” said Lucy, whom at the time the argument had pleased. + +“Well, I am no prude. There is no need to call him a wicked young man, +but obviously he is thoroughly unrefined. Let us put it down to his +deplorable antecedents and education, if you wish. But we are no +farther on with our question. What do you propose to do?” + +An idea rushed across Lucy’s brain, which, had she thought of it sooner +and made it part of her, might have proved victorious. + +“I propose to speak to him,” said she. + +Miss Bartlett uttered a cry of genuine alarm. + +“You see, Charlotte, your kindness—I shall never forget it. But—as you +said—it is my affair. Mine and his.” + +“And you are going to _implore_ him, to _beg_ him to keep silence?” + +“Certainly not. There would be no difficulty. Whatever you ask him he +answers, yes or no; then it is over. I have been frightened of him. But +now I am not one little bit.” + +“But we fear him for you, dear. You are so young and inexperienced, you +have lived among such nice people, that you cannot realize what men can +be—how they can take a brutal pleasure in insulting a woman whom her +sex does not protect and rally round. This afternoon, for example, if I +had not arrived, what would have happened?” + +“I can’t think,” said Lucy gravely. + +Something in her voice made Miss Bartlett repeat her question, intoning +it more vigorously. + +“What would have happened if I hadn’t arrived?” + +“I can’t think,” said Lucy again. + +“When he insulted you, how would you have replied?” + +“I hadn’t time to think. You came.” + +“Yes, but won’t you tell me now what you would have done?” + +“I should have—” She checked herself, and broke the sentence off. She +went up to the dripping window and strained her eyes into the darkness. +She could not think what she would have done. + +“Come away from the window, dear,” said Miss Bartlett. “You will be +seen from the road.” + +Lucy obeyed. She was in her cousin’s power. She could not modulate out +the key of self-abasement in which she had started. Neither of them +referred again to her suggestion that she should speak to George and +settle the matter, whatever it was, with him. + +Miss Bartlett became plaintive. + +“Oh, for a real man! We are only two women, you and I. Mr. Beebe is +hopeless. There is Mr. Eager, but you do not trust him. Oh, for your +brother! He is young, but I know that his sister’s insult would rouse +in him a very lion. Thank God, chivalry is not yet dead. There are +still left some men who can reverence woman.” + +As she spoke, she pulled off her rings, of which she wore several, and +ranged them upon the pin cushion. Then she blew into her gloves and +said: + +“It will be a push to catch the morning train, but we must try.” + +“What train?” + +“The train to Rome.” She looked at her gloves critically. + +The girl received the announcement as easily as it had been given. + +“When does the train to Rome go?” + +“At eight.” + +“Signora Bertolini would be upset.” + +“We must face that,” said Miss Bartlett, not liking to say that she had +given notice already. + +“She will make us pay for a whole week’s pension.” + +“I expect she will. However, we shall be much more comfortable at the +Vyses’ hotel. Isn’t afternoon tea given there for nothing?” + +“Yes, but they pay extra for wine.” After this remark she remained +motionless and silent. To her tired eyes Charlotte throbbed and swelled +like a ghostly figure in a dream. + +They began to sort their clothes for packing, for there was no time to +lose, if they were to catch the train to Rome. Lucy, when admonished, +began to move to and fro between the rooms, more conscious of the +discomforts of packing by candlelight than of a subtler ill. Charlotte, +who was practical without ability, knelt by the side of an empty trunk, +vainly endeavouring to pave it with books of varying thickness and +size. She gave two or three sighs, for the stooping posture hurt her +back, and, for all her diplomacy, she felt that she was growing old. +The girl heard her as she entered the room, and was seized with one of +those emotional impulses to which she could never attribute a cause. +She only felt that the candle would burn better, the packing go easier, +the world be happier, if she could give and receive some human love. +The impulse had come before to-day, but never so strongly. She knelt +down by her cousin’s side and took her in her arms. + +Miss Bartlett returned the embrace with tenderness and warmth. But she +was not a stupid woman, and she knew perfectly well that Lucy did not +love her, but needed her to love. For it was in ominous tones that she +said, after a long pause: + +“Dearest Lucy, how will you ever forgive me?” + +Lucy was on her guard at once, knowing by bitter experience what +forgiving Miss Bartlett meant. Her emotion relaxed, she modified her +embrace a little, and she said: + +“Charlotte dear, what do you mean? As if I have anything to forgive!” + +“You have a great deal, and I have a very great deal to forgive myself, +too. I know well how much I vex you at every turn.” + +“But no—” + +Miss Bartlett assumed her favourite role, that of the prematurely aged +martyr. + +“Ah, but yes! I feel that our tour together is hardly the success I had +hoped. I might have known it would not do. You want someone younger and +stronger and more in sympathy with you. I am too uninteresting and +old-fashioned—only fit to pack and unpack your things.” + +“Please—” + +“My only consolation was that you found people more to your taste, and +were often able to leave me at home. I had my own poor ideas of what a +lady ought to do, but I hope I did not inflict them on you more than +was necessary. You had your own way about these rooms, at all events.” + +“You mustn’t say these things,” said Lucy softly. + +She still clung to the hope that she and Charlotte loved each other, +heart and soul. They continued to pack in silence. + +“I have been a failure,” said Miss Bartlett, as she struggled with the +straps of Lucy’s trunk instead of strapping her own. “Failed to make +you happy; failed in my duty to your mother. She has been so generous +to me; I shall never face her again after this disaster.” + +“But mother will understand. It is not your fault, this trouble, and it +isn’t a disaster either.” + +“It is my fault, it is a disaster. She will never forgive me, and +rightly. For instance, what right had I to make friends with Miss +Lavish?” + +“Every right.” + +“When I was here for your sake? If I have vexed you it is equally true +that I have neglected you. Your mother will see this as clearly as I +do, when you tell her.” + +Lucy, from a cowardly wish to improve the situation, said: + +“Why need mother hear of it?” + +“But you tell her everything?” + +“I suppose I do generally.” + +“I dare not break your confidence. There is something sacred in it. +Unless you feel that it is a thing you could not tell her.” + +The girl would not be degraded to this. + +“Naturally I should have told her. But in case she should blame you in +any way, I promise I will not, I am very willing not to. I will never +speak of it either to her or to any one.” + +Her promise brought the long-drawn interview to a sudden close. Miss +Bartlett pecked her smartly on both cheeks, wished her good-night, and +sent her to her own room. + +For a moment the original trouble was in the background. George would +seem to have behaved like a cad throughout; perhaps that was the view +which one would take eventually. At present she neither acquitted nor +condemned him; she did not pass judgement. At the moment when she was +about to judge him her cousin’s voice had intervened, and, ever since, +it was Miss Bartlett who had dominated; Miss Bartlett who, even now, +could be heard sighing into a crack in the partition wall; Miss +Bartlett, who had really been neither pliable nor humble nor +inconsistent. She had worked like a great artist; for a time—indeed, +for years—she had been meaningless, but at the end there was presented +to the girl the complete picture of a cheerless, loveless world in +which the young rush to destruction until they learn better—a +shamefaced world of precautions and barriers which may avert evil, but +which do not seem to bring good, if we may judge from those who have +used them most. + +Lucy was suffering from the most grievous wrong which this world has +yet discovered: diplomatic advantage had been taken of her sincerity, +of her craving for sympathy and love. Such a wrong is not easily +forgotten. Never again did she expose herself without due consideration +and precaution against rebuff. And such a wrong may react disastrously +upon the soul. + +The door-bell rang, and she started to the shutters. Before she reached +them she hesitated, turned, and blew out the candle. Thus it was that, +though she saw someone standing in the wet below, he, though he looked +up, did not see her. + +To reach his room he had to go by hers. She was still dressed. It +struck her that she might slip into the passage and just say that she +would be gone before he was up, and that their extraordinary +intercourse was over. + +Whether she would have dared to do this was never proved. At the +critical moment Miss Bartlett opened her own door, and her voice said: + +“I wish one word with you in the drawing-room, Mr. Emerson, please.” + +Soon their footsteps returned, and Miss Bartlett said: “Good-night, Mr. +Emerson.” + +His heavy, tired breathing was the only reply; the chaperon had done +her work. + +Lucy cried aloud: “It isn’t true. It can’t all be true. I want not to +be muddled. I want to grow older quickly.” + +Miss Bartlett tapped on the wall. + +“Go to bed at once, dear. You need all the rest you can get.” + +In the morning they left for Rome. + + + + +PART TWO + + + + +Chapter VIII +Medieval + + +The drawing-room curtains at Windy Corner had been pulled to meet, for +the carpet was new and deserved protection from the August sun. They +were heavy curtains, reaching almost to the ground, and the light that +filtered through them was subdued and varied. A poet—none was +present—might have quoted, “Life like a dome of many coloured glass,” +or might have compared the curtains to sluice-gates, lowered against +the intolerable tides of heaven. Without was poured a sea of radiance; +within, the glory, though visible, was tempered to the capacities of +man. + +Two pleasant people sat in the room. One—a boy of nineteen—was studying +a small manual of anatomy, and peering occasionally at a bone which lay +upon the piano. From time to time he bounced in his chair and puffed +and groaned, for the day was hot and the print small, and the human +frame fearfully made; and his mother, who was writing a letter, did +continually read out to him what she had written. And continually did +she rise from her seat and part the curtains so that a rivulet of light +fell across the carpet, and make the remark that they were still there. + +“Where aren’t they?” said the boy, who was Freddy, Lucy’s brother. “I +tell you I’m getting fairly sick.” + +“For goodness’ sake go out of my drawing-room, then?” cried Mrs. +Honeychurch, who hoped to cure her children of slang by taking it +literally. + +Freddy did not move or reply. + +“I think things are coming to a head,” she observed, rather wanting her +son’s opinion on the situation if she could obtain it without undue +supplication. + +“Time they did.” + +“I am glad that Cecil is asking her this once more.” + +“It’s his third go, isn’t it?” + +“Freddy I do call the way you talk unkind.” + +“I didn’t mean to be unkind.” Then he added: “But I do think Lucy might +have got this off her chest in Italy. I don’t know how girls manage +things, but she can’t have said ‘No’ properly before, or she wouldn’t +have to say it again now. Over the whole thing—I can’t explain—I do +feel so uncomfortable.” + +“Do you indeed, dear? How interesting!” + +“I feel—never mind.” + +He returned to his work. + +“Just listen to what I have written to Mrs. Vyse. I said: ‘Dear Mrs. +Vyse.’” + +“Yes, mother, you told me. A jolly good letter.” + +“I said: ‘Dear Mrs. Vyse, Cecil has just asked my permission about it, +and I should be delighted, if Lucy wishes it. But—’” She stopped +reading, “I was rather amused at Cecil asking my permission at all. He +has always gone in for unconventionality, and parents nowhere, and so +forth. When it comes to the point, he can’t get on without me.” + +“Nor me.” + +“You?” + +Freddy nodded. + +“What do you mean?” + +“He asked me for my permission also.” + +She exclaimed: “How very odd of him!” + +“Why so?” asked the son and heir. “Why shouldn’t my permission be +asked?” + +“What do you know about Lucy or girls or anything? What ever did you +say?” + +“I said to Cecil, ‘Take her or leave her; it’s no business of mine!’” + +“What a helpful answer!” But her own answer, though more normal in its +wording, had been to the same effect. + +“The bother is this,” began Freddy. + +Then he took up his work again, too shy to say what the bother was. +Mrs. Honeychurch went back to the window. + +“Freddy, you must come. There they still are!” + +“I don’t see you ought to go peeping like that.” + +“Peeping like that! Can’t I look out of my own window?” + +But she returned to the writing-table, observing, as she passed her +son, “Still page 322?” Freddy snorted, and turned over two leaves. For +a brief space they were silent. Close by, beyond the curtains, the +gentle murmur of a long conversation had never ceased. + +“The bother is this: I have put my foot in it with Cecil most awfully.” +He gave a nervous gulp. “Not content with ‘permission’, which I did +give—that is to say, I said, ‘I don’t mind’—well, not content with +that, he wanted to know whether I wasn’t off my head with joy. He +practically put it like this: Wasn’t it a splendid thing for Lucy and +for Windy Corner generally if he married her? And he would have an +answer—he said it would strengthen his hand.” + +“I hope you gave a careful answer, dear.” + +“I answered ‘No’” said the boy, grinding his teeth. “There! Fly into a +stew! I can’t help it—had to say it. I had to say no. He ought never to +have asked me.” + +“Ridiculous child!” cried his mother. “You think you’re so holy and +truthful, but really it’s only abominable conceit. Do you suppose that +a man like Cecil would take the slightest notice of anything you say? I +hope he boxed your ears. How dare you say no?” + +“Oh, do keep quiet, mother! I had to say no when I couldn’t say yes. I +tried to laugh as if I didn’t mean what I said, and, as Cecil laughed +too, and went away, it may be all right. But I feel my foot’s in it. +Oh, do keep quiet, though, and let a man do some work.” + +“No,” said Mrs. Honeychurch, with the air of one who has considered the +subject, “I shall not keep quiet. You know all that has passed between +them in Rome; you know why he is down here, and yet you deliberately +insult him, and try to turn him out of my house.” + +“Not a bit!” he pleaded. “I only let out I didn’t like him. I don’t +hate him, but I don’t like him. What I mind is that he’ll tell Lucy.” + +He glanced at the curtains dismally. + +“Well, _I_ like him,” said Mrs. Honeychurch. “I know his mother; he’s +good, he’s clever, he’s rich, he’s well connected—Oh, you needn’t kick +the piano! He’s well connected—I’ll say it again if you like: he’s well +connected.” She paused, as if rehearsing her eulogy, but her face +remained dissatisfied. She added: “And he has beautiful manners.” + +“I liked him till just now. I suppose it’s having him spoiling Lucy’s +first week at home; and it’s also something that Mr. Beebe said, not +knowing.” + +“Mr. Beebe?” said his mother, trying to conceal her interest. “I don’t +see how Mr. Beebe comes in.” + +“You know Mr. Beebe’s funny way, when you never quite know what he +means. He said: ‘Mr. Vyse is an ideal bachelor.’ I was very cute, I +asked him what he meant. He said ‘Oh, he’s like me—better detached.’ I +couldn’t make him say any more, but it set me thinking. Since Cecil has +come after Lucy he hasn’t been so pleasant, at least—I can’t explain.” + +“You never can, dear. But I can. You are jealous of Cecil because he +may stop Lucy knitting you silk ties.” + +The explanation seemed plausible, and Freddy tried to accept it. But at +the back of his brain there lurked a dim mistrust. Cecil praised one +too much for being athletic. Was that it? Cecil made one talk in one’s +own way. This tired one. Was that it? And Cecil was the kind of fellow +who would never wear another fellow’s cap. Unaware of his own +profundity, Freddy checked himself. He must be jealous, or he would not +dislike a man for such foolish reasons. + +“Will this do?” called his mother. “‘Dear Mrs. Vyse,—Cecil has just +asked my permission about it, and I should be delighted if Lucy wishes +it.’ Then I put in at the top, ‘and I have told Lucy so.’ I must write +the letter out again—‘and I have told Lucy so. But Lucy seems very +uncertain, and in these days young people must decide for themselves.’ +I said that because I didn’t want Mrs. Vyse to think us old-fashioned. +She goes in for lectures and improving her mind, and all the time a +thick layer of flue under the beds, and the maid’s dirty thumb-marks +where you turn on the electric light. She keeps that flat abominably—” + +“Suppose Lucy marries Cecil, would she live in a flat, or in the +country?” + +“Don’t interrupt so foolishly. Where was I? Oh yes—‘Young people must +decide for themselves. I know that Lucy likes your son, because she +tells me everything, and she wrote to me from Rome when he asked her +first.’ No, I’ll cross that last bit out—it looks patronizing. I’ll +stop at ‘because she tells me everything.’ Or shall I cross that out, +too?” + +“Cross it out, too,” said Freddy. + +Mrs. Honeychurch left it in. + +“Then the whole thing runs: ‘Dear Mrs. Vyse.—Cecil has just asked my +permission about it, and I should be delighted if Lucy wishes it, and I +have told Lucy so. But Lucy seems very uncertain, and in these days +young people must decide for themselves. I know that Lucy likes your +son, because she tells me everything. But I do not know—’” + +“Look out!” cried Freddy. + +The curtains parted. + +Cecil’s first movement was one of irritation. He couldn’t bear the +Honeychurch habit of sitting in the dark to save the furniture. +Instinctively he gave the curtains a twitch, and sent them swinging +down their poles. Light entered. There was revealed a terrace, such as +is owned by many villas with trees each side of it, and on it a little +rustic seat, and two flower-beds. But it was transfigured by the view +beyond, for Windy Corner was built on the range that overlooks the +Sussex Weald. Lucy, who was in the little seat, seemed on the edge of a +green magic carpet which hovered in the air above the tremulous world. + +Cecil entered. + +Appearing thus late in the story, Cecil must be at once described. He +was medieval. Like a Gothic statue. Tall and refined, with shoulders +that seemed braced square by an effort of the will, and a head that was +tilted a little higher than the usual level of vision, he resembled +those fastidious saints who guard the portals of a French cathedral. +Well educated, well endowed, and not deficient physically, he remained +in the grip of a certain devil whom the modern world knows as +self-consciousness, and whom the medieval, with dimmer vision, +worshipped as asceticism. A Gothic statue implies celibacy, just as a +Greek statue implies fruition, and perhaps this was what Mr. Beebe +meant. And Freddy, who ignored history and art, perhaps meant the same +when he failed to imagine Cecil wearing another fellow’s cap. + +Mrs. Honeychurch left her letter on the writing table and moved towards +her young acquaintance. + +“Oh, Cecil!” she exclaimed—“oh, Cecil, do tell me!” + +“I promessi sposi,” said he. + +They stared at him anxiously. + +“She has accepted me,” he said, and the sound of the thing in English +made him flush and smile with pleasure, and look more human. + +“I am so glad,” said Mrs. Honeychurch, while Freddy proffered a hand +that was yellow with chemicals. They wished that they also knew +Italian, for our phrases of approval and of amazement are so connected +with little occasions that we fear to use them on great ones. We are +obliged to become vaguely poetic, or to take refuge in Scriptural +reminiscences. + +“Welcome as one of the family!” said Mrs. Honeychurch, waving her hand +at the furniture. “This is indeed a joyous day! I feel sure that you +will make our dear Lucy happy.” + +“I hope so,” replied the young man, shifting his eyes to the ceiling. + +“We mothers—” simpered Mrs. Honeychurch, and then realized that she was +affected, sentimental, bombastic—all the things she hated most. Why +could she not be Freddy, who stood stiff in the middle of the room; +looking very cross and almost handsome? + +“I say, Lucy!” called Cecil, for conversation seemed to flag. + +Lucy rose from the seat. She moved across the lawn and smiled in at +them, just as if she was going to ask them to play tennis. Then she saw +her brother’s face. Her lips parted, and she took him in her arms. He +said, “Steady on!” + +“Not a kiss for me?” asked her mother. + +Lucy kissed her also. + +“Would you take them into the garden and tell Mrs. Honeychurch all +about it?” Cecil suggested. “And I’d stop here and tell my mother.” + +“We go with Lucy?” said Freddy, as if taking orders. + +“Yes, you go with Lucy.” + +They passed into the sunlight. Cecil watched them cross the terrace, +and descend out of sight by the steps. They would descend—he knew their +ways—past the shrubbery, and past the tennis-lawn and the dahlia-bed, +until they reached the kitchen garden, and there, in the presence of +the potatoes and the peas, the great event would be discussed. + +Smiling indulgently, he lit a cigarette, and rehearsed the events that +had led to such a happy conclusion. + +He had known Lucy for several years, but only as a commonplace girl who +happened to be musical. He could still remember his depression that +afternoon at Rome, when she and her terrible cousin fell on him out of +the blue, and demanded to be taken to St. Peter’s. That day she had +seemed a typical tourist—shrill, crude, and gaunt with travel. But +Italy worked some marvel in her. It gave her light, and—which he held +more precious—it gave her shadow. Soon he detected in her a wonderful +reticence. She was like a woman of Leonardo da Vinci’s, whom we love +not so much for herself as for the things that she will not tell us. +The things are assuredly not of this life; no woman of Leonardo’s could +have anything so vulgar as a “story.” She did develop most wonderfully +day by day. + +So it happened that from patronizing civility he had slowly passed if +not to passion, at least to a profound uneasiness. Already at Rome he +had hinted to her that they might be suitable for each other. It had +touched him greatly that she had not broken away at the suggestion. Her +refusal had been clear and gentle; after it—as the horrid phrase +went—she had been exactly the same to him as before. Three months +later, on the margin of Italy, among the flower-clad Alps, he had asked +her again in bald, traditional language. She reminded him of a Leonardo +more than ever; her sunburnt features were shadowed by fantastic rock; +at his words she had turned and stood between him and the light with +immeasurable plains behind her. He walked home with her unashamed, +feeling not at all like a rejected suitor. The things that really +mattered were unshaken. + +So now he had asked her once more, and, clear and gentle as ever, she +had accepted him, giving no coy reasons for her delay, but simply +saying that she loved him and would do her best to make him happy. His +mother, too, would be pleased; she had counselled the step; he must +write her a long account. + +Glancing at his hand, in case any of Freddy’s chemicals had come off on +it, he moved to the writing table. There he saw “Dear Mrs. Vyse,” +followed by many erasures. He recoiled without reading any more, and +after a little hesitation sat down elsewhere, and pencilled a note on +his knee. + +Then he lit another cigarette, which did not seem quite as divine as +the first, and considered what might be done to make Windy Corner +drawing-room more distinctive. With that outlook it should have been a +successful room, but the trail of Tottenham Court Road was upon it; he +could almost visualize the motor-vans of Messrs. Shoolbred and Messrs. +Maple arriving at the door and depositing this chair, those varnished +book-cases, that writing-table. The table recalled Mrs. Honeychurch’s +letter. He did not want to read that letter—his temptations never lay +in that direction; but he worried about it none the less. It was his +own fault that she was discussing him with his mother; he had wanted +her support in his third attempt to win Lucy; he wanted to feel that +others, no matter who they were, agreed with him, and so he had asked +their permission. Mrs. Honeychurch had been civil, but obtuse in +essentials, while as for Freddy—“He is only a boy,” he reflected. “I +represent all that he despises. Why should he want me for a +brother-in-law?” + +The Honeychurches were a worthy family, but he began to realize that +Lucy was of another clay; and perhaps—he did not put it very +definitely—he ought to introduce her into more congenial circles as +soon as possible. + +“Mr. Beebe!” said the maid, and the new rector of Summer Street was +shown in; he had at once started on friendly relations, owing to Lucy’s +praise of him in her letters from Florence. + +Cecil greeted him rather critically. + +“I’ve come for tea, Mr. Vyse. Do you suppose that I shall get it?” + +“I should say so. Food is the thing one does get here—Don’t sit in that +chair; young Honeychurch has left a bone in it.” + +“Pfui!” + +“I know,” said Cecil. “I know. I can’t think why Mrs. Honeychurch +allows it.” + +For Cecil considered the bone and the Maples’ furniture separately; he +did not realize that, taken together, they kindled the room into the +life that he desired. + +“I’ve come for tea and for gossip. Isn’t this news?” + +“News? I don’t understand you,” said Cecil. “News?” + +Mr. Beebe, whose news was of a very different nature, prattled forward. + +“I met Sir Harry Otway as I came up; I have every reason to hope that I +am first in the field. He has bought Cissie and Albert from Mr. Flack!” + +“Has he indeed?” said Cecil, trying to recover himself. Into what a +grotesque mistake had he fallen! Was it likely that a clergyman and a +gentleman would refer to his engagement in a manner so flippant? But +his stiffness remained, and, though he asked who Cissie and Albert +might be, he still thought Mr. Beebe rather a bounder. + +“Unpardonable question! To have stopped a week at Windy Corner and not +to have met Cissie and Albert, the semi-detached villas that have been +run up opposite the church! I’ll set Mrs. Honeychurch after you.” + +“I’m shockingly stupid over local affairs,” said the young man +languidly. “I can’t even remember the difference between a Parish +Council and a Local Government Board. Perhaps there is no difference, +or perhaps those aren’t the right names. I only go into the country to +see my friends and to enjoy the scenery. It is very remiss of me. Italy +and London are the only places where I don’t feel to exist on +sufferance.” + +Mr. Beebe, distressed at this heavy reception of Cissie and Albert, +determined to shift the subject. + +“Let me see, Mr. Vyse—I forget—what is your profession?” + +“I have no profession,” said Cecil. “It is another example of my +decadence. My attitude—quite an indefensible one—is that so long as I +am no trouble to any one I have a right to do as I like. I know I ought +to be getting money out of people, or devoting myself to things I don’t +care a straw about, but somehow, I’ve not been able to begin.” + +“You are very fortunate,” said Mr. Beebe. “It is a wonderful +opportunity, the possession of leisure.” + +His voice was rather parochial, but he did not quite see his way to +answering naturally. He felt, as all who have regular occupation must +feel, that others should have it also. + +“I am glad that you approve. I daren’t face the healthy person—for +example, Freddy Honeychurch.” + +“Oh, Freddy’s a good sort, isn’t he?” + +“Admirable. The sort who has made England what she is.” + +Cecil wondered at himself. Why, on this day of all others, was he so +hopelessly contrary? He tried to get right by inquiring effusively +after Mr. Beebe’s mother, an old lady for whom he had no particular +regard. Then he flattered the clergyman, praised his +liberal-mindedness, his enlightened attitude towards philosophy and +science. + +“Where are the others?” said Mr. Beebe at last, “I insist on extracting +tea before evening service.” + +“I suppose Anne never told them you were here. In this house one is so +coached in the servants the day one arrives. The fault of Anne is that +she begs your pardon when she hears you perfectly, and kicks the +chair-legs with her feet. The faults of Mary—I forget the faults of +Mary, but they are very grave. Shall we look in the garden?” + +“I know the faults of Mary. She leaves the dust-pans standing on the +stairs.” + +“The fault of Euphemia is that she will not, simply will not, chop the +suet sufficiently small.” + +They both laughed, and things began to go better. + +“The faults of Freddy—” Cecil continued. + +“Ah, he has too many. No one but his mother can remember the faults of +Freddy. Try the faults of Miss Honeychurch; they are not innumerable.” + +“She has none,” said the young man, with grave sincerity. + +“I quite agree. At present she has none.” + +“At present?” + +“I’m not cynical. I’m only thinking of my pet theory about Miss +Honeychurch. Does it seem reasonable that she should play so +wonderfully, and live so quietly? I suspect that one day she will be +wonderful in both. The water-tight compartments in her will break down, +and music and life will mingle. Then we shall have her heroically good, +heroically bad—too heroic, perhaps, to be good or bad.” + +Cecil found his companion interesting. + +“And at present you think her not wonderful as far as life goes?” + +“Well, I must say I’ve only seen her at Tunbridge Wells, where she was +not wonderful, and at Florence. Since I came to Summer Street she has +been away. You saw her, didn’t you, at Rome and in the Alps. Oh, I +forgot; of course, you knew her before. No, she wasn’t wonderful in +Florence either, but I kept on expecting that she would be.” + +“In what way?” + +Conversation had become agreeable to them, and they were pacing up and +down the terrace. + +“I could as easily tell you what tune she’ll play next. There was +simply the sense that she had found wings, and meant to use them. I can +show you a beautiful picture in my Italian diary: Miss Honeychurch as a +kite, Miss Bartlett holding the string. Picture number two: the string +breaks.” + +The sketch was in his diary, but it had been made afterwards, when he +viewed things artistically. At the time he had given surreptitious tugs +to the string himself. + +“But the string never broke?” + +“No. I mightn’t have seen Miss Honeychurch rise, but I should certainly +have heard Miss Bartlett fall.” + +“It has broken now,” said the young man in low, vibrating tones. + +Immediately he realized that of all the conceited, ludicrous, +contemptible ways of announcing an engagement this was the worst. He +cursed his love of metaphor; had he suggested that he was a star and +that Lucy was soaring up to reach him? + +“Broken? What do you mean?” + +“I meant,” said Cecil stiffly, “that she is going to marry me.” + +The clergyman was conscious of some bitter disappointment which he +could not keep out of his voice. + +“I am sorry; I must apologize. I had no idea you were intimate with +her, or I should never have talked in this flippant, superficial way. +Mr. Vyse, you ought to have stopped me.” And down the garden he saw +Lucy herself; yes, he was disappointed. + +Cecil, who naturally preferred congratulations to apologies, drew down +his mouth at the corners. Was this the reception his action would get +from the world? Of course, he despised the world as a whole; every +thoughtful man should; it is almost a test of refinement. But he was +sensitive to the successive particles of it which he encountered. + +Occasionally he could be quite crude. + +“I am sorry I have given you a shock,” he said dryly. “I fear that +Lucy’s choice does not meet with your approval.” + +“Not that. But you ought to have stopped me. I know Miss Honeychurch +only a little as time goes. Perhaps I oughtn’t to have discussed her so +freely with any one; certainly not with you.” + +“You are conscious of having said something indiscreet?” + +Mr. Beebe pulled himself together. Really, Mr. Vyse had the art of +placing one in the most tiresome positions. He was driven to use the +prerogatives of his profession. + +“No, I have said nothing indiscreet. I foresaw at Florence that her +quiet, uneventful childhood must end, and it has ended. I realized +dimly enough that she might take some momentous step. She has taken it. +She has learnt—you will let me talk freely, as I have begun freely—she +has learnt what it is to love: the greatest lesson, some people will +tell you, that our earthly life provides.” It was now time for him to +wave his hat at the approaching trio. He did not omit to do so. “She +has learnt through you,” and if his voice was still clerical, it was +now also sincere; “let it be your care that her knowledge is profitable +to her.” + +“Grazie tante!” said Cecil, who did not like parsons. + +“Have you heard?” shouted Mrs. Honeychurch as she toiled up the sloping +garden. “Oh, Mr. Beebe, have you heard the news?” + +Freddy, now full of geniality, whistled the wedding march. Youth seldom +criticizes the accomplished fact. + +“Indeed I have!” he cried. He looked at Lucy. In her presence he could +not act the parson any longer—at all events not without apology. “Mrs. +Honeychurch, I’m going to do what I am always supposed to do, but +generally I’m too shy. I want to invoke every kind of blessing on them, +grave and gay, great and small. I want them all their lives to be +supremely good and supremely happy as husband and wife, as father and +mother. And now I want my tea.” + +“You only asked for it just in time,” the lady retorted. “How dare you +be serious at Windy Corner?” + +He took his tone from her. There was no more heavy beneficence, no more +attempts to dignify the situation with poetry or the Scriptures. None +of them dared or was able to be serious any more. + +An engagement is so potent a thing that sooner or later it reduces all +who speak of it to this state of cheerful awe. Away from it, in the +solitude of their rooms, Mr. Beebe, and even Freddy, might again be +critical. But in its presence and in the presence of each other they +were sincerely hilarious. It has a strange power, for it compels not +only the lips, but the very heart. The chief parallel to compare one +great thing with another—is the power over us of a temple of some alien +creed. Standing outside, we deride or oppose it, or at the most feel +sentimental. Inside, though the saints and gods are not ours, we become +true believers, in case any true believer should be present. + +So it was that after the gropings and the misgivings of the afternoon +they pulled themselves together and settled down to a very pleasant +tea-party. If they were hypocrites they did not know it, and their +hypocrisy had every chance of setting and of becoming true. Anne, +putting down each plate as if it were a wedding present, stimulated +them greatly. They could not lag behind that smile of hers which she +gave them ere she kicked the drawing-room door. Mr. Beebe chirruped. +Freddy was at his wittiest, referring to Cecil as the “Fiasco”—family +honoured pun on fiance. Mrs. Honeychurch, amusing and portly, promised +well as a mother-in-law. As for Lucy and Cecil, for whom the temple had +been built, they also joined in the merry ritual, but waited, as +earnest worshippers should, for the disclosure of some holier shrine of +joy. + + + + +Chapter IX +Lucy As a Work of Art + + +A few days after the engagement was announced Mrs. Honeychurch made +Lucy and her Fiasco come to a little garden-party in the neighbourhood, +for naturally she wanted to show people that her daughter was marrying +a presentable man. + +Cecil was more than presentable; he looked distinguished, and it was +very pleasant to see his slim figure keeping step with Lucy, and his +long, fair face responding when Lucy spoke to him. People congratulated +Mrs. Honeychurch, which is, I believe, a social blunder, but it pleased +her, and she introduced Cecil rather indiscriminately to some stuffy +dowagers. + +At tea a misfortune took place: a cup of coffee was upset over Lucy’s +figured silk, and though Lucy feigned indifference, her mother feigned +nothing of the sort but dragged her indoors to have the frock treated +by a sympathetic maid. They were gone some time, and Cecil was left +with the dowagers. When they returned he was not as pleasant as he had +been. + +“Do you go to much of this sort of thing?” he asked when they were +driving home. + +“Oh, now and then,” said Lucy, who had rather enjoyed herself. + +“Is it typical of country society?” + +“I suppose so. Mother, would it be?” + +“Plenty of society,” said Mrs. Honeychurch, who was trying to remember +the hang of one of the dresses. + +Seeing that her thoughts were elsewhere, Cecil bent towards Lucy and +said: + +“To me it seemed perfectly appalling, disastrous, portentous.” + +“I am so sorry that you were stranded.” + +“Not that, but the congratulations. It is so disgusting, the way an +engagement is regarded as public property—a kind of waste place where +every outsider may shoot his vulgar sentiment. All those old women +smirking!” + +“One has to go through it, I suppose. They won’t notice us so much next +time.” + +“But my point is that their whole attitude is wrong. An +engagement—horrid word in the first place—is a private matter, and +should be treated as such.” + +Yet the smirking old women, however wrong individually, were racially +correct. The spirit of the generations had smiled through them, +rejoicing in the engagement of Cecil and Lucy because it promised the +continuance of life on earth. To Cecil and Lucy it promised something +quite different—personal love. Hence Cecil’s irritation and Lucy’s +belief that his irritation was just. + +“How tiresome!” she said. “Couldn’t you have escaped to tennis?” + +“I don’t play tennis—at least, not in public. The neighbourhood is +deprived of the romance of me being athletic. Such romance as I have is +that of the Inglese Italianato.” + +“Inglese Italianato?” + +“E un diavolo incarnato! You know the proverb?” + +She did not. Nor did it seem applicable to a young man who had spent a +quiet winter in Rome with his mother. But Cecil, since his engagement, +had taken to affect a cosmopolitan naughtiness which he was far from +possessing. + +“Well,” said he, “I cannot help it if they do disapprove of me. There +are certain irremovable barriers between myself and them, and I must +accept them.” + +“We all have our limitations, I suppose,” said wise Lucy. + +“Sometimes they are forced on us, though,” said Cecil, who saw from her +remark that she did not quite understand his position. + +“How?” + +“It makes a difference doesn’t it, whether we fully fence ourselves in, +or whether we are fenced out by the barriers of others?” + +She thought a moment, and agreed that it did make a difference. + +“Difference?” cried Mrs. Honeychurch, suddenly alert. “I don’t see any +difference. Fences are fences, especially when they are in the same +place.” + +“We were speaking of motives,” said Cecil, on whom the interruption +jarred. + +“My dear Cecil, look here.” She spread out her knees and perched her +card-case on her lap. “This is me. That’s Windy Corner. The rest of the +pattern is the other people. Motives are all very well, but the fence +comes here.” + +“We weren’t talking of real fences,” said Lucy, laughing. + +“Oh, I see, dear—poetry.” + +She leant placidly back. Cecil wondered why Lucy had been amused. + +“I tell you who has no ‘fences,’ as you call them,” she said, “and +that’s Mr. Beebe.” + +“A parson fenceless would mean a parson defenceless.” + +Lucy was slow to follow what people said, but quick enough to detect +what they meant. She missed Cecil’s epigram, but grasped the feeling +that prompted it. + +“Don’t you like Mr. Beebe?” she asked thoughtfully. + +“I never said so!” he cried. “I consider him far above the average. I +only denied—” And he swept off on the subject of fences again, and was +brilliant. + +“Now, a clergyman that I do hate,” said she wanting to say something +sympathetic, “a clergyman that does have fences, and the most dreadful +ones, is Mr. Eager, the English chaplain at Florence. He was truly +insincere—not merely the manner unfortunate. He was a snob, and so +conceited, and he did say such unkind things.” + +“What sort of things?” + +“There was an old man at the Bertolini whom he said had murdered his +wife.” + +“Perhaps he had.” + +“No!” + +“Why ‘no’?” + +“He was such a nice old man, I’m sure.” + +Cecil laughed at her feminine inconsequence. + +“Well, I did try to sift the thing. Mr. Eager would never come to the +point. He prefers it vague—said the old man had ‘practically’ murdered +his wife—had murdered her in the sight of God.” + +“Hush, dear!” said Mrs. Honeychurch absently. + +“But isn’t it intolerable that a person whom we’re told to imitate +should go round spreading slander? It was, I believe, chiefly owing to +him that the old man was dropped. People pretended he was vulgar, but +he certainly wasn’t that.” + +“Poor old man! What was his name?” + +“Harris,” said Lucy glibly. + +“Let’s hope that Mrs. Harris there warn’t no sich person,” said her +mother. + +Cecil nodded intelligently. + +“Isn’t Mr. Eager a parson of the cultured type?” he asked. + +“I don’t know. I hate him. I’ve heard him lecture on Giotto. I hate +him. Nothing can hide a petty nature. I _hate_ him.” + +“My goodness gracious me, child!” said Mrs. Honeychurch. “You’ll blow +my head off! Whatever is there to shout over? I forbid you and Cecil to +hate any more clergymen.” + +He smiled. There was indeed something rather incongruous in Lucy’s +moral outburst over Mr. Eager. It was as if one should see the Leonardo +on the ceiling of the Sistine. He longed to hint to her that not here +lay her vocation; that a woman’s power and charm reside in mystery, not +in muscular rant. But possibly rant is a sign of vitality: it mars the +beautiful creature, but shows that she is alive. After a moment, he +contemplated her flushed face and excited gestures with a certain +approval. He forebore to repress the sources of youth. + +Nature—simplest of topics, he thought—lay around them. He praised the +pine-woods, the deep lasts of bracken, the crimson leaves that spotted +the hurt-bushes, the serviceable beauty of the turnpike road. The +outdoor world was not very familiar to him, and occasionally he went +wrong in a question of fact. Mrs. Honeychurch’s mouth twitched when he +spoke of the perpetual green of the larch. + +“I count myself a lucky person,” he concluded, “When I’m in London I +feel I could never live out of it. When I’m in the country I feel the +same about the country. After all, I do believe that birds and trees +and the sky are the most wonderful things in life, and that the people +who live amongst them must be the best. It’s true that in nine cases +out of ten they don’t seem to notice anything. The country gentleman +and the country labourer are each in their way the most depressing of +companions. Yet they may have a tacit sympathy with the workings of +Nature which is denied to us of the town. Do you feel that, Mrs. +Honeychurch?” + +Mrs. Honeychurch started and smiled. She had not been attending. Cecil, +who was rather crushed on the front seat of the victoria, felt +irritable, and determined not to say anything interesting again. + +Lucy had not attended either. Her brow was wrinkled, and she still +looked furiously cross—the result, he concluded, of too much moral +gymnastics. It was sad to see her thus blind to the beauties of an +August wood. + +“‘Come down, O maid, from yonder mountain height,’” he quoted, and +touched her knee with his own. + +She flushed again and said: “What height?” + +“‘Come down, O maid, from yonder mountain height, +What pleasure lives in height (the shepherd sang). +In height and in the splendour of the hills?’ + + +Let us take Mrs. Honeychurch’s advice and hate clergymen no more. +What’s this place?” + +“Summer Street, of course,” said Lucy, and roused herself. + +The woods had opened to leave space for a sloping triangular meadow. +Pretty cottages lined it on two sides, and the upper and third side was +occupied by a new stone church, expensively simple, a charming shingled +spire. Mr. Beebe’s house was near the church. In height it scarcely +exceeded the cottages. Some great mansions were at hand, but they were +hidden in the trees. The scene suggested a Swiss Alp rather than the +shrine and centre of a leisured world, and was marred only by two ugly +little villas—the villas that had competed with Cecil’s engagement, +having been acquired by Sir Harry Otway the very afternoon that Lucy +had been acquired by Cecil. + +“Cissie” was the name of one of these villas, “Albert” of the other. +These titles were not only picked out in shaded Gothic on the garden +gates, but appeared a second time on the porches, where they followed +the semicircular curve of the entrance arch in block capitals. “Albert” +was inhabited. His tortured garden was bright with geraniums and +lobelias and polished shells. His little windows were chastely swathed +in Nottingham lace. “Cissie” was to let. Three notice-boards, belonging +to Dorking agents, lolled on her fence and announced the not surprising +fact. Her paths were already weedy; her pocket-handkerchief of a lawn +was yellow with dandelions. + +“The place is ruined!” said the ladies mechanically. “Summer Street +will never be the same again.” + +As the carriage passed, “Cissie’s” door opened, and a gentleman came +out of her. + +“Stop!” cried Mrs. Honeychurch, touching the coachman with her parasol. +“Here’s Sir Harry. Now we shall know. Sir Harry, pull those things down +at once!” + +Sir Harry Otway—who need not be described—came to the carriage and said +“Mrs. Honeychurch, I meant to. I can’t, I really can’t turn out Miss +Flack.” + +“Am I not always right? She ought to have gone before the contract was +signed. Does she still live rent free, as she did in her nephew’s +time?” + +“But what can I do?” He lowered his voice. “An old lady, so very +vulgar, and almost bedridden.” + +“Turn her out,” said Cecil bravely. + +Sir Harry sighed, and looked at the villas mournfully. He had had full +warning of Mr. Flack’s intentions, and might have bought the plot +before building commenced: but he was apathetic and dilatory. He had +known Summer Street for so many years that he could not imagine it +being spoilt. Not till Mrs. Flack had laid the foundation stone, and +the apparition of red and cream brick began to rise did he take alarm. +He called on Mr. Flack, the local builder,—a most reasonable and +respectful man—who agreed that tiles would have made more artistic +roof, but pointed out that slates were cheaper. He ventured to differ, +however, about the Corinthian columns which were to cling like leeches +to the frames of the bow windows, saying that, for his part, he liked +to relieve the façade by a bit of decoration. Sir Harry hinted that a +column, if possible, should be structural as well as decorative. + +Mr. Flack replied that all the columns had been ordered, adding, “and +all the capitals different—one with dragons in the foliage, another +approaching to the Ionian style, another introducing Mrs. Flack’s +initials—every one different.” For he had read his Ruskin. He built his +villas according to his desire; and not until he had inserted an +immovable aunt into one of them did Sir Harry buy. + +This futile and unprofitable transaction filled the knight with sadness +as he leant on Mrs. Honeychurch’s carriage. He had failed in his duties +to the country-side, and the country-side was laughing at him as well. +He had spent money, and yet Summer Street was spoilt as much as ever. +All he could do now was to find a desirable tenant for “Cissie”—someone +really desirable. + +“The rent is absurdly low,” he told them, “and perhaps I am an easy +landlord. But it is such an awkward size. It is too large for the +peasant class and too small for any one the least like ourselves.” + +Cecil had been hesitating whether he should despise the villas or +despise Sir Harry for despising them. The latter impulse seemed the +more fruitful. + +“You ought to find a tenant at once,” he said maliciously. “It would be +a perfect paradise for a bank clerk.” + +“Exactly!” said Sir Harry excitedly. “That is exactly what I fear, Mr. +Vyse. It will attract the wrong type of people. The train service has +improved—a fatal improvement, to my mind. And what are five miles from +a station in these days of bicycles?” + +“Rather a strenuous clerk it would be,” said Lucy. + +Cecil, who had his full share of mediaeval mischievousness, replied +that the physique of the lower middle classes was improving at a most +appalling rate. She saw that he was laughing at their harmless +neighbour, and roused herself to stop him. + +“Sir Harry!” she exclaimed, “I have an idea. How would you like +spinsters?” + +“My dear Lucy, it would be splendid. Do you know any such?” + +“Yes; I met them abroad.” + +“Gentlewomen?” he asked tentatively. + +“Yes, indeed, and at the present moment homeless. I heard from them +last week—Miss Teresa and Miss Catharine Alan. I’m really not joking. +They are quite the right people. Mr. Beebe knows them, too. May I tell +them to write to you?” + +“Indeed you may!” he cried. “Here we are with the difficulty solved +already. How delightful it is! Extra facilities—please tell them they +shall have extra facilities, for I shall have no agents’ fees. Oh, the +agents! The appalling people they have sent me! One woman, when I +wrote—a tactful letter, you know—asking her to explain her social +position to me, replied that she would pay the rent in advance. As if +one cares about that! And several references I took up were most +unsatisfactory—people swindlers, or not respectable. And oh, the +deceit! I have seen a good deal of the seamy side this last week. The +deceit of the most promising people. My dear Lucy, the deceit!” + +She nodded. + +“My advice,” put in Mrs. Honeychurch, “is to have nothing to do with +Lucy and her decayed gentlewomen at all. I know the type. Preserve me +from people who have seen better days, and bring heirlooms with them +that make the house smell stuffy. It’s a sad thing, but I’d far rather +let to some one who is going up in the world than to someone who has +come down.” + +“I think I follow you,” said Sir Harry; “but it is, as you say, a very +sad thing.” + +“The Misses Alan aren’t that!” cried Lucy. + +“Yes, they are,” said Cecil. “I haven’t met them but I should say they +were a highly unsuitable addition to the neighbourhood.” + +“Don’t listen to him, Sir Harry—he’s tiresome.” + +“It’s I who am tiresome,” he replied. “I oughtn’t to come with my +troubles to young people. But really I am so worried, and Lady Otway +will only say that I cannot be too careful, which is quite true, but no +real help.” + +“Then may I write to my Misses Alan?” + +“Please!” + +But his eye wavered when Mrs. Honeychurch exclaimed: + +“Beware! They are certain to have canaries. Sir Harry, beware of +canaries: they spit the seed out through the bars of the cages and then +the mice come. Beware of women altogether. Only let to a man.” + +“Really—” he murmured gallantly, though he saw the wisdom of her +remark. + +“Men don’t gossip over tea-cups. If they get drunk, there’s an end of +them—they lie down comfortably and sleep it off. If they’re vulgar, +they somehow keep it to themselves. It doesn’t spread so. Give me a +man—of course, provided he’s clean.” + +Sir Harry blushed. Neither he nor Cecil enjoyed these open compliments +to their sex. Even the exclusion of the dirty did not leave them much +distinction. He suggested that Mrs. Honeychurch, if she had time, +should descend from the carriage and inspect “Cissie” for herself. She +was delighted. Nature had intended her to be poor and to live in such a +house. Domestic arrangements always attracted her, especially when they +were on a small scale. + +Cecil pulled Lucy back as she followed her mother. + +“Mrs. Honeychurch,” he said, “what if we two walk home and leave you?” + +“Certainly!” was her cordial reply. + +Sir Harry likewise seemed almost too glad to get rid of them. He beamed +at them knowingly, said, “Aha! young people, young people!” and then +hastened to unlock the house. + +“Hopeless vulgarian!” exclaimed Cecil, almost before they were out of +earshot. + +“Oh, Cecil!” + +“I can’t help it. It would be wrong not to loathe that man.” + +“He isn’t clever, but really he is nice.” + +“No, Lucy, he stands for all that is bad in country life. In London he +would keep his place. He would belong to a brainless club, and his wife +would give brainless dinner parties. But down here he acts the little +god with his gentility, and his patronage, and his sham aesthetics, and +every one—even your mother—is taken in.” + +“All that you say is quite true,” said Lucy, though she felt +discouraged. “I wonder whether—whether it matters so very much.” + +“It matters supremely. Sir Harry is the essence of that garden-party. +Oh, goodness, how cross I feel! How I do hope he’ll get some vulgar +tenant in that villa—some woman so really vulgar that he’ll notice it. +_Gentlefolks!_ Ugh! with his bald head and retreating chin! But let’s +forget him.” + +This Lucy was glad enough to do. If Cecil disliked Sir Harry Otway and +Mr. Beebe, what guarantee was there that the people who really mattered +to her would escape? For instance, Freddy. Freddy was neither clever, +nor subtle, nor beautiful, and what prevented Cecil from saying, any +minute, “It would be wrong not to loathe Freddy”? And what would she +reply? Further than Freddy she did not go, but he gave her anxiety +enough. She could only assure herself that Cecil had known Freddy some +time, and that they had always got on pleasantly, except, perhaps, +during the last few days, which was an accident, perhaps. + +“Which way shall we go?” she asked him. + +Nature—simplest of topics, she thought—was around them. Summer Street +lay deep in the woods, and she had stopped where a footpath diverged +from the highroad. + +“Are there two ways?” + +“Perhaps the road is more sensible, as we’re got up smart.” + +“I’d rather go through the wood,” said Cecil, with that subdued +irritation that she had noticed in him all the afternoon. “Why is it, +Lucy, that you always say the road? Do you know that you have never +once been with me in the fields or the wood since we were engaged?” + +“Haven’t I? The wood, then,” said Lucy, startled at his queerness, but +pretty sure that he would explain later; it was not his habit to leave +her in doubt as to his meaning. + +She led the way into the whispering pines, and sure enough he did +explain before they had gone a dozen yards. + +“I had got an idea—I dare say wrongly—that you feel more at home with +me in a room.” + +“A room?” she echoed, hopelessly bewildered. + +“Yes. Or, at the most, in a garden, or on a road. Never in the real +country like this.” + +“Oh, Cecil, whatever do you mean? I have never felt anything of the +sort. You talk as if I was a kind of poetess sort of person.” + +“I don’t know that you aren’t. I connect you with a view—a certain type +of view. Why shouldn’t you connect me with a room?” + +She reflected a moment, and then said, laughing: + +“Do you know that you’re right? I do. I must be a poetess after all. +When I think of you it’s always as in a room. How funny!” + +To her surprise, he seemed annoyed. + +“A drawing-room, pray? With no view?” + +“Yes, with no view, I fancy. Why not?” + +“I’d rather,” he said reproachfully, “that you connected me with the +open air.” + +She said again, “Oh, Cecil, whatever do you mean?” + +As no explanation was forthcoming, she shook off the subject as too +difficult for a girl, and led him further into the wood, pausing every +now and then at some particularly beautiful or familiar combination of +the trees. She had known the wood between Summer Street and Windy +Corner ever since she could walk alone; she had played at losing Freddy +in it, when Freddy was a purple-faced baby; and though she had been to +Italy, it had lost none of its charm. + +Presently they came to a little clearing among the pines—another tiny +green alp, solitary this time, and holding in its bosom a shallow pool. + +She exclaimed, “The Sacred Lake!” + +“Why do you call it that?” + +“I can’t remember why. I suppose it comes out of some book. It’s only a +puddle now, but you see that stream going through it? Well, a good deal +of water comes down after heavy rains, and can’t get away at once, and +the pool becomes quite large and beautiful. Then Freddy used to bathe +there. He is very fond of it.” + +“And you?” + +He meant, “Are you fond of it?” But she answered dreamily, “I bathed +here, too, till I was found out. Then there was a row.” + +At another time he might have been shocked, for he had depths of +prudishness within him. But now? with his momentary cult of the fresh +air, he was delighted at her admirable simplicity. He looked at her as +she stood by the pool’s edge. She was got up smart, as she phrased it, +and she reminded him of some brilliant flower that has no leaves of its +own, but blooms abruptly out of a world of green. + +“Who found you out?” + +“Charlotte,” she murmured. “She was stopping with us. +Charlotte—Charlotte.” + +“Poor girl!” + +She smiled gravely. A certain scheme, from which hitherto he had +shrunk, now appeared practical. + +“Lucy!” + +“Yes, I suppose we ought to be going,” was her reply. + +“Lucy, I want to ask something of you that I have never asked before.” + +At the serious note in his voice she stepped frankly and kindly towards +him. + +“What, Cecil?” + +“Hitherto never—not even that day on the lawn when you agreed to marry +me—” + +He became self-conscious and kept glancing round to see if they were +observed. His courage had gone. + +“Yes?” + +“Up to now I have never kissed you.” + +She was as scarlet as if he had put the thing most indelicately. + +“No—more you have,” she stammered. + +“Then I ask you—may I now?” + +“Of course, you may, Cecil. You might before. I can’t run at you, you +know.” + +At that supreme moment he was conscious of nothing but absurdities. Her +reply was inadequate. She gave such a business-like lift to her veil. +As he approached her he found time to wish that he could recoil. As he +touched her, his gold pince-nez became dislodged and was flattened +between them. + +Such was the embrace. He considered, with truth, that it had been a +failure. Passion should believe itself irresistible. It should forget +civility and consideration and all the other curses of a refined +nature. Above all, it should never ask for leave where there is a right +of way. Why could he not do as any labourer or navvy—nay, as any young +man behind the counter would have done? He recast the scene. Lucy was +standing flowerlike by the water, he rushed up and took her in his +arms; she rebuked him, permitted him and revered him ever after for his +manliness. For he believed that women revere men for their manliness. + +They left the pool in silence, after this one salutation. He waited for +her to make some remark which should show him her inmost thoughts. At +last she spoke, and with fitting gravity. + +“Emerson was the name, not Harris.” + +“What name?” + +“The old man’s.” + +“What old man?” + +“That old man I told you about. The one Mr. Eager was so unkind to.” + +He could not know that this was the most intimate conversation they had +ever had. + + + + +Chapter X +Cecil as a Humourist + + +The society out of which Cecil proposed to rescue Lucy was perhaps no +very splendid affair, yet it was more splendid than her antecedents +entitled her to. Her father, a prosperous local solicitor, had built +Windy Corner, as a speculation at the time the district was opening up, +and, falling in love with his own creation, had ended by living there +himself. Soon after his marriage the social atmosphere began to alter. +Other houses were built on the brow of that steep southern slope and +others, again, among the pine-trees behind, and northward on the chalk +barrier of the downs. Most of these houses were larger than Windy +Corner, and were filled by people who came, not from the district, but +from London, and who mistook the Honeychurches for the remnants of an +indigenous aristocracy. He was inclined to be frightened, but his wife +accepted the situation without either pride or humility. “I cannot +think what people are doing,” she would say, “but it is extremely +fortunate for the children.” She called everywhere; her calls were +returned with enthusiasm, and by the time people found out that she was +not exactly of their _milieu_, they liked her, and it did not seem to +matter. When Mr. Honeychurch died, he had the satisfaction—which few +honest solicitors despise—of leaving his family rooted in the best +society obtainable. + +The best obtainable. Certainly many of the immigrants were rather dull, +and Lucy realized this more vividly since her return from Italy. +Hitherto she had accepted their ideals without questioning—their kindly +affluence, their inexplosive religion, their dislike of paper-bags, +orange-peel, and broken bottles. A Radical out and out, she learnt to +speak with horror of Suburbia. Life, so far as she troubled to conceive +it, was a circle of rich, pleasant people, with identical interests and +identical foes. In this circle, one thought, married, and died. Outside +it were poverty and vulgarity for ever trying to enter, just as the +London fog tries to enter the pine-woods pouring through the gaps in +the northern hills. But, in Italy, where any one who chooses may warm +himself in equality, as in the sun, this conception of life vanished. +Her senses expanded; she felt that there was no one whom she might not +get to like, that social barriers were irremovable, doubtless, but not +particularly high. You jump over them just as you jump into a peasant’s +olive-yard in the Apennines, and he is glad to see you. She returned +with new eyes. + +So did Cecil; but Italy had quickened Cecil, not to tolerance, but to +irritation. He saw that the local society was narrow, but, instead of +saying, “Does that very much matter?” he rebelled, and tried to +substitute for it the society he called broad. He did not realize that +Lucy had consecrated her environment by the thousand little civilities +that create a tenderness in time, and that though her eyes saw its +defects, her heart refused to despise it entirely. Nor did he realize a +more important point—that if she was too great for this society, she +was too great for all society, and had reached the stage where personal +intercourse would alone satisfy her. A rebel she was, but not of the +kind he understood—a rebel who desired, not a wider dwelling-room, but +equality beside the man she loved. For Italy was offering her the most +priceless of all possessions—her own soul. + +Playing bumble-puppy with Minnie Beebe, niece to the rector, and aged +thirteen—an ancient and most honourable game, which consists in +striking tennis-balls high into the air, so that they fall over the net +and immoderately bounce; some hit Mrs. Honeychurch; others are lost. +The sentence is confused, but the better illustrates Lucy’s state of +mind, for she was trying to talk to Mr. Beebe at the same time. + +“Oh, it has been such a nuisance—first he, then they—no one knowing +what they wanted, and everyone so tiresome.” + +“But they really are coming now,” said Mr. Beebe. “I wrote to Miss +Teresa a few days ago—she was wondering how often the butcher called, +and my reply of once a month must have impressed her favourably. They +are coming. I heard from them this morning. + +“I shall hate those Miss Alans!” Mrs. Honeychurch cried. “Just because +they’re old and silly one’s expected to say ‘How sweet!’ I hate their +‘if’-ing and ‘but’-ing and ‘and’-ing. And poor Lucy—serve her +right—worn to a shadow.” + +Mr. Beebe watched the shadow springing and shouting over the +tennis-court. Cecil was absent—one did not play bumble-puppy when he +was there. + +“Well, if they are coming—No, Minnie, not Saturn.” Saturn was a +tennis-ball whose skin was partially unsewn. When in motion his orb was +encircled by a ring. “If they are coming, Sir Harry will let them move +in before the twenty-ninth, and he will cross out the clause about +whitewashing the ceilings, because it made them nervous, and put in the +fair wear and tear one.—That doesn’t count. I told you not Saturn.” + +“Saturn’s all right for bumble-puppy,” cried Freddy, joining them. +“Minnie, don’t you listen to her.” + +“Saturn doesn’t bounce.” + +“Saturn bounces enough.” + +“No, he doesn’t.” + +“Well; he bounces better than the Beautiful White Devil.” + +“Hush, dear,” said Mrs. Honeychurch. + +“But look at Lucy—complaining of Saturn, and all the time’s got the +Beautiful White Devil in her hand, ready to plug it in. That’s right, +Minnie, go for her—get her over the shins with the racquet—get her over +the shins!” + +Lucy fell, the Beautiful White Devil rolled from her hand. + +Mr. Beebe picked it up, and said: “The name of this ball is Vittoria +Corombona, please.” But his correction passed unheeded. + +Freddy possessed to a high degree the power of lashing little girls to +fury, and in half a minute he had transformed Minnie from a +well-mannered child into a howling wilderness. Up in the house Cecil +heard them, and, though he was full of entertaining news, he did not +come down to impart it, in case he got hurt. He was not a coward and +bore necessary pain as well as any man. But he hated the physical +violence of the young. How right it was! Sure enough it ended in a cry. + +“I wish the Miss Alans could see this,” observed Mr. Beebe, just as +Lucy, who was nursing the injured Minnie, was in turn lifted off her +feet by her brother. + +“Who are the Miss Alans?” Freddy panted. + +“They have taken Cissie Villa.” + +“That wasn’t the name—” + +Here his foot slipped, and they all fell most agreeably on to the +grass. An interval elapses. + +“Wasn’t what name?” asked Lucy, with her brother’s head in her lap. + +“Alan wasn’t the name of the people Sir Harry’s let to.” + +“Nonsense, Freddy! You know nothing about it.” + +“Nonsense yourself! I’ve this minute seen him. He said to me: ‘Ahem! +Honeychurch,’”—Freddy was an indifferent mimic—“‘ahem! ahem! I have at +last procured really dee-sire-rebel tenants.’ I said, ‘ooray, old boy!’ +and slapped him on the back.” + +“Exactly. The Miss Alans?” + +“Rather not. More like Anderson.” + +“Oh, good gracious, there isn’t going to be another muddle!” Mrs. +Honeychurch exclaimed. “Do you notice, Lucy, I’m always right? I _said_ +don’t interfere with Cissie Villa. I’m always right. I’m quite uneasy +at being always right so often.” + +“It’s only another muddle of Freddy’s. Freddy doesn’t even know the +name of the people he pretends have taken it instead.” + +“Yes, I do. I’ve got it. Emerson.” + +“What name?” + +“Emerson. I’ll bet you anything you like.” + +“What a weathercock Sir Harry is,” said Lucy quietly. “I wish I had +never bothered over it at all.” + +Then she lay on her back and gazed at the cloudless sky. Mr. Beebe, +whose opinion of her rose daily, whispered to his niece that _that_ was +the proper way to behave if any little thing went wrong. + +Meanwhile the name of the new tenants had diverted Mrs. Honeychurch +from the contemplation of her own abilities. + +“Emerson, Freddy? Do you know what Emersons they are?” + +“I don’t know whether they’re any Emersons,” retorted Freddy, who was +democratic. Like his sister and like most young people, he was +naturally attracted by the idea of equality, and the undeniable fact +that there are different kinds of Emersons annoyed him beyond measure. + +“I trust they are the right sort of person. All right, Lucy”—she was +sitting up again—“I see you looking down your nose and thinking your +mother’s a snob. But there is a right sort and a wrong sort, and it’s +affectation to pretend there isn’t.” + +“Emerson’s a common enough name,” Lucy remarked. + +She was gazing sideways. Seated on a promontory herself, she could see +the pine-clad promontories descending one beyond another into the +Weald. The further one descended the garden, the more glorious was this +lateral view. + +“I was merely going to remark, Freddy, that I trusted they were no +relations of Emerson the philosopher, a most trying man. Pray, does +that satisfy you?” + +“Oh, yes,” he grumbled. “And you will be satisfied, too, for they’re +friends of Cecil; so”—elaborate irony—“you and the other country +families will be able to call in perfect safety.” + +“_Cecil?_” exclaimed Lucy. + +“Don’t be rude, dear,” said his mother placidly. “Lucy, don’t screech. +It’s a new bad habit you’re getting into.” + +“But has Cecil—” + +“Friends of Cecil’s,” he repeated, “‘and so really dee-sire-rebel. +Ahem! Honeychurch, I have just telegraphed to them.’” + +She got up from the grass. + +It was hard on Lucy. Mr. Beebe sympathized with her very much. While +she believed that her snub about the Miss Alans came from Sir Harry +Otway, she had borne it like a good girl. She might well “screech” when +she heard that it came partly from her lover. Mr. Vyse was a +tease—something worse than a tease: he took a malicious pleasure in +thwarting people. The clergyman, knowing this, looked at Miss +Honeychurch with more than his usual kindness. + +When she exclaimed, “But Cecil’s Emersons—they can’t possibly be the +same ones—there is that—” he did not consider that the exclamation was +strange, but saw in it an opportunity of diverting the conversation +while she recovered her composure. He diverted it as follows: + +“The Emersons who were at Florence, do you mean? No, I don’t suppose it +will prove to be them. It is probably a long cry from them to friends +of Mr. Vyse’s. Oh, Mrs. Honeychurch, the oddest people! The queerest +people! For our part we liked them, didn’t we?” He appealed to Lucy. +“There was a great scene over some violets. They picked violets and +filled all the vases in the room of these very Miss Alans who have +failed to come to Cissie Villa. Poor little ladies! So shocked and so +pleased. It used to be one of Miss Catharine’s great stories. ‘My dear +sister loves flowers,’ it began. They found the whole room a mass of +blue—vases and jugs—and the story ends with ‘So ungentlemanly and yet +so beautiful.’ It is all very difficult. Yes, I always connect those +Florentine Emersons with violets.” + +“Fiasco’s done you this time,” remarked Freddy, not seeing that his +sister’s face was very red. She could not recover herself. Mr. Beebe +saw it, and continued to divert the conversation. + +“These particular Emersons consisted of a father and a son—the son a +goodly, if not a good young man; not a fool, I fancy, but very +immature—pessimism, et cetera. Our special joy was the father—such a +sentimental darling, and people declared he had murdered his wife.” + +In his normal state Mr. Beebe would never have repeated such gossip, +but he was trying to shelter Lucy in her little trouble. He repeated +any rubbish that came into his head. + +“Murdered his wife?” said Mrs. Honeychurch. “Lucy, don’t desert us—go +on playing bumble-puppy. Really, the Pension Bertolini must have been +the oddest place. That’s the second murderer I’ve heard of as being +there. Whatever was Charlotte doing to stop? By-the-by, we really must +ask Charlotte here some time.” + +Mr. Beebe could recall no second murderer. He suggested that his +hostess was mistaken. At the hint of opposition she warmed. She was +perfectly sure that there had been a second tourist of whom the same +story had been told. The name escaped her. What was the name? Oh, what +was the name? She clasped her knees for the name. Something in +Thackeray. She struck her matronly forehead. + +Lucy asked her brother whether Cecil was in. + +“Oh, don’t go!” he cried, and tried to catch her by the ankles. + +“I must go,” she said gravely. “Don’t be silly. You always overdo it +when you play.” + +As she left them her mother’s shout of “Harris!” shivered the tranquil +air, and reminded her that she had told a lie and had never put it +right. Such a senseless lie, too, yet it shattered her nerves and made +her connect these Emersons, friends of Cecil’s, with a pair of +nondescript tourists. Hitherto truth had come to her naturally. She saw +that for the future she must be more vigilant, and be—absolutely +truthful? Well, at all events, she must not tell lies. She hurried up +the garden, still flushed with shame. A word from Cecil would soothe +her, she was sure. + +“Cecil!” + +“Hullo!” he called, and leant out of the smoking-room window. He seemed +in high spirits. “I was hoping you’d come. I heard you all +bear-gardening, but there’s better fun up here. I, even I, have won a +great victory for the Comic Muse. George Meredith’s right—the cause of +Comedy and the cause of Truth are really the same; and I, even I, have +found tenants for the distressful Cissie Villa. Don’t be angry! Don’t +be angry! You’ll forgive me when you hear it all.” + +He looked very attractive when his face was bright, and he dispelled +her ridiculous forebodings at once. + +“I have heard,” she said. “Freddy has told us. Naughty Cecil! I suppose +I must forgive you. Just think of all the trouble I took for nothing! +Certainly the Miss Alans are a little tiresome, and I’d rather have +nice friends of yours. But you oughtn’t to tease one so.” + +“Friends of mine?” he laughed. “But, Lucy, the whole joke is to come! +Come here.” But she remained standing where she was. “Do you know where +I met these desirable tenants? In the National Gallery, when I was up +to see my mother last week.” + +“What an odd place to meet people!” she said nervously. “I don’t quite +understand.” + +“In the Umbrian Room. Absolute strangers. They were admiring Luca +Signorelli—of course, quite stupidly. However, we got talking, and they +refreshed me not a little. They had been to Italy.” + +“But, Cecil—” proceeded hilariously. + +“In the course of conversation they said that they wanted a country +cottage—the father to live there, the son to run down for week-ends. I +thought, ‘What a chance of scoring off Sir Harry!’ and I took their +address and a London reference, found they weren’t actual +blackguards—it was great sport—and wrote to him, making out—” + +“Cecil! No, it’s not fair. I’ve probably met them before—” + +He bore her down. + +“Perfectly fair. Anything is fair that punishes a snob. That old man +will do the neighbourhood a world of good. Sir Harry is too disgusting +with his ‘decayed gentlewomen.’ I meant to read him a lesson some time. +No, Lucy, the classes ought to mix, and before long you’ll agree with +me. There ought to be intermarriage—all sorts of things. I believe in +democracy—” + +“No, you don’t,” she snapped. “You don’t know what the word means.” + +He stared at her, and felt again that she had failed to be +Leonardesque. “No, you don’t!” + +Her face was inartistic—that of a peevish virago. + +“It isn’t fair, Cecil. I blame you—I blame you very much indeed. You +had no business to undo my work about the Miss Alans, and make me look +ridiculous. You call it scoring off Sir Harry, but do you realize that +it is all at my expense? I consider it most disloyal of you.” + +She left him. + +“Temper!” he thought, raising his eyebrows. + +No, it was worse than temper—snobbishness. As long as Lucy thought that +his own smart friends were supplanting the Miss Alans, she had not +minded. He perceived that these new tenants might be of value +educationally. He would tolerate the father and draw out the son, who +was silent. In the interests of the Comic Muse and of Truth, he would +bring them to Windy Corner. + + + + +Chapter XI +In Mrs. Vyse’s Well-Appointed Flat + + +The Comic Muse, though able to look after her own interests, did not +disdain the assistance of Mr. Vyse. His idea of bringing the Emersons +to Windy Corner struck her as decidedly good, and she carried through +the negotiations without a hitch. Sir Harry Otway signed the agreement, +met Mr. Emerson, who was duly disillusioned. The Miss Alans were duly +offended, and wrote a dignified letter to Lucy, whom they held +responsible for the failure. Mr. Beebe planned pleasant moments for the +new-comers, and told Mrs. Honeychurch that Freddy must call on them as +soon as they arrived. Indeed, so ample was the Muse’s equipment that +she permitted Mr. Harris, never a very robust criminal, to droop his +head, to be forgotten, and to die. + +Lucy—to descend from bright heaven to earth, whereon there are shadows +because there are hills—Lucy was at first plunged into despair, but +settled after a little thought that it did not matter the very least. +Now that she was engaged, the Emersons would scarcely insult her and +were welcome into the neighbourhood. And Cecil was welcome to bring +whom he would into the neighbourhood. Therefore Cecil was welcome to +bring the Emersons into the neighbourhood. But, as I say, this took a +little thinking, and—so illogical are girls—the event remained rather +greater and rather more dreadful than it should have done. She was glad +that a visit to Mrs. Vyse now fell due; the tenants moved into Cissie +Villa while she was safe in the London flat. + +“Cecil—Cecil darling,” she whispered the evening she arrived, and crept +into his arms. + +Cecil, too, became demonstrative. He saw that the needful fire had been +kindled in Lucy. At last she longed for attention, as a woman should, +and looked up to him because he was a man. + +“So you do love me, little thing?” he murmured. + +“Oh, Cecil, I do, I do! I don’t know what I should do without you.” + +Several days passed. Then she had a letter from Miss Bartlett. A +coolness had sprung up between the two cousins, and they had not +corresponded since they parted in August. The coolness dated from what +Charlotte would call “the flight to Rome,” and in Rome it had increased +amazingly. For the companion who is merely uncongenial in the mediaeval +world becomes exasperating in the classical. Charlotte, unselfish in +the Forum, would have tried a sweeter temper than Lucy’s, and once, in +the Baths of Caracalla, they had doubted whether they could continue +their tour. Lucy had said she would join the Vyses—Mrs. Vyse was an +acquaintance of her mother, so there was no impropriety in the plan and +Miss Bartlett had replied that she was quite used to being abandoned +suddenly. Finally nothing happened; but the coolness remained, and, for +Lucy, was even increased when she opened the letter and read as +follows. It had been forwarded from Windy Corner. + +“TUNBRIDGE WELLS, +“_September_. + + +“DEAREST LUCIA, + + +“I have news of you at last! Miss Lavish has been bicycling in your +parts, but was not sure whether a call would be welcome. Puncturing her +tire near Summer Street, and it being mended while she sat very +woebegone in that pretty churchyard, she saw to her astonishment, a +door open opposite and the younger Emerson man come out. He said his +father had just taken the house. He _said_ he did not know that you +lived in the neighbourhood (?). He never suggested giving Eleanor a cup +of tea. Dear Lucy, I am much worried, and I advise you to make a clean +breast of his past behaviour to your mother, Freddy, and Mr. Vyse, who +will forbid him to enter the house, etc. That was a great misfortune, +and I dare say you have told them already. Mr. Vyse is so sensitive. I +remember how I used to get on his nerves at Rome. I am very sorry about +it all, and should not feel easy unless I warned you. + + +“Believe me, +“Your anxious and loving cousin, +“CHARLOTTE.” + + +Lucy was much annoyed, and replied as follows: + +“BEAUCHAMP MANSIONS, S.W. + + + + +“DEAR CHARLOTTE, + +“Many thanks for your warning. When Mr. Emerson forgot himself on the +mountain, you made me promise not to tell mother, because you said she +would blame you for not being always with me. I have kept that promise, +and cannot possibly tell her now. I have said both to her and Cecil +that I met the Emersons at Florence, and that they are respectable +people—which I _do_ think—and the reason that he offered Miss Lavish no +tea was probably that he had none himself. She should have tried at the +Rectory. I cannot begin making a fuss at this stage. You must see that +it would be too absurd. If the Emersons heard I had complained of them, +they would think themselves of importance, which is exactly what they +are not. I like the old father, and look forward to seeing him again. +As for the son, I am sorry for _him_ when we meet, rather than for +myself. They are known to Cecil, who is very well and spoke of you the +other day. We expect to be married in January. + +“Miss Lavish cannot have told you much about me, for I am not at Windy +Corner at all, but here. Please do not put ‘Private’ outside your +envelope again. No one opens my letters. + + +“Yours affectionately, +“L. M. HONEYCHURCH.” + + +Secrecy has this disadvantage: we lose the sense of proportion; we +cannot tell whether our secret is important or not. Were Lucy and her +cousin closeted with a great thing which would destroy Cecil’s life if +he discovered it, or with a little thing which he would laugh at? Miss +Bartlett suggested the former. Perhaps she was right. It had become a +great thing now. Left to herself, Lucy would have told her mother and +her lover ingenuously, and it would have remained a little thing. +“Emerson, not Harris”; it was only that a few weeks ago. She tried to +tell Cecil even now when they were laughing about some beautiful lady +who had smitten his heart at school. But her body behaved so +ridiculously that she stopped. + +She and her secret stayed ten days longer in the deserted Metropolis +visiting the scenes they were to know so well later on. It did her no +harm, Cecil thought, to learn the framework of society, while society +itself was absent on the golf-links or the moors. The weather was cool, +and it did her no harm. In spite of the season, Mrs. Vyse managed to +scrape together a dinner-party consisting entirely of the grandchildren +of famous people. The food was poor, but the talk had a witty weariness +that impressed the girl. One was tired of everything, it seemed. One +launched into enthusiasms only to collapse gracefully, and pick oneself +up amid sympathetic laughter. In this atmosphere the Pension Bertolini +and Windy Corner appeared equally crude, and Lucy saw that her London +career would estrange her a little from all that she had loved in the +past. + +The grandchildren asked her to play the piano. + +She played Schumann. “Now some Beethoven” called Cecil, when the +querulous beauty of the music had died. She shook her head and played +Schumann again. The melody rose, unprofitably magical. It broke; it was +resumed broken, not marching once from the cradle to the grave. The +sadness of the incomplete—the sadness that is often Life, but should +never be Art—throbbed in its disjected phrases, and made the nerves of +the audience throb. Not thus had she played on the little draped piano +at the Bertolini, and “Too much Schumann” was not the remark that Mr. +Beebe had passed to himself when she returned. + +When the guests were gone, and Lucy had gone to bed, Mrs. Vyse paced up +and down the drawing-room, discussing her little party with her son. +Mrs. Vyse was a nice woman, but her personality, like many another’s, +had been swamped by London, for it needs a strong head to live among +many people. The too vast orb of her fate had crushed her; and she had +seen too many seasons, too many cities, too many men, for her +abilities, and even with Cecil she was mechanical, and behaved as if he +was not one son, but, so to speak, a filial crowd. + +“Make Lucy one of us,” she said, looking round intelligently at the end +of each sentence, and straining her lips apart until she spoke again. +“Lucy is becoming wonderful—wonderful.” + +“Her music always was wonderful.” + +“Yes, but she is purging off the Honeychurch taint, most excellent +Honeychurches, but you know what I mean. She is not always quoting +servants, or asking one how the pudding is made.” + +“Italy has done it.” + +“Perhaps,” she murmured, thinking of the museum that represented Italy +to her. “It is just possible. Cecil, mind you marry her next January. +She is one of us already.” + +“But her music!” he exclaimed. “The style of her! How she kept to +Schumann when, like an idiot, I wanted Beethoven. Schumann was right +for this evening. Schumann was the thing. Do you know, mother, I shall +have our children educated just like Lucy. Bring them up among honest +country folks for freshness, send them to Italy for subtlety, and +then—not till then—let them come to London. I don’t believe in these +London educations—” He broke off, remembering that he had had one +himself, and concluded, “At all events, not for women.” + +“Make her one of us,” repeated Mrs. Vyse, and processed to bed. + +As she was dozing off, a cry—the cry of nightmare—rang from Lucy’s +room. Lucy could ring for the maid if she liked but Mrs. Vyse thought +it kind to go herself. She found the girl sitting upright with her hand +on her cheek. + +“I am so sorry, Mrs. Vyse—it is these dreams.” + +“Bad dreams?” + +“Just dreams.” + +The elder lady smiled and kissed her, saying very distinctly: “You +should have heard us talking about you, dear. He admires you more than +ever. Dream of that.” + +Lucy returned the kiss, still covering one cheek with her hand. Mrs. +Vyse recessed to bed. Cecil, whom the cry had not awoke, snored. +Darkness enveloped the flat. + + + + +Chapter XII +Twelfth Chapter + + +It was a Saturday afternoon, gay and brilliant after abundant rains, +and the spirit of youth dwelt in it, though the season was now autumn. +All that was gracious triumphed. As the motorcars passed through Summer +Street they raised only a little dust, and their stench was soon +dispersed by the wind and replaced by the scent of the wet birches or +of the pines. Mr. Beebe, at leisure for life’s amenities, leant over +his Rectory gate. Freddy leant by him, smoking a pendant pipe. + +“Suppose we go and hinder those new people opposite for a little.” + +“M’m.” + +“They might amuse you.” + +Freddy, whom his fellow-creatures never amused, suggested that the new +people might be feeling a bit busy, and so on, since they had only just +moved in. + +“I suggested we should hinder them,” said Mr. Beebe. “They are worth +it.” Unlatching the gate, he sauntered over the triangular green to +Cissie Villa. “Hullo!” he cried, shouting in at the open door, through +which much squalor was visible. + +A grave voice replied, “Hullo!” + +“I’ve brought someone to see you.” + +“I’ll be down in a minute.” + +The passage was blocked by a wardrobe, which the removal men had failed +to carry up the stairs. Mr. Beebe edged round it with difficulty. The +sitting-room itself was blocked with books. + +“Are these people great readers?” Freddy whispered. “Are they that +sort?” + +“I fancy they know how to read—a rare accomplishment. What have they +got? Byron. Exactly. A Shropshire Lad. Never heard of it. The Way of +All Flesh. Never heard of it. Gibbon. Hullo! dear George reads German. +Um—um—Schopenhauer, Nietzsche, and so we go on. Well, I suppose your +generation knows its own business, Honeychurch.” + +“Mr. Beebe, look at that,” said Freddy in awestruck tones. + +On the cornice of the wardrobe, the hand of an amateur had painted this +inscription: “Mistrust all enterprises that require new clothes.” + +“I know. Isn’t it jolly? I like that. I’m certain that’s the old man’s +doing.” + +“How very odd of him!” + +“Surely you agree?” + +But Freddy was his mother’s son and felt that one ought not to go on +spoiling the furniture. + +“Pictures!” the clergyman continued, scrambling about the room. +“Giotto—they got that at Florence, I’ll be bound.” + +“The same as Lucy’s got.” + +“Oh, by-the-by, did Miss Honeychurch enjoy London?” + +“She came back yesterday.” + +“I suppose she had a good time?” + +“Yes, very,” said Freddy, taking up a book. “She and Cecil are thicker +than ever.” + +“That’s good hearing.” + +“I wish I wasn’t such a fool, Mr. Beebe.” + +Mr. Beebe ignored the remark. + +“Lucy used to be nearly as stupid as I am, but it’ll be very different +now, mother thinks. She will read all kinds of books.” + +“So will you.” + +“Only medical books. Not books that you can talk about afterwards. +Cecil is teaching Lucy Italian, and he says her playing is wonderful. +There are all kinds of things in it that we have never noticed. Cecil +says—” + +“What on earth are those people doing upstairs? Emerson—we think we’ll +come another time.” + +George ran down-stairs and pushed them into the room without speaking. + +“Let me introduce Mr. Honeychurch, a neighbour.” + +Then Freddy hurled one of the thunderbolts of youth. Perhaps he was +shy, perhaps he was friendly, or perhaps he thought that George’s face +wanted washing. At all events he greeted him with, “How d’ye do? Come +and have a bathe.” + +“Oh, all right,” said George, impassive. + +Mr. Beebe was highly entertained. + +“‘How d’ye do? how d’ye do? Come and have a bathe,’” he chuckled. +“That’s the best conversational opening I’ve ever heard. But I’m afraid +it will only act between men. Can you picture a lady who has been +introduced to another lady by a third lady opening civilities with ‘How +do you do? Come and have a bathe’? And yet you will tell me that the +sexes are equal.” + +“I tell you that they shall be,” said Mr. Emerson, who had been slowly +descending the stairs. “Good afternoon, Mr. Beebe. I tell you they +shall be comrades, and George thinks the same.” + +“We are to raise ladies to our level?” the clergyman inquired. + +“The Garden of Eden,” pursued Mr. Emerson, still descending, “which you +place in the past, is really yet to come. We shall enter it when we no +longer despise our bodies.” + +Mr. Beebe disclaimed placing the Garden of Eden anywhere. + +“In this—not in other things—we men are ahead. We despise the body less +than women do. But not until we are comrades shall we enter the +garden.” + +“I say, what about this bathe?” murmured Freddy, appalled at the mass +of philosophy that was approaching him. + +“I believed in a return to Nature once. But how can we return to Nature +when we have never been with her? To-day, I believe that we must +discover Nature. After many conquests we shall attain simplicity. It is +our heritage.” + +“Let me introduce Mr. Honeychurch, whose sister you will remember at +Florence.” + +“How do you do? Very glad to see you, and that you are taking George +for a bathe. Very glad to hear that your sister is going to marry. +Marriage is a duty. I am sure that she will be happy, for we know Mr. +Vyse, too. He has been most kind. He met us by chance in the National +Gallery, and arranged everything about this delightful house. Though I +hope I have not vexed Sir Harry Otway. I have met so few Liberal +landowners, and I was anxious to compare his attitude towards the game +laws with the Conservative attitude. Ah, this wind! You do well to +bathe. Yours is a glorious country, Honeychurch!” + +“Not a bit!” mumbled Freddy. “I must—that is to say, I have to—have the +pleasure of calling on you later on, my mother says, I hope.” + +“_Call_, my lad? Who taught us that drawing-room twaddle? Call on your +grandmother! Listen to the wind among the pines! Yours is a glorious +country.” + +Mr. Beebe came to the rescue. + +“Mr. Emerson, he will call, I shall call; you or your son will return +our calls before ten days have elapsed. I trust that you have realized +about the ten days’ interval. It does not count that I helped you with +the stair-eyes yesterday. It does not count that they are going to +bathe this afternoon.” + +“Yes, go and bathe, George. Why do you dawdle talking? Bring them back +to tea. Bring back some milk, cakes, honey. The change will do you +good. George has been working very hard at his office. I can’t believe +he’s well.” + +George bowed his head, dusty and sombre, exhaling the peculiar smell of +one who has handled furniture. + +“Do you really want this bathe?” Freddy asked him. “It is only a pond, +don’t you know. I dare say you are used to something better.” + +“Yes—I have said ‘Yes’ already.” + +Mr. Beebe felt bound to assist his young friend, and led the way out of +the house and into the pine-woods. How glorious it was! For a little +time the voice of old Mr. Emerson pursued them dispensing good wishes +and philosophy. It ceased, and they only heard the fair wind blowing +the bracken and the trees. Mr. Beebe, who could be silent, but who +could not bear silence, was compelled to chatter, since the expedition +looked like a failure, and neither of his companions would utter a +word. He spoke of Florence. George attended gravely, assenting or +dissenting with slight but determined gestures that were as +inexplicable as the motions of the tree-tops above their heads. + +“And what a coincidence that you should meet Mr. Vyse! Did you realize +that you would find all the Pension Bertolini down here?” + +“I did not. Miss Lavish told me.” + +“When I was a young man, I always meant to write a ‘History of +Coincidence.’” + +No enthusiasm. + +“Though, as a matter of fact, coincidences are much rarer than we +suppose. For example, it isn’t purely coincidentally that you are here +now, when one comes to reflect.” + +To his relief, George began to talk. + +“It is. I have reflected. It is Fate. Everything is Fate. We are flung +together by Fate, drawn apart by Fate—flung together, drawn apart. The +twelve winds blow us—we settle nothing—” + +“You have not reflected at all,” rapped the clergyman. “Let me give you +a useful tip, Emerson: attribute nothing to Fate. Don’t say, ‘I didn’t +do this,’ for you did it, ten to one. Now I’ll cross-question you. +Where did you first meet Miss Honeychurch and myself?” + +“Italy.” + +“And where did you meet Mr. Vyse, who is going to marry Miss +Honeychurch?” + +“National Gallery.” + +“Looking at Italian art. There you are, and yet you talk of coincidence +and Fate. You naturally seek out things Italian, and so do we and our +friends. This narrows the field immeasurably we meet again in it.” + +“It is Fate that I am here,” persisted George. “But you can call it +Italy if it makes you less unhappy.” + +Mr. Beebe slid away from such heavy treatment of the subject. But he +was infinitely tolerant of the young, and had no desire to snub George. + +“And so for this and for other reasons my ‘History of Coincidence’ is +still to write.” + +Silence. + +Wishing to round off the episode, he added; “We are all so glad that +you have come.” + +Silence. + +“Here we are!” called Freddy. + +“Oh, good!” exclaimed Mr. Beebe, mopping his brow. + +“In there’s the pond. I wish it was bigger,” he added apologetically. + +They climbed down a slippery bank of pine-needles. There lay the pond, +set in its little alp of green—only a pond, but large enough to contain +the human body, and pure enough to reflect the sky. On account of the +rains, the waters had flooded the surrounding grass, which showed like +a beautiful emerald path, tempting these feet towards the central pool. + +“It’s distinctly successful, as ponds go,” said Mr. Beebe. “No +apologies are necessary for the pond.” + +George sat down where the ground was dry, and drearily unlaced his +boots. + +“Aren’t those masses of willow-herb splendid? I love willow-herb in +seed. What’s the name of this aromatic plant?” + +No one knew, or seemed to care. + +“These abrupt changes of vegetation—this little spongeous tract of +water plants, and on either side of it all the growths are tough or +brittle—heather, bracken, hurts, pines. Very charming, very charming.” + +“Mr. Beebe, aren’t you bathing?” called Freddy, as he stripped himself. + +Mr. Beebe thought he was not. + +“Water’s wonderful!” cried Freddy, prancing in. + +“Water’s water,” murmured George. Wetting his hair first—a sure sign of +apathy—he followed Freddy into the divine, as indifferent as if he were +a statue and the pond a pail of soapsuds. It was necessary to use his +muscles. It was necessary to keep clean. Mr. Beebe watched them, and +watched the seeds of the willow-herb dance chorically above their +heads. + +“Apooshoo, apooshoo, apooshoo,” went Freddy, swimming for two strokes +in either direction, and then becoming involved in reeds or mud. + +“Is it worth it?” asked the other, Michelangelesque on the flooded +margin. + +The bank broke away, and he fell into the pool before he had weighed +the question properly. + +“Hee-poof—I’ve swallowed a pollywog, Mr. Beebe, water’s wonderful, +water’s simply ripping.” + +“Water’s not so bad,” said George, reappearing from his plunge, and +sputtering at the sun. + +“Water’s wonderful. Mr. Beebe, do.” + +“Apooshoo, kouf.” + +Mr. Beebe, who was hot, and who always acquiesced where possible, +looked around him. He could detect no parishioners except the +pine-trees, rising up steeply on all sides, and gesturing to each other +against the blue. How glorious it was! The world of motor-cars and +rural Deans receded inimitably. Water, sky, evergreens, a wind—these +things not even the seasons can touch, and surely they lie beyond the +intrusion of man? + +“I may as well wash too”; and soon his garments made a third little +pile on the sward, and he too asserted the wonder of the water. + +It was ordinary water, nor was there very much of it, and, as Freddy +said, it reminded one of swimming in a salad. The three gentlemen +rotated in the pool breast high, after the fashion of the nymphs in +Götterdämmerung. But either because the rains had given a freshness or +because the sun was shedding a most glorious heat, or because two of +the gentlemen were young in years and the third young in spirit—for +some reason or other a change came over them, and they forgot Italy and +Botany and Fate. They began to play. Mr. Beebe and Freddy splashed each +other. A little deferentially, they splashed George. He was quiet: they +feared they had offended him. Then all the forces of youth burst out. +He smiled, flung himself at them, splashed them, ducked them, kicked +them, muddied them, and drove them out of the pool. + +“Race you round it, then,” cried Freddy, and they raced in the +sunshine, and George took a short cut and dirtied his shins, and had to +bathe a second time. Then Mr. Beebe consented to run—a memorable sight. + +They ran to get dry, they bathed to get cool, they played at being +Indians in the willow-herbs and in the bracken, they bathed to get +clean. And all the time three little bundles lay discreetly on the +sward, proclaiming: + +“No. We are what matters. Without us shall no enterprise begin. To us +shall all flesh turn in the end.” + +“A try! A try!” yelled Freddy, snatching up George’s bundle and placing +it beside an imaginary goal-post. + +“Socker rules,” George retorted, scattering Freddy’s bundle with a +kick. + +“Goal!” + +“Goal!” + +“Pass!” + +“Take care my watch!” cried Mr. Beebe. + +Clothes flew in all directions. + +“Take care my hat! No, that’s enough, Freddy. Dress now. No, I say!” + +But the two young men were delirious. Away they twinkled into the +trees, Freddy with a clerical waistcoat under his arm, George with a +wide-awake hat on his dripping hair. + +“That’ll do!” shouted Mr. Beebe, remembering that after all he was in +his own parish. Then his voice changed as if every pine-tree was a +Rural Dean. “Hi! Steady on! I see people coming you fellows!” + +Yells, and widening circles over the dappled earth. + +“Hi! hi! _Ladies!_” + +Neither George nor Freddy was truly refined. Still, they did not hear +Mr. Beebe’s last warning or they would have avoided Mrs. Honeychurch, +Cecil, and Lucy, who were walking down to call on old Mrs. Butterworth. +Freddy dropped the waistcoat at their feet, and dashed into some +bracken. George whooped in their faces, turned and scudded away down +the path to the pond, still clad in Mr. Beebe’s hat. + +“Gracious alive!” cried Mrs. Honeychurch. “Whoever were those +unfortunate people? Oh, dears, look away! And poor Mr. Beebe, too! +Whatever has happened?” + +“Come this way immediately,” commanded Cecil, who always felt that he +must lead women, though he knew not whither, and protect them, though +he knew not against what. He led them now towards the bracken where +Freddy sat concealed. + +“Oh, poor Mr. Beebe! Was that his waistcoat we left in the path? Cecil, +Mr. Beebe’s waistcoat—” + +No business of ours, said Cecil, glancing at Lucy, who was all parasol +and evidently “minded.” + +“I fancy Mr. Beebe jumped back into the pond.” + +“This way, please, Mrs. Honeychurch, this way.” + +They followed him up the bank attempting the tense yet nonchalant +expression that is suitable for ladies on such occasions. + +“Well, _I_ can’t help it,” said a voice close ahead, and Freddy reared +a freckled face and a pair of snowy shoulders out of the fronds. “I +can’t be trodden on, can I?” + +“Good gracious me, dear; so it’s you! What miserable management! Why +not have a comfortable bath at home, with hot and cold laid on?” + +“Look here, mother, a fellow must wash, and a fellow’s got to dry, and +if another fellow—” + +“Dear, no doubt you’re right as usual, but you are in no position to +argue. Come, Lucy.” They turned. “Oh, look—don’t look! Oh, poor Mr. +Beebe! How unfortunate again—” + +For Mr. Beebe was just crawling out of the pond, on whose surface +garments of an intimate nature did float; while George, the world-weary +George, shouted to Freddy that he had hooked a fish. + +“And me, I’ve swallowed one,” answered he of the bracken. “I’ve +swallowed a pollywog. It wriggleth in my tummy. I shall die—Emerson you +beast, you’ve got on my bags.” + +“Hush, dears,” said Mrs. Honeychurch, who found it impossible to remain +shocked. “And do be sure you dry yourselves thoroughly first. All these +colds come of not drying thoroughly.” + +“Mother, do come away,” said Lucy. “Oh for goodness’ sake, do come.” + +“Hullo!” cried George, so that again the ladies stopped. + +He regarded himself as dressed. Barefoot, bare-chested, radiant and +personable against the shadowy woods, he called: + +“Hullo, Miss Honeychurch! Hullo!” + +“Bow, Lucy; better bow. Whoever is it? I shall bow.” + +Miss Honeychurch bowed. + +That evening and all that night the water ran away. On the morrow the +pool had shrunk to its old size and lost its glory. It had been a call +to the blood and to the relaxed will, a passing benediction whose +influence did not pass, a holiness, a spell, a momentary chalice for +youth. + + + + +Chapter XIII +How Miss Bartlett’s Boiler Was So Tiresome + + +How often had Lucy rehearsed this bow, this interview! But she had +always rehearsed them indoors, and with certain accessories, which +surely we have a right to assume. Who could foretell that she and +George would meet in the rout of a civilization, amidst an army of +coats and collars and boots that lay wounded over the sunlit earth? She +had imagined a young Mr. Emerson, who might be shy or morbid or +indifferent or furtively impudent. She was prepared for all of these. +But she had never imagined one who would be happy and greet her with +the shout of the morning star. + +Indoors herself, partaking of tea with old Mrs. Butterworth, she +reflected that it is impossible to foretell the future with any degree +of accuracy, that it is impossible to rehearse life. A fault in the +scenery, a face in the audience, an irruption of the audience on to the +stage, and all our carefully planned gestures mean nothing, or mean too +much. “I will bow,” she had thought. “I will not shake hands with him. +That will be just the proper thing.” She had bowed—but to whom? To +gods, to heroes, to the nonsense of school-girls! She had bowed across +the rubbish that cumbers the world. + +So ran her thoughts, while her faculties were busy with Cecil. It was +another of those dreadful engagement calls. Mrs. Butterworth had wanted +to see him, and he did not want to be seen. He did not want to hear +about hydrangeas, why they change their colour at the seaside. He did +not want to join the C. O. S. When cross he was always elaborate, and +made long, clever answers where “Yes” or “No” would have done. Lucy +soothed him and tinkered at the conversation in a way that promised +well for their married peace. No one is perfect, and surely it is wiser +to discover the imperfections before wedlock. Miss Bartlett, indeed, +though not in word, had taught the girl that this our life contains +nothing satisfactory. Lucy, though she disliked the teacher, regarded +the teaching as profound, and applied it to her lover. + +“Lucy,” said her mother, when they got home, “is anything the matter +with Cecil?” + +The question was ominous; up till now Mrs. Honeychurch had behaved with +charity and restraint. + +“No, I don’t think so, mother; Cecil’s all right.” + +“Perhaps he’s tired.” + +Lucy compromised: perhaps Cecil was a little tired. + +“Because otherwise”—she pulled out her bonnet-pins with gathering +displeasure—“because otherwise I cannot account for him.” + +“I do think Mrs. Butterworth is rather tiresome, if you mean that.” + +“Cecil has told you to think so. You were devoted to her as a little +girl, and nothing will describe her goodness to you through the typhoid +fever. No—it is just the same thing everywhere.” + +“Let me just put your bonnet away, may I?” + +“Surely he could answer her civilly for one half-hour?” + +“Cecil has a very high standard for people,” faltered Lucy, seeing +trouble ahead. “It’s part of his ideals—it is really that that makes +him sometimes seem—” + +“Oh, rubbish! If high ideals make a young man rude, the sooner he gets +rid of them the better,” said Mrs. Honeychurch, handing her the bonnet. + +“Now, mother! I’ve seen you cross with Mrs. Butterworth yourself!” + +“Not in that way. At times I could wring her neck. But not in that way. +No. It is the same with Cecil all over.” + +“By-the-by—I never told you. I had a letter from Charlotte while I was +away in London.” + +This attempt to divert the conversation was too puerile, and Mrs. +Honeychurch resented it. + +“Since Cecil came back from London, nothing appears to please him. +Whenever I speak he winces;—I see him, Lucy; it is useless to +contradict me. No doubt I am neither artistic nor literary nor +intellectual nor musical, but I cannot help the drawing-room furniture; +your father bought it and we must put up with it, will Cecil kindly +remember.” + +“I—I see what you mean, and certainly Cecil oughtn’t to. But he does +not mean to be uncivil—he once explained—it is the _things_ that upset +him—he is easily upset by ugly things—he is not uncivil to _people_.” + +“Is it a thing or a person when Freddy sings?” + +“You can’t expect a really musical person to enjoy comic songs as we +do.” + +“Then why didn’t he leave the room? Why sit wriggling and sneering and +spoiling everyone’s pleasure?” + +“We mustn’t be unjust to people,” faltered Lucy. Something had +enfeebled her, and the case for Cecil, which she had mastered so +perfectly in London, would not come forth in an effective form. The two +civilizations had clashed—Cecil hinted that they might—and she was +dazzled and bewildered, as though the radiance that lies behind all +civilization had blinded her eyes. Good taste and bad taste were only +catchwords, garments of diverse cut; and music itself dissolved to a +whisper through pine-trees, where the song is not distinguishable from +the comic song. + +She remained in much embarrassment, while Mrs. Honeychurch changed her +frock for dinner; and every now and then she said a word, and made +things no better. There was no concealing the fact, Cecil had meant to +be supercilious, and he had succeeded. And Lucy—she knew not why—wished +that the trouble could have come at any other time. + +“Go and dress, dear; you’ll be late.” + +“All right, mother—” + +“Don’t say ‘All right’ and stop. Go.” + +She obeyed, but loitered disconsolately at the landing window. It faced +north, so there was little view, and no view of the sky. Now, as in the +winter, the pine-trees hung close to her eyes. One connected the +landing window with depression. No definite problem menaced her, but +she sighed to herself, “Oh, dear, what shall I do, what shall I do?” It +seemed to her that everyone else was behaving very badly. And she ought +not to have mentioned Miss Bartlett’s letter. She must be more careful; +her mother was rather inquisitive, and might have asked what it was +about. Oh, dear, what should she do?—and then Freddy came bounding +upstairs, and joined the ranks of the ill-behaved. + +“I say, those are topping people.” + +“My dear baby, how tiresome you’ve been! You have no business to take +them bathing in the Sacred Lake; it’s much too public. It was all right +for you but most awkward for everyone else. Do be more careful. You +forget the place is growing half suburban.” + +“I say, is anything on to-morrow week?” + +“Not that I know of.” + +“Then I want to ask the Emersons up to Sunday tennis.” + +“Oh, I wouldn’t do that, Freddy, I wouldn’t do that with all this +muddle.” + +“What’s wrong with the court? They won’t mind a bump or two, and I’ve +ordered new balls.” + +“I meant _it’s_ better not. I really mean it.” + +He seized her by the elbows and humorously danced her up and down the +passage. She pretended not to mind, but she could have screamed with +temper. Cecil glanced at them as he proceeded to his toilet and they +impeded Mary with her brood of hot-water cans. Then Mrs. Honeychurch +opened her door and said: “Lucy, what a noise you’re making! I have +something to say to you. Did you say you had had a letter from +Charlotte?” and Freddy ran away. + +“Yes. I really can’t stop. I must dress too.” + +“How’s Charlotte?” + +“All right.” + +“Lucy!” + +The unfortunate girl returned. + +“You’ve a bad habit of hurrying away in the middle of one’s sentences. +Did Charlotte mention her boiler?” + +“Her _what?_” + +“Don’t you remember that her boiler was to be had out in October, and +her bath cistern cleaned out, and all kinds of terrible to-doings?” + +“I can’t remember all Charlotte’s worries,” said Lucy bitterly. “I +shall have enough of my own, now that you are not pleased with Cecil.” + +Mrs. Honeychurch might have flamed out. She did not. She said: “Come +here, old lady—thank you for putting away my bonnet—kiss me.” And, +though nothing is perfect, Lucy felt for the moment that her mother and +Windy Corner and the Weald in the declining sun were perfect. + +So the grittiness went out of life. It generally did at Windy Corner. +At the last minute, when the social machine was clogged hopelessly, one +member or other of the family poured in a drop of oil. Cecil despised +their methods—perhaps rightly. At all events, they were not his own. + +Dinner was at half-past seven. Freddy gabbled the grace, and they drew +up their heavy chairs and fell to. Fortunately, the men were hungry. +Nothing untoward occurred until the pudding. Then Freddy said: + +“Lucy, what’s Emerson like?” + +“I saw him in Florence,” said Lucy, hoping that this would pass for a +reply. + +“Is he the clever sort, or is he a decent chap?” + +“Ask Cecil; it is Cecil who brought him here.” + +“He is the clever sort, like myself,” said Cecil. + +Freddy looked at him doubtfully. + +“How well did you know them at the Bertolini?” asked Mrs. Honeychurch. + +“Oh, very slightly. I mean, Charlotte knew them even less than I did.” + +“Oh, that reminds me—you never told me what Charlotte said in her +letter.” + +“One thing and another,” said Lucy, wondering whether she would get +through the meal without a lie. “Among other things, that an awful +friend of hers had been bicycling through Summer Street, wondered if +she’d come up and see us, and mercifully didn’t.” + +“Lucy, I do call the way you talk unkind.” + +“She was a novelist,” said Lucy craftily. The remark was a happy one, +for nothing roused Mrs. Honeychurch so much as literature in the hands +of females. She would abandon every topic to inveigh against those +women who (instead of minding their houses and their children) seek +notoriety by print. Her attitude was: “If books must be written, let +them be written by men”; and she developed it at great length, while +Cecil yawned and Freddy played at “This year, next year, now, never,” +with his plum-stones, and Lucy artfully fed the flames of her mother’s +wrath. But soon the conflagration died down, and the ghosts began to +gather in the darkness. There were too many ghosts about. The original +ghost—that touch of lips on her cheek—had surely been laid long ago; it +could be nothing to her that a man had kissed her on a mountain once. +But it had begotten a spectral family—Mr. Harris, Miss Bartlett’s +letter, Mr. Beebe’s memories of violets—and one or other of these was +bound to haunt her before Cecil’s very eyes. It was Miss Bartlett who +returned now, and with appalling vividness. + +“I have been thinking, Lucy, of that letter of Charlotte’s. How is +she?” + +“I tore the thing up.” + +“Didn’t she say how she was? How does she sound? Cheerful?” + +“Oh, yes I suppose so—no—not very cheerful, I suppose.” + +“Then, depend upon it, it _is_ the boiler. I know myself how water +preys upon one’s mind. I would rather anything else—even a misfortune +with the meat.” + +Cecil laid his hand over his eyes. + +“So would I,” asserted Freddy, backing his mother up—backing up the +spirit of her remark rather than the substance. + +“And I have been thinking,” she added rather nervously, “surely we +could squeeze Charlotte in here next week, and give her a nice holiday +while the plumbers at Tunbridge Wells finish. I have not seen poor +Charlotte for so long.” + +It was more than her nerves could stand. And she could not protest +violently after her mother’s goodness to her upstairs. + +“Mother, no!” she pleaded. “It’s impossible. We can’t have Charlotte on +the top of the other things; we’re squeezed to death as it is. Freddy’s +got a friend coming Tuesday, there’s Cecil, and you’ve promised to take +in Minnie Beebe because of the diphtheria scare. It simply can’t be +done.” + +“Nonsense! It can.” + +“If Minnie sleeps in the bath. Not otherwise.” + +“Minnie can sleep with you.” + +“I won’t have her.” + +“Then, if you’re so selfish, Mr. Floyd must share a room with Freddy.” + +“Miss Bartlett, Miss Bartlett, Miss Bartlett,” moaned Cecil, again +laying his hand over his eyes. + +“It’s impossible,” repeated Lucy. “I don’t want to make difficulties, +but it really isn’t fair on the maids to fill up the house so.” + +Alas! + +“The truth is, dear, you don’t like Charlotte.” + +“No, I don’t. And no more does Cecil. She gets on our nerves. You +haven’t seen her lately, and don’t realize how tiresome she can be, +though so good. So please, mother, don’t worry us this last summer; but +spoil us by not asking her to come.” + +“Hear, hear!” said Cecil. + +Mrs. Honeychurch, with more gravity than usual, and with more feeling +than she usually permitted herself, replied: “This isn’t very kind of +you two. You have each other and all these woods to walk in, so full of +beautiful things; and poor Charlotte has only the water turned off and +plumbers. You are young, dears, and however clever young people are, +and however many books they read, they will never guess what it feels +like to grow old.” + +Cecil crumbled his bread. + +“I must say Cousin Charlotte was very kind to me that year I called on +my bike,” put in Freddy. “She thanked me for coming till I felt like +such a fool, and fussed round no end to get an egg boiled for my tea +just right.” + +“I know, dear. She is kind to everyone, and yet Lucy makes this +difficulty when we try to give her some little return.” + +But Lucy hardened her heart. It was no good being kind to Miss +Bartlett. She had tried herself too often and too recently. One might +lay up treasure in heaven by the attempt, but one enriched neither Miss +Bartlett nor any one else upon earth. She was reduced to saying: “I +can’t help it, mother. I don’t like Charlotte. I admit it’s horrid of +me.” + +“From your own account, you told her as much.” + +“Well, she would leave Florence so stupidly. She flurried—” + +The ghosts were returning; they filled Italy, they were even usurping +the places she had known as a child. The Sacred Lake would never be the +same again, and, on Sunday week, something would even happen to Windy +Corner. How would she fight against ghosts? For a moment the visible +world faded away, and memories and emotions alone seemed real. + +“I suppose Miss Bartlett must come, since she boils eggs so well,” said +Cecil, who was in rather a happier frame of mind, thanks to the +admirable cooking. + +“I didn’t mean the egg was _well_ boiled,” corrected Freddy, “because +in point of fact she forgot to take it off, and as a matter of fact I +don’t care for eggs. I only meant how jolly kind she seemed.” + +Cecil frowned again. Oh, these Honeychurches! Eggs, boilers, +hydrangeas, maids—of such were their lives compact. “May me and Lucy +get down from our chairs?” he asked, with scarcely veiled insolence. +“We don’t want no dessert.” + + + + +Chapter XIV +How Lucy Faced the External Situation Bravely + + +Of course Miss Bartlett accepted. And, equally of course, she felt sure +that she would prove a nuisance, and begged to be given an inferior +spare room—something with no view, anything. Her love to Lucy. And, +equally of course, George Emerson could come to tennis on the Sunday +week. + +Lucy faced the situation bravely, though, like most of us, she only +faced the situation that encompassed her. She never gazed inwards. If +at times strange images rose from the depths, she put them down to +nerves. When Cecil brought the Emersons to Summer Street, it had upset +her nerves. Charlotte would burnish up past foolishness, and this might +upset her nerves. She was nervous at night. When she talked to +George—they met again almost immediately at the Rectory—his voice moved +her deeply, and she wished to remain near him. How dreadful if she +really wished to remain near him! Of course, the wish was due to +nerves, which love to play such perverse tricks upon us. Once she had +suffered from “things that came out of nothing and meant she didn’t +know what.” Now Cecil had explained psychology to her one wet +afternoon, and all the troubles of youth in an unknown world could be +dismissed. + +It is obvious enough for the reader to conclude, “She loves young +Emerson.” A reader in Lucy’s place would not find it obvious. Life is +easy to chronicle, but bewildering to practice, and we welcome “nerves” +or any other shibboleth that will cloak our personal desire. She loved +Cecil; George made her nervous; will the reader explain to her that the +phrases should have been reversed? + +But the external situation—she will face that bravely. + +The meeting at the Rectory had passed off well enough. Standing between +Mr. Beebe and Cecil, she had made a few temperate allusions to Italy, +and George had replied. She was anxious to show that she was not shy, +and was glad that he did not seem shy either. + +“A nice fellow,” said Mr. Beebe afterwards “He will work off his +crudities in time. I rather mistrust young men who slip into life +gracefully.” + +Lucy said, “He seems in better spirits. He laughs more.” + +“Yes,” replied the clergyman. “He is waking up.” + +That was all. But, as the week wore on, more of her defences fell, and +she entertained an image that had physical beauty. In spite of the +clearest directions, Miss Bartlett contrived to bungle her arrival. She +was due at the South-Eastern station at Dorking, whither Mrs. +Honeychurch drove to meet her. She arrived at the London and Brighton +station, and had to hire a cab up. No one was at home except Freddy and +his friend, who had to stop their tennis and to entertain her for a +solid hour. Cecil and Lucy turned up at four o’clock, and these, with +little Minnie Beebe, made a somewhat lugubrious sextette upon the upper +lawn for tea. + +“I shall never forgive myself,” said Miss Bartlett, who kept on rising +from her seat, and had to be begged by the united company to remain. “I +have upset everything. Bursting in on young people! But I insist on +paying for my cab up. Grant that, at any rate.” + +“Our visitors never do such dreadful things,” said Lucy, while her +brother, in whose memory the boiled egg had already grown +unsubstantial, exclaimed in irritable tones: “Just what I’ve been +trying to convince Cousin Charlotte of, Lucy, for the last half hour.” + +“I do not feel myself an ordinary visitor,” said Miss Bartlett, and +looked at her frayed glove. + +“All right, if you’d really rather. Five shillings, and I gave a bob to +the driver.” + +Miss Bartlett looked in her purse. Only sovereigns and pennies. Could +any one give her change? Freddy had half a quid and his friend had four +half-crowns. Miss Bartlett accepted their moneys and then said: “But +who am I to give the sovereign to?” + +“Let’s leave it all till mother comes back,” suggested Lucy. + +“No, dear; your mother may take quite a long drive now that she is not +hampered with me. We all have our little foibles, and mine is the +prompt settling of accounts.” + +Here Freddy’s friend, Mr. Floyd, made the one remark of his that need +be quoted: he offered to toss Freddy for Miss Bartlett’s quid. A +solution seemed in sight, and even Cecil, who had been ostentatiously +drinking his tea at the view, felt the eternal attraction of Chance, +and turned round. + +But this did not do, either. + +“Please—please—I know I am a sad spoil-sport, but it would make me +wretched. I should practically be robbing the one who lost.” + +“Freddy owes me fifteen shillings,” interposed Cecil. “So it will work +out right if you give the pound to me.” + +“Fifteen shillings,” said Miss Bartlett dubiously. “How is that, Mr. +Vyse?” + +“Because, don’t you see, Freddy paid your cab. Give me the pound, and +we shall avoid this deplorable gambling.” + +Miss Bartlett, who was poor at figures, became bewildered and rendered +up the sovereign, amidst the suppressed gurgles of the other youths. +For a moment Cecil was happy. He was playing at nonsense among his +peers. Then he glanced at Lucy, in whose face petty anxieties had +marred the smiles. In January he would rescue his Leonardo from this +stupefying twaddle. + +“But I don’t see that!” exclaimed Minnie Beebe who had narrowly watched +the iniquitous transaction. “I don’t see why Mr. Vyse is to have the +quid.” + +“Because of the fifteen shillings and the five,” they said solemnly. +“Fifteen shillings and five shillings make one pound, you see.” + +“But I don’t see—” + +They tried to stifle her with cake. + +“No, thank you. I’m done. I don’t see why—Freddy, don’t poke me. Miss +Honeychurch, your brother’s hurting me. Ow! What about Mr. Floyd’s ten +shillings? Ow! No, I don’t see and I never shall see why Miss +What’s-her-name shouldn’t pay that bob for the driver.” + +“I had forgotten the driver,” said Miss Bartlett, reddening. “Thank +you, dear, for reminding me. A shilling was it? Can any one give me +change for half a crown?” + +“I’ll get it,” said the young hostess, rising with decision. + +“Cecil, give me that sovereign. No, give me up that sovereign. I’ll get +Euphemia to change it, and we’ll start the whole thing again from the +beginning.” + +“Lucy—Lucy—what a nuisance I am!” protested Miss Bartlett, and followed +her across the lawn. Lucy tripped ahead, simulating hilarity. When they +were out of earshot Miss Bartlett stopped her wails and said quite +briskly: “Have you told him about him yet?” + +“No, I haven’t,” replied Lucy, and then could have bitten her tongue +for understanding so quickly what her cousin meant. “Let me see—a +sovereign’s worth of silver.” + +She escaped into the kitchen. Miss Bartlett’s sudden transitions were +too uncanny. It sometimes seemed as if she planned every word she spoke +or caused to be spoken; as if all this worry about cabs and change had +been a ruse to surprise the soul. + +“No, I haven’t told Cecil or any one,” she remarked, when she returned. +“I promised you I shouldn’t. Here is your money—all shillings, except +two half-crowns. Would you count it? You can settle your debt nicely +now.” + +Miss Bartlett was in the drawing-room, gazing at the photograph of St. +John ascending, which had been framed. + +“How dreadful!” she murmured, “how more than dreadful, if Mr. Vyse +should come to hear of it from some other source.” + +“Oh, no, Charlotte,” said the girl, entering the battle. “George +Emerson is all right, and what other source is there?” + +Miss Bartlett considered. “For instance, the driver. I saw him looking +through the bushes at you, remember he had a violet between his teeth.” + +Lucy shuddered a little. “We shall get the silly affair on our nerves +if we aren’t careful. How could a Florentine cab-driver ever get hold +of Cecil?” + +“We must think of every possibility.” + +“Oh, it’s all right.” + +“Or perhaps old Mr. Emerson knows. In fact, he is certain to know.” + +“I don’t care if he does. I was grateful to you for your letter, but +even if the news does get round, I think I can trust Cecil to laugh at +it.” + +“To contradict it?” + +“No, to laugh at it.” But she knew in her heart that she could not +trust him, for he desired her untouched. + +“Very well, dear, you know best. Perhaps gentlemen are different to +what they were when I was young. Ladies are certainly different.” + +“Now, Charlotte!” She struck at her playfully. “You kind, anxious +thing. What _would_ you have me do? First you say ‘Don’t tell’; and +then you say, ‘Tell’. Which is it to be? Quick!” + +Miss Bartlett sighed “I am no match for you in conversation, dearest. I +blush when I think how I interfered at Florence, and you so well able +to look after yourself, and so much cleverer in all ways than I am. You +will never forgive me.” + +“Shall we go out, then. They will smash all the china if we don’t.” + +For the air rang with the shrieks of Minnie, who was being scalped with +a teaspoon. + +“Dear, one moment—we may not have this chance for a chat again. Have +you seen the young one yet?” + +“Yes, I have.” + +“What happened?” + +“We met at the Rectory.” + +“What line is he taking up?” + +“No line. He talked about Italy, like any other person. It is really +all right. What advantage would he get from being a cad, to put it +bluntly? I do wish I could make you see it my way. He really won’t be +any nuisance, Charlotte.” + +“Once a cad, always a cad. That is my poor opinion.” + +Lucy paused. “Cecil said one day—and I thought it so profound—that +there are two kinds of cads—the conscious and the subconscious.” She +paused again, to be sure of doing justice to Cecil’s profundity. +Through the window she saw Cecil himself, turning over the pages of a +novel. It was a new one from Smith’s library. Her mother must have +returned from the station. + +“Once a cad, always a cad,” droned Miss Bartlett. + +“What I mean by subconscious is that Emerson lost his head. I fell into +all those violets, and he was silly and surprised. I don’t think we +ought to blame him very much. It makes such a difference when you see a +person with beautiful things behind him unexpectedly. It really does; +it makes an enormous difference, and he lost his head: he doesn’t +admire me, or any of that nonsense, one straw. Freddy rather likes him, +and has asked him up here on Sunday, so you can judge for yourself. He +has improved; he doesn’t always look as if he’s going to burst into +tears. He is a clerk in the General Manager’s office at one of the big +railways—not a porter! and runs down to his father for week-ends. Papa +was to do with journalism, but is rheumatic and has retired. There! Now +for the garden.” She took hold of her guest by the arm. “Suppose we +don’t talk about this silly Italian business any more. We want you to +have a nice restful visit at Windy Corner, with no worriting.” + +Lucy thought this rather a good speech. The reader may have detected an +unfortunate slip in it. Whether Miss Bartlett detected the slip one +cannot say, for it is impossible to penetrate into the minds of elderly +people. She might have spoken further, but they were interrupted by the +entrance of her hostess. Explanations took place, and in the midst of +them Lucy escaped, the images throbbing a little more vividly in her +brain. + + + + +Chapter XV +The Disaster Within + + +The Sunday after Miss Bartlett’s arrival was a glorious day, like most +of the days of that year. In the Weald, autumn approached, breaking up +the green monotony of summer, touching the parks with the grey bloom of +mist, the beech-trees with russet, the oak-trees with gold. Up on the +heights, battalions of black pines witnessed the change, themselves +unchangeable. Either country was spanned by a cloudless sky, and in +either arose the tinkle of church bells. + +The garden of Windy Corners was deserted except for a red book, which +lay sunning itself upon the gravel path. From the house came incoherent +sounds, as of females preparing for worship. “The men say they won’t +go”—“Well, I don’t blame them”—Minnie says, “need she go?”—“Tell her, +no nonsense”—“Anne! Mary! Hook me behind!”—“Dearest Lucia, may I +trespass upon you for a pin?” For Miss Bartlett had announced that she +at all events was one for church. + +The sun rose higher on its journey, guided, not by Phaethon, but by +Apollo, competent, unswerving, divine. Its rays fell on the ladies +whenever they advanced towards the bedroom windows; on Mr. Beebe down +at Summer Street as he smiled over a letter from Miss Catharine Alan; +on George Emerson cleaning his father’s boots; and lastly, to complete +the catalogue of memorable things, on the red book mentioned +previously. The ladies move, Mr. Beebe moves, George moves, and +movement may engender shadow. But this book lies motionless, to be +caressed all the morning by the sun and to raise its covers slightly, +as though acknowledging the caress. + +Presently Lucy steps out of the drawing-room window. Her new cerise +dress has been a failure, and makes her look tawdry and wan. At her +throat is a garnet brooch, on her finger a ring set with rubies—an +engagement ring. Her eyes are bent to the Weald. She frowns a +little—not in anger, but as a brave child frowns when he is trying not +to cry. In all that expanse no human eye is looking at her, and she may +frown unrebuked and measure the spaces that yet survive between Apollo +and the western hills. + +“Lucy! Lucy! What’s that book? Who’s been taking a book out of the +shelf and leaving it about to spoil?” + +“It’s only the library book that Cecil’s been reading.” + +“But pick it up, and don’t stand idling there like a flamingo.” + +Lucy picked up the book and glanced at the title listlessly, Under a +Loggia. She no longer read novels herself, devoting all her spare time +to solid literature in the hope of catching Cecil up. It was dreadful +how little she knew, and even when she thought she knew a thing, like +the Italian painters, she found she had forgotten it. Only this morning +she had confused Francesco Francia with Piero della Francesca, and +Cecil had said, “What! you aren’t forgetting your Italy already?” And +this too had lent anxiety to her eyes when she saluted the dear view +and the dear garden in the foreground, and above them, scarcely +conceivable elsewhere, the dear sun. + +“Lucy—have you a sixpence for Minnie and a shilling for yourself?” + +She hastened in to her mother, who was rapidly working herself into a +Sunday fluster. + +“It’s a special collection—I forget what for. I do beg, no vulgar +clinking in the plate with halfpennies; see that Minnie has a nice +bright sixpence. Where is the child? Minnie! That book’s all warped. +(Gracious, how plain you look!) Put it under the Atlas to press. +Minnie!” + +“Oh, Mrs. Honeychurch—” from the upper regions. + +“Minnie, don’t be late. Here comes the horse”—it was always the horse, +never the carriage. “Where’s Charlotte? Run up and hurry her. Why is +she so long? She had nothing to do. She never brings anything but +blouses. Poor Charlotte—How I do detest blouses! Minnie!” + +Paganism is infectious—more infectious than diphtheria or piety—and the +Rector’s niece was taken to church protesting. As usual, she didn’t see +why. Why shouldn’t she sit in the sun with the young men? The young +men, who had now appeared, mocked her with ungenerous words. Mrs. +Honeychurch defended orthodoxy, and in the midst of the confusion Miss +Bartlett, dressed in the very height of the fashion, came strolling +down the stairs. + +“Dear Marian, I am very sorry, but I have no small change—nothing but +sovereigns and half crowns. Could any one give me—” + +“Yes, easily. Jump in. Gracious me, how smart you look! What a lovely +frock! You put us all to shame.” + +“If I did not wear my best rags and tatters now, when should I wear +them?” said Miss Bartlett reproachfully. She got into the victoria and +placed herself with her back to the horse. The necessary roar ensued, +and then they drove off. + +“Good-bye! Be good!” called out Cecil. + +Lucy bit her lip, for the tone was sneering. On the subject of “church +and so on” they had had rather an unsatisfactory conversation. He had +said that people ought to overhaul themselves, and she did not want to +overhaul herself; she did not know it was done. Honest orthodoxy Cecil +respected, but he always assumed that honesty is the result of a +spiritual crisis; he could not imagine it as a natural birthright, that +might grow heavenward like flowers. All that he said on this subject +pained her, though he exuded tolerance from every pore; somehow the +Emersons were different. + +She saw the Emersons after church. There was a line of carriages down +the road, and the Honeychurch vehicle happened to be opposite Cissie +Villa. To save time, they walked over the green to it, and found father +and son smoking in the garden. + +“Introduce me,” said her mother. “Unless the young man considers that +he knows me already.” + +He probably did; but Lucy ignored the Sacred Lake and introduced them +formally. Old Mr. Emerson claimed her with much warmth, and said how +glad he was that she was going to be married. She said yes, she was +glad too; and then, as Miss Bartlett and Minnie were lingering behind +with Mr. Beebe, she turned the conversation to a less disturbing topic, +and asked him how he liked his new house. + +“Very much,” he replied, but there was a note of offence in his voice; +she had never known him offended before. He added: “We find, though, +that the Miss Alans were coming, and that we have turned them out. +Women mind such a thing. I am very much upset about it.” + +“I believe that there was some misunderstanding,” said Mrs. Honeychurch +uneasily. + +“Our landlord was told that we should be a different type of person,” +said George, who seemed disposed to carry the matter further. “He +thought we should be artistic. He is disappointed.” + +“And I wonder whether we ought to write to the Miss Alans and offer to +give it up. What do you think?” He appealed to Lucy. + +“Oh, stop now you have come,” said Lucy lightly. She must avoid +censuring Cecil. For it was on Cecil that the little episode turned, +though his name was never mentioned. + +“So George says. He says that the Miss Alans must go to the wall. Yet +it does seem so unkind.” + +“There is only a certain amount of kindness in the world,” said George, +watching the sunlight flash on the panels of the passing carriages. + +“Yes!” exclaimed Mrs. Honeychurch. “That’s exactly what I say. Why all +this twiddling and twaddling over two Miss Alans?” + +“There is a certain amount of kindness, just as there is a certain +amount of light,” he continued in measured tones. “We cast a shadow on +something wherever we stand, and it is no good moving from place to +place to save things; because the shadow always follows. Choose a place +where you won’t do harm—yes, choose a place where you won’t do very +much harm, and stand in it for all you are worth, facing the sunshine.” + +“Oh, Mr. Emerson, I see you’re clever!” + +“Eh—?” + +“I see you’re going to be clever. I hope you didn’t go behaving like +that to poor Freddy.” + +George’s eyes laughed, and Lucy suspected that he and her mother would +get on rather well. + +“No, I didn’t,” he said. “He behaved that way to me. It is his +philosophy. Only he starts life with it; and I have tried the Note of +Interrogation first.” + +“What _do_ you mean? No, never mind what you mean. Don’t explain. He +looks forward to seeing you this afternoon. Do you play tennis? Do you +mind tennis on Sunday—?” + +“George mind tennis on Sunday! George, after his education, distinguish +between Sunday—” + +“Very well, George doesn’t mind tennis on Sunday. No more do I. That’s +settled. Mr. Emerson, if you could come with your son we should be so +pleased.” + +He thanked her, but the walk sounded rather far; he could only potter +about in these days. + +She turned to George: “And then he wants to give up his house to the +Miss Alans.” + +“I know,” said George, and put his arm round his father’s neck. The +kindness that Mr. Beebe and Lucy had always known to exist in him came +out suddenly, like sunlight touching a vast landscape—a touch of the +morning sun? She remembered that in all his perversities he had never +spoken against affection. + +Miss Bartlett approached. + +“You know our cousin, Miss Bartlett,” said Mrs. Honeychurch pleasantly. +“You met her with my daughter in Florence.” + +“Yes, indeed!” said the old man, and made as if he would come out of +the garden to meet the lady. Miss Bartlett promptly got into the +victoria. Thus entrenched, she emitted a formal bow. It was the pension +Bertolini again, the dining-table with the decanters of water and wine. +It was the old, old battle of the room with the view. + +George did not respond to the bow. Like any boy, he blushed and was +ashamed; he knew that the chaperon remembered. He said: “I—I’ll come up +to tennis if I can manage it,” and went into the house. Perhaps +anything that he did would have pleased Lucy, but his awkwardness went +straight to her heart; men were not gods after all, but as human and as +clumsy as girls; even men might suffer from unexplained desires, and +need help. To one of her upbringing, and of her destination, the +weakness of men was a truth unfamiliar, but she had surmised it at +Florence, when George threw her photographs into the River Arno. + +“George, don’t go,” cried his father, who thought it a great treat for +people if his son would talk to them. “George has been in such good +spirits today, and I am sure he will end by coming up this afternoon.” + +Lucy caught her cousin’s eye. Something in its mute appeal made her +reckless. “Yes,” she said, raising her voice, “I do hope he will.” Then +she went to the carriage and murmured, “The old man hasn’t been told; I +knew it was all right.” Mrs. Honeychurch followed her, and they drove +away. + +Satisfactory that Mr. Emerson had not been told of the Florence +escapade; yet Lucy’s spirits should not have leapt up as if she had +sighted the ramparts of heaven. Satisfactory; yet surely she greeted it +with disproportionate joy. All the way home the horses’ hoofs sang a +tune to her: “He has not told, he has not told.” Her brain expanded the +melody: “He has not told his father—to whom he tells all things. It was +not an exploit. He did not laugh at me when I had gone.” She raised her +hand to her cheek. “He does not love me. No. How terrible if he did! +But he has not told. He will not tell.” + +She longed to shout the words: “It is all right. It’s a secret between +us two for ever. Cecil will never hear.” She was even glad that Miss +Bartlett had made her promise secrecy, that last dark evening at +Florence, when they had knelt packing in his room. The secret, big or +little, was guarded. + +Only three English people knew of it in the world. Thus she interpreted +her joy. She greeted Cecil with unusual radiance, because she felt so +safe. As he helped her out of the carriage, she said: + +“The Emersons have been so nice. George Emerson has improved +enormously.” + +“How are my protégés?” asked Cecil, who took no real interest in them, +and had long since forgotten his resolution to bring them to Windy +Corner for educational purposes. + +“Protégés!” she exclaimed with some warmth. For the only relationship +which Cecil conceived was feudal: that of protector and protected. He +had no glimpse of the comradeship after which the girl’s soul yearned. + +“You shall see for yourself how your protégés are. George Emerson is +coming up this afternoon. He is a most interesting man to talk to. Only +don’t—” She nearly said, “Don’t protect him.” But the bell was ringing +for lunch, and, as often happened, Cecil had paid no great attention to +her remarks. Charm, not argument, was to be her forte. + +Lunch was a cheerful meal. Generally Lucy was depressed at meals. Some +one had to be soothed—either Cecil or Miss Bartlett or a Being not +visible to the mortal eye—a Being who whispered to her soul: “It will +not last, this cheerfulness. In January you must go to London to +entertain the grandchildren of celebrated men.” But to-day she felt she +had received a guarantee. Her mother would always sit there, her +brother here. The sun, though it had moved a little since the morning, +would never be hidden behind the western hills. After luncheon they +asked her to play. She had seen Gluck’s Armide that year, and played +from memory the music of the enchanted garden—the music to which Renaud +approaches, beneath the light of an eternal dawn, the music that never +gains, never wanes, but ripples for ever like the tideless seas of +fairyland. Such music is not for the piano, and her audience began to +get restive, and Cecil, sharing the discontent, called out: “Now play +us the other garden—the one in Parsifal.” + +She closed the instrument. + +“Not very dutiful,” said her mother’s voice. + +Fearing that she had offended Cecil, she turned quickly round. There +George was. He had crept in without interrupting her. + +“Oh, I had no idea!” she exclaimed, getting very red; and then, without +a word of greeting, she reopened the piano. Cecil should have the +Parsifal, and anything else that he liked. + +“Our performer has changed her mind,” said Miss Bartlett, perhaps +implying, she will play the music to Mr. Emerson. Lucy did not know +what to do nor even what she wanted to do. She played a few bars of the +Flower Maidens’ song very badly and then she stopped. + +“I vote tennis,” said Freddy, disgusted at the scrappy entertainment. + +“Yes, so do I.” Once more she closed the unfortunate piano. “I vote you +have a men’s four.” + +“All right.” + +“Not for me, thank you,” said Cecil. “I will not spoil the set.” He +never realized that it may be an act of kindness in a bad player to +make up a fourth. + +“Oh, come along Cecil. I’m bad, Floyd’s rotten, and so I dare say’s +Emerson.” + +George corrected him: “I am not bad.” + +One looked down one’s nose at this. “Then certainly I won’t play,” said +Cecil, while Miss Bartlett, under the impression that she was snubbing +George, added: “I agree with you, Mr. Vyse. You had much better not +play. Much better not.” + +Minnie, rushing in where Cecil feared to tread, announced that she +would play. “I shall miss every ball anyway, so what does it matter?” +But Sunday intervened and stamped heavily upon the kindly suggestion. + +“Then it will have to be Lucy,” said Mrs. Honeychurch; “you must fall +back on Lucy. There is no other way out of it. Lucy, go and change your +frock.” + +Lucy’s Sabbath was generally of this amphibious nature. She kept it +without hypocrisy in the morning, and broke it without reluctance in +the afternoon. As she changed her frock, she wondered whether Cecil was +sneering at her; really she must overhaul herself and settle everything +up before she married him. + +Mr. Floyd was her partner. She liked music, but how much better tennis +seemed. How much better to run about in comfortable clothes than to sit +at the piano and feel girt under the arms. Once more music appeared to +her the employment of a child. George served, and surprised her by his +anxiety to win. She remembered how he had sighed among the tombs at +Santa Croce because things wouldn’t fit; how after the death of that +obscure Italian he had leant over the parapet by the Arno and said to +her: “I shall want to live, I tell you.” He wanted to live now, to win +at tennis, to stand for all he was worth in the sun—the sun which had +begun to decline and was shining in her eyes; and he did win. + +Ah, how beautiful the Weald looked! The hills stood out above its +radiance, as Fiesole stands above the Tuscan Plain, and the South +Downs, if one chose, were the mountains of Carrara. She might be +forgetting her Italy, but she was noticing more things in her England. +One could play a new game with the view, and try to find in its +innumerable folds some town or village that would do for Florence. Ah, +how beautiful the Weald looked! + +But now Cecil claimed her. He chanced to be in a lucid critical mood, +and would not sympathize with exaltation. He had been rather a nuisance +all through the tennis, for the novel that he was reading was so bad +that he was obliged to read it aloud to others. He would stroll round +the precincts of the court and call out: “I say, listen to this, Lucy. +Three split infinitives.” + +“Dreadful!” said Lucy, and missed her stroke. When they had finished +their set, he still went on reading; there was some murder scene, and +really everyone must listen to it. Freddy and Mr. Floyd were obliged to +hunt for a lost ball in the laurels, but the other two acquiesced. + +“The scene is laid in Florence.” + +“What fun, Cecil! Read away. Come, Mr. Emerson, sit down after all your +energy.” She had “forgiven” George, as she put it, and she made a point +of being pleasant to him. + +He jumped over the net and sat down at her feet asking: “You—and are +you tired?” + +“Of course I’m not!” + +“Do you mind being beaten?” + +She was going to answer, “No,” when it struck her that she did mind, so +she answered, “Yes.” She added merrily, “I don’t see _you’re_ such a +splendid player, though. The light was behind you, and it was in my +eyes.” + +“I never said I was.” + +“Why, you did!” + +“You didn’t attend.” + +“You said—oh, don’t go in for accuracy at this house. We all +exaggerate, and we get very angry with people who don’t.” + +“‘The scene is laid in Florence,’” repeated Cecil, with an upward note. + +Lucy recollected herself. + +“‘Sunset. Leonora was speeding—’” + +Lucy interrupted. “Leonora? Is Leonora the heroine? Who’s the book by?” + +“Joseph Emery Prank. ‘Sunset. Leonora speeding across the square. Pray +the saints she might not arrive too late. Sunset—the sunset of Italy. +Under Orcagna’s Loggia—the Loggia de’ Lanzi, as we sometimes call it +now—’” + +Lucy burst into laughter. “‘Joseph Emery Prank’ indeed! Why it’s Miss +Lavish! It’s Miss Lavish’s novel, and she’s publishing it under +somebody else’s name.” + +“Who may Miss Lavish be?” + +“Oh, a dreadful person—Mr. Emerson, you remember Miss Lavish?” + +Excited by her pleasant afternoon, she clapped her hands. + +George looked up. “Of course I do. I saw her the day I arrived at +Summer Street. It was she who told me that you lived here.” + +“Weren’t you pleased?” She meant “to see Miss Lavish,” but when he bent +down to the grass without replying, it struck her that she could mean +something else. She watched his head, which was almost resting against +her knee, and she thought that the ears were reddening. “No wonder the +novel’s bad,” she added. “I never liked Miss Lavish. But I suppose one +ought to read it as one’s met her.” + +“All modern books are bad,” said Cecil, who was annoyed at her +inattention, and vented his annoyance on literature. “Every one writes +for money in these days.” + +“Oh, Cecil—!” + +“It is so. I will inflict Joseph Emery Prank on you no longer.” + +Cecil, this afternoon seemed such a twittering sparrow. The ups and +downs in his voice were noticeable, but they did not affect her. She +had dwelt amongst melody and movement, and her nerves refused to answer +to the clang of his. Leaving him to be annoyed, she gazed at the black +head again. She did not want to stroke it, but she saw herself wanting +to stroke it; the sensation was curious. + +“How do you like this view of ours, Mr. Emerson?” + +“I never notice much difference in views.” + +“What do you mean?” + +“Because they’re all alike. Because all that matters in them is +distance and air.” + +“H’m!” said Cecil, uncertain whether the remark was striking or not. + +“My father”—he looked up at her (and he was a little flushed)—“says +that there is only one perfect view—the view of the sky straight over +our heads, and that all these views on earth are but bungled copies of +it.” + +“I expect your father has been reading Dante,” said Cecil, fingering +the novel, which alone permitted him to lead the conversation. + +“He told us another day that views are really crowds—crowds of trees +and houses and hills—and are bound to resemble each other, like human +crowds—and that the power they have over us is sometimes supernatural, +for the same reason.” + +Lucy’s lips parted. + +“For a crowd is more than the people who make it up. Something gets +added to it—no one knows how—just as something has got added to those +hills.” + +He pointed with his racquet to the South Downs. + +“What a splendid idea!” she murmured. “I shall enjoy hearing your +father talk again. I’m so sorry he’s not so well.” + +“No, he isn’t well.” + +“There’s an absurd account of a view in this book,” said Cecil. “Also +that men fall into two classes—those who forget views and those who +remember them, even in small rooms.” + +“Mr. Emerson, have you any brothers or sisters?” + +“None. Why?” + +“You spoke of ‘us.’” + +“My mother, I was meaning.” + +Cecil closed the novel with a bang. + +“Oh, Cecil—how you made me jump!” + +“I will inflict Joseph Emery Prank on you no longer.” + +“I can just remember us all three going into the country for the day +and seeing as far as Hindhead. It is the first thing that I remember.” + +Cecil got up; the man was ill-bred—he hadn’t put on his coat after +tennis—he didn’t do. He would have strolled away if Lucy had not +stopped him. + +“Cecil, do read the thing about the view.” + +“Not while Mr. Emerson is here to entertain us.” + +“No—read away. I think nothing’s funnier than to hear silly things read +out loud. If Mr. Emerson thinks us frivolous, he can go.” + +This struck Cecil as subtle, and pleased him. It put their visitor in +the position of a prig. Somewhat mollified, he sat down again. + +“Mr. Emerson, go and find tennis balls.” She opened the book. Cecil +must have his reading and anything else that he liked. But her +attention wandered to George’s mother, who—according to Mr. Eager—had +been murdered in the sight of God and—according to her son—had seen as +far as Hindhead. + +“Am I really to go?” asked George. + +“No, of course not really,” she answered. + +“Chapter two,” said Cecil, yawning. “Find me chapter two, if it isn’t +bothering you.” + +Chapter two was found, and she glanced at its opening sentences. + +She thought she had gone mad. + +“Here—hand me the book.” + +She heard her voice saying: “It isn’t worth reading—it’s too silly to +read—I never saw such rubbish—it oughtn’t to be allowed to be printed.” + +He took the book from her. + +“‘Leonora,’” he read, “‘sat pensive and alone. Before her lay the rich +champaign of Tuscany, dotted over with many a smiling village. The +season was spring.’” + +Miss Lavish knew, somehow, and had printed the past in draggled prose, +for Cecil to read and for George to hear. + +“‘A golden haze,’” he read. He read: “‘Afar off the towers of Florence, +while the bank on which she sat was carpeted with violets. All +unobserved Antonio stole up behind her—’” + +Lest Cecil should see her face she turned to George and saw his face. + +He read: “‘There came from his lips no wordy protestation such as +formal lovers use. No eloquence was his, nor did he suffer from the +lack of it. He simply enfolded her in his manly arms.’” + +“This isn’t the passage I wanted,” he informed them, “there is another +much funnier, further on.” He turned over the leaves. + +“Should we go in to tea?” said Lucy, whose voice remained steady. + +She led the way up the garden, Cecil following her, George last. She +thought a disaster was averted. But when they entered the shrubbery it +came. The book, as if it had not worked mischief enough, had been +forgotten, and Cecil must go back for it; and George, who loved +passionately, must blunder against her in the narrow path. + +“No—” she gasped, and, for the second time, was kissed by him. + +As if no more was possible, he slipped back; Cecil rejoined her; they +reached the upper lawn alone. + + + + +Chapter XVI +Lying to George + + +But Lucy had developed since the spring. That is to say, she was now +better able to stifle the emotions of which the conventions and the +world disapprove. Though the danger was greater, she was not shaken by +deep sobs. She said to Cecil, “I am not coming in to tea—tell mother—I +must write some letters,” and went up to her room. Then she prepared +for action. Love felt and returned, love which our bodies exact and our +hearts have transfigured, love which is the most real thing that we +shall ever meet, reappeared now as the world’s enemy, and she must +stifle it. + +She sent for Miss Bartlett. + +The contest lay not between love and duty. Perhaps there never is such +a contest. It lay between the real and the pretended, and Lucy’s first +aim was to defeat herself. As her brain clouded over, as the memory of +the views grew dim and the words of the book died away, she returned to +her old shibboleth of nerves. She “conquered her breakdown.” Tampering +with the truth, she forgot that the truth had ever been. Remembering +that she was engaged to Cecil, she compelled herself to confused +remembrances of George; he was nothing to her; he never had been +anything; he had behaved abominably; she had never encouraged him. The +armour of falsehood is subtly wrought out of darkness, and hides a man +not only from others, but from his own soul. In a few moments Lucy was +equipped for battle. + +“Something too awful has happened,” she began, as soon as her cousin +arrived. “Do you know anything about Miss Lavish’s novel?” + +Miss Bartlett looked surprised, and said that she had not read the +book, nor known that it was published; Eleanor was a reticent woman at +heart. + +“There is a scene in it. The hero and heroine make love. Do you know +about that?” + +“Dear—?” + +“Do you know about it, please?” she repeated. “They are on a hillside, +and Florence is in the distance.” + +“My good Lucia, I am all at sea. I know nothing about it whatever.” + +“There are violets. I cannot believe it is a coincidence. Charlotte, +Charlotte, how _could_ you have told her? I have thought before +speaking; it _must_ be you.” + +“Told her what?” she asked, with growing agitation. + +“About that dreadful afternoon in February.” + +Miss Bartlett was genuinely moved. “Oh, Lucy, dearest girl—she hasn’t +put that in her book?” + +Lucy nodded. + +“Not so that one could recognize it. Yes.” + +“Then never—never—never more shall Eleanor Lavish be a friend of mine.” + +“So you did tell?” + +“I did just happen—when I had tea with her at Rome—in the course of +conversation—” + +“But Charlotte—what about the promise you gave me when we were packing? +Why did you tell Miss Lavish, when you wouldn’t even let me tell +mother?” + +“I will never forgive Eleanor. She has betrayed my confidence.” + +“Why did you tell her, though? This is a most serious thing.” + +Why does any one tell anything? The question is eternal, and it was not +surprising that Miss Bartlett should only sigh faintly in response. She +had done wrong—she admitted it, she only hoped that she had not done +harm; she had told Eleanor in the strictest confidence. + +Lucy stamped with irritation. + +“Cecil happened to read out the passage aloud to me and to Mr. Emerson; +it upset Mr. Emerson and he insulted me again. Behind Cecil’s back. +Ugh! Is it possible that men are such brutes? Behind Cecil’s back as we +were walking up the garden.” + +Miss Bartlett burst into self-accusations and regrets. + +“What is to be done now? Can you tell me?” + +“Oh, Lucy—I shall never forgive myself, never to my dying day. Fancy if +your prospects—” + +“I know,” said Lucy, wincing at the word. “I see now why you wanted me +to tell Cecil, and what you meant by ‘some other source.’ You knew that +you had told Miss Lavish, and that she was not reliable.” + +It was Miss Bartlett’s turn to wince. “However,” said the girl, +despising her cousin’s shiftiness, “What’s done’s done. You have put me +in a most awkward position. How am I to get out of it?” + +Miss Bartlett could not think. The days of her energy were over. She +was a visitor, not a chaperon, and a discredited visitor at that. She +stood with clasped hands while the girl worked herself into the +necessary rage. + +“He must—that man must have such a setting down that he won’t forget. +And who’s to give it him? I can’t tell mother now—owing to you. Nor +Cecil, Charlotte, owing to you. I am caught up every way. I think I +shall go mad. I have no one to help me. That’s why I’ve sent for you. +What’s wanted is a man with a whip.” + +Miss Bartlett agreed: one wanted a man with a whip. + +“Yes—but it’s no good agreeing. What’s to be _done?_ We women go +maundering on. What _does_ a girl do when she comes across a cad?” + +“I always said he was a cad, dear. Give me credit for that, at all +events. From the very first moment—when he said his father was having a +bath.” + +“Oh, bother the credit and who’s been right or wrong! We’ve both made a +muddle of it. George Emerson is still down the garden there, and is he +to be left unpunished, or isn’t he? I want to know.” + +Miss Bartlett was absolutely helpless. Her own exposure had unnerved +her, and thoughts were colliding painfully in her brain. She moved +feebly to the window, and tried to detect the cad’s white flannels +among the laurels. + +“You were ready enough at the Bertolini when you rushed me off to Rome. +Can’t you speak again to him now?” + +“Willingly would I move heaven and earth—” + +“I want something more definite,” said Lucy contemptuously. “Will you +speak to him? It is the least you can do, surely, considering it all +happened because you broke your word.” + +“Never again shall Eleanor Lavish be a friend of mine.” + +Really, Charlotte was outdoing herself. + +“Yes or no, please; yes or no.” + +“It is the kind of thing that only a gentleman can settle.” George +Emerson was coming up the garden with a tennis ball in his hand. + +“Very well,” said Lucy, with an angry gesture. “No one will help me. I +will speak to him myself.” And immediately she realized that this was +what her cousin had intended all along. + +“Hullo, Emerson!” called Freddy from below. “Found the lost ball? Good +man! Want any tea?” And there was an irruption from the house on to the +terrace. + +“Oh, Lucy, but that is brave of you! I admire you—” + +They had gathered round George, who beckoned, she felt, over the +rubbish, the sloppy thoughts, the furtive yearnings that were beginning +to cumber her soul. Her anger faded at the sight of him. Ah! The +Emersons were fine people in their way. She had to subdue a rush in her +blood before saying: + +“Freddy has taken him into the dining-room. The others are going down +the garden. Come. Let us get this over quickly. Come. I want you in the +room, of course.” + +“Lucy, do you mind doing it?” + +“How can you ask such a ridiculous question?” + +“Poor Lucy—” She stretched out her hand. “I seem to bring nothing but +misfortune wherever I go.” Lucy nodded. She remembered their last +evening at Florence—the packing, the candle, the shadow of Miss +Bartlett’s toque on the door. She was not to be trapped by pathos a +second time. Eluding her cousin’s caress, she led the way downstairs. + +“Try the jam,” Freddy was saying. “The jam’s jolly good.” + +George, looking big and dishevelled, was pacing up and down the +dining-room. As she entered he stopped, and said: + +“No—nothing to eat.” + +“You go down to the others,” said Lucy; “Charlotte and I will give Mr. +Emerson all he wants. Where’s mother?” + +“She’s started on her Sunday writing. She’s in the drawing-room.” + +“That’s all right. You go away.” + +He went off singing. + +Lucy sat down at the table. Miss Bartlett, who was thoroughly +frightened, took up a book and pretended to read. + +She would not be drawn into an elaborate speech. She just said: “I +can’t have it, Mr. Emerson. I cannot even talk to you. Go out of this +house, and never come into it again as long as I live here—” flushing +as she spoke and pointing to the door. “I hate a row. Go please.” + +“What—” + +“No discussion.” + +“But I can’t—” + +She shook her head. “Go, please. I do not want to call in Mr. Vyse.” + +“You don’t mean,” he said, absolutely ignoring Miss Bartlett—“you don’t +mean that you are going to marry that man?” + +The line was unexpected. + +She shrugged her shoulders, as if his vulgarity wearied her. “You are +merely ridiculous,” she said quietly. + +Then his words rose gravely over hers: “You cannot live with Vyse. He’s +only for an acquaintance. He is for society and cultivated talk. He +should know no one intimately, least of all a woman.” + +It was a new light on Cecil’s character. + +“Have you ever talked to Vyse without feeling tired?” + +“I can scarcely discuss—” + +“No, but have you ever? He is the sort who are all right so long as +they keep to things—books, pictures—but kill when they come to people. +That’s why I’ll speak out through all this muddle even now. It’s +shocking enough to lose you in any case, but generally a man must deny +himself joy, and I would have held back if your Cecil had been a +different person. I would never have let myself go. But I saw him first +in the National Gallery, when he winced because my father mispronounced +the names of great painters. Then he brings us here, and we find it is +to play some silly trick on a kind neighbour. That is the man all +over—playing tricks on people, on the most sacred form of life that he +can find. Next, I meet you together, and find him protecting and +teaching you and your mother to be shocked, when it was for _you_ to +settle whether you were shocked or no. Cecil all over again. He daren’t +let a woman decide. He’s the type who’s kept Europe back for a thousand +years. Every moment of his life he’s forming you, telling you what’s +charming or amusing or ladylike, telling you what a man thinks womanly; +and you, you of all women, listen to his voice instead of to your own. +So it was at the Rectory, when I met you both again; so it has been the +whole of this afternoon. Therefore—not ‘therefore I kissed you,’ +because the book made me do that, and I wish to goodness I had more +self-control. I’m not ashamed. I don’t apologize. But it has frightened +you, and you may not have noticed that I love you. Or would you have +told me to go, and dealt with a tremendous thing so lightly? But +therefore—therefore I settled to fight him.” + +Lucy thought of a very good remark. + +“You say Mr. Vyse wants me to listen to him, Mr. Emerson. Pardon me for +suggesting that you have caught the habit.” + +And he took the shoddy reproof and touched it into immortality. He +said: + +“Yes, I have,” and sank down as if suddenly weary. “I’m the same kind +of brute at bottom. This desire to govern a woman—it lies very deep, +and men and women must fight it together before they shall enter the +garden. But I do love you surely in a better way than he does.” He +thought. “Yes—really in a better way. I want you to have your own +thoughts even when I hold you in my arms.” He stretched them towards +her. “Lucy, be quick—there’s no time for us to talk now—come to me as +you came in the spring, and afterwards I will be gentle and explain. I +have cared for you since that man died. I cannot live without you, ‘No +good,’ I thought; ‘she is marrying someone else’; but I meet you again +when all the world is glorious water and sun. As you came through the +wood I saw that nothing else mattered. I called. I wanted to live and +have my chance of joy.” + +“And Mr. Vyse?” said Lucy, who kept commendably calm. “Does he not +matter? That I love Cecil and shall be his wife shortly? A detail of no +importance, I suppose?” + +But he stretched his arms over the table towards her. + +“May I ask what you intend to gain by this exhibition?” + +He said: “It is our last chance. I shall do all that I can.” And as if +he had done all else, he turned to Miss Bartlett, who sat like some +portent against the skies of the evening. “You wouldn’t stop us this +second time if you understood,” he said. “I have been into the dark, +and I am going back into it, unless you will try to understand.” + +Her long, narrow head drove backwards and forwards, as though +demolishing some invisible obstacle. She did not answer. + +“It is being young,” he said quietly, picking up his racquet from the +floor and preparing to go. “It is being certain that Lucy cares for me +really. It is that love and youth matter intellectually.” + +In silence the two women watched him. His last remark, they knew, was +nonsense, but was he going after it or not? Would not he, the cad, the +charlatan, attempt a more dramatic finish? No. He was apparently +content. He left them, carefully closing the front door; and when they +looked through the hall window, they saw him go up the drive and begin +to climb the slopes of withered fern behind the house. Their tongues +were loosed, and they burst into stealthy rejoicings. + +“Oh, Lucia—come back here—oh, what an awful man!” + +Lucy had no reaction—at least, not yet. “Well, he amuses me,” she said. +“Either I’m mad, or else he is, and I’m inclined to think it’s the +latter. One more fuss through with you, Charlotte. Many thanks. I +think, though, that this is the last. My admirer will hardly trouble me +again.” + +And Miss Bartlett, too, essayed the roguish: + +“Well, it isn’t everyone who could boast such a conquest, dearest, is +it? Oh, one oughtn’t to laugh, really. It might have been very serious. +But you were so sensible and brave—so unlike the girls of my day.” + +“Let’s go down to them.” + +But, once in the open air, she paused. Some emotion—pity, terror, love, +but the emotion was strong—seized her, and she was aware of autumn. +Summer was ending, and the evening brought her odours of decay, the +more pathetic because they were reminiscent of spring. That something +or other mattered intellectually? A leaf, violently agitated, danced +past her, while other leaves lay motionless. That the earth was +hastening to re-enter darkness, and the shadows of those trees over +Windy Corner? + +“Hullo, Lucy! There’s still light enough for another set, if you two’ll +hurry.” + +“Mr. Emerson has had to go.” + +“What a nuisance! That spoils the four. I say, Cecil, do play, do, +there’s a good chap. It’s Floyd’s last day. Do play tennis with us, +just this once.” + +Cecil’s voice came: “My dear Freddy, I am no athlete. As you well +remarked this very morning, ‘There are some chaps who are no good for +anything but books’; I plead guilty to being such a chap, and will not +inflict myself on you.” + +The scales fell from Lucy’s eyes. How had she stood Cecil for a moment? +He was absolutely intolerable, and the same evening she broke off her +engagement. + + + + +Chapter XVII +Lying to Cecil + + +He was bewildered. He had nothing to say. He was not even angry, but +stood, with a glass of whiskey between his hands, trying to think what +had led her to such a conclusion. + +She had chosen the moment before bed, when, in accordance with their +bourgeois habit, she always dispensed drinks to the men. Freddy and Mr. +Floyd were sure to retire with their glasses, while Cecil invariably +lingered, sipping at his while she locked up the sideboard. + +“I am very sorry about it,” she said; “I have carefully thought things +over. We are too different. I must ask you to release me, and try to +forget that there ever was such a foolish girl.” + +It was a suitable speech, but she was more angry than sorry, and her +voice showed it. + +“Different—how—how—” + +“I haven’t had a really good education, for one thing,” she continued, +still on her knees by the sideboard. “My Italian trip came too late, +and I am forgetting all that I learnt there. I shall never be able to +talk to your friends, or behave as a wife of yours should.” + +“I don’t understand you. You aren’t like yourself. You’re tired, Lucy.” + +“Tired!” she retorted, kindling at once. “That is exactly like you. You +always think women don’t mean what they say.” + +“Well, you sound tired, as if something has worried you.” + +“What if I do? It doesn’t prevent me from realizing the truth. I can’t +marry you, and you will thank me for saying so some day.” + +“You had that bad headache yesterday—All right”—for she had exclaimed +indignantly: “I see it’s much more than headaches. But give me a +moment’s time.” He closed his eyes. “You must excuse me if I say stupid +things, but my brain has gone to pieces. Part of it lives three minutes +back, when I was sure that you loved me, and the other part—I find it +difficult—I am likely to say the wrong thing.” + +It struck her that he was not behaving so badly, and her irritation +increased. She again desired a struggle, not a discussion. To bring on +the crisis, she said: + +“There are days when one sees clearly, and this is one of them. Things +must come to a breaking-point some time, and it happens to be to-day. +If you want to know, quite a little thing decided me to speak to +you—when you wouldn’t play tennis with Freddy.” + +“I never do play tennis,” said Cecil, painfully bewildered; “I never +could play. I don’t understand a word you say.” + +“You can play well enough to make up a four. I thought it abominably +selfish of you.” + +“No, I can’t—well, never mind the tennis. Why couldn’t you—couldn’t you +have warned me if you felt anything wrong? You talked of our wedding at +lunch—at least, you let me talk.” + +“I knew you wouldn’t understand,” said Lucy quite crossly. “I might +have known there would have been these dreadful explanations. Of +course, it isn’t the tennis—that was only the last straw to all I have +been feeling for weeks. Surely it was better not to speak until I felt +certain.” She developed this position. “Often before I have wondered if +I was fitted for your wife—for instance, in London; and are you fitted +to be my husband? I don’t think so. You don’t like Freddy, nor my +mother. There was always a lot against our engagement, Cecil, but all +our relations seemed pleased, and we met so often, and it was no good +mentioning it until—well, until all things came to a point. They have +to-day. I see clearly. I must speak. That’s all.” + +“I cannot think you were right,” said Cecil gently. “I cannot tell why, +but though all that you say sounds true, I feel that you are not +treating me fairly. It’s all too horrible.” + +“What’s the good of a scene?” + +“No good. But surely I have a right to hear a little more.” + +He put down his glass and opened the window. From where she knelt, +jangling her keys, she could see a slit of darkness, and, peering into +it, as if it would tell him that “little more,” his long, thoughtful +face. + +“Don’t open the window; and you’d better draw the curtain, too; Freddy +or any one might be outside.” He obeyed. “I really think we had better +go to bed, if you don’t mind. I shall only say things that will make me +unhappy afterwards. As you say it is all too horrible, and it is no +good talking.” + +But to Cecil, now that he was about to lose her, she seemed each moment +more desirable. He looked at her, instead of through her, for the first +time since they were engaged. From a Leonardo she had become a living +woman, with mysteries and forces of her own, with qualities that even +eluded art. His brain recovered from the shock, and, in a burst of +genuine devotion, he cried: “But I love you, and I did think you loved +me!” + +“I did not,” she said. “I thought I did at first. I am sorry, and ought +to have refused you this last time, too.” + +He began to walk up and down the room, and she grew more and more vexed +at his dignified behaviour. She had counted on his being petty. It +would have made things easier for her. By a cruel irony she was drawing +out all that was finest in his disposition. + +“You don’t love me, evidently. I dare say you are right not to. But it +would hurt a little less if I knew why.” + +“Because”—a phrase came to her, and she accepted it—“you’re the sort +who can’t know any one intimately.” + +A horrified look came into his eyes. + +“I don’t mean exactly that. But you will question me, though I beg you +not to, and I must say something. It is that, more or less. When we +were only acquaintances, you let me be myself, but now you’re always +protecting me.” Her voice swelled. “I won’t be protected. I will choose +for myself what is ladylike and right. To shield me is an insult. Can’t +I be trusted to face the truth but I must get it second-hand through +you? A woman’s place! You despise my mother—I know you do—because she’s +conventional and bothers over puddings; but, oh goodness!”—she rose to +her feet—“conventional, Cecil, you’re that, for you may understand +beautiful things, but you don’t know how to use them; and you wrap +yourself up in art and books and music, and would try to wrap up me. I +won’t be stifled, not by the most glorious music, for people are more +glorious, and you hide them from me. That’s why I break off my +engagement. You were all right as long as you kept to things, but when +you came to people—” She stopped. + +There was a pause. Then Cecil said with great emotion: + +“It is true.” + +“True on the whole,” she corrected, full of some vague shame. + +“True, every word. It is a revelation. It is—I.” + +“Anyhow, those are my reasons for not being your wife.” + +He repeated: “‘The sort that can know no one intimately.’ It is true. I +fell to pieces the very first day we were engaged. I behaved like a cad +to Beebe and to your brother. You are even greater than I thought.” She +withdrew a step. “I’m not going to worry you. You are far too good to +me. I shall never forget your insight; and, dear, I only blame you for +this: you might have warned me in the early stages, before you felt you +wouldn’t marry me, and so have given me a chance to improve. I have +never known you till this evening. I have just used you as a peg for my +silly notions of what a woman should be. But this evening you are a +different person: new thoughts—even a new voice—” + +“What do you mean by a new voice?” she asked, seized with +incontrollable anger. + +“I mean that a new person seems speaking through you,” said he. + +Then she lost her balance. She cried: “If you think I am in love with +some one else, you are very much mistaken.” + +“Of course I don’t think that. You are not that kind, Lucy.” + +“Oh, yes, you do think it. It’s your old idea, the idea that has kept +Europe back—I mean the idea that women are always thinking of men. If a +girl breaks off her engagement, everyone says: ‘Oh, she had someone +else in her mind; she hopes to get someone else.’ It’s disgusting, +brutal! As if a girl can’t break it off for the sake of freedom.” + +He answered reverently: “I may have said that in the past. I shall +never say it again. You have taught me better.” + +She began to redden, and pretended to examine the windows again. + +“Of course, there is no question of ‘someone else’ in this, no +‘jilting’ or any such nauseous stupidity. I beg your pardon most humbly +if my words suggested that there was. I only meant that there was a +force in you that I hadn’t known of up till now.” + +“All right, Cecil, that will do. Don’t apologize to me. It was my +mistake.” + +“It is a question between ideals, yours and mine—pure abstract ideals, +and yours are the nobler. I was bound up in the old vicious notions, +and all the time you were splendid and new.” His voice broke. “I must +actually thank you for what you have done—for showing me what I really +am. Solemnly, I thank you for showing me a true woman. Will you shake +hands?” + +“Of course I will,” said Lucy, twisting up her other hand in the +curtains. “Good-night, Cecil. Good-bye. That’s all right. I’m sorry +about it. Thank you very much for your gentleness.” + +“Let me light your candle, shall I?” + +They went into the hall. + +“Thank you. Good-night again. God bless you, Lucy!” + +“Good-bye, Cecil.” + +She watched him steal up-stairs, while the shadows from three banisters +passed over her face like the beat of wings. On the landing he paused +strong in his renunciation, and gave her a look of memorable beauty. +For all his culture, Cecil was an ascetic at heart, and nothing in his +love became him like the leaving of it. + +She could never marry. In the tumult of her soul, that stood firm. +Cecil believed in her; she must some day believe in herself. She must +be one of the women whom she had praised so eloquently, who care for +liberty and not for men; she must forget that George loved her, that +George had been thinking through her and gained her this honourable +release, that George had gone away into—what was it?—the darkness. + +She put out the lamp. + +It did not do to think, nor, for the matter of that, to feel. She gave +up trying to understand herself, and joined the vast armies of the +benighted, who follow neither the heart nor the brain, and march to +their destiny by catch-words. The armies are full of pleasant and pious +folk. But they have yielded to the only enemy that matters—the enemy +within. They have sinned against passion and truth, and vain will be +their strife after virtue. As the years pass, they are censured. Their +pleasantry and their piety show cracks, their wit becomes cynicism, +their unselfishness hypocrisy; they feel and produce discomfort +wherever they go. They have sinned against Eros and against Pallas +Athene, and not by any heavenly intervention, but by the ordinary +course of nature, those allied deities will be avenged. + +Lucy entered this army when she pretended to George that she did not +love him, and pretended to Cecil that she loved no one. The night +received her, as it had received Miss Bartlett thirty years before. + + + + +Chapter XVIII +Lying to Mr. Beebe, Mrs. Honeychurch, Freddy, and The Servants + + +Windy Corner lay, not on the summit of the ridge, but a few hundred +feet down the southern slope, at the springing of one of the great +buttresses that supported the hill. On either side of it was a shallow +ravine, filled with ferns and pine-trees, and down the ravine on the +left ran the highway into the Weald. + +Whenever Mr. Beebe crossed the ridge and caught sight of these noble +dispositions of the earth, and, poised in the middle of them, Windy +Corner,—he laughed. The situation was so glorious, the house so +commonplace, not to say impertinent. The late Mr. Honeychurch had +affected the cube, because it gave him the most accommodation for his +money, and the only addition made by his widow had been a small turret, +shaped like a rhinoceros’ horn, where she could sit in wet weather and +watch the carts going up and down the road. So impertinent—and yet the +house “did,” for it was the home of people who loved their surroundings +honestly. Other houses in the neighborhood had been built by expensive +architects, over others their inmates had fidgeted sedulously, yet all +these suggested the accidental, the temporary; while Windy Corner +seemed as inevitable as an ugliness of Nature’s own creation. One might +laugh at the house, but one never shuddered. Mr. Beebe was bicycling +over this Monday afternoon with a piece of gossip. He had heard from +the Miss Alans. These admirable ladies, since they could not go to +Cissie Villa, had changed their plans. They were going to Greece +instead. + +“Since Florence did my poor sister so much good,” wrote Miss Catharine, +“we do not see why we should not try Athens this winter. Of course, +Athens is a plunge, and the doctor has ordered her special digestive +bread; but, after all, we can take that with us, and it is only getting +first into a steamer and then into a train. But is there an English +Church?” And the letter went on to say: “I do not expect we shall go +any further than Athens, but if you knew of a really comfortable +pension at Constantinople, we should be so grateful.” + +Lucy would enjoy this letter, and the smile with which Mr. Beebe +greeted Windy Corner was partly for her. She would see the fun of it, +and some of its beauty, for she must see some beauty. Though she was +hopeless about pictures, and though she dressed so unevenly—oh, that +cerise frock yesterday at church!—she must see some beauty in life, or +she could not play the piano as she did. He had a theory that musicians +are incredibly complex, and know far less than other artists what they +want and what they are; that they puzzle themselves as well as their +friends; that their psychology is a modern development, and has not yet +been understood. This theory, had he known it, had possibly just been +illustrated by facts. Ignorant of the events of yesterday he was only +riding over to get some tea, to see his niece, and to observe whether +Miss Honeychurch saw anything beautiful in the desire of two old ladies +to visit Athens. + +A carriage was drawn up outside Windy Corner, and just as he caught +sight of the house it started, bowled up the drive, and stopped +abruptly when it reached the main road. Therefore it must be the horse, +who always expected people to walk up the hill in case they tired him. +The door opened obediently, and two men emerged, whom Mr. Beebe +recognized as Cecil and Freddy. They were an odd couple to go driving; +but he saw a trunk beside the coachman’s legs. Cecil, who wore a +bowler, must be going away, while Freddy (a cap)—was seeing him to the +station. They walked rapidly, taking the short cuts, and reached the +summit while the carriage was still pursuing the windings of the road. + +They shook hands with the clergyman, but did not speak. + +“So you’re off for a minute, Mr. Vyse?” he asked. + +Cecil said, “Yes,” while Freddy edged away. + +“I was coming to show you this delightful letter from those friends of +Miss Honeychurch.” He quoted from it. “Isn’t it wonderful? Isn’t it +romance? Most certainly they will go to Constantinople. They are taken +in a snare that cannot fail. They will end by going round the world.” + +Cecil listened civilly, and said he was sure that Lucy would be amused +and interested. + +“Isn’t Romance capricious! I never notice it in you young people; you +do nothing but play lawn tennis, and say that romance is dead, while +the Miss Alans are struggling with all the weapons of propriety against +the terrible thing. ‘A really comfortable pension at Constantinople!’ +So they call it out of decency, but in their hearts they want a pension +with magic windows opening on the foam of perilous seas in fairyland +forlorn! No ordinary view will content the Miss Alans. They want the +Pension Keats.” + +“I’m awfully sorry to interrupt, Mr. Beebe,” said Freddy, “but have you +any matches?” + +“I have,” said Cecil, and it did not escape Mr. Beebe’s notice that he +spoke to the boy more kindly. + +“You have never met these Miss Alans, have you, Mr. Vyse?” + +“Never.” + +“Then you don’t see the wonder of this Greek visit. I haven’t been to +Greece myself, and don’t mean to go, and I can’t imagine any of my +friends going. It is altogether too big for our little lot. Don’t you +think so? Italy is just about as much as we can manage. Italy is +heroic, but Greece is godlike or devilish—I am not sure which, and in +either case absolutely out of our suburban focus. All right, Freddy—I +am not being clever, upon my word I am not—I took the idea from another +fellow; and give me those matches when you’ve done with them.” He lit a +cigarette, and went on talking to the two young men. “I was saying, if +our poor little Cockney lives must have a background, let it be +Italian. Big enough in all conscience. The ceiling of the Sistine +Chapel for me. There the contrast is just as much as I can realize. But +not the Parthenon, not the frieze of Phidias at any price; and here +comes the victoria.” + +“You’re quite right,” said Cecil. “Greece is not for our little lot”; +and he got in. Freddy followed, nodding to the clergyman, whom he +trusted not to be pulling one’s leg, really. And before they had gone a +dozen yards he jumped out, and came running back for Vyse’s match-box, +which had not been returned. As he took it, he said: “I’m so glad you +only talked about books. Cecil’s hard hit. Lucy won’t marry him. If +you’d gone on about her, as you did about them, he might have broken +down.” + +“But when—” + +“Late last night. I must go.” + +“Perhaps they won’t want me down there.” + +“No—go on. Good-bye.” + +“Thank goodness!” exclaimed Mr. Beebe to himself, and struck the saddle +of his bicycle approvingly, “It was the one foolish thing she ever did. +Oh, what a glorious riddance!” And, after a little thought, he +negotiated the slope into Windy Corner, light of heart. The house was +again as it ought to be—cut off forever from Cecil’s pretentious world. + +He would find Miss Minnie down in the garden. + +In the drawing-room Lucy was tinkling at a Mozart Sonata. He hesitated +a moment, but went down the garden as requested. There he found a +mournful company. It was a blustering day, and the wind had taken and +broken the dahlias. Mrs. Honeychurch, who looked cross, was tying them +up, while Miss Bartlett, unsuitably dressed, impeded her with offers of +assistance. At a little distance stood Minnie and the “garden-child,” a +minute importation, each holding either end of a long piece of bass. + +“Oh, how do you do, Mr. Beebe? Gracious what a mess everything is! Look +at my scarlet pompoms, and the wind blowing your skirts about, and the +ground so hard that not a prop will stick in, and then the carriage +having to go out, when I had counted on having Powell, who—give +everyone their due—does tie up dahlias properly.” + +Evidently Mrs. Honeychurch was shattered. + +“How do you do?” said Miss Bartlett, with a meaning glance, as though +conveying that more than dahlias had been broken off by the autumn +gales. + +“Here, Lennie, the bass,” cried Mrs. Honeychurch. The garden-child, who +did not know what bass was, stood rooted to the path with horror. +Minnie slipped to her uncle and whispered that everyone was very +disagreeable to-day, and that it was not her fault if dahlia-strings +would tear longways instead of across. + +“Come for a walk with me,” he told her. “You have worried them as much +as they can stand. Mrs. Honeychurch, I only called in aimlessly. I +shall take her up to tea at the Beehive Tavern, if I may.” + +“Oh, must you? Yes do.—Not the scissors, thank you, Charlotte, when +both my hands are full already—I’m perfectly certain that the orange +cactus will go before I can get to it.” + +Mr. Beebe, who was an adept at relieving situations, invited Miss +Bartlett to accompany them to this mild festivity. + +“Yes, Charlotte, I don’t want you—do go; there’s nothing to stop about +for, either in the house or out of it.” + +Miss Bartlett said that her duty lay in the dahlia bed, but when she +had exasperated everyone, except Minnie, by a refusal, she turned round +and exasperated Minnie by an acceptance. As they walked up the garden, +the orange cactus fell, and Mr. Beebe’s last vision was of the +garden-child clasping it like a lover, his dark head buried in a wealth +of blossom. + +“It is terrible, this havoc among the flowers,” he remarked. + +“It is always terrible when the promise of months is destroyed in a +moment,” enunciated Miss Bartlett. + +“Perhaps we ought to send Miss Honeychurch down to her mother. Or will +she come with us?” + +“I think we had better leave Lucy to herself, and to her own pursuits.” + +“They’re angry with Miss Honeychurch because she was late for +breakfast,” whispered Minnie, “and Floyd has gone, and Mr. Vyse has +gone, and Freddy won’t play with me. In fact, Uncle Arthur, the house +is not _at all_ what it was yesterday.” + +“Don’t be a prig,” said her Uncle Arthur. “Go and put on your boots.” + +He stepped into the drawing-room, where Lucy was still attentively +pursuing the Sonatas of Mozart. She stopped when he entered. + +“How do you do? Miss Bartlett and Minnie are coming with me to tea at +the Beehive. Would you come too?” + +“I don’t think I will, thank you.” + +“No, I didn’t suppose you would care to much.” + +Lucy turned to the piano and struck a few chords. + +“How delicate those Sonatas are!” said Mr. Beebe, though at the bottom +of his heart, he thought them silly little things. + +Lucy passed into Schumann. + +“Miss Honeychurch!” + +“Yes.” + +“I met them on the hill. Your brother told me.” + +“Oh he did?” She sounded annoyed. Mr. Beebe felt hurt, for he had +thought that she would like him to be told. + +“I needn’t say that it will go no further.” + +“Mother, Charlotte, Cecil, Freddy, you,” said Lucy, playing a note for +each person who knew, and then playing a sixth note. + +“If you’ll let me say so, I am very glad, and I am certain that you +have done the right thing.” + +“So I hoped other people would think, but they don’t seem to.” + +“I could see that Miss Bartlett thought it unwise.” + +“So does mother. Mother minds dreadfully.” + +“I am very sorry for that,” said Mr. Beebe with feeling. + +Mrs. Honeychurch, who hated all changes, did mind, but not nearly as +much as her daughter pretended, and only for the minute. It was really +a ruse of Lucy’s to justify her despondency—a ruse of which she was not +herself conscious, for she was marching in the armies of darkness. + +“And Freddy minds.” + +“Still, Freddy never hit it off with Vyse much, did he? I gathered that +he disliked the engagement, and felt it might separate him from you.” + +“Boys are so odd.” + +Minnie could be heard arguing with Miss Bartlett through the floor. Tea +at the Beehive apparently involved a complete change of apparel. Mr. +Beebe saw that Lucy—very properly—did not wish to discuss her action, +so after a sincere expression of sympathy, he said, “I have had an +absurd letter from Miss Alan. That was really what brought me over. I +thought it might amuse you all.” + +“How delightful!” said Lucy, in a dull voice. + +For the sake of something to do, he began to read her the letter. After +a few words her eyes grew alert, and soon she interrupted him with +“Going abroad? When do they start?” + +“Next week, I gather.” + +“Did Freddy say whether he was driving straight back?” + +“No, he didn’t.” + +“Because I do hope he won’t go gossiping.” + +So she did want to talk about her broken engagement. Always +complaisant, he put the letter away. But she, at once exclaimed in a +high voice, “Oh, do tell me more about the Miss Alans! How perfectly +splendid of them to go abroad!” + +“I want them to start from Venice, and go in a cargo steamer down the +Illyrian coast!” + +She laughed heartily. “Oh, delightful! I wish they’d take me.” + +“Has Italy filled you with the fever of travel? Perhaps George Emerson +is right. He says that ‘Italy is only an euphuism for Fate.’” + +“Oh, not Italy, but Constantinople. I have always longed to go to +Constantinople. Constantinople is practically Asia, isn’t it?” + +Mr. Beebe reminded her that Constantinople was still unlikely, and that +the Miss Alans only aimed at Athens, “with Delphi, perhaps, if the +roads are safe.” But this made no difference to her enthusiasm. She had +always longed to go to Greece even more, it seemed. He saw, to his +surprise, that she was apparently serious. + +“I didn’t realize that you and the Miss Alans were still such friends, +after Cissie Villa.” + +“Oh, that’s nothing; I assure you Cissie Villa’s nothing to me; I would +give anything to go with them.” + +“Would your mother spare you again so soon? You have scarcely been home +three months.” + +“She _must_ spare me!” cried Lucy, in growing excitement. “I simply +_must_ go away. I have to.” She ran her fingers hysterically through +her hair. “Don’t you see that I _have_ to go away? I didn’t realize at +the time—and of course I want to see Constantinople so particularly.” + +“You mean that since you have broken off your engagement you feel—” + +“Yes, yes. I knew you’d understand.” + +Mr. Beebe did not quite understand. Why could not Miss Honeychurch +repose in the bosom of her family? Cecil had evidently taken up the +dignified line, and was not going to annoy her. Then it struck him that +her family itself might be annoying. He hinted this to her, and she +accepted the hint eagerly. + +“Yes, of course; to go to Constantinople until they are used to the +idea and everything has calmed down.” + +“I am afraid it has been a bothersome business,” he said gently. + +“No, not at all. Cecil was very kind indeed; only—I had better tell you +the whole truth, since you have heard a little—it was that he is so +masterful. I found that he wouldn’t let me go my own way. He would +improve me in places where I can’t be improved. Cecil won’t let a woman +decide for herself—in fact, he daren’t. What nonsense I do talk! But +that is the kind of thing.” + +“It is what I gathered from my own observation of Mr. Vyse; it is what +I gather from all that I have known of you. I do sympathize and agree +most profoundly. I agree so much that you must let me make one little +criticism: Is it worth while rushing off to Greece?” + +“But I must go somewhere!” she cried. “I have been worrying all the +morning, and here comes the very thing.” She struck her knees with +clenched fists, and repeated: “I must! And the time I shall have with +mother, and all the money she spent on me last spring. You all think +much too highly of me. I wish you weren’t so kind.” At this moment Miss +Bartlett entered, and her nervousness increased. “I must get away, ever +so far. I must know my own mind and where I want to go.” + +“Come along; tea, tea, tea,” said Mr. Beebe, and bustled his guests out +of the front-door. He hustled them so quickly that he forgot his hat. +When he returned for it he heard, to his relief and surprise, the +tinkling of a Mozart Sonata. + +“She is playing again,” he said to Miss Bartlett. + +“Lucy can always play,” was the acid reply. + +“One is very thankful that she has such a resource. She is evidently +much worried, as, of course, she ought to be. I know all about it. The +marriage was so near that it must have been a hard struggle before she +could wind herself up to speak.” + +Miss Bartlett gave a kind of wriggle, and he prepared for a discussion. +He had never fathomed Miss Bartlett. As he had put it to himself at +Florence, “she might yet reveal depths of strangeness, if not of +meaning.” But she was so unsympathetic that she must be reliable. He +assumed that much, and he had no hesitation in discussing Lucy with +her. Minnie was fortunately collecting ferns. + +She opened the discussion with: “We had much better let the matter +drop.” + +“I wonder.” + +“It is of the highest importance that there should be no gossip in +Summer Street. It would be _death_ to gossip about Mr. Vyse’s dismissal +at the present moment.” + +Mr. Beebe raised his eyebrows. Death is a strong word—surely too +strong. There was no question of tragedy. He said: “Of course, Miss +Honeychurch will make the fact public in her own way, and when she +chooses. Freddy only told me because he knew she would not mind.” + +“I know,” said Miss Bartlett civilly. “Yet Freddy ought not to have +told even you. One cannot be too careful.” + +“Quite so.” + +“I do implore absolute secrecy. A chance word to a chattering friend, +and—” + +“Exactly.” He was used to these nervous old maids and to the +exaggerated importance that they attach to words. A rector lives in a +web of petty secrets, and confidences and warnings, and the wiser he is +the less he will regard them. He will change the subject, as did Mr. +Beebe, saying cheerfully: “Have you heard from any Bertolini people +lately? I believe you keep up with Miss Lavish. It is odd how we of +that pension, who seemed such a fortuitous collection, have been +working into one another’s lives. Two, three, four, six of us—no, +eight; I had forgotten the Emersons—have kept more or less in touch. We +must really give the Signora a testimonial.” + +And, Miss Bartlett not favouring the scheme, they walked up the hill in +a silence which was only broken by the rector naming some fern. On the +summit they paused. The sky had grown wilder since he stood there last +hour, giving to the land a tragic greatness that is rare in Surrey. +Grey clouds were charging across tissues of white, which stretched and +shredded and tore slowly, until through their final layers there +gleamed a hint of the disappearing blue. Summer was retreating. The +wind roared, the trees groaned, yet the noise seemed insufficient for +those vast operations in heaven. The weather was breaking up, breaking, +broken, and it is a sense of the fit rather than of the supernatural +that equips such crises with the salvos of angelic artillery. Mr. +Beebe’s eyes rested on Windy Corner, where Lucy sat, practising Mozart. +No smile came to his lips, and, changing the subject again, he said: +“We shan’t have rain, but we shall have darkness, so let us hurry on. +The darkness last night was appalling.” + +They reached the Beehive Tavern at about five o’clock. That amiable +hostelry possesses a verandah, in which the young and the unwise do +dearly love to sit, while guests of more mature years seek a pleasant +sanded room, and have tea at a table comfortably. Mr. Beebe saw that +Miss Bartlett would be cold if she sat out, and that Minnie would be +dull if she sat in, so he proposed a division of forces. They would +hand the child her food through the window. Thus he was incidentally +enabled to discuss the fortunes of Lucy. + +“I have been thinking, Miss Bartlett,” he said, “and, unless you very +much object, I would like to reopen that discussion.” She bowed. +“Nothing about the past. I know little and care less about that; I am +absolutely certain that it is to your cousin’s credit. She has acted +loftily and rightly, and it is like her gentle modesty to say that we +think too highly of her. But the future. Seriously, what do you think +of this Greek plan?” He pulled out the letter again. “I don’t know +whether you overheard, but she wants to join the Miss Alans in their +mad career. It’s all—I can’t explain—it’s wrong.” + +Miss Bartlett read the letter in silence, laid it down, seemed to +hesitate, and then read it again. + +“I can’t see the point of it myself.” + +To his astonishment, she replied: “There I cannot agree with you. In it +I spy Lucy’s salvation.” + +“Really. Now, why?” + +“She wanted to leave Windy Corner.” + +“I know—but it seems so odd, so unlike her, so—I was going to +say—selfish.” + +“It is natural, surely—after such painful scenes—that she should desire +a change.” + +Here, apparently, was one of those points that the male intellect +misses. Mr. Beebe exclaimed: “So she says herself, and since another +lady agrees with her, I must own that I am partially convinced. Perhaps +she must have a change. I have no sisters or—and I don’t understand +these things. But why need she go as far as Greece?” + +“You may well ask that,” replied Miss Bartlett, who was evidently +interested, and had almost dropped her evasive manner. “Why Greece? +(What is it, Minnie dear—jam?) Why not Tunbridge Wells? Oh, Mr. Beebe! +I had a long and most unsatisfactory interview with dear Lucy this +morning. I cannot help her. I will say no more. Perhaps I have already +said too much. I am not to talk. I wanted her to spend six months with +me at Tunbridge Wells, and she refused.” + +Mr. Beebe poked at a crumb with his knife. + +“But my feelings are of no importance. I know too well that I get on +Lucy’s nerves. Our tour was a failure. She wanted to leave Florence, +and when we got to Rome she did not want to be in Rome, and all the +time I felt that I was spending her mother’s money—.” + +“Let us keep to the future, though,” interrupted Mr. Beebe. “I want +your advice.” + +“Very well,” said Charlotte, with a choky abruptness that was new to +him, though familiar to Lucy. “I for one will help her to go to Greece. +Will you?” + +Mr. Beebe considered. + +“It is absolutely necessary,” she continued, lowering her veil and +whispering through it with a passion, an intensity, that surprised him. +“I know—I _know_.” The darkness was coming on, and he felt that this +odd woman really did know. “She must not stop here a moment, and we +must keep quiet till she goes. I trust that the servants know nothing. +Afterwards—but I may have said too much already. Only, Lucy and I are +helpless against Mrs. Honeychurch alone. If you help we may succeed. +Otherwise—” + +“Otherwise—?” + +“Otherwise,” she repeated as if the word held finality. + +“Yes, I will help her,” said the clergyman, setting his jaw firm. +“Come, let us go back now, and settle the whole thing up.” + +Miss Bartlett burst into florid gratitude. The tavern sign—a beehive +trimmed evenly with bees—creaked in the wind outside as she thanked +him. Mr. Beebe did not quite understand the situation; but then, he did +not desire to understand it, nor to jump to the conclusion of “another +man” that would have attracted a grosser mind. He only felt that Miss +Bartlett knew of some vague influence from which the girl desired to be +delivered, and which might well be clothed in the fleshly form. Its +very vagueness spurred him into knight-errantry. His belief in +celibacy, so reticent, so carefully concealed beneath his tolerance and +culture, now came to the surface and expanded like some delicate +flower. “They that marry do well, but they that refrain do better.” So +ran his belief, and he never heard that an engagement was broken off +but with a slight feeling of pleasure. In the case of Lucy, the feeling +was intensified through dislike of Cecil; and he was willing to go +further—to place her out of danger until she could confirm her +resolution of virginity. The feeling was very subtle and quite +undogmatic, and he never imparted it to any other of the characters in +this entanglement. Yet it existed, and it alone explains his action +subsequently, and his influence on the action of others. The compact +that he made with Miss Bartlett in the tavern, was to help not only +Lucy, but religion also. + +They hurried home through a world of black and grey. He conversed on +indifferent topics: the Emersons’ need of a housekeeper; servants; +Italian servants; novels about Italy; novels with a purpose; could +literature influence life? Windy Corner glimmered. In the garden, Mrs. +Honeychurch, now helped by Freddy, still wrestled with the lives of her +flowers. + +“It gets too dark,” she said hopelessly. “This comes of putting off. We +might have known the weather would break up soon; and now Lucy wants to +go to Greece. I don’t know what the world’s coming to.” + +“Mrs. Honeychurch,” he said, “go to Greece she must. Come up to the +house and let’s talk it over. Do you, in the first place, mind her +breaking with Vyse?” + +“Mr. Beebe, I’m thankful—simply thankful.” + +“So am I,” said Freddy. + +“Good. Now come up to the house.” + +They conferred in the dining-room for half an hour. + +Lucy would never have carried the Greek scheme alone. It was expensive +and dramatic—both qualities that her mother loathed. Nor would +Charlotte have succeeded. The honours of the day rested with Mr. Beebe. +By his tact and common sense, and by his influence as a clergyman—for a +clergyman who was not a fool influenced Mrs. Honeychurch greatly—he +bent her to their purpose, “I don’t see why Greece is necessary,” she +said; “but as you do, I suppose it is all right. It must be something I +can’t understand. Lucy! Let’s tell her. Lucy!” + +“She is playing the piano,” Mr. Beebe said. He opened the door, and +heard the words of a song: + +“Look not thou on beauty’s charming.” + + +“I didn’t know that Miss Honeychurch sang, too.” + +“Sit thou still when kings are arming, +Taste not when the wine-cup glistens——” + + +“It’s a song that Cecil gave her. How odd girls are!” + +“What’s that?” called Lucy, stopping short. + +“All right, dear,” said Mrs. Honeychurch kindly. She went into the +drawing-room, and Mr. Beebe heard her kiss Lucy and say: “I am sorry I +was so cross about Greece, but it came on the top of the dahlias.” + +Rather a hard voice said: “Thank you, mother; that doesn’t matter a +bit.” + +“And you are right, too—Greece will be all right; you can go if the +Miss Alans will have you.” + +“Oh, splendid! Oh, thank you!” + +Mr. Beebe followed. Lucy still sat at the piano with her hands over the +keys. She was glad, but he had expected greater gladness. Her mother +bent over her. Freddy, to whom she had been singing, reclined on the +floor with his head against her, and an unlit pipe between his lips. +Oddly enough, the group was beautiful. Mr. Beebe, who loved the art of +the past, was reminded of a favourite theme, the _Santa Conversazione_, +in which people who care for one another are painted chatting together +about noble things—a theme neither sensual nor sensational, and +therefore ignored by the art of to-day. Why should Lucy want either to +marry or to travel when she had such friends at home? + +“Taste not when the wine-cup glistens, +Speak not when the people listens,” + + +she continued. + +“Here’s Mr. Beebe.” + +“Mr. Beebe knows my rude ways.” + +“It’s a beautiful song and a wise one,” said he. “Go on.” + +“It isn’t very good,” she said listlessly. “I forget why—harmony or +something.” + +“I suspected it was unscholarly. It’s so beautiful.” + +“The tune’s right enough,” said Freddy, “but the words are rotten. Why +throw up the sponge?” + +“How stupidly you talk!” said his sister. The _Santa Conversazione_ was +broken up. After all, there was no reason that Lucy should talk about +Greece or thank him for persuading her mother, so he said good-bye. + +Freddy lit his bicycle lamp for him in the porch, and with his usual +felicity of phrase, said: “This has been a day and a half.” + +“Stop thine ear against the singer—” + + +“Wait a minute; she is finishing.” + +“From the red gold keep thy finger; +Vacant heart and hand and eye +Easy live and quiet die.” + + +“I love weather like this,” said Freddy. + +Mr. Beebe passed into it. + +The two main facts were clear. She had behaved splendidly, and he had +helped her. He could not expect to master the details of so big a +change in a girl’s life. If here and there he was dissatisfied or +puzzled, he must acquiesce; she was choosing the better part. + +“Vacant heart and hand and eye—” + + +Perhaps the song stated “the better part” rather too strongly. He half +fancied that the soaring accompaniment—which he did not lose in the +shout of the gale—really agreed with Freddy, and was gently criticizing +the words that it adorned: + +“Vacant heart and hand and eye +Easy live and quiet die.” + + +However, for the fourth time Windy Corner lay poised below him—now as a +beacon in the roaring tides of darkness. + + + + +Chapter XIX +Lying to Mr. Emerson + + +The Miss Alans were found in their beloved temperance hotel near +Bloomsbury—a clean, airless establishment much patronized by provincial +England. They always perched there before crossing the great seas, and +for a week or two would fidget gently over clothes, guide-books, +mackintosh squares, digestive bread, and other Continental necessaries. +That there are shops abroad, even in Athens, never occurred to them, +for they regarded travel as a species of warfare, only to be undertaken +by those who have been fully armed at the Haymarket Stores. Miss +Honeychurch, they trusted, would take care to equip herself duly. +Quinine could now be obtained in tabloids; paper soap was a great help +towards freshening up one’s face in the train. Lucy promised, a little +depressed. + +“But, of course, you know all about these things, and you have Mr. Vyse +to help you. A gentleman is such a stand-by.” + +Mrs. Honeychurch, who had come up to town with her daughter, began to +drum nervously upon her card-case. + +“We think it so good of Mr. Vyse to spare you,” Miss Catharine +continued. “It is not every young man who would be so unselfish. But +perhaps he will come out and join you later on.” + +“Or does his work keep him in London?” said Miss Teresa, the more acute +and less kindly of the two sisters. + +“However, we shall see him when he sees you off. I do so long to see +him.” + +“No one will see Lucy off,” interposed Mrs. Honeychurch. “She doesn’t +like it.” + +“No, I hate seeings-off,” said Lucy. + +“Really? How funny! I should have thought that in this case—” + +“Oh, Mrs. Honeychurch, you aren’t going? It is such a pleasure to have +met you!” + +They escaped, and Lucy said with relief: “That’s all right. We just got +through that time.” + +But her mother was annoyed. “I should be told, dear, that I am +unsympathetic. But I cannot see why you didn’t tell your friends about +Cecil and be done with it. There all the time we had to sit fencing, +and almost telling lies, and be seen through, too, I dare say, which is +most unpleasant.” + +Lucy had plenty to say in reply. She described the Miss Alans’ +character: they were such gossips, and if one told them, the news would +be everywhere in no time. + +“But why shouldn’t it be everywhere in no time?” + +“Because I settled with Cecil not to announce it until I left England. +I shall tell them then. It’s much pleasanter. How wet it is! Let’s turn +in here.” + +“Here” was the British Museum. Mrs. Honeychurch refused. If they must +take shelter, let it be in a shop. Lucy felt contemptuous, for she was +on the tack of caring for Greek sculpture, and had already borrowed a +mythical dictionary from Mr. Beebe to get up the names of the goddesses +and gods. + +“Oh, well, let it be shop, then. Let’s go to Mudie’s. I’ll buy a +guide-book.” + +“You know, Lucy, you and Charlotte and Mr. Beebe all tell me I’m so +stupid, so I suppose I am, but I shall never understand this +hole-and-corner work. You’ve got rid of Cecil—well and good, and I’m +thankful he’s gone, though I did feel angry for the minute. But why not +announce it? Why this hushing up and tip-toeing?” + +“It’s only for a few days.” + +“But why at all?” + +Lucy was silent. She was drifting away from her mother. It was quite +easy to say, “Because George Emerson has been bothering me, and if he +hears I’ve given up Cecil may begin again”—quite easy, and it had the +incidental advantage of being true. But she could not say it. She +disliked confidences, for they might lead to self-knowledge and to that +king of terrors—Light. Ever since that last evening at Florence she had +deemed it unwise to reveal her soul. + +Mrs. Honeychurch, too, was silent. She was thinking, “My daughter won’t +answer me; she would rather be with those inquisitive old maids than +with Freddy and me. Any rag, tag, and bobtail apparently does if she +can leave her home.” And as in her case thoughts never remained +unspoken long, she burst out with: “You’re tired of Windy Corner.” + +This was perfectly true. Lucy had hoped to return to Windy Corner when +she escaped from Cecil, but she discovered that her home existed no +longer. It might exist for Freddy, who still lived and thought +straight, but not for one who had deliberately warped the brain. She +did not acknowledge that her brain was warped, for the brain itself +must assist in that acknowledgment, and she was disordering the very +instruments of life. She only felt, “I do not love George; I broke off +my engagement because I did not love George; I must go to Greece +because I do not love George; it is more important that I should look +up gods in the dictionary than that I should help my mother; everyone +else is behaving very badly.” She only felt irritable and petulant, and +anxious to do what she was not expected to do, and in this spirit she +proceeded with the conversation. + +“Oh, mother, what rubbish you talk! Of course I’m not tired of Windy +Corner.” + +“Then why not say so at once, instead of considering half an hour?” + +She laughed faintly, “Half a _minute_ would be nearer.” + +“Perhaps you would like to stay away from your home altogether?” + +“Hush, mother! People will hear you”; for they had entered Mudie’s. She +bought Baedeker, and then continued: “Of course I want to live at home; +but as we are talking about it, I may as well say that I shall want to +be away in the future more than I have been. You see, I come into my +money next year.” + +Tears came into her mother’s eyes. + +Driven by nameless bewilderment, by what is in older people termed +“eccentricity,” Lucy determined to make this point clear. “I’ve seen +the world so little—I felt so out of things in Italy. I have seen so +little of life; one ought to come up to London more—not a cheap ticket +like to-day, but to stop. I might even share a flat for a little with +some other girl.” + +“And mess with typewriters and latch-keys,” exploded Mrs. Honeychurch. +“And agitate and scream, and be carried off kicking by the police. And +call it a Mission—when no one wants you! And call it Duty—when it means +that you can’t stand your own home! And call it Work—when thousands of +men are starving with the competition as it is! And then to prepare +yourself, find two doddering old ladies, and go abroad with them.” + +“I want more independence,” said Lucy lamely; she knew that she wanted +something, and independence is a useful cry; we can always say that we +have not got it. She tried to remember her emotions in Florence: those +had been sincere and passionate, and had suggested beauty rather than +short skirts and latch-keys. But independence was certainly her cue. + +“Very well. Take your independence and be gone. Rush up and down and +round the world, and come back as thin as a lath with the bad food. +Despise the house that your father built and the garden that he +planted, and our dear view—and then share a flat with another girl.” + +Lucy screwed up her mouth and said: “Perhaps I spoke hastily.” + +“Oh, goodness!” her mother flashed. “How you do remind me of Charlotte +Bartlett!” + +“_Charlotte?_” flashed Lucy in her turn, pierced at last by a vivid +pain. + +“More every moment.” + +“I don’t know what you mean, mother; Charlotte and I are not the very +least alike.” + +“Well, I see the likeness. The same eternal worrying, the same taking +back of words. You and Charlotte trying to divide two apples among +three people last night might be sisters.” + +“What rubbish! And if you dislike Charlotte so, it’s rather a pity you +asked her to stop. I warned you about her; I begged you, implored you +not to, but of course it was not listened to.” + +“There you go.” + +“I beg your pardon?” + +“Charlotte again, my dear; that’s all; her very words.” + +Lucy clenched her teeth. “My point is that you oughtn’t to have asked +Charlotte to stop. I wish you would keep to the point.” And the +conversation died off into a wrangle. + +She and her mother shopped in silence, spoke little in the train, +little again in the carriage, which met them at Dorking Station. It had +poured all day and as they ascended through the deep Surrey lanes +showers of water fell from the over-hanging beech-trees and rattled on +the hood. Lucy complained that the hood was stuffy. Leaning forward, +she looked out into the steaming dusk, and watched the carriage-lamp +pass like a search-light over mud and leaves, and reveal nothing +beautiful. “The crush when Charlotte gets in will be abominable,” she +remarked. For they were to pick up Miss Bartlett at Summer Street, +where she had been dropped as the carriage went down, to pay a call on +Mr. Beebe’s old mother. “We shall have to sit three a side, because the +trees drop, and yet it isn’t raining. Oh, for a little air!” Then she +listened to the horse’s hoofs—“He has not told—he has not told.” That +melody was blurred by the soft road. “_Can’t_ we have the hood down?” +she demanded, and her mother, with sudden tenderness, said: “Very well, +old lady, stop the horse.” And the horse was stopped, and Lucy and +Powell wrestled with the hood, and squirted water down Mrs. +Honeychurch’s neck. But now that the hood was down, she did see +something that she would have missed—there were no lights in the +windows of Cissie Villa, and round the garden gate she fancied she saw +a padlock. + +“Is that house to let again, Powell?” she called. + +“Yes, miss,” he replied. + +“Have they gone?” + +“It is too far out of town for the young gentleman, and his father’s +rheumatism has come on, so he can’t stop on alone, so they are trying +to let furnished,” was the answer. + +“They have gone, then?” + +“Yes, miss, they have gone.” + +Lucy sank back. The carriage stopped at the Rectory. She got out to +call for Miss Bartlett. So the Emersons had gone, and all this bother +about Greece had been unnecessary. Waste! That word seemed to sum up +the whole of life. Wasted plans, wasted money, wasted love, and she had +wounded her mother. Was it possible that she had muddled things away? +Quite possible. Other people had. When the maid opened the door, she +was unable to speak, and stared stupidly into the hall. + +Miss Bartlett at once came forward, and after a long preamble asked a +great favour: might she go to church? Mr. Beebe and his mother had +already gone, but she had refused to start until she obtained her +hostess’s full sanction, for it would mean keeping the horse waiting a +good ten minutes more. + +“Certainly,” said the hostess wearily. “I forgot it was Friday. Let’s +all go. Powell can go round to the stables.” + +“Lucy dearest—” + +“No church for me, thank you.” + +A sigh, and they departed. The church was invisible, but up in the +darkness to the left there was a hint of colour. This was a stained +window, through which some feeble light was shining, and when the door +opened Lucy heard Mr. Beebe’s voice running through the litany to a +minute congregation. Even their church, built upon the slope of the +hill so artfully, with its beautiful raised transept and its spire of +silvery shingle—even their church had lost its charm; and the thing one +never talked about—religion—was fading like all the other things. + +She followed the maid into the Rectory. + +Would she object to sitting in Mr. Beebe’s study? There was only that +one fire. + +She would not object. + +Some one was there already, for Lucy heard the words: “A lady to wait, +sir.” + +Old Mr. Emerson was sitting by the fire, with his foot upon a +gout-stool. + +“Oh, Miss Honeychurch, that you should come!” he quavered; and Lucy saw +an alteration in him since last Sunday. + +Not a word would come to her lips. George she had faced, and could have +faced again, but she had forgotten how to treat his father. + +“Miss Honeychurch, dear, we are so sorry! George is so sorry! He +thought he had a right to try. I cannot blame my boy, and yet I wish he +had told me first. He ought not to have tried. I knew nothing about it +at all.” + +If only she could remember how to behave! + +He held up his hand. “But you must not scold him.” + +Lucy turned her back, and began to look at Mr. Beebe’s books. + +“I taught him,” he quavered, “to trust in love. I said: ‘When love +comes, that is reality.’ I said: ‘Passion does not blind. No. Passion +is sanity, and the woman you love, she is the only person you will ever +really understand.’” He sighed: “True, everlastingly true, though my +day is over, and though there is the result. Poor boy! He is so sorry! +He said he knew it was madness when you brought your cousin in; that +whatever you felt you did not mean. Yet”—his voice gathered strength: +he spoke out to make certain—“Miss Honeychurch, do you remember Italy?” + +Lucy selected a book—a volume of Old Testament commentaries. Holding it +up to her eyes, she said: “I have no wish to discuss Italy or any +subject connected with your son.” + +“But you do remember it?” + +“He has misbehaved himself from the first.” + +“I only was told that he loved you last Sunday. I never could judge +behaviour. I—I—suppose he has.” + +Feeling a little steadier, she put the book back and turned round to +him. His face was drooping and swollen, but his eyes, though they were +sunken deep, gleamed with a child’s courage. + +“Why, he has behaved abominably,” she said. “I am glad he is sorry. Do +you know what he did?” + +“Not ‘abominably,’” was the gentle correction. “He only tried when he +should not have tried. You have all you want, Miss Honeychurch: you are +going to marry the man you love. Do not go out of George’s life saying +he is abominable.” + +“No, of course,” said Lucy, ashamed at the reference to Cecil. +“‘Abominable’ is much too strong. I am sorry I used it about your son. +I think I will go to church, after all. My mother and my cousin have +gone. I shall not be so very late—” + +“Especially as he has gone under,” he said quietly. + +“What was that?” + +“Gone under naturally.” He beat his palms together in silence; his head +fell on his chest. + +“I don’t understand.” + +“As his mother did.” + +“But, Mr. Emerson—_Mr. Emerson_—what are you talking about?” + +“When I wouldn’t have George baptized,” said he. + +Lucy was frightened. + +“And she agreed that baptism was nothing, but he caught that fever when +he was twelve and she turned round. She thought it a judgement.” He +shuddered. “Oh, horrible, when we had given up that sort of thing and +broken away from her parents. Oh, horrible—worst of all—worse than +death, when you have made a little clearing in the wilderness, planted +your little garden, let in your sunlight, and then the weeds creep in +again! A judgement! And our boy had typhoid because no clergyman had +dropped water on him in church! Is it possible, Miss Honeychurch? Shall +we slip back into the darkness for ever?” + +“I don’t know,” gasped Lucy. “I don’t understand this sort of thing. I +was not meant to understand it.” + +“But Mr. Eager—he came when I was out, and acted according to his +principles. I don’t blame him or any one... but by the time George was +well she was ill. He made her think about sin, and she went under +thinking about it.” + +It was thus that Mr. Emerson had murdered his wife in the sight of God. + +“Oh, how terrible!” said Lucy, forgetting her own affairs at last. + +“He was not baptized,” said the old man. “I did hold firm.” And he +looked with unwavering eyes at the rows of books, as if—at what +cost!—he had won a victory over them. “My boy shall go back to the +earth untouched.” + +She asked whether young Mr. Emerson was ill. + +“Oh—last Sunday.” He started into the present. “George last Sunday—no, +not ill: just gone under. He is never ill. But he is his mother’s son. +Her eyes were his, and she had that forehead that I think so beautiful, +and he will not think it worth while to live. It was always touch and +go. He will live; but he will not think it worth while to live. He will +never think anything worth while. You remember that church at +Florence?” + +Lucy did remember, and how she had suggested that George should collect +postage stamps. + +“After you left Florence—horrible. Then we took the house here, and he +goes bathing with your brother, and became better. You saw him +bathing?” + +“I am so sorry, but it is no good discussing this affair. I am deeply +sorry about it.” + +“Then there came something about a novel. I didn’t follow it at all; I +had to hear so much, and he minded telling me; he finds me too old. Ah, +well, one must have failures. George comes down to-morrow, and takes me +up to his London rooms. He can’t bear to be about here, and I must be +where he is.” + +“Mr. Emerson,” cried the girl, “don’t leave at least, not on my +account. I am going to Greece. Don’t leave your comfortable house.” + +It was the first time her voice had been kind and he smiled. “How good +everyone is! And look at Mr. Beebe housing me—came over this morning +and heard I was going! Here I am so comfortable with a fire.” + +“Yes, but you won’t go back to London. It’s absurd.” + +“I must be with George; I must make him care to live, and down here he +can’t. He says the thought of seeing you and of hearing about you—I am +not justifying him: I am only saying what has happened.” + +“Oh, Mr. Emerson”—she took hold of his hand—“you mustn’t. I’ve been +bother enough to the world by now. I can’t have you moving out of your +house when you like it, and perhaps losing money through it—all on my +account. You must stop! I am just going to Greece.” + +“All the way to Greece?” + +Her manner altered. + +“To Greece?” + +“So you must stop. You won’t talk about this business, I know. I can +trust you both.” + +“Certainly you can. We either have you in our lives, or leave you to +the life that you have chosen.” + +“I shouldn’t want—” + +“I suppose Mr. Vyse is very angry with George? No, it was wrong of +George to try. We have pushed our beliefs too far. I fancy that we +deserve sorrow.” + +She looked at the books again—black, brown, and that acrid theological +blue. They surrounded the visitors on every side; they were piled on +the tables, they pressed against the very ceiling. To Lucy who could +not see that Mr. Emerson was profoundly religious, and differed from +Mr. Beebe chiefly by his acknowledgment of passion—it seemed dreadful +that the old man should crawl into such a sanctum, when he was unhappy, +and be dependent on the bounty of a clergyman. + +More certain than ever that she was tired, he offered her his chair. + +“No, please sit still. I think I will sit in the carriage.” + +“Miss Honeychurch, you do sound tired.” + +“Not a bit,” said Lucy, with trembling lips. + +“But you are, and there’s a look of George about you. And what were you +saying about going abroad?” + +She was silent. + +“Greece”—and she saw that he was thinking the word over—“Greece; but +you were to be married this year, I thought.” + +“Not till January, it wasn’t,” said Lucy, clasping her hands. Would she +tell an actual lie when it came to the point? + +“I suppose that Mr. Vyse is going with you. I hope—it isn’t because +George spoke that you are both going?” + +“No.” + +“I hope that you will enjoy Greece with Mr. Vyse.” + +“Thank you.” + +At that moment Mr. Beebe came back from church. His cassock was covered +with rain. “That’s all right,” he said kindly. “I counted on you two +keeping each other company. It’s pouring again. The entire +congregation, which consists of your cousin, your mother, and my +mother, stands waiting in the church, till the carriage fetches it. Did +Powell go round?” + +“I think so; I’ll see.” + +“No—of course, I’ll see. How are the Miss Alans?” + +“Very well, thank you.” + +“Did you tell Mr. Emerson about Greece?” + +“I—I did.” + +“Don’t you think it very plucky of her, Mr. Emerson, to undertake the +two Miss Alans? Now, Miss Honeychurch, go back—keep warm. I think three +is such a courageous number to go travelling.” And he hurried off to +the stables. + +“He is not going,” she said hoarsely. “I made a slip. Mr. Vyse does +stop behind in England.” + +Somehow it was impossible to cheat this old man. To George, to Cecil, +she would have lied again; but he seemed so near the end of things, so +dignified in his approach to the gulf, of which he gave one account, +and the books that surrounded him another, so mild to the rough paths +that he had traversed, that the true chivalry—not the worn-out chivalry +of sex, but the true chivalry that all the young may show to all the +old—awoke in her, and, at whatever risk, she told him that Cecil was +not her companion to Greece. And she spoke so seriously that the risk +became a certainty, and he, lifting his eyes, said: “You are leaving +him? You are leaving the man you love?” + +“I—I had to.” + +“Why, Miss Honeychurch, why?” + +Terror came over her, and she lied again. She made the long, convincing +speech that she had made to Mr. Beebe, and intended to make to the +world when she announced that her engagement was no more. He heard her +in silence, and then said: “My dear, I am worried about you. It seems +to me”—dreamily; she was not alarmed—“that you are in a muddle.” + +She shook her head. + +“Take an old man’s word; there’s nothing worse than a muddle in all the +world. It is easy to face Death and Fate, and the things that sound so +dreadful. It is on my muddles that I look back with horror—on the +things that I might have avoided. We can help one another but little. I +used to think I could teach young people the whole of life, but I know +better now, and all my teaching of George has come down to this: beware +of muddle. Do you remember in that church, when you pretended to be +annoyed with me and weren’t? Do you remember before, when you refused +the room with the view? Those were muddles—little, but ominous—and I am +fearing that you are in one now.” She was silent. “Don’t trust me, Miss +Honeychurch. Though life is very glorious, it is difficult.” She was +still silent. “‘Life’ wrote a friend of mine, ‘is a public performance +on the violin, in which you must learn the instrument as you go along.’ +I think he puts it well. Man has to pick up the use of his functions as +he goes along—especially the function of Love.” Then he burst out +excitedly; “That’s it; that’s what I mean. You love George!” And after +his long preamble, the three words burst against Lucy like waves from +the open sea. + +“But you do,” he went on, not waiting for contradiction. “You love the +boy body and soul, plainly, directly, as he loves you, and no other +word expresses it. You won’t marry the other man for his sake.” + +“How dare you!” gasped Lucy, with the roaring of waters in her ears. +“Oh, how like a man!—I mean, to suppose that a woman is always thinking +about a man.” + +“But you are.” + +She summoned physical disgust. + +“You’re shocked, but I mean to shock you. It’s the only hope at times. +I can reach you no other way. You must marry, or your life will be +wasted. You have gone too far to retreat. I have no time for the +tenderness, and the comradeship, and the poetry, and the things that +really matter, and _for which_ you marry. I know that, with George, you +will find them, and that you love him. Then be his wife. He is already +part of you. Though you fly to Greece, and never see him again, or +forget his very name, George will work in your thoughts till you die. +It isn’t possible to love and to part. You will wish that it was. You +can transmute love, ignore it, muddle it, but you can never pull it out +of you. I know by experience that the poets are right: love is +eternal.” + +Lucy began to cry with anger, and though her anger passed away soon, +her tears remained. + +“I only wish poets would say this, too: love is of the body; not the +body, but of the body. Ah! the misery that would be saved if we +confessed that! Ah! for a little directness to liberate the soul! Your +soul, dear Lucy! I hate the word now, because of all the cant with +which superstition has wrapped it round. But we have souls. I cannot +say how they came nor whither they go, but we have them, and I see you +ruining yours. I cannot bear it. It is again the darkness creeping in; +it is hell.” Then he checked himself. “What nonsense I have talked—how +abstract and remote! And I have made you cry! Dear girl, forgive my +prosiness; marry my boy. When I think what life is, and how seldom love +is answered by love—Marry him; it is one of the moments for which the +world was made.” + +She could not understand him; the words were indeed remote. Yet as he +spoke the darkness was withdrawn, veil after veil, and she saw to the +bottom of her soul. + +“Then, Lucy—” + +“You’ve frightened me,” she moaned. “Cecil—Mr. Beebe—the ticket’s +bought—everything.” She fell sobbing into the chair. “I’m caught in the +tangle. I must suffer and grow old away from him. I cannot break the +whole of life for his sake. They trusted me.” + +A carriage drew up at the front-door. + +“Give George my love—once only. Tell him ‘muddle.’” Then she arranged +her veil, while the tears poured over her cheeks inside. + +“Lucy—” + +“No—they are in the hall—oh, please not, Mr. Emerson—they trust me—” + +“But why should they, when you have deceived them?” + +Mr. Beebe opened the door, saying: “Here’s my mother.” + +“You’re not worthy of their trust.” + +“What’s that?” said Mr. Beebe sharply. + +“I was saying, why should you trust her when she deceived you?” + +“One minute, mother.” He came in and shut the door. + +“I don’t follow you, Mr. Emerson. To whom do you refer? Trust whom?” + +“I mean she has pretended to you that she did not love George. They +have loved one another all along.” + +Mr. Beebe looked at the sobbing girl. He was very quiet, and his white +face, with its ruddy whiskers, seemed suddenly inhuman. A long black +column, he stood and awaited her reply. + +“I shall never marry him,” quavered Lucy. + +A look of contempt came over him, and he said, “Why not?” + +“Mr. Beebe—I have misled you—I have misled myself—” + +“Oh, rubbish, Miss Honeychurch!” + +“It is not rubbish!” said the old man hotly. “It’s the part of people +that you don’t understand.” + +Mr. Beebe laid his hand on the old man’s shoulder pleasantly. + +“Lucy! Lucy!” called voices from the carriage. + +“Mr. Beebe, could you help me?” + +He looked amazed at the request, and said in a low, stern voice: “I am +more grieved than I can possibly express. It is lamentable, +lamentable—incredible.” + +“What’s wrong with the boy?” fired up the other again. + +“Nothing, Mr. Emerson, except that he no longer interests me. Marry +George, Miss Honeychurch. He will do admirably.” + +He walked out and left them. They heard him guiding his mother +up-stairs. + +“Lucy!” the voices called. + +She turned to Mr. Emerson in despair. But his face revived her. It was +the face of a saint who understood. + +“Now it is all dark. Now Beauty and Passion seem never to have existed. +I know. But remember the mountains over Florence and the view. Ah, +dear, if I were George, and gave you one kiss, it would make you brave. +You have to go cold into a battle that needs warmth, out into the +muddle that you have made yourself; and your mother and all your +friends will despise you, oh, my darling, and rightly, if it is ever +right to despise. George still dark, all the tussle and the misery +without a word from him. Am I justified?” Into his own eyes tears came. +“Yes, for we fight for more than Love or Pleasure; there is Truth. +Truth counts, Truth does count.” + +“You kiss me,” said the girl. “You kiss me. I will try.” + +He gave her a sense of deities reconciled, a feeling that, in gaining +the man she loved, she would gain something for the whole world. +Throughout the squalor of her homeward drive—she spoke at once—his +salutation remained. He had robbed the body of its taint, the world’s +taunts of their sting; he had shown her the holiness of direct desire. +She “never exactly understood,” she would say in after years, “how he +managed to strengthen her. It was as if he had made her see the whole +of everything at once.” + + + + +Chapter XX +The End of the Middle Ages + + +The Miss Alans did go to Greece, but they went by themselves. They +alone of this little company will double Malea and plough the waters of +the Saronic gulf. They alone will visit Athens and Delphi, and either +shrine of intellectual song—that upon the Acropolis, encircled by blue +seas; that under Parnassus, where the eagles build and the bronze +charioteer drives undismayed towards infinity. Trembling, anxious, +cumbered with much digestive bread, they did proceed to Constantinople, +they did go round the world. The rest of us must be contented with a +fair, but a less arduous, goal. Italiam petimus: we return to the +Pension Bertolini. + +George said it was his old room. + +“No, it isn’t,” said Lucy; “because it is the room I had, and I had +your father’s room. I forget why; Charlotte made me, for some reason.” + +He knelt on the tiled floor, and laid his face in her lap. + +“George, you baby, get up.” + +“Why shouldn’t I be a baby?” murmured George. + +Unable to answer this question, she put down his sock, which she was +trying to mend, and gazed out through the window. It was evening and +again the spring. + +“Oh, bother Charlotte,” she said thoughtfully. “What can such people be +made of?” + +“Same stuff as parsons are made of.” + +“Nonsense!” + +“Quite right. It is nonsense.” + +“Now you get up off the cold floor, or you’ll be starting rheumatism +next, and you stop laughing and being so silly.” + +“Why shouldn’t I laugh?” he asked, pinning her with his elbows, and +advancing his face to hers. “What’s there to cry at? Kiss me here.” He +indicated the spot where a kiss would be welcome. + +He was a boy after all. When it came to the point, it was she who +remembered the past, she into whose soul the iron had entered, she who +knew whose room this had been last year. It endeared him to her +strangely that he should be sometimes wrong. + +“Any letters?” he asked. + +“Just a line from Freddy.” + +“Now kiss me here; then here.” + +Then, threatened again with rheumatism, he strolled to the window, +opened it (as the English will), and leant out. There was the parapet, +there the river, there to the left the beginnings of the hills. The +cab-driver, who at once saluted him with the hiss of a serpent, might +be that very Phaethon who had set this happiness in motion twelve +months ago. A passion of gratitude—all feelings grow to passions in the +South—came over the husband, and he blessed the people and the things +who had taken so much trouble about a young fool. He had helped +himself, it is true, but how stupidly! + +All the fighting that mattered had been done by others—by Italy, by his +father, by his wife. + +“Lucy, you come and look at the cypresses; and the church, whatever its +name is, still shows.” + +“San Miniato. I’ll just finish your sock.” + +“Signorino, domani faremo uno giro,” called the cabman, with engaging +certainty. + +George told him that he was mistaken; they had no money to throw away +on driving. + +And the people who had not meant to help—the Miss Lavishes, the Cecils, +the Miss Bartletts! Ever prone to magnify Fate, George counted up the +forces that had swept him into this contentment. + +“Anything good in Freddy’s letter?” + +“Not yet.” + +His own content was absolute, but hers held bitterness: the +Honeychurches had not forgiven them; they were disgusted at her past +hypocrisy; she had alienated Windy Corner, perhaps for ever. + +“What does he say?” + +“Silly boy! He thinks he’s being dignified. He knew we should go off in +the spring—he has known it for six months—that if mother wouldn’t give +her consent we should take the thing into our own hands. They had fair +warning, and now he calls it an elopement. Ridiculous boy—” + +“Signorino, domani faremo uno giro—” + +“But it will all come right in the end. He has to build us both up from +the beginning again. I wish, though, that Cecil had not turned so +cynical about women. He has, for the second time, quite altered. Why +will men have theories about women? I haven’t any about men. I wish, +too, that Mr. Beebe—” + +“You may well wish that.” + +“He will never forgive us—I mean, he will never be interested in us +again. I wish that he did not influence them so much at Windy Corner. I +wish he hadn’t—But if we act the truth, the people who really love us +are sure to come back to us in the long run.” + +“Perhaps.” Then he said more gently: “Well, I acted the truth—the only +thing I did do—and you came back to me. So possibly you know.” He +turned back into the room. “Nonsense with that sock.” He carried her to +the window, so that she, too, saw all the view. They sank upon their +knees, invisible from the road, they hoped, and began to whisper one +another’s names. Ah! it was worth while; it was the great joy that they +had expected, and countless little joys of which they had never dreamt. +They were silent. + +“Signorino, domani faremo—” + +“Oh, bother that man!” + +But Lucy remembered the vendor of photographs and said, “No, don’t be +rude to him.” Then with a catching of her breath, she murmured: “Mr. +Eager and Charlotte, dreadful frozen Charlotte. How cruel she would be +to a man like that!” + +“Look at the lights going over the bridge.” + +“But this room reminds me of Charlotte. How horrible to grow old in +Charlotte’s way! To think that evening at the rectory that she +shouldn’t have heard your father was in the house. For she would have +stopped me going in, and he was the only person alive who could have +made me see sense. You couldn’t have made me. When I am very happy”—she +kissed him—“I remember on how little it all hangs. If Charlotte had +only known, she would have stopped me going in, and I should have gone +to silly Greece, and become different for ever.” + +“But she did know,” said George; “she did see my father, surely. He +said so.” + +“Oh, no, she didn’t see him. She was upstairs with old Mrs. Beebe, +don’t you remember, and then went straight to the church. She said so.” + +George was obstinate again. “My father,” said he, “saw her, and I +prefer his word. He was dozing by the study fire, and he opened his +eyes, and there was Miss Bartlett. A few minutes before you came in. +She was turning to go as he woke up. He didn’t speak to her.” + +Then they spoke of other things—the desultory talk of those who have +been fighting to reach one another, and whose reward is to rest quietly +in each other’s arms. It was long ere they returned to Miss Bartlett, +but when they did her behaviour seemed more interesting. George, who +disliked any darkness, said: “It’s clear that she knew. Then, why did +she risk the meeting? She knew he was there, and yet she went to +church.” + +They tried to piece the thing together. + +As they talked, an incredible solution came into Lucy’s mind. She +rejected it, and said: “How like Charlotte to undo her work by a feeble +muddle at the last moment.” But something in the dying evening, in the +roar of the river, in their very embrace warned them that her words +fell short of life, and George whispered: “Or did she mean it?” + +“Mean what?” + +“Signorino, domani faremo uno giro—” + +Lucy bent forward and said with gentleness: “Lascia, prego, lascia. +Siamo sposati.” + +“Scusi tanto, signora,” he replied in tones as gentle and whipped up +his horse. + +“Buona sera—e grazie.” + +“Niente.” + +The cabman drove away singing. + +“Mean what, George?” + +He whispered: “Is it this? Is this possible? I’ll put a marvel to you. +That your cousin has always hoped. That from the very first moment we +met, she hoped, far down in her mind, that we should be like this—of +course, very far down. That she fought us on the surface, and yet she +hoped. I can’t explain her any other way. Can you? Look how she kept me +alive in you all the summer; how she gave you no peace; how month after +month she became more eccentric and unreliable. The sight of us haunted +her—or she couldn’t have described us as she did to her friend. There +are details—it burnt. I read the book afterwards. She is not frozen, +Lucy, she is not withered up all through. She tore us apart twice, but +in the rectory that evening she was given one more chance to make us +happy. We can never make friends with her or thank her. But I do +believe that, far down in her heart, far below all speech and +behaviour, she is glad.” + +“It is impossible,” murmured Lucy, and then, remembering the +experiences of her own heart, she said: “No—it is just possible.” + +Youth enwrapped them; the song of Phaethon announced passion requited, +love attained. But they were conscious of a love more mysterious than +this. The song died away; they heard the river, bearing down the snows +of winter into the Mediterranean. + + + + +*** END OF THE PROJECT GUTENBERG EBOOK A ROOM WITH A VIEW *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + diff --git a/text/3.txt b/text/3.txt new file mode 100644 index 0000000..c1c27be --- /dev/null +++ b/text/3.txt @@ -0,0 +1,4265 @@ +The Project Gutenberg eBook of The Importance of Being Earnest: A Trivial Comedy for Serious People + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: The Importance of Being Earnest: A Trivial Comedy for Serious People + +Author: Oscar Wilde + +Release date: March 1, 1997 [eBook #844] + Most recently updated: November 10, 2025 + +Language: English + +Credits: David Price + + +*** START OF THE PROJECT GUTENBERG EBOOK THE IMPORTANCE OF BEING EARNEST: A TRIVIAL COMEDY FOR SERIOUS PEOPLE *** + + + +The Importance of Being Earnest + +A Trivial Comedy for Serious People + +THE PERSONS IN THE PLAY + +John Worthing, J.P. +Algernon Moncrieff +Rev. Canon Chasuble, D.D. +Merriman, Butler +Lane, Manservant +Lady Bracknell +Hon. Gwendolen Fairfax +Cecily Cardew +Miss Prism, Governess + +THE SCENES OF THE PLAY + +ACT I. Algernon Moncrieff’s Flat in Half-Moon Street, W. + +ACT II. The Garden at the Manor House, Woolton. + +ACT III. Drawing-Room at the Manor House, Woolton. + +TIME: The Present. + +LONDON: ST. JAMES’S THEATRE + +Lessee and Manager: Mr. George Alexander + +February 14th, 1895 + +* * * * * + +John Worthing, J.P.: Mr. George Alexander. +Algernon Moncrieff: Mr. Allen Aynesworth. +Rev. Canon Chasuble, D.D.: Mr. H. H. Vincent. +Merriman: Mr. Frank Dyall. +Lane: Mr. F. Kinsey Peile. +Lady Bracknell: Miss Rose Leclercq. +Hon. Gwendolen Fairfax: Miss Irene Vanbrugh. +Cecily Cardew: Miss Evelyn Millard. +Miss Prism: Mrs. George Canninge. + + + + +FIRST ACT + + +SCENE + +Morning-room in Algernon’s flat in Half-Moon Street. The room is +luxuriously and artistically furnished. The sound of a piano is heard +in the adjoining room. + +[Lane is arranging afternoon tea on the table, and after the music has +ceased, Algernon enters.] + +ALGERNON. +Did you hear what I was playing, Lane? + +LANE. +I didn’t think it polite to listen, sir. + +ALGERNON. +I’m sorry for that, for your sake. I don’t play accurately—any one can +play accurately—but I play with wonderful expression. As far as the +piano is concerned, sentiment is my forte. I keep science for Life. + +LANE. +Yes, sir. + +ALGERNON. +And, speaking of the science of Life, have you got the cucumber +sandwiches cut for Lady Bracknell? + +LANE. +Yes, sir. [Hands them on a salver.] + +ALGERNON. +[Inspects them, takes two, and sits down on the sofa.] Oh! . . . by the +way, Lane, I see from your book that on Thursday night, when Lord +Shoreman and Mr. Worthing were dining with me, eight bottles of +champagne are entered as having been consumed. + +LANE. +Yes, sir; eight bottles and a pint. + +ALGERNON. +Why is it that at a bachelor’s establishment the servants invariably +drink the champagne? I ask merely for information. + +LANE. +I attribute it to the superior quality of the wine, sir. I have often +observed that in married households the champagne is rarely of a +first-rate brand. + +ALGERNON. +Good heavens! Is marriage so demoralising as that? + +LANE. +I believe it _is_ a very pleasant state, sir. I have had very little +experience of it myself up to the present. I have only been married +once. That was in consequence of a misunderstanding between myself and +a young person. + +ALGERNON. +[Languidly_._] I don’t know that I am much interested in your family +life, Lane. + +LANE. +No, sir; it is not a very interesting subject. I never think of it +myself. + +ALGERNON. +Very natural, I am sure. That will do, Lane, thank you. + +LANE. +Thank you, sir. [Lane goes out.] + +ALGERNON. +Lane’s views on marriage seem somewhat lax. Really, if the lower orders +don’t set us a good example, what on earth is the use of them? They +seem, as a class, to have absolutely no sense of moral responsibility. + +[Enter Lane.] + +LANE. +Mr. Ernest Worthing. + +[Enter Jack.] + +[Lane goes out_._] + +ALGERNON. +How are you, my dear Ernest? What brings you up to town? + +JACK. +Oh, pleasure, pleasure! What else should bring one anywhere? Eating as +usual, I see, Algy! + +ALGERNON. +[Stiffly_._] I believe it is customary in good society to take some +slight refreshment at five o’clock. Where have you been since last +Thursday? + +JACK. +[Sitting down on the sofa.] In the country. + +ALGERNON. +What on earth do you do there? + +JACK. +[Pulling off his gloves_._] When one is in town one amuses oneself. +When one is in the country one amuses other people. It is excessively +boring. + +ALGERNON. +And who are the people you amuse? + +JACK. +[Airily_._] Oh, neighbours, neighbours. + +ALGERNON. +Got nice neighbours in your part of Shropshire? + +JACK. +Perfectly horrid! Never speak to one of them. + +ALGERNON. +How immensely you must amuse them! [Goes over and takes sandwich.] By +the way, Shropshire is your county, is it not? + +JACK. +Eh? Shropshire? Yes, of course. Hallo! Why all these cups? Why cucumber +sandwiches? Why such reckless extravagance in one so young? Who is +coming to tea? + +ALGERNON. +Oh! merely Aunt Augusta and Gwendolen. + +JACK. +How perfectly delightful! + +ALGERNON. +Yes, that is all very well; but I am afraid Aunt Augusta won’t quite +approve of your being here. + +JACK. +May I ask why? + +ALGERNON. +My dear fellow, the way you flirt with Gwendolen is perfectly +disgraceful. It is almost as bad as the way Gwendolen flirts with you. + +JACK. +I am in love with Gwendolen. I have come up to town expressly to +propose to her. + +ALGERNON. +I thought you had come up for pleasure? . . . I call that business. + +JACK. +How utterly unromantic you are! + +ALGERNON. +I really don’t see anything romantic in proposing. It is very romantic +to be in love. But there is nothing romantic about a definite proposal. +Why, one may be accepted. One usually is, I believe. Then the +excitement is all over. The very essence of romance is uncertainty. If +ever I get married, I’ll certainly try to forget the fact. + +JACK. +I have no doubt about that, dear Algy. The Divorce Court was specially +invented for people whose memories are so curiously constituted. + +ALGERNON. +Oh! there is no use speculating on that subject. Divorces are made in +Heaven—[Jack puts out his hand to take a sandwich. Algernon at once +interferes.] Please don’t touch the cucumber sandwiches. They are +ordered specially for Aunt Augusta. [Takes one and eats it.] + +JACK. +Well, you have been eating them all the time. + +ALGERNON. +That is quite a different matter. She is my aunt. [Takes plate from +below.] Have some bread and butter. The bread and butter is for +Gwendolen. Gwendolen is devoted to bread and butter. + +JACK. +[Advancing to table and helping himself.] And very good bread and +butter it is too. + +ALGERNON. +Well, my dear fellow, you need not eat as if you were going to eat it +all. You behave as if you were married to her already. You are not +married to her already, and I don’t think you ever will be. + +JACK. +Why on earth do you say that? + +ALGERNON. +Well, in the first place girls never marry the men they flirt with. +Girls don’t think it right. + +JACK. +Oh, that is nonsense! + +ALGERNON. +It isn’t. It is a great truth. It accounts for the extraordinary number +of bachelors that one sees all over the place. In the second place, I +don’t give my consent. + +JACK. +Your consent! + +ALGERNON. +My dear fellow, Gwendolen is my first cousin. And before I allow you to +marry her, you will have to clear up the whole question of Cecily. +[Rings bell.] + +JACK. +Cecily! What on earth do you mean? What do you mean, Algy, by Cecily! I +don’t know any one of the name of Cecily. + +[Enter Lane.] + +ALGERNON. +Bring me that cigarette case Mr. Worthing left in the smoking-room the +last time he dined here. + +LANE. +Yes, sir. [Lane goes out.] + +JACK. +Do you mean to say you have had my cigarette case all this time? I wish +to goodness you had let me know. I have been writing frantic letters to +Scotland Yard about it. I was very nearly offering a large reward. + +ALGERNON. +Well, I wish you would offer one. I happen to be more than usually hard +up. + +JACK. +There is no good offering a large reward now that the thing is found. + +[Enter Lane with the cigarette case on a salver. Algernon takes it at +once. Lane goes out.] + +ALGERNON. +I think that is rather mean of you, Ernest, I must say. [Opens case and +examines it.] However, it makes no matter, for, now that I look at the +inscription inside, I find that the thing isn’t yours after all. + +JACK. +Of course it’s mine. [Moving to him.] You have seen me with it a +hundred times, and you have no right whatsoever to read what is written +inside. It is a very ungentlemanly thing to read a private cigarette +case. + +ALGERNON. +Oh! it is absurd to have a hard and fast rule about what one should +read and what one shouldn’t. More than half of modern culture depends +on what one shouldn’t read. + +JACK. +I am quite aware of the fact, and I don’t propose to discuss modern +culture. It isn’t the sort of thing one should talk of in private. I +simply want my cigarette case back. + +ALGERNON. +Yes; but this isn’t your cigarette case. This cigarette case is a +present from some one of the name of Cecily, and you said you didn’t +know any one of that name. + +JACK. +Well, if you want to know, Cecily happens to be my aunt. + +ALGERNON. +Your aunt! + +JACK. +Yes. Charming old lady she is, too. Lives at Tunbridge Wells. Just give +it back to me, Algy. + +ALGERNON. +[Retreating to back of sofa.] But why does she call herself little +Cecily if she is your aunt and lives at Tunbridge Wells? [Reading.] +‘From little Cecily with her fondest love.’ + +JACK. +[Moving to sofa and kneeling upon it.] My dear fellow, what on earth is +there in that? Some aunts are tall, some aunts are not tall. That is a +matter that surely an aunt may be allowed to decide for herself. You +seem to think that every aunt should be exactly like your aunt! That is +absurd! For Heaven’s sake give me back my cigarette case. [Follows +Algernon round the room.] + +ALGERNON. +Yes. But why does your aunt call you her uncle? ‘From little Cecily, +with her fondest love to her dear Uncle Jack.’ There is no objection, I +admit, to an aunt being a small aunt, but why an aunt, no matter what +her size may be, should call her own nephew her uncle, I can’t quite +make out. Besides, your name isn’t Jack at all; it is Ernest. + +JACK. +It isn’t Ernest; it’s Jack. + +ALGERNON. +You have always told me it was Ernest. I have introduced you to every +one as Ernest. You answer to the name of Ernest. You look as if your +name was Ernest. You are the most earnest-looking person I ever saw in +my life. It is perfectly absurd your saying that your name isn’t +Ernest. It’s on your cards. Here is one of them. [Taking it from case.] +‘Mr. Ernest Worthing, B. 4, The Albany.’ I’ll keep this as a proof that +your name is Ernest if ever you attempt to deny it to me, or to +Gwendolen, or to any one else. [Puts the card in his pocket.] + +JACK. +Well, my name is Ernest in town and Jack in the country, and the +cigarette case was given to me in the country. + +ALGERNON. +Yes, but that does not account for the fact that your small Aunt +Cecily, who lives at Tunbridge Wells, calls you her dear uncle. Come, +old boy, you had much better have the thing out at once. + +JACK. +My dear Algy, you talk exactly as if you were a dentist. It is very +vulgar to talk like a dentist when one isn’t a dentist. It produces a +false impression. + +ALGERNON. +Well, that is exactly what dentists always do. Now, go on! Tell me the +whole thing. I may mention that I have always suspected you of being a +confirmed and secret Bunburyist; and I am quite sure of it now. + +JACK. +Bunburyist? What on earth do you mean by a Bunburyist? + +ALGERNON. +I’ll reveal to you the meaning of that incomparable expression as soon +as you are kind enough to inform me why you are Ernest in town and Jack +in the country. + +JACK. +Well, produce my cigarette case first. + +ALGERNON. +Here it is. [Hands cigarette case.] Now produce your explanation, and +pray make it improbable. [Sits on sofa.] + +JACK. +My dear fellow, there is nothing improbable about my explanation at +all. In fact it’s perfectly ordinary. Old Mr. Thomas Cardew, who +adopted me when I was a little boy, made me in his will guardian to his +grand-daughter, Miss Cecily Cardew. Cecily, who addresses me as her +uncle from motives of respect that you could not possibly appreciate, +lives at my place in the country under the charge of her admirable +governess, Miss Prism. + +ALGERNON. +Where is that place in the country, by the way? + +JACK. +That is nothing to you, dear boy. You are not going to be invited . . . +I may tell you candidly that the place is not in Shropshire. + +ALGERNON. +I suspected that, my dear fellow! I have Bunburyed all over Shropshire +on two separate occasions. Now, go on. Why are you Ernest in town and +Jack in the country? + +JACK. +My dear Algy, I don’t know whether you will be able to understand my +real motives. You are hardly serious enough. When one is placed in the +position of guardian, one has to adopt a very high moral tone on all +subjects. It’s one’s duty to do so. And as a high moral tone can hardly +be said to conduce very much to either one’s health or one’s happiness, +in order to get up to town I have always pretended to have a younger +brother of the name of Ernest, who lives in the Albany, and gets into +the most dreadful scrapes. That, my dear Algy, is the whole truth pure +and simple. + +ALGERNON. +The truth is rarely pure and never simple. Modern life would be very +tedious if it were either, and modern literature a complete +impossibility! + +JACK. +That wouldn’t be at all a bad thing. + +ALGERNON. +Literary criticism is not your forte, my dear fellow. Don’t try it. You +should leave that to people who haven’t been at a University. They do +it so well in the daily papers. What you really are is a Bunburyist. I +was quite right in saying you were a Bunburyist. You are one of the +most advanced Bunburyists I know. + +JACK. +What on earth do you mean? + +ALGERNON. +You have invented a very useful younger brother called Ernest, in order +that you may be able to come up to town as often as you like. I have +invented an invaluable permanent invalid called Bunbury, in order that +I may be able to go down into the country whenever I choose. Bunbury is +perfectly invaluable. If it wasn’t for Bunbury’s extraordinary bad +health, for instance, I wouldn’t be able to dine with you at Willis’s +to-night, for I have been really engaged to Aunt Augusta for more than +a week. + +JACK. +I haven’t asked you to dine with me anywhere to-night. + +ALGERNON. +I know. You are absurdly careless about sending out invitations. It is +very foolish of you. Nothing annoys people so much as not receiving +invitations. + +JACK. +You had much better dine with your Aunt Augusta. + +ALGERNON. +I haven’t the smallest intention of doing anything of the kind. To +begin with, I dined there on Monday, and once a week is quite enough to +dine with one’s own relations. In the second place, whenever I do dine +there I am always treated as a member of the family, and sent down with +either no woman at all, or two. In the third place, I know perfectly +well whom she will place me next to, to-night. She will place me next +Mary Farquhar, who always flirts with her own husband across the +dinner-table. That is not very pleasant. Indeed, it is not even decent +. . . and that sort of thing is enormously on the increase. The amount +of women in London who flirt with their own husbands is perfectly +scandalous. It looks so bad. It is simply washing one’s clean linen in +public. Besides, now that I know you to be a confirmed Bunburyist I +naturally want to talk to you about Bunburying. I want to tell you the +rules. + +JACK. +I’m not a Bunburyist at all. If Gwendolen accepts me, I am going to +kill my brother, indeed I think I’ll kill him in any case. Cecily is a +little too much interested in him. It is rather a bore. So I am going +to get rid of Ernest. And I strongly advise you to do the same with Mr. +. . . with your invalid friend who has the absurd name. + +ALGERNON. +Nothing will induce me to part with Bunbury, and if you ever get +married, which seems to me extremely problematic, you will be very glad +to know Bunbury. A man who marries without knowing Bunbury has a very +tedious time of it. + +JACK. +That is nonsense. If I marry a charming girl like Gwendolen, and she is +the only girl I ever saw in my life that I would marry, I certainly +won’t want to know Bunbury. + +ALGERNON. +Then your wife will. You don’t seem to realise, that in married life +three is company and two is none. + +JACK. +[Sententiously.] That, my dear young friend, is the theory that the +corrupt French Drama has been propounding for the last fifty years. + +ALGERNON. +Yes; and that the happy English home has proved in half the time. + +JACK. +For heaven’s sake, don’t try to be cynical. It’s perfectly easy to be +cynical. + +ALGERNON. +My dear fellow, it isn’t easy to be anything nowadays. There’s such a +lot of beastly competition about. [The sound of an electric bell is +heard.] Ah! that must be Aunt Augusta. Only relatives, or creditors, +ever ring in that Wagnerian manner. Now, if I get her out of the way +for ten minutes, so that you can have an opportunity for proposing to +Gwendolen, may I dine with you to-night at Willis’s? + +JACK. +I suppose so, if you want to. + +ALGERNON. +Yes, but you must be serious about it. I hate people who are not +serious about meals. It is so shallow of them. + +[Enter Lane.] + +LANE. +Lady Bracknell and Miss Fairfax. + +[Algernon goes forward to meet them. Enter Lady Bracknell and +Gwendolen.] + +LADY BRACKNELL. +Good afternoon, dear Algernon, I hope you are behaving very well. + +ALGERNON. +I’m feeling very well, Aunt Augusta. + +LADY BRACKNELL. +That’s not quite the same thing. In fact the two things rarely go +together. [Sees Jack and bows to him with icy coldness.] + +ALGERNON. +[To Gwendolen.] Dear me, you are smart! + +GWENDOLEN. +I am always smart! Am I not, Mr. Worthing? + +JACK. +You’re quite perfect, Miss Fairfax. + +GWENDOLEN. +Oh! I hope I am not that. It would leave no room for developments, and +I intend to develop in many directions. [Gwendolen and Jack sit down +together in the corner.] + +LADY BRACKNELL. +I’m sorry if we are a little late, Algernon, but I was obliged to call +on dear Lady Harbury. I hadn’t been there since her poor husband’s +death. I never saw a woman so altered; she looks quite twenty years +younger. And now I’ll have a cup of tea, and one of those nice cucumber +sandwiches you promised me. + +ALGERNON. +Certainly, Aunt Augusta. [Goes over to tea-table.] + +LADY BRACKNELL. +Won’t you come and sit here, Gwendolen? + +GWENDOLEN. +Thanks, mamma, I’m quite comfortable where I am. + +ALGERNON. +[Picking up empty plate in horror.] Good heavens! Lane! Why are there +no cucumber sandwiches? I ordered them specially. + +LANE. +[Gravely.] There were no cucumbers in the market this morning, sir. I +went down twice. + +ALGERNON. +No cucumbers! + +LANE. +No, sir. Not even for ready money. + +ALGERNON. +That will do, Lane, thank you. + +LANE. +Thank you, sir. [Goes out.] + +ALGERNON. +I am greatly distressed, Aunt Augusta, about there being no cucumbers, +not even for ready money. + +LADY BRACKNELL. +It really makes no matter, Algernon. I had some crumpets with Lady +Harbury, who seems to me to be living entirely for pleasure now. + +ALGERNON. +I hear her hair has turned quite gold from grief. + +LADY BRACKNELL. +It certainly has changed its colour. From what cause I, of course, +cannot say. [Algernon crosses and hands tea.] Thank you. I’ve quite a +treat for you to-night, Algernon. I am going to send you down with Mary +Farquhar. She is such a nice woman, and so attentive to her husband. +It’s delightful to watch them. + +ALGERNON. +I am afraid, Aunt Augusta, I shall have to give up the pleasure of +dining with you to-night after all. + +LADY BRACKNELL. +[Frowning.] I hope not, Algernon. It would put my table completely out. +Your uncle would have to dine upstairs. Fortunately he is accustomed to +that. + +ALGERNON. +It is a great bore, and, I need hardly say, a terrible disappointment +to me, but the fact is I have just had a telegram to say that my poor +friend Bunbury is very ill again. [Exchanges glances with Jack.] They +seem to think I should be with him. + +LADY BRACKNELL. +It is very strange. This Mr. Bunbury seems to suffer from curiously bad +health. + +ALGERNON. +Yes; poor Bunbury is a dreadful invalid. + +LADY BRACKNELL. +Well, I must say, Algernon, that I think it is high time that Mr. +Bunbury made up his mind whether he was going to live or to die. This +shilly-shallying with the question is absurd. Nor do I in any way +approve of the modern sympathy with invalids. I consider it morbid. +Illness of any kind is hardly a thing to be encouraged in others. +Health is the primary duty of life. I am always telling that to your +poor uncle, but he never seems to take much notice . . . as far as any +improvement in his ailment goes. I should be much obliged if you would +ask Mr. Bunbury, from me, to be kind enough not to have a relapse on +Saturday, for I rely on you to arrange my music for me. It is my last +reception, and one wants something that will encourage conversation, +particularly at the end of the season when every one has practically +said whatever they had to say, which, in most cases, was probably not +much. + +ALGERNON. +I’ll speak to Bunbury, Aunt Augusta, if he is still conscious, and I +think I can promise you he’ll be all right by Saturday. Of course the +music is a great difficulty. You see, if one plays good music, people +don’t listen, and if one plays bad music people don’t talk. But I’ll +run over the programme I’ve drawn out, if you will kindly come into the +next room for a moment. + +LADY BRACKNELL. +Thank you, Algernon. It is very thoughtful of you. [Rising, and +following Algernon.] I’m sure the programme will be delightful, after a +few expurgations. French songs I cannot possibly allow. People always +seem to think that they are improper, and either look shocked, which is +vulgar, or laugh, which is worse. But German sounds a thoroughly +respectable language, and indeed, I believe is so. Gwendolen, you will +accompany me. + +GWENDOLEN. +Certainly, mamma. + +[Lady Bracknell and Algernon go into the music-room, Gwendolen remains +behind.] + +JACK. +Charming day it has been, Miss Fairfax. + +GWENDOLEN. +Pray don’t talk to me about the weather, Mr. Worthing. Whenever people +talk to me about the weather, I always feel quite certain that they +mean something else. And that makes me so nervous. + +JACK. +I _do_ mean something else. + +GWENDOLEN. +I thought so. In fact, I am never wrong. + +JACK. +And I would like to be allowed to take advantage of Lady Bracknell’s +temporary absence . . . + +GWENDOLEN. +I would certainly advise you to do so. Mamma has a way of coming back +suddenly into a room that I have often had to speak to her about. + +JACK. +[Nervously.] Miss Fairfax, ever since I met you I have admired you more +than any girl . . . I have ever met since . . . I met you. + +GWENDOLEN. +Yes, I am quite well aware of the fact. And I often wish that in +public, at any rate, you had been more demonstrative. For me you have +always had an irresistible fascination. Even before I met you I was far +from indifferent to you. [Jack looks at her in amazement.] We live, as +I hope you know, Mr. Worthing, in an age of ideals. The fact is +constantly mentioned in the more expensive monthly magazines, and has +reached the provincial pulpits, I am told; and my ideal has always been +to love some one of the name of Ernest. There is something in that name +that inspires absolute confidence. The moment Algernon first mentioned +to me that he had a friend called Ernest, I knew I was destined to love +you. + +JACK. +You really love me, Gwendolen? + +GWENDOLEN. +Passionately! + +JACK. +Darling! You don’t know how happy you’ve made me. + +GWENDOLEN. +My own Ernest! + +JACK. +But you don’t really mean to say that you couldn’t love me if my name +wasn’t Ernest? + +GWENDOLEN. +But your name is Ernest. + +JACK. +Yes, I know it is. But supposing it was something else? Do you mean to +say you couldn’t love me then? + +GWENDOLEN. +[Glibly.] Ah! that is clearly a metaphysical speculation, and like most +metaphysical speculations has very little reference at all to the +actual facts of real life, as we know them. + +JACK. +Personally, darling, to speak quite candidly, I don’t much care about +the name of Ernest . . . I don’t think the name suits me at all. + +GWENDOLEN. +It suits you perfectly. It is a divine name. It has a music of its own. +It produces vibrations. + +JACK. +Well, really, Gwendolen, I must say that I think there are lots of +other much nicer names. I think Jack, for instance, a charming name. + +GWENDOLEN. +Jack? . . . No, there is very little music in the name Jack, if any at +all, indeed. It does not thrill. It produces absolutely no vibrations . +. . I have known several Jacks, and they all, without exception, were +more than usually plain. Besides, Jack is a notorious domesticity for +John! And I pity any woman who is married to a man called John. She +would probably never be allowed to know the entrancing pleasure of a +single moment’s solitude. The only really safe name is Ernest. + +JACK. +Gwendolen, I must get christened at once—I mean we must get married at +once. There is no time to be lost. + +GWENDOLEN. +Married, Mr. Worthing? + +JACK. +[Astounded.] Well . . . surely. You know that I love you, and you led +me to believe, Miss Fairfax, that you were not absolutely indifferent +to me. + +GWENDOLEN. +I adore you. But you haven’t proposed to me yet. Nothing has been said +at all about marriage. The subject has not even been touched on. + +JACK. +Well . . . may I propose to you now? + +GWENDOLEN. +I think it would be an admirable opportunity. And to spare you any +possible disappointment, Mr. Worthing, I think it only fair to tell you +quite frankly before-hand that I am fully determined to accept you. + +JACK. +Gwendolen! + +GWENDOLEN. +Yes, Mr. Worthing, what have you got to say to me? + +JACK. +You know what I have got to say to you. + +GWENDOLEN. +Yes, but you don’t say it. + +JACK. +Gwendolen, will you marry me? [Goes on his knees.] + +GWENDOLEN. +Of course I will, darling. How long you have been about it! I am afraid +you have had very little experience in how to propose. + +JACK. +My own one, I have never loved any one in the world but you. + +GWENDOLEN. +Yes, but men often propose for practice. I know my brother Gerald does. +All my girl-friends tell me so. What wonderfully blue eyes you have, +Ernest! They are quite, quite, blue. I hope you will always look at me +just like that, especially when there are other people present. [Enter +Lady Bracknell.] + +LADY BRACKNELL. +Mr. Worthing! Rise, sir, from this semi-recumbent posture. It is most +indecorous. + +GWENDOLEN. +Mamma! [He tries to rise; she restrains him.] I must beg you to retire. +This is no place for you. Besides, Mr. Worthing has not quite finished +yet. + +LADY BRACKNELL. +Finished what, may I ask? + +GWENDOLEN. +I am engaged to Mr. Worthing, mamma. [They rise together.] + +LADY BRACKNELL. +Pardon me, you are not engaged to any one. When you do become engaged +to some one, I, or your father, should his health permit him, will +inform you of the fact. An engagement should come on a young girl as a +surprise, pleasant or unpleasant, as the case may be. It is hardly a +matter that she could be allowed to arrange for herself . . . And now I +have a few questions to put to you, Mr. Worthing. While I am making +these inquiries, you, Gwendolen, will wait for me below in the +carriage. + +GWENDOLEN. +[Reproachfully.] Mamma! + +LADY BRACKNELL. +In the carriage, Gwendolen! [Gwendolen goes to the door. She and Jack +blow kisses to each other behind Lady Bracknell’s back. Lady Bracknell +looks vaguely about as if she could not understand what the noise was. +Finally turns round.] Gwendolen, the carriage! + +GWENDOLEN. +Yes, mamma. [Goes out, looking back at Jack.] + +LADY BRACKNELL. +[Sitting down.] You can take a seat, Mr. Worthing. + +[Looks in her pocket for note-book and pencil.] + +JACK. +Thank you, Lady Bracknell, I prefer standing. + +LADY BRACKNELL. +[Pencil and note-book in hand.] I feel bound to tell you that you are +not down on my list of eligible young men, although I have the same +list as the dear Duchess of Bolton has. We work together, in fact. +However, I am quite ready to enter your name, should your answers be +what a really affectionate mother requires. Do you smoke? + +JACK. +Well, yes, I must admit I smoke. + +LADY BRACKNELL. +I am glad to hear it. A man should always have an occupation of some +kind. There are far too many idle men in London as it is. How old are +you? + +JACK. +Twenty-nine. + +LADY BRACKNELL. +A very good age to be married at. I have always been of opinion that a +man who desires to get married should know either everything or +nothing. Which do you know? + +JACK. +[After some hesitation.] I know nothing, Lady Bracknell. + +LADY BRACKNELL. +I am pleased to hear it. I do not approve of anything that tampers with +natural ignorance. Ignorance is like a delicate exotic fruit; touch it +and the bloom is gone. The whole theory of modern education is +radically unsound. Fortunately in England, at any rate, education +produces no effect whatsoever. If it did, it would prove a serious +danger to the upper classes, and probably lead to acts of violence in +Grosvenor Square. What is your income? + +JACK. +Between seven and eight thousand a year. + +LADY BRACKNELL. +[Makes a note in her book.] In land, or in investments? + +JACK. +In investments, chiefly. + +LADY BRACKNELL. +That is satisfactory. What between the duties expected of one during +one’s lifetime, and the duties exacted from one after one’s death, land +has ceased to be either a profit or a pleasure. It gives one position, +and prevents one from keeping it up. That’s all that can be said about +land. + +JACK. +I have a country house with some land, of course, attached to it, about +fifteen hundred acres, I believe; but I don’t depend on that for my +real income. In fact, as far as I can make out, the poachers are the +only people who make anything out of it. + +LADY BRACKNELL. +A country house! How many bedrooms? Well, that point can be cleared up +afterwards. You have a town house, I hope? A girl with a simple, +unspoiled nature, like Gwendolen, could hardly be expected to reside in +the country. + +JACK. +Well, I own a house in Belgrave Square, but it is let by the year to +Lady Bloxham. Of course, I can get it back whenever I like, at six +months’ notice. + +LADY BRACKNELL. +Lady Bloxham? I don’t know her. + +JACK. +Oh, she goes about very little. She is a lady considerably advanced in +years. + +LADY BRACKNELL. +Ah, nowadays that is no guarantee of respectability of character. What +number in Belgrave Square? + +JACK. +149. + +LADY BRACKNELL. +[Shaking her head.] The unfashionable side. I thought there was +something. However, that could easily be altered. + +JACK. +Do you mean the fashion, or the side? + +LADY BRACKNELL. +[Sternly.] Both, if necessary, I presume. What are your politics? + +JACK. +Well, I am afraid I really have none. I am a Liberal Unionist. + +LADY BRACKNELL. +Oh, they count as Tories. They dine with us. Or come in the evening, at +any rate. Now to minor matters. Are your parents living? + +JACK. +I have lost both my parents. + +LADY BRACKNELL. +To lose one parent, Mr. Worthing, may be regarded as a misfortune; to +lose both looks like carelessness. Who was your father? He was +evidently a man of some wealth. Was he born in what the Radical papers +call the purple of commerce, or did he rise from the ranks of the +aristocracy? + +JACK. +I am afraid I really don’t know. The fact is, Lady Bracknell, I said I +had lost my parents. It would be nearer the truth to say that my +parents seem to have lost me . . . I don’t actually know who I am by +birth. I was . . . well, I was found. + +LADY BRACKNELL. +Found! + +JACK. +The late Mr. Thomas Cardew, an old gentleman of a very charitable and +kindly disposition, found me, and gave me the name of Worthing, because +he happened to have a first-class ticket for Worthing in his pocket at +the time. Worthing is a place in Sussex. It is a seaside resort. + +LADY BRACKNELL. +Where did the charitable gentleman who had a first-class ticket for +this seaside resort find you? + +JACK. +[Gravely.] In a hand-bag. + +LADY BRACKNELL. +A hand-bag? + +JACK. +[Very seriously.] Yes, Lady Bracknell. I was in a hand-bag—a somewhat +large, black leather hand-bag, with handles to it—an ordinary hand-bag +in fact. + +LADY BRACKNELL. +In what locality did this Mr. James, or Thomas, Cardew come across this +ordinary hand-bag? + +JACK. +In the cloak-room at Victoria Station. It was given to him in mistake +for his own. + +LADY BRACKNELL. +The cloak-room at Victoria Station? + +JACK. +Yes. The Brighton line. + +LADY BRACKNELL. +The line is immaterial. Mr. Worthing, I confess I feel somewhat +bewildered by what you have just told me. To be born, or at any rate +bred, in a hand-bag, whether it had handles or not, seems to me to +display a contempt for the ordinary decencies of family life that +reminds one of the worst excesses of the French Revolution. And I +presume you know what that unfortunate movement led to? As for the +particular locality in which the hand-bag was found, a cloak-room at a +railway station might serve to conceal a social indiscretion—has +probably, indeed, been used for that purpose before now—but it could +hardly be regarded as an assured basis for a recognised position in +good society. + +JACK. +May I ask you then what you would advise me to do? I need hardly say I +would do anything in the world to ensure Gwendolen’s happiness. + +LADY BRACKNELL. +I would strongly advise you, Mr. Worthing, to try and acquire some +relations as soon as possible, and to make a definite effort to produce +at any rate one parent, of either sex, before the season is quite over. + +JACK. +Well, I don’t see how I could possibly manage to do that. I can produce +the hand-bag at any moment. It is in my dressing-room at home. I really +think that should satisfy you, Lady Bracknell. + +LADY BRACKNELL. +Me, sir! What has it to do with me? You can hardly imagine that I and +Lord Bracknell would dream of allowing our only daughter—a girl brought +up with the utmost care—to marry into a cloak-room, and form an +alliance with a parcel? Good morning, Mr. Worthing! + +[Lady Bracknell sweeps out in majestic indignation.] + +JACK. +Good morning! [Algernon, from the other room, strikes up the Wedding +March. Jack looks perfectly furious, and goes to the door.] For +goodness’ sake don’t play that ghastly tune, Algy. How idiotic you are! + +[The music stops and Algernon enters cheerily.] + +ALGERNON. +Didn’t it go off all right, old boy? You don’t mean to say Gwendolen +refused you? I know it is a way she has. She is always refusing people. +I think it is most ill-natured of her. + +JACK. +Oh, Gwendolen is as right as a trivet. As far as she is concerned, we +are engaged. Her mother is perfectly unbearable. Never met such a +Gorgon . . . I don’t really know what a Gorgon is like, but I am quite +sure that Lady Bracknell is one. In any case, she is a monster, without +being a myth, which is rather unfair . . . I beg your pardon, Algy, I +suppose I shouldn’t talk about your own aunt in that way before you. + +ALGERNON. +My dear boy, I love hearing my relations abused. It is the only thing +that makes me put up with them at all. Relations are simply a tedious +pack of people, who haven’t got the remotest knowledge of how to live, +nor the smallest instinct about when to die. + +JACK. +Oh, that is nonsense! + +ALGERNON. +It isn’t! + +JACK. +Well, I won’t argue about the matter. You always want to argue about +things. + +ALGERNON. +That is exactly what things were originally made for. + +JACK. +Upon my word, if I thought that, I’d shoot myself . . . [A pause.] You +don’t think there is any chance of Gwendolen becoming like her mother +in about a hundred and fifty years, do you, Algy? + +ALGERNON. +All women become like their mothers. That is their tragedy. No man +does. That’s his. + +JACK. +Is that clever? + +ALGERNON. +It is perfectly phrased! and quite as true as any observation in +civilised life should be. + +JACK. +I am sick to death of cleverness. Everybody is clever nowadays. You +can’t go anywhere without meeting clever people. The thing has become +an absolute public nuisance. I wish to goodness we had a few fools +left. + +ALGERNON. +We have. + +JACK. +I should extremely like to meet them. What do they talk about? + +ALGERNON. +The fools? Oh! about the clever people, of course. + +JACK. +What fools! + +ALGERNON. +By the way, did you tell Gwendolen the truth about your being Ernest in +town, and Jack in the country? + +JACK. +[In a very patronising manner.] My dear fellow, the truth isn’t quite +the sort of thing one tells to a nice, sweet, refined girl. What +extraordinary ideas you have about the way to behave to a woman! + +ALGERNON. +The only way to behave to a woman is to make love to her, if she is +pretty, and to some one else, if she is plain. + +JACK. +Oh, that is nonsense. + +ALGERNON. +What about your brother? What about the profligate Ernest? + +JACK. +Oh, before the end of the week I shall have got rid of him. I’ll say he +died in Paris of apoplexy. Lots of people die of apoplexy, quite +suddenly, don’t they? + +ALGERNON. +Yes, but it’s hereditary, my dear fellow. It’s a sort of thing that +runs in families. You had much better say a severe chill. + +JACK. +You are sure a severe chill isn’t hereditary, or anything of that kind? + +ALGERNON. +Of course it isn’t! + +JACK. +Very well, then. My poor brother Ernest is carried off suddenly, in +Paris, by a severe chill. That gets rid of him. + +ALGERNON. +But I thought you said that . . . Miss Cardew was a little too much +interested in your poor brother Ernest? Won’t she feel his loss a good +deal? + +JACK. +Oh, that is all right. Cecily is not a silly romantic girl, I am glad +to say. She has got a capital appetite, goes long walks, and pays no +attention at all to her lessons. + +ALGERNON. +I would rather like to see Cecily. + +JACK. +I will take very good care you never do. She is excessively pretty, and +she is only just eighteen. + +ALGERNON. +Have you told Gwendolen yet that you have an excessively pretty ward +who is only just eighteen? + +JACK. +Oh! one doesn’t blurt these things out to people. Cecily and Gwendolen +are perfectly certain to be extremely great friends. I’ll bet you +anything you like that half an hour after they have met, they will be +calling each other sister. + +ALGERNON. +Women only do that when they have called each other a lot of other +things first. Now, my dear boy, if we want to get a good table at +Willis’s, we really must go and dress. Do you know it is nearly seven? + +JACK. +[Irritably.] Oh! It always is nearly seven. + +ALGERNON. +Well, I’m hungry. + +JACK. +I never knew you when you weren’t . . . + +ALGERNON. +What shall we do after dinner? Go to a theatre? + +JACK. +Oh no! I loathe listening. + +ALGERNON. +Well, let us go to the Club? + +JACK. +Oh, no! I hate talking. + +ALGERNON. +Well, we might trot round to the Empire at ten? + +JACK. +Oh, no! I can’t bear looking at things. It is so silly. + +ALGERNON. +Well, what shall we do? + +JACK. +Nothing! + +ALGERNON. +It is awfully hard work doing nothing. However, I don’t mind hard work +where there is no definite object of any kind. + +[Enter Lane.] + +LANE. +Miss Fairfax. + +[Enter Gwendolen. Lane goes out.] + +ALGERNON. +Gwendolen, upon my word! + +GWENDOLEN. +Algy, kindly turn your back. I have something very particular to say to +Mr. Worthing. + +ALGERNON. +Really, Gwendolen, I don’t think I can allow this at all. + +GWENDOLEN. +Algy, you always adopt a strictly immoral attitude towards life. You +are not quite old enough to do that. [Algernon retires to the +fireplace.] + +JACK. +My own darling! + +GWENDOLEN. +Ernest, we may never be married. From the expression on mamma’s face I +fear we never shall. Few parents nowadays pay any regard to what their +children say to them. The old-fashioned respect for the young is fast +dying out. Whatever influence I ever had over mamma, I lost at the age +of three. But although she may prevent us from becoming man and wife, +and I may marry some one else, and marry often, nothing that she can +possibly do can alter my eternal devotion to you. + +JACK. +Dear Gwendolen! + +GWENDOLEN. +The story of your romantic origin, as related to me by mamma, with +unpleasing comments, has naturally stirred the deeper fibres of my +nature. Your Christian name has an irresistible fascination. The +simplicity of your character makes you exquisitely incomprehensible to +me. Your town address at the Albany I have. What is your address in the +country? + +JACK. +The Manor House, Woolton, Hertfordshire. + +[Algernon, who has been carefully listening, smiles to himself, and +writes the address on his shirt-cuff. Then picks up the Railway Guide.] + +GWENDOLEN. +There is a good postal service, I suppose? It may be necessary to do +something desperate. That of course will require serious consideration. +I will communicate with you daily. + +JACK. +My own one! + +GWENDOLEN. +How long do you remain in town? + +JACK. +Till Monday. + +GWENDOLEN. +Good! Algy, you may turn round now. + +ALGERNON. +Thanks, I’ve turned round already. + +GWENDOLEN. +You may also ring the bell. + +JACK. +You will let me see you to your carriage, my own darling? + +GWENDOLEN. +Certainly. + +JACK. +[To Lane, who now enters.] I will see Miss Fairfax out. + +LANE. +Yes, sir. [Jack and Gwendolen go off.] + +[Lane presents several letters on a salver to Algernon. It is to be +surmised that they are bills, as Algernon, after looking at the +envelopes, tears them up.] + +ALGERNON. +A glass of sherry, Lane. + +LANE. +Yes, sir. + +ALGERNON. +To-morrow, Lane, I’m going Bunburying. + +LANE. +Yes, sir. + +ALGERNON. +I shall probably not be back till Monday. You can put up my dress +clothes, my smoking jacket, and all the Bunbury suits . . . + +LANE. +Yes, sir. [Handing sherry.] + +ALGERNON. +I hope to-morrow will be a fine day, Lane. + +LANE. +It never is, sir. + +ALGERNON. +Lane, you’re a perfect pessimist. + +LANE. +I do my best to give satisfaction, sir. + +[Enter Jack. Lane goes off.] + +JACK. +There’s a sensible, intellectual girl! the only girl I ever cared for +in my life. [Algernon is laughing immoderately.] What on earth are you +so amused at? + +ALGERNON. +Oh, I’m a little anxious about poor Bunbury, that is all. + +JACK. +If you don’t take care, your friend Bunbury will get you into a serious +scrape some day. + +ALGERNON. +I love scrapes. They are the only things that are never serious. + +JACK. +Oh, that’s nonsense, Algy. You never talk anything but nonsense. + +ALGERNON. +Nobody ever does. + +[Jack looks indignantly at him, and leaves the room. Algernon lights a +cigarette, reads his shirt-cuff, and smiles.] + +ACT DROP + + + + +SECOND ACT + + +SCENE + +Garden at the Manor House. A flight of grey stone steps leads up to the +house. The garden, an old-fashioned one, full of roses. Time of year, +July. Basket chairs, and a table covered with books, are set under a +large yew-tree. + +[Miss Prism discovered seated at the table. Cecily is at the back +watering flowers.] + +MISS PRISM. +[Calling.] Cecily, Cecily! Surely such a utilitarian occupation as the +watering of flowers is rather Moulton’s duty than yours? Especially at +a moment when intellectual pleasures await you. Your German grammar is +on the table. Pray open it at page fifteen. We will repeat yesterday’s +lesson. + +CECILY. +[Coming over very slowly.] But I don’t like German. It isn’t at all a +becoming language. I know perfectly well that I look quite plain after +my German lesson. + +MISS PRISM. +Child, you know how anxious your guardian is that you should improve +yourself in every way. He laid particular stress on your German, as he +was leaving for town yesterday. Indeed, he always lays stress on your +German when he is leaving for town. + +CECILY. +Dear Uncle Jack is so very serious! Sometimes he is so serious that I +think he cannot be quite well. + +MISS PRISM. +[Drawing herself up.] Your guardian enjoys the best of health, and his +gravity of demeanour is especially to be commended in one so +comparatively young as he is. I know no one who has a higher sense of +duty and responsibility. + +CECILY. +I suppose that is why he often looks a little bored when we three are +together. + +MISS PRISM. +Cecily! I am surprised at you. Mr. Worthing has many troubles in his +life. Idle merriment and triviality would be out of place in his +conversation. You must remember his constant anxiety about that +unfortunate young man his brother. + +CECILY. +I wish Uncle Jack would allow that unfortunate young man, his brother, +to come down here sometimes. We might have a good influence over him, +Miss Prism. I am sure you certainly would. You know German, and +geology, and things of that kind influence a man very much. [Cecily +begins to write in her diary.] + +MISS PRISM. +[Shaking her head.] I do not think that even I could produce any effect +on a character that according to his own brother’s admission is +irretrievably weak and vacillating. Indeed I am not sure that I would +desire to reclaim him. I am not in favour of this modern mania for +turning bad people into good people at a moment’s notice. As a man sows +so let him reap. You must put away your diary, Cecily. I really don’t +see why you should keep a diary at all. + +CECILY. +I keep a diary in order to enter the wonderful secrets of my life. If I +didn’t write them down, I should probably forget all about them. + +MISS PRISM. +Memory, my dear Cecily, is the diary that we all carry about with us. + +CECILY. +Yes, but it usually chronicles the things that have never happened, and +couldn’t possibly have happened. I believe that Memory is responsible +for nearly all the three-volume novels that Mudie sends us. + +MISS PRISM. +Do not speak slightingly of the three-volume novel, Cecily. I wrote one +myself in earlier days. + +CECILY. +Did you really, Miss Prism? How wonderfully clever you are! I hope it +did not end happily? I don’t like novels that end happily. They depress +me so much. + +MISS PRISM. +The good ended happily, and the bad unhappily. That is what Fiction +means. + +CECILY. +I suppose so. But it seems very unfair. And was your novel ever +published? + +MISS PRISM. +Alas! no. The manuscript unfortunately was abandoned. [Cecily starts.] +I use the word in the sense of lost or mislaid. To your work, child, +these speculations are profitless. + +CECILY. +[Smiling.] But I see dear Dr. Chasuble coming up through the garden. + +MISS PRISM. +[Rising and advancing.] Dr. Chasuble! This is indeed a pleasure. + +[Enter Canon Chasuble.] + +CHASUBLE. +And how are we this morning? Miss Prism, you are, I trust, well? + +CECILY. +Miss Prism has just been complaining of a slight headache. I think it +would do her so much good to have a short stroll with you in the Park, +Dr. Chasuble. + +MISS PRISM. +Cecily, I have not mentioned anything about a headache. + +CECILY. +No, dear Miss Prism, I know that, but I felt instinctively that you had +a headache. Indeed I was thinking about that, and not about my German +lesson, when the Rector came in. + +CHASUBLE. +I hope, Cecily, you are not inattentive. + +CECILY. +Oh, I am afraid I am. + +CHASUBLE. +That is strange. Were I fortunate enough to be Miss Prism’s pupil, I +would hang upon her lips. [Miss Prism glares.] I spoke +metaphorically.—My metaphor was drawn from bees. Ahem! Mr. Worthing, I +suppose, has not returned from town yet? + +MISS PRISM. +We do not expect him till Monday afternoon. + +CHASUBLE. +Ah yes, he usually likes to spend his Sunday in London. He is not one +of those whose sole aim is enjoyment, as, by all accounts, that +unfortunate young man his brother seems to be. But I must not disturb +Egeria and her pupil any longer. + +MISS PRISM. +Egeria? My name is Lætitia, Doctor. + +CHASUBLE. +[Bowing.] A classical allusion merely, drawn from the Pagan authors. I +shall see you both no doubt at Evensong? + +MISS PRISM. +I think, dear Doctor, I will have a stroll with you. I find I have a +headache after all, and a walk might do it good. + +CHASUBLE. +With pleasure, Miss Prism, with pleasure. We might go as far as the +schools and back. + +MISS PRISM. +That would be delightful. Cecily, you will read your Political Economy +in my absence. The chapter on the Fall of the Rupee you may omit. It is +somewhat too sensational. Even these metallic problems have their +melodramatic side. + +[Goes down the garden with Dr. Chasuble.] + +CECILY. +[Picks up books and throws them back on table.] Horrid Political +Economy! Horrid Geography! Horrid, horrid German! + +[Enter Merriman with a card on a salver.] + +MERRIMAN. +Mr. Ernest Worthing has just driven over from the station. He has +brought his luggage with him. + +CECILY. +[Takes the card and reads it.] ‘Mr. Ernest Worthing, B. 4, The Albany, +W.’ Uncle Jack’s brother! Did you tell him Mr. Worthing was in town? + +MERRIMAN. +Yes, Miss. He seemed very much disappointed. I mentioned that you and +Miss Prism were in the garden. He said he was anxious to speak to you +privately for a moment. + +CECILY. +Ask Mr. Ernest Worthing to come here. I suppose you had better talk to +the housekeeper about a room for him. + +MERRIMAN. +Yes, Miss. + +[Merriman goes off.] + +CECILY. +I have never met any really wicked person before. I feel rather +frightened. I am so afraid he will look just like every one else. + +[Enter Algernon, very gay and debonnair.] He does! + +ALGERNON. +[Raising his hat.] You are my little cousin Cecily, I’m sure. + +CECILY. +You are under some strange mistake. I am not little. In fact, I believe +I am more than usually tall for my age. [Algernon is rather taken +aback.] But I am your cousin Cecily. You, I see from your card, are +Uncle Jack’s brother, my cousin Ernest, my wicked cousin Ernest. + +ALGERNON. +Oh! I am not really wicked at all, cousin Cecily. You mustn’t think +that I am wicked. + +CECILY. +If you are not, then you have certainly been deceiving us all in a very +inexcusable manner. I hope you have not been leading a double life, +pretending to be wicked and being really good all the time. That would +be hypocrisy. + +ALGERNON. +[Looks at her in amazement.] Oh! Of course I have been rather reckless. + +CECILY. +I am glad to hear it. + +ALGERNON. +In fact, now you mention the subject, I have been very bad in my own +small way. + +CECILY. +I don’t think you should be so proud of that, though I am sure it must +have been very pleasant. + +ALGERNON. +It is much pleasanter being here with you. + +CECILY. +I can’t understand how you are here at all. Uncle Jack won’t be back +till Monday afternoon. + +ALGERNON. +That is a great disappointment. I am obliged to go up by the first +train on Monday morning. I have a business appointment that I am +anxious . . . to miss? + +CECILY. +Couldn’t you miss it anywhere but in London? + +ALGERNON. +No: the appointment is in London. + +CECILY. +Well, I know, of course, how important it is not to keep a business +engagement, if one wants to retain any sense of the beauty of life, but +still I think you had better wait till Uncle Jack arrives. I know he +wants to speak to you about your emigrating. + +ALGERNON. +About my what? + +CECILY. +Your emigrating. He has gone up to buy your outfit. + +ALGERNON. +I certainly wouldn’t let Jack buy my outfit. He has no taste in +neckties at all. + +CECILY. +I don’t think you will require neckties. Uncle Jack is sending you to +Australia. + +ALGERNON. +Australia! I’d sooner die. + +CECILY. +Well, he said at dinner on Wednesday night, that you would have to +choose between this world, the next world, and Australia. + +ALGERNON. +Oh, well! The accounts I have received of Australia and the next world, +are not particularly encouraging. This world is good enough for me, +cousin Cecily. + +CECILY. +Yes, but are you good enough for it? + +ALGERNON. +I’m afraid I’m not that. That is why I want you to reform me. You might +make that your mission, if you don’t mind, cousin Cecily. + +CECILY. +I’m afraid I’ve no time, this afternoon. + +ALGERNON. +Well, would you mind my reforming myself this afternoon? + +CECILY. +It is rather Quixotic of you. But I think you should try. + +ALGERNON. +I will. I feel better already. + +CECILY. +You are looking a little worse. + +ALGERNON. +That is because I am hungry. + +CECILY. +How thoughtless of me. I should have remembered that when one is going +to lead an entirely new life, one requires regular and wholesome meals. +Won’t you come in? + +ALGERNON. +Thank you. Might I have a buttonhole first? I never have any appetite +unless I have a buttonhole first. + +CECILY. +A Marechal Niel? [Picks up scissors.] + +ALGERNON. +No, I’d sooner have a pink rose. + +CECILY. +Why? [Cuts a flower.] + +ALGERNON. +Because you are like a pink rose, Cousin Cecily. + +CECILY. +I don’t think it can be right for you to talk to me like that. Miss +Prism never says such things to me. + +ALGERNON. +Then Miss Prism is a short-sighted old lady. [Cecily puts the rose in +his buttonhole.] You are the prettiest girl I ever saw. + +CECILY. +Miss Prism says that all good looks are a snare. + +ALGERNON. +They are a snare that every sensible man would like to be caught in. + +CECILY. +Oh, I don’t think I would care to catch a sensible man. I shouldn’t +know what to talk to him about. + +[They pass into the house. Miss Prism and Dr. Chasuble return.] + +MISS PRISM. +You are too much alone, dear Dr. Chasuble. You should get married. A +misanthrope I can understand—a womanthrope, never! + +CHASUBLE. +[With a scholar’s shudder.] Believe me, I do not deserve so neologistic +a phrase. The precept as well as the practice of the Primitive Church +was distinctly against matrimony. + +MISS PRISM. +[Sententiously.] That is obviously the reason why the Primitive Church +has not lasted up to the present day. And you do not seem to realise, +dear Doctor, that by persistently remaining single, a man converts +himself into a permanent public temptation. Men should be more careful; +this very celibacy leads weaker vessels astray. + +CHASUBLE. +But is a man not equally attractive when married? + +MISS PRISM. +No married man is ever attractive except to his wife. + +CHASUBLE. +And often, I’ve been told, not even to her. + +MISS PRISM. +That depends on the intellectual sympathies of the woman. Maturity can +always be depended on. Ripeness can be trusted. Young women are green. +[Dr. Chasuble starts.] I spoke horticulturally. My metaphor was drawn +from fruits. But where is Cecily? + +CHASUBLE. +Perhaps she followed us to the schools. + +[Enter Jack slowly from the back of the garden. He is dressed in the +deepest mourning, with crape hatband and black gloves.] + +MISS PRISM. +Mr. Worthing! + +CHASUBLE. +Mr. Worthing? + +MISS PRISM. +This is indeed a surprise. We did not look for you till Monday +afternoon. + +JACK. +[Shakes Miss Prism’s hand in a tragic manner.] I have returned sooner +than I expected. Dr. Chasuble, I hope you are well? + +CHASUBLE. +Dear Mr. Worthing, I trust this garb of woe does not betoken some +terrible calamity? + +JACK. +My brother. + +MISS PRISM. +More shameful debts and extravagance? + +CHASUBLE. +Still leading his life of pleasure? + +JACK. +[Shaking his head.] Dead! + +CHASUBLE. +Your brother Ernest dead? + +JACK. +Quite dead. + +MISS PRISM. +What a lesson for him! I trust he will profit by it. + +CHASUBLE. +Mr. Worthing, I offer you my sincere condolence. You have at least the +consolation of knowing that you were always the most generous and +forgiving of brothers. + +JACK. +Poor Ernest! He had many faults, but it is a sad, sad blow. + +CHASUBLE. +Very sad indeed. Were you with him at the end? + +JACK. +No. He died abroad; in Paris, in fact. I had a telegram last night from +the manager of the Grand Hotel. + +CHASUBLE. +Was the cause of death mentioned? + +JACK. +A severe chill, it seems. + +MISS PRISM. +As a man sows, so shall he reap. + +CHASUBLE. +[Raising his hand.] Charity, dear Miss Prism, charity! None of us are +perfect. I myself am peculiarly susceptible to draughts. Will the +interment take place here? + +JACK. +No. He seems to have expressed a desire to be buried in Paris. + +CHASUBLE. +In Paris! [Shakes his head.] I fear that hardly points to any very +serious state of mind at the last. You would no doubt wish me to make +some slight allusion to this tragic domestic affliction next Sunday. +[Jack presses his hand convulsively.] My sermon on the meaning of the +manna in the wilderness can be adapted to almost any occasion, joyful, +or, as in the present case, distressing. [All sigh.] I have preached it +at harvest celebrations, christenings, confirmations, on days of +humiliation and festal days. The last time I delivered it was in the +Cathedral, as a charity sermon on behalf of the Society for the +Prevention of Discontent among the Upper Orders. The Bishop, who was +present, was much struck by some of the analogies I drew. + +JACK. +Ah! that reminds me, you mentioned christenings I think, Dr. Chasuble? +I suppose you know how to christen all right? [Dr. Chasuble looks +astounded.] I mean, of course, you are continually christening, aren’t +you? + +MISS PRISM. +It is, I regret to say, one of the Rector’s most constant duties in +this parish. I have often spoken to the poorer classes on the subject. +But they don’t seem to know what thrift is. + +CHASUBLE. +But is there any particular infant in whom you are interested, Mr. +Worthing? Your brother was, I believe, unmarried, was he not? + +JACK. +Oh yes. + +MISS PRISM. +[Bitterly.] People who live entirely for pleasure usually are. + +JACK. +But it is not for any child, dear Doctor. I am very fond of children. +No! the fact is, I would like to be christened myself, this afternoon, +if you have nothing better to do. + +CHASUBLE. +But surely, Mr. Worthing, you have been christened already? + +JACK. +I don’t remember anything about it. + +CHASUBLE. +But have you any grave doubts on the subject? + +JACK. +I certainly intend to have. Of course I don’t know if the thing would +bother you in any way, or if you think I am a little too old now. + +CHASUBLE. +Not at all. The sprinkling, and, indeed, the immersion of adults is a +perfectly canonical practice. + +JACK. +Immersion! + +CHASUBLE. +You need have no apprehensions. Sprinkling is all that is necessary, or +indeed I think advisable. Our weather is so changeable. At what hour +would you wish the ceremony performed? + +JACK. +Oh, I might trot round about five if that would suit you. + +CHASUBLE. +Perfectly, perfectly! In fact I have two similar ceremonies to perform +at that time. A case of twins that occurred recently in one of the +outlying cottages on your own estate. Poor Jenkins the carter, a most +hard-working man. + +JACK. +Oh! I don’t see much fun in being christened along with other babies. +It would be childish. Would half-past five do? + +CHASUBLE. +Admirably! Admirably! [Takes out watch.] And now, dear Mr. Worthing, I +will not intrude any longer into a house of sorrow. I would merely beg +you not to be too much bowed down by grief. What seem to us bitter +trials are often blessings in disguise. + +MISS PRISM. +This seems to me a blessing of an extremely obvious kind. + +[Enter Cecily from the house.] + +CECILY. +Uncle Jack! Oh, I am pleased to see you back. But what horrid clothes +you have got on! Do go and change them. + +MISS PRISM. +Cecily! + +CHASUBLE. +My child! my child! [Cecily goes towards Jack; he kisses her brow in a +melancholy manner.] + +CECILY. +What is the matter, Uncle Jack? Do look happy! You look as if you had +toothache, and I have got such a surprise for you. Who do you think is +in the dining-room? Your brother! + +JACK. +Who? + +CECILY. +Your brother Ernest. He arrived about half an hour ago. + +JACK. +What nonsense! I haven’t got a brother. + +CECILY. +Oh, don’t say that. However badly he may have behaved to you in the +past he is still your brother. You couldn’t be so heartless as to +disown him. I’ll tell him to come out. And you will shake hands with +him, won’t you, Uncle Jack? [Runs back into the house.] + +CHASUBLE. +These are very joyful tidings. + +MISS PRISM. +After we had all been resigned to his loss, his sudden return seems to +me peculiarly distressing. + +JACK. +My brother is in the dining-room? I don’t know what it all means. I +think it is perfectly absurd. + +[Enter Algernon and Cecily hand in hand. They come slowly up to Jack.] + +JACK. +Good heavens! [Motions Algernon away.] + +ALGERNON. +Brother John, I have come down from town to tell you that I am very +sorry for all the trouble I have given you, and that I intend to lead a +better life in the future. [Jack glares at him and does not take his +hand.] + +CECILY. +Uncle Jack, you are not going to refuse your own brother’s hand? + +JACK. +Nothing will induce me to take his hand. I think his coming down here +disgraceful. He knows perfectly well why. + +CECILY. +Uncle Jack, do be nice. There is some good in every one. Ernest has +just been telling me about his poor invalid friend Mr. Bunbury whom he +goes to visit so often. And surely there must be much good in one who +is kind to an invalid, and leaves the pleasures of London to sit by a +bed of pain. + +JACK. +Oh! he has been talking about Bunbury, has he? + +CECILY. +Yes, he has told me all about poor Mr. Bunbury, and his terrible state +of health. + +JACK. +Bunbury! Well, I won’t have him talk to you about Bunbury or about +anything else. It is enough to drive one perfectly frantic. + +ALGERNON. +Of course I admit that the faults were all on my side. But I must say +that I think that Brother John’s coldness to me is peculiarly painful. +I expected a more enthusiastic welcome, especially considering it is +the first time I have come here. + +CECILY. +Uncle Jack, if you don’t shake hands with Ernest I will never forgive +you. + +JACK. +Never forgive me? + +CECILY. +Never, never, never! + +JACK. +Well, this is the last time I shall ever do it. [Shakes with Algernon +and glares.] + +CHASUBLE. +It’s pleasant, is it not, to see so perfect a reconciliation? I think +we might leave the two brothers together. + +MISS PRISM. +Cecily, you will come with us. + +CECILY. +Certainly, Miss Prism. My little task of reconciliation is over. + +CHASUBLE. +You have done a beautiful action to-day, dear child. + +MISS PRISM. +We must not be premature in our judgments. + +CECILY. +I feel very happy. [They all go off except Jack and Algernon.] + +JACK. +You young scoundrel, Algy, you must get out of this place as soon as +possible. I don’t allow any Bunburying here. + +[Enter Merriman.] + +MERRIMAN. +I have put Mr. Ernest’s things in the room next to yours, sir. I +suppose that is all right? + +JACK. +What? + +MERRIMAN. +Mr. Ernest’s luggage, sir. I have unpacked it and put it in the room +next to your own. + +JACK. +His luggage? + +MERRIMAN. +Yes, sir. Three portmanteaus, a dressing-case, two hat-boxes, and a +large luncheon-basket. + +ALGERNON. +I am afraid I can’t stay more than a week this time. + +JACK. +Merriman, order the dog-cart at once. Mr. Ernest has been suddenly +called back to town. + +MERRIMAN. +Yes, sir. [Goes back into the house.] + +ALGERNON. +What a fearful liar you are, Jack. I have not been called back to town +at all. + +JACK. +Yes, you have. + +ALGERNON. +I haven’t heard any one call me. + +JACK. +Your duty as a gentleman calls you back. + +ALGERNON. +My duty as a gentleman has never interfered with my pleasures in the +smallest degree. + +JACK. +I can quite understand that. + +ALGERNON. +Well, Cecily is a darling. + +JACK. +You are not to talk of Miss Cardew like that. I don’t like it. + +ALGERNON. +Well, I don’t like your clothes. You look perfectly ridiculous in them. +Why on earth don’t you go up and change? It is perfectly childish to be +in deep mourning for a man who is actually staying for a whole week +with you in your house as a guest. I call it grotesque. + +JACK. +You are certainly not staying with me for a whole week as a guest or +anything else. You have got to leave . . . by the four-five train. + +ALGERNON. +I certainly won’t leave you so long as you are in mourning. It would be +most unfriendly. If I were in mourning you would stay with me, I +suppose. I should think it very unkind if you didn’t. + +JACK. +Well, will you go if I change my clothes? + +ALGERNON. +Yes, if you are not too long. I never saw anybody take so long to +dress, and with such little result. + +JACK. +Well, at any rate, that is better than being always over-dressed as you +are. + +ALGERNON. +If I am occasionally a little over-dressed, I make up for it by being +always immensely over-educated. + +JACK. +Your vanity is ridiculous, your conduct an outrage, and your presence +in my garden utterly absurd. However, you have got to catch the +four-five, and I hope you will have a pleasant journey back to town. +This Bunburying, as you call it, has not been a great success for you. + +[Goes into the house.] + +ALGERNON. +I think it has been a great success. I’m in love with Cecily, and that +is everything. + +[Enter Cecily at the back of the garden. She picks up the can and +begins to water the flowers.] But I must see her before I go, and make +arrangements for another Bunbury. Ah, there she is. + +CECILY. +Oh, I merely came back to water the roses. I thought you were with +Uncle Jack. + +ALGERNON. +He’s gone to order the dog-cart for me. + +CECILY. +Oh, is he going to take you for a nice drive? + +ALGERNON. +He’s going to send me away. + +CECILY. +Then have we got to part? + +ALGERNON. +I am afraid so. It’s a very painful parting. + +CECILY. +It is always painful to part from people whom one has known for a very +brief space of time. The absence of old friends one can endure with +equanimity. But even a momentary separation from anyone to whom one has +just been introduced is almost unbearable. + +ALGERNON. +Thank you. + +[Enter Merriman.] + +MERRIMAN. +The dog-cart is at the door, sir. [Algernon looks appealingly at +Cecily.] + +CECILY. +It can wait, Merriman for . . . five minutes. + +MERRIMAN. +Yes, Miss. [Exit Merriman.] + +ALGERNON. +I hope, Cecily, I shall not offend you if I state quite frankly and +openly that you seem to me to be in every way the visible +personification of absolute perfection. + +CECILY. +I think your frankness does you great credit, Ernest. If you will allow +me, I will copy your remarks into my diary. [Goes over to table and +begins writing in diary.] + +ALGERNON. +Do you really keep a diary? I’d give anything to look at it. May I? + +CECILY. +Oh no. [Puts her hand over it.] You see, it is simply a very young +girl’s record of her own thoughts and impressions, and consequently +meant for publication. When it appears in volume form I hope you will +order a copy. But pray, Ernest, don’t stop. I delight in taking down +from dictation. I have reached ‘absolute perfection’. You can go on. I +am quite ready for more. + +ALGERNON. +[Somewhat taken aback.] Ahem! Ahem! + +CECILY. +Oh, don’t cough, Ernest. When one is dictating one should speak +fluently and not cough. Besides, I don’t know how to spell a cough. +[Writes as Algernon speaks.] + +ALGERNON. +[Speaking very rapidly.] Cecily, ever since I first looked upon your +wonderful and incomparable beauty, I have dared to love you wildly, +passionately, devotedly, hopelessly. + +CECILY. +I don’t think that you should tell me that you love me wildly, +passionately, devotedly, hopelessly. Hopelessly doesn’t seem to make +much sense, does it? + +ALGERNON. +Cecily! + +[Enter Merriman.] + +MERRIMAN. +The dog-cart is waiting, sir. + +ALGERNON. +Tell it to come round next week, at the same hour. + +MERRIMAN. +[Looks at Cecily, who makes no sign.] Yes, sir. + +[Merriman retires.] + +CECILY. +Uncle Jack would be very much annoyed if he knew you were staying on +till next week, at the same hour. + +ALGERNON. +Oh, I don’t care about Jack. I don’t care for anybody in the whole +world but you. I love you, Cecily. You will marry me, won’t you? + +CECILY. +You silly boy! Of course. Why, we have been engaged for the last three +months. + +ALGERNON. +For the last three months? + +CECILY. +Yes, it will be exactly three months on Thursday. + +ALGERNON. +But how did we become engaged? + +CECILY. +Well, ever since dear Uncle Jack first confessed to us that he had a +younger brother who was very wicked and bad, you of course have formed +the chief topic of conversation between myself and Miss Prism. And of +course a man who is much talked about is always very attractive. One +feels there must be something in him, after all. I daresay it was +foolish of me, but I fell in love with you, Ernest. + +ALGERNON. +Darling! And when was the engagement actually settled? + +CECILY. +On the 14th of February last. Worn out by your entire ignorance of my +existence, I determined to end the matter one way or the other, and +after a long struggle with myself I accepted you under this dear old +tree here. The next day I bought this little ring in your name, and +this is the little bangle with the true lover’s knot I promised you +always to wear. + +ALGERNON. +Did I give you this? It’s very pretty, isn’t it? + +CECILY. +Yes, you’ve wonderfully good taste, Ernest. It’s the excuse I’ve always +given for your leading such a bad life. And this is the box in which I +keep all your dear letters. [Kneels at table, opens box, and produces +letters tied up with blue ribbon.] + +ALGERNON. +My letters! But, my own sweet Cecily, I have never written you any +letters. + +CECILY. +You need hardly remind me of that, Ernest. I remember only too well +that I was forced to write your letters for you. I wrote always three +times a week, and sometimes oftener. + +ALGERNON. +Oh, do let me read them, Cecily? + +CECILY. +Oh, I couldn’t possibly. They would make you far too conceited. +[Replaces box.] The three you wrote me after I had broken off the +engagement are so beautiful, and so badly spelled, that even now I can +hardly read them without crying a little. + +ALGERNON. +But was our engagement ever broken off? + +CECILY. +Of course it was. On the 22nd of last March. You can see the entry if +you like. [Shows diary.] ‘To-day I broke off my engagement with Ernest. +I feel it is better to do so. The weather still continues charming.’ + +ALGERNON. +But why on earth did you break it off? What had I done? I had done +nothing at all. Cecily, I am very much hurt indeed to hear you broke it +off. Particularly when the weather was so charming. + +CECILY. +It would hardly have been a really serious engagement if it hadn’t been +broken off at least once. But I forgave you before the week was out. + +ALGERNON. +[Crossing to her, and kneeling.] What a perfect angel you are, Cecily. + +CECILY. +You dear romantic boy. [He kisses her, she puts her fingers through his +hair.] I hope your hair curls naturally, does it? + +ALGERNON. +Yes, darling, with a little help from others. + +CECILY. +I am so glad. + +ALGERNON. +You’ll never break off our engagement again, Cecily? + +CECILY. +I don’t think I could break it off now that I have actually met you. +Besides, of course, there is the question of your name. + +ALGERNON. +Yes, of course. [Nervously.] + +CECILY. +You must not laugh at me, darling, but it had always been a girlish +dream of mine to love some one whose name was Ernest. [Algernon rises, +Cecily also.] There is something in that name that seems to inspire +absolute confidence. I pity any poor married woman whose husband is not +called Ernest. + +ALGERNON. +But, my dear child, do you mean to say you could not love me if I had +some other name? + +CECILY. +But what name? + +ALGERNON. +Oh, any name you like—Algernon—for instance . . . + +CECILY. +But I don’t like the name of Algernon. + +ALGERNON. +Well, my own dear, sweet, loving little darling, I really can’t see why +you should object to the name of Algernon. It is not at all a bad name. +In fact, it is rather an aristocratic name. Half of the chaps who get +into the Bankruptcy Court are called Algernon. But seriously, Cecily . +. . [Moving to her] . . . if my name was Algy, couldn’t you love me? + +CECILY. +[Rising.] I might respect you, Ernest, I might admire your character, +but I fear that I should not be able to give you my undivided +attention. + +ALGERNON. +Ahem! Cecily! [Picking up hat.] Your Rector here is, I suppose, +thoroughly experienced in the practice of all the rites and ceremonials +of the Church? + +CECILY. +Oh, yes. Dr. Chasuble is a most learned man. He has never written a +single book, so you can imagine how much he knows. + +ALGERNON. +I must see him at once on a most important christening—I mean on most +important business. + +CECILY. +Oh! + +ALGERNON. +I shan’t be away more than half an hour. + +CECILY. +Considering that we have been engaged since February the 14th, and that +I only met you to-day for the first time, I think it is rather hard +that you should leave me for so long a period as half an hour. Couldn’t +you make it twenty minutes? + +ALGERNON. +I’ll be back in no time. + +[Kisses her and rushes down the garden.] + +CECILY. +What an impetuous boy he is! I like his hair so much. I must enter his +proposal in my diary. + +[Enter Merriman.] + +MERRIMAN. +A Miss Fairfax has just called to see Mr. Worthing. On very important +business, Miss Fairfax states. + +CECILY. +Isn’t Mr. Worthing in his library? + +MERRIMAN. +Mr. Worthing went over in the direction of the Rectory some time ago. + +CECILY. +Pray ask the lady to come out here; Mr. Worthing is sure to be back +soon. And you can bring tea. + +MERRIMAN. +Yes, Miss. [Goes out.] + +CECILY. +Miss Fairfax! I suppose one of the many good elderly women who are +associated with Uncle Jack in some of his philanthropic work in London. +I don’t quite like women who are interested in philanthropic work. I +think it is so forward of them. + +[Enter Merriman.] + +MERRIMAN. +Miss Fairfax. + +[Enter Gwendolen.] + +[Exit Merriman.] + +CECILY. +[Advancing to meet her.] Pray let me introduce myself to you. My name +is Cecily Cardew. + +GWENDOLEN. +Cecily Cardew? [Moving to her and shaking hands.] What a very sweet +name! Something tells me that we are going to be great friends. I like +you already more than I can say. My first impressions of people are +never wrong. + +CECILY. +How nice of you to like me so much after we have known each other such +a comparatively short time. Pray sit down. + +GWENDOLEN. +[Still standing up.] I may call you Cecily, may I not? + +CECILY. +With pleasure! + +GWENDOLEN. +And you will always call me Gwendolen, won’t you? + +CECILY. +If you wish. + +GWENDOLEN. +Then that is all quite settled, is it not? + +CECILY. +I hope so. [A pause. They both sit down together.] + +GWENDOLEN. +Perhaps this might be a favourable opportunity for my mentioning who I +am. My father is Lord Bracknell. You have never heard of papa, I +suppose? + +CECILY. +I don’t think so. + +GWENDOLEN. +Outside the family circle, papa, I am glad to say, is entirely unknown. +I think that is quite as it should be. The home seems to me to be the +proper sphere for the man. And certainly once a man begins to neglect +his domestic duties he becomes painfully effeminate, does he not? And I +don’t like that. It makes men so very attractive. Cecily, mamma, whose +views on education are remarkably strict, has brought me up to be +extremely short-sighted; it is part of her system; so do you mind my +looking at you through my glasses? + +CECILY. +Oh! not at all, Gwendolen. I am very fond of being looked at. + +GWENDOLEN. +[After examining Cecily carefully through a lorgnette.] You are here on +a short visit, I suppose. + +CECILY. +Oh no! I live here. + +GWENDOLEN. +[Severely.] Really? Your mother, no doubt, or some female relative of +advanced years, resides here also? + +CECILY. +Oh no! I have no mother, nor, in fact, any relations. + +GWENDOLEN. +Indeed? + +CECILY. +My dear guardian, with the assistance of Miss Prism, has the arduous +task of looking after me. + +GWENDOLEN. +Your guardian? + +CECILY. +Yes, I am Mr. Worthing’s ward. + +GWENDOLEN. +Oh! It is strange he never mentioned to me that he had a ward. How +secretive of him! He grows more interesting hourly. I am not sure, +however, that the news inspires me with feelings of unmixed delight. +[Rising and going to her.] I am very fond of you, Cecily; I have liked +you ever since I met you! But I am bound to state that now that I know +that you are Mr. Worthing’s ward, I cannot help expressing a wish you +were—well, just a little older than you seem to be—and not quite so +very alluring in appearance. In fact, if I may speak candidly— + +CECILY. +Pray do! I think that whenever one has anything unpleasant to say, one +should always be quite candid. + +GWENDOLEN. +Well, to speak with perfect candour, Cecily, I wish that you were fully +forty-two, and more than usually plain for your age. Ernest has a +strong upright nature. He is the very soul of truth and honour. +Disloyalty would be as impossible to him as deception. But even men of +the noblest possible moral character are extremely susceptible to the +influence of the physical charms of others. Modern, no less than +Ancient History, supplies us with many most painful examples of what I +refer to. If it were not so, indeed, History would be quite unreadable. + +CECILY. +I beg your pardon, Gwendolen, did you say Ernest? + +GWENDOLEN. +Yes. + +CECILY. +Oh, but it is not Mr. Ernest Worthing who is my guardian. It is his +brother—his elder brother. + +GWENDOLEN. +[Sitting down again.] Ernest never mentioned to me that he had a +brother. + +CECILY. +I am sorry to say they have not been on good terms for a long time. + +GWENDOLEN. +Ah! that accounts for it. And now that I think of it I have never heard +any man mention his brother. The subject seems distasteful to most men. +Cecily, you have lifted a load from my mind. I was growing almost +anxious. It would have been terrible if any cloud had come across a +friendship like ours, would it not? Of course you are quite, quite sure +that it is not Mr. Ernest Worthing who is your guardian? + +CECILY. +Quite sure. [A pause.] In fact, I am going to be his. + +GWENDOLEN. +[Inquiringly.] I beg your pardon? + +CECILY. +[Rather shy and confidingly.] Dearest Gwendolen, there is no reason why +I should make a secret of it to you. Our little county newspaper is +sure to chronicle the fact next week. Mr. Ernest Worthing and I are +engaged to be married. + +GWENDOLEN. +[Quite politely, rising.] My darling Cecily, I think there must be some +slight error. Mr. Ernest Worthing is engaged to me. The announcement +will appear in the _Morning Post_ on Saturday at the latest. + +CECILY. +[Very politely, rising.] I am afraid you must be under some +misconception. Ernest proposed to me exactly ten minutes ago. [Shows +diary.] + +GWENDOLEN. +[Examines diary through her lorgnettte carefully.] It is certainly very +curious, for he asked me to be his wife yesterday afternoon at 5.30. If +you would care to verify the incident, pray do so. [Produces diary of +her own.] I never travel without my diary. One should always have +something sensational to read in the train. I am so sorry, dear Cecily, +if it is any disappointment to you, but I am afraid I have the prior +claim. + +CECILY. +It would distress me more than I can tell you, dear Gwendolen, if it +caused you any mental or physical anguish, but I feel bound to point +out that since Ernest proposed to you he clearly has changed his mind. + +GWENDOLEN. +[Meditatively.] If the poor fellow has been entrapped into any foolish +promise I shall consider it my duty to rescue him at once, and with a +firm hand. + +CECILY. +[Thoughtfully and sadly.] Whatever unfortunate entanglement my dear boy +may have got into, I will never reproach him with it after we are +married. + +GWENDOLEN. +Do you allude to me, Miss Cardew, as an entanglement? You are +presumptuous. On an occasion of this kind it becomes more than a moral +duty to speak one’s mind. It becomes a pleasure. + +CECILY. +Do you suggest, Miss Fairfax, that I entrapped Ernest into an +engagement? How dare you? This is no time for wearing the shallow mask +of manners. When I see a spade I call it a spade. + +GWENDOLEN. +[Satirically.] I am glad to say that I have never seen a spade. It is +obvious that our social spheres have been widely different. + +[Enter Merriman, followed by the footman. He carries a salver, table +cloth, and plate stand. Cecily is about to retort. The presence of the +servants exercises a restraining influence, under which both girls +chafe.] + +MERRIMAN. +Shall I lay tea here as usual, Miss? + +CECILY. +[Sternly, in a calm voice.] Yes, as usual. [Merriman begins to clear +table and lay cloth. A long pause. Cecily and Gwendolen glare at each +other.] + +GWENDOLEN. +Are there many interesting walks in the vicinity, Miss Cardew? + +CECILY. +Oh! yes! a great many. From the top of one of the hills quite close one +can see five counties. + +GWENDOLEN. +Five counties! I don’t think I should like that; I hate crowds. + +CECILY. +[Sweetly.] I suppose that is why you live in town? [Gwendolen bites her +lip, and beats her foot nervously with her parasol.] + +GWENDOLEN. +[Looking round.] Quite a well-kept garden this is, Miss Cardew. + +CECILY. +So glad you like it, Miss Fairfax. + +GWENDOLEN. +I had no idea there were any flowers in the country. + +CECILY. +Oh, flowers are as common here, Miss Fairfax, as people are in London. + +GWENDOLEN. +Personally I cannot understand how anybody manages to exist in the +country, if anybody who is anybody does. The country always bores me to +death. + +CECILY. +Ah! This is what the newspapers call agricultural depression, is it +not? I believe the aristocracy are suffering very much from it just at +present. It is almost an epidemic amongst them, I have been told. May I +offer you some tea, Miss Fairfax? + +GWENDOLEN. +[With elaborate politeness.] Thank you. [Aside.] Detestable girl! But I +require tea! + +CECILY. +[Sweetly.] Sugar? + +GWENDOLEN. +[Superciliously.] No, thank you. Sugar is not fashionable any more. +[Cecily looks angrily at her, takes up the tongs and puts four lumps of +sugar into the cup.] + +CECILY. +[Severely.] Cake or bread and butter? + +GWENDOLEN. +[In a bored manner.] Bread and butter, please. Cake is rarely seen at +the best houses nowadays. + +CECILY. +[Cuts a very large slice of cake, and puts it on the tray.] Hand that +to Miss Fairfax. + +[Merriman does so, and goes out with footman. Gwendolen drinks the tea +and makes a grimace. Puts down cup at once, reaches out her hand to the +bread and butter, looks at it, and finds it is cake. Rises in +indignation.] + +GWENDOLEN. +You have filled my tea with lumps of sugar, and though I asked most +distinctly for bread and butter, you have given me cake. I am known for +the gentleness of my disposition, and the extraordinary sweetness of my +nature, but I warn you, Miss Cardew, you may go too far. + +CECILY. +[Rising.] To save my poor, innocent, trusting boy from the machinations +of any other girl there are no lengths to which I would not go. + +GWENDOLEN. +From the moment I saw you I distrusted you. I felt that you were false +and deceitful. I am never deceived in such matters. My first +impressions of people are invariably right. + +CECILY. +It seems to me, Miss Fairfax, that I am trespassing on your valuable +time. No doubt you have many other calls of a similar character to make +in the neighbourhood. + +[Enter Jack.] + +GWENDOLEN. +[Catching sight of him.] Ernest! My own Ernest! + +JACK. +Gwendolen! Darling! [Offers to kiss her.] + +GWENDOLEN. +[Draws back.] A moment! May I ask if you are engaged to be married to +this young lady? [Points to Cecily.] + +JACK. +[Laughing.] To dear little Cecily! Of course not! What could have put +such an idea into your pretty little head? + +GWENDOLEN. +Thank you. You may! [Offers her cheek.] + +CECILY. +[Very sweetly.] I knew there must be some misunderstanding, Miss +Fairfax. The gentleman whose arm is at present round your waist is my +guardian, Mr. John Worthing. + +GWENDOLEN. +I beg your pardon? + +CECILY. +This is Uncle Jack. + +GWENDOLEN. +[Receding.] Jack! Oh! + +[Enter Algernon.] + +CECILY. +Here is Ernest. + +ALGERNON. +[Goes straight over to Cecily without noticing any one else.] My own +love! [Offers to kiss her.] + +CECILY. +[Drawing back.] A moment, Ernest! May I ask you—are you engaged to be +married to this young lady? + +ALGERNON. +[Looking round.] To what young lady? Good heavens! Gwendolen! + +CECILY. +Yes! to good heavens, Gwendolen, I mean to Gwendolen. + +ALGERNON. +[Laughing.] Of course not! What could have put such an idea into your +pretty little head? + +CECILY. +Thank you. [Presenting her cheek to be kissed.] You may. [Algernon +kisses her.] + +GWENDOLEN. +I felt there was some slight error, Miss Cardew. The gentleman who is +now embracing you is my cousin, Mr. Algernon Moncrieff. + +CECILY. +[Breaking away from Algernon.] Algernon Moncrieff! Oh! [The two girls +move towards each other and put their arms round each other’s waists as +if for protection.] + +CECILY. +Are you called Algernon? + +ALGERNON. +I cannot deny it. + +CECILY. +Oh! + +GWENDOLEN. +Is your name really John? + +JACK. +[Standing rather proudly.] I could deny it if I liked. I could deny +anything if I liked. But my name certainly is John. It has been John +for years. + +CECILY. +[To Gwendolen.] A gross deception has been practised on both of us. + +GWENDOLEN. +My poor wounded Cecily! + +CECILY. +My sweet wronged Gwendolen! + +GWENDOLEN. +[Slowly and seriously.] You will call me sister, will you not? [They +embrace. Jack and Algernon groan and walk up and down.] + +CECILY. +[Rather brightly.] There is just one question I would like to be +allowed to ask my guardian. + +GWENDOLEN. +An admirable idea! Mr. Worthing, there is just one question I would +like to be permitted to put to you. Where is your brother Ernest? We +are both engaged to be married to your brother Ernest, so it is a +matter of some importance to us to know where your brother Ernest is at +present. + +JACK. +[Slowly and hesitatingly.] Gwendolen—Cecily—it is very painful for me +to be forced to speak the truth. It is the first time in my life that I +have ever been reduced to such a painful position, and I am really +quite inexperienced in doing anything of the kind. However, I will tell +you quite frankly that I have no brother Ernest. I have no brother at +all. I never had a brother in my life, and I certainly have not the +smallest intention of ever having one in the future. + +CECILY. +[Surprised.] No brother at all? + +JACK. +[Cheerily.] None! + +GWENDOLEN. +[Severely.] Had you never a brother of any kind? + +JACK. +[Pleasantly.] Never. Not even of any kind. + +GWENDOLEN. +I am afraid it is quite clear, Cecily, that neither of us is engaged to +be married to any one. + +CECILY. +It is not a very pleasant position for a young girl suddenly to find +herself in. Is it? + +GWENDOLEN. +Let us go into the house. They will hardly venture to come after us +there. + +CECILY. +No, men are so cowardly, aren’t they? + +[They retire into the house with scornful looks.] + +JACK. +This ghastly state of things is what you call Bunburying, I suppose? + +ALGERNON. +Yes, and a perfectly wonderful Bunbury it is. The most wonderful +Bunbury I have ever had in my life. + +JACK. +Well, you’ve no right whatsoever to Bunbury here. + +ALGERNON. +That is absurd. One has a right to Bunbury anywhere one chooses. Every +serious Bunburyist knows that. + +JACK. +Serious Bunburyist! Good heavens! + +ALGERNON. +Well, one must be serious about something, if one wants to have any +amusement in life. I happen to be serious about Bunburying. What on +earth you are serious about I haven’t got the remotest idea. About +everything, I should fancy. You have such an absolutely trivial nature. + +JACK. +Well, the only small satisfaction I have in the whole of this wretched +business is that your friend Bunbury is quite exploded. You won’t be +able to run down to the country quite so often as you used to do, dear +Algy. And a very good thing too. + +ALGERNON. +Your brother is a little off colour, isn’t he, dear Jack? You won’t be +able to disappear to London quite so frequently as your wicked custom +was. And not a bad thing either. + +JACK. +As for your conduct towards Miss Cardew, I must say that your taking in +a sweet, simple, innocent girl like that is quite inexcusable. To say +nothing of the fact that she is my ward. + +ALGERNON. +I can see no possible defence at all for your deceiving a brilliant, +clever, thoroughly experienced young lady like Miss Fairfax. To say +nothing of the fact that she is my cousin. + +JACK. +I wanted to be engaged to Gwendolen, that is all. I love her. + +ALGERNON. +Well, I simply wanted to be engaged to Cecily. I adore her. + +JACK. +There is certainly no chance of your marrying Miss Cardew. + +ALGERNON. +I don’t think there is much likelihood, Jack, of you and Miss Fairfax +being united. + +JACK. +Well, that is no business of yours. + +ALGERNON. +If it was my business, I wouldn’t talk about it. [Begins to eat +muffins.] It is very vulgar to talk about one’s business. Only people +like stock-brokers do that, and then merely at dinner parties. + +JACK. +How can you sit there, calmly eating muffins when we are in this +horrible trouble, I can’t make out. You seem to me to be perfectly +heartless. + +ALGERNON. +Well, I can’t eat muffins in an agitated manner. The butter would +probably get on my cuffs. One should always eat muffins quite calmly. +It is the only way to eat them. + +JACK. +I say it’s perfectly heartless your eating muffins at all, under the +circumstances. + +ALGERNON. +When I am in trouble, eating is the only thing that consoles me. +Indeed, when I am in really great trouble, as any one who knows me +intimately will tell you, I refuse everything except food and drink. At +the present moment I am eating muffins because I am unhappy. Besides, I +am particularly fond of muffins. [Rising.] + +JACK. +[Rising.] Well, that is no reason why you should eat them all in that +greedy way. [Takes muffins from Algernon.] + +ALGERNON. +[Offering tea-cake.] I wish you would have tea-cake instead. I don’t +like tea-cake. + +JACK. +Good heavens! I suppose a man may eat his own muffins in his own +garden. + +ALGERNON. +But you have just said it was perfectly heartless to eat muffins. + +JACK. +I said it was perfectly heartless of you, under the circumstances. That +is a very different thing. + +ALGERNON. +That may be. But the muffins are the same. [He seizes the muffin-dish +from Jack.] + +JACK. +Algy, I wish to goodness you would go. + +ALGERNON. +You can’t possibly ask me to go without having some dinner. It’s +absurd. I never go without my dinner. No one ever does, except +vegetarians and people like that. Besides I have just made arrangements +with Dr. Chasuble to be christened at a quarter to six under the name +of Ernest. + +JACK. +My dear fellow, the sooner you give up that nonsense the better. I made +arrangements this morning with Dr. Chasuble to be christened myself at +5.30, and I naturally will take the name of Ernest. Gwendolen would +wish it. We can’t both be christened Ernest. It’s absurd. Besides, I +have a perfect right to be christened if I like. There is no evidence +at all that I have ever been christened by anybody. I should think it +extremely probable I never was, and so does Dr. Chasuble. It is +entirely different in your case. You have been christened already. + +ALGERNON. +Yes, but I have not been christened for years. + +JACK. +Yes, but you have been christened. That is the important thing. + +ALGERNON. +Quite so. So I know my constitution can stand it. If you are not quite +sure about your ever having been christened, I must say I think it +rather dangerous your venturing on it now. It might make you very +unwell. You can hardly have forgotten that some one very closely +connected with you was very nearly carried off this week in Paris by a +severe chill. + +JACK. +Yes, but you said yourself that a severe chill was not hereditary. + +ALGERNON. +It usen’t to be, I know—but I daresay it is now. Science is always +making wonderful improvements in things. + +JACK. +[Picking up the muffin-dish.] Oh, that is nonsense; you are always +talking nonsense. + +ALGERNON. +Jack, you are at the muffins again! I wish you wouldn’t. There are only +two left. [Takes them.] I told you I was particularly fond of muffins. + +JACK. +But I hate tea-cake. + +ALGERNON. +Why on earth then do you allow tea-cake to be served up for your +guests? What ideas you have of hospitality! + +JACK. +Algernon! I have already told you to go. I don’t want you here. Why +don’t you go! + +ALGERNON. +I haven’t quite finished my tea yet! and there is still one muffin +left. [Jack groans, and sinks into a chair. Algernon still continues +eating.] + +ACT DROP + + + + +THIRD ACT + +SCENE + +Morning-room at the Manor House. + +[Gwendolen and Cecily are at the window, looking out into the garden.] + +GWENDOLEN. +The fact that they did not follow us at once into the house, as any one +else would have done, seems to me to show that they have some sense of +shame left. + +CECILY. +They have been eating muffins. That looks like repentance. + +GWENDOLEN. +[After a pause.] They don’t seem to notice us at all. Couldn’t you +cough? + +CECILY. +But I haven’t got a cough. + +GWENDOLEN. +They’re looking at us. What effrontery! + +CECILY. +They’re approaching. That’s very forward of them. + +GWENDOLEN. +Let us preserve a dignified silence. + +CECILY. +Certainly. It’s the only thing to do now. [Enter Jack followed by +Algernon. They whistle some dreadful popular air from a British Opera.] + +GWENDOLEN. +This dignified silence seems to produce an unpleasant effect. + +CECILY. +A most distasteful one. + +GWENDOLEN. +But we will not be the first to speak. + +CECILY. +Certainly not. + +GWENDOLEN. +Mr. Worthing, I have something very particular to ask you. Much depends +on your reply. + +CECILY. +Gwendolen, your common sense is invaluable. Mr. Moncrieff, kindly +answer me the following question. Why did you pretend to be my +guardian’s brother? + +ALGERNON. +In order that I might have an opportunity of meeting you. + +CECILY. +[To Gwendolen.] That certainly seems a satisfactory explanation, does +it not? + +GWENDOLEN. +Yes, dear, if you can believe him. + +CECILY. +I don’t. But that does not affect the wonderful beauty of his answer. + +GWENDOLEN. +True. In matters of grave importance, style, not sincerity is the vital +thing. Mr. Worthing, what explanation can you offer to me for +pretending to have a brother? Was it in order that you might have an +opportunity of coming up to town to see me as often as possible? + +JACK. +Can you doubt it, Miss Fairfax? + +GWENDOLEN. +I have the gravest doubts upon the subject. But I intend to crush them. +This is not the moment for German scepticism. [Moving to Cecily.] Their +explanations appear to be quite satisfactory, especially Mr. +Worthing’s. That seems to me to have the stamp of truth upon it. + +CECILY. +I am more than content with what Mr. Moncrieff said. His voice alone +inspires one with absolute credulity. + +GWENDOLEN. +Then you think we should forgive them? + +CECILY. +Yes. I mean no. + +GWENDOLEN. +True! I had forgotten. There are principles at stake that one cannot +surrender. Which of us should tell them? The task is not a pleasant +one. + +CECILY. +Could we not both speak at the same time? + +GWENDOLEN. +An excellent idea! I nearly always speak at the same time as other +people. Will you take the time from me? + +CECILY. +Certainly. [Gwendolen beats time with uplifted finger.] + +GWENDOLEN and CECILY [Speaking together.] Your Christian names are +still an insuperable barrier. That is all! + +JACK and ALGERNON [Speaking together.] Our Christian names! Is that +all? But we are going to be christened this afternoon. + +GWENDOLEN. +[To Jack.] For my sake you are prepared to do this terrible thing? + +JACK. +I am. + +CECILY. +[To Algernon.] To please me you are ready to face this fearful ordeal? + +ALGERNON. +I am! + +GWENDOLEN. +How absurd to talk of the equality of the sexes! Where questions of +self-sacrifice are concerned, men are infinitely beyond us. + +JACK. +We are. [Clasps hands with Algernon.] + +CECILY. +They have moments of physical courage of which we women know absolutely +nothing. + +GWENDOLEN. +[To Jack.] Darling! + +ALGERNON. +[To Cecily.] Darling! [They fall into each other’s arms.] + +[Enter Merriman. When he enters he coughs loudly, seeing the +situation.] + +MERRIMAN. +Ahem! Ahem! Lady Bracknell! + +JACK. +Good heavens! + +[Enter Lady Bracknell. The couples separate in alarm. Exit Merriman.] + +LADY BRACKNELL. +Gwendolen! What does this mean? + +GWENDOLEN. +Merely that I am engaged to be married to Mr. Worthing, mamma. + +LADY BRACKNELL. +Come here. Sit down. Sit down immediately. Hesitation of any kind is a +sign of mental decay in the young, of physical weakness in the old. +[Turns to Jack.] Apprised, sir, of my daughter’s sudden flight by her +trusty maid, whose confidence I purchased by means of a small coin, I +followed her at once by a luggage train. Her unhappy father is, I am +glad to say, under the impression that she is attending a more than +usually lengthy lecture by the University Extension Scheme on the +Influence of a permanent income on Thought. I do not propose to +undeceive him. Indeed I have never undeceived him on any question. I +would consider it wrong. But of course, you will clearly understand +that all communication between yourself and my daughter must cease +immediately from this moment. On this point, as indeed on all points, I +am firm. + +JACK. +I am engaged to be married to Gwendolen, Lady Bracknell! + +LADY BRACKNELL. +You are nothing of the kind, sir. And now, as regards Algernon! . . . +Algernon! + +ALGERNON. +Yes, Aunt Augusta. + +LADY BRACKNELL. +May I ask if it is in this house that your invalid friend Mr. Bunbury +resides? + +ALGERNON. +[Stammering.] Oh! No! Bunbury doesn’t live here. Bunbury is somewhere +else at present. In fact, Bunbury is dead. + +LADY BRACKNELL. +Dead! When did Mr. Bunbury die? His death must have been extremely +sudden. + +ALGERNON. +[Airily.] Oh! I killed Bunbury this afternoon. I mean poor Bunbury died +this afternoon. + +LADY BRACKNELL. +What did he die of? + +ALGERNON. +Bunbury? Oh, he was quite exploded. + +LADY BRACKNELL. +Exploded! Was he the victim of a revolutionary outrage? I was not aware +that Mr. Bunbury was interested in social legislation. If so, he is +well punished for his morbidity. + +ALGERNON. +My dear Aunt Augusta, I mean he was found out! The doctors found out +that Bunbury could not live, that is what I mean—so Bunbury died. + +LADY BRACKNELL. +He seems to have had great confidence in the opinion of his physicians. +I am glad, however, that he made up his mind at the last to some +definite course of action, and acted under proper medical advice. And +now that we have finally got rid of this Mr. Bunbury, may I ask, Mr. +Worthing, who is that young person whose hand my nephew Algernon is now +holding in what seems to me a peculiarly unnecessary manner? + +JACK. +That lady is Miss Cecily Cardew, my ward. [Lady Bracknell bows coldly +to Cecily.] + +ALGERNON. +I am engaged to be married to Cecily, Aunt Augusta. + +LADY BRACKNELL. +I beg your pardon? + +CECILY. +Mr. Moncrieff and I are engaged to be married, Lady Bracknell. + +LADY BRACKNELL. +[With a shiver, crossing to the sofa and sitting down.] I do not know +whether there is anything peculiarly exciting in the air of this +particular part of Hertfordshire, but the number of engagements that go +on seems to me considerably above the proper average that statistics +have laid down for our guidance. I think some preliminary inquiry on my +part would not be out of place. Mr. Worthing, is Miss Cardew at all +connected with any of the larger railway stations in London? I merely +desire information. Until yesterday I had no idea that there were any +families or persons whose origin was a Terminus. [Jack looks perfectly +furious, but restrains himself.] + +JACK. +[In a clear, cold voice.] Miss Cardew is the grand-daughter of the late +Mr. Thomas Cardew of 149 Belgrave Square, S.W.; Gervase Park, Dorking, +Surrey; and the Sporran, Fifeshire, N.B. + +LADY BRACKNELL. +That sounds not unsatisfactory. Three addresses always inspire +confidence, even in tradesmen. But what proof have I of their +authenticity? + +JACK. +I have carefully preserved the Court Guides of the period. They are +open to your inspection, Lady Bracknell. + +LADY BRACKNELL. +[Grimly.] I have known strange errors in that publication. + +JACK. +Miss Cardew’s family solicitors are Messrs. Markby, Markby, and Markby. + +LADY BRACKNELL. +Markby, Markby, and Markby? A firm of the very highest position in +their profession. Indeed I am told that one of the Mr. Markby’s is +occasionally to be seen at dinner parties. So far I am satisfied. + +JACK. +[Very irritably.] How extremely kind of you, Lady Bracknell! I have +also in my possession, you will be pleased to hear, certificates of +Miss Cardew’s birth, baptism, whooping cough, registration, +vaccination, confirmation, and the measles; both the German and the +English variety. + +LADY BRACKNELL. +Ah! A life crowded with incident, I see; though perhaps somewhat too +exciting for a young girl. I am not myself in favour of premature +experiences. [Rises, looks at her watch.] Gwendolen! the time +approaches for our departure. We have not a moment to lose. As a matter +of form, Mr. Worthing, I had better ask you if Miss Cardew has any +little fortune? + +JACK. +Oh! about a hundred and thirty thousand pounds in the Funds. That is +all. Goodbye, Lady Bracknell. So pleased to have seen you. + +LADY BRACKNELL. +[Sitting down again.] A moment, Mr. Worthing. A hundred and thirty +thousand pounds! And in the Funds! Miss Cardew seems to me a most +attractive young lady, now that I look at her. Few girls of the present +day have any really solid qualities, any of the qualities that last, +and improve with time. We live, I regret to say, in an age of surfaces. +[To Cecily.] Come over here, dear. [Cecily goes across.] Pretty child! +your dress is sadly simple, and your hair seems almost as Nature might +have left it. But we can soon alter all that. A thoroughly experienced +French maid produces a really marvellous result in a very brief space +of time. I remember recommending one to young Lady Lancing, and after +three months her own husband did not know her. + +JACK. +And after six months nobody knew her. + +LADY BRACKNELL. +[Glares at Jack for a few moments. Then bends, with a practised smile, +to Cecily.] Kindly turn round, sweet child. [Cecily turns completely +round.] No, the side view is what I want. [Cecily presents her +profile.] Yes, quite as I expected. There are distinct social +possibilities in your profile. The two weak points in our age are its +want of principle and its want of profile. The chin a little higher, +dear. Style largely depends on the way the chin is worn. They are worn +very high, just at present. Algernon! + +ALGERNON. +Yes, Aunt Augusta! + +LADY BRACKNELL. +There are distinct social possibilities in Miss Cardew’s profile. + +ALGERNON. +Cecily is the sweetest, dearest, prettiest girl in the whole world. And +I don’t care twopence about social possibilities. + +LADY BRACKNELL. +Never speak disrespectfully of Society, Algernon. Only people who can’t +get into it do that. [To Cecily.] Dear child, of course you know that +Algernon has nothing but his debts to depend upon. But I do not approve +of mercenary marriages. When I married Lord Bracknell I had no fortune +of any kind. But I never dreamed for a moment of allowing that to stand +in my way. Well, I suppose I must give my consent. + +ALGERNON. +Thank you, Aunt Augusta. + +LADY BRACKNELL. +Cecily, you may kiss me! + +CECILY. +[Kisses her.] Thank you, Lady Bracknell. + +LADY BRACKNELL. +You may also address me as Aunt Augusta for the future. + +CECILY. +Thank you, Aunt Augusta. + +LADY BRACKNELL. +The marriage, I think, had better take place quite soon. + +ALGERNON. +Thank you, Aunt Augusta. + +CECILY. +Thank you, Aunt Augusta. + +LADY BRACKNELL. +To speak frankly, I am not in favour of long engagements. They give +people the opportunity of finding out each other’s character before +marriage, which I think is never advisable. + +JACK. +I beg your pardon for interrupting you, Lady Bracknell, but this +engagement is quite out of the question. I am Miss Cardew’s guardian, +and she cannot marry without my consent until she comes of age. That +consent I absolutely decline to give. + +LADY BRACKNELL. +Upon what grounds may I ask? Algernon is an extremely, I may almost say +an ostentatiously, eligible young man. He has nothing, but he looks +everything. What more can one desire? + +JACK. +It pains me very much to have to speak frankly to you, Lady Bracknell, +about your nephew, but the fact is that I do not approve at all of his +moral character. I suspect him of being untruthful. [Algernon and +Cecily look at him in indignant amazement.] + +LADY BRACKNELL. +Untruthful! My nephew Algernon? Impossible! He is an Oxonian. + +JACK. +I fear there can be no possible doubt about the matter. This afternoon +during my temporary absence in London on an important question of +romance, he obtained admission to my house by means of the false +pretence of being my brother. Under an assumed name he drank, I’ve just +been informed by my butler, an entire pint bottle of my Perrier-Jouet, +Brut, ’89; wine I was specially reserving for myself. Continuing his +disgraceful deception, he succeeded in the course of the afternoon in +alienating the affections of my only ward. He subsequently stayed to +tea, and devoured every single muffin. And what makes his conduct all +the more heartless is, that he was perfectly well aware from the first +that I have no brother, that I never had a brother, and that I don’t +intend to have a brother, not even of any kind. I distinctly told him +so myself yesterday afternoon. + +LADY BRACKNELL. +Ahem! Mr. Worthing, after careful consideration I have decided entirely +to overlook my nephew’s conduct to you. + +JACK. +That is very generous of you, Lady Bracknell. My own decision, however, +is unalterable. I decline to give my consent. + +LADY BRACKNELL. +[To Cecily.] Come here, sweet child. [Cecily goes over.] How old are +you, dear? + +CECILY. +Well, I am really only eighteen, but I always admit to twenty when I go +to evening parties. + +LADY BRACKNELL. +You are perfectly right in making some slight alteration. Indeed, no +woman should ever be quite accurate about her age. It looks so +calculating . . . [In a meditative manner.] Eighteen, but admitting to +twenty at evening parties. Well, it will not be very long before you +are of age and free from the restraints of tutelage. So I don’t think +your guardian’s consent is, after all, a matter of any importance. + +JACK. +Pray excuse me, Lady Bracknell, for interrupting you again, but it is +only fair to tell you that according to the terms of her grandfather’s +will Miss Cardew does not come legally of age till she is thirty-five. + +LADY BRACKNELL. +That does not seem to me to be a grave objection. Thirty-five is a very +attractive age. London society is full of women of the very highest +birth who have, of their own free choice, remained thirty-five for +years. Lady Dumbleton is an instance in point. To my own knowledge she +has been thirty-five ever since she arrived at the age of forty, which +was many years ago now. I see no reason why our dear Cecily should not +be even still more attractive at the age you mention than she is at +present. There will be a large accumulation of property. + +CECILY. +Algy, could you wait for me till I was thirty-five? + +ALGERNON. +Of course I could, Cecily. You know I could. + +CECILY. +Yes, I felt it instinctively, but I couldn’t wait all that time. I hate +waiting even five minutes for anybody. It always makes me rather cross. +I am not punctual myself, I know, but I do like punctuality in others, +and waiting, even to be married, is quite out of the question. + +ALGERNON. +Then what is to be done, Cecily? + +CECILY. +I don’t know, Mr. Moncrieff. + +LADY BRACKNELL. +My dear Mr. Worthing, as Miss Cardew states positively that she cannot +wait till she is thirty-five—a remark which I am bound to say seems to +me to show a somewhat impatient nature—I would beg of you to reconsider +your decision. + +JACK. +But my dear Lady Bracknell, the matter is entirely in your own hands. +The moment you consent to my marriage with Gwendolen, I will most +gladly allow your nephew to form an alliance with my ward. + +LADY BRACKNELL. +[Rising and drawing herself up.] You must be quite aware that what you +propose is out of the question. + +JACK. +Then a passionate celibacy is all that any of us can look forward to. + +LADY BRACKNELL. +That is not the destiny I propose for Gwendolen. Algernon, of course, +can choose for himself. [Pulls out her watch.] Come, dear, [Gwendolen +rises] we have already missed five, if not six, trains. To miss any +more might expose us to comment on the platform. + +[Enter Dr. Chasuble.] + +CHASUBLE. +Everything is quite ready for the christenings. + +LADY BRACKNELL. +The christenings, sir! Is not that somewhat premature? + +CHASUBLE. +[Looking rather puzzled, and pointing to Jack and Algernon.] Both these +gentlemen have expressed a desire for immediate baptism. + +LADY BRACKNELL. +At their age? The idea is grotesque and irreligious! Algernon, I forbid +you to be baptized. I will not hear of such excesses. Lord Bracknell +would be highly displeased if he learned that that was the way in which +you wasted your time and money. + +CHASUBLE. +Am I to understand then that there are to be no christenings at all +this afternoon? + +JACK. +I don’t think that, as things are now, it would be of much practical +value to either of us, Dr. Chasuble. + +CHASUBLE. +I am grieved to hear such sentiments from you, Mr. Worthing. They +savour of the heretical views of the Anabaptists, views that I have +completely refuted in four of my unpublished sermons. However, as your +present mood seems to be one peculiarly secular, I will return to the +church at once. Indeed, I have just been informed by the pew-opener +that for the last hour and a half Miss Prism has been waiting for me in +the vestry. + +LADY BRACKNELL. +[Starting.] Miss Prism! Did I hear you mention a Miss Prism? + +CHASUBLE. +Yes, Lady Bracknell. I am on my way to join her. + +LADY BRACKNELL. +Pray allow me to detain you for a moment. This matter may prove to be +one of vital importance to Lord Bracknell and myself. Is this Miss +Prism a female of repellent aspect, remotely connected with education? + +CHASUBLE. +[Somewhat indignantly.] She is the most cultivated of ladies, and the +very picture of respectability. + +LADY BRACKNELL. +It is obviously the same person. May I ask what position she holds in +your household? + +CHASUBLE. +[Severely.] I am a celibate, madam. + +JACK. +[Interposing.] Miss Prism, Lady Bracknell, has been for the last three +years Miss Cardew’s esteemed governess and valued companion. + +LADY BRACKNELL. +In spite of what I hear of her, I must see her at once. Let her be sent +for. + +CHASUBLE. +[Looking off.] She approaches; she is nigh. + +[Enter Miss Prism hurriedly.] + +MISS PRISM. +I was told you expected me in the vestry, dear Canon. I have been +waiting for you there for an hour and three-quarters. [Catches sight of +Lady Bracknell, who has fixed her with a stony glare. Miss Prism grows +pale and quails. She looks anxiously round as if desirous to escape.] + +LADY BRACKNELL. +[In a severe, judicial voice.] Prism! [Miss Prism bows her head in +shame.] Come here, Prism! [Miss Prism approaches in a humble manner.] +Prism! Where is that baby? [General consternation. The Canon starts +back in horror. Algernon and Jack pretend to be anxious to shield +Cecily and Gwendolen from hearing the details of a terrible public +scandal.] Twenty-eight years ago, Prism, you left Lord Bracknell’s +house, Number 104, Upper Grosvenor Street, in charge of a perambulator +that contained a baby of the male sex. You never returned. A few weeks +later, through the elaborate investigations of the Metropolitan police, +the perambulator was discovered at midnight, standing by itself in a +remote corner of Bayswater. It contained the manuscript of a +three-volume novel of more than usually revolting sentimentality. [Miss +Prism starts in involuntary indignation.] But the baby was not there! +[Every one looks at Miss Prism.] Prism! Where is that baby? [A pause.] + +MISS PRISM. +Lady Bracknell, I admit with shame that I do not know. I only wish I +did. The plain facts of the case are these. On the morning of the day +you mention, a day that is for ever branded on my memory, I prepared as +usual to take the baby out in its perambulator. I had also with me a +somewhat old, but capacious hand-bag in which I had intended to place +the manuscript of a work of fiction that I had written during my few +unoccupied hours. In a moment of mental abstraction, for which I never +can forgive myself, I deposited the manuscript in the basinette, and +placed the baby in the hand-bag. + +JACK. +[Who has been listening attentively.] But where did you deposit the +hand-bag? + +MISS PRISM. +Do not ask me, Mr. Worthing. + +JACK. +Miss Prism, this is a matter of no small importance to me. I insist on +knowing where you deposited the hand-bag that contained that infant. + +MISS PRISM. +I left it in the cloak-room of one of the larger railway stations in +London. + +JACK. +What railway station? + +MISS PRISM. +[Quite crushed.] Victoria. The Brighton line. [Sinks into a chair.] + +JACK. +I must retire to my room for a moment. Gwendolen, wait here for me. + +GWENDOLEN. +If you are not too long, I will wait here for you all my life. [Exit +Jack in great excitement.] + +CHASUBLE. +What do you think this means, Lady Bracknell? + +LADY BRACKNELL. +I dare not even suspect, Dr. Chasuble. I need hardly tell you that in +families of high position strange coincidences are not supposed to +occur. They are hardly considered the thing. + +[Noises heard overhead as if some one was throwing trunks about. Every +one looks up.] + +CECILY. +Uncle Jack seems strangely agitated. + +CHASUBLE. +Your guardian has a very emotional nature. + +LADY BRACKNELL. +This noise is extremely unpleasant. It sounds as if he was having an +argument. I dislike arguments of any kind. They are always vulgar, and +often convincing. + +CHASUBLE. +[Looking up.] It has stopped now. [The noise is redoubled.] + +LADY BRACKNELL. +I wish he would arrive at some conclusion. + +GWENDOLEN. +This suspense is terrible. I hope it will last. [Enter Jack with a +hand-bag of black leather in his hand.] + +JACK. +[Rushing over to Miss Prism.] Is this the hand-bag, Miss Prism? Examine +it carefully before you speak. The happiness of more than one life +depends on your answer. + +MISS PRISM. +[Calmly.] It seems to be mine. Yes, here is the injury it received +through the upsetting of a Gower Street omnibus in younger and happier +days. Here is the stain on the lining caused by the explosion of a +temperance beverage, an incident that occurred at Leamington. And here, +on the lock, are my initials. I had forgotten that in an extravagant +mood I had had them placed there. The bag is undoubtedly mine. I am +delighted to have it so unexpectedly restored to me. It has been a +great inconvenience being without it all these years. + +JACK. +[In a pathetic voice.] Miss Prism, more is restored to you than this +hand-bag. I was the baby you placed in it. + +MISS PRISM. +[Amazed.] You? + +JACK. +[Embracing her.] Yes . . . mother! + +MISS PRISM. +[Recoiling in indignant astonishment.] Mr. Worthing! I am unmarried! + +JACK. +Unmarried! I do not deny that is a serious blow. But after all, who has +the right to cast a stone against one who has suffered? Cannot +repentance wipe out an act of folly? Why should there be one law for +men, and another for women? Mother, I forgive you. [Tries to embrace +her again.] + +MISS PRISM. +[Still more indignant.] Mr. Worthing, there is some error. [Pointing to +Lady Bracknell.] There is the lady who can tell you who you really are. + +JACK. +[After a pause.] Lady Bracknell, I hate to seem inquisitive, but would +you kindly inform me who I am? + +LADY BRACKNELL. +I am afraid that the news I have to give you will not altogether please +you. You are the son of my poor sister, Mrs. Moncrieff, and +consequently Algernon’s elder brother. + +JACK. +Algy’s elder brother! Then I have a brother after all. I knew I had a +brother! I always said I had a brother! Cecily,—how could you have ever +doubted that I had a brother? [Seizes hold of Algernon.] Dr. Chasuble, +my unfortunate brother. Miss Prism, my unfortunate brother. Gwendolen, +my unfortunate brother. Algy, you young scoundrel, you will have to +treat me with more respect in the future. You have never behaved to me +like a brother in all your life. + +ALGERNON. +Well, not till to-day, old boy, I admit. I did my best, however, though +I was out of practice. + +[Shakes hands.] + +GWENDOLEN. +[To Jack.] My own! But what own are you? What is your Christian name, +now that you have become some one else? + +JACK. +Good heavens! . . . I had quite forgotten that point. Your decision on +the subject of my name is irrevocable, I suppose? + +GWENDOLEN. +I never change, except in my affections. + +CECILY. +What a noble nature you have, Gwendolen! + +JACK. +Then the question had better be cleared up at once. Aunt Augusta, a +moment. At the time when Miss Prism left me in the hand-bag, had I been +christened already? + +LADY BRACKNELL. +Every luxury that money could buy, including christening, had been +lavished on you by your fond and doting parents. + +JACK. +Then I was christened! That is settled. Now, what name was I given? Let +me know the worst. + +LADY BRACKNELL. +Being the eldest son you were naturally christened after your father. + +JACK. +[Irritably.] Yes, but what was my father’s Christian name? + +LADY BRACKNELL. +[Meditatively.] I cannot at the present moment recall what the +General’s Christian name was. But I have no doubt he had one. He was +eccentric, I admit. But only in later years. And that was the result of +the Indian climate, and marriage, and indigestion, and other things of +that kind. + +JACK. +Algy! Can’t you recollect what our father’s Christian name was? + +ALGERNON. +My dear boy, we were never even on speaking terms. He died before I was +a year old. + +JACK. +His name would appear in the Army Lists of the period, I suppose, Aunt +Augusta? + +LADY BRACKNELL. +The General was essentially a man of peace, except in his domestic +life. But I have no doubt his name would appear in any military +directory. + +JACK. +The Army Lists of the last forty years are here. These delightful +records should have been my constant study. [Rushes to bookcase and +tears the books out.] M. Generals . . . Mallam, Maxbohm, Magley, what +ghastly names they have—Markby, Migsby, Mobbs, Moncrieff! Lieutenant +1840, Captain, Lieutenant-Colonel, Colonel, General 1869, Christian +names, Ernest John. [Puts book very quietly down and speaks quite +calmly.] I always told you, Gwendolen, my name was Ernest, didn’t I? +Well, it is Ernest after all. I mean it naturally is Ernest. + +LADY BRACKNELL. +Yes, I remember now that the General was called Ernest, I knew I had +some particular reason for disliking the name. + +GWENDOLEN. +Ernest! My own Ernest! I felt from the first that you could have no +other name! + +JACK. +Gwendolen, it is a terrible thing for a man to find out suddenly that +all his life he has been speaking nothing but the truth. Can you +forgive me? + +GWENDOLEN. +I can. For I feel that you are sure to change. + +JACK. +My own one! + +CHASUBLE. +[To Miss Prism.] Lætitia! [Embraces her] + +MISS PRISM. +[Enthusiastically.] Frederick! At last! + +ALGERNON. +Cecily! [Embraces her.] At last! + +JACK. +Gwendolen! [Embraces her.] At last! + +LADY BRACKNELL. +My nephew, you seem to be displaying signs of triviality. + +JACK. +On the contrary, Aunt Augusta, I’ve now realised for the first time in +my life the vital Importance of Being Earnest. + +TABLEAU + + + + +*** END OF THE PROJECT GUTENBERG EBOOK THE IMPORTANCE OF BEING EARNEST: A TRIVIAL COMEDY FOR SERIOUS PEOPLE *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + diff --git a/text/4.txt b/text/4.txt new file mode 100644 index 0000000..7329a20 --- /dev/null +++ b/text/4.txt @@ -0,0 +1,22310 @@ +The Project Gutenberg eBook of Moby Dick; Or, The Whale + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: Moby Dick; Or, The Whale + +Author: Herman Melville + +Release date: July 1, 2001 [eBook #2701] + Most recently updated: February 10, 2026 + +Language: English + +Credits: Daniel Lazarus, Jonesey, and David Widger + + +*** START OF THE PROJECT GUTENBERG EBOOK MOBY DICK; OR, THE WHALE *** + + + + +MOBY-DICK; + +or, THE WHALE. + +By Herman Melville + + + +CONTENTS + +ETYMOLOGY. + +EXTRACTS (Supplied by a Sub-Sub-Librarian). + +CHAPTER 1. Loomings. + +CHAPTER 2. The Carpet-Bag. + +CHAPTER 3. The Spouter-Inn. + +CHAPTER 4. The Counterpane. + +CHAPTER 5. Breakfast. + +CHAPTER 6. The Street. + +CHAPTER 7. The Chapel. + +CHAPTER 8. The Pulpit. + +CHAPTER 9. The Sermon. + +CHAPTER 10. A Bosom Friend. + +CHAPTER 11. Nightgown. + +CHAPTER 12. Biographical. + +CHAPTER 13. Wheelbarrow. + +CHAPTER 14. Nantucket. + +CHAPTER 15. Chowder. + +CHAPTER 16. The Ship. + +CHAPTER 17. The Ramadan. + +CHAPTER 18. His Mark. + +CHAPTER 19. The Prophet. + +CHAPTER 20. All Astir. + +CHAPTER 21. Going Aboard. + +CHAPTER 22. Merry Christmas. + +CHAPTER 23. The Lee Shore. + +CHAPTER 24. The Advocate. + +CHAPTER 25. Postscript. + +CHAPTER 26. Knights and Squires. + +CHAPTER 27. Knights and Squires. + +CHAPTER 28. Ahab. + +CHAPTER 29. Enter Ahab; to Him, Stubb. + +CHAPTER 30. The Pipe. + +CHAPTER 31. Queen Mab. + +CHAPTER 32. Cetology. + +CHAPTER 33. The Specksnyder. + +CHAPTER 34. The Cabin-Table. + +CHAPTER 35. The Mast-Head. + +CHAPTER 36. The Quarter-Deck. + +CHAPTER 37. Sunset. + +CHAPTER 38. Dusk. + +CHAPTER 39. First Night-Watch. + +CHAPTER 40. Midnight, Forecastle. + +CHAPTER 41. Moby Dick. + +CHAPTER 42. The Whiteness of the Whale. + +CHAPTER 43. Hark! + +CHAPTER 44. The Chart. + +CHAPTER 45. The Affidavit. + +CHAPTER 46. Surmises. + +CHAPTER 47. The Mat-Maker. + +CHAPTER 48. The First Lowering. + +CHAPTER 49. The Hyena. + +CHAPTER 50. Ahab’s Boat and Crew. Fedallah. + +CHAPTER 51. The Spirit-Spout. + +CHAPTER 52. The Albatross. + +CHAPTER 53. The Gam. + +CHAPTER 54. The Town-Ho’s Story. + +CHAPTER 55. Of the Monstrous Pictures of Whales. + +CHAPTER 56. Of the Less Erroneous Pictures of Whales, and the True +Pictures of Whaling Scenes. + +CHAPTER 57. Of Whales in Paint; in Teeth; in Wood; in Sheet-Iron; in +Stone; in Mountains; in Stars. + +CHAPTER 58. Brit. + +CHAPTER 59. Squid. + +CHAPTER 60. The Line. + +CHAPTER 61. Stubb Kills a Whale. + +CHAPTER 62. The Dart. + +CHAPTER 63. The Crotch. + +CHAPTER 64. Stubb’s Supper. + +CHAPTER 65. The Whale as a Dish. + +CHAPTER 66. The Shark Massacre. + +CHAPTER 67. Cutting In. + +CHAPTER 68. The Blanket. + +CHAPTER 69. The Funeral. + +CHAPTER 70. The Sphynx. + +CHAPTER 71. The Jeroboam’s Story. + +CHAPTER 72. The Monkey-Rope. + +CHAPTER 73. Stubb and Flask kill a Right Whale; and Then Have a Talk +over Him. + +CHAPTER 74. The Sperm Whale’s Head—Contrasted View. + +CHAPTER 75. The Right Whale’s Head—Contrasted View. + +CHAPTER 76. The Battering-Ram. + +CHAPTER 77. The Great Heidelburgh Tun. + +CHAPTER 78. Cistern and Buckets. + +CHAPTER 79. The Prairie. + +CHAPTER 80. The Nut. + +CHAPTER 81. The Pequod Meets The Virgin. + +CHAPTER 82. The Honor and Glory of Whaling. + +CHAPTER 83. Jonah Historically Regarded. + +CHAPTER 84. Pitchpoling. + +CHAPTER 85. The Fountain. + +CHAPTER 86. The Tail. + +CHAPTER 87. The Grand Armada. + +CHAPTER 88. Schools and Schoolmasters. + +CHAPTER 89. Fast-Fish and Loose-Fish. + +CHAPTER 90. Heads or Tails. + +CHAPTER 91. The Pequod Meets The Rose-Bud. + +CHAPTER 92. Ambergris. + +CHAPTER 93. The Castaway. + +CHAPTER 94. A Squeeze of the Hand. + +CHAPTER 95. The Cassock. + +CHAPTER 96. The Try-Works. + +CHAPTER 97. The Lamp. + +CHAPTER 98. Stowing Down and Clearing Up. + +CHAPTER 99. The Doubloon. + +CHAPTER 100. Leg and Arm. + +CHAPTER 101. The Decanter. + +CHAPTER 102. A Bower in the Arsacides. + +CHAPTER 103. Measurement of The Whale’s Skeleton. + +CHAPTER 104. The Fossil Whale. + +CHAPTER 105. Does the Whale’s Magnitude Diminish?—Will He Perish? + +CHAPTER 106. Ahab’s Leg. + +CHAPTER 107. The Carpenter. + +CHAPTER 108. Ahab and the Carpenter. + +CHAPTER 109. Ahab and Starbuck in the Cabin. + +CHAPTER 110. Queequeg in His Coffin. + +CHAPTER 111. The Pacific. + +CHAPTER 112. The Blacksmith. + +CHAPTER 113. The Forge. + +CHAPTER 114. The Gilder. + +CHAPTER 115. The Pequod Meets The Bachelor. + +CHAPTER 116. The Dying Whale. + +CHAPTER 117. The Whale Watch. + +CHAPTER 118. The Quadrant. + +CHAPTER 119. The Candles. + +CHAPTER 120. The Deck Towards the End of the First Night Watch. + +CHAPTER 121. Midnight.—The Forecastle Bulwarks. + +CHAPTER 122. Midnight Aloft.—Thunder and Lightning. + +CHAPTER 123. The Musket. + +CHAPTER 124. The Needle. + +CHAPTER 125. The Log and Line. + +CHAPTER 126. The Life-Buoy. + +CHAPTER 127. The Deck. + +CHAPTER 128. The Pequod Meets The Rachel. + +CHAPTER 129. The Cabin. + +CHAPTER 130. The Hat. + +CHAPTER 131. The Pequod Meets The Delight. + +CHAPTER 132. The Symphony. + +CHAPTER 133. The Chase—First Day. + +CHAPTER 134. The Chase—Second Day. + +CHAPTER 135. The Chase.—Third Day. + +Epilogue + + + + +Original Transcriber’s Notes: + +This text is a combination of etexts, one from the now-defunct ERIS +project at Virginia Tech and one from Project Gutenberg’s archives. The +proofreaders of this version are indebted to The University of Adelaide +Library for preserving the Virginia Tech version. The resulting etext +was compared with a public domain hard copy version of the text. + + + + + + ETYMOLOGY. + + + (Supplied by a Late Consumptive Usher to a Grammar School.) + + The pale Usher—threadbare in coat, heart, body, and brain; I see him + now. He was ever dusting his old lexicons and grammars, with a queer + handkerchief, mockingly embellished with all the gay flags of all the + known nations of the world. He loved to dust his old grammars; it + somehow mildly reminded him of his mortality. + + “While you take in hand to school others, and to teach them by what + name a whale-fish is to be called in our tongue, leaving out, through + ignorance, the letter H, which almost alone maketh up the + signification of the word, you deliver that which is not true.” + —_Hackluyt._ + + “WHALE. * * * Sw. and Dan. _hval_. This animal is named from + roundness or rolling; for in Dan. _hvalt_ is arched or vaulted.” + —_Webster’s Dictionary._ + + “WHALE. * * * It is more immediately from the Dut. and Ger. _Wallen_; + A.S. _Walw-ian_, to roll, to wallow.” —_Richardson’s Dictionary._ + + + ‏חו‎, _Hebrew_. + ϰητος, _Greek_. + CETUS, _Latin_. + WHŒL, _Anglo-Saxon_. + HVALT, _Danish_. + WAL, _Dutch_. + HWAL, _Swedish_. + HVALUR, _Icelandic_. + WHALE, _English_. + BALEINE, _French_. + BALLENA, _Spanish_. + PEKEE-NUEE-NUEE, _Fegee_. + PEHEE-NUEE-NUEE, _Erromangoan_. + + + EXTRACTS. (Supplied by a Sub-Sub-Librarian). + + + + It will be seen that this mere painstaking burrower and grub-worm of + a poor devil of a Sub-Sub appears to have gone through the long + Vaticans and street-stalls of the earth, picking up whatever random + allusions to whales he could anyways find in any book whatsoever, + sacred or profane. Therefore you must not, in every case at least, + take the higgledy-piggledy whale statements, however authentic, in + these extracts, for veritable gospel cetology. Far from it. As + touching the ancient authors generally, as well as the poets here + appearing, these extracts are solely valuable or entertaining, as + affording a glancing bird’s eye view of what has been promiscuously + said, thought, fancied, and sung of Leviathan, by many nations and + generations, including our own. + + So fare thee well, poor devil of a Sub-Sub, whose commentator I am. + Thou belongest to that hopeless, sallow tribe which no wine of this + world will ever warm; and for whom even Pale Sherry would be too + rosy-strong; but with whom one sometimes loves to sit, and feel + poor-devilish, too; and grow convivial upon tears; and say to them + bluntly, with full eyes and empty glasses, and in not altogether + unpleasant sadness—Give it up, Sub-Subs! For by how much the more + pains ye take to please the world, by so much the more shall ye for + ever go thankless! Would that I could clear out Hampton Court and the + Tuileries for ye! But gulp down your tears and hie aloft to the + royal-mast with your hearts; for your friends who have gone before + are clearing out the seven-storied heavens, and making refugees of + long-pampered Gabriel, Michael, and Raphael, against your coming. + Here ye strike but splintered hearts together—there, ye shall strike + unsplinterable glasses! + +EXTRACTS. + + “And God created great whales.” —_Genesis_. + + “Leviathan maketh a path to shine after him; One would think the deep + to be hoary.” —_Job_. + + “Now the Lord had prepared a great fish to swallow up Jonah.” + —_Jonah_. + + “There go the ships; there is that Leviathan whom thou hast made to + play therein.” —_Psalms_. + + “In that day, the Lord with his sore, and great, and strong sword, + shall punish Leviathan the piercing serpent, even Leviathan that + crooked serpent; and he shall slay the dragon that is in the sea.” + —_Isaiah_. + + “And what thing soever besides cometh within the chaos of this + monster’s mouth, be it beast, boat, or stone, down it goes all + incontinently that foul great swallow of his, and perisheth in the + bottomless gulf of his paunch.” —_Holland’s Plutarch’s Morals_. + + “The Indian Sea breedeth the most and the biggest fishes that are: + among which the Whales and Whirlpooles called Balaene, take up as + much in length as four acres or arpens of land.” —_Holland’s Pliny_. + + “Scarcely had we proceeded two days on the sea, when about sunrise a + great many Whales and other monsters of the sea, appeared. Among the + former, one was of a most monstrous size.... This came towards us, + open-mouthed, raising the waves on all sides, and beating the sea + before him into a foam.” —_Tooke’s Lucian_. “_The True History_.” + + + + + “He visited this country also with a view of catching horse-whales, + which had bones of very great value for their teeth, of which he + brought some to the king.... The best whales were catched in his own + country, of which some were forty-eight, some fifty yards long. He + said that he was one of six who had killed sixty in two days.” + —_Other or Other’s verbal narrative taken down from his mouth by King + Alfred, A.D._ 890. + + “And whereas all the other things, whether beast or vessel, that + enter into the dreadful gulf of this monster’s (whale’s) mouth, are + immediately lost and swallowed up, the sea-gudgeon retires into it in + great security, and there sleeps.” —MONTAIGNE. —_Apology for Raimond + Sebond_. + + “Let us fly, let us fly! Old Nick take me if it is not Leviathan + described by the noble prophet Moses in the life of patient Job.” + —_Rabelais_. + + “This whale’s liver was two cartloads.” —_Stowe’s Annals_. + + “The great Leviathan that maketh the seas to seethe like boiling + pan.” —_Lord Bacon’s Version of the Psalms_. + + “Touching that monstrous bulk of the whale or ork we have received + nothing certain. They grow exceeding fat, insomuch that an incredible + quantity of oil will be extracted out of one whale.” —_Ibid_. + “_History of Life and Death_.” + + + + + “The sovereignest thing on earth is parmacetti for an inward bruise.” + —_King Henry_. + + “Very like a whale.” —_Hamlet_. + + + “Which to secure, no skill of leach’s art Mote him availle, but to + returne againe To his wound’s worker, that with lowly dart, Dinting + his breast, had bred his restless paine, Like as the wounded whale to + shore flies thro’ the maine.” —_The Fairie Queen_. + + + + “Immense as whales, the motion of whose vast bodies can in a peaceful + calm trouble the ocean till it boil.” —_Sir William Davenant. Preface + to Gondibert_. + + “What spermacetti is, men might justly doubt, since the learned + Hosmannus in his work of thirty years, saith plainly, _Nescio quid + sit_.” —_Sir T. Browne. Of Sperma Ceti and the Sperma Ceti Whale. + Vide his V. E._ + + + “Like Spencer’s Talus with his modern flail He threatens ruin with + his ponderous tail. ... Their fixed jav’lins in his side he wears, + And on his back a grove of pikes appears.” —_Waller’s Battle of the + Summer Islands_. + + + + “By art is created that great Leviathan, called a Commonwealth or + State—(in Latin, Civitas) which is but an artificial man.” —_Opening + sentence of Hobbes’s Leviathan_. + + “Silly Mansoul swallowed it without chewing, as if it had been a + sprat in the mouth of a whale.” —_Pilgrim’s Progress_. + + + “That sea beast Leviathan, which God of all his works Created hugest + that swim the ocean stream.” —_Paradise Lost_. + + —“There Leviathan, Hugest of living creatures, in the deep Stretched + like a promontory sleeps or swims, And seems a moving land; and at + his gills Draws in, and at his breath spouts out a sea.” —_Ibid_. + + + + “The mighty whales which swim in a sea of water, and have a sea of + oil swimming in them.” —_Fuller’s Profane and Holy State_. + + + “So close behind some promontory lie The huge Leviathan to attend + their prey, And give no chance, but swallow in the fry, Which through + their gaping jaws mistake the way.” —_Dryden’s Annus Mirabilis_. + + + + “While the whale is floating at the stern of the ship, they cut off + his head, and tow it with a boat as near the shore as it will come; + but it will be aground in twelve or thirteen feet water.” —_Thomas + Edge’s Ten Voyages to Spitzbergen, in Purchas_. + + “In their way they saw many whales sporting in the ocean, and in + wantonness fuzzing up the water through their pipes and vents, which + nature has placed on their shoulders.” —_Sir T. Herbert’s Voyages + into Asia and Africa. Harris Coll_. + + “Here they saw such huge troops of whales, that they were forced to + proceed with a great deal of caution for fear they should run their + ship upon them.” —_Schouten’s Sixth Circumnavigation_. + + “We set sail from the Elbe, wind N.E. in the ship called The + Jonas-in-the-Whale.... Some say the whale can’t open his mouth, but + that is a fable.... They frequently climb up the masts to see whether + they can see a whale, for the first discoverer has a ducat for his + pains.... I was told of a whale taken near Shetland, that had above a + barrel of herrings in his belly.... One of our harpooneers told me + that he caught once a whale in Spitzbergen that was white all over.” + —_A Voyage to Greenland, A.D._ 1671. _Harris Coll_. + + “Several whales have come in upon this coast (Fife) Anno 1652, one + eighty feet in length of the whale-bone kind came in, which (as I was + informed), besides a vast quantity of oil, did afford 500 weight of + baleen. The jaws of it stand for a gate in the garden of Pitferren.” + —_Sibbald’s Fife and Kinross_. + + “Myself have agreed to try whether I can master and kill this + Sperma-ceti whale, for I could never hear of any of that sort that + was killed by any man, such is his fierceness and swiftness.” + —_Richard Strafford’s Letter from the Bermudas. Phil. Trans. A.D._ + 1668. + + “Whales in the sea God’s voice obey.” —_N. E. Primer_. + + “We saw also abundance of large whales, there being more in those + southern seas, as I may say, by a hundred to one; than we have to the + northward of us.” —_Captain Cowley’s Voyage round the Globe, A.D._ + 1729. + + “... and the breath of the whale is frequently attended with such an + insupportable smell, as to bring on a disorder of the brain.” + —_Ulloa’s South America_. + + + “To fifty chosen sylphs of special note, We trust the important + charge, the petticoat. Oft have we known that seven-fold fence to + fail, Tho’ stuffed with hoops and armed with ribs of whale.” —_Rape + of the Lock_. + + + + “If we compare land animals in respect to magnitude, with those that + take up their abode in the deep, we shall find they will appear + contemptible in the comparison. The whale is doubtless the largest + animal in creation.” —_Goldsmith, Nat. Hist_. + + “If you should write a fable for little fishes, you would make them + speak like great whales.” —_Goldsmith to Johnson_. + + “In the afternoon we saw what was supposed to be a rock, but it was + found to be a dead whale, which some Asiatics had killed, and were + then towing ashore. They seemed to endeavor to conceal themselves + behind the whale, in order to avoid being seen by us.” —_Cook’s + Voyages_. + + “The larger whales, they seldom venture to attack. They stand in so + great dread of some of them, that when out at sea they are afraid to + mention even their names, and carry dung, lime-stone, juniper-wood, + and some other articles of the same nature in their boats, in order + to terrify and prevent their too near approach.” —_Uno Von Troil’s + Letters on Banks’s and Solander’s Voyage to Iceland in_ 1772. + + “The Spermacetti Whale found by the Nantuckois, is an active, fierce + animal, and requires vast address and boldness in the fishermen.” + —_Thomas Jefferson’s Whale Memorial to the French minister in_ 1778. + + “And pray, sir, what in the world is equal to it?” —_Edmund Burke’s + reference in Parliament to the Nantucket Whale-Fishery_. + + “Spain—a great whale stranded on the shores of Europe.” —_Edmund + Burke_. (_somewhere_.) + + “A tenth branch of the king’s ordinary revenue, said to be grounded + on the consideration of his guarding and protecting the seas from + pirates and robbers, is the right to _royal_ fish, which are whale + and sturgeon. And these, when either thrown ashore or caught near the + coast, are the property of the king.” —_Blackstone_. + + + “Soon to the sport of death the crews repair: Rodmond unerring o’er + his head suspends The barbed steel, and every turn attends.” + —_Falconer’s Shipwreck_. + + “Bright shone the roofs, the domes, the spires, And rockets blew self + driven, To hang their momentary fire Around the vault of heaven. + + “So fire with water to compare, The ocean serves on high, Up-spouted + by a whale in air, To express unwieldy joy.” —_Cowper, on the Queen’s + Visit to London_. + + + + “Ten or fifteen gallons of blood are thrown out of the heart at a + stroke, with immense velocity.” —_John Hunter’s account of the + dissection of a whale_. (_A small sized one_.) + + “The aorta of a whale is larger in the bore than the main pipe of the + water-works at London Bridge, and the water roaring in its passage + through that pipe is inferior in impetus and velocity to the blood + gushing from the whale’s heart.” —_Paley’s Theology_. + + “The whale is a mammiferous animal without hind feet.” —_Baron + Cuvier_. + + “In 40 degrees south, we saw Spermacetti Whales, but did not take any + till the first of May, the sea being then covered with them.” + —_Colnett’s Voyage for the Purpose of Extending the Spermaceti Whale + Fishery_. + + + “In the free element beneath me swam, Floundered and dived, in play, + in chace, in battle, Fishes of every colour, form, and kind; Which + language cannot paint, and mariner Had never seen; from dread + Leviathan To insect millions peopling every wave: Gather’d in shoals + immense, like floating islands, Led by mysterious instincts through + that waste And trackless region, though on every side Assaulted by + voracious enemies, Whales, sharks, and monsters, arm’d in front or + jaw, With swords, saws, spiral horns, or hooked fangs.” + —_Montgomery’s World before the Flood_. + + “Io! Paean! Io! sing. To the finny people’s king. Not a mightier + whale than this In the vast Atlantic is; Not a fatter fish than he, + Flounders round the Polar Sea.” —_Charles Lamb’s Triumph of the + Whale_. + + + + “In the year 1690 some persons were on a high hill observing the + whales spouting and sporting with each other, when one observed: + there—pointing to the sea—is a green pasture where our children’s + grand-children will go for bread.” —_Obed Macy’s History of + Nantucket_. + + “I built a cottage for Susan and myself and made a gateway in the + form of a Gothic Arch, by setting up a whale’s jaw bones.” + —_Hawthorne’s Twice Told Tales_. + + “She came to bespeak a monument for her first love, who had been + killed by a whale in the Pacific ocean, no less than forty years + ago.” —_Ibid_. + + “No, Sir, ’tis a Right Whale,” answered Tom; “I saw his sprout; he + threw up a pair of as pretty rainbows as a Christian would wish to + look at. He’s a raal oil-butt, that fellow!” —_Cooper’s Pilot_. + + “The papers were brought in, and we saw in the Berlin Gazette that + whales had been introduced on the stage there.” —_Eckermann’s + Conversations with Goethe_. + + “My God! Mr. Chace, what is the matter?” I answered, “we have been + stove by a whale.” —“_Narrative of the Shipwreck of the Whale Ship + Essex of Nantucket, which was attacked and finally destroyed by a + large Sperm Whale in the Pacific Ocean_.” _By Owen Chace of + Nantucket, first mate of said vessel. New York_, 1821. + + + “A mariner sat in the shrouds one night, The wind was piping free; + Now bright, now dimmed, was the moonlight pale, And the phospher + gleamed in the wake of the whale, As it floundered in the sea.” + —_Elizabeth Oakes Smith_. + + + + “The quantity of line withdrawn from the boats engaged in the capture + of this one whale, amounted altogether to 10,440 yards or nearly six + English miles.... + + “Sometimes the whale shakes its tremendous tail in the air, which, + cracking like a whip, resounds to the distance of three or four + miles.” —_Scoresby_. + + “Mad with the agonies he endures from these fresh attacks, the + infuriated Sperm Whale rolls over and over; he rears his enormous + head, and with wide expanded jaws snaps at everything around him; he + rushes at the boats with his head; they are propelled before him with + vast swiftness, and sometimes utterly destroyed.... It is a matter of + great astonishment that the consideration of the habits of so + interesting, and, in a commercial point of view, so important an + animal (as the Sperm Whale) should have been so entirely neglected, + or should have excited so little curiosity among the numerous, and + many of them competent observers, that of late years, must have + possessed the most abundant and the most convenient opportunities of + witnessing their habitudes.” —_Thomas Beale’s History of the Sperm + Whale_, 1839. + + “The Cachalot” (Sperm Whale) “is not only better armed than the True + Whale” (Greenland or Right Whale) “in possessing a formidable weapon + at either extremity of its body, but also more frequently displays a + disposition to employ these weapons offensively and in manner at once + so artful, bold, and mischievous, as to lead to its being regarded as + the most dangerous to attack of all the known species of the whale + tribe.” —_Frederick Debell Bennett’s Whaling Voyage Round the Globe_, + 1840. + + + October 13. “There she blows,” was sung out from the mast-head. + “Where away?” demanded the captain. “Three points off the lee bow, + sir.” “Raise up your wheel. Steady!” “Steady, sir.” “Mast-head + ahoy! Do you see that whale now?” “Ay ay, sir! A shoal of Sperm + Whales! There she blows! There she breaches!” “Sing out! sing out + every time!” “Ay Ay, sir! There she blows! there—there—_thar_ she + blows—bowes—bo-o-os!” “How far off?” “Two miles and a half.” “Thunder + and lightning! so near! Call all hands.” —_J. Ross Browne’s Etchings + of a Whaling Cruize_. 1846. + + + + “The Whale-ship Globe, on board of which vessel occurred the horrid + transactions we are about to relate, belonged to the island of + Nantucket.” —“_Narrative of the Globe Mutiny_,” _by Lay and Hussey + survivors. A.D._ 1828. + + Being once pursued by a whale which he had wounded, he parried the + assault for some time with a lance; but the furious monster at length + rushed on the boat; himself and comrades only being preserved by + leaping into the water when they saw the onset was inevitable.” + —_Missionary Journal of Tyerman and Bennett_. + + “Nantucket itself,” said Mr. Webster, “is a very striking and + peculiar portion of the National interest. There is a population of + eight or nine thousand persons living here in the sea, adding largely + every year to the National wealth by the boldest and most persevering + industry.” —_Report of Daniel Webster’s Speech in the U. S. Senate, + on the application for the Erection of a Breakwater at Nantucket_. + 1828. + + “The whale fell directly over him, and probably killed him in a + moment.” —“_The Whale and his Captors, or The Whaleman’s Adventures + and the Whale’s Biography, gathered on the Homeward Cruise of the + Commodore Preble_.” _By Rev. Henry T. Cheever_. + + “If you make the least damn bit of noise,” replied Samuel, “I will + send you to hell.” —_Life of Samuel Comstock_ (_the mutineer_), _by + his brother, William Comstock. Another Version of the whale-ship + Globe narrative_. + + “The voyages of the Dutch and English to the Northern Ocean, in + order, if possible, to discover a passage through it to India, though + they failed of their main object, laid-open the haunts of the whale.” + —_McCulloch’s Commercial Dictionary_. + + “These things are reciprocal; the ball rebounds, only to bound + forward again; for now in laying open the haunts of the whale, the + whalemen seem to have indirectly hit upon new clews to that same + mystic North-West Passage.” —_From_ “_Something_” _unpublished_. + + “It is impossible to meet a whale-ship on the ocean without being + struck by her near appearance. The vessel under short sail, with + look-outs at the mast-heads, eagerly scanning the wide expanse around + them, has a totally different air from those engaged in regular + voyage.” —_Currents and Whaling. U.S. Ex. Ex_. + + “Pedestrians in the vicinity of London and elsewhere may recollect + having seen large curved bones set upright in the earth, either to + form arches over gateways, or entrances to alcoves, and they may + perhaps have been told that these were the ribs of whales.” —_Tales + of a Whale Voyager to the Arctic Ocean_. + + “It was not till the boats returned from the pursuit of these whales, + that the whites saw their ship in bloody possession of the savages + enrolled among the crew.” —_Newspaper Account of the Taking and + Retaking of the Whale-Ship Hobomack_. + + “It is generally well known that out of the crews of Whaling vessels + (American) few ever return in the ships on board of which they + departed.” —_Cruise in a Whale Boat_. + + “Suddenly a mighty mass emerged from the water, and shot up + perpendicularly into the air. It was the whale.” —_Miriam Coffin or + the Whale Fisherman_. + + “The Whale is harpooned to be sure; but bethink you, how you would + manage a powerful unbroken colt, with the mere appliance of a rope + tied to the root of his tail.” —_A Chapter on Whaling in Ribs and + Trucks_. + + “On one occasion I saw two of these monsters (whales) probably male + and female, slowly swimming, one after the other, within less than a + stone’s throw of the shore” (Terra Del Fuego), “over which the beech + tree extended its branches.” —_Darwin’s Voyage of a Naturalist_. + + “‘Stern all!’ exclaimed the mate, as upon turning his head, he saw + the distended jaws of a large Sperm Whale close to the head of the + boat, threatening it with instant destruction;—‘Stern all, for your + lives!’” —_Wharton the Whale Killer_. + + “So be cheery, my lads, let your hearts never fail, While the bold + harpooneer is striking the whale!” —_Nantucket Song_. + + + “Oh, the rare old Whale, mid storm and gale In his ocean home will be + A giant in might, where might is right, And King of the boundless + sea.” —_Whale Song_. + + + + + +CHAPTER 1. Loomings. + +Call me Ishmael. Some years ago—never mind how long precisely—having +little or no money in my purse, and nothing particular to interest me +on shore, I thought I would sail about a little and see the watery part +of the world. It is a way I have of driving off the spleen and +regulating the circulation. Whenever I find myself growing grim about +the mouth; whenever it is a damp, drizzly November in my soul; whenever +I find myself involuntarily pausing before coffin warehouses, and +bringing up the rear of every funeral I meet; and especially whenever +my hypos get such an upper hand of me, that it requires a strong moral +principle to prevent me from deliberately stepping into the street, and +methodically knocking people’s hats off—then, I account it high time to +get to sea as soon as I can. This is my substitute for pistol and ball. +With a philosophical flourish Cato throws himself upon his sword; I +quietly take to the ship. There is nothing surprising in this. If they +but knew it, almost all men in their degree, some time or other, +cherish very nearly the same feelings towards the ocean with me. + +There now is your insular city of the Manhattoes, belted round by +wharves as Indian isles by coral reefs—commerce surrounds it with her +surf. Right and left, the streets take you waterward. Its extreme +downtown is the battery, where that noble mole is washed by waves, and +cooled by breezes, which a few hours previous were out of sight of +land. Look at the crowds of water-gazers there. + +Circumambulate the city of a dreamy Sabbath afternoon. Go from Corlears +Hook to Coenties Slip, and from thence, by Whitehall, northward. What +do you see?—Posted like silent sentinels all around the town, stand +thousands upon thousands of mortal men fixed in ocean reveries. Some +leaning against the spiles; some seated upon the pier-heads; some +looking over the bulwarks of ships from China; some high aloft in the +rigging, as if striving to get a still better seaward peep. But these +are all landsmen; of week days pent up in lath and plaster—tied to +counters, nailed to benches, clinched to desks. How then is this? Are +the green fields gone? What do they here? + +But look! here come more crowds, pacing straight for the water, and +seemingly bound for a dive. Strange! Nothing will content them but the +extremest limit of the land; loitering under the shady lee of yonder +warehouses will not suffice. No. They must get just as nigh the water +as they possibly can without falling in. And there they stand—miles of +them—leagues. Inlanders all, they come from lanes and alleys, streets +and avenues—north, east, south, and west. Yet here they all unite. Tell +me, does the magnetic virtue of the needles of the compasses of all +those ships attract them thither? + +Once more. Say you are in the country; in some high land of lakes. Take +almost any path you please, and ten to one it carries you down in a +dale, and leaves you there by a pool in the stream. There is magic in +it. Let the most absent-minded of men be plunged in his deepest +reveries—stand that man on his legs, set his feet a-going, and he will +infallibly lead you to water, if water there be in all that region. +Should you ever be athirst in the great American desert, try this +experiment, if your caravan happen to be supplied with a metaphysical +professor. Yes, as every one knows, meditation and water are wedded for +ever. + +But here is an artist. He desires to paint you the dreamiest, shadiest, +quietest, most enchanting bit of romantic landscape in all the valley +of the Saco. What is the chief element he employs? There stand his +trees, each with a hollow trunk, as if a hermit and a crucifix were +within; and here sleeps his meadow, and there sleep his cattle; and up +from yonder cottage goes a sleepy smoke. Deep into distant woodlands +winds a mazy way, reaching to overlapping spurs of mountains bathed in +their hill-side blue. But though the picture lies thus tranced, and +though this pine-tree shakes down its sighs like leaves upon this +shepherd’s head, yet all were vain, unless the shepherd’s eye were +fixed upon the magic stream before him. Go visit the Prairies in June, +when for scores on scores of miles you wade knee-deep among +Tiger-lilies—what is the one charm wanting?—Water—there is not a drop +of water there! Were Niagara but a cataract of sand, would you travel +your thousand miles to see it? Why did the poor poet of Tennessee, upon +suddenly receiving two handfuls of silver, deliberate whether to buy +him a coat, which he sadly needed, or invest his money in a pedestrian +trip to Rockaway Beach? Why is almost every robust healthy boy with a +robust healthy soul in him, at some time or other crazy to go to sea? +Why upon your first voyage as a passenger, did you yourself feel such a +mystical vibration, when first told that you and your ship were now out +of sight of land? Why did the old Persians hold the sea holy? Why did +the Greeks give it a separate deity, and own brother of Jove? Surely +all this is not without meaning. And still deeper the meaning of that +story of Narcissus, who because he could not grasp the tormenting, mild +image he saw in the fountain, plunged into it and was drowned. But that +same image, we ourselves see in all rivers and oceans. It is the image +of the ungraspable phantom of life; and this is the key to it all. + +Now, when I say that I am in the habit of going to sea whenever I begin +to grow hazy about the eyes, and begin to be over conscious of my +lungs, I do not mean to have it inferred that I ever go to sea as a +passenger. For to go as a passenger you must needs have a purse, and a +purse is but a rag unless you have something in it. Besides, passengers +get sea-sick—grow quarrelsome—don’t sleep of nights—do not enjoy +themselves much, as a general thing;—no, I never go as a passenger; +nor, though I am something of a salt, do I ever go to sea as a +Commodore, or a Captain, or a Cook. I abandon the glory and distinction +of such offices to those who like them. For my part, I abominate all +honorable respectable toils, trials, and tribulations of every kind +whatsoever. It is quite as much as I can do to take care of myself, +without taking care of ships, barques, brigs, schooners, and what not. +And as for going as cook,—though I confess there is considerable glory +in that, a cook being a sort of officer on ship-board—yet, somehow, I +never fancied broiling fowls;—though once broiled, judiciously +buttered, and judgmatically salted and peppered, there is no one who +will speak more respectfully, not to say reverentially, of a broiled +fowl than I will. It is out of the idolatrous dotings of the old +Egyptians upon broiled ibis and roasted river horse, that you see the +mummies of those creatures in their huge bake-houses the pyramids. + +No, when I go to sea, I go as a simple sailor, right before the mast, +plumb down into the forecastle, aloft there to the royal mast-head. +True, they rather order me about some, and make me jump from spar to +spar, like a grasshopper in a May meadow. And at first, this sort of +thing is unpleasant enough. It touches one’s sense of honor, +particularly if you come of an old established family in the land, the +Van Rensselaers, or Randolphs, or Hardicanutes. And more than all, if +just previous to putting your hand into the tar-pot, you have been +lording it as a country schoolmaster, making the tallest boys stand in +awe of you. The transition is a keen one, I assure you, from a +schoolmaster to a sailor, and requires a strong decoction of Seneca and +the Stoics to enable you to grin and bear it. But even this wears off +in time. + +What of it, if some old hunks of a sea-captain orders me to get a broom +and sweep down the decks? What does that indignity amount to, weighed, +I mean, in the scales of the New Testament? Do you think the archangel +Gabriel thinks anything the less of me, because I promptly and +respectfully obey that old hunks in that particular instance? Who ain’t +a slave? Tell me that. Well, then, however the old sea-captains may +order me about—however they may thump and punch me about, I have the +satisfaction of knowing that it is all right; that everybody else is +one way or other served in much the same way—either in a physical or +metaphysical point of view, that is; and so the universal thump is +passed round, and all hands should rub each other’s shoulder-blades, +and be content. + +Again, I always go to sea as a sailor, because they make a point of +paying me for my trouble, whereas they never pay passengers a single +penny that I ever heard of. On the contrary, passengers themselves must +pay. And there is all the difference in the world between paying and +being paid. The act of paying is perhaps the most uncomfortable +infliction that the two orchard thieves entailed upon us. But _being +paid_,—what will compare with it? The urbane activity with which a man +receives money is really marvellous, considering that we so earnestly +believe money to be the root of all earthly ills, and that on no +account can a monied man enter heaven. Ah! how cheerfully we consign +ourselves to perdition! + +Finally, I always go to sea as a sailor, because of the wholesome +exercise and pure air of the fore-castle deck. For as in this world, +head winds are far more prevalent than winds from astern (that is, if +you never violate the Pythagorean maxim), so for the most part the +Commodore on the quarter-deck gets his atmosphere at second hand from +the sailors on the forecastle. He thinks he breathes it first; but not +so. In much the same way do the commonalty lead their leaders in many +other things, at the same time that the leaders little suspect it. But +wherefore it was that after having repeatedly smelt the sea as a +merchant sailor, I should now take it into my head to go on a whaling +voyage; this the invisible police officer of the Fates, who has the +constant surveillance of me, and secretly dogs me, and influences me in +some unaccountable way—he can better answer than any one else. And, +doubtless, my going on this whaling voyage, formed part of the grand +programme of Providence that was drawn up a long time ago. It came in +as a sort of brief interlude and solo between more extensive +performances. I take it that this part of the bill must have run +something like this: + +“_Grand Contested Election for the Presidency of the United States._ +“WHALING VOYAGE BY ONE ISHMAEL. “BLOODY BATTLE IN AFFGHANISTAN.” + +Though I cannot tell why it was exactly that those stage managers, the +Fates, put me down for this shabby part of a whaling voyage, when +others were set down for magnificent parts in high tragedies, and short +and easy parts in genteel comedies, and jolly parts in farces—though I +cannot tell why this was exactly; yet, now that I recall all the +circumstances, I think I can see a little into the springs and motives +which being cunningly presented to me under various disguises, induced +me to set about performing the part I did, besides cajoling me into the +delusion that it was a choice resulting from my own unbiased freewill +and discriminating judgment. + +Chief among these motives was the overwhelming idea of the great whale +himself. Such a portentous and mysterious monster roused all my +curiosity. Then the wild and distant seas where he rolled his island +bulk; the undeliverable, nameless perils of the whale; these, with all +the attending marvels of a thousand Patagonian sights and sounds, +helped to sway me to my wish. With other men, perhaps, such things +would not have been inducements; but as for me, I am tormented with an +everlasting itch for things remote. I love to sail forbidden seas, and +land on barbarous coasts. Not ignoring what is good, I am quick to +perceive a horror, and could still be social with it—would they let +me—since it is but well to be on friendly terms with all the inmates of +the place one lodges in. + +By reason of these things, then, the whaling voyage was welcome; the +great flood-gates of the wonder-world swung open, and in the wild +conceits that swayed me to my purpose, two and two there floated into +my inmost soul, endless processions of the whale, and, mid most of them +all, one grand hooded phantom, like a snow hill in the air. + + +CHAPTER 2. The Carpet-Bag. + +I stuffed a shirt or two into my old carpet-bag, tucked it under my +arm, and started for Cape Horn and the Pacific. Quitting the good city +of old Manhatto, I duly arrived in New Bedford. It was a Saturday night +in December. Much was I disappointed upon learning that the little +packet for Nantucket had already sailed, and that no way of reaching +that place would offer, till the following Monday. + +As most young candidates for the pains and penalties of whaling stop at +this same New Bedford, thence to embark on their voyage, it may as well +be related that I, for one, had no idea of so doing. For my mind was +made up to sail in no other than a Nantucket craft, because there was a +fine, boisterous something about everything connected with that famous +old island, which amazingly pleased me. Besides though New Bedford has +of late been gradually monopolising the business of whaling, and though +in this matter poor old Nantucket is now much behind her, yet Nantucket +was her great original—the Tyre of this Carthage;—the place where the +first dead American whale was stranded. Where else but from Nantucket +did those aboriginal whalemen, the Red-Men, first sally out in canoes +to give chase to the Leviathan? And where but from Nantucket, too, did +that first adventurous little sloop put forth, partly laden with +imported cobblestones—so goes the story—to throw at the whales, in +order to discover when they were nigh enough to risk a harpoon from the +bowsprit? + +Now having a night, a day, and still another night following before me +in New Bedford, ere I could embark for my destined port, it became a +matter of concernment where I was to eat and sleep meanwhile. It was a +very dubious-looking, nay, a very dark and dismal night, bitingly cold +and cheerless. I knew no one in the place. With anxious grapnels I had +sounded my pocket, and only brought up a few pieces of silver,—So, +wherever you go, Ishmael, said I to myself, as I stood in the middle of +a dreary street shouldering my bag, and comparing the gloom towards the +north with the darkness towards the south—wherever in your wisdom you +may conclude to lodge for the night, my dear Ishmael, be sure to +inquire the price, and don’t be too particular. + +With halting steps I paced the streets, and passed the sign of “The +Crossed Harpoons”—but it looked too expensive and jolly there. Further +on, from the bright red windows of the “Sword-Fish Inn,” there came +such fervent rays, that it seemed to have melted the packed snow and +ice from before the house, for everywhere else the congealed frost lay +ten inches thick in a hard, asphaltic pavement,—rather weary for me, +when I struck my foot against the flinty projections, because from +hard, remorseless service the soles of my boots were in a most +miserable plight. Too expensive and jolly, again thought I, pausing one +moment to watch the broad glare in the street, and hear the sounds of +the tinkling glasses within. But go on, Ishmael, said I at last; don’t +you hear? get away from before the door; your patched boots are +stopping the way. So on I went. I now by instinct followed the streets +that took me waterward, for there, doubtless, were the cheapest, if not +the cheeriest inns. + +Such dreary streets! blocks of blackness, not houses, on either hand, +and here and there a candle, like a candle moving about in a tomb. At +this hour of the night, of the last day of the week, that quarter of +the town proved all but deserted. But presently I came to a smoky light +proceeding from a low, wide building, the door of which stood +invitingly open. It had a careless look, as if it were meant for the +uses of the public; so, entering, the first thing I did was to stumble +over an ash-box in the porch. Ha! thought I, ha, as the flying +particles almost choked me, are these ashes from that destroyed city, +Gomorrah? But “The Crossed Harpoons,” and “The Sword-Fish?”—this, then +must needs be the sign of “The Trap.” However, I picked myself up and +hearing a loud voice within, pushed on and opened a second, interior +door. + +It seemed the great Black Parliament sitting in Tophet. A hundred black +faces turned round in their rows to peer; and beyond, a black Angel of +Doom was beating a book in a pulpit. It was a negro church; and the +preacher’s text was about the blackness of darkness, and the weeping +and wailing and teeth-gnashing there. Ha, Ishmael, muttered I, backing +out, Wretched entertainment at the sign of ‘The Trap!’ + +Moving on, I at last came to a dim sort of light not far from the +docks, and heard a forlorn creaking in the air; and looking up, saw a +swinging sign over the door with a white painting upon it, faintly +representing a tall straight jet of misty spray, and these words +underneath—“The Spouter Inn:—Peter Coffin.” + +Coffin?—Spouter?—Rather ominous in that particular connexion, thought +I. But it is a common name in Nantucket, they say, and I suppose this +Peter here is an emigrant from there. As the light looked so dim, and +the place, for the time, looked quiet enough, and the dilapidated +little wooden house itself looked as if it might have been carted here +from the ruins of some burnt district, and as the swinging sign had a +poverty-stricken sort of creak to it, I thought that here was the very +spot for cheap lodgings, and the best of pea coffee. + +It was a queer sort of place—a gable-ended old house, one side palsied +as it were, and leaning over sadly. It stood on a sharp bleak corner, +where that tempestuous wind Euroclydon kept up a worse howling than +ever it did about poor Paul’s tossed craft. Euroclydon, nevertheless, +is a mighty pleasant zephyr to any one in-doors, with his feet on the +hob quietly toasting for bed. “In judging of that tempestuous wind +called Euroclydon,” says an old writer—of whose works I possess the +only copy extant—“it maketh a marvellous difference, whether thou +lookest out at it from a glass window where the frost is all on the +outside, or whether thou observest it from that sashless window, where +the frost is on both sides, and of which the wight Death is the only +glazier.” True enough, thought I, as this passage occurred to my +mind—old black-letter, thou reasonest well. Yes, these eyes are +windows, and this body of mine is the house. What a pity they didn’t +stop up the chinks and the crannies though, and thrust in a little lint +here and there. But it’s too late to make any improvements now. The +universe is finished; the copestone is on, and the chips were carted +off a million years ago. Poor Lazarus there, chattering his teeth +against the curbstone for his pillow, and shaking off his tatters with +his shiverings, he might plug up both ears with rags, and put a +corn-cob into his mouth, and yet that would not keep out the +tempestuous Euroclydon. Euroclydon! says old Dives, in his red silken +wrapper—(he had a redder one afterwards) pooh, pooh! What a fine frosty +night; how Orion glitters; what northern lights! Let them talk of their +oriental summer climes of everlasting conservatories; give me the +privilege of making my own summer with my own coals. + +But what thinks Lazarus? Can he warm his blue hands by holding them up +to the grand northern lights? Would not Lazarus rather be in Sumatra +than here? Would he not far rather lay him down lengthwise along the +line of the equator; yea, ye gods! go down to the fiery pit itself, in +order to keep out this frost? + +Now, that Lazarus should lie stranded there on the curbstone before the +door of Dives, this is more wonderful than that an iceberg should be +moored to one of the Moluccas. Yet Dives himself, he too lives like a +Czar in an ice palace made of frozen sighs, and being a president of a +temperance society, he only drinks the tepid tears of orphans. + +But no more of this blubbering now, we are going a-whaling, and there +is plenty of that yet to come. Let us scrape the ice from our frosted +feet, and see what sort of a place this “Spouter” may be. + + +CHAPTER 3. The Spouter-Inn. + +Entering that gable-ended Spouter-Inn, you found yourself in a wide, +low, straggling entry with old-fashioned wainscots, reminding one of +the bulwarks of some condemned old craft. On one side hung a very large +oilpainting so thoroughly besmoked, and every way defaced, that in the +unequal crosslights by which you viewed it, it was only by diligent +study and a series of systematic visits to it, and careful inquiry of +the neighbors, that you could any way arrive at an understanding of its +purpose. Such unaccountable masses of shades and shadows, that at first +you almost thought some ambitious young artist, in the time of the New +England hags, had endeavored to delineate chaos bewitched. But by dint +of much and earnest contemplation, and oft repeated ponderings, and +especially by throwing open the little window towards the back of the +entry, you at last come to the conclusion that such an idea, however +wild, might not be altogether unwarranted. + +But what most puzzled and confounded you was a long, limber, +portentous, black mass of something hovering in the centre of the +picture over three blue, dim, perpendicular lines floating in a +nameless yeast. A boggy, soggy, squitchy picture truly, enough to drive +a nervous man distracted. Yet was there a sort of indefinite, +half-attained, unimaginable sublimity about it that fairly froze you to +it, till you involuntarily took an oath with yourself to find out what +that marvellous painting meant. Ever and anon a bright, but, alas, +deceptive idea would dart you through.—It’s the Black Sea in a midnight +gale.—It’s the unnatural combat of the four primal elements.—It’s a +blasted heath.—It’s a Hyperborean winter scene.—It’s the breaking-up of +the icebound stream of Time. But at last all these fancies yielded to +that one portentous something in the picture’s midst. _That_ once found +out, and all the rest were plain. But stop; does it not bear a faint +resemblance to a gigantic fish? even the great leviathan himself? + +In fact, the artist’s design seemed this: a final theory of my own, +partly based upon the aggregated opinions of many aged persons with +whom I conversed upon the subject. The picture represents a Cape-Horner +in a great hurricane; the half-foundered ship weltering there with its +three dismantled masts alone visible; and an exasperated whale, +purposing to spring clean over the craft, is in the enormous act of +impaling himself upon the three mast-heads. + +The opposite wall of this entry was hung all over with a heathenish +array of monstrous clubs and spears. Some were thickly set with +glittering teeth resembling ivory saws; others were tufted with knots +of human hair; and one was sickle-shaped, with a vast handle sweeping +round like the segment made in the new-mown grass by a long-armed +mower. You shuddered as you gazed, and wondered what monstrous cannibal +and savage could ever have gone a death-harvesting with such a hacking, +horrifying implement. Mixed with these were rusty old whaling lances +and harpoons all broken and deformed. Some were storied weapons. With +this once long lance, now wildly elbowed, fifty years ago did Nathan +Swain kill fifteen whales between a sunrise and a sunset. And that +harpoon—so like a corkscrew now—was flung in Javan seas, and run away +with by a whale, years afterwards slain off the Cape of Blanco. The +original iron entered nigh the tail, and, like a restless needle +sojourning in the body of a man, travelled full forty feet, and at last +was found imbedded in the hump. + +Crossing this dusky entry, and on through yon low-arched way—cut +through what in old times must have been a great central chimney with +fireplaces all round—you enter the public room. A still duskier place +is this, with such low ponderous beams above, and such old wrinkled +planks beneath, that you would almost fancy you trod some old craft’s +cockpits, especially of such a howling night, when this corner-anchored +old ark rocked so furiously. On one side stood a long, low, shelf-like +table covered with cracked glass cases, filled with dusty rarities +gathered from this wide world’s remotest nooks. Projecting from the +further angle of the room stands a dark-looking den—the bar—a rude +attempt at a right whale’s head. Be that how it may, there stands the +vast arched bone of the whale’s jaw, so wide, a coach might almost +drive beneath it. Within are shabby shelves, ranged round with old +decanters, bottles, flasks; and in those jaws of swift destruction, +like another cursed Jonah (by which name indeed they called him), +bustles a little withered old man, who, for their money, dearly sells +the sailors deliriums and death. + +Abominable are the tumblers into which he pours his poison. Though true +cylinders without—within, the villanous green goggling glasses +deceitfully tapered downwards to a cheating bottom. Parallel meridians +rudely pecked into the glass, surround these footpads’ goblets. Fill to +_this_ mark, and your charge is but a penny; to _this_ a penny more; +and so on to the full glass—the Cape Horn measure, which you may gulp +down for a shilling. + +Upon entering the place I found a number of young seamen gathered about +a table, examining by a dim light divers specimens of _skrimshander_. I +sought the landlord, and telling him I desired to be accommodated with +a room, received for answer that his house was full—not a bed +unoccupied. “But avast,” he added, tapping his forehead, “you haint no +objections to sharing a harpooneer’s blanket, have ye? I s’pose you are +goin’ a-whalin’, so you’d better get used to that sort of thing.” + +I told him that I never liked to sleep two in a bed; that if I should +ever do so, it would depend upon who the harpooneer might be, and that +if he (the landlord) really had no other place for me, and the +harpooneer was not decidedly objectionable, why rather than wander +further about a strange town on so bitter a night, I would put up with +the half of any decent man’s blanket. + +“I thought so. All right; take a seat. Supper?—you want supper? +Supper’ll be ready directly.” + +I sat down on an old wooden settle, carved all over like a bench on the +Battery. At one end a ruminating tar was still further adorning it with +his jack-knife, stooping over and diligently working away at the space +between his legs. He was trying his hand at a ship under full sail, but +he didn’t make much headway, I thought. + +At last some four or five of us were summoned to our meal in an +adjoining room. It was cold as Iceland—no fire at all—the landlord said +he couldn’t afford it. Nothing but two dismal tallow candles, each in a +winding sheet. We were fain to button up our monkey jackets, and hold +to our lips cups of scalding tea with our half frozen fingers. But the +fare was of the most substantial kind—not only meat and potatoes, but +dumplings; good heavens! dumplings for supper! One young fellow in a +green box coat, addressed himself to these dumplings in a most direful +manner. + +“My boy,” said the landlord, “you’ll have the nightmare to a dead +sartainty.” + +“Landlord,” I whispered, “that aint the harpooneer is it?” + +“Oh, no,” said he, looking a sort of diabolically funny, “the +harpooneer is a dark complexioned chap. He never eats dumplings, he +don’t—he eats nothing but steaks, and he likes ’em rare.” + +“The devil he does,” says I. “Where is that harpooneer? Is he here?” + +“He’ll be here afore long,” was the answer. + +I could not help it, but I began to feel suspicious of this “dark +complexioned” harpooneer. At any rate, I made up my mind that if it so +turned out that we should sleep together, he must undress and get into +bed before I did. + +Supper over, the company went back to the bar-room, when, knowing not +what else to do with myself, I resolved to spend the rest of the +evening as a looker on. + +Presently a rioting noise was heard without. Starting up, the landlord +cried, “That’s the Grampus’s crew. I seed her reported in the offing +this morning; a three years’ voyage, and a full ship. Hurrah, boys; now +we’ll have the latest news from the Feegees.” + +A tramping of sea boots was heard in the entry; the door was flung +open, and in rolled a wild set of mariners enough. Enveloped in their +shaggy watch coats, and with their heads muffled in woollen comforters, +all bedarned and ragged, and their beards stiff with icicles, they +seemed an eruption of bears from Labrador. They had just landed from +their boat, and this was the first house they entered. No wonder, then, +that they made a straight wake for the whale’s mouth—the bar—when the +wrinkled little old Jonah, there officiating, soon poured them out +brimmers all round. One complained of a bad cold in his head, upon +which Jonah mixed him a pitch-like potion of gin and molasses, which he +swore was a sovereign cure for all colds and catarrhs whatsoever, never +mind of how long standing, or whether caught off the coast of Labrador, +or on the weather side of an ice-island. + +The liquor soon mounted into their heads, as it generally does even +with the arrantest topers newly landed from sea, and they began +capering about most obstreperously. + +I observed, however, that one of them held somewhat aloof, and though +he seemed desirous not to spoil the hilarity of his shipmates by his +own sober face, yet upon the whole he refrained from making as much +noise as the rest. This man interested me at once; and since the +sea-gods had ordained that he should soon become my shipmate (though +but a sleeping-partner one, so far as this narrative is concerned), I +will here venture upon a little description of him. He stood full six +feet in height, with noble shoulders, and a chest like a coffer-dam. I +have seldom seen such brawn in a man. His face was deeply brown and +burnt, making his white teeth dazzling by the contrast; while in the +deep shadows of his eyes floated some reminiscences that did not seem +to give him much joy. His voice at once announced that he was a +Southerner, and from his fine stature, I thought he must be one of +those tall mountaineers from the Alleghanian Ridge in Virginia. When +the revelry of his companions had mounted to its height, this man +slipped away unobserved, and I saw no more of him till he became my +comrade on the sea. In a few minutes, however, he was missed by his +shipmates, and being, it seems, for some reason a huge favourite with +them, they raised a cry of “Bulkington! Bulkington! where’s +Bulkington?” and darted out of the house in pursuit of him. + +It was now about nine o’clock, and the room seeming almost +supernaturally quiet after these orgies, I began to congratulate myself +upon a little plan that had occurred to me just previous to the +entrance of the seamen. + +No man prefers to sleep two in a bed. In fact, you would a good deal +rather not sleep with your own brother. I don’t know how it is, but +people like to be private when they are sleeping. And when it comes to +sleeping with an unknown stranger, in a strange inn, in a strange town, +and that stranger a harpooneer, then your objections indefinitely +multiply. Nor was there any earthly reason why I as a sailor should +sleep two in a bed, more than anybody else; for sailors no more sleep +two in a bed at sea, than bachelor Kings do ashore. To be sure they all +sleep together in one apartment, but you have your own hammock, and +cover yourself with your own blanket, and sleep in your own skin. + +The more I pondered over this harpooneer, the more I abominated the +thought of sleeping with him. It was fair to presume that being a +harpooneer, his linen or woollen, as the case might be, would not be of +the tidiest, certainly none of the finest. I began to twitch all over. +Besides, it was getting late, and my decent harpooneer ought to be home +and going bedwards. Suppose now, he should tumble in upon me at +midnight—how could I tell from what vile hole he had been coming? + +“Landlord! I’ve changed my mind about that harpooneer.—I shan’t sleep +with him. I’ll try the bench here.” + +“Just as you please; I’m sorry I can’t spare ye a tablecloth for a +mattress, and it’s a plaguy rough board here”—feeling of the knots and +notches. “But wait a bit, Skrimshander; I’ve got a carpenter’s plane +there in the bar—wait, I say, and I’ll make ye snug enough.” So saying +he procured the plane; and with his old silk handkerchief first dusting +the bench, vigorously set to planing away at my bed, the while grinning +like an ape. The shavings flew right and left; till at last the +plane-iron came bump against an indestructible knot. The landlord was +near spraining his wrist, and I told him for heaven’s sake to quit—the +bed was soft enough to suit me, and I did not know how all the planing +in the world could make eider down of a pine plank. So gathering up the +shavings with another grin, and throwing them into the great stove in +the middle of the room, he went about his business, and left me in a +brown study. + +I now took the measure of the bench, and found that it was a foot too +short; but that could be mended with a chair. But it was a foot too +narrow, and the other bench in the room was about four inches higher +than the planed one—so there was no yoking them. I then placed the +first bench lengthwise along the only clear space against the wall, +leaving a little interval between, for my back to settle down in. But I +soon found that there came such a draught of cold air over me from +under the sill of the window, that this plan would never do at all, +especially as another current from the rickety door met the one from +the window, and both together formed a series of small whirlwinds in +the immediate vicinity of the spot where I had thought to spend the +night. + +The devil fetch that harpooneer, thought I, but stop, couldn’t I steal +a march on him—bolt his door inside, and jump into his bed, not to be +wakened by the most violent knockings? It seemed no bad idea; but upon +second thoughts I dismissed it. For who could tell but what the next +morning, so soon as I popped out of the room, the harpooneer might be +standing in the entry, all ready to knock me down! + +Still, looking round me again, and seeing no possible chance of +spending a sufferable night unless in some other person’s bed, I began +to think that after all I might be cherishing unwarrantable prejudices +against this unknown harpooneer. Thinks I, I’ll wait awhile; he must be +dropping in before long. I’ll have a good look at him then, and perhaps +we may become jolly good bedfellows after all—there’s no telling. + +But though the other boarders kept coming in by ones, twos, and threes, +and going to bed, yet no sign of my harpooneer. + +“Landlord!” said I, “what sort of a chap is he—does he always keep such +late hours?” It was now hard upon twelve o’clock. + +The landlord chuckled again with his lean chuckle, and seemed to be +mightily tickled at something beyond my comprehension. “No,” he +answered, “generally he’s an early bird—airley to bed and airley to +rise—yes, he’s the bird what catches the worm. But to-night he went out +a peddling, you see, and I don’t see what on airth keeps him so late, +unless, may be, he can’t sell his head.” + +“Can’t sell his head?—What sort of a bamboozingly story is this you are +telling me?” getting into a towering rage. “Do you pretend to say, +landlord, that this harpooneer is actually engaged this blessed +Saturday night, or rather Sunday morning, in peddling his head around +this town?” + +“That’s precisely it,” said the landlord, “and I told him he couldn’t +sell it here, the market’s overstocked.” + +“With what?” shouted I. + +“With heads to be sure; ain’t there too many heads in the world?” + +“I tell you what it is, landlord,” said I quite calmly, “you’d better +stop spinning that yarn to me—I’m not green.” + +“May be not,” taking out a stick and whittling a toothpick, “but I +rayther guess you’ll be done _brown_ if that ere harpooneer hears you a +slanderin’ his head.” + +“I’ll break it for him,” said I, now flying into a passion again at +this unaccountable farrago of the landlord’s. + +“It’s broke a’ready,” said he. + +“Broke,” said I—“_broke_, do you mean?” + +“Sartain, and that’s the very reason he can’t sell it, I guess.” + +“Landlord,” said I, going up to him as cool as Mt. Hecla in a +snow-storm—“landlord, stop whittling. You and I must understand one +another, and that too without delay. I come to your house and want a +bed; you tell me you can only give me half a one; that the other half +belongs to a certain harpooneer. And about this harpooneer, whom I have +not yet seen, you persist in telling me the most mystifying and +exasperating stories tending to beget in me an uncomfortable feeling +towards the man whom you design for my bedfellow—a sort of connexion, +landlord, which is an intimate and confidential one in the highest +degree. I now demand of you to speak out and tell me who and what this +harpooneer is, and whether I shall be in all respects safe to spend the +night with him. And in the first place, you will be so good as to unsay +that story about selling his head, which if true I take to be good +evidence that this harpooneer is stark mad, and I’ve no idea of +sleeping with a madman; and you, sir, _you_ I mean, landlord, _you_, +sir, by trying to induce me to do so knowingly, would thereby render +yourself liable to a criminal prosecution.” + +“Wall,” said the landlord, fetching a long breath, “that’s a purty long +sarmon for a chap that rips a little now and then. But be easy, be +easy, this here harpooneer I have been tellin’ you of has just arrived +from the south seas, where he bought up a lot of ’balmed New Zealand +heads (great curios, you know), and he’s sold all on ’em but one, and +that one he’s trying to sell to-night, cause to-morrow’s Sunday, and it +would not do to be sellin’ human heads about the streets when folks is +goin’ to churches. He wanted to, last Sunday, but I stopped him just as +he was goin’ out of the door with four heads strung on a string, for +all the airth like a string of inions.” + +This account cleared up the otherwise unaccountable mystery, and showed +that the landlord, after all, had had no idea of fooling me—but at the +same time what could I think of a harpooneer who stayed out of a +Saturday night clean into the holy Sabbath, engaged in such a cannibal +business as selling the heads of dead idolators? + +“Depend upon it, landlord, that harpooneer is a dangerous man.” + +“He pays reg’lar,” was the rejoinder. “But come, it’s getting dreadful +late, you had better be turning flukes—it’s a nice bed; Sal and me +slept in that ere bed the night we were spliced. There’s plenty of room +for two to kick about in that bed; it’s an almighty big bed that. Why, +afore we give it up, Sal used to put our Sam and little Johnny in the +foot of it. But I got a dreaming and sprawling about one night, and +somehow, Sam got pitched on the floor, and came near breaking his arm. +Arter that, Sal said it wouldn’t do. Come along here, I’ll give ye a +glim in a jiffy;” and so saying he lighted a candle and held it towards +me, offering to lead the way. But I stood irresolute; when looking at a +clock in the corner, he exclaimed “I vum it’s Sunday—you won’t see that +harpooneer to-night; he’s come to anchor somewhere—come along then; +_do_ come; _won’t_ ye come?” + +I considered the matter a moment, and then up stairs we went, and I was +ushered into a small room, cold as a clam, and furnished, sure enough, +with a prodigious bed, almost big enough indeed for any four +harpooneers to sleep abreast. + +“There,” said the landlord, placing the candle on a crazy old sea chest +that did double duty as a wash-stand and centre table; “there, make +yourself comfortable now, and good night to ye.” I turned round from +eyeing the bed, but he had disappeared. + +Folding back the counterpane, I stooped over the bed. Though none of +the most elegant, it yet stood the scrutiny tolerably well. I then +glanced round the room; and besides the bedstead and centre table, +could see no other furniture belonging to the place, but a rude shelf, +the four walls, and a papered fireboard representing a man striking a +whale. Of things not properly belonging to the room, there was a +hammock lashed up, and thrown upon the floor in one corner; also a +large seaman’s bag, containing the harpooneer’s wardrobe, no doubt in +lieu of a land trunk. Likewise, there was a parcel of outlandish bone +fish hooks on the shelf over the fire-place, and a tall harpoon +standing at the head of the bed. + +But what is this on the chest? I took it up, and held it close to the +light, and felt it, and smelt it, and tried every way possible to +arrive at some satisfactory conclusion concerning it. I can compare it +to nothing but a large door mat, ornamented at the edges with little +tinkling tags something like the stained porcupine quills round an +Indian moccasin. There was a hole or slit in the middle of this mat, as +you see the same in South American ponchos. But could it be possible +that any sober harpooneer would get into a door mat, and parade the +streets of any Christian town in that sort of guise? I put it on, to +try it, and it weighed me down like a hamper, being uncommonly shaggy +and thick, and I thought a little damp, as though this mysterious +harpooneer had been wearing it of a rainy day. I went up in it to a bit +of glass stuck against the wall, and I never saw such a sight in my +life. I tore myself out of it in such a hurry that I gave myself a kink +in the neck. + +I sat down on the side of the bed, and commenced thinking about this +head-peddling harpooneer, and his door mat. After thinking some time on +the bed-side, I got up and took off my monkey jacket, and then stood in +the middle of the room thinking. I then took off my coat, and thought a +little more in my shirt sleeves. But beginning to feel very cold now, +half undressed as I was, and remembering what the landlord said about +the harpooneer’s not coming home at all that night, it being so very +late, I made no more ado, but jumped out of my pantaloons and boots, +and then blowing out the light tumbled into bed, and commended myself +to the care of heaven. + +Whether that mattress was stuffed with corn-cobs or broken crockery, +there is no telling, but I rolled about a good deal, and could not +sleep for a long time. At last I slid off into a light doze, and had +pretty nearly made a good offing towards the land of Nod, when I heard +a heavy footfall in the passage, and saw a glimmer of light come into +the room from under the door. + +Lord save me, thinks I, that must be the harpooneer, the infernal +head-peddler. But I lay perfectly still, and resolved not to say a word +till spoken to. Holding a light in one hand, and that identical New +Zealand head in the other, the stranger entered the room, and without +looking towards the bed, placed his candle a good way off from me on +the floor in one corner, and then began working away at the knotted +cords of the large bag I before spoke of as being in the room. I was +all eagerness to see his face, but he kept it averted for some time +while employed in unlacing the bag’s mouth. This accomplished, however, +he turned round—when, good heavens! what a sight! Such a face! It was +of a dark, purplish, yellow colour, here and there stuck over with +large blackish looking squares. Yes, it’s just as I thought, he’s a +terrible bedfellow; he’s been in a fight, got dreadfully cut, and here +he is, just from the surgeon. But at that moment he chanced to turn his +face so towards the light, that I plainly saw they could not be +sticking-plasters at all, those black squares on his cheeks. They were +stains of some sort or other. At first I knew not what to make of this; +but soon an inkling of the truth occurred to me. I remembered a story +of a white man—a whaleman too—who, falling among the cannibals, had +been tattooed by them. I concluded that this harpooneer, in the course +of his distant voyages, must have met with a similar adventure. And +what is it, thought I, after all! It’s only his outside; a man can be +honest in any sort of skin. But then, what to make of his unearthly +complexion, that part of it, I mean, lying round about, and completely +independent of the squares of tattooing. To be sure, it might be +nothing but a good coat of tropical tanning; but I never heard of a hot +sun’s tanning a white man into a purplish yellow one. However, I had +never been in the South Seas; and perhaps the sun there produced these +extraordinary effects upon the skin. Now, while all these ideas were +passing through me like lightning, this harpooneer never noticed me at +all. But, after some difficulty having opened his bag, he commenced +fumbling in it, and presently pulled out a sort of tomahawk, and a +seal-skin wallet with the hair on. Placing these on the old chest in +the middle of the room, he then took the New Zealand head—a ghastly +thing enough—and crammed it down into the bag. He now took off his +hat—a new beaver hat—when I came nigh singing out with fresh surprise. +There was no hair on his head—none to speak of at least—nothing but a +small scalp-knot twisted up on his forehead. His bald purplish head now +looked for all the world like a mildewed skull. Had not the stranger +stood between me and the door, I would have bolted out of it quicker +than ever I bolted a dinner. + +Even as it was, I thought something of slipping out of the window, but +it was the second floor back. I am no coward, but what to make of this +head-peddling purple rascal altogether passed my comprehension. +Ignorance is the parent of fear, and being completely nonplussed and +confounded about the stranger, I confess I was now as much afraid of +him as if it was the devil himself who had thus broken into my room at +the dead of night. In fact, I was so afraid of him that I was not game +enough just then to address him, and demand a satisfactory answer +concerning what seemed inexplicable in him. + +Meanwhile, he continued the business of undressing, and at last showed +his chest and arms. As I live, these covered parts of him were +checkered with the same squares as his face; his back, too, was all +over the same dark squares; he seemed to have been in a Thirty Years’ +War, and just escaped from it with a sticking-plaster shirt. Still +more, his very legs were marked, as if a parcel of dark green frogs +were running up the trunks of young palms. It was now quite plain that +he must be some abominable savage or other shipped aboard of a whaleman +in the South Seas, and so landed in this Christian country. I quaked to +think of it. A peddler of heads too—perhaps the heads of his own +brothers. He might take a fancy to mine—heavens! look at that tomahawk! + +But there was no time for shuddering, for now the savage went about +something that completely fascinated my attention, and convinced me +that he must indeed be a heathen. Going to his heavy grego, or wrapall, +or dreadnaught, which he had previously hung on a chair, he fumbled in +the pockets, and produced at length a curious little deformed image +with a hunch on its back, and exactly the colour of a three days’ old +Congo baby. Remembering the embalmed head, at first I almost thought +that this black manikin was a real baby preserved in some similar +manner. But seeing that it was not at all limber, and that it glistened +a good deal like polished ebony, I concluded that it must be nothing +but a wooden idol, which indeed it proved to be. For now the savage +goes up to the empty fire-place, and removing the papered fire-board, +sets up this little hunch-backed image, like a tenpin, between the +andirons. The chimney jambs and all the bricks inside were very sooty, +so that I thought this fire-place made a very appropriate little shrine +or chapel for his Congo idol. + +I now screwed my eyes hard towards the half hidden image, feeling but +ill at ease meantime—to see what was next to follow. First he takes +about a double handful of shavings out of his grego pocket, and places +them carefully before the idol; then laying a bit of ship biscuit on +top and applying the flame from the lamp, he kindled the shavings into +a sacrificial blaze. Presently, after many hasty snatches into the +fire, and still hastier withdrawals of his fingers (whereby he seemed +to be scorching them badly), he at last succeeded in drawing out the +biscuit; then blowing off the heat and ashes a little, he made a polite +offer of it to the little negro. But the little devil did not seem to +fancy such dry sort of fare at all; he never moved his lips. All these +strange antics were accompanied by still stranger guttural noises from +the devotee, who seemed to be praying in a sing-song or else singing +some pagan psalmody or other, during which his face twitched about in +the most unnatural manner. At last extinguishing the fire, he took the +idol up very unceremoniously, and bagged it again in his grego pocket +as carelessly as if he were a sportsman bagging a dead woodcock. + +All these queer proceedings increased my uncomfortableness, and seeing +him now exhibiting strong symptoms of concluding his business +operations, and jumping into bed with me, I thought it was high time, +now or never, before the light was put out, to break the spell in which +I had so long been bound. + +But the interval I spent in deliberating what to say, was a fatal one. +Taking up his tomahawk from the table, he examined the head of it for +an instant, and then holding it to the light, with his mouth at the +handle, he puffed out great clouds of tobacco smoke. The next moment +the light was extinguished, and this wild cannibal, tomahawk between +his teeth, sprang into bed with me. I sang out, I could not help it +now; and giving a sudden grunt of astonishment he began feeling me. + +Stammering out something, I knew not what, I rolled away from him +against the wall, and then conjured him, whoever or whatever he might +be, to keep quiet, and let me get up and light the lamp again. But his +guttural responses satisfied me at once that he but ill comprehended my +meaning. + +“Who-e debel you?”—he at last said—“you no speak-e, dam-me, I kill-e.” +And so saying the lighted tomahawk began flourishing about me in the +dark. + +“Landlord, for God’s sake, Peter Coffin!” shouted I. “Landlord! Watch! +Coffin! Angels! save me!” + +“Speak-e! tell-ee me who-ee be, or dam-me, I kill-e!” again growled the +cannibal, while his horrid flourishings of the tomahawk scattered the +hot tobacco ashes about me till I thought my linen would get on fire. +But thank heaven, at that moment the landlord came into the room light +in hand, and leaping from the bed I ran up to him. + +“Don’t be afraid now,” said he, grinning again, “Queequeg here wouldn’t +harm a hair of your head.” + +“Stop your grinning,” shouted I, “and why didn’t you tell me that that +infernal harpooneer was a cannibal?” + +“I thought ye know’d it;—didn’t I tell ye, he was a peddlin’ heads +around town?—but turn flukes again and go to sleep. Queequeg, look +here—you sabbee me, I sabbee—you this man sleepe you—you sabbee?” + +“Me sabbee plenty”—grunted Queequeg, puffing away at his pipe and +sitting up in bed. + +“You gettee in,” he added, motioning to me with his tomahawk, and +throwing the clothes to one side. He really did this in not only a +civil but a really kind and charitable way. I stood looking at him a +moment. For all his tattooings he was on the whole a clean, comely +looking cannibal. What’s all this fuss I have been making about, +thought I to myself—the man’s a human being just as I am: he has just +as much reason to fear me, as I have to be afraid of him. Better sleep +with a sober cannibal than a drunken Christian. + +“Landlord,” said I, “tell him to stash his tomahawk there, or pipe, or +whatever you call it; tell him to stop smoking, in short, and I will +turn in with him. But I don’t fancy having a man smoking in bed with +me. It’s dangerous. Besides, I ain’t insured.” + +This being told to Queequeg, he at once complied, and again politely +motioned me to get into bed—rolling over to one side as much as to +say—“I won’t touch a leg of ye.” + +“Good night, landlord,” said I, “you may go.” + +I turned in, and never slept better in my life. + + +CHAPTER 4. The Counterpane. + +Upon waking next morning about daylight, I found Queequeg’s arm thrown +over me in the most loving and affectionate manner. You had almost +thought I had been his wife. The counterpane was of patchwork, full of +odd little parti-coloured squares and triangles; and this arm of his +tattooed all over with an interminable Cretan labyrinth of a figure, no +two parts of which were of one precise shade—owing I suppose to his +keeping his arm at sea unmethodically in sun and shade, his shirt +sleeves irregularly rolled up at various times—this same arm of his, I +say, looked for all the world like a strip of that same patchwork +quilt. Indeed, partly lying on it as the arm did when I first awoke, I +could hardly tell it from the quilt, they so blended their hues +together; and it was only by the sense of weight and pressure that I +could tell that Queequeg was hugging me. + +My sensations were strange. Let me try to explain them. When I was a +child, I well remember a somewhat similar circumstance that befell me; +whether it was a reality or a dream, I never could entirely settle. The +circumstance was this. I had been cutting up some caper or other—I +think it was trying to crawl up the chimney, as I had seen a little +sweep do a few days previous; and my stepmother who, somehow or other, +was all the time whipping me, or sending me to bed supperless,—my +mother dragged me by the legs out of the chimney and packed me off to +bed, though it was only two o’clock in the afternoon of the 21st June, +the longest day in the year in our hemisphere. I felt dreadfully. But +there was no help for it, so up stairs I went to my little room in the +third floor, undressed myself as slowly as possible so as to kill time, +and with a bitter sigh got between the sheets. + +I lay there dismally calculating that sixteen entire hours must elapse +before I could hope for a resurrection. Sixteen hours in bed! the small +of my back ached to think of it. And it was so light too; the sun +shining in at the window, and a great rattling of coaches in the +streets, and the sound of gay voices all over the house. I felt worse +and worse—at last I got up, dressed, and softly going down in my +stockinged feet, sought out my stepmother, and suddenly threw myself at +her feet, beseeching her as a particular favour to give me a good +slippering for my misbehaviour; anything indeed but condemning me to +lie abed such an unendurable length of time. But she was the best and +most conscientious of stepmothers, and back I had to go to my room. For +several hours I lay there broad awake, feeling a great deal worse than +I have ever done since, even from the greatest subsequent misfortunes. +At last I must have fallen into a troubled nightmare of a doze; and +slowly waking from it—half steeped in dreams—I opened my eyes, and the +before sun-lit room was now wrapped in outer darkness. Instantly I felt +a shock running through all my frame; nothing was to be seen, and +nothing was to be heard; but a supernatural hand seemed placed in mine. +My arm hung over the counterpane, and the nameless, unimaginable, +silent form or phantom, to which the hand belonged, seemed closely +seated by my bed-side. For what seemed ages piled on ages, I lay there, +frozen with the most awful fears, not daring to drag away my hand; yet +ever thinking that if I could but stir it one single inch, the horrid +spell would be broken. I knew not how this consciousness at last glided +away from me; but waking in the morning, I shudderingly remembered it +all, and for days and weeks and months afterwards I lost myself in +confounding attempts to explain the mystery. Nay, to this very hour, I +often puzzle myself with it. + +Now, take away the awful fear, and my sensations at feeling the +supernatural hand in mine were very similar, in their strangeness, to +those which I experienced on waking up and seeing Queequeg’s pagan arm +thrown round me. But at length all the past night’s events soberly +recurred, one by one, in fixed reality, and then I lay only alive to +the comical predicament. For though I tried to move his arm—unlock his +bridegroom clasp—yet, sleeping as he was, he still hugged me tightly, +as though naught but death should part us twain. I now strove to rouse +him—“Queequeg!”—but his only answer was a snore. I then rolled over, my +neck feeling as if it were in a horse-collar; and suddenly felt a +slight scratch. Throwing aside the counterpane, there lay the tomahawk +sleeping by the savage’s side, as if it were a hatchet-faced baby. A +pretty pickle, truly, thought I; abed here in a strange house in the +broad day, with a cannibal and a tomahawk! “Queequeg!—in the name of +goodness, Queequeg, wake!” At length, by dint of much wriggling, and +loud and incessant expostulations upon the unbecomingness of his +hugging a fellow male in that matrimonial sort of style, I succeeded in +extracting a grunt; and presently, he drew back his arm, shook himself +all over like a Newfoundland dog just from the water, and sat up in +bed, stiff as a pike-staff, looking at me, and rubbing his eyes as if +he did not altogether remember how I came to be there, though a dim +consciousness of knowing something about me seemed slowly dawning over +him. Meanwhile, I lay quietly eyeing him, having no serious misgivings +now, and bent upon narrowly observing so curious a creature. When, at +last, his mind seemed made up touching the character of his bedfellow, +and he became, as it were, reconciled to the fact; he jumped out upon +the floor, and by certain signs and sounds gave me to understand that, +if it pleased me, he would dress first and then leave me to dress +afterwards, leaving the whole apartment to myself. Thinks I, Queequeg, +under the circumstances, this is a very civilized overture; but, the +truth is, these savages have an innate sense of delicacy, say what you +will; it is marvellous how essentially polite they are. I pay this +particular compliment to Queequeg, because he treated me with so much +civility and consideration, while I was guilty of great rudeness; +staring at him from the bed, and watching all his toilette motions; for +the time my curiosity getting the better of my breeding. Nevertheless, +a man like Queequeg you don’t see every day, he and his ways were well +worth unusual regarding. + +He commenced dressing at top by donning his beaver hat, a very tall +one, by the by, and then—still minus his trowsers—he hunted up his +boots. What under the heavens he did it for, I cannot tell, but his +next movement was to crush himself—boots in hand, and hat on—under the +bed; when, from sundry violent gaspings and strainings, I inferred he +was hard at work booting himself; though by no law of propriety that I +ever heard of, is any man required to be private when putting on his +boots. But Queequeg, do you see, was a creature in the transition +stage—neither caterpillar nor butterfly. He was just enough civilized +to show off his outlandishness in the strangest possible manners. His +education was not yet completed. He was an undergraduate. If he had not +been a small degree civilized, he very probably would not have troubled +himself with boots at all; but then, if he had not been still a savage, +he never would have dreamt of getting under the bed to put them on. At +last, he emerged with his hat very much dented and crushed down over +his eyes, and began creaking and limping about the room, as if, not +being much accustomed to boots, his pair of damp, wrinkled cowhide +ones—probably not made to order either—rather pinched and tormented him +at the first go off of a bitter cold morning. + +Seeing, now, that there were no curtains to the window, and that the +street being very narrow, the house opposite commanded a plain view +into the room, and observing more and more the indecorous figure that +Queequeg made, staving about with little else but his hat and boots on; +I begged him as well as I could, to accelerate his toilet somewhat, and +particularly to get into his pantaloons as soon as possible. He +complied, and then proceeded to wash himself. At that time in the +morning any Christian would have washed his face; but Queequeg, to my +amazement, contented himself with restricting his ablutions to his +chest, arms, and hands. He then donned his waistcoat, and taking up a +piece of hard soap on the wash-stand centre table, dipped it into water +and commenced lathering his face. I was watching to see where he kept +his razor, when lo and behold, he takes the harpoon from the bed +corner, slips out the long wooden stock, unsheathes the head, whets it +a little on his boot, and striding up to the bit of mirror against the +wall, begins a vigorous scraping, or rather harpooning of his cheeks. +Thinks I, Queequeg, this is using Rogers’s best cutlery with a +vengeance. Afterwards I wondered the less at this operation when I came +to know of what fine steel the head of a harpoon is made, and how +exceedingly sharp the long straight edges are always kept. + +The rest of his toilet was soon achieved, and he proudly marched out of +the room, wrapped up in his great pilot monkey jacket, and sporting his +harpoon like a marshal’s baton. + + +CHAPTER 5. Breakfast. + +I quickly followed suit, and descending into the bar-room accosted the +grinning landlord very pleasantly. I cherished no malice towards him, +though he had been skylarking with me not a little in the matter of my +bedfellow. + +However, a good laugh is a mighty good thing, and rather too scarce a +good thing; the more’s the pity. So, if any one man, in his own proper +person, afford stuff for a good joke to anybody, let him not be +backward, but let him cheerfully allow himself to spend and be spent in +that way. And the man that has anything bountifully laughable about +him, be sure there is more in that man than you perhaps think for. + +The bar-room was now full of the boarders who had been dropping in the +night previous, and whom I had not as yet had a good look at. They were +nearly all whalemen; chief mates, and second mates, and third mates, +and sea carpenters, and sea coopers, and sea blacksmiths, and +harpooneers, and ship keepers; a brown and brawny company, with bosky +beards; an unshorn, shaggy set, all wearing monkey jackets for morning +gowns. + +You could pretty plainly tell how long each one had been ashore. This +young fellow’s healthy cheek is like a sun-toasted pear in hue, and +would seem to smell almost as musky; he cannot have been three days +landed from his Indian voyage. That man next him looks a few shades +lighter; you might say a touch of satin wood is in him. In the +complexion of a third still lingers a tropic tawn, but slightly +bleached withal; _he_ doubtless has tarried whole weeks ashore. But who +could show a cheek like Queequeg? which, barred with various tints, +seemed like the Andes’ western slope, to show forth in one array, +contrasting climates, zone by zone. + +“Grub, ho!” now cried the landlord, flinging open a door, and in we +went to breakfast. + +They say that men who have seen the world, thereby become quite at ease +in manner, quite self-possessed in company. Not always, though: +Ledyard, the great New England traveller, and Mungo Park, the Scotch +one; of all men, they possessed the least assurance in the parlor. But +perhaps the mere crossing of Siberia in a sledge drawn by dogs as +Ledyard did, or the taking a long solitary walk on an empty stomach, in +the negro heart of Africa, which was the sum of poor Mungo’s +performances—this kind of travel, I say, may not be the very best mode +of attaining a high social polish. Still, for the most part, that sort +of thing is to be had anywhere. + +These reflections just here are occasioned by the circumstance that +after we were all seated at the table, and I was preparing to hear some +good stories about whaling; to my no small surprise, nearly every man +maintained a profound silence. And not only that, but they looked +embarrassed. Yes, here were a set of sea-dogs, many of whom without the +slightest bashfulness had boarded great whales on the high seas—entire +strangers to them—and duelled them dead without winking; and yet, here +they sat at a social breakfast table—all of the same calling, all of +kindred tastes—looking round as sheepishly at each other as though they +had never been out of sight of some sheepfold among the Green +Mountains. A curious sight; these bashful bears, these timid warrior +whalemen! + +But as for Queequeg—why, Queequeg sat there among them—at the head of +the table, too, it so chanced; as cool as an icicle. To be sure I +cannot say much for his breeding. His greatest admirer could not have +cordially justified his bringing his harpoon into breakfast with him, +and using it there without ceremony; reaching over the table with it, +to the imminent jeopardy of many heads, and grappling the beefsteaks +towards him. But _that_ was certainly very coolly done by him, and +every one knows that in most people’s estimation, to do anything coolly +is to do it genteelly. + +We will not speak of all Queequeg’s peculiarities here; how he eschewed +coffee and hot rolls, and applied his undivided attention to +beefsteaks, done rare. Enough, that when breakfast was over he withdrew +like the rest into the public room, lighted his tomahawk-pipe, and was +sitting there quietly digesting and smoking with his inseparable hat +on, when I sallied out for a stroll. + + +CHAPTER 6. The Street. + +If I had been astonished at first catching a glimpse of so outlandish +an individual as Queequeg circulating among the polite society of a +civilized town, that astonishment soon departed upon taking my first +daylight stroll through the streets of New Bedford. + +In thoroughfares nigh the docks, any considerable seaport will +frequently offer to view the queerest looking nondescripts from foreign +parts. Even in Broadway and Chestnut streets, Mediterranean mariners +will sometimes jostle the affrighted ladies. Regent Street is not +unknown to Lascars and Malays; and at Bombay, in the Apollo Green, live +Yankees have often scared the natives. But New Bedford beats all Water +Street and Wapping. In these last-mentioned haunts you see only +sailors; but in New Bedford, actual cannibals stand chatting at street +corners; savages outright; many of whom yet carry on their bones unholy +flesh. It makes a stranger stare. + +But, besides the Feegeeans, Tongatobooarrs, Erromanggoans, Pannangians, +and Brighggians, and, besides the wild specimens of the whaling-craft +which unheeded reel about the streets, you will see other sights still +more curious, certainly more comical. There weekly arrive in this town +scores of green Vermonters and New Hampshire men, all athirst for gain +and glory in the fishery. They are mostly young, of stalwart frames; +fellows who have felled forests, and now seek to drop the axe and +snatch the whale-lance. Many are as green as the Green Mountains whence +they came. In some things you would think them but a few hours old. +Look there! that chap strutting round the corner. He wears a beaver hat +and swallow-tailed coat, girdled with a sailor-belt and sheath-knife. +Here comes another with a sou’-wester and a bombazine cloak. + +No town-bred dandy will compare with a country-bred one—I mean a +downright bumpkin dandy—a fellow that, in the dog-days, will mow his +two acres in buckskin gloves for fear of tanning his hands. Now when a +country dandy like this takes it into his head to make a distinguished +reputation, and joins the great whale-fishery, you should see the +comical things he does upon reaching the seaport. In bespeaking his +sea-outfit, he orders bell-buttons to his waistcoats; straps to his +canvas trowsers. Ah, poor Hay-Seed! how bitterly will burst those +straps in the first howling gale, when thou art driven, straps, +buttons, and all, down the throat of the tempest. + +But think not that this famous town has only harpooneers, cannibals, +and bumpkins to show her visitors. Not at all. Still New Bedford is a +queer place. Had it not been for us whalemen, that tract of land would +this day perhaps have been in as howling condition as the coast of +Labrador. As it is, parts of her back country are enough to frighten +one, they look so bony. The town itself is perhaps the dearest place to +live in, in all New England. It is a land of oil, true enough: but not +like Canaan; a land, also, of corn and wine. The streets do not run +with milk; nor in the spring-time do they pave them with fresh eggs. +Yet, in spite of this, nowhere in all America will you find more +patrician-like houses; parks and gardens more opulent, than in New +Bedford. Whence came they? how planted upon this once scraggy scoria of +a country? + +Go and gaze upon the iron emblematical harpoons round yonder lofty +mansion, and your question will be answered. Yes; all these brave +houses and flowery gardens came from the Atlantic, Pacific, and Indian +oceans. One and all, they were harpooned and dragged up hither from the +bottom of the sea. Can Herr Alexander perform a feat like that? + +In New Bedford, fathers, they say, give whales for dowers to their +daughters, and portion off their nieces with a few porpoises a-piece. +You must go to New Bedford to see a brilliant wedding; for, they say, +they have reservoirs of oil in every house, and every night recklessly +burn their lengths in spermaceti candles. + +In summer time, the town is sweet to see; full of fine maples—long +avenues of green and gold. And in August, high in air, the beautiful +and bountiful horse-chestnuts, candelabra-wise, proffer the passer-by +their tapering upright cones of congregated blossoms. So omnipotent is +art; which in many a district of New Bedford has superinduced bright +terraces of flowers upon the barren refuse rocks thrown aside at +creation’s final day. + +And the women of New Bedford, they bloom like their own red roses. But +roses only bloom in summer; whereas the fine carnation of their cheeks +is perennial as sunlight in the seventh heavens. Elsewhere match that +bloom of theirs, ye cannot, save in Salem, where they tell me the young +girls breathe such musk, their sailor sweethearts smell them miles off +shore, as though they were drawing nigh the odorous Moluccas instead of +the Puritanic sands. + + +CHAPTER 7. The Chapel. + +In this same New Bedford there stands a Whaleman’s Chapel, and few are +the moody fishermen, shortly bound for the Indian Ocean or Pacific, who +fail to make a Sunday visit to the spot. I am sure that I did not. + +Returning from my first morning stroll, I again sallied out upon this +special errand. The sky had changed from clear, sunny cold, to driving +sleet and mist. Wrapping myself in my shaggy jacket of the cloth called +bearskin, I fought my way against the stubborn storm. Entering, I found +a small scattered congregation of sailors, and sailors’ wives and +widows. A muffled silence reigned, only broken at times by the shrieks +of the storm. Each silent worshipper seemed purposely sitting apart +from the other, as if each silent grief were insular and +incommunicable. The chaplain had not yet arrived; and there these +silent islands of men and women sat steadfastly eyeing several marble +tablets, with black borders, masoned into the wall on either side the +pulpit. Three of them ran something like the following, but I do not +pretend to quote:— + +SACRED TO THE MEMORY OF JOHN TALBOT, Who, at the age of eighteen, was +lost overboard, Near the Isle of Desolation, off Patagonia, _November_ +1_st_, 1836. THIS TABLET Is erected to his Memory BY HIS SISTER. + +SACRED TO THE MEMORY OF ROBERT LONG, WILLIS ELLERY, NATHAN COLEMAN, +WALTER CANNY, SETH MACY, AND SAMUEL GLEIG, Forming one of the boats’ +crews OF THE SHIP ELIZA Who were towed out of sight by a Whale, On the +Off-shore Ground in the PACIFIC, _December_ 31_st_, 1839. THIS MARBLE +Is here placed by their surviving SHIPMATES. + +SACRED TO THE MEMORY OF The late CAPTAIN EZEKIEL HARDY, Who in the bows +of his boat was killed by a Sperm Whale on the coast of Japan, _August_ +3_d_, 1833. THIS TABLET Is erected to his Memory BY HIS WIDOW. + +Shaking off the sleet from my ice-glazed hat and jacket, I seated +myself near the door, and turning sideways was surprised to see +Queequeg near me. Affected by the solemnity of the scene, there was a +wondering gaze of incredulous curiosity in his countenance. This savage +was the only person present who seemed to notice my entrance; because +he was the only one who could not read, and, therefore, was not reading +those frigid inscriptions on the wall. Whether any of the relatives of +the seamen whose names appeared there were now among the congregation, +I knew not; but so many are the unrecorded accidents in the fishery, +and so plainly did several women present wear the countenance if not +the trappings of some unceasing grief, that I feel sure that here +before me were assembled those, in whose unhealing hearts the sight of +those bleak tablets sympathetically caused the old wounds to bleed +afresh. + +Oh! ye whose dead lie buried beneath the green grass; who standing +among flowers can say—here, _here_ lies my beloved; ye know not the +desolation that broods in bosoms like these. What bitter blanks in +those black-bordered marbles which cover no ashes! What despair in +those immovable inscriptions! What deadly voids and unbidden +infidelities in the lines that seem to gnaw upon all Faith, and refuse +resurrections to the beings who have placelessly perished without a +grave. As well might those tablets stand in the cave of Elephanta as +here. + +In what census of living creatures, the dead of mankind are included; +why it is that a universal proverb says of them, that they tell no +tales, though containing more secrets than the Goodwin Sands; how it is +that to his name who yesterday departed for the other world, we prefix +so significant and infidel a word, and yet do not thus entitle him, if +he but embarks for the remotest Indies of this living earth; why the +Life Insurance Companies pay death-forfeitures upon immortals; in what +eternal, unstirring paralysis, and deadly, hopeless trance, yet lies +antique Adam who died sixty round centuries ago; how it is that we +still refuse to be comforted for those who we nevertheless maintain are +dwelling in unspeakable bliss; why all the living so strive to hush all +the dead; wherefore but the rumor of a knocking in a tomb will terrify +a whole city. All these things are not without their meanings. + +But Faith, like a jackal, feeds among the tombs, and even from these +dead doubts she gathers her most vital hope. + +It needs scarcely to be told, with what feelings, on the eve of a +Nantucket voyage, I regarded those marble tablets, and by the murky +light of that darkened, doleful day read the fate of the whalemen who +had gone before me. Yes, Ishmael, the same fate may be thine. But +somehow I grew merry again. Delightful inducements to embark, fine +chance for promotion, it seems—aye, a stove boat will make me an +immortal by brevet. Yes, there is death in this business of whaling—a +speechlessly quick chaotic bundling of a man into Eternity. But what +then? Methinks we have hugely mistaken this matter of Life and Death. +Methinks that what they call my shadow here on earth is my true +substance. Methinks that in looking at things spiritual, we are too +much like oysters observing the sun through the water, and thinking +that thick water the thinnest of air. Methinks my body is but the lees +of my better being. In fact take my body who will, take it I say, it is +not me. And therefore three cheers for Nantucket; and come a stove boat +and stove body when they will, for stave my soul, Jove himself cannot. + + +CHAPTER 8. The Pulpit. + +I had not been seated very long ere a man of a certain venerable +robustness entered; immediately as the storm-pelted door flew back upon +admitting him, a quick regardful eyeing of him by all the congregation, +sufficiently attested that this fine old man was the chaplain. Yes, it +was the famous Father Mapple, so called by the whalemen, among whom he +was a very great favourite. He had been a sailor and a harpooneer in +his youth, but for many years past had dedicated his life to the +ministry. At the time I now write of, Father Mapple was in the hardy +winter of a healthy old age; that sort of old age which seems merging +into a second flowering youth, for among all the fissures of his +wrinkles, there shone certain mild gleams of a newly developing +bloom—the spring verdure peeping forth even beneath February’s snow. No +one having previously heard his history, could for the first time +behold Father Mapple without the utmost interest, because there were +certain engrafted clerical peculiarities about him, imputable to that +adventurous maritime life he had led. When he entered I observed that +he carried no umbrella, and certainly had not come in his carriage, for +his tarpaulin hat ran down with melting sleet, and his great pilot +cloth jacket seemed almost to drag him to the floor with the weight of +the water it had absorbed. However, hat and coat and overshoes were one +by one removed, and hung up in a little space in an adjacent corner; +when, arrayed in a decent suit, he quietly approached the pulpit. + +Like most old fashioned pulpits, it was a very lofty one, and since a +regular stairs to such a height would, by its long angle with the +floor, seriously contract the already small area of the chapel, the +architect, it seemed, had acted upon the hint of Father Mapple, and +finished the pulpit without a stairs, substituting a perpendicular side +ladder, like those used in mounting a ship from a boat at sea. The wife +of a whaling captain had provided the chapel with a handsome pair of +red worsted man-ropes for this ladder, which, being itself nicely +headed, and stained with a mahogany colour, the whole contrivance, +considering what manner of chapel it was, seemed by no means in bad +taste. Halting for an instant at the foot of the ladder, and with both +hands grasping the ornamental knobs of the man-ropes, Father Mapple +cast a look upwards, and then with a truly sailor-like but still +reverential dexterity, hand over hand, mounted the steps as if +ascending the main-top of his vessel. + +The perpendicular parts of this side ladder, as is usually the case +with swinging ones, were of cloth-covered rope, only the rounds were of +wood, so that at every step there was a joint. At my first glimpse of +the pulpit, it had not escaped me that however convenient for a ship, +these joints in the present instance seemed unnecessary. For I was not +prepared to see Father Mapple after gaining the height, slowly turn +round, and stooping over the pulpit, deliberately drag up the ladder +step by step, till the whole was deposited within, leaving him +impregnable in his little Quebec. + +I pondered some time without fully comprehending the reason for this. +Father Mapple enjoyed such a wide reputation for sincerity and +sanctity, that I could not suspect him of courting notoriety by any +mere tricks of the stage. No, thought I, there must be some sober +reason for this thing; furthermore, it must symbolize something unseen. +Can it be, then, that by that act of physical isolation, he signifies +his spiritual withdrawal for the time, from all outward worldly ties +and connexions? Yes, for replenished with the meat and wine of the +word, to the faithful man of God, this pulpit, I see, is a +self-containing stronghold—a lofty Ehrenbreitstein, with a perennial +well of water within the walls. + +But the side ladder was not the only strange feature of the place, +borrowed from the chaplain’s former sea-farings. Between the marble +cenotaphs on either hand of the pulpit, the wall which formed its back +was adorned with a large painting representing a gallant ship beating +against a terrible storm off a lee coast of black rocks and snowy +breakers. But high above the flying scud and dark-rolling clouds, there +floated a little isle of sunlight, from which beamed forth an angel’s +face; and this bright face shed a distinct spot of radiance upon the +ship’s tossed deck, something like that silver plate now inserted into +the Victory’s plank where Nelson fell. “Ah, noble ship,” the angel +seemed to say, “beat on, beat on, thou noble ship, and bear a hardy +helm; for lo! the sun is breaking through; the clouds are rolling +off—serenest azure is at hand.” + +Nor was the pulpit itself without a trace of the same sea-taste that +had achieved the ladder and the picture. Its panelled front was in the +likeness of a ship’s bluff bows, and the Holy Bible rested on a +projecting piece of scroll work, fashioned after a ship’s fiddle-headed +beak. + +What could be more full of meaning?—for the pulpit is ever this earth’s +foremost part; all the rest comes in its rear; the pulpit leads the +world. From thence it is the storm of God’s quick wrath is first +descried, and the bow must bear the earliest brunt. From thence it is +the God of breezes fair or foul is first invoked for favourable winds. +Yes, the world’s a ship on its passage out, and not a voyage complete; +and the pulpit is its prow. + + +CHAPTER 9. The Sermon. + +Father Mapple rose, and in a mild voice of unassuming authority ordered +the scattered people to condense. “Starboard gangway, there! side away +to larboard—larboard gangway to starboard! Midships! midships!” + +There was a low rumbling of heavy sea-boots among the benches, and a +still slighter shuffling of women’s shoes, and all was quiet again, and +every eye on the preacher. + +He paused a little; then kneeling in the pulpit’s bows, folded his +large brown hands across his chest, uplifted his closed eyes, and +offered a prayer so deeply devout that he seemed kneeling and praying +at the bottom of the sea. + +This ended, in prolonged solemn tones, like the continual tolling of a +bell in a ship that is foundering at sea in a fog—in such tones he +commenced reading the following hymn; but changing his manner towards +the concluding stanzas, burst forth with a pealing exultation and joy— + + + “The ribs and terrors in the whale, Arched over me a dismal gloom, + While all God’s sun-lit waves rolled by, And lift me deepening down + to doom. + + “I saw the opening maw of hell, With endless pains and sorrows there; + Which none but they that feel can tell— Oh, I was plunging to + despair. + + “In black distress, I called my God, When I could scarce believe him + mine, He bowed his ear to my complaints— No more the whale did me + confine. + + “With speed he flew to my relief, As on a radiant dolphin borne; + Awful, yet bright, as lightning shone The face of my Deliverer God. + + “My song for ever shall record That terrible, that joyful hour; I + give the glory to my God, His all the mercy and the power.” + + + + +Nearly all joined in singing this hymn, which swelled high above the +howling of the storm. A brief pause ensued; the preacher slowly turned +over the leaves of the Bible, and at last, folding his hand down upon +the proper page, said: “Beloved shipmates, clinch the last verse of the +first chapter of Jonah—‘And God had prepared a great fish to swallow up +Jonah.’” + +“Shipmates, this book, containing only four chapters—four yarns—is one +of the smallest strands in the mighty cable of the Scriptures. Yet what +depths of the soul does Jonah’s deep sealine sound! what a pregnant +lesson to us is this prophet! What a noble thing is that canticle in +the fish’s belly! How billow-like and boisterously grand! We feel the +floods surging over us; we sound with him to the kelpy bottom of the +waters; sea-weed and all the slime of the sea is about us! But _what_ +is this lesson that the book of Jonah teaches? Shipmates, it is a +two-stranded lesson; a lesson to us all as sinful men, and a lesson to +me as a pilot of the living God. As sinful men, it is a lesson to us +all, because it is a story of the sin, hard-heartedness, suddenly +awakened fears, the swift punishment, repentance, prayers, and finally +the deliverance and joy of Jonah. As with all sinners among men, the +sin of this son of Amittai was in his wilful disobedience of the +command of God—never mind now what that command was, or how +conveyed—which he found a hard command. But all the things that God +would have us do are hard for us to do—remember that—and hence, he +oftener commands us than endeavors to persuade. And if we obey God, we +must disobey ourselves; and it is in this disobeying ourselves, wherein +the hardness of obeying God consists. + +“With this sin of disobedience in him, Jonah still further flouts at +God, by seeking to flee from Him. He thinks that a ship made by men +will carry him into countries where God does not reign, but only the +Captains of this earth. He skulks about the wharves of Joppa, and seeks +a ship that’s bound for Tarshish. There lurks, perhaps, a hitherto +unheeded meaning here. By all accounts Tarshish could have been no +other city than the modern Cadiz. That’s the opinion of learned men. +And where is Cadiz, shipmates? Cadiz is in Spain; as far by water, from +Joppa, as Jonah could possibly have sailed in those ancient days, when +the Atlantic was an almost unknown sea. Because Joppa, the modern +Jaffa, shipmates, is on the most easterly coast of the Mediterranean, +the Syrian; and Tarshish or Cadiz more than two thousand miles to the +westward from that, just outside the Straits of Gibraltar. See ye not +then, shipmates, that Jonah sought to flee world-wide from God? +Miserable man! Oh! most contemptible and worthy of all scorn; with +slouched hat and guilty eye, skulking from his God; prowling among the +shipping like a vile burglar hastening to cross the seas. So +disordered, self-condemning is his look, that had there been policemen +in those days, Jonah, on the mere suspicion of something wrong, had +been arrested ere he touched a deck. How plainly he’s a fugitive! no +baggage, not a hat-box, valise, or carpet-bag,—no friends accompany him +to the wharf with their adieux. At last, after much dodging search, he +finds the Tarshish ship receiving the last items of her cargo; and as +he steps on board to see its Captain in the cabin, all the sailors for +the moment desist from hoisting in the goods, to mark the stranger’s +evil eye. Jonah sees this; but in vain he tries to look all ease and +confidence; in vain essays his wretched smile. Strong intuitions of the +man assure the mariners he can be no innocent. In their gamesome but +still serious way, one whispers to the other—“Jack, he’s robbed a +widow;” or, “Joe, do you mark him; he’s a bigamist;” or, “Harry lad, I +guess he’s the adulterer that broke jail in old Gomorrah, or belike, +one of the missing murderers from Sodom.” Another runs to read the bill +that’s stuck against the spile upon the wharf to which the ship is +moored, offering five hundred gold coins for the apprehension of a +parricide, and containing a description of his person. He reads, and +looks from Jonah to the bill; while all his sympathetic shipmates now +crowd round Jonah, prepared to lay their hands upon him. Frighted Jonah +trembles, and summoning all his boldness to his face, only looks so +much the more a coward. He will not confess himself suspected; but that +itself is strong suspicion. So he makes the best of it; and when the +sailors find him not to be the man that is advertised, they let him +pass, and he descends into the cabin. + +“‘Who’s there?’ cries the Captain at his busy desk, hurriedly making +out his papers for the Customs—‘Who’s there?’ Oh! how that harmless +question mangles Jonah! For the instant he almost turns to flee again. +But he rallies. ‘I seek a passage in this ship to Tarshish; how soon +sail ye, sir?’ Thus far the busy Captain had not looked up to Jonah, +though the man now stands before him; but no sooner does he hear that +hollow voice, than he darts a scrutinizing glance. ‘We sail with the +next coming tide,’ at last he slowly answered, still intently eyeing +him. ‘No sooner, sir?’—‘Soon enough for any honest man that goes a +passenger.’ Ha! Jonah, that’s another stab. But he swiftly calls away +the Captain from that scent. ‘I’ll sail with ye,’—he says,—‘the passage +money how much is that?—I’ll pay now.’ For it is particularly written, +shipmates, as if it were a thing not to be overlooked in this history, +‘that he paid the fare thereof’ ere the craft did sail. And taken with +the context, this is full of meaning. + +“Now Jonah’s Captain, shipmates, was one whose discernment detects +crime in any, but whose cupidity exposes it only in the penniless. In +this world, shipmates, sin that pays its way can travel freely, and +without a passport; whereas Virtue, if a pauper, is stopped at all +frontiers. So Jonah’s Captain prepares to test the length of Jonah’s +purse, ere he judge him openly. He charges him thrice the usual sum; +and it’s assented to. Then the Captain knows that Jonah is a fugitive; +but at the same time resolves to help a flight that paves its rear with +gold. Yet when Jonah fairly takes out his purse, prudent suspicions +still molest the Captain. He rings every coin to find a counterfeit. +Not a forger, any way, he mutters; and Jonah is put down for his +passage. ‘Point out my state-room, Sir,’ says Jonah now, ‘I’m +travel-weary; I need sleep.’ ‘Thou lookest like it,’ says the Captain, +‘there’s thy room.’ Jonah enters, and would lock the door, but the lock +contains no key. Hearing him foolishly fumbling there, the Captain +laughs lowly to himself, and mutters something about the doors of +convicts’ cells being never allowed to be locked within. All dressed +and dusty as he is, Jonah throws himself into his berth, and finds the +little state-room ceiling almost resting on his forehead. The air is +close, and Jonah gasps. Then, in that contracted hole, sunk, too, +beneath the ship’s water-line, Jonah feels the heralding presentiment +of that stifling hour, when the whale shall hold him in the smallest of +his bowels’ wards. + +“Screwed at its axis against the side, a swinging lamp slightly +oscillates in Jonah’s room; and the ship, heeling over towards the +wharf with the weight of the last bales received, the lamp, flame and +all, though in slight motion, still maintains a permanent obliquity +with reference to the room; though, in truth, infallibly straight +itself, it but made obvious the false, lying levels among which it +hung. The lamp alarms and frightens Jonah; as lying in his berth his +tormented eyes roll round the place, and this thus far successful +fugitive finds no refuge for his restless glance. But that +contradiction in the lamp more and more appals him. The floor, the +ceiling, and the side, are all awry. ‘Oh! so my conscience hangs in +me!’ he groans, ‘straight upwards, so it burns; but the chambers of my +soul are all in crookedness!’ + +“Like one who after a night of drunken revelry hies to his bed, still +reeling, but with conscience yet pricking him, as the plungings of the +Roman race-horse but so much the more strike his steel tags into him; +as one who in that miserable plight still turns and turns in giddy +anguish, praying God for annihilation until the fit be passed; and at +last amid the whirl of woe he feels, a deep stupor steals over him, as +over the man who bleeds to death, for conscience is the wound, and +there’s naught to staunch it; so, after sore wrestlings in his berth, +Jonah’s prodigy of ponderous misery drags him drowning down to sleep. + +“And now the time of tide has come; the ship casts off her cables; and +from the deserted wharf the uncheered ship for Tarshish, all careening, +glides to sea. That ship, my friends, was the first of recorded +smugglers! the contraband was Jonah. But the sea rebels; he will not +bear the wicked burden. A dreadful storm comes on, the ship is like to +break. But now when the boatswain calls all hands to lighten her; when +boxes, bales, and jars are clattering overboard; when the wind is +shrieking, and the men are yelling, and every plank thunders with +trampling feet right over Jonah’s head; in all this raging tumult, +Jonah sleeps his hideous sleep. He sees no black sky and raging sea, +feels not the reeling timbers, and little hears he or heeds he the far +rush of the mighty whale, which even now with open mouth is cleaving +the seas after him. Aye, shipmates, Jonah was gone down into the sides +of the ship—a berth in the cabin as I have taken it, and was fast +asleep. But the frightened master comes to him, and shrieks in his dead +ear, ‘What meanest thou, O, sleeper! arise!’ Startled from his lethargy +by that direful cry, Jonah staggers to his feet, and stumbling to the +deck, grasps a shroud, to look out upon the sea. But at that moment he +is sprung upon by a panther billow leaping over the bulwarks. Wave +after wave thus leaps into the ship, and finding no speedy vent runs +roaring fore and aft, till the mariners come nigh to drowning while yet +afloat. And ever, as the white moon shows her affrighted face from the +steep gullies in the blackness overhead, aghast Jonah sees the rearing +bowsprit pointing high upward, but soon beat downward again towards the +tormented deep. + +“Terrors upon terrors run shouting through his soul. In all his +cringing attitudes, the God-fugitive is now too plainly known. The +sailors mark him; more and more certain grow their suspicions of him, +and at last, fully to test the truth, by referring the whole matter to +high Heaven, they fall to casting lots, to see for whose cause this +great tempest was upon them. The lot is Jonah’s; that discovered, then +how furiously they mob him with their questions. ‘What is thine +occupation? Whence comest thou? Thy country? What people? But mark now, +my shipmates, the behavior of poor Jonah. The eager mariners but ask +him who he is, and where from; whereas, they not only receive an answer +to those questions, but likewise another answer to a question not put +by them, but the unsolicited answer is forced from Jonah by the hard +hand of God that is upon him. + +“‘I am a Hebrew,’ he cries—and then—‘I fear the Lord the God of Heaven +who hath made the sea and the dry land!’ Fear him, O Jonah? Aye, well +mightest thou fear the Lord God _then!_ Straightway, he now goes on to +make a full confession; whereupon the mariners became more and more +appalled, but still are pitiful. For when Jonah, not yet supplicating +God for mercy, since he but too well knew the darkness of his +deserts,—when wretched Jonah cries out to them to take him and cast him +forth into the sea, for he knew that for _his_ sake this great tempest +was upon them; they mercifully turn from him, and seek by other means +to save the ship. But all in vain; the indignant gale howls louder; +then, with one hand raised invokingly to God, with the other they not +unreluctantly lay hold of Jonah. + +“And now behold Jonah taken up as an anchor and dropped into the sea; +when instantly an oily calmness floats out from the east, and the sea +is still, as Jonah carries down the gale with him, leaving smooth water +behind. He goes down in the whirling heart of such a masterless +commotion that he scarce heeds the moment when he drops seething into +the yawning jaws awaiting him; and the whale shoots-to all his ivory +teeth, like so many white bolts, upon his prison. Then Jonah prayed +unto the Lord out of the fish’s belly. But observe his prayer, and +learn a weighty lesson. For sinful as he is, Jonah does not weep and +wail for direct deliverance. He feels that his dreadful punishment is +just. He leaves all his deliverance to God, contenting himself with +this, that spite of all his pains and pangs, he will still look towards +His holy temple. And here, shipmates, is true and faithful repentance; +not clamorous for pardon, but grateful for punishment. And how pleasing +to God was this conduct in Jonah, is shown in the eventual deliverance +of him from the sea and the whale. Shipmates, I do not place Jonah +before you to be copied for his sin but I do place him before you as a +model for repentance. Sin not; but if you do, take heed to repent of it +like Jonah.” + +While he was speaking these words, the howling of the shrieking, +slanting storm without seemed to add new power to the preacher, who, +when describing Jonah’s sea-storm, seemed tossed by a storm himself. +His deep chest heaved as with a ground-swell; his tossed arms seemed +the warring elements at work; and the thunders that rolled away from +off his swarthy brow, and the light leaping from his eye, made all his +simple hearers look on him with a quick fear that was strange to them. + +There now came a lull in his look, as he silently turned over the +leaves of the Book once more; and, at last, standing motionless, with +closed eyes, for the moment, seemed communing with God and himself. + +But again he leaned over towards the people, and bowing his head lowly, +with an aspect of the deepest yet manliest humility, he spake these +words: + +“Shipmates, God has laid but one hand upon you; both his hands press +upon me. I have read ye by what murky light may be mine the lesson that +Jonah teaches to all sinners; and therefore to ye, and still more to +me, for I am a greater sinner than ye. And now how gladly would I come +down from this mast-head and sit on the hatches there where you sit, +and listen as you listen, while some one of you reads _me_ that other +and more awful lesson which Jonah teaches to _me_, as a pilot of the +living God. How being an anointed pilot-prophet, or speaker of true +things, and bidden by the Lord to sound those unwelcome truths in the +ears of a wicked Nineveh, Jonah, appalled at the hostility he should +raise, fled from his mission, and sought to escape his duty and his God +by taking ship at Joppa. But God is everywhere; Tarshish he never +reached. As we have seen, God came upon him in the whale, and swallowed +him down to living gulfs of doom, and with swift slantings tore him +along ‘into the midst of the seas,’ where the eddying depths sucked him +ten thousand fathoms down, and ‘the weeds were wrapped about his head,’ +and all the watery world of woe bowled over him. Yet even then beyond +the reach of any plummet—‘out of the belly of hell’—when the whale +grounded upon the ocean’s utmost bones, even then, God heard the +engulphed, repenting prophet when he cried. Then God spake unto the +fish; and from the shuddering cold and blackness of the sea, the whale +came breeching up towards the warm and pleasant sun, and all the +delights of air and earth; and ‘vomited out Jonah upon the dry land;’ +when the word of the Lord came a second time; and Jonah, bruised and +beaten—his ears, like two sea-shells, still multitudinously murmuring +of the ocean—Jonah did the Almighty’s bidding. And what was that, +shipmates? To preach the Truth to the face of Falsehood! That was it! + +“This, shipmates, this is that other lesson; and woe to that pilot of +the living God who slights it. Woe to him whom this world charms from +Gospel duty! Woe to him who seeks to pour oil upon the waters when God +has brewed them into a gale! Woe to him who seeks to please rather than +to appal! Woe to him whose good name is more to him than goodness! Woe +to him who, in this world, courts not dishonor! Woe to him who would +not be true, even though to be false were salvation! Yea, woe to him +who, as the great Pilot Paul has it, while preaching to others is +himself a castaway!” + +He dropped and fell away from himself for a moment; then lifting his +face to them again, showed a deep joy in his eyes, as he cried out with +a heavenly enthusiasm,—“But oh! shipmates! on the starboard hand of +every woe, there is a sure delight; and higher the top of that delight, +than the bottom of the woe is deep. Is not the main-truck higher than +the kelson is low? Delight is to him—a far, far upward, and inward +delight—who against the proud gods and commodores of this earth, ever +stands forth his own inexorable self. Delight is to him whose strong +arms yet support him, when the ship of this base treacherous world has +gone down beneath him. Delight is to him, who gives no quarter in the +truth, and kills, burns, and destroys all sin though he pluck it out +from under the robes of Senators and Judges. Delight,—top-gallant +delight is to him, who acknowledges no law or lord, but the Lord his +God, and is only a patriot to heaven. Delight is to him, whom all the +waves of the billows of the seas of the boisterous mob can never shake +from this sure Keel of the Ages. And eternal delight and deliciousness +will be his, who coming to lay him down, can say with his final +breath—O Father!—chiefly known to me by Thy rod—mortal or immortal, +here I die. I have striven to be Thine, more than to be this world’s, +or mine own. Yet this is nothing: I leave eternity to Thee; for what is +man that he should live out the lifetime of his God?” + +He said no more, but slowly waving a benediction, covered his face with +his hands, and so remained kneeling, till all the people had departed, +and he was left alone in the place. + + +CHAPTER 10. A Bosom Friend. + +Returning to the Spouter-Inn from the Chapel, I found Queequeg there +quite alone; he having left the Chapel before the benediction some +time. He was sitting on a bench before the fire, with his feet on the +stove hearth, and in one hand was holding close up to his face that +little negro idol of his; peering hard into its face, and with a +jack-knife gently whittling away at its nose, meanwhile humming to +himself in his heathenish way. + +But being now interrupted, he put up the image; and pretty soon, going +to the table, took up a large book there, and placing it on his lap +began counting the pages with deliberate regularity; at every fiftieth +page—as I fancied—stopping a moment, looking vacantly around him, and +giving utterance to a long-drawn gurgling whistle of astonishment. He +would then begin again at the next fifty; seeming to commence at number +one each time, as though he could not count more than fifty, and it was +only by such a large number of fifties being found together, that his +astonishment at the multitude of pages was excited. + +With much interest I sat watching him. Savage though he was, and +hideously marred about the face—at least to my taste—his countenance +yet had a something in it which was by no means disagreeable. You +cannot hide the soul. Through all his unearthly tattooings, I thought I +saw the traces of a simple honest heart; and in his large, deep eyes, +fiery black and bold, there seemed tokens of a spirit that would dare a +thousand devils. And besides all this, there was a certain lofty +bearing about the Pagan, which even his uncouthness could not +altogether maim. He looked like a man who had never cringed and never +had had a creditor. Whether it was, too, that his head being shaved, +his forehead was drawn out in freer and brighter relief, and looked +more expansive than it otherwise would, this I will not venture to +decide; but certain it was his head was phrenologically an excellent +one. It may seem ridiculous, but it reminded me of General Washington’s +head, as seen in the popular busts of him. It had the same long +regularly graded retreating slope from above the brows, which were +likewise very projecting, like two long promontories thickly wooded on +top. Queequeg was George Washington cannibalistically developed. + +Whilst I was thus closely scanning him, half-pretending meanwhile to be +looking out at the storm from the casement, he never heeded my +presence, never troubled himself with so much as a single glance; but +appeared wholly occupied with counting the pages of the marvellous +book. Considering how sociably we had been sleeping together the night +previous, and especially considering the affectionate arm I had found +thrown over me upon waking in the morning, I thought this indifference +of his very strange. But savages are strange beings; at times you do +not know exactly how to take them. At first they are overawing; their +calm self-collectedness of simplicity seems a Socratic wisdom. I had +noticed also that Queequeg never consorted at all, or but very little, +with the other seamen in the inn. He made no advances whatever; +appeared to have no desire to enlarge the circle of his acquaintances. +All this struck me as mighty singular; yet, upon second thoughts, there +was something almost sublime in it. Here was a man some twenty thousand +miles from home, by the way of Cape Horn, that is—which was the only +way he could get there—thrown among people as strange to him as though +he were in the planet Jupiter; and yet he seemed entirely at his ease; +preserving the utmost serenity; content with his own companionship; +always equal to himself. Surely this was a touch of fine philosophy; +though no doubt he had never heard there was such a thing as that. But, +perhaps, to be true philosophers, we mortals should not be conscious of +so living or so striving. So soon as I hear that such or such a man +gives himself out for a philosopher, I conclude that, like the +dyspeptic old woman, he must have “broken his digester.” + +As I sat there in that now lonely room; the fire burning low, in that +mild stage when, after its first intensity has warmed the air, it then +only glows to be looked at; the evening shades and phantoms gathering +round the casements, and peering in upon us silent, solitary twain; the +storm booming without in solemn swells; I began to be sensible of +strange feelings. I felt a melting in me. No more my splintered heart +and maddened hand were turned against the wolfish world. This soothing +savage had redeemed it. There he sat, his very indifference speaking a +nature in which there lurked no civilized hypocrisies and bland +deceits. Wild he was; a very sight of sights to see; yet I began to +feel myself mysteriously drawn towards him. And those same things that +would have repelled most others, they were the very magnets that thus +drew me. I’ll try a pagan friend, thought I, since Christian kindness +has proved but hollow courtesy. I drew my bench near him, and made some +friendly signs and hints, doing my best to talk with him meanwhile. At +first he little noticed these advances; but presently, upon my +referring to his last night’s hospitalities, he made out to ask me +whether we were again to be bedfellows. I told him yes; whereat I +thought he looked pleased, perhaps a little complimented. + +We then turned over the book together, and I endeavored to explain to +him the purpose of the printing, and the meaning of the few pictures +that were in it. Thus I soon engaged his interest; and from that we +went to jabbering the best we could about the various outer sights to +be seen in this famous town. Soon I proposed a social smoke; and, +producing his pouch and tomahawk, he quietly offered me a puff. And +then we sat exchanging puffs from that wild pipe of his, and keeping it +regularly passing between us. + +If there yet lurked any ice of indifference towards me in the Pagan’s +breast, this pleasant, genial smoke we had, soon thawed it out, and +left us cronies. He seemed to take to me quite as naturally and +unbiddenly as I to him; and when our smoke was over, he pressed his +forehead against mine, clasped me round the waist, and said that +henceforth we were married; meaning, in his country’s phrase, that we +were bosom friends; he would gladly die for me, if need should be. In a +countryman, this sudden flame of friendship would have seemed far too +premature, a thing to be much distrusted; but in this simple savage +those old rules would not apply. + +After supper, and another social chat and smoke, we went to our room +together. He made me a present of his embalmed head; took out his +enormous tobacco wallet, and groping under the tobacco, drew out some +thirty dollars in silver; then spreading them on the table, and +mechanically dividing them into two equal portions, pushed one of them +towards me, and said it was mine. I was going to remonstrate; but he +silenced me by pouring them into my trowsers’ pockets. I let them stay. +He then went about his evening prayers, took out his idol, and removed +the paper fireboard. By certain signs and symptoms, I thought he seemed +anxious for me to join him; but well knowing what was to follow, I +deliberated a moment whether, in case he invited me, I would comply or +otherwise. + +I was a good Christian; born and bred in the bosom of the infallible +Presbyterian Church. How then could I unite with this wild idolator in +worshipping his piece of wood? But what is worship? thought I. Do you +suppose now, Ishmael, that the magnanimous God of heaven and +earth—pagans and all included—can possibly be jealous of an +insignificant bit of black wood? Impossible! But what is worship?—to do +the will of God—_that_ is worship. And what is the will of God?—to do +to my fellow man what I would have my fellow man to do to me—_that_ is +the will of God. Now, Queequeg is my fellow man. And what do I wish +that this Queequeg would do to me? Why, unite with me in my particular +Presbyterian form of worship. Consequently, I must then unite with him +in his; ergo, I must turn idolator. So I kindled the shavings; helped +prop up the innocent little idol; offered him burnt biscuit with +Queequeg; salamed before him twice or thrice; kissed his nose; and that +done, we undressed and went to bed, at peace with our own consciences +and all the world. But we did not go to sleep without some little chat. + +How it is I know not; but there is no place like a bed for confidential +disclosures between friends. Man and wife, they say, there open the +very bottom of their souls to each other; and some old couples often +lie and chat over old times till nearly morning. Thus, then, in our +hearts’ honeymoon, lay I and Queequeg—a cosy, loving pair. + + +CHAPTER 11. Nightgown. + +We had lain thus in bed, chatting and napping at short intervals, and +Queequeg now and then affectionately throwing his brown tattooed legs +over mine, and then drawing them back; so entirely sociable and free +and easy were we; when, at last, by reason of our confabulations, what +little nappishness remained in us altogether departed, and we felt like +getting up again, though day-break was yet some way down the future. + +Yes, we became very wakeful; so much so that our recumbent position +began to grow wearisome, and by little and little we found ourselves +sitting up; the clothes well tucked around us, leaning against the +head-board with our four knees drawn up close together, and our two +noses bending over them, as if our kneepans were warming-pans. We felt +very nice and snug, the more so since it was so chilly out of doors; +indeed out of bed-clothes too, seeing that there was no fire in the +room. The more so, I say, because truly to enjoy bodily warmth, some +small part of you must be cold, for there is no quality in this world +that is not what it is merely by contrast. Nothing exists in itself. If +you flatter yourself that you are all over comfortable, and have been +so a long time, then you cannot be said to be comfortable any more. But +if, like Queequeg and me in the bed, the tip of your nose or the crown +of your head be slightly chilled, why then, indeed, in the general +consciousness you feel most delightfully and unmistakably warm. For +this reason a sleeping apartment should never be furnished with a fire, +which is one of the luxurious discomforts of the rich. For the height +of this sort of deliciousness is to have nothing but the blanket +between you and your snugness and the cold of the outer air. Then there +you lie like the one warm spark in the heart of an arctic crystal. + +We had been sitting in this crouching manner for some time, when all at +once I thought I would open my eyes; for when between sheets, whether +by day or by night, and whether asleep or awake, I have a way of always +keeping my eyes shut, in order the more to concentrate the snugness of +being in bed. Because no man can ever feel his own identity aright +except his eyes be closed; as if darkness were indeed the proper +element of our essences, though light be more congenial to our clayey +part. Upon opening my eyes then, and coming out of my own pleasant and +self-created darkness into the imposed and coarse outer gloom of the +unilluminated twelve-o’clock-at-night, I experienced a disagreeable +revulsion. Nor did I at all object to the hint from Queequeg that +perhaps it were best to strike a light, seeing that we were so wide +awake; and besides he felt a strong desire to have a few quiet puffs +from his Tomahawk. Be it said, that though I had felt such a strong +repugnance to his smoking in the bed the night before, yet see how +elastic our stiff prejudices grow when love once comes to bend them. +For now I liked nothing better than to have Queequeg smoking by me, +even in bed, because he seemed to be full of such serene household joy +then. I no more felt unduly concerned for the landlord’s policy of +insurance. I was only alive to the condensed confidential +comfortableness of sharing a pipe and a blanket with a real friend. +With our shaggy jackets drawn about our shoulders, we now passed the +Tomahawk from one to the other, till slowly there grew over us a blue +hanging tester of smoke, illuminated by the flame of the new-lit lamp. + +Whether it was that this undulating tester rolled the savage away to +far distant scenes, I know not, but he now spoke of his native island; +and, eager to hear his history, I begged him to go on and tell it. He +gladly complied. Though at the time I but ill comprehended not a few of +his words, yet subsequent disclosures, when I had become more familiar +with his broken phraseology, now enable me to present the whole story +such as it may prove in the mere skeleton I give. + + +CHAPTER 12. Biographical. + +Queequeg was a native of Rokovoko, an island far away to the West and +South. It is not down in any map; true places never are. + +When a new-hatched savage running wild about his native woodlands in a +grass clout, followed by the nibbling goats, as if he were a green +sapling; even then, in Queequeg’s ambitious soul, lurked a strong +desire to see something more of Christendom than a specimen whaler or +two. His father was a High Chief, a King; his uncle a High Priest; and +on the maternal side he boasted aunts who were the wives of +unconquerable warriors. There was excellent blood in his veins—royal +stuff; though sadly vitiated, I fear, by the cannibal propensity he +nourished in his untutored youth. + +A Sag Harbor ship visited his father’s bay, and Queequeg sought a +passage to Christian lands. But the ship, having her full complement of +seamen, spurned his suit; and not all the King his father’s influence +could prevail. But Queequeg vowed a vow. Alone in his canoe, he paddled +off to a distant strait, which he knew the ship must pass through when +she quitted the island. On one side was a coral reef; on the other a +low tongue of land, covered with mangrove thickets that grew out into +the water. Hiding his canoe, still afloat, among these thickets, with +its prow seaward, he sat down in the stern, paddle low in hand; and +when the ship was gliding by, like a flash he darted out; gained her +side; with one backward dash of his foot capsized and sank his canoe; +climbed up the chains; and throwing himself at full length upon the +deck, grappled a ring-bolt there, and swore not to let it go, though +hacked in pieces. + +In vain the captain threatened to throw him overboard; suspended a +cutlass over his naked wrists; Queequeg was the son of a King, and +Queequeg budged not. Struck by his desperate dauntlessness, and his +wild desire to visit Christendom, the captain at last relented, and +told him he might make himself at home. But this fine young savage—this +sea Prince of Wales, never saw the Captain’s cabin. They put him down +among the sailors, and made a whaleman of him. But like Czar Peter +content to toil in the shipyards of foreign cities, Queequeg disdained +no seeming ignominy, if thereby he might happily gain the power of +enlightening his untutored countrymen. For at bottom—so he told me—he +was actuated by a profound desire to learn among the Christians, the +arts whereby to make his people still happier than they were; and more +than that, still better than they were. But, alas! the practices of +whalemen soon convinced him that even Christians could be both +miserable and wicked; infinitely more so, than all his father’s +heathens. Arrived at last in old Sag Harbor; and seeing what the +sailors did there; and then going on to Nantucket, and seeing how they +spent their wages in _that_ place also, poor Queequeg gave it up for +lost. Thought he, it’s a wicked world in all meridians; I’ll die a +pagan. + +And thus an old idolator at heart, he yet lived among these Christians, +wore their clothes, and tried to talk their gibberish. Hence the queer +ways about him, though now some time from home. + +By hints, I asked him whether he did not propose going back, and having +a coronation; since he might now consider his father dead and gone, he +being very old and feeble at the last accounts. He answered no, not +yet; and added that he was fearful Christianity, or rather Christians, +had unfitted him for ascending the pure and undefiled throne of thirty +pagan Kings before him. But by and by, he said, he would return,—as +soon as he felt himself baptized again. For the nonce, however, he +proposed to sail about, and sow his wild oats in all four oceans. They +had made a harpooneer of him, and that barbed iron was in lieu of a +sceptre now. + +I asked him what might be his immediate purpose, touching his future +movements. He answered, to go to sea again, in his old vocation. Upon +this, I told him that whaling was my own design, and informed him of my +intention to sail out of Nantucket, as being the most promising port +for an adventurous whaleman to embark from. He at once resolved to +accompany me to that island, ship aboard the same vessel, get into the +same watch, the same boat, the same mess with me, in short to share my +every hap; with both my hands in his, boldly dip into the Potluck of +both worlds. To all this I joyously assented; for besides the affection +I now felt for Queequeg, he was an experienced harpooneer, and as such, +could not fail to be of great usefulness to one, who, like me, was +wholly ignorant of the mysteries of whaling, though well acquainted +with the sea, as known to merchant seamen. + +His story being ended with his pipe’s last dying puff, Queequeg +embraced me, pressed his forehead against mine, and blowing out the +light, we rolled over from each other, this way and that, and very soon +were sleeping. + + +CHAPTER 13. Wheelbarrow. + +Next morning, Monday, after disposing of the embalmed head to a barber, +for a block, I settled my own and comrade’s bill; using, however, my +comrade’s money. The grinning landlord, as well as the boarders, seemed +amazingly tickled at the sudden friendship which had sprung up between +me and Queequeg—especially as Peter Coffin’s cock and bull stories +about him had previously so much alarmed me concerning the very person +whom I now companied with. + +We borrowed a wheelbarrow, and embarking our things, including my own +poor carpet-bag, and Queequeg’s canvas sack and hammock, away we went +down to “the Moss,” the little Nantucket packet schooner moored at the +wharf. As we were going along the people stared; not at Queequeg so +much—for they were used to seeing cannibals like him in their +streets,—but at seeing him and me upon such confidential terms. But we +heeded them not, going along wheeling the barrow by turns, and Queequeg +now and then stopping to adjust the sheath on his harpoon barbs. I +asked him why he carried such a troublesome thing with him ashore, and +whether all whaling ships did not find their own harpoons. To this, in +substance, he replied, that though what I hinted was true enough, yet +he had a particular affection for his own harpoon, because it was of +assured stuff, well tried in many a mortal combat, and deeply intimate +with the hearts of whales. In short, like many inland reapers and +mowers, who go into the farmers’ meadows armed with their own +scythes—though in no wise obliged to furnish them—even so, Queequeg, +for his own private reasons, preferred his own harpoon. + +Shifting the barrow from my hand to his, he told me a funny story about +the first wheelbarrow he had ever seen. It was in Sag Harbor. The +owners of his ship, it seems, had lent him one, in which to carry his +heavy chest to his boarding house. Not to seem ignorant about the +thing—though in truth he was entirely so, concerning the precise way in +which to manage the barrow—Queequeg puts his chest upon it; lashes it +fast; and then shoulders the barrow and marches up the wharf. “Why,” +said I, “Queequeg, you might have known better than that, one would +think. Didn’t the people laugh?” + +Upon this, he told me another story. The people of his island of +Rokovoko, it seems, at their wedding feasts express the fragrant water +of young cocoanuts into a large stained calabash like a punchbowl; and +this punchbowl always forms the great central ornament on the braided +mat where the feast is held. Now a certain grand merchant ship once +touched at Rokovoko, and its commander—from all accounts, a very +stately punctilious gentleman, at least for a sea captain—this +commander was invited to the wedding feast of Queequeg’s sister, a +pretty young princess just turned of ten. Well; when all the wedding +guests were assembled at the bride’s bamboo cottage, this Captain +marches in, and being assigned the post of honor, placed himself over +against the punchbowl, and between the High Priest and his majesty the +King, Queequeg’s father. Grace being said,—for those people have their +grace as well as we—though Queequeg told me that unlike us, who at such +times look downwards to our platters, they, on the contrary, copying +the ducks, glance upwards to the great Giver of all feasts—Grace, I +say, being said, the High Priest opens the banquet by the immemorial +ceremony of the island; that is, dipping his consecrated and +consecrating fingers into the bowl before the blessed beverage +circulates. Seeing himself placed next the Priest, and noting the +ceremony, and thinking himself—being Captain of a ship—as having plain +precedence over a mere island King, especially in the King’s own +house—the Captain coolly proceeds to wash his hands in the +punchbowl;—taking it I suppose for a huge finger-glass. “Now,” said +Queequeg, “what you tink now?—Didn’t our people laugh?” + +At last, passage paid, and luggage safe, we stood on board the +schooner. Hoisting sail, it glided down the Acushnet river. On one +side, New Bedford rose in terraces of streets, their ice-covered trees +all glittering in the clear, cold air. Huge hills and mountains of +casks on casks were piled upon her wharves, and side by side the +world-wandering whale ships lay silent and safely moored at last; while +from others came a sound of carpenters and coopers, with blended noises +of fires and forges to melt the pitch, all betokening that new cruises +were on the start; that one most perilous and long voyage ended, only +begins a second; and a second ended, only begins a third, and so on, +for ever and for aye. Such is the endlessness, yea, the intolerableness +of all earthly effort. + +Gaining the more open water, the bracing breeze waxed fresh; the little +Moss tossed the quick foam from her bows, as a young colt his +snortings. How I snuffed that Tartar air!—how I spurned that turnpike +earth!—that common highway all over dented with the marks of slavish +heels and hoofs; and turned me to admire the magnanimity of the sea +which will permit no records. + +At the same foam-fountain, Queequeg seemed to drink and reel with me. +His dusky nostrils swelled apart; he showed his filed and pointed +teeth. On, on we flew; and our offing gained, the Moss did homage to +the blast; ducked and dived her bows as a slave before the Sultan. +Sideways leaning, we sideways darted; every ropeyarn tingling like a +wire; the two tall masts buckling like Indian canes in land tornadoes. +So full of this reeling scene were we, as we stood by the plunging +bowsprit, that for some time we did not notice the jeering glances of +the passengers, a lubber-like assembly, who marvelled that two fellow +beings should be so companionable; as though a white man were anything +more dignified than a whitewashed negro. But there were some boobies +and bumpkins there, who, by their intense greenness, must have come +from the heart and centre of all verdure. Queequeg caught one of these +young saplings mimicking him behind his back. I thought the bumpkin’s +hour of doom was come. Dropping his harpoon, the brawny savage caught +him in his arms, and by an almost miraculous dexterity and strength, +sent him high up bodily into the air; then slightly tapping his stern +in mid-somerset, the fellow landed with bursting lungs upon his feet, +while Queequeg, turning his back upon him, lighted his tomahawk pipe +and passed it to me for a puff. + +“Capting! Capting!” yelled the bumpkin, running towards that officer; +“Capting, Capting, here’s the devil.” + +“Hallo, _you_ sir,” cried the Captain, a gaunt rib of the sea, stalking +up to Queequeg, “what in thunder do you mean by that? Don’t you know +you might have killed that chap?” + +“What him say?” said Queequeg, as he mildly turned to me. + +“He say,” said I, “that you came near kill-e that man there,” pointing +to the still shivering greenhorn. + +“Kill-e,” cried Queequeg, twisting his tattooed face into an unearthly +expression of disdain, “ah! him bevy small-e fish-e; Queequeg no kill-e +so small-e fish-e; Queequeg kill-e big whale!” + +“Look you,” roared the Captain, “I’ll kill-e _you_, you cannibal, if +you try any more of your tricks aboard here; so mind your eye.” + +But it so happened just then, that it was high time for the Captain to +mind his own eye. The prodigious strain upon the main-sail had parted +the weather-sheet, and the tremendous boom was now flying from side to +side, completely sweeping the entire after part of the deck. The poor +fellow whom Queequeg had handled so roughly, was swept overboard; all +hands were in a panic; and to attempt snatching at the boom to stay it, +seemed madness. It flew from right to left, and back again, almost in +one ticking of a watch, and every instant seemed on the point of +snapping into splinters. Nothing was done, and nothing seemed capable +of being done; those on deck rushed towards the bows, and stood eyeing +the boom as if it were the lower jaw of an exasperated whale. In the +midst of this consternation, Queequeg dropped deftly to his knees, and +crawling under the path of the boom, whipped hold of a rope, secured +one end to the bulwarks, and then flinging the other like a lasso, +caught it round the boom as it swept over his head, and at the next +jerk, the spar was that way trapped, and all was safe. The schooner was +run into the wind, and while the hands were clearing away the stern +boat, Queequeg, stripped to the waist, darted from the side with a long +living arc of a leap. For three minutes or more he was seen swimming +like a dog, throwing his long arms straight out before him, and by +turns revealing his brawny shoulders through the freezing foam. I +looked at the grand and glorious fellow, but saw no one to be saved. +The greenhorn had gone down. Shooting himself perpendicularly from the +water, Queequeg, now took an instant’s glance around him, and seeming +to see just how matters were, dived down and disappeared. A few minutes +more, and he rose again, one arm still striking out, and with the other +dragging a lifeless form. The boat soon picked them up. The poor +bumpkin was restored. All hands voted Queequeg a noble trump; the +captain begged his pardon. From that hour I clove to Queequeg like a +barnacle; yea, till poor Queequeg took his last long dive. + +Was there ever such unconsciousness? He did not seem to think that he +at all deserved a medal from the Humane and Magnanimous Societies. He +only asked for water—fresh water—something to wipe the brine off; that +done, he put on dry clothes, lighted his pipe, and leaning against the +bulwarks, and mildly eyeing those around him, seemed to be saying to +himself—“It’s a mutual, joint-stock world, in all meridians. We +cannibals must help these Christians.” + + +CHAPTER 14. Nantucket. + +Nothing more happened on the passage worthy the mentioning; so, after a +fine run, we safely arrived in Nantucket. + +Nantucket! Take out your map and look at it. See what a real corner of +the world it occupies; how it stands there, away off shore, more lonely +than the Eddystone lighthouse. Look at it—a mere hillock, and elbow of +sand; all beach, without a background. There is more sand there than +you would use in twenty years as a substitute for blotting paper. Some +gamesome wights will tell you that they have to plant weeds there, they +don’t grow naturally; that they import Canada thistles; that they have +to send beyond seas for a spile to stop a leak in an oil cask; that +pieces of wood in Nantucket are carried about like bits of the true +cross in Rome; that people there plant toadstools before their houses, +to get under the shade in summer time; that one blade of grass makes an +oasis, three blades in a day’s walk a prairie; that they wear quicksand +shoes, something like Laplander snow-shoes; that they are so shut up, +belted about, every way inclosed, surrounded, and made an utter island +of by the ocean, that to their very chairs and tables small clams will +sometimes be found adhering, as to the backs of sea turtles. But these +extravaganzas only show that Nantucket is no Illinois. + +Look now at the wondrous traditional story of how this island was +settled by the red-men. Thus goes the legend. In olden times an eagle +swooped down upon the New England coast, and carried off an infant +Indian in his talons. With loud lament the parents saw their child +borne out of sight over the wide waters. They resolved to follow in the +same direction. Setting out in their canoes, after a perilous passage +they discovered the island, and there they found an empty ivory +casket,—the poor little Indian’s skeleton. + +What wonder, then, that these Nantucketers, born on a beach, should +take to the sea for a livelihood! They first caught crabs and quohogs +in the sand; grown bolder, they waded out with nets for mackerel; more +experienced, they pushed off in boats and captured cod; and at last, +launching a navy of great ships on the sea, explored this watery world; +put an incessant belt of circumnavigations round it; peeped in at +Behring’s Straits; and in all seasons and all oceans declared +everlasting war with the mightiest animated mass that has survived the +flood; most monstrous and most mountainous! That Himmalehan, salt-sea +Mastodon, clothed with such portentousness of unconscious power, that +his very panics are more to be dreaded than his most fearless and +malicious assaults! + +And thus have these naked Nantucketers, these sea hermits, issuing from +their ant-hill in the sea, overrun and conquered the watery world like +so many Alexanders; parcelling out among them the Atlantic, Pacific, +and Indian oceans, as the three pirate powers did Poland. Let America +add Mexico to Texas, and pile Cuba upon Canada; let the English +overswarm all India, and hang out their blazing banner from the sun; +two thirds of this terraqueous globe are the Nantucketer’s. For the sea +is his; he owns it, as Emperors own empires; other seamen having but a +right of way through it. Merchant ships are but extension bridges; +armed ones but floating forts; even pirates and privateers, though +following the sea as highwaymen the road, they but plunder other ships, +other fragments of the land like themselves, without seeking to draw +their living from the bottomless deep itself. The Nantucketer, he alone +resides and riots on the sea; he alone, in Bible language, goes down to +it in ships; to and fro ploughing it as his own special plantation. +_There_ is his home; _there_ lies his business, which a Noah’s flood +would not interrupt, though it overwhelmed all the millions in China. +He lives on the sea, as prairie cocks in the prairie; he hides among +the waves, he climbs them as chamois hunters climb the Alps. For years +he knows not the land; so that when he comes to it at last, it smells +like another world, more strangely than the moon would to an Earthsman. +With the landless gull, that at sunset folds her wings and is rocked to +sleep between billows; so at nightfall, the Nantucketer, out of sight +of land, furls his sails, and lays him to his rest, while under his +very pillow rush herds of walruses and whales. + + +CHAPTER 15. Chowder. + +It was quite late in the evening when the little Moss came snugly to +anchor, and Queequeg and I went ashore; so we could attend to no +business that day, at least none but a supper and a bed. The landlord +of the Spouter-Inn had recommended us to his cousin Hosea Hussey of the +Try Pots, whom he asserted to be the proprietor of one of the best kept +hotels in all Nantucket, and moreover he had assured us that Cousin +Hosea, as he called him, was famous for his chowders. In short, he +plainly hinted that we could not possibly do better than try pot-luck +at the Try Pots. But the directions he had given us about keeping a +yellow warehouse on our starboard hand till we opened a white church to +the larboard, and then keeping that on the larboard hand till we made a +corner three points to the starboard, and that done, then ask the first +man we met where the place was: these crooked directions of his very +much puzzled us at first, especially as, at the outset, Queequeg +insisted that the yellow warehouse—our first point of departure—must be +left on the larboard hand, whereas I had understood Peter Coffin to say +it was on the starboard. However, by dint of beating about a little in +the dark, and now and then knocking up a peaceable inhabitant to +inquire the way, we at last came to something which there was no +mistaking. + +Two enormous wooden pots painted black, and suspended by asses’ ears, +swung from the cross-trees of an old top-mast, planted in front of an +old doorway. The horns of the cross-trees were sawed off on the other +side, so that this old top-mast looked not a little like a gallows. +Perhaps I was over sensitive to such impressions at the time, but I +could not help staring at this gallows with a vague misgiving. A sort +of crick was in my neck as I gazed up to the two remaining horns; yes, +_two_ of them, one for Queequeg, and one for me. It’s ominous, thinks +I. A Coffin my Innkeeper upon landing in my first whaling port; +tombstones staring at me in the whalemen’s chapel; and here a gallows! +and a pair of prodigious black pots too! Are these last throwing out +oblique hints touching Tophet? + +I was called from these reflections by the sight of a freckled woman +with yellow hair and a yellow gown, standing in the porch of the inn, +under a dull red lamp swinging there, that looked much like an injured +eye, and carrying on a brisk scolding with a man in a purple woollen +shirt. + +“Get along with ye,” said she to the man, “or I’ll be combing ye!” + +“Come on, Queequeg,” said I, “all right. There’s Mrs. Hussey.” + +And so it turned out; Mr. Hosea Hussey being from home, but leaving +Mrs. Hussey entirely competent to attend to all his affairs. Upon +making known our desires for a supper and a bed, Mrs. Hussey, +postponing further scolding for the present, ushered us into a little +room, and seating us at a table spread with the relics of a recently +concluded repast, turned round to us and said—“Clam or Cod?” + +“What’s that about Cods, ma’am?” said I, with much politeness. + +“Clam or Cod?” she repeated. + +“A clam for supper? a cold clam; is _that_ what you mean, Mrs. Hussey?” +says I, “but that’s a rather cold and clammy reception in the winter +time, ain’t it, Mrs. Hussey?” + +But being in a great hurry to resume scolding the man in the purple +Shirt, who was waiting for it in the entry, and seeming to hear nothing +but the word “clam,” Mrs. Hussey hurried towards an open door leading +to the kitchen, and bawling out “clam for two,” disappeared. + +“Queequeg,” said I, “do you think that we can make out a supper for us +both on one clam?” + +However, a warm savory steam from the kitchen served to belie the +apparently cheerless prospect before us. But when that smoking chowder +came in, the mystery was delightfully explained. Oh, sweet friends! +hearken to me. It was made of small juicy clams, scarcely bigger than +hazel nuts, mixed with pounded ship biscuit, and salted pork cut up +into little flakes; the whole enriched with butter, and plentifully +seasoned with pepper and salt. Our appetites being sharpened by the +frosty voyage, and in particular, Queequeg seeing his favourite fishing +food before him, and the chowder being surpassingly excellent, we +despatched it with great expedition: when leaning back a moment and +bethinking me of Mrs. Hussey’s clam and cod announcement, I thought I +would try a little experiment. Stepping to the kitchen door, I uttered +the word “cod” with great emphasis, and resumed my seat. In a few +moments the savoury steam came forth again, but with a different +flavor, and in good time a fine cod-chowder was placed before us. + +We resumed business; and while plying our spoons in the bowl, thinks I +to myself, I wonder now if this here has any effect on the head? What’s +that stultifying saying about chowder-headed people? “But look, +Queequeg, ain’t that a live eel in your bowl? Where’s your harpoon?” + +Fishiest of all fishy places was the Try Pots, which well deserved its +name; for the pots there were always boiling chowders. Chowder for +breakfast, and chowder for dinner, and chowder for supper, till you +began to look for fish-bones coming through your clothes. The area +before the house was paved with clam-shells. Mrs. Hussey wore a +polished necklace of codfish vertebra; and Hosea Hussey had his account +books bound in superior old shark-skin. There was a fishy flavor to the +milk, too, which I could not at all account for, till one morning +happening to take a stroll along the beach among some fishermen’s +boats, I saw Hosea’s brindled cow feeding on fish remnants, and +marching along the sand with each foot in a cod’s decapitated head, +looking very slip-shod, I assure ye. + +Supper concluded, we received a lamp, and directions from Mrs. Hussey +concerning the nearest way to bed; but, as Queequeg was about to +precede me up the stairs, the lady reached forth her arm, and demanded +his harpoon; she allowed no harpoon in her chambers. “Why not?” said I; +“every true whaleman sleeps with his harpoon—but why not?” “Because +it’s dangerous,” says she. “Ever since young Stiggs coming from that +unfort’nt v’y’ge of his, when he was gone four years and a half, with +only three barrels of _ile_, was found dead in my first floor back, +with his harpoon in his side; ever since then I allow no boarders to +take sich dangerous weepons in their rooms at night. So, Mr. Queequeg” +(for she had learned his name), “I will just take this here iron, and +keep it for you till morning. But the chowder; clam or cod to-morrow +for breakfast, men?” + +“Both,” says I; “and let’s have a couple of smoked herring by way of +variety.” + + +CHAPTER 16. The Ship. + +In bed we concocted our plans for the morrow. But to my surprise and no +small concern, Queequeg now gave me to understand, that he had been +diligently consulting Yojo—the name of his black little god—and Yojo +had told him two or three times over, and strongly insisted upon it +everyway, that instead of our going together among the whaling-fleet in +harbor, and in concert selecting our craft; instead of this, I say, +Yojo earnestly enjoined that the selection of the ship should rest +wholly with me, inasmuch as Yojo purposed befriending us; and, in order +to do so, had already pitched upon a vessel, which, if left to myself, +I, Ishmael, should infallibly light upon, for all the world as though +it had turned out by chance; and in that vessel I must immediately ship +myself, for the present irrespective of Queequeg. + +I have forgotten to mention that, in many things, Queequeg placed great +confidence in the excellence of Yojo’s judgment and surprising forecast +of things; and cherished Yojo with considerable esteem, as a rather +good sort of god, who perhaps meant well enough upon the whole, but in +all cases did not succeed in his benevolent designs. + +Now, this plan of Queequeg’s, or rather Yojo’s, touching the selection +of our craft; I did not like that plan at all. I had not a little +relied upon Queequeg’s sagacity to point out the whaler best fitted to +carry us and our fortunes securely. But as all my remonstrances +produced no effect upon Queequeg, I was obliged to acquiesce; and +accordingly prepared to set about this business with a determined +rushing sort of energy and vigor, that should quickly settle that +trifling little affair. Next morning early, leaving Queequeg shut up +with Yojo in our little bedroom—for it seemed that it was some sort of +Lent or Ramadan, or day of fasting, humiliation, and prayer with +Queequeg and Yojo that day; _how_ it was I never could find out, for, +though I applied myself to it several times, I never could master his +liturgies and XXXIX Articles—leaving Queequeg, then, fasting on his +tomahawk pipe, and Yojo warming himself at his sacrificial fire of +shavings, I sallied out among the shipping. After much prolonged +sauntering and many random inquiries, I learnt that there were three +ships up for three-years’ voyages—The Devil-dam, the Tit-bit, and the +Pequod. _Devil-Dam_, I do not know the origin of; _Tit-bit_ is obvious; +_Pequod_, you will no doubt remember, was the name of a celebrated +tribe of Massachusetts Indians; now extinct as the ancient Medes. I +peered and pryed about the Devil-dam; from her, hopped over to the +Tit-bit; and finally, going on board the Pequod, looked around her for +a moment, and then decided that this was the very ship for us. + +You may have seen many a quaint craft in your day, for aught I +know;—square-toed luggers; mountainous Japanese junks; butter-box +galliots, and what not; but take my word for it, you never saw such a +rare old craft as this same rare old Pequod. She was a ship of the old +school, rather small if anything; with an old-fashioned claw-footed +look about her. Long seasoned and weather-stained in the typhoons and +calms of all four oceans, her old hull’s complexion was darkened like a +French grenadier’s, who has alike fought in Egypt and Siberia. Her +venerable bows looked bearded. Her masts—cut somewhere on the coast of +Japan, where her original ones were lost overboard in a gale—her masts +stood stiffly up like the spines of the three old kings of Cologne. Her +ancient decks were worn and wrinkled, like the pilgrim-worshipped +flag-stone in Canterbury Cathedral where Becket bled. But to all these +her old antiquities, were added new and marvellous features, pertaining +to the wild business that for more than half a century she had +followed. Old Captain Peleg, many years her chief-mate, before he +commanded another vessel of his own, and now a retired seaman, and one +of the principal owners of the Pequod,—this old Peleg, during the term +of his chief-mateship, had built upon her original grotesqueness, and +inlaid it, all over, with a quaintness both of material and device, +unmatched by anything except it be Thorkill-Hake’s carved buckler or +bedstead. She was apparelled like any barbaric Ethiopian emperor, his +neck heavy with pendants of polished ivory. She was a thing of +trophies. A cannibal of a craft, tricking herself forth in the chased +bones of her enemies. All round, her unpanelled, open bulwarks were +garnished like one continuous jaw, with the long sharp teeth of the +sperm whale, inserted there for pins, to fasten her old hempen thews +and tendons to. Those thews ran not through base blocks of land wood, +but deftly travelled over sheaves of sea-ivory. Scorning a turnstile +wheel at her reverend helm, she sported there a tiller; and that tiller +was in one mass, curiously carved from the long narrow lower jaw of her +hereditary foe. The helmsman who steered by that tiller in a tempest, +felt like the Tartar, when he holds back his fiery steed by clutching +its jaw. A noble craft, but somehow a most melancholy! All noble things +are touched with that. + +Now when I looked about the quarter-deck, for some one having +authority, in order to propose myself as a candidate for the voyage, at +first I saw nobody; but I could not well overlook a strange sort of +tent, or rather wigwam, pitched a little behind the main-mast. It +seemed only a temporary erection used in port. It was of a conical +shape, some ten feet high; consisting of the long, huge slabs of limber +black bone taken from the middle and highest part of the jaws of the +right-whale. Planted with their broad ends on the deck, a circle of +these slabs laced together, mutually sloped towards each other, and at +the apex united in a tufted point, where the loose hairy fibres waved +to and fro like the top-knot on some old Pottowottamie Sachem’s head. A +triangular opening faced towards the bows of the ship, so that the +insider commanded a complete view forward. + +And half concealed in this queer tenement, I at length found one who by +his aspect seemed to have authority; and who, it being noon, and the +ship’s work suspended, was now enjoying respite from the burden of +command. He was seated on an old-fashioned oaken chair, wriggling all +over with curious carving; and the bottom of which was formed of a +stout interlacing of the same elastic stuff of which the wigwam was +constructed. + +There was nothing so very particular, perhaps, about the appearance of +the elderly man I saw; he was brown and brawny, like most old seamen, +and heavily rolled up in blue pilot-cloth, cut in the Quaker style; +only there was a fine and almost microscopic net-work of the minutest +wrinkles interlacing round his eyes, which must have arisen from his +continual sailings in many hard gales, and always looking to +windward;—for this causes the muscles about the eyes to become pursed +together. Such eye-wrinkles are very effectual in a scowl. + +“Is this the Captain of the Pequod?” said I, advancing to the door of +the tent. + +“Supposing it be the captain of the Pequod, what dost thou want of +him?” he demanded. + +“I was thinking of shipping.” + +“Thou wast, wast thou? I see thou art no Nantucketer—ever been in a +stove boat?” + +“No, Sir, I never have.” + +“Dost know nothing at all about whaling, I dare say—eh? + +“Nothing, Sir; but I have no doubt I shall soon learn. I’ve been +several voyages in the merchant service, and I think that—” + +“Merchant service be damned. Talk not that lingo to me. Dost see that +leg?—I’ll take that leg away from thy stern, if ever thou talkest of +the marchant service to me again. Marchant service indeed! I suppose +now ye feel considerable proud of having served in those marchant +ships. But flukes! man, what makes thee want to go a whaling, eh?—it +looks a little suspicious, don’t it, eh?—Hast not been a pirate, hast +thou?—Didst not rob thy last Captain, didst thou?—Dost not think of +murdering the officers when thou gettest to sea?” + +I protested my innocence of these things. I saw that under the mask of +these half humorous innuendoes, this old seaman, as an insulated +Quakerish Nantucketer, was full of his insular prejudices, and rather +distrustful of all aliens, unless they hailed from Cape Cod or the +Vineyard. + +“But what takes thee a-whaling? I want to know that before I think of +shipping ye.” + +“Well, sir, I want to see what whaling is. I want to see the world.” + +“Want to see what whaling is, eh? Have ye clapped eye on Captain Ahab?” + +“Who is Captain Ahab, sir?” + +“Aye, aye, I thought so. Captain Ahab is the Captain of this ship.” + +“I am mistaken then. I thought I was speaking to the Captain himself.” + +“Thou art speaking to Captain Peleg—that’s who ye are speaking to, +young man. It belongs to me and Captain Bildad to see the Pequod fitted +out for the voyage, and supplied with all her needs, including crew. We +are part owners and agents. But as I was going to say, if thou wantest +to know what whaling is, as thou tellest ye do, I can put ye in a way +of finding it out before ye bind yourself to it, past backing out. Clap +eye on Captain Ahab, young man, and thou wilt find that he has only one +leg.” + +“What do you mean, sir? Was the other one lost by a whale?” + +“Lost by a whale! Young man, come nearer to me: it was devoured, chewed +up, crunched by the monstrousest parmacetty that ever chipped a +boat!—ah, ah!” + +I was a little alarmed by his energy, perhaps also a little touched at +the hearty grief in his concluding exclamation, but said as calmly as I +could, “What you say is no doubt true enough, sir; but how could I know +there was any peculiar ferocity in that particular whale, though indeed +I might have inferred as much from the simple fact of the accident.” + +“Look ye now, young man, thy lungs are a sort of soft, d’ye see; thou +dost not talk shark a bit. _Sure_, ye’ve been to sea before now; sure +of that?” + +“Sir,” said I, “I thought I told you that I had been four voyages in +the merchant—” + +“Hard down out of that! Mind what I said about the marchant +service—don’t aggravate me—I won’t have it. But let us understand each +other. I have given thee a hint about what whaling is; do ye yet feel +inclined for it?” + +“I do, sir.” + +“Very good. Now, art thou the man to pitch a harpoon down a live +whale’s throat, and then jump after it? Answer, quick!” + +“I am, sir, if it should be positively indispensable to do so; not to +be got rid of, that is; which I don’t take to be the fact.” + +“Good again. Now then, thou not only wantest to go a-whaling, to find +out by experience what whaling is, but ye also want to go in order to +see the world? Was not that what ye said? I thought so. Well then, just +step forward there, and take a peep over the weather-bow, and then back +to me and tell me what ye see there.” + +For a moment I stood a little puzzled by this curious request, not +knowing exactly how to take it, whether humorously or in earnest. But +concentrating all his crow’s feet into one scowl, Captain Peleg started +me on the errand. + +Going forward and glancing over the weather bow, I perceived that the +ship swinging to her anchor with the flood-tide, was now obliquely +pointing towards the open ocean. The prospect was unlimited, but +exceedingly monotonous and forbidding; not the slightest variety that I +could see. + +“Well, what’s the report?” said Peleg when I came back; “what did ye +see?” + +“Not much,” I replied—“nothing but water; considerable horizon though, +and there’s a squall coming up, I think.” + +“Well, what does thou think then of seeing the world? Do ye wish to go +round Cape Horn to see any more of it, eh? Can’t ye see the world where +you stand?” + +I was a little staggered, but go a-whaling I must, and I would; and the +Pequod was as good a ship as any—I thought the best—and all this I now +repeated to Peleg. Seeing me so determined, he expressed his +willingness to ship me. + +“And thou mayest as well sign the papers right off,” he added—“come +along with ye.” And so saying, he led the way below deck into the +cabin. + +Seated on the transom was what seemed to me a most uncommon and +surprising figure. It turned out to be Captain Bildad, who along with +Captain Peleg was one of the largest owners of the vessel; the other +shares, as is sometimes the case in these ports, being held by a crowd +of old annuitants; widows, fatherless children, and chancery wards; +each owning about the value of a timber head, or a foot of plank, or a +nail or two in the ship. People in Nantucket invest their money in +whaling vessels, the same way that you do yours in approved state +stocks bringing in good interest. + +Now, Bildad, like Peleg, and indeed many other Nantucketers, was a +Quaker, the island having been originally settled by that sect; and to +this day its inhabitants in general retain in an uncommon measure the +peculiarities of the Quaker, only variously and anomalously modified by +things altogether alien and heterogeneous. For some of these same +Quakers are the most sanguinary of all sailors and whale-hunters. They +are fighting Quakers; they are Quakers with a vengeance. + +So that there are instances among them of men, who, named with +Scripture names—a singularly common fashion on the island—and in +childhood naturally imbibing the stately dramatic thee and thou of the +Quaker idiom; still, from the audacious, daring, and boundless +adventure of their subsequent lives, strangely blend with these +unoutgrown peculiarities, a thousand bold dashes of character, not +unworthy a Scandinavian sea-king, or a poetical Pagan Roman. And when +these things unite in a man of greatly superior natural force, with a +globular brain and a ponderous heart; who has also by the stillness and +seclusion of many long night-watches in the remotest waters, and +beneath constellations never seen here at the north, been led to think +untraditionally and independently; receiving all nature’s sweet or +savage impressions fresh from her own virgin voluntary and confiding +breast, and thereby chiefly, but with some help from accidental +advantages, to learn a bold and nervous lofty language—that man makes +one in a whole nation’s census—a mighty pageant creature, formed for +noble tragedies. Nor will it at all detract from him, dramatically +regarded, if either by birth or other circumstances, he have what seems +a half wilful overruling morbidness at the bottom of his nature. For +all men tragically great are made so through a certain morbidness. Be +sure of this, O young ambition, all mortal greatness is but disease. +But, as yet we have not to do with such an one, but with quite another; +and still a man, who, if indeed peculiar, it only results again from +another phase of the Quaker, modified by individual circumstances. + +Like Captain Peleg, Captain Bildad was a well-to-do, retired whaleman. +But unlike Captain Peleg—who cared not a rush for what are called +serious things, and indeed deemed those self-same serious things the +veriest of all trifles—Captain Bildad had not only been originally +educated according to the strictest sect of Nantucket Quakerism, but +all his subsequent ocean life, and the sight of many unclad, lovely +island creatures, round the Horn—all that had not moved this native +born Quaker one single jot, had not so much as altered one angle of his +vest. Still, for all this immutableness, was there some lack of common +consistency about worthy Captain Bildad. Though refusing, from +conscientious scruples, to bear arms against land invaders, yet himself +had illimitably invaded the Atlantic and Pacific; and though a sworn +foe to human bloodshed, yet had he in his straight-bodied coat, spilled +tuns upon tuns of leviathan gore. How now in the contemplative evening +of his days, the pious Bildad reconciled these things in the +reminiscence, I do not know; but it did not seem to concern him much, +and very probably he had long since come to the sage and sensible +conclusion that a man’s religion is one thing, and this practical world +quite another. This world pays dividends. Rising from a little +cabin-boy in short clothes of the drabbest drab, to a harpooneer in a +broad shad-bellied waistcoat; from that becoming boat-header, +chief-mate, and captain, and finally a ship owner; Bildad, as I hinted +before, had concluded his adventurous career by wholly retiring from +active life at the goodly age of sixty, and dedicating his remaining +days to the quiet receiving of his well-earned income. + +Now, Bildad, I am sorry to say, had the reputation of being an +incorrigible old hunks, and in his sea-going days, a bitter, hard +task-master. They told me in Nantucket, though it certainly seems a +curious story, that when he sailed the old Categut whaleman, his crew, +upon arriving home, were mostly all carried ashore to the hospital, +sore exhausted and worn out. For a pious man, especially for a Quaker, +he was certainly rather hard-hearted, to say the least. He never used +to swear, though, at his men, they said; but somehow he got an +inordinate quantity of cruel, unmitigated hard work out of them. When +Bildad was a chief-mate, to have his drab-coloured eye intently looking +at you, made you feel completely nervous, till you could clutch +something—a hammer or a marling-spike, and go to work like mad, at +something or other, never mind what. Indolence and idleness perished +before him. His own person was the exact embodiment of his utilitarian +character. On his long, gaunt body, he carried no spare flesh, no +superfluous beard, his chin having a soft, economical nap to it, like +the worn nap of his broad-brimmed hat. + +Such, then, was the person that I saw seated on the transom when I +followed Captain Peleg down into the cabin. The space between the decks +was small; and there, bolt-upright, sat old Bildad, who always sat so, +and never leaned, and this to save his coat tails. His broad-brim was +placed beside him; his legs were stiffly crossed; his drab vesture was +buttoned up to his chin; and spectacles on nose, he seemed absorbed in +reading from a ponderous volume. + +“Bildad,” cried Captain Peleg, “at it again, Bildad, eh? Ye have been +studying those Scriptures, now, for the last thirty years, to my +certain knowledge. How far ye got, Bildad?” + +As if long habituated to such profane talk from his old shipmate, +Bildad, without noticing his present irreverence, quietly looked up, +and seeing me, glanced again inquiringly towards Peleg. + +“He says he’s our man, Bildad,” said Peleg, “he wants to ship.” + +“Dost thee?” said Bildad, in a hollow tone, and turning round to me. + +“I _dost_,” said I unconsciously, he was so intense a Quaker. + +“What do ye think of him, Bildad?” said Peleg. + +“He’ll do,” said Bildad, eyeing me, and then went on spelling away at +his book in a mumbling tone quite audible. + +I thought him the queerest old Quaker I ever saw, especially as Peleg, +his friend and old shipmate, seemed such a blusterer. But I said +nothing, only looking round me sharply. Peleg now threw open a chest, +and drawing forth the ship’s articles, placed pen and ink before him, +and seated himself at a little table. I began to think it was high time +to settle with myself at what terms I would be willing to engage for +the voyage. I was already aware that in the whaling business they paid +no wages; but all hands, including the captain, received certain shares +of the profits called _lays_, and that these lays were proportioned to +the degree of importance pertaining to the respective duties of the +ship’s company. I was also aware that being a green hand at whaling, my +own lay would not be very large; but considering that I was used to the +sea, could steer a ship, splice a rope, and all that, I made no doubt +that from all I had heard I should be offered at least the 275th +lay—that is, the 275th part of the clear net proceeds of the voyage, +whatever that might eventually amount to. And though the 275th lay was +what they call a rather _long lay_, yet it was better than nothing; and +if we had a lucky voyage, might pretty nearly pay for the clothing I +would wear out on it, not to speak of my three years’ beef and board, +for which I would not have to pay one stiver. + +It might be thought that this was a poor way to accumulate a princely +fortune—and so it was, a very poor way indeed. But I am one of those +that never take on about princely fortunes, and am quite content if the +world is ready to board and lodge me, while I am putting up at this +grim sign of the Thunder Cloud. Upon the whole, I thought that the +275th lay would be about the fair thing, but would not have been +surprised had I been offered the 200th, considering I was of a +broad-shouldered make. + +But one thing, nevertheless, that made me a little distrustful about +receiving a generous share of the profits was this: Ashore, I had heard +something of both Captain Peleg and his unaccountable old crony Bildad; +how that they being the principal proprietors of the Pequod, therefore +the other and more inconsiderable and scattered owners, left nearly the +whole management of the ship’s affairs to these two. And I did not know +but what the stingy old Bildad might have a mighty deal to say about +shipping hands, especially as I now found him on board the Pequod, +quite at home there in the cabin, and reading his Bible as if at his +own fireside. Now while Peleg was vainly trying to mend a pen with his +jack-knife, old Bildad, to my no small surprise, considering that he +was such an interested party in these proceedings; Bildad never heeded +us, but went on mumbling to himself out of his book, “_Lay_ not up for +yourselves treasures upon earth, where moth—” + +“Well, Captain Bildad,” interrupted Peleg, “what d’ye say, what lay +shall we give this young man?” + +“Thou knowest best,” was the sepulchral reply, “the seven hundred and +seventy-seventh wouldn’t be too much, would it?—‘where moth and rust do +corrupt, but _lay_—’” + +_Lay_, indeed, thought I, and such a lay! the seven hundred and +seventy-seventh! Well, old Bildad, you are determined that I, for one, +shall not _lay_ up many _lays_ here below, where moth and rust do +corrupt. It was an exceedingly _long lay_ that, indeed; and though from +the magnitude of the figure it might at first deceive a landsman, yet +the slightest consideration will show that though seven hundred and +seventy-seven is a pretty large number, yet, when you come to make a +_teenth_ of it, you will then see, I say, that the seven hundred and +seventy-seventh part of a farthing is a good deal less than seven +hundred and seventy-seven gold doubloons; and so I thought at the time. + +“Why, blast your eyes, Bildad,” cried Peleg, “thou dost not want to +swindle this young man! he must have more than that.” + +“Seven hundred and seventy-seventh,” again said Bildad, without lifting +his eyes; and then went on mumbling—“for where your treasure is, there +will your heart be also.” + +“I am going to put him down for the three hundredth,” said Peleg, “do +ye hear that, Bildad! The three hundredth lay, I say.” + +Bildad laid down his book, and turning solemnly towards him said, +“Captain Peleg, thou hast a generous heart; but thou must consider the +duty thou owest to the other owners of this ship—widows and orphans, +many of them—and that if we too abundantly reward the labors of this +young man, we may be taking the bread from those widows and those +orphans. The seven hundred and seventy-seventh lay, Captain Peleg.” + +“Thou Bildad!” roared Peleg, starting up and clattering about the +cabin. “Blast ye, Captain Bildad, if I had followed thy advice in these +matters, I would afore now had a conscience to lug about that would be +heavy enough to founder the largest ship that ever sailed round Cape +Horn.” + +“Captain Peleg,” said Bildad steadily, “thy conscience may be drawing +ten inches of water, or ten fathoms, I can’t tell; but as thou art +still an impenitent man, Captain Peleg, I greatly fear lest thy +conscience be but a leaky one; and will in the end sink thee foundering +down to the fiery pit, Captain Peleg.” + +“Fiery pit! fiery pit! ye insult me, man; past all natural bearing, ye +insult me. It’s an all-fired outrage to tell any human creature that +he’s bound to hell. Flukes and flames! Bildad, say that again to me, +and start my soul-bolts, but I’ll—I’ll—yes, I’ll swallow a live goat +with all his hair and horns on. Out of the cabin, ye canting, +drab-coloured son of a wooden gun—a straight wake with ye!” + +As he thundered out this he made a rush at Bildad, but with a +marvellous oblique, sliding celerity, Bildad for that time eluded him. + +Alarmed at this terrible outburst between the two principal and +responsible owners of the ship, and feeling half a mind to give up all +idea of sailing in a vessel so questionably owned and temporarily +commanded, I stepped aside from the door to give egress to Bildad, who, +I made no doubt, was all eagerness to vanish from before the awakened +wrath of Peleg. But to my astonishment, he sat down again on the +transom very quietly, and seemed to have not the slightest intention of +withdrawing. He seemed quite used to impenitent Peleg and his ways. As +for Peleg, after letting off his rage as he had, there seemed no more +left in him, and he, too, sat down like a lamb, though he twitched a +little as if still nervously agitated. “Whew!” he whistled at last—“the +squall’s gone off to leeward, I think. Bildad, thou used to be good at +sharpening a lance, mend that pen, will ye. My jack-knife here needs +the grindstone. That’s he; thank ye, Bildad. Now then, my young man, +Ishmael’s thy name, didn’t ye say? Well then, down ye go here, Ishmael, +for the three hundredth lay.” + +“Captain Peleg,” said I, “I have a friend with me who wants to ship +too—shall I bring him down to-morrow?” + +“To be sure,” said Peleg. “Fetch him along, and we’ll look at him.” + +“What lay does he want?” groaned Bildad, glancing up from the book in +which he had again been burying himself. + +“Oh! never thee mind about that, Bildad,” said Peleg. “Has he ever +whaled it any?” turning to me. + +“Killed more whales than I can count, Captain Peleg.” + +“Well, bring him along then.” + +And, after signing the papers, off I went; nothing doubting but that I +had done a good morning’s work, and that the Pequod was the identical +ship that Yojo had provided to carry Queequeg and me round the Cape. + +But I had not proceeded far, when I began to bethink me that the +Captain with whom I was to sail yet remained unseen by me; though, +indeed, in many cases, a whale-ship will be completely fitted out, and +receive all her crew on board, ere the captain makes himself visible by +arriving to take command; for sometimes these voyages are so prolonged, +and the shore intervals at home so exceedingly brief, that if the +captain have a family, or any absorbing concernment of that sort, he +does not trouble himself much about his ship in port, but leaves her to +the owners till all is ready for sea. However, it is always as well to +have a look at him before irrevocably committing yourself into his +hands. Turning back I accosted Captain Peleg, inquiring where Captain +Ahab was to be found. + +“And what dost thou want of Captain Ahab? It’s all right enough; thou +art shipped.” + +“Yes, but I should like to see him.” + +“But I don’t think thou wilt be able to at present. I don’t know +exactly what’s the matter with him; but he keeps close inside the +house; a sort of sick, and yet he don’t look so. In fact, he ain’t +sick; but no, he isn’t well either. Any how, young man, he won’t always +see me, so I don’t suppose he will thee. He’s a queer man, Captain +Ahab—so some think—but a good one. Oh, thou’lt like him well enough; no +fear, no fear. He’s a grand, ungodly, god-like man, Captain Ahab; +doesn’t speak much; but, when he does speak, then you may well listen. +Mark ye, be forewarned; Ahab’s above the common; Ahab’s been in +colleges, as well as ’mong the cannibals; been used to deeper wonders +than the waves; fixed his fiery lance in mightier, stranger foes than +whales. His lance! aye, the keenest and the surest that out of all our +isle! Oh! he ain’t Captain Bildad; no, and he ain’t Captain Peleg; +_he’s Ahab_, boy; and Ahab of old, thou knowest, was a crowned king!” + +“And a very vile one. When that wicked king was slain, the dogs, did +they not lick his blood?” + +“Come hither to me—hither, hither,” said Peleg, with a significance in +his eye that almost startled me. “Look ye, lad; never say that on board +the Pequod. Never say it anywhere. Captain Ahab did not name himself. +’Twas a foolish, ignorant whim of his crazy, widowed mother, who died +when he was only a twelvemonth old. And yet the old squaw Tistig, at +Gayhead, said that the name would somehow prove prophetic. And, +perhaps, other fools like her may tell thee the same. I wish to warn +thee. It’s a lie. I know Captain Ahab well; I’ve sailed with him as +mate years ago; I know what he is—a good man—not a pious, good man, +like Bildad, but a swearing good man—something like me—only there’s a +good deal more of him. Aye, aye, I know that he was never very jolly; +and I know that on the passage home, he was a little out of his mind +for a spell; but it was the sharp shooting pains in his bleeding stump +that brought that about, as any one might see. I know, too, that ever +since he lost his leg last voyage by that accursed whale, he’s been a +kind of moody—desperate moody, and savage sometimes; but that will all +pass off. And once for all, let me tell thee and assure thee, young +man, it’s better to sail with a moody good captain than a laughing bad +one. So good-bye to thee—and wrong not Captain Ahab, because he happens +to have a wicked name. Besides, my boy, he has a wife—not three voyages +wedded—a sweet, resigned girl. Think of that; by that sweet girl that +old man has a child: hold ye then there can be any utter, hopeless harm +in Ahab? No, no, my lad; stricken, blasted, if he be, Ahab has his +humanities!” + +As I walked away, I was full of thoughtfulness; what had been +incidentally revealed to me of Captain Ahab, filled me with a certain +wild vagueness of painfulness concerning him. And somehow, at the time, +I felt a sympathy and a sorrow for him, but for I don’t know what, +unless it was the cruel loss of his leg. And yet I also felt a strange +awe of him; but that sort of awe, which I cannot at all describe, was +not exactly awe; I do not know what it was. But I felt it; and it did +not disincline me towards him; though I felt impatience at what seemed +like mystery in him, so imperfectly as he was known to me then. +However, my thoughts were at length carried in other directions, so +that for the present dark Ahab slipped my mind. + + +CHAPTER 17. The Ramadan. + +As Queequeg’s Ramadan, or Fasting and Humiliation, was to continue all +day, I did not choose to disturb him till towards night-fall; for I +cherish the greatest respect towards everybody’s religious obligations, +never mind how comical, and could not find it in my heart to undervalue +even a congregation of ants worshipping a toad-stool; or those other +creatures in certain parts of our earth, who with a degree of +footmanism quite unprecedented in other planets, bow down before the +torso of a deceased landed proprietor merely on account of the +inordinate possessions yet owned and rented in his name. + +I say, we good Presbyterian Christians should be charitable in these +things, and not fancy ourselves so vastly superior to other mortals, +pagans and what not, because of their half-crazy conceits on these +subjects. There was Queequeg, now, certainly entertaining the most +absurd notions about Yojo and his Ramadan;—but what of that? Queequeg +thought he knew what he was about, I suppose; he seemed to be content; +and there let him rest. All our arguing with him would not avail; let +him be, I say: and Heaven have mercy on us all—Presbyterians and Pagans +alike—for we are all somehow dreadfully cracked about the head, and +sadly need mending. + +Towards evening, when I felt assured that all his performances and +rituals must be over, I went up to his room and knocked at the door; +but no answer. I tried to open it, but it was fastened inside. +“Queequeg,” said I softly through the key-hole:—all silent. “I say, +Queequeg! why don’t you speak? It’s I—Ishmael.” But all remained still +as before. I began to grow alarmed. I had allowed him such abundant +time; I thought he might have had an apoplectic fit. I looked through +the key-hole; but the door opening into an odd corner of the room, the +key-hole prospect was but a crooked and sinister one. I could only see +part of the foot-board of the bed and a line of the wall, but nothing +more. I was surprised to behold resting against the wall the wooden +shaft of Queequeg’s harpoon, which the landlady the evening previous +had taken from him, before our mounting to the chamber. That’s strange, +thought I; but at any rate, since the harpoon stands yonder, and he +seldom or never goes abroad without it, therefore he must be inside +here, and no possible mistake. + +“Queequeg!—Queequeg!”—all still. Something must have happened. +Apoplexy! I tried to burst open the door; but it stubbornly resisted. +Running down stairs, I quickly stated my suspicions to the first person +I met—the chamber-maid. “La! la!” she cried, “I thought something must +be the matter. I went to make the bed after breakfast, and the door was +locked; and not a mouse to be heard; and it’s been just so silent ever +since. But I thought, may be, you had both gone off and locked your +baggage in for safe keeping. La! la, ma’am!—Mistress! murder! Mrs. +Hussey! apoplexy!”—and with these cries, she ran towards the kitchen, I +following. + +Mrs. Hussey soon appeared, with a mustard-pot in one hand and a +vinegar-cruet in the other, having just broken away from the occupation +of attending to the castors, and scolding her little black boy +meantime. + +“Wood-house!” cried I, “which way to it? Run for God’s sake, and fetch +something to pry open the door—the axe!—the axe! he’s had a stroke; +depend upon it!”—and so saying I was unmethodically rushing up stairs +again empty-handed, when Mrs. Hussey interposed the mustard-pot and +vinegar-cruet, and the entire castor of her countenance. + +“What’s the matter with you, young man?” + +“Get the axe! For God’s sake, run for the doctor, some one, while I pry +it open!” + +“Look here,” said the landlady, quickly putting down the vinegar-cruet, +so as to have one hand free; “look here; are you talking about prying +open any of my doors?”—and with that she seized my arm. “What’s the +matter with you? What’s the matter with you, shipmate?” + +In as calm, but rapid a manner as possible, I gave her to understand +the whole case. Unconsciously clapping the vinegar-cruet to one side of +her nose, she ruminated for an instant; then exclaimed—“No! I haven’t +seen it since I put it there.” Running to a little closet under the +landing of the stairs, she glanced in, and returning, told me that +Queequeg’s harpoon was missing. “He’s killed himself,” she cried. “It’s +unfort’nate Stiggs done over again—there goes another counterpane—God +pity his poor mother!—it will be the ruin of my house. Has the poor lad +a sister? Where’s that girl?—there, Betty, go to Snarles the Painter, +and tell him to paint me a sign, with—“no suicides permitted here, and +no smoking in the parlor;”—might as well kill both birds at once. Kill? +The Lord be merciful to his ghost! What’s that noise there? You, young +man, avast there!” + +And running up after me, she caught me as I was again trying to force +open the door. + +“I don’t allow it; I won’t have my premises spoiled. Go for the +locksmith, there’s one about a mile from here. But avast!” putting her +hand in her side-pocket, “here’s a key that’ll fit, I guess; let’s +see.” And with that, she turned it in the lock; but, alas! Queequeg’s +supplemental bolt remained unwithdrawn within. + +“Have to burst it open,” said I, and was running down the entry a +little, for a good start, when the landlady caught at me, again vowing +I should not break down her premises; but I tore from her, and with a +sudden bodily rush dashed myself full against the mark. + +With a prodigious noise the door flew open, and the knob slamming +against the wall, sent the plaster to the ceiling; and there, good +heavens! there sat Queequeg, altogether cool and self-collected; right +in the middle of the room; squatting on his hams, and holding Yojo on +top of his head. He looked neither one way nor the other way, but sat +like a carved image with scarce a sign of active life. + +“Queequeg,” said I, going up to him, “Queequeg, what’s the matter with +you?” + +“He hain’t been a sittin’ so all day, has he?” said the landlady. + +But all we said, not a word could we drag out of him; I almost felt +like pushing him over, so as to change his position, for it was almost +intolerable, it seemed so painfully and unnaturally constrained; +especially, as in all probability he had been sitting so for upwards of +eight or ten hours, going too without his regular meals. + +“Mrs. Hussey,” said I, “he’s _alive_ at all events; so leave us, if you +please, and I will see to this strange affair myself.” + +Closing the door upon the landlady, I endeavored to prevail upon +Queequeg to take a chair; but in vain. There he sat; and all he could +do—for all my polite arts and blandishments—he would not move a peg, +nor say a single word, nor even look at me, nor notice my presence in +the slightest way. + +I wonder, thought I, if this can possibly be a part of his Ramadan; do +they fast on their hams that way in his native island. It must be so; +yes, it’s part of his creed, I suppose; well, then, let him rest; he’ll +get up sooner or later, no doubt. It can’t last for ever, thank God, +and his Ramadan only comes once a year; and I don’t believe it’s very +punctual then. + +I went down to supper. After sitting a long time listening to the long +stories of some sailors who had just come from a plum-pudding voyage, +as they called it (that is, a short whaling-voyage in a schooner or +brig, confined to the north of the line, in the Atlantic Ocean only); +after listening to these plum-puddingers till nearly eleven o’clock, I +went up stairs to go to bed, feeling quite sure by this time Queequeg +must certainly have brought his Ramadan to a termination. But no; there +he was just where I had left him; he had not stirred an inch. I began +to grow vexed with him; it seemed so downright senseless and insane to +be sitting there all day and half the night on his hams in a cold room, +holding a piece of wood on his head. + +“For heaven’s sake, Queequeg, get up and shake yourself; get up and +have some supper. You’ll starve; you’ll kill yourself, Queequeg.” But +not a word did he reply. + +Despairing of him, therefore, I determined to go to bed and to sleep; +and no doubt, before a great while, he would follow me. But previous to +turning in, I took my heavy bearskin jacket, and threw it over him, as +it promised to be a very cold night; and he had nothing but his +ordinary round jacket on. For some time, do all I would, I could not +get into the faintest doze. I had blown out the candle; and the mere +thought of Queequeg—not four feet off—sitting there in that uneasy +position, stark alone in the cold and dark; this made me really +wretched. Think of it; sleeping all night in the same room with a wide +awake pagan on his hams in this dreary, unaccountable Ramadan! + +But somehow I dropped off at last, and knew nothing more till break of +day; when, looking over the bedside, there squatted Queequeg, as if he +had been screwed down to the floor. But as soon as the first glimpse of +sun entered the window, up he got, with stiff and grating joints, but +with a cheerful look; limped towards me where I lay; pressed his +forehead again against mine; and said his Ramadan was over. + +Now, as I before hinted, I have no objection to any person’s religion, +be it what it may, so long as that person does not kill or insult any +other person, because that other person don’t believe it also. But when +a man’s religion becomes really frantic; when it is a positive torment +to him; and, in fine, makes this earth of ours an uncomfortable inn to +lodge in; then I think it high time to take that individual aside and +argue the point with him. + +And just so I now did with Queequeg. “Queequeg,” said I, “get into bed +now, and lie and listen to me.” I then went on, beginning with the rise +and progress of the primitive religions, and coming down to the various +religions of the present time, during which time I labored to show +Queequeg that all these Lents, Ramadans, and prolonged ham-squattings +in cold, cheerless rooms were stark nonsense; bad for the health; +useless for the soul; opposed, in short, to the obvious laws of Hygiene +and common sense. I told him, too, that he being in other things such +an extremely sensible and sagacious savage, it pained me, very badly +pained me, to see him now so deplorably foolish about this ridiculous +Ramadan of his. Besides, argued I, fasting makes the body cave in; +hence the spirit caves in; and all thoughts born of a fast must +necessarily be half-starved. This is the reason why most dyspeptic +religionists cherish such melancholy notions about their hereafters. In +one word, Queequeg, said I, rather digressively; hell is an idea first +born on an undigested apple-dumpling; and since then perpetuated +through the hereditary dyspepsias nurtured by Ramadans. + +I then asked Queequeg whether he himself was ever troubled with +dyspepsia; expressing the idea very plainly, so that he could take it +in. He said no; only upon one memorable occasion. It was after a great +feast given by his father the king, on the gaining of a great battle +wherein fifty of the enemy had been killed by about two o’clock in the +afternoon, and all cooked and eaten that very evening. + +“No more, Queequeg,” said I, shuddering; “that will do;” for I knew the +inferences without his further hinting them. I had seen a sailor who +had visited that very island, and he told me that it was the custom, +when a great battle had been gained there, to barbecue all the slain in +the yard or garden of the victor; and then, one by one, they were +placed in great wooden trenchers, and garnished round like a pilau, +with breadfruit and cocoanuts; and with some parsley in their mouths, +were sent round with the victor’s compliments to all his friends, just +as though these presents were so many Christmas turkeys. + +After all, I do not think that my remarks about religion made much +impression upon Queequeg. Because, in the first place, he somehow +seemed dull of hearing on that important subject, unless considered +from his own point of view; and, in the second place, he did not more +than one third understand me, couch my ideas simply as I would; and, +finally, he no doubt thought he knew a good deal more about the true +religion than I did. He looked at me with a sort of condescending +concern and compassion, as though he thought it a great pity that such +a sensible young man should be so hopelessly lost to evangelical pagan +piety. + +At last we rose and dressed; and Queequeg, taking a prodigiously hearty +breakfast of chowders of all sorts, so that the landlady should not +make much profit by reason of his Ramadan, we sallied out to board the +Pequod, sauntering along, and picking our teeth with halibut bones. + + +CHAPTER 18. His Mark. + +As we were walking down the end of the wharf towards the ship, Queequeg +carrying his harpoon, Captain Peleg in his gruff voice loudly hailed us +from his wigwam, saying he had not suspected my friend was a cannibal, +and furthermore announcing that he let no cannibals on board that +craft, unless they previously produced their papers. + +“What do you mean by that, Captain Peleg?” said I, now jumping on the +bulwarks, and leaving my comrade standing on the wharf. + +“I mean,” he replied, “he must show his papers.” + +“Yes,” said Captain Bildad in his hollow voice, sticking his head from +behind Peleg’s, out of the wigwam. “He must show that he’s converted. +Son of darkness,” he added, turning to Queequeg, “art thou at present +in communion with any Christian church?” + +“Why,” said I, “he’s a member of the first Congregational Church.” Here +be it said, that many tattooed savages sailing in Nantucket ships at +last come to be converted into the churches. + +“First Congregational Church,” cried Bildad, “what! that worships in +Deacon Deuteronomy Coleman’s meeting-house?” and so saying, taking out +his spectacles, he rubbed them with his great yellow bandana +handkerchief, and putting them on very carefully, came out of the +wigwam, and leaning stiffly over the bulwarks, took a good long look at +Queequeg. + +“How long hath he been a member?” he then said, turning to me; “not +very long, I rather guess, young man.” + +“No,” said Peleg, “and he hasn’t been baptized right either, or it +would have washed some of that devil’s blue off his face.” + +“Do tell, now,” cried Bildad, “is this Philistine a regular member of +Deacon Deuteronomy’s meeting? I never saw him going there, and I pass +it every Lord’s day.” + +“I don’t know anything about Deacon Deuteronomy or his meeting,” said +I; “all I know is, that Queequeg here is a born member of the First +Congregational Church. He is a deacon himself, Queequeg is.” + +“Young man,” said Bildad sternly, “thou art skylarking with me—explain +thyself, thou young Hittite. What church dost thee mean? answer me.” + +Finding myself thus hard pushed, I replied. “I mean, sir, the same +ancient Catholic Church to which you and I, and Captain Peleg there, +and Queequeg here, and all of us, and every mother’s son and soul of us +belong; the great and everlasting First Congregation of this whole +worshipping world; we all belong to that; only some of us cherish some +queer crotchets no ways touching the grand belief; in _that_ we all +join hands.” + +“Splice, thou mean’st _splice_ hands,” cried Peleg, drawing nearer. +“Young man, you’d better ship for a missionary, instead of a fore-mast +hand; I never heard a better sermon. Deacon Deuteronomy—why Father +Mapple himself couldn’t beat it, and he’s reckoned something. Come +aboard, come aboard; never mind about the papers. I say, tell Quohog +there—what’s that you call him? tell Quohog to step along. By the great +anchor, what a harpoon he’s got there! looks like good stuff that; and +he handles it about right. I say, Quohog, or whatever your name is, did +you ever stand in the head of a whale-boat? did you ever strike a +fish?” + +Without saying a word, Queequeg, in his wild sort of way, jumped upon +the bulwarks, from thence into the bows of one of the whale-boats +hanging to the side; and then bracing his left knee, and poising his +harpoon, cried out in some such way as this:— + +“Cap’ain, you see him small drop tar on water dere? You see him? well, +spose him one whale eye, well, den!” and taking sharp aim at it, he +darted the iron right over old Bildad’s broad brim, clean across the +ship’s decks, and struck the glistening tar spot out of sight. + +“Now,” said Queequeg, quietly hauling in the line, “spos-ee him whale-e +eye; why, dad whale dead.” + +“Quick, Bildad,” said Peleg, his partner, who, aghast at the close +vicinity of the flying harpoon, had retreated towards the cabin +gangway. “Quick, I say, you Bildad, and get the ship’s papers. We must +have Hedgehog there, I mean Quohog, in one of our boats. Look ye, +Quohog, we’ll give ye the ninetieth lay, and that’s more than ever was +given a harpooneer yet out of Nantucket.” + +So down we went into the cabin, and to my great joy Queequeg was soon +enrolled among the same ship’s company to which I myself belonged. + +When all preliminaries were over and Peleg had got everything ready for +signing, he turned to me and said, “I guess, Quohog there don’t know +how to write, does he? I say, Quohog, blast ye! dost thou sign thy name +or make thy mark?” + +But at this question, Queequeg, who had twice or thrice before taken +part in similar ceremonies, looked no ways abashed; but taking the +offered pen, copied upon the paper, in the proper place, an exact +counterpart of a queer round figure which was tattooed upon his arm; so +that through Captain Peleg’s obstinate mistake touching his +appellative, it stood something like this:— + +Quohog. his X mark. + +Meanwhile Captain Bildad sat earnestly and steadfastly eyeing Queequeg, +and at last rising solemnly and fumbling in the huge pockets of his +broad-skirted drab coat, took out a bundle of tracts, and selecting one +entitled “The Latter Day Coming; or No Time to Lose,” placed it in +Queequeg’s hands, and then grasping them and the book with both his, +looked earnestly into his eyes, and said, “Son of darkness, I must do +my duty by thee; I am part owner of this ship, and feel concerned for +the souls of all its crew; if thou still clingest to thy Pagan ways, +which I sadly fear, I beseech thee, remain not for aye a Belial +bondsman. Spurn the idol Bell, and the hideous dragon; turn from the +wrath to come; mind thine eye, I say; oh! goodness gracious! steer +clear of the fiery pit!” + +Something of the salt sea yet lingered in old Bildad’s language, +heterogeneously mixed with Scriptural and domestic phrases. + +“Avast there, avast there, Bildad, avast now spoiling our harpooneer,” +cried Peleg. “Pious harpooneers never make good voyagers—it takes the +shark out of ’em; no harpooneer is worth a straw who aint pretty +sharkish. There was young Nat Swaine, once the bravest boat-header out +of all Nantucket and the Vineyard; he joined the meeting, and never +came to good. He got so frightened about his plaguy soul, that he +shrinked and sheered away from whales, for fear of after-claps, in case +he got stove and went to Davy Jones.” + +“Peleg! Peleg!” said Bildad, lifting his eyes and hands, “thou thyself, +as I myself, hast seen many a perilous time; thou knowest, Peleg, what +it is to have the fear of death; how, then, can’st thou prate in this +ungodly guise. Thou beliest thine own heart, Peleg. Tell me, when this +same Pequod here had her three masts overboard in that typhoon on +Japan, that same voyage when thou went mate with Captain Ahab, did’st +thou not think of Death and the Judgment then?” + +“Hear him, hear him now,” cried Peleg, marching across the cabin, and +thrusting his hands far down into his pockets,—“hear him, all of ye. +Think of that! When every moment we thought the ship would sink! Death +and the Judgment then? What? With all three masts making such an +everlasting thundering against the side; and every sea breaking over +us, fore and aft. Think of Death and the Judgment then? No! no time to +think about Death then. Life was what Captain Ahab and I was thinking +of; and how to save all hands—how to rig jury-masts—how to get into the +nearest port; that was what I was thinking of.” + +Bildad said no more, but buttoning up his coat, stalked on deck, where +we followed him. There he stood, very quietly overlooking some +sailmakers who were mending a top-sail in the waist. Now and then he +stooped to pick up a patch, or save an end of tarred twine, which +otherwise might have been wasted. + + +CHAPTER 19. The Prophet. + +“Shipmates, have ye shipped in that ship?” + +Queequeg and I had just left the Pequod, and were sauntering away from +the water, for the moment each occupied with his own thoughts, when the +above words were put to us by a stranger, who, pausing before us, +levelled his massive forefinger at the vessel in question. He was but +shabbily apparelled in faded jacket and patched trowsers; a rag of a +black handkerchief investing his neck. A confluent small-pox had in all +directions flowed over his face, and left it like the complicated +ribbed bed of a torrent, when the rushing waters have been dried up. + +“Have ye shipped in her?” he repeated. + +“You mean the ship Pequod, I suppose,” said I, trying to gain a little +more time for an uninterrupted look at him. + +“Aye, the Pequod—that ship there,” he said, drawing back his whole arm, +and then rapidly shoving it straight out from him, with the fixed +bayonet of his pointed finger darted full at the object. + +“Yes,” said I, “we have just signed the articles.” + +“Anything down there about your souls?” + +“About what?” + +“Oh, perhaps you hav’n’t got any,” he said quickly. “No matter though, +I know many chaps that hav’n’t got any,—good luck to ’em; and they are +all the better off for it. A soul’s a sort of a fifth wheel to a +wagon.” + +“What are you jabbering about, shipmate?” said I. + +“_He’s_ got enough, though, to make up for all deficiencies of that +sort in other chaps,” abruptly said the stranger, placing a nervous +emphasis upon the word _he_. + +“Queequeg,” said I, “let’s go; this fellow has broken loose from +somewhere; he’s talking about something and somebody we don’t know.” + +“Stop!” cried the stranger. “Ye said true—ye hav’n’t seen Old Thunder +yet, have ye?” + +“Who’s Old Thunder?” said I, again riveted with the insane earnestness +of his manner. + +“Captain Ahab.” + +“What! the captain of our ship, the Pequod?” + +“Aye, among some of us old sailor chaps, he goes by that name. Ye +hav’n’t seen him yet, have ye?” + +“No, we hav’n’t. He’s sick they say, but is getting better, and will be +all right again before long.” + +“All right again before long!” laughed the stranger, with a solemnly +derisive sort of laugh. “Look ye; when Captain Ahab is all right, then +this left arm of mine will be all right; not before.” + +“What do you know about him?” + +“What did they _tell_ you about him? Say that!” + +“They didn’t tell much of anything about him; only I’ve heard that he’s +a good whale-hunter, and a good captain to his crew.” + +“That’s true, that’s true—yes, both true enough. But you must jump when +he gives an order. Step and growl; growl and go—that’s the word with +Captain Ahab. But nothing about that thing that happened to him off +Cape Horn, long ago, when he lay like dead for three days and nights; +nothing about that deadly skrimmage with the Spaniard afore the altar +in Santa?—heard nothing about that, eh? Nothing about the silver +calabash he spat into? And nothing about his losing his leg last +voyage, according to the prophecy. Didn’t ye hear a word about them +matters and something more, eh? No, I don’t think ye did; how could ye? +Who knows it? Not all Nantucket, I guess. But hows’ever, mayhap, ye’ve +heard tell about the leg, and how he lost it; aye, ye have heard of +that, I dare say. Oh yes, _that_ every one knows a’most—I mean they +know he’s only one leg; and that a parmacetti took the other off.” + +“My friend,” said I, “what all this gibberish of yours is about, I +don’t know, and I don’t much care; for it seems to me that you must be +a little damaged in the head. But if you are speaking of Captain Ahab, +of that ship there, the Pequod, then let me tell you, that I know all +about the loss of his leg.” + +“_All_ about it, eh—sure you do?—all?” + +“Pretty sure.” + +With finger pointed and eye levelled at the Pequod, the beggar-like +stranger stood a moment, as if in a troubled reverie; then starting a +little, turned and said:—“Ye’ve shipped, have ye? Names down on the +papers? Well, well, what’s signed, is signed; and what’s to be, will +be; and then again, perhaps it won’t be, after all. Anyhow, it’s all +fixed and arranged a’ready; and some sailors or other must go with him, +I suppose; as well these as any other men, God pity ’em! Morning to ye, +shipmates, morning; the ineffable heavens bless ye; I’m sorry I stopped +ye.” + +“Look here, friend,” said I, “if you have anything important to tell +us, out with it; but if you are only trying to bamboozle us, you are +mistaken in your game; that’s all I have to say.” + +“And it’s said very well, and I like to hear a chap talk up that way; +you are just the man for him—the likes of ye. Morning to ye, shipmates, +morning! Oh! when ye get there, tell ’em I’ve concluded not to make one +of ’em.” + +“Ah, my dear fellow, you can’t fool us that way—you can’t fool us. It +is the easiest thing in the world for a man to look as if he had a +great secret in him.” + +“Morning to ye, shipmates, morning.” + +“Morning it is,” said I. “Come along, Queequeg, let’s leave this crazy +man. But stop, tell me your name, will you?” + +“Elijah.” + +Elijah! thought I, and we walked away, both commenting, after each +other’s fashion, upon this ragged old sailor; and agreed that he was +nothing but a humbug, trying to be a bugbear. But we had not gone +perhaps above a hundred yards, when chancing to turn a corner, and +looking back as I did so, who should be seen but Elijah following us, +though at a distance. Somehow, the sight of him struck me so, that I +said nothing to Queequeg of his being behind, but passed on with my +comrade, anxious to see whether the stranger would turn the same corner +that we did. He did; and then it seemed to me that he was dogging us, +but with what intent I could not for the life of me imagine. This +circumstance, coupled with his ambiguous, half-hinting, half-revealing, +shrouded sort of talk, now begat in me all kinds of vague wonderments +and half-apprehensions, and all connected with the Pequod; and Captain +Ahab; and the leg he had lost; and the Cape Horn fit; and the silver +calabash; and what Captain Peleg had said of him, when I left the ship +the day previous; and the prediction of the squaw Tistig; and the +voyage we had bound ourselves to sail; and a hundred other shadowy +things. + +I was resolved to satisfy myself whether this ragged Elijah was really +dogging us or not, and with that intent crossed the way with Queequeg, +and on that side of it retraced our steps. But Elijah passed on, +without seeming to notice us. This relieved me; and once more, and +finally as it seemed to me, I pronounced him in my heart, a humbug. + + +CHAPTER 20. All Astir. + +A day or two passed, and there was great activity aboard the Pequod. +Not only were the old sails being mended, but new sails were coming on +board, and bolts of canvas, and coils of rigging; in short, everything +betokened that the ship’s preparations were hurrying to a close. +Captain Peleg seldom or never went ashore, but sat in his wigwam +keeping a sharp look-out upon the hands: Bildad did all the purchasing +and providing at the stores; and the men employed in the hold and on +the rigging were working till long after night-fall. + +On the day following Queequeg’s signing the articles, word was given at +all the inns where the ship’s company were stopping, that their chests +must be on board before night, for there was no telling how soon the +vessel might be sailing. So Queequeg and I got down our traps, +resolving, however, to sleep ashore till the last. But it seems they +always give very long notice in these cases, and the ship did not sail +for several days. But no wonder; there was a good deal to be done, and +there is no telling how many things to be thought of, before the Pequod +was fully equipped. + +Every one knows what a multitude of things—beds, sauce-pans, knives and +forks, shovels and tongs, napkins, nut-crackers, and what not, are +indispensable to the business of housekeeping. Just so with whaling, +which necessitates a three-years’ housekeeping upon the wide ocean, far +from all grocers, costermongers, doctors, bakers, and bankers. And +though this also holds true of merchant vessels, yet not by any means +to the same extent as with whalemen. For besides the great length of +the whaling voyage, the numerous articles peculiar to the prosecution +of the fishery, and the impossibility of replacing them at the remote +harbors usually frequented, it must be remembered, that of all ships, +whaling vessels are the most exposed to accidents of all kinds, and +especially to the destruction and loss of the very things upon which +the success of the voyage most depends. Hence, the spare boats, spare +spars, and spare lines and harpoons, and spare everythings, almost, but +a spare Captain and duplicate ship. + +At the period of our arrival at the Island, the heaviest storage of the +Pequod had been almost completed; comprising her beef, bread, water, +fuel, and iron hoops and staves. But, as before hinted, for some time +there was a continual fetching and carrying on board of divers odds and +ends of things, both large and small. + +Chief among those who did this fetching and carrying was Captain +Bildad’s sister, a lean old lady of a most determined and indefatigable +spirit, but withal very kindhearted, who seemed resolved that, if _she_ +could help it, nothing should be found wanting in the Pequod, after +once fairly getting to sea. At one time she would come on board with a +jar of pickles for the steward’s pantry; another time with a bunch of +quills for the chief mate’s desk, where he kept his log; a third time +with a roll of flannel for the small of some one’s rheumatic back. +Never did any woman better deserve her name, which was Charity—Aunt +Charity, as everybody called her. And like a sister of charity did this +charitable Aunt Charity bustle about hither and thither, ready to turn +her hand and heart to anything that promised to yield safety, comfort, +and consolation to all on board a ship in which her beloved brother +Bildad was concerned, and in which she herself owned a score or two of +well-saved dollars. + +But it was startling to see this excellent hearted Quakeress coming on +board, as she did the last day, with a long oil-ladle in one hand, and +a still longer whaling lance in the other. Nor was Bildad himself nor +Captain Peleg at all backward. As for Bildad, he carried about with him +a long list of the articles needed, and at every fresh arrival, down +went his mark opposite that article upon the paper. Every once in a +while Peleg came hobbling out of his whalebone den, roaring at the men +down the hatchways, roaring up to the riggers at the mast-head, and +then concluded by roaring back into his wigwam. + +During these days of preparation, Queequeg and I often visited the +craft, and as often I asked about Captain Ahab, and how he was, and +when he was going to come on board his ship. To these questions they +would answer, that he was getting better and better, and was expected +aboard every day; meantime, the two captains, Peleg and Bildad, could +attend to everything necessary to fit the vessel for the voyage. If I +had been downright honest with myself, I would have seen very plainly +in my heart that I did but half fancy being committed this way to so +long a voyage, without once laying my eyes on the man who was to be the +absolute dictator of it, so soon as the ship sailed out upon the open +sea. But when a man suspects any wrong, it sometimes happens that if he +be already involved in the matter, he insensibly strives to cover up +his suspicions even from himself. And much this way it was with me. I +said nothing, and tried to think nothing. + +At last it was given out that some time next day the ship would +certainly sail. So next morning, Queequeg and I took a very early +start. + + +CHAPTER 21. Going Aboard. + +It was nearly six o’clock, but only grey imperfect misty dawn, when we +drew nigh the wharf. + +“There are some sailors running ahead there, if I see right,” said I to +Queequeg, “it can’t be shadows; she’s off by sunrise, I guess; come +on!” + +“Avast!” cried a voice, whose owner at the same time coming close +behind us, laid a hand upon both our shoulders, and then insinuating +himself between us, stood stooping forward a little, in the uncertain +twilight, strangely peering from Queequeg to me. It was Elijah. + +“Going aboard?” + +“Hands off, will you,” said I. + +“Lookee here,” said Queequeg, shaking himself, “go ’way!” + +“Ain’t going aboard, then?” + +“Yes, we are,” said I, “but what business is that of yours? Do you +know, Mr. Elijah, that I consider you a little impertinent?” + +“No, no, no; I wasn’t aware of that,” said Elijah, slowly and +wonderingly looking from me to Queequeg, with the most unaccountable +glances. + +“Elijah,” said I, “you will oblige my friend and me by withdrawing. We +are going to the Indian and Pacific Oceans, and would prefer not to be +detained.” + +“Ye be, be ye? Coming back afore breakfast?” + +“He’s cracked, Queequeg,” said I, “come on.” + +“Holloa!” cried stationary Elijah, hailing us when we had removed a few +paces. + +“Never mind him,” said I, “Queequeg, come on.” + +But he stole up to us again, and suddenly clapping his hand on my +shoulder, said—“Did ye see anything looking like men going towards that +ship a while ago?” + +Struck by this plain matter-of-fact question, I answered, saying, “Yes, +I thought I did see four or five men; but it was too dim to be sure.” + +“Very dim, very dim,” said Elijah. “Morning to ye.” + +Once more we quitted him; but once more he came softly after us; and +touching my shoulder again, said, “See if you can find ’em now, will +ye? + +“Find who?” + +“Morning to ye! morning to ye!” he rejoined, again moving off. “Oh! I +was going to warn ye against—but never mind, never mind—it’s all one, +all in the family too;—sharp frost this morning, ain’t it? Good-bye to +ye. Shan’t see ye again very soon, I guess; unless it’s before the +Grand Jury.” And with these cracked words he finally departed, leaving +me, for the moment, in no small wonderment at his frantic impudence. + +At last, stepping on board the Pequod, we found everything in profound +quiet, not a soul moving. The cabin entrance was locked within; the +hatches were all on, and lumbered with coils of rigging. Going forward +to the forecastle, we found the slide of the scuttle open. Seeing a +light, we went down, and found only an old rigger there, wrapped in a +tattered pea-jacket. He was thrown at whole length upon two chests, his +face downwards and inclosed in his folded arms. The profoundest slumber +slept upon him. + +“Those sailors we saw, Queequeg, where can they have gone to?” said I, +looking dubiously at the sleeper. But it seemed that, when on the +wharf, Queequeg had not at all noticed what I now alluded to; hence I +would have thought myself to have been optically deceived in that +matter, were it not for Elijah’s otherwise inexplicable question. But I +beat the thing down; and again marking the sleeper, jocularly hinted to +Queequeg that perhaps we had best sit up with the body; telling him to +establish himself accordingly. He put his hand upon the sleeper’s rear, +as though feeling if it was soft enough; and then, without more ado, +sat quietly down there. + +“Gracious! Queequeg, don’t sit there,” said I. + +“Oh! perry dood seat,” said Queequeg, “my country way; won’t hurt him +face.” + +“Face!” said I, “call that his face? very benevolent countenance then; +but how hard he breathes, he’s heaving himself; get off, Queequeg, you +are heavy, it’s grinding the face of the poor. Get off, Queequeg! Look, +he’ll twitch you off soon. I wonder he don’t wake.” + +Queequeg removed himself to just beyond the head of the sleeper, and +lighted his tomahawk pipe. I sat at the feet. We kept the pipe passing +over the sleeper, from one to the other. Meanwhile, upon questioning +him in his broken fashion, Queequeg gave me to understand that, in his +land, owing to the absence of settees and sofas of all sorts, the king, +chiefs, and great people generally, were in the custom of fattening +some of the lower orders for ottomans; and to furnish a house +comfortably in that respect, you had only to buy up eight or ten lazy +fellows, and lay them round in the piers and alcoves. Besides, it was +very convenient on an excursion; much better than those garden-chairs +which are convertible into walking-sticks; upon occasion, a chief +calling his attendant, and desiring him to make a settee of himself +under a spreading tree, perhaps in some damp marshy place. + +While narrating these things, every time Queequeg received the tomahawk +from me, he flourished the hatchet-side of it over the sleeper’s head. + +“What’s that for, Queequeg?” + +“Perry easy, kill-e; oh! perry easy!” + +He was going on with some wild reminiscences about his tomahawk-pipe, +which, it seemed, had in its two uses both brained his foes and soothed +his soul, when we were directly attracted to the sleeping rigger. The +strong vapor now completely filling the contracted hole, it began to +tell upon him. He breathed with a sort of muffledness; then seemed +troubled in the nose; then revolved over once or twice; then sat up and +rubbed his eyes. + +“Holloa!” he breathed at last, “who be ye smokers?” + +“Shipped men,” answered I, “when does she sail?” + +“Aye, aye, ye are going in her, be ye? She sails to-day. The Captain +came aboard last night.” + +“What Captain?—Ahab?” + +“Who but him indeed?” + +I was going to ask him some further questions concerning Ahab, when we +heard a noise on deck. + +“Holloa! Starbuck’s astir,” said the rigger. “He’s a lively chief mate, +that; good man, and a pious; but all alive now, I must turn to.” And so +saying he went on deck, and we followed. + +It was now clear sunrise. Soon the crew came on board in twos and +threes; the riggers bestirred themselves; the mates were actively +engaged; and several of the shore people were busy in bringing various +last things on board. Meanwhile Captain Ahab remained invisibly +enshrined within his cabin. + + +CHAPTER 22. Merry Christmas. + +At length, towards noon, upon the final dismissal of the ship’s +riggers, and after the Pequod had been hauled out from the wharf, and +after the ever-thoughtful Charity had come off in a whale-boat, with +her last gift—a night-cap for Stubb, the second mate, her +brother-in-law, and a spare Bible for the steward—after all this, the +two Captains, Peleg and Bildad, issued from the cabin, and turning to +the chief mate, Peleg said: + +“Now, Mr. Starbuck, are you sure everything is right? Captain Ahab is +all ready—just spoke to him—nothing more to be got from shore, eh? +Well, call all hands, then. Muster ’em aft here—blast ’em!” + +“No need of profane words, however great the hurry, Peleg,” said +Bildad, “but away with thee, friend Starbuck, and do our bidding.” + +How now! Here upon the very point of starting for the voyage, Captain +Peleg and Captain Bildad were going it with a high hand on the +quarter-deck, just as if they were to be joint-commanders at sea, as +well as to all appearances in port. And, as for Captain Ahab, no sign +of him was yet to be seen; only, they said he was in the cabin. But +then, the idea was, that his presence was by no means necessary in +getting the ship under weigh, and steering her well out to sea. Indeed, +as that was not at all his proper business, but the pilot’s; and as he +was not yet completely recovered—so they said—therefore, Captain Ahab +stayed below. And all this seemed natural enough; especially as in the +merchant service many captains never show themselves on deck for a +considerable time after heaving up the anchor, but remain over the +cabin table, having a farewell merry-making with their shore friends, +before they quit the ship for good with the pilot. + +But there was not much chance to think over the matter, for Captain +Peleg was now all alive. He seemed to do most of the talking and +commanding, and not Bildad. + +“Aft here, ye sons of bachelors,” he cried, as the sailors lingered at +the main-mast. “Mr. Starbuck, drive ’em aft.” + +“Strike the tent there!”—was the next order. As I hinted before, this +whalebone marquee was never pitched except in port; and on board the +Pequod, for thirty years, the order to strike the tent was well known +to be the next thing to heaving up the anchor. + +“Man the capstan! Blood and thunder!—jump!”—was the next command, and +the crew sprang for the handspikes. + +Now in getting under weigh, the station generally occupied by the pilot +is the forward part of the ship. And here Bildad, who, with Peleg, be +it known, in addition to his other officers, was one of the licensed +pilots of the port—he being suspected to have got himself made a pilot +in order to save the Nantucket pilot-fee to all the ships he was +concerned in, for he never piloted any other craft—Bildad, I say, might +now be seen actively engaged in looking over the bows for the +approaching anchor, and at intervals singing what seemed a dismal stave +of psalmody, to cheer the hands at the windlass, who roared forth some +sort of a chorus about the girls in Booble Alley, with hearty good +will. Nevertheless, not three days previous, Bildad had told them that +no profane songs would be allowed on board the Pequod, particularly in +getting under weigh; and Charity, his sister, had placed a small choice +copy of Watts in each seaman’s berth. + +Meantime, overseeing the other part of the ship, Captain Peleg ripped +and swore astern in the most frightful manner. I almost thought he +would sink the ship before the anchor could be got up; involuntarily I +paused on my handspike, and told Queequeg to do the same, thinking of +the perils we both ran, in starting on the voyage with such a devil for +a pilot. I was comforting myself, however, with the thought that in +pious Bildad might be found some salvation, spite of his seven hundred +and seventy-seventh lay; when I felt a sudden sharp poke in my rear, +and turning round, was horrified at the apparition of Captain Peleg in +the act of withdrawing his leg from my immediate vicinity. That was my +first kick. + +“Is that the way they heave in the marchant service?” he roared. +“Spring, thou sheep-head; spring, and break thy backbone! Why don’t ye +spring, I say, all of ye—spring! Quohog! spring, thou chap with the red +whiskers; spring there, Scotch-cap; spring, thou green pants. Spring, I +say, all of ye, and spring your eyes out!” And so saying, he moved +along the windlass, here and there using his leg very freely, while +imperturbable Bildad kept leading off with his psalmody. Thinks I, +Captain Peleg must have been drinking something to-day. + +At last the anchor was up, the sails were set, and off we glided. It +was a short, cold Christmas; and as the short northern day merged into +night, we found ourselves almost broad upon the wintry ocean, whose +freezing spray cased us in ice, as in polished armor. The long rows of +teeth on the bulwarks glistened in the moonlight; and like the white +ivory tusks of some huge elephant, vast curving icicles depended from +the bows. + +Lank Bildad, as pilot, headed the first watch, and ever and anon, as +the old craft deep dived into the green seas, and sent the shivering +frost all over her, and the winds howled, and the cordage rang, his +steady notes were heard,— + + +_“Sweet fields beyond the swelling flood, Stand dressed in living +green. So to the Jews old Canaan stood, While Jordan rolled between.”_ + + + +Never did those sweet words sound more sweetly to me than then. They +were full of hope and fruition. Spite of this frigid winter night in +the boisterous Atlantic, spite of my wet feet and wetter jacket, there +was yet, it then seemed to me, many a pleasant haven in store; and +meads and glades so eternally vernal, that the grass shot up by the +spring, untrodden, unwilted, remains at midsummer. + +At last we gained such an offing, that the two pilots were needed no +longer. The stout sail-boat that had accompanied us began ranging +alongside. + +It was curious and not unpleasing, how Peleg and Bildad were affected +at this juncture, especially Captain Bildad. For loath to depart, yet; +very loath to leave, for good, a ship bound on so long and perilous a +voyage—beyond both stormy Capes; a ship in which some thousands of his +hard earned dollars were invested; a ship, in which an old shipmate +sailed as captain; a man almost as old as he, once more starting to +encounter all the terrors of the pitiless jaw; loath to say good-bye to +a thing so every way brimful of every interest to him,—poor old Bildad +lingered long; paced the deck with anxious strides; ran down into the +cabin to speak another farewell word there; again came on deck, and +looked to windward; looked towards the wide and endless waters, only +bounded by the far-off unseen Eastern Continents; looked towards the +land; looked aloft; looked right and left; looked everywhere and +nowhere; and at last, mechanically coiling a rope upon its pin, +convulsively grasped stout Peleg by the hand, and holding up a lantern, +for a moment stood gazing heroically in his face, as much as to say, +“Nevertheless, friend Peleg, I can stand it; yes, I can.” + +As for Peleg himself, he took it more like a philosopher; but for all +his philosophy, there was a tear twinkling in his eye, when the lantern +came too near. And he, too, did not a little run from cabin to deck—now +a word below, and now a word with Starbuck, the chief mate. + +But, at last, he turned to his comrade, with a final sort of look about +him,—“Captain Bildad—come, old shipmate, we must go. Back the main-yard +there! Boat ahoy! Stand by to come close alongside, now! Careful, +careful!—come, Bildad, boy—say your last. Luck to ye, Starbuck—luck to +ye, Mr. Stubb—luck to ye, Mr. Flask—good-bye and good luck to ye +all—and this day three years I’ll have a hot supper smoking for ye in +old Nantucket. Hurrah and away!” + +“God bless ye, and have ye in His holy keeping, men,” murmured old +Bildad, almost incoherently. “I hope ye’ll have fine weather now, so +that Captain Ahab may soon be moving among ye—a pleasant sun is all he +needs, and ye’ll have plenty of them in the tropic voyage ye go. Be +careful in the hunt, ye mates. Don’t stave the boats needlessly, ye +harpooneers; good white cedar plank is raised full three per cent. +within the year. Don’t forget your prayers, either. Mr. Starbuck, mind +that cooper don’t waste the spare staves. Oh! the sail-needles are in +the green locker! Don’t whale it too much a’ Lord’s days, men; but +don’t miss a fair chance either, that’s rejecting Heaven’s good gifts. +Have an eye to the molasses tierce, Mr. Stubb; it was a little leaky, I +thought. If ye touch at the islands, Mr. Flask, beware of fornication. +Good-bye, good-bye! Don’t keep that cheese too long down in the hold, +Mr. Starbuck; it’ll spoil. Be careful with the butter—twenty cents the +pound it was, and mind ye, if—” + +“Come, come, Captain Bildad; stop palavering,—away!” and with that, +Peleg hurried him over the side, and both dropt into the boat. + +Ship and boat diverged; the cold, damp night breeze blew between; a +screaming gull flew overhead; the two hulls wildly rolled; we gave +three heavy-hearted cheers, and blindly plunged like fate into the lone +Atlantic. + + +CHAPTER 23. The Lee Shore. + +Some chapters back, one Bulkington was spoken of, a tall, newlanded +mariner, encountered in New Bedford at the inn. + +When on that shivering winter’s night, the Pequod thrust her vindictive +bows into the cold malicious waves, who should I see standing at her +helm but Bulkington! I looked with sympathetic awe and fearfulness upon +the man, who in mid-winter just landed from a four years’ dangerous +voyage, could so unrestingly push off again for still another +tempestuous term. The land seemed scorching to his feet. Wonderfullest +things are ever the unmentionable; deep memories yield no epitaphs; +this six-inch chapter is the stoneless grave of Bulkington. Let me only +say that it fared with him as with the storm-tossed ship, that +miserably drives along the leeward land. The port would fain give +succor; the port is pitiful; in the port is safety, comfort, +hearthstone, supper, warm blankets, friends, all that’s kind to our +mortalities. But in that gale, the port, the land, is that ship’s +direst jeopardy; she must fly all hospitality; one touch of land, +though it but graze the keel, would make her shudder through and +through. With all her might she crowds all sail off shore; in so doing, +fights ’gainst the very winds that fain would blow her homeward; seeks +all the lashed sea’s landlessness again; for refuge’s sake forlornly +rushing into peril; her only friend her bitterest foe! + +Know ye now, Bulkington? Glimpses do ye seem to see of that mortally +intolerable truth; that all deep, earnest thinking is but the intrepid +effort of the soul to keep the open independence of her sea; while the +wildest winds of heaven and earth conspire to cast her on the +treacherous, slavish shore? + +But as in landlessness alone resides highest truth, shoreless, +indefinite as God—so, better is it to perish in that howling infinite, +than be ingloriously dashed upon the lee, even if that were safety! For +worm-like, then, oh! who would craven crawl to land! Terrors of the +terrible! is all this agony so vain? Take heart, take heart, O +Bulkington! Bear thee grimly, demigod! Up from the spray of thy +ocean-perishing—straight up, leaps thy apotheosis! + + +CHAPTER 24. The Advocate. + +As Queequeg and I are now fairly embarked in this business of whaling; +and as this business of whaling has somehow come to be regarded among +landsmen as a rather unpoetical and disreputable pursuit; therefore, I +am all anxiety to convince ye, ye landsmen, of the injustice hereby +done to us hunters of whales. + +In the first place, it may be deemed almost superfluous to establish +the fact, that among people at large, the business of whaling is not +accounted on a level with what are called the liberal professions. If a +stranger were introduced into any miscellaneous metropolitan society, +it would but slightly advance the general opinion of his merits, were +he presented to the company as a harpooneer, say; and if in emulation +of the naval officers he should append the initials S.W.F. (Sperm Whale +Fishery) to his visiting card, such a procedure would be deemed +pre-eminently presuming and ridiculous. + +Doubtless one leading reason why the world declines honoring us +whalemen, is this: they think that, at best, our vocation amounts to a +butchering sort of business; and that when actively engaged therein, we +are surrounded by all manner of defilements. Butchers we are, that is +true. But butchers, also, and butchers of the bloodiest badge have been +all Martial Commanders whom the world invariably delights to honor. And +as for the matter of the alleged uncleanliness of our business, ye +shall soon be initiated into certain facts hitherto pretty generally +unknown, and which, upon the whole, will triumphantly plant the sperm +whale-ship at least among the cleanliest things of this tidy earth. But +even granting the charge in question to be true; what disordered +slippery decks of a whale-ship are comparable to the unspeakable +carrion of those battle-fields from which so many soldiers return to +drink in all ladies’ plaudits? And if the idea of peril so much +enhances the popular conceit of the soldier’s profession; let me assure +ye that many a veteran who has freely marched up to a battery, would +quickly recoil at the apparition of the sperm whale’s vast tail, +fanning into eddies the air over his head. For what are the +comprehensible terrors of man compared with the interlinked terrors and +wonders of God! + +But, though the world scouts at us whale hunters, yet does it +unwittingly pay us the profoundest homage; yea, an all-abounding +adoration! for almost all the tapers, lamps, and candles that burn +round the globe, burn, as before so many shrines, to our glory! + +But look at this matter in other lights; weigh it in all sorts of +scales; see what we whalemen are, and have been. + +Why did the Dutch in De Witt’s time have admirals of their whaling +fleets? Why did Louis XVI. of France, at his own personal expense, fit +out whaling ships from Dunkirk, and politely invite to that town some +score or two of families from our own island of Nantucket? Why did +Britain between the years 1750 and 1788 pay to her whalemen in bounties +upwards of £1,000,000? And lastly, how comes it that we whalemen of +America now outnumber all the rest of the banded whalemen in the world; +sail a navy of upwards of seven hundred vessels; manned by eighteen +thousand men; yearly consuming 4,000,000 of dollars; the ships worth, +at the time of sailing, $20,000,000! and every year importing into our +harbors a well reaped harvest of $7,000,000. How comes all this, if +there be not something puissant in whaling? + +But this is not the half; look again. + +I freely assert, that the cosmopolite philosopher cannot, for his life, +point out one single peaceful influence, which within the last sixty +years has operated more potentially upon the whole broad world, taken +in one aggregate, than the high and mighty business of whaling. One way +and another, it has begotten events so remarkable in themselves, and so +continuously momentous in their sequential issues, that whaling may +well be regarded as that Egyptian mother, who bore offspring themselves +pregnant from her womb. It would be a hopeless, endless task to +catalogue all these things. Let a handful suffice. For many years past +the whale-ship has been the pioneer in ferreting out the remotest and +least known parts of the earth. She has explored seas and archipelagoes +which had no chart, where no Cook or Vancouver had ever sailed. If +American and European men-of-war now peacefully ride in once savage +harbors, let them fire salutes to the honor and glory of the +whale-ship, which originally showed them the way, and first interpreted +between them and the savages. They may celebrate as they will the +heroes of Exploring Expeditions, your Cooks, your Krusensterns; but I +say that scores of anonymous Captains have sailed out of Nantucket, +that were as great, and greater than your Cook and your Krusenstern. +For in their succourless empty-handedness, they, in the heathenish +sharked waters, and by the beaches of unrecorded, javelin islands, +battled with virgin wonders and terrors that Cook with all his marines +and muskets would not willingly have dared. All that is made such a +flourish of in the old South Sea Voyages, those things were but the +life-time commonplaces of our heroic Nantucketers. Often, adventures +which Vancouver dedicates three chapters to, these men accounted +unworthy of being set down in the ship’s common log. Ah, the world! Oh, +the world! + +Until the whale fishery rounded Cape Horn, no commerce but colonial, +scarcely any intercourse but colonial, was carried on between Europe +and the long line of the opulent Spanish provinces on the Pacific +coast. It was the whaleman who first broke through the jealous policy +of the Spanish crown, touching those colonies; and, if space permitted, +it might be distinctly shown how from those whalemen at last eventuated +the liberation of Peru, Chili, and Bolivia from the yoke of Old Spain, +and the establishment of the eternal democracy in those parts. + +That great America on the other side of the sphere, Australia, was +given to the enlightened world by the whaleman. After its first +blunder-born discovery by a Dutchman, all other ships long shunned +those shores as pestiferously barbarous; but the whale-ship touched +there. The whale-ship is the true mother of that now mighty colony. +Moreover, in the infancy of the first Australian settlement, the +emigrants were several times saved from starvation by the benevolent +biscuit of the whale-ship luckily dropping an anchor in their waters. +The uncounted isles of all Polynesia confess the same truth, and do +commercial homage to the whale-ship, that cleared the way for the +missionary and the merchant, and in many cases carried the primitive +missionaries to their first destinations. If that double-bolted land, +Japan, is ever to become hospitable, it is the whale-ship alone to whom +the credit will be due; for already she is on the threshold. + +But if, in the face of all this, you still declare that whaling has no +æsthetically noble associations connected with it, then am I ready to +shiver fifty lances with you there, and unhorse you with a split helmet +every time. + +The whale has no famous author, and whaling no famous chronicler, you +will say. + +_The whale no famous author, and whaling no famous chronicler?_ Who +wrote the first account of our Leviathan? Who but mighty Job! And who +composed the first narrative of a whaling-voyage? Who, but no less a +prince than Alfred the Great, who, with his own royal pen, took down +the words from Other, the Norwegian whale-hunter of those times! And +who pronounced our glowing eulogy in Parliament? Who, but Edmund Burke! + +True enough, but then whalemen themselves are poor devils; they have no +good blood in their veins. + +_No good blood in their veins?_ They have something better than royal +blood there. The grandmother of Benjamin Franklin was Mary Morrel; +afterwards, by marriage, Mary Folger, one of the old settlers of +Nantucket, and the ancestress to a long line of Folgers and +harpooneers—all kith and kin to noble Benjamin—this day darting the +barbed iron from one side of the world to the other. + +Good again; but then all confess that somehow whaling is not +respectable. + +_Whaling not respectable?_ Whaling is imperial! By old English +statutory law, the whale is declared “a royal fish.” * + +Oh, that’s only nominal! The whale himself has never figured in any +grand imposing way. + +_The whale never figured in any grand imposing way?_ In one of the +mighty triumphs given to a Roman general upon his entering the world’s +capital, the bones of a whale, brought all the way from the Syrian +coast, were the most conspicuous object in the cymballed procession.* + +*See subsequent chapters for something more on this head. + +Grant it, since you cite it; but, say what you will, there is no real +dignity in whaling. + +_No dignity in whaling?_ The dignity of our calling the very heavens +attest. Cetus is a constellation in the South! No more! Drive down your +hat in presence of the Czar, and take it off to Queequeg! No more! I +know a man that, in his lifetime, has taken three hundred and fifty +whales. I account that man more honorable than that great captain of +antiquity who boasted of taking as many walled towns. + +And, as for me, if, by any possibility, there be any as yet +undiscovered prime thing in me; if I shall ever deserve any real repute +in that small but high hushed world which I might not be unreasonably +ambitious of; if hereafter I shall do anything that, upon the whole, a +man might rather have done than to have left undone; if, at my death, +my executors, or more properly my creditors, find any precious MSS. in +my desk, then here I prospectively ascribe all the honor and the glory +to whaling; for a whale-ship was my Yale College and my Harvard. + + +CHAPTER 25. Postscript. + +In behalf of the dignity of whaling, I would fain advance naught but +substantiated facts. But after embattling his facts, an advocate who +should wholly suppress a not unreasonable surmise, which might tell +eloquently upon his cause—such an advocate, would he not be +blameworthy? + +It is well known that at the coronation of kings and queens, even +modern ones, a certain curious process of seasoning them for their +functions is gone through. There is a saltcellar of state, so called, +and there may be a castor of state. How they use the salt, +precisely—who knows? Certain I am, however, that a king’s head is +solemnly oiled at his coronation, even as a head of salad. Can it be, +though, that they anoint it with a view of making its interior run +well, as they anoint machinery? Much might be ruminated here, +concerning the essential dignity of this regal process, because in +common life we esteem but meanly and contemptibly a fellow who anoints +his hair, and palpably smells of that anointing. In truth, a mature man +who uses hair-oil, unless medicinally, that man has probably got a +quoggy spot in him somewhere. As a general rule, he can’t amount to +much in his totality. + +But the only thing to be considered here, is this—what kind of oil is +used at coronations? Certainly it cannot be olive oil, nor macassar +oil, nor castor oil, nor bear’s oil, nor train oil, nor cod-liver oil. +What then can it possibly be, but sperm oil in its unmanufactured, +unpolluted state, the sweetest of all oils? + +Think of that, ye loyal Britons! we whalemen supply your kings and +queens with coronation stuff! + + +CHAPTER 26. Knights and Squires. + +The chief mate of the Pequod was Starbuck, a native of Nantucket, and a +Quaker by descent. He was a long, earnest man, and though born on an +icy coast, seemed well adapted to endure hot latitudes, his flesh being +hard as twice-baked biscuit. Transported to the Indies, his live blood +would not spoil like bottled ale. He must have been born in some time +of general drought and famine, or upon one of those fast days for which +his state is famous. Only some thirty arid summers had he seen; those +summers had dried up all his physical superfluousness. But this, his +thinness, so to speak, seemed no more the token of wasting anxieties +and cares, than it seemed the indication of any bodily blight. It was +merely the condensation of the man. He was by no means ill-looking; +quite the contrary. His pure tight skin was an excellent fit; and +closely wrapped up in it, and embalmed with inner health and strength, +like a revivified Egyptian, this Starbuck seemed prepared to endure for +long ages to come, and to endure always, as now; for be it Polar snow +or torrid sun, like a patent chronometer, his interior vitality was +warranted to do well in all climates. Looking into his eyes, you seemed +to see there the yet lingering images of those thousand-fold perils he +had calmly confronted through life. A staid, steadfast man, whose life +for the most part was a telling pantomime of action, and not a tame +chapter of sounds. Yet, for all his hardy sobriety and fortitude, there +were certain qualities in him which at times affected, and in some +cases seemed well nigh to overbalance all the rest. Uncommonly +conscientious for a seaman, and endued with a deep natural reverence, +the wild watery loneliness of his life did therefore strongly incline +him to superstition; but to that sort of superstition, which in some +organizations seems rather to spring, somehow, from intelligence than +from ignorance. Outward portents and inward presentiments were his. And +if at times these things bent the welded iron of his soul, much more +did his far-away domestic memories of his young Cape wife and child, +tend to bend him still more from the original ruggedness of his nature, +and open him still further to those latent influences which, in some +honest-hearted men, restrain the gush of dare-devil daring, so often +evinced by others in the more perilous vicissitudes of the fishery. “I +will have no man in my boat,” said Starbuck, “who is not afraid of a +whale.” By this, he seemed to mean, not only that the most reliable and +useful courage was that which arises from the fair estimation of the +encountered peril, but that an utterly fearless man is a far more +dangerous comrade than a coward. + +“Aye, aye,” said Stubb, the second mate, “Starbuck, there, is as +careful a man as you’ll find anywhere in this fishery.” But we shall +ere long see what that word “careful” precisely means when used by a +man like Stubb, or almost any other whale hunter. + +Starbuck was no crusader after perils; in him courage was not a +sentiment; but a thing simply useful to him, and always at hand upon +all mortally practical occasions. Besides, he thought, perhaps, that in +this business of whaling, courage was one of the great staple outfits +of the ship, like her beef and her bread, and not to be foolishly +wasted. Wherefore he had no fancy for lowering for whales after +sun-down; nor for persisting in fighting a fish that too much persisted +in fighting him. For, thought Starbuck, I am here in this critical +ocean to kill whales for my living, and not to be killed by them for +theirs; and that hundreds of men had been so killed Starbuck well knew. +What doom was his own father’s? Where, in the bottomless deeps, could +he find the torn limbs of his brother? + +With memories like these in him, and, moreover, given to a certain +superstitiousness, as has been said; the courage of this Starbuck which +could, nevertheless, still flourish, must indeed have been extreme. But +it was not in reasonable nature that a man so organized, and with such +terrible experiences and remembrances as he had; it was not in nature +that these things should fail in latently engendering an element in +him, which, under suitable circumstances, would break out from its +confinement, and burn all his courage up. And brave as he might be, it +was that sort of bravery chiefly, visible in some intrepid men, which, +while generally abiding firm in the conflict with seas, or winds, or +whales, or any of the ordinary irrational horrors of the world, yet +cannot withstand those more terrific, because more spiritual terrors, +which sometimes menace you from the concentrating brow of an enraged +and mighty man. + +But were the coming narrative to reveal in any instance, the complete +abasement of poor Starbuck’s fortitude, scarce might I have the heart +to write it; for it is a thing most sorrowful, nay shocking, to expose +the fall of valour in the soul. Men may seem detestable as joint +stock-companies and nations; knaves, fools, and murderers there may be; +men may have mean and meagre faces; but man, in the ideal, is so noble +and so sparkling, such a grand and glowing creature, that over any +ignominious blemish in him all his fellows should run to throw their +costliest robes. That immaculate manliness we feel within ourselves, so +far within us, that it remains intact though all the outer character +seem gone; bleeds with keenest anguish at the undraped spectacle of a +valor-ruined man. Nor can piety itself, at such a shameful sight, +completely stifle her upbraidings against the permitting stars. But +this august dignity I treat of, is not the dignity of kings and robes, +but that abounding dignity which has no robed investiture. Thou shalt +see it shining in the arm that wields a pick or drives a spike; that +democratic dignity which, on all hands, radiates without end from God; +Himself! The great God absolute! The centre and circumference of all +democracy! His omnipresence, our divine equality! + +If, then, to meanest mariners, and renegades and castaways, I shall +hereafter ascribe high qualities, though dark; weave round them tragic +graces; if even the most mournful, perchance the most abased, among +them all, shall at times lift himself to the exalted mounts; if I shall +touch that workman’s arm with some ethereal light; if I shall spread a +rainbow over his disastrous set of sun; then against all mortal critics +bear me out in it, thou just Spirit of Equality, which hast spread one +royal mantle of humanity over all my kind! Bear me out in it, thou +great democratic God! who didst not refuse to the swart convict, +Bunyan, the pale, poetic pearl; Thou who didst clothe with doubly +hammered leaves of finest gold, the stumped and paupered arm of old +Cervantes; Thou who didst pick up Andrew Jackson from the pebbles; who +didst hurl him upon a war-horse; who didst thunder him higher than a +throne! Thou who, in all Thy mighty, earthly marchings, ever cullest +Thy selectest champions from the kingly commons; bear me out in it, O +God! + + +CHAPTER 27. Knights and Squires. + +Stubb was the second mate. He was a native of Cape Cod; and hence, +according to local usage, was called a Cape-Cod-man. A happy-go-lucky; +neither craven nor valiant; taking perils as they came with an +indifferent air; and while engaged in the most imminent crisis of the +chase, toiling away, calm and collected as a journeyman joiner engaged +for the year. Good-humored, easy, and careless, he presided over his +whale-boat as if the most deadly encounter were but a dinner, and his +crew all invited guests. He was as particular about the comfortable +arrangement of his part of the boat, as an old stage-driver is about +the snugness of his box. When close to the whale, in the very +death-lock of the fight, he handled his unpitying lance coolly and +off-handedly, as a whistling tinker his hammer. He would hum over his +old rigadig tunes while flank and flank with the most exasperated +monster. Long usage had, for this Stubb, converted the jaws of death +into an easy chair. What he thought of death itself, there is no +telling. Whether he ever thought of it at all, might be a question; +but, if he ever did chance to cast his mind that way after a +comfortable dinner, no doubt, like a good sailor, he took it to be a +sort of call of the watch to tumble aloft, and bestir themselves there, +about something which he would find out when he obeyed the order, and +not sooner. + +What, perhaps, with other things, made Stubb such an easy-going, +unfearing man, so cheerily trudging off with the burden of life in a +world full of grave pedlars, all bowed to the ground with their packs; +what helped to bring about that almost impious good-humor of his; that +thing must have been his pipe. For, like his nose, his short, black +little pipe was one of the regular features of his face. You would +almost as soon have expected him to turn out of his bunk without his +nose as without his pipe. He kept a whole row of pipes there ready +loaded, stuck in a rack, within easy reach of his hand; and, whenever +he turned in, he smoked them all out in succession, lighting one from +the other to the end of the chapter; then loading them again to be in +readiness anew. For, when Stubb dressed, instead of first putting his +legs into his trowsers, he put his pipe into his mouth. + +I say this continual smoking must have been one cause, at least, of his +peculiar disposition; for every one knows that this earthly air, +whether ashore or afloat, is terribly infected with the nameless +miseries of the numberless mortals who have died exhaling it; and as in +time of the cholera, some people go about with a camphorated +handkerchief to their mouths; so, likewise, against all mortal +tribulations, Stubb’s tobacco smoke might have operated as a sort of +disinfecting agent. + +The third mate was Flask, a native of Tisbury, in Martha’s Vineyard. A +short, stout, ruddy young fellow, very pugnacious concerning whales, +who somehow seemed to think that the great leviathans had personally +and hereditarily affronted him; and therefore it was a sort of point of +honor with him, to destroy them whenever encountered. So utterly lost +was he to all sense of reverence for the many marvels of their majestic +bulk and mystic ways; and so dead to anything like an apprehension of +any possible danger from encountering them; that in his poor opinion, +the wondrous whale was but a species of magnified mouse, or at least +water-rat, requiring only a little circumvention and some small +application of time and trouble in order to kill and boil. This +ignorant, unconscious fearlessness of his made him a little waggish in +the matter of whales; he followed these fish for the fun of it; and a +three years’ voyage round Cape Horn was only a jolly joke that lasted +that length of time. As a carpenter’s nails are divided into wrought +nails and cut nails; so mankind may be similarly divided. Little Flask +was one of the wrought ones; made to clinch tight and last long. They +called him King-Post on board of the Pequod; because, in form, he could +be well likened to the short, square timber known by that name in +Arctic whalers; and which by the means of many radiating side timbers +inserted into it, serves to brace the ship against the icy concussions +of those battering seas. + +Now these three mates—Starbuck, Stubb, and Flask, were momentous men. +They it was who by universal prescription commanded three of the +Pequod’s boats as headsmen. In that grand order of battle in which +Captain Ahab would probably marshal his forces to descend on the +whales, these three headsmen were as captains of companies. Or, being +armed with their long keen whaling spears, they were as a picked trio +of lancers; even as the harpooneers were flingers of javelins. + +And since in this famous fishery, each mate or headsman, like a Gothic +Knight of old, is always accompanied by his boat-steerer or harpooneer, +who in certain conjunctures provides him with a fresh lance, when the +former one has been badly twisted, or elbowed in the assault; and +moreover, as there generally subsists between the two, a close intimacy +and friendliness; it is therefore but meet, that in this place we set +down who the Pequod’s harpooneers were, and to what headsman each of +them belonged. + +First of all was Queequeg, whom Starbuck, the chief mate, had selected +for his squire. But Queequeg is already known. + +Next was Tashtego, an unmixed Indian from Gay Head, the most westerly +promontory of Martha’s Vineyard, where there still exists the last +remnant of a village of red men, which has long supplied the +neighboring island of Nantucket with many of her most daring +harpooneers. In the fishery, they usually go by the generic name of +Gay-Headers. Tashtego’s long, lean, sable hair, his high cheek bones, +and black rounding eyes—for an Indian, Oriental in their largeness, but +Antarctic in their glittering expression—all this sufficiently +proclaimed him an inheritor of the unvitiated blood of those proud +warrior hunters, who, in quest of the great New England moose, had +scoured, bow in hand, the aboriginal forests of the main. But no longer +snuffing in the trail of the wild beasts of the woodland, Tashtego now +hunted in the wake of the great whales of the sea; the unerring harpoon +of the son fitly replacing the infallible arrow of the sires. To look +at the tawny brawn of his lithe snaky limbs, you would almost have +credited the superstitions of some of the earlier Puritans, and +half-believed this wild Indian to be a son of the Prince of the Powers +of the Air. Tashtego was Stubb the second mate’s squire. + +Third among the harpooneers was Daggoo, a gigantic, coal-black +negro-savage, with a lion-like tread—an Ahasuerus to behold. Suspended +from his ears were two golden hoops, so large that the sailors called +them ring-bolts, and would talk of securing the top-sail halyards to +them. In his youth Daggoo had voluntarily shipped on board of a whaler, +lying in a lonely bay on his native coast. And never having been +anywhere in the world but in Africa, Nantucket, and the pagan harbors +most frequented by whalemen; and having now led for many years the bold +life of the fishery in the ships of owners uncommonly heedful of what +manner of men they shipped; Daggoo retained all his barbaric virtues, +and erect as a giraffe, moved about the decks in all the pomp of six +feet five in his socks. There was a corporeal humility in looking up at +him; and a white man standing before him seemed a white flag come to +beg truce of a fortress. Curious to tell, this imperial negro, +Ahasuerus Daggoo, was the Squire of little Flask, who looked like a +chess-man beside him. As for the residue of the Pequod’s company, be it +said, that at the present day not one in two of the many thousand men +before the mast employed in the American whale fishery, are Americans +born, though pretty nearly all the officers are. Herein it is the same +with the American whale fishery as with the American army and military +and merchant navies, and the engineering forces employed in the +construction of the American Canals and Railroads. The same, I say, +because in all these cases the native American liberally provides the +brains, the rest of the world as generously supplying the muscles. No +small number of these whaling seamen belong to the Azores, where the +outward bound Nantucket whalers frequently touch to augment their crews +from the hardy peasants of those rocky shores. In like manner, the +Greenland whalers sailing out of Hull or London, put in at the Shetland +Islands, to receive the full complement of their crew. Upon the passage +homewards, they drop them there again. How it is, there is no telling, +but Islanders seem to make the best whalemen. They were nearly all +Islanders in the Pequod, _Isolatoes_ too, I call such, not +acknowledging the common continent of men, but each _Isolato_ living on +a separate continent of his own. Yet now, federated along one keel, +what a set these Isolatoes were! An Anacharsis Clootz deputation from +all the isles of the sea, and all the ends of the earth, accompanying +Old Ahab in the Pequod to lay the world’s grievances before that bar +from which not very many of them ever come back. Black Little Pip—he +never did—oh, no! he went before. Poor Alabama boy! On the grim +Pequod’s forecastle, ye shall ere long see him, beating his tambourine; +prelusive of the eternal time, when sent for, to the great quarter-deck +on high, he was bid strike in with angels, and beat his tambourine in +glory; called a coward here, hailed a hero there! + + +CHAPTER 28. Ahab. + +For several days after leaving Nantucket, nothing above hatches was +seen of Captain Ahab. The mates regularly relieved each other at the +watches, and for aught that could be seen to the contrary, they seemed +to be the only commanders of the ship; only they sometimes issued from +the cabin with orders so sudden and peremptory, that after all it was +plain they but commanded vicariously. Yes, their supreme lord and +dictator was there, though hitherto unseen by any eyes not permitted to +penetrate into the now sacred retreat of the cabin. + +Every time I ascended to the deck from my watches below, I instantly +gazed aft to mark if any strange face were visible; for my first vague +disquietude touching the unknown captain, now in the seclusion of the +sea, became almost a perturbation. This was strangely heightened at +times by the ragged Elijah’s diabolical incoherences uninvitedly +recurring to me, with a subtle energy I could not have before conceived +of. But poorly could I withstand them, much as in other moods I was +almost ready to smile at the solemn whimsicalities of that outlandish +prophet of the wharves. But whatever it was of apprehensiveness or +uneasiness—to call it so—which I felt, yet whenever I came to look +about me in the ship, it seemed against all warrantry to cherish such +emotions. For though the harpooneers, with the great body of the crew, +were a far more barbaric, heathenish, and motley set than any of the +tame merchant-ship companies which my previous experiences had made me +acquainted with, still I ascribed this—and rightly ascribed it—to the +fierce uniqueness of the very nature of that wild Scandinavian vocation +in which I had so abandonedly embarked. But it was especially the +aspect of the three chief officers of the ship, the mates, which was +most forcibly calculated to allay these colourless misgivings, and +induce confidence and cheerfulness in every presentment of the voyage. +Three better, more likely sea-officers and men, each in his own +different way, could not readily be found, and they were every one of +them Americans; a Nantucketer, a Vineyarder, a Cape man. Now, it being +Christmas when the ship shot from out her harbor, for a space we had +biting Polar weather, though all the time running away from it to the +southward; and by every degree and minute of latitude which we sailed, +gradually leaving that merciless winter, and all its intolerable +weather behind us. It was one of those less lowering, but still grey +and gloomy enough mornings of the transition, when with a fair wind the +ship was rushing through the water with a vindictive sort of leaping +and melancholy rapidity, that as I mounted to the deck at the call of +the forenoon watch, so soon as I levelled my glance towards the +taffrail, foreboding shivers ran over me. Reality outran apprehension; +Captain Ahab stood upon his quarter-deck. + +There seemed no sign of common bodily illness about him, nor of the +recovery from any. He looked like a man cut away from the stake, when +the fire has overrunningly wasted all the limbs without consuming them, +or taking away one particle from their compacted aged robustness. His +whole high, broad form, seemed made of solid bronze, and shaped in an +unalterable mould, like Cellini’s cast Perseus. Threading its way out +from among his grey hairs, and continuing right down one side of his +tawny scorched face and neck, till it disappeared in his clothing, you +saw a slender rod-like mark, lividly whitish. It resembled that +perpendicular seam sometimes made in the straight, lofty trunk of a +great tree, when the upper lightning tearingly darts down it, and +without wrenching a single twig, peels and grooves out the bark from +top to bottom, ere running off into the soil, leaving the tree still +greenly alive, but branded. Whether that mark was born with him, or +whether it was the scar left by some desperate wound, no one could +certainly say. By some tacit consent, throughout the voyage little or +no allusion was made to it, especially by the mates. But once +Tashtego’s senior, an old Gay-Head Indian among the crew, +superstitiously asserted that not till he was full forty years old did +Ahab become that way branded, and then it came upon him, not in the +fury of any mortal fray, but in an elemental strife at sea. Yet, this +wild hint seemed inferentially negatived, by what a grey Manxman +insinuated, an old sepulchral man, who, having never before sailed out +of Nantucket, had never ere this laid eye upon wild Ahab. Nevertheless, +the old sea-traditions, the immemorial credulities, popularly invested +this old Manxman with preternatural powers of discernment. So that no +white sailor seriously contradicted him when he said that if ever +Captain Ahab should be tranquilly laid out—which might hardly come to +pass, so he muttered—then, whoever should do that last office for the +dead, would find a birth-mark on him from crown to sole. + +So powerfully did the whole grim aspect of Ahab affect me, and the +livid brand which streaked it, that for the first few moments I hardly +noted that not a little of this overbearing grimness was owing to the +barbaric white leg upon which he partly stood. It had previously come +to me that this ivory leg had at sea been fashioned from the polished +bone of the sperm whale’s jaw. “Aye, he was dismasted off Japan,” said +the old Gay-Head Indian once; “but like his dismasted craft, he shipped +another mast without coming home for it. He has a quiver of ’em.” + +I was struck with the singular posture he maintained. Upon each side of +the Pequod’s quarter deck, and pretty close to the mizzen shrouds, +there was an auger hole, bored about half an inch or so, into the +plank. His bone leg steadied in that hole; one arm elevated, and +holding by a shroud; Captain Ahab stood erect, looking straight out +beyond the ship’s ever-pitching prow. There was an infinity of firmest +fortitude, a determinate, unsurrenderable wilfulness, in the fixed and +fearless, forward dedication of that glance. Not a word he spoke; nor +did his officers say aught to him; though by all their minutest +gestures and expressions, they plainly showed the uneasy, if not +painful, consciousness of being under a troubled master-eye. And not +only that, but moody stricken Ahab stood before them with a crucifixion +in his face; in all the nameless regal overbearing dignity of some +mighty woe. + +Ere long, from his first visit in the air, he withdrew into his cabin. +But after that morning, he was every day visible to the crew; either +standing in his pivot-hole, or seated upon an ivory stool he had; or +heavily walking the deck. As the sky grew less gloomy; indeed, began to +grow a little genial, he became still less and less a recluse; as if, +when the ship had sailed from home, nothing but the dead wintry +bleakness of the sea had then kept him so secluded. And, by and by, it +came to pass, that he was almost continually in the air; but, as yet, +for all that he said, or perceptibly did, on the at last sunny deck, he +seemed as unnecessary there as another mast. But the Pequod was only +making a passage now; not regularly cruising; nearly all whaling +preparatives needing supervision the mates were fully competent to, so +that there was little or nothing, out of himself, to employ or excite +Ahab, now; and thus chase away, for that one interval, the clouds that +layer upon layer were piled upon his brow, as ever all clouds choose +the loftiest peaks to pile themselves upon. + +Nevertheless, ere long, the warm, warbling persuasiveness of the +pleasant, holiday weather we came to, seemed gradually to charm him +from his mood. For, as when the red-cheeked, dancing girls, April and +May, trip home to the wintry, misanthropic woods; even the barest, +ruggedest, most thunder-cloven old oak will at least send forth some +few green sprouts, to welcome such glad-hearted visitants; so Ahab did, +in the end, a little respond to the playful allurings of that girlish +air. More than once did he put forth the faint blossom of a look, +which, in any other man, would have soon flowered out in a smile. + + +CHAPTER 29. Enter Ahab; to Him, Stubb. + +Some days elapsed, and ice and icebergs all astern, the Pequod now went +rolling through the bright Quito spring, which, at sea, almost +perpetually reigns on the threshold of the eternal August of the +Tropic. The warmly cool, clear, ringing, perfumed, overflowing, +redundant days, were as crystal goblets of Persian sherbet, heaped +up—flaked up, with rose-water snow. The starred and stately nights +seemed haughty dames in jewelled velvets, nursing at home in lonely +pride, the memory of their absent conquering Earls, the golden helmeted +suns! For sleeping man, ’twas hard to choose between such winsome days +and such seducing nights. But all the witcheries of that unwaning +weather did not merely lend new spells and potencies to the outward +world. Inward they turned upon the soul, especially when the still mild +hours of eve came on; then, memory shot her crystals as the clear ice +most forms of noiseless twilights. And all these subtle agencies, more +and more they wrought on Ahab’s texture. + +Old age is always wakeful; as if, the longer linked with life, the less +man has to do with aught that looks like death. Among sea-commanders, +the old greybeards will oftenest leave their berths to visit the +night-cloaked deck. It was so with Ahab; only that now, of late, he +seemed so much to live in the open air, that truly speaking, his visits +were more to the cabin, than from the cabin to the planks. “It feels +like going down into one’s tomb,”—he would mutter to himself—“for an +old captain like me to be descending this narrow scuttle, to go to my +grave-dug berth.” + +So, almost every twenty-four hours, when the watches of the night were +set, and the band on deck sentinelled the slumbers of the band below; +and when if a rope was to be hauled upon the forecastle, the sailors +flung it not rudely down, as by day, but with some cautiousness dropt +it to its place for fear of disturbing their slumbering shipmates; when +this sort of steady quietude would begin to prevail, habitually, the +silent steersman would watch the cabin-scuttle; and ere long the old +man would emerge, gripping at the iron banister, to help his crippled +way. Some considering touch of humanity was in him; for at times like +these, he usually abstained from patrolling the quarter-deck; because +to his wearied mates, seeking repose within six inches of his ivory +heel, such would have been the reverberating crack and din of that bony +step, that their dreams would have been on the crunching teeth of +sharks. But once, the mood was on him too deep for common regardings; +and as with heavy, lumber-like pace he was measuring the ship from +taffrail to mainmast, Stubb, the old second mate, came up from below, +with a certain unassured, deprecating humorousness, hinted that if +Captain Ahab was pleased to walk the planks, then, no one could say +nay; but there might be some way of muffling the noise; hinting +something indistinctly and hesitatingly about a globe of tow, and the +insertion into it, of the ivory heel. Ah! Stubb, thou didst not know +Ahab then. + +“Am I a cannon-ball, Stubb,” said Ahab, “that thou wouldst wad me that +fashion? But go thy ways; I had forgot. Below to thy nightly grave; +where such as ye sleep between shrouds, to use ye to the filling one at +last.—Down, dog, and kennel!” + +Starting at the unforseen concluding exclamation of the so suddenly +scornful old man, Stubb was speechless a moment; then said excitedly, +“I am not used to be spoken to that way, sir; I do but less than half +like it, sir.” + +“Avast! gritted Ahab between his set teeth, and violently moving away, +as if to avoid some passionate temptation. + +“No, sir; not yet,” said Stubb, emboldened, “I will not tamely be +called a dog, sir.” + +“Then be called ten times a donkey, and a mule, and an ass, and begone, +or I’ll clear the world of thee!” + +As he said this, Ahab advanced upon him with such overbearing terrors +in his aspect, that Stubb involuntarily retreated. + +“I was never served so before without giving a hard blow for it,” +muttered Stubb, as he found himself descending the cabin-scuttle. “It’s +very queer. Stop, Stubb; somehow, now, I don’t well know whether to go +back and strike him, or—what’s that?—down here on my knees and pray for +him? Yes, that was the thought coming up in me; but it would be the +first time I ever _did_ pray. It’s queer; very queer; and he’s queer +too; aye, take him fore and aft, he’s about the queerest old man Stubb +ever sailed with. How he flashed at me!—his eyes like powder-pans! is +he mad? Anyway there’s something on his mind, as sure as there must be +something on a deck when it cracks. He aint in his bed now, either, +more than three hours out of the twenty-four; and he don’t sleep then. +Didn’t that Dough-Boy, the steward, tell me that of a morning he always +finds the old man’s hammock clothes all rumpled and tumbled, and the +sheets down at the foot, and the coverlid almost tied into knots, and +the pillow a sort of frightful hot, as though a baked brick had been on +it? A hot old man! I guess he’s got what some folks ashore call a +conscience; it’s a kind of Tic-Dolly-row they say—worse nor a +toothache. Well, well; I don’t know what it is, but the Lord keep me +from catching it. He’s full of riddles; I wonder what he goes into the +after hold for, every night, as Dough-Boy tells me he suspects; what’s +that for, I should like to know? Who’s made appointments with him in +the hold? Ain’t that queer, now? But there’s no telling, it’s the old +game—Here goes for a snooze. Damn me, it’s worth a fellow’s while to be +born into the world, if only to fall right asleep. And now that I think +of it, that’s about the first thing babies do, and that’s a sort of +queer, too. Damn me, but all things are queer, come to think of ’em. +But that’s against my principles. Think not, is my eleventh +commandment; and sleep when you can, is my twelfth—So here goes again. +But how’s that? didn’t he call me a dog? blazes! he called me ten times +a donkey, and piled a lot of jackasses on top of _that!_ He might as +well have kicked me, and done with it. Maybe he _did_ kick me, and I +didn’t observe it, I was so taken all aback with his brow, somehow. It +flashed like a bleached bone. What the devil’s the matter with me? I +don’t stand right on my legs. Coming afoul of that old man has a sort +of turned me wrong side out. By the Lord, I must have been dreaming, +though—How? how? how?—but the only way’s to stash it; so here goes to +hammock again; and in the morning, I’ll see how this plaguey juggling +thinks over by daylight.” + + +CHAPTER 30. The Pipe. + +When Stubb had departed, Ahab stood for a while leaning over the +bulwarks; and then, as had been usual with him of late, calling a +sailor of the watch, he sent him below for his ivory stool, and also +his pipe. Lighting the pipe at the binnacle lamp and planting the stool +on the weather side of the deck, he sat and smoked. + +In old Norse times, the thrones of the sea-loving Danish kings were +fabricated, saith tradition, of the tusks of the narwhale. How could +one look at Ahab then, seated on that tripod of bones, without +bethinking him of the royalty it symbolized? For a Khan of the plank, +and a king of the sea, and a great lord of Leviathans was Ahab. + +Some moments passed, during which the thick vapor came from his mouth +in quick and constant puffs, which blew back again into his face. “How +now,” he soliloquized at last, withdrawing the tube, “this smoking no +longer soothes. Oh, my pipe! hard must it go with me if thy charm be +gone! Here have I been unconsciously toiling, not pleasuring—aye, and +ignorantly smoking to windward all the while; to windward, and with +such nervous whiffs, as if, like the dying whale, my final jets were +the strongest and fullest of trouble. What business have I with this +pipe? This thing that is meant for sereneness, to send up mild white +vapors among mild white hairs, not among torn iron-grey locks like +mine. I’ll smoke no more—” + +He tossed the still lighted pipe into the sea. The fire hissed in the +waves; the same instant the ship shot by the bubble the sinking pipe +made. With slouched hat, Ahab lurchingly paced the planks. + + +CHAPTER 31. Queen Mab. + +Next morning Stubb accosted Flask. + +“Such a queer dream, King-Post, I never had. You know the old man’s +ivory leg, well I dreamed he kicked me with it; and when I tried to +kick back, upon my soul, my little man, I kicked my leg right off! And +then, presto! Ahab seemed a pyramid, and I, like a blazing fool, kept +kicking at it. But what was still more curious, Flask—you know how +curious all dreams are—through all this rage that I was in, I somehow +seemed to be thinking to myself, that after all, it was not much of an +insult, that kick from Ahab. ‘Why,’ thinks I, ‘what’s the row? It’s not +a real leg, only a false leg.’ And there’s a mighty difference between +a living thump and a dead thump. That’s what makes a blow from the +hand, Flask, fifty times more savage to bear than a blow from a cane. +The living member—that makes the living insult, my little man. And +thinks I to myself all the while, mind, while I was stubbing my silly +toes against that cursed pyramid—so confoundedly contradictory was it +all, all the while, I say, I was thinking to myself, ‘what’s his leg +now, but a cane—a whalebone cane. Yes,’ thinks I, ‘it was only a +playful cudgelling—in fact, only a whaleboning that he gave me—not a +base kick. Besides,’ thinks I, ‘look at it once; why, the end of it—the +foot part—what a small sort of end it is; whereas, if a broad footed +farmer kicked me, _there’s_ a devilish broad insult. But this insult is +whittled down to a point only.’ But now comes the greatest joke of the +dream, Flask. While I was battering away at the pyramid, a sort of +badger-haired old merman, with a hump on his back, takes me by the +shoulders, and slews me round. ‘What are you ’bout?’ says he. Slid! +man, but I was frightened. Such a phiz! But, somehow, next moment I was +over the fright. ‘What am I about?’ says I at last. ‘And what business +is that of yours, I should like to know, Mr. Humpback? Do _you_ want a +kick?’ By the lord, Flask, I had no sooner said that, than he turned +round his stern to me, bent over, and dragging up a lot of seaweed he +had for a clout—what do you think, I saw?—why thunder alive, man, his +stern was stuck full of marlinspikes, with the points out. Says I, on +second thoughts, ‘I guess I won’t kick you, old fellow.’ ‘Wise Stubb,’ +said he, ‘wise Stubb;’ and kept muttering it all the time, a sort of +eating of his own gums like a chimney hag. Seeing he wasn’t going to +stop saying over his ‘wise Stubb, wise Stubb,’ I thought I might as +well fall to kicking the pyramid again. But I had only just lifted my +foot for it, when he roared out, ‘Stop that kicking!’ ‘Halloa,’ says I, +‘what’s the matter now, old fellow?’ ‘Look ye here,’ says he; ‘let’s +argue the insult. Captain Ahab kicked ye, didn’t he?’ ‘Yes, he did,’ +says I—‘right _here_ it was.’ ‘Very good,’ says he—‘he used his ivory +leg, didn’t he?’ ‘Yes, he did,’ says I. ‘Well then,’ says he, ‘wise +Stubb, what have you to complain of? Didn’t he kick with right good +will? it wasn’t a common pitch pine leg he kicked with, was it? No, you +were kicked by a great man, and with a beautiful ivory leg, Stubb. It’s +an honor; I consider it an honor. Listen, wise Stubb. In old England +the greatest lords think it great glory to be slapped by a queen, and +made garter-knights of; but, be _your_ boast, Stubb, that ye were +kicked by old Ahab, and made a wise man of. Remember what I say; _be_ +kicked by him; account his kicks honors; and on no account kick back; +for you can’t help yourself, wise Stubb. Don’t you see that pyramid?’ +With that, he all of a sudden seemed somehow, in some queer fashion, to +swim off into the air. I snored; rolled over; and there I was in my +hammock! Now, what do you think of that dream, Flask?” + +“I don’t know; it seems a sort of foolish to me, tho.’” + +“May be; may be. But it’s made a wise man of me, Flask. D’ye see Ahab +standing there, sideways looking over the stern? Well, the best thing +you can do, Flask, is to let the old man alone; never speak to him, +whatever he says. Halloa! What’s that he shouts? Hark!” + +“Mast-head, there! Look sharp, all of ye! There are whales hereabouts! + +“If ye see a white one, split your lungs for him! + +“What do you think of that now, Flask? ain’t there a small drop of +something queer about that, eh? A white whale—did ye mark that, man? +Look ye—there’s something special in the wind. Stand by for it, Flask. +Ahab has that that’s bloody on his mind. But, mum; he comes this way.” + + +CHAPTER 32. Cetology. + +Already we are boldly launched upon the deep; but soon we shall be lost +in its unshored, harbourless immensities. Ere that come to pass; ere +the Pequod’s weedy hull rolls side by side with the barnacled hulls of +the leviathan; at the outset it is but well to attend to a matter +almost indispensable to a thorough appreciative understanding of the +more special leviathanic revelations and allusions of all sorts which +are to follow. + +It is some systematized exhibition of the whale in his broad genera, +that I would now fain put before you. Yet is it no easy task. The +classification of the constituents of a chaos, nothing less is here +essayed. Listen to what the best and latest authorities have laid down. + +“No branch of Zoology is so much involved as that which is entitled +Cetology,” says Captain Scoresby, A.D. 1820. + +“It is not my intention, were it in my power, to enter into the inquiry +as to the true method of dividing the cetacea into groups and families. +* * * Utter confusion exists among the historians of this animal” +(sperm whale), says Surgeon Beale, A.D. 1839. + +“Unfitness to pursue our research in the unfathomable waters.” +“Impenetrable veil covering our knowledge of the cetacea.” “A field +strewn with thorns.” “All these incomplete indications but serve to +torture us naturalists.” + +Thus speak of the whale, the great Cuvier, and John Hunter, and Lesson, +those lights of zoology and anatomy. Nevertheless, though of real +knowledge there be little, yet of books there are a plenty; and so in +some small degree, with cetology, or the science of whales. Many are +the men, small and great, old and new, landsmen and seamen, who have at +large or in little, written of the whale. Run over a few:—The Authors +of the Bible; Aristotle; Pliny; Aldrovandi; Sir Thomas Browne; Gesner; +Ray; Linnæus; Rondeletius; Willoughby; Green; Artedi; Sibbald; Brisson; +Marten; Lacépède; Bonneterre; Desmarest; Baron Cuvier; Frederick +Cuvier; John Hunter; Owen; Scoresby; Beale; Bennett; J. Ross Browne; +the Author of Miriam Coffin; Olmstead; and the Rev. T. Cheever. But to +what ultimate generalizing purpose all these have written, the above +cited extracts will show. + +Of the names in this list of whale authors, only those following Owen +ever saw living whales; and but one of them was a real professional +harpooneer and whaleman. I mean Captain Scoresby. On the separate +subject of the Greenland or right-whale, he is the best existing +authority. But Scoresby knew nothing and says nothing of the great +sperm whale, compared with which the Greenland whale is almost unworthy +mentioning. And here be it said, that the Greenland whale is an usurper +upon the throne of the seas. He is not even by any means the largest of +the whales. Yet, owing to the long priority of his claims, and the +profound ignorance which, till some seventy years back, invested the +then fabulous or utterly unknown sperm-whale, and which ignorance to +this present day still reigns in all but some few scientific retreats +and whale-ports; this usurpation has been every way complete. Reference +to nearly all the leviathanic allusions in the great poets of past +days, will satisfy you that the Greenland whale, without one rival, was +to them the monarch of the seas. But the time has at last come for a +new proclamation. This is Charing Cross; hear ye! good people all,—the +Greenland whale is deposed,—the great sperm whale now reigneth! + +There are only two books in being which at all pretend to put the +living sperm whale before you, and at the same time, in the remotest +degree succeed in the attempt. Those books are Beale’s and Bennett’s; +both in their time surgeons to English South-Sea whale-ships, and both +exact and reliable men. The original matter touching the sperm whale to +be found in their volumes is necessarily small; but so far as it goes, +it is of excellent quality, though mostly confined to scientific +description. As yet, however, the sperm whale, scientific or poetic, +lives not complete in any literature. Far above all other hunted +whales, his is an unwritten life. + +Now the various species of whales need some sort of popular +comprehensive classification, if only an easy outline one for the +present, hereafter to be filled in all its departments by subsequent +laborers. As no better man advances to take this matter in hand, I +hereupon offer my own poor endeavors. I promise nothing complete; +because any human thing supposed to be complete, must for that very +reason infallibly be faulty. I shall not pretend to a minute anatomical +description of the various species, or—in this place at least—to much +of any description. My object here is simply to project the draught of +a systematization of cetology. I am the architect, not the builder. + +But it is a ponderous task; no ordinary letter-sorter in the +Post-Office is equal to it. To grope down into the bottom of the sea +after them; to have one’s hands among the unspeakable foundations, +ribs, and very pelvis of the world; this is a fearful thing. What am I +that I should essay to hook the nose of this leviathan! The awful +tauntings in Job might well appal me. Will he (the leviathan) make a +covenant with thee? Behold the hope of him is vain! But I have swam +through libraries and sailed through oceans; I have had to do with +whales with these visible hands; I am in earnest; and I will try. There +are some preliminaries to settle. + +First: The uncertain, unsettled condition of this science of Cetology +is in the very vestibule attested by the fact, that in some quarters it +still remains a moot point whether a whale be a fish. In his System of +Nature, A.D. 1776, Linnæus declares, “I hereby separate the whales from +the fish.” But of my own knowledge, I know that down to the year 1850, +sharks and shad, alewives and herring, against Linnæus’s express edict, +were still found dividing the possession of the same seas with the +Leviathan. + +The grounds upon which Linnæus would fain have banished the whales from +the waters, he states as follows: “On account of their warm bilocular +heart, their lungs, their movable eyelids, their hollow ears, penem +intrantem feminam mammis lactantem,” and finally, “ex lege naturæ jure +meritoque.” I submitted all this to my friends Simeon Macey and Charley +Coffin, of Nantucket, both messmates of mine in a certain voyage, and +they united in the opinion that the reasons set forth were altogether +insufficient. Charley profanely hinted they were humbug. + +Be it known that, waiving all argument, I take the good old fashioned +ground that the whale is a fish, and call upon holy Jonah to back me. +This fundamental thing settled, the next point is, in what internal +respect does the whale differ from other fish. Above, Linnæus has given +you those items. But in brief, they are these: lungs and warm blood; +whereas, all other fish are lungless and cold blooded. + +Next: how shall we define the whale, by his obvious externals, so as +conspicuously to label him for all time to come? To be short, then, a +whale is _a spouting fish with a horizontal tail_. There you have him. +However contracted, that definition is the result of expanded +meditation. A walrus spouts much like a whale, but the walrus is not a +fish, because he is amphibious. But the last term of the definition is +still more cogent, as coupled with the first. Almost any one must have +noticed that all the fish familiar to landsmen have not a flat, but a +vertical, or up-and-down tail. Whereas, among spouting fish the tail, +though it may be similarly shaped, invariably assumes a horizontal +position. + +By the above definition of what a whale is, I do by no means exclude +from the leviathanic brotherhood any sea creature hitherto identified +with the whale by the best informed Nantucketers; nor, on the other +hand, link with it any fish hitherto authoritatively regarded as +alien.* Hence, all the smaller, spouting, and horizontal tailed fish +must be included in this ground-plan of Cetology. Now, then, come the +grand divisions of the entire whale host. + +*I am aware that down to the present time, the fish styled Lamatins and +Dugongs (Pig-fish and Sow-fish of the Coffins of Nantucket) are +included by many naturalists among the whales. But as these pig-fish +are a noisy, contemptible set, mostly lurking in the mouths of rivers, +and feeding on wet hay, and especially as they do not spout, I deny +their credentials as whales; and have presented them with their +passports to quit the Kingdom of Cetology. + +First: According to magnitude I divide the whales into three primary +BOOKS (subdivisible into CHAPTERS), and these shall comprehend them +all, both small and large. + +I. THE FOLIO WHALE; II. the OCTAVO WHALE; III. the DUODECIMO WHALE. + +As the type of the FOLIO I present the _Sperm Whale_; of the OCTAVO, +the _Grampus_; of the DUODECIMO, the _Porpoise_. + +FOLIOS. Among these I here include the following chapters:—I. The +_Sperm Whale_; II. the _Right Whale_; III. the _Fin-Back Whale_; IV. +the _Hump-backed Whale_; V. the _Razor Back Whale_; VI. the _Sulphur +Bottom Whale_. + +BOOK I. (_Folio_), CHAPTER I. (_Sperm Whale_).—This whale, among the +English of old vaguely known as the Trumpa whale, and the Physeter +whale, and the Anvil Headed whale, is the present Cachalot of the +French, and the Pottsfich of the Germans, and the Macrocephalus of the +Long Words. He is, without doubt, the largest inhabitant of the globe; +the most formidable of all whales to encounter; the most majestic in +aspect; and lastly, by far the most valuable in commerce; he being the +only creature from which that valuable substance, spermaceti, is +obtained. All his peculiarities will, in many other places, be enlarged +upon. It is chiefly with his name that I now have to do. Philologically +considered, it is absurd. Some centuries ago, when the Sperm whale was +almost wholly unknown in his own proper individuality, and when his oil +was only accidentally obtained from the stranded fish; in those days +spermaceti, it would seem, was popularly supposed to be derived from a +creature identical with the one then known in England as the Greenland +or Right Whale. It was the idea also, that this same spermaceti was +that quickening humor of the Greenland Whale which the first syllable +of the word literally expresses. In those times, also, spermaceti was +exceedingly scarce, not being used for light, but only as an ointment +and medicament. It was only to be had from the druggists as you +nowadays buy an ounce of rhubarb. When, as I opine, in the course of +time, the true nature of spermaceti became known, its original name was +still retained by the dealers; no doubt to enhance its value by a +notion so strangely significant of its scarcity. And so the appellation +must at last have come to be bestowed upon the whale from which this +spermaceti was really derived. + +BOOK I. (_Folio_), CHAPTER II. (_Right Whale_).—In one respect this is +the most venerable of the leviathans, being the one first regularly +hunted by man. It yields the article commonly known as whalebone or +baleen; and the oil specially known as “whale oil,” an inferior article +in commerce. Among the fishermen, he is indiscriminately designated by +all the following titles: The Whale; the Greenland Whale; the Black +Whale; the Great Whale; the True Whale; the Right Whale. There is a +deal of obscurity concerning the identity of the species thus +multitudinously baptised. What then is the whale, which I include in +the second species of my Folios? It is the Great Mysticetus of the +English naturalists; the Greenland Whale of the English whalemen; the +Baleine Ordinaire of the French whalemen; the Growlands Walfish of the +Swedes. It is the whale which for more than two centuries past has been +hunted by the Dutch and English in the Arctic seas; it is the whale +which the American fishermen have long pursued in the Indian ocean, on +the Brazil Banks, on the Nor’ West Coast, and various other parts of +the world, designated by them Right Whale Cruising Grounds. + +Some pretend to see a difference between the Greenland whale of the +English and the right whale of the Americans. But they precisely agree +in all their grand features; nor has there yet been presented a single +determinate fact upon which to ground a radical distinction. It is by +endless subdivisions based upon the most inconclusive differences, that +some departments of natural history become so repellingly intricate. +The right whale will be elsewhere treated of at some length, with +reference to elucidating the sperm whale. + +BOOK I. (_Folio_), CHAPTER III. (_Fin-Back_).—Under this head I reckon +a monster which, by the various names of Fin-Back, Tall-Spout, and +Long-John, has been seen almost in every sea and is commonly the whale +whose distant jet is so often descried by passengers crossing the +Atlantic, in the New York packet-tracks. In the length he attains, and +in his baleen, the Fin-back resembles the right whale, but is of a less +portly girth, and a lighter colour, approaching to olive. His great +lips present a cable-like aspect, formed by the intertwisting, slanting +folds of large wrinkles. His grand distinguishing feature, the fin, +from which he derives his name, is often a conspicuous object. This fin +is some three or four feet long, growing vertically from the hinder +part of the back, of an angular shape, and with a very sharp pointed +end. Even if not the slightest other part of the creature be visible, +this isolated fin will, at times, be seen plainly projecting from the +surface. When the sea is moderately calm, and slightly marked with +spherical ripples, and this gnomon-like fin stands up and casts shadows +upon the wrinkled surface, it may well be supposed that the watery +circle surrounding it somewhat resembles a dial, with its style and +wavy hour-lines graved on it. On that Ahaz-dial the shadow often goes +back. The Fin-Back is not gregarious. He seems a whale-hater, as some +men are man-haters. Very shy; always going solitary; unexpectedly +rising to the surface in the remotest and most sullen waters; his +straight and single lofty jet rising like a tall misanthropic spear +upon a barren plain; gifted with such wondrous power and velocity in +swimming, as to defy all present pursuit from man; this leviathan seems +the banished and unconquerable Cain of his race, bearing for his mark +that style upon his back. From having the baleen in his mouth, the +Fin-Back is sometimes included with the right whale, among a theoretic +species denominated _Whalebone whales_, that is, whales with baleen. Of +these so called Whalebone whales, there would seem to be several +varieties, most of which, however, are little known. Broad-nosed whales +and beaked whales; pike-headed whales; bunched whales; under-jawed +whales and rostrated whales, are the fishermen’s names for a few sorts. + +In connection with this appellative of “Whalebone whales,” it is of +great importance to mention, that however such a nomenclature may be +convenient in facilitating allusions to some kind of whales, yet it is +in vain to attempt a clear classification of the Leviathan, founded +upon either his baleen, or hump, or fin, or teeth; notwithstanding that +those marked parts or features very obviously seem better adapted to +afford the basis for a regular system of Cetology than any other +detached bodily distinctions, which the whale, in his kinds, presents. +How then? The baleen, hump, back-fin, and teeth; these are things whose +peculiarities are indiscriminately dispersed among all sorts of whales, +without any regard to what may be the nature of their structure in +other and more essential particulars. Thus, the sperm whale and the +humpbacked whale, each has a hump; but there the similitude ceases. +Then, this same humpbacked whale and the Greenland whale, each of these +has baleen; but there again the similitude ceases. And it is just the +same with the other parts above mentioned. In various sorts of whales, +they form such irregular combinations; or, in the case of any one of +them detached, such an irregular isolation; as utterly to defy all +general methodization formed upon such a basis. On this rock every one +of the whale-naturalists has split. + +But it may possibly be conceived that, in the internal parts of the +whale, in his anatomy—there, at least, we shall be able to hit the +right classification. Nay; what thing, for example, is there in the +Greenland whale’s anatomy more striking than his baleen? Yet we have +seen that by his baleen it is impossible correctly to classify the +Greenland whale. And if you descend into the bowels of the various +leviathans, why there you will not find distinctions a fiftieth part as +available to the systematizer as those external ones already +enumerated. What then remains? nothing but to take hold of the whales +bodily, in their entire liberal volume, and boldly sort them that way. +And this is the Bibliographical system here adopted; and it is the only +one that can possibly succeed, for it alone is practicable. To proceed. + +BOOK I. (_Folio_) CHAPTER IV. (_Hump Back_).—This whale is often seen +on the northern American coast. He has been frequently captured there, +and towed into harbor. He has a great pack on him like a peddler; or +you might call him the Elephant and Castle whale. At any rate, the +popular name for him does not sufficiently distinguish him, since the +sperm whale also has a hump though a smaller one. His oil is not very +valuable. He has baleen. He is the most gamesome and light-hearted of +all the whales, making more gay foam and white water generally than any +other of them. + +BOOK I. (_Folio_), CHAPTER V. (_Razor Back_).—Of this whale little is +known but his name. I have seen him at a distance off Cape Horn. Of a +retiring nature, he eludes both hunters and philosophers. Though no +coward, he has never yet shown any part of him but his back, which +rises in a long sharp ridge. Let him go. I know little more of him, nor +does anybody else. + +BOOK I. (_Folio_), CHAPTER VI. (_Sulphur Bottom_).—Another retiring +gentleman, with a brimstone belly, doubtless got by scraping along the +Tartarian tiles in some of his profounder divings. He is seldom seen; +at least I have never seen him except in the remoter southern seas, and +then always at too great a distance to study his countenance. He is +never chased; he would run away with rope-walks of line. Prodigies are +told of him. Adieu, Sulphur Bottom! I can say nothing more that is true +of ye, nor can the oldest Nantucketer. + +Thus ends BOOK I. (_Folio_), and now begins BOOK II. (_Octavo_). + +OCTAVOES.*—These embrace the whales of middling magnitude, among which +present may be numbered:—I., the _Grampus_; II., the _Black Fish_; +III., the _Narwhale_; IV., the _Thrasher_; V., the _Killer_. + +*Why this book of whales is not denominated the Quarto is very plain. +Because, while the whales of this order, though smaller than those of +the former order, nevertheless retain a proportionate likeness to them +in figure, yet the bookbinder’s Quarto volume in its dimensioned form +does not preserve the shape of the Folio volume, but the Octavo volume +does. + +BOOK II. (_Octavo_), CHAPTER I. (_Grampus_).—Though this fish, whose +loud sonorous breathing, or rather blowing, has furnished a proverb to +landsmen, is so well known a denizen of the deep, yet is he not +popularly classed among whales. But possessing all the grand +distinctive features of the leviathan, most naturalists have recognised +him for one. He is of moderate octavo size, varying from fifteen to +twenty-five feet in length, and of corresponding dimensions round the +waist. He swims in herds; he is never regularly hunted, though his oil +is considerable in quantity, and pretty good for light. By some +fishermen his approach is regarded as premonitory of the advance of the +great sperm whale. + +BOOK II. (_Octavo_), CHAPTER II. (_Black Fish_).—I give the popular +fishermen’s names for all these fish, for generally they are the best. +Where any name happens to be vague or inexpressive, I shall say so, and +suggest another. I do so now, touching the Black Fish, so-called, +because blackness is the rule among almost all whales. So, call him the +Hyena Whale, if you please. His voracity is well known, and from the +circumstance that the inner angles of his lips are curved upwards, he +carries an everlasting Mephistophelean grin on his face. This whale +averages some sixteen or eighteen feet in length. He is found in almost +all latitudes. He has a peculiar way of showing his dorsal hooked fin +in swimming, which looks something like a Roman nose. When not more +profitably employed, the sperm whale hunters sometimes capture the +Hyena whale, to keep up the supply of cheap oil for domestic +employment—as some frugal housekeepers, in the absence of company, and +quite alone by themselves, burn unsavory tallow instead of odorous wax. +Though their blubber is very thin, some of these whales will yield you +upwards of thirty gallons of oil. + +BOOK II. (_Octavo_), CHAPTER III. (_Narwhale_), that is, _Nostril +whale_.—Another instance of a curiously named whale, so named I suppose +from his peculiar horn being originally mistaken for a peaked nose. The +creature is some sixteen feet in length, while its horn averages five +feet, though some exceed ten, and even attain to fifteen feet. Strictly +speaking, this horn is but a lengthened tusk, growing out from the jaw +in a line a little depressed from the horizontal. But it is only found +on the sinister side, which has an ill effect, giving its owner +something analogous to the aspect of a clumsy left-handed man. What +precise purpose this ivory horn or lance answers, it would be hard to +say. It does not seem to be used like the blade of the sword-fish and +bill-fish; though some sailors tell me that the Narwhale employs it for +a rake in turning over the bottom of the sea for food. Charley Coffin +said it was used for an ice-piercer; for the Narwhale, rising to the +surface of the Polar Sea, and finding it sheeted with ice, thrusts his +horn up, and so breaks through. But you cannot prove either of these +surmises to be correct. My own opinion is, that however this one-sided +horn may really be used by the Narwhale—however that may be—it would +certainly be very convenient to him for a folder in reading pamphlets. +The Narwhale I have heard called the Tusked whale, the Horned whale, +and the Unicorn whale. He is certainly a curious example of the +Unicornism to be found in almost every kingdom of animated nature. From +certain cloistered old authors I have gathered that this same +sea-unicorn’s horn was in ancient days regarded as the great antidote +against poison, and as such, preparations of it brought immense prices. +It was also distilled to a volatile salts for fainting ladies, the same +way that the horns of the male deer are manufactured into hartshorn. +Originally it was in itself accounted an object of great curiosity. +Black Letter tells me that Sir Martin Frobisher on his return from that +voyage, when Queen Bess did gallantly wave her jewelled hand to him +from a window of Greenwich Palace, as his bold ship sailed down the +Thames; “when Sir Martin returned from that voyage,” saith Black +Letter, “on bended knees he presented to her highness a prodigious long +horn of the Narwhale, which for a long period after hung in the castle +at Windsor.” An Irish author avers that the Earl of Leicester, on +bended knees, did likewise present to her highness another horn, +pertaining to a land beast of the unicorn nature. + +The Narwhale has a very picturesque, leopard-like look, being of a +milk-white ground colour, dotted with round and oblong spots of black. +His oil is very superior, clear and fine; but there is little of it, +and he is seldom hunted. He is mostly found in the circumpolar seas. + +BOOK II. (_Octavo_), CHAPTER IV. (_Killer_).—Of this whale little is +precisely known to the Nantucketer, and nothing at all to the professed +naturalist. From what I have seen of him at a distance, I should say +that he was about the bigness of a grampus. He is very savage—a sort of +Feegee fish. He sometimes takes the great Folio whales by the lip, and +hangs there like a leech, till the mighty brute is worried to death. +The Killer is never hunted. I never heard what sort of oil he has. +Exception might be taken to the name bestowed upon this whale, on the +ground of its indistinctness. For we are all killers, on land and on +sea; Bonapartes and Sharks included. + +BOOK II. (_Octavo_), CHAPTER V. (_Thrasher_).—This gentleman is famous +for his tail, which he uses for a ferule in thrashing his foes. He +mounts the Folio whale’s back, and as he swims, he works his passage by +flogging him; as some schoolmasters get along in the world by a similar +process. Still less is known of the Thrasher than of the Killer. Both +are outlaws, even in the lawless seas. + + Thus ends BOOK II. (_Octavo_), and begins BOOK III. (_Duodecimo_). + +DUODECIMOES.—These include the smaller whales. I. The Huzza Porpoise. +II. The Algerine Porpoise. III. The Mealy-mouthed Porpoise. + +To those who have not chanced specially to study the subject, it may +possibly seem strange, that fishes not commonly exceeding four or five +feet should be marshalled among WHALES—a word, which, in the popular +sense, always conveys an idea of hugeness. But the creatures set down +above as Duodecimoes are infallibly whales, by the terms of my +definition of what a whale is—_i.e._ a spouting fish, with a horizontal +tail. + +BOOK III. (_Duodecimo_), CHAPTER 1. (_Huzza Porpoise_).—This is the +common porpoise found almost all over the globe. The name is of my own +bestowal; for there are more than one sort of porpoises, and something +must be done to distinguish them. I call him thus, because he always +swims in hilarious shoals, which upon the broad sea keep tossing +themselves to heaven like caps in a Fourth-of-July crowd. Their +appearance is generally hailed with delight by the mariner. Full of +fine spirits, they invariably come from the breezy billows to windward. +They are the lads that always live before the wind. They are accounted +a lucky omen. If you yourself can withstand three cheers at beholding +these vivacious fish, then heaven help ye; the spirit of godly +gamesomeness is not in ye. A well-fed, plump Huzza Porpoise will yield +you one good gallon of good oil. But the fine and delicate fluid +extracted from his jaws is exceedingly valuable. It is in request among +jewellers and watchmakers. Sailors put it on their hones. Porpoise meat +is good eating, you know. It may never have occurred to you that a +porpoise spouts. Indeed, his spout is so small that it is not very +readily discernible. But the next time you have a chance, watch him; +and you will then see the great Sperm whale himself in miniature. + +BOOK III. (_Duodecimo_), CHAPTER II. (_Algerine Porpoise_).—A pirate. +Very savage. He is only found, I think, in the Pacific. He is somewhat +larger than the Huzza Porpoise, but much of the same general make. +Provoke him, and he will buckle to a shark. I have lowered for him many +times, but never yet saw him captured. + +BOOK III. (_Duodecimo_), CHAPTER III. (_Mealy-mouthed Porpoise_).—The +largest kind of Porpoise; and only found in the Pacific, so far as it +is known. The only English name, by which he has hitherto been +designated, is that of the fishers—Right-Whale Porpoise, from the +circumstance that he is chiefly found in the vicinity of that Folio. In +shape, he differs in some degree from the Huzza Porpoise, being of a +less rotund and jolly girth; indeed, he is of quite a neat and +gentleman-like figure. He has no fins on his back (most other porpoises +have), he has a lovely tail, and sentimental Indian eyes of a hazel +hue. But his mealy-mouth spoils all. Though his entire back down to his +side fins is of a deep sable, yet a boundary line, distinct as the mark +in a ship’s hull, called the “bright waist,” that line streaks him from +stem to stern, with two separate colours, black above and white below. +The white comprises part of his head, and the whole of his mouth, which +makes him look as if he had just escaped from a felonious visit to a +meal-bag. A most mean and mealy aspect! His oil is much like that of +the common porpoise. + + * * * * * * + +Beyond the DUODECIMO, this system does not proceed, inasmuch as the +Porpoise is the smallest of the whales. Above, you have all the +Leviathans of note. But there are a rabble of uncertain, fugitive, +half-fabulous whales, which, as an American whaleman, I know by +reputation, but not personally. I shall enumerate them by their +fore-castle appellations; for possibly such a list may be valuable to +future investigators, who may complete what I have here but begun. If +any of the following whales, shall hereafter be caught and marked, then +he can readily be incorporated into this System, according to his +Folio, Octavo, or Duodecimo magnitude:—The Bottle-Nose Whale; the Junk +Whale; the Pudding-Headed Whale; the Cape Whale; the Leading Whale; the +Cannon Whale; the Scragg Whale; the Coppered Whale; the Elephant Whale; +the Iceberg Whale; the Quog Whale; the Blue Whale; etc. From Icelandic, +Dutch, and old English authorities, there might be quoted other lists +of uncertain whales, blessed with all manner of uncouth names. But I +omit them as altogether obsolete; and can hardly help suspecting them +for mere sounds, full of Leviathanism, but signifying nothing. + +Finally: It was stated at the outset, that this system would not be +here, and at once, perfected. You cannot but plainly see that I have +kept my word. But I now leave my cetological System standing thus +unfinished, even as the great Cathedral of Cologne was left, with the +crane still standing upon the top of the uncompleted tower. For small +erections may be finished by their first architects; grand ones, true +ones, ever leave the copestone to posterity. God keep me from ever +completing anything. This whole book is but a draught—nay, but the +draught of a draught. Oh, Time, Strength, Cash, and Patience! + + +CHAPTER 33. The Specksnyder. + +Concerning the officers of the whale-craft, this seems as good a place +as any to set down a little domestic peculiarity on ship-board, arising +from the existence of the harpooneer class of officers, a class unknown +of course in any other marine than the whale-fleet. + +The large importance attached to the harpooneer’s vocation is evinced +by the fact, that originally in the old Dutch Fishery, two centuries +and more ago, the command of a whale ship was not wholly lodged in the +person now called the captain, but was divided between him and an +officer called the Specksnyder. Literally this word means Fat-Cutter; +usage, however, in time made it equivalent to Chief Harpooneer. In +those days, the captain’s authority was restricted to the navigation +and general management of the vessel; while over the whale-hunting +department and all its concerns, the Specksnyder or Chief Harpooneer +reigned supreme. In the British Greenland Fishery, under the corrupted +title of Specksioneer, this old Dutch official is still retained, but +his former dignity is sadly abridged. At present he ranks simply as +senior Harpooneer; and as such, is but one of the captain’s more +inferior subalterns. Nevertheless, as upon the good conduct of the +harpooneers the success of a whaling voyage largely depends, and since +in the American Fishery he is not only an important officer in the +boat, but under certain circumstances (night watches on a whaling +ground) the command of the ship’s deck is also his; therefore the grand +political maxim of the sea demands, that he should nominally live apart +from the men before the mast, and be in some way distinguished as their +professional superior; though always, by them, familiarly regarded as +their social equal. + +Now, the grand distinction drawn between officer and man at sea, is +this—the first lives aft, the last forward. Hence, in whale-ships and +merchantmen alike, the mates have their quarters with the captain; and +so, too, in most of the American whalers the harpooneers are lodged in +the after part of the ship. That is to say, they take their meals in +the captain’s cabin, and sleep in a place indirectly communicating with +it. + +Though the long period of a Southern whaling voyage (by far the longest +of all voyages now or ever made by man), the peculiar perils of it, and +the community of interest prevailing among a company, all of whom, high +or low, depend for their profits, not upon fixed wages, but upon their +common luck, together with their common vigilance, intrepidity, and +hard work; though all these things do in some cases tend to beget a +less rigorous discipline than in merchantmen generally; yet, never mind +how much like an old Mesopotamian family these whalemen may, in some +primitive instances, live together; for all that, the punctilious +externals, at least, of the quarter-deck are seldom materially relaxed, +and in no instance done away. Indeed, many are the Nantucket ships in +which you will see the skipper parading his quarter-deck with an elated +grandeur not surpassed in any military navy; nay, extorting almost as +much outward homage as if he wore the imperial purple, and not the +shabbiest of pilot-cloth. + +And though of all men the moody captain of the Pequod was the least +given to that sort of shallowest assumption; and though the only homage +he ever exacted, was implicit, instantaneous obedience; though he +required no man to remove the shoes from his feet ere stepping upon the +quarter-deck; and though there were times when, owing to peculiar +circumstances connected with events hereafter to be detailed, he +addressed them in unusual terms, whether of condescension or _in +terrorem_, or otherwise; yet even Captain Ahab was by no means +unobservant of the paramount forms and usages of the sea. + +Nor, perhaps, will it fail to be eventually perceived, that behind +those forms and usages, as it were, he sometimes masked himself; +incidentally making use of them for other and more private ends than +they were legitimately intended to subserve. That certain sultanism of +his brain, which had otherwise in a good degree remained unmanifested; +through those forms that same sultanism became incarnate in an +irresistible dictatorship. For be a man’s intellectual superiority what +it will, it can never assume the practical, available supremacy over +other men, without the aid of some sort of external arts and +entrenchments, always, in themselves, more or less paltry and base. +This it is, that for ever keeps God’s true princes of the Empire from +the world’s hustings; and leaves the highest honors that this air can +give, to those men who become famous more through their infinite +inferiority to the choice hidden handful of the Divine Inert, than +through their undoubted superiority over the dead level of the mass. +Such large virtue lurks in these small things when extreme political +superstitions invest them, that in some royal instances even to idiot +imbecility they have imparted potency. But when, as in the case of +Nicholas the Czar, the ringed crown of geographical empire encircles an +imperial brain; then, the plebeian herds crouch abased before the +tremendous centralization. Nor, will the tragic dramatist who would +depict mortal indomitableness in its fullest sweep and direct swing, +ever forget a hint, incidentally so important in his art, as the one +now alluded to. + +But Ahab, my Captain, still moves before me in all his Nantucket +grimness and shagginess; and in this episode touching Emperors and +Kings, I must not conceal that I have only to do with a poor old +whale-hunter like him; and, therefore, all outward majestical trappings +and housings are denied me. Oh, Ahab! what shall be grand in thee, it +must needs be plucked at from the skies, and dived for in the deep, and +featured in the unbodied air! + + +CHAPTER 34. The Cabin-Table. + +It is noon; and Dough-Boy, the steward, thrusting his pale +loaf-of-bread face from the cabin-scuttle, announces dinner to his lord +and master; who, sitting in the lee quarter-boat, has just been taking +an observation of the sun; and is now mutely reckoning the latitude on +the smooth, medallion-shaped tablet, reserved for that daily purpose on +the upper part of his ivory leg. From his complete inattention to the +tidings, you would think that moody Ahab had not heard his menial. But +presently, catching hold of the mizen shrouds, he swings himself to the +deck, and in an even, unexhilarated voice, saying, “Dinner, Mr. +Starbuck,” disappears into the cabin. + +When the last echo of his sultan’s step has died away, and Starbuck, +the first Emir, has every reason to suppose that he is seated, then +Starbuck rouses from his quietude, takes a few turns along the planks, +and, after a grave peep into the binnacle, says, with some touch of +pleasantness, “Dinner, Mr. Stubb,” and descends the scuttle. The second +Emir lounges about the rigging awhile, and then slightly shaking the +main brace, to see whether it will be all right with that important +rope, he likewise takes up the old burden, and with a rapid “Dinner, +Mr. Flask,” follows after his predecessors. + +But the third Emir, now seeing himself all alone on the quarter-deck, +seems to feel relieved from some curious restraint; for, tipping all +sorts of knowing winks in all sorts of directions, and kicking off his +shoes, he strikes into a sharp but noiseless squall of a hornpipe right +over the Grand Turk’s head; and then, by a dexterous sleight, pitching +his cap up into the mizentop for a shelf, he goes down rollicking so +far at least as he remains visible from the deck, reversing all other +processions, by bringing up the rear with music. But ere stepping into +the cabin doorway below, he pauses, ships a new face altogether, and, +then, independent, hilarious little Flask enters King Ahab’s presence, +in the character of Abjectus, or the Slave. + +It is not the least among the strange things bred by the intense +artificialness of sea-usages, that while in the open air of the deck +some officers will, upon provocation, bear themselves boldly and +defyingly enough towards their commander; yet, ten to one, let those +very officers the next moment go down to their customary dinner in that +same commander’s cabin, and straightway their inoffensive, not to say +deprecatory and humble air towards him, as he sits at the head of the +table; this is marvellous, sometimes most comical. Wherefore this +difference? A problem? Perhaps not. To have been Belshazzar, King of +Babylon; and to have been Belshazzar, not haughtily but courteously, +therein certainly must have been some touch of mundane grandeur. But he +who in the rightly regal and intelligent spirit presides over his own +private dinner-table of invited guests, that man’s unchallenged power +and dominion of individual influence for the time; that man’s royalty +of state transcends Belshazzar’s, for Belshazzar was not the greatest. +Who has but once dined his friends, has tasted what it is to be Cæsar. +It is a witchery of social czarship which there is no withstanding. +Now, if to this consideration you superadd the official supremacy of a +ship-master, then, by inference, you will derive the cause of that +peculiarity of sea-life just mentioned. + +Over his ivory-inlaid table, Ahab presided like a mute, maned sea-lion +on the white coral beach, surrounded by his warlike but still +deferential cubs. In his own proper turn, each officer waited to be +served. They were as little children before Ahab; and yet, in Ahab, +there seemed not to lurk the smallest social arrogance. With one mind, +their intent eyes all fastened upon the old man’s knife, as he carved +the chief dish before him. I do not suppose that for the world they +would have profaned that moment with the slightest observation, even +upon so neutral a topic as the weather. No! And when reaching out his +knife and fork, between which the slice of beef was locked, Ahab +thereby motioned Starbuck’s plate towards him, the mate received his +meat as though receiving alms; and cut it tenderly; and a little +started if, perchance, the knife grazed against the plate; and chewed +it noiselessly; and swallowed it, not without circumspection. For, like +the Coronation banquet at Frankfort, where the German Emperor +profoundly dines with the seven Imperial Electors, so these cabin meals +were somehow solemn meals, eaten in awful silence; and yet at table old +Ahab forbade not conversation; only he himself was dumb. What a relief +it was to choking Stubb, when a rat made a sudden racket in the hold +below. And poor little Flask, he was the youngest son, and little boy +of this weary family party. His were the shinbones of the saline beef; +his would have been the drumsticks. For Flask to have presumed to help +himself, this must have seemed to him tantamount to larceny in the +first degree. Had he helped himself at that table, doubtless, never +more would he have been able to hold his head up in this honest world; +nevertheless, strange to say, Ahab never forbade him. And had Flask +helped himself, the chances were Ahab had never so much as noticed it. +Least of all, did Flask presume to help himself to butter. Whether he +thought the owners of the ship denied it to him, on account of its +clotting his clear, sunny complexion; or whether he deemed that, on so +long a voyage in such marketless waters, butter was at a premium, and +therefore was not for him, a subaltern; however it was, Flask, alas! +was a butterless man! + +Another thing. Flask was the last person down at the dinner, and Flask +is the first man up. Consider! For hereby Flask’s dinner was badly +jammed in point of time. Starbuck and Stubb both had the start of him; +and yet they also have the privilege of lounging in the rear. If Stubb +even, who is but a peg higher than Flask, happens to have but a small +appetite, and soon shows symptoms of concluding his repast, then Flask +must bestir himself, he will not get more than three mouthfuls that +day; for it is against holy usage for Stubb to precede Flask to the +deck. Therefore it was that Flask once admitted in private, that ever +since he had arisen to the dignity of an officer, from that moment he +had never known what it was to be otherwise than hungry, more or less. +For what he ate did not so much relieve his hunger, as keep it immortal +in him. Peace and satisfaction, thought Flask, have for ever departed +from my stomach. I am an officer; but, how I wish I could fish a bit of +old-fashioned beef in the forecastle, as I used to when I was before +the mast. There’s the fruits of promotion now; there’s the vanity of +glory: there’s the insanity of life! Besides, if it were so that any +mere sailor of the Pequod had a grudge against Flask in Flask’s +official capacity, all that sailor had to do, in order to obtain ample +vengeance, was to go aft at dinner-time, and get a peep at Flask +through the cabin sky-light, sitting silly and dumfoundered before +awful Ahab. + +Now, Ahab and his three mates formed what may be called the first table +in the Pequod’s cabin. After their departure, taking place in inverted +order to their arrival, the canvas cloth was cleared, or rather was +restored to some hurried order by the pallid steward. And then the +three harpooneers were bidden to the feast, they being its residuary +legatees. They made a sort of temporary servants’ hall of the high and +mighty cabin. + +In strange contrast to the hardly tolerable constraint and nameless +invisible domineerings of the captain’s table, was the entire care-free +license and ease, the almost frantic democracy of those inferior +fellows the harpooneers. While their masters, the mates, seemed afraid +of the sound of the hinges of their own jaws, the harpooneers chewed +their food with such a relish that there was a report to it. They dined +like lords; they filled their bellies like Indian ships all day loading +with spices. Such portentous appetites had Queequeg and Tashtego, that +to fill out the vacancies made by the previous repast, often the pale +Dough-Boy was fain to bring on a great baron of salt-junk, seemingly +quarried out of the solid ox. And if he were not lively about it, if he +did not go with a nimble hop-skip-and-jump, then Tashtego had an +ungentlemanly way of accelerating him by darting a fork at his back, +harpoon-wise. And once Daggoo, seized with a sudden humor, assisted +Dough-Boy’s memory by snatching him up bodily, and thrusting his head +into a great empty wooden trencher, while Tashtego, knife in hand, +began laying out the circle preliminary to scalping him. He was +naturally a very nervous, shuddering sort of little fellow, this +bread-faced steward; the progeny of a bankrupt baker and a hospital +nurse. And what with the standing spectacle of the black terrific Ahab, +and the periodical tumultuous visitations of these three savages, +Dough-Boy’s whole life was one continual lip-quiver. Commonly, after +seeing the harpooneers furnished with all things they demanded, he +would escape from their clutches into his little pantry adjoining, and +fearfully peep out at them through the blinds of its door, till all was +over. + +It was a sight to see Queequeg seated over against Tashtego, opposing +his filed teeth to the Indian’s: crosswise to them, Daggoo seated on +the floor, for a bench would have brought his hearse-plumed head to the +low carlines; at every motion of his colossal limbs, making the low +cabin framework to shake, as when an African elephant goes passenger in +a ship. But for all this, the great negro was wonderfully abstemious, +not to say dainty. It seemed hardly possible that by such comparatively +small mouthfuls he could keep up the vitality diffused through so +broad, baronial, and superb a person. But, doubtless, this noble savage +fed strong and drank deep of the abounding element of air; and through +his dilated nostrils snuffed in the sublime life of the worlds. Not by +beef or by bread, are giants made or nourished. But Queequeg, he had a +mortal, barbaric smack of the lip in eating—an ugly sound enough—so +much so, that the trembling Dough-Boy almost looked to see whether any +marks of teeth lurked in his own lean arms. And when he would hear +Tashtego singing out for him to produce himself, that his bones might +be picked, the simple-witted steward all but shattered the crockery +hanging round him in the pantry, by his sudden fits of the palsy. Nor +did the whetstone which the harpooneers carried in their pockets, for +their lances and other weapons; and with which whetstones, at dinner, +they would ostentatiously sharpen their knives; that grating sound did +not at all tend to tranquillize poor Dough-Boy. How could he forget +that in his Island days, Queequeg, for one, must certainly have been +guilty of some murderous, convivial indiscretions. Alas! Dough-Boy! +hard fares the white waiter who waits upon cannibals. Not a napkin +should he carry on his arm, but a buckler. In good time, though, to his +great delight, the three salt-sea warriors would rise and depart; to +his credulous, fable-mongering ears, all their martial bones jingling +in them at every step, like Moorish scimetars in scabbards. + +But, though these barbarians dined in the cabin, and nominally lived +there; still, being anything but sedentary in their habits, they were +scarcely ever in it except at mealtimes, and just before sleeping-time, +when they passed through it to their own peculiar quarters. + +In this one matter, Ahab seemed no exception to most American whale +captains, who, as a set, rather incline to the opinion that by rights +the ship’s cabin belongs to them; and that it is by courtesy alone that +anybody else is, at any time, permitted there. So that, in real truth, +the mates and harpooneers of the Pequod might more properly be said to +have lived out of the cabin than in it. For when they did enter it, it +was something as a street-door enters a house; turning inwards for a +moment, only to be turned out the next; and, as a permanent thing, +residing in the open air. Nor did they lose much hereby; in the cabin +was no companionship; socially, Ahab was inaccessible. Though nominally +included in the census of Christendom, he was still an alien to it. He +lived in the world, as the last of the Grisly Bears lived in settled +Missouri. And as when Spring and Summer had departed, that wild Logan +of the woods, burying himself in the hollow of a tree, lived out the +winter there, sucking his own paws; so, in his inclement, howling old +age, Ahab’s soul, shut up in the caved trunk of his body, there fed +upon the sullen paws of its gloom! + + +CHAPTER 35. The Mast-Head. + +It was during the more pleasant weather, that in due rotation with the +other seamen my first mast-head came round. + +In most American whalemen the mast-heads are manned almost +simultaneously with the vessel’s leaving her port; even though she may +have fifteen thousand miles, and more, to sail ere reaching her proper +cruising ground. And if, after a three, four, or five years’ voyage she +is drawing nigh home with anything empty in her—say, an empty vial +even—then, her mast-heads are kept manned to the last; and not till her +skysail-poles sail in among the spires of the port, does she altogether +relinquish the hope of capturing one whale more. + +Now, as the business of standing mast-heads, ashore or afloat, is a +very ancient and interesting one, let us in some measure expatiate +here. I take it, that the earliest standers of mast-heads were the old +Egyptians; because, in all my researches, I find none prior to them. +For though their progenitors, the builders of Babel, must doubtless, by +their tower, have intended to rear the loftiest mast-head in all Asia, +or Africa either; yet (ere the final truck was put to it) as that great +stone mast of theirs may be said to have gone by the board, in the +dread gale of God’s wrath; therefore, we cannot give these Babel +builders priority over the Egyptians. And that the Egyptians were a +nation of mast-head standers, is an assertion based upon the general +belief among archæologists, that the first pyramids were founded for +astronomical purposes: a theory singularly supported by the peculiar +stair-like formation of all four sides of those edifices; whereby, with +prodigious long upliftings of their legs, those old astronomers were +wont to mount to the apex, and sing out for new stars; even as the +look-outs of a modern ship sing out for a sail, or a whale just bearing +in sight. In Saint Stylites, the famous Christian hermit of old times, +who built him a lofty stone pillar in the desert and spent the whole +latter portion of his life on its summit, hoisting his food from the +ground with a tackle; in him we have a remarkable instance of a +dauntless stander-of-mast-heads; who was not to be driven from his +place by fogs or frosts, rain, hail, or sleet; but valiantly facing +everything out to the last, literally died at his post. Of modern +standers-of-mast-heads we have but a lifeless set; mere stone, iron, +and bronze men; who, though well capable of facing out a stiff gale, +are still entirely incompetent to the business of singing out upon +discovering any strange sight. There is Napoleon; who, upon the top of +the column of Vendome, stands with arms folded, some one hundred and +fifty feet in the air; careless, now, who rules the decks below; +whether Louis Philippe, Louis Blanc, or Louis the Devil. Great +Washington, too, stands high aloft on his towering main-mast in +Baltimore, and like one of Hercules’ pillars, his column marks that +point of human grandeur beyond which few mortals will go. Admiral +Nelson, also, on a capstan of gun-metal, stands his mast-head in +Trafalgar Square; and ever when most obscured by that London smoke, +token is yet given that a hidden hero is there; for where there is +smoke, must be fire. But neither great Washington, nor Napoleon, nor +Nelson, will answer a single hail from below, however madly invoked to +befriend by their counsels the distracted decks upon which they gaze; +however it may be surmised, that their spirits penetrate through the +thick haze of the future, and descry what shoals and what rocks must be +shunned. + +It may seem unwarrantable to couple in any respect the mast-head +standers of the land with those of the sea; but that in truth it is not +so, is plainly evinced by an item for which Obed Macy, the sole +historian of Nantucket, stands accountable. The worthy Obed tells us, +that in the early times of the whale fishery, ere ships were regularly +launched in pursuit of the game, the people of that island erected +lofty spars along the sea-coast, to which the look-outs ascended by +means of nailed cleats, something as fowls go upstairs in a hen-house. +A few years ago this same plan was adopted by the Bay whalemen of New +Zealand, who, upon descrying the game, gave notice to the ready-manned +boats nigh the beach. But this custom has now become obsolete; turn we +then to the one proper mast-head, that of a whale-ship at sea. The +three mast-heads are kept manned from sun-rise to sun-set; the seamen +taking their regular turns (as at the helm), and relieving each other +every two hours. In the serene weather of the tropics it is exceedingly +pleasant the mast-head; nay, to a dreamy meditative man it is +delightful. There you stand, a hundred feet above the silent decks, +striding along the deep, as if the masts were gigantic stilts, while +beneath you and between your legs, as it were, swim the hugest monsters +of the sea, even as ships once sailed between the boots of the famous +Colossus at old Rhodes. There you stand, lost in the infinite series of +the sea, with nothing ruffled but the waves. The tranced ship +indolently rolls; the drowsy trade winds blow; everything resolves you +into languor. For the most part, in this tropic whaling life, a sublime +uneventfulness invests you; you hear no news; read no gazettes; extras +with startling accounts of commonplaces never delude you into +unnecessary excitements; you hear of no domestic afflictions; bankrupt +securities; fall of stocks; are never troubled with the thought of what +you shall have for dinner—for all your meals for three years and more +are snugly stowed in casks, and your bill of fare is immutable. + +In one of those southern whalesmen, on a long three or four years’ +voyage, as often happens, the sum of the various hours you spend at the +mast-head would amount to several entire months. And it is much to be +deplored that the place to which you devote so considerable a portion +of the whole term of your natural life, should be so sadly destitute of +anything approaching to a cosy inhabitiveness, or adapted to breed a +comfortable localness of feeling, such as pertains to a bed, a hammock, +a hearse, a sentry box, a pulpit, a coach, or any other of those small +and snug contrivances in which men temporarily isolate themselves. Your +most usual point of perch is the head of the t’ gallant-mast, where you +stand upon two thin parallel sticks (almost peculiar to whalemen) +called the t’ gallant cross-trees. Here, tossed about by the sea, the +beginner feels about as cosy as he would standing on a bull’s horns. To +be sure, in cold weather you may carry your house aloft with you, in +the shape of a watch-coat; but properly speaking the thickest +watch-coat is no more of a house than the unclad body; for as the soul +is glued inside of its fleshy tabernacle, and cannot freely move about +in it, nor even move out of it, without running great risk of perishing +(like an ignorant pilgrim crossing the snowy Alps in winter); so a +watch-coat is not so much of a house as it is a mere envelope, or +additional skin encasing you. You cannot put a shelf or chest of +drawers in your body, and no more can you make a convenient closet of +your watch-coat. + +Concerning all this, it is much to be deplored that the mast-heads of a +southern whale ship are unprovided with those enviable little tents or +pulpits, called _crow’s-nests_, in which the look-outs of a Greenland +whaler are protected from the inclement weather of the frozen seas. In +the fireside narrative of Captain Sleet, entitled “A Voyage among the +Icebergs, in quest of the Greenland Whale, and incidentally for the +re-discovery of the Lost Icelandic Colonies of Old Greenland;” in this +admirable volume, all standers of mast-heads are furnished with a +charmingly circumstantial account of the then recently invented +_crow’s-nest_ of the Glacier, which was the name of Captain Sleet’s +good craft. He called it the _Sleet’s crow’s-nest_, in honor of +himself; he being the original inventor and patentee, and free from all +ridiculous false delicacy, and holding that if we call our own children +after our own names (we fathers being the original inventors and +patentees), so likewise should we denominate after ourselves any other +apparatus we may beget. In shape, the Sleet’s crow’s-nest is something +like a large tierce or pipe; it is open above, however, where it is +furnished with a movable side-screen to keep to windward of your head +in a hard gale. Being fixed on the summit of the mast, you ascend into +it through a little trap-hatch in the bottom. On the after side, or +side next the stern of the ship, is a comfortable seat, with a locker +underneath for umbrellas, comforters, and coats. In front is a leather +rack, in which to keep your speaking trumpet, pipe, telescope, and +other nautical conveniences. When Captain Sleet in person stood his +mast-head in this crow’s-nest of his, he tells us that he always had a +rifle with him (also fixed in the rack), together with a powder flask +and shot, for the purpose of popping off the stray narwhales, or +vagrant sea unicorns infesting those waters; for you cannot +successfully shoot at them from the deck owing to the resistance of the +water, but to shoot down upon them is a very different thing. Now, it +was plainly a labor of love for Captain Sleet to describe, as he does, +all the little detailed conveniences of his crow’s-nest; but though he +so enlarges upon many of these, and though he treats us to a very +scientific account of his experiments in this crow’s-nest, with a small +compass he kept there for the purpose of counteracting the errors +resulting from what is called the “local attraction” of all binnacle +magnets; an error ascribable to the horizontal vicinity of the iron in +the ship’s planks, and in the Glacier’s case, perhaps, to there having +been so many broken-down blacksmiths among her crew; I say, that though +the Captain is very discreet and scientific here, yet, for all his +learned “binnacle deviations,” “azimuth compass observations,” and +“approximate errors,” he knows very well, Captain Sleet, that he was +not so much immersed in those profound magnetic meditations, as to fail +being attracted occasionally towards that well replenished little +case-bottle, so nicely tucked in on one side of his crow’s nest, within +easy reach of his hand. Though, upon the whole, I greatly admire and +even love the brave, the honest, and learned Captain; yet I take it +very ill of him that he should so utterly ignore that case-bottle, +seeing what a faithful friend and comforter it must have been, while +with mittened fingers and hooded head he was studying the mathematics +aloft there in that bird’s nest within three or four perches of the +pole. + +But if we Southern whale-fishers are not so snugly housed aloft as +Captain Sleet and his Greenlandmen were; yet that disadvantage is +greatly counter-balanced by the widely contrasting serenity of those +seductive seas in which we South fishers mostly float. For one, I used +to lounge up the rigging very leisurely, resting in the top to have a +chat with Queequeg, or any one else off duty whom I might find there; +then ascending a little way further, and throwing a lazy leg over the +top-sail yard, take a preliminary view of the watery pastures, and so +at last mount to my ultimate destination. + +Let me make a clean breast of it here, and frankly admit that I kept +but sorry guard. With the problem of the universe revolving in me, how +could I—being left completely to myself at such a thought-engendering +altitude—how could I but lightly hold my obligations to observe all +whale-ships’ standing orders, “Keep your weather eye open, and sing out +every time.” + +And let me in this place movingly admonish you, ye ship-owners of +Nantucket! Beware of enlisting in your vigilant fisheries any lad with +lean brow and hollow eye; given to unseasonable meditativeness; and who +offers to ship with the Phædon instead of Bowditch in his head. Beware +of such an one, I say; your whales must be seen before they can be +killed; and this sunken-eyed young Platonist will tow you ten wakes +round the world, and never make you one pint of sperm the richer. Nor +are these monitions at all unneeded. For nowadays, the whale-fishery +furnishes an asylum for many romantic, melancholy, and absent-minded +young men, disgusted with the carking cares of earth, and seeking +sentiment in tar and blubber. Childe Harold not unfrequently perches +himself upon the mast-head of some luckless disappointed whale-ship, +and in moody phrase ejaculates:— + + +“Roll on, thou deep and dark blue ocean, roll! Ten thousand +blubber-hunters sweep over thee in vain.” + + + +Very often do the captains of such ships take those absent-minded young +philosophers to task, upbraiding them with not feeling sufficient +“interest” in the voyage; half-hinting that they are so hopelessly lost +to all honorable ambition, as that in their secret souls they would +rather not see whales than otherwise. But all in vain; those young +Platonists have a notion that their vision is imperfect; they are +short-sighted; what use, then, to strain the visual nerve? They have +left their opera-glasses at home. + +“Why, thou monkey,” said a harpooneer to one of these lads, “we’ve been +cruising now hard upon three years, and thou hast not raised a whale +yet. Whales are scarce as hen’s teeth whenever thou art up here.” +Perhaps they were; or perhaps there might have been shoals of them in +the far horizon; but lulled into such an opium-like listlessness of +vacant, unconscious reverie is this absent-minded youth by the blending +cadence of waves with thoughts, that at last he loses his identity; +takes the mystic ocean at his feet for the visible image of that deep, +blue, bottomless soul, pervading mankind and nature; and every strange, +half-seen, gliding, beautiful thing that eludes him; every +dimly-discovered, uprising fin of some undiscernible form, seems to him +the embodiment of those elusive thoughts that only people the soul by +continually flitting through it. In this enchanted mood, thy spirit +ebbs away to whence it came; becomes diffused through time and space; +like Cranmer’s sprinkled Pantheistic ashes, forming at last a part of +every shore the round globe over. + +There is no life in thee, now, except that rocking life imparted by a +gently rolling ship; by her, borrowed from the sea; by the sea, from +the inscrutable tides of God. But while this sleep, this dream is on +ye, move your foot or hand an inch; slip your hold at all; and your +identity comes back in horror. Over Descartian vortices you hover. And +perhaps, at mid-day, in the fairest weather, with one half-throttled +shriek you drop through that transparent air into the summer sea, no +more to rise for ever. Heed it well, ye Pantheists! + + +CHAPTER 36. The Quarter-Deck. + +(_Enter Ahab: Then, all._) + +It was not a great while after the affair of the pipe, that one morning +shortly after breakfast, Ahab, as was his wont, ascended the +cabin-gangway to the deck. There most sea-captains usually walk at that +hour, as country gentlemen, after the same meal, take a few turns in +the garden. + +Soon his steady, ivory stride was heard, as to and fro he paced his old +rounds, upon planks so familiar to his tread, that they were all over +dented, like geological stones, with the peculiar mark of his walk. Did +you fixedly gaze, too, upon that ribbed and dented brow; there also, +you would see still stranger foot-prints—the foot-prints of his one +unsleeping, ever-pacing thought. + +But on the occasion in question, those dents looked deeper, even as his +nervous step that morning left a deeper mark. And, so full of his +thought was Ahab, that at every uniform turn that he made, now at the +main-mast and now at the binnacle, you could almost see that thought +turn in him as he turned, and pace in him as he paced; so completely +possessing him, indeed, that it all but seemed the inward mould of +every outer movement. + +“D’ye mark him, Flask?” whispered Stubb; “the chick that’s in him pecks +the shell. ’Twill soon be out.” + +The hours wore on;—Ahab now shut up within his cabin; anon, pacing the +deck, with the same intense bigotry of purpose in his aspect. + +It drew near the close of day. Suddenly he came to a halt by the +bulwarks, and inserting his bone leg into the auger-hole there, and +with one hand grasping a shroud, he ordered Starbuck to send everybody +aft. + +“Sir!” said the mate, astonished at an order seldom or never given on +ship-board except in some extraordinary case. + +“Send everybody aft,” repeated Ahab. “Mast-heads, there! come down!” + +When the entire ship’s company were assembled, and with curious and not +wholly unapprehensive faces, were eyeing him, for he looked not unlike +the weather horizon when a storm is coming up, Ahab, after rapidly +glancing over the bulwarks, and then darting his eyes among the crew, +started from his standpoint; and as though not a soul were nigh him +resumed his heavy turns upon the deck. With bent head and half-slouched +hat he continued to pace, unmindful of the wondering whispering among +the men; till Stubb cautiously whispered to Flask, that Ahab must have +summoned them there for the purpose of witnessing a pedestrian feat. +But this did not last long. Vehemently pausing, he cried:— + +“What do ye do when ye see a whale, men?” + +“Sing out for him!” was the impulsive rejoinder from a score of clubbed +voices. + +“Good!” cried Ahab, with a wild approval in his tones; observing the +hearty animation into which his unexpected question had so magnetically +thrown them. + +“And what do ye next, men?” + +“Lower away, and after him!” + +“And what tune is it ye pull to, men?” + +“A dead whale or a stove boat!” + +More and more strangely and fiercely glad and approving, grew the +countenance of the old man at every shout; while the mariners began to +gaze curiously at each other, as if marvelling how it was that they +themselves became so excited at such seemingly purposeless questions. + +But, they were all eagerness again, as Ahab, now half-revolving in his +pivot-hole, with one hand reaching high up a shroud, and tightly, +almost convulsively grasping it, addressed them thus:— + +“All ye mast-headers have before now heard me give orders about a white +whale. Look ye! d’ye see this Spanish ounce of gold?”—holding up a +broad bright coin to the sun—“it is a sixteen dollar piece, men. D’ye +see it? Mr. Starbuck, hand me yon top-maul.” + +While the mate was getting the hammer, Ahab, without speaking, was +slowly rubbing the gold piece against the skirts of his jacket, as if +to heighten its lustre, and without using any words was meanwhile lowly +humming to himself, producing a sound so strangely muffled and +inarticulate that it seemed the mechanical humming of the wheels of his +vitality in him. + +Receiving the top-maul from Starbuck, he advanced towards the main-mast +with the hammer uplifted in one hand, exhibiting the gold with the +other, and with a high raised voice exclaiming: “Whosoever of ye raises +me a white-headed whale with a wrinkled brow and a crooked jaw; +whosoever of ye raises me that white-headed whale, with three holes +punctured in his starboard fluke—look ye, whosoever of ye raises me +that same white whale, he shall have this gold ounce, my boys!” + +“Huzza! huzza!” cried the seamen, as with swinging tarpaulins they +hailed the act of nailing the gold to the mast. + +“It’s a white whale, I say,” resumed Ahab, as he threw down the +topmaul: “a white whale. Skin your eyes for him, men; look sharp for +white water; if ye see but a bubble, sing out.” + +All this while Tashtego, Daggoo, and Queequeg had looked on with even +more intense interest and surprise than the rest, and at the mention of +the wrinkled brow and crooked jaw they had started as if each was +separately touched by some specific recollection. + +“Captain Ahab,” said Tashtego, “that white whale must be the same that +some call Moby Dick.” + +“Moby Dick?” shouted Ahab. “Do ye know the white whale then, Tash?” + +“Does he fan-tail a little curious, sir, before he goes down?” said the +Gay-Header deliberately. + +“And has he a curious spout, too,” said Daggoo, “very bushy, even for a +parmacetty, and mighty quick, Captain Ahab?” + +“And he have one, two, three—oh! good many iron in him hide, too, +Captain,” cried Queequeg disjointedly, “all twiske-tee be-twisk, like +him—him—” faltering hard for a word, and screwing his hand round and +round as though uncorking a bottle—“like him—him—” + +“Corkscrew!” cried Ahab, “aye, Queequeg, the harpoons lie all twisted +and wrenched in him; aye, Daggoo, his spout is a big one, like a whole +shock of wheat, and white as a pile of our Nantucket wool after the +great annual sheep-shearing; aye, Tashtego, and he fan-tails like a +split jib in a squall. Death and devils! men, it is Moby Dick ye have +seen—Moby Dick—Moby Dick!” + +“Captain Ahab,” said Starbuck, who, with Stubb and Flask, had thus far +been eyeing his superior with increasing surprise, but at last seemed +struck with a thought which somewhat explained all the wonder. “Captain +Ahab, I have heard of Moby Dick—but it was not Moby Dick that took off +thy leg?” + +“Who told thee that?” cried Ahab; then pausing, “Aye, Starbuck; aye, my +hearties all round; it was Moby Dick that dismasted me; Moby Dick that +brought me to this dead stump I stand on now. Aye, aye,” he shouted +with a terrific, loud, animal sob, like that of a heart-stricken moose; +“Aye, aye! it was that accursed white whale that razeed me; made a poor +pegging lubber of me for ever and a day!” Then tossing both arms, with +measureless imprecations he shouted out: “Aye, aye! and I’ll chase him +round Good Hope, and round the Horn, and round the Norway Maelstrom, +and round perdition’s flames before I give him up. And this is what ye +have shipped for, men! to chase that white whale on both sides of land, +and over all sides of earth, till he spouts black blood and rolls fin +out. What say ye, men, will ye splice hands on it, now? I think ye do +look brave.” + +“Aye, aye!” shouted the harpooneers and seamen, running closer to the +excited old man: “A sharp eye for the white whale; a sharp lance for +Moby Dick!” + +“God bless ye,” he seemed to half sob and half shout. “God bless ye, +men. Steward! go draw the great measure of grog. But what’s this long +face about, Mr. Starbuck; wilt thou not chase the white whale? art not +game for Moby Dick?” + +“I am game for his crooked jaw, and for the jaws of Death too, Captain +Ahab, if it fairly comes in the way of the business we follow; but I +came here to hunt whales, not my commander’s vengeance. How many +barrels will thy vengeance yield thee even if thou gettest it, Captain +Ahab? it will not fetch thee much in our Nantucket market.” + +“Nantucket market! Hoot! But come closer, Starbuck; thou requirest a +little lower layer. If money’s to be the measurer, man, and the +accountants have computed their great counting-house the globe, by +girdling it with guineas, one to every three parts of an inch; then, +let me tell thee, that my vengeance will fetch a great premium _here!_” + +“He smites his chest,” whispered Stubb, “what’s that for? methinks it +rings most vast, but hollow.” + +“Vengeance on a dumb brute!” cried Starbuck, “that simply smote thee +from blindest instinct! Madness! To be enraged with a dumb thing, +Captain Ahab, seems blasphemous.” + +“Hark ye yet again—the little lower layer. All visible objects, man, +are but as pasteboard masks. But in each event—in the living act, the +undoubted deed—there, some unknown but still reasoning thing puts forth +the mouldings of its features from behind the unreasoning mask. If man +will strike, strike through the mask! How can the prisoner reach +outside except by thrusting through the wall? To me, the white whale is +that wall, shoved near to me. Sometimes I think there’s naught beyond. +But ’tis enough. He tasks me; he heaps me; I see in him outrageous +strength, with an inscrutable malice sinewing it. That inscrutable +thing is chiefly what I hate; and be the white whale agent, or be the +white whale principal, I will wreak that hate upon him. Talk not to me +of blasphemy, man; I’d strike the sun if it insulted me. For could the +sun do that, then could I do the other; since there is ever a sort of +fair play herein, jealousy presiding over all creations. But not my +master, man, is even that fair play. Who’s over me? Truth hath no +confines. Take off thine eye! more intolerable than fiends’ glarings is +a doltish stare! So, so; thou reddenest and palest; my heat has melted +thee to anger-glow. But look ye, Starbuck, what is said in heat, that +thing unsays itself. There are men from whom warm words are small +indignity. I meant not to incense thee. Let it go. Look! see yonder +Turkish cheeks of spotted tawn—living, breathing pictures painted by +the sun. The Pagan leopards—the unrecking and unworshipping things, +that live; and seek, and give no reasons for the torrid life they feel! +The crew, man, the crew! Are they not one and all with Ahab, in this +matter of the whale? See Stubb! he laughs! See yonder Chilian! he +snorts to think of it. Stand up amid the general hurricane, thy one +tost sapling cannot, Starbuck! And what is it? Reckon it. ’Tis but to +help strike a fin; no wondrous feat for Starbuck. What is it more? From +this one poor hunt, then, the best lance out of all Nantucket, surely +he will not hang back, when every foremast-hand has clutched a +whetstone? Ah! constrainings seize thee; I see! the billow lifts thee! +Speak, but speak!—Aye, aye! thy silence, then, _that_ voices thee. +(_Aside_) Something shot from my dilated nostrils, he has inhaled it in +his lungs. Starbuck now is mine; cannot oppose me now, without +rebellion.” + +“God keep me!—keep us all!” murmured Starbuck, lowly. + +But in his joy at the enchanted, tacit acquiescence of the mate, Ahab +did not hear his foreboding invocation; nor yet the low laugh from the +hold; nor yet the presaging vibrations of the winds in the cordage; nor +yet the hollow flap of the sails against the masts, as for a moment +their hearts sank in. For again Starbuck’s downcast eyes lighted up +with the stubbornness of life; the subterranean laugh died away; the +winds blew on; the sails filled out; the ship heaved and rolled as +before. Ah, ye admonitions and warnings! why stay ye not when ye come? +But rather are ye predictions than warnings, ye shadows! Yet not so +much predictions from without, as verifications of the foregoing things +within. For with little external to constrain us, the innermost +necessities in our being, these still drive us on. + +“The measure! the measure!” cried Ahab. + +Receiving the brimming pewter, and turning to the harpooneers, he +ordered them to produce their weapons. Then ranging them before him +near the capstan, with their harpoons in their hands, while his three +mates stood at his side with their lances, and the rest of the ship’s +company formed a circle round the group; he stood for an instant +searchingly eyeing every man of his crew. But those wild eyes met his, +as the bloodshot eyes of the prairie wolves meet the eye of their +leader, ere he rushes on at their head in the trail of the bison; but, +alas! only to fall into the hidden snare of the Indian. + +“Drink and pass!” he cried, handing the heavy charged flagon to the +nearest seaman. “The crew alone now drink. Round with it, round! Short +draughts—long swallows, men; ’tis hot as Satan’s hoof. So, so; it goes +round excellently. It spiralizes in ye; forks out at the +serpent-snapping eye. Well done; almost drained. That way it went, this +way it comes. Hand it me—here’s a hollow! Men, ye seem the years; so +brimming life is gulped and gone. Steward, refill! + +“Attend now, my braves. I have mustered ye all round this capstan; and +ye mates, flank me with your lances; and ye harpooneers, stand there +with your irons; and ye, stout mariners, ring me in, that I may in some +sort revive a noble custom of my fisherman fathers before me. O men, +you will yet see that—Ha! boy, come back? bad pennies come not sooner. +Hand it me. Why, now, this pewter had run brimming again, wer’t not +thou St. Vitus’ imp—away, thou ague! + +“Advance, ye mates! Cross your lances full before me. Well done! Let me +touch the axis.” So saying, with extended arm, he grasped the three +level, radiating lances at their crossed centre; while so doing, +suddenly and nervously twitched them; meanwhile, glancing intently from +Starbuck to Stubb; from Stubb to Flask. It seemed as though, by some +nameless, interior volition, he would fain have shocked into them the +same fiery emotion accumulated within the Leyden jar of his own +magnetic life. The three mates quailed before his strong, sustained, +and mystic aspect. Stubb and Flask looked sideways from him; the honest +eye of Starbuck fell downright. + +“In vain!” cried Ahab; “but, maybe, ’tis well. For did ye three but +once take the full-forced shock, then mine own electric thing, _that_ +had perhaps expired from out me. Perchance, too, it would have dropped +ye dead. Perchance ye need it not. Down lances! And now, ye mates, I do +appoint ye three cupbearers to my three pagan kinsmen there—yon three +most honorable gentlemen and noblemen, my valiant harpooneers. Disdain +the task? What, when the great Pope washes the feet of beggars, using +his tiara for ewer? Oh, my sweet cardinals! your own condescension, +_that_ shall bend ye to it. I do not order ye; ye will it. Cut your +seizings and draw the poles, ye harpooneers!” + +Silently obeying the order, the three harpooneers now stood with the +detached iron part of their harpoons, some three feet long, held, barbs +up, before him. + +“Stab me not with that keen steel! Cant them; cant them over! know ye +not the goblet end? Turn up the socket! So, so; now, ye cup-bearers, +advance. The irons! take them; hold them while I fill!” Forthwith, +slowly going from one officer to the other, he brimmed the harpoon +sockets with the fiery waters from the pewter. + +“Now, three to three, ye stand. Commend the murderous chalices! Bestow +them, ye who are now made parties to this indissoluble league. Ha! +Starbuck! but the deed is done! Yon ratifying sun now waits to sit upon +it. Drink, ye harpooneers! drink and swear, ye men that man the +deathful whaleboat’s bow—Death to Moby Dick! God hunt us all, if we do +not hunt Moby Dick to his death!” The long, barbed steel goblets were +lifted; and to cries and maledictions against the white whale, the +spirits were simultaneously quaffed down with a hiss. Starbuck paled, +and turned, and shivered. Once more, and finally, the replenished +pewter went the rounds among the frantic crew; when, waving his free +hand to them, they all dispersed; and Ahab retired within his cabin. + + +CHAPTER 37. Sunset. + +_The cabin; by the stern windows; Ahab sitting alone, and gazing out_. + +I leave a white and turbid wake; pale waters, paler cheeks, where’er I +sail. The envious billows sidelong swell to whelm my track; let them; +but first I pass. + +Yonder, by ever-brimming goblet’s rim, the warm waves blush like wine. +The gold brow plumbs the blue. The diver sun—slow dived from noon—goes +down; my soul mounts up! she wearies with her endless hill. Is, then, +the crown too heavy that I wear? this Iron Crown of Lombardy. Yet is it +bright with many a gem; I the wearer, see not its far flashings; but +darkly feel that I wear that, that dazzlingly confounds. ’Tis iron—that +I know—not gold. ’Tis split, too—that I feel; the jagged edge galls me +so, my brain seems to beat against the solid metal; aye, steel skull, +mine; the sort that needs no helmet in the most brain-battering fight! + +Dry heat upon my brow? Oh! time was, when as the sunrise nobly spurred +me, so the sunset soothed. No more. This lovely light, it lights not +me; all loveliness is anguish to me, since I can ne’er enjoy. Gifted +with the high perception, I lack the low, enjoying power; damned, most +subtly and most malignantly! damned in the midst of Paradise! Good +night—good night! (_waving his hand, he moves from the window_.) + +’Twas not so hard a task. I thought to find one stubborn, at the least; +but my one cogged circle fits into all their various wheels, and they +revolve. Or, if you will, like so many ant-hills of powder, they all +stand before me; and I their match. Oh, hard! that to fire others, the +match itself must needs be wasting! What I’ve dared, I’ve willed; and +what I’ve willed, I’ll do! They think me mad—Starbuck does; but I’m +demoniac, I am madness maddened! That wild madness that’s only calm to +comprehend itself! The prophecy was that I should be dismembered; +and—Aye! I lost this leg. I now prophesy that I will dismember my +dismemberer. Now, then, be the prophet and the fulfiller one. That’s +more than ye, ye great gods, ever were. I laugh and hoot at ye, ye +cricket-players, ye pugilists, ye deaf Burkes and blinded Bendigoes! I +will not say as schoolboys do to bullies—Take some one of your own +size; don’t pommel _me!_ No, ye’ve knocked me down, and I am up again; +but _ye_ have run and hidden. Come forth from behind your cotton bags! +I have no long gun to reach ye. Come, Ahab’s compliments to ye; come +and see if ye can swerve me. Swerve me? ye cannot swerve me, else ye +swerve yourselves! man has ye there. Swerve me? The path to my fixed +purpose is laid with iron rails, whereon my soul is grooved to run. +Over unsounded gorges, through the rifled hearts of mountains, under +torrents’ beds, unerringly I rush! Naught’s an obstacle, naught’s an +angle to the iron way! + + +CHAPTER 38. Dusk. + +_By the Mainmast; Starbuck leaning against it_. + +My soul is more than matched; she’s overmanned; and by a madman! +Insufferable sting, that sanity should ground arms on such a field! But +he drilled deep down, and blasted all my reason out of me! I think I +see his impious end; but feel that I must help him to it. Will I, nill +I, the ineffable thing has tied me to him; tows me with a cable I have +no knife to cut. Horrible old man! Who’s over him, he cries;—aye, he +would be a democrat to all above; look, how he lords it over all below! +Oh! I plainly see my miserable office,—to obey, rebelling; and worse +yet, to hate with touch of pity! For in his eyes I read some lurid woe +would shrivel me up, had I it. Yet is there hope. Time and tide flow +wide. The hated whale has the round watery world to swim in, as the +small gold-fish has its glassy globe. His heaven-insulting purpose, God +may wedge aside. I would up heart, were it not like lead. But my whole +clock’s run down; my heart the all-controlling weight, I have no key to +lift again. + +[_A burst of revelry from the forecastle_.] + +Oh, God! to sail with such a heathen crew that have small touch of +human mothers in them! Whelped somewhere by the sharkish sea. The white +whale is their demigorgon. Hark! the infernal orgies! that revelry is +forward! mark the unfaltering silence aft! Methinks it pictures life. +Foremost through the sparkling sea shoots on the gay, embattled, +bantering bow, but only to drag dark Ahab after it, where he broods +within his sternward cabin, builded over the dead water of the wake, +and further on, hunted by its wolfish gurglings. The long howl thrills +me through! Peace! ye revellers, and set the watch! Oh, life! ’tis in +an hour like this, with soul beat down and held to knowledge,—as wild, +untutored things are forced to feed—Oh, life! ’tis now that I do feel +the latent horror in thee! but ’tis not me! that horror’s out of me! +and with the soft feeling of the human in me, yet will I try to fight +ye, ye grim, phantom futures! Stand by me, hold me, bind me, O ye +blessed influences! + + +CHAPTER 39. First Night-Watch. + +Fore-Top. + +(_Stubb solus, and mending a brace_.) + +Ha! ha! ha! ha! hem! clear my throat!—I’ve been thinking over it ever +since, and that ha, ha’s the final consequence. Why so? Because a +laugh’s the wisest, easiest answer to all that’s queer; and come what +will, one comfort’s always left—that unfailing comfort is, it’s all +predestinated. I heard not all his talk with Starbuck; but to my poor +eye Starbuck then looked something as I the other evening felt. Be sure +the old Mogul has fixed him, too. I twigged it, knew it; had had the +gift, might readily have prophesied it—for when I clapped my eye upon +his skull I saw it. Well, Stubb, _wise_ Stubb—that’s my title—well, +Stubb, what of it, Stubb? Here’s a carcase. I know not all that may be +coming, but be it what it will, I’ll go to it laughing. Such a waggish +leering as lurks in all your horribles! I feel funny. Fa, la! lirra, +skirra! What’s my juicy little pear at home doing now? Crying its eyes +out?—Giving a party to the last arrived harpooneers, I dare say, gay as +a frigate’s pennant, and so am I—fa, la! lirra, skirra! Oh— + + +We’ll drink to-night with hearts as light, To love, as gay and fleeting +As bubbles that swim, on the beaker’s brim, And break on the lips while +meeting. + + + +A brave stave that—who calls? Mr. Starbuck? Aye, aye, sir—(_Aside_) +he’s my superior, he has his too, if I’m not mistaken.—Aye, aye, sir, +just through with this job—coming. + + +CHAPTER 40. Midnight, Forecastle. + +HARPOONEERS AND SAILORS. + +(_Foresail rises and discovers the watch standing, lounging, leaning, +and lying in various attitudes, all singing in chorus_.) + + + Farewell and adieu to you, Spanish ladies! Farewell and adieu to you, + ladies of Spain! Our captain’s commanded.— + + + +1ST NANTUCKET SAILOR. Oh, boys, don’t be sentimental; it’s bad for the +digestion! Take a tonic, follow me! + +(_Sings, and all follow._) + + + Our captain stood upon the deck, A spy-glass in his hand, A viewing of + those gallant whales That blew at every strand. Oh, your tubs in your + boats, my boys, And by your braces stand, And we’ll have one of those + fine whales, Hand, boys, over hand! So, be cheery, my lads! may your + hearts never fail! While the bold harpooner is striking the whale! + + + +MATE’S VOICE FROM THE QUARTER-DECK. Eight bells there, forward! + +2ND NANTUCKET SAILOR. Avast the chorus! Eight bells there! d’ye hear, +bell-boy? Strike the bell eight, thou Pip! thou blackling! and let me +call the watch. I’ve the sort of mouth for that—the hogshead mouth. So, +so, (_thrusts his head down the scuttle_,) Star-bo-l-e-e-n-s, a-h-o-y! +Eight bells there below! Tumble up! + +DUTCH SAILOR. Grand snoozing to-night, maty; fat night for that. I mark +this in our old Mogul’s wine; it’s quite as deadening to some as +filliping to others. We sing; they sleep—aye, lie down there, like +ground-tier butts. At ’em again! There, take this copper-pump, and hail +’em through it. Tell ’em to avast dreaming of their lasses. Tell ’em +it’s the resurrection; they must kiss their last, and come to judgment. +That’s the way—_that’s_ it; thy throat ain’t spoiled with eating +Amsterdam butter. + +FRENCH SAILOR. Hist, boys! let’s have a jig or two before we ride to +anchor in Blanket Bay. What say ye? There comes the other watch. Stand +by all legs! Pip! little Pip! hurrah with your tambourine! + +PIP. (_Sulky and sleepy._) Don’t know where it is. + +FRENCH SAILOR. Beat thy belly, then, and wag thy ears. Jig it, men, I +say; merry’s the word; hurrah! Damn me, won’t you dance? Form, now, +Indian-file, and gallop into the double-shuffle? Throw yourselves! +Legs! legs! + +ICELAND SAILOR. I don’t like your floor, maty; it’s too springy to my +taste. I’m used to ice-floors. I’m sorry to throw cold water on the +subject; but excuse me. + +MALTESE SAILOR. Me too; where’s your girls? Who but a fool would take +his left hand by his right, and say to himself, how d’ye do? Partners! +I must have partners! + +SICILIAN SAILOR. Aye; girls and a green!—then I’ll hop with ye; yea, +turn grasshopper! + +LONG-ISLAND SAILOR. Well, well, ye sulkies, there’s plenty more of us. +Hoe corn when you may, say I. All legs go to harvest soon. Ah! here +comes the music; now for it! + +AZORE SAILOR. (_Ascending, and pitching the tambourine up the +scuttle_.) Here you are, Pip; and there’s the windlass-bitts; up you +mount! Now, boys! (_The half of them dance to the tambourine; some go +below; some sleep or lie among the coils of rigging. Oaths a-plenty_.) + +AZORE SAILOR. (_Dancing_) Go it, Pip! Bang it, bell-boy! Rig it, dig +it, stig it, quig it, bell-boy! Make fire-flies; break the jinglers! + +PIP. Jinglers, you say?—there goes another, dropped off; I pound it so. + +CHINA SAILOR. Rattle thy teeth, then, and pound away; make a pagoda of +thyself. + +FRENCH SAILOR. Merry-mad! Hold up thy hoop, Pip, till I jump through +it! Split jibs! tear yourselves! + +TASHTEGO. (_Quietly smoking._) That’s a white man; he calls that fun: +humph! I save my sweat. + +OLD MANX SAILOR. I wonder whether those jolly lads bethink them of what +they are dancing over. I’ll dance over your grave, I will—that’s the +bitterest threat of your night-women, that beat head-winds round +corners. O Christ! to think of the green navies and the green-skulled +crews! Well, well; belike the whole world’s a ball, as you scholars +have it; and so ’tis right to make one ballroom of it. Dance on, lads, +you’re young; I was once. + +3D NANTUCKET SAILOR. Spell oh!—whew! this is worse than pulling after +whales in a calm—give us a whiff, Tash. + +(_They cease dancing, and gather in clusters. Meantime the sky +darkens—the wind rises_.) + +LASCAR SAILOR. By Brahma! boys, it’ll be douse sail soon. The sky-born, +high-tide Ganges turned to wind! Thou showest thy black brow, Seeva! + +MALTESE SAILOR. (_Reclining and shaking his cap_.) It’s the waves—the +snow’s caps turn to jig it now. They’ll shake their tassels soon. Now +would all the waves were women, then I’d go drown, and chassee with +them evermore! There’s naught so sweet on earth—heaven may not match +it!—as those swift glances of warm, wild bosoms in the dance, when the +over-arboring arms hide such ripe, bursting grapes. + +SICILIAN SAILOR. (_Reclining_.) Tell me not of it! Hark ye, lad—fleet +interlacings of the limbs—lithe swayings—coyings—flutterings! lip! +heart! hip! all graze: unceasing touch and go! not taste, observe ye, +else come satiety. Eh, Pagan? (_Nudging_.) + +TAHITAN SAILOR. (_Reclining on a mat_.) Hail, holy nakedness of our +dancing girls!—the Heeva-Heeva! Ah! low veiled, high palmed Tahiti! I +still rest me on thy mat, but the soft soil has slid! I saw thee woven +in the wood, my mat! green the first day I brought ye thence; now worn +and wilted quite. Ah me!—not thou nor I can bear the change! How then, +if so be transplanted to yon sky? Hear I the roaring streams from +Pirohitee’s peak of spears, when they leap down the crags and drown the +villages?—The blast! the blast! Up, spine, and meet it! (_Leaps to his +feet_.) + +PORTUGUESE SAILOR. How the sea rolls swashing ’gainst the side! Stand +by for reefing, hearties! the winds are just crossing swords, pell-mell +they’ll go lunging presently. + +DANISH SAILOR. Crack, crack, old ship! so long as thou crackest, thou +holdest! Well done! The mate there holds ye to it stiffly. He’s no more +afraid than the isle fort at Cattegat, put there to fight the Baltic +with storm-lashed guns, on which the sea-salt cakes! + +4TH NANTUCKET SAILOR. He has his orders, mind ye that. I heard old Ahab +tell him he must always kill a squall, something as they burst a +waterspout with a pistol—fire your ship right into it! + +ENGLISH SAILOR. Blood! but that old man’s a grand old cove! We are the +lads to hunt him up his whale! + +ALL. Aye! aye! + +OLD MANX SAILOR. How the three pines shake! Pines are the hardest sort +of tree to live when shifted to any other soil, and here there’s none +but the crew’s cursed clay. Steady, helmsman! steady. This is the sort +of weather when brave hearts snap ashore, and keeled hulls split at +sea. Our captain has his birthmark; look yonder, boys, there’s another +in the sky—lurid-like, ye see, all else pitch black. + +DAGGOO. What of that? Who’s afraid of black’s afraid of me! I’m +quarried out of it! + +SPANISH SAILOR. (_Aside_.) He wants to bully, ah!—the old grudge makes +me touchy (_Advancing_.) Aye, harpooneer, thy race is the undeniable +dark side of mankind—devilish dark at that. No offence. + +DAGGOO (_grimly_). None. + +ST. JAGO’S SAILOR. That Spaniard’s mad or drunk. But that can’t be, or +else in his one case our old Mogul’s fire-waters are somewhat long in +working. + +5TH NANTUCKET SAILOR. What’s that I saw—lightning? Yes. + +SPANISH SAILOR. No; Daggoo showing his teeth. + +DAGGOO (_springing_). Swallow thine, mannikin! White skin, white liver! + +SPANISH SAILOR (_meeting him_). Knife thee heartily! big frame, small +spirit! + +ALL. A row! a row! a row! + +TASHTEGO (_with a whiff_). A row a’low, and a row aloft—Gods and +men—both brawlers! Humph! + +BELFAST SAILOR. A row! arrah a row! The Virgin be blessed, a row! +Plunge in with ye! + +ENGLISH SAILOR. Fair play! Snatch the Spaniard’s knife! A ring, a ring! + +OLD MANX SAILOR. Ready formed. There! the ringed horizon. In that ring +Cain struck Abel. Sweet work, right work! No? Why then, God, mad’st +thou the ring? + +MATE’S VOICE FROM THE QUARTER-DECK. Hands by the halyards! in +top-gallant sails! Stand by to reef topsails! + +ALL. The squall! the squall! jump, my jollies! (_They scatter_.) + +PIP (_shrinking under the windlass_). Jollies? Lord help such jollies! +Crish, crash! there goes the jib-stay! Blang-whang! God! Duck lower, +Pip, here comes the royal yard! It’s worse than being in the whirled +woods, the last day of the year! Who’d go climbing after chestnuts now? +But there they go, all cursing, and here I don’t. Fine prospects to +’em; they’re on the road to heaven. Hold on hard! Jimmini, what a +squall! But those chaps there are worse yet—they are your white +squalls, they. White squalls? white whale, shirr! shirr! Here have I +heard all their chat just now, and the white whale—shirr! shirr!—but +spoken of once! and only this evening—it makes me jingle all over like +my tambourine—that anaconda of an old man swore ’em in to hunt him! Oh, +thou big white God aloft there somewhere in yon darkness, have mercy on +this small black boy down here; preserve him from all men that have no +bowels to feel fear! + + +CHAPTER 41. Moby Dick. + +I, Ishmael, was one of that crew; my shouts had gone up with the rest; +my oath had been welded with theirs; and stronger I shouted, and more +did I hammer and clinch my oath, because of the dread in my soul. A +wild, mystical, sympathetical feeling was in me; Ahab’s quenchless feud +seemed mine. With greedy ears I learned the history of that murderous +monster against whom I and all the others had taken our oaths of +violence and revenge. + +For some time past, though at intervals only, the unaccompanied, +secluded White Whale had haunted those uncivilized seas mostly +frequented by the Sperm Whale fishermen. But not all of them knew of +his existence; only a few of them, comparatively, had knowingly seen +him; while the number who as yet had actually and knowingly given +battle to him, was small indeed. For, owing to the large number of +whale-cruisers; the disorderly way they were sprinkled over the entire +watery circumference, many of them adventurously pushing their quest +along solitary latitudes, so as seldom or never for a whole twelvemonth +or more on a stretch, to encounter a single news-telling sail of any +sort; the inordinate length of each separate voyage; the irregularity +of the times of sailing from home; all these, with other circumstances, +direct and indirect, long obstructed the spread through the whole +world-wide whaling-fleet of the special individualizing tidings +concerning Moby Dick. It was hardly to be doubted, that several vessels +reported to have encountered, at such or such a time, or on such or +such a meridian, a Sperm Whale of uncommon magnitude and malignity, +which whale, after doing great mischief to his assailants, had +completely escaped them; to some minds it was not an unfair +presumption, I say, that the whale in question must have been no other +than Moby Dick. Yet as of late the Sperm Whale fishery had been marked +by various and not unfrequent instances of great ferocity, cunning, and +malice in the monster attacked; therefore it was, that those who by +accident ignorantly gave battle to Moby Dick; such hunters, perhaps, +for the most part, were content to ascribe the peculiar terror he bred, +more, as it were, to the perils of the Sperm Whale fishery at large, +than to the individual cause. In that way, mostly, the disastrous +encounter between Ahab and the whale had hitherto been popularly +regarded. + +And as for those who, previously hearing of the White Whale, by chance +caught sight of him; in the beginning of the thing they had every one +of them, almost, as boldly and fearlessly lowered for him, as for any +other whale of that species. But at length, such calamities did ensue +in these assaults—not restricted to sprained wrists and ankles, broken +limbs, or devouring amputations—but fatal to the last degree of +fatality; those repeated disastrous repulses, all accumulating and +piling their terrors upon Moby Dick; those things had gone far to shake +the fortitude of many brave hunters, to whom the story of the White +Whale had eventually come. + +Nor did wild rumors of all sorts fail to exaggerate, and still the more +horrify the true histories of these deadly encounters. For not only do +fabulous rumors naturally grow out of the very body of all surprising +terrible events,—as the smitten tree gives birth to its fungi; but, in +maritime life, far more than in that of terra firma, wild rumors +abound, wherever there is any adequate reality for them to cling to. +And as the sea surpasses the land in this matter, so the whale fishery +surpasses every other sort of maritime life, in the wonderfulness and +fearfulness of the rumors which sometimes circulate there. For not only +are whalemen as a body unexempt from that ignorance and +superstitiousness hereditary to all sailors; but of all sailors, they +are by all odds the most directly brought into contact with whatever is +appallingly astonishing in the sea; face to face they not only eye its +greatest marvels, but, hand to jaw, give battle to them. Alone, in such +remotest waters, that though you sailed a thousand miles, and passed a +thousand shores, you would not come to any chiseled hearth-stone, or +aught hospitable beneath that part of the sun; in such latitudes and +longitudes, pursuing too such a calling as he does, the whaleman is +wrapped by influences all tending to make his fancy pregnant with many +a mighty birth. + +No wonder, then, that ever gathering volume from the mere transit over +the widest watery spaces, the outblown rumors of the White Whale did in +the end incorporate with themselves all manner of morbid hints, and +half-formed fœtal suggestions of supernatural agencies, which +eventually invested Moby Dick with new terrors unborrowed from anything +that visibly appears. So that in many cases such a panic did he finally +strike, that few who by those rumors, at least, had heard of the White +Whale, few of those hunters were willing to encounter the perils of his +jaw. + +But there were still other and more vital practical influences at work. +Not even at the present day has the original prestige of the Sperm +Whale, as fearfully distinguished from all other species of the +leviathan, died out of the minds of the whalemen as a body. There are +those this day among them, who, though intelligent and courageous +enough in offering battle to the Greenland or Right whale, would +perhaps—either from professional inexperience, or incompetency, or +timidity, decline a contest with the Sperm Whale; at any rate, there +are plenty of whalemen, especially among those whaling nations not +sailing under the American flag, who have never hostilely encountered +the Sperm Whale, but whose sole knowledge of the leviathan is +restricted to the ignoble monster primitively pursued in the North; +seated on their hatches, these men will hearken with a childish +fireside interest and awe, to the wild, strange tales of Southern +whaling. Nor is the pre-eminent tremendousness of the great Sperm Whale +anywhere more feelingly comprehended, than on board of those prows +which stem him. + +And as if the now tested reality of his might had in former legendary +times thrown its shadow before it; we find some book +naturalists—Olassen and Povelson—declaring the Sperm Whale not only to +be a consternation to every other creature in the sea, but also to be +so incredibly ferocious as continually to be athirst for human blood. +Nor even down to so late a time as Cuvier’s, were these or almost +similar impressions effaced. For in his Natural History, the Baron +himself affirms that at sight of the Sperm Whale, all fish (sharks +included) are “struck with the most lively terrors,” and “often in the +precipitancy of their flight dash themselves against the rocks with +such violence as to cause instantaneous death.” And however the general +experiences in the fishery may amend such reports as these; yet in +their full terribleness, even to the bloodthirsty item of Povelson, the +superstitious belief in them is, in some vicissitudes of their +vocation, revived in the minds of the hunters. + +So that overawed by the rumors and portents concerning him, not a few +of the fishermen recalled, in reference to Moby Dick, the earlier days +of the Sperm Whale fishery, when it was oftentimes hard to induce long +practised Right whalemen to embark in the perils of this new and daring +warfare; such men protesting that although other leviathans might be +hopefully pursued, yet to chase and point lance at such an apparition +as the Sperm Whale was not for mortal man. That to attempt it, would be +inevitably to be torn into a quick eternity. On this head, there are +some remarkable documents that may be consulted. + +Nevertheless, some there were, who even in the face of these things +were ready to give chase to Moby Dick; and a still greater number who, +chancing only to hear of him distantly and vaguely, without the +specific details of any certain calamity, and without superstitious +accompaniments, were sufficiently hardy not to flee from the battle if +offered. + +One of the wild suggestions referred to, as at last coming to be linked +with the White Whale in the minds of the superstitiously inclined, was +the unearthly conceit that Moby Dick was ubiquitous; that he had +actually been encountered in opposite latitudes at one and the same +instant of time. + +Nor, credulous as such minds must have been, was this conceit +altogether without some faint show of superstitious probability. For as +the secrets of the currents in the seas have never yet been divulged, +even to the most erudite research; so the hidden ways of the Sperm +Whale when beneath the surface remain, in great part, unaccountable to +his pursuers; and from time to time have originated the most curious +and contradictory speculations regarding them, especially concerning +the mystic modes whereby, after sounding to a great depth, he +transports himself with such vast swiftness to the most widely distant +points. + +It is a thing well known to both American and English whale-ships, and +as well a thing placed upon authoritative record years ago by Scoresby, +that some whales have been captured far north in the Pacific, in whose +bodies have been found the barbs of harpoons darted in the Greenland +seas. Nor is it to be gainsaid, that in some of these instances it has +been declared that the interval of time between the two assaults could +not have exceeded very many days. Hence, by inference, it has been +believed by some whalemen, that the Nor’ West Passage, so long a +problem to man, was never a problem to the whale. So that here, in the +real living experience of living men, the prodigies related in old +times of the inland Strello mountain in Portugal (near whose top there +was said to be a lake in which the wrecks of ships floated up to the +surface); and that still more wonderful story of the Arethusa fountain +near Syracuse (whose waters were believed to have come from the Holy +Land by an underground passage); these fabulous narrations are almost +fully equalled by the realities of the whalemen. + +Forced into familiarity, then, with such prodigies as these; and +knowing that after repeated, intrepid assaults, the White Whale had +escaped alive; it cannot be much matter of surprise that some whalemen +should go still further in their superstitions; declaring Moby Dick not +only ubiquitous, but immortal (for immortality is but ubiquity in +time); that though groves of spears should be planted in his flanks, he +would still swim away unharmed; or if indeed he should ever be made to +spout thick blood, such a sight would be but a ghastly deception; for +again in unensanguined billows hundreds of leagues away, his unsullied +jet would once more be seen. + +But even stripped of these supernatural surmisings, there was enough in +the earthly make and incontestable character of the monster to strike +the imagination with unwonted power. For, it was not so much his +uncommon bulk that so much distinguished him from other sperm whales, +but, as was elsewhere thrown out—a peculiar snow-white wrinkled +forehead, and a high, pyramidical white hump. These were his prominent +features; the tokens whereby, even in the limitless, uncharted seas, he +revealed his identity, at a long distance, to those who knew him. + +The rest of his body was so streaked, and spotted, and marbled with the +same shrouded hue, that, in the end, he had gained his distinctive +appellation of the White Whale; a name, indeed, literally justified by +his vivid aspect, when seen gliding at high noon through a dark blue +sea, leaving a milky-way wake of creamy foam, all spangled with golden +gleamings. + +Nor was it his unwonted magnitude, nor his remarkable hue, nor yet his +deformed lower jaw, that so much invested the whale with natural +terror, as that unexampled, intelligent malignity which, according to +specific accounts, he had over and over again evinced in his assaults. +More than all, his treacherous retreats struck more of dismay than +perhaps aught else. For, when swimming before his exulting pursuers, +with every apparent symptom of alarm, he had several times been known +to turn round suddenly, and, bearing down upon them, either stave their +boats to splinters, or drive them back in consternation to their ship. + +Already several fatalities had attended his chase. But though similar +disasters, however little bruited ashore, were by no means unusual in +the fishery; yet, in most instances, such seemed the White Whale’s +infernal aforethought of ferocity, that every dismembering or death +that he caused, was not wholly regarded as having been inflicted by an +unintelligent agent. + +Judge, then, to what pitches of inflamed, distracted fury the minds of +his more desperate hunters were impelled, when amid the chips of chewed +boats, and the sinking limbs of torn comrades, they swam out of the +white curds of the whale’s direful wrath into the serene, exasperating +sunlight, that smiled on, as if at a birth or a bridal. + +His three boats stove around him, and oars and men both whirling in the +eddies; one captain, seizing the line-knife from his broken prow, had +dashed at the whale, as an Arkansas duellist at his foe, blindly +seeking with a six inch blade to reach the fathom-deep life of the +whale. That captain was Ahab. And then it was, that suddenly sweeping +his sickle-shaped lower jaw beneath him, Moby Dick had reaped away +Ahab’s leg, as a mower a blade of grass in the field. No turbaned Turk, +no hired Venetian or Malay, could have smote him with more seeming +malice. Small reason was there to doubt, then, that ever since that +almost fatal encounter, Ahab had cherished a wild vindictiveness +against the whale, all the more fell for that in his frantic morbidness +he at last came to identify with him, not only all his bodily woes, but +all his intellectual and spiritual exasperations. The White Whale swam +before him as the monomaniac incarnation of all those malicious +agencies which some deep men feel eating in them, till they are left +living on with half a heart and half a lung. That intangible malignity +which has been from the beginning; to whose dominion even the modern +Christians ascribe one-half of the worlds; which the ancient Ophites of +the east reverenced in their statue devil;—Ahab did not fall down and +worship it like them; but deliriously transferring its idea to the +abhorred white whale, he pitted himself, all mutilated, against it. All +that most maddens and torments; all that stirs up the lees of things; +all truth with malice in it; all that cracks the sinews and cakes the +brain; all the subtle demonisms of life and thought; all evil, to crazy +Ahab, were visibly personified, and made practically assailable in Moby +Dick. He piled upon the whale’s white hump the sum of all the general +rage and hate felt by his whole race from Adam down; and then, as if +his chest had been a mortar, he burst his hot heart’s shell upon it. + +It is not probable that this monomania in him took its instant rise at +the precise time of his bodily dismemberment. Then, in darting at the +monster, knife in hand, he had but given loose to a sudden, passionate, +corporal animosity; and when he received the stroke that tore him, he +probably but felt the agonizing bodily laceration, but nothing more. +Yet, when by this collision forced to turn towards home, and for long +months of days and weeks, Ahab and anguish lay stretched together in +one hammock, rounding in mid winter that dreary, howling Patagonian +Cape; then it was, that his torn body and gashed soul bled into one +another; and so interfusing, made him mad. That it was only then, on +the homeward voyage, after the encounter, that the final monomania +seized him, seems all but certain from the fact that, at intervals +during the passage, he was a raving lunatic; and, though unlimbed of a +leg, yet such vital strength yet lurked in his Egyptian chest, and was +moreover intensified by his delirium, that his mates were forced to +lace him fast, even there, as he sailed, raving in his hammock. In a +strait-jacket, he swung to the mad rockings of the gales. And, when +running into more sufferable latitudes, the ship, with mild stun’sails +spread, floated across the tranquil tropics, and, to all appearances, +the old man’s delirium seemed left behind him with the Cape Horn +swells, and he came forth from his dark den into the blessed light and +air; even then, when he bore that firm, collected front, however pale, +and issued his calm orders once again; and his mates thanked God the +direful madness was now gone; even then, Ahab, in his hidden self, +raved on. Human madness is oftentimes a cunning and most feline thing. +When you think it fled, it may have but become transfigured into some +still subtler form. Ahab’s full lunacy subsided not, but deepeningly +contracted; like the unabated Hudson, when that noble Northman flows +narrowly, but unfathomably through the Highland gorge. But, as in his +narrow-flowing monomania, not one jot of Ahab’s broad madness had been +left behind; so in that broad madness, not one jot of his great natural +intellect had perished. That before living agent, now became the living +instrument. If such a furious trope may stand, his special lunacy +stormed his general sanity, and carried it, and turned all its +concentred cannon upon its own mad mark; so that far from having lost +his strength, Ahab, to that one end, did now possess a thousand fold +more potency than ever he had sanely brought to bear upon any one +reasonable object. + +This is much; yet Ahab’s larger, darker, deeper part remains unhinted. +But vain to popularize profundities, and all truth is profound. Winding +far down from within the very heart of this spiked Hotel de Cluny where +we here stand—however grand and wonderful, now quit it;—and take your +way, ye nobler, sadder souls, to those vast Roman halls of Thermes; +where far beneath the fantastic towers of man’s upper earth, his root +of grandeur, his whole awful essence sits in bearded state; an antique +buried beneath antiquities, and throned on torsoes! So with a broken +throne, the great gods mock that captive king; so like a Caryatid, he +patient sits, upholding on his frozen brow the piled entablatures of +ages. Wind ye down there, ye prouder, sadder souls! question that +proud, sad king! A family likeness! aye, he did beget ye, ye young +exiled royalties; and from your grim sire only will the old +State-secret come. + +Now, in his heart, Ahab had some glimpse of this, namely: all my means +are sane, my motive and my object mad. Yet without power to kill, or +change, or shun the fact; he likewise knew that to mankind he did long +dissemble; in some sort, did still. But that thing of his dissembling +was only subject to his perceptibility, not to his will determinate. +Nevertheless, so well did he succeed in that dissembling, that when +with ivory leg he stepped ashore at last, no Nantucketer thought him +otherwise than but naturally grieved, and that to the quick, with the +terrible casualty which had overtaken him. + +The report of his undeniable delirium at sea was likewise popularly +ascribed to a kindred cause. And so too, all the added moodiness which +always afterwards, to the very day of sailing in the Pequod on the +present voyage, sat brooding on his brow. Nor is it so very unlikely, +that far from distrusting his fitness for another whaling voyage, on +account of such dark symptoms, the calculating people of that prudent +isle were inclined to harbor the conceit, that for those very reasons +he was all the better qualified and set on edge, for a pursuit so full +of rage and wildness as the bloody hunt of whales. Gnawed within and +scorched without, with the infixed, unrelenting fangs of some incurable +idea; such an one, could he be found, would seem the very man to dart +his iron and lift his lance against the most appalling of all brutes. +Or, if for any reason thought to be corporeally incapacitated for that, +yet such an one would seem superlatively competent to cheer and howl on +his underlings to the attack. But be all this as it may, certain it is, +that with the mad secret of his unabated rage bolted up and keyed in +him, Ahab had purposely sailed upon the present voyage with the one +only and all-engrossing object of hunting the White Whale. Had any one +of his old acquaintances on shore but half dreamed of what was lurking +in him then, how soon would their aghast and righteous souls have +wrenched the ship from such a fiendish man! They were bent on +profitable cruises, the profit to be counted down in dollars from the +mint. He was intent on an audacious, immitigable, and supernatural +revenge. + +Here, then, was this grey-headed, ungodly old man, chasing with curses +a Job’s whale round the world, at the head of a crew, too, chiefly made +up of mongrel renegades, and castaways, and cannibals—morally enfeebled +also, by the incompetence of mere unaided virtue or right-mindedness in +Starbuck, the invulnerable jollity of indifference and recklessness in +Stubb, and the pervading mediocrity in Flask. Such a crew, so +officered, seemed specially picked and packed by some infernal fatality +to help him to his monomaniac revenge. How it was that they so +aboundingly responded to the old man’s ire—by what evil magic their +souls were possessed, that at times his hate seemed almost theirs; the +White Whale as much their insufferable foe as his; how all this came to +be—what the White Whale was to them, or how to their unconscious +understandings, also, in some dim, unsuspected way, he might have +seemed the gliding great demon of the seas of life,—all this to +explain, would be to dive deeper than Ishmael can go. The subterranean +miner that works in us all, how can one tell whither leads his shaft by +the ever shifting, muffled sound of his pick? Who does not feel the +irresistible arm drag? What skiff in tow of a seventy-four can stand +still? For one, I gave myself up to the abandonment of the time and the +place; but while yet all a-rush to encounter the whale, could see +naught in that brute but the deadliest ill. + + +CHAPTER 42. The Whiteness of the Whale. + +What the white whale was to Ahab, has been hinted; what, at times, he +was to me, as yet remains unsaid. + +Aside from those more obvious considerations touching Moby Dick, which +could not but occasionally awaken in any man’s soul some alarm, there +was another thought, or rather vague, nameless horror concerning him, +which at times by its intensity completely overpowered all the rest; +and yet so mystical and well nigh ineffable was it, that I almost +despair of putting it in a comprehensible form. It was the whiteness of +the whale that above all things appalled me. But how can I hope to +explain myself here; and yet, in some dim, random way, explain myself I +must, else all these chapters might be naught. + +Though in many natural objects, whiteness refiningly enhances beauty, +as if imparting some special virtue of its own, as in marbles, +japonicas, and pearls; and though various nations have in some way +recognised a certain royal preeminence in this hue; even the barbaric, +grand old kings of Pegu placing the title “Lord of the White Elephants” +above all their other magniloquent ascriptions of dominion; and the +modern kings of Siam unfurling the same snow-white quadruped in the +royal standard; and the Hanoverian flag bearing the one figure of a +snow-white charger; and the great Austrian Empire, Cæsarian, heir to +overlording Rome, having for the imperial colour the same imperial hue; +and though this pre-eminence in it applies to the human race itself, +giving the white man ideal mastership over every dusky tribe; and +though, besides, all this, whiteness has been even made significant of +gladness, for among the Romans a white stone marked a joyful day; and +though in other mortal sympathies and symbolizings, this same hue is +made the emblem of many touching, noble things—the innocence of brides, +the benignity of age; though among the Red Men of America the giving of +the white belt of wampum was the deepest pledge of honor; though in +many climes, whiteness typifies the majesty of Justice in the ermine of +the Judge, and contributes to the daily state of kings and queens drawn +by milk-white steeds; though even in the higher mysteries of the most +august religions it has been made the symbol of the divine spotlessness +and power; by the Persian fire worshippers, the white forked flame +being held the holiest on the altar; and in the Greek mythologies, +Great Jove himself being made incarnate in a snow-white bull; and +though to the noble Iroquois, the midwinter sacrifice of the sacred +White Dog was by far the holiest festival of their theology, that +spotless, faithful creature being held the purest envoy they could send +to the Great Spirit with the annual tidings of their own fidelity; and +though directly from the Latin word for white, all Christian priests +derive the name of one part of their sacred vesture, the alb or tunic, +worn beneath the cassock; and though among the holy pomps of the Romish +faith, white is specially employed in the celebration of the Passion of +our Lord; though in the Vision of St. John, white robes are given to +the redeemed, and the four-and-twenty elders stand clothed in white +before the great white throne, and the Holy One that sitteth there +white like wool; yet for all these accumulated associations, with +whatever is sweet, and honorable, and sublime, there yet lurks an +elusive something in the innermost idea of this hue, which strikes more +of panic to the soul than that redness which affrights in blood. + +This elusive quality it is, which causes the thought of whiteness, when +divorced from more kindly associations, and coupled with any object +terrible in itself, to heighten that terror to the furthest bounds. +Witness the white bear of the poles, and the white shark of the +tropics; what but their smooth, flaky whiteness makes them the +transcendent horrors they are? That ghastly whiteness it is which +imparts such an abhorrent mildness, even more loathsome than terrific, +to the dumb gloating of their aspect. So that not the fierce-fanged +tiger in his heraldic coat can so stagger courage as the white-shrouded +bear or shark.* + +*With reference to the Polar bear, it may possibly be urged by him who +would fain go still deeper into this matter, that it is not the +whiteness, separately regarded, which heightens the intolerable +hideousness of that brute; for, analysed, that heightened hideousness, +it might be said, only rises from the circumstance, that the +irresponsible ferociousness of the creature stands invested in the +fleece of celestial innocence and love; and hence, by bringing together +two such opposite emotions in our minds, the Polar bear frightens us +with so unnatural a contrast. But even assuming all this to be true; +yet, were it not for the whiteness, you would not have that intensified +terror. + +As for the white shark, the white gliding ghostliness of repose in that +creature, when beheld in his ordinary moods, strangely tallies with the +same quality in the Polar quadruped. This peculiarity is most vividly +hit by the French in the name they bestow upon that fish. The Romish +mass for the dead begins with “Requiem eternam” (eternal rest), whence +_Requiem_ denominating the mass itself, and any other funeral music. +Now, in allusion to the white, silent stillness of death in this shark, +and the mild deadliness of his habits, the French call him _Requin_. + +Bethink thee of the albatross, whence come those clouds of spiritual +wonderment and pale dread, in which that white phantom sails in all +imaginations? Not Coleridge first threw that spell; but God’s great, +unflattering laureate, Nature.* + +*I remember the first albatross I ever saw. It was during a prolonged +gale, in waters hard upon the Antarctic seas. From my forenoon watch +below, I ascended to the overclouded deck; and there, dashed upon the +main hatches, I saw a regal, feathery thing of unspotted whiteness, and +with a hooked, Roman bill sublime. At intervals, it arched forth its +vast archangel wings, as if to embrace some holy ark. Wondrous +flutterings and throbbings shook it. Though bodily unharmed, it uttered +cries, as some king’s ghost in supernatural distress. Through its +inexpressible, strange eyes, methought I peeped to secrets which took +hold of God. As Abraham before the angels, I bowed myself; the white +thing was so white, its wings so wide, and in those for ever exiled +waters, I had lost the miserable warping memories of traditions and of +towns. Long I gazed at that prodigy of plumage. I cannot tell, can only +hint, the things that darted through me then. But at last I awoke; and +turning, asked a sailor what bird was this. A goney, he replied. Goney! +never had heard that name before; is it conceivable that this glorious +thing is utterly unknown to men ashore! never! But some time after, I +learned that goney was some seaman’s name for albatross. So that by no +possibility could Coleridge’s wild Rhyme have had aught to do with +those mystical impressions which were mine, when I saw that bird upon +our deck. For neither had I then read the Rhyme, nor knew the bird to +be an albatross. Yet, in saying this, I do but indirectly burnish a +little brighter the noble merit of the poem and the poet. + +I assert, then, that in the wondrous bodily whiteness of the bird +chiefly lurks the secret of the spell; a truth the more evinced in +this, that by a solecism of terms there are birds called grey +albatrosses; and these I have frequently seen, but never with such +emotions as when I beheld the Antarctic fowl. + +But how had the mystic thing been caught? Whisper it not, and I will +tell; with a treacherous hook and line, as the fowl floated on the sea. +At last the Captain made a postman of it; tying a lettered, leathern +tally round its neck, with the ship’s time and place; and then letting +it escape. But I doubt not, that leathern tally, meant for man, was +taken off in Heaven, when the white fowl flew to join the wing-folding, +the invoking, and adoring cherubim! + +Most famous in our Western annals and Indian traditions is that of the +White Steed of the Prairies; a magnificent milk-white charger, +large-eyed, small-headed, bluff-chested, and with the dignity of a +thousand monarchs in his lofty, overscorning carriage. He was the +elected Xerxes of vast herds of wild horses, whose pastures in those +days were only fenced by the Rocky Mountains and the Alleghanies. At +their flaming head he westward trooped it like that chosen star which +every evening leads on the hosts of light. The flashing cascade of his +mane, the curving comet of his tail, invested him with housings more +resplendent than gold and silver-beaters could have furnished him. A +most imperial and archangelical apparition of that unfallen, western +world, which to the eyes of the old trappers and hunters revived the +glories of those primeval times when Adam walked majestic as a god, +bluff-browed and fearless as this mighty steed. Whether marching amid +his aides and marshals in the van of countless cohorts that endlessly +streamed it over the plains, like an Ohio; or whether with his +circumambient subjects browsing all around at the horizon, the White +Steed gallopingly reviewed them with warm nostrils reddening through +his cool milkiness; in whatever aspect he presented himself, always to +the bravest Indians he was the object of trembling reverence and awe. +Nor can it be questioned from what stands on legendary record of this +noble horse, that it was his spiritual whiteness chiefly, which so +clothed him with divineness; and that this divineness had that in it +which, though commanding worship, at the same time enforced a certain +nameless terror. + +But there are other instances where this whiteness loses all that +accessory and strange glory which invests it in the White Steed and +Albatross. + +What is it that in the Albino man so peculiarly repels and often shocks +the eye, as that sometimes he is loathed by his own kith and kin! It is +that whiteness which invests him, a thing expressed by the name he +bears. The Albino is as well made as other men—has no substantive +deformity—and yet this mere aspect of all-pervading whiteness makes him +more strangely hideous than the ugliest abortion. Why should this be +so? + +Nor, in quite other aspects, does Nature in her least palpable but not +the less malicious agencies, fail to enlist among her forces this +crowning attribute of the terrible. From its snowy aspect, the +gauntleted ghost of the Southern Seas has been denominated the White +Squall. Nor, in some historic instances, has the art of human malice +omitted so potent an auxiliary. How wildly it heightens the effect of +that passage in Froissart, when, masked in the snowy symbol of their +faction, the desperate White Hoods of Ghent murder their bailiff in the +market-place! + +Nor, in some things, does the common, hereditary experience of all +mankind fail to bear witness to the supernaturalism of this hue. It +cannot well be doubted, that the one visible quality in the aspect of +the dead which most appals the gazer, is the marble pallor lingering +there; as if indeed that pallor were as much like the badge of +consternation in the other world, as of mortal trepidation here. And +from that pallor of the dead, we borrow the expressive hue of the +shroud in which we wrap them. Nor even in our superstitions do we fail +to throw the same snowy mantle round our phantoms; all ghosts rising in +a milk-white fog—Yea, while these terrors seize us, let us add, that +even the king of terrors, when personified by the evangelist, rides on +his pallid horse. + +Therefore, in his other moods, symbolize whatever grand or gracious +thing he will by whiteness, no man can deny that in its profoundest +idealized significance it calls up a peculiar apparition to the soul. + +But though without dissent this point be fixed, how is mortal man to +account for it? To analyse it, would seem impossible. Can we, then, by +the citation of some of those instances wherein this thing of +whiteness—though for the time either wholly or in great part stripped +of all direct associations calculated to impart to it aught fearful, +but nevertheless, is found to exert over us the same sorcery, however +modified;—can we thus hope to light upon some chance clue to conduct us +to the hidden cause we seek? + +Let us try. But in a matter like this, subtlety appeals to subtlety, +and without imagination no man can follow another into these halls. And +though, doubtless, some at least of the imaginative impressions about +to be presented may have been shared by most men, yet few perhaps were +entirely conscious of them at the time, and therefore may not be able +to recall them now. + +Why to the man of untutored ideality, who happens to be but loosely +acquainted with the peculiar character of the day, does the bare +mention of Whitsuntide marshal in the fancy such long, dreary, +speechless processions of slow-pacing pilgrims, down-cast and hooded +with new-fallen snow? Or, to the unread, unsophisticated Protestant of +the Middle American States, why does the passing mention of a White +Friar or a White Nun, evoke such an eyeless statue in the soul? + +Or what is there apart from the traditions of dungeoned warriors and +kings (which will not wholly account for it) that makes the White Tower +of London tell so much more strongly on the imagination of an +untravelled American, than those other storied structures, its +neighbors—the Byward Tower, or even the Bloody? And those sublimer +towers, the White Mountains of New Hampshire, whence, in peculiar +moods, comes that gigantic ghostliness over the soul at the bare +mention of that name, while the thought of Virginia’s Blue Ridge is +full of a soft, dewy, distant dreaminess? Or why, irrespective of all +latitudes and longitudes, does the name of the White Sea exert such a +spectralness over the fancy, while that of the Yellow Sea lulls us with +mortal thoughts of long lacquered mild afternoons on the waves, +followed by the gaudiest and yet sleepiest of sunsets? Or, to choose a +wholly unsubstantial instance, purely addressed to the fancy, why, in +reading the old fairy tales of Central Europe, does “the tall pale man” +of the Hartz forests, whose changeless pallor unrustlingly glides +through the green of the groves—why is this phantom more terrible than +all the whooping imps of the Blocksburg? + +Nor is it, altogether, the remembrance of her cathedral-toppling +earthquakes; nor the stampedoes of her frantic seas; nor the +tearlessness of arid skies that never rain; nor the sight of her wide +field of leaning spires, wrenched cope-stones, and crosses all adroop +(like canted yards of anchored fleets); and her suburban avenues of +house-walls lying over upon each other, as a tossed pack of cards;—it +is not these things alone which make tearless Lima, the strangest, +saddest city thou can’st see. For Lima has taken the white veil; and +there is a higher horror in this whiteness of her woe. Old as Pizarro, +this whiteness keeps her ruins for ever new; admits not the cheerful +greenness of complete decay; spreads over her broken ramparts the rigid +pallor of an apoplexy that fixes its own distortions. + +I know that, to the common apprehension, this phenomenon of whiteness +is not confessed to be the prime agent in exaggerating the terror of +objects otherwise terrible; nor to the unimaginative mind is there +aught of terror in those appearances whose awfulness to another mind +almost solely consists in this one phenomenon, especially when +exhibited under any form at all approaching to muteness or +universality. What I mean by these two statements may perhaps be +respectively elucidated by the following examples. + +First: The mariner, when drawing nigh the coasts of foreign lands, if +by night he hear the roar of breakers, starts to vigilance, and feels +just enough of trepidation to sharpen all his faculties; but under +precisely similar circumstances, let him be called from his hammock to +view his ship sailing through a midnight sea of milky whiteness—as if +from encircling headlands shoals of combed white bears were swimming +round him, then he feels a silent, superstitious dread; the shrouded +phantom of the whitened waters is horrible to him as a real ghost; in +vain the lead assures him he is still off soundings; heart and helm +they both go down; he never rests till blue water is under him again. +Yet where is the mariner who will tell thee, “Sir, it was not so much +the fear of striking hidden rocks, as the fear of that hideous +whiteness that so stirred me?” + +Second: To the native Indian of Peru, the continual sight of the +snow-howdahed Andes conveys naught of dread, except, perhaps, in the +mere fancying of the eternal frosted desolateness reigning at such vast +altitudes, and the natural conceit of what a fearfulness it would be to +lose oneself in such inhuman solitudes. Much the same is it with the +backwoodsman of the West, who with comparative indifference views an +unbounded prairie sheeted with driven snow, no shadow of tree or twig +to break the fixed trance of whiteness. Not so the sailor, beholding +the scenery of the Antarctic seas; where at times, by some infernal +trick of legerdemain in the powers of frost and air, he, shivering and +half shipwrecked, instead of rainbows speaking hope and solace to his +misery, views what seems a boundless churchyard grinning upon him with +its lean ice monuments and splintered crosses. + +But thou sayest, methinks that white-lead chapter about whiteness is +but a white flag hung out from a craven soul; thou surrenderest to a +hypo, Ishmael. + +Tell me, why this strong young colt, foaled in some peaceful valley of +Vermont, far removed from all beasts of prey—why is it that upon the +sunniest day, if you but shake a fresh buffalo robe behind him, so that +he cannot even see it, but only smells its wild animal muskiness—why +will he start, snort, and with bursting eyes paw the ground in +phrensies of affright? There is no remembrance in him of any gorings of +wild creatures in his green northern home, so that the strange +muskiness he smells cannot recall to him anything associated with the +experience of former perils; for what knows he, this New England colt, +of the black bisons of distant Oregon? + +No: but here thou beholdest even in a dumb brute, the instinct of the +knowledge of the demonism in the world. Though thousands of miles from +Oregon, still when he smells that savage musk, the rending, goring +bison herds are as present as to the deserted wild foal of the +prairies, which this instant they may be trampling into dust. + +Thus, then, the muffled rollings of a milky sea; the bleak rustlings of +the festooned frosts of mountains; the desolate shiftings of the +windrowed snows of prairies; all these, to Ishmael, are as the shaking +of that buffalo robe to the frightened colt! + +Though neither knows where lie the nameless things of which the mystic +sign gives forth such hints; yet with me, as with the colt, somewhere +those things must exist. Though in many of its aspects this visible +world seems formed in love, the invisible spheres were formed in +fright. + +But not yet have we solved the incantation of this whiteness, and +learned why it appeals with such power to the soul; and more strange +and far more portentous—why, as we have seen, it is at once the most +meaning symbol of spiritual things, nay, the very veil of the +Christian’s Deity; and yet should be as it is, the intensifying agent +in things the most appalling to mankind. + +Is it that by its indefiniteness it shadows forth the heartless voids +and immensities of the universe, and thus stabs us from behind with the +thought of annihilation, when beholding the white depths of the milky +way? Or is it, that as in essence whiteness is not so much a colour as +the visible absence of colour; and at the same time the concrete of all +colours; is it for these reasons that there is such a dumb blankness, +full of meaning, in a wide landscape of snows—a colourless, all-colour +of atheism from which we shrink? And when we consider that other theory +of the natural philosophers, that all other earthly hues—every stately +or lovely emblazoning—the sweet tinges of sunset skies and woods; yea, +and the gilded velvets of butterflies, and the butterfly cheeks of +young girls; all these are but subtile deceits, not actually inherent +in substances, but only laid on from without; so that all deified +Nature absolutely paints like the harlot, whose allurements cover +nothing but the charnel-house within; and when we proceed further, and +consider that the mystical cosmetic which produces every one of her +hues, the great principle of light, for ever remains white or colorless +in itself, and if operating without medium upon matter, would touch all +objects, even tulips and roses, with its own blank tinge—pondering all +this, the palsied universe lies before us a leper; and like wilful +travellers in Lapland, who refuse to wear coloured and colouring +glasses upon their eyes, so the wretched infidel gazes himself blind at +the monumental white shroud that wraps all the prospect around him. And +of all these things the Albino whale was the symbol. Wonder ye then at +the fiery hunt? + + +CHAPTER 43. Hark! + +“HIST! Did you hear that noise, Cabaco?” + +It was the middle-watch: a fair moonlight; the seamen were standing in +a cordon, extending from one of the fresh-water butts in the waist, to +the scuttle-butt near the taffrail. In this manner, they passed the +buckets to fill the scuttle-butt. Standing, for the most part, on the +hallowed precincts of the quarter-deck, they were careful not to speak +or rustle their feet. From hand to hand, the buckets went in the +deepest silence, only broken by the occasional flap of a sail, and the +steady hum of the unceasingly advancing keel. + +It was in the midst of this repose, that Archy, one of the cordon, +whose post was near the after-hatches, whispered to his neighbor, a +Cholo, the words above. + +“Hist! did you hear that noise, Cabaco?” + +“Take the bucket, will ye, Archy? what noise d’ye mean?” + +“There it is again—under the hatches—don’t you hear it—a cough—it +sounded like a cough.” + +“Cough be damned! Pass along that return bucket.” + +“There again—there it is!—it sounds like two or three sleepers turning +over, now!” + +“Caramba! have done, shipmate, will ye? It’s the three soaked biscuits +ye eat for supper turning over inside of ye—nothing else. Look to the +bucket!” + +“Say what ye will, shipmate; I’ve sharp ears.” + +“Aye, you are the chap, ain’t ye, that heard the hum of the old +Quakeress’s knitting-needles fifty miles at sea from Nantucket; you’re +the chap.” + +“Grin away; we’ll see what turns up. Hark ye, Cabaco, there is somebody +down in the after-hold that has not yet been seen on deck; and I +suspect our old Mogul knows something of it too. I heard Stubb tell +Flask, one morning watch, that there was something of that sort in the +wind.” + +“Tish! the bucket!” + + +CHAPTER 44. The Chart. + +Had you followed Captain Ahab down into his cabin after the squall that +took place on the night succeeding that wild ratification of his +purpose with his crew, you would have seen him go to a locker in the +transom, and bringing out a large wrinkled roll of yellowish sea +charts, spread them before him on his screwed-down table. Then seating +himself before it, you would have seen him intently study the various +lines and shadings which there met his eye; and with slow but steady +pencil trace additional courses over spaces that before were blank. At +intervals, he would refer to piles of old log-books beside him, wherein +were set down the seasons and places in which, on various former +voyages of various ships, sperm whales had been captured or seen. + +While thus employed, the heavy pewter lamp suspended in chains over his +head, continually rocked with the motion of the ship, and for ever +threw shifting gleams and shadows of lines upon his wrinkled brow, till +it almost seemed that while he himself was marking out lines and +courses on the wrinkled charts, some invisible pencil was also tracing +lines and courses upon the deeply marked chart of his forehead. + +But it was not this night in particular that, in the solitude of his +cabin, Ahab thus pondered over his charts. Almost every night they were +brought out; almost every night some pencil marks were effaced, and +others were substituted. For with the charts of all four oceans before +him, Ahab was threading a maze of currents and eddies, with a view to +the more certain accomplishment of that monomaniac thought of his soul. + +Now, to any one not fully acquainted with the ways of the leviathans, +it might seem an absurdly hopeless task thus to seek out one solitary +creature in the unhooped oceans of this planet. But not so did it seem +to Ahab, who knew the sets of all tides and currents; and thereby +calculating the driftings of the sperm whale’s food; and, also, calling +to mind the regular, ascertained seasons for hunting him in particular +latitudes; could arrive at reasonable surmises, almost approaching to +certainties, concerning the timeliest day to be upon this or that +ground in search of his prey. + +So assured, indeed, is the fact concerning the periodicalness of the +sperm whale’s resorting to given waters, that many hunters believe +that, could he be closely observed and studied throughout the world; +were the logs for one voyage of the entire whale fleet carefully +collated, then the migrations of the sperm whale would be found to +correspond in invariability to those of the herring-shoals or the +flights of swallows. On this hint, attempts have been made to construct +elaborate migratory charts of the sperm whale.* + + + *Since the above was written, the statement is happily borne out by + an official circular, issued by Lieutenant Maury, of the National + Observatory, Washington, April 16th, 1851. By that circular, it + appears that precisely such a chart is in course of completion; and + portions of it are presented in the circular. “This chart divides the + ocean into districts of five degrees of latitude by five degrees of + longitude; perpendicularly through each of which districts are twelve + columns for the twelve months; and horizontally through each of which + districts are three lines; one to show the number of days that have + been spent in each month in every district, and the two others to + show the number of days in which whales, sperm or right, have been + seen.” + + + + +Besides, when making a passage from one feeding-ground to another, the +sperm whales, guided by some infallible instinct—say, rather, secret +intelligence from the Deity—mostly swim in _veins_, as they are called; +continuing their way along a given ocean-line with such undeviating +exactitude, that no ship ever sailed her course, by any chart, with one +tithe of such marvellous precision. Though, in these cases, the +direction taken by any one whale be straight as a surveyor’s parallel, +and though the line of advance be strictly confined to its own +unavoidable, straight wake, yet the arbitrary _vein_ in which at these +times he is said to swim, generally embraces some few miles in width +(more or less, as the vein is presumed to expand or contract); but +never exceeds the visual sweep from the whale-ship’s mast-heads, when +circumspectly gliding along this magic zone. The sum is, that at +particular seasons within that breadth and along that path, migrating +whales may with great confidence be looked for. + +And hence not only at substantiated times, upon well known separate +feeding-grounds, could Ahab hope to encounter his prey; but in crossing +the widest expanses of water between those grounds he could, by his +art, so place and time himself on his way, as even then not to be +wholly without prospect of a meeting. + +There was a circumstance which at first sight seemed to entangle his +delirious but still methodical scheme. But not so in the reality, +perhaps. Though the gregarious sperm whales have their regular seasons +for particular grounds, yet in general you cannot conclude that the +herds which haunted such and such a latitude or longitude this year, +say, will turn out to be identically the same with those that were +found there the preceding season; though there are peculiar and +unquestionable instances where the contrary of this has proved true. In +general, the same remark, only within a less wide limit, applies to the +solitaries and hermits among the matured, aged sperm whales. So that +though Moby Dick had in a former year been seen, for example, on what +is called the Seychelle ground in the Indian ocean, or Volcano Bay on +the Japanese Coast; yet it did not follow, that were the Pequod to +visit either of those spots at any subsequent corresponding season, she +would infallibly encounter him there. So, too, with some other feeding +grounds, where he had at times revealed himself. But all these seemed +only his casual stopping-places and ocean-inns, so to speak, not his +places of prolonged abode. And where Ahab’s chances of accomplishing +his object have hitherto been spoken of, allusion has only been made to +whatever way-side, antecedent, extra prospects were his, ere a +particular set time or place were attained, when all possibilities +would become probabilities, and, as Ahab fondly thought, every +possibility the next thing to a certainty. That particular set time and +place were conjoined in the one technical phrase—the +Season-on-the-Line. For there and then, for several consecutive years, +Moby Dick had been periodically descried, lingering in those waters for +awhile, as the sun, in its annual round, loiters for a predicted +interval in any one sign of the Zodiac. There it was, too, that most of +the deadly encounters with the white whale had taken place; there the +waves were storied with his deeds; there also was that tragic spot +where the monomaniac old man had found the awful motive to his +vengeance. But in the cautious comprehensiveness and unloitering +vigilance with which Ahab threw his brooding soul into this unfaltering +hunt, he would not permit himself to rest all his hopes upon the one +crowning fact above mentioned, however flattering it might be to those +hopes; nor in the sleeplessness of his vow could he so tranquillize his +unquiet heart as to postpone all intervening quest. + +Now, the Pequod had sailed from Nantucket at the very beginning of the +Season-on-the-Line. No possible endeavor then could enable her +commander to make the great passage southwards, double Cape Horn, and +then running down sixty degrees of latitude arrive in the equatorial +Pacific in time to cruise there. Therefore, he must wait for the next +ensuing season. Yet the premature hour of the Pequod’s sailing had, +perhaps, been correctly selected by Ahab, with a view to this very +complexion of things. Because, an interval of three hundred and +sixty-five days and nights was before him; an interval which, instead +of impatiently enduring ashore, he would spend in a miscellaneous hunt; +if by chance the White Whale, spending his vacation in seas far remote +from his periodical feeding-grounds, should turn up his wrinkled brow +off the Persian Gulf, or in the Bengal Bay, or China Seas, or in any +other waters haunted by his race. So that Monsoons, Pampas, +Nor’-Westers, Harmattans, Trades; any wind but the Levanter and Simoon, +might blow Moby Dick into the devious zig-zag world-circle of the +Pequod’s circumnavigating wake. + +But granting all this; yet, regarded discreetly and coolly, seems it +not but a mad idea, this; that in the broad boundless ocean, one +solitary whale, even if encountered, should be thought capable of +individual recognition from his hunter, even as a white-bearded Mufti +in the thronged thoroughfares of Constantinople? Yes. For the peculiar +snow-white brow of Moby Dick, and his snow-white hump, could not but be +unmistakable. And have I not tallied the whale, Ahab would mutter to +himself, as after poring over his charts till long after midnight he +would throw himself back in reveries—tallied him, and shall he escape? +His broad fins are bored, and scalloped out like a lost sheep’s ear! +And here, his mad mind would run on in a breathless race; till a +weariness and faintness of pondering came over him; and in the open air +of the deck he would seek to recover his strength. Ah, God! what +trances of torments does that man endure who is consumed with one +unachieved revengeful desire. He sleeps with clenched hands; and wakes +with his own bloody nails in his palms. + +Often, when forced from his hammock by exhausting and intolerably vivid +dreams of the night, which, resuming his own intense thoughts through +the day, carried them on amid a clashing of phrensies, and whirled them +round and round and round in his blazing brain, till the very throbbing +of his life-spot became insufferable anguish; and when, as was +sometimes the case, these spiritual throes in him heaved his being up +from its base, and a chasm seemed opening in him, from which forked +flames and lightnings shot up, and accursed fiends beckoned him to leap +down among them; when this hell in himself yawned beneath him, a wild +cry would be heard through the ship; and with glaring eyes Ahab would +burst from his state room, as though escaping from a bed that was on +fire. Yet these, perhaps, instead of being the unsuppressable symptoms +of some latent weakness, or fright at his own resolve, were but the +plainest tokens of its intensity. For, at such times, crazy Ahab, the +scheming, unappeasedly steadfast hunter of the white whale; this Ahab +that had gone to his hammock, was not the agent that so caused him to +burst from it in horror again. The latter was the eternal, living +principle or soul in him; and in sleep, being for the time dissociated +from the characterizing mind, which at other times employed it for its +outer vehicle or agent, it spontaneously sought escape from the +scorching contiguity of the frantic thing, of which, for the time, it +was no longer an integral. But as the mind does not exist unless +leagued with the soul, therefore it must have been that, in Ahab’s +case, yielding up all his thoughts and fancies to his one supreme +purpose; that purpose, by its own sheer inveteracy of will, forced +itself against gods and devils into a kind of self-assumed, independent +being of its own. Nay, could grimly live and burn, while the common +vitality to which it was conjoined, fled horror-stricken from the +unbidden and unfathered birth. Therefore, the tormented spirit that +glared out of bodily eyes, when what seemed Ahab rushed from his room, +was for the time but a vacated thing, a formless somnambulistic being, +a ray of living light, to be sure, but without an object to colour, and +therefore a blankness in itself. God help thee, old man, thy thoughts +have created a creature in thee; and he whose intense thinking thus +makes him a Prometheus; a vulture feeds upon that heart for ever; that +vulture the very creature he creates. + + +CHAPTER 45. The Affidavit. + +So far as what there may be of a narrative in this book; and, indeed, +as indirectly touching one or two very interesting and curious +particulars in the habits of sperm whales, the foregoing chapter, in +its earlier part, is as important a one as will be found in this +volume; but the leading matter of it requires to be still further and +more familiarly enlarged upon, in order to be adequately understood, +and moreover to take away any incredulity which a profound ignorance of +the entire subject may induce in some minds, as to the natural verity +of the main points of this affair. + +I care not to perform this part of my task methodically; but shall be +content to produce the desired impression by separate citations of +items, practically or reliably known to me as a whaleman; and from +these citations, I take it—the conclusion aimed at will naturally +follow of itself. + +First: I have personally known three instances where a whale, after +receiving a harpoon, has effected a complete escape; and, after an +interval (in one instance of three years), has been again struck by the +same hand, and slain; when the two irons, both marked by the same +private cypher, have been taken from the body. In the instance where +three years intervened between the flinging of the two harpoons; and I +think it may have been something more than that; the man who darted +them happening, in the interval, to go in a trading ship on a voyage to +Africa, went ashore there, joined a discovery party, and penetrated far +into the interior, where he travelled for a period of nearly two years, +often endangered by serpents, savages, tigers, poisonous miasmas, with +all the other common perils incident to wandering in the heart of +unknown regions. Meanwhile, the whale he had struck must also have been +on its travels; no doubt it had thrice circumnavigated the globe, +brushing with its flanks all the coasts of Africa; but to no purpose. +This man and this whale again came together, and the one vanquished the +other. I say I, myself, have known three instances similar to this; +that is in two of them I saw the whales struck; and, upon the second +attack, saw the two irons with the respective marks cut in them, +afterwards taken from the dead fish. In the three-year instance, it so +fell out that I was in the boat both times, first and last, and the +last time distinctly recognised a peculiar sort of huge mole under the +whale’s eye, which I had observed there three years previous. I say +three years, but I am pretty sure it was more than that. Here are three +instances, then, which I personally know the truth of; but I have heard +of many other instances from persons whose veracity in the matter there +is no good ground to impeach. + +Secondly: It is well known in the Sperm Whale Fishery, however ignorant +the world ashore may be of it, that there have been several memorable +historical instances where a particular whale in the ocean has been at +distant times and places popularly cognisable. Why such a whale became +thus marked was not altogether and originally owing to his bodily +peculiarities as distinguished from other whales; for however peculiar +in that respect any chance whale may be, they soon put an end to his +peculiarities by killing him, and boiling him down into a peculiarly +valuable oil. No: the reason was this: that from the fatal experiences +of the fishery there hung a terrible prestige of perilousness about +such a whale as there did about Rinaldo Rinaldini, insomuch that most +fishermen were content to recognise him by merely touching their +tarpaulins when he would be discovered lounging by them on the sea, +without seeking to cultivate a more intimate acquaintance. Like some +poor devils ashore that happen to know an irascible great man, they +make distant unobtrusive salutations to him in the street, lest if they +pursued the acquaintance further, they might receive a summary thump +for their presumption. + +But not only did each of these famous whales enjoy great individual +celebrity—Nay, you may call it an ocean-wide renown; not only was he +famous in life and now is immortal in forecastle stories after death, +but he was admitted into all the rights, privileges, and distinctions +of a name; had as much a name indeed as Cambyses or Cæsar. Was it not +so, O Timor Tom! thou famed leviathan, scarred like an iceberg, who so +long did’st lurk in the Oriental straits of that name, whose spout was +oft seen from the palmy beach of Ombay? Was it not so, O New Zealand +Jack! thou terror of all cruisers that crossed their wakes in the +vicinity of the Tattoo Land? Was it not so, O Morquan! King of Japan, +whose lofty jet they say at times assumed the semblance of a snow-white +cross against the sky? Was it not so, O Don Miguel! thou Chilian whale, +marked like an old tortoise with mystic hieroglyphics upon the back! In +plain prose, here are four whales as well known to the students of +Cetacean History as Marius or Sylla to the classic scholar. + +But this is not all. New Zealand Tom and Don Miguel, after at various +times creating great havoc among the boats of different vessels, were +finally gone in quest of, systematically hunted out, chased and killed +by valiant whaling captains, who heaved up their anchors with that +express object as much in view, as in setting out through the +Narragansett Woods, Captain Butler of old had it in his mind to capture +that notorious murderous savage Annawon, the headmost warrior of the +Indian King Philip. + +I do not know where I can find a better place than just here, to make +mention of one or two other things, which to me seem important, as in +printed form establishing in all respects the reasonableness of the +whole story of the White Whale, more especially the catastrophe. For +this is one of those disheartening instances where truth requires full +as much bolstering as error. So ignorant are most landsmen of some of +the plainest and most palpable wonders of the world, that without some +hints touching the plain facts, historical and otherwise, of the +fishery, they might scout at Moby Dick as a monstrous fable, or still +worse and more detestable, a hideous and intolerable allegory. + +First: Though most men have some vague flitting ideas of the general +perils of the grand fishery, yet they have nothing like a fixed, vivid +conception of those perils, and the frequency with which they recur. +One reason perhaps is, that not one in fifty of the actual disasters +and deaths by casualties in the fishery, ever finds a public record at +home, however transient and immediately forgotten that record. Do you +suppose that that poor fellow there, who this moment perhaps caught by +the whale-line off the coast of New Guinea, is being carried down to +the bottom of the sea by the sounding leviathan—do you suppose that +that poor fellow’s name will appear in the newspaper obituary you will +read to-morrow at your breakfast? No: because the mails are very +irregular between here and New Guinea. In fact, did you ever hear what +might be called regular news direct or indirect from New Guinea? Yet I +tell you that upon one particular voyage which I made to the Pacific, +among many others we spoke thirty different ships, every one of which +had had a death by a whale, some of them more than one, and three that +had each lost a boat’s crew. For God’s sake, be economical with your +lamps and candles! not a gallon you burn, but at least one drop of +man’s blood was spilled for it. + +Secondly: People ashore have indeed some indefinite idea that a whale +is an enormous creature of enormous power; but I have ever found that +when narrating to them some specific example of this two-fold +enormousness, they have significantly complimented me upon my +facetiousness; when, I declare upon my soul, I had no more idea of +being facetious than Moses, when he wrote the history of the plagues of +Egypt. + +But fortunately the special point I here seek can be established upon +testimony entirely independent of my own. That point is this: The Sperm +Whale is in some cases sufficiently powerful, knowing, and judiciously +malicious, as with direct aforethought to stave in, utterly destroy, +and sink a large ship; and what is more, the Sperm Whale _has_ done it. + +First: In the year 1820 the ship Essex, Captain Pollard, of Nantucket, +was cruising in the Pacific Ocean. One day she saw spouts, lowered her +boats, and gave chase to a shoal of sperm whales. Ere long, several of +the whales were wounded; when, suddenly, a very large whale escaping +from the boats, issued from the shoal, and bore directly down upon the +ship. Dashing his forehead against her hull, he so stove her in, that +in less than “ten minutes” she settled down and fell over. Not a +surviving plank of her has been seen since. After the severest +exposure, part of the crew reached the land in their boats. Being +returned home at last, Captain Pollard once more sailed for the Pacific +in command of another ship, but the gods shipwrecked him again upon +unknown rocks and breakers; for the second time his ship was utterly +lost, and forthwith forswearing the sea, he has never tempted it since. +At this day Captain Pollard is a resident of Nantucket. I have seen +Owen Chace, who was chief mate of the Essex at the time of the tragedy; +I have read his plain and faithful narrative; I have conversed with his +son; and all this within a few miles of the scene of the catastrophe.* + +*The following are extracts from Chace’s narrative: “Every fact seemed +to warrant me in concluding that it was anything but chance which +directed his operations; he made two several attacks upon the ship, at +a short interval between them, both of which, according to their +direction, were calculated to do us the most injury, by being made +ahead, and thereby combining the speed of the two objects for the +shock; to effect which, the exact manœuvres which he made were +necessary. His aspect was most horrible, and such as indicated +resentment and fury. He came directly from the shoal which we had just +before entered, and in which we had struck three of his companions, as +if fired with revenge for their sufferings.” Again: “At all events, the +whole circumstances taken together, all happening before my own eyes, +and producing, at the time, impressions in my mind of decided, +calculating mischief, on the part of the whale (many of which +impressions I cannot now recall), induce me to be satisfied that I am +correct in my opinion.” + +Here are his reflections some time after quitting the ship, during a +black night in an open boat, when almost despairing of reaching any +hospitable shore. “The dark ocean and swelling waters were nothing; the +fears of being swallowed up by some dreadful tempest, or dashed upon +hidden rocks, with all the other ordinary subjects of fearful +contemplation, seemed scarcely entitled to a moment’s thought; the +dismal looking wreck, and _the horrid aspect and revenge of the whale_, +wholly engrossed my reflections, until day again made its appearance.” + +In another place—p. 45,—he speaks of “_the mysterious and mortal attack +of the animal_.” + +Secondly: The ship Union, also of Nantucket, was in the year 1807 +totally lost off the Azores by a similar onset, but the authentic +particulars of this catastrophe I have never chanced to encounter, +though from the whale hunters I have now and then heard casual +allusions to it. + +Thirdly: Some eighteen or twenty years ago Commodore J——, then +commanding an American sloop-of-war of the first class, happened to be +dining with a party of whaling captains, on board a Nantucket ship in +the harbor of Oahu, Sandwich Islands. Conversation turning upon whales, +the Commodore was pleased to be sceptical touching the amazing strength +ascribed to them by the professional gentlemen present. He peremptorily +denied for example, that any whale could so smite his stout +sloop-of-war as to cause her to leak so much as a thimbleful. Very +good; but there is more coming. Some weeks after, the Commodore set +sail in this impregnable craft for Valparaiso. But he was stopped on +the way by a portly sperm whale, that begged a few moments’ +confidential business with him. That business consisted in fetching the +Commodore’s craft such a thwack, that with all his pumps going he made +straight for the nearest port to heave down and repair. I am not +superstitious, but I consider the Commodore’s interview with that whale +as providential. Was not Saul of Tarsus converted from unbelief by a +similar fright? I tell you, the sperm whale will stand no nonsense. + +I will now refer you to Langsdorff’s Voyages for a little circumstance +in point, peculiarly interesting to the writer hereof. Langsdorff, you +must know by the way, was attached to the Russian Admiral Krusenstern’s +famous Discovery Expedition in the beginning of the present century. +Captain Langsdorff thus begins his seventeenth chapter: + +“By the thirteenth of May our ship was ready to sail, and the next day +we were out in the open sea, on our way to Ochotsh. The weather was +very clear and fine, but so intolerably cold that we were obliged to +keep on our fur clothing. For some days we had very little wind; it was +not till the nineteenth that a brisk gale from the northwest sprang up. +An uncommon large whale, the body of which was larger than the ship +itself, lay almost at the surface of the water, but was not perceived +by any one on board till the moment when the ship, which was in full +sail, was almost upon him, so that it was impossible to prevent its +striking against him. We were thus placed in the most imminent danger, +as this gigantic creature, setting up its back, raised the ship three +feet at least out of the water. The masts reeled, and the sails fell +altogether, while we who were below all sprang instantly upon the deck, +concluding that we had struck upon some rock; instead of this we saw +the monster sailing off with the utmost gravity and solemnity. Captain +D’Wolf applied immediately to the pumps to examine whether or not the +vessel had received any damage from the shock, but we found that very +happily it had escaped entirely uninjured.” + +Now, the Captain D’Wolf here alluded to as commanding the ship in +question, is a New Englander, who, after a long life of unusual +adventures as a sea-captain, this day resides in the village of +Dorchester near Boston. I have the honor of being a nephew of his. I +have particularly questioned him concerning this passage in Langsdorff. +He substantiates every word. The ship, however, was by no means a large +one: a Russian craft built on the Siberian coast, and purchased by my +uncle after bartering away the vessel in which he sailed from home. + +In that up and down manly book of old-fashioned adventure, so full, +too, of honest wonders—the voyage of Lionel Wafer, one of ancient +Dampier’s old chums—I found a little matter set down so like that just +quoted from Langsdorff, that I cannot forbear inserting it here for a +corroborative example, if such be needed. + +Lionel, it seems, was on his way to “John Ferdinando,” as he calls the +modern Juan Fernandes. “In our way thither,” he says, “about four +o’clock in the morning, when we were about one hundred and fifty +leagues from the Main of America, our ship felt a terrible shock, which +put our men in such consternation that they could hardly tell where +they were or what to think; but every one began to prepare for death. +And, indeed, the shock was so sudden and violent, that we took it for +granted the ship had struck against a rock; but when the amazement was +a little over, we cast the lead, and sounded, but found no ground. * * +* * * The suddenness of the shock made the guns leap in their +carriages, and several of the men were shaken out of their hammocks. +Captain Davis, who lay with his head on a gun, was thrown out of his +cabin!” Lionel then goes on to impute the shock to an earthquake, and +seems to substantiate the imputation by stating that a great +earthquake, somewhere about that time, did actually do great mischief +along the Spanish land. But I should not much wonder if, in the +darkness of that early hour of the morning, the shock was after all +caused by an unseen whale vertically bumping the hull from beneath. + +I might proceed with several more examples, one way or another known to +me, of the great power and malice at times of the sperm whale. In more +than one instance, he has been known, not only to chase the assailing +boats back to their ships, but to pursue the ship itself, and long +withstand all the lances hurled at him from its decks. The English ship +Pusie Hall can tell a story on that head; and, as for his strength, let +me say, that there have been examples where the lines attached to a +running sperm whale have, in a calm, been transferred to the ship, and +secured there; the whale towing her great hull through the water, as a +horse walks off with a cart. Again, it is very often observed that, if +the sperm whale, once struck, is allowed time to rally, he then acts, +not so often with blind rage, as with wilful, deliberate designs of +destruction to his pursuers; nor is it without conveying some eloquent +indication of his character, that upon being attacked he will +frequently open his mouth, and retain it in that dread expansion for +several consecutive minutes. But I must be content with only one more +and a concluding illustration; a remarkable and most significant one, +by which you will not fail to see, that not only is the most marvellous +event in this book corroborated by plain facts of the present day, but +that these marvels (like all marvels) are mere repetitions of the ages; +so that for the millionth time we say amen with Solomon—Verily there is +nothing new under the sun. + +In the sixth Christian century lived Procopius, a Christian magistrate +of Constantinople, in the days when Justinian was Emperor and +Belisarius general. As many know, he wrote the history of his own +times, a work every way of uncommon value. By the best authorities, he +has always been considered a most trustworthy and unexaggerating +historian, except in some one or two particulars, not at all affecting +the matter presently to be mentioned. + +Now, in this history of his, Procopius mentions that, during the term +of his prefecture at Constantinople, a great sea-monster was captured +in the neighboring Propontis, or Sea of Marmora, after having destroyed +vessels at intervals in those waters for a period of more than fifty +years. A fact thus set down in substantial history cannot easily be +gainsaid. Nor is there any reason it should be. Of what precise species +this sea-monster was, is not mentioned. But as he destroyed ships, as +well as for other reasons, he must have been a whale; and I am strongly +inclined to think a sperm whale. And I will tell you why. For a long +time I fancied that the sperm whale had been always unknown in the +Mediterranean and the deep waters connecting with it. Even now I am +certain that those seas are not, and perhaps never can be, in the +present constitution of things, a place for his habitual gregarious +resort. But further investigations have recently proved to me, that in +modern times there have been isolated instances of the presence of the +sperm whale in the Mediterranean. I am told, on good authority, that on +the Barbary coast, a Commodore Davis of the British navy found the +skeleton of a sperm whale. Now, as a vessel of war readily passes +through the Dardanelles, hence a sperm whale could, by the same route, +pass out of the Mediterranean into the Propontis. + +In the Propontis, as far as I can learn, none of that peculiar +substance called _brit_ is to be found, the aliment of the right whale. +But I have every reason to believe that the food of the sperm +whale—squid or cuttle-fish—lurks at the bottom of that sea, because +large creatures, but by no means the largest of that sort, have been +found at its surface. If, then, you properly put these statements +together, and reason upon them a bit, you will clearly perceive that, +according to all human reasoning, Procopius’s sea-monster, that for +half a century stove the ships of a Roman Emperor, must in all +probability have been a sperm whale. + + +CHAPTER 46. Surmises. + +Though, consumed with the hot fire of his purpose, Ahab in all his +thoughts and actions ever had in view the ultimate capture of Moby +Dick; though he seemed ready to sacrifice all mortal interests to that +one passion; nevertheless it may have been that he was by nature and +long habituation far too wedded to a fiery whaleman’s ways, altogether +to abandon the collateral prosecution of the voyage. Or at least if +this were otherwise, there were not wanting other motives much more +influential with him. It would be refining too much, perhaps, even +considering his monomania, to hint that his vindictiveness towards the +White Whale might have possibly extended itself in some degree to all +sperm whales, and that the more monsters he slew by so much the more he +multiplied the chances that each subsequently encountered whale would +prove to be the hated one he hunted. But if such an hypothesis be +indeed exceptionable, there were still additional considerations which, +though not so strictly according with the wildness of his ruling +passion, yet were by no means incapable of swaying him. + +To accomplish his object Ahab must use tools; and of all tools used in +the shadow of the moon, men are most apt to get out of order. He knew, +for example, that however magnetic his ascendency in some respects was +over Starbuck, yet that ascendency did not cover the complete spiritual +man any more than mere corporeal superiority involves intellectual +mastership; for to the purely spiritual, the intellectual but stand in +a sort of corporeal relation. Starbuck’s body and Starbuck’s coerced +will were Ahab’s, so long as Ahab kept his magnet at Starbuck’s brain; +still he knew that for all this the chief mate, in his soul, abhorred +his captain’s quest, and could he, would joyfully disintegrate himself +from it, or even frustrate it. It might be that a long interval would +elapse ere the White Whale was seen. During that long interval Starbuck +would ever be apt to fall into open relapses of rebellion against his +captain’s leadership, unless some ordinary, prudential, circumstantial +influences were brought to bear upon him. Not only that, but the subtle +insanity of Ahab respecting Moby Dick was noways more significantly +manifested than in his superlative sense and shrewdness in foreseeing +that, for the present, the hunt should in some way be stripped of that +strange imaginative impiousness which naturally invested it; that the +full terror of the voyage must be kept withdrawn into the obscure +background (for few men’s courage is proof against protracted +meditation unrelieved by action); that when they stood their long night +watches, his officers and men must have some nearer things to think of +than Moby Dick. For however eagerly and impetuously the savage crew had +hailed the announcement of his quest; yet all sailors of all sorts are +more or less capricious and unreliable—they live in the varying outer +weather, and they inhale its fickleness—and when retained for any +object remote and blank in the pursuit, however promissory of life and +passion in the end, it is above all things requisite that temporary +interests and employments should intervene and hold them healthily +suspended for the final dash. + +Nor was Ahab unmindful of another thing. In times of strong emotion +mankind disdain all base considerations; but such times are evanescent. +The permanent constitutional condition of the manufactured man, thought +Ahab, is sordidness. Granting that the White Whale fully incites the +hearts of this my savage crew, and playing round their savageness even +breeds a certain generous knight-errantism in them, still, while for +the love of it they give chase to Moby Dick, they must also have food +for their more common, daily appetites. For even the high lifted and +chivalric Crusaders of old times were not content to traverse two +thousand miles of land to fight for their holy sepulchre, without +committing burglaries, picking pockets, and gaining other pious +perquisites by the way. Had they been strictly held to their one final +and romantic object—that final and romantic object, too many would have +turned from in disgust. I will not strip these men, thought Ahab, of +all hopes of cash—aye, cash. They may scorn cash now; but let some +months go by, and no perspective promise of it to them, and then this +same quiescent cash all at once mutinying in them, this same cash would +soon cashier Ahab. + +Nor was there wanting still another precautionary motive more related +to Ahab personally. Having impulsively, it is probable, and perhaps +somewhat prematurely revealed the prime but private purpose of the +Pequod’s voyage, Ahab was now entirely conscious that, in so doing, he +had indirectly laid himself open to the unanswerable charge of +usurpation; and with perfect impunity, both moral and legal, his crew +if so disposed, and to that end competent, could refuse all further +obedience to him, and even violently wrest from him the command. From +even the barely hinted imputation of usurpation, and the possible +consequences of such a suppressed impression gaining ground, Ahab must +of course have been most anxious to protect himself. That protection +could only consist in his own predominating brain and heart and hand, +backed by a heedful, closely calculating attention to every minute +atmospheric influence which it was possible for his crew to be +subjected to. + +For all these reasons then, and others perhaps too analytic to be +verbally developed here, Ahab plainly saw that he must still in a good +degree continue true to the natural, nominal purpose of the Pequod’s +voyage; observe all customary usages; and not only that, but force +himself to evince all his well known passionate interest in the general +pursuit of his profession. + +Be all this as it may, his voice was now often heard hailing the three +mast-heads and admonishing them to keep a bright look-out, and not omit +reporting even a porpoise. This vigilance was not long without reward. + + +CHAPTER 47. The Mat-Maker. + +It was a cloudy, sultry afternoon; the seamen were lazily lounging +about the decks, or vacantly gazing over into the lead-coloured waters. +Queequeg and I were mildly employed weaving what is called a sword-mat, +for an additional lashing to our boat. So still and subdued and yet +somehow preluding was all the scene, and such an incantation of reverie +lurked in the air, that each silent sailor seemed resolved into his own +invisible self. + +I was the attendant or page of Queequeg, while busy at the mat. As I +kept passing and repassing the filling or woof of marline between the +long yarns of the warp, using my own hand for the shuttle, and as +Queequeg, standing sideways, ever and anon slid his heavy oaken sword +between the threads, and idly looking off upon the water, carelessly +and unthinkingly drove home every yarn: I say so strange a dreaminess +did there then reign all over the ship and all over the sea, only +broken by the intermitting dull sound of the sword, that it seemed as +if this were the Loom of Time, and I myself were a shuttle mechanically +weaving and weaving away at the Fates. There lay the fixed threads of +the warp subject to but one single, ever returning, unchanging +vibration, and that vibration merely enough to admit of the crosswise +interblending of other threads with its own. This warp seemed +necessity; and here, thought I, with my own hand I ply my own shuttle +and weave my own destiny into these unalterable threads. Meantime, +Queequeg’s impulsive, indifferent sword, sometimes hitting the woof +slantingly, or crookedly, or strongly, or weakly, as the case might be; +and by this difference in the concluding blow producing a corresponding +contrast in the final aspect of the completed fabric; this savage’s +sword, thought I, which thus finally shapes and fashions both warp and +woof; this easy, indifferent sword must be chance—aye, chance, free +will, and necessity—nowise incompatible—all interweavingly working +together. The straight warp of necessity, not to be swerved from its +ultimate course—its every alternating vibration, indeed, only tending +to that; free will still free to ply her shuttle between given threads; +and chance, though restrained in its play within the right lines of +necessity, and sideways in its motions directed by free will, though +thus prescribed to by both, chance by turns rules either, and has the +last featuring blow at events. + +Thus we were weaving and weaving away when I started at a sound so +strange, long drawn, and musically wild and unearthly, that the ball of +free will dropped from my hand, and I stood gazing up at the clouds +whence that voice dropped like a wing. High aloft in the cross-trees +was that mad Gay-Header, Tashtego. His body was reaching eagerly +forward, his hand stretched out like a wand, and at brief sudden +intervals he continued his cries. To be sure the same sound was that +very moment perhaps being heard all over the seas, from hundreds of +whalemen’s look-outs perched as high in the air; but from few of those +lungs could that accustomed old cry have derived such a marvellous +cadence as from Tashtego the Indian’s. + +As he stood hovering over you half suspended in air, so wildly and +eagerly peering towards the horizon, you would have thought him some +prophet or seer beholding the shadows of Fate, and by those wild cries +announcing their coming. + +“There she blows! there! there! there! she blows! she blows!” + +“Where-away?” + +“On the lee-beam, about two miles off! a school of them!” + +Instantly all was commotion. + +The Sperm Whale blows as a clock ticks, with the same undeviating and +reliable uniformity. And thereby whalemen distinguish this fish from +other tribes of his genus. + +“There go flukes!” was now the cry from Tashtego; and the whales +disappeared. + +“Quick, steward!” cried Ahab. “Time! time!” + +Dough-Boy hurried below, glanced at the watch, and reported the exact +minute to Ahab. + +The ship was now kept away from the wind, and she went gently rolling +before it. Tashtego reporting that the whales had gone down heading to +leeward, we confidently looked to see them again directly in advance of +our bows. For that singular craft at times evinced by the Sperm Whale +when, sounding with his head in one direction, he nevertheless, while +concealed beneath the surface, mills round, and swiftly swims off in +the opposite quarter—this deceitfulness of his could not now be in +action; for there was no reason to suppose that the fish seen by +Tashtego had been in any way alarmed, or indeed knew at all of our +vicinity. One of the men selected for shipkeepers—that is, those not +appointed to the boats, by this time relieved the Indian at the +main-mast head. The sailors at the fore and mizzen had come down; the +line tubs were fixed in their places; the cranes were thrust out; the +mainyard was backed, and the three boats swung over the sea like three +samphire baskets over high cliffs. Outside of the bulwarks their eager +crews with one hand clung to the rail, while one foot was expectantly +poised on the gunwale. So look the long line of man-of-war’s men about +to throw themselves on board an enemy’s ship. + +But at this critical instant a sudden exclamation was heard that took +every eye from the whale. With a start all glared at dark Ahab, who was +surrounded by five dusky phantoms that seemed fresh formed out of air. + + +CHAPTER 48. The First Lowering. + +The phantoms, for so they then seemed, were flitting on the other side +of the deck, and, with a noiseless celerity, were casting loose the +tackles and bands of the boat which swung there. This boat had always +been deemed one of the spare boats, though technically called the +captain’s, on account of its hanging from the starboard quarter. The +figure that now stood by its bows was tall and swart, with one white +tooth evilly protruding from its steel-like lips. A rumpled Chinese +jacket of black cotton funereally invested him, with wide black +trowsers of the same dark stuff. But strangely crowning this ebonness +was a glistening white plaited turban, the living hair braided and +coiled round and round upon his head. Less swart in aspect, the +companions of this figure were of that vivid, tiger-yellow complexion +peculiar to some of the aboriginal natives of the Manillas;—a race +notorious for a certain diabolism of subtilty, and by some honest white +mariners supposed to be the paid spies and secret confidential agents +on the water of the devil, their lord, whose counting-room they suppose +to be elsewhere. + +While yet the wondering ship’s company were gazing upon these +strangers, Ahab cried out to the white-turbaned old man at their head, +“All ready there, Fedallah?” + +“Ready,” was the half-hissed reply. + +“Lower away then; d’ye hear?” shouting across the deck. “Lower away +there, I say.” + +Such was the thunder of his voice, that spite of their amazement the +men sprang over the rail; the sheaves whirled round in the blocks; with +a wallow, the three boats dropped into the sea; while, with a +dexterous, off-handed daring, unknown in any other vocation, the +sailors, goat-like, leaped down the rolling ship’s side into the tossed +boats below. + +Hardly had they pulled out from under the ship’s lee, when a fourth +keel, coming from the windward side, pulled round under the stern, and +showed the five strangers rowing Ahab, who, standing erect in the +stern, loudly hailed Starbuck, Stubb, and Flask, to spread themselves +widely, so as to cover a large expanse of water. But with all their +eyes again riveted upon the swart Fedallah and his crew, the inmates of +the other boats obeyed not the command. + +“Captain Ahab?—” said Starbuck. + +“Spread yourselves,” cried Ahab; “give way, all four boats. Thou, +Flask, pull out more to leeward!” + +“Aye, aye, sir,” cheerily cried little King-Post, sweeping round his +great steering oar. “Lay back!” addressing his crew. +“There!—there!—there again! There she blows right ahead, boys!—lay +back!” + +“Never heed yonder yellow boys, Archy.” + +“Oh, I don’t mind ’em, sir,” said Archy; “I knew it all before now. +Didn’t I hear ’em in the hold? And didn’t I tell Cabaco here of it? +What say ye, Cabaco? They are stowaways, Mr. Flask.” + +“Pull, pull, my fine hearts-alive; pull, my children; pull, my little +ones,” drawlingly and soothingly sighed Stubb to his crew, some of whom +still showed signs of uneasiness. “Why don’t you break your backbones, +my boys? What is it you stare at? Those chaps in yonder boat? Tut! They +are only five more hands come to help us—never mind from where—the more +the merrier. Pull, then, do pull; never mind the brimstone—devils are +good fellows enough. So, so; there you are now; that’s the stroke for a +thousand pounds; that’s the stroke to sweep the stakes! Hurrah for the +gold cup of sperm oil, my heroes! Three cheers, men—all hearts alive! +Easy, easy; don’t be in a hurry—don’t be in a hurry. Why don’t you snap +your oars, you rascals? Bite something, you dogs! So, so, so, +then:—softly, softly! That’s it—that’s it! long and strong. Give way +there, give way! The devil fetch ye, ye ragamuffin rapscallions; ye are +all asleep. Stop snoring, ye sleepers, and pull. Pull, will ye? pull, +can’t ye? pull, won’t ye? Why in the name of gudgeons and ginger-cakes +don’t ye pull?—pull and break something! pull, and start your eyes out! +Here!” whipping out the sharp knife from his girdle; “every mother’s +son of ye draw his knife, and pull with the blade between his teeth. +That’s it—that’s it. Now ye do something; that looks like it, my +steel-bits. Start her—start her, my silver-spoons! Start her, +marling-spikes!” + +Stubb’s exordium to his crew is given here at large, because he had +rather a peculiar way of talking to them in general, and especially in +inculcating the religion of rowing. But you must not suppose from this +specimen of his sermonizings that he ever flew into downright passions +with his congregation. Not at all; and therein consisted his chief +peculiarity. He would say the most terrific things to his crew, in a +tone so strangely compounded of fun and fury, and the fury seemed so +calculated merely as a spice to the fun, that no oarsman could hear +such queer invocations without pulling for dear life, and yet pulling +for the mere joke of the thing. Besides he all the time looked so easy +and indolent himself, so loungingly managed his steering-oar, and so +broadly gaped—open-mouthed at times—that the mere sight of such a +yawning commander, by sheer force of contrast, acted like a charm upon +the crew. Then again, Stubb was one of those odd sort of humorists, +whose jollity is sometimes so curiously ambiguous, as to put all +inferiors on their guard in the matter of obeying them. + +In obedience to a sign from Ahab, Starbuck was now pulling obliquely +across Stubb’s bow; and when for a minute or so the two boats were +pretty near to each other, Stubb hailed the mate. + +“Mr. Starbuck! larboard boat there, ahoy! a word with ye, sir, if ye +please!” + +“Halloa!” returned Starbuck, turning round not a single inch as he +spoke; still earnestly but whisperingly urging his crew; his face set +like a flint from Stubb’s. + +“What think ye of those yellow boys, sir!” + +“Smuggled on board, somehow, before the ship sailed. (Strong, strong, +boys!)” in a whisper to his crew, then speaking out loud again: “A sad +business, Mr. Stubb! (seethe her, seethe her, my lads!) but never mind, +Mr. Stubb, all for the best. Let all your crew pull strong, come what +will. (Spring, my men, spring!) There’s hogsheads of sperm ahead, Mr. +Stubb, and that’s what ye came for. (Pull, my boys!) Sperm, sperm’s the +play! This at least is duty; duty and profit hand in hand.” + +“Aye, aye, I thought as much,” soliloquized Stubb, when the boats +diverged, “as soon as I clapt eye on ’em, I thought so. Aye, and that’s +what he went into the after hold for, so often, as Dough-Boy long +suspected. They were hidden down there. The White Whale’s at the bottom +of it. Well, well, so be it! Can’t be helped! All right! Give way, men! +It ain’t the White Whale to-day! Give way!” + +Now the advent of these outlandish strangers at such a critical instant +as the lowering of the boats from the deck, this had not unreasonably +awakened a sort of superstitious amazement in some of the ship’s +company; but Archy’s fancied discovery having some time previous got +abroad among them, though indeed not credited then, this had in some +small measure prepared them for the event. It took off the extreme edge +of their wonder; and so what with all this and Stubb’s confident way of +accounting for their appearance, they were for the time freed from +superstitious surmisings; though the affair still left abundant room +for all manner of wild conjectures as to dark Ahab’s precise agency in +the matter from the beginning. For me, I silently recalled the +mysterious shadows I had seen creeping on board the Pequod during the +dim Nantucket dawn, as well as the enigmatical hintings of the +unaccountable Elijah. + +Meantime, Ahab, out of hearing of his officers, having sided the +furthest to windward, was still ranging ahead of the other boats; a +circumstance bespeaking how potent a crew was pulling him. Those tiger +yellow creatures of his seemed all steel and whalebone; like five +trip-hammers they rose and fell with regular strokes of strength, which +periodically started the boat along the water like a horizontal burst +boiler out of a Mississippi steamer. As for Fedallah, who was seen +pulling the harpooneer oar, he had thrown aside his black jacket, and +displayed his naked chest with the whole part of his body above the +gunwale, clearly cut against the alternating depressions of the watery +horizon; while at the other end of the boat Ahab, with one arm, like a +fencer’s, thrown half backward into the air, as if to counterbalance +any tendency to trip; Ahab was seen steadily managing his steering oar +as in a thousand boat lowerings ere the White Whale had torn him. All +at once the outstretched arm gave a peculiar motion and then remained +fixed, while the boat’s five oars were seen simultaneously peaked. Boat +and crew sat motionless on the sea. Instantly the three spread boats in +the rear paused on their way. The whales had irregularly settled bodily +down into the blue, thus giving no distantly discernible token of the +movement, though from his closer vicinity Ahab had observed it. + +“Every man look out along his oars!” cried Starbuck. “Thou, Queequeg, +stand up!” + +Nimbly springing up on the triangular raised box in the bow, the savage +stood erect there, and with intensely eager eyes gazed off towards the +spot where the chase had last been descried. Likewise upon the extreme +stern of the boat where it was also triangularly platformed level with +the gunwale, Starbuck himself was seen coolly and adroitly balancing +himself to the jerking tossings of his chip of a craft, and silently +eyeing the vast blue eye of the sea. + +Not very far distant Flask’s boat was also lying breathlessly still; +its commander recklessly standing upon the top of the loggerhead, a +stout sort of post rooted in the keel, and rising some two feet above +the level of the stern platform. It is used for catching turns with the +whale line. Its top is not more spacious than the palm of a man’s hand, +and standing upon such a base as that, Flask seemed perched at the +mast-head of some ship which had sunk to all but her trucks. But little +King-Post was small and short, and at the same time little King-Post +was full of a large and tall ambition, so that this loggerhead +stand-point of his did by no means satisfy King-Post. + +“I can’t see three seas off; tip us up an oar there, and let me on to +that.” + +Upon this, Daggoo, with either hand upon the gunwale to steady his way, +swiftly slid aft, and then erecting himself volunteered his lofty +shoulders for a pedestal. + +“Good a mast-head as any, sir. Will you mount?” + +“That I will, and thank ye very much, my fine fellow; only I wish you +fifty feet taller.” + +Whereupon planting his feet firmly against two opposite planks of the +boat, the gigantic negro, stooping a little, presented his flat palm to +Flask’s foot, and then putting Flask’s hand on his hearse-plumed head +and bidding him spring as he himself should toss, with one dexterous +fling landed the little man high and dry on his shoulders. And here was +Flask now standing, Daggoo with one lifted arm furnishing him with a +breastband to lean against and steady himself by. + +At any time it is a strange sight to the tyro to see with what wondrous +habitude of unconscious skill the whaleman will maintain an erect +posture in his boat, even when pitched about by the most riotously +perverse and cross-running seas. Still more strange to see him giddily +perched upon the loggerhead itself, under such circumstances. But the +sight of little Flask mounted upon gigantic Daggoo was yet more +curious; for sustaining himself with a cool, indifferent, easy, +unthought of, barbaric majesty, the noble negro to every roll of the +sea harmoniously rolled his fine form. On his broad back, flaxen-haired +Flask seemed a snow-flake. The bearer looked nobler than the rider. +Though truly vivacious, tumultuous, ostentatious little Flask would now +and then stamp with impatience; but not one added heave did he thereby +give to the negro’s lordly chest. So have I seen Passion and Vanity +stamping the living magnanimous earth, but the earth did not alter her +tides and her seasons for that. + +Meanwhile Stubb, the third mate, betrayed no such far-gazing +solicitudes. The whales might have made one of their regular soundings, +not a temporary dive from mere fright; and if that were the case, +Stubb, as his wont in such cases, it seems, was resolved to solace the +languishing interval with his pipe. He withdrew it from his hatband, +where he always wore it aslant like a feather. He loaded it, and rammed +home the loading with his thumb-end; but hardly had he ignited his +match across the rough sandpaper of his hand, when Tashtego, his +harpooneer, whose eyes had been setting to windward like two fixed +stars, suddenly dropped like light from his erect attitude to his seat, +crying out in a quick phrensy of hurry, “Down, down all, and give +way!—there they are!” + +To a landsman, no whale, nor any sign of a herring, would have been +visible at that moment; nothing but a troubled bit of greenish white +water, and thin scattered puffs of vapor hovering over it, and +suffusingly blowing off to leeward, like the confused scud from white +rolling billows. The air around suddenly vibrated and tingled, as it +were, like the air over intensely heated plates of iron. Beneath this +atmospheric waving and curling, and partially beneath a thin layer of +water, also, the whales were swimming. Seen in advance of all the other +indications, the puffs of vapor they spouted, seemed their forerunning +couriers and detached flying outriders. + +All four boats were now in keen pursuit of that one spot of troubled +water and air. But it bade fair to outstrip them; it flew on and on, as +a mass of interblending bubbles borne down a rapid stream from the +hills. + +“Pull, pull, my good boys,” said Starbuck, in the lowest possible but +intensest concentrated whisper to his men; while the sharp fixed glance +from his eyes darted straight ahead of the bow, almost seemed as two +visible needles in two unerring binnacle compasses. He did not say much +to his crew, though, nor did his crew say anything to him. Only the +silence of the boat was at intervals startlingly pierced by one of his +peculiar whispers, now harsh with command, now soft with entreaty. + +How different the loud little King-Post. “Sing out and say something, +my hearties. Roar and pull, my thunderbolts! Beach me, beach me on +their black backs, boys; only do that for me, and I’ll sign over to you +my Martha’s Vineyard plantation, boys; including wife and children, +boys. Lay me on—lay me on! O Lord, Lord! but I shall go stark, staring +mad! See! see that white water!” And so shouting, he pulled his hat +from his head, and stamped up and down on it; then picking it up, +flirted it far off upon the sea; and finally fell to rearing and +plunging in the boat’s stern like a crazed colt from the prairie. + +“Look at that chap now,” philosophically drawled Stubb, who, with his +unlighted short pipe, mechanically retained between his teeth, at a +short distance, followed after—“He’s got fits, that Flask has. Fits? +yes, give him fits—that’s the very word—pitch fits into ’em. Merrily, +merrily, hearts-alive. Pudding for supper, you know;—merry’s the word. +Pull, babes—pull, sucklings—pull, all. But what the devil are you +hurrying about? Softly, softly, and steadily, my men. Only pull, and +keep pulling; nothing more. Crack all your backbones, and bite your +knives in two—that’s all. Take it easy—why don’t ye take it easy, I +say, and burst all your livers and lungs!” + +But what it was that inscrutable Ahab said to that tiger-yellow crew of +his—these were words best omitted here; for you live under the blessed +light of the evangelical land. Only the infidel sharks in the audacious +seas may give ear to such words, when, with tornado brow, and eyes of +red murder, and foam-glued lips, Ahab leaped after his prey. + +Meanwhile, all the boats tore on. The repeated specific allusions of +Flask to “that whale,” as he called the fictitious monster which he +declared to be incessantly tantalizing his boat’s bow with its +tail—these allusions of his were at times so vivid and life-like, that +they would cause some one or two of his men to snatch a fearful look +over the shoulder. But this was against all rule; for the oarsmen must +put out their eyes, and ram a skewer through their necks; usage +pronouncing that they must have no organs but ears, and no limbs but +arms, in these critical moments. + +It was a sight full of quick wonder and awe! The vast swells of the +omnipotent sea; the surging, hollow roar they made, as they rolled +along the eight gunwales, like gigantic bowls in a boundless +bowling-green; the brief suspended agony of the boat, as it would tip +for an instant on the knife-like edge of the sharper waves, that almost +seemed threatening to cut it in two; the sudden profound dip into the +watery glens and hollows; the keen spurrings and goadings to gain the +top of the opposite hill; the headlong, sled-like slide down its other +side;—all these, with the cries of the headsmen and harpooneers, and +the shuddering gasps of the oarsmen, with the wondrous sight of the +ivory Pequod bearing down upon her boats with outstretched sails, like +a wild hen after her screaming brood;—all this was thrilling. + +Not the raw recruit, marching from the bosom of his wife into the fever +heat of his first battle; not the dead man’s ghost encountering the +first unknown phantom in the other world;—neither of these can feel +stranger and stronger emotions than that man does, who for the first +time finds himself pulling into the charmed, churned circle of the +hunted sperm whale. + +The dancing white water made by the chase was now becoming more and +more visible, owing to the increasing darkness of the dun cloud-shadows +flung upon the sea. The jets of vapor no longer blended, but tilted +everywhere to right and left; the whales seemed separating their wakes. +The boats were pulled more apart; Starbuck giving chase to three whales +running dead to leeward. Our sail was now set, and, with the still +rising wind, we rushed along; the boat going with such madness through +the water, that the lee oars could scarcely be worked rapidly enough to +escape being torn from the row-locks. + +Soon we were running through a suffusing wide veil of mist; neither +ship nor boat to be seen. + +“Give way, men,” whispered Starbuck, drawing still further aft the +sheet of his sail; “there is time to kill a fish yet before the squall +comes. There’s white water again!—close to! Spring!” + +Soon after, two cries in quick succession on each side of us denoted +that the other boats had got fast; but hardly were they overheard, when +with a lightning-like hurtling whisper Starbuck said: “Stand up!” and +Queequeg, harpoon in hand, sprang to his feet. + +Though not one of the oarsmen was then facing the life and death peril +so close to them ahead, yet with their eyes on the intense countenance +of the mate in the stern of the boat, they knew that the imminent +instant had come; they heard, too, an enormous wallowing sound as of +fifty elephants stirring in their litter. Meanwhile the boat was still +booming through the mist, the waves curling and hissing around us like +the erected crests of enraged serpents. + +“That’s his hump. _There_, _there_, give it to him!” whispered +Starbuck. + +A short rushing sound leaped out of the boat; it was the darted iron of +Queequeg. Then all in one welded commotion came an invisible push from +astern, while forward the boat seemed striking on a ledge; the sail +collapsed and exploded; a gush of scalding vapor shot up near by; +something rolled and tumbled like an earthquake beneath us. The whole +crew were half suffocated as they were tossed helter-skelter into the +white curdling cream of the squall. Squall, whale, and harpoon had all +blended together; and the whale, merely grazed by the iron, escaped. + +Though completely swamped, the boat was nearly unharmed. Swimming round +it we picked up the floating oars, and lashing them across the gunwale, +tumbled back to our places. There we sat up to our knees in the sea, +the water covering every rib and plank, so that to our downward gazing +eyes the suspended craft seemed a coral boat grown up to us from the +bottom of the ocean. + +The wind increased to a howl; the waves dashed their bucklers together; +the whole squall roared, forked, and crackled around us like a white +fire upon the prairie, in which, unconsumed, we were burning; immortal +in these jaws of death! In vain we hailed the other boats; as well roar +to the live coals down the chimney of a flaming furnace as hail those +boats in that storm. Meanwhile the driving scud, rack, and mist, grew +darker with the shadows of night; no sign of the ship could be seen. +The rising sea forbade all attempts to bale out the boat. The oars were +useless as propellers, performing now the office of life-preservers. +So, cutting the lashing of the waterproof match keg, after many +failures Starbuck contrived to ignite the lamp in the lantern; then +stretching it on a waif pole, handed it to Queequeg as the +standard-bearer of this forlorn hope. There, then, he sat, holding up +that imbecile candle in the heart of that almighty forlornness. There, +then, he sat, the sign and symbol of a man without faith, hopelessly +holding up hope in the midst of despair. + +Wet, drenched through, and shivering cold, despairing of ship or boat, +we lifted up our eyes as the dawn came on. The mist still spread over +the sea, the empty lantern lay crushed in the bottom of the boat. +Suddenly Queequeg started to his feet, hollowing his hand to his ear. +We all heard a faint creaking, as of ropes and yards hitherto muffled +by the storm. The sound came nearer and nearer; the thick mists were +dimly parted by a huge, vague form. Affrighted, we all sprang into the +sea as the ship at last loomed into view, bearing right down upon us +within a distance of not much more than its length. + +Floating on the waves we saw the abandoned boat, as for one instant it +tossed and gaped beneath the ship’s bows like a chip at the base of a +cataract; and then the vast hull rolled over it, and it was seen no +more till it came up weltering astern. Again we swam for it, were +dashed against it by the seas, and were at last taken up and safely +landed on board. Ere the squall came close to, the other boats had cut +loose from their fish and returned to the ship in good time. The ship +had given us up, but was still cruising, if haply it might light upon +some token of our perishing,—an oar or a lance pole. + + +CHAPTER 49. The Hyena. + +There are certain queer times and occasions in this strange mixed +affair we call life when a man takes this whole universe for a vast +practical joke, though the wit thereof he but dimly discerns, and more +than suspects that the joke is at nobody’s expense but his own. +However, nothing dispirits, and nothing seems worth while disputing. He +bolts down all events, all creeds, and beliefs, and persuasions, all +hard things visible and invisible, never mind how knobby; as an ostrich +of potent digestion gobbles down bullets and gun flints. And as for +small difficulties and worryings, prospects of sudden disaster, peril +of life and limb; all these, and death itself, seem to him only sly, +good-natured hits, and jolly punches in the side bestowed by the unseen +and unaccountable old joker. That odd sort of wayward mood I am +speaking of, comes over a man only in some time of extreme tribulation; +it comes in the very midst of his earnestness, so that what just before +might have seemed to him a thing most momentous, now seems but a part +of the general joke. There is nothing like the perils of whaling to +breed this free and easy sort of genial, desperado philosophy; and with +it I now regarded this whole voyage of the Pequod, and the great White +Whale its object. + +“Queequeg,” said I, when they had dragged me, the last man, to the +deck, and I was still shaking myself in my jacket to fling off the +water; “Queequeg, my fine friend, does this sort of thing often +happen?” Without much emotion, though soaked through just like me, he +gave me to understand that such things did often happen. + +“Mr. Stubb,” said I, turning to that worthy, who, buttoned up in his +oil-jacket, was now calmly smoking his pipe in the rain; “Mr. Stubb, I +think I have heard you say that of all whalemen you ever met, our chief +mate, Mr. Starbuck, is by far the most careful and prudent. I suppose +then, that going plump on a flying whale with your sail set in a foggy +squall is the height of a whaleman’s discretion?” + +“Certain. I’ve lowered for whales from a leaking ship in a gale off +Cape Horn.” + +“Mr. Flask,” said I, turning to little King-Post, who was standing +close by; “you are experienced in these things, and I am not. Will you +tell me whether it is an unalterable law in this fishery, Mr. Flask, +for an oarsman to break his own back pulling himself back-foremost into +death’s jaws?” + +“Can’t you twist that smaller?” said Flask. “Yes, that’s the law. I +should like to see a boat’s crew backing water up to a whale face +foremost. Ha, ha! the whale would give them squint for squint, mind +that!” + +Here then, from three impartial witnesses, I had a deliberate statement +of the entire case. Considering, therefore, that squalls and capsizings +in the water and consequent bivouacks on the deep, were matters of +common occurrence in this kind of life; considering that at the +superlatively critical instant of going on to the whale I must resign +my life into the hands of him who steered the boat—oftentimes a fellow +who at that very moment is in his impetuousness upon the point of +scuttling the craft with his own frantic stampings; considering that +the particular disaster to our own particular boat was chiefly to be +imputed to Starbuck’s driving on to his whale almost in the teeth of a +squall, and considering that Starbuck, notwithstanding, was famous for +his great heedfulness in the fishery; considering that I belonged to +this uncommonly prudent Starbuck’s boat; and finally considering in +what a devil’s chase I was implicated, touching the White Whale: taking +all things together, I say, I thought I might as well go below and make +a rough draft of my will. “Queequeg,” said I, “come along, you shall be +my lawyer, executor, and legatee.” + +It may seem strange that of all men sailors should be tinkering at +their last wills and testaments, but there are no people in the world +more fond of that diversion. This was the fourth time in my nautical +life that I had done the same thing. After the ceremony was concluded +upon the present occasion, I felt all the easier; a stone was rolled +away from my heart. Besides, all the days I should now live would be as +good as the days that Lazarus lived after his resurrection; a +supplementary clean gain of so many months or weeks as the case might +be. I survived myself; my death and burial were locked up in my chest. +I looked round me tranquilly and contentedly, like a quiet ghost with a +clean conscience sitting inside the bars of a snug family vault. + +Now then, thought I, unconsciously rolling up the sleeves of my frock, +here goes for a cool, collected dive at death and destruction, and the +devil fetch the hindmost. + + +CHAPTER 50. Ahab’s Boat and Crew. Fedallah. + +“Who would have thought it, Flask!” cried Stubb; “if I had but one leg +you would not catch me in a boat, unless maybe to stop the plug-hole +with my timber toe. Oh! he’s a wonderful old man!” + +“I don’t think it so strange, after all, on that account,” said Flask. +“If his leg were off at the hip, now, it would be a different thing. +That would disable him; but he has one knee, and good part of the other +left, you know.” + +“I don’t know that, my little man; I never yet saw him kneel.” + +Among whale-wise people it has often been argued whether, considering +the paramount importance of his life to the success of the voyage, it +is right for a whaling captain to jeopardize that life in the active +perils of the chase. So Tamerlane’s soldiers often argued with tears in +their eyes, whether that invaluable life of his ought to be carried +into the thickest of the fight. + +But with Ahab the question assumed a modified aspect. Considering that +with two legs man is but a hobbling wight in all times of danger; +considering that the pursuit of whales is always under great and +extraordinary difficulties; that every individual moment, indeed, then +comprises a peril; under these circumstances is it wise for any maimed +man to enter a whale-boat in the hunt? As a general thing, the +joint-owners of the Pequod must have plainly thought not. + +Ahab well knew that although his friends at home would think little of +his entering a boat in certain comparatively harmless vicissitudes of +the chase, for the sake of being near the scene of action and giving +his orders in person, yet for Captain Ahab to have a boat actually +apportioned to him as a regular headsman in the hunt—above all for +Captain Ahab to be supplied with five extra men, as that same boat’s +crew, he well knew that such generous conceits never entered the heads +of the owners of the Pequod. Therefore he had not solicited a boat’s +crew from them, nor had he in any way hinted his desires on that head. +Nevertheless he had taken private measures of his own touching all that +matter. Until Cabaco’s published discovery, the sailors had little +foreseen it, though to be sure when, after being a little while out of +port, all hands had concluded the customary business of fitting the +whaleboats for service; when some time after this Ahab was now and then +found bestirring himself in the matter of making thole-pins with his +own hands for what was thought to be one of the spare boats, and even +solicitously cutting the small wooden skewers, which when the line is +running out are pinned over the groove in the bow: when all this was +observed in him, and particularly his solicitude in having an extra +coat of sheathing in the bottom of the boat, as if to make it better +withstand the pointed pressure of his ivory limb; and also the anxiety +he evinced in exactly shaping the thigh board, or clumsy cleat, as it +is sometimes called, the horizontal piece in the boat’s bow for bracing +the knee against in darting or stabbing at the whale; when it was +observed how often he stood up in that boat with his solitary knee +fixed in the semi-circular depression in the cleat, and with the +carpenter’s chisel gouged out a little here and straightened it a +little there; all these things, I say, had awakened much interest and +curiosity at the time. But almost everybody supposed that this +particular preparative heedfulness in Ahab must only be with a view to +the ultimate chase of Moby Dick; for he had already revealed his +intention to hunt that mortal monster in person. But such a supposition +did by no means involve the remotest suspicion as to any boat’s crew +being assigned to that boat. + +Now, with the subordinate phantoms, what wonder remained soon waned +away; for in a whaler wonders soon wane. Besides, now and then such +unaccountable odds and ends of strange nations come up from the unknown +nooks and ash-holes of the earth to man these floating outlaws of +whalers; and the ships themselves often pick up such queer castaway +creatures found tossing about the open sea on planks, bits of wreck, +oars, whaleboats, canoes, blown-off Japanese junks, and what not; that +Beelzebub himself might climb up the side and step down into the cabin +to chat with the captain, and it would not create any unsubduable +excitement in the forecastle. + +But be all this as it may, certain it is that while the subordinate +phantoms soon found their place among the crew, though still as it were +somehow distinct from them, yet that hair-turbaned Fedallah remained a +muffled mystery to the last. Whence he came in a mannerly world like +this, by what sort of unaccountable tie he soon evinced himself to be +linked with Ahab’s peculiar fortunes; nay, so far as to have some sort +of a half-hinted influence; Heaven knows, but it might have been even +authority over him; all this none knew. But one cannot sustain an +indifferent air concerning Fedallah. He was such a creature as +civilized, domestic people in the temperate zone only see in their +dreams, and that but dimly; but the like of whom now and then glide +among the unchanging Asiatic communities, especially the Oriental isles +to the east of the continent—those insulated, immemorial, unalterable +countries, which even in these modern days still preserve much of the +ghostly aboriginalness of earth’s primal generations, when the memory +of the first man was a distinct recollection, and all men his +descendants, unknowing whence he came, eyed each other as real +phantoms, and asked of the sun and the moon why they were created and +to what end; when though, according to Genesis, the angels indeed +consorted with the daughters of men, the devils also, add the +uncanonical Rabbins, indulged in mundane amours. + + +CHAPTER 51. The Spirit-Spout. + +Days, weeks passed, and under easy sail, the ivory Pequod had slowly +swept across four several cruising-grounds; that off the Azores; off +the Cape de Verdes; on the Plate (so called), being off the mouth of +the Rio de la Plata; and the Carrol Ground, an unstaked, watery +locality, southerly from St. Helena. + +It was while gliding through these latter waters that one serene and +moonlight night, when all the waves rolled by like scrolls of silver; +and, by their soft, suffusing seethings, made what seemed a silvery +silence, not a solitude; on such a silent night a silvery jet was seen +far in advance of the white bubbles at the bow. Lit up by the moon, it +looked celestial; seemed some plumed and glittering god uprising from +the sea. Fedallah first descried this jet. For of these moonlight +nights, it was his wont to mount to the main-mast head, and stand a +look-out there, with the same precision as if it had been day. And yet, +though herds of whales were seen by night, not one whaleman in a +hundred would venture a lowering for them. You may think with what +emotions, then, the seamen beheld this old Oriental perched aloft at +such unusual hours; his turban and the moon, companions in one sky. But +when, after spending his uniform interval there for several successive +nights without uttering a single sound; when, after all this silence, +his unearthly voice was heard announcing that silvery, moon-lit jet, +every reclining mariner started to his feet as if some winged spirit +had lighted in the rigging, and hailed the mortal crew. “There she +blows!” Had the trump of judgment blown, they could not have quivered +more; yet still they felt no terror; rather pleasure. For though it was +a most unwonted hour, yet so impressive was the cry, and so deliriously +exciting, that almost every soul on board instinctively desired a +lowering. + +Walking the deck with quick, side-lunging strides, Ahab commanded the +t’gallant sails and royals to be set, and every stunsail spread. The +best man in the ship must take the helm. Then, with every mast-head +manned, the piled-up craft rolled down before the wind. The strange, +upheaving, lifting tendency of the taffrail breeze filling the hollows +of so many sails, made the buoyant, hovering deck to feel like air +beneath the feet; while still she rushed along, as if two antagonistic +influences were struggling in her—one to mount direct to heaven, the +other to drive yawingly to some horizontal goal. And had you watched +Ahab’s face that night, you would have thought that in him also two +different things were warring. While his one live leg made lively +echoes along the deck, every stroke of his dead limb sounded like a +coffin-tap. On life and death this old man walked. But though the ship +so swiftly sped, and though from every eye, like arrows, the eager +glances shot, yet the silvery jet was no more seen that night. Every +sailor swore he saw it once, but not a second time. + +This midnight-spout had almost grown a forgotten thing, when, some days +after, lo! at the same silent hour, it was again announced: again it +was descried by all; but upon making sail to overtake it, once more it +disappeared as if it had never been. And so it served us night after +night, till no one heeded it but to wonder at it. Mysteriously jetted +into the clear moonlight, or starlight, as the case might be; +disappearing again for one whole day, or two days, or three; and +somehow seeming at every distinct repetition to be advancing still +further and further in our van, this solitary jet seemed for ever +alluring us on. + +Nor with the immemorial superstition of their race, and in accordance +with the preternaturalness, as it seemed, which in many things invested +the Pequod, were there wanting some of the seamen who swore that +whenever and wherever descried; at however remote times, or in however +far apart latitudes and longitudes, that unnearable spout was cast by +one self-same whale; and that whale, Moby Dick. For a time, there +reigned, too, a sense of peculiar dread at this flitting apparition, as +if it were treacherously beckoning us on and on, in order that the +monster might turn round upon us, and rend us at last in the remotest +and most savage seas. + +These temporary apprehensions, so vague but so awful, derived a +wondrous potency from the contrasting serenity of the weather, in +which, beneath all its blue blandness, some thought there lurked a +devilish charm, as for days and days we voyaged along, through seas so +wearily, lonesomely mild, that all space, in repugnance to our vengeful +errand, seemed vacating itself of life before our urn-like prow. + +But, at last, when turning to the eastward, the Cape winds began +howling around us, and we rose and fell upon the long, troubled seas +that are there; when the ivory-tusked Pequod sharply bowed to the +blast, and gored the dark waves in her madness, till, like showers of +silver chips, the foam-flakes flew over her bulwarks; then all this +desolate vacuity of life went away, but gave place to sights more +dismal than before. + +Close to our bows, strange forms in the water darted hither and thither +before us; while thick in our rear flew the inscrutable sea-ravens. And +every morning, perched on our stays, rows of these birds were seen; and +spite of our hootings, for a long time obstinately clung to the hemp, +as though they deemed our ship some drifting, uninhabited craft; a +thing appointed to desolation, and therefore fit roosting-place for +their homeless selves. And heaved and heaved, still unrestingly heaved +the black sea, as if its vast tides were a conscience; and the great +mundane soul were in anguish and remorse for the long sin and suffering +it had bred. + +Cape of Good Hope, do they call ye? Rather Cape Tormentoso, as called +of yore; for long allured by the perfidious silences that before had +attended us, we found ourselves launched into this tormented sea, where +guilty beings transformed into those fowls and these fish, seemed +condemned to swim on everlastingly without any haven in store, or beat +that black air without any horizon. But calm, snow-white, and +unvarying; still directing its fountain of feathers to the sky; still +beckoning us on from before, the solitary jet would at times be +descried. + +During all this blackness of the elements, Ahab, though assuming for +the time the almost continual command of the drenched and dangerous +deck, manifested the gloomiest reserve; and more seldom than ever +addressed his mates. In tempestuous times like these, after everything +above and aloft has been secured, nothing more can be done but +passively to await the issue of the gale. Then Captain and crew become +practical fatalists. So, with his ivory leg inserted into its +accustomed hole, and with one hand firmly grasping a shroud, Ahab for +hours and hours would stand gazing dead to windward, while an +occasional squall of sleet or snow would all but congeal his very +eyelashes together. Meantime, the crew driven from the forward part of +the ship by the perilous seas that burstingly broke over its bows, +stood in a line along the bulwarks in the waist; and the better to +guard against the leaping waves, each man had slipped himself into a +sort of bowline secured to the rail, in which he swung as in a loosened +belt. Few or no words were spoken; and the silent ship, as if manned by +painted sailors in wax, day after day tore on through all the swift +madness and gladness of the demoniac waves. By night the same muteness +of humanity before the shrieks of the ocean prevailed; still in silence +the men swung in the bowlines; still wordless Ahab stood up to the +blast. Even when wearied nature seemed demanding repose he would not +seek that repose in his hammock. Never could Starbuck forget the old +man’s aspect, when one night going down into the cabin to mark how the +barometer stood, he saw him with closed eyes sitting straight in his +floor-screwed chair; the rain and half-melted sleet of the storm from +which he had some time before emerged, still slowly dripping from the +unremoved hat and coat. On the table beside him lay unrolled one of +those charts of tides and currents which have previously been spoken +of. His lantern swung from his tightly clenched hand. Though the body +was erect, the head was thrown back so that the closed eyes were +pointed towards the needle of the tell-tale that swung from a beam in +the ceiling.* + +*The cabin-compass is called the tell-tale, because without going to +the compass at the helm, the Captain, while below, can inform himself +of the course of the ship. + +Terrible old man! thought Starbuck with a shudder, sleeping in this +gale, still thou steadfastly eyest thy purpose. + + +CHAPTER 52. The Albatross. + +South-eastward from the Cape, off the distant Crozetts, a good cruising +ground for Right Whalemen, a sail loomed ahead, the Goney (Albatross) +by name. As she slowly drew nigh, from my lofty perch at the +fore-mast-head, I had a good view of that sight so remarkable to a tyro +in the far ocean fisheries—a whaler at sea, and long absent from home. + +As if the waves had been fullers, this craft was bleached like the +skeleton of a stranded walrus. All down her sides, this spectral +appearance was traced with long channels of reddened rust, while all +her spars and her rigging were like the thick branches of trees furred +over with hoar-frost. Only her lower sails were set. A wild sight it +was to see her long-bearded look-outs at those three mast-heads. They +seemed clad in the skins of beasts, so torn and bepatched the raiment +that had survived nearly four years of cruising. Standing in iron hoops +nailed to the mast, they swayed and swung over a fathomless sea; and +though, when the ship slowly glided close under our stern, we six men +in the air came so nigh to each other that we might almost have leaped +from the mast-heads of one ship to those of the other; yet, those +forlorn-looking fishermen, mildly eyeing us as they passed, said not +one word to our own look-outs, while the quarter-deck hail was being +heard from below. + +“Ship ahoy! Have ye seen the White Whale?” + +But as the strange captain, leaning over the pallid bulwarks, was in +the act of putting his trumpet to his mouth, it somehow fell from his +hand into the sea; and the wind now rising amain, he in vain strove to +make himself heard without it. Meantime his ship was still increasing +the distance between. While in various silent ways the seamen of the +Pequod were evincing their observance of this ominous incident at the +first mere mention of the White Whale’s name to another ship, Ahab for +a moment paused; it almost seemed as though he would have lowered a +boat to board the stranger, had not the threatening wind forbade. But +taking advantage of his windward position, he again seized his trumpet, +and knowing by her aspect that the stranger vessel was a Nantucketer +and shortly bound home, he loudly hailed—“Ahoy there! This is the +Pequod, bound round the world! Tell them to address all future letters +to the Pacific ocean! and this time three years, if I am not at home, +tell them to address them to ——” + +At that moment the two wakes were fairly crossed, and instantly, then, +in accordance with their singular ways, shoals of small harmless fish, +that for some days before had been placidly swimming by our side, +darted away with what seemed shuddering fins, and ranged themselves +fore and aft with the stranger’s flanks. Though in the course of his +continual voyagings Ahab must often before have noticed a similar +sight, yet, to any monomaniac man, the veriest trifles capriciously +carry meanings. + +“Swim away from me, do ye?” murmured Ahab, gazing over into the water. +There seemed but little in the words, but the tone conveyed more of +deep helpless sadness than the insane old man had ever before evinced. +But turning to the steersman, who thus far had been holding the ship in +the wind to diminish her headway, he cried out in his old lion +voice,—“Up helm! Keep her off round the world!” + +Round the world! There is much in that sound to inspire proud feelings; +but whereto does all that circumnavigation conduct? Only through +numberless perils to the very point whence we started, where those that +we left behind secure, were all the time before us. + +Were this world an endless plain, and by sailing eastward we could for +ever reach new distances, and discover sights more sweet and strange +than any Cyclades or Islands of King Solomon, then there were promise +in the voyage. But in pursuit of those far mysteries we dream of, or in +tormented chase of that demon phantom that, some time or other, swims +before all human hearts; while chasing such over this round globe, they +either lead us on in barren mazes or midway leave us whelmed. + + +CHAPTER 53. The Gam. + +The ostensible reason why Ahab did not go on board of the whaler we had +spoken was this: the wind and sea betokened storms. But even had this +not been the case, he would not after all, perhaps, have boarded +her—judging by his subsequent conduct on similar occasions—if so it had +been that, by the process of hailing, he had obtained a negative answer +to the question he put. For, as it eventually turned out, he cared not +to consort, even for five minutes, with any stranger captain, except he +could contribute some of that information he so absorbingly sought. But +all this might remain inadequately estimated, were not something said +here of the peculiar usages of whaling-vessels when meeting each other +in foreign seas, and especially on a common cruising-ground. + +If two strangers crossing the Pine Barrens in New York State, or the +equally desolate Salisbury Plain in England; if casually encountering +each other in such inhospitable wilds, these twain, for the life of +them, cannot well avoid a mutual salutation; and stopping for a moment +to interchange the news; and, perhaps, sitting down for a while and +resting in concert: then, how much more natural that upon the +illimitable Pine Barrens and Salisbury Plains of the sea, two whaling +vessels descrying each other at the ends of the earth—off lone +Fanning’s Island, or the far away King’s Mills; how much more natural, +I say, that under such circumstances these ships should not only +interchange hails, but come into still closer, more friendly and +sociable contact. And especially would this seem to be a matter of +course, in the case of vessels owned in one seaport, and whose +captains, officers, and not a few of the men are personally known to +each other; and consequently, have all sorts of dear domestic things to +talk about. + +For the long absent ship, the outward-bounder, perhaps, has letters on +board; at any rate, she will be sure to let her have some papers of a +date a year or two later than the last one on her blurred and +thumb-worn files. And in return for that courtesy, the outward-bound +ship would receive the latest whaling intelligence from the +cruising-ground to which she may be destined, a thing of the utmost +importance to her. And in degree, all this will hold true concerning +whaling vessels crossing each other’s track on the cruising-ground +itself, even though they are equally long absent from home. For one of +them may have received a transfer of letters from some third, and now +far remote vessel; and some of those letters may be for the people of +the ship she now meets. Besides, they would exchange the whaling news, +and have an agreeable chat. For not only would they meet with all the +sympathies of sailors, but likewise with all the peculiar +congenialities arising from a common pursuit and mutually shared +privations and perils. + +Nor would difference of country make any very essential difference; +that is, so long as both parties speak one language, as is the case +with Americans and English. Though, to be sure, from the small number +of English whalers, such meetings do not very often occur, and when +they do occur there is too apt to be a sort of shyness between them; +for your Englishman is rather reserved, and your Yankee, he does not +fancy that sort of thing in anybody but himself. Besides, the English +whalers sometimes affect a kind of metropolitan superiority over the +American whalers; regarding the long, lean Nantucketer, with his +nondescript provincialisms, as a sort of sea-peasant. But where this +superiority in the English whalemen does really consist, it would be +hard to say, seeing that the Yankees in one day, collectively, kill +more whales than all the English, collectively, in ten years. But this +is a harmless little foible in the English whale-hunters, which the +Nantucketer does not take much to heart; probably, because he knows +that he has a few foibles himself. + +So, then, we see that of all ships separately sailing the sea, the +whalers have most reason to be sociable—and they are so. Whereas, some +merchant ships crossing each other’s wake in the mid-Atlantic, will +oftentimes pass on without so much as a single word of recognition, +mutually cutting each other on the high seas, like a brace of dandies +in Broadway; and all the time indulging, perhaps, in finical criticism +upon each other’s rig. As for Men-of-War, when they chance to meet at +sea, they first go through such a string of silly bowings and +scrapings, such a ducking of ensigns, that there does not seem to be +much right-down hearty good-will and brotherly love about it at all. As +touching Slave-ships meeting, why, they are in such a prodigious hurry, +they run away from each other as soon as possible. And as for Pirates, +when they chance to cross each other’s cross-bones, the first hail +is—“How many skulls?”—the same way that whalers hail—“How many +barrels?” And that question once answered, pirates straightway steer +apart, for they are infernal villains on both sides, and don’t like to +see overmuch of each other’s villanous likenesses. + +But look at the godly, honest, unostentatious, hospitable, sociable, +free-and-easy whaler! What does the whaler do when she meets another +whaler in any sort of decent weather? She has a “_Gam_,” a thing so +utterly unknown to all other ships that they never heard of the name +even; and if by chance they should hear of it, they only grin at it, +and repeat gamesome stuff about “spouters” and “blubber-boilers,” and +such like pretty exclamations. Why it is that all Merchant-seamen, and +also all Pirates and Man-of-War’s men, and Slave-ship sailors, cherish +such a scornful feeling towards Whale-ships; this is a question it +would be hard to answer. Because, in the case of pirates, say, I should +like to know whether that profession of theirs has any peculiar glory +about it. It sometimes ends in uncommon elevation, indeed; but only at +the gallows. And besides, when a man is elevated in that odd fashion, +he has no proper foundation for his superior altitude. Hence, I +conclude, that in boasting himself to be high lifted above a whaleman, +in that assertion the pirate has no solid basis to stand on. + +But what is a _Gam?_ You might wear out your index-finger running up +and down the columns of dictionaries, and never find the word. Dr. +Johnson never attained to that erudition; Noah Webster’s ark does not +hold it. Nevertheless, this same expressive word has now for many years +been in constant use among some fifteen thousand true born Yankees. +Certainly, it needs a definition, and should be incorporated into the +Lexicon. With that view, let me learnedly define it. + +GAM. NOUN—_A social meeting of two_ (_or more_) _Whaleships, generally +on a cruising-ground; when, after exchanging hails, they exchange +visits by boats’ crews: the two captains remaining, for the time, on +board of one ship, and the two chief mates on the other._ + +There is another little item about Gamming which must not be forgotten +here. All professions have their own little peculiarities of detail; so +has the whale fishery. In a pirate, man-of-war, or slave ship, when the +captain is rowed anywhere in his boat, he always sits in the stern +sheets on a comfortable, sometimes cushioned seat there, and often +steers himself with a pretty little milliner’s tiller decorated with +gay cords and ribbons. But the whale-boat has no seat astern, no sofa +of that sort whatever, and no tiller at all. High times indeed, if +whaling captains were wheeled about the water on castors like gouty old +aldermen in patent chairs. And as for a tiller, the whale-boat never +admits of any such effeminacy; and therefore as in gamming a complete +boat’s crew must leave the ship, and hence as the boat steerer or +harpooneer is of the number, that subordinate is the steersman upon the +occasion, and the captain, having no place to sit in, is pulled off to +his visit all standing like a pine tree. And often you will notice that +being conscious of the eyes of the whole visible world resting on him +from the sides of the two ships, this standing captain is all alive to +the importance of sustaining his dignity by maintaining his legs. Nor +is this any very easy matter; for in his rear is the immense projecting +steering oar hitting him now and then in the small of his back, the +after-oar reciprocating by rapping his knees in front. He is thus +completely wedged before and behind, and can only expand himself +sideways by settling down on his stretched legs; but a sudden, violent +pitch of the boat will often go far to topple him, because length of +foundation is nothing without corresponding breadth. Merely make a +spread angle of two poles, and you cannot stand them up. Then, again, +it would never do in plain sight of the world’s riveted eyes, it would +never do, I say, for this straddling captain to be seen steadying +himself the slightest particle by catching hold of anything with his +hands; indeed, as token of his entire, buoyant self-command, he +generally carries his hands in his trowsers’ pockets; but perhaps being +generally very large, heavy hands, he carries them there for ballast. +Nevertheless there have occurred instances, well authenticated ones +too, where the captain has been known for an uncommonly critical moment +or two, in a sudden squall say—to seize hold of the nearest oarsman’s +hair, and hold on there like grim death. + + +CHAPTER 54. The Town-Ho’s Story. + +(_As told at the Golden Inn._) + +The Cape of Good Hope, and all the watery region round about there, is +much like some noted four corners of a great highway, where you meet +more travellers than in any other part. + +It was not very long after speaking the Goney that another +homeward-bound whaleman, the Town-Ho,* was encountered. She was manned +almost wholly by Polynesians. In the short gam that ensued she gave us +strong news of Moby Dick. To some the general interest in the White +Whale was now wildly heightened by a circumstance of the Town-Ho’s +story, which seemed obscurely to involve with the whale a certain +wondrous, inverted visitation of one of those so called judgments of +God which at times are said to overtake some men. This latter +circumstance, with its own particular accompaniments, forming what may +be called the secret part of the tragedy about to be narrated, never +reached the ears of Captain Ahab or his mates. For that secret part of +the story was unknown to the captain of the Town-Ho himself. It was the +private property of three confederate white seamen of that ship, one of +whom, it seems, communicated it to Tashtego with Romish injunctions of +secrecy, but the following night Tashtego rambled in his sleep, and +revealed so much of it in that way, that when he was wakened he could +not well withhold the rest. Nevertheless, so potent an influence did +this thing have on those seamen in the Pequod who came to the full +knowledge of it, and by such a strange delicacy, to call it so, were +they governed in this matter, that they kept the secret among +themselves so that it never transpired abaft the Pequod’s main-mast. +Interweaving in its proper place this darker thread with the story as +publicly narrated on the ship, the whole of this strange affair I now +proceed to put on lasting record. + +*The ancient whale-cry upon first sighting a whale from the mast-head, +still used by whalemen in hunting the famous Gallipagos terrapin. + +For my humor’s sake, I shall preserve the style in which I once +narrated it at Lima, to a lounging circle of my Spanish friends, one +saint’s eve, smoking upon the thick-gilt tiled piazza of the Golden +Inn. Of those fine cavaliers, the young Dons, Pedro and Sebastian, were +on the closer terms with me; and hence the interluding questions they +occasionally put, and which are duly answered at the time. + +“Some two years prior to my first learning the events which I am about +rehearsing to you, gentlemen, the Town-Ho, Sperm Whaler of Nantucket, +was cruising in your Pacific here, not very many days’ sail eastward +from the eaves of this good Golden Inn. She was somewhere to the +northward of the Line. One morning upon handling the pumps, according +to daily usage, it was observed that she made more water in her hold +than common. They supposed a sword-fish had stabbed her, gentlemen. But +the captain, having some unusual reason for believing that rare good +luck awaited him in those latitudes; and therefore being very averse to +quit them, and the leak not being then considered at all dangerous, +though, indeed, they could not find it after searching the hold as low +down as was possible in rather heavy weather, the ship still continued +her cruisings, the mariners working at the pumps at wide and easy +intervals; but no good luck came; more days went by, and not only was +the leak yet undiscovered, but it sensibly increased. So much so, that +now taking some alarm, the captain, making all sail, stood away for the +nearest harbor among the islands, there to have his hull hove out and +repaired. + +“Though no small passage was before her, yet, if the commonest chance +favoured, he did not at all fear that his ship would founder by the +way, because his pumps were of the best, and being periodically +relieved at them, those six-and-thirty men of his could easily keep the +ship free; never mind if the leak should double on her. In truth, well +nigh the whole of this passage being attended by very prosperous +breezes, the Town-Ho had all but certainly arrived in perfect safety at +her port without the occurrence of the least fatality, had it not been +for the brutal overbearing of Radney, the mate, a Vineyarder, and the +bitterly provoked vengeance of Steelkilt, a Lakeman and desperado from +Buffalo. + +“‘Lakeman!—Buffalo! Pray, what is a Lakeman, and where is Buffalo?’ +said Don Sebastian, rising in his swinging mat of grass. + +“On the eastern shore of our Lake Erie, Don; but—I crave your +courtesy—may be, you shall soon hear further of all that. Now, +gentlemen, in square-sail brigs and three-masted ships, well-nigh as +large and stout as any that ever sailed out of your old Callao to far +Manilla; this Lakeman, in the land-locked heart of our America, had yet +been nurtured by all those agrarian freebooting impressions popularly +connected with the open ocean. For in their interflowing aggregate, +those grand fresh-water seas of ours,—Erie, and Ontario, and Huron, and +Superior, and Michigan,—possess an ocean-like expansiveness, with many +of the ocean’s noblest traits; with many of its rimmed varieties of +races and of climes. They contain round archipelagoes of romantic +isles, even as the Polynesian waters do; in large part, are shored by +two great contrasting nations, as the Atlantic is; they furnish long +maritime approaches to our numerous territorial colonies from the East, +dotted all round their banks; here and there are frowned upon by +batteries, and by the goat-like craggy guns of lofty Mackinaw; they +have heard the fleet thunderings of naval victories; at intervals, they +yield their beaches to wild barbarians, whose red painted faces flash +from out their peltry wigwams; for leagues and leagues are flanked by +ancient and unentered forests, where the gaunt pines stand like serried +lines of kings in Gothic genealogies; those same woods harboring wild +Afric beasts of prey, and silken creatures whose exported furs give +robes to Tartar Emperors; they mirror the paved capitals of Buffalo and +Cleveland, as well as Winnebago villages; they float alike the +full-rigged merchant ship, the armed cruiser of the State, the steamer, +and the beech canoe; they are swept by Borean and dismasting blasts as +direful as any that lash the salted wave; they know what shipwrecks +are, for out of sight of land, however inland, they have drowned full +many a midnight ship with all its shrieking crew. Thus, gentlemen, +though an inlander, Steelkilt was wild-ocean born, and wild-ocean +nurtured; as much of an audacious mariner as any. And for Radney, +though in his infancy he may have laid him down on the lone Nantucket +beach, to nurse at his maternal sea; though in after life he had long +followed our austere Atlantic and your contemplative Pacific; yet was +he quite as vengeful and full of social quarrel as the backwoods +seaman, fresh from the latitudes of buck-horn handled Bowie-knives. Yet +was this Nantucketer a man with some good-hearted traits; and this +Lakeman, a mariner, who though a sort of devil indeed, might yet by +inflexible firmness, only tempered by that common decency of human +recognition which is the meanest slave’s right; thus treated, this +Steelkilt had long been retained harmless and docile. At all events, he +had proved so thus far; but Radney was doomed and made mad, and +Steelkilt—but, gentlemen, you shall hear. + +“It was not more than a day or two at the furthest after pointing her +prow for her island haven, that the Town-Ho’s leak seemed again +increasing, but only so as to require an hour or more at the pumps +every day. You must know that in a settled and civilized ocean like our +Atlantic, for example, some skippers think little of pumping their +whole way across it; though of a still, sleepy night, should the +officer of the deck happen to forget his duty in that respect, the +probability would be that he and his shipmates would never again +remember it, on account of all hands gently subsiding to the bottom. +Nor in the solitary and savage seas far from you to the westward, +gentlemen, is it altogether unusual for ships to keep clanging at their +pump-handles in full chorus even for a voyage of considerable length; +that is, if it lie along a tolerably accessible coast, or if any other +reasonable retreat is afforded them. It is only when a leaky vessel is +in some very out of the way part of those waters, some really landless +latitude, that her captain begins to feel a little anxious. + +“Much this way had it been with the Town-Ho; so when her leak was found +gaining once more, there was in truth some small concern manifested by +several of her company; especially by Radney the mate. He commanded the +upper sails to be well hoisted, sheeted home anew, and every way +expanded to the breeze. Now this Radney, I suppose, was as little of a +coward, and as little inclined to any sort of nervous apprehensiveness +touching his own person as any fearless, unthinking creature on land or +on sea that you can conveniently imagine, gentlemen. Therefore when he +betrayed this solicitude about the safety of the ship, some of the +seamen declared that it was only on account of his being a part owner +in her. So when they were working that evening at the pumps, there was +on this head no small gamesomeness slily going on among them, as they +stood with their feet continually overflowed by the rippling clear +water; clear as any mountain spring, gentlemen—that bubbling from the +pumps ran across the deck, and poured itself out in steady spouts at +the lee scupper-holes. + +“Now, as you well know, it is not seldom the case in this conventional +world of ours—watery or otherwise; that when a person placed in command +over his fellow-men finds one of them to be very significantly his +superior in general pride of manhood, straightway against that man he +conceives an unconquerable dislike and bitterness; and if he have a +chance he will pull down and pulverize that subaltern’s tower, and make +a little heap of dust of it. Be this conceit of mine as it may, +gentlemen, at all events Steelkilt was a tall and noble animal with a +head like a Roman, and a flowing golden beard like the tasseled +housings of your last viceroy’s snorting charger; and a brain, and a +heart, and a soul in him, gentlemen, which had made Steelkilt +Charlemagne, had he been born son to Charlemagne’s father. But Radney, +the mate, was ugly as a mule; yet as hardy, as stubborn, as malicious. +He did not love Steelkilt, and Steelkilt knew it. + +“Espying the mate drawing near as he was toiling at the pump with the +rest, the Lakeman affected not to notice him, but unawed, went on with +his gay banterings. + +“‘Aye, aye, my merry lads, it’s a lively leak this; hold a cannikin, +one of ye, and let’s have a taste. By the Lord, it’s worth bottling! I +tell ye what, men, old Rad’s investment must go for it! he had best cut +away his part of the hull and tow it home. The fact is, boys, that +sword-fish only began the job; he’s come back again with a gang of +ship-carpenters, saw-fish, and file-fish, and what not; and the whole +posse of ’em are now hard at work cutting and slashing at the bottom; +making improvements, I suppose. If old Rad were here now, I’d tell him +to jump overboard and scatter ’em. They’re playing the devil with his +estate, I can tell him. But he’s a simple old soul,—Rad, and a beauty +too. Boys, they say the rest of his property is invested in +looking-glasses. I wonder if he’d give a poor devil like me the model +of his nose.’ + +“‘Damn your eyes! what’s that pump stopping for?’ roared Radney, +pretending not to have heard the sailors’ talk. ‘Thunder away at it!’ + +“‘Aye, aye, sir,’ said Steelkilt, merry as a cricket. ‘Lively, boys, +lively, now!’ And with that the pump clanged like fifty fire-engines; +the men tossed their hats off to it, and ere long that peculiar gasping +of the lungs was heard which denotes the fullest tension of life’s +utmost energies. + +“Quitting the pump at last, with the rest of his band, the Lakeman went +forward all panting, and sat himself down on the windlass; his face +fiery red, his eyes bloodshot, and wiping the profuse sweat from his +brow. Now what cozening fiend it was, gentlemen, that possessed Radney +to meddle with such a man in that corporeally exasperated state, I know +not; but so it happened. Intolerably striding along the deck, the mate +commanded him to get a broom and sweep down the planks, and also a +shovel, and remove some offensive matters consequent upon allowing a +pig to run at large. + +“Now, gentlemen, sweeping a ship’s deck at sea is a piece of household +work which in all times but raging gales is regularly attended to every +evening; it has been known to be done in the case of ships actually +foundering at the time. Such, gentlemen, is the inflexibility of +sea-usages and the instinctive love of neatness in seamen; some of whom +would not willingly drown without first washing their faces. But in all +vessels this broom business is the prescriptive province of the boys, +if boys there be aboard. Besides, it was the stronger men in the +Town-Ho that had been divided into gangs, taking turns at the pumps; +and being the most athletic seaman of them all, Steelkilt had been +regularly assigned captain of one of the gangs; consequently he should +have been freed from any trivial business not connected with truly +nautical duties, such being the case with his comrades. I mention all +these particulars so that you may understand exactly how this affair +stood between the two men. + +“But there was more than this: the order about the shovel was almost as +plainly meant to sting and insult Steelkilt, as though Radney had spat +in his face. Any man who has gone sailor in a whale-ship will +understand this; and all this and doubtless much more, the Lakeman +fully comprehended when the mate uttered his command. But as he sat +still for a moment, and as he steadfastly looked into the mate’s +malignant eye and perceived the stacks of powder-casks heaped up in him +and the slow-match silently burning along towards them; as he +instinctively saw all this, that strange forbearance and unwillingness +to stir up the deeper passionateness in any already ireful being—a +repugnance most felt, when felt at all, by really valiant men even when +aggrieved—this nameless phantom feeling, gentlemen, stole over +Steelkilt. + +“Therefore, in his ordinary tone, only a little broken by the bodily +exhaustion he was temporarily in, he answered him saying that sweeping +the deck was not his business, and he would not do it. And then, +without at all alluding to the shovel, he pointed to three lads as the +customary sweepers; who, not being billeted at the pumps, had done +little or nothing all day. To this, Radney replied with an oath, in a +most domineering and outrageous manner unconditionally reiterating his +command; meanwhile advancing upon the still seated Lakeman, with an +uplifted cooper’s club hammer which he had snatched from a cask near +by. + +“Heated and irritated as he was by his spasmodic toil at the pumps, for +all his first nameless feeling of forbearance the sweating Steelkilt +could but ill brook this bearing in the mate; but somehow still +smothering the conflagration within him, without speaking he remained +doggedly rooted to his seat, till at last the incensed Radney shook the +hammer within a few inches of his face, furiously commanding him to do +his bidding. + +“Steelkilt rose, and slowly retreating round the windlass, steadily +followed by the mate with his menacing hammer, deliberately repeated +his intention not to obey. Seeing, however, that his forbearance had +not the slightest effect, by an awful and unspeakable intimation with +his twisted hand he warned off the foolish and infatuated man; but it +was to no purpose. And in this way the two went once slowly round the +windlass; when, resolved at last no longer to retreat, bethinking him +that he had now forborne as much as comported with his humor, the +Lakeman paused on the hatches and thus spoke to the officer: + +“‘Mr. Radney, I will not obey you. Take that hammer away, or look to +yourself.’ But the predestinated mate coming still closer to him, where +the Lakeman stood fixed, now shook the heavy hammer within an inch of +his teeth; meanwhile repeating a string of insufferable maledictions. +Retreating not the thousandth part of an inch; stabbing him in the eye +with the unflinching poniard of his glance, Steelkilt, clenching his +right hand behind him and creepingly drawing it back, told his +persecutor that if the hammer but grazed his cheek he (Steelkilt) would +murder him. But, gentlemen, the fool had been branded for the slaughter +by the gods. Immediately the hammer touched the cheek; the next instant +the lower jaw of the mate was stove in his head; he fell on the hatch +spouting blood like a whale. + +“Ere the cry could go aft Steelkilt was shaking one of the backstays +leading far aloft to where two of his comrades were standing their +mastheads. They were both Canallers. + +“‘Canallers!’ cried Don Pedro. ‘We have seen many whale-ships in our +harbours, but never heard of your Canallers. Pardon: who and what are +they?’ + +“‘Canallers, Don, are the boatmen belonging to our grand Erie Canal. +You must have heard of it.’ + +“‘Nay, Senor; hereabouts in this dull, warm, most lazy, and hereditary +land, we know but little of your vigorous North.’ + +“‘Aye? Well then, Don, refill my cup. Your chicha’s very fine; and ere +proceeding further I will tell ye what our Canallers are; for such +information may throw side-light upon my story.’ + +“For three hundred and sixty miles, gentlemen, through the entire +breadth of the state of New York; through numerous populous cities and +most thriving villages; through long, dismal, uninhabited swamps, and +affluent, cultivated fields, unrivalled for fertility; by billiard-room +and bar-room; through the holy-of-holies of great forests; on Roman +arches over Indian rivers; through sun and shade; by happy hearts or +broken; through all the wide contrasting scenery of those noble Mohawk +counties; and especially, by rows of snow-white chapels, whose spires +stand almost like milestones, flows one continual stream of Venetianly +corrupt and often lawless life. There’s your true Ashantee, gentlemen; +there howl your pagans; where you ever find them, next door to you; +under the long-flung shadow, and the snug patronising lee of churches. +For by some curious fatality, as it is often noted of your metropolitan +freebooters that they ever encamp around the halls of justice, so +sinners, gentlemen, most abound in holiest vicinities. + +“‘Is that a friar passing?’ said Don Pedro, looking downwards into the +crowded plazza, with humorous concern. + +“‘Well for our northern friend, Dame Isabella’s Inquisition wanes in +Lima,’ laughed Don Sebastian. ‘Proceed, Senor.’ + +“‘A moment! Pardon!’ cried another of the company. ‘In the name of all +us Limeese, I but desire to express to you, sir sailor, that we have by +no means overlooked your delicacy in not substituting present Lima for +distant Venice in your corrupt comparison. Oh! do not bow and look +surprised; you know the proverb all along this coast—“Corrupt as Lima.” +It but bears out your saying, too; churches more plentiful than +billiard-tables, and for ever open—and “Corrupt as Lima.” So, too, +Venice; I have been there; the holy city of the blessed evangelist, St. +Mark!—St. Dominic, purge it! Your cup! Thanks: here I refill; now, you +pour out again.’ + +“Freely depicted in his own vocation, gentlemen, the Canaller would +make a fine dramatic hero, so abundantly and picturesquely wicked is +he. Like Mark Antony, for days and days along his green-turfed, flowery +Nile, he indolently floats, openly toying with his red-cheeked +Cleopatra, ripening his apricot thigh upon the sunny deck. But ashore, +all this effeminacy is dashed. The brigandish guise which the Canaller +so proudly sports; his slouched and gaily-ribboned hat betoken his +grand features. A terror to the smiling innocence of the villages +through which he floats; his swart visage and bold swagger are not +unshunned in cities. Once a vagabond on his own canal, I have received +good turns from one of these Canallers; I thank him heartily; would +fain be not ungrateful; but it is often one of the prime redeeming +qualities of your man of violence, that at times he has as stiff an arm +to back a poor stranger in a strait, as to plunder a wealthy one. In +sum, gentlemen, what the wildness of this canal life is, is +emphatically evinced by this; that our wild whale-fishery contains so +many of its most finished graduates, and that scarce any race of +mankind, except Sydney men, are so much distrusted by our whaling +captains. Nor does it at all diminish the curiousness of this matter, +that to many thousands of our rural boys and young men born along its +line, the probationary life of the Grand Canal furnishes the sole +transition between quietly reaping in a Christian corn-field, and +recklessly ploughing the waters of the most barbaric seas. + +“‘I see! I see!’ impetuously exclaimed Don Pedro, spilling his chicha +upon his silvery ruffles. ‘No need to travel! The world’s one Lima. I +had thought, now, that at your temperate North the generations were +cold and holy as the hills.—But the story.’ + +“I left off, gentlemen, where the Lakeman shook the backstay. Hardly +had he done so, when he was surrounded by the three junior mates and +the four harpooneers, who all crowded him to the deck. But sliding down +the ropes like baleful comets, the two Canallers rushed into the +uproar, and sought to drag their man out of it towards the forecastle. +Others of the sailors joined with them in this attempt, and a twisted +turmoil ensued; while standing out of harm’s way, the valiant captain +danced up and down with a whale-pike, calling upon his officers to +manhandle that atrocious scoundrel, and smoke him along to the +quarter-deck. At intervals, he ran close up to the revolving border of +the confusion, and prying into the heart of it with his pike, sought to +prick out the object of his resentment. But Steelkilt and his +desperadoes were too much for them all; they succeeded in gaining the +forecastle deck, where, hastily slewing about three or four large casks +in a line with the windlass, these sea-Parisians entrenched themselves +behind the barricade. + +“‘Come out of that, ye pirates!’ roared the captain, now menacing them +with a pistol in each hand, just brought to him by the steward. ‘Come +out of that, ye cut-throats!’ + +“Steelkilt leaped on the barricade, and striding up and down there, +defied the worst the pistols could do; but gave the captain to +understand distinctly, that his (Steelkilt’s) death would be the signal +for a murderous mutiny on the part of all hands. Fearing in his heart +lest this might prove but too true, the captain a little desisted, but +still commanded the insurgents instantly to return to their duty. + +“‘Will you promise not to touch us, if we do?’ demanded their +ringleader. + +“‘Turn to! turn to!—I make no promise;—to your duty! Do you want to +sink the ship, by knocking off at a time like this? Turn to!’ and he +once more raised a pistol. + +“‘Sink the ship?’ cried Steelkilt. ‘Aye, let her sink. Not a man of us +turns to, unless you swear not to raise a rope-yarn against us. What +say ye, men?’ turning to his comrades. A fierce cheer was their +response. + +“The Lakeman now patrolled the barricade, all the while keeping his eye +on the Captain, and jerking out such sentences as these:—‘It’s not our +fault; we didn’t want it; I told him to take his hammer away; it was +boy’s business; he might have known me before this; I told him not to +prick the buffalo; I believe I have broken a finger here against his +cursed jaw; ain’t those mincing knives down in the forecastle there, +men? look to those handspikes, my hearties. Captain, by God, look to +yourself; say the word; don’t be a fool; forget it all; we are ready to +turn to; treat us decently, and we’re your men; but we won’t be +flogged.’ + +“‘Turn to! I make no promises, turn to, I say!’ + +“‘Look ye, now,’ cried the Lakeman, flinging out his arm towards him, +‘there are a few of us here (and I am one of them) who have shipped for +the cruise, d’ye see; now as you well know, sir, we can claim our +discharge as soon as the anchor is down; so we don’t want a row; it’s +not our interest; we want to be peaceable; we are ready to work, but we +won’t be flogged.’ + +“‘Turn to!’ roared the Captain. + +“Steelkilt glanced round him a moment, and then said:—‘I tell you what +it is now, Captain, rather than kill ye, and be hung for such a shabby +rascal, we won’t lift a hand against ye unless ye attack us; but till +you say the word about not flogging us, we don’t do a hand’s turn.’ + +“‘Down into the forecastle then, down with ye, I’ll keep ye there till +ye’re sick of it. Down ye go.’ + +“‘Shall we?’ cried the ringleader to his men. Most of them were against +it; but at length, in obedience to Steelkilt, they preceded him down +into their dark den, growlingly disappearing, like bears into a cave. + +“As the Lakeman’s bare head was just level with the planks, the Captain +and his posse leaped the barricade, and rapidly drawing over the slide +of the scuttle, planted their group of hands upon it, and loudly called +for the steward to bring the heavy brass padlock belonging to the +companionway. Then opening the slide a little, the Captain whispered +something down the crack, closed it, and turned the key upon them—ten +in number—leaving on deck some twenty or more, who thus far had +remained neutral. + +“All night a wide-awake watch was kept by all the officers, forward and +aft, especially about the forecastle scuttle and fore hatchway; at +which last place it was feared the insurgents might emerge, after +breaking through the bulkhead below. But the hours of darkness passed +in peace; the men who still remained at their duty toiling hard at the +pumps, whose clinking and clanking at intervals through the dreary +night dismally resounded through the ship. + +“At sunrise the Captain went forward, and knocking on the deck, +summoned the prisoners to work; but with a yell they refused. Water was +then lowered down to them, and a couple of handfuls of biscuit were +tossed after it; when again turning the key upon them and pocketing it, +the Captain returned to the quarter-deck. Twice every day for three +days this was repeated; but on the fourth morning a confused wrangling, +and then a scuffling was heard, as the customary summons was delivered; +and suddenly four men burst up from the forecastle, saying they were +ready to turn to. The fetid closeness of the air, and a famishing diet, +united perhaps to some fears of ultimate retribution, had constrained +them to surrender at discretion. Emboldened by this, the Captain +reiterated his demand to the rest, but Steelkilt shouted up to him a +terrific hint to stop his babbling and betake himself where he +belonged. On the fifth morning three others of the mutineers bolted up +into the air from the desperate arms below that sought to restrain +them. Only three were left. + +“‘Better turn to, now?’ said the Captain with a heartless jeer. + +“‘Shut us up again, will ye!’ cried Steelkilt. + +“‘Oh certainly,’ said the Captain, and the key clicked. + +“It was at this point, gentlemen, that enraged by the defection of +seven of his former associates, and stung by the mocking voice that had +last hailed him, and maddened by his long entombment in a place as +black as the bowels of despair; it was then that Steelkilt proposed to +the two Canallers, thus far apparently of one mind with him, to burst +out of their hole at the next summoning of the garrison; and armed with +their keen mincing knives (long, crescentic, heavy implements with a +handle at each end) run amuck from the bowsprit to the taffrail; and if +by any devilishness of desperation possible, seize the ship. For +himself, he would do this, he said, whether they joined him or not. +That was the last night he should spend in that den. But the scheme met +with no opposition on the part of the other two; they swore they were +ready for that, or for any other mad thing, for anything in short but a +surrender. And what was more, they each insisted upon being the first +man on deck, when the time to make the rush should come. But to this +their leader as fiercely objected, reserving that priority for himself; +particularly as his two comrades would not yield, the one to the other, +in the matter; and both of them could not be first, for the ladder +would but admit one man at a time. And here, gentlemen, the foul play +of these miscreants must come out. + +“Upon hearing the frantic project of their leader, each in his own +separate soul had suddenly lighted, it would seem, upon the same piece +of treachery, namely: to be foremost in breaking out, in order to be +the first of the three, though the last of the ten, to surrender; and +thereby secure whatever small chance of pardon such conduct might +merit. But when Steelkilt made known his determination still to lead +them to the last, they in some way, by some subtle chemistry of +villany, mixed their before secret treacheries together; and when their +leader fell into a doze, verbally opened their souls to each other in +three sentences; and bound the sleeper with cords, and gagged him with +cords; and shrieked out for the Captain at midnight. + +“Thinking murder at hand, and smelling in the dark for the blood, he +and all his armed mates and harpooneers rushed for the forecastle. In a +few minutes the scuttle was opened, and, bound hand and foot, the still +struggling ringleader was shoved up into the air by his perfidious +allies, who at once claimed the honor of securing a man who had been +fully ripe for murder. But all these were collared, and dragged along +the deck like dead cattle; and, side by side, were seized up into the +mizzen rigging, like three quarters of meat, and there they hung till +morning. ‘Damn ye,’ cried the Captain, pacing to and fro before them, +‘the vultures would not touch ye, ye villains!’ + +“At sunrise he summoned all hands; and separating those who had +rebelled from those who had taken no part in the mutiny, he told the +former that he had a good mind to flog them all round—thought, upon the +whole, he would do so—he ought to—justice demanded it; but for the +present, considering their timely surrender, he would let them go with +a reprimand, which he accordingly administered in the vernacular. + +“‘But as for you, ye carrion rogues,’ turning to the three men in the +rigging—‘for you, I mean to mince ye up for the try-pots;’ and, seizing +a rope, he applied it with all his might to the backs of the two +traitors, till they yelled no more, but lifelessly hung their heads +sideways, as the two crucified thieves are drawn. + +“‘My wrist is sprained with ye!’ he cried, at last; ‘but there is still +rope enough left for you, my fine bantam, that wouldn’t give up. Take +that gag from his mouth, and let us hear what he can say for himself.’ + +“For a moment the exhausted mutineer made a tremulous motion of his +cramped jaws, and then painfully twisting round his head, said in a +sort of hiss, ‘What I say is this—and mind it well—if you flog me, I +murder you!’ + +“‘Say ye so? then see how ye frighten me’—and the Captain drew off with +the rope to strike. + +“‘Best not,’ hissed the Lakeman. + +“‘But I must,’—and the rope was once more drawn back for the stroke. + +“Steelkilt here hissed out something, inaudible to all but the Captain; +who, to the amazement of all hands, started back, paced the deck +rapidly two or three times, and then suddenly throwing down his rope, +said, ‘I won’t do it—let him go—cut him down: d’ye hear?’ + +“But as the junior mates were hurrying to execute the order, a pale +man, with a bandaged head, arrested them—Radney the chief mate. Ever +since the blow, he had lain in his berth; but that morning, hearing the +tumult on the deck, he had crept out, and thus far had watched the +whole scene. Such was the state of his mouth, that he could hardly +speak; but mumbling something about _his_ being willing and able to do +what the captain dared not attempt, he snatched the rope and advanced +to his pinioned foe. + +“‘You are a coward!’ hissed the Lakeman. + +“‘So I am, but take that.’ The mate was in the very act of striking, +when another hiss stayed his uplifted arm. He paused: and then pausing +no more, made good his word, spite of Steelkilt’s threat, whatever that +might have been. The three men were then cut down, all hands were +turned to, and, sullenly worked by the moody seamen, the iron pumps +clanged as before. + +“Just after dark that day, when one watch had retired below, a clamor +was heard in the forecastle; and the two trembling traitors running up, +besieged the cabin door, saying they durst not consort with the crew. +Entreaties, cuffs, and kicks could not drive them back, so at their own +instance they were put down in the ship’s run for salvation. Still, no +sign of mutiny reappeared among the rest. On the contrary, it seemed, +that mainly at Steelkilt’s instigation, they had resolved to maintain +the strictest peacefulness, obey all orders to the last, and, when the +ship reached port, desert her in a body. But in order to insure the +speediest end to the voyage, they all agreed to another thing—namely, +not to sing out for whales, in case any should be discovered. For, +spite of her leak, and spite of all her other perils, the Town-Ho still +maintained her mast-heads, and her captain was just as willing to lower +for a fish that moment, as on the day his craft first struck the +cruising ground; and Radney the mate was quite as ready to change his +berth for a boat, and with his bandaged mouth seek to gag in death the +vital jaw of the whale. + +“But though the Lakeman had induced the seamen to adopt this sort of +passiveness in their conduct, he kept his own counsel (at least till +all was over) concerning his own proper and private revenge upon the +man who had stung him in the ventricles of his heart. He was in Radney +the chief mate’s watch; and as if the infatuated man sought to run more +than half way to meet his doom, after the scene at the rigging, he +insisted, against the express counsel of the captain, upon resuming the +head of his watch at night. Upon this, and one or two other +circumstances, Steelkilt systematically built the plan of his revenge. + +“During the night, Radney had an unseamanlike way of sitting on the +bulwarks of the quarter-deck, and leaning his arm upon the gunwale of +the boat which was hoisted up there, a little above the ship’s side. In +this attitude, it was well known, he sometimes dozed. There was a +considerable vacancy between the boat and the ship, and down between +this was the sea. Steelkilt calculated his time, and found that his +next trick at the helm would come round at two o’clock, in the morning +of the third day from that in which he had been betrayed. At his +leisure, he employed the interval in braiding something very carefully +in his watches below. + +“‘What are you making there?’ said a shipmate. + +“‘What do you think? what does it look like?’ + +“‘Like a lanyard for your bag; but it’s an odd one, seems to me.’ + +“‘Yes, rather oddish,’ said the Lakeman, holding it at arm’s length +before him; ‘but I think it will answer. Shipmate, I haven’t enough +twine,—have you any?’ + +“But there was none in the forecastle. + +“‘Then I must get some from old Rad;’ and he rose to go aft. + +“‘You don’t mean to go a begging to _him!_’ said a sailor. + +“‘Why not? Do you think he won’t do me a turn, when it’s to help +himself in the end, shipmate?’ and going to the mate, he looked at him +quietly, and asked him for some twine to mend his hammock. It was given +him—neither twine nor lanyard were seen again; but the next night an +iron ball, closely netted, partly rolled from the pocket of the +Lakeman’s monkey jacket, as he was tucking the coat into his hammock +for a pillow. Twenty-four hours after, his trick at the silent +helm—nigh to the man who was apt to doze over the grave always ready +dug to the seaman’s hand—that fatal hour was then to come; and in the +fore-ordaining soul of Steelkilt, the mate was already stark and +stretched as a corpse, with his forehead crushed in. + +“But, gentlemen, a fool saved the would-be murderer from the bloody +deed he had planned. Yet complete revenge he had, and without being the +avenger. For by a mysterious fatality, Heaven itself seemed to step in +to take out of his hands into its own the damning thing he would have +done. + +“It was just between daybreak and sunrise of the morning of the second +day, when they were washing down the decks, that a stupid Teneriffe +man, drawing water in the main-chains, all at once shouted out, ‘There +she rolls! there she rolls!’ Jesu, what a whale! It was Moby Dick. + +“‘Moby Dick!’ cried Don Sebastian; ‘St. Dominic! Sir sailor, but do +whales have christenings? Whom call you Moby Dick?’ + +“‘A very white, and famous, and most deadly immortal monster, Don;—but +that would be too long a story.’ + +“‘How? how?’ cried all the young Spaniards, crowding. + +“‘Nay, Dons, Dons—nay, nay! I cannot rehearse that now. Let me get more +into the air, Sirs.’ + +“‘The chicha! the chicha!’ cried Don Pedro; ‘our vigorous friend looks +faint;—fill up his empty glass!’ + +“No need, gentlemen; one moment, and I proceed.—Now, gentlemen, so +suddenly perceiving the snowy whale within fifty yards of the +ship—forgetful of the compact among the crew—in the excitement of the +moment, the Teneriffe man had instinctively and involuntarily lifted +his voice for the monster, though for some little time past it had been +plainly beheld from the three sullen mast-heads. All was now a phrensy. +‘The White Whale—the White Whale!’ was the cry from captain, mates, and +harpooneers, who, undeterred by fearful rumours, were all anxious to +capture so famous and precious a fish; while the dogged crew eyed +askance, and with curses, the appalling beauty of the vast milky mass, +that lit up by a horizontal spangling sun, shifted and glistened like a +living opal in the blue morning sea. Gentlemen, a strange fatality +pervades the whole career of these events, as if verily mapped out +before the world itself was charted. The mutineer was the bowsman of +the mate, and when fast to a fish, it was his duty to sit next him, +while Radney stood up with his lance in the prow, and haul in or +slacken the line, at the word of command. Moreover, when the four boats +were lowered, the mate’s got the start; and none howled more fiercely +with delight than did Steelkilt, as he strained at his oar. After a +stiff pull, their harpooneer got fast, and, spear in hand, Radney +sprang to the bow. He was always a furious man, it seems, in a boat. +And now his bandaged cry was, to beach him on the whale’s topmost back. +Nothing loath, his bowsman hauled him up and up, through a blinding +foam that blent two whitenesses together; till of a sudden the boat +struck as against a sunken ledge, and keeling over, spilled out the +standing mate. That instant, as he fell on the whale’s slippery back, +the boat righted, and was dashed aside by the swell, while Radney was +tossed over into the sea, on the other flank of the whale. He struck +out through the spray, and, for an instant, was dimly seen through that +veil, wildly seeking to remove himself from the eye of Moby Dick. But +the whale rushed round in a sudden maelstrom; seized the swimmer +between his jaws; and rearing high up with him, plunged headlong again, +and went down. + +“Meantime, at the first tap of the boat’s bottom, the Lakeman had +slackened the line, so as to drop astern from the whirlpool; calmly +looking on, he thought his own thoughts. But a sudden, terrific, +downward jerking of the boat, quickly brought his knife to the line. He +cut it; and the whale was free. But, at some distance, Moby Dick rose +again, with some tatters of Radney’s red woollen shirt, caught in the +teeth that had destroyed him. All four boats gave chase again; but the +whale eluded them, and finally wholly disappeared. + +“In good time, the Town-Ho reached her port—a savage, solitary +place—where no civilized creature resided. There, headed by the +Lakeman, all but five or six of the foremastmen deliberately deserted +among the palms; eventually, as it turned out, seizing a large double +war-canoe of the savages, and setting sail for some other harbor. + +“The ship’s company being reduced to but a handful, the captain called +upon the Islanders to assist him in the laborious business of heaving +down the ship to stop the leak. But to such unresting vigilance over +their dangerous allies was this small band of whites necessitated, both +by night and by day, and so extreme was the hard work they underwent, +that upon the vessel being ready again for sea, they were in such a +weakened condition that the captain durst not put off with them in so +heavy a vessel. After taking counsel with his officers, he anchored the +ship as far off shore as possible; loaded and ran out his two cannon +from the bows; stacked his muskets on the poop; and warning the +Islanders not to approach the ship at their peril, took one man with +him, and setting the sail of his best whale-boat, steered straight +before the wind for Tahiti, five hundred miles distant, to procure a +reinforcement to his crew. + +“On the fourth day of the sail, a large canoe was descried, which +seemed to have touched at a low isle of corals. He steered away from +it; but the savage craft bore down on him; and soon the voice of +Steelkilt hailed him to heave to, or he would run him under water. The +captain presented a pistol. With one foot on each prow of the yoked +war-canoes, the Lakeman laughed him to scorn; assuring him that if the +pistol so much as clicked in the lock, he would bury him in bubbles and +foam. + +“‘What do you want of me?’ cried the captain. + +“‘Where are you bound? and for what are you bound?’ demanded Steelkilt; +‘no lies.’ + +“‘I am bound to Tahiti for more men.’ + +“‘Very good. Let me board you a moment—I come in peace.’ With that he +leaped from the canoe, swam to the boat; and climbing the gunwale, +stood face to face with the captain. + +“‘Cross your arms, sir; throw back your head. Now, repeat after me. As +soon as Steelkilt leaves me, I swear to beach this boat on yonder +island, and remain there six days. If I do not, may lightnings strike +me!’ + +“‘A pretty scholar,’ laughed the Lakeman. ‘Adios, Senor!’ and leaping +into the sea, he swam back to his comrades. + +“Watching the boat till it was fairly beached, and drawn up to the +roots of the cocoa-nut trees, Steelkilt made sail again, and in due +time arrived at Tahiti, his own place of destination. There, luck +befriended him; two ships were about to sail for France, and were +providentially in want of precisely that number of men which the sailor +headed. They embarked; and so for ever got the start of their former +captain, had he been at all minded to work them legal retribution. + +“Some ten days after the French ships sailed, the whale-boat arrived, +and the captain was forced to enlist some of the more civilized +Tahitians, who had been somewhat used to the sea. Chartering a small +native schooner, he returned with them to his vessel; and finding all +right there, again resumed his cruisings. + +“Where Steelkilt now is, gentlemen, none know; but upon the island of +Nantucket, the widow of Radney still turns to the sea which refuses to +give up its dead; still in dreams sees the awful white whale that +destroyed him. * * * * + +“‘Are you through?’ said Don Sebastian, quietly. + +“‘I am, Don.’ + +“‘Then I entreat you, tell me if to the best of your own convictions, +this your story is in substance really true? It is so passing +wonderful! Did you get it from an unquestionable source? Bear with me +if I seem to press.’ + +“‘Also bear with all of us, sir sailor; for we all join in Don +Sebastian’s suit,’ cried the company, with exceeding interest. + +“‘Is there a copy of the Holy Evangelists in the Golden Inn, +gentlemen?’ + +“‘Nay,’ said Don Sebastian; ‘but I know a worthy priest near by, who +will quickly procure one for me. I go for it; but are you well advised? +this may grow too serious.’ + +“‘Will you be so good as to bring the priest also, Don?’ + +“‘Though there are no Auto-da-Fés in Lima now,’ said one of the company +to another; ‘I fear our sailor friend runs risk of the archiepiscopacy. +Let us withdraw more out of the moonlight. I see no need of this.’ + +“‘Excuse me for running after you, Don Sebastian; but may I also beg +that you will be particular in procuring the largest sized Evangelists +you can.’ + +* * * * * * + +“‘This is the priest, he brings you the Evangelists,’ said Don +Sebastian, gravely, returning with a tall and solemn figure. + +“‘Let me remove my hat. Now, venerable priest, further into the light, +and hold the Holy Book before me that I may touch it. + +“‘So help me Heaven, and on my honor the story I have told ye, +gentlemen, is in substance and its great items, true. I know it to be +true; it happened on this ball; I trod the ship; I knew the crew; I +have seen and talked with Steelkilt since the death of Radney.’” + + +CHAPTER 55. Of the Monstrous Pictures of Whales. + +I shall ere long paint to you as well as one can without canvas, +something like the true form of the whale as he actually appears to the +eye of the whaleman when in his own absolute body the whale is moored +alongside the whale-ship so that he can be fairly stepped upon there. +It may be worth while, therefore, previously to advert to those curious +imaginary portraits of him which even down to the present day +confidently challenge the faith of the landsman. It is time to set the +world right in this matter, by proving such pictures of the whale all +wrong. + +It may be that the primal source of all those pictorial delusions will +be found among the oldest Hindoo, Egyptian, and Grecian sculptures. For +ever since those inventive but unscrupulous times when on the marble +panellings of temples, the pedestals of statues, and on shields, +medallions, cups, and coins, the dolphin was drawn in scales of +chain-armor like Saladin’s, and a helmeted head like St. George’s; ever +since then has something of the same sort of license prevailed, not +only in most popular pictures of the whale, but in many scientific +presentations of him. + +Now, by all odds, the most ancient extant portrait anyways purporting +to be the whale’s, is to be found in the famous cavern-pagoda of +Elephanta, in India. The Brahmins maintain that in the almost endless +sculptures of that immemorial pagoda, all the trades and pursuits, +every conceivable avocation of man, were prefigured ages before any of +them actually came into being. No wonder then, that in some sort our +noble profession of whaling should have been there shadowed forth. The +Hindoo whale referred to, occurs in a separate department of the wall, +depicting the incarnation of Vishnu in the form of leviathan, learnedly +known as the Matse Avatar. But though this sculpture is half man and +half whale, so as only to give the tail of the latter, yet that small +section of him is all wrong. It looks more like the tapering tail of an +anaconda, than the broad palms of the true whale’s majestic flukes. + +But go to the old Galleries, and look now at a great Christian +painter’s portrait of this fish; for he succeeds no better than the +antediluvian Hindoo. It is Guido’s picture of Perseus rescuing +Andromeda from the sea-monster or whale. Where did Guido get the model +of such a strange creature as that? Nor does Hogarth, in painting the +same scene in his own “Perseus Descending,” make out one whit better. +The huge corpulence of that Hogarthian monster undulates on the +surface, scarcely drawing one inch of water. It has a sort of howdah on +its back, and its distended tusked mouth into which the billows are +rolling, might be taken for the Traitors’ Gate leading from the Thames +by water into the Tower. Then, there are the Prodromus whales of old +Scotch Sibbald, and Jonah’s whale, as depicted in the prints of old +Bibles and the cuts of old primers. What shall be said of these? As for +the book-binder’s whale winding like a vine-stalk round the stock of a +descending anchor—as stamped and gilded on the backs and title-pages of +many books both old and new—that is a very picturesque but purely +fabulous creature, imitated, I take it, from the like figures on +antique vases. Though universally denominated a dolphin, I nevertheless +call this book-binder’s fish an attempt at a whale; because it was so +intended when the device was first introduced. It was introduced by an +old Italian publisher somewhere about the 15th century, during the +Revival of Learning; and in those days, and even down to a +comparatively late period, dolphins were popularly supposed to be a +species of the Leviathan. + +In the vignettes and other embellishments of some ancient books you +will at times meet with very curious touches at the whale, where all +manner of spouts, jets d’eau, hot springs and cold, Saratoga and +Baden-Baden, come bubbling up from his unexhausted brain. In the +title-page of the original edition of the “Advancement of Learning” you +will find some curious whales. + +But quitting all these unprofessional attempts, let us glance at those +pictures of leviathan purporting to be sober, scientific delineations, +by those who know. In old Harris’s collection of voyages there are some +plates of whales extracted from a Dutch book of voyages, A.D. 1671, +entitled “A Whaling Voyage to Spitzbergen in the ship Jonas in the +Whale, Peter Peterson of Friesland, master.” In one of those plates the +whales, like great rafts of logs, are represented lying among +ice-isles, with white bears running over their living backs. In another +plate, the prodigious blunder is made of representing the whale with +perpendicular flukes. + +Then again, there is an imposing quarto, written by one Captain +Colnett, a Post Captain in the English navy, entitled “A Voyage round +Cape Horn into the South Seas, for the purpose of extending the +Spermaceti Whale Fisheries.” In this book is an outline purporting to +be a “Picture of a Physeter or Spermaceti whale, drawn by scale from +one killed on the coast of Mexico, August, 1793, and hoisted on deck.” +I doubt not the captain had this veracious picture taken for the +benefit of his marines. To mention but one thing about it, let me say +that it has an eye which applied, according to the accompanying scale, +to a full grown sperm whale, would make the eye of that whale a +bow-window some five feet long. Ah, my gallant captain, why did ye not +give us Jonah looking out of that eye! + +Nor are the most conscientious compilations of Natural History for the +benefit of the young and tender, free from the same heinousness of +mistake. Look at that popular work “Goldsmith’s Animated Nature.” In +the abridged London edition of 1807, there are plates of an alleged +“whale” and a “narwhale.” I do not wish to seem inelegant, but this +unsightly whale looks much like an amputated sow; and, as for the +narwhale, one glimpse at it is enough to amaze one, that in this +nineteenth century such a hippogriff could be palmed for genuine upon +any intelligent public of schoolboys. + +Then, again, in 1825, Bernard Germain, Count de Lacépède, a great +naturalist, published a scientific systemized whale book, wherein are +several pictures of the different species of the Leviathan. All these +are not only incorrect, but the picture of the Mysticetus or Greenland +whale (that is to say, the Right whale), even Scoresby, a long +experienced man as touching that species, declares not to have its +counterpart in nature. + +But the placing of the cap-sheaf to all this blundering business was +reserved for the scientific Frederick Cuvier, brother to the famous +Baron. In 1836, he published a Natural History of Whales, in which he +gives what he calls a picture of the Sperm Whale. Before showing that +picture to any Nantucketer, you had best provide for your summary +retreat from Nantucket. In a word, Frederick Cuvier’s Sperm Whale is +not a Sperm Whale, but a squash. Of course, he never had the benefit of +a whaling voyage (such men seldom have), but whence he derived that +picture, who can tell? Perhaps he got it as his scientific predecessor +in the same field, Desmarest, got one of his authentic abortions; that +is, from a Chinese drawing. And what sort of lively lads with the +pencil those Chinese are, many queer cups and saucers inform us. + +As for the sign-painters’ whales seen in the streets hanging over the +shops of oil-dealers, what shall be said of them? They are generally +Richard III. whales, with dromedary humps, and very savage; +breakfasting on three or four sailor tarts, that is whaleboats full of +mariners: their deformities floundering in seas of blood and blue +paint. + +But these manifold mistakes in depicting the whale are not so very +surprising after all. Consider! Most of the scientific drawings have +been taken from the stranded fish; and these are about as correct as a +drawing of a wrecked ship, with broken back, would correctly represent +the noble animal itself in all its undashed pride of hull and spars. +Though elephants have stood for their full-lengths, the living +Leviathan has never yet fairly floated himself for his portrait. The +living whale, in his full majesty and significance, is only to be seen +at sea in unfathomable waters; and afloat the vast bulk of him is out +of sight, like a launched line-of-battle ship; and out of that element +it is a thing eternally impossible for mortal man to hoist him bodily +into the air, so as to preserve all his mighty swells and undulations. +And, not to speak of the highly presumable difference of contour +between a young sucking whale and a full-grown Platonian Leviathan; +yet, even in the case of one of those young sucking whales hoisted to a +ship’s deck, such is then the outlandish, eel-like, limbered, varying +shape of him, that his precise expression the devil himself could not +catch. + +But it may be fancied, that from the naked skeleton of the stranded +whale, accurate hints may be derived touching his true form. Not at +all. For it is one of the more curious things about this Leviathan, +that his skeleton gives very little idea of his general shape. Though +Jeremy Bentham’s skeleton, which hangs for candelabra in the library of +one of his executors, correctly conveys the idea of a burly-browed +utilitarian old gentleman, with all Jeremy’s other leading personal +characteristics; yet nothing of this kind could be inferred from any +leviathan’s articulated bones. In fact, as the great Hunter says, the +mere skeleton of the whale bears the same relation to the fully +invested and padded animal as the insect does to the chrysalis that so +roundingly envelopes it. This peculiarity is strikingly evinced in the +head, as in some part of this book will be incidentally shown. It is +also very curiously displayed in the side fin, the bones of which +almost exactly answer to the bones of the human hand, minus only the +thumb. This fin has four regular bone-fingers, the index, middle, ring, +and little finger. But all these are permanently lodged in their fleshy +covering, as the human fingers in an artificial covering. “However +recklessly the whale may sometimes serve us,” said humorous Stubb one +day, “he can never be truly said to handle us without mittens.” + +For all these reasons, then, any way you may look at it, you must needs +conclude that the great Leviathan is that one creature in the world +which must remain unpainted to the last. True, one portrait may hit the +mark much nearer than another, but none can hit it with any very +considerable degree of exactness. So there is no earthly way of finding +out precisely what the whale really looks like. And the only mode in +which you can derive even a tolerable idea of his living contour, is by +going a whaling yourself; but by so doing, you run no small risk of +being eternally stove and sunk by him. Wherefore, it seems to me you +had best not be too fastidious in your curiosity touching this +Leviathan. + + +CHAPTER 56. Of the Less Erroneous Pictures of Whales, and the True +Pictures of Whaling Scenes. + +In connexion with the monstrous pictures of whales, I am strongly +tempted here to enter upon those still more monstrous stories of them +which are to be found in certain books, both ancient and modern, +especially in Pliny, Purchas, Hackluyt, Harris, Cuvier, etc. But I pass +that matter by. + +I know of only four published outlines of the great Sperm Whale; +Colnett’s, Huggins’s, Frederick Cuvier’s, and Beale’s. In the previous +chapter Colnett and Cuvier have been referred to. Huggins’s is far +better than theirs; but, by great odds, Beale’s is the best. All +Beale’s drawings of this whale are good, excepting the middle figure in +the picture of three whales in various attitudes, capping his second +chapter. His frontispiece, boats attacking Sperm Whales, though no +doubt calculated to excite the civil scepticism of some parlor men, is +admirably correct and life-like in its general effect. Some of the +Sperm Whale drawings in J. Ross Browne are pretty correct in contour; +but they are wretchedly engraved. That is not his fault though. + +Of the Right Whale, the best outline pictures are in Scoresby; but they +are drawn on too small a scale to convey a desirable impression. He has +but one picture of whaling scenes, and this is a sad deficiency, +because it is by such pictures only, when at all well done, that you +can derive anything like a truthful idea of the living whale as seen by +his living hunters. + +But, taken for all in all, by far the finest, though in some details +not the most correct, presentations of whales and whaling scenes to be +anywhere found, are two large French engravings, well executed, and +taken from paintings by one Garnery. Respectively, they represent +attacks on the Sperm and Right Whale. In the first engraving a noble +Sperm Whale is depicted in full majesty of might, just risen beneath +the boat from the profundities of the ocean, and bearing high in the +air upon his back the terrific wreck of the stoven planks. The prow of +the boat is partially unbroken, and is drawn just balancing upon the +monster’s spine; and standing in that prow, for that one single +incomputable flash of time, you behold an oarsman, half shrouded by the +incensed boiling spout of the whale, and in the act of leaping, as if +from a precipice. The action of the whole thing is wonderfully good and +true. The half-emptied line-tub floats on the whitened sea; the wooden +poles of the spilled harpoons obliquely bob in it; the heads of the +swimming crew are scattered about the whale in contrasting expressions +of affright; while in the black stormy distance the ship is bearing +down upon the scene. Serious fault might be found with the anatomical +details of this whale, but let that pass; since, for the life of me, I +could not draw so good a one. + +In the second engraving, the boat is in the act of drawing alongside +the barnacled flank of a large running Right Whale, that rolls his +black weedy bulk in the sea like some mossy rock-slide from the +Patagonian cliffs. His jets are erect, full, and black like soot; so +that from so abounding a smoke in the chimney, you would think there +must be a brave supper cooking in the great bowels below. Sea fowls are +pecking at the small crabs, shell-fish, and other sea candies and +maccaroni, which the Right Whale sometimes carries on his pestilent +back. And all the while the thick-lipped leviathan is rushing through +the deep, leaving tons of tumultuous white curds in his wake, and +causing the slight boat to rock in the swells like a skiff caught nigh +the paddle-wheels of an ocean steamer. Thus, the foreground is all +raging commotion; but behind, in admirable artistic contrast, is the +glassy level of a sea becalmed, the drooping unstarched sails of the +powerless ship, and the inert mass of a dead whale, a conquered +fortress, with the flag of capture lazily hanging from the whale-pole +inserted into his spout-hole. + +Who Garnery the painter is, or was, I know not. But my life for it he +was either practically conversant with his subject, or else +marvellously tutored by some experienced whaleman. The French are the +lads for painting action. Go and gaze upon all the paintings of Europe, +and where will you find such a gallery of living and breathing +commotion on canvas, as in that triumphal hall at Versailles; where the +beholder fights his way, pell-mell, through the consecutive great +battles of France; where every sword seems a flash of the Northern +Lights, and the successive armed kings and Emperors dash by, like a +charge of crowned centaurs? Not wholly unworthy of a place in that +gallery, are these sea battle-pieces of Garnery. + +The natural aptitude of the French for seizing the picturesqueness of +things seems to be peculiarly evinced in what paintings and engravings +they have of their whaling scenes. With not one tenth of England’s +experience in the fishery, and not the thousandth part of that of the +Americans, they have nevertheless furnished both nations with the only +finished sketches at all capable of conveying the real spirit of the +whale hunt. For the most part, the English and American whale +draughtsmen seem entirely content with presenting the mechanical +outline of things, such as the vacant profile of the whale; which, so +far as picturesqueness of effect is concerned, is about tantamount to +sketching the profile of a pyramid. Even Scoresby, the justly renowned +Right whaleman, after giving us a stiff full length of the Greenland +whale, and three or four delicate miniatures of narwhales and +porpoises, treats us to a series of classical engravings of boat hooks, +chopping knives, and grapnels; and with the microscopic diligence of a +Leuwenhoeck submits to the inspection of a shivering world ninety-six +fac-similes of magnified Arctic snow crystals. I mean no disparagement +to the excellent voyager (I honor him for a veteran), but in so +important a matter it was certainly an oversight not to have procured +for every crystal a sworn affidavit taken before a Greenland Justice of +the Peace. + +In addition to those fine engravings from Garnery, there are two other +French engravings worthy of note, by some one who subscribes himself +“H. Durand.” One of them, though not precisely adapted to our present +purpose, nevertheless deserves mention on other accounts. It is a quiet +noon-scene among the isles of the Pacific; a French whaler anchored, +inshore, in a calm, and lazily taking water on board; the loosened +sails of the ship, and the long leaves of the palms in the background, +both drooping together in the breezeless air. The effect is very fine, +when considered with reference to its presenting the hardy fishermen +under one of their few aspects of oriental repose. The other engraving +is quite a different affair: the ship hove-to upon the open sea, and in +the very heart of the Leviathanic life, with a Right Whale alongside; +the vessel (in the act of cutting-in) hove over to the monster as if to +a quay; and a boat, hurriedly pushing off from this scene of activity, +is about giving chase to whales in the distance. The harpoons and +lances lie levelled for use; three oarsmen are just setting the mast in +its hole; while from a sudden roll of the sea, the little craft stands +half-erect out of the water, like a rearing horse. From the ship, the +smoke of the torments of the boiling whale is going up like the smoke +over a village of smithies; and to windward, a black cloud, rising up +with earnest of squalls and rains, seems to quicken the activity of the +excited seamen. + + +CHAPTER 57. Of Whales in Paint; in Teeth; in Wood; in Sheet-Iron; in +Stone; in Mountains; in Stars. + +On Tower-hill, as you go down to the London docks, you may have seen a +crippled beggar (or _kedger_, as the sailors say) holding a painted +board before him, representing the tragic scene in which he lost his +leg. There are three whales and three boats; and one of the boats +(presumed to contain the missing leg in all its original integrity) is +being crunched by the jaws of the foremost whale. Any time these ten +years, they tell me, has that man held up that picture, and exhibited +that stump to an incredulous world. But the time of his justification +has now come. His three whales are as good whales as were ever +published in Wapping, at any rate; and his stump as unquestionable a +stump as any you will find in the western clearings. But, though for +ever mounted on that stump, never a stump-speech does the poor whaleman +make; but, with downcast eyes, stands ruefully contemplating his own +amputation. + +Throughout the Pacific, and also in Nantucket, and New Bedford, and Sag +Harbor, you will come across lively sketches of whales and +whaling-scenes, graven by the fishermen themselves on Sperm +Whale-teeth, or ladies’ busks wrought out of the Right Whale-bone, and +other like skrimshander articles, as the whalemen call the numerous +little ingenious contrivances they elaborately carve out of the rough +material, in their hours of ocean leisure. Some of them have little +boxes of dentistical-looking implements, specially intended for the +skrimshandering business. But, in general, they toil with their +jack-knives alone; and, with that almost omnipotent tool of the sailor, +they will turn you out anything you please, in the way of a mariner’s +fancy. + +Long exile from Christendom and civilization inevitably restores a man +to that condition in which God placed him, _i.e._ what is called +savagery. Your true whale-hunter is as much a savage as an Iroquois. I +myself am a savage, owning no allegiance but to the King of the +Cannibals; and ready at any moment to rebel against him. + +Now, one of the peculiar characteristics of the savage in his domestic +hours, is his wonderful patience of industry. An ancient Hawaiian +war-club or spear-paddle, in its full multiplicity and elaboration of +carving, is as great a trophy of human perseverance as a Latin lexicon. +For, with but a bit of broken sea-shell or a shark’s tooth, that +miraculous intricacy of wooden net-work has been achieved; and it has +cost steady years of steady application. + +As with the Hawaiian savage, so with the white sailor-savage. With the +same marvellous patience, and with the same single shark’s tooth, of +his one poor jack-knife, he will carve you a bit of bone sculpture, not +quite as workmanlike, but as close packed in its maziness of design, as +the Greek savage, Achilles’s shield; and full of barbaric spirit and +suggestiveness, as the prints of that fine old Dutch savage, Albert +Durer. + +Wooden whales, or whales cut in profile out of the small dark slabs of +the noble South Sea war-wood, are frequently met with in the +forecastles of American whalers. Some of them are done with much +accuracy. + +At some old gable-roofed country houses you will see brass whales hung +by the tail for knockers to the road-side door. When the porter is +sleepy, the anvil-headed whale would be best. But these knocking whales +are seldom remarkable as faithful essays. On the spires of some +old-fashioned churches you will see sheet-iron whales placed there for +weather-cocks; but they are so elevated, and besides that are to all +intents and purposes so labelled with “_Hands off!_” you cannot examine +them closely enough to decide upon their merit. + +In bony, ribby regions of the earth, where at the base of high broken +cliffs masses of rock lie strewn in fantastic groupings upon the plain, +you will often discover images as of the petrified forms of the +Leviathan partly merged in grass, which of a windy day breaks against +them in a surf of green surges. + +Then, again, in mountainous countries where the traveller is +continually girdled by amphitheatrical heights; here and there from +some lucky point of view you will catch passing glimpses of the +profiles of whales defined along the undulating ridges. But you must be +a thorough whaleman, to see these sights; and not only that, but if you +wish to return to such a sight again, you must be sure and take the +exact intersecting latitude and longitude of your first stand-point, +else so chance-like are such observations of the hills, that your +precise, previous stand-point would require a laborious re-discovery; +like the Soloma Islands, which still remain incognita, though once +high-ruffed Mendanna trod them and old Figuera chronicled them. + +Nor when expandingly lifted by your subject, can you fail to trace out +great whales in the starry heavens, and boats in pursuit of them; as +when long filled with thoughts of war the Eastern nations saw armies +locked in battle among the clouds. Thus at the North have I chased +Leviathan round and round the Pole with the revolutions of the bright +points that first defined him to me. And beneath the effulgent +Antarctic skies I have boarded the Argo-Navis, and joined the chase +against the starry Cetus far beyond the utmost stretch of Hydrus and +the Flying Fish. + +With a frigate’s anchors for my bridle-bitts and fasces of harpoons for +spurs, would I could mount that whale and leap the topmost skies, to +see whether the fabled heavens with all their countless tents really +lie encamped beyond my mortal sight! + + +CHAPTER 58. Brit. + +Steering north-eastward from the Crozetts, we fell in with vast meadows +of brit, the minute, yellow substance, upon which the Right Whale +largely feeds. For leagues and leagues it undulated round us, so that +we seemed to be sailing through boundless fields of ripe and golden +wheat. + +On the second day, numbers of Right Whales were seen, who, secure from +the attack of a Sperm Whaler like the Pequod, with open jaws sluggishly +swam through the brit, which, adhering to the fringing fibres of that +wondrous Venetian blind in their mouths, was in that manner separated +from the water that escaped at the lip. + +As morning mowers, who side by side slowly and seethingly advance their +scythes through the long wet grass of marshy meads; even so these +monsters swam, making a strange, grassy, cutting sound; and leaving +behind them endless swaths of blue upon the yellow sea.* + +*That part of the sea known among whalemen as the “Brazil Banks” does +not bear that name as the Banks of Newfoundland do, because of there +being shallows and soundings there, but because of this remarkable +meadow-like appearance, caused by the vast drifts of brit continually +floating in those latitudes, where the Right Whale is often chased. + +But it was only the sound they made as they parted the brit which at +all reminded one of mowers. Seen from the mast-heads, especially when +they paused and were stationary for a while, their vast black forms +looked more like lifeless masses of rock than anything else. And as in +the great hunting countries of India, the stranger at a distance will +sometimes pass on the plains recumbent elephants without knowing them +to be such, taking them for bare, blackened elevations of the soil; +even so, often, with him, who for the first time beholds this species +of the leviathans of the sea. And even when recognised at last, their +immense magnitude renders it very hard really to believe that such +bulky masses of overgrowth can possibly be instinct, in all parts, with +the same sort of life that lives in a dog or a horse. + +Indeed, in other respects, you can hardly regard any creatures of the +deep with the same feelings that you do those of the shore. For though +some old naturalists have maintained that all creatures of the land are +of their kind in the sea; and though taking a broad general view of the +thing, this may very well be; yet coming to specialties, where, for +example, does the ocean furnish any fish that in disposition answers to +the sagacious kindness of the dog? The accursed shark alone can in any +generic respect be said to bear comparative analogy to him. + +But though, to landsmen in general, the native inhabitants of the seas +have ever been regarded with emotions unspeakably unsocial and +repelling; though we know the sea to be an everlasting terra incognita, +so that Columbus sailed over numberless unknown worlds to discover his +one superficial western one; though, by vast odds, the most terrific of +all mortal disasters have immemorially and indiscriminately befallen +tens and hundreds of thousands of those who have gone upon the waters; +though but a moment’s consideration will teach, that however baby man +may brag of his science and skill, and however much, in a flattering +future, that science and skill may augment; yet for ever and for ever, +to the crack of doom, the sea will insult and murder him, and pulverize +the stateliest, stiffest frigate he can make; nevertheless, by the +continual repetition of these very impressions, man has lost that sense +of the full awfulness of the sea which aboriginally belongs to it. + +The first boat we read of, floated on an ocean, that with Portuguese +vengeance had whelmed a whole world without leaving so much as a widow. +That same ocean rolls now; that same ocean destroyed the wrecked ships +of last year. Yea, foolish mortals, Noah’s flood is not yet subsided; +two thirds of the fair world it yet covers. + +Wherein differ the sea and the land, that a miracle upon one is not a +miracle upon the other? Preternatural terrors rested upon the Hebrews, +when under the feet of Korah and his company the live ground opened and +swallowed them up for ever; yet not a modern sun ever sets, but in +precisely the same manner the live sea swallows up ships and crews. + +But not only is the sea such a foe to man who is an alien to it, but it +is also a fiend to its own off-spring; worse than the Persian host who +murdered his own guests; sparing not the creatures which itself hath +spawned. Like a savage tigress that tossing in the jungle overlays her +own cubs, so the sea dashes even the mightiest whales against the +rocks, and leaves them there side by side with the split wrecks of +ships. No mercy, no power but its own controls it. Panting and snorting +like a mad battle steed that has lost its rider, the masterless ocean +overruns the globe. + +Consider the subtleness of the sea; how its most dreaded creatures +glide under water, unapparent for the most part, and treacherously +hidden beneath the loveliest tints of azure. Consider also the devilish +brilliance and beauty of many of its most remorseless tribes, as the +dainty embellished shape of many species of sharks. Consider, once +more, the universal cannibalism of the sea; all whose creatures prey +upon each other, carrying on eternal war since the world began. + +Consider all this; and then turn to this green, gentle, and most docile +earth; consider them both, the sea and the land; and do you not find a +strange analogy to something in yourself? For as this appalling ocean +surrounds the verdant land, so in the soul of man there lies one +insular Tahiti, full of peace and joy, but encompassed by all the +horrors of the half known life. God keep thee! Push not off from that +isle, thou canst never return! + + +CHAPTER 59. Squid. + +Slowly wading through the meadows of brit, the Pequod still held on her +way north-eastward towards the island of Java; a gentle air impelling +her keel, so that in the surrounding serenity her three tall tapering +masts mildly waved to that languid breeze, as three mild palms on a +plain. And still, at wide intervals in the silvery night, the lonely, +alluring jet would be seen. + +But one transparent blue morning, when a stillness almost preternatural +spread over the sea, however unattended with any stagnant calm; when +the long burnished sun-glade on the waters seemed a golden finger laid +across them, enjoining some secrecy; when the slippered waves whispered +together as they softly ran on; in this profound hush of the visible +sphere a strange spectre was seen by Daggoo from the main-mast-head. + +In the distance, a great white mass lazily rose, and rising higher and +higher, and disentangling itself from the azure, at last gleamed before +our prow like a snow-slide, new slid from the hills. Thus glistening +for a moment, as slowly it subsided, and sank. Then once more arose, +and silently gleamed. It seemed not a whale; and yet is this Moby Dick? +thought Daggoo. Again the phantom went down, but on re-appearing once +more, with a stiletto-like cry that startled every man from his nod, +the negro yelled out—“There! there again! there she breaches! right +ahead! The White Whale, the White Whale!” + +Upon this, the seamen rushed to the yard-arms, as in swarming-time the +bees rush to the boughs. Bare-headed in the sultry sun, Ahab stood on +the bowsprit, and with one hand pushed far behind in readiness to wave +his orders to the helmsman, cast his eager glance in the direction +indicated aloft by the outstretched motionless arm of Daggoo. + +Whether the flitting attendance of the one still and solitary jet had +gradually worked upon Ahab, so that he was now prepared to connect the +ideas of mildness and repose with the first sight of the particular +whale he pursued; however this was, or whether his eagerness betrayed +him; whichever way it might have been, no sooner did he distinctly +perceive the white mass, than with a quick intensity he instantly gave +orders for lowering. + +The four boats were soon on the water; Ahab’s in advance, and all +swiftly pulling towards their prey. Soon it went down, and while, with +oars suspended, we were awaiting its reappearance, lo! in the same spot +where it sank, once more it slowly rose. Almost forgetting for the +moment all thoughts of Moby Dick, we now gazed at the most wondrous +phenomenon which the secret seas have hitherto revealed to mankind. A +vast pulpy mass, furlongs in length and breadth, of a glancing +cream-colour, lay floating on the water, innumerable long arms +radiating from its centre, and curling and twisting like a nest of +anacondas, as if blindly to clutch at any hapless object within reach. +No perceptible face or front did it have; no conceivable token of +either sensation or instinct; but undulated there on the billows, an +unearthly, formless, chance-like apparition of life. + +As with a low sucking sound it slowly disappeared again, Starbuck still +gazing at the agitated waters where it had sunk, with a wild voice +exclaimed—“Almost rather had I seen Moby Dick and fought him, than to +have seen thee, thou white ghost!” + +“What was it, Sir?” said Flask. + +“The great live squid, which, they say, few whale-ships ever beheld, +and returned to their ports to tell of it.” + +But Ahab said nothing; turning his boat, he sailed back to the vessel; +the rest as silently following. + +Whatever superstitions the sperm whalemen in general have connected +with the sight of this object, certain it is, that a glimpse of it +being so very unusual, that circumstance has gone far to invest it with +portentousness. So rarely is it beheld, that though one and all of them +declare it to be the largest animated thing in the ocean, yet very few +of them have any but the most vague ideas concerning its true nature +and form; notwithstanding, they believe it to furnish to the sperm +whale his only food. For though other species of whales find their food +above water, and may be seen by man in the act of feeding, the +spermaceti whale obtains his whole food in unknown zones below the +surface; and only by inference is it that any one can tell of what, +precisely, that food consists. At times, when closely pursued, he will +disgorge what are supposed to be the detached arms of the squid; some +of them thus exhibited exceeding twenty and thirty feet in length. They +fancy that the monster to which these arms belonged ordinarily clings +by them to the bed of the ocean; and that the sperm whale, unlike other +species, is supplied with teeth in order to attack and tear it. + +There seems some ground to imagine that the great Kraken of Bishop +Pontoppodan may ultimately resolve itself into Squid. The manner in +which the Bishop describes it, as alternately rising and sinking, with +some other particulars he narrates, in all this the two correspond. But +much abatement is necessary with respect to the incredible bulk he +assigns it. + +By some naturalists who have vaguely heard rumors of the mysterious +creature, here spoken of, it is included among the class of +cuttle-fish, to which, indeed, in certain external respects it would +seem to belong, but only as the Anak of the tribe. + + +CHAPTER 60. The Line. + +With reference to the whaling scene shortly to be described, as well as +for the better understanding of all similar scenes elsewhere presented, +I have here to speak of the magical, sometimes horrible whale-line. + +The line originally used in the fishery was of the best hemp, slightly +vapored with tar, not impregnated with it, as in the case of ordinary +ropes; for while tar, as ordinarily used, makes the hemp more pliable +to the rope-maker, and also renders the rope itself more convenient to +the sailor for common ship use; yet, not only would the ordinary +quantity too much stiffen the whale-line for the close coiling to which +it must be subjected; but as most seamen are beginning to learn, tar in +general by no means adds to the rope’s durability or strength, however +much it may give it compactness and gloss. + +Of late years the Manilla rope has in the American fishery almost +entirely superseded hemp as a material for whale-lines; for, though not +so durable as hemp, it is stronger, and far more soft and elastic; and +I will add (since there is an æsthetics in all things), is much more +handsome and becoming to the boat, than hemp. Hemp is a dusky, dark +fellow, a sort of Indian; but Manilla is as a golden-haired Circassian +to behold. + +The whale-line is only two-thirds of an inch in thickness. At first +sight, you would not think it so strong as it really is. By experiment +its one and fifty yarns will each suspend a weight of one hundred and +twenty pounds; so that the whole rope will bear a strain nearly equal +to three tons. In length, the common sperm whale-line measures +something over two hundred fathoms. Towards the stern of the boat it is +spirally coiled away in the tub, not like the worm-pipe of a still +though, but so as to form one round, cheese-shaped mass of densely +bedded “sheaves,” or layers of concentric spiralizations, without any +hollow but the “heart,” or minute vertical tube formed at the axis of +the cheese. As the least tangle or kink in the coiling would, in +running out, infallibly take somebody’s arm, leg, or entire body off, +the utmost precaution is used in stowing the line in its tub. Some +harpooneers will consume almost an entire morning in this business, +carrying the line high aloft and then reeving it downwards through a +block towards the tub, so as in the act of coiling to free it from all +possible wrinkles and twists. + +In the English boats two tubs are used instead of one; the same line +being continuously coiled in both tubs. There is some advantage in +this; because these twin-tubs being so small they fit more readily into +the boat, and do not strain it so much; whereas, the American tub, +nearly three feet in diameter and of proportionate depth, makes a +rather bulky freight for a craft whose planks are but one half-inch in +thickness; for the bottom of the whale-boat is like critical ice, which +will bear up a considerable distributed weight, but not very much of a +concentrated one. When the painted canvas cover is clapped on the +American line-tub, the boat looks as if it were pulling off with a +prodigious great wedding-cake to present to the whales. + +Both ends of the line are exposed; the lower end terminating in an +eye-splice or loop coming up from the bottom against the side of the +tub, and hanging over its edge completely disengaged from everything. +This arrangement of the lower end is necessary on two accounts. First: +In order to facilitate the fastening to it of an additional line from a +neighboring boat, in case the stricken whale should sound so deep as to +threaten to carry off the entire line originally attached to the +harpoon. In these instances, the whale of course is shifted like a mug +of ale, as it were, from the one boat to the other; though the first +boat always hovers at hand to assist its consort. Second: This +arrangement is indispensable for common safety’s sake; for were the +lower end of the line in any way attached to the boat, and were the +whale then to run the line out to the end almost in a single, smoking +minute as he sometimes does, he would not stop there, for the doomed +boat would infallibly be dragged down after him into the profundity of +the sea; and in that case no town-crier would ever find her again. + +Before lowering the boat for the chase, the upper end of the line is +taken aft from the tub, and passing round the loggerhead there, is +again carried forward the entire length of the boat, resting crosswise +upon the loom or handle of every man’s oar, so that it jogs against his +wrist in rowing; and also passing between the men, as they alternately +sit at the opposite gunwales, to the leaded chocks or grooves in the +extreme pointed prow of the boat, where a wooden pin or skewer the size +of a common quill, prevents it from slipping out. From the chocks it +hangs in a slight festoon over the bows, and is then passed inside the +boat again; and some ten or twenty fathoms (called box-line) being +coiled upon the box in the bows, it continues its way to the gunwale +still a little further aft, and is then attached to the short-warp—the +rope which is immediately connected with the harpoon; but previous to +that connexion, the short-warp goes through sundry mystifications too +tedious to detail. + +Thus the whale-line folds the whole boat in its complicated coils, +twisting and writhing around it in almost every direction. All the +oarsmen are involved in its perilous contortions; so that to the timid +eye of the landsman, they seem as Indian jugglers, with the deadliest +snakes sportively festooning their limbs. Nor can any son of mortal +woman, for the first time, seat himself amid those hempen intricacies, +and while straining his utmost at the oar, bethink him that at any +unknown instant the harpoon may be darted, and all these horrible +contortions be put in play like ringed lightnings; he cannot be thus +circumstanced without a shudder that makes the very marrow in his bones +to quiver in him like a shaken jelly. Yet habit—strange thing! what +cannot habit accomplish?—Gayer sallies, more merry mirth, better jokes, +and brighter repartees, you never heard over your mahogany, than you +will hear over the half-inch white cedar of the whale-boat, when thus +hung in hangman’s nooses; and, like the six burghers of Calais before +King Edward, the six men composing the crew pull into the jaws of +death, with a halter around every neck, as you may say. + +Perhaps a very little thought will now enable you to account for those +repeated whaling disasters—some few of which are casually chronicled—of +this man or that man being taken out of the boat by the line, and lost. +For, when the line is darting out, to be seated then in the boat, is +like being seated in the midst of the manifold whizzings of a +steam-engine in full play, when every flying beam, and shaft, and +wheel, is grazing you. It is worse; for you cannot sit motionless in +the heart of these perils, because the boat is rocking like a cradle, +and you are pitched one way and the other, without the slightest +warning; and only by a certain self-adjusting buoyancy and +simultaneousness of volition and action, can you escape being made a +Mazeppa of, and run away with where the all-seeing sun himself could +never pierce you out. + +Again: as the profound calm which only apparently precedes and +prophesies of the storm, is perhaps more awful than the storm itself; +for, indeed, the calm is but the wrapper and envelope of the storm; and +contains it in itself, as the seemingly harmless rifle holds the fatal +powder, and the ball, and the explosion; so the graceful repose of the +line, as it silently serpentines about the oarsmen before being brought +into actual play—this is a thing which carries more of true terror than +any other aspect of this dangerous affair. But why say more? All men +live enveloped in whale-lines. All are born with halters round their +necks; but it is only when caught in the swift, sudden turn of death, +that mortals realize the silent, subtle, ever-present perils of life. +And if you be a philosopher, though seated in the whale-boat, you would +not at heart feel one whit more of terror, than though seated before +your evening fire with a poker, and not a harpoon, by your side. + + +CHAPTER 61. Stubb Kills a Whale. + +If to Starbuck the apparition of the Squid was a thing of portents, to +Queequeg it was quite a different object. + +“When you see him ’quid,” said the savage, honing his harpoon in the +bow of his hoisted boat, “then you quick see him ’parm whale.” + +The next day was exceedingly still and sultry, and with nothing special +to engage them, the Pequod’s crew could hardly resist the spell of +sleep induced by such a vacant sea. For this part of the Indian Ocean +through which we then were voyaging is not what whalemen call a lively +ground; that is, it affords fewer glimpses of porpoises, dolphins, +flying-fish, and other vivacious denizens of more stirring waters, than +those off the Rio de la Plata, or the in-shore ground off Peru. + +It was my turn to stand at the foremast-head; and with my shoulders +leaning against the slackened royal shrouds, to and fro I idly swayed +in what seemed an enchanted air. No resolution could withstand it; in +that dreamy mood losing all consciousness, at last my soul went out of +my body; though my body still continued to sway as a pendulum will, +long after the power which first moved it is withdrawn. + +Ere forgetfulness altogether came over me, I had noticed that the +seamen at the main and mizzen-mast-heads were already drowsy. So that +at last all three of us lifelessly swung from the spars, and for every +swing that we made there was a nod from below from the slumbering +helmsman. The waves, too, nodded their indolent crests; and across the +wide trance of the sea, east nodded to west, and the sun over all. + +Suddenly bubbles seemed bursting beneath my closed eyes; like vices my +hands grasped the shrouds; some invisible, gracious agency preserved +me; with a shock I came back to life. And lo! close under our lee, not +forty fathoms off, a gigantic Sperm Whale lay rolling in the water like +the capsized hull of a frigate, his broad, glossy back, of an Ethiopian +hue, glistening in the sun’s rays like a mirror. But lazily undulating +in the trough of the sea, and ever and anon tranquilly spouting his +vapory jet, the whale looked like a portly burgher smoking his pipe of +a warm afternoon. But that pipe, poor whale, was thy last. As if struck +by some enchanter’s wand, the sleepy ship and every sleeper in it all +at once started into wakefulness; and more than a score of voices from +all parts of the vessel, simultaneously with the three notes from +aloft, shouted forth the accustomed cry, as the great fish slowly and +regularly spouted the sparkling brine into the air. + +“Clear away the boats! Luff!” cried Ahab. And obeying his own order, he +dashed the helm down before the helmsman could handle the spokes. + +The sudden exclamations of the crew must have alarmed the whale; and +ere the boats were down, majestically turning, he swam away to the +leeward, but with such a steady tranquillity, and making so few ripples +as he swam, that thinking after all he might not as yet be alarmed, +Ahab gave orders that not an oar should be used, and no man must speak +but in whispers. So seated like Ontario Indians on the gunwales of the +boats, we swiftly but silently paddled along; the calm not admitting of +the noiseless sails being set. Presently, as we thus glided in chase, +the monster perpendicularly flitted his tail forty feet into the air, +and then sank out of sight like a tower swallowed up. + +“There go flukes!” was the cry, an announcement immediately followed by +Stubb’s producing his match and igniting his pipe, for now a respite +was granted. After the full interval of his sounding had elapsed, the +whale rose again, and being now in advance of the smoker’s boat, and +much nearer to it than to any of the others, Stubb counted upon the +honor of the capture. It was obvious, now, that the whale had at length +become aware of his pursuers. All silence of cautiousness was therefore +no longer of use. Paddles were dropped, and oars came loudly into play. +And still puffing at his pipe, Stubb cheered on his crew to the +assault. + +Yes, a mighty change had come over the fish. All alive to his jeopardy, +he was going “head out”; that part obliquely projecting from the mad +yeast which he brewed.* + +*It will be seen in some other place of what a very light substance the +entire interior of the sperm whale’s enormous head consists. Though +apparently the most massive, it is by far the most buoyant part about +him. So that with ease he elevates it in the air, and invariably does +so when going at his utmost speed. Besides, such is the breadth of the +upper part of the front of his head, and such the tapering cut-water +formation of the lower part, that by obliquely elevating his head, he +thereby may be said to transform himself from a bluff-bowed sluggish +galliot into a sharppointed New York pilot-boat. + +“Start her, start her, my men! Don’t hurry yourselves; take plenty of +time—but start her; start her like thunder-claps, that’s all,” cried +Stubb, spluttering out the smoke as he spoke. “Start her, now; give ’em +the long and strong stroke, Tashtego. Start her, Tash, my boy—start +her, all; but keep cool, keep cool—cucumbers is the word—easy, +easy—only start her like grim death and grinning devils, and raise the +buried dead perpendicular out of their graves, boys—that’s all. Start +her!” + +“Woo-hoo! Wa-hee!” screamed the Gay-Header in reply, raising some old +war-whoop to the skies; as every oarsman in the strained boat +involuntarily bounced forward with the one tremendous leading stroke +which the eager Indian gave. + +But his wild screams were answered by others quite as wild. “Kee-hee! +Kee-hee!” yelled Daggoo, straining forwards and backwards on his seat, +like a pacing tiger in his cage. + +“Ka-la! Koo-loo!” howled Queequeg, as if smacking his lips over a +mouthful of Grenadier’s steak. And thus with oars and yells the keels +cut the sea. Meanwhile, Stubb retaining his place in the van, still +encouraged his men to the onset, all the while puffing the smoke from +his mouth. Like desperadoes they tugged and they strained, till the +welcome cry was heard—“Stand up, Tashtego!—give it to him!” The harpoon +was hurled. “Stern all!” The oarsmen backed water; the same moment +something went hot and hissing along every one of their wrists. It was +the magical line. An instant before, Stubb had swiftly caught two +additional turns with it round the loggerhead, whence, by reason of its +increased rapid circlings, a hempen blue smoke now jetted up and +mingled with the steady fumes from his pipe. As the line passed round +and round the loggerhead; so also, just before reaching that point, it +blisteringly passed through and through both of Stubb’s hands, from +which the hand-cloths, or squares of quilted canvas sometimes worn at +these times, had accidentally dropped. It was like holding an enemy’s +sharp two-edged sword by the blade, and that enemy all the time +striving to wrest it out of your clutch. + +“Wet the line! wet the line!” cried Stubb to the tub oarsman (him +seated by the tub) who, snatching off his hat, dashed sea-water into +it.* More turns were taken, so that the line began holding its place. +The boat now flew through the boiling water like a shark all fins. +Stubb and Tashtego here changed places—stem for stern—a staggering +business truly in that rocking commotion. + +*Partly to show the indispensableness of this act, it may here be +stated, that, in the old Dutch fishery, a mop was used to dash the +running line with water; in many other ships, a wooden piggin, or +bailer, is set apart for that purpose. Your hat, however, is the most +convenient. + +From the vibrating line extending the entire length of the upper part +of the boat, and from its now being more tight than a harpstring, you +would have thought the craft had two keels—one cleaving the water, the +other the air—as the boat churned on through both opposing elements at +once. A continual cascade played at the bows; a ceaseless whirling eddy +in her wake; and, at the slightest motion from within, even but of a +little finger, the vibrating, cracking craft canted over her spasmodic +gunwale into the sea. Thus they rushed; each man with might and main +clinging to his seat, to prevent being tossed to the foam; and the tall +form of Tashtego at the steering oar crouching almost double, in order +to bring down his centre of gravity. Whole Atlantics and Pacifics +seemed passed as they shot on their way, till at length the whale +somewhat slackened his flight. + +“Haul in—haul in!” cried Stubb to the bowsman! and, facing round +towards the whale, all hands began pulling the boat up to him, while +yet the boat was being towed on. Soon ranging up by his flank, Stubb, +firmly planting his knee in the clumsy cleat, darted dart after dart +into the flying fish; at the word of command, the boat alternately +sterning out of the way of the whale’s horrible wallow, and then +ranging up for another fling. + +The red tide now poured from all sides of the monster like brooks down +a hill. His tormented body rolled not in brine but in blood, which +bubbled and seethed for furlongs behind in their wake. The slanting sun +playing upon this crimson pond in the sea, sent back its reflection +into every face, so that they all glowed to each other like red men. +And all the while, jet after jet of white smoke was agonizingly shot +from the spiracle of the whale, and vehement puff after puff from the +mouth of the excited headsman; as at every dart, hauling in upon his +crooked lance (by the line attached to it), Stubb straightened it again +and again, by a few rapid blows against the gunwale, then again and +again sent it into the whale. + +“Pull up—pull up!” he now cried to the bowsman, as the waning whale +relaxed in his wrath. “Pull up!—close to!” and the boat ranged along +the fish’s flank. When reaching far over the bow, Stubb slowly churned +his long sharp lance into the fish, and kept it there, carefully +churning and churning, as if cautiously seeking to feel after some gold +watch that the whale might have swallowed, and which he was fearful of +breaking ere he could hook it out. But that gold watch he sought was +the innermost life of the fish. And now it is struck; for, starting +from his trance into that unspeakable thing called his “flurry,” the +monster horribly wallowed in his blood, overwrapped himself in +impenetrable, mad, boiling spray, so that the imperilled craft, +instantly dropping astern, had much ado blindly to struggle out from +that phrensied twilight into the clear air of the day. + +And now abating in his flurry, the whale once more rolled out into +view; surging from side to side; spasmodically dilating and contracting +his spout-hole, with sharp, cracking, agonized respirations. At last, +gush after gush of clotted red gore, as if it had been the purple lees +of red wine, shot into the frighted air; and falling back again, ran +dripping down his motionless flanks into the sea. His heart had burst! + +“He’s dead, Mr. Stubb,” said Daggoo. + +“Yes; both pipes smoked out!” and withdrawing his own from his mouth, +Stubb scattered the dead ashes over the water; and, for a moment, stood +thoughtfully eyeing the vast corpse he had made. + + +CHAPTER 62. The Dart. + +A word concerning an incident in the last chapter. + +According to the invariable usage of the fishery, the whale-boat pushes +off from the ship, with the headsman or whale-killer as temporary +steersman, and the harpooneer or whale-fastener pulling the foremost +oar, the one known as the harpooneer-oar. Now it needs a strong, +nervous arm to strike the first iron into the fish; for often, in what +is called a long dart, the heavy implement has to be flung to the +distance of twenty or thirty feet. But however prolonged and exhausting +the chase, the harpooneer is expected to pull his oar meanwhile to the +uttermost; indeed, he is expected to set an example of superhuman +activity to the rest, not only by incredible rowing, but by repeated +loud and intrepid exclamations; and what it is to keep shouting at the +top of one’s compass, while all the other muscles are strained and half +started—what that is none know but those who have tried it. For one, I +cannot bawl very heartily and work very recklessly at one and the same +time. In this straining, bawling state, then, with his back to the +fish, all at once the exhausted harpooneer hears the exciting +cry—“Stand up, and give it to him!” He now has to drop and secure his +oar, turn round on his centre half way, seize his harpoon from the +crotch, and with what little strength may remain, he essays to pitch it +somehow into the whale. No wonder, taking the whole fleet of whalemen +in a body, that out of fifty fair chances for a dart, not five are +successful; no wonder that so many hapless harpooneers are madly cursed +and disrated; no wonder that some of them actually burst their +blood-vessels in the boat; no wonder that some sperm whalemen are +absent four years with four barrels; no wonder that to many ship +owners, whaling is but a losing concern; for it is the harpooneer that +makes the voyage, and if you take the breath out of his body how can +you expect to find it there when most wanted! + +Again, if the dart be successful, then at the second critical instant, +that is, when the whale starts to run, the boatheader and harpooneer +likewise start to running fore and aft, to the imminent jeopardy of +themselves and every one else. It is then they change places; and the +headsman, the chief officer of the little craft, takes his proper +station in the bows of the boat. + +Now, I care not who maintains the contrary, but all this is both +foolish and unnecessary. The headsman should stay in the bows from +first to last; he should both dart the harpoon and the lance, and no +rowing whatever should be expected of him, except under circumstances +obvious to any fisherman. I know that this would sometimes involve a +slight loss of speed in the chase; but long experience in various +whalemen of more than one nation has convinced me that in the vast +majority of failures in the fishery, it has not by any means been so +much the speed of the whale as the before described exhaustion of the +harpooneer that has caused them. + +To insure the greatest efficiency in the dart, the harpooneers of this +world must start to their feet from out of idleness, and not from out +of toil. + + +CHAPTER 63. The Crotch. + +Out of the trunk, the branches grow; out of them, the twigs. So, in +productive subjects, grow the chapters. + +The crotch alluded to on a previous page deserves independent mention. +It is a notched stick of a peculiar form, some two feet in length, +which is perpendicularly inserted into the starboard gunwale near the +bow, for the purpose of furnishing a rest for the wooden extremity of +the harpoon, whose other naked, barbed end slopingly projects from the +prow. Thereby the weapon is instantly at hand to its hurler, who +snatches it up as readily from its rest as a backwoodsman swings his +rifle from the wall. It is customary to have two harpoons reposing in +the crotch, respectively called the first and second irons. + +But these two harpoons, each by its own cord, are both connected with +the line; the object being this: to dart them both, if possible, one +instantly after the other into the same whale; so that if, in the +coming drag, one should draw out, the other may still retain a hold. It +is a doubling of the chances. But it very often happens that owing to +the instantaneous, violent, convulsive running of the whale upon +receiving the first iron, it becomes impossible for the harpooneer, +however lightning-like in his movements, to pitch the second iron into +him. Nevertheless, as the second iron is already connected with the +line, and the line is running, hence that weapon must, at all events, +be anticipatingly tossed out of the boat, somehow and somewhere; else +the most terrible jeopardy would involve all hands. Tumbled into the +water, it accordingly is in such cases; the spare coils of box line +(mentioned in a preceding chapter) making this feat, in most instances, +prudently practicable. But this critical act is not always unattended +with the saddest and most fatal casualties. + +Furthermore: you must know that when the second iron is thrown +overboard, it thenceforth becomes a dangling, sharp-edged terror, +skittishly curvetting about both boat and whale, entangling the lines, +or cutting them, and making a prodigious sensation in all directions. +Nor, in general, is it possible to secure it again until the whale is +fairly captured and a corpse. + +Consider, now, how it must be in the case of four boats all engaging +one unusually strong, active, and knowing whale; when owing to these +qualities in him, as well as to the thousand concurring accidents of +such an audacious enterprise, eight or ten loose second irons may be +simultaneously dangling about him. For, of course, each boat is +supplied with several harpoons to bend on to the line should the first +one be ineffectually darted without recovery. All these particulars are +faithfully narrated here, as they will not fail to elucidate several +most important, however intricate passages, in scenes hereafter to be +painted. + + +CHAPTER 64. Stubb’s Supper. + +Stubb’s whale had been killed some distance from the ship. It was a +calm; so, forming a tandem of three boats, we commenced the slow +business of towing the trophy to the Pequod. And now, as we eighteen +men with our thirty-six arms, and one hundred and eighty thumbs and +fingers, slowly toiled hour after hour upon that inert, sluggish corpse +in the sea; and it seemed hardly to budge at all, except at long +intervals; good evidence was hereby furnished of the enormousness of +the mass we moved. For, upon the great canal of Hang-Ho, or whatever +they call it, in China, four or five laborers on the foot-path will +draw a bulky freighted junk at the rate of a mile an hour; but this +grand argosy we towed heavily forged along, as if laden with pig-lead +in bulk. + +Darkness came on; but three lights up and down in the Pequod’s +main-rigging dimly guided our way; till drawing nearer we saw Ahab +dropping one of several more lanterns over the bulwarks. Vacantly +eyeing the heaving whale for a moment, he issued the usual orders for +securing it for the night, and then handing his lantern to a seaman, +went his way into the cabin, and did not come forward again until +morning. + +Though, in overseeing the pursuit of this whale, Captain Ahab had +evinced his customary activity, to call it so; yet now that the +creature was dead, some vague dissatisfaction, or impatience, or +despair, seemed working in him; as if the sight of that dead body +reminded him that Moby Dick was yet to be slain; and though a thousand +other whales were brought to his ship, all that would not one jot +advance his grand, monomaniac object. Very soon you would have thought +from the sound on the Pequod’s decks, that all hands were preparing to +cast anchor in the deep; for heavy chains are being dragged along the +deck, and thrust rattling out of the port-holes. But by those clanking +links, the vast corpse itself, not the ship, is to be moored. Tied by +the head to the stern, and by the tail to the bows, the whale now lies +with its black hull close to the vessel’s and seen through the darkness +of the night, which obscured the spars and rigging aloft, the two—ship +and whale, seemed yoked together like colossal bullocks, whereof one +reclines while the other remains standing.* + +*A little item may as well be related here. The strongest and most +reliable hold which the ship has upon the whale when moored alongside, +is by the flukes or tail; and as from its greater density that part is +relatively heavier than any other (excepting the side-fins), its +flexibility even in death, causes it to sink low beneath the surface; +so that with the hand you cannot get at it from the boat, in order to +put the chain round it. But this difficulty is ingeniously overcome: a +small, strong line is prepared with a wooden float at its outer end, +and a weight in its middle, while the other end is secured to the ship. +By adroit management the wooden float is made to rise on the other side +of the mass, so that now having girdled the whale, the chain is readily +made to follow suit; and being slipped along the body, is at last +locked fast round the smallest part of the tail, at the point of +junction with its broad flukes or lobes. + +If moody Ahab was now all quiescence, at least so far as could be known +on deck, Stubb, his second mate, flushed with conquest, betrayed an +unusual but still good-natured excitement. Such an unwonted bustle was +he in that the staid Starbuck, his official superior, quietly resigned +to him for the time the sole management of affairs. One small, helping +cause of all this liveliness in Stubb, was soon made strangely +manifest. Stubb was a high liver; he was somewhat intemperately fond of +the whale as a flavorish thing to his palate. + +“A steak, a steak, ere I sleep! You, Daggoo! overboard you go, and cut +me one from his small!” + +Here be it known, that though these wild fishermen do not, as a general +thing, and according to the great military maxim, make the enemy defray +the current expenses of the war (at least before realizing the proceeds +of the voyage), yet now and then you find some of these Nantucketers +who have a genuine relish for that particular part of the Sperm Whale +designated by Stubb; comprising the tapering extremity of the body. + +About midnight that steak was cut and cooked; and lighted by two +lanterns of sperm oil, Stubb stoutly stood up to his spermaceti supper +at the capstan-head, as if that capstan were a sideboard. Nor was Stubb +the only banqueter on whale’s flesh that night. Mingling their +mumblings with his own mastications, thousands on thousands of sharks, +swarming round the dead leviathan, smackingly feasted on its fatness. +The few sleepers below in their bunks were often startled by the sharp +slapping of their tails against the hull, within a few inches of the +sleepers’ hearts. Peering over the side you could just see them (as +before you heard them) wallowing in the sullen, black waters, and +turning over on their backs as they scooped out huge globular pieces of +the whale of the bigness of a human head. This particular feat of the +shark seems all but miraculous. How at such an apparently unassailable +surface, they contrive to gouge out such symmetrical mouthfuls, remains +a part of the universal problem of all things. The mark they thus leave +on the whale, may best be likened to the hollow made by a carpenter in +countersinking for a screw. + +Though amid all the smoking horror and diabolism of a sea-fight, sharks +will be seen longingly gazing up to the ship’s decks, like hungry dogs +round a table where red meat is being carved, ready to bolt down every +killed man that is tossed to them; and though, while the valiant +butchers over the deck-table are thus cannibally carving each other’s +live meat with carving-knives all gilded and tasselled, the sharks, +also, with their jewel-hilted mouths, are quarrelsomely carving away +under the table at the dead meat; and though, were you to turn the +whole affair upside down, it would still be pretty much the same thing, +that is to say, a shocking sharkish business enough for all parties; +and though sharks also are the invariable outriders of all slave ships +crossing the Atlantic, systematically trotting alongside, to be handy +in case a parcel is to be carried anywhere, or a dead slave to be +decently buried; and though one or two other like instances might be +set down, touching the set terms, places, and occasions, when sharks do +most socially congregate, and most hilariously feast; yet is there no +conceivable time or occasion when you will find them in such countless +numbers, and in gayer or more jovial spirits, than around a dead sperm +whale, moored by night to a whaleship at sea. If you have never seen +that sight, then suspend your decision about the propriety of +devil-worship, and the expediency of conciliating the devil. + +But, as yet, Stubb heeded not the mumblings of the banquet that was +going on so nigh him, no more than the sharks heeded the smacking of +his own epicurean lips. + +“Cook, cook!—where’s that old Fleece?” he cried at length, widening his +legs still further, as if to form a more secure base for his supper; +and, at the same time darting his fork into the dish, as if stabbing +with his lance; “cook, you cook!—sail this way, cook!” + +The old black, not in any very high glee at having been previously +roused from his warm hammock at a most unseasonable hour, came +shambling along from his galley, for, like many old blacks, there was +something the matter with his knee-pans, which he did not keep well +scoured like his other pans; this old Fleece, as they called him, came +shuffling and limping along, assisting his step with his tongs, which, +after a clumsy fashion, were made of straightened iron hoops; this old +Ebony floundered along, and in obedience to the word of command, came +to a dead stop on the opposite side of Stubb’s sideboard; when, with +both hands folded before him, and resting on his two-legged cane, he +bowed his arched back still further over, at the same time sideways +inclining his head, so as to bring his best ear into play. + +“Cook,” said Stubb, rapidly lifting a rather reddish morsel to his +mouth, “don’t you think this steak is rather overdone? You’ve been +beating this steak too much, cook; it’s too tender. Don’t I always say +that to be good, a whale-steak must be tough? There are those sharks +now over the side, don’t you see they prefer it tough and rare? What a +shindy they are kicking up! Cook, go and talk to ’em; tell ’em they are +welcome to help themselves civilly, and in moderation, but they must +keep quiet. Blast me, if I can hear my own voice. Away, cook, and +deliver my message. Here, take this lantern,” snatching one from his +sideboard; “now then, go and preach to ’em!” + +Sullenly taking the offered lantern, old Fleece limped across the deck +to the bulwarks; and then, with one hand dropping his light low over +the sea, so as to get a good view of his congregation, with the other +hand he solemnly flourished his tongs, and leaning far over the side in +a mumbling voice began addressing the sharks, while Stubb, softly +crawling behind, overheard all that was said. + +“Fellow-critters: I’se ordered here to say dat you must stop dat dam +noise dare. You hear? Stop dat dam smackin’ ob de lip! Massa Stubb say +dat you can fill your dam bellies up to de hatchings, but by Gor! you +must stop dat dam racket!” + +“Cook,” here interposed Stubb, accompanying the word with a sudden slap +on the shoulder,—“Cook! why, damn your eyes, you mustn’t swear that way +when you’re preaching. That’s no way to convert sinners, cook!” + +“Who dat? Den preach to him yourself,” sullenly turning to go. + +“No, cook; go on, go on.” + +“Well, den, Belubed fellow-critters:”— + +“Right!” exclaimed Stubb, approvingly, “coax ’em to it; try that,” and +Fleece continued. + +“Do you is all sharks, and by natur wery woracious, yet I zay to you, +fellow-critters, dat dat woraciousness—’top dat dam slappin’ ob de +tail! How you tink to hear, spose you keep up such a dam slappin’ and +bitin’ dare?” + +“Cook,” cried Stubb, collaring him, “I won’t have that swearing. Talk +to ’em gentlemanly.” + +Once more the sermon proceeded. + +“Your woraciousness, fellow-critters, I don’t blame ye so much for; dat +is natur, and can’t be helped; but to gobern dat wicked natur, dat is +de pint. You is sharks, sartin; but if you gobern de shark in you, why +den you be angel; for all angel is not’ing more dan de shark well +goberned. Now, look here, bred’ren, just try wonst to be cibil, a +helping yourselbs from dat whale. Don’t be tearin’ de blubber out your +neighbour’s mout, I say. Is not one shark dood right as toder to dat +whale? And, by Gor, none on you has de right to dat whale; dat whale +belong to some one else. I know some o’ you has berry brig mout, +brigger dan oders; but den de brig mouts sometimes has de small +bellies; so dat de brigness of de mout is not to swaller wid, but to +bit off de blubber for de small fry ob sharks, dat can’t get into de +scrouge to help demselves.” + +“Well done, old Fleece!” cried Stubb, “that’s Christianity; go on.” + +“No use goin’ on; de dam willains will keep a scougin’ and slappin’ +each oder, Massa Stubb; dey don’t hear one word; no use a-preachin’ to +such dam g’uttons as you call ’em, till dare bellies is full, and dare +bellies is bottomless; and when dey do get ’em full, dey wont hear you +den; for den dey sink in de sea, go fast to sleep on de coral, and +can’t hear not’ing at all, no more, for eber and eber.” + +“Upon my soul, I am about of the same opinion; so give the benediction, +Fleece, and I’ll away to my supper.” + +Upon this, Fleece, holding both hands over the fishy mob, raised his +shrill voice, and cried— + +“Cussed fellow-critters! Kick up de damndest row as ever you can; fill +your dam’ bellies ’till dey bust—and den die.” + +“Now, cook,” said Stubb, resuming his supper at the capstan; “stand +just where you stood before, there, over against me, and pay particular +attention.” + +“All dention,” said Fleece, again stooping over upon his tongs in the +desired position. + +“Well,” said Stubb, helping himself freely meanwhile; “I shall now go +back to the subject of this steak. In the first place, how old are you, +cook?” + +“What dat do wid de ’teak,” said the old black, testily. + +“Silence! How old are you, cook?” + +“’Bout ninety, dey say,” he gloomily muttered. + +“And you have lived in this world hard upon one hundred years, cook, +and don’t know yet how to cook a whale-steak?” rapidly bolting another +mouthful at the last word, so that morsel seemed a continuation of the +question. “Where were you born, cook?” + +“’Hind de hatchway, in ferry-boat, goin’ ober de Roanoke.” + +“Born in a ferry-boat! That’s queer, too. But I want to know what +country you were born in, cook!” + +“Didn’t I say de Roanoke country?” he cried sharply. + +“No, you didn’t, cook; but I’ll tell you what I’m coming to, cook. You +must go home and be born over again; you don’t know how to cook a +whale-steak yet.” + +“Bress my soul, if I cook noder one,” he growled, angrily, turning +round to depart. + +“Come back, cook;—here, hand me those tongs;—now take that bit of steak +there, and tell me if you think that steak cooked as it should be? Take +it, I say”—holding the tongs towards him—“take it, and taste it.” + +Faintly smacking his withered lips over it for a moment, the old negro +muttered, “Best cooked ’teak I eber taste; joosy, berry joosy.” + +“Cook,” said Stubb, squaring himself once more; “do you belong to the +church?” + +“Passed one once in Cape-Down,” said the old man sullenly. + +“And you have once in your life passed a holy church in Cape-Town, +where you doubtless overheard a holy parson addressing his hearers as +his beloved fellow-creatures, have you, cook! And yet you come here, +and tell me such a dreadful lie as you did just now, eh?” said Stubb. +“Where do you expect to go to, cook?” + +“Go to bed berry soon,” he mumbled, half-turning as he spoke. + +“Avast! heave to! I mean when you die, cook. It’s an awful question. +Now what’s your answer?” + +“When dis old brack man dies,” said the negro slowly, changing his +whole air and demeanor, “he hisself won’t go nowhere; but some bressed +angel will come and fetch him.” + +“Fetch him? How? In a coach and four, as they fetched Elijah? And fetch +him where?” + +“Up dere,” said Fleece, holding his tongs straight over his head, and +keeping it there very solemnly. + +“So, then, you expect to go up into our main-top, do you, cook, when +you are dead? But don’t you know the higher you climb, the colder it +gets? Main-top, eh?” + +“Didn’t say dat t’all,” said Fleece, again in the sulks. + +“You said up there, didn’t you? and now look yourself, and see where +your tongs are pointing. But, perhaps you expect to get into heaven by +crawling through the lubber’s hole, cook; but, no, no, cook, you don’t +get there, except you go the regular way, round by the rigging. It’s a +ticklish business, but must be done, or else it’s no go. But none of us +are in heaven yet. Drop your tongs, cook, and hear my orders. Do ye +hear? Hold your hat in one hand, and clap t’other a’top of your heart, +when I’m giving my orders, cook. What! that your heart, there?—that’s +your gizzard! Aloft! aloft!—that’s it—now you have it. Hold it there +now, and pay attention.” + +“All ’dention,” said the old black, with both hands placed as desired, +vainly wriggling his grizzled head, as if to get both ears in front at +one and the same time. + +“Well then, cook, you see this whale-steak of yours was so very bad, +that I have put it out of sight as soon as possible; you see that, +don’t you? Well, for the future, when you cook another whale-steak for +my private table here, the capstan, I’ll tell you what to do so as not +to spoil it by overdoing. Hold the steak in one hand, and show a live +coal to it with the other; that done, dish it; d’ye hear? And now +to-morrow, cook, when we are cutting in the fish, be sure you stand by +to get the tips of his fins; have them put in pickle. As for the ends +of the flukes, have them soused, cook. There, now ye may go.” + +But Fleece had hardly got three paces off, when he was recalled. + +“Cook, give me cutlets for supper to-morrow night in the mid-watch. +D’ye hear? away you sail, then.—Halloa! stop! make a bow before you +go.—Avast heaving again! Whale-balls for breakfast—don’t forget.” + +“Wish, by gor! whale eat him, ’stead of him eat whale. I’m bressed if +he ain’t more of shark dan Massa Shark hisself,” muttered the old man, +limping away; with which sage ejaculation he went to his hammock. + + +CHAPTER 65. The Whale as a Dish. + +That mortal man should feed upon the creature that feeds his lamp, and, +like Stubb, eat him by his own light, as you may say; this seems so +outlandish a thing that one must needs go a little into the history and +philosophy of it. + +It is upon record, that three centuries ago the tongue of the Right +Whale was esteemed a great delicacy in France, and commanded large +prices there. Also, that in Henry VIIIth’s time, a certain cook of the +court obtained a handsome reward for inventing an admirable sauce to be +eaten with barbacued porpoises, which, you remember, are a species of +whale. Porpoises, indeed, are to this day considered fine eating. The +meat is made into balls about the size of billiard balls, and being +well seasoned and spiced might be taken for turtle-balls or veal balls. +The old monks of Dunfermline were very fond of them. They had a great +porpoise grant from the crown. + +The fact is, that among his hunters at least, the whale would by all +hands be considered a noble dish, were there not so much of him; but +when you come to sit down before a meat-pie nearly one hundred feet +long, it takes away your appetite. Only the most unprejudiced of men +like Stubb, nowadays partake of cooked whales; but the Esquimaux are +not so fastidious. We all know how they live upon whales, and have rare +old vintages of prime old train oil. Zogranda, one of their most famous +doctors, recommends strips of blubber for infants, as being exceedingly +juicy and nourishing. And this reminds me that certain Englishmen, who +long ago were accidentally left in Greenland by a whaling vessel—that +these men actually lived for several months on the mouldy scraps of +whales which had been left ashore after trying out the blubber. Among +the Dutch whalemen these scraps are called “fritters”; which, indeed, +they greatly resemble, being brown and crisp, and smelling something +like old Amsterdam housewives’ dough-nuts or oly-cooks, when fresh. +They have such an eatable look that the most self-denying stranger can +hardly keep his hands off. + +But what further depreciates the whale as a civilized dish, is his +exceeding richness. He is the great prize ox of the sea, too fat to be +delicately good. Look at his hump, which would be as fine eating as the +buffalo’s (which is esteemed a rare dish), were it not such a solid +pyramid of fat. But the spermaceti itself, how bland and creamy that +is; like the transparent, half-jellied, white meat of a cocoanut in the +third month of its growth, yet far too rich to supply a substitute for +butter. Nevertheless, many whalemen have a method of absorbing it into +some other substance, and then partaking of it. In the long try watches +of the night it is a common thing for the seamen to dip their +ship-biscuit into the huge oil-pots and let them fry there awhile. Many +a good supper have I thus made. + +In the case of a small Sperm Whale the brains are accounted a fine +dish. The casket of the skull is broken into with an axe, and the two +plump, whitish lobes being withdrawn (precisely resembling two large +puddings), they are then mixed with flour, and cooked into a most +delectable mess, in flavor somewhat resembling calves’ head, which is +quite a dish among some epicures; and every one knows that some young +bucks among the epicures, by continually dining upon calves’ brains, by +and by get to have a little brains of their own, so as to be able to +tell a calf’s head from their own heads; which, indeed, requires +uncommon discrimination. And that is the reason why a young buck with +an intelligent looking calf’s head before him, is somehow one of the +saddest sights you can see. The head looks a sort of reproachfully at +him, with an “Et tu Brute!” expression. + +It is not, perhaps, entirely because the whale is so excessively +unctuous that landsmen seem to regard the eating of him with +abhorrence; that appears to result, in some way, from the consideration +before mentioned: _i.e._ that a man should eat a newly murdered thing +of the sea, and eat it too by its own light. But no doubt the first man +that ever murdered an ox was regarded as a murderer; perhaps he was +hung; and if he had been put on his trial by oxen, he certainly would +have been; and he certainly deserved it if any murderer does. Go to the +meat-market of a Saturday night and see the crowds of live bipeds +staring up at the long rows of dead quadrupeds. Does not that sight +take a tooth out of the cannibal’s jaw? Cannibals? who is not a +cannibal? I tell you it will be more tolerable for the Fejee that +salted down a lean missionary in his cellar against a coming famine; it +will be more tolerable for that provident Fejee, I say, in the day of +judgment, than for thee, civilized and enlightened gourmand, who +nailest geese to the ground and feastest on their bloated livers in thy +paté-de-foie-gras. + +But Stubb, he eats the whale by its own light, does he? and that is +adding insult to injury, is it? Look at your knife-handle, there, my +civilized and enlightened gourmand dining off that roast beef, what is +that handle made of?—what but the bones of the brother of the very ox +you are eating? And what do you pick your teeth with, after devouring +that fat goose? With a feather of the same fowl. And with what quill +did the Secretary of the Society for the Suppression of Cruelty to +Ganders formally indite his circulars? It is only within the last month +or two that that society passed a resolution to patronize nothing but +steel pens. + + +CHAPTER 66. The Shark Massacre. + +When in the Southern Fishery, a captured Sperm Whale, after long and +weary toil, is brought alongside late at night, it is not, as a general +thing at least, customary to proceed at once to the business of cutting +him in. For that business is an exceedingly laborious one; is not very +soon completed; and requires all hands to set about it. Therefore, the +common usage is to take in all sail; lash the helm a’lee; and then send +every one below to his hammock till daylight, with the reservation +that, until that time, anchor-watches shall be kept; that is, two and +two for an hour, each couple, the crew in rotation shall mount the deck +to see that all goes well. + +But sometimes, especially upon the Line in the Pacific, this plan will +not answer at all; because such incalculable hosts of sharks gather +round the moored carcase, that were he left so for six hours, say, on a +stretch, little more than the skeleton would be visible by morning. In +most other parts of the ocean, however, where these fish do not so +largely abound, their wondrous voracity can be at times considerably +diminished, by vigorously stirring them up with sharp whaling-spades, a +procedure notwithstanding, which, in some instances, only seems to +tickle them into still greater activity. But it was not thus in the +present case with the Pequod’s sharks; though, to be sure, any man +unaccustomed to such sights, to have looked over her side that night, +would have almost thought the whole round sea was one huge cheese, and +those sharks the maggots in it. + +Nevertheless, upon Stubb setting the anchor-watch after his supper was +concluded; and when, accordingly, Queequeg and a forecastle seaman came +on deck, no small excitement was created among the sharks; for +immediately suspending the cutting stages over the side, and lowering +three lanterns, so that they cast long gleams of light over the turbid +sea, these two mariners, darting their long whaling-spades, kept up an +incessant murdering of the sharks,* by striking the keen steel deep +into their skulls, seemingly their only vital part. But in the foamy +confusion of their mixed and struggling hosts, the marksmen could not +always hit their mark; and this brought about new revelations of the +incredible ferocity of the foe. They viciously snapped, not only at +each other’s disembowelments, but like flexible bows, bent round, and +bit their own; till those entrails seemed swallowed over and over again +by the same mouth, to be oppositely voided by the gaping wound. Nor was +this all. It was unsafe to meddle with the corpses and ghosts of these +creatures. A sort of generic or Pantheistic vitality seemed to lurk in +their very joints and bones, after what might be called the individual +life had departed. Killed and hoisted on deck for the sake of his skin, +one of these sharks almost took poor Queequeg’s hand off, when he tried +to shut down the dead lid of his murderous jaw. + +*The whaling-spade used for cutting-in is made of the very best steel; +is about the bigness of a man’s spread hand; and in general shape, +corresponds to the garden implement after which it is named; only its +sides are perfectly flat, and its upper end considerably narrower than +the lower. This weapon is always kept as sharp as possible; and when +being used is occasionally honed, just like a razor. In its socket, a +stiff pole, from twenty to thirty feet long, is inserted for a handle. + +“Queequeg no care what god made him shark,” said the savage, +agonizingly lifting his hand up and down; “wedder Fejee god or +Nantucket god; but de god wat made shark must be one dam Ingin.” + + +CHAPTER 67. Cutting In. + +It was a Saturday night, and such a Sabbath as followed! Ex officio +professors of Sabbath breaking are all whalemen. The ivory Pequod was +turned into what seemed a shamble; every sailor a butcher. You would +have thought we were offering up ten thousand red oxen to the sea gods. + +In the first place, the enormous cutting tackles, among other ponderous +things comprising a cluster of blocks generally painted green, and +which no single man can possibly lift—this vast bunch of grapes was +swayed up to the main-top and firmly lashed to the lower mast-head, the +strongest point anywhere above a ship’s deck. The end of the +hawser-like rope winding through these intricacies, was then conducted +to the windlass, and the huge lower block of the tackles was swung over +the whale; to this block the great blubber hook, weighing some one +hundred pounds, was attached. And now suspended in stages over the +side, Starbuck and Stubb, the mates, armed with their long spades, +began cutting a hole in the body for the insertion of the hook just +above the nearest of the two side-fins. This done, a broad, +semicircular line is cut round the hole, the hook is inserted, and the +main body of the crew striking up a wild chorus, now commence heaving +in one dense crowd at the windlass. When instantly, the entire ship +careens over on her side; every bolt in her starts like the nail-heads +of an old house in frosty weather; she trembles, quivers, and nods her +frighted mast-heads to the sky. More and more she leans over to the +whale, while every gasping heave of the windlass is answered by a +helping heave from the billows; till at last, a swift, startling snap +is heard; with a great swash the ship rolls upwards and backwards from +the whale, and the triumphant tackle rises into sight dragging after it +the disengaged semicircular end of the first strip of blubber. Now as +the blubber envelopes the whale precisely as the rind does an orange, +so is it stripped off from the body precisely as an orange is sometimes +stripped by spiralizing it. For the strain constantly kept up by the +windlass continually keeps the whale rolling over and over in the +water, and as the blubber in one strip uniformly peels off along the +line called the “scarf,” simultaneously cut by the spades of Starbuck +and Stubb, the mates; and just as fast as it is thus peeled off, and +indeed by that very act itself, it is all the time being hoisted higher +and higher aloft till its upper end grazes the main-top; the men at the +windlass then cease heaving, and for a moment or two the prodigious +blood-dripping mass sways to and fro as if let down from the sky, and +every one present must take good heed to dodge it when it swings, else +it may box his ears and pitch him headlong overboard. + +One of the attending harpooneers now advances with a long, keen weapon +called a boarding-sword, and watching his chance he dexterously slices +out a considerable hole in the lower part of the swaying mass. Into +this hole, the end of the second alternating great tackle is then +hooked so as to retain a hold upon the blubber, in order to prepare for +what follows. Whereupon, this accomplished swordsman, warning all hands +to stand off, once more makes a scientific dash at the mass, and with a +few sidelong, desperate, lunging slicings, severs it completely in +twain; so that while the short lower part is still fast, the long upper +strip, called a blanket-piece, swings clear, and is all ready for +lowering. The heavers forward now resume their song, and while the one +tackle is peeling and hoisting a second strip from the whale, the other +is slowly slackened away, and down goes the first strip through the +main hatchway right beneath, into an unfurnished parlor called the +blubber-room. Into this twilight apartment sundry nimble hands keep +coiling away the long blanket-piece as if it were a great live mass of +plaited serpents. And thus the work proceeds; the two tackles hoisting +and lowering simultaneously; both whale and windlass heaving, the +heavers singing, the blubber-room gentlemen coiling, the mates +scarfing, the ship straining, and all hands swearing occasionally, by +way of assuaging the general friction. + + +CHAPTER 68. The Blanket. + +I have given no small attention to that not unvexed subject, the skin +of the whale. I have had controversies about it with experienced +whalemen afloat, and learned naturalists ashore. My original opinion +remains unchanged; but it is only an opinion. + +The question is, what and where is the skin of the whale? Already you +know what his blubber is. That blubber is something of the consistence +of firm, close-grained beef, but tougher, more elastic and compact, and +ranges from eight or ten to twelve and fifteen inches in thickness. + +Now, however preposterous it may at first seem to talk of any +creature’s skin as being of that sort of consistence and thickness, yet +in point of fact these are no arguments against such a presumption; +because you cannot raise any other dense enveloping layer from the +whale’s body but that same blubber; and the outermost enveloping layer +of any animal, if reasonably dense, what can that be but the skin? +True, from the unmarred dead body of the whale, you may scrape off with +your hand an infinitely thin, transparent substance, somewhat +resembling the thinnest shreds of isinglass, only it is almost as +flexible and soft as satin; that is, previous to being dried, when it +not only contracts and thickens, but becomes rather hard and brittle. I +have several such dried bits, which I use for marks in my whale-books. +It is transparent, as I said before; and being laid upon the printed +page, I have sometimes pleased myself with fancying it exerted a +magnifying influence. At any rate, it is pleasant to read about whales +through their own spectacles, as you may say. But what I am driving at +here is this. That same infinitely thin, isinglass substance, which, I +admit, invests the entire body of the whale, is not so much to be +regarded as the skin of the creature, as the skin of the skin, so to +speak; for it were simply ridiculous to say, that the proper skin of +the tremendous whale is thinner and more tender than the skin of a +new-born child. But no more of this. + +Assuming the blubber to be the skin of the whale; then, when this skin, +as in the case of a very large Sperm Whale, will yield the bulk of one +hundred barrels of oil; and, when it is considered that, in quantity, +or rather weight, that oil, in its expressed state, is only three +fourths, and not the entire substance of the coat; some idea may hence +be had of the enormousness of that animated mass, a mere part of whose +mere integument yields such a lake of liquid as that. Reckoning ten +barrels to the ton, you have ten tons for the net weight of only three +quarters of the stuff of the whale’s skin. + +In life, the visible surface of the Sperm Whale is not the least among +the many marvels he presents. Almost invariably it is all over +obliquely crossed and re-crossed with numberless straight marks in +thick array, something like those in the finest Italian line +engravings. But these marks do not seem to be impressed upon the +isinglass substance above mentioned, but seem to be seen through it, as +if they were engraved upon the body itself. Nor is this all. In some +instances, to the quick, observant eye, those linear marks, as in a +veritable engraving, but afford the ground for far other delineations. +These are hieroglyphical; that is, if you call those mysterious cyphers +on the walls of pyramids hieroglyphics, then that is the proper word to +use in the present connexion. By my retentive memory of the +hieroglyphics upon one Sperm Whale in particular, I was much struck +with a plate representing the old Indian characters chiselled on the +famous hieroglyphic palisades on the banks of the Upper Mississippi. +Like those mystic rocks, too, the mystic-marked whale remains +undecipherable. This allusion to the Indian rocks reminds me of another +thing. Besides all the other phenomena which the exterior of the Sperm +Whale presents, he not seldom displays the back, and more especially +his flanks, effaced in great part of the regular linear appearance, by +reason of numerous rude scratches, altogether of an irregular, random +aspect. I should say that those New England rocks on the sea-coast, +which Agassiz imagines to bear the marks of violent scraping contact +with vast floating icebergs—I should say, that those rocks must not a +little resemble the Sperm Whale in this particular. It also seems to me +that such scratches in the whale are probably made by hostile contact +with other whales; for I have most remarked them in the large, +full-grown bulls of the species. + +A word or two more concerning this matter of the skin or blubber of the +whale. It has already been said, that it is stript from him in long +pieces, called blanket-pieces. Like most sea-terms, this one is very +happy and significant. For the whale is indeed wrapt up in his blubber +as in a real blanket or counterpane; or, still better, an Indian poncho +slipt over his head, and skirting his extremity. It is by reason of +this cosy blanketing of his body, that the whale is enabled to keep +himself comfortable in all weathers, in all seas, times, and tides. +What would become of a Greenland whale, say, in those shuddering, icy +seas of the North, if unsupplied with his cosy surtout? True, other +fish are found exceedingly brisk in those Hyperborean waters; but +these, be it observed, are your cold-blooded, lungless fish, whose very +bellies are refrigerators; creatures, that warm themselves under the +lee of an iceberg, as a traveller in winter would bask before an inn +fire; whereas, like man, the whale has lungs and warm blood. Freeze his +blood, and he dies. How wonderful is it then—except after +explanation—that this great monster, to whom corporeal warmth is as +indispensable as it is to man; how wonderful that he should be found at +home, immersed to his lips for life in those Arctic waters! where, when +seamen fall overboard, they are sometimes found, months afterwards, +perpendicularly frozen into the hearts of fields of ice, as a fly is +found glued in amber. But more surprising is it to know, as has been +proved by experiment, that the blood of a Polar whale is warmer than +that of a Borneo negro in summer. + +It does seem to me, that herein we see the rare virtue of a strong +individual vitality, and the rare virtue of thick walls, and the rare +virtue of interior spaciousness. Oh, man! admire and model thyself +after the whale! Do thou, too, remain warm among ice. Do thou, too, +live in this world without being of it. Be cool at the equator; keep +thy blood fluid at the Pole. Like the great dome of St. Peter’s, and +like the great whale, retain, O man! in all seasons a temperature of +thine own. + +But how easy and how hopeless to teach these fine things! Of erections, +how few are domed like St. Peter’s! of creatures, how few vast as the +whale! + + +CHAPTER 69. The Funeral. + +“Haul in the chains! Let the carcase go astern!” + +The vast tackles have now done their duty. The peeled white body of the +beheaded whale flashes like a marble sepulchre; though changed in hue, +it has not perceptibly lost anything in bulk. It is still colossal. +Slowly it floats more and more away, the water round it torn and +splashed by the insatiate sharks, and the air above vexed with +rapacious flights of screaming fowls, whose beaks are like so many +insulting poniards in the whale. The vast white headless phantom floats +further and further from the ship, and every rod that it so floats, +what seem square roods of sharks and cubic roods of fowls, augment the +murderous din. For hours and hours from the almost stationary ship that +hideous sight is seen. Beneath the unclouded and mild azure sky, upon +the fair face of the pleasant sea, wafted by the joyous breezes, that +great mass of death floats on and on, till lost in infinite +perspectives. + +There’s a most doleful and most mocking funeral! The sea-vultures all +in pious mourning, the air-sharks all punctiliously in black or +speckled. In life but few of them would have helped the whale, I ween, +if peradventure he had needed it; but upon the banquet of his funeral +they most piously do pounce. Oh, horrible vultureism of earth! from +which not the mightiest whale is free. + +Nor is this the end. Desecrated as the body is, a vengeful ghost +survives and hovers over it to scare. Espied by some timid man-of-war +or blundering discovery-vessel from afar, when the distance obscuring +the swarming fowls, nevertheless still shows the white mass floating in +the sun, and the white spray heaving high against it; straightway the +whale’s unharming corpse, with trembling fingers is set down in the +log—_shoals, rocks, and breakers hereabouts: beware!_ And for years +afterwards, perhaps, ships shun the place; leaping over it as silly +sheep leap over a vacuum, because their leader originally leaped there +when a stick was held. There’s your law of precedents; there’s your +utility of traditions; there’s the story of your obstinate survival of +old beliefs never bottomed on the earth, and now not even hovering in +the air! There’s orthodoxy! + +Thus, while in life the great whale’s body may have been a real terror +to his foes, in his death his ghost becomes a powerless panic to a +world. + +Are you a believer in ghosts, my friend? There are other ghosts than +the Cock-Lane one, and far deeper men than Doctor Johnson who believe +in them. + + +CHAPTER 70. The Sphynx. + +It should not have been omitted that previous to completely stripping +the body of the leviathan, he was beheaded. Now, the beheading of the +Sperm Whale is a scientific anatomical feat, upon which experienced +whale surgeons very much pride themselves: and not without reason. + +Consider that the whale has nothing that can properly be called a neck; +on the contrary, where his head and body seem to join, there, in that +very place, is the thickest part of him. Remember, also, that the +surgeon must operate from above, some eight or ten feet intervening +between him and his subject, and that subject almost hidden in a +discoloured, rolling, and oftentimes tumultuous and bursting sea. Bear +in mind, too, that under these untoward circumstances he has to cut +many feet deep in the flesh; and in that subterraneous manner, without +so much as getting one single peep into the ever-contracting gash thus +made, he must skilfully steer clear of all adjacent, interdicted parts, +and exactly divide the spine at a critical point hard by its insertion +into the skull. Do you not marvel, then, at Stubb’s boast, that he +demanded but ten minutes to behead a sperm whale? + +When first severed, the head is dropped astern and held there by a +cable till the body is stripped. That done, if it belong to a small +whale it is hoisted on deck to be deliberately disposed of. But, with a +full grown leviathan this is impossible; for the sperm whale’s head +embraces nearly one third of his entire bulk, and completely to suspend +such a burden as that, even by the immense tackles of a whaler, this +were as vain a thing as to attempt weighing a Dutch barn in jewellers’ +scales. + +The Pequod’s whale being decapitated and the body stripped, the head +was hoisted against the ship’s side—about half way out of the sea, so +that it might yet in great part be buoyed up by its native element. And +there with the strained craft steeply leaning over to it, by reason of +the enormous downward drag from the lower mast-head, and every yard-arm +on that side projecting like a crane over the waves; there, that +blood-dripping head hung to the Pequod’s waist like the giant +Holofernes’s from the girdle of Judith. + +When this last task was accomplished it was noon, and the seamen went +below to their dinner. Silence reigned over the before tumultuous but +now deserted deck. An intense copper calm, like a universal yellow +lotus, was more and more unfolding its noiseless measureless leaves +upon the sea. + +A short space elapsed, and up into this noiselessness came Ahab alone +from his cabin. Taking a few turns on the quarter-deck, he paused to +gaze over the side, then slowly getting into the main-chains he took +Stubb’s long spade—still remaining there after the whale’s +decapitation—and striking it into the lower part of the half-suspended +mass, placed its other end crutch-wise under one arm, and so stood +leaning over with eyes attentively fixed on this head. + +It was a black and hooded head; and hanging there in the midst of so +intense a calm, it seemed the Sphynx’s in the desert. “Speak, thou vast +and venerable head,” muttered Ahab, “which, though ungarnished with a +beard, yet here and there lookest hoary with mosses; speak, mighty +head, and tell us the secret thing that is in thee. Of all divers, thou +hast dived the deepest. That head upon which the upper sun now gleams, +has moved amid this world’s foundations. Where unrecorded names and +navies rust, and untold hopes and anchors rot; where in her murderous +hold this frigate earth is ballasted with bones of millions of the +drowned; there, in that awful water-land, there was thy most familiar +home. Thou hast been where bell or diver never went; hast slept by many +a sailor’s side, where sleepless mothers would give their lives to lay +them down. Thou saw’st the locked lovers when leaping from their +flaming ship; heart to heart they sank beneath the exulting wave; true +to each other, when heaven seemed false to them. Thou saw’st the +murdered mate when tossed by pirates from the midnight deck; for hours +he fell into the deeper midnight of the insatiate maw; and his +murderers still sailed on unharmed—while swift lightnings shivered the +neighboring ship that would have borne a righteous husband to +outstretched, longing arms. O head! thou hast seen enough to split the +planets and make an infidel of Abraham, and not one syllable is thine!” + +“Sail ho!” cried a triumphant voice from the main-mast-head. + +“Aye? Well, now, that’s cheering,” cried Ahab, suddenly erecting +himself, while whole thunder-clouds swept aside from his brow. “That +lively cry upon this deadly calm might almost convert a better +man.—Where away?” + +“Three points on the starboard bow, sir, and bringing down her breeze +to us! + +“Better and better, man. Would now St. Paul would come along that way, +and to my breezelessness bring his breeze! O Nature, and O soul of man! +how far beyond all utterance are your linked analogies! not the +smallest atom stirs or lives on matter, but has its cunning duplicate +in mind.” + + +CHAPTER 71. The Jeroboam’s Story. + +Hand in hand, ship and breeze blew on; but the breeze came faster than +the ship, and soon the Pequod began to rock. + +By and by, through the glass the stranger’s boats and manned mast-heads +proved her a whale-ship. But as she was so far to windward, and +shooting by, apparently making a passage to some other ground, the +Pequod could not hope to reach her. So the signal was set to see what +response would be made. + +Here be it said, that like the vessels of military marines, the ships +of the American Whale Fleet have each a private signal; all which +signals being collected in a book with the names of the respective +vessels attached, every captain is provided with it. Thereby, the whale +commanders are enabled to recognise each other upon the ocean, even at +considerable distances and with no small facility. + +The Pequod’s signal was at last responded to by the stranger’s setting +her own; which proved the ship to be the Jeroboam of Nantucket. +Squaring her yards, she bore down, ranged abeam under the Pequod’s lee, +and lowered a boat; it soon drew nigh; but, as the side-ladder was +being rigged by Starbuck’s order to accommodate the visiting captain, +the stranger in question waved his hand from his boat’s stern in token +of that proceeding being entirely unnecessary. It turned out that the +Jeroboam had a malignant epidemic on board, and that Mayhew, her +captain, was fearful of infecting the Pequod’s company. For, though +himself and boat’s crew remained untainted, and though his ship was +half a rifle-shot off, and an incorruptible sea and air rolling and +flowing between; yet conscientiously adhering to the timid quarantine +of the land, he peremptorily refused to come into direct contact with +the Pequod. + +But this did by no means prevent all communications. Preserving an +interval of some few yards between itself and the ship, the Jeroboam’s +boat by the occasional use of its oars contrived to keep parallel to +the Pequod, as she heavily forged through the sea (for by this time it +blew very fresh), with her main-topsail aback; though, indeed, at times +by the sudden onset of a large rolling wave, the boat would be pushed +some way ahead; but would be soon skilfully brought to her proper +bearings again. Subject to this, and other the like interruptions now +and then, a conversation was sustained between the two parties; but at +intervals not without still another interruption of a very different +sort. + +Pulling an oar in the Jeroboam’s boat, was a man of a singular +appearance, even in that wild whaling life where individual +notabilities make up all totalities. He was a small, short, youngish +man, sprinkled all over his face with freckles, and wearing redundant +yellow hair. A long-skirted, cabalistically-cut coat of a faded walnut +tinge enveloped him; the overlapping sleeves of which were rolled up on +his wrists. A deep, settled, fanatic delirium was in his eyes. + +So soon as this figure had been first descried, Stubb had +exclaimed—“That’s he! that’s he!—the long-togged scaramouch the +Town-Ho’s company told us of!” Stubb here alluded to a strange story +told of the Jeroboam, and a certain man among her crew, some time +previous when the Pequod spoke the Town-Ho. According to this account +and what was subsequently learned, it seemed that the scaramouch in +question had gained a wonderful ascendency over almost everybody in the +Jeroboam. His story was this: + +He had been originally nurtured among the crazy society of Neskyeuna +Shakers, where he had been a great prophet; in their cracked, secret +meetings having several times descended from heaven by the way of a +trap-door, announcing the speedy opening of the seventh vial, which he +carried in his vest-pocket; but, which, instead of containing +gunpowder, was supposed to be charged with laudanum. A strange, +apostolic whim having seized him, he had left Neskyeuna for Nantucket, +where, with that cunning peculiar to craziness, he assumed a steady, +common-sense exterior, and offered himself as a green-hand candidate +for the Jeroboam’s whaling voyage. They engaged him; but straightway +upon the ship’s getting out of sight of land, his insanity broke out in +a freshet. He announced himself as the archangel Gabriel, and commanded +the captain to jump overboard. He published his manifesto, whereby he +set himself forth as the deliverer of the isles of the sea and +vicar-general of all Oceanica. The unflinching earnestness with which +he declared these things;—the dark, daring play of his sleepless, +excited imagination, and all the preternatural terrors of real +delirium, united to invest this Gabriel in the minds of the majority of +the ignorant crew, with an atmosphere of sacredness. Moreover, they +were afraid of him. As such a man, however, was not of much practical +use in the ship, especially as he refused to work except when he +pleased, the incredulous captain would fain have been rid of him; but +apprised that that individual’s intention was to land him in the first +convenient port, the archangel forthwith opened all his seals and +vials—devoting the ship and all hands to unconditional perdition, in +case this intention was carried out. So strongly did he work upon his +disciples among the crew, that at last in a body they went to the +captain and told him if Gabriel was sent from the ship, not a man of +them would remain. He was therefore forced to relinquish his plan. Nor +would they permit Gabriel to be any way maltreated, say or do what he +would; so that it came to pass that Gabriel had the complete freedom of +the ship. The consequence of all this was, that the archangel cared +little or nothing for the captain and mates; and since the epidemic had +broken out, he carried a higher hand than ever; declaring that the +plague, as he called it, was at his sole command; nor should it be +stayed but according to his good pleasure. The sailors, mostly poor +devils, cringed, and some of them fawned before him; in obedience to +his instructions, sometimes rendering him personal homage, as to a god. +Such things may seem incredible; but, however wondrous, they are true. +Nor is the history of fanatics half so striking in respect to the +measureless self-deception of the fanatic himself, as his measureless +power of deceiving and bedevilling so many others. But it is time to +return to the Pequod. + +“I fear not thy epidemic, man,” said Ahab from the bulwarks, to Captain +Mayhew, who stood in the boat’s stern; “come on board.” + +But now Gabriel started to his feet. + +“Think, think of the fevers, yellow and bilious! Beware of the horrible +plague!” + +“Gabriel! Gabriel!” cried Captain Mayhew; “thou must either—” But that +instant a headlong wave shot the boat far ahead, and its seethings +drowned all speech. + +“Hast thou seen the White Whale?” demanded Ahab, when the boat drifted +back. + +“Think, think of thy whale-boat, stoven and sunk! Beware of the +horrible tail!” + +“I tell thee again, Gabriel, that—” But again the boat tore ahead as if +dragged by fiends. Nothing was said for some moments, while a +succession of riotous waves rolled by, which by one of those occasional +caprices of the seas were tumbling, not heaving it. Meantime, the +hoisted sperm whale’s head jogged about very violently, and Gabriel was +seen eyeing it with rather more apprehensiveness than his archangel +nature seemed to warrant. + +When this interlude was over, Captain Mayhew began a dark story +concerning Moby Dick; not, however, without frequent interruptions from +Gabriel, whenever his name was mentioned, and the crazy sea that seemed +leagued with him. + +It seemed that the Jeroboam had not long left home, when upon speaking +a whale-ship, her people were reliably apprised of the existence of +Moby Dick, and the havoc he had made. Greedily sucking in this +intelligence, Gabriel solemnly warned the captain against attacking the +White Whale, in case the monster should be seen; in his gibbering +insanity, pronouncing the White Whale to be no less a being than the +Shaker God incarnated; the Shakers receiving the Bible. But when, some +year or two afterwards, Moby Dick was fairly sighted from the +mast-heads, Macey, the chief mate, burned with ardour to encounter him; +and the captain himself being not unwilling to let him have the +opportunity, despite all the archangel’s denunciations and +forewarnings, Macey succeeded in persuading five men to man his boat. +With them he pushed off; and, after much weary pulling, and many +perilous, unsuccessful onsets, he at last succeeded in getting one iron +fast. Meantime, Gabriel, ascending to the main-royal mast-head, was +tossing one arm in frantic gestures, and hurling forth prophecies of +speedy doom to the sacrilegious assailants of his divinity. Now, while +Macey, the mate, was standing up in his boat’s bow, and with all the +reckless energy of his tribe was venting his wild exclamations upon the +whale, and essaying to get a fair chance for his poised lance, lo! a +broad white shadow rose from the sea; by its quick, fanning motion, +temporarily taking the breath out of the bodies of the oarsmen. Next +instant, the luckless mate, so full of furious life, was smitten bodily +into the air, and making a long arc in his descent, fell into the sea +at the distance of about fifty yards. Not a chip of the boat was +harmed, nor a hair of any oarsman’s head; but the mate for ever sank. + +It is well to parenthesize here, that of the fatal accidents in the +Sperm-Whale Fishery, this kind is perhaps almost as frequent as any. +Sometimes, nothing is injured but the man who is thus annihilated; +oftener the boat’s bow is knocked off, or the thigh-board, in which the +headsman stands, is torn from its place and accompanies the body. But +strangest of all is the circumstance, that in more instances than one, +when the body has been recovered, not a single mark of violence is +discernible; the man being stark dead. + +The whole calamity, with the falling form of Macey, was plainly +descried from the ship. Raising a piercing shriek—“The vial! the vial!” +Gabriel called off the terror-stricken crew from the further hunting of +the whale. This terrible event clothed the archangel with added +influence; because his credulous disciples believed that he had +specifically fore-announced it, instead of only making a general +prophecy, which any one might have done, and so have chanced to hit one +of many marks in the wide margin allowed. He became a nameless terror +to the ship. + +Mayhew having concluded his narration, Ahab put such questions to him, +that the stranger captain could not forbear inquiring whether he +intended to hunt the White Whale, if opportunity should offer. To which +Ahab answered—“Aye.” Straightway, then, Gabriel once more started to +his feet, glaring upon the old man, and vehemently exclaimed, with +downward pointed finger—“Think, think of the blasphemer—dead, and down +there!—beware of the blasphemer’s end!” + +Ahab stolidly turned aside; then said to Mayhew, “Captain, I have just +bethought me of my letter-bag; there is a letter for one of thy +officers, if I mistake not. Starbuck, look over the bag.” + +Every whale-ship takes out a goodly number of letters for various +ships, whose delivery to the persons to whom they may be addressed, +depends upon the mere chance of encountering them in the four oceans. +Thus, most letters never reach their mark; and many are only received +after attaining an age of two or three years or more. + +Soon Starbuck returned with a letter in his hand. It was sorely +tumbled, damp, and covered with a dull, spotted, green mould, in +consequence of being kept in a dark locker of the cabin. Of such a +letter, Death himself might well have been the post-boy. + +“Can’st not read it?” cried Ahab. “Give it me, man. Aye, aye, it’s but +a dim scrawl;—what’s this?” As he was studying it out, Starbuck took a +long cutting-spade pole, and with his knife slightly split the end, to +insert the letter there, and in that way, hand it to the boat, without +its coming any closer to the ship. + +Meantime, Ahab holding the letter, muttered, “Mr. Har—yes, Mr. Harry—(a +woman’s pinny hand,—the man’s wife, I’ll wager)—Aye—Mr. Harry Macey, +Ship Jeroboam;—why it’s Macey, and he’s dead!” + +“Poor fellow! poor fellow! and from his wife,” sighed Mayhew; “but let +me have it.” + +“Nay, keep it thyself,” cried Gabriel to Ahab; “thou art soon going +that way.” + +“Curses throttle thee!” yelled Ahab. “Captain Mayhew, stand by now to +receive it”; and taking the fatal missive from Starbuck’s hands, he +caught it in the slit of the pole, and reached it over towards the +boat. But as he did so, the oarsmen expectantly desisted from rowing; +the boat drifted a little towards the ship’s stern; so that, as if by +magic, the letter suddenly ranged along with Gabriel’s eager hand. He +clutched it in an instant, seized the boat-knife, and impaling the +letter on it, sent it thus loaded back into the ship. It fell at Ahab’s +feet. Then Gabriel shrieked out to his comrades to give way with their +oars, and in that manner the mutinous boat rapidly shot away from the +Pequod. + +As, after this interlude, the seamen resumed their work upon the jacket +of the whale, many strange things were hinted in reference to this wild +affair. + + +CHAPTER 72. The Monkey-Rope. + +In the tumultuous business of cutting-in and attending to a whale, +there is much running backwards and forwards among the crew. Now hands +are wanted here, and then again hands are wanted there. There is no +staying in any one place; for at one and the same time everything has +to be done everywhere. It is much the same with him who endeavors the +description of the scene. We must now retrace our way a little. It was +mentioned that upon first breaking ground in the whale’s back, the +blubber-hook was inserted into the original hole there cut by the +spades of the mates. But how did so clumsy and weighty a mass as that +same hook get fixed in that hole? It was inserted there by my +particular friend Queequeg, whose duty it was, as harpooneer, to +descend upon the monster’s back for the special purpose referred to. +But in very many cases, circumstances require that the harpooneer shall +remain on the whale till the whole flensing or stripping operation is +concluded. The whale, be it observed, lies almost entirely submerged, +excepting the immediate parts operated upon. So down there, some ten +feet below the level of the deck, the poor harpooneer flounders about, +half on the whale and half in the water, as the vast mass revolves like +a tread-mill beneath him. On the occasion in question, Queequeg figured +in the Highland costume—a shirt and socks—in which to my eyes, at +least, he appeared to uncommon advantage; and no one had a better +chance to observe him, as will presently be seen. + +Being the savage’s bowsman, that is, the person who pulled the bow-oar +in his boat (the second one from forward), it was my cheerful duty to +attend upon him while taking that hard-scrabble scramble upon the dead +whale’s back. You have seen Italian organ-boys holding a dancing-ape by +a long cord. Just so, from the ship’s steep side, did I hold Queequeg +down there in the sea, by what is technically called in the fishery a +monkey-rope, attached to a strong strip of canvas belted round his +waist. + +It was a humorously perilous business for both of us. For, before we +proceed further, it must be said that the monkey-rope was fast at both +ends; fast to Queequeg’s broad canvas belt, and fast to my narrow +leather one. So that for better or for worse, we two, for the time, +were wedded; and should poor Queequeg sink to rise no more, then both +usage and honor demanded, that instead of cutting the cord, it should +drag me down in his wake. So, then, an elongated Siamese ligature +united us. Queequeg was my own inseparable twin brother; nor could I +any way get rid of the dangerous liabilities which the hempen bond +entailed. + +So strongly and metaphysically did I conceive of my situation then, +that while earnestly watching his motions, I seemed distinctly to +perceive that my own individuality was now merged in a joint stock +company of two; that my free will had received a mortal wound; and that +another’s mistake or misfortune might plunge innocent me into unmerited +disaster and death. Therefore, I saw that here was a sort of +interregnum in Providence; for its even-handed equity never could have +so gross an injustice. And yet still further pondering—while I jerked +him now and then from between the whale and ship, which would threaten +to jam him—still further pondering, I say, I saw that this situation of +mine was the precise situation of every mortal that breathes; only, in +most cases, he, one way or other, has this Siamese connexion with a +plurality of other mortals. If your banker breaks, you snap; if your +apothecary by mistake sends you poison in your pills, you die. True, +you may say that, by exceeding caution, you may possibly escape these +and the multitudinous other evil chances of life. But handle Queequeg’s +monkey-rope heedfully as I would, sometimes he jerked it so, that I +came very near sliding overboard. Nor could I possibly forget that, do +what I would, I only had the management of one end of it.* + +*The monkey-rope is found in all whalers; but it was only in the Pequod +that the monkey and his holder were ever tied together. This +improvement upon the original usage was introduced by no less a man +than Stubb, in order to afford the imperilled harpooneer the strongest +possible guarantee for the faithfulness and vigilance of his +monkey-rope holder. + +I have hinted that I would often jerk poor Queequeg from between the +whale and the ship—where he would occasionally fall, from the incessant +rolling and swaying of both. But this was not the only jamming jeopardy +he was exposed to. Unappalled by the massacre made upon them during the +night, the sharks now freshly and more keenly allured by the before +pent blood which began to flow from the carcass—the rabid creatures +swarmed round it like bees in a beehive. + +And right in among those sharks was Queequeg; who often pushed them +aside with his floundering feet. A thing altogether incredible were it +not that attracted by such prey as a dead whale, the otherwise +miscellaneously carnivorous shark will seldom touch a man. + +Nevertheless, it may well be believed that since they have such a +ravenous finger in the pie, it is deemed but wise to look sharp to +them. Accordingly, besides the monkey-rope, with which I now and then +jerked the poor fellow from too close a vicinity to the maw of what +seemed a peculiarly ferocious shark—he was provided with still another +protection. Suspended over the side in one of the stages, Tashtego and +Daggoo continually flourished over his head a couple of keen +whale-spades, wherewith they slaughtered as many sharks as they could +reach. This procedure of theirs, to be sure, was very disinterested and +benevolent of them. They meant Queequeg’s best happiness, I admit; but +in their hasty zeal to befriend him, and from the circumstance that +both he and the sharks were at times half hidden by the blood-muddled +water, those indiscreet spades of theirs would come nearer amputating a +leg than a tail. But poor Queequeg, I suppose, straining and gasping +there with that great iron hook—poor Queequeg, I suppose, only prayed +to his Yojo, and gave up his life into the hands of his gods. + +Well, well, my dear comrade and twin-brother, thought I, as I drew in +and then slacked off the rope to every swell of the sea—what matters +it, after all? Are you not the precious image of each and all of us men +in this whaling world? That unsounded ocean you gasp in, is Life; those +sharks, your foes; those spades, your friends; and what between sharks +and spades you are in a sad pickle and peril, poor lad. + +But courage! there is good cheer in store for you, Queequeg. For now, +as with blue lips and blood-shot eyes the exhausted savage at last +climbs up the chains and stands all dripping and involuntarily +trembling over the side; the steward advances, and with a benevolent, +consolatory glance hands him—what? Some hot Cognac? No! hands him, ye +gods! hands him a cup of tepid ginger and water! + +“Ginger? Do I smell ginger?” suspiciously asked Stubb, coming near. +“Yes, this must be ginger,” peering into the as yet untasted cup. Then +standing as if incredulous for a while, he calmly walked towards the +astonished steward slowly saying, “Ginger? ginger? and will you have +the goodness to tell me, Mr. Dough-Boy, where lies the virtue of +ginger? Ginger! is ginger the sort of fuel you use, Dough-boy, to +kindle a fire in this shivering cannibal? Ginger!—what the devil is +ginger? Sea-coal? firewood?—lucifer matches?—tinder?—gunpowder?—what +the devil is ginger, I say, that you offer this cup to our poor +Queequeg here.” + +“There is some sneaking Temperance Society movement about this +business,” he suddenly added, now approaching Starbuck, who had just +come from forward. “Will you look at that kannakin, sir: smell of it, +if you please.” Then watching the mate’s countenance, he added, “The +steward, Mr. Starbuck, had the face to offer that calomel and jalap to +Queequeg, there, this instant off the whale. Is the steward an +apothecary, sir? and may I ask whether this is the sort of bitters by +which he blows back the life into a half-drowned man?” + +“I trust not,” said Starbuck, “it is poor stuff enough.” + +“Aye, aye, steward,” cried Stubb, “we’ll teach you to drug a +harpooneer; none of your apothecary’s medicine here; you want to poison +us, do ye? You have got out insurances on our lives and want to murder +us all, and pocket the proceeds, do ye?” + +“It was not me,” cried Dough-Boy, “it was Aunt Charity that brought the +ginger on board; and bade me never give the harpooneers any spirits, +but only this ginger-jub—so she called it.” + +“Ginger-jub! you gingerly rascal! take that! and run along with ye to +the lockers, and get something better. I hope I do no wrong, Mr. +Starbuck. It is the captain’s orders—grog for the harpooneer on a +whale.” + +“Enough,” replied Starbuck, “only don’t hit him again, but—” + +“Oh, I never hurt when I hit, except when I hit a whale or something of +that sort; and this fellow’s a weazel. What were you about saying, +sir?” + +“Only this: go down with him, and get what thou wantest thyself.” + +When Stubb reappeared, he came with a dark flask in one hand, and a +sort of tea-caddy in the other. The first contained strong spirits, and +was handed to Queequeg; the second was Aunt Charity’s gift, and that +was freely given to the waves. + + +CHAPTER 73. Stubb and Flask kill a Right Whale; and Then Have a Talk +over Him. + +It must be borne in mind that all this time we have a Sperm Whale’s +prodigious head hanging to the Pequod’s side. But we must let it +continue hanging there a while till we can get a chance to attend to +it. For the present other matters press, and the best we can do now for +the head, is to pray heaven the tackles may hold. + +Now, during the past night and forenoon, the Pequod had gradually +drifted into a sea, which, by its occasional patches of yellow brit, +gave unusual tokens of the vicinity of Right Whales, a species of the +Leviathan that but few supposed to be at this particular time lurking +anywhere near. And though all hands commonly disdained the capture of +those inferior creatures; and though the Pequod was not commissioned to +cruise for them at all, and though she had passed numbers of them near +the Crozetts without lowering a boat; yet now that a Sperm Whale had +been brought alongside and beheaded, to the surprise of all, the +announcement was made that a Right Whale should be captured that day, +if opportunity offered. + +Nor was this long wanting. Tall spouts were seen to leeward; and two +boats, Stubb’s and Flask’s, were detached in pursuit. Pulling further +and further away, they at last became almost invisible to the men at +the mast-head. But suddenly in the distance, they saw a great heap of +tumultuous white water, and soon after news came from aloft that one or +both the boats must be fast. An interval passed and the boats were in +plain sight, in the act of being dragged right towards the ship by the +towing whale. So close did the monster come to the hull, that at first +it seemed as if he meant it malice; but suddenly going down in a +maelstrom, within three rods of the planks, he wholly disappeared from +view, as if diving under the keel. “Cut, cut!” was the cry from the +ship to the boats, which, for one instant, seemed on the point of being +brought with a deadly dash against the vessel’s side. But having plenty +of line yet in the tubs, and the whale not sounding very rapidly, they +paid out abundance of rope, and at the same time pulled with all their +might so as to get ahead of the ship. For a few minutes the struggle +was intensely critical; for while they still slacked out the tightened +line in one direction, and still plied their oars in another, the +contending strain threatened to take them under. But it was only a few +feet advance they sought to gain. And they stuck to it till they did +gain it; when instantly, a swift tremor was felt running like lightning +along the keel, as the strained line, scraping beneath the ship, +suddenly rose to view under her bows, snapping and quivering; and so +flinging off its drippings, that the drops fell like bits of broken +glass on the water, while the whale beyond also rose to sight, and once +more the boats were free to fly. But the fagged whale abated his speed, +and blindly altering his course, went round the stern of the ship +towing the two boats after him, so that they performed a complete +circuit. + +Meantime, they hauled more and more upon their lines, till close +flanking him on both sides, Stubb answered Flask with lance for lance; +and thus round and round the Pequod the battle went, while the +multitudes of sharks that had before swum round the Sperm Whale’s body, +rushed to the fresh blood that was spilled, thirstily drinking at every +new gash, as the eager Israelites did at the new bursting fountains +that poured from the smitten rock. + +At last his spout grew thick, and with a frightful roll and vomit, he +turned upon his back a corpse. + +While the two headsmen were engaged in making fast cords to his flukes, +and in other ways getting the mass in readiness for towing, some +conversation ensued between them. + +“I wonder what the old man wants with this lump of foul lard,” said +Stubb, not without some disgust at the thought of having to do with so +ignoble a leviathan. + +“Wants with it?” said Flask, coiling some spare line in the boat’s bow, +“did you never hear that the ship which but once has a Sperm Whale’s +head hoisted on her starboard side, and at the same time a Right +Whale’s on the larboard; did you never hear, Stubb, that that ship can +never afterwards capsize?” + +“Why not? + +“I don’t know, but I heard that gamboge ghost of a Fedallah saying so, +and he seems to know all about ships’ charms. But I sometimes think +he’ll charm the ship to no good at last. I don’t half like that chap, +Stubb. Did you ever notice how that tusk of his is a sort of carved +into a snake’s head, Stubb?” + +“Sink him! I never look at him at all; but if ever I get a chance of a +dark night, and he standing hard by the bulwarks, and no one by; look +down there, Flask”—pointing into the sea with a peculiar motion of both +hands—“Aye, will I! Flask, I take that Fedallah to be the devil in +disguise. Do you believe that cock and bull story about his having been +stowed away on board ship? He’s the devil, I say. The reason why you +don’t see his tail, is because he tucks it up out of sight; he carries +it coiled away in his pocket, I guess. Blast him! now that I think of +it, he’s always wanting oakum to stuff into the toes of his boots.” + +“He sleeps in his boots, don’t he? He hasn’t got any hammock; but I’ve +seen him lay of nights in a coil of rigging.” + +“No doubt, and it’s because of his cursed tail; he coils it down, do ye +see, in the eye of the rigging.” + +“What’s the old man have so much to do with him for?” + +“Striking up a swap or a bargain, I suppose.” + +“Bargain?—about what?” + +“Why, do ye see, the old man is hard bent after that White Whale, and +the devil there is trying to come round him, and get him to swap away +his silver watch, or his soul, or something of that sort, and then +he’ll surrender Moby Dick.” + +“Pooh! Stubb, you are skylarking; how can Fedallah do that?” + +“I don’t know, Flask, but the devil is a curious chap, and a wicked +one, I tell ye. Why, they say as how he went a sauntering into the old +flag-ship once, switching his tail about devilish easy and +gentlemanlike, and inquiring if the old governor was at home. Well, he +was at home, and asked the devil what he wanted. The devil, switching +his hoofs, up and says, ‘I want John.’ ‘What for?’ says the old +governor. ‘What business is that of yours,’ says the devil, getting +mad,—‘I want to use him.’ ‘Take him,’ says the governor—and by the +Lord, Flask, if the devil didn’t give John the Asiatic cholera before +he got through with him, I’ll eat this whale in one mouthful. But look +sharp—ain’t you all ready there? Well, then, pull ahead, and let’s get +the whale alongside.” + +“I think I remember some such story as you were telling,” said Flask, +when at last the two boats were slowly advancing with their burden +towards the ship, “but I can’t remember where.” + +“Three Spaniards? Adventures of those three bloody-minded soldadoes? +Did ye read it there, Flask? I guess ye did?” + +“No: never saw such a book; heard of it, though. But now, tell me, +Stubb, do you suppose that that devil you was speaking of just now, was +the same you say is now on board the Pequod?” + +“Am I the same man that helped kill this whale? Doesn’t the devil live +for ever; who ever heard that the devil was dead? Did you ever see any +parson a wearing mourning for the devil? And if the devil has a +latch-key to get into the admiral’s cabin, don’t you suppose he can +crawl into a porthole? Tell me that, Mr. Flask?” + +“How old do you suppose Fedallah is, Stubb?” + +“Do you see that mainmast there?” pointing to the ship; “well, that’s +the figure one; now take all the hoops in the Pequod’s hold, and string +along in a row with that mast, for oughts, do you see; well, that +wouldn’t begin to be Fedallah’s age. Nor all the coopers in creation +couldn’t show hoops enough to make oughts enough.” + +“But see here, Stubb, I thought you a little boasted just now, that you +meant to give Fedallah a sea-toss, if you got a good chance. Now, if +he’s so old as all those hoops of yours come to, and if he is going to +live for ever, what good will it do to pitch him overboard—tell me +that? + +“Give him a good ducking, anyhow.” + +“But he’d crawl back.” + +“Duck him again; and keep ducking him.” + +“Suppose he should take it into his head to duck you, though—yes, and +drown you—what then?” + +“I should like to see him try it; I’d give him such a pair of black +eyes that he wouldn’t dare to show his face in the admiral’s cabin +again for a long while, let alone down in the orlop there, where he +lives, and hereabouts on the upper decks where he sneaks so much. Damn +the devil, Flask; so you suppose I’m afraid of the devil? Who’s afraid +of him, except the old governor who daresn’t catch him and put him in +double-darbies, as he deserves, but lets him go about kidnapping +people; aye, and signed a bond with him, that all the people the devil +kidnapped, he’d roast for him? There’s a governor!” + +“Do you suppose Fedallah wants to kidnap Captain Ahab?” + +“Do I suppose it? You’ll know it before long, Flask. But I am going now +to keep a sharp look-out on him; and if I see anything very suspicious +going on, I’ll just take him by the nape of his neck, and say—Look +here, Beelzebub, you don’t do it; and if he makes any fuss, by the Lord +I’ll make a grab into his pocket for his tail, take it to the capstan, +and give him such a wrenching and heaving, that his tail will come +short off at the stump—do you see; and then, I rather guess when he +finds himself docked in that queer fashion, he’ll sneak off without the +poor satisfaction of feeling his tail between his legs.” + +“And what will you do with the tail, Stubb?” + +“Do with it? Sell it for an ox whip when we get home;—what else?” + +“Now, do you mean what you say, and have been saying all along, Stubb?” + +“Mean or not mean, here we are at the ship.” + +The boats were here hailed, to tow the whale on the larboard side, +where fluke chains and other necessaries were already prepared for +securing him. + +“Didn’t I tell you so?” said Flask; “yes, you’ll soon see this right +whale’s head hoisted up opposite that parmacetti’s.” + +In good time, Flask’s saying proved true. As before, the Pequod steeply +leaned over towards the sperm whale’s head, now, by the counterpoise of +both heads, she regained her even keel; though sorely strained, you may +well believe. So, when on one side you hoist in Locke’s head, you go +over that way; but now, on the other side, hoist in Kant’s and you come +back again; but in very poor plight. Thus, some minds for ever keep +trimming boat. Oh, ye foolish! throw all these thunder-heads overboard, +and then you will float light and right. + +In disposing of the body of a right whale, when brought alongside the +ship, the same preliminary proceedings commonly take place as in the +case of a sperm whale; only, in the latter instance, the head is cut +off whole, but in the former the lips and tongue are separately removed +and hoisted on deck, with all the well known black bone attached to +what is called the crown-piece. But nothing like this, in the present +case, had been done. The carcases of both whales had dropped astern; +and the head-laden ship not a little resembled a mule carrying a pair +of overburdening panniers. + +Meantime, Fedallah was calmly eyeing the right whale’s head, and ever +and anon glancing from the deep wrinkles there to the lines in his own +hand. And Ahab chanced so to stand, that the Parsee occupied his +shadow; while, if the Parsee’s shadow was there at all it seemed only +to blend with, and lengthen Ahab’s. As the crew toiled on, Laplandish +speculations were bandied among them, concerning all these passing +things. + + +CHAPTER 74. The Sperm Whale’s Head—Contrasted View. + +Here, now, are two great whales, laying their heads together; let us +join them, and lay together our own. + +Of the grand order of folio leviathans, the Sperm Whale and the Right +Whale are by far the most noteworthy. They are the only whales +regularly hunted by man. To the Nantucketer, they present the two +extremes of all the known varieties of the whale. As the external +difference between them is mainly observable in their heads; and as a +head of each is this moment hanging from the Pequod’s side; and as we +may freely go from one to the other, by merely stepping across the +deck:—where, I should like to know, will you obtain a better chance to +study practical cetology than here? + +In the first place, you are struck by the general contrast between +these heads. Both are massive enough in all conscience; but there is a +certain mathematical symmetry in the Sperm Whale’s which the Right +Whale’s sadly lacks. There is more character in the Sperm Whale’s head. +As you behold it, you involuntarily yield the immense superiority to +him, in point of pervading dignity. In the present instance, too, this +dignity is heightened by the pepper and salt colour of his head at the +summit, giving token of advanced age and large experience. In short, he +is what the fishermen technically call a “grey-headed whale.” + +Let us now note what is least dissimilar in these heads—namely, the two +most important organs, the eye and the ear. Far back on the side of the +head, and low down, near the angle of either whale’s jaw, if you +narrowly search, you will at last see a lashless eye, which you would +fancy to be a young colt’s eye; so out of all proportion is it to the +magnitude of the head. + +Now, from this peculiar sideway position of the whale’s eyes, it is +plain that he can never see an object which is exactly ahead, no more +than he can one exactly astern. In a word, the position of the whale’s +eyes corresponds to that of a man’s ears; and you may fancy, for +yourself, how it would fare with you, did you sideways survey objects +through your ears. You would find that you could only command some +thirty degrees of vision in advance of the straight side-line of sight; +and about thirty more behind it. If your bitterest foe were walking +straight towards you, with dagger uplifted in broad day, you would not +be able to see him, any more than if he were stealing upon you from +behind. In a word, you would have two backs, so to speak; but, at the +same time, also, two fronts (side fronts): for what is it that makes +the front of a man—what, indeed, but his eyes? + +Moreover, while in most other animals that I can now think of, the eyes +are so planted as imperceptibly to blend their visual power, so as to +produce one picture and not two to the brain; the peculiar position of +the whale’s eyes, effectually divided as they are by many cubic feet of +solid head, which towers between them like a great mountain separating +two lakes in valleys; this, of course, must wholly separate the +impressions which each independent organ imparts. The whale, therefore, +must see one distinct picture on this side, and another distinct +picture on that side; while all between must be profound darkness and +nothingness to him. Man may, in effect, be said to look out on the +world from a sentry-box with two joined sashes for his window. But with +the whale, these two sashes are separately inserted, making two +distinct windows, but sadly impairing the view. This peculiarity of the +whale’s eyes is a thing always to be borne in mind in the fishery; and +to be remembered by the reader in some subsequent scenes. + +A curious and most puzzling question might be started concerning this +visual matter as touching the Leviathan. But I must be content with a +hint. So long as a man’s eyes are open in the light, the act of seeing +is involuntary; that is, he cannot then help mechanically seeing +whatever objects are before him. Nevertheless, any one’s experience +will teach him, that though he can take in an undiscriminating sweep of +things at one glance, it is quite impossible for him, attentively, and +completely, to examine any two things—however large or however small—at +one and the same instant of time; never mind if they lie side by side +and touch each other. But if you now come to separate these two +objects, and surround each by a circle of profound darkness; then, in +order to see one of them, in such a manner as to bring your mind to +bear on it, the other will be utterly excluded from your contemporary +consciousness. How is it, then, with the whale? True, both his eyes, in +themselves, must simultaneously act; but is his brain so much more +comprehensive, combining, and subtle than man’s, that he can at the +same moment of time attentively examine two distinct prospects, one on +one side of him, and the other in an exactly opposite direction? If he +can, then is it as marvellous a thing in him, as if a man were able +simultaneously to go through the demonstrations of two distinct +problems in Euclid. Nor, strictly investigated, is there any +incongruity in this comparison. + +It may be but an idle whim, but it has always seemed to me, that the +extraordinary vacillations of movement displayed by some whales when +beset by three or four boats; the timidity and liability to queer +frights, so common to such whales; I think that all this indirectly +proceeds from the helpless perplexity of volition, in which their +divided and diametrically opposite powers of vision must involve them. + +But the ear of the whale is full as curious as the eye. If you are an +entire stranger to their race, you might hunt over these two heads for +hours, and never discover that organ. The ear has no external leaf +whatever; and into the hole itself you can hardly insert a quill, so +wondrously minute is it. It is lodged a little behind the eye. With +respect to their ears, this important difference is to be observed +between the sperm whale and the right. While the ear of the former has +an external opening, that of the latter is entirely and evenly covered +over with a membrane, so as to be quite imperceptible from without. + +Is it not curious, that so vast a being as the whale should see the +world through so small an eye, and hear the thunder through an ear +which is smaller than a hare’s? But if his eyes were broad as the lens +of Herschel’s great telescope; and his ears capacious as the porches of +cathedrals; would that make him any longer of sight, or sharper of +hearing? Not at all.—Why then do you try to “enlarge” your mind? +Subtilize it. + +Let us now with whatever levers and steam-engines we have at hand, cant +over the sperm whale’s head, that it may lie bottom up; then, ascending +by a ladder to the summit, have a peep down the mouth; and were it not +that the body is now completely separated from it, with a lantern we +might descend into the great Kentucky Mammoth Cave of his stomach. But +let us hold on here by this tooth, and look about us where we are. What +a really beautiful and chaste-looking mouth! from floor to ceiling, +lined, or rather papered with a glistening white membrane, glossy as +bridal satins. + +But come out now, and look at this portentous lower jaw, which seems +like the long narrow lid of an immense snuff-box, with the hinge at one +end, instead of one side. If you pry it up, so as to get it overhead, +and expose its rows of teeth, it seems a terrific portcullis; and such, +alas! it proves to many a poor wight in the fishery, upon whom these +spikes fall with impaling force. But far more terrible is it to behold, +when fathoms down in the sea, you see some sulky whale, floating there +suspended, with his prodigious jaw, some fifteen feet long, hanging +straight down at right-angles with his body, for all the world like a +ship’s jib-boom. This whale is not dead; he is only dispirited; out of +sorts, perhaps; hypochondriac; and so supine, that the hinges of his +jaw have relaxed, leaving him there in that ungainly sort of plight, a +reproach to all his tribe, who must, no doubt, imprecate lock-jaws upon +him. + +In most cases this lower jaw—being easily unhinged by a practised +artist—is disengaged and hoisted on deck for the purpose of extracting +the ivory teeth, and furnishing a supply of that hard white whalebone +with which the fishermen fashion all sorts of curious articles, +including canes, umbrella-stocks, and handles to riding-whips. + +With a long, weary hoist the jaw is dragged on board, as if it were an +anchor; and when the proper time comes—some few days after the other +work—Queequeg, Daggoo, and Tashtego, being all accomplished dentists, +are set to drawing teeth. With a keen cutting-spade, Queequeg lances +the gums; then the jaw is lashed down to ringbolts, and a tackle being +rigged from aloft, they drag out these teeth, as Michigan oxen drag +stumps of old oaks out of wild wood lands. There are generally +forty-two teeth in all; in old whales, much worn down, but undecayed; +nor filled after our artificial fashion. The jaw is afterwards sawn +into slabs, and piled away like joists for building houses. + + +CHAPTER 75. The Right Whale’s Head—Contrasted View. + +Crossing the deck, let us now have a good long look at the Right +Whale’s head. + +As in general shape the noble Sperm Whale’s head may be compared to a +Roman war-chariot (especially in front, where it is so broadly +rounded); so, at a broad view, the Right Whale’s head bears a rather +inelegant resemblance to a gigantic galliot-toed shoe. Two hundred +years ago an old Dutch voyager likened its shape to that of a +shoemaker’s last. And in this same last or shoe, that old woman of the +nursery tale, with the swarming brood, might very comfortably be +lodged, she and all her progeny. + +But as you come nearer to this great head it begins to assume different +aspects, according to your point of view. If you stand on its summit +and look at these two F-shaped spoutholes, you would take the whole +head for an enormous bass-viol, and these spiracles, the apertures in +its sounding-board. Then, again, if you fix your eye upon this strange, +crested, comb-like incrustation on the top of the mass—this green, +barnacled thing, which the Greenlanders call the “crown,” and the +Southern fishers the “bonnet” of the Right Whale; fixing your eyes +solely on this, you would take the head for the trunk of some huge oak, +with a bird’s nest in its crotch. At any rate, when you watch those +live crabs that nestle here on this bonnet, such an idea will be almost +sure to occur to you; unless, indeed, your fancy has been fixed by the +technical term “crown” also bestowed upon it; in which case you will +take great interest in thinking how this mighty monster is actually a +diademed king of the sea, whose green crown has been put together for +him in this marvellous manner. But if this whale be a king, he is a +very sulky looking fellow to grace a diadem. Look at that hanging lower +lip! what a huge sulk and pout is there! a sulk and pout, by +carpenter’s measurement, about twenty feet long and five feet deep; a +sulk and pout that will yield you some 500 gallons of oil and more. + +A great pity, now, that this unfortunate whale should be hare-lipped. +The fissure is about a foot across. Probably the mother during an +important interval was sailing down the Peruvian coast, when +earthquakes caused the beach to gape. Over this lip, as over a slippery +threshold, we now slide into the mouth. Upon my word were I at +Mackinaw, I should take this to be the inside of an Indian wigwam. Good +Lord! is this the road that Jonah went? The roof is about twelve feet +high, and runs to a pretty sharp angle, as if there were a regular +ridge-pole there; while these ribbed, arched, hairy sides, present us +with those wondrous, half vertical, scimetar-shaped slats of whalebone, +say three hundred on a side, which depending from the upper part of the +head or crown bone, form those Venetian blinds which have elsewhere +been cursorily mentioned. The edges of these bones are fringed with +hairy fibres, through which the Right Whale strains the water, and in +whose intricacies he retains the small fish, when openmouthed he goes +through the seas of brit in feeding time. In the central blinds of +bone, as they stand in their natural order, there are certain curious +marks, curves, hollows, and ridges, whereby some whalemen calculate the +creature’s age, as the age of an oak by its circular rings. Though the +certainty of this criterion is far from demonstrable, yet it has the +savor of analogical probability. At any rate, if we yield to it, we +must grant a far greater age to the Right Whale than at first glance +will seem reasonable. + +In old times, there seem to have prevailed the most curious fancies +concerning these blinds. One voyager in Purchas calls them the wondrous +“whiskers” inside of the whale’s mouth;* another, “hogs’ bristles”; a +third old gentleman in Hackluyt uses the following elegant language: +“There are about two hundred and fifty fins growing on each side of his +upper _chop_, which arch over his tongue on each side of his mouth.” + +*This reminds us that the Right Whale really has a sort of whisker, or +rather a moustache, consisting of a few scattered white hairs on the +upper part of the outer end of the lower jaw. Sometimes these tufts +impart a rather brigandish expression to his otherwise solemn +countenance. + +As every one knows, these same “hogs’ bristles,” “fins,” “whiskers,” +“blinds,” or whatever you please, furnish to the ladies their busks and +other stiffening contrivances. But in this particular, the demand has +long been on the decline. It was in Queen Anne’s time that the bone was +in its glory, the farthingale being then all the fashion. And as those +ancient dames moved about gaily, though in the jaws of the whale, as +you may say; even so, in a shower, with the like thoughtlessness, do we +nowadays fly under the same jaws for protection; the umbrella being a +tent spread over the same bone. + +But now forget all about blinds and whiskers for a moment, and, +standing in the Right Whale’s mouth, look around you afresh. Seeing all +these colonnades of bone so methodically ranged about, would you not +think you were inside of the great Haarlem organ, and gazing upon its +thousand pipes? For a carpet to the organ we have a rug of the softest +Turkey—the tongue, which is glued, as it were, to the floor of the +mouth. It is very fat and tender, and apt to tear in pieces in hoisting +it on deck. This particular tongue now before us; at a passing glance I +should say it was a six-barreler; that is, it will yield you about that +amount of oil. + +Ere this, you must have plainly seen the truth of what I started +with—that the Sperm Whale and the Right Whale have almost entirely +different heads. To sum up, then: in the Right Whale’s there is no +great well of sperm; no ivory teeth at all; no long, slender mandible +of a lower jaw, like the Sperm Whale’s. Nor in the Sperm Whale are +there any of those blinds of bone; no huge lower lip; and scarcely +anything of a tongue. Again, the Right Whale has two external +spout-holes, the Sperm Whale only one. + +Look your last, now, on these venerable hooded heads, while they yet +lie together; for one will soon sink, unrecorded, in the sea; the other +will not be very long in following. + +Can you catch the expression of the Sperm Whale’s there? It is the same +he died with, only some of the longer wrinkles in the forehead seem now +faded away. I think his broad brow to be full of a prairie-like +placidity, born of a speculative indifference as to death. But mark the +other head’s expression. See that amazing lower lip, pressed by +accident against the vessel’s side, so as firmly to embrace the jaw. +Does not this whole head seem to speak of an enormous practical +resolution in facing death? This Right Whale I take to have been a +Stoic; the Sperm Whale, a Platonian, who might have taken up Spinoza in +his latter years. + + +CHAPTER 76. The Battering-Ram. + +Ere quitting, for the nonce, the Sperm Whale’s head, I would have you, +as a sensible physiologist, simply—particularly remark its front +aspect, in all its compacted collectedness. I would have you +investigate it now with the sole view of forming to yourself some +unexaggerated, intelligent estimate of whatever battering-ram power may +be lodged there. Here is a vital point; for you must either +satisfactorily settle this matter with yourself, or for ever remain an +infidel as to one of the most appalling, but not the less true events, +perhaps anywhere to be found in all recorded history. + +You observe that in the ordinary swimming position of the Sperm Whale, +the front of his head presents an almost wholly vertical plane to the +water; you observe that the lower part of that front slopes +considerably backwards, so as to furnish more of a retreat for the long +socket which receives the boom-like lower jaw; you observe that the +mouth is entirely under the head, much in the same way, indeed, as +though your own mouth were entirely under your chin. Moreover you +observe that the whale has no external nose; and that what nose he +has—his spout hole—is on the top of his head; you observe that his eyes +and ears are at the sides of his head, nearly one third of his entire +length from the front. Wherefore, you must now have perceived that the +front of the Sperm Whale’s head is a dead, blind wall, without a single +organ or tender prominence of any sort whatsoever. Furthermore, you are +now to consider that only in the extreme, lower, backward sloping part +of the front of the head, is there the slightest vestige of bone; and +not till you get near twenty feet from the forehead do you come to the +full cranial development. So that this whole enormous boneless mass is +as one wad. Finally, though, as will soon be revealed, its contents +partly comprise the most delicate oil; yet, you are now to be apprised +of the nature of the substance which so impregnably invests all that +apparent effeminacy. In some previous place I have described to you how +the blubber wraps the body of the whale, as the rind wraps an orange. +Just so with the head; but with this difference: about the head this +envelope, though not so thick, is of a boneless toughness, inestimable +by any man who has not handled it. The severest pointed harpoon, the +sharpest lance darted by the strongest human arm, impotently rebounds +from it. It is as though the forehead of the Sperm Whale were paved +with horses’ hoofs. I do not think that any sensation lurks in it. + +Bethink yourself also of another thing. When two large, loaded Indiamen +chance to crowd and crush towards each other in the docks, what do the +sailors do? They do not suspend between them, at the point of coming +contact, any merely hard substance, like iron or wood. No, they hold +there a large, round wad of tow and cork, enveloped in the thickest and +toughest of ox-hide. That bravely and uninjured takes the jam which +would have snapped all their oaken handspikes and iron crow-bars. By +itself this sufficiently illustrates the obvious fact I drive at. But +supplementary to this, it has hypothetically occurred to me, that as +ordinary fish possess what is called a swimming bladder in them, +capable, at will, of distension or contraction; and as the Sperm Whale, +as far as I know, has no such provision in him; considering, too, the +otherwise inexplicable manner in which he now depresses his head +altogether beneath the surface, and anon swims with it high elevated +out of the water; considering the unobstructed elasticity of its +envelope; considering the unique interior of his head; it has +hypothetically occurred to me, I say, that those mystical lung-celled +honeycombs there may possibly have some hitherto unknown and +unsuspected connexion with the outer air, so as to be susceptible to +atmospheric distension and contraction. If this be so, fancy the +irresistibleness of that might, to which the most impalpable and +destructive of all elements contributes. + +Now, mark. Unerringly impelling this dead, impregnable, uninjurable +wall, and this most buoyant thing within; there swims behind it all a +mass of tremendous life, only to be adequately estimated as piled wood +is—by the cord; and all obedient to one volition, as the smallest +insect. So that when I shall hereafter detail to you all the +specialities and concentrations of potency everywhere lurking in this +expansive monster; when I shall show you some of his more +inconsiderable braining feats; I trust you will have renounced all +ignorant incredulity, and be ready to abide by this; that though the +Sperm Whale stove a passage through the Isthmus of Darien, and mixed +the Atlantic with the Pacific, you would not elevate one hair of your +eye-brow. For unless you own the whale, you are but a provincial and +sentimentalist in Truth. But clear Truth is a thing for salamander +giants only to encounter; how small the chances for the provincials +then? What befell the weakling youth lifting the dread goddess’s veil +at Lais? + + +CHAPTER 77. The Great Heidelburgh Tun. + +Now comes the Baling of the Case. But to comprehend it aright, you must +know something of the curious internal structure of the thing operated +upon. + +Regarding the Sperm Whale’s head as a solid oblong, you may, on an +inclined plane, sideways divide it into two quoins,* whereof the lower +is the bony structure, forming the cranium and jaws, and the upper an +unctuous mass wholly free from bones; its broad forward end forming the +expanded vertical apparent forehead of the whale. At the middle of the +forehead horizontally subdivide this upper quoin, and then you have two +almost equal parts, which before were naturally divided by an internal +wall of a thick tendinous substance. + +*Quoin is not a Euclidean term. It belongs to the pure nautical +mathematics. I know not that it has been defined before. A quoin is a +solid which differs from a wedge in having its sharp end formed by the +steep inclination of one side, instead of the mutual tapering of both +sides. + +The lower subdivided part, called the junk, is one immense honeycomb of +oil, formed by the crossing and recrossing, into ten thousand +infiltrated cells, of tough elastic white fibres throughout its whole +extent. The upper part, known as the Case, may be regarded as the great +Heidelburgh Tun of the Sperm Whale. And as that famous great tierce is +mystically carved in front, so the whale’s vast plaited forehead forms +innumerable strange devices for the emblematical adornment of his +wondrous tun. Moreover, as that of Heidelburgh was always replenished +with the most excellent of the wines of the Rhenish valleys, so the tun +of the whale contains by far the most precious of all his oily +vintages; namely, the highly-prized spermaceti, in its absolutely pure, +limpid, and odoriferous state. Nor is this precious substance found +unalloyed in any other part of the creature. Though in life it remains +perfectly fluid, yet, upon exposure to the air, after death, it soon +begins to concrete; sending forth beautiful crystalline shoots, as when +the first thin delicate ice is just forming in water. A large whale’s +case generally yields about five hundred gallons of sperm, though from +unavoidable circumstances, considerable of it is spilled, leaks, and +dribbles away, or is otherwise irrevocably lost in the ticklish +business of securing what you can. + +I know not with what fine and costly material the Heidelburgh Tun was +coated within, but in superlative richness that coating could not +possibly have compared with the silken pearl-coloured membrane, like +the lining of a fine pelisse, forming the inner surface of the Sperm +Whale’s case. + +It will have been seen that the Heidelburgh Tun of the Sperm Whale +embraces the entire length of the entire top of the head; and since—as +has been elsewhere set forth—the head embraces one third of the whole +length of the creature, then setting that length down at eighty feet +for a good sized whale, you have more than twenty-six feet for the +depth of the tun, when it is lengthwise hoisted up and down against a +ship’s side. + +As in decapitating the whale, the operator’s instrument is brought +close to the spot where an entrance is subsequently forced into the +spermaceti magazine; he has, therefore, to be uncommonly heedful, lest +a careless, untimely stroke should invade the sanctuary and wastingly +let out its invaluable contents. It is this decapitated end of the +head, also, which is at last elevated out of the water, and retained in +that position by the enormous cutting tackles, whose hempen +combinations, on one side, make quite a wilderness of ropes in that +quarter. + +Thus much being said, attend now, I pray you, to that marvellous and—in +this particular instance—almost fatal operation whereby the Sperm +Whale’s great Heidelburgh Tun is tapped. + + +CHAPTER 78. Cistern and Buckets. + +Nimble as a cat, Tashtego mounts aloft; and without altering his erect +posture, runs straight out upon the overhanging mainyard-arm, to the +part where it exactly projects over the hoisted Tun. He has carried +with him a light tackle called a whip, consisting of only two parts, +travelling through a single-sheaved block. Securing this block, so that +it hangs down from the yard-arm, he swings one end of the rope, till it +is caught and firmly held by a hand on deck. Then, hand-over-hand, down +the other part, the Indian drops through the air, till dexterously he +lands on the summit of the head. There—still high elevated above the +rest of the company, to whom he vivaciously cries—he seems some Turkish +Muezzin calling the good people to prayers from the top of a tower. A +short-handled sharp spade being sent up to him, he diligently searches +for the proper place to begin breaking into the Tun. In this business +he proceeds very heedfully, like a treasure-hunter in some old house, +sounding the walls to find where the gold is masoned in. By the time +this cautious search is over, a stout iron-bound bucket, precisely like +a well-bucket, has been attached to one end of the whip; while the +other end, being stretched across the deck, is there held by two or +three alert hands. These last now hoist the bucket within grasp of the +Indian, to whom another person has reached up a very long pole. +Inserting this pole into the bucket, Tashtego downward guides the +bucket into the Tun, till it entirely disappears; then giving the word +to the seamen at the whip, up comes the bucket again, all bubbling like +a dairy-maid’s pail of new milk. Carefully lowered from its height, the +full-freighted vessel is caught by an appointed hand, and quickly +emptied into a large tub. Then remounting aloft, it again goes through +the same round until the deep cistern will yield no more. Towards the +end, Tashtego has to ram his long pole harder and harder, and deeper +and deeper into the Tun, until some twenty feet of the pole have gone +down. + +Now, the people of the Pequod had been baling some time in this way; +several tubs had been filled with the fragrant sperm; when all at once +a queer accident happened. Whether it was that Tashtego, that wild +Indian, was so heedless and reckless as to let go for a moment his +one-handed hold on the great cabled tackles suspending the head; or +whether the place where he stood was so treacherous and oozy; or +whether the Evil One himself would have it to fall out so, without +stating his particular reasons; how it was exactly, there is no telling +now; but, on a sudden, as the eightieth or ninetieth bucket came +suckingly up—my God! poor Tashtego—like the twin reciprocating bucket +in a veritable well, dropped head-foremost down into this great Tun of +Heidelburgh, and with a horrible oily gurgling, went clean out of +sight! + +“Man overboard!” cried Daggoo, who amid the general consternation first +came to his senses. “Swing the bucket this way!” and putting one foot +into it, so as the better to secure his slippery hand-hold on the whip +itself, the hoisters ran him high up to the top of the head, almost +before Tashtego could have reached its interior bottom. Meantime, there +was a terrible tumult. Looking over the side, they saw the before +lifeless head throbbing and heaving just below the surface of the sea, +as if that moment seized with some momentous idea; whereas it was only +the poor Indian unconsciously revealing by those struggles the perilous +depth to which he had sunk. + +At this instant, while Daggoo, on the summit of the head, was clearing +the whip—which had somehow got foul of the great cutting tackles—a +sharp cracking noise was heard; and to the unspeakable horror of all, +one of the two enormous hooks suspending the head tore out, and with a +vast vibration the enormous mass sideways swung, till the drunk ship +reeled and shook as if smitten by an iceberg. The one remaining hook, +upon which the entire strain now depended, seemed every instant to be +on the point of giving way; an event still more likely from the violent +motions of the head. + +“Come down, come down!” yelled the seamen to Daggoo, but with one hand +holding on to the heavy tackles, so that if the head should drop, he +would still remain suspended; the negro having cleared the foul line, +rammed down the bucket into the now collapsed well, meaning that the +buried harpooneer should grasp it, and so be hoisted out. + +“In heaven’s name, man,” cried Stubb, “are you ramming home a cartridge +there?—Avast! How will that help him; jamming that iron-bound bucket on +top of his head? Avast, will ye!” + +“Stand clear of the tackle!” cried a voice like the bursting of a +rocket. + +Almost in the same instant, with a thunder-boom, the enormous mass +dropped into the sea, like Niagara’s Table-Rock into the whirlpool; the +suddenly relieved hull rolled away from it, to far down her glittering +copper; and all caught their breath, as half swinging—now over the +sailors’ heads, and now over the water—Daggoo, through a thick mist of +spray, was dimly beheld clinging to the pendulous tackles, while poor, +buried-alive Tashtego was sinking utterly down to the bottom of the +sea! But hardly had the blinding vapor cleared away, when a naked +figure with a boarding-sword in his hand, was for one swift moment seen +hovering over the bulwarks. The next, a loud splash announced that my +brave Queequeg had dived to the rescue. One packed rush was made to the +side, and every eye counted every ripple, as moment followed moment, +and no sign of either the sinker or the diver could be seen. Some hands +now jumped into a boat alongside, and pushed a little off from the +ship. + +“Ha! ha!” cried Daggoo, all at once, from his now quiet, swinging perch +overhead; and looking further off from the side, we saw an arm thrust +upright from the blue waves; a sight strange to see, as an arm thrust +forth from the grass over a grave. + +“Both! both!—it is both!”—cried Daggoo again with a joyful shout; and +soon after, Queequeg was seen boldly striking out with one hand, and +with the other clutching the long hair of the Indian. Drawn into the +waiting boat, they were quickly brought to the deck; but Tashtego was +long in coming to, and Queequeg did not look very brisk. + +Now, how had this noble rescue been accomplished? Why, diving after the +slowly descending head, Queequeg with his keen sword had made side +lunges near its bottom, so as to scuttle a large hole there; then +dropping his sword, had thrust his long arm far inwards and upwards, +and so hauled out poor Tash by the head. He averred, that upon first +thrusting in for him, a leg was presented; but well knowing that that +was not as it ought to be, and might occasion great trouble;—he had +thrust back the leg, and by a dexterous heave and toss, had wrought a +somerset upon the Indian; so that with the next trial, he came forth in +the good old way—head foremost. As for the great head itself, that was +doing as well as could be expected. + +And thus, through the courage and great skill in obstetrics of +Queequeg, the deliverance, or rather, delivery of Tashtego, was +successfully accomplished, in the teeth, too, of the most untoward and +apparently hopeless impediments; which is a lesson by no means to be +forgotten. Midwifery should be taught in the same course with fencing +and boxing, riding and rowing. + +I know that this queer adventure of the Gay-Header’s will be sure to +seem incredible to some landsmen, though they themselves may have +either seen or heard of some one’s falling into a cistern ashore; an +accident which not seldom happens, and with much less reason too than +the Indian’s, considering the exceeding slipperiness of the curb of the +Sperm Whale’s well. + +But, peradventure, it may be sagaciously urged, how is this? We thought +the tissued, infiltrated head of the Sperm Whale, was the lightest and +most corky part about him; and yet thou makest it sink in an element of +a far greater specific gravity than itself. We have thee there. Not at +all, but I have ye; for at the time poor Tash fell in, the case had +been nearly emptied of its lighter contents, leaving little but the +dense tendinous wall of the well—a double welded, hammered substance, +as I have before said, much heavier than the sea water, and a lump of +which sinks in it like lead almost. But the tendency to rapid sinking +in this substance was in the present instance materially counteracted +by the other parts of the head remaining undetached from it, so that it +sank very slowly and deliberately indeed, affording Queequeg a fair +chance for performing his agile obstetrics on the run, as you may say. +Yes, it was a running delivery, so it was. + +Now, had Tashtego perished in that head, it had been a very precious +perishing; smothered in the very whitest and daintiest of fragrant +spermaceti; coffined, hearsed, and tombed in the secret inner chamber +and sanctum sanctorum of the whale. Only one sweeter end can readily be +recalled—the delicious death of an Ohio honey-hunter, who seeking honey +in the crotch of a hollow tree, found such exceeding store of it, that +leaning too far over, it sucked him in, so that he died embalmed. How +many, think ye, have likewise fallen into Plato’s honey head, and +sweetly perished there? + + +CHAPTER 79. The Prairie. + +To scan the lines of his face, or feel the bumps on the head of this +Leviathan; this is a thing which no Physiognomist or Phrenologist has +as yet undertaken. Such an enterprise would seem almost as hopeful as +for Lavater to have scrutinized the wrinkles on the Rock of Gibraltar, +or for Gall to have mounted a ladder and manipulated the Dome of the +Pantheon. Still, in that famous work of his, Lavater not only treats of +the various faces of men, but also attentively studies the faces of +horses, birds, serpents, and fish; and dwells in detail upon the +modifications of expression discernible therein. Nor have Gall and his +disciple Spurzheim failed to throw out some hints touching the +phrenological characteristics of other beings than man. Therefore, +though I am but ill qualified for a pioneer, in the application of +these two semi-sciences to the whale, I will do my endeavor. I try all +things; I achieve what I can. + +Physiognomically regarded, the Sperm Whale is an anomalous creature. He +has no proper nose. And since the nose is the central and most +conspicuous of the features; and since it perhaps most modifies and +finally controls their combined expression; hence it would seem that +its entire absence, as an external appendage, must very largely affect +the countenance of the whale. For as in landscape gardening, a spire, +cupola, monument, or tower of some sort, is deemed almost indispensable +to the completion of the scene; so no face can be physiognomically in +keeping without the elevated open-work belfry of the nose. Dash the +nose from Phidias’s marble Jove, and what a sorry remainder! +Nevertheless, Leviathan is of so mighty a magnitude, all his +proportions are so stately, that the same deficiency which in the +sculptured Jove were hideous, in him is no blemish at all. Nay, it is +an added grandeur. A nose to the whale would have been impertinent. As +on your physiognomical voyage you sail round his vast head in your +jolly-boat, your noble conceptions of him are never insulted by the +reflection that he has a nose to be pulled. A pestilent conceit, which +so often will insist upon obtruding even when beholding the mightiest +royal beadle on his throne. + +In some particulars, perhaps the most imposing physiognomical view to +be had of the Sperm Whale, is that of the full front of his head. This +aspect is sublime. + +In thought, a fine human brow is like the East when troubled with the +morning. In the repose of the pasture, the curled brow of the bull has +a touch of the grand in it. Pushing heavy cannon up mountain defiles, +the elephant’s brow is majestic. Human or animal, the mystical brow is +as that great golden seal affixed by the German emperors to their +decrees. It signifies—“God: done this day by my hand.” But in most +creatures, nay in man himself, very often the brow is but a mere strip +of alpine land lying along the snow line. Few are the foreheads which +like Shakespeare’s or Melancthon’s rise so high, and descend so low, +that the eyes themselves seem clear, eternal, tideless mountain lakes; +and all above them in the forehead’s wrinkles, you seem to track the +antlered thoughts descending there to drink, as the Highland hunters +track the snow prints of the deer. But in the great Sperm Whale, this +high and mighty god-like dignity inherent in the brow is so immensely +amplified, that gazing on it, in that full front view, you feel the +Deity and the dread powers more forcibly than in beholding any other +object in living nature. For you see no one point precisely; not one +distinct feature is revealed; no nose, eyes, ears, or mouth; no face; +he has none, proper; nothing but that one broad firmament of a +forehead, pleated with riddles; dumbly lowering with the doom of boats, +and ships, and men. Nor, in profile, does this wondrous brow diminish; +though that way viewed its grandeur does not domineer upon you so. In +profile, you plainly perceive that horizontal, semi-crescentic +depression in the forehead’s middle, which, in man, is Lavater’s mark +of genius. + +But how? Genius in the Sperm Whale? Has the Sperm Whale ever written a +book, spoken a speech? No, his great genius is declared in his doing +nothing particular to prove it. It is moreover declared in his +pyramidical silence. And this reminds me that had the great Sperm Whale +been known to the young Orient World, he would have been deified by +their child-magian thoughts. They deified the crocodile of the Nile, +because the crocodile is tongueless; and the Sperm Whale has no tongue, +or at least it is so exceedingly small, as to be incapable of +protrusion. If hereafter any highly cultured, poetical nation shall +lure back to their birth-right, the merry May-day gods of old; and +livingly enthrone them again in the now egotistical sky; in the now +unhaunted hill; then be sure, exalted to Jove’s high seat, the great +Sperm Whale shall lord it. + +Champollion deciphered the wrinkled granite hieroglyphics. But there is +no Champollion to decipher the Egypt of every man’s and every being’s +face. Physiognomy, like every other human science, is but a passing +fable. If then, Sir William Jones, who read in thirty languages, could +not read the simplest peasant’s face in its profounder and more subtle +meanings, how may unlettered Ishmael hope to read the awful Chaldee of +the Sperm Whale’s brow? I but put that brow before you. Read it if you +can. + + +CHAPTER 80. The Nut. + +If the Sperm Whale be physiognomically a Sphinx, to the phrenologist +his brain seems that geometrical circle which it is impossible to +square. + +In the full-grown creature the skull will measure at least twenty feet +in length. Unhinge the lower jaw, and the side view of this skull is as +the side of a moderately inclined plane resting throughout on a level +base. But in life—as we have elsewhere seen—this inclined plane is +angularly filled up, and almost squared by the enormous superincumbent +mass of the junk and sperm. At the high end the skull forms a crater to +bed that part of the mass; while under the long floor of this crater—in +another cavity seldom exceeding ten inches in length and as many in +depth—reposes the mere handful of this monster’s brain. The brain is at +least twenty feet from his apparent forehead in life; it is hidden away +behind its vast outworks, like the innermost citadel within the +amplified fortifications of Quebec. So like a choice casket is it +secreted in him, that I have known some whalemen who peremptorily deny +that the Sperm Whale has any other brain than that palpable semblance +of one formed by the cubic-yards of his sperm magazine. Lying in +strange folds, courses, and convolutions, to their apprehensions, it +seems more in keeping with the idea of his general might to regard that +mystic part of him as the seat of his intelligence. + +It is plain, then, that phrenologically the head of this Leviathan, in +the creature’s living intact state, is an entire delusion. As for his +true brain, you can then see no indications of it, nor feel any. The +whale, like all things that are mighty, wears a false brow to the +common world. + +If you unload his skull of its spermy heaps and then take a rear view +of its rear end, which is the high end, you will be struck by its +resemblance to the human skull, beheld in the same situation, and from +the same point of view. Indeed, place this reversed skull (scaled down +to the human magnitude) among a plate of men’s skulls, and you would +involuntarily confound it with them; and remarking the depressions on +one part of its summit, in phrenological phrase you would say—This man +had no self-esteem, and no veneration. And by those negations, +considered along with the affirmative fact of his prodigious bulk and +power, you can best form to yourself the truest, though not the most +exhilarating conception of what the most exalted potency is. + +But if from the comparative dimensions of the whale’s proper brain, you +deem it incapable of being adequately charted, then I have another idea +for you. If you attentively regard almost any quadruped’s spine, you +will be struck with the resemblance of its vertebræ to a strung +necklace of dwarfed skulls, all bearing rudimental resemblance to the +skull proper. It is a German conceit, that the vertebræ are absolutely +undeveloped skulls. But the curious external resemblance, I take it the +Germans were not the first men to perceive. A foreign friend once +pointed it out to me, in the skeleton of a foe he had slain, and with +the vertebræ of which he was inlaying, in a sort of basso-relievo, the +beaked prow of his canoe. Now, I consider that the phrenologists have +omitted an important thing in not pushing their investigations from the +cerebellum through the spinal canal. For I believe that much of a man’s +character will be found betokened in his backbone. I would rather feel +your spine than your skull, whoever you are. A thin joist of a spine +never yet upheld a full and noble soul. I rejoice in my spine, as in +the firm audacious staff of that flag which I fling half out to the +world. + +Apply this spinal branch of phrenology to the Sperm Whale. His cranial +cavity is continuous with the first neck-vertebra; and in that vertebra +the bottom of the spinal canal will measure ten inches across, being +eight in height, and of a triangular figure with the base downwards. As +it passes through the remaining vertebræ the canal tapers in size, but +for a considerable distance remains of large capacity. Now, of course, +this canal is filled with much the same strangely fibrous substance—the +spinal cord—as the brain; and directly communicates with the brain. And +what is still more, for many feet after emerging from the brain’s +cavity, the spinal cord remains of an undecreasing girth, almost equal +to that of the brain. Under all these circumstances, would it be +unreasonable to survey and map out the whale’s spine phrenologically? +For, viewed in this light, the wonderful comparative smallness of his +brain proper is more than compensated by the wonderful comparative +magnitude of his spinal cord. + +But leaving this hint to operate as it may with the phrenologists, I +would merely assume the spinal theory for a moment, in reference to the +Sperm Whale’s hump. This august hump, if I mistake not, rises over one +of the larger vertebræ, and is, therefore, in some sort, the outer +convex mould of it. From its relative situation then, I should call +this high hump the organ of firmness or indomitableness in the Sperm +Whale. And that the great monster is indomitable, you will yet have +reason to know. + + +CHAPTER 81. The Pequod Meets The Virgin. + +The predestinated day arrived, and we duly met the ship Jungfrau, +Derick De Deer, master, of Bremen. + +At one time the greatest whaling people in the world, the Dutch and +Germans are now among the least; but here and there at very wide +intervals of latitude and longitude, you still occasionally meet with +their flag in the Pacific. + +For some reason, the Jungfrau seemed quite eager to pay her respects. +While yet some distance from the Pequod, she rounded to, and dropping a +boat, her captain was impelled towards us, impatiently standing in the +bows instead of the stern. + +“What has he in his hand there?” cried Starbuck, pointing to something +wavingly held by the German. “Impossible!—a lamp-feeder!” + +“Not that,” said Stubb, “no, no, it’s a coffee-pot, Mr. Starbuck; he’s +coming off to make us our coffee, is the Yarman; don’t you see that big +tin can there alongside of him?—that’s his boiling water. Oh! he’s all +right, is the Yarman.” + +“Go along with you,” cried Flask, “it’s a lamp-feeder and an oil-can. +He’s out of oil, and has come a-begging.” + +However curious it may seem for an oil-ship to be borrowing oil on the +whale-ground, and however much it may invertedly contradict the old +proverb about carrying coals to Newcastle, yet sometimes such a thing +really happens; and in the present case Captain Derick De Deer did +indubitably conduct a lamp-feeder as Flask did declare. + +As he mounted the deck, Ahab abruptly accosted him, without at all +heeding what he had in his hand; but in his broken lingo, the German +soon evinced his complete ignorance of the White Whale; immediately +turning the conversation to his lamp-feeder and oil can, with some +remarks touching his having to turn into his hammock at night in +profound darkness—his last drop of Bremen oil being gone, and not a +single flying-fish yet captured to supply the deficiency; concluding by +hinting that his ship was indeed what in the Fishery is technically +called a _clean_ one (that is, an empty one), well deserving the name +of Jungfrau or the Virgin. + +His necessities supplied, Derick departed; but he had not gained his +ship’s side, when whales were almost simultaneously raised from the +mast-heads of both vessels; and so eager for the chase was Derick, that +without pausing to put his oil-can and lamp-feeder aboard, he slewed +round his boat and made after the leviathan lamp-feeders. + +Now, the game having risen to leeward, he and the other three German +boats that soon followed him, had considerably the start of the +Pequod’s keels. There were eight whales, an average pod. Aware of their +danger, they were going all abreast with great speed straight before +the wind, rubbing their flanks as closely as so many spans of horses in +harness. They left a great, wide wake, as though continually unrolling +a great wide parchment upon the sea. + +Full in this rapid wake, and many fathoms in the rear, swam a huge, +humped old bull, which by his comparatively slow progress, as well as +by the unusual yellowish incrustations overgrowing him, seemed +afflicted with the jaundice, or some other infirmity. Whether this +whale belonged to the pod in advance, seemed questionable; for it is +not customary for such venerable leviathans to be at all social. +Nevertheless, he stuck to their wake, though indeed their back water +must have retarded him, because the white-bone or swell at his broad +muzzle was a dashed one, like the swell formed when two hostile +currents meet. His spout was short, slow, and laborious; coming forth +with a choking sort of gush, and spending itself in torn shreds, +followed by strange subterranean commotions in him, which seemed to +have egress at his other buried extremity, causing the waters behind +him to upbubble. + +“Who’s got some paregoric?” said Stubb, “he has the stomach-ache, I’m +afraid. Lord, think of having half an acre of stomach-ache! Adverse +winds are holding mad Christmas in him, boys. It’s the first foul wind +I ever knew to blow from astern; but look, did ever whale yaw so +before? it must be, he’s lost his tiller.” + +As an overladen Indiaman bearing down the Hindostan coast with a deck +load of frightened horses, careens, buries, rolls, and wallows on her +way; so did this old whale heave his aged bulk, and now and then partly +turning over on his cumbrous rib-ends, expose the cause of his devious +wake in the unnatural stump of his starboard fin. Whether he had lost +that fin in battle, or had been born without it, it were hard to say. + +“Only wait a bit, old chap, and I’ll give ye a sling for that wounded +arm,” cried cruel Flask, pointing to the whale-line near him. + +“Mind he don’t sling thee with it,” cried Starbuck. “Give way, or the +German will have him.” + +With one intent all the combined rival boats were pointed for this one +fish, because not only was he the largest, and therefore the most +valuable whale, but he was nearest to them, and the other whales were +going with such great velocity, moreover, as almost to defy pursuit for +the time. At this juncture the Pequod’s keels had shot by the three +German boats last lowered; but from the great start he had had, +Derick’s boat still led the chase, though every moment neared by his +foreign rivals. The only thing they feared, was, that from being +already so nigh to his mark, he would be enabled to dart his iron +before they could completely overtake and pass him. As for Derick, he +seemed quite confident that this would be the case, and occasionally +with a deriding gesture shook his lamp-feeder at the other boats. + +“The ungracious and ungrateful dog!” cried Starbuck; “he mocks and +dares me with the very poor-box I filled for him not five minutes +ago!”—then in his old intense whisper—“Give way, greyhounds! Dog to +it!” + +“I tell ye what it is, men”—cried Stubb to his crew—“it’s against my +religion to get mad; but I’d like to eat that villainous +Yarman—Pull—won’t ye? Are ye going to let that rascal beat ye? Do ye +love brandy? A hogshead of brandy, then, to the best man. Come, why +don’t some of ye burst a blood-vessel? Who’s that been dropping an +anchor overboard—we don’t budge an inch—we’re becalmed. Halloo, here’s +grass growing in the boat’s bottom—and by the Lord, the mast there’s +budding. This won’t do, boys. Look at that Yarman! The short and long +of it is, men, will ye spit fire or not?” + +“Oh! see the suds he makes!” cried Flask, dancing up and down—“What a +hump—Oh, _do_ pile on the beef—lays like a log! Oh! my lads, _do_ +spring—slap-jacks and quahogs for supper, you know, my lads—baked clams +and muffins—oh, _do_, _do_, spring,—he’s a hundred barreller—don’t lose +him now—don’t oh, _don’t!_—see that Yarman—Oh, won’t ye pull for your +duff, my lads—such a sog! such a sogger! Don’t ye love sperm? There +goes three thousand dollars, men!—a bank!—a whole bank! The bank of +England!—Oh, _do_, _do_, _do!_—What’s that Yarman about now?” + +At this moment Derick was in the act of pitching his lamp-feeder at the +advancing boats, and also his oil-can; perhaps with the double view of +retarding his rivals’ way, and at the same time economically +accelerating his own by the momentary impetus of the backward toss. + +“The unmannerly Dutch dogger!” cried Stubb. “Pull now, men, like fifty +thousand line-of-battle-ship loads of red-haired devils. What d’ye say, +Tashtego; are you the man to snap your spine in two-and-twenty pieces +for the honor of old Gayhead? What d’ye say?” + +“I say, pull like god-dam,”—cried the Indian. + +Fiercely, but evenly incited by the taunts of the German, the Pequod’s +three boats now began ranging almost abreast; and, so disposed, +momentarily neared him. In that fine, loose, chivalrous attitude of the +headsman when drawing near to his prey, the three mates stood up +proudly, occasionally backing the after oarsman with an exhilarating +cry of, “There she slides, now! Hurrah for the white-ash breeze! Down +with the Yarman! Sail over him!” + +But so decided an original start had Derick had, that spite of all +their gallantry, he would have proved the victor in this race, had not +a righteous judgment descended upon him in a crab which caught the +blade of his midship oarsman. While this clumsy lubber was striving to +free his white-ash, and while, in consequence, Derick’s boat was nigh +to capsizing, and he thundering away at his men in a mighty rage;—that +was a good time for Starbuck, Stubb, and Flask. With a shout, they took +a mortal start forwards, and slantingly ranged up on the German’s +quarter. An instant more, and all four boats were diagonically in the +whale’s immediate wake, while stretching from them, on both sides, was +the foaming swell that he made. + +It was a terrific, most pitiable, and maddening sight. The whale was +now going head out, and sending his spout before him in a continual +tormented jet; while his one poor fin beat his side in an agony of +fright. Now to this hand, now to that, he yawed in his faltering +flight, and still at every billow that he broke, he spasmodically sank +in the sea, or sideways rolled towards the sky his one beating fin. So +have I seen a bird with clipped wing making affrighted broken circles +in the air, vainly striving to escape the piratical hawks. But the bird +has a voice, and with plaintive cries will make known her fear; but the +fear of this vast dumb brute of the sea, was chained up and enchanted +in him; he had no voice, save that choking respiration through his +spiracle, and this made the sight of him unspeakably pitiable; while +still, in his amazing bulk, portcullis jaw, and omnipotent tail, there +was enough to appal the stoutest man who so pitied. + +Seeing now that but a very few moments more would give the Pequod’s +boats the advantage, and rather than be thus foiled of his game, Derick +chose to hazard what to him must have seemed a most unusually long +dart, ere the last chance would for ever escape. + +But no sooner did his harpooneer stand up for the stroke, than all +three tigers—Queequeg, Tashtego, Daggoo—instinctively sprang to their +feet, and standing in a diagonal row, simultaneously pointed their +barbs; and darted over the head of the German harpooneer, their three +Nantucket irons entered the whale. Blinding vapors of foam and +white-fire! The three boats, in the first fury of the whale’s headlong +rush, bumped the German’s aside with such force, that both Derick and +his baffled harpooneer were spilled out, and sailed over by the three +flying keels. + +“Don’t be afraid, my butter-boxes,” cried Stubb, casting a passing +glance upon them as he shot by; “ye’ll be picked up presently—all +right—I saw some sharks astern—St. Bernard’s dogs, you know—relieve +distressed travellers. Hurrah! this is the way to sail now. Every keel +a sunbeam! Hurrah!—Here we go like three tin kettles at the tail of a +mad cougar! This puts me in mind of fastening to an elephant in a +tilbury on a plain—makes the wheel-spokes fly, boys, when you fasten to +him that way; and there’s danger of being pitched out too, when you +strike a hill. Hurrah! this is the way a fellow feels when he’s going +to Davy Jones—all a rush down an endless inclined plane! Hurrah! this +whale carries the everlasting mail!” + +But the monster’s run was a brief one. Giving a sudden gasp, he +tumultuously sounded. With a grating rush, the three lines flew round +the loggerheads with such a force as to gouge deep grooves in them; +while so fearful were the harpooneers that this rapid sounding would +soon exhaust the lines, that using all their dexterous might, they +caught repeated smoking turns with the rope to hold on; till at +last—owing to the perpendicular strain from the lead-lined chocks of +the boats, whence the three ropes went straight down into the blue—the +gunwales of the bows were almost even with the water, while the three +sterns tilted high in the air. And the whale soon ceasing to sound, for +some time they remained in that attitude, fearful of expending more +line, though the position was a little ticklish. But though boats have +been taken down and lost in this way, yet it is this “holding on,” as +it is called; this hooking up by the sharp barbs of his live flesh from +the back; this it is that often torments the Leviathan into soon rising +again to meet the sharp lance of his foes. Yet not to speak of the +peril of the thing, it is to be doubted whether this course is always +the best; for it is but reasonable to presume, that the longer the +stricken whale stays under water, the more he is exhausted. Because, +owing to the enormous surface of him—in a full grown sperm whale +something less than 2000 square feet—the pressure of the water is +immense. We all know what an astonishing atmospheric weight we +ourselves stand up under; even here, above-ground, in the air; how +vast, then, the burden of a whale, bearing on his back a column of two +hundred fathoms of ocean! It must at least equal the weight of fifty +atmospheres. One whaleman has estimated it at the weight of twenty +line-of-battle ships, with all their guns, and stores, and men on +board. + +As the three boats lay there on that gently rolling sea, gazing down +into its eternal blue noon; and as not a single groan or cry of any +sort, nay, not so much as a ripple or a bubble came up from its depths; +what landsman would have thought, that beneath all that silence and +placidity, the utmost monster of the seas was writhing and wrenching in +agony! Not eight inches of perpendicular rope were visible at the bows. +Seems it credible that by three such thin threads the great Leviathan +was suspended like the big weight to an eight day clock. Suspended? and +to what? To three bits of board. Is this the creature of whom it was +once so triumphantly said—“Canst thou fill his skin with barbed irons? +or his head with fish-spears? The sword of him that layeth at him +cannot hold, the spear, the dart, nor the habergeon: he esteemeth iron +as straw; the arrow cannot make him flee; darts are counted as stubble; +he laugheth at the shaking of a spear!” This the creature? this he? Oh! +that unfulfilments should follow the prophets. For with the strength of +a thousand thighs in his tail, Leviathan had run his head under the +mountains of the sea, to hide him from the Pequod’s fish-spears! + +In that sloping afternoon sunlight, the shadows that the three boats +sent down beneath the surface, must have been long enough and broad +enough to shade half Xerxes’ army. Who can tell how appalling to the +wounded whale must have been such huge phantoms flitting over his head! + +“Stand by, men; he stirs,” cried Starbuck, as the three lines suddenly +vibrated in the water, distinctly conducting upwards to them, as by +magnetic wires, the life and death throbs of the whale, so that every +oarsman felt them in his seat. The next moment, relieved in great part +from the downward strain at the bows, the boats gave a sudden bounce +upwards, as a small icefield will, when a dense herd of white bears are +scared from it into the sea. + +“Haul in! Haul in!” cried Starbuck again; “he’s rising.” + +The lines, of which, hardly an instant before, not one hand’s breadth +could have been gained, were now in long quick coils flung back all +dripping into the boats, and soon the whale broke water within two +ship’s lengths of the hunters. + +His motions plainly denoted his extreme exhaustion. In most land +animals there are certain valves or flood-gates in many of their veins, +whereby when wounded, the blood is in some degree at least instantly +shut off in certain directions. Not so with the whale; one of whose +peculiarities it is to have an entire non-valvular structure of the +blood-vessels, so that when pierced even by so small a point as a +harpoon, a deadly drain is at once begun upon his whole arterial +system; and when this is heightened by the extraordinary pressure of +water at a great distance below the surface, his life may be said to +pour from him in incessant streams. Yet so vast is the quantity of +blood in him, and so distant and numerous its interior fountains, that +he will keep thus bleeding and bleeding for a considerable period; even +as in a drought a river will flow, whose source is in the well-springs +of far-off and undiscernible hills. Even now, when the boats pulled +upon this whale, and perilously drew over his swaying flukes, and the +lances were darted into him, they were followed by steady jets from the +new made wound, which kept continually playing, while the natural +spout-hole in his head was only at intervals, however rapid, sending +its affrighted moisture into the air. From this last vent no blood yet +came, because no vital part of him had thus far been struck. His life, +as they significantly call it, was untouched. + +As the boats now more closely surrounded him, the whole upper part of +his form, with much of it that is ordinarily submerged, was plainly +revealed. His eyes, or rather the places where his eyes had been, were +beheld. As strange misgrown masses gather in the knot-holes of the +noblest oaks when prostrate, so from the points which the whale’s eyes +had once occupied, now protruded blind bulbs, horribly pitiable to see. +But pity there was none. For all his old age, and his one arm, and his +blind eyes, he must die the death and be murdered, in order to light +the gay bridals and other merry-makings of men, and also to illuminate +the solemn churches that preach unconditional inoffensiveness by all to +all. Still rolling in his blood, at last he partially disclosed a +strangely discoloured bunch or protuberance, the size of a bushel, low +down on the flank. + +“A nice spot,” cried Flask; “just let me prick him there once.” + +“Avast!” cried Starbuck, “there’s no need of that!” + +But humane Starbuck was too late. At the instant of the dart an +ulcerous jet shot from this cruel wound, and goaded by it into more +than sufferable anguish, the whale now spouting thick blood, with swift +fury blindly darted at the craft, bespattering them and their glorying +crews all over with showers of gore, capsizing Flask’s boat and marring +the bows. It was his death stroke. For, by this time, so spent was he +by loss of blood, that he helplessly rolled away from the wreck he had +made; lay panting on his side, impotently flapped with his stumped fin, +then over and over slowly revolved like a waning world; turned up the +white secrets of his belly; lay like a log, and died. It was most +piteous, that last expiring spout. As when by unseen hands the water is +gradually drawn off from some mighty fountain, and with half-stifled +melancholy gurglings the spray-column lowers and lowers to the +ground—so the last long dying spout of the whale. + +Soon, while the crews were awaiting the arrival of the ship, the body +showed symptoms of sinking with all its treasures unrifled. +Immediately, by Starbuck’s orders, lines were secured to it at +different points, so that ere long every boat was a buoy; the sunken +whale being suspended a few inches beneath them by the cords. By very +heedful management, when the ship drew nigh, the whale was transferred +to her side, and was strongly secured there by the stiffest +fluke-chains, for it was plain that unless artificially upheld, the +body would at once sink to the bottom. + +It so chanced that almost upon first cutting into him with the spade, +the entire length of a corroded harpoon was found imbedded in his +flesh, on the lower part of the bunch before described. But as the +stumps of harpoons are frequently found in the dead bodies of captured +whales, with the flesh perfectly healed around them, and no prominence +of any kind to denote their place; therefore, there must needs have +been some other unknown reason in the present case fully to account for +the ulceration alluded to. But still more curious was the fact of a +lance-head of stone being found in him, not far from the buried iron, +the flesh perfectly firm about it. Who had darted that stone lance? And +when? It might have been darted by some Nor’ West Indian long before +America was discovered. + +What other marvels might have been rummaged out of this monstrous +cabinet there is no telling. But a sudden stop was put to further +discoveries, by the ship’s being unprecedentedly dragged over sideways +to the sea, owing to the body’s immensely increasing tendency to sink. +However, Starbuck, who had the ordering of affairs, hung on to it to +the last; hung on to it so resolutely, indeed, that when at length the +ship would have been capsized, if still persisting in locking arms with +the body; then, when the command was given to break clear from it, such +was the immovable strain upon the timber-heads to which the +fluke-chains and cables were fastened, that it was impossible to cast +them off. Meantime everything in the Pequod was aslant. To cross to the +other side of the deck was like walking up the steep gabled roof of a +house. The ship groaned and gasped. Many of the ivory inlayings of her +bulwarks and cabins were started from their places, by the unnatural +dislocation. In vain handspikes and crows were brought to bear upon the +immovable fluke-chains, to pry them adrift from the timberheads; and so +low had the whale now settled that the submerged ends could not be at +all approached, while every moment whole tons of ponderosity seemed +added to the sinking bulk, and the ship seemed on the point of going +over. + +“Hold on, hold on, won’t ye?” cried Stubb to the body, “don’t be in +such a devil of a hurry to sink! By thunder, men, we must do something +or go for it. No use prying there; avast, I say with your handspikes, +and run one of ye for a prayer book and a pen-knife, and cut the big +chains.” + +“Knife? Aye, aye,” cried Queequeg, and seizing the carpenter’s heavy +hatchet, he leaned out of a porthole, and steel to iron, began slashing +at the largest fluke-chains. But a few strokes, full of sparks, were +given, when the exceeding strain effected the rest. With a terrific +snap, every fastening went adrift; the ship righted, the carcase sank. + +Now, this occasional inevitable sinking of the recently killed Sperm +Whale is a very curious thing; nor has any fisherman yet adequately +accounted for it. Usually the dead Sperm Whale floats with great +buoyancy, with its side or belly considerably elevated above the +surface. If the only whales that thus sank were old, meagre, and +broken-hearted creatures, their pads of lard diminished and all their +bones heavy and rheumatic; then you might with some reason assert that +this sinking is caused by an uncommon specific gravity in the fish so +sinking, consequent upon this absence of buoyant matter in him. But it +is not so. For young whales, in the highest health, and swelling with +noble aspirations, prematurely cut off in the warm flush and May of +life, with all their panting lard about them; even these brawny, +buoyant heroes do sometimes sink. + +Be it said, however, that the Sperm Whale is far less liable to this +accident than any other species. Where one of that sort go down, twenty +Right Whales do. This difference in the species is no doubt imputable +in no small degree to the greater quantity of bone in the Right Whale; +his Venetian blinds alone sometimes weighing more than a ton; from this +incumbrance the Sperm Whale is wholly free. But there are instances +where, after the lapse of many hours or several days, the sunken whale +again rises, more buoyant than in life. But the reason of this is +obvious. Gases are generated in him; he swells to a prodigious +magnitude; becomes a sort of animal balloon. A line-of-battle ship +could hardly keep him under then. In the Shore Whaling, on soundings, +among the Bays of New Zealand, when a Right Whale gives token of +sinking, they fasten buoys to him, with plenty of rope; so that when +the body has gone down, they know where to look for it when it shall +have ascended again. + +It was not long after the sinking of the body that a cry was heard from +the Pequod’s mast-heads, announcing that the Jungfrau was again +lowering her boats; though the only spout in sight was that of a +Fin-Back, belonging to the species of uncapturable whales, because of +its incredible power of swimming. Nevertheless, the Fin-Back’s spout is +so similar to the Sperm Whale’s, that by unskilful fishermen it is +often mistaken for it. And consequently Derick and all his host were +now in valiant chase of this unnearable brute. The Virgin crowding all +sail, made after her four young keels, and thus they all disappeared +far to leeward, still in bold, hopeful chase. + +Oh! many are the Fin-Backs, and many are the Dericks, my friend. + + +CHAPTER 82. The Honor and Glory of Whaling. + +There are some enterprises in which a careful disorderliness is the +true method. + +The more I dive into this matter of whaling, and push my researches up +to the very spring-head of it so much the more am I impressed with its +great honorableness and antiquity; and especially when I find so many +great demi-gods and heroes, prophets of all sorts, who one way or other +have shed distinction upon it, I am transported with the reflection +that I myself belong, though but subordinately, to so emblazoned a +fraternity. + +The gallant Perseus, a son of Jupiter, was the first whaleman; and to +the eternal honor of our calling be it said, that the first whale +attacked by our brotherhood was not killed with any sordid intent. +Those were the knightly days of our profession, when we only bore arms +to succor the distressed, and not to fill men’s lamp-feeders. Every one +knows the fine story of Perseus and Andromeda; how the lovely +Andromeda, the daughter of a king, was tied to a rock on the sea-coast, +and as Leviathan was in the very act of carrying her off, Perseus, the +prince of whalemen, intrepidly advancing, harpooned the monster, and +delivered and married the maid. It was an admirable artistic exploit, +rarely achieved by the best harpooneers of the present day; inasmuch as +this Leviathan was slain at the very first dart. And let no man doubt +this Arkite story; for in the ancient Joppa, now Jaffa, on the Syrian +coast, in one of the Pagan temples, there stood for many ages the vast +skeleton of a whale, which the city’s legends and all the inhabitants +asserted to be the identical bones of the monster that Perseus slew. +When the Romans took Joppa, the same skeleton was carried to Italy in +triumph. What seems most singular and suggestively important in this +story, is this: it was from Joppa that Jonah set sail. + +Akin to the adventure of Perseus and Andromeda—indeed, by some supposed +to be indirectly derived from it—is that famous story of St. George and +the Dragon; which dragon I maintain to have been a whale; for in many +old chronicles whales and dragons are strangely jumbled together, and +often stand for each other. “Thou art as a lion of the waters, and as a +dragon of the sea,” saith Ezekiel; hereby, plainly meaning a whale; in +truth, some versions of the Bible use that word itself. Besides, it +would much subtract from the glory of the exploit had St. George but +encountered a crawling reptile of the land, instead of doing battle +with the great monster of the deep. Any man may kill a snake, but only +a Perseus, a St. George, a Coffin, have the heart in them to march +boldly up to a whale. + +Let not the modern paintings of this scene mislead us; for though the +creature encountered by that valiant whaleman of old is vaguely +represented of a griffin-like shape, and though the battle is depicted +on land and the saint on horseback, yet considering the great ignorance +of those times, when the true form of the whale was unknown to artists; +and considering that as in Perseus’ case, St. George’s whale might have +crawled up out of the sea on the beach; and considering that the animal +ridden by St. George might have been only a large seal, or sea-horse; +bearing all this in mind, it will not appear altogether incompatible +with the sacred legend and the ancientest draughts of the scene, to +hold this so-called dragon no other than the great Leviathan himself. +In fact, placed before the strict and piercing truth, this whole story +will fare like that fish, flesh, and fowl idol of the Philistines, +Dagon by name; who being planted before the ark of Israel, his horse’s +head and both the palms of his hands fell off from him, and only the +stump or fishy part of him remained. Thus, then, one of our own noble +stamp, even a whaleman, is the tutelary guardian of England; and by +good rights, we harpooneers of Nantucket should be enrolled in the most +noble order of St. George. And therefore, let not the knights of that +honorable company (none of whom, I venture to say, have ever had to do +with a whale like their great patron), let them never eye a Nantucketer +with disdain, since even in our woollen frocks and tarred trowsers we +are much better entitled to St. George’s decoration than they. + +Whether to admit Hercules among us or not, concerning this I long +remained dubious: for though according to the Greek mythologies, that +antique Crockett and Kit Carson—that brawny doer of rejoicing good +deeds, was swallowed down and thrown up by a whale; still, whether that +strictly makes a whaleman of him, that might be mooted. It nowhere +appears that he ever actually harpooned his fish, unless, indeed, from +the inside. Nevertheless, he may be deemed a sort of involuntary +whaleman; at any rate the whale caught him, if he did not the whale. I +claim him for one of our clan. + +But, by the best contradictory authorities, this Grecian story of +Hercules and the whale is considered to be derived from the still more +ancient Hebrew story of Jonah and the whale; and vice versâ; certainly +they are very similar. If I claim the demi-god then, why not the +prophet? + +Nor do heroes, saints, demigods, and prophets alone comprise the whole +roll of our order. Our grand master is still to be named; for like +royal kings of old times, we find the head waters of our fraternity in +nothing short of the great gods themselves. That wondrous oriental +story is now to be rehearsed from the Shaster, which gives us the dread +Vishnoo, one of the three persons in the godhead of the Hindoos; gives +us this divine Vishnoo himself for our Lord;—Vishnoo, who, by the first +of his ten earthly incarnations, has for ever set apart and sanctified +the whale. When Brahma, or the God of Gods, saith the Shaster, resolved +to recreate the world after one of its periodical dissolutions, he gave +birth to Vishnoo, to preside over the work; but the Vedas, or mystical +books, whose perusal would seem to have been indispensable to Vishnoo +before beginning the creation, and which therefore must have contained +something in the shape of practical hints to young architects, these +Vedas were lying at the bottom of the waters; so Vishnoo became +incarnate in a whale, and sounding down in him to the uttermost depths, +rescued the sacred volumes. Was not this Vishnoo a whaleman, then? even +as a man who rides a horse is called a horseman? + +Perseus, St. George, Hercules, Jonah, and Vishnoo! there’s a +member-roll for you! What club but the whaleman’s can head off like +that? + + +CHAPTER 83. Jonah Historically Regarded. + +Reference was made to the historical story of Jonah and the whale in +the preceding chapter. Now some Nantucketers rather distrust this +historical story of Jonah and the whale. But then there were some +sceptical Greeks and Romans, who, standing out from the orthodox pagans +of their times, equally doubted the story of Hercules and the whale, +and Arion and the dolphin; and yet their doubting those traditions did +not make those traditions one whit the less facts, for all that. + +One old Sag-Harbor whaleman’s chief reason for questioning the Hebrew +story was this:—He had one of those quaint old-fashioned Bibles, +embellished with curious, unscientific plates; one of which represented +Jonah’s whale with two spouts in his head—a peculiarity only true with +respect to a species of the Leviathan (the Right Whale, and the +varieties of that order), concerning which the fishermen have this +saying, “A penny roll would choke him”; his swallow is so very small. +But, to this, Bishop Jebb’s anticipative answer is ready. It is not +necessary, hints the Bishop, that we consider Jonah as tombed in the +whale’s belly, but as temporarily lodged in some part of his mouth. And +this seems reasonable enough in the good Bishop. For truly, the Right +Whale’s mouth would accommodate a couple of whist-tables, and +comfortably seat all the players. Possibly, too, Jonah might have +ensconced himself in a hollow tooth; but, on second thoughts, the Right +Whale is toothless. + +Another reason which Sag-Harbor (he went by that name) urged for his +want of faith in this matter of the prophet, was something obscurely in +reference to his incarcerated body and the whale’s gastric juices. But +this objection likewise falls to the ground, because a German exegetist +supposes that Jonah must have taken refuge in the floating body of a +_dead_ whale—even as the French soldiers in the Russian campaign turned +their dead horses into tents, and crawled into them. Besides, it has +been divined by other continental commentators, that when Jonah was +thrown overboard from the Joppa ship, he straightway effected his +escape to another vessel near by, some vessel with a whale for a +figure-head; and, I would add, possibly called “The Whale,” as some +craft are nowadays christened the “Shark,” the “Gull,” the “Eagle.” Nor +have there been wanting learned exegetists who have opined that the +whale mentioned in the book of Jonah merely meant a life-preserver—an +inflated bag of wind—which the endangered prophet swam to, and so was +saved from a watery doom. Poor Sag-Harbor, therefore, seems worsted all +round. But he had still another reason for his want of faith. It was +this, if I remember right: Jonah was swallowed by the whale in the +Mediterranean Sea, and after three days he was vomited up somewhere +within three days’ journey of Nineveh, a city on the Tigris, very much +more than three days’ journey across from the nearest point of the +Mediterranean coast. How is that? + +But was there no other way for the whale to land the prophet within +that short distance of Nineveh? Yes. He might have carried him round by +the way of the Cape of Good Hope. But not to speak of the passage +through the whole length of the Mediterranean, and another passage up +the Persian Gulf and Red Sea, such a supposition would involve the +complete circumnavigation of all Africa in three days, not to speak of +the Tigris waters, near the site of Nineveh, being too shallow for any +whale to swim in. Besides, this idea of Jonah’s weathering the Cape of +Good Hope at so early a day would wrest the honor of the discovery of +that great headland from Bartholomew Diaz, its reputed discoverer, and +so make modern history a liar. + +But all these foolish arguments of old Sag-Harbor only evinced his +foolish pride of reason—a thing still more reprehensible in him, seeing +that he had but little learning except what he had picked up from the +sun and the sea. I say it only shows his foolish, impious pride, and +abominable, devilish rebellion against the reverend clergy. For by a +Portuguese Catholic priest, this very idea of Jonah’s going to Nineveh +via the Cape of Good Hope was advanced as a signal magnification of the +general miracle. And so it was. Besides, to this day, the highly +enlightened Turks devoutly believe in the historical story of Jonah. +And some three centuries ago, an English traveller in old Harris’s +Voyages, speaks of a Turkish Mosque built in honor of Jonah, in which +Mosque was a miraculous lamp that burnt without any oil. + + +CHAPTER 84. Pitchpoling. + +To make them run easily and swiftly, the axles of carriages are +anointed; and for much the same purpose, some whalers perform an +analogous operation upon their boat; they grease the bottom. Nor is it +to be doubted that as such a procedure can do no harm, it may possibly +be of no contemptible advantage; considering that oil and water are +hostile; that oil is a sliding thing, and that the object in view is to +make the boat slide bravely. Queequeg believed strongly in anointing +his boat, and one morning not long after the German ship Jungfrau +disappeared, took more than customary pains in that occupation; +crawling under its bottom, where it hung over the side, and rubbing in +the unctuousness as though diligently seeking to insure a crop of hair +from the craft’s bald keel. He seemed to be working in obedience to +some particular presentiment. Nor did it remain unwarranted by the +event. + +Towards noon whales were raised; but so soon as the ship sailed down to +them, they turned and fled with swift precipitancy; a disordered +flight, as of Cleopatra’s barges from Actium. + +Nevertheless, the boats pursued, and Stubb’s was foremost. By great +exertion, Tashtego at last succeeded in planting one iron; but the +stricken whale, without at all sounding, still continued his horizontal +flight, with added fleetness. Such unintermitted strainings upon the +planted iron must sooner or later inevitably extract it. It became +imperative to lance the flying whale, or be content to lose him. But to +haul the boat up to his flank was impossible, he swam so fast and +furious. What then remained? + +Of all the wondrous devices and dexterities, the sleights of hand and +countless subtleties, to which the veteran whaleman is so often forced, +none exceed that fine manœuvre with the lance called pitchpoling. Small +sword, or broad sword, in all its exercises boasts nothing like it. It +is only indispensable with an inveterate running whale; its grand fact +and feature is the wonderful distance to which the long lance is +accurately darted from a violently rocking, jerking boat, under extreme +headway. Steel and wood included, the entire spear is some ten or +twelve feet in length; the staff is much slighter than that of the +harpoon, and also of a lighter material—pine. It is furnished with a +small rope called a warp, of considerable length, by which it can be +hauled back to the hand after darting. + +But before going further, it is important to mention here, that though +the harpoon may be pitchpoled in the same way with the lance, yet it is +seldom done; and when done, is still less frequently successful, on +account of the greater weight and inferior length of the harpoon as +compared with the lance, which in effect become serious drawbacks. As a +general thing, therefore, you must first get fast to a whale, before +any pitchpoling comes into play. + +Look now at Stubb; a man who from his humorous, deliberate coolness and +equanimity in the direst emergencies, was specially qualified to excel +in pitchpoling. Look at him; he stands upright in the tossed bow of the +flying boat; wrapt in fleecy foam, the towing whale is forty feet +ahead. Handling the long lance lightly, glancing twice or thrice along +its length to see if it be exactly straight, Stubb whistlingly gathers +up the coil of the warp in one hand, so as to secure its free end in +his grasp, leaving the rest unobstructed. Then holding the lance full +before his waistband’s middle, he levels it at the whale; when, +covering him with it, he steadily depresses the butt-end in his hand, +thereby elevating the point till the weapon stands fairly balanced upon +his palm, fifteen feet in the air. He minds you somewhat of a juggler, +balancing a long staff on his chin. Next moment with a rapid, nameless +impulse, in a superb lofty arch the bright steel spans the foaming +distance, and quivers in the life spot of the whale. Instead of +sparkling water, he now spouts red blood. + +“That drove the spigot out of him!” cried Stubb. “’Tis July’s immortal +Fourth; all fountains must run wine today! Would now, it were old +Orleans whiskey, or old Ohio, or unspeakable old Monongahela! Then, +Tashtego, lad, I’d have ye hold a canakin to the jet, and we’d drink +round it! Yea, verily, hearts alive, we’d brew choice punch in the +spread of his spout-hole there, and from that live punch-bowl quaff the +living stuff.” + +Again and again to such gamesome talk, the dexterous dart is repeated, +the spear returning to its master like a greyhound held in skilful +leash. The agonized whale goes into his flurry; the tow-line is +slackened, and the pitchpoler dropping astern, folds his hands, and +mutely watches the monster die. + + +CHAPTER 85. The Fountain. + +That for six thousand years—and no one knows how many millions of ages +before—the great whales should have been spouting all over the sea, and +sprinkling and mistifying the gardens of the deep, as with so many +sprinkling or mistifying pots; and that for some centuries back, +thousands of hunters should have been close by the fountain of the +whale, watching these sprinklings and spoutings—that all this should +be, and yet, that down to this blessed minute (fifteen and a quarter +minutes past one o’clock P.M. of this sixteenth day of December, A.D. +1851), it should still remain a problem, whether these spoutings are, +after all, really water, or nothing but vapor—this is surely a +noteworthy thing. + +Let us, then, look at this matter, along with some interesting items +contingent. Every one knows that by the peculiar cunning of their +gills, the finny tribes in general breathe the air which at all times +is combined with the element in which they swim; hence, a herring or a +cod might live a century, and never once raise its head above the +surface. But owing to his marked internal structure which gives him +regular lungs, like a human being’s, the whale can only live by +inhaling the disengaged air in the open atmosphere. Wherefore the +necessity for his periodical visits to the upper world. But he cannot +in any degree breathe through his mouth, for, in his ordinary attitude, +the Sperm Whale’s mouth is buried at least eight feet beneath the +surface; and what is still more, his windpipe has no connexion with his +mouth. No, he breathes through his spiracle alone; and this is on the +top of his head. + +If I say, that in any creature breathing is only a function +indispensable to vitality, inasmuch as it withdraws from the air a +certain element, which being subsequently brought into contact with the +blood imparts to the blood its vivifying principle, I do not think I +shall err; though I may possibly use some superfluous scientific words. +Assume it, and it follows that if all the blood in a man could be +aerated with one breath, he might then seal up his nostrils and not +fetch another for a considerable time. That is to say, he would then +live without breathing. Anomalous as it may seem, this is precisely the +case with the whale, who systematically lives, by intervals, his full +hour and more (when at the bottom) without drawing a single breath, or +so much as in any way inhaling a particle of air; for, remember, he has +no gills. How is this? Between his ribs and on each side of his spine +he is supplied with a remarkable involved Cretan labyrinth of +vermicelli-like vessels, which vessels, when he quits the surface, are +completely distended with oxygenated blood. So that for an hour or +more, a thousand fathoms in the sea, he carries a surplus stock of +vitality in him, just as the camel crossing the waterless desert +carries a surplus supply of drink for future use in its four +supplementary stomachs. The anatomical fact of this labyrinth is +indisputable; and that the supposition founded upon it is reasonable +and true, seems the more cogent to me, when I consider the otherwise +inexplicable obstinacy of that leviathan in _having his spoutings out_, +as the fishermen phrase it. This is what I mean. If unmolested, upon +rising to the surface, the Sperm Whale will continue there for a period +of time exactly uniform with all his other unmolested risings. Say he +stays eleven minutes, and jets seventy times, that is, respires seventy +breaths; then whenever he rises again, he will be sure to have his +seventy breaths over again, to a minute. Now, if after he fetches a few +breaths you alarm him, so that he sounds, he will be always dodging up +again to make good his regular allowance of air. And not till those +seventy breaths are told, will he finally go down to stay out his full +term below. Remark, however, that in different individuals these rates +are different; but in any one they are alike. Now, why should the whale +thus insist upon having his spoutings out, unless it be to replenish +his reservoir of air, ere descending for good? How obvious is it, too, +that this necessity for the whale’s rising exposes him to all the fatal +hazards of the chase. For not by hook or by net could this vast +leviathan be caught, when sailing a thousand fathoms beneath the +sunlight. Not so much thy skill, then, O hunter, as the great +necessities that strike the victory to thee! + +In man, breathing is incessantly going on—one breath only serving for +two or three pulsations; so that whatever other business he has to +attend to, waking or sleeping, breathe he must, or die he will. But the +Sperm Whale only breathes about one seventh or Sunday of his time. + +It has been said that the whale only breathes through his spout-hole; +if it could truthfully be added that his spouts are mixed with water, +then I opine we should be furnished with the reason why his sense of +smell seems obliterated in him; for the only thing about him that at +all answers to his nose is that identical spout-hole; and being so +clogged with two elements, it could not be expected to have the power +of smelling. But owing to the mystery of the spout—whether it be water +or whether it be vapor—no absolute certainty can as yet be arrived at +on this head. Sure it is, nevertheless, that the Sperm Whale has no +proper olfactories. But what does he want of them? No roses, no +violets, no Cologne-water in the sea. + +Furthermore, as his windpipe solely opens into the tube of his spouting +canal, and as that long canal—like the grand Erie Canal—is furnished +with a sort of locks (that open and shut) for the downward retention of +air or the upward exclusion of water, therefore the whale has no voice; +unless you insult him by saying, that when he so strangely rumbles, he +talks through his nose. But then again, what has the whale to say? +Seldom have I known any profound being that had anything to say to this +world, unless forced to stammer out something by way of getting a +living. Oh! happy that the world is such an excellent listener! + +Now, the spouting canal of the Sperm Whale, chiefly intended as it is +for the conveyance of air, and for several feet laid along, +horizontally, just beneath the upper surface of his head, and a little +to one side; this curious canal is very much like a gas-pipe laid down +in a city on one side of a street. But the question returns whether +this gas-pipe is also a water-pipe; in other words, whether the spout +of the Sperm Whale is the mere vapor of the exhaled breath, or whether +that exhaled breath is mixed with water taken in at the mouth, and +discharged through the spiracle. It is certain that the mouth +indirectly communicates with the spouting canal; but it cannot be +proved that this is for the purpose of discharging water through the +spiracle. Because the greatest necessity for so doing would seem to be, +when in feeding he accidentally takes in water. But the Sperm Whale’s +food is far beneath the surface, and there he cannot spout even if he +would. Besides, if you regard him very closely, and time him with your +watch, you will find that when unmolested, there is an undeviating +rhyme between the periods of his jets and the ordinary periods of +respiration. + +But why pester one with all this reasoning on the subject? Speak out! +You have seen him spout; then declare what the spout is; can you not +tell water from air? My dear sir, in this world it is not so easy to +settle these plain things. I have ever found your plain things the +knottiest of all. And as for this whale spout, you might almost stand +in it, and yet be undecided as to what it is precisely. + +The central body of it is hidden in the snowy sparkling mist enveloping +it; and how can you certainly tell whether any water falls from it, +when, always, when you are close enough to a whale to get a close view +of his spout, he is in a prodigious commotion, the water cascading all +around him. And if at such times you should think that you really +perceived drops of moisture in the spout, how do you know that they are +not merely condensed from its vapor; or how do you know that they are +not those identical drops superficially lodged in the spout-hole +fissure, which is countersunk into the summit of the whale’s head? For +even when tranquilly swimming through the mid-day sea in a calm, with +his elevated hump sun-dried as a dromedary’s in the desert; even then, +the whale always carries a small basin of water on his head, as under a +blazing sun you will sometimes see a cavity in a rock filled up with +rain. + +Nor is it at all prudent for the hunter to be over curious touching the +precise nature of the whale spout. It will not do for him to be peering +into it, and putting his face in it. You cannot go with your pitcher to +this fountain and fill it, and bring it away. For even when coming into +slight contact with the outer, vapory shreds of the jet, which will +often happen, your skin will feverishly smart, from the acridness of +the thing so touching it. And I know one, who coming into still closer +contact with the spout, whether with some scientific object in view, or +otherwise, I cannot say, the skin peeled off from his cheek and arm. +Wherefore, among whalemen, the spout is deemed poisonous; they try to +evade it. Another thing; I have heard it said, and I do not much doubt +it, that if the jet is fairly spouted into your eyes, it will blind +you. The wisest thing the investigator can do then, it seems to me, is +to let this deadly spout alone. + +Still, we can hypothesize, even if we cannot prove and establish. My +hypothesis is this: that the spout is nothing but mist. And besides +other reasons, to this conclusion I am impelled, by considerations +touching the great inherent dignity and sublimity of the Sperm Whale; I +account him no common, shallow being, inasmuch as it is an undisputed +fact that he is never found on soundings, or near shores; all other +whales sometimes are. He is both ponderous and profound. And I am +convinced that from the heads of all ponderous profound beings, such as +Plato, Pyrrho, the Devil, Jupiter, Dante, and so on, there always goes +up a certain semi-visible steam, while in the act of thinking deep +thoughts. While composing a little treatise on Eternity, I had the +curiosity to place a mirror before me; and ere long saw reflected +there, a curious involved worming and undulation in the atmosphere over +my head. The invariable moisture of my hair, while plunged in deep +thought, after six cups of hot tea in my thin shingled attic, of an +August noon; this seems an additional argument for the above +supposition. + +And how nobly it raises our conceit of the mighty, misty monster, to +behold him solemnly sailing through a calm tropical sea; his vast, mild +head overhung by a canopy of vapor, engendered by his incommunicable +contemplations, and that vapor—as you will sometimes see it—glorified +by a rainbow, as if Heaven itself had put its seal upon his thoughts. +For, d’ye see, rainbows do not visit the clear air; they only irradiate +vapor. And so, through all the thick mists of the dim doubts in my +mind, divine intuitions now and then shoot, enkindling my fog with a +heavenly ray. And for this I thank God; for all have doubts; many deny; +but doubts or denials, few along with them, have intuitions. Doubts of +all things earthly, and intuitions of some things heavenly; this +combination makes neither believer nor infidel, but makes a man who +regards them both with equal eye. + + +CHAPTER 86. The Tail. + +Other poets have warbled the praises of the soft eye of the antelope, +and the lovely plumage of the bird that never alights; less celestial, +I celebrate a tail. + +Reckoning the largest sized Sperm Whale’s tail to begin at that point +of the trunk where it tapers to about the girth of a man, it comprises +upon its upper surface alone, an area of at least fifty square feet. +The compact round body of its root expands into two broad, firm, flat +palms or flukes, gradually shoaling away to less than an inch in +thickness. At the crotch or junction, these flukes slightly overlap, +then sideways recede from each other like wings, leaving a wide vacancy +between. In no living thing are the lines of beauty more exquisitely +defined than in the crescentic borders of these flukes. At its utmost +expansion in the full grown whale, the tail will considerably exceed +twenty feet across. + +The entire member seems a dense webbed bed of welded sinews; but cut +into it, and you find that three distinct strata compose it:—upper, +middle, and lower. The fibres in the upper and lower layers, are long +and horizontal; those of the middle one, very short, and running +crosswise between the outside layers. This triune structure, as much as +anything else, imparts power to the tail. To the student of old Roman +walls, the middle layer will furnish a curious parallel to the thin +course of tiles always alternating with the stone in those wonderful +relics of the antique, and which undoubtedly contribute so much to the +great strength of the masonry. + +But as if this vast local power in the tendinous tail were not enough, +the whole bulk of the leviathan is knit over with a warp and woof of +muscular fibres and filaments, which passing on either side the loins +and running down into the flukes, insensibly blend with them, and +largely contribute to their might; so that in the tail the confluent +measureless force of the whole whale seems concentrated to a point. +Could annihilation occur to matter, this were the thing to do it. + +Nor does this—its amazing strength, at all tend to cripple the graceful +flexion of its motions; where infantileness of ease undulates through a +Titanism of power. On the contrary, those motions derive their most +appalling beauty from it. Real strength never impairs beauty or +harmony, but it often bestows it; and in everything imposingly +beautiful, strength has much to do with the magic. Take away the tied +tendons that all over seem bursting from the marble in the carved +Hercules, and its charm would be gone. As devout Eckerman lifted the +linen sheet from the naked corpse of Goethe, he was overwhelmed with +the massive chest of the man, that seemed as a Roman triumphal arch. +When Angelo paints even God the Father in human form, mark what +robustness is there. And whatever they may reveal of the divine love in +the Son, the soft, curled, hermaphroditical Italian pictures, in which +his idea has been most successfully embodied; these pictures, so +destitute as they are of all brawniness, hint nothing of any power, but +the mere negative, feminine one of submission and endurance, which on +all hands it is conceded, form the peculiar practical virtues of his +teachings. + +Such is the subtle elasticity of the organ I treat of, that whether +wielded in sport, or in earnest, or in anger, whatever be the mood it +be in, its flexions are invariably marked by exceeding grace. Therein +no fairy’s arm can transcend it. + +Five great motions are peculiar to it. First, when used as a fin for +progression; Second, when used as a mace in battle; Third, in sweeping; +Fourth, in lobtailing; Fifth, in peaking flukes. + +First: Being horizontal in its position, the Leviathan’s tail acts in a +different manner from the tails of all other sea creatures. It never +wriggles. In man or fish, wriggling is a sign of inferiority. To the +whale, his tail is the sole means of propulsion. Scroll-wise coiled +forwards beneath the body, and then rapidly sprung backwards, it is +this which gives that singular darting, leaping motion to the monster +when furiously swimming. His side-fins only serve to steer by. + +Second: It is a little significant, that while one sperm whale only +fights another sperm whale with his head and jaw, nevertheless, in his +conflicts with man, he chiefly and contemptuously uses his tail. In +striking at a boat, he swiftly curves away his flukes from it, and the +blow is only inflicted by the recoil. If it be made in the unobstructed +air, especially if it descend to its mark, the stroke is then simply +irresistible. No ribs of man or boat can withstand it. Your only +salvation lies in eluding it; but if it comes sideways through the +opposing water, then partly owing to the light buoyancy of the +whale-boat, and the elasticity of its materials, a cracked rib or a +dashed plank or two, a sort of stitch in the side, is generally the +most serious result. These submerged side blows are so often received +in the fishery, that they are accounted mere child’s play. Some one +strips off a frock, and the hole is stopped. + +Third: I cannot demonstrate it, but it seems to me, that in the whale +the sense of touch is concentrated in the tail; for in this respect +there is a delicacy in it only equalled by the daintiness of the +elephant’s trunk. This delicacy is chiefly evinced in the action of +sweeping, when in maidenly gentleness the whale with a certain soft +slowness moves his immense flukes from side to side upon the surface of +the sea; and if he feel but a sailor’s whisker, woe to that sailor, +whiskers and all. What tenderness there is in that preliminary touch! +Had this tail any prehensile power, I should straightway bethink me of +Darmonodes’ elephant that so frequented the flower-market, and with low +salutations presented nosegays to damsels, and then caressed their +zones. On more accounts than one, a pity it is that the whale does not +possess this prehensile virtue in his tail; for I have heard of yet +another elephant, that when wounded in the fight, curved round his +trunk and extracted the dart. + +Fourth: Stealing unawares upon the whale in the fancied security of the +middle of solitary seas, you find him unbent from the vast corpulence +of his dignity, and kitten-like, he plays on the ocean as if it were a +hearth. But still you see his power in his play. The broad palms of his +tail are flirted high into the air; then smiting the surface, the +thunderous concussion resounds for miles. You would almost think a +great gun had been discharged; and if you noticed the light wreath of +vapor from the spiracle at his other extremity, you would think that +that was the smoke from the touch-hole. + +Fifth: As in the ordinary floating posture of the leviathan the flukes +lie considerably below the level of his back, they are then completely +out of sight beneath the surface; but when he is about to plunge into +the deeps, his entire flukes with at least thirty feet of his body are +tossed erect in the air, and so remain vibrating a moment, till they +downwards shoot out of view. Excepting the sublime _breach_—somewhere +else to be described—this peaking of the whale’s flukes is perhaps the +grandest sight to be seen in all animated nature. Out of the bottomless +profundities the gigantic tail seems spasmodically snatching at the +highest heaven. So in dreams, have I seen majestic Satan thrusting +forth his tormented colossal claw from the flame Baltic of Hell. But in +gazing at such scenes, it is all in all what mood you are in; if in the +Dantean, the devils will occur to you; if in that of Isaiah, the +archangels. Standing at the mast-head of my ship during a sunrise that +crimsoned sky and sea, I once saw a large herd of whales in the east, +all heading towards the sun, and for a moment vibrating in concert with +peaked flukes. As it seemed to me at the time, such a grand embodiment +of adoration of the gods was never beheld, even in Persia, the home of +the fire worshippers. As Ptolemy Philopater testified of the African +elephant, I then testified of the whale, pronouncing him the most +devout of all beings. For according to King Juba, the military +elephants of antiquity often hailed the morning with their trunks +uplifted in the profoundest silence. + +The chance comparison in this chapter, between the whale and the +elephant, so far as some aspects of the tail of the one and the trunk +of the other are concerned, should not tend to place those two opposite +organs on an equality, much less the creatures to which they +respectively belong. For as the mightiest elephant is but a terrier to +Leviathan, so, compared with Leviathan’s tail, his trunk is but the +stalk of a lily. The most direful blow from the elephant’s trunk were +as the playful tap of a fan, compared with the measureless crush and +crash of the sperm whale’s ponderous flukes, which in repeated +instances have one after the other hurled entire boats with all their +oars and crews into the air, very much as an Indian juggler tosses his +balls.* + +*Though all comparison in the way of general bulk between the whale and +the elephant is preposterous, inasmuch as in that particular the +elephant stands in much the same respect to the whale that a dog does +to the elephant; nevertheless, there are not wanting some points of +curious similitude; among these is the spout. It is well known that the +elephant will often draw up water or dust in his trunk, and then +elevating it, jet it forth in a stream. + +The more I consider this mighty tail, the more do I deplore my +inability to express it. At times there are gestures in it, which, +though they would well grace the hand of man, remain wholly +inexplicable. In an extensive herd, so remarkable, occasionally, are +these mystic gestures, that I have heard hunters who have declared them +akin to Free-Mason signs and symbols; that the whale, indeed, by these +methods intelligently conversed with the world. Nor are there wanting +other motions of the whale in his general body, full of strangeness, +and unaccountable to his most experienced assailant. Dissect him how I +may, then, I but go skin deep; I know him not, and never will. But if I +know not even the tail of this whale, how understand his head? much +more, how comprehend his face, when face he has none? Thou shalt see my +back parts, my tail, he seems to say, but my face shall not be seen. +But I cannot completely make out his back parts; and hint what he will +about his face, I say again he has no face. + + +CHAPTER 87. The Grand Armada. + +The long and narrow peninsula of Malacca, extending south-eastward from +the territories of Birmah, forms the most southerly point of all Asia. +In a continuous line from that peninsula stretch the long islands of +Sumatra, Java, Bally, and Timor; which, with many others, form a vast +mole, or rampart, lengthwise connecting Asia with Australia, and +dividing the long unbroken Indian ocean from the thickly studded +oriental archipelagoes. This rampart is pierced by several sally-ports +for the convenience of ships and whales; conspicuous among which are +the straits of Sunda and Malacca. By the straits of Sunda, chiefly, +vessels bound to China from the west, emerge into the China seas. + +Those narrow straits of Sunda divide Sumatra from Java; and standing +midway in that vast rampart of islands, buttressed by that bold green +promontory, known to seamen as Java Head; they not a little correspond +to the central gateway opening into some vast walled empire: and +considering the inexhaustible wealth of spices, and silks, and jewels, +and gold, and ivory, with which the thousand islands of that oriental +sea are enriched, it seems a significant provision of nature, that such +treasures, by the very formation of the land, should at least bear the +appearance, however ineffectual, of being guarded from the all-grasping +western world. The shores of the Straits of Sunda are unsupplied with +those domineering fortresses which guard the entrances to the +Mediterranean, the Baltic, and the Propontis. Unlike the Danes, these +Orientals do not demand the obsequious homage of lowered top-sails from +the endless procession of ships before the wind, which for centuries +past, by night and by day, have passed between the islands of Sumatra +and Java, freighted with the costliest cargoes of the east. But while +they freely waive a ceremonial like this, they do by no means renounce +their claim to more solid tribute. + +Time out of mind the piratical proas of the Malays, lurking among the +low shaded coves and islets of Sumatra, have sallied out upon the +vessels sailing through the straits, fiercely demanding tribute at the +point of their spears. Though by the repeated bloody chastisements they +have received at the hands of European cruisers, the audacity of these +corsairs has of late been somewhat repressed; yet, even at the present +day, we occasionally hear of English and American vessels, which, in +those waters, have been remorselessly boarded and pillaged. + +With a fair, fresh wind, the Pequod was now drawing nigh to these +straits; Ahab purposing to pass through them into the Javan sea, and +thence, cruising northwards, over waters known to be frequented here +and there by the Sperm Whale, sweep inshore by the Philippine Islands, +and gain the far coast of Japan, in time for the great whaling season +there. By these means, the circumnavigating Pequod would sweep almost +all the known Sperm Whale cruising grounds of the world, previous to +descending upon the Line in the Pacific; where Ahab, though everywhere +else foiled in his pursuit, firmly counted upon giving battle to Moby +Dick, in the sea he was most known to frequent; and at a season when he +might most reasonably be presumed to be haunting it. + +But how now? in this zoned quest, does Ahab touch no land? does his +crew drink air? Surely, he will stop for water. Nay. For a long time, +now, the circus-running sun has raced within his fiery ring, and needs +no sustenance but what’s in himself. So Ahab. Mark this, too, in the +whaler. While other hulls are loaded down with alien stuff, to be +transferred to foreign wharves; the world-wandering whale-ship carries +no cargo but herself and crew, their weapons and their wants. She has a +whole lake’s contents bottled in her ample hold. She is ballasted with +utilities; not altogether with unusable pig-lead and kentledge. She +carries years’ water in her. Clear old prime Nantucket water; which, +when three years afloat, the Nantucketer, in the Pacific, prefers to +drink before the brackish fluid, but yesterday rafted off in casks, +from the Peruvian or Indian streams. Hence it is, that, while other +ships may have gone to China from New York, and back again, touching at +a score of ports, the whale-ship, in all that interval, may not have +sighted one grain of soil; her crew having seen no man but floating +seamen like themselves. So that did you carry them the news that +another flood had come; they would only answer—“Well, boys, here’s the +ark!” + +Now, as many Sperm Whales had been captured off the western coast of +Java, in the near vicinity of the Straits of Sunda; indeed, as most of +the ground, roundabout, was generally recognised by the fishermen as an +excellent spot for cruising; therefore, as the Pequod gained more and +more upon Java Head, the look-outs were repeatedly hailed, and +admonished to keep wide awake. But though the green palmy cliffs of the +land soon loomed on the starboard bow, and with delighted nostrils the +fresh cinnamon was snuffed in the air, yet not a single jet was +descried. Almost renouncing all thought of falling in with any game +hereabouts, the ship had well nigh entered the straits, when the +customary cheering cry was heard from aloft, and ere long a spectacle +of singular magnificence saluted us. + +But here be it premised, that owing to the unwearied activity with +which of late they have been hunted over all four oceans, the Sperm +Whales, instead of almost invariably sailing in small detached +companies, as in former times, are now frequently met with in extensive +herds, sometimes embracing so great a multitude, that it would almost +seem as if numerous nations of them had sworn solemn league and +covenant for mutual assistance and protection. To this aggregation of +the Sperm Whale into such immense caravans, may be imputed the +circumstance that even in the best cruising grounds, you may now +sometimes sail for weeks and months together, without being greeted by +a single spout; and then be suddenly saluted by what sometimes seems +thousands on thousands. + +Broad on both bows, at the distance of some two or three miles, and +forming a great semicircle, embracing one half of the level horizon, a +continuous chain of whale-jets were up-playing and sparkling in the +noon-day air. Unlike the straight perpendicular twin-jets of the Right +Whale, which, dividing at top, fall over in two branches, like the +cleft drooping boughs of a willow, the single forward-slanting spout of +the Sperm Whale presents a thick curled bush of white mist, continually +rising and falling away to leeward. + +Seen from the Pequod’s deck, then, as she would rise on a high hill of +the sea, this host of vapory spouts, individually curling up into the +air, and beheld through a blending atmosphere of bluish haze, showed +like the thousand cheerful chimneys of some dense metropolis, descried +of a balmy autumnal morning, by some horseman on a height. + +As marching armies approaching an unfriendly defile in the mountains, +accelerate their march, all eagerness to place that perilous passage in +their rear, and once more expand in comparative security upon the +plain; even so did this vast fleet of whales now seem hurrying forward +through the straits; gradually contracting the wings of their +semicircle, and swimming on, in one solid, but still crescentic centre. + +Crowding all sail the Pequod pressed after them; the harpooneers +handling their weapons, and loudly cheering from the heads of their yet +suspended boats. If the wind only held, little doubt had they, that +chased through these Straits of Sunda, the vast host would only deploy +into the Oriental seas to witness the capture of not a few of their +number. And who could tell whether, in that congregated caravan, Moby +Dick himself might not temporarily be swimming, like the worshipped +white-elephant in the coronation procession of the Siamese! So with +stun-sail piled on stun-sail, we sailed along, driving these leviathans +before us; when, of a sudden, the voice of Tashtego was heard, loudly +directing attention to something in our wake. + +Corresponding to the crescent in our van, we beheld another in our +rear. It seemed formed of detached white vapors, rising and falling +something like the spouts of the whales; only they did not so +completely come and go; for they constantly hovered, without finally +disappearing. Levelling his glass at this sight, Ahab quickly revolved +in his pivot-hole, crying, “Aloft there, and rig whips and buckets to +wet the sails;—Malays, sir, and after us!” + +As if too long lurking behind the headlands, till the Pequod should +fairly have entered the straits, these rascally Asiatics were now in +hot pursuit, to make up for their over-cautious delay. But when the +swift Pequod, with a fresh leading wind, was herself in hot chase; how +very kind of these tawny philanthropists to assist in speeding her on +to her own chosen pursuit,—mere riding-whips and rowels to her, that +they were. As with glass under arm, Ahab to-and-fro paced the deck; in +his forward turn beholding the monsters he chased, and in the after one +the bloodthirsty pirates chasing _him_; some such fancy as the above +seemed his. And when he glanced upon the green walls of the watery +defile in which the ship was then sailing, and bethought him that +through that gate lay the route to his vengeance, and beheld, how that +through that same gate he was now both chasing and being chased to his +deadly end; and not only that, but a herd of remorseless wild pirates +and inhuman atheistical devils were infernally cheering him on with +their curses;—when all these conceits had passed through his brain, +Ahab’s brow was left gaunt and ribbed, like the black sand beach after +some stormy tide has been gnawing it, without being able to drag the +firm thing from its place. + +But thoughts like these troubled very few of the reckless crew; and +when, after steadily dropping and dropping the pirates astern, the +Pequod at last shot by the vivid green Cockatoo Point on the Sumatra +side, emerging at last upon the broad waters beyond; then, the +harpooneers seemed more to grieve that the swift whales had been +gaining upon the ship, than to rejoice that the ship had so +victoriously gained upon the Malays. But still driving on in the wake +of the whales, at length they seemed abating their speed; gradually the +ship neared them; and the wind now dying away, word was passed to +spring to the boats. But no sooner did the herd, by some presumed +wonderful instinct of the Sperm Whale, become notified of the three +keels that were after them,—though as yet a mile in their rear,—than +they rallied again, and forming in close ranks and battalions, so that +their spouts all looked like flashing lines of stacked bayonets, moved +on with redoubled velocity. + +Stripped to our shirts and drawers, we sprang to the white-ash, and +after several hours’ pulling were almost disposed to renounce the +chase, when a general pausing commotion among the whales gave animating +token that they were now at last under the influence of that strange +perplexity of inert irresolution, which, when the fishermen perceive it +in the whale, they say he is gallied. The compact martial columns in +which they had been hitherto rapidly and steadily swimming, were now +broken up in one measureless rout; and like King Porus’ elephants in +the Indian battle with Alexander, they seemed going mad with +consternation. In all directions expanding in vast irregular circles, +and aimlessly swimming hither and thither, by their short thick +spoutings, they plainly betrayed their distraction of panic. This was +still more strangely evinced by those of their number, who, completely +paralysed as it were, helplessly floated like water-logged dismantled +ships on the sea. Had these Leviathans been but a flock of simple +sheep, pursued over the pasture by three fierce wolves, they could not +possibly have evinced such excessive dismay. But this occasional +timidity is characteristic of almost all herding creatures. Though +banding together in tens of thousands, the lion-maned buffaloes of the +West have fled before a solitary horseman. Witness, too, all human +beings, how when herded together in the sheepfold of a theatre’s pit, +they will, at the slightest alarm of fire, rush helter-skelter for the +outlets, crowding, trampling, jamming, and remorselessly dashing each +other to death. Best, therefore, withhold any amazement at the +strangely gallied whales before us, for there is no folly of the beasts +of the earth which is not infinitely outdone by the madness of men. + +Though many of the whales, as has been said, were in violent motion, +yet it is to be observed that as a whole the herd neither advanced nor +retreated, but collectively remained in one place. As is customary in +those cases, the boats at once separated, each making for some one lone +whale on the outskirts of the shoal. In about three minutes’ time, +Queequeg’s harpoon was flung; the stricken fish darted blinding spray +in our faces, and then running away with us like light, steered +straight for the heart of the herd. Though such a movement on the part +of the whale struck under such circumstances, is in no wise +unprecedented; and indeed is almost always more or less anticipated; +yet does it present one of the more perilous vicissitudes of the +fishery. For as the swift monster drags you deeper and deeper into the +frantic shoal, you bid adieu to circumspect life and only exist in a +delirious throb. + +As, blind and deaf, the whale plunged forward, as if by sheer power of +speed to rid himself of the iron leech that had fastened to him; as we +thus tore a white gash in the sea, on all sides menaced as we flew, by +the crazed creatures to and fro rushing about us; our beset boat was +like a ship mobbed by ice-isles in a tempest, and striving to steer +through their complicated channels and straits, knowing not at what +moment it may be locked in and crushed. + +But not a bit daunted, Queequeg steered us manfully; now sheering off +from this monster directly across our route in advance; now edging away +from that, whose colossal flukes were suspended overhead, while all the +time, Starbuck stood up in the bows, lance in hand, pricking out of our +way whatever whales he could reach by short darts, for there was no +time to make long ones. Nor were the oarsmen quite idle, though their +wonted duty was now altogether dispensed with. They chiefly attended to +the shouting part of the business. “Out of the way, Commodore!” cried +one, to a great dromedary that of a sudden rose bodily to the surface, +and for an instant threatened to swamp us. “Hard down with your tail, +there!” cried a second to another, which, close to our gunwale, seemed +calmly cooling himself with his own fan-like extremity. + +All whaleboats carry certain curious contrivances, originally invented +by the Nantucket Indians, called druggs. Two thick squares of wood of +equal size are stoutly clenched together, so that they cross each +other’s grain at right angles; a line of considerable length is then +attached to the middle of this block, and the other end of the line +being looped, it can in a moment be fastened to a harpoon. It is +chiefly among gallied whales that this drugg is used. For then, more +whales are close round you than you can possibly chase at one time. But +sperm whales are not every day encountered; while you may, then, you +must kill all you can. And if you cannot kill them all at once, you +must wing them, so that they can be afterwards killed at your leisure. +Hence it is, that at times like these the drugg, comes into +requisition. Our boat was furnished with three of them. The first and +second were successfully darted, and we saw the whales staggeringly +running off, fettered by the enormous sidelong resistance of the towing +drugg. They were cramped like malefactors with the chain and ball. But +upon flinging the third, in the act of tossing overboard the clumsy +wooden block, it caught under one of the seats of the boat, and in an +instant tore it out and carried it away, dropping the oarsman in the +boat’s bottom as the seat slid from under him. On both sides the sea +came in at the wounded planks, but we stuffed two or three drawers and +shirts in, and so stopped the leaks for the time. + +It had been next to impossible to dart these drugged-harpoons, were it +not that as we advanced into the herd, our whale’s way greatly +diminished; moreover, that as we went still further and further from +the circumference of commotion, the direful disorders seemed waning. So +that when at last the jerking harpoon drew out, and the towing whale +sideways vanished; then, with the tapering force of his parting +momentum, we glided between two whales into the innermost heart of the +shoal, as if from some mountain torrent we had slid into a serene +valley lake. Here the storms in the roaring glens between the outermost +whales, were heard but not felt. In this central expanse the sea +presented that smooth satin-like surface, called a sleek, produced by +the subtle moisture thrown off by the whale in his more quiet moods. +Yes, we were now in that enchanted calm which they say lurks at the +heart of every commotion. And still in the distracted distance we +beheld the tumults of the outer concentric circles, and saw successive +pods of whales, eight or ten in each, swiftly going round and round, +like multiplied spans of horses in a ring; and so closely shoulder to +shoulder, that a Titanic circus-rider might easily have over-arched the +middle ones, and so have gone round on their backs. Owing to the +density of the crowd of reposing whales, more immediately surrounding +the embayed axis of the herd, no possible chance of escape was at +present afforded us. We must watch for a breach in the living wall that +hemmed us in; the wall that had only admitted us in order to shut us +up. Keeping at the centre of the lake, we were occasionally visited by +small tame cows and calves; the women and children of this routed host. + +Now, inclusive of the occasional wide intervals between the revolving +outer circles, and inclusive of the spaces between the various pods in +any one of those circles, the entire area at this juncture, embraced by +the whole multitude, must have contained at least two or three square +miles. At any rate—though indeed such a test at such a time might be +deceptive—spoutings might be discovered from our low boat that seemed +playing up almost from the rim of the horizon. I mention this +circumstance, because, as if the cows and calves had been purposely +locked up in this innermost fold; and as if the wide extent of the herd +had hitherto prevented them from learning the precise cause of its +stopping; or, possibly, being so young, unsophisticated, and every way +innocent and inexperienced; however it may have been, these smaller +whales—now and then visiting our becalmed boat from the margin of the +lake—evinced a wondrous fearlessness and confidence, or else a still +becharmed panic which it was impossible not to marvel at. Like +household dogs they came snuffling round us, right up to our gunwales, +and touching them; till it almost seemed that some spell had suddenly +domesticated them. Queequeg patted their foreheads; Starbuck scratched +their backs with his lance; but fearful of the consequences, for the +time refrained from darting it. + +But far beneath this wondrous world upon the surface, another and still +stranger world met our eyes as we gazed over the side. For, suspended +in those watery vaults, floated the forms of the nursing mothers of the +whales, and those that by their enormous girth seemed shortly to become +mothers. The lake, as I have hinted, was to a considerable depth +exceedingly transparent; and as human infants while suckling will +calmly and fixedly gaze away from the breast, as if leading two +different lives at the time; and while yet drawing mortal nourishment, +be still spiritually feasting upon some unearthly reminiscence;—even so +did the young of these whales seem looking up towards us, but not at +us, as if we were but a bit of Gulfweed in their new-born sight. +Floating on their sides, the mothers also seemed quietly eyeing us. One +of these little infants, that from certain queer tokens seemed hardly a +day old, might have measured some fourteen feet in length, and some six +feet in girth. He was a little frisky; though as yet his body seemed +scarce yet recovered from that irksome position it had so lately +occupied in the maternal reticule; where, tail to head, and all ready +for the final spring, the unborn whale lies bent like a Tartar’s bow. +The delicate side-fins, and the palms of his flukes, still freshly +retained the plaited crumpled appearance of a baby’s ears newly arrived +from foreign parts. + +“Line! line!” cried Queequeg, looking over the gunwale; “him fast! him +fast!—Who line him! Who struck?—Two whale; one big, one little!” + +“What ails ye, man?” cried Starbuck. + +“Look-e here,” said Queequeg, pointing down. + +As when the stricken whale, that from the tub has reeled out hundreds +of fathoms of rope; as, after deep sounding, he floats up again, and +shows the slackened curling line buoyantly rising and spiralling +towards the air; so now, Starbuck saw long coils of the umbilical cord +of Madame Leviathan, by which the young cub seemed still tethered to +its dam. Not seldom in the rapid vicissitudes of the chase, this +natural line, with the maternal end loose, becomes entangled with the +hempen one, so that the cub is thereby trapped. Some of the subtlest +secrets of the seas seemed divulged to us in this enchanted pond. We +saw young Leviathan amours in the deep.* + +*The sperm whale, as with all other species of the Leviathan, but +unlike most other fish, breeds indifferently at all seasons; after a +gestation which may probably be set down at nine months, producing but +one at a time; though in some few known instances giving birth to an +Esau and Jacob:—a contingency provided for in suckling by two teats, +curiously situated, one on each side of the anus; but the breasts +themselves extend upwards from that. When by chance these precious +parts in a nursing whale are cut by the hunter’s lance, the mother’s +pouring milk and blood rivallingly discolour the sea for rods. The milk +is very sweet and rich; it has been tasted by man; it might do well +with strawberries. When overflowing with mutual esteem, the whales +salute _more hominum_. + +And thus, though surrounded by circle upon circle of consternations and +affrights, did these inscrutable creatures at the centre freely and +fearlessly indulge in all peaceful concernments; yea, serenely revelled +in dalliance and delight. But even so, amid the tornadoed Atlantic of +my being, do I myself still for ever centrally disport in mute calm; +and while ponderous planets of unwaning woe revolve round me, deep down +and deep inland there I still bathe me in eternal mildness of joy. + +Meanwhile, as we thus lay entranced, the occasional sudden frantic +spectacles in the distance evinced the activity of the other boats, +still engaged in drugging the whales on the frontier of the host; or +possibly carrying on the war within the first circle, where abundance +of room and some convenient retreats were afforded them. But the sight +of the enraged drugged whales now and then blindly darting to and fro +across the circles, was nothing to what at last met our eyes. It is +sometimes the custom when fast to a whale more than commonly powerful +and alert, to seek to hamstring him, as it were, by sundering or +maiming his gigantic tail-tendon. It is done by darting a short-handled +cutting-spade, to which is attached a rope for hauling it back again. A +whale wounded (as we afterwards learned) in this part, but not +effectually, as it seemed, had broken away from the boat, carrying +along with him half of the harpoon line; and in the extraordinary agony +of the wound, he was now dashing among the revolving circles like the +lone mounted desperado Arnold, at the battle of Saratoga, carrying +dismay wherever he went. + +But agonizing as was the wound of this whale, and an appalling +spectacle enough, any way; yet the peculiar horror with which he seemed +to inspire the rest of the herd, was owing to a cause which at first +the intervening distance obscured from us. But at length we perceived +that by one of the unimaginable accidents of the fishery, this whale +had become entangled in the harpoon-line that he towed; he had also run +away with the cutting-spade in him; and while the free end of the rope +attached to that weapon, had permanently caught in the coils of the +harpoon-line round his tail, the cutting-spade itself had worked loose +from his flesh. So that tormented to madness, he was now churning +through the water, violently flailing with his flexible tail, and +tossing the keen spade about him, wounding and murdering his own +comrades. + +This terrific object seemed to recall the whole herd from their +stationary fright. First, the whales forming the margin of our lake +began to crowd a little, and tumble against each other, as if lifted by +half spent billows from afar; then the lake itself began faintly to +heave and swell; the submarine bridal-chambers and nurseries vanished; +in more and more contracting orbits the whales in the more central +circles began to swim in thickening clusters. Yes, the long calm was +departing. A low advancing hum was soon heard; and then like to the +tumultuous masses of block-ice when the great river Hudson breaks up in +Spring, the entire host of whales came tumbling upon their inner +centre, as if to pile themselves up in one common mountain. Instantly +Starbuck and Queequeg changed places; Starbuck taking the stern. + +“Oars! Oars!” he intensely whispered, seizing the helm—“gripe your +oars, and clutch your souls, now! My God, men, stand by! Shove him off, +you Queequeg—the whale there!—prick him!—hit him! Stand up—stand up, +and stay so! Spring, men—pull, men; never mind their backs—scrape +them!—scrape away!” + +The boat was now all but jammed between two vast black bulks, leaving a +narrow Dardanelles between their long lengths. But by desperate +endeavor we at last shot into a temporary opening; then giving way +rapidly, and at the same time earnestly watching for another outlet. +After many similar hair-breadth escapes, we at last swiftly glided into +what had just been one of the outer circles, but now crossed by random +whales, all violently making for one centre. This lucky salvation was +cheaply purchased by the loss of Queequeg’s hat, who, while standing in +the bows to prick the fugitive whales, had his hat taken clean from his +head by the air-eddy made by the sudden tossing of a pair of broad +flukes close by. + +Riotous and disordered as the universal commotion now was, it soon +resolved itself into what seemed a systematic movement; for having +clumped together at last in one dense body, they then renewed their +onward flight with augmented fleetness. Further pursuit was useless; +but the boats still lingered in their wake to pick up what drugged +whales might be dropped astern, and likewise to secure one which Flask +had killed and waifed. The waif is a pennoned pole, two or three of +which are carried by every boat; and which, when additional game is at +hand, are inserted upright into the floating body of a dead whale, both +to mark its place on the sea, and also as token of prior possession, +should the boats of any other ship draw near. + +The result of this lowering was somewhat illustrative of that sagacious +saying in the Fishery,—the more whales the less fish. Of all the +drugged whales only one was captured. The rest contrived to escape for +the time, but only to be taken, as will hereafter be seen, by some +other craft than the Pequod. + + +CHAPTER 88. Schools and Schoolmasters. + +The previous chapter gave account of an immense body or herd of Sperm +Whales, and there was also then given the probable cause inducing those +vast aggregations. + +Now, though such great bodies are at times encountered, yet, as must +have been seen, even at the present day, small detached bands are +occasionally observed, embracing from twenty to fifty individuals each. +Such bands are known as schools. They generally are of two sorts; those +composed almost entirely of females, and those mustering none but young +vigorous males, or bulls, as they are familiarly designated. + +In cavalier attendance upon the school of females, you invariably see a +male of full grown magnitude, but not old; who, upon any alarm, evinces +his gallantry by falling in the rear and covering the flight of his +ladies. In truth, this gentleman is a luxurious Ottoman, swimming about +over the watery world, surroundingly accompanied by all the solaces and +endearments of the harem. The contrast between this Ottoman and his +concubines is striking; because, while he is always of the largest +leviathanic proportions, the ladies, even at full growth, are not more +than one-third of the bulk of an average-sized male. They are +comparatively delicate, indeed; I dare say, not to exceed half a dozen +yards round the waist. Nevertheless, it cannot be denied, that upon the +whole they are hereditarily entitled to _en bon point_. + +It is very curious to watch this harem and its lord in their indolent +ramblings. Like fashionables, they are for ever on the move in +leisurely search of variety. You meet them on the Line in time for the +full flower of the Equatorial feeding season, having just returned, +perhaps, from spending the summer in the Northern seas, and so cheating +summer of all unpleasant weariness and warmth. By the time they have +lounged up and down the promenade of the Equator awhile, they start for +the Oriental waters in anticipation of the cool season there, and so +evade the other excessive temperature of the year. + +When serenely advancing on one of these journeys, if any strange +suspicious sights are seen, my lord whale keeps a wary eye on his +interesting family. Should any unwarrantably pert young Leviathan +coming that way, presume to draw confidentially close to one of the +ladies, with what prodigious fury the Bashaw assails him, and chases +him away! High times, indeed, if unprincipled young rakes like him are +to be permitted to invade the sanctity of domestic bliss; though do +what the Bashaw will, he cannot keep the most notorious Lothario out of +his bed; for, alas! all fish bed in common. As ashore, the ladies often +cause the most terrible duels among their rival admirers; just so with +the whales, who sometimes come to deadly battle, and all for love. They +fence with their long lower jaws, sometimes locking them together, and +so striving for the supremacy like elks that warringly interweave their +antlers. Not a few are captured having the deep scars of these +encounters,—furrowed heads, broken teeth, scolloped fins; and in some +instances, wrenched and dislocated mouths. + +But supposing the invader of domestic bliss to betake himself away at +the first rush of the harem’s lord, then is it very diverting to watch +that lord. Gently he insinuates his vast bulk among them again and +revels there awhile, still in tantalizing vicinity to young Lothario, +like pious Solomon devoutly worshipping among his thousand concubines. +Granting other whales to be in sight, the fishermen will seldom give +chase to one of these Grand Turks; for these Grand Turks are too lavish +of their strength, and hence their unctuousness is small. As for the +sons and the daughters they beget, why, those sons and daughters must +take care of themselves; at least, with only the maternal help. For +like certain other omnivorous roving lovers that might be named, my +Lord Whale has no taste for the nursery, however much for the bower; +and so, being a great traveller, he leaves his anonymous babies all +over the world; every baby an exotic. In good time, nevertheless, as +the ardour of youth declines; as years and dumps increase; as +reflection lends her solemn pauses; in short, as a general lassitude +overtakes the sated Turk; then a love of ease and virtue supplants the +love for maidens; our Ottoman enters upon the impotent, repentant, +admonitory stage of life, forswears, disbands the harem, and grown to +an exemplary, sulky old soul, goes about all alone among the meridians +and parallels saying his prayers, and warning each young Leviathan from +his amorous errors. + +Now, as the harem of whales is called by the fishermen a school, so is +the lord and master of that school technically known as the +schoolmaster. It is therefore not in strict character, however +admirably satirical, that after going to school himself, he should then +go abroad inculcating not what he learned there, but the folly of it. +His title, schoolmaster, would very naturally seem derived from the +name bestowed upon the harem itself, but some have surmised that the +man who first thus entitled this sort of Ottoman whale, must have read +the memoirs of Vidocq, and informed himself what sort of a +country-schoolmaster that famous Frenchman was in his younger days, and +what was the nature of those occult lessons he inculcated into some of +his pupils. + +The same secludedness and isolation to which the schoolmaster whale +betakes himself in his advancing years, is true of all aged Sperm +Whales. Almost universally, a lone whale—as a solitary Leviathan is +called—proves an ancient one. Like venerable moss-bearded Daniel Boone, +he will have no one near him but Nature herself; and her he takes to +wife in the wilderness of waters, and the best of wives she is, though +she keeps so many moody secrets. + +The schools composing none but young and vigorous males, previously +mentioned, offer a strong contrast to the harem schools. For while +those female whales are characteristically timid, the young males, or +forty-barrel-bulls, as they call them, are by far the most pugnacious +of all Leviathans, and proverbially the most dangerous to encounter; +excepting those wondrous grey-headed, grizzled whales, sometimes met, +and these will fight you like grim fiends exasperated by a penal gout. + +The Forty-barrel-bull schools are larger than the harem schools. Like a +mob of young collegians, they are full of fight, fun, and wickedness, +tumbling round the world at such a reckless, rollicking rate, that no +prudent underwriter would insure them any more than he would a riotous +lad at Yale or Harvard. They soon relinquish this turbulence though, +and when about three-fourths grown, break up, and separately go about +in quest of settlements, that is, harems. + +Another point of difference between the male and female schools is +still more characteristic of the sexes. Say you strike a +Forty-barrel-bull—poor devil! all his comrades quit him. But strike a +member of the harem school, and her companions swim around her with +every token of concern, sometimes lingering so near her and so long, as +themselves to fall a prey. + + +CHAPTER 89. Fast-Fish and Loose-Fish. + +The allusion to the waif and waif-poles in the last chapter but one, +necessitates some account of the laws and regulations of the whale +fishery, of which the waif may be deemed the grand symbol and badge. + +It frequently happens that when several ships are cruising in company, +a whale may be struck by one vessel, then escape, and be finally killed +and captured by another vessel; and herein are indirectly comprised +many minor contingencies, all partaking of this one grand feature. For +example,—after a weary and perilous chase and capture of a whale, the +body may get loose from the ship by reason of a violent storm; and +drifting far away to leeward, be retaken by a second whaler, who, in a +calm, snugly tows it alongside, without risk of life or line. Thus the +most vexatious and violent disputes would often arise between the +fishermen, were there not some written or unwritten, universal, +undisputed law applicable to all cases. + +Perhaps the only formal whaling code authorized by legislative +enactment, was that of Holland. It was decreed by the States-General in +A.D. 1695. But though no other nation has ever had any written whaling +law, yet the American fishermen have been their own legislators and +lawyers in this matter. They have provided a system which for terse +comprehensiveness surpasses Justinian’s Pandects and the By-laws of the +Chinese Society for the Suppression of Meddling with other People’s +Business. Yes; these laws might be engraven on a Queen Anne’s farthing, +or the barb of a harpoon, and worn round the neck, so small are they. + +I. A Fast-Fish belongs to the party fast to it. + +II. A Loose-Fish is fair game for anybody who can soonest catch it. + +But what plays the mischief with this masterly code is the admirable +brevity of it, which necessitates a vast volume of commentaries to +expound it. + +First: What is a Fast-Fish? Alive or dead a fish is technically fast, +when it is connected with an occupied ship or boat, by any medium at +all controllable by the occupant or occupants,—a mast, an oar, a +nine-inch cable, a telegraph wire, or a strand of cobweb, it is all the +same. Likewise a fish is technically fast when it bears a waif, or any +other recognised symbol of possession; so long as the party waifing it +plainly evince their ability at any time to take it alongside, as well +as their intention so to do. + +These are scientific commentaries; but the commentaries of the whalemen +themselves sometimes consist in hard words and harder knocks—the +Coke-upon-Littleton of the fist. True, among the more upright and +honorable whalemen allowances are always made for peculiar cases, where +it would be an outrageous moral injustice for one party to claim +possession of a whale previously chased or killed by another party. But +others are by no means so scrupulous. + +Some fifty years ago there was a curious case of whale-trover litigated +in England, wherein the plaintiffs set forth that after a hard chase of +a whale in the Northern seas; and when indeed they (the plaintiffs) had +succeeded in harpooning the fish; they were at last, through peril of +their lives, obliged to forsake not only their lines, but their boat +itself. Ultimately the defendants (the crew of another ship) came up +with the whale, struck, killed, seized, and finally appropriated it +before the very eyes of the plaintiffs. And when those defendants were +remonstrated with, their captain snapped his fingers in the plaintiffs’ +teeth, and assured them that by way of doxology to the deed he had +done, he would now retain their line, harpoons, and boat, which had +remained attached to the whale at the time of the seizure. Wherefore +the plaintiffs now sued for the recovery of the value of their whale, +line, harpoons, and boat. + +Mr. Erskine was counsel for the defendants; Lord Ellenborough was the +judge. In the course of the defence, the witty Erskine went on to +illustrate his position, by alluding to a recent crim. con. case, +wherein a gentleman, after in vain trying to bridle his wife’s +viciousness, had at last abandoned her upon the seas of life; but in +the course of years, repenting of that step, he instituted an action to +recover possession of her. Erskine was on the other side; and he then +supported it by saying, that though the gentleman had originally +harpooned the lady, and had once had her fast, and only by reason of +the great stress of her plunging viciousness, had at last abandoned +her; yet abandon her he did, so that she became a loose-fish; and +therefore when a subsequent gentleman re-harpooned her, the lady then +became that subsequent gentleman’s property, along with whatever +harpoon might have been found sticking in her. + +Now in the present case Erskine contended that the examples of the +whale and the lady were reciprocally illustrative of each other. + +These pleadings, and the counter pleadings, being duly heard, the very +learned judge in set terms decided, to wit,—That as for the boat, he +awarded it to the plaintiffs, because they had merely abandoned it to +save their lives; but that with regard to the controverted whale, +harpoons, and line, they belonged to the defendants; the whale, because +it was a Loose-Fish at the time of the final capture; and the harpoons +and line because when the fish made off with them, it (the fish) +acquired a property in those articles; and hence anybody who afterwards +took the fish had a right to them. Now the defendants afterwards took +the fish; ergo, the aforesaid articles were theirs. + +A common man looking at this decision of the very learned Judge, might +possibly object to it. But ploughed up to the primary rock of the +matter, the two great principles laid down in the twin whaling laws +previously quoted, and applied and elucidated by Lord Ellenborough in +the above cited case; these two laws touching Fast-Fish and Loose-Fish, +I say, will, on reflection, be found the fundamentals of all human +jurisprudence; for notwithstanding its complicated tracery of +sculpture, the Temple of the Law, like the Temple of the Philistines, +has but two props to stand on. + +Is it not a saying in every one’s mouth, Possession is half of the law: +that is, regardless of how the thing came into possession? But often +possession is the whole of the law. What are the sinews and souls of +Russian serfs and Republican slaves but Fast-Fish, whereof possession +is the whole of the law? What to the rapacious landlord is the widow’s +last mite but a Fast-Fish? What is yonder undetected villain’s marble +mansion with a door-plate for a waif; what is that but a Fast-Fish? +What is the ruinous discount which Mordecai, the broker, gets from poor +Woebegone, the bankrupt, on a loan to keep Woebegone’s family from +starvation; what is that ruinous discount but a Fast-Fish? What is the +Archbishop of Savesoul’s income of £100,000 seized from the scant bread +and cheese of hundreds of thousands of broken-backed laborers (all sure +of heaven without any of Savesoul’s help) what is that globular +£100,000 but a Fast-Fish? What are the Duke of Dunder’s hereditary +towns and hamlets but Fast-Fish? What to that redoubted harpooneer, +John Bull, is poor Ireland, but a Fast-Fish? What to that apostolic +lancer, Brother Jonathan, is Texas but a Fast-Fish? And concerning all +these, is not Possession the whole of the law? + +But if the doctrine of Fast-Fish be pretty generally applicable, the +kindred doctrine of Loose-Fish is still more widely so. That is +internationally and universally applicable. + +What was America in 1492 but a Loose-Fish, in which Columbus struck the +Spanish standard by way of waifing it for his royal master and +mistress? What was Poland to the Czar? What Greece to the Turk? What +India to England? What at last will Mexico be to the United States? All +Loose-Fish. + +What are the Rights of Man and the Liberties of the World but +Loose-Fish? What all men’s minds and opinions but Loose-Fish? What is +the principle of religious belief in them but a Loose-Fish? What to the +ostentatious smuggling verbalists are the thoughts of thinkers but +Loose-Fish? What is the great globe itself but a Loose-Fish? And what +are you, reader, but a Loose-Fish and a Fast-Fish, too? + + +CHAPTER 90. Heads or Tails. + +“De balena vero sufficit, si rex habeat caput, et regina caudam.” +_Bracton, l. 3, c. 3._ + +Latin from the books of the Laws of England, which taken along with the +context, means, that of all whales captured by anybody on the coast of +that land, the King, as Honorary Grand Harpooneer, must have the head, +and the Queen be respectfully presented with the tail. A division +which, in the whale, is much like halving an apple; there is no +intermediate remainder. Now as this law, under a modified form, is to +this day in force in England; and as it offers in various respects a +strange anomaly touching the general law of Fast and Loose-Fish, it is +here treated of in a separate chapter, on the same courteous principle +that prompts the English railways to be at the expense of a separate +car, specially reserved for the accommodation of royalty. In the first +place, in curious proof of the fact that the above-mentioned law is +still in force, I proceed to lay before you a circumstance that +happened within the last two years. + +It seems that some honest mariners of Dover, or Sandwich, or some one +of the Cinque Ports, had after a hard chase succeeded in killing and +beaching a fine whale which they had originally descried afar off from +the shore. Now the Cinque Ports are partially or somehow under the +jurisdiction of a sort of policeman or beadle, called a Lord Warden. +Holding the office directly from the crown, I believe, all the royal +emoluments incident to the Cinque Port territories become by assignment +his. By some writers this office is called a sinecure. But not so. +Because the Lord Warden is busily employed at times in fobbing his +perquisites; which are his chiefly by virtue of that same fobbing of +them. + +Now when these poor sun-burnt mariners, bare-footed, and with their +trowsers rolled high up on their eely legs, had wearily hauled their +fat fish high and dry, promising themselves a good £150 from the +precious oil and bone; and in fantasy sipping rare tea with their +wives, and good ale with their cronies, upon the strength of their +respective shares; up steps a very learned and most Christian and +charitable gentleman, with a copy of Blackstone under his arm; and +laying it upon the whale’s head, he says—“Hands off! this fish, my +masters, is a Fast-Fish. I seize it as the Lord Warden’s.” Upon this +the poor mariners in their respectful consternation—so truly +English—knowing not what to say, fall to vigorously scratching their +heads all round; meanwhile ruefully glancing from the whale to the +stranger. But that did in nowise mend the matter, or at all soften the +hard heart of the learned gentleman with the copy of Blackstone. At +length one of them, after long scratching about for his ideas, made +bold to speak, + +“Please, sir, who is the Lord Warden?” + +“The Duke.” + +“But the duke had nothing to do with taking this fish?” + +“It is his.” + +“We have been at great trouble, and peril, and some expense, and is all +that to go to the Duke’s benefit; we getting nothing at all for our +pains but our blisters?” + +“It is his.” + +“Is the Duke so very poor as to be forced to this desperate mode of +getting a livelihood?” + +“It is his.” + +“I thought to relieve my old bed-ridden mother by part of my share of +this whale.” + +“It is his.” + +“Won’t the Duke be content with a quarter or a half?” + +“It is his.” + +In a word, the whale was seized and sold, and his Grace the Duke of +Wellington received the money. Thinking that viewed in some particular +lights, the case might by a bare possibility in some small degree be +deemed, under the circumstances, a rather hard one, an honest clergyman +of the town respectfully addressed a note to his Grace, begging him to +take the case of those unfortunate mariners into full consideration. To +which my Lord Duke in substance replied (both letters were published) +that he had already done so, and received the money, and would be +obliged to the reverend gentleman if for the future he (the reverend +gentleman) would decline meddling with other people’s business. Is this +the still militant old man, standing at the corners of the three +kingdoms, on all hands coercing alms of beggars? + +It will readily be seen that in this case the alleged right of the Duke +to the whale was a delegated one from the Sovereign. We must needs +inquire then on what principle the Sovereign is originally invested +with that right. The law itself has already been set forth. But Plowdon +gives us the reason for it. Says Plowdon, the whale so caught belongs +to the King and Queen, “because of its superior excellence.” And by the +soundest commentators this has ever been held a cogent argument in such +matters. + +But why should the King have the head, and the Queen the tail? A reason +for that, ye lawyers! + +In his treatise on “Queen-Gold,” or Queen-pinmoney, an old King’s Bench +author, one William Prynne, thus discourseth: “Ye tail is ye Queen’s, +that ye Queen’s wardrobe may be supplied with ye whalebone.” Now this +was written at a time when the black limber bone of the Greenland or +Right whale was largely used in ladies’ bodices. But this same bone is +not in the tail; it is in the head, which is a sad mistake for a +sagacious lawyer like Prynne. But is the Queen a mermaid, to be +presented with a tail? An allegorical meaning may lurk here. + +There are two royal fish so styled by the English law writers—the whale +and the sturgeon; both royal property under certain limitations, and +nominally supplying the tenth branch of the crown’s ordinary revenue. I +know not that any other author has hinted of the matter; but by +inference it seems to me that the sturgeon must be divided in the same +way as the whale, the King receiving the highly dense and elastic head +peculiar to that fish, which, symbolically regarded, may possibly be +humorously grounded upon some presumed congeniality. And thus there +seems a reason in all things, even in law. + + +CHAPTER 91. The Pequod Meets The Rose-Bud. + +“In vain it was to rake for Ambergriese in the paunch of this +Leviathan, insufferable fetor denying not inquiry.” _Sir T. Browne, +V.E._ + +It was a week or two after the last whaling scene recounted, and when +we were slowly sailing over a sleepy, vapory, mid-day sea, that the +many noses on the Pequod’s deck proved more vigilant discoverers than +the three pairs of eyes aloft. A peculiar and not very pleasant smell +was smelt in the sea. + +“I will bet something now,” said Stubb, “that somewhere hereabouts are +some of those drugged whales we tickled the other day. I thought they +would keel up before long.” + +Presently, the vapors in advance slid aside; and there in the distance +lay a ship, whose furled sails betokened that some sort of whale must +be alongside. As we glided nearer, the stranger showed French colours +from his peak; and by the eddying cloud of vulture sea-fowl that +circled, and hovered, and swooped around him, it was plain that the +whale alongside must be what the fishermen call a blasted whale, that +is, a whale that has died unmolested on the sea, and so floated an +unappropriated corpse. It may well be conceived, what an unsavory odor +such a mass must exhale; worse than an Assyrian city in the plague, +when the living are incompetent to bury the departed. So intolerable +indeed is it regarded by some, that no cupidity could persuade them to +moor alongside of it. Yet are there those who will still do it; +notwithstanding the fact that the oil obtained from such subjects is of +a very inferior quality, and by no means of the nature of +attar-of-rose. + +Coming still nearer with the expiring breeze, we saw that the Frenchman +had a second whale alongside; and this second whale seemed even more of +a nosegay than the first. In truth, it turned out to be one of those +problematical whales that seem to dry up and die with a sort of +prodigious dyspepsia, or indigestion; leaving their defunct bodies +almost entirely bankrupt of anything like oil. Nevertheless, in the +proper place we shall see that no knowing fisherman will ever turn up +his nose at such a whale as this, however much he may shun blasted +whales in general. + +The Pequod had now swept so nigh to the stranger, that Stubb vowed he +recognised his cutting spade-pole entangled in the lines that were +knotted round the tail of one of these whales. + +“There’s a pretty fellow, now,” he banteringly laughed, standing in the +ship’s bows, “there’s a jackal for ye! I well know that these Crappoes +of Frenchmen are but poor devils in the fishery; sometimes lowering +their boats for breakers, mistaking them for Sperm Whale spouts; yes, +and sometimes sailing from their port with their hold full of boxes of +tallow candles, and cases of snuffers, foreseeing that all the oil they +will get won’t be enough to dip the Captain’s wick into; aye, we all +know these things; but look ye, here’s a Crappo that is content with +our leavings, the drugged whale there, I mean; aye, and is content too +with scraping the dry bones of that other precious fish he has there. +Poor devil! I say, pass round a hat, some one, and let’s make him a +present of a little oil for dear charity’s sake. For what oil he’ll get +from that drugged whale there, wouldn’t be fit to burn in a jail; no, +not in a condemned cell. And as for the other whale, why, I’ll agree to +get more oil by chopping up and trying out these three masts of ours, +than he’ll get from that bundle of bones; though, now that I think of +it, it may contain something worth a good deal more than oil; yes, +ambergris. I wonder now if our old man has thought of that. It’s worth +trying. Yes, I’m for it;” and so saying he started for the +quarter-deck. + +By this time the faint air had become a complete calm; so that whether +or no, the Pequod was now fairly entrapped in the smell, with no hope +of escaping except by its breezing up again. Issuing from the cabin, +Stubb now called his boat’s crew, and pulled off for the stranger. +Drawing across her bow, he perceived that in accordance with the +fanciful French taste, the upper part of her stem-piece was carved in +the likeness of a huge drooping stalk, was painted green, and for +thorns had copper spikes projecting from it here and there; the whole +terminating in a symmetrical folded bulb of a bright red colour. Upon +her head boards, in large gilt letters, he read “Bouton de +Rose,”—Rose-button, or Rose-bud; and this was the romantic name of this +aromatic ship. + +Though Stubb did not understand the _Bouton_ part of the inscription, +yet the word _rose_, and the bulbous figure-head put together, +sufficiently explained the whole to him. + +“A wooden rose-bud, eh?” he cried with his hand to his nose, “that will +do very well; but how like all creation it smells!” + +Now in order to hold direct communication with the people on deck, he +had to pull round the bows to the starboard side, and thus come close +to the blasted whale; and so talk over it. + +Arrived then at this spot, with one hand still to his nose, he +bawled—“Bouton-de-Rose, ahoy! are there any of you Bouton-de-Roses that +speak English?” + +“Yes,” rejoined a Guernsey-man from the bulwarks, who turned out to be +the chief-mate. + +“Well, then, my Bouton-de-Rose-bud, have you seen the White Whale?” + +“_What_ whale?” + +“The _White_ Whale—a Sperm Whale—Moby Dick, have ye seen him? + +“Never heard of such a whale. Cachalot Blanche! White Whale—no.” + +“Very good, then; good bye now, and I’ll call again in a minute.” + +Then rapidly pulling back towards the Pequod, and seeing Ahab leaning +over the quarter-deck rail awaiting his report, he moulded his two +hands into a trumpet and shouted—“No, Sir! No!” Upon which Ahab +retired, and Stubb returned to the Frenchman. + +He now perceived that the Guernsey-man, who had just got into the +chains, and was using a cutting-spade, had slung his nose in a sort of +bag. + +“What’s the matter with your nose, there?” said Stubb. “Broke it?” + +“I wish it was broken, or that I didn’t have any nose at all!” answered +the Guernsey-man, who did not seem to relish the job he was at very +much. “But what are you holding _yours_ for?” + +“Oh, nothing! It’s a wax nose; I have to hold it on. Fine day, ain’t +it? Air rather gardenny, I should say; throw us a bunch of posies, will +ye, Bouton-de-Rose?” + +“What in the devil’s name do you want here?” roared the Guernseyman, +flying into a sudden passion. + +“Oh! keep cool—cool? yes, that’s the word! why don’t you pack those +whales in ice while you’re working at ’em? But joking aside, though; do +you know, Rose-bud, that it’s all nonsense trying to get any oil out of +such whales? As for that dried up one, there, he hasn’t a gill in his +whole carcase.” + +“I know that well enough; but, d’ye see, the Captain here won’t believe +it; this is his first voyage; he was a Cologne manufacturer before. But +come aboard, and mayhap he’ll believe you, if he won’t me; and so I’ll +get out of this dirty scrape.” + +“Anything to oblige ye, my sweet and pleasant fellow,” rejoined Stubb, +and with that he soon mounted to the deck. There a queer scene +presented itself. The sailors, in tasselled caps of red worsted, were +getting the heavy tackles in readiness for the whales. But they worked +rather slow and talked very fast, and seemed in anything but a good +humor. All their noses upwardly projected from their faces like so many +jib-booms. Now and then pairs of them would drop their work, and run up +to the mast-head to get some fresh air. Some thinking they would catch +the plague, dipped oakum in coal-tar, and at intervals held it to their +nostrils. Others having broken the stems of their pipes almost short +off at the bowl, were vigorously puffing tobacco-smoke, so that it +constantly filled their olfactories. + +Stubb was struck by a shower of outcries and anathemas proceeding from +the Captain’s round-house abaft; and looking in that direction saw a +fiery face thrust from behind the door, which was held ajar from +within. This was the tormented surgeon, who, after in vain +remonstrating against the proceedings of the day, had betaken himself +to the Captain’s round-house (_cabinet_ he called it) to avoid the +pest; but still, could not help yelling out his entreaties and +indignations at times. + +Marking all this, Stubb argued well for his scheme, and turning to the +Guernsey-man had a little chat with him, during which the stranger mate +expressed his detestation of his Captain as a conceited ignoramus, who +had brought them all into so unsavory and unprofitable a pickle. +Sounding him carefully, Stubb further perceived that the Guernsey-man +had not the slightest suspicion concerning the ambergris. He therefore +held his peace on that head, but otherwise was quite frank and +confidential with him, so that the two quickly concocted a little plan +for both circumventing and satirizing the Captain, without his at all +dreaming of distrusting their sincerity. According to this little plan +of theirs, the Guernsey-man, under cover of an interpreter’s office, +was to tell the Captain what he pleased, but as coming from Stubb; and +as for Stubb, he was to utter any nonsense that should come uppermost +in him during the interview. + +By this time their destined victim appeared from his cabin. He was a +small and dark, but rather delicate looking man for a sea-captain, with +large whiskers and moustache, however; and wore a red cotton velvet +vest with watch-seals at his side. To this gentleman, Stubb was now +politely introduced by the Guernsey-man, who at once ostentatiously put +on the aspect of interpreting between them. + +“What shall I say to him first?” said he. + +“Why,” said Stubb, eyeing the velvet vest and the watch and seals, “you +may as well begin by telling him that he looks a sort of babyish to me, +though I don’t pretend to be a judge.” + +“He says, Monsieur,” said the Guernsey-man, in French, turning to his +captain, “that only yesterday his ship spoke a vessel, whose captain +and chief-mate, with six sailors, had all died of a fever caught from a +blasted whale they had brought alongside.” + +Upon this the captain started, and eagerly desired to know more. + +“What now?” said the Guernsey-man to Stubb. + +“Why, since he takes it so easy, tell him that now I have eyed him +carefully, I’m quite certain that he’s no more fit to command a +whale-ship than a St. Jago monkey. In fact, tell him from me he’s a +baboon.” + +“He vows and declares, Monsieur, that the other whale, the dried one, +is far more deadly than the blasted one; in fine, Monsieur, he conjures +us, as we value our lives, to cut loose from these fish.” + +Instantly the captain ran forward, and in a loud voice commanded his +crew to desist from hoisting the cutting-tackles, and at once cast +loose the cables and chains confining the whales to the ship. + +“What now?” said the Guernsey-man, when the Captain had returned to +them. + +“Why, let me see; yes, you may as well tell him now that—that—in fact, +tell him I’ve diddled him, and (aside to himself) perhaps somebody +else.” + +“He says, Monsieur, that he’s very happy to have been of any service to +us.” + +Hearing this, the captain vowed that they were the grateful parties +(meaning himself and mate) and concluded by inviting Stubb down into +his cabin to drink a bottle of Bordeaux. + +“He wants you to take a glass of wine with him,” said the interpreter. + +“Thank him heartily; but tell him it’s against my principles to drink +with the man I’ve diddled. In fact, tell him I must go.” + +“He says, Monsieur, that his principles won’t admit of his drinking; +but that if Monsieur wants to live another day to drink, then Monsieur +had best drop all four boats, and pull the ship away from these whales, +for it’s so calm they won’t drift.” + +By this time Stubb was over the side, and getting into his boat, hailed +the Guernsey-man to this effect,—that having a long tow-line in his +boat, he would do what he could to help them, by pulling out the +lighter whale of the two from the ship’s side. While the Frenchman’s +boats, then, were engaged in towing the ship one way, Stubb +benevolently towed away at his whale the other way, ostentatiously +slacking out a most unusually long tow-line. + +Presently a breeze sprang up; Stubb feigned to cast off from the whale; +hoisting his boats, the Frenchman soon increased his distance, while +the Pequod slid in between him and Stubb’s whale. Whereupon Stubb +quickly pulled to the floating body, and hailing the Pequod to give +notice of his intentions, at once proceeded to reap the fruit of his +unrighteous cunning. Seizing his sharp boat-spade, he commenced an +excavation in the body, a little behind the side fin. You would almost +have thought he was digging a cellar there in the sea; and when at +length his spade struck against the gaunt ribs, it was like turning up +old Roman tiles and pottery buried in fat English loam. His boat’s crew +were all in high excitement, eagerly helping their chief, and looking +as anxious as gold-hunters. + +And all the time numberless fowls were diving, and ducking, and +screaming, and yelling, and fighting around them. Stubb was beginning +to look disappointed, especially as the horrible nosegay increased, +when suddenly from out the very heart of this plague, there stole a +faint stream of perfume, which flowed through the tide of bad smells +without being absorbed by it, as one river will flow into and then +along with another, without at all blending with it for a time. + +“I have it, I have it,” cried Stubb, with delight, striking something +in the subterranean regions, “a purse! a purse!” + +Dropping his spade, he thrust both hands in, and drew out handfuls of +something that looked like ripe Windsor soap, or rich mottled old +cheese; very unctuous and savory withal. You might easily dent it with +your thumb; it is of a hue between yellow and ash colour. And this, +good friends, is ambergris, worth a gold guinea an ounce to any +druggist. Some six handfuls were obtained; but more was unavoidably +lost in the sea, and still more, perhaps, might have been secured were +it not for impatient Ahab’s loud command to Stubb to desist, and come +on board, else the ship would bid them good bye. + + +CHAPTER 92. Ambergris. + +Now this ambergris is a very curious substance, and so important as an +article of commerce, that in 1791 a certain Nantucket-born Captain +Coffin was examined at the bar of the English House of Commons on that +subject. For at that time, and indeed until a comparatively late day, +the precise origin of ambergris remained, like amber itself, a problem +to the learned. Though the word ambergris is but the French compound +for grey amber, yet the two substances are quite distinct. For amber, +though at times found on the sea-coast, is also dug up in some far +inland soils, whereas ambergris is never found except upon the sea. +Besides, amber is a hard, transparent, brittle, odorless substance, +used for mouth-pieces to pipes, for beads and ornaments; but ambergris +is soft, waxy, and so highly fragrant and spicy, that it is largely +used in perfumery, in pastiles, precious candles, hair-powders, and +pomatum. The Turks use it in cooking, and also carry it to Mecca, for +the same purpose that frankincense is carried to St. Peter’s in Rome. +Some wine merchants drop a few grains into claret, to flavor it. + +Who would think, then, that such fine ladies and gentlemen should +regale themselves with an essence found in the inglorious bowels of a +sick whale! Yet so it is. By some, ambergris is supposed to be the +cause, and by others the effect, of the dyspepsia in the whale. How to +cure such a dyspepsia it were hard to say, unless by administering +three or four boat loads of Brandreth’s pills, and then running out of +harm’s way, as laborers do in blasting rocks. + +I have forgotten to say that there were found in this ambergris, +certain hard, round, bony plates, which at first Stubb thought might be +sailors’ trowsers buttons; but it afterwards turned out that they were +nothing more than pieces of small squid bones embalmed in that manner. + +Now that the incorruption of this most fragrant ambergris should be +found in the heart of such decay; is this nothing? Bethink thee of that +saying of St. Paul in Corinthians, about corruption and incorruption; +how that we are sown in dishonor, but raised in glory. And likewise +call to mind that saying of Paracelsus about what it is that maketh the +best musk. Also forget not the strange fact that of all things of +ill-savor, Cologne-water, in its rudimental manufacturing stages, is +the worst. + +I should like to conclude the chapter with the above appeal, but +cannot, owing to my anxiety to repel a charge often made against +whalemen, and which, in the estimation of some already biased minds, +might be considered as indirectly substantiated by what has been said +of the Frenchman’s two whales. Elsewhere in this volume the slanderous +aspersion has been disproved, that the vocation of whaling is +throughout a slatternly, untidy business. But there is another thing to +rebut. They hint that all whales always smell bad. Now how did this +odious stigma originate? + +I opine, that it is plainly traceable to the first arrival of the +Greenland whaling ships in London, more than two centuries ago. Because +those whalemen did not then, and do not now, try out their oil at sea +as the Southern ships have always done; but cutting up the fresh +blubber in small bits, thrust it through the bung holes of large casks, +and carry it home in that manner; the shortness of the season in those +Icy Seas, and the sudden and violent storms to which they are exposed, +forbidding any other course. The consequence is, that upon breaking +into the hold, and unloading one of these whale cemeteries, in the +Greenland dock, a savor is given forth somewhat similar to that arising +from excavating an old city grave-yard, for the foundations of a +Lying-in Hospital. + +I partly surmise also, that this wicked charge against whalers may be +likewise imputed to the existence on the coast of Greenland, in former +times, of a Dutch village called Schmerenburgh or Smeerenberg, which +latter name is the one used by the learned Fogo Von Slack, in his great +work on Smells, a text-book on that subject. As its name imports +(smeer, fat; berg, to put up), this village was founded in order to +afford a place for the blubber of the Dutch whale fleet to be tried +out, without being taken home to Holland for that purpose. It was a +collection of furnaces, fat-kettles, and oil sheds; and when the works +were in full operation certainly gave forth no very pleasant savor. But +all this is quite different with a South Sea Sperm Whaler; which in a +voyage of four years perhaps, after completely filling her hold with +oil, does not, perhaps, consume fifty days in the business of boiling +out; and in the state that it is casked, the oil is nearly scentless. +The truth is, that living or dead, if but decently treated, whales as a +species are by no means creatures of ill odor; nor can whalemen be +recognised, as the people of the middle ages affected to detect a Jew +in the company, by the nose. Nor indeed can the whale possibly be +otherwise than fragrant, when, as a general thing, he enjoys such high +health; taking abundance of exercise; always out of doors; though, it +is true, seldom in the open air. I say, that the motion of a Sperm +Whale’s flukes above water dispenses a perfume, as when a musk-scented +lady rustles her dress in a warm parlor. What then shall I liken the +Sperm Whale to for fragrance, considering his magnitude? Must it not be +to that famous elephant, with jewelled tusks, and redolent with myrrh, +which was led out of an Indian town to do honor to Alexander the Great? + + +CHAPTER 93. The Castaway. + +It was but some few days after encountering the Frenchman, that a most +significant event befell the most insignificant of the Pequod’s crew; +an event most lamentable; and which ended in providing the sometimes +madly merry and predestinated craft with a living and ever accompanying +prophecy of whatever shattered sequel might prove her own. + +Now, in the whale ship, it is not every one that goes in the boats. +Some few hands are reserved called ship-keepers, whose province it is +to work the vessel while the boats are pursuing the whale. As a general +thing, these ship-keepers are as hardy fellows as the men comprising +the boats’ crews. But if there happen to be an unduly slender, clumsy, +or timorous wight in the ship, that wight is certain to be made a +ship-keeper. It was so in the Pequod with the little negro Pippin by +nick-name, Pip by abbreviation. Poor Pip! ye have heard of him before; +ye must remember his tambourine on that dramatic midnight, so +gloomy-jolly. + +In outer aspect, Pip and Dough-Boy made a match, like a black pony and +a white one, of equal developments, though of dissimilar colour, driven +in one eccentric span. But while hapless Dough-Boy was by nature dull +and torpid in his intellects, Pip, though over tender-hearted, was at +bottom very bright, with that pleasant, genial, jolly brightness +peculiar to his tribe; a tribe, which ever enjoy all holidays and +festivities with finer, freer relish than any other race. For blacks, +the year’s calendar should show naught but three hundred and sixty-five +Fourth of Julys and New Year’s Days. Nor smile so, while I write that +this little black was brilliant, for even blackness has its brilliancy; +behold yon lustrous ebony, panelled in king’s cabinets. But Pip loved +life, and all life’s peaceable securities; so that the panic-striking +business in which he had somehow unaccountably become entrapped, had +most sadly blurred his brightness; though, as ere long will be seen, +what was thus temporarily subdued in him, in the end was destined to be +luridly illumined by strange wild fires, that fictitiously showed him +off to ten times the natural lustre with which in his native Tolland +County in Connecticut, he had once enlivened many a fiddler’s frolic on +the green; and at melodious even-tide, with his gay ha-ha! had turned +the round horizon into one star-belled tambourine. So, though in the +clear air of day, suspended against a blue-veined neck, the +pure-watered diamond drop will healthful glow; yet, when the cunning +jeweller would show you the diamond in its most impressive lustre, he +lays it against a gloomy ground, and then lights it up, not by the sun, +but by some unnatural gases. Then come out those fiery effulgences, +infernally superb; then the evil-blazing diamond, once the divinest +symbol of the crystal skies, looks like some crown-jewel stolen from +the King of Hell. But let us to the story. + +It came to pass, that in the ambergris affair Stubb’s after-oarsman +chanced so to sprain his hand, as for a time to become quite maimed; +and, temporarily, Pip was put into his place. + +The first time Stubb lowered with him, Pip evinced much nervousness; +but happily, for that time, escaped close contact with the whale; and +therefore came off not altogether discreditably; though Stubb observing +him, took care, afterwards, to exhort him to cherish his courageousness +to the utmost, for he might often find it needful. + +Now upon the second lowering, the boat paddled upon the whale; and as +the fish received the darted iron, it gave its customary rap, which +happened, in this instance, to be right under poor Pip’s seat. The +involuntary consternation of the moment caused him to leap, paddle in +hand, out of the boat; and in such a way, that part of the slack whale +line coming against his chest, he breasted it overboard with him, so as +to become entangled in it, when at last plumping into the water. That +instant the stricken whale started on a fierce run, the line swiftly +straightened; and presto! poor Pip came all foaming up to the chocks of +the boat, remorselessly dragged there by the line, which had taken +several turns around his chest and neck. + +Tashtego stood in the bows. He was full of the fire of the hunt. He +hated Pip for a poltroon. Snatching the boat-knife from its sheath, he +suspended its sharp edge over the line, and turning towards Stubb, +exclaimed interrogatively, “Cut?” Meantime Pip’s blue, choked face +plainly looked, Do, for God’s sake! All passed in a flash. In less than +half a minute, this entire thing happened. + +“Damn him, cut!” roared Stubb; and so the whale was lost and Pip was +saved. + +So soon as he recovered himself, the poor little negro was assailed by +yells and execrations from the crew. Tranquilly permitting these +irregular cursings to evaporate, Stubb then in a plain, business-like, +but still half humorous manner, cursed Pip officially; and that done, +unofficially gave him much wholesome advice. The substance was, Never +jump from a boat, Pip, except—but all the rest was indefinite, as the +soundest advice ever is. Now, in general, _Stick to the boat_, is your +true motto in whaling; but cases will sometimes happen when _Leap from +the boat_, is still better. Moreover, as if perceiving at last that if +he should give undiluted conscientious advice to Pip, he would be +leaving him too wide a margin to jump in for the future; Stubb suddenly +dropped all advice, and concluded with a peremptory command, “Stick to +the boat, Pip, or by the Lord, I won’t pick you up if you jump; mind +that. We can’t afford to lose whales by the likes of you; a whale would +sell for thirty times what you would, Pip, in Alabama. Bear that in +mind, and don’t jump any more.” Hereby perhaps Stubb indirectly hinted, +that though man loved his fellow, yet man is a money-making animal, +which propensity too often interferes with his benevolence. + +But we are all in the hands of the Gods; and Pip jumped again. It was +under very similar circumstances to the first performance; but this +time he did not breast out the line; and hence, when the whale started +to run, Pip was left behind on the sea, like a hurried traveller’s +trunk. Alas! Stubb was but too true to his word. It was a beautiful, +bounteous, blue day; the spangled sea calm and cool, and flatly +stretching away, all round, to the horizon, like gold-beater’s skin +hammered out to the extremest. Bobbing up and down in that sea, Pip’s +ebon head showed like a head of cloves. No boat-knife was lifted when +he fell so rapidly astern. Stubb’s inexorable back was turned upon him; +and the whale was winged. In three minutes, a whole mile of shoreless +ocean was between Pip and Stubb. Out from the centre of the sea, poor +Pip turned his crisp, curling, black head to the sun, another lonely +castaway, though the loftiest and the brightest. + +Now, in calm weather, to swim in the open ocean is as easy to the +practised swimmer as to ride in a spring-carriage ashore. But the awful +lonesomeness is intolerable. The intense concentration of self in the +middle of such a heartless immensity, my God! who can tell it? Mark, +how when sailors in a dead calm bathe in the open sea—mark how closely +they hug their ship and only coast along her sides. + +But had Stubb really abandoned the poor little negro to his fate? No; +he did not mean to, at least. Because there were two boats in his wake, +and he supposed, no doubt, that they would of course come up to Pip +very quickly, and pick him up; though, indeed, such considerations +towards oarsmen jeopardized through their own timidity, is not always +manifested by the hunters in all similar instances; and such instances +not unfrequently occur; almost invariably in the fishery, a coward, so +called, is marked with the same ruthless detestation peculiar to +military navies and armies. + +But it so happened, that those boats, without seeing Pip, suddenly +spying whales close to them on one side, turned, and gave chase; and +Stubb’s boat was now so far away, and he and all his crew so intent +upon his fish, that Pip’s ringed horizon began to expand around him +miserably. By the merest chance the ship itself at last rescued him; +but from that hour the little negro went about the deck an idiot; such, +at least, they said he was. The sea had jeeringly kept his finite body +up, but drowned the infinite of his soul. Not drowned entirely, though. +Rather carried down alive to wondrous depths, where strange shapes of +the unwarped primal world glided to and fro before his passive eyes; +and the miser-merman, Wisdom, revealed his hoarded heaps; and among the +joyous, heartless, ever-juvenile eternities, Pip saw the multitudinous, +God-omnipresent, coral insects, that out of the firmament of waters +heaved the colossal orbs. He saw God’s foot upon the treadle of the +loom, and spoke it; and therefore his shipmates called him mad. So +man’s insanity is heaven’s sense; and wandering from all mortal reason, +man comes at last to that celestial thought, which, to reason, is +absurd and frantic; and weal or woe, feels then uncompromised, +indifferent as his God. + +For the rest, blame not Stubb too hardly. The thing is common in that +fishery; and in the sequel of the narrative, it will then be seen what +like abandonment befell myself. + + +CHAPTER 94. A Squeeze of the Hand. + +That whale of Stubb’s, so dearly purchased, was duly brought to the +Pequod’s side, where all those cutting and hoisting operations +previously detailed, were regularly gone through, even to the baling of +the Heidelburgh Tun, or Case. + +While some were occupied with this latter duty, others were employed in +dragging away the larger tubs, so soon as filled with the sperm; and +when the proper time arrived, this same sperm was carefully manipulated +ere going to the try-works, of which anon. + +It had cooled and crystallized to such a degree, that when, with +several others, I sat down before a large Constantine’s bath of it, I +found it strangely concreted into lumps, here and there rolling about +in the liquid part. It was our business to squeeze these lumps back +into fluid. A sweet and unctuous duty! No wonder that in old times this +sperm was such a favourite cosmetic. Such a clearer! such a sweetener! +such a softener! such a delicious molifier! After having my hands in it +for only a few minutes, my fingers felt like eels, and began, as it +were, to serpentine and spiralise. + +As I sat there at my ease, cross-legged on the deck; after the bitter +exertion at the windlass; under a blue tranquil sky; the ship under +indolent sail, and gliding so serenely along; as I bathed my hands +among those soft, gentle globules of infiltrated tissues, woven almost +within the hour; as they richly broke to my fingers, and discharged all +their opulence, like fully ripe grapes their wine; as I snuffed up that +uncontaminated aroma,—literally and truly, like the smell of spring +violets; I declare to you, that for the time I lived as in a musky +meadow; I forgot all about our horrible oath; in that inexpressible +sperm, I washed my hands and my heart of it; I almost began to credit +the old Paracelsan superstition that sperm is of rare virtue in +allaying the heat of anger; while bathing in that bath, I felt divinely +free from all ill-will, or petulance, or malice, of any sort +whatsoever. + +Squeeze! squeeze! squeeze! all the morning long; I squeezed that sperm +till I myself almost melted into it; I squeezed that sperm till a +strange sort of insanity came over me; and I found myself unwittingly +squeezing my co-laborers’ hands in it, mistaking their hands for the +gentle globules. Such an abounding, affectionate, friendly, loving +feeling did this avocation beget; that at last I was continually +squeezing their hands, and looking up into their eyes sentimentally; as +much as to say,—Oh! my dear fellow beings, why should we longer cherish +any social acerbities, or know the slightest ill-humor or envy! Come; +let us squeeze hands all round; nay, let us all squeeze ourselves into +each other; let us squeeze ourselves universally into the very milk and +sperm of kindness. + +Would that I could keep squeezing that sperm for ever! For now, since +by many prolonged, repeated experiences, I have perceived that in all +cases man must eventually lower, or at least shift, his conceit of +attainable felicity; not placing it anywhere in the intellect or the +fancy; but in the wife, the heart, the bed, the table, the saddle, the +fireside, the country; now that I have perceived all this, I am ready +to squeeze case eternally. In thoughts of the visions of the night, I +saw long rows of angels in paradise, each with his hands in a jar of +spermaceti. + +Now, while discoursing of sperm, it behooves to speak of other things +akin to it, in the business of preparing the sperm whale for the +try-works. + +First comes white-horse, so called, which is obtained from the tapering +part of the fish, and also from the thicker portions of his flukes. It +is tough with congealed tendons—a wad of muscle—but still contains some +oil. After being severed from the whale, the white-horse is first cut +into portable oblongs ere going to the mincer. They look much like +blocks of Berkshire marble. + +Plum-pudding is the term bestowed upon certain fragmentary parts of the +whale’s flesh, here and there adhering to the blanket of blubber, and +often participating to a considerable degree in its unctuousness. It is +a most refreshing, convivial, beautiful object to behold. As its name +imports, it is of an exceedingly rich, mottled tint, with a bestreaked +snowy and golden ground, dotted with spots of the deepest crimson and +purple. It is plums of rubies, in pictures of citron. Spite of reason, +it is hard to keep yourself from eating it. I confess, that once I +stole behind the foremast to try it. It tasted something as I should +conceive a royal cutlet from the thigh of Louis le Gros might have +tasted, supposing him to have been killed the first day after the +venison season, and that particular venison season contemporary with an +unusually fine vintage of the vineyards of Champagne. + +There is another substance, and a very singular one, which turns up in +the course of this business, but which I feel it to be very puzzling +adequately to describe. It is called slobgollion; an appellation +original with the whalemen, and even so is the nature of the substance. +It is an ineffably oozy, stringy affair, most frequently found in the +tubs of sperm, after a prolonged squeezing, and subsequent decanting. I +hold it to be the wondrously thin, ruptured membranes of the case, +coalescing. + +Gurry, so called, is a term properly belonging to right whalemen, but +sometimes incidentally used by the sperm fishermen. It designates the +dark, glutinous substance which is scraped off the back of the +Greenland or right whale, and much of which covers the decks of those +inferior souls who hunt that ignoble Leviathan. + +Nippers. Strictly this word is not indigenous to the whale’s +vocabulary. But as applied by whalemen, it becomes so. A whaleman’s +nipper is a short firm strip of tendinous stuff cut from the tapering +part of Leviathan’s tail: it averages an inch in thickness, and for the +rest, is about the size of the iron part of a hoe. Edgewise moved along +the oily deck, it operates like a leathern squilgee; and by nameless +blandishments, as of magic, allures along with it all impurities. + +But to learn all about these recondite matters, your best way is at +once to descend into the blubber-room, and have a long talk with its +inmates. This place has previously been mentioned as the receptacle for +the blanket-pieces, when stript and hoisted from the whale. When the +proper time arrives for cutting up its contents, this apartment is a +scene of terror to all tyros, especially by night. On one side, lit by +a dull lantern, a space has been left clear for the workmen. They +generally go in pairs,—a pike-and-gaffman and a spade-man. The +whaling-pike is similar to a frigate’s boarding-weapon of the same +name. The gaff is something like a boat-hook. With his gaff, the +gaffman hooks on to a sheet of blubber, and strives to hold it from +slipping, as the ship pitches and lurches about. Meanwhile, the +spade-man stands on the sheet itself, perpendicularly chopping it into +the portable horse-pieces. This spade is sharp as hone can make it; the +spademan’s feet are shoeless; the thing he stands on will sometimes +irresistibly slide away from him, like a sledge. If he cuts off one of +his own toes, or one of his assistants’, would you be very much +astonished? Toes are scarce among veteran blubber-room men. + + +CHAPTER 95. The Cassock. + +Had you stepped on board the Pequod at a certain juncture of this +post-mortemizing of the whale; and had you strolled forward nigh the +windlass, pretty sure am I that you would have scanned with no small +curiosity a very strange, enigmatical object, which you would have seen +there, lying along lengthwise in the lee scuppers. Not the wondrous +cistern in the whale’s huge head; not the prodigy of his unhinged lower +jaw; not the miracle of his symmetrical tail; none of these would so +surprise you, as half a glimpse of that unaccountable cone,—longer than +a Kentuckian is tall, nigh a foot in diameter at the base, and +jet-black as Yojo, the ebony idol of Queequeg. And an idol, indeed, it +is; or, rather, in old times, its likeness was. Such an idol as that +found in the secret groves of Queen Maachah in Judea; and for +worshipping which, King Asa, her son, did depose her, and destroyed the +idol, and burnt it for an abomination at the brook Kedron, as darkly +set forth in the 15th chapter of the First Book of Kings. + +Look at the sailor, called the mincer, who now comes along, and +assisted by two allies, heavily backs the grandissimus, as the mariners +call it, and with bowed shoulders, staggers off with it as if he were a +grenadier carrying a dead comrade from the field. Extending it upon the +forecastle deck, he now proceeds cylindrically to remove its dark pelt, +as an African hunter the pelt of a boa. This done he turns the pelt +inside out, like a pantaloon leg; gives it a good stretching, so as +almost to double its diameter; and at last hangs it, well spread, in +the rigging, to dry. Ere long, it is taken down; when removing some +three feet of it, towards the pointed extremity, and then cutting two +slits for arm-holes at the other end, he lengthwise slips himself +bodily into it. The mincer now stands before you invested in the full +canonicals of his calling. Immemorial to all his order, this +investiture alone will adequately protect him, while employed in the +peculiar functions of his office. + +That office consists in mincing the horse-pieces of blubber for the +pots; an operation which is conducted at a curious wooden horse, +planted endwise against the bulwarks, and with a capacious tub beneath +it, into which the minced pieces drop, fast as the sheets from a rapt +orator’s desk. Arrayed in decent black; occupying a conspicuous pulpit; +intent on bible leaves; what a candidate for an archbishopric, what a +lad for a Pope were this mincer!* + +*Bible leaves! Bible leaves! This is the invariable cry from the mates +to the mincer. It enjoins him to be careful, and cut his work into as +thin slices as possible, inasmuch as by so doing the business of +boiling out the oil is much accelerated, and its quantity considerably +increased, besides perhaps improving it in quality. + + +CHAPTER 96. The Try-Works. + +Besides her hoisted boats, an American whaler is outwardly +distinguished by her try-works. She presents the curious anomaly of the +most solid masonry joining with oak and hemp in constituting the +completed ship. It is as if from the open field a brick-kiln were +transported to her planks. + +The try-works are planted between the foremast and mainmast, the most +roomy part of the deck. The timbers beneath are of a peculiar strength, +fitted to sustain the weight of an almost solid mass of brick and +mortar, some ten feet by eight square, and five in height. The +foundation does not penetrate the deck, but the masonry is firmly +secured to the surface by ponderous knees of iron bracing it on all +sides, and screwing it down to the timbers. On the flanks it is cased +with wood, and at top completely covered by a large, sloping, battened +hatchway. Removing this hatch we expose the great try-pots, two in +number, and each of several barrels’ capacity. When not in use, they +are kept remarkably clean. Sometimes they are polished with soapstone +and sand, till they shine within like silver punch-bowls. During the +night-watches some cynical old sailors will crawl into them and coil +themselves away there for a nap. While employed in polishing them—one +man in each pot, side by side—many confidential communications are +carried on, over the iron lips. It is a place also for profound +mathematical meditation. It was in the left hand try-pot of the Pequod, +with the soapstone diligently circling round me, that I was first +indirectly struck by the remarkable fact, that in geometry all bodies +gliding along the cycloid, my soapstone for example, will descend from +any point in precisely the same time. + +Removing the fire-board from the front of the try-works, the bare +masonry of that side is exposed, penetrated by the two iron mouths of +the furnaces, directly underneath the pots. These mouths are fitted +with heavy doors of iron. The intense heat of the fire is prevented +from communicating itself to the deck, by means of a shallow reservoir +extending under the entire inclosed surface of the works. By a tunnel +inserted at the rear, this reservoir is kept replenished with water as +fast as it evaporates. There are no external chimneys; they open direct +from the rear wall. And here let us go back for a moment. + +It was about nine o’clock at night that the Pequod’s try-works were +first started on this present voyage. It belonged to Stubb to oversee +the business. + +“All ready there? Off hatch, then, and start her. You cook, fire the +works.” This was an easy thing, for the carpenter had been thrusting +his shavings into the furnace throughout the passage. Here be it said +that in a whaling voyage the first fire in the try-works has to be fed +for a time with wood. After that no wood is used, except as a means of +quick ignition to the staple fuel. In a word, after being tried out, +the crisp, shrivelled blubber, now called scraps or fritters, still +contains considerable of its unctuous properties. These fritters feed +the flames. Like a plethoric burning martyr, or a self-consuming +misanthrope, once ignited, the whale supplies his own fuel and burns by +his own body. Would that he consumed his own smoke! for his smoke is +horrible to inhale, and inhale it you must, and not only that, but you +must live in it for the time. It has an unspeakable, wild, Hindoo odor +about it, such as may lurk in the vicinity of funereal pyres. It smells +like the left wing of the day of judgment; it is an argument for the +pit. + +By midnight the works were in full operation. We were clear from the +carcase; sail had been made; the wind was freshening; the wild ocean +darkness was intense. But that darkness was licked up by the fierce +flames, which at intervals forked forth from the sooty flues, and +illuminated every lofty rope in the rigging, as with the famed Greek +fire. The burning ship drove on, as if remorselessly commissioned to +some vengeful deed. So the pitch and sulphur-freighted brigs of the +bold Hydriote, Canaris, issuing from their midnight harbors, with broad +sheets of flame for sails, bore down upon the Turkish frigates, and +folded them in conflagrations. + +The hatch, removed from the top of the works, now afforded a wide +hearth in front of them. Standing on this were the Tartarean shapes of +the pagan harpooneers, always the whale-ship’s stokers. With huge +pronged poles they pitched hissing masses of blubber into the scalding +pots, or stirred up the fires beneath, till the snaky flames darted, +curling, out of the doors to catch them by the feet. The smoke rolled +away in sullen heaps. To every pitch of the ship there was a pitch of +the boiling oil, which seemed all eagerness to leap into their faces. +Opposite the mouth of the works, on the further side of the wide wooden +hearth, was the windlass. This served for a sea-sofa. Here lounged the +watch, when not otherwise employed, looking into the red heat of the +fire, till their eyes felt scorched in their heads. Their tawny +features, now all begrimed with smoke and sweat, their matted beards, +and the contrasting barbaric brilliancy of their teeth, all these were +strangely revealed in the capricious emblazonings of the works. As they +narrated to each other their unholy adventures, their tales of terror +told in words of mirth; as their uncivilized laughter forked upwards +out of them, like the flames from the furnace; as to and fro, in their +front, the harpooneers wildly gesticulated with their huge pronged +forks and dippers; as the wind howled on, and the sea leaped, and the +ship groaned and dived, and yet steadfastly shot her red hell further +and further into the blackness of the sea and the night, and scornfully +champed the white bone in her mouth, and viciously spat round her on +all sides; then the rushing Pequod, freighted with savages, and laden +with fire, and burning a corpse, and plunging into that blackness of +darkness, seemed the material counterpart of her monomaniac commander’s +soul. + +So seemed it to me, as I stood at her helm, and for long hours silently +guided the way of this fire-ship on the sea. Wrapped, for that +interval, in darkness myself, I but the better saw the redness, the +madness, the ghastliness of others. The continual sight of the fiend +shapes before me, capering half in smoke and half in fire, these at +last begat kindred visions in my soul, so soon as I began to yield to +that unaccountable drowsiness which ever would come over me at a +midnight helm. + +But that night, in particular, a strange (and ever since inexplicable) +thing occurred to me. Starting from a brief standing sleep, I was +horribly conscious of something fatally wrong. The jaw-bone tiller +smote my side, which leaned against it; in my ears was the low hum of +sails, just beginning to shake in the wind; I thought my eyes were +open; I was half conscious of putting my fingers to the lids and +mechanically stretching them still further apart. But, spite of all +this, I could see no compass before me to steer by; though it seemed +but a minute since I had been watching the card, by the steady binnacle +lamp illuminating it. Nothing seemed before me but a jet gloom, now and +then made ghastly by flashes of redness. Uppermost was the impression, +that whatever swift, rushing thing I stood on was not so much bound to +any haven ahead as rushing from all havens astern. A stark, bewildered +feeling, as of death, came over me. Convulsively my hands grasped the +tiller, but with the crazy conceit that the tiller was, somehow, in +some enchanted way, inverted. My God! what is the matter with me? +thought I. Lo! in my brief sleep I had turned myself about, and was +fronting the ship’s stern, with my back to her prow and the compass. In +an instant I faced back, just in time to prevent the vessel from flying +up into the wind, and very probably capsizing her. How glad and how +grateful the relief from this unnatural hallucination of the night, and +the fatal contingency of being brought by the lee! + +Look not too long in the face of the fire, O man! Never dream with thy +hand on the helm! Turn not thy back to the compass; accept the first +hint of the hitching tiller; believe not the artificial fire, when its +redness makes all things look ghastly. To-morrow, in the natural sun, +the skies will be bright; those who glared like devils in the forking +flames, the morn will show in far other, at least gentler, relief; the +glorious, golden, glad sun, the only true lamp—all others but liars! + +Nevertheless the sun hides not Virginia’s Dismal Swamp, nor Rome’s +accursed Campagna, nor wide Sahara, nor all the millions of miles of +deserts and of griefs beneath the moon. The sun hides not the ocean, +which is the dark side of this earth, and which is two thirds of this +earth. So, therefore, that mortal man who hath more of joy than sorrow +in him, that mortal man cannot be true—not true, or undeveloped. With +books the same. The truest of all men was the Man of Sorrows, and the +truest of all books is Solomon’s, and Ecclesiastes is the fine hammered +steel of woe. “All is vanity.” ALL. This wilful world hath not got hold +of unchristian Solomon’s wisdom yet. But he who dodges hospitals and +jails, and walks fast crossing graveyards, and would rather talk of +operas than hell; calls Cowper, Young, Pascal, Rousseau, poor devils +all of sick men; and throughout a care-free lifetime swears by Rabelais +as passing wise, and therefore jolly;—not that man is fitted to sit +down on tomb-stones, and break the green damp mould with unfathomably +wondrous Solomon. + +But even Solomon, he says, “the man that wandereth out of the way of +understanding shall remain” (_i.e._, even while living) “in the +congregation of the dead.” Give not thyself up, then, to fire, lest it +invert thee, deaden thee; as for the time it did me. There is a wisdom +that is woe; but there is a woe that is madness. And there is a +Catskill eagle in some souls that can alike dive down into the blackest +gorges, and soar out of them again and become invisible in the sunny +spaces. And even if he for ever flies within the gorge, that gorge is +in the mountains; so that even in his lowest swoop the mountain eagle +is still higher than other birds upon the plain, even though they soar. + + +CHAPTER 97. The Lamp. + +Had you descended from the Pequod’s try-works to the Pequod’s +forecastle, where the off duty watch were sleeping, for one single +moment you would have almost thought you were standing in some +illuminated shrine of canonized kings and counsellors. There they lay +in their triangular oaken vaults, each mariner a chiselled muteness; a +score of lamps flashing upon his hooded eyes. + +In merchantmen, oil for the sailor is more scarce than the milk of +queens. To dress in the dark, and eat in the dark, and stumble in +darkness to his pallet, this is his usual lot. But the whaleman, as he +seeks the food of light, so he lives in light. He makes his berth an +Aladdin’s lamp, and lays him down in it; so that in the pitchiest night +the ship’s black hull still houses an illumination. + +See with what entire freedom the whaleman takes his handful of +lamps—often but old bottles and vials, though—to the copper cooler at +the try-works, and replenishes them there, as mugs of ale at a vat. He +burns, too, the purest of oil, in its unmanufactured, and, therefore, +unvitiated state; a fluid unknown to solar, lunar, or astral +contrivances ashore. It is sweet as early grass butter in April. He +goes and hunts for his oil, so as to be sure of its freshness and +genuineness, even as the traveller on the prairie hunts up his own +supper of game. + + +CHAPTER 98. Stowing Down and Clearing Up. + +Already has it been related how the great leviathan is afar off +descried from the mast-head; how he is chased over the watery moors, +and slaughtered in the valleys of the deep; how he is then towed +alongside and beheaded; and how (on the principle which entitled the +headsman of old to the garments in which the beheaded was killed) his +great padded surtout becomes the property of his executioner; how, in +due time, he is condemned to the pots, and, like Shadrach, Meshach, and +Abednego, his spermaceti, oil, and bone pass unscathed through the +fire;—but now it remains to conclude the last chapter of this part of +the description by rehearsing—singing, if I may—the romantic proceeding +of decanting off his oil into the casks and striking them down into the +hold, where once again leviathan returns to his native profundities, +sliding along beneath the surface as before; but, alas! never more to +rise and blow. + +While still warm, the oil, like hot punch, is received into the +six-barrel casks; and while, perhaps, the ship is pitching and rolling +this way and that in the midnight sea, the enormous casks are slewed +round and headed over, end for end, and sometimes perilously scoot +across the slippery deck, like so many land slides, till at last +man-handled and stayed in their course; and all round the hoops, rap, +rap, go as many hammers as can play upon them, for now, _ex officio_, +every sailor is a cooper. + +At length, when the last pint is casked, and all is cool, then the +great hatchways are unsealed, the bowels of the ship are thrown open, +and down go the casks to their final rest in the sea. This done, the +hatches are replaced, and hermetically closed, like a closet walled up. + +In the sperm fishery, this is perhaps one of the most remarkable +incidents in all the business of whaling. One day the planks stream +with freshets of blood and oil; on the sacred quarter-deck enormous +masses of the whale’s head are profanely piled; great rusty casks lie +about, as in a brewery yard; the smoke from the try-works has besooted +all the bulwarks; the mariners go about suffused with unctuousness; the +entire ship seems great leviathan himself; while on all hands the din +is deafening. + +But a day or two after, you look about you, and prick your ears in this +self-same ship; and were it not for the tell-tale boats and try-works, +you would all but swear you trod some silent merchant vessel, with a +most scrupulously neat commander. The unmanufactured sperm oil +possesses a singularly cleansing virtue. This is the reason why the +decks never look so white as just after what they call an affair of +oil. Besides, from the ashes of the burned scraps of the whale, a +potent lye is readily made; and whenever any adhesiveness from the back +of the whale remains clinging to the side, that lye quickly +exterminates it. Hands go diligently along the bulwarks, and with +buckets of water and rags restore them to their full tidiness. The soot +is brushed from the lower rigging. All the numerous implements which +have been in use are likewise faithfully cleansed and put away. The +great hatch is scrubbed and placed upon the try-works, completely +hiding the pots; every cask is out of sight; all tackles are coiled in +unseen nooks; and when by the combined and simultaneous industry of +almost the entire ship’s company, the whole of this conscientious duty +is at last concluded, then the crew themselves proceed to their own +ablutions; shift themselves from top to toe; and finally issue to the +immaculate deck, fresh and all aglow, as bridegrooms new-leaped from +out the daintiest Holland. + +Now, with elated step, they pace the planks in twos and threes, and +humorously discourse of parlors, sofas, carpets, and fine cambrics; +propose to mat the deck; think of having hanging to the top; object not +to taking tea by moonlight on the piazza of the forecastle. To hint to +such musked mariners of oil, and bone, and blubber, were little short +of audacity. They know not the thing you distantly allude to. Away, and +bring us napkins! + +But mark: aloft there, at the three mast heads, stand three men intent +on spying out more whales, which, if caught, infallibly will again soil +the old oaken furniture, and drop at least one small grease-spot +somewhere. Yes; and many is the time, when, after the severest +uninterrupted labors, which know no night; continuing straight through +for ninety-six hours; when from the boat, where they have swelled their +wrists with all day rowing on the Line,—they only step to the deck to +carry vast chains, and heave the heavy windlass, and cut and slash, +yea, and in their very sweatings to be smoked and burned anew by the +combined fires of the equatorial sun and the equatorial try-works; +when, on the heel of all this, they have finally bestirred themselves +to cleanse the ship, and make a spotless dairy room of it; many is the +time the poor fellows, just buttoning the necks of their clean frocks, +are startled by the cry of “There she blows!” and away they fly to +fight another whale, and go through the whole weary thing again. Oh! my +friends, but this is man-killing! Yet this is life. For hardly have we +mortals by long toilings extracted from this world’s vast bulk its +small but valuable sperm; and then, with weary patience, cleansed +ourselves from its defilements, and learned to live here in clean +tabernacles of the soul; hardly is this done, when—_There she +blows!_—the ghost is spouted up, and away we sail to fight some other +world, and go through young life’s old routine again. + +Oh! the metempsychosis! Oh! Pythagoras, that in bright Greece, two +thousand years ago, did die, so good, so wise, so mild; I sailed with +thee along the Peruvian coast last voyage—and, foolish as I am, taught +thee, a green simple boy, how to splice a rope! + + +CHAPTER 99. The Doubloon. + +Ere now it has been related how Ahab was wont to pace his quarter-deck, +taking regular turns at either limit, the binnacle and mainmast; but in +the multiplicity of other things requiring narration it has not been +added how that sometimes in these walks, when most plunged in his mood, +he was wont to pause in turn at each spot, and stand there strangely +eyeing the particular object before him. When he halted before the +binnacle, with his glance fastened on the pointed needle in the +compass, that glance shot like a javelin with the pointed intensity of +his purpose; and when resuming his walk he again paused before the +mainmast, then, as the same riveted glance fastened upon the riveted +gold coin there, he still wore the same aspect of nailed firmness, only +dashed with a certain wild longing, if not hopefulness. + +But one morning, turning to pass the doubloon, he seemed to be newly +attracted by the strange figures and inscriptions stamped on it, as +though now for the first time beginning to interpret for himself in +some monomaniac way whatever significance might lurk in them. And some +certain significance lurks in all things, else all things are little +worth, and the round world itself but an empty cipher, except to sell +by the cartload, as they do hills about Boston, to fill up some morass +in the Milky Way. + +Now this doubloon was of purest, virgin gold, raked somewhere out of +the heart of gorgeous hills, whence, east and west, over golden sands, +the head-waters of many a Pactolus flows. And though now nailed amidst +all the rustiness of iron bolts and the verdigris of copper spikes, +yet, untouchable and immaculate to any foulness, it still preserved its +Quito glow. Nor, though placed amongst a ruthless crew and every hour +passed by ruthless hands, and through the livelong nights shrouded with +thick darkness which might cover any pilfering approach, nevertheless +every sunrise found the doubloon where the sunset left it last. For it +was set apart and sanctified to one awe-striking end; and however +wanton in their sailor ways, one and all, the mariners revered it as +the white whale’s talisman. Sometimes they talked it over in the weary +watch by night, wondering whose it was to be at last, and whether he +would ever live to spend it. + +Now those noble golden coins of South America are as medals of the sun +and tropic token-pieces. Here palms, alpacas, and volcanoes; sun’s +disks and stars; ecliptics, horns-of-plenty, and rich banners waving, +are in luxuriant profusion stamped; so that the precious gold seems +almost to derive an added preciousness and enhancing glories, by +passing through those fancy mints, so Spanishly poetic. + +It so chanced that the doubloon of the Pequod was a most wealthy +example of these things. On its round border it bore the letters, +REPUBLICA DEL ECUADOR: QUITO. So this bright coin came from a country +planted in the middle of the world, and beneath the great equator, and +named after it; and it had been cast midway up the Andes, in the +unwaning clime that knows no autumn. Zoned by those letters you saw the +likeness of three Andes’ summits; from one a flame; a tower on another; +on the third a crowing cock; while arching over all was a segment of +the partitioned zodiac, the signs all marked with their usual +cabalistics, and the keystone sun entering the equinoctial point at +Libra. + +Before this equatorial coin, Ahab, not unobserved by others, was now +pausing. + +“There’s something ever egotistical in mountain-tops and towers, and +all other grand and lofty things; look here,—three peaks as proud as +Lucifer. The firm tower, that is Ahab; the volcano, that is Ahab; the +courageous, the undaunted, and victorious fowl, that, too, is Ahab; all +are Ahab; and this round gold is but the image of the rounder globe, +which, like a magician’s glass, to each and every man in turn but +mirrors back his own mysterious self. Great pains, small gains for +those who ask the world to solve them; it cannot solve itself. Methinks +now this coined sun wears a ruddy face; but see! aye, he enters the +sign of storms, the equinox! and but six months before he wheeled out +of a former equinox at Aries! From storm to storm! So be it, then. Born +in throes, ’tis fit that man should live in pains and die in pangs! So +be it, then! Here’s stout stuff for woe to work on. So be it, then.” + +“No fairy fingers can have pressed the gold, but devil’s claws must +have left their mouldings there since yesterday,” murmured Starbuck to +himself, leaning against the bulwarks. “The old man seems to read +Belshazzar’s awful writing. I have never marked the coin inspectingly. +He goes below; let me read. A dark valley between three mighty, +heaven-abiding peaks, that almost seem the Trinity, in some faint +earthly symbol. So in this vale of Death, God girds us round; and over +all our gloom, the sun of Righteousness still shines a beacon and a +hope. If we bend down our eyes, the dark vale shows her mouldy soil; +but if we lift them, the bright sun meets our glance half way, to +cheer. Yet, oh, the great sun is no fixture; and if, at midnight, we +would fain snatch some sweet solace from him, we gaze for him in vain! +This coin speaks wisely, mildly, truly, but still sadly to me. I will +quit it, lest Truth shake me falsely.” + +“There now’s the old Mogul,” soliloquized Stubb by the try-works, “he’s +been twigging it; and there goes Starbuck from the same, and both with +faces which I should say might be somewhere within nine fathoms long. +And all from looking at a piece of gold, which did I have it now on +Negro Hill or in Corlaer’s Hook, I’d not look at it very long ere +spending it. Humph! in my poor, insignificant opinion, I regard this as +queer. I have seen doubloons before now in my voyagings; your doubloons +of old Spain, your doubloons of Peru, your doubloons of Chili, your +doubloons of Bolivia, your doubloons of Popayan; with plenty of gold +moidores and pistoles, and joes, and half joes, and quarter joes. What +then should there be in this doubloon of the Equator that is so killing +wonderful? By Golconda! let me read it once. Halloa! here’s signs and +wonders truly! That, now, is what old Bowditch in his Epitome calls the +zodiac, and what my almanac below calls ditto. I’ll get the almanac and +as I have heard devils can be raised with Daboll’s arithmetic, I’ll try +my hand at raising a meaning out of these queer curvicues here with the +Massachusetts calendar. Here’s the book. Let’s see now. Signs and +wonders; and the sun, he’s always among ’em. Hem, hem, hem; here they +are—here they go—all alive:—Aries, or the Ram; Taurus, or the Bull and +Jimimi! here’s Gemini himself, or the Twins. Well; the sun he wheels +among ’em. Aye, here on the coin he’s just crossing the threshold +between two of twelve sitting-rooms all in a ring. Book! you lie there; +the fact is, you books must know your places. You’ll do to give us the +bare words and facts, but we come in to supply the thoughts. That’s my +small experience, so far as the Massachusetts calendar, and Bowditch’s +navigator, and Daboll’s arithmetic go. Signs and wonders, eh? Pity if +there is nothing wonderful in signs, and significant in wonders! +There’s a clue somewhere; wait a bit; hist—hark! By Jove, I have it! +Look you, Doubloon, your zodiac here is the life of man in one round +chapter; and now I’ll read it off, straight out of the book. Come, +Almanack! To begin: there’s Aries, or the Ram—lecherous dog, he begets +us; then, Taurus, or the Bull—he bumps us the first thing; then Gemini, +or the Twins—that is, Virtue and Vice; we try to reach Virtue, when lo! +comes Cancer the Crab, and drags us back; and here, going from Virtue, +Leo, a roaring Lion, lies in the path—he gives a few fierce bites and +surly dabs with his paw; we escape, and hail Virgo, the Virgin! that’s +our first love; we marry and think to be happy for aye, when pop comes +Libra, or the Scales—happiness weighed and found wanting; and while we +are very sad about that, Lord! how we suddenly jump, as Scorpio, or the +Scorpion, stings us in the rear; we are curing the wound, when whang +come the arrows all round; Sagittarius, or the Archer, is amusing +himself. As we pluck out the shafts, stand aside! here’s the +battering-ram, Capricornus, or the Goat; full tilt, he comes rushing, +and headlong we are tossed; when Aquarius, or the Water-bearer, pours +out his whole deluge and drowns us; and to wind up with Pisces, or the +Fishes, we sleep. There’s a sermon now, writ in high heaven, and the +sun goes through it every year, and yet comes out of it all alive and +hearty. Jollily he, aloft there, wheels through toil and trouble; and +so, alow here, does jolly Stubb. Oh, jolly’s the word for aye! Adieu, +Doubloon! But stop; here comes little King-Post; dodge round the +try-works, now, and let’s hear what he’ll have to say. There; he’s +before it; he’ll out with something presently. So, so; he’s beginning.” + +“I see nothing here, but a round thing made of gold, and whoever raises +a certain whale, this round thing belongs to him. So, what’s all this +staring been about? It is worth sixteen dollars, that’s true; and at +two cents the cigar, that’s nine hundred and sixty cigars. I won’t +smoke dirty pipes like Stubb, but I like cigars, and here’s nine +hundred and sixty of them; so here goes Flask aloft to spy ’em out.” + +“Shall I call that wise or foolish, now; if it be really wise it has a +foolish look to it; yet, if it be really foolish, then has it a sort of +wiseish look to it. But, avast; here comes our old Manxman—the old +hearse-driver, he must have been, that is, before he took to the sea. +He luffs up before the doubloon; halloa, and goes round on the other +side of the mast; why, there’s a horse-shoe nailed on that side; and +now he’s back again; what does that mean? Hark! he’s muttering—voice +like an old worn-out coffee-mill. Prick ears, and listen!” + +“If the White Whale be raised, it must be in a month and a day, when +the sun stands in some one of these signs. I’ve studied signs, and know +their marks; they were taught me two score years ago, by the old witch +in Copenhagen. Now, in what sign will the sun then be? The horse-shoe +sign; for there it is, right opposite the gold. And what’s the +horse-shoe sign? The lion is the horse-shoe sign—the roaring and +devouring lion. Ship, old ship! my old head shakes to think of thee.” + +“There’s another rendering now; but still one text. All sorts of men in +one kind of world, you see. Dodge again! here comes Queequeg—all +tattooing—looks like the signs of the Zodiac himself. What says the +Cannibal? As I live he’s comparing notes; looking at his thigh bone; +thinks the sun is in the thigh, or in the calf, or in the bowels, I +suppose, as the old women talk Surgeon’s Astronomy in the back country. +And by Jove, he’s found something there in the vicinity of his thigh—I +guess it’s Sagittarius, or the Archer. No: he don’t know what to make +of the doubloon; he takes it for an old button off some king’s +trowsers. But, aside again! here comes that ghost-devil, Fedallah; tail +coiled out of sight as usual, oakum in the toes of his pumps as usual. +What does he say, with that look of his? Ah, only makes a sign to the +sign and bows himself; there is a sun on the coin—fire worshipper, +depend upon it. Ho! more and more. This way comes Pip—poor boy! would +he had died, or I; he’s half horrible to me. He too has been watching +all of these interpreters—myself included—and look now, he comes to +read, with that unearthly idiot face. Stand away again and hear him. +Hark!” + +“I look, you look, he looks; we look, ye look, they look.” + +“Upon my soul, he’s been studying Murray’s Grammar! Improving his mind, +poor fellow! But what’s that he says now—hist!” + +“I look, you look, he looks; we look, ye look, they look.” + +“Why, he’s getting it by heart—hist! again.” + +“I look, you look, he looks; we look, ye look, they look.” + +“Well, that’s funny.” + +“And I, you, and he; and we, ye, and they, are all bats; and I’m a +crow, especially when I stand a’top of this pine tree here. Caw! caw! +caw! caw! caw! caw! Ain’t I a crow? And where’s the scare-crow? There +he stands; two bones stuck into a pair of old trowsers, and two more +poked into the sleeves of an old jacket.” + +“Wonder if he means me?—complimentary!—poor lad!—I could go hang +myself. Any way, for the present, I’ll quit Pip’s vicinity. I can stand +the rest, for they have plain wits; but he’s too crazy-witty for my +sanity. So, so, I leave him muttering.” + +“Here’s the ship’s navel, this doubloon here, and they are all on fire +to unscrew it. But, unscrew your navel, and what’s the consequence? +Then again, if it stays here, that is ugly, too, for when aught’s +nailed to the mast it’s a sign that things grow desperate. Ha, ha! old +Ahab! the White Whale; he’ll nail ye! This is a pine tree. My father, +in old Tolland county, cut down a pine tree once, and found a silver +ring grown over in it; some old darkey’s wedding ring. How did it get +there? And so they’ll say in the resurrection, when they come to fish +up this old mast, and find a doubloon lodged in it, with bedded oysters +for the shaggy bark. Oh, the gold! the precious, precious, gold! the +green miser’ll hoard ye soon! Hish! hish! God goes ’mong the worlds +blackberrying. Cook! ho, cook! and cook us! Jenny! hey, hey, hey, hey, +hey, Jenny, Jenny! and get your hoe-cake done!” + + +CHAPTER 100. Leg and Arm. + +The Pequod, of Nantucket, Meets the Samuel Enderby, of London. + +“Ship, ahoy! Hast seen the White Whale?” + +So cried Ahab, once more hailing a ship showing English colours, +bearing down under the stern. Trumpet to mouth, the old man was +standing in his hoisted quarter-boat, his ivory leg plainly revealed to +the stranger captain, who was carelessly reclining in his own boat’s +bow. He was a darkly-tanned, burly, good-natured, fine-looking man, of +sixty or thereabouts, dressed in a spacious roundabout, that hung round +him in festoons of blue pilot-cloth; and one empty arm of this jacket +streamed behind him like the broidered arm of a hussar’s surcoat. + +“Hast seen the White Whale?” + +“See you this?” and withdrawing it from the folds that had hidden it, +he held up a white arm of sperm whale bone, terminating in a wooden +head like a mallet. + +“Man my boat!” cried Ahab, impetuously, and tossing about the oars near +him—“Stand by to lower!” + +In less than a minute, without quitting his little craft, he and his +crew were dropped to the water, and were soon alongside of the +stranger. But here a curious difficulty presented itself. In the +excitement of the moment, Ahab had forgotten that since the loss of his +leg he had never once stepped on board of any vessel at sea but his +own, and then it was always by an ingenious and very handy mechanical +contrivance peculiar to the Pequod, and a thing not to be rigged and +shipped in any other vessel at a moment’s warning. Now, it is no very +easy matter for anybody—except those who are almost hourly used to it, +like whalemen—to clamber up a ship’s side from a boat on the open sea; +for the great swells now lift the boat high up towards the bulwarks, +and then instantaneously drop it half way down to the kelson. So, +deprived of one leg, and the strange ship of course being altogether +unsupplied with the kindly invention, Ahab now found himself abjectly +reduced to a clumsy landsman again; hopelessly eyeing the uncertain +changeful height he could hardly hope to attain. + +It has before been hinted, perhaps, that every little untoward +circumstance that befell him, and which indirectly sprang from his +luckless mishap, almost invariably irritated or exasperated Ahab. And +in the present instance, all this was heightened by the sight of the +two officers of the strange ship, leaning over the side, by the +perpendicular ladder of nailed cleets there, and swinging towards him a +pair of tastefully-ornamented man-ropes; for at first they did not seem +to bethink them that a one-legged man must be too much of a cripple to +use their sea bannisters. But this awkwardness only lasted a minute, +because the strange captain, observing at a glance how affairs stood, +cried out, “I see, I see!—avast heaving there! Jump, boys, and swing +over the cutting-tackle.” + +As good luck would have it, they had had a whale alongside a day or two +previous, and the great tackles were still aloft, and the massive +curved blubber-hook, now clean and dry, was still attached to the end. +This was quickly lowered to Ahab, who at once comprehending it all, +slid his solitary thigh into the curve of the hook (it was like sitting +in the fluke of an anchor, or the crotch of an apple tree), and then +giving the word, held himself fast, and at the same time also helped to +hoist his own weight, by pulling hand-over-hand upon one of the running +parts of the tackle. Soon he was carefully swung inside the high +bulwarks, and gently landed upon the capstan head. With his ivory arm +frankly thrust forth in welcome, the other captain advanced, and Ahab, +putting out his ivory leg, and crossing the ivory arm (like two +sword-fish blades) cried out in his walrus way, “Aye, aye, hearty! let +us shake bones together!—an arm and a leg!—an arm that never can +shrink, d’ye see; and a leg that never can run. Where did’st thou see +the White Whale?—how long ago?” + +“The White Whale,” said the Englishman, pointing his ivory arm towards +the East, and taking a rueful sight along it, as if it had been a +telescope; “there I saw him, on the Line, last season.” + +“And he took that arm off, did he?” asked Ahab, now sliding down from +the capstan, and resting on the Englishman’s shoulder, as he did so. + +“Aye, he was the cause of it, at least; and that leg, too?” + +“Spin me the yarn,” said Ahab; “how was it?” + +“It was the first time in my life that I ever cruised on the Line,” +began the Englishman. “I was ignorant of the White Whale at that time. +Well, one day we lowered for a pod of four or five whales, and my boat +fastened to one of them; a regular circus horse he was, too, that went +milling and milling round so, that my boat’s crew could only trim dish, +by sitting all their sterns on the outer gunwale. Presently up breaches +from the bottom of the sea a bouncing great whale, with a milky-white +head and hump, all crows’ feet and wrinkles.” + +“It was he, it was he!” cried Ahab, suddenly letting out his suspended +breath. + +“And harpoons sticking in near his starboard fin.” + +“Aye, aye—they were mine—_my_ irons,” cried Ahab, exultingly—“but on!” + +“Give me a chance, then,” said the Englishman, good-humoredly. “Well, +this old great-grandfather, with the white head and hump, runs all +afoam into the pod, and goes to snapping furiously at my fast-line! + +“Aye, I see!—wanted to part it; free the fast-fish—an old trick—I know +him.” + +“How it was exactly,” continued the one-armed commander, “I do not +know; but in biting the line, it got foul of his teeth, caught there +somehow; but we didn’t know it then; so that when we afterwards pulled +on the line, bounce we came plump on to his hump! instead of the other +whale’s; that went off to windward, all fluking. Seeing how matters +stood, and what a noble great whale it was—the noblest and biggest I +ever saw, sir, in my life—I resolved to capture him, spite of the +boiling rage he seemed to be in. And thinking the hap-hazard line would +get loose, or the tooth it was tangled to might draw (for I have a +devil of a boat’s crew for a pull on a whale-line); seeing all this, I +say, I jumped into my first mate’s boat—Mr. Mounttop’s here (by the +way, Captain—Mounttop; Mounttop—the captain);—as I was saying, I jumped +into Mounttop’s boat, which, d’ye see, was gunwale and gunwale with +mine, then; and snatching the first harpoon, let this old +great-grandfather have it. But, Lord, look you, sir—hearts and souls +alive, man—the next instant, in a jiff, I was blind as a bat—both eyes +out—all befogged and bedeadened with black foam—the whale’s tail +looming straight up out of it, perpendicular in the air, like a marble +steeple. No use sterning all, then; but as I was groping at midday, +with a blinding sun, all crown-jewels; as I was groping, I say, after +the second iron, to toss it overboard—down comes the tail like a Lima +tower, cutting my boat in two, leaving each half in splinters; and, +flukes first, the white hump backed through the wreck, as though it was +all chips. We all struck out. To escape his terrible flailings, I +seized hold of my harpoon-pole sticking in him, and for a moment clung +to that like a sucking fish. But a combing sea dashed me off, and at +the same instant, the fish, taking one good dart forwards, went down +like a flash; and the barb of that cursed second iron towing along near +me caught me here” (clapping his hand just below his shoulder); “yes, +caught me just here, I say, and bore me down to Hell’s flames, I was +thinking; when, when, all of a sudden, thank the good God, the barb +ript its way along the flesh—clear along the whole length of my +arm—came out nigh my wrist, and up I floated;—and that gentleman there +will tell you the rest (by the way, captain—Dr. Bunger, ship’s surgeon: +Bunger, my lad,—the captain). Now, Bunger boy, spin your part of the +yarn.” + +The professional gentleman thus familiarly pointed out, had been all +the time standing near them, with nothing specific visible, to denote +his gentlemanly rank on board. His face was an exceedingly round but +sober one; he was dressed in a faded blue woollen frock or shirt, and +patched trowsers; and had thus far been dividing his attention between +a marlingspike he held in one hand, and a pill-box held in the other, +occasionally casting a critical glance at the ivory limbs of the two +crippled captains. But, at his superior’s introduction of him to Ahab, +he politely bowed, and straightway went on to do his captain’s bidding. + +“It was a shocking bad wound,” began the whale-surgeon; “and, taking my +advice, Captain Boomer here, stood our old Sammy—” + +“Samuel Enderby is the name of my ship,” interrupted the one-armed +captain, addressing Ahab; “go on, boy.” + +“Stood our old Sammy off to the northward, to get out of the blazing +hot weather there on the Line. But it was no use—I did all I could; sat +up with him nights; was very severe with him in the matter of diet—” + +“Oh, very severe!” chimed in the patient himself; then suddenly +altering his voice, “Drinking hot rum toddies with me every night, till +he couldn’t see to put on the bandages; and sending me to bed, half +seas over, about three o’clock in the morning. Oh, ye stars! he sat up +with me indeed, and was very severe in my diet. Oh! a great watcher, +and very dietetically severe, is Dr. Bunger. (Bunger, you dog, laugh +out! why don’t ye? You know you’re a precious jolly rascal.) But, heave +ahead, boy, I’d rather be killed by you than kept alive by any other +man.” + +“My captain, you must have ere this perceived, respected sir”—said the +imperturbable godly-looking Bunger, slightly bowing to Ahab—“is apt to +be facetious at times; he spins us many clever things of that sort. But +I may as well say—en passant, as the French remark—that I myself—that +is to say, Jack Bunger, late of the reverend clergy—am a strict total +abstinence man; I never drink—” + +“Water!” cried the captain; “he never drinks it; it’s a sort of fits to +him; fresh water throws him into the hydrophobia; but go on—go on with +the arm story.” + +“Yes, I may as well,” said the surgeon, coolly. “I was about observing, +sir, before Captain Boomer’s facetious interruption, that spite of my +best and severest endeavors, the wound kept getting worse and worse; +the truth was, sir, it was as ugly gaping wound as surgeon ever saw; +more than two feet and several inches long. I measured it with the lead +line. In short, it grew black; I knew what was threatened, and off it +came. But I had no hand in shipping that ivory arm there; that thing is +against all rule”—pointing at it with the marlingspike—“that is the +captain’s work, not mine; he ordered the carpenter to make it; he had +that club-hammer there put to the end, to knock some one’s brains out +with, I suppose, as he tried mine once. He flies into diabolical +passions sometimes. Do ye see this dent, sir”—removing his hat, and +brushing aside his hair, and exposing a bowl-like cavity in his skull, +but which bore not the slightest scarry trace, or any token of ever +having been a wound—“Well, the captain there will tell you how that +came here; he knows.” + +“No, I don’t,” said the captain, “but his mother did; he was born with +it. Oh, you solemn rogue, you—you Bunger! was there ever such another +Bunger in the watery world? Bunger, when you die, you ought to die in +pickle, you dog; you should be preserved to future ages, you rascal.” + +“What became of the White Whale?” now cried Ahab, who thus far had been +impatiently listening to this by-play between the two Englishmen. + +“Oh!” cried the one-armed captain, “oh, yes! Well; after he sounded, we +didn’t see him again for some time; in fact, as I before hinted, I +didn’t then know what whale it was that had served me such a trick, +till some time afterwards, when coming back to the Line, we heard about +Moby Dick—as some call him—and then I knew it was he.” + +“Did’st thou cross his wake again?” + +“Twice.” + +“But could not fasten?” + +“Didn’t want to try to: ain’t one limb enough? What should I do without +this other arm? And I’m thinking Moby Dick doesn’t bite so much as he +swallows.” + +“Well, then,” interrupted Bunger, “give him your left arm for bait to +get the right. Do you know, gentlemen”—very gravely and mathematically +bowing to each Captain in succession—“Do you know, gentlemen, that the +digestive organs of the whale are so inscrutably constructed by Divine +Providence, that it is quite impossible for him to completely digest +even a man’s arm? And he knows it too. So that what you take for the +White Whale’s malice is only his awkwardness. For he never means to +swallow a single limb; he only thinks to terrify by feints. But +sometimes he is like the old juggling fellow, formerly a patient of +mine in Ceylon, that making believe swallow jack-knives, once upon a +time let one drop into him in good earnest, and there it stayed for a +twelvemonth or more; when I gave him an emetic, and he heaved it up in +small tacks, d’ye see. No possible way for him to digest that +jack-knife, and fully incorporate it into his general bodily system. +Yes, Captain Boomer, if you are quick enough about it, and have a mind +to pawn one arm for the sake of the privilege of giving decent burial +to the other, why in that case the arm is yours; only let the whale +have another chance at you shortly, that’s all.” + +“No, thank ye, Bunger,” said the English Captain, “he’s welcome to the +arm he has, since I can’t help it, and didn’t know him then; but not to +another one. No more White Whales for me; I’ve lowered for him once, +and that has satisfied me. There would be great glory in killing him, I +know that; and there is a ship-load of precious sperm in him, but, hark +ye, he’s best let alone; don’t you think so, Captain?”—glancing at the +ivory leg. + +“He is. But he will still be hunted, for all that. What is best let +alone, that accursed thing is not always what least allures. He’s all a +magnet! How long since thou saw’st him last? Which way heading?” + +“Bless my soul, and curse the foul fiend’s,” cried Bunger, stoopingly +walking round Ahab, and like a dog, strangely snuffing; “this man’s +blood—bring the thermometer!—it’s at the boiling point!—his pulse makes +these planks beat!—sir!”—taking a lancet from his pocket, and drawing +near to Ahab’s arm. + +“Avast!” roared Ahab, dashing him against the bulwarks—“Man the boat! +Which way heading?” + +“Good God!” cried the English Captain, to whom the question was put. +“What’s the matter? He was heading east, I think.—Is your Captain +crazy?” whispering Fedallah. + +But Fedallah, putting a finger on his lip, slid over the bulwarks to +take the boat’s steering oar, and Ahab, swinging the cutting-tackle +towards him, commanded the ship’s sailors to stand by to lower. + +In a moment he was standing in the boat’s stern, and the Manilla men +were springing to their oars. In vain the English Captain hailed him. +With back to the stranger ship, and face set like a flint to his own, +Ahab stood upright till alongside of the Pequod. + + +CHAPTER 101. The Decanter. + +Ere the English ship fades from sight, be it set down here, that she +hailed from London, and was named after the late Samuel Enderby, +merchant of that city, the original of the famous whaling house of +Enderby & Sons; a house which in my poor whaleman’s opinion, comes not +far behind the united royal houses of the Tudors and Bourbons, in point +of real historical interest. How long, prior to the year of our Lord +1775, this great whaling house was in existence, my numerous +fish-documents do not make plain; but in that year (1775) it fitted out +the first English ships that ever regularly hunted the Sperm Whale; +though for some score of years previous (ever since 1726) our valiant +Coffins and Maceys of Nantucket and the Vineyard had in large fleets +pursued that Leviathan, but only in the North and South Atlantic: not +elsewhere. Be it distinctly recorded here, that the Nantucketers were +the first among mankind to harpoon with civilized steel the great Sperm +Whale; and that for half a century they were the only people of the +whole globe who so harpooned him. + +In 1778, a fine ship, the Amelia, fitted out for the express purpose, +and at the sole charge of the vigorous Enderbys, boldly rounded Cape +Horn, and was the first among the nations to lower a whale-boat of any +sort in the great South Sea. The voyage was a skilful and lucky one; +and returning to her berth with her hold full of the precious sperm, +the Amelia’s example was soon followed by other ships, English and +American, and thus the vast Sperm Whale grounds of the Pacific were +thrown open. But not content with this good deed, the indefatigable +house again bestirred itself: Samuel and all his Sons—how many, their +mother only knows—and under their immediate auspices, and partly, I +think, at their expense, the British government was induced to send the +sloop-of-war Rattler on a whaling voyage of discovery into the South +Sea. Commanded by a naval Post-Captain, the Rattler made a rattling +voyage of it, and did some service; how much does not appear. But this +is not all. In 1819, the same house fitted out a discovery whale ship +of their own, to go on a tasting cruise to the remote waters of Japan. +That ship—well called the “Syren”—made a noble experimental cruise; and +it was thus that the great Japanese Whaling Ground first became +generally known. The Syren in this famous voyage was commanded by a +Captain Coffin, a Nantucketer. + +All honor to the Enderbies, therefore, whose house, I think, exists to +the present day; though doubtless the original Samuel must long ago +have slipped his cable for the great South Sea of the other world. + +The ship named after him was worthy of the honor, being a very fast +sailer and a noble craft every way. I boarded her once at midnight +somewhere off the Patagonian coast, and drank good flip down in the +forecastle. It was a fine gam we had, and they were all trumps—every +soul on board. A short life to them, and a jolly death. And that fine +gam I had—long, very long after old Ahab touched her planks with his +ivory heel—it minds me of the noble, solid, Saxon hospitality of that +ship; and may my parson forget me, and the devil remember me, if I ever +lose sight of it. Flip? Did I say we had flip? Yes, and we flipped it +at the rate of ten gallons the hour; and when the squall came (for it’s +squally off there by Patagonia), and all hands—visitors and all—were +called to reef topsails, we were so top-heavy that we had to swing each +other aloft in bowlines; and we ignorantly furled the skirts of our +jackets into the sails, so that we hung there, reefed fast in the +howling gale, a warning example to all drunken tars. However, the masts +did not go overboard; and by and by we scrambled down, so sober, that +we had to pass the flip again, though the savage salt spray bursting +down the forecastle scuttle, rather too much diluted and pickled it to +my taste. + +The beef was fine—tough, but with body in it. They said it was +bull-beef; others, that it was dromedary beef; but I do not know, for +certain, how that was. They had dumplings too; small, but substantial, +symmetrically globular, and indestructible dumplings. I fancied that +you could feel them, and roll them about in you after they were +swallowed. If you stooped over too far forward, you risked their +pitching out of you like billiard-balls. The bread—but that couldn’t be +helped; besides, it was an anti-scorbutic; in short, the bread +contained the only fresh fare they had. But the forecastle was not very +light, and it was very easy to step over into a dark corner when you +ate it. But all in all, taking her from truck to helm, considering the +dimensions of the cook’s boilers, including his own live parchment +boilers; fore and aft, I say, the Samuel Enderby was a jolly ship; of +good fare and plenty; fine flip and strong; crack fellows all, and +capital from boot heels to hat-band. + +But why was it, think ye, that the Samuel Enderby, and some other +English whalers I know of—not all though—were such famous, hospitable +ships; that passed round the beef, and the bread, and the can, and the +joke; and were not soon weary of eating, and drinking, and laughing? I +will tell you. The abounding good cheer of these English whalers is +matter for historical research. Nor have I been at all sparing of +historical whale research, when it has seemed needed. + +The English were preceded in the whale fishery by the Hollanders, +Zealanders, and Danes; from whom they derived many terms still extant +in the fishery; and what is yet more, their fat old fashions, touching +plenty to eat and drink. For, as a general thing, the English +merchant-ship scrimps her crew; but not so the English whaler. Hence, +in the English, this thing of whaling good cheer is not normal and +natural, but incidental and particular; and, therefore, must have some +special origin, which is here pointed out, and will be still further +elucidated. + +During my researches in the Leviathanic histories, I stumbled upon an +ancient Dutch volume, which, by the musty whaling smell of it, I knew +must be about whalers. The title was, “Dan Coopman,” wherefore I +concluded that this must be the invaluable memoirs of some Amsterdam +cooper in the fishery, as every whale ship must carry its cooper. I was +reinforced in this opinion by seeing that it was the production of one +“Fitz Swackhammer.” But my friend Dr. Snodhead, a very learned man, +professor of Low Dutch and High German in the college of Santa Claus +and St. Pott’s, to whom I handed the work for translation, giving him a +box of sperm candles for his trouble—this same Dr. Snodhead, so soon as +he spied the book, assured me that “Dan Coopman” did not mean “The +Cooper,” but “The Merchant.” In short, this ancient and learned Low +Dutch book treated of the commerce of Holland; and, among other +subjects, contained a very interesting account of its whale fishery. +And in this chapter it was, headed, “Smeer,” or “Fat,” that I found a +long detailed list of the outfits for the larders and cellars of 180 +sail of Dutch whalemen; from which list, as translated by Dr. Snodhead, +I transcribe the following: + +400,000 lbs. of beef. 60,000 lbs. Friesland pork. 150,000 lbs. of stock +fish. 550,000 lbs. of biscuit. 72,000 lbs. of soft bread. 2,800 firkins +of butter. 20,000 lbs. Texel & Leyden cheese. 144,000 lbs. cheese +(probably an inferior article). 550 ankers of Geneva. 10,800 barrels of +beer. + +Most statistical tables are parchingly dry in the reading; not so in +the present case, however, where the reader is flooded with whole +pipes, barrels, quarts, and gills of good gin and good cheer. + +At the time, I devoted three days to the studious digesting of all this +beer, beef, and bread, during which many profound thoughts were +incidentally suggested to me, capable of a transcendental and Platonic +application; and, furthermore, I compiled supplementary tables of my +own, touching the probable quantity of stock-fish, etc., consumed by +every Low Dutch harpooneer in that ancient Greenland and Spitzbergen +whale fishery. In the first place, the amount of butter, and Texel and +Leyden cheese consumed, seems amazing. I impute it, though, to their +naturally unctuous natures, being rendered still more unctuous by the +nature of their vocation, and especially by their pursuing their game +in those frigid Polar Seas, on the very coasts of that Esquimaux +country where the convivial natives pledge each other in bumpers of +train oil. + +The quantity of beer, too, is very large, 10,800 barrels. Now, as those +polar fisheries could only be prosecuted in the short summer of that +climate, so that the whole cruise of one of these Dutch whalemen, +including the short voyage to and from the Spitzbergen sea, did not +much exceed three months, say, and reckoning 30 men to each of their +fleet of 180 sail, we have 5,400 Low Dutch seamen in all; therefore, I +say, we have precisely two barrels of beer per man, for a twelve weeks’ +allowance, exclusive of his fair proportion of that 550 ankers of gin. +Now, whether these gin and beer harpooneers, so fuddled as one might +fancy them to have been, were the right sort of men to stand up in a +boat’s head, and take good aim at flying whales; this would seem +somewhat improbable. Yet they did aim at them, and hit them too. But +this was very far North, be it remembered, where beer agrees well with +the constitution; upon the Equator, in our southern fishery, beer would +be apt to make the harpooneer sleepy at the mast-head and boozy in his +boat; and grievous loss might ensue to Nantucket and New Bedford. + +But no more; enough has been said to show that the old Dutch whalers of +two or three centuries ago were high livers; and that the English +whalers have not neglected so excellent an example. For, say they, when +cruising in an empty ship, if you can get nothing better out of the +world, get a good dinner out of it, at least. And this empties the +decanter. + + +CHAPTER 102. A Bower in the Arsacides. + +Hitherto, in descriptively treating of the Sperm Whale, I have chiefly +dwelt upon the marvels of his outer aspect; or separately and in detail +upon some few interior structural features. But to a large and thorough +sweeping comprehension of him, it behooves me now to unbutton him still +further, and untagging the points of his hose, unbuckling his garters, +and casting loose the hooks and the eyes of the joints of his innermost +bones, set him before you in his ultimatum; that is to say, in his +unconditional skeleton. + +But how now, Ishmael? How is it, that you, a mere oarsman in the +fishery, pretend to know aught about the subterranean parts of the +whale? Did erudite Stubb, mounted upon your capstan, deliver lectures +on the anatomy of the Cetacea; and by help of the windlass, hold up a +specimen rib for exhibition? Explain thyself, Ishmael. Can you land a +full-grown whale on your deck for examination, as a cook dishes a +roast-pig? Surely not. A veritable witness have you hitherto been, +Ishmael; but have a care how you seize the privilege of Jonah alone; +the privilege of discoursing upon the joists and beams; the rafters, +ridge-pole, sleepers, and under-pinnings, making up the frame-work of +leviathan; and belike of the tallow-vats, dairy-rooms, butteries, and +cheeseries in his bowels. + +I confess, that since Jonah, few whalemen have penetrated very far +beneath the skin of the adult whale; nevertheless, I have been blessed +with an opportunity to dissect him in miniature. In a ship I belonged +to, a small cub Sperm Whale was once bodily hoisted to the deck for his +poke or bag, to make sheaths for the barbs of the harpoons, and for the +heads of the lances. Think you I let that chance go, without using my +boat-hatchet and jack-knife, and breaking the seal and reading all the +contents of that young cub? + +And as for my exact knowledge of the bones of the leviathan in their +gigantic, full grown development, for that rare knowledge I am indebted +to my late royal friend Tranquo, king of Tranque, one of the Arsacides. +For being at Tranque, years ago, when attached to the trading-ship Dey +of Algiers, I was invited to spend part of the Arsacidean holidays with +the lord of Tranque, at his retired palm villa at Pupella; a sea-side +glen not very far distant from what our sailors called Bamboo-Town, his +capital. + +Among many other fine qualities, my royal friend Tranquo, being gifted +with a devout love for all matters of barbaric vertu, had brought +together in Pupella whatever rare things the more ingenious of his +people could invent; chiefly carved woods of wonderful devices, +chiselled shells, inlaid spears, costly paddles, aromatic canoes; and +all these distributed among whatever natural wonders, the +wonder-freighted, tribute-rendering waves had cast upon his shores. + +Chief among these latter was a great Sperm Whale, which, after an +unusually long raging gale, had been found dead and stranded, with his +head against a cocoa-nut tree, whose plumage-like, tufted droopings +seemed his verdant jet. When the vast body had at last been stripped of +its fathom-deep enfoldings, and the bones become dust dry in the sun, +then the skeleton was carefully transported up the Pupella glen, where +a grand temple of lordly palms now sheltered it. + +The ribs were hung with trophies; the vertebræ were carved with +Arsacidean annals, in strange hieroglyphics; in the skull, the priests +kept up an unextinguished aromatic flame, so that the mystic head again +sent forth its vapory spout; while, suspended from a bough, the +terrific lower jaw vibrated over all the devotees, like the hair-hung +sword that so affrighted Damocles. + +It was a wondrous sight. The wood was green as mosses of the Icy Glen; +the trees stood high and haughty, feeling their living sap; the +industrious earth beneath was as a weaver’s loom, with a gorgeous +carpet on it, whereof the ground-vine tendrils formed the warp and +woof, and the living flowers the figures. All the trees, with all their +laden branches; all the shrubs, and ferns, and grasses; the +message-carrying air; all these unceasingly were active. Through the +lacings of the leaves, the great sun seemed a flying shuttle weaving +the unwearied verdure. Oh, busy weaver! unseen weaver!—pause!—one +word!—whither flows the fabric? what palace may it deck? wherefore all +these ceaseless toilings? Speak, weaver!—stay thy hand!—but one single +word with thee! Nay—the shuttle flies—the figures float from forth the +loom; the freshet-rushing carpet for ever slides away. The weaver-god, +he weaves; and by that weaving is he deafened, that he hears no mortal +voice; and by that humming, we, too, who look on the loom are deafened; +and only when we escape it shall we hear the thousand voices that speak +through it. For even so it is in all material factories. The spoken +words that are inaudible among the flying spindles; those same words +are plainly heard without the walls, bursting from the opened +casements. Thereby have villainies been detected. Ah, mortal! then, be +heedful; for so, in all this din of the great world’s loom, thy +subtlest thinkings may be overheard afar. + +Now, amid the green, life-restless loom of that Arsacidean wood, the +great, white, worshipped skeleton lay lounging—a gigantic idler! Yet, +as the ever-woven verdant warp and woof intermixed and hummed around +him, the mighty idler seemed the cunning weaver; himself all woven over +with the vines; every month assuming greener, fresher verdure; but +himself a skeleton. Life folded Death; Death trellised Life; the grim +god wived with youthful Life, and begat him curly-headed glories. + +Now, when with royal Tranquo I visited this wondrous whale, and saw the +skull an altar, and the artificial smoke ascending from where the real +jet had issued, I marvelled that the king should regard a chapel as an +object of vertu. He laughed. But more I marvelled that the priests +should swear that smoky jet of his was genuine. To and fro I paced +before this skeleton—brushed the vines aside—broke through the ribs—and +with a ball of Arsacidean twine, wandered, eddied long amid its many +winding, shaded colonnades and arbours. But soon my line was out; and +following it back, I emerged from the opening where I entered. I saw no +living thing within; naught was there but bones. + +Cutting me a green measuring-rod, I once more dived within the +skeleton. From their arrow-slit in the skull, the priests perceived me +taking the altitude of the final rib, “How now!” they shouted; “Dar’st +thou measure this our god! That’s for us.” “Aye, priests—well, how long +do ye make him, then?” But hereupon a fierce contest rose among them, +concerning feet and inches; they cracked each other’s sconces with +their yard-sticks—the great skull echoed—and seizing that lucky chance, +I quickly concluded my own admeasurements. + +These admeasurements I now propose to set before you. But first, be it +recorded, that, in this matter, I am not free to utter any fancied +measurement I please. Because there are skeleton authorities you can +refer to, to test my accuracy. There is a Leviathanic Museum, they tell +me, in Hull, England, one of the whaling ports of that country, where +they have some fine specimens of fin-backs and other whales. Likewise, +I have heard that in the museum of Manchester, in New Hampshire, they +have what the proprietors call “the only perfect specimen of a +Greenland or River Whale in the United States.” Moreover, at a place in +Yorkshire, England, Burton Constable by name, a certain Sir Clifford +Constable has in his possession the skeleton of a Sperm Whale, but of +moderate size, by no means of the full-grown magnitude of my friend +King Tranquo’s. + +In both cases, the stranded whales to which these two skeletons +belonged, were originally claimed by their proprietors upon similar +grounds. King Tranquo seizing his because he wanted it; and Sir +Clifford, because he was lord of the seignories of those parts. Sir +Clifford’s whale has been articulated throughout; so that, like a great +chest of drawers, you can open and shut him, in all his bony +cavities—spread out his ribs like a gigantic fan—and swing all day upon +his lower jaw. Locks are to be put upon some of his trap-doors and +shutters; and a footman will show round future visitors with a bunch of +keys at his side. Sir Clifford thinks of charging twopence for a peep +at the whispering gallery in the spinal column; threepence to hear the +echo in the hollow of his cerebellum; and sixpence for the unrivalled +view from his forehead. + +The skeleton dimensions I shall now proceed to set down are copied +verbatim from my right arm, where I had them tattooed; as in my wild +wanderings at that period, there was no other secure way of preserving +such valuable statistics. But as I was crowded for space, and wished +the other parts of my body to remain a blank page for a poem I was then +composing—at least, what untattooed parts might remain—I did not +trouble myself with the odd inches; nor, indeed, should inches at all +enter into a congenial admeasurement of the whale. + + +CHAPTER 103. Measurement of The Whale’s Skeleton. + +In the first place, I wish to lay before you a particular, plain +statement, touching the living bulk of this leviathan, whose skeleton +we are briefly to exhibit. Such a statement may prove useful here. + +According to a careful calculation I have made, and which I partly base +upon Captain Scoresby’s estimate, of seventy tons for the largest sized +Greenland whale of sixty feet in length; according to my careful +calculation, I say, a Sperm Whale of the largest magnitude, between +eighty-five and ninety feet in length, and something less than forty +feet in its fullest circumference, such a whale will weigh at least +ninety tons; so that, reckoning thirteen men to a ton, he would +considerably outweigh the combined population of a whole village of one +thousand one hundred inhabitants. + +Think you not then that brains, like yoked cattle, should be put to +this leviathan, to make him at all budge to any landsman’s imagination? + +Having already in various ways put before you his skull, spout-hole, +jaw, teeth, tail, forehead, fins, and divers other parts, I shall now +simply point out what is most interesting in the general bulk of his +unobstructed bones. But as the colossal skull embraces so very large a +proportion of the entire extent of the skeleton; as it is by far the +most complicated part; and as nothing is to be repeated concerning it +in this chapter, you must not fail to carry it in your mind, or under +your arm, as we proceed, otherwise you will not gain a complete notion +of the general structure we are about to view. + +In length, the Sperm Whale’s skeleton at Tranque measured seventy-two +feet; so that when fully invested and extended in life, he must have +been ninety feet long; for in the whale, the skeleton loses about one +fifth in length compared with the living body. Of this seventy-two +feet, his skull and jaw comprised some twenty feet, leaving some fifty +feet of plain back-bone. Attached to this back-bone, for something less +than a third of its length, was the mighty circular basket of ribs +which once enclosed his vitals. + +To me this vast ivory-ribbed chest, with the long, unrelieved spine, +extending far away from it in a straight line, not a little resembled +the hull of a great ship new-laid upon the stocks, when only some +twenty of her naked bow-ribs are inserted, and the keel is otherwise, +for the time, but a long, disconnected timber. + +The ribs were ten on a side. The first, to begin from the neck, was +nearly six feet long; the second, third, and fourth were each +successively longer, till you came to the climax of the fifth, or one +of the middle ribs, which measured eight feet and some inches. From +that part, the remaining ribs diminished, till the tenth and last only +spanned five feet and some inches. In general thickness, they all bore +a seemly correspondence to their length. The middle ribs were the most +arched. In some of the Arsacides they are used for beams whereon to lay +footpath bridges over small streams. + +In considering these ribs, I could not but be struck anew with the +circumstance, so variously repeated in this book, that the skeleton of +the whale is by no means the mould of his invested form. The largest of +the Tranque ribs, one of the middle ones, occupied that part of the +fish which, in life, is greatest in depth. Now, the greatest depth of +the invested body of this particular whale must have been at least +sixteen feet; whereas, the corresponding rib measured but little more +than eight feet. So that this rib only conveyed half of the true notion +of the living magnitude of that part. Besides, for some way, where I +now saw but a naked spine, all that had been once wrapped round with +tons of added bulk in flesh, muscle, blood, and bowels. Still more, for +the ample fins, I here saw but a few disordered joints; and in place of +the weighty and majestic, but boneless flukes, an utter blank! + +How vain and foolish, then, thought I, for timid untravelled man to try +to comprehend aright this wondrous whale, by merely poring over his +dead attenuated skeleton, stretched in this peaceful wood. No. Only in +the heart of quickest perils; only when within the eddyings of his +angry flukes; only on the profound unbounded sea, can the fully +invested whale be truly and livingly found out. + +But the spine. For that, the best way we can consider it is, with a +crane, to pile its bones high up on end. No speedy enterprise. But now +it’s done, it looks much like Pompey’s Pillar. + +There are forty and odd vertebræ in all, which in the skeleton are not +locked together. They mostly lie like the great knobbed blocks on a +Gothic spire, forming solid courses of heavy masonry. The largest, a +middle one, is in width something less than three feet, and in depth +more than four. The smallest, where the spine tapers away into the +tail, is only two inches in width, and looks something like a white +billiard-ball. I was told that there were still smaller ones, but they +had been lost by some little cannibal urchins, the priest’s children, +who had stolen them to play marbles with. Thus we see how that the +spine of even the hugest of living things tapers off at last into +simple child’s play. + + +CHAPTER 104. The Fossil Whale. + +From his mighty bulk the whale affords a most congenial theme whereon +to enlarge, amplify, and generally expatiate. Would you, you could not +compress him. By good rights he should only be treated of in imperial +folio. Not to tell over again his furlongs from spiracle to tail, and +the yards he measures about the waist; only think of the gigantic +involutions of his intestines, where they lie in him like great cables +and hawsers coiled away in the subterranean orlop-deck of a +line-of-battle-ship. + +Since I have undertaken to manhandle this Leviathan, it behooves me to +approve myself omnisciently exhaustive in the enterprise; not +overlooking the minutest seminal germs of his blood, and spinning him +out to the uttermost coil of his bowels. Having already described him +in most of his present habitatory and anatomical peculiarities, it now +remains to magnify him in an archæological, fossiliferous, and +antediluvian point of view. Applied to any other creature than the +Leviathan—to an ant or a flea—such portly terms might justly be deemed +unwarrantably grandiloquent. But when Leviathan is the text, the case +is altered. Fain am I to stagger to this emprise under the weightiest +words of the dictionary. And here be it said, that whenever it has been +convenient to consult one in the course of these dissertations, I have +invariably used a huge quarto edition of Johnson, expressly purchased +for that purpose; because that famous lexicographer’s uncommon personal +bulk more fitted him to compile a lexicon to be used by a whale author +like me. + +One often hears of writers that rise and swell with their subject, +though it may seem but an ordinary one. How, then, with me, writing of +this Leviathan? Unconsciously my chirography expands into placard +capitals. Give me a condor’s quill! Give me Vesuvius’ crater for an +inkstand! Friends, hold my arms! For in the mere act of penning my +thoughts of this Leviathan, they weary me, and make me faint with their +outreaching comprehensiveness of sweep, as if to include the whole +circle of the sciences, and all the generations of whales, and men, and +mastodons, past, present, and to come, with all the revolving panoramas +of empire on earth, and throughout the whole universe, not excluding +its suburbs. Such, and so magnifying, is the virtue of a large and +liberal theme! We expand to its bulk. To produce a mighty book, you +must choose a mighty theme. No great and enduring volume can ever be +written on the flea, though many there be who have tried it. + +Ere entering upon the subject of Fossil Whales, I present my +credentials as a geologist, by stating that in my miscellaneous time I +have been a stone-mason, and also a great digger of ditches, canals and +wells, wine-vaults, cellars, and cisterns of all sorts. Likewise, by +way of preliminary, I desire to remind the reader, that while in the +earlier geological strata there are found the fossils of monsters now +almost completely extinct; the subsequent relics discovered in what are +called the Tertiary formations seem the connecting, or at any rate +intercepted links, between the antichronical creatures, and those whose +remote posterity are said to have entered the Ark; all the Fossil +Whales hitherto discovered belong to the Tertiary period, which is the +last preceding the superficial formations. And though none of them +precisely answer to any known species of the present time, they are yet +sufficiently akin to them in general respects, to justify their taking +rank as Cetacean fossils. + +Detached broken fossils of pre-adamite whales, fragments of their bones +and skeletons, have within thirty years past, at various intervals, +been found at the base of the Alps, in Lombardy, in France, in England, +in Scotland, and in the States of Louisiana, Mississippi, and Alabama. +Among the more curious of such remains is part of a skull, which in the +year 1779 was disinterred in the Rue Dauphine in Paris, a short street +opening almost directly upon the palace of the Tuileries; and bones +disinterred in excavating the great docks of Antwerp, in Napoleon’s +time. Cuvier pronounced these fragments to have belonged to some +utterly unknown Leviathanic species. + +But by far the most wonderful of all Cetacean relics was the almost +complete vast skeleton of an extinct monster, found in the year 1842, +on the plantation of Judge Creagh, in Alabama. The awe-stricken +credulous slaves in the vicinity took it for the bones of one of the +fallen angels. The Alabama doctors declared it a huge reptile, and +bestowed upon it the name of Basilosaurus. But some specimen bones of +it being taken across the sea to Owen, the English Anatomist, it turned +out that this alleged reptile was a whale, though of a departed +species. A significant illustration of the fact, again and again +repeated in this book, that the skeleton of the whale furnishes but +little clue to the shape of his fully invested body. So Owen +rechristened the monster Zeuglodon; and in his paper read before the +London Geological Society, pronounced it, in substance, one of the most +extraordinary creatures which the mutations of the globe have blotted +out of existence. + +When I stand among these mighty Leviathan skeletons, skulls, tusks, +jaws, ribs, and vertebræ, all characterized by partial resemblances to +the existing breeds of sea-monsters; but at the same time bearing on +the other hand similar affinities to the annihilated antichronical +Leviathans, their incalculable seniors; I am, by a flood, borne back to +that wondrous period, ere time itself can be said to have begun; for +time began with man. Here Saturn’s grey chaos rolls over me, and I +obtain dim, shuddering glimpses into those Polar eternities; when +wedged bastions of ice pressed hard upon what are now the Tropics; and +in all the 25,000 miles of this world’s circumference, not an +inhabitable hand’s breadth of land was visible. Then the whole world +was the whale’s; and, king of creation, he left his wake along the +present lines of the Andes and the Himmalehs. Who can show a pedigree +like Leviathan? Ahab’s harpoon had shed older blood than the Pharaoh’s. +Methuselah seems a school-boy. I look round to shake hands with Shem. I +am horror-struck at this antemosaic, unsourced existence of the +unspeakable terrors of the whale, which, having been before all time, +must needs exist after all humane ages are over. + +But not alone has this Leviathan left his pre-adamite traces in the +stereotype plates of nature, and in limestone and marl bequeathed his +ancient bust; but upon Egyptian tablets, whose antiquity seems to claim +for them an almost fossiliferous character, we find the unmistakable +print of his fin. In an apartment of the great temple of Denderah, some +fifty years ago, there was discovered upon the granite ceiling a +sculptured and painted planisphere, abounding in centaurs, griffins, +and dolphins, similar to the grotesque figures on the celestial globe +of the moderns. Gliding among them, old Leviathan swam as of yore; was +there swimming in that planisphere, centuries before Solomon was +cradled. + +Nor must there be omitted another strange attestation of the antiquity +of the whale, in his own osseous post-diluvian reality, as set down by +the venerable John Leo, the old Barbary traveller. + +“Not far from the Sea-side, they have a Temple, the Rafters and Beams +of which are made of Whale-Bones; for Whales of a monstrous size are +oftentimes cast up dead upon that shore. The Common People imagine, +that by a secret Power bestowed by God upon the Temple, no Whale can +pass it without immediate death. But the truth of the Matter is, that +on either side of the Temple, there are Rocks that shoot two Miles into +the Sea, and wound the Whales when they light upon ’em. They keep a +Whale’s Rib of an incredible length for a Miracle, which lying upon the +Ground with its convex part uppermost, makes an Arch, the Head of which +cannot be reached by a Man upon a Camel’s Back. This Rib (says John +Leo) is said to have layn there a hundred Years before I saw it. Their +Historians affirm, that a Prophet who prophesy’d of Mahomet, came from +this Temple, and some do not stand to assert, that the Prophet Jonas +was cast forth by the Whale at the Base of the Temple.” + +In this Afric Temple of the Whale I leave you, reader, and if you be a +Nantucketer, and a whaleman, you will silently worship there. + + +CHAPTER 105. Does the Whale’s Magnitude Diminish?—Will He Perish? + +Inasmuch, then, as this Leviathan comes floundering down upon us from +the head-waters of the Eternities, it may be fitly inquired, whether, +in the long course of his generations, he has not degenerated from the +original bulk of his sires. + +But upon investigation we find, that not only are the whales of the +present day superior in magnitude to those whose fossil remains are +found in the Tertiary system (embracing a distinct geological period +prior to man), but of the whales found in that Tertiary system, those +belonging to its latter formations exceed in size those of its earlier +ones. + +Of all the pre-adamite whales yet exhumed, by far the largest is the +Alabama one mentioned in the last chapter, and that was less than +seventy feet in length in the skeleton. Whereas, we have already seen, +that the tape-measure gives seventy-two feet for the skeleton of a +large sized modern whale. And I have heard, on whalemen’s authority, +that Sperm Whales have been captured near a hundred feet long at the +time of capture. + +But may it not be, that while the whales of the present hour are an +advance in magnitude upon those of all previous geological periods; may +it not be, that since Adam’s time they have degenerated? + +Assuredly, we must conclude so, if we are to credit the accounts of +such gentlemen as Pliny, and the ancient naturalists generally. For +Pliny tells us of whales that embraced acres of living bulk, and +Aldrovandus of others which measured eight hundred feet in length—Rope +Walks and Thames Tunnels of Whales! And even in the days of Banks and +Solander, Cooke’s naturalists, we find a Danish member of the Academy +of Sciences setting down certain Iceland Whales (reydan-siskur, or +Wrinkled Bellies) at one hundred and twenty yards; that is, three +hundred and sixty feet. And Lacépède, the French naturalist, in his +elaborate history of whales, in the very beginning of his work (page +3), sets down the Right Whale at one hundred metres, three hundred and +twenty-eight feet. And this work was published so late as A.D. 1825. + +But will any whaleman believe these stories? No. The whale of to-day is +as big as his ancestors in Pliny’s time. And if ever I go where Pliny +is, I, a whaleman (more than he was), will make bold to tell him so. +Because I cannot understand how it is, that while the Egyptian mummies +that were buried thousands of years before even Pliny was born, do not +measure so much in their coffins as a modern Kentuckian in his socks; +and while the cattle and other animals sculptured on the oldest +Egyptian and Nineveh tablets, by the relative proportions in which they +are drawn, just as plainly prove that the high-bred, stall-fed, prize +cattle of Smithfield, not only equal, but far exceed in magnitude the +fattest of Pharaoh’s fat kine; in the face of all this, I will not +admit that of all animals the whale alone should have degenerated. + +But still another inquiry remains; one often agitated by the more +recondite Nantucketers. Whether owing to the almost omniscient +look-outs at the mast-heads of the whale-ships, now penetrating even +through Behring’s straits, and into the remotest secret drawers and +lockers of the world; and the thousand harpoons and lances darted along +all continental coasts; the moot point is, whether Leviathan can long +endure so wide a chase, and so remorseless a havoc; whether he must not +at last be exterminated from the waters, and the last whale, like the +last man, smoke his last pipe, and then himself evaporate in the final +puff. + +Comparing the humped herds of whales with the humped herds of buffalo, +which, not forty years ago, overspread by tens of thousands the +prairies of Illinois and Missouri, and shook their iron manes and +scowled with their thunder-clotted brows upon the sites of populous +river-capitals, where now the polite broker sells you land at a dollar +an inch; in such a comparison an irresistible argument would seem +furnished, to show that the hunted whale cannot now escape speedy +extinction. + +But you must look at this matter in every light. Though so short a +period ago—not a good lifetime—the census of the buffalo in Illinois +exceeded the census of men now in London, and though at the present day +not one horn or hoof of them remains in all that region; and though the +cause of this wondrous extermination was the spear of man; yet the far +different nature of the whale-hunt peremptorily forbids so inglorious +an end to the Leviathan. Forty men in one ship hunting the Sperm Whales +for forty-eight months think they have done extremely well, and thank +God, if at last they carry home the oil of forty fish. Whereas, in the +days of the old Canadian and Indian hunters and trappers of the West, +when the far west (in whose sunset suns still rise) was a wilderness +and a virgin, the same number of moccasined men, for the same number of +months, mounted on horse instead of sailing in ships, would have slain +not forty, but forty thousand and more buffaloes; a fact that, if need +were, could be statistically stated. + +Nor, considered aright, does it seem any argument in favour of the +gradual extinction of the Sperm Whale, for example, that in former +years (the latter part of the last century, say) these Leviathans, in +small pods, were encountered much oftener than at present, and, in +consequence, the voyages were not so prolonged, and were also much more +remunerative. Because, as has been elsewhere noticed, those whales, +influenced by some views to safety, now swim the seas in immense +caravans, so that to a large degree the scattered solitaries, yokes, +and pods, and schools of other days are now aggregated into vast but +widely separated, unfrequent armies. That is all. And equally +fallacious seems the conceit, that because the so-called whale-bone +whales no longer haunt many grounds in former years abounding with +them, hence that species also is declining. For they are only being +driven from promontory to cape; and if one coast is no longer enlivened +with their jets, then, be sure, some other and remoter strand has been +very recently startled by the unfamiliar spectacle. + +Furthermore: concerning these last mentioned Leviathans, they have two +firm fortresses, which, in all human probability, will for ever remain +impregnable. And as upon the invasion of their valleys, the frosty +Swiss have retreated to their mountains; so, hunted from the savannas +and glades of the middle seas, the whale-bone whales can at last resort +to their Polar citadels, and diving under the ultimate glassy barriers +and walls there, come up among icy fields and floes; and in a charmed +circle of everlasting December, bid defiance to all pursuit from man. + +But as perhaps fifty of these whale-bone whales are harpooned for one +cachalot, some philosophers of the forecastle have concluded that this +positive havoc has already very seriously diminished their battalions. +But though for some time past a number of these whales, not less than +13,000, have been annually slain on the nor’ west coast by the +Americans alone; yet there are considerations which render even this +circumstance of little or no account as an opposing argument in this +matter. + +Natural as it is to be somewhat incredulous concerning the populousness +of the more enormous creatures of the globe, yet what shall we say to +Harto, the historian of Goa, when he tells us that at one hunting the +King of Siam took 4,000 elephants; that in those regions elephants are +numerous as droves of cattle in the temperate climes. And there seems +no reason to doubt that if these elephants, which have now been hunted +for thousands of years, by Semiramis, by Porus, by Hannibal, and by all +the successive monarchs of the East—if they still survive there in +great numbers, much more may the great whale outlast all hunting, since +he has a pasture to expatiate in, which is precisely twice as large as +all Asia, both Americas, Europe and Africa, New Holland, and all the +Isles of the sea combined. + +Moreover: we are to consider, that from the presumed great longevity of +whales, their probably attaining the age of a century and more, +therefore at any one period of time, several distinct adult generations +must be contemporary. And what that is, we may soon gain some idea of, +by imagining all the grave-yards, cemeteries, and family vaults of +creation yielding up the live bodies of all the men, women, and +children who were alive seventy-five years ago; and adding this +countless host to the present human population of the globe. + +Wherefore, for all these things, we account the whale immortal in his +species, however perishable in his individuality. He swam the seas +before the continents broke water; he once swam over the site of the +Tuileries, and Windsor Castle, and the Kremlin. In Noah’s flood he +despised Noah’s Ark; and if ever the world is to be again flooded, like +the Netherlands, to kill off its rats, then the eternal whale will +still survive, and rearing upon the topmost crest of the equatorial +flood, spout his frothed defiance to the skies. + + +CHAPTER 106. Ahab’s Leg. + +The precipitating manner in which Captain Ahab had quitted the Samuel +Enderby of London, had not been unattended with some small violence to +his own person. He had lighted with such energy upon a thwart of his +boat that his ivory leg had received a half-splintering shock. And when +after gaining his own deck, and his own pivot-hole there, he so +vehemently wheeled round with an urgent command to the steersman (it +was, as ever, something about his not steering inflexibly enough); +then, the already shaken ivory received such an additional twist and +wrench, that though it still remained entire, and to all appearances +lusty, yet Ahab did not deem it entirely trustworthy. + +And, indeed, it seemed small matter for wonder, that for all his +pervading, mad recklessness, Ahab did at times give careful heed to the +condition of that dead bone upon which he partly stood. For it had not +been very long prior to the Pequod’s sailing from Nantucket, that he +had been found one night lying prone upon the ground, and insensible; +by some unknown, and seemingly inexplicable, unimaginable casualty, his +ivory limb having been so violently displaced, that it had stake-wise +smitten, and all but pierced his groin; nor was it without extreme +difficulty that the agonizing wound was entirely cured. + +Nor, at the time, had it failed to enter his monomaniac mind, that all +the anguish of that then present suffering was but the direct issue of +a former woe; and he too plainly seemed to see, that as the most +poisonous reptile of the marsh perpetuates his kind as inevitably as +the sweetest songster of the grove; so, equally with every felicity, +all miserable events do naturally beget their like. Yea, more than +equally, thought Ahab; since both the ancestry and posterity of Grief +go further than the ancestry and posterity of Joy. For, not to hint of +this: that it is an inference from certain canonic teachings, that +while some natural enjoyments here shall have no children born to them +for the other world, but, on the contrary, shall be followed by the +joy-childlessness of all hell’s despair; whereas, some guilty mortal +miseries shall still fertilely beget to themselves an eternally +progressive progeny of griefs beyond the grave; not at all to hint of +this, there still seems an inequality in the deeper analysis of the +thing. For, thought Ahab, while even the highest earthly felicities +ever have a certain unsignifying pettiness lurking in them, but, at +bottom, all heartwoes, a mystic significance, and, in some men, an +archangelic grandeur; so do their diligent tracings-out not belie the +obvious deduction. To trail the genealogies of these high mortal +miseries, carries us at last among the sourceless primogenitures of the +gods; so that, in the face of all the glad, hay-making suns, and soft +cymballing, round harvest-moons, we must needs give in to this: that +the gods themselves are not for ever glad. The ineffaceable, sad +birth-mark in the brow of man, is but the stamp of sorrow in the +signers. + +Unwittingly here a secret has been divulged, which perhaps might more +properly, in set way, have been disclosed before. With many other +particulars concerning Ahab, always had it remained a mystery to some, +why it was, that for a certain period, both before and after the +sailing of the Pequod, he had hidden himself away with such +Grand-Lama-like exclusiveness; and, for that one interval, sought +speechless refuge, as it were, among the marble senate of the dead. +Captain Peleg’s bruited reason for this thing appeared by no means +adequate; though, indeed, as touching all Ahab’s deeper part, every +revelation partook more of significant darkness than of explanatory +light. But, in the end, it all came out; this one matter did, at least. +That direful mishap was at the bottom of his temporary recluseness. And +not only this, but to that ever-contracting, dropping circle ashore, +who, for any reason, possessed the privilege of a less banned approach +to him; to that timid circle the above hinted casualty—remaining, as it +did, moodily unaccounted for by Ahab—invested itself with terrors, not +entirely underived from the land of spirits and of wails. So that, +through their zeal for him, they had all conspired, so far as in them +lay, to muffle up the knowledge of this thing from others; and hence it +was, that not till a considerable interval had elapsed, did it +transpire upon the Pequod’s decks. + +But be all this as it may; let the unseen, ambiguous synod in the air, +or the vindictive princes and potentates of fire, have to do or not +with earthly Ahab, yet, in this present matter of his leg, he took +plain practical procedures;—he called the carpenter. + +And when that functionary appeared before him, he bade him without +delay set about making a new leg, and directed the mates to see him +supplied with all the studs and joists of jaw-ivory (Sperm Whale) which +had thus far been accumulated on the voyage, in order that a careful +selection of the stoutest, clearest-grained stuff might be secured. +This done, the carpenter received orders to have the leg completed that +night; and to provide all the fittings for it, independent of those +pertaining to the distrusted one in use. Moreover, the ship’s forge was +ordered to be hoisted out of its temporary idleness in the hold; and, +to accelerate the affair, the blacksmith was commanded to proceed at +once to the forging of whatever iron contrivances might be needed. + + +CHAPTER 107. The Carpenter. + +Seat thyself sultanically among the moons of Saturn, and take high +abstracted man alone; and he seems a wonder, a grandeur, and a woe. But +from the same point, take mankind in mass, and for the most part, they +seem a mob of unnecessary duplicates, both contemporary and hereditary. +But most humble though he was, and far from furnishing an example of +the high, humane abstraction; the Pequod’s carpenter was no duplicate; +hence, he now comes in person on this stage. + +Like all sea-going ship carpenters, and more especially those belonging +to whaling vessels, he was, to a certain off-handed, practical extent, +alike experienced in numerous trades and callings collateral to his +own; the carpenter’s pursuit being the ancient and outbranching trunk +of all those numerous handicrafts which more or less have to do with +wood as an auxiliary material. But, besides the application to him of +the generic remark above, this carpenter of the Pequod was singularly +efficient in those thousand nameless mechanical emergencies continually +recurring in a large ship, upon a three or four years’ voyage, in +uncivilized and far-distant seas. For not to speak of his readiness in +ordinary duties:—repairing stove boats, sprung spars, reforming the +shape of clumsy-bladed oars, inserting bull’s eyes in the deck, or new +tree-nails in the side planks, and other miscellaneous matters more +directly pertaining to his special business; he was moreover +unhesitatingly expert in all manner of conflicting aptitudes, both +useful and capricious. + +The one grand stage where he enacted all his various parts so manifold, +was his vice-bench; a long rude ponderous table furnished with several +vices, of different sizes, and both of iron and of wood. At all times +except when whales were alongside, this bench was securely lashed +athwartships against the rear of the Try-works. + +A belaying pin is found too large to be easily inserted into its hole: +the carpenter claps it into one of his ever-ready vices, and +straightway files it smaller. A lost land-bird of strange plumage +strays on board, and is made a captive: out of clean shaved rods of +right-whale bone, and cross-beams of sperm whale ivory, the carpenter +makes a pagoda-looking cage for it. An oarsman sprains his wrist: the +carpenter concocts a soothing lotion. Stubb longed for vermillion stars +to be painted upon the blade of his every oar; screwing each oar in his +big vice of wood, the carpenter symmetrically supplies the +constellation. A sailor takes a fancy to wear shark-bone ear-rings: the +carpenter drills his ears. Another has the toothache: the carpenter out +pincers, and clapping one hand upon his bench bids him be seated there; +but the poor fellow unmanageably winces under the unconcluded +operation; whirling round the handle of his wooden vice, the carpenter +signs him to clap his jaw in that, if he would have him draw the tooth. + +Thus, this carpenter was prepared at all points, and alike indifferent +and without respect in all. Teeth he accounted bits of ivory; heads he +deemed but top-blocks; men themselves he lightly held for capstans. But +while now upon so wide a field thus variously accomplished and with +such liveliness of expertness in him, too; all this would seem to argue +some uncommon vivacity of intelligence. But not precisely so. For +nothing was this man more remarkable, than for a certain impersonal +stolidity as it were; impersonal, I say; for it so shaded off into the +surrounding infinite of things, that it seemed one with the general +stolidity discernible in the whole visible world; which while +pauselessly active in uncounted modes, still eternally holds its peace, +and ignores you, though you dig foundations for cathedrals. Yet was +this half-horrible stolidity in him, involving, too, as it appeared, an +all-ramifying heartlessness;—yet was it oddly dashed at times, with an +old, crutch-like, antediluvian, wheezing humorousness, not unstreaked +now and then with a certain grizzled wittiness; such as might have +served to pass the time during the midnight watch on the bearded +forecastle of Noah’s ark. Was it that this old carpenter had been a +life-long wanderer, whose much rolling, to and fro, not only had +gathered no moss; but what is more, had rubbed off whatever small +outward clingings might have originally pertained to him? He was a +stript abstract; an unfractioned integral; uncompromised as a new-born +babe; living without premeditated reference to this world or the next. +You might almost say, that this strange uncompromisedness in him +involved a sort of unintelligence; for in his numerous trades, he did +not seem to work so much by reason or by instinct, or simply because he +had been tutored to it, or by any intermixture of all these, even or +uneven; but merely by a kind of deaf and dumb, spontaneous literal +process. He was a pure manipulator; his brain, if he had ever had one, +must have early oozed along into the muscles of his fingers. He was +like one of those unreasoning but still highly useful, _multum in +parvo_, Sheffield contrivances, assuming the exterior—though a little +swelled—of a common pocket knife; but containing, not only blades of +various sizes, but also screw-drivers, cork-screws, tweezers, awls, +pens, rulers, nail-filers, countersinkers. So, if his superiors wanted +to use the carpenter for a screw-driver, all they had to do was to open +that part of him, and the screw was fast: or if for tweezers, take him +up by the legs, and there they were. + +Yet, as previously hinted, this omnitooled, open-and-shut carpenter, +was, after all, no mere machine of an automaton. If he did not have a +common soul in him, he had a subtle something that somehow anomalously +did its duty. What that was, whether essence of quicksilver, or a few +drops of hartshorn, there is no telling. But there it was; and there it +had abided for now some sixty years or more. And this it was, this same +unaccountable, cunning life-principle in him; this it was, that kept +him a great part of the time soliloquizing; but only like an +unreasoning wheel, which also hummingly soliloquizes; or rather, his +body was a sentry-box and this soliloquizer on guard there, and talking +all the time to keep himself awake. + + +CHAPTER 108. Ahab and the Carpenter. + +The Deck—First Night Watch. + +(_Carpenter standing before his vice-bench, and by the light of two +lanterns busily filing the ivory joist for the leg, which joist is +firmly fixed in the vice. Slabs of ivory, leather straps, pads, screws, +and various tools of all sorts lying about the bench. Forward, the red +flame of the forge is seen, where the blacksmith is at work._) + +Drat the file, and drat the bone! That is hard which should be soft, +and that is soft which should be hard. So we go, who file old jaws and +shinbones. Let’s try another. Aye, now, this works better (_sneezes_). +Halloa, this bone dust is (_sneezes_)—why it’s (_sneezes_)—yes it’s +(_sneezes_)—bless my soul, it won’t let me speak! This is what an old +fellow gets now for working in dead lumber. Saw a live tree, and you +don’t get this dust; amputate a live bone, and you don’t get it +(_sneezes_). Come, come, you old Smut, there, bear a hand, and let’s +have that ferule and buckle-screw; I’ll be ready for them presently. +Lucky now (_sneezes_) there’s no knee-joint to make; that might puzzle +a little; but a mere shinbone—why it’s easy as making hop-poles; only I +should like to put a good finish on. Time, time; if I but only had the +time, I could turn him out as neat a leg now as ever (_sneezes_) +scraped to a lady in a parlor. Those buckskin legs and calves of legs +I’ve seen in shop windows wouldn’t compare at all. They soak water, +they do; and of course get rheumatic, and have to be doctored +(_sneezes_) with washes and lotions, just like live legs. There; before +I saw it off, now, I must call his old Mogulship, and see whether the +length will be all right; too short, if anything, I guess. Ha! that’s +the heel; we are in luck; here he comes, or it’s somebody else, that’s +certain. + +AHAB (_advancing_). (_During the ensuing scene, the carpenter continues +sneezing at times._) + +Well, manmaker! + +Just in time, sir. If the captain pleases, I will now mark the length. +Let me measure, sir. + +Measured for a leg! good. Well, it’s not the first time. About it! +There; keep thy finger on it. This is a cogent vice thou hast here, +carpenter; let me feel its grip once. So, so; it does pinch some. + +Oh, sir, it will break bones—beware, beware! + +No fear; I like a good grip; I like to feel something in this slippery +world that can hold, man. What’s Prometheus about there?—the +blacksmith, I mean—what’s he about? + +He must be forging the buckle-screw, sir, now. + +Right. It’s a partnership; he supplies the muscle part. He makes a +fierce red flame there! + +Aye, sir; he must have the white heat for this kind of fine work. + +Um-m. So he must. I do deem it now a most meaning thing, that that old +Greek, Prometheus, who made men, they say, should have been a +blacksmith, and animated them with fire; for what’s made in fire must +properly belong to fire; and so hell’s probable. How the soot flies! +This must be the remainder the Greek made the Africans of. Carpenter, +when he’s through with that buckle, tell him to forge a pair of steel +shoulder-blades; there’s a pedlar aboard with a crushing pack. + +Sir? + +Hold; while Prometheus is about it, I’ll order a complete man after a +desirable pattern. Imprimis, fifty feet high in his socks; then, chest +modelled after the Thames Tunnel; then, legs with roots to ’em, to stay +in one place; then, arms three feet through the wrist; no heart at all, +brass forehead, and about a quarter of an acre of fine brains; and let +me see—shall I order eyes to see outwards? No, but put a sky-light on +top of his head to illuminate inwards. There, take the order, and away. + +Now, what’s he speaking about, and who’s he speaking to, I should like +to know? Shall I keep standing here? (_aside_). + +’Tis but indifferent architecture to make a blind dome; here’s one. No, +no, no; I must have a lantern. + +Ho, ho! That’s it, hey? Here are two, sir; one will serve my turn. + +What art thou thrusting that thief-catcher into my face for, man? +Thrusted light is worse than presented pistols. + +I thought, sir, that you spoke to carpenter. + +Carpenter? why that’s—but no;—a very tidy, and, I may say, an extremely +gentlemanlike sort of business thou art in here, carpenter;—or would’st +thou rather work in clay? + +Sir?—Clay? clay, sir? That’s mud; we leave clay to ditchers, sir. + +The fellow’s impious! What art thou sneezing about? + +Bone is rather dusty, sir. + +Take the hint, then; and when thou art dead, never bury thyself under +living people’s noses. + +Sir?—oh! ah!—I guess so;—yes—oh, dear! + +Look ye, carpenter, I dare say thou callest thyself a right good +workmanlike workman, eh? Well, then, will it speak thoroughly well for +thy work, if, when I come to mount this leg thou makest, I shall +nevertheless feel another leg in the same identical place with it; that +is, carpenter, my old lost leg; the flesh and blood one, I mean. Canst +thou not drive that old Adam away? + +Truly, sir, I begin to understand somewhat now. Yes, I have heard +something curious on that score, sir; how that a dismasted man never +entirely loses the feeling of his old spar, but it will be still +pricking him at times. May I humbly ask if it be really so, sir? + +It is, man. Look, put thy live leg here in the place where mine once +was; so, now, here is only one distinct leg to the eye, yet two to the +soul. Where thou feelest tingling life; there, exactly there, there to +a hair, do I. Is’t a riddle? + +I should humbly call it a poser, sir. + +Hist, then. How dost thou know that some entire, living, thinking thing +may not be invisibly and uninterpenetratingly standing precisely where +thou now standest; aye, and standing there in thy spite? In thy most +solitary hours, then, dost thou not fear eavesdroppers? Hold, don’t +speak! And if I still feel the smart of my crushed leg, though it be +now so long dissolved; then, why mayst not thou, carpenter, feel the +fiery pains of hell for ever, and without a body? Hah! + +Good Lord! Truly, sir, if it comes to that, I must calculate over +again; I think I didn’t carry a small figure, sir. + +Look ye, pudding-heads should never grant premises.—How long before the +leg is done? + +Perhaps an hour, sir. + +Bungle away at it then, and bring it to me (_turns to go_). Oh, Life! +Here I am, proud as Greek god, and yet standing debtor to this +blockhead for a bone to stand on! Cursed be that mortal +inter-indebtedness which will not do away with ledgers. I would be free +as air; and I’m down in the whole world’s books. I am so rich, I could +have given bid for bid with the wealthiest Prætorians at the auction of +the Roman empire (which was the world’s); and yet I owe for the flesh +in the tongue I brag with. By heavens! I’ll get a crucible, and into +it, and dissolve myself down to one small, compendious vertebra. So. + +CARPENTER (_resuming his work_). + +Well, well, well! Stubb knows him best of all, and Stubb always says +he’s queer; says nothing but that one sufficient little word queer; +he’s queer, says Stubb; he’s queer—queer, queer; and keeps dinning it +into Mr. Starbuck all the time—queer—sir—queer, queer, very queer. And +here’s his leg! Yes, now that I think of it, here’s his bedfellow! has +a stick of whale’s jaw-bone for a wife! And this is his leg; he’ll +stand on this. What was that now about one leg standing in three +places, and all three places standing in one hell—how was that? Oh! I +don’t wonder he looked so scornful at me! I’m a sort of +strange-thoughted sometimes, they say; but that’s only haphazard-like. +Then, a short, little old body like me, should never undertake to wade +out into deep waters with tall, heron-built captains; the water chucks +you under the chin pretty quick, and there’s a great cry for +life-boats. And here’s the heron’s leg! long and slim, sure enough! +Now, for most folks one pair of legs lasts a lifetime, and that must be +because they use them mercifully, as a tender-hearted old lady uses her +roly-poly old coach-horses. But Ahab; oh he’s a hard driver. Look, +driven one leg to death, and spavined the other for life, and now wears +out bone legs by the cord. Halloa, there, you Smut! bear a hand there +with those screws, and let’s finish it before the resurrection fellow +comes a-calling with his horn for all legs, true or false, as +brewery-men go round collecting old beer barrels, to fill ’em up again. +What a leg this is! It looks like a real live leg, filed down to +nothing but the core; he’ll be standing on this to-morrow; he’ll be +taking altitudes on it. Halloa! I almost forgot the little oval slate, +smoothed ivory, where he figures up the latitude. So, so; chisel, file, +and sand-paper, now! + + +CHAPTER 109. Ahab and Starbuck in the Cabin. + +According to usage they were pumping the ship next morning; and lo! no +inconsiderable oil came up with the water; the casks below must have +sprung a bad leak. Much concern was shown; and Starbuck went down into +the cabin to report this unfavourable affair.* + +*In Sperm-whalemen with any considerable quantity of oil on board, it +is a regular semi-weekly duty to conduct a hose into the hold, and +drench the casks with sea-water; which afterwards, at varying +intervals, is removed by the ship’s pumps. Hereby the casks are sought +to be kept damply tight; while by the changed character of the +withdrawn water, the mariners readily detect any serious leakage in the +precious cargo. + +Now, from the South and West the Pequod was drawing nigh to Formosa and +the Bashee Isles, between which lies one of the tropical outlets from +the China waters into the Pacific. And so Starbuck found Ahab with a +general chart of the oriental archipelagoes spread before him; and +another separate one representing the long eastern coasts of the +Japanese islands—Niphon, Matsmai, and Sikoke. With his snow-white new +ivory leg braced against the screwed leg of his table, and with a long +pruning-hook of a jack-knife in his hand, the wondrous old man, with +his back to the gangway door, was wrinkling his brow, and tracing his +old courses again. + +“Who’s there?” hearing the footstep at the door, but not turning round +to it. “On deck! Begone!” + +“Captain Ahab mistakes; it is I. The oil in the hold is leaking, sir. +We must up Burtons and break out.” + +“Up Burtons and break out? Now that we are nearing Japan; heave-to here +for a week to tinker a parcel of old hoops?” + +“Either do that, sir, or waste in one day more oil than we may make +good in a year. What we come twenty thousand miles to get is worth +saving, sir.” + +“So it is, so it is; if we get it.” + +“I was speaking of the oil in the hold, sir.” + +“And I was not speaking or thinking of that at all. Begone! Let it +leak! I’m all aleak myself. Aye! leaks in leaks! not only full of leaky +casks, but those leaky casks are in a leaky ship; and that’s a far +worse plight than the Pequod’s, man. Yet I don’t stop to plug my leak; +for who can find it in the deep-loaded hull; or how hope to plug it, +even if found, in this life’s howling gale? Starbuck! I’ll not have the +Burtons hoisted.” + +“What will the owners say, sir?” + +“Let the owners stand on Nantucket beach and outyell the Typhoons. What +cares Ahab? Owners, owners? Thou art always prating to me, Starbuck, +about those miserly owners, as if the owners were my conscience. But +look ye, the only real owner of anything is its commander; and hark ye, +my conscience is in this ship’s keel.—On deck!” + +“Captain Ahab,” said the reddening mate, moving further into the cabin, +with a daring so strangely respectful and cautious that it almost +seemed not only every way seeking to avoid the slightest outward +manifestation of itself, but within also seemed more than half +distrustful of itself; “A better man than I might well pass over in +thee what he would quickly enough resent in a younger man; aye, and in +a happier, Captain Ahab.” + +“Devils! Dost thou then so much as dare to critically think of me?—On +deck!” + +“Nay, sir, not yet; I do entreat. And I do dare, sir—to be forbearing! +Shall we not understand each other better than hitherto, Captain Ahab?” + +Ahab seized a loaded musket from the rack (forming part of most +South-Sea-men’s cabin furniture), and pointing it towards Starbuck, +exclaimed: “There is one God that is Lord over the earth, and one +Captain that is lord over the Pequod.—On deck!” + +For an instant in the flashing eyes of the mate, and his fiery cheeks, +you would have almost thought that he had really received the blaze of +the levelled tube. But, mastering his emotion, he half calmly rose, and +as he quitted the cabin, paused for an instant and said: “Thou hast +outraged, not insulted me, sir; but for that I ask thee not to beware +of Starbuck; thou wouldst but laugh; but let Ahab beware of Ahab; +beware of thyself, old man.” + +“He waxes brave, but nevertheless obeys; most careful bravery that!” +murmured Ahab, as Starbuck disappeared. “What’s that he said—Ahab +beware of Ahab—there’s something there!” Then unconsciously using the +musket for a staff, with an iron brow he paced to and fro in the little +cabin; but presently the thick plaits of his forehead relaxed, and +returning the gun to the rack, he went to the deck. + +“Thou art but too good a fellow, Starbuck,” he said lowly to the mate; +then raising his voice to the crew: “Furl the t’gallant-sails, and +close-reef the top-sails, fore and aft; back the main-yard; up Burton, +and break out in the main-hold.” + +It were perhaps vain to surmise exactly why it was, that as respecting +Starbuck, Ahab thus acted. It may have been a flash of honesty in him; +or mere prudential policy which, under the circumstance, imperiously +forbade the slightest symptom of open disaffection, however transient, +in the important chief officer of his ship. However it was, his orders +were executed; and the Burtons were hoisted. + + +CHAPTER 110. Queequeg in His Coffin. + +Upon searching, it was found that the casks last struck into the hold +were perfectly sound, and that the leak must be further off. So, it +being calm weather, they broke out deeper and deeper, disturbing the +slumbers of the huge ground-tier butts; and from that black midnight +sending those gigantic moles into the daylight above. So deep did they +go; and so ancient, and corroded, and weedy the aspect of the lowermost +puncheons, that you almost looked next for some mouldy corner-stone +cask containing coins of Captain Noah, with copies of the posted +placards, vainly warning the infatuated old world from the flood. +Tierce after tierce, too, of water, and bread, and beef, and shooks of +staves, and iron bundles of hoops, were hoisted out, till at last the +piled decks were hard to get about; and the hollow hull echoed under +foot, as if you were treading over empty catacombs, and reeled and +rolled in the sea like an air-freighted demijohn. Top-heavy was the +ship as a dinnerless student with all Aristotle in his head. Well was +it that the Typhoons did not visit them then. + +Now, at this time it was that my poor pagan companion, and fast +bosom-friend, Queequeg, was seized with a fever, which brought him nigh +to his endless end. + +Be it said, that in this vocation of whaling, sinecures are unknown; +dignity and danger go hand in hand; till you get to be Captain, the +higher you rise the harder you toil. So with poor Queequeg, who, as +harpooneer, must not only face all the rage of the living whale, but—as +we have elsewhere seen—mount his dead back in a rolling sea; and +finally descend into the gloom of the hold, and bitterly sweating all +day in that subterraneous confinement, resolutely manhandle the +clumsiest casks and see to their stowage. To be short, among whalemen, +the harpooneers are the holders, so called. + +Poor Queequeg! when the ship was about half disembowelled, you should +have stooped over the hatchway, and peered down upon him there; where, +stripped to his woollen drawers, the tattooed savage was crawling about +amid that dampness and slime, like a green spotted lizard at the bottom +of a well. And a well, or an ice-house, it somehow proved to him, poor +pagan; where, strange to say, for all the heat of his sweatings, he +caught a terrible chill which lapsed into a fever; and at last, after +some days’ suffering, laid him in his hammock, close to the very sill +of the door of death. How he wasted and wasted away in those few +long-lingering days, till there seemed but little left of him but his +frame and tattooing. But as all else in him thinned, and his +cheek-bones grew sharper, his eyes, nevertheless, seemed growing fuller +and fuller; they became of a strange softness of lustre; and mildly but +deeply looked out at you there from his sickness, a wondrous testimony +to that immortal health in him which could not die, or be weakened. And +like circles on the water, which, as they grow fainter, expand; so his +eyes seemed rounding and rounding, like the rings of Eternity. An awe +that cannot be named would steal over you as you sat by the side of +this waning savage, and saw as strange things in his face, as any +beheld who were bystanders when Zoroaster died. For whatever is truly +wondrous and fearful in man, never yet was put into words or books. And +the drawing near of Death, which alike levels all, alike impresses all +with a last revelation, which only an author from the dead could +adequately tell. So that—let us say it again—no dying Chaldee or Greek +had higher and holier thoughts than those, whose mysterious shades you +saw creeping over the face of poor Queequeg, as he quietly lay in his +swaying hammock, and the rolling sea seemed gently rocking him to his +final rest, and the ocean’s invisible flood-tide lifted him higher and +higher towards his destined heaven. + +Not a man of the crew but gave him up; and, as for Queequeg himself, +what he thought of his case was forcibly shown by a curious favour he +asked. He called one to him in the grey morning watch, when the day was +just breaking, and taking his hand, said that while in Nantucket he had +chanced to see certain little canoes of dark wood, like the rich +war-wood of his native isle; and upon inquiry, he had learned that all +whalemen who died in Nantucket, were laid in those same dark canoes, +and that the fancy of being so laid had much pleased him; for it was +not unlike the custom of his own race, who, after embalming a dead +warrior, stretched him out in his canoe, and so left him to be floated +away to the starry archipelagoes; for not only do they believe that the +stars are isles, but that far beyond all visible horizons, their own +mild, uncontinented seas, interflow with the blue heavens; and so form +the white breakers of the milky way. He added, that he shuddered at the +thought of being buried in his hammock, according to the usual +sea-custom, tossed like something vile to the death-devouring sharks. +No: he desired a canoe like those of Nantucket, all the more congenial +to him, being a whaleman, that like a whale-boat these coffin-canoes +were without a keel; though that involved but uncertain steering, and +much lee-way adown the dim ages. + +Now, when this strange circumstance was made known aft, the carpenter +was at once commanded to do Queequeg’s bidding, whatever it might +include. There was some heathenish, coffin-coloured old lumber aboard, +which, upon a long previous voyage, had been cut from the aboriginal +groves of the Lackaday islands, and from these dark planks the coffin +was recommended to be made. No sooner was the carpenter apprised of the +order, than taking his rule, he forthwith with all the indifferent +promptitude of his character, proceeded into the forecastle and took +Queequeg’s measure with great accuracy, regularly chalking Queequeg’s +person as he shifted the rule. + +“Ah! poor fellow! he’ll have to die now,” ejaculated the Long Island +sailor. + +Going to his vice-bench, the carpenter for convenience sake and general +reference, now transferringly measured on it the exact length the +coffin was to be, and then made the transfer permanent by cutting two +notches at its extremities. This done, he marshalled the planks and his +tools, and to work. + +When the last nail was driven, and the lid duly planed and fitted, he +lightly shouldered the coffin and went forward with it, inquiring +whether they were ready for it yet in that direction. + +Overhearing the indignant but half-humorous cries with which the people +on deck began to drive the coffin away, Queequeg, to every one’s +consternation, commanded that the thing should be instantly brought to +him, nor was there any denying him; seeing that, of all mortals, some +dying men are the most tyrannical; and certainly, since they will +shortly trouble us so little for evermore, the poor fellows ought to be +indulged. + +Leaning over in his hammock, Queequeg long regarded the coffin with an +attentive eye. He then called for his harpoon, had the wooden stock +drawn from it, and then had the iron part placed in the coffin along +with one of the paddles of his boat. All by his own request, also, +biscuits were then ranged round the sides within: a flask of fresh +water was placed at the head, and a small bag of woody earth scraped up +in the hold at the foot; and a piece of sail-cloth being rolled up for +a pillow, Queequeg now entreated to be lifted into his final bed, that +he might make trial of its comforts, if any it had. He lay without +moving a few minutes, then told one to go to his bag and bring out his +little god, Yojo. Then crossing his arms on his breast with Yojo +between, he called for the coffin lid (hatch he called it) to be placed +over him. The head part turned over with a leather hinge, and there lay +Queequeg in his coffin with little but his composed countenance in +view. “Rarmai” (it will do; it is easy), he murmured at last, and +signed to be replaced in his hammock. + +But ere this was done, Pip, who had been slily hovering near by all +this while, drew nigh to him where he lay, and with soft sobbings, took +him by the hand; in the other, holding his tambourine. + +“Poor rover! will ye never have done with all this weary roving? where +go ye now? But if the currents carry ye to those sweet Antilles where +the beaches are only beat with water-lilies, will ye do one little +errand for me? Seek out one Pip, who’s now been missing long: I think +he’s in those far Antilles. If ye find him, then comfort him; for he +must be very sad; for look! he’s left his tambourine behind;—I found +it. Rig-a-dig, dig, dig! Now, Queequeg, die; and I’ll beat ye your +dying march.” + +“I have heard,” murmured Starbuck, gazing down the scuttle, “that in +violent fevers, men, all ignorance, have talked in ancient tongues; and +that when the mystery is probed, it turns out always that in their +wholly forgotten childhood those ancient tongues had been really spoken +in their hearing by some lofty scholars. So, to my fond faith, poor +Pip, in this strange sweetness of his lunacy, brings heavenly vouchers +of all our heavenly homes. Where learned he that, but there?—Hark! he +speaks again: but more wildly now.” + +“Form two and two! Let’s make a General of him! Ho, where’s his +harpoon? Lay it across here.—Rig-a-dig, dig, dig! huzza! Oh for a game +cock now to sit upon his head and crow! Queequeg dies game!—mind ye +that; Queequeg dies game!—take ye good heed of that; Queequeg dies +game! I say; game, game, game! but base little Pip, he died a coward; +died all a’shiver;—out upon Pip! Hark ye; if ye find Pip, tell all the +Antilles he’s a runaway; a coward, a coward, a coward! Tell them he +jumped from a whale-boat! I’d never beat my tambourine over base Pip, +and hail him General, if he were once more dying here. No, no! shame +upon all cowards—shame upon them! Let ’em go drown like Pip, that +jumped from a whale-boat. Shame! shame!” + +During all this, Queequeg lay with closed eyes, as if in a dream. Pip +was led away, and the sick man was replaced in his hammock. + +But now that he had apparently made every preparation for death; now +that his coffin was proved a good fit, Queequeg suddenly rallied; soon +there seemed no need of the carpenter’s box: and thereupon, when some +expressed their delighted surprise, he, in substance, said, that the +cause of his sudden convalescence was this;—at a critical moment, he +had just recalled a little duty ashore, which he was leaving undone; +and therefore had changed his mind about dying: he could not die yet, +he averred. They asked him, then, whether to live or die was a matter +of his own sovereign will and pleasure. He answered, certainly. In a +word, it was Queequeg’s conceit, that if a man made up his mind to +live, mere sickness could not kill him: nothing but a whale, or a gale, +or some violent, ungovernable, unintelligent destroyer of that sort. + +Now, there is this noteworthy difference between savage and civilized; +that while a sick, civilized man may be six months convalescing, +generally speaking, a sick savage is almost half-well again in a day. +So, in good time my Queequeg gained strength; and at length after +sitting on the windlass for a few indolent days (but eating with a +vigorous appetite) he suddenly leaped to his feet, threw out his arms +and legs, gave himself a good stretching, yawned a little bit, and then +springing into the head of his hoisted boat, and poising a harpoon, +pronounced himself fit for a fight. + +With a wild whimsiness, he now used his coffin for a sea-chest; and +emptying into it his canvas bag of clothes, set them in order there. +Many spare hours he spent, in carving the lid with all manner of +grotesque figures and drawings; and it seemed that hereby he was +striving, in his rude way, to copy parts of the twisted tattooing on +his body. And this tattooing had been the work of a departed prophet +and seer of his island, who, by those hieroglyphic marks, had written +out on his body a complete theory of the heavens and the earth, and a +mystical treatise on the art of attaining truth; so that Queequeg in +his own proper person was a riddle to unfold; a wondrous work in one +volume; but whose mysteries not even himself could read, though his own +live heart beat against them; and these mysteries were therefore +destined in the end to moulder away with the living parchment whereon +they were inscribed, and so be unsolved to the last. And this thought +it must have been which suggested to Ahab that wild exclamation of his, +when one morning turning away from surveying poor Queequeg—“Oh, +devilish tantalization of the gods!” + + +CHAPTER 111. The Pacific. + +When gliding by the Bashee isles we emerged at last upon the great +South Sea; were it not for other things, I could have greeted my dear +Pacific with uncounted thanks, for now the long supplication of my +youth was answered; that serene ocean rolled eastwards from me a +thousand leagues of blue. + +There is, one knows not what sweet mystery about this sea, whose gently +awful stirrings seem to speak of some hidden soul beneath; like those +fabled undulations of the Ephesian sod over the buried Evangelist St. +John. And meet it is, that over these sea-pastures, wide-rolling watery +prairies and Potters’ Fields of all four continents, the waves should +rise and fall, and ebb and flow unceasingly; for here, millions of +mixed shades and shadows, drowned dreams, somnambulisms, reveries; all +that we call lives and souls, lie dreaming, dreaming, still; tossing +like slumberers in their beds; the ever-rolling waves but made so by +their restlessness. + +To any meditative Magian rover, this serene Pacific, once beheld, must +ever after be the sea of his adoption. It rolls the midmost waters of +the world, the Indian ocean and Atlantic being but its arms. The same +waves wash the moles of the new-built Californian towns, but yesterday +planted by the recentest race of men, and lave the faded but still +gorgeous skirts of Asiatic lands, older than Abraham; while all between +float milky-ways of coral isles, and low-lying, endless, unknown +Archipelagoes, and impenetrable Japans. Thus this mysterious, divine +Pacific zones the world’s whole bulk about; makes all coasts one bay to +it; seems the tide-beating heart of earth. Lifted by those eternal +swells, you needs must own the seductive god, bowing your head to Pan. + +But few thoughts of Pan stirred Ahab’s brain, as standing like an iron +statue at his accustomed place beside the mizen rigging, with one +nostril he unthinkingly snuffed the sugary musk from the Bashee isles +(in whose sweet woods mild lovers must be walking), and with the other +consciously inhaled the salt breath of the new found sea; that sea in +which the hated White Whale must even then be swimming. Launched at +length upon these almost final waters, and gliding towards the Japanese +cruising-ground, the old man’s purpose intensified itself. His firm +lips met like the lips of a vice; the Delta of his forehead’s veins +swelled like overladen brooks; in his very sleep, his ringing cry ran +through the vaulted hull, “Stern all! the White Whale spouts thick +blood!” + + +CHAPTER 112. The Blacksmith. + +Availing himself of the mild, summer-cool weather that now reigned in +these latitudes, and in preparation for the peculiarly active pursuits +shortly to be anticipated, Perth, the begrimed, blistered old +blacksmith, had not removed his portable forge to the hold again, after +concluding his contributory work for Ahab’s leg, but still retained it +on deck, fast lashed to ringbolts by the foremast; being now almost +incessantly invoked by the headsmen, and harpooneers, and bowsmen to do +some little job for them; altering, or repairing, or new shaping their +various weapons and boat furniture. Often he would be surrounded by an +eager circle, all waiting to be served; holding boat-spades, +pike-heads, harpoons, and lances, and jealously watching his every +sooty movement, as he toiled. Nevertheless, this old man’s was a +patient hammer wielded by a patient arm. No murmur, no impatience, no +petulance did come from him. Silent, slow, and solemn; bowing over +still further his chronically broken back, he toiled away, as if toil +were life itself, and the heavy beating of his hammer the heavy beating +of his heart. And so it was.—Most miserable! + +A peculiar walk in this old man, a certain slight but painful appearing +yawing in his gait, had at an early period of the voyage excited the +curiosity of the mariners. And to the importunity of their persisted +questionings he had finally given in; and so it came to pass that every +one now knew the shameful story of his wretched fate. + +Belated, and not innocently, one bitter winter’s midnight, on the road +running between two country towns, the blacksmith half-stupidly felt +the deadly numbness stealing over him, and sought refuge in a leaning, +dilapidated barn. The issue was, the loss of the extremities of both +feet. Out of this revelation, part by part, at last came out the four +acts of the gladness, and the one long, and as yet uncatastrophied +fifth act of the grief of his life’s drama. + +He was an old man, who, at the age of nearly sixty, had postponedly +encountered that thing in sorrow’s technicals called ruin. He had been +an artisan of famed excellence, and with plenty to do; owned a house +and garden; embraced a youthful, daughter-like, loving wife, and three +blithe, ruddy children; every Sunday went to a cheerful-looking church, +planted in a grove. But one night, under cover of darkness, and further +concealed in a most cunning disguisement, a desperate burglar slid into +his happy home, and robbed them all of everything. And darker yet to +tell, the blacksmith himself did ignorantly conduct this burglar into +his family’s heart. It was the Bottle Conjuror! Upon the opening of +that fatal cork, forth flew the fiend, and shrivelled up his home. Now, +for prudent, most wise, and economic reasons, the blacksmith’s shop was +in the basement of his dwelling, but with a separate entrance to it; so +that always had the young and loving healthy wife listened with no +unhappy nervousness, but with vigorous pleasure, to the stout ringing +of her young-armed old husband’s hammer; whose reverberations, muffled +by passing through the floors and walls, came up to her, not unsweetly, +in her nursery; and so, to stout Labor’s iron lullaby, the blacksmith’s +infants were rocked to slumber. + +Oh, woe on woe! Oh, Death, why canst thou not sometimes be timely? +Hadst thou taken this old blacksmith to thyself ere his full ruin came +upon him, then had the young widow had a delicious grief, and her +orphans a truly venerable, legendary sire to dream of in their after +years; and all of them a care-killing competency. But Death plucked +down some virtuous elder brother, on whose whistling daily toil solely +hung the responsibilities of some other family, and left the worse than +useless old man standing, till the hideous rot of life should make him +easier to harvest. + +Why tell the whole? The blows of the basement hammer every day grew +more and more between; and each blow every day grew fainter than the +last; the wife sat frozen at the window, with tearless eyes, +glitteringly gazing into the weeping faces of her children; the bellows +fell; the forge choked up with cinders; the house was sold; the mother +dived down into the long church-yard grass; her children twice followed +her thither; and the houseless, familyless old man staggered off a +vagabond in crape; his every woe unreverenced; his grey head a scorn to +flaxen curls! + +Death seems the only desirable sequel for a career like this; but Death +is only a launching into the region of the strange Untried; it is but +the first salutation to the possibilities of the immense Remote, the +Wild, the Watery, the Unshored; therefore, to the death-longing eyes of +such men, who still have left in them some interior compunctions +against suicide, does the all-contributed and all-receptive ocean +alluringly spread forth his whole plain of unimaginable, taking +terrors, and wonderful, new-life adventures; and from the hearts of +infinite Pacifics, the thousand mermaids sing to them—“Come hither, +broken-hearted; here is another life without the guilt of intermediate +death; here are wonders supernatural, without dying for them. Come +hither! bury thyself in a life which, to your now equally abhorred and +abhorring, landed world, is more oblivious than death. Come hither! put +up _thy_ gravestone, too, within the churchyard, and come hither, till +we marry thee!” + +Hearkening to these voices, East and West, by early sunrise, and by +fall of eve, the blacksmith’s soul responded, Aye, I come! And so Perth +went a-whaling. + + +CHAPTER 113. The Forge. + +With matted beard, and swathed in a bristling shark-skin apron, about +mid-day, Perth was standing between his forge and anvil, the latter +placed upon an iron-wood log, with one hand holding a pike-head in the +coals, and with the other at his forge’s lungs, when Captain Ahab came +along, carrying in his hand a small rusty-looking leathern bag. While +yet a little distance from the forge, moody Ahab paused; till at last, +Perth, withdrawing his iron from the fire, began hammering it upon the +anvil—the red mass sending off the sparks in thick hovering flights, +some of which flew close to Ahab. + +“Are these thy Mother Carey’s chickens, Perth? they are always flying +in thy wake; birds of good omen, too, but not to all;—look here, they +burn; but thou—thou liv’st among them without a scorch.” + +“Because I am scorched all over, Captain Ahab,” answered Perth, resting +for a moment on his hammer; “I am past scorching; not easily can’st +thou scorch a scar.” + +“Well, well; no more. Thy shrunk voice sounds too calmly, sanely woeful +to me. In no Paradise myself, I am impatient of all misery in others +that is not mad. Thou should’st go mad, blacksmith; say, why dost thou +not go mad? How can’st thou endure without being mad? Do the heavens +yet hate thee, that thou can’st not go mad?—What wert thou making +there?” + +“Welding an old pike-head, sir; there were seams and dents in it.” + +“And can’st thou make it all smooth again, blacksmith, after such hard +usage as it had?” + +“I think so, sir.” + +“And I suppose thou can’st smoothe almost any seams and dents; never +mind how hard the metal, blacksmith?” + +“Aye, sir, I think I can; all seams and dents but one.” + +“Look ye here, then,” cried Ahab, passionately advancing, and leaning +with both hands on Perth’s shoulders; “look ye here—_here_—can ye +smoothe out a seam like this, blacksmith,” sweeping one hand across his +ribbed brow; “if thou could’st, blacksmith, glad enough would I lay my +head upon thy anvil, and feel thy heaviest hammer between my eyes. +Answer! Can’st thou smoothe this seam?” + +“Oh! that is the one, sir! Said I not all seams and dents but one?” + +“Aye, blacksmith, it is the one; aye, man, it is unsmoothable; for +though thou only see’st it here in my flesh, it has worked down into +the bone of my skull—_that_ is all wrinkles! But, away with child’s +play; no more gaffs and pikes to-day. Look ye here!” jingling the +leathern bag, as if it were full of gold coins. “I, too, want a harpoon +made; one that a thousand yoke of fiends could not part, Perth; +something that will stick in a whale like his own fin-bone. There’s the +stuff,” flinging the pouch upon the anvil. “Look ye, blacksmith, these +are the gathered nail-stubbs of the steel shoes of racing horses.” + +“Horse-shoe stubbs, sir? Why, Captain Ahab, thou hast here, then, the +best and stubbornest stuff we blacksmiths ever work.” + +“I know it, old man; these stubbs will weld together like glue from the +melted bones of murderers. Quick! forge me the harpoon. And forge me +first, twelve rods for its shank; then wind, and twist, and hammer +these twelve together like the yarns and strands of a tow-line. Quick! +I’ll blow the fire.” + +When at last the twelve rods were made, Ahab tried them, one by one, by +spiralling them, with his own hand, round a long, heavy iron bolt. “A +flaw!” rejecting the last one. “Work that over again, Perth.” + +This done, Perth was about to begin welding the twelve into one, when +Ahab stayed his hand, and said he would weld his own iron. As, then, +with regular, gasping hems, he hammered on the anvil, Perth passing to +him the glowing rods, one after the other, and the hard pressed forge +shooting up its intense straight flame, the Parsee passed silently, and +bowing over his head towards the fire, seemed invoking some curse or +some blessing on the toil. But, as Ahab looked up, he slid aside. + +“What’s that bunch of lucifers dodging about there for?” muttered +Stubb, looking on from the forecastle. “That Parsee smells fire like a +fusee; and smells of it himself, like a hot musket’s powder-pan.” + +At last the shank, in one complete rod, received its final heat; and as +Perth, to temper it, plunged it all hissing into the cask of water near +by, the scalding steam shot up into Ahab’s bent face. + +“Would’st thou brand me, Perth?” wincing for a moment with the pain; +“have I been but forging my own branding-iron, then?” + +“Pray God, not that; yet I fear something, Captain Ahab. Is not this +harpoon for the White Whale?” + +“For the white fiend! But now for the barbs; thou must make them +thyself, man. Here are my razors—the best of steel; here, and make the +barbs sharp as the needle-sleet of the Icy Sea.” + +For a moment, the old blacksmith eyed the razors as though he would +fain not use them. + +“Take them, man, I have no need for them; for I now neither shave, sup, +nor pray till—but here—to work!” + +Fashioned at last into an arrowy shape, and welded by Perth to the +shank, the steel soon pointed the end of the iron; and as the +blacksmith was about giving the barbs their final heat, prior to +tempering them, he cried to Ahab to place the water-cask near. + +“No, no—no water for that; I want it of the true death-temper. Ahoy, +there! Tashtego, Queequeg, Daggoo! What say ye, pagans! Will ye give me +as much blood as will cover this barb?” holding it high up. A cluster +of dark nods replied, Yes. Three punctures were made in the heathen +flesh, and the White Whale’s barbs were then tempered. + +“Ego non baptizo te in nomine patris, sed in nomine diaboli!” +deliriously howled Ahab, as the malignant iron scorchingly devoured the +baptismal blood. + +Now, mustering the spare poles from below, and selecting one of +hickory, with the bark still investing it, Ahab fitted the end to the +socket of the iron. A coil of new tow-line was then unwound, and some +fathoms of it taken to the windlass, and stretched to a great tension. +Pressing his foot upon it, till the rope hummed like a harp-string, +then eagerly bending over it, and seeing no strandings, Ahab exclaimed, +“Good! and now for the seizings.” + +At one extremity the rope was unstranded, and the separate spread yarns +were all braided and woven round the socket of the harpoon; the pole +was then driven hard up into the socket; from the lower end the rope +was traced half-way along the pole’s length, and firmly secured so, +with intertwistings of twine. This done, pole, iron, and rope—like the +Three Fates—remained inseparable, and Ahab moodily stalked away with +the weapon; the sound of his ivory leg, and the sound of the hickory +pole, both hollowly ringing along every plank. But ere he entered his +cabin, light, unnatural, half-bantering, yet most piteous sound was +heard. Oh, Pip! thy wretched laugh, thy idle but unresting eye; all thy +strange mummeries not unmeaningly blended with the black tragedy of the +melancholy ship, and mocked it! + + +CHAPTER 114. The Gilder. + +Penetrating further and further into the heart of the Japanese cruising +ground, the Pequod was soon all astir in the fishery. Often, in mild, +pleasant weather, for twelve, fifteen, eighteen, and twenty hours on +the stretch, they were engaged in the boats, steadily pulling, or +sailing, or paddling after the whales, or for an interlude of sixty or +seventy minutes calmly awaiting their uprising; though with but small +success for their pains. + +At such times, under an abated sun; afloat all day upon smooth, slow +heaving swells; seated in his boat, light as a birch canoe; and so +sociably mixing with the soft waves themselves, that like hearth-stone +cats they purr against the gunwale; these are the times of dreamy +quietude, when beholding the tranquil beauty and brilliancy of the +ocean’s skin, one forgets the tiger heart that pants beneath it; and +would not willingly remember, that this velvet paw but conceals a +remorseless fang. + +These are the times, when in his whale-boat the rover softly feels a +certain filial, confident, land-like feeling towards the sea; that he +regards it as so much flowery earth; and the distant ship revealing +only the tops of her masts, seems struggling forward, not through high +rolling waves, but through the tall grass of a rolling prairie: as when +the western emigrants’ horses only show their erected ears, while their +hidden bodies widely wade through the amazing verdure. + +The long-drawn virgin vales; the mild blue hill-sides; as over these +there steals the hush, the hum; you almost swear that play-wearied +children lie sleeping in these solitudes, in some glad May-time, when +the flowers of the woods are plucked. And all this mixes with your most +mystic mood; so that fact and fancy, half-way meeting, interpenetrate, +and form one seamless whole. + +Nor did such soothing scenes, however temporary, fail of at least as +temporary an effect on Ahab. But if these secret golden keys did seem +to open in him his own secret golden treasuries, yet did his breath +upon them prove but tarnishing. + +Oh, grassy glades! oh, ever vernal endless landscapes in the soul; in +ye,—though long parched by the dead drought of the earthy life,—in ye, +men yet may roll, like young horses in new morning clover; and for some +few fleeting moments, feel the cool dew of the life immortal on them. +Would to God these blessed calms would last. But the mingled, mingling +threads of life are woven by warp and woof: calms crossed by storms, a +storm for every calm. There is no steady unretracing progress in this +life; we do not advance through fixed gradations, and at the last one +pause:—through infancy’s unconscious spell, boyhood’s thoughtless +faith, adolescence’ doubt (the common doom), then scepticism, then +disbelief, resting at last in manhood’s pondering repose of If. But +once gone through, we trace the round again; and are infants, boys, and +men, and Ifs eternally. Where lies the final harbor, whence we unmoor +no more? In what rapt ether sails the world, of which the weariest will +never weary? Where is the foundling’s father hidden? Our souls are like +those orphans whose unwedded mothers die in bearing them: the secret of +our paternity lies in their grave, and we must there to learn it. + +And that same day, too, gazing far down from his boat’s side into that +same golden sea, Starbuck lowly murmured:— + +“Loveliness unfathomable, as ever lover saw in his young bride’s +eye!—Tell me not of thy teeth-tiered sharks, and thy kidnapping +cannibal ways. Let faith oust fact; let fancy oust memory; I look deep +down and do believe.” + +And Stubb, fish-like, with sparkling scales, leaped up in that same +golden light:— + +“I am Stubb, and Stubb has his history; but here Stubb takes oaths that +he has always been jolly!” + + +CHAPTER 115. The Pequod Meets The Bachelor. + +And jolly enough were the sights and the sounds that came bearing down +before the wind, some few weeks after Ahab’s harpoon had been welded. + +It was a Nantucket ship, the Bachelor, which had just wedged in her +last cask of oil, and bolted down her bursting hatches; and now, in +glad holiday apparel, was joyously, though somewhat vain-gloriously, +sailing round among the widely-separated ships on the ground, previous +to pointing her prow for home. + +The three men at her mast-head wore long streamers of narrow red +bunting at their hats; from the stern, a whale-boat was suspended, +bottom down; and hanging captive from the bowsprit was seen the long +lower jaw of the last whale they had slain. Signals, ensigns, and jacks +of all colours were flying from her rigging, on every side. Sideways +lashed in each of her three basketed tops were two barrels of sperm; +above which, in her top-mast cross-trees, you saw slender breakers of +the same precious fluid; and nailed to her main truck was a brazen +lamp. + +As was afterwards learned, the Bachelor had met with the most +surprising success; all the more wonderful, for that while cruising in +the same seas numerous other vessels had gone entire months without +securing a single fish. Not only had barrels of beef and bread been +given away to make room for the far more valuable sperm, but additional +supplemental casks had been bartered for, from the ships she had met; +and these were stowed along the deck, and in the captain’s and +officers’ state-rooms. Even the cabin table itself had been knocked +into kindling-wood; and the cabin mess dined off the broad head of an +oil-butt, lashed down to the floor for a centrepiece. In the +forecastle, the sailors had actually caulked and pitched their chests, +and filled them; it was humorously added, that the cook had clapped a +head on his largest boiler, and filled it; that the steward had plugged +his spare coffee-pot and filled it; that the harpooneers had headed the +sockets of their irons and filled them; that indeed everything was +filled with sperm, except the captain’s pantaloons pockets, and those +he reserved to thrust his hands into, in self-complacent testimony of +his entire satisfaction. + +As this glad ship of good luck bore down upon the moody Pequod, the +barbarian sound of enormous drums came from her forecastle; and drawing +still nearer, a crowd of her men were seen standing round her huge +try-pots, which, covered with the parchment-like _poke_ or stomach skin +of the black fish, gave forth a loud roar to every stroke of the +clenched hands of the crew. On the quarter-deck, the mates and +harpooneers were dancing with the olive-hued girls who had eloped with +them from the Polynesian Isles; while suspended in an ornamented boat, +firmly secured aloft between the foremast and mainmast, three Long +Island negroes, with glittering fiddle-bows of whale ivory, were +presiding over the hilarious jig. Meanwhile, others of the ship’s +company were tumultuously busy at the masonry of the try-works, from +which the huge pots had been removed. You would have almost thought +they were pulling down the cursed Bastille, such wild cries they +raised, as the now useless brick and mortar were being hurled into the +sea. + +Lord and master over all this scene, the captain stood erect on the +ship’s elevated quarter-deck, so that the whole rejoicing drama was +full before him, and seemed merely contrived for his own individual +diversion. + +And Ahab, he too was standing on his quarter-deck, shaggy and black, +with a stubborn gloom; and as the two ships crossed each other’s +wakes—one all jubilations for things passed, the other all forebodings +as to things to come—their two captains in themselves impersonated the +whole striking contrast of the scene. + +“Come aboard, come aboard!” cried the gay Bachelor’s commander, lifting +a glass and a bottle in the air. + +“Hast seen the White Whale?” gritted Ahab in reply. + +“No; only heard of him; but don’t believe in him at all,” said the +other good-humoredly. “Come aboard!” + +“Thou art too damned jolly. Sail on. Hast lost any men?” + +“Not enough to speak of—two islanders, that’s all;—but come aboard, old +hearty, come along. I’ll soon take that black from your brow. Come +along, will ye (merry’s the play); a full ship and homeward-bound.” + +“How wondrous familiar is a fool!” muttered Ahab; then aloud, “Thou art +a full ship and homeward bound, thou sayst; well, then, call me an +empty ship, and outward-bound. So go thy ways, and I will mine. Forward +there! Set all sail, and keep her to the wind!” + +And thus, while the one ship went cheerily before the breeze, the other +stubbornly fought against it; and so the two vessels parted; the crew +of the Pequod looking with grave, lingering glances towards the +receding Bachelor; but the Bachelor’s men never heeding their gaze for +the lively revelry they were in. And as Ahab, leaning over the +taffrail, eyed the homeward-bound craft, he took from his pocket a +small vial of sand, and then looking from the ship to the vial, seemed +thereby bringing two remote associations together, for that vial was +filled with Nantucket soundings. + + +CHAPTER 116. The Dying Whale. + +Not seldom in this life, when, on the right side, fortune’s favourites +sail close by us, we, though all adroop before, catch somewhat of the +rushing breeze, and joyfully feel our bagging sails fill out. So seemed +it with the Pequod. For next day after encountering the gay Bachelor, +whales were seen and four were slain; and one of them by Ahab. + +It was far down the afternoon; and when all the spearings of the +crimson fight were done: and floating in the lovely sunset sea and sky, +sun and whale both stilly died together; then, such a sweetness and +such plaintiveness, such inwreathing orisons curled up in that rosy +air, that it almost seemed as if far over from the deep green convent +valleys of the Manilla isles, the Spanish land-breeze, wantonly turned +sailor, had gone to sea, freighted with these vesper hymns. + +Soothed again, but only soothed to deeper gloom, Ahab, who had sterned +off from the whale, sat intently watching his final wanings from the +now tranquil boat. For that strange spectacle observable in all sperm +whales dying—the turning sunwards of the head, and so expiring—that +strange spectacle, beheld of such a placid evening, somehow to Ahab +conveyed a wondrousness unknown before. + +“He turns and turns him to it,—how slowly, but how steadfastly, his +homage-rendering and invoking brow, with his last dying motions. He too +worships fire; most faithful, broad, baronial vassal of the sun!—Oh +that these too-favouring eyes should see these too-favouring sights. +Look! here, far water-locked; beyond all hum of human weal or woe; in +these most candid and impartial seas; where to traditions no rocks +furnish tablets; where for long Chinese ages, the billows have still +rolled on speechless and unspoken to, as stars that shine upon the +Niger’s unknown source; here, too, life dies sunwards full of faith; +but see! no sooner dead, than death whirls round the corpse, and it +heads some other way. + +“Oh, thou dark Hindoo half of nature, who of drowned bones hast builded +thy separate throne somewhere in the heart of these unverdured seas; +thou art an infidel, thou queen, and too truly speakest to me in the +wide-slaughtering Typhoon, and the hushed burial of its after calm. Nor +has this thy whale sunwards turned his dying head, and then gone round +again, without a lesson to me. + +“Oh, trebly hooped and welded hip of power! Oh, high aspiring, +rainbowed jet!—that one strivest, this one jettest all in vain! In +vain, oh whale, dost thou seek intercedings with yon all-quickening +sun, that only calls forth life, but gives it not again. Yet dost thou, +darker half, rock me with a prouder, if a darker faith. All thy +unnamable imminglings float beneath me here; I am buoyed by breaths of +once living things, exhaled as air, but water now. + +“Then hail, for ever hail, O sea, in whose eternal tossings the wild +fowl finds his only rest. Born of earth, yet suckled by the sea; though +hill and valley mothered me, ye billows are my foster-brothers!” + + +CHAPTER 117. The Whale Watch. + +The four whales slain that evening had died wide apart; one, far to +windward; one, less distant, to leeward; one ahead; one astern. These +last three were brought alongside ere nightfall; but the windward one +could not be reached till morning; and the boat that had killed it lay +by its side all night; and that boat was Ahab’s. + +The waif-pole was thrust upright into the dead whale’s spout-hole; and +the lantern hanging from its top, cast a troubled flickering glare upon +the black, glossy back, and far out upon the midnight waves, which +gently chafed the whale’s broad flank, like soft surf upon a beach. + +Ahab and all his boat’s crew seemed asleep but the Parsee; who +crouching in the bow, sat watching the sharks, that spectrally played +round the whale, and tapped the light cedar planks with their tails. A +sound like the moaning in squadrons over Asphaltites of unforgiven +ghosts of Gomorrah, ran shuddering through the air. + +Started from his slumbers, Ahab, face to face, saw the Parsee; and +hooped round by the gloom of the night they seemed the last men in a +flooded world. “I have dreamed it again,” said he. + +“Of the hearses? Have I not said, old man, that neither hearse nor +coffin can be thine?” + +“And who are hearsed that die on the sea?” + +“But I said, old man, that ere thou couldst die on this voyage, two +hearses must verily be seen by thee on the sea; the first not made by +mortal hands; and the visible wood of the last one must be grown in +America.” + +“Aye, aye! a strange sight that, Parsee:—a hearse and its plumes +floating over the ocean with the waves for the pall-bearers. Ha! Such a +sight we shall not soon see.” + +“Believe it or not, thou canst not die till it be seen, old man.” + +“And what was that saying about thyself?” + +“Though it come to the last, I shall still go before thee thy pilot.” + +“And when thou art so gone before—if that ever befall—then ere I can +follow, thou must still appear to me, to pilot me still?—Was it not so? +Well, then, did I believe all ye say, oh my pilot! I have here two +pledges that I shall yet slay Moby Dick and survive it.” + +“Take another pledge, old man,” said the Parsee, as his eyes lighted up +like fire-flies in the gloom—“Hemp only can kill thee.” + +“The gallows, ye mean.—I am immortal then, on land and on sea,” cried +Ahab, with a laugh of derision;—“Immortal on land and on sea!” + +Both were silent again, as one man. The grey dawn came on, and the +slumbering crew arose from the boat’s bottom, and ere noon the dead +whale was brought to the ship. + + +CHAPTER 118. The Quadrant. + +The season for the Line at length drew near; and every day when Ahab, +coming from his cabin, cast his eyes aloft, the vigilant helmsman would +ostentatiously handle his spokes, and the eager mariners quickly run to +the braces, and would stand there with all their eyes centrally fixed +on the nailed doubloon; impatient for the order to point the ship’s +prow for the equator. In good time the order came. It was hard upon +high noon; and Ahab, seated in the bows of his high-hoisted boat, was +about taking his wonted daily observation of the sun to determine his +latitude. + +Now, in that Japanese sea, the days in summer are as freshets of +effulgences. That unblinkingly vivid Japanese sun seems the blazing +focus of the glassy ocean’s immeasurable burning-glass. The sky looks +lacquered; clouds there are none; the horizon floats; and this +nakedness of unrelieved radiance is as the insufferable splendors of +God’s throne. Well that Ahab’s quadrant was furnished with coloured +glasses, through which to take sight of that solar fire. So, swinging +his seated form to the roll of the ship, and with his +astrological-looking instrument placed to his eye, he remained in that +posture for some moments to catch the precise instant when the sun +should gain its precise meridian. Meantime while his whole attention +was absorbed, the Parsee was kneeling beneath him on the ship’s deck, +and with face thrown up like Ahab’s, was eyeing the same sun with him; +only the lids of his eyes half hooded their orbs, and his wild face was +subdued to an earthly passionlessness. At length the desired +observation was taken; and with his pencil upon his ivory leg, Ahab +soon calculated what his latitude must be at that precise instant. Then +falling into a moment’s revery, he again looked up towards the sun and +murmured to himself: “Thou sea-mark! thou high and mighty Pilot! thou +tellest me truly where I _am_—but canst thou cast the least hint where +I _shall_ be? Or canst thou tell where some other thing besides me is +this moment living? Where is Moby Dick? This instant thou must be +eyeing him. These eyes of mine look into the very eye that is even now +beholding him; aye, and into the eye that is even now equally beholding +the objects on the unknown, thither side of thee, thou sun!” + +Then gazing at his quadrant, and handling, one after the other, its +numerous cabalistical contrivances, he pondered again, and muttered: +“Foolish toy! babies’ plaything of haughty Admirals, and Commodores, +and Captains; the world brags of thee, of thy cunning and might; but +what after all canst thou do, but tell the poor, pitiful point, where +thou thyself happenest to be on this wide planet, and the hand that +holds thee: no! not one jot more! Thou canst not tell where one drop of +water or one grain of sand will be to-morrow noon; and yet with thy +impotence thou insultest the sun! Science! Curse thee, thou vain toy; +and cursed be all the things that cast man’s eyes aloft to that heaven, +whose live vividness but scorches him, as these old eyes are even now +scorched with thy light, O sun! Level by nature to this earth’s horizon +are the glances of man’s eyes; not shot from the crown of his head, as +if God had meant him to gaze on his firmament. Curse thee, thou +quadrant!” dashing it to the deck, “no longer will I guide my earthly +way by thee; the level ship’s compass, and the level dead-reckoning, by +log and by line; _these_ shall conduct me, and show me my place on the +sea. Aye,” lighting from the boat to the deck, “thus I trample on thee, +thou paltry thing that feebly pointest on high; thus I split and +destroy thee!” + +As the frantic old man thus spoke and thus trampled with his live and +dead feet, a sneering triumph that seemed meant for Ahab, and a +fatalistic despair that seemed meant for himself—these passed over the +mute, motionless Parsee’s face. Unobserved he rose and glided away; +while, awestruck by the aspect of their commander, the seamen clustered +together on the forecastle, till Ahab, troubledly pacing the deck, +shouted out—“To the braces! Up helm!—square in!” + +In an instant the yards swung round; and as the ship half-wheeled upon +her heel, her three firm-seated graceful masts erectly poised upon her +long, ribbed hull, seemed as the three Horatii pirouetting on one +sufficient steed. + +Standing between the knight-heads, Starbuck watched the Pequod’s +tumultuous way, and Ahab’s also, as he went lurching along the deck. + +“I have sat before the dense coal fire and watched it all aglow, full +of its tormented flaming life; and I have seen it wane at last, down, +down, to dumbest dust. Old man of oceans! of all this fiery life of +thine, what will at length remain but one little heap of ashes!” + +“Aye,” cried Stubb, “but sea-coal ashes—mind ye that, Mr. +Starbuck—sea-coal, not your common charcoal. Well, well; I heard Ahab +mutter, ‘Here some one thrusts these cards into these old hands of +mine; swears that I must play them, and no others.’ And damn me, Ahab, +but thou actest right; live in the game, and die in it!” + + +CHAPTER 119. The Candles. + +Warmest climes but nurse the cruellest fangs: the tiger of Bengal +crouches in spiced groves of ceaseless verdure. Skies the most +effulgent but basket the deadliest thunders: gorgeous Cuba knows +tornadoes that never swept tame northern lands. So, too, it is, that in +these resplendent Japanese seas the mariner encounters the direst of +all storms, the Typhoon. It will sometimes burst from out that +cloudless sky, like an exploding bomb upon a dazed and sleepy town. + +Towards evening of that day, the Pequod was torn of her canvas, and +bare-poled was left to fight a Typhoon which had struck her directly +ahead. When darkness came on, sky and sea roared and split with the +thunder, and blazed with the lightning, that showed the disabled masts +fluttering here and there with the rags which the first fury of the +tempest had left for its after sport. + +Holding by a shroud, Starbuck was standing on the quarter-deck; at +every flash of the lightning glancing aloft, to see what additional +disaster might have befallen the intricate hamper there; while Stubb +and Flask were directing the men in the higher hoisting and firmer +lashing of the boats. But all their pains seemed naught. Though lifted +to the very top of the cranes, the windward quarter boat (Ahab’s) did +not escape. A great rolling sea, dashing high up against the reeling +ship’s high teetering side, stove in the boat’s bottom at the stern, +and left it again, all dripping through like a sieve. + +“Bad work, bad work! Mr. Starbuck,” said Stubb, regarding the wreck, +“but the sea will have its way. Stubb, for one, can’t fight it. You +see, Mr. Starbuck, a wave has such a great long start before it leaps, +all round the world it runs, and then comes the spring! But as for me, +all the start I have to meet it, is just across the deck here. But +never mind; it’s all in fun: so the old song says;”—(_sings_.) + + + Oh! jolly is the gale, And a joker is the whale, A’ flourishin’ his + tail,— Such a funny, sporty, gamy, jesty, joky, hoky-poky lad, is the + Ocean, oh! + + The scud all a flyin’, That’s his flip only foamin’; When he stirs in + the spicin’,— Such a funny, sporty, gamy, jesty, joky, hoky-poky lad, + is the Ocean, oh! + + Thunder splits the ships, But he only smacks his lips, A tastin’ of + this flip,— Such a funny, sporty, gamy, jesty, joky, hoky-poky lad, + is the Ocean, oh! + + + +“Avast Stubb,” cried Starbuck, “let the Typhoon sing, and strike his +harp here in our rigging; but if thou art a brave man thou wilt hold +thy peace.” + +“But I am not a brave man; never said I was a brave man; I am a coward; +and I sing to keep up my spirits. And I tell you what it is, Mr. +Starbuck, there’s no way to stop my singing in this world but to cut my +throat. And when that’s done, ten to one I sing ye the doxology for a +wind-up.” + +“Madman! look through my eyes if thou hast none of thine own.” + +“What! how can you see better of a dark night than anybody else, never +mind how foolish?” + +“Here!” cried Starbuck, seizing Stubb by the shoulder, and pointing his +hand towards the weather bow, “markest thou not that the gale comes +from the eastward, the very course Ahab is to run for Moby Dick? the +very course he swung to this day noon? now mark his boat there; where +is that stove? In the stern-sheets, man; where he is wont to stand—his +stand-point is stove, man! Now jump overboard, and sing away, if thou +must! + +“I don’t half understand ye: what’s in the wind?” + +“Yes, yes, round the Cape of Good Hope is the shortest way to +Nantucket,” soliloquized Starbuck suddenly, heedless of Stubb’s +question. “The gale that now hammers at us to stave us, we can turn it +into a fair wind that will drive us towards home. Yonder, to windward, +all is blackness of doom; but to leeward, homeward—I see it lightens up +there; but not with the lightning.” + +At that moment in one of the intervals of profound darkness, following +the flashes, a voice was heard at his side; and almost at the same +instant a volley of thunder peals rolled overhead. + +“Who’s there?” + +“Old Thunder!” said Ahab, groping his way along the bulwarks to his +pivot-hole; but suddenly finding his path made plain to him by elbowed +lances of fire. + +Now, as the lightning rod to a spire on shore is intended to carry off +the perilous fluid into the soil; so the kindred rod which at sea some +ships carry to each mast, is intended to conduct it into the water. But +as this conductor must descend to considerable depth, that its end may +avoid all contact with the hull; and as moreover, if kept constantly +towing there, it would be liable to many mishaps, besides interfering +not a little with some of the rigging, and more or less impeding the +vessel’s way in the water; because of all this, the lower parts of a +ship’s lightning-rods are not always overboard; but are generally made +in long slender links, so as to be the more readily hauled up into the +chains outside, or thrown down into the sea, as occasion may require. + +“The rods! the rods!” cried Starbuck to the crew, suddenly admonished +to vigilance by the vivid lightning that had just been darting +flambeaux, to light Ahab to his post. “Are they overboard? drop them +over, fore and aft. Quick!” + +“Avast!” cried Ahab; “let’s have fair play here, though we be the +weaker side. Yet I’ll contribute to raise rods on the Himmalehs and +Andes, that all the world may be secured; but out on privileges! Let +them be, sir.” + +“Look aloft!” cried Starbuck. “The corpusants! the corpusants!” + +All the yard-arms were tipped with a pallid fire; and touched at each +tri-pointed lightning-rod-end with three tapering white flames, each of +the three tall masts was silently burning in that sulphurous air, like +three gigantic wax tapers before an altar. + +“Blast the boat! let it go!” cried Stubb at this instant, as a swashing +sea heaved up under his own little craft, so that its gunwale violently +jammed his hand, as he was passing a lashing. “Blast it!”—but slipping +backward on the deck, his uplifted eyes caught the flames; and +immediately shifting his tone he cried—“The corpusants have mercy on us +all!” + +To sailors, oaths are household words; they will swear in the trance of +the calm, and in the teeth of the tempest; they will imprecate curses +from the topsail-yard-arms, when most they teeter over to a seething +sea; but in all my voyagings, seldom have I heard a common oath when +God’s burning finger has been laid on the ship; when His “Mene, Mene, +Tekel Upharsin” has been woven into the shrouds and the cordage. + +While this pallidness was burning aloft, few words were heard from the +enchanted crew; who in one thick cluster stood on the forecastle, all +their eyes gleaming in that pale phosphorescence, like a far away +constellation of stars. Relieved against the ghostly light, the +gigantic jet negro, Daggoo, loomed up to thrice his real stature, and +seemed the black cloud from which the thunder had come. The parted +mouth of Tashtego revealed his shark-white teeth, which strangely +gleamed as if they too had been tipped by corpusants; while lit up by +the preternatural light, Queequeg’s tattooing burned like Satanic blue +flames on his body. + +The tableau all waned at last with the pallidness aloft; and once more +the Pequod and every soul on her decks were wrapped in a pall. A moment +or two passed, when Starbuck, going forward, pushed against some one. +It was Stubb. “What thinkest thou now, man; I heard thy cry; it was not +the same in the song.” + +“No, no, it wasn’t; I said the corpusants have mercy on us all; and I +hope they will, still. But do they only have mercy on long faces?—have +they no bowels for a laugh? And look ye, Mr. Starbuck—but it’s too dark +to look. Hear me, then: I take that mast-head flame we saw for a sign +of good luck; for those masts are rooted in a hold that is going to be +chock a’ block with sperm-oil, d’ye see; and so, all that sperm will +work up into the masts, like sap in a tree. Yes, our three masts will +yet be as three spermaceti candles—that’s the good promise we saw.” + +At that moment Starbuck caught sight of Stubb’s face slowly beginning +to glimmer into sight. Glancing upwards, he cried: “See! see!” and once +more the high tapering flames were beheld with what seemed redoubled +supernaturalness in their pallor. + +“The corpusants have mercy on us all,” cried Stubb, again. + +At the base of the mainmast, full beneath the doubloon and the flame, +the Parsee was kneeling in Ahab’s front, but with his head bowed away +from him; while near by, from the arched and overhanging rigging, where +they had just been engaged securing a spar, a number of the seamen, +arrested by the glare, now cohered together, and hung pendulous, like a +knot of numbed wasps from a drooping, orchard twig. In various +enchanted attitudes, like the standing, or stepping, or running +skeletons in Herculaneum, others remained rooted to the deck; but all +their eyes upcast. + +“Aye, aye, men!” cried Ahab. “Look up at it; mark it well; the white +flame but lights the way to the White Whale! Hand me those mainmast +links there; I would fain feel this pulse, and let mine beat against +it; blood against fire! So.” + +Then turning—the last link held fast in his left hand, he put his foot +upon the Parsee; and with fixed upward eye, and high-flung right arm, +he stood erect before the lofty tri-pointed trinity of flames. + +“Oh! thou clear spirit of clear fire, whom on these seas I as Persian +once did worship, till in the sacramental act so burned by thee, that +to this hour I bear the scar; I now know thee, thou clear spirit, and I +now know that thy right worship is defiance. To neither love nor +reverence wilt thou be kind; and e’en for hate thou canst but kill; and +all are killed. No fearless fool now fronts thee. I own thy speechless, +placeless power; but to the last gasp of my earthquake life will +dispute its unconditional, unintegral mastery in me. In the midst of +the personified impersonal, a personality stands here. Though but a +point at best; whencesoe’er I came; wheresoe’er I go; yet while I +earthly live, the queenly personality lives in me, and feels her royal +rights. But war is pain, and hate is woe. Come in thy lowest form of +love, and I will kneel and kiss thee; but at thy highest, come as mere +supernal power; and though thou launchest navies of full-freighted +worlds, there’s that in here that still remains indifferent. Oh, thou +clear spirit, of thy fire thou madest me, and like a true child of +fire, I breathe it back to thee.” + +[_Sudden, repeated flashes of lightning; the nine flames leap +lengthwise to thrice their previous height; Ahab, with the rest, closes +his eyes, his right hand pressed hard upon them._] + +“I own thy speechless, placeless power; said I not so? Nor was it wrung +from me; nor do I now drop these links. Thou canst blind; but I can +then grope. Thou canst consume; but I can then be ashes. Take the +homage of these poor eyes, and shutter-hands. I would not take it. The +lightning flashes through my skull; mine eye-balls ache and ache; my +whole beaten brain seems as beheaded, and rolling on some stunning +ground. Oh, oh! Yet blindfold, yet will I talk to thee. Light though +thou be, thou leapest out of darkness; but I am darkness leaping out of +light, leaping out of thee! The javelins cease; open eyes; see, or not? +There burn the flames! Oh, thou magnanimous! now I do glory in my +genealogy. But thou art but my fiery father; my sweet mother, I know +not. Oh, cruel! what hast thou done with her? There lies my puzzle; but +thine is greater. Thou knowest not how came ye, hence callest thyself +unbegotten; certainly knowest not thy beginning, hence callest thyself +unbegun. I know that of me, which thou knowest not of thyself, oh, thou +omnipotent. There is some unsuffusing thing beyond thee, thou clear +spirit, to whom all thy eternity is but time, all thy creativeness +mechanical. Through thee, thy flaming self, my scorched eyes do dimly +see it. Oh, thou foundling fire, thou hermit immemorial, thou too hast +thy incommunicable riddle, thy unparticipated grief. Here again with +haughty agony, I read my sire. Leap! leap up, and lick the sky! I leap +with thee; I burn with thee; would fain be welded with thee; defyingly +I worship thee!” + +“The boat! the boat!” cried Starbuck, “look at thy boat, old man!” + +Ahab’s harpoon, the one forged at Perth’s fire, remained firmly lashed +in its conspicuous crotch, so that it projected beyond his whale-boat’s +bow; but the sea that had stove its bottom had caused the loose leather +sheath to drop off; and from the keen steel barb there now came a +levelled flame of pale, forked fire. As the silent harpoon burned there +like a serpent’s tongue, Starbuck grasped Ahab by the arm—“God, God is +against thee, old man; forbear! ’tis an ill voyage! ill begun, ill +continued; let me square the yards, while we may, old man, and make a +fair wind of it homewards, to go on a better voyage than this.” + +Overhearing Starbuck, the panic-stricken crew instantly ran to the +braces—though not a sail was left aloft. For the moment all the aghast +mate’s thoughts seemed theirs; they raised a half mutinous cry. But +dashing the rattling lightning links to the deck, and snatching the +burning harpoon, Ahab waved it like a torch among them; swearing to +transfix with it the first sailor that but cast loose a rope’s end. +Petrified by his aspect, and still more shrinking from the fiery dart +that he held, the men fell back in dismay, and Ahab again spoke:— + +“All your oaths to hunt the White Whale are as binding as mine; and +heart, soul, and body, lungs and life, old Ahab is bound. And that ye +may know to what tune this heart beats; look ye here; thus I blow out +the last fear!” And with one blast of his breath he extinguished the +flame. + +As in the hurricane that sweeps the plain, men fly the neighborhood of +some lone, gigantic elm, whose very height and strength but render it +so much the more unsafe, because so much the more a mark for +thunderbolts; so at those last words of Ahab’s many of the mariners did +run from him in a terror of dismay. + + +CHAPTER 120. The Deck Towards the End of the First Night Watch. + +_Ahab standing by the helm. Starbuck approaching him._ + +“We must send down the main-top-sail yard, sir. The band is working +loose and the lee lift is half-stranded. Shall I strike it, sir?” + +“Strike nothing; lash it. If I had sky-sail poles, I’d sway them up +now.” + +“Sir!—in God’s name!—sir?” + +“Well.” + +“The anchors are working, sir. Shall I get them inboard?” + +“Strike nothing, and stir nothing, but lash everything. The wind rises, +but it has not got up to my table-lands yet. Quick, and see to it.—By +masts and keels! he takes me for the hunch-backed skipper of some +coasting smack. Send down my main-top-sail yard! Ho, gluepots! Loftiest +trucks were made for wildest winds, and this brain-truck of mine now +sails amid the cloud-scud. Shall I strike that? Oh, none but cowards +send down their brain-trucks in tempest time. What a hooroosh aloft +there! I would e’en take it for sublime, did I not know that the colic +is a noisy malady. Oh, take medicine, take medicine!” + + +CHAPTER 121. Midnight.—The Forecastle Bulwarks. + +_Stubb and Flask mounted on them, and passing additional lashings over +the anchors there hanging._ + +“No, Stubb; you may pound that knot there as much as you please, but +you will never pound into me what you were just now saying. And how +long ago is it since you said the very contrary? Didn’t you once say +that whatever ship Ahab sails in, that ship should pay something extra +on its insurance policy, just as though it were loaded with powder +barrels aft and boxes of lucifers forward? Stop, now; didn’t you say +so?” + +“Well, suppose I did? What then? I’ve part changed my flesh since that +time, why not my mind? Besides, supposing we _are_ loaded with powder +barrels aft and lucifers forward; how the devil could the lucifers get +afire in this drenching spray here? Why, my little man, you have pretty +red hair, but you couldn’t get afire now. Shake yourself; you’re +Aquarius, or the water-bearer, Flask; might fill pitchers at your coat +collar. Don’t you see, then, that for these extra risks the Marine +Insurance companies have extra guarantees? Here are hydrants, Flask. +But hark, again, and I’ll answer ye the other thing. First take your +leg off from the crown of the anchor here, though, so I can pass the +rope; now listen. What’s the mighty difference between holding a mast’s +lightning-rod in the storm, and standing close by a mast that hasn’t +got any lightning-rod at all in a storm? Don’t you see, you +timber-head, that no harm can come to the holder of the rod, unless the +mast is first struck? What are you talking about, then? Not one ship in +a hundred carries rods, and Ahab,—aye, man, and all of us,—were in no +more danger then, in my poor opinion, than all the crews in ten +thousand ships now sailing the seas. Why, you King-Post, you, I suppose +you would have every man in the world go about with a small +lightning-rod running up the corner of his hat, like a militia +officer’s skewered feather, and trailing behind like his sash. Why +don’t ye be sensible, Flask? it’s easy to be sensible; why don’t ye, +then? any man with half an eye can be sensible.” + +“I don’t know that, Stubb. You sometimes find it rather hard.” + +“Yes, when a fellow’s soaked through, it’s hard to be sensible, that’s +a fact. And I am about drenched with this spray. Never mind; catch the +turn there, and pass it. Seems to me we are lashing down these anchors +now as if they were never going to be used again. Tying these two +anchors here, Flask, seems like tying a man’s hands behind him. And +what big generous hands they are, to be sure. These are your iron +fists, hey? What a hold they have, too! I wonder, Flask, whether the +world is anchored anywhere; if she is, she swings with an uncommon long +cable, though. There, hammer that knot down, and we’ve done. So; next +to touching land, lighting on deck is the most satisfactory. I say, +just wring out my jacket skirts, will ye? Thank ye. They laugh at +long-togs so, Flask; but seems to me, a long tailed coat ought always +to be worn in all storms afloat. The tails tapering down that way, +serve to carry off the water, d’ye see. Same with cocked hats; the +cocks form gable-end eave-troughs, Flask. No more monkey-jackets and +tarpaulins for me; I must mount a swallow-tail, and drive down a +beaver; so. Halloa! whew! there goes my tarpaulin overboard; Lord, +Lord, that the winds that come from heaven should be so unmannerly! +This is a nasty night, lad.” + + +CHAPTER 122. Midnight Aloft.—Thunder and Lightning. + +_The main-top-sail yard_.—_Tashtego passing new lashings around it_. + +“Um, um, um. Stop that thunder! Plenty too much thunder up here. What’s +the use of thunder? Um, um, um. We don’t want thunder; we want rum; +give us a glass of rum. Um, um, um!” + + +CHAPTER 123. The Musket. + +During the most violent shocks of the Typhoon, the man at the Pequod’s +jaw-bone tiller had several times been reelingly hurled to the deck by +its spasmodic motions, even though preventer tackles had been attached +to it—for they were slack—because some play to the tiller was +indispensable. + +In a severe gale like this, while the ship is but a tossed shuttlecock +to the blast, it is by no means uncommon to see the needles in the +compasses, at intervals, go round and round. It was thus with the +Pequod’s; at almost every shock the helmsman had not failed to notice +the whirling velocity with which they revolved upon the cards; it is a +sight that hardly anyone can behold without some sort of unwonted +emotion. + +Some hours after midnight, the Typhoon abated so much, that through the +strenuous exertions of Starbuck and Stubb—one engaged forward and the +other aft—the shivered remnants of the jib and fore and main-top-sails +were cut adrift from the spars, and went eddying away to leeward, like +the feathers of an albatross, which sometimes are cast to the winds +when that storm-tossed bird is on the wing. + +The three corresponding new sails were now bent and reefed, and a +storm-trysail was set further aft; so that the ship soon went through +the water with some precision again; and the course—for the present, +East-south-east—which he was to steer, if practicable, was once more +given to the helmsman. For during the violence of the gale, he had only +steered according to its vicissitudes. But as he was now bringing the +ship as near her course as possible, watching the compass meanwhile, +lo! a good sign! the wind seemed coming round astern; aye, the foul +breeze became fair! + +Instantly the yards were squared, to the lively song of “_Ho! the fair +wind! oh-ye-ho, cheerly men!_” the crew singing for joy, that so +promising an event should so soon have falsified the evil portents +preceding it. + +In compliance with the standing order of his commander—to report +immediately, and at any one of the twenty-four hours, any decided +change in the affairs of the deck,—Starbuck had no sooner trimmed the +yards to the breeze—however reluctantly and gloomily,—than he +mechanically went below to apprise Captain Ahab of the circumstance. + +Ere knocking at his state-room, he involuntarily paused before it a +moment. The cabin lamp—taking long swings this way and that—was burning +fitfully, and casting fitful shadows upon the old man’s bolted door,—a +thin one, with fixed blinds inserted, in place of upper panels. The +isolated subterraneousness of the cabin made a certain humming silence +to reign there, though it was hooped round by all the roar of the +elements. The loaded muskets in the rack were shiningly revealed, as +they stood upright against the forward bulkhead. Starbuck was an +honest, upright man; but out of Starbuck’s heart, at that instant when +he saw the muskets, there strangely evolved an evil thought; but so +blent with its neutral or good accompaniments that for the instant he +hardly knew it for itself. + +“He would have shot me once,” he murmured, “yes, there’s the very +musket that he pointed at me;—that one with the studded stock; let me +touch it—lift it. Strange, that I, who have handled so many deadly +lances, strange, that I should shake so now. Loaded? I must see. Aye, +aye; and powder in the pan;—that’s not good. Best spill it?—wait. I’ll +cure myself of this. I’ll hold the musket boldly while I think.—I come +to report a fair wind to him. But how fair? Fair for death and +doom,—_that’s_ fair for Moby Dick. It’s a fair wind that’s only fair +for that accursed fish.—The very tube he pointed at me!—the very one; +_this_ one—I hold it here; he would have killed me with the very thing +I handle now.—Aye and he would fain kill all his crew. Does he not say +he will not strike his spars to any gale? Has he not dashed his +heavenly quadrant? and in these same perilous seas, gropes he not his +way by mere dead reckoning of the error-abounding log? and in this very +Typhoon, did he not swear that he would have no lightning-rods? But +shall this crazed old man be tamely suffered to drag a whole ship’s +company down to doom with him?—Yes, it would make him the wilful +murderer of thirty men and more, if this ship come to any deadly harm; +and come to deadly harm, my soul swears this ship will, if Ahab have +his way. If, then, he were this instant—put aside, that crime would not +be his. Ha! is he muttering in his sleep? Yes, just there,—in there, +he’s sleeping. Sleeping? aye, but still alive, and soon awake again. I +can’t withstand thee, then, old man. Not reasoning; not remonstrance; +not entreaty wilt thou hearken to; all this thou scornest. Flat +obedience to thy own flat commands, this is all thou breathest. Aye, +and say’st the men have vow’d thy vow; say’st all of us are Ahabs. +Great God forbid!—But is there no other way? no lawful way?—Make him a +prisoner to be taken home? What! hope to wrest this old man’s living +power from his own living hands? Only a fool would try it. Say he were +pinioned even; knotted all over with ropes and hawsers; chained down to +ring-bolts on this cabin floor; he would be more hideous than a caged +tiger, then. I could not endure the sight; could not possibly fly his +howlings; all comfort, sleep itself, inestimable reason would leave me +on the long intolerable voyage. What, then, remains? The land is +hundreds of leagues away, and locked Japan the nearest. I stand alone +here upon an open sea, with two oceans and a whole continent between me +and law.—Aye, aye, ’tis so.—Is heaven a murderer when its lightning +strikes a would-be murderer in his bed, tindering sheets and skin +together?—And would I be a murderer, then, if”—and slowly, stealthily, +and half sideways looking, he placed the loaded musket’s end against +the door. + +“On this level, Ahab’s hammock swings within; his head this way. A +touch, and Starbuck may survive to hug his wife and child again.—Oh +Mary! Mary!—boy! boy! boy!—But if I wake thee not to death, old man, +who can tell to what unsounded deeps Starbuck’s body this day week may +sink, with all the crew! Great God, where art Thou? Shall I? shall +I?—The wind has gone down and shifted, sir; the fore and main topsails +are reefed and set; she heads her course.” + +“Stern all! Oh Moby Dick, I clutch thy heart at last!” + +Such were the sounds that now came hurtling from out the old man’s +tormented sleep, as if Starbuck’s voice had caused the long dumb dream +to speak. + +The yet levelled musket shook like a drunkard’s arm against the panel; +Starbuck seemed wrestling with an angel; but turning from the door, he +placed the death-tube in its rack, and left the place. + +“He’s too sound asleep, Mr. Stubb; go thou down, and wake him, and tell +him. I must see to the deck here. Thou know’st what to say.” + + +CHAPTER 124. The Needle. + +Next morning the not-yet-subsided sea rolled in long slow billows of +mighty bulk, and striving in the Pequod’s gurgling track, pushed her on +like giants’ palms outspread. The strong, unstaggering breeze abounded +so, that sky and air seemed vast outbellying sails; the whole world +boomed before the wind. Muffled in the full morning light, the +invisible sun was only known by the spread intensity of his place; +where his bayonet rays moved on in stacks. Emblazonings, as of crowned +Babylonian kings and queens, reigned over everything. The sea was as a +crucible of molten gold, that bubblingly leaps with light and heat. + +Long maintaining an enchanted silence, Ahab stood apart; and every time +the tetering ship loweringly pitched down her bowsprit, he turned to +eye the bright sun’s rays produced ahead; and when she profoundly +settled by the stern, he turned behind, and saw the sun’s rearward +place, and how the same yellow rays were blending with his undeviating +wake. + +“Ha, ha, my ship! thou mightest well be taken now for the sea-chariot +of the sun. Ho, ho! all ye nations before my prow, I bring the sun to +ye! Yoke on the further billows; hallo! a tandem, I drive the sea!” + +But suddenly reined back by some counter thought, he hurried towards +the helm, huskily demanding how the ship was heading. + +“East-sou-east, sir,” said the frightened steersman. + +“Thou liest!” smiting him with his clenched fist. “Heading East at this +hour in the morning, and the sun astern?” + +Upon this every soul was confounded; for the phenomenon just then +observed by Ahab had unaccountably escaped every one else; but its very +blinding palpableness must have been the cause. + +Thrusting his head half way into the binnacle, Ahab caught one glimpse +of the compasses; his uplifted arm slowly fell; for a moment he almost +seemed to stagger. Standing behind him Starbuck looked, and lo! the two +compasses pointed East, and the Pequod was as infallibly going West. + +But ere the first wild alarm could get out abroad among the crew, the +old man with a rigid laugh exclaimed, “I have it! It has happened +before. Mr. Starbuck, last night’s thunder turned our compasses—that’s +all. Thou hast before now heard of such a thing, I take it.” + +“Aye; but never before has it happened to me, sir,” said the pale mate, +gloomily. + +Here, it must needs be said, that accidents like this have in more than +one case occurred to ships in violent storms. The magnetic energy, as +developed in the mariner’s needle, is, as all know, essentially one +with the electricity beheld in heaven; hence it is not to be much +marvelled at, that such things should be. Instances where the lightning +has actually struck the vessel, so as to smite down some of the spars +and rigging, the effect upon the needle has at times been still more +fatal; all its loadstone virtue being annihilated, so that the before +magnetic steel was of no more use than an old wife’s knitting needle. +But in either case, the needle never again, of itself, recovers the +original virtue thus marred or lost; and if the binnacle compasses be +affected, the same fate reaches all the others that may be in the ship; +even were the lowermost one inserted into the kelson. + +Deliberately standing before the binnacle, and eyeing the transpointed +compasses, the old man, with the sharp of his extended hand, now took +the precise bearing of the sun, and satisfied that the needles were +exactly inverted, shouted out his orders for the ship’s course to be +changed accordingly. The yards were hard up; and once more the Pequod +thrust her undaunted bows into the opposing wind, for the supposed fair +one had only been juggling her. + +Meanwhile, whatever were his own secret thoughts, Starbuck said +nothing, but quietly he issued all requisite orders; while Stubb and +Flask—who in some small degree seemed then to be sharing his +feelings—likewise unmurmuringly acquiesced. As for the men, though some +of them lowly rumbled, their fear of Ahab was greater than their fear +of Fate. But as ever before, the pagan harpooneers remained almost +wholly unimpressed; or if impressed, it was only with a certain +magnetism shot into their congenial hearts from inflexible Ahab’s. + +For a space the old man walked the deck in rolling reveries. But +chancing to slip with his ivory heel, he saw the crushed copper +sight-tubes of the quadrant he had the day before dashed to the deck. + +“Thou poor, proud heaven-gazer and sun’s pilot! yesterday I wrecked +thee, and to-day the compasses would fain have wrecked me. So, so. But +Ahab is lord over the level loadstone yet. Mr. Starbuck—a lance without +a pole; a top-maul, and the smallest of the sail-maker’s needles. +Quick!” + +Accessory, perhaps, to the impulse dictating the thing he was now about +to do, were certain prudential motives, whose object might have been to +revive the spirits of his crew by a stroke of his subtile skill, in a +matter so wondrous as that of the inverted compasses. Besides, the old +man well knew that to steer by transpointed needles, though clumsily +practicable, was not a thing to be passed over by superstitious +sailors, without some shudderings and evil portents. + +“Men,” said he, steadily turning upon the crew, as the mate handed him +the things he had demanded, “my men, the thunder turned old Ahab’s +needles; but out of this bit of steel Ahab can make one of his own, +that will point as true as any.” + +Abashed glances of servile wonder were exchanged by the sailors, as +this was said; and with fascinated eyes they awaited whatever magic +might follow. But Starbuck looked away. + +With a blow from the top-maul Ahab knocked off the steel head of the +lance, and then handing to the mate the long iron rod remaining, bade +him hold it upright, without its touching the deck. Then, with the +maul, after repeatedly smiting the upper end of this iron rod, he +placed the blunted needle endwise on the top of it, and less strongly +hammered that, several times, the mate still holding the rod as before. +Then going through some small strange motions with it—whether +indispensable to the magnetizing of the steel, or merely intended to +augment the awe of the crew, is uncertain—he called for linen thread; +and moving to the binnacle, slipped out the two reversed needles there, +and horizontally suspended the sail-needle by its middle, over one of +the compass-cards. At first, the steel went round and round, quivering +and vibrating at either end; but at last it settled to its place, when +Ahab, who had been intently watching for this result, stepped frankly +back from the binnacle, and pointing his stretched arm towards it, +exclaimed,—“Look ye, for yourselves, if Ahab be not lord of the level +loadstone! The sun is East, and that compass swears it!” + +One after another they peered in, for nothing but their own eyes could +persuade such ignorance as theirs, and one after another they slunk +away. + +In his fiery eyes of scorn and triumph, you then saw Ahab in all his +fatal pride. + + +CHAPTER 125. The Log and Line. + +While now the fated Pequod had been so long afloat this voyage, the log +and line had but very seldom been in use. Owing to a confident reliance +upon other means of determining the vessel’s place, some merchantmen, +and many whalemen, especially when cruising, wholly neglect to heave +the log; though at the same time, and frequently more for form’s sake +than anything else, regularly putting down upon the customary slate the +course steered by the ship, as well as the presumed average rate of +progression every hour. It had been thus with the Pequod. The wooden +reel and angular log attached hung, long untouched, just beneath the +railing of the after bulwarks. Rains and spray had damped it; sun and +wind had warped it; all the elements had combined to rot a thing that +hung so idly. But heedless of all this, his mood seized Ahab, as he +happened to glance upon the reel, not many hours after the magnet +scene, and he remembered how his quadrant was no more, and recalled his +frantic oath about the level log and line. The ship was sailing +plungingly; astern the billows rolled in riots. + +“Forward, there! Heave the log!” + +Two seamen came. The golden-hued Tahitian and the grizzly Manxman. +“Take the reel, one of ye, I’ll heave.” + +They went towards the extreme stern, on the ship’s lee side, where the +deck, with the oblique energy of the wind, was now almost dipping into +the creamy, sidelong-rushing sea. + +The Manxman took the reel, and holding it high up, by the projecting +handle-ends of the spindle, round which the spool of line revolved, so +stood with the angular log hanging downwards, till Ahab advanced to +him. + +Ahab stood before him, and was lightly unwinding some thirty or forty +turns to form a preliminary hand-coil to toss overboard, when the old +Manxman, who was intently eyeing both him and the line, made bold to +speak. + +“Sir, I mistrust it; this line looks far gone, long heat and wet have +spoiled it.” + +“’Twill hold, old gentleman. Long heat and wet, have they spoiled thee? +Thou seem’st to hold. Or, truer perhaps, life holds thee; not thou it.” + +“I hold the spool, sir. But just as my captain says. With these grey +hairs of mine ’tis not worth while disputing, ’specially with a +superior, who’ll ne’er confess.” + +“What’s that? There now’s a patched professor in Queen Nature’s +granite-founded College; but methinks he’s too subservient. Where wert +thou born?” + +“In the little rocky Isle of Man, sir.” + +“Excellent! Thou’st hit the world by that.” + +“I know not, sir, but I was born there.” + +“In the Isle of Man, hey? Well, the other way, it’s good. Here’s a man +from Man; a man born in once independent Man, and now unmanned of Man; +which is sucked in—by what? Up with the reel! The dead, blind wall +butts all inquiring heads at last. Up with it! So.” + +The log was heaved. The loose coils rapidly straightened out in a long +dragging line astern, and then, instantly, the reel began to whirl. In +turn, jerkingly raised and lowered by the rolling billows, the towing +resistance of the log caused the old reelman to stagger strangely. + +“Hold hard!” + +Snap! the overstrained line sagged down in one long festoon; the +tugging log was gone. + +“I crush the quadrant, the thunder turns the needles, and now the mad +sea parts the log-line. But Ahab can mend all. Haul in here, Tahitian; +reel up, Manxman. And look ye, let the carpenter make another log, and +mend thou the line. See to it.” + +“There he goes now; to him nothing’s happened; but to me, the skewer +seems loosening out of the middle of the world. Haul in, haul in, +Tahitian! These lines run whole, and whirling out: come in broken, and +dragging slow. Ha, Pip? come to help; eh, Pip?” + +“Pip? whom call ye Pip? Pip jumped from the whale-boat. Pip’s missing. +Let’s see now if ye haven’t fished him up here, fisherman. It drags +hard; I guess he’s holding on. Jerk him, Tahiti! Jerk him off; we haul +in no cowards here. Ho! there’s his arm just breaking water. A hatchet! +a hatchet! cut it off—we haul in no cowards here. Captain Ahab! sir, +sir! here’s Pip, trying to get on board again.” + +“Peace, thou crazy loon,” cried the Manxman, seizing him by the arm. +“Away from the quarter-deck!” + +“The greater idiot ever scolds the lesser,” muttered Ahab, advancing. +“Hands off from that holiness! Where sayest thou Pip was, boy? + +“Astern there, sir, astern! Lo! lo!” + +“And who art thou, boy? I see not my reflection in the vacant pupils of +thy eyes. Oh God! that man should be a thing for immortal souls to +sieve through! Who art thou, boy?” + +“Bell-boy, sir; ship’s-crier; ding, dong, ding! Pip! Pip! Pip! One +hundred pounds of clay reward for Pip; five feet high—looks +cowardly—quickest known by that! Ding, dong, ding! Who’s seen Pip the +coward?” + +“There can be no hearts above the snow-line. Oh, ye frozen heavens! +look down here. Ye did beget this luckless child, and have abandoned +him, ye creative libertines. Here, boy; Ahab’s cabin shall be Pip’s +home henceforth, while Ahab lives. Thou touchest my inmost centre, boy; +thou art tied to me by cords woven of my heart-strings. Come, let’s +down.” + +“What’s this? here’s velvet shark-skin,” intently gazing at Ahab’s +hand, and feeling it. “Ah, now, had poor Pip but felt so kind a thing +as this, perhaps he had ne’er been lost! This seems to me, sir, as a +man-rope; something that weak souls may hold by. Oh, sir, let old Perth +now come and rivet these two hands together; the black one with the +white, for I will not let this go.” + +“Oh, boy, nor will I thee, unless I should thereby drag thee to worse +horrors than are here. Come, then, to my cabin. Lo! ye believers in +gods all goodness, and in man all ill, lo you! see the omniscient gods +oblivious of suffering man; and man, though idiotic, and knowing not +what he does, yet full of the sweet things of love and gratitude. Come! +I feel prouder leading thee by thy black hand, than though I grasped an +Emperor’s!” + +“There go two daft ones now,” muttered the old Manxman. “One daft with +strength, the other daft with weakness. But here’s the end of the +rotten line—all dripping, too. Mend it, eh? I think we had best have a +new line altogether. I’ll see Mr. Stubb about it.” + + +CHAPTER 126. The Life-Buoy. + +Steering now south-eastward by Ahab’s levelled steel, and her progress +solely determined by Ahab’s level log and line; the Pequod held on her +path towards the Equator. Making so long a passage through such +unfrequented waters, descrying no ships, and ere long, sideways +impelled by unvarying trade winds, over waves monotonously mild; all +these seemed the strange calm things preluding some riotous and +desperate scene. + +At last, when the ship drew near to the outskirts, as it were, of the +Equatorial fishing-ground, and in the deep darkness that goes before +the dawn, was sailing by a cluster of rocky islets; the watch—then +headed by Flask—was startled by a cry so plaintively wild and +unearthly—like half-articulated wailings of the ghosts of all Herod’s +murdered Innocents—that one and all, they started from their reveries, +and for the space of some moments stood, or sat, or leaned all +transfixedly listening, like the carved Roman slave, while that wild +cry remained within hearing. The Christian or civilized part of the +crew said it was mermaids, and shuddered; but the pagan harpooneers +remained unappalled. Yet the grey Manxman—the oldest mariner of +all—declared that the wild thrilling sounds that were heard, were the +voices of newly drowned men in the sea. + +Below in his hammock, Ahab did not hear of this till grey dawn, when he +came to the deck; it was then recounted to him by Flask, not +unaccompanied with hinted dark meanings. He hollowly laughed, and thus +explained the wonder. + +Those rocky islands the ship had passed were the resort of great +numbers of seals, and some young seals that had lost their dams, or +some dams that had lost their cubs, must have risen nigh the ship and +kept company with her, crying and sobbing with their human sort of +wail. But this only the more affected some of them, because most +mariners cherish a very superstitious feeling about seals, arising not +only from their peculiar tones when in distress, but also from the +human look of their round heads and semi-intelligent faces, seen +peeringly uprising from the water alongside. In the sea, under certain +circumstances, seals have more than once been mistaken for men. + +But the bodings of the crew were destined to receive a most plausible +confirmation in the fate of one of their number that morning. At +sun-rise this man went from his hammock to his mast-head at the fore; +and whether it was that he was not yet half waked from his sleep (for +sailors sometimes go aloft in a transition state), whether it was thus +with the man, there is now no telling; but, be that as it may, he had +not been long at his perch, when a cry was heard—a cry and a +rushing—and looking up, they saw a falling phantom in the air; and +looking down, a little tossed heap of white bubbles in the blue of the +sea. + +The life-buoy—a long slender cask—was dropped from the stern, where it +always hung obedient to a cunning spring; but no hand rose to seize it, +and the sun having long beat upon this cask it had shrunken, so that it +slowly filled, and that parched wood also filled at its every pore; and +the studded iron-bound cask followed the sailor to the bottom, as if to +yield him his pillow, though in sooth but a hard one. + +And thus the first man of the Pequod that mounted the mast to look out +for the White Whale, on the White Whale’s own peculiar ground; that man +was swallowed up in the deep. But few, perhaps, thought of that at the +time. Indeed, in some sort, they were not grieved at this event, at +least as a portent; for they regarded it, not as a foreshadowing of +evil in the future, but as the fulfilment of an evil already presaged. +They declared that now they knew the reason of those wild shrieks they +had heard the night before. But again the old Manxman said nay. + +The lost life-buoy was now to be replaced; Starbuck was directed to see +to it; but as no cask of sufficient lightness could be found, and as in +the feverish eagerness of what seemed the approaching crisis of the +voyage, all hands were impatient of any toil but what was directly +connected with its final end, whatever that might prove to be; +therefore, they were going to leave the ship’s stern unprovided with a +buoy, when by certain strange signs and inuendoes Queequeg hinted a +hint concerning his coffin. + +“A life-buoy of a coffin!” cried Starbuck, starting. + +“Rather queer, that, I should say,” said Stubb. + +“It will make a good enough one,” said Flask, “the carpenter here can +arrange it easily.” + +“Bring it up; there’s nothing else for it,” said Starbuck, after a +melancholy pause. “Rig it, carpenter; do not look at me so—the coffin, +I mean. Dost thou hear me? Rig it.” + +“And shall I nail down the lid, sir?” moving his hand as with a hammer. + +“Aye.” + +“And shall I caulk the seams, sir?” moving his hand as with a +caulking-iron. + +“Aye.” + +“And shall I then pay over the same with pitch, sir?” moving his hand +as with a pitch-pot. + +“Away! what possesses thee to this? Make a life-buoy of the coffin, and +no more.—Mr. Stubb, Mr. Flask, come forward with me.” + +“He goes off in a huff. The whole he can endure; at the parts he +baulks. Now I don’t like this. I make a leg for Captain Ahab, and he +wears it like a gentleman; but I make a bandbox for Queequeg, and he +won’t put his head into it. Are all my pains to go for nothing with +that coffin? And now I’m ordered to make a life-buoy of it. It’s like +turning an old coat; going to bring the flesh on the other side now. I +don’t like this cobbling sort of business—I don’t like it at all; it’s +undignified; it’s not my place. Let tinkers’ brats do tinkerings; we +are their betters. I like to take in hand none but clean, virgin, +fair-and-square mathematical jobs, something that regularly begins at +the beginning, and is at the middle when midway, and comes to an end at +the conclusion; not a cobbler’s job, that’s at an end in the middle, +and at the beginning at the end. It’s the old woman’s tricks to be +giving cobbling jobs. Lord! what an affection all old women have for +tinkers. I know an old woman of sixty-five who ran away with a +bald-headed young tinker once. And that’s the reason I never would work +for lonely widow old women ashore, when I kept my job-shop in the +Vineyard; they might have taken it into their lonely old heads to run +off with me. But heigh-ho! there are no caps at sea but snow-caps. Let +me see. Nail down the lid; caulk the seams; pay over the same with +pitch; batten them down tight, and hang it with the snap-spring over +the ship’s stern. Were ever such things done before with a coffin? Some +superstitious old carpenters, now, would be tied up in the rigging, ere +they would do the job. But I’m made of knotty Aroostook hemlock; I +don’t budge. Cruppered with a coffin! Sailing about with a grave-yard +tray! But never mind. We workers in woods make bridal-bedsteads and +card-tables, as well as coffins and hearses. We work by the month, or +by the job, or by the profit; not for us to ask the why and wherefore +of our work, unless it be too confounded cobbling, and then we stash it +if we can. Hem! I’ll do the job, now, tenderly. I’ll have me—let’s +see—how many in the ship’s company, all told? But I’ve forgotten. Any +way, I’ll have me thirty separate, Turk’s-headed life-lines, each three +feet long hanging all round to the coffin. Then, if the hull go down, +there’ll be thirty lively fellows all fighting for one coffin, a sight +not seen very often beneath the sun! Come hammer, caulking-iron, +pitch-pot, and marling-spike! Let’s to it.” + + +CHAPTER 127. The Deck. + +_The coffin laid upon two line-tubs, between the vice-bench and the +open hatchway; the Carpenter caulking its seams; the string of twisted +oakum slowly unwinding from a large roll of it placed in the bosom of +his frock.—Ahab comes slowly from the cabin-gangway, and hears Pip +following him._ + +“Back, lad; I will be with ye again presently. He goes! Not this hand +complies with my humor more genially than that boy.—Middle aisle of a +church! What’s here?” + +“Life-buoy, sir. Mr. Starbuck’s orders. Oh, look, sir! Beware the +hatchway!” + +“Thank ye, man. Thy coffin lies handy to the vault.” + +“Sir? The hatchway? oh! So it does, sir, so it does.” + +“Art not thou the leg-maker? Look, did not this stump come from thy +shop?” + +“I believe it did, sir; does the ferrule stand, sir?” + +“Well enough. But art thou not also the undertaker?” + +“Aye, sir; I patched up this thing here as a coffin for Queequeg; but +they’ve set me now to turning it into something else.” + +“Then tell me; art thou not an arrant, all-grasping, intermeddling, +monopolising, heathenish old scamp, to be one day making legs, and the +next day coffins to clap them in, and yet again life-buoys out of those +same coffins? Thou art as unprincipled as the gods, and as much of a +jack-of-all-trades.” + +“But I do not mean anything, sir. I do as I do.” + +“The gods again. Hark ye, dost thou not ever sing working about a +coffin? The Titans, they say, hummed snatches when chipping out the +craters for volcanoes; and the grave-digger in the play sings, spade in +hand. Dost thou never?” + +“Sing, sir? Do I sing? Oh, I’m indifferent enough, sir, for that; but +the reason why the grave-digger made music must have been because there +was none in his spade, sir. But the caulking mallet is full of it. Hark +to it.” + +“Aye, and that’s because the lid there’s a sounding-board; and what in +all things makes the sounding-board is this—there’s naught beneath. And +yet, a coffin with a body in it rings pretty much the same, Carpenter. +Hast thou ever helped carry a bier, and heard the coffin knock against +the churchyard gate, going in? + +“Faith, sir, I’ve——” + +“Faith? What’s that?” + +“Why, faith, sir, it’s only a sort of exclamation-like—that’s all, +sir.” + +“Um, um; go on.” + +“I was about to say, sir, that——” + +“Art thou a silk-worm? Dost thou spin thy own shroud out of thyself? +Look at thy bosom! Despatch! and get these traps out of sight.” + +“He goes aft. That was sudden, now; but squalls come sudden in hot +latitudes. I’ve heard that the Isle of Albemarle, one of the +Gallipagos, is cut by the Equator right in the middle. Seems to me some +sort of Equator cuts yon old man, too, right in his middle. He’s always +under the Line—fiery hot, I tell ye! He’s looking this way—come, oakum; +quick. Here we go again. This wooden mallet is the cork, and I’m the +professor of musical glasses—tap, tap!” + +(_Ahab to himself_.) + +“There’s a sight! There’s a sound! The greyheaded woodpecker tapping +the hollow tree! Blind and dumb might well be envied now. See! that +thing rests on two line-tubs, full of tow-lines. A most malicious wag, +that fellow. Rat-tat! So man’s seconds tick! Oh! how immaterial are all +materials! What things real are there, but imponderable thoughts? Here +now’s the very dreaded symbol of grim death, by a mere hap, made the +expressive sign of the help and hope of most endangered life. A +life-buoy of a coffin! Does it go further? Can it be that in some +spiritual sense the coffin is, after all, but an immortality-preserver! +I’ll think of that. But no. So far gone am I in the dark side of earth, +that its other side, the theoretic bright one, seems but uncertain +twilight to me. Will ye never have done, Carpenter, with that accursed +sound? I go below; let me not see that thing here when I return again. +Now, then, Pip, we’ll talk this over; I do suck most wondrous +philosophies from thee! Some unknown conduits from the unknown worlds +must empty into thee!” + + +CHAPTER 128. The Pequod Meets The Rachel. + +Next day, a large ship, the Rachel, was descried, bearing directly down +upon the Pequod, all her spars thickly clustering with men. At the time +the Pequod was making good speed through the water; but as the +broad-winged windward stranger shot nigh to her, the boastful sails all +fell together as blank bladders that are burst, and all life fled from +the smitten hull. + +“Bad news; she brings bad news,” muttered the old Manxman. But ere her +commander, who, with trumpet to mouth, stood up in his boat; ere he +could hopefully hail, Ahab’s voice was heard. + +“Hast seen the White Whale?” + +“Aye, yesterday. Have ye seen a whale-boat adrift?” + +Throttling his joy, Ahab negatively answered this unexpected question; +and would then have fain boarded the stranger, when the stranger +captain himself, having stopped his vessel’s way, was seen descending +her side. A few keen pulls, and his boat-hook soon clinched the +Pequod’s main-chains, and he sprang to the deck. Immediately he was +recognised by Ahab for a Nantucketer he knew. But no formal salutation +was exchanged. + +“Where was he?—not killed!—not killed!” cried Ahab, closely advancing. +“How was it?” + +It seemed that somewhat late on the afternoon of the day previous, +while three of the stranger’s boats were engaged with a shoal of +whales, which had led them some four or five miles from the ship; and +while they were yet in swift chase to windward, the white hump and head +of Moby Dick had suddenly loomed up out of the water, not very far to +leeward; whereupon, the fourth rigged boat—a reserved one—had been +instantly lowered in chase. After a keen sail before the wind, this +fourth boat—the swiftest keeled of all—seemed to have succeeded in +fastening—at least, as well as the man at the mast-head could tell +anything about it. In the distance he saw the diminished dotted boat; +and then a swift gleam of bubbling white water; and after that nothing +more; whence it was concluded that the stricken whale must have +indefinitely run away with his pursuers, as often happens. There was +some apprehension, but no positive alarm, as yet. The recall signals +were placed in the rigging; darkness came on; and forced to pick up her +three far to windward boats—ere going in quest of the fourth one in the +precisely opposite direction—the ship had not only been necessitated to +leave that boat to its fate till near midnight, but, for the time, to +increase her distance from it. But the rest of her crew being at last +safe aboard, she crowded all sail—stunsail on stunsail—after the +missing boat; kindling a fire in her try-pots for a beacon; and every +other man aloft on the look-out. But though when she had thus sailed a +sufficient distance to gain the presumed place of the absent ones when +last seen; though she then paused to lower her spare boats to pull all +around her; and not finding anything, had again dashed on; again +paused, and lowered her boats; and though she had thus continued doing +till daylight; yet not the least glimpse of the missing keel had been +seen. + +The story told, the stranger Captain immediately went on to reveal his +object in boarding the Pequod. He desired that ship to unite with his +own in the search; by sailing over the sea some four or five miles +apart, on parallel lines, and so sweeping a double horizon, as it were. + +“I will wager something now,” whispered Stubb to Flask, “that some one +in that missing boat wore off that Captain’s best coat; mayhap, his +watch—he’s so cursed anxious to get it back. Who ever heard of two +pious whale-ships cruising after one missing whale-boat in the height +of the whaling season? See, Flask, only see how pale he looks—pale in +the very buttons of his eyes—look—it wasn’t the coat—it must have been +the—” + +“My boy, my own boy is among them. For God’s sake—I beg, I +conjure”—here exclaimed the stranger Captain to Ahab, who thus far had +but icily received his petition. “For eight-and-forty hours let me +charter your ship—I will gladly pay for it, and roundly pay for it—if +there be no other way—for eight-and-forty hours only—only that—you +must, oh, you must, and you _shall_ do this thing.” + +“His son!” cried Stubb, “oh, it’s his son he’s lost! I take back the +coat and watch—what says Ahab? We must save that boy.” + +“He’s drowned with the rest on ’em, last night,” said the old Manx +sailor standing behind them; “I heard; all of ye heard their spirits.” + +Now, as it shortly turned out, what made this incident of the Rachel’s +the more melancholy, was the circumstance, that not only was one of the +Captain’s sons among the number of the missing boat’s crew; but among +the number of the other boat’s crews, at the same time, but on the +other hand, separated from the ship during the dark vicissitudes of the +chase, there had been still another son; as that for a time, the +wretched father was plunged to the bottom of the cruellest perplexity; +which was only solved for him by his chief mate’s instinctively +adopting the ordinary procedure of a whale-ship in such emergencies, +that is, when placed between jeopardized but divided boats, always to +pick up the majority first. But the captain, for some unknown +constitutional reason, had refrained from mentioning all this, and not +till forced to it by Ahab’s iciness did he allude to his one yet +missing boy; a little lad, but twelve years old, whose father with the +earnest but unmisgiving hardihood of a Nantucketer’s paternal love, had +thus early sought to initiate him in the perils and wonders of a +vocation almost immemorially the destiny of all his race. Nor does it +unfrequently occur, that Nantucket captains will send a son of such +tender age away from them, for a protracted three or four years’ voyage +in some other ship than their own; so that their first knowledge of a +whaleman’s career shall be unenervated by any chance display of a +father’s natural but untimely partiality, or undue apprehensiveness and +concern. + +Meantime, now the stranger was still beseeching his poor boon of Ahab; +and Ahab still stood like an anvil, receiving every shock, but without +the least quivering of his own. + +“I will not go,” said the stranger, “till you say _aye_ to me. Do to me +as you would have me do to you in the like case. For _you_ too have a +boy, Captain Ahab—though but a child, and nestling safely at home now—a +child of your old age too—Yes, yes, you relent; I see it—run, run, men, +now, and stand by to square in the yards.” + +“Avast,” cried Ahab—“touch not a rope-yarn”; then in a voice that +prolongingly moulded every word—“Captain Gardiner, I will not do it. +Even now I lose time. Good-bye, good-bye. God bless ye, man, and may I +forgive myself, but I must go. Mr. Starbuck, look at the binnacle +watch, and in three minutes from this present instant warn off all +strangers: then brace forward again, and let the ship sail as before.” + +Hurriedly turning, with averted face, he descended into his cabin, +leaving the strange captain transfixed at this unconditional and utter +rejection of his so earnest suit. But starting from his enchantment, +Gardiner silently hurried to the side; more fell than stepped into his +boat, and returned to his ship. + +Soon the two ships diverged their wakes; and long as the strange vessel +was in view, she was seen to yaw hither and thither at every dark spot, +however small, on the sea. This way and that her yards were swung +round; starboard and larboard, she continued to tack; now she beat +against a head sea; and again it pushed her before it; while all the +while, her masts and yards were thickly clustered with men, as three +tall cherry trees, when the boys are cherrying among the boughs. + +But by her still halting course and winding, woeful way, you plainly +saw that this ship that so wept with spray, still remained without +comfort. She was Rachel, weeping for her children, because they were +not. + + +CHAPTER 129. The Cabin. + +(_Ahab moving to go on deck; Pip catches him by the hand to follow._) + +“Lad, lad, I tell thee thou must not follow Ahab now. The hour is +coming when Ahab would not scare thee from him, yet would not have thee +by him. There is that in thee, poor lad, which I feel too curing to my +malady. Like cures like; and for this hunt, my malady becomes my most +desired health. Do thou abide below here, where they shall serve thee, +as if thou wert the captain. Aye, lad, thou shalt sit here in my own +screwed chair; another screw to it, thou must be.” + +“No, no, no! ye have not a whole body, sir; do ye but use poor me for +your one lost leg; only tread upon me, sir; I ask no more, so I remain +a part of ye.” + +“Oh! spite of million villains, this makes me a bigot in the fadeless +fidelity of man!—and a black! and crazy!—but methinks like-cures-like +applies to him too; he grows so sane again.” + +“They tell me, sir, that Stubb did once desert poor little Pip, whose +drowned bones now show white, for all the blackness of his living skin. +But I will never desert ye, sir, as Stubb did him. Sir, I must go with +ye.” + +“If thou speakest thus to me much more, Ahab’s purpose keels up in him. +I tell thee no; it cannot be.” + +“Oh good master, master, master! + +“Weep so, and I will murder thee! have a care, for Ahab too is mad. +Listen, and thou wilt often hear my ivory foot upon the deck, and still +know that I am there. And now I quit thee. Thy hand!—Met! True art +thou, lad, as the circumference to its centre. So: God for ever bless +thee; and if it come to that,—God for ever save thee, let what will +befall.” + +(_Ahab goes; Pip steps one step forward._) + +“Here he this instant stood; I stand in his air,—but I’m alone. Now +were even poor Pip here I could endure it, but he’s missing. Pip! Pip! +Ding, dong, ding! Who’s seen Pip? He must be up here; let’s try the +door. What? neither lock, nor bolt, nor bar; and yet there’s no opening +it. It must be the spell; he told me to stay here: Aye, and told me +this screwed chair was mine. Here, then, I’ll seat me, against the +transom, in the ship’s full middle, all her keel and her three masts +before me. Here, our old sailors say, in their black seventy-fours +great admirals sometimes sit at table, and lord it over rows of +captains and lieutenants. Ha! what’s this? epaulets! epaulets! the +epaulets all come crowding! Pass round the decanters; glad to see ye; +fill up, monsieurs! What an odd feeling, now, when a black boy’s host +to white men with gold lace upon their coats!—Monsieurs, have ye seen +one Pip?—a little negro lad, five feet high, hang-dog look, and +cowardly! Jumped from a whale-boat once;—seen him? No! Well then, fill +up again, captains, and let’s drink shame upon all cowards! I name no +names. Shame upon them! Put one foot upon the table. Shame upon all +cowards.—Hist! above there, I hear ivory—Oh, master! master! I am +indeed down-hearted when you walk over me. But here I’ll stay, though +this stern strikes rocks; and they bulge through; and oysters come to +join me.” + + +CHAPTER 130. The Hat. + +And now that at the proper time and place, after so long and wide a +preliminary cruise, Ahab,—all other whaling waters swept—seemed to have +chased his foe into an ocean-fold, to slay him the more securely there; +now, that he found himself hard by the very latitude and longitude +where his tormenting wound had been inflicted; now that a vessel had +been spoken which on the very day preceding had actually encountered +Moby Dick;—and now that all his successive meetings with various ships +contrastingly concurred to show the demoniac indifference with which +the white whale tore his hunters, whether sinning or sinned against; +now it was that there lurked a something in the old man’s eyes, which +it was hardly sufferable for feeble souls to see. As the unsetting +polar star, which through the livelong, arctic, six months’ night +sustains its piercing, steady, central gaze; so Ahab’s purpose now +fixedly gleamed down upon the constant midnight of the gloomy crew. It +domineered above them so, that all their bodings, doubts, misgivings, +fears, were fain to hide beneath their souls, and not sprout forth a +single spear or leaf. + +In this foreshadowing interval too, all humor, forced or natural, +vanished. Stubb no more strove to raise a smile; Starbuck no more +strove to check one. Alike, joy and sorrow, hope and fear, seemed +ground to finest dust, and powdered, for the time, in the clamped +mortar of Ahab’s iron soul. Like machines, they dumbly moved about the +deck, ever conscious that the old man’s despot eye was on them. + +But did you deeply scan him in his more secret confidential hours; when +he thought no glance but one was on him; then you would have seen that +even as Ahab’s eyes so awed the crew’s, the inscrutable Parsee’s glance +awed his; or somehow, at least, in some wild way, at times affected it. +Such an added, gliding strangeness began to invest the thin Fedallah +now; such ceaseless shudderings shook him; that the men looked dubious +at him; half uncertain, as it seemed, whether indeed he were a mortal +substance, or else a tremulous shadow cast upon the deck by some unseen +being’s body. And that shadow was always hovering there. For not by +night, even, had Fedallah ever certainly been known to slumber, or go +below. He would stand still for hours: but never sat or leaned; his wan +but wondrous eyes did plainly say—We two watchmen never rest. + +Nor, at any time, by night or day could the mariners now step upon the +deck, unless Ahab was before them; either standing in his pivot-hole, +or exactly pacing the planks between two undeviating limits,—the +main-mast and the mizen; or else they saw him standing in the +cabin-scuttle,—his living foot advanced upon the deck, as if to step; +his hat slouched heavily over his eyes; so that however motionless he +stood, however the days and nights were added on, that he had not swung +in his hammock; yet hidden beneath that slouching hat, they could never +tell unerringly whether, for all this, his eyes were really closed at +times; or whether he was still intently scanning them; no matter, +though he stood so in the scuttle for a whole hour on the stretch, and +the unheeded night-damp gathered in beads of dew upon that stone-carved +coat and hat. The clothes that the night had wet, the next day’s +sunshine dried upon him; and so, day after day, and night after night; +he went no more beneath the planks; whatever he wanted from the cabin +that thing he sent for. + +He ate in the same open air; that is, his two only meals,—breakfast and +dinner: supper he never touched; nor reaped his beard; which darkly +grew all gnarled, as unearthed roots of trees blown over, which still +grow idly on at naked base, though perished in the upper verdure. But +though his whole life was now become one watch on deck; and though the +Parsee’s mystic watch was without intermission as his own; yet these +two never seemed to speak—one man to the other—unless at long intervals +some passing unmomentous matter made it necessary. Though such a potent +spell seemed secretly to join the twain; openly, and to the awe-struck +crew, they seemed pole-like asunder. If by day they chanced to speak +one word; by night, dumb men were both, so far as concerned the +slightest verbal interchange. At times, for longest hours, without a +single hail, they stood far parted in the starlight; Ahab in his +scuttle, the Parsee by the mainmast; but still fixedly gazing upon each +other; as if in the Parsee Ahab saw his forethrown shadow, in Ahab the +Parsee his abandoned substance. + +And yet, somehow, did Ahab—in his own proper self, as daily, hourly, +and every instant, commandingly revealed to his subordinates,—Ahab +seemed an independent lord; the Parsee but his slave. Still again both +seemed yoked together, and an unseen tyrant driving them; the lean +shade siding the solid rib. For be this Parsee what he may, all rib and +keel was solid Ahab. + +At the first faintest glimmering of the dawn, his iron voice was heard +from aft,—“Man the mast-heads!”—and all through the day, till after +sunset and after twilight, the same voice every hour, at the striking +of the helmsman’s bell, was heard—“What d’ye see?—sharp! sharp!” + +But when three or four days had slided by, after meeting the +children-seeking Rachel; and no spout had yet been seen; the monomaniac +old man seemed distrustful of his crew’s fidelity; at least, of nearly +all except the Pagan harpooneers; he seemed to doubt, even, whether +Stubb and Flask might not willingly overlook the sight he sought. But +if these suspicions were really his, he sagaciously refrained from +verbally expressing them, however his actions might seem to hint them. + +“I will have the first sight of the whale myself,”—he said. “Aye! Ahab +must have the doubloon!” and with his own hands he rigged a nest of +basketed bowlines; and sending a hand aloft, with a single sheaved +block, to secure to the main-mast head, he received the two ends of the +downward-reeved rope; and attaching one to his basket prepared a pin +for the other end, in order to fasten it at the rail. This done, with +that end yet in his hand and standing beside the pin, he looked round +upon his crew, sweeping from one to the other; pausing his glance long +upon Daggoo, Queequeg, Tashtego; but shunning Fedallah; and then +settling his firm relying eye upon the chief mate, said,—“Take the +rope, sir—I give it into thy hands, Starbuck.” Then arranging his +person in the basket, he gave the word for them to hoist him to his +perch, Starbuck being the one who secured the rope at last; and +afterwards stood near it. And thus, with one hand clinging round the +royal mast, Ahab gazed abroad upon the sea for miles and miles,—ahead, +astern, this side, and that,—within the wide expanded circle commanded +at so great a height. + +When in working with his hands at some lofty almost isolated place in +the rigging, which chances to afford no foothold, the sailor at sea is +hoisted up to that spot, and sustained there by the rope; under these +circumstances, its fastened end on deck is always given in strict +charge to some one man who has the special watch of it. Because in such +a wilderness of running rigging, whose various different relations +aloft cannot always be infallibly discerned by what is seen of them at +the deck; and when the deck-ends of these ropes are being every few +minutes cast down from the fastenings, it would be but a natural +fatality, if, unprovided with a constant watchman, the hoisted sailor +should by some carelessness of the crew be cast adrift and fall all +swooping to the sea. So Ahab’s proceedings in this matter were not +unusual; the only strange thing about them seemed to be, that Starbuck, +almost the one only man who had ever ventured to oppose him with +anything in the slightest degree approaching to decision—one of those +too, whose faithfulness on the look-out he had seemed to doubt +somewhat;—it was strange, that this was the very man he should select +for his watchman; freely giving his whole life into such an otherwise +distrusted person’s hands. + +Now, the first time Ahab was perched aloft; ere he had been there ten +minutes; one of those red-billed savage sea-hawks which so often fly +incommodiously close round the manned mast-heads of whalemen in these +latitudes; one of these birds came wheeling and screaming round his +head in a maze of untrackably swift circlings. Then it darted a +thousand feet straight up into the air; then spiralized downwards, and +went eddying again round his head. + +But with his gaze fixed upon the dim and distant horizon, Ahab seemed +not to mark this wild bird; nor, indeed, would any one else have marked +it much, it being no uncommon circumstance; only now almost the least +heedful eye seemed to see some sort of cunning meaning in almost every +sight. + +“Your hat, your hat, sir!” suddenly cried the Sicilian seaman, who +being posted at the mizen-mast-head, stood directly behind Ahab, though +somewhat lower than his level, and with a deep gulf of air dividing +them. + +But already the sable wing was before the old man’s eyes; the long +hooked bill at his head: with a scream, the black hawk darted away with +his prize. + +An eagle flew thrice round Tarquin’s head, removing his cap to replace +it, and thereupon Tanaquil, his wife, declared that Tarquin would be +king of Rome. But only by the replacing of the cap was that omen +accounted good. Ahab’s hat was never restored; the wild hawk flew on +and on with it; far in advance of the prow: and at last disappeared; +while from the point of that disappearance, a minute black spot was +dimly discerned, falling from that vast height into the sea. + + +CHAPTER 131. The Pequod Meets The Delight. + +The intense Pequod sailed on; the rolling waves and days went by; the +life-buoy-coffin still lightly swung; and another ship, most miserably +misnamed the Delight, was descried. As she drew nigh, all eyes were +fixed upon her broad beams, called shears, which, in some +whaling-ships, cross the quarter-deck at the height of eight or nine +feet; serving to carry the spare, unrigged, or disabled boats. + +Upon the stranger’s shears were beheld the shattered, white ribs, and +some few splintered planks, of what had once been a whale-boat; but you +now saw through this wreck, as plainly as you see through the peeled, +half-unhinged, and bleaching skeleton of a horse. + +“Hast seen the White Whale?” + +“Look!” replied the hollow-cheeked captain from his taffrail; and with +his trumpet he pointed to the wreck. + +“Hast killed him?” + +“The harpoon is not yet forged that ever will do that,” answered the +other, sadly glancing upon a rounded hammock on the deck, whose +gathered sides some noiseless sailors were busy in sewing together. + +“Not forged!” and snatching Perth’s levelled iron from the crotch, Ahab +held it out, exclaiming—“Look ye, Nantucketer; here in this hand I hold +his death! Tempered in blood, and tempered by lightning are these +barbs; and I swear to temper them triply in that hot place behind the +fin, where the White Whale most feels his accursed life!” + +“Then God keep thee, old man—see’st thou that”—pointing to the +hammock—“I bury but one of five stout men, who were alive only +yesterday; but were dead ere night. Only _that_ one I bury; the rest +were buried before they died; you sail upon their tomb.” Then turning +to his crew—“Are ye ready there? place the plank then on the rail, and +lift the body; so, then—Oh! God”—advancing towards the hammock with +uplifted hands—“may the resurrection and the life——” + +“Brace forward! Up helm!” cried Ahab like lightning to his men. + +But the suddenly started Pequod was not quick enough to escape the +sound of the splash that the corpse soon made as it struck the sea; not +so quick, indeed, but that some of the flying bubbles might have +sprinkled her hull with their ghostly baptism. + +As Ahab now glided from the dejected Delight, the strange life-buoy +hanging at the Pequod’s stern came into conspicuous relief. + +“Ha! yonder! look yonder, men!” cried a foreboding voice in her wake. +“In vain, oh, ye strangers, ye fly our sad burial; ye but turn us your +taffrail to show us your coffin!” + + +CHAPTER 132. The Symphony. + +It was a clear steel-blue day. The firmaments of air and sea were +hardly separable in that all-pervading azure; only, the pensive air was +transparently pure and soft, with a woman’s look, and the robust and +man-like sea heaved with long, strong, lingering swells, as Samson’s +chest in his sleep. + +Hither, and thither, on high, glided the snow-white wings of small, +unspeckled birds; these were the gentle thoughts of the feminine air; +but to and fro in the deeps, far down in the bottomless blue, rushed +mighty leviathans, sword-fish, and sharks; and these were the strong, +troubled, murderous thinkings of the masculine sea. + +But though thus contrasting within, the contrast was only in shades and +shadows without; those two seemed one; it was only the sex, as it were, +that distinguished them. + +Aloft, like a royal czar and king, the sun seemed giving this gentle +air to this bold and rolling sea; even as bride to groom. And at the +girdling line of the horizon, a soft and tremulous motion—most seen +here at the equator—denoted the fond, throbbing trust, the loving +alarms, with which the poor bride gave her bosom away. + +Tied up and twisted; gnarled and knotted with wrinkles; haggardly firm +and unyielding; his eyes glowing like coals, that still glow in the +ashes of ruin; untottering Ahab stood forth in the clearness of the +morn; lifting his splintered helmet of a brow to the fair girl’s +forehead of heaven. + +Oh, immortal infancy, and innocency of the azure! Invisible winged +creatures that frolic all round us! Sweet childhood of air and sky! how +oblivious were ye of old Ahab’s close-coiled woe! But so have I seen +little Miriam and Martha, laughing-eyed elves, heedlessly gambol around +their old sire; sporting with the circle of singed locks which grew on +the marge of that burnt-out crater of his brain. + +Slowly crossing the deck from the scuttle, Ahab leaned over the side +and watched how his shadow in the water sank and sank to his gaze, the +more and the more that he strove to pierce the profundity. But the +lovely aromas in that enchanted air did at last seem to dispel, for a +moment, the cankerous thing in his soul. That glad, happy air, that +winsome sky, did at last stroke and caress him; the step-mother world, +so long cruel—forbidding—now threw affectionate arms round his stubborn +neck, and did seem to joyously sob over him, as if over one, that +however wilful and erring, she could yet find it in her heart to save +and to bless. From beneath his slouched hat Ahab dropped a tear into +the sea; nor did all the Pacific contain such wealth as that one wee +drop. + +Starbuck saw the old man; saw him, how he heavily leaned over the side; +and he seemed to hear in his own true heart the measureless sobbing +that stole out of the centre of the serenity around. Careful not to +touch him, or be noticed by him, he yet drew near to him, and stood +there. + +Ahab turned. + +“Starbuck!” + +“Sir.” + +“Oh, Starbuck! it is a mild, mild wind, and a mild looking sky. On such +a day—very much such a sweetness as this—I struck my first whale—a +boy-harpooneer of eighteen! Forty—forty—forty years ago!—ago! Forty +years of continual whaling! forty years of privation, and peril, and +storm-time! forty years on the pitiless sea! for forty years has Ahab +forsaken the peaceful land, for forty years to make war on the horrors +of the deep! Aye and yes, Starbuck, out of those forty years I have not +spent three ashore. When I think of this life I have led; the +desolation of solitude it has been; the masoned, walled-town of a +Captain’s exclusiveness, which admits but small entrance to any +sympathy from the green country without—oh, weariness! heaviness! +Guinea-coast slavery of solitary command!—when I think of all this; +only half-suspected, not so keenly known to me before—and how for forty +years I have fed upon dry salted fare—fit emblem of the dry nourishment +of my soil!—when the poorest landsman has had fresh fruit to his daily +hand, and broken the world’s fresh bread to my mouldy crusts—away, +whole oceans away, from that young girl-wife I wedded past fifty, and +sailed for Cape Horn the next day, leaving but one dent in my marriage +pillow—wife? wife?—rather a widow with her husband alive! Aye, I +widowed that poor girl when I married her, Starbuck; and then, the +madness, the frenzy, the boiling blood and the smoking brow, with +which, for a thousand lowerings old Ahab has furiously, foamingly +chased his prey—more a demon than a man!—aye, aye! what a forty years’ +fool—fool—old fool, has old Ahab been! Why this strife of the chase? +why weary, and palsy the arm at the oar, and the iron, and the lance? +how the richer or better is Ahab now? Behold. Oh, Starbuck! is it not +hard, that with this weary load I bear, one poor leg should have been +snatched from under me? Here, brush this old hair aside; it blinds me, +that I seem to weep. Locks so grey did never grow but from out some +ashes! But do I look very old, so very, very old, Starbuck? I feel +deadly faint, bowed, and humped, as though I were Adam, staggering +beneath the piled centuries since Paradise. God! God! God!—crack my +heart!—stave my brain!—mockery! mockery! bitter, biting mockery of grey +hairs, have I lived enough joy to wear ye; and seem and feel thus +intolerably old? Close! stand close to me, Starbuck; let me look into a +human eye; it is better than to gaze into sea or sky; better than to +gaze upon God. By the green land; by the bright hearth-stone! this is +the magic glass, man; I see my wife and my child in thine eye. No, no; +stay on board, on board!—lower not when I do; when branded Ahab gives +chase to Moby Dick. That hazard shall not be thine. No, no! not with +the far away home I see in that eye!” + +“Oh, my Captain! my Captain! noble soul! grand old heart, after all! +why should any one give chase to that hated fish! Away with me! let us +fly these deadly waters! let us home! Wife and child, too, are +Starbuck’s—wife and child of his brotherly, sisterly, play-fellow +youth; even as thine, sir, are the wife and child of thy loving, +longing, paternal old age! Away! let us away!—this instant let me alter +the course! How cheerily, how hilariously, O my Captain, would we bowl +on our way to see old Nantucket again! I think, sir, they have some +such mild blue days, even as this, in Nantucket.” + +“They have, they have. I have seen them—some summer days in the +morning. About this time—yes, it is his noon nap now—the boy +vivaciously wakes; sits up in bed; and his mother tells him of me, of +cannibal old me; how I am abroad upon the deep, but will yet come back +to dance him again.” + +“’Tis my Mary, my Mary herself! She promised that my boy, every +morning, should be carried to the hill to catch the first glimpse of +his father’s sail! Yes, yes! no more! it is done! we head for +Nantucket! Come, my Captain, study out the course, and let us away! +See, see! the boy’s face from the window! the boy’s hand on the hill!” + +But Ahab’s glance was averted; like a blighted fruit tree he shook, and +cast his last, cindered apple to the soil. + +“What is it, what nameless, inscrutable, unearthly thing is it; what +cozening, hidden lord and master, and cruel, remorseless emperor +commands me; that against all natural lovings and longings, I so keep +pushing, and crowding, and jamming myself on all the time; recklessly +making me ready to do what in my own proper, natural heart, I durst not +so much as dare? Is Ahab, Ahab? Is it I, God, or who, that lifts this +arm? But if the great sun move not of himself; but is as an errand-boy +in heaven; nor one single star can revolve, but by some invisible +power; how then can this one small heart beat; this one small brain +think thoughts; unless God does that beating, does that thinking, does +that living, and not I. By heaven, man, we are turned round and round +in this world, like yonder windlass, and Fate is the handspike. And all +the time, lo! that smiling sky, and this unsounded sea! Look! see yon +Albicore! who put it into him to chase and fang that flying-fish? Where +do murderers go, man! Who’s to doom, when the judge himself is dragged +to the bar? But it is a mild, mild wind, and a mild looking sky; and +the air smells now, as if it blew from a far-away meadow; they have +been making hay somewhere under the slopes of the Andes, Starbuck, and +the mowers are sleeping among the new-mown hay. Sleeping? Aye, toil we +how we may, we all sleep at last on the field. Sleep? Aye, and rust +amid greenness; as last year’s scythes flung down, and left in the +half-cut swaths—Starbuck!” + +But blanched to a corpse’s hue with despair, the Mate had stolen away. + +Ahab crossed the deck to gaze over on the other side; but started at +two reflected, fixed eyes in the water there. Fedallah was motionlessly +leaning over the same rail. + + +CHAPTER 133. The Chase—First Day. + +That night, in the mid-watch, when the old man—as his wont at +intervals—stepped forth from the scuttle in which he leaned, and went +to his pivot-hole, he suddenly thrust out his face fiercely, snuffing +up the sea air as a sagacious ship’s dog will, in drawing nigh to some +barbarous isle. He declared that a whale must be near. Soon that +peculiar odor, sometimes to a great distance given forth by the living +sperm whale, was palpable to all the watch; nor was any mariner +surprised when, after inspecting the compass, and then the dog-vane, +and then ascertaining the precise bearing of the odor as nearly as +possible, Ahab rapidly ordered the ship’s course to be slightly +altered, and the sail to be shortened. + +The acute policy dictating these movements was sufficiently vindicated +at daybreak, by the sight of a long sleek on the sea directly and +lengthwise ahead, smooth as oil, and resembling in the pleated watery +wrinkles bordering it, the polished metallic-like marks of some swift +tide-rip, at the mouth of a deep, rapid stream. + +“Man the mast-heads! Call all hands!” + +Thundering with the butts of three clubbed handspikes on the forecastle +deck, Daggoo roused the sleepers with such judgment claps that they +seemed to exhale from the scuttle, so instantaneously did they appear +with their clothes in their hands. + +“What d’ye see?” cried Ahab, flattening his face to the sky. + +“Nothing, nothing sir!” was the sound hailing down in reply. + +“T’gallant sails!—stunsails! alow and aloft, and on both sides!” + +All sail being set, he now cast loose the life-line, reserved for +swaying him to the main royal-mast head; and in a few moments they were +hoisting him thither, when, while but two thirds of the way aloft, and +while peering ahead through the horizontal vacancy between the +main-top-sail and top-gallant-sail, he raised a gull-like cry in the +air. “There she blows!—there she blows! A hump like a snow-hill! It is +Moby Dick!” + +Fired by the cry which seemed simultaneously taken up by the three +look-outs, the men on deck rushed to the rigging to behold the famous +whale they had so long been pursuing. Ahab had now gained his final +perch, some feet above the other look-outs, Tashtego standing just +beneath him on the cap of the top-gallant-mast, so that the Indian’s +head was almost on a level with Ahab’s heel. From this height the whale +was now seen some mile or so ahead, at every roll of the sea revealing +his high sparkling hump, and regularly jetting his silent spout into +the air. To the credulous mariners it seemed the same silent spout they +had so long ago beheld in the moonlit Atlantic and Indian Oceans. + +“And did none of ye see it before?” cried Ahab, hailing the perched men +all around him. + +“I saw him almost that same instant, sir, that Captain Ahab did, and I +cried out,” said Tashtego. + +“Not the same instant; not the same—no, the doubloon is mine, Fate +reserved the doubloon for me. _I_ only; none of ye could have raised +the White Whale first. There she blows!—there she blows!—there she +blows! There again!—there again!” he cried, in long-drawn, lingering, +methodic tones, attuned to the gradual prolongings of the whale’s +visible jets. “He’s going to sound! In stunsails! Down +top-gallant-sails! Stand by three boats. Mr. Starbuck, remember, stay +on board, and keep the ship. Helm there! Luff, luff a point! So; +steady, man, steady! There go flukes! No, no; only black water! All +ready the boats there? Stand by, stand by! Lower me, Mr. Starbuck; +lower, lower,—quick, quicker!” and he slid through the air to the deck. + +“He is heading straight to leeward, sir,” cried Stubb, “right away from +us; cannot have seen the ship yet.” + +“Be dumb, man! Stand by the braces! Hard down the helm!—brace up! +Shiver her!—shiver her!—So; well that! Boats, boats!” + +Soon all the boats but Starbuck’s were dropped; all the boat-sails +set—all the paddles plying; with rippling swiftness, shooting to +leeward; and Ahab heading the onset. A pale, death-glimmer lit up +Fedallah’s sunken eyes; a hideous motion gnawed his mouth. + +Like noiseless nautilus shells, their light prows sped through the sea; +but only slowly they neared the foe. As they neared him, the ocean grew +still more smooth; seemed drawing a carpet over its waves; seemed a +noon-meadow, so serenely it spread. At length the breathless hunter +came so nigh his seemingly unsuspecting prey, that his entire dazzling +hump was distinctly visible, sliding along the sea as if an isolated +thing, and continually set in a revolving ring of finest, fleecy, +greenish foam. He saw the vast, involved wrinkles of the slightly +projecting head beyond. Before it, far out on the soft Turkish-rugged +waters, went the glistening white shadow from his broad, milky +forehead, a musical rippling playfully accompanying the shade; and +behind, the blue waters interchangeably flowed over into the moving +valley of his steady wake; and on either hand bright bubbles arose and +danced by his side. But these were broken again by the light toes of +hundreds of gay fowl softly feathering the sea, alternate with their +fitful flight; and like to some flag-staff rising from the painted hull +of an argosy, the tall but shattered pole of a recent lance projected +from the white whale’s back; and at intervals one of the cloud of +soft-toed fowls hovering, and to and fro skimming like a canopy over +the fish, silently perched and rocked on this pole, the long tail +feathers streaming like pennons. + +A gentle joyousness—a mighty mildness of repose in swiftness, invested +the gliding whale. Not the white bull Jupiter swimming away with +ravished Europa clinging to his graceful horns; his lovely, leering +eyes sideways intent upon the maid; with smooth bewitching fleetness, +rippling straight for the nuptial bower in Crete; not Jove, not that +great majesty Supreme! did surpass the glorified White Whale as he so +divinely swam. + +On each soft side—coincident with the parted swell, that but once +leaving him, then flowed so wide away—on each bright side, the whale +shed off enticings. No wonder there had been some among the hunters who +namelessly transported and allured by all this serenity, had ventured +to assail it; but had fatally found that quietude but the vesture of +tornadoes. Yet calm, enticing calm, oh, whale! thou glidest on, to all +who for the first time eye thee, no matter how many in that same way +thou may’st have bejuggled and destroyed before. + +And thus, through the serene tranquillities of the tropical sea, among +waves whose hand-clappings were suspended by exceeding rapture, Moby +Dick moved on, still withholding from sight the full terrors of his +submerged trunk, entirely hiding the wrenched hideousness of his jaw. +But soon the fore part of him slowly rose from the water; for an +instant his whole marbleized body formed a high arch, like Virginia’s +Natural Bridge, and warningly waving his bannered flukes in the air, +the grand god revealed himself, sounded, and went out of sight. +Hoveringly halting, and dipping on the wing, the white sea-fowls +longingly lingered over the agitated pool that he left. + +With oars apeak, and paddles down, the sheets of their sails adrift, +the three boats now stilly floated, awaiting Moby Dick’s reappearance. + +“An hour,” said Ahab, standing rooted in his boat’s stern; and he gazed +beyond the whale’s place, towards the dim blue spaces and wide wooing +vacancies to leeward. It was only an instant; for again his eyes seemed +whirling round in his head as he swept the watery circle. The breeze +now freshened; the sea began to swell. + +“The birds!—the birds!” cried Tashtego. + +In long Indian file, as when herons take wing, the white birds were now +all flying towards Ahab’s boat; and when within a few yards began +fluttering over the water there, wheeling round and round, with joyous, +expectant cries. Their vision was keener than man’s; Ahab could +discover no sign in the sea. But suddenly as he peered down and down +into its depths, he profoundly saw a white living spot no bigger than a +white weasel, with wonderful celerity uprising, and magnifying as it +rose, till it turned, and then there were plainly revealed two long +crooked rows of white, glistening teeth, floating up from the +undiscoverable bottom. It was Moby Dick’s open mouth and scrolled jaw; +his vast, shadowed bulk still half blending with the blue of the sea. +The glittering mouth yawned beneath the boat like an open-doored marble +tomb; and giving one sidelong sweep with his steering oar, Ahab whirled +the craft aside from this tremendous apparition. Then, calling upon +Fedallah to change places with him, went forward to the bows, and +seizing Perth’s harpoon, commanded his crew to grasp their oars and +stand by to stern. + +Now, by reason of this timely spinning round the boat upon its axis, +its bow, by anticipation, was made to face the whale’s head while yet +under water. But as if perceiving this stratagem, Moby Dick, with that +malicious intelligence ascribed to him, sidelingly transplanted +himself, as it were, in an instant, shooting his pleated head +lengthwise beneath the boat. + +Through and through; through every plank and each rib, it thrilled for +an instant, the whale obliquely lying on his back, in the manner of a +biting shark, slowly and feelingly taking its bows full within his +mouth, so that the long, narrow, scrolled lower jaw curled high up into +the open air, and one of the teeth caught in a row-lock. The bluish +pearl-white of the inside of the jaw was within six inches of Ahab’s +head, and reached higher than that. In this attitude the White Whale +now shook the slight cedar as a mildly cruel cat her mouse. With +unastonished eyes Fedallah gazed, and crossed his arms; but the +tiger-yellow crew were tumbling over each other’s heads to gain the +uttermost stern. + +And now, while both elastic gunwales were springing in and out, as the +whale dallied with the doomed craft in this devilish way; and from his +body being submerged beneath the boat, he could not be darted at from +the bows, for the bows were almost inside of him, as it were; and while +the other boats involuntarily paused, as before a quick crisis +impossible to withstand, then it was that monomaniac Ahab, furious with +this tantalizing vicinity of his foe, which placed him all alive and +helpless in the very jaws he hated; frenzied with all this, he seized +the long bone with his naked hands, and wildly strove to wrench it from +its gripe. As now he thus vainly strove, the jaw slipped from him; the +frail gunwales bent in, collapsed, and snapped, as both jaws, like an +enormous shears, sliding further aft, bit the craft completely in +twain, and locked themselves fast again in the sea, midway between the +two floating wrecks. These floated aside, the broken ends drooping, the +crew at the stern-wreck clinging to the gunwales, and striving to hold +fast to the oars to lash them across. + +At that preluding moment, ere the boat was yet snapped, Ahab, the first +to perceive the whale’s intent, by the crafty upraising of his head, a +movement that loosed his hold for the time; at that moment his hand had +made one final effort to push the boat out of the bite. But only +slipping further into the whale’s mouth, and tilting over sideways as +it slipped, the boat had shaken off his hold on the jaw; spilled him +out of it, as he leaned to the push; and so he fell flat-faced upon the +sea. + +Ripplingly withdrawing from his prey, Moby Dick now lay at a little +distance, vertically thrusting his oblong white head up and down in the +billows; and at the same time slowly revolving his whole spindled body; +so that when his vast wrinkled forehead rose—some twenty or more feet +out of the water—the now rising swells, with all their confluent waves, +dazzlingly broke against it; vindictively tossing their shivered spray +still higher into the air.* So, in a gale, the but half baffled Channel +billows only recoil from the base of the Eddystone, triumphantly to +overleap its summit with their scud. + +*This motion is peculiar to the sperm whale. It receives its +designation (pitchpoling) from its being likened to that preliminary +up-and-down poise of the whale-lance, in the exercise called +pitchpoling, previously described. By this motion the whale must best +and most comprehensively view whatever objects may be encircling him. + +But soon resuming his horizontal attitude, Moby Dick swam swiftly round +and round the wrecked crew; sideways churning the water in his vengeful +wake, as if lashing himself up to still another and more deadly +assault. The sight of the splintered boat seemed to madden him, as the +blood of grapes and mulberries cast before Antiochus’s elephants in the +book of Maccabees. Meanwhile Ahab half smothered in the foam of the +whale’s insolent tail, and too much of a cripple to swim,—though he +could still keep afloat, even in the heart of such a whirlpool as that; +helpless Ahab’s head was seen, like a tossed bubble which the least +chance shock might burst. From the boat’s fragmentary stern, Fedallah +incuriously and mildly eyed him; the clinging crew, at the other +drifting end, could not succor him; more than enough was it for them to +look to themselves. For so revolvingly appalling was the White Whale’s +aspect, and so planetarily swift the ever-contracting circles he made, +that he seemed horizontally swooping upon them. And though the other +boats, unharmed, still hovered hard by; still they dared not pull into +the eddy to strike, lest that should be the signal for the instant +destruction of the jeopardized castaways, Ahab and all; nor in that +case could they themselves hope to escape. With straining eyes, then, +they remained on the outer edge of the direful zone, whose centre had +now become the old man’s head. + +Meantime, from the beginning all this had been descried from the ship’s +mast heads; and squaring her yards, she had borne down upon the scene; +and was now so nigh, that Ahab in the water hailed her!—“Sail on +the”—but that moment a breaking sea dashed on him from Moby Dick, and +whelmed him for the time. But struggling out of it again, and chancing +to rise on a towering crest, he shouted,—“Sail on the whale!—Drive him +off!” + +The Pequod’s prows were pointed; and breaking up the charmed circle, +she effectually parted the white whale from his victim. As he sullenly +swam off, the boats flew to the rescue. + +Dragged into Stubb’s boat with blood-shot, blinded eyes, the white +brine caking in his wrinkles; the long tension of Ahab’s bodily +strength did crack, and helplessly he yielded to his body’s doom: for a +time, lying all crushed in the bottom of Stubb’s boat, like one trodden +under foot of herds of elephants. Far inland, nameless wails came from +him, as desolate sounds from out ravines. + +But this intensity of his physical prostration did but so much the more +abbreviate it. In an instant’s compass, great hearts sometimes condense +to one deep pang, the sum total of those shallow pains kindly diffused +through feebler men’s whole lives. And so, such hearts, though summary +in each one suffering; still, if the gods decree it, in their life-time +aggregate a whole age of woe, wholly made up of instantaneous +intensities; for even in their pointless centres, those noble natures +contain the entire circumferences of inferior souls. + +“The harpoon,” said Ahab, half way rising, and draggingly leaning on +one bended arm—“is it safe?” + +“Aye, sir, for it was not darted; this is it,” said Stubb, showing it. + +“Lay it before me;—any missing men?” + +“One, two, three, four, five;—there were five oars, sir, and here are +five men.” + +“That’s good.—Help me, man; I wish to stand. So, so, I see him! there! +there! going to leeward still; what a leaping spout!—Hands off from me! +The eternal sap runs up in Ahab’s bones again! Set the sail; out oars; +the helm!” + +It is often the case that when a boat is stove, its crew, being picked +up by another boat, help to work that second boat; and the chase is +thus continued with what is called double-banked oars. It was thus now. +But the added power of the boat did not equal the added power of the +whale, for he seemed to have treble-banked his every fin; swimming with +a velocity which plainly showed, that if now, under these +circumstances, pushed on, the chase would prove an indefinitely +prolonged, if not a hopeless one; nor could any crew endure for so long +a period, such an unintermitted, intense straining at the oar; a thing +barely tolerable only in some one brief vicissitude. The ship itself, +then, as it sometimes happens, offered the most promising intermediate +means of overtaking the chase. Accordingly, the boats now made for her, +and were soon swayed up to their cranes—the two parts of the wrecked +boat having been previously secured by her—and then hoisting everything +to her side, and stacking her canvas high up, and sideways +outstretching it with stun-sails, like the double-jointed wings of an +albatross; the Pequod bore down in the leeward wake of Moby-Dick. At +the well known, methodic intervals, the whale’s glittering spout was +regularly announced from the manned mast-heads; and when he would be +reported as just gone down, Ahab would take the time, and then pacing +the deck, binnacle-watch in hand, so soon as the last second of the +allotted hour expired, his voice was heard.—“Whose is the doubloon now? +D’ye see him?” and if the reply was, No, sir! straightway he commanded +them to lift him to his perch. In this way the day wore on; Ahab, now +aloft and motionless; anon, unrestingly pacing the planks. + +As he was thus walking, uttering no sound, except to hail the men +aloft, or to bid them hoist a sail still higher, or to spread one to a +still greater breadth—thus to and fro pacing, beneath his slouched hat, +at every turn he passed his own wrecked boat, which had been dropped +upon the quarter-deck, and lay there reversed; broken bow to shattered +stern. At last he paused before it; and as in an already over-clouded +sky fresh troops of clouds will sometimes sail across, so over the old +man’s face there now stole some such added gloom as this. + +Stubb saw him pause; and perhaps intending, not vainly, though, to +evince his own unabated fortitude, and thus keep up a valiant place in +his Captain’s mind, he advanced, and eyeing the wreck exclaimed—“The +thistle the ass refused; it pricked his mouth too keenly, sir; ha! ha!” + +“What soulless thing is this that laughs before a wreck? Man, man! did +I not know thee brave as fearless fire (and as mechanical) I could +swear thou wert a poltroon. Groan nor laugh should be heard before a +wreck.” + +“Aye, sir,” said Starbuck drawing near, “’tis a solemn sight; an omen, +and an ill one.” + +“Omen? omen?—the dictionary! If the gods think to speak outright to +man, they will honorably speak outright; not shake their heads, and +give an old wives’ darkling hint.—Begone! Ye two are the opposite poles +of one thing; Starbuck is Stubb reversed, and Stubb is Starbuck; and ye +two are all mankind; and Ahab stands alone among the millions of the +peopled earth, nor gods nor men his neighbors! Cold, cold—I shiver!—How +now? Aloft there! D’ye see him? Sing out for every spout, though he +spout ten times a second!” + +The day was nearly done; only the hem of his golden robe was rustling. +Soon, it was almost dark, but the look-out men still remained unset. + +“Can’t see the spout now, sir;—too dark”—cried a voice from the air. + +“How heading when last seen?” + +“As before, sir,—straight to leeward.” + +“Good! he will travel slower now ’tis night. Down royals and +top-gallant stun-sails, Mr. Starbuck. We must not run over him before +morning; he’s making a passage now, and may heave-to a while. Helm +there! keep her full before the wind!—Aloft! come down!—Mr. Stubb, send +a fresh hand to the fore-mast head, and see it manned till +morning.”—Then advancing towards the doubloon in the main-mast—“Men, +this gold is mine, for I earned it; but I shall let it abide here till +the White Whale is dead; and then, whosoever of ye first raises him, +upon the day he shall be killed, this gold is that man’s; and if on +that day I shall again raise him, then, ten times its sum shall be +divided among all of ye! Away now!—the deck is thine, sir!” + +And so saying, he placed himself half way within the scuttle, and +slouching his hat, stood there till dawn, except when at intervals +rousing himself to see how the night wore on. + + +CHAPTER 134. The Chase—Second Day. + +At day-break, the three mast-heads were punctually manned afresh. + +“D’ye see him?” cried Ahab after allowing a little space for the light +to spread. + +“See nothing, sir.” + +“Turn up all hands and make sail! he travels faster than I thought +for;—the top-gallant sails!—aye, they should have been kept on her all +night. But no matter—’tis but resting for the rush.” + +Here be it said, that this pertinacious pursuit of one particular +whale, continued through day into night, and through night into day, is +a thing by no means unprecedented in the South sea fishery. For such is +the wonderful skill, prescience of experience, and invincible +confidence acquired by some great natural geniuses among the Nantucket +commanders; that from the simple observation of a whale when last +descried, they will, under certain given circumstances, pretty +accurately foretell both the direction in which he will continue to +swim for a time, while out of sight, as well as his probable rate of +progression during that period. And, in these cases, somewhat as a +pilot, when about losing sight of a coast, whose general trending he +well knows, and which he desires shortly to return to again, but at +some further point; like as this pilot stands by his compass, and takes +the precise bearing of the cape at present visible, in order the more +certainly to hit aright the remote, unseen headland, eventually to be +visited: so does the fisherman, at his compass, with the whale; for +after being chased, and diligently marked, through several hours of +daylight, then, when night obscures the fish, the creature’s future +wake through the darkness is almost as established to the sagacious +mind of the hunter, as the pilot’s coast is to him. So that to this +hunter’s wondrous skill, the proverbial evanescence of a thing writ in +water, a wake, is to all desired purposes well nigh as reliable as the +steadfast land. And as the mighty iron Leviathan of the modern railway +is so familiarly known in its every pace, that, with watches in their +hands, men time his rate as doctors that of a baby’s pulse; and lightly +say of it, the up train or the down train will reach such or such a +spot, at such or such an hour; even so, almost, there are occasions +when these Nantucketers time that other Leviathan of the deep, +according to the observed humor of his speed; and say to themselves, so +many hours hence this whale will have gone two hundred miles, will have +about reached this or that degree of latitude or longitude. But to +render this acuteness at all successful in the end, the wind and the +sea must be the whaleman’s allies; for of what present avail to the +becalmed or windbound mariner is the skill that assures him he is +exactly ninety-three leagues and a quarter from his port? Inferable +from these statements, are many collateral subtile matters touching the +chase of whales. + +The ship tore on; leaving such a furrow in the sea as when a +cannon-ball, missent, becomes a plough-share and turns up the level +field. + +“By salt and hemp!” cried Stubb, “but this swift motion of the deck +creeps up one’s legs and tingles at the heart. This ship and I are two +brave fellows!—Ha, ha! Some one take me up, and launch me, spine-wise, +on the sea,—for by live-oaks! my spine’s a keel. Ha, ha! we go the gait +that leaves no dust behind!” + +“There she blows—she blows!—she blows!—right ahead!” was now the +mast-head cry. + +“Aye, aye!” cried Stubb, “I knew it—ye can’t escape—blow on and split +your spout, O whale! the mad fiend himself is after ye! blow your +trump—blister your lungs!—Ahab will dam off your blood, as a miller +shuts his watergate upon the stream!” + +And Stubb did but speak out for well nigh all that crew. The frenzies +of the chase had by this time worked them bubblingly up, like old wine +worked anew. Whatever pale fears and forebodings some of them might +have felt before; these were not only now kept out of sight through the +growing awe of Ahab, but they were broken up, and on all sides routed, +as timid prairie hares that scatter before the bounding bison. The hand +of Fate had snatched all their souls; and by the stirring perils of the +previous day; the rack of the past night’s suspense; the fixed, +unfearing, blind, reckless way in which their wild craft went plunging +towards its flying mark; by all these things, their hearts were bowled +along. The wind that made great bellies of their sails, and rushed the +vessel on by arms invisible as irresistible; this seemed the symbol of +that unseen agency which so enslaved them to the race. + +They were one man, not thirty. For as the one ship that held them all; +though it was put together of all contrasting things—oak, and maple, +and pine wood; iron, and pitch, and hemp—yet all these ran into each +other in the one concrete hull, which shot on its way, both balanced +and directed by the long central keel; even so, all the individualities +of the crew, this man’s valor, that man’s fear; guilt and guiltiness, +all varieties were welded into oneness, and were all directed to that +fatal goal which Ahab their one lord and keel did point to. + +The rigging lived. The mast-heads, like the tops of tall palms, were +outspreadingly tufted with arms and legs. Clinging to a spar with one +hand, some reached forth the other with impatient wavings; others, +shading their eyes from the vivid sunlight, sat far out on the rocking +yards; all the spars in full bearing of mortals, ready and ripe for +their fate. Ah! how they still strove through that infinite blueness to +seek out the thing that might destroy them! + +“Why sing ye not out for him, if ye see him?” cried Ahab, when, after +the lapse of some minutes since the first cry, no more had been heard. +“Sway me up, men; ye have been deceived; not Moby Dick casts one odd +jet that way, and then disappears.” + +It was even so; in their headlong eagerness, the men had mistaken some +other thing for the whale-spout, as the event itself soon proved; for +hardly had Ahab reached his perch; hardly was the rope belayed to its +pin on deck, when he struck the key-note to an orchestra, that made the +air vibrate as with the combined discharges of rifles. The triumphant +halloo of thirty buckskin lungs was heard, as—much nearer to the ship +than the place of the imaginary jet, less than a mile ahead—Moby Dick +bodily burst into view! For not by any calm and indolent spoutings; not +by the peaceable gush of that mystic fountain in his head, did the +White Whale now reveal his vicinity; but by the far more wondrous +phenomenon of breaching. Rising with his utmost velocity from the +furthest depths, the Sperm Whale thus booms his entire bulk into the +pure element of air, and piling up a mountain of dazzling foam, shows +his place to the distance of seven miles and more. In those moments, +the torn, enraged waves he shakes off, seem his mane; in some cases, +this breaching is his act of defiance. + +“There she breaches! there she breaches!” was the cry, as in his +immeasurable bravadoes the White Whale tossed himself salmon-like to +Heaven. So suddenly seen in the blue plain of the sea, and relieved +against the still bluer margin of the sky, the spray that he raised, +for the moment, intolerably glittered and glared like a glacier; and +stood there gradually fading and fading away from its first sparkling +intensity, to the dim mistiness of an advancing shower in a vale. + +“Aye, breach your last to the sun, Moby Dick!” cried Ahab, “thy hour +and thy harpoon are at hand!—Down! down all of ye, but one man at the +fore. The boats!—stand by!” + +Unmindful of the tedious rope-ladders of the shrouds, the men, like +shooting stars, slid to the deck, by the isolated backstays and +halyards; while Ahab, less dartingly, but still rapidly was dropped +from his perch. + +“Lower away,” he cried, so soon as he had reached his boat—a spare one, +rigged the afternoon previous. “Mr. Starbuck, the ship is thine—keep +away from the boats, but keep near them. Lower, all!” + +As if to strike a quick terror into them, by this time being the first +assailant himself, Moby Dick had turned, and was now coming for the +three crews. Ahab’s boat was central; and cheering his men, he told +them he would take the whale head-and-head,—that is, pull straight up +to his forehead,—a not uncommon thing; for when within a certain limit, +such a course excludes the coming onset from the whale’s sidelong +vision. But ere that close limit was gained, and while yet all three +boats were plain as the ship’s three masts to his eye; the White Whale +churning himself into furious speed, almost in an instant as it were, +rushing among the boats with open jaws, and a lashing tail, offered +appalling battle on every side; and heedless of the irons darted at him +from every boat, seemed only intent on annihilating each separate plank +of which those boats were made. But skilfully manœuvred, incessantly +wheeling like trained chargers in the field; the boats for a while +eluded him; though, at times, but by a plank’s breadth; while all the +time, Ahab’s unearthly slogan tore every other cry but his to shreds. + +But at last in his untraceable evolutions, the White Whale so crossed +and recrossed, and in a thousand ways entangled the slack of the three +lines now fast to him, that they foreshortened, and, of themselves, +warped the devoted boats towards the planted irons in him; though now +for a moment the whale drew aside a little, as if to rally for a more +tremendous charge. Seizing that opportunity, Ahab first paid out more +line: and then was rapidly hauling and jerking in upon it again—hoping +that way to disencumber it of some snarls—when lo!—a sight more savage +than the embattled teeth of sharks! + +Caught and twisted—corkscrewed in the mazes of the line, loose harpoons +and lances, with all their bristling barbs and points, came flashing +and dripping up to the chocks in the bows of Ahab’s boat. Only one +thing could be done. Seizing the boat-knife, he critically reached +within—through—and then, without—the rays of steel; dragged in the line +beyond, passed it, inboard, to the bowsman, and then, twice sundering +the rope near the chocks—dropped the intercepted fagot of steel into +the sea; and was all fast again. That instant, the White Whale made a +sudden rush among the remaining tangles of the other lines; by so +doing, irresistibly dragged the more involved boats of Stubb and Flask +towards his flukes; dashed them together like two rolling husks on a +surf-beaten beach, and then, diving down into the sea, disappeared in a +boiling maelstrom, in which, for a space, the odorous cedar chips of +the wrecks danced round and round, like the grated nutmeg in a swiftly +stirred bowl of punch. + +While the two crews were yet circling in the waters, reaching out after +the revolving line-tubs, oars, and other floating furniture, while +aslope little Flask bobbed up and down like an empty vial, twitching +his legs upwards to escape the dreaded jaws of sharks; and Stubb was +lustily singing out for some one to ladle him up; and while the old +man’s line—now parting—admitted of his pulling into the creamy pool to +rescue whom he could;—in that wild simultaneousness of a thousand +concreted perils,—Ahab’s yet unstricken boat seemed drawn up towards +Heaven by invisible wires,—as, arrow-like, shooting perpendicularly +from the sea, the White Whale dashed his broad forehead against its +bottom, and sent it, turning over and over, into the air; till it fell +again—gunwale downwards—and Ahab and his men struggled out from under +it, like seals from a sea-side cave. + +The first uprising momentum of the whale—modifying its direction as he +struck the surface—involuntarily launched him along it, to a little +distance from the centre of the destruction he had made; and with his +back to it, he now lay for a moment slowly feeling with his flukes from +side to side; and whenever a stray oar, bit of plank, the least chip or +crumb of the boats touched his skin, his tail swiftly drew back, and +came sideways smiting the sea. But soon, as if satisfied that his work +for that time was done, he pushed his pleated forehead through the +ocean, and trailing after him the intertangled lines, continued his +leeward way at a traveller’s methodic pace. + +As before, the attentive ship having descried the whole fight, again +came bearing down to the rescue, and dropping a boat, picked up the +floating mariners, tubs, oars, and whatever else could be caught at, +and safely landed them on her decks. Some sprained shoulders, wrists, +and ankles; livid contusions; wrenched harpoons and lances; +inextricable intricacies of rope; shattered oars and planks; all these +were there; but no fatal or even serious ill seemed to have befallen +any one. As with Fedallah the day before, so Ahab was now found grimly +clinging to his boat’s broken half, which afforded a comparatively easy +float; nor did it so exhaust him as the previous day’s mishap. + +But when he was helped to the deck, all eyes were fastened upon him; as +instead of standing by himself he still half-hung upon the shoulder of +Starbuck, who had thus far been the foremost to assist him. His ivory +leg had been snapped off, leaving but one short sharp splinter. + +“Aye, aye, Starbuck, ’tis sweet to lean sometimes, be the leaner who he +will; and would old Ahab had leaned oftener than he has.” + +“The ferrule has not stood, sir,” said the carpenter, now coming up; “I +put good work into that leg.” + +“But no bones broken, sir, I hope,” said Stubb with true concern. + +“Aye! and all splintered to pieces, Stubb!—d’ye see it.—But even with a +broken bone, old Ahab is untouched; and I account no living bone of +mine one jot more me, than this dead one that’s lost. Nor white whale, +nor man, nor fiend, can so much as graze old Ahab in his own proper and +inaccessible being. Can any lead touch yonder floor, any mast scrape +yonder roof?—Aloft there! which way?” + +“Dead to leeward, sir.” + +“Up helm, then; pile on the sail again, ship keepers! down the rest of +the spare boats and rig them—Mr. Starbuck away, and muster the boat’s +crews.” + +“Let me first help thee towards the bulwarks, sir.” + +“Oh, oh, oh! how this splinter gores me now! Accursed fate! that the +unconquerable captain in the soul should have such a craven mate!” + +“Sir?” + +“My body, man, not thee. Give me something for a cane—there, that +shivered lance will do. Muster the men. Surely I have not seen him yet. +By heaven it cannot be!—missing?—quick! call them all.” + +The old man’s hinted thought was true. Upon mustering the company, the +Parsee was not there. + +“The Parsee!” cried Stubb—“he must have been caught in——” + +“The black vomit wrench thee!—run all of ye above, alow, cabin, +forecastle—find him—not gone—not gone!” + +But quickly they returned to him with the tidings that the Parsee was +nowhere to be found. + +“Aye, sir,” said Stubb—“caught among the tangles of your line—I thought +I saw him dragging under.” + +“_My_ line! _my_ line? Gone?—gone? What means that little word?—What +death-knell rings in it, that old Ahab shakes as if he were the belfry. +The harpoon, too!—toss over the litter there,—d’ye see it?—the forged +iron, men, the white whale’s—no, no, no,—blistered fool! this hand did +dart it!—’tis in the fish!—Aloft there! Keep him nailed—Quick!—all +hands to the rigging of the boats—collect the oars—harpooneers! the +irons, the irons!—hoist the royals higher—a pull on all the +sheets!—helm there! steady, steady for your life! I’ll ten times girdle +the unmeasured globe; yea and dive straight through it, but I’ll slay +him yet!” + +“Great God! but for one single instant show thyself,” cried Starbuck; +“never, never wilt thou capture him, old man—In Jesus’ name no more of +this, that’s worse than devil’s madness. Two days chased; twice stove +to splinters; thy very leg once more snatched from under thee; thy evil +shadow gone—all good angels mobbing thee with warnings:—what more +wouldst thou have?—Shall we keep chasing this murderous fish till he +swamps the last man? Shall we be dragged by him to the bottom of the +sea? Shall we be towed by him to the infernal world? Oh, oh,—Impiety +and blasphemy to hunt him more!” + +“Starbuck, of late I’ve felt strangely moved to thee; ever since that +hour we both saw—thou know’st what, in one another’s eyes. But in this +matter of the whale, be the front of thy face to me as the palm of this +hand—a lipless, unfeatured blank. Ahab is for ever Ahab, man. This +whole act’s immutably decreed. ’Twas rehearsed by thee and me a billion +years before this ocean rolled. Fool! I am the Fates’ lieutenant; I act +under orders. Look thou, underling! that thou obeyest mine.—Stand round +me, men. Ye see an old man cut down to the stump; leaning on a shivered +lance; propped up on a lonely foot. ’Tis Ahab—his body’s part; but +Ahab’s soul’s a centipede, that moves upon a hundred legs. I feel +strained, half stranded, as ropes that tow dismasted frigates in a +gale; and I may look so. But ere I break, ye’ll hear me crack; and till +ye hear _that_, know that Ahab’s hawser tows his purpose yet. Believe +ye, men, in the things called omens? Then laugh aloud, and cry encore! +For ere they drown, drowning things will twice rise to the surface; +then rise again, to sink for evermore. So with Moby Dick—two days he’s +floated—tomorrow will be the third. Aye, men, he’ll rise once more,—but +only to spout his last! D’ye feel brave men, brave?” + +“As fearless fire,” cried Stubb. + +“And as mechanical,” muttered Ahab. Then as the men went forward, he +muttered on: “The things called omens! And yesterday I talked the same +to Starbuck there, concerning my broken boat. Oh! how valiantly I seek +to drive out of others’ hearts what’s clinched so fast in mine!—The +Parsee—the Parsee!—gone, gone? and he was to go before:—but still was +to be seen again ere I could perish—How’s that?—There’s a riddle now +might baffle all the lawyers backed by the ghosts of the whole line of +judges:—like a hawk’s beak it pecks my brain. _I’ll_, _I’ll_ solve it, +though!” + +When dusk descended, the whale was still in sight to leeward. + +So once more the sail was shortened, and everything passed nearly as on +the previous night; only, the sound of hammers, and the hum of the +grindstone was heard till nearly daylight, as the men toiled by +lanterns in the complete and careful rigging of the spare boats and +sharpening their fresh weapons for the morrow. Meantime, of the broken +keel of Ahab’s wrecked craft the carpenter made him another leg; while +still as on the night before, slouched Ahab stood fixed within his +scuttle; his hid, heliotrope glance anticipatingly gone backward on its +dial; sat due eastward for the earliest sun. + + +CHAPTER 135. The Chase.—Third Day. + +The morning of the third day dawned fair and fresh, and once more the +solitary night-man at the fore-mast-head was relieved by crowds of the +daylight look-outs, who dotted every mast and almost every spar. + +“D’ye see him?” cried Ahab; but the whale was not yet in sight. + +“In his infallible wake, though; but follow that wake, that’s all. Helm +there; steady, as thou goest, and hast been going. What a lovely day +again! were it a new-made world, and made for a summer-house to the +angels, and this morning the first of its throwing open to them, a +fairer day could not dawn upon that world. Here’s food for thought, had +Ahab time to think; but Ahab never thinks; he only feels, feels, feels; +_that’s_ tingling enough for mortal man! to think’s audacity. God only +has that right and privilege. Thinking is, or ought to be, a coolness +and a calmness; and our poor hearts throb, and our poor brains beat too +much for that. And yet, I’ve sometimes thought my brain was very +calm—frozen calm, this old skull cracks so, like a glass in which the +contents turned to ice, and shiver it. And still this hair is growing +now; this moment growing, and heat must breed it; but no, it’s like +that sort of common grass that will grow anywhere, between the earthy +clefts of Greenland ice or in Vesuvius lava. How the wild winds blow +it; they whip it about me as the torn shreds of split sails lash the +tossed ship they cling to. A vile wind that has no doubt blown ere this +through prison corridors and cells, and wards of hospitals, and +ventilated them, and now comes blowing hither as innocent as fleeces. +Out upon it!—it’s tainted. Were I the wind, I’d blow no more on such a +wicked, miserable world. I’d crawl somewhere to a cave, and slink +there. And yet, ’tis a noble and heroic thing, the wind! who ever +conquered it? In every fight it has the last and bitterest blow. Run +tilting at it, and you but run through it. Ha! a coward wind that +strikes stark naked men, but will not stand to receive a single blow. +Even Ahab is a braver thing—a nobler thing than _that_. Would now the +wind but had a body; but all the things that most exasperate and +outrage mortal man, all these things are bodiless, but only bodiless as +objects, not as agents. There’s a most special, a most cunning, oh, a +most malicious difference! And yet, I say again, and swear it now, that +there’s something all glorious and gracious in the wind. These warm +Trade Winds, at least, that in the clear heavens blow straight on, in +strong and steadfast, vigorous mildness; and veer not from their mark, +however the baser currents of the sea may turn and tack, and mightiest +Mississippies of the land swift and swerve about, uncertain where to go +at last. And by the eternal Poles! these same Trades that so directly +blow my good ship on; these Trades, or something like them—something so +unchangeable, and full as strong, blow my keeled soul along! To it! +Aloft there! What d’ye see?” + +“Nothing, sir.” + +“Nothing! and noon at hand! The doubloon goes a-begging! See the sun! +Aye, aye, it must be so. I’ve oversailed him. How, got the start? Aye, +he’s chasing _me_ now; not I, _him_—that’s bad; I might have known it, +too. Fool! the lines—the harpoons he’s towing. Aye, aye, I have run him +by last night. About! about! Come down, all of ye, but the regular look +outs! Man the braces!” + +Steering as she had done, the wind had been somewhat on the Pequod’s +quarter, so that now being pointed in the reverse direction, the braced +ship sailed hard upon the breeze as she rechurned the cream in her own +white wake. + +“Against the wind he now steers for the open jaw,” murmured Starbuck to +himself, as he coiled the new-hauled main-brace upon the rail. “God +keep us, but already my bones feel damp within me, and from the inside +wet my flesh. I misdoubt me that I disobey my God in obeying him!” + +“Stand by to sway me up!” cried Ahab, advancing to the hempen basket. +“We should meet him soon.” + +“Aye, aye, sir,” and straightway Starbuck did Ahab’s bidding, and once +more Ahab swung on high. + +A whole hour now passed; gold-beaten out to ages. Time itself now held +long breaths with keen suspense. But at last, some three points off the +weather bow, Ahab descried the spout again, and instantly from the +three mast-heads three shrieks went up as if the tongues of fire had +voiced it. + +“Forehead to forehead I meet thee, this third time, Moby Dick! On deck +there!—brace sharper up; crowd her into the wind’s eye. He’s too far +off to lower yet, Mr. Starbuck. The sails shake! Stand over that +helmsman with a top-maul! So, so; he travels fast, and I must down. But +let me have one more good round look aloft here at the sea; there’s +time for that. An old, old sight, and yet somehow so young; aye, and +not changed a wink since I first saw it, a boy, from the sand-hills of +Nantucket! The same!—the same!—the same to Noah as to me. There’s a +soft shower to leeward. Such lovely leewardings! They must lead +somewhere—to something else than common land, more palmy than the +palms. Leeward! the white whale goes that way; look to windward, then; +the better if the bitterer quarter. But good bye, good bye, old +mast-head! What’s this?—green? aye, tiny mosses in these warped cracks. +No such green weather stains on Ahab’s head! There’s the difference now +between man’s old age and matter’s. But aye, old mast, we both grow old +together; sound in our hulls, though, are we not, my ship? Aye, minus a +leg, that’s all. By heaven this dead wood has the better of my live +flesh every way. I can’t compare with it; and I’ve known some ships +made of dead trees outlast the lives of men made of the most vital +stuff of vital fathers. What’s that he said? he should still go before +me, my pilot; and yet to be seen again? But where? Will I have eyes at +the bottom of the sea, supposing I descend those endless stairs? and +all night I’ve been sailing from him, wherever he did sink to. Aye, +aye, like many more thou told’st direful truth as touching thyself, O +Parsee; but, Ahab, there thy shot fell short. Good-bye, mast-head—keep +a good eye upon the whale, the while I’m gone. We’ll talk to-morrow, +nay, to-night, when the white whale lies down there, tied by head and +tail.” + +He gave the word; and still gazing round him, was steadily lowered +through the cloven blue air to the deck. + +In due time the boats were lowered; but as standing in his shallop’s +stern, Ahab just hovered upon the point of the descent, he waved to the +mate,—who held one of the tackle-ropes on deck—and bade him pause. + +“Starbuck!” + +“Sir?” + +“For the third time my soul’s ship starts upon this voyage, Starbuck.” + +“Aye, sir, thou wilt have it so.” + +“Some ships sail from their ports, and ever afterwards are missing, +Starbuck!” + +“Truth, sir: saddest truth.” + +“Some men die at ebb tide; some at low water; some at the full of the +flood;—and I feel now like a billow that’s all one crested comb, +Starbuck. I am old;—shake hands with me, man.” + +Their hands met; their eyes fastened; Starbuck’s tears the glue. + +“Oh, my captain, my captain!—noble heart—go not—go not!—see, it’s a +brave man that weeps; how great the agony of the persuasion then!” + +“Lower away!”—cried Ahab, tossing the mate’s arm from him. “Stand by +the crew!” + +In an instant the boat was pulling round close under the stern. + +“The sharks! the sharks!” cried a voice from the low cabin-window +there; “O master, my master, come back!” + +But Ahab heard nothing; for his own voice was high-lifted then; and the +boat leaped on. + +Yet the voice spake true; for scarce had he pushed from the ship, when +numbers of sharks, seemingly rising from out the dark waters beneath +the hull, maliciously snapped at the blades of the oars, every time +they dipped in the water; and in this way accompanied the boat with +their bites. It is a thing not uncommonly happening to the whale-boats +in those swarming seas; the sharks at times apparently following them +in the same prescient way that vultures hover over the banners of +marching regiments in the east. But these were the first sharks that +had been observed by the Pequod since the White Whale had been first +descried; and whether it was that Ahab’s crew were all such +tiger-yellow barbarians, and therefore their flesh more musky to the +senses of the sharks—a matter sometimes well known to affect +them,—however it was, they seemed to follow that one boat without +molesting the others. + +“Heart of wrought steel!” murmured Starbuck gazing over the side, and +following with his eyes the receding boat—“canst thou yet ring boldly +to that sight?—lowering thy keel among ravening sharks, and followed by +them, open-mouthed to the chase; and this the critical third day?—For +when three days flow together in one continuous intense pursuit; be +sure the first is the morning, the second the noon, and the third the +evening and the end of that thing—be that end what it may. Oh! my God! +what is this that shoots through me, and leaves me so deadly calm, yet +expectant,—fixed at the top of a shudder! Future things swim before me, +as in empty outlines and skeletons; all the past is somehow grown dim. +Mary, girl! thou fadest in pale glories behind me; boy! I seem to see +but thy eyes grown wondrous blue. Strangest problems of life seem +clearing; but clouds sweep between—Is my journey’s end coming? My legs +feel faint; like his who has footed it all day. Feel thy heart,—beats +it yet? Stir thyself, Starbuck!—stave it off—move, move! speak +aloud!—Mast-head there! See ye my boy’s hand on the hill?—Crazed;—aloft +there!—keep thy keenest eye upon the boats:—mark well the whale!—Ho! +again!—drive off that hawk! see! he pecks—he tears the vane”—pointing +to the red flag flying at the main-truck—“Ha! he soars away with +it!—Where’s the old man now? see’st thou that sight, oh Ahab!—shudder, +shudder!” + +The boats had not gone very far, when by a signal from the mast-heads—a +downward pointed arm, Ahab knew that the whale had sounded; but +intending to be near him at the next rising, he held on his way a +little sideways from the vessel; the becharmed crew maintaining the +profoundest silence, as the head-beat waves hammered and hammered +against the opposing bow. + +“Drive, drive in your nails, oh ye waves! to their uttermost heads +drive them in! ye but strike a thing without a lid; and no coffin and +no hearse can be mine:—and hemp only can kill me! Ha! ha!” + +Suddenly the waters around them slowly swelled in broad circles; then +quickly upheaved, as if sideways sliding from a submerged berg of ice, +swiftly rising to the surface. A low rumbling sound was heard; a +subterraneous hum; and then all held their breaths; as bedraggled with +trailing ropes, and harpoons, and lances, a vast form shot lengthwise, +but obliquely from the sea. Shrouded in a thin drooping veil of mist, +it hovered for a moment in the rainbowed air; and then fell swamping +back into the deep. Crushed thirty feet upwards, the waters flashed for +an instant like heaps of fountains, then brokenly sank in a shower of +flakes, leaving the circling surface creamed like new milk round the +marble trunk of the whale. + +“Give way!” cried Ahab to the oarsmen, and the boats darted forward to +the attack; but maddened by yesterday’s fresh irons that corroded in +him, Moby Dick seemed combinedly possessed by all the angels that fell +from heaven. The wide tiers of welded tendons overspreading his broad +white forehead, beneath the transparent skin, looked knitted together; +as head on, he came churning his tail among the boats; and once more +flailed them apart; spilling out the irons and lances from the two +mates’ boats, and dashing in one side of the upper part of their bows, +but leaving Ahab’s almost without a scar. + +While Daggoo and Queequeg were stopping the strained planks; and as the +whale swimming out from them, turned, and showed one entire flank as he +shot by them again; at that moment a quick cry went up. Lashed round +and round to the fish’s back; pinioned in the turns upon turns in +which, during the past night, the whale had reeled the involutions of +the lines around him, the half torn body of the Parsee was seen; his +sable raiment frayed to shreds; his distended eyes turned full upon old +Ahab. + +The harpoon dropped from his hand. + +“Befooled, befooled!”—drawing in a long lean breath—“Aye, Parsee! I see +thee again.—Aye, and thou goest before; and this, _this_ then is the +hearse that thou didst promise. But I hold thee to the last letter of +thy word. Where is the second hearse? Away, mates, to the ship! those +boats are useless now; repair them if ye can in time, and return to me; +if not, Ahab is enough to die—Down, men! the first thing that but +offers to jump from this boat I stand in, that thing I harpoon. Ye are +not other men, but my arms and my legs; and so obey me.—Where’s the +whale? gone down again?” + +But he looked too nigh the boat; for as if bent upon escaping with the +corpse he bore, and as if the particular place of the last encounter +had been but a stage in his leeward voyage, Moby Dick was now again +steadily swimming forward; and had almost passed the ship,—which thus +far had been sailing in the contrary direction to him, though for the +present her headway had been stopped. He seemed swimming with his +utmost velocity, and now only intent upon pursuing his own straight +path in the sea. + +“Oh! Ahab,” cried Starbuck, “not too late is it, even now, the third +day, to desist. See! Moby Dick seeks thee not. It is thou, thou, that +madly seekest him!” + +Setting sail to the rising wind, the lonely boat was swiftly impelled +to leeward, by both oars and canvas. And at last when Ahab was sliding +by the vessel, so near as plainly to distinguish Starbuck’s face as he +leaned over the rail, he hailed him to turn the vessel about, and +follow him, not too swiftly, at a judicious interval. Glancing upwards, +he saw Tashtego, Queequeg, and Daggoo, eagerly mounting to the three +mast-heads; while the oarsmen were rocking in the two staved boats +which had but just been hoisted to the side, and were busily at work in +repairing them. One after the other, through the port-holes, as he +sped, he also caught flying glimpses of Stubb and Flask, busying +themselves on deck among bundles of new irons and lances. As he saw all +this; as he heard the hammers in the broken boats; far other hammers +seemed driving a nail into his heart. But he rallied. And now marking +that the vane or flag was gone from the main-mast-head, he shouted to +Tashtego, who had just gained that perch, to descend again for another +flag, and a hammer and nails, and so nail it to the mast. + +Whether fagged by the three days’ running chase, and the resistance to +his swimming in the knotted hamper he bore; or whether it was some +latent deceitfulness and malice in him: whichever was true, the White +Whale’s way now began to abate, as it seemed, from the boat so rapidly +nearing him once more; though indeed the whale’s last start had not +been so long a one as before. And still as Ahab glided over the waves +the unpitying sharks accompanied him; and so pertinaciously stuck to +the boat; and so continually bit at the plying oars, that the blades +became jagged and crunched, and left small splinters in the sea, at +almost every dip. + +“Heed them not! those teeth but give new rowlocks to your oars. Pull +on! ’tis the better rest, the shark’s jaw than the yielding water.” + +“But at every bite, sir, the thin blades grow smaller and smaller!” + +“They will last long enough! pull on!—But who can tell”—he +muttered—“whether these sharks swim to feast on the whale or on +Ahab?—But pull on! Aye, all alive, now—we near him. The helm! take the +helm! let me pass,”—and so saying two of the oarsmen helped him forward +to the bows of the still flying boat. + +At length as the craft was cast to one side, and ran ranging along with +the White Whale’s flank, he seemed strangely oblivious of its +advance—as the whale sometimes will—and Ahab was fairly within the +smoky mountain mist, which, thrown off from the whale’s spout, curled +round his great, Monadnock hump; he was even thus close to him; when, +with body arched back, and both arms lengthwise high-lifted to the +poise, he darted his fierce iron, and his far fiercer curse into the +hated whale. As both steel and curse sank to the socket, as if sucked +into a morass, Moby Dick sideways writhed; spasmodically rolled his +nigh flank against the bow, and, without staving a hole in it, so +suddenly canted the boat over, that had it not been for the elevated +part of the gunwale to which he then clung, Ahab would once more have +been tossed into the sea. As it was, three of the oarsmen—who foreknew +not the precise instant of the dart, and were therefore unprepared for +its effects—these were flung out; but so fell, that, in an instant two +of them clutched the gunwale again, and rising to its level on a +combing wave, hurled themselves bodily inboard again; the third man +helplessly dropping astern, but still afloat and swimming. + +Almost simultaneously, with a mighty volition of ungraduated, +instantaneous swiftness, the White Whale darted through the weltering +sea. But when Ahab cried out to the steersman to take new turns with +the line, and hold it so; and commanded the crew to turn round on their +seats, and tow the boat up to the mark; the moment the treacherous line +felt that double strain and tug, it snapped in the empty air! + +“What breaks in me? Some sinew cracks!—’tis whole again; oars! oars! +Burst in upon him!” + +Hearing the tremendous rush of the sea-crashing boat, the whale wheeled +round to present his blank forehead at bay; but in that evolution, +catching sight of the nearing black hull of the ship; seemingly seeing +in it the source of all his persecutions; bethinking it—it may be—a +larger and nobler foe; of a sudden, he bore down upon its advancing +prow, smiting his jaws amid fiery showers of foam. + +Ahab staggered; his hand smote his forehead. “I grow blind; hands! +stretch out before me that I may yet grope my way. Is’t night?” + +“The whale! The ship!” cried the cringing oarsmen. + +“Oars! oars! Slope downwards to thy depths, O sea, that ere it be for +ever too late, Ahab may slide this last, last time upon his mark! I +see: the ship! the ship! Dash on, my men! Will ye not save my ship?” + +But as the oarsmen violently forced their boat through the +sledge-hammering seas, the before whale-smitten bow-ends of two planks +burst through, and in an instant almost, the temporarily disabled boat +lay nearly level with the waves; its half-wading, splashing crew, +trying hard to stop the gap and bale out the pouring water. + +Meantime, for that one beholding instant, Tashtego’s mast-head hammer +remained suspended in his hand; and the red flag, half-wrapping him as +with a plaid, then streamed itself straight out from him, as his own +forward-flowing heart; while Starbuck and Stubb, standing upon the +bowsprit beneath, caught sight of the down-coming monster just as soon +as he. + +“The whale, the whale! Up helm, up helm! Oh, all ye sweet powers of +air, now hug me close! Let not Starbuck die, if die he must, in a +woman’s fainting fit. Up helm, I say—ye fools, the jaw! the jaw! Is +this the end of all my bursting prayers? all my life-long fidelities? +Oh, Ahab, Ahab, lo, thy work. Steady! helmsman, steady. Nay, nay! Up +helm again! He turns to meet us! Oh, his unappeasable brow drives on +towards one, whose duty tells him he cannot depart. My God, stand by me +now!” + +“Stand not by me, but stand under me, whoever you are that will now +help Stubb; for Stubb, too, sticks here. I grin at thee, thou grinning +whale! Who ever helped Stubb, or kept Stubb awake, but Stubb’s own +unwinking eye? And now poor Stubb goes to bed upon a mattrass that is +all too soft; would it were stuffed with brushwood! I grin at thee, +thou grinning whale! Look ye, sun, moon, and stars! I call ye assassins +of as good a fellow as ever spouted up his ghost. For all that, I would +yet ring glasses with ye, would ye but hand the cup! Oh, oh! oh, oh! +thou grinning whale, but there’ll be plenty of gulping soon! Why fly ye +not, O Ahab! For me, off shoes and jacket to it; let Stubb die in his +drawers! A most mouldy and over salted death, though;—cherries! +cherries! cherries! Oh, Flask, for one red cherry ere we die!” + +“Cherries? I only wish that we were where they grow. Oh, Stubb, I hope +my poor mother’s drawn my part-pay ere this; if not, few coppers will +now come to her, for the voyage is up.” + +From the ship’s bows, nearly all the seamen now hung inactive; hammers, +bits of plank, lances, and harpoons, mechanically retained in their +hands, just as they had darted from their various employments; all +their enchanted eyes intent upon the whale, which from side to side +strangely vibrating his predestinating head, sent a broad band of +overspreading semicircular foam before him as he rushed. Retribution, +swift vengeance, eternal malice were in his whole aspect, and spite of +all that mortal man could do, the solid white buttress of his forehead +smote the ship’s starboard bow, till men and timbers reeled. Some fell +flat upon their faces. Like dislodged trucks, the heads of the +harpooneers aloft shook on their bull-like necks. Through the breach, +they heard the waters pour, as mountain torrents down a flume. + +“The ship! The hearse!—the second hearse!” cried Ahab from the boat; +“its wood could only be American!” + +Diving beneath the settling ship, the whale ran quivering along its +keel; but turning under water, swiftly shot to the surface again, far +off the other bow, but within a few yards of Ahab’s boat, where, for a +time, he lay quiescent. + +“I turn my body from the sun. What ho, Tashtego! let me hear thy +hammer. Oh! ye three unsurrendered spires of mine; thou uncracked keel; +and only god-bullied hull; thou firm deck, and haughty helm, and +Pole-pointed prow,—death-glorious ship! must ye then perish, and +without me? Am I cut off from the last fond pride of meanest +shipwrecked captains? Oh, lonely death on lonely life! Oh, now I feel +my topmost greatness lies in my topmost grief. Ho, ho! from all your +furthest bounds, pour ye now in, ye bold billows of my whole foregone +life, and top this one piled comber of my death! Towards thee I roll, +thou all-destroying but unconquering whale; to the last I grapple with +thee; from hell’s heart I stab at thee; for hate’s sake I spit my last +breath at thee. Sink all coffins and all hearses to one common pool! +and since neither can be mine, let me then tow to pieces, while still +chasing thee, though tied to thee, thou damned whale! _Thus_, I give up +the spear!” + +The harpoon was darted; the stricken whale flew forward; with igniting +velocity the line ran through the grooves;—ran foul. Ahab stooped to +clear it; he did clear it; but the flying turn caught him round the +neck, and voicelessly as Turkish mutes bowstring their victim, he was +shot out of the boat, ere the crew knew he was gone. Next instant, the +heavy eye-splice in the rope’s final end flew out of the stark-empty +tub, knocked down an oarsman, and smiting the sea, disappeared in its +depths. + +For an instant, the tranced boat’s crew stood still; then turned. “The +ship? Great God, where is the ship?” Soon they through dim, bewildering +mediums saw her sidelong fading phantom, as in the gaseous Fata +Morgana; only the uppermost masts out of water; while fixed by +infatuation, or fidelity, or fate, to their once lofty perches, the +pagan harpooneers still maintained their sinking lookouts on the sea. +And now, concentric circles seized the lone boat itself, and all its +crew, and each floating oar, and every lance-pole, and spinning, +animate and inanimate, all round and round in one vortex, carried the +smallest chip of the Pequod out of sight. + +But as the last whelmings intermixingly poured themselves over the +sunken head of the Indian at the mainmast, leaving a few inches of the +erect spar yet visible, together with long streaming yards of the flag, +which calmly undulated, with ironical coincidings, over the destroying +billows they almost touched;—at that instant, a red arm and a hammer +hovered backwardly uplifted in the open air, in the act of nailing the +flag faster and yet faster to the subsiding spar. A sky-hawk that +tauntingly had followed the main-truck downwards from its natural home +among the stars, pecking at the flag, and incommoding Tashtego there; +this bird now chanced to intercept its broad fluttering wing between +the hammer and the wood; and simultaneously feeling that etherial +thrill, the submerged savage beneath, in his death-gasp, kept his +hammer frozen there; and so the bird of heaven, with archangelic +shrieks, and his imperial beak thrust upwards, and his whole captive +form folded in the flag of Ahab, went down with his ship, which, like +Satan, would not sink to hell till she had dragged a living part of +heaven along with her, and helmeted herself with it. + +Now small fowls flew screaming over the yet yawning gulf; a sullen +white surf beat against its steep sides; then all collapsed, and the +great shroud of the sea rolled on as it rolled five thousand years ago. + + +Epilogue + +“AND I ONLY AM ESCAPED ALONE TO TELL THEE” Job. + +The drama’s done. Why then here does any one step forth?—Because one +did survive the wreck. + +It so chanced, that after the Parsee’s disappearance, I was he whom the +Fates ordained to take the place of Ahab’s bowsman, when that bowsman +assumed the vacant post; the same, who, when on the last day the three +men were tossed from out of the rocking boat, was dropped astern. So, +floating on the margin of the ensuing scene, and in full sight of it, +when the halfspent suction of the sunk ship reached me, I was then, but +slowly, drawn towards the closing vortex. When I reached it, it had +subsided to a creamy pool. Round and round, then, and ever contracting +towards the button-like black bubble at the axis of that slowly +wheeling circle, like another Ixion I did revolve. Till, gaining that +vital centre, the black bubble upward burst; and now, liberated by +reason of its cunning spring, and, owing to its great buoyancy, rising +with great force, the coffin life-buoy shot lengthwise from the sea, +fell over, and floated by my side. Buoyed up by that coffin, for almost +one whole day and night, I floated on a soft and dirgelike main. The +unharming sharks, they glided by as if with padlocks on their mouths; +the savage sea-hawks sailed with sheathed beaks. On the second day, a +sail drew near, nearer, and picked me up at last. It was the +devious-cruising Rachel, that in her retracing search after her missing +children, only found another orphan. + + + + +*** END OF THE PROJECT GUTENBERG EBOOK MOBY DICK; OR, THE WHALE *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + diff --git a/text/5.txt b/text/5.txt new file mode 100644 index 0000000..a5d2c8f --- /dev/null +++ b/text/5.txt @@ -0,0 +1,12724 @@ +The Project Gutenberg eBook of Wuthering Heights + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: Wuthering Heights + +Author: Emily Brontë + +Release date: December 1, 1996 [eBook #768] + Most recently updated: February 22, 2026 + +Language: English + +Credits: David Price + + +*** START OF THE PROJECT GUTENBERG EBOOK WUTHERING HEIGHTS *** + + + + +Wuthering Heights + +by Emily Brontë + + + + +CHAPTER I + + +1801—I have just returned from a visit to my landlord—the solitary +neighbour that I shall be troubled with. This is certainly a beautiful +country! In all England, I do not believe that I could have fixed on a +situation so completely removed from the stir of society. A perfect +misanthropist’s Heaven—and Mr. Heathcliff and I are such a suitable +pair to divide the desolation between us. A capital fellow! He little +imagined how my heart warmed towards him when I beheld his black eyes +withdraw so suspiciously under their brows, as I rode up, and when his +fingers sheltered themselves, with a jealous resolution, still further +in his waistcoat, as I announced my name. + +“Mr. Heathcliff?” I said. + +A nod was the answer. + +“Mr. Lockwood, your new tenant, sir. I do myself the honour of calling +as soon as possible after my arrival, to express the hope that I have +not inconvenienced you by my perseverance in soliciting the occupation +of Thrushcross Grange: I heard yesterday you had had some thoughts—” + +“Thrushcross Grange is my own, sir,” he interrupted, wincing. “I should +not allow any one to inconvenience me, if I could hinder it—walk in!” + +The “walk in” was uttered with closed teeth, and expressed the +sentiment, “Go to the Deuce!” even the gate over which he leant +manifested no sympathising movement to the words; and I think that +circumstance determined me to accept the invitation: I felt interested +in a man who seemed more exaggeratedly reserved than myself. + +When he saw my horse’s breast fairly pushing the barrier, he did put +out his hand to unchain it, and then sullenly preceded me up the +causeway, calling, as we entered the court,—“Joseph, take Mr. +Lockwood’s horse; and bring up some wine.” + +“Here we have the whole establishment of domestics, I suppose,” was the +reflection suggested by this compound order. “No wonder the grass grows +up between the flags, and cattle are the only hedge-cutters.” + +Joseph was an elderly, nay, an old man, very old, perhaps, though hale +and sinewy. “The Lord help us!” he soliloquised in an undertone of +peevish displeasure, while relieving me of my horse: looking, meantime, +in my face so sourly that I charitably conjectured he must have need of +divine aid to digest his dinner, and his pious ejaculation had no +reference to my unexpected advent. + +Wuthering Heights is the name of Mr. Heathcliff’s dwelling. “Wuthering” +being a significant provincial adjective, descriptive of the +atmospheric tumult to which its station is exposed in stormy weather. +Pure, bracing ventilation they must have up there at all times, indeed: +one may guess the power of the north wind, blowing over the edge, by +the excessive slant of a few stunted firs at the end of the house; and +by a range of gaunt thorns all stretching their limbs one way, as if +craving alms of the sun. Happily, the architect had foresight to build +it strong: the narrow windows are deeply set in the wall, and the +corners defended with large jutting stones. + +Before passing the threshold, I paused to admire a quantity of +grotesque carving lavished over the front, and especially about the +principal door; above which, among a wilderness of crumbling griffins +and shameless little boys, I detected the date “1500,” and the name +“Hareton Earnshaw.” I would have made a few comments, and requested a +short history of the place from the surly owner; but his attitude at +the door appeared to demand my speedy entrance, or complete departure, +and I had no desire to aggravate his impatience previous to inspecting +the penetralium. + +One step brought us into the family sitting-room, without any +introductory lobby or passage: they call it here “the house” +pre-eminently. It includes kitchen and parlour, generally; but I +believe at Wuthering Heights the kitchen is forced to retreat +altogether into another quarter: at least I distinguished a chatter of +tongues, and a clatter of culinary utensils, deep within; and I +observed no signs of roasting, boiling, or baking, about the huge +fireplace; nor any glitter of copper saucepans and tin cullenders on +the walls. One end, indeed, reflected splendidly both light and heat +from ranks of immense pewter dishes, interspersed with silver jugs and +tankards, towering row after row, on a vast oak dresser, to the very +roof. The latter had never been under-drawn: its entire anatomy lay +bare to an inquiring eye, except where a frame of wood laden with +oatcakes and clusters of legs of beef, mutton, and ham, concealed it. +Above the chimney were sundry villainous old guns, and a couple of +horse-pistols: and, by way of ornament, three gaudily painted canisters +disposed along its ledge. The floor was of smooth, white stone; the +chairs, high-backed, primitive structures, painted green: one or two +heavy black ones lurking in the shade. In an arch under the dresser +reposed a huge, liver-coloured bitch pointer, surrounded by a swarm of +squealing puppies; and other dogs haunted other recesses. + +The apartment and furniture would have been nothing extraordinary as +belonging to a homely, northern farmer, with a stubborn countenance, +and stalwart limbs set out to advantage in knee-breeches and gaiters. +Such an individual seated in his arm-chair, his mug of ale frothing on +the round table before him, is to be seen in any circuit of five or six +miles among these hills, if you go at the right time after dinner. But +Mr. Heathcliff forms a singular contrast to his abode and style of +living. He is a dark-skinned gipsy in aspect, in dress and manners a +gentleman: that is, as much a gentleman as many a country squire: +rather slovenly, perhaps, yet not looking amiss with his negligence, +because he has an erect and handsome figure; and rather morose. +Possibly, some people might suspect him of a degree of under-bred +pride; I have a sympathetic chord within that tells me it is nothing of +the sort: I know, by instinct, his reserve springs from an aversion to +showy displays of feeling—to manifestations of mutual kindliness. He’ll +love and hate equally under cover, and esteem it a species of +impertinence to be loved or hated again. No, I’m running on too fast: I +bestow my own attributes over-liberally on him. Mr. Heathcliff may have +entirely dissimilar reasons for keeping his hand out of the way when he +meets a would-be acquaintance, to those which actuate me. Let me hope +my constitution is almost peculiar: my dear mother used to say I should +never have a comfortable home; and only last summer I proved myself +perfectly unworthy of one. + +While enjoying a month of fine weather at the sea-coast, I was thrown +into the company of a most fascinating creature: a real goddess in my +eyes, as long as she took no notice of me. I “never told my love” +vocally; still, if looks have language, the merest idiot might have +guessed I was over head and ears: she understood me at last, and looked +a return—the sweetest of all imaginable looks. And what did I do? I +confess it with shame—shrunk icily into myself, like a snail; at every +glance retired colder and farther; till finally the poor innocent was +led to doubt her own senses, and, overwhelmed with confusion at her +supposed mistake, persuaded her mamma to decamp. + +By this curious turn of disposition I have gained the reputation of +deliberate heartlessness; how undeserved, I alone can appreciate. + +I took a seat at the end of the hearthstone opposite that towards which +my landlord advanced, and filled up an interval of silence by +attempting to caress the canine mother, who had left her nursery, and +was sneaking wolfishly to the back of my legs, her lip curled up, and +her white teeth watering for a snatch. My caress provoked a long, +guttural gnarl. + +“You’d better let the dog alone,” growled Mr. Heathcliff in unison, +checking fiercer demonstrations with a punch of his foot. “She’s not +accustomed to be spoiled—not kept for a pet.” Then, striding to a side +door, he shouted again, “Joseph!” + +Joseph mumbled indistinctly in the depths of the cellar, but gave no +intimation of ascending; so his master dived down to him, leaving me +_vis-à-vis_ the ruffianly bitch and a pair of grim shaggy sheep-dogs, +who shared with her a jealous guardianship over all my movements. Not +anxious to come in contact with their fangs, I sat still; but, +imagining they would scarcely understand tacit insults, I unfortunately +indulged in winking and making faces at the trio, and some turn of my +physiognomy so irritated madam, that she suddenly broke into a fury and +leapt on my knees. I flung her back, and hastened to interpose the +table between us. This proceeding aroused the whole hive: half-a-dozen +four-footed fiends, of various sizes and ages, issued from hidden dens +to the common centre. I felt my heels and coat-laps peculiar subjects +of assault; and parrying off the larger combatants as effectually as I +could with the poker, I was constrained to demand, aloud, assistance +from some of the household in re-establishing peace. + +Mr. Heathcliff and his man climbed the cellar steps with vexatious +phlegm: I don’t think they moved one second faster than usual, though +the hearth was an absolute tempest of worrying and yelping. Happily, an +inhabitant of the kitchen made more dispatch; a lusty dame, with +tucked-up gown, bare arms, and fire-flushed cheeks, rushed into the +midst of us flourishing a frying-pan: and used that weapon, and her +tongue, to such purpose, that the storm subsided magically, and she +only remained, heaving like a sea after a high wind, when her master +entered on the scene. + +“What the devil is the matter?” he asked, eyeing me in a manner that I +could ill endure after this inhospitable treatment. + +“What the devil, indeed!” I muttered. “The herd of possessed swine +could have had no worse spirits in them than those animals of yours, +sir. You might as well leave a stranger with a brood of tigers!” + +“They won’t meddle with persons who touch nothing,” he remarked, +putting the bottle before me, and restoring the displaced table. “The +dogs do right to be vigilant. Take a glass of wine?” + +“No, thank you.” + +“Not bitten, are you?” + +“If I had been, I would have set my signet on the biter.” Heathcliff’s +countenance relaxed into a grin. + +“Come, come,” he said, “you are flurried, Mr. Lockwood. Here, take a +little wine. Guests are so exceedingly rare in this house that I and my +dogs, I am willing to own, hardly know how to receive them. Your +health, sir?” + +I bowed and returned the pledge; beginning to perceive that it would be +foolish to sit sulking for the misbehaviour of a pack of curs; besides, +I felt loth to yield the fellow further amusement at my expense; since +his humour took that turn. He—probably swayed by prudential +consideration of the folly of offending a good tenant—relaxed a little +in the laconic style of chipping off his pronouns and auxiliary verbs, +and introduced what he supposed would be a subject of interest to me,—a +discourse on the advantages and disadvantages of my present place of +retirement. I found him very intelligent on the topics we touched; and +before I went home, I was encouraged so far as to volunteer another +visit to-morrow. He evidently wished no repetition of my intrusion. I +shall go, notwithstanding. It is astonishing how sociable I feel myself +compared with him. + + + + +CHAPTER II + + +Yesterday afternoon set in misty and cold. I had half a mind to spend +it by my study fire, instead of wading through heath and mud to +Wuthering Heights. On coming up from dinner, however, (N.B.—I dine +between twelve and one o’clock; the housekeeper, a matronly lady, taken +as a fixture along with the house, could not, or would not, comprehend +my request that I might be served at five)—on mounting the stairs with +this lazy intention, and stepping into the room, I saw a servant-girl +on her knees surrounded by brushes and coal-scuttles, and raising an +infernal dust as she extinguished the flames with heaps of cinders. +This spectacle drove me back immediately; I took my hat, and, after a +four-miles’ walk, arrived at Heathcliff’s garden-gate just in time to +escape the first feathery flakes of a snow shower. + +On that bleak hill top the earth was hard with a black frost, and the +air made me shiver through every limb. Being unable to remove the +chain, I jumped over, and, running up the flagged causeway bordered +with straggling gooseberry-bushes, knocked vainly for admittance, till +my knuckles tingled and the dogs howled. + +“Wretched inmates!” I ejaculated, mentally, “you deserve perpetual +isolation from your species for your churlish inhospitality. At least, +I would not keep my doors barred in the day-time. I don’t care—I will +get in!” So resolved, I grasped the latch and shook it vehemently. +Vinegar-faced Joseph projected his head from a round window of the +barn. + +“What are ye for?” he shouted. “T’ maister’s down i’ t’ fowld. Go round +by th’ end o’ t’ laith, if ye went to spake to him.” + +“Is there nobody inside to open the door?” I hallooed, responsively. + +“There’s nobbut t’ missis; and shoo’ll not oppen ’t an ye mak’ yer +flaysome dins till neeght.” + +“Why? Cannot you tell her whom I am, eh, Joseph?” + +“Nor-ne me! I’ll hae no hend wi’t,” muttered the head, vanishing. + +The snow began to drive thickly. I seized the handle to essay another +trial; when a young man without coat, and shouldering a pitchfork, +appeared in the yard behind. He hailed me to follow him, and, after +marching through a wash-house, and a paved area containing a coal-shed, +pump, and pigeon-cot, we at length arrived in the huge, warm, cheerful +apartment where I was formerly received. It glowed delightfully in the +radiance of an immense fire, compounded of coal, peat, and wood; and +near the table, laid for a plentiful evening meal, I was pleased to +observe the “missis,” an individual whose existence I had never +previously suspected. I bowed and waited, thinking she would bid me +take a seat. She looked at me, leaning back in her chair, and remained +motionless and mute. + +“Rough weather!” I remarked. “I’m afraid, Mrs. Heathcliff, the door +must bear the consequence of your servants’ leisure attendance: I had +hard work to make them hear me.” + +She never opened her mouth. I stared—she stared also: at any rate, she +kept her eyes on me in a cool, regardless manner, exceedingly +embarrassing and disagreeable. + +“Sit down,” said the young man, gruffly. “He’ll be in soon.” + +I obeyed; and hemmed, and called the villain Juno, who deigned, at this +second interview, to move the extreme tip of her tail, in token of +owning my acquaintance. + +“A beautiful animal!” I commenced again. “Do you intend parting with +the little ones, madam?” + +“They are not mine,” said the amiable hostess, more repellingly than +Heathcliff himself could have replied. + +“Ah, your favourites are among these?” I continued, turning to an +obscure cushion full of something like cats. + +“A strange choice of favourites!” she observed scornfully. + +Unluckily, it was a heap of dead rabbits. I hemmed once more, and drew +closer to the hearth, repeating my comment on the wildness of the +evening. + +“You should not have come out,” she said, rising and reaching from the +chimney-piece two of the painted canisters. + +Her position before was sheltered from the light; now, I had a distinct +view of her whole figure and countenance. She was slender, and +apparently scarcely past girlhood: an admirable form, and the most +exquisite little face that I have ever had the pleasure of beholding; +small features, very fair; flaxen ringlets, or rather golden, hanging +loose on her delicate neck; and eyes, had they been agreeable in +expression, that would have been irresistible: fortunately for my +susceptible heart, the only sentiment they evinced hovered between +scorn and a kind of desperation, singularly unnatural to be detected +there. The canisters were almost out of her reach; I made a motion to +aid her; she turned upon me as a miser might turn if any one attempted +to assist him in counting his gold. + +“I don’t want your help,” she snapped; “I can get them for myself.” + +“I beg your pardon!” I hastened to reply. + +“Were you asked to tea?” she demanded, tying an apron over her neat +black frock, and standing with a spoonful of the leaf poised over the +pot. + +“I shall be glad to have a cup,” I answered. + +“Were you asked?” she repeated. + +“No,” I said, half smiling. “You are the proper person to ask me.” + +She flung the tea back, spoon and all, and resumed her chair in a pet; +her forehead corrugated, and her red under-lip pushed out, like a +child’s ready to cry. + +Meanwhile, the young man had slung on to his person a decidedly shabby +upper garment, and, erecting himself before the blaze, looked down on +me from the corner of his eyes, for all the world as if there were some +mortal feud unavenged between us. I began to doubt whether he were a +servant or not: his dress and speech were both rude, entirely devoid of +the superiority observable in Mr. and Mrs. Heathcliff; his thick brown +curls were rough and uncultivated, his whiskers encroached bearishly +over his cheeks, and his hands were embrowned like those of a common +labourer: still his bearing was free, almost haughty, and he showed +none of a domestic’s assiduity in attending on the lady of the house. +In the absence of clear proofs of his condition, I deemed it best to +abstain from noticing his curious conduct; and, five minutes +afterwards, the entrance of Heathcliff relieved me, in some measure, +from my uncomfortable state. + +“You see, sir, I am come, according to promise!” I exclaimed, assuming +the cheerful; “and I fear I shall be weather-bound for half an hour, if +you can afford me shelter during that space.” + +“Half an hour?” he said, shaking the white flakes from his clothes; “I +wonder you should select the thick of a snow-storm to ramble about in. +Do you know that you run a risk of being lost in the marshes? People +familiar with these moors often miss their road on such evenings; and I +can tell you there is no chance of a change at present.” + +“Perhaps I can get a guide among your lads, and he might stay at the +Grange till morning—could you spare me one?” + +“No, I could not.” + +“Oh, indeed! Well, then, I must trust to my own sagacity.” + +“Umph!” + +“Are you going to mak’ the tea?” demanded he of the shabby coat, +shifting his ferocious gaze from me to the young lady. + +“Is _he_ to have any?” she asked, appealing to Heathcliff. + +“Get it ready, will you?” was the answer, uttered so savagely that I +started. The tone in which the words were said revealed a genuine bad +nature. I no longer felt inclined to call Heathcliff a capital fellow. +When the preparations were finished, he invited me with—“Now, sir, +bring forward your chair.” And we all, including the rustic youth, drew +round the table: an austere silence prevailing while we discussed our +meal. + +I thought, if I had caused the cloud, it was my duty to make an effort +to dispel it. They could not every day sit so grim and taciturn; and it +was impossible, however ill-tempered they might be, that the universal +scowl they wore was their every-day countenance. + +“It is strange,” I began, in the interval of swallowing one cup of tea +and receiving another—“it is strange how custom can mould our tastes +and ideas: many could not imagine the existence of happiness in a life +of such complete exile from the world as you spend, Mr. Heathcliff; +yet, I’ll venture to say, that, surrounded by your family, and with +your amiable lady as the presiding genius over your home and heart—” + +“My amiable lady!” he interrupted, with an almost diabolical sneer on +his face. “Where is she—my amiable lady?” + +“Mrs. Heathcliff, your wife, I mean.” + +“Well, yes—oh, you would intimate that her spirit has taken the post of +ministering angel, and guards the fortunes of Wuthering Heights, even +when her body is gone. Is that it?” + +Perceiving myself in a blunder, I attempted to correct it. I might have +seen there was too great a disparity between the ages of the parties to +make it likely that they were man and wife. One was about forty: a +period of mental vigour at which men seldom cherish the delusion of +being married for love by girls: that dream is reserved for the solace +of our declining years. The other did not look seventeen. + +Then it flashed upon me—“The clown at my elbow, who is drinking his tea +out of a basin and eating his bread with unwashed hands, may be her +husband: Heathcliff junior, of course. Here is the consequence of being +buried alive: she has thrown herself away upon that boor from sheer +ignorance that better individuals existed! A sad pity—I must beware how +I cause her to regret her choice.” The last reflection may seem +conceited; it was not. My neighbour struck me as bordering on +repulsive; I knew, through experience, that I was tolerably attractive. + +“Mrs. Heathcliff is my daughter-in-law,” said Heathcliff, corroborating +my surmise. He turned, as he spoke, a peculiar look in her direction: a +look of hatred; unless he has a most perverse set of facial muscles +that will not, like those of other people, interpret the language of +his soul. + +“Ah, certainly—I see now: you are the favoured possessor of the +beneficent fairy,” I remarked, turning to my neighbour. + +This was worse than before: the youth grew crimson, and clenched his +fist, with every appearance of a meditated assault. But he seemed to +recollect himself presently, and smothered the storm in a brutal curse, +muttered on my behalf: which, however, I took care not to notice. + +“Unhappy in your conjectures, sir,” observed my host; “we neither of us +have the privilege of owning your good fairy; her mate is dead. I said +she was my daughter-in-law: therefore, she must have married my son.” + +“And this young man is—” + +“Not my son, assuredly.” + +Heathcliff smiled again, as if it were rather too bold a jest to +attribute the paternity of that bear to him. + +“My name is Hareton Earnshaw,” growled the other; “and I’d counsel you +to respect it!” + +“I’ve shown no disrespect,” was my reply, laughing internally at the +dignity with which he announced himself. + +He fixed his eye on me longer than I cared to return the stare, for +fear I might be tempted either to box his ears or render my hilarity +audible. I began to feel unmistakably out of place in that pleasant +family circle. The dismal spiritual atmosphere overcame, and more than +neutralised, the glowing physical comforts round me; and I resolved to +be cautious how I ventured under those rafters a third time. + +The business of eating being concluded, and no one uttering a word of +sociable conversation, I approached a window to examine the weather. A +sorrowful sight I saw: dark night coming down prematurely, and sky and +hills mingled in one bitter whirl of wind and suffocating snow. + +“I don’t think it possible for me to get home now without a guide,” I +could not help exclaiming. “The roads will be buried already; and, if +they were bare, I could scarcely distinguish a foot in advance.” + +“Hareton, drive those dozen sheep into the barn porch. They’ll be +covered if left in the fold all night: and put a plank before them,” +said Heathcliff. + +“How must I do?” I continued, with rising irritation. + +There was no reply to my question; and on looking round I saw only +Joseph bringing in a pail of porridge for the dogs, and Mrs. Heathcliff +leaning over the fire, diverting herself with burning a bundle of +matches which had fallen from the chimney-piece as she restored the +tea-canister to its place. The former, when he had deposited his +burden, took a critical survey of the room, and in cracked tones grated +out—“Aw wonder how yah can faishion to stand thear i’ idleness un war, +when all on ’ems goan out! Bud yah’re a nowt, and it’s no use +talking—yah’ll niver mend o’yer ill ways, but goa raight to t’ divil, +like yer mother afore ye!” + +I imagined, for a moment, that this piece of eloquence was addressed to +me; and, sufficiently enraged, stepped towards the aged rascal with an +intention of kicking him out of the door. Mrs. Heathcliff, however, +checked me by her answer. + +“You scandalous old hypocrite!” she replied. “Are you not afraid of +being carried away bodily, whenever you mention the devil’s name? I +warn you to refrain from provoking me, or I’ll ask your abduction as a +special favour! Stop! look here, Joseph,” she continued, taking a long, +dark book from a shelf; “I’ll show you how far I’ve progressed in the +Black Art: I shall soon be competent to make a clear house of it. The +red cow didn’t die by chance; and your rheumatism can hardly be +reckoned among providential visitations!” + +“Oh, wicked, wicked!” gasped the elder; “may the Lord deliver us from +evil!” + +“No, reprobate! you are a castaway—be off, or I’ll hurt you seriously! +I’ll have you all modelled in wax and clay! and the first who passes +the limits I fix shall—I’ll not say what he shall be done to—but, +you’ll see! Go, I’m looking at you!” + +The little witch put a mock malignity into her beautiful eyes, and +Joseph, trembling with sincere horror, hurried out, praying, and +ejaculating “wicked” as he went. I thought her conduct must be prompted +by a species of dreary fun; and, now that we were alone, I endeavoured +to interest her in my distress. + +“Mrs. Heathcliff,” I said earnestly, “you must excuse me for troubling +you. I presume, because, with that face, I’m sure you cannot help being +good-hearted. Do point out some landmarks by which I may know my way +home: I have no more idea how to get there than you would have how to +get to London!” + +“Take the road you came,” she answered, ensconcing herself in a chair, +with a candle, and the long book open before her. “It is brief advice, +but as sound as I can give.” + +“Then, if you hear of me being discovered dead in a bog or a pit full +of snow, your conscience won’t whisper that it is partly your fault?” + +“How so? I cannot escort you. They wouldn’t let me go to the end of the +garden wall.” + +“_You_! I should be sorry to ask you to cross the threshold, for my +convenience, on such a night,” I cried. “I want you to _tell_ me my +way, not to _show_ it: or else to persuade Mr. Heathcliff to give me a +guide.” + +“Who? There is himself, Earnshaw, Zillah, Joseph and I. Which would you +have?” + +“Are there no boys at the farm?” + +“No; those are all.” + +“Then, it follows that I am compelled to stay.” + +“That you may settle with your host. I have nothing to do with it.” + +“I hope it will be a lesson to you to make no more rash journeys on +these hills,” cried Heathcliff’s stern voice from the kitchen entrance. +“As to staying here, I don’t keep accommodations for visitors: you must +share a bed with Hareton or Joseph, if you do.” + +“I can sleep on a chair in this room,” I replied. + +“No, no! A stranger is a stranger, be he rich or poor: it will not suit +me to permit any one the range of the place while I am off guard!” said +the unmannerly wretch. + +With this insult my patience was at an end. I uttered an expression of +disgust, and pushed past him into the yard, running against Earnshaw in +my haste. It was so dark that I could not see the means of exit; and, +as I wandered round, I heard another specimen of their civil behaviour +amongst each other. At first the young man appeared about to befriend +me. + +“I’ll go with him as far as the park,” he said. + +“You’ll go with him to hell!” exclaimed his master, or whatever +relation he bore. “And who is to look after the horses, eh?” + +“A man’s life is of more consequence than one evening’s neglect of the +horses: somebody must go,” murmured Mrs. Heathcliff, more kindly than I +expected. + +“Not at your command!” retorted Hareton. “If you set store on him, +you’d better be quiet.” + +“Then I hope his ghost will haunt you; and I hope Mr. Heathcliff will +never get another tenant till the Grange is a ruin,” she answered, +sharply. + +“Hearken, hearken, shoo’s cursing on ’em!” muttered Joseph, towards +whom I had been steering. + +He sat within earshot, milking the cows by the light of a lantern, +which I seized unceremoniously, and, calling out that I would send it +back on the morrow, rushed to the nearest postern. + +“Maister, maister, he’s staling t’ lanthern!” shouted the ancient, +pursuing my retreat. “Hey, Gnasher! Hey, dog! Hey Wolf, holld him, +holld him!” + +On opening the little door, two hairy monsters flew at my throat, +bearing me down, and extinguishing the light; while a mingled guffaw +from Heathcliff and Hareton put the copestone on my rage and +humiliation. Fortunately, the beasts seemed more bent on stretching +their paws, and yawning, and flourishing their tails, than devouring me +alive; but they would suffer no resurrection, and I was forced to lie +till their malignant masters pleased to deliver me: then, hatless and +trembling with wrath, I ordered the miscreants to let me out—on their +peril to keep me one minute longer—with several incoherent threats of +retaliation that, in their indefinite depth of virulency, smacked of +King Lear. + +The vehemence of my agitation brought on a copious bleeding at the +nose, and still Heathcliff laughed, and still I scolded. I don’t know +what would have concluded the scene, had there not been one person at +hand rather more rational than myself, and more benevolent than my +entertainer. This was Zillah, the stout housewife; who at length issued +forth to inquire into the nature of the uproar. She thought that some +of them had been laying violent hands on me; and, not daring to attack +her master, she turned her vocal artillery against the younger +scoundrel. + +“Well, Mr. Earnshaw,” she cried, “I wonder what you’ll have agait next? +Are we going to murder folk on our very door-stones? I see this house +will never do for me—look at t’ poor lad, he’s fair choking! Wisht, +wisht; you mun’n’t go on so. Come in, and I’ll cure that: there now, +hold ye still.” + +With these words she suddenly splashed a pint of icy water down my +neck, and pulled me into the kitchen. Mr. Heathcliff followed, his +accidental merriment expiring quickly in his habitual moroseness. + +I was sick exceedingly, and dizzy, and faint; and thus compelled +perforce to accept lodgings under his roof. He told Zillah to give me a +glass of brandy, and then passed on to the inner room; while she +condoled with me on my sorry predicament, and having obeyed his orders, +whereby I was somewhat revived, ushered me to bed. + + + + +CHAPTER III + + +While leading the way upstairs, she recommended that I should hide the +candle, and not make a noise; for her master had an odd notion about +the chamber she would put me in, and never let anybody lodge there +willingly. I asked the reason. She did not know, she answered: she had +only lived there a year or two; and they had so many queer goings on, +she could not begin to be curious. + +Too stupefied to be curious myself, I fastened my door and glanced +round for the bed. The whole furniture consisted of a chair, a +clothes-press, and a large oak case, with squares cut out near the top +resembling coach windows. Having approached this structure, I looked +inside, and perceived it to be a singular sort of old-fashioned couch, +very conveniently designed to obviate the necessity for every member of +the family having a room to himself. In fact, it formed a little +closet, and the ledge of a window, which it enclosed, served as a +table. + +I slid back the panelled sides, got in with my light, pulled them +together again, and felt secure against the vigilance of Heathcliff, +and every one else. + +The ledge, where I placed my candle, had a few mildewed books piled up +in one corner; and it was covered with writing scratched on the paint. +This writing, however, was nothing but a name repeated in all kinds of +characters, large and small—_Catherine Earnshaw_, here and there varied +to _Catherine Heathcliff_, and then again to _Catherine Linton_. + +In vapid listlessness I leant my head against the window, and continued +spelling over Catherine Earnshaw—Heathcliff—Linton, till my eyes +closed; but they had not rested five minutes when a glare of white +letters started from the dark, as vivid as spectres—the air swarmed +with Catherines; and rousing myself to dispel the obtrusive name, I +discovered my candle-wick reclining on one of the antique volumes, and +perfuming the place with an odour of roasted calf-skin. + +I snuffed it off, and, very ill at ease under the influence of cold and +lingering nausea, sat up and spread open the injured tome on my knee. +It was a Testament, in lean type, and smelling dreadfully musty: a +fly-leaf bore the inscription—“Catherine Earnshaw, her book,” and a +date some quarter of a century back. + +I shut it, and took up another and another, till I had examined all. +Catherine’s library was select, and its state of dilapidation proved it +to have been well used, though not altogether for a legitimate purpose: +scarcely one chapter had escaped a pen-and-ink commentary—at least the +appearance of one—covering every morsel of blank that the printer had +left. Some were detached sentences; other parts took the form of a +regular diary, scrawled in an unformed, childish hand. At the top of an +extra page (quite a treasure, probably, when first lighted on) I was +greatly amused to behold an excellent caricature of my friend +Joseph,—rudely, yet powerfully sketched. An immediate interest kindled +within me for the unknown Catherine, and I began forthwith to decipher +her faded hieroglyphics. + +“An awful Sunday,” commenced the paragraph beneath. “I wish my father +were back again. Hindley is a detestable substitute—his conduct to +Heathcliff is atrocious—H. and I are going to rebel—we took our +initiatory step this evening. + +“All day had been flooding with rain; we could not go to church, so +Joseph must needs get up a congregation in the garret; and, while +Hindley and his wife basked downstairs before a comfortable fire—doing +anything but reading their Bibles, I’ll answer for it—Heathcliff, +myself, and the unhappy ploughboy were commanded to take our +prayer-books, and mount: we were ranged in a row, on a sack of corn, +groaning and shivering, and hoping that Joseph would shiver too, so +that he might give us a short homily for his own sake. A vain idea! The +service lasted precisely three hours; and yet my brother had the face +to exclaim, when he saw us descending, ‘What, done already?’ On Sunday +evenings we used to be permitted to play, if we did not make much +noise; now a mere titter is sufficient to send us into corners. + +“‘You forget you have a master here,’ says the tyrant. ‘I’ll demolish +the first who puts me out of temper! I insist on perfect sobriety and +silence. Oh, boy! was that you? Frances darling, pull his hair as you +go by: I heard him snap his fingers.’ Frances pulled his hair heartily, +and then went and seated herself on her husband’s knee, and there they +were, like two babies, kissing and talking nonsense by the hour—foolish +palaver that we should be ashamed of. We made ourselves as snug as our +means allowed in the arch of the dresser. I had just fastened our +pinafores together, and hung them up for a curtain, when in comes +Joseph, on an errand from the stables. He tears down my handiwork, +boxes my ears, and croaks: + +“‘T’ maister nobbut just buried, and Sabbath not o’ered, und t’ sound +o’ t’ gospel still i’ yer lugs, and ye darr be laiking! Shame on ye! +sit ye down, ill childer! there’s good books eneugh if ye’ll read ’em: +sit ye down, and think o’ yer sowls!’ + +“Saying this, he compelled us so to square our positions that we might +receive from the far-off fire a dull ray to show us the text of the +lumber he thrust upon us. I could not bear the employment. I took my +dingy volume by the scroop, and hurled it into the dog-kennel, vowing I +hated a good book. Heathcliff kicked his to the same place. Then there +was a hubbub! + +“‘Maister Hindley!’ shouted our chaplain. ‘Maister, coom hither! Miss +Cathy’s riven th’ back off “Th’ Helmet o’ Salvation,” un’ Heathcliff’s +pawsed his fit into t’ first part o’ “T’ Brooad Way to Destruction!” +It’s fair flaysome that ye let ’em go on this gait. Ech! th’ owd man +wad ha’ laced ’em properly—but he’s goan!’ + +“Hindley hurried up from his paradise on the hearth, and seizing one of +us by the collar, and the other by the arm, hurled both into the +back-kitchen; where, Joseph asseverated, ‘owd Nick’ would fetch us as +sure as we were living: and, so comforted, we each sought a separate +nook to await his advent. I reached this book, and a pot of ink from a +shelf, and pushed the house-door ajar to give me light, and I have got +the time on with writing for twenty minutes; but my companion is +impatient, and proposes that we should appropriate the dairywoman’s +cloak, and have a scamper on the moors, under its shelter. A pleasant +suggestion—and then, if the surly old man come in, he may believe his +prophecy verified—we cannot be damper, or colder, in the rain than we +are here.” + +* * * * * * + + +I suppose Catherine fulfilled her project, for the next sentence took +up another subject: she waxed lachrymose. + +“How little did I dream that Hindley would ever make me cry so!” she +wrote. “My head aches, till I cannot keep it on the pillow; and still I +can’t give over. Poor Heathcliff! Hindley calls him a vagabond, and +won’t let him sit with us, nor eat with us any more; and, he says, he +and I must not play together, and threatens to turn him out of the +house if we break his orders. He has been blaming our father (how dared +he?) for treating H. too liberally; and swears he will reduce him to +his right place—” + +* * * * * * + + +I began to nod drowsily over the dim page: my eye wandered from +manuscript to print. I saw a red ornamented title—“Seventy Times Seven, +and the First of the Seventy-First. A Pious Discourse delivered by the +Reverend Jabez Branderham, in the Chapel of Gimmerden Sough.” And while +I was, half-consciously, worrying my brain to guess what Jabez +Branderham would make of his subject, I sank back in bed, and fell +asleep. Alas, for the effects of bad tea and bad temper! What else +could it be that made me pass such a terrible night? I don’t remember +another that I can at all compare with it since I was capable of +suffering. + +I began to dream, almost before I ceased to be sensible of my locality. +I thought it was morning; and I had set out on my way home, with Joseph +for a guide. The snow lay yards deep in our road; and, as we floundered +on, my companion wearied me with constant reproaches that I had not +brought a pilgrim’s staff: telling me that I could never get into the +house without one, and boastfully flourishing a heavy-headed cudgel, +which I understood to be so denominated. For a moment I considered it +absurd that I should need such a weapon to gain admittance into my own +residence. Then a new idea flashed across me. I was not going there: we +were journeying to hear the famous Jabez Branderham preach, from the +text—“Seventy Times Seven;” and either Joseph, the preacher, or I had +committed the “First of the Seventy-First,” and were to be publicly +exposed and excommunicated. + +We came to the chapel. I have passed it really in my walks, twice or +thrice; it lies in a hollow, between two hills: an elevated hollow, +near a swamp, whose peaty moisture is said to answer all the purposes +of embalming on the few corpses deposited there. The roof has been kept +whole hitherto; but as the clergyman’s stipend is only twenty pounds +per annum, and a house with two rooms, threatening speedily to +determine into one, no clergyman will undertake the duties of pastor: +especially as it is currently reported that his flock would rather let +him starve than increase the living by one penny from their own +pockets. However, in my dream, Jabez had a full and attentive +congregation; and he preached—good God! what a sermon; divided into +_four hundred and ninety_ parts, each fully equal to an ordinary +address from the pulpit, and each discussing a separate sin! Where he +searched for them, I cannot tell. He had his private manner of +interpreting the phrase, and it seemed necessary the brother should sin +different sins on every occasion. They were of the most curious +character: odd transgressions that I never imagined previously. + +Oh, how weary I grew. How I writhed, and yawned, and nodded, and +revived! How I pinched and pricked myself, and rubbed my eyes, and +stood up, and sat down again, and nudged Joseph to inform me if he +would _ever_ have done. I was condemned to hear all out: finally, he +reached the “_First of the Seventy-First_.” At that crisis, a sudden +inspiration descended on me; I was moved to rise and denounce Jabez +Branderham as the sinner of the sin that no Christian need pardon. + +“Sir,” I exclaimed, “sitting here within these four walls, at one +stretch, I have endured and forgiven the four hundred and ninety heads +of your discourse. Seventy times seven times have I plucked up my hat +and been about to depart—Seventy times seven times have you +preposterously forced me to resume my seat. The four hundred and +ninety-first is too much. Fellow-martyrs, have at him! Drag him down, +and crush him to atoms, that the place which knows him may know him no +more!” + +“_Thou art the Man!_” cried Jabez, after a solemn pause, leaning over +his cushion. “Seventy times seven times didst thou gapingly contort thy +visage—seventy times seven did I take counsel with my soul—Lo, this is +human weakness: this also may be absolved! The First of the +Seventy-First is come. Brethren, execute upon him the judgment written. +Such honour have all His saints!” + +With that concluding word, the whole assembly, exalting their pilgrim’s +staves, rushed round me in a body; and I, having no weapon to raise in +self-defence, commenced grappling with Joseph, my nearest and most +ferocious assailant, for his. In the confluence of the multitude, +several clubs crossed; blows, aimed at me, fell on other sconces. +Presently the whole chapel resounded with rappings and counter +rappings: every man’s hand was against his neighbour; and Branderham, +unwilling to remain idle, poured forth his zeal in a shower of loud +taps on the boards of the pulpit, which responded so smartly that, at +last, to my unspeakable relief, they woke me. And what was it that had +suggested the tremendous tumult? What had played Jabez’s part in the +row? Merely the branch of a fir-tree that touched my lattice as the +blast wailed by, and rattled its dry cones against the panes! I +listened doubtingly an instant; detected the disturber, then turned and +dozed, and dreamt again: if possible, still more disagreeably than +before. + +This time, I remembered I was lying in the oak closet, and I heard +distinctly the gusty wind, and the driving of the snow; I heard, also, +the fir bough repeat its teasing sound, and ascribed it to the right +cause: but it annoyed me so much, that I resolved to silence it, if +possible; and, I thought, I rose and endeavoured to unhasp the +casement. The hook was soldered into the staple: a circumstance +observed by me when awake, but forgotten. “I must stop it, +nevertheless!” I muttered, knocking my knuckles through the glass, and +stretching an arm out to seize the importunate branch; instead of +which, my fingers closed on the fingers of a little, ice-cold hand! + +The intense horror of nightmare came over me: I tried to draw back my +arm, but the hand clung to it, and a most melancholy voice sobbed, + +“Let me in—let me in!” + +“Who are you?” I asked, struggling, meanwhile, to disengage myself. + +“Catherine Linton,” it replied, shiveringly (why did I think of +_Linton_? I had read _Earnshaw_ twenty times for Linton)—“I’m come +home: I’d lost my way on the moor!” + +As it spoke, I discerned, obscurely, a child’s face looking through the +window. Terror made me cruel; and, finding it useless to attempt +shaking the creature off, I pulled its wrist on to the broken pane, and +rubbed it to and fro till the blood ran down and soaked the bedclothes: +still it wailed, “Let me in!” and maintained its tenacious gripe, +almost maddening me with fear. + +“How can I!” I said at length. “Let _me_ go, if you want me to let you +in!” + +The fingers relaxed, I snatched mine through the hole, hurriedly piled +the books up in a pyramid against it, and stopped my ears to exclude +the lamentable prayer. + +I seemed to keep them closed above a quarter of an hour; yet, the +instant I listened again, there was the doleful cry moaning on! + +“Begone!” I shouted. “I’ll never let you in, not if you beg for twenty +years.” + +“It is twenty years,” mourned the voice: “twenty years. I’ve been a +waif for twenty years!” + +Thereat began a feeble scratching outside, and the pile of books moved +as if thrust forward. + +I tried to jump up; but could not stir a limb; and so yelled aloud, in +a frenzy of fright. + +To my confusion, I discovered the yell was not ideal: hasty footsteps +approached my chamber door; somebody pushed it open, with a vigorous +hand, and a light glimmered through the squares at the top of the bed. +I sat shuddering, yet, and wiping the perspiration from my forehead: +the intruder appeared to hesitate, and muttered to himself. + +At last, he said, in a half-whisper, plainly not expecting an answer, + +“Is any one here?” + +I considered it best to confess my presence; for I knew Heathcliff’s +accents, and feared he might search further, if I kept quiet. + +With this intention, I turned and opened the panels. I shall not soon +forget the effect my action produced. + +Heathcliff stood near the entrance, in his shirt and trousers; with a +candle dripping over his fingers, and his face as white as the wall +behind him. The first creak of the oak startled him like an electric +shock: the light leaped from his hold to a distance of some feet, and +his agitation was so extreme, that he could hardly pick it up. + +“It is only your guest, sir,” I called out, desirous to spare him the +humiliation of exposing his cowardice further. “I had the misfortune to +scream in my sleep, owing to a frightful nightmare. I’m sorry I +disturbed you.” + +“Oh, God confound you, Mr. Lockwood! I wish you were at the—” commenced +my host, setting the candle on a chair, because he found it impossible +to hold it steady. “And who showed you up into this room?” he +continued, crushing his nails into his palms, and grinding his teeth to +subdue the maxillary convulsions. “Who was it? I’ve a good mind to turn +them out of the house this moment!” + +“It was your servant Zillah,” I replied, flinging myself on to the +floor, and rapidly resuming my garments. “I should not care if you did, +Mr. Heathcliff; she richly deserves it. I suppose that she wanted to +get another proof that the place was haunted, at my expense. Well, it +is—swarming with ghosts and goblins! You have reason in shutting it up, +I assure you. No one will thank you for a doze in such a den!” + +“What do you mean?” asked Heathcliff, “and what are you doing? Lie down +and finish out the night, since you _are_ here; but, for Heaven’s sake! +don’t repeat that horrid noise: nothing could excuse it, unless you +were having your throat cut!” + +“If the little fiend had got in at the window, she probably would have +strangled me!” I returned. “I’m not going to endure the persecutions of +your hospitable ancestors again. Was not the Reverend Jabez Branderham +akin to you on the mother’s side? And that minx, Catherine Linton, or +Earnshaw, or however she was called—she must have been a +changeling—wicked little soul! She told me she had been walking the +earth these twenty years: a just punishment for her mortal +transgressions, I’ve no doubt!” + +Scarcely were these words uttered when I recollected the association of +Heathcliff’s with Catherine’s name in the book, which had completely +slipped from my memory, till thus awakened. I blushed at my +inconsideration: but, without showing further consciousness of the +offence, I hastened to add—“The truth is, sir, I passed the first part +of the night in—” Here I stopped afresh—I was about to say “perusing +those old volumes,” then it would have revealed my knowledge of their +written, as well as their printed, contents; so, correcting myself, I +went on—“in spelling over the name scratched on that window-ledge. A +monotonous occupation, calculated to set me asleep, like counting, or—” + +“What _can_ you mean by talking in this way to _me!_” thundered +Heathcliff with savage vehemence. “How—how _dare_ you, under my +roof?—God! he’s mad to speak so!” And he struck his forehead with rage. + +I did not know whether to resent this language or pursue my +explanation; but he seemed so powerfully affected that I took pity and +proceeded with my dreams; affirming I had never heard the appellation +of “Catherine Linton” before, but reading it often over produced an +impression which personified itself when I had no longer my imagination +under control. Heathcliff gradually fell back into the shelter of the +bed, as I spoke; finally sitting down almost concealed behind it. I +guessed, however, by his irregular and intercepted breathing, that he +struggled to vanquish an excess of violent emotion. Not liking to show +him that I had heard the conflict, I continued my toilette rather +noisily, looked at my watch, and soliloquised on the length of the +night: “Not three o’clock yet! I could have taken oath it had been six. +Time stagnates here: we must surely have retired to rest at eight!” + +“Always at nine in winter, and rise at four,” said my host, suppressing +a groan: and, as I fancied, by the motion of his arm’s shadow, dashing +a tear from his eyes. “Mr. Lockwood,” he added, “you may go into my +room: you’ll only be in the way, coming downstairs so early: and your +childish outcry has sent sleep to the devil for me.” + +“And for me, too,” I replied. “I’ll walk in the yard till daylight, and +then I’ll be off; and you need not dread a repetition of my intrusion. +I’m now quite cured of seeking pleasure in society, be it country or +town. A sensible man ought to find sufficient company in himself.” + +“Delightful company!” muttered Heathcliff. “Take the candle, and go +where you please. I shall join you directly. Keep out of the yard, +though, the dogs are unchained; and the house—Juno mounts sentinel +there, and—nay, you can only ramble about the steps and passages. But, +away with you! I’ll come in two minutes!” + +I obeyed, so far as to quit the chamber; when, ignorant where the +narrow lobbies led, I stood still, and was witness, involuntarily, to a +piece of superstition on the part of my landlord which belied, oddly, +his apparent sense. He got on to the bed, and wrenched open the +lattice, bursting, as he pulled at it, into an uncontrollable passion +of tears. “Come in! come in!” he sobbed. “Cathy, do come. Oh, do—_once_ +more! Oh! my heart’s darling! hear me _this_ time, Catherine, at last!” +The spectre showed a spectre’s ordinary caprice: it gave no sign of +being; but the snow and wind whirled wildly through, even reaching my +station, and blowing out the light. + +There was such anguish in the gush of grief that accompanied this +raving, that my compassion made me overlook its folly, and I drew off, +half angry to have listened at all, and vexed at having related my +ridiculous nightmare, since it produced that agony; though _why_ was +beyond my comprehension. I descended cautiously to the lower regions, +and landed in the back-kitchen, where a gleam of fire, raked compactly +together, enabled me to rekindle my candle. Nothing was stirring except +a brindled, grey cat, which crept from the ashes, and saluted me with a +querulous mew. + +Two benches, shaped in sections of a circle, nearly enclosed the +hearth; on one of these I stretched myself, and Grimalkin mounted the +other. We were both of us nodding ere any one invaded our retreat, and +then it was Joseph, shuffling down a wooden ladder that vanished in the +roof, through a trap: the ascent to his garret, I suppose. He cast a +sinister look at the little flame which I had enticed to play between +the ribs, swept the cat from its elevation, and bestowing himself in +the vacancy, commenced the operation of stuffing a three-inch pipe with +tobacco. My presence in his sanctum was evidently esteemed a piece of +impudence too shameful for remark: he silently applied the tube to his +lips, folded his arms, and puffed away. I let him enjoy the luxury +unannoyed; and after sucking out his last wreath, and heaving a +profound sigh, he got up, and departed as solemnly as he came. + +A more elastic footstep entered next; and now I opened my mouth for a +“good-morning,” but closed it again, the salutation unachieved; for +Hareton Earnshaw was performing his orison _sotto voce_, in a series of +curses directed against every object he touched, while he rummaged a +corner for a spade or shovel to dig through the drifts. He glanced over +the back of the bench, dilating his nostrils, and thought as little of +exchanging civilities with me as with my companion the cat. I guessed, +by his preparations, that egress was allowed, and, leaving my hard +couch, made a movement to follow him. He noticed this, and thrust at an +inner door with the end of his spade, intimating by an inarticulate +sound that there was the place where I must go, if I changed my +locality. + +It opened into the house, where the females were already astir; Zillah +urging flakes of flame up the chimney with a colossal bellows; and Mrs. +Heathcliff, kneeling on the hearth, reading a book by the aid of the +blaze. She held her hand interposed between the furnace-heat and her +eyes, and seemed absorbed in her occupation; desisting from it only to +chide the servant for covering her with sparks, or to push away a dog, +now and then, that snoozled its nose overforwardly into her face. I was +surprised to see Heathcliff there also. He stood by the fire, his back +towards me, just finishing a stormy scene with poor Zillah; who ever +and anon interrupted her labour to pluck up the corner of her apron, +and heave an indignant groan. + +“And you, you worthless—” he broke out as I entered, turning to his +daughter-in-law, and employing an epithet as harmless as duck, or +sheep, but generally represented by a dash—. “There you are, at your +idle tricks again! The rest of them do earn their bread—you live on my +charity! Put your trash away, and find something to do. You shall pay +me for the plague of having you eternally in my sight—do you hear, +damnable jade?” + +“I’ll put my trash away, because you can make me if I refuse,” answered +the young lady, closing her book, and throwing it on a chair. “But I’ll +not do anything, though you should swear your tongue out, except what I +please!” + +Heathcliff lifted his hand, and the speaker sprang to a safer distance, +obviously acquainted with its weight. Having no desire to be +entertained by a cat-and-dog combat, I stepped forward briskly, as if +eager to partake the warmth of the hearth, and innocent of any +knowledge of the interrupted dispute. Each had enough decorum to +suspend further hostilities: Heathcliff placed his fists, out of +temptation, in his pockets; Mrs. Heathcliff curled her lip, and walked +to a seat far off, where she kept her word by playing the part of a +statue during the remainder of my stay. That was not long. I declined +joining their breakfast, and, at the first gleam of dawn, took an +opportunity of escaping into the free air, now clear, and still, and +cold as impalpable ice. + +My landlord halloed for me to stop ere I reached the bottom of the +garden, and offered to accompany me across the moor. It was well he +did, for the whole hill-back was one billowy, white ocean; the swells +and falls not indicating corresponding rises and depressions in the +ground: many pits, at least, were filled to a level; and entire ranges +of mounds, the refuse of the quarries, blotted from the chart which my +yesterday’s walk left pictured in my mind. I had remarked on one side +of the road, at intervals of six or seven yards, a line of upright +stones, continued through the whole length of the barren: these were +erected and daubed with lime on purpose to serve as guides in the dark, +and also when a fall, like the present, confounded the deep swamps on +either hand with the firmer path: but, excepting a dirty dot pointing +up here and there, all traces of their existence had vanished: and my +companion found it necessary to warn me frequently to steer to the +right or left, when I imagined I was following, correctly, the windings +of the road. + +We exchanged little conversation, and he halted at the entrance of +Thrushcross Park, saying, I could make no error there. Our adieux were +limited to a hasty bow, and then I pushed forward, trusting to my own +resources; for the porter’s lodge is untenanted as yet. The distance +from the gate to the Grange is two miles; I believe I managed to make +it four, what with losing myself among the trees, and sinking up to the +neck in snow: a predicament which only those who have experienced it +can appreciate. At any rate, whatever were my wanderings, the clock +chimed twelve as I entered the house; and that gave exactly an hour for +every mile of the usual way from Wuthering Heights. + +My human fixture and her satellites rushed to welcome me; exclaiming, +tumultuously, they had completely given me up: everybody conjectured +that I perished last night; and they were wondering how they must set +about the search for my remains. I bid them be quiet, now that they saw +me returned, and, benumbed to my very heart, I dragged upstairs; +whence, after putting on dry clothes, and pacing to and fro thirty or +forty minutes, to restore the animal heat, I adjourned to my study, +feeble as a kitten: almost too much so to enjoy the cheerful fire and +smoking coffee which the servant had prepared for my refreshment. + + + + +CHAPTER IV + + +What vain weather-cocks we are! I, who had determined to hold myself +independent of all social intercourse, and thanked my stars that, at +length, I had lighted on a spot where it was next to impracticable—I, +weak wretch, after maintaining till dusk a struggle with low spirits +and solitude, was finally compelled to strike my colours; and under +pretence of gaining information concerning the necessities of my +establishment, I desired Mrs. Dean, when she brought in supper, to sit +down while I ate it; hoping sincerely she would prove a regular gossip, +and either rouse me to animation or lull me to sleep by her talk. + +“You have lived here a considerable time,” I commenced; “did you not +say sixteen years?” + +“Eighteen, sir: I came when the mistress was married, to wait on her; +after she died, the master retained me for his housekeeper.” + +“Indeed.” + +There ensued a pause. She was not a gossip, I feared; unless about her +own affairs, and those could hardly interest me. However, having +studied for an interval, with a fist on either knee, and a cloud of +meditation over her ruddy countenance, she ejaculated—“Ah, times are +greatly changed since then!” + +“Yes,” I remarked, “you’ve seen a good many alterations, I suppose?” + +“I have: and troubles too,” she said. + +“Oh, I’ll turn the talk on my landlord’s family!” I thought to myself. +“A good subject to start! And that pretty girl-widow, I should like to +know her history: whether she be a native of the country, or, as is +more probable, an exotic that the surly _indigenae_ will not recognise +for kin.” With this intention I asked Mrs. Dean why Heathcliff let +Thrushcross Grange, and preferred living in a situation and residence +so much inferior. “Is he not rich enough to keep the estate in good +order?” I inquired. + +“Rich, sir!” she returned. “He has nobody knows what money, and every +year it increases. Yes, yes, he’s rich enough to live in a finer house +than this: but he’s very near—close-handed; and, if he had meant to +flit to Thrushcross Grange, as soon as he heard of a good tenant he +could not have borne to miss the chance of getting a few hundreds more. +It is strange people should be so greedy, when they are alone in the +world!” + +“He had a son, it seems?” + +“Yes, he had one—he is dead.” + +“And that young lady, Mrs. Heathcliff, is his widow?” + +“Yes.” + +“Where did she come from originally?” + +“Why, sir, she is my late master’s daughter: Catherine Linton was her +maiden name. I nursed her, poor thing! I did wish Mr. Heathcliff would +remove here, and then we might have been together again.” + +“What! Catherine Linton?” I exclaimed, astonished. But a minute’s +reflection convinced me it was not my ghostly Catherine. “Then,” I +continued, “my predecessor’s name was Linton?” + +“It was.” + +“And who is that Earnshaw: Hareton Earnshaw, who lives with Mr. +Heathcliff? Are they relations?” + +“No; he is the late Mrs. Linton’s nephew.” + +“The young lady’s cousin, then?” + +“Yes; and her husband was her cousin also: one on the mother’s, the +other on the father’s side: Heathcliff married Mr. Linton’s sister.” + +“I see the house at Wuthering Heights has ‘Earnshaw’ carved over the +front door. Are they an old family?” + +“Very old, sir; and Hareton is the last of them, as our Miss Cathy is +of us—I mean, of the Lintons. Have you been to Wuthering Heights? I beg +pardon for asking; but I should like to hear how she is!” + +“Mrs. Heathcliff? she looked very well, and very handsome; yet, I +think, not very happy.” + +“Oh dear, I don’t wonder! And how did you like the master?” + +“A rough fellow, rather, Mrs. Dean. Is not that his character?” + +“Rough as a saw-edge, and hard as whinstone! The less you meddle with +him the better.” + +“He must have had some ups and downs in life to make him such a churl. +Do you know anything of his history?” + +“It’s a cuckoo’s, sir—I know all about it: except where he was born, +and who were his parents, and how he got his money at first. And +Hareton has been cast out like an unfledged dunnock! The unfortunate +lad is the only one in all this parish that does not guess how he has +been cheated.” + +“Well, Mrs. Dean, it will be a charitable deed to tell me something of +my neighbours: I feel I shall not rest if I go to bed; so be good +enough to sit and chat an hour.” + +“Oh, certainly, sir! I’ll just fetch a little sewing, and then I’ll sit +as long as you please. But you’ve caught cold: I saw you shivering, and +you must have some gruel to drive it out.” + +The worthy woman bustled off, and I crouched nearer the fire; my head +felt hot, and the rest of me chill: moreover, I was excited, almost to +a pitch of foolishness, through my nerves and brain. This caused me to +feel, not uncomfortable, but rather fearful (as I am still) of serious +effects from the incidents of to-day and yesterday. She returned +presently, bringing a smoking basin and a basket of work; and, having +placed the former on the hob, drew in her seat, evidently pleased to +find me so companionable. + +* * * * * + + +Before I came to live here, she commenced—waiting no farther invitation +to her story—I was almost always at Wuthering Heights; because my +mother had nursed Mr. Hindley Earnshaw, that was Hareton’s father, and +I got used to playing with the children: I ran errands too, and helped +to make hay, and hung about the farm ready for anything that anybody +would set me to. One fine summer morning—it was the beginning of +harvest, I remember—Mr. Earnshaw, the old master, came downstairs, +dressed for a journey; and, after he had told Joseph what was to be +done during the day, he turned to Hindley, and Cathy, and me—for I sat +eating my porridge with them—and he said, speaking to his son, “Now, my +bonny man, I’m going to Liverpool to-day, what shall I bring you? You +may choose what you like: only let it be little, for I shall walk there +and back: sixty miles each way, that is a long spell!” Hindley named a +fiddle, and then he asked Miss Cathy; she was hardly six years old, but +she could ride any horse in the stable, and she chose a whip. He did +not forget me; for he had a kind heart, though he was rather severe +sometimes. He promised to bring me a pocketful of apples and pears, and +then he kissed his children, said good-bye, and set off. + +It seemed a long while to us all—the three days of his absence—and +often did little Cathy ask when he would be home. Mrs. Earnshaw +expected him by supper-time on the third evening, and she put the meal +off hour after hour; there were no signs of his coming, however, and at +last the children got tired of running down to the gate to look. Then +it grew dark; she would have had them to bed, but they begged sadly to +be allowed to stay up; and, just about eleven o’clock, the door-latch +was raised quietly, and in stepped the master. He threw himself into a +chair, laughing and groaning, and bid them all stand off, for he was +nearly killed—he would not have such another walk for the three +kingdoms. + +“And at the end of it to be flighted to death!” he said, opening his +great-coat, which he held bundled up in his arms. “See here, wife! I +was never so beaten with anything in my life: but you must e’en take it +as a gift of God; though it’s as dark almost as if it came from the +devil.” + +We crowded round, and over Miss Cathy’s head I had a peep at a dirty, +ragged, black-haired child; big enough both to walk and talk: indeed, +its face looked older than Catherine’s; yet when it was set on its +feet, it only stared round, and repeated over and over again some +gibberish that nobody could understand. I was frightened, and Mrs. +Earnshaw was ready to fling it out of doors: she did fly up, asking how +he could fashion to bring that gipsy brat into the house, when they had +their own bairns to feed and fend for? What he meant to do with it, and +whether he were mad? The master tried to explain the matter; but he was +really half dead with fatigue, and all that I could make out, amongst +her scolding, was a tale of his seeing it starving, and houseless, and +as good as dumb, in the streets of Liverpool, where he picked it up and +inquired for its owner. Not a soul knew to whom it belonged, he said; +and his money and time being both limited, he thought it better to take +it home with him at once, than run into vain expenses there: because he +was determined he would not leave it as he found it. Well, the +conclusion was, that my mistress grumbled herself calm; and Mr. +Earnshaw told me to wash it, and give it clean things, and let it sleep +with the children. + +Hindley and Cathy contented themselves with looking and listening till +peace was restored: then, both began searching their father’s pockets +for the presents he had promised them. The former was a boy of +fourteen, but when he drew out what had been a fiddle, crushed to +morsels in the great-coat, he blubbered aloud; and Cathy, when she +learned the master had lost her whip in attending on the stranger, +showed her humour by grinning and spitting at the stupid little thing; +earning for her pains a sound blow from her father, to teach her +cleaner manners. They entirely refused to have it in bed with them, or +even in their room; and I had no more sense, so I put it on the landing +of the stairs, hoping it might be gone on the morrow. By chance, or +else attracted by hearing his voice, it crept to Mr. Earnshaw’s door, +and there he found it on quitting his chamber. Inquiries were made as +to how it got there; I was obliged to confess, and in recompense for my +cowardice and inhumanity was sent out of the house. + +This was Heathcliff’s first introduction to the family. On coming back +a few days afterwards (for I did not consider my banishment perpetual), +I found they had christened him “Heathcliff”: it was the name of a son +who died in childhood, and it has served him ever since, both for +Christian and surname. Miss Cathy and he were now very thick; but +Hindley hated him: and to say the truth I did the same; and we plagued +and went on with him shamefully: for I wasn’t reasonable enough to feel +my injustice, and the mistress never put in a word on his behalf when +she saw him wronged. + +He seemed a sullen, patient child; hardened, perhaps, to ill-treatment: +he would stand Hindley’s blows without winking or shedding a tear, and +my pinches moved him only to draw in a breath and open his eyes, as if +he had hurt himself by accident, and nobody was to blame. This +endurance made old Earnshaw furious, when he discovered his son +persecuting the poor fatherless child, as he called him. He took to +Heathcliff strangely, believing all he said (for that matter, he said +precious little, and generally the truth), and petting him up far above +Cathy, who was too mischievous and wayward for a favourite. + +So, from the very beginning, he bred bad feeling in the house; and at +Mrs. Earnshaw’s death, which happened in less than two years after, the +young master had learned to regard his father as an oppressor rather +than a friend, and Heathcliff as a usurper of his parent’s affections +and his privileges; and he grew bitter with brooding over these +injuries. I sympathised a while; but when the children fell ill of the +measles, and I had to tend them, and take on me the cares of a woman at +once, I changed my idea. Heathcliff was dangerously sick; and while he +lay at the worst he would have me constantly by his pillow: I suppose +he felt I did a good deal for him, and he hadn’t wit to guess that I +was compelled to do it. However, I will say this, he was the quietest +child that ever nurse watched over. The difference between him and the +others forced me to be less partial. Cathy and her brother harassed me +terribly: _he_ was as uncomplaining as a lamb; though hardness, not +gentleness, made him give little trouble. + +He got through, and the doctor affirmed it was in a great measure owing +to me, and praised me for my care. I was vain of his commendations, and +softened towards the being by whose means I earned them, and thus +Hindley lost his last ally: still I couldn’t dote on Heathcliff, and I +wondered often what my master saw to admire so much in the sullen boy; +who never, to my recollection, repaid his indulgence by any sign of +gratitude. He was not insolent to his benefactor, he was simply +insensible; though knowing perfectly the hold he had on his heart, and +conscious he had only to speak and all the house would be obliged to +bend to his wishes. As an instance, I remember Mr. Earnshaw once bought +a couple of colts at the parish fair, and gave the lads each one. +Heathcliff took the handsomest, but it soon fell lame, and when he +discovered it, he said to Hindley— + +“You must exchange horses with me: I don’t like mine; and if you won’t +I shall tell your father of the three thrashings you’ve given me this +week, and show him my arm, which is black to the shoulder.” Hindley put +out his tongue, and cuffed him over the ears. “You’d better do it at +once,” he persisted, escaping to the porch (they were in the stable): +“you will have to: and if I speak of these blows, you’ll get them again +with interest.” “Off, dog!” cried Hindley, threatening him with an iron +weight used for weighing potatoes and hay. “Throw it,” he replied, +standing still, “and then I’ll tell how you boasted that you would turn +me out of doors as soon as he died, and see whether he will not turn +you out directly.” Hindley threw it, hitting him on the breast, and +down he fell, but staggered up immediately, breathless and white; and, +had not I prevented it, he would have gone just so to the master, and +got full revenge by letting his condition plead for him, intimating who +had caused it. “Take my colt, Gipsy, then!” said young Earnshaw. “And I +pray that he may break your neck: take him, and be damned, you beggarly +interloper! and wheedle my father out of all he has: only afterwards +show him what you are, imp of Satan.—And take that, I hope he’ll kick +out your brains!” + +Heathcliff had gone to loose the beast, and shift it to his own stall; +he was passing behind it, when Hindley finished his speech by knocking +him under its feet, and without stopping to examine whether his hopes +were fulfilled, ran away as fast as he could. I was surprised to +witness how coolly the child gathered himself up, and went on with his +intention; exchanging saddles and all, and then sitting down on a +bundle of hay to overcome the qualm which the violent blow occasioned, +before he entered the house. I persuaded him easily to let me lay the +blame of his bruises on the horse: he minded little what tale was told +since he had what he wanted. He complained so seldom, indeed, of such +stirs as these, that I really thought him not vindictive: I was +deceived completely, as you will hear. + + + + +CHAPTER V + + +In the course of time Mr. Earnshaw began to fail. He had been active +and healthy, yet his strength left him suddenly; and when he was +confined to the chimney-corner he grew grievously irritable. A nothing +vexed him; and suspected slights of his authority nearly threw him into +fits. This was especially to be remarked if any one attempted to impose +upon, or domineer over, his favourite: he was painfully jealous lest a +word should be spoken amiss to him; seeming to have got into his head +the notion that, because he liked Heathcliff, all hated, and longed to +do him an ill-turn. It was a disadvantage to the lad; for the kinder +among us did not wish to fret the master, so we humoured his +partiality; and that humouring was rich nourishment to the child’s +pride and black tempers. Still it became in a manner necessary; twice, +or thrice, Hindley’s manifestation of scorn, while his father was near, +roused the old man to a fury: he seized his stick to strike him, and +shook with rage that he could not do it. + +At last, our curate (we had a curate then who made the living answer by +teaching the little Lintons and Earnshaws, and farming his bit of land +himself) advised that the young man should be sent to college; and Mr. +Earnshaw agreed, though with a heavy spirit, for he said—“Hindley was +nought, and would never thrive as where he wandered.” + +I hoped heartily we should have peace now. It hurt me to think the +master should be made uncomfortable by his own good deed. I fancied the +discontent of age and disease arose from his family disagreements; as +he would have it that it did: really, you know, sir, it was in his +sinking frame. We might have got on tolerably, notwithstanding, but for +two people—Miss Cathy, and Joseph, the servant: you saw him, I daresay, +up yonder. He was, and is yet most likely, the wearisomest +self-righteous Pharisee that ever ransacked a Bible to rake the +promises to himself and fling the curses to his neighbours. By his +knack of sermonising and pious discoursing, he contrived to make a +great impression on Mr. Earnshaw; and the more feeble the master +became, the more influence he gained. He was relentless in worrying him +about his soul’s concerns, and about ruling his children rigidly. He +encouraged him to regard Hindley as a reprobate; and, night after +night, he regularly grumbled out a long string of tales against +Heathcliff and Catherine: always minding to flatter Earnshaw’s weakness +by heaping the heaviest blame on the latter. + +Certainly she had ways with her such as I never saw a child take up +before; and she put all of us past our patience fifty times and oftener +in a day: from the hour she came downstairs till the hour she went to +bed, we had not a minute’s security that she wouldn’t be in mischief. +Her spirits were always at high-water mark, her tongue always +going—singing, laughing, and plaguing everybody who would not do the +same. A wild, wicked slip she was—but she had the bonniest eye, the +sweetest smile, and lightest foot in the parish: and, after all, I +believe she meant no harm; for when once she made you cry in good +earnest, it seldom happened that she would not keep you company, and +oblige you to be quiet that you might comfort her. She was much too +fond of Heathcliff. The greatest punishment we could invent for her was +to keep her separate from him: yet she got chided more than any of us +on his account. In play, she liked exceedingly to act the little +mistress; using her hands freely, and commanding her companions: she +did so to me, but I would not bear slapping and ordering; and so I let +her know. + +Now, Mr. Earnshaw did not understand jokes from his children: he had +always been strict and grave with them; and Catherine, on her part, had +no idea why her father should be crosser and less patient in his ailing +condition than he was in his prime. His peevish reproofs wakened in her +a naughty delight to provoke him: she was never so happy as when we +were all scolding her at once, and she defying us with her bold, saucy +look, and her ready words; turning Joseph’s religious curses into +ridicule, baiting me, and doing just what her father hated most—showing +how her pretended insolence, which he thought real, had more power over +Heathcliff than his kindness: how the boy would do _her_ bidding in +anything, and _his_ only when it suited his own inclination. After +behaving as badly as possible all day, she sometimes came fondling to +make it up at night. “Nay, Cathy,” the old man would say, “I cannot +love thee, thou’rt worse than thy brother. Go, say thy prayers, child, +and ask God’s pardon. I doubt thy mother and I must rue that we ever +reared thee!” That made her cry, at first; and then being repulsed +continually hardened her, and she laughed if I told her to say she was +sorry for her faults, and beg to be forgiven. + +But the hour came, at last, that ended Mr. Earnshaw’s troubles on +earth. He died quietly in his chair one October evening, seated by the +fire-side. A high wind blustered round the house, and roared in the +chimney: it sounded wild and stormy, yet it was not cold, and we were +all together—I, a little removed from the hearth, busy at my knitting, +and Joseph reading his Bible near the table (for the servants generally +sat in the house then, after their work was done). Miss Cathy had been +sick, and that made her still; she leant against her father’s knee, and +Heathcliff was lying on the floor with his head in her lap. I remember +the master, before he fell into a doze, stroking her bonny hair—it +pleased him rarely to see her gentle—and saying, “Why canst thou not +always be a good lass, Cathy?” And she turned her face up to his, and +laughed, and answered, “Why cannot you always be a good man, father?” +But as soon as she saw him vexed again, she kissed his hand, and said +she would sing him to sleep. She began singing very low, till his +fingers dropped from hers, and his head sank on his breast. Then I told +her to hush, and not stir, for fear she should wake him. We all kept as +mute as mice a full half-hour, and should have done so longer, only +Joseph, having finished his chapter, got up and said that he must rouse +the master for prayers and bed. He stepped forward, and called him by +name, and touched his shoulder; but he would not move: so he took the +candle and looked at him. I thought there was something wrong as he set +down the light; and seizing the children each by an arm, whispered them +to “frame upstairs, and make little din—they might pray alone that +evening—he had summut to do.” + +“I shall bid father good-night first,” said Catherine, putting her arms +round his neck, before we could hinder her. The poor thing discovered +her loss directly—she screamed out—“Oh, he’s dead, Heathcliff! he’s +dead!” And they both set up a heart-breaking cry. + +I joined my wail to theirs, loud and bitter; but Joseph asked what we +could be thinking of to roar in that way over a saint in heaven. He +told me to put on my cloak and run to Gimmerton for the doctor and the +parson. I could not guess the use that either would be of, then. +However, I went, through wind and rain, and brought one, the doctor, +back with me; the other said he would come in the morning. Leaving +Joseph to explain matters, I ran to the children’s room: their door was +ajar, I saw they had never lain down, though it was past midnight; but +they were calmer, and did not need me to console them. The little souls +were comforting each other with better thoughts than I could have hit +on: no parson in the world ever pictured heaven so beautifully as they +did, in their innocent talk; and, while I sobbed and listened, I could +not help wishing we were all there safe together. + + + + +CHAPTER VI + + +Mr. Hindley came home to the funeral; and—a thing that amazed us, and +set the neighbours gossiping right and left—he brought a wife with him. +What she was, and where she was born, he never informed us: probably, +she had neither money nor name to recommend her, or he would scarcely +have kept the union from his father. + +She was not one that would have disturbed the house much on her own +account. Every object she saw, the moment she crossed the threshold, +appeared to delight her; and every circumstance that took place about +her: except the preparing for the burial, and the presence of the +mourners. I thought she was half silly, from her behaviour while that +went on: she ran into her chamber, and made me come with her, though I +should have been dressing the children: and there she sat shivering and +clasping her hands, and asking repeatedly—“Are they gone yet?” Then she +began describing with hysterical emotion the effect it produced on her +to see black; and started, and trembled, and, at last, fell +a-weeping—and when I asked what was the matter, answered, she didn’t +know; but she felt so afraid of dying! I imagined her as little likely +to die as myself. She was rather thin, but young, and +fresh-complexioned, and her eyes sparkled as bright as diamonds. I did +remark, to be sure, that mounting the stairs made her breathe very +quick; that the least sudden noise set her all in a quiver, and that +she coughed troublesomely sometimes: but I knew nothing of what these +symptoms portended, and had no impulse to sympathise with her. We don’t +in general take to foreigners here, Mr. Lockwood, unless they take to +us first. + +Young Earnshaw was altered considerably in the three years of his +absence. He had grown sparer, and lost his colour, and spoke and +dressed quite differently; and, on the very day of his return, he told +Joseph and me we must thenceforth quarter ourselves in the +back-kitchen, and leave the house for him. Indeed, he would have +carpeted and papered a small spare room for a parlour; but his wife +expressed such pleasure at the white floor and huge glowing fireplace, +at the pewter dishes and delf-case, and dog-kennel, and the wide space +there was to move about in where they usually sat, that he thought it +unnecessary to her comfort, and so dropped the intention. + +She expressed pleasure, too, at finding a sister among her new +acquaintance; and she prattled to Catherine, and kissed her, and ran +about with her, and gave her quantities of presents, at the beginning. +Her affection tired very soon, however, and when she grew peevish, +Hindley became tyrannical. A few words from her, evincing a dislike to +Heathcliff, were enough to rouse in him all his old hatred of the boy. +He drove him from their company to the servants, deprived him of the +instructions of the curate, and insisted that he should labour out of +doors instead; compelling him to do so as hard as any other lad on the +farm. + +Heathcliff bore his degradation pretty well at first, because Cathy +taught him what she learnt, and worked or played with him in the +fields. They both promised fair to grow up as rude as savages; the +young master being entirely negligent how they behaved, and what they +did, so they kept clear of him. He would not even have seen after their +going to church on Sundays, only Joseph and the curate reprimanded his +carelessness when they absented themselves; and that reminded him to +order Heathcliff a flogging, and Catherine a fast from dinner or +supper. But it was one of their chief amusements to run away to the +moors in the morning and remain there all day, and the after punishment +grew a mere thing to laugh at. The curate might set as many chapters as +he pleased for Catherine to get by heart, and Joseph might thrash +Heathcliff till his arm ached; they forgot everything the minute they +were together again: at least the minute they had contrived some +naughty plan of revenge; and many a time I’ve cried to myself to watch +them growing more reckless daily, and I not daring to speak a syllable, +for fear of losing the small power I still retained over the unfriended +creatures. One Sunday evening, it chanced that they were banished from +the sitting-room, for making a noise, or a light offence of the kind; +and when I went to call them to supper, I could discover them nowhere. +We searched the house, above and below, and the yard and stables; they +were invisible: and, at last, Hindley in a passion told us to bolt the +doors, and swore nobody should let them in that night. The household +went to bed; and I, too anxious to lie down, opened my lattice and put +my head out to hearken, though it rained: determined to admit them in +spite of the prohibition, should they return. In a while, I +distinguished steps coming up the road, and the light of a lantern +glimmered through the gate. I threw a shawl over my head and ran to +prevent them from waking Mr. Earnshaw by knocking. There was +Heathcliff, by himself: it gave me a start to see him alone. + +“Where is Miss Catherine?” I cried hurriedly. “No accident, I hope?” +“At Thrushcross Grange,” he answered; “and I would have been there too, +but they had not the manners to ask me to stay.” “Well, you will catch +it!” I said: “you’ll never be content till you’re sent about your +business. What in the world led you wandering to Thrushcross Grange?” +“Let me get off my wet clothes, and I’ll tell you all about it, Nelly,” +he replied. I bid him beware of rousing the master, and while he +undressed and I waited to put out the candle, he continued—“Cathy and I +escaped from the wash-house to have a ramble at liberty, and getting a +glimpse of the Grange lights, we thought we would just go and see +whether the Lintons passed their Sunday evenings standing shivering in +corners, while their father and mother sat eating and drinking, and +singing and laughing, and burning their eyes out before the fire. Do +you think they do? Or reading sermons, and being catechised by their +man-servant, and set to learn a column of Scripture names, if they +don’t answer properly?” “Probably not,” I responded. “They are good +children, no doubt, and don’t deserve the treatment you receive, for +your bad conduct.” “Don’t cant, Nelly,” he said: “nonsense! We ran from +the top of the Heights to the park, without stopping—Catherine +completely beaten in the race, because she was barefoot. You’ll have to +seek for her shoes in the bog to-morrow. We crept through a broken +hedge, groped our way up the path, and planted ourselves on a +flower-plot under the drawing-room window. The light came from thence; +they had not put up the shutters, and the curtains were only half +closed. Both of us were able to look in by standing on the basement, +and clinging to the ledge, and we saw—ah! it was beautiful—a splendid +place carpeted with crimson, and crimson-covered chairs and tables, and +a pure white ceiling bordered by gold, a shower of glass-drops hanging +in silver chains from the centre, and shimmering with little soft +tapers. Old Mr. and Mrs. Linton were not there; Edgar and his sister +had it entirely to themselves. Shouldn’t they have been happy? We +should have thought ourselves in heaven! And now, guess what your good +children were doing? Isabella—I believe she is eleven, a year younger +than Cathy—lay screaming at the farther end of the room, shrieking as +if witches were running red-hot needles into her. Edgar stood on the +hearth weeping silently, and in the middle of the table sat a little +dog, shaking its paw and yelping; which, from their mutual accusations, +we understood they had nearly pulled in two between them. The idiots! +That was their pleasure! to quarrel who should hold a heap of warm +hair, and each begin to cry because both, after struggling to get it, +refused to take it. We laughed outright at the petted things; we did +despise them! When would you catch me wishing to have what Catherine +wanted? or find us by ourselves, seeking entertainment in yelling, and +sobbing, and rolling on the ground, divided by the whole room? I’d not +exchange, for a thousand lives, my condition here, for Edgar Linton’s +at Thrushcross Grange—not if I might have the privilege of flinging +Joseph off the highest gable, and painting the house-front with +Hindley’s blood!” + +“Hush, hush!” I interrupted. “Still you have not told me, Heathcliff, +how Catherine is left behind?” + +“I told you we laughed,” he answered. “The Lintons heard us, and with +one accord they shot like arrows to the door; there was silence, and +then a cry, ‘Oh, mamma, mamma! Oh, papa! Oh, mamma, come here. Oh, +papa, oh!’ They really did howl out something in that way. We made +frightful noises to terrify them still more, and then we dropped off +the ledge, because somebody was drawing the bars, and we felt we had +better flee. I had Cathy by the hand, and was urging her on, when all +at once she fell down. ‘Run, Heathcliff, run!’ she whispered. ‘They +have let the bull-dog loose, and he holds me!’ The devil had seized her +ankle, Nelly: I heard his abominable snorting. She did not yell out—no! +she would have scorned to do it, if she had been spitted on the horns +of a mad cow. I did, though: I vociferated curses enough to annihilate +any fiend in Christendom; and I got a stone and thrust it between his +jaws, and tried with all my might to cram it down his throat. A beast +of a servant came up with a lantern, at last, shouting—‘Keep fast, +Skulker, keep fast!’ He changed his note, however, when he saw +Skulker’s game. The dog was throttled off; his huge, purple tongue +hanging half a foot out of his mouth, and his pendent lips streaming +with bloody slaver. The man took Cathy up; she was sick: not from fear, +I’m certain, but from pain. He carried her in; I followed, grumbling +execrations and vengeance. ‘What prey, Robert?’ hallooed Linton from +the entrance. ‘Skulker has caught a little girl, sir,’ he replied; ‘and +there’s a lad here,’ he added, making a clutch at me, ‘who looks an +out-and-outer! Very like the robbers were for putting them through the +window to open the doors to the gang after all were asleep, that they +might murder us at their ease. Hold your tongue, you foul-mouthed +thief, you! you shall go to the gallows for this. Mr. Linton, sir, +don’t lay by your gun.’ ‘No, no, Robert,’ said the old fool. ‘The +rascals knew that yesterday was my rent-day: they thought to have me +cleverly. Come in; I’ll furnish them a reception. There, John, fasten +the chain. Give Skulker some water, Jenny. To beard a magistrate in his +stronghold, and on the Sabbath, too! Where will their insolence stop? +Oh, my dear Mary, look here! Don’t be afraid, it is but a boy—yet the +villain scowls so plainly in his face; would it not be a kindness to +the country to hang him at once, before he shows his nature in acts as +well as features?’ He pulled me under the chandelier, and Mrs. Linton +placed her spectacles on her nose and raised her hands in horror. The +cowardly children crept nearer also, Isabella lisping—‘Frightful thing! +Put him in the cellar, papa. He’s exactly like the son of the +fortune-teller that stole my tame pheasant. Isn’t he, Edgar?’ + +“While they examined me, Cathy came round; she heard the last speech, +and laughed. Edgar Linton, after an inquisitive stare, collected +sufficient wit to recognise her. They see us at church, you know, +though we seldom meet them elsewhere. ‘That’s Miss Earnshaw!’ he +whispered to his mother, ‘and look how Skulker has bitten her—how her +foot bleeds!’ + +“‘Miss Earnshaw? Nonsense!’ cried the dame; ‘Miss Earnshaw scouring the +country with a gipsy! And yet, my dear, the child is in mourning—surely +it is—and she may be lamed for life!’ + +“‘What culpable carelessness in her brother!’ exclaimed Mr. Linton, +turning from me to Catherine. ‘I’ve understood from Shielders’” (that +was the curate, sir) “‘that he lets her grow up in absolute heathenism. +But who is this? Where did she pick up this companion? Oho! I declare +he is that strange acquisition my late neighbour made, in his journey +to Liverpool—a little Lascar, or an American or Spanish castaway.’ + +“‘A wicked boy, at all events,’ remarked the old lady, ‘and quite unfit +for a decent house! Did you notice his language, Linton? I’m shocked +that my children should have heard it.’ + +“I recommenced cursing—don’t be angry, Nelly—and so Robert was ordered +to take me off. I refused to go without Cathy; he dragged me into the +garden, pushed the lantern into my hand, assured me that Mr. Earnshaw +should be informed of my behaviour, and, bidding me march directly, +secured the door again. The curtains were still looped up at one +corner, and I resumed my station as spy; because, if Catherine had +wished to return, I intended shattering their great glass panes to a +million of fragments, unless they let her out. She sat on the sofa +quietly. Mrs. Linton took off the grey cloak of the dairy-maid which we +had borrowed for our excursion, shaking her head and expostulating with +her, I suppose: she was a young lady, and they made a distinction +between her treatment and mine. Then the woman-servant brought a basin +of warm water, and washed her feet; and Mr. Linton mixed a tumbler of +negus, and Isabella emptied a plateful of cakes into her lap, and Edgar +stood gaping at a distance. Afterwards, they dried and combed her +beautiful hair, and gave her a pair of enormous slippers, and wheeled +her to the fire; and I left her, as merry as she could be, dividing her +food between the little dog and Skulker, whose nose she pinched as he +ate; and kindling a spark of spirit in the vacant blue eyes of the +Lintons—a dim reflection from her own enchanting face. I saw they were +full of stupid admiration; she is so immeasurably superior to them—to +everybody on earth, is she not, Nelly?” + +“There will more come of this business than you reckon on,” I answered, +covering him up and extinguishing the light. “You are incurable, +Heathcliff; and Mr. Hindley will have to proceed to extremities, see if +he won’t.” My words came truer than I desired. The luckless adventure +made Earnshaw furious. And then Mr. Linton, to mend matters, paid us a +visit himself on the morrow, and read the young master such a lecture +on the road he guided his family, that he was stirred to look about +him, in earnest. Heathcliff received no flogging, but he was told that +the first word he spoke to Miss Catherine should ensure a dismissal; +and Mrs. Earnshaw undertook to keep her sister-in-law in due restraint +when she returned home; employing art, not force: with force she would +have found it impossible. + + + + +CHAPTER VII + + +Cathy stayed at Thrushcross Grange five weeks: till Christmas. By that +time her ankle was thoroughly cured, and her manners much improved. The +mistress visited her often in the interval, and commenced her plan of +reform by trying to raise her self-respect with fine clothes and +flattery, which she took readily; so that, instead of a wild, hatless +little savage jumping into the house, and rushing to squeeze us all +breathless, there lighted from a handsome black pony a very dignified +person, with brown ringlets falling from the cover of a feathered +beaver, and a long cloth habit, which she was obliged to hold up with +both hands that she might sail in. Hindley lifted her from her horse, +exclaiming delightedly, “Why, Cathy, you are quite a beauty! I should +scarcely have known you: you look like a lady now. Isabella Linton is +not to be compared with her, is she, Frances?” “Isabella has not her +natural advantages,” replied his wife: “but she must mind and not grow +wild again here. Ellen, help Miss Catherine off with her things—Stay, +dear, you will disarrange your curls—let me untie your hat.” + +I removed the habit, and there shone forth beneath a grand plaid silk +frock, white trousers, and burnished shoes; and, while her eyes +sparkled joyfully when the dogs came bounding up to welcome her, she +dared hardly touch them lest they should fawn upon her splendid +garments. She kissed me gently: I was all flour making the Christmas +cake, and it would not have done to give me a hug; and then she looked +round for Heathcliff. Mr. and Mrs. Earnshaw watched anxiously their +meeting; thinking it would enable them to judge, in some measure, what +grounds they had for hoping to succeed in separating the two friends. + +Heathcliff was hard to discover, at first. If he were careless, and +uncared for, before Catherine’s absence, he had been ten times more so +since. Nobody but I even did him the kindness to call him a dirty boy, +and bid him wash himself, once a week; and children of his age seldom +have a natural pleasure in soap and water. Therefore, not to mention +his clothes, which had seen three months’ service in mire and dust, and +his thick uncombed hair, the surface of his face and hands was dismally +beclouded. He might well skulk behind the settle, on beholding such a +bright, graceful damsel enter the house, instead of a rough-headed +counterpart of himself, as he expected. “Is Heathcliff not here?” she +demanded, pulling off her gloves, and displaying fingers wonderfully +whitened with doing nothing and staying indoors. + +“Heathcliff, you may come forward,” cried Mr. Hindley, enjoying his +discomfiture, and gratified to see what a forbidding young blackguard +he would be compelled to present himself. “You may come and wish Miss +Catherine welcome, like the other servants.” + +Cathy, catching a glimpse of her friend in his concealment, flew to +embrace him; she bestowed seven or eight kisses on his cheek within the +second, and then stopped, and drawing back, burst into a laugh, +exclaiming, “Why, how very black and cross you look! and how—how funny +and grim! But that’s because I’m used to Edgar and Isabella Linton. +Well, Heathcliff, have you forgotten me?” + +She had some reason to put the question, for shame and pride threw +double gloom over his countenance, and kept him immovable. + +“Shake hands, Heathcliff,” said Mr. Earnshaw, condescendingly; “once in +a way, that is permitted.” + +“I shall not,” replied the boy, finding his tongue at last; “I shall +not stand to be laughed at. I shall not bear it!” + +And he would have broken from the circle, but Miss Cathy seized him +again. + +“I did not mean to laugh at you,” she said; “I could not hinder myself: +Heathcliff, shake hands at least! What are you sulky for? It was only +that you looked odd. If you wash your face and brush your hair, it will +be all right: but you are so dirty!” + +She gazed concernedly at the dusky fingers she held in her own, and +also at her dress; which she feared had gained no embellishment from +its contact with his. + +“You needn’t have touched me!” he answered, following her eye and +snatching away his hand. “I shall be as dirty as I please: and I like +to be dirty, and I will be dirty.” + +With that he dashed headforemost out of the room, amid the merriment of +the master and mistress, and to the serious disturbance of Catherine; +who could not comprehend how her remarks should have produced such an +exhibition of bad temper. + +After playing lady’s-maid to the new-comer, and putting my cakes in the +oven, and making the house and kitchen cheerful with great fires, +befitting Christmas-eve, I prepared to sit down and amuse myself by +singing carols, all alone; regardless of Joseph’s affirmations that he +considered the merry tunes I chose as next door to songs. He had +retired to private prayer in his chamber, and Mr. and Mrs. Earnshaw +were engaging Missy’s attention by sundry gay trifles bought for her to +present to the little Lintons, as an acknowledgment of their kindness. +They had invited them to spend the morrow at Wuthering Heights, and the +invitation had been accepted, on one condition: Mrs. Linton begged that +her darlings might be kept carefully apart from that “naughty swearing +boy.” + +Under these circumstances I remained solitary. I smelt the rich scent +of the heating spices; and admired the shining kitchen utensils, the +polished clock, decked in holly, the silver mugs ranged on a tray ready +to be filled with mulled ale for supper; and above all, the speckless +purity of my particular care—the scoured and well-swept floor. I gave +due inward applause to every object, and then I remembered how old +Earnshaw used to come in when all was tidied, and call me a cant lass, +and slip a shilling into my hand as a Christmas-box; and from that I +went on to think of his fondness for Heathcliff, and his dread lest he +should suffer neglect after death had removed him: and that naturally +led me to consider the poor lad’s situation now, and from singing I +changed my mind to crying. It struck me soon, however, there would be +more sense in endeavouring to repair some of his wrongs than shedding +tears over them: I got up and walked into the court to seek him. He was +not far; I found him smoothing the glossy coat of the new pony in the +stable, and feeding the other beasts, according to custom. + +“Make haste, Heathcliff!” I said, “the kitchen is so comfortable; and +Joseph is upstairs: make haste, and let me dress you smart before Miss +Cathy comes out, and then you can sit together, with the whole hearth +to yourselves, and have a long chatter till bedtime.” + +He proceeded with his task, and never turned his head towards me. + +“Come—are you coming?” I continued. “There’s a little cake for each of +you, nearly enough; and you’ll need half-an-hour’s donning.” + +I waited five minutes, but getting no answer left him. Catherine supped +with her brother and sister-in-law: Joseph and I joined at an +unsociable meal, seasoned with reproofs on one side and sauciness on +the other. His cake and cheese remained on the table all night for the +fairies. He managed to continue work till nine o’clock, and then +marched dumb and dour to his chamber. Cathy sat up late, having a world +of things to order for the reception of her new friends: she came into +the kitchen once to speak to her old one; but he was gone, and she only +stayed to ask what was the matter with him, and then went back. In the +morning he rose early; and, as it was a holiday, carried his ill-humour +on to the moors; not re-appearing till the family were departed for +church. Fasting and reflection seemed to have brought him to a better +spirit. He hung about me for a while, and having screwed up his +courage, exclaimed abruptly—“Nelly, make me decent, I’m going to be +good.” + +“High time, Heathcliff,” I said; “you _have_ grieved Catherine: she’s +sorry she ever came home, I daresay! It looks as if you envied her, +because she is more thought of than you.” + +The notion of _envying_ Catherine was incomprehensible to him, but the +notion of grieving her he understood clearly enough. + +“Did she say she was grieved?” he inquired, looking very serious. + +“She cried when I told her you were off again this morning.” + +“Well, _I_ cried last night,” he returned, “and I had more reason to +cry than she.” + +“Yes: you had the reason of going to bed with a proud heart and an +empty stomach,” said I. “Proud people breed sad sorrows for themselves. +But, if you be ashamed of your touchiness, you must ask pardon, mind, +when she comes in. You must go up and offer to kiss her, and say—you +know best what to say; only do it heartily, and not as if you thought +her converted into a stranger by her grand dress. And now, though I +have dinner to get ready, I’ll steal time to arrange you so that Edgar +Linton shall look quite a doll beside you: and that he does. You are +younger, and yet, I’ll be bound, you are taller and twice as broad +across the shoulders; you could knock him down in a twinkling; don’t +you feel that you could?” + +Heathcliff’s face brightened a moment; then it was overcast afresh, and +he sighed. + +“But, Nelly, if I knocked him down twenty times, that wouldn’t make him +less handsome or me more so. I wish I had light hair and a fair skin, +and was dressed and behaved as well, and had a chance of being as rich +as he will be!” + +“And cried for mamma at every turn,” I added, “and trembled if a +country lad heaved his fist against you, and sat at home all day for a +shower of rain. Oh, Heathcliff, you are showing a poor spirit! Come to +the glass, and I’ll let you see what you should wish. Do you mark those +two lines between your eyes; and those thick brows, that, instead of +rising arched, sink in the middle; and that couple of black fiends, so +deeply buried, who never open their windows boldly, but lurk glinting +under them, like devil’s spies? Wish and learn to smooth away the surly +wrinkles, to raise your lids frankly, and change the fiends to +confident, innocent angels, suspecting and doubting nothing, and always +seeing friends where they are not sure of foes. Don’t get the +expression of a vicious cur that appears to know the kicks it gets are +its desert, and yet hates all the world, as well as the kicker, for +what it suffers.” + +“In other words, I must wish for Edgar Linton’s great blue eyes and +even forehead,” he replied. “I do—and that won’t help me to them.” + +“A good heart will help you to a bonny face, my lad,” I continued, “if +you were a regular black; and a bad one will turn the bonniest into +something worse than ugly. And now that we’ve done washing, and +combing, and sulking—tell me whether you don’t think yourself rather +handsome? I’ll tell you, I do. You’re fit for a prince in disguise. Who +knows but your father was Emperor of China, and your mother an Indian +queen, each of them able to buy up, with one week’s income, Wuthering +Heights and Thrushcross Grange together? And you were kidnapped by +wicked sailors and brought to England. Were I in your place, I would +frame high notions of my birth; and the thoughts of what I was should +give me courage and dignity to support the oppressions of a little +farmer!” + +So I chattered on; and Heathcliff gradually lost his frown and began to +look quite pleasant, when all at once our conversation was interrupted +by a rumbling sound moving up the road and entering the court. He ran +to the window and I to the door, just in time to behold the two Lintons +descend from the family carriage, smothered in cloaks and furs, and the +Earnshaws dismount from their horses: they often rode to church in +winter. Catherine took a hand of each of the children, and brought them +into the house and set them before the fire, which quickly put colour +into their white faces. + +I urged my companion to hasten now and show his amiable humour, and he +willingly obeyed; but ill luck would have it that, as he opened the +door leading from the kitchen on one side, Hindley opened it on the +other. They met, and the master, irritated at seeing him clean and +cheerful, or, perhaps, eager to keep his promise to Mrs. Linton, shoved +him back with a sudden thrust, and angrily bade Joseph “keep the fellow +out of the room—send him into the garret till dinner is over. He’ll be +cramming his fingers in the tarts and stealing the fruit, if left alone +with them a minute.” + +“Nay, sir,” I could not avoid answering, “he’ll touch nothing, not he: +and I suppose he must have his share of the dainties as well as we.” + +“He shall have his share of my hand, if I catch him downstairs till +dark,” cried Hindley. “Begone, you vagabond! What! you are attempting +the coxcomb, are you? Wait till I get hold of those elegant locks—see +if I won’t pull them a bit longer!” + +“They are long enough already,” observed Master Linton, peeping from +the doorway; “I wonder they don’t make his head ache. It’s like a +colt’s mane over his eyes!” + +He ventured this remark without any intention to insult; but +Heathcliff’s violent nature was not prepared to endure the appearance +of impertinence from one whom he seemed to hate, even then, as a rival. +He seized a tureen of hot apple sauce, the first thing that came under +his gripe, and dashed it full against the speaker’s face and neck; who +instantly commenced a lament that brought Isabella and Catherine +hurrying to the place. Mr. Earnshaw snatched up the culprit directly +and conveyed him to his chamber; where, doubtless, he administered a +rough remedy to cool the fit of passion, for he appeared red and +breathless. I got the dish-cloth, and rather spitefully scrubbed +Edgar’s nose and mouth, affirming it served him right for meddling. His +sister began weeping to go home, and Cathy stood by confounded, +blushing for all. + +“You should not have spoken to him!” she expostulated with Master +Linton. “He was in a bad temper, and now you’ve spoilt your visit; and +he’ll be flogged: I hate him to be flogged! I can’t eat my dinner. Why +did you speak to him, Edgar?” + +“I didn’t,” sobbed the youth, escaping from my hands, and finishing the +remainder of the purification with his cambric pocket-handkerchief. “I +promised mamma that I wouldn’t say one word to him, and I didn’t.” + +“Well, don’t cry,” replied Catherine, contemptuously; “you’re not +killed. Don’t make more mischief; my brother is coming: be quiet! Hush, +Isabella! Has anybody hurt _you?_” + +“There, there, children—to your seats!” cried Hindley, bustling in. +“That brute of a lad has warmed me nicely. Next time, Master Edgar, +take the law into your own fists—it will give you an appetite!” + +The little party recovered its equanimity at sight of the fragrant +feast. They were hungry after their ride, and easily consoled, since no +real harm had befallen them. Mr. Earnshaw carved bountiful platefuls, +and the mistress made them merry with lively talk. I waited behind her +chair, and was pained to behold Catherine, with dry eyes and an +indifferent air, commence cutting up the wing of a goose before her. +“An unfeeling child,” I thought to myself; “how lightly she dismisses +her old playmate’s troubles. I could not have imagined her to be so +selfish.” She lifted a mouthful to her lips: then she set it down +again: her cheeks flushed, and the tears gushed over them. She slipped +her fork to the floor, and hastily dived under the cloth to conceal her +emotion. I did not call her unfeeling long; for I perceived she was in +purgatory throughout the day, and wearying to find an opportunity of +getting by herself, or paying a visit to Heathcliff, who had been +locked up by the master: as I discovered, on endeavouring to introduce +to him a private mess of victuals. + +In the evening we had a dance. Cathy begged that he might be liberated +then, as Isabella Linton had no partner: her entreaties were vain, and +I was appointed to supply the deficiency. We got rid of all gloom in +the excitement of the exercise, and our pleasure was increased by the +arrival of the Gimmerton band, mustering fifteen strong: a trumpet, a +trombone, clarionets, bassoons, French horns, and a bass viol, besides +singers. They go the rounds of all the respectable houses, and receive +contributions every Christmas, and we esteemed it a first-rate treat to +hear them. After the usual carols had been sung, we set them to songs +and glees. Mrs. Earnshaw loved the music, and so they gave us plenty. + +Catherine loved it too: but she said it sounded sweetest at the top of +the steps, and she went up in the dark: I followed. They shut the house +door below, never noting our absence, it was so full of people. She +made no stay at the stairs’-head, but mounted farther, to the garret +where Heathcliff was confined, and called him. He stubbornly declined +answering for a while: she persevered, and finally persuaded him to +hold communion with her through the boards. I let the poor things +converse unmolested, till I supposed the songs were going to cease, and +the singers to get some refreshment: then I clambered up the ladder to +warn her. Instead of finding her outside, I heard her voice within. The +little monkey had crept by the skylight of one garret, along the roof, +into the skylight of the other, and it was with the utmost difficulty I +could coax her out again. When she did come, Heathcliff came with her, +and she insisted that I should take him into the kitchen, as my +fellow-servant had gone to a neighbour’s, to be removed from the sound +of our “devil’s psalmody,” as it pleased him to call it. I told them I +intended by no means to encourage their tricks: but as the prisoner had +never broken his fast since yesterday’s dinner, I would wink at his +cheating Mr. Hindley that once. He went down: I set him a stool by the +fire, and offered him a quantity of good things: but he was sick and +could eat little, and my attempts to entertain him were thrown away. He +leant his two elbows on his knees, and his chin on his hands, and +remained rapt in dumb meditation. On my inquiring the subject of his +thoughts, he answered gravely—“I’m trying to settle how I shall pay +Hindley back. I don’t care how long I wait, if I can only do it at +last. I hope he will not die before I do!” + +“For shame, Heathcliff!” said I. “It is for God to punish wicked +people; we should learn to forgive.” + +“No, God won’t have the satisfaction that I shall,” he returned. “I +only wish I knew the best way! Let me alone, and I’ll plan it out: +while I’m thinking of that I don’t feel pain.” + +But, Mr. Lockwood, I forget these tales cannot divert you. I’m annoyed +how I should dream of chattering on at such a rate; and your gruel +cold, and you nodding for bed! I could have told Heathcliff’s history, +all that you need hear, in half a dozen words. + +* * * * * + + +Thus interrupting herself, the housekeeper rose, and proceeded to lay +aside her sewing; but I felt incapable of moving from the hearth, and I +was very far from nodding. “Sit still, Mrs. Dean,” I cried; “do sit +still another half-hour. You’ve done just right to tell the story +leisurely. That is the method I like; and you must finish it in the +same style. I am interested in every character you have mentioned, more +or less.” + +“The clock is on the stroke of eleven, sir.” + +“No matter—I’m not accustomed to go to bed in the long hours. One or +two is early enough for a person who lies till ten.” + +“You shouldn’t lie till ten. There’s the very prime of the morning gone +long before that time. A person who has not done one-half his day’s +work by ten o’clock, runs a chance of leaving the other half undone.” + +“Nevertheless, Mrs. Dean, resume your chair; because to-morrow I intend +lengthening the night till afternoon. I prognosticate for myself an +obstinate cold, at least.” + +“I hope not, sir. Well, you must allow me to leap over some three +years; during that space Mrs. Earnshaw—” + +“No, no, I’ll allow nothing of the sort! Are you acquainted with the +mood of mind in which, if you were seated alone, and the cat licking +its kitten on the rug before you, you would watch the operation so +intently that puss’s neglect of one ear would put you seriously out of +temper?” + +“A terribly lazy mood, I should say.” + +“On the contrary, a tiresomely active one. It is mine, at present; and, +therefore, continue minutely. I perceive that people in these regions +acquire over people in towns the value that a spider in a dungeon does +over a spider in a cottage, to their various occupants; and yet the +deepened attraction is not entirely owing to the situation of the +looker-on. They _do_ live more in earnest, more in themselves, and less +in surface, change, and frivolous external things. I could fancy a love +for life here almost possible; and I was a fixed unbeliever in any love +of a year’s standing. One state resembles setting a hungry man down to +a single dish, on which he may concentrate his entire appetite and do +it justice; the other, introducing him to a table laid out by French +cooks: he can perhaps extract as much enjoyment from the whole; but +each part is a mere atom in his regard and remembrance.” + +“Oh! here we are the same as anywhere else, when you get to know us,” +observed Mrs. Dean, somewhat puzzled at my speech. + +“Excuse me,” I responded; “you, my good friend, are a striking evidence +against that assertion. Excepting a few provincialisms of slight +consequence, you have no marks of the manners which I am habituated to +consider as peculiar to your class. I am sure you have thought a great +deal more than the generality of servants think. You have been +compelled to cultivate your reflective faculties for want of occasions +for frittering your life away in silly trifles.” + +Mrs. Dean laughed. + +“I certainly esteem myself a steady, reasonable kind of body,” she +said; “not exactly from living among the hills and seeing one set of +faces, and one series of actions, from year’s end to year’s end; but I +have undergone sharp discipline, which has taught me wisdom; and then, +I have read more than you would fancy, Mr. Lockwood. You could not open +a book in this library that I have not looked into, and got something +out of also: unless it be that range of Greek and Latin, and that of +French; and those I know one from another: it is as much as you can +expect of a poor man’s daughter. However, if I am to follow my story in +true gossip’s fashion, I had better go on; and instead of leaping three +years, I will be content to pass to the next summer—the summer of 1778, +that is nearly twenty-three years ago.” + + + + +CHAPTER VIII + + +On the morning of a fine June day my first bonny little nursling, and +the last of the ancient Earnshaw stock, was born. We were busy with the +hay in a far-away field, when the girl that usually brought our +breakfasts came running an hour too soon across the meadow and up the +lane, calling me as she ran. + +“Oh, such a grand bairn!” she panted out. “The finest lad that ever +breathed! But the doctor says missis must go: he says she’s been in a +consumption these many months. I heard him tell Mr. Hindley: and now +she has nothing to keep her, and she’ll be dead before winter. You must +come home directly. You’re to nurse it, Nelly: to feed it with sugar +and milk, and take care of it day and night. I wish I were you, because +it will be all yours when there is no missis!” + +“But is she very ill?” I asked, flinging down my rake and tying my +bonnet. + +“I guess she is; yet she looks bravely,” replied the girl, “and she +talks as if she thought of living to see it grow a man. She’s out of +her head for joy, it’s such a beauty! If I were her I’m certain I +should not die: I should get better at the bare sight of it, in spite +of Kenneth. I was fairly mad at him. Dame Archer brought the cherub +down to master, in the house, and his face just began to light up, when +the old croaker steps forward, and says he—‘Earnshaw, it’s a blessing +your wife has been spared to leave you this son. When she came, I felt +convinced we shouldn’t keep her long; and now, I must tell you, the +winter will probably finish her. Don’t take on, and fret about it too +much: it can’t be helped. And besides, you should have known better +than to choose such a rush of a lass!’” + +“And what did the master answer?” I inquired. + +“I think he swore: but I didn’t mind him, I was straining to see the +bairn,” and she began again to describe it rapturously. I, as zealous +as herself, hurried eagerly home to admire, on my part; though I was +very sad for Hindley’s sake. He had room in his heart only for two +idols—his wife and himself: he doted on both, and adored one, and I +couldn’t conceive how he would bear the loss. + +When we got to Wuthering Heights, there he stood at the front door; +and, as I passed in, I asked, “how was the baby?” + +“Nearly ready to run about, Nell!” he replied, putting on a cheerful +smile. + +“And the mistress?” I ventured to inquire; “the doctor says she’s—” + +“Damn the doctor!” he interrupted, reddening. “Frances is quite right: +she’ll be perfectly well by this time next week. Are you going +upstairs? will you tell her that I’ll come, if she’ll promise not to +talk. I left her because she would not hold her tongue; and she +must—tell her Mr. Kenneth says she must be quiet.” + +I delivered this message to Mrs. Earnshaw; she seemed in flighty +spirits, and replied merrily, “I hardly spoke a word, Ellen, and there +he has gone out twice, crying. Well, say I promise I won’t speak: but +that does not bind me not to laugh at him!” + +Poor soul! Till within a week of her death that gay heart never failed +her; and her husband persisted doggedly, nay, furiously, in affirming +her health improved every day. When Kenneth warned him that his +medicines were useless at that stage of the malady, and he needn’t put +him to further expense by attending her, he retorted, “I know you need +not—she’s well—she does not want any more attendance from you! She +never was in a consumption. It was a fever; and it is gone: her pulse +is as slow as mine now, and her cheek as cool.” + +He told his wife the same story, and she seemed to believe him; but one +night, while leaning on his shoulder, in the act of saying she thought +she should be able to get up to-morrow, a fit of coughing took her—a +very slight one—he raised her in his arms; she put her two hands about +his neck, her face changed, and she was dead. + +As the girl had anticipated, the child Hareton fell wholly into my +hands. Mr. Earnshaw, provided he saw him healthy and never heard him +cry, was contented, as far as regarded him. For himself, he grew +desperate: his sorrow was of that kind that will not lament. He neither +wept nor prayed; he cursed and defied: execrated God and man, and gave +himself up to reckless dissipation. The servants could not bear his +tyrannical and evil conduct long: Joseph and I were the only two that +would stay. I had not the heart to leave my charge; and besides, you +know, I had been his foster-sister, and excused his behaviour more +readily than a stranger would. Joseph remained to hector over tenants +and labourers; and because it was his vocation to be where he had +plenty of wickedness to reprove. + +The master’s bad ways and bad companions formed a pretty example for +Catherine and Heathcliff. His treatment of the latter was enough to +make a fiend of a saint. And, truly, it appeared as if the lad _were_ +possessed of something diabolical at that period. He delighted to +witness Hindley degrading himself past redemption; and became daily +more notable for savage sullenness and ferocity. I could not half tell +what an infernal house we had. The curate dropped calling, and nobody +decent came near us, at last; unless Edgar Linton’s visits to Miss +Cathy might be an exception. At fifteen she was the queen of the +country-side; she had no peer; and she did turn out a haughty, +headstrong creature! I own I did not like her, after infancy was past; +and I vexed her frequently by trying to bring down her arrogance: she +never took an aversion to me, though. She had a wondrous constancy to +old attachments: even Heathcliff kept his hold on her affections +unalterably; and young Linton, with all his superiority, found it +difficult to make an equally deep impression. He was my late master: +that is his portrait over the fireplace. It used to hang on one side, +and his wife’s on the other; but hers has been removed, or else you +might see something of what she was. Can you make that out? + +Mrs. Dean raised the candle, and I discerned a soft-featured face, +exceedingly resembling the young lady at the Heights, but more pensive +and amiable in expression. It formed a sweet picture. The long light +hair curled slightly on the temples; the eyes were large and serious; +the figure almost too graceful. I did not marvel how Catherine Earnshaw +could forget her first friend for such an individual. I marvelled much +how he, with a mind to correspond with his person, could fancy my idea +of Catherine Earnshaw. + +“A very agreeable portrait,” I observed to the house-keeper. “Is it +like?” + +“Yes,” she answered; “but he looked better when he was animated; that +is his everyday countenance: he wanted spirit in general.” + +Catherine had kept up her acquaintance with the Lintons since her +five-weeks’ residence among them; and as she had no temptation to show +her rough side in their company, and had the sense to be ashamed of +being rude where she experienced such invariable courtesy, she imposed +unwittingly on the old lady and gentleman by her ingenious cordiality; +gained the admiration of Isabella, and the heart and soul of her +brother: acquisitions that flattered her from the first—for she was +full of ambition—and led her to adopt a double character without +exactly intending to deceive any one. In the place where she heard +Heathcliff termed a “vulgar young ruffian,” and “worse than a brute,” +she took care not to act like him; but at home she had small +inclination to practise politeness that would only be laughed at, and +restrain an unruly nature when it would bring her neither credit nor +praise. + +Mr. Edgar seldom mustered courage to visit Wuthering Heights openly. He +had a terror of Earnshaw’s reputation, and shrunk from encountering +him; and yet he was always received with our best attempts at civility: +the master himself avoided offending him, knowing why he came; and if +he could not be gracious, kept out of the way. I rather think his +appearance there was distasteful to Catherine; she was not artful, +never played the coquette, and had evidently an objection to her two +friends meeting at all; for when Heathcliff expressed contempt of +Linton in his presence, she could not half coincide, as she did in his +absence; and when Linton evinced disgust and antipathy to Heathcliff, +she dared not treat his sentiments with indifference, as if +depreciation of her playmate were of scarcely any consequence to her. +I’ve had many a laugh at her perplexities and untold troubles, which +she vainly strove to hide from my mockery. That sounds ill-natured: but +she was so proud, it became really impossible to pity her distresses, +till she should be chastened into more humility. She did bring herself, +finally, to confess, and to confide in me: there was not a soul else +that she might fashion into an adviser. + +Mr. Hindley had gone from home one afternoon, and Heathcliff presumed +to give himself a holiday on the strength of it. He had reached the age +of sixteen then, I think, and without having bad features, or being +deficient in intellect, he contrived to convey an impression of inward +and outward repulsiveness that his present aspect retains no traces of. +In the first place, he had by that time lost the benefit of his early +education: continual hard work, begun soon and concluded late, had +extinguished any curiosity he once possessed in pursuit of knowledge, +and any love for books or learning. His childhood’s sense of +superiority, instilled into him by the favours of old Mr. Earnshaw, was +faded away. He struggled long to keep up an equality with Catherine in +her studies, and yielded with poignant though silent regret: but he +yielded completely; and there was no prevailing on him to take a step +in the way of moving upward, when he found he must, necessarily, sink +beneath his former level. Then personal appearance sympathised with +mental deterioration: he acquired a slouching gait and ignoble look; +his naturally reserved disposition was exaggerated into an almost +idiotic excess of unsociable moroseness; and he took a grim pleasure, +apparently, in exciting the aversion rather than the esteem of his few +acquaintance. + +Catherine and he were constant companions still at his seasons of +respite from labour; but he had ceased to express his fondness for her +in words, and recoiled with angry suspicion from her girlish caresses, +as if conscious there could be no gratification in lavishing such marks +of affection on him. On the before-named occasion he came into the +house to announce his intention of doing nothing, while I was assisting +Miss Cathy to arrange her dress: she had not reckoned on his taking it +into his head to be idle; and imagining she would have the whole place +to herself, she managed, by some means, to inform Mr. Edgar of her +brother’s absence, and was then preparing to receive him. + +“Cathy, are you busy this afternoon?” asked Heathcliff. “Are you going +anywhere?” + +“No, it is raining,” she answered. + +“Why have you that silk frock on, then?” he said. “Nobody coming here, +I hope?” + +“Not that I know of,” stammered Miss: “but you should be in the field +now, Heathcliff. It is an hour past dinner time; I thought you were +gone.” + +“Hindley does not often free us from his accursed presence,” observed +the boy. “I’ll not work any more to-day: I’ll stay with you.” + +“Oh, but Joseph will tell,” she suggested; “you’d better go!” + +“Joseph is loading lime on the further side of Penistone Crags; it will +take him till dark, and he’ll never know.” + +So saying, he lounged to the fire, and sat down. Catherine reflected +an instant, with knitted brows—she found it needful to smooth the way +for an intrusion. “Isabella and Edgar Linton talked of calling this +afternoon,” she said, at the conclusion of a minute’s silence. “As it +rains, I hardly expect them; but they may come, and if they do, you run +the risk of being scolded for no good.” + +“Order Ellen to say you are engaged, Cathy,” he persisted; “don’t turn +me out for those pitiful, silly friends of yours! I’m on the point, +sometimes, of complaining that they—but I’ll not—” + +“That they what?” cried Catherine, gazing at him with a troubled +countenance. “Oh, Nelly!” she added petulantly, jerking her head away +from my hands, “you’ve combed my hair quite out of curl! That’s enough; +let me alone. What are you on the point of complaining about, +Heathcliff?” + +“Nothing—only look at the almanack on that wall;” he pointed to a +framed sheet hanging near the window, and continued, “The crosses are +for the evenings you have spent with the Lintons, the dots for those +spent with me. Do you see? I’ve marked every day.” + +“Yes—very foolish: as if I took notice!” replied Catherine, in a +peevish tone. “And where is the sense of that?” + +“To show that I _do_ take notice,” said Heathcliff. + +“And should I always be sitting with you?” she demanded, growing more +irritated. “What good do I get? What do you talk about? You might be +dumb, or a baby, for anything you say to amuse me, or for anything you +do, either!” + +“You never told me before that I talked too little, or that you +disliked my company, Cathy!” exclaimed Heathcliff, in much agitation. + +“It’s no company at all, when people know nothing and say nothing,” she +muttered. + +Her companion rose up, but he hadn’t time to express his feelings +further, for a horse’s feet were heard on the flags, and having knocked +gently, young Linton entered, his face brilliant with delight at the +unexpected summons he had received. Doubtless Catherine marked the +difference between her friends, as one came in and the other went out. +The contrast resembled what you see in exchanging a bleak, hilly, coal +country for a beautiful fertile valley; and his voice and greeting were +as opposite as his aspect. He had a sweet, low manner of speaking, and +pronounced his words as you do: that’s less gruff than we talk here, +and softer. + +“I’m not come too soon, am I?” he said, casting a look at me: I had +begun to wipe the plate, and tidy some drawers at the far end in the +dresser. + +“No,” answered Catherine. “What are you doing there, Nelly?” + +“My work, Miss,” I replied. (Mr. Hindley had given me directions to +make a third party in any private visits Linton chose to pay.) + +She stepped behind me and whispered crossly, “Take yourself and your +dusters off; when company are in the house, servants don’t commence +scouring and cleaning in the room where they are!” + +“It’s a good opportunity, now that master is away,” I answered aloud: +“he hates me to be fidgeting over these things in his presence. I’m +sure Mr. Edgar will excuse me.” + +“I hate you to be fidgeting in _my_ presence,” exclaimed the young lady +imperiously, not allowing her guest time to speak: she had failed to +recover her equanimity since the little dispute with Heathcliff. + +“I’m sorry for it, Miss Catherine,” was my response; and I proceeded +assiduously with my occupation. + +She, supposing Edgar could not see her, snatched the cloth from my +hand, and pinched me, with a prolonged wrench, very spitefully on the +arm. I’ve said I did not love her, and rather relished mortifying her +vanity now and then: besides, she hurt me extremely; so I started up +from my knees, and screamed out, “Oh, Miss, that’s a nasty trick! You +have no right to nip me, and I’m not going to bear it.” + +“I didn’t touch you, you lying creature!” cried she, her fingers +tingling to repeat the act, and her ears red with rage. She never had +power to conceal her passion, it always set her whole complexion in a +blaze. + +“What’s that, then?” I retorted, showing a decided purple witness to +refute her. + +She stamped her foot, wavered a moment, and then, irresistibly impelled +by the naughty spirit within her, slapped me on the cheek: a stinging +blow that filled both eyes with water. + +“Catherine, love! Catherine!” interposed Linton, greatly shocked at the +double fault of falsehood and violence which his idol had committed. + +“Leave the room, Ellen!” she repeated, trembling all over. + +Little Hareton, who followed me everywhere, and was sitting near me on +the floor, at seeing my tears commenced crying himself, and sobbed out +complaints against “wicked aunt Cathy,” which drew her fury on to his +unlucky head: she seized his shoulders, and shook him till the poor +child waxed livid, and Edgar thoughtlessly laid hold of her hands to +deliver him. In an instant one was wrung free, and the astonished young +man felt it applied over his own ear in a way that could not be +mistaken for jest. He drew back in consternation. I lifted Hareton in +my arms, and walked off to the kitchen with him, leaving the door of +communication open, for I was curious to watch how they would settle +their disagreement. The insulted visitor moved to the spot where he had +laid his hat, pale and with a quivering lip. + +“That’s right!” I said to myself. “Take warning and begone! It’s a +kindness to let you have a glimpse of her genuine disposition.” + +“Where are you going?” demanded Catherine, advancing to the door. + +He swerved aside, and attempted to pass. + +“You must not go!” she exclaimed, energetically. + +“I must and shall!” he replied in a subdued voice. + +“No,” she persisted, grasping the handle; “not yet, Edgar Linton: sit +down; you shall not leave me in that temper. I should be miserable all +night, and I won’t be miserable for you!” + +“Can I stay after you have struck me?” asked Linton. + +Catherine was mute. + +“You’ve made me afraid and ashamed of you,” he continued; “I’ll not +come here again!” + +Her eyes began to glisten and her lids to twinkle. + +“And you told a deliberate untruth!” he said. + +“I didn’t!” she cried, recovering her speech; “I did nothing +deliberately. Well, go, if you please—get away! And now I’ll cry—I’ll +cry myself sick!” + +She dropped down on her knees by a chair, and set to weeping in serious +earnest. Edgar persevered in his resolution as far as the court; there +he lingered. I resolved to encourage him. + +“Miss is dreadfully wayward, sir,” I called out. “As bad as any marred +child: you’d better be riding home, or else she will be sick, only to +grieve us.” + +The soft thing looked askance through the window: he possessed the +power to depart as much as a cat possesses the power to leave a mouse +half killed, or a bird half eaten. Ah, I thought, there will be no +saving him: he’s doomed, and flies to his fate! And so it was: he +turned abruptly, hastened into the house again, shut the door behind +him; and when I went in a while after to inform them that Earnshaw had +come home rabid drunk, ready to pull the whole place about our ears +(his ordinary frame of mind in that condition), I saw the quarrel had +merely effected a closer intimacy—had broken the outworks of youthful +timidity, and enabled them to forsake the disguise of friendship, and +confess themselves lovers. + +Intelligence of Mr. Hindley’s arrival drove Linton speedily to his +horse, and Catherine to her chamber. I went to hide little Hareton, and +to take the shot out of the master’s fowling-piece, which he was fond +of playing with in his insane excitement, to the hazard of the lives of +any who provoked, or even attracted his notice too much; and I had hit +upon the plan of removing it, that he might do less mischief if he did +go the length of firing the gun. + + + + +CHAPTER IX + + +He entered, vociferating oaths dreadful to hear; and caught me in the +act of stowing his son away in the kitchen cupboard. Hareton was +impressed with a wholesome terror of encountering either his wild +beast’s fondness or his madman’s rage; for in one he ran a chance of +being squeezed and kissed to death, and in the other of being flung +into the fire, or dashed against the wall; and the poor thing remained +perfectly quiet wherever I chose to put him. + +“There, I’ve found it out at last!” cried Hindley, pulling me back by +the skin of my neck, like a dog. “By heaven and hell, you’ve sworn +between you to murder that child! I know how it is, now, that he is +always out of my way. But, with the help of Satan, I shall make you +swallow the carving-knife, Nelly! You needn’t laugh; for I’ve just +crammed Kenneth, head-downmost, in the Black-horse marsh; and two is +the same as one—and I want to kill some of you: I shall have no rest +till I do!” + +“But I don’t like the carving-knife, Mr. Hindley,” I answered; “it has +been cutting red herrings. I’d rather be shot, if you please.” + +“You’d rather be damned!” he said; “and so you shall. No law in England +can hinder a man from keeping his house decent, and mine’s abominable! +Open your mouth.” + +He held the knife in his hand, and pushed its point between my teeth: +but, for my part, I was never much afraid of his vagaries. I spat out, +and affirmed it tasted detestably—I would not take it on any account. + +“Oh!” said he, releasing me, “I see that hideous little villain is not +Hareton: I beg your pardon, Nell. If it be, he deserves flaying alive +for not running to welcome me, and for screaming as if I were a goblin. +Unnatural cub, come hither! I’ll teach thee to impose on a +good-hearted, deluded father. Now, don’t you think the lad would be +handsomer cropped? It makes a dog fiercer, and I love something +fierce—get me a scissors—something fierce and trim! Besides, it’s +infernal affectation—devilish conceit it is, to cherish our ears—we’re +asses enough without them. Hush, child, hush! Well then, it is my +darling! wisht, dry thy eyes—there’s a joy; kiss me. What! it won’t? +Kiss me, Hareton! Damn thee, kiss me! By God, as if I would rear such a +monster! As sure as I’m living, I’ll break the brat’s neck.” + +Poor Hareton was squalling and kicking in his father’s arms with all +his might, and redoubled his yells when he carried him upstairs and +lifted him over the banister. I cried out that he would frighten the +child into fits, and ran to rescue him. As I reached them, Hindley +leant forward on the rails to listen to a noise below; almost +forgetting what he had in his hands. “Who is that?” he asked, hearing +some one approaching the stairs’-foot. I leant forward also, for the +purpose of signing to Heathcliff, whose step I recognised, not to come +further; and, at the instant when my eye quitted Hareton, he gave a +sudden spring, delivered himself from the careless grasp that held him, +and fell. + +There was scarcely time to experience a thrill of horror before we saw +that the little wretch was safe. Heathcliff arrived underneath just at +the critical moment; by a natural impulse he arrested his descent, and +setting him on his feet, looked up to discover the author of the +accident. A miser who has parted with a lucky lottery ticket for five +shillings, and finds next day he has lost in the bargain five thousand +pounds, could not show a blanker countenance than he did on beholding +the figure of Mr. Earnshaw above. It expressed, plainer than words +could do, the intensest anguish at having made himself the instrument +of thwarting his own revenge. Had it been dark, I daresay he would have +tried to remedy the mistake by smashing Hareton’s skull on the steps; +but, we witnessed his salvation; and I was presently below with my +precious charge pressed to my heart. Hindley descended more leisurely, +sobered and abashed. + +“It is your fault, Ellen,” he said; “you should have kept him out of +sight: you should have taken him from me! Is he injured anywhere?” + +“Injured!” I cried angrily; “if he is not killed, he’ll be an idiot! +Oh! I wonder his mother does not rise from her grave to see how you use +him. You’re worse than a heathen—treating your own flesh and blood in +that manner!” + +He attempted to touch the child, who, on finding himself with me, +sobbed off his terror directly. At the first finger his father laid on +him, however, he shrieked again louder than before, and struggled as if +he would go into convulsions. + +“You shall not meddle with him!” I continued. “He hates you—they all +hate you—that’s the truth! A happy family you have; and a pretty state +you’re come to!” + +“I shall come to a prettier, yet, Nelly,” laughed the misguided man, +recovering his hardness. “At present, convey yourself and him away. And +hark you, Heathcliff! clear you too quite from my reach and hearing. I +wouldn’t murder you to-night; unless, perhaps, I set the house on fire: +but that’s as my fancy goes.” + +While saying this he took a pint bottle of brandy from the dresser, and +poured some into a tumbler. + +“Nay, don’t!” I entreated. “Mr. Hindley, do take warning. Have mercy on +this unfortunate boy, if you care nothing for yourself!” + +“Any one will do better for him than I shall,” he answered. + +“Have mercy on your own soul!” I said, endeavouring to snatch the glass +from his hand. + +“Not I! On the contrary, I shall have great pleasure in sending it to +perdition to punish its Maker,” exclaimed the blasphemer. “Here’s to +its hearty damnation!” + +He drank the spirits and impatiently bade us go; terminating his +command with a sequel of horrid imprecations too bad to repeat or +remember. + +“It’s a pity he cannot kill himself with drink,” observed Heathcliff, +muttering an echo of curses back when the door was shut. “He’s doing +his very utmost; but his constitution defies him. Mr. Kenneth says he +would wager his mare that he’ll outlive any man on this side Gimmerton, +and go to the grave a hoary sinner; unless some happy chance out of the +common course befall him.” + +I went into the kitchen, and sat down to lull my little lamb to sleep. +Heathcliff, as I thought, walked through to the barn. It turned out +afterwards that he only got as far as the other side the settle, when +he flung himself on a bench by the wall, removed from the fire, and +remained silent. + +I was rocking Hareton on my knee, and humming a song that began,— + +It was far in the night, and the bairnies grat, +The mither beneath the mools heard that, + + +when Miss Cathy, who had listened to the hubbub from her room, put her +head in, and whispered,—“Are you alone, Nelly?” + +“Yes, Miss,” I replied. + +She entered and approached the hearth. I, supposing she was going to +say something, looked up. The expression of her face seemed disturbed +and anxious. Her lips were half asunder, as if she meant to speak, and +she drew a breath; but it escaped in a sigh instead of a sentence. I +resumed my song; not having forgotten her recent behaviour. + +“Where’s Heathcliff?” she said, interrupting me. + +“About his work in the stable,” was my answer. + +He did not contradict me; perhaps he had fallen into a doze. There +followed another long pause, during which I perceived a drop or two +trickle from Catherine’s cheek to the flags. Is she sorry for her +shameful conduct?—I asked myself. That will be a novelty: but she may +come to the point as she will—I sha’n’t help her! No, she felt small +trouble regarding any subject, save her own concerns. + +“Oh, dear!” she cried at last. “I’m very unhappy!” + +“A pity,” observed I. “You’re hard to please; so many friends and so +few cares, and can’t make yourself content!” + +“Nelly, will you keep a secret for me?” she pursued, kneeling down by +me, and lifting her winsome eyes to my face with that sort of look +which turns off bad temper, even when one has all the right in the +world to indulge it. + +“Is it worth keeping?” I inquired, less sulkily. + +“Yes, and it worries me, and I must let it out! I want to know what I +should do. To-day, Edgar Linton has asked me to marry him, and I’ve +given him an answer. Now, before I tell you whether it was a consent or +denial, you tell me which it ought to have been.” + +“Really, Miss Catherine, how can I know?” I replied. “To be sure, +considering the exhibition you performed in his presence this +afternoon, I might say it would be wise to refuse him: since he asked +you after that, he must either be hopelessly stupid or a venturesome +fool.” + +“If you talk so, I won’t tell you any more,” she returned, peevishly +rising to her feet. “I accepted him, Nelly. Be quick, and say whether I +was wrong!” + +“You accepted him! Then what good is it discussing the matter? You have +pledged your word, and cannot retract.” + +“But say whether I should have done so—do!” she exclaimed in an +irritated tone; chafing her hands together, and frowning. + +“There are many things to be considered before that question can be +answered properly,” I said, sententiously. “First and foremost, do you +love Mr. Edgar?” + +“Who can help it? Of course I do,” she answered. + +Then I put her through the following catechism: for a girl of +twenty-two it was not injudicious. + +“Why do you love him, Miss Cathy?” + +“Nonsense, I do—that’s sufficient.” + +“By no means; you must say why?” + +“Well, because he is handsome, and pleasant to be with.” + +“Bad!” was my commentary. + +“And because he is young and cheerful.” + +“Bad, still.” + +“And because he loves me.” + +“Indifferent, coming there.” + +“And he will be rich, and I shall like to be the greatest woman of the +neighbourhood, and I shall be proud of having such a husband.” + +“Worst of all. And now, say how you love him?” + +“As everybody loves—You’re silly, Nelly.” + +“Not at all—Answer.” + +“I love the ground under his feet, and the air over his head, and +everything he touches, and every word he says. I love all his looks, +and all his actions, and him entirely and altogether. There now!” + +“And why?” + +“Nay; you are making a jest of it: it is exceedingly ill-natured! It’s +no jest to me!” said the young lady, scowling, and turning her face to +the fire. + +“I’m very far from jesting, Miss Catherine,” I replied. “You love Mr. +Edgar because he is handsome, and young, and cheerful, and rich, and +loves you. The last, however, goes for nothing: you would love him +without that, probably; and with it you wouldn’t, unless he possessed +the four former attractions.” + +“No, to be sure not: I should only pity him—hate him, perhaps, if he +were ugly, and a clown.” + +“But there are several other handsome, rich young men in the world: +handsomer, possibly, and richer than he is. What should hinder you from +loving them?” + +“If there be any, they are out of my way: I’ve seen none like Edgar.” + +“You may see some; and he won’t always be handsome, and young, and may +not always be rich.” + +“He is now; and I have only to do with the present. I wish you would +speak rationally.” + +“Well, that settles it: if you have only to do with the present, marry +Mr. Linton.” + +“I don’t want your permission for that—I _shall_ marry him: and yet you +have not told me whether I’m right.” + +“Perfectly right; if people be right to marry only for the present. And +now, let us hear what you are unhappy about. Your brother will be +pleased; the old lady and gentleman will not object, I think; you will +escape from a disorderly, comfortless home into a wealthy, respectable +one; and you love Edgar, and Edgar loves you. All seems smooth and +easy: where is the obstacle?” + +“_Here_! and _here_!” replied Catherine, striking one hand on her +forehead, and the other on her breast: “in whichever place the soul +lives. In my soul and in my heart, I’m convinced I’m wrong!” + +“That’s very strange! I cannot make it out.” + +“It’s my secret. But if you will not mock at me, I’ll explain it: I +can’t do it distinctly; but I’ll give you a feeling of how I feel.” + +She seated herself by me again: her countenance grew sadder and graver, +and her clasped hands trembled. + +“Nelly, do you never dream queer dreams?” she said, suddenly, after +some minutes’ reflection. + +“Yes, now and then,” I answered. + +“And so do I. I’ve dreamt in my life dreams that have stayed with me +ever after, and changed my ideas: they’ve gone through and through me, +like wine through water, and altered the colour of my mind. And this is +one: I’m going to tell it—but take care not to smile at any part of +it.” + +“Oh! don’t, Miss Catherine!” I cried. “We’re dismal enough without +conjuring up ghosts and visions to perplex us. Come, come, be merry and +like yourself! Look at little Hareton! _he’s_ dreaming nothing dreary. +How sweetly he smiles in his sleep!” + +“Yes; and how sweetly his father curses in his solitude! You remember +him, I daresay, when he was just such another as that chubby thing: +nearly as young and innocent. However, Nelly, I shall oblige you to +listen: it’s not long; and I’ve no power to be merry to-night.” + +“I won’t hear it, I won’t hear it!” I repeated, hastily. + +I was superstitious about dreams then, and am still; and Catherine had +an unusual gloom in her aspect, that made me dread something from which +I might shape a prophecy, and foresee a fearful catastrophe. She was +vexed, but she did not proceed. Apparently taking up another subject, +she recommenced in a short time. + +“If I were in heaven, Nelly, I should be extremely miserable.” + +“Because you are not fit to go there,” I answered. “All sinners would +be miserable in heaven.” + +“But it is not for that. I dreamt once that I was there.” + +“I tell you I won’t hearken to your dreams, Miss Catherine! I’ll go to +bed,” I interrupted again. + +She laughed, and held me down; for I made a motion to leave my chair. + +“This is nothing,” cried she: “I was only going to say that heaven did +not seem to be my home; and I broke my heart with weeping to come back +to earth; and the angels were so angry that they flung me out into the +middle of the heath on the top of Wuthering Heights; where I woke +sobbing for joy. That will do to explain my secret, as well as the +other. I’ve no more business to marry Edgar Linton than I have to be in +heaven; and if the wicked man in there had not brought Heathcliff so +low, I shouldn’t have thought of it. It would degrade me to marry +Heathcliff now; so he shall never know how I love him: and that, not +because he’s handsome, Nelly, but because he’s more myself than I am. +Whatever our souls are made of, his and mine are the same; and Linton’s +is as different as a moonbeam from lightning, or frost from fire.” + +Ere this speech ended I became sensible of Heathcliff’s presence. +Having noticed a slight movement, I turned my head, and saw him rise +from the bench, and steal out noiselessly. He had listened till he +heard Catherine say it would degrade her to marry him, and then he +stayed to hear no further. My companion, sitting on the ground, was +prevented by the back of the settle from remarking his presence or +departure; but I started, and bade her hush! + +“Why?” she asked, gazing nervously round. + +“Joseph is here,” I answered, catching opportunely the roll of his +cartwheels up the road; “and Heathcliff will come in with him. I’m not +sure whether he were not at the door this moment.” + +“Oh, he couldn’t overhear me at the door!” said she. “Give me Hareton, +while you get the supper, and when it is ready ask me to sup with you. +I want to cheat my uncomfortable conscience, and be convinced that +Heathcliff has no notion of these things. He has not, has he? He does +not know what being in love is!” + +“I see no reason that he should not know, as well as you,” I returned; +“and if _you_ are his choice, he’ll be the most unfortunate creature +that ever was born! As soon as you become Mrs. Linton, he loses friend, +and love, and all! Have you considered how you’ll bear the separation, +and how he’ll bear to be quite deserted in the world? Because, Miss +Catherine—” + +“He quite deserted! we separated!” she exclaimed, with an accent of +indignation. “Who is to separate us, pray? They’ll meet the fate of +Milo! Not as long as I live, Ellen: for no mortal creature. Every +Linton on the face of the earth might melt into nothing before I could +consent to forsake Heathcliff. Oh, that’s not what I intend—that’s not +what I mean! I shouldn’t be Mrs. Linton were such a price demanded! +He’ll be as much to me as he has been all his lifetime. Edgar must +shake off his antipathy, and tolerate him, at least. He will, when he +learns my true feelings towards him. Nelly, I see now you think me a +selfish wretch; but did it never strike you that if Heathcliff and I +married, we should be beggars? whereas, if I marry Linton I can aid +Heathcliff to rise, and place him out of my brother’s power.” + +“With your husband’s money, Miss Catherine?” I asked. “You’ll find him +not so pliable as you calculate upon: and, though I’m hardly a judge, I +think that’s the worst motive you’ve given yet for being the wife of +young Linton.” + +“It is not,” retorted she; “it is the best! The others were the +satisfaction of my whims: and for Edgar’s sake, too, to satisfy him. +This is for the sake of one who comprehends in his person my feelings +to Edgar and myself. I cannot express it; but surely you and everybody +have a notion that there is or should be an existence of yours beyond +you. What were the use of my creation, if I were entirely contained +here? My great miseries in this world have been Heathcliff’s miseries, +and I watched and felt each from the beginning: my great thought in +living is himself. If all else perished, and _he_ remained, _I_ should +still continue to be; and if all else remained, and he were +annihilated, the universe would turn to a mighty stranger: I should not +seem a part of it. My love for Linton is like the foliage in the woods: +time will change it, I’m well aware, as winter changes the trees. My +love for Heathcliff resembles the eternal rocks beneath: a source of +little visible delight, but necessary. Nelly, I _am_ Heathcliff! He’s +always, always in my mind: not as a pleasure, any more than I am always +a pleasure to myself, but as my own being. So don’t talk of our +separation again: it is impracticable; and—” + +She paused, and hid her face in the folds of my gown; but I jerked it +forcibly away. I was out of patience with her folly! + +“If I can make any sense of your nonsense, Miss,” I said, “it only goes +to convince me that you are ignorant of the duties you undertake in +marrying; or else that you are a wicked, unprincipled girl. But trouble +me with no more secrets: I’ll not promise to keep them.” + +“You’ll keep that?” she asked, eagerly. + +“No, I’ll not promise,” I repeated. + +She was about to insist, when the entrance of Joseph finished our +conversation; and Catherine removed her seat to a corner, and nursed +Hareton, while I made the supper. After it was cooked, my +fellow-servant and I began to quarrel who should carry some to Mr. +Hindley; and we didn’t settle it till all was nearly cold. Then we came +to the agreement that we would let him ask, if he wanted any; for we +feared particularly to go into his presence when he had been some time +alone. + +“And how isn’t that nowt comed in fro’ th’ field, be this time? What is +he about? girt idle seeght!” demanded the old man, looking round for +Heathcliff. + +“I’ll call him,” I replied. “He’s in the barn, I’ve no doubt.” + +I went and called, but got no answer. On returning, I whispered to +Catherine that he had heard a good part of what she said, I was sure; +and told how I saw him quit the kitchen just as she complained of her +brother’s conduct regarding him. She jumped up in a fine fright, flung +Hareton on to the settle, and ran to seek for her friend herself; not +taking leisure to consider why she was so flurried, or how her talk +would have affected him. She was absent such a while that Joseph +proposed we should wait no longer. He cunningly conjectured they were +staying away in order to avoid hearing his protracted blessing. They +were “ill eneugh for ony fahl manners,” he affirmed. And on their +behalf he added that night a special prayer to the usual +quarter-of-an-hour’s supplication before meat, and would have tacked +another to the end of the grace, had not his young mistress broken in +upon him with a hurried command that he must run down the road, and, +wherever Heathcliff had rambled, find and make him re-enter directly! + +“I want to speak to him, and I _must_, before I go upstairs,” she said. +“And the gate is open: he is somewhere out of hearing; for he would not +reply, though I shouted at the top of the fold as loud as I could.” + +Joseph objected at first; she was too much in earnest, however, to +suffer contradiction; and at last he placed his hat on his head, and +walked grumbling forth. Meantime, Catherine paced up and down the +floor, exclaiming—“I wonder where he is—I wonder where he _can_ be! +What did I say, Nelly? I’ve forgotten. Was he vexed at my bad humour +this afternoon? Dear! tell me what I’ve said to grieve him? I do wish +he’d come. I do wish he would!” + +“What a noise for nothing!” I cried, though rather uneasy myself. “What +a trifle scares you! It’s surely no great cause of alarm that +Heathcliff should take a moonlight saunter on the moors, or even lie +too sulky to speak to us in the hay-loft. I’ll engage he’s lurking +there. See if I don’t ferret him out!” + +I departed to renew my search; its result was disappointment, and +Joseph’s quest ended in the same. + +“Yon lad gets war und war!” observed he on re-entering. “He’s left th’ +gate at t’ full swing, and Miss’s pony has trodden dahn two rigs o’ +corn, and plottered through, raight o’er into t’ meadow! Hahsomdiver, +t’ maister ’ull play t’ devil to-morn, and he’ll do weel. He’s patience +itsseln wi’ sich careless, offald craters—patience itsseln he is! Bud +he’ll not be soa allus—yah’s see, all on ye! Yah mun’n’t drive him out +of his heead for nowt!” + +“Have you found Heathcliff, you ass?” interrupted Catherine. “Have you +been looking for him, as I ordered?” + +“I sud more likker look for th’ horse,” he replied. “It ’ud be to more +sense. Bud I can look for norther horse nur man of a neeght loike +this—as black as t’ chimbley! und Heathcliff’s noan t’ chap to coom at +_my_ whistle—happen he’ll be less hard o’ hearing wi’ _ye_!” + +It _was_ a very dark evening for summer: the clouds appeared inclined +to thunder, and I said we had better all sit down; the approaching rain +would be certain to bring him home without further trouble. However, +Catherine would not be persuaded into tranquillity. She kept wandering +to and fro, from the gate to the door, in a state of agitation which +permitted no repose; and at length took up a permanent situation on one +side of the wall, near the road: where, heedless of my expostulations +and the growling thunder, and the great drops that began to plash +around her, she remained, calling at intervals, and then listening, and +then crying outright. She beat Hareton, or any child, at a good +passionate fit of crying. + +About midnight, while we still sat up, the storm came rattling over the +Heights in full fury. There was a violent wind, as well as thunder, and +either one or the other split a tree off at the corner of the building: +a huge bough fell across the roof, and knocked down a portion of the +east chimney-stack, sending a clatter of stones and soot into the +kitchen-fire. We thought a bolt had fallen in the middle of us; and +Joseph swung on to his knees, beseeching the Lord to remember the +patriarchs Noah and Lot, and, as in former times, spare the righteous, +though he smote the ungodly. I felt some sentiment that it must be a +judgment on us also. The Jonah, in my mind, was Mr. Earnshaw; and I +shook the handle of his den that I might ascertain if he were yet +living. He replied audibly enough, in a fashion which made my companion +vociferate, more clamorously than before, that a wide distinction might +be drawn between saints like himself and sinners like his master. But +the uproar passed away in twenty minutes, leaving us all unharmed; +excepting Cathy, who got thoroughly drenched for her obstinacy in +refusing to take shelter, and standing bonnetless and shawlless to +catch as much water as she could with her hair and clothes. She came in +and lay down on the settle, all soaked as she was, turning her face to +the back, and putting her hands before it. + +“Well, Miss!” I exclaimed, touching her shoulder; “you are not bent on +getting your death, are you? Do you know what o’clock it is? Half-past +twelve. Come, come to bed! there’s no use waiting any longer on that +foolish boy: he’ll be gone to Gimmerton, and he’ll stay there now. He +guesses we shouldn’t wait for him till this late hour: at least, he +guesses that only Mr. Hindley would be up; and he’d rather avoid having +the door opened by the master.” + +“Nay, nay, he’s noan at Gimmerton,” said Joseph. “I’s niver wonder but +he’s at t’ bothom of a bog-hoile. This visitation worn’t for nowt, and +I wod hev’ ye to look out, Miss—yah muh be t’ next. Thank Hivin for +all! All warks togither for gooid to them as is chozzen, and piked out +fro’ th’ rubbidge! Yah knaw whet t’ Scripture ses.” And he began +quoting several texts, referring us to chapters and verses where we +might find them. + +I, having vainly begged the wilful girl to rise and remove her wet +things, left him preaching and her shivering, and betook myself to bed +with little Hareton, who slept as fast as if everyone had been sleeping +round him. I heard Joseph read on a while afterwards; then I +distinguished his slow step on the ladder, and then I dropped asleep. + +Coming down somewhat later than usual, I saw, by the sunbeams piercing +the chinks of the shutters, Miss Catherine still seated near the +fireplace. The house-door was ajar, too; light entered from its +unclosed windows; Hindley had come out, and stood on the kitchen +hearth, haggard and drowsy. + +“What ails you, Cathy?” he was saying when I entered: “you look as +dismal as a drowned whelp. Why are you so damp and pale, child?” + +“I’ve been wet,” she answered reluctantly, “and I’m cold, that’s all.” + +“Oh, she is naughty!” I cried, perceiving the master to be tolerably +sober. “She got steeped in the shower of yesterday evening, and there +she has sat the night through, and I couldn’t prevail on her to stir.” + +Mr. Earnshaw stared at us in surprise. “The night through,” he +repeated. “What kept her up? not fear of the thunder, surely? That was +over hours since.” + +Neither of us wished to mention Heathcliff’s absence, as long as we +could conceal it; so I replied, I didn’t know how she took it into her +head to sit up; and she said nothing. The morning was fresh and cool; I +threw back the lattice, and presently the room filled with sweet scents +from the garden; but Catherine called peevishly to me, “Ellen, shut the +window. I’m starving!” And her teeth chattered as she shrank closer to +the almost extinguished embers. + +“She’s ill,” said Hindley, taking her wrist; “I suppose that’s the +reason she would not go to bed. Damn it! I don’t want to be troubled +with more sickness here. What took you into the rain?” + +“Running after t’ lads, as usuald!” croaked Joseph, catching an +opportunity from our hesitation to thrust in his evil tongue. “If I war +yah, maister, I’d just slam t’ boards i’ their faces all on ’em, gentle +and simple! Never a day ut yah’re off, but yon cat o’ Linton comes +sneaking hither; and Miss Nelly, shoo’s a fine lass! shoo sits watching +for ye i’ t’ kitchen; and as yah’re in at one door, he’s out at +t’other; and, then, wer grand lady goes a-courting of her side! It’s +bonny behaviour, lurking amang t’ fields, after twelve o’ t’ night, wi’ +that fahl, flaysome divil of a gipsy, Heathcliff! They think _I’m_ +blind; but I’m noan: nowt ut t’ soart!—I seed young Linton boath coming +and going, and I seed _yah_” (directing his discourse to me), “yah +gooid fur nowt, slattenly witch! nip up and bolt into th’ house, t’ +minute yah heard t’ maister’s horse-fit clatter up t’ road.” + +“Silence, eavesdropper!” cried Catherine; “none of your insolence +before me! Edgar Linton came yesterday by chance, Hindley; and it was +_I_ who told him to be off: because I knew you would not like to have +met him as you were.” + +“You lie, Cathy, no doubt,” answered her brother, “and you are a +confounded simpleton! But never mind Linton at present: tell me, were +you not with Heathcliff last night? Speak the truth, now. You need not +be afraid of harming him: though I hate him as much as ever, he did me +a good turn a short time since that will make my conscience tender of +breaking his neck. To prevent it, I shall send him about his business +this very morning; and after he’s gone, I’d advise you all to look +sharp: I shall only have the more humour for you.” + +“I never saw Heathcliff last night,” answered Catherine, beginning to +sob bitterly: “and if you do turn him out of doors, I’ll go with him. +But, perhaps, you’ll never have an opportunity: perhaps, he’s gone.” +Here she burst into uncontrollable grief, and the remainder of her +words were inarticulate. + +Hindley lavished on her a torrent of scornful abuse, and bade her get +to her room immediately, or she shouldn’t cry for nothing! I obliged +her to obey; and I shall never forget what a scene she acted when we +reached her chamber: it terrified me. I thought she was going mad, and +I begged Joseph to run for the doctor. It proved the commencement of +delirium: Mr. Kenneth, as soon as he saw her, pronounced her +dangerously ill; she had a fever. He bled her, and he told me to let +her live on whey and water-gruel, and take care she did not throw +herself downstairs or out of the window; and then he left: for he had +enough to do in the parish, where two or three miles was the ordinary +distance between cottage and cottage. + +Though I cannot say I made a gentle nurse, and Joseph and the master +were no better, and though our patient was as wearisome and headstrong +as a patient could be, she weathered it through. Old Mrs. Linton paid +us several visits, to be sure, and set things to rights, and scolded +and ordered us all; and when Catherine was convalescent, she insisted +on conveying her to Thrushcross Grange: for which deliverance we were +very grateful. But the poor dame had reason to repent of her kindness: +she and her husband both took the fever, and died within a few days of +each other. + +Our young lady returned to us saucier and more passionate, and +haughtier than ever. Heathcliff had never been heard of since the +evening of the thunder-storm; and, one day, I had the misfortune, when +she had provoked me exceedingly, to lay the blame of his disappearance +on her: where indeed it belonged, as she well knew. From that period, +for several months, she ceased to hold any communication with me, save +in the relation of a mere servant. Joseph fell under a ban also: he +_would_ speak his mind, and lecture her all the same as if she were a +little girl; and she esteemed herself a woman, and our mistress, and +thought that her recent illness gave her a claim to be treated with +consideration. Then the doctor had said that she would not bear +crossing much; she ought to have her own way; and it was nothing less +than murder in her eyes for any one to presume to stand up and +contradict her. From Mr. Earnshaw and his companions she kept aloof; +and tutored by Kenneth, and serious threats of a fit that often +attended her rages, her brother allowed her whatever she pleased to +demand, and generally avoided aggravating her fiery temper. He was +rather _too_ indulgent in humouring her caprices; not from affection, +but from pride: he wished earnestly to see her bring honour to the +family by an alliance with the Lintons, and as long as she let him +alone she might trample on us like slaves, for aught he cared! Edgar +Linton, as multitudes have been before and will be after him, was +infatuated: and believed himself the happiest man alive on the day he +led her to Gimmerton Chapel, three years subsequent to his father’s +death. + +Much against my inclination, I was persuaded to leave Wuthering Heights +and accompany her here. Little Hareton was nearly five years old, and I +had just begun to teach him his letters. We made a sad parting; but +Catherine’s tears were more powerful than ours. When I refused to go, +and when she found her entreaties did not move me, she went lamenting +to her husband and brother. The former offered me munificent wages; the +latter ordered me to pack up: he wanted no women in the house, he said, +now that there was no mistress; and as to Hareton, the curate should +take him in hand, by-and-by. And so I had but one choice left: to do as +I was ordered. I told the master he got rid of all decent people only +to run to ruin a little faster; I kissed Hareton, said good-by; and +since then he has been a stranger: and it’s very queer to think it, but +I’ve no doubt he has completely forgotten all about Ellen Dean, and +that he was ever more than all the world to her and she to him! + +* * * * * + + +At this point of the housekeeper’s story she chanced to glance towards +the time-piece over the chimney; and was in amazement on seeing the +minute-hand measure half-past one. She would not hear of staying a +second longer: in truth, I felt rather disposed to defer the sequel of +her narrative myself. And now that she is vanished to her rest, and I +have meditated for another hour or two, I shall summon courage to go +also, in spite of aching laziness of head and limbs. + + + + +CHAPTER X + + +A charming introduction to a hermit’s life! Four weeks’ torture, +tossing, and sickness! Oh, these bleak winds and bitter northern skies, +and impassable roads, and dilatory country surgeons! And oh, this +dearth of the human physiognomy! and, worse than all, the terrible +intimation of Kenneth that I need not expect to be out of doors till +spring! + +Mr. Heathcliff has just honoured me with a call. About seven days ago +he sent me a brace of grouse—the last of the season. Scoundrel! He is +not altogether guiltless in this illness of mine; and that I had a +great mind to tell him. But, alas! how could I offend a man who was +charitable enough to sit at my bedside a good hour, and talk on some +other subject than pills and draughts, blisters and leeches? This is +quite an easy interval. I am too weak to read; yet I feel as if I could +enjoy something interesting. Why not have up Mrs. Dean to finish her +tale? I can recollect its chief incidents, as far as she had gone. Yes: +I remember her hero had run off, and never been heard of for three +years; and the heroine was married. I’ll ring: she’ll be delighted to +find me capable of talking cheerfully. Mrs. Dean came. + +“It wants twenty minutes, sir, to taking the medicine,” she commenced. + +“Away, away with it!” I replied; “I desire to have—” + +“The doctor says you must drop the powders.” + +“With all my heart! Don’t interrupt me. Come and take your seat here. +Keep your fingers from that bitter phalanx of vials. Draw your knitting +out of your pocket—that will do—now continue the history of Mr. +Heathcliff, from where you left off, to the present day. Did he finish +his education on the Continent, and come back a gentleman? or did he +get a sizar’s place at college, or escape to America, and earn honours +by drawing blood from his foster-country? or make a fortune more +promptly on the English highways?” + +“He may have done a little in all these vocations, Mr. Lockwood; but I +couldn’t give my word for any. I stated before that I didn’t know how +he gained his money; neither am I aware of the means he took to raise +his mind from the savage ignorance into which it was sunk: but, with +your leave, I’ll proceed in my own fashion, if you think it will amuse +and not weary you. Are you feeling better this morning?” + +“Much.” + +“That’s good news.” + +* * * * * + + +I got Miss Catherine and myself to Thrushcross Grange; and, to my +agreeable disappointment, she behaved infinitely better than I dared to +expect. She seemed almost over-fond of Mr. Linton; and even to his +sister she showed plenty of affection. They were both very attentive to +her comfort, certainly. It was not the thorn bending to the +honeysuckles, but the honeysuckles embracing the thorn. There were no +mutual concessions: one stood erect, and the others yielded: and who +_can_ be ill-natured and bad-tempered when they encounter neither +opposition nor indifference? I observed that Mr. Edgar had a +deep-rooted fear of ruffling her humour. He concealed it from her; but +if ever he heard me answer sharply, or saw any other servant grow +cloudy at some imperious order of hers, he would show his trouble by a +frown of displeasure that never darkened on his own account. He many a +time spoke sternly to me about my pertness; and averred that the stab +of a knife could not inflict a worse pang than he suffered at seeing +his lady vexed. Not to grieve a kind master, I learned to be less +touchy; and, for the space of half a year, the gunpowder lay as +harmless as sand, because no fire came near to explode it. Catherine +had seasons of gloom and silence now and then: they were respected with +sympathising silence by her husband, who ascribed them to an alteration +in her constitution, produced by her perilous illness; as she was never +subject to depression of spirits before. The return of sunshine was +welcomed by answering sunshine from him. I believe I may assert that +they were really in possession of deep and growing happiness. + +It ended. Well, we _must_ be for ourselves in the long run; the mild +and generous are only more justly selfish than the domineering; and it +ended when circumstances caused each to feel that the one’s interest +was not the chief consideration in the other’s thoughts. On a mellow +evening in September, I was coming from the garden with a heavy basket +of apples which I had been gathering. It had got dusk, and the moon +looked over the high wall of the court, causing undefined shadows to +lurk in the corners of the numerous projecting portions of the +building. I set my burden on the house-steps by the kitchen-door, and +lingered to rest, and drew in a few more breaths of the soft, sweet +air; my eyes were on the moon, and my back to the entrance, when I +heard a voice behind me say,—“Nelly, is that you?” + +It was a deep voice, and foreign in tone; yet there was something in +the manner of pronouncing my name which made it sound familiar. I +turned about to discover who spoke, fearfully; for the doors were shut, +and I had seen nobody on approaching the steps. Something stirred in +the porch; and, moving nearer, I distinguished a tall man dressed in +dark clothes, with dark face and hair. He leant against the side, and +held his fingers on the latch as if intending to open for himself. “Who +can it be?” I thought. “Mr. Earnshaw? Oh, no! The voice has no +resemblance to his.” + +“I have waited here an hour,” he resumed, while I continued staring; +“and the whole of that time all round has been as still as death. I +dared not enter. You do not know me? Look, I’m not a stranger!” + +A ray fell on his features; the cheeks were sallow, and half covered +with black whiskers; the brows lowering, the eyes deep-set and +singular. I remembered the eyes. + +“What!” I cried, uncertain whether to regard him as a worldly visitor, +and I raised my hands in amazement. “What! you come back? Is it really +you? Is it?” + +“Yes, Heathcliff,” he replied, glancing from me up to the windows, +which reflected a score of glittering moons, but showed no lights from +within. “Are they at home? where is she? Nelly, you are not glad! you +needn’t be so disturbed. Is she here? Speak! I want to have one word +with her—your mistress. Go, and say some person from Gimmerton desires +to see her.” + +“How will she take it?” I exclaimed. “What will she do? The surprise +bewilders me—it will put her out of her head! And you _are_ Heathcliff! +But altered! Nay, there’s no comprehending it. Have you been for a +soldier?” + +“Go and carry my message,” he interrupted, impatiently. “I’m in hell +till you do!” + +He lifted the latch, and I entered; but when I got to the parlour where +Mr. and Mrs. Linton were, I could not persuade myself to proceed. At +length I resolved on making an excuse to ask if they would have the +candles lighted, and I opened the door. + +They sat together in a window whose lattice lay back against the wall, +and displayed, beyond the garden trees, and the wild green park, the +valley of Gimmerton, with a long line of mist winding nearly to its top +(for very soon after you pass the chapel, as you may have noticed, the +sough that runs from the marshes joins a beck which follows the bend of +the glen). Wuthering Heights rose above this silvery vapour; but our +old house was invisible; it rather dips down on the other side. Both +the room and its occupants, and the scene they gazed on, looked +wondrously peaceful. I shrank reluctantly from performing my errand; +and was actually going away leaving it unsaid, after having put my +question about the candles, when a sense of my folly compelled me to +return, and mutter, “A person from Gimmerton wishes to see you ma’am.” + +“What does he want?” asked Mrs. Linton. + +“I did not question him,” I answered. + +“Well, close the curtains, Nelly,” she said; “and bring up tea. I’ll be +back again directly.” + +She quitted the apartment; Mr. Edgar inquired, carelessly, who it was. + +“Some one mistress does not expect,” I replied. “That Heathcliff—you +recollect him, sir—who used to live at Mr. Earnshaw’s.” + +“What! the gipsy—the ploughboy?” he cried. “Why did you not say so to +Catherine?” + +“Hush! you must not call him by those names, master,” I said. “She’d be +sadly grieved to hear you. She was nearly heartbroken when he ran off. +I guess his return will make a jubilee to her.” + +Mr. Linton walked to a window on the other side of the room that +overlooked the court. He unfastened it, and leant out. I suppose they +were below, for he exclaimed quickly: “Don’t stand there, love! Bring +the person in, if it be anyone particular.” Ere long, I heard the click +of the latch, and Catherine flew upstairs, breathless and wild; too +excited to show gladness: indeed, by her face, you would rather have +surmised an awful calamity. + +“Oh, Edgar, Edgar!” she panted, flinging her arms round his neck. “Oh, +Edgar darling! Heathcliff’s come back—he is!” And she tightened her +embrace to a squeeze. + +“Well, well,” cried her husband, crossly, “don’t strangle me for that! +He never struck me as such a marvellous treasure. There is no need to +be frantic!” + +“I know you didn’t like him,” she answered, repressing a little the +intensity of her delight. “Yet, for my sake, you must be friends now. +Shall I tell him to come up?” + +“Here,” he said, “into the parlour?” + +“Where else?” she asked. + +He looked vexed, and suggested the kitchen as a more suitable place for +him. Mrs. Linton eyed him with a droll expression—half angry, half +laughing at his fastidiousness. + +“No,” she added, after a while; “I cannot sit in the kitchen. Set two +tables here, Ellen: one for your master and Miss Isabella, being +gentry; the other for Heathcliff and myself, being of the lower orders. +Will that please you, dear? Or must I have a fire lighted elsewhere? If +so, give directions. I’ll run down and secure my guest. I’m afraid the +joy is too great to be real!” + +She was about to dart off again; but Edgar arrested her. + +“_You_ bid him step up,” he said, addressing me; “and, Catherine, try +to be glad, without being absurd. The whole household need not witness +the sight of your welcoming a runaway servant as a brother.” + +I descended, and found Heathcliff waiting under the porch, evidently +anticipating an invitation to enter. He followed my guidance without +waste of words, and I ushered him into the presence of the master and +mistress, whose flushed cheeks betrayed signs of warm talking. But the +lady’s glowed with another feeling when her friend appeared at the +door: she sprang forward, took both his hands, and led him to Linton; +and then she seized Linton’s reluctant fingers and crushed them into +his. Now, fully revealed by the fire and candlelight, I was amazed, +more than ever, to behold the transformation of Heathcliff. He had +grown a tall, athletic, well-formed man; beside whom my master seemed +quite slender and youth-like. His upright carriage suggested the idea +of his having been in the army. His countenance was much older in +expression and decision of feature than Mr. Linton’s; it looked +intelligent, and retained no marks of former degradation. A +half-civilised ferocity lurked yet in the depressed brows and eyes full +of black fire, but it was subdued; and his manner was even dignified: +quite divested of roughness, though too stern for grace. My master’s +surprise equalled or exceeded mine: he remained for a minute at a loss +how to address the ploughboy, as he had called him. Heathcliff dropped +his slight hand, and stood looking at him coolly till he chose to +speak. + +“Sit down, sir,” he said, at length. “Mrs. Linton, recalling old times, +would have me give you a cordial reception; and, of course, I am +gratified when anything occurs to please her.” + +“And I also,” answered Heathcliff, “especially if it be anything in +which I have a part. I shall stay an hour or two willingly.” + +He took a seat opposite Catherine, who kept her gaze fixed on him as if +she feared he would vanish were she to remove it. He did not raise his +to her often: a quick glance now and then sufficed; but it flashed +back, each time more confidently, the undisguised delight he drank from +hers. They were too much absorbed in their mutual joy to suffer +embarrassment. Not so Mr. Edgar: he grew pale with pure annoyance: a +feeling that reached its climax when his lady rose, and stepping across +the rug, seized Heathcliff’s hands again, and laughed like one beside +herself. + +“I shall think it a dream to-morrow!” she cried. “I shall not be able +to believe that I have seen, and touched, and spoken to you once more. +And yet, cruel Heathcliff! you don’t deserve this welcome. To be absent +and silent for three years, and never to think of me!” + +“A little more than you have thought of me,” he murmured. “I heard of +your marriage, Cathy, not long since; and, while waiting in the yard +below, I meditated this plan—just to have one glimpse of your face, a +stare of surprise, perhaps, and pretended pleasure; afterwards settle +my score with Hindley; and then prevent the law by doing execution on +myself. Your welcome has put these ideas out of my mind; but beware of +meeting me with another aspect next time! Nay, you’ll not drive me off +again. You were really sorry for me, were you? Well, there was cause. +I’ve fought through a bitter life since I last heard your voice; and +you must forgive me, for I struggled only for you!” + +“Catherine, unless we are to have cold tea, please to come to the +table,” interrupted Linton, striving to preserve his ordinary tone, and +a due measure of politeness. “Mr. Heathcliff will have a long walk, +wherever he may lodge to-night; and I’m thirsty.” + +She took her post before the urn; and Miss Isabella came, summoned by +the bell; then, having handed their chairs forward, I left the room. +The meal hardly endured ten minutes. Catherine’s cup was never filled: +she could neither eat nor drink. Edgar had made a slop in his saucer, +and scarcely swallowed a mouthful. Their guest did not protract his +stay that evening above an hour longer. I asked, as he departed, if he +went to Gimmerton? + +“No, to Wuthering Heights,” he answered: “Mr. Earnshaw invited me, when +I called this morning.” + +Mr. Earnshaw invited _him_! and _he_ called on Mr. Earnshaw! I pondered +this sentence painfully, after he was gone. Is he turning out a bit of +a hypocrite, and coming into the country to work mischief under a +cloak? I mused: I had a presentiment in the bottom of my heart that he +had better have remained away. + +About the middle of the night, I was wakened from my first nap by Mrs. +Linton gliding into my chamber, taking a seat on my bedside, and +pulling me by the hair to rouse me. + +“I cannot rest, Ellen,” she said, by way of apology. “And I want some +living creature to keep me company in my happiness! Edgar is sulky, +because I’m glad of a thing that does not interest him: he refuses to +open his mouth, except to utter pettish, silly speeches; and he +affirmed I was cruel and selfish for wishing to talk when he was so +sick and sleepy. He always contrives to be sick at the least cross! I +gave a few sentences of commendation to Heathcliff, and he, either for +a headache or a pang of envy, began to cry: so I got up and left him.” + +“What use is it praising Heathcliff to him?” I answered. “As lads they +had an aversion to each other, and Heathcliff would hate just as much +to hear him praised: it’s human nature. Let Mr. Linton alone about him, +unless you would like an open quarrel between them.” + +“But does it not show great weakness?” pursued she. “I’m not envious: I +never feel hurt at the brightness of Isabella’s yellow hair and the +whiteness of her skin, at her dainty elegance, and the fondness all the +family exhibit for her. Even you, Nelly, if we have a dispute +sometimes, you back Isabella at once; and I yield like a foolish +mother: I call her a darling, and flatter her into a good temper. It +pleases her brother to see us cordial, and that pleases me. But they +are very much alike: they are spoiled children, and fancy the world was +made for their accommodation; and though I humour both, I think a smart +chastisement might improve them all the same.” + +“You’re mistaken, Mrs. Linton,” said I. “They humour you: I know what +there would be to do if they did not. You can well afford to indulge +their passing whims as long as their business is to anticipate all your +desires. You may, however, fall out, at last, over something of equal +consequence to both sides; and then those you term weak are very +capable of being as obstinate as you.” + +“And then we shall fight to the death, sha’n’t we, Nelly?” she +returned, laughing. “No! I tell you, I have such faith in Linton’s +love, that I believe I might kill him, and he wouldn’t wish to +retaliate.” + +I advised her to value him the more for his affection. + +“I do,” she answered, “but he needn’t resort to whining for trifles. It +is childish; and, instead of melting into tears because I said that +Heathcliff was now worthy of anyone’s regard, and it would honour the +first gentleman in the country to be his friend, he ought to have said +it for me, and been delighted from sympathy. He must get accustomed to +him, and he may as well like him: considering how Heathcliff has reason +to object to him, I’m sure he behaved excellently!” + +“What do you think of his going to Wuthering Heights?” I inquired. “He +is reformed in every respect, apparently: quite a Christian: offering +the right hand of fellowship to his enemies all around!” + +“He explained it,” she replied. “I wonder as much as you. He said he +called to gather information concerning me from you, supposing you +resided there still; and Joseph told Hindley, who came out and fell to +questioning him of what he had been doing, and how he had been living; +and finally, desired him to walk in. There were some persons sitting at +cards; Heathcliff joined them; my brother lost some money to him, and, +finding him plentifully supplied, he requested that he would come again +in the evening: to which he consented. Hindley is too reckless to +select his acquaintance prudently: he doesn’t trouble himself to +reflect on the causes he might have for mistrusting one whom he has +basely injured. But Heathcliff affirms his principal reason for +resuming a connection with his ancient persecutor is a wish to install +himself in quarters at walking distance from the Grange, and an +attachment to the house where we lived together; and likewise a hope +that I shall have more opportunities of seeing him there than I could +have if he settled in Gimmerton. He means to offer liberal payment for +permission to lodge at the Heights; and doubtless my brother’s +covetousness will prompt him to accept the terms: he was always greedy; +though what he grasps with one hand he flings away with the other.” + +“It’s a nice place for a young man to fix his dwelling in!” said I. +“Have you no fear of the consequences, Mrs. Linton?” + +“None for my friend,” she replied: “his strong head will keep him from +danger; a little for Hindley: but he can’t be made morally worse than +he is; and I stand between him and bodily harm. The event of this +evening has reconciled me to God and humanity! I had risen in angry +rebellion against Providence. Oh, I’ve endured very, very bitter +misery, Nelly! If that creature knew how bitter, he’d be ashamed to +cloud its removal with idle petulance. It was kindness for him which +induced me to bear it alone: had I expressed the agony I frequently +felt, he would have been taught to long for its alleviation as ardently +as I. However, it’s over, and I’ll take no revenge on his folly; I can +afford to suffer anything hereafter! Should the meanest thing alive +slap me on the cheek, I’d not only turn the other, but I’d ask pardon +for provoking it; and, as a proof, I’ll go make my peace with Edgar +instantly. Good-night! I’m an angel!” + +In this self-complacent conviction she departed; and the success of her +fulfilled resolution was obvious on the morrow: Mr. Linton had not only +abjured his peevishness (though his spirits seemed still subdued by +Catherine’s exuberance of vivacity), but he ventured no objection to +her taking Isabella with her to Wuthering Heights in the afternoon; and +she rewarded him with such a summer of sweetness and affection in +return as made the house a paradise for several days; both master and +servants profiting from the perpetual sunshine. + +Heathcliff—Mr. Heathcliff I should say in future—used the liberty of +visiting at Thrushcross Grange cautiously, at first: he seemed +estimating how far its owner would bear his intrusion. Catherine, also, +deemed it judicious to moderate her expressions of pleasure in +receiving him; and he gradually established his right to be expected. +He retained a great deal of the reserve for which his boyhood was +remarkable; and that served to repress all startling demonstrations of +feeling. My master’s uneasiness experienced a lull, and further +circumstances diverted it into another channel for a space. + +His new source of trouble sprang from the not anticipated misfortune of +Isabella Linton evincing a sudden and irresistible attraction towards +the tolerated guest. She was at that time a charming young lady of +eighteen; infantile in manners, though possessed of keen wit, keen +feelings, and a keen temper, too, if irritated. Her brother, who loved +her tenderly, was appalled at this fantastic preference. Leaving aside +the degradation of an alliance with a nameless man, and the possible +fact that his property, in default of heirs male, might pass into such +a one’s power, he had sense to comprehend Heathcliff’s disposition: to +know that, though his exterior was altered, his mind was unchangeable +and unchanged. And he dreaded that mind: it revolted him: he shrank +forebodingly from the idea of committing Isabella to its keeping. He +would have recoiled still more had he been aware that her attachment +rose unsolicited, and was bestowed where it awakened no reciprocation +of sentiment; for the minute he discovered its existence he laid the +blame on Heathcliff’s deliberate designing. + +We had all remarked, during some time, that Miss Linton fretted and +pined over something. She grew cross and wearisome; snapping at and +teasing Catherine continually, at the imminent risk of exhausting her +limited patience. We excused her, to a certain extent, on the plea of +ill-health: she was dwindling and fading before our eyes. But one day, +when she had been peculiarly wayward, rejecting her breakfast, +complaining that the servants did not do what she told them; that the +mistress would allow her to be nothing in the house, and Edgar +neglected her; that she had caught a cold with the doors being left +open, and we let the parlour fire go out on purpose to vex her, with a +hundred yet more frivolous accusations, Mrs. Linton peremptorily +insisted that she should get to bed; and, having scolded her heartily, +threatened to send for the doctor. Mention of Kenneth caused her to +exclaim, instantly, that her health was perfect, and it was only +Catherine’s harshness which made her unhappy. + +“How can you say I am harsh, you naughty fondling?” cried the mistress, +amazed at the unreasonable assertion. “You are surely losing your +reason. When have I been harsh, tell me?” + +“Yesterday,” sobbed Isabella, “and now!” + +“Yesterday!” said her sister-in-law. “On what occasion?” + +“In our walk along the moor: you told me to ramble where I pleased, +while you sauntered on with Mr. Heathcliff!” + +“And that’s your notion of harshness?” said Catherine, laughing. “It +was no hint that your company was superfluous; we didn’t care whether +you kept with us or not; I merely thought Heathcliff’s talk would have +nothing entertaining for your ears.” + +“Oh, no,” wept the young lady; “you wished me away, because you knew I +liked to be there!” + +“Is she sane?” asked Mrs. Linton, appealing to me. “I’ll repeat our +conversation, word for word, Isabella; and you point out any charm it +could have had for you.” + +“I don’t mind the conversation,” she answered: “I wanted to be with—” + +“Well?” said Catherine, perceiving her hesitate to complete the +sentence. + +“With him: and I won’t be always sent off!” she continued, kindling up. +“You are a dog in the manger, Cathy, and desire no one to be loved but +yourself!” + +“You are an impertinent little monkey!” exclaimed Mrs. Linton, in +surprise. “But I’ll not believe this idiocy! It is impossible that you +can covet the admiration of Heathcliff—that you consider him an +agreeable person! I hope I have misunderstood you, Isabella?” + +“No, you have not,” said the infatuated girl. “I love him more than +ever you loved Edgar, and he might love me, if you would let him!” + +“I wouldn’t be you for a kingdom, then!” Catherine declared, +emphatically: and she seemed to speak sincerely. “Nelly, help me to +convince her of her madness. Tell her what Heathcliff is: an +unreclaimed creature, without refinement, without cultivation; an arid +wilderness of furze and whinstone. I’d as soon put that little canary +into the park on a winter’s day, as recommend you to bestow your heart +on him! It is deplorable ignorance of his character, child, and nothing +else, which makes that dream enter your head. Pray, don’t imagine that +he conceals depths of benevolence and affection beneath a stern +exterior! He’s not a rough diamond—a pearl-containing oyster of a +rustic: he’s a fierce, pitiless, wolfish man. I never say to him, ‘Let +this or that enemy alone, because it would be ungenerous or cruel to +harm them;’ I say, ‘Let them alone, because _I_ should hate them to be +wronged:’ and he’d crush you like a sparrow’s egg, Isabella, if he +found you a troublesome charge. I know he couldn’t love a Linton; and +yet he’d be quite capable of marrying your fortune and expectations: +avarice is growing with him a besetting sin. There’s my picture: and +I’m his friend—so much so, that had he thought seriously to catch you, +I should, perhaps, have held my tongue, and let you fall into his +trap.” + +Miss Linton regarded her sister-in-law with indignation. + +“For shame! for shame!” she repeated, angrily. “You are worse than +twenty foes, you poisonous friend!” + +“Ah! you won’t believe me, then?” said Catherine. “You think I speak +from wicked selfishness?” + +“I’m certain you do,” retorted Isabella; “and I shudder at you!” + +“Good!” cried the other. “Try for yourself, if that be your spirit: I +have done, and yield the argument to your saucy insolence.”— + +“And I must suffer for her egotism!” she sobbed, as Mrs. Linton left +the room. “All, all is against me: she has blighted my single +consolation. But she uttered falsehoods, didn’t she? Mr. Heathcliff is +not a fiend: he has an honourable soul, and a true one, or how could he +remember her?” + +“Banish him from your thoughts, Miss,” I said. “He’s a bird of bad +omen: no mate for you. Mrs. Linton spoke strongly, and yet I can’t +contradict her. She is better acquainted with his heart than I, or any +one besides; and she never would represent him as worse than he is. +Honest people don’t hide their deeds. How has he been living? how has +he got rich? why is he staying at Wuthering Heights, the house of a man +whom he abhors? They say Mr. Earnshaw is worse and worse since he came. +They sit up all night together continually, and Hindley has been +borrowing money on his land, and does nothing but play and drink: I +heard only a week ago—it was Joseph who told me—I met him at Gimmerton: +‘Nelly,’ he said, ‘we’s hae a crowner’s ’quest enow, at ahr folks’. One +on ’em ’s a’most getten his finger cut off wi’ hauding t’ other fro’ +stickin’ hisseln loike a cawlf. That’s maister, yah knaw, ’at ’s soa +up o’ going tuh t’ grand ’sizes. He’s noan feared o’ t’ bench o’ +judges, norther Paul, nur Peter, nur John, nur Matthew, nor noan on +’em, not he! He fair likes—he langs to set his brazened face agean ’em! +And yon bonny lad Heathcliff, yah mind, he’s a rare ’un. He can girn a +laugh as well ’s onybody at a raight divil’s jest. Does he niver say +nowt of his fine living amang us, when he goes to t’ Grange? This is t’ +way on ’t:—up at sun-down: dice, brandy, cloised shutters, und +can’le-light till next day at noon: then, t’ fooil gangs banning un +raving to his cham’er, makking dacent fowks dig thur fingers i’ thur +lugs fur varry shame; un’ the knave, why he can caint his brass, un’ +ate, un’ sleep, un’ off to his neighbour’s to gossip wi’ t’ wife. I’ +course, he tells Dame Catherine how her fathur’s goold runs into his +pocket, and her fathur’s son gallops down t’ broad road, while he flees +afore to oppen t’ pikes!’ Now, Miss Linton, Joseph is an old rascal, +but no liar; and, if his account of Heathcliff’s conduct be true, you +would never think of desiring such a husband, would you?” + +“You are leagued with the rest, Ellen!” she replied. “I’ll not listen +to your slanders. What malevolence you must have to wish to convince me +that there is no happiness in the world!” + +Whether she would have got over this fancy if left to herself, or +persevered in nursing it perpetually, I cannot say: she had little time +to reflect. The day after, there was a justice-meeting at the next +town; my master was obliged to attend; and Mr. Heathcliff, aware of his +absence, called rather earlier than usual. Catherine and Isabella were +sitting in the library, on hostile terms, but silent: the latter +alarmed at her recent indiscretion, and the disclosure she had made of +her secret feelings in a transient fit of passion; the former, on +mature consideration, really offended with her companion; and, if she +laughed again at her pertness, inclined to make it no laughing matter +to _her_. She did laugh as she saw Heathcliff pass the window. I was +sweeping the hearth, and I noticed a mischievous smile on her lips. +Isabella, absorbed in her meditations, or a book, remained till the +door opened; and it was too late to attempt an escape, which she would +gladly have done had it been practicable. + +“Come in, that’s right!” exclaimed the mistress, gaily, pulling a chair +to the fire. “Here are two people sadly in need of a third to thaw the +ice between them; and you are the very one we should both of us choose. +Heathcliff, I’m proud to show you, at last, somebody that dotes on you +more than myself. I expect you to feel flattered. Nay, it’s not Nelly; +don’t look at her! My poor little sister-in-law is breaking her heart +by mere contemplation of your physical and moral beauty. It lies in +your own power to be Edgar’s brother! No, no, Isabella, you sha’n’t run +off,” she continued, arresting, with feigned playfulness, the +confounded girl, who had risen indignantly. “We were quarrelling like +cats about you, Heathcliff; and I was fairly beaten in protestations of +devotion and admiration: and, moreover, I was informed that if I would +but have the manners to stand aside, my rival, as she will have herself +to be, would shoot a shaft into your soul that would fix you for ever, +and send my image into eternal oblivion!” + +“Catherine!” said Isabella, calling up her dignity, and disdaining to +struggle from the tight grasp that held her, “I’d thank you to adhere +to the truth and not slander me, even in joke! Mr. Heathcliff, be kind +enough to bid this friend of yours release me: she forgets that you and +I are not intimate acquaintances; and what amuses her is painful to me +beyond expression.” + +As the guest answered nothing, but took his seat, and looked thoroughly +indifferent what sentiments she cherished concerning him, she turned +and whispered an earnest appeal for liberty to her tormentor. + +“By no means!” cried Mrs. Linton in answer. “I won’t be named a dog in +the manger again. You _shall_ stay: now then! Heathcliff, why don’t you +evince satisfaction at my pleasant news? Isabella swears that the love +Edgar has for me is nothing to that she entertains for you. I’m sure +she made some speech of the kind; did she not, Ellen? And she has +fasted ever since the day before yesterday’s walk, from sorrow and rage +that I despatched her out of your society under the idea of its being +unacceptable.” + +“I think you belie her,” said Heathcliff, twisting his chair to face +them. “She wishes to be out of my society now, at any rate!” + +And he stared hard at the object of discourse, as one might do at a +strange repulsive animal: a centipede from the Indies, for instance, +which curiosity leads one to examine in spite of the aversion it +raises. The poor thing couldn’t bear that; she grew white and red in +rapid succession, and, while tears beaded her lashes, bent the strength +of her small fingers to loosen the firm clutch of Catherine; and +perceiving that as fast as she raised one finger off her arm another +closed down, and she could not remove the whole together, she began to +make use of her nails; and their sharpness presently ornamented the +detainer’s with crescents of red. + +“There’s a tigress!” exclaimed Mrs. Linton, setting her free, and +shaking her hand with pain. “Begone, for God’s sake, and hide your +vixen face! How foolish to reveal those talons to _him_. Can’t you +fancy the conclusions he’ll draw? Look, Heathcliff! they are +instruments that will do execution—you must beware of your eyes.” + +“I’d wrench them off her fingers, if they ever menaced me,” he +answered, brutally, when the door had closed after her. “But what did +you mean by teasing the creature in that manner, Cathy? You were not +speaking the truth, were you?” + +“I assure you I was,” she returned. “She has been dying for your sake +several weeks, and raving about you this morning, and pouring forth a +deluge of abuse, because I represented your failings in a plain light, +for the purpose of mitigating her adoration. But don’t notice it +further: I wished to punish her sauciness, that’s all. I like her too +well, my dear Heathcliff, to let you absolutely seize and devour her +up.” + +“And I like her too ill to attempt it,” said he, “except in a very +ghoulish fashion. You’d hear of odd things if I lived alone with that +mawkish, waxen face: the most ordinary would be painting on its white +the colours of the rainbow, and turning the blue eyes black, every day +or two: they detestably resemble Linton’s.” + +“Delectably!” observed Catherine. “They are dove’s eyes—angel’s!” + +“She’s her brother’s heir, is she not?” he asked, after a brief +silence. + +“I should be sorry to think so,” returned his companion. “Half a dozen +nephews shall erase her title, please heaven! Abstract your mind from +the subject at present: you are too prone to covet your neighbour’s +goods; remember _this_ neighbour’s goods are mine.” + +“If they were _mine_, they would be none the less that,” said +Heathcliff; “but though Isabella Linton may be silly, she is scarcely +mad; and, in short, we’ll dismiss the matter, as you advise.” + +From their tongues they did dismiss it; and Catherine, probably, from +her thoughts. The other, I felt certain, recalled it often in the +course of the evening. I saw him smile to himself—grin rather—and lapse +into ominous musing whenever Mrs. Linton had occasion to be absent from +the apartment. + +I determined to watch his movements. My heart invariably cleaved to the +master’s, in preference to Catherine’s side: with reason I imagined, +for he was kind, and trustful, and honourable; and she—she could not be +called the _opposite_, yet she seemed to allow herself such wide +latitude, that I had little faith in her principles, and still less +sympathy for her feelings. I wanted something to happen which might +have the effect of freeing both Wuthering Heights and the Grange of Mr. +Heathcliff, quietly; leaving us as we had been prior to his advent. His +visits were a continual nightmare to me; and, I suspected, to my master +also. His abode at the Heights was an oppression past explaining. I +felt that God had forsaken the stray sheep there to its own wicked +wanderings, and an evil beast prowled between it and the fold, waiting +his time to spring and destroy. + + + + +CHAPTER XI + + +Sometimes, while meditating on these things in solitude, I’ve got up in +a sudden terror, and put on my bonnet to go see how all was at the +farm. I’ve persuaded my conscience that it was a duty to warn him how +people talked regarding his ways; and then I’ve recollected his +confirmed bad habits, and, hopeless of benefiting him, have flinched +from re-entering the dismal house, doubting if I could bear to be taken +at my word. + +One time I passed the old gate, going out of my way, on a journey to +Gimmerton. It was about the period that my narrative has reached: a +bright frosty afternoon; the ground bare, and the road hard and dry. I +came to a stone where the highway branches off on to the moor at your +left hand; a rough sand-pillar, with the letters W. H. cut on its north +side, on the east, G., and on the south-west, T. G. It serves as a +guide-post to the Grange, the Heights, and village. The sun shone +yellow on its grey head, reminding me of summer; and I cannot say why, +but all at once a gush of child’s sensations flowed into my heart. +Hindley and I held it a favourite spot twenty years before. I gazed +long at the weather-worn block; and, stooping down, perceived a hole +near the bottom still full of snail-shells and pebbles, which we were +fond of storing there with more perishable things; and, as fresh as +reality, it appeared that I beheld my early playmate seated on the +withered turf: his dark, square head bent forward, and his little hand +scooping out the earth with a piece of slate. “Poor Hindley!” I +exclaimed, involuntarily. I started: my bodily eye was cheated into a +momentary belief that the child lifted its face and stared straight +into mine! It vanished in a twinkling; but immediately I felt an +irresistible yearning to be at the Heights. Superstition urged me to +comply with this impulse: supposing he should be dead! I thought—or +should die soon!—supposing it were a sign of death! The nearer I got to +the house the more agitated I grew; and on catching sight of it I +trembled in every limb. The apparition had outstripped me: it stood +looking through the gate. That was my first idea on observing an +elf-locked, brown-eyed boy setting his ruddy countenance against the +bars. Further reflection suggested this must be Hareton, _my_ Hareton, +not altered greatly since I left him, ten months since. + +“God bless thee, darling!” I cried, forgetting instantaneously my +foolish fears. “Hareton, it’s Nelly! Nelly, thy nurse.” + +He retreated out of arm’s length, and picked up a large flint. + +“I am come to see thy father, Hareton,” I added, guessing from the +action that Nelly, if she lived in his memory at all, was not +recognised as one with me. + +He raised his missile to hurl it; I commenced a soothing speech, but +could not stay his hand: the stone struck my bonnet; and then ensued, +from the stammering lips of the little fellow, a string of curses, +which, whether he comprehended them or not, were delivered with +practised emphasis, and distorted his baby features into a shocking +expression of malignity. You may be certain this grieved more than +angered me. Fit to cry, I took an orange from my pocket, and offered it +to propitiate him. He hesitated, and then snatched it from my hold; as +if he fancied I only intended to tempt and disappoint him. I showed +another, keeping it out of his reach. + +“Who has taught you those fine words, my bairn?” I inquired. “The +curate?” + +“Damn the curate, and thee! Gie me that,” he replied. + +“Tell us where you got your lessons, and you shall have it,” said I. +“Who’s your master?” + +“Devil daddy,” was his answer. + +“And what do you learn from daddy?” I continued. + +He jumped at the fruit; I raised it higher. “What does he teach you?” I +asked. + +“Naught,” said he, “but to keep out of his gait. Daddy cannot bide me, +because I swear at him.” + +“Ah! and the devil teaches you to swear at daddy?” I observed. + +“Ay—nay,” he drawled. + +“Who, then?” + +“Heathcliff.” + +“I asked if he liked Mr. Heathcliff.” + +“Ay!” he answered again. + +Desiring to have his reasons for liking him, I could only gather the +sentences—“I known’t: he pays dad back what he gies to me—he curses +daddy for cursing me. He says I mun do as I will.” + +“And the curate does not teach you to read and write, then?” I pursued. + +“No, I was told the curate should have his —— teeth dashed down his —— +throat, if he stepped over the threshold—Heathcliff had promised that!” + +I put the orange in his hand, and bade him tell his father that a woman +called Nelly Dean was waiting to speak with him, by the garden gate. He +went up the walk, and entered the house; but, instead of Hindley, +Heathcliff appeared on the door-stones; and I turned directly and ran +down the road as hard as ever I could race, making no halt till I +gained the guide-post, and feeling as scared as if I had raised a +goblin. This is not much connected with Miss Isabella’s affair: except +that it urged me to resolve further on mounting vigilant guard, and +doing my utmost to check the spread of such bad influence at the +Grange: even though I should wake a domestic storm, by thwarting Mrs. +Linton’s pleasure. + +The next time Heathcliff came my young lady chanced to be feeding some +pigeons in the court. She had never spoken a word to her sister-in-law +for three days; but she had likewise dropped her fretful complaining, +and we found it a great comfort. Heathcliff had not the habit of +bestowing a single unnecessary civility on Miss Linton, I knew. Now, as +soon as he beheld her, his first precaution was to take a sweeping +survey of the house-front. I was standing by the kitchen-window, but I +drew out of sight. He then stepped across the pavement to her, and said +something: she seemed embarrassed, and desirous of getting away; to +prevent it, he laid his hand on her arm. She averted her face: he +apparently put some question which she had no mind to answer. There was +another rapid glance at the house, and supposing himself unseen, the +scoundrel had the impudence to embrace her. + +“Judas! Traitor!” I ejaculated. “You are a hypocrite, too, are you? A +deliberate deceiver.” + +“Who is, Nelly?” said Catherine’s voice at my elbow: I had been +over-intent on watching the pair outside to mark her entrance. + +“Your worthless friend!” I answered, warmly: “the sneaking rascal +yonder. Ah, he has caught a glimpse of us—he is coming in! I wonder +will he have the heart to find a plausible excuse for making love to +Miss, when he told you he hated her?” + +Mrs. Linton saw Isabella tear herself free, and run into the garden; +and a minute after, Heathcliff opened the door. I couldn’t withhold +giving some loose to my indignation; but Catherine angrily insisted on +silence, and threatened to order me out of the kitchen, if I dared to +be so presumptuous as to put in my insolent tongue. + +“To hear you, people might think you were the mistress!” she cried. +“You want setting down in your right place! Heathcliff, what are you +about, raising this stir? I said you must let Isabella alone!—I beg you +will, unless you are tired of being received here, and wish Linton to +draw the bolts against you!” + +“God forbid that he should try!” answered the black villain. I detested +him just then. “God keep him meek and patient! Every day I grow madder +after sending him to heaven!” + +“Hush!” said Catherine, shutting the inner door. “Don’t vex me. Why +have you disregarded my request? Did she come across you on purpose?” + +“What is it to you?” he growled. “I have a right to kiss her, if she +chooses; and you have no right to object. I am not _your_ husband: +_you_ needn’t be jealous of me!” + +“I’m not jealous of you,” replied the mistress; “I’m jealous for you. +Clear your face: you sha’n’t scowl at me! If you like Isabella, you +shall marry her. But do you like her? Tell the truth, Heathcliff! +There, you won’t answer. I’m certain you don’t.” + +“And would Mr. Linton approve of his sister marrying that man?” I +inquired. + +“Mr. Linton should approve,” returned my lady, decisively. + +“He might spare himself the trouble,” said Heathcliff: “I could do as +well without his approbation. And as to you, Catherine, I have a mind +to speak a few words now, while we are at it. I want you to be aware +that I _know_ you have treated me infernally—infernally! Do you hear? +And if you flatter yourself that I don’t perceive it, you are a fool; +and if you think I can be consoled by sweet words, you are an idiot: +and if you fancy I’ll suffer unrevenged, I’ll convince you of the +contrary, in a very little while! Meantime, thank you for telling me +your sister-in-law’s secret: I swear I’ll make the most of it. And +stand you aside!” + +“What new phase of his character is this?” exclaimed Mrs. Linton, in +amazement. “I’ve treated you infernally—and you’ll take your revenge! +How will you take it, ungrateful brute? How have I treated you +infernally?” + +“I seek no revenge on you,” replied Heathcliff, less vehemently. +“That’s not the plan. The tyrant grinds down his slaves and they don’t +turn against him; they crush those beneath them. You are welcome to +torture me to death for your amusement, only allow me to amuse myself a +little in the same style, and refrain from insult as much as you are +able. Having levelled my palace, don’t erect a hovel and complacently +admire your own charity in giving me that for a home. If I imagined you +really wished me to marry Isabel, I’d cut my throat!” + +“Oh, the evil is that I am _not_ jealous, is it?” cried Catherine. +“Well, I won’t repeat my offer of a wife: it is as bad as offering +Satan a lost soul. Your bliss lies, like his, in inflicting misery. You +prove it. Edgar is restored from the ill-temper he gave way to at your +coming; I begin to be secure and tranquil; and you, restless to know us +at peace, appear resolved on exciting a quarrel. Quarrel with Edgar, if +you please, Heathcliff, and deceive his sister: you’ll hit on exactly +the most efficient method of revenging yourself on me.” + +The conversation ceased. Mrs. Linton sat down by the fire, flushed and +gloomy. The spirit which served her was growing intractable: she could +neither lay nor control it. He stood on the hearth with folded arms, +brooding on his evil thoughts; and in this position I left them to seek +the master, who was wondering what kept Catherine below so long. + +“Ellen,” said he, when I entered, “have you seen your mistress?” + +“Yes; she’s in the kitchen, sir,” I answered. “She’s sadly put out by +Mr. Heathcliff’s behaviour: and, indeed, I do think it’s time to +arrange his visits on another footing. There’s harm in being too soft, +and now it’s come to this—.” And I related the scene in the court, and, +as near as I dared, the whole subsequent dispute. I fancied it could +not be very prejudicial to Mrs. Linton; unless she made it so +afterwards, by assuming the defensive for her guest. Edgar Linton had +difficulty in hearing me to the close. His first words revealed that he +did not clear his wife of blame. + +“This is insufferable!” he exclaimed. “It is disgraceful that she +should own him for a friend, and force his company on me! Call me two +men out of the hall, Ellen. Catherine shall linger no longer to argue +with the low ruffian—I have humoured her enough.” + +He descended, and bidding the servants wait in the passage, went, +followed by me, to the kitchen. Its occupants had recommenced their +angry discussion: Mrs. Linton, at least, was scolding with renewed +vigour; Heathcliff had moved to the window, and hung his head, somewhat +cowed by her violent rating apparently. He saw the master first, and +made a hasty motion that she should be silent; which she obeyed, +abruptly, on discovering the reason of his intimation. + +“How is this?” said Linton, addressing her; “what notion of propriety +must you have to remain here, after the language which has been held to +you by that blackguard? I suppose, because it is his ordinary talk you +think nothing of it: you are habituated to his baseness, and, perhaps, +imagine I can get used to it too!” + +“Have you been listening at the door, Edgar?” asked the mistress, in a +tone particularly calculated to provoke her husband, implying both +carelessness and contempt of his irritation. Heathcliff, who had raised +his eyes at the former speech, gave a sneering laugh at the latter; on +purpose, it seemed, to draw Mr. Linton’s attention to him. He +succeeded; but Edgar did not mean to entertain him with any high +flights of passion. + +“I’ve been so far forbearing with you, sir,” he said quietly; “not that +I was ignorant of your miserable, degraded character, but I felt you +were only partly responsible for that; and Catherine wishing to keep up +your acquaintance, I acquiesced—foolishly. Your presence is a moral +poison that would contaminate the most virtuous: for that cause, and to +prevent worse consequences, I shall deny you hereafter admission into +this house, and give notice now that I require your instant departure. +Three minutes’ delay will render it involuntary and ignominious.” + +Heathcliff measured the height and breadth of the speaker with an eye +full of derision. + +“Cathy, this lamb of yours threatens like a bull!” he said. “It is in +danger of splitting its skull against my knuckles. By God! Mr. Linton, +I’m mortally sorry that you are not worth knocking down!” + +My master glanced towards the passage, and signed me to fetch the men: +he had no intention of hazarding a personal encounter. I obeyed the +hint; but Mrs. Linton, suspecting something, followed; and when I +attempted to call them, she pulled me back, slammed the door to, and +locked it. + +“Fair means!” she said, in answer to her husband’s look of angry +surprise. “If you have not courage to attack him, make an apology, or +allow yourself to be beaten. It will correct you of feigning more +valour than you possess. No, I’ll swallow the key before you shall get +it! I’m delightfully rewarded for my kindness to each! After constant +indulgence of one’s weak nature, and the other’s bad one, I earn for +thanks two samples of blind ingratitude, stupid to absurdity! Edgar, I +was defending you and yours; and I wish Heathcliff may flog you sick, +for daring to think an evil thought of me!” + +It did not need the medium of a flogging to produce that effect on the +master. He tried to wrest the key from Catherine’s grasp, and for +safety she flung it into the hottest part of the fire; whereupon Mr. +Edgar was taken with a nervous trembling, and his countenance grew +deadly pale. For his life he could not avert that excess of emotion: +mingled anguish and humiliation overcame him completely. He leant on +the back of a chair, and covered his face. + +“Oh, heavens! In old days this would win you knighthood!” exclaimed +Mrs. Linton. “We are vanquished! we are vanquished! Heathcliff would as +soon lift a finger at you as the king would march his army against a +colony of mice. Cheer up! you sha’n’t be hurt! Your type is not a lamb, +it’s a sucking leveret.” + +“I wish you joy of the milk-blooded coward, Cathy!” said her friend. “I +compliment you on your taste. And that is the slavering, shivering +thing you preferred to me! I would not strike him with my fist, but I’d +kick him with my foot, and experience considerable satisfaction. Is he +weeping, or is he going to faint for fear?” + +The fellow approached and gave the chair on which Linton rested a push. +He’d better have kept his distance: my master quickly sprang erect, and +struck him full on the throat a blow that would have levelled a +slighter man. It took his breath for a minute; and while he choked, Mr. +Linton walked out by the back door into the yard, and from thence to +the front entrance. + +“There! you’ve done with coming here,” cried Catherine. “Get away, now; +he’ll return with a brace of pistols and half-a-dozen assistants. If he +did overhear us, of course he’d never forgive you. You’ve played me an +ill turn, Heathcliff! But go—make haste! I’d rather see Edgar at bay +than you.” + +“Do you suppose I’m going with that blow burning in my gullet?” he +thundered. “By hell, no! I’ll crush his ribs in like a rotten hazel-nut +before I cross the threshold! If I don’t floor him now, I shall murder +him some time; so, as you value his existence, let me get at him!” + +“He is not coming,” I interposed, framing a bit of a lie. “There’s the +coachman and the two gardeners; you’ll surely not wait to be thrust +into the road by them! Each has a bludgeon; and master will, very +likely, be watching from the parlour-windows to see that they fulfil +his orders.” + +The gardeners and coachman _were_ there: but Linton was with them. They +had already entered the court. Heathcliff, on the second thoughts, +resolved to avoid a struggle against three underlings: he seized the +poker, smashed the lock from the inner door, and made his escape as +they tramped in. + +Mrs. Linton, who was very much excited, bade me accompany her upstairs. +She did not know my share in contributing to the disturbance, and I was +anxious to keep her in ignorance. + +“I’m nearly distracted, Nelly!” she exclaimed, throwing herself on the +sofa. “A thousand smiths’ hammers are beating in my head! Tell Isabella +to shun me; this uproar is owing to her; and should she or any one else +aggravate my anger at present, I shall get wild. And, Nelly, say to +Edgar, if you see him again to-night, that I’m in danger of being +seriously ill. I wish it may prove true. He has startled and distressed +me shockingly! I want to frighten him. Besides, he might come and begin +a string of abuse or complainings; I’m certain I should recriminate, +and God knows where we should end! Will you do so, my good Nelly? You +are aware that I am no way blamable in this matter. What possessed him +to turn listener? Heathcliff’s talk was outrageous, after you left us; +but I could soon have diverted him from Isabella, and the rest meant +nothing. Now all is dashed wrong; by the fool’s craving to hear evil of +self, that haunts some people like a demon! Had Edgar never gathered +our conversation, he would never have been the worse for it. Really, +when he opened on me in that unreasonable tone of displeasure after I +had scolded Heathcliff till I was hoarse for _him;_ I did not care +hardly what they did to each other; especially as I felt that, however +the scene closed, we should all be driven asunder for nobody knows how +long! Well, if I cannot keep Heathcliff for my friend—if Edgar will be +mean and jealous, I’ll try to break their hearts by breaking my own. +That will be a prompt way of finishing all, when I am pushed to +extremity! But it’s a deed to be reserved for a forlorn hope; I’d not +take Linton by surprise with it. To this point he has been discreet in +dreading to provoke me; you must represent the peril of quitting that +policy, and remind him of my passionate temper, verging, when kindled, +on frenzy. I wish you could dismiss that apathy out of that +countenance, and look rather more anxious about me.” + +The stolidity with which I received these instructions was, no doubt, +rather exasperating: for they were delivered in perfect sincerity; but +I believed a person who could plan the turning of her fits of passion +to account, beforehand, might, by exerting her will, manage to control +herself tolerably, even while under their influence; and I did not wish +to “frighten” her husband, as she said, and multiply his annoyances for +the purpose of serving her selfishness. Therefore I said nothing when I +met the master coming towards the parlour; but I took the liberty of +turning back to listen whether they would resume their quarrel +together. He began to speak first. + +“Remain where you are, Catherine,” he said; without any anger in his +voice, but with much sorrowful despondency. “I shall not stay. I am +neither come to wrangle nor be reconciled; but I wish just to learn +whether, after this evening’s events, you intend to continue your +intimacy with—” + +“Oh, for mercy’s sake,” interrupted the mistress, stamping her foot, +“for mercy’s sake, let us hear no more of it now! Your cold blood +cannot be worked into a fever: your veins are full of ice-water; but +mine are boiling, and the sight of such chillness makes them dance.” + +“To get rid of me, answer my question,” persevered Mr. Linton. “You +_must_ answer it; and that violence does not alarm me. I have found +that you can be as stoical as anyone, when you please. Will you give up +Heathcliff hereafter, or will you give up me? It is impossible for you +to be _my_ friend and _his_ at the same time; and I absolutely +_require_ to know which you choose.” + +“I require to be let alone!” exclaimed Catherine, furiously. “I demand +it! Don’t you see I can scarcely stand? Edgar, you—you leave me!” + +She rang the bell till it broke with a twang; I entered leisurely. It +was enough to try the temper of a saint, such senseless, wicked rages! +There she lay dashing her head against the arm of the sofa, and +grinding her teeth, so that you might fancy she would crash them to +splinters! Mr. Linton stood looking at her in sudden compunction and +fear. He told me to fetch some water. She had no breath for speaking. I +brought a glass full; and as she would not drink, I sprinkled it on her +face. In a few seconds she stretched herself out stiff, and turned up +her eyes, while her cheeks, at once blanched and livid, assumed the +aspect of death. Linton looked terrified. + +“There is nothing in the world the matter,” I whispered. I did not want +him to yield, though I could not help being afraid in my heart. + +“She has blood on her lips!” he said, shuddering. + +“Never mind!” I answered, tartly. And I told him how she had resolved, +previous to his coming, on exhibiting a fit of frenzy. I incautiously +gave the account aloud, and she heard me; for she started up—her hair +flying over her shoulders, her eyes flashing, the muscles of her neck +and arms standing out preternaturally. I made up my mind for broken +bones, at least; but she only glared about her for an instant, and then +rushed from the room. The master directed me to follow; I did, to her +chamber-door: she hindered me from going further by securing it against +me. + +As she never offered to descend to breakfast next morning, I went to +ask whether she would have some carried up. “No!” she replied, +peremptorily. The same question was repeated at dinner and tea; and +again on the morrow after, and received the same answer. Mr. Linton, on +his part, spent his time in the library, and did not inquire concerning +his wife’s occupations. Isabella and he had had an hour’s interview, +during which he tried to elicit from her some sentiment of proper +horror for Heathcliff’s advances: but he could make nothing of her +evasive replies, and was obliged to close the examination +unsatisfactorily; adding, however, a solemn warning, that if she were +so insane as to encourage that worthless suitor, it would dissolve all +bonds of relationship between herself and him. + + + + +CHAPTER XII + + +While Miss Linton moped about the park and garden, always silent, and +almost always in tears; and her brother shut himself up among books +that he never opened—wearying, I guessed, with a continual vague +expectation that Catherine, repenting her conduct, would come of her +own accord to ask pardon, and seek a reconciliation—and _she_ fasted +pertinaciously, under the idea, probably, that at every meal Edgar was +ready to choke for her absence, and pride alone held him from running +to cast himself at her feet; I went about my household duties, +convinced that the Grange had but one sensible soul in its walls, and +that lodged in my body. I wasted no condolences on Miss, nor any +expostulations on my mistress; nor did I pay much attention to the +sighs of my master, who yearned to hear his lady’s name, since he might +not hear her voice. I determined they should come about as they pleased +for me; and though it was a tiresomely slow process, I began to rejoice +at length in a faint dawn of its progress: as I thought at first. + +Mrs. Linton, on the third day, unbarred her door, and having finished +the water in her pitcher and decanter, desired a renewed supply, and a +basin of gruel, for she believed she was dying. That I set down as a +speech meant for Edgar’s ears; I believed no such thing, so I kept it +to myself and brought her some tea and dry toast. She ate and drank +eagerly, and sank back on her pillow again, clenching her hands and +groaning. “Oh, I will die,” she exclaimed, “since no one cares anything +about me. I wish I had not taken that.” Then a good while after I heard +her murmur, “No, I’ll not die—he’d be glad—he does not love me at +all—he would never miss me!” + +“Did you want anything, ma’am?” I inquired, still preserving my +external composure, in spite of her ghastly countenance and strange, +exaggerated manner. + +“What is that apathetic being doing?” she demanded, pushing the thick +entangled locks from her wasted face. “Has he fallen into a lethargy, +or is he dead?” + +“Neither,” replied I; “if you mean Mr. Linton. He’s tolerably well, I +think, though his studies occupy him rather more than they ought: he is +continually among his books, since he has no other society.” + +I should not have spoken so if I had known her true condition, but I +could not get rid of the notion that she acted a part of her disorder. + +“Among his books!” she cried, confounded. “And I dying! I on the brink +of the grave! My God! does he know how I’m altered?” continued she, +staring at her reflection in a mirror hanging against the opposite +wall. “Is that Catherine Linton? He imagines me in a pet—in play, +perhaps. Cannot you inform him that it is frightful earnest? Nelly, if +it be not too late, as soon as I learn how he feels, I’ll choose +between these two: either to starve at once—that would be no punishment +unless he had a heart—or to recover, and leave the country. Are you +speaking the truth about him now? Take care. Is he actually so utterly +indifferent for my life?” + +“Why, ma’am,” I answered, “the master has no idea of your being +deranged; and of course he does not fear that you will let yourself die +of hunger.” + +“You think not? Cannot you tell him I will?” she returned. “Persuade +him! speak of your own mind: say you are certain I will!” + +“No, you forget, Mrs. Linton,” I suggested, “that you have eaten some +food with a relish this evening, and to-morrow you will perceive its +good effects.” + +“If I were only sure it would kill him,” she interrupted, “I’d kill +myself directly! These three awful nights I’ve never closed my lids—and +oh, I’ve been tormented! I’ve been haunted, Nelly! But I begin to fancy +you don’t like me. How strange! I thought, though everybody hated and +despised each other, they could not avoid loving me. And they have all +turned to enemies in a few hours. _They_ have, I’m positive; the people +_here_. How dreary to meet death, surrounded by their cold faces! +Isabella, terrified and repelled, afraid to enter the room, it would be +so dreadful to watch Catherine go. And Edgar standing solemnly by to +see it over; then offering prayers of thanks to God for restoring peace +to his house, and going back to his _books_! What in the name of all +that feels has he to do with _books_, when I am dying?” + +She could not bear the notion which I had put into her head of Mr. +Linton’s philosophical resignation. Tossing about, she increased her +feverish bewilderment to madness, and tore the pillow with her teeth; +then raising herself up all burning, desired that I would open the +window. We were in the middle of winter, the wind blew strong from the +north-east, and I objected. Both the expressions flitting over her +face, and the changes of her moods, began to alarm me terribly; and +brought to my recollection her former illness, and the doctor’s +injunction that she should not be crossed. A minute previously she was +violent; now, supported on one arm, and not noticing my refusal to obey +her, she seemed to find childish diversion in pulling the feathers from +the rents she had just made, and ranging them on the sheet according to +their different species: her mind had strayed to other associations. + +“That’s a turkey’s,” she murmured to herself; “and this is a wild +duck’s; and this is a pigeon’s. Ah, they put pigeons’ feathers in the +pillows—no wonder I couldn’t die! Let me take care to throw it on the +floor when I lie down. And here is a moor-cock’s; and this—I should +know it among a thousand—it’s a lapwing’s. Bonny bird; wheeling over +our heads in the middle of the moor. It wanted to get to its nest, for +the clouds had touched the swells, and it felt rain coming. This +feather was picked up from the heath, the bird was not shot: we saw its +nest in the winter, full of little skeletons. Heathcliff set a trap +over it, and the old ones dared not come. I made him promise he’d never +shoot a lapwing after that, and he didn’t. Yes, here are more! Did he +shoot my lapwings, Nelly? Are they red, any of them? Let me look.” + +“Give over with that baby-work!” I interrupted, dragging the pillow +away, and turning the holes towards the mattress, for she was removing +its contents by handfuls. “Lie down and shut your eyes: you’re +wandering. There’s a mess! The down is flying about like snow.” + +I went here and there collecting it. + +“I see in you, Nelly,” she continued dreamily, “an aged woman: you have +grey hair and bent shoulders. This bed is the fairy cave under +Penistone Crags, and you are gathering elf-bolts to hurt our heifers; +pretending, while I am near, that they are only locks of wool. That’s +what you’ll come to fifty years hence: I know you are not so now. I’m +not wandering: you’re mistaken, or else I should believe you really +_were_ that withered hag, and I should think I _was_ under Penistone +Crags; and I’m conscious it’s night, and there are two candles on the +table making the black press shine like jet.” + +“The black press? where is that?” I asked. “You are talking in your +sleep!” + +“It’s against the wall, as it always is,” she replied. “It _does_ +appear odd—I see a face in it!” + +“There’s no press in the room, and never was,” said I, resuming my +seat, and looping up the curtain that I might watch her. + +“Don’t _you_ see that face?” she inquired, gazing earnestly at the +mirror. + +And say what I could, I was incapable of making her comprehend it to be +her own; so I rose and covered it with a shawl. + +“It’s behind there still!” she pursued, anxiously. “And it stirred. Who +is it? I hope it will not come out when you are gone! Oh! Nelly, the +room is haunted! I’m afraid of being alone!” + +I took her hand in mine, and bid her be composed; for a succession of +shudders convulsed her frame, and she _would_ keep straining her gaze +towards the glass. + +“There’s nobody here!” I insisted. “It was _yourself_, Mrs. Linton: you +knew it a while since.” + +“Myself!” she gasped, “and the clock is striking twelve! It’s true, +then! that’s dreadful!” + +Her fingers clutched the clothes, and gathered them over her eyes. I +attempted to steal to the door with an intention of calling her +husband; but I was summoned back by a piercing shriek—the shawl had +dropped from the frame. + +“Why, what _is_ the matter?” cried I. “Who is coward now? Wake up! That +is the glass—the mirror, Mrs. Linton; and you see yourself in it, and +there am I too by your side.” + +Trembling and bewildered, she held me fast, but the horror gradually +passed from her countenance; its paleness gave place to a glow of +shame. + +“Oh, dear! I thought I was at home,” she sighed. “I thought I was lying +in my chamber at Wuthering Heights. Because I’m weak, my brain got +confused, and I screamed unconsciously. Don’t say anything; but stay +with me. I dread sleeping: my dreams appal me.” + +“A sound sleep would do you good, ma’am,” I answered: “and I hope this +suffering will prevent your trying starving again.” + +“Oh, if I were but in my own bed in the old house!” she went on +bitterly, wringing her hands. “And that wind sounding in the firs by +the lattice. Do let me feel it—it comes straight down the moor—do let +me have one breath!” + +To pacify her I held the casement ajar a few seconds. A cold blast +rushed through; I closed it, and returned to my post. She lay still +now, her face bathed in tears. Exhaustion of body had entirely subdued +her spirit: our fiery Catherine was no better than a wailing child. + +“How long is it since I shut myself in here?” she asked, suddenly +reviving. + +“It was Monday evening,” I replied, “and this is Thursday night, or +rather Friday morning, at present.” + +“What! of the same week?” she exclaimed. “Only that brief time?” + +“Long enough to live on nothing but cold water and ill-temper,” +observed I. + +“Well, it seems a weary number of hours,” she muttered doubtfully: “it +must be more. I remember being in the parlour after they had +quarrelled, and Edgar being cruelly provoking, and me running into this +room desperate. As soon as ever I had barred the door, utter blackness +overwhelmed me, and I fell on the floor. I couldn’t explain to Edgar +how certain I felt of having a fit, or going raging mad, if he +persisted in teasing me! I had no command of tongue, or brain, and he +did not guess my agony, perhaps: it barely left me sense to try to +escape from him and his voice. Before I recovered sufficiently to see +and hear, it began to be dawn, and, Nelly, I’ll tell you what I +thought, and what has kept recurring and recurring till I feared for my +reason. I thought as I lay there, with my head against that table leg, +and my eyes dimly discerning the grey square of the window, that I was +enclosed in the oak-panelled bed at home; and my heart ached with some +great grief which, just waking, I could not recollect. I pondered, and +worried myself to discover what it could be, and, most strangely, the +whole last seven years of my life grew a blank! I did not recall that +they had been at all. I was a child; my father was just buried, and my +misery arose from the separation that Hindley had ordered between me +and Heathcliff. I was laid alone, for the first time; and, rousing from +a dismal doze after a night of weeping, I lifted my hand to push the +panels aside: it struck the table-top! I swept it along the carpet, and +then memory burst in: my late anguish was swallowed in a paroxysm of +despair. I cannot say why I felt so wildly wretched: it must have been +temporary derangement; for there is scarcely cause. But, supposing at +twelve years old I had been wrenched from the Heights, and every early +association, and my all in all, as Heathcliff was at that time, and +been converted at a stroke into Mrs. Linton, the lady of Thrushcross +Grange, and the wife of a stranger: an exile, and outcast, thenceforth, +from what had been my world. You may fancy a glimpse of the abyss where +I grovelled! Shake your head as you will, Nelly, _you_ have helped to +unsettle me! You should have spoken to Edgar, indeed you should, and +compelled him to leave me quiet! Oh, I’m burning! I wish I were out of +doors! I wish I were a girl again, half savage and hardy, and free; and +laughing at injuries, not maddening under them! Why am I so changed? +why does my blood rush into a hell of tumult at a few words? I’m sure I +should be myself were I once among the heather on those hills. Open the +window again wide: fasten it open! Quick, why don’t you move?” + +“Because I won’t give you your death of cold,” I answered. + +“You won’t give me a chance of life, you mean,” she said sullenly. +“However, I’m not helpless yet; I’ll open it myself.” + +And sliding from the bed before I could hinder her, she crossed the +room, walking very uncertainly, threw it back, and bent out, careless +of the frosty air that cut about her shoulders as keen as a knife. I +entreated, and finally attempted to force her to retire. But I soon +found her delirious strength much surpassed mine (she _was_ delirious, +I became convinced by her subsequent actions and ravings). There was no +moon, and everything beneath lay in misty darkness: not a light gleamed +from any house, far or near; all had been extinguished long ago: and +those at Wuthering Heights were never visible—still she asserted she +caught their shining. + +“Look!” she cried eagerly, “that’s my room with the candle in it, and +the trees swaying before it; and the other candle is in Joseph’s +garret. Joseph sits up late, doesn’t he? He’s waiting till I come home +that he may lock the gate. Well, he’ll wait a while yet. It’s a rough +journey, and a sad heart to travel it; and we must pass by Gimmerton +Kirk to go that journey! We’ve braved its ghosts often together, and +dared each other to stand among the graves and ask them to come. But, +Heathcliff, if I dare you now, will you venture? If you do, I’ll keep +you. I’ll not lie there by myself: they may bury me twelve feet deep, +and throw the church down over me, but I won’t rest till you are with +me. I never will!” + +She paused, and resumed with a strange smile. “He’s considering—he’d +rather I’d come to him! Find a way, then! not through that kirkyard. +You are slow! Be content, you always followed me!” + +Perceiving it vain to argue against her insanity, I was planning how I +could reach something to wrap about her, without quitting my hold of +herself (for I could not trust her alone by the gaping lattice), when, +to my consternation, I heard the rattle of the door-handle, and Mr. +Linton entered. He had only then come from the library; and, in passing +through the lobby, had noticed our talking and been attracted by +curiosity, or fear, to examine what it signified, at that late hour. + +“Oh, sir!” I cried, checking the exclamation risen to his lips at the +sight which met him, and the bleak atmosphere of the chamber. “My poor +mistress is ill, and she quite masters me: I cannot manage her at all; +pray, come and persuade her to go to bed. Forget your anger, for she’s +hard to guide any way but her own.” + +“Catherine ill?” he said, hastening to us. “Shut the window, Ellen! +Catherine! why—” + +He was silent. The haggardness of Mrs. Linton’s appearance smote him +speechless, and he could only glance from her to me in horrified +astonishment. + +“She’s been fretting here,” I continued, “and eating scarcely anything, +and never complaining: she would admit none of us till this evening, +and so we couldn’t inform you of her state, as we were not aware of it +ourselves; but it is nothing.” + +I felt I uttered my explanations awkwardly; the master frowned. “It is +nothing, is it, Ellen Dean?” he said sternly. “You shall account more +clearly for keeping me ignorant of this!” And he took his wife in his +arms, and looked at her with anguish. + +At first she gave him no glance of recognition: he was invisible to her +abstracted gaze. The delirium was not fixed, however; having weaned her +eyes from contemplating the outer darkness, by degrees she centred her +attention on him, and discovered who it was that held her. + +“Ah! you are come, are you, Edgar Linton?” she said, with angry +animation. “You are one of those things that are ever found when least +wanted, and when you are wanted, never! I suppose we shall have plenty +of lamentations now—I see we shall—but they can’t keep me from my +narrow home out yonder: my resting-place, where I’m bound before spring +is over! There it is: not among the Lintons, mind, under the +chapel-roof, but in the open air, with a head-stone; and you may please +yourself whether you go to them or come to me!” + +“Catherine, what have you done?” commenced the master. “Am I nothing to +you any more? Do you love that wretch Heath—” + +“Hush!” cried Mrs. Linton. “Hush, this moment! You mention that name +and I end the matter instantly by a spring from the window! What you +touch at present you may have; but my soul will be on that hill-top +before you lay hands on me again. I don’t want you, Edgar: I’m past +wanting you. Return to your books. I’m glad you possess a consolation, +for all you had in me is gone.” + +“Her mind wanders, sir,” I interposed. “She has been talking nonsense +the whole evening; but let her have quiet, and proper attendance, and +she’ll rally. Hereafter, we must be cautious how we vex her.” + +“I desire no further advice from you,” answered Mr. Linton. “You knew +your mistress’s nature, and you encouraged me to harass her. And not to +give me one hint of how she has been these three days! It was +heartless! Months of sickness could not cause such a change!” + +I began to defend myself, thinking it too bad to be blamed for +another’s wicked waywardness. “I knew Mrs. Linton’s nature to be +headstrong and domineering,” cried I: “but I didn’t know that you +wished to foster her fierce temper! I didn’t know that, to humour her, +I should wink at Mr. Heathcliff. I performed the duty of a faithful +servant in telling you, and I have got a faithful servant’s wages! +Well, it will teach me to be careful next time. Next time you may +gather intelligence for yourself!” + +“The next time you bring a tale to me you shall quit my service, Ellen +Dean,” he replied. + +“You’d rather hear nothing about it, I suppose, then, Mr. Linton?” said +I. “Heathcliff has your permission to come a-courting to Miss, and to +drop in at every opportunity your absence offers, on purpose to poison +the mistress against you?” + +Confused as Catherine was, her wits were alert at applying our +conversation. + +“Ah! Nelly has played traitor,” she exclaimed, passionately. “Nelly is +my hidden enemy. You witch! So you do seek elf-bolts to hurt us! Let me +go, and I’ll make her rue! I’ll make her howl a recantation!” + +A maniac’s fury kindled under her brows; she struggled desperately to +disengage herself from Linton’s arms. I felt no inclination to tarry +the event; and, resolving to seek medical aid on my own responsibility, +I quitted the chamber. + +In passing the garden to reach the road, at a place where a bridle hook +is driven into the wall, I saw something white moved irregularly, +evidently by another agent than the wind. Notwithstanding my hurry, I +stayed to examine it, lest ever after I should have the conviction +impressed on my imagination that it was a creature of the other world. +My surprise and perplexity were great on discovering, by touch more +than vision, Miss Isabella’s springer, Fanny, suspended by a +handkerchief, and nearly at its last gasp. I quickly released the +animal, and lifted it into the garden. I had seen it follow its +mistress upstairs when she went to bed; and wondered much how it could +have got out there, and what mischievous person had treated it so. +While untying the knot round the hook, it seemed to me that I +repeatedly caught the beat of horses’ feet galloping at some distance; +but there were such a number of things to occupy my reflections that I +hardly gave the circumstance a thought: though it was a strange sound, +in that place, at two o’clock in the morning. + +Mr. Kenneth was fortunately just issuing from his house to see a +patient in the village as I came up the street; and my account of +Catherine Linton’s malady induced him to accompany me back immediately. +He was a plain rough man; and he made no scruple to speak his doubts of +her surviving this second attack; unless she were more submissive to +his directions than she had shown herself before. + +“Nelly Dean,” said he, “I can’t help fancying there’s an extra cause +for this. What has there been to do at the Grange? We’ve odd reports up +here. A stout, hearty lass like Catherine does not fall ill for a +trifle; and that sort of people should not either. It’s hard work +bringing them through fevers, and such things. How did it begin?” + +“The master will inform you,” I answered; “but you are acquainted with +the Earnshaws’ violent dispositions, and Mrs. Linton caps them all. I +may say this; it commenced in a quarrel. She was struck during a +tempest of passion with a kind of fit. That’s her account, at least: +for she flew off in the height of it, and locked herself up. +Afterwards, she refused to eat, and now she alternately raves and +remains in a half dream; knowing those about her, but having her mind +filled with all sorts of strange ideas and illusions.” + +“Mr. Linton will be sorry?” observed Kenneth, interrogatively. + +“Sorry? he’ll break his heart should anything happen!” I replied. +“Don’t alarm him more than necessary.” + +“Well, I told him to beware,” said my companion; “and he must bide the +consequences of neglecting my warning! Hasn’t he been intimate with Mr. +Heathcliff lately?” + +“Heathcliff frequently visits at the Grange,” answered I, “though more +on the strength of the mistress having known him when a boy, than +because the master likes his company. At present he’s discharged from +the trouble of calling; owing to some presumptuous aspirations after +Miss Linton which he manifested. I hardly think he’ll be taken in +again.” + +“And does Miss Linton turn a cold shoulder on him?” was the doctor’s +next question. + +“I’m not in her confidence,” returned I, reluctant to continue the +subject. + +“No, she’s a sly one,” he remarked, shaking his head. “She keeps her +own counsel! But she’s a real little fool. I have it from good +authority that last night (and a pretty night it was!) she and +Heathcliff were walking in the plantation at the back of your house +above two hours; and he pressed her not to go in again, but just mount +his horse and away with him! My informant said she could only put him +off by pledging her word of honour to be prepared on their first +meeting after that: when it was to be he didn’t hear; but you urge Mr. +Linton to look sharp!” + +This news filled me with fresh fears; I outstripped Kenneth, and ran +most of the way back. The little dog was yelping in the garden yet. I +spared a minute to open the gate for it, but instead of going to the +house door, it coursed up and down snuffing the grass, and would have +escaped to the road, had I not seized it and conveyed it in with me. On +ascending to Isabella’s room, my suspicions were confirmed: it was +empty. Had I been a few hours sooner Mrs. Linton’s illness might have +arrested her rash step. But what could be done now? There was a bare +possibility of overtaking them if pursued instantly. _I_ could not +pursue them, however; and I dared not rouse the family, and fill the +place with confusion; still less unfold the business to my master, +absorbed as he was in his present calamity, and having no heart to +spare for a second grief! I saw nothing for it but to hold my tongue, +and suffer matters to take their course; and Kenneth being arrived, I +went with a badly composed countenance to announce him. Catherine lay +in a troubled sleep: her husband had succeeded in soothing the excess +of frenzy; he now hung over her pillow, watching every shade and every +change of her painfully expressive features. + +The doctor, on examining the case for himself, spoke hopefully to him +of its having a favourable termination, if we could only preserve +around her perfect and constant tranquillity. To me, he signified the +threatening danger was not so much death, as permanent alienation of +intellect. + +I did not close my eyes that night, nor did Mr. Linton: indeed, we +never went to bed; and the servants were all up long before the usual +hour, moving through the house with stealthy tread, and exchanging +whispers as they encountered each other in their vocations. Every one +was active but Miss Isabella; and they began to remark how sound she +slept: her brother, too, asked if she had risen, and seemed impatient +for her presence, and hurt that she showed so little anxiety for her +sister-in-law. I trembled lest he should send me to call her; but I was +spared the pain of being the first proclaimant of her flight. One of +the maids, a thoughtless girl, who had been on an early errand to +Gimmerton, came panting upstairs, open-mouthed, and dashed into the +chamber, crying: “Oh, dear, dear! What mun we have next? Master, +master, our young lady—” + +“Hold your noise!” cried I hastily, enraged at her clamorous manner. + +“Speak lower, Mary—What is the matter?” said Mr. Linton. “What ails +your young lady?” + +“She’s gone, she’s gone! Yon’ Heathcliff’s run off wi’ her!” gasped the +girl. + +“That is not true!” exclaimed Linton, rising in agitation. “It cannot +be: how has the idea entered your head? Ellen Dean, go and seek her. It +is incredible: it cannot be.” + +As he spoke he took the servant to the door, and then repeated his +demand to know her reasons for such an assertion. + +“Why, I met on the road a lad that fetches milk here,” she stammered, +“and he asked whether we weren’t in trouble at the Grange. I thought he +meant for missis’s sickness, so I answered, yes. Then says he, ‘There’s +somebody gone after ’em, I guess?’ I stared. He saw I knew nought about +it, and he told how a gentleman and lady had stopped to have a horse’s +shoe fastened at a blacksmith’s shop, two miles out of Gimmerton, not +very long after midnight! and how the blacksmith’s lass had got up to +spy who they were: she knew them both directly. And she noticed the +man—Heathcliff it was, she felt certain: nob’dy could mistake him, +besides—put a sovereign in her father’s hand for payment. The lady had +a cloak about her face; but having desired a sup of water, while she +drank it fell back, and she saw her very plain. Heathcliff held both +bridles as they rode on, and they set their faces from the village, and +went as fast as the rough roads would let them. The lass said nothing +to her father, but she told it all over Gimmerton this morning.” + +I ran and peeped, for form’s sake, into Isabella’s room; confirming, +when I returned, the servant’s statement. Mr. Linton had resumed his +seat by the bed; on my re-entrance, he raised his eyes, read the +meaning of my blank aspect, and dropped them without giving an order, +or uttering a word. + +“Are we to try any measures for overtaking and bringing her back,” I +inquired. “How should we do?” + +“She went of her own accord,” answered the master; “she had a right to +go if she pleased. Trouble me no more about her. Hereafter she is only +my sister in name: not because I disown her, but because she has +disowned me.” + +And that was all he said on the subject: he did not make a single inquiry +further, or mention her in any way, except directing me to send what +property she had in the house to her fresh home, wherever it was, when +I knew it. + + + + +CHAPTER XIII + + +For two months the fugitives remained absent; in those two months, Mrs. +Linton encountered and conquered the worst shock of what was +denominated a brain fever. No mother could have nursed an only child +more devotedly than Edgar tended her. Day and night he was watching, +and patiently enduring all the annoyances that irritable nerves and a +shaken reason could inflict; and, though Kenneth remarked that what he +saved from the grave would only recompense his care by forming the +source of constant future anxiety—in fact, that his health and strength +were being sacrificed to preserve a mere ruin of humanity—he knew no +limits in gratitude and joy when Catherine’s life was declared out of +danger; and hour after hour he would sit beside her, tracing the +gradual return to bodily health, and flattering his too sanguine hopes +with the illusion that her mind would settle back to its right balance +also, and she would soon be entirely her former self. + +The first time she left her chamber was at the commencement of the +following March. Mr. Linton had put on her pillow, in the morning, a +handful of golden crocuses; her eye, long stranger to any gleam of +pleasure, caught them in waking, and shone delighted as she gathered +them eagerly together. + +“These are the earliest flowers at the Heights,” she exclaimed. “They +remind me of soft thaw winds, and warm sunshine, and nearly melted +snow. Edgar, is there not a south wind, and is not the snow almost +gone?” + +“The snow is quite gone down here, darling,” replied her husband; “and +I only see two white spots on the whole range of moors: the sky is +blue, and the larks are singing, and the becks and brooks are all brim +full. Catherine, last spring at this time, I was longing to have you +under this roof; now, I wish you were a mile or two up those hills: the +air blows so sweetly, I feel that it would cure you.” + +“I shall never be there but once more,” said the invalid; “and then +you’ll leave me, and I shall remain for ever. Next spring you’ll long +again to have me under this roof, and you’ll look back and think you +were happy to-day.” + +Linton lavished on her the kindest caresses, and tried to cheer her by +the fondest words; but, vaguely regarding the flowers, she let the +tears collect on her lashes and stream down her cheeks unheeding. We +knew she was really better, and, therefore, decided that long +confinement to a single place produced much of this despondency, and it +might be partially removed by a change of scene. The master told me to +light a fire in the many-weeks’ deserted parlour, and to set an +easy-chair in the sunshine by the window; and then he brought her down, +and she sat a long while enjoying the genial heat, and, as we expected, +revived by the objects round her: which, though familiar, were free +from the dreary associations investing her hated sick chamber. By +evening she seemed greatly exhausted; yet no arguments could persuade +her to return to that apartment, and I had to arrange the parlour sofa +for her bed, till another room could be prepared. To obviate the +fatigue of mounting and descending the stairs, we fitted up this, where +you lie at present—on the same floor with the parlour; and she was soon +strong enough to move from one to the other, leaning on Edgar’s arm. +Ah, I thought myself, she might recover, so waited on as she was. And +there was double cause to desire it, for on her existence depended that +of another: we cherished the hope that in a little while Mr. Linton’s +heart would be gladdened, and his lands secured from a stranger’s +gripe, by the birth of an heir. + +I should mention that Isabella sent to her brother, some six weeks from +her departure, a short note, announcing her marriage with Heathcliff. +It appeared dry and cold; but at the bottom was dotted in with pencil +an obscure apology, and an entreaty for kind remembrance and +reconciliation, if her proceeding had offended him: asserting that she +could not help it then, and being done, she had now no power to repeal +it. Linton did not reply to this, I believe; and, in a fortnight more, +I got a long letter, which I considered odd, coming from the pen of a +bride just out of the honeymoon. I’ll read it: for I keep it yet. Any +relic of the dead is precious, if they were valued living. + +* * * * * + + +DEAR ELLEN, it begins,—I came last night to Wuthering Heights, and +heard, for the first time, that Catherine has been, and is yet, very +ill. I must not write to her, I suppose, and my brother is either too +angry or too distressed to answer what I sent him. Still, I must write +to somebody, and the only choice left me is you. + +Inform Edgar that I’d give the world to see his face again—that my +heart returned to Thrushcross Grange in twenty-four hours after I left +it, and is there at this moment, full of warm feelings for him, and +Catherine! _I can’t follow it though_—(these words are underlined)—they +need not expect me, and they may draw what conclusions they please; +taking care, however, to lay nothing at the door of my weak will or +deficient affection. + +The remainder of the letter is for yourself alone. I want to ask you +two questions: the first is,—How did you contrive to preserve the +common sympathies of human nature when you resided here? I cannot +recognise any sentiment which those around share with me. + +The second question I have great interest in; it is this—Is Mr. +Heathcliff a man? If so, is he mad? And if not, is he a devil? I +sha’n’t tell my reasons for making this inquiry; but I beseech you to +explain, if you can, what I have married: that is, when you call to see +me; and you must call, Ellen, very soon. Don’t write, but come, and +bring me something from Edgar. + +Now, you shall hear how I have been received in my new home, as I am +led to imagine the Heights will be. It is to amuse myself that I dwell +on such subjects as the lack of external comforts: they never occupy my +thoughts, except at the moment when I miss them. I should laugh and +dance for joy, if I found their absence was the total of my miseries, +and the rest was an unnatural dream! + +The sun set behind the Grange as we turned on to the moors; by that, I +judged it to be six o’clock; and my companion halted half an hour, to +inspect the park, and the gardens, and, probably, the place itself, as +well as he could; so it was dark when we dismounted in the paved yard +of the farmhouse, and your old fellow-servant, Joseph, issued out to +receive us by the light of a dip candle. He did it with a courtesy that +redounded to his credit. His first act was to elevate his torch to a +level with my face, squint malignantly, project his under-lip, and turn +away. Then he took the two horses, and led them into the stables; +reappearing for the purpose of locking the outer gate, as if we lived +in an ancient castle. + +Heathcliff stayed to speak to him, and I entered the kitchen—a dingy, +untidy hole; I daresay you would not know it, it is so changed since it +was in your charge. By the fire stood a ruffianly child, strong in limb +and dirty in garb, with a look of Catherine in his eyes and about his +mouth. + +“This is Edgar’s legal nephew,” I reflected—“mine in a manner; I must +shake hands, and—yes—I must kiss him. It is right to establish a good +understanding at the beginning.” + +I approached, and, attempting to take his chubby fist, said—“How do you +do, my dear?” + +He replied in a jargon I did not comprehend. + +“Shall you and I be friends, Hareton?” was my next essay at +conversation. + +An oath, and a threat to set Throttler on me if I did not “frame off” +rewarded my perseverance. + +“Hey, Throttler, lad!” whispered the little wretch, rousing a half-bred +bull-dog from its lair in a corner. “Now, wilt thou be ganging?” he +asked authoritatively. + +Love for my life urged a compliance; I stepped over the threshold to +wait till the others should enter. Mr. Heathcliff was nowhere visible; +and Joseph, whom I followed to the stables, and requested to accompany +me in, after staring and muttering to himself, screwed up his nose and +replied—“Mim! mim! mim! Did iver Christian body hear aught like it? +Mincing un’ munching! How can I tell whet ye say?” + +“I say, I wish you to come with me into the house!” I cried, thinking +him deaf, yet highly disgusted at his rudeness. + +“None o’ me! I getten summut else to do,” he answered, and continued +his work; moving his lantern jaws meanwhile, and surveying my dress and +countenance (the former a great deal too fine, but the latter, I’m +sure, as sad as he could desire) with sovereign contempt. + +I walked round the yard, and through a wicket, to another door, at +which I took the liberty of knocking, in hopes some more civil servant +might show himself. After a short suspense, it was opened by a tall, +gaunt man, without neckerchief, and otherwise extremely slovenly; his +features were lost in masses of shaggy hair that hung on his shoulders; +and _his_ eyes, too, were like a ghostly Catherine’s with all their +beauty annihilated. + +“What’s your business here?” he demanded, grimly. “Who are you?” + +“My name _was_ Isabella Linton,” I replied. “You’ve seen me before, +sir. I’m lately married to Mr. Heathcliff, and he has brought me here—I +suppose by your permission.” + +“Is he come back, then?” asked the hermit, glaring like a hungry wolf. + +“Yes—we came just now,” I said; “but he left me by the kitchen door; +and when I would have gone in, your little boy played sentinel over the +place, and frightened me off by the help of a bull-dog.” + +“It’s well the hellish villain has kept his word!” growled my future +host, searching the darkness beyond me in expectation of discovering +Heathcliff; and then he indulged in a soliloquy of execrations, and +threats of what he would have done had the “fiend” deceived him. + +I repented having tried this second entrance, and was almost inclined +to slip away before he finished cursing, but ere I could execute that +intention, he ordered me in, and shut and re-fastened the door. There +was a great fire, and that was all the light in the huge apartment, +whose floor had grown a uniform grey; and the once brilliant +pewter-dishes, which used to attract my gaze when I was a girl, partook +of a similar obscurity, created by tarnish and dust. I inquired whether +I might call the maid, and be conducted to a bedroom! Mr. Earnshaw +vouchsafed no answer. He walked up and down, with his hands in his +pockets, apparently quite forgetting my presence; and his abstraction +was evidently so deep, and his whole aspect so misanthropical, that I +shrank from disturbing him again. + +You’ll not be surprised, Ellen, at my feeling particularly cheerless, +seated in worse than solitude on that inhospitable hearth, and +remembering that four miles distant lay my delightful home, containing +the only people I loved on earth; and there might as well be the +Atlantic to part us, instead of those four miles: I could not overpass +them! I questioned with myself—where must I turn for comfort? and—mind +you don’t tell Edgar, or Catherine—above every sorrow beside, this rose +pre-eminent: despair at finding nobody who could or would be my ally +against Heathcliff! I had sought shelter at Wuthering Heights, almost +gladly, because I was secured by that arrangement from living alone +with him; but he knew the people we were coming amongst, and he did not +fear their intermeddling. + +I sat and thought a doleful time: the clock struck eight, and nine, and +still my companion paced to and fro, his head bent on his breast, and +perfectly silent, unless a groan or a bitter ejaculation forced itself +out at intervals. I listened to detect a woman’s voice in the house, +and filled the interim with wild regrets and dismal anticipations, +which, at last, spoke audibly in irrepressible sighing and weeping. I +was not aware how openly I grieved, till Earnshaw halted opposite, in +his measured walk, and gave me a stare of newly-awakened surprise. +Taking advantage of his recovered attention, I exclaimed—“I’m tired +with my journey, and I want to go to bed! Where is the maid-servant? +Direct me to her, as she won’t come to me!” + +“We have none,” he answered; “you must wait on yourself!” + +“Where must I sleep, then?” I sobbed; I was beyond regarding +self-respect, weighed down by fatigue and wretchedness. + +“Joseph will show you Heathcliff’s chamber,” said he; “open that +door—he’s in there.” + +I was going to obey, but he suddenly arrested me, and added in the +strangest tone—“Be so good as to turn your lock, and draw your +bolt—don’t omit it!” + +“Well!” I said. “But why, Mr. Earnshaw?” I did not relish the notion of +deliberately fastening myself in with Heathcliff. + +“Look here!” he replied, pulling from his waistcoat a +curiously-constructed pistol, having a double-edged spring knife +attached to the barrel. “That’s a great tempter to a desperate man, is +it not? I cannot resist going up with this every night, and trying his +door. If once I find it open he’s done for; I do it invariably, even +though the minute before I have been recalling a hundred reasons that +should make me refrain: it is some devil that urges me to thwart my own +schemes by killing him. You fight against that devil for love as long +as you may; when the time comes, not all the angels in heaven shall +save him!” + +I surveyed the weapon inquisitively. A hideous notion struck me: how +powerful I should be possessing such an instrument! I took it from his +hand, and touched the blade. He looked astonished at the expression my +face assumed during a brief second: it was not horror, it was +covetousness. He snatched the pistol back, jealously; shut the knife, +and returned it to its concealment. + +“I don’t care if you tell him,” said he. “Put him on his guard, and +watch for him. You know the terms we are on, I see: his danger does not +shock you.” + +“What has Heathcliff done to you?” I asked. “In what has he wronged +you, to warrant this appalling hatred? Wouldn’t it be wiser to bid him +quit the house?” + +“No!” thundered Earnshaw; “should he offer to leave me, he’s a dead +man: persuade him to attempt it, and you are a murderess! Am I to lose +_all_, without a chance of retrieval? Is Hareton to be a beggar? Oh, +damnation! I _will_ have it back; and I’ll have _his_ gold too; and +then his blood; and hell shall have his soul! It will be ten times +blacker with that guest than ever it was before!” + +You’ve acquainted me, Ellen, with your old master’s habits. He is +clearly on the verge of madness: he was so last night at least. I +shuddered to be near him, and thought on the servant’s ill-bred +moroseness as comparatively agreeable. He now recommenced his moody +walk, and I raised the latch, and escaped into the kitchen. Joseph was +bending over the fire, peering into a large pan that swung above it; +and a wooden bowl of oatmeal stood on the settle close by. The contents +of the pan began to boil, and he turned to plunge his hand into the +bowl; I conjectured that this preparation was probably for our supper, +and, being hungry, I resolved it should be eatable; so, crying out +sharply, “_I’ll_ make the porridge!” I removed the vessel out of his +reach, and proceeded to take off my hat and riding-habit. “Mr. +Earnshaw,” I continued, “directs me to wait on myself: I will. I’m not +going to act the lady among you, for fear I should starve.” + +“Gooid Lord!” he muttered, sitting down, and stroking his ribbed +stockings from the knee to the ankle. “If there’s to be fresh +ortherings—just when I getten used to two maisters, if I mun hev’ a +_mistress_ set o’er my heead, it’s like time to be flitting. I niver +_did_ think to see t’ day that I mud lave th’ owld place—but I doubt +it’s nigh at hand!” + +This lamentation drew no notice from me: I went briskly to work, +sighing to remember a period when it would have been all merry fun; but +compelled speedily to drive off the remembrance. It racked me to recall +past happiness and the greater peril there was of conjuring up its +apparition, the quicker the thible ran round, and the faster the +handfuls of meal fell into the water. Joseph beheld my style of cookery +with growing indignation. + +“Thear!” he ejaculated. “Hareton, thou willn’t sup thy porridge +to-neeght; they’ll be naught but lumps as big as my neive. Thear, +agean! I’d fling in bowl un’ all, if I wer ye! There, pale t’ guilp +off, un’ then ye’ll hae done wi’t. Bang, bang. It’s a mercy t’ bothom +isn’t deaved out!” + +It _was_ rather a rough mess, I own, when poured into the basins; four +had been provided, and a gallon pitcher of new milk was brought from +the dairy, which Hareton seized and commenced drinking and spilling +from the expansive lip. I expostulated, and desired that he should have +his in a mug; affirming that I could not taste the liquid treated so +dirtily. The old cynic chose to be vastly offended at this nicety; +assuring me, repeatedly, that “the barn was every bit as good” as I, +“and every bit as wollsome,” and wondering how I could fashion to be so +conceited. Meanwhile, the infant ruffian continued sucking; and +glowered up at me defyingly, as he slavered into the jug. + +“I shall have my supper in another room,” I said. “Have you no place +you call a parlour?” + +“_Parlour_!” he echoed, sneeringly, “_parlour_! Nay, we’ve noa +_parlours_. If yah dunnut loike wer company, there’s maister’s; un’ if +yah dunnut loike maister, there’s us.” + +“Then I shall go upstairs,” I answered; “show me a chamber.” + +I put my basin on a tray, and went myself to fetch some more milk. With +great grumblings, the fellow rose, and preceded me in my ascent: we +mounted to the garrets; he opened a door, now and then, to look into +the apartments we passed. + +“Here’s a rahm,” he said, at last, flinging back a cranky board on +hinges. “It’s weel eneugh to ate a few porridge in. There’s a pack o’ +corn i’ t’ corner, thear, meeterly clane; if ye’re feared o’ muckying +yer grand silk cloes, spread yer hankerchir o’ t’ top on’t.” + +The “rahm” was a kind of lumber-hole smelling strong of malt and grain; +various sacks of which articles were piled around, leaving a wide, bare +space in the middle. + +“Why, man,” I exclaimed, facing him angrily, “this is not a place to +sleep in. I wish to see my bed-room.” + +“_Bed-rume_!” he repeated, in a tone of mockery. “Yah’s see all t’ +_bed-rumes_ thear is—yon’s mine.” + +He pointed into the second garret, only differing from the first in +being more naked about the walls, and having a large, low, curtainless +bed, with an indigo-coloured quilt, at one end. + +“What do I want with yours?” I retorted. “I suppose Mr. Heathcliff does +not lodge at the top of the house, does he?” + +“Oh! it’s Maister _Hathecliff’s_ ye’re wanting?” cried he, as if making +a new discovery. “Couldn’t ye ha’ said soa, at onst? un’ then, I mud +ha’ telled ye, baht all this wark, that that’s just one ye cannut +see—he allas keeps it locked, un’ nob’dy iver mells on’t but hisseln.” + +“You’ve a nice house, Joseph,” I could not refrain from observing, “and +pleasant inmates; and I think the concentrated essence of all the +madness in the world took up its abode in my brain the day I linked my +fate with theirs! However, that is not to the present purpose—there are +other rooms. For heaven’s sake be quick, and let me settle somewhere!” + +He made no reply to this adjuration; only plodding doggedly down the +wooden steps, and halting before an apartment which, from that halt +and the superior quality of its furniture, I conjectured to be the best +one. There was a carpet—a good one, but the pattern was obliterated by +dust; a fireplace hung with cut-paper, dropping to pieces; a handsome +oak-bedstead with ample crimson curtains of rather expensive material +and modern make; but they had evidently experienced rough usage: the +vallances hung in festoons, wrenched from their rings, and the iron rod +supporting them was bent in an arc on one side, causing the drapery to +trail upon the floor. The chairs were also damaged, many of them +severely; and deep indentations deformed the panels of the walls. I was +endeavouring to gather resolution for entering and taking possession, +when my fool of a guide announced,—“This here is t’ maister’s.” My +supper by this time was cold, my appetite gone, and my patience +exhausted. I insisted on being provided instantly with a place of +refuge, and means of repose. + +“Whear the divil?” began the religious elder. “The Lord bless us! The +Lord forgie us! Whear the _hell_ wold ye gang? ye marred, wearisome +nowt! Ye’ve seen all but Hareton’s bit of a cham’er. There’s not +another hoile to lig down in i’ th’ hahse!” + +I was so vexed, I flung my tray and its contents on the ground; and +then seated myself at the stairs’-head, hid my face in my hands, and +cried. + +“Ech! ech!” exclaimed Joseph. “Weel done, Miss Cathy! weel done, Miss +Cathy! Howsiver, t’ maister sall just tum’le o’er them brocken pots; +un’ then we’s hear summut; we’s hear how it’s to be. Gooid-for-naught +madling! ye desarve pining fro’ this to Churstmas, flinging t’ precious +gifts uh God under fooit i’ yer flaysome rages! But I’m mista’en if ye +shew yer sperrit lang. Will Hathecliff bide sich bonny ways, think ye? +I nobbut wish he may catch ye i’ that plisky. I nobbut wish he may.” + +And so he went on scolding to his den beneath, taking the candle with +him; and I remained in the dark. The period of reflection succeeding +this silly action compelled me to admit the necessity of smothering my +pride and choking my wrath, and bestirring myself to remove its +effects. An unexpected aid presently appeared in the shape of +Throttler, whom I now recognised as a son of our old Skulker: it had +spent its whelphood at the Grange, and was given by my father to Mr. +Hindley. I fancy it knew me: it pushed its nose against mine by way of +salute, and then hastened to devour the porridge; while I groped from +step to step, collecting the shattered earthenware, and drying the +spatters of milk from the banister with my pocket-handkerchief. Our +labours were scarcely over when I heard Earnshaw’s tread in the +passage; my assistant tucked in his tail, and pressed to the wall; I +stole into the nearest doorway. The dog’s endeavour to avoid him was +unsuccessful; as I guessed by a scutter downstairs, and a prolonged, +piteous yelping. I had better luck: he passed on, entered his chamber, +and shut the door. Directly after Joseph came up with Hareton, to put +him to bed. I had found shelter in Hareton’s room, and the old man, on +seeing me, said,—“They’s rahm for boath ye un’ yer pride, now, I sud +think i’ the hahse. It’s empty; ye may hev’ it all to yerseln, un’ Him +as allas maks a third, i’ sich ill company!” + +Gladly did I take advantage of this intimation; and the minute I flung +myself into a chair, by the fire, I nodded, and slept. My slumber was +deep and sweet, though over far too soon. Mr. Heathcliff awoke me; he +had just come in, and demanded, in his loving manner, what I was doing +there? I told him the cause of my staying up so late—that he had the +key of our room in his pocket. The adjective _our_ gave mortal offence. +He swore it was not, nor ever should be, mine; and he’d—but I’ll not +repeat his language, nor describe his habitual conduct: he is ingenious +and unresting in seeking to gain my abhorrence! I sometimes wonder at +him with an intensity that deadens my fear: yet, I assure you, a tiger +or a venomous serpent could not rouse terror in me equal to that which +he wakens. He told me of Catherine’s illness, and accused my brother of +causing it; promising that I should be Edgar’s proxy in suffering, till +he could get hold of him. + +I do hate him—I am wretched—I have been a fool! Beware of uttering one +breath of this to any one at the Grange. I shall expect you every +day—don’t disappoint me!—ISABELLA. + + + + +CHAPTER XIV + + +As soon as I had perused this epistle I went to the master, and +informed him that his sister had arrived at the Heights, and sent me a +letter expressing her sorrow for Mrs. Linton’s situation, and her +ardent desire to see him; with a wish that he would transmit to her, as +early as possible, some token of forgiveness by me. + +“Forgiveness!” said Linton. “I have nothing to forgive her, Ellen. You +may call at Wuthering Heights this afternoon, if you like, and say that +I am not _angry_, but I’m _sorry_ to have lost her; especially as I can +never think she’ll be happy. It is out of the question my going to see +her, however: we are eternally divided; and should she really wish to +oblige me, let her persuade the villain she has married to leave the +country.” + +“And you won’t write her a little note, sir?” I asked, imploringly. + +“No,” he answered. “It is needless. My communication with Heathcliff’s +family shall be as sparing as his with mine. It shall not exist!” + +Mr. Edgar’s coldness depressed me exceedingly; and all the way from the +Grange I puzzled my brains how to put more heart into what he said, +when I repeated it; and how to soften his refusal of even a few lines +to console Isabella. I daresay she had been on the watch for me since +morning: I saw her looking through the lattice as I came up the garden +causeway, and I nodded to her; but she drew back, as if afraid of being +observed. I entered without knocking. There never was such a dreary, +dismal scene as the formerly cheerful house presented! I must confess, +that if I had been in the young lady’s place, I would, at least, have +swept the hearth, and wiped the tables with a duster. But she already +partook of the pervading spirit of neglect which encompassed her. Her +pretty face was wan and listless; her hair uncurled: some locks hanging +lankly down, and some carelessly twisted round her head. Probably she +had not touched her dress since yester evening. Hindley was not there. +Mr. Heathcliff sat at a table, turning over some papers in his +pocket-book; but he rose when I appeared, asked me how I did, quite +friendly, and offered me a chair. He was the only thing there that +seemed decent; and I thought he never looked better. So much had +circumstances altered their positions, that he would certainly have +struck a stranger as a born and bred gentleman; and his wife as a +thorough little slattern! She came forward eagerly to greet me, and +held out one hand to take the expected letter. I shook my head. She +wouldn’t understand the hint, but followed me to a sideboard, where I +went to lay my bonnet, and importuned me in a whisper to give her +directly what I had brought. Heathcliff guessed the meaning of her +manœuvres, and said—“If you have got anything for Isabella (as no +doubt you have, Nelly), give it to her. You needn’t make a secret of +it: we have no secrets between us.” + +“Oh, I have nothing,” I replied, thinking it best to speak the truth at +once. “My master bid me tell his sister that she must not expect either +a letter or a visit from him at present. He sends his love, ma’am, and +his wishes for your happiness, and his pardon for the grief you have +occasioned; but he thinks that after this time his household and the +household here should drop intercommunication, as nothing could come of +keeping it up.” + +Mrs. Heathcliff’s lip quivered slightly, and she returned to her seat +in the window. Her husband took his stand on the hearthstone, near me, +and began to put questions concerning Catherine. I told him as much as +I thought proper of her illness, and he extorted from me, by +cross-examination, most of the facts connected with its origin. I +blamed her, as she deserved, for bringing it all on herself; and ended +by hoping that he would follow Mr. Linton’s example and avoid future +interference with his family, for good or evil. + +“Mrs. Linton is now just recovering,” I said; “she’ll never be like she +was, but her life is spared; and if you really have a regard for her, +you’ll shun crossing her way again: nay, you’ll move out of this +country entirely; and that you may not regret it, I’ll inform you +Catherine Linton is as different now from your old friend Catherine +Earnshaw, as that young lady is different from me. Her appearance is +changed greatly, her character much more so; and the person who is +compelled, of necessity, to be her companion, will only sustain his +affection hereafter by the remembrance of what she once was, by common +humanity, and a sense of duty!” + +“That is quite possible,” remarked Heathcliff, forcing himself to seem +calm: “quite possible that your master should have nothing but common +humanity and a sense of duty to fall back upon. But do you imagine that +I shall leave Catherine to his _duty_ and _humanity_? and can you +compare my feelings respecting Catherine to his? Before you leave this +house, I must exact a promise from you that you’ll get me an interview +with her: consent, or refuse, I _will_ see her! What do you say?” + +“I say, Mr. Heathcliff,” I replied, “you must not: you never shall, +through my means. Another encounter between you and the master would +kill her altogether.” + +“With your aid that may be avoided,” he continued; “and should there be +danger of such an event—should he be the cause of adding a single +trouble more to her existence—why, I think I shall be justified in +going to extremes! I wish you had sincerity enough to tell me whether +Catherine would suffer greatly from his loss: the fear that she would +restrains me. And there you see the distinction between our feelings: +had he been in my place, and I in his, though I hated him with a hatred +that turned my life to gall, I never would have raised a hand against +him. You may look incredulous, if you please! I never would have +banished him from her society as long as she desired his. The moment +her regard ceased, I would have torn his heart out, and drunk his +blood! But, till then—if you don’t believe me, you don’t know me—till +then, I would have died by inches before I touched a single hair of his +head!” + +“And yet,” I interrupted, “you have no scruples in completely ruining +all hopes of her perfect restoration, by thrusting yourself into her +remembrance now, when she has nearly forgotten you, and involving her +in a new tumult of discord and distress.” + +“You suppose she has nearly forgotten me?” he said. “Oh, Nelly! you +know she has not! You know as well as I do, that for every thought she +spends on Linton she spends a thousand on me! At a most miserable +period of my life, I had a notion of the kind: it haunted me on my +return to the neighbourhood last summer; but only her own assurance +could make me admit the horrible idea again. And then, Linton would be +nothing, nor Hindley, nor all the dreams that ever I dreamt. Two words +would comprehend my future—_death_ and _hell_: existence, after losing +her, would be hell. Yet I was a fool to fancy for a moment that she +valued Edgar Linton’s attachment more than mine. If he loved with all +the powers of his puny being, he couldn’t love as much in eighty years +as I could in a day. And Catherine has a heart as deep as I have: the +sea could be as readily contained in that horse-trough as her whole +affection be monopolised by him. Tush! He is scarcely a degree dearer +to her than her dog, or her horse. It is not in him to be loved like +me: how can she love in him what he has not?” + +“Catherine and Edgar are as fond of each other as any two people can +be,” cried Isabella, with sudden vivacity. “No one has a right to talk +in that manner, and I won’t hear my brother depreciated in silence!” + +“Your brother is wondrous fond of you too, isn’t he?” observed +Heathcliff, scornfully. “He turns you adrift on the world with +surprising alacrity.” + +“He is not aware of what I suffer,” she replied. “I didn’t tell him +that.” + +“You have been telling him something, then: you have written, have +you?” + +“To say that I was married, I did write—you saw the note.” + +“And nothing since?” + +“No.” + +“My young lady is looking sadly the worse for her change of condition,” +I remarked. “Somebody’s love comes short in her case, obviously; whose, +I may guess; but, perhaps, I shouldn’t say.” + +“I should guess it was her own,” said Heathcliff. “She degenerates into +a mere slut! She is tired of trying to please me uncommonly early. +You’d hardly credit it, but the very morrow of our wedding she was +weeping to go home. However, she’ll suit this house so much the better +for not being over nice, and I’ll take care she does not disgrace me by +rambling abroad.” + +“Well, sir,” returned I, “I hope you’ll consider that Mrs. Heathcliff +is accustomed to be looked after and waited on; and that she has been +brought up like an only daughter, whom every one was ready to serve. +You must let her have a maid to keep things tidy about her, and you +must treat her kindly. Whatever be your notion of Mr. Edgar, you cannot +doubt that she has a capacity for strong attachments, or she wouldn’t +have abandoned the elegancies, and comforts, and friends of her former +home, to fix contentedly, in such a wilderness as this, with you.” + +“She abandoned them under a delusion,” he answered; “picturing in me a +hero of romance, and expecting unlimited indulgences from my chivalrous +devotion. I can hardly regard her in the light of a rational creature, +so obstinately has she persisted in forming a fabulous notion of my +character and acting on the false impressions she cherished. But, at +last, I think she begins to know me: I don’t perceive the silly smiles +and grimaces that provoked me at first; and the senseless incapability +of discerning that I was in earnest when I gave her my opinion of her +infatuation and herself. It was a marvellous effort of perspicacity to +discover that I did not love her. I believed, at one time, no lessons +could teach her that! And yet it is poorly learnt; for this morning she +announced, as a piece of appalling intelligence, that I had actually +succeeded in making her hate me! A positive labour of Hercules, I +assure you! If it be achieved, I have cause to return thanks. Can I +trust your assertion, Isabella? Are you sure you hate me? If I let you +alone for half a day, won’t you come sighing and wheedling to me again? +I daresay she would rather I had seemed all tenderness before you: it +wounds her vanity to have the truth exposed. But I don’t care who knows +that the passion was wholly on one side: and I never told her a lie +about it. She cannot accuse me of showing one bit of deceitful +softness. The first thing she saw me do, on coming out of the Grange, +was to hang up her little dog; and when she pleaded for it, the first +words I uttered were a wish that I had the hanging of every being +belonging to her, except one: possibly she took that exception for +herself. But no brutality disgusted her: I suppose she has an innate +admiration of it, if only her precious person were secure from injury! +Now, was it not the depth of absurdity—of genuine idiocy, for that +pitiful, slavish, mean-minded brach to dream that I could love her? +Tell your master, Nelly, that I never, in all my life, met with such an +abject thing as she is. She even disgraces the name of Linton; and I’ve +sometimes relented, from pure lack of invention, in my experiments on +what she could endure, and still creep shamefully cringing back! But +tell him, also, to set his fraternal and magisterial heart at ease: +that I keep strictly within the limits of the law. I have avoided, up +to this period, giving her the slightest right to claim a separation; +and, what’s more, she’d thank nobody for dividing us. If she desired to +go, she might: the nuisance of her presence outweighs the gratification +to be derived from tormenting her!” + +“Mr. Heathcliff,” said I, “this is the talk of a madman; your wife, +most likely, is convinced you are mad; and, for that reason, she has +borne with you hitherto: but now that you say she may go, she’ll +doubtless avail herself of the permission. You are not so bewitched, +ma’am, are you, as to remain with him of your own accord?” + +“Take care, Ellen!” answered Isabella, her eyes sparkling irefully; +there was no misdoubting by their expression the full success of her +partner’s endeavours to make himself detested. “Don’t put faith in a +single word he speaks. He’s a lying fiend! a monster, and not a human +being! I’ve been told I might leave him before; and I’ve made the +attempt, but I dare not repeat it! Only, Ellen, promise you’ll not +mention a syllable of his infamous conversation to my brother or +Catherine. Whatever he may pretend, he wishes to provoke Edgar to +desperation: he says he has married me on purpose to obtain power over +him; and he sha’n’t obtain it—I’ll die first! I just hope, I pray, that +he may forget his diabolical prudence and kill me! The single pleasure +I can imagine is to die, or to see him dead!” + +“There—that will do for the present!” said Heathcliff. “If you are +called upon in a court of law, you’ll remember her language, Nelly! And +take a good look at that countenance: she’s near the point which would +suit me. No; you’re not fit to be your own guardian, Isabella, now; and +I, being your legal protector, must retain you in my custody, however +distasteful the obligation may be. Go upstairs; I have something to say +to Ellen Dean in private. That’s not the way: upstairs, I tell you! +Why, this is the road upstairs, child!” + +He seized, and thrust her from the room; and returned muttering—“I have +no pity! I have no pity! The more the worms writhe, the more I yearn to +crush out their entrails! It is a moral teething; and I grind with +greater energy in proportion to the increase of pain.” + +“Do you understand what the word pity means?” I said, hastening to +resume my bonnet. “Did you ever feel a touch of it in your life?” + +“Put that down!” he interrupted, perceiving my intention to depart. +“You are not going yet. Come here now, Nelly: I must either persuade or +compel you to aid me in fulfilling my determination to see Catherine, +and that without delay. I swear that I meditate no harm: I don’t desire +to cause any disturbance, or to exasperate or insult Mr. Linton; I only +wish to hear from herself how she is, and why she has been ill; and to +ask if anything that I could do would be of use to her. Last night I +was in the Grange garden six hours, and I’ll return there to-night; and +every night I’ll haunt the place, and every day, till I find an +opportunity of entering. If Edgar Linton meets me, I shall not hesitate +to knock him down, and give him enough to insure his quiescence while I +stay. If his servants oppose me, I shall threaten them off with these +pistols. But wouldn’t it be better to prevent my coming in contact with +them, or their master? And you could do it so easily. I’d warn you when +I came, and then you might let me in unobserved, as soon as she was +alone, and watch till I departed, your conscience quite calm: you would +be hindering mischief.” + +I protested against playing that treacherous part in my employer’s +house: and, besides, I urged the cruelty and selfishness of his +destroying Mrs. Linton’s tranquillity for his satisfaction. “The +commonest occurrence startles her painfully,” I said. “She’s all +nerves, and she couldn’t bear the surprise, I’m positive. Don’t +persist, sir! or else I shall be obliged to inform my master of your +designs; and he’ll take measures to secure his house and its inmates +from any such unwarrantable intrusions!” + +“In that case I’ll take measures to secure you, woman!” exclaimed +Heathcliff; “you shall not leave Wuthering Heights till to-morrow +morning. It is a foolish story to assert that Catherine could not bear +to see me; and as to surprising her, I don’t desire it: you must +prepare her—ask her if I may come. You say she never mentions my name, +and that I am never mentioned to her. To whom should she mention me if +I am a forbidden topic in the house? She thinks you are all spies for +her husband. Oh, I’ve no doubt she’s in hell among you! I guess by her +silence, as much as anything, what she feels. You say she is often +restless, and anxious-looking: is that a proof of tranquillity? You +talk of her mind being unsettled. How the devil could it be otherwise +in her frightful isolation? And that insipid, paltry creature attending +her from _duty_ and _humanity_! From _pity_ and _charity_! He might as +well plant an oak in a flower-pot, and expect it to thrive, as imagine +he can restore her to vigour in the soil of his shallow cares! Let us +settle it at once: will you stay here, and am I to fight my way to +Catherine over Linton and his footman? Or will you be my friend, as you +have been hitherto, and do what I request? Decide! because there is no +reason for my lingering another minute, if you persist in your stubborn +ill-nature!” + +Well, Mr. Lockwood, I argued and complained, and flatly refused him +fifty times; but in the long run he forced me to an agreement. I +engaged to carry a letter from him to my mistress; and should she +consent, I promised to let him have intelligence of Linton’s next +absence from home, when he might come, and get in as he was able: I +wouldn’t be there, and my fellow-servants should be equally out of the +way. Was it right or wrong? I fear it was wrong, though expedient. I +thought I prevented another explosion by my compliance; and I thought, +too, it might create a favourable crisis in Catherine’s mental illness: +and then I remembered Mr. Edgar’s stern rebuke of my carrying tales; +and I tried to smooth away all disquietude on the subject, by +affirming, with frequent iteration, that that betrayal of trust, if it +merited so harsh an appellation, should be the last. Notwithstanding, +my journey homeward was sadder than my journey thither; and many +misgivings I had, ere I could prevail on myself to put the missive into +Mrs. Linton’s hand. + +But here is Kenneth; I’ll go down, and tell him how much better you +are. My history is _dree_, as we say, and will serve to while away +another morning. + +* * * * * + + +Dree, and dreary! I reflected as the good woman descended to receive +the doctor: and not exactly of the kind which I should have chosen to +amuse me. But never mind! I’ll extract wholesome medicines from Mrs. +Dean’s bitter herbs; and firstly, let me beware of the fascination that +lurks in Catherine Heathcliff’s brilliant eyes. I should be in a +curious taking if I surrendered my heart to that young person, and the +daughter turned out a second edition of the mother. + + + + +CHAPTER XV + + +Another week over—and I am so many days nearer health, and spring! I +have now heard all my neighbour’s history, at different sittings, as +the housekeeper could spare time from more important occupations. I’ll +continue it in her own words, only a little condensed. She is, on the +whole, a very fair narrator, and I don’t think I could improve her +style. + +* * * * * + + +In the evening, she said, the evening of my visit to the Heights, I +knew, as well as if I saw him, that Mr. Heathcliff was about the place; +and I shunned going out, because I still carried his letter in my +pocket, and didn’t want to be threatened or teased any more. I had made +up my mind not to give it till my master went somewhere, as I could not +guess how its receipt would affect Catherine. The consequence was, that +it did not reach her before the lapse of three days. The fourth was +Sunday, and I brought it into her room after the family were gone to +church. There was a man servant left to keep the house with me, and we +generally made a practice of locking the doors during the hours of +service; but on that occasion the weather was so warm and pleasant that +I set them wide open, and, to fulfil my engagement, as I knew who would +be coming, I told my companion that the mistress wished very much for +some oranges, and he must run over to the village and get a few, to be +paid for on the morrow. He departed, and I went upstairs. + +Mrs. Linton sat in a loose white dress, with a light shawl over her +shoulders, in the recess of the open window, as usual. Her thick, long +hair had been partly removed at the beginning of her illness, and now +she wore it simply combed in its natural tresses over her temples and +neck. Her appearance was altered, as I had told Heathcliff; but when +she was calm, there seemed unearthly beauty in the change. The flash of +her eyes had been succeeded by a dreamy and melancholy softness; they +no longer gave the impression of looking at the objects around her: +they appeared always to gaze beyond, and far beyond—you would have said +out of this world. Then, the paleness of her face—its haggard aspect +having vanished as she recovered flesh—and the peculiar expression +arising from her mental state, though painfully suggestive of their +causes, added to the touching interest which she awakened; +and—invariably to me, I know, and to any person who saw her, I should +think—refuted more tangible proofs of convalescence, and stamped her as +one doomed to decay. + +A book lay spread on the sill before her, and the scarcely perceptible +wind fluttered its leaves at intervals. I believe Linton had laid it +there: for she never endeavoured to divert herself with reading, or +occupation of any kind, and he would spend many an hour in trying to +entice her attention to some subject which had formerly been her +amusement. She was conscious of his aim, and in her better moods +endured his efforts placidly, only showing their uselessness by now and +then suppressing a wearied sigh, and checking him at last with the +saddest of smiles and kisses. At other times, she would turn petulantly +away, and hide her face in her hands, or even push him off angrily; and +then he took care to let her alone, for he was certain of doing no +good. + +Gimmerton chapel bells were still ringing; and the full, mellow flow of +the beck in the valley came soothingly on the ear. It was a sweet +substitute for the yet absent murmur of the summer foliage, which +drowned that music about the Grange when the trees were in leaf. At +Wuthering Heights it always sounded on quiet days following a great +thaw or a season of steady rain. And of Wuthering Heights Catherine was +thinking as she listened: that is, if she thought or listened at all; +but she had the vague, distant look I mentioned before, which expressed +no recognition of material things either by ear or eye. + +“There’s a letter for you, Mrs. Linton,” I said, gently inserting it in +one hand that rested on her knee. “You must read it immediately, +because it wants an answer. Shall I break the seal?” “Yes,” she +answered, without altering the direction of her eyes. I opened it—it +was very short. “Now,” I continued, “read it.” She drew away her hand, +and let it fall. I replaced it in her lap, and stood waiting till it +should please her to glance down; but that movement was so long delayed +that at last I resumed—“Must I read it, ma’am? It is from Mr. +Heathcliff.” + +There was a start and a troubled gleam of recollection, and a struggle +to arrange her ideas. She lifted the letter, and seemed to peruse it; +and when she came to the signature she sighed: yet still I found she +had not gathered its import, for, upon my desiring to hear her reply, +she merely pointed to the name, and gazed at me with mournful and +questioning eagerness. + +“Well, he wishes to see you,” said I, guessing her need of an +interpreter. “He’s in the garden by this time, and impatient to know +what answer I shall bring.” + +As I spoke, I observed a large dog lying on the sunny grass beneath +raise its ears as if about to bark, and then smoothing them back, +announce, by a wag of the tail, that some one approached whom it did +not consider a stranger. Mrs. Linton bent forward, and listened +breathlessly. The minute after a step traversed the hall; the open +house was too tempting for Heathcliff to resist walking in: most likely +he supposed that I was inclined to shirk my promise, and so resolved to +trust to his own audacity. With straining eagerness Catherine gazed +towards the entrance of her chamber. He did not hit the right room +directly: she motioned me to admit him, but he found it out ere I could +reach the door, and in a stride or two was at her side, and had her +grasped in his arms. + +He neither spoke nor loosed his hold for some five minutes, during +which period he bestowed more kisses than ever he gave in his life +before, I daresay: but then my mistress had kissed him first, and I +plainly saw that he could hardly bear, for downright agony, to look +into her face! The same conviction had stricken him as me, from the +instant he beheld her, that there was no prospect of ultimate recovery +there—she was fated, sure to die. + +“Oh, Cathy! Oh, my life! how can I bear it?” was the first sentence he +uttered, in a tone that did not seek to disguise his despair. And now +he stared at her so earnestly that I thought the very intensity of his +gaze would bring tears into his eyes; but they burned with anguish: +they did not melt. + +“What now?” said Catherine, leaning back, and returning his look with a +suddenly clouded brow: her humour was a mere vane for constantly +varying caprices. “You and Edgar have broken my heart, Heathcliff! And +you both come to bewail the deed to me, as if you were the people to be +pitied! I shall not pity you, not I. You have killed me—and thriven on +it, I think. How strong you are! How many years do you mean to live +after I am gone?” + +Heathcliff had knelt on one knee to embrace her; he attempted to rise, +but she seized his hair, and kept him down. + +“I wish I could hold you,” she continued, bitterly, “till we were both +dead! I shouldn’t care what you suffered. I care nothing for your +sufferings. Why shouldn’t you suffer? I do! Will you forget me? Will +you be happy when I am in the earth? Will you say twenty years hence, +‘That’s the grave of Catherine Earnshaw? I loved her long ago, and was +wretched to lose her; but it is past. I’ve loved many others since: my +children are dearer to me than she was; and, at death, I shall not +rejoice that I am going to her: I shall be sorry that I must leave +them!’ Will you say so, Heathcliff?” + +“Don’t torture me till I’m as mad as yourself,” cried he, wrenching his +head free, and grinding his teeth. + +The two, to a cool spectator, made a strange and fearful picture. Well +might Catherine deem that heaven would be a land of exile to her, +unless with her mortal body she cast away her moral character also. Her +present countenance had a wild vindictiveness in its white cheek, and a +bloodless lip and scintillating eye; and she retained in her closed +fingers a portion of the locks she had been grasping. As to her +companion, while raising himself with one hand, he had taken her arm +with the other; and so inadequate was his stock of gentleness to the +requirements of her condition, that on his letting go I saw four +distinct impressions left blue in the colourless skin. + +“Are you possessed with a devil,” he pursued, savagely, “to talk in +that manner to me when you are dying? Do you reflect that all those +words will be branded in my memory, and eating deeper eternally after +you have left me? You know you lie to say I have killed you: and, +Catherine, you know that I could as soon forget you as my existence! Is +it not sufficient for your infernal selfishness, that while you are at +peace I shall writhe in the torments of hell?” + +“I shall not be at peace,” moaned Catherine, recalled to a sense of +physical weakness by the violent, unequal throbbing of her heart, which +beat visibly and audibly under this excess of agitation. She said +nothing further till the paroxysm was over; then she continued, more +kindly— + +“I’m not wishing you greater torment than I have, Heathcliff. I only +wish us never to be parted: and should a word of mine distress you +hereafter, think I feel the same distress underground, and for my own +sake, forgive me! Come here and kneel down again! You never harmed me +in your life. Nay, if you nurse anger, that will be worse to remember +than my harsh words! Won’t you come here again? Do!” + +Heathcliff went to the back of her chair, and leant over, but not so +far as to let her see his face, which was livid with emotion. She bent +round to look at him; he would not permit it: turning abruptly, he +walked to the fireplace, where he stood, silent, with his back towards +us. Mrs. Linton’s glance followed him suspiciously: every movement woke +a new sentiment in her. After a pause and a prolonged gaze, she +resumed; addressing me in accents of indignant disappointment:— + +“Oh, you see, Nelly, he would not relent a moment to keep me out of the +grave. _That_ is how I’m loved! Well, never mind. That is not _my_ +Heathcliff. I shall love mine yet; and take him with me: he’s in my +soul. And,” added she musingly, “the thing that irks me most is this +shattered prison, after all. I’m tired of being enclosed here. I’m +wearying to escape into that glorious world, and to be always there: +not seeing it dimly through tears, and yearning for it through the +walls of an aching heart: but really with it, and in it. Nelly, you +think you are better and more fortunate than I; in full health and +strength: you are sorry for me—very soon that will be altered. I shall +be sorry for _you_. I shall be incomparably beyond and above you all. I +_wonder_ he won’t be near me!” She went on to herself. “I thought he +wished it. Heathcliff, dear! you should not be sullen now. Do come to +me, Heathcliff.” + +In her eagerness she rose and supported herself on the arm of the +chair. At that earnest appeal he turned to her, looking absolutely +desperate. His eyes, wide and wet, at last flashed fiercely on her; his +breast heaved convulsively. An instant they held asunder, and then how +they met I hardly saw, but Catherine made a spring, and he caught her, +and they were locked in an embrace from which I thought my mistress +would never be released alive: in fact, to my eyes, she seemed directly +insensible. He flung himself into the nearest seat, and on my +approaching hurriedly to ascertain if she had fainted, he gnashed at +me, and foamed like a mad dog, and gathered her to him with greedy +jealousy. I did not feel as if I were in the company of a creature of +my own species: it appeared that he would not understand, though I +spoke to him; so I stood off, and held my tongue, in great perplexity. + +A movement of Catherine’s relieved me a little presently: she put up +her hand to clasp his neck, and bring her cheek to his as he held her; +while he, in return, covering her with frantic caresses, said wildly— + +“You teach me now how cruel you’ve been—cruel and false. _Why_ did you +despise me? _Why_ did you betray your own heart, Cathy? I have not one +word of comfort. You deserve this. You have killed yourself. Yes, you +may kiss me, and cry; and wring out my kisses and tears: they’ll blight +you—they’ll damn you. You loved me—then what _right_ had you to leave +me? What right—answer me—for the poor fancy you felt for Linton? +Because misery and degradation, and death, and nothing that God or +Satan could inflict would have parted us, _you_, of your own will, did +it. I have not broken your heart—_you_ have broken it; and in breaking +it, you have broken mine. So much the worse for me that I am strong. Do +I want to live? What kind of living will it be when you—oh, God! would +_you_ like to live with your soul in the grave?” + +“Let me alone. Let me alone,” sobbed Catherine. “If I’ve done wrong, +I’m dying for it. It is enough! You left me too: but I won’t upbraid +you! I forgive you. Forgive me!” + +“It is hard to forgive, and to look at those eyes, and feel those +wasted hands,” he answered. “Kiss me again; and don’t let me see your +eyes! I forgive what you have done to me. I love _my_ murderer—but +_yours_! How can I?” + +They were silent—their faces hid against each other, and washed by each +other’s tears. At least, I suppose the weeping was on both sides; as it +seemed Heathcliff _could_ weep on a great occasion like this. + +I grew very uncomfortable, meanwhile; for the afternoon wore fast away, +the man whom I had sent off returned from his errand, and I could +distinguish, by the shine of the western sun up the valley, a concourse +thickening outside Gimmerton chapel porch. + +“Service is over,” I announced. “My master will be here in half an +hour.” + +Heathcliff groaned a curse, and strained Catherine closer: she never +moved. + +Ere long I perceived a group of the servants passing up the road +towards the kitchen wing. Mr. Linton was not far behind; he opened the +gate himself and sauntered slowly up, probably enjoying the lovely +afternoon that breathed as soft as summer. + +“Now he is here,” I exclaimed. “For heaven’s sake, hurry down! You’ll +not meet any one on the front stairs. Do be quick; and stay among the +trees till he is fairly in.” + +“I must go, Cathy,” said Heathcliff, seeking to extricate himself from +his companion’s arms. “But if I live, I’ll see you again before you are +asleep. I won’t stray five yards from your window.” + +“You must not go!” she answered, holding him as firmly as her strength +allowed. “You _shall_ not, I tell you.” + +“For one hour,” he pleaded earnestly. + +“Not for one minute,” she replied. + +“I _must_—Linton will be up immediately,” persisted the alarmed +intruder. + +He would have risen, and unfixed her fingers by the act—she clung fast, +gasping: there was mad resolution in her face. + +“No!” she shrieked. “Oh, don’t, don’t go. It is the last time! Edgar +will not hurt us. Heathcliff, I shall die! I shall die!” + +“Damn the fool! There he is,” cried Heathcliff, sinking back into his +seat. “Hush, my darling! Hush, hush, Catherine! I’ll stay. If he shot +me so, I’d expire with a blessing on my lips.” + +And there they were fast again. I heard my master mounting the +stairs—the cold sweat ran from my forehead: I was horrified. + +“Are you going to listen to her ravings?” I said, passionately. “She +does not know what she says. Will you ruin her, because she has not wit +to help herself? Get up! You could be free instantly. That is the most +diabolical deed that ever you did. We are all done for—master, +mistress, and servant.” + +I wrung my hands, and cried out; and Mr. Linton hastened his step at +the noise. In the midst of my agitation, I was sincerely glad to +observe that Catherine’s arms had fallen relaxed, and her head hung +down. + +“She’s fainted, or dead,” I thought: “so much the better. Far better +that she should be dead, than lingering a burden and a misery-maker to +all about her.” + +Edgar sprang to his unbidden guest, blanched with astonishment and +rage. What he meant to do I cannot tell; however, the other stopped all +demonstrations, at once, by placing the lifeless-looking form in his +arms. + +“Look there!” he said. “Unless you be a fiend, help her first—then you +shall speak to me!” + +He walked into the parlour, and sat down. Mr. Linton summoned me, and +with great difficulty, and after resorting to many means, we managed to +restore her to sensation; but she was all bewildered; she sighed, and +moaned, and knew nobody. Edgar, in his anxiety for her, forgot her +hated friend. I did not. I went, at the earliest opportunity, and +besought him to depart; affirming that Catherine was better, and he +should hear from me in the morning how she passed the night. + +“I shall not refuse to go out of doors,” he answered; “but I shall stay +in the garden: and, Nelly, mind you keep your word to-morrow. I shall +be under those larch-trees. Mind! or I pay another visit, whether +Linton be in or not.” + +He sent a rapid glance through the half-open door of the chamber, and, +ascertaining that what I stated was apparently true, delivered the +house of his luckless presence. + + + + +CHAPTER XVI + + +About twelve o’clock that night was born the Catherine you saw at +Wuthering Heights: a puny, seven-months’ child; and two hours after the +mother died, having never recovered sufficient consciousness to miss +Heathcliff, or know Edgar. The latter’s distraction at his bereavement +is a subject too painful to be dwelt on; its after-effects showed how +deep the sorrow sunk. A great addition, in my eyes, was his being left +without an heir. I bemoaned that, as I gazed on the feeble orphan; and +I mentally abused old Linton for (what was only natural partiality) the +securing his estate to his own daughter, instead of his son’s. An +unwelcomed infant it was, poor thing! It might have wailed out of life, +and nobody cared a morsel, during those first hours of existence. We +redeemed the neglect afterwards; but its beginning was as friendless as +its end is likely to be. + +Next morning—bright and cheerful out of doors—stole softened in through +the blinds of the silent room, and suffused the couch and its occupant +with a mellow, tender glow. Edgar Linton had his head laid on the +pillow, and his eyes shut. His young and fair features were almost as +deathlike as those of the form beside him, and almost as fixed: but +_his_ was the hush of exhausted anguish, and _hers_ of perfect peace. +Her brow smooth, her lids closed, her lips wearing the expression of a +smile; no angel in heaven could be more beautiful than she appeared. +And I partook of the infinite calm in which she lay: my mind was never +in a holier frame than while I gazed on that untroubled image of Divine +rest. I instinctively echoed the words she had uttered a few hours +before: “Incomparably beyond and above us all! Whether still on earth +or now in heaven, her spirit is at home with God!” + +I don’t know if it be a peculiarity in me, but I am seldom otherwise +than happy while watching in the chamber of death, should no frenzied +or despairing mourner share the duty with me. I see a repose that +neither earth nor hell can break, and I feel an assurance of the +endless and shadowless hereafter—the Eternity they have entered—where +life is boundless in its duration, and love in its sympathy, and joy in +its fulness. I noticed on that occasion how much selfishness there is +even in a love like Mr. Linton’s, when he so regretted Catherine’s +blessed release! To be sure, one might have doubted, after the wayward +and impatient existence she had led, whether she merited a haven of +peace at last. One might doubt in seasons of cold reflection; but not +then, in the presence of her corpse. It asserted its own tranquillity, +which seemed a pledge of equal quiet to its former inhabitant. + +Do you believe such people _are_ happy in the other world, sir? I’d +give a great deal to know. + +I declined answering Mrs. Dean’s question, which struck me as something +heterodox. She proceeded: + +Retracing the course of Catherine Linton, I fear we have no right to +think she is; but we’ll leave her with her Maker. + +The master looked asleep, and I ventured soon after sunrise to quit the +room and steal out to the pure refreshing air. The servants thought me +gone to shake off the drowsiness of my protracted watch; in reality, my +chief motive was seeing Mr. Heathcliff. If he had remained among the +larches all night, he would have heard nothing of the stir at the +Grange; unless, perhaps, he might catch the gallop of the messenger +going to Gimmerton. If he had come nearer, he would probably be aware, +from the lights flitting to and fro, and the opening and shutting of +the outer doors, that all was not right within. I wished, yet feared, +to find him. I felt the terrible news must be told, and I longed to get +it over; but _how_ to do it I did not know. He was there—at least, a +few yards further in the park; leant against an old ash-tree, his hat +off, and his hair soaked with the dew that had gathered on the budded +branches, and fell pattering round him. He had been standing a long +time in that position, for I saw a pair of ousels passing and repassing +scarcely three feet from him, busy in building their nest, and +regarding his proximity no more than that of a piece of timber. They +flew off at my approach, and he raised his eyes and spoke:—“She’s +dead!” he said; “I’ve not waited for you to learn that. Put your +handkerchief away—don’t snivel before me. Damn you all! she wants none +of _your_ tears!” + +I was weeping as much for him as her: we do sometimes pity creatures +that have none of the feeling either for themselves or others. When I +first looked into his face, I perceived that he had got intelligence of +the catastrophe; and a foolish notion struck me that his heart was +quelled and he prayed, because his lips moved and his gaze was bent on +the ground. + +“Yes, she’s dead!” I answered, checking my sobs and drying my cheeks. +“Gone to heaven, I hope; where we may, every one, join her, if we take +due warning and leave our evil ways to follow good!” + +“Did _she_ take due warning, then?” asked Heathcliff, attempting a +sneer. “Did she die like a saint? Come, give me a true history of the +event. How did—?” + +He endeavoured to pronounce the name, but could not manage it; and +compressing his mouth he held a silent combat with his inward agony, +defying, meanwhile, my sympathy with an unflinching, ferocious stare. +“How did she die?” he resumed, at last—fain, notwithstanding his +hardihood, to have a support behind him; for, after the struggle, he +trembled, in spite of himself, to his very finger-ends. + +“Poor wretch!” I thought; “you have a heart and nerves the same as your +brother men! Why should you be anxious to conceal them? Your pride +cannot blind God! You tempt him to wring them, till he forces a cry of +humiliation.” + +“Quietly as a lamb!” I answered, aloud. “She drew a sigh, and stretched +herself, like a child reviving, and sinking again to sleep; and five +minutes after I felt one little pulse at her heart, and nothing more!” + +“And—did she ever mention me?” he asked, hesitating, as if he dreaded +the answer to his question would introduce details that he could not +bear to hear. + +“Her senses never returned: she recognised nobody from the time you +left her,” I said. “She lies with a sweet smile on her face; and her +latest ideas wandered back to pleasant early days. Her life closed in a +gentle dream—may she wake as kindly in the other world!” + +“May she wake in torment!” he cried, with frightful vehemence, stamping +his foot, and groaning in a sudden paroxysm of ungovernable passion. +“Why, she’s a liar to the end! Where is she? Not _there_—not in +heaven—not perished—where? Oh! you said you cared nothing for my +sufferings! And I pray one prayer—I repeat it till my tongue +stiffens—Catherine Earnshaw, may you not rest as long as I am living; +you said I killed you—haunt me, then! The murdered _do_ haunt their +murderers, I believe. I know that ghosts _have_ wandered on earth. Be +with me always—take any form—drive me mad! only _do_ not leave me in +this abyss, where I cannot find you! Oh, God! it is unutterable! I +_cannot_ live without my life! I _cannot_ live without my soul!” + +He dashed his head against the knotted trunk; and, lifting up his eyes, +howled, not like a man, but like a savage beast being goaded to death +with knives and spears. I observed several splashes of blood about the +bark of the tree, and his hand and forehead were both stained; probably +the scene I witnessed was a repetition of others acted during the +night. It hardly moved my compassion—it appalled me: still, I felt +reluctant to quit him so. But the moment he recollected himself enough +to notice me watching, he thundered a command for me to go, and I +obeyed. He was beyond my skill to quiet or console! + +Mrs. Linton’s funeral was appointed to take place on the Friday +following her decease; and till then her coffin remained uncovered, and +strewn with flowers and scented leaves, in the great drawing-room. +Linton spent his days and nights there, a sleepless guardian; and—a +circumstance concealed from all but me—Heathcliff spent his nights, at +least, outside, equally a stranger to repose. I held no communication +with him; still, I was conscious of his design to enter, if he could; +and on the Tuesday, a little after dark, when my master, from sheer +fatigue, had been compelled to retire a couple of hours, I went and +opened one of the windows; moved by his perseverance to give him a +chance of bestowing on the faded image of his idol one final adieu. He +did not omit to avail himself of the opportunity, cautiously and +briefly; too cautiously to betray his presence by the slightest noise. +Indeed, I shouldn’t have discovered that he had been there, except for +the disarrangement of the drapery about the corpse’s face, and for +observing on the floor a curl of light hair, fastened with a silver +thread; which, on examination, I ascertained to have been taken from a +locket hung round Catherine’s neck. Heathcliff had opened the trinket +and cast out its contents, replacing them by a black lock of his own. I +twisted the two, and enclosed them together. + +Mr. Earnshaw was, of course, invited to attend the remains of his +sister to the grave; he sent no excuse, but he never came; so that, +besides her husband, the mourners were wholly composed of tenants and +servants. Isabella was not asked. + +The place of Catherine’s interment, to the surprise of the villagers, +was neither in the chapel under the carved monument of the Lintons, nor +yet by the tombs of her own relations, outside. It was dug on a green +slope in a corner of the kirkyard, where the wall is so low that heath +and bilberry-plants have climbed over it from the moor; and peat-mould +almost buries it. Her husband lies in the same spot now; and they have +each a simple headstone above, and a plain grey block at their feet, to +mark the graves. + + + + +CHAPTER XVII + + +That Friday made the last of our fine days for a month. In the evening +the weather broke: the wind shifted from south to north-east, and +brought rain first, and then sleet and snow. On the morrow one could +hardly imagine that there had been three weeks of summer: the primroses +and crocuses were hidden under wintry drifts; the larks were silent, +the young leaves of the early trees smitten and blackened. And dreary, +and chill, and dismal, that morrow did creep over! My master kept his +room; I took possession of the lonely parlour, converting it into a +nursery: and there I was, sitting with the moaning doll of a child laid +on my knee; rocking it to and fro, and watching, meanwhile, the still +driving flakes build up the uncurtained window, when the door opened, +and some person entered, out of breath and laughing! My anger was +greater than my astonishment for a minute. I supposed it one of the +maids, and I cried—“Have done! How dare you show your giddiness here? +What would Mr. Linton say if he heard you?” + +“Excuse me!” answered a familiar voice; “but I know Edgar is in bed, +and I cannot stop myself.” + +With that the speaker came forward to the fire, panting and holding her +hand to her side. + +“I have run the whole way from Wuthering Heights!” she continued, after +a pause; “except where I’ve flown. I couldn’t count the number of falls +I’ve had. Oh, I’m aching all over! Don’t be alarmed! There shall be an +explanation as soon as I can give it; only just have the goodness to +step out and order the carriage to take me on to Gimmerton, and tell a +servant to seek up a few clothes in my wardrobe.” + +The intruder was Mrs. Heathcliff. She certainly seemed in no laughing +predicament: her hair streamed on her shoulders, dripping with snow and +water; she was dressed in the girlish dress she commonly wore, +befitting her age more than her position: a low frock with short +sleeves, and nothing on either head or neck. The frock was of light +silk, and clung to her with wet, and her feet were protected merely by +thin slippers; add to this a deep cut under one ear, which only the +cold prevented from bleeding profusely, a white face scratched and +bruised, and a frame hardly able to support itself through fatigue; and +you may fancy my first fright was not much allayed when I had had +leisure to examine her. + +“My dear young lady,” I exclaimed, “I’ll stir nowhere, and hear +nothing, till you have removed every article of your clothes, and put +on dry things; and certainly you shall not go to Gimmerton to-night, so +it is needless to order the carriage.” + +“Certainly I shall,” she said; “walking or riding: yet I’ve no +objection to dress myself decently. And—ah, see how it flows down my +neck now! The fire does make it smart.” + +She insisted on my fulfilling her directions, before she would let me +touch her; and not till after the coachman had been instructed to get +ready, and a maid set to pack up some necessary attire, did I obtain +her consent for binding the wound and helping to change her garments. + +“Now, Ellen,” she said, when my task was finished and she was seated in +an easy-chair on the hearth, with a cup of tea before her, “you sit +down opposite me, and put poor Catherine’s baby away: I don’t like to +see it! You mustn’t think I care little for Catherine, because I +behaved so foolishly on entering: I’ve cried, too, bitterly—yes, more +than any one else has reason to cry. We parted unreconciled, you +remember, and I sha’n’t forgive myself. But, for all that, I was not +going to sympathise with him—the brute beast! Oh, give me the poker! +This is the last thing of his I have about me:” she slipped the gold +ring from her third finger, and threw it on the floor. “I’ll smash it!” +she continued, striking it with childish spite, “and then I’ll burn +it!” and she took and dropped the misused article among the coals. +“There! he shall buy another, if he gets me back again. He’d be capable +of coming to seek me, to tease Edgar. I dare not stay, lest that notion +should possess his wicked head! And besides, Edgar has not been kind, +has he? And I won’t come suing for his assistance; nor will I bring him +into more trouble. Necessity compelled me to seek shelter here; though, +if I had not learned he was out of the way, I’d have halted at the +kitchen, washed my face, warmed myself, got you to bring what I wanted, +and departed again to anywhere out of the reach of my accursed—of that +incarnate goblin! Ah, he was in such a fury! If he had caught me! It’s +a pity Earnshaw is not his match in strength: I wouldn’t have run till +I’d seen him all but demolished, had Hindley been able to do it!” + +“Well, don’t talk so fast, Miss!” I interrupted; “you’ll disorder the +handkerchief I have tied round your face, and make the cut bleed again. +Drink your tea, and take breath, and give over laughing: laughter is +sadly out of place under this roof, and in your condition!” + +“An undeniable truth,” she replied. “Listen to that child! It maintains +a constant wail—send it out of my hearing for an hour; I sha’n’t stay +any longer.” + +I rang the bell, and committed it to a servant’s care; and then I +inquired what had urged her to escape from Wuthering Heights in such an +unlikely plight, and where she meant to go, as she refused remaining +with us. + +“I ought, and I wished to remain,” answered she, “to cheer Edgar and +take care of the baby, for two things, and because the Grange is my +right home. But I tell you he wouldn’t let me! Do you think he could +bear to see me grow fat and merry—could bear to think that we were +tranquil, and not resolve on poisoning our comfort? Now, I have the +satisfaction of being sure that he detests me, to the point of its +annoying him seriously to have me within ear-shot or eyesight: I +notice, when I enter his presence, the muscles of his countenance are +involuntarily distorted into an expression of hatred; partly arising +from his knowledge of the good causes I have to feel that sentiment for +him, and partly from original aversion. It is strong enough to make me +feel pretty certain that he would not chase me over England, supposing +I contrived a clear escape; and therefore I must get quite away. I’ve +recovered from my first desire to be killed by him: I’d rather he’d +kill himself! He has extinguished my love effectually, and so I’m at my +ease. I can recollect yet how I loved him; and can dimly imagine that I +could still be loving him, if—no, no! Even if he had doted on me, the +devilish nature would have revealed its existence somehow. Catherine +had an awfully perverted taste to esteem him so dearly, knowing him so +well. Monster! would that he could be blotted out of creation, and out +of my memory!” + +“Hush, hush! He’s a human being,” I said. “Be more charitable: there +are worse men than he is yet!” + +“He’s not a human being,” she retorted; “and he has no claim on my +charity. I gave him my heart, and he took and pinched it to death, and +flung it back to me. People feel with their hearts, Ellen: and since he +has destroyed mine, I have not power to feel for him: and I would not, +though he groaned from this to his dying day, and wept tears of blood +for Catherine! No, indeed, indeed, I wouldn’t!” And here Isabella began +to cry; but, immediately dashing the water from her lashes, she +recommenced. “You asked, what has driven me to flight at last? I was +compelled to attempt it, because I had succeeded in rousing his rage a +pitch above his malignity. Pulling out the nerves with red hot pincers +requires more coolness than knocking on the head. He was worked up to +forget the fiendish prudence he boasted of, and proceeded to murderous +violence. I experienced pleasure in being able to exasperate him: the +sense of pleasure woke my instinct of self-preservation, so I fairly +broke free; and if ever I come into his hands again he is welcome to a +signal revenge. + +“Yesterday, you know, Mr. Earnshaw should have been at the funeral. He +kept himself sober for the purpose—tolerably sober: not going to bed +mad at six o’clock and getting up drunk at twelve. Consequently, he +rose, in suicidal low spirits, as fit for the church as for a dance; +and instead, he sat down by the fire and swallowed gin or brandy by +tumblerfuls. + +“Heathcliff—I shudder to name him! has been a stranger in the house +from last Sunday till to-day. Whether the angels have fed him, or his +kin beneath, I cannot tell; but he has not eaten a meal with us for +nearly a week. He has just come home at dawn, and gone upstairs to his +chamber; locking himself in—as if anybody dreamt of coveting his +company! There he has continued, praying like a Methodist: only the +deity he implored is senseless dust and ashes; and God, when addressed, +was curiously confounded with his own black father! After concluding +these precious orisons—and they lasted generally till he grew hoarse +and his voice was strangled in his throat—he would be off again; always +straight down to the Grange! I wonder Edgar did not send for a +constable, and give him into custody! For me, grieved as I was about +Catherine, it was impossible to avoid regarding this season of +deliverance from degrading oppression as a holiday. + +“I recovered spirits sufficient to hear Joseph’s eternal lectures +without weeping, and to move up and down the house less with the foot +of a frightened thief than formerly. You wouldn’t think that I should +cry at anything Joseph could say; but he and Hareton are detestable +companions. I’d rather sit with Hindley, and hear his awful talk, than +with ‘t’ little maister’ and his staunch supporter, that odious old +man! When Heathcliff is in, I’m often obliged to seek the kitchen and +their society, or starve among the damp uninhabited chambers; when he +is not, as was the case this week, I establish a table and chair at one +corner of the house fire, and never mind how Mr. Earnshaw may occupy +himself; and he does not interfere with my arrangements. He is quieter +now than he used to be, if no one provokes him: more sullen and +depressed, and less furious. Joseph affirms he’s sure he’s an altered +man: that the Lord has touched his heart, and he is saved ‘so as by +fire.’ I’m puzzled to detect signs of the favourable change: but it is +not my business. + +“Yester-evening I sat in my nook reading some old books till late on +towards twelve. It seemed so dismal to go upstairs, with the wild snow +blowing outside, and my thoughts continually reverting to the kirkyard +and the new-made grave! I dared hardly lift my eyes from the page +before me, that melancholy scene so instantly usurped its place. +Hindley sat opposite, his head leant on his hand; perhaps meditating on +the same subject. He had ceased drinking at a point below +irrationality, and had neither stirred nor spoken during two or three +hours. There was no sound through the house but the moaning wind, which +shook the windows every now and then, the faint crackling of the coals, +and the click of my snuffers as I removed at intervals the long wick of +the candle. Hareton and Joseph were probably fast asleep in bed. It was +very, very sad: and while I read I sighed, for it seemed as if all joy +had vanished from the world, never to be restored. + +“The doleful silence was broken at length by the sound of the kitchen +latch: Heathcliff had returned from his watch earlier than usual; +owing, I suppose, to the sudden storm. That entrance was fastened, and +we heard him coming round to get in by the other. I rose with an +irrepressible expression of what I felt on my lips, which induced my +companion, who had been staring towards the door, to turn and look at +me. + +“‘I’ll keep him out five minutes,’ he exclaimed. ‘You won’t object?’ + +“‘No, you may keep him out the whole night for me,’ I answered. ‘Do! +put the key in the lock, and draw the bolts.’ + +“Earnshaw accomplished this ere his guest reached the front; he then +came and brought his chair to the other side of my table, leaning over +it, and searching in my eyes for a sympathy with the burning hate that +gleamed from his: as he both looked and felt like an assassin, he +couldn’t exactly find that; but he discovered enough to encourage him +to speak. + +“‘You, and I,’ he said, ‘have each a great debt to settle with the man +out yonder! If we were neither of us cowards, we might combine to +discharge it. Are you as soft as your brother? Are you willing to +endure to the last, and not once attempt a repayment?’ + +“‘I’m weary of enduring now,’ I replied; ‘and I’d be glad of a +retaliation that wouldn’t recoil on myself; but treachery and violence +are spears pointed at both ends; they wound those who resort to them +worse than their enemies.’ + +“‘Treachery and violence are a just return for treachery and violence!’ +cried Hindley. ‘Mrs. Heathcliff, I’ll ask you to do nothing; but sit +still and be dumb. Tell me now, can you? I’m sure you would have as +much pleasure as I in witnessing the conclusion of the fiend’s +existence; he’ll be _your_ death unless you overreach him; and he’ll be +_my_ ruin. Damn the hellish villain! He knocks at the door as if he +were master here already! Promise to hold your tongue, and before that +clock strikes—it wants three minutes of one—you’re a free woman!’ + +“He took the implements which I described to you in my letter from his +breast, and would have turned down the candle. I snatched it away, +however, and seized his arm. + +“‘I’ll not hold my tongue!’ I said; ‘you mustn’t touch him. Let the +door remain shut, and be quiet!’ + +“‘No! I’ve formed my resolution, and by God I’ll execute it!’ cried the +desperate being. ‘I’ll do you a kindness in spite of yourself, and +Hareton justice! And you needn’t trouble your head to screen me; +Catherine is gone. Nobody alive would regret me, or be ashamed, though +I cut my throat this minute—and it’s time to make an end!’ + +“I might as well have struggled with a bear, or reasoned with a +lunatic. The only resource left me was to run to a lattice and warn his +intended victim of the fate which awaited him. + +“‘You’d better seek shelter somewhere else to-night!’ I exclaimed, in +rather a triumphant tone. ‘Mr. Earnshaw has a mind to shoot you, if you +persist in endeavouring to enter.’ + +“‘You’d better open the door, you—’ he answered, addressing me by some +elegant term that I don’t care to repeat. + +“‘I shall not meddle in the matter,’ I retorted again. ‘Come in and get +shot, if you please. I’ve done my duty.’ + +“With that I shut the window and returned to my place by the fire; +having too small a stock of hypocrisy at my command to pretend any +anxiety for the danger that menaced him. Earnshaw swore passionately at +me: affirming that I loved the villain yet; and calling me all sorts of +names for the base spirit I evinced. And I, in my secret heart (and +conscience never reproached me), thought what a blessing it would be +for _him_ should Heathcliff put him out of misery; and what a blessing +for _me_ should he send Heathcliff to his right abode! As I sat nursing +these reflections, the casement behind me was banged on to the floor by +a blow from the latter individual, and his black countenance looked +blightingly through. The stanchions stood too close to suffer his +shoulders to follow, and I smiled, exulting in my fancied security. His +hair and clothes were whitened with snow, and his sharp cannibal teeth, +revealed by cold and wrath, gleamed through the dark. + +“‘Isabella, let me in, or I’ll make you repent!’ he ‘girned,’ as Joseph +calls it. + +“‘I cannot commit murder,’ I replied. ‘Mr. Hindley stands sentinel with +a knife and loaded pistol.’ + +“‘Let me in by the kitchen door,’ he said. + +“‘Hindley will be there before me,’ I answered: ‘and that’s a poor love +of yours that cannot bear a shower of snow! We were left at peace in +our beds as long as the summer moon shone, but the moment a blast of +winter returns, you must run for shelter! Heathcliff, if I were you, +I’d go stretch myself over her grave and die like a faithful dog. The +world is surely not worth living in now, is it? You had distinctly +impressed on me the idea that Catherine was the whole joy of your life: +I can’t imagine how you think of surviving her loss.’ + +“‘He’s there, is he?’ exclaimed my companion, rushing to the gap. ‘If I +can get my arm out I can hit him!’ + +“I’m afraid, Ellen, you’ll set me down as really wicked; but you don’t +know all, so don’t judge. I wouldn’t have aided or abetted an attempt +on even _his_ life for anything. Wish that he were dead, I must; and +therefore I was fearfully disappointed, and unnerved by terror for the +consequences of my taunting speech, when he flung himself on Earnshaw’s +weapon and wrenched it from his grasp. + +“The charge exploded, and the knife, in springing back, closed into its +owner’s wrist. Heathcliff pulled it away by main force, slitting up the +flesh as it passed on, and thrust it dripping into his pocket. He then +took a stone, struck down the division between two windows, and sprang +in. His adversary had fallen senseless with excessive pain and the flow +of blood, that gushed from an artery or a large vein. The ruffian +kicked and trampled on him, and dashed his head repeatedly against the +flags, holding me with one hand, meantime, to prevent me summoning +Joseph. He exerted preterhuman self-denial in abstaining from finishing +him completely; but getting out of breath, he finally desisted, and +dragged the apparently inanimate body on to the settle. There he tore +off the sleeve of Earnshaw’s coat, and bound up the wound with brutal +roughness; spitting and cursing during the operation as energetically +as he had kicked before. Being at liberty, I lost no time in seeking +the old servant; who, having gathered by degrees the purport of my +hasty tale, hurried below, gasping, as he descended the steps two at +once. + +“‘What is ther to do, now? what is ther to do, now?’ + +“‘There’s this to do,’ thundered Heathcliff, ‘that your master’s mad; +and should he last another month, I’ll have him to an asylum. And how +the devil did you come to fasten me out, you toothless hound? Don’t +stand muttering and mumbling there. Come, I’m not going to nurse him. +Wash that stuff away; and mind the sparks of your candle—it is more +than half brandy!’ + +“‘And so ye’ve been murthering on him?’ exclaimed Joseph, lifting his +hands and eyes in horror. ‘If iver I seed a seeght loike this! May the +Lord—’ + +“Heathcliff gave him a push on to his knees in the middle of the blood, +and flung a towel to him; but instead of proceeding to dry it up, he +joined his hands and began a prayer, which excited my laughter from its +odd phraseology. I was in the condition of mind to be shocked at +nothing: in fact, I was as reckless as some malefactors show themselves +at the foot of the gallows. + +“‘Oh, I forgot you,’ said the tyrant. ‘You shall do that. Down with +you. And you conspire with him against me, do you, viper? There, that +is work fit for you!’ + +“He shook me till my teeth rattled, and pitched me beside Joseph, who +steadily concluded his supplications, and then rose, vowing he would +set off for the Grange directly. Mr. Linton was a magistrate, and +though he had fifty wives dead, he should inquire into this. He was so +obstinate in his resolution, that Heathcliff deemed it expedient to +compel from my lips a recapitulation of what had taken place; standing +over me, heaving with malevolence, as I reluctantly delivered the +account in answer to his questions. It required a great deal of labour +to satisfy the old man that Heathcliff was not the aggressor; +especially with my hardly-wrung replies. However, Mr. Earnshaw soon +convinced him that he was alive still; Joseph hastened to administer a +dose of spirits, and by their succour his master presently regained +motion and consciousness. Heathcliff, aware that his opponent was +ignorant of the treatment received while insensible, called him +deliriously intoxicated; and said he should not notice his atrocious +conduct further, but advised him to get to bed. To my joy, he left us, +after giving this judicious counsel, and Hindley stretched himself on +the hearthstone. I departed to my own room, marvelling that I had +escaped so easily. + +“This morning, when I came down, about half an hour before noon, Mr. +Earnshaw was sitting by the fire, deadly sick; his evil genius, almost +as gaunt and ghastly, leant against the chimney. Neither appeared +inclined to dine, and, having waited till all was cold on the table, I +commenced alone. Nothing hindered me from eating heartily, and I +experienced a certain sense of satisfaction and superiority, as, at +intervals, I cast a look towards my silent companions, and felt the +comfort of a quiet conscience within me. After I had done, I ventured +on the unusual liberty of drawing near the fire, going round Earnshaw’s +seat, and kneeling in the corner beside him. + +“Heathcliff did not glance my way, and I gazed up, and contemplated his +features almost as confidently as if they had been turned to stone. His +forehead, that I once thought so manly, and that I now think so +diabolical, was shaded with a heavy cloud; his basilisk eyes were +nearly quenched by sleeplessness, and weeping, perhaps, for the lashes +were wet then: his lips devoid of their ferocious sneer, and sealed in +an expression of unspeakable sadness. Had it been another, I would have +covered my face in the presence of such grief. In _his_ case, I was +gratified; and, ignoble as it seems to insult a fallen enemy, I +couldn’t miss this chance of sticking in a dart: his weakness was the +only time when I could taste the delight of paying wrong for wrong.” + +“Fie, fie, Miss!” I interrupted. “One might suppose you had never +opened a Bible in your life. If God afflict your enemies, surely that +ought to suffice you. It is both mean and presumptuous to add your +torture to his!” + +“In general I’ll allow that it would be, Ellen,” she continued; “but +what misery laid on Heathcliff could content me, unless I have a hand +in it? I’d rather he suffered _less_, if I might cause his sufferings +and he might _know_ that I was the cause. Oh, I owe him so much. On +only one condition can I hope to forgive him. It is, if I may take an +eye for an eye, a tooth for a tooth; for every wrench of agony return a +wrench: reduce him to my level. As he was the first to injure, make him +the first to implore pardon; and then—why then, Ellen, I might show you +some generosity. But it is utterly impossible I can ever be revenged, +and therefore I cannot forgive him. Hindley wanted some water, and I +handed him a glass, and asked him how he was. + +“‘Not as ill as I wish,’ he replied. ‘But leaving out my arm, every +inch of me is as sore as if I had been fighting with a legion of imps!’ + +“‘Yes, no wonder,’ was my next remark. ‘Catherine used to boast that +she stood between you and bodily harm: she meant that certain persons +would not hurt you for fear of offending her. It’s well people don’t +_really_ rise from their grave, or, last night, she might have +witnessed a repulsive scene! Are not you bruised, and cut over your +chest and shoulders?’ + +“‘I can’t say,’ he answered; ‘but what do you mean? Did he dare to +strike me when I was down?’ + +“‘He trampled on and kicked you, and dashed you on the ground,’ I +whispered. ‘And his mouth watered to tear you with his teeth; because +he’s only half man: not so much, and the rest fiend.’ + +“Mr. Earnshaw looked up, like me, to the countenance of our mutual foe; +who, absorbed in his anguish, seemed insensible to anything around him: +the longer he stood, the plainer his reflections revealed their +blackness through his features. + +“‘Oh, if God would but give me strength to strangle him in my last +agony, I’d go to hell with joy,’ groaned the impatient man, writhing to +rise, and sinking back in despair, convinced of his inadequacy for the +struggle. + +“‘Nay, it’s enough that he has murdered one of you,’ I observed aloud. +‘At the Grange, every one knows your sister would have been living now +had it not been for Mr. Heathcliff. After all, it is preferable to be +hated than loved by him. When I recollect how happy we were—how happy +Catherine was before he came—I’m fit to curse the day.’ + +“Most likely, Heathcliff noticed more the truth of what was said, than +the spirit of the person who said it. His attention was roused, I saw, +for his eyes rained down tears among the ashes, and he drew his breath +in suffocating sighs. I stared full at him, and laughed scornfully. The +clouded windows of hell flashed a moment towards me; the fiend which +usually looked out, however, was so dimmed and drowned that I did not +fear to hazard another sound of derision. + +“‘Get up, and begone out of my sight,’ said the mourner. + +“I guessed he uttered those words, at least, though his voice was +hardly intelligible. + +“‘I beg your pardon,’ I replied. ‘But I loved Catherine too; and her +brother requires attendance, which, for her sake, I shall supply. Now +that she’s dead, I see her in Hindley: Hindley has exactly her eyes, if +you had not tried to gouge them out, and made them black and red; and +her—’ + +“‘Get up, wretched idiot, before I stamp you to death!’ he cried, +making a movement that caused me to make one also. + +“‘But then,’ I continued, holding myself ready to flee, ‘if poor +Catherine had trusted you, and assumed the ridiculous, contemptible, +degrading title of Mrs. Heathcliff, she would soon have presented a +similar picture! _She_ wouldn’t have borne your abominable behaviour +quietly: her detestation and disgust must have found voice.’ + +“The back of the settle and Earnshaw’s person interposed between me and +him; so instead of endeavouring to reach me, he snatched a dinner-knife +from the table and flung it at my head. It struck beneath my ear, and +stopped the sentence I was uttering; but, pulling it out, I sprang to +the door and delivered another; which I hope went a little deeper than +his missile. The last glimpse I caught of him was a furious rush on his +part, checked by the embrace of his host; and both fell locked together +on the hearth. In my flight through the kitchen I bid Joseph speed to +his master; I knocked over Hareton, who was hanging a litter of puppies +from a chair-back in the doorway; and, blessed as a soul escaped from +purgatory, I bounded, leaped, and flew down the steep road; then, +quitting its windings, shot direct across the moor, rolling over banks, +and wading through marshes: precipitating myself, in fact, towards the +beacon-light of the Grange. And far rather would I be condemned to a +perpetual dwelling in the infernal regions than, even for one night, +abide beneath the roof of Wuthering Heights again.” + +Isabella ceased speaking, and took a drink of tea; then she rose, and +bidding me put on her bonnet, and a great shawl I had brought, and +turning a deaf ear to my entreaties for her to remain another hour, she +stepped on to a chair, kissed Edgar’s and Catherine’s portraits, +bestowed a similar salute on me, and descended to the carriage, +accompanied by Fanny, who yelped wild with joy at recovering her +mistress. She was driven away, never to revisit this neighbourhood: but +a regular correspondence was established between her and my master when +things were more settled. I believe her new abode was in the south, +near London; there she had a son born a few months subsequent to her +escape. He was christened Linton, and, from the first, she reported him +to be an ailing, peevish creature. + +Mr. Heathcliff, meeting me one day in the village, inquired where she +lived. I refused to tell. He remarked that it was not of any moment, +only she must beware of coming to her brother: she should not be with +him, if he had to keep her himself. Though I would give no information, +he discovered, through some of the other servants, both her place of +residence and the existence of the child. Still, he didn’t molest her: +for which forbearance she might thank his aversion, I suppose. He often +asked about the infant, when he saw me; and on hearing its name, smiled +grimly, and observed: “They wish me to hate it too, do they?” + +“I don’t think they wish you to know anything about it,” I answered. + +“But I’ll have it,” he said, “when I want it. They may reckon on that!” + +Fortunately its mother died before the time arrived; some thirteen +years after the decease of Catherine, when Linton was twelve, or a +little more. + +On the day succeeding Isabella’s unexpected visit I had no opportunity +of speaking to my master: he shunned conversation, and was fit for +discussing nothing. When I could get him to listen, I saw it pleased +him that his sister had left her husband; whom he abhorred with an +intensity which the mildness of his nature would scarcely seem to +allow. So deep and sensitive was his aversion, that he refrained from +going anywhere where he was likely to see or hear of Heathcliff. Grief, +and that together, transformed him into a complete hermit: he threw up +his office of magistrate, ceased even to attend church, avoided the +village on all occasions, and spent a life of entire seclusion within +the limits of his park and grounds; only varied by solitary rambles on +the moors, and visits to the grave of his wife, mostly at evening, or +early morning before other wanderers were abroad. But he was too good +to be thoroughly unhappy long. _He_ didn’t pray for Catherine’s soul to +haunt him. Time brought resignation, and a melancholy sweeter than +common joy. He recalled her memory with ardent, tender love, and +hopeful aspiring to the better world; where he doubted not she was +gone. + +And he had earthly consolation and affections also. For a few days, I +said, he seemed regardless of the puny successor to the departed: that +coldness melted as fast as snow in April, and ere the tiny thing could +stammer a word or totter a step it wielded a despot’s sceptre in his +heart. It was named Catherine; but he never called it the name in full, +as he had never called the first Catherine short: probably because +Heathcliff had a habit of doing so. The little one was always Cathy: it +formed to him a distinction from the mother, and yet a connection with +her; and his attachment sprang from its relation to her, far more than +from its being his own. + +I used to draw a comparison between him and Hindley Earnshaw, and +perplex myself to explain satisfactorily why their conduct was so +opposite in similar circumstances. They had both been fond husbands, +and were both attached to their children; and I could not see how they +shouldn’t both have taken the same road, for good or evil. But, I +thought in my mind, Hindley, with apparently the stronger head, has +shown himself sadly the worse and the weaker man. When his ship struck, +the captain abandoned his post; and the crew, instead of trying to save +her, rushed into riot and confusion, leaving no hope for their luckless +vessel. Linton, on the contrary, displayed the true courage of a loyal +and faithful soul: he trusted God; and God comforted him. One hoped, +and the other despaired: they chose their own lots, and were +righteously doomed to endure them. But you’ll not want to hear my +moralising, Mr. Lockwood; you’ll judge, as well as I can, all these +things: at least, you’ll think you will, and that’s the same. The end +of Earnshaw was what might have been expected; it followed fast on his +sister’s: there were scarcely six months between them. We, at the +Grange, never got a very succinct account of his state preceding it; +all that I did learn was on occasion of going to aid in the +preparations for the funeral. Mr. Kenneth came to announce the event to +my master. + +“Well, Nelly,” said he, riding into the yard one morning, too early not +to alarm me with an instant presentiment of bad news, “it’s yours and +my turn to go into mourning at present. Who’s given us the slip now, do +you think?” + +“Who?” I asked in a flurry. + +“Why, guess!” he returned, dismounting, and slinging his bridle on a +hook by the door. “And nip up the corner of your apron: I’m certain +you’ll need it.” + +“Not Mr. Heathcliff, surely?” I exclaimed. + +“What! would you have tears for him?” said the doctor. “No, +Heathcliff’s a tough young fellow: he looks blooming to-day. I’ve just +seen him. He’s rapidly regaining flesh since he lost his better half.” + +“Who is it, then, Mr. Kenneth?” I repeated impatiently. + +“Hindley Earnshaw! Your old friend Hindley,” he replied, “and my wicked +gossip: though he’s been too wild for me this long while. There! I said +we should draw water. But cheer up! He died true to his character: +drunk as a lord. Poor lad! I’m sorry, too. One can’t help missing an +old companion: though he had the worst tricks with him that ever man +imagined, and has done me many a rascally turn. He’s barely +twenty-seven, it seems; that’s your own age: who would have thought you +were born in one year?” + +I confess this blow was greater to me than the shock of Mrs. Linton’s +death: ancient associations lingered round my heart; I sat down in the +porch and wept as for a blood relation, desiring Mr. Kenneth to get +another servant to introduce him to the master. I could not hinder +myself from pondering on the question—“Had he had fair play?” Whatever +I did, that idea would bother me: it was so tiresomely pertinacious +that I resolved on requesting leave to go to Wuthering Heights, and +assist in the last duties to the dead. Mr. Linton was extremely +reluctant to consent, but I pleaded eloquently for the friendless +condition in which he lay; and I said my old master and foster-brother +had a claim on my services as strong as his own. Besides, I reminded +him that the child Hareton was his wife’s nephew, and, in the absence +of nearer kin, he ought to act as its guardian; and he ought to and +must inquire how the property was left, and look over the concerns of +his brother-in-law. He was unfit for attending to such matters then, +but he bid me speak to his lawyer; and at length permitted me to go. +His lawyer had been Earnshaw’s also: I called at the village, and asked +him to accompany me. He shook his head, and advised that Heathcliff +should be let alone; affirming, if the truth were known, Hareton would +be found little else than a beggar. + +“His father died in debt,” he said; “the whole property is mortgaged, +and the sole chance for the natural heir is to allow him an opportunity +of creating some interest in the creditor’s heart, that he may be +inclined to deal leniently towards him.” + +When I reached the Heights, I explained that I had come to see +everything carried on decently; and Joseph, who appeared in sufficient +distress, expressed satisfaction at my presence. Mr. Heathcliff said he +did not perceive that I was wanted; but I might stay and order the +arrangements for the funeral, if I chose. + +“Correctly,” he remarked, “that fool’s body should be buried at the +cross-roads, without ceremony of any kind. I happened to leave him ten +minutes yesterday afternoon, and in that interval he fastened the two +doors of the house against me, and he has spent the night in drinking +himself to death deliberately! We broke in this morning, for we heard +him snorting like a horse; and there he was, laid over the settle: +flaying and scalping would not have wakened him. I sent for Kenneth, +and he came; but not till the beast had changed into carrion: he was +both dead and cold, and stark; and so you’ll allow it was useless +making more stir about him!” + +The old servant confirmed this statement, but muttered: + +“I’d rayther he’d goan hisseln for t’ doctor! I sud ha’ taen tent o’ t’ +maister better nor him—and he warn’t deead when I left, naught o’ t’ +soart!” + +I insisted on the funeral being respectable. Mr. Heathcliff said I +might have my own way there too: only, he desired me to remember that +the money for the whole affair came out of his pocket. He maintained a +hard, careless deportment, indicative of neither joy nor sorrow: if +anything, it expressed a flinty gratification at a piece of difficult +work successfully executed. I observed once, indeed, something like +exultation in his aspect: it was just when the people were bearing the +coffin from the house. He had the hypocrisy to represent a mourner: and +previous to following with Hareton, he lifted the unfortunate child on +to the table and muttered, with peculiar gusto, “Now, my bonny lad, you +are _mine_! And we’ll see if one tree won’t grow as crooked as another, +with the same wind to twist it!” The unsuspecting thing was pleased at +this speech: he played with Heathcliff’s whiskers, and stroked his +cheek; but I divined its meaning, and observed tartly, “That boy must +go back with me to Thrushcross Grange, sir. There is nothing in the +world less yours than he is!” + +“Does Linton say so?” he demanded. + +“Of course—he has ordered me to take him,” I replied. + +“Well,” said the scoundrel, “we’ll not argue the subject now: but I +have a fancy to try my hand at rearing a young one; so intimate to your +master that I must supply the place of this with my own, if he attempt +to remove it. I don’t engage to let Hareton go undisputed; but I’ll be +pretty sure to make the other come! Remember to tell him.” + +This hint was enough to bind our hands. I repeated its substance on my +return; and Edgar Linton, little interested at the commencement, spoke +no more of interfering. I’m not aware that he could have done it to any +purpose, had he been ever so willing. + +The guest was now the master of Wuthering Heights: he held firm +possession, and proved to the attorney—who, in his turn, proved it to +Mr. Linton—that Earnshaw had mortgaged every yard of land he owned for +cash to supply his mania for gaming; and he, Heathcliff, was the +mortgagee. In that manner Hareton, who should now be the first +gentleman in the neighbourhood, was reduced to a state of complete +dependence on his father’s inveterate enemy; and lives in his own house +as a servant, deprived of the advantage of wages: quite unable to right +himself, because of his friendlessness, and his ignorance that he has +been wronged. + + + + +CHAPTER XVIII + + +The twelve years, continued Mrs. Dean, following that dismal period +were the happiest of my life: my greatest troubles in their passage +rose from our little lady’s trifling illnesses, which she had to +experience in common with all children, rich and poor. For the rest, +after the first six months, she grew like a larch, and could walk and +talk too, in her own way, before the heath blossomed a second time over +Mrs. Linton’s dust. She was the most winning thing that ever brought +sunshine into a desolate house: a real beauty in face, with the +Earnshaws’ handsome dark eyes, but the Lintons’ fair skin and small +features, and yellow curling hair. Her spirit was high, though not +rough, and qualified by a heart sensitive and lively to excess in its +affections. That capacity for intense attachments reminded me of her +mother: still she did not resemble her: for she could be soft and mild +as a dove, and she had a gentle voice and pensive expression: her anger +was never furious; her love never fierce: it was deep and tender. +However, it must be acknowledged, she had faults to foil her gifts. A +propensity to be saucy was one; and a perverse will, that indulged +children invariably acquire, whether they be good tempered or cross. If +a servant chanced to vex her, it was always—“I shall tell papa!” And if +he reproved her, even by a look, you would have thought it a +heart-breaking business: I don’t believe he ever did speak a harsh word +to her. He took her education entirely on himself, and made it an +amusement. Fortunately, curiosity and a quick intellect made her an apt +scholar: she learned rapidly and eagerly, and did honour to his +teaching. + +Till she reached the age of thirteen she had not once been beyond the +range of the park by herself. Mr. Linton would take her with him a mile +or so outside, on rare occasions; but he trusted her to no one else. +Gimmerton was an unsubstantial name in her ears; the chapel, the only +building she had approached or entered, except her own home. Wuthering +Heights and Mr. Heathcliff did not exist for her: she was a perfect +recluse; and, apparently, perfectly contented. Sometimes, indeed, while +surveying the country from her nursery window, she would observe— + +“Ellen, how long will it be before I can walk to the top of those +hills? I wonder what lies on the other side—is it the sea?” + +“No, Miss Cathy,” I would answer; “it is hills again, just like these.” + +“And what are those golden rocks like when you stand under them?” she +once asked. + +The abrupt descent of Penistone Crags particularly attracted her +notice; especially when the setting sun shone on it and the topmost +heights, and the whole extent of landscape besides lay in shadow. I +explained that they were bare masses of stone, with hardly enough earth +in their clefts to nourish a stunted tree. + +“And why are they bright so long after it is evening here?” she +pursued. + +“Because they are a great deal higher up than we are,” replied I; “you +could not climb them, they are too high and steep. In winter the frost +is always there before it comes to us; and deep into summer I have +found snow under that black hollow on the north-east side!” + +“Oh, you have been on them!” she cried gleefully. “Then I can go, too, +when I am a woman. Has papa been, Ellen?” + +“Papa would tell you, Miss,” I answered, hastily, “that they are not +worth the trouble of visiting. The moors, where you ramble with him, +are much nicer; and Thrushcross Park is the finest place in the world.” + +“But I know the park, and I don’t know those,” she murmured to herself. +“And I should delight to look round me from the brow of that tallest +point: my little pony Minny shall take me some time.” + +One of the maids mentioning the Fairy Cave, quite turned her head with +a desire to fulfil this project: she teased Mr. Linton about it; and he +promised she should have the journey when she got older. But Miss +Catherine measured her age by months, and, “Now, am I old enough to go +to Penistone Crags?” was the constant question in her mouth. The road +thither wound close by Wuthering Heights. Edgar had not the heart to +pass it; so she received as constantly the answer, “Not yet, love: not +yet.” + +I said Mrs. Heathcliff lived above a dozen years after quitting her +husband. Her family were of a delicate constitution: she and Edgar both +lacked the ruddy health that you will generally meet in these parts. +What her last illness was, I am not certain: I conjecture, they died of +the same thing, a kind of fever, slow at its commencement, but +incurable, and rapidly consuming life towards the close. She wrote to +inform her brother of the probable conclusion of a four-months’ +indisposition under which she had suffered, and entreated him to come +to her, if possible; for she had much to settle, and she wished to bid +him adieu, and deliver Linton safely into his hands. Her hope was that +Linton might be left with him, as he had been with her: his father, she +would fain convince herself, had no desire to assume the burden of his +maintenance or education. My master hesitated not a moment in complying +with her request: reluctant as he was to leave home at ordinary calls, +he flew to answer this; commending Catherine to my peculiar vigilance, +in his absence, with reiterated orders that she must not wander out of +the park, even under my escort: he did not calculate on her going +unaccompanied. + +He was away three weeks. The first day or two my charge sat in a corner +of the library, too sad for either reading or playing: in that quiet +state she caused me little trouble; but it was succeeded by an interval +of impatient, fretful weariness; and being too busy, and too old then, +to run up and down amusing her, I hit on a method by which she might +entertain herself. I used to send her on her travels round the +grounds—now on foot, and now on a pony; indulging her with a patient +audience of all her real and imaginary adventures when she returned. + +The summer shone in full prime; and she took such a taste for this +solitary rambling that she often contrived to remain out from breakfast +till tea; and then the evenings were spent in recounting her fanciful +tales. I did not fear her breaking bounds; because the gates were +generally locked, and I thought she would scarcely venture forth alone, +if they had stood wide open. Unluckily, my confidence proved misplaced. +Catherine came to me, one morning, at eight o’clock, and said she was +that day an Arabian merchant, going to cross the Desert with his +caravan; and I must give her plenty of provision for herself and +beasts: a horse, and three camels, personated by a large hound and a +couple of pointers. I got together good store of dainties, and slung +them in a basket on one side of the saddle; and she sprang up as gay as +a fairy, sheltered by her wide-brimmed hat and gauze veil from the July +sun, and trotted off with a merry laugh, mocking my cautious counsel to +avoid galloping, and come back early. The naughty thing never made her +appearance at tea. One traveller, the hound, being an old dog and fond +of its ease, returned; but neither Cathy, nor the pony, nor the two +pointers were visible in any direction: I despatched emissaries down +this path, and that path, and at last went wandering in search of her +myself. There was a labourer working at a fence round a plantation, on +the borders of the grounds. I inquired of him if he had seen our young +lady. + +“I saw her at morn,” he replied: “she would have me to cut her a hazel +switch, and then she leapt her Galloway over the hedge yonder, where it +is lowest, and galloped out of sight.” + +You may guess how I felt at hearing this news. It struck me directly +she must have started for Penistone Crags. “What will become of her?” I +ejaculated, pushing through a gap which the man was repairing, and +making straight to the high-road. I walked as if for a wager, mile +after mile, till a turn brought me in view of the Heights; but no +Catherine could I detect, far or near. The Crags lie about a mile and a +half beyond Mr. Heathcliff’s place, and that is four from the Grange, +so I began to fear night would fall ere I could reach them. “And what +if she should have slipped in clambering among them,” I reflected, “and +been killed, or broken some of her bones?” My suspense was truly +painful; and, at first, it gave me delightful relief to observe, in +hurrying by the farmhouse, Charlie, the fiercest of the pointers, lying +under a window, with swelled head and bleeding ear. I opened the wicket +and ran to the door, knocking vehemently for admittance. A woman whom I +knew, and who formerly lived at Gimmerton, answered: she had been +servant there since the death of Mr. Earnshaw. + +“Ah,” said she, “you are come a-seeking your little mistress! Don’t be +frightened. She’s here safe: but I’m glad it isn’t the master.” + +“He is not at home then, is he?” I panted, quite breathless with quick +walking and alarm. + +“No, no,” she replied: “both he and Joseph are off, and I think they +won’t return this hour or more. Step in and rest you a bit.” + +I entered, and beheld my stray lamb seated on the hearth, rocking +herself in a little chair that had been her mother’s when a child. Her +hat was hung against the wall, and she seemed perfectly at home, +laughing and chattering, in the best spirits imaginable, to Hareton—now +a great, strong lad of eighteen—who stared at her with considerable +curiosity and astonishment: comprehending precious little of the fluent +succession of remarks and questions which her tongue never ceased +pouring forth. + +“Very well, Miss!” I exclaimed, concealing my joy under an angry +countenance. “This is your last ride, till papa comes back. I’ll not +trust you over the threshold again, you naughty, naughty girl!” + +“Aha, Ellen!” she cried, gaily, jumping up and running to my side. “I +shall have a pretty story to tell to-night; and so you’ve found me out. +Have you ever been here in your life before?” + +“Put that hat on, and home at once,” said I. “I’m dreadfully grieved at +you, Miss Cathy: you’ve done extremely wrong! It’s no use pouting and +crying: that won’t repay the trouble I’ve had, scouring the country +after you. To think how Mr. Linton charged me to keep you in; and you +stealing off so! It shows you are a cunning little fox, and nobody will +put faith in you any more.” + +“What have I done?” sobbed she, instantly checked. “Papa charged me +nothing: he’ll not scold me, Ellen—he’s never cross, like you!” + +“Come, come!” I repeated. “I’ll tie the riband. Now, let us have no +petulance. Oh, for shame! You thirteen years old, and such a baby!” + +This exclamation was caused by her pushing the hat from her head, and +retreating to the chimney out of my reach. + +“Nay,” said the servant, “don’t be hard on the bonny lass, Mrs. Dean. +We made her stop: she’d fain have ridden forwards, afeard you should be +uneasy. Hareton offered to go with her, and I thought he should: it’s a +wild road over the hills.” + +Hareton, during the discussion, stood with his hands in his pockets, +too awkward to speak; though he looked as if he did not relish my +intrusion. + +“How long am I to wait?” I continued, disregarding the woman’s +interference. “It will be dark in ten minutes. Where is the pony, Miss +Cathy? And where is Phoenix? I shall leave you, unless you be quick; so +please yourself.” + +“The pony is in the yard,” she replied, “and Phoenix is shut in there. +He’s bitten—and so is Charlie. I was going to tell you all about it; +but you are in a bad temper, and don’t deserve to hear.” + +I picked up her hat, and approached to reinstate it; but perceiving +that the people of the house took her part, she commenced capering +round the room; and on my giving chase, ran like a mouse over and under +and behind the furniture, rendering it ridiculous for me to pursue. +Hareton and the woman laughed, and she joined them, and waxed more +impertinent still; till I cried, in great irritation,—“Well, Miss +Cathy, if you were aware whose house this is you’d be glad enough to +get out.” + +“It’s _your_ father’s, isn’t it?” said she, turning to Hareton. + +“Nay,” he replied, looking down, and blushing bashfully. + +He could not stand a steady gaze from her eyes, though they were just +his own. + +“Whose then—your master’s?” she asked. + +He coloured deeper, with a different feeling, muttered an oath, and +turned away. + +“Who is his master?” continued the tiresome girl, appealing to me. “He +talked about ‘our house,’ and ‘our folk.’ I thought he had been the +owner’s son. And he never said Miss: he should have done, shouldn’t he, +if he’s a servant?” + +Hareton grew black as a thunder-cloud at this childish speech. I +silently shook my questioner, and at last succeeded in equipping her +for departure. + +“Now, get my horse,” she said, addressing her unknown kinsman as she +would one of the stable-boys at the Grange. “And you may come with me. +I want to see where the goblin-hunter rises in the marsh, and to hear +about the _fairishes_, as you call them: but make haste! What’s the +matter? Get my horse, I say.” + +“I’ll see thee damned before I be _thy_ servant!” growled the lad. + +“You’ll see me _what?_” asked Catherine in surprise. + +“Damned—thou saucy witch!” he replied. + +“There, Miss Cathy! you see you have got into pretty company,” I +interposed. “Nice words to be used to a young lady! Pray don’t begin to +dispute with him. Come, let us seek for Minny ourselves, and begone.” + +“But, Ellen,” cried she, staring fixed in astonishment, “how dare he +speak so to me? Mustn’t he be made to do as I ask him? You wicked +creature, I shall tell papa what you said.—Now, then!” + +Hareton did not appear to feel this threat; so the tears sprang into +her eyes with indignation. “You bring the pony,” she exclaimed, turning +to the woman, “and let my dog free this moment!” + +“Softly, Miss,” answered the addressed. “You’ll lose nothing by being +civil. Though Mr. Hareton, there, be not the master’s son, he’s your +cousin: and I was never hired to serve you.” + +“_He_ my cousin!” cried Cathy, with a scornful laugh. + +“Yes, indeed,” responded her reprover. + +“Oh, Ellen! don’t let them say such things,” she pursued in great +trouble. “Papa is gone to fetch my cousin from London: my cousin is a +gentleman’s son. That my—” she stopped, and wept outright; upset at the +bare notion of relationship with such a clown. + +“Hush, hush!” I whispered; “people can have many cousins and of all +sorts, Miss Cathy, without being any the worse for it; only they +needn’t keep their company, if they be disagreeable and bad.” + +“He’s not—he’s not my cousin, Ellen!” she went on, gathering fresh +grief from reflection, and flinging herself into my arms for refuge +from the idea. + +I was much vexed at her and the servant for their mutual revelations; +having no doubt of Linton’s approaching arrival, communicated by the +former, being reported to Mr. Heathcliff; and feeling as confident that +Catherine’s first thought on her father’s return would be to seek an +explanation of the latter’s assertion concerning her rude-bred kindred. +Hareton, recovering from his disgust at being taken for a servant, +seemed moved by her distress; and, having fetched the pony round to the +door, he took, to propitiate her, a fine crooked-legged terrier whelp +from the kennel, and putting it into her hand, bid her whist! for he +meant nought. Pausing in her lamentations, she surveyed him with a +glance of awe and horror, then burst forth anew. + +I could scarcely refrain from smiling at this antipathy to the poor +fellow; who was a well-made, athletic youth, good-looking in features, +and stout and healthy, but attired in garments befitting his daily +occupations of working on the farm and lounging among the moors after +rabbits and game. Still, I thought I could detect in his physiognomy a +mind owning better qualities than his father ever possessed. Good +things lost amid a wilderness of weeds, to be sure, whose rankness far +over-topped their neglected growth; yet, notwithstanding, evidence of a +wealthy soil, that might yield luxuriant crops under other and +favourable circumstances. Mr. Heathcliff, I believe, had not treated +him physically ill; thanks to his fearless nature, which offered no +temptation to that course of oppression: he had none of the timid +susceptibility that would have given zest to ill-treatment, in +Heathcliff’s judgment. He appeared to have bent his malevolence on +making him a brute: he was never taught to read or write; never rebuked +for any bad habit which did not annoy his keeper; never led a single +step towards virtue, or guarded by a single precept against vice. And +from what I heard, Joseph contributed much to his deterioration, by a +narrow-minded partiality which prompted him to flatter and pet him, as +a boy, because he was the head of the old family. And as he had been in +the habit of accusing Catherine Earnshaw and Heathcliff, when children, +of putting the master past his patience, and compelling him to seek +solace in drink by what he termed their “offald ways,” so at present he +laid the whole burden of Hareton’s faults on the shoulders of the +usurper of his property. If the lad swore, he wouldn’t correct him: nor +however culpably he behaved. It gave Joseph satisfaction, apparently, +to watch him go the worst lengths: he allowed that the lad was ruined: +that his soul was abandoned to perdition; but then he reflected that +Heathcliff must answer for it. Hareton’s blood would be required at his +hands; and there lay immense consolation in that thought. Joseph had +instilled into him a pride of name, and of his lineage; he would, had +he dared, have fostered hate between him and the present owner of the +Heights: but his dread of that owner amounted to superstition; and he +confined his feelings regarding him to muttered innuendoes and private +comminations. I don’t pretend to be intimately acquainted with the mode +of living customary in those days at Wuthering Heights: I only speak +from hearsay; for I saw little. The villagers affirmed Mr. Heathcliff +was _near_, and a cruel hard landlord to his tenants; but the house, +inside, had regained its ancient aspect of comfort under female +management, and the scenes of riot common in Hindley’s time were not +now enacted within its walls. The master was too gloomy to seek +companionship with any people, good or bad; and he is yet. + +This, however, is not making progress with my story. Miss Cathy +rejected the peace-offering of the terrier, and demanded her own dogs, +Charlie and Phoenix. They came limping and hanging their heads; and we +set out for home, sadly out of sorts, every one of us. I could not +wring from my little lady how she had spent the day; except that, as I +supposed, the goal of her pilgrimage was Penistone Crags; and she +arrived without adventure to the gate of the farmhouse, when Hareton +happened to issue forth, attended by some canine followers, who +attacked her train. They had a smart battle, before their owners could +separate them: that formed an introduction. Catherine told Hareton who +she was, and where she was going; and asked him to show her the way: +finally, beguiling him to accompany her. He opened the mysteries of the +Fairy Cave, and twenty other queer places. But, being in disgrace, I +was not favoured with a description of the interesting objects she saw. +I could gather, however, that her guide had been a favourite till she +hurt his feelings by addressing him as a servant; and Heathcliff’s +housekeeper hurt hers by calling him her cousin. Then the language he +had held to her rankled in her heart; she who was always “love,” and +“darling,” and “queen,” and “angel,” with everybody at the Grange, to +be insulted so shockingly by a stranger! She did not comprehend it; and +hard work I had to obtain a promise that she would not lay the +grievance before her father. I explained how he objected to the whole +household at the Heights, and how sorry he would be to find she had +been there; but I insisted most on the fact, that if she revealed my +negligence of his orders, he would perhaps be so angry that I should +have to leave; and Cathy couldn’t bear that prospect: she pledged her +word, and kept it for my sake. After all, she was a sweet little girl. + + + + +CHAPTER XIX + + +A letter, edged with black, announced the day of my master’s return. +Isabella was dead; and he wrote to bid me get mourning for his +daughter, and arrange a room, and other accommodations, for his +youthful nephew. Catherine ran wild with joy at the idea of welcoming +her father back; and indulged most sanguine anticipations of the +innumerable excellencies of her “real” cousin. The evening of their +expected arrival came. Since early morning she had been busy ordering +her own small affairs; and now attired in her new black frock—poor +thing! her aunt’s death impressed her with no definite sorrow—she +obliged me, by constant worrying, to walk with her down through the +grounds to meet them. + +“Linton is just six months younger than I am,” she chattered, as we +strolled leisurely over the swells and hollows of mossy turf, under +shadow of the trees. “How delightful it will be to have him for a +playfellow! Aunt Isabella sent papa a beautiful lock of his hair; it +was lighter than mine—more flaxen, and quite as fine. I have it +carefully preserved in a little glass box; and I’ve often thought what +a pleasure it would be to see its owner. Oh! I am happy—and papa, dear, +dear papa! Come, Ellen, let us run! come, run.” + +She ran, and returned and ran again, many times before my sober +footsteps reached the gate, and then she seated herself on the grassy +bank beside the path, and tried to wait patiently; but that was +impossible: she couldn’t be still a minute. + +“How long they are!” she exclaimed. “Ah, I see some dust on the +road—they are coming! No! When will they be here? May we not go a +little way—half a mile, Ellen, only just half a mile? Do say yes, to +that clump of birches at the turn!” + +I refused staunchly. At length her suspense was ended: the travelling +carriage rolled in sight. Miss Cathy shrieked and stretched out her +arms as soon as she caught her father’s face looking from the window. +He descended, nearly as eager as herself; and a considerable interval +elapsed ere they had a thought to spare for any but themselves. While +they exchanged caresses I took a peep in to see after Linton. He was +asleep in a corner, wrapped in a warm, fur-lined cloak, as if it had +been winter. A pale, delicate, effeminate boy, who might have been +taken for my master’s younger brother, so strong was the resemblance: +but there was a sickly peevishness in his aspect that Edgar Linton +never had. The latter saw me looking; and having shaken hands, advised +me to close the door, and leave him undisturbed; for the journey had +fatigued him. Cathy would fain have taken one glance, but her father +told her to come, and they walked together up the park, while I +hastened before to prepare the servants. + +“Now, darling,” said Mr. Linton, addressing his daughter, as they +halted at the bottom of the front steps: “your cousin is not so strong +or so merry as you are, and he has lost his mother, remember, a very +short time since; therefore, don’t expect him to play and run about +with you directly. And don’t harass him much by talking: let him be +quiet this evening, at least, will you?” + +“Yes, yes, papa,” answered Catherine: “but I do want to see him; and he +hasn’t once looked out.” + +The carriage stopped; and the sleeper being roused, was lifted to the +ground by his uncle. + +“This is your cousin Cathy, Linton,” he said, putting their little +hands together. “She’s fond of you already; and mind you don’t grieve +her by crying to-night. Try to be cheerful now; the travelling is at an +end, and you have nothing to do but rest and amuse yourself as you +please.” + +“Let me go to bed, then,” answered the boy, shrinking from Catherine’s +salute; and he put his fingers to his eyes to remove incipient tears. + +“Come, come, there’s a good child,” I whispered, leading him in. +“You’ll make her weep too—see how sorry she is for you!” + +I do not know whether it was sorrow for him, but his cousin put on as +sad a countenance as himself, and returned to her father. All three +entered, and mounted to the library, where tea was laid ready. I +proceeded to remove Linton’s cap and mantle, and placed him on a chair +by the table; but he was no sooner seated than he began to cry afresh. +My master inquired what was the matter. + +“I can’t sit on a chair,” sobbed the boy. + +“Go to the sofa, then, and Ellen shall bring you some tea,” answered +his uncle patiently. + +He had been greatly tried, during the journey, I felt convinced, by his +fretful ailing charge. Linton slowly trailed himself off, and lay down. +Cathy carried a footstool and her cup to his side. At first she sat +silent; but that could not last: she had resolved to make a pet of her +little cousin, as she would have him to be; and she commenced stroking +his curls, and kissing his cheek, and offering him tea in her saucer, +like a baby. This pleased him, for he was not much better: he dried his +eyes, and lightened into a faint smile. + +“Oh, he’ll do very well,” said the master to me, after watching them a +minute. “Very well, if we can keep him, Ellen. The company of a child +of his own age will instil new spirit into him soon, and by wishing for +strength he’ll gain it.” + +“Ay, if we can keep him!” I mused to myself; and sore misgivings came +over me that there was slight hope of that. And then, I thought, how +ever will that weakling live at Wuthering Heights? Between his father +and Hareton, what playmates and instructors they’ll be. Our doubts were +presently decided—even earlier than I expected. I had just taken the +children upstairs, after tea was finished, and seen Linton asleep—he +would not suffer me to leave him till that was the case—I had come +down, and was standing by the table in the hall, lighting a bedroom +candle for Mr. Edgar, when a maid stepped out of the kitchen and +informed me that Mr. Heathcliff’s servant Joseph was at the door, and +wished to speak with the master. + +“I shall ask him what he wants first,” I said, in considerable +trepidation. “A very unlikely hour to be troubling people, and the +instant they have returned from a long journey. I don’t think the +master can see him.” + +Joseph had advanced through the kitchen as I uttered these words, and +now presented himself in the hall. He was donned in his Sunday +garments, with his most sanctimonious and sourest face, and, holding +his hat in one hand, and his stick in the other, he proceeded to clean +his shoes on the mat. + +“Good-evening, Joseph,” I said, coldly. “What business brings you here +to-night?” + +“It’s Maister Linton I mun spake to,” he answered, waving me +disdainfully aside. + +“Mr. Linton is going to bed; unless you have something particular to +say, I’m sure he won’t hear it now,” I continued. “You had better sit +down in there, and entrust your message to me.” + +“Which is his rahm?” pursued the fellow, surveying the range of closed +doors. + +I perceived he was bent on refusing my mediation, so very reluctantly I +went up to the library, and announced the unseasonable visitor, +advising that he should be dismissed till next day. Mr. Linton had no +time to empower me to do so, for Joseph mounted close at my heels, and, +pushing into the apartment, planted himself at the far side of the +table, with his two fists clapped on the head of his stick, and began +in an elevated tone, as if anticipating opposition— + +“Hathecliff has sent me for his lad, and I munn’t goa back ’bout him.” + +Edgar Linton was silent a minute; an expression of exceeding sorrow +overcast his features: he would have pitied the child on his own +account; but, recalling Isabella’s hopes and fears, and anxious wishes +for her son, and her commendations of him to his care, he grieved +bitterly at the prospect of yielding him up, and searched in his heart +how it might be avoided. No plan offered itself: the very exhibition of +any desire to keep him would have rendered the claimant more +peremptory: there was nothing left but to resign him. However, he was +not going to rouse him from his sleep. + +“Tell Mr. Heathcliff,” he answered calmly, “that his son shall come to +Wuthering Heights to-morrow. He is in bed, and too tired to go the +distance now. You may also tell him that the mother of Linton desired +him to remain under my guardianship; and, at present, his health is +very precarious.” + +“Noa!” said Joseph, giving a thud with his prop on the floor, and +assuming an authoritative air. “Noa! that means naught. Hathecliff maks +noa ’count o’ t’ mother, nor ye norther; but he’ll hev his lad; und I +mun tak’ him—soa now ye knaw!” + +“You shall not to-night!” answered Linton decisively. “Walk down stairs +at once, and repeat to your master what I have said. Ellen, show him +down. Go—” + +And, aiding the indignant elder with a lift by the arm, he rid the room +of him and closed the door. + +“Varrah weell!” shouted Joseph, as he slowly drew off. “To-morn, he’s +come hisseln, and thrust _him_ out, if ye darr!” + + + + +CHAPTER XX + + +To obviate the danger of this threat being fulfilled, Mr. Linton +commissioned me to take the boy home early, on Catherine’s pony; and, +said he—“As we shall now have no influence over his destiny, good or +bad, you must say nothing of where he is gone to my daughter: she +cannot associate with him hereafter, and it is better for her to remain +in ignorance of his proximity; lest she should be restless, and anxious +to visit the Heights. Merely tell her his father sent for him suddenly, +and he has been obliged to leave us.” + +Linton was very reluctant to be roused from his bed at five o’clock, +and astonished to be informed that he must prepare for further +travelling; but I softened off the matter by stating that he was going +to spend some time with his father, Mr. Heathcliff, who wished to see +him so much, he did not like to defer the pleasure till he should +recover from his late journey. + +“My father!” he cried, in strange perplexity. “Mamma never told me I +had a father. Where does he live? I’d rather stay with uncle.” + +“He lives a little distance from the Grange,” I replied; “just beyond +those hills: not so far, but you may walk over here when you get +hearty. And you should be glad to go home, and to see him. You must try +to love him, as you did your mother, and then he will love you.” + +“But why have I not heard of him before?” asked Linton. “Why didn’t +mamma and he live together, as other people do?” + +“He had business to keep him in the north,” I answered, “and your +mother’s health required her to reside in the south.” + +“And why didn’t mamma speak to me about him?” persevered the child. +“She often talked of uncle, and I learnt to love him long ago. How am I +to love papa? I don’t know him.” + +“Oh, all children love their parents,” I said. “Your mother, perhaps, +thought you would want to be with him if she mentioned him often to +you. Let us make haste. An early ride on such a beautiful morning is +much preferable to an hour’s more sleep.” + +“Is _she_ to go with us,” he demanded, “the little girl I saw +yesterday?” + +“Not now,” replied I. + +“Is uncle?” he continued. + +“No, I shall be your companion there,” I said. + +Linton sank back on his pillow and fell into a brown study. + +“I won’t go without uncle,” he cried at length: “I can’t tell where you +mean to take me.” + +I attempted to persuade him of the naughtiness of showing reluctance to +meet his father; still he obstinately resisted any progress towards +dressing, and I had to call for my master’s assistance in coaxing him +out of bed. The poor thing was finally got off, with several delusive +assurances that his absence should be short: that Mr. Edgar and Cathy +would visit him, and other promises, equally ill-founded, which I +invented and reiterated at intervals throughout the way. The pure +heather-scented air, the bright sunshine, and the gentle canter of +Minny, relieved his despondency after a while. He began to put +questions concerning his new home, and its inhabitants, with greater +interest and liveliness. + +“Is Wuthering Heights as pleasant a place as Thrushcross Grange?” he +inquired, turning to take a last glance into the valley, whence a light +mist mounted and formed a fleecy cloud on the skirts of the blue. + +“It is not so buried in trees,” I replied, “and it is not quite so +large, but you can see the country beautifully all round; and the air +is healthier for you—fresher and drier. You will, perhaps, think the +building old and dark at first; though it is a respectable house: the +next best in the neighbourhood. And you will have such nice rambles on +the moors. Hareton Earnshaw—that is, Miss Cathy’s other cousin, and so +yours in a manner—will show you all the sweetest spots; and you can +bring a book in fine weather, and make a green hollow your study; and, +now and then, your uncle may join you in a walk: he does, frequently, +walk out on the hills.” + +“And what is my father like?” he asked. “Is he as young and handsome as +uncle?” + +“He’s as young,” said I; “but he has black hair and eyes, and looks +sterner; and he is taller and bigger altogether. He’ll not seem to you +so gentle and kind at first, perhaps, because it is not his way: still, +mind you, be frank and cordial with him; and naturally he’ll be fonder +of you than any uncle, for you are his own.” + +“Black hair and eyes!” mused Linton. “I can’t fancy him. Then I am not +like him, am I?” + +“Not much,” I answered: not a morsel, I thought, surveying with regret +the white complexion and slim frame of my companion, and his large +languid eyes—his mother’s eyes, save that, unless a morbid touchiness +kindled them a moment, they had not a vestige of her sparkling spirit. + +“How strange that he should never come to see mamma and me!” he +murmured. “Has he ever seen me? If he has, I must have been a baby. I +remember not a single thing about him!” + +“Why, Master Linton,” said I, “three hundred miles is a great distance; +and ten years seem very different in length to a grown-up person +compared with what they do to you. It is probable Mr. Heathcliff +proposed going from summer to summer, but never found a convenient +opportunity; and now it is too late. Don’t trouble him with questions +on the subject: it will disturb him, for no good.” + +The boy was fully occupied with his own cogitations for the remainder +of the ride, till we halted before the farmhouse garden-gate. I watched +to catch his impressions in his countenance. He surveyed the carved +front and low-browed lattices, the straggling gooseberry-bushes and +crooked firs, with solemn intentness, and then shook his head: his +private feelings entirely disapproved of the exterior of his new abode. +But he had sense to postpone complaining: there might be compensation +within. Before he dismounted, I went and opened the door. It was +half-past six; the family had just finished breakfast: the servant was +clearing and wiping down the table. Joseph stood by his master’s chair +telling some tale concerning a lame horse; and Hareton was preparing +for the hayfield. + +“Hallo, Nelly!” said Mr. Heathcliff, when he saw me. “I feared I should +have to come down and fetch my property myself. You’ve brought it, have +you? Let us see what we can make of it.” + +He got up and strode to the door: Hareton and Joseph followed in gaping +curiosity. Poor Linton ran a frightened eye over the faces of the +three. + +“Sure-ly,” said Joseph after a grave inspection, “he’s swopped wi’ ye, +Maister, an’ yon’s his lass!” + +Heathcliff, having stared his son into an ague of confusion, uttered a +scornful laugh. + +“God! what a beauty! what a lovely, charming thing!” he exclaimed. +“Hav’n’t they reared it on snails and sour milk, Nelly? Oh, damn my +soul! but that’s worse than I expected—and the devil knows I was not +sanguine!” + +I bid the trembling and bewildered child get down, and enter. He did +not thoroughly comprehend the meaning of his father’s speech, or +whether it were intended for him: indeed, he was not yet certain that +the grim, sneering stranger was his father. But he clung to me with +growing trepidation; and on Mr. Heathcliff’s taking a seat and bidding +him “come hither” he hid his face on my shoulder and wept. + +“Tut, tut!” said Heathcliff, stretching out a hand and dragging him +roughly between his knees, and then holding up his head by the chin. +“None of that nonsense! We’re not going to hurt thee, Linton—isn’t that +thy name? Thou art thy mother’s child, entirely! Where is _my_ share in +thee, puling chicken?” + +He took off the boy’s cap and pushed back his thick flaxen curls, felt +his slender arms and his small fingers; during which examination Linton +ceased crying, and lifted his great blue eyes to inspect the inspector. + +“Do you know me?” asked Heathcliff, having satisfied himself that the +limbs were all equally frail and feeble. + +“No,” said Linton, with a gaze of vacant fear. + +“You’ve heard of me, I daresay?” + +“No,” he replied again. + +“No! What a shame of your mother, never to waken your filial regard for +me! You are my son, then, I’ll tell you; and your mother was a wicked +slut to leave you in ignorance of the sort of father you possessed. +Now, don’t wince, and colour up! Though it _is_ something to see you +have not white blood. Be a good lad; and I’ll do for you. Nelly, if you +be tired you may sit down; if not, get home again. I guess you’ll +report what you hear and see to the cipher at the Grange; and this +thing won’t be settled while you linger about it.” + +“Well,” replied I, “I hope you’ll be kind to the boy, Mr. Heathcliff, +or you’ll not keep him long; and he’s all you have akin in the wide +world, that you will ever know—remember.” + +“I’ll be _very_ kind to him, you needn’t fear,” he said, laughing. +“Only nobody else must be kind to him: I’m jealous of monopolising his +affection. And, to begin my kindness, Joseph, bring the lad some +breakfast. Hareton, you infernal calf, begone to your work. Yes, Nell,” +he added, when they had departed, “my son is prospective owner of your +place, and I should not wish him to die till I was certain of being his +successor. Besides, he’s _mine_, and I want the triumph of seeing _my_ +descendant fairly lord of their estates; my child hiring their children +to till their fathers’ lands for wages. That is the sole consideration +which can make me endure the whelp: I despise him for himself, and hate +him for the memories he revives! But that consideration is sufficient: +he’s as safe with me, and shall be tended as carefully as your master +tends his own. I have a room upstairs, furnished for him in handsome +style; I’ve engaged a tutor, also, to come three times a week, from +twenty miles’ distance, to teach him what he pleases to learn. I’ve +ordered Hareton to obey him: and in fact I’ve arranged everything with +a view to preserve the superior and the gentleman in him, above his +associates. I do regret, however, that he so little deserves the +trouble: if I wished any blessing in the world, it was to find him a +worthy object of pride; and I’m bitterly disappointed with the +whey-faced, whining wretch!” + +While he was speaking, Joseph returned bearing a basin of +milk-porridge, and placed it before Linton: who stirred round the +homely mess with a look of aversion, and affirmed he could not eat it. +I saw the old man-servant shared largely in his master’s scorn of the +child; though he was compelled to retain the sentiment in his heart, +because Heathcliff plainly meant his underlings to hold him in honour. + +“Cannot ate it?” repeated he, peering in Linton’s face, and subduing +his voice to a whisper, for fear of being overheard. “But Maister +Hareton nivir ate naught else, when he wer a little ’un; and what wer +gooid eneugh for him’s gooid eneugh for ye, I’s rayther think!” + +“I _sha’n’t_ eat it!” answered Linton, snappishly. “Take it away.” + +Joseph snatched up the food indignantly, and brought it to us. + +“Is there aught ails th’ victuals?” he asked, thrusting the tray under +Heathcliff’s nose. + +“What should ail them?” he said. + +“Wah!” answered Joseph, “yon dainty chap says he cannut ate ’em. But I +guess it’s raight! His mother wer just soa—we wer a’most too mucky to +sow t’ corn for makking her breead.” + +“Don’t mention his mother to me,” said the master, angrily. “Get him +something that he can eat, that’s all. What is his usual food, Nelly?” + +I suggested boiled milk or tea; and the housekeeper received +instructions to prepare some. Come, I reflected, his father’s +selfishness may contribute to his comfort. He perceives his delicate +constitution, and the necessity of treating him tolerably. I’ll console +Mr. Edgar by acquainting him with the turn Heathcliff’s humour has +taken. Having no excuse for lingering longer, I slipped out, while +Linton was engaged in timidly rebuffing the advances of a friendly +sheep-dog. But he was too much on the alert to be cheated: as I closed +the door, I heard a cry, and a frantic repetition of the words— + +“Don’t leave me! I’ll not stay here! I’ll not stay here!” + +Then the latch was raised and fell: they did not suffer him to come +forth. I mounted Minny, and urged her to a trot; and so my brief +guardianship ended. + + + + +CHAPTER XXI + + +We had sad work with little Cathy that day: she rose in high glee, +eager to join her cousin, and such passionate tears and lamentations +followed the news of his departure that Edgar himself was obliged to +soothe her, by affirming he should come back soon: he added, however, +“if I can get him”; and there were no hopes of that. This promise +poorly pacified her; but time was more potent; and though still at +intervals she inquired of her father when Linton would return, before +she did see him again his features had waxed so dim in her memory that +she did not recognise him. + +When I chanced to encounter the housekeeper of Wuthering Heights, in +paying business visits to Gimmerton, I used to ask how the young master +got on; for he lived almost as secluded as Catherine herself, and was +never to be seen. I could gather from her that he continued in weak +health, and was a tiresome inmate. She said Mr. Heathcliff seemed to +dislike him ever longer and worse, though he took some trouble to +conceal it: he had an antipathy to the sound of his voice, and could +not do at all with his sitting in the same room with him many minutes +together. There seldom passed much talk between them: Linton learnt his +lessons and spent his evenings in a small apartment they called the +parlour: or else lay in bed all day: for he was constantly getting +coughs, and colds, and aches, and pains of some sort. + +“And I never knew such a faint-hearted creature,” added the woman; “nor +one so careful of hisseln. He _will_ go on, if I leave the window open +a bit late in the evening. Oh! it’s killing, a breath of night air! And +he must have a fire in the middle of summer; and Joseph’s bacca-pipe is +poison; and he must always have sweets and dainties, and always milk, +milk for ever—heeding naught how the rest of us are pinched in winter; +and there he’ll sit, wrapped in his furred cloak in his chair by the +fire, with some toast and water or other slop on the hob to sip at; and +if Hareton, for pity, comes to amuse him—Hareton is not bad-natured, +though he’s rough—they’re sure to part, one swearing and the other +crying. I believe the master would relish Earnshaw’s thrashing him to a +mummy, if he were not his son; and I’m certain he would be fit to turn +him out of doors, if he knew half the nursing he gives hisseln. But +then he won’t go into danger of temptation: he never enters the +parlour, and should Linton show those ways in the house where he is, he +sends him upstairs directly.” + +I divined, from this account, that utter lack of sympathy had rendered +young Heathcliff selfish and disagreeable, if he were not so +originally; and my interest in him, consequently, decayed: though still +I was moved with a sense of grief at his lot, and a wish that he had +been left with us. Mr. Edgar encouraged me to gain information: he +thought a great deal about him, I fancy, and would have run some risk +to see him; and he told me once to ask the housekeeper whether he ever +came into the village? She said he had only been twice, on horseback, +accompanying his father; and both times he pretended to be quite +knocked up for three or four days afterwards. That housekeeper left, if +I recollect rightly, two years after he came; and another, whom I did +not know, was her successor; she lives there still. + +Time wore on at the Grange in its former pleasant way till Miss Cathy +reached sixteen. On the anniversary of her birth we never manifested +any signs of rejoicing, because it was also the anniversary of my late +mistress’s death. Her father invariably spent that day alone in the +library; and walked, at dusk, as far as Gimmerton kirkyard, where he +would frequently prolong his stay beyond midnight. Therefore Catherine +was thrown on her own resources for amusement. This twentieth of March +was a beautiful spring day, and when her father had retired, my young +lady came down dressed for going out, and said she asked to have a +ramble on the edge of the moor with me: Mr. Linton had given her leave, +if we went only a short distance and were back within the hour. + +“So make haste, Ellen!” she cried. “I know where I wish to go; where a +colony of moor-game are settled: I want to see whether they have made +their nests yet.” + +“That must be a good distance up,” I answered; “they don’t breed on the +edge of the moor.” + +“No, it’s not,” she said. “I’ve gone very near with papa.” + +I put on my bonnet and sallied out, thinking nothing more of the +matter. She bounded before me, and returned to my side, and was off +again like a young greyhound; and, at first, I found plenty of +entertainment in listening to the larks singing far and near, and +enjoying the sweet, warm sunshine; and watching her, my pet and my +delight, with her golden ringlets flying loose behind, and her bright +cheek, as soft and pure in its bloom as a wild rose, and her eyes +radiant with cloudless pleasure. She was a happy creature, and an +angel, in those days. It’s a pity she could not be content. + +“Well,” said I, “where are your moor-game, Miss Cathy? We should be at +them: the Grange park-fence is a great way off now.” + +“Oh, a little further—only a little further, Ellen,” was her answer, +continually. “Climb to that hillock, pass that bank, and by the time +you reach the other side I shall have raised the birds.” + +But there were so many hillocks and banks to climb and pass, that, at +length, I began to be weary, and told her we must halt, and retrace our +steps. I shouted to her, as she had outstripped me a long way; she +either did not hear or did not regard, for she still sprang on, and I +was compelled to follow. Finally, she dived into a hollow; and before I +came in sight of her again, she was two miles nearer Wuthering Heights +than her own home; and I beheld a couple of persons arrest her, one of +whom I felt convinced was Mr. Heathcliff himself. + +Cathy had been caught in the fact of plundering, or, at least, hunting +out the nests of the grouse. The Heights were Heathcliff’s land, and he +was reproving the poacher. + +“I’ve neither taken any nor found any,” she said, as I toiled to them, +expanding her hands in corroboration of the statement. “I didn’t mean +to take them; but papa told me there were quantities up here, and I +wished to see the eggs.” + +Heathcliff glanced at me with an ill-meaning smile, expressing his +acquaintance with the party, and, consequently, his malevolence towards +it, and demanded who “papa” was? + +“Mr. Linton of Thrushcross Grange,” she replied. “I thought you did not +know me, or you wouldn’t have spoken in that way.” + +“You suppose papa is highly esteemed and respected, then?” he said, +sarcastically. + +“And what are you?” inquired Catherine, gazing curiously on the +speaker. “That man I’ve seen before. Is he your son?” + +She pointed to Hareton, the other individual, who had gained nothing +but increased bulk and strength by the addition of two years to his +age: he seemed as awkward and rough as ever. + +“Miss Cathy,” I interrupted, “it will be three hours instead of one +that we are out, presently. We really must go back.” + +“No, that man is not my son,” answered Heathcliff, pushing me aside. +“But I have one, and you have seen him before too; and, though your +nurse is in a hurry, I think both you and she would be the better for a +little rest. Will you just turn this nab of heath, and walk into my +house? You’ll get home earlier for the ease; and you shall receive a +kind welcome.” + +I whispered Catherine that she mustn’t, on any account, accede to the +proposal: it was entirely out of the question. + +“Why?” she asked, aloud. “I’m tired of running, and the ground is dewy: +I can’t sit here. Let us go, Ellen. Besides, he says I have seen his +son. He’s mistaken, I think; but I guess where he lives: at the +farmhouse I visited in coming from Penistone Crags. Don’t you?” + +“I do. Come, Nelly, hold your tongue—it will be a treat for her to look +in on us. Hareton, get forwards with the lass. You shall walk with me, +Nelly.” + +“No, she’s not going to any such place,” I cried, struggling to release +my arm, which he had seized: but she was almost at the door-stones +already, scampering round the brow at full speed. Her appointed +companion did not pretend to escort her: he shied off by the road-side, +and vanished. + +“Mr. Heathcliff, it’s very wrong,” I continued: “you know you mean no +good. And there she’ll see Linton, and all will be told as soon as ever +we return; and I shall have the blame.” + +“I want her to see Linton,” he answered; “he’s looking better these few +days; it’s not often he’s fit to be seen. And we’ll soon persuade her +to keep the visit secret: where is the harm of it?” + +“The harm of it is, that her father would hate me if he found I +suffered her to enter your house; and I am convinced you have a bad +design in encouraging her to do so,” I replied. + +“My design is as honest as possible. I’ll inform you of its whole +scope,” he said. “That the two cousins may fall in love, and get +married. I’m acting generously to your master: his young chit has no +expectations, and should she second my wishes she’ll be provided for at +once as joint successor with Linton.” + +“If Linton died,” I answered, “and his life is quite uncertain, +Catherine would be the heir.” + +“No, she would not,” he said. “There is no clause in the will to secure +it so: his property would go to me; but, to prevent disputes, I desire +their union, and am resolved to bring it about.” + +“And I’m resolved she shall never approach your house with me again,” I +returned, as we reached the gate, where Miss Cathy waited our coming. + +Heathcliff bade me be quiet; and, preceding us up the path, hastened to +open the door. My young lady gave him several looks, as if she could +not exactly make up her mind what to think of him; but now he smiled +when he met her eye, and softened his voice in addressing her; and I +was foolish enough to imagine the memory of her mother might disarm him +from desiring her injury. Linton stood on the hearth. He had been out +walking in the fields, for his cap was on, and he was calling to Joseph +to bring him dry shoes. He had grown tall of his age, still wanting +some months of sixteen. His features were pretty yet, and his eye and +complexion brighter than I remembered them, though with merely +temporary lustre borrowed from the salubrious air and genial sun. + +“Now, who is that?” asked Mr. Heathcliff, turning to Cathy. “Can you +tell?” + +“Your son?” she said, having doubtfully surveyed, first one and then +the other. + +“Yes, yes,” answered he: “but is this the only time you have beheld +him? Think! Ah! you have a short memory. Linton, don’t you recall your +cousin, that you used to tease us so with wishing to see?” + +“What, Linton!” cried Cathy, kindling into joyful surprise at the name. +“Is that little Linton? He’s taller than I am! Are you Linton?” + +The youth stepped forward, and acknowledged himself: she kissed him +fervently, and they gazed with wonder at the change time had wrought in +the appearance of each. Catherine had reached her full height; her +figure was both plump and slender, elastic as steel, and her whole +aspect sparkling with health and spirits. Linton’s looks and movements +were very languid, and his form extremely slight; but there was a grace +in his manner that mitigated these defects, and rendered him not +unpleasing. After exchanging numerous marks of fondness with him, his +cousin went to Mr. Heathcliff, who lingered by the door, dividing his +attention between the objects inside and those that lay without: +pretending, that is, to observe the latter, and really noting the +former alone. + +“And you are my uncle, then!” she cried, reaching up to salute him. “I +thought I liked you, though you were cross at first. Why don’t you +visit at the Grange with Linton? To live all these years such close +neighbours, and never see us, is odd: what have you done so for?” + +“I visited it once or twice too often before you were born,” he +answered. “There—damn it! If you have any kisses to spare, give them to +Linton: they are thrown away on me.” + +“Naughty Ellen!” exclaimed Catherine, flying to attack me next with her +lavish caresses. “Wicked Ellen! to try to hinder me from entering. But +I’ll take this walk every morning in future: may I, uncle? and +sometimes bring papa. Won’t you be glad to see us?” + +“Of course,” replied the uncle, with a hardly suppressed grimace, +resulting from his deep aversion to both the proposed visitors. “But +stay,” he continued, turning towards the young lady. “Now I think of +it, I’d better tell you. Mr. Linton has a prejudice against me: we +quarrelled at one time of our lives, with unchristian ferocity; and, if +you mention coming here to him, he’ll put a veto on your visits +altogether. Therefore, you must not mention it, unless you be careless +of seeing your cousin hereafter: you may come, if you will, but you +must not mention it.” + +“Why did you quarrel?” asked Catherine, considerably crestfallen. + +“He thought me too poor to wed his sister,” answered Heathcliff, “and +was grieved that I got her: his pride was hurt, and he’ll never forgive +it.” + +“That’s wrong!” said the young lady: “some time I’ll tell him so. But +Linton and I have no share in your quarrel. I’ll not come here, then; +he shall come to the Grange.” + +“It will be too far for me,” murmured her cousin: “to walk four miles +would kill me. No, come here, Miss Catherine, now and then: not every +morning, but once or twice a week.” + +The father launched towards his son a glance of bitter contempt. + +“I am afraid, Nelly, I shall lose my labour,” he muttered to me. “Miss +Catherine, as the ninny calls her, will discover his value, and send +him to the devil. Now, if it had been Hareton!—Do you know that, twenty +times a day, I covet Hareton, with all his degradation? I’d have loved +the lad had he been some one else. But I think he’s safe from _her_ +love. I’ll pit him against that paltry creature, unless it bestir +itself briskly. We calculate it will scarcely last till it is eighteen. +Oh, confound the vapid thing! He’s absorbed in drying his feet, and +never looks at her.—Linton!” + +“Yes, father,” answered the boy. + +“Have you nothing to show your cousin anywhere about, not even a rabbit +or a weasel’s nest? Take her into the garden, before you change your +shoes; and into the stable to see your horse.” + +“Wouldn’t you rather sit here?” asked Linton, addressing Cathy in a +tone which expressed reluctance to move again. + +“I don’t know,” she replied, casting a longing look to the door, and +evidently eager to be active. + +He kept his seat, and shrank closer to the fire. Heathcliff rose, and +went into the kitchen, and from thence to the yard, calling out for +Hareton. Hareton responded, and presently the two re-entered. The young +man had been washing himself, as was visible by the glow on his cheeks +and his wetted hair. + +“Oh, I’ll ask _you_, uncle,” cried Miss Cathy, recollecting the +housekeeper’s assertion. “That is not my cousin, is he?” + +“Yes,” he replied, “your mother’s nephew. Don’t you like him?” + +Catherine looked queer. + +“Is he not a handsome lad?” he continued. + +The uncivil little thing stood on tiptoe, and whispered a sentence in +Heathcliff’s ear. He laughed; Hareton darkened: I perceived he was very +sensitive to suspected slights, and had obviously a dim notion of his +inferiority. But his master or guardian chased the frown by exclaiming— + +“You’ll be the favourite among us, Hareton! She says you are a—What was +it? Well, something very flattering. Here! you go with her round the +farm. And behave like a gentleman, mind! Don’t use any bad words; and +don’t stare when the young lady is not looking at you, and be ready to +hide your face when she is; and, when you speak, say your words slowly, +and keep your hands out of your pockets. Be off, and entertain her as +nicely as you can.” + +He watched the couple walking past the window. Earnshaw had his +countenance completely averted from his companion. He seemed studying +the familiar landscape with a stranger’s and an artist’s interest. +Catherine took a sly look at him, expressing small admiration. She then +turned her attention to seeking out objects of amusement for herself, +and tripped merrily on, lilting a tune to supply the lack of +conversation. + +“I’ve tied his tongue,” observed Heathcliff. “He’ll not venture a +single syllable all the time! Nelly, you recollect me at his age—nay, +some years younger. Did I ever look so stupid: so ‘gaumless,’ as Joseph +calls it?” + +“Worse,” I replied, “because more sullen with it.” + +“I’ve a pleasure in him,” he continued, reflecting aloud. “He has +satisfied my expectations. If he were a born fool I should not enjoy it +half so much. But he’s no fool; and I can sympathise with all his +feelings, having felt them myself. I know what he suffers now, for +instance, exactly: it is merely a beginning of what he shall suffer, +though. And he’ll never be able to emerge from his bathos of coarseness +and ignorance. I’ve got him faster than his scoundrel of a father +secured me, and lower; for he takes a pride in his brutishness. I’ve +taught him to scorn everything extra-animal as silly and weak. Don’t +you think Hindley would be proud of his son, if he could see him? +almost as proud as I am of mine. But there’s this difference; one is +gold put to the use of paving-stones, and the other is tin polished to +ape a service of silver. _Mine_ has nothing valuable about it; yet I +shall have the merit of making it go as far as such poor stuff can go. +_His_ had first-rate qualities, and they are lost: rendered worse than +unavailing. _I_ have nothing to regret; _he_ would have more than any, +but I, are aware of. And the best of it is, Hareton is damnably fond of +me! You’ll own that I’ve outmatched Hindley there. If the dead villain +could rise from his grave to abuse me for his offspring’s wrongs, I +should have the fun of seeing the said offspring fight him back again, +indignant that he should dare to rail at the one friend he has in the +world!” + +Heathcliff chuckled a fiendish laugh at the idea. I made no reply, +because I saw that he expected none. Meantime, our young companion, who +sat too removed from us to hear what was said, began to evince symptoms +of uneasiness, probably repenting that he had denied himself the treat +of Catherine’s society for fear of a little fatigue. His father +remarked the restless glances wandering to the window, and the hand +irresolutely extended towards his cap. + +“Get up, you idle boy!” he exclaimed, with assumed heartiness. “Away +after them! they are just at the corner, by the stand of hives.” + +Linton gathered his energies, and left the hearth. The lattice was +open, and, as he stepped out, I heard Cathy inquiring of her unsociable +attendant what was that inscription over the door? Hareton stared up, +and scratched his head like a true clown. + +“It’s some damnable writing,” he answered. “I cannot read it.” + +“Can’t read it?” cried Catherine; “I can read it: it’s English. But I +want to know why it is there.” + +Linton giggled: the first appearance of mirth he had exhibited. + +“He does not know his letters,” he said to his cousin. “Could you +believe in the existence of such a colossal dunce?” + +“Is he all as he should be?” asked Miss Cathy, seriously; “or is he +simple: not right? I’ve questioned him twice now, and each time he +looked so stupid I think he does not understand me. I can hardly +understand _him_, I’m sure!” + +Linton repeated his laugh, and glanced at Hareton tauntingly; who +certainly did not seem quite clear of comprehension at that moment. + +“There’s nothing the matter but laziness; is there, Earnshaw?” he said. +“My cousin fancies you are an idiot. There you experience the +consequence of scorning ‘book-larning,’ as you would say. Have you +noticed, Catherine, his frightful Yorkshire pronunciation?” + +“Why, where the devil is the use on’t?” growled Hareton, more ready in +answering his daily companion. He was about to enlarge further, but the +two youngsters broke into a noisy fit of merriment: my giddy miss being +delighted to discover that she might turn his strange talk to matter of +amusement. + +“Where is the use of the devil in that sentence?” tittered Linton. +“Papa told you not to say any bad words, and you can’t open your mouth +without one. Do try to behave like a gentleman, now do!” + +“If thou weren’t more a lass than a lad, I’d fell thee this minute, I +would; pitiful lath of a crater!” retorted the angry boor, retreating, +while his face burnt with mingled rage and mortification; for he was +conscious of being insulted, and embarrassed how to resent it. + +Mr. Heathcliff having overheard the conversation, as well as I, smiled +when he saw him go; but immediately afterwards cast a look of singular +aversion on the flippant pair, who remained chattering in the doorway: +the boy finding animation enough while discussing Hareton’s faults and +deficiencies, and relating anecdotes of his goings on; and the girl +relishing his pert and spiteful sayings, without considering the +ill-nature they evinced. I began to dislike, more than to compassionate +Linton, and to excuse his father in some measure for holding him cheap. + +We stayed till afternoon: I could not tear Miss Cathy away sooner; but +happily my master had not quitted his apartment, and remained ignorant +of our prolonged absence. As we walked home, I would fain have +enlightened my charge on the characters of the people we had quitted: +but she got it into her head that I was prejudiced against them. + +“Aha!” she cried, “you take papa’s side, Ellen: you are partial I know; +or else you wouldn’t have cheated me so many years into the notion that +Linton lived a long way from here. I’m really extremely angry; only I’m +so pleased I can’t show it! But you must hold your tongue about my +uncle; he’s _my_ uncle, remember; and I’ll scold papa for quarrelling +with him.” + +And so she ran on, till I relinquished the endeavour to convince her of +her mistake. She did not mention the visit that night, because she did +not see Mr. Linton. Next day it all came out, sadly to my chagrin; and +still I was not altogether sorry: I thought the burden of directing and +warning would be more efficiently borne by him than me. But he was too +timid in giving satisfactory reasons for his wish that she should shun +connection with the household of the Heights, and Catherine liked good +reasons for every restraint that harassed her petted will. + +“Papa!” she exclaimed, after the morning’s salutations, “guess whom I +saw yesterday, in my walk on the moors. Ah, papa, you started! you’ve +not done right, have you, now? I saw—but listen, and you shall hear how +I found you out; and Ellen, who is in league with you, and yet +pretended to pity me so, when I kept hoping, and was always +disappointed about Linton’s coming back!” + +She gave a faithful account of her excursion and its consequences; and +my master, though he cast more than one reproachful look at me, said +nothing till she had concluded. Then he drew her to him, and asked if +she knew why he had concealed Linton’s near neighbourhood from her? +Could she think it was to deny her a pleasure that she might harmlessly +enjoy? + +“It was because you disliked Mr. Heathcliff,” she answered. + +“Then you believe I care more for my own feelings than yours, Cathy?” +he said. “No, it was not because I disliked Mr. Heathcliff, but because +Mr. Heathcliff dislikes me; and is a most diabolical man, delighting to +wrong and ruin those he hates, if they give him the slightest +opportunity. I knew that you could not keep up an acquaintance with +your cousin without being brought into contact with him; and I knew he +would detest you on my account; so for your own good, and nothing else, +I took precautions that you should not see Linton again. I meant to +explain this some time as you grew older, and I’m sorry I delayed it.” + +“But Mr. Heathcliff was quite cordial, papa,” observed Catherine, not +at all convinced; “and _he_ didn’t object to our seeing each other: he +said I might come to his house when I pleased; only I must not tell +you, because you had quarrelled with him, and would not forgive him for +marrying aunt Isabella. And you won’t. _You_ are the one to be blamed: +he is willing to let _us_ be friends, at least; Linton and I; and you +are not.” + +My master, perceiving that she would not take his word for her +uncle-in-law’s evil disposition, gave a hasty sketch of his conduct to +Isabella, and the manner in which Wuthering Heights became his +property. He could not bear to discourse long upon the topic; for +though he spoke little of it, he still felt the same horror and +detestation of his ancient enemy that had occupied his heart ever since +Mrs. Linton’s death. “She might have been living yet, if it had not +been for him!” was his constant bitter reflection; and, in his eyes, +Heathcliff seemed a murderer. Miss Cathy—conversant with no bad deeds +except her own slight acts of disobedience, injustice, and passion, +arising from hot temper and thoughtlessness, and repented of on the day +they were committed—was amazed at the blackness of spirit that could +brood on and cover revenge for years, and deliberately prosecute its +plans without a visitation of remorse. She appeared so deeply impressed +and shocked at this new view of human nature—excluded from all her +studies and all her ideas till now—that Mr. Edgar deemed it unnecessary +to pursue the subject. He merely added: “You will know hereafter, +darling, why I wish you to avoid his house and family; now return to +your old employments and amusements, and think no more about them.” + +Catherine kissed her father, and sat down quietly to her lessons for a +couple of hours, according to custom; then she accompanied him into the +grounds, and the whole day passed as usual: but in the evening, when +she had retired to her room, and I went to help her to undress, I found +her crying, on her knees by the bedside. + +“Oh, fie, silly child!” I exclaimed. “If you had any real griefs you’d +be ashamed to waste a tear on this little contrariety. You never had +one shadow of substantial sorrow, Miss Catherine. Suppose, for a +minute, that master and I were dead, and you were by yourself in the +world: how would you feel, then? Compare the present occasion with such +an affliction as that, and be thankful for the friends you have, +instead of coveting more.” + +“I’m not crying for myself, Ellen,” she answered, “it’s for him. He +expected to see me again to-morrow, and there he’ll be so disappointed: +and he’ll wait for me, and I sha’n’t come!” + +“Nonsense!” said I, “do you imagine he has thought as much of you as +you have of him? Hasn’t he Hareton for a companion? Not one in a +hundred would weep at losing a relation they had just seen twice, for +two afternoons. Linton will conjecture how it is, and trouble himself +no further about you.” + +“But may I not write a note to tell him why I cannot come?” she asked, +rising to her feet. “And just send those books I promised to lend him? +His books are not as nice as mine, and he wanted to have them +extremely, when I told him how interesting they were. May I not, +Ellen?” + +“No, indeed! no, indeed!” replied I with decision. “Then he would write +to you, and there’d never be an end of it. No, Miss Catherine, the +acquaintance must be dropped entirely: so papa expects, and I shall see +that it is done.” + +“But how can one little note—?” she recommenced, putting on an +imploring countenance. + +“Silence!” I interrupted. “We’ll not begin with your little notes. Get +into bed.” + +She threw at me a very naughty look, so naughty that I would not kiss +her good-night at first: I covered her up, and shut her door, in great +displeasure; but, repenting half-way, I returned softly, and lo! there +was Miss standing at the table with a bit of blank paper before her and +a pencil in her hand, which she guiltily slipped out of sight on my +entrance. + +“You’ll get nobody to take that, Catherine,” I said, “if you write it; +and at present I shall put out your candle.” + +I set the extinguisher on the flame, receiving as I did so a slap on my +hand and a petulant “cross thing!” I then quitted her again, and she +drew the bolt in one of her worst, most peevish humours. The letter was +finished and forwarded to its destination by a milk-fetcher who came +from the village; but that I didn’t learn till some time afterwards. +Weeks passed on, and Cathy recovered her temper; though she grew +wondrous fond of stealing off to corners by herself; and often, if I +came near her suddenly while reading, she would start and bend over the +book, evidently desirous to hide it; and I detected edges of loose +paper sticking out beyond the leaves. She also got a trick of coming +down early in the morning and lingering about the kitchen, as if she +were expecting the arrival of something; and she had a small drawer in +a cabinet in the library, which she would trifle over for hours, and +whose key she took special care to remove when she left it. + +One day, as she inspected this drawer, I observed that the playthings +and trinkets which recently formed its contents were transmuted into +bits of folded paper. My curiosity and suspicions were roused; I +determined to take a peep at her mysterious treasures; so, at night, as +soon as she and my master were safe upstairs, I searched, and readily +found among my house keys one that would fit the lock. Having opened, I +emptied the whole contents into my apron, and took them with me to +examine at leisure in my own chamber. Though I could not but suspect, I +was still surprised to discover that they were a mass of +correspondence—daily almost, it must have been—from Linton Heathcliff: +answers to documents forwarded by her. The earlier dated were +embarrassed and short; gradually, however, they expanded into copious +love-letters, foolish, as the age of the writer rendered natural, yet +with touches here and there which I thought were borrowed from a more +experienced source. Some of them struck me as singularly odd compounds +of ardour and flatness; commencing in strong feeling, and concluding in +the affected, wordy style that a schoolboy might use to a fancied, +incorporeal sweetheart. Whether they satisfied Cathy I don’t know; but +they appeared very worthless trash to me. After turning over as many as +I thought proper, I tied them in a handkerchief and set them aside, +relocking the vacant drawer. + +Following her habit, my young lady descended early, and visited the +kitchen: I watched her go to the door, on the arrival of a certain +little boy; and, while the dairymaid filled his can, she tucked +something into his jacket pocket, and plucked something out. I went +round by the garden, and laid wait for the messenger; who fought +valorously to defend his trust, and we spilt the milk between us; but I +succeeded in abstracting the epistle; and, threatening serious +consequences if he did not look sharp home, I remained under the wall +and perused Miss Cathy’s affectionate composition. It was more simple +and more eloquent than her cousin’s: very pretty and very silly. I +shook my head, and went meditating into the house. The day being wet, +she could not divert herself with rambling about the park; so, at the +conclusion of her morning studies, she resorted to the solace of the +drawer. Her father sat reading at the table; and I, on purpose, had +sought a bit of work in some unripped fringes of the window-curtain, +keeping my eye steadily fixed on her proceedings. Never did any bird +flying back to a plundered nest, which it had left brimful of chirping +young ones, express more complete despair, in its anguished cries and +flutterings, than she by her single “Oh!” and the change that +transfigured her late happy countenance. Mr. Linton looked up. + +“What is the matter, love? Have you hurt yourself?” he said. + +His tone and look assured her _he_ had not been the discoverer of the +hoard. + +“No, papa!” she gasped. “Ellen! Ellen! come upstairs—I’m sick!” + +I obeyed her summons, and accompanied her out. + +“Oh, Ellen! you have got them,” she commenced immediately, dropping on +her knees, when we were enclosed alone. “Oh, give them to me, and I’ll +never, never do so again! Don’t tell papa. You have not told papa, +Ellen? say you have not? I’ve been exceedingly naughty, but I won’t do +it any more!” + +With a grave severity in my manner I bade her stand up. + +“So,” I exclaimed, “Miss Catherine, you are tolerably far on, it seems: +you may well be ashamed of them! A fine bundle of trash you study in +your leisure hours, to be sure: why, it’s good enough to be printed! +And what do you suppose the master will think when I display it before +him? I hav’n’t shown it yet, but you needn’t imagine I shall keep your +ridiculous secrets. For shame! and you must have led the way in writing +such absurdities: he would not have thought of beginning, I’m certain.” + +“I didn’t! I didn’t!” sobbed Cathy, fit to break her heart. “I didn’t +once think of loving him till—” + +“_Loving_!” cried I, as scornfully as I could utter the word. +“_Loving_! Did anybody ever hear the like! I might just as well talk of +loving the miller who comes once a year to buy our corn. Pretty loving, +indeed! and both times together you have seen Linton hardly four hours +in your life! Now here is the babyish trash. I’m going with it to the +library; and we’ll see what your father says to such _loving_.” + +She sprang at her precious epistles, but I held them above my head; and +then she poured out further frantic entreaties that I would burn +them—do anything rather than show them. And being really fully as much +inclined to laugh as scold—for I esteemed it all girlish vanity—I at +length relented in a measure, and asked,—“If I consent to burn them, +will you promise faithfully neither to send nor receive a letter again, +nor a book (for I perceive you have sent him books), nor locks of hair, +nor rings, nor playthings?” + +“We don’t send playthings,” cried Catherine, her pride overcoming her +shame. + +“Nor anything at all, then, my lady?” I said. “Unless you will, here I +go.” + +“I promise, Ellen!” she cried, catching my dress. “Oh, put them in the +fire, do, do!” + +But when I proceeded to open a place with the poker the sacrifice was +too painful to be borne. She earnestly supplicated that I would spare +her one or two. + +“One or two, Ellen, to keep for Linton’s sake!” + +I unknotted the handkerchief, and commenced dropping them in from an +angle, and the flame curled up the chimney. + +“I will have one, you cruel wretch!” she screamed, darting her hand +into the fire, and drawing forth some half-consumed fragments, at the +expense of her fingers. + +“Very well—and I will have some to exhibit to papa!” I answered, +shaking back the rest into the bundle, and turning anew to the door. + +She emptied her blackened pieces into the flames, and motioned me to +finish the immolation. It was done; I stirred up the ashes, and +interred them under a shovelful of coals; and she mutely, and with a +sense of intense injury, retired to her private apartment. I descended +to tell my master that the young lady’s qualm of sickness was almost +gone, but I judged it best for her to lie down a while. She wouldn’t +dine; but she reappeared at tea, pale, and red about the eyes, and +marvellously subdued in outward aspect. Next morning I answered the +letter by a slip of paper, inscribed, “Master Heathcliff is requested +to send no more notes to Miss Linton, as she will not receive them.” +And, thenceforth, the little boy came with vacant pockets. + + + + +CHAPTER XXII + + +Summer drew to an end, and early autumn: it was past Michaelmas, but +the harvest was late that year, and a few of our fields were still +uncleared. Mr. Linton and his daughter would frequently walk out among +the reapers; at the carrying of the last sheaves they stayed till dusk, +and the evening happening to be chill and damp, my master caught a bad +cold, that settled obstinately on his lungs, and confined him indoors +throughout the whole of the winter, nearly without intermission. + +Poor Cathy, frightened from her little romance, had been considerably +sadder and duller since its abandonment; and her father insisted on her +reading less, and taking more exercise. She had his companionship no +longer; I esteemed it a duty to supply its lack, as much as possible, +with mine: an inefficient substitute; for I could only spare two or +three hours, from my numerous diurnal occupations, to follow her +footsteps, and then my society was obviously less desirable than his. + +On an afternoon in October, or the beginning of November—a fresh watery +afternoon, when the turf and paths were rustling with moist, withered +leaves, and the cold blue sky was half hidden by clouds—dark grey +streamers, rapidly mounting from the west, and boding abundant rain—I +requested my young lady to forego her ramble, because I was certain of +showers. She refused; and I unwillingly donned a cloak, and took my +umbrella to accompany her on a stroll to the bottom of the park: a +formal walk which she generally affected if low-spirited—and that she +invariably was when Mr. Edgar had been worse than ordinary, a thing +never known from his confession, but guessed both by her and me from +his increased silence and the melancholy of his countenance. She went +sadly on: there was no running or bounding now, though the chill wind +might well have tempted her to race. And often, from the side of my +eye, I could detect her raising a hand, and brushing something off her +cheek. I gazed round for a means of diverting her thoughts. On one side +of the road rose a high, rough bank, where hazels and stunted oaks, +with their roots half exposed, held uncertain tenure: the soil was too +loose for the latter; and strong winds had blown some nearly +horizontal. In summer Miss Catherine delighted to climb along these +trunks, and sit in the branches, swinging twenty feet above the ground; +and I, pleased with her agility and her light, childish heart, still +considered it proper to scold every time I caught her at such an +elevation, but so that she knew there was no necessity for descending. +From dinner to tea she would lie in her breeze-rocked cradle, doing +nothing except singing old songs—my nursery lore—to herself, or +watching the birds, joint tenants, feed and entice their young ones to +fly: or nestling with closed lids, half thinking, half dreaming, +happier than words can express. + +“Look, Miss!” I exclaimed, pointing to a nook under the roots of one +twisted tree. “Winter is not here yet. There’s a little flower up +yonder, the last bud from the multitude of bluebells that clouded those +turf steps in July with a lilac mist. Will you clamber up, and pluck it +to show to papa?” + +Cathy stared a long time at the lonely blossom trembling in its earthy +shelter, and replied, at length—“No, I’ll not touch it: but it looks +melancholy, does it not, Ellen?” + +“Yes,” I observed, “about as starved and sackless as you: your cheeks +are bloodless; let us take hold of hands and run. You’re so low, I +daresay I shall keep up with you.” + +“No,” she repeated, and continued sauntering on, pausing at intervals +to muse over a bit of moss, or a tuft of blanched grass, or a fungus +spreading its bright orange among the heaps of brown foliage; and, ever +and anon, her hand was lifted to her averted face. + +“Catherine, why are you crying, love?” I asked, approaching and putting +my arm over her shoulder. “You mustn’t cry because papa has a cold; be +thankful it is nothing worse.” + +She now put no further restraint on her tears; her breath was stifled +by sobs. + +“Oh, it _will_ be something worse,” she said. “And what shall I do when +papa and you leave me, and I am by myself? I can’t forget your words, +Ellen; they are always in my ear. How life will be changed, how dreary +the world will be, when papa and you are dead.” + +“None can tell whether you won’t die before us,” I replied. “It’s wrong +to anticipate evil. We’ll hope there are years and years to come before +any of us go: master is young, and I am strong, and hardly forty-five. +My mother lived till eighty, a canty dame to the last. And suppose Mr. +Linton were spared till he saw sixty, that would be more years than you +have counted, Miss. And would it not be foolish to mourn a calamity +above twenty years beforehand?” + +“But Aunt Isabella was younger than papa,” she remarked, gazing up with +timid hope to seek further consolation. + +“Aunt Isabella had not you and me to nurse her,” I replied. “She wasn’t +as happy as Master: she hadn’t as much to live for. All you need do, is +to wait well on your father, and cheer him by letting him see you +cheerful; and avoid giving him anxiety on any subject: mind that, +Cathy! I’ll not disguise but you might kill him if you were wild and +reckless, and cherished a foolish, fanciful affection for the son of a +person who would be glad to have him in his grave; and allowed him to +discover that you fretted over the separation he has judged it +expedient to make.” + +“I fret about nothing on earth except papa’s illness,” answered my +companion. “I care for nothing in comparison with papa. And I’ll +never—never—oh, never, while I have my senses, do an act or say a word +to vex him. I love him better than myself, Ellen; and I know it by +this: I pray every night that I may live after him; because I would +rather be miserable than that he should be: that proves I love him +better than myself.” + +“Good words,” I replied. “But deeds must prove it also; and after he is +well, remember you don’t forget resolutions formed in the hour of +fear.” + +As we talked, we neared a door that opened on the road; and my young +lady, lightening into sunshine again, climbed up and seated herself on +the top of the wall, reaching over to gather some hips that bloomed +scarlet on the summit branches of the wild-rose trees shadowing the +highway side: the lower fruit had disappeared, but only birds could +touch the upper, except from Cathy’s present station. In stretching to +pull them, her hat fell off; and as the door was locked, she proposed +scrambling down to recover it. I bid her be cautious lest she got a +fall, and she nimbly disappeared. But the return was no such easy +matter: the stones were smooth and neatly cemented, and the rosebushes +and blackberry stragglers could yield no assistance in re-ascending. +I, like a fool, didn’t recollect that, till I heard her laughing and +exclaiming—“Ellen! you’ll have to fetch the key, or else I must run +round to the porter’s lodge. I can’t scale the ramparts on this side!” + +“Stay where you are,” I answered; “I have my bundle of keys in my +pocket: perhaps I may manage to open it; if not, I’ll go.” + +Catherine amused herself with dancing to and fro before the door, while +I tried all the large keys in succession. I had applied the last, and +found that none would do; so, repeating my desire that she would remain +there, I was about to hurry home as fast as I could, when an +approaching sound arrested me. It was the trot of a horse; Cathy’s +dance stopped also. + +“Who is that?” I whispered. + +“Ellen, I wish you could open the door,” whispered back my companion, +anxiously. + +“Ho, Miss Linton!” cried a deep voice (the rider’s), “I’m glad to meet +you. Don’t be in haste to enter, for I have an explanation to ask and +obtain.” + +“I sha’n’t speak to you, Mr. Heathcliff,” answered Catherine. “Papa +says you are a wicked man, and you hate both him and me; and Ellen says +the same.” + +“That is nothing to the purpose,” said Heathcliff. (He it was.) “I +don’t hate my son, I suppose; and it is concerning him that I demand +your attention. Yes; you have cause to blush. Two or three months +since, were you not in the habit of writing to Linton? making love in +play, eh? You deserved, both of you, flogging for that! You especially, +the elder; and less sensitive, as it turns out. I’ve got your letters, +and if you give me any pertness I’ll send them to your father. I +presume you grew weary of the amusement and dropped it, didn’t you? +Well, you dropped Linton with it into a Slough of Despond. He was in +earnest: in love, really. As true as I live, he’s dying for you; +breaking his heart at your fickleness: not figuratively, but actually. +Though Hareton has made him a standing jest for six weeks, and I have +used more serious measures, and attempted to frighten him out of his +idiocy, he gets worse daily; and he’ll be under the sod before summer, +unless you restore him!” + +“How can you lie so glaringly to the poor child?” I called from the +inside. “Pray ride on! How can you deliberately get up such paltry +falsehoods? Miss Cathy, I’ll knock the lock off with a stone: you won’t +believe that vile nonsense. You can feel in yourself it is impossible +that a person should die for love of a stranger.” + +“I was not aware there were eavesdroppers,” muttered the detected +villain. “Worthy Mrs. Dean, I like you, but I don’t like your +double-dealing,” he added aloud. “How could _you_ lie so glaringly as +to affirm I hated the ‘poor child’? and invent bugbear stories to +terrify her from my door-stones? Catherine Linton (the very name warms +me), my bonny lass, I shall be from home all this week; go and see if I +have not spoken truth: do, there’s a darling! Just imagine your father +in my place, and Linton in yours; then think how you would value your +careless lover if he refused to stir a step to comfort you, when your +father himself entreated him; and don’t, from pure stupidity, fall into +the same error. I swear, on my salvation, he’s going to his grave, and +none but you can save him!” + +The lock gave way and I issued out. + +“I swear Linton is dying,” repeated Heathcliff, looking hard at me. +“And grief and disappointment are hastening his death. Nelly, if you +won’t let her go, you can walk over yourself. But I shall not return +till this time next week; and I think your master himself would +scarcely object to her visiting her cousin.” + +“Come in,” said I, taking Cathy by the arm and half forcing her to +re-enter; for she lingered, viewing with troubled eyes the features of +the speaker, too stern to express his inward deceit. + +He pushed his horse close, and, bending down, observed— + +“Miss Catherine, I’ll own to you that I have little patience with +Linton; and Hareton and Joseph have less. I’ll own that he’s with a +harsh set. He pines for kindness, as well as love; and a kind word from +you would be his best medicine. Don’t mind Mrs. Dean’s cruel cautions; +but be generous, and contrive to see him. He dreams of you day and +night, and cannot be persuaded that you don’t hate him, since you +neither write nor call.” + +I closed the door, and rolled a stone to assist the loosened lock in +holding it; and spreading my umbrella, I drew my charge underneath: for +the rain began to drive through the moaning branches of the trees, and +warned us to avoid delay. Our hurry prevented any comment on the +encounter with Heathcliff, as we stretched towards home; but I divined +instinctively that Catherine’s heart was clouded now in double +darkness. Her features were so sad, they did not seem hers: she +evidently regarded what she had heard as every syllable true. + +The master had retired to rest before we came in. Cathy stole to his +room to inquire how he was; he had fallen asleep. She returned, and +asked me to sit with her in the library. We took our tea together; and +afterwards she lay down on the rug, and told me not to talk, for she +was weary. I got a book, and pretended to read. As soon as she supposed +me absorbed in my occupation, she recommenced her silent weeping: it +appeared, at present, her favourite diversion. I suffered her to enjoy +it a while; then I expostulated: deriding and ridiculing all Mr. +Heathcliff’s assertions about his son, as if I were certain she would +coincide. Alas! I hadn’t skill to counteract the effect his account had +produced: it was just what he intended. + +“You may be right, Ellen,” she answered; “but I shall never feel at +ease till I know. And I must tell Linton it is not my fault that I +don’t write, and convince him that I shall not change.” + +What use were anger and protestations against her silly credulity? We +parted that night—hostile; but next day beheld me on the road to +Wuthering Heights, by the side of my wilful young mistress’s pony. I +couldn’t bear to witness her sorrow: to see her pale, dejected +countenance, and heavy eyes: and I yielded, in the faint hope that +Linton himself might prove, by his reception of us, how little of the +tale was founded on fact. + + + + +CHAPTER XXIII + + +The rainy night had ushered in a misty morning—half frost, half +drizzle—and temporary brooks crossed our path—gurgling from the +uplands. My feet were thoroughly wetted; I was cross and low; exactly +the humour suited for making the most of these disagreeable things. We +entered the farm-house by the kitchen way, to ascertain whether Mr. +Heathcliff were really absent: because I put slight faith in his own +affirmation. + +Joseph seemed sitting in a sort of elysium alone, beside a roaring +fire; a quart of ale on the table near him, bristling with large pieces +of toasted oat-cake; and his black, short pipe in his mouth. Catherine +ran to the hearth to warm herself. I asked if the master was in? My +question remained so long unanswered, that I thought the old man had +grown deaf, and repeated it louder. + +“Na—ay!” he snarled, or rather screamed through his nose. “Na—ay! yah +muh goa back whear yah coom frough.” + +“Joseph!” cried a peevish voice, simultaneously with me, from the inner +room. “How often am I to call you? There are only a few red ashes now. +Joseph! come this moment.” + +Vigorous puffs, and a resolute stare into the grate, declared he had no +ear for this appeal. The housekeeper and Hareton were invisible; one +gone on an errand, and the other at his work, probably. We knew +Linton’s tones, and entered. + +“Oh, I hope you’ll die in a garret, starved to death!” said the boy, +mistaking our approach for that of his negligent attendant. + +He stopped on observing his error: his cousin flew to him. + +“Is that you, Miss Linton?” he said, raising his head from the arm of +the great chair, in which he reclined. “No—don’t kiss me: it takes my +breath. Dear me! Papa said you would call,” continued he, after +recovering a little from Catherine’s embrace; while she stood by +looking very contrite. “Will you shut the door, if you please? you left +it open; and those—those _detestable_ creatures won’t bring coals to +the fire. It’s so cold!” + +I stirred up the cinders, and fetched a scuttleful myself. The invalid +complained of being covered with ashes; but he had a tiresome cough, +and looked feverish and ill, so I did not rebuke his temper. + +“Well, Linton,” murmured Catherine, when his corrugated brow relaxed, +“are you glad to see me? Can I do you any good?” + +“Why didn’t you come before?” he asked. “You should have come, instead +of writing. It tired me dreadfully writing those long letters. I’d far +rather have talked to you. Now, I can neither bear to talk, nor +anything else. I wonder where Zillah is! Will you” (looking at me) +“step into the kitchen and see?” + +I had received no thanks for my other service; and being unwilling to +run to and fro at his behest, I replied— + +“Nobody is out there but Joseph.” + +“I want to drink,” he exclaimed fretfully, turning away. “Zillah is +constantly gadding off to Gimmerton since papa went: it’s miserable! +And I’m obliged to come down here—they resolved never to hear me +upstairs.” + +“Is your father attentive to you, Master Heathcliff?” I asked, +perceiving Catherine to be checked in her friendly advances. + +“Attentive? He makes _them_ a little more attentive at least,” he +cried. “The wretches! Do you know, Miss Linton, that brute Hareton +laughs at me! I hate him! indeed, I hate them all: they are odious +beings.” + +Cathy began searching for some water; she lighted on a pitcher in the +dresser, filled a tumbler, and brought it. He bid her add a spoonful of +wine from a bottle on the table; and having swallowed a small portion, +appeared more tranquil, and said she was very kind. + +“And are you glad to see me?” asked she, reiterating her former +question, and pleased to detect the faint dawn of a smile. + +“Yes, I am. It’s something new to hear a voice like yours!” he replied. +“But I have been vexed, because you wouldn’t come. And papa swore it +was owing to me: he called me a pitiful, shuffling, worthless thing; +and said you despised me; and if he had been in my place, he would be +more the master of the Grange than your father by this time. But you +don’t despise me, do you, Miss—?” + +“I wish you would say Catherine, or Cathy,” interrupted my young lady. +“Despise you? No! Next to papa and Ellen, I love you better than +anybody living. I don’t love Mr. Heathcliff, though; and I dare not +come when he returns: will he stay away many days?” + +“Not many,” answered Linton; “but he goes on to the moors frequently, +since the shooting season commenced; and you might spend an hour or two +with me in his absence. Do say you will. I think I should not be +peevish with you: you’d not provoke me, and you’d always be ready to +help me, wouldn’t you?” + +“Yes,” said Catherine, stroking his long soft hair, “if I could only +get papa’s consent, I’d spend half my time with you. Pretty Linton! I +wish you were my brother.” + +“And then you would like me as well as your father?” observed he, more +cheerfully. “But papa says you would love me better than him and all +the world, if you were my wife; so I’d rather you were that.” + +“No, I should never love anybody better than papa,” she returned +gravely. “And people hate their wives, sometimes; but not their sisters +and brothers: and if you were the latter, you would live with us, and +papa would be as fond of you as he is of me.” + +Linton denied that people ever hated their wives; but Cathy affirmed +they did, and, in her wisdom, instanced his own father’s aversion to +her aunt. I endeavoured to stop her thoughtless tongue. I couldn’t +succeed till everything she knew was out. Master Heathcliff, much +irritated, asserted her relation was false. + +“Papa told me; and papa does not tell falsehoods,” she answered pertly. + +“_My_ papa scorns yours!” cried Linton. “He calls him a sneaking fool.” + +“Yours is a wicked man,” retorted Catherine; “and you are very naughty +to dare to repeat what he says. He must be wicked to have made Aunt +Isabella leave him as she did.” + +“She didn’t leave him,” said the boy; “you sha’n’t contradict me.” + +“She did,” cried my young lady. + +“Well, I’ll tell _you_ something!” said Linton. “Your mother hated your +father: now then.” + +“Oh!” exclaimed Catherine, too enraged to continue. + +“And she loved mine,” added he. + +“You little liar! I hate you now!” she panted, and her face grew red +with passion. + +“She did! she did!” sang Linton, sinking into the recess of his chair, +and leaning back his head to enjoy the agitation of the other +disputant, who stood behind. + +“Hush, Master Heathcliff!” I said; “that’s your father’s tale, too, I +suppose.” + +“It isn’t: you hold your tongue!” he answered. “She did, she did, +Catherine! she did, she did!” + +Cathy, beside herself, gave the chair a violent push, and caused him to +fall against one arm. He was immediately seized by a suffocating cough +that soon ended his triumph. It lasted so long that it frightened even +me. As to his cousin, she wept with all her might, aghast at the +mischief she had done: though she said nothing. I held him till the fit +exhausted itself. Then he thrust me away, and leant his head down +silently. Catherine quelled her lamentations also, took a seat +opposite, and looked solemnly into the fire. + +“How do you feel now, Master Heathcliff?” I inquired, after waiting ten +minutes. + +“I wish _she_ felt as I do,” he replied: “spiteful, cruel thing! +Hareton never touches me: he never struck me in his life. And I was +better to-day: and there—” his voice died in a whimper. + +“_I_ didn’t strike you!” muttered Cathy, chewing her lip to prevent +another burst of emotion. + +He sighed and moaned like one under great suffering, and kept it up for +a quarter of an hour; on purpose to distress his cousin apparently, for +whenever he caught a stifled sob from her he put renewed pain and +pathos into the inflexions of his voice. + +“I’m sorry I hurt you, Linton,” she said at length, racked beyond +endurance. “But _I_ couldn’t have been hurt by that little push, and I +had no idea that you could, either: you’re not much, are you, Linton? +Don’t let me go home thinking I’ve done you harm. Answer! speak to me.” + +“I can’t speak to you,” he murmured; “you’ve hurt me so that I shall +lie awake all night choking with this cough. If you had it you’d know +what it was; but _you’ll_ be comfortably asleep while I’m in agony, and +nobody near me. I wonder how you would like to pass those fearful +nights!” And he began to wail aloud, for very pity of himself. + +“Since you are in the habit of passing dreadful nights,” I said, “it +won’t be Miss who spoils your ease: you’d be the same had she never +come. However, she shall not disturb you again; and perhaps you’ll get +quieter when we leave you.” + +“Must I go?” asked Catherine dolefully, bending over him. “Do you want +me to go, Linton?” + +“You can’t alter what you’ve done,” he replied pettishly, shrinking +from her, “unless you alter it for the worse by teasing me into a +fever.” + +“Well, then, I must go?” she repeated. + +“Let me alone, at least,” said he; “I can’t bear your talking.” + +She lingered, and resisted my persuasions to departure a tiresome +while; but as he neither looked up nor spoke, she finally made a +movement to the door, and I followed. We were recalled by a scream. +Linton had slid from his seat on to the hearthstone, and lay writhing +in the mere perverseness of an indulged plague of a child, determined +to be as grievous and harassing as it can. I thoroughly gauged his +disposition from his behaviour, and saw at once it would be folly to +attempt humouring him. Not so my companion: she ran back in terror, +knelt down, and cried, and soothed, and entreated, till he grew quiet +from lack of breath: by no means from compunction at distressing her. + +“I shall lift him on to the settle,” I said, “and he may roll about as +he pleases: we can’t stop to watch him. I hope you are satisfied, Miss +Cathy, that _you_ are not the person to benefit him; and that his +condition of health is not occasioned by attachment to you. Now, then, +there he is! Come away: as soon as he knows there is nobody by to care +for his nonsense, he’ll be glad to lie still.” + +She placed a cushion under his head, and offered him some water; he +rejected the latter, and tossed uneasily on the former, as if it were a +stone or a block of wood. She tried to put it more comfortably. + +“I can’t do with that,” he said; “it’s not high enough.” + +Catherine brought another to lay above it. + +“That’s _too_ high,” murmured the provoking thing. + +“How must I arrange it, then?” she asked despairingly. + +He twined himself up to her, as she half knelt by the settle, and +converted her shoulder into a support. + +“No, that won’t do,” I said. “You’ll be content with the cushion, +Master Heathcliff. Miss has wasted too much time on you already: we +cannot remain five minutes longer.” + +“Yes, yes, we can!” replied Cathy. “He’s good and patient now. He’s +beginning to think I shall have far greater misery than he will +to-night, if I believe he is the worse for my visit: and then I dare +not come again. Tell the truth about it, Linton; for I mustn’t come, if +I have hurt you.” + +“You must come, to cure me,” he answered. “You ought to come, because +you have hurt me: you know you have extremely! I was not as ill when +you entered as I am at present—was I?” + +“But you’ve made yourself ill by crying and being in a passion.—I +didn’t do it all,” said his cousin. “However, we’ll be friends now. And +you want me: you would wish to see me sometimes, really?” + +“I told you I did,” he replied impatiently. “Sit on the settle and let +me lean on your knee. That’s as mamma used to do, whole afternoons +together. Sit quite still and don’t talk: but you may sing a song, if +you can sing; or you may say a nice long interesting ballad—one of +those you promised to teach me; or a story. I’d rather have a ballad, +though: begin.” + +Catherine repeated the longest she could remember. The employment +pleased both mightily. Linton would have another, and after that +another, notwithstanding my strenuous objections; and so they went on +until the clock struck twelve, and we heard Hareton in the court, +returning for his dinner. + +“And to-morrow, Catherine, will you be here to-morrow?” asked young +Heathcliff, holding her frock as she rose reluctantly. + +“No,” I answered, “nor next day neither.” She, however, gave a +different response evidently, for his forehead cleared as she stooped +and whispered in his ear. + +“You won’t go to-morrow, recollect, Miss!” I commenced, when we were +out of the house. “You are not dreaming of it, are you?” + +She smiled. + +“Oh, I’ll take good care,” I continued: “I’ll have that lock mended, +and you can escape by no way else.” + +“I can get over the wall,” she said laughing. “The Grange is not a +prison, Ellen, and you are not my gaoler. And besides, I’m almost +seventeen: I’m a woman. And I’m certain Linton would recover quickly if +he had me to look after him. I’m older than he is, you know, and wiser: +less childish, am I not? And he’ll soon do as I direct him, with some +slight coaxing. He’s a pretty little darling when he’s good. I’d make +such a pet of him, if he were mine. We should never quarrel, should we, +after we were used to each other? Don’t you like him, Ellen?” + +“Like him!” I exclaimed. “The worst-tempered bit of a sickly slip that +ever struggled into its teens. Happily, as Mr. Heathcliff conjectured, +he’ll not win twenty. I doubt whether he’ll see spring, indeed. And +small loss to his family whenever he drops off. And lucky it is for us +that his father took him: the kinder he was treated, the more tedious +and selfish he’d be. I’m glad you have no chance of having him for a +husband, Miss Catherine.” + +My companion waxed serious at hearing this speech. To speak of his +death so regardlessly wounded her feelings. + +“He’s younger than I,” she answered, after a protracted pause of +meditation, “and he ought to live the longest: he will—he must live as +long as I do. He’s as strong now as when he first came into the north; +I’m positive of that. It’s only a cold that ails him, the same as papa +has. You say papa will get better, and why shouldn’t he?” + +“Well, well,” I cried, “after all, we needn’t trouble ourselves; for +listen, Miss,—and mind, I’ll keep my word,—if you attempt going to +Wuthering Heights again, with or without me, I shall inform Mr. Linton, +and, unless he allow it, the intimacy with your cousin must not be +revived.” + +“It has been revived,” muttered Cathy, sulkily. + +“Must not be continued, then,” I said. + +“We’ll see,” was her reply, and she set off at a gallop, leaving me to +toil in the rear. + +We both reached home before our dinner-time; my master supposed we had +been wandering through the park, and therefore he demanded no +explanation of our absence. As soon as I entered I hastened to change +my soaked shoes and stockings; but sitting such a while at the Heights +had done the mischief. On the succeeding morning I was laid up, and +during three weeks I remained incapacitated for attending to my duties: +a calamity never experienced prior to that period, and never, I am +thankful to say, since. + +My little mistress behaved like an angel in coming to wait on me, and +cheer my solitude; the confinement brought me exceedingly low. It is +wearisome, to a stirring active body: but few have slighter reasons for +complaint than I had. The moment Catherine left Mr. Linton’s room she +appeared at my bedside. Her day was divided between us; no amusement +usurped a minute: she neglected her meals, her studies, and her play; +and she was the fondest nurse that ever watched. She must have had a +warm heart, when she loved her father so, to give so much to me. I said +her days were divided between us; but the master retired early, and I +generally needed nothing after six o’clock, thus the evening was her +own. Poor thing! I never considered what she did with herself after +tea. And though frequently, when she looked in to bid me good-night, I +remarked a fresh colour in her cheeks and a pinkness over her slender +fingers, instead of fancying the hue borrowed from a cold ride across +the moors, I laid it to the charge of a hot fire in the library. + + + + +CHAPTER XXIV + + +At the close of three weeks I was able to quit my chamber and move +about the house. And on the first occasion of my sitting up in the +evening I asked Catherine to read to me, because my eyes were weak. We +were in the library, the master having gone to bed: she consented, +rather unwillingly, I fancied; and imagining my sort of books did not +suit her, I bid her please herself in the choice of what she perused. +She selected one of her own favourites, and got forward steadily about +an hour; then came frequent questions. + +“Ellen, are not you tired? Hadn’t you better lie down now? You’ll be +sick, keeping up so long, Ellen.” + +“No, no, dear, I’m not tired,” I returned, continually. + +Perceiving me immovable, she essayed another method of showing her +disrelish for her occupation. It changed to yawning, and stretching, +and— + +“Ellen, I’m tired.” + +“Give over then and talk,” I answered. + +That was worse: she fretted and sighed, and looked at her watch till +eight, and finally went to her room, completely overdone with sleep; +judging by her peevish, heavy look, and the constant rubbing she +inflicted on her eyes. The following night she seemed more impatient +still; and on the third from recovering my company she complained of a +headache, and left me. I thought her conduct odd; and having remained +alone a long while, I resolved on going and inquiring whether she were +better, and asking her to come and lie on the sofa, instead of upstairs +in the dark. No Catherine could I discover upstairs, and none below. +The servants affirmed they had not seen her. I listened at Mr. Edgar’s +door; all was silence. I returned to her apartment, extinguished my +candle, and seated myself in the window. + +The moon shone bright; a sprinkling of snow covered the ground, and I +reflected that she might, possibly, have taken it into her head to walk +about the garden, for refreshment. I did detect a figure creeping along +the inner fence of the park; but it was not my young mistress: on its +emerging into the light, I recognised one of the grooms. He stood a +considerable period, viewing the carriage-road through the grounds; +then started off at a brisk pace, as if he had detected something, and +reappeared presently, leading Miss’s pony; and there she was, just +dismounted, and walking by its side. The man took his charge stealthily +across the grass towards the stable. Cathy entered by the +casement-window of the drawing-room, and glided noiselessly up to where +I awaited her. She put the door gently to, slipped off her snowy +shoes, untied her hat, and was proceeding, unconscious of my espionage, +to lay aside her mantle, when I suddenly rose and revealed myself. The +surprise petrified her an instant: she uttered an inarticulate +exclamation, and stood fixed. + +“My dear Miss Catherine,” I began, too vividly impressed by her recent +kindness to break into a scold, “where have you been riding out at this +hour? And why should you try to deceive me by telling a tale? Where +have you been? Speak!” + +“To the bottom of the park,” she stammered. “I didn’t tell a tale.” + +“And nowhere else?” I demanded. + +“No,” was the muttered reply. + +“Oh, Catherine!” I cried, sorrowfully. “You know you have been doing +wrong, or you wouldn’t be driven to uttering an untruth to me. That +does grieve me. I’d rather be three months ill, than hear you frame a +deliberate lie.” + +She sprang forward, and bursting into tears, threw her arms round my +neck. + +“Well, Ellen, I’m so afraid of you being angry,” she said. “Promise not +to be angry, and you shall know the very truth: I hate to hide it.” + +We sat down in the window-seat; I assured her I would not scold, +whatever her secret might be, and I guessed it, of course; so she +commenced— + +“I’ve been to Wuthering Heights, Ellen, and I’ve never missed going a +day since you fell ill; except thrice before, and twice after you left +your room. I gave Michael books and pictures to prepare Minny every +evening, and to put her back in the stable: you mustn’t scold _him_ +either, mind. I was at the Heights by half-past six, and generally +stayed till half-past eight, and then galloped home. It was not to +amuse myself that I went: I was often wretched all the time. Now and +then I was happy: once in a week perhaps. At first, I expected there +would be sad work persuading you to let me keep my word to Linton: for +I had engaged to call again next day, when we quitted him; but, as you +stayed upstairs on the morrow, I escaped that trouble. While Michael +was refastening the lock of the park door in the afternoon, I got +possession of the key, and told him how my cousin wished me to visit +him, because he was sick, and couldn’t come to the Grange; and how papa +would object to my going: and then I negotiated with him about the +pony. He is fond of reading, and he thinks of leaving soon to get +married; so he offered, if I would lend him books out of the library, +to do what I wished: but I preferred giving him my own, and that +satisfied him better. + +“On my second visit Linton seemed in lively spirits; and Zillah (that +is their housekeeper) made us a clean room and a good fire, and told us +that, as Joseph was out at a prayer-meeting and Hareton Earnshaw was +off with his dogs—robbing our woods of pheasants, as I heard +afterwards—we might do what we liked. She brought me some warm wine and +gingerbread, and appeared exceedingly good-natured; and Linton sat in +the arm-chair, and I in the little rocking chair on the hearth-stone, +and we laughed and talked so merrily, and found so much to say: we +planned where we would go, and what we would do in summer. I needn’t +repeat that, because you would call it silly. + +“One time, however, we were near quarrelling. He said the pleasantest +manner of spending a hot July day was lying from morning till evening +on a bank of heath in the middle of the moors, with the bees humming +dreamily about among the bloom, and the larks singing high up overhead, +and the blue sky and bright sun shining steadily and cloudlessly. That +was his most perfect idea of heaven’s happiness: mine was rocking in a +rustling green tree, with a west wind blowing, and bright white clouds +flitting rapidly above; and not only larks, but throstles, and +blackbirds, and linnets, and cuckoos pouring out music on every side, +and the moors seen at a distance, broken into cool dusky dells; but +close by great swells of long grass undulating in waves to the breeze; +and woods and sounding water, and the whole world awake and wild with +joy. He wanted all to lie in an ecstasy of peace; I wanted all to +sparkle and dance in a glorious jubilee. I said his heaven would be +only half alive; and he said mine would be drunk: I said I should fall +asleep in his; and he said he could not breathe in mine, and began to +grow very snappish. At last, we agreed to try both, as soon as the +right weather came; and then we kissed each other and were friends. + +“After sitting still an hour, I looked at the great room with its +smooth uncarpeted floor, and thought how nice it would be to play in, +if we removed the table; and I asked Linton to call Zillah in to help +us, and we’d have a game at blindman’s-buff; she should try to catch +us: you used to, you know, Ellen. He wouldn’t: there was no pleasure in +it, he said; but he consented to play at ball with me. We found two in +a cupboard, among a heap of old toys, tops, and hoops, and battledores +and shuttlecocks. One was marked C., and the other H.; I wished to have +the C., because that stood for Catherine, and the H. might be for +Heathcliff, his name; but the bran came out of H., and Linton didn’t +like it. I beat him constantly; and he got cross again, and coughed, +and returned to his chair. That night, though, he easily recovered his +good humour: he was charmed with two or three pretty songs—_your_ +songs, Ellen; and when I was obliged to go, he begged and entreated me +to come the following evening; and I promised. Minny and I went flying +home as light as air; and I dreamt of Wuthering Heights and my sweet, +darling cousin, till morning. + +“On the morrow I was sad; partly because you were poorly, and partly +that I wished my father knew, and approved of my excursions: but it was +beautiful moonlight after tea; and, as I rode on, the gloom cleared. I +shall have another happy evening, I thought to myself; and what +delights me more, my pretty Linton will. I trotted up their garden, and +was turning round to the back, when that fellow Earnshaw met me, took +my bridle, and bid me go in by the front entrance. He patted Minny’s +neck, and said she was a bonny beast, and appeared as if he wanted me +to speak to him. I only told him to leave my horse alone, or else it +would kick him. He answered in his vulgar accent, ‘It wouldn’t do mitch +hurt if it did;’ and surveyed its legs with a smile. I was half +inclined to make it try; however, he moved off to open the door, and, +as he raised the latch, he looked up to the inscription above, and +said, with a stupid mixture of awkwardness and elation: ‘Miss +Catherine! I can read yon, now.’ + +“‘Wonderful,’ I exclaimed. ‘Pray let us hear you—you _are_ grown +clever!’ + +“He spelt, and drawled over by syllables, the name—‘Hareton Earnshaw.’ + +“‘And the figures?’ I cried, encouragingly, perceiving that he came to +a dead halt. + +“‘I cannot tell them yet,’ he answered. + +“‘Oh, you dunce!’ I said, laughing heartily at his failure. + +“The fool stared, with a grin hovering about his lips, and a scowl +gathering over his eyes, as if uncertain whether he might not join in +my mirth: whether it were not pleasant familiarity, or what it really +was, contempt. I settled his doubts, by suddenly retrieving my gravity +and desiring him to walk away, for I came to see Linton, not him. He +reddened—I saw that by the moonlight—dropped his hand from the latch, +and skulked off, a picture of mortified vanity. He imagined himself to +be as accomplished as Linton, I suppose, because he could spell his own +name; and was marvellously discomfited that I didn’t think the same.” + +“Stop, Miss Catherine, dear!” I interrupted. “I shall not scold, but I +don’t like your conduct there. If you had remembered that Hareton was +your cousin as much as Master Heathcliff, you would have felt how +improper it was to behave in that way. At least, it was praiseworthy +ambition for him to desire to be as accomplished as Linton; and +probably he did not learn merely to show off: you had made him ashamed +of his ignorance before, I have no doubt; and he wished to remedy it +and please you. To sneer at his imperfect attempt was very bad +breeding. Had _you_ been brought up in his circumstances, would you be +less rude? He was as quick and as intelligent a child as ever you were; +and I’m hurt that he should be despised now, because that base +Heathcliff has treated him so unjustly.” + +“Well, Ellen, you won’t cry about it, will you?” she exclaimed, +surprised at my earnestness. “But wait, and you shall hear if he conned +his A B C to please me; and if it were worth while being civil to the +brute. I entered; Linton was lying on the settle, and half got up to +welcome me. + +“‘I’m ill to-night, Catherine, love,’ he said; ‘and you must have all +the talk, and let me listen. Come, and sit by me. I was sure you +wouldn’t break your word, and I’ll make you promise again, before you +go.’ + +“I knew now that I mustn’t tease him, as he was ill; and I spoke softly +and put no questions, and avoided irritating him in any way. I had +brought some of my nicest books for him: he asked me to read a little +of one, and I was about to comply, when Earnshaw burst the door open: +having gathered venom with reflection. He advanced direct to us, seized +Linton by the arm, and swung him off the seat. + +“‘Get to thy own room!’ he said, in a voice almost inarticulate with +passion; and his face looked swelled and furious. ‘Take her there if +she comes to see thee: thou shalln’t keep me out of this. Begone wi’ ye +both!’ + +“He swore at us, and left Linton no time to answer, nearly throwing him +into the kitchen; and he clenched his fist as I followed, seemingly +longing to knock me down. I was afraid for a moment, and I let one +volume fall; he kicked it after me, and shut us out. I heard a +malignant, crackly laugh by the fire, and turning, beheld that odious +Joseph standing rubbing his bony hands, and quivering. + +“‘I wer sure he’d sarve ye out! He’s a grand lad! He’s getten t’ raight +sperrit in him! _He_ knaws—ay, he knaws, as weel as I do, who sud be t’ +maister yonder—Ech, ech, ech! He made ye skift properly! Ech, ech, +ech!’ + +“‘Where must we go?’ I asked of my cousin, disregarding the old +wretch’s mockery. + +“Linton was white and trembling. He was not pretty then, Ellen: oh, no! +he looked frightful; for his thin face and large eyes were wrought into +an expression of frantic, powerless fury. He grasped the handle of the +door, and shook it: it was fastened inside. + +“‘If you don’t let me in, I’ll kill you!—If you don’t let me in, I’ll +kill you!’ he rather shrieked than said. ‘Devil! devil!—I’ll kill +you—I’ll kill you!’ + +“Joseph uttered his croaking laugh again. + +“‘Thear, that’s t’ father!’ he cried. ‘That’s father! We’ve allas +summut o’ either side in us. Niver heed, Hareton, lad—dunnut be +’feard—he cannot get at thee!’ + +“I took hold of Linton’s hands, and tried to pull him away; but he +shrieked so shockingly that I dared not proceed. At last his cries were +choked by a dreadful fit of coughing; blood gushed from his mouth, and +he fell on the ground. I ran into the yard, sick with terror; and +called for Zillah, as loud as I could. She soon heard me: she was +milking the cows in a shed behind the barn, and hurrying from her work, +she inquired what there was to do? I hadn’t breath to explain; dragging +her in, I looked about for Linton. Earnshaw had come out to examine the +mischief he had caused, and he was then conveying the poor thing +upstairs. Zillah and I ascended after him; but he stopped me at the top +of the steps, and said I shouldn’t go in: I must go home. I exclaimed +that he had killed Linton, and I _would_ enter. Joseph locked the door, +and declared I should do ‘no sich stuff,’ and asked me whether I were +‘bahn to be as mad as him.’ I stood crying till the housekeeper +reappeared. She affirmed he would be better in a bit, but he couldn’t +do with that shrieking and din; and she took me, and nearly carried me +into the house. + +“Ellen, I was ready to tear my hair off my head! I sobbed and wept so +that my eyes were almost blind; and the ruffian you have such sympathy +with stood opposite: presuming every now and then to bid me ‘wisht,’ +and denying that it was his fault; and, finally, frightened by my +assertions that I would tell papa, and that he should be put in prison +and hanged, he commenced blubbering himself, and hurried out to hide +his cowardly agitation. Still, I was not rid of him: when at length +they compelled me to depart, and I had got some hundred yards off the +premises, he suddenly issued from the shadow of the road-side, and +checked Minny and took hold of me. + +“‘Miss Catherine, I’m ill grieved,’ he began, ‘but it’s rayther too +bad—’ + +“I gave him a cut with my whip, thinking perhaps he would murder me. He +let go, thundering one of his horrid curses, and I galloped home more +than half out of my senses. + +“I didn’t bid you good-night that evening, and I didn’t go to Wuthering +Heights the next: I wished to go exceedingly; but I was strangely +excited, and dreaded to hear that Linton was dead, sometimes; and +sometimes shuddered at the thought of encountering Hareton. On the +third day I took courage: at least, I couldn’t bear longer suspense, +and stole off once more. I went at five o’clock, and walked; fancying I +might manage to creep into the house, and up to Linton’s room, +unobserved. However, the dogs gave notice of my approach. Zillah +received me, and saying ‘the lad was mending nicely,’ showed me into a +small, tidy, carpeted apartment, where, to my inexpressible joy, I +beheld Linton laid on a little sofa, reading one of my books. But he +would neither speak to me nor look at me, through a whole hour, Ellen: +he has such an unhappy temper. And what quite confounded me, when he +did open his mouth, it was to utter the falsehood that I had occasioned +the uproar, and Hareton was not to blame! Unable to reply, except +passionately, I got up and walked from the room. He sent after me a +faint ‘Catherine!’ He did not reckon on being answered so: but I +wouldn’t turn back; and the morrow was the second day on which I stayed +at home, nearly determined to visit him no more. But it was so +miserable going to bed and getting up, and never hearing anything about +him, that my resolution melted into air before it was properly formed. +It _had_ appeared wrong to take the journey once; now it seemed wrong +to refrain. Michael came to ask if he must saddle Minny; I said ‘Yes,’ +and considered myself doing a duty as she bore me over the hills. I was +forced to pass the front windows to get to the court: it was no use +trying to conceal my presence. + +“‘Young master is in the house,’ said Zillah, as she saw me making for +the parlour. I went in; Earnshaw was there also, but he quitted the +room directly. Linton sat in the great arm-chair half asleep; walking +up to the fire, I began in a serious tone, partly meaning it to be +true— + +“‘As you don’t like me, Linton, and as you think I come on purpose to +hurt you, and pretend that I do so every time, this is our last +meeting: let us say good-bye; and tell Mr. Heathcliff that you have no +wish to see me, and that he mustn’t invent any more falsehoods on the +subject.’ + +“‘Sit down and take your hat off, Catherine,’ he answered. ‘You are so +much happier than I am, you ought to be better. Papa talks enough of my +defects, and shows enough scorn of me, to make it natural I should +doubt myself. I doubt whether I am not altogether as worthless as he +calls me, frequently; and then I feel so cross and bitter, I hate +everybody! I _am_ worthless, and bad in temper, and bad in spirit, +almost always; and, if you choose, you _may_ say good-bye: you’ll get +rid of an annoyance. Only, Catherine, do me this justice: believe that +if I might be as sweet, and as kind, and as good as you are, I would +be; as willingly, and more so, than as happy and as healthy. And +believe that your kindness has made me love you deeper than if I +deserved your love: and though I couldn’t, and cannot help showing my +nature to you, I regret it and repent it; and shall regret and repent +it till I die!’ + +“I felt he spoke the truth; and I felt I must forgive him: and, though +we should quarrel the next moment, I must forgive him again. We were +reconciled; but we cried, both of us, the whole time I stayed: not +entirely for sorrow; yet I _was_ sorry Linton had that distorted +nature. He’ll never let his friends be at ease, and he’ll never be at +ease himself! I have always gone to his little parlour, since that +night; because his father returned the day after. + +“About three times, I think, we have been merry and hopeful, as we were +the first evening; the rest of my visits were dreary and troubled: now +with his selfishness and spite, and now with his sufferings: but I’ve +learned to endure the former with nearly as little resentment as the +latter. Mr. Heathcliff purposely avoids me: I have hardly seen him at +all. Last Sunday, indeed, coming earlier than usual, I heard him +abusing poor Linton cruelly for his conduct of the night before. I +can’t tell how he knew of it, unless he listened. Linton had certainly +behaved provokingly: however, it was the business of nobody but me, and +I interrupted Mr. Heathcliff’s lecture by entering and telling him so. +He burst into a laugh, and went away, saying he was glad I took that +view of the matter. Since then, I’ve told Linton he must whisper his +bitter things. Now, Ellen, you have heard all. I can’t be prevented +from going to Wuthering Heights, except by inflicting misery on two +people; whereas, if you’ll only not tell papa, my going need disturb +the tranquillity of none. You’ll not tell, will you? It will be very +heartless, if you do.” + +“I’ll make up my mind on that point by to-morrow, Miss Catherine,” I +replied. “It requires some study; and so I’ll leave you to your rest, +and go think it over.” + +I thought it over aloud, in my master’s presence; walking straight from +her room to his, and relating the whole story: with the exception of +her conversations with her cousin, and any mention of Hareton. Mr. +Linton was alarmed and distressed, more than he would acknowledge to +me. In the morning, Catherine learnt my betrayal of her confidence, and +she learnt also that her secret visits were to end. In vain she wept +and writhed against the interdict, and implored her father to have pity +on Linton: all she got to comfort her was a promise that he would write +and give him leave to come to the Grange when he pleased; but +explaining that he must no longer expect to see Catherine at Wuthering +Heights. Perhaps, had he been aware of his nephew’s disposition and +state of health, he would have seen fit to withhold even that slight +consolation. + + + + +CHAPTER XXV + + +“These things happened last winter, sir,” said Mrs. Dean; “hardly more +than a year ago. Last winter, I did not think, at another twelve +months’ end, I should be amusing a stranger to the family with relating +them! Yet, who knows how long you’ll be a stranger? You’re too young to +rest always contented, living by yourself; and I some way fancy no one +could see Catherine Linton and not love her. You smile; but why do you +look so lively and interested when I talk about her? and why have you +asked me to hang her picture over your fireplace? and why—?” + +“Stop, my good friend!” I cried. “It may be very possible that _I_ +should love her; but would she love me? I doubt it too much to venture +my tranquillity by running into temptation: and then my home is not +here. I’m of the busy world, and to its arms I must return. Go on. Was +Catherine obedient to her father’s commands?” + +“She was,” continued the housekeeper. “Her affection for him was still +the chief sentiment in her heart; and he spoke without anger: he spoke +in the deep tenderness of one about to leave his treasure amid perils +and foes, where his remembered words would be the only aid that he +could bequeath to guide her. He said to me, a few days afterwards, ‘I +wish my nephew would write, Ellen, or call. Tell me, sincerely, what +you think of him: is he changed for the better, or is there a prospect +of improvement, as he grows a man?’ + +“‘He’s very delicate, sir,’ I replied; ‘and scarcely likely to reach +manhood: but this I can say, he does not resemble his father; and if +Miss Catherine had the misfortune to marry him, he would not be beyond +her control: unless she were extremely and foolishly indulgent. +However, master, you’ll have plenty of time to get acquainted with him +and see whether he would suit her: it wants four years and more to his +being of age.’” + +Edgar sighed; and, walking to the window, looked out towards Gimmerton +Kirk. It was a misty afternoon, but the February sun shone dimly, and +we could just distinguish the two fir-trees in the yard, and the +sparely-scattered gravestones. + +“I’ve prayed often,” he half soliloquised, “for the approach of what is +coming; and now I begin to shrink, and fear it. I thought the memory of +the hour I came down that glen a bridegroom would be less sweet than +the anticipation that I was soon, in a few months, or, possibly, weeks, +to be carried up, and laid in its lonely hollow! Ellen, I’ve been very +happy with my little Cathy: through winter nights and summer days she +was a living hope at my side. But I’ve been as happy musing by myself +among those stones, under that old church: lying, through the long June +evenings, on the green mound of her mother’s grave, and +wishing—yearning for the time when I might lie beneath it. What can I +do for Cathy? How must I quit her? I’d not care one moment for Linton +being Heathcliff’s son; nor for his taking her from me, if he could +console her for my loss. I’d not care that Heathcliff gained his ends, +and triumphed in robbing me of my last blessing! But should Linton be +unworthy—only a feeble tool to his father—I cannot abandon her to him! +And, hard though it be to crush her buoyant spirit, I must persevere in +making her sad while I live, and leaving her solitary when I die. +Darling! I’d rather resign her to God, and lay her in the earth before +me.” + +“Resign her to God as it is, sir,” I answered, “and if we should lose +you—which may He forbid—under His providence, I’ll stand her friend and +counsellor to the last. Miss Catherine is a good girl: I don’t fear +that she will go wilfully wrong; and people who do their duty are +always finally rewarded.” + +Spring advanced; yet my master gathered no real strength, though he +resumed his walks in the grounds with his daughter. To her +inexperienced notions, this itself was a sign of convalescence; and +then his cheek was often flushed, and his eyes were bright; she felt +sure of his recovering. On her seventeenth birthday, he did not visit +the churchyard: it was raining, and I observed— + +“You’ll surely not go out to-night, sir?” + +He answered,—“No, I’ll defer it this year a little longer.” + +He wrote again to Linton, expressing his great desire to see him; and, +had the invalid been presentable, I’ve no doubt his father would have +permitted him to come. As it was, being instructed, he returned an +answer, intimating that Mr. Heathcliff objected to his calling at the +Grange; but his uncle’s kind remembrance delighted him, and he hoped to +meet him sometimes in his rambles, and personally to petition that his +cousin and he might not remain long so utterly divided. + +That part of his letter was simple, and probably his own. Heathcliff +knew he could plead eloquently for Catherine’s company, then. + +“I do not ask,” he said, “that she may visit here; but am I never to +see her, because my father forbids me to go to her home, and you forbid +her to come to mine? Do, now and then, ride with her towards the +Heights; and let us exchange a few words, in your presence! We have +done nothing to deserve this separation; and you are not angry with me: +you have no reason to dislike me, you allow, yourself. Dear uncle! send +me a kind note to-morrow, and leave to join you anywhere you please, +except at Thrushcross Grange. I believe an interview would convince you +that my father’s character is not mine: he affirms I am more your +nephew than his son; and though I have faults which render me unworthy +of Catherine, she has excused them, and for her sake, you should also. +You inquire after my health—it is better; but while I remain cut off +from all hope, and doomed to solitude, or the society of those who +never did and never will like me, how can I be cheerful and well?” + +Edgar, though he felt for the boy, could not consent to grant his +request; because he could not accompany Catherine. He said, in summer, +perhaps, they might meet: meantime, he wished him to continue writing +at intervals, and engaged to give him what advice and comfort he was +able by letter; being well aware of his hard position in his family. +Linton complied; and had he been unrestrained, would probably have +spoiled all by filling his epistles with complaints and lamentations: +but his father kept a sharp watch over him; and, of course, insisted on +every line that my master sent being shown; so, instead of penning his +peculiar personal sufferings and distresses, the themes constantly +uppermost in his thoughts, he harped on the cruel obligation of being +held asunder from his friend and love; and gently intimated that Mr. +Linton must allow an interview soon, or he should fear he was purposely +deceiving him with empty promises. + +Cathy was a powerful ally at home; and between them they at length +persuaded my master to acquiesce in their having a ride or a walk +together about once a week, under my guardianship, and on the moors +nearest the Grange: for June found him still declining. Though he had +set aside yearly a portion of his income for my young lady’s fortune, +he had a natural desire that she might retain—or at least return in a +short time to—the house of her ancestors; and he considered her only +prospect of doing that was by a union with his heir; he had no idea +that the latter was failing almost as fast as himself; nor had any one, +I believe: no doctor visited the Heights, and no one saw Master +Heathcliff to make report of his condition among us. I, for my part, +began to fancy my forebodings were false, and that he must be actually +rallying, when he mentioned riding and walking on the moors, and seemed +so earnest in pursuing his object. I could not picture a father +treating a dying child as tyrannically and wickedly as I afterwards +learned Heathcliff had treated him, to compel this apparent eagerness: +his efforts redoubling the more imminently his avaricious and unfeeling +plans were threatened with defeat by death. + + + + +CHAPTER XXVI + + +Summer was already past its prime, when Edgar reluctantly yielded his +assent to their entreaties, and Catherine and I set out on our first +ride to join her cousin. It was a close, sultry day: devoid of +sunshine, but with a sky too dappled and hazy to threaten rain: and our +place of meeting had been fixed at the guide-stone, by the cross-roads. +On arriving there, however, a little herd-boy, despatched as a +messenger, told us that,—“Maister Linton wer just o’ this side th’ +Heights: and he’d be mitch obleeged to us to gang on a bit further.” + +“Then Master Linton has forgot the first injunction of his uncle,” I +observed: “he bid us keep on the Grange land, and here we are off at +once.” + +“Well, we’ll turn our horses’ heads round when we reach him,” answered +my companion; “our excursion shall lie towards home.” + +But when we reached him, and that was scarcely a quarter of a mile from +his own door, we found he had no horse; and we were forced to dismount, +and leave ours to graze. He lay on the heath, awaiting our approach, +and did not rise till we came within a few yards. Then he walked so +feebly, and looked so pale, that I immediately exclaimed,—“Why, Master +Heathcliff, you are not fit for enjoying a ramble this morning. How ill +you do look!” + +Catherine surveyed him with grief and astonishment: she changed the +ejaculation of joy on her lips to one of alarm; and the congratulation +on their long-postponed meeting to an anxious inquiry, whether he were +worse than usual? + +“No—better—better!” he panted, trembling, and retaining her hand as if +he needed its support, while his large blue eyes wandered timidly over +her; the hollowness round them transforming to haggard wildness the +languid expression they once possessed. + +“But you have been worse,” persisted his cousin; “worse than when I saw +you last; you are thinner, and—” + +“I’m tired,” he interrupted, hurriedly. “It is too hot for walking, let +us rest here. And, in the morning, I often feel sick—papa says I grow +so fast.” + +Badly satisfied, Cathy sat down, and he reclined beside her. + +“This is something like your paradise,” said she, making an effort at +cheerfulness. “You recollect the two days we agreed to spend in the +place and way each thought pleasantest? This is nearly yours, only +there are clouds; but then they are so soft and mellow: it is nicer +than sunshine. Next week, if you can, we’ll ride down to the Grange +Park, and try mine.” + +Linton did not appear to remember what she talked of; and he had +evidently great difficulty in sustaining any kind of conversation. His +lack of interest in the subjects she started, and his equal incapacity +to contribute to her entertainment, were so obvious that she could not +conceal her disappointment. An indefinite alteration had come over his +whole person and manner. The pettishness that might be caressed into +fondness, had yielded to a listless apathy; there was less of the +peevish temper of a child which frets and teases on purpose to be +soothed, and more of the self-absorbed moroseness of a confirmed +invalid, repelling consolation, and ready to regard the good-humoured +mirth of others as an insult. Catherine perceived, as well as I did, +that he held it rather a punishment, than a gratification, to endure +our company; and she made no scruple of proposing, presently, to +depart. That proposal, unexpectedly, roused Linton from his lethargy, +and threw him into a strange state of agitation. He glanced fearfully +towards the Heights, begging she would remain another half-hour, at +least. + +“But I think,” said Cathy, “you’d be more comfortable at home than +sitting here; and I cannot amuse you to-day, I see, by my tales, and +songs, and chatter: you have grown wiser than I, in these six months; +you have little taste for my diversions now: or else, if I could amuse +you, I’d willingly stay.” + +“Stay to rest yourself,” he replied. “And, Catherine, don’t think or +say that I’m _very_ unwell: it is the heavy weather and heat that make +me dull; and I walked about, before you came, a great deal for me. Tell +uncle I’m in tolerable health, will you?” + +“I’ll tell him that _you_ say so, Linton. I couldn’t affirm that you +are,” observed my young lady, wondering at his pertinacious assertion +of what was evidently an untruth. + +“And be here again next Thursday,” continued he, shunning her puzzled +gaze. “And give him my thanks for permitting you to come—my best +thanks, Catherine. And—and, if you _did_ meet my father, and he asked +you about me, don’t lead him to suppose that I’ve been extremely silent +and stupid: don’t look sad and downcast, as you _are_ doing—he’ll be +angry.” + +“I care nothing for his anger,” exclaimed Cathy, imagining she would be +its object. + +“But I do,” said her cousin, shuddering. “_Don’t_ provoke him against +me, Catherine, for he is very hard.” + +“Is he severe to you, Master Heathcliff?” I inquired. “Has he grown +weary of indulgence, and passed from passive to active hatred?” + +Linton looked at me, but did not answer; and, after keeping her seat by +his side another ten minutes, during which his head fell drowsily on +his breast, and he uttered nothing except suppressed moans of +exhaustion or pain, Cathy began to seek solace in looking for +bilberries, and sharing the produce of her researches with me: she did +not offer them to him, for she saw further notice would only weary and +annoy. + +“Is it half-an-hour now, Ellen?” she whispered in my ear, at last. “I +can’t tell why we should stay. He’s asleep, and papa will be wanting us +back.” + +“Well, we must not leave him asleep,” I answered; “wait till he wakes, +and be patient. You were mighty eager to set off, but your longing to +see poor Linton has soon evaporated!” + +“Why did _he_ wish to see me?” returned Catherine. “In his crossest +humours, formerly, I liked him better than I do in his present curious +mood. It’s just as if it were a task he was compelled to perform—this +interview—for fear his father should scold him. But I’m hardly going to +come to give Mr. Heathcliff pleasure; whatever reason he may have for +ordering Linton to undergo this penance. And, though I’m glad he’s +better in health, I’m sorry he’s so much less pleasant, and so much +less affectionate to me.” + +“You think _he is_ better in health, then?” I said. + +“Yes,” she answered; “because he always made such a great deal of his +sufferings, you know. He is not tolerably well, as he told me to tell +papa; but he’s better, very likely.” + +“There you differ with me, Miss Cathy,” I remarked; “I should +conjecture him to be far worse.” + +Linton here started from his slumber in bewildered terror, and asked if +any one had called his name. + +“No,” said Catherine; “unless in dreams. I cannot conceive how you +manage to doze out of doors, in the morning.” + +“I thought I heard my father,” he gasped, glancing up to the frowning +nab above us. “You are sure nobody spoke?” + +“Quite sure,” replied his cousin. “Only Ellen and I were disputing +concerning your health. Are you truly stronger, Linton, than when we +separated in winter? If you be, I’m certain one thing is not +stronger—your regard for me: speak,—are you?” + +The tears gushed from Linton’s eyes as he answered, “Yes, yes, I am!” +And, still under the spell of the imaginary voice, his gaze wandered up +and down to detect its owner. + +Cathy rose. “For to-day we must part,” she said. “And I won’t conceal +that I have been sadly disappointed with our meeting; though I’ll +mention it to nobody but you: not that I stand in awe of Mr. +Heathcliff.” + +“Hush,” murmured Linton; “for God’s sake, hush! He’s coming.” And he +clung to Catherine’s arm, striving to detain her; but at that +announcement she hastily disengaged herself, and whistled to Minny, who +obeyed her like a dog. + +“I’ll be here next Thursday,” she cried, springing to the saddle. +“Good-bye. Quick, Ellen!” + +And so we left him, scarcely conscious of our departure, so absorbed +was he in anticipating his father’s approach. + +Before we reached home, Catherine’s displeasure softened into a +perplexed sensation of pity and regret, largely blended with vague, +uneasy doubts about Linton’s actual circumstances, physical and social: +in which I partook, though I counselled her not to say much; for a +second journey would make us better judges. My master requested an +account of our ongoings. His nephew’s offering of thanks was duly +delivered, Miss Cathy gently touching on the rest: I also threw little +light on his inquiries, for I hardly knew what to hide and what to +reveal. + + + + +CHAPTER XXVII + + +Seven days glided away, every one marking its course by the henceforth +rapid alteration of Edgar Linton’s state. The havoc that months had +previously wrought was now emulated by the inroads of hours. Catherine +we would fain have deluded yet; but her own quick spirit refused to +delude her: it divined in secret, and brooded on the dreadful +probability, gradually ripening into certainty. She had not the heart +to mention her ride, when Thursday came round; I mentioned it for her, +and obtained permission to order her out of doors: for the library, +where her father stopped a short time daily—the brief period he could +bear to sit up—and his chamber, had become her whole world. She grudged +each moment that did not find her bending over his pillow, or seated by +his side. Her countenance grew wan with watching and sorrow, and my +master gladly dismissed her to what he flattered himself would be a +happy change of scene and society; drawing comfort from the hope that +she would not now be left entirely alone after his death. + +He had a fixed idea, I guessed by several observations he let fall, +that, as his nephew resembled him in person, he would resemble him in +mind; for Linton’s letters bore few or no indications of his defective +character. And I, through pardonable weakness, refrained from +correcting the error; asking myself what good there would be in +disturbing his last moments with information that he had neither power +nor opportunity to turn to account. + +We deferred our excursion till the afternoon; a golden afternoon of +August: every breath from the hills so full of life, that it seemed +whoever respired it, though dying, might revive. Catherine’s face was +just like the landscape—shadows and sunshine flitting over it in rapid +succession; but the shadows rested longer, and the sunshine was more +transient; and her poor little heart reproached itself for even that +passing forgetfulness of its cares. + +We discerned Linton watching at the same spot he had selected before. +My young mistress alighted, and told me that, as she was resolved to +stay a very little while, I had better hold the pony and remain on +horseback; but I dissented: I wouldn’t risk losing sight of the charge +committed to me a minute; so we climbed the slope of heath together. +Master Heathcliff received us with greater animation on this occasion: +not the animation of high spirits though, nor yet of joy; it looked +more like fear. + +“It is late!” he said, speaking short and with difficulty. “Is not your +father very ill? I thought you wouldn’t come.” + +“_Why_ won’t you be candid?” cried Catherine, swallowing her greeting. +“Why cannot you say at once you don’t want me? It is strange, Linton, +that for the second time you have brought me here on purpose, +apparently to distress us both, and for no reason besides!” + +Linton shivered, and glanced at her, half supplicating, half ashamed; +but his cousin’s patience was not sufficient to endure this enigmatical +behaviour. + +“My father _is_ very ill,” she said; “and why am I called from his +bedside? Why didn’t you send to absolve me from my promise, when you +wished I wouldn’t keep it? Come! I desire an explanation: playing and +trifling are completely banished out of my mind; and I can’t dance +attendance on your affectations now!” + +“My affectations!” he murmured; “what are they? For heaven’s sake, +Catherine, don’t look so angry! Despise me as much as you please; I am +a worthless, cowardly wretch: I can’t be scorned enough; but I’m too +mean for your anger. Hate my father, and spare me for contempt.” + +“Nonsense!” cried Catherine in a passion. “Foolish, silly boy! And +there! he trembles, as if I were really going to touch him! You needn’t +bespeak contempt, Linton: anybody will have it spontaneously at your +service. Get off! I shall return home: it is folly dragging you from +the hearth-stone, and pretending—what do we pretend? Let go my frock! +If I pitied you for crying and looking so very frightened, you should +spurn such pity. Ellen, tell him how disgraceful this conduct is. Rise, +and don’t degrade yourself into an abject reptile—_don’t_!” + +With streaming face and an expression of agony, Linton had thrown his +nerveless frame along the ground: he seemed convulsed with exquisite +terror. + +“Oh!” he sobbed, “I cannot bear it! Catherine, Catherine, I’m a +traitor, too, and I dare not tell you! But leave me, and I shall be +killed! _Dear_ Catherine, my life is in your hands: and you have said +you loved me, and if you did, it wouldn’t harm you. You’ll not go, +then? kind, sweet, good Catherine! And perhaps you _will_ consent—and +he’ll let me die with you!” + +My young lady, on witnessing his intense anguish, stooped to raise him. +The old feeling of indulgent tenderness overcame her vexation, and she +grew thoroughly moved and alarmed. + +“Consent to what?” she asked. “To stay! tell me the meaning of this +strange talk, and I will. You contradict your own words, and distract +me! Be calm and frank, and confess at once all that weighs on your +heart. You wouldn’t injure me, Linton, would you? You wouldn’t let any +enemy hurt me, if you could prevent it? I’ll believe you are a coward, +for yourself, but not a cowardly betrayer of your best friend.” + +“But my father threatened me,” gasped the boy, clasping his attenuated +fingers, “and I dread him—I dread him! I _dare_ not tell!” + +“Oh, well!” said Catherine, with scornful compassion, “keep your +secret: _I’m_ no coward. Save yourself: I’m not afraid!” + +Her magnanimity provoked his tears: he wept wildly, kissing her +supporting hands, and yet could not summon courage to speak out. I was +cogitating what the mystery might be, and determined Catherine should +never suffer to benefit him or any one else, by my good will; when, +hearing a rustle among the ling, I looked up and saw Mr. Heathcliff +almost close upon us, descending the Heights. He didn’t cast a glance +towards my companions, though they were sufficiently near for Linton’s +sobs to be audible; but hailing me in the almost hearty tone he assumed +to none besides, and the sincerity of which I couldn’t avoid doubting, +he said— + +“It is something to see you so near to my house, Nelly. How are you at +the Grange? Let us hear. The rumour goes,” he added, in a lower tone, +“that Edgar Linton is on his death-bed: perhaps they exaggerate his +illness?” + +“No; my master is dying,” I replied: “it is true enough. A sad thing it +will be for us all, but a blessing for him!” + +“How long will he last, do you think?” he asked. + +“I don’t know,” I said. + +“Because,” he continued, looking at the two young people, who were +fixed under his eye—Linton appeared as if he could not venture to stir +or raise his head, and Catherine could not move, on his +account—“because that lad yonder seems determined to beat me; and I’d +thank his uncle to be quick, and go before him! Hallo! has the whelp +been playing that game long? I _did_ give him some lessons about +snivelling. Is he pretty lively with Miss Linton generally?” + +“Lively? no—he has shown the greatest distress,” I answered. “To see +him, I should say, that instead of rambling with his sweetheart on the +hills, he ought to be in bed, under the hands of a doctor.” + +“He shall be, in a day or two,” muttered Heathcliff. “But first—get up, +Linton! Get up!” he shouted. “Don’t grovel on the ground there: up, +this moment!” + +Linton had sunk prostrate again in another paroxysm of helpless fear, +caused by his father’s glance towards him, I suppose: there was nothing +else to produce such humiliation. He made several efforts to obey, but +his little strength was annihilated for the time, and he fell back +again with a moan. Mr. Heathcliff advanced, and lifted him to lean +against a ridge of turf. + +“Now,” said he, with curbed ferocity, “I’m getting angry—and if you +don’t command that paltry spirit of yours—_damn_ you! get up directly!” + +“I will, father,” he panted. “Only, let me alone, or I shall faint. +I’ve done as you wished, I’m sure. Catherine will tell you that I—that +I—have been cheerful. Ah! keep by me, Catherine; give me your hand.” + +“Take mine,” said his father; “stand on your feet. There now—she’ll +lend you her arm: that’s right, look at _her_. You would imagine I was +the devil himself, Miss Linton, to excite such horror. Be so kind as to +walk home with him, will you? He shudders if I touch him.” + +“Linton dear!” whispered Catherine, “I can’t go to Wuthering Heights: +papa has forbidden me. He’ll not harm you: why are you so afraid?” + +“I can never re-enter that house,” he answered. “I’m _not_ to re-enter +it without you!” + +“Stop!” cried his father. “We’ll respect Catherine’s filial scruples. +Nelly, take him in, and I’ll follow your advice concerning the doctor, +without delay.” + +“You’ll do well,” replied I. “But I must remain with my mistress: to +mind your son is not my business.” + +“You are very stiff,” said Heathcliff, “I know that: but you’ll force +me to pinch the baby and make it scream before it moves your charity. +Come, then, my hero. Are you willing to return, escorted by me?” + +He approached once more, and made as if he would seize the fragile +being; but, shrinking back, Linton clung to his cousin, and implored +her to accompany him, with a frantic importunity that admitted no +denial. However I disapproved, I couldn’t hinder her: indeed, how could +she have refused him herself? What was filling him with dread we had no +means of discerning; but there he was, powerless under its gripe, and +any addition seemed capable of shocking him into idiocy. We reached the +threshold; Catherine walked in, and I stood waiting till she had +conducted the invalid to a chair, expecting her out immediately; when +Mr. Heathcliff, pushing me forward, exclaimed—“My house is not stricken +with the plague, Nelly; and I have a mind to be hospitable to-day: sit +down, and allow me to shut the door.” + +He shut and locked it also. I started. + +“You shall have tea before you go home,” he added. “I am by myself. +Hareton is gone with some cattle to the Lees, and Zillah and Joseph are +off on a journey of pleasure; and, though I’m used to being alone, I’d +rather have some interesting company, if I can get it. Miss Linton, +take your seat by _him_. I give you what I have: the present is hardly +worth accepting; but I have nothing else to offer. It is Linton, I +mean. How she does stare! It’s odd what a savage feeling I have to +anything that seems afraid of me! Had I been born where laws are less +strict and tastes less dainty, I should treat myself to a slow +vivisection of those two, as an evening’s amusement.” + +He drew in his breath, struck the table, and swore to himself, “By +hell! I hate them.” + +“I am not afraid of you!” exclaimed Catherine, who could not hear the +latter part of his speech. She stepped close up; her black eyes +flashing with passion and resolution. “Give me that key: I will have +it!” she said. “I wouldn’t eat or drink here, if I were starving.” + +Heathcliff had the key in his hand that remained on the table. He +looked up, seized with a sort of surprise at her boldness; or, +possibly, reminded, by her voice and glance, of the person from whom +she inherited it. She snatched at the instrument, and half succeeded in +getting it out of his loosened fingers: but her action recalled him to +the present; he recovered it speedily. + +“Now, Catherine Linton,” he said, “stand off, or I shall knock you +down; and that will make Mrs. Dean mad.” + +Regardless of this warning, she captured his closed hand and its +contents again. “We _will_ go!” she repeated, exerting her utmost +efforts to cause the iron muscles to relax; and finding that her nails +made no impression, she applied her teeth pretty sharply. Heathcliff +glanced at me a glance that kept me from interfering a moment. +Catherine was too intent on his fingers to notice his face. He opened +them suddenly, and resigned the object of dispute; but, ere she had +well secured it, he seized her with the liberated hand, and, pulling +her on his knee, administered with the other a shower of terrific slaps +on both sides of the head, each sufficient to have fulfilled his +threat, had she been able to fall. + +At this diabolical violence I rushed on him furiously. “You villain!” I +began to cry, “you villain!” A touch on the chest silenced me: I am +stout, and soon put out of breath; and, what with that and the rage, I +staggered dizzily back, and felt ready to suffocate, or to burst a +blood-vessel. The scene was over in two minutes; Catherine, released, +put her two hands to her temples, and looked just as if she were not +sure whether her ears were off or on. She trembled like a reed, poor +thing, and leant against the table perfectly bewildered. + +“I know how to chastise children, you see,” said the scoundrel, grimly, +as he stooped to repossess himself of the key, which had dropped to the +floor. “Go to Linton now, as I told you; and cry at your ease! I shall +be your father, to-morrow—all the father you’ll have in a few days—and +you shall have plenty of that. You can bear plenty; you’re no weakling: +you shall have a daily taste, if I catch such a devil of a temper in +your eyes again!” + +Cathy ran to me instead of Linton, and knelt down and put her burning +cheek on my lap, weeping aloud. Her cousin had shrunk into a corner of +the settle, as quiet as a mouse, congratulating himself, I dare say, +that the correction had alighted on another than him. Mr. Heathcliff, +perceiving us all confounded, rose, and expeditiously made the tea +himself. The cups and saucers were laid ready. He poured it out, and +handed me a cup. + +“Wash away your spleen,” he said. “And help your own naughty pet and +mine. It is not poisoned, though I prepared it. I’m going out to seek +your horses.” + +Our first thought, on his departure, was to force an exit somewhere. We +tried the kitchen door, but that was fastened outside: we looked at the +windows—they were too narrow for even Cathy’s little figure. + +“Master Linton,” I cried, seeing we were regularly imprisoned, “you +know what your diabolical father is after, and you shall tell us, or +I’ll box your ears, as he has done your cousin’s.” + +“Yes, Linton, you must tell,” said Catherine. “It was for your sake I +came; and it will be wickedly ungrateful if you refuse.” + +“Give me some tea, I’m thirsty, and then I’ll tell you,” he answered. +“Mrs. Dean, go away. I don’t like you standing over me. Now, Catherine, +you are letting your tears fall into my cup. I won’t drink that. Give +me another.” + +Catherine pushed another to him, and wiped her face. I felt disgusted +at the little wretch’s composure, since he was no longer in terror for +himself. The anguish he had exhibited on the moor subsided as soon as +ever he entered Wuthering Heights; so I guessed he had been menaced +with an awful visitation of wrath if he failed in decoying us there; +and, that accomplished, he had no further immediate fears. + +“Papa wants us to be married,” he continued, after sipping some of the +liquid. “And he knows your papa wouldn’t let us marry now; and he’s +afraid of my dying if we wait; so we are to be married in the morning, +and you are to stay here all night; and, if you do as he wishes, you +shall return home next day, and take me with you.” + +“Take you with her, pitiful changeling!” I exclaimed. “_You_ marry? +Why, the man is mad! or he thinks us fools, every one. And do you +imagine that beautiful young lady, that healthy, hearty girl, will tie +herself to a little perishing monkey like you? Are you cherishing the +notion that _anybody_, let alone Miss Catherine Linton, would have you +for a husband? You want whipping for bringing us in here at all, with +your dastardly puling tricks: and—don’t look so silly, now! I’ve a very +good mind to shake you severely, for your contemptible treachery, and +your imbecile conceit.” + +I did give him a slight shaking; but it brought on the cough, and he +took to his ordinary resource of moaning and weeping, and Catherine +rebuked me. + +“Stay all night? No,” she said, looking slowly round. “Ellen, I’ll burn +that door down but I’ll get out.” + +And she would have commenced the execution of her threat directly, but +Linton was up in alarm for his dear self again. He clasped her in his +two feeble arms sobbing:—“Won’t you have me, and save me? not let me +come to the Grange? Oh, darling Catherine! you mustn’t go and leave, +after all. You _must_ obey my father—you _must_!” + +“I must obey my own,” she replied, “and relieve him from this cruel +suspense. The whole night! What would he think? He’ll be distressed +already. I’ll either break or burn a way out of the house. Be quiet! +You’re in no danger; but if you hinder me—Linton, I love papa better +than you!” + +The mortal terror he felt of Mr. Heathcliff’s anger restored to the boy +his coward’s eloquence. Catherine was near distraught: still, she +persisted that she must go home, and tried entreaty in her turn, +persuading him to subdue his selfish agony. While they were thus +occupied, our jailor re-entered. + +“Your beasts have trotted off,” he said, “and—now Linton! snivelling +again? What has she been doing to you? Come, come—have done, and get to +bed. In a month or two, my lad, you’ll be able to pay her back her +present tyrannies with a vigorous hand. You’re pining for pure love, +are you not? nothing else in the world: and she shall have you! There, +to bed! Zillah won’t be here to-night; you must undress yourself. Hush! +hold your noise! Once in your own room, I’ll not come near you: you +needn’t fear. By chance, you’ve managed tolerably. I’ll look to the +rest.” + +He spoke these words, holding the door open for his son to pass, and +the latter achieved his exit exactly as a spaniel might which suspected +the person who attended on it of designing a spiteful squeeze. The lock +was re-secured. Heathcliff approached the fire, where my mistress and I +stood silent. Catherine looked up, and instinctively raised her hand to +her cheek: his neighbourhood revived a painful sensation. Anybody else +would have been incapable of regarding the childish act with sternness, +but he scowled on her and muttered—“Oh! you are not afraid of me? Your +courage is well disguised: you _seem_ damnably afraid!” + +“I _am_ afraid now,” she replied, “because, if I stay, papa will be +miserable: and how can I endure making him miserable—when he—when +he—Mr. Heathcliff, _let_ me go home! I promise to marry Linton: papa +would like me to: and I love him. Why should you wish to force me to do +what I’ll willingly do of myself?” + +“Let him dare to force you,” I cried. “There’s law in the land, thank +God! there is; though we be in an out-of-the-way place. I’d inform if +he were my own son: and it’s felony without benefit of clergy!” + +“Silence!” said the ruffian. “To the devil with your clamour! I don’t +want _you_ to speak. Miss Linton, I shall enjoy myself remarkably in +thinking your father will be miserable: I shall not sleep for +satisfaction. You could have hit on no surer way of fixing your +residence under my roof for the next twenty-four hours than informing +me that such an event would follow. As to your promise to marry Linton, +I’ll take care you shall keep it; for you shall not quit this place +till it is fulfilled.” + +“Send Ellen, then, to let papa know I’m safe!” exclaimed Catherine, +weeping bitterly. “Or marry me now. Poor papa! Ellen, he’ll think we’re +lost. What shall we do?” + +“Not he! He’ll think you are tired of waiting on him, and run off for a +little amusement,” answered Heathcliff. “You cannot deny that you +entered my house of your own accord, in contempt of his injunctions to +the contrary. And it is quite natural that you should desire amusement +at your age; and that you would weary of nursing a sick man, and that +man _only_ your father. Catherine, his happiest days were over when +your days began. He cursed you, I dare say, for coming into the world +(I did, at least); and it would just do if he cursed you as _he_ went +out of it. I’d join him. I don’t love you! How should I? Weep away. As +far as I can see, it will be your chief diversion hereafter; unless +Linton make amends for other losses: and your provident parent appears +to fancy he may. His letters of advice and consolation entertained me +vastly. In his last he recommended my jewel to be careful of his; and +kind to her when he got her. Careful and kind—that’s paternal. But +Linton requires his whole stock of care and kindness for himself. +Linton can play the little tyrant well. He’ll undertake to torture any +number of cats, if their teeth be drawn and their claws pared. You’ll +be able to tell his uncle fine tales of his _kindness_, when you get +home again, I assure you.” + +“You’re right there!” I said; “explain your son’s character. Show his +resemblance to yourself: and then, I hope, Miss Cathy will think twice +before she takes the cockatrice!” + +“I don’t much mind speaking of his amiable qualities now,” he answered; +“because she must either accept him or remain a prisoner, and you along +with her, till your master dies. I can detain you both, quite +concealed, here. If you doubt, encourage her to retract her word, and +you’ll have an opportunity of judging!” + +“I’ll not retract my word,” said Catherine. “I’ll marry him within this +hour, if I may go to Thrushcross Grange afterwards. Mr. Heathcliff, +you’re a cruel man, but you’re not a fiend; and you won’t, from _mere_ +malice, destroy irrevocably all my happiness. If papa thought I had +left him on purpose, and if he died before I returned, could I bear to +live? I’ve given over crying: but I’m going to kneel here, at your +knee; and I’ll not get up, and I’ll not take my eyes from your face +till you look back at me! No, don’t turn away! _do_ look! you’ll see +nothing to provoke you. I don’t hate you. I’m not angry that you struck +me. Have you never loved _anybody_ in all your life, uncle? _never_? +Ah! you must look once. I’m so wretched, you can’t help being sorry and +pitying me.” + +“Keep your eft’s fingers off; and move, or I’ll kick you!” cried +Heathcliff, brutally repulsing her. “I’d rather be hugged by a snake. +How the devil can you dream of fawning on me? I _detest_ you!” + +He shrugged his shoulders: shook himself, indeed, as if his flesh crept +with aversion; and thrust back his chair; while I got up, and opened my +mouth, to commence a downright torrent of abuse. But I was rendered +dumb in the middle of the first sentence, by a threat that I should be +shown into a room by myself the very next syllable I uttered. It was +growing dark—we heard a sound of voices at the garden-gate. Our host +hurried out instantly: _he_ had his wits about him; _we_ had not. There +was a talk of two or three minutes, and he returned alone. + +“I thought it had been your cousin Hareton,” I observed to Catherine. +“I wish he would arrive! Who knows but he might take our part?” + +“It was three servants sent to seek you from the Grange,” said +Heathcliff, overhearing me. “You should have opened a lattice and +called out: but I could swear that chit is glad you didn’t. She’s glad +to be obliged to stay, I’m certain.” + +At learning the chance we had missed, we both gave vent to our grief +without control; and he allowed us to wail on till nine o’clock. Then +he bid us go upstairs, through the kitchen, to Zillah’s chamber; and I +whispered my companion to obey: perhaps we might contrive to get +through the window there, or into a garret, and out by its skylight. +The window, however, was narrow, like those below, and the garret trap +was safe from our attempts; for we were fastened in as before. We +neither of us lay down: Catherine took her station by the lattice, and +watched anxiously for morning; a deep sigh being the only answer I +could obtain to my frequent entreaties that she would try to rest. I +seated myself in a chair, and rocked to and fro, passing harsh judgment +on my many derelictions of duty; from which, it struck me then, all the +misfortunes of my employers sprang. It was not the case, in reality, I +am aware; but it was, in my imagination, that dismal night; and I +thought Heathcliff himself less guilty than I. + +At seven o’clock he came, and inquired if Miss Linton had risen. She +ran to the door immediately, and answered, “Yes.” “Here, then,” he +said, opening it, and pulling her out. I rose to follow, but he turned +the lock again. I demanded my release. + +“Be patient,” he replied; “I’ll send up your breakfast in a while.” + +I thumped on the panels, and rattled the latch angrily; and Catherine +asked why I was still shut up? He answered, I must try to endure it +another hour, and they went away. I endured it two or three hours; at +length, I heard a footstep: not Heathcliff’s. + +“I’ve brought you something to eat,” said a voice; “oppen t’ door!” + +Complying eagerly, I beheld Hareton, laden with food enough to last me +all day. + +“Tak’ it,” he added, thrusting the tray into my hand. + +“Stay one minute,” I began. + +“Nay,” cried he, and retired, regardless of any prayers I could pour +forth to detain him. + +And there I remained enclosed the whole day, and the whole of the next +night; and another, and another. Five nights and four days I remained, +altogether, seeing nobody but Hareton once every morning; and he was a +model of a jailor: surly, and dumb, and deaf to every attempt at moving +his sense of justice or compassion. + + + + +CHAPTER XXVIII + + +On the fifth morning, or rather afternoon, a different step +approached—lighter and shorter; and, this time, the person entered the +room. It was Zillah; donned in her scarlet shawl, with a black silk +bonnet on her head, and a willow-basket swung to her arm. + +“Eh, dear! Mrs. Dean!” she exclaimed. “Well! there is a talk about you +at Gimmerton. I never thought but you were sunk in the Blackhorse +marsh, and missy with you, till master told me you’d been found, and +he’d lodged you here! What! and you must have got on an island, sure? +And how long were you in the hole? Did master save you, Mrs. Dean? But +you’re not so thin—you’ve not been so poorly, have you?” + +“Your master is a true scoundrel!” I replied. “But he shall answer for +it. He needn’t have raised that tale: it shall all be laid bare!” + +“What do you mean?” asked Zillah. “It’s not his tale: they tell that in +the village—about your being lost in the marsh; and I calls to +Earnshaw, when I come in—‘Eh, they’s queer things, Mr. Hareton, +happened since I went off. It’s a sad pity of that likely young lass, +and cant Nelly Dean.’ He stared. I thought he had not heard aught, so I +told him the rumour. The master listened, and he just smiled to +himself, and said, ‘If they have been in the marsh, they are out now, +Zillah. Nelly Dean is lodged, at this minute, in your room. You can +tell her to flit, when you go up; here is the key. The bog-water got +into her head, and she would have run home quite flighty, but I fixed +her till she came round to her senses. You can bid her go to the Grange +at once, if she be able, and carry a message from me, that her young +lady will follow in time to attend the squire’s funeral.’” + +“Mr. Edgar is not dead?” I gasped. “Oh! Zillah, Zillah!” + +“No, no; sit you down, my good mistress,” she replied; “you’re right +sickly yet. He’s not dead; Doctor Kenneth thinks he may last another +day. I met him on the road and asked.” + +Instead of sitting down, I snatched my outdoor things, and hastened +below, for the way was free. On entering the house, I looked about for +some one to give information of Catherine. The place was filled with +sunshine, and the door stood wide open; but nobody seemed at hand. As I +hesitated whether to go off at once, or return and seek my mistress, a +slight cough drew my attention to the hearth. Linton lay on the settle, +sole tenant, sucking a stick of sugar-candy, and pursuing my movements +with apathetic eyes. “Where is Miss Catherine?” I demanded sternly, +supposing I could frighten him into giving intelligence, by catching +him thus, alone. He sucked on like an innocent. + +“Is she gone?” I said. + +“No,” he replied; “she’s upstairs: she’s not to go; we won’t let her.” + +“You won’t let her, little idiot!” I exclaimed. “Direct me to her room +immediately, or I’ll make you sing out sharply.” + +“Papa would make you sing out, if you attempted to get there,” he +answered. “He says I’m not to be soft with Catherine: she’s my wife, +and it’s shameful that she should wish to leave me. He says she hates +me and wants me to die, that she may have my money; but she shan’t have +it: and she shan’t go home! She never shall!—she may cry, and be sick +as much as she pleases!” + +He resumed his former occupation, closing his lids, as if he meant to +drop asleep. + +“Master Heathcliff,” I resumed, “have you forgotten all Catherine’s +kindness to you last winter, when you affirmed you loved her, and when +she brought you books and sung you songs, and came many a time through +wind and snow to see you? She wept to miss one evening, because you +would be disappointed; and you felt then that she was a hundred times +too good to you: and now you believe the lies your father tells, though +you know he detests you both. And you join him against her. That’s fine +gratitude, is it not?” + +The corner of Linton’s mouth fell, and he took the sugar-candy from his +lips. + +“Did she come to Wuthering Heights because she hated you?” I continued. +“Think for yourself! As to your money, she does not even know that you +will have any. And you say she’s sick; and yet you leave her alone, up +there in a strange house! _You_ who have felt what it is to be so +neglected! You could pity your own sufferings; and she pitied them, +too; but you won’t pity hers! I shed tears, Master Heathcliff, you +see—an elderly woman, and a servant merely—and you, after pretending +such affection, and having reason to worship her almost, store every +tear you have for yourself, and lie there quite at ease. Ah! you’re a +heartless, selfish boy!” + +“I can’t stay with her,” he answered crossly. “I’ll not stay by myself. +She cries so I can’t bear it. And she won’t give over, though I say +I’ll call my father. I did call him once, and he threatened to strangle +her if she was not quiet; but she began again the instant he left the +room, moaning and grieving all night long, though I screamed for +vexation that I couldn’t sleep.” + +“Is Mr. Heathcliff out?” I inquired, perceiving that the wretched +creature had no power to sympathise with his cousin’s mental tortures. + +“He’s in the court,” he replied, “talking to Doctor Kenneth; who says +uncle is dying, truly, at last. I’m glad, for I shall be master of the +Grange after him. Catherine always spoke of it as _her_ house. It isn’t +hers! It’s mine: papa says everything she has is mine. All her nice +books are mine; she offered to give me them, and her pretty birds, and +her pony Minny, if I would get the key of our room, and let her out; +but I told her she had nothing to give, they were all, all mine. And +then she cried, and took a little picture from her neck, and said I +should have that; two pictures in a gold case, on one side her mother, +and on the other uncle, when they were young. That was yesterday—I said +_they_ were mine, too; and tried to get them from her. The spiteful +thing wouldn’t let me: she pushed me off, and hurt me. I shrieked +out—that frightens her—she heard papa coming, and she broke the hinges +and divided the case, and gave me her mother’s portrait; the other she +attempted to hide: but papa asked what was the matter, and I explained +it. He took the one I had away, and ordered her to resign hers to me; +she refused, and he—he struck her down, and wrenched it off the chain, +and crushed it with his foot.” + +“And were you pleased to see her struck?” I asked: having my designs in +encouraging his talk. + +“I winked,” he answered: “I wink to see my father strike a dog or a +horse, he does it so hard. Yet I was glad at first—she deserved +punishing for pushing me: but when papa was gone, she made me come to +the window and showed me her cheek cut on the inside, against her +teeth, and her mouth filling with blood; and then she gathered up the +bits of the picture, and went and sat down with her face to the wall, +and she has never spoken to me since: and I sometimes think she can’t +speak for pain. I don’t like to think so; but she’s a naughty thing for +crying continually; and she looks so pale and wild, I’m afraid of her.” + +“And you can get the key if you choose?” I said. + +“Yes, when I am upstairs,” he answered; “but I can’t walk upstairs +now.” + +“In what apartment is it?” I asked. + +“Oh,” he cried, “I shan’t tell _you_ where it is. It is our secret. +Nobody, neither Hareton nor Zillah, is to know. There! you’ve tired +me—go away, go away!” And he turned his face on to his arm, and shut +his eyes again. + +I considered it best to depart without seeing Mr. Heathcliff, and bring +a rescue for my young lady from the Grange. On reaching it, the +astonishment of my fellow-servants to see me, and their joy also, was +intense; and when they heard that their little mistress was safe, two +or three were about to hurry up and shout the news at Mr. Edgar’s door: +but I bespoke the announcement of it myself. How changed I found him, +even in those few days! He lay an image of sadness and resignation +awaiting his death. Very young he looked: though his actual age was +thirty-nine, one would have called him ten years younger, at least. He +thought of Catherine; for he murmured her name. I touched his hand, and +spoke. + +“Catherine is coming, dear master!” I whispered; “she is alive and +well; and will be here, I hope, to-night.” + +I trembled at the first effects of this intelligence: he half rose up, +looked eagerly round the apartment, and then sank back in a swoon. As +soon as he recovered, I related our compulsory visit, and detention at +the Heights. I said Heathcliff forced me to go in: which was not quite +true. I uttered as little as possible against Linton; nor did I +describe all his father’s brutal conduct—my intentions being to add no +bitterness, if I could help it, to his already overflowing cup. + +He divined that one of his enemy’s purposes was to secure the personal +property, as well as the estate, to his son: or rather himself; yet why +he did not wait till his decease was a puzzle to my master, because +ignorant how nearly he and his nephew would quit the world together. +However, he felt that his will had better be altered: instead of +leaving Catherine’s fortune at her own disposal, he determined to put +it in the hands of trustees for her use during life, and for her +children, if she had any, after her. By that means, it could not fall +to Mr. Heathcliff should Linton die. + +Having received his orders, I despatched a man to fetch the attorney, +and four more, provided with serviceable weapons, to demand my young +lady of her jailor. Both parties were delayed very late. The single +servant returned first. He said Mr. Green, the lawyer, was out when he +arrived at his house, and he had to wait two hours for his re-entrance; +and then Mr. Green told him he had a little business in the village +that must be done; but he would be at Thrushcross Grange before +morning. The four men came back unaccompanied also. They brought word +that Catherine was ill: too ill to quit her room; and Heathcliff would +not suffer them to see her. I scolded the stupid fellows well for +listening to that tale, which I would not carry to my master; resolving +to take a whole bevy up to the Heights, at daylight, and storm it +literally, unless the prisoner were quietly surrendered to us. Her +father _shall_ see her, I vowed, and vowed again, if that devil be +killed on his own door-stones in trying to prevent it! + +Happily, I was spared the journey and the trouble. I had gone +downstairs at three o’clock to fetch a jug of water; and was passing +through the hall with it in my hand, when a sharp knock at the front +door made me jump. “Oh! it is Green,” I said, recollecting myself—“only +Green,” and I went on, intending to send somebody else to open it; but +the knock was repeated: not loud, and still importunately. I put the +jug on the banister and hastened to admit him myself. The harvest moon +shone clear outside. It was not the attorney. My own sweet little +mistress sprang on my neck sobbing, “Ellen, Ellen! Is papa alive?” + +“Yes,” I cried: “yes, my angel, he is, God be thanked, you are safe +with us again!” + +She wanted to run, breathless as she was, upstairs to Mr. Linton’s +room; but I compelled her to sit down on a chair, and made her drink, +and washed her pale face, chafing it into a faint colour with my apron. +Then I said I must go first, and tell of her arrival; imploring her to +say, she should be happy with young Heathcliff. She stared, but soon +comprehending why I counselled her to utter the falsehood, she assured +me she would not complain. + +I couldn’t abide to be present at their meeting. I stood outside the +chamber-door a quarter of an hour, and hardly ventured near the bed, +then. All was composed, however: Catherine’s despair was as silent as +her father’s joy. She supported him calmly, in appearance; and he fixed +on her features his raised eyes that seemed dilating with ecstasy. + +He died blissfully, Mr. Lockwood: he died so. Kissing her cheek, he +murmured,—“I am going to her; and you, darling child, shall come to +us!” and never stirred or spoke again; but continued that rapt, radiant +gaze, till his pulse imperceptibly stopped and his soul departed. None +could have noticed the exact minute of his death, it was so entirely +without a struggle. + +Whether Catherine had spent her tears, or whether the grief were too +weighty to let them flow, she sat there dry-eyed till the sun rose: she +sat till noon, and would still have remained brooding over that +deathbed, but I insisted on her coming away and taking some repose. It +was well I succeeded in removing her, for at dinner-time appeared the +lawyer, having called at Wuthering Heights to get his instructions how +to behave. He had sold himself to Mr. Heathcliff: that was the cause of +his delay in obeying my master’s summons. Fortunately, no thought of +worldly affairs crossed the latter’s mind, to disturb him, after his +daughter’s arrival. + +Mr. Green took upon himself to order everything and everybody about the +place. He gave all the servants but me, notice to quit. He would have +carried his delegated authority to the point of insisting that Edgar +Linton should not be buried beside his wife, but in the chapel, with +his family. There was the will, however, to hinder that, and my loud +protestations against any infringement of its directions. The funeral +was hurried over; Catherine, Mrs. Linton Heathcliff now, was suffered +to stay at the Grange till her father’s corpse had quitted it. + +She told me that her anguish had at last spurred Linton to incur the +risk of liberating her. She heard the men I sent disputing at the door, +and she gathered the sense of Heathcliff’s answer. It drove her +desperate. Linton who had been conveyed up to the little parlour soon +after I left, was terrified into fetching the key before his father +re-ascended. He had the cunning to unlock and re-lock the door, without +shutting it; and when he should have gone to bed, he begged to sleep +with Hareton, and his petition was granted for once. Catherine stole +out before break of day. She dared not try the doors lest the dogs +should raise an alarm; she visited the empty chambers and examined +their windows; and, luckily, lighting on her mother’s, she got easily +out of its lattice, and on to the ground, by means of the fir-tree +close by. Her accomplice suffered for his share in the escape, +notwithstanding his timid contrivances. + + + + +CHAPTER XXIX + + +The evening after the funeral, my young lady and I were seated in the +library; now musing mournfully—one of us despairingly—on our loss, now +venturing conjectures as to the gloomy future. + +We had just agreed the best destiny which could await Catherine would +be a permission to continue resident at the Grange; at least during +Linton’s life: he being allowed to join her there, and I to remain as +housekeeper. That seemed rather too favourable an arrangement to be +hoped for; and yet I did hope, and began to cheer up under the prospect +of retaining my home and my employment, and, above all, my beloved +young mistress; when a servant—one of the discarded ones, not yet +departed—rushed hastily in, and said “that devil Heathcliff” was coming +through the court: should he fasten the door in his face? + +If we had been mad enough to order that proceeding, we had not time. He +made no ceremony of knocking or announcing his name: he was master, and +availed himself of the master’s privilege to walk straight in, without +saying a word. The sound of our informant’s voice directed him to the +library; he entered and motioning him out, shut the door. + +It was the same room into which he had been ushered, as a guest, +eighteen years before: the same moon shone through the window; and the +same autumn landscape lay outside. We had not yet lighted a candle, but +all the apartment was visible, even to the portraits on the wall: the +splendid head of Mrs. Linton, and the graceful one of her husband. +Heathcliff advanced to the hearth. Time had little altered his person +either. There was the same man: his dark face rather sallower and more +composed, his frame a stone or two heavier, perhaps, and no other +difference. Catherine had risen with an impulse to dash out, when she +saw him. + +“Stop!” he said, arresting her by the arm. “No more runnings away! +Where would you go? I’m come to fetch you home; and I hope you’ll be a +dutiful daughter and not encourage my son to further disobedience. I +was embarrassed how to punish him when I discovered his part in the +business: he’s such a cobweb, a pinch would annihilate him; but you’ll +see by his look that he has received his due! I brought him down one +evening, the day before yesterday, and just set him in a chair, and +never touched him afterwards. I sent Hareton out, and we had the room +to ourselves. In two hours, I called Joseph to carry him up again; and +since then my presence is as potent on his nerves as a ghost; and I +fancy he sees me often, though I am not near. Hareton says he wakes and +shrieks in the night by the hour together, and calls you to protect him +from me; and, whether you like your precious mate, or not, you must +come: he’s your concern now; I yield all my interest in him to you.” + +“Why not let Catherine continue here,” I pleaded, “and send Master +Linton to her? As you hate them both, you’d not miss them: they _can_ +only be a daily plague to your unnatural heart.” + +“I’m seeking a tenant for the Grange,” he answered; “and I want my +children about me, to be sure. Besides, that lass owes me her services +for her bread. I’m not going to nurture her in luxury and idleness +after Linton is gone. Make haste and get ready, now; and don’t oblige +me to compel you.” + +“I shall,” said Catherine. “Linton is all I have to love in the world, +and though you have done what you could to make him hateful to me, and +me to him, you _cannot_ make us hate each other. And I defy you to hurt +him when I am by, and I defy you to frighten me!” + +“You are a boastful champion,” replied Heathcliff; “but I don’t like +you well enough to hurt him: you shall get the full benefit of the +torment, as long as it lasts. It is not I who will make him hateful to +you—it is his own sweet spirit. He’s as bitter as gall at your +desertion and its consequences: don’t expect thanks for this noble +devotion. I heard him draw a pleasant picture to Zillah of what he +would do if he were as strong as I: the inclination is there, and his +very weakness will sharpen his wits to find a substitute for strength.” + +“I know he has a bad nature,” said Catherine: “he’s your son. But I’m +glad I’ve a better, to forgive it; and I know he loves me, and for that +reason I love him. Mr. Heathcliff, _you_ have _nobody_ to love you; +and, however miserable you make us, we shall still have the revenge of +thinking that your cruelty arises from your greater misery. You _are_ +miserable, are you not? Lonely, like the devil, and envious like him? +_Nobody_ loves you—_nobody_ will cry for you when you die! I wouldn’t +be you!” + +Catherine spoke with a kind of dreary triumph: she seemed to have made +up her mind to enter into the spirit of her future family, and draw +pleasure from the griefs of her enemies. + +“You shall be sorry to be yourself presently,” said her father-in-law, +“if you stand there another minute. Begone, witch, and get your +things!” + +She scornfully withdrew. In her absence I began to beg for Zillah’s +place at the Heights, offering to resign mine to her; but he would +suffer it on no account. He bid me be silent; and then, for the first +time, allowed himself a glance round the room and a look at the +pictures. Having studied Mrs. Linton’s, he said—“I shall have that +home. Not because I need it, but—” He turned abruptly to the fire, and +continued, with what, for lack of a better word, I must call a +smile—“I’ll tell you what I did yesterday! I got the sexton, who was +digging Linton’s grave, to remove the earth off her coffin lid, and I +opened it. I thought, once, I would have stayed there: when I saw her +face again—it is hers yet!—he had hard work to stir me; but he said it +would change if the air blew on it, and so I struck one side of the +coffin loose, and covered it up: not Linton’s side, damn him! I wish +he’d been soldered in lead. And I bribed the sexton to pull it away +when I’m laid there, and slide mine out too; I’ll have it made so: and +then by the time Linton gets to us he’ll not know which is which!” + +“You were very wicked, Mr. Heathcliff!” I exclaimed; “were you not +ashamed to disturb the dead?” + +“I disturbed nobody, Nelly,” he replied; “and I gave some ease to +myself. I shall be a great deal more comfortable now; and you’ll have a +better chance of keeping me underground, when I get there. Disturbed +her? No! she has disturbed me, night and day, through eighteen +years—incessantly—remorselessly—till yesternight; and yesternight I was +tranquil. I dreamt I was sleeping the last sleep by that sleeper, with +my heart stopped and my cheek frozen against hers.” + +“And if she had been dissolved into earth, or worse, what would you +have dreamt of then?” I said. + +“Of dissolving with her, and being more happy still!” he answered. “Do +you suppose I dread any change of that sort? I expected such a +transformation on raising the lid, but I’m better pleased that it should +not commence till I share it. Besides, unless I had received a distinct +impression of her passionless features, that strange feeling would +hardly have been removed. It began oddly. You know I was wild after she +died; and eternally, from dawn to dawn, praying her to return to me her +spirit! I have a strong faith in ghosts: I have a conviction that they +can, and do, exist among us! The day she was buried, there came a fall +of snow. In the evening I went to the churchyard. It blew bleak as +winter—all round was solitary. I didn’t fear that her fool of a husband +would wander up the glen so late; and no one else had business to bring +them there. Being alone, and conscious two yards of loose earth was the +sole barrier between us, I said to myself—‘I’ll have her in my arms +again! If she be cold, I’ll think it is this north wind that chills +_me_; and if she be motionless, it is sleep.’ I got a spade from the +tool-house, and began to delve with all my might—it scraped the coffin; +I fell to work with my hands; the wood commenced cracking about the +screws; I was on the point of attaining my object, when it seemed that +I heard a sigh from some one above, close at the edge of the grave, and +bending down. ‘If I can only get this off,’ I muttered, ‘I wish they +may shovel in the earth over us both!’ and I wrenched at it more +desperately still. There was another sigh, close at my ear. I appeared +to feel the warm breath of it displacing the sleet-laden wind. I knew +no living thing in flesh and blood was by; but, as certainly as you +perceive the approach to some substantial body in the dark, though it +cannot be discerned, so certainly I felt that Cathy was there: not +under me, but on the earth. A sudden sense of relief flowed from my +heart through every limb. I relinquished my labour of agony, and turned +consoled at once: unspeakably consoled. Her presence was with me: it +remained while I re-filled the grave, and led me home. You may laugh, +if you will; but I was sure I should see her there. I was sure she was +with me, and I could not help talking to her. Having reached the +Heights, I rushed eagerly to the door. It was fastened; and, I +remember, that accursed Earnshaw and my wife opposed my entrance. I +remember stopping to kick the breath out of him, and then hurrying +upstairs, to my room and hers. I looked round impatiently—I felt her by +me—I could _almost_ see her, and yet I _could not_! I ought to have +sweat blood then, from the anguish of my yearning—from the fervour of +my supplications to have but one glimpse! I had not one. She showed +herself, as she often was in life, a devil to me! And, since then, +sometimes more and sometimes less, I’ve been the sport of that +intolerable torture! Infernal! keeping my nerves at such a stretch +that, if they had not resembled catgut, they would long ago have +relaxed to the feebleness of Linton’s. When I sat in the house with +Hareton, it seemed that on going out I should meet her; when I walked +on the moors I should meet her coming in. When I went from home I +hastened to return; she _must_ be somewhere at the Heights, I was +certain! And when I slept in her chamber—I was beaten out of that. I +couldn’t lie there; for the moment I closed my eyes, she was either +outside the window, or sliding back the panels, or entering the room, +or even resting her darling head on the same pillow as she did when a +child; and I must open my lids to see. And so I opened and closed them +a hundred times a night—to be always disappointed! It racked me! I’ve +often groaned aloud, till that old rascal Joseph no doubt believed that +my conscience was playing the fiend inside of me. Now, since I’ve seen +her, I’m pacified—a little. It was a strange way of killing: not by +inches, but by fractions of hairbreadths, to beguile me with the +spectre of a hope through eighteen years!” + +Mr. Heathcliff paused and wiped his forehead; his hair clung to it, wet +with perspiration; his eyes were fixed on the red embers of the fire, +the brows not contracted, but raised next the temples; diminishing the +grim aspect of his countenance, but imparting a peculiar look of +trouble, and a painful appearance of mental tension towards one +absorbing subject. He only half addressed me, and I maintained silence. +I didn’t like to hear him talk! After a short period he resumed his +meditation on the picture, took it down and leant it against the sofa +to contemplate it at better advantage; and while so occupied Catherine +entered, announcing that she was ready, when her pony should be +saddled. + +“Send that over to-morrow,” said Heathcliff to me; then turning to her, +he added: “You may do without your pony: it is a fine evening, and +you’ll need no ponies at Wuthering Heights; for what journeys you take, +your own feet will serve you. Come along.” + +“Good-bye, Ellen!” whispered my dear little mistress. As she kissed me, +her lips felt like ice. “Come and see me, Ellen; don’t forget.” + +“Take care you do no such thing, Mrs. Dean!” said her new father. “When +I wish to speak to you I’ll come here. I want none of your prying at my +house!” + +He signed her to precede him; and casting back a look that cut my +heart, she obeyed. I watched them, from the window, walk down the +garden. Heathcliff fixed Catherine’s arm under his: though she disputed +the act at first evidently; and with rapid strides he hurried her into +the alley, whose trees concealed them. + + + + +CHAPTER XXX + + +I have paid a visit to the Heights, but I have not seen her since she +left: Joseph held the door in his hand when I called to ask after her, +and wouldn’t let me pass. He said Mrs. Linton was “thrang,” and the +master was not in. Zillah has told me something of the way they go on, +otherwise I should hardly know who was dead and who living. She thinks +Catherine haughty, and does not like her, I can guess by her talk. My +young lady asked some aid of her when she first came; but Mr. +Heathcliff told her to follow her own business, and let his +daughter-in-law look after herself; and Zillah willingly acquiesced, +being a narrow-minded, selfish woman. Catherine evinced a child’s +annoyance at this neglect; repaid it with contempt, and thus enlisted +my informant among her enemies, as securely as if she had done her some +great wrong. I had a long talk with Zillah about six weeks ago, a +little before you came, one day when we foregathered on the moor; and +this is what she told me. + +“The first thing Mrs. Linton did,” she said, “on her arrival at the +Heights, was to run upstairs, without even wishing good-evening to me +and Joseph; she shut herself into Linton’s room, and remained till +morning. Then, while the master and Earnshaw were at breakfast, she +entered the house, and asked all in a quiver if the doctor might be +sent for? her cousin was very ill. + +“‘We know that!’ answered Heathcliff; ‘but his life is not worth a +farthing, and I won’t spend a farthing on him.’ + +“‘But I cannot tell how to do,’ she said; ‘and if nobody will help me, +he’ll die!’ + +“‘Walk out of the room,’ cried the master, ‘and let me never hear a +word more about him! None here care what becomes of him; if you do, act +the nurse; if you do not, lock him up and leave him.’ + +“Then she began to bother me, and I said I’d had enough plague with the +tiresome thing; we each had our tasks, and hers was to wait on Linton: +Mr. Heathcliff bid me leave that labour to her. + +“How they managed together, I can’t tell. I fancy he fretted a great +deal, and moaned hisseln night and day; and she had precious little +rest: one could guess by her white face and heavy eyes. She sometimes +came into the kitchen all wildered like, and looked as if she would +fain beg assistance; but I was not going to disobey the master: I never +dare disobey him, Mrs. Dean; and, though I thought it wrong that +Kenneth should not be sent for, it was no concern of mine either to +advise or complain, and I always refused to meddle. Once or twice, +after we had gone to bed, I’ve happened to open my door again and seen +her sitting crying on the stairs’-top; and then I’ve shut myself in +quick, for fear of being moved to interfere. I did pity her then, I’m +sure: still I didn’t wish to lose my place, you know. + +“At last, one night she came boldly into my chamber, and frightened me +out of my wits, by saying, ‘Tell Mr. Heathcliff that his son is +dying—I’m sure he is, this time. Get up, instantly, and tell him.’ + +“Having uttered this speech, she vanished again. I lay a quarter of an +hour listening and trembling. Nothing stirred—the house was quiet. + +“She’s mistaken, I said to myself. He’s got over it. I needn’t disturb +them; and I began to doze. But my sleep was marred a second time by a +sharp ringing of the bell—the only bell we have, put up on purpose for +Linton; and the master called to me to see what was the matter, and +inform them that he wouldn’t have that noise repeated. + +“I delivered Catherine’s message. He cursed to himself, and in a few +minutes came out with a lighted candle, and proceeded to their room. I +followed. Mrs. Heathcliff was seated by the bedside, with her hands +folded on her knees. Her father-in-law went up, held the light to +Linton’s face, looked at him, and touched him; afterwards he turned to +her. + +“‘Now—Catherine,’ he said, ‘how do you feel?’ + +“She was dumb. + +“‘How do you feel, Catherine?’ he repeated. + +“‘He’s safe, and I’m free,’ she answered: ‘I should feel well—but,’ she +continued, with a bitterness she couldn’t conceal, ‘you have left me so +long to struggle against death alone, that I feel and see only death! I +feel like death!’ + +“And she looked like it, too! I gave her a little wine. Hareton and +Joseph, who had been wakened by the ringing and the sound of feet, and +heard our talk from outside, now entered. Joseph was fain, I believe, +of the lad’s removal; Hareton seemed a thought bothered: though he was +more taken up with staring at Catherine than thinking of Linton. But +the master bid him get off to bed again: we didn’t want his help. He +afterwards made Joseph remove the body to his chamber, and told me to +return to mine, and Mrs. Heathcliff remained by herself. + +“In the morning, he sent me to tell her she must come down to +breakfast: she had undressed, and appeared going to sleep, and said she +was ill; at which I hardly wondered. I informed Mr. Heathcliff, and he +replied,—‘Well, let her be till after the funeral; and go up now and +then to get her what is needful; and, as soon as she seems better, tell +me.’” + +Cathy stayed upstairs a fortnight, according to Zillah; who visited her +twice a day, and would have been rather more friendly, but her attempts +at increasing kindness were proudly and promptly repelled. + +Heathcliff went up once, to show her Linton’s will. He had bequeathed +the whole of his, and what had been her, moveable property, to his +father: the poor creature was threatened, or coaxed, into that act +during her week’s absence, when his uncle died. The lands, being a +minor, he could not meddle with. However, Mr. Heathcliff has claimed +and kept them in his wife’s right and his also: I suppose legally; at +any rate, Catherine, destitute of cash and friends, cannot disturb his +possession. + +“Nobody,” said Zillah, “ever approached her door, except that once, but +I; and nobody asked anything about her. The first occasion of her +coming down into the house was on a Sunday afternoon. She had cried +out, when I carried up her dinner, that she couldn’t bear any longer +being in the cold; and I told her the master was going to Thrushcross +Grange, and Earnshaw and I needn’t hinder her from descending; so, as +soon as she heard Heathcliff’s horse trot off, she made her appearance, +donned in black, and her yellow curls combed back behind her ears as +plain as a Quaker: she couldn’t comb them out. + +“Joseph and I generally go to chapel on Sundays:” the kirk, (you know, +has no minister now, explained Mrs. Dean; and they call the Methodists’ +or Baptists’ place, I can’t say which it is, at Gimmerton, a chapel.) +“Joseph had gone,” she continued, “but I thought proper to bide at +home. Young folks are always the better for an elder’s over-looking; +and Hareton, with all his bashfulness, isn’t a model of nice behaviour. +I let him know that his cousin would very likely sit with us, and she +had been always used to see the Sabbath respected; so he had as good +leave his guns and bits of indoor work alone, while she stayed. He +coloured up at the news, and cast his eyes over his hands and clothes. +The train-oil and gunpowder were shoved out of sight in a minute. I saw +he meant to give her his company; and I guessed, by his way, he wanted +to be presentable; so, laughing, as I durst not laugh when the master +is by, I offered to help him, if he would, and joked at his confusion. +He grew sullen, and began to swear. + +“Now, Mrs. Dean,” Zillah went on, seeing me not pleased by her manner, +“you happen think your young lady too fine for Mr. Hareton; and happen +you’re right: but I own I should love well to bring her pride a peg +lower. And what will all her learning and her daintiness do for her, +now? She’s as poor as you or I: poorer, I’ll be bound: you’re saving, +and I’m doing my little all that road.” + +Hareton allowed Zillah to give him her aid; and she flattered him into +a good humour; so, when Catherine came, half forgetting her former +insults, he tried to make himself agreeable, by the housekeeper’s +account. + +“Missis walked in,” she said, “as chill as an icicle, and as high as a +princess. I got up and offered her my seat in the arm-chair. No, she +turned up her nose at my civility. Earnshaw rose, too, and bid her come +to the settle, and sit close by the fire: he was sure she was starved. + +“‘I’ve been starved a month and more,’ she answered, resting on the +word as scornful as she could. + +“And she got a chair for herself, and placed it at a distance from both +of us. Having sat till she was warm, she began to look round, and +discovered a number of books on the dresser; she was instantly upon her +feet again, stretching to reach them: but they were too high up. Her +cousin, after watching her endeavours a while, at last summoned courage +to help her; she held her frock, and he filled it with the first that +came to hand. + +“That was a great advance for the lad. She didn’t thank him; still, he +felt gratified that she had accepted his assistance, and ventured to +stand behind as she examined them, and even to stoop and point out what +struck his fancy in certain old pictures which they contained; nor was +he daunted by the saucy style in which she jerked the page from his +finger: he contented himself with going a bit farther back and looking +at her instead of the book. She continued reading, or seeking for +something to read. His attention became, by degrees, quite centred in +the study of her thick silky curls: her face he couldn’t see, and she +couldn’t see him. And, perhaps, not quite awake to what he did, but +attracted like a child to a candle, at last he proceeded from staring +to touching; he put out his hand and stroked one curl, as gently as if +it were a bird. He might have stuck a knife into her neck, she started +round in such a taking. + +“‘Get away this moment! How dare you touch me? Why are you stopping +there?’ she cried, in a tone of disgust. ‘I can’t endure you! I’ll go +upstairs again, if you come near me.’ + +“Mr. Hareton recoiled, looking as foolish as he could do: he sat down +in the settle very quiet, and she continued turning over her volumes +another half hour; finally, Earnshaw crossed over, and whispered to me. + +“‘Will you ask her to read to us, Zillah? I’m stalled of doing naught; +and I do like—I could like to hear her! Dunnot say I wanted it, but ask +of yourseln.’ + +“‘Mr. Hareton wishes you would read to us, ma’am,’ I said, immediately. +‘He’d take it very kind—he’d be much obliged.’ + +“She frowned; and looking up, answered— + +“‘Mr. Hareton, and the whole set of you, will be good enough to +understand that I reject any pretence at kindness you have the +hypocrisy to offer! I despise you, and will have nothing to say to any +of you! When I would have given my life for one kind word, even to see +one of your faces, you all kept off. But I won’t complain to you! I’m +driven down here by the cold; not either to amuse you or enjoy your +society.’ + +“‘What could I ha’ done?’ began Earnshaw. ‘How was I to blame?’ + +“‘Oh! you are an exception,’ answered Mrs. Heathcliff. ‘I never missed +such a concern as you.’ + +“‘But I offered more than once, and asked,’ he said, kindling up at her +pertness, ‘I asked Mr. Heathcliff to let me wake for you—’ + +“‘Be silent! I’ll go out of doors, or anywhere, rather than have your +disagreeable voice in my ear!’ said my lady. + +“Hareton muttered she might go to hell, for him! and unslinging his +gun, restrained himself from his Sunday occupations no longer. He +talked now, freely enough; and she presently saw fit to retreat to her +solitude: but the frost had set in, and, in spite of her pride, she was +forced to condescend to our company, more and more. However, I took +care there should be no further scorning at my good nature: ever since, +I’ve been as stiff as herself; and she has no lover or liker among us: +and she does not deserve one; for, let them say the least word to her, +and she’ll curl back without respect of any one. She’ll snap at the +master himself, and as good as dares him to thrash her; and the more +hurt she gets, the more venomous she grows.” + +At first, on hearing this account from Zillah, I determined to leave my +situation, take a cottage, and get Catherine to come and live with me: +but Mr. Heathcliff would as soon permit that as he would set up Hareton +in an independent house; and I can see no remedy, at present, unless +she could marry again; and that scheme it does not come within my +province to arrange. + +* * * * * + + +Thus ended Mrs. Dean’s story. Notwithstanding the doctor’s prophecy, I +am rapidly recovering strength; and though it be only the second week +in January, I propose getting out on horseback in a day or two, and +riding over to Wuthering Heights, to inform my landlord that I shall +spend the next six months in London; and, if he likes, he may look out +for another tenant to take the place after October. I would not pass +another winter here for much. + + + + +CHAPTER XXXI + + +Yesterday was bright, calm, and frosty. I went to the Heights as I +proposed: my housekeeper entreated me to bear a little note from her to +her young lady, and I did not refuse, for the worthy woman was not +conscious of anything odd in her request. The front door stood open, +but the jealous gate was fastened, as at my last visit; I knocked and +invoked Earnshaw from among the garden-beds; he unchained it, and I +entered. The fellow is as handsome a rustic as need be seen. I took +particular notice of him this time; but then he does his best +apparently to make the least of his advantages. + +I asked if Mr. Heathcliff were at home? He answered, No; but he would +be in at dinner-time. It was eleven o’clock, and I announced my +intention of going in and waiting for him; at which he immediately +flung down his tools and accompanied me, in the office of watchdog, not +as a substitute for the host. + +We entered together; Catherine was there, making herself useful in +preparing some vegetables for the approaching meal; she looked more +sulky and less spirited than when I had seen her first. She hardly +raised her eyes to notice me, and continued her employment with the +same disregard to common forms of politeness as before; never returning +my bow and good-morning by the slightest acknowledgment. + +“She does not seem so amiable,” I thought, “as Mrs. Dean would persuade +me to believe. She’s a beauty, it is true; but not an angel.” + +Earnshaw surlily bid her remove her things to the kitchen. “Remove them +yourself,” she said, pushing them from her as soon as she had done; and +retiring to a stool by the window, where she began to carve figures of +birds and beasts out of the turnip-parings in her lap. I approached +her, pretending to desire a view of the garden; and, as I fancied, +adroitly dropped Mrs. Dean’s note on to her knee, unnoticed by +Hareton—but she asked aloud, “What is that?” And chucked it off. + +“A letter from your old acquaintance, the housekeeper at the Grange,” I +answered; annoyed at her exposing my kind deed, and fearful lest it +should be imagined a missive of my own. She would gladly have gathered +it up at this information, but Hareton beat her; he seized and put it +in his waistcoat, saying Mr. Heathcliff should look at it first. +Thereat, Catherine silently turned her face from us, and, very +stealthily, drew out her pocket-handkerchief and applied it to her +eyes; and her cousin, after struggling awhile to keep down his softer +feelings, pulled out the letter and flung it on the floor beside her, +as ungraciously as he could. Catherine caught and perused it eagerly; +then she put a few questions to me concerning the inmates, rational and +irrational, of her former home; and gazing towards the hills, murmured +in soliloquy: + +“I should like to be riding Minny down there! I should like to be +climbing up there! Oh! I’m tired—I’m _stalled_, Hareton!” And she leant +her pretty head back against the sill, with half a yawn and half a +sigh, and lapsed into an aspect of abstracted sadness: neither caring +nor knowing whether we remarked her. + +“Mrs. Heathcliff,” I said, after sitting some time mute, “you are not +aware that I am an acquaintance of yours? so intimate that I think it +strange you won’t come and speak to me. My housekeeper never wearies of +talking about and praising you; and she’ll be greatly disappointed if I +return with no news of or from you, except that you received her letter +and said nothing!” + +She appeared to wonder at this speech, and asked,— + +“Does Ellen like you?” + +“Yes, very well,” I replied, hesitatingly. + +“You must tell her,” she continued, “that I would answer her letter, +but I have no materials for writing: not even a book from which I might +tear a leaf.” + +“No books!” I exclaimed. “How do you contrive to live here without +them? if I may take the liberty to inquire. Though provided with a +large library, I’m frequently very dull at the Grange; take my books +away, and I should be desperate!” + +“I was always reading, when I had them,” said Catherine; “and Mr. +Heathcliff never reads; so he took it into his head to destroy my +books. I have not had a glimpse of one for weeks. Only once, I searched +through Joseph’s store of theology, to his great irritation; and once, +Hareton, I came upon a secret stock in your room—some Latin and Greek, +and some tales and poetry: all old friends. I brought the last here—and +you gathered them, as a magpie gathers silver spoons, for the mere love +of stealing! They are of no use to you; or else you concealed them in +the bad spirit that, as you cannot enjoy them, nobody else shall. +Perhaps _your_ envy counselled Mr. Heathcliff to rob me of my +treasures? But I’ve most of them written on my brain and printed in my +heart, and you cannot deprive me of those!” + +Earnshaw blushed crimson when his cousin made this revelation of his +private literary accumulations, and stammered an indignant denial of +her accusations. + +“Mr. Hareton is desirous of increasing his amount of knowledge,” I +said, coming to his rescue. “He is not _envious_, but _emulous_ of your +attainments. He’ll be a clever scholar in a few years.” + +“And he wants me to sink into a dunce, meantime,” answered Catherine. +“Yes, I hear him trying to spell and read to himself, and pretty +blunders he makes! I wish you would repeat Chevy Chase as you did +yesterday: it was extremely funny. I heard you; and I heard you turning +over the dictionary to seek out the hard words, and then cursing +because you couldn’t read their explanations!” + +The young man evidently thought it too bad that he should be laughed at +for his ignorance, and then laughed at for trying to remove it. I had a +similar notion; and, remembering Mrs. Dean’s anecdote of his first +attempt at enlightening the darkness in which he had been reared, I +observed,—“But, Mrs. Heathcliff, we have each had a commencement, and +each stumbled and tottered on the threshold; had our teachers scorned +instead of aiding us, we should stumble and totter yet.” + +“Oh!” she replied, “I don’t wish to limit his acquirements: still, he +has no right to appropriate what is mine, and make it ridiculous to me +with his vile mistakes and mispronunciations! Those books, both prose +and verse, are consecrated to me by other associations; and I hate to +have them debased and profaned in his mouth! Besides, of all, he has +selected my favourite pieces that I love the most to repeat, as if out +of deliberate malice.” + +Hareton’s chest heaved in silence a minute: he laboured under a severe +sense of mortification and wrath, which it was no easy task to +suppress. I rose, and, from a gentlemanly idea of relieving his +embarrassment, took up my station in the doorway, surveying the +external prospect as I stood. He followed my example, and left the +room; but presently reappeared, bearing half a dozen volumes in his +hands, which he threw into Catherine’s lap, exclaiming,—“Take them! I +never want to hear, or read, or think of them again!” + +“I won’t have them now,” she answered. “I shall connect them with you, +and hate them.” + +She opened one that had obviously been often turned over, and read a +portion in the drawling tone of a beginner; then laughed, and threw it +from her. “And listen,” she continued, provokingly, commencing a verse +of an old ballad in the same fashion. + +But his self-love would endure no further torment: I heard, and not +altogether disapprovingly, a manual check given to her saucy tongue. +The little wretch had done her utmost to hurt her cousin’s sensitive +though uncultivated feelings, and a physical argument was the only mode +he had of balancing the account, and repaying its effects on the +inflictor. He afterwards gathered the books and hurled them on the +fire. I read in his countenance what anguish it was to offer that +sacrifice to spleen. I fancied that as they consumed, he recalled the +pleasure they had already imparted, and the triumph and ever-increasing +pleasure he had anticipated from them; and I fancied I guessed the +incitement to his secret studies also. He had been content with daily +labour and rough animal enjoyments, till Catherine crossed his path. +Shame at her scorn, and hope of her approval, were his first prompters +to higher pursuits; and instead of guarding him from one and winning +him to the other, his endeavours to raise himself had produced just the +contrary result. + +“Yes, that’s all the good that such a brute as you can get from them!” +cried Catherine, sucking her damaged lip, and watching the +conflagration with indignant eyes. + +“You’d _better_ hold your tongue, now,” he answered fiercely. + +And his agitation precluded further speech; he advanced hastily to the +entrance, where I made way for him to pass. But ere he had crossed the +door-stones, Mr. Heathcliff, coming up the causeway, encountered him, +and laying hold of his shoulder asked,—“What’s to do now, my lad?” + +“Naught, naught,” he said, and broke away to enjoy his grief and anger +in solitude. + +Heathcliff gazed after him, and sighed. + +“It will be odd if I thwart myself,” he muttered, unconscious that I +was behind him. “But when I look for his father in his face, I find +_her_ every day more! How the devil is he so like? I can hardly bear to +see him.” + +He bent his eyes to the ground, and walked moodily in. There was a +restless, anxious expression in his countenance, I had never remarked +there before; and he looked sparer in person. His daughter-in-law, on +perceiving him through the window, immediately escaped to the kitchen, +so that I remained alone. + +“I’m glad to see you out of doors again, Mr. Lockwood,” he said, in +reply to my greeting; “from selfish motives partly: I don’t think I +could readily supply your loss in this desolation. I’ve wondered more +than once what brought you here.” + +“An idle whim, I fear, sir,” was my answer; “or else an idle whim is +going to spirit me away. I shall set out for London next week; and I +must give you warning that I feel no disposition to retain Thrushcross +Grange beyond the twelve months I agreed to rent it. I believe I shall +not live there any more.” + +“Oh, indeed; you’re tired of being banished from the world, are you?” +he said. “But if you be coming to plead off paying for a place you +won’t occupy, your journey is useless: I never relent in exacting my +due from any one.” + +“I’m coming to plead off nothing about it,” I exclaimed, considerably +irritated. “Should you wish it, I’ll settle with you now,” and I drew +my note-book from my pocket. + +“No, no,” he replied, coolly; “you’ll leave sufficient behind to cover +your debts, if you fail to return: I’m not in such a hurry. Sit down +and take your dinner with us; a guest that is safe from repeating his +visit can generally be made welcome. Catherine! bring the things in: +where are you?” + +Catherine reappeared, bearing a tray of knives and forks. + +“You may get your dinner with Joseph,” muttered Heathcliff, aside, “and +remain in the kitchen till he is gone.” + +She obeyed his directions very punctually: perhaps she had no +temptation to transgress. Living among clowns and misanthropists, she +probably cannot appreciate a better class of people when she meets +them. + +With Mr. Heathcliff, grim and saturnine, on the one hand, and Hareton, +absolutely dumb, on the other, I made a somewhat cheerless meal, and +bade adieu early. I would have departed by the back way, to get a last +glimpse of Catherine and annoy old Joseph; but Hareton received orders +to lead up my horse, and my host himself escorted me to the door, so I +could not fulfil my wish. + +“How dreary life gets over in that house!” I reflected, while riding +down the road. “What a realisation of something more romantic than a +fairy tale it would have been for Mrs. Linton Heathcliff, had she and I +struck up an attachment, as her good nurse desired, and migrated +together into the stirring atmosphere of the town!” + + + + +CHAPTER XXXII + + +1802.—This September I was invited to devastate the moors of a friend +in the north, and on my journey to his abode, I unexpectedly came +within fifteen miles of Gimmerton. The ostler at a roadside +public-house was holding a pail of water to refresh my horses, when a +cart of very green oats, newly reaped, passed by, and he +remarked,—“Yon’s frough Gimmerton, nah! They’re allas three wick’ after +other folk wi’ ther harvest.” + +“Gimmerton?” I repeated—my residence in that locality had already grown +dim and dreamy. “Ah! I know. How far is it from this?” + +“Happen fourteen mile o’er th’ hills; and a rough road,” he answered. + +A sudden impulse seized me to visit Thrushcross Grange. It was scarcely +noon, and I conceived that I might as well pass the night under my own +roof as in an inn. Besides, I could spare a day easily to arrange +matters with my landlord, and thus save myself the trouble of invading +the neighbourhood again. Having rested awhile, I directed my servant to +inquire the way to the village; and, with great fatigue to our beasts, +we managed the distance in some three hours. + +I left him there, and proceeded down the valley alone. The grey church +looked greyer, and the lonely churchyard lonelier. I distinguished a +moor-sheep cropping the short turf on the graves. It was sweet, warm +weather—too warm for travelling; but the heat did not hinder me from +enjoying the delightful scenery above and below: had I seen it nearer +August, I’m sure it would have tempted me to waste a month among its +solitudes. In winter nothing more dreary, in summer nothing more +divine, than those glens shut in by hills, and those bluff, bold swells +of heath. + +I reached the Grange before sunset, and knocked for admittance; but the +family had retreated into the back premises, I judged, by one thin, +blue wreath, curling from the kitchen chimney, and they did not hear. I +rode into the court. Under the porch, a girl of nine or ten sat +knitting, and an old woman reclined on the housesteps, smoking a +meditative pipe. + +“Is Mrs. Dean within?” I demanded of the dame. + +“Mistress Dean? Nay!” she answered, “she doesn’t bide here: shoo’s up +at th’ Heights.” + +“Are you the housekeeper, then?” I continued. + +“Eea, Aw keep th’ hause,” she replied. + +“Well, I’m Mr. Lockwood, the master. Are there any rooms to lodge me +in, I wonder? I wish to stay all night.” + +“T’ maister!” she cried in astonishment. “Whet, whoiver knew yah wur +coming? Yah sud ha’ send word. They’s nowt norther dry nor mensful +abaht t’ place: nowt there isn’t!” + +She threw down her pipe and bustled in, the girl followed, and I +entered too; soon perceiving that her report was true, and, moreover, +that I had almost upset her wits by my unwelcome apparition, I bade her +be composed. I would go out for a walk; and, meantime she must try to +prepare a corner of a sitting-room for me to sup in, and a bedroom to +sleep in. No sweeping and dusting, only good fire and dry sheets were +necessary. She seemed willing to do her best; though she thrust the +hearth-brush into the grates in mistake for the poker, and +malappropriated several other articles of her craft: but I retired, +confiding in her energy for a resting-place against my return. +Wuthering Heights was the goal of my proposed excursion. An +after-thought brought me back, when I had quitted the court. + +“All well at the Heights?” I inquired of the woman. + +“Eea, f’r owt ee knaw!” she answered, skurrying away with a pan of hot +cinders. + +I would have asked why Mrs. Dean had deserted the Grange, but it was +impossible to delay her at such a crisis, so I turned away and made my +exit, rambling leisurely along, with the glow of a sinking sun behind, +and the mild glory of a rising moon in front—one fading, and the other +brightening—as I quitted the park, and climbed the stony by-road +branching off to Mr. Heathcliff’s dwelling. Before I arrived in sight +of it, all that remained of day was a beamless amber light along the +west: but I could see every pebble on the path, and every blade of +grass, by that splendid moon. I had neither to climb the gate nor to +knock—it yielded to my hand. That is an improvement, I thought. And I +noticed another, by the aid of my nostrils; a fragrance of stocks and +wallflowers wafted on the air from amongst the homely fruit-trees. + +Both doors and lattices were open; and yet, as is usually the case in a +coal-district, a fine red fire illumined the chimney: the comfort which +the eye derives from it renders the extra heat endurable. But the house +of Wuthering Heights is so large that the inmates have plenty of space +for withdrawing out of its influence; and accordingly what inmates +there were had stationed themselves not far from one of the windows. I +could both see them and hear them talk before I entered, and looked and +listened in consequence; being moved thereto by a mingled sense of +curiosity and envy, that grew as I lingered. + +“Con-_trary_!” said a voice as sweet as a silver bell. “That for the +third time, you dunce! I’m not going to tell you again. Recollect, or +I’ll pull your hair!” + +“Contrary, then,” answered another, in deep but softened tones. “And +now, kiss me, for minding so well.” + +“No, read it over first correctly, without a single mistake.” + +The male speaker began to read: he was a young man, respectably dressed +and seated at a table, having a book before him. His handsome features +glowed with pleasure, and his eyes kept impatiently wandering from the +page to a small white hand over his shoulder, which recalled him by a +smart slap on the cheek, whenever its owner detected such signs of +inattention. Its owner stood behind; her light, shining ringlets +blending, at intervals, with his brown locks, as she bent to +superintend his studies; and her face—it was lucky he could not see her +face, or he would never have been so steady. I could; and I bit my lip +in spite, at having thrown away the chance I might have had of doing +something besides staring at its smiting beauty. + +The task was done, not free from further blunders; but the pupil +claimed a reward, and received at least five kisses; which, however, he +generously returned. Then they came to the door, and from their +conversation I judged they were about to issue out and have a walk on +the moors. I supposed I should be condemned in Hareton Earnshaw’s +heart, if not by his mouth, to the lowest pit in the infernal regions +if I showed my unfortunate person in his neighbourhood then; and +feeling very mean and malignant, I skulked round to seek refuge in the +kitchen. There was unobstructed admittance on that side also; and at +the door sat my old friend Nelly Dean, sewing and singing a song; which +was often interrupted from within by harsh words of scorn and +intolerance, uttered in far from musical accents. + +“I’d rayther, by th’ haulf, hev’ ’em swearing i’ my lugs fro’h morn to +neeght, nor hearken ye hahsiver!” said the tenant of the kitchen, in +answer to an unheard speech of Nelly’s. “It’s a blazing shame, that I +cannot oppen t’ blessed Book, but yah set up them glories to sattan, +and all t’ flaysome wickednesses that iver were born into th’ warld! +Oh! ye’re a raight nowt; and shoo’s another; and that poor lad ’ll be +lost atween ye. Poor lad!” he added, with a groan; “he’s witched: I’m +sartin on’t. Oh, Lord, judge ’em, for there’s norther law nor justice +among wer rullers!” + +“No! or we should be sitting in flaming fagots, I suppose,” retorted +the singer. “But wisht, old man, and read your Bible like a Christian, +and never mind me. This is ‘Fairy Annie’s Wedding’—a bonny tune—it goes +to a dance.” + +Mrs. Dean was about to recommence, when I advanced; and recognising me +directly, she jumped to her feet, crying—“Why, bless you, Mr. Lockwood! +How could you think of returning in this way? All’s shut up at +Thrushcross Grange. You should have given us notice!” + +“I’ve arranged to be accommodated there, for as long as I shall stay,” +I answered. “I depart again to-morrow. And how are you transplanted +here, Mrs. Dean? tell me that.” + +“Zillah left, and Mr. Heathcliff wished me to come, soon after you went +to London, and stay till you returned. But, step in, pray! Have you +walked from Gimmerton this evening?” + +“From the Grange,” I replied; “and while they make me lodging room +there, I want to finish my business with your master; because I don’t +think of having another opportunity in a hurry.” + +“What business, sir?” said Nelly, conducting me into the house. “He’s +gone out at present, and won’t return soon.” + +“About the rent,” I answered. + +“Oh! then it is with Mrs. Heathcliff you must settle,” she observed; +“or rather with me. She has not learnt to manage her affairs yet, and I +act for her: there’s nobody else.” + +I looked surprised. + +“Ah! you have not heard of Heathcliff’s death, I see,” she continued. + +“Heathcliff dead!” I exclaimed, astonished. “How long ago?” + +“Three months since: but sit down, and let me take your hat, and I’ll +tell you all about it. Stop, you have had nothing to eat, have you?” + +“I want nothing: I have ordered supper at home. You sit down too. I +never dreamt of his dying! Let me hear how it came to pass. You say you +don’t expect them back for some time—the young people?” + +“No—I have to scold them every evening for their late rambles: but they +don’t care for me. At least, have a drink of our old ale; it will do +you good: you seem weary.” + +She hastened to fetch it before I could refuse, and I heard Joseph +asking whether “it warn’t a crying scandal that she should have +followers at her time of life? And then, to get them jocks out o’ t’ +maister’s cellar! He fair shaamed to ’bide still and see it.” + +She did not stay to retaliate, but re-entered in a minute, bearing a +reaming silver pint, whose contents I lauded with becoming earnestness. +And afterwards she furnished me with the sequel of Heathcliff’s +history. He had a “queer” end, as she expressed it. + +* * * * * + + +I was summoned to Wuthering Heights, within a fortnight of your leaving +us, she said; and I obeyed joyfully, for Catherine’s sake. My first +interview with her grieved and shocked me: she had altered so much +since our separation. Mr. Heathcliff did not explain his reasons for +taking a new mind about my coming here; he only told me he wanted me, +and he was tired of seeing Catherine: I must make the little parlour my +sitting-room, and keep her with me. It was enough if he were obliged to +see her once or twice a day. She seemed pleased at this arrangement; +and, by degrees, I smuggled over a great number of books, and other +articles, that had formed her amusement at the Grange; and flattered +myself we should get on in tolerable comfort. The delusion did not last +long. Catherine, contented at first, in a brief space grew irritable +and restless. For one thing, she was forbidden to move out of the +garden, and it fretted her sadly to be confined to its narrow bounds as +spring drew on; for another, in following the house, I was forced to +quit her frequently, and she complained of loneliness: she preferred +quarrelling with Joseph in the kitchen to sitting at peace in her +solitude. I did not mind their skirmishes: but Hareton was often +obliged to seek the kitchen also, when the master wanted to have the +house to himself; and though in the beginning she either left it at his +approach, or quietly joined in my occupations, and shunned remarking or +addressing him—and though he was always as sullen and silent as +possible—after a while, she changed her behaviour, and became incapable +of letting him alone: talking at him; commenting on his stupidity and +idleness; expressing her wonder how he could endure the life he +lived—how he could sit a whole evening staring into the fire, and +dozing. + +“He’s just like a dog, is he not, Ellen?” she once observed, “or a +cart-horse? He does his work, eats his food, and sleeps eternally! What +a blank, dreary mind he must have! Do you ever dream, Hareton? And, if +you do, what is it about? But you can’t speak to me!” + +Then she looked at him; but he would neither open his mouth nor look +again. + +“He’s, perhaps, dreaming now,” she continued. “He twitched his shoulder +as Juno twitches hers. Ask him, Ellen.” + +“Mr. Hareton will ask the master to send you upstairs, if you don’t +behave!” I said. He had not only twitched his shoulder but clenched his +fist, as if tempted to use it. + +“I know why Hareton never speaks, when I am in the kitchen,” she +exclaimed, on another occasion. “He is afraid I shall laugh at him. +Ellen, what do you think? He began to teach himself to read once; and, +because I laughed, he burned his books, and dropped it: was he not a +fool?” + +“Were not you naughty?” I said; “answer me that.” + +“Perhaps I was,” she went on; “but I did not expect him to be so silly. +Hareton, if I gave you a book, would you take it now? I’ll try!” + +She placed one she had been perusing on his hand; he flung it off, and +muttered, if she did not give over, he would break her neck. + +“Well, I shall put it here,” she said, “in the table-drawer; and I’m +going to bed.” + +Then she whispered me to watch whether he touched it, and departed. But +he would not come near it; and so I informed her in the morning, to her +great disappointment. I saw she was sorry for his persevering sulkiness +and indolence: her conscience reproved her for frightening him off +improving himself: she had done it effectually. But her ingenuity was +at work to remedy the injury: while I ironed, or pursued other such +stationary employments as I could not well do in the parlour, she would +bring some pleasant volume and read it aloud to me. When Hareton was +there, she generally paused in an interesting part, and left the book +lying about: that she did repeatedly; but he was as obstinate as a +mule, and, instead of snatching at her bait, in wet weather he took to +smoking with Joseph; and they sat like automatons, one on each side of +the fire, the elder happily too deaf to understand her wicked nonsense, +as he would have called it, the younger doing his best to seem to +disregard it. On fine evenings the latter followed his shooting +expeditions, and Catherine yawned and sighed, and teased me to talk to +her, and ran off into the court or garden the moment I began; and, as a +last resource, cried, and said she was tired of living: her life was +useless. + +Mr. Heathcliff, who grew more and more disinclined to society, had +almost banished Earnshaw from his apartment. Owing to an accident at +the commencement of March, he became for some days a fixture in the +kitchen. His gun burst while out on the hills by himself; a splinter +cut his arm, and he lost a good deal of blood before he could reach +home. The consequence was that, perforce, he was condemned to the +fireside and tranquillity, till he made it up again. It suited +Catherine to have him there: at any rate, it made her hate her room +upstairs more than ever: and she would compel me to find out business +below, that she might accompany me. + +On Easter Monday, Joseph went to Gimmerton fair with some cattle; and, +in the afternoon, I was busy getting up linen in the kitchen. Earnshaw +sat, morose as usual, at the chimney corner, and my little mistress was +beguiling an idle hour with drawing pictures on the window-panes, +varying her amusement by smothered bursts of songs, and whispered +ejaculations, and quick glances of annoyance and impatience in the +direction of her cousin, who steadfastly smoked, and looked into the +grate. At a notice that I could do with her no longer intercepting my +light, she removed to the hearthstone. I bestowed little attention on +her proceedings, but, presently, I heard her begin—“I’ve found out, +Hareton, that I want—that I’m glad—that I should like you to be my +cousin now, if you had not grown so cross to me, and so rough.” + +Hareton returned no answer. + +“Hareton, Hareton, Hareton! do you hear?” she continued. + +“Get off wi’ ye!” he growled, with uncompromising gruffness. + +“Let me take that pipe,” she said, cautiously advancing her hand and +abstracting it from his mouth. + +Before he could attempt to recover it, it was broken, and behind the +fire. He swore at her and seized another. + +“Stop,” she cried, “you must listen to me first; and I can’t speak +while those clouds are floating in my face.” + +“Will you go to the devil!” he exclaimed, ferociously, “and let me be!” + +“No,” she persisted, “I won’t: I can’t tell what to do to make you talk +to me; and you are determined not to understand. When I call you +stupid, I don’t mean anything: I don’t mean that I despise you. Come, +you shall take notice of me, Hareton: you are my cousin, and you shall +own me.” + +“I shall have naught to do wi’ you and your mucky pride, and your +damned mocking tricks!” he answered. “I’ll go to hell, body and soul, +before I look sideways after you again. Side out o’ t’ gate, now, this +minute!” + +Catherine frowned, and retreated to the window-seat chewing her lip, +and endeavouring, by humming an eccentric tune, to conceal a growing +tendency to sob. + +“You should be friends with your cousin, Mr. Hareton,” I interrupted, +“since she repents of her sauciness. It would do you a great deal of +good: it would make you another man to have her for a companion.” + +“A companion!” he cried; “when she hates me, and does not think me fit +to wipe her shoon! Nay, if it made me a king, I’d not be scorned for +seeking her good-will any more.” + +“It is not I who hate you, it is you who hate me!” wept Cathy, no +longer disguising her trouble. “You hate me as much as Mr. Heathcliff +does, and more.” + +“You’re a damned liar,” began Earnshaw: “why have I made him angry, by +taking your part, then, a hundred times? and that when you sneered at +and despised me, and—Go on plaguing me, and I’ll step in yonder, and +say you worried me out of the kitchen!” + +“I didn’t know you took my part,” she answered, drying her eyes; “and I +was miserable and bitter at everybody; but now I thank you, and beg you +to forgive me: what can I do besides?” + +She returned to the hearth, and frankly extended her hand. He blackened +and scowled like a thunder-cloud, and kept his fists resolutely +clenched, and his gaze fixed on the ground. Catherine, by instinct, +must have divined it was obdurate perversity, and not dislike, that +prompted this dogged conduct; for, after remaining an instant +undecided, she stooped and impressed on his cheek a gentle kiss. The +little rogue thought I had not seen her, and, drawing back, she took +her former station by the window, quite demurely. I shook my head +reprovingly, and then she blushed and whispered—“Well! what should I +have done, Ellen? He wouldn’t shake hands, and he wouldn’t look: I must +show him some way that I like him—that I want to be friends.” + +Whether the kiss convinced Hareton, I cannot tell: he was very careful, +for some minutes, that his face should not be seen, and when he did +raise it, he was sadly puzzled where to turn his eyes. + +Catherine employed herself in wrapping a handsome book neatly in white +paper, and having tied it with a bit of ribbon, and addressed it to +“Mr. Hareton Earnshaw,” she desired me to be her ambassadress, and +convey the present to its destined recipient. + +“And tell him, if he’ll take it, I’ll come and teach him to read it +right,” she said; “and, if he refuse it, I’ll go upstairs, and never +tease him again.” + +I carried it, and repeated the message; anxiously watched by my +employer. Hareton would not open his fingers, so I laid it on his knee. +He did not strike it off, either. I returned to my work. Catherine +leaned her head and arms on the table, till she heard the slight rustle +of the covering being removed; then she stole away, and quietly seated +herself beside her cousin. He trembled, and his face glowed: all his +rudeness and all his surly harshness had deserted him: he could not +summon courage, at first, to utter a syllable in reply to her +questioning look, and her murmured petition. + +“Say you forgive me, Hareton, do. You can make me so happy by speaking +that little word.” + +He muttered something inaudible. + +“And you’ll be my friend?” added Catherine, interrogatively. + +“Nay, you’ll be ashamed of me every day of your life,” he answered; +“and the more ashamed, the more you know me; and I cannot bide it.” + +“So you won’t be my friend?” she said, smiling as sweet as honey, and +creeping close up. + +I overheard no further distinguishable talk, but, on looking round +again, I perceived two such radiant countenances bent over the page of +the accepted book, that I did not doubt the treaty had been ratified on +both sides; and the enemies were, thenceforth, sworn allies. + +The work they studied was full of costly pictures; and those and their +position had charm enough to keep them unmoved till Joseph came home. +He, poor man, was perfectly aghast at the spectacle of Catherine seated +on the same bench with Hareton Earnshaw, leaning her hand on his +shoulder; and confounded at his favourite’s endurance of her proximity: +it affected him too deeply to allow an observation on the subject that +night. His emotion was only revealed by the immense sighs he drew, as +he solemnly spread his large Bible on the table, and overlaid it with +dirty bank-notes from his pocket-book, the produce of the day’s +transactions. At length he summoned Hareton from his seat. + +“Tak’ these in to t’ maister, lad,” he said, “and bide there. I’s gang +up to my own rahm. This hoile’s neither mensful nor seemly for us: we +mun side out and seearch another.” + +“Come, Catherine,” I said, “we must ‘side out’ too: I’ve done my +ironing. Are you ready to go?” + +“It is not eight o’clock!” she answered, rising unwillingly. “Hareton, +I’ll leave this book upon the chimney-piece, and I’ll bring some more +to-morrow.” + +“Ony books that yah leave, I shall tak’ into th’ hahse,” said Joseph, +“and it’ll be mitch if yah find ’em agean; soa, yah may plase yerseln!” + +Cathy threatened that his library should pay for hers; and, smiling as +she passed Hareton, went singing upstairs: lighter of heart, I venture +to say, than ever she had been under that roof before; except, perhaps, +during her earliest visits to Linton. + +The intimacy thus commenced grew rapidly; though it encountered +temporary interruptions. Earnshaw was not to be civilized with a wish, +and my young lady was no philosopher, and no paragon of patience; but +both their minds tending to the same point—one loving and desiring to +esteem, and the other loving and desiring to be esteemed—they contrived +in the end to reach it. + +You see, Mr. Lockwood, it was easy enough to win Mrs. Heathcliff’s +heart. But now, I’m glad you did not try. The crown of all my wishes +will be the union of those two. I shall envy no one on their wedding +day: there won’t be a happier woman than myself in England! + + + + +CHAPTER XXXIII + + +On the morrow of that Monday, Earnshaw being still unable to follow his +ordinary employments, and therefore remaining about the house, I +speedily found it would be impracticable to retain my charge beside me, +as heretofore. She got downstairs before me, and out into the garden, +where she had seen her cousin performing some easy work; and when I +went to bid them come to breakfast, I saw she had persuaded him to +clear a large space of ground from currant and gooseberry bushes, and +they were busy planning together an importation of plants from the +Grange. + +I was terrified at the devastation which had been accomplished in a +brief half-hour; the black-currant trees were the apple of Joseph’s +eye, and she had just fixed her choice of a flower-bed in the midst of +them. + +“There! That will be all shown to the master,” I exclaimed, “the minute +it is discovered. And what excuse have you to offer for taking such +liberties with the garden? We shall have a fine explosion on the head +of it: see if we don’t! Mr. Hareton, I wonder you should have no more +wit than to go and make that mess at her bidding!” + +“I’d forgotten they were Joseph’s,” answered Earnshaw, rather puzzled; +“but I’ll tell him I did it.” + +We always ate our meals with Mr. Heathcliff. I held the mistress’s post +in making tea and carving; so I was indispensable at table. Catherine +usually sat by me, but to-day she stole nearer to Hareton; and I +presently saw she would have no more discretion in her friendship than +she had in her hostility. + +“Now, mind you don’t talk with and notice your cousin too much,” were +my whispered instructions as we entered the room. “It will certainly +annoy Mr. Heathcliff, and he’ll be mad at you both.” + +“I’m not going to,” she answered. + +The minute after, she had sidled to him, and was sticking primroses in +his plate of porridge. + +He dared not speak to her there: he dared hardly look; and yet she went +on teasing, till he was twice on the point of being provoked to laugh. +I frowned, and then she glanced towards the master: whose mind was +occupied on other subjects than his company, as his countenance +evinced; and she grew serious for an instant, scrutinizing him with +deep gravity. Afterwards she turned, and recommenced her nonsense; at +last, Hareton uttered a smothered laugh. Mr. Heathcliff started; his +eye rapidly surveyed our faces. Catherine met it with her accustomed +look of nervousness and yet defiance, which he abhorred. + +“It is well you are out of my reach,” he exclaimed. “What fiend +possesses you to stare back at me, continually, with those infernal +eyes? Down with them! and don’t remind me of your existence again. I +thought I had cured you of laughing.” + +“It was me,” muttered Hareton. + +“What do you say?” demanded the master. + +Hareton looked at his plate, and did not repeat the confession. Mr. +Heathcliff looked at him a bit, and then silently resumed his breakfast +and his interrupted musing. We had nearly finished, and the two young +people prudently shifted wider asunder, so I anticipated no further +disturbance during that sitting: when Joseph appeared at the door, +revealing by his quivering lip and furious eyes that the outrage +committed on his precious shrubs was detected. He must have seen Cathy +and her cousin about the spot before he examined it, for while his jaws +worked like those of a cow chewing its cud, and rendered his speech +difficult to understand, he began:— + +“I mun hev’ my wage, and I mun goa! I _hed_ aimed to dee wheare I’d +sarved fur sixty year; and I thowt I’d lug my books up into t’ garret, +and all my bits o’ stuff, and they sud hev’ t’ kitchen to theirseln; +for t’ sake o’ quietness. It wur hard to gie up my awn hearthstun, but +I thowt I _could_ do that! But nah, shoo’s taan my garden fro’ me, and +by th’ heart, maister, I cannot stand it! Yah may bend to th’ yoak an +ye will—I noan used to ’t, and an old man doesn’t sooin get used to new +barthens. I’d rayther arn my bite an’ my sup wi’ a hammer in th’ road!” + +“Now, now, idiot!” interrupted Heathcliff, “cut it short! What’s your +grievance? I’ll interfere in no quarrels between you and Nelly. She may +thrust you into the coal-hole for anything I care.” + +“It’s noan Nelly!” answered Joseph. “I sudn’t shift for Nelly—nasty ill +nowt as shoo is. Thank God! _shoo_ cannot stale t’ sowl o’ nob’dy! Shoo +wer niver soa handsome, but what a body mud look at her ’bout winking. +It’s yon flaysome, graceless quean, that’s witched our lad, wi’ her +bold een and her forrard ways—till—Nay! it fair brusts my heart! He’s +forgotten all I’ve done for him, and made on him, and goan and riven up +a whole row o’ t’ grandest currant-trees i’ t’ garden!” and here he +lamented outright; unmanned by a sense of his bitter injuries, and +Earnshaw’s ingratitude and dangerous condition. + +“Is the fool drunk?” asked Mr. Heathcliff. “Hareton, is it you he’s +finding fault with?” + +“I’ve pulled up two or three bushes,” replied the young man; “but I’m +going to set ’em again.” + +“And why have you pulled them up?” said the master. + +Catherine wisely put in her tongue. + +“We wanted to plant some flowers there,” she cried. “I’m the only +person to blame, for I wished him to do it.” + +“And who the devil gave _you_ leave to touch a stick about the place?” +demanded her father-in-law, much surprised. “And who ordered _you_ to +obey her?” he added, turning to Hareton. + +The latter was speechless; his cousin replied—“You shouldn’t grudge a +few yards of earth for me to ornament, when you have taken all my +land!” + +“Your land, insolent slut! You never had any,” said Heathcliff. + +“And my money,” she continued; returning his angry glare, and meantime +biting a piece of crust, the remnant of her breakfast. + +“Silence!” he exclaimed. “Get done, and begone!” + +“And Hareton’s land, and his money,” pursued the reckless thing. +“Hareton and I are friends now; and I shall tell him all about you!” + +The master seemed confounded a moment: he grew pale, and rose up, +eyeing her all the while, with an expression of mortal hate. + +“If you strike me, Hareton will strike you,” she said; “so you may as +well sit down.” + +“If Hareton does not turn you out of the room, I’ll strike him to +hell,” thundered Heathcliff. “Damnable witch! dare you pretend to rouse +him against me? Off with her! Do you hear? Fling her into the kitchen! +I’ll kill her, Ellen Dean, if you let her come into my sight again!” + +Hareton tried, under his breath, to persuade her to go. + +“Drag her away!” he cried, savagely. “Are you staying to talk?” And he +approached to execute his own command. + +“He’ll not obey you, wicked man, any more,” said Catherine; “and he’ll +soon detest you as much as I do.” + +“Wisht! wisht!” muttered the young man, reproachfully; “I will not hear +you speak so to him. Have done.” + +“But you won’t let him strike me?” she cried. + +“Come, then,” he whispered earnestly. + +It was too late: Heathcliff had caught hold of her. + +“Now, _you_ go!” he said to Earnshaw. “Accursed witch! this time she +has provoked me when I could not bear it; and I’ll make her repent it +for ever!” + +He had his hand in her hair; Hareton attempted to release her locks, +entreating him not to hurt her that once. Heathcliff’s black eyes +flashed; he seemed ready to tear Catherine in pieces, and I was just +worked up to risk coming to the rescue, when of a sudden his fingers +relaxed; he shifted his grasp from her head to her arm, and gazed +intently in her face. Then he drew his hand over his eyes, stood a +moment to collect himself apparently, and turning anew to Catherine, +said, with assumed calmness—“You must learn to avoid putting me in a +passion, or I shall really murder you some time! Go with Mrs. Dean, and +keep with her; and confine your insolence to her ears. As to Hareton +Earnshaw, if I see him listen to you, I’ll send him seeking his bread +where he can get it! Your love will make him an outcast and a beggar. +Nelly, take her; and leave me, all of you! Leave me!” + +I led my young lady out: she was too glad of her escape to resist; the +other followed, and Mr. Heathcliff had the room to himself till dinner. +I had counselled Catherine to dine upstairs; but, as soon as he +perceived her vacant seat, he sent me to call her. He spoke to none of +us, ate very little, and went out directly afterwards, intimating that +he should not return before evening. + +The two new friends established themselves in the house during his +absence; where I heard Hareton sternly check his cousin, on her +offering a revelation of her father-in-law’s conduct to his father. He +said he wouldn’t suffer a word to be uttered in his disparagement: if +he were the devil, it didn’t signify; he would stand by him; and he’d +rather she would abuse himself, as she used to, than begin on Mr. +Heathcliff. Catherine was waxing cross at this; but he found means to +make her hold her tongue, by asking how she would like _him_ to speak +ill of her father? Then she comprehended that Earnshaw took the +master’s reputation home to himself; and was attached by ties stronger +than reason could break—chains, forged by habit, which it would be +cruel to attempt to loosen. She showed a good heart, thenceforth, in +avoiding both complaints and expressions of antipathy concerning +Heathcliff; and confessed to me her sorrow that she had endeavoured to +raise a bad spirit between him and Hareton: indeed, I don’t believe she +has ever breathed a syllable, in the latter’s hearing, against her +oppressor since. + +When this slight disagreement was over, they were friends again, and as +busy as possible in their several occupations of pupil and teacher. I +came in to sit with them, after I had done my work; and I felt so +soothed and comforted to watch them, that I did not notice how time got +on. You know, they both appeared in a measure my children: I had long +been proud of one; and now, I was sure, the other would be a source of +equal satisfaction. His honest, warm, and intelligent nature shook off +rapidly the clouds of ignorance and degradation in which it had been +bred; and Catherine’s sincere commendations acted as a spur to his +industry. His brightening mind brightened his features, and added +spirit and nobility to their aspect: I could hardly fancy it the same +individual I had beheld on the day I discovered my little lady at +Wuthering Heights, after her expedition to the Crags. While I admired +and they laboured, dusk drew on, and with it returned the master. He +came upon us quite unexpectedly, entering by the front way, and had a +full view of the whole three, ere we could raise our heads to glance at +him. Well, I reflected, there was never a pleasanter, or more harmless +sight; and it will be a burning shame to scold them. The red fire-light +glowed on their two bonny heads, and revealed their faces animated with +the eager interest of children; for, though he was twenty-three and she +eighteen, each had so much of novelty to feel and learn, that neither +experienced nor evinced the sentiments of sober disenchanted maturity. + +They lifted their eyes together, to encounter Mr. Heathcliff: perhaps +you have never remarked that their eyes are precisely similar, and they +are those of Catherine Earnshaw. The present Catherine has no other +likeness to her, except a breadth of forehead, and a certain arch of +the nostril that makes her appear rather haughty, whether she will or +not. With Hareton the resemblance is carried farther: it is singular at +all times, _then_ it was particularly striking; because his senses were +alert, and his mental faculties wakened to unwonted activity. I suppose +this resemblance disarmed Mr. Heathcliff: he walked to the hearth in +evident agitation; but it quickly subsided as he looked at the young +man: or, I should say, altered its character; for it was there yet. He +took the book from his hand, and glanced at the open page, then +returned it without any observation; merely signing Catherine away: her +companion lingered very little behind her, and I was about to depart +also, but he bid me sit still. + +“It is a poor conclusion, is it not?” he observed, having brooded +a while on the scene he had just witnessed: “an absurd termination to +my violent exertions? I get levers and mattocks to demolish the two +houses, and train myself to be capable of working like Hercules, and +when everything is ready and in my power, I find the will to lift a +slate off either roof has vanished! My old enemies have not beaten me; +now would be the precise time to revenge myself on their +representatives: I could do it; and none could hinder me. But where is +the use? I don’t care for striking: I can’t take the trouble to raise +my hand! That sounds as if I had been labouring the whole time only to +exhibit a fine trait of magnanimity. It is far from being the case: I +have lost the faculty of enjoying their destruction, and I am too idle +to destroy for nothing. + +“Nelly, there is a strange change approaching; I’m in its shadow at +present. I take so little interest in my daily life that I hardly +remember to eat and drink. Those two who have left the room are the +only objects which retain a distinct material appearance to me; and +that appearance causes me pain, amounting to agony. About _her_ I won’t +speak; and I don’t desire to think; but I earnestly wish she were +invisible: her presence invokes only maddening sensations. _He_ moves +me differently: and yet if I could do it without seeming insane, I’d +never see him again! You’ll perhaps think me rather inclined to become +so,” he added, making an effort to smile, “if I try to describe the +thousand forms of past associations and ideas he awakens or embodies. +But you’ll not talk of what I tell you; and my mind is so eternally +secluded in itself, it is tempting at last to turn it out to another. + +“Five minutes ago Hareton seemed a personification of my youth, not a +human being; I felt to him in such a variety of ways, that it would +have been impossible to have accosted him rationally. In the first +place, his startling likeness to Catherine connected him fearfully with +her. That, however, which you may suppose the most potent to arrest my +imagination, is actually the least: for what is not connected with her +to me? and what does not recall her? I cannot look down to this floor, +but her features are shaped in the flags! In every cloud, in every +tree—filling the air at night, and caught by glimpses in every object +by day—I am surrounded with her image! The most ordinary faces of men +and women—my own features—mock me with a resemblance. The entire world +is a dreadful collection of memoranda that she did exist, and that I +have lost her! Well, Hareton’s aspect was the ghost of my immortal +love; of my wild endeavours to hold my right; my degradation, my pride, +my happiness, and my anguish— + +“But it is frenzy to repeat these thoughts to you: only it will let you +know why, with a reluctance to be always alone, his society is no +benefit; rather an aggravation of the constant torment I suffer: and it +partly contributes to render me regardless how he and his cousin go on +together. I can give them no attention any more.” + +“But what do you mean by a _change_, Mr. Heathcliff?” I said, alarmed +at his manner: though he was neither in danger of losing his senses, +nor dying, according to my judgment: he was quite strong and healthy; +and, as to his reason, from childhood he had a delight in dwelling on +dark things, and entertaining odd fancies. He might have had a +monomania on the subject of his departed idol; but on every other point +his wits were as sound as mine. + +“I shall not know that till it comes,” he said; “I’m only half +conscious of it now.” + +“You have no feeling of illness, have you?” I asked. + +“No, Nelly, I have not,” he answered. + +“Then you are not afraid of death?” I pursued. + +“Afraid? No!” he replied. “I have neither a fear, nor a presentiment, +nor a hope of death. Why should I? With my hard constitution and +temperate mode of living, and unperilous occupations, I ought to, and +probably _shall_, remain above ground till there is scarcely a black +hair on my head. And yet I cannot continue in this condition! I have to +remind myself to breathe—almost to remind my heart to beat! And it is +like bending back a stiff spring: it is by compulsion that I do the +slightest act not prompted by one thought; and by compulsion that I +notice anything alive or dead, which is not associated with one +universal idea. I have a single wish, and my whole being and faculties +are yearning to attain it. They have yearned towards it so long, and so +unwaveringly, that I’m convinced it _will_ be reached—and +_soon_—because it has devoured my existence: I am swallowed up in the +anticipation of its fulfilment. My confessions have not relieved me; +but they may account for some otherwise unaccountable phases of humour +which I show. O God! It is a long fight; I wish it were over!” + +He began to pace the room, muttering terrible things to himself, till I +was inclined to believe, as he said Joseph did, that conscience had +turned his heart to an earthly hell. I wondered greatly how it would +end. Though he seldom before had revealed this state of mind, even by +looks, it was his habitual mood, I had no doubt: he asserted it +himself; but not a soul, from his general bearing, would have +conjectured the fact. You did not when you saw him, Mr. Lockwood: and +at the period of which I speak, he was just the same as then; only +fonder of continued solitude, and perhaps still more laconic in +company. + + + + +CHAPTER XXXIV + + +For some days after that evening, Mr. Heathcliff shunned meeting us at +meals; yet he would not consent formally to exclude Hareton and Cathy. +He had an aversion to yielding so completely to his feelings, choosing +rather to absent himself; and eating once in twenty-four hours seemed +sufficient sustenance for him. + +One night, after the family were in bed, I heard him go downstairs, and +out at the front door. I did not hear him re-enter, and in the morning +I found he was still away. We were in April then: the weather was sweet +and warm, the grass as green as showers and sun could make it, and the +two dwarf apple-trees near the southern wall in full bloom. After +breakfast, Catherine insisted on my bringing a chair and sitting with +my work under the fir-trees at the end of the house; and she beguiled +Hareton, who had perfectly recovered from his accident, to dig and +arrange her little garden, which was shifted to that corner by the +influence of Joseph’s complaints. I was comfortably revelling in the +spring fragrance around, and the beautiful soft blue overhead, when my +young lady, who had run down near the gate to procure some primrose +roots for a border, returned only half laden, and informed us that Mr. +Heathcliff was coming in. “And he spoke to me,” she added, with a +perplexed countenance. + +“What did he say?” asked Hareton. + +“He told me to begone as fast as I could,” she answered. “But he looked +so different from his usual look that I stopped a moment to stare at +him.” + +“How?” he inquired. + +“Why, almost bright and cheerful. No, _almost_ nothing—_very much_ +excited, and wild, and glad!” she replied. + +“Night-walking amuses him, then,” I remarked, affecting a careless +manner: in reality as surprised as she was, and anxious to ascertain +the truth of her statement; for to see the master looking glad would +not be an every-day spectacle. I framed an excuse to go in. Heathcliff +stood at the open door; he was pale, and he trembled: yet, certainly, +he had a strange joyful glitter in his eyes, that altered the aspect of +his whole face. + +“Will you have some breakfast?” I said. “You must be hungry, rambling +about all night!” I wanted to discover where he had been, but I did not +like to ask directly. + +“No, I’m not hungry,” he answered, averting his head, and speaking +rather contemptuously, as if he guessed I was trying to divine the +occasion of his good humour. + +I felt perplexed: I didn’t know whether it were not a proper +opportunity to offer a bit of admonition. + +“I don’t think it right to wander out of doors,” I observed, “instead +of being in bed: it is not wise, at any rate this moist season. I +daresay you’ll catch a bad cold, or a fever: you have something the +matter with you now!” + +“Nothing but what I can bear,” he replied; “and with the greatest +pleasure, provided you’ll leave me alone: get in, and don’t annoy me.” + +I obeyed: and, in passing, I noticed he breathed as fast as a cat. + +“Yes!” I reflected to myself, “we shall have a fit of illness. I cannot +conceive what he has been doing.” + +That noon he sat down to dinner with us, and received a heaped-up plate +from my hands, as if he intended to make amends for previous fasting. + +“I’ve neither cold nor fever, Nelly,” he remarked, in allusion to my +morning’s speech; “and I’m ready to do justice to the food you give +me.” + +He took his knife and fork, and was going to commence eating, when the +inclination appeared to become suddenly extinct. He laid them on the +table, looked eagerly towards the window, then rose and went out. We +saw him walking to and fro in the garden while we concluded our meal, +and Earnshaw said he’d go and ask why he would not dine: he thought we +had grieved him some way. + +“Well, is he coming?” cried Catherine, when her cousin returned. + +“Nay,” he answered; “but he’s not angry: he seemed rarely pleased +indeed; only I made him impatient by speaking to him twice; and then he +bid me be off to you: he wondered how I could want the company of +anybody else.” + +I set his plate to keep warm on the fender; and after an hour or two he +re-entered, when the room was clear, in no degree calmer: the same +unnatural—it was unnatural—appearance of joy under his black brows; the +same bloodless hue, and his teeth visible, now and then, in a kind of +smile; his frame shivering, not as one shivers with chill or weakness, +but as a tight-stretched cord vibrates—a strong thrilling, rather than +trembling. + +I will ask what is the matter, I thought; or who should? And I +exclaimed—“Have you heard any good news, Mr. Heathcliff? You look +uncommonly animated.” + +“Where should good news come from to me?” he said. “I’m animated with +hunger; and, seemingly, I must not eat.” + +“Your dinner is here,” I returned; “why won’t you get it?” + +“I don’t want it now,” he muttered, hastily: “I’ll wait till supper. +And, Nelly, once for all, let me beg you to warn Hareton and the other +away from me. I wish to be troubled by nobody: I wish to have this +place to myself.” + +“Is there some new reason for this banishment?” I inquired. “Tell me +why you are so queer, Mr. Heathcliff? Where were you last night? I’m +not putting the question through idle curiosity, but—” + +“You are putting the question through very idle curiosity,” he +interrupted, with a laugh. “Yet I’ll answer it. Last night I was on the +threshold of hell. To-day, I am within sight of my heaven. I have my +eyes on it: hardly three feet to sever me! And now you’d better go! +You’ll neither see nor hear anything to frighten you, if you refrain +from prying.” + +Having swept the hearth and wiped the table, I departed; more perplexed +than ever. + +He did not quit the house again that afternoon, and no one intruded on +his solitude; till, at eight o’clock, I deemed it proper, though +unsummoned, to carry a candle and his supper to him. He was leaning +against the ledge of an open lattice, but not looking out: his face was +turned to the interior gloom. The fire had smouldered to ashes; the +room was filled with the damp, mild air of the cloudy evening; and so +still, that not only the murmur of the beck down Gimmerton was +distinguishable, but its ripples and its gurgling over the pebbles, or +through the large stones which it could not cover. I uttered an +ejaculation of discontent at seeing the dismal grate, and commenced +shutting the casements, one after another, till I came to his. + +“Must I close this?” I asked, in order to rouse him; for he would not +stir. + +The light flashed on his features as I spoke. Oh, Mr. Lockwood, I +cannot express what a terrible start I got by the momentary view! Those +deep black eyes! That smile, and ghastly paleness! It appeared to me, +not Mr. Heathcliff, but a goblin; and, in my terror, I let the candle +bend towards the wall, and it left me in darkness. + +“Yes, close it,” he replied, in his familiar voice. “There, that is +pure awkwardness! Why did you hold the candle horizontally? Be quick, +and bring another.” + +I hurried out in a foolish state of dread, and said to Joseph—“The +master wishes you to take him a light and rekindle the fire.” For I +dared not go in myself again just then. + +Joseph rattled some fire into the shovel, and went: but he brought it +back immediately, with the supper-tray in his other hand, explaining +that Mr. Heathcliff was going to bed, and he wanted nothing to eat till +morning. We heard him mount the stairs directly; he did not proceed to +his ordinary chamber, but turned into that with the panelled bed: its +window, as I mentioned before, is wide enough for anybody to get +through; and it struck me that he plotted another midnight excursion, +of which he had rather we had no suspicion. + +“Is he a ghoul or a vampire?” I mused. I had read of such hideous +incarnate demons. And then I set myself to reflect how I had tended him +in infancy, and watched him grow to youth, and followed him almost +through his whole course; and what absurd nonsense it was to yield to +that sense of horror. “But where did he come from, the little dark +thing, harboured by a good man to his bane?” muttered Superstition, as +I dozed into unconsciousness. And I began, half dreaming, to weary +myself with imagining some fit parentage for him; and, repeating my +waking meditations, I tracked his existence over again, with grim +variations; at last, picturing his death and funeral: of which, all I +can remember is, being exceedingly vexed at having the task of +dictating an inscription for his monument, and consulting the sexton +about it; and, as he had no surname, and we could not tell his age, we +were obliged to content ourselves with the single word, “Heathcliff.” +That came true: we were. If you enter the kirkyard, you’ll read, on his +headstone, only that, and the date of his death. + +Dawn restored me to common sense. I rose, and went into the garden, as +soon as I could see, to ascertain if there were any footmarks under his +window. There were none. “He has stayed at home,” I thought, “and he’ll +be all right to-day.” I prepared breakfast for the household, as was my +usual custom, but told Hareton and Catherine to get theirs ere the +master came down, for he lay late. They preferred taking it out of +doors, under the trees, and I set a little table to accommodate them. + +On my re-entrance, I found Mr. Heathcliff below. He and Joseph were +conversing about some farming business; he gave clear, minute +directions concerning the matter discussed, but he spoke rapidly, and +turned his head continually aside, and had the same excited expression, +even more exaggerated. When Joseph quitted the room he took his seat in +the place he generally chose, and I put a basin of coffee before him. +He drew it nearer, and then rested his arms on the table, and looked at +the opposite wall, as I supposed, surveying one particular portion, up +and down, with glittering, restless eyes, and with such eager interest +that he stopped breathing during half a minute together. + +“Come now,” I exclaimed, pushing some bread against his hand, “eat and +drink that, while it is hot: it has been waiting near an hour.” + +He didn’t notice me, and yet he smiled. I’d rather have seen him gnash +his teeth than smile so. + +“Mr. Heathcliff! master!” I cried, “don’t, for God’s sake, stare as if +you saw an unearthly vision.” + +“Don’t, for God’s sake, shout so loud,” he replied. “Turn round, and +tell me, are we by ourselves?” + +“Of course,” was my answer; “of course we are.” + +Still, I involuntarily obeyed him, as if I was not quite sure. With a +sweep of his hand he cleared a vacant space in front among the +breakfast things, and leant forward to gaze more at his ease. + +Now, I perceived he was not looking at the wall; for when I regarded +him alone, it seemed exactly that he gazed at something within two +yards’ distance. And whatever it was, it communicated, apparently, both +pleasure and pain in exquisite extremes: at least the anguished, yet +raptured, expression of his countenance suggested that idea. The +fancied object was not fixed, either: his eyes pursued it with +unwearied diligence, and, even in speaking to me, were never weaned +away. I vainly reminded him of his protracted abstinence from food: if +he stirred to touch anything in compliance with my entreaties, if he +stretched his hand out to get a piece of bread, his fingers clenched +before they reached it, and remained on the table, forgetful of their +aim. + +I sat, a model of patience, trying to attract his absorbed attention +from its engrossing speculation; till he grew irritable, and got up, +asking why I would not allow him to have his own time in taking his +meals? and saying that on the next occasion I needn’t wait: I might set +the things down and go. Having uttered these words he left the house, +slowly sauntered down the garden path, and disappeared through the +gate. + +The hours crept anxiously by: another evening came. I did not retire to +rest till late, and when I did, I could not sleep. He returned after +midnight, and, instead of going to bed, shut himself into the room +beneath. I listened, and tossed about, and, finally, dressed and +descended. It was too irksome to lie there, harassing my brain with a +hundred idle misgivings. + +I distinguished Mr. Heathcliff’s step, restlessly measuring the floor, +and he frequently broke the silence by a deep inspiration, resembling a +groan. He muttered detached words also; the only one I could catch was +the name of Catherine, coupled with some wild term of endearment or +suffering; and spoken as one would speak to a person present; low and +earnest, and wrung from the depth of his soul. I had not courage to +walk straight into the apartment; but I desired to divert him from his +reverie, and therefore fell foul of the kitchen fire, stirred it, and +began to scrape the cinders. It drew him forth sooner than I expected. +He opened the door immediately, and said—“Nelly, come here—is it +morning? Come in with your light.” + +“It is striking four,” I answered. “You want a candle to take upstairs: +you might have lit one at this fire.” + +“No, I don’t wish to go upstairs,” he said. “Come in, and kindle _me_ a +fire, and do anything there is to do about the room.” + +“I must blow the coals red first, before I can carry any,” I replied, +getting a chair and the bellows. + +He roamed to and fro, meantime, in a state approaching distraction; his +heavy sighs succeeding each other so thick as to leave no space for +common breathing between. + +“When day breaks I’ll send for Green,” he said; “I wish to make some +legal inquiries of him while I can bestow a thought on those matters, +and while I can act calmly. I have not written my will yet; and how to +leave my property I cannot determine. I wish I could annihilate it from +the face of the earth.” + +“I would not talk so, Mr. Heathcliff,” I interposed. “Let your will be +a while: you’ll be spared to repent of your many injustices yet! I +never expected that your nerves would be disordered: they are, at +present, marvellously so, however; and almost entirely through your own +fault. The way you’ve passed these three last days might knock up a +Titan. Do take some food, and some repose. You need only look at +yourself in a glass to see how you require both. Your cheeks are +hollow, and your eyes blood-shot, like a person starving with hunger +and going blind with loss of sleep.” + +“It is not my fault that I cannot eat or rest,” he replied. “I assure +you it is through no settled designs. I’ll do both, as soon as I +possibly can. But you might as well bid a man struggling in the water +rest within arms’ length of the shore! I must reach it first, and then +I’ll rest. Well, never mind Mr. Green: as to repenting of my +injustices, I’ve done no injustice, and I repent of nothing. I’m too +happy; and yet I’m not happy enough. My soul’s bliss kills my body, but +does not satisfy itself.” + +“Happy, master?” I cried. “Strange happiness! If you would hear me +without being angry, I might offer some advice that would make you +happier.” + +“What is that?” he asked. “Give it.” + +“You are aware, Mr. Heathcliff,” I said, “that from the time you were +thirteen years old you have lived a selfish, unchristian life; and +probably hardly had a Bible in your hands during all that period. You +must have forgotten the contents of the book, and you may not have +space to search it now. Could it be hurtful to send for some one—some +minister of any denomination, it does not matter which—to explain it, +and show you how very far you have erred from its precepts; and how +unfit you will be for its heaven, unless a change takes place before +you die?” + +“I’m rather obliged than angry, Nelly,” he said, “for you remind me of +the manner in which I desire to be buried. It is to be carried to the +churchyard in the evening. You and Hareton may, if you please, +accompany me: and mind, particularly, to notice that the sexton obeys +my directions concerning the two coffins! No minister need come; nor +need anything be said over me.—I tell you I have nearly attained _my_ +heaven; and that of others is altogether unvalued and uncoveted by me.” + +“And supposing you persevered in your obstinate fast, and died by that +means, and they refused to bury you in the precincts of the kirk?” I +said, shocked at his godless indifference. “How would you like it?” + +“They won’t do that,” he replied: “if they did, you must have me +removed secretly; and if you neglect it you shall prove, practically, +that the dead are not annihilated!” + +As soon as he heard the other members of the family stirring he retired +to his den, and I breathed freer. But in the afternoon, while Joseph +and Hareton were at their work, he came into the kitchen again, and, +with a wild look, bid me come and sit in the house: he wanted somebody +with him. I declined; telling him plainly that his strange talk and +manner frightened me, and I had neither the nerve nor the will to be +his companion alone. + +“I believe you think me a fiend,” he said, with his dismal laugh: +“something too horrible to live under a decent roof.” Then turning to +Catherine, who was there, and who drew behind me at his approach, he +added, half sneeringly,—“Will _you_ come, chuck? I’ll not hurt you. No! +to you I’ve made myself worse than the devil. Well, there is _one_ who +won’t shrink from my company! By God! she’s relentless. Oh, damn it! +It’s unutterably too much for flesh and blood to bear—even mine.” + +He solicited the society of no one more. At dusk he went into his +chamber. Through the whole night, and far into the morning, we heard +him groaning and murmuring to himself. Hareton was anxious to enter; +but I bid him fetch Mr. Kenneth, and he should go in and see him. When +he came, and I requested admittance and tried to open the door, I found +it locked; and Heathcliff bid us be damned. He was better, and would be +left alone; so the doctor went away. + +The following evening was very wet: indeed, it poured down till +day-dawn; and, as I took my morning walk round the house, I observed +the master’s window swinging open, and the rain driving straight in. He +cannot be in bed, I thought: those showers would drench him through. He +must either be up or out. But I’ll make no more ado, I’ll go boldly and +look. + +Having succeeded in obtaining entrance with another key, I ran to +unclose the panels, for the chamber was vacant; quickly pushing them +aside, I peeped in. Mr. Heathcliff was there—laid on his back. His eyes +met mine so keen and fierce, I started; and then he seemed to smile. I +could not think him dead: but his face and throat were washed with +rain; the bed-clothes dripped, and he was perfectly still. The lattice, +flapping to and fro, had grazed one hand that rested on the sill; no +blood trickled from the broken skin, and when I put my fingers to it, I +could doubt no more: he was dead and stark! + +I hasped the window; I combed his black long hair from his forehead; I +tried to close his eyes: to extinguish, if possible, that frightful, +life-like gaze of exultation before any one else beheld it. They would +not shut: they seemed to sneer at my attempts; and his parted lips and +sharp white teeth sneered too! Taken with another fit of cowardice, I +cried out for Joseph. Joseph shuffled up and made a noise, but +resolutely refused to meddle with him. + +“Th’ divil’s harried off his soul,” he cried, “and he may hev’ his +carcass into t’ bargin, for aught I care! Ech! what a wicked ’un he +looks, girning at death!” and the old sinner grinned in mockery. I +thought he intended to cut a caper round the bed; but suddenly +composing himself, he fell on his knees, and raised his hands, and +returned thanks that the lawful master and the ancient stock were +restored to their rights. + +I felt stunned by the awful event; and my memory unavoidably recurred +to former times with a sort of oppressive sadness. But poor Hareton, +the most wronged, was the only one who really suffered much. He sat by +the corpse all night, weeping in bitter earnest. He pressed its hand, +and kissed the sarcastic, savage face that every one else shrank from +contemplating; and bemoaned him with that strong grief which springs +naturally from a generous heart, though it be tough as tempered steel. + +Mr. Kenneth was perplexed to pronounce of what disorder the master +died. I concealed the fact of his having swallowed nothing for four +days, fearing it might lead to trouble, and then, I am persuaded, he +did not abstain on purpose: it was the consequence of his strange +illness, not the cause. + +We buried him, to the scandal of the whole neighbourhood, as he wished. +Earnshaw and I, the sexton, and six men to carry the coffin, +comprehended the whole attendance. The six men departed when they had +let it down into the grave: we stayed to see it covered. Hareton, with +a streaming face, dug green sods, and laid them over the brown mould +himself: at present it is as smooth and verdant as its companion +mounds—and I hope its tenant sleeps as soundly. But the country folks, +if you ask them, would swear on the Bible that he _walks_: there are +those who speak to having met him near the church, and on the moor, and +even within this house. Idle tales, you’ll say, and so say I. Yet that +old man by the kitchen fire affirms he has seen two on ’em looking out +of his chamber window on every rainy night since his death:—and an odd +thing happened to me about a month ago. I was going to the Grange one +evening—a dark evening, threatening thunder—and, just at the turn of +the Heights, I encountered a little boy with a sheep and two lambs +before him; he was crying terribly; and I supposed the lambs were +skittish, and would not be guided. + +“What is the matter, my little man?” I asked. + +“There’s Heathcliff and a woman yonder, under t’ nab,” he blubbered, +“un’ I darnut pass ’em.” + +I saw nothing; but neither the sheep nor he would go on, so I bid him +take the road lower down. He probably raised the phantoms from +thinking, as he traversed the moors alone, on the nonsense he had heard +his parents and companions repeat. Yet, still, I don’t like being out +in the dark now; and I don’t like being left by myself in this grim +house: I cannot help it; I shall be glad when they leave it, and shift +to the Grange. + +“They are going to the Grange, then?” I said. + +“Yes,” answered Mrs. Dean, “as soon as they are married, and that will +be on New Year’s Day.” + +“And who will live here then?” + +“Why, Joseph will take care of the house, and, perhaps, a lad to keep +him company. They will live in the kitchen, and the rest will be shut +up.” + +“For the use of such ghosts as choose to inhabit it?” I observed. + +“No, Mr. Lockwood,” said Nelly, shaking her head. “I believe the dead +are at peace: but it is not right to speak of them with levity.” + +At that moment the garden gate swung to; the ramblers were returning. + +“_They_ are afraid of nothing,” I grumbled, watching their approach +through the window. “Together, they would brave Satan and all his +legions.” + +As they stepped on to the door-stones, and halted to take a last look +at the moon—or, more correctly, at each other by her light—I felt +irresistibly impelled to escape them again; and, pressing a remembrance +into the hand of Mrs. Dean, and disregarding her expostulations at my +rudeness, I vanished through the kitchen as they opened the house-door; +and so should have confirmed Joseph in his opinion of his +fellow-servant’s gay indiscretions, had he not fortunately recognised +me for a respectable character by the sweet ring of a sovereign at his +feet. + +My walk home was lengthened by a diversion in the direction of the +kirk. When beneath its walls, I perceived decay had made progress, even +in seven months: many a window showed black gaps deprived of glass; and +slates jutted off, here and there, beyond the right line of the roof, +to be gradually worked off in coming autumn storms. + +I sought, and soon discovered, the three headstones on the slope next +the moor: the middle one grey, and half buried in heath; Edgar Linton’s +only harmonized by the turf and moss creeping up its foot; Heathcliff’s +still bare. + +I lingered round them, under that benign sky: watched the moths +fluttering among the heath and harebells, listened to the soft wind +breathing through the grass, and wondered how any one could ever +imagine unquiet slumbers for the sleepers in that quiet earth. + + + + +*** END OF THE PROJECT GUTENBERG EBOOK WUTHERING HEIGHTS *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + diff --git a/text/Harry_Potter_all_books_preprocessed.txt b/text/Harry_Potter_all_books_preprocessed.txt new file mode 100644 index 0000000..0547463 --- /dev/null +++ b/text/Harry_Potter_all_books_preprocessed.txt @@ -0,0 +1 @@ +THE BOY WHO LIVED Mr and Mrs Dursley of number four Privet Drive were proud to say that they were perfectly normal thank you very much .They were the last people youd expect to be involved in anything strange or mysterious because they just didnt hold with such nonsense .Mr Dursley was the director of a firm called Grunnings which made drills .He was a big beefy man with hardly any neck although he did have a very large mustache .Mrs Dursley was thin and blonde and had nearly twice the usual amount of neck which came in very useful as she spent so much of her time craning over garden fences spying on the neighbors .The Dursley s had a small son called Dudley and in their opinion there was no finer boy anywhere .The Dursleys had everything they wanted but they also had a secret and their greatest fear was that somebody would discover it .They didnt think they could bear it if anyone found out about the Potters .Mrs Potter was Mrs Dursleys sister but they hadnt met for several years in fact Mrs Dursley pretended she didnt have a sister because her sister and her goodfornothing husband were as unDursleyish as it was possible to be .The Dursleys shuddered to think what the neighbors would say if the Potters arrived in the street .The Dursleys knew that the Potters had a small son too but they had never even seen him .This boy was another good reason for keeping the Potters away they didnt want Dudley mixing with a child like that .When Mr and Mrs Dursley woke up on the dull gray Tuesday our story starts there was nothing about the cloudy sky outside to suggest that strange and mysterious things would soon be happening all over the country .Mr Dursley hummed as he picked out his most boring tie for work and Mrs Dursley gossiped away happily as she wrestled a screaming Dudley into his high chair .None of them noticed a large tawny owl flutter past the window .At half past eight Mr Dursley picked up his briefcase pecked Mrs Dursley on the cheek and tried to kiss Dudley goodbye but missed because Dudley was now having a tantrum and throwing his cereal at the walls .Little tyke chortled Mr Dursley as he left the house .He got into his car and backed out of number fours drive .It was on the corner of the street that he noticed the first sign of something peculiar a cat reading a map .For a second Mr Dursley didnt realize what he had seen then he jerked his head around to look again .There was a tabby cat standing on the corner of Privet Drive but there wasnt a map in sight .What could he have been thinking of ?It must have been a trick of the light .Mr Dursley blinked and stared at the cat .It stared back .As Mr Dursley drove around the corner and up the road he watched the cat in his mirror .It was now reading the sign that said Privet Drive no looking at the sign cats couldnt read maps or signs .Mr Dursley gave himself a little shake and put the cat out of his mind .As he drove toward town he thought of nothing except a large order of drills he was hoping to get that day .But on the edge of town drills were driven out of his mind by something else .As he sat in the usual morning traffic jam he couldnt help noticing that there seemed to be a lot of strangely dressed people about .People in cloaks .Mr Dursley couldnt bear people who dressed in funny clothes the getups you saw on young people !He supposed this was some stupid new fashion .He drummed his fingers on the steering wheel and his eyes fell on a huddle of these weirdos standing quite close by .They were whispering excitedly together .Mr Dursley was enraged to see that a couple of them werent young at all why that man had to be older than he was and wearing an emeraldgreen cloak !The nerve of him !But then it struck Mr Dursley that this was probably some silly stunt these people were obviously collecting for something .yes that would be it .The traffic moved on and a few minutes later Mr Dursley arrived in the Grunnings parking lot his mind back on drills .Mr Dursley always sat with his back to the window in his office on the ninth floor .If he hadnt he might have found it harder to concentrate on drills that morning .He didnt see the owls swooping past in broad daylight though people down in the street did they pointed and gazed openmouthed as owl after owl sped overhead .Most of them had never seen an owl even at nighttime .Mr Dursley however had a perfectly normal owlfree morning .He yelled at five different people .He made several important telephone calls and shouted a bit more .He was in a very good mood until lunchtime when he thought hed stretch his legs and walk across the road to buy himself a bun from the bakery .Hed forgotten all about the people in cloaks until he passed a group of them next to the bakers .He eyed them angrily as he passed .He didnt know why but they made him uneasy .This bunch were whispering excitedly too and he couldnt see a single collecting tin .It was on his way back past them clutching a large doughnut in a bag that he caught a few words of what they were saying .The Potters thats right thats what I heard yes their son Harry Mr Dursley stopped dead .Fear flooded him .He looked back at the whisperers as if he wanted to say something to them but thought better of it .He dashed back across the road hurried up to his office snapped at his secretary not to disturb him seized his telephone and had almost finished dialing his home number when he changed his mind .He put the receiver back down and stroked his mustache thinking .no he was being stupid .Potter wasnt such an unusual name .He was sure there were lots of people called Potter who had a son called Harry .Come to think of it he wasnt even sure his nephew was called Harry .Hed never even seen the boy .It might have been Harvey .Or Harold .There was no point in worrying Mrs Dursley she always got so upset at any mention of her sister .He didnt blame her if hed had a sister like that .but all the same those people in cloaks .He found it a lot harder to concentrate on drills that afternoon and when he left the building at five oclock he was still so worried that he walked straight into someone just outside the door .Sorry he grunted as the tiny old man stumbled and almost fell .It was a few seconds before Mr Dursley realized that the man was wearing a violet cloak .He didnt seem at all upset at being almost knocked to the ground .On the contrary his face split into a wide smile and he said in a squeaky voice that made passersby stare Dont be sorry my dear sir for nothing could upset me today !Rejoice for You KnowWho has gone at last !Even Muggles like yourself should be celebrating this happy happy day !And the old man hugged Mr Dursley around the middle and walked off .Mr Dursley stood rooted to the spot .He had been hugged by a complete stranger .He also thought he had been called a Muggle whatever that was .He was rattled .He hurried to his car and set off for home hoping he was imagining things which he had never hoped before because he didnt approve of imagination .As he pulled into the driveway of number four the first thing he saw and it didnt improve his mood was the tabby cat hed spotted that morning .It was now sitting on his garden wall .He was sure it was the same one it had the same markings around its eyes .Shoo !said Mr Dursley loudly .The cat didnt move .It just gave him a stern look .Was this normal cat behavior ?Mr Dursley wondered .Trying to pull himself together he let himself into the house .He was still determined not to mention anything to his wife .Mrs Dursley had had a nice normal day .She told him over dinner all about Mrs Next Doors problems with her daughter and how Dudley had learned a new word Wont .Mr Dursley tried to act normally .When Dudley had been put to bed he went into the living room in time to catch the last report on the evening news And finally birdwatchers everywhere have reported that the nations owls have been behaving very unusually today .Although owls normally hunt at night and are hardly ever seen in daylight there have been hundreds of sightings of these birds flying in every direction since sunrise .Experts are unable to explain why the owls have suddenly changed their sleeping pattern .The newscaster allowed himself a grin .Most mysterious .And now over to Jim McGuffin with the weather .Going to be any more showers of owls tonight Jim ?Well Ted said the weatherman I dont know about that but its not only the owls that have been acting oddly today .Viewers as far apart as Kent Yorkshire and Dundee have been phoning in to tell me that instead of the rain I promised yesterday theyve had a downpour of shooting stars !Perhaps people have been celebrating Bonfire Night early its not until next week folks !But I can promise a wet night tonight .Mr Dursley sat frozen in his armchair .Shooting stars all over Britain ?Owls flying by daylight ?Mysterious people in cloaks all over the place ?And a whisper a whisper about the Potters .Mrs Dursley came into the living room carrying two cups of tea .It was no good .Hed have to say something to her .He cleared his throat nervously .Er Petunia dear you havent heard from your sister lately have you ?As he had expected Mrs Dursley looked shocked and angry .After all they normally pretended she didnt have a sister .No she said sharply .Why ?Funny stuff on the news Mr Dursley mumbled .Owls .shooting stars .and there were a lot of funnylooking people in town today .So ?snapped Mrs Dursley .Well I just thought .maybe .it was something to do with .you know .her crowd .Mrs Dursley sipped her tea through pursed lips .Mr Dursley wondered whether he dared tell her hed heard the name Potter .He decided he didnt dare .Instead he said as casually as he could Their son hed be about Dudleys age now wouldnt he ?I suppose so said Mrs Dursley stiffly .Whats his name again ?Howard isnt it ?Harry .Nasty common name if you ask me .Oh yes said Mr Dursley his heart sinking horribly .Yes I quite agree .He didnt say another word on the subject as they went upstairs to bed .While Mrs Dursley was in the bathroom Mr Dursley crept to the bedroom window and peered down into the front garden .The cat was still there .It was staring down Privet Drive as though it were waiting for something .Was he imagining things ?Could all this have anything to do with the Potters ?If it did .if it got out that they were related to a pair of well he didnt think he could bear it .The Dursleys got into bed .Mrs Dursley fell asleep quickly but Mr Dursley lay awake turning it all over in his mind .His last comforting thought before he fell asleep was that even if the Potters were involved there was no reason for them to come near him and Mrs Dursley .The Potters knew very well what he and Petunia thought about them and their kind .He couldnt see how he and Petunia could get mixed up in anything that might be going on he yawned and turned over it couldnt affect them .How very wrong he was .Mr Dursley might have been drifting into an uneasy sleep but the cat on the wall outside was showing no sign of sleepiness .It was sitting as still as a statue its eyes fixed unblinkingly on the far corner of Privet Drive .It didnt so much as quiver when a car door slammed on the next street nor when two owls swooped overhead .In fact it was nearly midnight before the cat moved at all .A man appeared on the corner the cat had been watching appeared so suddenly and silently youd have thought hed just popped out of the ground .The cats tail twitched and its eyes narrowed .Nothing like this man had ever been seen on Privet Drive .He was tall thin and very old judging by the silver of his hair and beard which were both long enough to tuck into his belt .He was wearing long robes a purple cloak that swept the ground and highheeled buckled boots .His blue eyes were light bright and sparkling behind halfmoon spectacles and his nose was very long and crooked as though it had been broken at least twice .This mans name was Albus Dumbledore .Albus Dumbledore didnt seem to realize that he had just arrived in a street where everything from his name to his boots was unwelcome .He was busy rummaging in his cloak looking for something .But he did seem to realize he was being watched because he looked up suddenly at the cat which was still staring at him from the other end of the street .For some reason the sight of the cat seemed to amuse him .He chuckled and muttered I should have known .He found what he was looking for in his inside pocket .It seemed to be a silver cigarette lighter .He flicked it open held it up in the air and clicked it .The nearest street lamp went out with a little pop .He clicked it again the next lamp flickered into darkness .Twelve times he clicked the PutOuter until the only lights left on the whole street were two tiny pinpricks in the distance which were the eyes of the cat watching him .If anyone looked out of their window now even beadyeyed Mrs Dursley they wouldnt be able to see anything that was happening down on the pavement .Dumbledore slipped the Put Outer back inside his cloak and set off down the street toward number four where he sat down on the wall next to the cat .He didnt look at it but after a moment he spoke to it .Fancy seeing you here Professor McGonagall .He turned to smile at the tabby but it had gone .Instead he was smiling at a rather severelooking woman who was wearing square glasses exactly the shape of the markings the cat had had around its eyes .She too was wearing a cloak an emerald one .Her black hair was drawn into a tight bun .She looked distinctly ruffled .How did you know it was me ?she asked .My dear Professor Ive never seen a cat sit so stiffly .Youd be stiff if youd been sitting on a brick wall all day said Professor McGonagall .All day ?When you could have been celebrating ?I must have passed a dozen feasts and parties on my way here .Professor McGonagall sniffed angrily .Oh yes everyones celebrating all right she said impatiently .Youd think theyd be a bit more careful but no even the Muggles have noticed somethings going on .It was on their news .She jerked her head back at the Dursleys dark livingroom window .I heard it .Flocks of owls .shooting stars .Well theyre not completely stupid .They were bound to notice something .Shooting stars down in Kent Ill bet that was Dedalus Diggle .He never had much sense .You cant blame them said Dumbledore gently .Weve had precious little to celebrate for eleven years .I know that said Professor McGonagall irritably .But thats no reason to lose our heads .People are being downright careless out on the streets in broad daylight not even dressed in Muggle clothes swapping rumors .She threw a sharp sideways glance at Dumbledore here as though hoping he was going to tell her something but he didnt so she went on .A fine thing it would be if on the very day YouKnowWho seems to have disappeared at last the Muggles found out about us all .I suppose he really has gone Dumbledore ?It certainly seems so said Dumbledore .We have much to be thankful for .Would you care for a lemon drop ?A what ?A lemon drop .Theyre a kind of Muggle sweet Im rather fond of .No thank you said Professor McGonagall coldly as though she didnt think this was the moment for lemon drops .As I say even if YouKnowWho has gone My dear Professor surely a sensible person like yourself can call him by his name ?All this You KnowWho nonsense for eleven years I have been trying to persuade people to call him by his proper name Voldemort .Professor McGonagall flinched but Dumbledore who was unsticking two lemon drops seemed not to notice .It all gets so confusing if we keep saying YouKnowWho .I have never seen any reason to be frightened of saying Voldemorts name .I know you havent said Professor McGonagall sounding half exasperated half admiring .But youre different .Everyone knows youre the only one You Know oh all right Voldemort was frightened of .You flatter me said Dumbledore calmly .Voldemort had powers I will never have .Only because youre too well noble to use them .Its lucky its dark .I havent blushed so much since Madam Pomfrey told me she liked my new earmuffs .Professor McGonagall shot a sharp look at Dumbledore and said The owls are nothing next to the rumors that are flying around .You know what everyones saying ?About why hes disappeared ?About what finally stopped him ?It seemed that Professor McGonagall had reached the point she was most anxious to discuss the real reason she had been waiting on a cold hard wall all day for neither as a cat nor as a woman had she fixed Dumbledore with such a piercing stare as she did now .It was plain that whatever everyone was saying she was not going to believe it until Dumbledore told her it was true .Dumbledore however was choosing another lemon drop and did not answer .What theyre saying she pressed on is that last night Voldemort turned up in Godrics Hollow .He went to find the Potters .The rumor is that Lily and James Potter are are that theyre dead .Dumbledore bowed his head .Professor McGonagall gasped .Lily and James .I cant believe it .I didnt want to believe it .Oh Albus .Dumbledore reached out and patted her on the shoulder .I know .I know .he said heavily .Professor McGonagalls voice trembled as she went on .Thats not all .Theyre saying he tried to kill the Potters son Harry .But he couldnt .He couldnt kill that little boy .No one knows why or how but theyre saying that when he couldnt kill Harry Potter Voldemorts power somehow broke and thats why hes gone .Dumbledore nodded glumly .Its its true ?faltered Professor McGonagall .After all hes done .all the people hes killed .he couldnt kill a little boy ?Its just astounding .of all the things to stop him .but how in the name of heaven did Harry survive ?We can only guess said Dumbledore .We may never know .Professor McGonagall pulled out a lace handkerchief and dabbed at her eyes beneath her spectacles .Dumbledore gave a great sniff as he took a golden watch from his pocket and examined it .It was a very odd watch .It had twelve hands but no numbers instead little planets were moving around the edge .It must have made sense to Dumbledore though because he put it back in his pocket and said Hagrids late .I suppose it was he who told you Id be here by the way ?Yes said Professor McGonagall .And I dont suppose youre going to tell me why youre here of all places ?Ive come to bring Harry to his aunt and uncle .Theyre the only family he has left now .You dont mean you cant mean the people who live here ?cried Professor McGonagall jumping to her feet and pointing at number four .Dumbledore you cant .Ive been watching them all day .You couldnt find two people who are less like us .And theyve got this son I saw him kicking his mother all the way up the street screaming for sweets .Harry Potter come and live here !Its the best place for him said Dumbledore firmly .His aunt and uncle will be able to explain everything to him when hes older .Ive written them a letter .A letter ?repeated Professor McGonagall faintly sitting back down on the wall .Really Dumbledore you think you can explain all this in a letter ?These people will never understand him !Hell be famous a legend I wouldnt be surprised if today was known as Harry Potter Day in the future there will be books written about Harry every child in our world will know his name !Exactly said Dumbledore looking very seriously over the top of his halfmoon glasses .It would be enough to turn any boys head .Famous before he can walk and talk !Famous for something he wont even remember !Cant you see how much better off hell be growing up away from all that until hes ready to take it ?Professor McGonagall opened her mouth changed her mind swallowed and then said Yes yes youre right of course .But how is the boy getting here Dumbledore ?She eyed his cloak suddenly as though she thought he might be hiding Harry underneath it .Hagrids bringing him .You think it wise to trust Hagrid with something as important as this ?I would trust Hagrid with my life said Dumbledore .Im not saying his heart isnt in the right place said Professor McGonagall grudgingly but you cant pretend hes not careless .He does tend to what was that ?A low rumbling sound had broken the silence around them .It grew steadily louder as they looked up and down the street for some sign of a headlight it swelled to a roar as they both looked up at the sky and a huge motorcycle fell out of the air and landed on the road in front of them .If the motorcycle was huge it was nothing to the man sitting astride it .He was almost twice as tall as a normal man and at least five times as wide .He looked simply too big to be allowed and so wild long tangles of bushy black hair and beard hid most of his face he had hands the size of trash can lids and his feet in their leather boots were like baby dolphins .In his vast muscular arms he was holding a bundle of blankets .Hagrid said Dumbledore sounding relieved .At last .And where did you get that motorcycle ?Borrowed it Professor Dumbledore sir said the giant climbing carefully off the motorcycle as he spoke .Young Sirius Black lent it to me .Ive got him sir .No problems were there ?No sir house was almost destroyed but I got him out all right before the Muggles started swarmin around .He fell asleep as we was flyin over Bristol .Dumbledore and Professor McGonagall bent forward over the bundle of blankets .Inside just visible was a baby boy fast asleep .Under a tuft of jetblack hair over his forehead they could see a curiously shaped cut like a bolt of lightning .Is that where ?whispered Professor McGonagall .Yes said Dumbledore .Hell have that scar forever .Couldnt you do something about it Dumbledore ?Even if I could I wouldnt .Scars can come in handy .I have one myself above my left knee that is a perfect map of the London Underground .Well give him here Hagrid wed better get this over with .Dumbledore took Harry in his arms and turned toward the Dursleys house .Could I could I say goodbye to him sir ?asked Hagrid .He bent his great shaggy head over Harry and gave him what must have been a very scratchy whiskery kiss .Then suddenly Hagrid let out a howl like a wounded dog .Shhh !hissed Professor McGonagall youll wake the Muggles !Sssorry sobbed Hagrid taking out a large spotted handkerchief and burying his face in it .But I cc cant stand it Lily an James dead an poor little Harry off ter live with Muggles Yes yes its all very sad but get a grip on yourself Hagrid or well be found Professor McGonagall whispered patting Hagrid gingerly on the arm as Dumbledore stepped over the low garden wall and walked to the front door .He laid Harry gently on the doorstep took a letter out of his cloak tucked it inside Harrys blankets and then came back to the other two .For a full minute the three of them stood and looked at the little bundle Hagrids shoulders shook Professor McGonagall blinked furiously and the twinkling light that usually shone from Dumbledores eyes seemed to have gone out .Well said Dumbledore finally thats that .Weve no business staying here .We may as well go and join the celebrations .Yeah said Hagrid in a very muffled voice Id best get this bike away .G night Professor McGonagall Professor Dumbledore sir .Wiping his streaming eyes on his jacket sleeve Hagrid swung himself onto the motorcycle and kicked the engine into life with a roar it rose into the air and off into the night .I shall see you soon I expect Professor McGonagall said Dumbledore nodding to her .Professor McGonagall blew her nose in reply .Dumbledore turned and walked back down the street .On the corner he stopped and took out the silver Put Outer .He clicked it once and twelve balls of light sped back to their street lamps so that Privet Drive glowed suddenly orange and he could make out a tabby cat slinking around the corner at the other end of the street .He could just see the bundle of blankets on the step of number four .Good luck Harry he murmured .He turned on his heel and with a swish of his cloak he was gone .A breeze ruffled the neat hedges of Privet Drive which lay silent and tidy under the inky sky the very last place you would expect astonishing things to happen .Harry Potter rolled over inside his blankets without waking up .One small hand closed on the letter beside him and he slept on not knowing he was special not knowing he was famous not knowing he would be woken in a few hours time by Mrs Dursleys scream as she opened the front door to put out the milk bottles nor that he would spend the next few weeks being prodded and pinched by his cousin Dudley .He couldnt know that at this very moment people meeting in secret all over the country were holding up their glasses and saying in hushed voices To Harry Potter the boy who lived !THE VANASHIG GLASS Nearly ten years had passed since the Dursleys had woken up to find their nephew on the front step but Privet Drive had hardly changed at all .The sun rose on the same tidy front gardens and lit up the brass number four on the Dursleys front door it crept into their living room which was almost exactly the same as it had been on the night when Mr Dursley had seen that fateful news report about the owls .Only the photographs on the mantelpiece really showed how much time had passed .Ten years ago there had been lots of pictures of what looked like a large pink beach ball wearing differentcolored bonnets but Dudley Dursley was no longer a baby and now the photographs showed a large blond boy riding his first bicycle on a carousel at the fair playing a computer game with his father being hugged and kissed by his mother .The room held no sign at all that another boy lived in the house too .Yet Harry Potter was still there asleep at the moment but not for long .His Aunt Petunia was awake and it was her shrill voice that made the first noise of the day .Up !Get up !Now !Harry woke with a start .His aunt rapped on the door again .Up !she screeched .Harry heard her walking toward the kitchen and then the sound of the frying pan being put on the stove .He rolled onto his back and tried to remember the dream he had been having .It had been a good one .There had been a flying motorcycle in it .He had a funny feeling hed had the same dream before .His aunt was back outside the door .Are you up yet ?she demanded .Nearly said Harry .Well get a move on I want you to look after the bacon .And dont you dare let it burn I want everything perfect on Duddys birthday .Harry groaned .What did you say ?his aunt snapped through the door .Nothing nothing .Dudleys birthday how could he have forgotten ?Harry got slowly out of bed and started looking for socks .He found a pair under his bed and after pulling a spider off one of them put them on .Harry was used to spiders because the cupboard under the stairs was full of them and that was where he slept .When he was dressed he went down the hall into the kitchen .The table was almost hidden beneath all Dudleys birthday presents .It looked as though Dudley had gotten the new computer he wanted not to mention the second television and the racing bike .Exactly why Dudley wanted a racing bike was a mystery to Harry as Dudley was very fat and hated exercise unless of course it involved punching somebody .Dudleys favorite punching bag was Harry but he couldnt often catch him .Harry didnt look it but he was very fast .Perhaps it had something to do with living in a dark cupboard but Harry had always been small and skinny for his age .He looked even smaller and skinnier than he really was because all he had to wear were old clothes of Dudleys and Dudley was about four times bigger than he was .Harry had a thin face knobbly knees black hair and bright green eyes .He wore round glasses held together with a lot of Scotch tape because of all the times Dudley had punched him on the nose .The only thing Harry liked about his own appearance was a very thin scar on his forehead that was shaped like a bolt of lightning .He had had it as long as he could remember and the first question he could ever remember asking his Aunt Petunia was how he had gotten it .In the car crash when your parents died she had said .And dont ask questions .Dont ask questions that was the first rule for a quiet life with the Dursleys .Uncle Vernon entered the kitchen as Harry was turning over the bacon .Comb your hair !he barked by way of a morning greeting .About once a week Uncle Vernon looked over the top of his newspaper and shouted that Harry needed a haircut .Harry must have had more haircuts than the rest of the boys in his class put together but it made no difference his hair simply grew that way all over the place .Harry was frying eggs by the time Dudley arrived in the kitchen with his mother .Dudley looked a lot like Uncle Vernon .He had a large pink face not much neck small watery blue eyes and thick blond hair that lay smoothly on his thick fat head .Aunt Petunia often said that Dudley looked like a baby angel Harry often said that Dudley looked like a pig in a wig .Harry put the plates of egg and bacon on the table which was difficult as there wasnt much room .Dudley meanwhile was counting his presents .His face fell .Thirtysix he said looking up at his mother and father .Thats two less than last year .Darling you havent counted Auntie Marges present see its here under this big one from Mommy and Daddy .All right thirtyseven then said Dudley going red in the face .Harry who could see a huge Dudley tantrum coming on began wolfing down his bacon as fast as possible in case Dudley turned the table over .Aunt Petunia obviously scented danger too because she said quickly And well buy you another two presents while were out today .Hows that popkin ?Two more presents .Is that all right ?Dudley thought for a moment .It looked like hard work .Finally he said slowly So Ill have thirty .thirty .Thirtynine sweetums said Aunt Petunia .Oh .Dudley sat down heavily and grabbed the nearest parcel .All right then .Uncle Vernon chuckled .Little tyke wants his moneys worth just like his father .Atta boy Dudley !He ruffled Dudleys hair .At that moment the telephone rang and Aunt Petunia went to answer it while Harry and Uncle Vernon watched Dudley unwrap the racing bike a video camera a remote control airplane sixteen new computer games and a VCR .He was ripping the paper off a gold wristwatch when Aunt Petunia came back from the telephone looking both angry and worried .Bad news Vernon she said .Mrs Figgs broken her leg .She cant take him .She jerked her head in Harrys direction .Dudleys mouth fell open in horror but Harrys heart gave a leap .Every year on Dudleys birthday his parents took him and a friend out for the day to adventure parks hamburger restaurants or the movies .Every year Harry was left behind with Mrs Figg a mad old lady who lived two streets away .Harry hated it there .The whole house smelled of cabbage and Mrs Figg made him look at photographs of all the cats shed ever owned .Now what ?said Aunt Petunia looking furiously at Harry as though hed planned this .Harry knew he ought to feel sorry that Mrs Figg had broken her leg but it wasnt easy when he reminded himself it would be a whole year before he had to look at Tibbies Snowy Mr Paws and Tufty again .We could phone Marge Uncle Vernon suggested .Dont be silly Vernon she hates the boy .The Dursleys often spoke about Harry like this as though he wasnt there or rather as though he was something very nasty that couldnt understand them like a slug .What about whatshername your friend Yvonne ?On vacation in Majorca snapped Aunt Petunia .You could just leave me here Harry put in hopefully hed be able to watch what he wanted on television for a change and maybe even have a go on Dudleys computer .Aunt Petunia looked as though shed just swallowed a lemon .And come back and find the house in ruins ?she snarled .I wont blow up the house said Harry but they werent listening .I suppose we could take him to the zoo said Aunt Petunia slowly .and leave him in the car .That cars new hes not sitting in it alone .Dudley began to cry loudly .In fact he wasnt really crying it had been years since hed really cried but he knew that if he screwed up his face and wailed his mother would give him anything he wanted .Dinky Duddydums dont cry Mummy wont let him spoil your special day !she cried flinging her arms around him .I .dont .want .him .ttto come !Dudley yelled between huge pretend sobs .He always sp spoils everything !He shot Harry a nasty grin through the gap in his mothers arms .Just then the doorbell rang Oh good Lord theyre here !said Aunt Petunia frantically and a moment later Dudleys best friend Piers Polkiss walked in with his mother .Piers was a scrawny boy with a face like a rat .He was usually the one who held peoples arms behind their backs while Dudley hit them .Dudley stopped pretending to cry at once .Half an hour later Harry who couldnt believe his luck was sitting in the back of the Dursleys car with Piers and Dudley on the way to the zoo for the first time in his life .His aunt and uncle hadnt been able to think of anything else to do with him but before theyd left Uncle Vernon had taken Harry aside .Im warning you he had said putting his large purple face right up close to Harrys Im warning you now boy any funny business anything at all and youll be in that cupboard from now until Christmas .Im not going to do anything said Harry honestly But Uncle Vernon didnt believe him .No one ever did .The problem was strange things often happened around Harry and it was just no good telling the Dursleys he didnt make them happen .Once Aunt Petunia tired of Harry coming back from the barbers looking as though he hadnt been at all had taken a pair of kitchen scissors and cut his hair so short he was almost bald except for his bangs which she left to hide that horrible scar .Dudley had laughed himself silly at Harry who spent a sleepless night imagining school the next day where he was already laughed at for his baggy clothes and taped glasses .Next morning however he had gotten up to find his hair exactly as it had been before Aunt Petunia had sheared it off .He had been given a week in his cupboard for this even though he had tried to explain that he couldnt explain how it had grown back so quickly .Another time Aunt Petunia had been trying to force him into a revolting old sweater of Dudleys brown with orange puff balls .The harder she tried to pull it over his head the smaller it seemed to become until finally it might have fitted a hand puppet but certainly wouldnt fit Harry .Aunt Petunia had decided it must have shrunk in the wash and to his great relief Harry wasnt punished .On the other hand hed gotten into terrible trouble for being found on the roof of the school kitchens .Dudleys gang had been chasing him as usual when as much to Harrys surprise as anyone elses there he was sitting on the chimney .The Dursleys had received a very angry letter from Harrys headmistress telling them Harry had been climbing school buildings .But all hed tried to do as he shouted at Uncle Vernon through the locked door of his cupboard was jump behind the big trash cans outside the kitchen doors .Harry supposed that the wind must have caught him in midjump .But today nothing was going to go wrong .It was even worth being with Dudley and Piers to be spending the day somewhere that wasnt school his cupboard or Mrs Figgs cabbagesmelling living room .While he drove Uncle Vernon complained to Aunt Petunia .He liked to complain about things people at work Harry the council Harry the bank and Harry were just a few of his favorite subjects .This morning it was motorcycles . .roaring along like maniacs the young hoodlums he said as a motorcycle overtook them .I had a dream about a motorcycle said Harry remembering suddenly .It was flying .Uncle Vernon nearly crashed into the car in front .He turned right around in his seat and yelled at Harry his face like a gigantic beet with a mustache MOTORCYCLES DONT FLY !Dudley and Piers sniggered .I know they dont said Harry .It was only a dream .But he wished he hadnt said anything .If there was one thing the Dursleys hated even more than his asking questions it was his talking about anything acting in a way it shouldnt no matter if it was in a dream or even a cartoon they seemed to think he might get dangerous ideas .It was a very sunny Saturday and the zoo was crowded with families .The Dursleys bought Dudley and Piers large chocolate ice creams at the entrance and then because the smiling lady in the van had asked Harry what he wanted before they could hurry him away they bought him a cheap lemon ice pop .It wasnt bad either Harry thought licking it as they watched a gorilla scratching its head who looked remarkably like Dudley except that it wasnt blond .Harry had the best morning hed had in a long time .He was careful to walk a little way apart from the Dursleys so that Dudley and Piers who were starting to get bored with the animals by lunchtime wouldnt fall back on their favorite hobby of hitting him .They ate in the zoo restaurant and when Dudley had a tantrum because his knickerbocker glory didnt have enough ice cream on top Uncle Vernon bought him another one and Harry was allowed to finish the first .Harry felt afterward that he should have known it was all too good to last .After lunch they went to the reptile house .It was cool and dark in there with lit windows all along the walls .Behind the glass all sorts of lizards and snakes were crawling and slithering over bits of wood and stone .Dudley and Piers wanted to see huge poisonous cobras and thick mancrushing pythons .Dudley quickly found the largest snake in the place .It could have wrapped its body twice around Uncle Vernons car and crushed it into a trash can but at the moment it didnt look in the mood .In fact it was fast asleep .Dudley stood with his nose pressed against the glass staring at the glistening brown coils .Make it move he whined at his father .Uncle Vernon tapped on the glass but the snake didnt budge .Do it again Dudley ordered .Uncle Vernon rapped the glass smartly with his knuckles but the snake just snoozed on .This is boring Dudley moaned .He shuffled away .Harry moved in front of the tank and looked intently at the snake .He wouldnt have been surprised if it had died of boredom itself no company except stupid people drumming their fingers on the glass trying to disturb it all day long .It was worse than having a cupboard as a bedroom where the only visitor was Aunt Petunia hammering on the door to wake you up at least he got to visit the rest of the house .The snake suddenly opened its beady eyes .Slowly very slowly it raised its head until its eyes were on a level with Harrys .It winked .Harry stared .Then he looked quickly around to see if anyone was watching .They werent .He looked back at the snake and winked too .The snake jerked its head toward Uncle Vernon and Dudley then raised its eyes to the ceiling .It gave Harry a look that said quite plainly I get that all the time .I know Harry murmured through the glass though he wasnt sure the snake could hear him .It must be really annoying .The snake nodded vigorously .Where do you come from anyway ?Harry asked .The snake jabbed its tail at a little sign next to the glass .Harry peered at it .Boa Constrictor Brazil .Was it nice there ?The boa constrictor jabbed its tail at the sign again and Harry read on This specimen was bred in the zoo .Oh I see so youve never been to Brazil ?As the snake shook its head a deafening shout behind Harry made both of them jump .DUDLEY !MR Dursley !COME AND LOOK AT THIS SNAKE !YOU WONT BELIEVE WHAT ITS DOING !Dudley came waddling toward them as fast as he could .Out of the way you he said punching Harry in the ribs .Caught by surprise Harry fell hard on the concrete floor .What came next happened so fast no one saw how it happened one second Piers and Dudley were leaning right up close to the glass the next they had leapt back with howls of horror .Harry sat up and gasped the glass front of the boa constrictors tank had vanished .The great snake was uncoiling itself rapidly slithering out onto the floor .People throughout the reptile house screamed and started running for the exits .As the snake slid swiftly past him Harry could have sworn a low hissing voice said Brazil here I come . .Thanksss amigo .The keeper of the reptile house was in shock .But the glass he kept saying where did the glass go ?The zoo director himself made Aunt Petunia a cup of strong sweet tea while he apologized over and over again .Piers and Dudley could only gibber .As far as Harry had seen the snake hadnt done anything except snap playfully at their heels as it passed but by the time they were all back in Uncle Vernons car Dudley was telling them how it had nearly bitten off his leg while Piers was swearing it had tried to squeeze him to death .But worst of all for Harry at least was Piers calming down enough to say Harry was talking to it werent you Harry ?Uncle Vernon waited until Piers was safely out of the house before starting on Harry .He was so angry he could hardly speak .He managed to say Go cupboard stay no meals before he collapsed into a chair and Aunt Petunia had to run and get him a large brandy .Harry lay in his dark cupboard much later wishing he had a watch .He didnt know what time it was and he couldnt be sure the Dursleys were asleep yet .Until they were he couldnt risk sneaking to the kitchen for some food .Hed lived with the Dursleys almost ten years ten miserable years as long as he could remember ever since hed been a baby and his parents had died in that car crash .He couldnt remember being in the car when his parents had died .Sometimes when he strained his memory during long hours in his cupboard he came up with a strange vision a blinding flash of green light and a burning pain on his forehead .This he supposed was the crash though he couldnt imagine where all the green light came from .He couldnt remember his parents at all .His aunt and uncle never spoke about them and of course he was forbidden to ask questions .There were no photographs of them in the house .When he had been younger Harry had dreamed and dreamed of some unknown relation coming to take him away but it had never happened the Dursleys were his only family .Yet sometimes he thought or maybe hoped that strangers in the street seemed to know him .Very strange strangers they were too .A tiny man in a violet top hat had bowed to him once while out shopping with Aunt Petunia and Dudley .After asking Harry furiously if he knew the man Aunt Petunia had rushed them out of the shop without buying anything .A wildlooking old woman dressed all in green had waved merrily at him once on a bus .A bald man in a very long purple coat had actually shaken his hand in the street the other day and then walked away without a word .The weirdest thing about all these people was the way they seemed to vanish the second Harry tried to get a closer look .At school Harry had no one .Everybody knew that Dudleys gang hated that odd Harry Potter in his baggy old clothes and broken glasses and nobody liked to disagree with Dudleys gang .3 THE LETTERS FROM NO ONE The escape of the Brazilian boa constrictor earned Harry his longestever punishment .By the time he was allowed out of his cupboard again the summer holidays had started and Dudley had already broken his new video camera crashed his remote control airplane and first time out on his racing bike knocked down old Mrs Figg as she crossed Privet Drive on her crutches .Harry was glad school was over but there was no escaping Dudleys gang who visited the house every single day .Piers Dennis Malcolm and Gordon were all big and stupid but as Dudley was the biggest and stupidest of the lot he was the leader .The rest of them were all quite happy to join in Dudleys favorite sport Harry Hunting .This was why Harry spent as much time as possible out of the house wandering around and thinking about the end of the holidays where he could see a tiny ray of hope .When September came he would be going off to secondary school and for the first time in his life he wouldnt be with Dudley .Dudley had been accepted at Uncle Vernons old private school Smeltings .Piers Polkiss was going there too .Harry on the other hand was going to Stonewall High the local public school .Dudley thought this was very funny .They stuff peoples heads down the toilet the first day at Stonewall he told Harry .Want to come upstairs and practice ?No thanks said Harry .The poor toilets never had anything as horrible as your head down it it might be sick .Then he ran before Dudley could work out what hed said .One day in July Aunt Petunia took Dudley to London to buy his Smeltings uniform leaving Harry at Mrs Figgs .Mrs Figg wasnt as bad as usual .It turned out shed broken her leg tripping over one of her cats and she didnt seem quite as fond of them as before .She let Harry watch television and gave him a bit of chocolate cake that tasted as though shed had it for several years .That evening Dudley paraded around the living room for the family in his brandnew uniform .Smeltings boys wore maroon tailcoats orange knickerbockers and flat straw hats called boaters .They also carried knobbly sticks used for hitting each other while the teachers werent looking .This was supposed to be good training for later life .As he looked at Dudley in his new knickerbockers Uncle Vernon said gruffly that it was the proudest moment of his life .Aunt Petunia burst into tears and said she couldnt believe it was her Ickle Dudleykins he looked so handsome and grownup .Harry didnt trust himself to speak .He thought two of his ribs might already have cracked from trying not to laugh .k k k There was a horrible smell in the kitchen the next morning when Harry went in for breakfast .It seemed to be coming from a large metal tub in the sink .He went to have a look .The tub was full of what looked like dirty rags swimming in gray water .Whats this ?he asked Aunt Petunia .Her lips tightened as they always did if he dared to ask a question .Your new school uniform she said .Harry looked in the bowl again .Oh he said I didnt realize it had to be so wet .Dont be stupid snapped Aunt Petunia .Im dyeing some of Dudleys old things gray for you .Itll look just like everyone elses when Ive finished .Harry seriously doubted this but thought it best not to argue .He sat down at the table and tried not to think about how he was going to look on his first day at Stonewall High like he was wearing bits of old elephant skin probably .Dudley and Uncle Vernon came in both with wrinkled noses because of the smell from Harrys new uniform .Uncle Vernon opened his newspaper as usual and Dudley banged his Smelting stick which he carried everywhere on the table .They heard the click of the mail slot and flop of letters on the doormat .Get the mail Dudley said Uncle Vernon from behind his paper .Make Harry get it .Get the mail Harry .Make Dudley get it .Poke him with your Smelting stick Dudley .Harry dodged the Smelting stick and went to get the mail .Three things lay on the doormat a postcard from Uncle Vernons sister Marge who was vacationing on the Isle of Wight a brown envelope that looked like a bill and a letter for Harry .Harry picked it up and stared at it his heart twanging like a giant elastic band .No one ever in his whole life had written to him .Who would ?He had no friends no other relatives he didnt belong to the library so hed never even got rude notes asking for books back .Yet here it was a letter addressed so plainly there could be no mistake Mr H .Potter The Cupboard under the Stairs 4 Privet Drive Little Whinging Surrey The envelope was thick and heavy made of yellowish parchment and the address was written in emerald green ink .There was no stamp .Turning the envelope over his hand trembling Harry saw a purple wax seal bearing a coat of arms a lion an eagle a badger and a snake surrounding a large letter H .Hurry up boy !shouted Uncle Vernon from the kitchen .What are you doing checking for letter bombs ?He chuckled at his own joke .Harry went back to the kitchen still staring at his letter .He handed Uncle Vernon the bill and the postcard sat down and slowly began to open the yellow envelope .Uncle Vernon ripped open the bill snorted in disgust and flipped over the postcard .Marges ill he informed Aunt Petunia .Ate a funny whelk .Dad !said Dudley suddenly .Dad Harrys got something !Harry was on the point of unfolding his letter which was written on the same heavy parchment as the envelope when it was jerked sharply out of his hand by Uncle Vernon .Thats mine said Harry trying to snatch it back .Whod be writing to you ?sneered Uncle Vernon shaking the letter open with one hand and glancing at it .His face went from red to green faster than a set of traffic lights .And it didnt stop there .Within seconds it was the grayish white of old porridge .PPPetunia !he gasped .Dudley tried to grab the letter to read it but Uncle Vernon held it high out of his reach .Aunt Petunia took it curiously and read the first line .For a moment it looked as though she might faint .She clutched her throat and made a choking noise .Vernon !Oh my goodness Vernon !They stared at each other seeming to have forgotten that Harry and Dudley were still in the room .Dudley wasnt used to being ignored .He gave his father a sharp tap on the head with his Smelting stick .I want to read that letter he said loudly .I want to read it said Harry furiously as its mine .Get out both of you croaked Uncle Vernon stuffing the letter back inside its envelope .Harry didnt move .I WANT MY LETTER !he shouted .Let me see it !demanded Dudley .OUT !roared Uncle Vernon and he took both Harry and Dudley by the scruffs of their necks and threw them into the hall slamming the kitchen door behind them .Harry and Dudley promptly had a furious but silent fight over who would listen at the keyhole Dudley won so Harry his glasses dangling from one ear lay flat on his stomach to listen at the crack between door and floor .Vernon Aunt Petunia was saying in a quivering voice look at the address how could they possibly know where he sleeps ?You dont think theyre watching the house ?Watching spying might be following us muttered Uncle Vernon wildly .But what should we do Vernon ?Should we write back ?Tell them we dont want Harry could see Uncle Vernons shiny black shoes pacing up and down the kitchen .No he said finally .No well ignore it .If they dont get an answer .Yes thats best .we wont do anything .But Im not having one in the house Petunia !Didnt we swear when we took him in wed stamp out that dangerous nonsense ?That evening when he got back from work Uncle Vernon did something hed never done before he visited Harry in his cupboard .Wheres my letter ?said Harry the moment Uncle Vernon had squeezed through the door .Whos writing to me ?No one .It was addressed to you by mistake said Uncle Vernon shortly .I have burned it .It was not a mistake said Harry angrily it had my cupboard on it .SILENCE !yelled Uncle Vernon and a couple of spiders fell from the ceiling .He took a few deep breaths and then forced his face into a smile which looked quite painful .Er yes Harry about this cupboard .Your aunt and I have been thinking .youre really getting a bit big for it .we think it might be nice if you moved into Dudleys second bedroom .Why ?said Harry .Dont ask questions !snapped his uncle .Take this stuff upstairs now .The Dursleys house had four bedrooms one for Uncle Vernon and Aunt Petunia one for visitors usually Uncle Vernons sister Marge one where Dudley slept and one where Dudley kept all the toys and things that wouldnt fit into his first bedroom .It only took Harry one trip upstairs to move everything he owned from the cupboard to this room .He sat down on the bed and stared around him .Nearly everything in here was broken .The monthold video camera was lying on top of a small working tank Dudley had once driven over the next door neighbors dog in the corner was Dudleys firstever television set which hed put his foot through when his favorite program had been canceled there was a large birdcage which had once held a parrot that Dudley had swapped at school for a real air rifle which was up on a shelf with the end all bent because Dudley had sat on it .Other shelves were full of books .They were the only things in the room that looked as though theyd never been touched .From downstairs came the sound of Dudley bawling at his mother I dont want him in there .I need that room .make him get out .Harry sighed and stretched out on the bed .Yesterday hed have given anything to be up here .Today hed rather be back in his cupboard with that letter than up here without it .Next morning at breakfast everyone was rather quiet .Dudley was in shock .Hed screamed whacked his father with his Smelting stick been sick on purpose kicked his mother and thrown his tortoise through the greenhouse roof and he still didnt have his room back .Harry was thinking about this time yesterday and bitterly wishing hed opened the letter in the hall .Uncle Vernon and Aunt Petunia kept looking at each other darkly .When the mail arrived Uncle Vernon who seemed to be trying to be nice to Harry made Dudley go and get it .They heard him banging things with his Smelting stick all the way down the hall .Then he shouted Theres another one ! ‘Mr H .Potter The Smallest Bedroom 4 Privet Drive With a strangled cry Uncle Vernon leapt from his seat and ran down the hall Harry right behind him .Uncle Vernon had to wrestle Dudley to the ground to get the letter from him which was made difficult by the fact that Harry had grabbed Uncle Vernon around the neck from behind .After a minute of confused fighting in which everyone got hit a lot by the Smelting stick Uncle Vernon straightened up gasping for breath with Harrys letter clutched in his hand .Go to your cupboard I mean your bedroom he wheezed at Harry .Dudley go just go .Harry walked round and round his new room .Someone knew he had moved out of his cupboard and they seemed to know he hadnt received his first letter .Surely that meant theyd try again ?And this time hed make sure they didnt fail .He had a plan .The repaired alarm clock rang at six oclock the next morning .Harry turned it off quickly and dressed silently .He mustnt wake the Dursleys .He stole downstairs without turning on any of the lights .He was going to wait for the postman on the corner of Privet Drive and get the letters for number four first .His heart hammered as he crept across the dark hall toward the front door aaRRRGH !Harry leapt into the air hed trodden on something big and squashy on the doormat something alive Lights clicked on upstairs and to his horror Harry realized that the big squashy something had been his uncles face .Uncle Vernon had been lying at the foot of the front door in a sleeping bag clearly making sure that Harry didnt do exactly what hed been trying to do .He shouted at Harry for about half an hour and then told him to go and make a cup of tea .Harry shuffled miserably off into the kitchen and by the time he got back the mail had arrived right into Uncle Vernons lap .Harry could see three letters addressed in green ink .I want he began but Uncle Vernon was tearing the letters into pieces before his eyes .Uncle Vernon didnt go to work that day .He stayed at home and nailed up the mail slot .See he explained to Aunt Petunia through a mouthful of nails if they cant deliver them theyll just give up .Im not sure thatll work Vernon .Oh these peoples minds work in strange ways Petunia theyre not like you and me said Uncle Vernon trying to knock in a nail with the piece of fruitcake Aunt Petunia had just brought him .On Friday no less than twelve letters arrived for Harry .As they couldnt go through the mail slot they had been pushed under the door slotted through the sides and a few even forced through the small window in the downstairs bathroom .Uncle Vernon stayed at home again .After burning all the letters he got out a hammer and nails and boarded up the cracks around the front and back doors so no one could go out .He hummed Tiptoe Through the Tulips as he worked and jumped at small noises .On Saturday things began to get out of hand .Twentyfour letters to Harry found their way into the house rolled up and hidden inside each of the two dozen eggs that their very confused milkman had handed Aunt Petunia through the living room window .While Uncle Vernon made furious telephone calls to the post office and the dairy trying to find someone to complain to Aunt Petunia shredded the letters in her food processor .Who on earth wants to talk to you this badly ?Dudley asked Harry in amazement . •k k k On Sunday morning Uncle Vernon sat down at the breakfast table looking tired and rather ill but happy .No post on Sundays he reminded them cheerfully as he spread marmalade on his newspapers no damn letters today Something came whizzing down the kitchen chimney as he spoke and caught him sharply on the back of the head .Next moment thirty or forty letters came pelting out of the fireplace like bullets .The Dursleys ducked but Harry leapt into the air trying to catch one Out !OUT !Uncle Vernon seized Harry around the waist and threw him into the hall .When Aunt Petunia and Dudley had run out with their arms over their faces Uncle Vernon slammed the door shut .They could hear the letters still streaming into the room bouncing off the walls and floor .That does it said Uncle Vernon trying to speak calmly but pulling great tufts out of his mustache at the same time .I want you all back here in five minutes ready to leave .Were going away .Just pack some clothes .No arguments !He looked so dangerous with half his mustache missing that no one dared argue .Ten minutes later they had wrenched their way through the boardedup doors and were in the car speeding toward the highway .Dudley was sniffling in the back seat his father had hit him round the head for holding them up while he tried to pack his television VCR and computer in his sports bag .They drove .And they drove .Even Aunt Petunia didnt dare ask where they were going .Every now and then Uncle Vernon would take a sharp turn and drive in the opposite direction for a while .Shake em off .shake em off he would mutter whenever he did this .They didnt stop to eat or drink all day .By nightfall Dudley was howling .Hed never had such a bad day in his life .He was hungry hed missed five television programs hed wanted to see and hed never gone so long without blowing up an alien on his computer .Uncle Vernon stopped at last outside a gloomy looking hotel on the outskirts of a big city .Dudley and Harry shared a room with twin beds and damp musty sheets .Dudley snored but Harry stayed awake sitting on the windowsill staring down at the lights of passing cars and wondering .They ate stale cornflakes and cold tinned tomatoes on toast for breakfast the next day .They had just finished when the owner of the hotel came over to their table .Scuse me but is one of you Mr H .Potter ?Only I got about an undred of these at the front desk .She held up a letter so they could read the green ink address Mr H .Potter Room 1 7 Railview Hotel Cokeworth Harry made a grab for the letter but Uncle Vernon knocked his hand out of the way .The woman stared .Ill take them said Uncle Vernon standing up quickly and following her from the dining room . •k k k Wouldnt it be better just to go home dear ?Aunt Petunia suggested timidly hours later but Uncle Vernon didnt seem to hear her .Exactly what he was looking for none of them knew .He drove them into the middle of a forest got out looked around shook his head got back in the car and off they went again .The same thing happened in the middle of a plowed field halfway across a suspension bridge and at the top of a multilevel parking garage .Daddys gone mad hasnt he ?Dudley asked Aunt Petunia dully late that afternoon .Uncle Vernon had parked at the coast locked them all inside the car and disappeared .It started to rain .Great drops beat on the roof of the car .Dudley sniveled .Its Monday he told his mother .The Great Humbertos on tonight .I want to stay somewhere with a television .Monday .This reminded Harry of something .If it was Monday and you could usually count on Dudley to know the days of the week because of television then tomorrow Tuesday was Harrys eleventh birthday .Of course his birthdays were never exactly fun last year the Dursleys had given him a coat hanger and a pair of Uncle Vernons old socks .Still you werent eleven every day .Uncle Vernon was back and he was smiling .He was also carrying a long thin package and didnt answer Aunt Petunia when she asked what hed bought .Found the perfect place !he said .Come on !Everyone out !It was very cold outside the car .Uncle Vernon was pointing at what looked like a large rock way out at sea .Perched on top of the rock was the most miserable little shack you could imagine .One thing was certain there was no television in there .Storm forecast for tonight !said Uncle Vernon gleefully clapping his hands together .And this gentlemans kindly agreed to lend us his boat !A toothless old man came ambling up to them pointing with a rather wicked grin at an old rowboat bobbing in the irongray water below them .Ive already got us some rations said Uncle Vernon so all aboard !It was freezing in the boat .Icy sea spray and rain crept down their necks and a chilly wind whipped their faces .After what seemed like hours they reached the rock where Uncle Vernon slipping and sliding led the way to the brokendown house .The inside was horrible it smelled strongly of seaweed the wind whistled through the gaps in the wooden walls and the fireplace was damp and empty .There were only two rooms .Uncle Vernons rations turned out to be a bag of chips each and four bananas .He tried to start a fire but the empty chip bags just smoked and shriveled up .Could do with some of those letters now eh ?he said cheerfully .He was in a very good mood .Obviously he thought nobody stood a chance of reaching them here in a storm to deliver mail .Harry privately agreed though the thought didnt cheer him up at all .As night fell the promised storm blew up around them .Spray from the high waves splattered the walls of the hut and a fierce wind rattled the filthy windows .Aunt Petunia found a few moldy blankets in the second room and made up a bed for Dudley on the motheaten sofa .She and Uncle Vernon went off to the lumpy bed next door and Harry was left to find the softest bit of floor he could and to curl up under the thinnest most ragged blanket .The storm raged more and more ferociously as the night went on .Harry couldnt sleep .He shivered and turned over trying to get comfortable his stomach rumbling with hunger .Dudleys snores were drowned by the low rolls of thunder that started near midnight .The lighted dial of Dudleys watch which was dangling over the edge of the sofa on his fat wrist told Harry hed be eleven in ten minutes time .He lay and watched his birthday tick nearer wondering if the Dursleys would remember at all wondering where the letter writer was now .Five minutes to go .Harry heard something creak outside .He hoped the roof wasnt going to fall in although he might be warmer if it did .Four minutes to go .Maybe the house in Privet Drive would be so full of letters when they got back that hed be able to steal one somehow .Three minutes to go .Was that the sea slapping hard on the rock like that ?And two minutes to go what was that funny crunching noise ?Was the rock crumbling into the sea ?One minute to go and hed be eleven .Thirty seconds .twenty .ten .nine maybe hed wake Dudley up just to annoy him three .two .one .BOOM .The whole shack shivered and Harry sat bolt upright staring at the door .Someone was outside knocking to come in .THE KEEPER OF THE KEYS BOOM .They knocked again .Dudley jerked awake .Wheres the cannon ?he said stupidly .There was a crash behind them and Uncle Vernon came skidding into the room .He was holding a rifle in his hands now they knew what had been in the long thin package he had brought with them .Whos there ?he shouted .I warn you Im armed !There was a pause .Then SMASH !The door was hit with such force that it swung clean off its hinges and with a deafening crash landed flat on the floor .A giant of a man was standing in the doorway .His face was almost completely hidden by a long shaggy mane of hair and a wild tangled beard but you could make out his eyes glinting like black beetles under all the hair .The giant squeezed his way into the hut stooping so that his head just brushed the ceiling .He bent down picked up the door and fitted it easily back into its frame .The noise of the storm outside dropped a little .He turned to look at them all .Couldnt make us a cup o tea could yeh ?Its not been an easy journey .He strode over to the sofa where Dudley sat frozen with fear .Budge up yeh great lump said the stranger .Dudley squeaked and ran to hide behind his mother who was crouching terrified behind Uncle Vernon .An heres Harry !said the giant .Harry looked up into the fierce wild shadowy face and saw that the beetle eyes were crinkled in a smile .Las time I saw you you was only a baby said the giant .Yeh look a lot like yer dad but yehve got yer moms eyes .Uncle Vernon made a funny rasping noise .I demand that you leave at once sir !he said .You are breaking and entering !Ah shut up Dursley yeh great prune said the giant he reached over the back of the sofa jerked the gun out of Uncle Vernons hands bent it into a knot as easily as if it had been made of rubber and threw it into a corner of the room .Uncle Vernon made another funny noise like a mouse being trodden on .Anyway Harry said the giant turning his back on the Dursleys a very happy birthday to yeh .Got summat fer yeh here I mighta sat on it at some point but itll taste all right .From an inside pocket of his black overcoat he pulled a slightly squashed box .Harry opened it with trembling fingers .Inside was a large sticky chocolate cake with Happy Birthday Harry written on it in green icing .Harry looked up at the giant .He meant to say thank you but the words got lost on the way to his mouth and what he said instead was Who are you ?The giant chuckled .True I havent introduced meself .Rubeus Hagrid Keeper of Keys and Grounds at Hogwarts .He held out an enormous hand and shook Harrys whole arm .What about that tea then eh ?he said rubbing his hands together .Id not say no ter summat stronger if yehve got it mind .His eyes fell on the empty grate with the shriveled chip bags in it and he snorted .He bent down over the fireplace they couldnt see what he was doing but when he drew back a second later there was a roaring fire there .It filled the whole damp hut with flickering light and Harry felt the warmth wash over him as though hed sunk into a hot bath .The giant sat back down on the sofa which sagged under his weight and began taking all sorts of things out of the pockets of his coat a copper kettle a squashy package of sausages a poker a teapot several chipped mugs and a bottle of some amber liquid that he took a swig from before starting to make tea .Soon the hut was full of the sound and smell of sizzling sausage .Nobody said a thing while the giant was working but as he slid the first six fat juicy slightly burnt sausages from the poker Dudley fidgeted a little .Uncle Vernon said sharply Dont touch anything he gives you Dudley .The giant chuckled darkly .Yer great puddin of a son don need fattenin anymore Dursley don worry .He passed the sausages to Harry who was so hungry he had never tasted anything so wonderful but he still couldnt take his eyes off the giant .Finally as nobody seemed about to explain anything he said Im sorry but I still dont really know who you are .The giant took a gulp of tea and wiped his mouth with the back of his hand .Call me Hagrid he said everyone does .An like I told yeh Im Keeper of Keys at Hogwarts yehll know all about Hogwarts o course .Er no said Harry .Hagrid looked shocked .Sorry Harry said quickly .Sorry ?barked Hagrid turning to stare at the Dursleys who shrank back into the shadows .Its them as should be sorry !I knew yeh werent gettin yer letters but I never thought yeh wouldnt even know abou Hogwarts fer cryin out loud !Did yeh never wonder where yer parents learned it all ?All what ?asked Harry .ALL WHAT ?Hagrid thundered .Now wait jus one second !He had leapt to his feet .In his anger he seemed to fill the whole hut .The Dursleys were cowering against the wall .Do you mean ter tell me he growled at the Dursleys that this boy this boy !knows nothin abou about ANYTHING ?Harry thought this was going a bit far .He had been to school after all and his marks werent bad .I know some things he said .I can you know do math and stuff .But Hagrid simply waved his hand and said About our world I mean .Your world .My world .Yer parents world .What world ?Hagrid looked as if he was about to explode .DURSLEY !he boomed .Uncle Vernon who had gone very pale whispered something that sounded like Mimblewimble .Hagrid stared wildly at Harry .But yeh must know about yer mom and dad he said .I mean theyre famous .Youre famous .What ?My my mom and dad werent famous were they ?Yeh don know .yeh don know .Hagrid ran his fingers through his hair fixing Harry with a bewildered stare .Yeh don know what yeh are ?he said finally .Uncle Vernon suddenly found his voice .Stop !he commanded .Stop right there sir !I forbid you to tell the boy anything !A braver man than Vernon Dursley would have quailed under the furious look Hagrid now gave him when Hagrid spoke his every syllable trembled with rage .You never told him ?Never told him what was in the letter Dumbledore left fer him ?I was there !I saw Dumbledore leave it Dursley !An youve kept it from him all these years ?Kept what from me ?said Harry eagerly .STOP !I FORBID YOU !yelled Uncle Vernon in panic .Aunt Petunia gave a gasp of horror .Ah go boil yer heads both of yeh said Hagrid .Harry yer a wizard .There was silence inside the hut .Only the sea and the whistling wind could be heard .Im a what ?gasped Harry .A wizard o course said Hagrid sitting back down on the sofa which groaned and sank even lower an a thumpin goodun Id say once yehve been trained up a bit .With a mum an dad like yours what else would yeh be ?An I reckon its abou time yeh read yer letter .Harry stretched out his hand at last to take the yellowish envelope addressed in emerald green to Mr H .Potter The Floor HutontheRock The Sea .He pulled out the letter and read HOGWARTS SCHOOL oWITCHCRAFT and WIZARDRY Headmaster ALBUS DUMBLEDORE Order of Merlin First Class Grand Sore .Chf .Warlock Supreme Mugwump International Confed .of Wizards Dear Mr Potter We are pleased to inform you that you have been accepted at Hogwarts School of Witchcraft and Wizardry .Please find enclosed a list of all necessary books and equipment .Term begins on September 1 .We await your owl by no later than July 31 .Yours sincerely Minerva McGonagall Deputy Headmistress Questions exploded inside Harrys head like fireworks and he couldnt decide which to ask first .After a few minutes he stammered What does it mean they await my owl ?Gallopin Gorgons that reminds me said Hagrid clapping a hand to his forehead with enough force to knock over a cart horse and from yet another pocket inside his overcoat he pulled an owl a real live rather ruffledlooking owl a long quill and a roll of parchment .With his tongue between his teeth he scribbled a note that Harry could read upside down Dear Professor Dumbledore Given Harry his letter .Taking him to buy his things tomorrow .Weathers horrible .Hope youre well .Hagrid Hagrid rolled up the note gave it to the owl which clamped it in its beak went to the door and threw the owl out into the storm .Then he came back and sat down as though this was as normal as talking on the telephone .Harry realized his mouth was open and closed it quickly .Where was I ?said Hagrid but at that moment Uncle Vernon still ashenfaced but looking very angry moved into the firelight .Hes not going he said .Hagrid grunted .Id like ter see a great Muggle like you stop him he said .A what ?said Harry interested .A Muggle said Hagrid its what we call nonmagic folk like them .An its your bad luck you grew up in a family o the biggest Muggles I ever laid eyes on .We swore when we took him in wed put a stop to that rubbish said Uncle Vernon swore wed stamp it out of him !Wizard indeed !You knew ?said Harry .You knew Im a a wizard ?Knew !shrieked Aunt Petunia suddenly .Knew Of course we knew !How could you not be my dratted sister being what she was ?Oh she got a letter just like that and disappeared off to that that school and came home every vacation with her pockets full of frog spawn turning teacups into rats .I was the only one who saw her for what she was a freak !But for my mother and father oh no it was Lily this and Lily that they were proud of having a witch in the family !She stopped to draw a deep breath and then went ranting on .It seemed she had been wanting to say all this for years .Then she met that Potter at school and they left and got married and had you and of course I knew youd be just the same just as strange just as as abnormal and then if you please she went and got herself blown up and we got landed with you !Harry had gone very white .As soon as he found his voice he said Blown up ?You told me they died in a car crash !CAR CRASH !roared Hagrid jumping up so angrily that the Dursleys scuttled back to their corner .How could a car crash kill Lily an James Potter ?Its an outrage !A scandal !Harry Potter not knowin his own story when every kid in our world knows his name !But why ?What happened ?Harry asked urgently .The anger faded from Hagrids face .He looked suddenly anxious .I never expected this he said in a low worried voice .I had no idea when Dumbledore told me there might be trouble gettin hold of yeh how much yeh didnt know .Ah Harry I don know if Im the right person ter tell yeh but someones gotta yeh cant go off ter Hogwarts not knowin .He threw a dirty look at the Dursleys .Well its best yeh know as much as I can tell yeh mind I cant tell yeh everythin its a great mystry parts of it .He sat down stared into the fire for a few seconds and then said It begins I suppose with with a person called but its incredible yeh dont know his name everyone in our world knows Who ?Well I don like sayin the name if I can help it .No one does .Why not ?Gulpin gargoyles Harry people are still scared .Blimey this is difficult .See there was this wizard who went .bad .As bad as you could go .Worse .Worse than worse .His name was .Hagrid gulped but no words came out .Could you write it down ?Harry suggested .Nah cant spell it .All right Voldemort .Hagrid shuddered .Don make me say it again .Anyway this this wizard about twenty years ago now started lookin fer followers .Got em too some were afraid some just wanted a bit o his power cause he was gettin himself power all right .Dark days Harry .Didnt know who ter trust didnt dare get friendly with strange wizards or witches .terrible things happened .He was takin over .Course some stood up to him an he killed em .Horribly .One o the only safe places left was Hogwarts .Reckon Dumbledores the only one YouKnowWho was afraid of .Didnt dare try takin the school not jus then anyway .Now yer mum an dad were as good a witch an wizard as I ever knew .Head boy an girl at Hogwarts in their day !Suppose the mystry is why YouKnow Who never tried to get em on his side before .probably knew they were too close ter Dumbledore ter want anythin ter do with the Dark Side .Maybe he thought he could persuade em .maybe he just wanted em outta the way .All anyone knows is he turned up in the village where you was all living on Halloween ten years ago .You was just a year old .He came ter yer house an an Hagrid suddenly pulled out a very dirty spotted handkerchief and blew his nose with a sound like a foghorn .Sorry he said .But its that sad knew yer mum an dad an nicer people yeh couldnt find anyway YouKnowWho killed em .An then an this is the real mystry of the thing he tried to kill you too .Wanted ter make a clean job of it I suppose or maybe he just liked killin by then .But he couldnt do it .Never wondered how you got that mark on yer forehead ?That was no ordinary cut .Thats what yeh get when a powerful evil curse touches yeh took care of yer mum an dad an yer house even but it didnt work on you an thats why yer famous Harry .No one ever lived after he decided ter kill em no one except you an hed killed some o the best witches an wizards of the age the McKinnons the Bones the Prewetts an you was only a baby an you lived .Something very painful was going on in Harrys mind .As Hagrids story came to a close he saw again the blinding flash of green light more clearly than he had ever remembered it before and he remembered something else for the first time in his life a high cold cruel laugh .Hagrid was watching him sadly .Took yeh from the ruined house myself on Dumbledores orders .Brought yeh ter this lot .Load of old tosh said Uncle Vernon .Harry jumped he had almost forgotten that the Dursleys were there .Uncle Vernon certainly seemed to have got back his courage .He was glaring at Hagrid and his fists were clenched .Now you listen here boy he snarled I accept theres something strange about you probably nothing a good beating wouldnt have cured and as for all this about your parents well they were weirdos no denying it and the worlds better off without them in my opinion asked for all they got getting mixed up with these wizarding types just what I expected always knew theyd come to a sticky end But at that moment Hagrid leapt from the sofa and drew a battered pink umbrella from inside his coat .Pointing this at Uncle Vernon like a sword he said Im warning you Dursley Im warning you one more word .In danger of being speared on the end of an umbrella by a bearded giant Uncle Vernons courage failed again he flattened himself against the wall and fell silent .Thats better said Hagrid breathing heavily and sitting back down on the sofa which this time sagged right down to the floor .Harry meanwhile still had questions to ask hundreds of them .But what happened to Vol sorry I mean You KnowWho ?Good question Harry .Disappeared .Vanished .Same night he tried ter kill you .Makes yeh even more famous .Thats the biggest mystry see .he was gettin more an more powerful whyd he go ?Some say he died .Codswallop in my opinion .Dunno if he had enough human left in him to die .Some say hes still out there bidin his time like but I don believe it .People who was on his side came back ter ours .Some of em came outta kinda trances .Don reckon they couldve done if he was cornin back .Most of us reckon hes still out there somewhere but lost his powers .Too weak to carry on .Cause somethin about you finished him Harry .There was somethin goin on that night he hadnt counted on dunno what it was no one does but somethin about you stumped him all right .Hagrid looked at Harry with warmth and respect blazing in his eyes but Harry instead of feeling pleased and proud felt quite sure there had been a horrible mistake .A wizard ?Him ?How could he possibly be ?Hed spent his life being clouted by Dudley and bullied by Aunt Petunia and Uncle Vernon if he was really a wizard why hadnt they been turned into warty toads every time theyd tried to lock him in his cupboard ?If hed once defeated the greatest sorcerer in the world how come Dudley had always been able to kick him around like a football ?Hagrid he said quietly I think you must have made a mistake .I dont think I can be a wizard .To his surprise Hagrid chuckled .Not a wizard eh ?Never made things happen when you was scared or angry ?Harry looked into the fire .Now he came to think about it .every odd thing that had ever made his aunt and uncle furious with him had happened when he Harry had been upset or angry .chased by Dudleys gang he had somehow found himself out of their reach .dreading going to school with that ridiculous haircut hed managed to make it grow back .and the very last time Dudley had hit him hadnt he got his revenge without even realizing he was doing it ?Hadnt he set a boa constrictor on him ?Harry looked back at Hagrid smiling and saw that Hagrid was positively beaming at him .See ?said Hagrid .Harry Potter not a wizard you wait youll be right famous at Hogwarts .But Uncle Vernon wasnt going to give in without a fight .Havent I told you hes not going ?he hissed .Hes going to Stonewall High and hell be grateful for it .Ive read those letters and he needs all sorts of rubbish spell books and wands and If he wants ter go a great Muggle like you wont stop him growled Hagrid .Stop Lily an James Potters son goin ter Hogwarts !Yer mad .His names been down ever since he was born .Hes off ter the finest school of witchcraft and wizardry in the world .Seven years there and he wont know himself .Hell be with youngsters of his own sort fer a change an hell be under the greatest headmaster Hogwarts ever had Albus Dumbled I AM NOT PAYING FOR SOME CRACKPOT OLD FOOL TO TEACH HIM MAGIC TRICKS !yelled Uncle Vernon .But he had finally gone too far .Hagrid seized his umbrella and whirled it over his head NEVER he thundered INSULT ALBUS DUMBLEDORE IN FRONT OF ME !He brought the umbrella swishing down through the air to point at Dudley there was a flash of violet light a sound like a firecracker a sharp squeal and the next second Dudley was dancing on the spot with his hands clasped over his fat bottom howling in pain .When he turned his back on them Harry saw a curly pigs tail poking through a hole in his trousers .Uncle Vernon roared .Pulling Aunt Petunia and Dudley into the other room he cast one last terrified look at Hagrid and slammed the door behind them .Hagrid looked down at his umbrella and stroked his beard .Shouldnta lost me temper he said ruefully but it didnt work anyway .Meant ter turn him into a pig but I suppose he was so much like a pig anyway there wasnt much left ter do .He cast a sideways look at Harry under his bushy eyebrows .Be grateful if yeh didnt mention that ter anyone at Hogwarts he said .Im er not supposed ter do magic strictly speakin .I was allowed ter do a bit ter follow yeh an get yer letters to yeh an stuff one o the reasons I was so keen ter take on the job Why arent you supposed to do magic ?asked Harry .Oh well I was at Hogwarts meself but I er got expelled ter tell yeh the truth .In me third year .They snapped me wand in half an everything .But Dumbledore let me stay on as gamekeeper .Great man Dumbledore .Why were you expelled ?Its gettin late and weve got lots ter do tomorrow said Hagrid loudly .Gotta get up ter town get all yer books an that .He took off his thick black coat and threw it to Harry .You can kip under that he said .Don mind if it wriggles a bit I think I still got a couple o dormice in one o the pockets .DIAGON ALLY Harry woke early the next morning .Although he could tell it was daylight he kept his eyes shut tight .It was a dream he told himself firmly .I dreamed a giant called Hagrid came to tell me I was going to a school for wizards .When I open my eyes Ill be at home in my cupboard .There was suddenly a loud tapping noise .And theres Aunt Petunia knocking on the door Harry thought his heart sinking .But he still didnt open his eyes .It had been such a good dream .Tap .Tap .Tap .All right Harry mumbled Im getting up .He sat up and Hagrid s heavy coat fell off him .The hut was full of sunlight the storm was over Hagrid himself was asleep on the collapsed sofa and there was an owl rapping its claw on the window a newspaper held in its beak .Harry scrambled to his feet so happy he felt as though a large balloon was swelling inside him .He went straight to the window and jerked it open .The owl swooped in and dropped the newspaper on top of Hagrid who didnt wake up .The owl then fluttered onto the floor and began to attack Hagrid s coat .Dont do that .Harry tried to wave the owl out of the way but it snapped its beak fiercely at him and carried on savaging the coat .Hagrid !said Harry loudly .Theres an owl Pay him Hagrid grunted into the sofa .What ?He wants payin fer deliverin the paper .Look in the pockets .Hagrid s coat seemed to be made of nothing but pockets bunches of keys slug pellets balls of string peppermint humbugs teabags .finally Harry pulled out a handful of strangelooking coins .Give him five Knuts said Hagrid sleepily .Knuts ?The little bronze ones .Harry counted out five little bronze coins and the owl held out his leg so Harry could put the money into a small leather pouch tied to it .Then he flew off through the open window .Hagrid yawned loudly sat up and stretched .Best be off Harry lots ter do today gotta get up ter London an buy all yer stuff fer school .Harry was turning over the wizard coins and looking at them .He had just thought of something that made him feel as though the happy balloon inside him had got a puncture .Urn Hagrid ?Mm ?said Hagrid who was pulling on his huge boots .I havent got any money and you heard Uncle Vernon last night .he wont pay for me to go and learn magic .Dont worry about that said Hagrid standing up and scratching his head .Dyeh think yer parents didnt leave yeh anything ?But if their house was destroyed They didn keep their gold in the house boy !Nah first stop fer us is Gringotts .Wizards bank .Have a sausage theyre not bad cold an I wouldn say no teh a bit o yer birthday cake neither .Wizards have banks ?Just the one .Gringotts .Run by goblins .Harry dropped the bit of sausage he was holding .Goblins ?Yeah so yehd be mad ter try an rob it Ill tell yeh that .Never mess with goblins Harry .Gringotts is the safest place in the world fer anything yeh want ter keep safe cept maybe Hogwarts .As a matter o fact I gotta visit Gringotts anyway Fer Dumbledore .Hogwarts business .Hagrid drew himself up proudly .He usually gets me ter do important stuff fer him .Fetchin you gettin things from Gringotts knows he can trust me see .Got everythin ?Come on then .Harry followed Hagrid out onto the rock .The sky was quite clear now and the sea gleamed in the sunlight .The boat Uncle Vernon had hired was still there with a lot of water in the bottom after the storm .How did you get here ?Harry asked looking around for another boat .Flew said Hagrid .Flew ?Yeah but well go back in this .Not spposed ter use magic now Ive got yeh .They settled down in the boat Harry still staring at Hagrid trying to imagine him flying .Seems a shame ter row though said Hagrid giving Harry another of his sideways looks .If I was ter er speed things up a bit would yeh mind not mentionin it at Hogwarts ?Of course not said Harry eager to see more magic .Hagrid pulled out the pink umbrella again tapped it twice on the side of the boat and they sped off toward land .Why would you be mad to try and rob Gringotts ?Harry asked .Spells enchantments said Hagrid unfolding his newspaper as he spoke .They say theres dragons guardin the highsecurity vaults .And then yeh gotta find yer way Gringotts is hundreds of miles under London see .Deep under the Underground .Yehd die of hunger tryin ter get out even if yeh did manage ter get yer hands on summat .Harry sat and thought about this while Hagrid read his newspaper the Daily Prophet Harry had learned from Uncle Vernon that people liked to be left alone while they did this but it was very difficult hed never had so many questions in his life .Ministry o Magic messin things up as usual Hagrid muttered turning the page .Theres a Ministry of Magic ?Harry asked before he could stop himself .Course said Hagrid .They wanted Dumbledore fer Minister o course but hed never leave Hogwarts so old Cornelius Fudge got the job .Bungler if ever there was one .So he pelts Dumbledore with owls every morning askin fer advice .But what does a Ministry of Magic do ?Well their main job is to keep it from the Muggles that theres still witches an wizards up an down the country .Why ?Why ?Blimey Harry everyone d be wantin magic solutions to their problems .Nah were best left alone .At this moment the boat bumped gently into the harbor wall .Hagrid folded up his newspaper and they clambered up the stone steps onto the street .Passersby stared a lot at Hagrid as they walked through the little town to the station .Harry couldnt blame them .Not only was Hagrid twice as tall as anyone else he kept pointing at perfectly ordinary things like parking meters and saying loudly See that Harry ?Things these Muggles dream up eh ?Hagrid said Harry panting a bit as he ran to keep up did you say there are dragons at Gringotts ?Well so they say said Hagrid .Crikey Id like a dragon .Youd like one ?Wanted one ever since I was a kid here we go .They had reached the station .There was a train to London in five minutes time .Hagrid who didnt understand Muggle money as he called it gave the bills to Harry so he could buy their tickets .People stared more than ever on the train .Hagrid took up two seats and sat knitting what looked like a canaryyellow circus tent .Still got yer letter Harry ?he asked as he counted stitches .Harry took the parchment envelope out of his pocket .Good said Hagrid .Theres a list there of everything yeh need .Harry unfolded a second piece of paper he hadnt noticed the night before and read HOGWARTS SCHOOL oWITCHCRAFT and WIZARDRY UNIFORM Firstyear students will require 1 .Three sets of plain work robes black 2 .One plain pointed hat black for day wear 3 .One pair of protective gloves dragon hide or similar 4 .One winter cloak black silver fastenings Please note that all pupils clothes should carry name tags COURSE BOOKS All students should have a copy of each of the following The Standard Book of Spells Grade 1 by Miranda Goshawk A History of Magic by Bathilda Bagshot Magical Theory by Adalbert Waffling A Beginners Guide to Transfiguration by Emeric Switch One Thousand Magical Herbs and Fungi by Phyllida Spore Magical Drafts and Potions by Arsenius Jigger Fantastic Beasts and Where to Find Them by Newt Scamander The Dark Forces A Guide to SelfProtection by Quentin Trimble OTHER EQUIPMENT 1 wand 1 cauldron pewter standard size 2 1 set glass or crystal phials 1 telescope 1 set brass scales Students may also bring an owl OR a cat OR a toad PARENTS ARE REMINDED THAT FIRST YEARS ARE NOT ALLOWED THEIR OWN BROOMSTICKS Can we buy all this in London ?Harry wondered aloud .If yeh know where to go said Hagrid .Harry had never been to London before .Although Hagrid seemed to know where he was going he was obviously not used to getting there in an ordinary way .He got stuck in the ticket barrier on the Underground and complained loudly that the seats were too small and the trains too slow .I dont know how the Muggles manage without magic he said as they climbed a brokendown escalator that led up to a bustling road lined with shops .Hagrid was so huge that he parted the crowd easily all Harry had to do was keep close behind him .They passed book shops and music stores hamburger restaurants and cinemas but nowhere that looked as if it could sell you a magic wand .This was just an ordinary street full of ordinary people .Could there really be piles of wizard gold buried miles beneath them ?Were there really shops that sold spell books and broomsticks ?Might this not all be some huge joke that the Dursleys had cooked up ?If Harry hadnt known that the Dursleys had no sense of humor he might have thought so yet somehow even though everything Hagrid had told him so far was unbelievable Harry couldnt help trusting him .This is it said Hagrid coming to a halt the Leaky Cauldron .Its a famous place .It was a tiny grubbylooking pub .If Hagrid hadnt pointed it out Harry wouldnt have noticed it was there .The people hurrying by didnt glance at it .Their eyes slid from the big book shop on one side to the record shop on the other as if they couldnt see the Leaky Cauldron at all .In fact Harry had the most peculiar feeling that only he and Hagrid could see it .Before he could mention this Hagrid had steered him inside .For a famous place it was very dark and shabby .A few old women were sitting in a corner drinking tiny glasses of sherry .One of them was smoking a long pipe .A little man in a top hat was talking to the old bartender who was quite bald and looked like a toothless walnut .The low buzz of chatter stopped when they walked in .Everyone seemed to know Hagrid they waved and smiled at him and the bartender reached for a glass saying The usual Hagrid ?Cant Tom Im on Hogwarts business said Hagrid clapping his great hand on Harrys shoulder and making Harrys knees buckle .Good Lord said the bartender peering at Harry is this can this be ?The Leaky Cauldron had suddenly gone completely still and silent .Bless my soul whispered the old bartender Harry Potter .what an honor .He hurried out from behind the bar rushed toward Harry and seized his hand tears in his eyes .Welcome back Mr Potter welcome back .Harry didnt know what to say .Everyone was looking at him .The old woman with the pipe was puffing on it without realizing it had gone out .Hagrid was beaming .Then there was a great scraping of chairs and the next moment Harry found himself shaking hands with everyone in the Leaky Cauldron .Doris Crockford Mr Potter cant believe Im meeting you at last .So proud Mr Potter Im just so proud .Always wanted to shake your hand Im all of a flutter .Delighted Mr Potter just cant tell you Diggles the name Dedalus Diggle .Ive seen you before !said Harry as Dedalus Diggles top hat fell off in his excitement .You bowed to me once in a shop .He remembers !cried Dedalus Diggle looking around at everyone .Did you hear that ?He remembers me !Harry shook hands again and again Doris Crockford kept coming back for more .A pale young man made his way forward very nervously .One of his eyes was twitching .Professor Quirrell !said Hagrid .Harry Professor Quirrell will be one of your teachers at Hogwarts .PPPotter stammered Professor Quirrell grasping Harrys hand ccant ttell you how ppleased I am to meet you .What sort of magic do you teach Professor Quirrell ?DDefense Against the DDDark Arts muttered Professor Quirrell as though hed rather not think about it .Nnot that you nneed it eh PPPotter ?He laughed nervously .Youll be ggetting all your equipment I suppose ?Ive ggot to ppick up a new b book on vampires mmyself .He looked terrified at the very thought .But the others wouldnt let Professor Quirrell keep Harry to himself .It took almost ten minutes to get away from them all .At last Hagrid managed to make himself heard over the babble .Must get on lots ter buy .Come on Harry .Doris Crockford shook Harrys hand one last time and Hagrid led them through the bar and out into a small walled courtyard where there was nothing but a trash can and a few weeds .Hagrid grinned at Harry .Told yeh didnt I ?Told yeh you was famous .Even Professor Quirrell was tremblin ter meet yeh mind you hes usually tremblin .Is he always that nervous ?Oh yeah .Poor bloke .Brilliant mind .He was fine while he was studyin outta books but then he took a year off ter get some firsthand experience .They say he met vampires in the Black Forest and there was a nasty bit o trouble with a hag never been the same since .Scared of the students scared of his own subject now wheres me umbrella ?Vampires ?Hags ?Harrys head was swimming .Hagrid meanwhile was counting bricks in the wall above the trash can .Three up .two across .he muttered .Right stand back Harry .He tapped the wall three times with the point of his umbrella .The brick he had touched quivered it wriggled in the middle a small hole appeared it grew wider and wider a second later they were facing an archway large enough even for Hagrid an archway onto a cobbled street that twisted and turned out of sight .Welcome said Hagrid to Diagon Alley .He grinned at Harrys amazement .They stepped through the archway .Harry looked quickly over his shoulder and saw the archway shrink instantly back into solid wall .The sun shone brightly on a stack of cauldrons outside the nearest shop .Cauldrons All Sizes Copper Brass Pewter Silver SelfStirring Collapsible said a sign hanging over them .Yeah youll be needin one said Hagrid but we gotta get yer money first .Harry wished he had about eight more eyes .He turned his head in every direction as they walked up the street trying to look at everything at once the shops the things outside them the people doing their shopping .A plump woman outside an Apothecary was shaking her head as they passed saying Dragon liver sixteen Sickles an ounce theyre mad .A low soft hooting came from a dark shop with a sign saying Eeylops Owl Emporium Tawny Screech Barn Brown and Snowy .Several boys of about Harrys age had their noses pressed against a window with broomsticks in it .Look Harry heard one of them say the new Nimbus Two Thousand fastest ever There were shops selling robes shops selling telescopes and strange silver instruments Harry had never seen before windows stacked with barrels of bat spleens and eels eyes tottering piles of spell books quills and rolls of parchment potion bottles globes of the moon .Gringotts said Hagrid .They had reached a snowy white building that towered over the other little shops .Standing beside its burnished bronze doors wearing a uniform of scarlet and gold was Yeah thats a goblin said Hagrid quietly as they walked up the white stone steps toward him .The goblin was about a head shorter than Harry .He had a swarthy clever face a pointed beard and Harry noticed very long fingers and feet .He bowed as they walked inside .Now they were facing a second pair of doors silver this time with words engraved upon them Enter stranger but take heed Of what awaits the sin of greed For those who take but do not earn Must pay most dearly in their turn .So if you seek beneath our floors A treasure that was never yours Thief you have been warned beware Of finding more than treasure there .Like I said yehd be mad ter try an rob it said Hagrid .A pair of goblins bowed them through the silver doors and they were in a vast marble hall .About a hundred more goblins were sitting on high stools behind a long counter scribbling in large ledgers weighing coins in brass scales examining precious stones through eyeglasses .There were too many doors to count leading off the hall and yet more goblins were showing people in and out of these .Hagrid and Harry made for the counter .Morning said Hagrid to a free goblin .Weve come ter take some money outta Mr Harry Potters safe .You have his key sir ?Got it here somewhere said Hagrid and he started emptying his pockets onto the counter scattering a handful of moldy dog biscuits over the goblins book of numbers .The goblin wrinkled his nose .Harry watched the goblin on their right weighing a pile of rubies as big as glowing coals .Got it said Hagrid at last holding up a tiny golden key .The goblin looked at it closely .That seems to be in order .An Ive also got a letter here from Professor Dumbledore said Hagrid importantly throwing out his chest .Its about the YouKnowWhat in vault seven hundred and thirteen .The goblin read the letter carefully .Very well he said handing it back to Hagrid I will have someone take you down to both vaults .Griphook !Griphook was yet another goblin .Once Hagrid had crammed all the dog biscuits back inside his pockets he and Harry followed Griphook toward one of the doors leading off the hall .Whats the YouKnowWhat in vault seven hundred and thirteen ?Harry asked .Cant tell yeh that said Hagrid mysteriously .Very secret .Hogwarts business .Dumbledores trusted me .Moren my jobs worth ter tell yeh that .Griphook held the door open for them .Harry who had expected more marble was surprised .They were in a narrow stone passageway lit with flaming torches .It sloped steeply downward and there were little railway tracks on the floor .Griphook whistled and a small cart came hurtling up the tracks toward them .They climbed in Hagrid with some difficulty and were off .At first they just hurtled through a maze of twisting passages .Harry tried to remember left right right left middle fork right left but it was impossible .The rattling cart seemed to know its own way because Griphook wasnt steering .Harrys eyes stung as the cold air rushed past them but he kept them wide open .Once he thought he saw a burst of fire at the end of a passage and twisted around to see if it was a dragon but too late they plunged even deeper passing an underground lake where huge stalactites and stalagmites grew from the ceiling and floor .I never know Harry called to Hagrid over the noise of the cart whats the difference between a stalagmite and a stalactite ?Stalagmites got an ‘m in it said Hagrid .An don ask me questions just now I think Im gonna be sick .He did look very green and when the cart stopped at last beside a small door in the passage wall Hagrid got out and had to lean against the wall to stop his knees from trembling .Griphook unlocked the door .A lot of green smoke came billowing out and as it cleared Harry gasped .Inside were mounds of gold coins .Columns of silver .Heaps of little bronze Knuts .All yours smiled Hagrid .All Harrys it was incredible .The Dursleys couldnt have known about this or theyd have had it from him faster than blinking .How often had they complained how much Harry cost them to keep ?And all the time there had been a small fortune belonging to him buried deep under London .Hagrid helped Harry pile some of it into a bag .The gold ones are Galleons he explained .Seventeen silver Sickles to a Galleon and twentynine Knuts to a Sickle its easy enough .Right that should be enough fer a couple o terms well keep the rest safe for yeh .He turned to Griphook .Vault seven hundred and thirteen now please and can we go more slowly ?One speed only said Griphook .They were going even deeper now and gathering speed .The air became colder and colder as they hurtled round tight corners .They went rattling over an underground ravine and Harry leaned over the side to try to see what was down at the dark bottom but Hagrid groaned and pulled him back by the scruff of his neck .Vault seven hundred and thirteen had no keyhole .Stand back said Griphook importantly .He stroked the door gently with one of his long fingers and it simply melted away .If anyone but a Gringotts goblin tried that theyd be sucked through the door and trapped in there said Griphook .How often do you check to see if anyones inside ?Harry asked .About once every ten years said Griphook with a rather nasty grin .Something really extraordinary had to be inside this top security vault Harry was sure and he leaned forward eagerly expecting to see fabulous jewels at the very least but at first he thought it was empty .Then he noticed a grubby little package wrapped up in brown paper lying on the floor .Hagrid picked it up and tucked it deep inside his coat .Harry longed to know what it was but knew better than to ask .Come on back in this infernal cart and dont talk to me on the way back its best if I keep me mouth shut said Hagrid .One wild cart ride later they stood blinking in the sunlight outside Gringotts .Harry didnt know where to run first now that he had a bag full of money .He didnt have to know how many Galleons there were to a pound to know that he was holding more money than hed had in his whole life more money than even Dudley had ever had .Might as well get yer uniform said Hagrid nodding toward Madam Malkins Robes for All Occasions .Listen Harry would yeh mind if I slipped off fer a pickmeup in the Leaky Cauldron ?I hate them Gringotts carts .He did still look a bit sick so Harry entered Madam Malkins shop alone feeling nervous .Madam Malkin was a squat smiling witch dressed all in mauve .Hogwarts dear ?she said when Harry started to speak .Got the lot here another young man being fitted up just now in fact .In the back of the shop a boy with a pale pointed face was standing on a footstool while a second witch pinned up his long black robes .Madam Malkin stood Harry on a stool next to him slipped a long robe over his head and began to pin it to the right length .Hello said the boy Hogwarts too ?Yes said Harry .My fathers next door buying my books and mothers up the street looking at wands said the boy .He had a bored drawling voice .Then Im going to drag them off to look at racing brooms .I dont see why first years cant have their own .I think Ill bully father into getting me one and Ill smuggle it in somehow .Harry was strongly reminded of Dudley .Have you got your own broom ?the boy went on .No said Harry .Play Quidditch at all ?No Harry said again wondering what on earth Quidditch could be .I do Father says its a crime if Im not picked to play for my House and I must say I agree .Know what House you 11 be in yet ?No said Harry feeling more stupid by the minute .Well no one really knows until they get there do they but I know Ill be in Slytherin all our family have been imagine being in Hufflepuff I think Id leave wouldnt you ?Mmm said Harry wishing he could say something a bit more interesting .I say look at that man !said the boy suddenly nodding toward the front window .Hagrid was standing there grinning at Harry and pointing at two large ice creams to show he couldnt come in .Thats Hagrid said Harry pleased to know something the boy didnt .He works at Hogwarts .Oh said the boy Ive heard of him .Hes a sort of servant isnt he ?Hes the gamekeeper said Harry .He was liking the boy less and less every second .Yes exactly .I heard hes a sort of savage lives in a hut on the school grounds and every now and then he gets drunk tries to do magic and ends up setting fire to his bed .I think hes brilliant said Harry coldly .Do you ?said the boy with a slight sneer .Why is he with you ?Where are your parents ?Theyre dead said Harry shortly .He didnt feel much like going into the matter with this boy .Oh sorry said the other not sounding sorry at all .But they were our kind werent they ?They were a witch and wizard if thats what you mean .I really dont think they should let the other sort in do you ?Theyre just not the same theyve never been brought up to know our ways .Some of them have never even heard of Hogwarts until they get the letter imagine .I think they should keep it in the old wizarding families .Whats your surname anyway ?But before Harry could answer Madam Malkin said Thats you done my dear and Harry not sorry for an excuse to stop talking to the boy hopped down from the footstool .Well Ill see you at Hogwarts I suppose said the drawling boy .Harry was rather quiet as he ate the ice cream Hagrid had bought him chocolate and raspberry with chopped nuts .Whats up ?said Hagrid .Nothing Harry lied .They stopped to buy parchment and quills .Harry cheered up a bit when he found a bottle of ink that changed color as you wrote .When they had left the shop he said Hagrid whats Quidditch ?Blimey Harry I keep forgettin how little yeh know not knowin about Quidditch !Dont make me feel worse said Harry .He told Hagrid about the pale boy in Madam Malkins .and he said people from Muggle families shouldnt even be allowed in Yer not from a Muggle family .If hed known who yeh were hes grown up knowin yer name if his parents are wizardin folk .You saw what everyone in the Leaky Cauldron was like when they saw yeh .Anyway what does he know about it some o the best I ever saw were the only ones with magic in em in a long line o Muggles look at yer mum !Look what she had fer a sister !So what is Quidditch ?Its our sport .Wizard sport .Its like like soccer in the Muggle world everyone follows Quidditch played up in the air on broomsticks and theres four balls sorta hard ter explain the rules .And what are Slytherin and Hufflepuff ?School Houses .Theres four .Everyone says Hufflepuff are a lot o duffers but I bet Im in Hufflepuff said Harry gloomily .Better Hufflepuff than Slytherin said Hagrid darkly .Theres not a single witch or wizard who went bad who wasnt in Slytherin .YouKnowWho was one .Vol sorry YouKnowWho was at Hogwarts ?Years an years ago said Hagrid .They bought Harrys school books in a shop called Flourish and Blotts where the shelves were stacked to the ceiling with books as large as paving stones bound in leather books the size of postage stamps in covers of silk books full of peculiar symbols and a few books with nothing in them at all .Even Dudley who never read anything would have been wild to get his hands on some of these .Hagrid almost had to drag Harry away from Curses and Countercurses Bewitch Your Friends and Befuddle Your Enemies with the Latest Revenges Hair Loss JellyLegs TongueTying and Much Much More by Professor Vindictus Viridian .I was trying to find out how to curse Dudley .Im not sayin thats not a good idea but yer not ter use magic in the Muggle world except in very special circumstances said Hagrid .An anyway yeh couldn work any of them curses yet yehll need a lot more study before yeh get ter that level .Hagrid wouldnt let Harry buy a solid gold cauldron either It says pewter on yer list but they got a nice set of scales for weighing potion ingredients and a collapsible brass telescope .Then they visited the Apothecary which was fascinating enough to make up for its horrible smell a mixture of bad eggs and rotted cabbages .Barrels of slimy stuff stood on the floor jars of herbs dried roots and bright powders lined the walls bundles of feathers strings of fangs and snarled claws hung from the ceiling .While Hagrid asked the man behind the counter for a supply of some basic potion ingredients for Harry Harry himself examined silver unicorn horns at twentyone Galleons each and minuscule glittery black beetle eyes five Knuts a scoop .Outside the Apothecary Hagrid checked Harrys list again .Just yer wand left oh yeah an I still havent got yeh a birthday present .Harry felt himself go red .You dont have to I know I dont have to .Tell yeh what Ill get yer animal .Not a toad toads went outta fashion years ago yehd be laughed at an I don like cats they make me sneeze .Ill get yer an owl .All the kids want owls theyre dead useful carry yer mail an everythin .Twenty minutes later they left Eeylops Owl Emporium which had been dark and full of rustling and flickering jewelbright eyes .Harry now carried a large cage that held a beautiful snowy owl fast asleep with her head under her wing .He couldnt stop stammering his thanks sounding just like Professor Quirrell .Don mention it said Hagrid gruffly .Don expect youve had a lotta presents from them Dursleys .Just Ollivanders left now only place fer wands Ollivanders and yeh gotta have the best wand .A magic wand .this was what Harry had been really looking forward to .The last shop was narrow and shabby .Peeling gold letters over the door read Ollivanders Makers of Fine Wands since 382b .c .A single wand lay on a faded purple cushion in the dusty window .A tinkling bell rang somewhere in the depths of the shop as they stepped inside .It was a tiny place empty except for a single spindly chair that Hagrid sat on to wait .Harry felt strangely as though he had entered a very strict library he swallowed a lot of new questions that had just occurred to him and looked instead at the thousands of narrow boxes piled neatly right up to the ceiling .For some reason the back of his neck prickled .The very dust and silence in here seemed to tingle with some secret magic .Good afternoon said a soft voice .Harry jumped .Hagrid must have jumped too because there was a loud crunching noise and he got quickly off the spindly chair .An old man was standing before them his wide pale eyes shining like moons through the gloom of the shop .Hello said Harry awkwardly .Ah yes said the man .Yes yes .I thought Id be seeing you soon .Harry Potter .It wasnt a question .You have your mothers eyes .It seems only yesterday she was in here herself buying her first wand .Ten and a quarter inches long swishy made of willow .Nice wand for charm work .Mr Ollivander moved closer to Harry .Harry wished he would blink .Those silvery eyes were a bit creepy .Your father on the other hand favored a mahogany wand .Eleven inches .Pliable .A little more power and excellent for transfiguration .Well I say your father favored it its really the wand that chooses the wizard of course .Mr Ollivander had come so close that he and Harry were almost nose to nose .Harry could see himself reflected in those misty eyes .And thats where .Mr Ollivander touched the lightning scar on Harrys forehead with a long white finger .Im sorry to say I sold the wand that did it he said softly .Thirteenandahalf inches .Yew .Powerful wand very powerful and in the wrong hands .well if Id known what that wand was going out into the world to do .He shook his head and then to Harrys relief spotted Hagrid .Rubeus !Rubeus Hagrid !How nice to see you again . .Oak sixteen inches rather bendy wasnt it ?It was sir yes said Hagrid .Good wand that one .But I suppose they snapped it in half when you got expelled ?said Mr Ollivander suddenly stern .Er yes they did yes said Hagrid shuffling his feet .Ive still got the pieces though he added brightly .But you dont use them ?said Mr Ollivander sharply .Oh no sir said Hagrid quickly .Harry noticed he gripped his pink umbrella very tightly as he spoke .Hmmm said Mr Ollivander giving Hagrid a piercing look .Well now Mr Potter .Let me see .He pulled a long tape measure with silver markings out of his pocket .Which is your wand arm ?Er well Im righthanded said Harry .Hold out your arm .Thats it .He measured Harry from shoulder to finger then wrist to elbow shoulder to floor knee to armpit and round his head .As he measured he said Every Ollivander wand has a core of a powerful magical substance Mr Potter .We use unicorn hairs phoenix tail feathers and the heartstrings of dragons .No two Ollivander wands are the same just as no two unicorns dragons or phoenixes are quite the same .And of course you will never get such good results with another wizards wand .Harry suddenly realized that the tape measure which was measuring between his nostrils was doing this on its own .Mr Ollivander was flitting around the shelves taking down boxes .That will do he said and the tape measure crumpled into a heap on the floor .Right then Mr Potter .Try this one .Beechwood and dragon heartstring .Nine inches .Nice and flexible .Just take it and give it a wave .Harry took the wand and feeling foolish waved it around a bit but Mr Ollivander snatched it out of his hand almost at once .Maple and phoenix feather .Seven inches .Quite whippy .Try Harry tried but he had hardly raised the wand when it too was snatched back by Mr Ollivander .No no here ebony and unicorn hair eight and a half inches springy .Go on go on try it out .Harry tried .And tried .He had no idea what Mr Ollivander was waiting for .The pile of tried wands was mounting higher and higher on the spindly chair but the more wands Mr Ollivander pulled from the shelves the happier he seemed to become .Tricky customer eh ?Not to worry well find the perfect match here somewhere I wonder now yes why not unusual combination holly and phoenix feather eleven inches nice and supple .Harry took the wand .He felt a sudden warmth in his fingers .He raised the wand above his head brought it swishing down through the dusty air and a stream of red and gold sparks shot from the end like a firework throwing dancing spots of light on to the walls .Hagrid whooped and clapped and Mr Ollivander cried Oh bravo !Yes indeed oh very good .Well well well .how curious .how very curious .He put Harrys wand back into its box and wrapped it in brown paper still muttering Curious .curious Sorry said Harry but whats curious ?Mr Ollivander fixed Harry with his pale stare .I remember every wand Ive ever sold Mr Potter .Every single wand .It so happens that the phoenix whose tail feather is in your wand gave another feather just one other .It is very curious indeed that you should be destined for this wand when its brother why its brother gave you that scar .Harry swallowed .Yes thirteenandahalf inches .Yew .Curious indeed how these things happen .The wand chooses the wizard remember .I think we must expect great things from you Mr Potter .After all HeWho MustNotBeNamed did great things terrible yes but great .Harry shivered .He wasnt sure he liked Mr Ollivander too much .He paid seven gold Galleons for his wand and Mr Ollivander bowed them from his shop .The late afternoon sun hung low in the sky as Harry and Hagrid made their way back down Diagon Alley back through the wall back through the Leaky Cauldron now empty .Harry didnt speak at all as they walked down the road he didnt even notice how much people were gawking at them on the Underground laden as they were with all their funny shaped packages with the snowy owl asleep in its cage on Harrys lap .Up another escalator out into Paddington station Harry only realized where they were when Hagrid tapped him on the shoulder .Got time fer a bite to eat before yer train leaves he said .He bought Harry a hamburger and they sat down on plastic seats to eat them .Harry kept looking around .Everything looked so strange somehow .You all right Harry ?Yer very quiet said Hagrid .Harry wasnt sure he could explain .Hed just had the best birthday of his life and yet he chewed his hamburger trying to find the words .Everyone thinks Im special he said at last .All those people in the Leaky Cauldron Professor Quirrell Mr Ollivander .but I dont know anything about magic at all .How can they expect great things ?Im famous and I cant even remember what Im famous for .I dont know what happened when Vol sorry I mean the night my parents died .Hagrid leaned across the table .Behind the wild beard and eyebrows he wore a very kind smile .Don you worry Harry .Youll learn fast enough .Everyone starts at the beginning at Hogwarts youll be just fine .Just be yerself .I know its hard .Yehve been singled out an thats always hard .But yehll have a great time at Hogwarts I did still do smatter of fact .Hagrid helped Harry on to the train that would take him back to the Dursleys then handed him an envelope .Yer ticket fer Hogwarts he said .First o September Kings Cross its all on yer ticket .Any problems with the Dursleys send me a letter with yer owl shell know where to find me .See yeh soon Harry .The train pulled out of the station .Harry wanted to watch Hagrid until he was out of sight he rose in his seat and pressed his nose against the window but he blinked and Hagrid had gone .THE JOURNEY FROM PLATFORM NINE AND THREEQUARTERS Harrys last month with the Dursleys wasnt fun .True Dudley was now so scared of Harry he wouldnt stay in the same room while Aunt Petunia and Uncle Vernon didnt shut Harry in his cupboard force him to do anything or shout at him in fact they didnt speak to him at all .Half terrified half furious they acted as though any chair with Harry in it were empty .Although this was an improvement in many ways it did become a bit depressing after a while .Harry kept to his room with his new owl for company .He had decided to call her Hedwig a name he had found in A History of Magic .His school books were very interesting .He lay on his bed reading late into the night Hedwig swooping in and out of the open window as she pleased .It was lucky that Aunt Petunia didnt come in to vacuum anymore because Hedwig kept bringing back dead mice .Every night before he went to sleep Harry ticked off another day on the piece of paper he had pinned to the wall counting down to September the first .On the last day of August he thought hed better speak to his aunt and uncle about getting to Kings Cross station the next day so he went down to the living room where they were watching a quiz show on television .He cleared his throat to let them know he was there and Dudley screamed and ran from the room .Er Uncle Vernon ?Uncle Vernon grunted to show he was listening .Er I need to be at Kings Cross tomorrow to to go to Hogwarts .Uncle Vernon grunted again .Would it be all right if you gave me a lift ?Grunt .Harry supposed that meant yes .Thank you .He was about to go back upstairs when Uncle Vernon actually spoke .Funny way to get to a wizards school the train .Magic carpets all got punctures have they ?Harry didnt say anything .Where is this school anyway ?I dont know said Harry realizing this for the first time .He pulled the ticket Hagrid had given him out of his pocket .I just take the train from platform nine and three quarters at eleven oclock he read .His aunt and uncle stared .Platform what ?Nine and threequarters .Dont talk rubbish said Uncle Vernon .There is no platform nine and threequarters .Its on my ticket .Barking said Uncle Vernon howling mad the lot of them .You 11 see .You just wait .All right well take you to Kings Cross .Were going up to London tomorrow anyway or I wouldnt bother .Why are you going to London ?Harry asked trying to keep things friendly .Taking Dudley to the hospital growled Uncle Vernon .Got to have that ruddy tail removed before he goes to Smeltings .Harry woke at five oclock the next morning and was too excited and nervous to go back to sleep .He got up and pulled on his jeans because he didnt want to walk into the station in his wizards robes hed change on the train .He checked his Hogwarts list yet again to make sure he had everything he needed saw that Hedwig was shut safely in her cage and then paced the room waiting for the Dursleys to get up .Two hours later Harrys huge heavy trunk had been loaded into the Dursleys car Aunt Petunia had talked Dudley into sitting next to Harry and they had set off .They reached Kings Cross at half past ten .Uncle Vernon dumped Harrys trunk onto a cart and wheeled it into the station for him .Harry thought this was strangely kind until Uncle Vernon stopped dead facing the platforms with a nasty grin on his face .Well there you are boy .Platform nine platform ten .Your platform should be somewhere in the middle but they dont seem to have built it yet do they ?He was quite right of course .There was a big plastic number nine over one platform and a big plastic number ten over the one next to it and in the middle nothing at all .Have a good term said Uncle Vernon with an even nastier smile .He left without another word .Harry turned and saw the Dursleys drive away .All three of them were laughing .Harrys mouth went rather dry .What on earth was he going to do ?He was starting to attract a lot of funny looks because of Hedwig .Hed have to ask someone .He stopped a passing guard but didnt dare mention platform nine and threequarters .The guard had never heard of Hogwarts and when Harry couldnt even tell him what part of the country it was in he started to get annoyed as though Harry was being stupid on purpose .Getting desperate Harry asked for the train that left at eleven oclock but the guard said there wasnt one .In the end the guard strode away muttering about time wasters .Harry was now trying hard not to panic .According to the large clock over the arrivals board he had ten minutes left to get on the train to Hogwarts and he had no idea how to do it he was stranded in the middle of a station with a trunk he could hardly lift a pocket full of wizard money and a large owl .Hagrid must have forgotten to tell him something you had to do like tapping the third brick on the left to get into Diagon Alley .He wondered if he should get out his wand and start tapping the ticket inspectors stand between platforms nine and ten .At that moment a group of people passed just behind him and he caught a few words of what they were saying .packed with Muggles of course Harry swung round .The speaker was a plump woman who was talking to four boys all with flaming red hair .Each of them was pushing a trunk like Harrys in front of him and they had an owl .Heart hammering Harry pushed his cart after them .They stopped and so did he just near enough to hear what they were saying .Now whats the platform number ?said the boys mother .Nine and threequarters !piped a small girl also red headed who was holding her hand Mom cant I go Youre not old enough Ginny now be quiet .All right Percy you go first .What looked like the oldest boy marched toward platforms nine and ten .Harry watched careful not to blink in case he missed it but just as the boy reached the dividing barrier between the two platforms a large crowd of tourists came swarming in front of him and by the time the last backpack had cleared away the boy had vanished .Fred you next the plump woman said .Im not Fred Im George said the boy .Honestly woman you call yourself our mother ?Cant you tell Im George ?Sorry George dear .Only joking I am Fred said the boy and off he went .His twin called after him to hurry up and he must have done so because a second later he had gone but how had he done it ?Now the third brother was walking briskly toward the barrier he was almost there and then quite suddenly he wasnt anywhere .There was nothing else for it .Excuse me Harry said to the plump woman .Hello dear she said .First time at Hogwarts ?Rons new too .She pointed at the last and youngest of her sons .He was tall thin and gangling with freckles big hands and feet and a long nose .Yes said Harry .The thing is the thing is I dont know how to How to get onto the platform ?she said kindly and Harry nodded .Not to worry she said .All you have to do is walk straight at the barrier between platforms nine and ten .Dont stop and dont be scared youll crash into it thats very important .Best do it at a bit of a run if youre nervous .Go on go now before Ron .Er okay said Harry .He pushed his trolley around and stared at the barrier .It looked very solid .He started to walk toward it .People jostled him on their way to platforms nine and ten .Harry walked more quickly .He was going to smash right into that barrier and then hed be in trouble leaning forward on his cart he broke into a heavy run the barrier was coming nearer and nearer he wouldnt be able to stop the cart was out of control he was a foot away he closed his eyes ready for the crash It didnt come .he kept on running .he opened his eyes .A scarlet steam engine was waiting next to a platform packed with people .A sign overhead said Hogwarts Express eleven oclock .Harry looked behind him and saw a wroughtiron archway where the barrier had been with the words Platform Nine and Three Quarters on it .He had done it .Smoke from the engine drifted over the heads of the chattering crowd while cats of every color wound here and there between their legs .Owls hooted to one another in a disgruntled sort of way over the babble and the scraping of heavy trunks .The first few carriages were already packed with students some hanging out of the window to talk to their families some fighting over seats .Harry pushed his cart off down the platform in search of an empty seat .He passed a roundfaced boy who was saying Gran Ive lost my toad again .Oh Neville he heard the old woman sigh .A boy with dreadlocks was surrounded by a small crowd .Give us a look Lee go on .The boy lifted the lid of a box in his arms and the people around him shrieked and yelled as something inside poked out a long hairy leg .Harry pressed on through the crowd until he found an empty compartment near the end of the train .He put Hedwig inside first and then started to shove and heave his trunk toward the train door .He tried to lift it up the steps but could hardly raise one end and twice he dropped it painfully on his foot .Want a hand ?It was one of the redhaired twins hed followed through the barrier .Yes please Harry panted .Oy Fred !Cmere and help !With the twins help Harrys trunk was at last tucked away in a corner of the compartment .Thanks said Harry pushing his sweaty hair out of his eyes .Whats that ?said one of the twins suddenly pointing at Harrys lightning scar .Blimey said the other twin .Are you ?He is said the first twin .Arent you ?he added to Harry .What ?said Harry .Harry Potter chorused the twins .Oh him said Harry .I mean yes I am .The two boys gawked at him and Harry felt himself turning red .Then to his relief a voice came floating in through the trains open door .Fred ?George ?Are you there ?Coming Mom .With a last look at Harry the twins hopped off the train .Harry sat down next to the window where half hidden he could watch the redhaired family on the platform and hear what they were saying .Their mother had just taken out her handkerchief .Ron youve got something on your nose .The youngest boy tried to jerk out of the way but she grabbed him and began rubbing the end of his nose .Mom geroff .He wriggled free .aah has ickle Ronnie got somefink on his nosie ?said one of the twins .Shut up said Ron .Wheres Percy ?said their mother .Hes coming now .The oldest boy came striding into sight .He had already changed into his billowing black Hogwarts robes and Harry noticed a shiny red and gold badge on his chest with the letter P on it .Cant stay long Mother he said .Im up front the prefects have got two compartments to themselves Oh are you a prefect Percy ?said one of the twins with an air of great surprise .You should have said something we had no idea .Hang on I think I remember him saying something about it said the other twin .Once Or twice A minute All summer Oh shut up said Percy the Prefect .How come Percy gets new robes anyway ?said one of the twins .Because hes a prefect said their mother fondly .All right dear well have a good term send me an owl when you get there .She kissed Percy on the cheek and he left .Then she turned to the twins .Now you two this year you behave yourselves .If I get one more owl telling me youve youve blown up a toilet or Blown up a toilet ?Weve never blown up a toilet .Great idea though thanks Mom .Its not funny .And look after Ron .Dont worry ickle Ronniekins is safe with us .Shut up said Ron again .He was almost as tall as the twins already and his nose was still pink where his mother had rubbed it .Hey Mom guess what ?Guess who we just met on the train ?Harry leaned back quickly so they couldnt see him looking .You know that blackhaired boy who was near us in the station ?Know who he is ?Who ?Harry Potted Harry heard the little girls voice .Oh Mom can I go on the train and see him Mom oh please .Youve already seen him Ginny and the poor boy isnt something you goggle at in a zoo .Is he really Fred ?How do you know ?Asked him .Saw his scar .Its really there like lightning .Poor dear no wonder he was alone I wondered .He was ever so polite when he asked how to get onto the platform .Never mind that do you think he remembers what YouKnowWho looks like ?Their mother suddenly became very stern .I forbid you to ask him Fred .No dont you dare .As though he needs reminding of that on his first day at school .All right keep your hair on .A whistle sounded .Hurry up !their mother said and the three boys clambered onto the train .They leaned out of the window for her to kiss them goodbye and their younger sister began to cry .Dont Ginny well send you loads of owls .Well send you a Hogwarts toilet seat .Georg e Only joking Mom .The train began to move .Harry saw the boys mother waving and their sister half laughing half crying running to keep up with the train until it gathered too much speed then she fell back and waved .Harry watched the girl and her mother disappear as the train rounded the corner .Houses flashed past the window .Harry felt a great leap of excitement .He didnt know what he was going to but it had to be better than what he was leaving behind .The door of the compartment slid open and the youngest redheaded boy came in .Anyone sitting there ?he asked pointing at the seat opposite Harry .Everywhere else is full .Harry shook his head and the boy sat down .He glanced at Harry and then looked quickly out of the window pretending he hadnt looked .Harry saw he still had a black mark on his nose .Hey Ron .The twins were back .Listen were going down the middle of the train Lee Jordans got a giant tarantula down there .Right mumbled Ron .Harry said the other twin did we introduce ourselves ?Fred and George Weasley .And this is Ron our brother .See you later then .Bye said Harry and Ron .The twins slid the compartment door shut behind them .Are you really Harry Potter ?Ron blurted out .Harry nodded .Oh well I thought it might be one of Fred and Georges jokes said Ron .And have you really got you know .He pointed at Harrys forehead .Harry pulled back his bangs to show the lightning scar .Ron stared .So thats where YouKnowWho ?Yes said Harry but I cant remember it .Nothing ?said Ron eagerly .Well I remember a lot of green light but nothing else .Wow said Ron .He sat and stared at Harry for a few moments then as though he had suddenly realized what he was doing he looked quickly out of the window again .Are all your family wizards ?asked Harry who found Ron just as interesting as Ron found him .Er yes I think so said Ron .I think Moms got a second cousin whos an accountant but we never talk about him .So you must know loads of magic already .The Weasleys were clearly one of those old wizarding families the pale boy in Diagon Alley had talked about .I heard you went to live with Muggles said Ron .What are they like ?Horrible well not all of them .My aunt and uncle and cousin are though .Wish Id had three wizard brothers .Five said Ron .For some reason he was looking gloomy .Im the sixth in our family to go to Hogwarts .You could say Ive got a lot to live up to .Bill and Charlie have already left Bill was head boy and Charlie was captain of Quidditch .Now Percys a prefect .Fred and George mess around a lot but they still get really good marks and everyone thinks theyre really funny .Everyone expects me to do as well as the others but if I do its no big deal because they did it first .You never get anything new either with five brothers .Ive got Bills old robes Charlies old wand and Percys old rat .Ron reached inside his jacket and pulled out a fat gray rat which was asleep .His names Scabbers and hes useless he hardly ever wakes up .Percy got an owl from my dad for being made a prefect but they couldnt aff I mean I got Scabbers instead .Rons ears went pink .He seemed to think hed said too much because he went back to staring out of the window .Harry didnt think there was anything wrong with not being able to afford an owl .After all hed never had any money in his life until a month ago and he told Ron so all about having to wear Dudleys old clothes and never getting proper birthday presents .This seemed to cheer Ron up . .and until Hagrid told me I didnt know anything about being a wizard or about my parents or Voldemort Ron gasped .What ?said Harry .You said YouKnowWhos name said Ron sounding both shocked and impressed .Id have thought you of all people Im not trying to be brave or anything saying the name said Harry I just never knew you shouldnt .See what I mean ?Ive got loads to learn .I bet he added voicing for the first time something that had been worrying him a lot lately I bet Im the worst in the class .You wont be .Theres loads of people who come from Muggle families and they learn quick enough .While they had been talking the train had carried them out of London .Now they were speeding past fields full of cows and sheep .They were quiet for a time watching the fields and lanes flick past .Around half past twelve there was a great clattering outside in the corridor and a smiling dimpled woman slid back their door and said Anything off the cart dears ?Harry who hadnt had any breakfast leapt to his feet but Rons ears went pink again and he muttered that hed brought sandwiches .Harry went out into the corridor .He had never had any money for candy with the Dursleys and now that he had pockets rattling with gold and silver he was ready to buy as many Mars Bars as he could carry but the woman didnt have Mars Bars .What she did have were Bertie Botts Every Flavor Beans Droobles Best Blowing Gum Chocolate Frogs Pumpkin Pasties Cauldron Cakes Licorice Wands and a number of other strange things Harry had never seen in his life .Not wanting to miss anything he got some of everything and paid the woman eleven silver Sickles and seven bronze Knuts .Ron stared as Harry brought it all back in to the compartment and tipped it onto an empty seat .Hungry are you ?Starving said Harry taking a large bite out of a pumpkin pasty .Ron had taken out a lumpy package and unwrapped it .There were four sandwiches inside .He pulled one of them apart and said She always forgets I dont like corned beef .Swap you for one of these said Harry holding up a pasty .Go on You dont want this its all dry said Ron .She hasnt got much time he added quickly you know with five of us .Go on have a pasty said Harry who had never had anything to share before or indeed anyone to share it with .It was a nice feeling sitting there with Ron eating their way through all Harrys pasties cakes and candies the sandwiches lay forgotten .What are these ?Harry asked Ron holding up a pack of Chocolate Frogs .Theyre not really frogs are they ?He was starting to feel that nothing would surprise him .No said Ron .But see what the card is .Im missing Agrippa .What ?Oh of course you wouldnt know Chocolate Frogs have cards inside them you know to collect famous witches and wizards .Ive got about five hundred but I havent got Agrippa or Ptolemy .Harry unwrapped his Chocolate Frog and picked up the card .It showed a mans face .He wore halfmoon glasses had a long crooked nose and flowing silver hair beard and mustache .Underneath the picture was the name Albus Dumbledore .So this is Dumbledore !said Harry .Dont tell me youd never heard of Dumbledore !said Ron .Can I have a frog ?I might get Agrippa thanks Harry turned over his card and read ALBUS DUMBLEDORE CURRENTLY HEADMASTER OF HOGWARTS Considered by many the greatest wizard of modern times Dumbledore is particularly famous for his defeat of the Dark wizard Grindelwald in 1945 for the discovery of the twelve uses of dragons blood and his work on alchemy with his partner Nicolas Flamel .Professor Dumbledore enjoys chamber music and ten pin bowling .Harry turned the card back over and saw to his astonishment that Dumbledore s face had disappeared .Hes gone !Well you cant expect him to hang around all day said Ron .Hell be back .No Ive got Morgana again and Ive got about six of her .do you want it ?You can start collecting .Rons eyes strayed to the pile of Chocolate Frogs waiting to be unwrapped .Help yourself said Harry .But in you know the Muggle world people just stay put in photos .Do they ?What they dont move at all ?Ron sounded amazed .Weird .Harry stared as Dumbledore sidled back into the picture on his card and gave him a small smile .Ron was more interested in eating the frogs than looking at the Famous Witches and Wizards cards but Harry couldnt keep his eyes off them .Soon he had not only Dumbledore and Morgana but Hengist of Woodcraft Alberic Grunnion Circe Paracelsus and Merlin .He finally tore his eyes away from the druidess Cliodna who was scratching her nose to open a bag of Bertie Botts Every Flavor Beans .You want to be careful with those Ron warned Harry .When they say every flavor they mean every flavor you know you get all the ordinary ones like chocolate and peppermint and marmalade but then you can get spinach and liver and tripe .George reckons he had a boogerflavored one once .Ron picked up a green bean looked at it carefully and bit into a corner .Bleaargh see ?Sprouts .They had a good time eating the Every Flavor Beans .Harry got toast coconut baked bean strawberry curry grass coffee sardine and was even brave enough to nibble the end off a funny gray one Ron wouldnt touch which turned out to be pepper .The countryside now flying past the window was becoming wilder .The neat fields had gone .Now there were woods twisting rivers and dark green hills .There was a knock on the door of their compartment and the roundfaced boy Harry had passed on platform nine and threequarters came in .He looked tearful .Sorry he said but have you seen a toad at all ?When they shook their heads he wailed Ive lost him !He keeps getting away from me !Hell turn up said Harry .Yes said the boy miserably .Well if you see him .He left .Dont know why hes so bothered said Ron .If Id brought a toad Id lose it as quick as I could .Mind you I brought Scabbers so I cant talk .The rat was still snoozing on Rons lap .He might have died and you wouldnt know the difference said Ron in disgust .I tried to turn him yellow yesterday to make him more interesting but the spell didnt work .Ill show you look .He rummaged around in his trunk and pulled out a very batteredlooking wand .It was chipped in places and something white was glinting at the end .Unicorn hairs nearly poking out .Anyway He had just raised his wand when the compartment door slid open again .The toadless boy was back but this time he had a girl with him .She was already wearing her new Hogwarts robes .Has anyone seen a toad ?Nevilles lost one she said .She had a bossy sort of voice lots of bushy brown hair and rather large front teeth .Weve already told him we havent seen it said Ron but the girl wasnt listening she was looking at the wand in his hand .Oh are you doing magic ?Lets see it then .She sat down .Ron looked taken aback .Er all right .He cleared his throat .Sunshine daisies butter mellow Turn this stupid fat rat yellow .He waved his wand but nothing happened .Scabbers stayed gray and fast asleep .Are you sure thats a real spell ?said the girl .Well its not very good is it ?Ive tried a few simple spells just for practice and its all worked for me .Nobody in my familys magic at all it was ever such a surprise when I got my letter but I was ever so pleased of course I mean its the very best school of witchcraft there is Ive heard Ive learned all our course books by heart of course I just hope it will be enough Im Hermione Granger by the way who are you ?She said all this very fast .Harry looked at Ron and was relieved to see by his stunned face that he hadnt learned all the course books by heart either .Im Ron Weasley Ron muttered .Harry Potter said Harry .Are you really ?said Hermione .I know all about you of course I got a few extra books for background reading and youre in Modern Magical History and The Rise and Fall of the Dark Arts and Great Wizarding Events of the Twentieth Century .Am I ?said Harry feeling dazed .Goodness didnt you know Id have found out everything I could if it was me said Hermione .Do either of you know what House youll be in ?Ive been asking around and I hope Im in Gryffindor it sounds by far the best I hear Dumbledore himself was in it but I suppose Ravenclaw wouldnt be too bad .Anyway wed better go and look for Nevilles toad .You two had better change you know I expect well be there soon .And she left taking the toadless boy with her .Whatever House Im in I hope shes not in it said Ron .He threw his wand back into his trunk .Stupid spell George gave it to me bet he knew it was a dud .What House are your brothers in ?asked Harry .Gryffindor said Ron .Gloom seemed to be settling on him again .Mom and Dad were in it too .I dont know what theyll say if Im not .I dont suppose Ravenclaw would be too bad but imagine if they put me in Slytherin .Thats the House Vol I mean YouKnowWho was in ?Yeah said Ron .He flopped back into his seat looking depressed .You know I think the ends of Scabbers whiskers are a bit lighter said Harry trying to take Rons mind off Houses .So what do your oldest brothers do now that theyve left anyway ?Harry was wondering what a wizard did once hed finished school .Charlies in Romania studying dragons and Bills in Africa doing something for Gringotts said Ron .Did you hear about Gringotts ?Its been all over the Daily Prophet but I dont suppose you get that with the Muggles someone tried to rob a high security vault .Harry stared .Really ?What happened to them ?Nothing thats why its such big news .They havent been caught .My dad says it mustve been a powerful Dark wizard to get round Gringotts but they dont think they took anything thats whats odd .Course everyone gets scared when something like this happens in case YouKnowWhos behind it .Harry turned this news over in his mind .He was starting to get a prickle of fear every time YouKnow Who was mentioned .He supposed this was all part of entering the magical world but it had been a lot more comfortable saying Voldemort without worrying .Whats your Quidditch team ?Ron asked .Er I dont know any Harry confessed .What !Ron looked dumbfounded .Oh you wait its the best game in the world And he was off explaining all about the four balls and the positions of the seven players describing famous games hed been to with his brothers and the broomstick hed like to get if he had the money .He was just taking Harry through the finer points of the game when the compartment door slid open yet again but it wasnt Neville the toadless boy or Hermione Granger this time .Three boys entered and Harry recognized the middle one at once It was the pale boy from Madam Malkins robe shop .He was looking at Harry with a lot more interest than hed shown back in Diagon Alley .Is it true ?he said .Theyre saying all down the train that Harry Potters in this compartment .So its you is it ?Yes said Harry .He was looking at the other boys .Both of them were thickset and looked extremely mean .Standing on either side of the pale boy they looked like bodyguards .Oh this is Crabbe and this is Goyle said the pale boy carelessly noticing where Harry was looking .And my names Malfoy Draco Malfoy .Ron gave a slight cough which might have been hiding a snigger .Draco Malfoy looked at him .Think my names funny do you ?No need to ask who you are .My father told me all the Weasleys have red hair freckles and more children than they can afford .He turned back to Harry .Youll soon find out some wizarding families are much better than others Potter .You dont want to go making friends with the wrong sort .I can help you there .He held out his hand to shake Harrys but Harry didnt take it .I think I can tell who the wrong sort are for myself thanks he said coolly .Draco Malfoy didnt go red but a pink tinge appeared in his pale cheeks .Id be careful if I were you Potter he said slowly .Unless youre a bit politer youll go the same way as your parents .They didnt know what was good for them either .You hang around with riffraff like the Weasleys and that Hagrid and itll rub off on you .Both Harry and Ron stood up .Say that again Ron said his face as red as his hair .Oh youre going to fight us are you ?Malfoy sneered .Unless you get out now said Harry more bravely than he felt because Crabbe and Goyle were a lot bigger than him or Ron .But we dont feel like leaving do we boys ?Weve eaten all our food and you still seem to have some .Goyle reached toward the Chocolate Frogs next to Ron Ron leapt forward but before hed so much as touched Goyle Goyle let out a horrible yell .Scabbers the rat was hanging off his finger sharp little teeth sunk deep into Goyle s knuckle Crabbe and Malfoy backed away as Goyle swung Scabbers round and round howling and when Scabbers finally flew off and hit the window all three of them disappeared at once .Perhaps they thought there were more rats lurking among the sweets or perhaps theyd heard footsteps because a second later Hermione Granger had come in .What has been going on ?she said looking at the sweets all over the floor and Ron picking up Scabbers by his tail .I think hes been knocked out Ron said to Harry .He looked closer at Scabbers .No I dont believe it hes gone back to sleep .And so he had .Youve met Malfoy before ?Harry explained about their meeting in Diagon Alley .Ive heard of his family said Ron darkly .They were some of the first to come back to our side after You KnowWho disappeared .Said theyd been bewitched .My dad doesnt believe it .He says Malfoys father didnt need an excuse to go over to the Dark Side .He turned to Hermione .Can we help you with something ?Youd better hurry up and put your robes on Ive just been up to the front to ask the conductor and he says were nearly there .You havent been fighting have you ?Youll be in trouble before we even get there !Scabbers has been fighting not us said Ron scowling at her .Would you mind leaving while we change ?All right I only came in here because people outside are behaving very childishly racing up and down the corridors said Hermione in a sniffy voice .And youve got dirt on your nose by the way did you know ?Ron glared at her as she left .Harry peered out of the window .It was getting dark .He could see mountains and forests under a deep purple sky .The train did seem to be slowing down .He and Ron took off their jackets and pulled on their long black robes .Rons were a bit short for him you could see his sneakers underneath them .A voice echoed through the train We will be reaching Hogwarts in five minutes time .Please leave your luggage on the train it will be taken to the school separately .Harrys stomach lurched with nerves and Ron he saw looked pale under his freckles .They crammed their pockets with the last of the sweets and joined the crowd thronging the corridor .The train slowed right down and finally stopped .People pushed their way toward the door and out on to a tiny dark platform .Harry shivered in the cold night air .Then a lamp came bobbing over the heads of the students and Harry heard a familiar voice Firs years !Firs years over here !All right there Harry ?Hagrids big hairy face beamed over the sea of heads .Cmon follow me any more firs years ?Mind yer step now !Firs years follow me !Slipping and stumbling they followed Hagrid down what seemed to be a steep narrow path .It was so dark on either side of them that Harry thought there must be thick trees there .Nobody spoke much .Neville the boy who kept losing his toad sniffed once or twice .Yehll get yer firs sight o Hogwarts in a sec Hagrid called over his shoulder jus round this bend here .There was a loud Oooooh !The narrow path had opened suddenly onto the edge of a great black lake .Perched atop a high mountain on the other side its windows sparkling in the starry sky was a vast castle with many turrets and towers .No moren four to a boat !Hagrid called pointing to a fleet of little boats sitting in the water by the shore .Harry and Ron were followed into their boat by Neville and Hermione .Everyone in ?shouted Hagrid who had a boat to himself .Right then FORWARD !And the fleet of little boats moved off all at once gliding across the lake which was as smooth as glass .Everyone was silent staring up at the great castle overhead .It towered over them as they sailed nearer and nearer to the cliff on which it stood .Heads down !yelled Hagrid as the first boats reached the cliff they all bent their heads and the little boats carried them through a curtain of ivy that hid a wide opening in the cliff face .They were carried along a dark tunnel which seemed to be taking them right underneath the castle until they reached a kind of underground harbor where they clambered out onto rocks and pebbles .Oy you there !Is this your toad ?said Hagrid who was checking the boats as people climbed out of them .Trevor !cried Neville blissfully holding out his hands .Then they clambered up a passageway in the rock after Hagrids lamp coming out at last onto smooth damp grass right in the shadow of the castle .They walked up a flight of stone steps and crowded around the huge oak front door .Everyone here ?You there still got yer toad ?Hagrid raised a gigantic fist and knocked three times on the castle door .7 THE SORTING HAT The door swung open at once .A tall blackhaired witch in emeraldgreen robes stood there .She had a very stern face and Harrys first thought was that this was not someone to cross .The firs years Professor McGonagall said Hagrid .Thank you Hagrid .I will take them from here .She pulled the door wide .The entrance hall was so big you could have fit the whole of the Dursleys house in it .The stone walls were lit with flaming torches like the ones at Gringotts the ceiling was too high to make out and a magnificent marble staircase facing them led to the upper floors .They followed Professor McGonagall across the flagged stone floor .Harry could hear the drone of hundreds of voices from a doorway to the right the rest of the school must already be here but Professor McGonagall showed the first years into a small empty chamber off the hall .They crowded in standing rather closer together than they would usually have done peering about nervously .Welcome to Hogwarts said Professor McGonagall .The startofterm banquet will begin shortly but before you take your seats in the Great Hall you will be sorted into your Houses .The Sorting is a very important ceremony because while you are here your House will be something like your family within Hogwarts .You will have classes with the rest of your House sleep in your House dormitory and spend free time in your House common room .The four Houses are called Gryffindor Hufflepuff Ravenclaw and Slytherin .Each House has its own noble history and each has produced outstanding witches and wizards .While you are at Hogwarts your triumphs will earn your House points while any rule breaking will lose House points .At the end of the year the House with the most points is awarded the House cup a great honor .I hope each of you will be a credit to whichever House becomes yours .The Sorting Ceremony will take place in a few minutes in front of the rest of the school .I suggest you all smarten yourselves up as much as you can while you are waiting .Her eyes lingered for a moment on Nevilles cloak which was fastened under his left ear and on Rons smudged nose .Harry nervously tried to flatten his hair .I shall return when we are ready for you said Professor McGonagall .Please wait quietly .She left the chamber .Harry swallowed .How exactly do they sort us into Houses ?he asked Ron .Some sort of test I think .Fred said it hurts a lot but I think he was joking .Harrys heart gave a horrible jolt .A test ?In front of the whole school ?But he didnt know any magic yet what on earth would he have to do ?He hadnt expected something like this the moment they arrived .He looked around anxiously and saw that everyone else looked terrified too .No one was talking much except Hermione Granger who was whispering very fast about all the spells shed learned and wondering which one shed need .Harry tried hard not to listen to her .Hed never been more nervous never not even when hed had to take a school report home to the Dursleys saying that hed somehow turned his teachers wig blue .He kept his eyes fixed on the door .Any second now Professor McGonagall would come back and lead him to his doom .Then something happened that made him jump about a foot in the air several people behind him screamed .What the ?He gasped .So did the people around him .About twenty ghosts had just streamed through the back wall .Pearlywhite and slightly transparent they glided across the room talking to one another and hardly glancing at the first years .They seemed to be arguing .What looked like a fat little monk was saying Forgive and forget I say we ought to give him a second chance My dear Friar havent we given Peeves all the chances he deserves ?He gives us all a bad name and you know hes not really even a ghost I say what are you all doing here ?A ghost wearing a ruff and tights had suddenly noticed the first years .Nobody answered .New students !said the Fat Friar smiling around at them .About to be Sorted I suppose ?A few people nodded mutely .Hope to see you in Hufflepuff !said the Friar .My old House you know .Move along now said a sharp voice .The Sorting Ceremonys about to start .Professor McGonagall had returned .One by one the ghosts floated away through the opposite wall .Now form a line Professor McGonagall told the first years and follow me .Feeling oddly as though his legs had turned to lead Harry got into line behind a boy with sandy hair with Ron behind him and they walked out of the chamber back across the hall and through a pair of double doors into the Great Hall .Harry had never even imagined such a strange and splendid place .It was lit by thousands and thousands of candles that were floating in midair over four long tables where the rest of the students were sitting .These tables were laid with glittering golden plates and goblets .At the top of the hall was another long table where the teachers were sitting .Professor McGonagall led the first years up here so that they came to a halt in a line facing the other students with the teachers behind them .The hundreds of faces staring at them looked like pale lanterns in the flickering candlelight .Dotted here and there among the students the ghosts shone misty silver .Mainly to avoid all the staring eyes Harry looked upward and saw a velvety black ceiling dotted with stars .He heard Hermione whisper Its bewitched to look like the sky outside .I read about it in Hogwarts A History .It was hard to believe there was a ceiling there at all and that the Great Hall didnt simply open on to the heavens .Harry quickly looked down again as Professor McGonagall silently placed a fourlegged stool in front of the first years .On top of the stool she put a pointed wizards hat .This hat was patched and frayed and extremely dirty .Aunt Petunia wouldnt have let it in the house .Maybe they had to try and get a rabbit out of it Harry thought wildly that seemed the sort of thing noticing that everyone in the hall was now staring at the hat he stared at it too .For a few seconds there was complete silence .Then the hat twitched .A rip near the brim opened wide like a mouth and the hat began to sing Oh you may not think Im pretty But dont judge on what you see Ill eat myself if you can find A smarter hat than me .You can keep your bowlers black Your top hats sleek and tall For Im the Hogwarts Sorting Hat And I can cap them all .Theres nothing hidden in your head The Sorting Hat cant see So try me on and I will tell you Where you ought to be .You might belong in Gryffindor Where dwell the brave at heart Their daring nerve and chivalry Set Gryffindors apart You might belong in Hufflepuff Where they are just and loyal Those patient Hufflepuffs are true And unafraid of toil Or yet in wise old Ravenclaw If youve a ready mind Where those of wit and learning Will always find their kind Or perhaps in Slytherin Youll make your real friends Those cunning folk use any means To achieve their ends .So put me on !Dont be afraid l And dont get in a flap Youre in safe hands though I have none For Im a Thinking Cap The whole hall burst into applause as the hat finished its song .It bowed to each of the four tables and then became quite still again .So weve just got to try on the hat !Ron whispered to Harry .Ill kill Fred he was going on about wrestling a troll .Harry smiled weakly .Yes trying on the hat was a lot better than having to do a spell but he did wish they could have tried it on without everyone watching .The hat seemed to be asking rather a lot Harry didnt feel brave or quickwitted or any of it at the moment .If only the hat had mentioned a House for people who felt a bit queasy that would have been the one for him .Professor McGonagall now stepped forward holding a long roll of parchment .When I call your name you will put on the hat and sit on the stool to be sorted she said .Abbott Hannah !A pinkfaced girl with blonde pigtails stumbled out of line put on the hat which fell right down over her eyes and sat down .A moments pause HUFFLEPUFF !shouted the hat .The table on the right cheered and clapped as Hannah went to sit down at the Hufflepuff table .Harry saw the ghost of the Fat Friar waving merrily at her .Bones Susan !HUFFLEPUFF !shouted the hat again and Susan scuttled off to sit next to Hannah .Boot Terry !RAVENCLAW !The table second from the left clapped this time several Ravenclaws stood up to shake hands with Terry as he joined them .Brocklehurst Mandy went to Ravenclaw too but Brown Lavender became the first new Gryffindor and the table on the far left exploded with cheers Harry could see Rons twin brothers catcalling .Bulstrode Millicent then became a Slytherin .Perhaps it was Harrys imagination after all hed heard about Slytherin but he thought they looked like an unpleasant lot .He was starting to feel definitely sick now .He remembered being picked for teams during gym at his old school .He had always been last to be chosen not because he was no good but because no one wanted Dudley to think they liked him .FinchFletchley Justin !HUFFLEPUFF !Sometimes Harry noticed the hat shouted out the House at once but at others it took a little while to decide .Finnigan Seamus the sandyhaired boy next to Harry in the line sat on the stool for almost a whole minute before the hat declared him a Gryffindor .Granger Hermione !Hermione almost ran to the stool and jammed the hat eagerly on her head .GRYFFINDOR !shouted the hat .Ron groaned .A horrible thought struck Harry as horrible thoughts always do when youre very nervous .What if he wasnt chosen at all ?What if he just sat there with the hat over his eyes for ages until Professor McGonagall jerked it off his head and said there had obviously been a mistake and hed better get back on the train ?When Neville Longbottom the boy who kept losing his toad was called he fell over on his way to the stool .The hat took a long time to decide with Neville .When it finally shouted GRYFFINDOR Neville ran off still wearing it and had to jog back amid gales of laughter to give it to MacDougal Morag .Malfoy swaggered forward when his name was called and got his wish at once the hat had barely touched his head when it screamed SLYTHERIN !Malfoy went to join his friends Crabbe and Goyle looking pleased with himself .There werent many people left now .Moon Nott .Parkinson .then a pair of twin girls Path and Path .then Perks Sally Anne .and then at last Potter Harry !As Harry stepped forward whispers suddenly broke out like little hissing fires all over the hall .Potter did she say ?The Harry Potter ?The last thing Harry saw before the hat dropped over his eyes was the hall full of people craning to get a good look at him .Next second he was looking at the black inside of the hat .He waited .Hmm said a small voice in his ear .Difficult .Very difficult .Plenty of courage I see .Not a bad mind either .Theres talent oh my goodness yes and a nice thirst to prove yourself now thats interesting .So where shall I put you ?Harry gripped the edges of the stool and thought Not Slytherin not Slytherin .Not Slytherin eh ?said the small voice .Are you sure ?You could be great you know its all here in your head and Slytherin will help you on the way to greatness no doubt about that no ?Well if youre sure better be GRYFFINDOR !Harry heard the hat shout the last word to the whole hall .He took off the hat and walked shakily toward the Gryffindor table .He was so relieved to have been chosen and not put in Slytherin he hardly noticed that he was getting the loudest cheer yet .Percy the Prefect got up and shook his hand vigorously while the Weasley twins yelled We got Potter !We got Potter !Harry sat down opposite the ghost in the ruff hed seen earlier .The ghost patted his arm giving Harry the sudden horrible feeling hed just plunged it into a bucket of icecold water .He could see the High Table properly now .At the end nearest him sat Hagrid who caught his eye and gave him the thumbs up .Harry grinned back .And there in the center of the High Table in a large gold chair sat Albus Dumbledore .Harry recognized him at once from the card hed gotten out of the Chocolate Frog on the train .Dumbledores silver hair was the only thing in the whole hall that shone as brightly as the ghosts .Harry spotted Professor Quirrell too the nervous young man from the Leaky Cauldron .He was looking very peculiar in a large purple turban .And now there were only four people left to be sorted .Thomas Dean a Black boy even taller than Ron joined Harry at the Gryffindor table .Turpin Lisa became a Ravenclaw and then it was Rons turn .He was pale green by now .Harry crossed his fingers under the table and a second later the hat had shouted GRYFFINDOR !Harry clapped loudly with the rest as Ron collapsed into the chair next to him .Well done Ron excellent said Percy Weasley pompously across Harry as Zabini Blaise was made a Slytherin .Professor McGonagall rolled up her scroll and took the Sorting Hat away .Harry looked down at his empty gold plate .He had only just realized how hungry he was .The pumpkin pasties seemed ages ago .Albus Dumbledore had gotten to his feet .He was beaming at the students his arms opened wide as if nothing could have pleased him more than to see them all there .Welcome !he said .Welcome to a new year at Hogwarts !Before we begin our banquet I would like to say a few words .And here they are Nitwit !Blubber !Oddment !Tweak !Thank you !He sat back down .Everybody clapped and cheered .Harry didnt know whether to laugh or not .Is he a bit mad ?he asked Percy uncertainly .Mad ?said Percy airily .Hes a genius !Best wizard in the world !But he is a bit mad yes .Potatoes Harry ?Harrys mouth fell open .The dishes in front of him were now piled with food .He had never seen so many things he liked to eat on one table roast beef roast chicken pork chops and lamb chops sausages bacon and steak boiled potatoes roast potatoes fries Yorkshire pudding peas carrots gravy ketchup and for some strange reason peppermint humbugs .The Dursleys had never exactly starved Harry but hed never been allowed to eat as much as he liked .Dudley had always taken anything that Harry really wanted even if it made him sick .Harry piled his plate with a bit of everything except the peppermints and began to eat .It was all delicious .That does look good said the ghost in the ruff sadly watching Harry cut up his steak .Cant you ?I havent eaten for nearly five hundred years said the ghost .I dont need to of course but one does miss it .I dont think Ive introduced myself ?Sir Nicholas de MimsyPorpington at your service .Resident ghost of Gryffindor Tower .I know who you are !said Ron suddenly .My brothers told me about you youre Nearly Headless Nick !I would prefer you to call me Sir Nicholas de Mimsy the ghost began stiffly but sandyhaired Seamus Finnigan interrupted .Nearly Headless ?How can you be nearly headless ?Sir Nicholas looked extremely miffed as if their little chat wasnt going at all the way he wanted .Like this he said irritably .He seized his left ear and pulled .His whole head swung off his neck and fell onto his shoulder as if it was on a hinge .Someone had obviously tried to behead him but not done it properly .Looking pleased at the stunned looks on their faces Nearly Headless Nick flipped his head back onto his neck coughed and said So new Gryffindors !I hope youre going to help us win the House Championship this year ?Gryffindors have never gone so long without winning .Slytherins have got the cup six years in a row !The Bloody Barons becoming almost unbearable hes the Slytherin ghost .Harry looked over at the Slytherin table and saw a horrible ghost sitting there with blank staring eyes a gaunt face and robes stained with silver blood .He was right next to Malfoy who Harry was pleased to see didnt look too pleased with the seating arrangements .How did he get covered in blood ?asked Seamus with great interest .Ive never asked said Nearly Headless Nick delicately .When everyone had eaten as much as they could the remains of the food faded from the plates leaving them sparkling clean as before .A moment later the desserts appeared .Blocks of ice cream in every flavor you could think of apple pies treacle tarts chocolate eclairs and jam doughnuts trifle strawberries Jell 0 rice pudding .As Harry helped himself to a treacle tart the talk turned to their families .Im halfandhalf said Seamus .Me dads a Muggle .Mom didnt tell him she was a witch til after they were married .Bit of a nasty shock for him .The others laughed .What about you Neville ?said Ron .Well my gran brought me up and shes a witch said Neville but the family thought I was all Muggle for ages .My Great Uncle Algie kept trying to catch me off my guard and force some magic out of me he pushed me off the end of Blackpool pier once I nearly drowned but nothing happened until I was eight .Great Uncle Algie came round for dinner and he was hanging me out of an upstairs window by the ankles when my Great Auntie Enid offered him a meringue and he accidentally let go .But I bounced all the way down the garden and into the road .They were all really pleased Gran was crying she was so happy .And you should have seen their faces when I got in here they thought I might not be magic enough to come you see .Great Uncle Algie was so pleased he bought me my toad .On Harrys other side Percy Weasley and Hermione were talking about lessons I do hope they start right away theres so much to learn Im particularly interested in Transfiguration you know turning something into something else of course its supposed to be very difficult Youll be starting small just matches into needles and that sort of thing .Harry who was starting to feel warm and sleepy looked up at the High Table again .Hagrid was drinking deeply from his goblet .Professor McGonagall was talking to Professor Dumbledore .Professor Quirrell in his absurd turban was talking to a teacher with greasy black hair a hooked nose and sallow skin .It happened very suddenly .The hooknosed teacher looked past Quirrells turban straight into Harrys eyes and a sharp hot pain shot across the scar on Harrys forehead .Ouch !Harry clapped a hand to his head .What is it ?asked Percy .Nnothing .The pain had gone as quickly as it had come .Harder to shake off was the feeling Harry had gotten from the teachers look a feeling that he didnt like Harry at all .Whos that teacher talking to Professor Quirrell ?he asked Percy .Oh you know Quirrell already do you ?No wonder hes looking so nervous thats Professor Snape .He teaches Potions but he doesnt want to everyone knows hes after Quirrells job .Knows an awful lot about the Dark Arts Snape .Harry watched Snape for a while but Snape didnt look at him again .At last the desserts too disappeared and Professor Dumbledore got to his feet again .The hall fell silent .Ahem just a few more words now that we are all fed and watered .I have a few startofterm notices to give you .First years should note that the forest on the grounds is forbidden to all pupils .And a few of our older students would do well to remember that as well .Dumbledore s twinkling eyes flashed in the direction of the Weasley twins .I have also been asked by Mr Filch the caretaker to remind you all that no magic should be used between classes in the corridors .Quidditch trials will be held in the second week of the term .Anyone interested in playing for their House teams should contact Madam Hooch .And finally I must tell you that this year the third floor corridor on the righthand side is out of bounds to everyone who does not wish to die a very painful death .Harry laughed but he was one of the few who did .Hes not serious ?he muttered to Percy .Must be said Percy frowning at Dumbledore .Its odd because he usually gives us a reason why were not allowed to go somewhere the forests full of dangerous beasts everyone knows that .I do think he might have told us prefects at least .And now before we go to bed let us sing the school song !cried Dumbledore .Harry noticed that the other teachers smiles had become rather fixed .Dumbledore gave his wand a little flick as if he was trying to get a fly off the end and a long golden ribbon flew out of it which rose high above the tables and twisted itself snakelike into words .Everyone pick their favorite tune said Dumbledore and off we go !And the school bellowed Hogwarts Hogwarts Hoggy Warty Hogwarts Teach us something please Whether we be old and bald Or young with scabby knees Our heads could do with filling With some interesting stuff For now theyre bare and full of air Dead flies and bits of fluff So teach us things worth knowing Bring back what weve forgot Just do your best well do the rest And learn until our brains all rot .Everybody finished the song at different times .At last only the Weasley twins were left singing along to a very slow funeral march .Dumbledore conducted their last few lines with his wand and when they had finished he was one of those who clapped loudest .Ah music he said wiping his eyes .A magic beyond all we do here !And now bedtime .Off you trot !The Gryffindor first years followed Percy through the chattering crowds out of the Great Hall and up the marble staircase .Harrys legs were like lead again but only because he was so tired and full of food .He was too sleepy even to be surprised that the people in the portraits along the corridors whispered and pointed as they passed or that twice Percy led them through doorways hidden behind sliding panels and hanging tapestries .They climbed more staircases yawning and dragging their feet and Harry was just wondering how much farther they had to go when they came to a sudden halt .A bundle of walking sticks was floating in midair ahead of them and as Percy took a step toward them they started throwing themselves at him .Peeves Percy whispered to the first years .A poltergeist .He raised his voice Peeves show yourself .A loud rude sound like the air being let out of a balloon answered .Do you want me to go to the Bloody Baron ?There was a pop and a little man with wicked dark eyes and a wide mouth appeared floating cross legged in the air clutching the walking sticks .Oooooooh !he said with an evil cackle .Ickle Firsties !What fun !He swooped suddenly at them .They all ducked .Go away Peeves or the Baronll hear about this I mean it !barked Percy .Peeves stuck out his tongue and vanished dropping the walking sticks on Nevilles head .They heard him zooming away rattling coats of armor as he passed .You want to watch out for Peeves said Percy as they set off again .The Bloody Barons the only one who can control him he wont even listen to us prefects .Here we are .At the very end of the corridor hung a portrait of a very fat woman in a pink silk dress .Password ?she said .Caput Draconis said Percy and the portrait swung forward to reveal a round hole in the wall .They all scrambled through it Neville needed a leg up and found themselves in the Gryffindor common room a cozy round room full of squashy armchairs .Percy directed the girls through one door to their dormitory and the boys through another .At the top of a spiral staircase they were obviously in one of the towers they found their beds at last five four posters hung with deep red velvet curtains .Their trunks had already been brought up .Too tired to talk much they pulled on their pajamas and fell into bed .Great food isnt it ?Ron muttered to Harry through the hangings .Get off Scabbers !Hes chewing my sheets .Harry was going to ask Ron if hed had any of the treacle tart but he fell asleep almost at once .Perhaps Harry had eaten a bit too much because he had a very strange dream .He was wearing Professor Quirrells turban which kept talking to him telling him he must transfer to Slytherin at once because it was his destiny .Harry told the turban he didnt want to be in Slytherin it got heavier and heavier he tried to pull it off but it tightened painfully and there was Malfoy laughing at him as he struggled with it then Malfoy turned into the hooknosed teacher Snape whose laugh became high and cold there was a burst of green light and Harry woke sweating and shaking .He rolled over and fell asleep again and when he woke next day he didnt remember the dream at all .THE POTIONS MASTER There look .Where ?Next to the tall kid with the red hair .Wearing the glasses ?Did you see his face ?Did you see his scar ?Whispers followed Harry from the moment he left his dormitory the next day .People lining up outside classrooms stood on tiptoe to get a look at him or doubled back to pass him in the corridors again staring .Harry wished they wouldnt because he was trying to concentrate on finding his way to classes .There were a hundred and fortytwo staircases at Hogwarts wide sweeping ones narrow rickety ones some that led somewhere different on a Friday some with a vanishing step halfway up that you had to remember to jump .Then there were doors that wouldnt open unless you asked politely or tickled them in exactly the right place and doors that werent really doors at all but solid walls just pretending .It was also very hard to remember where anything was because it all seemed to move around a lot .The people in the portraits kept going to visit each other and Harry was sure the coats of armor could walk .The ghosts didnt help either .It was always a nasty shock when one of them glided suddenly through a door you were trying to open .Nearly Headless Nick was always happy to point new Gryffindors in the right direction but Peeves the Poltergeist was worth two locked doors and a trick staircase if you met him when you were late for class .He would drop wastepaper baskets on your head pull rugs from under your feet pelt you with bits of chalk or sneak up behind you invisible grab your nose and screech GOT YOUR CONK !Even worse than Peeves if that was possible was the caretaker Argus Filch .Harry and Ron managed to get on the wrong side of him on their very first morning .Filch found them trying to force their way through a door that unluckily turned out to be the entrance to the outofbounds corridor on the third floor .He wouldnt believe they were lost was sure they were trying to break into it on purpose and was threatening to lock them in the dungeons when they were rescued by Professor Quirrell who was passing .Filch owned a cat called Mrs Norris a scrawny dust colored creature with bulging lamplike eyes just like Filchs .She patrolled the corridors alone .Break a rule in front of her put just one toe out of line and shed whisk off for Filch whod appear wheezing two seconds later .Filch knew the secret passageways of the school better than anyone except perhaps the Weasley twins and could pop up as suddenly as any of the ghosts .The students all hated him and it was the dearest ambition of many to give Mrs Norris a good kick .And then once you had managed to find them there were the classes themselves .There was a lot more to magic as Harry quickly found out than waving your wand and saying a few funny words .They had to study the night skies through their telescopes every Wednesday at midnight and learn the names of different stars and the movements of the planets .Three times a week they went out to the greenhouses behind the castle to study Herbology with a dumpy little witch called Professor Sprout where they learned how to take care of all the strange plants and fungi and found out what they were used for .Easily the most boring class was History of Magic which was the only one taught by a ghost .Professor Binns had been very old indeed when he had fallen asleep in front of the staff room fire and got up next morning to teach leaving his body behind him .Binns droned on and on while they scribbled down names and dates and got Emeric the Evil and Uric the Oddball mixed up .Professor Flitwick the Charms teacher was a tiny little wizard who had to stand on a pile of books to see over his desk .At the start of their first class he took the roll call and when he reached Harrys name he gave an excited squeak and toppled out of sight .Professor McGonagall was again different .Harry had been quite right to think she wasnt a teacher to cross .Strict and clever she gave them a talking to the moment they sat down in her first class .Transfiguration is some of the most complex and dangerous magic you will learn at Hogwarts she said .Anyone messing around in my class will leave and not come back .You have been warned .Then she changed her desk into a pig and back again .They were all very impressed and couldnt wait to get started but soon realized they werent going to be changing the furniture into animals for a long time .After taking a lot of complicated notes they were each given a match and started trying to turn it into a needle .By the end of the lesson only Hermione Granger had made any difference to her match Professor McGonagall showed the class how it had gone all silver and pointy and gave Hermione a rare smile .The class everyone had really been looking forward to was Defense Against the Dark Arts but Quirrells lessons turned out to be a bit of a joke .His classroom smelled strongly of garlic which everyone said was to ward off a vampire hed met in Romania and was afraid would be coming back to get him one of these days .His turban he told them had been given to him by an African prince as a thankyou for getting rid of a troublesome zombie but they werent sure they believed this story .For one thing when Seamus Finnigan asked eagerly to hear how Quirrell had fought off the zombie Quirrell went pink and started talking about the weather for another they had noticed that a funny smell hung around the turban and the Weasley twins insisted that it was stuffed full of garlic as well so that Quirrell was protected wherever he went .Harry was very relieved to find out that he wasnt miles behind everyone else .Lots of people had come from Muggle families and like him hadnt had any idea that they were witches and wizards .There was so much to learn that even people like Ron didnt have much of a head start .Friday was an important day for Harry and Ron .They finally managed to find their way down to the Great Hall for breakfast without getting lost once .What have we got today ?Harry asked Ron as he poured sugar on his porridge .Double Potions with the Slytherins said Ron .Snapes Head of Slytherin House .They say he always favors them well be able to see if its true .Wish McGonagall favored us said Harry .Professor McGonagall was head of Gryffindor House but it hadnt stopped her from giving them a huge pile of homework the day before .Just then the mail arrived .Harry had gotten used to this by now but it had given him a bit of a shock on the first morning when about a hundred owls had suddenly streamed into the Great Hall during breakfast circling the tables until they saw their owners and dropping letters and packages onto their laps .Hedwig hadnt brought Harry anything so far .She sometimes flew in to nibble his ear and have a bit of toast before going off to sleep in the owlery with the other school owls .This morning however she fluttered down between the marmalade and the sugar bowl and dropped a note onto Harrys plate .Harry tore it open at once .It said in a very untidy scrawl Dear Harry I know you get Friday afternoons off so would you like to come and have a cup of tea with me around three ?I want to hear all about your first week .Send us an answer back with Hedwig .Hagrid Harry borrowed Rons quill scribbled Yes please see you later on the back of the note and sent Hedwig off again .It was lucky that Harry had tea with Hagrid to look forward to because the Potions lesson turned out to be the worst thing that had happened to him so far .At the startofterm banquet Harry had gotten the idea that Professor Snape disliked him .By the end of the first Potions lesson he knew hed been wrong .Snape didnt dislike Harry he hated him .Potions lessons took place down in one of the dungeons .It was colder here than up in the main castle and would have been quite creepy enough without the pickled animals floating in glass jars all around the walls .Snape like Flitwick started the class by taking the roll call and like Flitwick he paused at Harrys name .Ah yes he said softly Harry Potter .Our new celebrity .Draco Malfoy and his friends Crabbe and Goyle sniggered behind their hands .Snape finished calling the names and looked up at the class .His eyes were black like Hagrid s but they had none of Hagrid s warmth .They were cold and empty and made you think of dark tunnels .You are here to learn the subtle science and exact art of potionmaking he began .He spoke in barely more than a whisper but they caught every word like Professor McGonagall Snape had the gift of keeping a class silent without effort .As there is little foolish wand waving here many of you will hardly believe this is magic .I dont expect you will really understand the beauty of the softly simmering cauldron with its shimmering fumes the delicate power of liquids that creep through human veins bewitching the mind ensnaring the senses .I can teach you how to bottle fame brew glory even stopper death if you arent as big a bunch of dunderheads as I usually have to teach .More silence followed this little speech .Harry and Ron exchanged looks with raised eyebrows .Hermione Granger was on the edge of her seat and looked desperate to start proving that she wasnt a dunderhead .Potter !said Snape suddenly .What would I get if I added powdered root of asphodel to an infusion of wormwood ?Powdered root of what to an infusion of what ?Harry glanced at Ron who looked as stumped as he was Hermione s hand had shot into the air .I dont know sir said Harry .Snape s lips curled into a sneer .Tut tut fame clearly isnt everything .He ignored Hermione s hand .Lets try again .Potter where would you look if I told you to find me a bezoar ?Hermione stretched her hand as high into the air as it would go without her leaving her seat but Harry didnt have the faintest idea what a bezoar was .He tried not to look at Malfoy Crabbe and Goyle who were shaking with laughter .I dont know sir .Thought you wouldnt open a book before coming eh Potter ?Harry forced himself to keep looking straight into those cold eyes .He had looked through his books at the Dursleys but did Snape expect him to remember everything in One Thousand Magical Herbs and Fungi ?Snape was still ignoring Hermiones quivering hand .What is the difference Potter between monkshood and wolfsbane ?At this Hermione stood up her hand stretching toward the dungeon ceiling .I dont know said Harry quietly .I think Hermione does though why dont you try her ?A few people laughed Harry caught Seamuss eye and Seamus winked .Snape however was not pleased .Sit down he snapped at Hermione .For your information Potter asphodel and wormwood make a sleeping potion so powerful it is known as the Draught of Living Death .A bezoar is a stone taken from the stomach of a goat and it will save you from most poisons .As for monkshood and wolfsbane they are the same plant which also goes by the name of aconite .Well ?Why arent you all copying that down ?There was a sudden rummaging for quills and parchment .Over the noise Snape said And a point will be taken from Gryffindor House for your cheek Potter .Things didnt improve for the Gryffindors as the Potions lesson continued .Snape put them all into pairs and set them to mixing up a simple potion to cure boils .He swept around in his long black cloak watching them weigh dried nettles and crush snake fangs criticizing almost everyone except Malfoy whom he seemed to like .He was just telling everyone to look at the perfect way Malfoy had stewed his horned slugs when clouds of acid green smoke and a loud hissing filled the dungeon .Neville had somehow managed to melt Seamuss cauldron into a twisted blob and their potion was seeping across the stone floor burning holes in peoples shoes .Within seconds the whole class was standing on their stools while Neville who had been drenched in the potion when the cauldron collapsed moaned in pain as angry red boils sprang up all over his arms and legs .Idiot boy !snarled Snape clearing the spilled potion away with one wave of his wand .I suppose you added the porcupine quills before taking the cauldron off the fire ?Neville whimpered as boils started to pop up all over his nose .Take him up to the hospital wing Snape spat at Seamus .Then he rounded on Harry and Ron who had been working next to Neville .You Potter why didnt you tell him not to add the quills ?Thought hed make you look good if he got it wrong did you ?Thats another point youve lost for Gryffindor .This was so unfair that Harry opened his mouth to argue but Ron kicked him behind their cauldron .Dont push it he muttered Ive heard Snape can turn very nasty .As they climbed the steps out of the dungeon an hour later Harrys mind was racing and his spirits were low .Hed lost two points for Gryffindor in his very first week why did Snape hate him so much ?Cheer up said Ron Snapes always taking points off Fred and George .Can I come and meet Hagrid with you ?At five to three they left the castle and made their way across the grounds .Hagrid lived in a small wooden house on the edge of the forbidden forest .A crossbow and a pair of galoshes were outside the front door .When Harry knocked they heard a frantic scrabbling from inside and several booming barks .Then Hagrid s voice rang out saying Back Fang back .Hagrid s big hairy face appeared in the crack as he pulled the door open .Hang on he said .Back Fang .He let them in struggling to keep a hold on the collar of an enormous black boarhound .There was only one room inside .Hams and pheasants were hanging from the ceiling a copper kettle was boiling on the open fire and in the corner stood a massive bed with a patchwork quilt over it .Make yerselves at home said Hagrid letting go of Fang who bounded straight at Ron and started licking his ears .Like Hagrid Fang was clearly not as fierce as he looked .This is Ron Harry told Hagrid who was pouring boiling water into a large teapot and putting rock cakes onto a plate .Another Weasley eh ?said Hagrid glancing at Rons freckles .I spent half me life chasin yer twin brothers away from the forest .The rock cakes were shapeless lumps with raisins that almost broke their teeth but Harry and Ron pretended to be enjoying them as they told Hagrid all about their first lessons .Fang rested his head on Harrys knee and drooled all over his robes .Harry and Ron were delighted to hear Hagrid call Filch that old git .An as fer that cat Mrs Norris Id like ter introduce her to Fang sometime .Dyeh know every time I go up ter the school she follows me everywhere ?Cant get rid of her Filch puts her up to it .Harry told Hagrid about Snapes lesson .Hagrid like Ron told Harry not to worry about it that Snape liked hardly any of the students .But he seemed to really hate me .Rubbish !said Hagrid .Why should he ?Yet Harry couldnt help thinking that Hagrid didnt quite meet his eyes when he said that .Hows yer brother Charlie ?Hagrid asked Ron .I liked him a lot great with animals .Harry wondered if Hagrid had changed the subject on purpose .While Ron told Hagrid all about Charlies work with dragons Harry picked up a piece of paper that was lying on the table under the tea cozy .It was a cutting from the Daily Prophet GRINGOTTS BREAKIN LATEST Investigations continue into the breakin at Gringotts on 3 1 July widely believed to be the work of Dark wizards or witches unknown .Gringotts goblins today insisted that nothing had been taken .The vault that was searched had in fact been emptied the same day .But were not telling you what was in there so keep your noses out if you know whats good for you said a Gringotts spokesgoblin this afternoon .Harry remembered Ron telling him on the train that someone had tried to rob Gringotts but Ron hadnt mentioned the date .Hagrid !said Harry that Gringotts breakin happened on my birthday !It mightve been happening while we were there !There was no doubt about it Hagrid definitely didnt meet Harrys eyes this time .He grunted and offered him another rock cake .Harry read the story again .The vault that was searched had in fact been emptied earlier that same day .Hagrid had emptied vault seven hundred and thirteen if you could call it emptying taking out that grubby little package .Had that been what the thieves were looking for ?As Harry and Ron walked back to the castle for dinner their pockets weighed down with rock cakes theyd been too polite to refuse Harry thought that none of the lessons hed had so far had given him as much to think about as tea with Hagrid .Had Hagrid collected that package just in time ?Where was it now ?And did Hagrid know something about Snape that he didnt want to tell Harry ?9 THE MIDNIGHT DUEL Harry had never believed he would meet a boy he hated more than Dudley but that was before he met Draco Malfoy .Still firstyear Gryffindors only had Potions with the Slytherins so they didnt have to put up with Malfoy much .Or at least they didnt until they spotted a notice pinned up in the Gryffindor common room that made them all groan .Flying lessons would be starting on Thursday and Gryffindor and Slytherin would be learning together .Typical said Harry darkly .Just what I always wanted .To make a fool of myself on a broomstick in front of Malfoy .He had been looking forward to learning to fly more than anything else .You dont know that youll make a fool of yourself said Ron reasonably .Anyway I know Malfoys always going on about how good he is at Quidditch but I bet thats all talk .Malfoy certainly did talk about flying a lot .He complained loudly about first years never getting on the House Quidditch teams and told long boastful stories that always seemed to end with him narrowly escaping Muggles in helicopters .He wasnt the only one though the way Seamus Finnigan told it hed spent most of his childhood zooming around the countryside on his broomstick .Even Ron would tell anyone whod listen about the time hed almost hit a hang glider on Charlies old broom .Everyone from wizarding families talked about Quidditch constantly .Ron had already had a big argument with Dean Thomas who shared their dormitory about soccer .Ron couldnt see what was exciting about a game with only one ball where no one was allowed to fly .Harry had caught Ron prodding Deans poster of West Ham soccer team trying to make the players move .Neville had never been on a broomstick in his life because his grandmother had never let him near one .Privately Harry felt shed had good reason because Neville managed to have an extraordinary number of accidents even with both feet on the ground .Hermione Granger was almost as nervous about flying as Neville was .This was something you couldnt learn by heart out of a book not that she hadnt tried .At breakfast on Thursday she bored them all stupid with flying tips shed gotten out of a library book called Quidditch Through the Ages .Neville was hanging on to her every word desperate for anything that might help him hang on to his broomstick later but everybody else was very pleased when Hermione s lecture was interrupted by the arrival of the mail .Harry hadnt had a single letter since Hagrids note something that Malfoy had been quick to notice of course .Malfoy s eagle owl was always bringing him packages of sweets from home which he opened gloatingly at the Slytherin table .A barn owl brought Neville a small package from his grandmother .He opened it excitedly and showed them a glass ball the size of a large marble which seemed to be full of white smoke .Its a Remembrall !he explained .Gran knows I forget things this tells you if theres something youve forgotten to do .Look you hold it tight like this and if it turns red oh .His face fell because the Remembrall had suddenly glowed scarlet .youve forgotten something .Neville was trying to remember what hed forgotten when Draco Malfoy who was passing the Gryffindor table snatched the Remembrall out of his hand .Harry and Ron jumped to their feet .They were half hoping for a reason to fight Malfoy but Professor McGonagall who could spot trouble quicker than any teacher in the school was there in a flash .Whats going on ?Malfoys got my Remembrall Professor .Scowling Malfoy quickly dropped the Remembrall back on the table .Just looking he said and he sloped away with Crabbe and Goyle behind him .At threethirty that afternoon Harry Ron and the other Gryffindors hurried down the front steps onto the grounds for their first flying lesson .It was a clear breezy day and the grass rippled under their feet as they marched down the sloping lawns toward a smooth flat lawn on the opposite side of the grounds to the forbidden forest whose trees were swaying darkly in the distance .The Slytherins were already there and so were twenty broomsticks lying in neat lines on the ground .Harry had heard Fred and George Weasley complain about the school brooms saying that some of them started to vibrate if you flew too high or always flew slightly to the left .Their teacher Madam Hooch arrived .She had short gray hair and yellow eyes like a hawk .Well what are you all waiting for ?she barked .Everyone stand by a broomstick .Come on hurry up .Harry glanced down at his broom .It was old and some of the twigs stuck out at odd angles .Stick out your right hand over your broom called Madam Hooch at the front and say ‘Up !UP !everyone shouted .Harrys broom jumped into his hand at once but it was one of the few that did .Hermione Grangers had simply rolled over on the ground and Nevilles hadnt moved at all .Perhaps brooms like horses could tell when you were afraid thought Harry there was a quaver in Nevilles voice that said only too clearly that he wanted to keep his feet on the ground .Madam Hooch then showed them how to mount their brooms without sliding off the end and walked up and down the rows correcting their grips .Harry and Ron were delighted when she told Malfoy hed been doing it wrong for years .Now when I blow my whistle you kick off from the ground hard said Madam Hooch .Keep your brooms steady rise a few feet and then come straight back down by leaning forward slightly .On my whistle three two But Neville nervous and jumpy and frightened of being left on the ground pushed off hard before the whistle had touched Madam Hoochs lips .Come back boy !she shouted but Neville was rising straight up like a cork shot out of a bottle twelve feet twenty feet .Harry saw his scared white face look down at the ground falling away saw him gasp slip sideways off the broom and WHAM a thud and a nasty crack and Neville lay facedown on the grass in a heap .His broomstick was still rising higher and higher and started to drift lazily toward the forbidden forest and out of sight .Madam Hooch was bending over Neville her face as white as his .Broken wrist Harry heard her mutter .Come on boy its all right up you get .She turned to the rest of the class .None of you is to move while I take this boy to the hospital wing !You leave those brooms where they are or youll be out of Hogwarts before you can say ‘Quidditch .Come on dear .Neville his face tearstreaked clutching his wrist hobbled off with Madam Hooch who had her arm around him .No sooner were they out of earshot than Malfoy burst into laughter .Did you see his face the great lump ?The other Slytherins joined in .Shut up Malfoy snapped Parvati Patil .Ooh sticking up for Longbottom ?said Pansy Parkinson a hardfaced Slytherin girl .Never thought youd like fat little crybabies Parvati .Look !said Malfoy darting forward and snatching something out of the grass .Its that stupid thing Longbottoms gran sent him .The Remembrall glittered in the sun as he held it up .Give that here Malfoy said Harry quietly .Everyone stopped talking to watch .Malfoy smiled nastily .I think Ill leave it somewhere for Longbottom to find how about up a tree ?Give it here !Harry yelled but Malfoy had leapt onto his broomstick and taken off .He hadnt been lying he could fly well .Hovering level with the topmost branches of an oak he called Come and get it Potter !Harry grabbed his broom .iVo !shouted Hermione Granger .Madam Hooch told us not to move youll get us all into trouble .Harry ignored her .Blood was pounding in his ears .He mounted the broom and kicked hard against the ground and up up he soared air rushed through his hair and his robes whipped out behind him and in a rush of fierce joy he realized hed found something he could do without being taught this was easy this was wonderful .He pulled his broomstick up a little to take it even higher and heard screams and gasps of girls back on the ground and an admiring whoop from Ron .He turned his broomstick sharply to face Malfoy in midair .Malfoy looked stunned .Give it here Harry called or Ill knock you off that broom !Oh yeah ?said Malfoy trying to sneer but looking worried .Harry knew somehow what to do .He leaned forward and grasped the broom tightly in both hands and it shot toward Malfoy like a javelin .Malfoy only just got out of the way in time Harry made a sharp about face and held the broom steady .A few people below were clapping .No Crabbe and Goyle up here to save your neck Malfoy Harry called .The same thought seemed to have struck Malfoy .Catch it if you can then !he shouted and he threw the glass ball high into the air and streaked back toward the ground .Harry saw as though in slow motion the ball rise up in the air and then start to fall .He leaned forward and pointed his broom handle down next second he was gathering speed in a steep dive racing the ball wind whistled in his ears mingled with the screams of people watching he stretched out his hand a foot from the ground he caught it just in time to pull his broom straight and he toppled gently onto the grass with the Remembrall clutched safely in his fist .HARRY POTTER !His heart sank faster than hed just dived .Professor McGonagall was running toward them .He got to his feet trembling .Never in all my time at Hogwarts Professor McGonagall was almost speechless with shock and her glasses flashed furiously how dare you might have broken your neck It wasnt his fault Professor Be quiet Miss Patil But Malfoy Thats enough Mr Weasley .Potter follow me now .Harry caught sight of Malfoy Crabbe and Goyles triumphant faces as he left walking numbly in Professor McGonagalls wake as she strode toward the castle .He was going to be expelled he just knew it .He wanted to say something to defend himself but there seemed to be something wrong with his voice .Professor McGonagall was sweeping along without even looking at him he had to jog to keep up .Now hed done it .He hadnt even lasted two weeks .Hed be packing his bags in ten minutes .What would the Dursleys say when he turned up on the doorstep ?Up the front steps up the marble staircase inside and still Professor McGonagall didnt say a word to him .She wrenched open doors and marched along corridors with Harry trotting miserably behind her .Maybe she was taking him to Dumbledore .He thought of Hagrid expelled but allowed to stay on as gamekeeper .Perhaps he could be Hagrids assistant .His stomach twisted as he imagined it watching Ron and the others becoming wizards while he stumped around the grounds carrying Hagrids bag .Professor McGonagall stopped outside a classroom .She opened the door and poked her head inside .Excuse me Professor Flitwick could I borrow Wood for a moment ?Wood ?thought Harry bewildered was Wood a cane she was going to use on him ?But Wood turned out to be a person a burly fifthyear boy who came out of Flitwicks class looking confused .Follow me you two said Professor McGonagall and they marched on up the corridor Wood looking curiously at Harry .In here .Professor McGonagall pointed them into a classroom that was empty except for Peeves who was busy writing rude words on the blackboard .Out Peeves !she barked .Peeves threw the chalk into a bin which clanged loudly and he swooped out cursing .Professor McGonagall slammed the door behind him and turned to face the two boys .Potter this is Oliver Wood .Wood Ive found you a Seeker .Woods expression changed from puzzlement to delight .Are you serious Professor ?Absolutely said Professor McGonagall crisply .The boys a natural .Ive never seen anything like it .Was that your first time on a broomstick Potter ?Harry nodded silently .He didnt have a clue what was going on but he didnt seem to be being expelled and some of the feeling started coming back to his legs .He caught that thing in his hand after a fiftyfoot dive Professor McGonagall told Wood .Didnt even scratch himself .Charlie Weasley couldnt have done it .Wood was now looking as though all his dreams had come true at once .Ever seen a game of Quidditch Potter ?he asked excitedly .Woods captain of the Gryffindor team Professor McGonagall explained .Hes just the build for a Seeker too said Wood now walking around Harry and staring at him .Light speedy well have to get him a decent broom Professor a Nimbus Two Thousand or a Cleansweep Seven Id say .I shall speak to Professor Dumbledore and see if we cant bend the firstyear rule .Heaven knows we need a better team than last year .Flattened in that last match by Slytherin I couldnt look Severus Snape in the face for weeks .Professor McGonagall peered sternly over her glasses at Harry .I want to hear youre training hard Potter or I may change my mind about punishing you .Then she suddenly smiled .Your father would have been proud she said .He was an excellent Quidditch player himself .Youre joking .It was dinnertime .Harry had just finished telling Ron what had happened when hed left the grounds with Professor McGonagall .Ron had a piece of steak and kidney pie halfway to his mouth but hed forgotten all about it .Seeker ?he said .But first years never you must be the youngest House player in about a century said Harry shoveling pie into his mouth .He felt particularly hungry after the excitement of the afternoon .Wood told me .Ron was so amazed so impressed he just sat and gaped at Harry .I start training next week said Harry .Only dont tell anyone Wood wants to keep it a secret .Fred and George Weasley now came into the hall spotted Harry and hurried over .Well done said George in a low voice .Wood told us .Were on the team too Beaters .I tell you were going to win that Quidditch Cup for sure this year said Fred .We havent won since Charlie left but this years team is going to be brilliant .You must be good Harry Wood was almost skipping when he told us .Anyway weve got to go Lee Jordan reckons hes found a new secret passageway out of the school .Bet its that one behind the statue of Gregory the Smarmy that we found in our first week .See you .Fred and George had hardly disappeared when someone far less welcome turned up Malfoy flanked by Crabbe and Goyle .Having a last meal Potter ?When are you getting the train back to the Muggles ?Youre a lot braver now that youre back on the ground and youve got your little friends with you said Harry coolly .There was of course nothing at all little about Crabbe and Goyle but as the High Table was full of teachers neither of them could do more than crack their knuckles and scowl .Id take you on anytime on my own said Malfoy .Tonight if you want .Wizards duel .Wands only no contact .Whats the matter ?Never heard of a wizards duel before I suppose ?Of course he has said Ron wheeling around .Im his second whos yours ?Malfoy looked at Crabbe and Goyle sizing them up .Crabbe he said .Midnight all right ?Well meet you in the trophy room thats always unlocked .When Malfoy had gone Ron and Harry looked at each other .What is a wizards duel ?said Harry .And what do you mean youre my second ?Well a seconds there to take over if you die said Ron casually getting started at last on his cold pie .Catching the look on Harrys face he added quickly But people only die in proper duels you know with real wizards .The most you and Malfoyll be able to do is send sparks at each other .Neither of you knows enough magic to do any real damage .I bet he expected you to refuse anyway .And what if I wave my wand and nothing happens ?Throw it away and punch him on the nose Ron suggested .Excuse me .They both looked up .It was Hermione Granger .Cant a person eat in peace in this place ?said Ron .Hermione ignored him and spoke to Harry .I couldnt help overhearing what you and Malfoy were saying Bet you could Ron muttered .and you mustnt go wandering around the school at night think of the points youll lose Gryffindor if youre caught and youre bound to be .Its really very selfish of you .And its really none of your business said Harry .Goodbye said Ron .All the same it wasnt what youd call the perfect end to the day Harry thought as he lay awake much later listening to Dean and Seamus falling asleep Neville wasnt back from the hospital wing .Ron had spent all evening giving him advice such as If he tries to curse you youd better dodge it because I cant remember how to block them .There was a very good chance they were going to get caught by Filch or Mrs Norris and Harry felt he was pushing his luck breaking another school rule today .On the other hand Malfoys sneering face kept looming up out of the darkness this was his big chance to beat Malfoy facetoface .He couldnt miss it .Halfpast eleven Ron muttered at last wed better go .They pulled on their bathrobes picked up their wands and crept across the tower room down the spiral staircase and into the Gryffindor common room .A few embers were still glowing in the fireplace turning all the armchairs into hunched black shadows .They had almost reached the portrait hole when a voice spoke from the chair nearest them I cant believe youre going to do this Harry .A lamp flickered on .It was Hermione Granger wearing a pink bathrobe and a frown .You !said Ron furiously .Go back to bed !I almost told your brother Hermione snapped Percy hes a prefect hed put a stop to this .Harry couldnt believe anyone could be so interfering .Come on he said to Ron .He pushed open the portrait of the Fat Lady and climbed through the hole .Hermione wasnt going to give up that easily .She followed Ron through the portrait hole hissing at them like an angry goose .Dont you care about Gryffindor do you only care about yourselves dont want Slytherin to win the House Cup and youll lose all the points I got from Professor McGonagall for knowing about Switching Spells .Go away .All right but I warned you you just remember what I said when youre on the train home tomorrow youre so But what they were they didnt find out .Hermione had turned to the portrait of the Fat Lady to get back inside and found herself facing an empty painting .The Fat Lady had gone on a nighttime visit and Hermione was locked out of Gryffindor Tower .Now what am I going to do ?she asked shrilly .Thats your problem said Ron .Weve got to go were going to be late .They hadnt even reached the end of the corridor when Hermione caught up with them .Im coming with you she said .You are not .Dyou think Im going to stand out here and wait for Filch to catch me ?If he finds all three of us Ill tell him the truth that I was trying to stop you and you can back me up .Youve got some nerve said Ron loudly .Shut up both of you !said Harry sharply .I heard something .It was a sort of snuffling .Mrs Norris ?breathed Ron squinting through the dark .It wasnt Mrs Norris .It was Neville .He was curled up on the floor fast asleep but jerked suddenly awake as they crept nearer .Thank goodness you found me !Ive been out here for hours I couldnt remember the new password to get in to bed .Keep your voice down Neville .The passwords ‘Pig snout but it wont help you now the Fat Ladys gone off somewhere .Hows your arm ?said Harry .Fine said Neville showing them .Madam Pomfrey mended it in about a minute .Good well look Neville weve got to be somewhere well see you later Dont leave me !said Neville scrambling to his feet I dont want to stay here alone the Bloody Barons been past twice already .Ron looked at his watch and then glared furiously at Hermione and Neville .If either of you get us caught Ill never rest until Ive learned that Curse of the Bogies Quirrell told us about and used it on you .Hermione opened her mouth perhaps to tell Ron exactly how to use the Curse of the Bogies but Harry hissed at her to be quiet and beckoned them all forward .They flitted along corridors striped with bars of moonlight from the high windows .At every turn Harry expected to run into Filch or Mrs Norris but they were lucky .They sped up a staircase to the third floor and tiptoed toward the trophy room .Malfoy and Crabbe werent there yet .The crystal trophy cases glimmered where the moonlight caught them .Cups shields plates and statues winked silver and gold in the darkness .They edged along the walls keeping their eyes on the doors at either end of the room .Harry took out his wand in case Malfoy leapt in and started at once .The minutes crept by .Hes late maybe hes chickened out Ron whispered .Then a noise in the next room made them jump .Harry had only just raised his wand when they heard someone speak and it wasnt Malfoy .Sniff around my sweet they might be lurking in a corner .It was Filch speaking to Mrs Norris .Horrorstruck Harry waved madly at the other three to follow him as quickly as possible they scurried silently toward the door away from Filchs voice .Nevilles robes had barely whipped round the corner when they heard Filch enter the trophy room .Theyre in here somewhere they heard him mutter probably hiding .This way !Harry mouthed to the others and petrified they began to creep down a long gallery full of suits of armor .They could hear Filch getting nearer .Neville suddenly let out a frightened squeak and broke into a run he tripped grabbed Ron around the waist and the pair of them toppled right into a suit of armor .The clanging and crashing were enough to wake the whole castle .RUN !Harry yelled and the four of them sprinted down the gallery not looking back to see whether Filch was following they swung around the doorpost and galloped down one corridor then another Harry in the lead without any idea where they were or where they were going they ripped through a tapestry and found themselves in a hidden passageway hurtled along it and came out near their Charms classroom which they knew was miles from the trophy room .I think weve lost him Harry panted leaning against the cold wall and wiping his forehead .Neville was bent double wheezing and spluttering .I told you Hermione gasped clutching at the stitch in her chest I told you .Weve got to get back to Gryffindor Tower said Ron quickly as possible .Malfoy tricked you Hermione said to Harry .You realize that dont you ?He was never going to meet you Filch knew someone was going to be in the trophy room Malfoy must have tipped him off .Harry thought she was probably right but he wasnt going to tell her that .Lets go .It wasnt going to be that simple .They hadnt gone more than a dozen paces when a doorknob rattled and something came shooting out of a classroom in front of them .It was Peeves .He caught sight of them and gave a squeal of delight .Shut up Peeves please youll get us thrown out .Peeves cackled .Wandering around at midnight Ickle Firsties ?Tut tut tut .Naughty naughty youll get caughty .Not if you dont give us away Peeves please .Should tell Filch I should said Peeves in a sanity voice but his eyes glittered wickedly .Its for your own good you know .Get out of the way snapped Ron taking a swipe at Peeves this was a big mistake .STUDENTS OUT OF BED !Peeves bellowed STUDENTS OUT OF BED DOWN THE CHARMS CORRIDOR !Ducking under Peeves they ran for their lives right to the end of the corridor where they slammed into a door and it was locked .This is it !Ron moaned as they pushed helplessly at the door Were done for !This is the end !They could hear footsteps Filch running as fast as he could toward Peeves s shouts .Oh move over Hermione snarled .She grabbed Harrys wand tapped the lock and whispered Alohomora The lock clicked and the door swung open they piled through it shut it quickly and pressed their ears against it listening .Which way did they go Peeves ?Filch was saying .Quick tell me .Say ‘please .Dont mess with me Peeves now where did they go ?Shant say nothing if you dont say please said Peeves in his annoying singsong voice .All right please .NOTHING !Ha haa !Told you I wouldnt say nothing if you didnt say please !Ha ha !Haa !And they heard the sound of Peeves whooshing away and Filch cursing in rage .He thinks this door is locked Harry whispered .I think well be okay get off Neville !For Neville had been tugging on the sleeve of Harrys bathrobe for the last minute .What ?Harry turned around and saw quite clearly what .For a moment he was sure hed walked into a nightmare this was too much on top of everything that had happened so far .They werent in a room as he had supposed .They were in a corridor .The forbidden corridor on the third floor .And now they knew why it was forbidden .They were looking straight into the eyes of a monstrous dog a dog that filled the whole space between ceiling and floor .It had three heads .Three pairs of rolling mad eyes three noses twitching and quivering in their direction three drooling mouths saliva hanging in slippery ropes from yellowish fangs .It was standing quite still all six eyes staring at them and Harry knew that the only reason they werent already dead was that their sudden appearance had taken it by surprise but it was quickly getting over that there was no mistaking what those thunderous growls meant .Harry groped for the doorknob between Filch and death hed take Filch .They fell backward Harry slammed the door shut and they ran they almost flew back down the corridor .Filch must have hurried off to look for them somewhere else because they didnt see him anywhere but they hardly cared all they wanted to do was put as much space as possible between them and that monster .They didnt stop running until they reached the portrait of the Fat Lady on the seventh floor .Where on earth have you all been ?she asked looking at their bathrobes hanging off their shoulders and their flushed sweaty faces .Never mind that pig snout pig snout panted Harry and the portrait swung forward .They scrambled into the common room and collapsed trembling into armchairs .It was a while before any of them said anything .Neville indeed looked as if hed never speak again .What do they think theyre doing keeping a thing like that locked up in a school ?said Ron finally .If any dog needs exercise that one does .Hermione had got both her breath and her bad temper back again .You dont use your eyes any of you do you ?she snapped .Didnt you see what it was standing on ?The floor ?Harry suggested .I wasnt looking at its feet I was too busy with its heads .No not the floor .It was standing on a trapdoor .Its obviously guarding something .She stood up glaring at them .I hope youre pleased with yourselves .We could all have been killed or worse expelled .Now if you dont mind Im going to bed .Ron stared after her his mouth open .No we dont mind he said .Youd think we dragged her along wouldnt you ?But Hermione had given Harry something else to think about as he climbed back into bed .The dog was guarding something .What had Hagrid said ?Gringotts was the safest place in the world for something you wanted to hide except perhaps Hogwarts .It looked as though Harry had found out where the grubby little package from vault seven hundred and thirteen was .10 HALLOWEEN Malfoy couldnt believe his eyes when he saw that Harry and Ron were still at Hogwarts the next day looking tired but perfectly cheerful .Indeed by the next morning Harry and Ron thought that meeting the threeheaded dog had been an excellent adventure and they were quite keen to have another one .In the meantime Harry filled Ron in about the package that seemed to have been moved from Gringotts to Hogwarts and they spent a lot of time wondering what could possibly need such heavy protection .Its either really valuable or really dangerous said Ron .Or both said Harry .But as all they knew for sure about the mysterious object was that it was about two inches long they didnt have much chance of guessing what it was without further clues .Neither Neville nor Hermione showed the slightest interest in what lay underneath the dog and the trapdoor .All Neville cared about was never going near the dog again .Hermione was now refusing to speak to Harry and Ron but she was such a bossy knowitall that they saw this as an added bonus .All they really wanted now was a way of getting back at Malfoy and to their great delight just such a thing arrived in the mail about a week later .As the owls flooded into the Great Hall as usual everyones attention was caught at once by a long thin package carried by six large screech owls .Harry was just as interested as everyone else to see what was in this large parcel and was amazed when the owls soared down and dropped it right in front of him knocking his bacon to the floor .They had hardly fluttered out of the way when another owl dropped a letter on top of the parcel .Harry ripped open the letter first which was lucky because it said DO NOT OPEN THE PARCEL AT THE TABLE .It contains your new Nimbus Two Thousand but I dont want everybody knowing youve got a broomstick or theyll all want one .Oliver Wood will meet you tonight on the Quidditch field at seven oclock for your first training session .Professor M .McGonagall Harry had difficulty hiding his glee as he handed the note to Ron to read .A Nimbus Two Thousand !Ron moaned enviously .Ive never even touched one .They left the hall quickly wanting to unwrap the broomstick in private before their first class but halfway across the entrance hall they found the way upstairs barred by Crabbe and Goyle .Malfoy seized the package from Harry and felt it .Thats a broomstick he said throwing it back to Harry with a mixture of jealousy and spite on his face .Youll be in for it this time Potter first years arent allowed them .Ron couldnt resist it .Its not any old broomstick he said its a Nimbus Two Thousand .What did you say youve got at home Malfoy a Comet Two Sixty ?Ron grinned at Harry .Comets look flashy but theyre not in the same league as the Nimbus .What would you know about it Weasley you couldnt afford half the handle Malfoy snapped back .I suppose you and your brothers have to save up twig by twig .Before Ron could answer Professor Flitwick appeared at Malfoys elbow .Not arguing I hope boys ?he squeaked .Potters been sent a broomstick Professor said Malfoy quickly .Yes yes thats right said Professor Flitwick beaming at Harry .Professor McGonagall told me all about the special circumstances Potter .And what model is it ?A Nimbus Two Thousand sir said Harry fighting not to laugh at the look of horror on Malfoys face .And its really thanks to Malfoy here that Ive got it he added .Harry and Ron headed upstairs smothering their laughter at Malfoys obvious rage and confusion .Well its true Harry chortled as they reached the top of the marble staircase If he hadnt stolen Nevilles Remembrall I wouldnt be on the team .So I suppose you think thats a reward for breaking rules ?came an angry voice from just behind them .Hermione was stomping up the stairs looking disapprovingly at the package in Harrys hand .I thought you werent speaking to us ?said Harry .Yes dont stop now said Ron its doing us so much good .Hermione marched away with her nose in the air .Harry had a lot of trouble keeping his mind on his lessons that day .It kept wandering up to the dormitory where his new broomstick was lying under his bed or straying off to the Quidditch field where hed be learning to play that night .He bolted his dinner that evening without noticing what he was eating and then rushed upstairs with Ron to unwrap the Nimbus Two Thousand at last .Wow Ron sighed as the broomstick rolled onto Harrys bedspread .Even Harry who knew nothing about the different brooms thought it looked wonderful .Sleek and shiny with a mahogany handle it had a long tail of neat straight twigs and Nimbus Two Thousand written in gold near the top .As seven oclock drew nearer Harry left the castle and set off in the dusk toward the Quidditch field .Hed never been inside the stadium before .Hundreds of seats were raised in stands around the field so that the spectators were high enough to see what was going on .At either end of the field were three golden poles with hoops on the end .They reminded Harry of the little plastic sticks Muggle children blew bubbles through except that they were fifty feet high .Too eager to fly again to wait for Wood Harry mounted his broomstick and kicked off from the ground .What a feeling he swooped in and out of the goal posts and then sped up and down the field .The Nimbus Two Thousand turned wherever he wanted at his lightest touch .Hey Potter come down !Oliver Wood had arrived .He was carrying a large wooden crate under his arm .Harry landed next to him .Very nice said Wood his eyes glinting .I see what McGonagall meant .you really are a natural .Im just going to teach you the rules this evening then youll be joining team practice three times a week .He opened the crate .Inside were four differentsized balls .Right said Wood .Now Quidditch is easy enough to understand even if its not too easy to play .There are seven players on each side .Three of them are called Chasers .Three Chasers Harry repeated as Wood took out a bright red ball about the size of a soccer ball .This balls called the Quaffle said Wood .The Chasers throw the Quaffle to each other and try and get it through one of the hoops to score a goal .Ten points every time the Quaffle goes through one of the hoops .Follow me ?The Chasers throw the Quaffle and put it through the hoops to score Harry recited .So thats sort of like basketball on broomsticks with six hoops isnt it ?Whats basketball ?said Wood curiously .Never mind said Harry quickly .Now theres another player on each side whos called the Keeper Im Keeper for Gryffindor .I have to fly around our hoops and stop the other team from scoring .Three Chasers one Keeper said Harry who was determined to remember it all .And they play with the Quaffle .Okay got that .So what are they for ?He pointed at the three balls left inside the box .Ill show you now said Wood .Take this .He handed Harry a small club a bit like a short baseball bat .Im going to show you what the Bludgers do Wood said .These two are the Bludgers .He showed Harry two identical balls jet black and slightly smaller than the red Quaffle .Harry noticed that they seemed to be straining to escape the straps holding them inside the box .Stand back Wood warned Harry .He bent down and freed one of the Bludgers .At once the black ball rose high in the air and then pelted straight at Harrys face .Harry swung at it with the bat to stop it from breaking his nose and sent it zigzagging away into the air it zoomed around their heads and then shot at Wood who dived on top of it and managed to pin it to the ground .See ?Wood panted forcing the struggling Bludger back into the crate and strapping it down safely .The Bludgers rocket around trying to knock players off their brooms .Thats why you have two Beaters on each team the Weasley twins are ours its their job to protect their side from the Bludgers and try and knock them toward the other team .So think youve got all that ?Three Chasers try and score with the Quaffle the Keeper guards the goal posts the Beaters keep the Bludgers away from their team Harry reeled off .Very good said Wood .Er have the Bludgers ever killed anyone ?Harry asked hoping he sounded offhand .Never at Hogwarts .Weve had a couple of broken jaws but nothing worse than that .Now the last member of the team is the Seeker .Thats you .And you dont have to worry about the Quaffle or the Bludgers unless they crack my head open .Dont worry the Weasleys are more than a match for the Bludgers I mean theyre like a pair of human Bludgers themselves .Wood reached into the crate and took out the fourth and last ball .Compared with the Quaffle and the Bludgers it was tiny about the size of a large walnut .It was bright gold and had little fluttering silver wings .This said Wood is the Golden Snitch and its the most important ball of the lot .Its very hard to catch because its so fast and difficult to see .Its the Seekers job to catch it .Youve got to weave in and out of the Chasers Beaters Bludgers and Quaffle to get it before the other teams Seeker because whichever Seeker catches the Snitch wins his team an extra hundred and fifty points so they nearly always win .Thats why Seekers get fouled so much .A game of Quidditch only ends when the Snitch is caught so it can go on for ages I think the record is three months they had to keep bringing on substitutes so the players could get some sleep .Well thats it any questions ?Harry shook his head .He understood what he had to do all right it was doing it that was going to be the problem .We wont practice with the Snitch yet said Wood carefully shutting it back inside the crate its too dark we might lose it .Lets try you out with a few of these .He pulled a bag of ordinary golf balls out of his pocket and a few minutes later he and Harry were up in the air Wood throwing the golf balls as hard as he could in every direction for Harry to catch .Harry didnt miss a single one and Wood was delighted .After half an hour night had really fallen and they couldnt carry on .That Quidditch Cupll have our name on it this year said Wood happily as they trudged back up to the castle .I wouldnt be surprised if you turn out better than Charlie Weasley and he could have played for England if he hadnt gone off chasing dragons .Perhaps it was because he was now so busy what with Quidditch practice three evenings a week on top of all his homework but Harry could hardly believe it when he realized that hed already been at Hogwarts two months .The castle felt more like home than Privet Drive ever had .His lessons too were becoming more and more interesting now that they had mastered the basics .On Halloween morning they woke to the delicious smell of baking pumpkin wafting through the corridors .Even better Professor Flitwick announced in Charms that he thought they were ready to start making objects fly something they had all been dying to try since theyd seen him make Nevilles toad zoom around the classroom .Professor Flitwick put the class into pairs to practice .Harrys partner was Seamus Finnigan which was a relief because Neville had been trying to catch his eye .Ron however was to be working with Hermione Granger .It was hard to tell whether Ron or Hermione was angrier about this .She hadnt spoken to either of them since the day Harrys broomstick had arrived .Now dont forget that nice wrist movement weve been practicing !squeaked Professor Flitwick perched on top of his pile of books as usual .Swish and flick remember swish and flick .And saying the magic words properly is very important too never forget Wizard Baruffio who said ‘s instead of ‘f and found himself on the floor with a buffalo on his chest .It was very difficult .Harry and Seamus swished and flicked but the feather they were supposed to be sending skyward just lay on the desktop .Seamus got so impatient that he prodded it with his wand and set fire to it Harry had to put it out with his hat .Ron at the next table wasnt having much more luck .Wingardium Leviosal he shouted waving his long arms like a windmill .Youre saying it wrong Harry heard Hermione snap .Its Winggardium Leviosa make the ‘gar nice and long .You do it then if youre so clever Ron snarled .Hermione rolled up the sleeves of her gown flicked her wand and said Wingardium LeviosaV Their feather rose off the desk and hovered about four feet above their heads .Oh well done !cried Professor Flitwick clapping .Everyone see here Miss Grangers done it !Ron was in a very bad mood by the end of the class .Its no wonder no one can stand her he said to Harry as they pushed their way into the crowded corridor shes a nightmare honestly .Someone knocked into Harry as they hurried past him .It was Hermione .Harry caught a glimpse of her face and was startled to see that she was in tears .I think she heard you .So ?said Ron but he looked a bit uncomfortable .She mustve noticed shes got no friends .Hermione didnt turn up for the next class and wasnt seen all afternoon .On their way down to the Great Hall for the Halloween feast Harry and Ron overheard Parvati Patil telling her friend Lavender that Hermione was crying in the girls bathroom and wanted to be left alone .Ron looked still more awkward at this but a moment later they had entered the Great Hall where the Halloween decorations put Hermione out of their minds .A thousand live bats fluttered from the walls and ceiling while a thousand more swooped over the tables in low black clouds making the candles in the pumpkins stutter .The feast appeared suddenly on the golden plates as it had at the startofterm banquet .Harry was just helping himself to a baked potato when Professor Quirrell came sprinting into the hall his turban askew and terror on his face .Everyone stared as he reached Professor Dumbledores chair slumped against the table and gasped Troll in the dungeons thought you ought to know .He then sank to the floor in a dead faint .There was an uproar .It took several purple firecrackers exploding from the end of Professor Dumbledores wand to bring silence .Prefects he rumbled lead your Houses back to the dormitories immediately !Percy was in his element .Follow me !Stick together first years !No need to fear the troll if you follow my orders !Stay close behind me now .Make way first years coming through !Excuse me Im a prefect !How could a troll get in ?Harry asked as they climbed the stairs .Dont ask me theyre supposed to be really stupid said Ron .Maybe Peeves let it in for a Halloween joke .They passed different groups of people hurrying in different directions .As they jostled their way through a crowd of confused Hufflepuffs Harry suddenly grabbed Rons arm .Ive just thought Hermione .What about her ?She doesnt know about the troll .Ron bit his lip .Oh all right he snapped .But Percyd better not see us .Ducking down they joined the Hufflepuffs going the other way slipped down a deserted side corridor and hurried off toward the girls bathroom .They had just turned the corner when they heard quick footsteps behind them .Percy !hissed Ron pulling Harry behind a large stone griffin .Peering around it however they saw not Percy but Snape .He crossed the corridor and disappeared from view .Whats he doing ?Harry whispered .Why isnt he down in the dungeons with the rest of the teachers ?Search me .Quietly as possible they crept along the next corridor after Snape s fading footsteps .Hes heading for the third floor Harry said but Ron held up his hand .Can you smell something ?Harry sniffed and a foul stench reached his nostrils a mixture of old socks and the kind of public toilet no one seems to clean .And then they heard it a low grunting and the shuffling footfalls of gigantic feet .Ron pointed at the end of a passage to the left something huge was moving toward them .They shrank into the shadows and watched as it emerged into a patch of moonlight .It was a horrible sight .Twelve feet tall its skin was a dull granite gray its great lumpy body like a boulder with its small bald head perched on top like a coconut .It had short legs thick as tree trunks with flat horny feet .The smell coming from it was incredible .It was holding a huge wooden club which dragged along the floor because its arms were so long .The troll stopped next to a doorway and peered inside .It waggled its long ears making up its tiny mind then slouched slowly into the room .The keys in the lock Harry muttered .We could lock it in .Good idea said Ron nervously .They edged toward the open door mouths dry praying the troll wasnt about to come out of it .With one great leap Harry managed to grab the key slam the door and lock it .Yes !Flushed with their victory they started to run back up the passage but as they reached the corner they heard something that made their hearts stop a high petrified scream and it was coming from the chamber theyd just chained up .Oh no said Ron pale as the Bloody Baron .Its the girls bathroom !Harry gasped .Hermionel they said together .It was the last thing they wanted to do but what choice did they have ?Wheeling around they sprinted back to the door and turned the key fumbling in their panic .Harry pulled the door open and they ran inside .Hermione Granger was shrinking against the wall opposite looking as if she was about to faint .The troll was advancing on her knocking the sinks off the walls as it went .Confuse it !Harry said desperately to Ron and seizing a tap he threw it as hard as he could against the wall .The troll stopped a few feet from Hermione .It lumbered around blinking stupidly to see what had made the noise .Its mean little eyes saw Harry .It hesitated then made for him instead lifting its club as it went .Oy peabrain !yelled Ron from the other side of the chamber and he threw a metal pipe at it .The troll didnt even seem to notice the pipe hitting its shoulder but it heard the yell and paused again turning its ugly snout toward Ron instead giving Harry time to run around it .Come on run run Harry yelled at Hermione trying to pull her toward the door but she couldnt move she was still flat against the wall her mouth open with terror .The shouting and the echoes seemed to be driving the troll berserk .It roared again and started toward Ron who was nearest and had no way to escape .Harry then did something that was both very brave and very stupid He took a great running jump and managed to fasten his arms around the trolls neck from behind .The troll couldnt feel Harry hanging there but even a troll will notice if you stick a long bit of wood up its nose and Harrys wand had still been in his hand when hed jumped it had gone straight up one of the trolls nostrils .Howling with pain the troll twisted and flailed its club with Harry clinging on for dear life any second the troll was going to rip him off or catch him a terrible blow with the club .Hermione had sunk to the floor in fright Ron pulled out his own wand not knowing what he was going to do he heard himself cry the first spell that came into his head Wingardium Leviosal The club flew suddenly out of the trolls hand rose high high up into the air turned slowly over and dropped with a sickening crack onto its owners head .The troll swayed on the spot and then fell flat on its face with a thud that made the whole room tremble .Harry got to his feet .He was shaking and out of breath .Ron was standing there with his wand still raised staring at what he had done .It was Hermione who spoke first .Is it dead ?I dont think so said Harry I think its just been knocked out .He bent down and pulled his wand out of the trolls nose .It was covered in what looked like lumpy gray glue .Urgh troll boogers .He wiped it on the trolls trousers .A sudden slamming and loud footsteps made the three of them look up .They hadnt realized what a racket they had been making but of course someone downstairs must have heard the crashes and the trolls roars .A moment later Professor McGonagall had come bursting into the room closely followed by Snape with Quirrell bringing up the rear .Quirrell took one look at the troll let out a faint whimper and sat quickly down on a toilet clutching his heart .Snape bent over the troll .Professor McGonagall was looking at Ron and Harry .Harry had never seen her look so angry .Her lips were white .Hopes of winning fifty points for Gryffindor faded quickly from Harrys mind .What on earth were you thinking of ?said Professor McGonagall with cold fury in her voice .Harry looked at Ron who was still standing with his wand in the air .Youre lucky you werent killed .Why arent you in your dormitory ?Snape gave Harry a swift piercing look .Harry looked at the floor .He wished Ron would put his wand down .Then a small voice came out of the shadows .Please Professor McGonagall they were looking for me .Miss Granger !Hermione had managed to get to her feet at last .I went looking for the troll because I I thought I could deal with it on my own you know because Ive read all about them .Ron dropped his wand .Hermione Granger telling a downright lie to a teacher ?If they hadnt found me Id be dead now .Harry stuck his wand up its nose and Ron knocked it out with its own club .They didnt have time to come and fetch anyone .It was about to finish me off when they arrived .Harry and Ron tried to look as though this story wasnt new to them .Well in that case .said Professor McGonagall staring at the three of them Miss Granger you foolish girl how could you think of tackling a mountain troll on your own ?Hermione hung her head .Harry was speechless .Hermione was the last person to do anything against the rules and here she was pretending she had to get them out of trouble .It was as if Snape had started handing out sweets .Miss Granger five points will be taken from Gryffindor for this said Professor McGonagall .Im very disappointed in you .If youre not hurt at all youd better get off to Gryffindor Tower .Students are finishing the feast in their Houses .Hermione left .Professor McGonagall turned to Harry and Ron .Well I still say you were lucky but not many first years could have taken on a fullgrown mountain troll .You each win Gryffindor five points .Professor Dumbledore will be informed of this .You may go .They hurried out of the chamber and didnt speak at all until they had climbed two floors up .It was a relief to be away from the smell of the troll quite apart from anything else .We should have gotten more than ten points Ron grumbled .Five you mean once shes taken off Hermione s .Good of her to get us out of trouble like that Ron admitted .Mind you we did save her .She might not have needed saving if we hadnt locked the thing in with her Harry reminded him .They had reached the portrait of the Fat Lady .Pig snout they said and entered .The common room was packed and noisy .Everyone was eating the food that had been sent up .Hermione however stood alone by the door waiting for them .There was a very embarrassed pause .Then none of them looking at each other they all said Thanks and hurried off to get plates .But from that moment on Hermione Granger became their friend .There are some things you cant share without ending up liking each other and knocking out a twelvefoot mountain troll is one of them .QUIDDITCH As they entered November the weather turned very cold .The mountains around the school became icy gray and the lake like chilled steel .Every morning the ground was covered in frost .Hagrid could be seen from the upstairs windows defrosting broomsticks on the Quidditch field bundled up in a long moleskin overcoat rabbit fur gloves and enormous beaverskin boots .The Quidditch season had begun .On Saturday Harry would be playing in his first match after weeks of training Gryffindor versus Slytherin .If Gryffindor won they would move up into second place in the House Championship .Hardly anyone had seen Harry play because Wood had decided that as their secret weapon Harry should be kept well secret .But the news that he was playing Seeker had leaked out somehow and Harry didnt know which was worse people telling him hed be brilliant or people telling him theyd be running around underneath him holding a mattress .It was really lucky that Harry now had Hermione as a friend .He didnt know how hed have gotten through all his homework without her what with all the last minute Quidditch practice Wood was making them do .She had also lent him Quidditch Through the Ages which turned out to be a very interesting read .Harry learned that there were seven hundred ways of committing a Quidditch foul and that all of them had happened during a World Cup match in 1473 that Seekers were usually the smallest and fastest players and that most serious Quidditch accidents seemed to happen to them that although people rarely died playing Quidditch referees had been known to vanish and turn up months later in the Sahara Desert .Hermione had become a bit more relaxed about breaking rules since Harry and Ron had saved her from the mountain troll and she was much nicer for it .The day before Harrys first Quidditch match the three of them were out in the freezing courtyard during break and she had conjured them up a bright blue fire that could be carried around in a jam jar .They were standing with their backs to it getting warm when Snape crossed the yard .Harry noticed at once that Snape was limping .Harry Ron and Hermione moved closer together to block the fire from view they were sure it wouldnt be allowed .Unfortunately something about their guilty faces caught Snapes eye .He limped over .He hadnt seen the fire but he seemed to be looking for a reason to tell them off anyway .Whats that youve got there Potter ?It was Quidditch Through the Ages .Harry showed him .Library books are not to be taken outside the school said Snape .Give it to me .Five points from Gryffindor .Hes just made that rule up Harry muttered angrily as Snape limped away .Wonder whats wrong with his leg ?Dunno but I hope its really hurting him said Ron bitterly .The Gryffindor common room was very noisy that evening .Harry Ron and Hermione sat together next to a window .Hermione was checking Harry and Rons Charms homework for them .She would never let them copy How will you learn ?but by asking her to read it through they got the right answers anyway .Harry felt restless .He wanted Quidditch Through the Ages back to take his mind off his nerves about tomorrow .Why should he be afraid of Snape ?Getting up he told Ron and Hermione he was going to ask Snape if he could have it .Better you than me they said together but Harry had an idea that Snape wouldnt refuse if there were other teachers listening .He made his way down to the staffroom and knocked .There was no answer .He knocked again .Nothing .Perhaps Snape had left the book in there ?It was worth a try .He pushed the door ajar and peered inside and a horrible scene met his eyes .Snape and Filch were inside alone .Snape was holding his robes above his knees .One of his legs was bloody and mangled .Filch was handing Snape bandages .Blasted thing Snape was saying .How are you supposed to keep your eyes on all three heads at once ?Harry tried to shut the door quietly but POTTER !Snape s face was twisted with fury as he dropped his robes quickly to hide his leg .Harry gulped .I just wondered if I could have my book back .GET OUT !OUT !Harry left before Snape could take any more points from Gryffindor .He sprinted back upstairs .Did you get it ?Ron asked as Harry joined them .Whats the matter ?In a low whisper Harry told them what hed seen .You know what this means ?he finished breathlessly .He tried to get past that threeheaded dog at Halloween !Thats where he was going when we saw him hes after whatever its guarding !And Id bet my broomstick he let that troll in to make a diversion !Hermiones eyes were wide .No he wouldnt she said .I know hes not very nice but he wouldnt try and steal something Dumbledore was keeping safe .Honestly Hermione you think all teachers are saints or something snapped Ron .Im with Harry .I wouldnt put anything past Snape .But whats he after ?Whats that dog guarding ?Harry went to bed with his head buzzing with the same question .Neville was snoring loudly but Harry couldnt sleep .He tried to empty his mind he needed to sleep he had to he had his first Quidditch match in a few hours but the expression on Snapes face when Harry had seen his leg wasnt easy to forget .The next morning dawned very bright and cold .The Great Hall was full of the delicious smell of fried sausages and the cheerful chatter of everyone looking forward to a good Quidditch match .Youve got to eat some breakfast .I dont want anything .Just a bit of toast wheedled Hermione .Im not hungry .Harry felt terrible .In an hours time hed be walking onto the field .Harry you need your strength said Seamus Finnigan .Seekers are always the ones who get clobbered by the other team .Thanks Seamus said Harry watching Seamus pile ketchup on his sausages .By eleven oclock the whole school seemed to be out in the stands around the Quidditch pitch .Many students had binoculars .The seats might be raised high in the air but it was still difficult to see what was going on sometimes .Ron and Hermione joined Neville Seamus and Dean the West Ham fan up in the top row .As a surprise for Harry they had painted a large banner on one of the sheets Scabbers had ruined .It said Potter for President and Dean who was good at drawing had done a large Gryffindor lion underneath .Then Hermione had performed a tricky little charm so that the paint flashed different colors .Meanwhile in the locker room Harry and the rest of the team were changing into their scarlet Quidditch robes Slytherin would be playing in green .Wood cleared his throat for silence .Okay men he said .And women said Chaser Angelina Johnson .And women Wood agreed .This is it .The big one said Fred Weasley .The one weve all been waiting for said George .We know Olivers speech by heart Fred told Harry we were on the team last year .Shut up you two said Wood .This is the best team Gryffindors had in years .Were going to win .I know it .He glared at them all as if to say Or else .Right .Its time .Good luck all of you .Harry followed Fred and George out of the locker room and hoping his knees werent going to give way walked onto the field to loud cheers .Madam Hooch was refereeing .She stood in the middle of the field waiting for the two teams her broom in her hand .Now I want a nice fair game all of you she said once they were all gathered around her .Harry noticed that she seemed to be speaking particularly to the Slytherin Captain Marcus Flint a fifth year .Harry thought Flint looked as if he had some troll blood in him .Out of the corner of his eye he saw the fluttering banner high above flashing Potter for President over the crowd .His heart skipped .He felt braver .Mount your brooms please .Harry clambered onto his Nimbus Two Thousand .Madam Hooch gave a loud blast on her silver whistle .Fifteen brooms rose up high high into the air .They were off .And the Quaffle is taken immediately by Angelina Johnson of Gryffindor what an excellent Chaser that girl is and rather attractive too JORDAN !Sorry Professor .The Weasley twins friend Lee Jordan was doing the commentary for the match closely watched by Professor McGonagall .And shes really belting along up there a neat pass to Alicia Spinnet a good find of Oliver Woods last year only a reserve back to Johnson and no the Slytherins have taken the Quaffle Slytherin Captain Marcus Flint gains the Quaffle and off he goes Flint flying like an eagle up there hes going to sc no stopped by an excellent move by Gryffindor Keeper Wood and the Gryffindors take the Quaffle thats Chaser Katie Bell of Gryffindor there nice dive around Flint off up the field and OUCH that must have hurt hit in the back of the head by a Bludger Quaffle taken by the Slytherins thats Adrian Pucey speeding off toward the goal posts but hes blocked by a second Bludger sent his way by Fred or George Weasley cant tell which nice play by the Gryffindor Beater anyway and Johnson back in possession of the Quaffle a clear field ahead and off she goes shes really flying dodges a speeding Bludger the goal posts are ahead come on now Angelina Keeper Bletchley dives misses GRYFFINDORS SCORE !Gryffindor cheers filled the cold air with howls and moans from the Slytherins .Budge up there move along .Hagrid !Ron and Hermione squeezed together to give Hagrid enough space to join them .Bin watchin from me hut said Hagrid patting a large pair of binoculars around his neck But it isnt the same as bein in the crowd .No sign of the Snitch yet eh ?Nope said Ron .Harry hasnt had much to do yet .Kept outta trouble though thats somethin said Hagrid raising his binoculars and peering skyward at the speck that was Harry .Way up above them Harry was gliding over the game squinting about for some sign of the Snitch .This was part of his and Woods game plan .Keep out of the way until you catch sight of the Snitch Wood had said .We dont want you attacked before you have to be .When Angelina had scored Harry had done a couple of looptheloops to let off his feelings .Now he was back to staring around for the Snitch .Once he caught sight of a flash of gold but it was just a reflection from one of the Weasleys wristwatches and once a Bludger decided to come pelting his way more like a cannonball than anything but Harry dodged it and Fred Weasley came chasing after it .All right there Harry ?he had time to yell as he beat the Bludger furiously toward Marcus Flint .Slytherin in possession Lee Jordan was saying Chaser Pucey ducks two Bludgers two Weasleys and Chaser Bell and speeds toward the wait a moment was that the Snitch ?A murmur ran through the crowd as Adrian Pucey dropped the Quaffle too busy looking over his shoulder at the flash of gold that had passed his left ear .Harry saw it .In a great rush of excitement he dived downward after the streak of gold .Slytherin Seeker Terence Higgs had seen it too .Neck and neck they hurtled toward the Snitch all the Chasers seemed to have forgotten what they were supposed to be doing as they hung in midair to watch .Harry was faster than Higgs he could see the little round ball wings fluttering darting up ahead he put on an extra spurt of speed WHAM !A roar of rage echoed from the Gryffindors below Marcus Flint had blocked Harry on purpose and Harrys broom spun off course Harry holding on for dear life .Foul !screamed the Gryffindors .Madam Hooch spoke angrily to Flint and then ordered a free shot at the goal posts for Gryffindor .But in all the confusion of course the Golden Snitch had disappeared from sight again .Down in the stands Dean Thomas was yelling Send him off ref !Red card !What are you talking about Dean ?said Ron .Red card !said Dean furiously .In soccer you get shown the red card and youre out of the game !But this isnt soccer Dean Ron reminded him .Hagrid however was on Deans side .They oughta change the rules .Flint coulda knocked Harry outta the air .Lee Jordan was finding it difficult not to take sides .So after that obvious and disgusting bit of cheating Jordan !growled Professor McGonagall .I mean after that open and revolting foul Jordan Im warning you All right all right .Flint nearly kills the Gryffindor Seeker which could happen to anyone Im sure so a penalty to Gryffindor taken by Spinnet who puts it away no trouble and we continue play Gryffindor still in possession .It was as Harry dodged another Bludger which went spinning dangerously past his head that it happened .His broom gave a sudden frightening lurch .For a split second he thought he was going to fall .He gripped the broom tightly with both his hands and knees .Hed never felt anything like that .It happened again .It was as though the broom was trying to buck him off .But Nimbus Two Thousands did not suddenly decide to buck their riders off .Harry tried to turn back toward the Gryffindor goal posts he had half a mind to ask Wood to call timeout and then he realized that his broom was completely out of his control .He couldnt turn it .He couldnt direct it at all .It was zigzagging through the air and every now and then making violent swishing movements that almost unseated him .Lee was still commentating .Slytherin in possession Flint with the Quaffle passes Spinnet passes Bell hit hard in the face by a Bludger hope it broke his nose only joking Professor Slytherins score oh no .The Slytherins were cheering .No one seemed to have noticed that Harrys broom was behaving strangely It was carrying him slowly higher away from the game jerking and twitching as it went .Dunno what Harry thinks hes doing Hagrid mumbled .He stared through his binoculars .If I didn know better Id say hed lost control of his broom .but he cant have .Suddenly people were pointing up at Harry all over the stands .His broom had started to roll over and over with him only just managing to hold on .Then the whole crowd gasped .Harrys broom had given a wild jerk and Harry swung off it .He was now dangling from it holding on with only one hand .Did something happen to it when Flint blocked him ?Seamus whispered .Cant have Hagrid said his voice shaking .Cant nothing interfere with a broomstick except powerful Dark magic no kid could do that to a Nimbus Two Thousand .At these words Hermione seized Hagrid s binoculars but instead of looking up at Harry she started looking frantically at the crowd .What are you doing ?moaned Ron grayfaced .I knew it Hermione gasped Snape look .Ron grabbed the binoculars .Snape was in the middle of the stands opposite them .He had his eyes fixed on Harry and was muttering nonstop under his breath .Hes doing something jinxing the broom said Hermione .What should we do ?Leave it to me .Before Ron could say another word Hermione had disappeared .Ron turned the binoculars back on Harry .His broom was vibrating so hard it was almost impossible for him to hang on much longer .The whole crowd was on its feet watching terrified as the Weasleys flew up to try and pull Harry safely onto one of their brooms but it was no good every time they got near him the broom would jump higher still .They dropped lower and circled beneath him obviously hoping to catch him if he fell .Marcus Flint seized the Quaffle and scored five times without anyone noticing .Come on Hermione Ron muttered desperately .Hermione had fought her way across to the stand where Snape stood and was now racing along the row behind him she didnt even stop to say sorry as she knocked Professor Quirrell headfirst into the row in front .Reaching Snape she crouched down pulled out her wand and whispered a few wellchosen words .Bright blue flames shot from her wand onto the hem of Snape s robes .It took perhaps thirty seconds for Snape to realize that he was on fire .A sudden yelp told her she had done her job .Scooping the fire off him into a little jar in her pocket she scrambled back along the row Snape would never know what had happened .It was enough .Up in the air Harry was suddenly able to clamber back on to his broom .Neville you can look !Ron said .Neville had been sobbing into Hagrids jacket for the last five minutes .Harry was speeding toward the ground when the crowd saw him clap his hand to his mouth as though he was about to be sick he hit the field on all fours coughed and something gold fell into his hand .Ive got the Snitch !he shouted waving it above his head and the game ended in complete confusion .He didnt catch it he nearly swallowed it Flint was still howling twenty minutes later but it made no difference Harry hadnt broken any rules and Lee Jordan was still happily shouting the results Gryffindor had won by one hundred and seventy points to sixty .Harry heard none of this though .He was being made a cup of strong tea back in Hagrids hut with Ron and Hermione .It was Snape Ron was explaining Hermione and I saw him .He was cursing your broomstick muttering he wouldnt take his eyes off you .Rubbish said Hagrid who hadnt heard a word of what had gone on next to him in the stands .Why would Snape do somethin like that ?Harry Ron and Hermione looked at one another wondering what to tell him .Harry decided on the truth .I found out something about him he told Hagrid .He tried to get past that threeheaded dog on Halloween .It bit him .We think he was trying to steal whatever its guarding .Hagrid dropped the teapot .How do you know about Fluffy ?he said .Fluffy ?Yeah hes mine bought him off a Greek chappie I met in the pub las year I lent him to Dumbledore to guard the Yes ?said Harry eagerly .Now dont ask me anymore said Hagrid gruffly .Thats top secret that is .But Snapes trying to steal it .Rubbish said Hagrid again .Snapes a Hogwarts teacher hed do nothin of the sort .So why did he just try and kill Harry ?cried Hermione .The afternoons events certainly seemed to have changed her mind about Snape .I know a jinx when I see one Hagrid Ive read all about them !Youve got to keep eye contact and Snape wasnt blinking at all I saw him !Im tellin yeh yer wrong !said Hagrid hotly .I don know why Harrys broom acted like that but Snape wouldn try an kill a student !Now listen to me all three of yeh yer meddlin in things that don concern yeh .Its dangerous .You forget that dog an you forget what its guardin thats between Professor Dumbledore an Nicolas Flamel ■ Aha !said Harry so theres someone called Nicolas Flamel involved is there ?Hagrid looked furious with himself .THE MIRROR OF ERISED Christmas was coming .One morning in mid December Hogwarts woke to find itself covered in several feet of snow .The lake froze solid and the Weasley twins were punished for bewitching several snowballs so that they followed Quirrell around bouncing off the back of his turban .The few owls that managed to battle their way through the stormy sky to deliver mail had to be nursed back to health by Hagrid before they could fly off again .No one could wait for the holidays to start .While the Gryffindor common room and the Great Hall had roaring fires the drafty corridors had become icy and a bitter wind rattled the windows in the classrooms .Worst of all were Professor Snapes classes down in the dungeons where their breath rose in a mist before them and they kept as close as possible to their hot cauldrons .I do feel so sorry said Draco Malfoy one Potions class for all those people who have to stay at Hogwarts for Christmas because theyre not wanted at home .He was looking over at Harry as he spoke .Crabbe and Goyle chuckled .Harry who was measuring out powdered spine of lionfish ignored them .Malfoy had been even more unpleasant than usual since the Quidditch match .Disgusted that the Slytherins had lost he had tried to get everyone laughing at how a widemouthed tree frog would be replacing Harry as Seeker next .Then hed realized that nobody found this funny because they were all so impressed at the way Harry had managed to stay on his bucking broomstick .So Malfoy jealous and angry had gone back to taunting Harry about having no proper family .It was true that Harry wasnt going back to Privet Drive for Christmas .Professor McGonagall had come around the week before making a list of students who would be staying for the holidays and Harry had signed up at once .He didnt feel sorry for himself at all this would probably be the best Christmas hed ever had .Ron and his brothers were staying too because Mr and Mrs Weasley were going to Romania to visit Charlie .When they left the dungeons at the end of Potions they found a large fir tree blocking the corridor ahead .Two enormous feet sticking out at the bottom and a loud puffing sound told them that Hagrid was behind it .Hi Hagrid want any help ?Ron asked sticking his head through the branches .Nah Im all right thanks Ron .Would you mind moving out of the way ?came Malfoys cold drawl from behind them .Are you trying to earn some extra money Weasley ?Hoping to be gamekeeper yourself when you leave Hogwarts I suppose that hut of Hagrids must seem like a palace compared to what your familys used to .Ron dived at Malfoy just as Snape came up the stairs .WEASLEY !Ron let go of the front of Malfoys robes .He was provoked Professor Snape said Hagrid sticking his huge hairy face out from behind the tree .Malfoy was insultin his family .Be that as it may fighting is against Hogwarts rules Hagrid said Snape silkily .Five points from Gryffindor Weasley and be grateful it isnt more .Move along all of you .Malfoy Crabbe and Goyle pushed roughly past the tree scattering needles everywhere and smirking .Ill get him said Ron grinding his teeth at Malfoys back one of these days Ill get him I hate them both said Harry Malfoy and Snape .Come on cheer up its nearly Christmas said Hagrid .Tell yeh what come with me an see the Great Hall looks a treat .So the three of them followed Hagrid and his tree off to the Great Hall where Professor McGonagall and Professor Flitwick were busy with the Christmas decorations .Ah Hagrid the last tree put it in the far corner would you ?The hall looked spectacular .Festoons of holly and mistletoe hung all around the walls and no less than twelve towering Christmas trees stood around the room some sparkling with tiny icicles some glittering with hundreds of candles .How many days you got left until yer holidays ?Hagrid asked .Just one said Hermione .And that reminds me Harry Ron weve got half an hour before lunch we should be in the library .Oh yeah youre right said Ron tearing his eyes away from Professor Flitwick who had golden bubbles blossoming out of his wand and was trailing them over the branches of the new tree .The library ?said Hagrid following them out of the hall .Just before the holidays ?Bit keen arent yeh ?Oh were not working Harry told him brightly .Ever since you mentioned Nicolas Flamel weve been trying to find out who he is .You what ?Hagrid looked shocked .Listen here Ive told yeh drop it .Its nothin to you what that dogs guardin .We just want to know who Nicolas Flamel is thats all said Hermione .Unless youd like to tell us and save us the trouble ?Harry added .We mustve been through hundreds of books already and we cant find him anywhere just give us a hint I know Ive read his name somewhere .Im sayin nothin said Hagrid flatly .Just have to find out for ourselves then said Ron and they left Hagrid looking disgruntled and hurried off to the library .They had indeed been searching books for Flamels name ever since Hagrid had let it slip because how else were they going to find out what Snape was trying to steal ?The trouble was it was very hard to know where to begin not knowing what Flamel might have done to get himself into a book .He wasnt in Great Wizards of the Twentieth Century or Notable Magical Names of Our Time he was missing too from Important Modern Magical Discoveries and A Study of Recent Developments in Wizardry .And then of course there was the sheer size of the library tens of thousands of books thousands of shelves hundreds of narrow rows .Hermione took out a list of subjects and titles she had decided to search while Ron strode off down a row of books and started pulling them off the shelves at random .Harry wandered over to the Restricted Section .He had been wondering for a while if Flamel wasnt somewhere in there .Unfortunately you needed a specially signed note from one of the teachers to look in any of the restricted books and he knew hed never get one .These were the books containing powerful Dark Magic never taught at Hogwarts and only read by older students studying advanced Defense Against the Dark Arts .What are you looking for boy ?Nothing said Harry .Madam Pince the librarian brandished a feather duster at him .Youd better get out then .Go on out !Wishing hed been a bit quicker at thinking up some story Harry left the library .He Ron and Hermione had already agreed theyd better not ask Madam Pince where they could find Flamel .They were sure shed be able to tell them but they couldnt risk Snape hearing what they were up to .Harry waited outside in the corridor to see if the other two had found anything but he wasnt very hopeful .They had been looking for two weeks after all but as they only had odd moments between lessons it wasnt surprising theyd found nothing .What they really needed was a nice long search without Madam Pince breathing down their necks .Five minutes later Ron and Hermione joined him shaking their heads .They went off to lunch .You will keep looking while Im away wont you ?said Hermione .And send me an owl if you find anything .And you could ask your parents if they know who Flamel is said Ron .Itd be safe to ask them .Very safe as theyre both dentists said Hermione .Once the holidays had started Ron and Harry were having too good a time to think much about Flamel .They had the dormitory to themselves and the common room was far emptier than usual so they were able to get the good armchairs by the fire .They sat by the hour eating anything they could spear on a toasting fork bread English muffins marshmallows and plotting ways of getting Malfoy expelled which were fun to talk about even if they wouldnt work .Ron also started teaching Harry wizard chess .This was exactly like Muggle chess except that the figures were alive which made it a lot like directing troops in battle .Rons set was very old and battered .Like everything else he owned it had once belonged to someone else in his family in this case his grandfather .However old chessmen werent a drawback at all .Ron knew them so well he never had trouble getting them to do what he wanted .Harry played with chessmen Seamus Finnigan had lent him and they didnt trust him at all .He wasnt a very good player yet and they kept shouting different bits of advice at him which was confusing .Dont send me there cant you see his knight ?Send him we can afford to lose him .On Christmas Eve Harry went to bed looking forward to the next day for the food and the fun but not expecting any presents at all .When he woke early in the morning however the first thing he saw was a small pile of packages at the foot of his bed .Merry Christmas said Ron sleepily as Harry scrambled out of bed and pulled on his bathrobe .You too said Harry .Will you look at this ?Ive got some presents !What did you expect turnips ?said Ron turning to his own pile which was a lot bigger than Harrys .Harry picked up the top parcel .It was wrapped in thick brown paper and scrawled across it was To Harry from Hagrid .Inside was a roughly cut wooden flute .Hagrid had obviously whittled it himself .Harry blew it it sounded a bit like an owl .A second very small parcel contained a note .We received your message and enclose your Christmas present .From Uncle Vernon and Aunt Petunia .Taped to the note was a fiftypence piece .Thats friendly said Harry .Ron was fascinated by the fifty pence .Weird he said What a shape !This is money ?You can keep it said Harry laughing at how pleased Ron was .Hagrid and my aunt and uncle so who sent these ?I think I know who that ones from said Ron turning a bit pink and pointing to a very lumpy parcel .My mom .I told her you didnt expect any presents and oh no he groaned shes made you a Weasley sweater .Harry had torn open the parcel to find a thick hand knitted sweater in emerald green and a large box of homemade fudge .Every year she makes us a sweater said Ron unwrapping his own and mines always maroon .Thats really nice of her said Harry trying the fudge which was very tasty .His next present also contained candy a large box of Chocolate Frogs from Hermione .This only left one parcel .Harry picked it up and felt it .It was very light .He unwrapped it .Something fluid and silvery gray went slithering to the floor where it lay in gleaming folds .Ron gasped .Ive heard of those he said in a hushed voice dropping the box of Every Flavor Beans hed gotten from Hermione .If thats what I think it is theyre really rare and really valuable .What is it ?Harry picked the shining silvery cloth off the floor .It was strange to the touch like water woven into material .Its an Invisibility Cloak said Ron a look of awe on his face .Im sure it is try it on .Harry threw the cloak around his shoulders and Ron gave a yell .It is !Look down !Harry looked down at his feet but they were gone .He dashed to the mirror .Sure enough his reflection looked back at him just his head suspended in midair his body completely invisible .He pulled the cloak over his head and his reflection vanished completely .Theres a note !said Ron suddenly .A note fell out of it !Harry pulled off the cloak and seized the letter .Written in narrow loopy writing he had never seen before were the following words Your father left this in my possession before he died .It is time it was returned to you .Use it well .A Very Merry Christmas to you .There was no signature .Harry stared at the note .Ron was admiring the cloak .Id give anuthinq for one of these he said .Anuthinq .Whats the matter ?Nothing said Harry .He felt very strange .Who had sent the cloak ?Had it really once belonged to his father ?Before he could say or think anything else the dormitory door was flung open and Fred and George Weasley bounded in .Harry stuffed the cloak quickly out of sight .He didnt feel like sharing it with anyone else yet .Merry Christmas !Hey look Harrys got a Weasley sweater too !Fred and George were wearing blue sweaters one with a large yellow F on it the other a G .Harrys is better than ours though said Fred holding up Harrys sweater .She obviously makes more of an effort if youre not family .Why arent you wearing yours Ron ?George demanded .Come on get it on theyre lovely and warm .I hate maroon Ron moaned halfheartedly as he pulled it over his head .You havent got a letter on yours George observed .I suppose she thinks you dont forget your name .But were not stupid we know were called Gred and Forge .Whats all this noise ?Percy Weasley stuck his head through the door looking disapproving .He had clearly gotten halfway through unwrapping his presents as he too carried a lumpy sweater over his arm which Fred seized .P for prefect !Get it on Percy come on were all wearing ours even Harry got one .I dont want said Percy thickly as the twins forced the sweater over his head knocking his glasses askew .And youre not sitting with the prefects today either said George .Christmas is a time for family .They frogmarched Percy from the room his arms pinned to his side by his sweater .Harry had never in all his life had such a Christmas dinner .A hundred fat roast turkeys mountains of roast and boiled potatoes platters of chipolatas tureens of buttered peas silver boats of thick rich gravy and cranberry sauce and stacks of wizard crackers every few feet along the table .These fantastic party favors were nothing like the feeble Muggle ones the Dursleys usually bought with their little plastic toys and their flimsy paper hats inside .Harry pulled a wizard cracker with Fred and it didnt just bang it went off with a blast like a cannon and engulfed them all in a cloud of blue smoke while from the inside exploded a rear admirals hat and several live white mice .Up at the High Table Dumbledore had swapped his pointed wizards hat for a flowered bonnet and was chuckling merrily at a joke Professor Flitwick had just read him .Flaming Christmas puddings followed the turkey .Percy nearly broke his teeth on a silver Sickle embedded in his slice .Harry watched Hagrid getting redder and redder in the face as he called for more wine finally kissing Professor McGonagall on the cheek who to Harrys amazement giggled and blushed her top hat lopsided .When Harry finally left the table he was laden down with a stack of things out of the crackers including a pack of nonexplodable luminous balloons a Grow YourOwnWarts kit and his own new wizard chess set .The white mice had disappeared and Harry had a nasty feeling they were going to end up as Mrs Norriss Christmas dinner .Harry and the Weasleys spent a happy afternoon having a furious snowball fight on the grounds .Then cold wet and gasping for breath they returned to the fire in the Gryffindor common room where Harry broke in his new chess set by losing spectacularly to Ron .He suspected he wouldnt have lost so badly if Percy hadnt tried to help him so much .After a meal of turkey sandwiches crumpets trifle and Christmas cake everyone felt too full and sleepy to do much before bed except sit and watch Percy chase Fred and George all over Gryffindor Tower because theyd stolen his prefect badge .It had been Harrys best Christmas day ever .Yet something had been nagging at the back of his mind all day .Not until he climbed into bed was he free to think about it the Invisibility Cloak and whoever had sent it .Ron full of turkey and cake and with nothing mysterious to bother him fell asleep almost as soon as hed drawn the curtains of his fourposter .Harry leaned over the side of his own bed and pulled the cloak out from under it .His fathers .this had been his fathers .He let the material flow over his hands smoother than silk light as air .Use it well the note had said .He had to try it now .He slipped out of bed and wrapped the cloak around himself .Looking down at his legs he saw only moonlight and shadows .It was a very funny feeling .Use it well .Suddenly Harry felt wideawake .The whole of Hogwarts was open to him in this cloak .Excitement flooded through him as he stood there in the dark and silence .He could go anywhere in this anywhere and Filch would never know .Ron grunted in his sleep .Should Harry wake him ?Something held him back his fathers cloak he felt that this time the first time he wanted to use it alone .He crept out of the dormitory down the stairs across the common room and climbed through the portrait hole .Whos there ?squawked the Fat Lady .Harry said nothing .He walked quickly down the corridor .Where should he go ?He stopped his heart racing and thought .And then it came to him .The Restricted Section in the library .Hed be able to read as long as he liked as long as it took to find out who Flamel was .He set off drawing the Invisibility Cloak tight around him as he walked .The library was pitchblack and very eerie .Harry lit a lamp to see his way along the rows of books .The lamp looked as if it was floating along in midair and even though Harry could feel his arm supporting it the sight gave him the creeps .The Restricted Section was right at the back of the library .Stepping carefully over the rope that separated these books from the rest of the library he held up his lamp to read the titles .They didnt tell him much .Their peeling faded gold letters spelled words in languages Harry couldnt understand .Some had no title at all .One book had a dark stain on it that looked horribly like blood .The hairs on the back of Harrys neck prickled .Maybe he was imagining it maybe not but he thought a faint whispering was coming from the books as though they knew someone was there who shouldnt be .He had to start somewhere .Setting the lamp down carefully on the floor he looked along the bottom shelf for an interestinglooking book .A large black and silver volume caught his eye .He pulled it out with difficulty because it was very heavy and balancing it on his knee let it fall open .A piercing bloodcurdling shriek split the silence the book was screaming !Harry snapped it shut but the shriek went on and on one high unbroken earsplitting note .He stumbled backward and knocked over his lamp which went out at once .Panicking he heard footsteps coming down the corridor outside stuffing the shrieking book back on the shelf he ran for it .He passed Filch in the doorway Filchs pale wild eyes looked straight through him and Harry slipped under Filchs outstretched arm and streaked off up the corridor the books shrieks still ringing in his ears .He came to a sudden halt in front of a tall suit of armor .He had been so busy getting away from the library he hadnt paid attention to where he was going .Perhaps because it was dark he didnt recognize where he was at all .There was a suit of armor near the kitchens he knew but he must be five floors above there .You asked me to come directly to you Professor if anyone was wandering around at night and somebodys been in the library Restricted Section .Harry felt the blood drain out of his face .Wherever he was Filch must know a shortcut because his soft greasy voice was getting nearer and to his horror it was Snape who replied The Restricted Section ?Well they cant be far well catch them .Harry stood rooted to the spot as Filch and Snape came around the corner ahead .They couldnt see him of course but it was a narrow corridor and if they came much nearer theyd knock right into him the cloak didnt stop him from being solid .He backed away as quietly as he could .A door stood ajar to his left .It was his only hope .He squeezed through it holding his breath trying not to move it and to his relief he managed to get inside the room without their noticing anything .They walked straight past and Harry leaned against the wall breathing deeply listening to their footsteps dying away .That had been close very close .It was a few seconds before he noticed anything about the room he had hidden in .It looked like an unused classroom .The dark shapes of desks and chairs were piled against the walls and there was an upturned wastepaper basket but propped against the wall facing him was something that didnt look as if it belonged there something that looked as if someone had just put it there to keep it out of the way .It was a magnificent mirror as high as the ceiling with an ornate gold frame standing on two clawed feet .There was an inscription carved around the top Erised stra ehru oyt ube cafru oyt on wohsi .His panic fading now that there was no sound of Filch and Snape Harry moved nearer to the mirror wanting to look at himself but see no reflection again .He stepped in front of it .He had to clap his hands to his mouth to stop himself from screaming .He whirled around .His heart was pounding far more furiously than when the book had screamed for he had seen not only himself in the mirror but a whole crowd of people standing right behind him .But the room was empty .Breathing very fast he turned slowly back to the mirror .There he was reflected in it white and scared looking and there reflected behind him were at least ten others .Harry looked over his shoulder but still no one was there .Or were they all invisible too ?Was he in fact in a room full of invisible people and this mirrors trick was that it reflected them invisible or not ?He looked in the mirror again .A woman standing right behind his reflection was smiling at him and waving .He reached out a hand and felt the air behind him .If she was really there hed touch her their reflections were so close together but he felt only air she and the others existed only in the mirror .She was a very pretty woman .She had dark red hair and her eyes her eyes are just like mine Harry thought edging a little closer to the glass .Bright green exactly the same shape but then he noticed that she was crying smiling but crying at the same time .The tall thin blackhaired man standing next to her put his arm around her .He wore glasses and his hair was very untidy .It stuck up at the back just as Harrys did .Harry was so close to the mirror now that his nose was nearly touching that of his reflection .Mom ?he whispered .Dad ?They just looked at him smiling .And slowly Harry looked into the faces of the other people in the mirror and saw other pairs of green eyes like his other noses like his even a little old man who looked as though he had Harrys knobbly knees Harry was looking at his family for the first time in his life .The Potters smiled and waved at Harry and he stared hungrily back at them his hands pressed flat against the glass as though he was hoping to fall right through it and reach them .He had a powerful kind of ache inside him half joy half terrible sadness .How long he stood there he didnt know .The reflections did not fade and he looked and looked until a distant noise brought him back to his senses .He couldnt stay here he had to find his way back to bed .He tore his eyes away from his mothers face whispered Ill come back and hurried from the room .You could have woken me up said Ron crossly .You can come tonight Im going back I want to show you the mirror .Id like to see your mom and dad Ron said eagerly .And I want to see all your family all the Weasleys youll be able to show me your other brothers and everyone .You can see them any old time said Ron .Just come round my house this summer .Anyway maybe it only shows dead people .Shame about not finding Flamel though .Have some bacon or something why arent you eating anything ?Harry couldnt eat .He had seen his parents and would be seeing them again tonight .He had almost forgotten about Flamel .It didnt seem very important anymore .Who cared what the threeheaded dog was guarding ?What did it matter if Snape stole it really ?Are you all right ?said Ron .You look odd .What Harry feared most was that he might not be able to find the mirror room again .With Ron covered in the cloak too they had to walk much more slowly the next night .They tried retracing Harrys route from the library wandering around the dark passageways for nearly an hour .Im freezing said Ron .Lets forget it and go back .IVo !Harry hissed .I know its here somewhere .They passed the ghost of a tall witch gliding in the opposite direction but saw no one else .Just as Ron started moaning that his feet were dead with cold Harry spotted the suit of armor .Its here just here yes !They pushed the door open .Harry dropped the cloak from around his shoulders and ran to the mirror .There they were .His mother and father beamed at the sight of him .See ?Harry whispered .I cant see anything .Look !Look at them all .there are loads of them .I can only see you .Look in it properly go on stand where I am .Harry stepped aside but with Ron in front of the mirror he couldnt see his family anymore just Ron in his paisley pajamas .Ron though was staring transfixed at his image .Look at me !he said .Can you see all your family standing around you ?No Im alone but Im different I look older and Im Head Boy !What ?I am Im wearing the badge like Bill used to and Im holding the House Cup and the Quidditch Cup Im Quidditch captain too !Ron tore his eyes away from this splendid sight to look excitedly at Harry .Do you think this mirror shows the future ?How can it ?All my family are dead let me have another look You had it to yourself all last night give me a bit more time .Youre only holding the Quidditch Cup whats interesting about that ?I want to see my parents .Dont push me A sudden noise outside in the corridor put an end to their discussion .They hadnt realized how loudly they had been talking .Quick !Ron threw the cloak back over them as the luminous eyes of Mrs Norris came round the door .Ron and Harry stood quite still both thinking the same thing did the cloak work on cats ?After what seemed an age she turned and left .This isnt safe she might have gone for Filch I bet she heard us .Come on .And Ron pulled Harry out of the room .The snow still hadnt melted the next morning .Want to play chess Harry ?said Ron .No .Why dont we go down and visit Hagrid ?No .you go .I know what youre thinking about Harry that mirror .Dont go back tonight .Why not ?I dunno Ive just got a bad feeling about it and anyway youve had too many close shaves already .Filch Snape and Mrs Norris are wandering around .So what if they cant see you ?What if they walk into you ?What if you knock something over ?You sound like Hermione .Im serious Harry dont go .But Harry only had one thought in his head which was to get back in front of the mirror and Ron wasnt going to stop him .That third night he found his way more quickly than before .He was walking so fast he knew he was making more noise than was wise but he didnt meet anyone .And there were his mother and father smiling at him again and one of his grandfathers nodding happily .Harry sank down to sit on the floor in front of the mirror .There was nothing to stop him from staying here all night with his family .Nothing at all .Except So back again Harry ?Harry felt as though his insides had turned to ice .He looked behind him .Sitting on one of the desks by the wall was none other than Albus Dumbledore .Harry must have walked straight past him so desperate to get to the mirror he hadnt noticed him .I I didnt see you sir .Strange how nearsighted being invisible can make you said Dumbledore and Harry was relieved to see that he was smiling .So said Dumbledore slipping off the desk to sit on the floor with Harry you like hundreds before you have discovered the delights of the Mirror of Erised .I didnt know it was called that sir .But I expect youve realized by now what it does ?It well it shows me my family And it showed your friend Ron himself as Head Boy .How did you know ?I dont need a cloak to become invisible said Dumbledore gently .Now can you think what the Mirror of Erised shows us all ?Harry shook his head .Let me explain .The happiest man on earth would be able to use the Mirror of Erised like a normal mirror that is he would look into it and see himself exactly as he is .Does that help ?Harry thought .Then he said slowly It shows us what we want .whatever we want .Yes and no said Dumbledore quietly .It shows us nothing more or less than the deepest most desperate desire of our hearts .You who have never known your family see them standing around you .Ronald Weasley who has always been overshadowed by his brothers sees himself standing alone the best of all of them .However this mirror will give us neither knowledge or truth .Men have wasted away before it entranced by what they have seen or been driven mad not knowing if what it shows is real or even possible .The Mirror will be moved to a new home tomorrow Harry and I ask you not to go looking for it again .If you ever do run across it you will now be prepared .It does not do to dwell on dreams and forget to live remember that .Now why dont you put that admirable cloak back on and get off to bed ?Harry stood up .Sir Professor Dumbledore ?Can I ask you something ?Obviously youve just done so Dumbledore smiled .You may ask me one more thing however .What do you see when you look in the mirror ?I ?I see myself holding a pair of thick woolen socks .Harry stared .One can never have enough socks said Dumbledore .Another Christmas has come and gone and I didnt get a single pair .People will insist on giving me books .It was only when he was back in bed that it struck Harry that Dumbledore might not have been quite truthful .But then he thought as he shoved Scabbers off his pillow it had been quite a personal question .NICHOLAS FLAMBL Dumbledore had convinced Harry not to go looking for the Mirror of Erised again and for the rest of the Christmas holidays the Invisibility Cloak stayed folded at the bottom of his trunk .Harry wished he could forget what hed seen in the mirror as easily but he couldnt .He started having nightmares .Over and over again he dreamed about his parents disappearing in a flash of green light while a high voice cackled with laughter .You see Dumbledore was right that mirror could drive you mad said Ron when Harry told him about these dreams .Hermione who came back the day before term started took a different view of things .She was torn between horror at the idea of Harry being out of bed roaming the school three nights in a row If Filch had caught you !and disappointment that he hadnt at least found out who Nicolas Flamel was .They had almost given up hope of ever finding Flamel in a library book even though Harry was still sure hed read the name somewhere .Once term had started they were back to skimming through books for ten minutes during their breaks .Harry had even less time than the other two because Quidditch practice had started again .Wood was working the team harder than ever .Even the endless rain that had replaced the snow couldnt dampen his spirits .The Weasleys complained that Wood was becoming a fanatic but Harry was on Woods side .If they won their next match against Hufflepuff they would overtake Slytherin in the House Championship for the first time in seven years .Quite apart from wanting to win Harry found that he had fewer nightmares when he was tired out after training .Then during one particularly wet and muddy practice session Wood gave the team a bit of bad news .Hed just gotten very angry with the Weasleys who kept divebombing each other and pretending to fall off their brooms .Will you stop messing around !he yelled .Thats exactly the sort of thing thatll lose us the match !Snapes refereeing this time and hell be looking for any excuse to knock points off Gryffindor !George Weasley really did fall off his broom at these words .Snapes refereeing ?he spluttered through a mouthful of mud .Whens he ever refereed a Quidditch match ?Hes not going to be fair if we might overtake Slytherin .The rest of the team landed next to George to complain too .Its not my fault said Wood .Weve just got to make sure we play a clean game so Snape hasnt got an excuse to pick on us .Which was all very well thought Harry but he had another reason for not wanting Snape near him while he was playing Quidditch .The rest of the team hung back to talk to one another as usual at the end of practice but Harry headed straight back to the Gryffindor common room where he found Ron and Hermione playing chess .Chess was the only thing Hermione ever lost at something Harry and Ron thought was very good for her .Dont talk to me for a moment said Ron when Harry sat down next to him I need to concern He caught sight of Harrys face .Whats the matter with you ?You look terrible .Speaking quietly so that no one else would hear Harry told the other two about Snape s sudden sinister desire to be a Quidditch referee .Dont play said Hermione at once .Say youre ill said Ron .Pretend to break your leg Hermione suggested .Really break your leg said Ron .I cant said Harry .There isnt a reserve Seeker .If I back out Gryffindor cant play at all .At that moment Neville toppled into the common room .How he had managed to climb through the portrait hole was anyones guess because his legs had been stuck together with what they recognized at once as the LegLocker Curse .He must have had to bunny hop all the way up to Gryffindor Tower .Everyone fell over laughing except Hermione who leapt up and performed the countercurse .Nevilles legs sprang apart and he got to his feet trembling .What happened ?Hermione asked him leading him over to sit with Harry and Ron .Malfoy said Neville shakily .I met him outside the library .He said hed been looking for someone to practice that on .Go to Professor McGonagall !Hermione urged Neville .Report him !Neville shook his head .I dont want more trouble he mumbled .Youve got to stand up to him Neville !said Ron .Hes used to walking all over people but thats no reason to lie down in front of him and make it easier .Theres no need to tell me Im not brave enough to be in Gryffindor Malfoys already done that Neville choked out .Harry felt in the pocket of his robes and pulled out a Chocolate Frog the very last one from the box Hermione had given him for Christmas .He gave it to Neville who looked as though he might cry .Youre worth twelve of Malfoy Harry said .The Sorting Hat chose you for Gryffindor didnt it ?And wheres Malfoy ?In stinking Slytherin .Nevilles lips twitched in a weak smile as he unwrapped the frog .Thanks Harry .I think Ill go to bed .Dyou want the card you collect them dont you ?As Neville walked away Harry looked at the Famous Wizard card .Dumbledore again he said He was the first one I ever He gasped .He stared at the back of the card .Then he looked up at Ron and Hermione .Ive found him he whispered .Ive found Flamel !I told you Id read the name somewhere before I read it on the train coming here listen to this ‘Dumbledore is particularly famous for his defeat of the Dark wizard Grindelwald in 1945 for the discovery of the twelve uses of dragons blood and his work on alchemy with his partner Nicolas FlamelV Hermione jumped to her feet .She hadnt looked so excited since theyd gotten back the marks for their very first piece of homework .Stay there !she said and she sprinted up the stairs to the girls dormitories .Harry and Ron barely had time to exchange mystified looks before she was dashing back an enormous old book in her arms .I never thought to look in here !she whispered excitedly .I got this out of the library weeks ago for a bit of light reading .Light ?said Ron but Hermione told him to be quiet until shed looked something up and started flicking frantically through the pages muttering to herself .At last she found what she was looking for .I knew it !I knew it !Are we allowed to speak yet ?said Ron grumpily .Hermione ignored him .Nicolas Flamel she whispered dramatically is the only known maker of the Sorcerers Stone This didnt have quite the effect shed expected .The what ?said Harry and Ron .Oh honestly dont you two read ?Look read that there .She pushed the book toward them and Harry and Ron read The ancient study of alchemy is concerned with making the Sorcerers Stone a legendary substance with astonishing powers .The Stone will transform any metal into pure gold .It also produces the Elixir of Life which will make the drinker immortal .There have been many reports of the Sorcerers Stone over the centuries but the only Stone currently in existence belongs to Mr Nicolas Flamel the noted alchemist and opera lover .Mr Flamel who celebrated his six hundred and sixtyfifth birthday last year enjoys a quiet life in Devon with his wife Perenelle six hundred and fiftyeight .See ?said Hermione when Harry and Ron had finished .The dog must be guarding Flamels Sorcerers Stone !I bet he asked Dumbledore to keep it safe for him because theyre friends and he knew someone was after it thats why he wanted the Stone moved out of Gringotts !A stone that makes gold and stops you from ever dying !said Harry .No wonder Snapes after it !Anyone would want it .And no wonder we couldnt find Flamel in that Study of Recent Developments in Wizardry said Ron .Hes not exactly recent if hes six hundred and sixtyfive is he ?The next morning in Defense Against the Dark Arts while copying down different ways of treating werewolf bites Harry and Ron were still discussing what theyd do with a Sorcerers Stone if they had one .It wasnt until Ron said hed buy his own Quidditch team that Harry remembered about Snape and the coming match .Im going to play he told Ron and Hermione .If I dont all the Slytherins will think Im just too scared to face Snape .Ill show them .itll really wipe the smiles off their faces if we win .Just as long as were not wiping you off the field said Hermione .As the match drew nearer however Harry became more and more nervous whatever he told Ron and Hermione .The rest of the team wasnt too calm either .The idea of overtaking Slytherin in the House Championship was wonderful no one had done it for seven years but would they be allowed to with such a biased referee ?Harry didnt know whether he was imagining it or not but he seemed to keep running into Snape wherever he went .At times he even wondered whether Snape was following him trying to catch him on his own .Potions lessons were turning into a sort of weekly torture Snape was so horrible to Harry .Could Snape possibly know theyd found out about the Sorcerers Stone ?Harry didnt see how he could yet he sometimes had the horrible feeling that Snape could read minds .Harry knew when they wished him good luck outside the locker rooms the next afternoon that Ron and Hermione were wondering whether theyd ever see him alive again .This wasnt what youd call comforting .Harry hardly heard a word of Woods pep talk as he pulled on his Quidditch robes and picked up his Nimbus Two Thousand .Ron and Hermione meanwhile had found a place in the stands next to Neville who couldnt understand why they looked so grim and worried or why they had both brought their wands to the match .Little did Harry know that Ron and Hermione had been secretly practicing the LegLocker Curse .Theyd gotten the idea from Malfoy using it on Neville and were ready to use it on Snape if he showed any sign of wanting to hurt Harry .Now dont forget its Locomotor Mortis Hermione muttered as Ron slipped his wand up his sleeve .I know Ron snapped .Dont nag .Back in the locker room Wood had taken Harry aside .Dont want to pressure you Potter but if we ever need an early capture of the Snitch its now .Finish the game before Snape can favor Hufflepuff too much .The whole schools out there !said Fred Weasley peering out of the door .Even blimey Dumbledores come to watch !Harrys heart did a somersault .Dumbledore ?he said dashing to the door to make sure .Fred was right .There was no mistaking that silver beard .Harry could have laughed out loud with relief .He was safe .There was simply no way that Snape would dare to try to hurt him if Dumbledore was watching .Perhaps that was why Snape was looking so angry as the teams marched onto the field something that Ron noticed too .Ive never seen Snape look so mean he told Hermione .Look theyre off .Ouch !Someone had poked Ron in the back of the head .It was Malfoy .Oh sorry Weasley didnt see you there .Malfoy grinned broadly at Crabbe and Goyle .Wonder how long Potters going to stay on his broom this time ?Anyone want a bet ?What about you Weasley ?Ron didnt answer Snape had just awarded Hufflepuff a penalty because George Weasley had hit a Bludger at him .Hermione who had all her fingers crossed in her lap was squinting fixedly at Harry who was circling the game like a hawk looking for the Snitch .You know how I think they choose people for the Gryffindor team ?said Malfoy loudly a few minutes later as Snape awarded Hufflepuff another penalty for no reason at all .Its people they feel sorry for .See theres Potter whos got no parents then theres the Weasleys whove got no money you should be on the team Longbottom youve got no brains .Neville went bright red but turned in his seat to face Malfoy .Im worth twelve of you Malfoy he stammered .Malfoy Crabbe and Goyle howled with laughter but Ron still not daring to take his eyes from the game said You tell him Neville .Longbottom if brains were gold youd be poorer than Weasley and thats saying something .Rons nerves were already stretched to the breaking point with anxiety about Harry .Im warning you Malfoy one more word Ron !said Hermione suddenly Harry !What ?Where ?Harry had suddenly gone into a spectacular dive which drew gasps and cheers from the crowd .Hermione stood up her crossed fingers in her mouth as Harry streaked toward the ground like a bullet .Youre in luck Weasley Potters obviously spotted some money on the ground !said Malfoy .Ron snapped .Before Malfoy knew what was happening Ron was on top of him wrestling him to the ground .Neville hesitated then clambered over the back of his seat to help .Come on Harry !Hermione screamed leaping onto her seat to watch as Harry sped straight at Snape she didnt even notice Malfoy and Ron rolling around under her seat or the scuffles and yelps coming from the whirl of fists that was Neville Crabbe and Goyle .Up in the air Snape turned on his broomstick just in time to see something scarlet shoot past him missing him by inches the next second Harry had pulled out of the dive his arm raised in triumph the Snitch clasped in his hand .The stands erupted it had to be a record no one could ever remember the Snitch being caught so quickly .Ron !Ron !Where are you ?The games over !Harrys won !Weve won !Gryffindor is in the lead !shrieked Hermione dancing up and down on her seat and hugging Parvati Patil in the row in front .Harry jumped off his broom a foot from the ground .He couldnt believe it .Hed done it the game was over it had barely lasted five minutes .As Gryffindors came spilling onto the field he saw Snape land nearby whitefaced and tightlipped then Harry felt a hand on his shoulder and looked up into Dumbledores smiling face .Well done said Dumbledore quietly so that only Harry could hear .Nice to see you havent been brooding about that mirror .been keeping busy .excellent .Snape spat bitterly on the ground .Jc Jc Jc Harry left the locker room alone some time later to take his Nimbus Two Thousand back to the broomshed .He couldnt ever remember feeling happier .Hed really done something to be proud of now no one could say he was just a famous name any more .The evening air had never smelled so sweet .He walked over the damp grass reliving the last hour in his head which was a happy blur Gryffindors running to lift him onto their shoulders Ron and Hermione in the distance jumping up and down Ron cheering through a heavy nosebleed .Harry had reached the shed .He leaned against the wooden door and looked up at Hogwarts with its windows glowing red in the setting sun .Gryffindor in the lead .Hed done it hed shown Snape .And speaking of Snape .A hooded figure came swiftly down the front steps of the castle .Clearly not wanting to be seen it walked as fast as possible toward the forbidden forest .Harrys victory faded from his mind as he watched .He recognized the figures pwalk .Snape sneaking into the forest while everyone else was at dinner what was going on ?Harry jumped back on his Nimbus Two Thousand and took off .Gliding silently over the castle he saw Snape enter the forest at a run .He followed .The trees were so thick he couldnt see where Snape had gone .He flew in circles lower and lower brushing the top branches of trees until he heard voices .He glided toward them and landed noiselessly in a towering beech tree .He climbed carefully along one of the branches holding tight to his broomstick trying to see through the leaves .Below in a shadowy clearing stood Snape but he wasnt alone .Quirrell was there too .Harry couldnt make out the look on his face but he was stuttering worse than ever .Harry strained to catch what they were saying . .ddont know why you wanted ttto meet here of all pplaces Severus .Oh I thought wed keep this private said Snape his voice icy .Students arent supposed to know about the Sorcerers Stone after all .Harry leaned forward .Quirrell was mumbling something .Snape interrupted him .Have you found out how to get past that beast of Hagrids yet ?Bbbut Severus I You dont want me as your enemy Quirrell said Snape taking a step toward him .II dont know what you You know perfectly well what I mean .An owl hooted loudly and Harry nearly fell out of the tree .He steadied himself in time to hear Snape say your little bit of hocuspocus .Im waiting .Bbut I dddont Very well Snape cut in .Well have another little chat soon when youve had time to think things over and decided where your loyalties lie .He threw his cloak over his head and strode out of the clearing .It was almost dark now but Harry could see Quirrell standing quite still as though he was petrified .Jc Jc Jc Harry where have you been ?Hermione squeaked .We won !You won !We won !shouted Ron thumping Harry on the back .And I gave Malfoy a black eye and Neville tried to take on Crabbe and Goyle single handed !Hes still out cold but Madam Pomfrey says hell be all right talk about showing Slytherin !Everyones waiting for you in the common room were having a party Fred and George stole some cakes and stuff from the kitchens .Never mind that now said Harry breathlessly .Lets find an empty room you wait til you hear this .He made sure Peeves wasnt inside before shutting the door behind them then he told them what hed seen and heard .So we were right it is the Sorcerers Stone and Snapes trying to force Quirrell to help him get it .He asked if he knew how to get past Fluffy and he said something about Quirrells ‘hocuspocus I reckon there are other things guarding the stone apart from Fluffy loads of enchantments probably and Quirrell would have done some antiDark Arts spell that Snape needs to break through So you mean the Stones only safe as long as Quirrell stands up to Snape ?said Hermione in alarm .Itll be gone by next Tuesday said Ron .NORBERT THE NORWEGIAN RIDGEBACK Quirrell however must have been braver than theyd thought .In the weeks that followed he did seem to be getting paler and thinner but it didnt look as though hed cracked yet .Every time they passed the thirdfloor corridor Harry Ron and Hermione would press their ears to the door to check that Fluffy was still ginside .Snape was sweeping about in his usual bad temper which surely meant that the Stone was still safe .Whenever Harry passed Quirrell these days he gave him an encouraging sort of smile and Ron had started telling people off for laughing at Quirrells stutter .Hermione however had more on her mind than the Sorcerers Stone .She had started drawing up study schedules and colorcoding all her notes .Harry and Ron wouldnt have minded but she kept nagging them to do the same .Hermione the exams are ages away .Ten weeks Hermione snapped .Thats not ages thats like a second to Nicolas Flamel .But were not six hundred years old Ron reminded her .Anyway what are you studying for you already know it all .What am I studying for ?Are you crazy ?You realize we need to pass these exams to get into the second year ?Theyre very important I should have started studying a month ago I dont know whats gotten into me .Unfortunately the teachers seemed to be thinking along the same lines as Hermione .They piled so much homework on them that the Easter holidays werent nearly as much fun as the Christmas ones .It was hard to relax with Hermione next to you reciting the twelve uses of dragons blood or practicing wand movements .Moaning and yawning Harry and Ron spent most of their free time in the library with her trying to get through all their extra work .Ill never remember this Ron burst out one afternoon throwing down his quill and looking longingly out of the library window .It was the first really fine day theyd had in months .The sky was a clear forgetmenot blue and there was a feeling in the air of summer coming .Harry who was looking up Dittany in One Thousand Magical Herbs and Fungi didnt look up until he heard Ron say Hagrid !What are you doing in the library ?Hagrid shuffled into view hiding something behind his back .He looked very out of place in his moleskin overcoat .Jus lookin he said in a shifty voice that got their interest at once .An whatre you lot up ter ?He looked suddenly suspicious .Yer not still lookin fer Nicolas Flamel are yeh ?Oh we found out who he is ages ago said Ron impressively .And we know what that dogs guarding its a Sorcerers St Shhhh Hagrid looked around quickly to see if anyone was listening .Don go shoutin about it whats the matter with yeh ?There are a few things we wanted to ask you as a matter of fact said Harry about whats guarding the Stone apart from Fluffy SHHHH !said Hagrid again .Listen come an see me later Im not promisin Ill tell yeh anythin mind but don go rabbitin about it in here students aren spposed ter know .Theyll think Ive told yeh See you later then said Harry .Hagrid shuffled off .What was he hiding behind his back ?said Hermione thoughtfully .Do you think it had anything to do with the Stone ?Im going to see what section he was in said Ron whod had enough of working .He came back a minute later with a pile of books in his arms and slammed them down on the table .Dragons .he whispered .Hagrid was looking up stuff about dragons !Look at these Dragon Species of Great Britain and Ireland From Egg to Inferno A Dragon Keepers Guide .Hagrid s always wanted a dragon he told me so the first time I ever met him said Harry .But its against our laws said Ron .Dragon breeding was outlawed by the Warlocks Convention of 1709 everyone knows that .Its hard to stop Muggles from noticing us if were keeping dragons in the back garden anyway you cant tame dragons its dangerous .You should see the burns Charlies got off wild ones in Romania .But there arent wild dragons in Britain ?said Harry .Of course there are said Ron .Common Welsh Green and Hebridean Blacks .The Ministry of Magic has a job hushing them up I can tell you .Our kind have to keep putting spells on Muggles whove spotted them to make them forget .So what on earths Hagrid up to ?said Hermione .When they knocked on the door of the gamekeepers hut an hour later they were surprised to see that all the curtains were closed .Hagrid called Who is it ?before he let them in and then shut the door quickly behind them .It was stifling hot inside .Even though it was such a warm day there was a blazing fire in the grate .Hagrid made them tea and offered them stoat sandwiches which they refused .So yeh wanted to ask me somethin ?Yes said Harry .There was no point beating around the bush .We were wondering if you could tell us whats guarding the Sorcerers Stone apart from Fluffy .Hagrid frowned at him .O course I cant he said .Number one I don know meself .Number two yeh know too much already so I wouldn tell yeh if I could .That Stones here fer a good reason .It was almost stolen outta Gringotts I sppose yehve worked that out an all ?Beats me how yeh even know abou Fluffy .Oh come on Hagrid you might not want to tell us but you do know you know everything that goes on round here said Hermione in a warm flattering voice .Hagrid s beard twitched and they could tell he was smiling .We only wondered who had done the guarding really .Hermione went on .We wondered who Dumbledore had trusted enough to help him apart from you .Hagrid s chest swelled at these last words .Harry and Ron beamed at Hermione .Well I don spose it could hurt ter tell yeh that .lets see .he borrowed Fluffy from me .then some o the teachers did enchantments .Professor Sprout Professor Flitwick Professor McGonagall he ticked them off on his fingers Professor Quirrell an Dumbledore himself did somethin o course .Hang on Ive forgotten someone .Oh yeah Professor Snape .Snape ?Yeah yer not still on abou that are yeh ?Look Snape helped protect the Stone hes not about ter steal it .Harry knew Ron and Hermione were thinking the same as he was .If Snape had been in on protecting the Stone it must have been easy to find out how the other teachers had guarded it .He probably knew everything except it seemed Quirrells spell and how to get past Fluffy .Youre the only one who knows how to get past Fluffy arent you Hagrid ?said Harry anxiously .And you wouldnt tell anyone would you ?Not even one of the teachers ?Not a soul knows except me an Dumbledore said Hagrid proudly .Well thats something Harry muttered to the others .Hagrid can we have a window open ?Im boiling .Cant Harry sorry said Hagrid .Harry noticed him glance at the fire .Harry looked at it too .Hagrid whats that ?But he already knew what it was .In the very heart of the fire underneath the kettle was a huge black egg .Ah said Hagrid fiddling nervously with his beard Thats er .Where did you get it Hagrid ?said Ron crouching over the fire to get a closer look at the egg .It mustve cost you a fortune .Won it said Hagrid .Las night .I was down in the village havin a few drinks an got into a game o cards with a stranger .Think he was quite glad ter get rid of it ter be honest .But what are you going to do with it when its hatched ?said Hermione .Well Ive bin doin some readin said Hagrid pulling a large book from under his pillow .Got this outta the library Dragon Breeding for Pleasure and Profit its a bit outta date o course but its all in here .Keep the egg in the fire cause their mothers breathe on em see an when it hatches feed it on a bucket o brandy mixed with chicken blood every half hour .An see here how ter recognize diffrent eggs what I got theres a Norwegian Ridgeback .Theyre rare them .He looked very pleased with himself but Hermione didnt .Hagrid you live in a wooden house she said .But Hagrid wasnt listening .He was humming merrily as he stoked the fire .So now they had something else to worry about what might happen to Hagrid if anyone found out he was hiding an illegal dragon in his hut .Wonder what its like to have a peaceful life Ron sighed as evening after evening they struggled through all the extra homework they were getting .Hermione had now started making study schedules for Harry and Ron too .It was driving them nuts .Then one breakfast time Hedwig brought Harry another note from Hagrid .He had written only two words Its hatching .Ron wanted to skip Herbology and go straight down to the hut .Hermione wouldnt hear of it .Hermione how many times in our lives are we going to see a dragon hatching ?Weve got lessons well get into trouble and thats nothing to what Hagrid s going to be in when someone finds out what hes doing Shut up !Harry whispered .Malfoy was only a few feet away and he had stopped dead to listen .How much had he heard ?Harry didnt like the look on Malfoys face at all .Ron and Hermione argued all the way to Herbology and in the end Hermione agreed to run down to Hagrids with the other two during morning break .When the bell sounded from the castle at the end of their lesson the three of them dropped their trowels at once and hurried through the grounds to the edge of the forest .Hagrid greeted them looking flushed and excited .Its nearly out .He ushered them inside .The egg was lying on the table .There were deep cracks in it .Something was moving inside a funny clicking noise was coming from it .They all drew their chairs up to the table and watched with bated breath .All at once there was a scraping noise and the egg split open .The baby dragon flopped onto the table .It wasnt exactly pretty Harry thought it looked like a crumpled black umbrella .Its spiny wings were huge compared to its skinny jet body it had a long snout with wide nostrils the stubs of horns and bulging orange eyes .It sneezed .A couple of sparks flew out of its snout .Isnt he beautiful ?Hagrid murmured .He reached out a hand to stroke the dragons head .It snapped at his fingers showing pointed fangs .Bless him look he knows his mommy !said Hagrid .Hagrid said Hermione how fast do Norwegian Ridgebacks grow exactly ?Hagrid was about to answer when the color suddenly drained from his face he leapt to his feet and ran to the window .Whats the matter ?Someone was lookin through the gap in the curtains its a kid hes runnin back up ter the school .Harry bolted to the door and looked out .Even at a distance there was no mistaking him .Malfoy had seen the dragon .Something about the smile lurking on Malfoys face during the next week made Harry Ron and Hermione very nervous .They spent most of their free time in Hagrid s darkened hut trying to reason with him .Just let him go Harry urged .Set him free .I cant said Hagrid .Hes too little .Hed die .They looked at the dragon .It had grown three times in length in just a week .Smoke kept furling out of its nostrils .Hagrid hadnt been doing his gamekeeping duties because the dragon was keeping him so busy .There were empty brandy bottles and chicken feathers all over the floor .Ive decided to call him Norbert said Hagrid looking at the dragon with misty eyes .He really knows me now watch .Norbert !Norbert !Wheres Mommy ?Hes lost his marbles Ron muttered in Harrys ear .Hagrid said Harry loudly give it two weeks and Norberts going to be as long as your house .Malfoy could go to Dumbledore at any moment .Hagrid bit his lip .I I know I cant keep him forever but I cant jus dump him cant .Harry suddenly turned to Ron .Charlie he said .Youre losing it too said Ron .Im Ron remember ?No Charlie your brother Charlie .In Romania .Studying dragons .We could send Norbert to him .Charlie can take care of him and then put him back in the wild !Brilliant !said Ron .How about it Hagrid ?And in the end Hagrid agreed that they could send an owl to Charlie to ask him .The following week dragged by .Wednesday night found Hermione and Harry sitting alone in the common room long after everyone else had gone to bed .The clock on the wall had just chimed midnight when the portrait hole burst open .Ron appeared out of nowhere as he pulled off Harrys Invisibility Cloak .He had been down at Hagrids hut helping him feed Norbert who was now eating dead rats by the crate .It bit me !he said showing them his hand which was wrapped in a bloody handkerchief .Im not going to be able to hold a quill for a week .I tell you that dragons the most horrible animal Ive ever met but the way Hagrid goes on about it youd think it was a fluffy little bunny rabbit .When it bit me he told me off for frightening it .And when I left he was singing it a lullaby .There was a tap on the dark window .Its Hedwig !said Harry hurrying to let her in .Shell have Charlies answer !The three of them put their heads together to read the note .Dear Ron How are you ?Thanks for the letter Id be glad to take the Norwegian Ridgeback but it wont be easy getting him here .I think the best thing will be to send him over with some friends of mine who are coming to visit me next week .Trouble is they mustnt be seen carrying an illegal dragon .Could you get the Ridgeback up the tallest tower at midnight on Saturday ?They can meet you there and take him away while its still dark .Send me an answer as soon as possible .Love Charlie They looked at one another .Weve got the Invisibility Cloak said Harry .It shouldnt be too difficult I think the cloaks big enough to cover two of us and Norbert .It was a mark of how bad the last week had been that the other two agreed with him .Anything to get rid of Norbert and Malfoy .There was a hitch .By the next morning Rons bitten hand had swollen to twice its usual size .He didnt know whether it was safe to go to Madam Pomfrey would she recognize a dragon bite ?By the afternoon though he had no choice .The cut had turned a nasty shade of green .It looked as if Norberts fangs were poisonous .Harry and Hermione rushed up to the hospital wing at the end of the day to find Ron in a terrible state in bed .Its not just my hand he whispered although that feels like its about to fall off .Malfoy told Madam Pomfrey he wanted to borrow one of my books so he could come and have a good laugh at me .He kept threatening to tell her what really bit me Ive told her it was a dog but I dont think she believes me I shouldnt have hit him at the Quidditch match thats why hes doing this .Harry and Hermione tried to calm Ron down .Itll all be over at midnight on Saturday said Hermione but this didnt soothe Ron at all .On the contrary he sat bolt upright and broke into a sweat .Midnight on Saturday !he said in a hoarse voice .Oh no oh no Ive just remembered Charlies letter was in that book Malfoy took hes going to know were getting rid of Norbert .Harry and Hermione didnt get a chance to answer .Madam Pomfrey came over at that moment and made them leave saying Ron needed sleep .Its too late to change the plan now Harry told Hermione .We havent got time to send Charlie another owl and this could be our only chance to get rid of Norbert .Well have to risk it .And we have got the Invisibility Cloak Malfoy doesnt know about that .They found Fang the boarhound sitting outside with a bandaged tail when they went to tell Hagrid who opened a window to talk to them .I wont let you in he puffed .Norberts at a tricky stage nothin I cant handle .When they told him about Charlies letter his eyes filled with tears although that might have been because Norbert had just bitten him on the leg .Aargh !Its all right he only got my boot jus playin hes only a baby after all .The baby banged its tail on the wall making the windows rattle .Harry and Hermione walked back to the castle feeling Saturday couldnt come quickly enough .They would have felt sorry for Hagrid when the time came for him to say goodbye to Norbert if they hadnt been so worried about what they had to do .It was a very dark cloudy night and they were a bit late arriving at Hagrid s hut because theyd had to wait for Peeves to get out of their way in the entrance hall where hed been playing tennis against the wall .Hagrid had Norbert packed and ready in a large crate .Hes got lots o rats an some brandy fer the journey said Hagrid in a muffled voice .An Ive packed his teddy bear in case he gets lonely .From inside the crate came ripping noises that sounded to Harry as though the teddy was having his head torn off .Byebye Norbert !Hagrid sobbed as Harry and Hermione covered the crate with the Invisibility Cloak and stepped underneath it themselves .Mommy will never forget you !How they managed to get the crate back up to the castle they never knew .Midnight ticked nearer as they heaved Norbert up the marble staircase in the entrance hall and along the dark corridors .Up another staircase then another even one of Harrys shortcuts didnt make the work much easier .Nearly there !Harry panted as they reached the corridor beneath the tallest tower .Then a sudden movement ahead of them made them almost drop the crate .Forgetting that they were already invisible they shrank into the shadows staring at the dark outlines of two people grappling with each other ten feet away .A lamp flared .Professor McGonagall in a tartan bathrobe and a hair net had Malfoy by the ear .Detention !she shouted .And twenty points from Slytherin !Wandering around in the middle of the night how dare you You dont understand Professor .Harry Potters coming hes got a dragon !What utter rubbish !How dare you tell such lies !Come on I shall see Professor Snape about you Malfoy !The steep spiral staircase up to the top of the tower seemed the easiest thing in the world after that .Not until theyd stepped out into the cold night air did they throw off the cloak glad to be able to breathe properly again .Hermione did a sort of jig .Malfoys got detention !I could sing !Dont Harry advised her .Chuckling about Malfoy they waited Norbert thrashing about in his crate .About ten minutes later four broomsticks came swooping down out of the darkness .Charlies friends were a cheery lot .They showed Harry and Hermione the harness theyd rigged up so they could suspend Norbert between them .They all helped buckle Norbert safely into it and then Harry and Hermione shook hands with the others and thanked them very much .At last Norbert was going .going .gone .They slipped back down the spiral staircase their hearts as light as their hands now that Norbert was off them .No more dragon Malfoy in detention what could spoil their happiness ?The answer to that was waiting at the foot of the stairs .As they stepped into the corridor Filchs face loomed suddenly out of the darkness .Well well well he whispered we are in trouble .Theyd left the Invisibility Cloak on top of the tower .THE FORBIDDEN FOREST Things couldnt have been worse .Filch took them down to Professor McGonagalls study on the first floor where they sat and waited without saying a word to each other .Hermione was trembling .Excuses alibis and wild coverup stories chased each other around Harrys brain each more feeble than the last .He couldnt see how they were going to get out of trouble this time .They were cornered .How could they have been so stupid as to forget the cloak ?There was no reason on earth that Professor McGonagall would accept for their being out of bed and creeping around the school in the dead of night let alone being up the tallest Astronomy Tower which was outofbounds except for classes .Add Norbert and the Invisibility Cloak and they might as well be packing their bags already .Had Harry thought that things couldnt have been worse ?He was wrong .When Professor McGonagall appeared she was leading Neville .Harry !Neville burst out the moment he saw the other two .I was trying to find you to warn you I heard Malfoy saying he was going to catch you he said you had a drag Harry shook his head violently to shut Neville up but Professor McGonagall had seen .She looked more likely to breathe fire than Norbert as she towered over the three of them .I would never have believed it of any of you .Mr Filch says you were up in the Astronomy Tower .Its one oclock in the morning .Explain yourselves .It was the first time Hermione had ever failed to answer a teachers question .She was staring at her slippers as still as a statue .I think Ive got a good idea of whats been going on said Professor McGonagall .It doesnt take a genius to work it out .You fed Draco Malfoy some cockand bull story about a dragon trying to get him out of bed and into trouble .Ive already caught him .I suppose you think its funny that Longbottom here heard the story and believed it too ?Harry caught Nevilles eye and tried to tell him without words that this wasnt true because Neville was looking stunned and hurt .Poor blundering Neville Harry knew what it must have cost him to try and find them in the dark to warn them .Im disgusted said Professor McGonagall .Four students out of bed in one night !Ive never heard of such a thing before !You Miss Granger I thought you had more sense .As for you Mr Potter I thought Gryffindor meant more to you than this .All three of you will receive detentions yes you too Mr Longbottom nothing gives you the right to walk around school at night especially these days its very dangerous and fifty points will be taken from Gryffindor .Fifty ?Harry gasped they would lose the lead the lead hed won in the last Quidditch match .Fifty points each said Professor McGonagall breathing heavily through her long pointed nose .Professor please You cant Dont tell me what I can and cant do Potter .Now get back to bed all of you .Ive never been more ashamed of Gryffindor students .A hundred and fifty points lost .That put Gryffindor in last place .In one night theyd ruined any chance Gryffindor had had for the House Cup .Harry felt as though the bottom had dropped out of his stomach .How could they ever make up for this ?Harry didnt sleep all night .He could hear Neville sobbing into his pillow for what seemed like hours .Harry couldnt think of anything to say to comfort him .He knew Neville like himself was dreading the dawn .What would happen when the rest of Gryffindor found out what theyd done ?At first Gryffindors passing the giant hourglasses that recorded the House points the next day thought there d been a mistake .How could they suddenly have a hundred and fifty points fewer than yesterday ?And then the story started to spread Harry Potter the famous Harry Potter their hero of two Quidditch matches had lost them all those points him and a couple of other stupid first years .From being one of the most popular and admired people at the school Harry was suddenly the most hated .Even Ravenclaws and Hufflepuffs turned on him because everyone had been longing to see Slytherin lose the House Cup .Everywhere Harry went people pointed and didnt trouble to lower their voices as they insulted him .Slytherins on the other hand clapped as he walked past them whistling and cheering Thanks Potter we owe you one !Only Ron stood by him .Theyll all forget this in a few weeks .Fred and George have lost loads of points in all the time theyve been here and people still like them .Theyve never lost a hundred and fifty points in one go though have they ?said Harry miserably .Well no Ron admitted .It was a bit late to repair the damage but Harry swore to himself not to meddle in things that werent his business from now on .Hed had it with sneaking around and spying .He felt so ashamed of himself that he went to Wood and offered to resign from the Quidditch team .Resign ?Wood thundered .What goodll that do ?How are we going to get any points back if we cant win at Quidditch ?But even Quidditch had lost its fun .The rest of the team wouldnt speak to Harry during practice and if they had to speak about him they called him the Seeker .Hermione and Neville were suffering too .They didnt have as bad a time as Harry because they werent as wellknown but nobody would speak to them either .Hermione had stopped drawing attention to herself in class keeping her head down and working in silence .Harry was almost glad that the exams werent far away .All the studying he had to do kept his mind off his misery .He Ron and Hermione kept to themselves working late into the night trying to remember the ingredients in complicated potions learn charms and spells by heart memorize the dates of magical discoveries and goblin rebellions .Then about a week before the exams were due to start Harrys new resolution not to interfere in anything that didnt concern him was put to an unexpected test .Walking back from the library on his own one afternoon he heard somebody whimpering from a classroom up ahead .As he drew closer he heard Quirrells voice .No no not again please It sounded as though someone was threatening him .Harry moved closer .All right all right he heard Quirrell sob .Next second Quirrell came hurrying out of the classroom straightening his turban .He was pale and looked as though he was about to cry .He strode out of sight Harry didnt think Quirrell had even noticed him .He waited until Quirrells footsteps had disappeared then peered into the classroom .It was empty but a door stood ajar at the other end .Harry was halfway toward it before he remembered what hed promised himself about not meddling .All the same hed have gambled twelve Sorcerers Stones that Snape had just left the room and from what Harry had just heard Snape would be walking with a new spring in his step Quirrell seemed to have given in at last .Harry went back to the library where Hermione was testing Ron on Astronomy .Harry told them what hed heard .Snapes done it then !said Ron .If Quirrells told him how to break his AntiDark Force spell Theres still Fluffy though said Hermione .Maybe Snapes found out how to get past him without asking Hagrid said Ron looking up at the thousands of books surrounding them .I bet theres a book somewhere in here telling you how to get past a giant threeheaded dog .So what do we do Harry ?The light of adventure was kindling again in Rons eyes but Hermione answered before Harry could .Go to Dumbledore .Thats what we should have done ages ago .If we try anything ourselves well be thrown out for sure .But weve got no proof .said Harry .Quirrells too scared to back us up .Snapes only got to say he doesnt know how the troll got in at Halloween and that he was nowhere near the third floor who do you think theyll believe him or us ?Its not exactly a secret we hate him Dumbledore ll think we made it up to get him sacked .Filch wouldnt help us if his life depended on it hes too friendly with Snape and the more students get thrown out the better hell think .And dont forget were not supposed to know about the Stone or Fluffy .Thatll take a lot of explaining .Hermione looked convinced but Ron didnt .If we just do a bit of poking around No said Harry flatly weve done enough poking around .He pulled a map of Jupiter toward him and started to learn the names of its moons .The following morning notes were delivered to Harry Hermione and Neville at the breakfast table .They were all the same Your detention will take place at eleven oclock tonight .Meet Mr Filch in the entrance hall .Professor M .McGonagall Harry had forgotten they still had detentions to do in the furor over the points theyd lost .He half expected Hermione to complain that this was a whole night of studying lost but she didnt say a word .Like Harry she felt they deserved what theyd got .At eleven oclock that night they said goodbye to Ron in the common room and went down to the entrance hall with Neville .Filch was already there and so was Malfoy .Harry had also forgotten that Malfoy had gotten a detention too .Follow me said Filch lighting a lamp and leading them outside .I bet youll think twice about breaking a school rule again wont you eh ?he said leering at them .Oh yes .hard work and pain are the best teachers if you ask me .Its just a pity they let the old punishments die out .hang you by your wrists from the ceiling for a few days Ive got the chains still in my office keep em well oiled in case theyre ever needed .Right off we go and dont think of running off now itll be worse for you if you do .They marched off across the dark grounds .Neville kept sniffing .Harry wondered what their punishment was going to be .It must be something really horrible or Filch wouldnt be sounding so delighted .The moon was bright but clouds scudding across it kept throwing them into darkness .Ahead Harry could see the lighted windows of Hagrids hut .Then they heard a distant shout .Is that you Filch ?Hurry up I want ter get started .Harrys heart rose if they were going to be working with Hagrid it wouldnt be so bad .His relief must have showed in his face because Filch said I suppose you think youll be enjoying yourself with that oaf ?Well think again boy its into the forest youre going and Im much mistaken if youll all come out in one piece .At this Neville let out a little moan and Malfoy stopped dead in his tracks .The forest ?he repeated and he didnt sound quite as cool as usual .We cant go in there at night theres all sorts of things in there werewolves I heard .Neville clutched the sleeve of Harrys robe and made a choking noise .Thats your problem isnt it ?said Filch his voice cracking with glee .Shouldve thought of them werewolves before you got in trouble shouldnt you ?Hagrid came striding toward them out of the dark Fang at his heel .He was carrying his large crossbow and a quiver of arrows hung over his shoulder .Abou time he said .I bin waitin fer half an hour already .All right Harry Hermione ?I shouldnt be too friendly to them Hagrid said Filch coldly theyre here to be punished after all .Thats why yer late is it ?said Hagrid frowning at Filch .Bin lecturin them eh ?Snot your place ter do that .Yehve done yer bit Ill take over from here .Ill be back at dawn said Filch for whats left of them he added nastily and he turned and started back toward the castle his lamp bobbing away in the darkness .Malfoy now turned to Hagrid .Im not going in that forest he said and Harry was pleased to hear the note of panic in his voice .Yeh are if yeh want ter stay at Hogwarts said Hagrid fiercely .Yehve done wrong an now yehve got ter pay fer it .But this is servant stuff its not for students to do .I thought wed be copying lines or something if my father knew I was doing this hed tell yer thats how it is at Hogwarts Hagrid growled .Copyin lines !What goods that ter anyone ?Yehll do summat useful or yehll get out .If yeh think yer fatherd rather you were expelled then get back off ter the castle an pack .Go on !Malfoy didnt move .He looked at Hagrid furiously but then dropped his gaze .Right then said Hagrid now listen carefully cause its dangerous what were gonna do tonight an I don want no one takin risks .Follow me over here a moment .He led them to the very edge of the forest .Holding his lamp up high he pointed down a narrow winding earth track that disappeared into the thick black trees .A light breeze lifted their hair as they looked into the forest .Look there said Hagrid see that stuff shinin on the ground ?Silvery stuff ?Thats unicorn blood .Theres a unicorn in there bin hurt badly by summat .This is the second time in a week .I found one dead last Wednesday .Were gonna try an find the poor thing .We might have ter put it out of its misery .And what if whatever hurt the unicorn finds us first ?said Malfoy unable to keep the fear out of his voice .Theres nothin that lives in the forest thatll hurt yeh if yer with me or Fang said Hagrid .An keep ter the path .Right now were gonna split inter two parties an follow the trail in diffrent directions .Theres blood all over the place it mustve bin staggerin around since last night at least .I want Fang said Malfoy quickly looking at Fangs long teeth .All right but I warn yeh hes a coward said Hagrid .So me Harry an Hermionell go one way an Draco Neville an Fangll go the other .Now if any of us finds the unicorn well send up green sparks right ?Get yer wands out an practice now thats it an if anyone gets in trouble send up red sparks an well all come an find yeh so be careful lets go .The forest was black and silent .A little way into it they reached a fork in the earth path and Harry Hermione and Hagrid took the left path while Malfoy Neville and Fang took the right .They walked in silence their eyes on the ground .Every now and then a ray of moonlight through the branches above lit a spot of silverblue blood on the fallen leaves .Harry saw that Hagrid looked very worried .Could a werewolf be killing the unicorns ?Harry asked .Not fast enough said Hagrid .Its not easy ter catch a unicorn theyre powerful magic creatures .I never knew one ter be hurt before .They walked past a mossy tree stump .Harry could hear running water there must be a stream somewhere close by .There were still spots of unicorn blood here and there along the winding path .You all right Hermione ?Hagrid whispered .Don worry it cantve gone far if its this badly hurt an then well be able ter GET BEHIND THAT TREE !Hagrid seized Harry and Hermione and hoisted them off the path behind a towering oak .He pulled out an arrow and fitted it into his crossbow raising it ready to fire .The three of them listened .Something was slithering over dead leaves nearby it sounded like a cloak trailing along the ground .Hagrid was squinting up the dark path but after a few seconds the sound faded away .I knew it he murmured .Theres summat in here that shouldn be .A werewolf ?Harry suggested .That wasn no werewolf an it wasn no unicorn neither said Hagrid grimly .Right follow me but careful now .They walked more slowly ears straining for the faintest sound .Suddenly in a clearing ahead something definitely moved .Whos there ?Hagrid called .Show yerself Im armed !And into the clearing came was it a man or a horse ?To the waist a man with red hair and beard but below that was a horses gleaming chestnut body with a long reddish tail .Harry and Hermiones jaws dropped .Oh its you Ronan said Hagrid in relief .How are yeh ?He walked forward and shook the centaurs hand .Good evening to you Hagrid said Ronan .He had a deep sorrowful voice .Were you going to shoot me ?Cant be too careful Ronan said Hagrid patting his crossbow .Theres summat bad loose in this forest .This is Harry Potter an Hermione Granger by the way .Students up at the school .An this is Ronan you two .Hes a centaur .Wed noticed said Hermione faintly .Good evening said Ronan .Students are you ?And do you learn much up at the school ?Erm A bit said Hermione timidly .A bit .Well thats something .Ronan sighed .He flung back his head and stared at the sky .Mars is bright tonight .Yeah said Hagrid glancing up too .Listen Im glad weve run inter yeh Ronan cause theres a unicorn bin hurt you seen anythin ?Ronan didnt answer immediately .He stared unblinkingly upward then sighed again .Always the innocent are the first victims he said .So it has been for ages past so it is now .Yeah said Hagrid but have yeh seen anythin Ronan ?Anythin unusual ?Mars is bright tonight Ronan repeated while Hagrid watched him impatiently .Unusually bright .Yeah but I was meanin anythin unusual a bit nearer home said Hagrid .So yeh havent noticed anythin strange ?Yet again Ronan took a while to answer .At last he said The forest hides many secrets .A movement in the trees behind Ronan made Hagrid raise his bow again but it was only a second centaur blackhaired and bodied and wilderlooking than Ronan .Hullo Bane said Hagrid .All right ?Good evening Hagrid I hope you are well ?Well enough .Look Ive jus bin askin Ronan you seen anythin odd in here lately ?Theres a unicorn bin injured would yeh know anythin about it ?Bane walked over to stand next to Ronan .He looked skyward .Mars is bright tonight he said simply .Weve heard said Hagrid grumpily .Well if either of you do see anythin let me know wont yeh ?Well be off then .Harry and Hermione followed him out of the clearing staring over their shoulders at Ronan and Bane until the trees blocked their view .Never said Hagrid irritably try an get a straight answer out of a centaur .Ruddy stargazers .Not interested in anythin closern the moon .Are there many of them in here ?asked Hermione .Oh a fair few .Keep themselves to themselves mostly but theyre good enough about turnin up if ever I want a word .Theyre deep mind centaurs .they know things .jus don let on much .Dyou think that was a centaur we heard earlier ?said Harry .Did that sound like hooves to you ?Nah if yeh ask me that was whats bin killin the unicorns never heard anythin like it before .They walked on through the dense dark trees .Harry kept looking nervously over his shoulder .He had the nasty feeling they were being watched .He was very glad they had Hagrid and his crossbow with them .They had just passed a bend in the path when Hermione grabbed Hagrid s arm .Hagrid !Look !Red sparks the others are in trouble !You two wait here !Hagrid shouted .Stay on the path Ill come back for yeh !They heard him crashing away through the undergrowth and stood looking at each other very scared until they couldnt hear anything but the rustling of leaves around them .You dont think theyve been hurt do you ?whispered Hermione .I dont care if Malfoy has but if somethings got Neville .its our fault hes here in the first place .The minutes dragged by .Their ears seemed sharper than usual .Harrys seemed to be picking up every sigh of the wind every cracking twig .What was going on ?Where were the others ?At last a great crunching noise announced Hagrids return .Malfoy Neville and Fang were with him .Hagrid was fuming .Malfoy it seemed had sneaked up behind Neville and grabbed him as a joke .Neville had panicked and sent up the sparks .Well be lucky ter catch anythin now with the racket you two were makin .Right were changin groups Neville you stay with me an Hermione Harry you go with Fang an this idiot .Im sorry Hagrid added in a whisper to Harry but hell have a harder time frightenin you an weve gotta get this done .So Harry set off into the heart of the forest with Malfoy and Fang .They walked for nearly half an hour deeper and deeper into the forest until the path became almost impossible to follow because the trees were so thick .Harry thought the blood seemed to be getting thicker .There were splashes on the roots of a tree as though the poor creature had been thrashing around in pain close by .Harry could see a clearing ahead through the tangled branches of an ancient oak .Look he murmured holding out his arm to stop Malfoy .Something bright white was gleaming on the ground .They inched closer .It was the unicorn all right and it was dead .Harry had never seen anything so beautiful and sad .Its long slender legs were stuck out at odd angles where it had fallen and its mane was spread pearlywhite on the dark leaves .Harry had taken one step toward it when a slithering sound made him freeze where he stood .A bush on the edge of the clearing quivered .Then out of the shadows a hooded figure came crawling across the ground like some stalking beast .Harry Malfoy and Fang stood transfixed .The cloaked figure reached the unicorn lowered its head over the wound in the animals side and began to drink its blood .aaRGH !Malfoy let out a terrible scream and bolted so did Fang .The hooded figure raised its head and looked right at Harry unicorn blood was dribbling down its front .It got to its feet and came swiftly toward Harry he couldnt move for fear .Then a pain like hed never felt before pierced his head it was as though his scar were on fire .Half blinded he staggered backward .He heard hooves behind him galloping and something jumped clean over Harry charging at the figure .The pain in Harrys head was so bad he fell to his knees .It took a minute or two to pass .When he looked up the figure had gone .A centaur was standing over him not Ronan or Bane this one looked younger he had whiteblond hair and a palomino body .Are you all right ?said the centaur pulling Harry to his feet .Yes thank you what was that ?The centaur didnt answer .He had astonishingly blue eyes like pale sapphires .He looked carefully at Harry his eyes lingering on the scar that stood out livid on Harrys forehead .You are the Potter boy he said .You had better get back to Hagrid .The forest is not safe at this time especially for you .Can you ride ?It will be quicker this way .My name is Firenze he added as he lowered himself on to his front legs so that Harry could clamber onto his back .There was suddenly a sound of more galloping from the other side of the clearing .Ronan and Bane came bursting through the trees their flanks heaving and sweaty .Firenze !Bane thundered .What are you doing ?You have a human on your back !Have you no shame ?Are you a common mule ?Do you realize who this is ?said Firenze .This is the Potter boy .The quicker he leaves this forest the better .What have you been telling him ?growled Bane .Remember Firenze we are sworn not to set ourselves against the heavens .Have we not read what is to come in the movements of the planets ?Ronan pawed the ground nervously .Im sure Firenze thought he was acting for the best he said in his gloomy voice .Bane kicked his back legs in anger .For the best !What is that to do with us ?Centaurs are concerned with what has been foretold !It is not our business to run around like donkeys after stray humans in our forest !Firenze suddenly reared on to his hind legs in anger so that Harry had to grab his shoulders to stay on .Do you not see that unicorn ?Firenze bellowed at Bane .Do you not understand why it was killed ?Or have the planets not let you in on that secret ?I set myself against what is lurking in this forest Bane yes with humans alongside me if I must .And Firenze whisked around with Harry clutching on as best he could they plunged off into the trees leaving Ronan and Bane behind them .Harry didnt have a clue what was going on .Whys Bane so angry ?he asked .What was that thing you saved me from anyway ?Firenze slowed to a walk warned Harry to keep his head bowed in case of lowhanging branches but did not answer Harrys question .They made their way through the trees in silence for so long that Harry thought Firenze didnt want to talk to him anymore .They were passing through a particularly dense patch of trees however when Firenze suddenly stopped .Harry Potter do you know what unicorn blood is used for ?No said Harry startled by the odd question .Weve only used the horn and tail hair in Potions .That is because it is a monstrous thing to slay a unicorn said Firenze .Only one who has nothing to lose and everything to gain would commit such a crime .The blood of a unicorn will keep you alive even if you are an inch from death but at a terrible price .You have slain something pure and defenseless to save yourself and you will have but a halflife a cursed life from the moment the blood touches your lips .Harry stared at the back of Firenzes head which was dappled silver in the moonlight .But whod be that desperate ?he wondered aloud .If youre going to be cursed forever deaths better isnt it ?It is Firenze agreed unless all you need is to stay alive long enough to drink something else something that will bring you back to full strength and power something that will mean you can never die .Mr Potter do you know what is hidden in the school at this very moment ?The Sorcerers Stone !Of course the Elixir of Life !But I dont understand who Can you think of nobody who has waited many years to return to power who has clung to life awaiting their chance ?It was as though an iron fist had clenched suddenly around Harrys heart .Over the rustling of the trees he seemed to hear once more what Hagrid had told him on the night they had met Some say he died .Codswallop in my opinion .Dunno if he had enough human left in him to die .Do you mean Harry croaked that was VoZ Harry !Harry are you all right ?Hermione was running toward them down the path Hagrid puffing along behind her .Im fine said Harry hardly knowing what he was saying .The unicorns dead Hagrid its in that clearing back there .This is where I leave you Firenze murmured as Hagrid hurried off to examine the unicorn .You are safe now .Harry slid off his back .Good luck Harry Potter said Firenze .The planets have been read wrongly before now even by centaurs .I hope this is one of those times .He turned and cantered back into the depths of the forest leaving Harry shivering behind him .Ron had fallen asleep in the dark common room waiting for them to return .He shouted something about Quidditch fouls when Harry roughly shook him awake .In a matter of seconds though he was wide eyed as Harry began to tell him and Hermione what had happened in the forest .Harry couldnt sit down .He paced up and down in front of the fire .He was still shaking .Snape wants the Stone for Voldemort .and Voldemorts waiting in the forest .and all this time we thought Snape just wanted to get rich .Stop saying the name !said Ron in a terrified whisper as if he thought Voldemort could hear them .Harry wasnt listening .Firenze saved me but he shouldnt have done so .Bane was furious .he was talking about interfering with what the planets say is going to happen .They must show that Voldemorts coming back .Bane thinks Firenze should have let Voldemort kill me .I suppose thats written in the stars as well .Will you stop saying the name Ron hissed .So all Ive got to wait for now is Snape to steal the Stone Harry went on feverishly then Voldemort will be able to come and finish me off .Well I suppose Bane 11 be happy .Hermione looked very frightened but she had a word of comfort .Harry everyone says Dumbledores the only one YouKnowWho was ever afraid of .With Dumbledore around YouKnowWho wont touch you .Anyway who says the centaurs are right ?It sounds like fortunetelling to me and Professor McGonagall says thats a very imprecise branch of magic .The sky had turned light before they stopped talking .They went to bed exhausted their throats sore .But the nights surprises werent over .When Harry pulled back his sheets he found his Invisibility Cloak folded neatly underneath them .There was a note pinned to it Just in case .THROUGH THE TRAPDOOR In years to come Harry would never quite remember how he had managed to get through his exams when he half expected Voldemort to come bursting through the door at any moment .Yet the days crept by and there could be no doubt that Fluffy was still alive and well behind the locked door .It was sweltering hot especially in the large classroom where they did their written papers .They had been given special new quills for the exams which had been bewitched with an AntiCheating spell .They had practical exams as well .Professor Flitwick called them one by one into his class to see if they could make a pineapple tapdance across a desk .Professor McGonagall watched them turn a mouse into a snuffbox points were given for how pretty the snuffbox was but taken away if it had whiskers .Snape made them all nervous breathing down their necks while they tried to remember how to make a Forgetfulness potion .Harry did the best he could trying to ignore the stabbing pains in his forehead which had been bothering him ever since his trip into the forest .Neville thought Harry had a bad case of exam nerves because Harry couldnt sleep but the truth was that Harry kept being woken by his old nightmare except that it was now worse than ever because there was a hooded figure dripping blood in it .Maybe it was because they hadnt seen what Harry had seen in the forest or because they didnt have scars burning on their foreheads but Ron and Hermione didnt seem as worried about the Stone as Harry .The idea of Voldemort certainly scared them but he didnt keep visiting them in dreams and they were so busy with their studying they didnt have much time to fret about what Snape or anyone else might be up to .Their very last exam was History of Magic .One hour of answering questions about batty old wizards whod invented selfstirring cauldrons and theyd be free free for a whole wonderful week until their exam results came out .When the ghost of Professor Binns told them to put down their quills and roll up their parchment Harry couldnt help cheering with the rest .That was far easier than I thought it would be said Hermione as they joined the crowds flocking out onto the sunny grounds .I neednt have learned about the 1637 Werewolf Code of Conduct or the uprising of Elfric the Eager .Hermione always liked to go through their exam papers afterward but Ron said this made him feel ill so they wandered down to the lake and flopped under a tree .The Weasley twins and Lee Jordan were tickling the tentacles of a giant squid which was basking in the warm shallows .No more studying Ron sighed happily stretching out on the grass .You could look more cheerful Harry weve got a week before we find out how badly weve done theres no need to worry yet .Harry was rubbing his forehead .I wish I knew what this means he burst out angrily .My scar keeps hurting its happened before but never as often as this .Go to Madam Pomfrey Hermione suggested .Im not ill said Harry .I think its a warning .it means dangers coming .Ron couldnt get worked up it was too hot .Harry relax Hermione s right the Stones safe as long as Dumbledores around .Anyway weve never had any proof Snape found out how to get past Fluffy .He nearly had his leg ripped off once hes not going to try it again in a hurry .And Neville will play Quidditch for England before Hagrid lets Dumbledore down .Harry nodded but he couldnt shake off a lurking feeling that there was something hed forgotten to do something important .When he tried to explain this Hermione said Thats just the exams .I woke up last night and was halfway through my Transfiguration notes before I remembered wed done that one .Harry was quite sure the unsettled feeling didnt have anything to do with work though .He watched an owl flutter toward the school across the bright blue sky a note clamped in its mouth .Hagrid was the only one who ever sent him letters .Hagrid would never betray Dumbledore .Hagrid would never tell anyone how to get past Fluffy .never .but Harry suddenly jumped to his feet .Where re you going ?said Ron sleepily .Ive just thought of something said Harry .He had turned white .Weve got to go and see Hagrid now .Why ?panted Hermione hurrying to keep up .Dont you think its a bit odd said Harry scrambling up the grassy slope that what Hagrid wants more than anything else is a dragon and a stranger turns up who just happens to have an egg in his pocket ?How many people wander around with dragon eggs if its against wizard law ?Lucky they found Hagrid dont you think ?Why didnt I see it before ?What are you talking about ?said Ron but Harry sprinting across the grounds toward the forest didnt answer .Hagrid was sitting in an armchair outside his house his trousers and sleeves were rolled up and he was shelling peas into a large bowl .Hullo he said smiling .Finished yer exams ?Got time fer a drink ?Yes please said Ron but Harry cut him off .No were in a hurry .Hagrid Ive got to ask you something .You know that night you won Norbert ?What did the stranger you were playing cards with look like ?Dunno said Hagrid casually he wouldn take his cloak off .He saw the three of them look stunned and raised his eyebrows .Its not that unusual yeh get a lot o funny folk in the Hogs Head thats one o the pubs down in the village .Mighta bin a dragon dealer mightn he ?I never saw his face he kept his hood up .Harry sank down next to the bowl of peas .What did you talk to him about Hagrid ?Did you mention Hogwarts at all ?Mighta come up said Hagrid frowning as he tried to remember .Yeah .he asked what I did an I told him I was gamekeeper here .He asked a bit about the sorta creatures I look after .so I told him .an I said what Id always really wanted was a dragon .an then .I can remember too well cause he kept buyin me drinks .Lets see .yeah then he said he had the dragon egg an we could play cards fer it if I wanted .but he had ter be sure I could handle it he didn want it ter go ter any old home .So I told him after Fluffy a dragon would be easy .And did he did he seem interested in Fluffy ?Harry asked trying to keep his voice calm .Well yeah how many threeheaded dogs dyeh meet even around Hogwarts ?So I told him Fluffys a piece o cake if yeh know how to calm him down jus play him a bit o music an hell go straight off ter sleep Hagrid suddenly looked horrified .I shouldnta told yeh that !he blurted out .Forget I said it !Hey wherere yeh goin ?Harry Ron and Hermione didnt speak to each other at all until they came to a halt in the entrance hall which seemed very cold and gloomy after the grounds .Weve got to go to Dumbledore said Harry .Hagrid told that stranger how to get past Fluffy and it was either Snape or Voldemort under that cloak it mustve been easy once hed got Hagrid drunk .I just hope Dumbledore believes us .Firenze might back us up if Bane doesnt stop him .Wheres Dumbledores office ?They looked around as if hoping to see a sign pointing them in the right direction .They had never been told where Dumbledore lived nor did they know anyone who had been sent to see him .Well just have to Harry began but a voice suddenly rang across the hall .What are you three doing inside ?It was Professor McGonagall carrying a large pile of books .We want to see Professor Dumbledore said Hermione rather bravely Harry and Ron thought .See Professor Dumbledore ?Professor McGonagall repeated as though this was a very fishy thing to want to do .Why ?Harry swallowed now what ?Its sort of secret he said but he wished at once he hadnt because Professor McGonagalls nostrils flared .Professor Dumbledore left ten minutes ago she said coldly .He received an urgent owl from the Ministry of Magic and flew off for London at once .Hes gone ?said Harry frantically .Now ?Professor Dumbledore is a very great wizard Potter he has many demands on his time But this is important .Something you have to say is more important than the Ministry of Magic Potter ?Look said Harry throwing caution to the winds Professor its about the Sorcerers Stone Whatever Professor McGonagall had expected it wasnt that .The books she was carrying tumbled out of her arms but she didnt pick them up .How do you know ?she spluttered .Professor I think I know that Sn that someones going to try and steal the Stone .Ive got to talk to Professor Dumbledore .She eyed him with a mixture of shock and suspicion .Professor Dumbledore will be back tomorrow she said finally .I dont know how you found out about the Stone but rest assured no one can possibly steal it its too well protected .But Professor Potter I know what Im talking about she said shortly .She bent down and gathered up the fallen books .I suggest you all go back outside and enjoy the sunshine .But they didnt .Its tonight said Harry once he was sure Professor McGonagall was out of earshot .Snapes going through the trapdoor tonight .Hes found out everything he needs and now hes got Dumbledore out of the way .He sent that note I bet the Ministry of Magic will get a real shock when Dumbledore turns up .But what can we Hermione gasped .Harry and Ron wheeled round .Snape was standing there .Good afternoon he said smoothly .They stared at him .You shouldnt be inside on a day like this he said with an odd twisted smile .We were Harry began without any idea what he was going to say .You want to be more careful said Snape .Hanging around like this people will think youre up to something .And Gryffindor really cant afford to lose any more points can it ?Harry flushed .They turned to go outside but Snape called them back .Be warned Potter any more nighttime wanderings and I will personally make sure you are expelled .Good day to you .He strode off in the direction of the staffroom .Out on the stone steps Harry turned to the others .Right heres what weve got to do he whispered urgently .One of us has got to keep an eye on Snape wait outside the staffroom and follow him if he leaves it .Hermione youd better do that .Why me ?Its obvious said Ron .You can pretend to be waiting for Professor Flitwick you know .He put on a high voice ‘Oh Professor Flitwick Im so worried I think I got question fourteen b wrong .Oh shut up said Hermione but she agreed to go and watch out for Snape .And wed better stay outside the thirdfloor corridor Harry told Ron .Come on .But that part of the plan didnt work .No sooner had they reached the door separating Fluffy from the rest of the school than Professor McGonagall turned up again and this time she lost her temper .I suppose you think youre harder to get past than a pack of enchantments !she stormed .Enough of this nonsense !If I hear youve come anywhere near here again Ill take another fifty points from Gryffindor !Yes Weasley from my own House !Harry and Ron went back to the common room .Harry had just said At least Hermiones on Snapes tail when the portrait of the Fat Lady swung open and Hermione came in .Im sorry Harry !she wailed .Snape came out and asked me what I was doing so I said I was waiting for Flitwick and Snape went to get him and Ive only just got away I dont know where Snape went .Well thats it then isnt it ?Harry said .The other two stared at him .He was pale and his eyes were glittering .Im going out of here tonight and Im going to try and get to the Stone first .Youre mad !said Ron .You cant !said Hermione .After what McGonagall and Snape have said ?Youll be expelled !SO WHAT ?Harry shouted .Dont you understand ?If Snape gets hold of the Stone Voldemorts coming back !Havent you heard what it was like when he was trying to take over ?There wont be any Hogwarts to get expelled from !Hell flatten it or turn it into a school for the Dark Arts !Losing points doesnt matter anymore cant you see ?Dyou think hell leave you and your families alone if Gryffindor wins the House Cup ?If I get caught before I can get to the Stone well Ill have to go back to the Dursleys and wait for Voldemort to find me there its only dying a bit later than I would have because Im never going over to the Dark Side !Im going through that trapdoor tonight and nothing you two say is going to stop me !Voldemort killed my parents remember ?He glared at them .Youre right Harry said Hermione in a small voice .Ill use the Invisibility Cloak said Harry .Its just lucky I got it back .But will it cover all three of us ?said Ron .All all three of us ?Oh come off it you dont think wed let you go alone ?Of course not said Hermione briskly .How do you think youd get to the Stone without us ?Id better go and look through my books there might be something useful .But if we get caught you two will be expelled too .Not if I can help it said Hermione grimly .Flitwick told me in secret that I got a hundred and twelve percent on his exam .Theyre not throwing me out after that .After dinner the three of them sat nervously apart in the common room .Nobody bothered them none of the Gryffindors had anything to say to Harry any more after all .This was the first night he hadnt been upset by it .Hermione was skimming through all her notes hoping to come across one of the enchantments they were about to try to break .Harry and Ron didnt talk much .Both of them were thinking about what they were about to do .Slowly the room emptied as people drifted off to bed .Better get the cloak Ron muttered as Lee Jordan finally left stretching and yawning .Harry ran upstairs to their dark dormitory .He pulled out the cloak and then his eyes fell on the flute Hagrid had given him for Christmas .He pocketed it to use on Fluffy he didnt feel much like singing .He ran back down to the common room .Wed better put the cloak on here and make sure it covers all three of us if Filch spots one of our feet wandering along on its own What are you doing ?said a voice from the corner of the room .Neville appeared from behind an armchair clutching Trevor the toad who looked as though hed been making another bid for freedom .Nothing Neville nothing said Harry hurriedly putting the cloak behind his back .Neville stared at their guilty faces .Youre going out again he said .No no no said Hermione .No were not .Why dont you go to bed Neville ?Harry looked at the grandfather clock by the door .They couldnt afford to waste any more time Snape might even now be playing Fluffy to sleep .You cant go out said Neville youll be caught again .Gryffindor will be in even more trouble .You dont understand said Harry this is important .But Neville was clearly steeling himself to do something desperate .I wont let you do it he said hurrying to stand in front of the portrait hole .Ill Ill fight you !Neville Ron exploded get away from that hole and dont be an idiot Dont you call me an idiot !said Neville .I dont think you should be breaking any more rules !And you were the one who told me to stand up to people !Yes but not to us said Ron in exasperation .Neville you dont know what youre doing .He took a step forward and Neville dropped Trevor the toad who leapt out of sight .Go on then try and hit me !said Neville raising his fists .Im ready !Harry turned to Hermione .Do something he said desperately .Hermione stepped forward .Neville she said Im really really sorry about this .She raised her wand .Petrificus Totalusl she cried pointing it at Neville .Nevilles arms snapped to his sides .His legs sprang together .His whole body rigid he swayed where he stood and then fell flat on his face stiff as a board .Hermione ran to turn him over .Nevilles jaws were jammed together so he couldnt speak .Only his eyes were moving looking at them in horror .Whatve you done to him ?Harry whispered .Its the full BodyBind said Hermione miserably .Oh Neville Im so sorry .We had to Neville no time to explain said Harry .Youll understand later Neville said Ron as they stepped over him and pulled on the Invisibility Cloak .But leaving Neville lying motionless on the floor didnt feel like a very good omen .In their nervous state every statues shadow looked like Filch every distant breath of wind sounded like Peeves swooping down on them .At the foot of the first set of stairs they spotted Mrs Norris skulking near the top .Oh lets kick her just this once Ron whispered in Harrys ear but Harry shook his head .As they climbed carefully around her Mrs Norris turned her lamplike eyes on them but didnt do anything .They didnt meet anyone else until they reached the staircase up to the third floor .Peeves was bobbing halfway up loosening the carpet so that people would trip .Whos there ?he said suddenly as they climbed toward him .He narrowed his wicked black eyes .Know youre there even if I cant see you .Are you ghoulie or ghostie or wee student beastie ?He rose up in the air and floated there squinting at them .Should call Filch I should if somethings acreeping around unseen .Harry had a sudden idea .Peeves he said in a hoarse whisper the Bloody Baron has his own reasons for being invisible .Peeves almost fell out of the air in shock .He caught himself in time and hovered about a foot off the stairs .So sorry your bloodiness Mr Baron sir he said greasily .My mistake my mistake I didnt see you of course I didnt youre invisible forgive old Peevsie his little joke sir .I have business here Peeves croaked Harry .Stay away from this place tonight .I will sir I most certainly will said Peeves rising up in the air again .Hope your business goes well Baron Ill not bother you .And he scooted off .Brilliant Harry !whispered Ron .A few seconds later they were there outside the thirdfloor corridor and the door was already ajar .Well there you are Harry said quietly Snapes already got past Fluffy .Seeing the open door somehow seemed to impress upon all three of them what was facing them .Underneath the cloak Harry turned to the other two .If you want to go back I wont blame you he said .You can take the cloak I wont need it now .Dont be stupid said Ron .Were coming said Hermione .Harry pushed the door open .As the door creaked low rumbling growls met their ears .All three of the dogs noses sniffed madly in their direction even though it couldnt see them .Whats that at its feet ?Hermione whispered .Looks like a harp said Ron .Snape must have left it there .It must wake up the moment you stop playing said Harry .Well here goes .He put Hagrids flute to his lips and blew .It wasnt really a tune but from the first note the beasts eyes began to droop .Harry hardly drew breath .Slowly the dogs growls ceased it tottered on its paws and fell to its knees then it slumped to the ground fast asleep .Keep playing Ron warned Harry as they slipped out of the cloak and crept toward the trapdoor .They could feel the dogs hot smelly breath as they approached the giant heads .I think well be able to pull the door open said Ron peering over the dogs back .Want to go first Hermione ?No I dont !All right .Ron gritted his teeth and stepped carefully over the dogs legs .He bent and pulled the ring of the trapdoor which swung up and open .What can you see ?Hermione said anxiously .Nothing just black theres no way of climbing down well just have to drop .Harry who was still playing the flute waved at Ron to get his attention and pointed at himself .You want to go first ?Are you sure ?said Ron .I dont know how deep this thing goes .Give the flute to Hermione so she can keep him asleep .Harry handed the flute over .In the few seconds silence the dog growled and twitched but the moment Hermione began to play it fell back into its deep sleep .Harry climbed over it and looked down through the trapdoor .There was no sign of the bottom .He lowered himself through the hole until he was hanging on by his fingertips .Then he looked up at Ron and said If anything happens to me dont follow .Go straight to the owlery and send Hedwig to Dumbledore right ?Right said Ron .See you in a minute I hope .And Harry let go .Cold damp air rushed past him as he fell down down down and FLUMP .With a funny muffled sort of thump he landed on something soft .He sat up and felt around his eyes not used to the gloom .It felt as though he was sitting on some sort of plant .Its okay !he called up to the light the size of a postage stamp which was the open trapdoor its a soft landing you can jump !Ron followed right away .He landed sprawled next to Harry .Whats this stuff ?were his first words .Dunno some sort of plant thing .I suppose its here to break the fall .Come on Hermione !The distant music stopped .There was a loud bark from the dog but Hermione had already jumped .She landed on Harrys other side .We must be miles under the school she said .Lucky this plant things here really said Ron .Lucky shrieked Hermione .Look at you both !She leapt up and struggled toward a damp wall .She had to struggle because the moment she had landed the plant had started to twist snakelike tendrils around her ankles .As for Harry and Ron their legs had already been bound tightly in long creepers without their noticing .Hermione had managed to free herself before the plant got a firm grip on her .Now she watched in horror as the two boys fought to pull the plant off them but the more they strained against it the tighter and faster the plant wound around them .Stop moving !Hermione ordered them .I know what this is its Devils Snare !Oh Im so glad we know what its called thats a great help snarled Ron leaning back trying to stop the plant from curling around his neck .Shut up Im trying to remember how to kill it !said Hermione .Well hurry up I cant breathe !Harry gasped wrestling with it as it curled around his chest .Devils Snare Devils Snare .what did Professor Sprout say ?it likes the dark and the damp So light a fire !Harry choked .Yes of course but theres no wood !Hermione cried wringing her hands .HAVE YOU GONE MAD ?Ron bellowed .ARE YOU A WITCH OR NOT ?Oh right !said Hermione and she whipped out her wand waved it muttered something and sent a jet of the same bluebell flames she had used on Snape at the plant .In a matter of seconds the two boys felt it loosening its grip as it cringed away from the light and warmth .Wriggling and flailing it unraveled itself from their bodies and they were able to pull free .Lucky you pay attention in Herbology Hermione said Harry as he joined her by the wall wiping sweat off his face .Yeah said Ron and lucky Harry doesnt lose his head in a crisis ‘theres no wood honestly .This way said Harry pointing down a stone passageway which was the only way forward .All they could hear apart from their footsteps was the gentle drip of water trickling down the walls .The passageway sloped downward and Harry was reminded of Gringotts .With an unpleasant jolt of the heart he remembered the dragons said to be guarding vaults in the wizards bank .If they met a dragon a fullygrown dragon Norbert had been bad enough .Can you hear something ?Ron whispered .Harry listened .A soft rustling and clinking seemed to be coming from up ahead .Do you think its a ghost ?I dont know .sounds like wings to me .Theres light ahead I can see something moving .They reached the end of the passageway and saw before them a brilliantly lit chamber its ceiling arching high above them .It was full of small jewel bright birds fluttering and tumbling all around the room .On the opposite side of the chamber was a heavy wooden door .Do you think theyll attack us if we cross the room ?said Ron .Probably said Harry .They dont look very vicious but I suppose if they all swooped down at once .well theres no other choice .Ill run .He took a deep breath covered his face with his arms and sprinted across the room .He expected to feel sharp beaks and claws tearing at him any second but nothing happened .He reached the door untouched .He pulled the handle but it was locked .The other two followed him .They tugged and heaved at the door but it wouldnt budge not even when Hermione tried her Alohomora Charm .Now what ?said Ron .These birds .they cant be here just for decoration said Hermione .They watched the birds soaring overhead glittering glittering ?Theyre not birds !Harry said suddenly .Theyre keys Winged keys look carefully .So that must mean .he looked around the chamber while the other two squinted up at the flock of keys .yes look !Broomsticks !Weve got to catch the key to the door !But there are hundreds of them !Ron examined the lock on the door .Were looking for a big oldfashioned one probably silver like the handle .They each seized a broomstick and kicked off into the air soaring into the midst of the cloud of keys .They grabbed and snatched but the bewitched keys darted and dived so quickly it was almost impossible to catch one .Not for nothing though was Harry the youngest Seeker in a century .He had a knack for spotting things other people didnt .After a minutes weaving about through the whirl of rainbow feathers he noticed a large silver key that had a bent wing as if it had already been caught and stuffed roughly into the keyhole .That one !he called to the others .That big one there no there with bright blue wings the feathers are all crumpled on one side .Ron went speeding in the direction that Harry was pointing crashed into the ceiling and nearly fell off his broom .Weve got to close in on it !Harry called not taking his eyes off the key with the damaged wing .Ron you come at it from above Hermione stay below and stop it from going down and Ill try and catch it .Right NOW !Ron dived Hermione rocketed upward the key dodged them both and Harry streaked after it it sped toward the wall Harry leaned forward and with a nasty crunching noise pinned it against the stone with one hand .Ron and Hermione s cheers echoed around the high chamber .They landed quickly and Harry ran to the door the key struggling in his hand .He rammed it into the lock and turned it worked .The moment the lock had clicked open the key took flight again looking very battered now that it had been caught twice .Ready ?Harry asked the other two his hand on the door handle .They nodded .He pulled the door open .The next chamber was so dark they couldnt see anything at all .But as they stepped into it light suddenly flooded the room to reveal an astonishing sight .They were standing on the edge of a huge chessboard behind the black chessmen which were all taller than they were and carved from what looked like black stone .Facing them way across the chamber were the white pieces .Harry Ron and Hermione shivered slightly the towering white chessmen had no faces .Now what do we do ?Harry whispered .Its obvious isnt it ?said Ron .Weve got to play our way across the room .Behind the white pieces they could see another door .How ?said Hermione nervously .I think said Ron were going to have to be chessmen .He walked up to a black knight and put his hand out to touch the knights horse .At once the stone sprang to life .The horse pawed the ground and the knight turned his helmeted head to look down at Ron .Do we er have to join you to get across ?The black knight nodded .Ron turned to the other two .This needs thinking about .he said .I suppose weve got to take the place of three of the black pieces .Harry and Hermione stayed quiet watching Ron think .Finally he said Now dont be offended or anything but neither of you are that good at chess Were not offended said Harry quickly .Just tell us what to do .Well Harry you take the place of that bishop and Hermione you go there instead of that castle .What about you ?Im going to be a knight said Ron .The chessmen seemed to have been listening because at these words a knight a bishop and a castle turned their backs on the white pieces and walked off the board leaving three empty squares that Harry Ron and Hermione took .White always plays first in chess said Ron peering across the board .Yes .look .A white pawn had moved forward two squares .Ron started to direct the black pieces .They moved silently wherever he sent them .Harrys knees were trembling .What if they lost ?Harry move diagonally four squares to the right .Their first real shock came when their other knight was taken .The white queen smashed him to the floor and dragged him off the board where he lay quite still facedown .Had to let that happen said Ron looking shaken .Leaves you free to take that bishop Hermione go on .Every time one of their men was lost the white pieces showed no mercy .Soon there was a huddle of limp black players slumped along the wall .Twice Ron only just noticed in time that Harry and Hermione were in danger .He himself darted around the board taking almost as many white pieces as they had lost black ones .Were nearly there he muttered suddenly .Let me think let me think .The white queen turned her blank face toward him .Yes .said Ron softly its the only way .Ive got to be taken .NO !Harry and Hermione shouted .Thats chess !snapped Ron .Youve got to make some sacrifices !I make my move and shell take me that leaves you free to checkmate the king Harry !But Do you want to stop Snape or not ?Ron Look if you dont hurry up hell already have the Stone !There was no alternative .Ready ?Ron called his face pale but determined .Here I go now dont hang around once youve won .He stepped forward and the white queen pounced .She struck Ron hard across the head with her stone arm and he crashed to the floor Hermione screamed but stayed on her square the white queen dragged Ron to one side .He looked as if hed been knocked out .Shaking Harry moved three spaces to the left .The white king took off his crown and threw it at Harrys feet .They had won .The chessmen parted and bowed leaving the door ahead clear .With one last desperate look back at Ron Harry and Hermione charged through the door and up the next passageway .What if hes ?Hell be all right said Harry trying to convince himself .What do you reckons next ?Weve had Sprouts that was the Devils Snare Flitwick mustve put charms on the keys McGonagall transfigured the chessmen to make them alive that leaves Quirrells spell and Snapes .They had reached another door .All right ?Harry whispered .Go on .Harry pushed it open .A disgusting smell filled their nostrils making both of them pull their robes up over their noses .Eyes watering they saw flat on the floor in front of them a troll even larger than the one they had tackled out cold with a bloody lump on its head .Im glad we didnt have to fight that one Harry whispered as they stepped carefully over one of its massive legs .Come on I cant breathe .He pulled open the next door both of them hardly daring to look at what came next but there was nothing very frightening in here just a table with seven differently shaped bottles standing on it in a line .Snapes said Harry .What do we have to do ?They stepped over the threshold and immediately a fire sprang up behind them in the doorway .It wasnt ordinary fire either it was purple .At the same instant black flames shot up in the doorway leading onward .They were trapped .Look !Hermione seized a roll of paper lying next to the bottles .Harry looked over her shoulder to read it Danger lies before you while safety lies behind Two of us will help you whichever you would find One among us seven will let you move ahead Another will transport the drinker back instead Two among our number hold only nettle wine Three of us are killers waiting hidden in line .Choose unless you wish to stay here forevermore To help you in your choice we give you these clues four First however slyly the poison tries to hide You will always find some on nettle wines left side Second different are those who stand at either end But if you would move onward neither is your friend Third as you see clearly all are different size Neither dwarf nor giant holds death in their insides Fourth the second left and the second on the right Are twins once you taste them though different at first sight Hermione let out a great sigh and Harry amazed saw that she was smiling the very last thing he felt like doing .Brilliant said Hermione .This isnt magic its logic a puzzle .A lot of the greatest wizards havent got an ounce of logic theyd be stuck in here forever .But so will we wont we ?Of course not said Hermione .Everything we need is here on this paper .Seven bottles three are poison two are wine one will get us safely through the black fire and one will get us back through the purple .But how do we know which to drink ?Give me a minute .Hermione read the paper several times .Then she walked up and down the line of bottles muttering to herself and pointing at them .At last she clapped her hands .Got it she said .The smallest bottle will get us through the black fire toward the Stone .Harry looked at the tiny bottle .Theres only enough there for one of us he said .Thats hardly one swallow .They looked at each other .Which one will get you back through the purple flames ?Hermione pointed at a rounded bottle at the right end of the line .You drink that said Harry .No listen get back and get Ron .Grab brooms from the flyingkey room theyll get you out of the trapdoor and past Fluffy go straight to the owlery and send Hedwig to Dumbledore we need him .I might be able to hold Snape off for a while but Im no match for him really .But Harry what if YouKnow Whos with him ?Well I was lucky once wasnt I ?said Harry pointing at his scar .I might get lucky again .Hermiones lip trembled and she suddenly dashed at Harry and threw her arms around him .Hermionel Harry youre a great wizard you know .Im not as good as you said Harry very embarrassed as she let go of him .Me !said Hermione .Books !And cleverness !There are more important things friendship and bravery and oh Harry be carefull You drink first said Harry .You are sure which is which arent you ?Positive said Hermione .She took a long drink from the round bottle at the end and shuddered .Its not poison ?said Harry anxiously .No but its like ice .Quick go before it wears off .Good luck take care GO !Hermione turned and walked straight through the purple fire .Harry took a deep breath and picked up the smallest bottle .He turned to face the black flames .Here I come he said and he drained the little bottle in one gulp .It was indeed as though ice was flooding his body .He put the bottle down and walked forward he braced himself saw the black flames licking his body but couldnt feel them for a moment he could see nothing but dark fire then he was on the other side in the last chamber .There was already someone there but it wasnt Snape .It wasnt even Voldemort .THE MAN WITH TWO FACES It was Quirrell .You gasped Harry .Quirrell smiled .His face wasnt twitching at all .Me he said calmly .I wondered whether Id be meeting you here Potter .But I thought Snape Severus ?Quirrell laughed and it wasnt his usual quivering treble either but cold and sharp .Yes Severus does seem the type doesnt he ?So useful to have him swooping around like an overgrown bat .Next to him who would suspect pppoor st stuttering PProfessor Quirrell ?Harry couldnt take it in .This couldnt be true it couldnt .But Snape tried to kill me !No no no .tried to kill you .Your friend Miss Granger accidentally knocked me over as she rushed to set fire to Snape at that Quidditch match .She broke my eye contact with you .Another few seconds and Id have got you off that broom .Id have managed it before then if Snape hadnt been muttering a countercurse trying to save you .Snape was trying to save me ?Of course said Quirrell coolly .Why do you think he wanted to referee your next match ?He was trying to make sure I didnt do it again .Funny really .he neednt have bothered .I couldnt do anything with Dumbledore watching .All the other teachers thought Snape was trying to stop Gryffindor from winning he did make himself unpopular .and what a waste of time when after all that Im going to kill you tonight .Quirrell snapped his fingers .Ropes sprang out of thin air and wrapped themselves tightly around Harry .Youre too nosy to live Potter .Scurrying around the school on Halloween like that for all I knew youd seen me coming to look at what was guarding the Stone .You let the troll in ?Certainly .I have a special gift with trolls you must have seen what I did to the one in the chamber back there ?Unfortunately while everyone else was running around looking for it Snape who already suspected me went straight to the third floor to head me off and not only did my troll fail to beat you to death that threeheaded dog didnt even manage to bite Snape s leg off properly .Now wait quietly Potter .I need to examine this interesting mirror .It was only then that Harry realized what was standing behind Quirrell .It was the Mirror of Erised .This mirror is the key to finding the Stone Quirrell murmured tapping his way around the frame .Trust Dumbledore to come up with something like this .but hes in London .Ill be far away by the time he gets back .All Harry could think of doing was to keep Quirrell talking and stop him from concentrating on the mirror .I saw you and Snape in the forest he blurted out .Yes said Quirrell idly walking around the mirror to look at the back .He was on to me by that time trying to find out how far Id got .He suspected me all along .Tried to frighten me as though he could when I had Lord Voldemort on my side .Quirrell came back out from behind the mirror and stared hungrily into it .I see the Stone .Im presenting it to my master .but where is it ?Harry struggled against the ropes binding him but they didnt give .He had to keep Quirrell from giving his whole attention to the mirror .But Snape always seemed to hate me so much .Oh he does said Quirrell casually heavens yes .He was at Hogwarts with your father didnt you know ?They loathed each other .But he never wanted you dead .But I heard you a few days ago sobbing I thought Snape was threatening you .For the first time a spasm of fear flitted across Quirrells face .Sometimes he said I find it hard to follow my masters instructions he is a great wizard and I am weak You mean he was there in the classroom with you ?Harry gasped .He is with me wherever I go said Quirrell quietly .I met him when I traveled around the world .A foolish young man I was then full of ridiculous ideas about good and evil .Lord Voldemort showed me how wrong I was .There is no good and evil there is only power and those too weak to seek it .Since then I have served him faithfully although I have let him down many times .He has had to be very hard on me .Quirrell shivered suddenly .He does not forgive mistakes easily .When I failed to steal the Stone from Gringotts he was most displeased .He punished me .decided he would have to keep a closer watch on me .Quirrells voice trailed away .Harry was remembering his trip to Diagon Alley how could he have been so stupid ?Hed seen Quirrell there that very day shaken hands with him in the Leaky Cauldron .Quirrell cursed under his breath .I dont understand .is the Stone inside the mirror ?Should I break it ?Harrys mind was racing .What I want more than anything else in the world at the moment he thought is to find the Stone before Quirrell does .So if I look in the mirror I should see my self finding it which means Ill see where its hidden !But how can I look without Quirrell realizing what Im up to ?He tried to edge to the left to get in front of the glass without Quirrell noticing but the ropes around his ankles were too tight he tripped and fell over .Quirrell ignored him .He was still talking to himself .What does this mirror do ?How does it work ?Help me Master !And to Harrys horror a voice answered and the voice seemed to come from Quirrell himself .Use the boy .Use the boy .Quirrell rounded on Harry .Yes Potter come here .He clapped his hands once and the ropes binding Harry fell off .Harry got slowly to his feet .Come here Quirrell repeated .Look in the mirror and tell me what you see .Harry walked toward him .I must lie he thought desperately .I must look and lie about what I see thats all .Quirrell moved close behind him .Harry breathed in the funny smell that seemed to come from Quirrells turban .He closed his eyes stepped in front of the mirror and opened them again .He saw his reflection pale and scaredlooking at first .But a moment later the reflection smiled at him .It put its hand into its pocket and pulled out a blood red stone .It winked and put the Stone back in its pocket and as it did so Harry felt something heavy drop into his real pocket .Somehow incredibly hed gotten the Stone .Well ?said Quirrell impatiently .What do you see ?Harry screwed up his courage .I see myself shaking hands with Dumbledore he invented .I Ive won the House Cup for Gryffindor .Quirrell cursed again .Get out of the way he said .As Harry moved aside he felt the Sorcerers Stone against his leg .Dare he make a break for it ?But he hadnt walked five paces before a high voice spoke though Quirrell wasnt moving his lips .He lies .He lies .Potter come back here !Quirrell shouted .Tell me the truth !What did you just see ?The high voice spoke again .Let me speak to him .facetoface .Master you are not strong enough !I have strength enough .for this .Harry felt as if Devils Snare was rooting him to the spot .He couldnt move a muscle .Petrified he watched as Quirrell reached up and began to unwrap his turban .What was going on ?The turban fell away .Quirrells head looked strangely small without it .Then he turned slowly on the spot .Harry would have screamed but he couldnt make a sound .Where there should have been a back to Quirrells head there was a face the most terrible face Harry had ever seen .It was chalk white with glaring red eyes and slits for nostrils like a snake .Harry Potter .it whispered .Harry tried to take a step backward but his legs wouldnt move .See what I have become ?the face said .Mere shadow and vapor .I have form only when I can share anothers body .but there have always been those willing to let me into their hearts and minds .Unicorn blood has strengthened me these past weeks .you saw faithful Quirrell drinking it for me in the forest .and once I have the Elixir of Life I will be able to create a body of my own .Now .why dont you give me that Stone in your pocket ?So he knew .The feeling suddenly surged back into Harrys legs .He stumbled backward .Dont be a fool snarled the face .Better save your own life and join me .or youll meet the same end as your parents .They died begging me for mercy .LIAR !Harry shouted suddenly .Quirrell was walking backward at him so that Voldemort could still see him .The evil face was now smiling .How touching .it hissed .I always value bravery . .Yes boy your parents were brave .I killed your father first and he put up a courageous fight .but your mother neednt have died .she was trying to protect you .Now give me the Stone unless you want her to have died in vain .NEVER !Harry sprang toward the flame door but Voldemort screamed SEIZE HIM !and the next second Harry felt Quirrells hand close on his wrist .At once a needlesharp pain seared across Harrys scar his head felt as though it was about to split in two he yelled struggling with all his might and to his surprise Quirrell let go of him .The pain in his head lessened he looked around wildly to see where Quirrell had gone and saw him hunched in pain looking at his fingers they were blistering before his eyes .Seize him !SEIZE HIM !shrieked Voldemort again and Quirrell lunged knocking Harry clean off his feet landing on top of him both hands around Harrys neck Harrys scar was almost blinding him with pain yet he could see Quirrell howling in agony .Master I cannot hold him my hands my hands !And Quirrell though pinning Harry to the ground with his knees let go of his neck and stared bewildered at his own palms Harry could see they looked burned raw red and shiny .Then kill him fool and be done !screeched Voldemort .Quirrell raised his hand to perform a deadly curse but Harry by instinct reached up and grabbed Quirrells face aaRGH !Quirrell rolled off him his face blistering too and then Harry knew Quirrell couldnt touch his bare skin not without suffering terrible pain his only chance was to keep hold of Quirrell keep him in enough pain to stop him from doing a curse .Harry jumped to his feet caught Quirrell by the arm and hung on as tight as he could .Quirrell screamed and tried to throw Harry off the pain in Harrys head was building he couldnt see he could only hear Quirrells terrible shrieks and Voldemorts yells of KILL HIM !KILL HIM !and other voices maybe in Harrys own head crying Harry !Harry !He felt Quirrells arm wrenched from his grasp knew all was lost and fell into blackness down .down .down .Something gold was glinting just above him .The Snitch !He tried to catch it but his arms were too heavy .He blinked .It wasnt the Snitch at all .It was a pair of glasses .How strange .He blinked again .The smiling face of Albus Dumbledore swam into view above him .Good afternoon Harry said Dumbledore .Harry stared at him .Then he remembered Sir !The Stone !It was Quirrell !Hes got the Stone !Sir quick Calm yourself dear boy you are a little behind the times said Dumbledore .Quirrell does not have the Stone .Then who does ?Sir I Harry please relax or Madam Pomfrey will have me thrown out .Harry swallowed and looked around him .He realized he must be in the hospital wing .He was lying in a bed with white linen sheets and next to him was a table piled high with what looked like half the candy shop .Tokens from your friends and admirers said Dumbledore beaming .What happened down in the dungeons between you and Professor Quirrell is a complete secret so naturally the whole school knows .I believe your friends Misters Fred and George Weasley were responsible for trying to send you a toilet seat .No doubt they thought it would amuse you .Madam Pomfrey however felt it might not be very hygienic and confiscated it .How long have I been in here ?Three days .Mr Ronald Weasley and Miss Granger will be most relieved you have come round they have been extremely worried .But sir the Stone I see you are not to be distracted .Very well the Stone .Professor Quirrell did not manage to take it from you .I arrived in time to prevent that although you were doing very well on your own I must say .You got there ?You got Hermiones owl ?We must have crossed in midair .No sooner had I reached London than it became clear to me that the place I should be was the one I had just left .I arrived just in time to pull Quirrell off you It was you .I feared I might be too late .You nearly were I couldnt have kept him off the Stone much longer Not the Stone boy you the effort involved nearly killed you .For one terrible moment there I was afraid it had .As for the Stone it has been destroyed .Destroyed ?said Harry blankly .But your friend Nicolas Flamel Oh you know about Nicolas ?said Dumbledore sounding quite delighted .You did do the thing properly didnt you ?Well Nicolas and I have had a little chat and agreed its all for the best .But that means he and his wife will die wont they ?They have enough Elixir stored to set their affairs in order and then yes they will die .Dumbledore smiled at the look of amazement on Harrys face .To one as young as you Im sure it seems incredible but to Nicolas and Perenelle it really is like going to bed after a very very long day .After all to the well organized mind death is but the next great adventure .You know the Stone was really not such a wonderful thing .As much money and life as you could want !The two things most human beings would choose above all the trouble is humans do have a knack of choosing precisely those things that are worst for them .Harry lay there lost for words .Dumbledore hummed a little and smiled at the ceiling .Sir ?said Harry .Ive been thinking .Sir even if the Stones gone Vol I mean YouKnowWho Call him Voldemort Harry .Always use the proper name for things .Fear of a name increases fear of the thing itself .Yes sir .Well Voldemorts going to try other ways of coming back isnt he ?I mean he hasnt gone has he ?No Harry he has not .He is still out there somewhere perhaps looking for another body to share .not being truly alive he cannot be killed .He left Quirrell to die he shows just as little mercy to his followers as his enemies .Nevertheless Harry while you may only have delayed his return to power it will merely take someone else who is prepared to fight what seems a losing battle next time and if he is delayed again and again why he may never return to power .Harry nodded but stopped quickly because it made his head hurt .Then he said Sir there are some other things Id like to know if you can tell me .things I want to know the truth about .The truth .Dumbledore sighed .It is a beautiful and terrible thing and should therefore be treated with great caution .However I shall answer your questions unless I have a very good reason not to in which case I beg you 11 forgive me .I shall not of course lie .Well .Voldemort said that he only killed my mother because she tried to stop him from killing me .But why would he want to kill me in the first place ?Dumbledore sighed very deeply this time .Alas the first thing you ask me I cannot tell you .Not today .Not now .You will know one day .put it from your mind for now Harry .When you are older .I know you hate to hear this .when you are ready you will know .And Harry knew it would be no good to argue .But why couldnt Quirrell touch me ?Your mother died to save you .If there is one thing Voldemort cannot understand it is love .He didnt realize that love as powerful as your mothers for you leaves its own mark .Not a scar no visible sign .to have been loved so deeply even though the person who loved us is gone will give us some protection forever .It is in your very skin .Quirrell full of hatred greed and ambition sharing his soul with Voldemort could not touch you for this reason .It was agony to touch a person marked by something so good .Dumbledore now became very interested in a bird out on the windowsill which gave Harry time to dry his eyes on the sheet .When he had found his voice again Harry said And the Invisibility Cloak do you know who sent it to me ?Ah your father happened to leave it in my possession and I thought you might like it .Dumbledores eyes twinkled .Useful things .your father used it mainly for sneaking off to the kitchens to steal food when he was here .And theres something else .Fire away .Quirrell said Snape Professor Snape Harry .Yes him Quirrell said he hates me because he hated my father .Is that true ?Well they did rather detest each other .Not unlike yourself and Mr Malfoy .And then your father did something Snape could never forgive .What ?He saved his life .What ?Yes .said Dumbledore dreamily .Funny the way peoples minds work isnt it ?Professor Snape couldnt bear being in your fathers debt .I do believe he worked so hard to protect you this year because he felt that would make him and your father even .Then he could go back to hating your fathers memory in peace .Harry tried to understand this but it made his head pound so he stopped .And sir theres one more thing .Just the one ?How did I get the Stone out of the mirror ?Ah now Im glad you asked me that .It was one of my more brilliant ideas and between you and me thats saying something .You see only one who wanted to find the Stone find it but not use it would be able to get it otherwise theyd just see themselves making gold or drinking Elixir of Life .My brain surprises even me sometimes .Now enough questions .I suggest you make a start on these sweets .Ah !Bertie Botts Every Flavor Beans !I was unfortunate enough in my youth to come across a vomitflavored one and since then Im afraid Ive rather lost my liking for them but I think Ill be safe with a nice toffee dont you ?He smiled and popped the goldenbrown bean into his mouth .Then he choked and said Alas !Ear wax !Madam Pomfrey the nurse was a nice woman but very strict .Just five minutes Harry pleaded .Absolutely not .You let Professor Dumbledore in .Well of course that was the headmaster quite different .You need rest .I am resting look lying down and everything .Oh go on Madam Pomfrey .Oh very well she said .But five minutes only .And she let Ron and Hermione in .Harryl Hermione looked ready to fling her arms around him again but Harry was glad she held herself in as his head was still very sore .Oh Harry we were sure you were going to Dumbledore was so worried The whole schools talking about it said Ron .What really happened ?It was one of those rare occasions when the true story is even more strange and exciting than the wild rumors .Harry told them everything Quirrell the mirror the Stone and Voldemort .Ron and Hermione were a very good audience they gasped in all the right places and when Harry told them what was under Quirrells turban Hermione screamed out loud .So the Stones gone ?said Ron finally .Flamels just going to die ?Thats what I said but Dumbledore thinks that what was it ? ‘to the wellorganized mind death is but the next great adventure .I always said he was off his rocker said Ron looking quite impressed at how crazy his hero was .So what happened to you two ?said Harry .Well I got back all right said Hermione .I brought Ron round that took a while and we were dashing up to the owlery to contact Dumbledore when we met him in the entrance hall he already knew he just said ‘Harrys gone after him hasnt he ?and hurtled off to the third floor .Dyou think he meant you to do it ?said Ron .Sending you your fathers cloak and everything ?Well Hermione exploded if he did I mean to say thats terrible you could have been killed .No it isnt said Harry thoughtfully .Hes a funny man Dumbledore .I think he sort of wanted to give me a chance .I think he knows more or less everything that goes on here you know .I reckon he had a pretty good idea we were going to try and instead of stopping us he just taught us enough to help .I dont think it was an accident he let me find out how the mirror worked .Its almost like he thought I had the right to face Voldemort if I could .Yeah Dumbledores off his rocker all right said Ron proudly .Listen youve got to be up for the end ofyear feast tomorrow .The points are all in and Slytherin won of course you missed the last Quidditch match we were steamrollered by Ravenclaw without you but the foodll be good .At that moment Madam Pomfrey bustled over .Youve had nearly fifteen minutes now OUT she said firmly . •k k k After a good nights sleep Harry felt nearly back to normal .I want to go to the feast he told Madam Pomfrey as she straightened his many candy boxes .I can cant I ?Professor Dumbledore says you are to be allowed to go she said sniffily as though in her opinion Professor Dumbledore didnt realize how risky feasts could be .And you have another visitor .Oh good said Harry .Who is it ?Hagrid sidled through the door as he spoke .As usual when he was indoors Hagrid looked too big to be allowed .He sat down next to Harry took one look at him and burst into tears .Its all my ruddy fault !he sobbed his face in his hands .I told the evil git how ter get past Fluffy !I told him !It was the only thing he didnt know an I told him !Yeh couldve died !All fer a dragon egg !Ill never drink again !I should be chucked out an made ter live as a Muggle !Hagrid !said Harry shocked to see Hagrid shaking with grief and remorse great tears leaking down into his beard .Hagrid hed have found out somehow this is Voldemort were talking about hed have found out even if you hadnt told him .Yeh couldve died !sobbed Hagrid .An don say the name !VOLDEMORT !Harry bellowed and Hagrid was so shocked he stopped crying .Ive met him and Im calling him by his name .Please cheer up Hagrid we saved the Stone its gone he cant use it .Have a Chocolate Frog Ive got loads .Hagrid wiped his nose on the back of his hand and said That reminds me .Ive got yeh a present .Its not a stoat sandwich is it ?said Harry anxiously and at last Hagrid gave a weak chuckle .Nah .Dumbledore gave me the day off yesterday ter fix it .Course he shoulda sacked me instead anyway got y eh this .It seemed to be a handsome leathercovered book .Harry opened it curiously .It was full of wizard photographs .Smiling and waving at him from every page were his mother and father .Sent owls off ter all yer parents old school friends askin fer photos .knew yeh didn have any .dyeh like it ?Harry couldnt speak but Hagrid understood .Harry made his way down to the endofyear feast alone that night .He had been held up by Madam Pomfreys fussing about insisting on giving him one last checkup so the Great Hall was already full .It was decked out in the Slytherin colors of green and silver to celebrate Slytherin s winning the House Cup for the seventh year in a row .A huge banner showing the Slytherin serpent covered the wall behind the High Table .When Harry walked in there was a sudden hush and then everybody started talking loudly at once .He slipped into a seat between Ron and Hermione at the Gryffindor table and tried to ignore the fact that people were standing up to look at him .Fortunately Dumbledore arrived moments later .The babble died away .Another year gone !Dumbledore said cheerfully .And I must trouble you with an old mans wheezing waffle before we sink our teeth into our delicious feast .What a year it has been !Hopefully your heads are all a little fuller than they were .you have the whole summer ahead to get them nice and empty before next year starts .Now as I understand it the House Cup here needs awarding and the points stand thus In fourth place Gryffindor with three hundred and twelve points in third Hufflepuff with three hundred and fiftytwo Ravenclaw has four hundred and twentysix and Slytherin four hundred and seventy two .A storm of cheering and stamping broke out from the Slytherin table .Harry could see Draco Malfoy banging his goblet on the table .It was a sickening sight .Yes yes well done Slytherin said Dumbledore .However recent events must be taken into account .The room went very still .The Slytherins smiles faded a little .Ahem said Dumbledore .I have a few lastminute points to dish out .Let me see .Yes .First to Mr Ronald Weasley .Ron went purple in the face he looked like a radish with a bad sunburn . .for the bestplayed game of chess Hogwarts has seen in many years I award Gryffindor House fifty points .Gryffindor cheers nearly raised the bewitched ceiling the stars overhead seemed to quiver .Percy could be heard telling the other prefects My brother you know !My youngest brother !Got past McGonagalls giant chess set !At last there was silence again .Second to Miss Hermione Granger .for the use of cool logic in the face of fire I award Gryffindor House fifty points .Hermione buried her face in her arms Harry strongly suspected she had burst into tears .Gryffindors up and down the table were beside themselves they were a hundred points up .Third to Mr Harry Potter .said Dumbledore .The room went deadly quiet .for pure nerve and outstanding courage I award Gryffindor House sixty points .The din was deafening .Those who could add up while yelling themselves hoarse knew that Gryffindor now had four hundred and seventytwo points exactly the same as Slytherin .They had tied for the House Cup if only Dumbledore had given Harry just one more point .Dumbledore raised his hand .The room gradually fell silent .There are all kinds of courage said Dumbledore smiling .It takes a great deal of bravery to stand up to our enemies but just as much to stand up to our friends .I therefore award ten points to Mr Neville Longbottom .Someone standing outside the Great Hall might well have thought some sort of explosion had taken place so loud was the noise that erupted from the Gryffindor table .Harry Ron and Hermione stood up to yell and cheer as Neville white with shock disappeared under a pile of people hugging him .He had never won so much as a point for Gryffindor before .Harry still cheering nudged Ron in the ribs and pointed at Malfoy who couldnt have looked more stunned and horrified if hed just had the BodyBind Curse put on him .Which means Dumbledore called over the storm of applause for even Ravenclaw and Hufflepuff were celebrating the downfall of Slytherin we need a little change of decoration .He clapped his hands .In an instant the green hangings became scarlet and the silver became gold the huge Slytherin serpent vanished and a towering Gryffindor lion took its place .Snape was shaking Professor McGonagalls hand with a horrible forced smile .He caught Harrys eye and Harry knew at once that Snape s feelings toward him hadnt changed one jot .This didnt worry Harry .It seemed as though life would be back to normal next year or as normal as it ever was at Hogwarts .It was the best evening of Harrys life better than winning at Quidditch or Christmas or knocking out mountain trolls .he would never ever forget tonight .Harry had almost forgotten that the exam results were still to come but come they did .To their great surprise both he and Ron passed with good marks Hermione of course had the best grades of the first years .Even Neville scraped through his good Herbology mark making up for his abysmal Potions one .They had hoped that Goyle who was almost as stupid as he was mean might be thrown out but he had passed too .It was a shame but as Ron said you couldnt have everything in life .And suddenly their wardrobes were empty their trunks were packed Nevilles toad was found lurking in a corner of the toilets notes were handed out to all students warning them not to use magic over the holidays I always hope theyll forget to give us these said Fred Weasley sadly Hagrid was there to take them down to the fleet of boats that sailed across the lake they were boarding the Hogwarts Express talking and laughing as the countryside became greener and tidier eating Bertie Botts Every Flavor Beans as they sped past Muggle towns pulling off their wizard robes and putting on jackets and coats pulling into platform nine and threequarters at Kings Cross station .It took quite a while for them all to get off the platform .A wizened old guard was up by the ticket barrier letting them go through the gate in twos and threes so they didnt attract attention by all bursting out of a solid wall at once and alarming the Muggles .You must come and stay this summer said Ron both of you Ill send you an owl .Thanks said Harry Ill need something to look forward to .People jostled them as they moved forward toward the gateway back to the Muggle world .Some of them called Bye Harry !See you Potter !Still famous said Ron grinning at him .Not where Im going I promise you said Harry .He Ron and Hermione passed through the gateway together .There he is Mom there he is look !It was Ginny Weasley Rons younger sister but she wasnt pointing at Ron .Harry Potter !she squealed .Look Mom !I can see Be quiet Ginny and its rude to point .Mrs Weasley smiled down at them .Busy year ?she said .Very said Harry .Thanks for the fudge and the sweater Mrs Weasley .Oh it was nothing dear .Ready are you ?It was Uncle Vernon still purplefaced still mustached still looking furious at the nerve of Harry carrying an owl in a cage in a station full of ordinary people .Behind him stood Aunt Petunia and Dudley looking terrified at the very sight of Harry .You must be Harrys family !said Mrs Weasley .In a manner of speaking said Uncle Vernon .Hurry up boy we havent got all day .He walked away .Harry hung back for a last word with Ron and Hermione .See you over the summer then .Hope you have er a good holiday said Hermione looking uncertainly after Uncle Vernon shocked that anyone could be so unpleasant .Oh I will said Harry and they were surprised at the grin that was spreading over his face .They dont know were not allowed to use magic at home .Im going to have a lot of fun with Dudley this summer .THE WORST BIRTHDAY Not for the first time an argument had broken out over breakfast at number four Privet Drive .Mr Vernon Dursley had been woken in the early hours of the morning by a loud hooting noise from his nephew Harrys room .Third time this week !he roared across the table .If you cant control that owl itll have to go !Harry tried yet again to explain .Shes bored he said .Shes used to flying around outside .If I could just let her out at night Do I look stupid ?snarled Uncle Vernon a bit of fried egg dangling from his bushy mustache .I know what 11 happen if that owls let out .He exchanged dark looks with his wife Petunia .Harry tried to argue back but his words were drowned by a long loud belch from the Dursleys son Dudley .I want more bacon .Theres more in the frying pan sweetums said Aunt Petunia turning misty eyes on her massive son .We must build you up while weve got the chance .I dont like the sound of that school food .Nonsense Petunia I never went hungry when was at Smeltings said Uncle Vernon heartily .Dudley gets enough dont you son ?Dudley who was so large his bottom drooped over either side of the kitchen chair grinned and turned to Harry .Pass the frying pan .Youve forgotten the magic word said Harry irritably .The effect of this simple sentence on the rest of the family was incredible Dudley gasped and fell off his chair with a crash that shook the whole kitchen Mrs Dursley gave a small scream and clapped her hands to her mouth Mr Dursley jumped to his feet veins throbbing in his temples .I meant ‘please !said Harry quickly .I didnt mean WHAT HAVE I TOLD YOU thundered his uncle spraying spit over the table ABOUT SAYING THE ‘M WORD IN OUR HOUSE ?But I HOW DARE YOU THREATEN DUDLEY !roared Uncle Vernon pounding the table with his fist .I just I WARNED YOU !I WILL NOT TOLERATE MENTION OF YOUR ABNORMALITY UNDER THIS ROOF !Harry stared from his purplefaced uncle to his pale aunt who was trying to heave Dudley to his feet .All right said Harry all right .Uncle Vernon sat back down breathing like a winded rhinoceros and watching Harry closely out of the corners of his small sharp eyes .Ever since Harry had come home for the summer holidays Uncle Vernon had been treating him like a bomb that might go off at any moment because Harry Potter wasnt a normal boy .As a matter of fact he was as not normal as it is possible to be .Harry Potter was a wizard a wizard fresh from his first year at Hogwarts School of Witchcraft and Wizardry .And if the Dursleys were unhappy to have him back for the holidays it was nothing to how Harry felt .He missed Hogwarts so much it was like having a constant stomachache .He missed the castle with its secret passageways and ghosts his classes though perhaps not Snape the Potions master the mail arriving by owl eating banquets in the Great Hall sleeping in his fourposter bed in the tower dormitory visiting the gamekeeper Hagrid in his cabin next to the Forbidden Forest in the grounds and especially Quidditch the most popular sport in the wizarding world six tall goal posts four flying balls and fourteen players on broomsticks .All Harrys spellbooks his wand robes cauldron and topoftheline Nimbus Two Thousand broomstick had been locked in a cupboard under the stairs by Uncle Vernon the instant Harry had come home .What did the Dursleys care if Harry lost his place on the House Quidditch team because he hadnt practiced all summer ?What was it to the Dursleys if Harry went back to school without any of his homework done ?The Dursleys were what wizards called Muggles not a drop of magical blood in their veins and as far as they were concerned having a wizard in the family was a matter of deepest shame .Uncle Vernon had even padlocked Harrys owl Hedwig inside her cage to stop her from carrying messages to anyone in the wizarding world .Harry looked nothing like the rest of the family .Uncle Vernon was large and neckless with an enormous black mustache Aunt Petunia was horsefaced and bony Dudley was blond pink and porky .Harry on the other hand was small and skinny with brilliant green eyes and jetblack hair that was always untidy .He wore round glasses and on his forehead was a thin lightningshaped scar .It was this scar that made Harry so particularly unusual even for a wizard .This scar was the only hint of Harrys very mysterious past of the reason he had been left on the Dursleys doorstep eleven years before .At the age of one year old Harry had somehow survived a curse from the greatest Dark sorcerer of all time Lord Voldemort whose name most witches and wizards still feared to speak .Harrys parents had died in Voldemorts attack but Harry had escaped with his lightning scar and somehow nobody understood why Voldemorts powers had been destroyed the instant he had failed to kill Harry .So Harry had been brought up by his dead mothers sister and her husband .He had spent ten years with the Dursleys never understanding why he kept making odd things happen without meaning to believing the Dursleys story that he had got his scar in the car crash that had killed his parents .And then exactly a year ago Hogwarts had written to Harry and the whole story had come out .Harry had taken up his place at wizard school where he and his scar were famous .but now the school year was over and he was back with the Dursleys for the summer back to being treated like a dog that had rolled in something smelly .The Dursleys hadnt even remembered that today happened to be Harrys twelfth birthday .Of course his hopes hadnt been high theyd never given him a real present let alone a cake but to ignore it completely .At that moment Uncle Vernon cleared his throat importantly and said Now as we all know today is a very important day .Harry looked up hardly daring to believe it .This could well be the day I make the biggest deal of my career said Uncle Vernon .Harry went back to his toast .Of course he thought bitterly Uncle Vernon was talking about the stupid dinner party .Hed been talking of nothing else for two weeks .Some rich builder and his wife were coming to dinner and Uncle Vernon was hoping to get a huge order from him Uncle Vernons company made drills .I think we should run through the schedule one more time said Uncle Vernon .We should all be in position at eight oclock .Petunia you will be ?In the lounge said Aunt Petunia promptly waiting to welcome them graciously to our home .Good good .And Dudley ?Ill be waiting to open the door .Dudley put on a foul simpering smile .May I take your coats Mr and Mrs Mason ?Theyll love him !cried Aunt Petunia rapturously .Excellent Dudley said Uncle Vernon .Then he rounded on Harry .And you ?Ill be in my bedroom making no noise and pretending Im not there said Harry tonelessly .Exactly said Uncle Vernon nastily .I will lead them into the lounge introduce you Petunia and pour them drinks .At eightfifteen Ill announce dinner said Aunt Petunia .And Dudley you 11 say May I take you through to the dining room Mrs Mason ?said Dudley offering his fat arm to an invisible woman .My perfect little gentleman !sniffed Aunt Petunia .And you ?said Uncle Vernon viciously to Harry .Ill be in my room making no noise and pretending Im not there said Harry dully .Precisely .Now we should aim to get in a few good compliments at dinner .Petunia any ideas ?Vernon tells me youre a wonderful golfer Mr Mason .Do tell me where you bought your dress Mrs Mason .Perfect .Dudley ?How about ‘We had to write an essay about our hero at school Mr Mason and I wrote about you .This was too much for both Aunt Petunia and Harry .Aunt Petunia burst into tears and hugged her son while Harry ducked under the table so they wouldnt see him laughing .And you boy ?Harry fought to keep his face straight as he emerged .Ill be in my room making no noise and pretending Im not there he said .Too right you will said Uncle Vernon forcefully .The Masons dont know anything about you and its going to stay that way .When dinners over you take Mrs Mason back to the lounge for coffee Petunia and Ill bring the subject around to drills .With any luck Ill have the deal signed and sealed before the news at ten .Well be shopping for a vacation home in Majorca this time tomorrow .Harry couldnt feel too excited about this .He didnt think the Dursleys would like him any better in Majorca than they did on Privet Drive .Right Im off into town to pick up the dinner jackets for Dudley and me .And you he snarled at Harry .You stay out of your aunts way while shes cleaning .Harry left through the back door .It was a brilliant sunny day .He crossed the lawn slumped down on the garden bench and sang under his breath Happy birthday to me .happy birthday to me .No cards no presents and he would be spending the evening pretending not to exist .He gazed miserably into the hedge .He had never felt so lonely .More than anything else at Hogwarts more even than playing Quidditch Harry missed his best friends Ron Weasley and Hermione Granger .They however didnt seem to be missing him at all .Neither of them had written to him all summer even though Ron had said he was going to ask Harry to come and stay .Countless times Harry had been on the point of unlocking Hedwigs cage by magic and sending her to Ron and Hermione with a letter but it wasnt worth the risk .Underage wizards werent allowed to use magic outside of school .Harry hadnt told the Dursleys this he knew it was only their terror that he might turn them all into dung beetles that stopped them from locking him in the cupboard under the stairs with his wand and broomstick .For the first couple of weeks back Harry had enjoyed muttering nonsense words under his breath and watching Dudley tearing out of the room as fast as his fat legs would carry him .But the long silence from Ron and Hermione had made Harry feel so cut off from the magical world that even taunting Dudley had lost its appeal and now Ron and Hermione had forgotten his birthday .What wouldnt he give now for a message from Hogwarts ?From any witch or wizard ?Hed almost be glad of a sight of his archenemy Draco Malfoy just to be sure it hadnt all been a dream .Not that his whole year at Hogwarts had been fun .At the very end of last term Harry had come facetoface with none other than Lord Voldemort himself .Voldemort might be a ruin of his former self but he was still terrifying still cunning still determined to regain power .Harry had slipped through Voldemorts clutches for a second time but it had been a narrow escape and even now weeks later Harry kept waking in the night drenched in cold sweat wondering where Voldemort was now remembering his livid face his wide mad eyes Harry suddenly sat bolt upright on the garden bench .He had been staring absentmindedly into the hedge and the hedge was staring back .Two enormous green eyes had appeared among the leaves .Harry jumped to his feet just as a jeering voice floated across the lawn .I know what day it is sang Dudley waddling toward him .The huge eyes blinked and vanished .What ?said Harry not taking his eyes off the spot where they had been .I know what day it is Dudley repeated coming right up to him .Well done said Harry .So youve finally learned the days of the week .Todays your birthday sneered Dudley .How come you havent got any cards ?Havent you even got friends at that freak place ?Better not let your mum hear you talking about my school said Harry coolly .Dudley hitched up his trousers which were slipping down his fat bottom .Whyre you staring at the hedge ?he said suspiciously .Im trying to decide what would be the best spell to set it on fire said Harry .Dudley stumbled backward at once a look of panic on his fat face .You ccant Dad told you youre not to do mmagic he said hell chuck you out of the house and you havent got anywhere else to go you havent got any friends to take you Jiggery pokeryV said Harry in a fierce voice .Hocus pocus squiggly wiggly MUUUUUUM !howled Dudley tripping over his feet as he dashed back toward the house .MUUUUM !Hes doing you know what !Harry paid dearly for his moment of fun .As neither Dudley nor the hedge was in any way hurt Aunt Petunia knew he hadnt really done magic but he still had to duck as she aimed a heavy blow at his head with the soapy frying pan .Then she gave him work to do with the promise he wouldnt eat again until hed finished .While Dudley lolled around watching and eating ice cream Harry cleaned the windows washed the car mowed the lawn trimmed the flowerbeds pruned and watered the roses and repainted the garden bench .The sun blazed overhead burning the back of his neck .Harry knew he shouldnt have risen to Dudleys bait but Dudley had said the very thing Harry had been thinking himself .maybe he didnt have any friends at Hogwarts .Wish they could see famous Harry Potter now he thought savagely as he spread manure on the flower beds his back aching sweat running down his face .It was half past seven in the evening when at last exhausted he heard Aunt Petunia calling him .Get in here !And walk on the newspaper !Harry moved gladly into the shade of the gleaming kitchen .On top of the fridge stood tonights pudding a huge mound of whipped cream and sugared violets .A loin of roast pork was sizzling in the oven .Eat quickly !The Masons will be here soon !snapped Aunt Petunia pointing to two slices of bread and a lump of cheese on the kitchen table .She was already wearing a salmonpink cocktail dress .Harry washed his hands and bolted down his pitiful supper .The moment he had finished Aunt Petunia whisked away his plate .Upstairs !Hurry !As he passed the door to the living room Harry caught a glimpse of Uncle Vernon and Dudley in bow ties and dinner jackets .He had only just reached the upstairs landing when the doorbell rang and Uncle Vernons furious face appeared at the foot of the stairs .Remember boy one sound Harry crossed to his bedroom on tiptoe slipped inside closed the door and turned to collapse on his bed .The trouble was there was already someone sitting on it .DOBBYS WARNING Harry managed not to shout out but it was a close thing .The little creature on the bed had large bat like ears and bulging green eyes the size of tennis balls .Harry knew instantly that this was what had been watching him out of the garden hedge that morning .As they stared at each other Harry heard Dudleys voice from the hall .May I take your coats Mr and Mrs Mason ?The creature slipped off the bed and bowed so low that the end of its long thin nose touched the carpet .Harry noticed that it was wearing what looked like an old pillowcase with rips for arm and legholes .Er hello said Harry nervously .Harry Potter !said the creature in a highpitched voice Harry was sure would carry down the stairs .So long has Dobby wanted to meet you sir .Such an honor it is .Ththank you said Harry edging along the wall and sinking into his desk chair next to Hedwig who was asleep in her large cage .He wanted to ask What are you ?but thought it would sound too rude so instead he said Who are you ?Dobby sir .Just Dobby .Dobby the houseelf said the creature .Oh really ?said Harry .Er I dont want to be rude or anything but this isnt a great time for me to have a houseelf in my bedroom .Aunt Petunias high false laugh sounded from the living room .The elf hung his head .Not that Im not pleased to meet you said Harry quickly but er is there any particular reason youre here ?Oh yes sir said Dobby earnestly .Dobby has come to tell you sir .it is difficult sir .Dobby wonders where to begin .Sit down said Harry politely pointing at the bed .To his horror the elf burst into tears very noisy tears .Ssit down .he wailed .Never .never ever .Harry thought he heard the voices downstairs falter .Im sorry he whispered I didnt mean to offend you or anything Offend Dobby !choked the elf .Dobby has never been asked to sit down by a wizard like an equal Harry trying to say Shh !and look comforting at the same time ushered Dobby back onto the bed where he sat hiccoughing looking like a large and very ugly doll .At last he managed to control himself and sat with his great eyes fixed on Harry in an expression of watery adoration .You cant have met many decent wizards said Harry trying to cheer him up .Dobby shook his head .Then without warning he leapt up and started banging his head furiously on the window shouting Bad Dobby !Bad Dobby !Dont what are you doing ?Harry hissed springing up and pulling Dobby back onto the bed Hedwig had woken up with a particularly loud screech and was beating her wings wildly against the bars of her cage .Dobby had to punish himself sir said the elf who had gone slightly crosseyed .Dobby almost spoke ill of his family sir .Your family ?The wizard family Dobby serves sir .Dobby is a houseelf bound to serve one house and one family forever .Do they know youre here ?asked Harry curiously .Dobby shuddered .Oh no sir no .Dobby will have to punish himself most grievously for coming to see you sir .Dobby will have to shut his ears in the oven door for this .If they ever knew sir But wont they notice if you shut your ears in the oven door ?Dobby doubts it sir .Dobby is always having to punish himself for something sir .They lets Dobby get on with it sir .Sometimes they reminds me to do extra punishments .But why dont you leave ?Escape ?A houseelf must be set free sir .And the family will never set Dobby free .Dobby will serve the family until he dies sir .Harry stared .And I thought I had it bad staying here for another four weeks he said .This makes the Dursleys sound almost human .Cant anyone help you ?Cant I ?Almost at once Harry wished he hadnt spoken .Dobby dissolved again into wails of gratitude .Please Harry whispered frantically please be quiet .If the Dursleys hear anything if they know youre here Harry Potter asks if he can help Dobby .Dobby has heard of your greatness sir but of your goodness Dobby never knew .Harry who was feeling distinctly hot in the face said Whatever youve heard about my greatness is a load of rubbish .Im not even top of my year at Hogwarts thats Hermione she But he stopped quickly because thinking about Hermione was painful .Harry Potter is humble and modest said Dobby reverently his orblike eyes aglow .Harry Potter speaks not of his triumph over HeWhoMustNotBe Named Voldemort ?said Harry .Dobby clapped his hands over his bat ears and moaned Ah speak not the name sir !Speak not the name !Sorry said Harry quickly .I know lots of people dont like it .My friend Ron He stopped again .Thinking about Ron was painful too .Dobby leaned toward Harry his eyes wide as headlights .Dobby heard tell he said hoarsely that Harry Potter met the Dark Lord for a second time just weeks ago .that Harry Potter escaped yet again .Harry nodded and Dobbys eyes suddenly shone with tears .Ah sir he gasped dabbing his face with a corner of the grubby pillowcase he was wearing .Harry Potter is valiant and bold !He has braved so many dangers already !But Dobby has come to protect Harry Potter to warn him even if he does have to shut his ears in the oven door later .Harry Potter must not go back to Hogwarts .There was a silence broken only by the chink of knives and forks from downstairs and the distant rumble of Uncle Vernons voice .Wwhat ?Harry stammered .But Ive got to go back term starts on September first .Its all thats keeping me going .You dont know what its like here .I dont belong here .I belong in your world at Hogwarts .No no no squeaked Dobby shaking his head so hard his ears flapped .Harry Potter must stay where he is safe .He is too great too good to lose .If Harry Potter goes back to Hogwarts he will be in mortal danger .Why ?said Harry in surprise .There is a plot Harry Potter .A plot to make most terrible things happen at Hogwarts School of Witchcraft and Wizardry this year whispered Dobby suddenly trembling all over .Dobby has known it for months sir .Harry Potter must not put himself in peril .He is too important sir !What terrible things ?said Harry at once .Whos plotting them ?Dobby made a funny choking noise and then banged his head frantically against the wall .All right !cried Harry grabbing the elfs arm to stop him .You cant tell me .I understand .But why are you warning me ?A sudden unpleasant thought struck him .Hang on this hasnt got anything to do with Vol sorry with YouKnowWho has it ?You could just shake or nod he added hastily as Dobbys head tilted worryingly close to the wall again .Slowly Dobby shook his head .Not not HeWhoMustNotBeNamed sir But Dobbys eyes were wide and he seemed to be trying to give Harry a hint .Harry however was completely lost .He hasnt got a brother has he ?Dobby shook his head his eyes wider than ever .Well then I cant think who else would have a chance of making horrible things happen at Hogwarts said Harry .I mean theres Dumbledore for one thing you know who Dumbledore is dont you ?Dobby bowed his head .Albus Dumbledore is the greatest headmaster Hogwarts has ever had .Dobby knows it sir .Dobby has heard Dumbledores powers rival those of He WhoMustNotBeNamed at the height of his strength .But sir Dobbys voice dropped to an urgent whisper there are powers Dumbledore doesnt .powers no decent wizard .And before Harry could stop him Dobby bounded off the bed seized Harrys desk lamp and started beating himself around the head with earsplitting yelps .A sudden silence fell downstairs .Two seconds later Harry heart thudding madly heard Uncle Vernon coming into the hall calling Dudley must have left his television on again the little tyke !Quick !In the closet !hissed Harry stuffing Dobby in shutting the door and flinging himself onto the bed just as the door handle turned .What the devil are you doing ?said Uncle Vernon through gritted teeth his face horribly close to Harrys .Youve just ruined the punch line of my Japanese golfer joke .One more sound and youll wish youd never been born boy !He stomped flatfooted from the room .Shaking Harry let Dobby out of the closet .See what its like here ?he said .See why Ive got to go back to Hogwarts ?Its the only place Ive got well I think Ive got friends .Friends who dont even write to Harry Potter ?said Dobby slyly .I expect theyve just been wait a minute said Harry frowning .How do you know my friends havent been writing to me ?Dobby shuffled his feet .Harry Potter mustnt be angry with Dobby .Dobby did it for the best Have you been stopping my letters ?Dobby has them here sir said the elf .Stepping nimbly out of Harrys reach he pulled a thick wad of envelopes from the inside of the pillowcase he was wearing .Harry could make out Hermiones neat writing Rons untidy scrawl and even a scribble that looked as though it was from the Hogwarts gamekeeper Hagrid .Dobby blinked anxiously up at Harry .Harry Potter mustnt be angry .Dobby hoped .if Harry Potter thought his friends had forgotten him .Harry Potter might not want to go back to school sir .Harry wasnt listening .He made a grab for the letters but Dobby jumped out of reach .Harry Potter will have them sir if he gives Dobby his word that he will not return to Hogwarts .Ah sir this is a danger you must not face !Say you wont go back sir !No said Harry angrily .Give me my friends letters !Then Harry Potter leaves Dobby no choice said the elf sadly .Before Harry could move Dobby had darted to the bedroom door pulled it open and sprinted down the stairs .Mouth dry stomach lurching Harry sprang after him trying not to make a sound .He jumped the last six steps landing catlike on the hall carpet looking around for Dobby .From the dining room he heard Uncle Vernon saying .tell Petunia that very funny story about those American plumbers Mr Mason .Shes been dying to hear .Harry ran up the hall into the kitchen and felt his stomach disappear .Aunt Petunias masterpiece of a pudding the mountain of cream and sugared violets was floating up near the ceiling .On top of a cupboard in the corner crouched Dobby .No croaked Harry .Please .theyll kill me .Harry Potter must say hes not going back to school Dobby .please .Say it sir I cant Dobby gave him a tragic look .Then Dobby must do it sir for Harry Potters own good .The pudding fell to the floor with a heartstopping crash .Cream splattered the windows and walls as the dish shattered .With a crack like a whip Dobby vanished .There were screams from the dining room and Uncle Vernon burst into the kitchen to find Harry rigid with shock covered from head to foot in Aunt Petunias pudding .At first it looked as though Uncle Vernon would manage to gloss the whole thing over .Just our nephew very disturbed meeting strangers upsets him so we kept him upstairs .He shooed the shocked Masons back into the dining room promised Harry he would flay him to within an inch of his life when the Masons had left and handed him a mop .Aunt Petunia dug some ice cream out of the freezer and Harry still shaking started scrubbing the kitchen clean .Uncle Vernon might still have been able to make his deal if it hadnt been for the owl .Aunt Petunia was just passing around a box of after dinner mints when a huge barn owl swooped through the dining room window dropped a letter on Mrs Masons head and swooped out again .Mrs Mason screamed like a banshee and ran from the house shouting about lunatics .Mr Mason stayed just long enough to tell the Dursleys that his wife was mortally afraid of birds of all shapes and sizes and to ask whether this was their idea of a joke .Harry stood in the kitchen clutching the mop for support as Uncle Vernon advanced on him a demonic glint in his tiny eyes .Read it !he hissed evilly brandishing the letter the owl had delivered .Go on read it !Harry took it .It did not contain birthday greetings .Dear Mr Potter We have received intelligence that a Hover Charm was used at your place of residence this evening at twelve minutes past nine .As you know underage wizards are not permitted to perform spells outside school and further spellwork on your part may lead to expulsion from said school Decree for the Reasonable Restriction of Underage Sorcery 1875 Paragraph C .We would also ask you to remember that any magical activity that risks notice by members of the non magical community Muggles is a serious offense under section 13 of the International Confederation of Warlocks Statute of Secrecy .Enjoy your holidays !Yours sincerely Mafalda Hopkirk IMPROPER USE OF MAGIC OFFICE Ministry of Magic Harry looked up from the letter and gulped .You didnt tell us you werent allowed to use magic outside school said Uncle Vernon a mad gleam dancing in his eyes .Forgot to mention it .Slipped your mind I daresay .He was bearing down on Harry like a great bulldog all his teeth bared .Well Ive got news for you boy .Im locking you up .Youre never going back to that school .never .and if you try and magic yourself out they 11 expel you !And laughing like a maniac he dragged Harry back upstairs .Uncle Vernon was as bad as his word .The following morning he paid a man to fit bars on Harrys window .He himself fitted a catflap in the bedroom door so that small amounts of food could be pushed inside three times a day .They let Harry out to use the bathroom morning and evening .Otherwise he was locked in his room around the clock .Three days later the Dursleys were showing no sign of relenting and Harry couldnt see any way out of his situation .He lay on his bed watching the sun sinking behind the bars on the window and wondered miserably what was going to happen to him .What was the good of magicking himself out of his room if Hogwarts would expel him for doing it ?Yet life at Privet Drive had reached an alltime low .Now that the Dursleys knew they werent going to wake up as fruit bats he had lost his only weapon .Dobby might have saved Harry from horrible happenings at Hogwarts but the way things were going hed probably starve to death anyway .The catflap rattled and Aunt Petunias hand appeared pushing a bowl of canned soup into the room .Harry whose insides were aching with hunger jumped off his bed and seized it .The soup was stone cold but he drank half of it in one gulp .Then he crossed the room to Hedwigs cage and tipped the soggy vegetables at the bottom of the bowl into her empty food tray .She ruffled her feathers and gave him a look of deep disgust .Its no good turning your beak up at it thats all weve got said Harry grimly .He put the empty bowl back on the floor next to the catflap and lay back down on the bed somehow even hungrier than he had been before the soup .Supposing he was still alive in another four weeks what would happen if he didnt turn up at Hogwarts ?Would someone be sent to see why he hadnt come back ?Would they be able to make the Dursleys let him go ?The room was growing dark .Exhausted stomach rumbling mind spinning over the same unanswerable questions Harry fell into an uneasy sleep .He dreamed that he was on show in a zoo with a card reading UNDERAGE WIZARD attached to his cage .People goggled through the bars at him as he lay starving and weak on a bed of straw .He saw Dobbys face in the crowd and shouted out asking for help but Dobby called Harry Potter is safe there sir !and vanished .Then the Dursleys appeared and Dudley rattled the bars of the cage laughing at him .Stop it Harry muttered as the rattling pounded in his sore head .Leave me alone .cut it out .Im trying to sleep .He opened his eyes .Moonlight was shining through the bars on the window .And someone was goggling through the bars at him a frecklefaced redhaired longnosed someone .Ron Weasley was outside Harrys window .3 THE BURROW Ron breathed Harry creeping to the window and pushing it up so they could talk through the bars .Ron how did you What the ?Harrys mouth fell open as the full impact of what he was seeing hit him .Ron was leaning out of the back window of an old turquoise car which was parked in midair .Grinning at Harry from the front seats were Fred and George Rons elder twin brothers .All right Harry ?asked George .Whats been going on ?said Ron .Why havent you been answering my letters ?Ive asked you to stay about twelve times and then Dad came home and said youd got an official warning for using magic in front of Muggles It wasnt me and how did he know ?He works for the Ministry said Ron .You know were not supposed to do spells outside school You should talk said Harry staring at the floating car .Oh this doesnt count said Ron .Were only borrowing this .Its Dads we didnt enchant it .But doing magic in front of those Muggles you live with I told you I didnt but itll take too long to explain now look can you tell them at Hogwarts that the Dursleys have locked me up and wont let me come back and obviously I cant magic myself out because the Ministryll think thats the second spell Ive done in three days so Stop gibbering said Ron .Weve come to take you home with us .But you cant magic me out either We dont need to said Ron jerking his head toward the front seat and grinning .You forget who Ive got with me .Tie that around the bars said Fred throwing the end of a rope to Harry .If the Dursleys wake up Im dead said Harry as he tied the rope tightly around a bar and Fred revved up the car .Dont worry said Fred and stand back .Harry moved back into the shadows next to Hedwig who seemed to have realized how important this was and kept still and silent .The car revved louder and louder and suddenly with a crunching noise the bars were pulled clean out of the window as Fred drove straight up in the air .Harry ran back to the window to see the bars dangling a few feet above the ground .Panting Ron hoisted them up into the car .Harry listened anxiously but there was no sound from the Dursleys bedroom .When the bars were safely in the back seat with Ron Fred reversed as close as possible to Harrys window .Get in Ron said .But all my Hogwarts stuff my wand my broomstick Where is it ?Locked in the cupboard under the stairs and I cant get out of this room No problem said George from the front passenger seat .Out of the way Harry .Fred and George climbed catlike through the window into Harrys room .You had to hand it to them thought Harry as George took an ordinary hairpin from his pocket and started to pick the lock .A lot of wizards think its a waste of time knowing this sort of Muggle trick said Fred but we feel theyre skills worth learning even if they are a bit slow .There was a small click and the door swung open .So well get your trunk you grab anything you need from your room and hand it out to Ron whispered George .Watch out for the bottom stair it creaks Harry whispered back as the twins disappeared onto the dark landing .Harry dashed around his room collecting his things and passing them out of the window to Ron .Then he went to help Fred and George heave his trunk up the stairs .Harry heard Uncle Vernon cough .At last panting they reached the landing then carried the trunk through Harrys room to the open window .Fred climbed back into the car to pull with Ron and Harry and George pushed from the bedroom side .Inch by inch the trunk slid through the window .Uncle Vernon coughed again .A bit more panted Fred who was pulling from inside the car .One good push Harry and George threw their shoulders against the trunk and it slid out of the window into the back seat of the car .Okay lets go George whispered .But as Harry climbed onto the windowsill there came a sudden loud screech from behind him followed immediately by the thunder of Uncle Vernons voice .THAT RUDDY OWL !Ive forgotten Hedwig !Harry tore back across the room as the landing light clicked on he snatched up Hedwigs cage dashed to the window and passed it out to Ron .He was scrambling back onto the chest of drawers when Uncle Vernon hammered on the unlocked door and it crashed open .For a split second Uncle Vernon stood framed in the doorway then he let out a bellow like an angry bull and dived at Harry grabbing him by the ankle .Ron Fred and George seized Harrys arms and pulled as hard as they could .Petunia !roared Uncle Vernon .Hes getting away !HES GETTING AWAY !But the Weasleys gave a gigantic tug and Harrys leg slid out of Uncle Vernons grasp Harry was in the car hed slammed the door shut Put your foot down Fred !yelled Ron and the car shot suddenly toward the moon .Harry couldnt believe it he was free .He rolled down the window the night air whipping his hair and looked back at the shrinking rooftops of Privet Drive .Uncle Vernon Aunt Petunia and Dudley were all hanging dumbstruck out of Harrys window .See you next summer !Harry yelled .The Weasleys roared with laughter and Harry settled back in his seat grinning from ear to ear .Let Hedwig out he told Ron .She can fly behind us .She hasnt had a chance to stretch her wings for ages .George handed the hairpin to Ron and a moment later Hedwig soared joyfully out of the window to glide alongside them like a ghost .So whats the story Harry ?said Ron impatiently .Whats been happening ?Harry told them all about Dobby the warning hed given Harry and the fiasco of the violet pudding .There was a long shocked silence when he had finished .Very fishy said Fred finally .Definitely dodgy agreed George .So he wouldnt even tell you whos supposed to be plotting all this stuff ?I dont think he could said Harry .I told you every time he got close to letting something slip he started banging his head against the wall .He saw Fred and George look at each other .What you think he was lying to me ?said Harry .Well said Fred put it this way houseelves have got powerful magic of their own but they cant usually use it without their masters permission .I reckon old Dobby was sent to stop you coming back to Hogwarts .Someones idea of a joke .Can you think of anyone at school with a grudge against you ?Yes said Harry and Ron together instantly .Draco Malfoy Harry explained .He hates me .Draco Malfoy ?said George turning around .Not Lucius Malfoys son ?Must be its not a very common name is it ?said Harry .Why ?Ive heard Dad talking about him said George .He was a big supporter of YouKnowWho .And when YouKnowWho disappeared said Fred craning around to look at Harry Lucius Malfoy came back saying hed never meant any of it .Load of dung Dad reckons he was right in YouKnow Whos inner circle .Harry had heard these rumors about Malfoys family before and they didnt surprise him at all .Malfoy made Dudley Dursley look like a kind thoughtful and sensitive boy .I dont know whether the Malfoys own a houseelf . .said Harry .Well whoever owns him will be an old wizarding family and theyll be rich said Fred .Yeah Mums always wishing we had a houseelf to do the ironing said George .But all weve got is a lousy old ghoul in the attic and gnomes all over the garden .Houseelves come with big old manors and castles and places like that you wouldnt catch one in our house .Harry was silent .Judging by the fact that Draco Malfoy usually had the best of everything his family was rolling in wizard gold he could just see Malfoy strutting around a large manor house .Sending the family servant to stop Harry from going back to Hogwarts also sounded exactly like the sort of thing Malfoy would do .Had Harry been stupid to take Dobby seriously ?Im glad we came to get you anyway said Ron .I was getting really worried when you didnt answer any of my letters .I thought it was Errols fault at first Whos Errol ?Our owl .Hes ancient .It wouldnt be the first time hed collapsed on a delivery .So then I tried to borrow Hermes Who ?The owl Mum and Dad bought Percy when he was made prefect said Fred from the front .But Percy wouldnt lend him to me said Ron .Said he needed him .Percys been acting very oddly this summer said George frowning .And he has been sending a lot of letters and spending a load of time shut up in his room .I mean theres only so many times you can polish a prefect badge .Youre driving too far west Fred he added pointing at a compass on the dashboard .Fred twiddled the steering wheel .So does your dad know youve got the car ?said Harry guessing the answer .Er no said Ron he had to work tonight .Hopefully well be able to get it back in the garage without Mum noticing we flew it .What does your dad do at the Ministry of Magic anyway ?He works in the most boring department said Ron .The Misuse of Muggle Artifacts Office .The what ?Its all to do with bewitching things that are Muggle made you know in case they end up back in a Muggle shop or house .Like last year some old witch died and her tea set was sold to an antiques shop .This Muggle woman bought it took it home and tried to serve her friends tea in it .It was a nightmare Dad was working overtime for weeks .What happened ?The teapot went berserk and squirted boiling tea all over the place and one man ended up in the hospital with the sugar tongs clamped to his nose .Dad was going frantic its only him and an old warlock called Perkins in the office and they had to do Memory Charms and all sorts of stuff to cover it up But your dad this car Fred laughed .Yeah Dads crazy about everything to do with Muggles our sheds full of Muggle stuff .He takes it apart puts spells on it and puts it back together again .If he raided our house hed have to put himself under arrest .It drives Mum mad .Thats the main road said George peering down through the windshield .Well be there in ten minutes .Just as well its getting light .A faint pinkish glow was visible along the horizon to the east .Fred brought the car lower and Harry saw a dark patchwork of fields and clumps of trees .Were a little way outside the village said George .Ottery St .Catchpole .Lower and lower went the flying car .The edge of a brilliant red sun was now gleaming through the trees .Touchdown !said Fred as with a slight bump they hit the ground .They had landed next to a tumbledown garage in a small yard and Harry looked out for the first time at Rons house .It looked as though it had once been a large stone pigpen but extra rooms had been added here and there until it was several stories high and so crooked it looked as though it were held up by magic which Harry reminded himself it probably was .Four or five chimneys were perched on top of the red roof .A lopsided sign stuck in the ground near the entrance read THE BURROW .Around the front door lay a jumble of rubber boots and a very rusty cauldron .Several fat brown chickens were pecking their way around the yard .Its not much said Ron .Its wonderful said Harry happily thinking of Privet Drive .They got out of the car .Now well go upstairs really quietly said Fred and wait for Mum to call us for breakfast .Then Ron you come bounding downstairs going ‘Mum look who turned up in the night !and shell be all pleased to see Harry and no one need ever know we flew the car .Right said Ron .Come on Harry I sleep at the at the top Ron had gone a nasty greenish color his eyes fixed on the house .The other three wheeled around .Mrs Weasley was marching across the yard scattering chickens and for a short plump kind faced woman it was remarkable how much she looked like a sabertoothed tiger .Ah said Fred .Oh dear said George .Mrs Weasley came to a halt in front of them her hands on her hips staring from one guilty face to the next .She was wearing a flowered apron with a wand sticking out of the pocket .So she said .Morning Mum said George in what he clearly thought was a jaunty winning voice .Have you any idea how worried Ive been ?said Mrs Weasley in a deadly whisper .Sorry Mum but see we had to All three of Mrs Weasleys sons were taller than she was but they cowered as her rage broke over them .Beds empty No note Car gone could have crashed out of my mind with worry did you care ?never as long as Ive lived you wait until your father gets home we never had trouble like this from Bill or Charlie or Percy Perfect Percy muttered Fred .YOU COULD DO WITH TAKING A LEAF OUT OF PERCYS BOOK !yelled Mrs Weasley prodding a finger in Freds chest .You could havedied you could have been seen you could have lost your father his job It seemed to go on for hours .Mrs Weasley had shouted herself hoarse before she turned on Harry who backed away .Im very pleased to see you Harry dear she said .Come in and have some breakfast .She turned and walked back into the house and Harry after a nervous glance at Ron who nodded encouragingly followed her .The kitchen was small and rather cramped .There was a scrubbed wooden table and chairs in the middle and Harry sat down on the edge of his seat looking around .He had never been in a wizard house before .The clock on the wall opposite him had only one hand and no numbers at all .Written around the edge were things like Time to make tea Time to feed the chickens and Youre late .Books were stacked three deep on the mantelpiece books with titles like Charm Your Own Cheese Enchantment in Baking and One Minute Feasts Its Magid And unless Harrys ears were deceiving him the old radio next to the sink had just announced that coming up was Witching Hour with the popular singing sorceress Celestina Warbeck .Mrs Weasley was clattering around cooking breakfast a little haphazardly throwing dirty looks at her sons as she threw sausages into the frying pan .Every now and then she muttered things like dont know what you were thinking of and never would have believed it .I dont blame you dear she assured Harry tipping eight or nine sausages onto his plate .Arthur and I have been worried about you too .Just last night we were saying wed come and get you ourselves if you hadnt written back to Ron by Friday .But really she was now adding three fried eggs to his plate flying an illegal car halfway across the country anyone could have seen you She flicked her wand casually at the dishes in the sink which began to clean themselves clinking gently in the background .It was cloudy Mum !said Fred .You keep your mouth closed while youre eating !Mrs Weasley snapped .They were starving him Mum !said George .And you !said Mrs Weasley but it was with a slightly softened expression that she started cutting Harry bread and buttering it for him .At that moment there was a diversion in the form of a small redheaded figure in a long nightdress who appeared in the kitchen gave a small squeal and ran out again .Ginny said Ron in an undertone to Harry .My sister .Shes been talking about you all summer .Yeah shell be wanting your autograph Harry Fred said with a grin but he caught his mothers eye and bent his face over his plate without another word .Nothing more was said until all four plates were clean which took a surprisingly short time .Blimey Im tired yawned Fred setting down his knife and fork at last .I think Ill go to bed and You will not snapped Mrs Weasley .Its your own fault youve been up all night .Youre going to de gnome the garden for me theyre getting completely out of hand again Oh Mum And you two she said glaring at Ron and Fred .You can go up to bed dear she added to Harry .You didnt ask them to fly that wretched car But Harry who felt wide awake said quickly Ill help Ron .Ive never seen a degnoming Thats very sweet of you dear but its dull work said Mrs Weasley .Now lets see what Lockharts got to say on the subject And she pulled a heavy book from the stack on the mantelpiece .George groaned .Mum we know how to degnome a garden Harry looked at the cover of Mrs Weasleys book .Written across it in fancy gold letters were the words Gilderoy Lockharts Guide to Household Pests .There was a big photograph on the front of a very good looking wizard with wavy blond hair and bright blue eyes .As always in the wizarding world the photograph was moving the wizard who Harry supposed was Gilderoy Lockhart kept winking cheekily up at them all .Mrs Weasley beamed down at him .Oh he is marvelous she said .He knows his household pests all right its a wonderful book .Mum fancies him said Fred in a very audible whisper .Dont be so ridiculous Fred said Mrs Weasley her cheeks rather pink .All right if you think you know better than Lockhart you can go and get on with it and woe betide you if theres a single gnome in that garden when I come out to inspect it .Yawning and grumbling the Weasleys slouched outside with Harry behind them .The garden was large and in Harrys eyes exactly what a garden should be .The Dursleys wouldnt have liked it there were plenty of weeds and the grass needed cutting but there were gnarled trees all around the walls plants Harry had never seen spilling from every flower bed and a big green pond full of frogs .Muggles have garden gnomes too you know Harry told Ron as they crossed the lawn .Yeah Ive seen those things they think are gnomes said Ron bent double with his head in a peony bush like fat little Santa Clauses with fishing rods .There was a violent scuffling noise the peony bush shuddered and Ron straightened up .This is a gnome he said grimly .Gerroff me !Gerroff me !squealed the gnome .It was certainly nothing like Santa Claus .It was small and leathery looking with a large knobby bald head exactly like a potato .Ron held it at arms length as it kicked out at him with its horny little feet he grasped it around the ankles and turned it upside down .This is what you have to do he said .He raised the gnome above his head Gerroff me !and started to swing it in great circles like a lasso .Seeing the shocked look on Harrys face Ron added It doesnt hurt them youve just got to make them really dizzy so they cant find their way back to the gnomeholes .He let go of the gnomes ankles It flew twenty feet into the air and landed with a thud in the field over the hedge .Pitiful said Fred .I bet I can get mine beyond that stump .Harry learned quickly not to feel too sorry for the gnomes .He decided just to drop the first one he caught over the hedge but the gnome sensing weakness sank its razorsharp teeth into Harrys finger and he had a hard job shaking it off until Wow Harry that mustve been fifty feet .The air was soon thick with flying gnomes .See theyre not too bright said George seizing five or six gnomes at once .The moment they know the degnomings going on they storm up to have a look .Youd think theyd have learned by now just to stay put .Soon the crowd of gnomes in the field started walking away in a straggling line their little shoulders hunched .Theyll be back said Ron as they watched the gnomes disappear into the hedge on the other side of the field .They love it here .Dads too soft with them he thinks theyre funny .Just then the front door slammed .Hes back !said George .Dads home !They hurried through the garden and back into the house .Mr Weasley was slumped in a kitchen chair with his glasses off and his eyes closed .He was a thin man going bald but the little hair he had was as red as any of his childrens .He was wearing long green robes which were dusty and travelworn .What a night he mumbled groping for the teapot as they all sat down around him .Nine raids .Nine !And old Mundungus Fletcher tried to put a hex on me when I had my back turned .Mr Weasley took a long gulp of tea and sighed .Find anything Dad ?said Fred eagerly .All I got were a few shrinking door keys and a biting kettle yawned Mr Weasley .There was some pretty nasty stuff that wasnt my department though .Mortlake was taken away for questioning about some extremely odd ferrets but thats the Committee on Experimental Charms thank goodness .Why would anyone bother making door keys shrink ?said George .Just Mugglebaiting sighed Mr Weasley .Sell them a key that keeps shrinking to nothing so they can never find it when they need it .Of course its very hard to convict anyone because no Muggle would admit their key keeps shrinking theyll insist they just keep losing it .Bless them theyll go to any lengths to ignore magic even if its staring them in the face .But the things our lot have taken to enchanting you wouldnt believe LIKE CARS FOR INSTANCE ?Mrs Weasley had appeared holding a long poker like a sword .Mr Weasleys eyes jerked open .He stared guiltily at his wife .Ccars Molly dear ?Yes Arthur cars said Mrs Weasley her eyes flashing .Imagine a wizard buying a rusty old car and telling his wife all he wanted to do with it was take it apart to see how it worked while really he was enchanting it to make it fly .Mr Weasley blinked .Well dear I think youll find that he would be quite within the law to do that even if er he maybe would have done better to um tell his wife the truth . .Theres a loophole in the law youll find .As long as he wasnt intending to fly the car the fact that the car could fly wouldnt Arthur Weasley you made sure there was a loophole when you wrote that law !shouted Mrs Weasley .Just so you could carry on tinkering with all that Muggle rubbish in your shed !And for your information Harry arrived this morning in the car you werent intending to fly !Harry ?said Mr Weasley blankly .Harry who ?He looked around saw Harry and jumped .Good lord is it Harry Potter ?Very pleased to meet you Rons told us so much about Your sons flew that car to Harrys house and back last nighti shouted Mrs Weasley .What have you got to say about that eh ?Did you really ?said Mr Weasley eagerly .Did it go all right ?I I mean he faltered as sparks flew from Mrs Weasleys eyes that that was very wrong boys very wrong indeed .Lets leave them to it Ron muttered to Harry as Mrs Weasley swelled like a bullfrog .Come on Ill show you my bedroom .They slipped out of the kitchen and down a narrow passageway to an uneven staircase which wound its way zigzagging up through the house .On the third landing a door stood ajar .Harry just caught sight of a pair of bright brown eyes staring at him before it closed with a snap .Ginny said Ron .You dont know how weird it is for her to be this shy .She never shuts up normally They climbed two more flights until they reached a door with peeling paint and a small plaque on it saying RONALDS ROOM .Harry stepped in his head almost touching the sloping ceiling and blinked .It was like walking into a furnace Nearly everything in Rons room seemed to be a violent shade of orange the bedspread the walls even the ceiling .Then Harry realized that Ron had covered nearly every inch of the shabby wallpaper with posters of the same seven witches and wizards all wearing bright orange robes carrying broomsticks and waving energetically .Your Quidditch team ?said Harry .The Chudley Cannons said Ron pointing at the orange bedspread which was emblazoned with two giant black Cs and a speeding cannonball .Ninth in the league .Rons school spellbooks were stacked untidily in a corner next to a pile of comics that all seemed to feature The Adventures of Martin Miggs the Mad Muggle .Rons magic wand was lying on top of a fish tank full of frog spawn on the windowsill next to his fat gray rat Scabbers who was snoozing in a patch of sun .Harry stepped over a pack of Self Shuffling playing cards on the floor and looked out of the tiny window .In the field far below he could see a gang of gnomes sneaking one by one back through the Weasleys hedge .Then he turned to look at Ron who was watching him almost nervously as though waiting for his opinion .Its a bit small said Ron quickly .Not like that room you had with the Muggles .And Im right underneath the ghoul in the attic hes always banging on the pipes and groaning .But Harry grinning widely said This is the best house Ive ever been in .Rons ears went pink .AT FLOURISH AND BLOTTS Life at the Burrow was as different as possible from life on Privet Drive .The Dursleys liked everything neat and ordered the Weasleys house burst with the strange and unexpected .Harry got a shock the first time he looked in the mirror over the kitchen mantelpiece and it shouted Tuck your shirt in scruff yV The ghoul in the attic howled and dropped pipes whenever he felt things were getting too quiet and small explosions from Fred and Georges bedroom were considered perfectly normal .What Harry found most unusual about life at Rons however wasnt the talking mirror or the clanking ghoul It was the fact that everybody there seemed to like him .Mrs Weasley fussed over the state of his socks and tried to force him to eat fourth helpings at every meal .Mr Weasley liked Harry to sit next to him at the dinner table so that he could bombard him with questions about life with Muggles asking him to explain how things like plugs and the postal service worked .Fascinating !he would say as Harry talked him through using a telephone .Ingenious really how many ways Muggles have found of getting along without magic .Harry heard from Hogwarts one sunny morning about a week after he had arrived at the Burrow .He and Ron went down to breakfast to find Mr and Mrs Weasley and Ginny already sitting at the kitchen table .The moment she saw Harry Ginny accidentally knocked her porridge bowl to the floor with a loud clatter .Ginny seemed very prone to knocking things over whenever Harry entered a room .She dived under the table to retrieve the bowl and emerged with her face glowing like the setting sun .Pretending he hadnt noticed this Harry sat down and took the toast Mrs Weasley offered him .Letters from school said Mr Weasley passing Harry and Ron identical envelopes of yellowish parchment addressed in green ink .Dumbledore already knows youre here Harry doesnt miss a trick that man .You twove got them too he added as Fred and George ambled in still in their pajamas .For a few minutes there was silence as they all read their letters .Harrys told him to catch the Hogwarts Express as usual from Kings Cross station on September first .There was also a list of the new books hed need for the coming year .SECONDYEAR STUDENTS WILL REQUIRE The Standard Book of Spells Grade 2 by Miranda Goshawk Break with a Banshee by Gilderoy Lockhart Gadding with Ghouls by Gilderoy Lockhart Holidays with Hags by Gilderoy Lockhart Travels with Trolls by Gilderoy Lockhart Voyages with Vampires by Gilderoy Lockhart Wanderings with Werewolves by Gilderoy Lockhart Year with the Yeti by Gilderoy Lockhart Fred who had finished his own list peered over at Harrys .Youve been told to get all Lockharts books too !he said .The new Defense Against the Dark Arts teacher must be a fan bet its a witch .At this point Fred caught his mothers eye and quickly busied himself with the marmalade .That lot wont come cheap said George with a quick look at his parents .Lockharts books are really expensive .Well well manage said Mrs Weasley but she looked worried .I expect well be able to pick up a lot of Ginnys things secondhand .Oh are you starting at Hogwarts this year ?Harry asked Ginny .She nodded blushing to the roots of her flaming hair and put her elbow in the butter dish .Fortunately no one saw this except Harry because just then Rons elder brother Percy walked in .He was already dressed his Hogwarts prefect badge pinned to his sweater vest .Morning all said Percy briskly .Lovely day .He sat down in the only remaining chair but leapt up again almost immediately pulling from underneath him a molting gray feather duster at least that was what Harry thought it was until he saw that it was breathing .Errol !said Ron taking the limp owl from Percy and extracting a letter from under its wing .Finally hes got Hermiones answer .I wrote to her saying we were going to try and rescue you from the Dursleys .He carried Errol to a perch just inside the back door and tried to stand him on it but Errol flopped straight off again so Ron laid him on the draining board instead muttering Pathetic .Then he ripped open Hermiones letter and read it out loud ‘Dear Ron and Harry if youre there ‘I hope everything went all right and that Harry is okay and that you didnt do anything illegal to get him out Ron because that would get Harry into trouble too .Ive been really worried and if Harry is all right will you please let me know at once but perhaps it would be better if you used a different owl because I think another delivery might finish your one off ‘Im very busy with schoolwork of course How can she be ?said Ron in horror .Were on vacation ! ‘and were going to London next Wednesday to buy my new books .Why dont we meet in Diagon Alley ? ‘Let me know whats happening as soon as you can .Love from Hermione .Well that fits in nicely we can go and get all your things then too said Mrs Weasley starting to clear the table .What re you all up to today ?Harry Ron Fred and George were planning to go up the hill to a small paddock the Weasleys owned .It was surrounded by trees that blocked it from view of the village below meaning that they could practice Quidditch there as long as they didnt fly too high .They couldnt use real Quidditch balls which would have been hard to explain if they had escaped and flown away over the village instead they threw apples for one another to catch .They took turns riding Harrys Nimbus Two Thousand which was easily the best broom Rons old Shooting Star was often outstripped by passing butterflies .Five minutes later they were marching up the hill broomsticks over their shoulders .They had asked Percy if he wanted to join them but he had said he was busy .Harry had only seen Percy at mealtimes so far he stayed shut in his room the rest of the time .Wish I knew what he was up to said Fred frowning .Hes not himself .His exam results came the day before you did twelve O .W .L .s and he hardly gloated at all .Ordinary Wizarding Levels George explained seeing Harrys puzzled look .Bill got twelve too .If were not careful well have another Head Boy in the family .I dont think I could stand the shame .Bill was the oldest Weasley brother .He and the next brother Charlie had already left Hogwarts .Harry had never met either of them but knew that Charlie was in Romania studying dragons and Bill in Egypt working for the wizards bank Gringotts .Dunno how Mum and Dad are going to afford all our school stuff this year said George after a while .Five sets of Lockhart books !And Ginny needs robes and a wand and everything .Harry said nothing .He felt a bit awkward .Stored in an underground vault at Gringotts in London was a small fortune that his parents had left him .Of course it was only in the wizarding world that he had money you couldnt use Galleons Sickles and Knuts in Muggle shops .He had never mentioned his Gringotts bank account to the Dursleys he didnt think their horror of anything connected with magic would stretch to a large pile of gold .Mrs Weasley woke them all early the following Wednesday .After a quick half a dozen bacon sandwiches each they pulled on their coats and Mrs Weasley took a flowerpot off the kitchen mantelpiece and peered inside .Were running low Arthur she sighed .Well have to buy some more today .Ah well guests first !After you Harry dear !And she offered him the flowerpot .Harry stared at them all watching him .Wwhat am I supposed to do ?he stammered .Hes never traveled by Floo powder said Ron suddenly .Sorry Harry I forgot .Never ?said Mr Weasley .But how did you get to Diagon Alley to buy your school things last year ?I went on the Underground Really ?said Mr Weasley eagerly .Were there escapators ?How exactly Not now Arthur said Mrs Weasley .Floo powders a lot quicker dear but goodness me if youve never used it before Hell be all right Mum said Fred .Harry watch us first .He took a pinch of glittering powder out of the flowerpot stepped up to the fire and threw the powder into the flames .With a roar the fire turned emerald green and rose higher than Fred who stepped right into it shouted Diagon Alley !and vanished .You must speak clearly dear Mrs Weasley told Harry as George dipped his hand into the flowerpot .And be sure to get out at the right grate .The right what ?said Harry nervously as the fire roared and whipped George out of sight too .Well there are an awful lot of wizard fires to choose from you know but as long as youve spoken clearly Hell be fine Molly dont fuss said Mr Weasley helping himself to Floo powder too .But dear if he got lost how would we ever explain to his aunt and uncle ?They wouldnt mind Harry reassured her .Dudley would think it was a brilliant joke if I got lost up a chimney dont worry about that Well .all right .you go after Arthur said Mrs Weasley .Now when you get into the fire say where youre going And keep your elbows tucked in Ron advised .And your eyes shut said Mrs Weasley .The soot Dont fidget said Ron .Or you might well fall out of the wrong fireplace But dont panic and get out too early wait until you see Fred and George .Trying hard to bear all this in mind Harry took a pinch of Floo powder and walked to the edge of the fire .He took a deep breath scattered the powder into the flames and stepped forward the fire felt like a warm breeze he opened his mouth and immediately swallowed a lot of hot ash .DDiagon Alley he coughed .It felt as though he were being sucked down a giant drain .He seemed to be spinning very fast the roaring in his ears was deafening he tried to keep his eyes open but the whirl of green flames made him feel sick something hard knocked his elbow and he tucked it in tightly still spinning and spinning now it felt as though cold hands were slapping his face squinting through his glasses he saw a blurred stream of fireplaces and snatched glimpses of the rooms beyond his bacon sandwiches were churning inside him he closed his eyes again wishing it would stop and then He fell face forward onto cold stone and felt the bridge of his glasses snap .Dizzy and bruised covered in soot he got gingerly to his feet holding his broken glasses up to his eyes .He was quite alone but where he was he had no idea .All he could tell was that he was standing in the stone fireplace of what looked like a large dimly lit wizards shop but nothing in here was ever likely to be on a Hogwarts school list .A glass case nearby held a withered hand on a cushion a bloodstained pack of cards and a staring glass eye .Evillooking masks stared down from the walls an assortment of human bones lay upon the counter and rusty spiked instruments hung from the ceiling .Even worse the dark narrow street Harry could see through the dusty shop window was definitely not Diagon Alley .The sooner he got out of here the better .Nose still stinging where it had hit the hearth Harry made his way swiftly and silently toward the door but before hed got halfway toward it two people appeared on the other side of the glass and one of them was the very last person Harry wanted to meet when he was lost covered in soot and wearing broken glasses Draco Malfoy .Harry looked quickly around and spotted a large black cabinet to his left he shot inside it and pulled the doors closed leaving a small crack to peer through .Seconds later a bell clanged and Malfoy stepped into the shop .The man who followed could only be Dracos father .He had the same pale pointed face and identical cold gray eyes .Mr Malfoy crossed the shop looking lazily at the items on display and rang a bell on the counter before turning to his son and saying Touch nothing Draco .Malfoy who had reached for the glass eye said I thought you were going to buy me a present .I said I would buy you a racing broom said his father drumming his fingers on the counter .Whats the good of that if Im not on the House team ?said Malfoy looking sulky and badtempered .Harry Potter got a Nimbus Two Thousand last year .Special permission from Dumbledore so he could play for Gryffindor .Hes not even that good its just because hes famous .famous for having a stupid scar on his forehead .Malfoy bent down to examine a shelf full of skulls . .everyone thinks hes so smart wonderful Potter with his scar and his broomstick You have told me this at least a dozen times already said Mr Malfoy with a quelling look at his son .And I would remind you that it is not prudent to appear less than fond of Harry Potter not when most of our kind regard him as the hero who made the Dark Lord disappear ah Mr Borgin .A stooping man had appeared behind the counter smoothing his greasy hair back from his face .Mr Malfoy what a pleasure to see you again said Mr Borgin in a voice as oily as his hair .Delighted and young Master Malfoy too charmed .How may I be of assistance ?I must show you just in today and very reasonably priced Im not buying today Mr Borgin but selling said Mr Malfoy .Selling ?The smile faded slightly from Mr Borgin s face .You have heard of course that the Ministry is conducting more raids said Mr Malfoy taking a roll of parchment from his inside pocket and unraveling it for Mr Borgin to read .I have a few ah items at home that might embarrass me if the Ministry were to call .Mr Borgin fixed a pair of pincenez to his nose and looked down the list .The Ministry wouldnt presume to trouble you sir surely ?Mr Malfoys lip curled .I have not been visited yet .The name Malfoy still commands a certain respect yet the Ministry grows ever more meddlesome .There are rumors about a new Muggle Protection Act no doubt that flea bitten Muggleloving fool Arthur Weasley is behind it Harry felt a hot surge of anger .and as you see certain of these poisons might make it appear I understand sir of course said Mr Borgin .Let me see .Can I have that ?interrupted Draco pointing at the withered hand on its cushion .Ah the Hand of Glory !said Mr Borgin abandoning Mr Malfoys list and scurrying over to Draco .Insert a candle and it gives light only to the holder !Best friend of thieves and plunderers !Your son has fine taste sir .I hope my son will amount to more than a thief or a plunderer Borgin said Mr Malfoy coldly and Mr Borgin said quickly No offense sir no offense meant Though if his grades dont pick up said Mr Malfoy more coldly still that may indeed be all he is fit for Its not my fault retorted Draco .The teachers all have favorites that Hermione Granger I would have thought youd be ashamed that a girl of no wizard family beat you in every exam snapped Mr Malfoy .Ha !said Harry under his breath pleased to see Draco looking both abashed and angry .Its the same all over said Mr Borgin in his oily voice .Wizard blood is counting for less everywhere Not with me said Mr Malfoy his long nostrils flaring .No sir nor with me sir said Mr Borgin with a deep bow .In that case perhaps we can return to my list said Mr Malfoy shortly .I am in something of a hurry Borgin I have important business elsewhere today They started to haggle .Harry watched nervously as Draco drew nearer and nearer to his hiding place examining the objects for sale .Draco paused to examine a long coil of hangmans rope and to read smirking the card propped on a magnificent necklace of opals Caution Do Not Touch .Cursed Has Claimed the Lives of Nineteen Muggle Owners to Date .Draco turned away and saw the cabinet right in front of him .He walked forward he stretched out his hand for the handle Done said Mr Malfoy at the counter .Come Draco Harry wiped his forehead on his sleeve as Draco turned away .Good day to you Mr Borgin .Ill expect you at the manor tomorrow to pick up the goods .The moment the door had closed Mr Borgin dropped his oily manner .Good day yourself Mister Malfoy and if the stories are true you havent sold me half of whats hidden in your manor .Muttering darkly Mr Borgin disappeared into a back room .Harry waited for a minute in case he came back then quietly as he could slipped out of the cabinet past the glass cases and out of the shop door .Clutching his broken glasses to his face Harry stared around .He had emerged into a dingy alleyway that seemed to be made up entirely of shops devoted to the Dark Arts .The one hed just left Borgin and Burkes looked like the largest but opposite was a nasty window display of shrunken heads and two doors down a large cage was alive with gigantic black spiders .Two shab bylooking wizards were watching him from the shadow of a doorway muttering to each other .Feeling jumpy Harry set off trying to hold his glasses on straight and hoping against hope hed be able to find a way out of here .An old wooden street sign hanging over a shop selling poisonous candles told him he was in Knockturn Alley .This didnt help as Harry had never heard of such a place .He supposed he hadnt spoken clearly enough through his mouthful of ashes back in the Weasleys fire .Trying to stay calm he wondered what to do .Not lost are you my dear ?said a voice in his ear making him jump .An aged witch stood in front of him holding a tray of what looked horribly like whole human fingernails .She leered at him showing mossy teeth .Harry backed away .Im fine thanks he said .Im just HARRY !What dyeh think yer doin down there ?Harrys heart leapt .So did the witch a load of fingernails cascaded down over her feet and she cursed as the massive form of Hagrid the Hogwarts gamekeeper came striding toward them beetleblack eyes flashing over his great bristling beard .Hagrid !Harry croaked in relief .I was lost Floo powder Hagrid seized Harry by the scruff of the neck and pulled him away from the witch knocking the tray right out of her hands .Her shrieks followed them all the way along the twisting alleyway out into bright sunlight .Harry saw a familiar snowwhite marble building in the distance Gringotts Bank .Hagrid had steered him right into Diagon Alley .Yer a mess !said Hagrid gruffly brushing soot off Harry so forcefully he nearly knocked him into a barrel of dragon dung outside an apothecary .Skulkin around Knockturn Alley I dunno dodgy place Harry don want no one ter see yeh down there I realized that said Harry ducking as Hagrid made to brush him off again .I told you I was lost what were you doing down there anyway ?I was lookin fer a FleshEatin Slug Repellent growled Hagrid .Theyre ruinin the school cabbages .Yer not on yer own ?Im staying with the Weasleys but we got separated Harry explained .Ive got to go and find them .They set off together down the street .How come yeh never wrote back ter me ?said Hagrid as Harry jogged alongside him he had to take three steps to every stride of Hagrid s enormous boots .Harry explained all about Dobby and the Dursleys .Lousy Muggles growled Hagrid .If Idve known Harry !Harry !Over here !Harry looked up and saw Hermione Granger standing at the top of the white flight of steps to Gringotts .She ran down to meet them her bushy brown hair flying behind her .What happened to your glasses ?Hello Hagrid Oh its wonderful to see you two again Are you coming into Gringotts Harry ?As soon as Ive found the Weasleys said Harry .Yeh wont have long ter wait Hagrid said with a grin .Harry and Hermione looked around Sprinting up the crowded street were Ron Fred George Percy and Mr Weasley .Harry Mr Weasley panted .We hoped youd only gone one grate too far .He mopped his glistening bald patch .Mollys frantic shes coming now Where did you come out ?Ron asked .Knockturn Alley said Hagrid grimly .Excellent .said Fred and George together .Weve never been allowed in said Ron enviously .I should ruddy well think not growled Hagrid .Mrs Weasley now came galloping into view her handbag swinging wildly in one hand Ginny just clinging onto the other .Oh Harry oh my dear you could have been anywhere Gasping for breath she pulled a large clothes brush out of her bag and began sweeping off the soot Hagrid hadnt managed to beat away .Mr Weasley took Harrys glasses gave them a tap of his wand and returned them good as new .Well gotta be off said Hagrid who was having his hand wrung by Mrs Weasley Knockturn Alley !If you hadnt found him Hagrid .See yer at Hogwarts !And he strode away head and shoulders taller than anyone else in the packed street .Guess who I saw in Borgin and Burkes ?Harry asked Ron and Hermione as they climbed the Gringotts steps .Malfoy and his father .Did Lucius Malfoy buy anything ?said Mr Weasley sharply behind them .No he was selling So hes worried said Mr Weasley with grim satisfaction .Oh Id love to get Lucius Malfoy for something .You be careful Arthur said Mrs Weasley sharply as they were bowed into the bank by a goblin at the door .That familys trouble .Dont go biting off more than you can chew So you dont think Im a match for Lucius Malfoy ?said Mr Weasley indignantly but he was distracted almost at once by the sight of Hermiones parents who were standing nervously at the counter that ran all along the great marble hall waiting for Hermione to introduce them .But youre Mugglesl said Mr Weasley delightedly .We must have a drink !Whats that youve got there ?Oh youre changing Muggle money .Molly look !He pointed excitedly at the tenpound notes in Mr Grangers hand .Meet you back here Ron said to Hermione as the Weasleys and Harry were led off to their underground vaults by another Gringotts goblin .The vaults were reached by means of small goblin driven carts that sped along minature train tracks through the banks underground tunnels .Harry enjoyed the breakneck journey down to the Weasleys vault but felt dreadful far worse than he had in Knock turn Alley when it was opened .There was a very small pile of silver Sickles inside and just one gold Galleon .Mrs Weasley felt right into the corners before sweeping the whole lot into her bag .Harry felt even worse when they reached his vault .He tried to block the contents from view as he hastily shoved handfuls of coins into a leather bag .Back outside on the marble steps they all separated .Percy muttered vaguely about needing a new quill .Fred and George had spotted their friend from Hogwarts Lee Jordan .Mrs Weasley and Ginny were going to a secondhand robe shop .Mr Weasley was insisting on taking the Grangers off to the Leaky Cauldron for a drink .Well all meet at Flourish and Blotts in an hour to buy your schoolbooks said Mrs Weasley setting off with Ginny .And not one step down Knockturn Alley !she shouted at the twins retreating backs .Harry Ron and Hermione strolled off along the winding cobbled street .The bag of gold silver and bronze jangling cheerfully in Harrys pocket was clamoring to be spent so he bought three large strawberryandpeanutbutter ice creams which they slurped happily as they wandered up the alley examining the fascinating shop windows .Ron gazed longingly at a full set of Chudley Cannon robes in the windows of Quality Quidditch Supplies until Hermione dragged them off to buy ink and parchment next door .In Gambol and Japes Wizarding Joke Shop they met Fred George and Lee Jordan who were stocking up on Dr .Filibusters Fabulous Wet Start NoHeat Fireworks and in a tiny junk shop full of broken wands lopsided brass scales and old cloaks covered in potion stains they found Percy deeply immersed in a small and deeply boring book called Prefects Who Gained Power .A study of Hogwarts prefects and their later careers Ron read aloud off the back cover .That sounds fascinating .Go away Percy snapped .Course hes very ambitious Percy hes got it all planned out .He wants to be Minister of Magic .Ron told Harry and Hermione in an undertone as they left Percy to it .An hour later they headed for Flourish and Blotts .They were by no means the only ones making their way to the bookshop .As they approached it they saw to their surprise a large crowd jostling outside the doors trying to get in .The reason for this was proclaimed by a large banner stretched across the upper windows GILDEROY LOCKHART will be signing copies of his autobiography MAGICAL ME today 1230 p .m .to 430 p .m .We can actually meet him !Hermione squealed .I mean hes written almost the whole booklist !The crowd seemed to be made up mostly of witches around Mrs Weasleys age .A harassedlooking wizard stood at the door saying Calmly please ladies .Dont push there .mind the books now .Harry Ron and Hermione squeezed inside .A long line wound right to the back of the shop where Gilderoy Lockhart was signing his books .They each grabbed a copy of The Standard Book of Spells Grade 2 and sneaked up the line to where the rest of the Weasleys were standing with Mr and Mrs Granger .Oh there you are good said Mrs Weasley .She sounded breathless and kept patting her hair .Well be able to see him in a minute .Gilderoy Lockhart came slowly into view seated at a table surrounded by large pictures of his own face all winking and flashing dazzlingly white teeth at the crowd .The real Lockhart was wearing robes of forget menot blue that exactly matched his eyes his pointed wizards hat was set at a jaunty angle on his wavy hair .A short irritablelooking man was dancing around taking photographs with a large black camera that emitted puffs of purple smoke with every blinding flash .Out of the way there he snarled at Ron moving back to get a better shot .This is for the Daily Prophet Big deal said Ron rubbing his foot where the photographer had stepped on it .Gilderoy Lockhart heard him .He looked up .He saw Ron and then he saw Harry .He stared .Then he leapt to his feet and positively shouted It cant be Harry Potter ?The crowd parted whispering excitedly Lockhart dived forward seized Harrys arm and pulled him to the front .The crowd burst into applause .Harrys face burned as Lockhart shook his hand for the photographer who was clicking away madly wafting thick smoke over the Weasleys .Nice big smile Harry said Lockhart through his own gleaming teeth .Together you and I are worth the front page .When he finally let go of Harrys hand Harry could hardly feel his fingers .He tried to sidle back over to the Weasleys but Lockhart threw an arm around his shoulders and clamped him tightly to his side .Ladies and gentlemen he said loudly waving for quiet .What an extraordinary moment this is !The perfect moment for me to make a little announcement Ive been sitting on for some time !When young Harry here stepped into Flourish and Blotts today he only wanted to buy my autobiography which I shall be happy to present him now free of charge The crowd applauded again .He had no idea Lockhart continued giving Harry a little shake that made his glasses slip to the end of his nose that he would shortly be getting much much more than my book Magical Me .He and his schoolmates will in fact be getting the real magical me .Yes ladies and gentlemen I have great pleasure and pride in announcing that this September I will be taking up the post of Defense Against the Dark Arts teacher at Hogwarts School of Witchcraft and Wizardry !The crowd cheered and clapped and Harry found himself being presented with the entire works of Gilderoy Lockhart .Staggering slightly under their weight he managed to make his way out of the limelight to the edge of the room where Ginny was standing next to her new cauldron .You have these Harry mumbled to her tipping the books into the cauldron .Ill buy my own Bet you loved that didnt you Potter ?said a voice Harry had no trouble recognizing .He straightened up and found himself facetoface with Draco Malfoy who was wearing his usual sneer .Famous Harry Potter said Malfoy .Cant even go into a bookshop without making the front page .Leave him alone he didnt want all that !said Ginny .It was the first time she had spoken in front of Harry .She was glaring at Malfoy .Potter youve got yourself a girlfriend .drawled Malfoy .Ginny went scarlet as Ron and Hermione fought their way over both clutching stacks of Lockharts books .Oh its you said Ron looking at Malfoy as if he were something unpleasant on the sole of his shoe .Bet youre surprised to see Harry here eh ?Not as surprised as I am to see you in a shop Weasley retorted Malfoy .I suppose your parents will go hungry for a month to pay for all those .Ron went as red as Ginny .He dropped his books into the cauldron too and started toward Malfoy but Harry and Hermione grabbed the back of his jacket .Ron !said Mr Weasley struggling over with Fred and George .What are you doing ?Its too crowded in here lets go outside .Well well well Arthur Weasley .It was Mr Malfoy .He stood with his hand on Dracos shoulder sneering in just the same way .Lucius said Mr Weasley nodding coldly .Busy time at the Ministry I hear said Mr Malfoy .All those raids .I hope theyre paying you overtime ?He reached into Ginnys cauldron and extracted from amid the glossy Lockhart books a very old very battered copy of A Beginners Guide to Transfiguration .Obviously not Mr Malfoy said .Dear me whats the use of being a disgrace to the name of wizard if they dont even pay you well for it ?Mr Weasley flushed darker than either Ron or Ginny .We have a very different idea of what disgraces the name of wizard Malfoy he said .Clearly said Mr Malfoy his pale eyes straying to Mr and Mrs Granger who were watching apprehensively .The company you keep Weasley .and I thought your family could sink no lower There was a thud of metal as Ginnys cauldron went flying Mr Weasley had thrown himself at Mr Malfoy knocking him backward into a bookshelf .Dozens of heavy spellbooks came thundering down on all their heads there was a yell of Get him Dad !from Fred or George Mrs Weasley was shrieking No Arthur no !the crowd stampeded backward knocking more shelves over Gentlemen please please !cried the assistant and then louder than all Break it up there gents break it up Hagrid was wading toward them through the sea of books .In an instant he had pulled Mr Weasley and Mr Malfoy apart .Mr Weasley had a cut lip and Mr Malfoy had been hit in the eye by an Encyclopedia of Toadstools .He was still holding Ginnys old Transfiguration book .He thrust it at her his eyes glittering with malice .Here girl take your book its the best your father can give you Pulling himself out of Hagrids grip he beckoned to Draco and swept from the shop .Yeh shouldve ignored him Arthur said Hagrid almost lifting Mr Weasley off his feet as he straightened his robes .Rotten ter the core the whole family everyone knows that no Malfoys worth listenin ter bad blood thats what it is come on now lets get outta here .The assistant looked as though he wanted to stop them from leaving but he barely came up to Hagrids waist and seemed to think better of it .They hurried up the street the Grangers shaking with fright and Mrs Weasley beside herself with fury .A fine example to set for your children .brawling in public .what Gilderoy Lockhart mustve thought He was pleased said Fred .Didnt you hear him as we were leaving ?He was asking that bloke from the Daily Prophet if hed be able to work the fight into his report said it was all publicity But it was a subdued group that headed back to the fireside in the Leaky Cauldron where Harry the Weasleys and all their shopping would be traveling back to the Burrow using Floo powder .They said goodbye to the Grangers who were leaving the pub for the Muggle street on the other side Mr Weasley started to ask them how bus stops worked but stopped quickly at the look on Mrs Weasleys face .Harry took off his glasses and put them safely in his pocket before helping himself to Floo powder .It definitely wasnt his favorite way to travel .5 THE WHOMPING WILLOW The end of the summer vacation came too quickly for Harrys liking .He was looking forward to getting back to Hogwarts but his month at the Burrow had been the happiest of his life .It was difficult not to feel jealous of Ron when he thought of the Dursleys and the sort of welcome he could expect next time he turned up on Privet Drive .On their last evening Mrs Weasley conjured up a sumptuous dinner that included all of Harrys favorite things ending with a mouthwatering treacle pudding .Fred and George rounded off the evening with a display of Filibuster fireworks they filled the kitchen with red and blue stars that bounced from ceiling to wall for at least half an hour .Then it was time for a last mug of hot chocolate and bed .It took a long while to get started next morning .They were up at dawn but somehow they still seemed to have a great deal to do .Mrs Weasley dashed about in a bad mood looking for spare socks and quills people kept colliding on the stairs halfdressed with bits of toast in their hands and Mr Weasley nearly broke his neck tripping over a stray chicken as he crossed the yard carrying Ginnys trunk to the car .Harry couldnt see how eight people six large trunks two owls and a rat were going to fit into one small Ford Anglia .He had reckoned of course without the special features that Mr Weasley had added .Not a word to Molly he whispered to Harry as he opened the trunk and showed him how it had been magically expanded so that the luggage fitted easily .When at last they were all in the car Mrs Weasley glanced into the back seat where Harry Ron Fred George and Percy were all sitting comfortably side by side and said Muggles do know more than we give them credit for dont they ?She and Ginny got into the front seat which had been stretched so that it resembled a park bench .I mean youd never know it was this roomy from the outside would you ?Mr Weasley started up the engine and they trundled out of the yard Harry turning back for a last look at the house .He barely had time to wonder when hed see it again when they were back George had forgotten his box of Filibuster fireworks .Five minutes after that they skidded to a halt in the yard so that Fred could run in for his broomstick .They had almost reached the highway when Ginny shrieked that shed left her diary .By the time she had clambered back into the car they were running very late and tempers were running high .Mr Weasley glanced at his watch and then at his wife .Molly dear No Arthur No one would see this little button here is an Invisibility Booster I installed thatd get us up in the air then we fly above the clouds .Wed be there in ten minutes and no one would be any the wiser I said no Arthur not in broad daylight They reached Kings Cross at a quarter to eleven .Mr Weasley dashed across the road to get trolleys for their trunks and they all hurried into the station .Harry had caught the Hogwarts Express the previous year .The tricky part was getting onto platform nine and threequarters which wasnt visible to the Muggle eye .What you had to do was walk through the solid barrier dividing platforms nine and ten .It didnt hurt but it had to be done carefully so that none of the Muggles noticed you vanishing .Percy first said Mrs Weasley looking nervously at the clock overhead which showed they had only five minutes to disappear casually through the barrier .Percy strode briskly forward and vanished .Mr Weasley went next Fred and George followed .Ill take Ginny and you two come right after us Mrs Weasley told Harry and Ron grabbing Ginnys hand and setting off .In the blink of an eye they were gone .Lets go together weve only got a minute Ron said to Harry .Harry made sure that Hedwigs cage was safely wedged on top of his trunk and wheeled his trolley around to face the barrier .He felt perfectly confident this wasnt nearly as uncomfortable as using Floo powder .Both of them bent low over the handles of their trolleys and walked purposefully toward the barrier gathering speed .A few feet away from it they broke into a run and CRASH .Both trolleys hit the barrier and bounced backward Rons trunk fell off with a loud thump Harry was knocked off his feet and Hedwigs cage bounced onto the shiny floor and she rolled away shrieking indignantly people all around them stared and a guard nearby yelled What in blazes dyou think youre doing ?Lost control of the trolley Harry gasped clutching his ribs as he got up .Ron ran to pick up Hedwig who was causing such a scene that there was a lot of muttering about cruelty to animals from the surrounding crowd .Why cant we get through ?Harry hissed to Ron .I dunno Ron looked wildly around .A dozen curious people were still watching them .Were going to miss the train Ron whispered .I dont understand why the gateways sealed itself Harry looked up at the giant clock with a sickening feeling in the pit of his stomach .Ten seconds .nine seconds .He wheeled his trolley forward cautiously until it was right against the barrier and pushed with all his might .The metal remained solid .Three seconds .two seconds .one second .Its gone said Ron sounding stunned .The trains left .What if Mum and Dad cant get back through to us ?Have you got any Muggle money ?Harry gave a hollow laugh .The Dursleys havent given me pocket money for about six years .Ron pressed his ear to the cold barrier .Cant hear a thing he said tensely .Whatre we going to do ?I dont know how long itll take Mum and Dad to get back to us .They looked around .People were still watching them mainly because of Hedwigs continuing screeches .I think wed better go and wait by the car said Harry .Were attracting too much atten Harry !said Ron his eyes gleaming .The car !What about it ?We can fly the car to Hogwarts !But I thought Were stuck right ?And weve got to get to school havent we ?And even underage wizards are allowed to use magic if its a real emergency section nineteen or something of the Restriction of Thingy But your mum and dad .said Harry pushing against the barrier again in the vain hope that it would give way .How will they get home ?They dont need the car !said Ron impatiently .They know how to Apparate !You know just vanish and reappear at home !They only bother with Floo powder and the car because were all underage and were not allowed to Apparate yet .Harrys feeling of panic turned suddenly to excitement .Can you fly it ?No problem said Ron wheeling his trolley around to face the exit .Cmon lets go .If we hurry well be able to follow the Hogwarts Express And they marched off through the crowd of curious Muggles out of the station and back onto the side road where the old Ford Anglia was parked .Ron unlocked the cavernous trunk with a series of taps from his wand .They heaved their luggage back in put Hedwig on the back seat and got into the front .Check that no ones watching said Ron starting the ignition with another tap of his wand .Harry stuck his head out of the window Traffic was rumbling along the main road ahead but their street was empty .Okay he said .Ron pressed a tiny silver button on the dashboard .The car around them vanished and so did they .Harry could feel the seat vibrating beneath him hear the engine feel his hands on his knees and his glasses on his nose but for all he could see he had become a pair of eyeballs floating a few feet above the ground in a dingy street full of parked cars .Lets go said Rons voice from his right .And the ground and the dirty buildings on either side fell away dropping out of sight as the car rose in seconds the whole of London lay smoky and glittering below them .Then there was a popping noise and the car Harry and Ron reappeared .Uhoh said Ron jabbing at the Invisibility Booster .Its faulty Both of them pummeled it .The car vanished .Then it flickered back again .Hold on !Ron yelled and he slammed his foot on the accelerator they shot straight into the low woolly clouds and everything turned dull and foggy .Now what ?said Harry blinking at the solid mass of cloud pressing in on them from all sides .We need to see the train to know what direction to go in said Ron .Dip back down again quickly They dropped back beneath the clouds and twisted around in their seats squinting at the ground .I can see it !Harry yelled .Right ahead there !The Hogwarts Express was streaking along below them like a scarlet snake .Due north said Ron checking the compass on the dashboard .Okay well just have to check on it every half hour or so hold on And they shot up through the clouds .A minute later they burst out into a blaze of sunlight .It was a different world .The wheels of the car skimmed the sea of fluffy cloud the sky a bright endless blue under the blinding white sun .All weve got to worry about now are airplanes said Ron .They looked at each other and started to laugh for a long time they couldnt stop .It was as though they had been plunged into a fabulous dream .This thought Harry was surely the only way to travel past swirls and turrets of snowy cloud in a car full of hot bright sunlight with a fat pack of toffees in the glove compartment and the prospect of seeing Freds and Georges jealous faces when they landed smoothly and spectacularly on the sweeping lawn in front of Hogwarts castle .They made regular checks on the train as they flew farther and farther north each dip beneath the clouds showing them a different view .London was soon far behind them replaced by neat green fields that gave way in turn to wide purplish moors a great city alive with cars like multicolored ants villages with tiny toy churches .Several uneventful hours later however Harry had to admit that some of the fun was wearing off .The toffees had made them extremely thirsty and they had nothing to drink .He and Ron had pulled off their sweaters but Harrys Tshirt was sticking to the back of his seat and his glasses kept sliding down to the end of his sweaty nose .He had stopped noticing the fantastic cloud shapes now and was thinking longingly of the train miles below where you could buy icecold pumpkin juice from a trolley pushed by a plump witch .Why hadnt they been able to get onto platform nine and threequarters ?Cant be much further can it ?croaked Ron hours later still as the sun started to sink into their floor of cloud staining it a deep pink .Ready for another check on the train ?It was still right below them winding its way past a snowcapped mountain .It was much darker beneath the canopy of clouds .Ron put his foot on the accelerator and drove them upward again but as he did so the engine began to whine .Harry and Ron exchanged nervous glances .Its probably just tired said Ron .Its never been this far before .And they both pretended not to notice the whining growing louder and louder as the sky became steadily darker .Stars were blossoming in the blackness .Harry pulled his sweater back on trying to ignore the way the windshield wipers were now waving feebly as though in protest .Not far said Ron more to the car than to Harry not far now and he patted the dashboard nervously .When they flew back beneath the clouds a little while later they had to squint through the darkness for a landmark they knew .There !Harry shouted making Ron and Hedwig jump .Straight ahead !Silhouetted on the dark horizon high on the cliff over the lake stood the many turrets and towers of Hogwarts castle .But the car had begun to shudder and was losing speed .Come on Ron said cajolingly giving the steering wheel a little shake nearly there come on The engine groaned .Narrow jets of steam were issuing from under the hood .Harry found himself gripping the edges of his seat very hard as they flew toward the lake .The car gave a nasty wobble .Glancing out of his window Harry saw the smooth black glassy surface of the water a mile below .Rons knuckles were white on the steering wheel .The car wobbled again .Come on Ron muttered .They were over the lake the castle was right ahead Ron put his foot down .There was a loud clunk a splutter and the engine died completely .Uhoh said Ron into the silence .The nose of the car dropped .They were falling gathering speed heading straight for the solid castle wall .IVoooooo !Ron yelled swinging the steering wheel around they missed the dark stone wall by inches as the car turned in a great arc soaring over the dark greenhouses then the vegetable patch and then out over the black lawns losing altitude all the time .Ron let go of the steering wheel completely and pulled his wand out of his back pocket STOP !STOP !he yelled whacking the dashboard and the windshield but they were still plummeting the ground flying up toward them WATCH OUT FOR THAT TREE !Harry bellowed lunging for the steering wheel but too late CRUNCH .With an earsplitting bang of metal on wood they hit the thick tree trunk and dropped to the ground with a heavy jolt .Steam was billowing from under the crumpled hood Hedwig was shrieking in terror a golfballsized lump was throbbing on Harrys head where he had hit the windshield and to his right Ron let out a low despairing groan .Are you okay ?Harry said urgently .My wand said Ron in a shaky voice .Look at my wand It had snapped almost in two the tip was dangling limply held on by a few splinters .Harry opened his mouth to say he was sure theyd be able to mend it up at the school but he never even got started .At that very moment something hit his side of the car with the force of a charging bull sending him lurching sideways into Ron just as an equally heavy blow hit the roof .Whats happen ?Ron gasped staring through the windshield and Harry looked around just in time to see a branch as thick as a python smash into it .The tree they had hit was attacking them .Its trunk was bent almost double and its gnarled boughs were pummeling every inch of the car it could reach .aargh !said Ron as another twisted limb punched a large dent into his door the windshield was now trembling under a hail of blows from knucklelike twigs and a branch as thick as a battering ram was pounding furiously on the roof which seemed to be caving Run for it !Ron shouted throwing his full weight against his door but next second he had been knocked backward into Harrys lap by a vicious uppercut from another branch .Were done for !he moaned as the ceiling sagged but suddenly the floor of the car was vibrating the engine had restarted .Reverse !Harry yelled and the car shot backward the tree was still trying to hit them they could hear its roots creaking as it almost ripped itself up lashing out at them as they sped out of reach .That panted Ron was close .Well done car The car however had reached the end of its tether .With two sharp clunks the doors flew open and Harry felt his seat tip sideways Next thing he knew he was sprawled on the damp ground .Loud thuds told him that the car was ejecting their luggage from the trunk Hedwigs cage flew through the air and burst open she rose out of it with an angry screech and sped off toward the castle without a backward look .Then dented scratched and steaming the car rumbled off into the darkness its rear lights blazing angrily .Come back !Ron yelled after it brandishing his broken wand .Dadll kill me !But the car disappeared from view with one last snort from its exhaust .Can you believe our luck ?said Ron miserably bending down to pick up Scabbers .Of all the trees we couldve hit we had to get one that hits back .He glanced over his shoulder at the ancient tree which was still flailing its branches threateningly .Come on said Harry wearily wed better get up to the school .It wasnt at all the triumphant arrival they had pictured .Stiff cold and bruised they seized the ends of their trunks and began dragging them up the grassy slope toward the great oak front doors .I think the feasts already started said Ron dropping his trunk at the foot of the front steps and crossing quietly to look through a brightly lit window .Hey Harry come and look its the Sorting !Harry hurried over and together he and Ron peered in at the Great Hall .Innumerable candles were hovering in midair over four long crowded tables making the golden plates and goblets sparkle .Overhead the bewitched ceiling which always mirrored the sky outside sparkled with stars .Through the forest of pointed black Hogwarts hats Harry saw a long line of scaredlooking first years filing into the Hall .Ginny was among them easily visible because of her vivid Weasley hair .Meanwhile Professor McGonagall a bespectacled witch with her hair in a tight bun was placing the famous Hogwarts Sorting Hat on a stool before the newcomers .Every year this aged old hat patched frayed and dirty sorted new students into the four Hogwarts houses Gryffindor Hufflepuff Ravenclaw and Slytherin .Harry well remembered putting it on exactly one year ago and waiting petrified for its decision as it muttered aloud in his ear .For a few horrible seconds he had feared that the hat was going to put him in Slytherin the House that had turned out more Dark witches and wizards than any other but he had ended up in Gryffindor along with Ron Hermione and the rest of the Weasleys .Last term Harry and Ron had helped Gryffindor win the House Championship beating Slytherin for the first time in seven years .A very small mousyhaired boy had been called forward to place the hat on his head .Harrys eyes wandered past him to where Professor Dumbledore the headmaster sat watching the Sorting from the staff table his long silver beard and halfmoon glasses shining brightly in the candlelight .Several seats along Harry saw Gilderoy Lockhart dressed in robes of aquamarine .And there at the end was Hagrid huge and hairy drinking deeply from his goblet .Hang on .Harry muttered to Ron .Theres an empty chair at the staff table .Wheres Snape ?Professor Severus Snape was Harrys least favorite teacher .Harry also happened to be Snape s least favorite student .Cruel sarcastic and disliked by everybody except the students from his own House Slytherin Snape taught Potions .Maybe hes ill !said Ron hopefully .Maybe hes left said Harry because he missed out on the Defense Against the Dark Arts job again .Or he might have been sacked .said Ron enthusiastically .I mean everyone hates him Or maybe said a very cold voice right behind them hes waiting to hear why you two didnt arrive on the school train .Harry spun around .There his black robes rippling in a cold breeze stood Severus Snape .He was a thin man with sallow skin a hooked nose and greasy shoulderlength black hair and at this moment he was smiling in a way that told Harry he and Ron were in very deep trouble .Follow me said Snape .Not daring even to look at each other Harry and Ron followed Snape up the steps into the vast echoing entrance hall which was lit with flaming torches .A delicious smell of food was wafting from the Great Hall but Snape led them away from the warmth and light down a narrow stone staircase that led into the dungeons .In !he said opening a door halfway down the cold passageway and pointing .They entered Snapes office shivering .The shadowy walls were lined with shelves of large glass jars in which floated all manner of revolting things Harry didnt really want to know the name of at the moment .The fireplace was dark and empty .Snape closed the door and turned to look at them .So he said softly the train isnt good enough for the famous Harry Potter and his faithful sidekick Weasley .Wanted to arrive with a bang did we boys ?No sir it was the barrier at Kings Cross it Silence !said Snape coldly .What have you done with the car ?Ron gulped .This wasnt the first time Snape had given Harry the impression of being able to read minds .But a moment later he understood as Snape unrolled todays issue of the Evening Prophet You were seen he hissed showing them the headline FLYING FORD ANGLIA MYSTIFIES MUGGLES .He began to read aloud Two Muggles in London convinced they saw an old car flying over the Post Office tower .at noon in Norfolk Mrs Hetty Bayliss while hanging out her washing .Mr Angus Fleet of Peebles reported to police .Six or seven Muggles in all .I believe your father works in the Misuse of Muggle Artifacts Office ?he said looking up at Ron and smiling still more nastily .Dear dear .his own son .Harry felt as though hed just been walloped in the stomach by one of the mad trees larger branches .If anyone found out Mr Weasley had bewitched the car .he hadnt thought of that .I noticed in my search of the park that considerable damage seems to have been done to a very valuable Whomping Willow Snape went on .That tree did more damage to us than we Ron blurted out .Silence !snapped Snape again .Most unfortunately you are not in my House and the decision to expel you does not rest with me .I shall go and fetch the people who do have that happy power .You will wait here .Harry and Ron stared at each other whitefaced .Harry didnt feel hungry anymore .He now felt extremely sick .He tried not to look at a large slimy something suspended in green liquid on a shelf behind Snape s desk .If Snape had gone to fetch Professor McGonagall head of Gryffindor House they were hardly any better off .She might be fairer than Snape but she was still extremely strict .Ten minutes later Snape returned and sure enough it was Professor McGonagall who accompanied him .Harry had seen Professor McGonagall angry on several occasions but either he had forgotten just how thin her mouth could go or he had never seen her this angry before .She raised her wand the moment she entered Harry and Ron both flinched but she merely pointed it at the empty fireplace where flames suddenly erupted .Sit she said and they both backed into chairs by the fire .Explain she said her glasses glinting ominously .Ron launched into the story starting with the barrier at the station refusing to let them through .so we had no choice Professor we couldnt get on the train .Why didnt you send us a letter by owl ?I believe you have an owl ?Professor McGonagall said coldly to Harry .Harry gaped at her .Now shed said it that seemed the obvious thing to have done .I I didnt think That said Professor McGonagall is obvious .There was a knock on the office door and Snape now looking happier than ever opened it .There stood the headmaster Professor Dumbledore .Harrys whole body went numb .Dumbledore was looking unusually grave .He stared down his very crooked nose at them and Harry suddenly found himself wishing he and Ron were still being beaten up by the Whomping Willow .There was a long silence .Then Dumbledore said Please explain why you did this .It would have been better if he had shouted .Harry hated the disappointment in his voice .For some reason he was unable to look Dumbledore in the eyes and spoke instead to his knees .He told Dumbledore everything except that Mr Weasley owned the bewitched car making it sound as though he and Ron had happened to find a flying car parked outside the station .He knew Dumbledore would see through this at once but Dumbledore asked no questions about the car .When Harry had finished he merely continued to peer at them through his spectacles .Well go and get our stuff said Ron in a hopeless sort of voice .What are you talking about Weasley ?barked Professor McGonagall .Well youre expelling us arent you ?said Ron .Harry looked quickly at Dumbledore .Not today Mr Weasley said Dumbledore .But I must impress upon both of you the seriousness of what you have done .I will be writing to both your families tonight .I must also warn you that if you do anything like this again I will have no choice but to expel you .Snape looked as though Christmas had been canceled .He cleared his throat and said Professor Dumbledore these boys have flouted the Decree for the Restriction of Underage Wizardry caused serious damage to an old and valuable tree surely acts of this nature It will be for Professor McGonagall to decide on these boys punishments Severus said Dumbledore calmly .They are in her House and are therefore her responsibility .He turned to Professor McGonagall .I must go back to the feast Minerva Ive got to give out a few notices .Come Severus theres a delicious looking custard tart I want to sample Snape shot a look of pure venom at Harry and Ron as he allowed himself to be swept out of his office leaving them alone with Professor McGonagall who was still eyeing them like a wrathful eagle .Youd better get along to the hospital wing Weasley youre bleeding .Not much said Ron hastily wiping the cut over his eye with his sleeve .Professor I wanted to watch my sister being Sorted The Sorting Ceremony is over said Professor McGonagall .Your sister is also in Gryffindor .Oh good said Ron .And speaking of Gryffindor Professor McGonagall said sharply but Harry cut in Professor when we took the car term hadnt started so so Gryffindor shouldnt really have points taken from it should it ?he finished watching her anxiously .Professor McGonagall gave him a piercing look but he was sure she had almost smiled .Her mouth looked less thin anyway .I will not take any points from Gryffindor she said and Harrys heart lightened considerably .But you will both get a detention .It was better than Harry had expected .As for Dumbledores writing to the Dursleys that was nothing .Harry knew perfectly well theyd just be disappointed that the Whomping Willow hadnt squashed him flat .Professor McGonagall raised her wand again and pointed it at Snapes desk .A large plate of sandwiches two silver goblets and a jug of iced pumpkin juice appeared with a pop .You will eat in here and then go straight up to your dormitory she said .I must also return to the feast .When the door had closed behind her Ron let out a long low whistle .I thought wed had it he said grabbing a sandwich .So did I said Harry taking one too .Can you believe our luck though ?said Ron thickly through a mouthful of chicken and ham .Fred and George mustve flown that car five or six times and no Muggle ever saw them .He swallowed and took another huge bite .Why couldnt we get through the barrier ?Harry shrugged .Well have to watch our step from now on though he said taking a grateful swig of pumpkin juice .Wish we couldve gone up to the feast .She didnt want us showing off said Ron sagely .Doesnt want people to think its clever arriving by flying car .When they had eaten as many sandwiches as they could the plate kept refilling itself they rose and left the office treading the familiar path to Gryffindor Tower .The castle was quiet it seemed that the feast was over .They walked past muttering portraits and creaking suits of armor and climbed narrow flights of stone stairs until at last they reached the passage where the secret entrance to Gryffindor Tower was hidden behind an oil painting of a very fat woman in a pink silk dress .Password ?she said as they approached .Er said Harry .They didnt know the new years password not having met a Gryffindor prefect yet but help came almost immediately they heard hurrying feet behind them and turned to see Hermione dashing toward them .There you are !Where have you been ?The most ridiculous rumors someone said youd been expelled for crashing a flying car Well we havent been expelled Harry assured her .Youre not telling me you did fly here ?said Hermione sounding almost as severe as Professor McGonagall .Skip the lecture said Ron impatiently and tell us the new password .Its ‘wattlebird said Hermione impatiently but thats not the point Her words were cut short however as the portrait of the fat lady swung open and there was a sudden storm of clapping .It looked as though the whole of Gryffindor House was still awake packed into the circular common room standing on the lopsided tables and squashy armchairs waiting for them to arrive .Arms reached through the portrait hole to pull Harry and Ron inside leaving Hermione to scramble in after them .Brilliant !yelled Lee Jordan .Inspired !What an entrance !Flying a car right into the Whomping Willow peoplell be talking about that one for years Good for you said a fifth year Harry had never spoken to someone was patting him on the back as though hed just won a marathon Fred and George pushed their way to the front of the crowd and said together Why couldnt weve come in the car eh ?Ron was scarlet in the face grinning embarrassedly but Harry could see one person who didnt look happy at all .Percy was visible over the heads of some excited first years and he seemed to be trying to get near enough to start telling them off .Harry nudged Ron in the ribs and nodded in Percys direction .Ron got the point at once .Got to get upstairs bit tired he said and the two of them started pushing their way toward the door on the other side of the room which led to a spiral staircase and the dormitories .Night Harry called back to Hermione who was wearing a scowl just like Percys .They managed to get to the other side of the common room still having their backs slapped and gained the peace of the staircase .They hurried up it right to the top and at last reached the door of their old dormitory which now had a sign on it saying SECOND YEARS .They entered the familiar circular room with its five fourposters hung with red velvet and its high narrow windows .Their trunks had been brought up for them and stood at the ends of their beds .Ron grinned guiltily at Harry .I know I shouldnt ve enjoyed that or anything but The dormitory door flew open and in came the other second year Gryffindor boys Seamus Finnigan Dean Thomas and Neville Longbottom .Unbelievablel beamed Seamus .Cool said Dean .Amazing said Neville awestruck .Harry couldnt help it .He grinned too .6 GILDEROY LOCKHART The next day however Harry barely grinned once .Things started to go downhill from breakfast in the Great Hall .The four long House tables were laden with tureens of porridge plates of kippers mountains of toast and dishes of eggs and bacon beneath the enchanted ceiling today a dull cloudy gray .Harry and Ron sat down at the Gryffindor table next to Hermione who had her copy of Voyages with Vampires propped open against a milk jug .There was a slight stiffness in the way she said Morning which told Harry that she was still disapproving of the way they had arrived .Neville Longbottom on the other hand greeted them cheerfully .Neville was a roundfaced and accidentprone boy with the worst memory of anyone Harry had ever met .Mails due any minute I think Grans sending a few things I forgot .Harry had only just started his porridge when sure enough there was a rushing sound overhead and a hundred or so owls streamed in circling the hall and dropping letters and packages into the chattering crowd .A big lumpy package bounced off Nevilles head and a second later something large and gray fell into Hermiones jug spraying them all with milk and feathers .Errol said Ron pulling the bedraggled owl out by the feet .Errol slumped unconscious onto the table his legs in the air and a damp red envelope in his beak .Oh no Ron gasped .Its all right hes still alive said Hermione prodding Errol gently with the tip of her finger .Its not that its that .Ron was pointing at the red envelope .It looked quite ordinary to Harry but Ron and Neville were both looking at it as though they expected it to explode .Whats the matter ?said Harry .Shes shes sent me a Howler said Ron faintly .Youd better open it Ron said Neville in a timid whisper .Itll be worse if you dont .My gran sent me one once and I ignored it and he gulped it was horrible .Harry looked from their petrified faces to the red envelope .Whats a Howler ?he said .But Rons whole attention was fixed on the letter which had begun to smoke at the corners .Open it Neville urged .Itll all be over in a few minutes Ron stretched out a shaking hand eased the envelope from Errols beak and slit it open .Neville stuffed his fingers in his ears .A split second later Harry knew why .He thought for a moment it had exploded a roar of sound filled the huge hall shaking dust from the ceiling .STEALING THE CAR I WOULDNT HAVE BEEN SURPRISED IF THEYD EXPELLED YOU YOU WAIT TILL I GET HOLD OF YOU I DONT SUPPOSE YOU STOPPED TO THINK WHAT YOUR FATHER AND I WENT THROUGH WHEN WE SAW IT WAS GONE Mrs Weasleys yells a hundred times louder than usual made the plates and spoons rattle on the table and echoed deafeningly off the stone walls .People throughout the hall were swiveling around to see who had received the Howler and Ron sank so low in his chair that only his crimson forehead could be seen .LETTER FROM DUMBLEDORE LAST NIGHT I THOUGHT YOUR FATHER WOULD DIE OF SHAME WE DIDNT BRING YOU UP TO BEHAVE LIKE THIS YOU AND HARRY COULD BOTH HAVE DIED Harry had been wondering when his name was going to crop up .He tried very hard to look as though he couldnt hear the voice that was making his eardrums throb .ABSOLUTELY DISGUSTED YOUR FATHERS FACING AN INQUIRY AT WORK ITS ENTIRELY YOUR FAULT AND IF YOU PUT ANOTHER TOE OUT OF LINE WELL BRING YOU STRAIGHT BACK HOME .A ringing silence fell .The red envelope which had dropped from Rons hand burst into flames and curled into ashes .Harry and Ron sat stunned as though a tidal wave had just passed over them .A few people laughed and gradually a babble of talk broke out again .Hermione closed Voyages with Vampires and looked down at the top of Rons head .Well I dont know what you expected Ron but you Dont tell me I deserved it snapped Ron .Harry pushed his porridge away .His insides were burning with guilt .Mr Weasley was facing an inquiry at work .After all Mr and Mrs Weasley had done for him over the summer .But he had no time to dwell on this Professor McGonagall was moving along the Gryffindor table handing out course schedules .Harry took his and saw that they had double Herbology with the Hufflepuffs first .Harry Ron and Hermione left the castle together crossed the vegetable patch and made for the greenhouses where the magical plants were kept .At least the Howler had done one good thing Hermione seemed to think they had now been punished enough and was being perfectly friendly again .As they neared the greenhouses they saw the rest of the class standing outside waiting for Professor Sprout .Harry Ron and Hermione had only just joined them when she came striding into view across the lawn accompanied by Gilderoy Lockhart .Professor Sprouts arms were full of bandages and with another twinge of guilt Harry spotted the Whomping Willow in the distance several of its branches now in slings .Professor Sprout was a squat little witch who wore a patched hat over her flyaway hair there was usually a large amount of earth on her clothes and her fingernails would have made Aunt Petunia faint .Gilderoy Lockhart however was immaculate in sweeping robes of turquoise his golden hair shining under a perfectly positioned turquoise hat with gold trimming .Oh hello there !he called beaming around at the assembled students .Just been showing Professor Sprout the right way to doctor a Whomping Willow !But I dont want you running away with the idea that Im better at Herbology than she is !I just happen to have met several of these exotic plants on my travels ?Greenhouse three today chaps !said Professor Sprout who was looking distinctly disgruntled not at all her usual cheerful self .There was a murmur of interest .They had only ever worked in greenhouse one before greenhouse three housed far more interesting and dangerous plants .Professor Sprout took a large key from her belt and unlocked the door .Harry caught a whiff of damp earth and fertilizer mingling with the heavy perfume of some giant umbrellasized flowers dangling from the ceiling .He was about to follow Ron and Hermione inside when Lockharts hand shot out .Harry !Ive been wanting a word you dont mind if hes a couple of minutes late do you Professor Sprout ?Judging by Professor Sprouts scowl she did mind but Lockhart said Thats the ticket and closed the greenhouse door in her face .Harry said Lockhart his large white teeth gleaming in the sunlight as he shook his head .Harry Harry Harry .Completely nonplussed Harry said nothing .When I heard well of course it was all my fault .Could have kicked myself .Harry had no idea what he was talking about .He was about to say so when Lockhart went on Dont know when Ive been more shocked .Flying a car to Hogwarts !Well of course I knew at once why youd done it .Stood out a mile .Harry Harry Harry .It was remarkable how he could show every one of those brilliant teeth even when he wasnt talking .Gave you a taste for publicity didnt I ?said Lockhart .Gave you the bug .You got onto the front page of the paper with me and you couldnt wait to do it again .Oh no Professor see Harry Harry Harry said Lockhart reaching out and grasping his shoulder .I understand .Natural to want a bit more once youve had that first taste and I blame myself for giving you that because it was bound to go to your head but see here young man you cant start flying cars to try and get yourself noticed .Just calm down all right ?Plenty of time for all that when youre older .Yes yes I know what youre thinking ! ‘Its all right for him hes an internationally famous wizard already !But when I was twelve I was just as much of a nobody as you are now .In fact Id say I was even more of a nobody !I mean a few people have heard of you havent they ?All that business with HeWhoMustNotBeNamed !He glanced at the lightning scar on Harrys forehead .I know I know its not quite as good as winning Witch Weeklys MostCharmingSmile Award five times in a row as I have but its a start Harry its a start He gave Harry a hearty wink and strode off .Harry stood stunned for a few seconds then remembering he was supposed to be in the greenhouse he opened the door and slid inside .Professor Sprout was standing behind a trestle bench in the center of the greenhouse .About twenty pairs of differentcolored earmuffs were lying on the bench .When Harry had taken his place between Ron and Hermione she said Well be repotting Mandrakes today .Now who can tell me the properties of the Mandrake ?To nobodys surprise Hermiones hand was first into the air .Mandrake or Mandragora is a powerful restorative said Hermione sounding as usual as though she had swallowed the textbook .It is used to return people who have been transfigured or cursed to their original state .Excellent .Ten points to Gryffindor said Professor Sprout .The Mandrake forms an essential part of most antidotes .It is also however dangerous .Who can tell me why ?Hermiones hand narrowly missed Harrys glasses as it shot up again .The cry of the Mandrake is fatal to anyone who hears it she said promptly .Precisely .Take another ten points said Professor Sprout .Now the Mandrakes we have here are still very young .She pointed to a row of deep trays as she spoke and everyone shuffled forward for a better look .A hundred or so tufty little plants purplish green in color were growing there in rows .They looked quite unremarkable to Harry who didnt have the slightest idea what Hermione meant by the cry of the Mandrake .Everyone take a pair of earmuffs said Professor Sprout .There was a scramble as everyone tried to seize a pair that wasnt pink and fluffy .When I tell you to put them on make sure your ears are completely covered said Professor Sprout .When it is safe to remove them I will give you the thumbs up .Right earmuffs on .Harry snapped the earmuffs over his ears .They shut out sound completely .Professor Sprout put the pink fluffy pair over her own ears rolled up the sleeves of her robes grasped one of the tufty plants firmly and pulled hard .Harry let out a gasp of surprise that no one could hear .Instead of roots a small muddy and extremely ugly baby popped out of the earth .The leaves were growing right out of his head .He had pale green mottled skin and was clearly bawling at the top of his lungs .Professor Sprout took a large plant pot from under the table and plunged the Mandrake into it burying him in dark damp compost until only the tufted leaves were visible .Professor Sprout dusted off her hands gave them all the thumbsup and removed her own earmuffs .As our Mandrakes are only seedlings their cries wont kill yet she said calmly as though shed just done nothing more exciting than water a begonia .However they will knock you out for several hours and as Im sure none of you want to miss your first day back make sure your earmuffs are securely in place while you work .I will attract your attention when it is time to pack up .Four to a tray there is a large supply of pots here compost in the sacks over there and be careful of the Venomous Tentacula its teething .She gave a sharp slap to a spiky dark red plant as she spoke making it draw in the long feelers that had been inching sneakily over her shoulder .Harry Ron and Hermione were joined at their tray by a curlyhaired Hufflepuff boy Harry knew by sight but had never spoken to .Justin FinchFletchley he said brightly shaking Harry by the hand .Know who you are of course the famous Harry Potter .And youre Hermione Granger always top in everything Hermione beamed as she had her hand shaken too and Ron Weasley .Wasnt that your flying car ?Ron didnt smile .The Howler was obviously still on his mind .That Lockharts something isnt he ?said Justin happily as they began filling their plant pots with dragon dung compost .Awfully brave chap .Have you read his books ?Id have died of fear if Id been cornered in a telephone booth by a werewolf but he stayed cool and zap just fantastic .My name was down for Eton you know .I cant tell you how glad I am I came here instead .Of course Mother was slightly disappointed but since I made her read Lockharts books I think shes begun to see how useful itll be to have a fully trained wizard in the family .After that they didnt have much chance to talk .Their earmuffs were back on and they needed to concentrate on the Mandrakes .Professor Sprout had made it look extremely easy but it wasnt .The Mandrakes didnt like coming out of the earth but didnt seem to want to go back into it either .They squirmed kicked flailed their sharp little fists and gnashed their teeth Harry spent ten whole minutes trying to squash a particularly fat one into a pot .By the end of the class Harry like everyone else was sweaty aching and covered in earth .Everyone traipsed back to the castle for a quick wash and then the Gryffindors hurried off to Transfiguration .Professor McGonagalls classes were always hard work but today was especially difficult .Everything Harry had learned last year seemed to have leaked out of his head during the summer .He was supposed to be turning a beetle into a button but all he managed to do was give his beetle a lot of exercise as it scuttled over the desktop avoiding his wand .Ron was having far worse problems .He had patched up his wand with some borrowed Spellotape but it seemed to be damaged beyond repair .It kept crackling and sparking at odd moments and every time Ron tried to transfigure his beetle it engulfed him in thick gray smoke that smelled of rotten eggs .Unable to see what he was doing Ron accidentally squashed his beetle with his elbow and had to ask for a new one .Professor McGonagall wasnt pleased .Harry was relieved to hear the lunch bell .His brain felt like a wrung sponge .Everyone filed out of the classroom except him and Ron who was whacking his wand furiously on the desk .Stupid useless thing Write home for another one Harry suggested as the wand let off a volley of bangs like a firecracker .Oh yeah and get another Howler back said Ron stuffing the now hissing wand into his bag . ‘Its your own fault your wand got snapped They went down to lunch where Rons mood was not improved by Hermiones showing them the handful of perfect coat buttons she had produced in T ransfiguration .Whatve we got this afternoon ?said Harry hastily changing the subject .Defense Against the Dark Arts said Hermione at once .Why demanded Ron seizing her schedule have you outlined all Lockharts lessons in little hearts ?Hermione snatched the schedule back blushing furiously .They finished lunch and went outside into the overcast courtyard .Hermione sat down on a stone step and buried her nose in Voyages with Vampires again .Harry and Ron stood talking about Quidditch for several minutes before Harry became aware that he was being closely watched .Looking up he saw the very small mousyhaired boy hed seen trying on the Sorting Hat last night staring at Harry as though transfixed .He was clutching what looked like an ordinary Muggle camera and the moment Harry looked at him he went bright red .All right Harry ?Im Im Colin Creevey he said breathlessly taking a tentative step forward .Im in Gryffindor too .Dyou think would it be all right if can I have a picture ?he said raising the camera hopefully .A picture ?Harry repeated blankly .So I can prove Ive met you said Colin Creevey eagerly edging further forward .I know all about you .Everyones told me .About how you survived when YouKnowWho tried to kill you and how he disappeared and everything and how youve still got a lightning scar on your forehead his eyes raked Harrys hairline and a boy in my dormitory said if I develop the film in the right potion the picturesll move .Colin drew a great shuddering breath of excitement and said Its amazing here isnt it ?I never knew all the odd stuff I could do was magic till I got the letter from Hogwarts .My dads a milkman he couldnt believe it either .So Im taking loads of pictures to send home to him .And itd be really good if I had one of you he looked imploringly at Harry maybe your friend could take it and I could stand next to you ?And then could you sign it ?Signed photos ?Youre giving out signed photos Potter ?Loud and scathing Draco Malfoys voice echoed around the courtyard .He had stopped right behind Colin flanked as he always was at Hogwarts by his large and thuggish cronies Crabbe and Goyle .Everyone line up !Malfoy roared to the crowd .Harry Potters giving out signed photos !No Im not said Harry angrily his fists clenching .Shut up Malfoy .Youre just jealous piped up Colin whose entire body was about as thick as Crabbe s neck .Jealous ?said Malfoy who didnt need to shout anymore Half the courtyard was listening in .Of what ?I dont want a foul scar right across my head thanks .I dont think getting your head cut open makes you that special myself .Crabbe and Goyle were sniggering stupidly .Eat slugs Malfoy said Ron angrily .Crabbe stopped laughing and started rubbing his knuckles in a menacing way .Be careful Weasley sneered Malfoy .You dont want to start any trouble or your mommyll have to come and take you away from school .He put on a shrill piercing voice .If you put another toe out of line A knot of Slytherin fifth years nearby laughed loudly at this .Weasley would like a signed photo Potter smirked Malfoy .Itd be worth more than his familys whole house Ron whipped out his Spellotaped wand but Hermione shut Voyages with Vampires with a snap and whispered Look out !Whats all this whats all this ?Gilderoy Lockhart was striding toward them his turquoise robes swirling behind him .Whos giving out signed photos ?Harry started to speak but he was cut short as Lockhart flung an arm around his shoulders and thundered jovially Shouldnt have asked !We meet again Harry !Pinned to Lockharts side and burning with humiliation Harry saw Malfoy slide smirking back into the crowd .Come on then Mr Creevey said Lockhart beaming at Colin .A double portrait cant do better than that and well both sign it for you .Colin fumbled for his camera and took the picture as the bell rang behind them signaling the start of afternoon classes .Off you go move along there Lockhart called to the crowd and he set off back to the castle with Harry who was wishing he knew a good Vanishing Spell still clasped to his side .A word to the wise Harry said Lockhart paternally as they entered the building through a side door .I covered up for you back there with young Creevey if he was photographing me too your schoolmates wont think youre setting yourself up so much .Deaf to Harrys stammers Lockhart swept him down a corridor lined with staring students and up a staircase .Let me just say that handing out signed pictures at this stage of your career isnt sensible looks a tad bigheaded Harry to be frank .There may well come a time when like me youll need to keep a stack handy wherever you go but he gave a little chortle I dont think youre quite there yet .They had reached Lockharts classroom and he let Harry go at last .Harry yanked his robes straight and headed for a seat at the very back of the class where he busied himself with piling all seven of Lockharts books in front of him so that he could avoid looking at the real thing .The rest of the class came clattering in and Ron and Hermione sat down on either side of Harry .You couldve fried an egg on your face said Ron .Youd better hope Creevey doesnt meet Ginny or theyll be starting a Harry Potter fan club .Shut up snapped Harry .The last thing he needed was for Lockhart to hear the phrase Harry Potter fan club .When the whole class was seated Lockhart cleared his throat loudly and silence fell .He reached forward picked up Neville Longbottoms copy of Travels with Trolls and held it up to show his own winking portrait on the front .Me he said pointing at it and winking as well .Gilderoy Lockhart Order of Merlin Third Class Honorary Member of the Dark Force Defense League and fivetime winner of Witch Weeklys Most Charming Smile Award but I dont talk about that .I didnt get rid of the Bandon Banshee by smiling at her !He waited for them to laugh a few people smiled weakly .I see youve all bought a complete set of my books well done .I thought wed start today with a little quiz .Nothing to worry about just to check how well youve read them how much youve taken in When he had handed out the test papers he returned to the front of the class and said You have thirty minutes start now Harry looked down at his paper and read 1 .What is Gilderoy Lockharts favorite color ?2 .What is Gilderoy Lockharts secret ambition ?3 .What in your opinion is Gilderoy Lockharts greatest achievement to date ?On and on it went over three sides of paper right down to 54 .When is Gilderoy Lockharts birthday and what would his ideal gift be ?Half an hour later Lockhart collected the papers and rifled through them in front of the class .Tut tut hardly any of you remembered that my favorite color is lilac .I say so in Year with the Yeti .And a few of you need to read Wanderings with Werewolves more carefully I clearly state in chapter twelve that my ideal birthday gift would be harmony between all magic and nonmagic peoples though I wouldnt say no to a large bottle of Ogdens Old Firewhisky !He gave them another roguish wink .Ron was now staring at Lockhart with an expression of disbelief on his face Seamus Finnigan and Dean Thomas who were sitting in front were shaking with silent laughter .Hermione on the other hand was listening to Lockhart with rapt attention and gave a start when he mentioned her name . .but Miss Hermione Granger knew my secret ambition is to rid the world of evil and market my own range of haircare potions good girl !In fact he flipped her paper over full marks !Where is Miss Hermione Granger ?Hermione raised a trembling hand .Excellent !beamed Lockhart .Quite excellent !Take ten points for Gryffindor !And so to business He bent down behind his desk and lifted a large covered cage onto it .Now be warned !It is my job to arm you against the foulest creatures known to wizardkind !You may find yourselves facing your worst fears in this room .Know only that no harm can befall you whilst I am here .All I ask is that you remain calm .In spite of himself Harry leaned around his pile of books for a better look at the cage .Lockhart placed a hand on the cover .Dean and Seamus had stopped laughing now .Neville was cowering in his front row seat .I must ask you not to scream said Lockhart in a low voice .It might provoke them .As the whole class held its breath Lockhart whipped off the cover .Yes he said dramatically .Freshly caught Cornish pixies .Seamus Finnigan couldnt control himself .He let out a snort of laughter that even Lockhart couldnt mistake for a scream of terror .Yes ?He smiled at Seamus .Well theyre not theyre not very dangerous are they ?Seamus choked .Dont be so sure !said Lockhart waggling a finger annoyingly at Seamus .Devilish tricky little blighters they can be !The pixies were electric blue and about eight inches high with pointed faces and voices so shrill it was like listening to a lot of budgies arguing .The moment the cover had been removed they had started jabbering and rocketing around rattling the bars and making bizarre faces at the people nearest them .Right then Lockhart said loudly .Lets see what you make of them !And he opened the cage .It was pandemonium .The pixies shot in every direction like rockets .Two of them seized Neville by the ears and lifted him into the air .Several shot straight through the window showering the back row with broken glass .The rest proceeded to wreck the classroom more effectively than a rampaging rhino .They grabbed ink bottles and sprayed the class with them shredded books and papers tore pictures from the walls upended the waste basket grabbed bags and books and threw them out of the smashed window within minutes half the class was sheltering under desks and Neville was swinging from the iron chandelier in the ceiling .Come on now round them up round them up theyre only pixies Lockhart shouted .He rolled up his sleeves brandished his wand and bellowed Peskipiksi Pesternomti It had absolutely no effect one of the pixies seized his wand and threw it out of the window too .Lockhart gulped and dived under his own desk narrowly avoiding being squashed by Neville who fell a second later as the chandelier gave way .The bell rang and there was a mad rush toward the exit .In the relative calm that followed Lockhart straightened up caught sight of Harry Ron and Hermione who were almost at the door and said Well Ill ask you three to just nip the rest of them back into their cage .He swept past them and shut the door quickly behind him .Can you believe him ?roared Ron as one of the remaining pixies bit him painfully on the ear .He just wants to give us some handson experience said Hermione immobilizing two pixies at once with a clever Freezing Charm and stuffing them back into their cage .Hands on ?said Harry who was trying to grab a pixie dancing out of reach with its tongue out .Hermione he didnt have a clue what he was doing Rubbish said Hermione .Youve read his books look at all those amazing things hes done He says hes done Ron muttered .7 MUDBLOODS AND MURMURS Harry spent a lot of time over the next few days dodging out of sight whenever he saw Gilderoy Lockhart coming down a corridor .Harder to avoid was Colin Creevey who seemed to have memorized Harrys schedule .Nothing seemed to give Colin a bigger thrill than to say All right Harry ?six or seven times a day and hear Hello Colin back however exasperated Harry sounded when he said it .Hedwig was still angry with Harry about the disasterous car journey and Rons wand was still malfunctioning surpassing itself on Friday morning by shooting out of Rons hand in Charms and hitting tiny old Professor Flitwick squarely between the eyes creating a large throbbing green boil where it had struck .So with one thing and another Harry was quite glad to reach the weekend .He Ron and Hermione were planning to visit Hagrid on Saturday morning .Harry however was shaken awake several hours earlier than he would have liked by Oliver Wood Captain of the Gryffindor Quidditch team .Whassamatter ?said Harry groggily .Quidditch practice !said Wood .Come on !Harry squinted at the window .There was a thin mist hanging across the pinkandgold sky .Now that he was awake he couldnt understand how he could have slept through the racket the birds were making .Oliver Harry croaked .Its the crack of dawn .Exactly said Wood .He was a tall and burly sixth year and at the moment his eyes were gleaming with a crazed enthusiasm .Its part of our new training program .Come on grab your broom and lets go said Wood heartily .None of the other teams have started training yet were going to be first off the mark this year Yawning and shivering slightly Harry climbed out of bed and tried to find his Quidditch robes .Good man said Wood .Meet you on the field in fifteen minutes .When hed found his scarlet team robes and pulled on his cloak for warmth Harry scribbled a note to Ron explaining where hed gone and went down the spiral staircase to the common room his Nimbus Two Thousand on his shoulder .He had just reached the portrait hole when there was a clatter behind him and Colin Creevey came dashing down the spiral staircase his camera swinging madly around his neck and something clutched in his hand .I heard someone saying your name on the stairs Harry !Look what Ive got here !Ive had it developed I wanted to show you Harry looked bemusedly at the photograph Colin was brandishing under his nose .A moving blackandwhite Lockhart was tugging hard on an arm Harry recognized as his own .He was pleased to see that his photographic self was putting up a good fight and refusing to be dragged into view .As Harry watched Lockhart gave up and slumped panting against the white edge of the picture .Will you sign it ?said Colin eagerly .No said Harry flatly glancing around to check that the room was really deserted .Sorry Colin Im in a hurry Quidditch practice He climbed through the portrait hole .Oh wow !Wait for me !Ive never watched a Quidditch game before !Colin scrambled through the hole after him .Itll be really boring Harry said quickly but Colin ignored him his face shining with excitement .You were the youngest House player in a hundred years werent you Harry ?Werent you ?said Colin trotting alongside him .You must be brilliant .Ive never flown .Is it easy ?Is that your own broom ?Is that the best one there is ?Harry didnt know how to get rid of him .It was like having an extremely talkative shadow .I dont really understand Quidditch said Colin breathlessly .Is it true there are four balls ?And two of them fly around trying to knock people off their brooms ?Yes said Harry heavily resigned to explaining the complicated rules of Quidditch .Theyre called Bludgers .There are two Beaters on each team who carry clubs to beat the Bludgers away from their side .Fred and George Weasley are the Gryffindor Beaters .And what are the other balls for ?Colin asked tripping down a couple of steps because he was gazing openmouthed at Harry .Well the Quaffle thats the biggish red one is the one that scores goals .Three Chasers on each team throw the Quaffle to each other and try and get it through the goal posts at the end of the pitch theyre three long poles with hoops on the end .And the fourth ball is the Golden Snitch said Harry and its very small very fast and difficult to catch .But thats what the Seekers got to do because a game of Quidditch doesnt end until the Snitch has been caught .And whichever teams Seeker gets the Snitch earns his team an extra hundred and fifty points .And youre the Gryffindor Seeker arent you ?said Colin in awe .Yes said Harry as they left the castle and started across the dewdrenched grass .And theres the Keeper too .He guards the goal posts .Thats it really .But Colin didnt stop questioning Harry all the way down the sloping lawns to the Quidditch field and Harry only shook him off when he reached the changing rooms Colin called after him in a piping voice Ill go and get a good seat Harry !and hurried off to the stands .The rest of the Gryffindor team were already in the changing room .Wood was the only person who looked truly awake .Fred and George Weasley were sitting puffyeyed and touslehaired next to fourth year Alicia Spinnet who seemed to be nodding off against the wall behind her .Her fellow Chasers Katie Bell and Angelina Johnson were yawning side by side opposite them .There you are Harry what kept you ?said Wood briskly .Now I wanted a quick talk with you all before we actually get onto the field because I spent the summer devising a whole new training program which I really think will make all the difference .Wood was holding up a large diagram of a Quidditch field on which were drawn many lines arrows and crosses in differentcolored inks .He took out his wand tapped the board and the arrows began to wiggle over the diagram like caterpillars .As Wood launched into a speech about his new tactics Fred Weasleys head drooped right onto Alicia Spinnets shoulder and he began to snore .The first board took nearly twenty minutes to explain but there was another board under that and a third under that one .Harry sank into a stupor as Wood droned on and on .So said Wood at long last jerking Harry from a wistful fantasy about what he could be eating for breakfast at this very moment up at the castle .Is that clear ?Any questions ?Ive got a question Oliver said George who had woken with a start .Why couldnt you have told us all this yesterday when we were awake ?Wood wasnt pleased .Now listen here you lot he said glowering at them all .We should have won the Quidditch Cup last year .Were easily the best team .But unfortunately owing to circumstances beyond our control Harry shifted guiltily in his seat .He had been unconscious in the hospital wing for the final match of the previous year meaning that Gryffindor had been a player short and had suffered their worst defeat in three hundred years .Wood took a moment to regain control of himself .Their last defeat was clearly still torturing him .So this year we train harder than ever before .Okay lets go and put our new theories into practice !Wood shouted seizing his broomstick and leading the way out of the locker rooms .Stifflegged and still yawning his team followed .They had been in the locker room so long that the sun was up completely now although remnants of mist hung over the grass in the stadium .As Harry walked onto the field he saw Ron and Hermione sitting in the stands .Arent you finished yet ?called Ron incredulously .Havent even started said Harry looking jealously at the toast and marmalade Ron and Hermione had brought out of the Great Hall .Woods been teaching us new moves .He mounted his broomstick and kicked at the ground soaring up into the air .The cool morning air whipped his face waking him far more effectively than Woods long talk .It felt wonderful to be back on the Quidditch field .He soared right around the stadium at full speed racing Fred and George .Whats that funny clicking noise ?called Fred as they hurtled around the corner .Harry looked into the stands .Colin was sitting in one of the highest seats his camera raised taking picture after picture the sound strangely magnified in the deserted stadium .Look this way Harry !This way !he cried shrilly .Whos that ?said Fred .No idea Harry lied putting on a spurt of speed that took him as far away as possible from Colin .Whats going on ?said Wood frowning as he skimmed through the air toward them .Whys that first year taking pictures ?I dont like it .He could be a Slytherin spy trying to find out about our new training program .Hes in Gryffindor said Harry quickly .And the Slytherins dont need a spy Oliver said George .What makes you say that ?said Wood testily .Because theyre here in person said George pointing .Several people in green robes were walking onto the field broomsticks in their hands .I dont believe it !Wood hissed in outrage .I booked the field for today !Well see about this !Wood shot toward the ground landing rather harder than he meant to in his anger staggering slightly as he dismounted .Harry Fred and George followed .Flint !Wood bellowed at the Slytherin Captain .This is our practice time !We got up specially !You can clear off now !Marcus Flint was even larger than Wood .He had a look of trollish cunning on his face as he replied Plenty of room for all of us Wood .Angelina Alicia and Katie had come over too .There were no girls on the Slytherin team who stood shoulder to shoulder facing the Gryffindors leering to a man .But I booked the field !said Wood positively spitting with rage .I booked it !Ah said Flint .But Tve got a specially signed note here from Professor Snape .Professor S .Snape give the Slytherin team permission to practice today on the Quidditch field owinq to the need to train their new Seeker .Youve got a new Seeker ?said Wood distracted .Where ?And from behind the six large figures before them came a seventh smaller boy smirking all over his pale pointed face .It was Draco Malfoy .Arent you Lucius Malfoys son ?said Fred looking at Malfoy with dislike .Funny you should mention Dracos father said Flint as the whole Slytherin team smiled still more broadly .Let me show you the generous gift hes made to the Slytherin team .All seven of them held out their broomsticks .Seven highly polished brandnew handles and seven sets of fine gold lettering spelling the words Nimbus Two Thousand and One gleamed under the Gryffindors noses in the early morning sun .Very latest model .Only came out last month said Flint carelessly flicking a speck of dust from the end of his own .I believe it outstrips the old Two Thousand series by a considerable amount .As for the old Cleansweeps he smiled nastily at Fred and George who were both clutching Cleansweep Fives sweeps the board with them .None of the Gryffindor team could think of anything to say for a moment .Malfoy was smirking so broadly his cold eyes were reduced to slits .Oh look said Flint .A field invasion .Ron and Hermione were crossing the grass to see what was going on .Whats happening ?Ron asked Harry .Why arent you playing ?And whats he doing here ?He was looking at Malfoy taking in his Slytherin Quidditch robes .Im the new Slytherin Seeker Weasley said Malfoy smugly .Everyones just been admiring the brooms my fathers bought our team .Ron gaped openmouthed at the seven superb broomsticks in front of him .Good arent they ?said Malfoy smoothly .But perhaps the Gryffindor team will be able to raise some gold and get new brooms too .You could raffle off those Cleansweep Fives I expect a museum would bid for them .The Slytherin team howled with laughter .At least no one on the Gryffindor team had to buy their way in said Hermione sharply .They got in on pure talent .The smug look on Malfoys face flickered .No one asked your opinion you filthy little Mudblood he spat .Harry knew at once that Malfoy had said something really bad because there was an instant uproar at his words .Flint had to dive in front of Malfoy to stop Fred and George jumping on him Alicia shrieked How dare you and Ron plunged his hand into his robes pulled out his wand yelling Youll pay for that one Malfoy !and pointed it furiously under Flints arm at Malfoys face .A loud bang echoed around the stadium and a jet of green light shot out of the wrong end of Rons wand hitting him in the stomach and sending him reeling backward onto the grass .Ron !Ron !Are you all right ?squealed Hermione .Ron opened his mouth to speak but no words came out .Instead he gave an almighty belch and several slugs dribbled out of his mouth onto his lap .The Slytherin team were paralyzed with laughter .Flint was doubled up hanging onto his new broomstick for support .Malfoy was on all fours banging the ground with his fist .The Gryffindors were gathered around Ron who kept belching large glistening slugs .Nobody seemed to want to touch him .Wed better get him to Hagrids its nearest said Harry to Hermione who nodded bravely and the pair of them pulled Ron up by the arms .What happened Harry ?What happened ?Is he ill ?But you can cure him cant you ?Colin had run down from his seat and was now dancing alongside them as they left the field .Ron gave a huge heave and more slugs dribbled down his front .Oooh said Colin fascinated and raising his camera .Can you hold him still Harry ?Get out of the way Colin !said Harry angrily .He and Hermione supported Ron out of the stadium and across the grounds toward the edge of the forest .Nearly there Ron said Hermione as the gamekeepers cabin came into view .Youll be all right in a minute almost there They were within twenty feet of Hagrids house when the front door opened but it wasnt Hagrid who emerged .Gilderoy Lockhart wearing robes of palest mauve today came striding out .Quick behind here Harry hissed dragging Ron behind a nearby bush .Hermione followed somewhat reluctantly .Its a simple matter if you know what youre doing !Lockhart was saying loudly to Hagrid .If you need help you know where I am !Ill let you have a copy of my book .Im surprised you havent already got one Ill sign one tonight and send it over .Well goodbye !And he strode away toward the castle .Harry waited until Lockhart was out of sight then pulled Ron out of the bush and up to Hagrids front door .They knocked urgently .Hagrid appeared at once looking very grumpy but his expression brightened when he saw who it was .Bin wonderin when youd come ter see me come in come in thought you mighta bin Professor Lockhart back again Harry and Hermione supported Ron over the threshold into the oneroomed cabin which had an enormous bed in one corner a fire crackling merrily in the other .Hagrid didnt seem perturbed by Rons slug problem which Harry hastily explained as he lowered Ron into a chair .Better out than in he said cheerfully plunking a large copper basin in front of him .Get em all up Ron .I dont think theres anything to do except wait for it to stop said Hermione anxiously watching Ron bend over the basin .Thats a difficult curse to work at the best of times but with a broken wand Hagrid was bustling around making them tea .His boarhound Fang was slobbering over Harry .What did Lockhart want with you Hagrid ?Harry asked scratching Fangs ears .Givin me advice on gettin kelpies out of a well growled Hagrid moving a halfplucked rooster off his scrubbed table and setting down the teapot .Like I don know .An bangin on about some banshee he banished .If one word of it was true Ill eat my kettle .It was most unlike Hagrid to criticize a Hogwarts teacher and Harry looked at him in surprise .Hermione however said in a voice somewhat higher than usual I think youre being a bit unfair .Professor Dumbledore obviously thought he was the best man for the job He was the ony man for the job said Hagrid offering them a plate of treacle toffee while Ron coughed squelchily into his basin .An I mean the ony one .Gettin very difficult ter find anyone fer the Dark Arts job .People arent too keen ter take it on see .Theyre startin ter think its jinxed .No ones lasted long fer a while now .So tell me said Hagrid jerking his head at Ron .Who was he tryin ter curse ?Malfoy called Hermione something it mustve been really bad because everyone went wild .It was bad said Ron hoarsely emerging over the tabletop looking pale and sweaty .Malfoy called her ‘Mudblood Hagrid Ron dived out of sight again as a fresh wave of slugs made their appearance .Hagrid looked outraged .He didn !he growled at Hermione .He did she said .But I dont know what it means .I could tell it was really rude of course Its about the most insulting thing he could think of gasped Ron coming back up .Mudbloods a really foul name for someone who is Muggleborn you know nonmagic parents .There are some wizards like Malfoys family who think theyre better than everyone else because theyre what people call pure blood .He gave a small burp and a single slug fell into his outstretched hand .He threw it into the basin and continued I mean the rest of us know it doesnt make any difference at all .Look at Neville Longbottom hes pureblood and he can hardly stand a cauldron the right way up .An they havent invented a spell our Hermione can do said Hagrid proudly making Hermione go a brilliant shade of magenta .Its a disgusting thing to call someone said Ron wiping his sweaty brow with a shaking hand .Dirty blood see .Common blood .Its ridiculous .Most wizards these days are halfblood anyway .If we hadnt married Muggles wedve died out .He retched and ducked out of sight again .Well I don blame yeh fer tryin ter curse him Ron said Hagrid loudly over the thuds of more slugs hitting the basin .Bu maybe it was a good thing yer wand backfired .Spect Lucius Malfoy wouldve come marchin up ter school if yehd cursed his son .Least yer not in trouble .Harry would have pointed out that trouble didnt come much worse than having slugs pouring out of your mouth but he couldnt Hagrids treacle toffee had cemented his jaws together .Harry said Hagrid abruptly as though struck by a sudden thought .Gotta bone ter pick with yeh .Ive heard youve bin givin out signed photos .How come I havent got one ?Furious Harry wrenched his teeth apart .I have not been giving out signed photos he said hotly .If Lockharts still spreading that around But then he saw that Hagrid was laughing .Im ony jokin he said patting Harry genially on the back and sending him face first into the table .I knew yeh hadnt really .I told Lockhart yeh didn need teh .Yer more famous than him without tryin .Bet he didnt like that said Harry sitting up and rubbing his chin .Don think he did said Hagrid his eyes twinkling .An then I told him Id never read one o his books an he decided ter go .Treacle toffee Ron ?he added as Ron reappeared .No thanks said Ron weakly .Better not risk it .Come an see what Ive bin growin said Hagrid as Harry and Hermione finished the last of their tea .In the small vegetable patch behind Hagrid s house were a dozen of the largest pumpkins Harry had ever seen .Each was the size of a large boulder .Gettin on well arent they ?said Hagrid happily .Fer the Halloween feast .should be big enough by then .Whatve you been feeding them ?said Harry .Hagrid looked over his shoulder to check that they were alone .Well Ive bin givin them you know a bit o help Harry noticed Hagrids flowery pink umbrella leaning against the back wall of the cabin .Harry had had reason to believe before now that this umbrella was not all it looked in fact he had the strong impression that Hagrids old school wand was concealed inside it .Hagrid wasnt supposed to use magic .He had been expelled from Hogwarts in his third year but Harry had never found out why any mention of the matter and Hagrid would clear his throat loudly and become mysteriously deaf until the subject was changed .An Engorgement Charm I suppose ?said Hermione halfway between disapproval and amusement .Well youve done a good job on them .Thats what yer little sister said said Hagrid nodding at Ron .Met her jus yesterday .Hagrid looked sideways at Harry his beard twitching .Said she was jus lookin round the grounds but I reckon she was hopin she might run inter someone else at my house .He winked at Harry .If yeh ask me she wouldn say no ter a signed Oh shut up said Harry .Ron snorted with laughter and the ground was sprayed with slugs .Watch it !Hagrid roared pulling Ron away from his precious pumpkins .It was nearly lunchtime and as Harry had only had one bit of treacle toffee since dawn he was keen to go back to school to eat .They said goodbye to Hagrid and walked back up to the castle Ron hiccoughing occasionally but only bringing up two very small slugs .They had barely set foot in the cool entrance hall when a voice rang out There you are Potter Weasley .Professor McGonagall was walking toward them looking stern .You will both do your detentions this evening .Whatre we doing Professor ?said Ron nervously suppressing a burp .You will be polishing the silver in the trophy room with Mr Filch said Professor McGonagall .And no magic Weasley elbow grease .Ron gulped .Argus Filch the caretaker was loathed by every student in the school .And you Potter will be helping Professor Lockhart answer his fan mail said Professor McGonagall .Oh n Professor cant I go and do the trophy room too ?said Harry desperately .Certainly not said Professor McGonagall raising her eyebrows .Professor Lockhart requested you particularly .Eight oclock sharp both of you .Harry and Ron slouched into the Great Hall in states of deepest gloom Hermione behind them wearing a wellyoudidbreakschoolrules sort of expression .Harry didnt enjoy his shepherds pie as much as hed thought .Both he and Ron felt theyd got the worse deal .Filch ll have me there all night said Ron heavily .No magic !There must be about a hundred cups in that room .Im no good at Muggle cleaning .Id swap anytime said Harry hollowly .Ive had loads of practice with the Dursleys .Answering Lockharts fan mail .hell be a nightmare .Saturday afternoon seemed to melt away and in what seemed like no time it was five minutes to eight and Harry was dragging his feet along the secondfloor corridor to Lockharts office .He gritted his teeth and knocked .The door flew open at once .Lockhart beamed down at him .Ah heres the scalawag !he said .Come in Harry come in Shining brightly on the walls by the light of many candles were countless framed photographs of Lockhart .He had even signed a few of them .Another large pile lay on his desk .You can address the envelopes !Lockhart told Harry as though this was a huge treat .This first ones to Gladys Gudgeon bless her huge fan of mine The minutes snailed by .Harry let Lockharts voice wash over him occasionally saying Mmm and Right and Yeah .Now and then he caught a phrase like Fames a fickle friend Harry or Celebrity is as celebrity does remember that .The candles burned lower and lower making the light dance over the many moving faces of Lockhart watching him .Harry moved his aching hand over what felt like the thousandth envelope writing out Veronica Smethleys address .It must be nearly time to leave Harry thought miserably please let it be nearly time .And then he heard something something quite apart from the spitting of the dying candles and Lockharts prattle about his fans .It was a voice a voice to chill the bone marrow a voice of breathtaking icecold venom .Come .come to me .Let me rip you .Let me tear you .Let me kill you .Harry gave a huge jump and a large lilac blot appeared on Veronica Smethleys street .What ?he said loudly .I know !said Lockhart .Six solid months at the top of the bestseller list !Broke all records !No said Harry frantically .That voice !Sorry ?said Lockhart looking puzzled .What voice ?That that voice that said didnt you hear it ?Lockhart was looking at Harry in high astonishment .What are you talking about Harry ?Perhaps youre getting a little drowsy ?Great Scott look at the time !Weve been here nearly four hours !Id never have believed it the times flown hasnt it ?Harry didnt answer .He was straining his ears to hear the voice again but there was no sound now except for Lockhart telling him he mustnt expect a treat like this every time he got detention .Feeling dazed Harry left .It was so late that the Gryffindor common room was almost empty .Harry went straight up to the dormitory .Ron wasnt back yet .Harry pulled on his pajamas got into bed and waited .Half an hour later Ron arrived nursing his right arm and bringing a strong smell of polish into the darkened room .My muscles have all seized up he groaned sinking on his bed .Fourteen times he made me buff up that Quidditch Cup before he was satisfied .And then I had another slug attack all over a Special Award for Services to the School .Took ages to get the slime off . .How was it with Lockhart ?Keeping his voice low so as not to wake Neville Dean and Seamus Harry told Ron exactly what he had heard .And Lockhart said he couldnt hear it ?said Ron .Harry could see him frowning in the moonlight .Dyou think he was lying ?But I dont get it even someone invisible wouldve had to open the door .I know said Harry lying back in his fourposter and staring at the canopy above him .I dont get it either .d THE DEATHDAY PARTY October arrived spreading a damp chill over the grounds and into the castle .Madam Pomfrey the nurse was kept busy by a sudden spate of colds among the staff and students .Her Pepperup Potion worked instantly though it left the drinker smoking at the ears for several hours afterward .Ginny Weasley who had been looking pale was bullied into taking some by Percy .The steam pouring from under her vivid hair gave the impression that her whole head was on fire .Raindrops the size of bullets thundered on the castle windows for days on end the lake rose the flower beds turned into muddy streams and Hagrids pumpkins swelled to the size of garden sheds .Oliver Woods enthusiasm for regular training sessions however was not dampened which was why Harry was to be found late one stormy Saturday afternoon a few days before Halloween returning to Gryffindor Tower drenched to the skin and splattered with mud .Even aside from the rain and wind it hadnt been a happy practice session .Fred and George who had been spying on the Slytherin team had seen for themselves the speed of those new Nimbus Two Thousand and Ones .They reported that the Slytherin team was no more than seven greenish blurs shooting through the air like missiles .As Harry squelched along the deserted corridor he came across somebody who looked just as preoccupied as he was .Nearly Headless Nick the ghost of Gryffindor Tower was staring morosely out of a window muttering under his breath .dont fulfill their requirements .half an inch if that .Hello Nick said Harry .Hello hello said Nearly Headless Nick starting and looking round .He wore a dashing plumed hat on his long curly hair and a tunic with a ruff which concealed the fact that his neck was almost completely severed .He was pale as smoke and Harry could see right through him to the dark sky and torrential rain outside .You look troubled young Potter said Nick folding a transparent letter as he spoke and tucking it inside his doublet .So do you said Harry .Ah Nearly Headless Nick waved an elegant hand a matter of no importance .Its not as though I really wanted to join .Thought Id apply but apparently I ‘dont fulfill requirements In spite of his airy tone there was a look of great bitterness on his face .But you would think wouldnt you he erupted suddenly pulling the letter back out of his pocket that getting hit fortyfive times in the neck with a blunt axe would qualify you to join the Headless Hunt ?Oh yes said Harry who was obviously supposed to agree .I mean nobody wishes more than I do that it had all been quick and clean and my head had come off properly I mean it would have saved me a great deal of pain and ridicule .However Nearly Headless Nick shook his letter open and read furiously ‘We can only accept huntsmen whose heads have parted company with their bodies .You will appreciate that it would be impossible otherwise for members to participate in hunt activities such as Horseback Head Juggling and Head Polo .It is with the greatest regret therefore that I must inform you that you do not fulfill our requirements .With very best wishes Sir Patrick Delaney Podmore .Fuming Nearly Headless Nick stuffed the letter away .Half an inch of skin and sinew holding my neck on Harry !Most people would think thats good and beheaded but oh no its not enough for Sir Properly DecapitatedPodmore .Nearly Headless Nick took several deep breaths and then said in a far calmer tone So whats bothering you ?Anything I can do ?No said Harry .Not unless you know where we can get seven free Nimbus Two Thousand and Ones for our match against Sly The rest of Harrys sentence was drowned out by a highpitched mewling from somewhere near his ankles .He looked down and found himself gazing into a pair of lamplike yellow eyes .It was Mrs Norris the skeletal gray cat who was used by the caretaker Argus Filch as a sort of deputy in his endless battle against students .Youd better get out of here Harry said Nick quickly .Filch isnt in a good mood hes got the flu and some third years accidentally plastered frog brains all over the ceiling in dungeon five .Hes been cleaning all morning and if he sees you dripping mud all over the place Right said Harry backing away from the accusing stare of Mrs Norris but not quickly enough .Drawn to the spot by the mysterious power that seemed to connect him with his foul cat Argus Filch burst suddenly through a tapestry to Harrys right wheezing and looking wildly about for the rule breaker .There was a thick tartan scarf bound around his head and his nose was unusually purple .Filth !he shouted his jowls aquiver his eyes popping alarmingly as he pointed at the muddy puddle that had dripped from Harrys Quidditch robes .Mess and muck everywhere !Ive had enough of it I tell you !Follow me Potter !So Harry waved a gloomy goodbye to Nearly Headless Nick and followed Filch back downstairs doubling the number of muddy footprints on the floor .Harry had never been inside Filchs office before it was a place most students avoided .The room was dingy and windowless lit by a single oil lamp dangling from the low ceiling .A faint smell of fried fish lingered about the place .Wooden filing cabinets stood around the walls from their labels Harry could see that they contained details of every pupil Filch had ever punished .Fred and George Weasley had an entire drawer to themselves .A highly polished collection of chains and manacles hung on the wall behind Filchs desk .It was common knowledge that he was always begging Dumbledore to let him suspend students by their ankles from the ceiling .Filch grabbed a quill from a pot on his desk and began shuffling around looking for parchment .Dung he muttered furiously great sizzling dragon bogies .frog brains .rat intestines .Ive had enough of it .make an example .wheres the form .yes .He retrieved a large roll of parchment from his desk drawer and stretched it out in front of him dipping his long black quill into the ink pot .Name .Harry Potter .Crime .It was only a bit of mud !said Harry .Its only a bit of mud to you boy but to me its an extra hour scrubbing !shouted Filch a drip shivering unpleasantly at the end of his bulbous nose .Crime .befouling the castle .suggested sentence .Dabbing at his streaming nose Filch squinted unpleasantly at Harry who waited with bated breath for his sentence to fall .But as Filch lowered his quill there was a great BANG !on the ceiling of the office which made the oil lamp rattle .PEEVES !Filch roared flinging down his quill in a transport of rage .Ill have you this time Ill have you !And without a backward glance at Harry Filch ran flatfooted from the office Mrs Norris streaking alongside him .Peeves was the school poltergeist a grinning airborne menace who lived to cause havoc and distress .Harry didnt much like Peeves but couldnt help feeling grateful for his timing .Hopefully whatever Peeves had done and it sounded as though hed wrecked something very big this time would distract Filch from Harry .Thinking that he should probably wait for Filch to come back Harry sank into a motheaten chair next to the desk .There was only one thing on it apart from his halfcompleted form a large glossy purple envelope with silver lettering on the front .With a quick glance at the door to check that Filch wasnt on his way back Harry picked up the envelope and read KWIKSPELL A Correspondence Course in Beginners Magic Intrigued Harry flicked the envelope open and pulled out the sheaf of parchment inside .More curly silver writing on the front page said Feel out of step in the world of modern magic ?Find yourself making excuses not to perform simple spells ?Ever been taunted for your woeful wandwork ?There is an answer !Kwikspell is an allnew failsafe quickresult easy learn course .Hundreds of witches and wizards have benefited from the Kwikspell method !Madam Z .Nettles of Topsham writes I had no memory for incantations and my potions were a family joke !Now after a Kwikspell course I am the center of attention at parties and friends beg for the recipe of my Scintillation Solution !Warlock D .J .Prod of Didsbury says My wife used to sneer at my feeble charms but one month into your fabulous Kwikspell course and I succeeded in turning her into a yak !Thank you Kwikspell !Fascinated Harry thumbed through the rest of the envelopes contents .Why on earth did Filch want a Kwikspell course ?Did this mean he wasnt a proper wizard ?Harry was just reading Lesson One Holding Your Wand Some Useful Tips when shuffling footsteps outside told him Filch was coming back .Stuffing the parchment back into the envelope Harry threw it back onto the desk just as the door opened .Filch was looking triumphant .That vanishing cabinet was extremely valuable !he was saying gleefully to Mrs Norris .Well have Peeves out this time my sweet His eyes fell on Harry and then darted to the Kwikspell envelope which Harry realized too late was lying two feet away from where it had started .Filch s pasty face went brick red .Harry braced himself for a tidal wave of fury .Filch hobbled across to his desk snatched up the envelope and threw it into a drawer .Have you did you read ?he sputtered .No Harry lied quickly .Filch s knobbly hands were twisting together .If I thought youd read my private not that its mine for a friend be that as it may however Harry was staring at him alarmed Filch had never looked madder .His eyes were popping a tic was going in one of his pouchy cheeks and the tartan scarf didnt help .Very well go and dont breathe a word not that however if you didnt read go now I have to write up Peeves report go Amazed at his luck Harry sped out of the office up the corridor and back upstairs .To escape from Filch s office without punishment was probably some kind of school record .Harry !Harry !Did it work ?Nearly Headless Nick came gliding out of a classroom .Behind him Harry could see the wreckage of a large blackandgold cabinet that appeared to have been dropped from a great height .I persuaded Peeves to crash it right over Filchs office said Nick eagerly .Thought it might distract him Was that you ?said Harry gratefully .Yeah it worked I didnt even get detention .Thanks Nick !They set off up the corridor together .Nearly Headless Nick Harry noticed was still holding Sir Patricks rejection letter .I wish there was something I could do for you about the Headless Hunt Harry said .Nearly Headless Nick stopped in his tracks and Harry walked right through him .He wished he hadnt it was like stepping through an icy shower .But there is something you could do for me said Nick excitedly .Harry would I be asking too much but no you wouldnt want What is it ?said Harry .Well this Halloween will be my five hundredth deathday said Nearly Headless Nick drawing himself up and looking dignified .Oh said Harry not sure whether he should look sorry or happy about this .Right .Im holding a party down in one of the roomier dungeons .Friends will be coming from all over the country .It would be such an honor if you would attend .Mr Weasley and Miss Granger would be most welcome too of course but I daresay youd rather go to the school feast ?He watched Harry on tenterhooks .No said Harry quickly Ill come My dear boy !Harry Potter at my deathday party !And he hesitated looking excited do you think you could possibly mention to Sir Patrick how very frightening and impressive you find me ?Of of course said Harry .Nearly Headless Nick beamed at him .A deathday party ?said Hermione keenly when Harry had changed at last and joined her and Ron in the common room .I bet there arent many living people who can say theyve been to one of those itll be fascinating !Why would anyone want to celebrate the day they died ?said Ron who was halfway through his Potions homework and grumpy .Sounds dead depressing to me ..Rain was still lashing the windows which were now inky black but inside all looked bright and cheerful .The firelight glowed over the countless squashy armchairs where people sat reading talking doing homework or in the case of Fred and George Weasley trying to find out what would happen if you fed a Filibuster firework to a salamander .Fred had rescued the brilliant orange firedwelling lizard from a Care of Magical Creatures class and it was now smoldering gently on a table surrounded by a knot of curious people .Harry was at the point of telling Ron and Hermione about Filch and the Kwikspell course when the salamander suddenly whizzed into the air emitting loud sparks and bangs as it whirled wildly round the room .The sight of Percy bellowing himself hoarse at Fred and George the spectacular display of tangerine stars showering from the salamanders mouth and its escape into the fire with accompanying explosions drove both Filch and the Kwikspell envelope from Harrys mind .By the time Halloween arrived Harry was regretting his rash promise to go to the deathday party .The rest of the school was happily anticipating their Halloween feast the Great Hall had been decorated with the usual live bats Hagrids vast pumpkins had been carved into lanterns large enough for three men to sit in and there were rumors that Dumbledore had booked a troupe of dancing skeletons for the entertainment .A promise is a promise Hermione reminded Harry bossily .You said youd go to the deathday party .So at seven oclock Harry Ron and Hermione walked straight past the doorway to the packed Great Hall which was glittering invitingly with gold plates and candles and directed their steps instead toward the dungeons .The passageway leading to Nearly Headless Nicks party had been lined with candles too though the effect was far from cheerful These were long thin jetblack tapers all burning bright blue casting a dim ghostly light even over their own living faces .The temperature dropped with every step they took .As Harry shivered and drew his robes tightly around him he heard what sounded like a thousand fingernails scraping an enormous blackboard .Is that supposed to be music ?Ron whispered .They turned a corner and saw Nearly Headless Nick standing at a doorway hung with black velvet drapes .My dear friends he said mournfully .Welcome welcome .so pleased you could come .He swept off his plumed hat and bowed them inside .It was an incredible sight .The dungeon was full of hundreds of pearlywhite translucent people mostly drifting around a crowded dance floor waltzing to the dreadful quavering sound of thirty musical saws played by an orchestra on a raised blackdraped platform .A chandelier overhead blazed midnightblue with a thousand more black candles .Their breath rose in a mist before them it was like stepping into a freezer .Shall we have a look around ?Harry suggested wanting to warm up his feet .Careful not to walk through anyone said Ron nervously and they set off around the edge of the dance floor .They passed a group of gloomy nuns a ragged man wearing chains and the Fat Friar a cheerful Hufflepuff ghost who was talking to a knight with an arrow sticking out of his forehead .Harry wasnt surprised to see that the Bloody Baron a gaunt staring Slytherin ghost covered in silver bloodstains was being given a wide berth by the other ghosts .Oh no said Hermione stopping abruptly .Turn back turn back I dont want to talk to Moaning Myrtle Who ?said Harry as they backtracked quickly .She haunts one of the toilets in the girls bathroom on the first floor said Hermione .She haunts a toilet ?Yes .Its been outoforder all year because she keeps having tantrums and flooding the place .I never went in there anyway if I could avoid it its awful trying to have a pee with her wailing at you Look food !said Ron .On the other side of the dungeon was a long table also covered in black velvet .They approached it eagerly but next moment had stopped in their tracks horrified .The smell was quite disgusting .Large rotten fish were laid on handsome silver platters cakes burned charcoalblack were heaped on salvers there was a great maggoty haggis a slab of cheese covered in furry green mold and in pride of place an enormous gray cake in the shape of a tombstone with tarlike icing forming the words SIR NICHOLAS DE MIMSYPORPINGTON DIED 3 1 ST OCTOBER 1 492 Harry watched amazed as a portly ghost approached the table crouched low and walked through it his mouth held wide so that it passed through one of the stinking salmon .Can you taste it if you walk through it ?Harry asked him .Almost said the ghost sadly and he drifted away .I expect theyve let it rot to give it a stronger flavor said Hermione knowledgeably pinching her nose and leaning closer to look at the putrid haggis .Can we move ?I feel sick said Ron .They had barely turned around however when a little man swooped suddenly from under the table and came to a halt in midair before them .Hello Peeves said Harry cautiously .Unlike the ghosts around them Peeves the Poltergeist was the very reverse of pale and transparent .He was wearing a bright orange party hat a revolving bow tie and a broad grin on his wide wicked face .Nibbles ?he said sweetly offering them a bowl of peanuts covered in fungus .No thanks said Hermione .Heard you talking about poor Myrtle said Peeves his eyes dancing .Rude you was about poor Myrtle .He took a deep breath and bellowed OY !MYRTLE !Oh no Peeves dont tell her what I said shell be really upset Hermione whispered frantically .I didnt mean it I dont mind her er hello Myrtle .The squat ghost of a girl had glided over .She had the glummest face Harry had ever seen halfhidden behind lank hair and thick pearly spectacles .What ?she said sulkily .How are you Myrtle ?said Hermione in a falsely bright voice .Its nice to see you out of the toilet .Myrtle sniffed .Miss Granger was just talking about you said Peeves slyly in Myrtles ear .Just saying saying how nice you look tonight said Hermione glaring at Peeves .Myrtle eyed Hermione suspiciously .Youre making fun of me she said silver tears welling rapidly in her small seethrough eyes .No honestly didnt I just say how nice Myrtles looking ?said Hermione nudging Harry and Ron painfully in the ribs .Oh yeah She did Dont lie to me Myrtle gasped tears now flooding down her face while Peeves chuckled happily over her shoulder .Dyou think I dont know what people call me behind my back ?Fat Myrtle !Ugly Myrtle !Miserable moaning moping Myrtle !Youve forgotten pimply Peeves hissed in her ear .Moaning Myrtle burst into anguished sobs and fled from the dungeon .Peeves shot after her pelting her with moldy peanuts yelling Pimply Pimplyl Oh dear said Hermione sadly .Nearly Headless Nick now drifted toward them through the crowd .Enjoying yourselves ?Oh yes they lied .Not a bad turnout said Nearly Headless Nick proudly .The Wailing Widow came all the way up from Kent .Its nearly time for my speech Id better go and warn the orchestra .The orchestra however stopped playing at that very moment .They and everyone else in the dungeon fell silent looking around in excitement as a hunting horn sounded .Oh here we go said Nearly Headless Nick bitterly .Through the dungeon wall burst a dozen ghost horses each ridden by a headless horseman .The assembly clapped wildly Harry started to clap too but stopped quickly at the sight of Nicks face .The horses galloped into the middle of the dance floor and halted rearing and plunging .At the front of the pack was a large ghost who held his bearded head under his arm from which position he was blowing the horn .The ghost leapt down lifted his head high in the air so he could see over the crowd everyone laughed and strode over to Nearly Headless Nick squashing his head back onto his neck .Nick !he roared .How are you ?Head still hanging in there ?He gave a hearty guffaw and clapped Nearly Headless Nick on the shoulder .Welcome Patrick said Nick stiffly .Live uns !said Sir Patrick spotting Harry Ron and Hermione and giving a huge fake jump of astonishment so that his head fell off again the crowd howled with laughter .Very amusing said Nearly Headless Nick darkly .Dont mind Nick !shouted Sir Patricks head from the floor .Still upset we wont let him join the Hunt !But I mean to say look at the fellow I think said Harry hurriedly at a meaningful look from Nick Nicks very frightening and er Ha !yelled Sir Patricks head .Bet he asked you to say that !If I could have everyones attention its time for my speech !said Nearly Headless Nick loudly striding toward the podium and climbing into an icy blue spotlight .My late lamented lords ladies and gentlemen it is my great sorrow .But nobody heard much more .Sir Patrick and the rest of the Headless Hunt had just started a game of Head Hockey and the crowd were turning to watch .Nearly Headless Nick tried vainly to recapture his audience but gave up as Sir Patricks head went sailing past him to loud cheers .Harry was very cold by now not to mention hungry .I cant stand much more of this Ron muttered his teeth chattering as the orchestra ground back into action and the ghosts swept back onto the dance floor .Lets go Harry agreed .They backed toward the door nodding and beaming at anyone who looked at them and a minute later were hurrying back up the passageway full of black candles .Pudding might not be finished yet said Ron hopefully leading the way toward the steps to the entrance hall .And then Harry heard it . .rip .tear .kill .It was the same voice the same cold murderous voice he had heard in Lockharts office .He stumbled to a halt clutching at the stone wall listening with all his might looking around squinting up and down the dimly lit passageway .Harry whatre you ?Its that voice again shut up a minute soo hungry .for so long .Listen !said Harry urgently and Ron and Hermione froze watching him . .kill .time to kill .The voice was growing fainter .Harry was sure it was moving away moving upward .A mixture of fear and excitement gripped him as he stared at the dark ceiling how could it be moving upward ?Was it a phantom to whom stone ceilings didnt matter ?This way he shouted and he began to run up the stairs into the entrance hall .It was no good hoping to hear anything here the babble of talk from the Halloween feast was echoing out of the Great Hall .Harry sprinted up the marble staircase to the first floor Ron and Hermione clattering behind him .Harry whatre we SHH !Harry strained his ears .Distantly from the floor above and growing fainter still he heard the voice .I smell blood .I SMELL BLOOD His stomach lurched Its going to kill someone !he shouted and ignoring Rons and Hermiones bewildered faces he ran up the next flight of steps three at a time trying to listen over his own pounding footsteps Harry hurtled around the whole of the second floor Ron and Hermione panting behind him not stopping until they turned a corner into the last deserted passage .Harry what was that all about ?said Ron wiping sweat off his face .I couldnt hear anything .But Hermione gave a sudden gasp pointing down the corridor .Looc !Something was shining on the wall ahead .They approached slowly squinting through the darkness .Foothigh words had been daubed on the wall between two windows shimmering in the light cast by the flaming torches .THE CHAMBER OF SECRETS HAS BEEN OPENED .ENEMIES OF THE HEIR BEWARE .Whats that thing hanging underneath ?said Ron a slight quiver in his voice .As they edged nearer Harry almost slipped there was a large puddle of water on the floor Ron and Hermione grabbed him and they inched toward the message eyes fixed on a dark shadow beneath it .All three of them realized what it was at once and leapt backward with a splash .Mrs Norris the caretakers cat was hanging by her tail from the torch bracket .She was stiff as a board her eyes wide and staring .For a few seconds they didnt move .Then Ron said Lets get out of here .Shouldnt we try and help Harry began awkwardly .Trust me said Ron .We dont want to be found here .But it was too late .A rumble as though of distant thunder told them that the feast had just ended .From either end of the corridor where they stood came the sound of hundreds of feet climbing the stairs and the loud happy talk of wellfed people next moment students were crashing into the passage from both ends .The chatter the bustle the noise died suddenly as the people in front spotted the hanging cat .Harry Ron and Hermione stood alone in the middle of the corridor as silence fell among the mass of students pressing forward to see the grisly sight .Then someone shouted through the quiet .Enemies of the Heir beware !Youll be next Mudbloods !It was Draco Malfoy .He had pushed to the front of the crowd his cold eyes alive his usually bloodless face flushed as he grinned at the sight of the hanging immobile cat .9 THE WRITING ON THE WALL Whats going on here ?Whats going on ?Attracted no doubt by Malfoys shout Argus Filch came shouldering his way through the crowd .Then he saw Mrs Norris and fell back clutching his face in horror .My cat !My cat !Whats happened to Mrs Norris ?he shrieked .And his popping eyes fell on Harry .You !he screeched .You !Youve murdered my cat !Youve killed her !Ill kill you !Ill Argus .Dumbledore had arrived on the scene followed by a number of other teachers .In seconds he had swept past Harry Ron and Hermione and detached Mrs Norris from the torch bracket .Come with me Argus he said to Filch .You too Mr Potter Mr Weasley Miss Granger .Lockhart stepped forward eagerly .My office is nearest Headmaster just upstairs please feel free Thank you Gilderoy said Dumbledore .The silent crowd parted to let them pass .Lockhart looking excited and important hurried after Dumbledore so did Professors McGonagall and Snape .As they entered Lockharts darkened office there was a flurry of movement across the walls Harry saw several of the Lockharts in the pictures dodging out of sight their hair in rollers .The real Lockhart lit the candles on his desk and stood back .Dumbledore laid Mrs Norris on the polished surface and began to examine her .Harry Ron and Hermione exchanged tense looks and sank into chairs outside the pool of candlelight watching .The tip of Dumbledore s long crooked nose was barely an inch from Mrs Norriss fur .He was looking at her closely through his halfmoon spectacles his long fingers gently prodding and poking .Professor McGonagall was bent almost as close her eyes narrowed .Snape loomed behind them half in shadow wearing a most peculiar expression It was as though he was trying hard not to smile .And Lockhart was hovering around all of them making suggestions .It was definitely a curse that killed her probably the Transmogrifian Torture Ive seen it used many times so unlucky I wasnt there I know the very countercurse that would have saved her .Lockharts comments were punctuated by Filch s dry racking sobs .He was slumped in a chair by the desk unable to look at Mrs Norris his face in his hands .Much as he detested Filch Harry couldnt help feeling a bit sorry for him though not nearly as sorry as he felt for himself .If Dumbledore believed Filch he would be expelled for sure .Dumbledore was now muttering strange words under his breath and tapping Mrs Norris with his wand but nothing happened She continued to look as though she had been recently stuffed . .I remember something very similar happening in Ouagadougou said Lockhart a series of attacks the full storys in my autobiography I was able to provide the townsfolk with various amulets which cleared the matter up at once .The photographs of Lockhart on the walls were all nodding in agreement as he talked .One of them had forgotten to remove his hair net .At last Dumbledore straightened up .Shes not dead Argus he said softly .Lockhart stopped abruptly in the middle of counting the number of murders he had prevented .Not dead ?choked Filch looking through his fingers at Mrs Norris .But whys she all all stiff and frozen ?She has been Petrified said Dumbledore Ah !I thought so !said Lockhart .But how I cannot say .Ask him shrieked Filch turning his blotched and tearstained face to Harry .No second year could have done this said Dumbledore firmly .It would take Dark Magic of the most advanced He did it he did it !Filch spat his pouchy face purpling .You saw what he wrote on the wall !He found in my office he knows Im a Im a Filch s face worked horribly .He knows Im a Squib !he finished .I never touched Mrs Norris !Harry said loudly uncomfortably aware of everyone looking at him including all the Lockharts on the walls .And I dont even know what a Squib is .Rubbish !snarled Filch .He saw my Kwikspell letter !If I might speak Headmaster said Snape from the shadows and Harrys sense of foreboding increased he was sure nothing Snape had to say was going to do him any good .Potter and his friends may have simply been in the wrong place at the wrong time he said a slight sneer curling his mouth as though he doubted it .But we do have a set of suspicious circumstances here .Why was he in the upstairs corridor at all ?Why wasnt he at the Halloween feast ?Harry Ron and Hermione all launched into an explanation about the deathday party .there were hundreds of ghosts theyll tell you we were there But why not join the feast afterward ?said Snape his black eyes glittering in the candlelight .Why go up to that corridor ?Ron and Hermione looked at Harry .Because because Harry said his heart thumping very fast something told him it would sound very farfetched if he told them he had been led there by a bodiless voice no one but he could hear because we were tired and wanted to go to bed he said .Without any supper ?said Snape a triumphant smile flickering across his gaunt face .I didnt think ghosts provided food fit for living people at their parties .We werent hungry said Ron loudly as his stomach gave a huge rumble .Snapes nasty smile widened .I suggest Headmaster that Potter is not being entirely truthful he said .It might be a good idea if he were deprived of certain privileges until he is ready to tell us the whole story .I personally feel he should be taken off the Gryffindor Quidditch team until he is ready to be honest .Really Severus said Professor McGonagall sharply I see no reason to stop the boy playing Quidditch .This cat wasnt hit over the head with a broomstick .There is no evidence at all that Potter has done anything wrong .Dumbledore was giving Harry a searching look .His twinkling lightblue gaze made Harry feel as though he were being Xrayed .Innocent until proven guilty Severus he said firmly .Snape looked furious .So did Filch .My cat has been Petrified !he shrieked his eyes popping .I want to see some punishmenti We will be able to cure her Argus said Dumbledore patiently .Professer Sprout recently managed to procure some Mandrakes .As soon as they have reached their full size I will have a potion made that will revive Mrs Norris .Ill make it Lockhart butted in .I must have done it a hundred times .I could whip up a Mandrake Restorative Draught in my sleep Excuse me said Snape icily .But I believe I am the Potions master at this school .There was a very awkward pause .You may go Dumbledore said to Harry Ron and Hermione .They went as quickly as they could without actually running .When they were a floor up from Lockharts office they turned into an empty classroom and closed the door quietly behind them .Harry squinted at his friends darkened faces .Dyou think I should have told them about that voice I heard ?No said Ron without hesitation .Hearing voices no one else can hear isnt a good sign even in the wizarding world .Something in Rons voice made Harry ask You do believe me dont you ?Course I do said Ron quickly .But you must admit its weird .I know its weird said Harry .The whole things weird .What was that writing on the wall about ?The Chamber Has Been Opened .Whats that supposed to mean ?You know it rings a sort of bell said Ron slowly .I think someone told me a story about a secret chamber at Hogwarts once .mightve been Bill .And what on earths a Squib ?said Harry .To his surprise Ron stifled a snigger .Well its not funny really but as its Filch he said .A Squib is someone who was born into a wizarding family but hasnt got any magic powers .Kind of the opposite of Muggleborn wizards but Squibs are quite unusual .If Filch s trying to learn magic from a Kwikspell course I reckon he must be a Squib .It would explain a lot .Like why he hates students so much .Ron gave a satisfied smile .Hes bitter .A clock chimed somewhere .Midnight said Harry .Wed better get to bed before Snape comes along and tries to frame us for something else .For a few days the school could talk of little else but the attack on Mrs Norris .Filch kept it fresh in everyones minds by pacing the spot where she had been attacked as though he thought the attacker might come back .Harry had seen him scrubbing the message on the wall with Mrs Skowers AllPurpose Magical Mess Remover but to no effect the words still gleamed as brightly as ever on the stone .When Filch wasnt guarding the scene of the crime he was skulking redeyed through the corridors lunging out at unsuspecting students and trying to put them in detention for things like breathing loudly and looking happy .Ginny Weasley seemed very disturbed by Mrs Norriss fate .According to Ron she was a great cat lover .But you havent really got to know Mrs Norris Ron told her bracingly .Honestly were much better off without her .Ginny s lip trembled .Stuff like this doesnt often happen at Hogwarts Ron assured her .Theyll catch the maniac who did it and have him out of here in no time .I just hope hes got time to Petrify Filch before hes expelled .Im only joking Ron added hastily as Ginny blanched .The attack had also had an effect on Hermione .It was quite usual for Hermione to spend a lot of time reading but she was now doing almost nothing else .Nor could Harry and Ron get much response from her when they asked what she was up to and not until the following Wednesday did they find out .Harry had been held back in Potions where Snape had made him stay behind to scrape tubeworms off the desks .After a hurried lunch he went upstairs to meet Ron in the library and saw Justin Finch Fletchley the Hufflepuff boy from Herbology coming toward him .Harry had just opened his mouth to say hello when Justin caught sight of him turned abruptly and sped off in the opposite direction .Harry found Ron at the back of the library measuring his History of Magic homework .Professor Binns had asked for a threefootlong composition on The Medieval Assembly of European Wizards .I dont believe it Im still eight inches short .said Ron furiously letting go of his parchment which sprang back into a roll .And Hermiones done four feet seven inches and her writings tiny .Where is she ?asked Harry grabbing the tape measure and unrolling his own homework .Somewhere over there said Ron pointing along the shelves .Looking for another book .I think shes trying to read the whole library before Christmas .Harry told Ron about Justin FinchFletchley running away from him .Dunno why you care .I thought he was a bit of an idiot said Ron scribbling away making his writing as large as possible .All that junk about Lockhart being so great Hermione emerged from between the bookshelves .She looked irritable and at last seemed ready to talk to them .All the copies of Hogwarts A History have been taken out she said sitting down next to Harry and Ron .And theres a twoweek waiting list .I wish I hadnt left my copy at home but I couldnt fit it in my trunk with all the Lockhart books .Why do you want it ?said Harry .The same reason everyone else wants it said Hermione to read up on the legend of the Chamber of Secrets .Whats that ?said Harry quickly .Thats just it .I cant remember said Hermione biting her lip .And I cant find the story anywhere else Hermione let me read your composition said Ron desperately checking his watch .No I wont said Hermione suddenly severe .Youve had ten days to finish it I only need another two inches come on The bell rang .Ron and Hermione led the way to History of Magic bickering .History of Magic was the dullest subject on their schedule .Professor Binns who taught it was their only ghost teacher and the most exciting thing that ever happened in his classes was his entering the room through the blackboard .Ancient and shriveled many people said he hadnt noticed he was dead .He had simply got up to teach one day and left his body behind him in an armchair in front of the staffroom fire his routine had not varied in the slightest since .Today was as boring as ever .Professor Binns opened his notes and began to read in a flat drone like an old vacuum cleaner until nearly everyone in the class was in a deep stupor occasionally coming to long enough to copy down a name or date then falling asleep again .He had been speaking for half an hour when something happened that had never happened before .Hermione put up her hand .Professor Binns glancing up in the middle of a deadly dull lecture on the International Warlock Convention of 1289 looked amazed .Miss er ?Granger Professor .I was wondering if you could tell us anything about the Chamber of Secrets said Hermione in a clear voice .Dean Thomas who had been sitting with his mouth hanging open gazing out of the window jerked out of his trance Lavender Browns head came up off her arms and Neville Longbottoms elbow slipped off his desk .Professor Binns blinked .My subject is History of Magic he said in his dry wheezy voice .I deal with facts Miss Granger not myths and legends .He cleared his throat with a small noise like chalk snapping and continued In September of that year a subcommittee of Sardinian sorcerers He stuttered to a halt .Hermiones hand was waving in the air again .Miss Grant ?Please sir dont legends always have a basis in fact ?Professor Binns was looking at her in such amazement Harry was sure no student had ever interrupted him before alive or dead .Well said Professor Binns slowly yes one could argue that I suppose .He peered at Hermione as though he had never seen a student properly before .However the legend of which you speak is such a very sensational even ludicrous tale But the whole class was now hanging on Professor Binns s every word .He looked dimly at them all every face turned to his .Harry could tell he was completely thrown by such an unusual show of interest .Oh very well he said slowly .Let me see .the Chamber of Secrets .You all know of course that Hogwarts was founded over a thousand years ago the precise date is uncertain by the four greatest witches and wizards of the age .The four school Houses are named after them Godric Gryffindor Helga Hufflepuff Rowena Ravenclaw and Salazar Slytherin .They built this castle together far from prying Muggle eyes for it was an age when magic was feared by common people and witches and wizards suffered much persecution .He paused gazed blearily around the room and continued .For a few years the founders worked in harmony together seeking out youngsters who showed signs of magic and bringing them to the castle to be educated .But then disagreements sprang up between them .A rift began to grow between Slytherin and the others .Slytherin wished to be more selective about the students admitted to Hogwarts .He believed that magical learning should be kept within allmagic families .He disliked taking students of Muggle parentage believing them to be untrustworthy .After a while there was a serious argument on the subject between Slytherin and Gryffindor and Slytherin left the school .Professor Binns paused again pursing his lips looking like a wrinkled old tortoise .Reliable historical sources tell us this much he said .But these honest facts have been obscured by the fanciful legend of the Chamber of Secrets .The story goes that Slytherin had built a hidden chamber in the castle of which the other founders knew nothing .Slytherin according to the legend sealed the Chamber of Secrets so that none would be able to open it until his own true heir arrived at the school .The heir alone would be able to unseal the Chamber of Secrets unleash the horror within and use it to purge the school of all who were unworthy to study magic .There was silence as he finished telling the story but it wasnt the usual sleepy silence that filled Professor Binns s classes .There was unease in the air as everyone continued to watch him hoping for more .Professor Binns looked faintly annoyed .The whole thing is arrant nonsense of course he said .Naturally the school has been searched for evidence of such a chamber many times by the most learned witches and wizards .It does not exist .A tale told to frighten the gullible .Hermiones hand was back in the air .Sir what exactly do you mean by the ‘horror within the Chamber ?That is believed to be some sort of monster which the Heir of Slytherin alone can control said Professor Binns in his dry reedy voice .The class exchanged nervous looks .I tell you the thing does not exist said Professor Binns shuffling his notes .There is no Chamber and no monster .But sir said Seamus Finnigan if the Chamber can only be opened by Slytherins true heir no one else would be able to find it would they ?Nonsense OFlaherty said Professor Binns in an aggravated tone .If a long succession of Hogwarts headmasters and headmistresses havent found the thing But Professor piped up Parvati Patil youd probably have to use Dark Magic to open it Just because a wizard doesnt use Dark Magic doesnt mean he cant Miss Pennyfeather snapped Professor Binns .I repeat if the likes of Dumbledore But maybe youve got to be related to Slytherin so Dumbledore couldnt began Dean Thomas but Professor Binns had had enough .That will do he said sharply .It is a myth !It does not exist !There is not a shred of evidence that Slytherin ever built so much as a secret broom cupboard !I regret telling you such a foolish story !We will return if you please to history to solid believable verifiable facti And within five minutes the class had sunk back into its usual torpor .I always knew Salazar Slytherin was a twisted old loony Ron told Harry and Hermione as they fought their way through the teeming corridors at the end of the lesson to drop off their bags before dinner .But I never knew he started all this pureblood stuff .I wouldnt be in his House if you paid me .Honestly if the Sorting Hat had tried to put me in Slytherin Idve got the train straight back home .Hermione nodded fervently but Harry didnt say anything .His stomach had just dropped unpleasantly .Harry had never told Ron and Hermione that the Sorting Hat had seriously considered putting him in Slytherin .He could remember as though it were yesterday the small voice that had spoken in his ear when hed placed the hat on his head a year before You could be great you know its all here in your head and Slytherin would help you on the way to greatness no doubt about that .But Harry who had already heard of Slytherin Houses reputation for turning out Dark wizards had thought desperately Not Slytherin !and the hat had said Oh well if youre sure .better be Gryffindor .As they were shunted along in the throng Colin Creevey went past .Hiya Harry !Hullo Colin said Harry automatically .Harry Harry a boy in my class has been saying youre But Colin was so small he couldnt fight against the tide of people bearing him toward the Great Hall they heard him squeak See you Harry !and he was gone .Whats a boy in his class saying about you ?Hermione wondered .That Im Slytherins heir I expect said Harry his stomach dropping another inch or so as he suddenly remembered the way Justin FinchFletchley had run away from him at lunchtime .People herell believe anything said Ron in disgust .The crowd thinned and they were able to climb the next staircase without difficulty .Dyou really think theres a Chamber of Secrets ?Ron asked Hermione .I dont know she said frowning .Dumbledore couldnt cure Mrs Norris and that makes me think that whatever attacked her might not be well human .As she spoke they turned a corner and found themselves at the end of the very corridor where the attack had happened .They stopped and looked .The scene was just as it had been that night except that there was no stiff cat hanging from the torch bracket and an empty chair stood against the wall bearing the message The Chamber of Secrets Has Been Opened .Thats where Filch has been keeping guard Ron muttered .They looked at each other .The corridor was deserted .Cant hurt to have a poke around said Harry dropping his bag and getting to his hands and knees so that he could crawl along searching for clues .Scorch marks !he said .Here and here Come and look at this !said Hermione .This is funny .Harry got up and crossed to the window next to the message on the wall .Hermione was pointing at the topmost pane where around twenty spiders were scuttling apparently fighting to get through a small crack .A long silvery thread was dangling like a rope as though they had all climbed it in their hurry to get outside .Have you ever seen spiders act like that ?said Hermione wonderingly .No said Harry have you Ron ?Ron ?He looked over his shoulder .Ron was standing well back and seemed to be fighting the impulse to run .Whats up ?said Harry .I dont like spiders said Ron tensely .I never knew that said Hermione looking at Ron in surprise .Youve used spiders in Potions loads of times .I dont mind them dead said Ron who was carefully looking anywhere but at the window .I just dont like the way they move .Hermione giggled .Its not funny said Ron fiercely .If you must know when I was three Fred turned my my teddy bear into a great big filthy spider because I broke his toy broomstick .You wouldnt like them either if youd been holding your bear and suddenly it had too many legs and .He broke off shuddering .Hermione was obviously still trying not to laugh .Feeling they had better get off the subject Harry said Remember all that water on the floor ?Where did that come from ?Someones mopped it up .It was about here said Ron recovering himself to walk a few paces past Filchs chair and pointing .Level with this door .He reached for the brass doorknob but suddenly withdrew his hand as though hed been burned .Whats the matter ?said Harry .Cant go in there said Ron gruffly .Thats a girls toilet .Oh Ron there wont be anyone in there said Hermione standing up and coming over .Thats Moaning Myrtles place .Come on lets have a look .And ignoring the large OUT OF ORDER sign she opened the door .It was the gloomiest most depressing bathroom Harry had ever set foot in .Under a large cracked and spotted mirror were a row of chipped sinks .The floor was damp and reflected the dull light given off by the stubs of a few candles burning low in their holders the wooden doors to the stalls were flaking and scratched and one of them was dangling off its hinges .Hermione put her fingers to her lips and set off toward the end stall .When she reached it she said Hello Myrtle how are you ?Harry and Ron went to look .Moaning Myrtle was floating above the tank of the toilet picking a spot on her chin .This is a girls bathroom she said eyeing Ron and Harry suspiciously .Theyre not girls .No Hermione agreed .I just wanted to show them how er nice it is in here .She waved vaguely at the dirty old mirror and the damp floor .Ask her if she saw anything Harry mouthed at Hermione .What are you whispering ?said Myrtle staring at him .Nothing said Harry quickly .We wanted to ask I wish people would stop talking behind my back !said Myrtle in a voice choked with tears .I do have feelings you know even if I am dead Myrtle no one wants to upset you said Hermione .Harry only No one wants to upset me !Thats a good one !howled Myrtle .My life was nothing but misery at this place and now people come along ruining my death !We wanted to ask you if youve seen anything funny lately said Hermione quickly .Because a cat was attacked right outside your front door on Halloween .Did you see anyone near here that night ?said Harry .I wasnt paying attention said Myrtle dramatically .Peeves upset me so much I came in here and tried to kill myself .Then of course I remembered that Im that Im Already dead said Ron helpfully .Myrtle gave a tragic sob rose up in the air turned over and dived headfirst into the toilet splashing water all over them and vanishing from sight although from the direction of her muffled sobs she had come to rest somewhere in the Ubend .Harry and Ron stood with their mouths open but Hermione shrugged wearily and said Honestly that was almost cheerful for Myrtle .Come on lets go .Harry had barely closed the door on Myrtles gurgling sobs when a loud voice made all three of them jump .RON !Percy Weasley had stopped dead at the head of the stairs prefect badge agleam an expression of complete shock on his face .Thats a girls bathroom !he gasped .What were you ?Just having a look around Ron shrugged .Clues you know Percy swelled in a manner that reminded Harry forcefully of Mrs Weasley .Get away from there Percy said striding toward them and starting to bustle them along flapping his arms .Dont you care what this looks like ?Coming back here while everyones at dinner Why shouldnt we be here ?said Ron hotly stopping short and glaring at Percy .Listen we never laid a finger on that cat !Thats what I told Ginny said Percy fiercely but she still seems to think youre going to be expelled Ive never seen her so upset crying her eyes out you might think of her all the first years are thoroughly overexcited by this business You dont care about Ginny said Ron whose ears were now reddening .Youre just worried Im going to mess up your chances of being Head Boy Five points from Gryffindor !Percy said tersely fingering his prefect badge .And I hope it teaches you a lesson !No more detective work or Ill write to Mum !And he strode off the back of his neck as red as Rons ears .Harry Ron and Hermione chose seats as far as possible from Percy in the common room that night .Ron was still in a very bad temper and kept blotting his Charms homework .When he reached absently for his wand to remove the smudges it ignited the parchment .Fuming almost as much as his homework Ron slammed The Standard Book of Spells Grade 2 shut .To Harrys surprise Hermione followed suit .Who can it be though ?she said in a quiet voice as though continuing a conversation they had just been having .Whod want to frighten all the Squibs and Muggleborns out of Hogwarts ?Lets think said Ron in mock puzzlement .Who do we know who thinks Muggleborns are scum ?He looked at Hermione .Hermione looked back unconvinced .If youre talking about Malfoy Of course I am !said Ron .You heard him ‘Youll be next MudbloodsV come on youve only got to look at his foul rat face to know its him Malfoy the Heir of Slytherin ?said Hermione skeptically .Look at his family said Harry closing his books too .The whole lot of them have been in Slytherin hes always boasting about it .They could easily be Slytherins descendants .His fathers definitely evil enough .They couldve had the key to the Chamber of Secrets for centuries !said Ron .Handing it down father to son .Well said Hermione cautiously I suppose its possible .But how do we prove it ?said Harry darkly .There might be a way said Hermione slowly dropping her voice still further with a quick glance across the room at Percy .Of course it would be difficult .And dangerous very dangerous .Wed be breaking about fifty school rules I expect If in a month or so you feel like explaining you will let us know wont you ?said Ron irritably .All right said Hermione coldly .What wed need to do is to get inside the Slytherin common room and ask Malfoy a few questions without him realizing its us .But thats impossible Harry said as Ron laughed .No its not said Hermione .All wed need would be some Polyjuice Potion .Whats that ?said Ron and Harry together .Snape mentioned it in class a few weeks ago Dyou think weve got nothing better to do in Potions than listen to Snape ?muttered Ron .It transforms you into somebody else .Think about it !We could change into three of the Slytherins .No one would know it was us .Malfoy would probably tell us anything .Hes probably boasting about it in the Slytherin common room right now if only we could hear him .This Polyjuice stuff sounds a bit dodgy to me said Ron frowning .What if we were stuck looking like three of the Slytherins forever ?It wears off after a while said Hermione waving her hand impatiently .But getting hold of the recipe will be very difficult .Snape said it was in a book called Moste Potente Potions and its bound to be in the Restricted Section of the library .There was only one way to get out a book from the Restricted Section You needed a signed note of permission from a teacher .Hard to see why wed want the book really said Ron if we werent going to try and make one of the potions .I think said Hermione that if we made it sound as though we were just interested in the theory we might stand a chance .Oh come on no teachers going to fall for that said Ron .Theyd have to be really thick .10 THE ROGUE BLUDGER Since the disastrous episode of the pixies Professor Lockhart had not brought live creatures to class .Instead he read passages from his books to them and sometimes reenacted some of the more dramatic bits .He usually picked Harry to help him with these reconstructions so far Harry had been forced to play a simple Transylvanian villager whom Lockhart had cured of a Babbling Curse a yeti with a head cold and a vampire who had been unable to eat anything except lettuce since Lockhart had dealt with him .Harry was hauled to the front of the class during their very next Defense Against the Dark Arts lesson this time acting a werewolf .If he hadnt had a very good reason for keeping Lockhart in a good mood he would have refused to do it .Nice loud howl Harry exactly and then if youll believe it I pounced like this slammed him to the floor thus with one hand I managed to hold him down with my other I put my wand to his throat I then screwed up my remaining strength and performed the immensely complex Homorphus Charm he let out a piteous moan go on Harry higher than that good the fur vanished the fangs shrank and he turned back into a man .Simple yet effective and another village will remember me forever as the hero who delivered them from the monthly terror of werewolf attacks .The bell rang and Lockhart got to his feet .Homework compose a poem about my defeat of the Wagga Wagga Werewolf !Signed copies of Magical Me to the author of the best one !The class began to leave .Harry returned to the back of the room where Ron and Hermione were waiting .Ready ?Harry muttered .Wait till everyones gone said Hermione nervously .All right .She approached Lockharts desk a piece of paper clutched tightly in her hand Harry and Ron right behind her .Er Professor Lockhart ?Hermione stammered .I wanted to to get this book out of the library .Just for background reading .She held out the piece of paper her hand shaking slightly .But the thing is its in the Restricted Section of the library so I need a teacher to sign for it Im sure it would help me understand what you say in Gadding with Ghouls about slowacting venoms Ah Gadding with GhoulsV said Lockhart taking the note from Hermione and smiling widely at her .Possibly my very favorite book .You enjoyed it ?Oh yes said Hermione eagerly .So clever the way you trapped that last one with the teastrainer Well Im sure no one will mind me giving the best student of the year a little extra help said Lockhart warmly and he pulled out an enormous peacock quill .Yes nice isnt it ?he said misreading the revolted look on Rons face .I usually save it for book signings .He scrawled an enormous loopy signature on the note and handed it back to Hermione .So Harry said Lockhart while Hermione folded the note with fumbling fingers and slipped it into her bag .Tomorrows the first Quidditch match of the season I believe ?Gryffindor against Slytherin is it not ?I hear youre a useful player .I was a Seeker too .I was asked to try for the National Squad but preferred to dedicate my life to the eradication of the Dark Forces .Still if ever you feel the need for a little private training dont hesitate to ask .Always happy to pass on my expertise to less able players .Harry made an indistinct noise in his throat and then hurried off after Ron and Hermione .I dont believe it he said as the three of them examined the signature on the note .He didnt even look at the book we wanted .Thats because hes a brainless git said Ron .But who cares weve got what we needed He is not a brainless git said Hermione shrilly as they half ran toward the library .Just because he said you were the best student of the year They dropped their voices as they entered the muffled stillness of the library .Madam Pince the librarian was a thin irritable woman who looked like an underfed vulture .Moste Potente Potions ?she repeated suspiciously trying to take the note from Hermione but Hermione wouldnt let go .I was wondering if I could keep it she said breathlessly .Oh come on said Ron wrenching it from her grasp and thrusting it at Madam Pince .Well get you another autograph .Lockhart ll sign anything if it stands still long enough .Madam Pince held the note up to the light as though determined to detect a forgery but it passed the test .She stalked away between the lofty shelves and returned several minutes later carrying a large and moldylooking book .Hermione put it carefully into her bag and they left trying not to walk too quickly or look too guilty .Five minutes later they were barricaded in Moaning Myrtles outoforder bathroom once again .Hermione had overridden Rons objections by pointing out that it was the last place anyone in their right minds would go so they were guaranteed some privacy .Moaning Myrtle was crying noisily in her stall but they were ignoring her and she them .Hermione opened Moste Potente Potions carefully and the three of them bent over the dampspotted pages .It was clear from a glance why it belonged in the Restricted Section .Some of the potions had effects almost too gruesome to think about and there were some very unpleasant illustrations which included a man who seemed to have been turned inside out and a witch sprouting several extra pairs of arms out of her head .Here it is said Hermione excitedly as she found the page headed The Polyjuice Potion .It was decorated with drawings of people halfway through transforming into other people .Harry sincerely hoped the artist had imagined the looks of intense pain on their faces .This is the most complicated potion Ive ever seen said Hermione as they scanned the recipe .Lacewing flies leeches fluxweed and knotgrass she murmured running her finger down the list of ingredients .Well theyre easy enough theyre in the student storecupboard we can help ourselves .Oooh look powdered horn of a bicorn dont know where were going to get that shredded skin of a boomslang thatll be tricky too and of course a bit of whoever we want to change into .Excuse me ?said Ron sharply .What dyou mean a bit of whoever were changing into ?Im drinking nothing with Crabbes toenails in it Hermione continued as though she hadnt heard him .We dont have to worry about that yet though because we add those bits last .Ron turned speechless to Harry who had another worry .Dyou realize how much were going to have to steal Hermione ?Shredded skin of a boomslang thats definitely not in the students cupboard .Whatre we going to do break into Snapes private stores ?I dont know if this is a good idea .Hermione shut the book with a snap .Well if you two are going to chicken out fine she said .There were bright pink patches on her cheeks and her eyes were brighter than usual .I dont want to break rules you know .think threatening Muggle borns is far worse than brewing up a difficult potion .But if you dont want to find out if its Malfoy Ill go straight to Madam Pince now and hand the book back in I never thought Id see the day when youd be persuading us to break rules said Ron .All right well do it .But not toenails okay ?How long will it take to make anyway ?said Harry as Hermione looking happier opened the book again .Well since the fluxweed has got to be picked at the full moon and the lacewings have got to be stewed for twentyone days .Id say itd be ready in about a month if we can get all the ingredients .A month ?said Ron .Malfoy could have attacked half the Muggleborns in the school by then !But Hermione s eyes narrowed dangerously again and he added swiftly But its the best plan weve got so full steam ahead I say .However while Hermione was checking that the coast was clear for them to leave the bathroom Ron muttered to Harry Itll be a lot less hassle if you can just knock Malfoy off his broom tomorrow .Harry woke early on Saturday morning and lay for a while thinking about the coming Quidditch match .He was nervous mainly at the thought of what Wood would say if Gryffindor lost but also at the idea of facing a team mounted on the fastest racing brooms gold could buy .He had never wanted to beat Slytherin so badly .After half an hour of lying there with his insides churning he got up dressed and went down to breakfast early where he found the rest of the Gryffindor team huddled at the long empty table all looking uptight and not speaking much .As eleven oclock approached the whole school started to make its way down to the Quidditch stadium .It was a muggy sort of day with a hint of thunder in the air .Ron and Hermione came hurrying over to wish Harry good luck as he entered the locker rooms .The team pulled on their scarlet Gryffindor robes then sat down to listen to Woods usual pre match pep talk .Slytherin has better brooms than us he began .No point denying it .But weve got better people on our brooms .Weve trained harder than they have weve been flying in all weathers Too true muttered George Weasley .I havent been properly dry since August and were going to make them rue the day they let that little bit of slime Malfoy buy his way onto their team .Chest heaving with emotion Wood turned to Harry .Itll be down to you Harry to show them that a Seeker has to have something more than a rich father .Get to that Snitch before Malfoy or die trying Harry because weve got to win today weve got to .So no pressure Harry said Fred winking at him .As they walked out onto the field a roar of noise greeted them mainly cheers because Ravenclaw and Hufflepuff were anxious to see Slytherin beaten but the Slytherins in the crowd made their boos and hisses heard too .Madam Hooch the Quidditch teacher asked Flint and Wood to shake hands which they did giving each other threatening stares and gripping rather harder than was necessary .On my whistle said Madam Hooch .Three .two .one .With a roar from the crowd to speed them upward the fourteen players rose toward the leaden sky .Harry flew higher than any of them squinting around for the Snitch .All right there Scarhead ?yelled Malfoy shooting underneath him as though to show off the speed of his broom .Harry had no time to reply .At that very moment a heavy black Bludger came pelting toward him he avoided it so narrowly that he felt it ruffle his hair as it passed .Close one Harry !said George streaking past him with his club in his hand ready to knock the Bludger back toward a Slytherin .Harry saw George give the Bludger a powerful whack in the direction of Adrian Pucey but the Bludger changed direction in midair and shot straight for Harry again .Harry dropped quickly to avoid it and George managed to hit it hard toward Malfoy .Once again the Bludger swerved like a boomerang and shot at Harrys head .Harry put on a burst of speed and zoomed toward the other end of the field .He could hear the Bludger whistling along behind him .What was going on ?Bludgers never concentrated on one player like this it was their job to try and unseat as many people as possible .Fred Weasley was waiting for the Bludger at the other end .Harry ducked as Fred swung at the Bludger with all his might the Bludger was knocked off course .Gotcha !Fred yelled happily but he was wrong as though it was magnetically attracted to Harry the Bludger pelted after him once more and Harry was forced to fly off at full speed .It had started to rain Harry felt heavy drops fall onto his face splattering onto his glasses .He didnt have a clue what was going on in the rest of the game until he heard Lee Jordan who was commentating say Slytherin lead sixty points to zero The Slytherins superior brooms were clearly doing their jobs and meanwhile the mad Bludger was doing all it could to knock Harry out of the air .Fred and George were now flying so close to him on either side that Harry could see nothing at all except their flailing arms and had no chance to look for the Snitch let alone catch it .Someones tampered with this Bludger Fred grunted swinging his bat with all his might at it as it launched a new attack on Harry .We need time out said George trying to signal to Wood and stop the Bludger breaking Harrys nose at the same time .Wood had obviously got the message .Madam Hoochs whistle rang out and Harry Fred and George dived for the ground still trying to avoid the mad Bludger .Whats going on ?said Wood as the Gryffindor team huddled together while Slytherins in the crowd jeered .Were being flattened .Fred George where were you when that Bludger stopped Angelina scoring ?We were twenty feet above her stopping the other Bludger from murdering Harry Oliver said George angrily .Someones fixed it it wont leave Harry alone .It hasnt gone for anyone else all game .The Slytherins must have done something to it .But the Bludgers have been locked in Madam Hoochs office since our last practice and there was nothing wrong with them then .said Wood anxiously .Madam Hooch was walking toward them .Over her shoulder Harry could see the Slytherin team jeering and pointing in his direction .Listen said Harry as she came nearer and nearer with you two flying around me all the time the only way Im going to catch the Snitch is if it flies up my sleeve .Go back to the rest of the team and let me deal with the rogue one .Dont be thick said Fred .Itll take your head off .Wood was looking from Harry to the Weasleys .Oliver this is insane said Alicia Spinnet angrily .You cant let Harry deal with that thing on his own .Lets ask for an inquiry If we stop now well have to forfeit the match !said Harry .And were not losing to Slytherin just because of a crazy Bludger !Come on Oliver tell them to leave me alone !This is all your fault George said angrily to Wood . ‘Get the Snitch or die trying what a stupid thing to tell him Madam Hooch had joined them .Ready to resume play ?she asked Wood .Wood looked at the determined look on Harrys face .All right he said .Fred George you heard Harry leave him alone and let him deal with the Bludger on his own .The rain was falling more heavily now .On Madam Hoochs whistle Harry kicked hard into the air and heard the telltale whoosh of the Bludger behind him .Higher and higher Harry climbed he looped and swooped spiraled zigzagged and rolled .Slightly dizzy he nevertheless kept his eyes wide open rain was speckling his glasses and ran up his nostrils as he hung upside down avoiding another fierce dive from the Bludger .He could hear laughter from the crowd he knew he must look very stupid but the rogue Bludger was heavy and couldnt change direction as quickly as Harry could he began a kind of rollercoaster ride around the edges of the stadium squinting through the silver sheets of rain to the Gryffindor goal posts where Adrian Pucey was trying to get past Wood A whistling in Harrys ear told him the Bludger had just missed him again he turned right over and sped in the opposite direction .Training for the ballet Potter ?yelled Malfoy as Harry was forced to do a stupid kind of twirl in midair to dodge the Bludger and he fled the Bludger trailing a few feet behind him and then glaring back at Malfoy in hatred he saw it the Golden Snitch .It was hovering inches above Malfoys left ear and Malfoy busy laughing at Harry hadnt seen it .For an agonizing moment Harry hung in midair not daring to speed toward Malfoy in case he looked up and saw the Snitch .WHAM .He had stayed still a second too long .The Bludger had hit him at last smashed into his elbow and Harry felt his arm break .Dimly dazed by the searing pain in his arm he slid sideways on his rain drenched broom one knee still crooked over it his right arm dangling useless at his side the Bludger came pelting back for a second attack this time aiming at his face Harry swerved out of the way one idea firmly lodged in his numb brain get to Malfoy .Through a haze of rain and pain he dived for the shimmering sneering face below him and saw its eyes widen with fear Malfoy thought Harry was attacking him .What the he gasped careening out of Harrys way .Harry took his remaining hand off his broom and made a wild snatch he felt his fingers close on the cold Snitch but was now only gripping the broom with his legs and there was a yell from the crowd below as he headed straight for the ground trying hard not to pass out .With a splattering thud he hit the mud and rolled off his broom .His arm was hanging at a very strange angle riddled with pain he heard as though from a distance a good deal of whistling and shouting .He focused on the Snitch clutched in his good hand .Aha he said vaguely .Weve won .And he fainted .He came around rain falling on his face still lying on the field with someone leaning over him .He saw a glitter of teeth .Oh no not you he moaned .Doesnt know what hes saying said Lockhart loudly to the anxious crowd of Gryffindors pressing around them .Not to worry Harry .Im about to fix your arm .iVo !said Harry .Ill keep it like this thanks .He tried to sit up but the pain was terrible .He heard a familiar clicking noise nearby .I dont want a photo of this Colin he said loudly .Lie back Harry said Lockhart soothingly .Its a simple charm Ive used countless times Why cant I just go to the hospital wing ?said Harry through clenched teeth .He should really Professor said a muddy Wood who couldnt help grinning even though his Seeker was injured .Great capture Harry really spectacular your best yet Id say Through the thicket of legs around him Harry spotted Fred and George Weasley wrestling the rogue Bludger into a box .It was still putting up a terrific fight .Stand back said Lockhart who was rolling up his jadegreen sleeves .No dont said Harry weakly but Lockhart was twirling his wand and a second later had directed it straight at Harrys arm .A strange and unpleasant sensation started at Harrys shoulder and spread all the way down to his fingertips .It felt as though his arm was being deflated .He didnt dare look at what was happening .He had shut his eyes his face turned away from his arm but his worst fears were realized as the people above him gasped and Colin Creevey began clicking away madly .His arm didnt hurt anymore nor did it feel remotely like an arm .Ah said Lockhart .Yes .Well that can sometimes happen .But the point is the bones are no longer broken .Thats the thing to bear in mind .So Harry just toddle up to the hospital wing ah Mr Weasley Miss Granger would you escort him ?and Madam Pomfrey will be able to er tidy you up a bit .As Harry got to his feet he felt strangely lopsided .Taking a deep breath he looked down at his right side .What he saw nearly made him pass out again .Poking out of the end of his robes was what looked like a thick fleshcolored rubber glove .He tried to move his fingers .Nothing happened .Lockhart hadnt mended Harrys bones .He had removed them .Madam Pomfrey wasnt at all pleased .You should have come straight to me !she raged holding up the sad limp remainder of what half an hour before had been a working arm .I can mend bones in a second but growing them back You will be able to wont you ?said Harry desperately .Ill be able to certainly but it will be painful said Madam Pomfrey grimly throwing Harry a pair of pajamas .Youll have to stay the night .Hermione waited outside the curtain drawn around Harrys bed while Ron helped him into his pajamas .It took a while to stuff the rubbery boneless arm into a sleeve .How can you stick up for Lockhart now Hermione eh ?Ron called through the curtain as he pulled Harrys limp fingers through the cuff .If Harry had wanted deboning he would have asked .Anyone can make a mistake said Hermione .And it doesnt hurt anymore does it Harry ?No said Harry getting into bed .But it doesnt do anything else either .As he swung himself onto the bed his arm flapped pointlessly .Hermione and Madam Pomfrey came around the curtain .Madam Pomfrey was holding a large bottle of something labeled SkeleGro .Youre in for a rough night she said pouring out a steaming beakerful and handing it to him .Regrowing bones is a nasty business .So was taking the SkeleGro .It burned Harrys mouth and throat as it went down making him cough and splutter .Still tuttutting about dangerous sports and inept teachers Madam Pomfrey retreated leaving Ron and Hermione to help Harry gulp down some water .We won though said Ron a grin breaking across his face .That was some catch you made .Malfoys face .he looked ready to kill .I want to know how he fixed that Bludger said Hermione darkly .We can add that to the list of questions well ask him when weve taken the Polyjuice Potion said Harry sinking back onto his pillows .I hope it tastes better than this stuff .If its got bits of Slytherins in it ?Youve got to be joking said Ron .The door of the hospital wing burst open at that moment .Filthy and soaking wet the rest of the Gryffindor team had arrived to see Harry .Unbelievable flying Harry said George .Ive just seen Marcus Flint yelling at Malfoy .Something about having the Snitch on top of his head and not noticing .Malfoy didnt seem too happy .They had brought cakes sweets and bottles of pumpkin juice they gathered around Harrys bed and were just getting started on what promised to be a good party when Madam Pomfrey came storming over shouting This boy needs rest hes got thirty three bones to regrow !Out !OUT !And Harry was left alone with nothing to distract him from the stabbing pains in his limp arm .Hours and hours later Harry woke quite suddenly in the pitch blackness and gave a small yelp of pain His arm now felt full of large splinters .For a second he thought that was what had woken him .Then with a thrill of horror he realized that someone was sponging his forehead in the dark .Get off !he said loudly and then Dobby The houseelfs goggling tennis ball eyes were peering at Harry through the darkness .A single tear was running down his long pointed nose .Harry Potter came back to school he whispered miserably .Dobby warned and warned Harry Potter .Ah sir why didnt you heed Dobby ?Why didnt Harry Potter go back home when he missed the train ?Harry heaved himself up on his pillows and pushed Dobbys sponge away .Whatre you doing here ?he said .And how did you know I missed the train ?Dobbys lip trembled and Harry was seized by a sudden suspicion .It was you !he said slowly .You stopped the barrier from letting us through !Indeed yes sir said Dobby nodding his head vigorously ears flapping .Dobby hid and watched for Harry Potter and sealed the gateway and Dobby had to iron his hands afterward he showed Harry ten long bandaged fingers but Dobby didnt care sir for he thought Harry Potter was safe and never did Dobby dream that Harry Potter would get to school another way !He was rocking backward and forward shaking his ugly head .Dobby was so shocked when he heard Harry Potter was back at Hogwarts he let his masters dinner burn !Such a flogging Dobby never had sir .Harry slumped back onto his pillows .You nearly got Ron and me expelled he said fiercely .Youd better get lost before my bones come back Dobby or I might strangle you .Dobby smiled weakly .Dobby is used to death threats sir .Dobby gets them five times a day at home .He blew his nose on a corner of the filthy pillowcase he wore looking so pathetic that Harry felt his anger ebb away in spite of himself .Why dyou wear that thing Dobby ?he asked curiously .This sir ?said Dobby plucking at the pillowcase .Tis a mark of the houseelfs enslavement sir .Dobby can only be freed if his masters present him with clothes sir .The family is careful not to pass Dobby even a sock sir for then he would be free to leave their house forever .Dobby mopped his bulging eyes and said suddenly Harry Potter must go home !Dobby thought his Bludger would be enough to make Your Bludger ?said Harry anger rising once more .What dyou mean your Bludger ?You made that Bludger try and kill me ?Not kill you sir never kill you !said Dobby shocked .Dobby wants to save Harry Potters life !Better sent home grievously injured than remain here sir !Dobby only wanted Harry Potter hurt enough to be sent home !Oh is that all ?said Harry angrily .I dont suppose youre going to tell me why you wanted me sent home in pieces ?Ah if Harry Potter only knew !Dobby groaned more tears dripping onto his ragged pillowcase .If he knew what he means to us to the lowly the enslaved we dregs of the magical world !Dobby remembers how it was when HeWhoMustNotBeNamed was at the height of his powers sir !We houseelves were treated like vermin sir !Of course Dobby is still treated like that sir he admitted drying his face on the pillowcase .But mostly sir life has improved for my kind since you triumphed over HeWhoMustNotBe Named .Harry Potter survived and the Dark Lords power was broken and it was a new dawn sir and Harry Potter shone like a beacon of hope for those of us who thought the Dark days would never end sir . .And now at Hogwarts terrible things are to happen are perhaps happening already and Dobby cannot let Harry Potter stay here now that history is to repeat itself now that the Chamber of Secrets is open once more Dobby froze horrors truck then grabbed Harrys water jug from his bedside table and cracked it over his own head toppling out of sight .A second later he crawled back onto the bed crosseyed muttering Bad Dobby very bad Dobby .So there is a Chamber of Secrets ?Harry whispered .And did you say its been opened before ?Tell me Dobby !He seized the elfs bony wrist as Dobbys hand inched toward the water jug .But Im not Muggleborn how can I be in danger from the Chamber ?Ah sir ask no more ask no more of poor Dobby stammered the elf his eyes huge in the dark .Dark deeds are planned in this place but Harry Potter must not be here when they happen go home Harry Potter go home .Harry Potter must not meddle in this sir tis too dangerous Who is it Dobby ?Harry said keeping a firm hold on Dobbys wrist to stop him from hitting himself with the water jug again .Whos opened it ?Who opened it last time ?Dobby cant sir Dobby cant Dobby mustnt tell !squealed the elf .Go home Harry Potter go home !Im not going anywhere !said Harry fiercely .One of my best friends is Muggleborn shell be first in line if the Chamber really has been opened Harry Potter risks his own life for his friends !moaned Dobby in a kind of miserable ecstasy .So noble !So valiant !But he must save himself he must Harry Potter must not Dobby suddenly froze his bat ears quivering .Harry heard it too .There were footsteps coming down the passageway outside .Dobby must go !breathed the elf terrified .There was a loud crack and Harrys fist was suddenly clenched on thin air .He slumped back into bed his eyes on the dark doorway to the hospital wing as the footsteps drew nearer .Next moment Dumbledore was backing into the dormitory wearing a long woolly dressing gown and a nightcap .He was carrying one end of what looked like a statue .Professor McGonagall appeared a second later carrying its feet .Together they heaved it onto a bed .Get Madam Pomfrey whispered Dumbledore and Professor McGonagall hurried past the end of Harrys bed out of sight .Harry lay quite still pretending to be asleep .He heard urgent voices and then Professor McGonagall swept back into view closely followed by Madam Pomfrey who was pulling a cardigan on over her nightdress .He heard a sharp intake of breath .What happened ?Madam Pomfrey whispered to Dumbledore bending over the statue on the bed .Another attack said Dumbledore .Minerva found him on the stairs .There was a bunch of grapes next to him said Professor McGonagall .We think he was trying to sneak up here to visit Potter .Harrys stomach gave a horrible lurch .Slowly and carefully he raised himself a few inches so he could look at the statue on the bed .A ray of moonlight lay across its staring face .It was Colin Creevey .His eyes were wide and his hands were stuck up in front of him holding his camera .Petrified ?whispered Madam Pomfrey .Yes said Professor McGonagall .But I shudder to think .If Albus hadnt been on the way downstairs for hot chocolate who knows what might have The three of them stared down at Colin .Then Dumbledore leaned forward and wrenched the camera out of Colins rigid grip .You dont think he managed to get a picture of his attacker ?said Professor McGonagall eagerly .Dumbledore didnt answer .He opened the back of the camera .Good gracious !said Madam Pomfrey .A jet of steam had hissed out of the camera .Harry three beds away caught the acrid smell of burnt plastic .Melted said Madam Pomfrey wonderingly .All melted .What does this mean Albus ?Professor McGonagall asked urgently .It means said Dumbledore that the Chamber of Secrets is indeed open again .Madam Pomfrey clapped a hand to her mouth .Professor McGonagall stared at Dumbledore .But Albus .surely .who ?The question is not who said Dumbledore his eyes on Colin .The question is how .And from what Harry could see of Professor McGonagalls shadowy face she didnt understand this any better than he did .THE DUELING CLUB Harry woke up on Sunday morning to find the dormitory blazing with winter sunlight and his arm reboned but very stiff .He sat up quickly and looked over at Colins bed but it had been blocked from view by the high curtains Harry had changed behind yesterday .Seeing that he was awake Madam Pomfrey came bustling over with a breakfast tray and then began bending and stretching his arm and fingers .All in order she said as he clumsily fed himself porridge lefthanded .When youve finished eating you may leave .Harry dressed as quickly as he could and hurried off to Gryffindor Tower desperate to tell Ron and Hermione about Colin and Dobby but they werent there .Harry left to look for them wondering where they could have got to and feeling slightly hurt that they werent interested in whether he had his bones back or not .As Harry passed the library Percy Weasley strolled out of it looking in far better spirits than last time theyd met .Oh hello Harry he said .Excellent flying yesterday really excellent .Gryffindor has just taken the lead for the House Cup you earned fifty points !You havent seen Ron or Hermione have you ?said Harry .No I havent said Percy his smile fading .I hope Rons not in another girls toilet .Harry forced a laugh watched Percy walk out of sight and then headed straight for Moaning Myrtles bathroom .He couldnt see why Ron and Hermione would be in there again but after making sure that neither Filch nor any prefects were around he opened the door and heard their voices coming from a locked stall .Its me he said closing the door behind him .There was a clunk a splash and a gasp from within the stall and he saw Hermione s eye peering through the keyhole .Harry she said .You gave us such a fright come in hows your arm ?Fine said Harry squeezing into the stall .An old cauldron was perched on the toilet and a crackling from under the rim told Harry they had lit a fire beneath it .Conjuring up portable waterproof fires was a speciality of Hermione s .We dve come to meet you but we decided to get started on the Polyjuice Potion Ron explained as Harry with difficulty locked the stall again .Weve decided this is the safest place to hide it .Harry started to tell them about Colin but Hermione interrupted .We already know we heard Professor McGonagall telling Professor Flitwick this morning .Thats why we decided wed better get going The sooner we get a confession out of Malfoy the better snarled Ron .Dyou know what I think ?He was in such a foul temper after the Quidditch match he took it out on Colin .Theres something else said Harry watching Hermione tearing bundles of knotgrass and throwing them into the potion .Dobby came to visit me in the middle of the night .Ron and Hermione looked up amazed .Harry told them everything Dobby had told him or hadnt told him .Hermione and Ron listened with their mouths open .The Chamber of Secrets has been opened before ?Hermione said .This settles it said Ron in a triumphant voice .Lucius Malfoy mustve opened the Chamber when he was at school here and now hes told dear old Draco how to do it .Its obvious .Wish Dobby d told you what kind of monsters in there though .I want to know how come nobodys noticed it sneaking around the school .Maybe it can make itself invisible said Hermione prodding leeches to the bottom of the cauldron .Or maybe it can disguise itself pretend to be a suit of armor or something Ive read about Chameleon Ghouls You read too much Hermione said Ron pouring dead lacewings on top of the leeches .He crumpled up the empty lacewing bag and looked at Harry .So Dobby stopped us from getting on the train and broke your arm .He shook his head .You know what Harry ?If he doesnt stop trying to save your life hes going to kill you .k k k The news that Colin Creevey had been attacked and was now lying as though dead in the hospital wing had spread through the entire school by Monday morning .The air was suddenly thick with rumor and suspicion .The first years were now moving around the castle in tightknit groups as though scared they would be attacked if they ventured forth alone .Ginny Weasley who sat next to Colin Creevey in Charms was distraught but Harry felt that Fred and George were going the wrong way about cheering her up .They were taking turns covering themselves with fur or boils and jumping out at her from behind statues .They only stopped when Percy apoplectic with rage told them he was going to write to Mrs Weasley and tell her Ginny was having nightmares .Meanwhile hidden from the teachers a roaring trade in talismans amulets and other protective devices was sweeping the school .Neville Longbottom bought a large evilsmelling green onion a pointed purple crystal and a rotting newt tail before the other Gryffindor boys pointed out that he was in no danger he was a pureblood and therefore unlikely to be attacked .They went for Filch first Neville said his round face fearful .And everyone knows Im almost a Squib .In the second week of December Professor McGonagall came around as usual collecting names of those who would be staying at school for Christmas .Harry Ron and Hermione signed her list they had heard that Malfoy was staying which struck them as very suspicious .The holidays would be the perfect time to use the Polyjuice Potion and try to worm a confession out of him .Unfortunately the potion was only half finished .They still needed the bicorn horn and the boomslang skin and the only place they were going to get them was from Snapes private stores .Harry privately felt hed rather face Slytherins legendary monster than let Snape catch him robbing his office .What we need said Hermione briskly as Thursday afternoons double Potions lesson loomed nearer is a diversion .Then one of us can sneak into Snapes office and take what we need .Harry and Ron looked at her nervously .I think Id better do the actual stealing Hermione continued in a matteroffact tone .You two will be expelled if you get into any more trouble and Ive got a clean record .So all you need to do is cause enough mayhem to keep Snape busy for five minutes or so .Harry smiled feebly .Deliberately causing mayhem in Snapes Potions class was about as safe as poking a sleeping dragon in the eye .Potions lessons took place in one of the large dungeons .Thursday afternoons lesson proceeded in the usual way .Twenty cauldrons stood steaming between the wooden desks on which stood brass scales and jars of ingredients .Snape prowled through the fumes making waspish remarks about the Gryffindors work while the Slytherins sniggered appreciatively .Draco Malfoy who was Snapes favorite student kept flicking pufferfish eyes at Ron and Harry who knew that if they retaliated they would get detention faster than you could say Unfair .Harrys Swelling Solution was far too runny but he had his mind on more important things .He was waiting for Hermiones signal and he hardly listened as Snape paused to sneer at his watery potion .When Snape turned and walked off to bully Neville Hermione caught Harrys eye and nodded .Harry ducked swiftly down behind his cauldron pulled one of Freds Filibuster fireworks out of his pocket and gave it a quick prod with his wand .The firework began to fizz and sputter .Knowing he had only seconds Harry straightened up took aim and lobbed it into the air it landed right on target in Goyles cauldron .Goyles potion exploded showering the whole class .People shrieked as splashes of the Swelling Solution hit them .Malfoy got a faceful and his nose began to swell like a balloon Goyle blundered around his hands over his eyes which had expanded to the size of a dinner plate Snape was trying to restore calm and find out what had happened .Through the confusion Harry saw Hermione slip quietly into Snapes office .Silence !SILENCE !Snape roared .Anyone who has been splashed come here for a Deflating Draught when I find out who did this Harry tried not to laugh as he watched Malfoy hurry forward his head drooping with the weight of a nose like a small melon .As half the class lumbered up to Snape s desk some weighted down with arms like clubs others unable to talk through gigantic puffed up lips Harry saw Hermione slide back into the dungeon the front of her robes bulging .When everyone had taken a swig of antidote and the various swellings had subsided Snape swept over to Goyles cauldron and scooped out the twisted black remains of the firework .There was a sudden hush .If I ever find out who threw this Snape whispered I shall make sure that person is expelled .Harry arranged his face into what he hoped was a puzzled expression .Snape was looking right at him and the bell that rang ten minutes later could not have been more welcome .He knew it was me Harry told Ron and Hermione as they hurried back to Moaning Myrtles bathroom .I could tell .Hermione threw the new ingredients into the cauldron and began to stir feverishly .Itll be ready in two weeks she said happily .Snape cant prove it was you said Ron reassuringly to Harry .What can he do ?Knowing Snape something foul said Harry as the potion frothed and bubbled .A week later Harry Ron and Hermione were walking across the entrance hall when they saw a small knot of people gathered around the notice board reading a piece of parchment that had just been pinned up .Seamus Finnigan and Dean Thomas beckoned them over looking excited .Theyre starting a Dueling Club !said Seamus .First meeting tonight !I wouldnt mind dueling lessons they might come in handy one of these days .What you reckon Slytherins monster can duel ?said Ron but he too read the sign with interest .Could be useful he said to Harry and Hermione as they went into dinner .Shall we go ?Harry and Hermione were all for it so at eight oclock that evening they hurried back to the Great Hall .The long dining tables had vanished and a golden stage had appeared along one wall lit by thousands of candles floating overhead .The ceiling was velvety black once more and most of the school seemed to be packed beneath it all carrying their wands and looking excited .I wonder wholl be teaching us ?said Hermione as they edged into the chattering crowd .Someone told me Flitwick was a dueling champion when he was young maybe itll be him .As long as its not Harry began but he ended on a groan Gilderoy Lockhart was walking onto the stage resplendent in robes of deep plum and accompanied by none other than Snape wearing his usual black .Lockhart waved an arm for silence and called Gather round gather round !Can everyone see me ?Can you all hear me ?Excellent !Now Professor Dumbledore has granted me permission to start this little dueling club to train you all in case you ever need to defend yourselves as I myself have done on countless occasions for full details see my published works .Let me introduce my assistant Professor Snape said Lockhart flashing a wide smile .He tells me he knows a tiny little bit about dueling himself and has sportingly agreed to help me with a short demonstration before we begin .Now I dont want any of you youngsters to worry youll still have your Potions master when Im through with him never fear !Wouldnt it be good if they finished each other off ?Ron muttered in Harrys ear .Snape s upper lip was curling .Harry wondered why Lockhart was still smiling if Snape had been looking at him like that hed have been running as fast as he could in the opposite direction .Lockhart and Snape turned to face each other and bowed at least Lockhart did with much twirling of his hands whereas Snape jerked his head irritably .Then they raised their wands like swords in front of them .As you see we are holding our wands in the accepted combative position Lockhart told the silent crowd .On the count of three we will cast our first spells .Neither of us will be aiming to kill of course .I wouldnt bet on that Harry murmured watching Snape baring his teeth .One two three Both of them swung their wands above their heads and pointed them at their opponent Snape cried ExpelliarmusV There was a dazzling flash of scarlet light and Lockhart was blasted off his feet He flew backward off the stage smashed into the wall and slid down it to sprawl on the floor .Malfoy and some of the other Slytherins cheered .Hermione was dancing on tiptoes .Do you think hes all right ?she squealed through her fingers .Who cares ?said Harry and Ron together .Lockhart was getting unsteadily to his feet .His hat had fallen off and his wavy hair was standing on end .Well there you have it !he said tottering back onto the platform .That was a Disarming Charm as you see Ive lost my wand ah thank you Miss Brown yes an excellent idea to show them that Professor Snape but if you dont mind my saying so it was very obvious what you were about to do .If I had wanted to stop you it would have been only too easy however I felt it would be instructive to let them see .Snape was looking murderous .Possibly Lockhart had noticed because he said Enough demonstrating !Im going to come amongst you now and put you all into pairs .Professor Snape if youd like to help me They moved through the crowd matching up partners .Lockhart teamed Neville with Justin Finch Fletchley but Snape reached Harry and Ron first .Time to split up the dream team I think he sneered .Weasley you can partner Finnigan .Potter Harry moved automatically toward Hermione .I dont think so said Snape smiling coldly .Mr Malfoy come over here .Lets see what you make of the famous Potter .And you Miss Granger you can partner Miss Bulstrode .Malfoy strutted over smirking .Behind him walked a Slytherin girl who reminded Harry of a picture hed seen in Holidays with Hags .She was large and square and her heavy jaw jutted aggressively .Hermione gave her a weak smile that she did not return .Face your partners !called Lockhart back on the platform .And bow !Harry and Malfoy barely inclined their heads not taking their eyes off each other .Wands at the ready !shouted Lockhart .When I count to three cast your charms to disarm your opponents only to disarm them we dont want any accidents one .two .three Harry swung his wand high but Malfoy had already started on two His spell hit Harry so hard he felt as though hed been hit over the head with a saucepan .He stumbled but everything still seemed to be working and wasting no more time Harry pointed his wand straight at Malfoy and shouted Rictusempral A jet of silver light hit Malfoy in the stomach and he doubled up wheezing .I said disarm only Lockhart shouted in alarm over the heads of the battling crowd as Malfoy sank to his knees Harry had hit him with a Tickling Charm and he could barely move for laughing .Harry hung back with a vague feeling it would be unsporting to bewitch Malfoy while he was on the floor but this was a mistake gasping for breath Malfoy pointed his wand at Harrys knees choked Tarantallegral and the next second Harrys legs began to jerk around out of his control in a kind of quickstep .Stop !Stop !screamed Lockhart but Snape took charge .Finite Incantatem he shouted Harrys feet stopped dancing Malfoy stopped laughing and they were able to look up .A haze of greenish smoke was hovering over the scene .Both Neville and Justin were lying on the floor panting Ron was holding up an ashenfaced Seamus apologizing for whatever his broken wand had done but Hermione and Millicent Bulstrode were still moving Millicent had Hermione in a headlock and Hermione was whimpering in pain both their wands lay forgotten on the floor .Harry leapt forward and pulled Millicent off .It was difficult She was a lot bigger than he was .Dear dear said Lockhart skittering through the crowd looking at the aftermath of the duels .Up you go Macmillan .Careful there Miss Fawcett .Pinch it hard itll stop bleeding in a second Boot I think Id better teach you how to block unfriendly spells said Lockhart standing flustered in the midst of the hall .He glanced at Snape whose black eyes glinted and looked quickly away .Lets have a volunteer pair Longbottom and FinchFletchley how about you A bad idea Professor Lockhart said Snape gliding over like a large and malevolent bat .Longbottom causes devastation with the simplest spells .Well be sending whats left of FinchFletchley up to the hospital wing in a matchbox .Nevilles round pink face went pinker .How about Malfoy and Potter ?said Snape with a twisted smile .Excellent idea !said Lockhart gesturing Harry and Malfoy into the middle of the hall as the crowd backed away to give them room .Now Harry said Lockhart .When Draco points his wand at you you do this .He raised his own wand attempted a complicated sort of wiggling action and dropped it .Snape smirked as Lockhart quickly picked it up saying Whoops my wand is a little overexcited Snape moved closer to Malfoy bent down and whispered something in his ear .Malfoy smirked too .Harry looked up nervously at Lockhart and said Professor could you show me that blocking thing again ?Scared ?muttered Malfoy so that Lockhart couldnt hear him .You wish said Harry out of the corner of his mouth .Lockhart cuffed Harry merrily on the shoulder .Just do what I did Harry !What drop my wand ?But Lockhart wasnt listening .Three two one go !he shouted .Malfoy raised his wand quickly and bellowed Serpensortial The end of his wand exploded .Harry watched aghast as a long black snake shot out of it fell heavily onto the floor between them and raised itself ready to strike .There were screams as the crowd backed swiftly away clearing the floor .Dont move Potter said Snape lazily clearly enjoying the sight of Harry standing motionless eye to eye with the angry snake .Ill get rid of it .Allow me !shouted Lockhart .He brandished his wand at the snake and there was a loud bang the snake instead of vanishing flew ten feet into the air and fell back to the floor with a loud smack .Enraged hissing furiously it slithered straight toward Justin FinchFletchley and raised itself again fangs exposed poised to strike .Harry wasnt sure what made him do it .He wasnt even aware of deciding to do it .All he knew was that his legs were carrying him forward as though he was on casters and that he had shouted stupidly at the snake Leave him alone !And miraculously inexplicably the snake slumped to the floor docile as a thick black garden hose its eyes now on Harry .Harry felt the fear drain out of him .He knew the snake wouldnt attack anyone now though how he knew it he couldnt have explained .He looked up at Justin grinning expecting to see Justin looking relieved or puzzled or even grateful but certainly not angry and scared .What do you think youre playing at ?he shouted and before Harry could say anything Justin had turned and stormed out of the hall .Snape stepped forward waved his wand and the snake vanished in a small puff of black smoke .Snape too was looking at Harry in an unexpected way It was a shrewd and calculating look and Harry didnt like it .He was also dimly aware of an ominous muttering all around the walls .Then he felt a tugging on the back of his robes .Come on said Rons voice in his ear .Move come on Ron steered him out of the hall Hermione hurrying alongside them .As they went through the doors the people on either side drew away as though they were frightened of catching something .Harry didnt have a clue what was going on and neither Ron nor Hermione explained anything until they had dragged him all the way up to the empty Gryffindor common room .Then Ron pushed Harry into an armchair and said Youre a Parselmouth .Why didnt you tell us ?Im a what ?said Harry .A Parselmouth .said Ron .You can talk to snakes !I know said Harry .I mean thats only the second time Ive ever done it .I accidentally set a boa constrictor on my cousin Dudley at the zoo once long story but it was telling me it had never seen Brazil and I sort of set it free without meaning to that was before I knew I was a wizard A boa constrictor told you it had never seen Brazil ?Ron repeated faintly .So ?said Harry .I bet loads of people here can do it .Oh no they cant said Ron .Its not a very common gift .Harry this is bad .Whats bad ?said Harry starting to feel quite angry .Whats wrong with everyone ?Listen if I hadnt told that snake not to attack Justin Oh thats what you said to it ?What dyou mean ?You were there you heard me I heard you speaking Parseltongue said Ron .Snake language .You could have been saying anything no wonder Justin panicked you sounded like you were egging the snake on or something it was creepy you know Harry gaped at him .I spoke a different language ?But I didnt realize how can I speak a language without knowing I can speak it ?Ron shook his head .Both he and Hermione were looking as though someone had died .Harry couldnt see what was so terrible .Dyou want to tell me whats wrong with stopping a massive snake biting off Justins head ?he said .What does it matter how I did it as long as Justin doesnt have to join the Headless Hunt ?It matters said Hermione speaking at last in a hushed voice because being able to talk to snakes was what Salazar Slytherin was famous for .Thats why the symbol of Slytherin House is a serpent .Harrys mouth fell open .Exactly said Ron .And now the whole schools going to think youre his greatgreatgreatgreat grandson or something But Im not said Harry with a panic he couldnt quite explain .Youll find that hard to prove said Hermione .He lived about a thousand years ago for all we know you could be . •k k k Harry lay awake for hours that night .Through a gap in the curtains around his fourposter he watched snow starting to drift past the tower window and wondered .Could he be a descendant of Salazar Slytherin ?He didnt know anything about his fathers family after all .The Dursleys had always forbidden questions about his wizarding relatives .Quietly Harry tried to say something in Parseltongue .The words wouldnt come .It seemed he had to be facetoface with a snake to do it .But Im in Gryffindor Harry thought .The Sorting Hat wouldnt have put me in here if I had Slytherin blood .Ah said a nasty little voice in his brain but the Sorting Hat wanted to put you in Slytherin dont you remember ?Harry turned over .Hed see Justin the next day in Herbology and hed explain that hed been calling the snake off not egging it on which he thought angrily pummeling his pillow any fool should have realized .By next morning however the snow that had begun in the night had turned into a blizzard so thick that the last Herbology lesson of the term was canceled Professor Sprout wanted to fit socks and scarves on the Mandrakes a tricky operation she would entrust to no one else now that it was so important for the Mandrakes to grow quickly and revive Mrs Norris and Colin Creevey .Harry fretted about this next to the fire in the Gryffindor common room while Ron and Hermione used their time off to play a game of wizard chess .For heavens sake Harry said Hermione exasperated as one of Rons bishops wrestled her knight off his horse and dragged him off the board .Go and find Justin if its so important to you .So Harry got up and left through the portrait hole wondering where Justin might be .The castle was darker than it usually was in daytime because of the thick swirling gray snow at every window .Shivering Harry walked past classrooms where lessons were taking place catching snatches of what was happening within .Professor McGonagall was shouting at someone who by the sound of it had turned his friend into a badger .Resisting the urge to take a look Harry walked on by thinking that Justin might be using his free time to catch up on some work and deciding to check the library first .A group of the Hufflepuffs who should have been in Herbology were indeed sitting at the back of the library but they didnt seem to be working .Between the long lines of high bookshelves Harry could see that their heads were close together and they were having what looked like an absorbing conversation .He couldnt see whether Justin was among them .He was walking toward them when something of what they were saying met his ears and he paused to listen hidden in the Invisibility section .So anyway a stout boy was saying I told Justin to hide up in our dormitory .I mean to say if Potters marked him down as his next victim its best if he keeps a low profile for a while .Of course Justins been waiting for something like this to happen ever since he let slip to Potter he was Muggleborn .Justin actually told him hed been down for Eton .Thats not the kind of thing you bandy about with Slytherins heir on the loose is it ?You definitely think it is Potter then Ernie ?said a girl with blonde pigtails anxiously .Hannah said the stout boy solemnly hes a Parselmouth .Everyone knows thats the mark of a Dark wizard .Have you ever heard of a decent one who could talk to snakes ?They called Slytherin himself Serpenttongue .There was some heavy murmuring at this and Ernie went on Remember what was written on the wall ?Enemies of the Heir Beware .Potter had some sort of runin with Filch .Next thing we know Filch s cats attacked .That first year Creevey was annoying Potter at the Quidditch match taking pictures of him while he was lying in the mud .Next thing we know Creevey s been attacked .He always seems so nice though said Hannah uncertainly and well hes the one who made You KnowWho disappear .He cant be all bad can he ?Ernie lowered his voice mysteriously the Hufflepuffs bent closer and Harry edged nearer so that he could catch Ernies words .No one knows how he survived that attack by You KnowWho .I mean to say he was only a baby when it happened .He should have been blasted into smithereens .Only a really powerful Dark wizard could have survived a curse like that .He dropped his voice until it was barely more than a whisper and said Thats probably why YouKnowWho wanted to kill him in the first place .Didnt want another Dark Lord competing with him .I wonder what other powers Potters been hiding ?Harry couldnt take anymore .Clearing his throat loudly he stepped out from behind the bookshelves .If he hadnt been feeling so angry he would have found the sight that greeted him funny Every one of the Hufflepuffs looked as though they had been Petrified by the sight of him and the color was draining out of Ernies face .Hello said Harry .Im looking for Justin Finch Fletchley .The Hufflepuffs worst fears had clearly been confirmed .They all looked fearfully at Ernie .What do you want with him ?said Ernie in a quavering voice .I wanted to tell him what really happened with that snake at the Dueling Club said Harry .Ernie bit his white lips and then taking a deep breath said We were all there .We saw what happened .Then you noticed that after I spoke to it the snake backed off ?said Harry .All I saw said Ernie stubbornly though he was trembling as he spoke was you speaking Parseltongue and chasing the snake toward Justin .I didnt chase it at him !Harry said his voice shaking with anger .It didnt even touch him !It was a very near miss said Ernie .And in case youre getting ideas he added hastily I might tell you that you can trace my family back through nine generations of witches and warlocks and my bloods as pure as anyones so I dont care what sort of blood youve got !said Harry fiercely .Why would I want to attack Muggleborns ?Ive heard you hate those Muggles you live with said Ernie swiftly .Its not possible to live with the Dursleys and not hate them said Harry .Id like to see you try it .He turned on his heel and stormed out of the library earning himself a reproving glare from Madam Pince who was polishing the gilded cover of a large spellbook .Harry blundered up the corridor barely noticing where he was going he was in such a fury .The result was that he walked into something very large and solid which knocked him backward onto the floor .Oh hello Hagrid Harry said looking up .Hagrids face was entirely hidden by a woolly snow covered balaclava but it couldnt possibly be anyone else as he filled most of the corridor in his moleskin overcoat .A dead rooster was hanging from one of his massive gloved hands .All righ Harry ?he said pulling up the balaclava so he could speak .Why arent yeh in class ?Canceled said Harry getting up .Whatre you doing in here ?Hagrid held up the limp rooster .Second one killed this term he explained .Its either foxes or a BloodSuckin Bugbear an I need the headmasters permission ter put a charm around the hen coop .He peered more closely at Harry from under his thick snowflecked eyebrows .Yeh sure yehre all righ ?Yeh look all hot an bothered Harry couldnt bring himself to repeat what Ernie and the rest of the Hufflepuffs had been saying about him .Its nothing he said .Id better get going Hagrid its Transfiguration next and Ive got to pick up my books .He walked off his mind still full of what Ernie had said about him .Justins been waiting for something like this to happen ever since he let slip to Potter he was Muggle born .Harry stamped up the stairs and turned along another corridor which was particularly dark the torches had been extinguished by a strong icy draft that was blowing through a loose windowpane .He was halfway down the passage when he tripped headlong over something lying on the floor .He turned to squint at what hed fallen over and felt as though his stomach had dissolved .Justin FinchFletchley was lying on the floor rigid and cold a look of shock frozen on his face his eyes staring blankly at the ceiling .And that wasnt all .Next to him was another figure the strangest sight Harry had ever seen .It was Nearly Headless Nick no longer pearlywhite and transparent but black and smoky floating immobile and horizontal six inches off the floor .His head was half off and his face wore an expression of shock identical to Justins .Harry got to his feet his breathing fast and shallow his heart doing a kind of drumroll against his ribs .He looked wildly up and down the deserted corridor and saw a line of spiders scuttling as fast as they could away from the bodies .The only sounds were the muffled voices of teachers from the classes on either side .He could run and no one would ever know he had been there .But he couldnt just leave them lying here .He had to get help .Would anyone believe he hadnt had anything to do with this ?As he stood there panicking a door right next to him opened with a bang .Peeves the Poltergeist came shooting out .Why its potty wee Potter !cackled Peeves knocking Harrys glasses askew as he bounced past him .Whats Potter up to ?Whys Potter lurking Peeves stopped halfway through a midair somersault .Upside down he spotted Justin and Nearly Headless Nick .He flipped the right way up filled his lungs and before Harry could stop him screamed ATTACK !ATTACK !ANOTHER ATTACK !NO MORTAL OR GHOST IS SAFE !RUN FOR YOUR LIVES !ATTaaCK !Crash crash crash door after door flew open along the corridor and people flooded out .For several long minutes there was a scene of such confusion that Justin was in danger of being squashed and people kept standing in Nearly Headless Nick .Harry found himself pinned against the wall as the teachers shouted for quiet .Professor McGonagall came running followed by her own class one of whom still had blackandwhite striped hair .She used her wand to set off a loud bang which restored silence and ordered everyone back into their classes .No sooner had the scene cleared somewhat than Ernie the Hufflepuff arrived panting on the scene .Caught in the act !Ernie yelled his face stark white pointing his finger dramatically at Harry .That will do Macmillan !said Professor McGonagall sharply .Peeves was bobbing overhead now grinning wickedly surveying the scene Peeves always loved chaos .As the teachers bent over Justin and Nearly Headless Nick examining them Peeves broke into song Oh Potter you rotter oh what have you done Youre killing off students you think its good fun Thats enough Peeves !barked Professor McGonagall and Peeves zoomed away backward with his tongue out at Harry .Justin was carried up to the hospital wing by Professor Flitwick and Professor Sinistra of the Astronomy department but nobody seemed to know what to do for Nearly Headless Nick .In the end Professor McGonagall conjured a large fan out of thin air which she gave to Ernie with instructions to waft Nearly Headless Nick up the stairs .This Ernie did fanning Nick along like a silent black hovercraft .This left Harry and Professor McGonagall alone together .This way Potter she said .Professor said Harry at once I swear I didnt This is out of my hands Potter said Professor McGonagall curtly .They marched in silence around a corner and she stopped before a large and extremely ugly stone gargoyle .Lemon drop !she said .This was evidently a password because the gargoyle sprang suddenly to life and hopped aside as the wall behind him split in two .Even full of dread for what was coming Harry couldnt fail to be amazed .Behind the wall was a spiral staircase that was moving smoothly upward like an escalator .As he and Professor McGonagall stepped onto it Harry heard the wall thud closed behind them .They rose upward in circles higher and higher until at last slightly dizzy Harry saw a gleaming oak door ahead with a brass knocker in the shape of a griffin .He knew now where he was being taken .This must be where Dumbledore lived .THE POLY JUICE POTION They stepped off the stone staircase at the top and Professor McGonagall rapped on the door .It opened silently and they entered .Professor McGonagall told Harry to wait and left him there alone .Harry looked around .One thing was certain of all the teachers offices Harry had visited so far this year Dumbledores was by far the most interesting .If he hadnt been scared out of his wits that he was about to be thrown out of school he would have been very pleased to have a chance to look around it .It was a large and beautiful circular room full of funny little noises .A number of curious silver instruments stood on spindlelegged tables whirring and emitting little puffs of smoke .The walls were covered with portraits of old headmasters and headmistresses all of whom were snoozing gently in their frames .There was also an enormous claw footed desk and sitting on a shelf behind it a shabby tattered wizards hat the Sorting Hat Harry hesitated .He cast a wary eye around the sleeping witches and wizards on the walls .Surely it couldnt hurt if he took the hat down and tried it on again ?Just to see .just to make sure it had put him in the right House He walked quietly around the desk lifted the hat from its shelf and lowered it slowly onto his head .It was much too large and slipped down over his eyes just as it had done the last time hed put it on .Harry stared at the black inside of the hat waiting .Then a small voice said in his ear Bee in your bonnet Harry Potter ?Er yes Harry muttered .Er sorry to bother you I wanted to ask Youve been wondering whether I put you in the right House said the hat smartly .Yes .you were particularly difficult to place .But I stand by what I said before Harrys heart leapt you would have done well in Slytherin Harrys stomach plummeted .He grabbed the point of the hat and pulled it off .It hung limply in his hand grubby and faded .Harry pushed it back onto its shelf feeling sick .Youre wrong he said aloud to the still and silent hat .It didnt move .Harry backed away watching it .Then a strange gagging noise behind him made him wheel around .He wasnt alone after all .Standing on a golden perch behind the door was a decrepitlooking bird that resembled a halfplucked turkey .Harry stared at it and the bird looked balefully back making its gagging noise again .Harry thought it looked very ill .Its eyes were dull and even as Harry watched a couple more feathers fell out of its tail .Harry was just thinking that all he needed was for Dumbledore s pet bird to die while he was alone in the office with it when the bird burst into flames .Harry yelled in shock and backed away into the desk .He looked feverishly around in case there was a glass of water somewhere but couldnt see one the bird meanwhile had become a fireball it gave one loud shriek and next second there was nothing but a smoldering pile of ash on the floor .The office door opened .Dumbledore came in looking very somber .Professor Harry gasped .Your bird I couldnt do anything he just caught fire To Harrys astonishment Dumbledore smiled .About time too he said .Hes been looking dreadful for days Ive been telling him to get a move on .He chuckled at the stunned look on Harrys face .Fawkes is a phoenix Harry .Phoenixes burst into flame when it is time for them to die and are reborn from the ashes .Watch him .Harry looked down in time to see a tiny wrinkled newborn bird poke its head out of the ashes .It was quite as ugly as the old one .Its a shame you had to see him on a Burning Day said Dumbledore seating himself behind his desk .Hes really very handsome most of the time wonderful red and gold plumage .Fascinating creatures phoenixes .They can carry immensely heavy loads their tears have healing powers and they make highly faithful pets .In the shock of Fawkes catching fire Harry had forgotten what he was there for but it all came back to him as Dumbledore settled himself in the high chair behind the desk and fixed Harry with his penetrating lightblue stare .Before Dumbledore could speak another word however the door of the office flew open with an almighty bang and Hagrid burst in a wild look in his eyes his balaclava perched on top of his shaggy black head and the dead rooster still swinging from his hand .It wasn Harry Professor Dumbledore !said Hagrid urgently .I was talkin ter him seconds before that kid was found he never had time sir Dumbledore tried to say something but Hagrid went ranting on waving the rooster around in his agitation sending feathers everywhere .it cantve bin him Ill swear it in front o the Ministry o Magic if I have to Hagrid I yehve got the wrong boy sir I know Harry never Hagridl said Dumbledore loudly .I do not think that Harry attacked those people .Oh said Hagrid the rooster falling limply at his side .Right .Ill wait outside then Headmaster .And he stomped out looking embarrassed .You dont think it was me Professor ?Harry repeated hopefully as Dumbledore brushed rooster feathers off his desk .No Harry I dont said Dumbledore though his face was somber again .But I still want to talk to you .Harry waited nervously while Dumbledore considered him the tips of his long fingers together .I must ask you Harry whether there is anything youd like to tell me he said gently .Anything at all .Harry didnt know what to say .He thought of Malfoy shouting Youll be next Mudbloods !and of the Polyjuice Potion simmering away in Moaning Myrtles bathroom .Then he thought of the disembodied voice he had heard twice and remembered what Ron had said Hearing voices no one else can hear isnt a good sign even in the wizarding world .He thought too about what everyone was saying about him and his growing dread that he was somehow connected with Salazar Slytherin .No said Harry .There isnt anything Professor .The double attack on Justin and Nearly Headless Nick turned what had hitherto been nervousness into real panic .Curiously it was Nearly Headless Nicks fate that seemed to worry people most .What could possibly do that to a ghost ?people asked each other what terrible power could harm someone who was already dead ?There was almost a stampede to book seats on the Hogwarts Express so that students could go home for Christmas .At this rate well be the only ones left Ron told Harry and Hermione .Us Malfoy Crabbe and Goyle .What a jolly holiday its going to be .Crabbe and Goyle who always did whatever Malfoy did had signed up to stay over the holidays too .But Harry was glad that most people were leaving .He was tired of people skirting around him in the corridors as though he were about to sprout fangs or spit poison tired of all the muttering pointing and hissing as he passed .Fred and George however found all this very funny .They went out of their way to march ahead of Harry down the corridors shouting Make way for the Heir of Slytherin seriously evil wizard coming through .Percy was deeply disapproving of this behavior .It is not a laughing matter he said coldly .Oh get out of the way Percy said Fred .Harrys in a hurry .Yeah hes off to the Chamber of Secrets for a cup of tea with his fanged servant said George chortling .Ginny didnt find it amusing either .Oh dont she wailed every time Fred asked Harry loudly who he was planning to attack next or when George pretended to ward Harry off with a large clove of garlic when they met .Harry didnt mind it made him feel better that Fred and George at least thought the idea of his being Slytherin s heir was quite ludicrous .But their antics seemed to be aggravating Draco Malfoy who looked increasingly sour each time he saw them at it .Its because hes bursting to say its really him said Ron knowingly .You know how he hates anyone beating him at anything and youre getting all the credit for his dirty work .Not for long said Hermione in a satisfied tone .The Polyjuice Potions nearly ready .Well be getting the truth out of him any day now .At last the term ended and a silence deep as the snow on the grounds descended on the castle .Harry found it peaceful rather than gloomy and enjoyed the fact that he Hermione and the Weasleys had the run of Gryffindor Tower which meant they could play Exploding Snap loudly without bothering anyone and practice dueling in private .Fred George and Ginny had chosen to stay at school rather than visit Bill in Egypt with Mr and Mrs Weasley .Percy who disapproved of what he termed their childish behavior didnt spend much time in the Gryffindor common room .He had already told them pompously that he was only staying over Christmas because it was his duty as a prefect to support the teachers during this troubled time .Christmas morning dawned cold and white .Harry and Ron the only ones left in their dormitory were woken very early by Hermione who burst in fully dressed and carrying presents for them both .Wake up she said loudly pulling back the curtains at the window .Hermione youre not supposed to be in here said Ron shielding his eyes against the light .Merry Christmas to you too said Hermione throwing him his present .Ive been up for nearly an hour adding more lacewings to the potion .Its ready .Harry sat up suddenly wide awake .Are you sure ?Positive said Hermione shirting Scabbers the rat so that she could sit down on the end of Rons four poster .If were going to do it I say it should be tonight .At that moment Hedwig swooped into the room carrying a very small package in her beak .Hello said Harry happily as she landed on his bed .Are you speaking to me again ?She nibbled his ear in an affectionate sort of way which was a far better present than the one that she had brought him which turned out to be from the Dursleys .They had sent Harry a toothpick and a note telling him to find out whether hed be able to stay at Hogwarts for the summer vacation too .The rest of Harrys Christmas presents were far more satisfactory .Hagrid had sent him a large tin of treacle toffee which Harry decided to soften by the fire before eating Ron had given him a book called Flying with the Cannons a book of interesting facts about his favorite Quidditch team and Hermione had bought him a luxury eaglefeather quill .Harry opened the last present to find a new handknitted sweater from Mrs Weasley and a large plum cake .He read her card with a fresh surge of guilt thinking about Mr Weasleys car which hadnt been seen since its crash with the Whomping Willow and the bout of rule breaking he and Ron were planning next .No one not even someone dreading taking Polyjuice Potion later could fail to enjoy Christmas dinner at Hogwarts .The Great Hall looked magnificent .Not only were there a dozen frostcovered Christmas trees and thick streamers of holly and mistletoe crisscrossing the ceiling but enchanted snow was falling warm and dry from the ceiling .Dumbledore led them in a few of his favorite carols Hagrid booming more and more loudly with every goblet of eggnog he consumed .Percy who hadnt noticed that Fred had bewitched his prefect badge so that it now read Pinhead kept asking them all what they were sniggering at .Harry didnt even care that Draco Malfoy was making loud snide remarks about his new sweater from the Slytherin table .With a bit of luck Malfoy would be getting his comeuppance in a few hours time .Harry and Ron had barely finished their third helpings of Christmas pudding when Hermione ushered them out of the hall to finalize their plans for the evening .We still need a bit of the people youre changing into said Hermione matteroffactly as though she were sending them to the supermarket for laundry detergent .And obviously itll be best if you can get something of Crabbes and Goyles theyre Malfoys best friends hell tell them anything .And we also need to make sure the real Crabbe and Goyle cant burst in on us while were interrogating him .Ive got it all worked out she went on smoothly ignoring Harrys and Rons stupefied faces .She held up two plump chocolate cakes .Ive filled these with a simple Sleeping Draught .All you have to do is make sure Crabbe and Goyle find them .You know how greedy they are theyre bound to eat them .Once theyre asleep pull out a few of their hairs and hide them in a broom closet .Harry and Ron looked incredulously at each other .Hermione I dont think That could go seriously wrong But Hermione had a steely glint in her eye not unlike the one Professor McGonagall sometimes had .The potion will be useless without Crabbes and Goyles hair she said sternly .You do want to investigate Malfoy dont you ?Oh all right all right said Harry .But what about you ?Whose hair are you ripping out ?Ive already got mine !said Hermione brightly pulling a tiny bottle out of her pocket and showing them the single hair inside it .Remember Millicent Bulstrode wrestling with me at the Dueling Club ?She left this on my robes when she was trying to strangle me !And shes gone home for Christmas so Ill just have to tell the Slytherins Ive decided to come back .When Hermione had bustled off to check on the Polyjuice Potion again Ron turned to Harry with a doomladen expression .Have you ever heard of a plan where so many things could go wrong ?But to Harrys and Rons utter amazement stage one of the operation went just as smoothly as Hermione had said .They lurked in the deserted entrance hall after Christmas tea waiting for Crabbe and Goyle who had remained alone at the Slytherin table shoveling down fourth helpings of trifle .Harry had perched the chocolate cakes on the end of the banisters .When they spotted Crabbe and Goyle coming out of the Great Hall Harry and Ron hid quickly behind a suit of armor next to the front door .How thick can you get ?Ron whispered ecstatically as Crabbe gleefully pointed out the cakes to Goyle and grabbed them .Grinning stupidly they stuffed the cakes whole into their large mouths .For a moment both of them chewed greedily looks of triumph on their faces .Then without the smallest change of expression they both keeled over backward onto the floor .By far the hardest part was hiding them in the closet across the hall .Once they were safely stowed among the buckets and mops Harry yanked out a couple of the bristles that covered Goyle s forehead and Ron pulled out several of Crabbe s hairs .They also stole their shoes because their own were far too small for Crabbe and Goylesize feet .Then still stunned at what they had just done they sprinted up to Moaning Myrtles bathroom .They could hardly see for the thick black smoke issuing from the stall in which Hermione was stirring the cauldron .Pulling their robes up over their faces Harry and Ron knocked softly on the door .Hermione ?They heard the scrape of the lock and Hermione emerged shinyfaced and looking anxious .Behind her they heard the gloop gloop of the bubbling glutinous potion .Three glass tumblers stood ready on the toilet seat .Did you get them ?Hermione asked breathlessly .Harry showed her Goyles hair .Good .And I sneaked these spare robes out of the laundry Hermione said holding up a small sack .Youll need bigger sizes once youre Crabbe and Goyle .The three of them stared into the cauldron .Close up the potion looked like thick dark mud bubbling sluggishly .Im sure Ive done everything right said Hermione nervously rereading the splotched page of Moste Potente Potions .It looks like the book says it should .once weve drunk it well have exactly an hour before we change back into ourselves .Now what ?Ron whispered .We separate it into three glasses and add the hairs .Hermione ladled large dollops of the potion into each of the glasses .Then her hand trembling she shook Millicent Bulstrodes hair out of its bottle into the first glass .The potion hissed loudly like a boiling kettle and frothed madly .A second later it had turned a sick sort of yellow .Urgh essence of Millicent Bulstrode said Ron eyeing it with loathing .Bet it tastes disgusting .Add yours then said Hermione .Harry dropped Goyles hair into the middle glass and Ron put Crabbes into the last one .Both glasses hissed and frothed Goyles turned the khaki color of a booger Crabbes a dark murky brown .Hang on said Harry as Ron and Hermione reached for their glasses .Wed better not all drink them in here .Once we turn into Crabbe and Goyle we wont fit .And Millicent Bulstrodes no pixie .Good thinking said Ron unlocking the door .Well take separate stalls .Careful not to spill a drop of his Polyjuice Potion Harry slipped into the middle stall .Ready ?he called .Ready came Rons and Hermiones voices .One two three Pinching his nose Harry drank the potion down in two large gulps .It tasted like overcooked cabbage .Immediately his insides started writhing as though hed just swallowed live snakes doubled up he wondered whether he was going to be sick then a burning sensation spread rapidly from his stomach to the very ends of his fingers and toes next bringing him gasping to all fours came a horrible melting feeling as the skin all over his body bubbled like hot wax and before his eyes his hands began to grow the fingers thickened the nails broadened the knuckles were bulging like bolts his shoulders stretched painfully and a prickling on his forehead told him that hair was creeping down toward his eyebrows his robes ripped as his chest expanded like a barrel bursting its hoops his feet were agony in shoes four sizes too small As suddenly as it had started everything stopped .Harry lay facedown on the stonecold floor listening to Myrtle gurgling morosely in the end toilet .With difficulty he kicked off his shoes and stood up .So this was what it felt like being Goyle .His large hand trembling he pulled off his old robes which were hanging a foot above his ankles pulled on the spare ones and laced up Goyles boatlike shoes .He reached up to brush his hair out of his eyes and met only the short growth of wiry bristles low on his forehead .Then he realized that his glasses were clouding his eyes because Goyle obviously didnt need them he took them off and called Are you two okay ?Goyles low rasp of a voice issued from his mouth .Yeah came the deep grunt of Crabbe from his right .Harry unlocked his door and stepped in front of the cracked mirror .Goyle stared back at him out of dull deepset eyes .Harry scratched his ear .So did Goyle .Rons door opened .They stared at each other .Except that he looked pale and shocked Ron was indistinguishable from Crabbe from the pudding bowl haircut to the long gorilla arms .This is unbelievable said Ron approaching the mirror and prodding Crabbe s flat nose .Unbelievable .Wed better get going said Harry loosening the watch that was cutting into Goyles thick wrist .Weve still got to find out where the Slytherin common room is .I only hope we can find someone to follow .Ron who had been gazing at Harry said You dont know how bizarre it is to see Goyle thinking .He banged on Hermiones door .Cmon we need to go A highpitched voice answered him .I I dont think Im going to come after all .You go on without me .Hermione we know Millicent Bulstrodes ugly no ones going to know its you No really I dont think Ill come .You two hurry up youre wasting time Harry looked at Ron bewildered .That looks more like Goyle said Ron .Thats how he looks every time a teacher asks him a question .Hermione are you okay ?said Harry through the door .Fine Im fine go on Harry looked at his watch .Five of their precious sixty minutes had already passed .Well meet you back here all right ?he said .Harry and Ron opened the door of the bathroom carefully checked that the coast was clear and set off .Dont swing your arms like that Harry muttered to Ron .Eh ?Crabbe holds them sort of stiff .Hows this ?Yeah thats better .They went down the marble staircase .All they needed now was a Slytherin that they could follow to the Slytherin common room but there was nobody around .Any ideas ?muttered Harry .The Slytherins always come up to breakfast from over there said Ron nodding at the entrance to the dungeons .The words had barely left his mouth when a girl with long curly hair emerged from the entrance .Excuse me said Ron hurrying up to her .Weve forgotten the way to our common room .I beg your pardon ?said the girl stiffly .Our common room ?Im a Ravenclaw .She walked away looking suspiciously back at them .Harry and Ron hurried down the stone steps into the darkness their footsteps echoing particularly loudly as Crabbes and Goyles huge feet hit the floor feeling that this wasnt going to be as easy as they had hoped .The labyrinthine passages were deserted .They walked deeper and deeper under the school constantly checking their watches to see how much time they had left .After a quarter of an hour just when they were getting desperate they heard a sudden movement ahead .Ha !said Ron excitedly .Theres one of them now !The figure was emerging from a side room .As they hurried nearer however their hearts sank .It wasnt a Slytherin it was Percy .Whatre you doing down here ?said Ron in surprise .Percy looked affronted .That he said stiffly is none of your business .Its Crabbe isnt it ?Wh oh yeah said Ron .Well get off to your dormitories said Percy sternly .Its not safe to go wandering around dark corridors these days .You are Ron pointed out .I said Percy drawing himself up am a prefect .Nothings about to attack me .A voice suddenly echoed behind Harry and Ron .Draco Malfoy was strolling toward them and for the first time in his life Harry was pleased to see him .There you are he drawled looking at them .Have you two been pigging out in the Great Hall all this time ?Ive been looking for you I want to show you something really funny .Malfoy glanced witheringly at Percy .And whatre you doing down here Weasley ?he sneered .Percy looked outraged .You want to show a bit more respect to a school prefect !he said .I dont like your attitude !Malfoy sneered and motioned for Harry and Ron to follow him .Harry almost said something apologetic to Percy but caught himself just in time .He and Ron hurried after Malfoy who said as they turned into the next passage That Peter Weasley Percy Ron corrected him automatically .Whatever said Malfoy .Ive noticed him sneaking around a lot lately .And I bet I know what hes up to .He thinks hes going to catch Slytherins heir single handed .He gave a short derisive laugh .Harry and Ron exchanged excited looks .Malfoy paused by a stretch of bare damp stone wall .Whats the new password again ?he said to Harry .Er said Harry .Oh yeah pureblood said Malfoy not listening and a stone door concealed in the wall slid open .Malfoy marched through it and Harry and Ron followed him .The Slytherin common room was a long low underground room with rough stone walls and ceiling from which round greenish lamps were hanging on chains .A fire was crackling under an elaborately carved mantelpiece ahead of them and several Slytherins were silhouetted around it in highbacked chairs .Wait here said Malfoy to Harry and Ron motioning them to a pair of empty chairs set back from the fire .Ill go and get it my fathers just sent it to me Wondering what Malfoy was going to show them Harry and Ron sat down doing their best to look at home .Malfoy came back a minute later holding what looked like a newspaper clipping .He thrust it under Rons nose .Thatll give you a laugh he said .Harry saw Rons eyes widen in shock .He read the clipping quickly gave a very forced laugh and handed it to Harry .It had been clipped out of the Daily Prophet and it said INQUIRY AT THE MINISTRY OF MAGIC Arthur Weasley Head of the Misuse of Muggle Artifacts Office was today fined fifty Galleons for bewitching a Muggle car .Mr Lucius Malfoy a governor of Hogwarts School of Witchcraft and Wizardry where the enchanted car crashed earlier this year called today for Mr Weasleys resignation .Weasley has brought the Ministry into disrepute Mr Malfoy told our reporter .He is clearly unfit to draw up our laws and his ridiculous Muggle Protection Act should be scrapped immediately .Mr Weasley was unavailable for comment although his wife told reporters to clear off or shed set the family ghoul on them .Well ?said Malfoy impatiently as Harry handed the clipping back to him .Dont you think its funny ?Ha ha said Harry bleakly .Arthur Weasley loves Muggles so much he should snap his wand in half and go and join them said Malfoy scornfully .Youd never know the Weasleys were purebloods the way they behave .Rons or rather Crabbes face was contorted with fury .Whats up with you Crabbe ?snapped Malfoy .Stomachache Ron grunted .Well go up to the hospital wing and give all those Mudbloods a kick from me said Malfoy snickering .You know Im surprised the Daily Prophet hasnt reported all these attacks yet he went on thoughtfully .I suppose Dumbledores trying to hush it all up .Hell be sacked if it doesnt stop soon .Fathers always said old Dumbledores the worst thing thats ever happened to this place .He loves Muggle borns .A decent headmaster would never ve let slime like that Creevey in .Malfoy started taking pictures with an imaginary camera and did a cruel but accurate impression of Colin ‘Potter can I have your picture Potter ?Can I have your autograph ?Can I lick your shoes please Potter ?He dropped his hands and looked at Harry and Ron .Whats the matter with you two ?Far too late Harry and Ron forced themselves to laugh but Malfoy seemed satisfied perhaps Crabbe and Goyle were always slow on the uptake .Saint Potter the Mudbloods friend said Malfoy slowly .Hes another one with no proper wizard feeling or he wouldnt go around with that jumpedup Granger Mudblood .And people think hes Slytherins heir !Harry and Ron waited with bated breath Malfoy was surely seconds away from telling them it was him but then I wish I knew who it is said Malfoy petulantly .I could help them .Rons jaw dropped so that Crabbe looked even more clueless than usual .Fortunately Malfoy didnt notice and Harry thinking fast said You must have some idea whos behind it all .You know I havent Goyle how many times do I have to tell you ?snapped Malfoy .And Father wont tell me anything about the last time the Chamber was opened either .Of course it was fifty years ago so it was before his time but he knows all about it and he says that it was all kept quiet and itll look suspicious if I know too much about it .But I know one thing last time the Chamber of Secrets was opened a Mudblood died .So I bet its a matter of time before one of thems killed this time .I hope its Granger he said with relish .Ron was clenching Crabbe s gigantic fists .Feeling that it would be a bit of a giveaway if Ron punched Malfoy Harry shot him a warning look and said Dyou know if the person who opened the Chamber last time was caught ?Oh yeah .whoever it was was expelled said Malfoy .Theyre probably still in Azkaban .Azkaban ?said Harry puzzled .Azkaban the wizard prison Goyle said Malfoy looking at him in disbelief .Honestly if you were any slower youd be going backward .He shifted restlessly in his chair and said Father says to keep my head down and let the Heir of Slytherin get on with it .He says the school needs ridding of all the Mudblood filth but not to get mixed up in it .Of course hes got a lot on his plate at the moment .You know the Ministry of Magic raided our manor last week ?Harry tried to force Goyle s dull face into a look of concern .Yeah .said Malfoy .Luckily they didnt find much .Fathers got some very valuable Dark Arts stuff .But luckily weve got our own secret chamber under the drawingroom floor Ho !said Ron .Malfoy looked at him .So did Harry .Ron blushed .Even his hair was turning red .His nose was also slowly lengthening their hour was up Ron was turning back into himself and from the look of horror he was suddenly giving Harry he must be too .They both jumped to their feet .Medicine for my stomach Ron grunted and without further ado they sprinted the length of the Slytherin common room hurled themselves at the stone wall and dashed up the passage hoping against hope that Malfoy hadnt noticed anything .Harry could feel his feet slipping around in Goyles huge shoes and had to hoist up his robes as he shrank they crashed up the steps into the dark entrance hall which was full of a muffled pounding coming from the closet where theyd locked Crabbe and Goyle .Leaving their shoes outside the closet door they sprinted in their socks up the marble staircase toward Moaning Myrtles bathroom .Well it wasnt a complete waste of time Ron panted closing the bathroom door behind them .I know we still havent found out whos doing the attacks but Im going to write to Dad tomorrow and tell him to check under the Malfoys drawing room .Harry checked his face in the cracked mirror .He was back to normal .He put his glasses on as Ron hammered on the door of Hermiones stall .Hermione come out weve got loads to tell you Go away !Hermione squeaked .Harry and Ron looked at each other .Whats the matter ?said Ron .You must be back to normal by now we are But Moaning Myrtle glided suddenly through the stall door .Harry had never seen her looking so happy .Ooooooh wait till you see she said .Its awful They heard the lock slide back and Hermione emerged sobbing her robes pulled up over her head .Whats up ?said Ron uncertainly .Have you still got Millicents nose or something ?Hermione let her robes fall and Ron backed into the sink .Her face was covered in black fur .Her eyes had turned yellow and there were long pointed ears poking through her hair .It was a ccat hair !she howled .MMillicent Bulstrode mmust have a cat !And the ppotion isnt supposed to be used for animal transformations !Uhoh said Ron .Youll be teased something dreadful said Myrtle happily .Its okay Hermione said Harry quickly .Well take you up to the hospital wing .Madam Pomfrey never asks too many questions .It took a long time to persuade Hermione to leave the bathroom .Moaning Myrtle sped them on their way with a hearty guffaw .Wait till everyone finds out youve got a tail V THE VERY SECRET DIARY Hermione remained in the hospital wing for several weeks .There was a flurry of rumor about her disappearance when the rest of the school arrived back from their Christmas holidays because of course everyone thought that she had been attacked .So many students filed past the hospital wing trying to catch a glimpse of her that Madam Pomfrey took out her curtains again and placed them around Hermiones bed to spare her the shame of being seen with a furry face .Harry and Ron went to visit her every evening .When the new term started they brought her each days homework .If Id sprouted whiskers Id take a break from work said Ron tipping a stack of books onto Hermiones bedside table one evening .Dont be silly Ron Ive got to keep up said Hermione briskly .Her spirits were greatly improved by the fact that all the hair had gone from her face and her eyes were turning slowly back to brown .I dont suppose youve got any new leads ?she added in a whisper so that Madam Pomfrey couldnt hear her .Nothing said Harry gloomily .I was so sure it was Malfoy said Ron for about the hundredth time .Whats that ?asked Harry pointing to something gold sticking out from under Hermiones pillow .Just a get well card said Hermione hastily trying to poke it out of sight but Ron was too quick for her .He pulled it out flicked it open and read aloud To Miss Granger wishing you a speedy recovery from your concerned teacher Professor Gilderoy Lockhart Order of Merlin Third Class Honorary Member of the Dark Force Defense League and fivetime winner of Witch Weeklys MostCharmingSmile Award .Ron looked up at Hermione disgusted .You sleep with this under your pillow ?But Hermione was spared answering by Madam Pomfrey sweeping over with her evening dose of medicine .Is Lockhart the smarmiest bloke youve ever met or what ?Ron said to Harry as they left the infirmary and started up the stairs toward Gryffindor Tower .Snape had given them so much homework Harry thought he was likely to be in the sixth year before he finished it .Ron was just saying he wished he had asked Hermione how many rat tails you were supposed to add to a HairRaising Potion when an angry outburst from the floor above reached their ears .Thats Filch Harry muttered as they hurried up the stairs and paused out of sight listening hard .You dont think someone elses been attacked ?said Ron tensely .They stood still their heads inclined toward Filchs voice which sounded quite hysterical .even more work for me !Mopping all night like I havent got enough to do !No this is the final straw Im going to Dumbledore His footsteps receded along the outofsight corridor and they heard a distant door slam .They poked their heads around the corner .Filch had clearly been manning his usual lookout post They were once again on the spot where Mrs Norris had been attacked .They saw at a glance what Filch had been shouting about .A great flood of water stretched over half the corridor and it looked as though it was still seeping from under the door of Moaning Myrtles bathroom .Now that Filch had stopped shouting they could hear Myrtles wails echoing off the bathroom walls .Now whats up with her ?said Ron .Lets go and see said Harry and holding their robes over their ankles they stepped through the great wash of water to the door bearing its OUT OF ORDER sign ignored it as always and entered .Moaning Myrtle was crying if possible louder and harder than ever before .She seemed to be hiding down her usual toilet .It was dark in the bathroom because the candles had been extinguished in the great rush of water that had left both walls and floor soaking wet .Whats up Myrtle ?said Harry .Whos that ?glugged Myrtle miserably .Come to throw something else at me ?Harry waded across to her stall and said Why would I throw something at you ?Dont ask me Myrtle shouted emerging with a wave of yet more water which splashed onto the already sopping floor .Here I am minding my own business and someone thinks its funny to throw a book at me .But it cant hurt you if someone throws something at you said Harry reasonably .I mean itd just go right through you wouldnt it ?He had said the wrong thing .Myrtle puffed herself up and shrieked Lets all throw books at Myrtle because she cant feel it !Ten points if you can get it through her stomach !Fifty points if it goes through her head !Well ha ha ha !What a lovely game I dont think !Who threw it at you anyway ?asked Harry .I dont know .I was just sitting in the Ubend thinking about death and it fell right through the top of my head said Myrtle glaring at them .Its over there it got washed out .Harry and Ron looked under the sink where Myrtle was pointing .A small thin book lay there .It had a shabby black cover and was as wet as everything else in the bathroom .Harry stepped forward to pick it up but Ron suddenly flung out an arm to hold him back .What ?said Harry .Are you cra2y ?said Ron .It could be dangerous .Dangerous ?said Harry laughing .Come off it how could it be dangerous ?Youd be surprised said Ron who was looking apprehensively at the book .Some of the books the Ministrys confiscated Dads told me there was one that burned your eyes out .And everyone who read Sonnets of a Sorcerer spoke in limericks for the rest of their lives .And some old witch in Bath had a book that you could never stop reading !You just had to wander around with your nose in it trying to do everything onehanded .And All right Ive got the point said Harry .The little book lay on the floor nondescript and soggy .Well we wont find out unless we look at it he said and he ducked around Ron and picked it up off the floor .Harry saw at once that it was a diary and the faded year on the cover told him it was fifty years old .He opened it eagerly .On the first page he could just make out the name T .M .Riddle in smudged ink .Hang on said Ron who had approached cautiously and was looking over Harrys shoulder .I know that name .T .M .Riddle got an award for special services to the school fifty years ago .How on earth dyou know that ?said Harry in amazement .Because Filch made me polish his shield about fifty times in detention said Ron resentfully .That was the one I burped slugs all over .If youd wiped slime off a name for an hour youd remember it too .Harry peeled the wet pages apart .They were completely blank .There wasnt the faintest trace of writing on any of them not even Auntie Mabels birthday or dentist halfpast three .He never wrote in it said Harry disappointed .I wonder why someone wanted to flush it away ?said Ron curiously .Harry turned to the back cover of the book and saw the printed name of a variety store on Vauxhall Road London .He mustve been Muggleborn said Harry thoughtfully .To have bought a diary from Vauxhall Road .Well its not much use to you said Ron .He dropped his voice .Fifty points if you can get it through Myrtles nose .Harry however pocketed it .Hermione left the hospital wing dewhiskered tail less and furfree at the beginning of February .On her first evening back in Gryffindor Tower Harry showed her T .M .Riddles diary and told her the story of how they had found it .Oooh it might have hidden powers said Hermione enthusiastically taking the diary and looking at it closely .If it has its hiding them very well said Ron .Maybe its shy .I dont know why you dont chuck it Harry .I wish I knew why someone did try to chuck it said Harry .I wouldnt mind knowing how Riddle got an award for special services to Hogwarts either .Couldve been anything said Ron .Maybe he got thirty O .W .L .s or saved a teacher from the giant squid .Maybe he murdered Myrtle that wouldve done everyone a favor .But Harry could tell from the arrested look on Hermione s face that she was thinking what he was thinking .What ?said Ron looking from one to the other .Well the Chamber of Secrets was opened fifty years ago wasnt it ?he said .Thats what Malfoy said .Yeah .said Ron slowly .And this diary is fifty years old said Hermione tapping it excitedly .So ?Oh Ron wake up snapped Hermione .We know the person who opened the Chamber last time was expelled fifty years ago .We know T .M .Riddle got an award for special services to the school fifty years ago .Well what if Riddle got his special award for catching the Heir of Slytherin ?His diary would probably tell us everything where the Chamber is and how to open it and what sort of creature lives in it the person whos behind the attacks this time wouldnt want that lying around would they ?Thats a brilliant theory Hermione said Ron with just one tiny little flaw .Theres nothing written in his diary .But Hermione was pulling her wand out of her bag .It might be invisible ink !she whispered .She tapped the diary three times and said Aparecium Nothing happened .Undaunted Hermione shoved her hand back into her bag and pulled out what appeared to be a bright red eraser .Its a Revealer I got it in Diagon Alley she said .She rubbed hard on January first .Nothing happened .Im telling you theres nothing to find in there said Ron .Riddle just got a diary for Christmas and couldnt be bothered filling it in .Harry couldnt explain even to himself why he didnt just throw Riddles diary away .The fact was that even though he knew the diary was blank he kept absentmindedly picking it up and turning the pages as though it were a story he wanted to finish .And while Harry was sure he had never heard the name T .M .Riddle before it still seemed to mean something to him almost as though Riddle was a friend hed had when he was very small and had halfforgotten .But this was absurd .Hed never had friends before Hogwarts Dudley had made sure of that .Nevertheless Harry was determined to find out more about Riddle so next day at break he headed for the trophy room to examine Riddles special award accompanied by an interested Hermione and a thoroughly unconvinced Ron who told them hed seen enough of the trophy room to last him a lifetime .Riddles burnished gold shield was tucked away in a corner cabinet .It didnt carry details of why it had been given to him Good thing too or itd be even bigger and Id still be polishing it said Ron .However they did find Riddles name on an old Medal for Magical Merit and on a list of old Head Boys .He sounds like Percy said Ron wrinkling his nose in disgust .Prefect Head Boy .probably top of every class You say that like its a bad thing said Hermione in a slightly hurt voice .The sun had now begun to shine weakly on Hogwarts again .Inside the castle the mood had grown more hopeful .There had been no more attacks since those on Justin and Nearly Headless Nick and Madam Pomfrey was pleased to report that the Mandrakes were becoming moody and secretive meaning that they were fast leaving childhood .The moment their acne clears up theyll be ready for repotting again Harry heard her telling Filch kindly one afternoon .And after that it wont be long until were cutting them up and stewing them .Youll have Mrs Norris back in no time .Perhaps the Heir of Slytherin had lost his or her nerve thought Harry .It must be getting riskier and riskier to open the Chamber of Secrets with the school so alert and suspicious .Perhaps the monster whatever it was was even now settling itself down to hibernate for another fifty years .Ernie Macmillan of Hufflepuff didnt take this cheerful view .He was still convinced that Harry was the guilty one that he had given himself away at the Dueling Club .Peeves wasnt helping matters he kept popping up in the crowded corridors singing Oh Potter you rotter .now with a dance routine to match .Gilderoy Lockhart seemed to think he himself had made the attacks stop .Harry overheard him telling Professor McGonagall so while the Gryffindors were lining up for Transfiguration .I dont think therell be any more trouble Minerva he said tapping his nose knowingly and winking .I think the Chamber has been locked for good this time .The culprit must have known it was only a matter of time before I caught him .Rather sensible to stop now before I came down hard on him .You know what the school needs now is a morale booster .Wash away the memories of last term !I wont say any more just now but I think I know just the thing .He tapped his nose again and strode off .Lockharts idea of a moralebooster became clear at breakfast time on February fourteenth .Harry hadnt had much sleep because of a laterunning Quidditch practice the night before and he hurried down to the Great Hall slightly late .He thought for a moment that hed walked through the wrong doors .The walls were all covered with large lurid pink flowers .Worse still heartshaped confetti was falling from the pale blue ceiling .Harry went over to the Gryffindor table where Ron was sitting looking sickened and Hermione seemed to have been overcome with giggles .Whats going on ?Harry asked them sitting down and wiping confetti off his bacon .Ron pointed to the teachers table apparently too disgusted to speak .Lockhart wearing lurid pink robes to match the decorations was waving for silence .The teachers on either side of him were looking stonyfaced .From where he sat Harry could see a muscle going in Professor McGonagalls cheek .Snape looked as though someone had just fed him a large beaker of SkeleGro .Happy Valentines Day !Lockhart shouted .And may I thank the fortysix people who have so far sent me cards !Yes I have taken the liberty of arranging this little surprise for you all and it doesnt end here !Lockhart clapped his hands and through the doors to the entrance hall marched a dozen surlylooking dwarfs .Not just any dwarfs however .Lockhart had them all wearing golden wings and carrying harps .My friendly cardcarrying cupids !beamed Lockhart .They will be roving around the school today delivering your valentines !And the fun doesnt stop here !Im sure my colleagues will want to enter into the spirit of the occasion !Why not ask Professor Snape to show you how to whip up a Love Potion !And while youre at it Professor Flitwick knows more about Entrancing Enchantments than any wizard Ive ever met the sly old dog !Professor Flitwick buried his face in his hands .Snape was looking as though the first person to ask him for a Love Potion would be forcefed poison .Please Hermione tell me you werent one of the fortysix said Ron as they left the Great Hall for their first lesson .Hermione suddenly became very interested in searching her bag for her schedule and didnt answer .All day long the dwarfs kept barging into their classes to deliver valentines to the annoyance of the teachers and late that afternoon as the Gryffindors were walking upstairs for Charms one of the dwarfs caught up with Harry .Oy you !Arry Potter !shouted a particularly grim looking dwarf elbowing people out of the way to get to Harry .Hot all over at the thought of being given a valentine in front of a line of first years which happened to include Ginny Weasley Harry tried to escape .The dwarf however cut his way through the crowd by kicking peoples shins and reached him before hed gone two paces .Ive got a musical message to deliver to Arry Potter in person he said twanging his harp in a threatening sort of way .Not here Harry hissed trying to escape .Stay stilll grunted the dwarf grabbing hold of Harrys bag and pulling him back .Let me go !Harry snarled tugging .With a loud ripping noise his bag split in two .His books wand parchment and quill spilled onto the floor and his ink bottle smashed over everything .Harry scrambled around trying to pick it all up before the dwarf started singing causing something of a holdup in the corridor .Whats going on here ?came the cold drawling voice of Draco Malfoy .Harry started stuffing everything feverishly into his ripped bag desperate to get away before Malfoy could hear his musical valentine .Whats all this commotion ?said another familiar voice as Percy Weasley arrived .Losing his head Harry tried to make a run for it but the dwarf seized him around the knees and brought him crashing to the floor .Right he said sitting on Harrys ankles .Here is your singing valentine His eyes are as green as a fresh pickled toad His hair is as dark as a blackboard .I wish he was mine hes really divine The hero who conquered the Dark Lord .Harry would have given all the gold in Gringotts to evaporate on the spot .Trying valiantly to laugh along with everyone else he got up his feet numb from the weight of the dwarf as Percy Weasley did his best to disperse the crowd some of whom were crying with mirth .Off you go off you go the bell rang five minutes ago off to class now he said shooing some of the younger students away .And you Malfoy Harry glancing over saw Malfoy stoop and snatch up something .Leering he showed it to Crabbe and Goyle and Harry realized that hed got Riddles diary .Give that back said Harry quietly .Wonder what Potters written in this ?said Malfoy who obviously hadnt noticed the year on the cover and thought he had Harrys own diary .A hush fell over the onlookers .Ginny was staring from the diary to Harry looking terrified .Hand it over Malfoy said Percy sternly .When Ive had a look said Malfoy waving the diary tauntingly at Harry .Percy said As a school prefect but Harry had lost his temper .He pulled out his wand and shouted ExpelliarmusV and just as Snape had disarmed Lockhart so Malfoy found the diary shooting out of his hand into the air .Ron grinning broadly caught it .Harry !said Percy loudly .No magic in the corridors .Ill have to report this you know !But Harry didnt care he was oneup on Malfoy and that was worth five points from Gryffindor any day .Malfoy was looking furious and as Ginny passed him to enter her classroom he yelled spitefully after her I dont think Potter liked your valentine much !Ginny covered her face with her hands and ran into class .Snarling Ron pulled out his wand too but Harry pulled him away .Ron didnt need to spend the whole of Charms belching slugs .It wasnt until they had reached Professor Flitwicks class that Harry noticed something rather odd about Riddles diary .All his other books were drenched in scarlet ink .The diary however was as clean as it had been before the ink bottle had smashed all over it .He tried to point this out to Ron but Ron was having trouble with his wand again large purple bubbles were blossoming out of the end and he wasnt much interested in anything else .Jc Jc Jc Harry went to bed before anyone else in his dormitory that night .This was partly because he didnt think he could stand Fred and George singing His eyes are as green as a fresh pickled toad one more time and partly because he wanted to examine Riddles diary again and knew that Ron thought he was wasting his time .Harry sat on his fourposter and flicked through the blank pages not one of which had a trace of scarlet ink on it .Then he pulled a new bottle out of his bedside cabinet dipped his quill into it and dropped a blot onto the first page of the diary .The ink shone brightly on the paper for a second and then as though it was being sucked into the page vanished .Excited Harry loaded up his quill a second time and wrote My name is Harry Potter .The words shone momentarily on the page and they too sank without trace .Then at last something happened .Oozing back out of the page in his very own ink came words Harry had never written .Hello Harry Potter .My name is Tom Riddle .How did you come by my diary ?These words too faded away but not before Harry had started to scribble back .Someone tried to flush it down a toilet .He waited eagerly for Riddles reply .Lucky that I recorded my memories in some more lasting way than ink .But I always knew that there would be those who would not want this diary read .What do you mean ?Harry scrawled blotting the page in his excitement .I mean that this diary holds memories of terrible things .Things that were covered up .Things that happened at Hogwarts School of Witchcraft and Wizardry .Thats where I am now Harry wrote quickly .Im at Hogwarts and horrible stuffs been happening .Do you know anything about the Chamber of Secrets ?His heart was hammering .Riddles reply came quickly his writing becoming untidier as though he was hurrying to tell all he knew .Of course I know about the Chamber of Secrets .In my day they told us it was a legend that it did not exist .But this was a lie .In my fifth year the Chamber was opened and the monster attacked several students finally killing one .I caught the person whod opened the Chamber and he was expelled .But the headmaster Professor Dippet ashamed that such a thing had happened at Hogwarts forbade me to tell the truth .A story was given out that the girl had died in a freak accident They gave me a nice shiny engraved trophy for my trouble and warned me to keep my mouth shut But I knew it could happen again .The monster lived on and the one who had the power to release it was not imprisoned .Harry nearly upset his ink bottle in his hurry to write back .Its happening again now .There have been three attacks and no one seems to know whos behind them .Who was it last time ?I can show you if you like came Riddles reply .You dont have to take my word for it .I can take you inside my memory of the night when I caught him .Harry hesitated his quill suspended over the diary .What did Riddle mean ?How could he be taken inside somebody elses memory ?He glanced nervously at the door to the dormitory which was growing dark .When he looked back at the diary he saw fresh words forming .Let me show you .Harry paused for a fraction of a second and then wrote two letters .OK .The pages of the diary began to blow as though caught in a high wind stopping halfway through the month of June .Mouth hanging open Harry saw that the little square for June thirteenth seemed to have turned into a minuscule television screen .His hands trembling slightly he raised the book to press his eye against the little window and before he knew what was happening he was tilting forward the window was widening he felt his body leave his bed and he was pitched headfirst through the opening in the page into a whirl of color and shadow .He felt his feet hit solid ground and stood shaking as the blurred shapes around him came suddenly into focus .He knew immediately where he was .This circular room with the sleeping portraits was Dumbledores office but it wasnt Dumbledore who was sitting behind the desk .A wizened fraillooking wizard bald except for a few wisps of white hair was reading a letter by candlelight .Harry had never seen this man before .Im sorry he said shakily .I didnt mean to butt in But the wizard didnt look up .He continued to read frowning slightly .Harry drew nearer to his desk and stammered Er Ill just go shall I ?Still the wizard ignored him .He didnt seem even to have heard him .Thinking that the wizard might be deaf Harry raised his voice .Sorry I disturbed you .Ill go now he halfshouted .The wizard folded up the letter with a sigh stood up walked past Harry without glancing at him and went to draw the curtains at his window .The sky outside the window was rubyred it seemed to be sunset .The wizard went back to the desk sat down and twiddled his thumbs watching the door .Harry looked around the office .No Fawkes the phoenix no whirring silver contraptions .This was Hogwarts as Riddle had known it meaning that this unknown wizard was headmaster not Dumbledore and he Harry was little more than a phantom completely invisible to the people of fifty years ago .There was a knock on the office door .Enter said the old wizard in a feeble voice .A boy of about sixteen entered taking off his pointed hat .A silver prefects badge was glinting on his chest .He was much taller than Harry but he too had jet black hair .Ah Riddle said the headmaster .You wanted to see me Professor Dippet ?said Riddle .He looked nervous .Sit down said Dippet .Ive just been reading the letter you sent me .Oh said Riddle .He sat down gripping his hands together very tightly .My dear boy said Dippet kindly I cannot possibly let you stay at school over the summer .Surely you want to go home for the holidays ?No said Riddle at once .Id much rather stay at Hogwarts than go back to that to that You live in a Muggle orphanage during the holidays I believe ?said Dippet curiously .Yes sir said Riddle reddening slightly .You are Muggleborn ?Halfblood sir said Riddle .Muggle father witch mother .And are both your parents ?My mother died just after I was born sir .They told me at the orphanage she lived just long enough to name me Tom after my father Marvolo after my grandfather .Dippet clucked his tongue sympathetically .The thing is Tom he sighed special arrangements might have been made for you but in the current circumstances .You mean all these attacks sir ?said Riddle and Harrys heart leapt and he moved closer scared of missing anything .Precisely said the headmaster .My dear boy you must see how foolish it would be of me to allow you to remain at the castle when term ends .Particularly in light of the recent tragedy .the death of that poor little girl .You will be safer by far at your orphanage .As a matter of fact the Ministry of Magic is even now talking about closing the school .We are no nearer locating the er source of all this unpleasantness .Riddles eyes had widened .Sir if the person was caught if it all stopped What do you mean ?said Dippet with a squeak in his voice sitting up in his chair .Riddle do you mean you know something about these attacks ?No sir said Riddle quickly .But Harry was sure it was the same sort of no that he himself had given Dumbledore .Dippet sank back looking faintly disappointed .You may go Tom .Riddle slid off his chair and slouched out of the room .Harry followed him .Down the moving spiral staircase they went emerging next to the gargoyle in the darkening corridor .Riddle stopped and so did Harry watching him .Harry could tell that Riddle was doing some serious thinking .He was biting his lip his forehead furrowed .Then as though he had suddenly reached a decision he hurried off Harry gliding noiselessly behind him .They didnt see another person until they reached the entrance hall when a tall wizard with long sweeping auburn hair and a beard called to Riddle from the marble staircase .What are you doing wandering around this late Tom ?Harry gaped at the wizard .He was none other than a fiftyyearyounger Dumbledore .I had to see the headmaster sir said Riddle .Well hurry off to bed said Dumbledore giving Riddle exactly the kind of penetrating stare Harry knew so well .Best not to roam the corridors these days .Not since .He sighed heavily bade Riddle good night and strode off .Riddle watched him walk out of sight and then moving quickly headed straight down the stone steps to the dungeons with Harry in hot pursuit .But to Harrys disappointment Riddle led him not into a hidden passageway or a secret tunnel but to the very dungeon in which Harry had Potions with Snape .The torches hadnt been lit and when Riddle pushed the door almost closed Harry could only just see him standing stockstill by the door watching the passage outside .It felt to Harry that they were there for at least an hour .All he could see was the figure of Riddle at the door staring through the crack waiting like a statue .And just when Harry had stopped feeling expectant and tense and started wishing he could return to the present he heard something move beyond the door .Someone was creeping along the passage .He heard whoever it was pass the dungeon where he and Riddle were hidden .Riddle quiet as a shadow edged through the door and followed Harry tiptoeing behind him forgetting that he couldnt be heard .For perhaps five minutes they followed the footsteps until Riddle stopped suddenly his head inclined in the direction of new noises .Harry heard a door creak open and then someone speaking in a hoarse whisper .Cmon .gotta get yeh outta here .Cmon now .in the box .There was something familiar about that voice .Riddle suddenly jumped around the corner .Harry stepped out behind him .He could see the dark outline of a huge boy who was crouching in front of an open door a very large box next to it .Evening Rubeus said Riddle sharply .The boy slammed the door shut and stood up .What yer doin down here Tom ?Riddle stepped closer .Its all over he said .Im going to have to turn you in Rubeus .Theyre talking about closing Hogwarts if the attacks dont stop .What dyeh I dont think you meant to kill anyone .But monsters dont make good pets .I suppose you just let it out for exercise and It never killed no one !said the large boy backing against the closed door .From behind him Harry could hear a funny rustling and clicking .Come on Rubeus said Riddle moving yet closer .The dead girls parents will be here tomorrow .The least Hogwarts can do is make sure that the thing that killed their daughter is slaughtered .It wasnt him !roared the boy his voice echoing in the dark passage .He wouldn !He never !Stand aside said Riddle drawing out his wand .His spell lit the corridor with a sudden flaming light .The door behind the large boy flew open with such force it knocked him into the wall opposite .And out of it came something that made Harry let out a long piercing scream unheard by anyone A vast lowslung hairy body and a tangle of black legs a gleam of many eyes and a pair of razorsharp pincers Riddle raised his wand again but he was too late .The thing bowled him over as it scuttled away tearing up the corridor and out of sight .Riddle scrambled to his feet looking after it he raised his wand but the huge boy leapt on him seized his wand and threw him back down yelling NOOOOOOO !The scene whirled the darkness became complete Harry felt himself falling and with a crash he landed spreadeagled on his fourposter in the Gryffindor dormitory Riddles diary lying open on his stomach .Before he had had time to regain his breath the dormitory door opened and Ron came in .There you are he said .Harry sat up .He was sweating and shaking .Whats up ?said Ron looking at him with concern .It was Hagrid Ron .Hagrid opened the Chamber of Secrets fifty years ago .CORNELIUS FUDGE Harry Ron and Hermione had always known that Hagrid had an unfortunate liking for large and monstrous creatures .During their first year at Hogwarts he had tried to raise a dragon in his little wooden house and it would be a long time before they forgot the giant threeheaded dog hed christened Fluffy .And if as a boy Hagrid had heard that a monster was hidden somewhere in the castle Harry was sure hed have gone to any lengths for a glimpse of it .Hed probably thought it was a shame that the monster had been cooped up so long and thought it deserved the chance to stretch its many legs Harry could just imagine the thirteenyearold Hagrid trying to fit a leash and collar on it .But he was equally certain that Hagrid would never have meant to kill anybody .Harry half wished he hadnt found out how to work Riddles diary .Again and again Ron and Hermione made him recount what hed seen until he was heartily sick of telling them and sick of the long circular conversations that followed .Riddle might have got the wrong person said Hermione .Maybe it was some other monster that was attacking people .How many monsters dyou think this place can hold ?Ron asked dully .We always knew Hagrid had been expelled said Harry miserably .And the attacks mustve stopped after Hagrid was kicked out .Otherwise Riddle wouldnt have got his award .Ron tried a different tack .Riddle does sound like Percy who asked him to squeal on Hagrid anyway ?But the monster had killed someone Ron said Hermione .And Riddle was going to go back to some Muggle orphanage if they closed Hogwarts said Harry .I dont blame him for wanting to stay here .You met Hagrid down Knockturn Alley didnt you Harry ?He was buying a FleshEating Slug Repellent said Harry quickly .The three of them fell silent .After a long pause Hermione voiced the knottiest question of all in a hesitant voice .Do you think we should go and ask Hagrid about it all ?Thatd be a cheerful visit said Ron . ‘Hello Hagrid .Tell us have you been setting anything mad and hairy loose in the castle lately ?In the end they decided that they would not say anything to Hagrid unless there was another attack and as more and more days went by with no whisper from the disembodied voice they became hopeful that they would never need to talk to him about why he had been expelled .It was now nearly four months since Justin and Nearly Headless Nick had been Petrified and nearly everybody seemed to think that the attacker whoever it was had retired for good .Peeves had finally got bored of his Oh Potter you rotter song Ernie Macmillan asked Harry quite politely to pass a bucket of leaping toadstools in Herbology one day and in March several of the Mandrakes threw a loud and raucous party in greenhouse three .This made Professor Sprout very happy .The moment they start trying to move into each others pots well know theyre fully mature she told Harry .Then well be able to revive those poor people in the hospital wing .The second years were given something new to think about during their Easter holidays .The time had come to choose their subjects for the third year a matter that Hermione at least took very seriously .It could affect our whole future she told Harry and Ron as they pored over lists of new subjects marking them with checks .I just want to give up Potions said Harry .We cant said Ron gloomily .We keep all our old subjects or Idve ditched Defense Against the Dark Arts .But thats very important !said Hermione shocked .Not the way Lockhart teaches it said Ron .I havent learned anything from him except not to set pixies loose .Neville Longbottom had been sent letters from all the witches and wizards in his family all giving him different advice on what to choose .Confused and worried he sat reading the subject lists with his tongue poking out asking people whether they thought Arithmancy sounded more difficult than the study of Ancient Runes .Dean Thomas who like Harry had grown up with Muggles ended up closing his eyes and jabbing his wand at the list then picking the subjects it landed on .Hermione took nobodys advice but signed up for everything .Harry smiled grimly to himself at the thought of what Uncle Vernon and Aunt Petunia would say if he tried to discuss his career in wizardry with them .Not that he didnt get any guidance Percy Weasley was eager to share his experience .Depends where you want to go Harry he said .Its never too early to think about the future so Id recommend Divination .People say Muggle Studies is a soft option but I personally think wizards should have a thorough understanding of the nonmagical community particularly if theyre thinking of working in close contact with them look at my father he has to deal with Muggle business all the time .My brother Charlie was always more of an outdoor type so he went for Care of Magical Creatures .Play to your strengths Harry .But the only thing Harry felt he was really good at was Quidditch .In the end he chose the same new subjects as Ron feeling that if he was lousy at them at least hed have someone friendly to help him .Gryffindors next Quidditch match would be against Hufflepuff .Wood was insisting on team practices every night after dinner so that Harry barely had time for anything but Quidditch and homework .However the training sessions were getting better or at least drier and the evening before Saturdays match he went up to his dormitory to drop off his broomstick feeling Gryffindors chances for the Quidditch Cup had never been better .But his cheerful mood didnt last long .At the top of the stairs to the dormitory he met Neville Longbottom who was looking frantic .Harry I dont know who did it I just found Watching Harry fearfully Neville pushed open the door .The contents of Harrys trunk had been thrown everywhere .His cloak lay ripped on the floor .The bedclothes had been pulled off his fourposter and the drawer had been pulled out of his bedside cabinet the contents strewn over the mattress .Harry walked over to the bed openmouthed treading on a few loose pages of Travels with Trolls .As he and Neville pulled the blankets back onto his bed Ron Dean and Seamus came in .Dean swore loudly .What happened Harry ?No idea said Harry .But Ron was examining Harrys robes .All the pockets were hanging out .Someones been looking for something said Ron .Is there anything missing ?Harry started to pick up all his things and throw them into his trunk .It was only as he threw the last of the Lockhart books back into it that he realized what wasnt there .Riddles diarys gone he said in an undertone to Ron .What ?Harry jerked his head toward the dormitory door and Ron followed him out .They hurried down to the Gryffindor common room which was halfempty and joined Hermione who was sitting alone reading a book called Ancient Runes Made Easy .Hermione looked aghast at the news .But only a Gryffindor could have stolen nobody else knows our password Exactly said Harry .They woke the next day to brilliant sunshine and a light refreshing breeze .Perfect Quidditch conditions !said Wood enthusiastically at the Gryffindor table loading the teams plates with scrambled eggs .Harry buck up there you need a decent breakfast .Harry had been staring down the packed Gryffindor table wondering if the new owner of Riddles diary was right in front of his eyes .Hermione had been urging him to report the robbery but Harry didnt like the idea .Hed have to tell a teacher all about the diary and how many people knew why Hagrid had been expelled fifty years ago ?He didnt want to be the one who brought it all up again .As he left the Great Hall with Ron and Hermione to go and collect his Quidditch things another very serious worry was added to Harrys growing list .He had just set foot on the marble staircase when he heard it yet again Kill this time .let me rip .tear .He shouted aloud and Ron and Hermione both jumped away from him in alarm .The voice !said Harry looking over his shoulder .I just heard it again didnt you ?Ron shook his head wideeyed .Hermione however clapped a hand to her forehead .Harry I think Ive just understood something !Ive got to go to the library !And she sprinted away up the stairs .What does she understand ?said Harry distractedly still looking around trying to tell where the voice had come from .Loads more than I do said Ron shaking his head .But whys she got to go to the library ?Because thats what Hermione does said Ron shrugging .When in doubt go to the library .Harry stood irresolute trying to catch the voice again but people were now emerging from the Great Hall behind him talking loudly exiting through the front doors on their way to the Quidditch pitch .Youd better get moving said Ron .Its nearly eleven the match Harry raced up to Gryffindor Tower collected his Nimbus Two Thousand and joined the large crowd swarming across the grounds but his mind was still in the castle along with the bodiless voice and as he pulled on his scarlet robes in the locker room his only comfort was that everyone was now outside to watch the game .The teams walked onto the field to tumultuous applause .Oliver Wood took off for a warmup flight around the goal posts Madam Hooch released the balls .The Hufflepuffs who played in canary yellow were standing in a huddle having a lastminute discussion of tactics .Harry was just mounting his broom when Professor McGonagall came half marching half running across the pitch carrying an enormous purple megaphone .Harrys heart dropped like a stone .This match has been canceled Professor McGonagall called through the megaphone addressing the packed stadium .There were boos and shouts .Oliver Wood looking devastated landed and ran toward Professor McGonagall without getting off his broomstick .But Professor !he shouted .Weve got to play the Cup Gryffindor Professor McGonagall ignored him and continued to shout through her megaphone All students are to make their way back to the House common rooms where their Heads of Houses will give them further information .As quickly as you can please !Then she lowered the megaphone and beckoned Harry over to her .Potter I think youd better come with me .Wondering how she could possibly suspect him this time Harry saw Ron detach himself from the complaining crowd he came running up to them as they set off toward the castle .To Harrys surprise Professor McGonagall didnt object .Yes perhaps youd better come too Weasley .Some of the students swarming around them were grumbling about the match being canceled others looked worried .Harry and Ron followed Professor McGonagall back into the school and up the marble staircase .But they werent taken to anybodys office this time .This will be a bit of a shock said Professor McGonagall in a surprisingly gentle voice as they approached the infirmary .There has been another attack .another double attack .Harrys insides did a horrible somersault .Professor McGonagall pushed the door open and he and Ron entered .Madam Pomfrey was bending over a sixthyear girl with long curly hair .Harry recognized her as the Ravenclaw theyd accidentally asked for directions to the Slytherin common room .And on the bed next to her was HermioneY Ron groaned .Hermione lay utterly still her eyes open and glassy .They were found near the library said Professor McGonagall .I dont suppose either of you can explain this ?It was on the floor next to them .She was holding up a small circular mirror .Harry and Ron shook their heads both staring at Hermione .I will escort you back to Gryffindor Tower said Professor McGonagall heavily .I need to address the students in any case .All students will return to their House common rooms by six oclock in the evening .No student is to leave the dormitories after that time .You will be escorted to each lesson by a teacher .No student is to use the bathroom unaccompanied by a teacher .All further Quidditch training and matches are to be postponed .There will be no more evening activities .The Gryffindors packed inside the common room listened to Professor McGonagall in silence .She rolled up the parchment from which she had been reading and said in a somewhat choked voice I need hardly add that I have rarely been so distressed .It is likely that the school will be closed unless the culprit behind these attacks is caught .I would urge anyone who thinks they might know anything about them to come forward .She climbed somewhat awkwardly out of the portrait hole and the Gryffindors began talking immediately .Thats two Gryffindors down not counting a Gryffindor ghost one Ravenclaw and one Hufflepuff said the Weasley twins friend Lee Jordan counting on his fingers .Havent any of the teachers noticed that the Slytherins are all safe ?Isnt it obvious all this stuffs coming from Slytherin ?The Heir of Slytherin the monster of Slytherin why dont they just chuck all the Slytherins out ?he roared to nods and scattered applause .Percy Weasley was sitting in a chair behind Lee but for once he didnt seem keen to make his views heard .He was looking pale and stunned .Percys in shock George told Harry quietly .That Ravenclaw girl Penelope Clearwater shes a prefect .I dont think he thought the monster would dare attack a prefect .But Harry was only halflistening .He didnt seem to be able to get rid of the picture of Hermione lying on the hospital bed as though carved out of stone .And if the culprit wasnt caught soon he was looking at a lifetime back with the Dursleys .Tom Riddle had turned Hagrid in because he was faced with the prospect of a Muggle orphanage if the school closed .Harry now knew exactly how he had felt .Whatre we going to do ?said Ron quietly in Harrys ear .Dyou think they suspect Hagrid ?Weve got to go and talk to him said Harry making up his mind .I cant believe its him this time but if he set the monster loose last time hell know how to get inside the Chamber of Secrets and thats a start .But McGonagall said weve got to stay in our tower unless were in class I think said Harry more quietly still its time to get my dads old cloak out again .Harry had inherited just one thing from his father a long and silvery Invisibility Cloak .It was their only chance of sneaking out of the school to visit Hagrid without anyone knowing about it .They went to bed at the usual time waited until Neville Dean and Seamus had stopped discussing the Chamber of Secrets and finally fallen asleep then got up dressed again and threw the cloak over themselves .The journey through the dark and deserted castle corridors wasnt enjoyable .Harry who had wandered the castle at night several times before had never seen it so crowded after sunset .Teachers prefects and ghosts were marching the corridors in pairs staring around for any unusual activity .Their Invisibility Cloak didnt stop them making any noise and there was a particularly tense moment when Ron stubbed his toe only yards from the spot where Snape stood standing guard .Thankfully Snape sneezed at almost exactly the moment Ron swore .It was with relief that they reached the oak front doors and eased them open .It was a clear starry night .They hurried toward the lit windows of Hagrid s house and pulled off the cloak only when they were right outside his front door .Seconds after they had knocked Hagrid flung it open .They found themselves facetoface with him aiming a crossbow at them .Fang the boarhound barked loudly behind him .Oh he said lowering the weapon and staring at them .What re you two doin here ?Whats that for ?said Harry pointing at the crossbow as they stepped inside .Nothin nothin Hagrid muttered .Ive bin expectin doesn matter Sit down Ill make tea He hardly seemed to know what he was doing .He nearly extinguished the fire spilling water from the kettle on it and then smashed the teapot with a nervous jerk of his massive hand .Are you okay Hagrid ?said Harry .Did you hear about Hermione ?Oh I heard all righ said Hagrid a slight break in his voice .He kept glancing nervously at the windows .He poured them both large mugs of boiling water he had forgotten to add tea bags and was just putting a slab of fruitcake on a plate when there was a loud knock on the door .Hagrid dropped the fruitcake .Harry and Ron exchanged panicstricken looks then threw the Invisibility Cloak back over themselves and retreated into a corner .Hagrid checked that they were hidden seized his crossbow and flung open his door once more .Good evening Hagrid .It was Dumbledore .He entered looking deadly serious and was followed by a second very odd looking man .The stranger had rumpled gray hair and an anxious expression and was wearing a strange mixture of clothes a pinstriped suit a scarlet tie a long black cloak and pointed purple boots .Under his arm he carried a limegreen bowler .Thats Dads boss !Ron breathed .Cornelius Fudge the Minister of Magic !Harry elbowed Ron hard to make him shut up .Hagrid had gone pale and sweaty .He dropped into one of his chairs and looked from Dumbledore to Cornelius Fudge .Bad business Hagrid said Fudge in rather clipped tones .Very bad business .Had to come .Four attacks on Muggleborns .Thingsve gone far enough .Ministrys got to act .I never said Hagrid looking imploringly at Dumbledore .You know I never Professor Dumbledore sir I want it understood Cornelius that Hagrid has my full confidence said Dumbledore frowning at Fudge .Look Albus said Fudge uncomfortably .Hagrids records against him .Ministrys got to do something the school governors have been in touch Yet again Cornelius I tell you that taking Hagrid away will not help in the slightest said Dumbledore .His blue eyes were full of a fire Harry had never seen before .Look at it from my point of view said Fudge fidgeting with his bowler .Im under a lot of pressure .Got to be seen to be doing something .If it turns out it wasnt Hagrid hell be back and no more said .But Ive got to take him .Got to .Wouldnt be doing my duty Take me ?said Hagrid who was trembling .Take me where ?For a short stretch only said Fudge not meeting Hagrid s eyes .Not a punishment Hagrid more a precaution .If someone else is caught youll be let out with a full apology Not Azkaban ?croaked Hagrid .Before Fudge could answer there was another loud rap on the door .Dumbledore answered it .It was Harrys turn for an elbow in the ribs hed let out an audible gasp .Mr Lucius Malfoy strode into Hagrids hut swathed in a long black traveling cloak smiling a cold and satisfied smile .Fang started to growl .Already here Fudge he said approvingly .Good good .Whatre you doin here ?said Hagrid furiously .Get outta my house !My dear man please believe me I have no pleasure at all in being inside your er dyou call this a house ?said Lucius Malfoy sneering as he looked around the small cabin .I simply called at the school and was told that the headmaster was here .And what exactly did you want with me Lucius ?said Dumbledore .He spoke politely but the fire was still blazing in his blue eyes .Dreadful thing Dumbledore said Malfoy lazily taking out a long roll of parchment but the governors feel its time for you to step aside .This is an Order of Suspension youll find all twelve signatures on it .Im afraid we feel youre losing your touch .How many attacks have there been now ?Two more this afternoon wasnt it ?At this rate therell be no Muggleborns left at Hogwarts and we all know what an awful loss that would be to the school .Oh now see here Lucius said Fudge looking alarmed Dumbledore suspended no no last thing we want just now The appointment or suspension of the headmaster is a matter for the governors Fudge said Mr Malfoy smoothly .And as Dumbledore has failed to stop these attacks See here Malfoy if Dumbledore cant stop them said Fudge whose upper lip was sweating now I mean to say who can ?That remains to be seen said Mr Malfoy with a nasty smile .But as all twelve of us have voted Hagrid leapt to his feet his shaggy black head grazing the ceiling .An how many did yeh have ter threaten an blackmail before they agreed Malfoy eh ?he roared .Dear dear you know that temper of yours will lead you into trouble one of these days Hagrid said Mr Malfoy .I would advise you not to shout at the Azkaban guards like that .They wont like it at all .Yeh can take Dumbledore !yelled Hagrid making Fang the boarhound cower and whimper in his basket .Take him away an the Muggleborns won stand a chance !Therell be killin next !Calm yourself Hagrid said Dumbledore sharply .He looked at Lucius Malfoy .If the governors want my removal Lucius I shall of course step aside But stuttered Fudge .iVo !growled Hagrid .Dumbledore had not taken his bright blue eyes off Lucius Malfoys cold gray ones .However said Dumbledore speaking very slowly and clearly so that none of them could miss a word you will find that I will only truly have left this school when none here are loyal to me .You will also find that help will always be given at Hogwarts to those who ask for it .For a second Harry was almost sure Dumbledores eyes flickered toward the corner where he and Ron stood hidden .Admirable sentiments said Malfoy bowing .We shall all miss your er highly individual way of running things Albus and only hope that your successor will manage to prevent any ah killins .He strode to the cabin door opened it and bowed Dumbledore out .Fudge fiddling with his bowler waited for Hagrid to go ahead of him but Hagrid stood his ground took a deep breath and said carefully If anyone wanted ter find out some stuff all theyd have ter do would be ter follow the spiders .Thatd lead em right !Thats all Im sayin .Fudge stared at him in amazement .All right Im cornin said Hagrid pulling on his moleskin overcoat .But as he was about to follow Fudge through the door he stopped again and said loudly An someonell need ter feed Fang while Im away .The door banged shut and Ron pulled off the Invisibility Cloak .Were in trouble now he said hoarsely .No Dumbledore .They might as well close the school tonight .Therell be an attack a day with him gone .Fang started howling scratching at the closed door .ARAGOG Summer was creeping over the grounds around the castle sky and lake alike turned periwinkle blue and flowers large as cabbages burst into bloom in the greenhouses .But with no Hagrid visible from the castle windows striding the grounds with Fang at his heels the scene didnt look right to Harry no better in fact than the inside of the castle where things were so horribly wrong .Harry and Ron had tried to visit Hermione but visitors were now barred from the hospital wing .Were taking no more chances Madam Pomfrey told them severely through a crack in the infirmary door .No Im sorry theres every chance the attacker might come back to finish these people off .With Dumbledore gone fear had spread as never before so that the sun warming the castle walls outside seemed to stop at the mullioned windows .There was barely a face to be seen in the school that didnt look worried and tense and any laughter that rang through the corridors sounded shrill and unnatural and was quickly stifled .Harry constantly repeated Dumbledores final words to himself .I will only truly have left this school when none here are loyal to me .Help will always be given at Hog warts to those who ask for it .But what good were these words ?Who exactly were they supposed to ask for help when everyone was just as confused and scared as they were ?Hagrids hint about the spiders was far easier to understand the trouble was there didnt seem to be a single spider left in the castle to follow .Harry looked everywhere he went helped rather reluctantly by Ron .They were hampered of course by the fact that they werent allowed to wander off on their own but had to move around the castle in a pack with the other Gryffindors .Most of their fellow students seemed glad that they were being shepherded from class to class by teachers but Harry found it very irksome .One person however seemed to be thoroughly enjoying the atmosphere of terror and suspicion .Draco Malfoy was strutting around the school as though he had just been appointed Head Boy .Harry didnt realize what he was so pleased about until the Potions lesson about two weeks after Dumbledore and Hagrid had left when sitting right behind Malfoy Harry overheard him gloating to Crabbe and Goyle .I always thought Father might be the one who got rid of Dumbledore he said not troubling to keep his voice down .I told you he thinks Dumbledores the worst headmaster the schools ever had .Maybe well get a decent headmaster now .Someone who wont want the Chamber of Secrets closed .McGonagall wont last long shes only filling in .Snape swept past Harry making no comment about Hermiones empty seat and cauldron .Sir said Malfoy loudly .Sir why dont you apply for the headmasters job ?Now now Malfoy said Snape though he couldnt suppress a thinlipped smile .Professor Dumbledore has only been suspended by the governors .I daresay hell be back with us soon enough .Yeah right said Malfoy smirking .I expect youd have Fathers vote sir if you wanted to apply for the job Ill tell Father youre the best teacher here sir Snape smirked as he swept off around the dungeon fortunately not spotting Seamus Finnigan who was pretending to vomit into his cauldron .Im quite surprised the Mudbloods havent all packed their bags by now Malfoy went on .Bet you five Galleons the next one dies .Pity it wasnt Granger The bell rang at that moment which was lucky at Malfoys last words Ron had leapt off his stool and in the scramble to collect bags and books his attempts to reach Malfoy went unnoticed .Let me at him Ron growled as Harry and Dean hung onto his arms .I dont care I dont need my wand Im going to kill him with my bare hands Hurry up Ive got to take you all to Herbology barked Snape over the classs heads and off they marched with Harry Ron and Dean bringing up the rear Ron still trying to get loose .It was only safe to let go of him when Snape had seen them out of the castle and they were making their way across the vegetable patch toward the greenhouses .The Herbology class was very subdued there were now two missing from their number Justin and Hermione .Professor Sprout set them all to work pruning the Abyssinian Shrivelfigs .Harry went to tip an armful of withered stalks onto the compost heap and found himself facetoface with Ernie Macmillan .Ernie took a deep breath and said very formally I just want to say Harry that Im sorry I ever suspected you .I know youd never attack Hermione Granger and I apologize for all the stuff I said .Were all in the same boat now and well He held out a pudgy hand and Harry shook it .Ernie and his friend Hannah came to work at the same Shrivelfig as Harry and Ron .That Draco Malfoy character said Ernie breaking off dead twigs he seems very pleased about all this doesnt he ?Dyou know I think he might be Slytherins heir .Thats clever of you said Ron who didnt seem to have forgiven Ernie as readily as Harry .Do you think its Malfoy Harry ?Ernie asked .No said Harry so firmly that Ernie and Hannah stared .A second later Harry spotted something .Several large spiders were scuttling over the ground on the other side of the glass moving in an unnaturally straight line as though taking the shortest route to a prearranged meeting .Harry hit Ron over the hand with his pruning shears .Ouch What re you Harry pointed out the spiders following their progress with his eyes screwed up against the sun .Oh yeah said Ron trying and failing to look pleased .But we cant follow them now Ernie and Hannah were listening curiously .Harrys eyes narrowed as he focused on the spiders .If they pursued their fixed course there could be no doubt about where they would end up .Looks like theyre heading for the Forbidden Forest .And Ron looked even unhappier about that .At the end of the lesson Professor Sprout escorted the class to their Defense Against the Dark Arts lesson .Harry and Ron lagged behind the others so they could talk out of earshot .Well have to use the Invisibility Cloak again Harry told Ron .We can take Fang with us .Hes used to going into the forest with Hagrid he might be some help .Right said Ron who was twirling his wand nervously in his fingers .Er arent there arent there supposed to be werewolves in the forest ?he added as they took their usual places at the back of Lockharts classroom .Preferring not to answer that question Harry said There are good things in there too .The centaurs are all right and the unicorns .Ron had never been into the Forbidden Forest before .Harry had entered it only once and had hoped never to do so again .Lockhart bounded into the room and the class stared at him .Every other teacher in the place was looking grimmer than usual but Lockhart appeared nothing short of buoyant .Come now he cried beaming around him .Why all these long faces ?People swapped exasperated looks but nobody answered .Dont you people realize said Lockhart speaking slowly as though they were all a bit dim the danger has passed !The culprit has been taken away Says who ?said Dean Thomas loudly .My dear young man the Minister of Magic wouldnt have taken Hagrid if he hadnt been one hundred percent sure that he was guilty said Lockhart in the tone of someone explaining that one and one made two .Oh yes he would said Ron even more loudly than Dean .I flatter myself I know a touch more about Hagrid s arrest than you do Mr Weasley said Lockhart in a selfsatisfied tone .Ron started to say that he didnt think so somehow but stopped in midsentence when Harry kicked him hard under the desk .We werent there remember ?Harry muttered .But Lockharts disgusting cheeriness his hints that he had always thought Hagrid was no good his confidence that the whole business was now at an end irritated Harry so much that he yearned to throw Gadding with Ghouls right in Lockharts stupid face .Instead he contented himself with scrawling a note to Ron Lets do it tonight Ron read the message swallowed hard and looked sideways at the empty seat usually filled by Hermione .The sight seemed to stiffen his resolve and he nodded .The Gryffindor common room was always very crowded these days because from six oclock onward the Gryffindors had nowhere else to go .They also had plenty to talk about with the result that the common room often didnt empty until past midnight .Harry went to get the Invisibility Cloak out of his trunk right after dinner and spent the evening sitting on it waiting for the room to clear .Fred and George challenged Harry and Ron to a few games of Exploding Snap and Ginny sat watching them very subdued in Hermione s usual chair .Harry and Ron kept losing on purpose trying to finish the games quickly but even so it was well past midnight when Fred George and Ginny finally went to bed .Harry and Ron waited for the distant sounds of two dormitory doors closing before seizing the cloak throwing it over themselves and climbing through the portrait hole .It was another difficult journey through the castle dodging all the teachers .At last they reached the entrance hall slid back the lock on the oak front doors squeezed between them trying to stop any creaking and stepped out into the moonlit grounds .Course said Ron abruptly as they strode across the black grass we might get to the forest and find theres nothing to follow .Those spiders might notve been going there at all .I know it looked like they were moving in that sort of general direction but .His voice trailed away hopefully .They reached Hagrids house sad and sorrylooking with its blank windows .When Harry pushed the door open Fang went mad with joy at the sight of them .Worried he might wake everyone at the castle with his deep booming barks they hastily fed him treacle toffee from a tin on the mantelpiece which glued his teeth together .Harry left the Invisibility Cloak on Hagrids table .There would be no need for it in the pitchdark forest .Cmon Fang were going for a walk said Harry patting his leg and Fang bounded happily out of the house behind them dashed to the edge of the forest and lifted his leg against a large sycamore tree .Harry took out his wand murmured Lumos and a tiny light appeared at the end of it just enough to let them watch the path for signs of spiders .Good thinking said Ron .Id light mine too but you know itd probably blow up or something .Harry tapped Ron on the shoulder pointing at the grass .Two solitary spiders were hurrying away from the wandlight into the shade of the trees .Okay Ron sighed as though resigned to the worst Im ready .Lets go .So with Fang scampering around them sniffing tree roots and leaves they entered the forest .By the glow of Harrys wand they followed the steady trickle of spiders moving along the path .They walked behind them for about twenty minutes not speaking listening hard for noises other than breaking twigs and rustling leaves .Then when the trees had become thicker than ever so that the stars overhead were no longer visible and Harrys wand shone alone in the sea of dark they saw their spider guides leaving the path .Harry paused trying to see where the spiders were going but everything outside his little sphere of light was pitchblack .He had never been this deep into the forest before .He could vividly remember Hagrid advising him not to leave the forest path last time hed been in here .But Hagrid was miles away now probably sitting in a cell in Azkaban and he had also said to follow the spiders .Something wet touched Harrys hand and he jumped backward crushing Rons foot but it was only Fangs nose .What dyou reckon ?Harry said to Ron whose eyes he could just make out reflecting the light from his wand .Weve come this far said Ron .So they followed the darting shadows of the spiders into the trees .They couldnt move very quickly now there were tree roots and stumps in their way barely visible in the near blackness .Harry could feel Fangs hot breath on his hand .More than once they had to stop so that Harry could crouch down and find the spiders in the wandlight .They walked for what seemed like at least half an hour their robes snagging on lowslung branches and brambles .After a while they noticed that the ground seemed to be sloping downward though the trees were as thick as ever .Then Fang suddenly let loose a great echoing bark making both Harry and Ron jump out of their skins .What ?said Ron loudly looking around into the pitchdark and gripping Harrys elbow very hard .Theres something moving over there Harry breathed .Listen .sounds like something big .They listened .Some distance to their right the something big was snapping branches as it carved a path through the trees .Oh no said Ron .Oh no oh no oh Shut up said Harry frantically .Itll hear you .Hear me ?said Ron in an unnaturally high voice .Its already heard Fang !The darkness seemed to be pressing on their eyeballs as they stood terrified waiting .There was a strange rumbling noise and then silence .What dyou think its doing ?said Harry .Probably getting ready to pounce said Ron .They waited shivering hardly daring to move .Dyou think its gone ?Harry whispered .Dunno Then to their right came a sudden blaze of light so bright in the darkness that both of them flung up their hands to shield their eyes .Fang yelped and tried to run but got lodged in a tangle of thorns and yelped even louder .Harry !Ron shouted his voice breaking with relief .Harry its our car !What ?Come on !Harry blundered after Ron toward the light stumbling and tripping and a moment later they had emerged into a clearing .Mr Weasleys car was standing empty in the middle of a circle of thick trees under a roof of dense branches its headlights ablaze .As Ron walked openmouthed toward it it moved slowly toward him exactly like a large turquoise dog greeting its owner .Its been here all the time !said Ron delightedly walking around the car .Look at it .The forests turned it wild .The sides of the car were scratched and smeared with mud .Apparently it had taken to trundling around the forest on its own .Fang didnt seem at all keen on it he kept close to Harry who could feel him quivering .His breathing slowing down again Harry stuffed his wand back into his robes .And we thought it was going to attack us !said Ron leaning against the car and patting it .I wondered where it had gone !Harry squinted around on the floodlit ground for signs of more spiders but they had all scuttled away from the glare of the headlights .Weve lost the trail he said .Cmon lets go and find them .Ron didnt speak .He didnt move .His eyes were fixed on a point some ten feet above the forest floor right behind Harry .His face was livid with terror .Harry didnt even have time to turn around .There was a loud clicking noise and suddenly he felt something long and hairy seize him around the middle and lift him off the ground so that he was hanging facedown .Struggling terrified he heard more clicking and saw Rons legs leave the ground too heard Fang whimpering and howling next moment he was being swept away into the dark trees .Head hanging Harry saw that what had hold of him was marching on six immensely long hairy legs the front two clutching him tightly below a pair of shining black pincers .Behind him he could hear another of the creatures no doubt carrying Ron .They were moving into the very heart of the forest .Harry could hear Fang fighting to free himself from a third monster whining loudly but Harry couldnt have yelled even if he had wanted to he seemed to have left his voice back with the car in the clearing .He never knew how long he was in the creatures clutches he only knew that the darkness suddenly lifted enough for him to see that the leafstrewn ground was now swarming with spiders .Craning his neck sideways he realized that they had reached the ridge of a vast hollow a hollow that had been cleared of trees so that the stars shone brightly onto the worst scene he had ever laid eyes on .Spiders .Not tiny spiders like those surging over the leaves below .Spiders the size of carthorses eight eyed eightlegged black hairy gigantic .The massive specimen that was carrying Harry made its way down the steep slope toward a misty domed web in the very center of the hollow while its fellows closed in all around it clicking their pincers excitedly at the sight of its load .Harry fell to the ground on all fours as the spider released him .Ron and Fang thudded down next to him .Fang wasnt howling anymore but cowering silently on the spot .Ron looked exactly like Harry felt .His mouth was stretched wide in a kind of silent scream and his eyes were popping .Harry suddenly realized that the spider that had dropped him was saying something .It had been hard to tell because he clicked his pincers with every word he spoke .Aragog !it called .Aragog !And from the middle of the misty domed web a spider the size of a small elephant emerged very slowly .There was gray in the black of his body and legs and each of the eyes on his ugly pincered head was milky white .He was blind .What is it ?he said clicking his pincers rapidly .Men clicked the spider who had caught Harry .Is it Hagrid ?said Aragog moving closer his eight milky eyes wandering vaguely .Strangers clicked the spider who had brought Ron .Kill them clicked Aragog fretfully .I was sleeping .Were friends of Hagrid s Harry shouted .His heart seemed to have left his chest to pound in his throat .Click click click went the pincers of the spiders all around the hollow .Aragog paused .Hagrid has never sent men into our hollow before he said slowly .Hagrids in trouble said Harry breathing very fast .Thats why weve come .In trouble ?said the aged spider and Harry thought he heard concern beneath the clicking pincers .But why has he sent you ?Harry thought of getting to his feet but decided against it he didnt think his legs would support him .So he spoke from the ground as calmly as he could .They think up at the school that Hagrids been setting a a something on students .Theyve taken him to Azkaban .Aragog clicked his pincers furiously and all around the hollow the sound was echoed by the crowd of spiders it was like applause except applause didnt usually make Harry feel sick with fear .But that was years ago said Aragog fretfully .Years and years ago .I remember it well .Thats why they made him leave the school .They believed that I was the monster that dwells in what they call the Chamber of Secrets .They thought that Hagrid had opened the Chamber and set me free .And you .you didnt come from the Chamber of Secrets ?said Harry who could feel cold sweat on his forehead .I !said Aragog clicking angrily .I was not born in the castle .I come from a distant land .A traveler gave me to Hagrid when I was an egg .Hagrid was only a boy but he cared for me hidden in a cupboard in the castle feeding me on scraps from the table .Hagrid is my good friend and a good man .When I was discovered and blamed for the death of a girl he protected me .I have lived here in the forest ever since where Hagrid still visits me .He even found me a wife Mosag and you see how our family has grown all through Hagrid s goodness .Harry summoned what remained of his courage .So you never never attacked anyone ?Never croaked the old spider .It would have been my instinct but out of respect for Hagrid I never harmed a human .The body of the girl who was killed was discovered in a bathroom .I never saw any part of the castle but the cupboard in which I grew up .Our kind like the dark and the quiet .But then .Do you know what did kill that girl ?said Harry .Because whatever it is its back and attacking people again His words were drowned by a loud outbreak of clicking and the rustling of many long legs shifting angrily large black shapes shifted all around him .The thing that lives in the castle said Aragog is an ancient creature we spiders fear above all others .Well do I remember how I pleaded with Hagrid to let me go when I sensed the beast moving about the school .What is it ?said Harry urgently .More loud clicking more rustling the spiders seemed to be closing in .We do not speak of it !said Aragog fiercely .We do not name it !I never even told Hagrid the name of that dread creature though he asked me many times .Harry didnt want to press the subject not with the spiders pressing closer on all sides .Aragog seemed to be tired of talking .He was backing slowly into his domed web but his fellow spiders continued to inch slowly toward Harry and Ron .Well just go then Harry called desperately to Aragog hearing leaves rustling behind him .Go ?said Aragog slowly .I think not .But but My sons and daughters do not harm Hagrid on my command .But I cannot deny them fresh meat when it wanders so willingly into our midst .Goodbye friend of Hagrid .Harry spun around .Feet away towering above him was a solid wall of spiders clicking their many eyes gleaming in their ugly black heads .Even as he reached for his wand Harry knew it was no good there were too many of them but as he tried to stand ready to die fighting a loud long note sounded and a blaze of light flamed through the hollow .Mr Weasleys car was thundering down the slope headlights glaring its horn screeching knocking spiders aside several were thrown onto their backs their endless legs waving in the air .The car screeched to a halt in front of Harry and Ron and the doors flew open .Get Fang !Harry yelled diving into the front seat Ron seized the boarhound around the middle and threw him yelping into the back of the car the doors slammed shut Ron didnt touch the accelerator but the car didnt need him the engine roared and they were off hitting more spiders .They sped up the slope out of the hollow and they were soon crashing through the forest branches whipping the windows as the car wound its way cleverly through the widest gaps following a path it obviously knew .Harry looked sideways at Ron .His mouth was still open in the silent scream but his eyes werent popping anymore .Are you okay ?Ron stared straight ahead unable to speak .They smashed their way through the undergrowth Fang howling loudly in the back seat and Harry saw the side mirror snap off as they squeezed past a large oak .After ten noisy rocky minutes the trees thinned and Harry could again see patches of sky .The car stopped so suddenly that they were nearly thrown into the windshield .They had reached the edge of the forest .Fang flung himself at the window in his anxiety to get out and when Harry opened the door he shot off through the trees to Hagrids house tail between his legs .Harry got out too and after a minute or so Ron seemed to regain the feeling in his limbs and followed still stiffnecked and staring .Harry gave the car a grateful pat as it reversed back into the forest and disappeared from view .Harry went back into Hagrids cabin to get the Invisibility Cloak .Fang was trembling under a blanket in his basket .When Harry got outside again he found Ron being violently sick in the pumpkin patch .Follow the spiders said Ron weakly wiping his mouth on his sleeve .Ill never forgive Hagrid .Were lucky to be alive .I bet he thought Aragog wouldnt hurt friends of his said Harry .Thats exactly Hagrids problem !said Ron thumping the wall of the cabin .He always thinks monsters arent as bad as theyre made out and look where its got him !A cell in Azkaban !He was shivering uncontrollably now .What was the point of sending us in there ?What have we found out Id like to know ?That Hagrid never opened the Chamber of Secrets said Harry throwing the cloak over Ron and prodding him in the arm to make him walk .He was innocent .Ron gave a loud snort .Evidently hatching Aragog in a cupboard wasnt his idea of being innocent .As the castle loomed nearer Harry twitched the cloak to make sure their feet were hidden then pushed the creaking front doors ajar .They walked carefully back across the entrance hall and up the marble staircase holding their breath as they passed corridors where watchful sentries were walking .At last they reached the safety of the Gryffindor common room where the fire had burned itself into glowing ash .They took off the cloak and climbed the winding stair to their dormitory .Ron fell onto his bed without bothering to get undressed .Harry however didnt feel very sleepy .He sat on the edge of his fourposter thinking hard about everything Aragog had said .The creature that was lurking somewhere in the castle he thought sounded like a sort of monster Voldemort even other monsters didnt want to name it .But he and Ron were no closer to finding out what it was or how it Petrified its victims .Even Hagrid had never known what was in the Chamber of Secrets .Harry swung his legs up onto his bed and leaned back against his pillows watching the moon glinting at him through the tower window .He couldnt see what else they could do .They had hit dead ends everywhere .Riddle had caught the wrong person the Heir of Slytherin had got off and no one could tell whether it was the same person or a different one who had opened the Chamber this time .There was nobody else to ask .Harry lay down still thinking about what Aragog had said .He was becoming drowsy when what seemed like their very last hope occurred to him and he suddenly sat bolt upright .Ron he hissed through the dark Ron Ron woke with a yelp like Fangs stared wildly around and saw Harry .Ron that girl who died .Aragog said she was found in a bathroom said Harry ignoring Nevilles snuffling snores from the corner .What if she never left the bathroom ?What if shes still there ?Ron rubbed his eyes frowning through the moonlight .And then he understood too .You dont think not Moaning Myrtle ?THE CHAMBER OF SECRETS All those times we were in that bathroom and she was just three toilets away said Ron bitterly at breakfast next day and we couldve asked her and now .It had been hard enough trying to look for spiders .Escaping their teachers long enough to sneak into a girls bathroom the girls bathroom moreover right next to the scene of the first attack was going to be almost impossible .But something happened in their first lesson Transfiguration that drove the Chamber of Secrets out of their minds for the first time in weeks .Ten minutes into the class Professor McGonagall told them that their exams would start on the first of June one week from today .Exams ?howled Seamus Finnigan .Were still getting exams ?There was a loud bang behind Harry as Neville Longbottoms wand slipped vanishing one of the legs on his desk .Professor McGonagall restored it with a wave of her own wand and turned frowning to Seamus .The whole point of keeping the school open at this time is for you to receive your education she said sternly .The exams will therefore take place as usual and I trust you are all studying hard .Studying hard !It had never occurred to Harry that there would be exams with the castle in this state .There was a great deal of mutinous muttering around the room which made Professor McGonagall scowl even more darkly .Professor Dumbledores instructions were to keep the school running as normally as possible she said .And that I need hardly point out means finding out how much you have learned this year .Harry looked down at the pair of white rabbits he was supposed to be turning into slippers .What had he learned so far this year ?He couldnt seem to think of anything that would be useful in an exam .Ron looked as though hed just been told he had to go and live in the Forbidden Forest .Can you imagine me taking exams with this ?he asked Harry holding up his wand which had just started whistling loudly .Three days before their first exam Professor McGonagall made another announcement at breakfast .I have good news she said and the Great Hall instead of falling silent erupted .Dumbledores coming back !several people yelled joyfully .Youve caught the Heir of Slytherin !squealed a girl at the Ravenclaw table .Quidditch matches are back on !roared Wood excitedly .When the hubbub had subsided Professor McGonagall said Professor Sprout has informed me that the Mandrakes are ready for cutting at last .Tonight we will be able to revive those people who have been Petrified .I need hardly remind you all that one of them may well be able to tell us who or what attacked them .I am hopeful that this dreadful year will end with our catching the culprit .There was an explosion of cheering .Harry looked over at the Slytherin table and wasnt at all surprised to see that Draco Malfoy hadnt joined in .Ron however was looking happier than hed looked in days .It wont matter that we never asked Myrtle then !he said to Harry .Hermionell probably have all the answers when they wake her up !Mind you shell go crazy when she finds out weve got exams in three days time .She hasnt studied .It might be kinder to leave her where she is till theyre over .Just then Ginny Weasley came over and sat down next to Ron .She looked tense and nervous and Harry noticed that her hands were twisting in her lap .Whats up ?said Ron helping himself to more porridge .Ginny didnt say anything but glanced up and down the Gryffindor table with a scared look on her face that reminded Harry of someone though he couldnt think who .Spit it out said Ron watching her .Harry suddenly realized who Ginny looked like .She was rocking backward and forward slightly in her chair exactly like Dobby did when he was teetering on the edge of revealing forbidden information .Ive got to tell you something Ginny mumbled carefully not looking at Harry .What is it ?said Harry .Ginny looked as though she couldnt find the right words .What ?said Ron .Ginny opened her mouth but no sound came out .Harry leaned forward and spoke quietly so that only Ginny and Ron could hear him .Is it something about the Chamber of Secrets ?Have you seen something ?Someone acting oddly ?Ginny drew a deep breath and at that precise moment Percy Weasley appeared looking tired and wan .If youve finished eating Ill take that seat Ginny .Im starving Ive only just come off patrol duty .Ginny jumped up as though her chair had just been electrified gave Percy a fleeting frightened look and scampered away .Percy sat down and grabbed a mug from the center of the table .Percy !said Ron angrily .She was just about to tell us something important !Halfway through a gulp of tea Percy choked .What sort of thing ?he said coughing .I just asked her if shed seen anything odd and she started to say Oh that thats nothing to do with the Chamber of Secrets said Percy at once .How do you know ?said Ron his eyebrows raised .Well er if you must know Ginny er walked in on me the other day when I was well never mind the point is she spotted me doing something and I um I asked her not to mention it to anybody .I must say I did think shed keep her word .Its nothing really Id just rather Harry had never seen Percy look so uncomfortable .What were you doing Percy ?said Ron grinning .Go on tell us we wont laugh .Percy didnt smile back .Pass me those rolls Harry Im starving .Harry knew the whole mystery might be solved tomorrow without their help but he wasnt about to pass up a chance to speak to Myrtle if it turned up and to his delight it did midmorning when they were being led to History of Magic by Gilderoy Lockhart .Lockhart who had so often assured them that all danger had passed only to be proved wrong right away was now wholeheartedly convinced that it was hardly worth the trouble to see them safely down the corridors .His hair wasnt as sleek as usual it seemed he had been up most of the night patrolling the fourth floor .Mark my words he said ushering them around a corner .The first words out of those poor Petrified peoples mouths will be ‘It was Hagrid .Frankly Im astounded Professor McGonagall thinks all these security measures are necessary .I agree sir said Harry making Ron drop his books in surprise .Thank you Harry said Lockhart graciously while they waited for a long line of Hufflepuffs to pass .I mean we teachers have quite enough to be getting on with without walking students to classes and standing guard all night .Thats right said Ron catching on .Why dont you leave us here sir weve only got one more corridor to go You know Weasley I think I will said Lockhart .I really should go and prepare my next class And he hurried off .Prepare his class Ron sneered after him .Gone to curl his hair more like .They let the rest of the Gryffindors draw ahead of them then darted down a side passage and hurried off toward Moaning Myrtles bathroom .But just as they were congratulating each other on their brilliant scheme Potter !Weasley !What are you doing ?It was Professor McGonagall and her mouth was the thinnest of thin lines .We were we were Ron stammered .We were going to to go and see Hermione said Harry .Ron and Professor McGonagall both looked at him .We havent seen her for ages Professor Harry went on hurriedly treading on Rons foot and we thought wed sneak into the hospital wing you know and tell her the Mandrakes are nearly ready and er not to worry Professor McGonagall was still staring at him and for a moment Harry thought she was going to explode but when she spoke it was in a strangely croaky voice .Of course she said and Harry amazed saw a tear glistening in her beady eye .Of course I realize this has all been hardest on the friends of those who have been .I quite understand .Yes Potter of course you may visit Miss Granger .I will inform Professor Binns where youve gone .Tell Madam Pomfrey I have given my permission .Harry and Ron walked away hardly daring to believe that theyd avoided detention .As they turned the corner they distinctly heard Professor McGonagall blow her nose .That said Ron fervently was the best story youve ever come up with .They had no choice now but to go to the hospital wing and tell Madam Pomfrey that they had Professor McGonagalls permission to visit Hermione .Madam Pomfrey let them in but reluctantly .Theres just no point talking to a Petrified person she said and they had to admit she had a point when theyd taken their seats next to Hermione .It was plain that Hermione didnt have the faintest inkling that she had visitors and that they might just as well tell her bedside cabinet not to worry for all the good it would do .Wonder if she did see the attacker though ?said Ron looking sadly at Hermione s rigid face .Because if he sneaked up on them all no onell ever know .But Harry wasnt looking at Hermiones face .He was more interested in her right hand .It lay clenched on top of her blankets and bending closer he saw that a piece of paper was scrunched inside her fist .Making sure that Madam Pomfrey was nowhere near he pointed this out to Ron .Try and get it out Ron whispered shifting his chair so that he blocked Harry from Madam Pomfreys view .It was no easy task .Hermiones hand was clamped so tightly around the paper that Harry was sure he was going to tear it .While Ron kept watch he tugged and twisted and at last after several tense minutes the paper came free .It was a page torn from a very old library book .Harry smoothed it out eagerly and Ron leaned close to read it too .Of the many fearsome beasts and monsters that roam our land there is none more curious or more deadly than the Basilisk known also as the King of Serpents .This snake which may reach gigantic size and live many hundreds of years is born from a chickens egg hatched beneath a toad .Its methods of killing are most wondrous for aside from its deadly and venomous fangs the Basilisk has a murderous stare and all who are fixed with the beam of its eye shall suffer instant death .Spiders flee before the Basilisk for it is their mortal enemy and the Basilisk flees only from the crowing of the rooster which is fatal to it .And beneath this a single word had been written in a hand Harry recognized as Hermiones .Pipes .It was as though somebody had just flicked a light on in his brain .Ron he breathed .This is it .This is the answer .The monster in the Chambers a basilisk a giant serpent !Thats why Ive been hearing that voice all over the place and nobody else has heard it .Its because I understand Parseltongue .Harry looked up at the beds around him .The basilisk kills people by looking at them .But no ones died because no one looked it straight in the eye .Colin saw it through his camera .The basilisk burned up all the film inside it but Colin just got Petrified .Justin .Justin mustve seen the basilisk through Nearly Headless Nick !Nick got the full blast of it but he couldnt die again .and Hermione and that Ravenclaw prefect were found with a mirror next to them .Hermione had just realized the monster was a basilisk .I bet you anything she warned the first person she met to look around corners with a mirror first !And that girl pulled out her mirror and Rons jaw had dropped .And Mrs Norris ?he whispered eagerly .Harry thought hard picturing the scene on the night of Halloween .The water .he said slowly .The flood from Moaning Myrtles bathroom .I bet you Mrs Norris only saw the reflection .He scanned the page in his hand eagerly .The more he looked at it the more it made sense . .The crowing of the rooster .is fatal to if !he read aloud .Hagrids roosters were killed !The Heir of Slytherin didnt want one anywhere near the castle once the Chamber was opened !Spiders flee before it It all fits !But hows the basilisk been getting around the place ?said Ron .A giant snake .Someone wouldve seen .Harry however pointed at the word Hermione had scribbled at the foot of the page .Pipes he said .Pipes .Ron its been using the plumbing .Ive been hearing that voice inside the walls .Ron suddenly grabbed Harrys arm .The entrance to the Chamber of Secrets !he said hoarsely .What if its a bathroom ?What if its in Moaning Myrtles bathroom said Harry .They sat there excitement coursing through them hardly able to believe it .This means said Harry I cant be the only Parselmouth in the school .The Heir of Slytherins one too .Thats how hes been controlling the basilisk .Whatre we going to do ?said Ron whose eyes were flashing .Should we go straight to McGonagall ?Lets go to the staffroom said Harry jumping up .Shell be there in ten minutes .Its nearly break .They ran downstairs .Not wanting to be discovered hanging around in another corridor they went straight into the deserted staffroom .It was a large paneled room full of dark wooden chairs .Harry and Ron paced around it too excited to sit down .But the bell to signal break never came .Instead echoing through the corridors came Professor McGonagalls voice magically magnified .All students to return to their House dormitories at once .All teachers return to the staffroom .Immediately please .Harry wheeled around to stare at Ron .Not another attack ?Not now ?Whatll we do ?said Ron aghast .Go back to the dormitory ?No said Harry glancing around .There was an ugly sort of wardrobe to his left full of the teachers cloaks .In here .Lets hear what its all about .Then we can tell them what weve found out .They hid themselves inside it listening to the rumbling of hundreds of people moving overhead and the staffroom door banging open .From between the musty folds of the cloaks they watched the teachers filtering into the room .Some of them were looking puzzled others downright scared .Then Professor McGonagall arrived .It has happened she told the silent staffroom .A student has been taken by the monster .Right into the Chamber itself .Professor Flitwick let out a squeal .Professor Sprout clapped her hands over her mouth .Snape gripped the back of a chair very hard and said How can you be sure ?The Heir of Slytherin said Professor McGonagall who was very white left another message .Right underneath the first one . ‘Her skeleton will lie in the Chamber forever .Professor Flitwick burst into tears .Who is it ?said Madam Hooch who had sunk weak kneed into a chair .Which student ?Ginny Weasley said Professor McGonagall .Harry felt Ron slide silently down onto the wardrobe floor beside him .We shall have to send all the students home tomorrow said Professor McGonagall .This is the end of Hogwarts .Dumbledore always said .The staffroom door banged open again .For one wild moment Harry was sure it would be Dumbledore .But it was Lockhart and he was beaming .So sorry dozed off what have I missed ?He didnt seem to notice that the other teachers were looking at him with something remarkably like hatred .Snape stepped forward .Just the man he said .The very man .A girl has been snatched by the monster Lockhart .Taken into the Chamber of Secrets itself .Your moment has come at last .Lockhart blanched .Thats right Gilderoy chipped in Professor Sprout .Werent you saying just last night that youve known all along where the entrance to the Chamber of Secrets is ?I well I sputtered Lockhart .Yes didnt you tell me you were sure you knew what was inside it ?piped up Professor Flitwick .Ddid I ?I dont recall I certainly remember you saying you were sorry you hadnt had a crack at the monster before Hagrid was arrested said Snape .Didnt you say that the whole affair had been bungled and that you should have been given a free rein from the first ?Lockhart stared around at his stonyfaced colleagues .I I really never you may have misunderstood Well leave it to you then Gilderoy said Professor McGonagall .Tonight will be an excellent time to do it .Well make sure everyones out of your way .Youll be able to tackle the monster all by yourself .A free rein at last .Lockhart gazed desperately around him but nobody came to the rescue .He didnt look remotely handsome anymore .His lip was trembling and in the absence of his usually toothy grin he looked weakchinned and feeble .Vvery well he said .Ill Ill be in my office getting getting ready .And he left the room .Right said Professor McGonagall whose nostrils were flared thats got him out from under our feet .The Heads of Houses should go and inform their students what has happened .Tell them the Hogwarts Express will take them home first thing tomorrow .Will the rest of you please make sure no students have been left outside their dormitories .The teachers rose and left one by one .It was probably the worst day of Harrys entire life .He Ron Fred and George sat together in a corner of the Gryffindor common room unable to say anything to each other .Percy wasnt there .He had gone to send an owl to Mr and Mrs Weasley then shut himself up in his dormitory .No afternoon ever lasted as long as that one nor had Gryffindor Tower ever been so crowded yet so quiet .Near sunset Fred and George went up to bed unable to sit there any longer .She knew something Harry said Ron speaking for the first time since they had entered the wardrobe in the staffroom .Thats why she was taken .It wasnt some stupid thing about Percy at all .Shed found out something about the Chamber of Secrets .That must be why she was Ron rubbed his eyes frantically .I mean she was a pureblood .There cant be any other reason .Harry could see the sun sinking bloodred below the skyline .This was the worst he had ever felt .If only there was something they could do .Anything .Harry said Ron .Dyou think theres any chance at all shes not you know Harry didnt know what to say .He couldnt see how Ginny could still be alive .Dyou know what ?said Ron .I think we should go and see Lockhart .Tell him what we know .Hes going to try and get into the Chamber .We can tell him where we think it is and tell him its a basilisk in there .Because Harry couldnt think of anything else to do and because he wanted to be doing something he agreed .The Gryffindors around them were so miserable and felt so sorry for the Weasleys that nobody tried to stop them as they got up crossed the room and left through the portrait hole .Darkness was falling as they walked down to Lockharts office .There seemed to be a lot of activity going on inside it .They could hear scraping thumps and hurried footsteps .Harry knocked and there was a sudden silence from inside .Then the door opened the tiniest crack and they saw one of Lockharts eyes peering through it .Oh Mr Potter Mr Weasley he said opening the door a bit wider .Im rather busy at the moment if you would be quick Professor weve got some information for you said Harry .We think itll help you .Er well its not terribly The side of Lockharts face that they could see looked very uncomfortable .I mean well all right He opened the door and they entered .His office had been almost completely stripped .Two large trunks stood open on the floor .Robes jade green lilac midnightblue had been hastily folded into one of them books were jumbled untidily into the other .The photographs that had covered the walls were now crammed into boxes on the desk .Are you going somewhere ?said Harry .Er well yes said Lockhart ripping a lifesize poster of himself from the back of the door as he spoke and starting to roll it up .Urgent call unavoidable got to go What about my sister ?said Ron jerkily .Well as to that most unfortunate said Lockhart avoiding their eyes as he wrenched open a drawer and started emptying the contents into a bag .No one regrets more than I Youre the Defense Against the Dark Arts teacher !said Harry .You cant go now !Not with all the Dark stuff going on here !Well I must say when I took the job Lockhart muttered now piling socks on top of his robes nothing in the job description didnt expect You mean youre running away ?said Harry disbelievingly .After all that stuff you did in your books Books can be misleading said Lockhart delicately .You wrote them !Harry shouted .My dear boy said Lockhart straightening up and frowning at Harry .Do use your common sense .My books wouldnt have sold half as well if people didnt think Id done all those things .No one wants to read about some ugly old Armenian warlock even if he did save a village from werewolves .Hed look dreadful on the front cover .No dress sense at all .And the witch who banished the Bandon Banshee had a hairy chin .I mean come on So youve just been taking credit for what a load of other people have done ?said Harry incredulously .Harry Harry said Lockhart shaking his head impatiently its not nearly as simple as that .There was work involved .I had to track these people down .Ask them exactly how they managed to do what they did .Then I had to put a Memory Charm on them so they wouldnt remember doing it .If theres one thing I pride myself on its my Memory Charms .No its been a lot of work Harry .Its not all book signings and publicity photos you know .You want fame you have to be prepared for a long hard slog .He banged the lids of his trunks shut and locked them .Lets see he said .I think thats everything .Yes .Only one thing left .He pulled out his wand and turned to them .Awfully sorry boys but Ill have to put a Memory Charm on you now .Cant have you blabbing my secrets all over the place .Id never sell another book Harry reached his wand just in time .Lockhart had barely raised his when Harry bellowed Expelliarmus Lockhart was blasted backward falling over his trunk his wand flew high into the air Ron caught it and flung it out of the open window .Shouldnt have let Professor Snape teach us that one said Harry furiously kicking Lockharts trunk aside .Lockhart was looking up at him feeble once more .Harry was still pointing his wand at him .What dyou want me to do ?said Lockhart weakly .I dont know where the Chamber of Secrets is .Theres nothing I can do .Youre in luck said Harry forcing Lockhart to his feet at wandpoint .We think we know where it is .And whats inside it .Lets go .They marched Lockhart out of his office and down the nearest stairs along the dark corridor where the messages shone on the wall to the door of Moaning Myrtles bathroom .They sent Lockhart in first .Harry was pleased to see that he was shaking .Moaning Myrtle was sitting on the tank of the end toilet .Oh its you she said when she saw Harry .What do you want this time ?To ask you how you died said Harry .Myrtles whole aspect changed at once .She looked as though she had never been asked such a flattering question .Ooooh it was dreadful she said with relish .It happened right in here .I died in this very stall .I remember it so well .Id hidden because Olive Hornby was teasing me about my glasses .The door was locked and I was crying and then I heard somebody come in .They said something funny .A different language I think it must have been .Anyway what really got me was that it was a boy speaking .So I unlocked the door to tell him to go and use his own toilet and then Myrtle swelled importantly her face shining .I died .How ?said Harry .No idea said Myrtle in hushed tones .I just remember seeing a pair of great big yellow eyes .My whole body sort of seized up and then I was floating away .She looked dreamily at Harry .And then I came back again .I was determined to haunt Olive Hornby you see .Oh she was sorry shed ever laughed at my glasses .Where exactly did you see the eyes ?said Harry .Somewhere there said Myrtle pointing vaguely toward the sink in front of her toilet .Harry and Ron hurried over to it .Lockhart was standing well back a look of utter terror on his face .It looked like an ordinary sink .They examined every inch of it inside and out including the pipes below .And then Harry saw it Scratched on the side of one of the copper taps was a tiny snake .That taps never worked said Myrtle brightly as he tried to turn it .Harry said Ron .Say something .Something in Parseltongue .But Harry thought hard .The only times hed ever managed to speak Parseltongue were when hed been faced with a real snake .He stared hard at the tiny engraving trying to imagine it was real .Open up he said .He looked at Ron who shook his head .English he said .Harry looked back at the snake willing himself to believe it was alive .If he moved his head the candlelight made it look as though it were moving .Open up he said .Except that the words werent what he heard a strange hissing had escaped him and at once the tap glowed with a brilliant white light and began to spin .Next second the sink began to move the sink in fact sank right out of sight leaving a large pipe exposed a pipe wide enough for a man to slide into .Harry heard Ron gasp and looked up again .He had made up his mind what he was going to do .Im going down there he said .He couldnt not go not now they had found the entrance to the Chamber not if there was even the faintest slimmest wildest chance that Ginny might be alive .Me too said Ron .There was a pause .Well you hardly seem to need me said Lockhart with a shadow of his old smile .Ill just He put his hand on the door knob but Ron and Harry both pointed their wands at him .You can go first Ron snarled .Whitefaced and wandless Lockhart approached the opening .Boys he said his voice feeble .Boys what good will it do ?Harry jabbed him in the back with his wand .Lockhart slid his legs into the pipe .I really dont think he started to say but Ron gave him a push and he slid out of sight .Harry followed quickly .He lowered himself slowly into the pipe then let go .It was like rushing down an endless slimy dark slide .He could see more pipes branching off in all directions but none as large as theirs which twisted and turned sloping steeply downward and he knew that he was falling deeper below the school than even the dungeons .Behind him he could hear Ron thudding slightly at the curves .And then just as he had begun to worry about what would happen when he hit the ground the pipe leveled out and he shot out of the end with a wet thud landing on the damp floor of a dark stone tunnel large enough to stand in .Lockhart was getting to his feet a little ways away covered in slime and white as a ghost .Harry stood aside as Ron came whizzing out of the pipe too .We must be miles under the school said Harry his voice echoing in the black tunnel .Under the lake probably said Ron squinting around at the dark slimy walls .All three of them turned to stare into the darkness ahead .Lumosl Harry muttered to his wand and it lit again .Cmon he said to Ron and Lockhart and off they went their footsteps slapping loudly on the wet floor .The tunnel was so dark that they could only see a little distance ahead .Their shadows on the wet walls looked monstrous in the wandlight .Remember Harry said quietly as they walked cautiously forward any sign of movement close your eyes right away .But the tunnel was quiet as the grave and the first unexpected sound they heard was a loud crunch as Ron stepped on what turned out to be a rats skull .Harry lowered his wand to look at the floor and saw that it was littered with small animal bones .Trying very hard not to imagine what Ginny might look like if they found her Harry led the way forward around a dark bend in the tunnel .Harry theres something up there said Ron hoarsely grabbing Harrys shoulder .They froze watching .Harry could just see the outline of something huge and curved lying right across the tunnel .It wasnt moving .Maybe its asleep he breathed glancing back at the other two .Lockharts hands were pressed over his eyes .Harry turned back to look at the thing his heart beating so fast it hurt .Very slowly his eyes as narrow as he could make them and still see Harry edged forward his wand held high .The light slid over a gigantic snake skin of a vivid poisonous green lying curled and empty across the tunnel floor .The creature that had shed it must have been twenty feet long at least .Blimey said Ron weakly .There was a sudden movement behind them .Gilderoy Lockharts knees had given way .Get up said Ron sharply pointing his wand at Lockhart .Lockhart got to his feet then he dived at Ron knocking him to the ground .Harry jumped forward but too late Lockhart was straightening up panting Rons wand in his hand and a gleaming smile back on his face .The adventure ends here boys !he said .I shall take a bit of this skin back up to the school tell them I was too late to save the girl and that you two tragically lost your minds at the sight of her mangled body say goodbye to your memories !He raised Rons Spellotaped wand high over his head and yelled Obliviatel The wand exploded with the force of a small bomb .Harry flung his arms over his head and ran slipping over the coils of snake skin out of the way of great chunks of tunnel ceiling that were thundering to the floor .Next moment he was standing alone gazing at a solid wall of broken rock .Ron !he shouted .Are you okay ?Ron !Im here !came Rons muffled voice from behind the rockfall .Im okay this gits not though he got blasted by the wand There was a dull thud and a loud ow !It sounded as though Ron had just kicked Lockhart in the shins .What now ?Rons voice said sounding desperate .We cant get through itll take ages .Harry looked up at the tunnel ceiling .Huge cracks had appeared in it .He had never tried to break apart anything as large as these rocks by magic and now didnt seem a good moment to try what if the whole tunnel caved in ?There was another thud and another ow !from behind the rocks .They were wasting time .Ginny had already been in the Chamber of Secrets for hours .Harry knew there was only one thing to do .Wait there he called to Ron .Wait with Lockhart .Ill go on .If Im not back in an hour .There was a very pregnant pause .Ill try and shift some of this rock said Ron who seemed to be trying to keep his voice steady .So you can can get back through .And Harry See you in a bit said Harry trying to inject some confidence into his shaking voice .And he set off alone past the giant snake skin .Soon the distant noise of Ron straining to shift the rocks was gone .The tunnel turned and turned again .Every nerve in Harrys body was tingling unpleasantly .He wanted the tunnel to end yet dreaded what hed find when it did .And then at last as he crept around yet another bend he saw a solid wall ahead on which two entwined serpents were carved their eyes set with great glinting emeralds .Harry approached his throat very dry .There was no need to pretend these stone snakes were real their eyes looked strangely alive .He could guess what he had to do .He cleared his throat and the emerald eyes seemed to flicker .Open said Harry in a low faint hiss .The serpents parted as the wall cracked open the halves slid smoothly out of sight and Harry shaking from head to foot walked inside .THE HEIR OF SLYTHERIN He was standing at the end of a very long dimly lit chamber .Towering stone pillars entwined with more carved serpents rose to support a ceiling lost in darkness casting long black shadows through the odd greenish gloom that filled the place .His heart beating very fast Harry stood listening to the chill silence .Could the basilisk be lurking in a shadowy corner behind a pillar ?And where was Ginny ?He pulled out his wand and moved forward between the serpentine columns .Every careful footstep echoed loudly off the shadowy walls .He kept his eyes narrowed ready to clamp them shut at the smallest sign of movement .The hollow eye sockets of the stone snakes seemed to be following him .More than once with a jolt of the stomach he thought he saw one stir .Then as he drew level with the last pair of pillars a statue high as the Chamber itself loomed into view standing against the back wall .Harry had to crane his neck to look up into the giant face above It was ancient and monkeyish with a long thin beard that fell almost to the bottom of the wizards sweeping stone robes where two enormous gray feet stood on the smooth Chamber floor .And between the feet facedown lay a small blackrobed figure with flamingred hair .Ginnyl Harry muttered sprinting to her and dropping to his knees .Ginny dont be dead please dont be dead He flung his wand aside grabbed Ginnys shoulders and turned her over .Her face was white as marble and as cold yet her eyes were closed so she wasnt Petrified .But then she must be Ginny please wake up Harry muttered desperately shaking her .Ginnys head lolled hopelessly from side to side .She wont wake said a soft voice .Harry jumped and spun around on his knees .A tall blackhaired boy was leaning against the nearest pillar watching .He was strangely blurred around the edges as though Harry were looking at him through a misted window .But there was no mistaking him Tom Tom Riddle ?Riddle nodded not taking his eyes off Harrys face .What dyou mean she wont wake ?Harry said desperately .Shes not shes not ?Shes still alive said Riddle .But only just .Harry stared at him .Tom Riddle had been at Hogwarts fifty years ago yet here he stood a weird misty light shining about him not a day older than sixteen .Are you a ghost ?Harry said uncertainly .A memory said Riddle quietly .Preserved in a diary for fifty years .He pointed toward the floor near the statues giant toes .Lying open there was the little black diary Harry had found in Moaning Myrtles bathroom .For a second Harry wondered how it had got there but there were more pressing matters to deal with .Youve got to help me Tom Harry said raising Ginnys head again .Weve got to get her out of here .Theres a basilisk .I dont know where it is but it could be along any moment .Please help me Riddle didnt move .Harry sweating managed to hoist Ginny half off the floor and bent to pick up his wand again .But his wand had gone .Did you see ?He looked up .Riddle was still watching him twirling Harrys wand between his long fingers .Thanks said Harry stretching out his hand for it .A smile curled the corners of Riddles mouth .He continued to stare at Harry twirling the wand idly .Listen said Harry urgently his knees sagging with Ginnys dead weight .Weve got to go If the basilisk comes It wont come until it is called said Riddle calmly .Harry lowered Ginny back onto the floor unable to hold her up any longer .What dyou mean ?he said .Look give me my wand I might need it Riddles smile broadened .You wont be needing it he said .Harry stared at him .What dyou mean I wont be ?Ive waited a long time for this Harry Potter said Riddle .For the chance to see you .To speak to you .Look said Harry losing patience I dont think you get it .Were in the Chamber of Secrets .We can talk later Were going to talk now said Riddle still smiling broadly and he pocketed Harrys wand .Harry stared at him .There was something very funny going on here .How did Ginny get like this ?he asked slowly .Well thats an interesting question said Riddle pleasantly .And quite a long story .I suppose the real reason Ginny Weasleys like this is because she opened her heart and spilled all her secrets to an invisible stranger .What are you talking about ?said Harry .The diary said Riddle .My diary .Little Ginnys been writing in it for months and months telling me all her pitiful worries and woes how her brothers tease her how she had to come to school with secondhand robes and books how Riddles eyes glinted how she didnt think famous good great Harry Potter would ever like her .All the time he spoke Riddles eyes never left Harrys face .There was an almost hungry look in them .Its very boring having to listen to the silly little troubles of an elevenyearold girl he went on .But I was patient .I wrote back .I was sympathetic I was kind .Ginny simply loved me .No ones ever understood me like you Tom .Im so glad Ive got this diary to confide in .Its like having a friend I can carry around in my pocket .Riddle laughed a high cold laugh that didnt suit him .It made the hairs stand up on the back of Harrys neck .If I say it myself Harry Ive always been able to charm the people I needed .So Ginny poured out her soul to me and her soul happened to be exactly what I wanted .I grew stronger and stronger on a diet of her deepest fears her darkest secrets .I grew powerful far more powerful than little Miss Weasley .Powerful enough to start feeding Miss Weasley a few of my secrets to start pouring a little of my soul back into her .What dyou mean ?said Harry whose mouth had gone very dry .Havent you guessed yet Harry Potter ?said Riddle softly .Ginny Weasley opened the Chamber of Secrets .She strangled the school roosters and daubed threatening messages on the walls .She set the Serpent of Slytherin on four Mudbloods and the Squibs cat .No Harry whispered .Yes said Riddle calmly .Of course she didnt know what she was doing at first .It was very amusing .I wish you could have seen her new diary entries .far more interesting they became .Dear Tom he recited watching Harrys horrified face 7 think Im losing my memory .There are rooster feathers all over my robes and I dont know how they got there .Dear Tom I cant remember what I did on the night of Halloween but a cat was attacked and Ive got paint all down my front .Dear Tom Percy keeps telling me Im pale and Im not myself .I think he suspects me .There was another attack today and I dont know where I was .Tom what am I going to do ?I think Im going mad .I think Im the one attacking everyone Tom Harrys fists were clenched the nails digging deep into his palms .It took a very long time for stupid little Ginny to stop trusting her diary said Riddle .But she finally became suspicious and tried to dispose of it .And thats where you came in Harry .You found it and I couldnt have been more delighted .Of all the people who could have picked it up it was you the very person I was most anxious to meet .And why did you want to meet me ?said Harry .Anger was coursing through him and it was an effort to keep his voice steady .Well you see Ginny told me all about you Harry said Riddle .Your whole fascinating history .His eyes roved over the lightning scar on Harrys forehead and their expression grew hungrier .I knew I must find out more about you talk to you meet you if I could .So I decided to show you my famous capture of that great oaf Hagrid to gain your trust Hagrids my friend said Harry his voice now shaking .And you framed him didnt you ?I thought you made a mistake but Riddle laughed his high laugh again .It was my word against Hagrids Harry .Well you can imagine how it looked to old Armando Dippet .On the one hand Tom Riddle poor but brilliant parentless but so brave school prefect model student .on the other hand big blundering Hagrid in trouble every other week trying to raise werewolf cubs under his bed sneaking off to the Forbidden Forest to wrestle trolls .but I admit even was surprised how well the plan worked .I thought someone must realize that Hagrid couldnt possibly be the Heir of Slytherin .It had taken me five whole years to find out everything I could about the Chamber of Secrets and discover the secret entrance .as though Hagrid had the brains or the power !Only the Transfiguration teacher Dumbledore seemed to think Hagrid was innocent .He persuaded Dippet to keep Hagrid and train him as gamekeeper .Yes I think Dumbledore might have guessed .Dumbledore never seemed to like me as much as the other teachers did .I bet Dumbledore saw right through you said Harry his teeth gritted .Well he certainly kept an annoyingly close watch on me after Hagrid was expelled said Riddle carelessly .I knew it wouldnt be safe to open the Chamber again while I was still at school .But I wasnt going to waste those long years Id spent searching for it .I decided to leave behind a diary preserving my sixteenyearold self in its pages so that one day with luck I would be able to lead another in my footsteps and finish Salazar Slytherins noble work .Well you havent finished it said Harry triumphantly .No ones died this time not even the cat .In a few hours the Mandrake Draught will be ready and everyone who was Petrified will be all right again Havent I already told you said Riddle quietly that killing Mudbloods doesnt matter to me anymore ?For many months now my new target has been you .Harry stared at him .Imagine how angry I was when the next time my diary was opened it was Ginny who was writing to me not you .She saw you with the diary you see and panicked .What if you found out how to work it and I repeated all her secrets to you ?What if even worse I told you whod been strangling roosters ?So the foolish little brat waited until your dormitory was deserted and stole it back .But I knew what I must do .It was clear to me that you were on the trail of Slytherins heir .From everything Ginny had told me about you I knew you would go to any lengths to solve the mystery particularly if one of your best friends was attacked .And Ginny had told me the whole school was buzzing because you could speak Parseltongue .So I made Ginny write her own farewell on the wall and come down here to wait .She struggled and cried and became very boring .But there isnt much life left in her .She put too much into the diary into me .Enough to let me leave its pages at last .I have been waiting for you to appear since we arrived here .I knew youd come .I have many questions for you Harry Potter .Like what ?Harry spat fists still clenched .Well said Riddle smiling pleasantly how is it that you a skinny boy with no extraordinary magical talent managed to defeat the greatest wizard of all time ?How did you escape with nothing but a scar while Lord Voldemorts powers were destroyed ?There was an odd red gleam in his hungry eyes now .Why do you care how I escaped ?said Harry slowly .Voldemort was after your time .Voldemort said Riddle softly is my past present and future Harry Potter .He pulled Harrys wand from his pocket and began to trace it through the air writing three shimmering words tom marvolo riddle Then he waved the wand once and the letters of his name rearranged themselves i am lord voldemort You see ?he whispered .It was a name I was already using at Hogwarts to my most intimate friends only of course .You think I was going to use my filthy Muggle fathers name forever ?I in whose veins runs the blood of Salazar Slytherin himself through my mothers side ?I keep the name of a foul common Muggle who abandoned me even before I was born just because he found out his wife was a witch ?No Harry I fashioned myself a new name a name I knew wizards everywhere would one day fear to speak when I had become the greatest sorcerer in the world !Harrys brain seemed to have jammed .He stared numbly at Riddle at the orphaned boy who had grown up to murder Harrys own parents and so many others .At last he forced himself to speak .Youre not he said his quiet voice full of hatred .Not what ?snapped Riddle .Not the greatest sorcerer in the world said Harry breathing fast .Sorry to disappoint you and all that but the greatest wizard in the world is Albus Dumbledore .Everyone says so .Even when you were strong you didnt dare try and take over at Hogwarts .Dumbledore saw through you when you were at school and he still frightens you now wherever youre hiding these days The smile had gone from Riddles face to be replaced by a very ugly look .Dumbledore s been driven out of this castle by the mere memory of me !he hissed .Hes not as gone as you might think !Harry retorted .He was speaking at random wanting to scare Riddle wishing rather than believing it to be true Riddle opened his mouth but froze .Music was coming from somewhere .Riddle whirled around to stare down the empty Chamber .The music was growing louder .It was eerie spinetingling unearthly it lifted the hair on Harrys scalp and made his heart feel as though it was swelling to twice its normal size .Then as the music reached such a pitch that Harry felt it vibrating inside his own ribs flames erupted at the top of the nearest pillar .A crimson bird the size of a swan had appeared piping its weird music to the vaulted ceiling .It had a glittering golden tail as long as a peacocks and gleaming golden talons which were gripping a ragged bundle .A second later the bird was flying straight at Harry .It dropped the ragged thing it was carrying at his feet then landed heavily on his shoulder .As it folded its great wings Harry looked up and saw it had a long sharp golden beak and a beady black eye .The bird stopped singing .It sat still and warm next to Harrys cheek gazing steadily at Riddle .Thats a phoenix .said Riddle staring shrewdly back at it .Fawkes ?Harry breathed and he felt the birds golden claws squeeze his shoulder gently .And that said Riddle now eyeing the ragged thing that Fawkes had dropped thats the old school Sorting Hat So it was .Patched frayed and dirty the hat lay motionless at Harrys feet .Riddle began to laugh again .He laughed so hard that the dark Chamber rang with it as though ten Riddles were laughing at once This is what Dumbledore sends his defender !A songbird and an old hat !Do you feel brave Harry Potter ?Do you feel safe now ?Harry didnt answer .He might not see what use Fawkes or the Sorting Hat were but he was no longer alone and he waited for Riddle to stop laughing with his courage mounting .To business Harry said Riddle still smiling broadly .Twice in your past in my future we have met .And twice I failed to kill you .How did you survive ?Tell me everything .The longer you talk he added softly the longer you stay alive .Harry was thinking fast weighing his chances .Riddle had the wand .He Harry had Fawkes and the Sorting Hat neither of which would be much good in a duel .It looked bad all right .but the longer Riddle stood there the more life was dwindling out of Ginny .and in the meantime Harry noticed suddenly Riddles outline was becoming clearer more solid .If it had to be a fight between him and Riddle better sooner than later .No one knows why you lost your powers when you attacked me said Harry abruptly .I dont know myself .But I know why you couldnt kill me .Because my mother died to save me .My common Muggleborn mother he added shaking with suppressed rage .She stopped you killing me .And Ive seen the real you I saw you last year .Youre a wreck .Youre barely alive .Thats where all your power got you .Youre in hiding .Youre ugly youre foul Riddles face contorted .Then he forced it into an awful smile .So .Your mother died to save you .Yes thats a powerful countercharm .I can see now .there is nothing special about you after all .I wondered you see .There are strange likenesses between us after all .Even you must have noticed .Both halfbloods orphans raised by Muggles .Probably the only two Parselmouths to come to Hogwarts since the great Slytherin himself .We even look something alike .but after all it was merely a lucky chance that saved you from me .Thats all I wanted to know .Harry stood tense waiting for Riddle to raise his wand .But Riddles twisted smile was widening again .Now Harry Im going to teach you a little lesson .Lets match the powers of Lord Voldemort Heir of Salazar Slytherin against famous Harry Potter and the best weapons Dumbledore can give him .He cast an amused eye over Fawkes and the Sorting Hat then walked away .Harry fear spreading up his numb legs watched Riddle stop between the high pillars and look up into the stone face of Slytherin high above him in the halfdarkness .Riddle opened his mouth wide and hissed but Harry understood what he was saying .Speak to me Slytherin greatest of the Hogwarts Four .Harry wheeled around to look up at the statue Fawkes swaying on his shoulder .Slytherins gigantic stone face was moving .Horrorstruck Harry saw his mouth opening wider and wider to make a huge black hole .And something was stirring inside the statues mouth .Something was slithering up from its depths .Harry backed away until he hit the dark Chamber wall and as he shut his eyes tight he felt Fawkes wing sweep his cheek as he took flight .Harry wanted to shout Dont leave me !but what chance did a phoenix have against the king of serpents ?Something huge hit the stone floor of the Chamber .Harry felt it shudder he knew what was happening he could sense it could almost see the giant serpent uncoiling itself from Slytherins mouth .Then he heard Riddles hissing voice Kill him .The basilisk was moving toward Harry he could hear its heavy body slithering heavily across the dusty floor .Eyes still tightly shut Harry began to run blindly sideways his hands outstretched feeling his way Voldemort was laughing Harry tripped .He fell hard onto the stone and tasted blood the serpent was barely feet from him he could hear it coming There was a loud explosive spitting sound right above him and then something heavy hit Harry so hard that he was smashed into the wall .Waiting for fangs to sink through his body he heard more mad hissing something thrashing wildly off the pillars He couldnt help it he opened his eyes wide enough to squint at what was going on .The enormous serpent bright poisonous green thick as an oak trunk had raised itself high in the air and its great blunt head was weaving drunkenly between the pillars .As Harry trembled ready to close his eyes if it turned he saw what had distracted the snake .Fawkes was soaring around its head and the basilisk was snapping furiously at him with fangs long and thin as sabers Fawkes dived .His long golden beak sank out of sight and a sudden shower of dark blood spattered the floor .The snakes tail thrashed narrowly missing Harry and before Harry could shut his eyes it turned Harry looked straight into its face and saw that its eyes both its great bulbous yellow eyes had been punctured by the phoenix blood was streaming to the floor and the snake was spitting in agony .NO !Harry heard Riddle screaming .LEAVE THE BIRD !LEAVE THE BIRD !THE BOY IS BEHIND YOU !YOU CAN STILL SMELL HIM !KILL HIM !The blinded serpent swayed confused still deadly .Fawkes was circling its head piping his eerie song jabbing here and there at its scaly nose as the blood poured from its ruined eyes .Help me help me Harry muttered wildly someone anyone The snakes tail whipped across the floor again .Harry ducked .Something soft hit his face .The basilisk had swept the Sorting Hat into Harrys arms .Harry seized it .It was all he had left his only chance he rammed it onto his head and threw himself flat onto the floor as the basilisks tail swung over him again .Help me help me Harry thought his eyes screwed tight under the hat .Please help me There was no answering voice .Instead the hat contracted as though an invisible hand was squeezing it very tightly .Something very hard and heavy thudded onto the top of Harrys head almost knocking him out .Stars winking in front of his eyes he grabbed the top of the hat to pull it off and felt something long and hard beneath it .A gleaming silver sword had appeared inside the hat its handle glittering with rubies the size of eggs .KILL THE BOY !LEAVE THE BIRD !THE BOY IS BEHIND YOU !SNIFF SMELL HIM !Harry was on his feet ready .The basilisks head was falling its body coiling around hitting pillars as it twisted to face him .He could see the vast bloody eye sockets see the mouth stretching wide wide enough to swallow him whole lined with fangs long as his sword thin glittering venomous It lunged blindly Harry dodged and it hit the Chamber wall .It lunged again and its forked tongue lashed Harrys side .He raised the sword in both his hands The basilisk lunged again and this time its aim was true Harry threw his whole weight behind the sword and drove it to the hilt into the roof of the serpents mouth But as warm blood drenched Harrys arms he felt a searing pain just above his elbow .One long poisonous fang was sinking deeper and deeper into his arm and it splintered as the basilisk keeled over sideways and fell twitching to the floor .Harry slid down the wall .He gripped the fang that was spreading poison through his body and wrenched it out of his arm .But he knew it was too late .White hot pain was spreading slowly and steadily from the wound .Even as he dropped the fang and watched his own blood soaking his robes his vision went foggy .The Chamber was dissolving in a whirl of dull color .A patch of scarlet swam past and Harry heard a soft clatter of claws beside him .Fawkes said Harry thickly .You were fantastic Fawkes .He felt the bird lay its beautiful head on the spot where the serpents fang had pierced him .He could hear echoing footsteps and then a dark shadow moved in front of him .Youre dead Harry Potter said Riddles voice above him .Dead .Even Dumbledores bird knows it .Do you see what hes doing Potter ?Hes crying .Harry blinked .Fawkess head slid in and out of focus .Thick pearly tears were trickling down the glossy feathers .Im going to sit here and watch you die Harry Potter .Take your time .Im in no hurry .Harry felt drowsy .Everything around him seemed to be spinning .So ends the famous Harry Potter said Riddles distant voice .Alone in the Chamber of Secrets forsaken by his friends defeated at last by the Dark Lord he so unwisely challenged .Youll be back with your dear Mudblood mother soon Harry .She bought you twelve years of borrowed time .but Lord Voldemort got you in the end as you knew he must .If this is dying thought Harry its not so bad .Even the pain was leaving him .But was this dying ?Instead of going black the Chamber seemed to be coming back into focus .Harry gave his head a little shake and there was Fawkes still resting his head on Harrys arm .A pearly patch of tears was shining all around the wound except that there was no wound Get away bird said Riddles voice suddenly .Get away from him I said get away Harry raised his head .Riddle was pointing Harrys wand at Fawkes there was a bang like a gun and Fawkes took flight again in a whirl of gold and scarlet .Phoenix tears .said Riddle quietly staring at Harrys arm .Of course .healing powers .I forgot He looked into Harrys face .But it makes no difference .In fact I prefer it this way .Just you and me Harry Potter .you and me .He raised the wand Then in a rush of wings Fawkes had soared back overhead and something fell into Harrys lap the diary .For a split second both Harry and Riddle wand still raised stared at it .Then without thinking without considering as though he had meant to do it all along Harry seized the basilisk fang on the floor next to him and plunged it straight into the heart of the book .There was a long dreadful piercing scream .Ink spurted out of the diary in torrents streaming over Harrys hands flooding the floor .Riddle was writhing and twisting screaming and flailing and then He had gone .Harrys wand fell to the floor with a clatter and there was silence .Silence except for the steady drip drip of ink still oozing from the diary .The basilisk venom had burned a sizzling hole right through it .Shaking all over Harry pulled himself up .His head was spinning as though hed just traveled miles by Floo powder .Slowly he gathered together his wand and the Sorting Hat and with a huge tug retrieved the glittering sword from the roof of the basilisks mouth .Then came a faint moan from the end of the Chamber .Ginny was stirring .As Harry hurried toward her she sat up .Her bemused eyes traveled from the huge form of the dead basilisk over Harry in his bloodsoaked robes then to the diary in his hand .She drew a great shuddering gasp and tears began to pour down her face .Harry oh Harry I tried to tell you at b breakfast but I c couldnt say it in front of Percy it was me Harry but I I sswear I ddidnt mean to RRiddle made me he ttook me over and how did you kill that that thing ?Wwheres Riddle ?The last thing I rremember is him coming out of the diary Its all right said Harry holding up the diary and showing Ginny the fang hole Riddles finished .Look !Him and the basilisk .Cmon Ginny lets get out of here Im going to be expelled !Ginny wept as Harry helped her awkwardly to her feet .Ive looked forward to coming to Hogwarts ever since BBill came and nnow Ill have to leave and wwhatll Mum and Dad say ?Fawkes was waiting for them hovering in the Chamber entrance .Harry urged Ginny forward they stepped over the motionless coils of the dead basilisk through the echoing gloom and back into the tunnel .Harry heard the stone doors close behind them with a soft hiss .After a few minutes progress up the dark tunnel a distant sound of slowly shifting rock reached Harrys ears .Ron !Harry yelled speeding up .Ginnys okay !Ive got her !He heard Ron give a strangled cheer and they turned the next bend to see his eager face staring through the sizable gap he had managed to make in the rockfall .Ginny Ron thrust an arm through the gap in the rock to pull her through first .Youre alive !I dont believe it !What happened ?How what where did that bird come from ?Fawkes had swooped through the gap after Ginny .Hes Dumbledores said Harry squeezing through himself .How come youve got a sword ?said Ron gaping at the glittering weapon in Harrys hand .Ill explain when we get out of here said Harry with a sideways glance at Ginny who was crying harder than ever .But Later Harry said shortly .He didnt think it was a good idea to tell Ron yet whod been opening the Chamber not in front of Ginny anyway .Wheres Lockhart ?Back there said Ron still looking puzzled but jerking his head up the tunnel toward the pipe .Hes in a bad way .Come and see .Led by Fawkes whose wide scarlet wings emitted a soft golden glow in the darkness they walked all the way back to the mouth of the pipe .Gilderoy Lockhart was sitting there humming placidly to himself .His memorys gone said Ron .The Memory Charm backfired .Hit him instead of us .Hasnt got a clue who he is or where he is or who we are .I told him to come and wait here .Hes a danger to himself .Lockhart peered goodnaturedly up at them all .Hello he said .Odd sort of place this isnt it ?Do you live here ?No said Ron raising his eyebrows at Harry .Harry bent down and looked up the long dark pipe .Have you thought how were going to get back up this ?he said to Ron .Ron shook his head but Fawkes the phoenix had swooped past Harry and was now fluttering in front of him his beady eyes bright in the dark .He was waving his long golden tail feathers .Harry looked uncertainly at him .He looks like he wants you to grab hold .said Ron looking perplexed .But youre much too heavy for a bird to pull up there Fawkes said Harry isnt an ordinary bird .He turned quickly to the others .Weve got to hold on to each other .Ginny grab Rons hand .Professor Lockhart He means you said Ron sharply to Lockhart .You hold Ginnys other hand Harry tucked the sword and the Sorting Hat into his belt Ron took hold of the back of Harrys robes and Harry reached out and took hold of Fawkess strangely hot tail feathers .An extraordinary lightness seemed to spread through his whole body and the next second in a rush of wings they were flying upward through the pipe .Harry could hear Lockhart dangling below him saying Amazing !Amazing !This is just like magic !The chill air was whipping through Harrys hair and before hed stopped enjoying the ride it was over all four of them were hitting the wet floor of Moaning Myrtles bathroom and as Lockhart straightened his hat the sink that hid the pipe was sliding back into place .Myrtle goggled at them .Youre alive she said blankly to Harry .Theres no need to sound so disappointed he said grimly wiping flecks of blood and slime off his glasses .Oh well .Id just been thinking .if you had died youd have been welcome to share my toilet said Myrtle blushing silver .Urgh !said Ron as they left the bathroom for the dark deserted corridor outside .Harry !I think Myrtles grown fond of you !Youve got competition Ginny !But tears were still flooding silently down Ginnys face .Where now ?said Ron with an anxious look at Ginny .Harry pointed .Fawkes was leading the way glowing gold along the corridor .They strode after him and moments later found themselves outside Professor McGonagalls office .Harry knocked and pushed the door open .DOBBYS REWARD For a moment there was silence as Harry Ron Ginny and Lockhart stood in the doorway covered in muck and slime and in Harrys case blood .Then there was a scream .Ginny It was Mrs Weasley who had been sitting crying in front of the fire .She leapt to her feet closely followed by Mr Weasley and both of them flung themselves on their daughter .Harry however was looking past them .Professor Dumbledore was standing by the mantelpiece beaming next to Professor McGonagall who was taking great steadying gasps clutching her chest .Fawkes went whooshing past Harrys ear and settled on Dumbledore s shoulder just as Harry found himself and Ron being swept into Mrs Weasleys tight embrace .You saved her !You saved her !How did you do it ?I think wed all like to know that said Professor McGonagall weakly .Mrs Weasley let go of Harry who hesitated for a moment then walked over to the desk and laid upon it the Sorting Hat the rubyencrusted sword and what remained of Riddles diary .Then he started telling them everything .For nearly a quarter of an hour he spoke into the rapt silence He told them about hearing the disembodied voice how Hermione had finally realized that he was hearing a basilisk in the pipes how he and Ron had followed the spiders into the forest that Aragog had told them where the last victim of the basilisk had died how he had guessed that Moaning Myrtle had been the victim and that the entrance to the Chamber of Secrets might be in her bathroom .Very well Professor McGonagall prompted him as he paused so you found out where the entrance was breaking a hundred school rules into pieces along the way I might add but how on earth did you all get out of there alive Potter ?So Harry his voice now growing hoarse from all this talking told them about Fawkess timely arrival and about the Sorting Hat giving him the sword .But then he faltered .He had so far avoided mentioning Riddles diary or Ginny .She was standing with her head against Mrs Weasley s shoulder and tears were still coursing silently down her cheeks .What if they expelled her ?Harry thought in panic .Riddles diary didnt work anymore .How could they prove it had been he whod made her do it all ?Instinctively Harry looked at Dumbledore who smiled faintly the firelight glancing off his halfmoon spectacles .What interests me most said Dumbledore gently is how Lord Voldemort managed to enchant Ginny when my sources tell me he is currently in hiding in the forests of Albania .Relief warm sweeping glorious relief swept over Harry .Wwhats that ?said Mr Weasley in a stunned voice .YouKnowWho ?Enenchant Ginny ?But Ginny s not .Ginny hasnt been .has she ?It was this diary said Harry quickly picking it up and showing it to Dumbledore .Riddle wrote it when he was sixteen .Dumbledore took the diary from Harry and peered keenly down his long crooked nose at its burnt and soggy pages .Brilliant he said softly .Of course he was probably the most brilliant student Hogwarts has ever seen .He turned around to the Weasleys who were looking utterly bewildered .Very few people know that Lord Voldemort was once called Tom Riddle .I taught him myself fifty years ago at Hogwarts .He disappeared after leaving the school .traveled far and wide .sank so deeply into the Dark Arts consorted with the very worst of our kind underwent so many dangerous magical transformations that when he resurfaced as Lord Voldemort he was barely recognizable .Hardly anyone connected Lord Voldemort with the clever handsome boy who was once Head Boy here .But Ginny said Mrs Weasley .Whats our Ginny got to do with with him ?His ddiary !Ginny sobbed .Ive bbeen writing in it and hes been w writing back all year Ginnyl said Mr Weasley flabbergasted .Havent I taught you anything ?What have I always told you ?Never trust anything that can think for itself if you cant see where it keeps its brain .Why didnt you show the diary to me or your mother ?A suspicious object like that it was clearly full of Dark Magic I ddidnt know sobbed Ginny .I found it inside one of the books Mum got me .I ththought someone had just left it in there and forgotten about it Miss Weasley should go up to the hospital wing right away Dumbledore interrupted in a firm voice .This has been a terrible ordeal for her .There will be no punishment .Older and wiser wizards than she have been hoodwinked by Lord Voldemort .He strode over to the door and opened it .Bed rest and perhaps a large steaming mug of hot chocolate .I always find that cheers me up he added twinkling kindly down at her .You will find that Madam Pomfrey is still awake .Shes just giving out Mandrake juice I daresay the basilisks victims will be waking up any moment .So Hermiones okay !said Ron brightly .There has been no lasting harm done Ginny said Dumbledore .Mrs Weasley led Ginny out and Mr Weasley followed still looking deeply shaken .You know Minerva Professor Dumbledore said thoughtfully to Professor McGonagall I think all this merits a good feast Might I ask you to go and alert the kitchens ?Right said Professor McGonagall crisply also moving to the door .Ill leave you to deal with Potter and Weasley shall I ?Certainly said Dumbledore .She left and Harry and Ron gazed uncertainly at Dumbledore .What exactly had Professor McGonagall meant deal with them ?Surely surely they werent about to be punished ?I seem to remember telling you both that I would have to expel you if you broke any more school rules said Dumbledore .Ron opened his mouth in horror .Which goes to show that the best of us must sometimes eat our words Dumbledore went on smiling .You will both receive Special Awards for Services to the School and let me see yes I think two hundred points apiece for Gryffindor .Ron went as brightly pink as Lockharts valentine flowers and closed his mouth again .But one of us seems to be keeping mightily quiet about his part in this dangerous adventure Dumbledore added .Why so modest Gilderoy ?Harry gave a start .He had completely forgotten about Lockhart .He turned and saw that Lockhart was standing in a corner of the room still wearing his vague smile .When Dumbledore addressed him Lockhart looked over his shoulder to see who he was talking to .Professor Dumbledore Ron said quickly there was an accident down in the Chamber of Secrets .Professor Lockhart Am I a professor ?said Lockhart in mild surprise .Goodness .I expect I was hopeless was I ?He tried to do a Memory Charm and the wand backfired Ron explained quietly to Dumbledore .Dear me said Dumbledore shaking his head his long silver mustache quivering .Impaled upon your own sword Gilderoy !Sword ?said Lockhart dimly .Havent got a sword .That boy has though .He pointed at Harry .Hell lend you one .Would you mind taking Professor Lockhart up to the infirmary too ?Dumbledore said to Ron .Id like a few more words with Harry .Lockhart ambled out .Ron cast a curious look back at Dumbledore and Harry as he closed the door .Dumbledore crossed to one of the chairs by the fire .Sit down Harry he said and Harry sat feeling unaccountably nervous .First of all Harry I want to thank you said Dumbledore eyes twinkling again .You must have shown me real loyalty down in the Chamber .Nothing but that could have called Fawkes to you .He stroked the phoenix which had fluttered down onto his knee .Harry grinned awkwardly as Dumbledore watched him .And so you met Tom Riddle said Dumbledore thoughtfully .I imagine he was most interested in you .Suddenly something that was nagging at Harry came tumbling out of his mouth .Professor Dumbledore .Riddle said Im like him .Strange likenesses he said .Did he now ?said Dumbledore looking thoughtfully at Harry from under his thick silver eyebrows .And what do you think Harry ?I dont think Im like him !said Harry more loudly than hed intended .I mean Im Im in Gryffindor Im .But he fell silent a lurking doubt resurfacing in his mind .Professor he started again after a moment .The Sorting Hat told me Id Id have done well in Slytherin .Everyone thought was Slytherins heir for a while .because I can speak Parseltongue .You can speak Parseltongue Harry said Dumbledore calmly because Lord Voldemort who is the last remaining descendant of Salazar Slytherin can speak Parseltongue .Unless Im much mistaken he transferred some of his own powers to you the night he gave you that scar .Not something he intended to do Im sure .Voldemort put a bit of himself in me ?Harry said thunderstruck .It certainly seems so .So I should be in Slytherin Harry said looking desperately into Dumbledore s face .The Sorting Hat could see Slytherin s power in me and it Put you in Gryffindor said Dumbledore calmly .Listen to me Harry .You happen to have many qualities Salazar Slytherin prized in his handpicked students .His own very rare gift Parseltongue resourcefulness determination a certain disregard for rules he added his mustache quivering again .Yet the Sorting Hat placed you in Gryffindor .You know why that was .Think .It only put me in Gryffindor said Harry in a defeated voice because I asked not to go in Slytherin .Exactly said Dumbledore beaming once more .Which makes you very different from Tom Riddle .It is our choices Harry that show what we truly are far more than our abilities .Harry sat motionless in his chair stunned .If you want proof Harry that you belong in Gryffindor I suggest you look more closely at this .Dumbledore reached across to Professor McGonagalls desk picked up the bloodstained silver sword and handed it to Harry .Dully Harry turned it over the rubies blazing in the firelight .And then he saw the name engraved just below the hilt .Godric Gryffindor .Only a true Gryffindor could have pulled that out of the hat Harry said Dumbledore simply .For a minute neither of them spoke .Then Dumbledore pulled open one of the drawers in Professor McGonagalls desk and took out a quill and a bottle of ink .What you need Harry is some food and sleep .I suggest you go down to the feast while I write to Azkaban we need our gamekeeper back .And I must draft an advertisement for the Daily Prophet too he added thoughtfully .Well be needing a new Defense Against the Dark Arts teacher .Dear me we do seem to run through them dont we ?Harry got up and crossed to the door .He had just reached for the handle however when the door burst open so violently that it bounced back off the wall .Lucius Malfoy stood there fury in his face .And cowering behind his legs heavily wrapped in bandages was Dobby .Good evening Lucius said Dumbledore pleasantly .Mr Malfoy almost knocked Harry over as he swept into the room .Dobby went scurrying in after him crouching at the hem of his cloak a look of abject terror on his face .The elf was carrying a stained rag with which he was attempting to finish cleaning Mr Malfoy s shoes .Apparently Mr Malfoy had set out in a great hurry for not only were his shoes halfpolished but his usually sleek hair was disheveled .Ignoring the elf bobbing apologetically around his ankles he fixed his cold eyes upon Dumbledore .So !he said Youve come back .The governors suspended you but you still saw fit to return to Hogwarts .Well you see Lucius said Dumbledore smiling serenely the other eleven governors contacted me today .It was something like being caught in a hailstorm of owls to tell the truth .Theyd heard that Arthur Weasleys daughter had been killed and wanted me back here at once .They seemed to think I was the best man for the job after all .Very strange tales they told me too .Several of them seemed to think that you had threatened to curse their families if they didnt agree to suspend me in the first place .Mr Malfoy went even paler than usual but his eyes were still slits of fury .So have you stopped the attacks yet ?he sneered .Have you caught the culprit ?We have said Dumbledore with a smile .Well ?said Mr Malfoy sharply .Who is it ?The same person as last time Lucius said Dumbledore .But this time Lord Voldemort was acting through somebody else .By means of this diary .He held up the small black book with the large hole through the center watching Mr Malfoy closely .Harry however was watching Dobby .The elf was doing something very odd .His great eyes fixed meaningfully on Harry he kept pointing at the diary then at Mr Malfoy and then hitting himself hard on the head with his fist .I see .said Mr Malfoy slowly to Dumbledore .A clever plan said Dumbledore in a level voice still staring Mr Malfoy straight in the eye .Because if Harry here Mr Malfoy shot Harry a swift sharp look and his friend Ron hadnt discovered this book why Ginny Weasley might have taken all the blame .No one would ever have been able to prove she hadnt acted of her own free will .Mr Malfoy said nothing .His face was suddenly masklike .And imagine Dumbledore went on what might have happened then .The Weasleys are one of our most prominent pureblood families .Imagine the effect on Arthur Weasley and his Muggle Protection Act if his own daughter was discovered attacking and killing Muggleborns .Very fortunate the diary was discovered and Riddles memories wiped from it .Who knows what the consequences might have been otherwise .Mr Malfoy forced himself to speak .Very fortunate he said stiffly .And still behind his back Dobby was pointing first to the diary then to Lucius Malfoy then punching himself in the head .And Harry suddenly understood .He nodded at Dobby and Dobby backed into a corner now twisting his ears in punishment .Dont you want to know how Ginny got hold of that diary Mr Malfoy ?said Harry .Lucius Malfoy rounded on him .How should I know how the stupid little girl got hold of it ?he said .Because you gave it to her said Harry .In Flourish and Blotts .You picked up her old Transfiguration book and slipped the diary inside it didnt you ?He saw Mr Malfoys white hands clench and unclench .Prove it he hissed .Oh no one will be able to do that said Dumbledore smiling at Harry .Not now that Riddle has vanished from the book .On the other hand I would advise you Lucius not to go giving out any more of Lord Voldemorts old school things .If any more of them find their way into innocent hands I think Arthur Weasley for one will make sure they are traced back to you .Lucius Malfoy stood for a moment and Harry distinctly saw his right hand twitch as though he was longing to reach for his wand .Instead he turned to his houseelf .Were going Dobby !He wrenched open the door and as the elf came hurrying up to him he kicked him right through it .They could hear Dobby squealing with pain all the way along the corridor .Harry stood for a moment thinking hard .Then it came to him Professor Dumbledore he said hurriedly .Can I give that diary back to Mr Malfoy please ?Certainly Harry said Dumbledore calmly .But hurry .The feast remember .Harry grabbed the diary and dashed out of the office .He could hear Dobbys squeals of pain receding around the corner .Quickly wondering if this plan could possibly work Harry took off one of his shoes pulled off his slimy filthy sock and stuffed the diary into it .Then he ran down the dark corridor .He caught up with them at the top of the stairs .Mr Malfoy he gasped skidding to a halt Ive got something for you And he forced the smelly sock into Lucius Malfoys hand .What the ?Mr Malfoy ripped the sock off the diary threw it aside then looked furiously from the ruined book to Harry .Youll meet the same sticky end as your parents one of these days Harry Potter he said softly .They were meddlesome fools too .He turned to go .Come Dobby .I said come .But Dobby didnt move .He was holding up Harrys disgusting slimy sock and looking at it as though it were a priceless treasure .Master has given a sock said the elf in wonderment .Master gave it to Dobby .Whats that ?spat Mr Malfoy .What did you say ?Got a sock said Dobby in disbelief .Master threw it and Dobby caught it and Dobby Dobby is free .Lucius Malfoy stood frozen staring at the elf .Then he lunged at Harry .Youve lost me my servant boy !But Dobby shouted You shall not harm Harry Potter !There was a loud bang and Mr Malfoy was thrown backward .He crashed down the stairs three at a time landing in a crumpled heap on the landing below .He got up his face livid and pulled out his wand but Dobby raised a long threatening finger .You shall go now he said fiercely pointing down at Mr Malfoy .You shall not touch Harry Potter .You shall go now .Lucius Malfoy had no choice .With a last incensed stare at the pair of them he swung his cloak around him and hurried out of sight .Harry Potter freed Dobby !said the elf shrilly gazing up at Harry moonlight from the nearest window reflected in his orblike eyes .Harry Potter set Dobby free !Least I could do Dobby said Harry grinning .Just promise never to try and save my life again .The elfs ugly brown face split suddenly into a wide toothy smile .Ive just got one question Dobby said Harry as Dobby pulled on Harrys sock with shaking hands .You told me all this had nothing to do with HeWho MustNotBeNamed remember ?Well It was a clue sir said Dobby his eyes widening as though this was obvious .Was giving you a clue .The Dark Lord before he changed his name could be freely named you see ?Right said Harry weakly .Well Id better go .Theres a feast and my friend Hermione should be awake by now .Dobby threw his arms around Harrys middle and hugged him .Harry Potter is greater by far than Dobby knew !he sobbed .Farewell Harry Potter !And with a final loud crack Dobby disappeared .Harry had been to several Hogwarts feasts but never one quite like this .Everybody was in their pajamas and the celebration lasted all night .Harry didnt know whether the best bit was Hermione running toward him screaming You solved it !You solved it !or Justin hurrying over from the Hufflepuff table to wring his hand and apologize endlessly for suspecting him or Hagrid turning up at half past three cuffing Harry and Ron so hard on the shoulders that they were knocked into their plates of trifle or his and Rons four hundred points for Gryffindor securing the House Cup for the second year running or Professor McGonagall standing up to tell them all that the exams had been canceled as a school treat Oh no !said Hermione or Dumbledore announcing that unfortunately Professor Lockhart would be unable to return next year owing to the fact that he needed to go away and get his memory back .Quite a few of the teachers joined in the cheering that greeted this news .Shame said Ron helping himself to a jam doughnut .He was starting to grow on me .The rest of the final term passed in a haze of blazing sunshine .Hogwarts was back to normal with only a few small differences Defense Against the Dark Arts classes were canceled but weve had plenty of practice at that anyway Ron told a disgruntled Hermione and Lucius Malfoy had been sacked as a school governor .Draco was no longer strutting around the school as though he owned the place .On the contrary he looked resentful and sulky .On the other hand Ginny Weasley was perfectly happy again .Too soon it was time for the journey home on the Hogwarts Express .Harry Ron Hermione Fred George and Ginny got a compartment to themselves .They made the most of the last few hours in which they were allowed to do magic before the holidays .They played Exploding Snap set off the very last of Fred and Georges Filibuster fireworks and practiced disarming each other by magic .Harry was getting very good at it .They were almost at Kings Cross when Harry remembered something .Ginny what did you see Percy doing that he didnt want you to tell anyone ?Oh that said Ginny giggling .Well Percys got a girlfriend .Fred dropped a stack of books on Georges head .What ?Its that Ravenclaw prefect Penelope Clearwater said Ginny .Thats who he was writing to all last summer .Hes been meeting her all over the school in secret .I walked in on them kissing in an empty classroom one day .He was so upset when she was you know attacked .You wont tease him will you ?she added anxiously .Wouldnt dream of it said Fred who was looking like his birthday had come early .Definitely not said George sniggering .The Hogwarts Express slowed and finally stopped .Harry pulled out his quill and a bit of parchment and turned to Ron and Hermione .This is called a telephone number he told Ron scribbling it twice tearing the parchment in two and handing it to them .I told your dad how to use a telephone last summer hell know .Call me at the Dursleys okay ?I cant stand another two months with only Dudley to talk to .Your aunt and uncle will be proud though wont they ?said Hermione as they got off the train and joined the crowd thronging toward the enchanted barrier .When they hear what you did this year ?Proud ?said Harry .Are you crazy ?All those times I couldve died and I didnt manage it ?Theyll be furious .And together they walked back through the gateway to the Muggle world .OWL POST Harry Potter was a highly unusual boy in many ways .For one thing he hated the summer holidays more than any other time of year .For another he really wanted to do his homework but was forced to do it in secret in the dead of night .And he also happened to be a wizard .It was nearly midnight and he was lying on his stomach in bed the blankets drawn right over his head like a tent a flashlight in one hand and a large leatherbound book A History of Magic by Bathilda Bagshot propped open against the pillow .Harry moved the tip of his eaglefeather quill down the page frowning as he looked for something that would help him write his essay Witch Burning in the Fourteenth Century Was Completely Pointless discuss .The quill paused at the top of a likelylooking paragraph .Harry pushed his round glasses up the bridge of his nose moved his flashlight closer to the book and read Nonmagic people more commonly known as Muggles were particularly afraid of magic in medieval times but not very good at recognizing it .On the rare occasion that they did catch a real witch or wizard burning had no effect whatsoever .The witch or wizard would perform a basic Flame Freezing Charm and then pretend to shriek with pain while enjoying a gentle tickling sensation .Indeed Wendelin the Weird enjoyed being burned so much that she allowed herself to be caught no less than fortyseven times in various disguises .Harry put his quill between his teeth and reached underneath his pillow for his ink bottle and a roll of parchment .Slowly and very carefully he unscrewed the ink bottle dipped his quill into it and began to write pausing every now and then to listen because if any of the Dursleys heard the scratching of his quill on their way to the bathroom hed probably find himself locked in the cupboard under the stairs for the rest of the summer .The Dursley family of number four Privet Drive was the reason that Harry never enjoyed his summer holidays .Uncle Vernon Aunt Petunia and their son Dudley were Harrys only living relatives .They were Muggles and they had a very medieval attitude toward magic .Harrys dead parents who had been a witch and wizard themselves were never mentioned under the Dursleys roof .For years Aunt Petunia and Uncle Vernon had hoped that if they kept Harry as downtrodden as possible they would be able to squash the magic out of him .To their fury they had been unsuccessful .These days they lived in terror of anyone finding out that Harry had spent most of the last two years at Hogwarts School of Witchcraft and Wizardry .The most they could do however was to lock away Harrys spellbooks wand cauldron and broomstick at the start of the summer break and forbid him to talk to the neighbors .This separation from his spellbooks had been a real problem for Harry because his teachers at Hogwarts had given him a lot of holiday work .One of the essays a particularly nasty one about shrinking potions was for Harrys least favorite teacher Professor Snape who would be delighted to have an excuse to give Harry detention for a month .Harry had therefore seized his chance in the first week of the holidays .While Uncle Vernon Aunt Petunia and Dudley had gone out into the front garden to admire Uncle Vernons new company car in very loud voices so that the rest of the street would notice it too Harry had crept downstairs picked the lock on the cupboard under the stairs grabbed some of his books and hidden them in his bedroom .As long as he didnt leave spots of ink on the sheets the Dursleys need never know that he was studying magic by night .Harry was particularly keen to avoid trouble with his aunt and uncle at the moment as they were already in an especially bad mood with him all because hed received a telephone call from a fellow wizard one week into the school vacation .Ron Weasley who was one of Harrys best friends at Hogwarts came from a whole family of wizards .This meant that he knew a lot of things Harry didnt but had never used a telephone before .Most unluckily it had been Uncle Vernon who had answered the call .Vernon Dursley speaking .Harry who happened to be in the room at the time froze as he heard Rons voice answer .HELLO ?HELLO ?CAN YOU HEAR ME ?I WANT TO TALK TO HARRY POTTER !Ron was yelling so loudly that Uncle Vernon jumped and held the receiver a foot away from his ear staring at it with an expression of mingled fury and alarm .WHO IS THIS ?he roared in the direction of the mouthpiece .WHO ARE YOU ?RON WEASLEY !Ron bellowed back as though he and Uncle Vernon were speaking from opposite ends of a football field .IM A FRIEND OF HARRYS FROM SCHOOL Uncle Vernons small eyes swiveled around to Harry who was rooted to the spot .THERE IS NO HARRY POTTER HERE !he roared now holding the receiver at arms length as though frightened it might explode .I DONT KNOW WHAT SCHOOL YOURE TALKING ABOUT !NEVER CONTACT ME AGAIN !DONT YOU COME NEAR MY FAMILY !And he threw the receiver back onto the telephone as if dropping a poisonous spider .The fight that had followed had been one of the worst ever .HOW DARE YOU GIVE THIS NUMBER TO PEOPLE LIKE PEOPLE LIKE YOU !Uncle Vernon had roared spraying Harry with spit .Ron obviously realized that hed gotten Harry into trouble because he hadnt called again .Harrys other best friend from Hogwarts Hermione Granger hadnt been in touch either .Harry suspected that Ron had warned Hermione not to call which was a pity because Hermione the cleverest witch in Harrys year had Muggle parents knew perfectly well how to use a telephone and would probably have had enough sense not to say that she went to Hogwarts .So Harry had had no word from any of his wizarding friends for five long weeks and this summer was turning out to be almost as bad as the last one .There was just one very small improvement after swearing that he wouldnt use her to send letters to any of his friends Harry had been allowed to let his owl Hedwig out at night .Uncle Vernon had given in because of the racket Hedwig made if she was locked in her cage all the time .Harry finished writing about Wendelin the Weird and paused to listen again .The silence in the dark house was broken only by the distant grunting snores of his enormous cousin Dudley .It must be very late Harry thought .His eyes were itching with tiredness .Perhaps hed finish this essay tomorrow night .He replaced the top of the ink bottle pulled an old pillowcase from under his bed put the flashlight A History of Magic his essay quill and ink inside it got out of bed and hid the lot under a loose floorboard under his bed .Then he stood up stretched and checked the time on the luminous alarm clock on his bedside table .It was one oclock in the morning .Harrys stomach gave a funny jolt .He had been thirteen years old without realizing it for a whole hour .Yet another unusual thing about Harry was how little he looked forward to his birthdays .He had never received a birthday card in his life .The Dursleys had completely ignored his last two birthdays and he had no reason to suppose they would remember this one .Harry walked across the dark room past Hedwigs large empty cage to the open window .He leaned on the sill the cool night air pleasant on his face after a long time under the blankets .Hedwig had been absent for two nights now .Harry wasnt worried about her shed been gone this long before .But he hoped shed be back soon she was the only living creature in this house who didnt flinch at the sight of him .Harry though still rather small and skinny for his age had grown a few inches over the last year .His jetblack hair however was just as it always had been stubbornly untidy whatever he did to it .The eyes behind his glasses were bright green and on his forehead clearly visible through his hair was a thin scar shaped like a bolt of lightning .Of all the unusual things about Harry this scar was the most extraordinary of all .It was not as the Dursleys had pretended for ten years a souvenir of the car crash that had killed Harrys parents because Lily and James Potter had not died in a car crash .They had been murdered murdered by the most feared Dark wizard for a hundred years Lord Voldemort .Harry had escaped from the same attack with nothing more than a scar on his forehead where Voldemorts curse instead of killing him had rebounded upon its originator .Barely alive Voldemort had fled .But Harry had come facetoface with him at Hogwarts .Remembering their last meeting as he stood at the dark window Harry had to admit he was lucky even to have reached his thirteenth birthday .He scanned the starry sky for a sign of Hedwig perhaps soaring back to him with a dead mouse dangling from her beak expecting praise .Gazing absently over the rooftops it was a few seconds before Harry realized what he was seeing .Silhouetted against the golden moon and growing larger every moment was a large strangely lopsided creature and it was flapping in Harrys direction .He stood quite still watching it sink lower and lower .For a split second he hesitated his hand on the window latch wondering whether to slam it shut .But then the bizarre creature soared over one of the street lamps of Privet Drive and Harry realizing what it was leapt aside .Through the window soared three owls two of them holding up the third which appeared to be unconscious .They landed with a soft flump on Harrys bed and the middle owl which was large and gray keeled right over and lay motionless .There was a large package tied to its legs .Harry recognized the unconscious owl at once his name was Errol and he belonged to the Weasley family .Harry dashed to the bed untied the cords around Errols legs took off the parcel and then carried Errol to Hedwigs cage .Errol opened one bleary eye gave a feeble hoot of thanks and began to gulp some water .Harry turned back to the remaining owls .One of them the large snowy female was his own Hedwig .She too was carrying a parcel and looked extremely pleased with herself .She gave Harry an affectionate nip with her beak as he removed her burden then flew across the room to join Errol .Harry didnt recognize the third owl a handsome tawny one but he knew at once where it had come from because in addition to a third package it was carrying a letter bearing the Hogwarts crest .When Harry relieved this owl of its burden it ruffled its feathers importantly stretched its wings and took off through the window into the night .Harry sat down on his bed and grabbed Errols package ripped off the brown paper and discovered a present wrapped in gold and his first ever birthday card .Fingers trembling slightly he opened the envelope .Two pieces of paper fell out a letter and a newspaper clipping .The clipping had clearly come out of the wizarding newspaper the Daily Prophet because the people in the blackandwhite picture were moving .Harry picked up the clipping smoothed it out and read MINISTRY OF MAGIC EMPLOYEE SCOOPS GRAND PRIZE Arthur Weasley Head of the Misuse of Muggle Artifacts Office at the Ministry of Magic has won the annual Daily Prophet Grand Prize Galleon Draw .A delighted Mr Weasley told the Daily Prophet We will be spending the gold on a summer holiday in Egypt where our eldest son Bill works as a curse breaker for Gringotts Wizarding Bank .The Weasley family will be spending a month in Egypt returning for the start of the new school year at Hogwarts which five of the Weasley children currently attend .Harry scanned the moving photograph and a grin spread across his face as he saw all nine of the Weasleys waving furiously at him standing in front of a large pyramid .Plump little Mrs Weasley tall balding Mr Weasley six sons and one daughter all though the blackandwhite picture didnt show it with flamingred hair .Right in the middle of the picture was Ron tall and gangling with his pet rat Scabbers on his shoulder and his arm around his little sister Ginny .Harry couldnt think of anyone who deserved to win a large pile of gold more than the Weasleys who were very nice and extremely poor .He picked up Rons letter and unfolded it .Dear Harry Happy birthday !Look Im really sorry about that telephone call .I hope the Muggles didnt give you a hard time .I asked Dad and he reckons I shouldnt have shouted .Its amazing here in Egypt .Bills taken us around all the tombs and you wouldnt believe the curses those old Egyptian wizards put on them .Mum wouldnt let Ginny come in the last one .There were all these mutant skeletons in there of Muggles whod broken in and grown extra heads and stuff .I couldnt believe it when Dad won the Daily Prophet Draw .Seven hundred galleons !Most of its gone on this trip but theyre going to buy me a new wand for next year .Harry remembered only too well the occasion when Rons old wand had snapped .It had happened when the car the two of them had been flying to Hogwarts had crashed into a tree on the school grounds .Well be back about a week before term starts and well be going up to London to get my wand and our new books .Any chance of meeting you there ?Dont let the Muggles get you down !Try and come to London Ron PS .Percys Head Boy .He got the letter last week .Harry glanced back at the photograph .Percy who was in his seventh and final year at Hogwarts was looking particularly smug .He had pinned his Head Boy badge to the fez perched jauntily on top of his neat hair his hornrimmed glasses flashing in the Egyptian sun .Harry now turned to his present and unwrapped it .Inside was what looked like a miniature glass spinning top .There was another note from Ron beneath it .Harry this is a Pocket Sneakoscope .If theres someone untrustworthy around its supposed to light up and spin .Bill says its rubbish sold for wizard tourists and isnt reliable because it kept lighting up at dinner last night .But he didnt realize Fred and George had put beetles in his soup .Bye Ron Harry put the Pocket Sneakoscope on his bedside table where it stood quite still balanced on its point reflecting the luminous hands of his clock .He looked at it happily for a few seconds then picked up the parcel Hedwig had brought .Inside this too there was a wrapped present a card and a letter this time from Hermione .Dear Harry Ron wrote to me and told me about his phone call to your Uncle Vernon .I do hope youre all right .Im on holiday in France at the moment and I didnt know how I was going to send this to you what if theyd opened it at customs ?but then Hedwig turned up !I think she wanted to make sure you got something for your birthday for a change .I bought your present by owlorder there was an advertisement in the Daily Prophet Ive been getting it delivered its so good to keep up with whats going on in the wizarding world .Did you see that picture of Ron and his family a week ago ?I bet hes learning loads .Im really jealous the ancient Egyptian wizards were fascinating .Theres some interesting local history of witchcraft here too .Ive rewritten my whole History of Magic essay to include some of the things Ive found out .I hope its not too long its two rolls of parchment more than Professor Binns asked for .Ron says hes going to be in London in the last week of the holidays .Can you make it ?Will your aunt and uncle let you come ?I really hope you can .If not Ill see you on the Hogwarts Express on September first !Love from Hermione PS .Ron says Percys Head Boy .Ill bet Percys really pleased .Ron doesnt seem too happy about it .Harry laughed as he put Hermione s letter aside and picked up her present .It was very heavy .Knowing Hermione he was sure it would be a large book full of very difficult spells but it wasnt .His heart gave a huge bound as he ripped back the paper and saw a sleek black leather case with silver words stamped across it reading Broomstick Servicing Kit .Wow Hermione !Harry whispered unzipping the case to look inside .There was a large jar of Fleetwoods HighFinish Handle Polish a pair of gleaming silver TailTwig Clippers a tiny brass compass to clip on your broom for long journeys and a Handbook of DoItYourself Broomcare .Apart from his friends the thing that Harry missed most about Hogwarts was Quidditch the most popular sport in the magical world highly dangerous very exciting and played on broomsticks .Harry happened to be a very good Quidditch player he had been the youngest person in a century to be picked for one of the Hogwarts House teams .One of Harrys most prized possessions was his Nimbus Two Thousand racing broom .Harry put the leather case aside and picked up his last parcel .He recognized the untidy scrawl on the brown paper at once this was from Hagrid the Hogwarts gamekeeper .He tore off the top layer of paper and glimpsed something green and leathery but before he could unwrap it properly the parcel gave a strange quiver and whatever was inside it snapped loudly as though it had jaws .Harry froze .He knew that Hagrid would never send him anything dangerous on purpose but then Hagrid didnt have a normal persons view of what was dangerous .Hagrid had been known to befriend giant spiders buy vicious threeheaded dogs from men in pubs and sneak illegal dragon eggs into his cabin .Harry poked the parcel nervously .It snapped loudly again .Harry reached for the lamp on his bedside table gripped it firmly in one hand and raised it over his head ready to strike .Then he seized the rest of the wrapping paper in his other hand and pulled .And out fell a book .Harry just had time to register its handsome green cover emblazoned with the golden title The Monster Book of Monsters before it flipped onto its edge and scuttled sideways along the bed like some weird crab .Uhoh Harry muttered .The book toppled off the bed with a loud clunk and shuffled rapidly across the room .Harry followed it stealthily .The book was hiding in the dark space under his desk .Praying that the Dursleys were still fast asleep Harry got down on his hands and knees and reached toward it .Ouch !The book snapped shut on his hand and then flapped past him still scuttling on its covers .Harry scrambled around threw himself forward and managed to flatten it .Uncle Vernon gave a loud sleepy grunt in the room next door .Hedwig and Errol watched interestedly as Harry clamped the struggling book tightly in his arms hurried to his chest of drawers and pulled out a belt which he buckled tightly around it .The Monster Book shuddered angrily but could no longer flap and snap so Harry threw it down on the bed and reached for Hagrids card .Dear Harry Happy birthday !Think you might find this useful for next year .Wont say no more here .Tell you when I see you .Hope the Muggles are treating you right .All the best Hagrid It struck Harry as ominous that Hagrid thought a biting book would come in useful but he put Hagrids card up next to Rons and Hermiones grinning more broadly than ever .Now there was only the letter from Hogwarts left .Noticing that it was rather thicker than usual Harry slit open the envelope pulled out the first page of parchment within and read Dear Mr Potter Please note that the new school year will begin on September the first .The Hogwarts Express will leave from Kings Cross station platform nine and three quarters at eleven oclock .Third years are permitted to visit the village of Hogsmeade on certain weekends .Please give the enclosed permission form to your parent or guardian to sign .A list of books for next year is enclosed .Yours sincerely Professor M .McGonagall Deputy Headmistress Harry pulled out the Hogsmeade permission form and looked at it no longer grinning .It would be wonderful to visit Hogsmeade on weekends he knew it was an entirely wizarding village and he had never set foot there .But how on earth was he going to persuade Uncle Vernon or Aunt Petunia to sign the form ?He looked over at the alarm clock .It was now two oclock in the morning .Deciding that hed worry about the Hogsmeade form when he woke up Harry got back into bed and reached up to cross off another day on the chart hed made for himself counting down the days left until his return to Hogwarts .Then he took off his glasses and lay down eyes open facing his three birthday cards .Extremely unusual though he was at that moment Harry Potter felt just like everyone else glad for the first time in his life that it was his birthday .AUNT MARGES BIG MISTAKE Harry went down to breakfast the next morning to find the three Dursleys already sitting around the kitchen table .They were watching a brandnew television a welcomehomeforthesummer present for Dudley who had been complaining loudly about the long walk between the fridge and the television in the living room .Dudley had spent most of the summer in the kitchen his piggy little eyes fixed on the screen and his five chins wobbling as he ate continually .Harry sat down between Dudley and Uncle Vernon a large beefy man with very little neck and a lot of mustache .Far from wishing Harry a happy birthday none of the Dursleys made any sign that they had noticed Harry enter the room but Harry was far too used to this to care .He helped himself to a piece of toast and then looked up at the reporter on the television who was halfway through a report on an escaped convict .The public is warned that Black is armed and extremely dangerous .A special hot line has been set up and any sighting of Black should be reported immediately .No need to tell us hes no good snorted Uncle Vernon staring over the top of his newspaper at the prisoner .Look at the state of him the filthy layabout !Look at his hair !He shot a nasty look sideways at Harry whose untidy hair had always been a source of great annoyance to Uncle Vernon .Compared to the man on the television however whose gaunt face was surrounded by a matted elbowlength tangle Harry felt very well groomed indeed .The reporter had reappeared .The Ministry of Agriculture and Fisheries will announce today Hang on !barked Uncle Vernon staring furiously at the reporter .You didnt tell us where that maniacs escaped from !What use is that ?Lunatic could be coming up the street right now !Aunt Petunia who was bony and horsefaced whipped around and peered intently out of the kitchen window .Harry knew Aunt Petunia would simply love to be the one to call the hot line number .She was the nosiest woman in the world and spent most of her life spying on the boring lawabiding neighbors .When will they learn said Uncle Vernon pounding the table with his large purple fist that hangings the only way to deal with these people ?Very true said Aunt Petunia who was still squinting into next doors runner beans .Uncle Vernon drained his teacup glanced at his watch and added Id better be off in a minute Petunia .Marges train gets in at ten .Harry whose thoughts had been upstairs with the Broomstick Servicing Kit was brought back to earth with an unpleasant bump .Aunt Marge ?he blurted out .Sh shes not coming here is she ?Aunt Marge was Uncle Vernons sister .Even though she was not a blood relative of Harrys whose mother had been Aunt Petunias sister he had been forced to call her Aunt all his life .Aunt Marge lived in the country in a house with a large garden where she bred bulldogs .She didnt often stay at Privet Drive because she couldnt bear to leave her precious dogs but each of her visits stood out horribly vividly in Harrys mind .At Dudleys fifth birthday party Aunt Marge had whacked Harry around the shins with her walking stick to stop him from beating Dudley at musical statues .A few years later she had turned up at Christmas with a computerized robot for Dudley and a box of dog biscuits for Harry .On her last visit the year before Harry started at Hogwarts Harry had accidentally trodden on the tail of her favorite dog .Ripper had chased Harry out into the garden and up a tree and Aunt Marge had refused to call him off until past midnight .The memory of this incident still brought tears of laughter to Dudleys eyes .Margell be here for a week Uncle Vernon snarled and while were on the subject he pointed a fat finger threateningly at Harry we need to get a few things straight before I go and collect her .Dudley smirked and withdrew his gaze from the television .Watching Harry being bullied by Uncle Vernon was Dudleys favorite form of entertainment .Firstly growled Uncle Vernon youll keep a civil tongue in your head when youre talking to Marge .All right said Harry bitterly if she does when shes talking to me .Secondly said Uncle Vernon acting as though he had not heard Harrys reply as Marge doesnt know anything about your abnormality I dont want any any funny stuff while shes here .You behave yourself got me ?I will if she does said Harry through gritted teeth .And thirdly said Uncle Vernon his mean little eyes now slits in his great purple face weve told Marge you attend St .Brutuss Secure Center for Incurably Criminal Boys .What ?Harry yelled .And youll be sticking to that story boy or therell be trouble spat Uncle Vernon .Harry sat there whitefaced and furious staring at Uncle Vernon hardly able to believe it .Aunt Marge coming for a weeklong visit it was the worst birthday present the Dursleys had ever given him including that pair of Uncle Vernons old socks .Well Petunia said Uncle Vernon getting heavily to his feet 111 be off to the station then .Want to come along for the ride Dudders ?No said Dudley whose attention had returned to the television now that Uncle Vernon had finished threatening Harry .Duddys got to make himself smart for his auntie said Aunt Petunia smoothing Dudleys thick blond hair .Mummys bought him a lovely new bow tie .Uncle Vernon clapped Dudley on his porky shoulder .See you in a bit then he said and he left the kitchen .Harry who had been sitting in a kind of horrified trance had a sudden idea .Abandoning his toast he got quickly to his feet and followed Uncle Vernon to the front door .Uncle Vernon was pulling on his car coat .Im not taking you he snarled as he turned to see Harry watching him .Like I wanted to come said Harry coldly .I want to ask you something .Uncle Vernon eyed him suspiciously .Third years at Hog at my school are allowed to visit the village sometimes said Harry .So ?snapped Uncle Vernon taking his car keys from a hook next to the door .I need you to sign the permission form said Harry in a rush .And why should I do that ?sneered Uncle Vernon .Well said Harry choosing his words carefully itll be hard work pretending to Aunt Marge I go to that St .Whatsits St .Brutuss Secure Center for Incurably Criminal Boys !bellowed Uncle Vernon and Harry was pleased to hear a definite note of panic in Uncle Vernons voice .Exactly said Harry looking calmly up into Uncle Vernons large purple face .Its a lot to remember .Ill have to make it sound convincing wont I ?What if I accidentally let something slip ?Youll get the stuffing knocked out of you wont you ?roared Uncle Vernon advancing on Harry with his fist raised .But Harry stood his ground .Knocking the stuffing out of me wont make Aunt Marge forget what I could tell her he said grimly .Uncle Vernon stopped his fist still raised his face an ugly puce .But if you sign my permission form Harry went on quickly I swear Ill remember where Im supposed to go to school and Ill act like a Mug like Im normal and everything .Harry could tell that Uncle Vernon was thinking it over even if his teeth were bared and a vein was throbbing in his temple .Right he snapped finally .I shall monitor your behavior carefully during Marges visit .If at the end of it youve toed the line and kept to the story Ill sign your ruddy form .He wheeled around pulled open the front door and slammed it so hard that one of the little panes of glass at the top fell out .Harry didnt return to the kitchen .He went back upstairs to his bedroom .If he was going to act like a real Muggle hed better start now .Slowly and sadly he gathered up all his presents and his birthday cards and hid them under the loose floorboard with his homework .Then he went to Hedwigs cage .Errol seemed to have recovered he and Hedwig were both asleep heads under their wings .Harry sighed then poked them both awake .Hedwig he said gloomily youre going to have to clear off for a week .Go with Errol .Ronll look after you .Ill write him a note explaining .And dont look at me like that Hedwigs large amber eyes were reproachful its not my fault .Its the only way Ill be allowed to visit Hogsmeade with Ron and Hermione .Ten minutes later Errol and Hedwig who had a note to Ron bound to her leg soared out of the window and out of sight .Harry now feeling thoroughly miserable put the empty cage away inside the wardrobe .But Harry didnt have long to brood .In next to no time Aunt Petunia was shrieking up the stairs for Harry to come down and get ready to welcome their guest .Do something about your hair !Aunt Petunia snapped as he reached the hall .Harry couldnt see the point of trying to make his hair lie flat .Aunt Marge loved criticizing him so the untidier he looked the happier she would be .All too soon there was a crunch of gravel outside as Uncle Vernons car pulled back into the driveway then the clunk of the car doors and footsteps on the garden path .Get the door !Aunt Petunia hissed at Harry .A feeling of great gloom in his stomach Harry pulled the door open .On the threshold stood Aunt Marge .She was very like Uncle Vernon large beefy and purplefaced she even had a mustache though not as bushy as his .In one hand she held an enormous suitcase and tucked under the other was an old and eviltempered bulldog .Wheres my Dudders ?roared Aunt Marge .Wheres my neffypoo ?Dudley came waddling down the hall his blond hair plastered flat to his fat head a bow tie just visible under his many chins .Aunt Marge thrust the suitcase into Harrys stomach knocking the wind out of him seized Dudley in a tight onearmed hug and planted a large kiss on his cheek .Harry knew perfectly well that Dudley only put up with Aunt Marges hugs because he was well paid for it and sure enough when they broke apart Dudley had a crisp twentypound note clutched in his fat fist .Petunia !shouted Aunt Marge striding past Harry as though he was a hat stand .Aunt Marge and Aunt Petunia kissed or rather Aunt Marge bumped her large jaw against Aunt Petunias bony cheekbone .Uncle Vernon now came in smiling jovially as he shut the door .Tea Marge ?he said .And what will Ripper take ?Ripper can have some tea out of my saucer said Aunt Marge as they all proceeded into the kitchen leaving Harry alone in the hall with the suitcase .But Harry wasnt complaining any excuse not to be with Aunt Marge was fine by him so he began to heave the case upstairs into the spare bedroom taking as long as he could .By the time he got back to the kitchen Aunt Marge had been supplied with tea and fruitcake and Ripper was lapping noisily in the corner .Harry saw Aunt Petunia wince slightly as specks of tea and drool flecked her clean floor .Aunt Petunia hated animals .Whos looking after the other dogs Marge ?Uncle Vernon asked .Oh Ive got Colonel Fubster managing them boomed Aunt Marge .Hes retired now good for him to have something to do .But I couldnt leave poor old Ripper .He pines if hes away from me .Ripper began to growl again as Harry sat down .This directed Aunt Marges attention to Harry for the first time .So !she barked .Still here are you ?Yes said Harry .Dont you say ‘yes in that ungrateful tone Aunt Marge growled .Its damn good of Vernon and Petunia to keep you .Wouldnt have done it myself .Youd have gone straight to an orphanage if youd been dumped on my doorstep .Harry was bursting to say that hed rather live in an orphanage than with the Dursleys but the thought of the Hogsmeade form stopped him .He forced his face into a painful smile .Dont you smirk at me !boomed Aunt Marge .I can see you havent improved since I last saw you .I hoped school would knock some manners into you .She took a large gulp of tea wiped her mustache and said Where is it that you send him again Vernon ?St .Brutuss said Uncle Vernon promptly .Its a firstrate institution for hopeless cases .I see said Aunt Marge .Do they use the cane at St .Brutuss boy ?she barked across the table .Er Uncle Vernon nodded curtly behind Aunt Marges back .Yes said Harry .Then feeling he might as well do the thing properly he added all the time .Excellent said Aunt Marge .I wont have this nambypamby wishywashy nonsense about not hitting people who deserve it .A good thrashing is whats needed in ninetynine cases out of a hundred .Have you been beaten often ?Oh yeah said Harry loads of times .Aunt Marge narrowed her eyes .I still dont like your tone boy she said .If you can speak of your beatings in that casual way they clearly arent hitting you hard enough .Petunia Id write if I were you .Make it clear that you approve the use of extreme force in this boys case .Perhaps Uncle Vernon was worried that Harry might forget their bargain in any case he changed the subject abruptly .Heard the news this morning Marge ?What about that escaped prisoner eh ?As Aunt Marge started to make herself at home Harry caught himself thinking almost longingly of life at number four without her .Uncle Vernon and Aunt Petunia usually encouraged Harry to stay out of their way which Harry was only too happy to do .Aunt Marge on the other hand wanted Harry under her eye at all times so that she could boom out suggestions for his improvement .She delighted in comparing Harry with Dudley and took huge pleasure in buying Dudley expensive presents while glaring at Harry as though daring him to ask why he hadnt got a present too .She also kept throwing out dark hints about what made Harry such an unsatisfactory person .You mustnt blame yourself for the way the boys turned out Vernon she said over lunch on the third day .If theres something rotten on the inside theres nothing anyone can do about it .Harry tried to concentrate on his food but his hands shook and his face was starting to burn with anger .Remember the form he told himself .Think about Hogsmeade .Dont say anything .Dont rise Aunt Marge reached for her glass of wine .Its one of the basic rules of breeding she said .You see it all the time with dogs .If theres something wrong with the bitch therell be something wrong with the pup At that moment the wineglass Aunt Marge was holding exploded in her hand .Shards of glass flew in every direction and Aunt Marge sputtered and blinked her great ruddy face dripping .Marge !squealed Aunt Petunia .Marge are you all right ?Not to worry grunted Aunt Marge mopping her face with her napkin .Must have squeezed it too hard .Did the same thing at Colonel Fubsters the other day .No need to fuss Petunia I have a very firm grip .But Aunt Petunia and Uncle Vernon were both looking at Harry suspiciously so he decided hed better skip dessert and escape from the table as soon as he could .Outside in the hall he leaned against the wall breathing deeply .It had been a long time since hed lost control and made something explode .He couldnt afford to let it happen again .The Hogsmeade form wasnt the only thing at stake if he carried on like that hed be in trouble with the Ministry of Magic .Harry was still an underage wizard and he was forbidden by wizard law to do magic outside school .His record wasnt exactly clean either .Only last summer hed gotten an official warning that had stated quite clearly that if the Ministry got wind of any more magic in Privet Drive Harry would face expulsion from Hogwarts .He heard the Dursleys leaving the table and hurried upstairs out of the way .Harry got through the next three days by forcing himself to think about his Handbook of DoItYourself Broomcare whenever Aunt Marge started on him .This worked quite well though it seemed to give him a glazed look because Aunt Marge started voicing the opinion that he was mentally subnormal .At last at long last the final evening of Marges stay arrived .Aunt Petunia cooked a fancy dinner and Uncle Vernon uncorked several bottles of wine .They got all the way through the soup and the salmon without a single mention of Harrys faults during the lemon meringue pie Uncle Vernon bored them all with a long talk about Grunnings his drillmaking company then Aunt Petunia made coffee and Uncle Vernon brought out a bottle of brandy .Can I tempt you Marge ?Aunt Marge had already had quite a lot of wine .Her huge face was very red .Just a small one then she chuckled .A bit more than that .and a bit more .thats the ticket .Dudley was eating his fourth slice of pie .Aunt Petunia was sipping coffee with her little finger sticking out .Harry really wanted to disappear into his bedroom but he met Uncle Vernons angry little eyes and knew he would have to sit it out .Aah said Aunt Marge smacking her lips and putting the empty brandy glass back down .Excellent nosh Petunia .Its normally just a fryup for me of an evening with twelve dogs to look after .She burped richly and patted her great tweed stomach .Pardon me .But I do like to see a healthysized boy she went on winking at Dudley .Youll be a proper sized man Dudders like your father .Yes Ill have a spot more brandy Vernon .Now this one here She jerked her head at Harry who felt his stomach clench .The Handbook he thought quickly .This ones got a mean runty look about him .You get that with dogs .I had Colonel Fubster drown one last year .Ratty little thing it was .Weak .Underbred .Harry was trying to remember page twelve of his book A Charm to Cure Reluctant Reversers .It all comes down to blood as I was saying the other day .Bad blood will out .Now Im saying nothing against your family Petunia she patted Aunt Petunias bony hand with her shovellike one but your sister was a bad egg .They turn up in the best families .Then she ran off with a wastrel and heres the result right in front of us .Harry was staring at his plate a funny ringing in his ears .Grasp your broom firmly by the tail he thought .But he couldnt remember what came next .Aunt Marges voice seemed to be boring into him like one of Uncle Vernons drills .This Potter said Aunt Marge loudly seizing the brandy bottle and splashing more into her glass and over the tablecloth you never told me what he did ?Uncle Vernon and Aunt Petunia were looking extremely tense .Dudley had even looked up from his pie to gape at his parents .He didnt work said Uncle Vernon with half a glance at Harry .Unemployed .As I expected !said Aunt Marge taking a huge swig of brandy and wiping her chin on her sleeve .A no account goodfornothing lazy scrounger who He was not said Harry suddenly .The table went very quiet .Harry was shaking all over .He had never felt so angry in his life .MORE BRANDY !yelled Uncle Vernon who had gone very white .He emptied the bottle into Aunt Marges glass .You boy he snarled at Harry .Go to bed go on No Vernon hiccuped Aunt Marge holding up a hand her tiny bloodshot eyes fixed on Harrys .Go on boy go on .Proud of your parents are you ?They go and get themselves killed in a car crash drunk I expect They didnt die in a car crash !said Harry who found himself on his feet .They died in a car crash you nasty little liar and left you to be a burden on their decent hardworking relatives !screamed Aunt Marge swelling with fury .You are an insolent ungrateful little But Aunt Marge suddenly stopped speaking .For a moment it looked as though words had failed her .She seemed to be swelling with inexpressible anger but the swelling didnt stop .Her great red face started to expand her tiny eyes bulged and her mouth stretched too tightly for speech next second several buttons had just burst from her tweed jacket and pinged off the walls she was inflating like a monstrous balloon her stomach bursting free of her tweed waistband each of her fingers blowing up like a salami MARGE !yelled Uncle Vernon and Aunt Petunia together as Aunt Marges whole body began to rise off her chair toward the ceiling .She was entirely round now like a vast life buoy with piggy eyes and her hands and feet stuck out weirdly as she drifted up into the air making apoplectic popping noises .Ripper came skidding into the room barking madly .NOOOOOOO !Uncle Vernon seized one of Marges feet and tried to pull her down again but was almost lifted from the floor himself .A second later Ripper leapt forward and sank his teeth into Uncle Vernons leg .Harry tore from the dining room before anyone could stop him heading for the cupboard under the stairs .The cupboard door burst magically open as he reached it .In seconds he had heaved his trunk to the front door .He sprinted upstairs and threw himself under the bed wrenching up the loose floorboard and grabbed the pillowcase full of his books and birthday presents .He wriggled out seized Hedwigs empty cage and dashed back downstairs to his trunk just as Uncle Vernon burst out of the dining room his trouser leg in bloody tatters .COME BACK IN HERE !he bellowed .COME BACK AND PUT HER RIGHT !But a reckless rage had come over Harry .He kicked his trunk open pulled out his wand and pointed it at Uncle Vernon .She deserved it Harry said breathing very fast .She deserved what she got .You keep away from me .He fumbled behind him for the latch on the door .Im going Harry said .Ive had enough .And in the next moment he was out in the dark quiet street heaving his heavy trunk behind him Hedwigs cage under his arm .3 THE KNIGHT BUS Harry was several streets away before he collapsed onto a low wall in Magnolia Crescent panting from the effort of dragging his trunk .He sat quite still anger still surging through him listening to the frantic thumping of his heart .But after ten minutes alone in the dark street a new emotion overtook him panic .Whichever way he looked at it he had never been in a worse fix .He was stranded quite alone in the dark Muggle world with absolutely nowhere to go .And the worst of it was he had just done serious magic which meant that he was almost certainly expelled from Hogwarts .He had broken the Decree for the Restriction of Underage Wizardry so badly he was surprised Ministry of Magic representatives werent swooping down on him where he sat .Harry shivered and looked up and down Magnolia Crescent .What was going to happen to him ?Would he be arrested or would he simply be outlawed from the wizarding world ?He thought of Ron and Hermione and his heart sank even lower .Harry was sure that criminal or not Ron and Hermione would want to help him now but they were both abroad and with Hedwig gone he had no means of contacting them .He didnt have any Muggle money either .There was a little wizard gold in the money bag at the bottom of his trunk but the rest of the fortune his parents had left him was stored in a vault at Gringotts Wizarding Bank in London .Hed never be able to drag his trunk all the way to London .Unless .He looked down at his wand which he was still clutching in his hand .If he was already expelled his heart was now thumping painfully fast a bit more magic couldnt hurt .He had the Invisibility Cloak he had inherited from his father what if he bewitched the trunk to make it featherlight tied it to his broomstick covered himself in the cloak and flew to London ?Then he could get the rest of his money out of his vault and .begin his life as an outcast .It was a horrible prospect but he couldnt sit on this wall forever or hed find himself trying to explain to Muggle police why he was out in the dead of night with a trunkful of spellbooks and a broomstick .Harry opened his trunk again and pushed the contents aside looking for the Invisibility Cloak but before he had found it he straightened up suddenly looking around him once more .A funny prickling on the back of his neck had made Harry feel he was being watched but the street appeared to be deserted and no lights shone from any of the large square houses .He bent over his trunk again but almost immediately stood up once more his hand clenched on his wand .He had sensed rather than heard it someone or something was standing in the narrow gap between the garage and the fence behind him .Harry squinted at the black alleyway .If only it would move then hed know whether it was just a stray cat or something else .Lumos Harry muttered and a light appeared at the end of his wand almost dazzling him .He held it high over his head and the pebbledashed walls of number two suddenly sparkled the garage door gleamed and between them Harry saw quite distinctly the hulking outline of something very big with wide gleaming eyes .Harry stepped backward .His legs hit his trunk and he tripped .His wand flew out of his hand as he flung out an arm to break his fall and he landed hard in the gutter There was a deafening BANG and Harry threw up his hands to shield his eyes against a sudden blinding light With a yell he rolled back onto the pavement just in time .A second later a gigantic pair of wheels and headlights screeched to a halt exactly where Harry had just been lying .They belonged as Harry saw when he raised his head to a tripledecker violently purple bus which had appeared out of thin air .Gold lettering over the windshield spelled The Knight Bus .For a split second Harry wondered if he had been knocked silly by his fall .Then a conductor in a purple uniform leapt out of the bus and began to speak loudly to the night .Welcome to the Knight Bus emergency transport for the stranded witch or wizard .Just stick out your wand hand step on board and we can take you anywhere you want to go .My name is Stan Shunpike and I will be your conductor this eve The conductor stopped abruptly .He had just caught sight of Harry who was still sitting on the ground .Harry snatched up his wand again and scrambled to his feet .Close up he saw that Stan Shunpike was only a few years older than he was eighteen or nineteen at most with large protruding ears and quite a few pimples .What were you doin down there ?said Stan dropping his professional manner .Fell over said Harry .Choo fall over for ?sniggered Stan .I didnt do it on purpose said Harry annoyed .One of the knees in his jeans was torn and the hand he had thrown out to break his fall was bleeding .He suddenly remembered why he had fallen over and turned around quickly to stare at the alleyway between the garage and fence .The Knight Buss headlamps were flooding it with light and it was empty .Choo lookin at ?said Stan .There was a big black thing said Harry pointing uncertainly into the gap .Like a dog .but massive He looked around at Stan whose mouth was slightly open .With a feeling of unease Harry saw Stans eyes move to the scar on Harrys forehead .Woss that on your ead ?said Stan abruptly .Nothing said Harry quickly flattening his hair over his scar .If the Ministry of Magic was looking for him he didnt want to make it too easy for them .Woss your name ?Stan persisted .Neville Longbottom said Harry saying the first name that came into his head .So so this bus he went on quickly hoping to distract Stan did you say it goes anywhere ?Yep said Stan proudly anywhere you like longs its on land .Cant do nuffink underwater .Ere he said looking suspicious again you did flag us down dincha ?Stuck out your wand and dincha ?Yes said Harry quickly .Listen how much would it be to get to London ?Eleven Sickles said Stan but for firteen you get ot chocolate and for fifteen you get an ot water bottle an a toofbrush in the color of your choice .Harry rummaged once more in his trunk extracted his money bag and shoved some gold into Stans hand .He and Stan then lifted his trunk with Hedwigs cage balanced on top up the steps of the bus .There were no seats instead half a dozen brass bedsteads stood beside the curtained windows .Candles were burning in brackets beside each bed illuminating the woodpaneled walls .A tiny wizard in a nightcap at the rear of the bus muttered Not now thanks Im pickling some slugs and rolled over in his sleep .You ave this one Stan whispered shoving Harrys trunk under the bed right behind the driver who was sitting in an armchair in front of the steering wheel .This is our driver Ernie Prang .This is Neville Longbottom Ern .Ernie Prang an elderly wizard wearing very thick glasses nodded to Harry who nervously flattened his bangs again and sat down on his bed .Take er away Ern said Stan sitting down in the armchair next to Ernies .There was another tremendous BANG and the next moment Harry found himself flat on his bed thrown backward by the speed of the Knight Bus .Pulling himself up Harry stared out of the dark window and saw that they were now bowling along a completely different street .Stan was watching Harrys stunned face with great enjoyment .This is where we was before you flagged us down he said .Where are we Ern ?Somewhere in Wales ?Ar said Ernie .How come the Muggles dont hear the bus ?said Harry .Them !said Stan contemptuously .Don listen properly do they ?Don look properly either .Never notice nuffink they don .Best go wake up Madam Marsh Stan said Ern .Well be in Abergavenny in a minute .Stan passed Harrys bed and disappeared up a narrow wooden staircase .Harry was still looking out of the window feeling increasingly nervous .Ernie didnt seem to have mastered the use of a steering wheel .The Knight Bus kept mounting the pavement but it didnt hit anything lines of lampposts mailboxes and trash cans jumped out of its way as it approached and back into position once it had passed .Stan came back downstairs followed by a faintly green witch wrapped in a traveling cloak .Ere you go Madam Marsh said Stan happily as Ern stamped on the brake and the beds slid a foot or so toward the front of the bus .Madam Marsh clamped a handkerchief to her mouth and tottered down the steps .Stan threw her bag out after her and rammed the doors shut there was another loud BANG and they were thundering down a narrow country lane trees leaping out of the way .Harry wouldnt have been able to sleep even if he had been traveling on a bus that didnt keep banging loudly and jumping a hundred miles at a time .His stomach churned as he fell back to wondering what was going to happen to him and whether the Dursleys had managed to get Aunt Marge off the ceiling yet .Stan had unfurled a copy of the Daily Prophet and was now reading with his tongue between his teeth .A large photograph of a sunkenfaced man with long matted hair blinked slowly at Harry from the front page .He looked strangely familiar .That man !Harry said forgetting his troubles for a moment .He was on the Muggle news !Stanley turned to the front page and chuckled .Sirius Black he said nodding .Course e was on the Muggle news Neville where you been ?He gave a superior sort of chuckle at the blank look on Harrys face removed the front page and handed it to Harry .You oughta read the papers more Neville .Harry held the paper up to the candlelight and read BLACK STILL AT LARGE Sirius Black possibly the most infamous prisoner ever to be held in Azkaban fortress is still eluding capture the Ministry of Magic confirmed today .We are doing all we can to recapture Black said the Minister of Magic Cornelius Fudge this morning and we beg the magical community to remain calm .Fudge has been criticized by some members of the International Federation of Warlocks for informing the Muggle Prime Minister of the crisis .Well really I had to dont you know said an irritable Fudge .Black is mad .Hes a danger to anyone who crosses him magic or Muggle .I have the Prime Ministers assurance that he will not breathe a word of Blacks true identity to anyone .And lets face it whod believe him if he did ?While Muggles have been told that Black is carrying a gun a kind of metal wand that Muggles use to kill each other the magical community lives in fear of a massacre like that of twelve years ago when Black murdered thirteen people with a single curse .Harry looked into the shadowed eyes of Sirius Black the only part of the sunken face that seemed alive .Harry had never met a vampire but he had seen pictures of them in his Defense Against the Dark Arts classes and Black with his waxy white skin looked just like one .Scarylookin fing inee ?said Stan who had been watching Harry read .He murdered thirteen people ?said Harry handing the page back to Stan with one curse ?Yep said Stan in front of witnesses an all .Broad daylight .Big trouble it caused dinnit Ern ?Ar said Ern darkly .Stan swiveled in his armchair his hands on the back the better to look at Harry .Black woz a big supporter of YouKnowOo he said .What Voldemort ?said Harry without thinking .Even Stans pimples went white Ern jerked the steering wheel so hard that a whole farmhouse had to jump aside to avoid the bus .You outta your tree ?yelped Stan .Choo say is name for ?Sorry said Harry hastily .Sorry I I forgot Forgot !said Stan weakly .Blimey my earts goin that fast .So so Black was a supporter of YouKnowWho ?Harry prompted apologetically .Yeah said Stan still rubbing his chest .Yeah thats right .Very close to YouKnowOo they say .Anyway when little Arry Potter got the better of You KnowOo Harry nervously flattened his bangs down again .all YouKnowOos supporters was tracked down wasnt they Ern ?Most of em knew it was all over wiv YouKnowOo gone and they came quiet .But not Sirius Black .I eard he thought ed be secondin command once YouKnowOo ad taken over .Anyway they cornered Black in the middle of a street full of Muggles an Black took out is wand and e blasted alf the street apart an a wizard got it an so did a dozen Muggles what got in the way .Orrible eh ?An you know what Black did then ?Stan continued in a dramatic whisper .What ?said Harry .Laughed said Stan .Jus stood there an laughed .An when reinforcements from the Ministry of Magic got there e went wiv em quiet as anyfink still laughing is ead off .Cos es mad inee Ern ?Inee mad ?If he werent when he went to Azkaban he will be now said Ern in his slow voice .Id blow meself up before I set foot in that place .Serves him right mind you .after what he did .They ad a job coverin it up din they Ern ?Stan said .Ole street blown up an all them Muggles dead .What was it they said ad appened Ern ?Gas explosion grunted Ernie .An now es out said Stan examining the newspaper picture of Blacks gaunt face again .Never been a breakout from Azkaban before as there Ern ?Beats me ow e did it .Frightenin eh ?Mind I dont fancy is chances against them Azkaban guards eh Ern ?Ernie suddenly shivered .Talk about summat else Stan theres a good lad .Them Azkaban guards give me the collywobbles .Stan put the paper away reluctantly and Harry leaned against the window of the Knight Bus feeling worse than ever .He couldnt help imagining what Stan might be telling his passengers in a few nights time .Ear about that Arry Potter ?Blew up is aunt !We ad im ere on the Knight Bus dint we Ern ?E was tryin to run for it .He Harry had broken wizard law just like Sirius Black .Was inflating Aunt Marge bad enough to land him in Azkaban ?Harry didnt know anything about the wizard prison though everyone hed ever heard speak of it did so in the same fearful tone .Hagrid the Hogwarts gamekeeper had spent two months there only last year .Harry wouldnt soon forget the look of terror on Hagrid s face when he had been told where he was going and Hagrid was one of the bravest people Harry knew .The Knight Bus rolled through the darkness scattering bushes and wastebaskets telephone booths and trees and Harry lay restless and miserable on his feather bed .After a while Stan remembered that Harry had paid for hot chocolate but poured it all over Harrys pillow when the bus moved abruptly from Anglesey to Aberdeen .One by one wizards and witches in dressing gowns and slippers descended from the upper floors to leave the bus .They all looked very pleased to go .Finally Harry was the only passenger left .Right then Neville said Stan clapping his hands whereabouts in London ?Diagon Alley said Harry .Righto said Stan .Old tight then .BANG !They were thundering along Charing Cross Road .Harry sat up and watched buildings and benches squeezing themselves out of the Knight Buss way .The sky was getting a little lighter .He would lie low for a couple of hours go to Gringotts the moment it opened then set off where he didnt know .Ern slammed on the brakes and the Knight Bus skidded to a halt in front of a small and shabby looking pub the Leaky Cauldron behind which lay the magical entrance to Diagon Alley .Thanks Harry said to Ern .He jumped down the steps and helped Stan lower his trunk and Hedwigs cage onto the pavement .Well said Harry .Bye then !But Stan wasnt paying attention .Still standing in the doorway to the bus he was goggling at the shadowy entrance to the Leaky Cauldron .There you are Harry said a voice .Before Harry could turn he felt a hand on his shoulder .At the same time Stan shouted Blimey !Ern come ere !Come ere !Harry looked up at the owner of the hand on his shoulder and felt a bucketful of ice cascade into his stomach he had walked right into Cornelius Fudge the Minister of Magic himself .Stan leapt onto the pavement beside them .What didja call Neville Minister ?he said excitedly .Fudge a portly little man in a long pinstriped cloak looked cold and exhausted .Neville ?he repeated frowning .This is Harry Potter .I knew it !Stan shouted gleefully .Ern !Ern !Guess oo Neville is Ern !Es Arry Potter !I can see is scar !Yes said Fudge testily well Im very glad the Knight Bus picked Harry up but he and I need to step inside the Leaky Cauldron now .Fudge increased the pressure on Harrys shoulder and Harry found himself being steered inside the pub .A stooping figure bearing a lantern appeared through the door behind the bar .It was Tom the wizened toothless landlord .Youve got him Minister !said Tom .Will you be wanting anything ?Beer ?Brandy ?Perhaps a pot of tea said Fudge who still hadnt let go of Harry .There was a loud scraping and puffing from behind them and Stan and Ern appeared carrying Harrys trunk and Hedwigs cage and looking around excitedly .Ow come you dint tell us oo you are eh Neville ?said Stan beaming at Harry while Ernies owlish face peered interestedly over Stans shoulder .And a private parlor please Tom said Fudge pointedly .Bye Harry said miserably to Stan and Ern as Tom beckoned Fudge toward the passage that led from the bar .Bye Neville !called Stan .Fudge marched Harry along the narrow passage after Toms lantern and then into a small parlor .Tom clicked his fingers a fire burst into life in the grate and he bowed himself out of the room .Sit down Harry said Fudge indicating a chair by the fire .Harry sat down feeling goose bumps rising up his arms despite the glow of the fire .Fudge took off his pinstriped cloak and tossed it aside then hitched up the trousers of his bottlegreen suit and sat down opposite Harry .I am Cornelius Fudge Harry .The Minister of Magic .Harry already knew this of course he had seen Fudge once before but as he had been wearing his fathers Invisibility Cloak at the time Fudge wasnt to know that .Tom the innkeeper reappeared wearing an apron over his nightshirt and bearing a tray of tea and crumpets .He placed the tray on a table between Fudge and Harry and left the parlor closing the door behind him .Well Harry said Fudge pouring out tea youve had us all in a right flap I dont mind telling you .Running away from your aunt and uncles house like that !Id started to think .but youre safe and thats what matters .Fudge buttered himself a crumpet and pushed the plate toward Harry .Eat Harry you look dead on your feet .Now then .You will be pleased to hear that we have dealt with the unfortunate blowingup of Miss Marjorie Dursley .Two members of the Accidental Magic Reversal Squad were dispatched to Privet Drive a few hours ago .Miss Dursley has been punctured and her memory has been modified .She has no recollection of the incident at all .So thats that and no harm done .Fudge smiled at Harry over the rim of his teacup rather like an uncle surveying a favorite nephew .Harry who couldnt believe his ears opened his mouth to speak couldnt think of anything to say and closed it again .Ah youre worrying about the reaction of your aunt and uncle ?said Fudge .Well I wont deny that they are extremely angry Harry but they are prepared to take you back next summer as long as you stay at Hogwarts for the Christmas and Easter holidays .Harry unstuck his throat .I always stay at Hogwarts for the Christmas and Easter holidays he said and I dont ever want to go back to Privet Drive .Now now Im sure youll feel differently once youve calmed down said Fudge in a worried tone .They are your family after all and Im sure you are fond of each other er very deep down .It didnt occur to Harry to put Fudge right .He was still waiting to hear what was going to happen to him now .So all that remains said Fudge now buttering himself a second crumpet is to decide where youre going to spend the last three weeks of your vacation .I suggest you take a room here at the Leaky Cauldron and Hang on blurted Harry .What about my punishment ?Fudge blinked .Punishment ?I broke the law !Harry said .The Decree for the Restriction of Underage Wizardry !Oh my dear boy were not going to punish you for a little thing like that !cried Fudge waving his crumpet impatiently .It was an accident !We dont send people to Azkaban just for blowing up their aunts !But this didnt tally at all with Harrys past dealings with the Ministry of Magic .Last year I got an official warning just because a houseelf smashed a pudding in my uncles house !he told Fudge frowning .The Ministry of Magic said Id be expelled from Hogwarts if there was any more magic there !Unless Harrys eyes were deceiving him Fudge was suddenly looking awkward .Circumstances change Harry .We have to take into account .in the present climate .Surely you dont want to be expelled ?Of course I dont said Harry .Well then whats all the fuss about ?laughed Fudge .Now have a crumpet Harry while I go and see if Toms got a room for you .Fudge strode out of the parlor and Harry stared after him .There was something extremely odd going on .Why had Fudge been waiting for him at the Leaky Cauldron if not to punish him for what hed done ?And now Harry came to think of it surely it wasnt usual for the Minister of Magic himself to get involved in matters of underage magic ?Fudge came back accompanied by Tom the innkeeper .Room elevens free Harry said Fudge .I think youll be very comfortable .Just one thing and Im sure youll understand .I dont want you wandering off into Muggle London all right ?Keep to Diagon Alley .And youre to be back here before dark each night .Sure youll understand .Tom will be keeping an eye on you for me .Okay said Harry slowly but why ?Dont want to lose you again do we ?said Fudge with a hearty laugh .No no .best we know where you are .I mean .Fudge cleared his throat loudly and picked up his pinstriped cloak .Well Ill be off plenty to do you know .Have you had any luck with Black yet ?Harry asked .Fudges finger slipped on the silver fastenings of his cloak .Whats that ?Oh youve heard well no not yet but its only a matter of time .The Azkaban guards have never yet failed .and they are angrier than Ive ever seen them .Fudge shuddered slightly .So Ill say goodbye .He held out his hand and Harry shaking it had a sudden idea .Er Minister ?Can I ask you something ?Certainly said Fudge with a smile .Well third years at Hogwarts are allowed to visit Hogsmeade but my aunt and uncle didnt sign the permission form .Dyou think you could ?Fudge was looking uncomfortable .Ah he said .No no Im very sorry Harry but as Im not your parent or guardian But youre the Minister of Magic said Harry eagerly .If you gave me permission No Im sorry Harry but rules are rules said Fudge flatly .Perhaps youll be able to visit Hogsmeade next year .In fact I think its best if you dont .yes .well Ill be off .Enjoy your stay Harry .And with a last smile and shake of Harrys hand Fudge left the room .Tom now moved forward beaming at Harry .If youll follow me Mr Potter he said Ive already taken your things up .Harry followed Tom up a handsome wooden staircase to a door with a brass number eleven on it which Tom unlocked and opened for him .Inside was a very comfortablelooking bed some highly polished oak furniture a cheerfully crackling fire and perched on top of the wardrobe Hedwig !Harry gasped .The snowy owl clicked her beak and fluttered down onto Harrys arm .Very smart owl youve got there chuckled Tom .Arrived about five minutes after you did .If theres anything you need Mr Potter dont hesitate to ask .He gave another bow and left .Harry sat on his bed for a long time absentmindedly stroking Hedwig .The sky outside the window was changing rapidly from deep velvety blue to cold steely gray and then slowly to pink shot with gold .Harry could hardly believe that hed left Privet Drive only a few hours ago that he wasnt expelled and that he was now facing three Dursleyfree weeks .Its been a very weird night Hedwig he yawned .And without even removing his glasses he slumped back onto his pillows and fell asleep .THE LEAKY CAULDRON It took Harry several days to get used to his strange new freedom .Never before had he been able to get up whenever he wanted or eat whatever he fancied .He could even go wherever he pleased as long as it was in Diagon Alley and as this long cobbled street was packed with the most fascinating wizarding shops in the world Harry felt no desire to break his word to Fudge and stray back into the Muggle world .Harry ate breakfast each morning in the Leaky Cauldron where he liked watching the other guests funny little witches from the country up for a days shopping venerablelooking wizards arguing over the latest article in Transfiguration Today wildlooking warlocks raucous dwarfs and once what looked suspiciously like a hag who ordered a plate of raw liver from behind a thick woollen balaclava .After breakfast Harry would go out into the backyard take out his wand tap the third brick from the left above the trash bin and stand back as the archway into Diagon Alley opened in the wall .Harry spent the long sunny days exploring the shops and eating under the brightly colored umbrellas outside cafes where his fellow diners were showing one another their purchases its a lunascope old boy no more messing around with moon charts see ?or else discussing the case of Sirius Black personally I wont let any of the children out alone until hes back in Azkaban .Harry didnt have to do his homework under the blankets by flashlight anymore now he could sit in the bright sunshine outside Florean Fortescues Ice Cream Parlor finishing all his essays with occasional help from Florean Fortescue himself who apart from knowing a great deal about medieval witch burnings gave Harry free sundaes every half an hour .Once Harry had refilled his money bag with gold Galleons silver Sickles and bronze Knuts from his vault at Gringotts he had to exercise a lot of self control not to spend the whole lot at once .He had to keep reminding himself that he had five years to go at Hogwarts and how it would feel to ask the Dursleys for money for spellbooks to stop himself from buying a handsome set of solid gold Gobstones a wizarding game rather like marbles in which the stones squirt a nastysmelling liquid into the other players face when they lose a point .He was sorely tempted too by the perfect moving model of the galaxy in a large glass ball which would have meant he never had to take another Astronomy lesson .But the thing that tested Harrys resolution most appeared in his favorite shop Quality Quidditch Supplies a week after hed arrived at the Leaky Cauldron .Curious to know what the crowd in the shop was staring at Harry edged his way inside and squeezed in among the excited witches and wizards until he glimpsed a newly erected podium on which was mounted the most magnificent broom he had ever seen in his life .Just come out prototype a squarejawed wizard was telling his companion .Its the fastest broom in the world isnt it Dad ?squeaked a boy younger than Harry who was swinging off his fathers arm .Irish International Sides just put in an order for seven of these beauties !the proprietor of the shop told the crowd .And theyre favorites for the World Cup !A large witch in front of Harry moved and he was able to read the sign next to the broom THE FIREBOLT This stateoftheart racing broom sports a stream lined superfine handle of ash treated with a diamondhard polish and handnumbered with its own registration number .Each individually selected birch twig in the broomtail has been honed to aerodynamic perfection giving the Firebolt unsurpassable balance and pinpoint precision .The Firebolt has an acceleration of 150 miles an hour in ten seconds and incorporates an unbreakable Braking Charm .Price on request .Price on request .Harry didnt like to think how much gold the Firebolt would cost .He had never wanted anything as much in his whole life but he had never lost a Quidditch match on his Nimbus Two Thousand and what was the point in emptying his Gringotts vault for the Firebolt when he had a very good broom already ?Harry didnt ask for the price but he returned almost every day after that just to look at the Firebolt .There were however things that Harry needed to buy .He went to the Apothecary to replenish his store of potions ingredients and as his school robes were now several inches too short in the arm and leg he visited Madam Malkins Robes for All Occasions and bought new ones .Most important of all he had to buy his new schoolbooks which would include those for his two new subjects Care of Magical Creatures and Divination .Harry got a surprise as he looked in at the bookshop window .Instead of the usual display of gold embossed spellbooks the size of paving slabs there was a large iron cage behind the glass that held about a hundred copies of The Monster Book of Monsters .Torn pages were flying everywhere as the books grappled with each other locked together in furious wrestling matches and snapping aggressively .Harry pulled his booklist out of his pocket and consulted it for the first time .The Monster Book of Monsters was listed as the required book for Care of Magical Creatures .Now Harry understood why Hagrid had said it would come in useful .He felt relieved he had been wondering whether Hagrid wanted help with some terrifying new pet .As Harry entered Flourish and Blotts the manager came hurrying toward him .Hogwarts ?he said abruptly .Come to get your new books ?Yes said Harry I need Get out of the way said the manager impatiently brushing Harry aside .He drew on a pair of very thick gloves picked up a large knobbly walking stick and proceeded toward the door of the Monster Books cage .Hang on said Harry quickly Ive already got one of those .Have you ?A look of enormous relief spread over the managers face .Thank heavens for that .Ive been bitten five times already this morning A loud ripping noise rent the air two of the Monster Books had seized a third and were pulling it apart .Stop it !Stop it !cried the manager poking the walking stick through the bars and knocking the books apart .Im never stocking them again never !Its been bedlam !I thought wed seen the worst when we bought two hundred copies of the Invisible Book of Invisibility cost a fortune and we never found them .Well .is there anything else I can help you with ?Yes said Harry looking down his booklist I need Unfogging the Future by Cassandra Vablatsky .Ah starting Divination are you ?said the manager stripping off his gloves and leading Harry into the back of the shop where there was a corner devoted to fortunetelling .A small table was stacked with volumes such as Predicting the Unpredictable Insulate Yourself Against Shocks and Broken Balls When Fortunes Turn Foul .Here you are said the manager who had climbed a set of steps to take down a thick blackbound book .Unfogging the Future .Very good guide to all your basic fortunetelling methods palmistry crystal balls bird entrails But Harry wasnt listening .His eyes had fallen on another book which was among a display on a small table Death Omens What to Do When You Know the Worst Is Coming .Oh I wouldnt read that if I were you said the manager lightly looking to see what Harry was staring at .Youll start seeing death omens everywhere .Its enough to frighten anyone to death .But Harry continued to stare at the front cover of the book it showed a black dog large as a bear with gleaming eyes .It looked oddly familiar .The manager pressed Unfogging the Future into Harrys hands .Anything else ?he said .Yes said Harry tearing his eyes away from the dogs and dazedly consulting his booklist .Er I need Intermediate Transfiguration and The Standard Book of Spells Grade Three .Harry emerged from Flourish and Blotts ten minutes later with his new books under his arms and made his way back to the Leaky Cauldron hardly noticing where he was going and bumping into several people .He tramped up the stairs to his room went inside and tipped his books onto his bed .Somebody had been in to tidy the windows were open and sun was pouring inside .Harry could hear the buses rolling by in the unseen Muggle street behind him and the sound of the invisible crowd below in Diagon Alley .He caught sight of himself in the mirror over the basin .It cant have been a death omen he told his reflection defiantly .I was panicking when I saw that thing in Magnolia Crescent .It was probably just a stray dog .He raised his hand automatically and tried to make his hair lie flat .Youre fighting a losing battle there dear said his mirror in a wheezy voice .As the days slipped by Harry started looking wherever he went for a sign of Ron or Hermione .Plenty of Hogwarts students were arriving in Diagon Alley now with the start of term so near .Harry met Seamus Finnigan and Dean Thomas his fellow Gryffindors in Quality Quidditch Supplies where they too were ogling the Firebolt he also ran into the real Neville Longbottom a roundfaced forgetful boy outside Flourish and Blotts .Harry didnt stop to chat Neville appeared to have mislaid his booklist and was being told off by his very formidablelooking grandmother .Harry hoped she never found out that hed pretended to be Neville while on the run from the Ministry of Magic .Harry woke on the last day of the holidays thinking that he would at least meet Ron and Hermione tomorrow on the Hogwarts Express .He got up dressed went for a last look at the Firebolt and was just wondering where hed have lunch when someone yelled his name and he turned .Harry !HARRY !They were there both of them sitting outside Florean Fortescues Ice Cream Parlor Ron looking incredibly freckly Hermione very brown both waving frantically at him .Finally !said Ron grinning at Harry as he sat down .We went to the Leaky Cauldron but they said youd left and we went to Flourish and Blotts and Madam Malkins and I got all my school stuff last week Harry explained .And how come you knew Im staying at the Leaky Cauldron ?Dad said Ron simply .Mr Weasley who worked at the Ministry of Magic would of course have heard the whole story of what had happened to Aunt Marge .Did you really blow up your aunt Harry ?said Hermione in a very serious voice .I didnt mean to said Harry while Ron roared with laughter .I just lost control .Its not funny Ron said Hermione sharply .Honestly Im amazed Harry wasnt expelled .So am I admitted Harry .Forget expelled I thought I was going to be arrested .He looked at Ron .Your dad doesnt know why Fudge let me off does he ?Probably cause its you isnt it ?shrugged Ron still chuckling .Famous Harry Potter and all that .Id hate to see what the Ministryd do to me if I blew up an aunt .Mind you theyd have to dig me up first because Mum wouldve killed me .Anyway you can ask Dad yourself this evening .Were staying at the Leaky Cauldron tonight too !So you can come to Kings Cross with us tomorrow !Hermiones there as well !Hermione nodded beaming .Mum and Dad dropped me off this morning with all my Hogwarts things .Excellent !said Harry happily .So have you got all your new books and stuff ?Look at this said Ron pulling a long thin box out of a bag and opening it .Brandnew wand .Fourteen inches willow containing one unicorn tailhair .And weve got all our books He pointed at a large bag under his chair .What about those Monster Books eh ?The assistant nearly cried when we said we wanted two .Whats all that Hermione ?Harry asked pointing at not one but three bulging bags in the chair next to her .Well Im taking more new subjects than you arent I ?said Hermione .Those are my books for Arithmancy Care of Magical Creatures Divination Study of Ancient Runes Muggle Studies What are you doing Muggle Studies for ?said Ron rolling his eyes at Harry .Youre Muggleborn !Your mum and dad are Muggles !You already know all about Muggles !But itll be fascinating to study them from the wizarding point of view said Hermione earnestly .Are you planning to eat or sleep at all this year Hermione ?asked Harry while Ron sniggered .Hermione ignored them .Ive still got ten Galleons she said checking her purse .Its my birthday in September and Mum and Dad gave me some money to get myself an early birthday present .How about a nice book ?said Ron innocently .No I dont think so said Hermione composedly .I really want an owl .I mean Harrys got Hedwig and youve got Errol I havent said Ron .Errols a family owl .All Ive got is Scabbers .He pulled his pet rat out of his pocket .And I want to get him checked over he added placing Scabbers on the table in front of them .I dont think Egypt agreed with him .Scabbers was looking thinner than usual and there was a definite droop to his whiskers .Theres a magical creature shop just over there said Harry who knew Diagon Alley very well by now .You could see if theyve got anything for Scabbers and Hermione can get her owl .So they paid for their ice cream and crossed the street to the Magical Menagerie .There wasnt much room inside .Every inch of wall was hidden by cages .It was smelly and very noisy because the occupants of these cages were all squeaking squawking jabbering or hissing .The witch behind the counter was already advising a wizard on the care of doubleended newts so Harry Ron and Hermione waited examining the cages .A pair of enormous purple toads sat gulping wetly and feasting on dead blowflies .A gigantic tortoise with a jewelencrusted shell was glittering near the window .Poisonous orange snails were oozing slowly up the side of their glass tank and a fat white rabbit kept changing into a silk top hat and back again with a loud popping noise .Then there were cats of every color a noisy cage of ravens a basket of funny custardcolored furballs that were humming loudly and on the counter a vast cage of sleek black rats that were playing some sort of skipping game using their long bald tails .The doubleended newt wizard left and Ron approached the counter .Its my rat he told the witch .He been a bit offcolor ever since I brought him back from Egypt .Bang him on the counter said the witch pulling a pair of heavy black spectacles out of her pocket .Ron lifted Scabbers out of his inside pocket and placed him next to the cage of his fellow rats who stopped their skipping tricks and scuffled to the wire for a better look .Like nearly everything Ron owned Scabbers the rat was secondhand he had once belonged to Rons brother Percy and a bit battered .Next to the glossy rats in the cage he looked especially woebegone .Hm said the witch picking up Scabbers .How old is this rat ?Dunno said Ron .Quite old .He used to belong to my brother .What powers does he have ?said the witch examining Scabbers closely .Er The truth was that Scabbers had never shown the faintest trace of interesting powers .The witchs eyes moved from Scabbers s tattered left ear to his front paw which had a toe missing and tutted loudly .Hes been through the mill this one she said .He was like that when Percy gave him to me said Ron defensively .An ordinary common or garden rat like this cant be expected to live longer than three years or so said the witch .Now if you were looking for something a bit more hardwearing you might like one of these She indicated the black rats who promptly started skipping again .Ron muttered Showoffs .Well if you dont want a replacement you can try this rat tonic said the witch reaching under the counter and bringing out a small red bottle .Okay said Ron .How much OUCH !Ron buckled as something huge and orange came soaring from the top of the highest cage landed on his head and then propelled itself spitting madly at Scabbers .NO CROOKSHANKS NO !cried the witch but Scabbers shot from between her hands like a bar of soap landed splaylegged on the floor and then scampered for the door .Scabbers !Ron shouted racing out of the shop after him Harry followed .It took them nearly ten minutes to catch Scabbers who had taken refuge under a wastepaper bin outside Quality Quidditch Supplies .Ron stuffed the trembling rat back into his pocket and straightened up massaging his head .What was that ?It was either a very big cat or quite a small tiger said Harry .Wheres Hermione ?Probably getting her owl They made their way back up the crowded street to the Magical Menagerie .As they reached it Hermione came out but she wasnt carrying an owl .Her arms were clamped tightly around the enormous ginger cat .You bought that monster ?said Ron his mouth hanging open .Hes gorgeous isnt he ?said Hermione glowing .That was a matter of opinion thought Harry .The cats ginger fur was thick and fluffy but it was definitely a bit bowlegged and its face looked grumpy and oddly squashed as though it had run headlong into a brick wall .Now that Scabbers was out of sight however the cat was purring contentedly in Hermione s arms .Hermione that thing nearly scalped me !said Ron .He didnt mean to did you Crookshanks ?said Hermione .And what about Scabbers ?said Ron pointing at the lump in his chest pocket .He needs rest and relaxation !Hows he going to get it with that thing around ?That reminds me you forgot your rat tonic said Hermione slapping the small red bottle into Rons hand .And stop worrying Crookshanks will be sleeping in my dormitory and Scabbers in yours whats the problem ?Poor Crookshanks that witch said hed been in there for ages no one wanted him .I wonder why said Ron sarcastically as they set off toward the Leaky Cauldron .They found Mr Weasley sitting in the bar reading the Daily Prophet .Harry !he said smiling as he looked up .How are you ?Fine thanks said Harry as he Ron and Hermione joined Mr Weasley with all their shopping .Mr Weasley put down his paper and Harry saw the now familiar picture of Sirius Black staring up at him .They still havent caught him then ?he asked .No said Mr Weasley looking extremely grave .Theyve pulled us all off our regular jobs at the Ministry to try and find him but no luck so far .Would we get a reward if we caught him ?asked Ron .Itd be good to get some more money Dont be ridiculous Ron said Mr Weasley who on closer inspection looked very strained .Blacks not going to be caught by a thirteenyearold wizard .Its the Azkaban guards wholl get him back you mark my words .At that moment Mrs Weasley entered the bar laden with shopping bags and followed by the twins Fred and George who were about to start their fifth year at Hogwarts the newly elected Head Boy Percy and the Weasleys youngest child and only girl Ginny .Ginny who had always been very taken with Harry seemed even more heartily embarrassed than usual when she saw him perhaps because he had saved her life during their previous year at Hogwarts .She went very red and muttered hello without looking at him .Percy however held out his hand solemnly as though he and Harry had never met and said Harry .How nice to see you .Hello Percy said Harry trying not to laugh .I hope youre well ?said Percy pompously shaking hands .It was rather like being introduced to the mayor .Very well thanks Harry !said Fred elbowing Percy out of the way and bowing deeply .Simply splendid to see you old boy Marvelous said George pushing Fred aside and seizing Harrys hand in turn .Absolutely spiffing .Percy scowled .Thats enough now said Mrs Weasley .Mum !said Fred as though hed only just spotted her and seizing her hand too .How really corking to see you I said thats enough said Mrs Weasley depositing her shopping in an empty chair .Hello Harry dear .I suppose youve heard our exciting news ?She pointed to the brandnew silver badge on Percys chest .Second Head Boy in the family !she said swelling with pride .And last Fred muttered under his breath .I dont doubt that said Mrs Weasley frowning suddenly .I notice they havent made you two prefects .What do we want to be prefects for ?said George looking revolted at the very idea .Itd take all the fun out of life .Ginny giggled .You want to set a better example for your sister !snapped Mrs Weasley .Ginnys got other brothers to set her an example Mother said Percy loftily .Im going up to change for dinner .He disappeared and George heaved a sigh .We tried to shut him in a pyramid he told Harry .But Mum spotted us .Dinner that night was a very enjoyable affair .Tom the innkeeper put three tables together in the parlor and the seven Weasleys Harry and Hermione ate their way through five delicious courses .Howre we getting to Kings Cross tomorrow Dad ?asked Fred as they dug into a sumptuous chocolate pudding .The Ministrys providing a couple of cars said Mr Weasley .Everyone looked up at him .Why ?said Percy curiously .Its because of you Perce said George seriously .And therell be little flags on the hoods with HB on them for Humongous Bighead said Fred .Everyone except Percy and Mrs Weasley snorted into their pudding .Why are the Ministry providing cars Father ?Percy asked again in a dignified voice .Well as we havent got one anymore said Mr Weasley and as I work there theyre doing me a favor His voice was casual but Harry couldnt help noticing that Mr Weasleys ears had gone red just like Rons did when he was under pressure .Good thing too said Mrs Weasley briskly .Do you realize how much luggage youve all got between you ?A nice sight youd be on the Muggle Underground .You are all packed arent you ?Ron hasnt put all his new things in his trunk yet said Percy in a longsuffering voice .Hes dumped them on my bed .Youd better go and pack properly Ron because we wont have much time in the morning Mrs Weasley called down the table .Ron scowled at Percy .After dinner everyone felt very full and sleepy .One by one they made their way upstairs to their rooms to check their things for the next day .Ron and Percy were next door to Harry .He had just closed and locked his own trunk when he heard angry voices through the wall and went to see what was going on .The door of number twelve was ajar and Percy was shouting .It was here on the bedside table I took it off for polishing I havent touched it all right ?Ron roared back .Whats up ?said Harry .My Head Boy badge is gone said Percy rounding on Harry .Sos Scabberss rat tonic said Ron throwing things out of his trunk to look .I think I mightve left it in the bar Youre not going anywhere till youve found my badge !yelled Percy .Ill get Scabberss stuff Im packed Harry said to Ron and he went downstairs .Harry was halfway along the passage to the bar which was now very dark when he heard another pair of angry voices coming from the parlor .A second later he recognized them as Mr and Mrs Weasleys .He hesitated not wanting them to know hed heard them arguing when the sound of his own name made him stop then move closer to the parlor door . .makes no sense not to tell him Mr Weasley was saying heatedly .Harrys got a right to know .Ive tried to tell Fudge but he insists on treating Harry like a child .Hes thirteen years old and Arthur the truth would terrify him !said Mrs Weasley shrilly .Do you really want to send Harry back to school with that hanging over him ?For heavens sake hes happy not knowing !I dont want to make him miserable I want to put him on his guard !retorted Mr Weasley .You know what Harry and Ron are like wandering off by themselves theyve even ended up in the Forbidden Forest !But Harry mustnt do that this year !When I think what could have happened to him that night he ran away from home !If the Knight Bus hadnt picked him up Im prepared to bet he would have been dead before the Ministry found him .But hes not dead hes fine so whats the point Molly they say Sirius Blacks mad and maybe he is but he was clever enough to escape from Azkaban and thats supposed to be impossible .Its been a month and no ones seen hide nor hair of him and I dont care what Fudge keeps telling the Daily Prophet were no nearer catching Black than inventing self spelling wands .The only thing we know for sure is what Blacks after But Harry will be perfectly safe at Hogwarts .We thought Azkaban was perfectly safe .If Black can break out of Azkaban he can break into Hogwarts .But no ones really sure that Blacks after Harry There was a thud on wood and Harry was sure Mr Weasley had banged his fist on the table .Molly how many times do I have to tell you ?They didnt report it in the press because Fudge wanted it kept quiet but Fudge went out to Azkaban the night Black escaped .The guards told Fudge that Blacks been talking in his sleep for a while now .Always the same words ‘Hes at Hogwarts .hes at Hogwarts .Black is deranged Molly and he wants Harry dead .If you ask me he thinks murdering Harry will bring YouKnowWho back to power .Black lost everything the night Harry stopped YouKnowWho and hes had twelve years alone in Azkaban to brood on that .There was a silence .Harry leaned still closer to the door desperate to hear more .Well Arthur you must do what you think is right .But youre forgetting Albus Dumbledore .I dont think anything could hurt Harry at Hogwarts while Dumbledore s headmaster .I suppose he knows about all this ?Of course he knows .We had to ask him if he minds the Azkaban guards stationing themselves around the entrances to the school grounds .He wasnt happy about it but he agreed .Not happy ?Why shouldnt he be happy if theyre there to catch Black ?Dumbledore isnt fond of the Azkaban guards said Mr Weasley heavily .Nor am I if it comes to that .but when youre dealing with a wizard like Black you sometimes have to join forces with those youd rather avoid .If they save Harry then I will never say another word against them said Mr Weasley wearily .Its late Molly wed better go up .Harry heard chairs move .As quietly as he could he hurried down the passage to the bar and out of sight .The parlor door opened and a few seconds later footsteps told him that Mr and Mrs Weasley were climbing the stairs .The bottle of rat tonic was lying under the table they had sat at earlier .Harry waited until he heard Mr and Mrs Weasleys bedroom door close then headed back upstairs with the bottle .Fred and George were crouching in the shadows on the landing heaving with laughter as they listened to Percy dismantling his and Rons room in search of his badge .Weve got it Fred whispered to Harry .Weve been improving it .The badge now read BigheacL Boy .Harry forced a laugh went to give Ron the rat tonic then shut himself in his room and lay down on his bed .So Sirius Black was after him .This explained everything .Fudge had been lenient with him because he was so relieved to find him alive .Hed made Harry promise to stay in Diagon Alley where there were plenty of wizards to keep an eye on him .And he was sending two Ministry cars to take them all to the station tomorrow so that the Weasleys could look after Harry until he was on the train .Harry lay listening to the muffled shouting next door and wondered why he didnt feel more scared .Sirius Black had murdered thirteen people with one curse Mr and Mrs Weasley obviously thought Harry would be panicstricken if he knew the truth .But Harry happened to agree wholeheartedly with Mrs Weasley that the safest place on earth was wherever Albus Dumbledore happened to be .Didnt people always say that Dumbledore was the only person Lord Voldemort had ever been afraid of ?Surely Black as Voldemorts righthand man would be just as frightened of him ?And then there were these Azkaban guards everyone kept talking about .They seemed to scare most people senseless and if they were stationed all around the school Blacks chances of getting inside seemed very remote .No all in all the thing that bothered Harry most was the fact that his chances of visiting Hogsmeade now looked like zero .Nobody would want Harry to leave the safety of the castle until Black was caught in fact Harry suspected his every move would be carefully watched until the danger had passed .He scowled at the dark ceiling .Did they think he couldnt look after himself ?Hed escaped Lord Voldemort three times he wasnt completely useless .Unbidden the image of the beast in the shadows of Magnolia Crescent crossed his mind .What to do when you know the worst is coming .Im not going to be murdered Harry said out loud .Thats the spirit dear said his mirror sleepily .5 THE DEMENTOR Tom woke Harry the next morning with his usual toothless grin and a cup of tea .Harry got dressed and was just persuading a disgruntled Hedwig to get back into her cage when Ron banged his way into the room pulling a sweatshirt over his head and looking irritable .The sooner we get on the train the better he said .At least I can get away from Percy at Hogwarts .Now hes accusing me of dripping tea on his photo of Penelope Clearwater .You know Ron grimaced his girlfriend .Shes hidden her face under the frame because her nose has gone all blotchy .Ive got something to tell you Harry began but they were interrupted by Fred and George who had looked in to congratulate Ron on infuriating Percy again .They headed down to breakfast where Mr Weasley was reading the front page of the Daily Prophet with a furrowed brow and Mrs Weasley was telling Hermione and Ginny about a love potion shed made as a young girl .All three of them were rather giggly .What were you saying ?Ron asked Harry as they sat down .Later Harry muttered as Percy stormed in .Harry had no chance to speak to Ron or Hermione in the chaos of leaving they were too busy heaving all their trunks down the Leaky Cauldrons narrow staircase and piling them up near the door with Hedwig and Hermes Percys screech owl perched on top in their cages .A small wickerwork basket stood beside the heap of trunks spitting loudly .Its all right Crookshanks Hermione cooed through the wickerwork .Ill let you out on the train .You wont snapped Ron .What about poor Scabbers eh ?He pointed at his chest where a large lump indicated that Scabbers was curled up in his pocket .Mr Weasley who had been outside waiting for the Ministry cars stuck his head inside .Theyre here he said .Harry come on .Mr Weasley marched Harry across the short stretch of pavement toward the first of two oldfashioned dark green cars each of which was driven by a furtive looking wizard wearing a suit of emerald velvet .In you get Harry said Mr Weasley glancing up and down the crowded street .Harry got into the back of the car and was shortly joined by Hermione Ron and to Rons disgust Percy .The journey to Kings Cross was very uneventful compared with Harrys trip on the Knight Bus .The Ministry of Magic cars seemed almost ordinary though Harry noticed that they could slide through gaps that Uncle Vernons new company car certainly couldnt have managed .They reached Kings Cross with twenty minutes to spare the Ministry drivers found them trolleys unloaded their trunks touched their hats in salute to Mr Weasley and drove away somehow managing to jump to the head of an unmoving line at the traffic lights .Mr Weasley kept close to Harrys elbow all the way into the station .Right then he said glancing around them .Lets do this in pairs as there are so many of us .Ill go through first with Harry .Mr Weasley strolled toward the barrier between platforms nine and ten pushing Harrys trolley and apparently very interested in the Intercity 125 that had just arrived at platform nine .With a meaningful look at Harry he leaned casually against the barrier .Harry imitated him .In a moment they had fallen sideways through the solid metal onto platform nine and threequarters and looked up to see the Hogwarts Express a scarlet steam engine puffing smoke over a platform packed with witches and wizards seeing their children onto the train .Percy and Ginny suddenly appeared behind Harry .They were panting and had apparently taken the barrier at a run .Ah theres Penelope !said Percy smoothing his hair and going pink again .Ginny caught Harrys eye and they both turned away to hide their laughter as Percy strode over to a girl with long curly hair walking with his chest thrown out so that she couldnt miss his shiny badge .Once the remaining Weasleys and Hermione had joined them Harry and Ron led the way to the end of the train past packed compartments to a carriage that looked quite empty .They loaded the trunks onto it stowed Hedwig and Crookshanks in the luggage rack then went back outside to say goodbye to Mr and Mrs Weasley .Mrs Weasley kissed all her children then Hermione and finally Harry .He was embarrassed but really quite pleased when she gave him an extra hug .Do take care wont you Harry ?she said as she straightened up her eyes oddly bright .Then she opened her enormous handbag and said Ive made you all sandwiches .Here you are Ron .no theyre not corned beef .Fred ?Wheres Fred ?Here you are dear .Harry said Mr Weasley quietly come over here a moment .He jerked his head toward a pillar and Harry followed him behind it leaving the others crowded around Mrs Weasley .Theres something Ive got to tell you before you leave said Mr Weasley in a tense voice .Its all right Mr Weasley said Harry .I already know .You know ?How could you know ?I er I heard you and Mrs Weasley talking last night .I couldnt help hearing Harry added quickly .Sorry Thats not the way Id have chosen for you to find out said Mr Weasley looking anxious .No honestly its okay .This way you havent broken your word to Fudge and I know whats going on .Harry you must be very scared Im not said Harry sincerely .Really he added because Mr Weasley was looking disbelieving .Im not trying to be a hero but seriously Sirius Black cant be worse than Voldemort can he ?Mr Weasley flinched at the sound of the name but overlooked it .Harry I knew you were well made of stronger stuff than Fudge seems to think and Im obviously pleased that youre not scared but Arthur !called Mrs Weasley who was now shepherding the rest onto the train .Arthur what are you doing ?Its about to go !Hes coming Molly !said Mr Weasley but he turned back to Harry and kept talking in a lower and more hurried voice .Listen I want you to give me your word that Ill be a good boy and stay in the castle ?said Harry gloomily .Not entirely said Mr Weasley who looked more serious than Harry had ever seen him .Harry swear to me you wont go looking for Black .Harry stared .What ?There was a loud whistle .Guards were walking along the train slamming all the doors shut .Promise me Harry said Mr Weasley talking more quickly still that whatever happens Why would I go looking for someone I know wants to kill me ?said Harry blankly .Swear to me that whatever you might hear Arthur quickly !cried Mrs Weasley .Steam was billowing from the train it had started to move .Harry ran to the compartment door and Ron threw it open and stood back to let him on .They leaned out of the window and waved at Mr and Mrs Weasley until the train turned a corner and blocked them from view .I need to talk to you in private Harry muttered to Ron and Hermione as the train picked up speed .Go away Ginny said Ron .Oh thats nice said Ginny huffily and she stalked off .Harry Ron and Hermione set off down the corridor looking for an empty compartment but all were full except for the one at the very end of the train .This had only one occupant a man sitting fast asleep next to the window .Harry Ron and Hermione checked on the threshold .The Hogwarts Express was usually reserved for students and they had never seen an adult there before except for the witch who pushed the food cart .The stranger was wearing an extremely shabby set of wizards robes that had been darned in several places .He looked ill and exhausted .Though quite young his light brown hair was flecked with gray .Who dyou reckon he is ?Ron hissed as they sat down and slid the door shut taking the seats farthest away from the window .Professor R .J .Lupin whispered Hermione at once .How dyou know that ?Its on his case she replied pointing at the luggage rack over the mans head where there was a small battered case held together with a large quantity of neatly knotted string .The name Professor R .J .Lupin was stamped across one corner in peeling letters .Wonder what he teaches ?said Ron frowning at Professor Lupins pallid profile .Thats obvious whispered Hermione .Theres only one vacancy isnt there ?Defense Against the Dark Arts .Harry Ron and Hermione had already had two Defense Against the Dark Arts teachers both of whom had lasted only one year .There were rumors that the job was jinxed .Well I hope hes up to it said Ron doubtfully .He looks like one good hex would finish him off doesnt he ?Anyway .He turned to Harry .What were you going to tell us ?Harry explained all about Mr and Mrs Weasleys argument and the warning Mr Weasley had just given him .When hed finished Ron looked thunderstruck and Hermione had her hands over her mouth .She finally lowered them to say Sirius Black escaped to come after you ?Oh Harry .youll have to be really really careful .Dont go looking for trouble Harry I dont go looking for trouble said Harry nettled .Trouble usually finds me .How thick would Harry have to be to go looking for a nutter who wants to kill him ?said Ron shakily .They were taking the news worse than Harry had expected .Both Ron and Hermione seemed to be much more frightened of Black than he was .No one knows how he got out of Azkaban said Ron uncomfortably .No ones ever done it before .And he was a topsecurity prisoner too .But theyll catch him wont they ?said Hermione earnestly .I mean theyve got all the Muggles looking out for him too .Whats that noise ?said Ron suddenly .A faint tinny sort of whistle was coming from somewhere .They looked all around the compartment .Its coming from your trunk Harry said Ron standing up and reaching into the luggage rack .A moment later he had pulled the Pocket Sneakoscope out from between Harrys robes .It was spinning very fast in the palm of Rons hand and glowing brilliantly .Is that a Sneakoscope ?said Hermione interestedly standing up for a better look .Yeah .mind you its a very cheap one Ron said .It went haywire just as I was tying it to Errols leg to send it to Harry .Were you doing anything untrustworthy at the time ?said Hermione shrewdly .No !Well .I wasnt supposed to be using Errol .You know hes not really up to long journeys .but how else was I supposed to get Harrys present to him ?Stick it back in the trunk Harry advised as the Sneakoscope whistled piercingly or itll wake him up .He nodded toward Professor Lupin .Ron stuffed the Sneakoscope into a particularly horrible pair of Uncle Vernons old socks which deadened the sound then closed the lid of the trunk on it .We could get it checked in Hogsmeade said Ron sitting back down .They sell that sort of thing in Dervish and Banges magical instruments and stuff .Fred and George told me .Do you know much about Hogsmeade ?asked Hermione keenly .Ive read its the only entirely non Muggle settlement in Britain Yeah I think it is said Ron in an offhand sort of way but thats not why I want to go .I just want to get inside Honeydukes !Whats that ?said Hermione .Its this sweetshop said Ron a dreamy look coming over his face where theyve got everything .Pepper Imps they make you smoke at the mouth and great fat Chocoballs full of strawberry mousse and clotted cream and really excellent sugar quills which you can suck in class and just look like youre thinking what to write next But Hogsmeades a very interesting place isnt it ?Hermione pressed on eagerly .In Sites of Historical Sorcery it says the inn was the headquarters for the 1612 goblin rebellion and the Shrieking Shacks supposed to be the most severely haunted building in Britain and massive sherbet balls that make you levitate a few inches off the ground while youre sucking them said Ron who was plainly not listening to a word Hermione was saying .Hermione looked around at Harry .Wont it be nice to get out of school for a bit and explore Hogsmeade ?Spect it will said Harry heavily .Youll have to tell me when youve found out .What dyou mean ?said Ron .I cant go .The Dursleys didnt sign my permission form and Fudge wouldnt either .Ron looked horrified .Youre not allowed to come ?But no way McGonagall or someone will give you permission Harry gave a hollow laugh .Professor McGonagall head of Gryffindor House was very strict .or we can ask Fred and George they know every secret passage out of the castle Ron !said Hermione sharply .I dont think Harry should be sneaking out of school with Black on the loose Yeah I expect thats what McGonagall will say when I ask for permission said Harry bitterly .But if were with him said Ron spiritedly to Hermione Black wouldnt dare Oh Ron dont talk rubbish snapped Hermione .Blacks already murdered a whole bunch of people in the middle of a crowded street .Do you really think hes going to worry about attacking Harry just because were there ?She was fumbling with the straps of Crookshankss basket as she spoke .Dont let that thing out !Ron said but too late Crookshanks leapt lightly from the basket stretched yawned and sprang onto Rons knees the lump in Rons pocket trembled and he shoved Crookshanks angrily away .Get out of here !Ron dont !said Hermione angrily .Ron was about to answer back when Professor Lupin stirred .They watched him apprehensively but he simply turned his head the other way mouth slightly open and slept on .The Hogwarts Express moved steadily north and the scenery outside the window became wilder and darker while the clouds overhead thickened .People were chasing backward and forward past the door of their compartment .Crookshanks had now settled in an empty seat his squashed face turned toward Ron his yellow eyes on Rons top pocket .At one oclock the plump witch with the food cart arrived at the compartment door .Dyou think we should wake him up ?Ron asked awkwardly nodding toward Professor Lupin .He looks like he could do with some food .Hermione approached Professor Lupin cautiously .Er Professor ?she said .Excuse me Professor ?He didnt move .Dont worry dear said the witch as she handed Harry a large stack of Cauldron Cakes .If hes hungry when he wakes Ill be up front with the driver .I suppose he is asleep ?said Ron quietly as the witch slid the compartment door closed .I mean he hasnt died has he ?No no hes breathing whispered Hermione taking the Cauldron Cake Harry passed her .He might not be very good company but Professor Lupins presence in their compartment had its uses .Midafternoon just as it had started to rain blurring the rolling hills outside the window they heard footsteps in the corridor again and their three least favorite people appeared at the door Draco Malfoy flanked by his cronies Vincent Crabbe and Gregory Goyle .Draco Malfoy and Harry had been enemies ever since they had met on their very first train journey to Hogwarts .Malfoy who had a pale pointed sneering face was in Slytherin House he played Seeker on the Slytherin Quidditch team the same position that Harry played on the Gryffindor team .Crabbe and Goyle seemed to exist to do Malfoys bidding .They were both wide and musclely Crabbe was taller with a puddingbowl haircut and a very thick neck Goyle had short bristly hair and long gorillaish arms .Well look who it is said Malfoy in his usual lazy drawl pulling open the compartment door .Potty and the Weasel .Crabbe and Goyle chuckled trollishly .I heard your father finally got his hands on some gold this summer Weasley said Malfoy .Did your mother die of shock ?Ron stood up so quickly he knocked Crookshankss basket to the floor .Professor Lupin gave a snort .Whos that ?said Malfoy taking an automatic step backward as he spotted Lupin .New teacher said Harry who got to his feet too in case he needed to hold Ron back .What were you saying Malfoy ?Malfoys pale eyes narrowed he wasnt fool enough to pick a fight right under a teachers nose .Cmon he muttered resentfully to Crabbe and Goyle and they disappeared .Harry and Ron sat down again Ron massaging his knuckles .Im not going to take any crap from Malfoy this year he said angrily .I mean it .If he makes one more crack about my family Im going to get hold of his head and Ron made a violent gesture in midair .Ron hissed Hermione pointing at Professor Lupin be careful .But Professor Lupin was still fast asleep .The rain thickened as the train sped yet farther north the windows were now a solid shimmering gray which gradually darkened until lanterns flickered into life all along the corridors and over the luggage racks .The train rattled the rain hammered the wind roared but still Professor Lupin slept .We must be nearly there said Ron leaning forward to look past Professor Lupin at the now completely black window .The words had hardly left him when the train started to slow down .Great said Ron getting up and walking carefully past Professor Lupin to try and see outside .Im starving .I want to get to the feast .We cant be there yet said Hermione checking her watch .So whyre we stopping ?The train was getting slower and slower .As the noise of the pistons fell away the wind and rain sounded louder than ever against the windows .Harry who was nearest the door got up to look into the corridor .All along the carriage heads were sticking curiously out of their compartments .The train came to a stop with a jolt and distant thuds and bangs told them that luggage had fallen out of the racks .Then without warning all the lamps went out and they were plunged into total darkness .Whats going on ?said Rons voice from behind Harry .Ouch !gasped Hermione .Ron that was my foot !Harry felt his way back to his seat .Dyou think weve broken down ?Dunno .There was a squeaking sound and Harry saw the dim black outline of Ron wiping a patch clean on the window and peering out .Theres something moving out there Ron said .I think people are coming aboard .The compartment door suddenly opened and someone fell painfully over Harrys legs .Sorry dyou know whats going on ?Ouch sorry Hullo Neville said Harry feeling around in the dark and pulling Neville up by his cloak .Harry ?Is that you ?Whats happening ?No idea sit down There was a loud hissing and a yelp of pain Neville had tried to sit on Crookshanks .Im going to go and ask the driver whats going on came Hermiones voice .Harry felt her pass him heard the door slide open again and then a thud and two loud squeals of pain .Whos that ?Whos that ?Ginny ?Hermione ?What are you doing ?I was looking for Ron Come in and sit down Not here !said Harry hurriedly .Im here !Ouch !said Neville .Quiet !said a hoarse voice suddenly .Professor Lupin appeared to have woken up at last .Harry could hear movements in his corner .None of them spoke .There was a soft crackling noise and a shivering light filled the compartment .Professor Lupin appeared to be holding a handful of flames .They illuminated his tired gray face but his eyes looked alert and wary .Stay where you are he said in the same hoarse voice and he got slowly to his feet with his handful of fire held out in front of him .But the door slid slowly open before Lupin could reach it .Standing in the doorway illuminated by the shivering flames in Lupins hand was a cloaked figure that towered to the ceiling .Its face was completely hidden beneath its hood .Harrys eyes darted downward and what he saw made his stomach contract .There was a hand protruding from the cloak and it was glistening grayish slimylooking and scabbed like something dead that had decayed in water .But it was visible only for a split second .As though the creature beneath the cloak sensed Harrys gaze the hand was suddenly withdrawn into the folds of its black cloak .And then the thing beneath the hood whatever it was drew a long slow rattling breath as though it were trying to suck something more than air from its surroundings .An intense cold swept over them all .Harry felt his own breath catch in his chest .The cold went deeper than his skin .It was inside his chest it was inside his very heart .Harrys eyes rolled up into his head .He couldnt see .He was drowning in cold .There was a rushing in his ears as though of water .He was being dragged downward the roaring growing louder .And then from far away he heard screaming terrible terrified pleading screams .He wanted to help whoever it was he tried to move his arms but couldnt .a thick white fog was swirling around him inside him Harry !Harry !Are you all right ?Someone was slapping his face .W what ?Harry opened his eyes there were lanterns above him and the floor was shaking the Hogwarts Express was moving again and the lights had come back on .He seemed to have slid out of his seat onto the floor .Ron and Hermione were kneeling next to him and above them he could see Neville and Professor Lupin watching .Harry felt very sick when he put up his hand to push his glasses back on he felt cold sweat on his face .Ron and Hermione heaved him back onto his seat .Are you okay ?Ron asked nervously .Yeah said Harry looking quickly toward the door .The hooded creature had vanished .What happened ?Wheres that that thing ?Who screamed ?No one screamed said Ron more nervously still .Harry looked around the bright compartment .Ginny and Neville looked back at him both very pale .But I heard screaming A loud snap made them all jump .Professor Lupin was breaking an enormous slab of chocolate into pieces .Here he said to Harry handing him a particularly large piece .Eat it .Itll help .Harry took the chocolate but didnt eat it .What was that thing ?he asked Lupin .A dementor said Lupin who was now giving chocolate to everyone else .One of the dementors of Azkaban .Everyone stared at him .Professor Lupin crumpled up the empty chocolate wrapper and put it in his pocket .Eat he repeated .Itll help .I need to speak to the driver excuse me .He strolled past Harry and disappeared into the corridor .Are you sure youre okay Harry ?said Hermione watching Harry anxiously .I dont get it .What happened ?said Harry wiping more sweat off his face .Well that thing the dementor stood there and looked around I mean I think it did I couldnt see its face and you you I thought you were having a fit or something said Ron who still looked scared .You went sort of rigid and fell out of your seat and started twitching And Professor Lupin stepped over you and walked toward the dementor and pulled out his wand said Hermione and he said ‘None of us is hiding Sirius Black under our cloaks .Go .But the dementor didnt move so Lupin muttered something and a silvery thing shot out of his wand at it and it turned around and sort of glided away .It was horrible said Neville in a higher voice than usual .Did you feel how cold it got when it came in ?I felt weird said Ron shifting his shoulders uncomfortably .Like Id never be cheerful again .Ginny who was huddled in her corner looking nearly as bad as Harry felt gave a small sob Hermione went over and put a comforting arm around her .But didnt any of you fall off your seats ?said Harry awkwardly .No said Ron looking anxiously at Harry again .Ginny was shaking like mad though .Harry didnt understand .He felt weak and shivery as though he were recovering from a bad bout of flu he also felt the beginnings of shame .Why had he gone to pieces like that when no one else had ?Professor Lupin had come back .He paused as he entered looked around and said with a small smile I havent poisoned that chocolate you know .Harry took a bite and to his great surprise felt warmth spread suddenly to the tips of his fingers and toes .Well be at Hogwarts in ten minutes said Professor Lupin .Are you all right Harry ?Harry didnt ask how Professor Lupin knew his name .Fine he muttered embarrassed .They didnt talk much during the remainder of the journey .At long last the train stopped at Hogsmeade station and there was a great scramble to get outside owls hooted cats meowed and Nevilles pet toad croaked loudly from under his hat .It was freezing on the tiny platform rain was driving down in icy sheets .Firs years this way !called a familiar voice .Harry Ron and Hermione turned and saw the gigantic outline of Hagrid at the other end of the platform beckoning the terrifiedlooking new students forward for their traditional journey across the lake .All righ you three ?Hagrid yelled over the heads of the crowd .They waved at him but had no chance to speak to him because the mass of people around them was shunting them away along the platform .Harry Ron and Hermione followed the rest of the school along the platform and out onto a rough mud track where at least a hundred stagecoaches awaited the remaining students each pulled Harry could only assume by an invisible horse because when they climbed inside and shut the door the coach set off all by itself bumping and swaying in procession .The coach smelled faintly of mold and straw .Harry felt better since the chocolate but still weak .Ron and Hermione kept looking at him sideways as though frightened he might collapse again .As the carriage trundled toward a pair of magnificent wrought iron gates flanked with stone columns topped with winged boars Harry saw two more towering hooded dementors standing guard on either side .A wave of cold sickness threatened to engulf him again he leaned back into the lumpy seat and closed his eyes until they had passed the gates .The carriage picked up speed on the long sloping drive up to the castle Hermione was leaning out of the tiny window watching the many turrets and towers draw nearer .At last the carriage swayed to a halt and Hermione and Ron got out .As Harry stepped down a drawling delighted voice sounded in his ear .You fainted Potter ?Is Longbottom telling the truth ?You actually fainted ?Malfoy elbowed past Hermione to block Harrys way up the stone steps to the castle his face gleeful and his pale eyes glinting maliciously .Shove off Malfoy said Ron whose jaw was clenched .Did you faint as well Weasley ?said Malfoy loudly .Did the scary old dementor frighten you too Weasley ?Is there a problem ?said a mild voice .Professor Lupin had just gotten out of the next carriage .Malfoy gave Professor Lupin an insolent stare which took in the patches on his robes and the delapidated suitcase .With a tiny hint of sarcasm in his voice he said Oh no er Professor then he smirked at Crabbe and Goyle and led them up the steps into the castle .Hermione prodded Ron in the back to make him hurry and the three of them joined the crowd swarming up the steps through the giant oak front doors into the cavernous entrance hall which was lit with flaming torches and housed a magnificent marble staircase that led to the upper floors .The door into the Great Hall stood open at the right Harry followed the crowd toward it but had barely glimpsed the enchanted ceiling which was black and cloudy tonight when a voice called Potter !Granger !I want to see you both !Harry and Hermione turned around surprised .Professor McGonagall Transfiguration teacher and head of Gryffindor House was calling over the heads of the crowd .She was a sternlooking witch who wore her hair in a tight bun her sharp eyes were framed with square spectacles .Harry fought his way over to her with a feeling of foreboding Professor McGonagall had a way of making him feel he must have done something wrong .Theres no need to look so worried I just want a word in my office she told them .Move along there Weasley .Ron stared as Professor McGonagall ushered Harry and Hermione away from the chattering crowd they accompanied her across the entrance hall up the marble staircase and along a corridor .Once they were in her office a small room with a large welcoming fire Professor McGonagall motioned Harry and Hermione to sit down .She settled herself behind her desk and said abruptly Professor Lupin sent an owl ahead to say that you were taken ill on the train Potter .Before Harry could reply there was a soft knock on the door and Madam Pomfrey the nurse came bustling in .Harry felt himself going red in the face .It was bad enough that hed passed out or whatever he had done without everyone making all this fuss .Im fine he said I dont need anything Oh its you is it ?said Madam Pomfrey ignoring this and bending down to stare closely at him .I suppose youve been doing something dangerous again ?It was a dementor Poppy said Professor McGonagall .They exchanged a dark look and Madam Pomfrey clucked disapprovingly .Setting dementors around a school she muttered pushing back Harrys hair and feeling his forehead .He wont be the last one who collapses .Yes hes all clammy .Terrible things they are and the effect they have on people who are already delicate Im not delicate !said Harry crossly .Of course youre not said Madam Pomfrey absentmindedly now taking his pulse .What does he need ?said Professor McGonagall crisply .Bed rest ?Should he perhaps spend tonight in the hospital wing ? ‘Tm ine !said Harry jumping up .The thought of what Draco Malfoy would say if he had to go to the hospital wing was torture .Well he should have some chocolate at the very least said Madam Pomfrey who was now trying to peer into Harrys eyes .Ive already had some said Harry .Professor Lupin gave me some .He gave it to all of us .Did he now ?said Madam Pomfrey approvingly .So weve finally got a Defense Against the Dark Arts teacher who knows his remedies ?Are you sure you feel all right Potter ?Professor McGonagall said sharply .Yes said Harry .Very well .Kindly wait outside while I have a quick word with Miss Granger about her course schedule then we can go down to the feast together .Harry went back into the corridor with Madam Pomfrey who left for the hospital wing muttering to herself .He had to wait only a few minutes then Hermione emerged looking very happy about something followed by Professor McGonagall and the three of them made their way back down the marble staircase to the Great Hall .It was a sea of pointed black hats each of the long House tables was lined with students their faces glimmering by the light of thousands of candles which were floating over the tables in midair .Professor Flitwick who was a tiny little wizard with a shock of white hair was carrying an ancient hat and a threelegged stool out of the hall .Oh said Hermione softly weve missed the Sorting !New students at Hogwarts were sorted into Houses by trying on the Sorting Hat which shouted out the House they were best suited to Gryffindor Ravenclaw Hufflepuff or Slytherin .Professor McGonagall strode off toward her empty seat at the staff table and Harry and Hermione set off in the other direction as quietly as possible toward the Gryffindor table .People looked around at them as they passed along the back of the hall and a few of them pointed at Harry .Had the story of his collapsing in front of the dementor traveled that fast ?He and Hermione sat down on either side of Ron who had saved them seats .What was all that about ?he muttered to Harry .Harry started to explain in a whisper but at that moment the headmaster stood up to speak and he broke off .Professor Dumbledore though very old always gave an impression of great energy .He had several feet of long silver hair and beard halfmoon spectacles and an extremely crooked nose .He was often described as the greatest wizard of the age but that wasnt why Harry respected him .You couldnt help trusting Albus Dumbledore and as Harry watched him beaming around at the students he felt really calm for the first time since the dementor had entered the train compartment .Welcome !said Dumbledore the candlelight shimmering on his beard .Welcome to another year at Hogwarts !I have a few things to say to you all and as one of them is very serious I think it best to get it out of the way before you become befuddled by our excellent feast .Dumbledore cleared his throat and continued As you will all be aware after their search of the Hogwarts Express our school is presently playing host to some of the dementors of Azkaban who are here on Ministry of Magic business .He paused and Harry remembered what Mr Weasley had said about Dumbledore not being happy with the dementors guarding the school .They are stationed at every entrance to the grounds Dumbledore continued and while they are with us I must make it plain that nobody is to leave school without permission .Dementors are not to be fooled by tricks or disguises or even Invisibility Cloaks he added blandly and Harry and Ron glanced at each other .It is not in the nature of a dementor to understand pleading or excuses .I therefore warn each and every one of you to give them no reason to harm you .I look to the prefects and our new Head Boy and Girl to make sure that no student runs afoul of the dementors he said .Percy who was sitting a few seats down from Harry puffed out his chest again and stared around impressively .Dumbledore paused again he looked very seriously around the hall and nobody moved or made a sound .On a happier note he continued I am pleased to welcome two new teachers to our ranks this year .First Professor Lupin who has kindly consented to fill the post of Defense Against the Dark Arts teacher .There was some scattered rather unenthusiastic applause .Only those who had been in the compartment on the train with Professor Lupin clapped hard Harry among them .Professor Lupin looked particularly shabby next to all the other teachers in their best robes .Look at Snape !Ron hissed in Harrys ear .Professor Snape the Potions master was staring along the staff table at Professor Lupin .It was common knowledge that Snape wanted the Defense Against the Dark Arts job but even Harry who hated Snape was startled at the expression twisting his thin sallow face .It was beyond anger it was loathing .Harry knew that expression only too well it was the look Snape wore every time he set eyes on Harry .As to our second new appointment Dumbledore continued as the lukewarm applause for Professor Lupin died away .Well I am sorry to tell you that Professor Kettleburn our Care of Magical Creatures teacher retired at the end of last year in order to enjoy more time with his remaining limbs .However I am delighted to say that his place will be filled by none other than Rubeus Hagrid who has agreed to take on this teaching job in addition to his gamekeeping duties .Harry Ron and Hermione stared at one another stunned .Then they joined in with the applause which was tumultuous at the Gryffindor table in particular .Harry leaned forward to see Hagrid who was rubyred in the face and staring down at his enormous hands his wide grin hidden in the tangle of his black beard .We shouldve known !Ron roared pounding the table .Who else would have assigned us a biting book ?Harry Ron and Hermione were the last to stop clapping and as Professor Dumbledore started speaking again they saw that Hagrid was wiping his eyes on the tablecloth .Well I think thats everything of importance said Dumbledore .Let the feast begin !The golden plates and goblets before them filled suddenly with food and drink .Harry suddenly ravenous helped himself to everything he could reach and began to eat .It was a delicious feast the hall echoed with talk laughter and the clatter of knives and forks .Harry Ron and Hermione however were eager for it to finish so that they could talk to Hagrid .They knew how much being made a teacher would mean to him .Hagrid wasnt a fully qualified wizard he had been expelled from Hogwarts in his third year for a crime he had not committed .It had been Harry Ron and Hermione who had cleared Hagrid s name last year .At long last when the last morsels of pumpkin tart had melted from the golden platters Dumbledore gave the word that it was time for them all to go to bed and they got their chance .Congratulations Hagrid !Hermione squealed as they reached the teachers table .All down ter you three said Hagrid wiping his shining face on his napkin as he looked up at them .Can believe it .great man Dumbledore .came straight down to me hut after Professor Kettleburn said hed had enough .Its what I always wanted .Overcome with emotion he buried his face in his napkin and Professor McGonagall shooed them away .Harry Ron and Hermione joined the Gryffindors streaming up the marble staircase and very tired now along more corridors up more and more stairs to the hidden entrance to Gryffindor Tower .A large portrait of a fat lady in a pink dress asked them Password ?Coming through coming through !Percy called from behind the crowd .The new passwords ‘Fortuna Major !Oh no said Neville Longbottom sadly .He always had trouble remembering the passwords .Through the portrait hole and across the common room the girls and boys divided toward their separate staircases .Harry climbed the spiral stair with no thought in his head except how glad he was to be back .They reached their familiar circular dormitory with its five fourposter beds and Harry looking around felt he was home at last .TALONS AND TEA LEAVES When Harry Ron and Hermione entered the Great Hall for breakfast the next day the first thing they saw was Draco Malfoy who seemed to be entertaining a large group of Slytherins with a very funny story .As they passed Malfoy did a ridiculous impression of a swooning fit and there was a roar of laughter .Ignore him said Hermione who was right behind Harry .Just ignore him its not worth it .Hey Potter !shrieked Pansy Parkinson a Slytherin girl with a face like a pug .Potter !The dementors are coming Potter !Woooooooo !Harry dropped into a seat at the Gryffindor table next to George Weasley .New thirdyear course schedules said George passing them over .Whats up with you Harry ?Malfoy said Ron sitting down on Georges other side and glaring over at the Slytherin table .George looked up in time to see Malfoy pretending to faint with terror again .That little git he said calmly .He wasnt so cocky last night when the dementors were down at our end of the train .Came running into our compartment didnt he Fred ?Nearly wet himself said Fred with a contemptuous glance at Malfoy .I wasnt too happy myself said George .Theyre horrible things those dementors .Sort of freeze your insides dont they ?said Fred .You didnt pass out though did you ?said Harry in a low voice .Forget it Harry said George bracingly .Dad had to go out to Azkaban one time remember Fred ?And he said it was the worst place hed ever been he came back all weak and shaking .They suck the happiness out of a place dementors .Most of the prisoners go mad in there .Anyway well see how happy Malfoy looks after our first Quidditch match said Fred .Gryffindor versus Slytherin first game of the season remember ?The only time Harry and Malfoy had faced each other in a Quidditch match Malfoy had definitely come off worse .Feeling slightly more cheerful Harry helped himself to sausages and fried tomatoes .Hermione was examining her new schedule .Ooh good were starting some new subjects today she said happily .Hermione said Ron frowning as he looked over her shoulder theyve messed up your schedule .Look theyve got you down for about ten subjects a day .There isnt enough time .Ill manage .Ive fixed it all with Professor McGonagall .But look said Ron laughing see this morning ?Nine oclock Divination .And underneath nine oclock Muggle Studies .And Ron leaned closer to the schedule disbelieving look underneath that Arithmancy nine oclock .I mean I know youre good Hermione but no ones that good .Howre you supposed to be in three classes at once ?Dont be silly said Hermione shortly .Of course I wont be in three classes at once .Well then Pass the marmalade said Hermione .But Oh Ron whats it to you if my schedules a bit full ?Hermione snapped .I told you Ive fixed it all with Professor McGonagall .Just then Hagrid entered the Great Hall .He was wearing his long moleskin overcoat and was absentmindedly swinging a dead polecat from one enormous hand .All righ ?he said eagerly pausing on the way to the staff table .Yer in my firs ever lesson !Right after lunch !Bin up since five gettin everythin ready .Hope its okay .Me a teacher .honesly .He grinned broadly at them and headed off to the staff table still swinging the polecat .Wonder what hes been getting ready ?said Ron a note of anxiety in his voice .The hall was starting to empty as people headed off toward their first lesson .Ron checked his course schedule .Wed better go look Divinations at the top of North Tower .Itll take us ten minutes to get there .They finished their breakfasts hastily said goodbye to Fred and George and walked back through the hall .As they passed the Slytherin table Malfoy did yet another impression of a fainting fit .The shouts of laughter followed Harry into the entrance hall .The journey through the castle to North Tower was a long one .Two years at Hogwarts hadnt taught them everything about the castle and they had never been inside North Tower before .Theres got to be a shortcut Ron panted as they climbed their seventh long staircase and emerged on an unfamiliar landing where there was nothing but a large painting of a bare stretch of grass hanging on the stone wall .I think its this way said Hermione peering down the empty passage to the right .Cant be said Ron .Thats south look you can see a bit of the lake out of the window .Harry was watching the painting .A fat dapplegray pony had just ambled onto the grass and was grazing nonchalantly .Harry was used to the subjects of Hogwarts paintings moving around and leaving their frames to visit one another but he always enjoyed watching it .A moment later a short squat knight in a suit of armor clanked into the picture after his pony .By the look of the grass stains on his metal knees he had just fallen off .Aha !he yelled seeing Harry Ron and Hermione .What villains are these that trespass upon my private lands !Come to scorn at my fall perchance ?Draw you knaves you dogs !They watched in astonishment as the little knight tugged his sword out of its scabbard and began brandishing it violently hopping up and down in rage .But the sword was too long for him a particularly wild swing made him overbalance and he landed facedown in the grass .Are you all right ?said Harry moving closer to the picture .Get back you scurvy braggart !Back you rogue !The knight seized his sword again and used it to push himself back up but the blade sank deeply into the grass and though he pulled with all his might he couldnt get it out again .Finally he had to flop back down onto the grass and push up his visor to mop his sweating face .Listen said Harry taking advantage of the knights exhaustion were looking for the North Tower .You dont know the way do you ?A quest !The knights rage seemed to vanish instantly .He clanked to his feet and shouted Come follow me dear friends and we shall find our goal or else shall perish bravely in the charge !He gave the sword another fruitless tug tried and failed to mount the fat pony gave up and cried On foot then good sirs and gentle lady !On !On !And he ran clanking loudly into the left side of the frame and out of sight .They hurried after him along the corridor following the sound of his armor .Every now and then they spotted him running through a picture ahead .Be of stout heart the worst is yet to come !yelled the knight and they saw him reappear in front of an alarmed group of women in crinolines whose picture hung on the wall of a narrow spiral staircase .Puffing loudly Harry Ron and Hermione climbed the tightly spiraling steps getting dizzier and dizzier until at last they heard the murmur of voices above them and knew they had reached the classroom .Farewell !cried the knight popping his head into a painting of some sinisterlooking monks .Farewell my comradesinarms !If ever you have need of noble heart and steely sinew call upon Sir Cadogan !Yeah well call you muttered Ron as the knight disappeared if we ever need someone mental .They climbed the last few steps and emerged onto a tiny landing where most of the class was already assembled .There were no doors off this landing but Ron nudged Harry and pointed at the ceiling where there was a circular trapdoor with a brass plaque on it . ‘Sibyll Trelawney Divination teacher Harry read .Howre we supposed to get up there ?As though in answer to his question the trapdoor suddenly opened and a silvery ladder descended right at Harrys feet .Everyone got quiet .After you said Ron grinning so Harry climbed the ladder first .He emerged into the strangestlooking classroom he had ever seen .In fact it didnt look like a classroom at all more like a cross between someones attic and an oldfashioned tea shop .At least twenty small circular tables were crammed inside it all surrounded by chintz armchairs and fat little poufs .Everything was lit with a dim crimson light the curtains at the windows were all closed and the many lamps were draped with dark red scarves .It was stiflingly warm and the fire that was burning under the crowded mantelpiece was giving off a heavy sickly sort of perfume as it heated a large copper kettle .The shelves running around the circular walls were crammed with dustylooking feathers stubs of candles many packs of tattered playing cards countless silvery crystal balls and a huge array of teacups .Ron appeared at Harrys shoulder as the class assembled around them all talking in whispers .Where is she ?Ron said .A voice came suddenly out of the shadows a soft misty sort of voice .Welcome it said .How nice to see you in the physical world at last .Harrys immediate impression was of a large glittering insect .Professor Trelawney moved into the firelight and they saw that she was very thin her large glasses magnified her eyes to several times their natural size and she was draped in a gauzy spangled shawl .Innumerable chains and beads hung around her spindly neck and her arms and hands were encrusted with bangles and rings .Sit my children sit she said and they all climbed awkwardly into armchairs or sank onto poufs .Harry Ron and Hermione sat themselves around the same round table .Welcome to Divination said Professor Trelawney who had seated herself in a winged armchair in front of the fire .My name is Professor Trelawney .You may not have seen me before .I find that descending too often into the hustle and bustle of the main school clouds my Inner Eye .Nobody said anything to this extraordinary pronouncement .Professor Trelawney delicately rearranged her shawl and continued So you have chosen to study Divination the most difficult of all magical arts .I must warn you at the outset that if you do not have the Sight there is very little I will be able to teach you .Books can take you only so far in this field .At these words both Harry and Ron glanced grinning at Hermione who looked startled at the news that books wouldnt be much help in this subject .Many witches and wizards talented though they are in the area of loud bangs and smells and sudden disappearings are yet unable to penetrate the veiled mysteries of the future Professor Trelawney went on her enormous gleaming eyes moving from face to nervous face .It is a Gift granted to few .You boy she said suddenly to Neville who almost toppled off his pouf .Is your grandmother well ?I think so said Neville tremulously .I wouldnt be so sure if I were you dear said Professor Trelawney the firelight glinting on her long emerald earrings .Neville gulped .Professor Trelawney continued placidly .We will be covering the basic methods of Divination this year .The first term will be devoted to reading the tea leaves .Next term we shall progress to palmistry .By the way my dear she shot suddenly at Parvati Patil beware a redhaired man .Parvati gave a startled look at Ron who was right behind her and edged her chair away from him .In the second term Professor Trelawney went on we shall progress to the crystal ball if we have finished with fire omens that is .Unfortunately classes will be disrupted in February by a nasty bout of flu .I myself will lose my voice .And around Easter one of our number will leave us forever .A very tense silence followed this pronouncement but Professor Trelawney seemed unaware of it .I wonder dear she said to Lavender Brown who was nearest and shrank back in her chair if you could pass me the largest silver teapot ?Lavender looking relieved stood up took an enormous teapot from the shelf and put it down on the table in front of Professor Trelawney .Thank you my dear .Incidentally that thing you are dreading it will happen on Friday the sixteenth of October .Lavender trembled .Now I want you all to divide into pairs .Collect a teacup from the shelf come to me and I will fill it .Then sit down and drink drink until only the dregs remain .Swill these around the cup three times with the left hand then turn the cup upside down on its saucer wait for the last of the tea to drain away then give your cup to your partner to read .You will interpret the patterns using pages five and six of Unfogging the Future .I shall move among you helping and instructing .Oh and dear she caught Neville by the arm as he made to stand up after youve broken your first cup would you be so kind as to select one of the blue patterned ones ?Im rather attached to the pink .Sure enough Neville had no sooner reached the shelf of teacups when there was a tinkle of breaking china .Professor Trelawney swept over to him holding a dustpan and brush and said One of the blue ones then dear if you wouldnt mind .thank you .When Harry and Ron had had their teacups filled they went back to their table and tried to drink the scalding tea quickly .They swilled the dregs around as Professor Trelawney had instructed then drained the cups and swapped over .Right said Ron as they both opened their books at pages five and six .What can you see in mine ?A load of soggy brown stuff said Harry .The heavily perfumed smoke in the room was making him feel sleepy and stupid .Broaden your minds my dears and allow your eyes to see past the mundane !Professor Trelawney cried through the gloom .Harry tried to pull himself together .Right youve got a crooked sort of cross .He consulted Unfogging the Future .That means youre going to have ‘trials and suffering sorry about that but theres a thing that could be the sun .hang on .that means ‘great happiness .so youre going to suffer but be very happy .You need your Inner Eye tested if you ask me said Ron and they both had to stifle their laughs as Professor Trelawney gazed in their direction .My turn .Ron peered into Harrys teacup his forehead wrinkled with effort .Theres a blob a bit like a bowler hat he said .Maybe youre going to work for the Ministry of Magic .He turned the teacup the other way up .But this way it looks more like an acorn .Whats that ?He scanned his copy of Unfogging the Future . ‘A windfall unexpected gold .Excellent you can lend me some .and theres a thing here he turned the cup again that looks like an animal .yeah if that was its head .it looks like a hippo .no a sheep .Professor Trelawney whirled around as Harry let out a snort of laughter .Let me see that my dear she said reprovingly to Ron sweeping over and snatching Harrys cup from him .Everyone went quiet to watch .Professor Trelawney was staring into the teacup rotating it counterclockwise .The falcon .my dear you have a deadly enemy .But everyone knows that said Hermione in a loud whisper .Professor Trelawney stared at her .Well they do said Hermione .Everybody knows about Harry and YouKnowWho .Harry and Ron stared at her with a mixture of amazement and admiration .They had never heard Hermione speak to a teacher like that before .Professor Trelawney chose not to reply .She lowered her huge eyes to Harrys cup again and continued to turn it .The club .an attack .Dear dear this is not a happy cup .I thought that was a bowler hat said Ron sheepishly .The skull .danger in your path my dear .Everyone was staring transfixed at Professor Trelawney who gave the cup a final turn gasped and then screamed .There was another tinkle of breaking china Neville had smashed his second cup .Professor Trelawney sank into a vacant armchair her glittering hand at her heart and her eyes closed .My dear boy .my poor dear boy .no .it is kinder not to say .no .dont ask me .What is it Professor ?said Dean Thomas at once .Everyone had got to their feet and slowly they crowded around Harry and Rons table pressing close to Professor Trelawneys chair to get a good look at Harrys cup .My dear Professor Trelawneys huge eyes opened dramatically you have the Grim .The what ?said Harry .He could tell that he wasnt the only one who didnt understand Dean Thomas shrugged at him and Lavender Brown looked puzzled but nearly everybody else clapped their hands to their mouths in horror .The Grim my dear the Grim !cried Professor Trelawney who looked shocked that Harry hadnt understood .The giant spectral dog that haunts churchyards !My dear boy it is an omen the worst omen of death .Harrys stomach lurched .That dog on the cover of Death Omens in Flourish and Blotts the dog in the shadows of Magnolia Crescent .Lavender Brown clapped her hands to her mouth too .Everyone was looking at Harry everyone except Hermione who had gotten up and moved around to the back of Professor Trelawneys chair .I dont think it looks like a Grim she said flatly .Professor Trelawney surveyed Hermione with mounting dislike .Youll forgive me for saying so my dear but I perceive very little aura around you .Very little receptivity to the resonances of the future .Seamus Finnigan was tilting his head from side to side .It looks like a Grim if you do this he said with his eyes almost shut but it looks more like a donkey from here he said leaning to the left .When youve all finished deciding whether Im going to die or not !said Harry taking even himself by surprise .Now nobody seemed to want to look at him .I think we will leave the lesson here for today said Professor Trelawney in her mistiest voice .Yes .please pack away your things .Silently the class took their teacups back to Professor Trelawney packed away their books and closed their bags .Even Ron was avoiding Harrys eyes .Until we meet again said Professor Trelawney faintly fair fortune be yours .Oh and dear she pointed at Neville youll be late next time so mind you work extrahard to catch up .Harry Ron and Hermione descended Professor Trelawneys ladder and the winding stair in silence then set off for Professor McGonagalls Transfiguration lesson .It took them so long to find her classroom that early as they had left Divination they were only just in time .Harry chose a seat right at the back of the room feeling as though he were sitting in a very bright spotlight the rest of the class kept shooting furtive glances at him as though he were about to drop dead at any moment .He hardly heard what Professor McGonagall was telling them about Animagi wizards who could transform at will into animals and wasnt even watching when she transformed herself in front of their eyes into a tabby cat with spectacle markings around her eyes .Really what has got into you all today ?said Professor McGonagall turning back into herself with a faint pop and staring around at them all .Not that it matters but thats the first time my transformations not got applause from a class .Everybodys heads turned toward Harry again but nobody spoke .Then Hermione raised her hand .Please Professor weve just had our first Divination class and we were reading the tea leaves and Ah of course said Professor McGonagall suddenly frowning .There is no need to say any more Miss Granger .Tell me which of you will be dying this year ?Everyone stared at her .Me said Harry finally .I see said Professor McGonagall fixing Harry with her beady eyes .Then you should know Potter that Sibyll Trelawney has predicted the death of one student a year since she arrived at this school .None of them has died yet .Seeing death omens is her favorite way of greeting a new class .If it were not for the fact that I never speak ill of my colleagues Professor McGonagall broke off and they saw that her nostrils had gone white .She went on more calmly Divination is one of the most imprecise branches of magic .I shall not conceal from you that I have very little patience with it .True Seers are very rare and Professor Trelawney She stopped again and then said in a very matterof fact tone You look in excellent health to me Potter so you will excuse me if I dont let you off homework today .I assure you that if you die you need not hand it in .Hermione laughed .Harry felt a bit better .It was harder to feel scared of a lump of tea leaves away from the dim red light and befuddling perfume of Professor Trelawneys classroom .Not everyone was convinced however .Ron still looked worried and Lavender whispered But what about Nevilles cup ?When the Transfiguration class had finished they joined the crowd thundering toward the Great Hall for lunch .Ron cheer up said Hermione pushing a dish of stew toward him .You heard what Professor McGonagall said .Ron spooned stew onto his plate and picked up his fork but didnt start .Harry he said in a low serious voice you havent seen a great black dog anywhere have you ?Yeah I have said Harry .I saw one the night I left the Dursleys .Ron let his fork fall with a clatter .Probably a stray said Hermione calmly .Ron looked at Hermione as though she had gone mad .Hermione if Harrys seen a Grim thats thats bad he said .My my uncle Bilius saw one and and he died twentyfour hours later !Coincidence said Hermione airily pouring herself some pumpkin juice .You dont know what youre talking about !said Ron starting to get angry .Grims scare the living daylights out of most wizards !There you are then said Hermione in a superior tone .They see the Grim and die of fright .The Grims not an omen its the cause of death !And Harrys still with us because hes not stupid enough to see one and think right well Id better kick the bucket then !Ron mouthed wordlessly at Hermione who opened her bag took out her new Arithmancy book and propped it open against the juice jug .I think Divination seems very woolly she said searching for her page .A lot of guesswork if you ask me .There was nothing woolly about the Grim in that cup !said Ron hotly .You didnt seem quite so confident when you were telling Harry it was a sheep said Hermione coolly .Professor Trelawney said you didnt have the right aura !You just dont like being bad at something for a change !He had touched a nerve .Hermione slammed her Arithmancy book down on the table so hard that bits of meat and carrot flew everywhere .If being good at Divination means I have to pretend to see death omens in a lump of tea leaves Im not sure Ill be studying it much longer !That lesson was absolute rubbish compared with my Arithmancy class !She snatched up her bag and stalked away .Ron frowned after her .Whats she talking about ?he said to Harry .She hasnt been to an Arithmancy class yet .Harry was pleased to get out of the castle after lunch .Yesterdays rain had cleared the sky was a clear pale gray and the grass was springy and damp underfoot as they set off for their first ever Care of Magical Creatures class .Ron and Hermione werent speaking to each other .Harry walked beside them in silence as they went down the sloping lawns to Hagrids hut on the edge of the Forbidden Forest .It was only when he spotted three onlytoofamiliar backs ahead of them that he realized they must be having these lessons with the Slytherins .Malfoy was talking animatedly to Crabbe and Goyle who were chortling .Harry was quite sure he knew what they were talking about .Hagrid was waiting for his class at the door of his hut .He stood in his moleskin overcoat with Fang the boarhound at his heels looking impatient to start .Cmon now get a move on !he called as the class approached .Got a real treat for yeh today !Great lesson cornin up !Everyone here ?Right follow me !For one nasty moment Harry thought that Hagrid was going to lead them into the forest Harry had had enough unpleasant experiences in there to last him a lifetime .However Hagrid strolled off around the edge of the trees and five minutes later they found themselves outside a kind of paddock .There was nothing in there .Everyone gather round the fence here !he called .Thats it make sure yeh can see now firs thing yehll want ter do is open yer books How ?said the cold drawling voice of Draco Malfoy .Eh ?said Hagrid .How do we open our books ?Malfoy repeated .He took out his copy of The Monster Book of Monsters which he had bound shut with a length of rope .Other people took theirs out too some like Harry had belted their book shut others had crammed them inside tight bags or clamped them together with binder clips .Hasn hasn anyone bin able ter open their books ?said Hagrid looking crestfallen .The class all shook their heads .Yehve got ter stroke em said Hagrid as though this was the most obvious thing in the world .Look He took Hermiones copy and ripped off the Spellotape that bound it .The book tried to bite but Hagrid ran a giant forefinger down its spine and the book shivered and then fell open and lay quiet in his hand .Oh how silly weve all been !Malfoy sneered .We should have stroked them !Why didnt we guess !I I thought they were funny Hagrid said uncertainly to Hermione .Oh tremendously funny !said Malfoy .Really witty giving us books that try and rip our hands off !Shut up Malfoy said Harry quietly .Hagrid was looking downcast and Harry wanted Hagrid s first lesson to be a success .Righ then said Hagrid who seemed to have lost his thread so so yehve got yer books an an now yeh need the Magical Creatures .Yeah .So Ill go an get em .Hang on .He strode away from them into the forest and out of sight .God this place is going to the dogs said Malfoy loudly .That oaf teaching classes my fatherll have a fit when I tell him Shut up Malfoy Harry repeated .Careful Potter theres a dementor behind you Oooooooh !squealed Lavender Brown pointing toward the opposite side of the paddock .Trotting toward them were a dozen of the most bizarre creatures Harry had ever seen .They had the bodies hind legs and tails of horses but the front legs wings and heads of what seemed to be giant eagles with cruel steelcolored beaks and large brilliantly orange eyes .The talons on their front legs were half a foot long and deadly looking .Each of the beasts had a thick leather collar around its neck which was attached to a long chain and the ends of all of these were held in the vast hands of Hagrid who came jogging into the paddock behind the creatures .Gee up there !he roared shaking the chains and urging the creatures toward the fence where the class stood .Everyone drew back slightly as Hagrid reached them and tethered the creatures to the fence .Hippogriffs !Hagrid roared happily waving a hand at them .Beauiful aren they ?Harry could sort of see what Hagrid meant .Once you got over the first shock of seeing something that was half horse half bird you started to appreciate the hippogriffs gleaming coats changing smoothly from feather to hair each of them a different color stormy gray bronze pinkish roan gleaming chestnut and inky black .So said Hagrid rubbing his hands together and beaming around if yeh wan ter come a bit nearer No one seemed to want to .Harry Ron and Hermione however approached the fence cautiously .Now firs thing yeh gotta know abou hippogriffs is theyre proud said Hagrid .Easily offended hippogriffs are .Dont never insult one cause it might be the last thing yeh do .Malfoy Crabbe and Goyle werent listening they were talking in an undertone and Harry had a nasty feeling they were plotting how best to disrupt the lesson .Yeh always wait fer the hippogriff ter make the firs move Hagrid continued .Its polite see ?Yeh walk toward him and yeh bow an yeh wait .If he bows back yehre allowed ter touch him .If he doesn bow then get away from him sharpish cause those talons hurt .Right who wants ter go first ?Most of the class backed farther away in answer .Even Harry Ron and Hermione had misgivings .The hippogriffs were tossing their fierce heads and flexing their powerful wings they didnt seem to like being tethered like this .No one ?said Hagrid with a pleading look .Ill do it said Harry .There was an intake of breath from behind him and both Lavender and Parvati whispered Oooh no Harry remember your tea leaves !Harry ignored them .He climbed over the paddock fence .Good man Harry !roared Hagrid .Right then lets see how yeh get on with Buckbeak .He untied one of the chains pulled the gray hippogriff away from its fellows and slipped off its leather collar .The class on the other side of the paddock seemed to be holding its breath .Malfoys eyes were narrowed maliciously .Easy now Harry said Hagrid quietly .Yehve got eye contact now try not ter blink .Hippogriffs don trust yeh if yeh blink too much .Harrys eyes immediately began to water but he didnt shut them .Buckbeak had turned his great sharp head and was staring at Harry with one fierce orange eye .Thas it said Hagrid .Thas it Harry .now bow Harry didnt feel much like exposing the back of his neck to Buckbeak but he did as he was told .He gave a short bow and then looked up .The hippogriff was still staring haughtily at him .It didnt move .Ah said Hagrid sounding worried .Right back away now Harry easy does it But then to Harrys enormous surprise the hippogriff suddenly bent its scaly front knees and sank into what was an unmistakable bow .Well done Harry !said Hagrid ecstatic .Right yeh can touch him !Pat his beak go on !Feeling that a better reward would have been to back away Harry moved slowly toward the hippogriff and reached out toward it .He patted the beak several times and the hippogriff closed its eyes lazily as though enjoying it .The class broke into applause all except for Malfoy Crabbe and Goyle who were looking deeply disappointed .Righ then Harry said Hagrid .I reckon he might let yeh ride him !This was more than Harry had bargained for .He was used to a broomstick but he wasnt sure a hippogriff would be quite the same .Yeh climb up there jus behind the wing joint said Hagrid an mind yeh don pull any of his feathers out he won like that .Harry put his foot on the top of Buckbeaks wing and hoisted himself onto its back .Buckbeak stood up .Harry wasnt sure where to hold on everything in front of him was covered with feathers .Go on then !roared Hagrid slapping the hippogriffs hindquarters .Without warning twelvefoot wings flapped open on either side of Harry he just had time to seize the hippogriff around the neck before he was soaring upward .It was nothing like a broomstick and Harry knew which one he preferred the hippogriffs wings beat uncomfortably on either side of him catching him under his legs and making him feel he was about to be thrown off the glossy feathers slipped under his fingers and he didnt dare get a stronger grip instead of the smooth action of his Nimbus Two Thousand he now felt himself rocking backward and forward as the hindquarters of the hippogriff rose and fell with its wings .Buckbeak flew him once around the paddock and then headed back to the ground this was the bit Harry had been dreading he leaned back as the smooth neck lowered feeling he was going to slip off over the beak then felt a heavy thud as the four ill assorted feet hit the ground .He just managed to hold on and push himself straight again .Good work Harry !roared Hagrid as everyone except Malfoy Crabbe and Goyle cheered .Okay who else wants a go ?Emboldened by Harrys success the rest of the class climbed cautiously into the paddock .Hagrid untied the hippogriffs one by one and soon people were bowing nervously all over the paddock .Neville ran repeatedly backward from his which didnt seem to want to bend its knees .Ron and Hermione practiced on the chestnut while Harry watched .Malfoy Crabbe and Goyle had taken over Buckbeak .He had bowed to Malfoy who was now patting his beak looking disdainful .This is very easy Malfoy drawled loud enough for Harry to hear him .I knew it must have been if Potter could do it .I bet youre not dangerous at all are you ?he said to the hippogriff .Are you you great ugly brute ?It happened in a flash of steely talons Malfoy let out a highpitched scream and next moment Hagrid was wrestling Buckbeak back into his collar as he strained to get at Malfoy who lay curled in the grass blood blossoming over his robes .Im dying !Malfoy yelled as the class panicked .Im dying look at me !Its killed me !Yer not dyin !said Hagrid who had gone very white .Someone help me gotta get him outta here Hermione ran to hold open the gate as Hagrid lifted Malfoy easily .As they passed Harry saw that there was a long deep gash on Malfoys arm blood splattered the grass and Hagrid ran with him up the slope toward the castle .Very shaken the Care of Magical Creatures class followed at a walk .The Slytherins were all shouting about Hagrid .They should fire him straight away !said Pansy Parkinson who was in tears .It was Malfoys fault !snapped Dean Thomas .Crabbe and Goyle flexed their muscles threateningly .They all climbed the stone steps into the deserted entrance hall .Im going to see if hes okay !said Pansy and they all watched her run up the marble staircase .The Slytherins still muttering about Hagrid headed away in the direction of their dungeon common room Harry Ron and Hermione proceeded upstairs to Gryffindor Tower .Dyou think hell be all right ?said Hermione nervously .Course he will .Madam Pomfrey can mend cuts in about a second said Harry who had had far worse injuries mended magically by the nurse .That was a really bad thing to happen in Hagrid s first class though wasnt it ?said Ron looking worried .Trust Malfoy to mess things up for him .They were among the first to reach the Great Hall at dinnertime hoping to see Hagrid but he wasnt there .They wouldnt fire him would they ?said Hermione anxiously not touching her steakandkidney pudding .Theyd better not said Ron who wasnt eating either .Harry was watching the Slytherin table .A large group including Crabbe and Goyle was huddled together deep in conversation .Harry was sure they were cooking up their own version of how Malfoy had been injured .Well you cant say it wasnt an interesting first day back said Ron gloomily .They went up to the crowded Gryffindor common room after dinner and tried to do the homework Professor McGonagall had given them but all three of them kept breaking off and glancing out of the tower window .Theres a light on in Hagrids window Harry said suddenly .Ron looked at his watch .If we hurried we could go down and see him .Its still quite early .I dont know Hermione said slowly and Harry saw her glance at him .Im allowed to walk across the grounds he said pointedly .Sirius Black hasnt got past the dementors yet has he ?So they put their things away and headed out of the portrait hole glad to meet nobody on their way to the front doors as they werent entirely sure they were supposed to be out .The grass was still wet and looked almost black in the twilight .When they reached Hagrids hut they knocked and a voice growled Cmin .Hagrid was sitting in his shirtsleeves at his scrubbed wooden table his boarhound Fang had his head in Hagrids lap .One look told them that Hagrid had been drinking a lot there was a pewter tankard almost as big as a bucket in front of him and he seemed to be having difficulty getting them into focus .Spect its a record he said thickly when he recognized them .Don reckon theyve ever had a teacher who lasted ony a day before .You havent been fired Hagrid !gasped Hermione .Not yet said Hagrid miserably taking a huge gulp of whatever was in the tankard .But s only a matter o time int it after Malfoy .How is he ?said Ron as they all sat down .It wasnt serious was it ?Madam Pomfrey fixed him best she could said Hagrid dully but hes sayin its still agony .covered in bandages .moanin .Hes faking it said Harry at once .Madam Pomfrey can mend anything .She regrew half my bones last year .Trust Malfoy to milk it for all its worth .School govnors have bin told o course said Hagrid miserably .They reckon I started too big .Shoulda left hippogriffs fer later .done flobberworms or summat . .Jus thought itd make a good firs lesson .S all my fault .Its all Malfoy s fault Hagrid !said Hermione earnestly .Were witnesses said Harry .You said hippogriffs attack if you insult them .Its Malfoys problem that he wasnt listening .Well tell Dumbledore what really happened .Yeah dont worry Hagrid well back you up said Ron .Tears leaked out of the crinkled corners of Hagrid s beetleblack eyes .He grabbed both Harry and Ron and pulled them into a bonebreaking hug .I think youve had enough to drink Hagrid said Hermione firmly .She took the tankard from the table and went outside to empty it .Ar maybe shes right said Hagrid letting go of Harry and Ron who both staggered away rubbing their ribs .Hagrid heaved himself out of his chair and followed Hermione unsteadily outside .They heard a loud splash .Whats he done ?said Harry nervously as Hermione came back in with the empty tankard .Stuck his head in the water barrel said Hermione putting the tankard away .Hagrid came back his long hair and beard sopping wet wiping the water out of his eyes .Thas better he said shaking his head like a dog and drenching them all .Listen it was good of yeh ter come an see me I really Hagrid stopped dead staring at Harry as though hed only just realized he was there .WHAT DYEH THINK YOURE DOIN EH ?he roared so suddenly that they jumped a foot in the air .YEH RE NOT TO GO WANDERIN AROUND AFTER DARK HARRY !AN YOU TWO !LETTIN HIM !Hagrid strode over to Harry grabbed his arm and pulled him to the door .Cmon !Hagrid said angrily .Im takinyer all back up ter school an don let me catch yeh walkin down ter see me after dark again .Im not worth that !7 THE BOGGART IN THE WARDROBE Malfoy didnt reappear in classes until late on Thursday morning when the Slytherins and Gryffindors were halfway through double Potions .He swaggered into the dungeon his right arm covered in bandages and bound up in a sling acting in Harrys opinion as though he were the heroic survivor of some dreadful battle .How is it Draco ?simpered Pansy Parkinson .Does it hurt much ?Yeah said Malfoy putting on a brave sort of grimace .But Harry saw him wink at Crabbe and Goyle when Pansy had looked away .Settle down settle down said Professor Snape idly .Harry and Ron scowled at each other Snape wouldnt have said settle down if theyd walked in late hed have given them detention .But Malfoy had always been able to get away with anything in Snape s classes Snape was head of Slytherin House and generally favored his own students above all others .They were making a new potion today a Shrinking Solution .Malfoy set up his cauldron right next to Harry and Ron so that they were preparing their ingredients on the same table .Sir Malfoy called sir Ill need help cutting up these daisy roots because of my arm Weasley cut up Malfoys roots for him said Snape without looking up .Ron went brick red .Theres nothing wrong with your arm he hissed at Malfoy .Malfoy smirked across the table .Weasley you heard Professor Snape cut up these roots .Ron seized his knife pulled Malfoys roots toward him and began to chop them roughly so that they were all different sizes .Professor drawled Malfoy Weasleys mutilating my roots sir .Snape approached their table stared down his hooked nose at the roots then gave Ron an unpleasant smile from beneath his long greasy black hair .Change roots with Malfoy Weasley .But sir !Ron had spent the last quarter of an hour carefully shredding his own roots into exactly equal pieces .Now said Snape in his most dangerous voice .Ron shoved his own beautifully cut roots across the table at Malfoy then took up the knife again .And sir 111 need this shrivelfig skinned said Malfoy his voice full of malicious laughter .Potter you can skin Malfoys shrivelfig said Snape giving Harry the look of loathing he always reserved just for him .Harry took Malfoys shrivelfig as Ron began trying to repair the damage to the roots he now had to use .Harry skinned the shrivelfig as fast as he could and flung it back across the table at Malfoy without speaking .Malfoy was smirking more broadly than ever .Seen your pal Hagrid lately ?he asked them quietly .None of your business said Ron jerkily without looking up .Im afraid he wont be a teacher much longer said Malfoy in a tone of mock sorrow .Fathers not very happy about my injury Keep talking Malfoy and Ill give you a real injury snarled Ron .hes complained to the school governors .And to the Ministry of Magic .Fathers got a lot of influence you know .And a lasting injury like this he gave a huge fake sigh who knows if my armll ever be the same again ?So thats why youre putting it on said Harry accidentally beheading a dead caterpillar because his hand was shaking in anger .To try to get Hagrid fired .Well said Malfoy lowering his voice to a whisper partly Potter .But there are other benefits too .Weasley slice my caterpillars for me .A few cauldrons away Neville was in trouble .Neville regularly went to pieces in Potions lessons it was his worst subject and his great fear of Professor Snape made things ten times worse .His potion which was supposed to be a bright acid green had turned Orange Longbottom said Snape ladling some up and allowing it to splash back into the cauldron so that everyone could see .Orange .Tell me boy does anything penetrate that thick skull of yours ?Didnt you hear me say quite clearly that only one rat spleen was needed ?Didnt I state plainly that a dash of leech juice would suffice ?What do I have to do to make you understand Longbottom ?Neville was pink and trembling .He looked as though he was on the verge of tears .Please sir said Hermione please I could help Neville put it right I dont remember asking you to show off Miss Granger said Snape coldly and Hermione went as pink as Neville .Longbottom at the end of this lesson we will feed a few drops of this potion to your toad and see what happens .Perhaps that will encourage you to do it properly .Snape moved away leaving Neville breathless with fear .Help me !he moaned to Hermione .Hey Harry said Seamus Finnigan leaning over to borrow Harrys brass scales have you heard ?Daily Prophet this morning they reckon Sirius Blacks been sighted .Where ?said Harry and Ron quickly .On the other side of the table Malfoy looked up listening closely .Not too far from here said Seamus who looked excited .It was a Muggle who saw him .Course she didnt really understand .The Muggles think hes just an ordinary criminal dont they ?So she phoned the telephone hot line .By the time the Ministry of Magic got there he was gone .Not too far from here .Ron repeated looking significantly at Harry .He turned around and saw Malfoy watching closely .What Malfoy ?Need something else skinned ?But Malfoys eyes were shining malevolently and they were fixed on Harry .He leaned across the table .Thinking of trying to catch Black singlehanded Potter ?Yeah thats right said Harry offhandedly .Malfoys thin mouth was curving in a mean smile .Of course if it was me he said quietly Id have done something before now .I wouldnt be staying in school like a good boy Id be out there looking for him .What are you talking about Malfoy ?said Ron roughly .Dont you know Potter ?breathed Malfoy his pale eyes narrowed .Know what ?Malfoy let out a low sneering laugh .Maybe youd rather not risk your neck he said .Want to leave it to the dementors do you ?But if it was me Id want revenge .Id hunt him down myself .What are you talking about ?said Harry angrily but at that moment Snape called You should have finished adding your ingredients by now this potion needs to stew before it can be drunk so clear away while it simmers and then well test Longbottoms .Crabbe and Goyle laughed openly watching Neville sweat as he stirred his potion feverishly .Hermione was muttering instructions to him out of the corner of her mouth so that Snape wouldnt see .Harry and Ron packed away their unused ingredients and went to wash their hands and ladles in the stone basin in the corner .What did Malfoy mean ?Harry muttered to Ron as he stuck his hands under the icy jet that poured from the gargoyles mouth .Why would I want revenge on Black ?He hasnt done anything to me yet .Hes making it up said Ron savagely .Hes trying to make you do something stupid .The end of the lesson in sight Snape strode over to Neville who was cowering by his cauldron .Everyone gather round said Snape his black eyes glittering and watch what happens to Longbottoms toad .If he has managed to produce a Shrinking Solution it will shrink to a tadpole .If as I dont doubt he has done it wrong his toad is likely to be poisoned .The Gryffindors watched fearfully .The Slytherins looked excited .Snape picked up Trevor the toad in his left hand and dipped a small spoon into Nevilles potion which was now green .He trickled a few drops down Trevors throat .There was a moment of hushed silence in which Trevor gulped then there was a small pop and Trevor the tadpole was wriggling in Snape s palm .The Gryffindors burst into applause .Snape looking sour pulled a small bottle from the pocket of his robe poured a few drops on top of Trevor and he reappeared suddenly fully grown .Five points from Gryffindor said Snape which wiped the smiles from every face .I told you not to help him Miss Granger .Class dismissed .Harry Ron and Hermione climbed the steps to the entrance hall .Harry was still thinking about what Malfoy had said while Ron was seething about Snape .Five points from Gryffindor because the potion was all right !Why didnt you lie Hermione ?You shouldve said Neville did it all by himself !Hermione didnt answer .Ron looked around .Where is she ?Harry turned too .They were at the top of the steps now watching the rest of the class pass them heading for the Great Hall and lunch .She was right behind us said Ron frowning .Malfoy passed them walking between Crabbe and Goyle .He smirked at Harry and disappeared .There she is said Harry .Hermione was panting slightly hurrying up the stairs one hand clutched her bag the other seemed to be tucking something down the front of her robes .How did you do that ?said Ron .What ?said Hermione joining them .One minute you were right behind us the next moment you were back at the bottom of the stairs again .What ?Hermione looked slightly confused .Oh I had to go back for something .Oh no A seam had split on Hermiones bag .Harry wasnt surprised he could see that it was crammed with at least a dozen large and heavy books .Why are you carrying all these around with you ?Ron asked her .You know how many subjects Im taking said Hermione breathlessly .Couldnt hold these for me could you ?But Ron was turning over the books she had handed him looking at the covers .You havent got any of these subjects today .Its only Defense Against the Dark Arts this afternoon .Oh yes said Hermione vaguely but she packed all the books back into her bag just the same .I hope theres something good for lunch Im starving she added and she marched off toward the Great Hall .Dyou get the feeling Hermione s not telling us something ?Ron asked Harry .Professor Lupin wasnt there when they arrived at his first Defense Against the Dark Arts lesson .They all sat down took out their books quills and parchment and were talking when he finally entered the room .Lupin smiled vaguely and placed his tatty old briefcase on the teachers desk .He was as shabby as ever but looked healthier than he had on the train as though he had had a few square meals .Good afternoon he said .Would you please put all your books back in your bags .Todays will be a practical lesson .You will need only your wands .A few curious looks were exchanged as the class put away their books .They had never had a practical Defense Against the Dark Arts before unless you counted the memorable class last year when their old teacher had brought a cageful of pixies to class and set them loose .Right then said Professor Lupin when everyone was ready .If youd follow me .Puzzled but interested the class got to its feet and followed Professor Lupin out of the classroom .He led them along the deserted corridor and around a corner where the first thing they saw was Peeves the Poltergeist who was floating upside down in midair and stuffing the nearest keyhole with chewing gum .Peeves didnt look up until Professor Lupin was two feet away then he wiggled his curlytoed feet and broke into song .Loony loopy Lupin Peeves sang .Loony loopy Lupin loony loopy Lupin Rude and unmanageable as he almost always was Peeves usually showed some respect toward the teachers .Everyone looked quickly at Professor Lupin to see how he would take this to their surprise he was still smiling .Id take that gum out of the keyhole if I were you Peeves he said pleasantly .Mr Filch wont be able to get in to his brooms .Filch was the Hogwarts caretaker a badtempered failed wizard who waged a constant war against the students and indeed Peeves .However Peeves paid no attention to Professor Lupins words except to blow a loud wet raspberry .Professor Lupin gave a small sigh and took out his wand .This is a useful little spell he told the class over his shoulder .Please watch closely .He raised the wand to shoulder height said Waddiwasil and pointed it at Peeves .With the force of a bullet the wad of chewing gum shot out of the keyhole and straight down Peeves s left nostril he whirled upright and zoomed away cursing .Cool sir !said Dean Thomas in amazement .Thank you Dean said Professor Lupin putting his wand away again .Shall we proceed ?They set off again the class looking at shabby Professor Lupin with increased respect .He led them down a second corridor and stopped right outside the staffroom door .Inside please said Professor Lupin opening it and standing back .The staffroom a long paneled room full of old mismatched chairs was empty except for one teacher .Professor Snape was sitting in a low armchair and he looked around as the class filed in .His eyes were glittering and there was a nasty sneer playing around his mouth .As Professor Lupin came in and made to close the door behind him Snape said Leave it open Lupin .Td rather not witness this .He got to his feet and strode past the class his black robes billowing behind him .At the doorway he turned on his heel and said Possibly no ones warned you Lupin but this class contains Neville Longbottom .I would advise you not to entrust him with anything difficult .Not unless Miss Granger is hissing instructions in his ear .Neville went scarlet .Harry glared at Snape it was bad enough that he bullied Neville in his own classes let alone doing it in front of other teachers .Professor Lupin had raised his eyebrows .I was hoping that Neville would assist me with the first stage of the operation he said and I am sure he will perform it admirably .Nevilles face went if possible even redder .Snapes lip curled but he left shutting the door with a snap .Now then said Professor Lupin beckoning the class toward the end of the room where there was nothing but an old wardrobe where the teachers kept their spare robes .As Professor Lupin went to stand next to it the wardrobe gave a sudden wobble banging off the wall .Nothing to worry about said Professor Lupin calmly because a few people had jumped backward in alarm .Theres a boggart in there .Most people seemed to feel that this was something to worry about .Neville gave Professor Lupin a look of pure terror and Seamus Finnigan eyed the now rattling doorknob apprehensively .Boggarts like dark enclosed spaces said Professor Lupin .Wardrobes the gap beneath beds the cupboards under sinks Ive even met one that had lodged itself in a grandfather clock .This one moved in yesterday afternoon and I asked the headmaster if the staff would leave it to give my third years some practice .So the first question we must ask ourselves is what is a boggart ?Hermione put up her hand .Its a shapeshifter she said .It can take the shape of whatever it thinks will frighten us most .Couldnt have put it better myself said Professor Lupin and Hermione glowed .So the boggart sitting in the darkness within has not yet assumed a form .He does not yet know what will frighten the person on the other side of the door .Nobody knows what a boggart looks like when he is alone but when I let him out he will immediately become whatever each of us most fears .This means said Professor Lupin choosing to ignore Nevilles small sputter of terror that we have a huge advantage over the boggart before we begin .Have you spotted it Harry ?Trying to answer a question with Hermione next to him bobbing up and down on the balls of her feet with her hand in the air was very offputting but Harry had a go .Er because there are so many of us it wont know what shape it should be ?Precisely said Professor Lupin and Hermione put her hand down looking a little disappointed .Its always best to have company when youre dealing with a boggart .He becomes confused .Which should he become a headless corpse or a flesheating slug ?I once saw a boggart make that very mistake tried to frighten two people at once and turned himself into half a slug .Not remotely frightening .The charm that repels a boggart is simple yet it requires force of mind .You see the thing that really finishes a boggart is laughter .What you need to do is force it to assume a shape that you find amusing .We will practice the charm without wands first .After me please .riddikulusV RiddikulusV said the class together .Good said Professor Lupin .Very good .But that was the easy part Im afraid .You see the word alone is not enough .And this is where you come in Neville .The wardrobe shook again though not as much as Neville who walked forward as though he were heading for the gallows .Right Neville said Professor Lupin .First things first what would you say is the thing that frightens you most in the world ?Nevilles lips moved but no noise came out .Didnt catch that Neville sorry said Professor Lupin cheerfully .Neville looked around rather wildly as though begging someone to help him then said in barely more than a whisper Professor Snape .Nearly everyone laughed .Even Neville grinned apologetically .Professor Lupin however looked thoughtful .Professor Snape .hmmm .Neville I believe you live with your grandmother ?Er yes said Neville nervously .But I dont want the boggart to turn into her either .No no you misunderstand me said Professor Lupin now smiling .I wonder could you tell us what sort of clothes your grandmother usually wears ?Neville looked startled but said Well .always the same hat .A tall one with a stuffed vulture on top .And a long dress .green normally .and sometimes a foxfur scarf .And a handbag ?prompted Professor Lupin .A big red one said Neville .Right then said Professor Lupin .Can you picture those clothes very clearly Neville ?Can you see them in your minds eye ?Yes said Neville uncertainly plainly wondering what was coming next .When the boggart bursts out of this wardrobe Neville and sees you it will assume the form of Professor Snape said Lupin .And you will raise your wand thus and cry ‘Riddikulus and concentrate hard on your grandmothers clothes .If all goes well Professor Boggart Snape will be forced into that vulturetopped hat and that green dress with that big red handbag .There was a great shout of laughter .The wardrobe wobbled more violently .If Neville is successful the boggart is likely to shift his attention to each of us in turn said Professor Lupin .I would like all of you to take a moment now to think of the thing that scares you most and imagine how you might force it to look comical .The room went quiet .Harry thought .What scared him most in the world ?His first thought was Lord Voldemort a Voldemort returned to full strength .But before he had even started to plan a possible counterattack on a boggart Voldemort a horrible image came floating to the surface of his mind .A rotting glistening hand slithering back beneath a black cloak .a long rattling breath from an unseen mouth .then a cold so penetrating it felt like drowning .Harry shivered then looked around hoping no one had noticed .Many people had their eyes shut tight .Ron was muttering to himself Take its legs off .Harry was sure he knew what that was about .Rons greatest fear was spiders .Everyone ready ?said Professor Lupin .Harry felt a lurch of fear .He wasnt ready .How could you make a dementor less frightening ?But he didnt want to ask for more time everyone else was nodding and rolling up their sleeves .Neville were going to back away said Professor Lupin .Let you have a clear field all right ?Ill call the next person forward .Everyone back now so Neville can get a clear shot They all retreated backed against the walls leaving Neville alone beside the wardrobe .He looked pale and frightened but he had pushed up the sleeves of his robes and was holding his wand ready .On the count of three Neville said Professor Lupin who was pointing his own wand at the handle of the wardrobe .One two three now A jet of sparks shot from the end of Professor Lupins wand and hit the doorknob .The wardrobe burst open .Hooknosed and menacing Professor Snape stepped out his eyes flashing at Neville .Neville backed away his wand up mouthing wordlessly .Snape was bearing down upon him reaching inside his robes .R r riddikulusV squeaked Neville .There was a noise like a whip crack .Snape stumbled he was wearing a long lacetrimmed dress and a towering hat topped with a motheaten vulture and he was swinging a huge crimson handbag .There was a roar of laughter the boggart paused confused and Professor Lupin shouted Parvati !Forward !Parvati walked forward her face set .Snape rounded on her .There was another crack and where he had stood was a bloodstained bandaged mummy its sightless face was turned to Parvati and it began to walk toward her very slowly dragging its feet its stiff arms rising RiddikulusV cried Parvati .A bandage unraveled at the mummys feet it became entangled fell face forward and its head rolled off .Seamus !roared Professor Lupin .Seamus darted past Parvati .Crack !Where the mummy had been was a woman with floorlength black hair and a skeletal green tinged face a banshee .She opened her mouth wide and an unearthly sound filled the room a long wailing shriek that made the hair on Harrys head stand on end RiddikulusV shouted Seamus .The banshee made a rasping noise and clutched her throat her voice was gone .Crack .The banshee turned into a rat which chased its tail in a circle then crack .became a rattlesnake which slithered and writhed before crack !becoming a single bloody eyeball .Its confused !shouted Lupin .Were getting there !Dean !Dean hurried forward .Crack The eyeball became a severed hand which flipped over and began to creep along the floor like a crab .RiddikulusV yelled Dean .There was a snap and the hand was trapped in a mousetrap .Excellent !Ron you next !Ron leapt forward .Crack Quite a few people screamed .A giant spider six feet tall and covered in hair was advancing on Ron clicking its pincers menacingly .For a moment Harry thought Ron had frozen .Then RiddikulusV bellowed Ron and the spiders legs vanished it rolled over and over Lavender Brown squealed and ran out of its way and it came to a halt at Harrys feet .He raised his wand ready but Here !shouted Professor Lupin suddenly hurrying forward .Crack .The legless spider had vanished .For a second everyone looked wildly around to see where it was .Then they saw a silverywhite orb hanging in the air in front of Lupin who said RiddikulusV almost lazily .Crack !Forward Neville and finish him off !said Lupin as the boggart landed on the floor as a cockroach .Crack .Snape was back .This time Neville charged forward looking determined .RiddikulusV he shouted and they had a split seconds view of Snape in his lacy dress before Neville let out a great Ha !of laughter and the boggart exploded burst into a thousand tiny wisps of smoke and was gone .Excellent !cried Professor Lupin as the class broke into applause .Excellent Neville .Well done everyone .Let me see .five points to Gryffindor for every person to tackle the boggart ten for Neville because he did it twice .and five each to Hermione and Harry .But I didnt do anything said Harry .You and Hermione answered my questions correctly at the start of the class Harry Lupin said lightly .Very well everyone an excellent lesson .Homework kindly read the chapter on boggarts and summarize it for me .to be handed in on Monday .That will be all .Talking excitedly the class left the staffroom .Harry however wasnt feeling cheerful .Professor Lupin had deliberately stopped him from tackling the boggart .Why ?Was it because hed seen Harry collapse on the train and thought he wasnt up to much ?Had he thought Harry would pass out again ?But no one else seemed to have noticed anything .Did you see me take that banshee ?shouted Seamus .And the hand !said Dean waving his own around .And Snape in that hat !And my mummy !I wonder why Professor Lupins frightened of crystal balls ?said Lavender thoughtfully .That was the best Defense Against the Dark Arts lesson weve ever had wasnt it ?said Ron excitedly as they made their way back to the classroom to get their bags .He seems like a very good teacher said Hermione approvingly .But I wish I could have had a turn with the boggart What would it have been for you ?said Ron sniggering .A piece of homework that only got nine out of ten ?d FLIGHT OF THE FAT LADY In no time at all Defense Against the Dark Arts had become most peoples favorite class .Only Draco Malfoy and his gang of Slytherins had anything bad to say about Professor Lupin .Look at the state of his robes Malfoy would say in a loud whisper as Professor Lupin passed .He dresses like our old houseelf .But no one else cared that Professor Lupins robes were patched and frayed .His next few lessons were just as interesting as the first .After boggarts they studied Red Caps nasty little goblinlike creatures that lurked wherever there had been bloodshed in the dungeons of castles and the potholes of deserted battlefields waiting to bludgeon those who had gotten lost .From Red Caps they moved on to kappas creepy waterdwellers that looked like scaly monkeys with webbed hands itching to strangle unwitting waders in their ponds .Harry only wished he was as happy with some of his other classes .Worst of all was Potions .Snape was in a particularly vindictive mood these days and no one was in any doubt why .The story of the boggart assuming Snapes shape and the way that Neville had dressed it in his grandmothers clothes had traveled through the school like wildfire .Snape didnt seem to find it funny .His eyes flashed menacingly at the very mention of Professor Lupins name and he was bullying Neville worse than ever .Harry was also growing to dread the hours he spent in Professor Trelawneys stifling tower room deciphering lopsided shapes and symbols trying to ignore the way Professor Trelawneys enormous eyes filled with tears every time she looked at him .He couldnt like Professor Trelawney even though she was treated with respect bordering on reverence by many of the class .Parvati Patil and Lavender Brown had taken to haunting Professor Trelawneys tower room at lunchtimes and always returned with annoyingly superior looks on their faces as though they knew things the others didnt .They had also started using hushed voices whenever they spoke to Harry as though he were on his deathbed .Nobody really liked Care of Magical Creatures which after the actionpacked first class had become extremely dull .Hagrid seemed to have lost his confidence .They were now spending lesson after lesson learning how to look after flobberworms which had to be some of the most boring creatures in existence .Why would anyone bother looking after them ?said Ron after yet another hour of poking shredded lettuce down the flobberworms slimy throats .At the start of October however Harry had something else to occupy him something so enjoyable it more than made up for his unsatisfactory classes .The Quidditch season was approaching and Oliver Wood Captain of the Gryffindor team called a meeting one Thursday evening to discuss tactics for the new season .There were seven people on a Quidditch team three Chasers whose job it was to score goals by putting the Quaffle a red soccersized ball through one of the fiftyfoothigh hoops at each end of the field two Beaters who were equipped with heavy bats to repel the Bludgers two heavy black balls that zoomed around trying to attack the players a Keeper who defended the goal posts and the Seeker who had the hardest job of all that of catching the Golden Snitch a tiny winged walnutsized ball whose capture ended the game and earned the Seekers team an extra one hundred and fifty points .Oliver Wood was a burly seventeenyearold now in his seventh and final year at Hogwarts .There was a quiet sort of desperation in his voice as he addressed his six fellow team members in the chilly locker rooms on the edge of the darkening Quidditch field .This is our last chance my last chance to win the Quidditch Cup he told them striding up and down in front of them .Ill be leaving at the end of this year .Ill never get another shot at it .Gryffindor hasnt won for seven years now .Okay so weve had the worst luck in the world injuries then the tournament getting called off last year .Wood swallowed as though the memory still brought a lump to his throat .But we also know weve got the best ruddy team in the school he said punching a fist into his other hand the old manic glint back in his eye .Weve got three superb Chasers .Wood pointed at Alicia Spinnet Angelina Johnson and Katie Bell .Weve got two unbeatable Beaters .Stop it Oliver youre embarrassing us said Fred and George Weasley together pretending to blush .And weve got a Seeker who has never failed to win us a match .Wood rumbled glaring at Harry with a kind of furious pride .And me he added as an afterthought .We think youre very good too Oliver said George .Spanking good Keeper said Fred .The point is Wood went on resuming his pacing the Quidditch Cup should have had our name on it these last two years .Ever since Harry joined the team Ive thought the thing was in the bag .But we havent got it and this years the last chance well get to finally see our name on the thing .Wood spoke so dejectedly that even Fred and George looked sympathetic .Oliver this years our year said Fred .Well do it Oliver !said Angelina .Definitely said Harry .Full of determination the team started training sessions three evenings a week .The weather was getting colder and wetter the nights darker but no amount of mud wind or rain could tarnish Harrys wonderful vision of finally winning the huge silver Quidditch Cup .Harry returned to the Gryffindor common room one evening after training cold and stiff but pleased with the way practice had gone to find the room buzzing excitedly .Whats happened ?he asked Ron and Hermione who were sitting in two of the best chairs by the fireside and completing some star charts for Astronomy .First Hogsmeade weekend said Ron pointing at a notice that had appeared on the battered old bulletin board .End of October .Halloween .Excellent said Fred who had followed Harry through the portrait hole .I need to visit Zonkos .Im nearly out of Stink Pellets .Harry threw himself into a chair beside Ron his high spirits ebbing away .Hermione seemed to read his mind .Harry Im sure youll be able to go next time she said .Theyre bound to catch Black soon .Hes been sighted once already Blacks not fool enough to try anything in Hogsmeade said Ron .Ask McGonagall if you can go this time Harry .The next one might not be for ages Ron said Hermione .Harrys supposed to stay in school He cant be the only third year left behind said Ron .Ask McGonagall go on Harry Yeah I think I will said Harry making up his mind .Hermione opened her mouth to argue but at that moment Crookshanks leapt lightly onto her lap .A large dead spider was dangling from his mouth .Does he have to eat that in front of us ?said Ron scowling .Clever Crookshanks did you catch that all by yourself ?said Hermione .Crookshanks slowly chewed up the spider his yellow eyes fixed insolently on Ron .Just keep him over there thats all said Ron irritably turning back to his star chart .Ive got Scabbers asleep in my bag .Harry yawned .He really wanted to go to bed but he still had his own star chart to complete .He pulled his bag toward him took out parchment ink and quill and started work .You can copy mine if you like said Ron labeling his last star with a flourish and shoving the chart toward Harry .Hermione who disapproved of copying pursed her lips but didnt say anything .Crookshanks was still staring unblinkingly at Ron flicking the end of his bushy tail .Then without warning he pounced .OY !Ron roared seizing his bag as Crookshanks sank four sets of claws deep inside it and began tearing ferociously .GET OFF YOU STUPID ANIMAL !Ron tried to pull the bag away from Crookshanks but Crookshanks clung on spitting and slashing .Ron dont hurt him !squealed Hermione the whole common room was watching Ron whirled the bag around Crookshanks still clinging to it and Scabbers came flying out of the top CATCH THAT CAT !Ron yelled as Crookshanks freed himself from the remnants of the bag sprang over the table and chased after the terrified Scabbers .George Weasley made a lunge for Crookshanks but missed Scabbers streaked through twenty pairs of legs and shot beneath an old chest of drawers .Crookshanks skidded to a halt crouched low on his bandy legs and started making furious swipes beneath it with his front paw .Ron and Hermione hurried over Hermione grabbed Crookshanks around the middle and heaved him away Ron threw himself onto his stomach and with great difficulty pulled Scabbers out by the tail .Look at him !he said furiously to Hermione dangling Scabbers in front of her .Hes skin and bone !You keep that cat away from him !Crookshanks doesnt understand its wrong !said Hermione her voice shaking .All cats chase rats Ron !Theres something funny about that animal !said Ron who was trying to persuade a frantically wiggling Scabbers back into his pocket .It heard me say that Scabbers was in my bag !Oh what rubbish said Hermione impatiently .Crookshanks could smell him Ron how else dyou think That cats got it in for Scabbers !said Ron ignoring the people around him who were starting to giggle .And Scabbers was here first and hes ill !Ron marched through the common room and out of sight up the stairs to the boys dormitories .Ron was still in a bad mood with Hermione next day .He barely talked to her all through Herbology even though he Harry and Hermione were working together on the same puffapod .Hows Scabbers ?Hermione asked timidly as they stripped fat pink pods from the plants and emptied the shining beans into a wooden pail .Hes hiding at the bottom of my bed shaking said Ron angrily missing the pail and scattering beans over the greenhouse floor .Careful Weasley careful !cried Professor Sprout as the beans burst into bloom before their very eyes .They had Transfiguration next .Harry who had resolved to ask Professor McGonagall after the lesson whether he could go into Hogsmeade with the rest joined the line outside the class trying to decide how he was going to argue his case .He was distracted however by a disturbance at the front of the line .Lavender Brown seemed to be crying .Parvati had her arm around her and was explaining something to Seamus Finnigan and Dean Thomas who were looking very serious .Whats the matter Lavender ?said Hermione anxiously as she Harry and Ron went to join the group .She got a letter from home this morning Parvati whispered .Its her rabbit Binky .Hes been killed by a fox .Oh said Hermione Im sorry Lavender .I should have known !said Lavender tragically .You know what day it is ?Er The sixteenth of October !That thing youre dreading it will happen on the sixteenth of October !Remember ?She was right she was right !The whole class was gathered around Lavender now .Seamus shook his head seriously .Hermione hesitated then she said You you were dreading Binky being killed by a fox ?Well not necessarily by a fox said Lavender looking up at Hermione with streaming eyes but I was obviously dreading him dying wasnt I ?Oh said Hermione .She paused again .Then Was Binky an old rabbit ?N no !sobbed Lavender .H he was only a baby !Parvati tightened her arm around Lavenders shoulders .But then why would you dread him dying ?said Hermione .Parvati glared at her .Well look at it logically said Hermione turning to the rest of the group .I mean Binky didnt even die today did he ?Lavender just got the news today Lavender wailed loudly .and she cant have been dreading it because its come as a real shock Dont mind Hermione Lavender said Ron loudly she doesnt think other peoples pets matter very much .Professor McGonagall opened the classroom door at that moment which was perhaps lucky Hermione and Ron were looking daggers at each other and when they got into class they seated themselves on either side of Harry and didnt talk to each other for the whole class .Harry still hadnt decided what he was going to say to Professor McGonagall when the bell rang at the end of the lesson but it was she who brought up the subject of Hogsmeade first .One moment please !she called as the class made to leave .As youre all in my House you should hand Hogsmeade permission forms to me before Halloween .No form no visiting the village so dont forget !Neville put up his hand .Please Professor I I think Ive lost Your grandmother sent yours to me directly Longbottom said Professor McGonagall .She seemed to think it was safer .Well thats all you may leave .Ask her now Ron hissed at Harry .Oh but Hermione began .Go for it Harry said Ron stubbornly .Harry waited for the rest of the class to disappear then headed nervously for Professor McGonagalls desk .Yes Potter ?Harry took a deep breath .Professor my aunt and uncle er forgot to sign my form he said .Professor McGonagall looked over her square spectacles at him but didnt say anything .So er dyou think it would be all right I mean will it be okay if I if I go to Hogsmeade ?Professor McGonagall looked down and began shuffling papers on her desk .Im afraid not Potter she said .You heard what I said .No form no visiting the village .Thats the rule .But Professor my aunt and uncle you know theyre Muggles they dont really understand about about Hogwarts forms and stuff Harry said while Ron egged him on with vigorous nods .If you said I could go But I dont say so said Professor McGonagall standing up and piling her papers neatly into a drawer .The form clearly states that the parent or guardian must give permission .She turned to look at him with an odd expression on her face .Was it pity ?Im sorry Potter but thats my final word .You had better hurry or youll be late for your next lesson .There was nothing to be done .Ron called Professor McGonagall a lot of names that greatly annoyed Hermione Hermione assumed an allforthebest expression that made Ron even angrier and Harry had to endure everyone in the class talking loudly and happily about what they were going to do first once they got into Hogsmeade .Theres always the feast said Ron in an effort to cheer Harry up .You know the Halloween feast in the evening .Yeah said Harry gloomily great .The Halloween feast was always good but it would taste a lot better if he was coming to it after a day in Hogsmeade with everyone else .Nothing anyone said made him feel any better about being left behind .Dean Thomas who was good with a quill had offered to forge Uncle Vernons signature on the form but as Harry had already told Professor McGonagall he hadnt had it signed that was no good .Ron halfheartedly suggested the Invisibility Cloak but Hermione stamped on that one reminding Ron what Dumbledore had told them about the dementors being able to see through them .Percy had what were possibly the least helpful words of comfort .They make a fuss about Hogsmeade but I assure you Harry its not all its cracked up to be he said seriously .All right the sweetshops rather good and Zonkos Joke Shops frankly dangerous and yes the Shrieking Shacks always worth a visit but really Harry apart from that youre not missing anything .On Halloween morning Harry awoke with the rest and went down to breakfast feeling thoroughly depressed though doing his best to act normally .Well bring you lots of sweets back from Honeydukes said Hermione looking desperately sorry for him .Yeah loads said Ron .He and Hermione had finally forgotten their squabble about Crookshanks in the face of Harrys difficulties .Dont worry about me said Harry in what he hoped was an offhand voice Ill see you at the feast .Have a good time .He accompanied them to the entrance hall where Filch the caretaker was standing inside the front doors checking off names against a long list peering suspiciously into every face and making sure that no one was sneaking out who shouldnt be going .Staying here Potter ?shouted Malfoy who was standing in line with Crabbe and Goyle .Scared of passing the dementors ?Harry ignored him and made his solitary way up the marble staircase through the deserted corridors and back to Gryffindor Tower .Password ?said the Fat Lady jerking out of a doze .Fortuna Major said Harry listlessly .The portrait swung open and he climbed through the hole into the common room .It was full of chattering first and second years and a few older students who had obviously visited Hogsmeade so often the novelty had worn off .Harry !Harry !Hi Harry !It was Colin Creevey a second year who was deeply in awe of Harry and never missed an opportunity to speak to him .Arent you going to Hogsmeade Harry ?Why not ?Hey Colin looked eagerly around at his friends you can come and sit with us if you like Harry !Er no thanks Colin said Harry who wasnt in the mood to have a lot of people staring avidly at the scar on his forehead .I Ive got to go to the library got to get some work done .After that he had no choice but to turn right around and head back out of the portrait hole again .What was the point waking me up ?the Fat Lady called grumpily after him as he walked away .Harry wandered dispiritedly toward the library but halfway there he changed his mind he didnt feel like working .He turned around and came facetoface with Filch who had obviously just seen off the last of the Hogsmeade visitors .What are you doing ?Filch snarled suspiciously .Nothing said Harry truthfully .Nothing !spat Filch his jowls quivering unpleasantly .A likely story !Sneaking around on your own why arent you in Hogsmeade buying Stink Pellets and Belch Powder and Whizzing Worms like the rest of your nasty little friends ?Harry shrugged .Well get back to your common room where you belong !snapped Filch and he stood glaring until Harry had passed out of sight .But Harry didnt go back to the common room he climbed a staircase thinking vaguely of visiting the Owlery to see Hedwig and was walking along another corridor when a voice from inside one of the rooms said Harry ?Harry doubled back to see who had spoken and met Professor Lupin looking around his office door .What are you doing ?said Lupin though in a very different voice from Filch .Where are Ron and Hermione ?Hogsmeade said Harry in a wouldbe casual voice .Ah said Lupin .He considered Harry for a moment .Why dont you come in ?Ive just taken delivery of a grindylow for our next lesson .A what ?said Harry .He followed Lupin into his office .In the corner stood a very large tank of water .A sickly green creature with sharp little horns had its face pressed against the glass pulling faces and flexing its long spindly fingers .Water demon said Lupin surveying the grindylow thoughtfully .We shouldnt have much difficulty with him not after the kappas .The trick is to break his grip .You notice the abnormally long fingers ?Strong but very brittle .The grindylow bared its green teeth and then buried itself in a tangle of weeds in a corner .Cup of tea ?Lupin said looking around for his kettle .I was just thinking of making one .All right said Harry awkwardly .Lupin tapped the kettle with his wand and a blast of steam issued suddenly from the spout .Sit down said Lupin taking the lid off a dusty tin .Ive only got teabags Im afraid but I daresay youve had enough of tea leaves ?Harry looked at him .Lupins eyes were twinkling .How did you know about that ?Harry asked .Professor McGonagall told me said Lupin passing Harry a chipped mug of tea .Youre not worried are you ?No said Harry .He thought for a moment of telling Lupin about the dog hed seen in Magnolia Crescent but decided not to .He didnt want Lupin to think he was a coward especially since Lupin already seemed to think he couldnt cope with a boggart .Something of Harrys thoughts seemed to have shown on his face because Lupin said Anything worrying you Harry ?No Harry lied .He drank a bit of tea and watched the grindylow brandishing a fist at him .Yes he said suddenly putting his tea down on Lupins desk .You know that day we fought the boggart ?Yes said Lupin slowly .Why didnt you let me fight it ?said Harry abruptly .Lupin raised his eyebrows .I would have thought that was obvious Harry he said sounding surprised .Harry who had expected Lupin to deny that hed done any such thing was taken aback .Why ?he said again .Well said Lupin frowning slightly I assumed that if the boggart faced you it would assume the shape of Lord Voldemort .Harry stared .Not only was this the last answer hed expected but Lupin had said Voldemort s name .The only person Harry had ever heard say the name aloud apart from himself was Professor Dumbledore .Clearly I was wrong said Lupin still frowning at Harry .But I didnt think it a good idea for Lord Voldemort to materialize in the staffroom .I imagined that people would panic .I didnt think of Voldemort said Harry honestly .I I remembered those dementors .I see said Lupin thoughtfully .Well well .Im impressed .He smiled slightly at the look of surprise on Harrys face .That suggests that what you fear most of all is fear .Very wise Harry .Harry didnt know what to say to that so he drank some more tea .So youve been thinking that I didnt believe you capable of fighting the boggart ?said Lupin shrewdly .Well .yeah said Harry .He was suddenly feeling a lot happier .Professor Lupin you know the dementors He was interrupted by a knock on the door .Come in called Lupin .The door opened and in came Snape .He was carrying a goblet which was smoking faintly and stopped at the sight of Harry his black eyes narrowing .Ah Severus said Lupin smiling .Thanks very much .Could you leave it here on the desk for me ?Snape set down the smoking goblet his eyes wandering between Harry and Lupin .I was just showing Harry my grindylow said Lupin pleasantly pointing at the tank .Fascinating said Snape without looking at it .You should drink that directly Lupin .Yes yes I will said Lupin .I made an entire cauldronful Snape continued .If you need more .I should probably take some again tomorrow .Thanks very much Severus .Not at all said Snape but there was a look in his eye Harry didnt like .He backed out of the room unsmiling and watchful .Harry looked curiously at the goblet .Lupin smiled .Professor Snape has very kindly concocted a potion for me he said .I have never been much of a potion brewer and this one is particularly complex .He picked up the goblet and sniffed it .Pity sugar makes it useless he added taking a sip and shuddering .Why ?Harry began .Lupin looked at him and answered the unfinished question .Ive been feeling a bit offcolor he said .This potion is the only thing that helps .I am very lucky to be working alongside Professor Snape there arent many wizards who are up to making it .Professor Lupin took another sip and Harry had a crazy urge to knock the goblet out of his hands .Professor Snapes very interested in the Dark Arts he blurted out .Really ?said Lupin looking only mildly interested as he took another gulp of potion .Some people reckon Harry hesitated then plunged recklessly on some people reckon hed do anything to get the Defense Against the Dark Arts job .Lupin drained the goblet and pulled a face .Disgusting he said .Well Harry Id better get back to work .Ill see you at the feast later .Right said Harry putting down his empty teacup .The empty goblet was still smoking .There you go said Ron .We got as much as we could carry .A shower of brilliantly colored sweets fell into Harrys lap .It was dusk and Ron and Hermione had just turned up in the common room pinkfaced from the cold wind and looking as though theyd had the time of their lives .Thanks said Harry picking up a packet of tiny black Pepper Imps .Whats Hogsmeade like ?Where did you go ?By the sound of it everywhere .Dervish and Banges the wizarding equipment shop Zonkos Joke Shop into the Three Broomsticks for foaming mugs of hot butterbeer and many places besides .The post office Harry !About two hundred owls all sitting on shelves all colorcoded depending on how fast you want your letter to get there !Honeydukes has got a new kind of fudge they were giving out free samples theres a bit look We think we saw an ogre honestly they get all sorts at the Three Broomsticks Wish we could have brought you some butterbeer really warms you up What did you do ?said Hermione looking anxious .Did you get any work done ?No said Harry .Lupin made me a cup of tea in his office .And then Snape came in .He told them all about the goblet .Rons mouth fell open .Lupin drank it ?he gasped .Is he mad ?Hermione checked her watch .Wed better go down you know the feastll be starting in five minutes .They hurried through the portrait hole and into the crowd still discussing Snape .But if he you know Hermione dropped her voice glancing nervously around if he was trying to to poison Lupin he wouldnt have done it in front of Harry .Yeah maybe said Harry as they reached the entrance hall and crossed into the Great Hall .It had been decorated with hundreds and hundreds of candlefilled pumpkins a cloud of fluttering live bats and many flaming orange streamers which were swimming lazily across the stormy ceiling like brilliant watersnakes .The food was delicious even Hermione and Ron who were full to bursting with Honeydukes sweets managed second helpings of everything .Harry kept glancing at the staff table .Professor Lupin looked cheerful and as well as he ever did he was talking animatedly to tiny little Professor Flitwick the Charms teacher .Harry moved his eyes along the table to the place where Snape sat .Was he imagining it or were Snape s eyes flickering toward Lupin more often than was natural ?The feast finished with an entertainment provided by the Hogwarts ghosts .They popped out of the walls and tables to do a bit of formation gliding Nearly Headless Nick the Gryffindor ghost had a great success with a reenactment of his own botched beheading .It had been such a pleasant evening that Harrys good mood couldnt even be spoiled by Malfoy who shouted through the crowd as they all left the hall The dementors send their love Potter !Harry Ron and Hermione followed the rest of the Gryffindors along the usual path to Gryffindor Tower but when they reached the corridor that ended with the portrait of the Fat Lady they found it jammed with students .Why isnt anyone going in ?said Ron curiously .Harry peered over the heads in front of him .The portrait seemed to be closed .Let me through please came Percys voice and he came bustling importantly through the crowd .Whats the holdup here ?You cant all have forgotten the password excuse me Im Head Boy And then a silence fell over the crowd from the front first so that a chill seemed to spread down the corridor .They heard Percy say in a suddenly sharp voice Somebody get Professor Dumbledore .Quick .Peoples heads turned those at the back were standing on tiptoe .Whats going on ?said Ginny who had just arrived .A moment later Professor Dumbledore was there sweeping toward the portrait the Gryffindors squeezed together to let him through and Harry Ron and Hermione moved closer to see what the trouble was .Oh my Hermione grabbed Harrys arm .The Fat Lady had vanished from her portrait which had been slashed so viciously that strips of canvas littered the floor great chunks of it had been torn away completely .Dumbledore took one quick look at the ruined painting and turned his eyes somber to see Professors McGonagall Lupin and Snape hurrying toward him .We need to find her said Dumbledore .Professor McGonagall please go to Mr Filch at once and tell him to search every painting in the castle for the Fat Lady .Youll be lucky !said a cackling voice .It was Peeves the Poltergeist bobbing over the crowd and looking delighted as he always did at the sight of wreckage or worry .What do you mean Peeves ?said Dumbledore calmly and Peevess grin faded a little .He didnt dare taunt Dumbledore .Instead he adopted an oily voice that was no better than his cackle .Ashamed Your Headship sir .Doesnt want to be seen .Shes a horrible mess .Saw her running through the landscape up on the fourth floor sir dodging between the trees .Crying something dreadful he said happily .Poor thing he added unconvincingly .Did she say who did it ?said Dumbledore quietly .Oh yes Professorhead said Peeves with the air of one cradling a large bombshell in his arms .He got very angry when she wouldnt let him in you see .Peeves flipped over and grinned at Dumbledore from between his own legs .Nasty temper hes got that Sirius Black .9 GRIM DEFEAT Professor Dumbledore sent all the Gryffindors back to the Great Hall where they were joined ten minutes later by the students from Hufflepuff Ravenclaw and Slytherin who all looked extremely confused .The teachers and I need to conduct a thorough search of the castle Professor Dumbledore told them as Professors McGonagall and Flitwick closed all doors into the hall .Im afraid that for your own safety you will have to spend the night here .I want the prefects to stand guard over the entrances to the hall and I am leaving the Head Boy and Girl in charge .Any disturbance should be reported to me immediately he added to Percy who was looking immensely proud and important .Send word with one of the ghosts .Professor Dumbledore paused about to leave the hall and said Oh yes youll be needing .One casual wave of his wand and the long tables flew to the edges of the hall and stood themselves against the walls another wave and the floor was covered with hundreds of squashy purple sleeping bags .Sleep well said Professor Dumbledore closing the door behind him .The hall immediately began to buzz excitedly the Gryffindors were telling the rest of the school what had just happened .Everyone into their sleeping bags !shouted Percy .Come on now no more talking !Lights out in ten minutes !Cmon Ron said to Harry and Hermione they seized three sleeping bags and dragged them into a corner .Do you think Blacks still in the castle ?Hermione whispered anxiously .Dumbledore obviously thinks he might be said Ron .Its very lucky he picked tonight you know said Hermione as they climbed fully dressed into their sleeping bags and propped themselves on their elbows to talk .The one night we werent in the tower .I reckon hes lost track of time being on the run said Ron .Didnt realize it was Halloween .Otherwise hed have come bursting in here .Hermione shuddered .All around them people were asking one another the same question How did he get in ?Maybe he knows how to Apparate said a Ravenclaw a few feet away .Just appear out of thin air you know .Disguised himself probably said a Hufflepuff fifth year .He couldve flown in suggested Dean Thomas .Honestly am I the only person whos ever bothered to read Hogwarts A History ?said Hermione crossly to Harry and Ron .Probably said Ron .Why ?Because the castles protected by more than walls you know said Hermione .There are all sorts of enchantments on it to stop people entering by stealth .You cant just Apparate in here .And Id like to see the disguise that could fool those dementors .Theyre guarding every single entrance to the grounds .Theyd have seen him fly in too .And Filch knows all the secret passages theyll have them covered .The lights are going out now !Percy shouted .I want everyone in their sleeping bags and no more talking !The candles all went out at once .The only light now came from the silvery ghosts who were drifting about talking seriously to the prefects and the enchanted ceiling which like the sky outside was scattered with stars .What with that and the whispering that still filled the hall Harry felt as though he were sleeping outdoors in a light wind .Once every hour a teacher would reappear in the hall to check that everything was quiet .Around three in the morning when many students had finally fallen asleep Professor Dumbledore came in .Harry watched him looking around for Percy who had been pbetween the sleeping bags telling people off for talking .Percy was only a short way away from Harry Ron and Hermione who quickly pretended to be asleep as Dumbledores footsteps drew nearer .Any sign of him Professor ?asked Percy in a whisper .No .All well here ?Everything under control sir .Good .Theres no point moving them all now .Ive found a temporary guardian for the Gryffindor portrait hole .Youll be able to move them back in tomorrow .And the Fat Lady sir ?Hiding in a map of Argyllshire on the second floor .Apparently she refused to let Black in without the password so he attacked .Shes still very distressed but once shes calmed down Ill have Mr Filch restore her .Harry heard the door of the hall creak open again and more footsteps .Headmaster ?It was Snape .Harry kept quite still listening hard .The whole of the third floor has been searched .Hes not there .And Filch has done the dungeons nothing there either .What about the Astronomy tower ?Professor Trelawneys room ?The Owlery ?All searched .Very well Severus .I didnt really expect Black to linger .Have you any theory as to how he got in Professor ?asked Snape .Harry raised his head very slightly off his arms to free his other ear .Many Severus each of them as unlikely as the next .Harry opened his eyes a fraction and squinted up to where they stood Dumbledore s back was to him but he could see Percys face rapt with attention and Snape s profile which looked angry .You remember the conversation we had Headmaster just before ah the start of term ?said Snape who was barely opening his lips as though trying to block Percy out of the conversation .I do Severus said Dumbledore and there was something like warning in his voice .It seems almost impossible that Black could have entered the school without inside help .I did express my concerns when you appointed I do not believe a single person inside this castle would have helped Black enter it said Dumbledore and his tone made it so clear that the subject was closed that Snape didnt reply .I must go down to the dementors said Dumbledore .I said I would inform them when our search was complete .Didnt they want to help sir ?said Percy .Oh yes said Dumbledore coldly .But Im afraid no dementor will cross the threshold of this castle while I am headmaster .Percy looked slightly abashed .Dumbledore left the hall walking quickly and quietly .Snape stood for a moment watching the headmaster with an expression of deep resentment on his face then he too left .Harry glanced sideways at Ron and Hermione .Both of them had their eyes open too reflecting the starry ceiling .What was all that about ?Ron mouthed .The school talked of nothing but Sirius Black for the next few days .The theories about how he had entered the castle became wilder and wilder Hannah Abbott from Hufflepuff spent much of their next Herbology class telling anyone whod listen that Black could turn into a flowering shrub .The Fat Ladys ripped canvas had been taken off the wall and replaced with the portrait of Sir Cadogan and his fat gray pony .Nobody was very happy about this .Sir Cadogan spent half his time challenging people to duels and the rest thinking up ridiculously complicated passwords which he changed at least twice a day .Hes a complete lunatic said Seamus Finnigan angrily to Percy .Cant we get anyone else ?None of the other pictures wanted the job said Percy .Frightened of what happened to the Fat Lady .Sir Cadogan was the only one brave enough to volunteer .Sir Cadogan however was the least of Harrys worries .He was now being closely watched .Teachers found excuses to walk along corridors with him and Percy Weasley acting Harry suspected on his mothers orders was tailing him everywhere like an extremely pompous guard dog .To cap it all Professor McGonagall summoned Harry into her office with such a somber expression on her face Harry thought someone must have died .Theres no point hiding it from you any longer Potter she said in a very serious voice .I know this will come as a shock to you but Sirius Black I know hes after me said Harry wearily .I heard Rons dad telling his mum .Mr Weasley works for the Ministry of Magic .Professor McGonagall seemed very taken aback .She stared at Harry for a moment or two then said I see !Well in that case Potter youll understand why I dont think its a good idea for you to be practicing Quidditch in the evenings .Out on the field with only your team members its very exposed Potter Weve got our first match on Saturday !said Harry outraged .Ive got to train Professor !Professor McGonagall considered him intently .Harry knew she was deeply interested in the Gryffindor teams prospects it had been she after all whod suggested him as Seeker in the first place .He waited holding his breath .Hmm .Professor McGonagall stood up and stared out of the window at the Quidditch field just visible through the rain .Well .goodness knows Id like to see us win the Cup at last .but all the same Potter .Id be happier if a teacher were present .Ill ask Madam Hooch to oversee your training sessions .The weather worsened steadily as the first Quidditch match drew nearer .Undaunted the Gryffindor team was training harder than ever under the eye of Madam Hooch .Then at their final training session before Saturdays match Oliver Wood gave his team some unwelcome news .Were not playing Slytherin !he told them looking very angry .Flints just been to see me .Were playing Hufflepuff instead .Why ?chorused the rest of the team .Flints excuse is that their Seekers arms still injured said Wood grinding his teeth furiously .But its obvious why theyre doing it .Dont want to play in this weather .Think itll damage their chances .There had been strong winds and heavy rain all day and as Wood spoke they heard a distant rumble of thunder .Theres nothing wrong with Malfoys arm !said Harry furiously .Hes faking it !I know that but we cant prove it said Wood bitterly .And weve been practicing all those moves assuming were playing Slytherin and instead its Hufflepuff and their styles quite different .Theyve got a new Captain and Seeker Cedric Diggory Angelina Alicia and Katie suddenly giggled .What ?said Wood frowning at this lighthearted behavior .Hes that tall goodlooking one isnt he ?said Angelina .Strong and silent said Katie and they started to giggle again .Hes only silent because hes too thick to string two words together said Fred impatiently .I dont know why youre worried Oliver Hufflepuff is a pushover .Last time we played them Harry caught the Snitch in about five minutes remember ?We were playing in completely different conditions !Wood shouted his eyes bulging slightly .Diggorys put a very strong side together !Hes an excellent Seeker !I was afraid youd take it like this !We mustnt relax !We must keep our focus !Slytherin is trying to wrongfoot us !We must win !Oliver calm down !said Fred looking slightly alarmed .Were taking Hufflepuff very seriously .Seriously .The day before the match the winds reached howling point and the rain fell harder than ever .It was so dark inside the corridors and classrooms that extra torches and lanterns were lit .The Slytherin team was looking very smug indeed and none more so than Malfoy .Ah if only my arm was feeling a bit better !he sighed as the gale outside pounded the windows .Harry had no room in his head to worry about anything except the match tomorrow .Oliver Wood kept hurrying up to him between classes and giving him tips .The third time this happened Wood talked for so long that Harry suddenly realized he was ten minutes late for Defense Against the Dark Arts and set off at a run with Wood shouting after him Diggorys got a very fast swerve Harry so you might want to try looping him Harry skidded to a halt outside the Defense Against the Dark Arts classroom pulled the door open and dashed inside .Sorry Im late Professor Lupin I But it wasnt Professor Lupin who looked up at him from the teachers desk it was Snape .This lesson began ten minutes ago Potter so I think well make it ten points from Gryffindor .Sit down .But Harry didnt move .Wheres Professor Lupin ?he said .He says he is feeling too ill to teach today said Snape with a twisted smile .I believe I told you to sit down ?But Harry stayed where he was .Whats wrong with him ?Snape s black eyes glittered .Nothing lifethreatening he said looking as though he wished it were .Five more points from Gryffindor and if I have to ask you to sit down again it will be fifty .Harry walked slowly to his seat and sat down .Snape looked around at the class .As I was saying before Potter interrupted Professor Lupin has not left any record of the topics you have covered so far Please sir weve done boggarts Red Caps kappas and grindylows said Hermione quickly and were just about to start Be quiet said Snape coldly .I did not ask for information .I was merely commenting on Professor Lupins lack of organization .Hes the best Defense Against the Dark Arts teacher weve ever had said Dean Thomas boldly and there was a murmur of agreement from the rest of the class .Snape looked more menacing than ever .You are easily satisfied .Lupin is hardly overtaxing you I would expect first years to be able to deal with Red Caps and grindylows .Today we shall discuss Harry watched him flick through the textbook to the very back chapter which he must know they hadnt covered .werewolves said Snape .But sir said Hermione seemingly unable to restrain herself were not supposed to do werewolves yet were due to start hinkypunks Miss Granger said Snape in a voice of deadly calm I was under the impression that I am teaching this lesson not you .And I am telling you all to turn to All of you !Now With many bitter sidelong looks and some sullen muttering the class opened their books .Which of you can tell me how we distinguish between the werewolf and the true wolf ?said Snape .Everyone sat in motionless silence everyone except Hermione whose hand as it so often did had shot straight into the air .Anyone ?Snape said ignoring Hermione .His twisted smile was back .Are you telling me that Professor Lupin hasnt even taught you the basic distinction between We told you said Parvati suddenly we havent got as far as werewolves yet were still on Silencel snarled Snape .Well well well I never thought Id meet a third year class who wouldnt even recognize a werewolf when they saw one .I shall make a point of informing Professor Dumbledore how very behind you all are .Please sir said Hermione whose hand was still in the air the werewolf differs from the true wolf in several small ways .The snout of the werewolf That is the second time you have spoken out of turn Miss Granger said Snape coolly .Five more points from Gryffindor for being an insufferable knowitall .Hermione went very red put down her hand and stared at the floor with her eyes full of tears .It was a mark of how much the class loathed Snape that they were all glaring at him because every one of them had called Hermione a knowitall at least once and Ron who told Hermione she was a knowitall at least twice a week said loudly You asked us a question and she knows the answer !Why ask if you dont want to be told ?The class knew instantly hed gone too far .Snape advanced on Ron slowly and the room held its breath .Detention Weasley Snape said silkily his face very close to Rons .And if I ever hear you criticize the way I teach a class again you will be very sorry indeed .No one made a sound throughout the rest of the lesson .They sat and made notes on werewolves from the textbook while Snape prowled up and down the rows of desks examining the work they had been doing with Professor Lupin .Very poorly explained .That is incorrect the kappa is more commonly found in Mongolia .Professor Lupin gave this eight out of ten ?I wouldnt have given it three .When the bell rang at last Snape held them back .You will each write an essay to be handed in to me on the ways you recognize and kill werewolves .I want two rolls of parchment on the subject and I want them by Monday morning .It is time somebody took this class in hand .Weasley stay behind we need to arrange your detention .Harry and Hermione left the room with the rest of the class who waited until they were well out of earshot then burst into a furious tirade about Snape .Snape s never been like this with any of our other Defense Against the Dark Arts teachers even if he did want the job Harry said to Hermione .Whys he got it in for Lupin ?Dyou think this is all because of the boggart ?I dont know said Hermione pensively .But I really hope Professor Lupin gets better soon .Ron caught up with them five minutes later in a towering rage .Dyou know what that he called Snape something that made Hermione say Ron is making me do ?Ive got to scrub out the bedpans in the hospital wing .Without magid He was breathing deeply his fists clenched .Why couldnt Black have hidden in Snapes office eh ?He could have finished him off for us !Harry woke extremely early the next morning so early that it was still dark .For a moment he thought the roaring of the wind had woken him .Then he felt a cold breeze on the back of his neck and sat bolt upright Peeves the Poltergeist had been floating next to him blowing hard in his ear .What did you do that for ?said Harry furiously .Peeves puffed out his cheeks blew hard and zoomed backward out of the room cackling .Harry fumbled for his alarm clock and looked at it .It was half past four .Cursing Peeves he rolled over and tried to get back to sleep but it was very difficult now that he was awake to ignore the sounds of the thunder rumbling overhead the pounding of the wind against the castle walls and the distant creaking of the trees in the Forbidden Forest .In a few hours he would be out on the Quidditch field battling through that gale .Finally he gave up any thought of more sleep got up dressed picked up his Nimbus Two Thousand and walked quietly out of the dormitory .As Harry opened the door something brushed against his leg .He bent down just in time to grab Crookshanks by the end of his bushy tail and drag him outside .You know I reckon Ron was right about you Harry told Crookshanks suspiciously .There are plenty of mice around this place go and chase them .Go on he added nudging Crookshanks down the spiral staircase with his foot .Leave Scabbers alone .The noise of the storm was even louder in the common room .Harry knew better than to think the match would be canceled Quidditch matches werent called off for trifles like thunderstorms .Nevertheless he was starting to feel very apprehensive .Wood had pointed out Cedric Diggory to him in the corridor Diggory was a fifth year and a lot bigger than Harry .Seekers were usually light and speedy but Diggorys weight would be an advantage in this weather because he was less likely to be blown off course .Harry whiled away the hours until dawn in front of the fire getting up every now and then to stop Crookshanks from sneaking up the boys staircase again .At long last Harry thought it must be time for breakfast so he headed through the portrait hole alone .Stand and fight you mangy cur !yelled Sir Cadogan .Oh shut up Harry yawned .He revived a bit over a large bowl of porridge and by the time hed started on toast the rest of the team had turned up .Its going to be a tough one said Wood who wasnt eating anything .Stop worrying Oliver said Alicia soothingly we dont mind a bit of rain .But it was considerably more than a bit of rain .Such was the popularity of Quidditch that the whole school turned out to watch the match as usual but they ran down the lawns toward the Quidditch field heads bowed against the ferocious wind umbrellas being whipped out of their hands as they went .Just before he entered the locker room Harry saw Malfoy Crabbe and Goyle laughing and pointing at him from under an enormous umbrella on their way to the stadium .The team changed into their scarlet robes and waited for Woods usual prematch pep talk but it didnt come .He tried to speak several times made an odd gulping noise then shook his head hopelessly and beckoned them to follow him .The wind was so strong that they staggered sideways as they walked out onto the field .If the crowd was cheering they couldnt hear it over the fresh rolls of thunder .Rain was splattering over Harrys glasses .How on earth was he going to see the Snitch in this ?The Hufflepuffs were approaching from the opposite side of the field wearing canary yellow robes .The Captains walked up to each other and shook hands Diggory smiled at Wood but Wood now looked as though he had lockjaw and merely nodded .Harry saw Madam Hoochs mouth form the words Mount your brooms .He pulled his right foot out of the mud with a squelch and swung it over his Nimbus Two Thousand .Madam Hooch put her whistle to her lips and gave it a blast that sounded shrill and distant they were off .Harry rose fast but his Nimbus was swerving slightly with the wind .He held it as steady as he could and turned squinting into the rain .Within five minutes Harry was soaked to his skin and frozen hardly able to see his teammates let alone the tiny Snitch .He flew backward and forward across the field past blurred red and yellow shapes with no idea of what was happening in the rest of the game .He couldnt hear the commentary over the wind .The crowd was hidden beneath a sea of cloaks and battered umbrellas .Twice Harry came very close to being unseated by a Bludger his vision was so clouded by the rain on his glasses he hadnt seen them coming .He lost track of time .It was getting harder and harder to hold his broom straight .The sky was getting darker as though night had decided to come early .Twice Harry nearly hit another player without knowing whether it was a teammate or opponent everyone was now so wet and the rain so thick he could hardly tell them apart .With the first flash of lightning came the sound of Madam Hoochs whistle Harry could just see the outline of Wood through the thick rain gesturing him to the ground .The whole team splashed down into the mud .I called for timeout !Wood roared at his team .Come on under here They huddled at the edge of the field under a large umbrella Harry took off his glasses and wiped them hurriedly on his robes .Whats the score ?Were fifty points up said Wood but unless we get the Snitch soon well be playing into the night .Ive got no chance with these on Harry said exasperatedly waving his glasses .At that very moment Hermione appeared at his shoulder she was holding her cloak over her head and was inexplicably beaming .Ive had an idea Harry !Give me your glasses quick !He handed them to her and as the team watched in amazement Hermione tapped them with her wand and said Imperviusl There !she said handing them back to Harry .Theyll repel water !Wood looked as though he could have kissed her .Brilliant !he called hoarsely after her as she disappeared into the crowd .Okay team lets go for it !Hermione s spell had done the trick .Harry was still numb with cold still wetter than hed ever been in his life but he could see .Full of fresh determination he urged his broom through the turbulent air staring in every direction for the Snitch avoiding a Bludger ducking beneath Diggory who was streaking in the opposite direction .There was another clap of thunder followed immediately by forked lightning .This was getting more and more dangerous .Harry needed to get the Snitch quickly He turned intending to head back toward the middle of the field but at that moment another flash of lightning illuminated the stands and Harry saw something that distracted him completely the silhouette of an enormous shaggy black dog clearly imprinted against the sky motionless in the topmost empty row of seats .Harrys numb hands slipped on the broom handle and his Nimbus dropped a few feet .Shaking his sodden bangs out of his eyes he squinted back into the stands .The dog had vanished .Harry !came Woods anguished yell from the Gryffindor goal posts .Harry behind you !Harry looked wildly around .Cedric Diggory was pelting up the field and a tiny speck of gold was shimmering in the rainfilled air between them With a jolt of panic Harry threw himself flat to the broomhandle and zoomed toward the Snitch .Come on !he growled at his Nimbus as the rain whipped his face .Fasteri But something odd was happening .An eerie silence was falling across the stadium .The wind though as strong as ever was forgetting to roar .It was as though someone had turned off the sound as though Harry had gone suddenly deaf what was going on ?And then a horribly familiar wave of cold swept over him inside him just as he became aware of something moving on the field below .Before hed had time to think Harry had taken his eyes off the Snitch and looked down .At least a hundred dementors their hidden faces pointing up at him were standing beneath him .It was as though freezing water were rising in his chest cutting at his insides .And then he heard it again .Someone was screaming screaming inside his head .a woman .Not Harry not Harry please not Harry Stand aside you silly girl .stand aside now .Not Harry please no take me kill me instead Numbing swirling white mist was filling Harrys brain .What was he doing ?Why was he flying ?He needed to help her .She was going to die .She was going to be murdered .He was falling falling through the icy mist .Not Harry Please .have mercy .have mercy .A shrill voice was laughing the woman was screaming and Harry knew no more .Lucky the ground was so soft .I thought he was dead for sure .But he didnt even break his glasses .Harry could hear the voices whispering but they made no sense whatsoever .He didnt have a clue where he was or how hed got there or what hed been doing before he got there .All he knew was that every inch of him was aching as though it had been beaten .That was the scariest thing Ive ever seen in my life .Scariest .the scariest thing .hooded black figures .cold .screaming .Harrys eyes snapped open .He was lying in the hospital wing .The Gryffindor Quidditch team spattered with mud from head to foot was gathered around his bed .Ron and Hermione were also there looking as though theyd just climbed out of a swimming pool .Harry !said Fred who looked extremely white underneath the mud .Howre you feeling ?It was as though Harrys memory was on fast forward .The lightning the Grim the Snitch and the dementors .What happened ?he said sitting up so suddenly they all gasped .You fell off said Fred .Mustve been what fifty feet ?We thought youd died said Alicia who was shaking .Hermione made a small squeaky noise .Her eyes were extremely bloodshot .But the match said Harry .What happened ?Are we doing a replay ?No one said anything .The horrible truth sank into Harry like a stone .We didnt lose ?Diggory got the Snitch said George .Just after you fell .He didnt realize what had happened .When he looked back and saw you on the ground he tried to call it off .Wanted a rematch .But they won fair and square .even Wood admits it .Where is Wood ?said Harry suddenly realizing he wasnt there .Still in the showers said Fred .We think hes trying to drown himself .Harry put his face to his knees his hands gripping his hair .Fred grabbed his shoulder and shook it roughly .Cmon Harry youve never missed the Snitch before .There had to be one time you didnt get it said George .Its not over yet said Fred .We lost by a hundred points right ?So if Hufflepuff loses to Ravenclaw and we beat Ravenclaw and Slytherin .Hufflepuffll have to lose by at least two hundred points said George .But if they beat Ravenclaw .No way Ravenclaw is too good .But if Slytherin loses against Hufflepuff .It all depends on the points a margin of a hundred either way Harry lay there not saying a word .They had lost .for the first time ever he had lost a Quidditch match .After ten minutes or so Madam Pomfrey came over to tell the team to leave him in peace .Well come and see you later Fred told him .Dont beat yourself up Harry youre still the best Seeker weve ever had .The team trooped out trailing mud behind them .Madam Pomfrey shut the door behind them looking disapproving .Ron and Hermione moved nearer to Harrys bed .Dumbledore was really angry Hermione said in a quaking voice .Ive never seen him like that before .He ran onto the field as you fell waved his wand and you sort of slowed down before you hit the ground .Then he whirled his wand at the dementors .Shot silver stuff at them .They left the stadium right away . .He was furious theyd come onto the grounds .We heard him Then he magicked you onto a stretcher said Ron .And walked up to school with you floating on it .Everyone thought you were .His voice faded but Harry hardly noticed .He was thinking about what the dementors had done to him .about the screaming voice .He looked up and saw Ron and Hermione looking at him so anxiously that he quickly cast around for something matteroffact to say .Did someone get my Nimbus ?Ron and Hermione looked quickly at each other .Er What ?said Harry looking from one to the other .Well .when you fell off it got blown away said Hermione hesitantly .And ?And it hit it hit oh Harry it hit the Whomping Willow .Harrys insides lurched .The Whomping Willow was a very violent tree that stood alone in the middle of the grounds .And ?he said dreading the answer .Well you know the Whomping Willow said Ron .It it doesnt like being hit .Professor Flitwick brought it back just before you came around said Hermione in a very small voice .Slowly she reached down for a bag at her feet turned it upside down and tipped a dozen bits of splintered wood and twig onto the bed the only remains of Harrys faithful finally beaten broomstick .10 THE MARAUDERS MAP Madam Pomfrey insisted on keeping Harry in the hospital wing for the rest of the weekend .He didnt argue or complain but he wouldnt let her throw away the shattered remnants of his Nimbus Two Thousand .He knew he was being stupid knew that the Nimbus was beyond repair but Harry couldnt help it he felt as though hed lost one of his best friends .He had a stream of visitors all intent on cheering him up .Hagrid sent him a bunch of earwiggy flowers that looked like yellow cabbages and Ginny Weasley blushing furiously turned up with a getwell card she had made herself which sang shrilly unless Harry kept it shut under his bowl of fruit .The Gryffindor team visited again on Sunday morning this time accompanied by Wood who told Harry in a hollow dead sort of voice that he didnt blame him in the slightest .Ron and Hermione left Harrys bedside only at night .But nothing anyone said or did could make Harry feel any better because they knew only half of what was troubling him .He hadnt told anyone about the Grim not even Ron and Hermione because he knew Ron would panic and Hermione would scoff .The fact remained however that it had now appeared twice and both appearances had been followed by nearfatal accidents the first time he had nearly been run over by the Knight Bus the second fallen fifty feet from his broomstick .Was the Grim going to haunt him until he actually died ?Was he going to spend the rest of his life looking over his shoulder for the beast ?And then there were the dementors .Harry felt sick and humiliated every time he thought of them .Everyone said the dementors were horrible but no one else collapsed every time they went near one .No one else heard echoes in their head of their dying parents .Because Harry knew who that screaming voice belonged to now .He had heard her words heard them over and over again during the night hours in the hospital wing while he lay awake staring at the strips of moonlight on the ceiling .When the dementors approached him he heard the last moments of his mothers life her attempts to protect him Harry from Lord Voldemort and Voldemorts laughter before he murdered her .Harry dozed fitfully sinking into dreams full of clammy rotted hands and petrified pleading jerking awake to dwell again on his mothers voice .It was a relief to return to the noise and bustle of the main school on Monday where he was forced to think about other things even if he had to endure Draco Malfoys taunting .Malfoy was almost beside himself with glee at Gryffindors defeat .He had finally taken off his bandages and celebrated having the full use of both arms again by doing spirited imitations of Harry falling off his broom .Malfoy spent much of their next Potions class doing dementor imitations across the dungeon Ron finally cracked and flung a large slippery crocodile heart at Malfoy which hit him in the face and caused Snape to take fifty points from Gryffindor .If Snapes teaching Defense Against the Dark Arts again Im skiving off said Ron as they headed toward Lupins classroom after lunch .Check whos in there Hermione .Hermione peered around the classroom door .Its okay !Professor Lupin was back at work .It certainly looked as though he had been ill .His old robes were hanging more loosely on him and there were dark shadows beneath his eyes nevertheless he smiled at the class as they took their seats and they burst at once into an explosion of complaints about Snapes behavior while Lupin had been ill .Its not fair he was only filling in why should he give us homework ?We dont know anything about werewolves two rolls of parchment !Did you tell Professor Snape we havent covered them yet ?Lupin asked frowning slightly .The babble broke out again .Yes but he said we were really behind he wouldnt listen two rolls of parchmenti Professor Lupin smiled at the look of indignation on every face .Dont worry .Ill speak to Professor Snape .You dont have to do the essay .Oh no said Hermione looking very disappointed .Ive already finished it !They had a very enjoyable lesson .Professor Lupin had brought along a glass box containing a hinkypunk a little onelegged creature who looked as though he were made of wisps of smoke rather frail and harmlesslooking .Lures travelers into bogs said Professor Lupin as they took notes .You notice the lantern dangling from his hand ?Hops ahead people follow the light then The hinkypunk made a horrible squelching noise against the glass .When the bell rang everyone gathered up their things and headed for the door Harry among them but Wait a moment Harry Lupin called .Id like a word .Harry doubled back and watched Professor Lupin covering the hinkypunks box with a cloth .I heard about the match said Lupin turning back to his desk and starting to pile books into his briefcase and Im sorry about your broomstick .Is there any chance of fixing it ?No said Harry .The tree smashed it to bits .Lupin sighed .They planted the Whomping Willow the same year that I arrived at Hogwarts .People used to play a game trying to get near enough to touch the trunk .In the end a boy called Davey Gudgeon nearly lost an eye and we were forbidden to go near it .No broomstick would have a chance .Did you hear about the dementors too ?said Harry with difficulty .Lupin looked at him quickly .Yes I did .I dont think any of us have seen Professor Dumbledore that angry .They have been growing restless for some time .furious at his refusal to let them inside the grounds .I suppose they were the reason you fell ?Yes said Harry .He hesitated and then the question he had to ask burst from him before he could stop himself .Why ?Why do they affect me like that ?Am I just ?It has nothing to do with weakness said Professor Lupin sharply as though he had read Harrys mind .The dementors affect you worse than the others because there are horrors in your past that the others dont have .A ray of wintery sunlight fell across the classroom illuminating Lupins gray hairs and the lines on his young face .Dementors are among the foulest creatures that walk this earth .They infest the darkest filthiest places they glory in decay and despair they drain peace hope and happiness out of the air around them .Even Muggles feel their presence though they cant see them .Get too near a dementor and every good feeling every happy memory will be sucked out of you .If it can the dementor will feed on you long enough to reduce you to something like itself .soul less and evil .Youll be left with nothing but the worst experiences of your life .And the worst that happened to you Harry is enough to make anyone fall off their broom .You have nothing to feel ashamed of .When they get near me Harry stared at Lupins desk his throat tight .I can hear Voldemort murdering my mum .Lupin made a sudden motion with his arm as though to grip Harrys shoulder but thought better of it .There was a moments silence then Why did they have to come to the match ?said Harry bitterly .Theyre getting hungry said Lupin coolly shutting his briefcase with a snap .Dumbledore wont let them into the school so their supply of human prey has dried up .I dont think they could resist the large crowd around the Quidditch field .All that excitement .emotions running high .it was their idea of a feast .Azkaban must be terrible Harry muttered .Lupin nodded grimly .The fortress is set on a tiny island way out to sea but they dont need walls and water to keep the prisoners in not when theyre all trapped inside their own heads incapable of a single cheerful thought .Most of them go mad within weeks .But Sirius Black escaped from them Harry said slowly .He got away .Lupins briefcase slipped from the desk he had to stoop quickly to catch it .Yes he said straightening up Black must have found a way to fight them .I wouldnt have believed it possible .Dementors are supposed to drain a wizard of his powers if he is left with them too long .You made that dementor on the train back off said Harry suddenly .There are certain defenses one can use said Lupin .But there was only one dementor on the train .The more there are the more difficult it becomes to resist .What defenses ?said Harry at once .Can you teach me ?I dont pretend to be an expert at fighting dementors Harry .quite the contrary .But if the dementors come to another Quidditch match I need to be able to fight them Lupin looked into Harrys determined face hesitated then said Well .all right .Ill try and help .But itll have to wait until next term Im afraid .I have a lot to do before the holidays .I chose a very inconvenient time to fall ill .What with the promise of antidementor lessons from Lupin the thought that he might never have to hear his mothers death again and the fact that Ravenclaw flattened Hufflepuff in their Quidditch match at the end of November Harrys mood took a definite upturn .Gryffindor were not out of the running after all although they could not afford to lose another match .Wood became repossessed of his manic energy and worked his team as hard as ever in the chilly haze of rain that persisted into December .Harry saw no hint of a dementor within the grounds .Dumbledores anger seemed to be keeping them at their stations at the entrances .Two weeks before the end of the term the sky lightened suddenly to a dazzling opaline white and the muddy grounds were revealed one morning covered in glittering frost .Inside the castle there was a buzz of Christmas in the air .Professor Flitwick the Charms teacher had already decorated his classroom with shimmering lights that turned out to be real fluttering fairies .The students were all happily discussing their plans for the holidays .Both Ron and Hermione had decided to remain at Hogwarts and though Ron said it was because he couldnt stand two weeks with Percy and Hermione insisted she needed to use the library Harry wasnt fooled they were doing it to keep him company and he was very grateful .To everyones delight except Harrys there was to be another Hogsmeade trip on the very last weekend of the term .We can do all our Christmas shopping there !said Hermione .Mum and Dad would really love those Toothflossing Stringmints from Honeydukes !Resigned to the fact that he would be the only third year staying behind again Harry borrowed a copy of Which Broomstick from Wood and decided to spend the day reading up on the different makes .He had been riding one of the school brooms at team practice an ancient Shooting Star which was very slow and jerky he definitely needed a new broom of his own .On the Saturday morning of the Hogsmeade trip Harry bid goodbye to Ron and Hermione who were wrapped in cloaks and scarves then turned up the marble staircase alone and headed back toward Gryffindor Tower .Snow had started to fall outside the windows and the castle was very still and quiet .Psst Harry !He turned halfway along the thirdfloor corridor to see Fred and George peering out at him from behind a statue of a humpbacked oneeyed witch .What are you doing ?said Harry curiously .How come youre not going to Hogsmeade ?Weve come to give you a bit of festive cheer before we go said Fred with a mysterious wink .Come in here .He nodded toward an empty classroom to the left of the oneeyed statue .Harry followed Fred and George inside .George closed the door quietly and then turned beaming to look at Harry .Early Christmas present for you Harry he said .Fred pulled something from inside his cloak with a flourish and laid it on one of the desks .It was a large square very worn piece of parchment with nothing written on it .Harry suspecting one of Fred and Georges jokes stared at it .Whats that supposed to be ?This Harry is the secret of our success said George patting the parchment fondly .Its a wrench giving it to you said Fred but we decided last night your needs greater than ours .Anyway we know it by heart said George .We bequeath it to you .We dont really need it anymore .And what do I need with a bit of old parchment ?said Harry .A bit of old parchment !said Fred closing his eyes with a grimace as though Harry had mortally offended him .Explain George .Well .when we were in our first year Harry young carefree and innocent Harry snorted .He doubted whether Fred and George had ever been innocent .well more innocent than we are now we got into a spot of bother with Filch .We let off a Dungbomb in the corridor and it upset him for some reason So he hauled us off to his office and started threatening us with the usual detention disembowelment and we couldnt help noticing a drawer in one of his filing cabinets marked Confiscated and Highly Dangerous .Dont tell me said Harry starting to grin .Well what would youve done ?said Fred .George caused a diversion by dropping another Dungbomb I whipped the drawer open and grabbed this .Its not as bad as it sounds you know said George .We dont reckon Filch ever found out how to work it .He probably suspected what it was though or he wouldnt have confiscated it .And you know how to work it ?Oh yes said Fred smirking .This little beautys taught us more than all the teachers in this school .Youre winding me up said Harry looking at the ragged old bit of parchment .Oh are we ?said George .He took out his wand touched the parchment lightly and said I solemnly swear that I am up to no good .And at once thin ink lines began to spread like a spiders web from the point that Georges wand had touched .They joined each other they crisscrossed they fanned into every corner of the parchment then words began to blossom across the top great curly green words that proclaimed Messrs .Moony Wormtail Padfoot and Prongs Purveyors of Aids to Magical MischiefMakers are proud to present THE MARAUDERS MAP It was a map showing every detail of the Hogwarts castle and grounds .But the truly remarkable thing were the tiny ink dots moving around it each labeled with a name in minuscule writing .Astounded Harry bent over it .A labeled dot in the top left corner showed that Professor Dumbledore was pacing his study the caretakers cat Mrs Norris was pthe second floor and Peeves the Poltergeist was currently bouncing around the trophy room .And as Harrys eyes traveled up and down the familiar corridors he noticed something else .This map showed a set of passages he had never entered .And many of them seemed to lead Right into Hogsmeade said Fred tracing one of them with his finger .There are seven in all .Now Filch knows about these four he pointed them out but were sure were the only ones who know about these .Dont bother with the one behind the mirror on the fourth floor .We used it until last winter but its caved in completely blocked .And we dont reckon anyones ever used this one because the Whomping Willows planted right over the entrance .But this one here this one leads right into the cellar of Honeydukes .Weve used it loads of times .And as you mightve noticed the entrance is right outside this room through that oneeyed old crones hump .Moony Wormtail Padfoot and Prongs sighed George patting the heading of the map .We owe them so much .Noble men working tirelessly to help a new generation of lawbreakers said Fred solemnly .Right said George briskly .Dont forget to wipe it after youve used it or anyone can read it Fred said warningly .Just tap it again and say ‘Mischief managed !And itll go blank .So young Harry said Fred in an uncanny impersonation of Percy mind you behave yourself .See you in Honeydukes said George winking .They left the room both smirking in a satisfied sort of way .Harry stood there gazing at the miraculous map .He watched the tiny ink Mrs Norris turn left and pause to sniff at something on the floor .If Filch really didnt know .he wouldnt have to pass the dementors at all .But even as he stood there flooded with excitement something Harry had once heard Mr Weasley say came floating out of his memory .Never trust anything that can think for itself if you cant see where it keeps its brain .This map was one of those dangerous magical objects Mr Weasley had been warning against .Aids for Magical MischiefMakers .but then Harry reasoned he only wanted to use it to get into Hogsmeade it wasnt as though he wanted to steal anything or attack anyone .and Fred and George had been using it for years without anything horrible happening .Harry traced the secret passage to Honeydukes with his finger .Then quite suddenly as though following orders he rolled up the map stuffed it inside his robes and hurried to the door of the classroom .He opened it a couple of inches .There was no one outside .Very carefully he edged out of the room and behind the statue of the oneeyed witch .What did he have to do ?He pulled out the map again and saw to his astonishment that a new ink figure had appeared upon it labeled Harry Potter .This figure was standing exactly where the real Harry was standing about halfway down the thirdfloor corridor .Harry watched carefully .His little ink self appeared to be tapping the witch with his minute wand .Harry quickly took out his real wand and tapped the statue .Nothing happened .He looked back at the map .The tiniest speech bubble had appeared next to his figure .The word inside said Dissendium .Dissendiurrd Harry whispered tapping the stone witch again .At once the statues hump opened wide enough to admit a fairly thin person .Harry glanced quickly up and down the corridor then tucked the map away again hoisted himself into the hole headfirst and pushed himself forward .He slid a considerable way down what felt like a stone slide then landed on cold damp earth .He stood up looking around .It was pitch dark .He held up his wand muttered Lumos and saw that he was in a very narrow low earthy passageway .He raised the map tapped it with the tip of his wand and muttered Mischief managed !The map went blank at once .He folded it carefully tucked it inside his robes then heart beating fast both excited and apprehensive he set off .The passage twisted and turned more like the burrow of a giant rabbit than anything else .Harry hurried along it stumbling now and then on the uneven floor holding his wand out in front of him .It took ages but Harry had the thought of Honeydukes to sustain him .After what felt like an hour the passage began to rise .Panting Harry sped up his face hot his feet very cold .Ten minutes later he came to the foot of some worn stone steps which rose out of sight above him .Careful not to make any noise Harry began to climb .A hundred steps two hundred steps he lost count as he climbed watching his feet .Then without warning his head hit something hard .It seemed to be a trapdoor .Harry stood there massaging the top of his head listening .He couldnt hear any sounds above him .Very slowly he pushed the trapdoor open and peered over the edge .He was in a cellar which was full of wooden crates and boxes .Harry climbed out of the trapdoor and replaced it it blended so perfectly with the dusty floor that it was impossible to tell it was there .Harry crept slowly toward the wooden staircase that led upstairs .Now he could definitely hear voices not to mention the tinkle of a bell and the opening and shutting of a door .Wondering what he ought to do he suddenly heard a door open much closer at hand somebody was about to come downstairs .And get another box of Jelly Slugs dear theyve nearly cleaned us out said a womans voice .A pair of feet was coming down the staircase .Harry leapt behind an enormous crate and waited for the footsteps to pass .He heard the man shifting boxes against the opposite wall .He might not get another chance Quickly and silently Harry dodged out from his hiding place and climbed the stairs looking back he saw an enormous backside and shiny bald head buried in a box .Harry reached the door at the top of the stairs slipped through it and found himself behind the counter of Honeydukes he ducked crept sideways and then straightened up .Honeydukes was so crowded with Hogwarts students that no one looked twice at Harry .He edged among them looking around and suppressed a laugh as he imagined the look that would spread over Dudleys piggy face if he could see where Harry was now .There were shelves upon shelves of the most succulentlooking sweets imaginable .Creamy chunks of nougat shimmering pink squares of coconut ice fat honeycolored toffees hundreds of different kinds of chocolate in neat rows there was a large barrel of Every Flavor Beans and another of Fizzing Whizbees the levitating sherbert balls that Ron had mentioned along yet another wall were Special Effects sweets Droobles Best Blowing Gum which filled a room with bluebellcolored bubbles that refused to pop for days the strange splintery Toothflossing Stringmints tiny black Pepper Imps breathe fire for your friends !Ice Mice hear your teeth chatter and squeak !peppermint creams shaped like toads hop realistically in the stomach !fragile sugarspun quills and exploding bonbons .Harry squeezed himself through a crowd of sixth years and saw a sign hanging in the farthest corner of the shop UNUSUAL TASTES .Ron and Hermione were standing underneath it examining a tray of bloodflavored lollipops .Harry sneaked up behind them .Ugh no Harry wont want one of those theyre for vampires I expect Hermione was saying .How about these ?said Ron shoving ajar of Cockroach Clusters under Hermione s nose .Definitely not said Harry .Ron nearly dropped the jar .Harry squealed Hermione .What are you doing here ?How how did you ?Wow !said Ron looking very impressed youve learned to Apparate !Course I havent said Harry .He dropped his voice so that none of the sixth years could hear him and told them all about the Marauders Map .How come Fred and George never gave it to me !said Ron outraged .Im their brother !But Harry isnt going to keep it !said Hermione as though the idea were ludicrous .Hes going to hand it in to Professor McGonagall arent you Harry ?No Im not !said Harry .Are you mad ?said Ron goggling at Hermione .Hand in something that good ?If I hand it in Ill have to say where I got it !Filch would know Fred and George had nicked it !But what about Sirius Black ?Hermione hissed .He could be using one of the passages on that map to get into the castle !The teachers have got to know !He cant be getting in through a passage said Harry quickly .There are seven secret tunnels on the map right ?Fred and George reckon Filch already knows about four of them .And of the other three one of thems caved in so no one can get through it .One of thems got the Whomping Willow planted over the entrance so you cant get out of it .And the one I just came through well its really hard to see the entrance to it down in the cellar so unless he knew it was there .Harry hesitated .What if Black did know the passage was there ?Ron however cleared his throat significantly and pointed to a notice pasted on the inside of the sweetshop door .BY ORDER OF THE MINISTRY OF MAGIC Customers are reminded that until further notice dementors will be patrolling the streets of Hogsmeade every night after sundown .This measure has been put in place for the safety of Hogsmeade residents and will be lifted upon the recapture of Sirius Black .It is therefore advisable that you complete your shopping well before nightfall .Merry Christmas !See ?said Ron quietly .Id like to see Black try and break into Honeydukes with dementors swarming all over the village .Anyway Hermione the Honeydukes owners would hear a breakin wouldnt they ?They live over the shop !Yes but but Hermoine seemed to be struggling to find another problem .Look Harry still shouldnt be coming into Hogsmeade .He hasnt got a signed form !If anyone finds out hell be in so much trouble !And its not nightfall yet what if Sirius Black turns up today ?Now ?Hed have a job spotting Harry in this said Ron nodding through the mullioned windows at the thick swirling snow .Come on Hermione its Christmas .Harry deserves a break .Hermione bit her lip looking extremely worried .Are you going to report me ?Harry asked her grinning .Oh of course not but honestly Harry Seen the Fizzing Whizbees Harry ?said Ron grabbing him and leading him over to their barrel .And the Jelly Slugs ?And the Acid Pops ?Fred gave me one of those when I was seven it burnt a hole right through my tongue .I remember Mum walloping him with her broomstick .Ron stared broodingly into the Acid Pop box .Reckon Fredd take a bit of Cockroach Cluster if I told him they were peanuts ?When Ron and Hermione had paid for all their sweets the three of them left Honeydukes for the blizzard outside .Hogsmeade looked like a Christmas card the little thatched cottages and shops were all covered in a layer of crisp snow there were holly wreaths on the doors and strings of enchanted candles hanging in the trees .Harry shivered unlike the other two he didnt have his cloak .They headed up the street heads bowed against the wind Ron and Hermione shouting through their scarves .Thats the post office Zonkos is up there We could go up to the Shrieking Shack Tell you what said Ron his teeth chattering shall we go for a butterbeer in the Three Broomsticks ?Harry was more than willing the wind was fierce and his hands were freezing so they crossed the road and in a few minutes were entering the tiny inn .It was extremely crowded noisy warm and smoky .A curvy sort of woman with a pretty face was serving a bunch of rowdy warlocks up at the bar .Thats Madam Rosmerta said Ron .Ill get the drinks shall I ?he added going slightly red .Harry and Hermione made their way to the back of the room where there was a small vacant table between the window and a handsome Christmas tree which stood next to the fireplace .Ron came back five minutes later carrying three foaming tankards of hot butterbeer .Merry Christmas !he said happily raising his tankard .Harry drank deeply .It was the most delicious thing hed ever tasted and seemed to heat every bit of him from the inside .A sudden breeze ruffled his hair .The door of the Three Broomsticks had opened again .Harry looked over the rim of his tankard and choked .Professors McGonagall and Flitwick had just entered the pub with a flurry of snowflakes shortly followed by Hagrid who was deep in conversation with a portly man in a limegreen bowler hat and a pinstriped cloak Cornelius Fudge Minister of Magic .In an instant Ron and Hermione had both placed hands on the top of Harrys head and forced him off his stool and under the table .Dripping with butterbeer and crouching out of sight Harry clutched his empty tankard and watched the teachers and Fudges feet move toward the bar pause then turn and walk right toward him .Somewhere above him Hermione whispered Mobiliarbus The Christmas tree beside their table rose a few inches off the ground drifted sideways and landed with a soft thump right in front of their table hiding them from view .Staring through the dense lower branches Harry saw four sets of chair legs move back from the table right beside theirs then heard the grunts and sighs of the teachers and minister as they sat down .Next he saw another pair of feet wearing sparkly turquoise high heels and heard a womans voice .A small gillywater Mine said Professor McGonagalls voice .Four pints of mulled mead Ta Rosmerta said Hagrid .A cherry syrup and soda with ice and umbrella Mmm !said Professor Flitwick smacking his lips .So you 11 be the red currant rum Minister .Thank you Rosmerta mdear said Fudges voice .Lovely to see you again I must say .Have one yourself wont you ?Come and join us .Well thank you very much Minister .Harry watched the glittering heels march away and back again .His heart was pounding uncomfortably in his throat .Why hadnt it occurred to him that this was the last weekend of term for the teachers too ?And how long were they going to sit there ?He needed time to sneak back into Honeydukes if he wanted to return to school tonight .Hermiones leg gave a nervous twitch next to him .So what brings you to this neck of the woods Minister ?came Madam Rosmertas voice .Harry saw the lower part of Fudges thick body twist in his chair as though he were checking for eavesdroppers .Then he said in a quiet voice What else mdear but Sirius Black ?I daresay you heard what happened up at the school at Halloween ?I did hear a rumor admitted Madam Rosmerta .Did you tell the whole pub Hagrid ?said Professor McGonagall exasperatedly .Do you think Blacks still in the area Minister ?whispered Madam Rosmerta .Im sure of it said Fudge shortly .You know that the dementors have searched the whole village twice ?said Madam Rosmerta a slight edge to her voice .Scared all my customers away .Its very bad for business Minister .Rosmerta mdear I dont like them any more than you do said Fudge uncomfortably .Necessary precaution .unfortunate but there you are .Ive just met some of them .Theyre in a fury against Dumbledore he wont let them inside the castle grounds .I should think not said Professor McGonagall sharply .How are we supposed to teach with those horrors floating around ?Hear hear !squeaked tiny Professor Flitwick whose feet were dangling a foot from the ground .All the same demurred Fudge they are here to protect you all from something much worse .We all know what Blacks capable of .Do you know I still have trouble believing it said Madam Rosmerta thoughtfully .Of all the people to go over to the Dark Side Sirius Black was the last Id have thought .I mean I remember him when he was a boy at Hogwarts .If youd told me then what he was going to become Id have said youd had too much mead .You dont know the half of it Rosmerta said Fudge gruffly .The worst he did isnt widely known .The worst ?said Madam Rosmerta her voice alive with curiosity .Worse than murdering all those poor people you mean ?I certainly do said Fudge .I cant believe that .What could possibly be worse ?You say you remember him at Hogwarts Rosmerta murmured Professor McGonagall .Do you remember who his best friend was ?Naturally said Madam Rosmerta with a small laugh .Never saw one without the other did you ?The number of times I had them in here ooh they used to make me laugh .Quite the double act Sirius Black and James Potter !Harry dropped his tankard with a loud clunk .Ron kicked him .Precisely said Professor McGonagall .Black and Potter .Ringleaders of their little gang .Both very bright of course exceptionally bright in fact but I dont think weve ever had such a pair of troublemakers I dunno chuckled Hagrid .Fred and George Weasley could give em a run fer their money .Youd have thought Black and Potter were brothers !chimed in Professor Flitwick .Inseparable !Of course they were said Fudge .Potter trusted Black beyond all his other friends .Nothing changed when they left school .Black was best man when James married Lily .Then they named him godfather to Harry .Harry has no idea of course .You can imagine how the idea would torment him .Because Black turned out to be in league with You KnowWho ?whispered Madam Rosmerta .Worse even than that mdear .Fudge dropped his voice and proceeded in a sort of low rumble .Not many people are aware that the Potters knew You KnowWho was after them .Dumbledore who was of course working tirelessly against YouKnowWho had a number of useful spies .One of them tipped him off and he alerted James and Lily at once .He advised them to go into hiding .Well of course YouKnow Who wasnt an easy person to hide from .Dumbledore told them that their best chance was the Fidelius Charm .How does that work ?said Madam Rosmerta breathless with interest .Professor Flitwick cleared his throat .An immensely complex spell he said squeakily involving the magical concealment of a secret inside a single living soul .The information is hidden inside the chosen person or SecretKeeper and is henceforth impossible to find unless of course the SecretKeeper chooses to divulge it .As long as the SecretKeeper refused to speak YouKnowWho could search the village where Lily and James were staying for years and never find them not even if he had his nose pressed against their sitting room window !So Black was the Potters SecretKeeper ?whispered Madam Rosmerta .Naturally said Professor McGonagall .James Potter told Dumbledore that Black would die rather than tell where they were that Black was planning to go into hiding himself .and yet Dumbledore remained worried .I remember him offering to be the Potters SecretKeeper himself .He suspected Black ?gasped Madam Rosmerta .He was sure that somebody close to the Potters had been keeping YouKnowWho informed of their movements said Professor McGonagall darkly .Indeed he had suspected for some time that someone on our side had turned traitor and was passing a lot of information to YouKnowWho .But James Potter insisted on using Black ?He did said Fudge heavily .And then barely a week after the Fidelius Charm had been performed Black betrayed them ?breathed Madam Rosmerta .He did indeed .Black was tired of his doubleagent role he was ready to declare his support openly for YouKnowWho and he seems to have planned this for the moment of the Potters death .But as we all know YouKnowWho met his downfall in little Harry Potter .Powers gone horribly weakened he fled .And this left Black in a very nasty position indeed .His master had fallen at the very moment when he Black had shown his true colors as a traitor .He had no choice but to run for it Filthy stinkin turncoat !Hagrid said so loudly that half the bar went quiet .Shh !said Professor McGonagall .I met him !growled Hagrid .I musta bin the last ter see him before he killed all them people !It was me what rescued Harry from Lily an Jamess house after they was killed !Jus got him outta the ruins poor little thing with a great slash across his forehead an his parents dead .an Sirius Black turns up on that flyin motorbike he used ter ride .Never occurred ter me what he was doin there .I didn know hed bin Lily an Jamess SecretKeeper .Thought hed jus heard the news o You Know Whos attack an come ter see what he could do .White an shakin he was .An yeh know what I did ?I COMFORTED THE MURDERIN TRAITOR !Hagrid roared .Hagrid please !said Professor McGonagall .Keep your voice down !How was I ter know he wasn upset abou Lily an James ?It was YouKnowWho he cared abou !An then he says ‘Give Harry ter me Hagrid Im his godfather Ill look after him Ha !But Id had me orders from Dumbledore an I told Black no Dumbledore said Harry was ter go ter his aunt an uncles .Black argued but in the end he gave in .Told me ter take his motorbike ter get Harry there . ‘I wont need it anymore he says .I shoulda known there was somethin fishy goin on then .He loved that motorbike what was he givin it ter me for ?Why wouldn he need it anymore ?Fact was it was too easy ter trace .Dumbledore knew hed bin the Potters SecretKeeper .Black knew he was goin ter have ter run fer it that night knew it was a matter o hours before the Ministry was after him .But what if Id given Harry to him eh ?I bet he dve pitched him off the bike halfway out ter sea .His bes friends son !But when a wizard goes over ter the Dark Side theres nothin and no one that matters to em anymore .A long silence followed Hagrid s story .Then Madam Rosmerta said with some satisfaction But he didnt manage to disappear did he ?The Ministry of Magic caught up with him next day !Alas if only we had said Fudge bitterly .It was not we who found him .It was little Peter Pettigrew another of the Potters friends .Maddened by grief no doubt and knowing that Black had been the Potters SecretKeeper he went after Black himself .Pettigrew .that fat little boy who was always tagging around after them at Hogwarts ?said Madam Rosmerta .Heroworshipped Black and Potter said Professor McGonagall .Never quite in their league talentwise .I was often rather sharp with him .You can imagine how I how I regret that now .She sounded as though she had a sudden head cold .There now Minerva said Fudge kindly Pettigrew died a heros death .Eyewitnesses Muggles of course we wiped their memories later told us how Pettigrew cornered Black .They say he was sobbing Lily and James Sirius !How could you ?And then he went for his wand .Well of course Black was quicker .Blew Pettigrew to smithereens .Professor McGonagall blew her nose and said thickly Stupid boy .foolish boy .he was always hopeless at dueling .should have left it to the Ministry .I tell yeh if Id got ter Black before little Pettigrew did I wouldntve messed around with wands Idve ripped him limb from limb Hagrid growled .You dont know what youre talking about Hagrid said Fudge sharply .Nobody but trained Hit Wizards from the Magical Law Enforcement Squad would have stood a chance against Black once he was cornered .I was Junior Minister in the Department of Magical Catastrophes at the time and I was one of the first on the scene after Black murdered all those people .I I will never forget it .I still dream about it sometimes .A crater in the middle of the street so deep it had cracked the sewer below .Bodies everywhere .Muggles screaming .And Black standing there laughing with what was left of Pettigrew in front of him .a heap of bloodstained robes and a few a few fragments Fudges voice stopped abruptly .There was the sound of five noses being blown .Well there you have it Rosmerta said Fudge thickly .Black was taken away by twenty members of the Magical Law Enforcement Squad and Pettigrew received the Order of Merlin First Class which I think was some comfort to his poor mother .Blacks been in Azkaban ever since .Madam Rosmerta let out a long sigh .Is it true hes mad Minister ?I wish I could say that he was said Fudge slowly .I certainly believe his masters defeat unhinged him for a while .The murder of Pettigrew and all those Muggles was the action of a cornered and desperate man cruel .pointless .Yet I met Black on my last inspection of Azkaban .You know most of the prisoners in there sit muttering to themselves in the dark theres no sense in them .but I was shocked at how normal Black seemed .He spoke quite rationally to me .It was unnerving .Youd have thought he was merely bored asked if Id finished with my newspaper cool as you please said he missed doing the crossword .Yes I was astounded at how little effect the dementors seemed to be having on him and he was one of the most heavily guarded in the place you know .Dementors outside his door day and night .But what do you think hes broken out to do ?said Madam Rosmerta .Good gracious Minister he isnt trying to rejoin YouKnowWho is he ?I daresay that is his er eventual plan said Fudge evasively .But we hope to catch Black long before that .I must say YouKnowWho alone and friendless is one thing .but give him back his most devoted servant and I shudder to think how quickly hell rise again .There was a small chink of glass on wood .Someone had set down their glass .You know Cornelius if youre dining with the headmaster wed better head back up to the castle said Professor McGonagall .One by one the pairs of feet in front of Harry took the weight of their owners once more hems of cloaks swung into sight and Madam Rosemertas glittering heels disappeared behind the bar .The door of the Three Broomsticks opened again there was another flurry of snow and the teachers had disappeared .Harry ?Rons and Hermiones faces appeared under the table .They were both staring at him lost for words .THE FIREBOLT Harry didnt have a very clear idea of how he had managed to get back into the Honeydukes cellar through the tunnel and into the castle once more .All he knew was that the return trip seemed to take no time at all and that he hardly noticed what he was doing because his head was still pounding with the conversation he had just heard .Why had nobody ever told him ?Dumbledore Hagrid Mr Weasley Cornelius Fudge .why hadnt anyone ever mentioned the fact that Harrys parents had died because their best friend had betrayed them ?Ron and Hermione watched Harry nervously all through dinner not daring to talk about what theyd overheard because Percy was sitting close by them .When they went upstairs to the crowded common room it was to find Fred and George had set off half a dozen Dungbombs in a fit of endofterm high spirits .Harry who didnt want Fred and George asking him whether hed reached Hogsmeade or not sneaked quietly up to the empty dormitory and headed straight for his bedside cabinet .He pushed his books aside and quickly found what he was looking for the leatherbound photo album Hagrid had given him two years ago which was full of wizard pictures of his mother and father .He sat down on his bed drew the hangings around him and started turning the pages searching until .He stopped on a picture of his parents wedding day .There was his father waving up at him beaming the untidy black hair Harry had inherited standing up in all directions .There was his mother alight with happiness arm in arm with his dad .And there .that must be him .Their best man .Harry had never given him a thought before .If he hadnt known it was the same person he would never have guessed it was Black in this old photograph .His face wasnt sunken and waxy but handsome full of laughter .Had he already been working for Voldemort when this picture had been taken ?Was he already planning the deaths of the two people next to him ?Did he realize he was facing twelve years in Azkaban twelve years that would make him unrecognizable ?But the dementors dont affect him Harry thought staring into the handsome laughing face .He doesnt have to hear my mum screaming if they get too close Harry slammed the album shut reached over and stuffed it back into his cabinet took off his robe and glasses and got into bed making sure the hangings were hiding him from view .The dormitory door opened .Harry ?said Rons voice uncertainly .But Harry lay still pretending to be asleep .He heard Ron leave again and rolled over on his back his eyes wide open .A hatred such as he had never known before was coursing through Harry like poison .He could see Black laughing at him through the darkness as though somebody had pasted the picture from the album over his eyes .He watched as though somebody was playing him a piece of film Sirius Black blasting Peter Pettigrew who resembled Neville Longbottom into a thousand pieces .He could hear though having no idea what Blacks voice might sound like a low excited mutter .It has happened My Lord .the Potters have made me their Secret Keeper .And then came another voice laughing shrilly the same laugh that Harry heard inside his head whenever the dementors drew near .Harry you you look terrible .Harry hadnt gotten to sleep until daybreak .He had awoken to find the dormitory deserted dressed and gone down the spiral staircase to a common room that was completely empty except for Ron who was eating a Peppermint Toad and massaging his stomach and Hermione who had spread her homework over three tables .Where is everyone ?said Harry .Gone !Its the first day of the holidays remember ?said Ron watching Harry closely .Its nearly lunchtime I was going to come and wake you up in a minute .Harry slumped into a chair next to the fire .Snow was still falling outside the windows .Crookshanks was spread out in front of the fire like a large ginger rug .You really dont look well you know Hermione said peering anxiously into his face .Im fine said Harry .Harry listen said Hermione exchanging a look with Ron you must be really upset about what we heard yesterday .But the thing is you mustnt go doing anything stupid .Like what ?said Harry .Like trying to go after Black said Ron sharply .Harry could tell they had rehearsed this conversation while he had been asleep .He didnt say anything .You wont will you Harry ?said Hermione .Because Blacks not worth dying for said Ron .Harry looked at them .They didnt seem to understand at all .Dyou know what I see and hear every time a dementor gets too near me ?Ron and Hermione shook their heads looking apprehensive .I can hear my mum screaming and pleading with Voldemort .And if youd heard your mum screaming like that just about to be killed you wouldnt forget it in a hurry .And if you found out someone who was supposed to be a friend of hers betrayed her and sent Voldemort after her Theres nothing you can do !said Hermione looking stricken .The dementors will catch Black and hell go back to Azkaban and and serve him right !You heard what Fudge said .Black isnt affected by Azkaban like normal people are .Its not a punishment for him like it is for the others .So what are you saying ?said Ron looking very tense .You want to to kill Black or something ?Dont be silly said Hermione in a panicky voice .Harry doesnt want to kill anyone do you Harry ?Again Harry didnt answer .He didnt know what he wanted to do .All he knew was that the idea of doing nothing while Black was at liberty was almost more than he could stand .Malfoy knows he said abruptly .Remember what he said to me in Potions ? ‘If it was me Id hunt him down myself .Id want revenge .Youre going to take Malfoy s advice instead of ours ?said Ron furiously .Listen .you know what Pettigrews mother got back after Black had finished with him ?Dad told me the Order of Merlin First Class and Pettigrews finger in a box .That was the biggest bit of him they could find .Blacks a madman Harry and hes dangerous Malfoys dad must have told him said Harry ignoring Ron .He was right in Voldemorts inner circle Say YouKnotuWho will you ?interjected Ron angrily .so obviously the Malfoys knew Black was working for Voldemort and Malfoyd love to see you blown into about a million pieces like Pettigrew !Get a grip .Malfoys just hoping you 11 get yourself killed before he has to play you at Quidditch .Harry please said Hermione her eyes now shining with tears please be sensible .Black did a terrible terrible thing but ddont put yourself in danger its what Black wants .Oh Harry youd be playing right into Blacks hands if you went looking for him .Your mum and dad wouldnt want you to get hurt would they ?Theyd never want you to go looking for Black !Ill never know what theyd have wanted because thanks to Black Ive never spoken to them said Harry shortly .There was a silence in which Crookshanks stretched luxuriously flexing his claws .Rons pocket quivered .Look said Ron obviously casting around for a change of subject its the holidays !Its nearly Christmas !Lets lets go down and see Hagrid .We havent visited him for ages !No !said Hermione quickly .Harry isnt supposed to leave the castle Ron Yeah lets go said Harry sitting up and I can ask him how come he never mentioned Black when he told me all about my parents !Further discussion of Sirius Black plainly wasnt what Ron had had in mind .Or we could have a game of chess he said hastily or Gobstones .Percy left a set No lets visit Hagrid said Harry firmly .So they got their cloaks from their dormitories and set off through the portrait hole Stand and fight you yellowbellied mongrels !down through the empty castle and out through the oak front doors .They made their way slowly down the lawn making a shallow trench in the glittering powdery snow their socks and the hems of their cloaks soaked and freezing .The Forbidden Forest looked as though it had been enchanted each tree smattered with silver and Hagrids cabin looked like an iced cake .Ron knocked but there was no answer .Hes not out is he ?said Hermione who was shivering under her cloak .Ron had his ear to the door .Theres a weird noise he said .Listen is that Fang ?Harry and Hermione put their ears to the door too .From inside the cabin came a series of low throbbing moans .Think wed better go and get someone ?said Ron nervously .Hagrid !called Harry thumping the door .Hagrid are you in there ?There was a sound of heavy footsteps then the door creaked open .Hagrid stood there with his eyes red and swollen tears splashing down the front of his leather vest .Yehve heard ?he bellowed and he flung himself onto Harrys neck .Hagrid being at least twice the size of a normal man this was no laughing matter .Harry about to collapse under Hagrids weight was rescued by Ron and Hermione who each seized Hagrid under an arm and heaved him back into the cabin .Hagrid allowed himself to be steered into a chair and slumped over the table sobbing uncontrollably his face glazed with tears that dripped down into his tangled beard .Hagrid what is it ?said Hermione aghast .Harry spotted an officiallooking letter lying open on the table .Whats this Hagrid ?Hagrids sobs redoubled but he shoved the letter toward Harry who picked it up and read aloud Dear Mr Hagrid Further to our inquiry into the attack by a hippogriff on a student in your class we have accepted the assurances of Professor Dumbledore that you bear no responsibility for the regrettable incident .Well thats okay then Hagrid !said Ron clapping Hagrid on the shoulder .But Hagrid continued to sob and waved one of his gigantic hands inviting Harry to read on .However we must register our concern about the hippogriff in question .We have decided to uphold the official complaint of Mr Lucius Malfoy and this matter will therefore be taken to the Committee for the Disposal of Dangerous Creatures .The hearing will take place on April 20th and we ask you to present yourself and your hippogriff at the Committees offices in London on that date .In the meantime the hippogriff should be kept tethered and isolated .Yours in fellowship .There followed a list of the school governors .Oh said Ron .But you said Buckbeak isnt a bad hippogriff Hagrid .I bet hell get off Yeh don know them gargoyles at the Committee fer the Disposal o Dangerous Creatures !choked Hagrid wiping his eyes on his sleeve .Theyve got it in fer interestin creatures !A sudden sound from the corner of Hagrid s cabin made Harry Ron and Hermione whip around .Buckbeak the hippogriff was lying in the corner chomping on something that was oozing blood all over the floor .I couldn leave him tied up out there in the snow !choked Hagrid .All on his own !At Christmas .Harry Ron and Hermione looked at one another .They had never seen eye to eye with Hagrid about what he called interesting creatures and other people called terrifying monsters .On the other hand there didnt seem to be any particular harm in Buckbeak .In fact by Hagrids usual standards he was positively cute .Youll have to put up a good strong defense Hagrid said Hermione sitting down and laying a hand on Hagrids massive forearm .Im sure you can prove Buckbeak is safe .Wont make no difference !sobbed Hagrid .Them Disposal devils theyre all in Lucius Malfoys pocket !Scared o him !An if I lose the case Buckbeak Hagrid drew his finger swiftly across his throat then gave a great wail and lurched forward his face in his arms .What about Dumbledore Hagrid ?said Harry .Hes done moren enough fer me already groaned Hagrid .Got enough on his plate what with keepin them dementors outta the castle an Sirius Black lurkin around Ron and Hermione looked quickly at Harry as though expecting him to start berating Hagrid for not telling him the truth about Black .But Harry couldnt bring himself to do it not now that he saw Hagrid so miserable and scared .Listen Hagrid he said you cant give up .Hermiones right you just need a good defense .You can call us as witnesses Im sure Ive read about a case of hippogriffbaiting said Hermione thoughtfully where the hippogriff got off .Ill look it up for you Hagrid and see exactly what happened .Hagrid howled still more loudly .Harry and Hermione looked at Ron to help them .Er shall I make a cup of tea ?said Ron .Harry stared at him .Its what my mum does whenever someones upset Ron muttered shrugging .At last after many more assurances of help with a steaming mug of tea in front of him Hagrid blew his nose on a handkerchief the size of a tablecloth and said Yer right .I can afford to go ter pieces .Gotta pull meself together .Fang the boarhound came timidly out from under the table and laid his head on Hagrid s knee .Ive not bin meself lately said Hagrid stroking Fang with one hand and mopping his face with the other .Worried abou Buckbeak an no one likin me classes We do like them !lied Hermione at once .Yeah theyre great !said Ron crossing his fingers under the table .Er how are the flobberworms ?Dead said Hagrid gloomily .Too much lettuce .Oh no !said Ron his lip twitching .An them dementors make me feel ruddy terrible an all said Hagrid with a sudden shudder .Gotta walk past em evry time I want a drink in the Three Broomsticks .S like bein back in Azkaban He fell silent gulping his tea .Harry Ron and Hermione watched him breathlessly .They had never heard Hagrid talk about his brief spell in Azkaban before .After a pause Hermione said timidly Is it awful in there Hagrid ?Yehve no idea said Hagrid quietly .Never bin anywhere like it .Thought I was goin mad .Kep goin over horrible stuff in me mind .the day I got expelled from Hogwarts .day me dad died .day I had ter let Norbert go .His eyes filled with tears .Norbert was the baby dragon Hagrid had once won in a game of cards .Yeh can really remember who yeh are after a while .An yeh can see the point o livin at all .I used ter hope Id jus die in me sleep .When they let me out it was like bein born again evrythin came floodin back it was the bes feelin in the world .Mind the dementors werent keen on lettin me go .But you were innocent !said Hermione .Hagrid snorted .Think that matters to them ?They don care .Long as theyve got a couple o hundred humans stuck there with em so they can leech all the happiness out of em they don give a damn whos guilty an whos not .Hagrid went quiet for a moment staring into his tea .Then he said quietly Thought o jus letting Buckbeak go .tryin ter make him fly away .but how dyeh explain ter a hippogriff its gotta go inter hidin ?An an Im scared o breakin the law .He looked up at them tears leaking down his face again .I don ever want ter go back ter Azkaban .The trip to Hagrids though far from fun had nevertheless had the effect Ron and Hermione had hoped .Though Harry had by no means forgotten about Black he couldnt brood constantly on revenge if he wanted to help Hagrid win his case against the Committee for the Disposal of Dangerous Creatures .He Ron and Hermione went to the library the next day and returned to the empty common room laden with books that might help prepare a defense for Buckbeak .The three of them sat in front of the roaring fire slowly turning the pages of dusty volumes about famous cases of marauding beasts speaking occasionally when they ran across something relevant .Heres something .there was a case in 1722 .but the hippogriff was convicted ugh look what they did to it thats disgusting This might help look a manticore savaged someone in 1296 and they let the manticore off oh no that was only because everyone was too scared to go near it .Meanwhile in the rest of the castle the usual magnificent Christmas decorations had been put up despite the fact that hardly any of the students remained to enjoy them .Thick streamers of holly and mistletoe were strung along the corridors mysterious lights shone from inside every suit of armor and the Great Hall was filled with its usual twelve Christmas trees glittering with golden stars .A powerful and delicious smell of cooking pervaded the corridors and by Christmas Eve it had grown so strong that even Scabbers poked his nose out of the shelter of Rons pocket to sniff hopefully at the air .On Christmas morning Harry was woken by Ron throwing his pillow at him .Oy !Presents !Harry reached for his glasses and put them on squinting through the semidarkness to the foot of his bed where a small heap of parcels had appeared .Ron was already ripping the paper off his own presents .Another sweater from Mum .maroon again .see if youve got one .Harry had .Mrs Weasley had sent him a scarlet sweater with the Gryffindor lion knitted on the front also a dozen homebaked mince pies some Christmas cake and a box of nut brittle .As he moved all these things aside he saw a long thin package lying underneath .Whats that ?said Ron looking over a freshly unwrapped pair of maroon socks in his hand .Dunno .Harry ripped the parcel open and gasped as a magnificent gleaming broomstick rolled out onto his bedspread .Ron dropped his socks and jumped off his bed for a closer look .I dont believe it he said hoarsely .It was a Firebolt identical to the dream broom Harry had gone to see every day in Diagon Alley .Its handle glittered as he picked it up .He could feel it vibrating and let go it hung in midair unsupported at exactly the right height for him to mount it .His eyes moved from the golden registration number at the top of the handle right down to the perfectly smooth streamlined birch twigs that made up the tail .Who sent it to you ?said Ron in a hushed voice .Look and see if theres a card said Harry .Ron ripped apart the Firebolts wrappings .Nothing !Blimey whod spend that much on you ?Well said Harry feeling stunned Im betting it wasnt the Dursleys .I bet it was Dumbledore said Ron now walking around and around the Firebolt taking in every glorious inch .He sent you the Invisibility Cloak anonymously .That was my dads though said Harry .Dumbledore was just passing it on to me .He wouldnt spend hundreds of Galleons on me .He cant go giving students stuff like this Thats why he wouldnt say it was from him !said Ron .In case some git like Malfoy said it was favoritism .Hey Harry Ron gave a great whoop of laughter Malfoyl Wait till he sees you on this !Hell be sick as a pig !This is an international standard broom this is !I cant believe this Harry muttered running a hand along the Firebolt while Ron sank onto Harrys bed laughing his head off at the thought of Malfoy .Who ?I know said Ron controlling himself I know who it couldve been Lupin !What ?said Harry now starting to laugh himself .Lupin ?Listen if he had this much gold hed be able to buy himself some new robes .Yeah but he likes you said Ron .And he was away when your Nimbus got smashed and he mightve heard about it and decided to visit Diagon Alley and get this for you What dyou mean he was away ?said Harry .He was ill when I was playing in that match .Well he wasnt in the hospital wing said Ron .I was there cleaning out the bedpans on that detention from Snape remember ?Harry frowned at Ron .I cant see Lupin affording something like this .What re you two laughing about ?Hermione had just come in wearing her dressing gown and carrying Crookshanks who was looking very grumpy with a string of tinsel tied around his neck .Dont bring him in here !said Ron hurriedly snatching Scabbers from the depths of his bed and stowing him in his pajama pocket .But Hermione wasnt listening .She dropped Crookshanks onto Seamuss empty bed and stared openmouthed at the Firebolt .Oh Harry Who sent you that ?No idea said Harry .There wasnt a card or anything with it .To his great surprise Hermione did not appear either excited or intrigued by the news .On the contrary her face fell and she bit her lip .Whats the matter with you ?said Ron .I dont know said Hermione slowly but its a bit odd isnt it ?I mean this is supposed to be quite a good broom isnt it ?Ron sighed exasperatedly .Its the best broom there is Hermione he said .So it mustve been really expensive .Probably cost more than all the Slytherins brooms put together said Ron happily .Well .whod send Harry something as expensive as that and not even tell him theyd sent it ?said Hermione .Who cares ?said Ron impatiently .Listen Harry can I have a go on it ?Can I ?I dont think anyone should ride that broom just yet !said Hermione shrilly .Harry and Ron looked at her .What dyou think Harrys going to do with it sweep the floor ?said Ron .But before Hermione could answer Crookshanks sprang from Seamuss bed right at Rons chest .GET HIM OUT OF HERE !Ron bellowed as Crookshanks s claws ripped his pajamas and Scabbers attempted a wild escape over his shoulder .Ron seized Scabbers by the tail and aimed a misjudged kick at Crookshanks that hit the trunk at the end of Harrys bed knocking it over and causing Ron to hop up and down howling with pain .Crookshanks s fur suddenly stood on end .A shrill tinny whistling was filling the room .The Pocket Sneakoscope had become dislodged from Uncle Vernons old socks and was whirling and gleaming on the floor .I forgot about that !Harry said bending down and picking up the Sneakoscope .I never wear those socks if I can help it .The Sneakoscope whirled and whistled in his palm .Crookshanks was hissing and spitting at it .Youd better take that cat out of here Hermione said Ron furiously sitting on Harrys bed nursing his toe .Cant you shut that thing up ?he added to Harry as Hermione strode out of the room Crookshanks s yellow eyes still fixed maliciously on Ron .Harry stuffed the Sneakoscope back inside the socks and threw it back into his trunk .All that could be heard now were Rons stifled moans of pain and rage .Scabbers was huddled in Rons hands .It had been a while since Harry had seen him out of Rons pocket and he was unpleasantly surprised to see that Scabbers once so fat was now very skinny patches of fur seemed to have fallen out too .Hes not looking too good is he ?Harry said .Its stress !said Ron .Hed be fine if that big stupid furball left him alone !But Harry remembering what the woman at the Magical Menagerie had said about rats living only three years couldnt help feeling that unless Scabbers had powers he had never revealed he was reaching the end of his life .And despite Rons frequent complaints that Scabbers was both boring and useless he was sure Ron would be very miserable if Scabbers died .Christmas spirit was definitely thin on the ground in the Gryffindor common room that morning .Hermione had shut Crookshanks in her dormitory but was furious with Ron for trying to kick him Ron was still fuming about Crookshanks s fresh attempt to eat Scabbers .Harry gave up trying to make them talk to each other and devoted himself to examining the Firebolt which he had brought down to the common room with him .For some reason this seemed to annoy Hermione as well she didnt say anything but she kept looking darkly at the broom as though it too had been criticizing her cat .At lunchtime they went down to the Great Hall to find that the House tables had been moved against the walls again and that a single table set for twelve stood in the middle of the room .Professors Dumbledore McGonagall Snape Sprout and Flitwick were there along with Filch the caretaker who had taken off his usual brown coat and was wearing a very old and rather moldylooking tailcoat .There were only three other students two extremely nervouslooking first years and a sullenfaced Slytherin fifth year .Merry Christmas !said Dumbledore as Harry Ron and Hermione approached the table .As there are so few of us it seemed foolish to use the House tables . .Sit down sit down !Harry Ron and Hermione sat down side by side at the end of the table .Crackers !said Dumbledore enthusiastically offering the end of a large silver noisemaker to Snape who took it reluctantly and tugged .With a bang like a gunshot the cracker flew apart to reveal a large pointed witchs hat topped with a stuffed vulture .Harry remembering the boggart caught Rons eye and they both grinned Snape s mouth thinned and he pushed the hat toward Dumbledore who swapped it for his wizards hat at once .Dig in !he advised the table beaming around .As Harry was helping himself to roast potatoes the doors of the Great Hall opened again .It was Professor Trelawney gliding toward them as though on wheels .She had put on a green sequined dress in honor of the occasion making her look more than ever like a glittering oversized dragonfly .Sibyll this is a pleasant surprise !said Dumbledore standing up .I have been crystal gazing Headmaster said Professor Trelawney in her mistiest most faraway voice and to my astonishment I saw myself abandoning my solitary luncheon and coming to join you .Who am I to refuse the promptings of fate ?I at once hastened from my tower and I do beg you to forgive my lateness .Certainly certainly said Dumbledore his eyes twinkling .Let me draw you up a chair And he did indeed draw a chair in midair with his wand which revolved for a few seconds before falling with a thud between Professors Snape and McGonagall .Professor Trelawney however did not sit down her enormous eyes had been roving around the table and she suddenly uttered a kind of soft scream .I dare not Headmaster !If I join the table we shall be thirteen !Nothing could be more unlucky !Never forget that when thirteen dine together the first to rise will be the first to die !Well risk it Sibyll said Professor McGonagall impatiently .Do sit down the turkeys getting stone cold .Professor Trelawney hesitated then lowered herself into the empty chair eyes shut and mouth clenched tight as though expecting a thunderbolt to hit the table .Professor McGonagall poked a large spoon into the nearest tureen .Tripe Sibyll ?Professor Trelawney ignored her .Eyes open again she looked around once more and said But where is dear Professor Lupin ?Im afraid the poor fellow is ill again said Dumbledore indicating that everybody should start serving themselves .Most unfortunate that it should happen on Christmas Day .But surely you already knew that Sibyll ?said Professor McGonagall her eyebrows raised .Professor Trelawney gave Professor McGonagall a very cold look .Certainly I knew Minerva she said quietly .But one does not parade the fact that one is AllKnowing .I frequently act as though I am not possessed of the Inner Eye so as not to make others nervous .That explains a great deal said Professor McGonagall tartly .Professor Trelawneys voice suddenly became a good deal less misty .If you must know Minerva I have seen that poor Professor Lupin will not be with us for very long .He seems aware himself that his time is short .He positively fled when I offered to crystal gaze for him Imagine that said Professor McGonagall dryly .I doubt said Dumbledore in a cheerful but slightly raised voice which put an end to Professor McGonagall and Professor Trelawneys conversation that Professor Lupin is in any immediate danger .Severus youve made the potion for him again ?Yes Headmaster said Snape .Good said Dumbledore .Then he should be up and about in no time .Derek have you had any of these chipolatas ?Theyre excellent .The firstyear boy went furiously red on being addressed directly by Dumbledore and took the platter of sausages with trembling hands .Professor Trelawney behaved almost normally until the very end of Christmas dinner two hours later .Full to bursting with Christmas dinner and still wearing their party hats Harry and Ron got up first from the table and she shrieked loudly .My dears !Which of you left his seat first ?Which ?Dunno said Ron looking uneasily at Harry .I doubt it will make much difference said Professor McGonagall coldly unless a mad axeman is waiting outside the doors to slaughter the first into the entrance hall .Even Ron laughed .Professor Trelawney looked highly affronted .Coming ?Harry said to Hermione .No Hermione muttered I want a quick word with Professor McGonagall .Probably trying to see if she can take any more classes yawned Ron as they made their way into the entrance hall which was completely devoid of mad axemen .When they reached the portrait hole they found Sir Cadogan enjoying a Christmas party with a couple of monks several previous headmasters of Hogwarts and his fat pony .He pushed up his visor and toasted them with a flagon of mead .Merry hie Christmas !Password ?Scurvy cur said Ron .And the same to you sir !roared Sir Cadogan as the painting swung forward to admit them .Harry went straight up to the dormitory collected the Firebolt and the Broomstick Servicing Kit Hermione had given him for his birthday brought them downstairs and tried to find something to do to the Firebolt however there were no bent twigs to clip and the handle was so shiny already it seemed pointless to polish it .He and Ron simply sat admiring it from every angle until the portrait hole opened and Hermione came in accompanied by Professor McGonagall .Though Professor McGonagall was head of Gryffindor House Harry had seen her in the common room only once before and that had been to make a very grave announcement .He and Ron stared at her both holding the Firebolt .Hermione walked around them sat down picked up the nearest book and hid her face behind it .So thats it is it ?said Professor McGonagall beadily walking over to the fireside and staring at the Firebolt .Miss Granger has just informed me that you have been sent a broomstick Potter .Harry and Ron looked around at Hermione .They could see her forehead reddening over the top of her book which was upside down .May I ?said Professor McGonagall but she didnt wait for an answer before pulling the Firebolt out of their hands .She examined it carefully from handle to twigends .Hmm .And there was no note at all Potter ?No card ?No message of any kind ?No said Harry blankly .I see .said Professor McGonagall .Well Im afraid I will have to take this Potter .W what ?said Harry scrambling to his feet .Why ?It will need to be checked for jinxes said Professor McGonagall .Of course Im no expert but I daresay Madam Hooch and Professor Flitwick will strip it down Strip it down ?repeated Ron as though Professor McGonagall was mad .It shouldnt take more than a few weeks said Professor McGonagall .You will have it back if we are sure it is jinxfree .Theres nothing wrong with it !said Harry his voice shaking slightly .Honestly Professor You cant know that Potter said Professor McGonagall quite kindly not until youve flown it at any rate and Im afraid that is out of the question until we are certain that it has not been tampered with .I shall keep you informed .Professor McGonagall turned on her heel and carried the Firebolt out of the portrait hole which closed behind her .Harry stood staring after her the tin of HighFinish Polish still clutched in his hands .Ron however rounded on Hermione .What did you go running to McGonagall for ?Hermione threw her book aside .She was still pink in the face but stood up and faced Ron defiantly .Because I thought and Professor McGonagall agrees with me that that broom was probably sent to Harry by Sirius Black !THE PATRONUS Harry knew that Hermione had meant well but that didnt stop him from being angry with her .He had been the owner of the best broom in the world for a few short hours and now because of her interference he didnt know whether he would ever see it again .He was positive that there was nothing wrong with the Firebolt now but what sort of state would it be in once it had been subjected to all sorts of antijinx tests ?Ron was furious with Hermione too .As far as he was concerned the strippingdown of a brandnew Firebolt was nothing less than criminal damage .Hermione who remained convinced that she had acted for the best started avoiding the common room .Harry and Ron supposed she had taken refuge in the library and didnt try to persuade her to come back .All in all they were glad when the rest of the school returned shortly after New Year and Gryffindor Tower became crowded and noisy again .Wood sought Harry out on the night before term started .Had a good Christmas ?he said and then without waiting for an answer he sat down lowered his voice and said Ive been doing some thinking over Christmas Harry .After the last match you know .If the dementors come to the next one .I mean .we cant afford you to well Wood broke off looking awkward .Im working on it said Harry quickly .Professor Lupin said hed train me to ward off the dementors .We should be starting this week .He said hed have time after Christmas .Ah said Wood his expression clearing .Well in that case I really didnt want to lose you as Seeker Harry .And have you ordered a new broom yet ?No said Harry .What !Youd better get a move on you know you cant ride that Shooting Star against Ravenclaw !He got a Firebolt for Christmas said Ron .A Firebolt ?No !Seriously ?A a real Firebolt ?Dont get excited Oliver said Harry gloomily .I havent got it anymore .It was confiscated .And he explained all about how the Firebolt was now being checked for jinxes .Jinxed ?How could it be jinxed ?Sirius Black Harry said wearily .Hes supposed to be after me .So McGonagall reckons he might have sent it .Waving aside the information that a famous murderer was after his Seeker Wood said But Black couldnt have bought a Firebolt !Hes on the run !The whole countrys on the lookout for him !How could he just walk into Quality Quidditch Supplies and buy a broomstick ?I know said Harry but McGonagall still wants to strip it down Wood went pale .Ill go and talk to her Harry he promised .Ill make her see reason .A Firebolt .a real Firebolt on our team .She wants Gryffindor to win as much as we do .Ill make her see sense .A Firebolt .Classes started again the next day .The last thing anyone felt like doing was spending two hours on the grounds on a raw January morning but Hagrid had provided a bonfire full of salamanders for their enjoyment and they spent an unusually good lesson collecting dry wood and leaves to keep the fire blazing while the flameloving lizards scampered up and down the crumbling whitehot logs .The first Divination lesson of the new term was much less fun Professor Trelawney was now teaching them palmistry and she lost no time in informing Harry that he had the shortest life line she had ever seen .It was Defense Against the Dark Arts that Harry was keen to get to after his conversation with Wood he wanted to get started on his antidementor lessons as soon as possible .Ah yes said Lupin when Harry reminded him of his promise at the end of class .Let me see .how about eight oclock on Thursday evening ?The History of Magic classroom should be large enough .Ill have to think carefully about how were going to do this .We cant bring a real dementor into the castle to practice on .Still looks ill doesnt he ?said Ron as they walked down the corridor heading to dinner .What dyou reckon s the matter with him ?There was a loud and impatient tuh from behind them .It was Hermione who had been sitting at the feet of a suit of armor repacking her bag which was so full of books it wouldnt close .And what are you tutting at us for ?said Ron irritably .Nothing said Hermione in a lofty voice heaving her bag back over her shoulder .Yes you were said Ron .I said I wonder whats wrong with Lupin and you Well isnt it obvious ?said Hermione with a look of maddening superiority .If you dont want to tell us dont snapped Ron .Fine said Hermione haughtily and she marched off .She doesnt know said Ron staring resentfully after Hermione .Shes just trying to get us to talk to her again .At eight oclock on Thursday evening Harry left Gryffindor Tower for the History of Magic classroom .It was dark and empty when he arrived but he lit the lamps with his wand and had waited only five minutes when Professor Lupin turned up carrying a large packing case which he heaved onto Professor Binns desk .Whats that ?said Harry .Another boggart said Lupin stripping off his cloak .Ive been combing the castle ever since Tuesday and very luckily I found this one lurking inside Mr Filchs filing cabinet .Its the nearest well get to a real dementor .The boggart will turn into a dementor when he sees you so well be able to practice on him .I can store him in my office when were not using him theres a cupboard under my desk hell like .Okay said Harry trying to sound as though he wasnt apprehensive at all and merely glad that Lupin had found such a good substitute for a real dementor .So .Professor Lupin had taken out his own wand and indicated that Harry should do the same .The spell I am going to try and teach you is highly advanced magic Harry well beyond Ordinary Wizarding Level .It is called the Patronus Charm .How does it work ?said Harry nervously .Well when it works correctly it conjures up a Patronus said Lupin which is a kind of anti dementor a guardian that acts as a shield between you and the dementor .Harry had a sudden vision of himself crouching behind a Hagridsized figure holding a large club .Professor Lupin continued The Patronus is a kind of positive force a projection of the very things that the dementor feeds upon hope happiness the desire to survive but it cannot feel despair as real humans can so the dementors cant hurt it .But I must warn you Harry that the charm might be too advanced for you .Many qualified wizards have difficulty with it .What does a Patronus look like ?said Harry curiously .Each one is unique to the wizard who conjures it .And how do you conjure it ?With an incantation which will work only if you are concentrating with all your might on a single very happy memory .Harry cast his mind about for a happy memory .Certainly nothing that had happened to him at the Dursleys was going to do .Finally he settled on the moment when he had first ridden a broomstick .Right he said trying to recall as exactly as possible the wonderful soaring sensation of his stomach .The incantation is this Lupin cleared his throat .Expecto patronum .Expecto patronum Harry repeated under his breath expecto patronum .Concentrating hard on your happy memory ?Oh yeah said Harry quickly forcing his thoughts back to that first broom ride .Expecto patrono no patronum sorry expecto patronum expecto patronum Something whooshed suddenly out of the end of his wand it looked like a wisp of silvery gas .Did you see that ?said Harry excitedly .Something happened !Very good said Lupin smiling .Right then ready to try it on a dementor ?Yes Harry said gripping his wand very tightly and moving into the middle of the deserted classroom .He tried to keep his mind on flying but something else kept intruding .Any second now he might hear his mother again .but he shouldnt think that or he would hear her again and he didnt want to .or did he ?Lupin grasped the lid of the packing case and pulled .A dementor rose slowly from the box its hooded face turned toward Harry one glistening scabbed hand gripping its cloak .The lamps around the classroom flickered and went out .The dementor stepped from the box and started to sweep silently toward Harry drawing a deep rattling breath .A wave of piercing cold broke over him Expecto patronurrd Harry yelled .Expecto patronum .Expecto But the classroom and the dementor were dissolving . .Harry was falling again through thick white fog and his mothers voice was louder than ever echoing inside his head Not Harry Not Harry Please Ill do anything Stand aside .Stand aside girl Harry !Harry jerked back to life .He was lying flat on his back on the floor .The classroom lamps were alight again .He didnt have to ask what had happened .Sorry he muttered sitting up and feeling cold sweat trickling down behind his glasses .Are you all right ?said Lupin .Yes .Harry pulled himself up on one of the desks and leaned against it .Here Lupin handed him a Chocolate Frog .Eat this before we try again .I didnt expect you to do it your first time in fact I would have been astounded if you had .Its getting worse Harry muttered biting off the Frogs head .I could hear her louder that time and him Voldemort Lupin looked paler than usual .Harry if you dont want to continue I will more than understand I do !said Harry fiercely stuffing the rest of the Chocolate Frog into his mouth .Ive got to !What if the dementors turn up at our match against Ravenclaw ?I cant afford to fall off again .If we lose this game weve lost the Quidditch Cup !All right then .said Lupin .You might want to select another memory a happy memory I mean to concentrate on .That one doesnt seem to have been strong enough .Harry thought hard and decided his feelings when Gryffindor had won the House Championship last year had definitely qualified as very happy .He gripped his wand tightly again and took up his position in the middle of the classroom .Ready ?said Lupin gripping the box lid .Ready said Harry trying hard to fill his head with happy thoughts about Gryffindor winning and not dark thoughts about what was going to happen when the box opened .Go !said Lupin pulling off the lid .The room went icily cold and dark once more .The dementor glided forward drawing its breath one rotting hand was extending toward Harry Expecto patronum .Harry yelled .Expecto patronuml Expecto pat White fog obscured his senses .big blurred shapes were moving around him .then came a new voice a mans voice shouting panicking Lily take Harry and go Its him Go !Run Ill hold him off~ The sounds of someone stumbling from a room a door bursting open a cackle of highpitched laughter Harry !Harry .wake up .Lupin was tapping Harry hard on the face .This time it was a minute before Harry understood why he was lying on a dusty classroom floor .I heard my dad Harry mumbled .Thats the first time Ive ever heard him he tried to take on Voldemort himself to give my mum time to run for it .Harry suddenly realized that there were tears on his face mingling with the sweat .He bent his face as low as possible wiping them off on his robes pretending to do up his shoelace so that Lupin wouldnt see .You heard James ?said Lupin in a strange voice .Yeah .Face dry Harry looked up .Why you didnt know my dad did you ?I I did as a matter of fact said Lupin .We were friends at Hogwarts .Listen Harry perhaps we should leave it here for tonight .This charm is ridiculously advanced .I shouldnt have suggested putting you through this .No !said Harry .He got up again .Ill have one more go !Im not thinking of happy enough things thats what it is .Hang on .He racked his brains .A really really happy memory .one that he could turn into a good strong Patronus .The moment when hed first found out he was a wizard and would be leaving the Dursleys for Hogwarts !If that wasnt a happy memory he didnt know what was .Concentrating very hard on how he had felt when hed realized hed be leaving Privet Drive Harry got to his feet and faced the packing case once more .Ready ?said Lupin who looked as though he were doing this against his better judgment .Concentrating hard ?All right go !He pulled off the lid of the case for the third time and the dementor rose out of it the room fell cold and dark EXPECTO PATRONUM Harry bellowed .EXPECTO PATRONUM EXPECTO PATRONUM The screaming inside Harrys head had started again except this time it sounded as though it were coming from a badly tuned radio softer and louder and softer again and he could still see the dementor it had halted and then a huge silver shadow came bursting out of the end of Harrys wand to hover between him and the dementor and though Harrys legs felt like water he was still on his feet though for how much longer he wasnt sure RiddikulusV roared Lupin springing forward .There was a loud crack and Harrys cloudy Patronus vanished along with the dementor he sank into a chair feeling as exhausted as if hed just run a mile and felt his legs shaking .Out of the corner of his eye he saw Professor Lupin forcing the boggart back into the packing case with his wand it had turned into a silvery orb again .Excellent !Lupin said striding over to where Harry sat .Excellent Harry !That was definitely a start !Can we have another go ?Just one more go ?Not now said Lupin firmly .Youve had enough for one night .Here He handed Harry a large bar of Honeydukes best chocolate .Eat the lot or Madam Pomfrey will be after my blood .Same time next week ?Okay said Harry .He took a bite of the chocolate and watched Lupin extinguishing the lamps that had rekindled with the disappearance of the dementor .A thought had just occurred to him .Professor Lupin ?he said .If you knew my dad you mustve known Sirius Black as well .Lupin turned very quickly .What gives you that idea ?he said sharply .Nothing I mean I just knew they were friends at Hogwarts too .Lupins face relaxed .Yes I knew him he said shortly .Or I thought I did .Youd better be off Harry its getting late .Harry left the classroom walking along the corridor and around a corner then took a detour behind a suit of armor and sank down on its plinth to finish his chocolate wishing he hadnt mentioned Black as Lupin was obviously not keen on the subject .Then Harrys thoughts wandered back to his mother and father .He felt drained and strangely empty even though he was so full of chocolate .Terrible though it was to hear his parents last moments replayed inside his head these were the only times Harry had heard their voices since he was a very small child .But hed never be able to produce a proper Patronus if he half wanted to hear his parents again .Theyre dead he told himself sternly .Theyre dead and listening to echoes of them wont bring them back .Youd better get a grip on yourself if you want that Quidditch Cup .He stood up crammed the last bit of chocolate into his mouth and headed back to Gryffindor Tower .Ravenclaw played Slytherin a week after the start of term .Slytherin won though narrowly .According to Wood this was good news for Gryffindor who would take second place if they beat Ravenclaw too .He therefore increased the number of team practices to five a week .This meant that with Lupins anti dementor classes which in themselves were more draining than six Quidditch practices Harry had just one night a week to do all his homework .Even so he wasnt showing the strain nearly as much as Hermione whose immense workload finally seemed to be getting to her .Every night without fail Hermione was to be seen in a corner of the common room several tables spread with books Arithmancy charts rune dictionaries diagrams of Muggles lifting heavy objects and file upon file of extensive notes she barely spoke to anybody and snapped when she was interrupted .Hows she doing it ?Ron muttered to Harry one evening as Harry sat finishing a nasty essay on Undetectable Poisons for Snape .Harry looked up .Hermione was barely visible behind a tottering pile of books .Doing what ?Getting to all her classes !Ron said .I heard her talking to Professor Vector that Arithmancy witch this morning .They were going on about yesterdays lesson but Hermione cantve been there because she was with us in Care of Magical Creatures !And Ernie McMillan told me shes never missed a Muggle Studies class but half of them are at the same time as Divination and shes never missed one of them either !Harry didnt have time to fathom the mystery of Hermiones impossible schedule at the moment he really needed to get on with Snapes essay .Two seconds later however he was interrupted again this time by Wood .Bad news Harry .Ive just been to see Professor McGonagall about the Firebolt .She er got a bit shirty with me .Told me Id got my priorities wrong .Seemed to think I cared more about winning the Cup than I do about you staying alive .Just because I told her I didnt care if it threw you off as long as you caught the Snitch first .Wood shook his head in disbelief .Honestly the way she was yelling at me .youd think Id said something terrible .Then I asked her how much longer she was going to keep it . .He screwed up his face and imitated Professor McGonagalls severe voice . ‘As long as necessary Wood .I reckon its time you ordered a new broom Harry .Theres an order form at the back of Which Broomstick .you could get a Nimbus Two Thousand and One like Malfoys got .Im not buying anything Malfoy thinks is good said Harry flatly .January faded imperceptibly into February with no change in the bitterly cold weather .The match against Ravenclaw was drawing nearer and nearer but Harry still hadnt ordered a new broom .He was now asking Professor McGonagall for news of the Firebolt after every Transfiguration lesson Ron standing hopefully at his shoulder Hermione rushing past with her face averted .No Potter you cant have it back yet Professor McGonagall told him the twelfth time this happened before hed even opened his mouth .Weve checked for most of the usual curses but Professor Flitwick believes the broom might be carrying a Hurling Hex .I shall tell you once weve finished checking it .Now please stop badgering me .To make matters even worse Harrys antidementor lessons were not going nearly as well as he had hoped .Several sessions on he was able to produce an indistinct silvery shadow every time the boggart dementor approached him but his Patronus was too feeble to drive the dementor away .All it did was hover like a semitransparent cloud draining Harry of energy as he fought to keep it there .Harry felt angry with himself guilty about his secret desire to hear his parents voices again .Youre expecting too much of yourself said Professor Lupin sternly in their fourth week of practice .For a thirteenyearold wizard even an indistinct Patronus is a huge achievement .You arent passing out anymore are you ?I thought a Patronus would charge the dementors down or something said Harry dispiritedly .Make them disappear The true Patronus does do that said Lupin .But youve achieved a great deal in a very short space of time .If the dementors put in an appearance at your next Quidditch match you will be able to keep them at bay long enough to get back to the ground .You said its harder if there are loads of them said Harry .I have complete confidence in you said Lupin smiling .Here youve earned a drink something from the Three Broomsticks .You wont have tried it before He pulled two bottles out of his briefcase .Butterbeer !said Harry without thinking .Yeah I like that stuff !Lupin raised an eyebrow .Oh Ron and Hermione brought me some back from Hogsmeade Harry lied quickly .I see said Lupin though he still looked slightly suspicious .Well lets drink to a Gryffindor victory against Ravenclaw !Not that Im supposed to take sides as a teacher .he added hastily .They drank the butterbeer in silence until Harry voiced something hed been wondering for a while .Whats under a dementors hood ?Professor Lupin lowered his bottle thoughtfully .Hmmm .well the only people who really know are in no condition to tell us .You see the dementor lowers its hood only to use its last and worst weapon .Whats that ?They call it the Dementors Kiss said Lupin with a slightly twisted smile .Its what dementors do to those they wish to destroy utterly .I suppose there must be some kind of mouth under there because they clamp their jaws upon the mouth of the victim and and suck out his soul .Harry accidentally spat out a bit of butterbeer .What they kill ?Oh no said Lupin .Much worse than that .You can exist without your soul you know as long as your brain and heart are still working .But you 11 have no sense of self anymore no memory no .anything .Theres no chance at all of recovery .Youll just exist .As an empty shell .And your soul is gone forever .lost .Lupin drank a little more butterbeer then said Its the fate that awaits Sirius Black .It was in the Daily Prophet this morning .The Ministry have given the dementors permission to perform it if they find him .Harry sat stunned for a moment at the idea of someone having their soul sucked out through their mouth .But then he thought of Black .He deserves it he said suddenly .You think so ?said Lupin lightly .Do you really think anyone deserves that ?Yes said Harry defiantly .For .for some things .He would have liked to have told Lupin about the conversation hed overheard about Black in the Three Broomsticks about Black betraying his mother and father but it would have involved revealing that hed gone to Hogsmeade without permission and he knew Lupin wouldnt be very impressed by that .So he finished his butterbeer thanked Lupin and left the History of Magic classroom .Harry half wished that he hadnt asked what was under a dementors hood the answer had been so horrible and he was so lost in unpleasant thoughts of what it would feel like to have your soul sucked out of you that he walked headlong into Professor McGonagall halfway up the stairs .Do watch where youre going Potter !Sorry Professor Ive just been looking for you in the Gryffindor common room .Well here it is weve done everything we could think of and there doesnt seem to be anything wrong with it at all .Youve got a very good friend somewhere Potter .Harrys jaw dropped .She was holding out his Firebolt and it looked as magnificent as ever .I can have it back ?Harry said weakly .Seriously ?Seriously said Professor McGonagall and she was actually smiling .I daresay youll need to get the feel of it before Saturdays match wont you ?And Potter do try and win wont you ?Or well be out of the running for the eighth year in a row as Professor Snape was kind enough to remind me only last night .Speechless Harry carried the Firebolt back upstairs toward Gryffindor Tower .As he turned a corner he saw Ron dashing toward him grinning from ear to ear .She gave it to you ?Excellent !Listen can I still have a go on it ?Tomorrow ?Yeah .anything .said Harry his heart lighter than it had been in a month .You know what we should make up with Hermione .She was only trying to help .Yeah all right said Ron .Shes in the common room now working for a change They turned into the corridor to Gryffindor Tower and saw Neville Longbottom pleading with Sir Cadogan who seemed to be refusing him entrance .I wrote them down !Neville was saying tearfully .But I mustve dropped them somewhere !A likely tale !roared Sir Cadogan .Then spotting Harry and Ron Good even my fine young yeomen !Come clap this loon in irons .He is trying to force entry to the chambers within !Oh shut up said Ron as he and Harry drew level with Neville .Ive lost the passwords !Neville told them miserably .I made him tell me what passwords he was going to use this week because he keeps changing them and now I dont know what Ive done with them !Oddsbodikins said Harry to Sir Cadogan who looked extremely disappointed and reluctantly swung forward to let them into the common room .There was a sudden excited murmur as every head turned and the next moment Harry was surrounded by people exclaiming over his Firebolt .Where d you get it Harry ?Will you let me have a go ?Have you ridden it yet Harry ?Ravenclawll have no chance theyre all on Cleansweep Sevens !Can I just hold it Harry ?After ten minutes or so during which the Firebolt was passed around and admired from every angle the crowd dispersed and Harry and Ron had a clear view of Hermione the only person who hadnt rushed over to them bent over her work and carefully avoiding their eyes .Harry and Ron approached her table and at last she looked up .I got it back said Harry grinning at her and holding up the Firebolt .See Hermione ?There wasnt anything wrong with it !said Ron .Well there might have been !said Hermione .I mean at least you know now that its safe !Yeah I suppose so said Harry .Id better put it upstairs Ill take it !said Ron eagerly .Ive got to give Scabbers his rat tonic .He took the Firebolt and holding it as if it were made of glass carried it away up the boys staircase .Can I sit down then ?Harry asked Hermione .I suppose so said Hermione moving a great stack of parchment off a chair .Harry looked around at the cluttered table at the long Arithmancy essay on which the ink was still glistening at the even longer Muggle Studies essay Explain Why Muggles Need Electricity and at the rune translation Hermione was now poring over .How are you getting through all this stuff ?Harry asked her .Oh well you know working hard said Hermione .Closeup Harry saw that she looked almost as tired as Lupin .Why dont you just drop a couple of subjects ?Harry asked watching her lifting books as she searched for her rune dictionary .I couldnt do that !said Hermione looking scandalized .Arithmancy looks terrible said Harry picking up a very complicatedlooking number chart .Oh no its wonderful !said Hermione earnestly .Its my favorite subject !Its But exactly what was wonderful about Arithmancy Harry never found out .At that precise moment a strangled yell echoed down the boys staircase .The whole common room fell silent staring petrified at the entrance .Then came hurried footsteps growing louder and louder and then Ron came leaping into view dragging with him a bedsheet .LOOK !he bellowed striding over to Hermiones table .LOOK !he yelled shaking the sheets in her face .Ron what ?SCABBERS !LOOK !SCABBERS !Hermione was leaning away from Ron looking utterly bewildered .Harry looked down at the sheet Ron was holding .There was something red on it .Something that looked horribly like BLOOD !Ron yelled into the stunned silence .HES GONE !AND YOU KNOW WHAT WAS ON THE FLOOR ?N no said Hermione in a trembling voice .Ron threw something down onto Hermione s rune translation .Hermione and Harry leaned forward .Lying on top of the weird spiky shapes were several long ginger cat hairs .GRYFFINDOR VERSUS RAVENCLAW It looked like the end of Ron and Hermiones friendship .Each was so angry with the other that Harry couldnt see how theyd ever make up .Ron was enraged that Hermione had never taken Crookshankss attempts to eat Scabbers seriously hadnt bothered to keep a close enough watch on him and was still trying to pretend that Crookshanks was innocent by suggesting that Ron look for Scabbers under all the boys beds .Hermione meanwhile maintained fiercely that Ron had no proof that Crookshanks had eaten Scabbers that the ginger hairs might have been there since Christmas and that Ron had been prejudiced against her cat ever since Crookshanks had landed on Rons head in the Magical Menagerie .Personally Harry was sure that Crookshanks had eaten Scabbers and when he tried to point out to Hermione that the evidence all pointed that way she lost her temper with Harry too .Okay side with Ron I knew you would !she said shrilly .First the Firebolt now Scabbers everythings my fault isnt it !Just leave me alone Harry Ive got a lot of work to do !Ron had taken the loss of his rat very hard indeed .Come on Ron you were always saying how boring Scabbers was said Fred bracingly And hes been offcolor for ages he was wasting away .It was probably better for him to snuff it quickly one swallow he probably didnt feel a thing .Fred said Ginny indignantly .All he did was eat and sleep Ron you said it yourself said George .He bit Goyle for us once !Ron said miserably .Remember Harry ?Yeah thats true said Harry .His finest hour said Fred unable to keep a straight face .Let the scar on Goyle s finger stand as a lasting tribute to his memory .Oh come on Ron get yourself down to Hogsmeade and buy a new rat whats the point of moaning ?In a lastditch attempt to cheer Ron up Harry persuaded him to come along to the Gryffindor teams final practice before the Ravenclaw match so that he could have a ride on the Firebolt after theyd finished .This did seem to take Rons mind off Scabbers for a moment Great !Can I try and shoot a few goals on it ?so they set off for the Quidditch field together .Madam Hooch who was still overseeing Gryffindor practices to keep an eye on Harry was just as impressed with the Firebolt as everyone else had been .She took it in her hands before takeoff and gave them the benefit of her professional opinion .Look at the balance on it !If the Nimbus series has a fault its a slight list to the tail end you often find they develop a drag after a few years .Theyve updated the handle too a bit slimmer than the Cleansweeps reminds me of the old Silver Arrows a pity theyve stopped making them .I learned to fly on one and a very fine old broom it was too .She continued in this vein for some time until Wood said Er Madam Hooch ?Is it okay if Harry has the Firebolt back ?We need to practice .Oh right here you are then Potter said Madam Hooch .Ill sit over here with Weasley .She and Ron left the field to sit in the stadium and the Gryffindor team gathered around Wood for his final instructions for tomorrows match .Harry Ive just found out who Ravenclaw is playing as Seeker .Its Cho Chang .Shes a fourth year and shes pretty good .I really hoped she wouldnt be fit shes had some problems with injuries .Wood scowled his displeasure that Cho Chang had made a full recovery then said On the other hand she rides a Comet Two Sixty which is going to look like a joke next to the Firebolt .He gave Harrys broom a look of fervent admiration then said Okay everyone lets go And at long last Harry mounted his Firebolt and kicked off from the ground .It was better than hed ever dreamed .The Firebolt turned with the lightest touch it seemed to obey his thoughts rather than his grip it sped across the field at such speed that the stadium turned into a green andgray blur Harry turned it so sharply that Alicia Spinnet screamed then he went into a perfectly controlled dive brushing the grassy field with his toes before rising thirty forty fifty feet into the air again Harry Im letting the Snitch out !Wood called .Harry turned and raced a Bludger toward the goal posts he outstripped it easily saw the Snitch dart out from behind Wood and within ten seconds had caught it tightly in his hand .The team cheered madly .Harry let the Snitch go again gave it a minutes head start then tore after it weaving in and out of the others he spotted it lurking near Katie Bells knee looped her easily and caught it again .It was the best practice ever the team inspired by the presence of the Firebolt in their midst performed their best moves faultlessly and by the time they hit the ground again Wood didnt have a single criticism to make which as George Weasley pointed out was a first .I cant see whats going to stop us tomorrow !said Wood .Not unless Harry youve sorted out your dementor problem havent you ?Yeah said Harry thinking of his feeble Patronus and wishing it were stronger .The dementors wont turn up again Oliver .Dumbledored go ballistic said Fred confidently .Well lets hope not said Wood .Anyway good work everyone .Lets get back to the tower .turn in early Im staying out for a bit Ron wants a go on the Firebolt Harry told Wood and while the rest of the team headed off to the locker rooms Harry strode over to Ron who vaulted the barrier to the stands and came to meet him .Madam Hooch had fallen asleep in her seat .Here you go said Harry handing Ron the Firebolt .Ron an expression of ecstasy on his face mounted the broom and zoomed off into the gathering darkness while Harry walked around the edge of the field watching him .Night had fallen before Madam Hooch awoke with a start told Harry and Ron off for not waking her and insisted that they go back to the castle .Harry shouldered the Firebolt and he and Ron walked out of the shadowy stadium discussing the Firebolts superbly smooth action its phenomenal acceleration and its pinpoint turning .They were halfway toward the castle when Harry glancing to his left saw something that made his heart turn over a pair of eyes gleaming out of the darkness .Harry stopped dead his heart banging against his ribs .Whats the matter ?said Ron .Harry pointed .Ron pulled out his wand and muttered Lumos A beam of light fell across the grass hit the bottom of a tree and illuminated its branches there crouching among the budding leaves was Crookshanks .Get out of here !Ron roared and he stooped down and seized a stone lying on the grass but before he could do anything else Crookshanks had vanished with one swish of his long ginger tail .See ?Ron said furiously chucking the stone down again .Shes still letting him wander about wherever he wants probably washing down Scabbers with a couple of birds now .Harry didnt say anything .He took a deep breath as relief seeped through him he had been sure for a moment that those eyes had belonged to the Grim .They set off for the castle once more .Slightly ashamed of his moment of panic Harry didnt say anything to Ron nor did he look left or right until they had reached the welllit entrance hall .Harry went down to breakfast the next morning with the rest of the boys in his dormitory all of whom seemed to think the Firebolt deserved a sort of guard of honor .As Harry entered the Great Hall heads turned in the direction of the Firebolt and there was a good deal of excited muttering .Harry saw with enormous satisfaction that the Slytherin team were all looking thunderstruck .Did you see his face ?said Ron gleefully looking back at Malfoy .He cant believe it !This is brilliant !Wood too was basking in the reflected glory of the Firebolt .Put it here Harry he said laying the broom in the middle of the table and carefully turning it so that its name faced upward .People from the Ravenclaw and Hufflepuff tables were soon coming over to look .Cedric Diggory came over to congratulate Harry on having acquired such a superb replacement for his Nimbus and Percys Ravenclaw girlfriend Penelope Clearwater asked if she could actually hold the Firebolt .Now now Penny no sabotage !said Percy heartily as she examined the Firebolt closely Penelope and I have got a bet on he told the team .Ten Galleons on the outcome of the match !Penelope put the Firebolt down again thanked Harry and went back to her table .Harry make sure you win said Percy in an urgent whisper .I havent got ten Galleons .Yes Im coming Penny !And he bustled off to join her in a piece of toast .Sure you can manage that broom Potter ?said a cold drawling voice .Draco Malfoy had arrived for a closer look Crabbe and Goyle right behind him .Yeah reckon so said Harry casually .Got plenty of special features hasnt it ?said Malfoy eyes glittering maliciously .Shame it doesnt come with a parachute in case you get too near a dementor .Crabbe and Goyle sniggered .Pity you cant attach an extra arm to yours Malfoy said Harry .Then it could catch the Snitch for you .The Gryffindor team laughed loudly .Malfoys pale eyes narrowed and he stalked away .They watched him rejoin the rest of the Slytherin team who put their heads together no doubt asking Malfoy whether Harrys broom really was a Firebolt .At a quarter to eleven the Gryffindor team set off for the locker rooms .The weather couldnt have been more different from their match against Hufflepuff .It was a clear cool day with a very light breeze there would be no visibility problems this time and Harry though nervous was starting to feel the excitement only a Quidditch match could bring .They could hear the rest of the school moving into the stadium beyond .Harry took off his black school robes removed his wand from his pocket and stuck it inside the Tshirt he was going to wear under his Quidditch robes .He only hoped he wouldnt need it .He wondered suddenly whether Professor Lupin was in the crowd watching .You know what weve got to do said Wood as they prepared to leave the locker rooms .If we lose this match were out of the running .Just just fly like you did in practice yesterday and well be okay !They walked out onto the field to tumultuous applause .The Ravenclaw team dressed in blue were already standing in the middle of the field .Their Seeker Cho Chang was the only girl on their team .She was shorter than Harry by about a head and Harry couldnt help noticing nervous as he was that she was extremely pretty .She smiled at Harry as the teams faced each other behind their captains and he felt a slight lurch in the region of his stomach that he didnt think had anything to do with nerves .Wood Davies shake hands Madam Hooch said briskly and Wood shook hands with the Ravenclaw Captain .Mount your brooms .on my whistle .three two one Harry kicked off into the air and the Firebolt zoomed higher and faster than any other broom he soared around the stadium and began squinting around for the Snitch listening all the while to the commentary which was being provided by the Weasley twins friend Lee Jordan .Theyre off and the big excitement this match is the Firebolt that Harry Potter is flying for Gryffindor .According to Which Broomstick the Firebolts going to be the broom of choice for the national teams at this years World Championship Jordan would you mind telling us whats going on in the match ?interrupted Professor McGonagalls voice .Right you are Professor just giving a bit of background information the Firebolt incidentally has a builtin autobrake and Jordan !Okay okay Gryffindor in possession Katie Bell of Gryffindor heading for goal .Harry streaked past Katie in the opposite direction gazing around for a glint of gold and noticing that Cho Chang was tailing him closely .She was undoubtedly a very good flier she kept cutting across him forcing him to change direction .Show her your acceleration Harry !Fred yelled as he whooshed past in pursuit of a Bludger that was aiming for Alicia .Harry urged the Firebolt forward as they rounded the Ravenclaw goal posts and Cho fell behind .Just as Katie succeeded in scoring the first goal of the match and the Gryffindor end of the field went wild he saw it the Snitch was close to the ground flitting near one of the barriers .Harry dived Cho saw what he was doing and tore after him Harry was speeding up excitement flooding him dives were his speciality he was ten feet away Then a Bludger hit by one of the Ravenclaw Beaters came pelting out of nowhere Harry veered off course avoiding it by an inch and in those few crucial seconds the Snitch had vanished .There was a great Ooooooh of disappointment from the Gryffindor supporters but much applause for their Beater from the Ravenclaw end .George Weasley vented his feelings by hitting the second Bludger directly at the offending Beater who was forced to roll right over in midair to avoid it .Gryffindor leads by eighty points to zero and look at that Firebolt go !Potters really putting it through its paces now see it turn Changs Comet is just no match for it the Firebolts precisionbalance is really noticeable in these long JORDAN !ARE YOU BEING PAID TO ADVERTISE FIREBOLTS ?GET ON WITH THE COMMENTARY !Ravenclaw was pulling back they had now scored three goals which put Gryffindor only fifty points ahead if Cho got the Snitch before him Ravenclaw would win .Harry dropped lower narrowly avoiding a Ravenclaw Chaser scanning the field frantically a glint of gold a flutter of tiny wings the Snitch was circling the Gryffindor goal post Harry accelerated eyes fixed on the speck of gold ahead but just then Cho appeared out of thin air blocking him HARRY THIS IS NO TIME TO BE A GENTLEMAN !Wood roared as Harry swerved to avoid a collision .KNOCK HER OFF HER BROOM IF YOU HAVE TO !Harry turned and caught sight of Cho she was grinning .The Snitch had vanished again .Harry turned his Firebolt upward and was soon twenty feet above the game .Out of the corner of his eye he saw Cho following him .Shed decided to mark him rather than search for the Snitch herself .All right then .if she wanted to tail him shed have to take the consequences .He dived again and Cho thinking hed seen the Snitch tried to follow Harry pulled out of the dive very sharply she hurtled downward he rose fast as a bullet once more and then saw it for the third time the Snitch was glittering way above the field at the Ravenclaw end .He accelerated so many feet below did Cho .He was winning gaining on the Snitch with every second then Oh !screamed Cho pointing .Distracted Harry looked down .Three dementors three tall black hooded dementors were looking up at him .He didnt stop to think .Plunging a hand down the neck of his robes he whipped out his wand and roared Expecto patronum .Something silverwhite something enormous erupted from the end of his wand .He knew it had shot directly at the dementors but didnt pause to watch his mind still miraculously clear he looked ahead he was nearly there .He stretched out the hand still grasping his wand and just managed to close his fingers over the small struggling Snitch .Madam Hoochs whistle sounded .Harry turned around in midair and saw six scarlet blurs bearing down on him next moment the whole team was hugging him so hard he was nearly pulled off his broom .Down below he could hear the roars of the Gryffindors in the crowd .Thats my boy !Wood kept yelling .Alicia Angelina and Katie had all kissed Harry Fred had him in a grip so tight Harry felt as though his head would come off .In complete disarray the team managed to make its way back to the ground .Harry got off his broom and looked up to see a gaggle of Gryffindor supporters sprinting onto the field Ron in the lead .Before he knew it he had been engulfed by the cheering crowd .Yes !Ron yelled yanking Harrys arm into the air .Yes !Yes !Well done Harry !said Percy looking delighted .Ten Galleons to me !Must find Penelope excuse me Good for you Harry !roared Seamus Finnigan .Ruddy brilliant !boomed Hagrid over the heads of the milling Gryffindors .That was quite some Patronus said a voice in Harrys ear .Harry turned around to see Professor Lupin who looked both shaken and pleased .The dementors didnt affect me at all !Harry said excitedly .I didnt feel a thing !That would be because they er werent dementors said Professor Lupin .Come and see He led Harry out of the crowd until they were able to see the edge of the field .You gave Mr Malfoy quite a fright said Lupin .Harry stared .Lying in a crumpled heap on the ground were Malfoy Crabbe Goyle and Marcus Flint the Slytherin team Captain all struggling to remove themselves from long black hooded robes .It looked as though Malfoy had been standing on Goyle s shoulders .Standing over them with an expression of the utmost fury on her face was Professor McGonagall .An unworthy trick !she was shouting .A low and cowardly attempt to sabotage the Gryffindor Seeker !Detention for all of you and fifty points from Slytherin !I shall be speaking to Professor Dumbledore about this make no mistake !Ah here he comes now !If anything could have set the seal on Gryffindors victory it was this .Ron who had fought his way through to Harrys side doubled up with laughter as they watched Malfoy fighting to extricate himself from the robe Goyles head still stuck inside it .Come on Harry !said George fighting his way over .Party !Gryffindor common room now !Right said Harry and feeling happier than he had in ages he and the rest of the team led the way still in their scarlet robes out of the stadium and back up to the castle .It felt as though they had already won the Quidditch Cup the party went on all day and well into the night .Fred and George Weasley disappeared for a couple of hours and returned with armfuls of bottles of butterbeer pumpkin fizz and several bags full of Honeydukes sweets .How did you do that ?squealed Angelina Johnson as George started throwing Peppermint Toads into the crowd .With a little help from Moony Wormtail Padfoot and Prongs Fred muttered in Harrys ear .Only one person wasnt joining in the festivities .Hermione incredibly was sitting in a corner attempting to read an enormous book entitled Home Life and Social Habits of British Muggles .Harry broke away from the table where Fred and George had started juggling butterbeer bottles and went over to her .Did you even come to the match ?he asked her .Of course I did said Hermione in a strangely high pitched voice not looking up .And Im very glad we won and I think you did really well but I need to read this by Monday .Come on Hermione come and have some food Harry said looking over at Ron and wondering whether he was in a good enough mood to bury the hatchet .I cant Harry .Ive still got four hundred and twenty two pages to read !said Hermione now sounding slightly hysterical .Anyway .She glanced over at Ron too .He doesnt want me to join in .There was no arguing with this as Ron chose that moment to say loudly If Scabbers hadnt just been eaten he could have had some of those Fudge Flies .He used to really like them Hermione burst into tears .Before Harry could say or do anything she tucked the enormous book under her arm and still sobbing ran toward the staircase to the girls dormitories and out of sight .Cant you give her a break ?Harry asked Ron quietly .No said Ron flatly .If she just acted like she was sorry but shell never admit shes wrong Hermione .Shes still acting like Scabbers has gone on vacation or something .The Gryffindor party ended only when Professor McGonagall turned up in her tartan dressing gown and hair net at one in the morning to insist that they all go to bed .Harry and Ron climbed the stairs to their dormitory still discussing the match .At last exhausted Harry climbed into bed twitched the hangings of his fourposter shut to block out a ray of moonlight lay back and felt himself almost instantly drifting off to sleep .He had a very strange dream .He was walking through a forest his Firebolt over his shoulder following something silvery white .It was winding its way through the trees ahead and he could only catch glimpses of it between the leaves .Anxious to catch up with it he sped up but as he moved faster so did his quarry .Harry broke into a run and ahead he heard hooves gathering speed .Now he was running flat out and ahead he could hear galloping .Then he turned a corner into a clearing and aaRRRRRRRRRRRRGGGGGHHHHH !NOOOOOOOOOOOOOOOOO !Harry woke as suddenly as though hed been hit in the face .Disoriented in the total darkness he fumbled with his hangings he could hear movements around him and Seamus Finnigans voice from the other side of the room Whats going on ?Harry thought he heard the dormitory door slam .At last finding the divide in his curtains he ripped them back and at the same moment Dean Thomas lit his lamp .Ron was sitting up in bed the hangings torn from one side a look of utmost terror on his face .Black !Sirius Black !With a knife !What ?Here !Just now !Slashed the curtains !Woke me up !You sure you werent dreaming Ron ?said Dean .Look at the curtains !I tell you he was here !They all scrambled out of bed Harry reached the dormitory door first and they sprinted back down the staircase .Doors opened behind them and sleepy voices called after them .Who shouted ?What re you doing ?The common room was lit with the glow of the dying fire still littered with the debris from the party .It was deserted .Are you sure you werent dreaming Ron ?Im telling you I saw him !Whats all the noise ?Professor McGonagall told us to go to bed !A few of the girls had come down their staircase pulling on dressing gowns and yawning .Boys too were reappearing .Excellent are we carrying on ?said Fred Weasley brightly .Everyone back upstairs !said Percy hurrying into the common room and pinning his Head Boy badge to his pajamas as he spoke .Perce Sirius Black !said Ron faintly .In our dormitory !With a knife !Woke me up !The common room went very still .Nonsense !said Percy looking startled .You had too much to eat Ron had a nightmare Im telling you Now really enoughs enough !Professor McGonagall was back .She slammed the portrait behind her as she entered the common room and stared furiously around .I am delighted that Gryffindor won the match but this is getting ridiculous !Percy I expected better of you !I certainly didnt authorize this Professor !said Percy puffing himself up indignantly .I was just telling them all to get back to bed !My brother Ron here had a nightmare IT WASNT A NIGHTMARE !Ron yelled .PROFESSOR I WOKE UP AND SIRIUS BLACK WAS STANDING OVER ME HOLDING A KNIFE !Professor McGonagall stared at him .Dont be ridiculous Weasley how could he possibly have gotten through the portrait hole ?Ask him !said Ron pointing a shaking finger at the back of Sir Cadogans picture .Ask him if he saw Glaring suspiciously at Ron Professor McGonagall pushed the portrait back open and went outside .The whole common room listened with bated breath .Sir Cadogan did you just let a man enter Gryffindor Tower ?Certainly good lady !cried Sir Cadogan .There was a stunned silence both inside and outside the common room .You you did ?said Professor McGonagall .But but the password !He had em !said Sir Cadogan proudly .Had the whole weeks my lady !Read em off a little piece of paper !Professor McGonagall pulled herself back through the portrait hole to face the stunned crowd .She was white as chalk .Which person she said her voice shaking which abysmally foolish person wrote down this weeks passwords and left them lying around ?There was utter silence broken by the smallest of terrified squeaks .Neville Longbottom trembling from head to fluffyslippered toes raised his hand slowly into the air .SNAPES GRUDGE No one in Gryffindor Tower slept that night .They knew that the castle was being searched again and the whole House stayed awake in the common room waiting to hear whether Black had been caught .Professor McGonagall came back at dawn to tell them that he had again escaped .Throughout the day everywhere they went they saw signs of tighter security Professor Flitwick could be seen teaching the front doors to recognize a large picture of Sirius Black Filch was suddenly bustling up and down the corridors boarding up everything from tiny cracks in the walls to mouse holes .Sir Cadogan had been fired .His portrait had been taken back to its lonely landing on the seventh floor and the Fat Lady was back .She had been expertly restored but was still extremely nervous and had agreed to return to her job only on condition that she was given extra protection .A bunch of surly security trolls had been hired to guard her .They paced the corridor in a menacing group talking in grunts and comparing the size of their clubs .Harry couldnt help noticing that the statue of the oneeyed witch on the third floor remained unguarded and unblocked .It seemed that Fred and George had been right in thinking that they and now Harry Ron and Hermione were the only ones who knew about the hidden passageway within it .Dyou reckon we should tell someone ?Harry asked Ron .We know hes not coming in through Honey dukes said Ron dismissively Wedve heard if the shop had been broken into .Harry was glad Ron took this view .If the oneeyed witch was boarded up too he would never be able to go into Hogsmeade again .Ron had become an instant celebrity .For the first time in his life people were paying more attention to him than to Harry and it was clear that Ron was rather enjoying the experience .Though still severely shaken by the nights events he was happy to tell anyone who asked what had happened with a wealth of detail . .I was asleep and I heard this ripping noise and I thought it was in my dream you know ?But then there was this draft .I woke up and one side of the hangings on my bed had been pulled down .I rolled over .and I saw him standing over me .like a skeleton with loads of filthy hair .holding this great long knife mustve been twelve inches .and he looked at me and I looked at him and then I yelled and he scampered .Why though ?Ron added to Harry as the group of secondyear girls who had been listening to his chilling tale departed .Why did he run ?Harry had been wondering the same thing .Why had Black having got the wrong bed not silenced Ron and proceeded to Harry ?Black had proved twelve years ago that he didnt mind murdering innocent people and this time he had been facing five unarmed boys four of whom were asleep .He mustve known hed have a job getting back out of the castle once youd yelled and woken people up said Harry thoughtfully .Hedve had to kill the whole House to get back through the portrait hole .then he wouldve met the teachers .Neville was in total disgrace .Professor McGonagall was so furious with him she had banned him from all future Hogsmeade visits given him a detention and forbidden anyone to give him the password into the tower .Poor Neville was forced to wait outside the common room every night for somebody to let him in while the security trolls leered unpleasantly at him .None of these punishments however came close to matching the one his grandmother had in store for him .Two days after Blacks breakin she sent Neville the very worst thing a Hogwarts student could receive over breakfast a Howler .The school owls swooped into the Great Hall carrying the mail as usual and Neville choked as a huge barn owl landed in front of him a scarlet envelope clutched in its beak .Harry and Ron who were sitting opposite him recognized the letter as a Howler at once Ron had got one from his mother the year before .Run for it Neville Ron advised .Neville didnt need telling twice .He seized the envelope and holding it before him like a bomb sprinted out of the hall while the Slytherin table exploded with laughter at the sight of him .They heard the Howler go off in the entrance hall Nevilles grandmothers voice magically magnified to a hundred times its usual volume shrieking about how he had brought shame on the whole family .Harry was too busy feeling sorry for Neville to notice immediately that he had a letter too .Hedwig got his attention by nipping him sharply on the wrist .Ouch !Oh thanks Hedwig .Harry tore open the envelope while Hedwig helped herself to some of Nevilles cornflakes .The note inside said Dear Harry and Ron How about having tea with me this afternoon round six ?Ill come and collect you from the castle .WAIT FOR ME IN THE ENTRANCE HALL YOURE NOT ALLOWED OUT ON YOUR OWN Cheers Hagrid He probably wants to hear all about Black !said Ron .So at six oclock that afternoon Harry and Ron left Gryffindor Tower passed the security trolls at a run and headed down to the entrance hall .Hagrid was already waiting for them .All right Hagrid !said Ron .Spose you want to hear about Saturday night do you ?Ive already heard all abou it said Hagrid opening the front doors and leading them outside .Oh said Ron looking slightly put out .The first thing they saw on entering Hagrids cabin was Buckbeak who was stretched out on top of Hagrids patchwork quilt his enormous wings folded tight to his body enjoying a large plate of dead ferrets .Averting his eyes from this unpleasant sight Harry saw a gigantic hairy brown suit and a very horrible yellowandorange tie hanging from the top of Hagrids wardrobe door .What are they for Hagrid ?said Harry .Buckbeaks case against the Committee fer the Disposal o Dangerous Creatures said Hagrid .This Friday .Him an mell be goin down ter London together .Ive booked two beds on the Knight Bus .Harry felt a nasty pang of guilt .He had completely forgotten that Buckbeaks trial was so near and judging by the uneasy look on Rons face he had too .They had also forgotten their promise about helping him prepare Buckbeaks defense the arrival of the Firebolt had driven it clean out of their minds .Hagrid poured them tea and offered them a plate of Bath buns but they knew better than to accept they had had too much experience with Hagrids cooking .I got somethin ter discuss with you two said Hagrid sitting himself between them and looking uncharacteristically serious .What ?said Harry .Hermione said Hagrid .What about her ?said Ron .Shes in a righ state thats what .Shes bin cornin down ter visit me a lot since Chris mas .Bin feelin lonely .Firs yeh weren talking to her because o the Firebolt now yer not talkin to her because her cat ate Scabbers !Ron interjected angrily .Because her cat acted like all cats do Hagrid continued doggedly .Shes cried a fair few times yeh know .Goin through a rough time at the moment .Bitten off moren she can chew if yeh ask me all the work shes tryin ter do .Still found time ter help me with Buckbeaks case mind .Shes found some really good stuff fer me .reckon hell stand a good chance now .Hagrid we shouldve helped as well sorry Harry began awkwardly .Im not blamin yeh !said Hagrid waving Harrys apology aside .Gawd knows yehve had enough ter be gettin on with .Ive seen yeh practicin Quidditch evry hour o the day an night but I gotta tell yeh I thought you twod value yer friend moren broomsticks or rats .Thas all .Harry and Ron exchanged uncomfortable looks .Really upset she was when Black nearly stabbed yeh Ron .Shes got her heart in the right place Hermione has an you two not talkin to her If shed just get rid of that cat Id speak to her again !Ron said angrily .But shes still sticking up for it !Its a maniac and she wont hear a word against it !Ah well people can be a bit stupid abou their pets said Hagrid wisely .Behind him Buckbeak spat a few ferret bones onto Hagrids pillow .They spent the rest of their visit discussing Gryffindors improved chances for the Quidditch Cup .At nine oclock Hagrid walked them back up to the castle .A large group of people was bunched around the bulletin board when they returned to the common room .Hogsmeade next weekend !said Ron craning over the heads to read the new notice .What dyou reckon ?he added quietly to Harry as they went to sit down .Well Filch hasnt done anything about the passage into Honeydukes .Harry said even more quietly .Harry !said a voice in his right ear .Harry started and looked around at Hermione who was sitting at the table right behind them and clearing a space in the wall of books that had been hiding her .Harry if you go into Hogsmeade again .Ill tell Professor McGonagall about that map !said Hermione .Can you hear someone talking Harry ?growled Ron not looking at Hermione .Ron how can you let him go with you ?After what Sirius Black nearly did to youl I mean it Ill tell So now youre trying to get Harry expelled !said Ron furiously .Havent you done enough damage this year ?Hermione opened her mouth to respond but with a soft hiss Crookshanks leapt onto her lap .Hermione took one frightened look at the expression on Rons face gathered up Crookshanks and hurried away toward the girls dormitories .So how about it ?Ron said to Harry as though there had been no interruption .Come on last time we went you didnt see anything .You havent even been inside Zonkos yet !Harry looked around to check that Hermione was well out of earshot .Okay he said .But Im taking the Invisibility Cloak this time .On Saturday morning Harry packed his Invisibility Cloak in his bag slipped the Marauders Map into his pocket and went down to breakfast with everyone else .Hermione kept shooting suspicious looks down the table at him but he avoided her eye and was careful to let her see him walking back up the marble staircase in the entrance hall as everybody else proceeded to the front doors .Bye !Harry called to Ron .See you when you get back !Ron grinned and winked .Harry hurried up to the third floor slipping the Marauders Map out of his pocket as he went .Crouching behind the oneeyed witch he smoothed it out .A tiny dot was moving in his direction .Harry squinted at it .The minuscule writing next to it read Neville Longbottom .Harry quickly pulled out his wand muttered Dissendium .and shoved his bag into the statue but before he could climb in himself Neville came around the corner .Harry !I forgot you werent going to Hogsmeade either !Hi Neville said Harry moving swiftly away from the statue and pushing the map back into his pocket .What are you up to ?Nothing shrugged Neville .Want a game of Exploding Snap ?Er not now I was going to go to the library and do that vampire essay for Lupin Ill come with you !said Neville brightly .I havent done it either !Er hang on yeah I forgot I finished it last night !Great you can help me !said Neville his round face anxious .I dont understand that thing about the garlic at all do they have to eat it or He broke off with a small gasp looking over Harrys shoulder .It was Snape .Neville took a quick step behind Harry .And what are you two doing here ?said Snape coming to a halt and looking from one to the other .An odd place to meet To Harrys immense disquiet Snapes black eyes flicked to the doorways on either side of them and then to the oneeyed witch .Were not meeting here said Harry .We just met here .Indeed ?said Snape .You have a habit of turning up in unexpected places Potter and you are very rarely there for no good reason .I suggest the pair of you return to Gryffindor Tower where you belong .Harry and Neville set off without another word .As they turned the corner Harry looked back .Snape was running one of his hands over the oneeyed witchs head examining it closely .Harry managed to shake Neville off at the Fat Lady by telling him the password then pretending hed left his vampire essay in the library and doubling back .Once out of sight of the security trolls he pulled out the map again and held it close to his nose .The third floor corridor seemed to be deserted .Harry scanned the map carefully and saw with a leap of relief that the tiny dot labeled Severus Snape was now back in its office .He sprinted back to the oneeyed witch opened her hump heaved himself inside and slid down to meet his bag at the bottom of the stone chute .He wiped the Marauders Map blank again then set off at a run .Harry completely hidden beneath the Invisibility Cloak emerged into the sunlight outside Honeydukes and prodded Ron in the back .Its me he muttered .What kept you ?Ron hissed .Snape was hanging around .They set off up the High Street .Where are you ?Ron kept muttering out of the corner of his mouth .Are you still there ?This feels weird .They went to the post office Ron pretended to be checking the price of an owl to Bill in Egypt so that Harry could have a good look around .The owls sat hooting softly down at him at least three hundred of them from Great Grays right down to tiny little Scops owls Local Deliveries Only which were so small they could have sat in the palm of Harrys hand .Then they visited Zonkos which was so packed with students Harry had to exercise great care not to tread on anyone and cause a panic .There were jokes and tricks to fulfill even Freds and Georges wildest dreams Harry gave Ron whispered orders and passed him some gold from under the cloak .They left Zonkos with their money bags considerably lighter than they had been on entering but their pockets bulging with Dungbombs Hiccup Sweets Frog Spawn Soap and a NoseBiting Teacup apiece .The day was fine and breezy and neither of them felt like staying indoors so they walked past the Three Broomsticks and climbed a slope to visit the Shrieking Shack the most haunted dwelling in Britain .It stood a little way above the rest of the village and even in daylight was slightly creepy with its boarded windows and dank overgrown garden .Even the Hogwarts ghosts avoid it said Ron as they leaned on the fence looking up at it .I asked Nearly Headless Nick .he says hes heard a very rough crowd lives here .No one can get in .Fred and George tried obviously but all the entrances are sealed shut .Harry feeling hot from their climb was just considering taking off the cloak for a few minutes when they heard voices nearby .Someone was climbing toward the house from the other side of the hill moments later Malfoy had appeared followed closely by Crabbe and Goyle .Malfoy was speaking . .should have an owl from Father any time now .He had to go to the hearing to tell them about my arm .about how I couldnt use it for three months .Crabbe and Goyle sniggered .I really wish I could hear that great hairy moron trying to defend himself .Theres no arm in im onest .that hippogriffs as good as dead Malfoy suddenly caught sight of Ron .His pale face split in a malevolent grin .What are you doing Weasley ?Malfoy looked up at the crumbling house behind Ron .Suppose youd love to live here wouldnt you Weasley ?Dreaming about having your own bedroom ?I heard your family all sleep in one room is that true ?Harry seized the back of Rons robes to stop him from leaping on Malfoy .Leave him to me he hissed in Rons ear .The opportunity was too perfect to miss .Harry crept silently around behind Malfoy Crabbe and Goyle bent down and scooped a large handful of mud out of the path .We were just discussing your friend Hagrid Malfoy said to Ron .Just trying to imagine what hes saying to the Committee for the Disposal of Dangerous Creatures .Dyou think hell cry when they cut off his hippogriffs SPLAT .Malfoys head jerked forward as the mud hit him his silverblond hair was suddenly dripping in muck .What the ?Ron had to hold onto the fence to keep himself standing he was laughing so hard .Malfoy Crabbe and Goyle spun stupidly on the spot staring wildly around Malfoy trying to wipe his hair clean .What was that ?Who did that ?Very haunted up here isnt it ?said Ron with the air of one commenting on the weather .Crabbe and Goyle were looking scared .Their bulging muscles were no use against ghosts .Malfoy was staring madly around at the deserted landscape .Harry sneaked along the path where a particularly sloppy puddle yielded some foulsmelling green sludge .SPLATTER .Crabbe and Goyle caught some this time .Goyle hopped furiously on the spot trying to rub it out of his small dull eyes .It came from over there !said Malfoy wiping his face and staring at a spot some six feet to the left of Harry .Crabbe blundered forward his long arms outstretched like a zombie .Harry dodged around him picked up a stick and lobbed it at Crabbe s back .Harry doubled up with silent laughter as Crabbe did a kind of pirouette in midair trying to see who had thrown it .As Ron was the only person Crabbe could see it was Ron he started toward but Harry stuck out his leg .Crabbe stumbled and his huge flat foot caught the hem of Harrys cloak .Harry felt a great tug then the cloak slid off his face .For a split second Malfoy stared at him .aaRGH !he yelled pointing at Harrys head .Then he turned tail and ran at breakneck speed back down the hill Crabbe and Goyle behind him .Harry tugged the cloak up again but the damage was done .Harry !Ron said stumbling forward and staring hopelessly at the point where Harry had disappeared youd better run for it !If Malfoy tells anyone youd better get back to the castle quick See you later said Harry and without another word he tore back down the path toward Hogsmeade .Would Malfoy believe what he had seen ?Would anyone believe Malfoy ?Nobody knew about the Invisibility Cloak nobody except Dumbledore .Harrys stomach turned over Dumbledore would know exactly what had happened if Malfoy said anything Back into Honeydukes back down the cellar steps across the stone floor through the trapdoor Harry pulled off the cloak tucked it under his arm and ran flat out along the passage .Malfoy would get back first .how long would it take him to find a teacher ?Panting a sharp pain in his side Harry didnt slow down until he reached the stone slide .He would have to leave the cloak where it was it was too much of a giveaway in case Malfoy had tipped off a teacher he hid it in a shadowy corner then started to climb fast as he could his sweaty hands slipping on the sides of the chute .He reached the inside of the witchs hump tapped it with his wand stuck his head through and hoisted himself out the hump closed and just as Harry jumped out from behind the statue he heard quick footsteps approaching .It was Snape .He approached Harry at a swift walk his black robes swishing then stopped in front of him .So he said .There was a look of suppressed triumph about him .Harry tried to look innocent all too aware of his sweaty face and his muddy hands which he quickly hid in his pockets .Come with me Potter said Snape .Harry followed him downstairs trying to wipe his hands clean on the inside of his robes without Snape noticing .They walked down the stairs to the dungeons and then into Snapes office .Harry had been in here only once before and he had been in very serious trouble then too .Snape had acquired a few more slimy horrible things in jars since last time all standing on shelves behind his desk glinting in the firelight and adding to the threatening atmosphere .Sit said Snape .Harry sat .Snape however remained standing .Mr Malfoy has just been to see me with a strange story Potter said Snape .Harry didnt say anything .He tells me that he was up by the Shrieking Shack when he ran into Weasley apparently alone .Still Harry didnt speak .Mr Malfoy states that he was standing talking to Weasley when a large amount of mud hit him in the back of the head .How do you think that could have happened ?Harry tried to look mildly surprised .I dont know Professor .Snapes eyes were boring into Harrys .It was exactly like trying to stare down a hippogriff .Harry tried hard not to blink .Mr Malfoy then saw an extraordinary apparition .Can you imagine what it might have been Potter ?No said Harry now trying to sound innocently curious .It was your head Potter .Floating in midair .There was a long silence .Maybe hed better go to Madam Pomfrey said Harry .If hes seeing things like What would your head have been doing in Hogsmeade Potter ?said Snape softly .Your head is not allowed in Hogsmeade .No part of your body has permission to be in Hogsmeade .I know that said Harry striving to keep his face free of guilt or fear .It sounds like Malfoys having hallucin Malfoy is not having hallucinations snarled Snape and he bent down a hand on each arm of Harrys chair so that their faces were a foot apart .If your head was in Hogsmeade so was the rest of you .Ive been up in Gryffindor Tower said Harry .Like you told Can anyone confirm that ?Harry didnt say anything .Snapes thin mouth curled into a horrible smile .So he said straightening up again .Everyone from the Minister of Magic downward has been trying to keep famous Harry Potter safe from Sirius Black .But famous Harry Potter is a law unto himself .Let the ordinary people worry about his safety !Famous Harry Potter goes where he wants to with no thought for the consequences .Harry stayed silent .Snape was trying to provoke him into telling the truth .He wasnt going to do it .Snape had no proof yet .How extraordinarily like your father you are Potter Snape said suddenly his eyes glinting .He too was exceedingly arrogant .A small amount of talent on the Quidditch field made him think he was a cut above the rest of us too .Strutting around the place with his friends and admirers .The resemblance between you is uncanny .My dad didnt strut said Harry before he could stop himself .And neither do I .Your father didnt set much store by rules either Snape went on pressing his advantage his thin face full of malice .Rules were for lesser mortals not Quidditch Cupwinners .His head was so swollen SHUT UP !Harry was suddenly on his feet .Rage such as he had not felt since his last night in Privet Drive was coursing through him .He didnt care that Snapes face had gone rigid the black eyes flashing dangerously .What did you say to me Potter ?I told you to shut up about my dad !Harry yelled .I know the truth all right ?He saved your life !Dumbledore told me !You wouldnt even be here if it wasnt for my dad !Snapes sallow skin had gone the color of sour milk .And did the headmaster tell you the circumstances in which your father saved my life ?he whispered .Or did he consider the details too unpleasant for precious Potters delicate ears ?Harry bit his lip .He didnt know what had happened and didnt want to admit it but Snape seemed to have guessed the truth .I would hate for you to run away with a false idea of your father Potter he said a terrible grin twisting his face .Have you been imagining some act of glorious heroism ?Then let me correct you your saintly father and his friends played a highly amusing joke on me that would have resulted in my death if your father hadnt got cold feet at the last moment .There was nothing brave about what he did .He was saving his own skin as much as mine .Had their joke succeeded he would have been expelled from Hogwarts .Snapes uneven yellowish teeth were bared .Turn out your pockets Potter !he spat suddenly .Harry didnt move .There was a pounding in his ears .Turn out your pockets or we go straight to the headmaster !Pull them out Potter !Cold with dread Harry slowly pulled out the bag of Zonkos tricks and the Marauders Map .Snape picked up the Zonkos bag .Ron gave them to me said Harry praying hed get a chance to tip Ron off before Snape saw him .He brought them back from Hogsmeade last time Indeed ?And youve been carrying them around ever since ?How very touching .and what is this ?Snape had picked up the map .Harry tried with all his might to keep his face impassive .Spare bit of parchment he said with a shrug .Snape turned it over his eyes on Harry .Surely you dont need such a very old piece of parchment ?he said .Why dont I just throw this away ?His hand moved toward the fire .No !Harry said quickly .So !said Snape his long nostrils quivering .Is this another treasured gift from Mr Weasley ?Or is it something else ?A letter perhaps written in invisible ink ?Or instructions to get into Hogsmeade without passing the dementors ?Harry blinked .Snape s eyes gleamed .Let me see let me see .he muttered taking out his wand and smoothing the map out on his desk .Reveal your secret !he said touching the wand to the parchment .Nothing happened .Harry clenched his hands to stop them from shaking .Show yourself !Snape said tapping the map sharply .It stayed blank .Harry was taking deep calming breaths .Professor Severus Snape master of this school commands you to yield the information you conceal !Snape said hitting the map with his wand .As though an invisible hand were writing upon it words appeared on the smooth surface of the map .Mr Moony presents his compliments to Professor Snape and begs him to keep his abnormally large nose out of other peoples business .Snape froze .Harry stared dumbstruck at the message .But the map didnt stop there .More writing was appearing beneath the first .Mr Prongs agrees with Mr Moony and would like to add that Professor Snape is an ugly git .It would have been very funny if the situation hadnt been so serious .And there was more .Mr Padfoot would like to register his astonishment that an idiot like that ever became a professor .Harry closed his eyes in horror .When hed opened them the map had had its last word .Mr Wormtail bids Professor Snape good day and advises him to wash his hair the slimeball .Harry waited for the blow to fall .So .said Snape softly .Well see about this .He strode across to his fire seized a fistful of glittering powder from ajar on the fireplace and threw it into the flames .Lupin !Snape called into the fire .I want a word !Utterly bewildered Harry stared at the fire .A large shape had appeared in it revolving very fast .Seconds later Professor Lupin was clambering out of the fireplace brushing ash off his shabby robes .You called Severus ?said Lupin mildly .I certainly did said Snape his face contorted with fury as he strode back to his desk .I have just asked Potter to empty his pockets .He was carrying this .Snape pointed at the parchment on which the words of Messrs .Moony Wormtail Padfoot and Prongs were still shining .An odd closed expression appeared on Lupins face .Well ?said Snape .Lupin continued to stare at the map .Harry had the impression that Lupin was doing some very quick thinking .Well ?said Snape again .This parchment is plainly full of Dark Magic .This is supposed to be your area of expertise Lupin .Where do you imagine Potter got such a thing ?Lupin looked up and by the merest halfglance in Harrys direction warned him not to interrupt .Full of Dark Magic ?he repeated mildly .Do you really think so Severus ?It looks to me as though it is merely a piece of parchment that insults anybody who reads it .Childish but surely not dangerous ?I imagine Harry got it from a joke shop Indeed ?said Snape .His jaw had gone rigid with anger .You think a joke shop could supply him with such a thing ?You dont think it more likely that he got it directly from the manufacturers ?Harry didnt understand what Snape was talking about .Nor apparently did Lupin .You mean by Mr Wormtail or one of these people ?he said .Harry do you know any of these men ?No said Harry quickly .You see Severus ?said Lupin turning back to Snape .It looks like a Zonko product to me Right on cue Ron came bursting into the office .He was completely out of breath and stopped just short of Snape s desk clutching the stitch in his chest and trying to speak .I gave Harry that stuff he choked .Bought it .in Zonko s .ages ago .Well !said Lupin clapping his hands together and looking around cheerfully .That seems to clear that up !Severus Ill take this back shall I ?He folded the map and tucked it inside his robes .Harry Ron come with me I need a word about my vampire essay excuse us Severus Harry didnt dare look at Snape as they left his office .He Ron and Lupin walked all the way back into the entrance hall before speaking .Then Harry turned to Lupin .Professor I I dont want to hear explanations said Lupin shortly .He glanced around the empty entrance hall and lowered his voice .I happen to know that this map was confiscated by Mr Filch many years ago .Yes I know its a map he said as Harry and Ron looked amazed .I dont want to know how it fell into your possession .I am however astounded that you didnt hand it in .Particularly after what happened the last time a student left information about the castle lying around .And I cant let you have it back Harry .Harry had expected that and was too keen for explanations to protest .Why did Snape think Id got it from the manufacturers ?Because .Lupin hesitated because these mapmakers would have wanted to lure you out of school .Theyd think it extremely entertaining .Do you know them ?said Harry impressed .Weve met he said shortly .He was looking at Harry more seriously than ever before .Dont expect me to cover up for you again Harry .I cannot make you take Sirius Black seriously .But I would have thought that what you have heard when the dementors draw near you would have had more of an effect on you .Your parents gave their lives to keep you alive Harry .A poor way to repay them gambling their sacrifice for a bag of magic tricks .He walked away leaving Harry feeling worse by far than he had at any point in Snape s office .Slowly he and Ron mounted the marble staircase .As Harry passed the oneeyed witch he remembered the Invisibility Cloak it was still down there but he didnt dare go and get it .Its my fault said Ron abruptly .I persuaded you to go .Lupins right it was stupid we shouldntve done it He broke off they reached the corridor where the security trolls were pacing and Hermione was walking toward them .One look at her face convinced Harry that she had heard what had happened .His heart plummeted had she told Professor McGonagall ?Come to have a good gloat ?said Ron savagely as she stopped in front of them .Or have you just been to tell on us ?No said Hermione .She was holding a letter in her hands and her lip was trembling .I just thought you ought to know .Hagrid lost his case .Buckbeak is going to be executed .THE QUIDDITCH FINAL He he sent me this Hermione said holding out the letter .Harry took it .The parchment was damp and enormous teardrops had smudged the ink so badly in places that it was very difficult to read .Dear Hermione We lost Im allowed to bring him back to Hogwarts .Execution date to be fixed .Beaky has enjoyed London .I wont forget all the help you gave us .Hagrid They cant do this said Harry .They cant .Buckbeak isnt dangerous .Malfoys dads frightened the Committee into it said Hermione wiping her eyes .You know what hes like .Theyre a bunch of doddery old fools and they were scared .Therell be an appeal though there always is .Only I cant see any hope .Nothing will have changed .Yeah it will said Ron fiercely .You wont have to do all the work alone this time Hermione .Ill help .Oh Ron !Hermione flung her arms around Rons neck and broke down completely .Ron looking quite terrified patted her very awkwardly on the top of the head .Finally Hermione drew away .Ron Im really really sorry about Scabbers .she sobbed .Oh well he was old said Ron looking thoroughly relieved that she had let go of him .And he was a bit useless .You never know Mum and Dad might get me an owl now .The safety measures imposed on the students since Blacks second breakin made it impossible for Harry Ron and Hermione to go and visit Hagrid in the evenings .Their only chance of talking to him was during Care of Magical Creatures lessons .He seemed numb with shock at the verdict .Sall my fault .Got all tonguetied .They was all sittin there in black robes an I kep droppin me notes and forgettin all them dates yeh looked up fer me Hermione .An then Lucius Malfoy stood up an said his bit and the Committee jus did exacly what he told em .Theres still the appeal !said Ron fiercely .Dont give up yet were working on it !They were walking back up to the castle with the rest of the class .Ahead they could see Malfoy who was walking with Crabbe and Goyle and kept looking back laughing derisively .Sno good Ron said Hagrid sadly as they reached the castle steps .That Committees in Lucius Malfoy s pocket .Im jus gonna make sure the rest o Beakys time is the happiest hes ever had .I owe him that .Hagrid turned around and hurried back toward his cabin his face buried in his handkerchief .Look at him blubber !Malfoy Crabbe and Goyle had been standing just inside the castle doors listening .Have you ever seen anything quite as pathetic ?said Malfoy .And hes supposed to be our teacher !Harry and Ron both made furious moves toward Malfoy but Hermione got there first SMACK !She had slapped Malfoy across the face with all the strength she could muster .Malfoy staggered .Harry Ron Crabbe and Goyle stood flabbergasted as Hermione raised her hand again .Dont you dare call Hagrid pathetic you foul you evil Hermione !said Ron weakly and he tried to grab her hand as she swung it back .Get off Ron !Hermione pulled out her wand .Malfoy stepped backward .Crabbe and Goyle looked at him for instructions thoroughly bewildered .Cmon Malfoy muttered and in a moment all three of them had disappeared into the passageway to the dungeons .Hermionel Ron said again sounding both stunned and impressed .Harry youd better beat him in the Quidditch final !Hermione said shrilly .You just better had because I cant stand it if Slytherin wins !Were due in Charms said Ron still goggling at Hermione .Wed better go .They hurried up the marble staircase toward Professor Flitwicks classroom .Youre late boys !said Professor Flitwick reprovingly as Harry opened the classroom door .Come along quickly wands out were experimenting with Cheering Charms today weve already divided into pairs Harry and Ron hurried to a desk at the back and opened their bags .Ron looked behind him .Wheres Hermione gone ?Harry looked around too .Hermione hadnt entered the classroom yet Harry knew she had been right next to him when he had opened the door .Thats weird said Harry staring at Ron .Maybe maybe she went to the bathroom or something ?But Hermione didnt turn up all lesson .She couldve done with a Cheering Charm on her too said Ron as the class left for lunch all grinning broadly the Cheering Charms had left them with a feeling of great contentment .Hermione wasnt at lunch either .By the time they had finished their apple pie the aftereffects of the Cheering Charms were wearing off and Harry and Ron had started to get slightly worried .You dont think Malfoy did something to her ?Ron said anxiously as they hurried upstairs toward Gryffindor Tower .They passed the security trolls gave the Fat Lady the password Flibbertigibbet and scrambled through the portrait hole into the common room .Hermione was sitting at a table fast asleep her head resting on an open Arithmancy book .They went to sit down on either side of her .Harry prodded her awake .Wh what ?said Hermione waking with a start and staring wildly around .Is it time to go ?W which lesson have we got now ?Divination but its not for another twenty minutes said Harry .Hermione why didnt you come to Charms ?What ?Oh no !Hermione squeaked .I forgot to go to Charms !But how could you forget ?said Harry .You were with us till we were right outside the classroom !I dont believe it !Hermione wailed .Was Professor Flitwick angry ?Oh it was Malfoy I was thinking about him and I lost track of things !You know what Hermione ?said Ron looking down at the enormous Arithmancy book Hermione had been using as a pillow .I reckon youre cracking up .Youre trying to do too much .No Im not !said Hermione brushing her hair out of her eyes and staring hopelessly around for her bag .I just made a mistake thats all !Id better go and see Professor Flitwick and say sorry .Ill see you in Divination !Hermione joined them at the foot of the ladder to Professor Trelawneys classroom twenty minutes later looking extremely harassed .I cant believe I missed Cheering Charms !And I bet they come up in our exams Professor Flitwick hinted they might !Together they climbed the ladder into the dim stifling tower room .Glowing on every little table was a crystal ball full of pearly white mist .Harry Ron and Hermione sat down together at the same rickety table .I thought we werent starting crystal balls until next term Ron muttered casting a wary eye around for Professor Trelawney in case she was lurking nearby .Dont complain this means weve finished palmistry Harry muttered back .I was getting sick of her flinching every time she looked at my hands .Good day to you !said the familiar misty voice and Professor Trelawney made her usual dramatic entrance out of the shadows .Parvati and Lavender quivered with excitement their faces lit by the milky glow of their crystal ball .I have decided to introduce the crystal ball a little earlier than I had planned said Professor Trelawney sitting with her back to the fire and gazing around .The fates have informed me that your examination in June will concern the Orb and I am anxious to give you sufficient practice .Hermione snorted .Well honestly . ‘the fates have informed her .who sets the exam ?She does !What an amazing prediction !she said not troubling to keep her voice low .Harry and Ron choked back laughs .It was hard to tell whether Professor Trelawney had heard them as her face was hidden in shadow .She continued however as though she had not .Crystal gazing is a particularly refined art she said dreamily .I do not expect any of you to See when first you peer into the Orbs infinite depths .We shall start by practicing relaxing the conscious mind and external eyes Ron began to snigger uncontrollably and had to stuff his fist in his mouth to stifle the noise so as to clear the Inner Eye and the superconscious .Perhaps if we are lucky some of you will See before the end of the class .And so they began .Harry at least felt extremely foolish staring blankly at the crystal ball trying to keep his mind empty when thoughts such as this is stupid kept drifting across it .It didnt help that Ron kept breaking into silent giggles and Hermione kept tutting .Seen anything yet ?Harry asked them after a quarter of an hours quiet crystal gazing .Yeah theres a burn on this table said Ron pointing .Someones spilled their candle .This is such a waste of time Hermione hissed .I could be practicing something useful .I could be catching up on Cheering Charms Professor Trelawney rustled past .Would anyone like me to help them interpret the shadowy portents within their Orb ?she murmured over the clinking of her bangles .I dont need help Ron whispered .Its obvious what this means .Theres going to be loads of fog tonight .Both Harry and Hermione burst out laughing .Now really !said Professor Trelawney as everyones heads turned in their direction .Parvati and Lavender were looking scandalized .You are disturbing the clairvoyant vibrations !She approached their table and peered into their crystal ball .Harry felt his heart sinking .He was sure he knew what was coming There is something here !Professor Trelawney whispered lowering her face to the ball so that it was reflected twice in her huge glasses .Something moving .but what is it ?Harry was prepared to bet everything he owned including his Firebolt that it wasnt good news whatever it was .And sure enough My dear .Professor Trelawney breathed gazing up at Harry .It is here plainer than ever before .my dear stalking toward you growing ever closer .the Gr Oh for goodness sake !said Hermione loudly .Not that ridiculous Grim again Professor Trelawney raised her enormous eyes to Hermione s face .Parvati whispered something to Lavender and they both glared at Hermione too .Professor Trelawney stood up surveying Hermione with unmistakable anger .I am sorry to say that from the moment you have arrived in this class my dear it has been apparent that you do not have what the noble art of Divination requires .Indeed I dont remember ever meeting a student whose mind was so hopelessly mundane .There was a moments silence .Then Fine !said Hermione suddenly getting up and cramming Unfogging the Future back into her bag .Fine !she repeated swinging the bag over her shoulder and almost knocking Ron off his chair .I give up !Im leaving !And to the whole classs amazement Hermione strode over to the trapdoor kicked it open and climbed down the ladder out of sight .It took a few minutes for the class to settle down again .Professor Trelawney seemed to have forgotten all about the Grim .She turned abruptly from Harry and Rons table breathing rather heavily as she tugged her gauzy shawl more closely to her .Ooooo !said Lavender suddenly making everyone start .Oooooo Professor Trelawney Ive just remembered !You saw her leaving didnt you ?Didnt you Professor ? ‘Around Easter one of our number will leave us forever .You said it ages ago Professor !Professor Trelawney gave her a dewy smile .Yes my dear I did indeed know that Miss Granger would be leaving us .One hopes however that one might have mistaken the Signs .The Inner Eye can be a burden you know .Lavender and Parvati looked deeply impressed and moved over so that Professor Trelawney could join their table instead .Some day Hermiones having eh ?Ron muttered to Harry looking awed .Yeah .Harry glanced into the crystal ball but saw nothing but swirling white mist .Had Professor Trelawney really seen the Grim again ?Would he ?The last thing he needed was another nearfatal accident with the Quidditch final drawing ever nearer .The Easter holidays were not exactly relaxing .The third years had never had so much homework .Neville Longbottom seemed close to a nervous collapse and he wasnt the only one .Call this a holiday !Seamus Finnigan roared at the common room one afternoon .The exams are ages away whatre they playing at ?But nobody had as much to do as Hermione .Even without Divination she was taking more subjects than anybody else .She was usually last to leave the common room at night first to arrive at the library the next morning she had shadows like Lupins under her eyes and seemed constantly close to tears .Ron had taken over responsibility for Buckbeaks appeal .When he wasnt doing his own work he was poring over enormously thick volumes with names like The Handbook of Hippogriff Psychology and Fowl or Foul ?A Study of Hippogriff Brutality .He was so absorbed he even forgot to be horrible to Crookshanks .Harry meanwhile had to fit in his homework around Quidditch practice every day not to mention endless discussions of tactics with Wood .The Gryffindor Slytherin match would take place on the first Saturday after the Easter holidays .Slytherin was leading the tournament by exactly two hundred points .This meant as Wood constantly reminded his team that they needed to win the match by more than that amount to win the Cup .It also meant that the burden of winning fell largely on Harry because capturing the Snitch was worth one hundred and fifty points .So you must catch it only if were more than fifty points up Wood told Harry constantly .Only if were more than fifty points up Harry or we win the match but lose the Cup .Youve got that havent you ?You must catch the Snitch only if were I KNOW OLIVER !Harry yelled .The whole of Gryffindor House was obsessed with the coming match .Gryffindor hadnt won the Quidditch Cup since the legendary Charlie Weasley Rons second oldest brother had been Seeker .But Harry doubted whether any of them even Wood wanted to win as much as he did .The enmity between Harry and Malfoy was at its highest point ever .Malfoy was still smarting about the mudthrowing incident in Hogsmeade and was even more furious that Harry had somehow wormed his way out of punishment .Harry hadnt forgotten Malfoys attempt to sabotage him in the match against Ravenclaw but it was the matter of Buckbeak that made him most determined to beat Malfoy in front of the entire school .Never in anyones memory had a match approached in such a highly charged atmosphere .By the time the holidays were over tension between the two teams and their Houses was at the breaking point .A number of small scuffles broke out in the corridors culminating in a nasty incident in which a Gryffindor fourth year and a Slytherin sixth year ended up in the hospital wing with leeks sprouting out of their ears .Harry was having a particularly bad time of it .He couldnt walk to class without Slytherins sticking out their legs and trying to trip him up Crabbe and Goyle kept popping up wherever he went and slouching away looking disappointed when they saw him surrounded by people .Wood had given instructions that Harry should be accompanied everywhere he went in case the Slytherins tried to put him out of action .The whole of Gryffindor House took up the challenge enthusiastically so that it was impossible for Harry to get to classes on time because he was surrounded by a vast chattering crowd .Harry was more concerned for his Firebolts safety than his own .When he wasnt flying it he locked it securely in his trunk and frequently dashed back up to Gryffindor Tower at break times to check that it was still there .All usual pursuits were abandoned in the Gryffindor common room the night before the match .Even Hermione had put down her books .I cant work I cant concentrate she said nervously .There was a great deal of noise .Fred and George Weasley were dealing with the pressure by being louder and more exuberant than ever .Oliver Wood was crouched over a model of a Quidditch field in the corner prodding little figures across it with his wand and muttering to himself .Angelina Alicia and Katie were laughing at Freds and Georges jokes .Harry was sitting with Ron and Hermione removed from the center of things trying not to think about the next day because every time he did he had the horrible sensation that something very large was fighting to get out of his stomach .Youre going to be fine Hermione told him though she looked positively terrified .Youve got a Firebolti said Ron .Yeah .said Harry his stomach writhing .It came as a relief when Wood suddenly stood up and yelled Team !Bed !Harry slept badly .First he dreamed that he had overslept and that Wood was yelling Where were you ?We had to use Neville instead !Then he dreamed that Malfoy and the rest of the Slytherin team arrived for the match riding dragons .He was flying at breakneck speed trying to avoid a spurt of flames from Malfoy s steeds mouth when he realized he had forgotten his Firebolt .He fell through the air and woke with a start .It was a few seconds before Harry remembered that the match hadnt taken place yet that he was safe in bed and that the Slytherin team definitely wouldnt be allowed to play on dragons .He was feeling very thirsty .Quietly as he could he got out of his four poster and went to pour himself some water from the silver jug beneath the window .The grounds were still and quiet .No breath of wind disturbed the treetops in the Forbidden Forest the Whomping Willow was motionless and innocent looking .It looked as though the conditions for the match would be perfect .Harry set down his goblet and was about to turn back to his bed when something caught his eye .An animal of some kind was pacross the silvery lawn .Harry dashed to his bedside table snatched up his glasses and put them on then hurried back to the window .It couldnt be the Grim not now not right before the match He peered out at the grounds again and after a minutes frantic searching spotted it .It was skirting the edge of the forest now .It wasnt the Grim at all .it was a cat .Harry clutched the window ledge in relief as he recognized the bottlebrush tail .It was only Crookshanks .Or was it only Crookshanks ?Harry squinted pressing his nose flat against the glass .Crookshanks seemed to have come to a halt .Harry was sure he could see something else moving in the shadow of the trees too .And just then it emerged a gigantic shaggy black dog moving stealthily across the lawn Crookshanks trotting at its side .Harry stared .What did this mean ?If Crookshanks could see the dog as well how could it be an omen of Harrys death ?Ron !Harry hissed .Ron !Wake up !Huh ?I need you to tell me if you can see something !Sall dark Harry Ron muttered thickly .Whatre you on about ?Down here Harry looked quickly back out of the window .Crookshanks and the dog had vanished .Harry climbed onto the windowsill to look right down into the shadows of the castle but they werent there .Where had they gone ?A loud snore told him Ron had fallen asleep again .Harry and the rest of the Gryffindor team entered the Great Hall the next day to enormous applause .Harry couldnt help grinning broadly as he saw that both the Ravenclaw and Hufflepuff tables were applauding them too .The Slytherin table hissed loudly as they passed .Harry noticed that Malfoy looked even paler than usual .Wood spent the whole of breakfast urging his team to eat while touching nothing himself .Then he hurried them off to the field before anyone else had finished so they could get an idea of the conditions .As they left the Great Hall everyone applauded again .Good luck Harry !called Cho .Harry felt himself blushing .Okay no wind to speak of suns a bit bright that could impair your vision watch out for it grounds fairly hard good thatll give us a fast kickoff ?Wood paced the field staring around with the team behind him .Finally they saw the front doors of the castle open in the distance and the rest of the school spilling onto the lawn .Locker rooms said Wood tersely .None of them spoke as they changed into their scarlet robes .Harry wondered if they were feeling like he was as though hed eaten something extremely wriggly for breakfast .In what seemed like no time at all Wood was saying Okay its time lets go They walked out onto the field to a tidal wave of noise .Threequarters of the crowd was wearing scarlet rosettes waving scarlet flags with the Gryffindor lion upon them or brandishing banners with slogans like GO GRYFFINDOR !and LIONS FOR THE CUP !Behind the Slytherin goal posts however two hundred people were wearing green the silver serpent of Slytherin glittered on their flags and Professor Snape sat in the very front row wearing green like everyone else and a very grim smile .And here are the Gryffindors !yelled Lee Jordan who was acting as commentator as usual .Potter Bell Johnson Spinnet Weasley Weasley and Wood .Widely acknowledged as the best team Hogwarts has seen in a good few years Lees comments were drowned by a tide of boos from the Slytherin end .And here come the Slytherin team led by Captain Flint .Hes made some changes in the lineup and seems to be going for size rather than skill More boos from the Slytherin crowd .Harry however thought Lee had a point .Malfoy was easily the smallest person on the Slytherin team the rest of them were enormous .Captains shake hands !said Madam Hooch .Flint and Wood approached each other and grasped each others hand very tightly it looked as though each was trying to break the others fingers .Mount your brooms !said Madam Hooch .Three .two .one .The sound of her whistle was lost in the roar from the crowd as fourteen brooms rose into the air .Harry felt his hair fly back off his forehead his nerves left him in the thrill of the flight he glanced around saw Malfoy on his tail and sped off in search of the Snitch .And its Gryffindor in possession Alicia Spinnet of Gryffindor with the Quaffle heading straight for the Slytherin goal posts looking good Alicia !Argh no Quaffle intercepted by Warrington Warrington of Slytherin tearing up the field WHAM !nice Bludger work there by George Weasley Warrington drops the Quaffle its caught by Johnson Gryffindor back in possession come on Angelina nice swerve around Montague duck Angelina thats a Bludger SHE SCORES !TENZERO TO GRYFFINDOR !Angelina punched the air as she soared around the end of the field the sea of scarlet below was screaming its delight OUCH !Angelina was nearly thrown from her broom as Marcus Flint went smashing into her .Sorry !said Flint as the crowd below booed .Sorry didnt see her !A moment later Fred Weasley chucked his Beaters club at the back of Flints head .Flints nose smashed into the handle of his broom and began to bleed .That will do !shrieked Madam Hooch zooming between them .Penalty shot to Gryffindor for an unprovoked attack on their Chaser !Penalty shot to Slytherin for deliberate damage to their Chaser !Come off it Miss !howled Fred but Madam Hooch blew her whistle and Alicia flew forward to take the penalty .Come on Alicia !yelled Lee into the silence that had descended on the crowd .YES !SHES BEATEN THE KEEPER !TWENTYZERO TO GRYFFINDOR !Harry turned the Firebolt sharply to watch Flint still bleeding freely fly forward to take the Slytherin penalty .Wood was hovering in front of the Gryffindor goal posts his jaw clenched .Course Woods a superb Keeper !Lee Jordan told the crowd as Flint waited for Madam Hoochs whistle .Superb !Very difficult to pass very difficult indeed YES !I DONT BELIEVE IT !HES SAVED IT !Relieved Harry zoomed away gazing around for the Snitch but still making sure he caught every word of Lees commentary .It was essential that he hold Malfoy off the Snitch until Gryffindor was more than fifty points up Gryffindor in possession no Slytherin in possession no !Gryffindor back in possession and its Katie Bell Katie Bell for Gryffindor with the Quaffle shes streaking up the field THAT WAS DELIBERATE !Montague a Slytherin Chaser had swerved in front of Katie and instead of seizing the Quaffle had grabbed her head .Katie cartwheeled in the air managed to stay on her broom but dropped the Quaffle .Madam Hoochs whistle rang out again as she soared over to Montague and began shouting at him .A minute later Katie had put another penalty past the Slytherin Seeker .THIRTYZERO !TAKE THAT YOU DIRTY CHEATING Jordan if you cant commentate in an unbiased way !Im telling it like it is Professor !Harry felt a huge jolt of excitement .He had seen the Snitch it was shimmering at the foot of one of the Gryffindor goal posts but he mustnt catch it yet and if Malfoy saw it Faking a look of sudden concentration Harry pulled his Firebolt around and sped off toward the Slytherin end it worked .Malfoy went haring after him clearly thinking Harry had seen the Snitch there .WHOOSH .One of the Bludgers came streaking past Harrys right ear hit by the gigantic Slytherin Beater Derrick .Then again WHOOSH .The second Bludger grazed Harrys elbow .The other Beater Bole was closing in .Harry had a fleeting glimpse of Bole and Derrick zooming toward him clubs raised He turned the Firebolt upward at the last second and Bole and Derrick collided with a sickening crunch .Ha haa !yelled Lee Jordan as the Slytherin Beaters lurched away from each other clutching their heads .Too bad boys !Youll need to get up earlier than that to beat a Firebolt !And its Gryffindor in possession again as Johnson takes the Quaffle Flint alongside her poke him in the eye Angelina !it was a joke Professor it was a joke oh no Flint in possession Flint flying toward the Gryffindor goal posts come on now Wood save !But Flint had scored there was an eruption of cheers from the Slytherin end and Lee swore so badly that Professor McGonagall tried to tug the magical megaphone away from him .Sorry Professor sorry !Wont happen again !So Gryffindor in the lead thirty points to ten and Gryffindor in possession It was turning into the dirtiest game Harry had ever played in .Enraged that Gryffindor had taken such an early lead the Slytherins were rapidly resorting to any means to take the Quaffle .Bole hit Alicia with his club and tried to say hed thought she was a Bludger .George Weasley elbowed Bole in the face in retaliation .Madam Hooch awarded both teams penalties and Wood pulled off another spectacular save making the score fortyten to Gryffindor .The Snitch had disappeared again .Malfoy was still keeping close to Harry as he soared over the match looking around for it once Gryffindor was fifty points ahead Katie scored .Fiftyten .Fred and George Weasley were swooping around her clubs raised in case any of the Slytherins were thinking of revenge .Bole and Derrick took advantage of Freds and Georges absence to aim both Bludgers at Wood they caught him in the stomach one after the other and he rolled over in the air clutching his broom completely winded .Madam Hooch was beside herself .YOU DO NOT ATTACK THE KEEPER UNLESS THE QUAFFLE IS WITHIN THE SCORING AREA !she shrieked at Bole and Derrick .Gryffindor penalty !And Angelina scored .Sixtyten .Moments later Fred Weasley pelted a Bludger at Warrington knocking the Quaffle out of his hands Alicia seized it and put it through the Slytherin goal seventyten .The Gryffindor crowd below was screaming itself hoarse Gryffindor was sixty points in the lead and if Harry caught the Snitch now the Cup was theirs .Harry could almost feel hundreds of eyes following him as he soared around the field high above the rest of the game with Malfoy speeding along behind him .And then he saw it .The Snitch was sparkling twenty feet above him .Harry put on a huge burst of speed the wind was roaring in his ears he stretched out his hand but suddenly the Firebolt was slowing down Horrified he looked around .Malfoy had thrown himself forward grabbed hold of the Firebolts tail and was pulling it back .You Harry was angry enough to hit Malfoy but couldnt reach Malfoy was panting with the effort of holding onto the Firebolt but his eyes were sparkling maliciously .He had achieved what hed wanted to do the Snitch had disappeared again .Penalty !Penalty to Gryffindor !Ive never seen such tactics !Madam Hooch screeched shooting up to where Malfoy was sliding back onto his Nimbus Two Thousand and One .YOU CHEATING SCUM !Lee Jordan was howling into the megaphone dancing out of Professor McGonagalls reach .YOU FILTHY CHEATING B Professor McGonagall didnt even bother to tell him off .She was actually shaking her finger in Malfoys direction her hat had fallen off and she too was shouting furiously .Alicia took Gryffindors penalty but she was so angry she missed by several feet .The Gryffindor team was losing concentration and the Slytherins delighted by Malfoys foul on Harry were being spurred on to greater heights .Slytherin in possession Slytherin heading for goal Montague scores Lee groaned .Seventytwenty to Gryffindor .Harry was now marking Malfoy so closely their knees kept hitting each other .Harry wasnt going to let Malfoy anywhere near the Snitch .Get out of it Potter !Malfoy yelled in frustration as he tried to turn and found Harry blocking him .Angelina Johnson gets the Quaffle for Gryffindor come on Angelina COME ON !Harry looked around .Every single Slytherin player apart from Malfoy was streaking up the pitch toward Angelina including the Slytherin Keeper they were all going to block her Harry wheeled the Firebolt around bent so low he was lying flat along the handle and kicked it forward .Like a bullet he shot toward the Slytherins .aaRRRGH !They scattered as the Firebolt zoomed toward them Angelinas way was clear .SHE SCORES !SHE SCORES !Gryffindor leads by eighty points to twenty !Harry who had almost pelted headlong into the stands skidded to a halt in midair reversed and zoomed back into the middle of the field .And then he saw something to make his heart stand still .Malfoy was diving a look of triumph on his face there a few feet above the grass below was a tiny golden glimmer Harry urged the Firebolt downward but Malfoy was miles ahead Go !Go !Go !Harry urged his broom .He was gaining on Malfoy Harry flattened himself to the broom handle as Bole sent a Bludger at him he was at Malfoys ankles he was level Harry threw himself forward took both hands off his broom .He knocked Malfoys arm out of the way and YES !He pulled out of his dive his hand in the air and the stadium exploded .Harry soared above the crowd an odd ringing in his ears .The tiny golden ball was held tight in his fist beating its wings hopelessly against his fingers .Then Wood was speeding toward him halfblinded by tears he seized Harry around the neck and sobbed unrestrainedly into his shoulder .Harry felt two large thumps as Fred and George hit them then Angelinas Alicias and Katies voices Weve won the Cup Weve won the Cup Tangled together in a manyarmed hug the Gryffindor team sank yelling hoarsely back to earth .Wave upon wave of crimson supporters was pouring over the barriers onto the field .Hands were raining down on their backs .Harry had a confused impression of noise and bodies pressing in on him .Then he and the rest of the team were hoisted onto the shoulders of the crowd .Thrust into the light he saw Hagrid plastered with crimson rosettes Yeh beat em Harry yeh beat em !Wait till I tell Buckbeak !There was Percy jumping up and down like a maniac all dignity forgotten .Professor McGonagall was sobbing harder even than Wood wiping her eyes with an enormous Gryffindor flag and there fighting their way toward Harry were Ron and Hermione .Words failed them .They simply beamed as Harry was borne toward the stands where Dumbledore stood waiting with the enormous Quidditch Cup .If only there had been a dementor around .As a sobbing Wood passed Harry the Cup as he lifted it into the air Harry felt he could have produced the worlds best Patronus .PROFESSOR TRELAWNEYS PREDICTION Harrys euphoria at finally winning the Quidditch Cup lasted at least a week .Even the weather seemed to be celebrating as June approached the days became cloudless and sultry and all anybody felt like doing was strolling onto the grounds and flopping down on the grass with several pints of iced pumpkin juice perhaps playing a casual game of Gobstones or watching the giant squid propel itself dreamily across the surface of the lake .But they couldnt .Exams were nearly upon them and instead of lazing around outside the students were forced to remain inside the castle trying to bully their brains into concentrating while enticing wafts of summer air drifted in through the windows .Even Fred and George Weasley had been spotted working they were about to take their O .W .L .s Ordinary Wizarding Levels .Percy was getting ready to take his N .E .W .T .s Nastily Exhausting Wizarding Tests the highest qualification Hogwarts offered .As Percy hoped to enter the Ministry of Magic he needed top grades .He was becoming increasingly edgy and gave very severe punishments to anybody who disturbed the quiet of the common room in the evenings .In fact the only person who seemed more anxious than Percy was Hermione .Harry and Ron had given up asking her how she was managing to attend several classes at once but they couldnt restrain themselves when they saw the exam schedule she had drawn up for herself .The first column read Monday 9 oclock Arithmancy 9 oclock Transfiguration Lunch 1 oclock Charms 1 oclock Ancient Runes Hermione ?Ron said cautiously because she was liable to explode when interrupted these days .Er are you sure youve copied down these times right ?What ?snapped Hermione picking up the exam schedule and examining it .Yes of course I have .Is there any point asking how youre going to sit for two exams at once ?said Harry .No said Hermione shortly .Have either of you seen my copy of Numerology and Gramatica ?Oh yeah I borrowed it for a bit of bedtime reading said Ron but very quietly .Hermione started shifting heaps of parchment around on her table looking for the book .Just then there was a rustle at the window and Hedwig fluttered through it a note clutched tight in her beak .Its from Hagrid said Harry ripping the note open .Buckbeaks appeal its set for the sixth .Thats the day we finish our exams said Hermione still looking everywhere for her Arithmancy book .And theyre coming up here to do it said Harry still reading from the letter .Someone from the Ministry of Magic and and an executioner .Hermione looked up startled .Theyre bringing the executioner to the appeal !But that sounds as though theyve already decided !Yeah it does said Harry slowly .They cant !Ron howled .Ive spent ages reading up on stuff for him they cant just ignore it all !But Harry had a horrible feeling that the Committee for the Disposal of Dangerous Creatures had had its mind made up for it by Mr Malfoy .Draco who had been noticeably subdued since Gryffindors triumph in the Quidditch final seemed to regain some of his old swagger over the next few days .From sneering comments Harry overheard Malfoy was certain Buckbeak was going to be killed and seemed thoroughly pleased with himself for bringing it about .It was all Harry could do to stop himself imitating Hermione and hitting Malfoy in the face on these occasions .And the worst thing of all was that they had no time or opportunity to go and see Hagrid because the strict new security measures had not been lifted and Harry didnt dare retrieve his Invisibility Cloak from below the oneeyed witch .k k k Exam week began and an unnatural hush fell over the castle .The third years emerged from Transfiguration at lunchtime on Monday limp and ashenfaced comparing results and bemoaning the difficulty of the tasks they had been set which had included turning a teapot into a tortoise .Hermione irritated the rest by fussing about how her tortoise had looked more like a turtle which was the least of everyone elses worries .Mine still had a spout for a tail what a nightmare .Were the tortoises supposed to breathe steam ?It still had a willowpatterned shell dyou think that 11 count against me ?Then after a hasty lunch it was straight back upstairs for the Charms exam .Hermione had been right Professor Flitwick did indeed test them on Cheering Charms .Harry slightly overdid his out of nerves and Ron who was partnering him ended up in fits of hysterical laughter and had to be led away to a quiet room for an hour before he was ready to perform the charm himself .After dinner the students hurried back to their common rooms not to relax but to start studying for Care of Magical Creatures Potions and Astronomy .Hagrid presided over the Care of Magical Creatures exam the following morning with a very preoccupied air indeed his heart didnt seem to be in it at all .He had provided a large tub of fresh flobberworms for the class and told them that to pass the test their flobberworm had to still be alive at the end of one hour .As flobberworms flourished best if left to their own devices it was the easiest exam any of them had ever taken and also gave Harry Ron and Hermione plenty of opportunity to speak to Hagrid .Beakys gettin a bit depressed Hagrid told them bending low on the pretense of checking that Harrys flobberworm was still alive .Bin cooped up too long .But still .well know day after tomorrow one way or the other They had Potions that afternoon which was an unqualified disaster .Try as Harry might he couldnt get his Confusing Concoction to thicken and Snape standing watch with an air of vindictive pleasure scribbled something that looked suspiciously like a zero onto his notes before moving away .Then came Astronomy at midnight up on the tallest tower History of Magic on Wednesday morning in which Harry scribbled everything Florean Fortescue had ever told him about medieval witchhunts while wishing he could have had one of Fortescue s choco nut sundaes with him in the stifling classroom .Wednesday afternoon meant Herbology in the greenhouses under a bakinghot sun then back to the common room once more with sunburnt necks thinking longingly of this time next day when it would all be over .Their second to last exam on Thursday morning was Defense Against the Dark Arts .Professor Lupin had compiled the most unusual exam any of them had ever taken a sort of obstacle course outside in the sun where they had to wade across a deep paddling pool containing a grindylow cross a series of potholes full of Red Caps squish their way across a patch of marsh while ignoring misleading directions from a hinkypunk then climb into an old trunk and battle with a new boggart .Excellent Harry Lupin muttered as Harry climbed out of the trunk grinning .Full marks .Flushed with his success Harry hung around to watch Ron and Hermione .Ron did very well until he reached the hinkypunk which successfully confused him into sinking waisthigh into the quagmire .Hermione did everything perfectly until she reached the trunk with the boggart in it .After about a minute inside it she burst out again screaming .Hermione !said Lupin startled .Whats the matter ?P P Professor McGonagall !Hermione gasped pointing into the trunk .Sh she said Id failed everything !It took a little while to calm Hermione down .When at last she had regained a grip on herself she Harry and Ron went back to the castle .Ron was still slightly inclined to laugh at Hermione s boggart but an argument was averted by the sight that met them on the top of the steps .Cornelius Fudge sweating slightly in his pinstriped cloak was standing there staring out at the grounds .He started at the sight of Harry .Hello there Harry !he said .Just had an exam I expect ?Nearly finished ?Yes said Harry .Hermione and Ron not being on speaking terms with the Minister of Magic hovered awkwardly in the background .Lovely day said Fudge casting an eye over the lake .Pity .pity .He sighed deeply and looked down at Harry .Im here on an unpleasant mission Harry .The Committee for the Disposal of Dangerous Creatures required a witness to the execution of a mad hippogriff .As I needed to visit Hogwarts to check on the Black situation I was asked to step in .Does that mean the appeals already happened ?Ron interrupted stepping forward .No no its scheduled for this afternoon said Fudge looking curiously at Ron .Then you might not have to witness an execution at all !said Ron stoutly .The hippogriff might get off !Before Fudge could answer two wizards came through the castle doors behind him .One was so ancient he appeared to be withering before their very eyes the other was tall and strapping with a thin black mustache .Harry gathered that they were representatives of the Committee for the Disposal of Dangerous Creatures because the very old wizard squinted toward Hagrids cabin and said in a feeble voice Dear dear Im getting too old for this .Two oclock isnt it Fudge ?The blackmustached man was fingering something in his belt Harry looked and saw that he was running one broad thumb along the blade of a shining axe .Ron opened his mouth to say something but Hermione nudged him hard in the ribs and jerked her head toward the entrance hall .Whyd you stop me ?said Ron angrily as they entered the Great Hall for lunch .Did you see them ?Theyve even got the axe ready !This isnt justice !Ron your dad works for the Ministry you cant go saying things like that to his boss !said Hermione but she too looked very upset .As long as Hagrid keeps his head this time and argues his case properly they cant possibly execute Buckbeak .But Harry could tell Hermione didnt really believe what she was saying .All around them people were talking excitedly as they ate their lunch happily anticipating the end of the exams that afternoon but Harry Ron and Hermione lost in worry about Hagrid and Buckbeak didnt join in .Harrys and Rons last exam was Divination Hermiones Muggle Studies .They walked up the marble staircase together Hermione left them on the first floor and Harry and Ron proceeded all the way up to the seventh where many of their class were sitting on the spiral staircase to Professor Trelawneys classroom trying to cram in a bit of lastminute studying .Shes seeing us all separately Neville informed them as they went to sit down next to him .He had his copy of Unfogging the Future open on his lap at the pages devoted to crystal gazing .Have either of you ever seen anything in a crystal ball ?he asked them unhappily .Nope said Ron in an offhand voice .He kept checking his watch Harry knew that he was counting down the time until Buckbeaks appeal started .The line of people outside the classroom shortened very slowly .As each person climbed back down the silver ladder the rest of the class hissed What did she ask ?Was it okay ?But they all refused to say .She says the crystal balls told her that if I tell you Ill have a horrible accident !squeaked Neville as he clambered back down the ladder toward Harry and Ron who had now reached the landing .Thats convenient snorted Ron .You know Im starting to think Hermione was right about her he jabbed his thumb toward the trapdoor overhead shes a right old fraud .Yeah said Harry looking at his own watch .It was now two oclock .Wish shed hurry up .Parvati came back down the ladder glowing with pride .She says Ive got all the makings of a true Seer she informed Harry and Ron .I saw loads of stuff .Well good luck !She hurried off down the spiral staircase toward Lavender .Ronald Weasley said the familiar misty voice from over their heads .Ron grimaced at Harry and climbed the silver ladder out of sight .Harry was now the only person left to be tested .He settled himself on the floor with his back against the wall listening to a fly buzzing in the sunny window his mind across the grounds with Hagrid .Finally after about twenty minutes Rons large feet reappeared on the ladder .Howd it go ?Harry asked him standing up .Rubbish said Ron .Couldnt see a thing so I made some stuff up .Dont think she was convinced though .Meet you in the common room Harry muttered as Professor Trelawneys voice called Harry Potter !The tower room was hotter than ever before the curtains were closed the fire was alight and the usual sickly scent made Harry cough as he stumbled through the clutter of chairs and tables to where Professor Trelawney sat waiting for him before a large crystal ball .Good day my dear she said softly .If you would kindly gaze into the Orb .Take your time now .then tell me what you see within it .Harry bent over the crystal ball and stared stared as hard as he could willing it to show him something other than swirling white fog but nothing happened .Well ?Professor Trelawney prompted delicately .What do you see ?The heat was overpowering and his nostrils were stinging with the perfumed smoke wafting from the fire beside them .He thought of what Ron had just said and decided to pretend .Er said Harry a dark shape .um .What does it resemble ?whispered Professor Trelawney .Think now .Harry cast his mind around and it landed on Buckbeak .A hippogriff he said firmly .Indeed !whispered Professor Trelawney scribbling keenly on the parchment perched upon her knees .My boy you may well be seeing the outcome of poor Hagrids trouble with the Ministry of Magic !Look closer .Does the hippogriff appear to .have its head ?Yes said Harry firmly .Are you sure ?Professor Trelawney urged him .Are you quite sure dear ?You dont see it writhing on the ground perhaps and a shadowy figure raising an axe behind it ?No !said Harry starting to feel slightly sick .No blood ?No weeping Hagrid ?No !said Harry again wanting more than ever to leave the room and the heat .It looks fine its flying away .Professor Trelawney sighed .Well dear I think well leave it there .A little disappointing .but Im sure you did your best .Relieved Harry got up picked up his bag and turned to go but then a loud harsh voice spoke behind him .It will happen tonight .Harry wheeled around .Professor Trelawney had gone rigid in her armchair her eyes were unfocused and her mouth sagging .S sorry ?said Harry .But Professor Trelawney didnt seem to hear him .Her eyes started to roll .Harry sat there in a panic .She looked as though she was about to have some sort of seizure .He hesitated thinking of running to the hospital wing and then Professor Trelawney spoke again in the same harsh voice quite unlike her own The Dark Lord lies alone and friendless abandoned by his followers .His servant has been chained these twelve years .Tonight before midnight .the servant will break free and set out to rejoin his master .The Dark Lord will rise again with his servants aid greater and more terrible than ever he was .Tonight .before midnight .the servant .will set out .to rejoin .his master .Professor Trelawneys head fell forward onto her chest .She made a grunting sort of noise .Harry sat there staring at her .Then quite suddenly Professor Trelawneys head snapped up again .Im so sorry dear boy she said dreamily the heat of the day you know .I drifted off for a moment .Harry sat there staring at her .Is there anything wrong my dear ?You you just told me that the the Dark Lords going to rise again .that his servants going to go back to him .Professor Trelawney looked thoroughly startled .The Dark Lord ?HeWhoMustNotBeNamed ?My dear boy thats hardly something to joke about .Rise again indeed But you just said it !You said the Dark Lord I think you must have dozed off too dear !said Professor Trelawney .I would certainly not presume to predict anything quite as farfetched as that Harry climbed back down the ladder and the spiral staircase wondering .had he just heard Professor Trelawney make a real prediction ?Or had that been her idea of an impressive end to the test ?Five minutes later he was dashing past the security trolls outside the entrance to Gryffindor Tower Professor Trelawneys words still resounding in his head .People were striding past him in the opposite direction laughing and joking heading for the grounds and a bit of longawaited freedom by the time he had reached the portrait hole and entered the common room it was almost deserted .Over in the corner however sat Ron and Hermione .Professor Trelawney Harry panted just told me But he stopped abruptly at the sight of their faces .Buckbeak lost said Ron weakly .Hagrids just sent this .Hagrids note was dry this time no tears had splattered it yet his hand seemed to have shaken so much as he wrote that it was hardly legible .Lost appeal .Theyre going to execute at sunset Nothing you can do .Dont come down .I dont want you to see it Hagrid Weve got to go said Harry at once .He cant just sit there on his own waiting for the executioner !Sunset though said Ron who was staring out the window in a glazed sort of way .Wed never be allowed .specially you Harry .Harry sank his head into his hands thinking .If we only had the Invisibility Cloak .Where is it ?said Hermione .Harry told her about leaving it in the passageway under the oneeyed witch . .if Snape sees me anywhere near there again Im in serious trouble he finished .Thats true said Hermione getting to her feet .If he sees you .How do you open the witchs hump again ?You you tap it and say ‘Dissendium said Harry .But Hermione didnt wait for the rest of his sentence she strode across the room pushed open the Fat Ladys portrait and vanished from sight .She hasnt gone to get it ?Ron said staring after her .She had .Hermione returned a quarter of an hour later with the silvery cloak folded carefully under her robes .Hermione I dont know whats gotten into you lately !said Ron astounded .First you hit Malfoy then you walk out on Professor Trelawney Hermione looked rather flattered .They went down to dinner with everybody else but did not return to Gryffindor Tower afterward .Harry had the cloak hidden down the front of his robes he had to keep his arms folded to hide the lump .They skulked in an empty chamber off the entrance hall listening until they were sure it was deserted .They heard a last pair of people hurrying across the hall and a door slamming .Hermione poked her head around the door .Okay she whispered no one there cloak on Walking very close together so that nobody would see them they crossed the hall on tiptoe beneath the cloak then walked down the stone front steps into the grounds .The sun was already sinking behind the Forbidden Forest gilding the top branches of the trees .They reached Hagrids cabin and knocked .He was a minute in answering and when he did he looked all around for his visitor palefaced and trembling .Its us Harry hissed .Were wearing the Invisibility Cloak .Let us in and we can take it off .Yeh shouldnve come !Hagrid whispered but he stood back and they stepped inside .Hagrid shut the door quickly and Harry pulled off the cloak .Hagrid was not crying nor did he throw himself upon their necks .He looked like a man who did not know where he was or what to do .This helplessness was worse to watch than tears .Wan some tea ?he said .His great hands were shaking as he reached for the kettle .Wheres Buckbeak Hagrid ?said Hermione hesitantly .I I took him outside said Hagrid spilling milk all over the table as he filled up the jug .Hes tethered in me pumpkin patch .Thought he oughta see the trees an an smell fresh air before Hagrid s hand trembled so violently that the milk jug slipped from his grasp and shattered all over the floor .Ill do it Hagrid said Hermione quickly hurrying over and starting to clean up the mess .Theres another one in the cupboard Hagrid said sitting down and wiping his forehead on his sleeve .Harry glanced at Ron who looked back hopelessly .Isnt there anything anyone can do Hagrid ?Harry asked fiercely sitting down next to him .Dumbledore Hes tried said Hagrid .Hes got no power ter overrule the Committee .He told em Buckbeaks all right but theyre scared .Yeh know what Lucius Malfoys like .threatened em I expect .an the executioner Macnair hes an old pal o Malfoys .but itll be quick an clean .an Ill be beside him .Hagrid swallowed .His eyes were darting all over the cabin as though looking for some shred of hope or comfort .Dumbledore s gonna come down while it while it happens .Wrote me this mornin .Said he wants ter ter be with me .Great man Dumbledore .Hermione who had been rummaging in Hagrid s cupboard for another milk jug let out a small quickly stifled sob .She straightened up with the new jug in her hands fighting back tears .Well stay with you too Hagrid she began but Hagrid shook his shaggy head .Yehre ter go back up ter the castle .I told yeh I don wan yeh watchin .An yeh shouldn be down here anyway .If Fudge an Dumbledore catch yeh out without permission Harry yehll be in big trouble .Silent tears were now streaming down Hermione s face but she hid them from Hagrid bustling around making tea .Then as she picked up the milk bottle to pour some into the jug she let out a shriek .Ron !I I dont believe it its Scabbersl Ron gaped at her .What are you talking about ?Hermione carried the milk jug over to the table and turned it upside down .With a frantic squeak and much scrambling to get back inside Scabbers the rat came sliding out onto the table .Scabbers !said Ron blankly .Scabbers what are you doing here ?He grabbed the struggling rat and held him up to the light .Scabbers looked dreadful .He was thinner than ever large tufts of hair had fallen out leaving wide bald patches and he writhed in Rons hands as though desperate to free himself .Its okay Scabbers !said Ron .No cats !Theres nothing here to hurt you !Hagrid suddenly stood up his eyes fixed on the window .His normally ruddy face had gone the color of parchment .Theyre cornin .Harry Ron and Hermione whipped around .A group of men was walking down the distant castle steps .In front was Albus Dumbledore his silver beard gleaming in the dying sun .Next to him trotted Cornelius Fudge .Behind them came the feeble old Committee member and the executioner Macnair .Yeh gotta go said Hagrid .Every inch of him was trembling .They mustn find yeh here .Go now .Ron stuffed Scabbers into his pocket and Hermione picked up the cloak .Ill let yeh out the back way said Hagrid .They followed him to the door into his back garden .Harry felt strangely unreal and even more so when he saw Buckbeak a few yards away tethered to a tree behind Hagrids pumpkin patch .Buckbeak seemed to know something was happening .He turned his sharp head from side to side and pawed the ground nervously .Its okay Beaky said Hagrid softly .Its okay .He turned to Harry Ron and Hermione .Go on he said .Get goin .But they didnt move .Hagrid we cant Well tell them what really happened They cant kill him Go !said Hagrid fiercely .Its bad enough without you lot in trouble an all !They had no choice .As Hermione threw the cloak over Harry and Ron they heard voices at the front of the cabin .Hagrid looked at the place where they had just vanished from sight .Go quick he said hoarsely .Don listen .And he strode back into his cabin as someone knocked at the front door .Slowly in a kind of horrified trance Harry Ron and Hermione set off silently around Hagrids house .As they reached the other side the front door closed with a sharp snap .Please lets hurry Hermione whispered .I cant stand it I cant bear it .They started up the sloping lawn toward the castle .The sun was sinking fast now the sky had turned to a clear purpletinged grey but to the west there was a rubyred glow .Ron stopped dead .Oh please Ron Hermione began .Its Scabbers he wont stay put Ron was bent over trying to keep Scabbers in his pocket but the rat was going berserk squeaking madly twisting and flailing trying to sink his teeth into Rons hand .Scabbers its me you idiot its Ron Ron hissed .They heard a door open behind them and mens voices .Oh Ron please lets move theyre going to do it !Hermione breathed .Okay Scabbers stay put They walked forward Harry like Hermione was trying not to listen to the rumble of voices behind them .Ron stopped again .I cant hold him Scabbers shut up everyonell hear us The rat was squealing wildly but not loudly enough to cover up the sounds drifting from Hagrids garden .There was a jumble of indistinct male voices a silence and then without warning the unmistakable swish and thud of an axe .Hermione swayed on the spot .They did it !she whispered to Harry .I d dont believe it they did it !CAT RAT AND DOG Harrys mind had gone blank with shock .The three of them stood transfixed with horror under the Invisibility Cloak .The very last rays of the setting sun were casting a bloody light over the longshadowed grounds .Then behind them they heard a wild howling .Hagrid Harry muttered .Without thinking about what he was doing he made to turn back but both Ron and Hermione seized his arms .We cant said Ron who was paperwhite .Hell be in worse trouble if they know weve been to see him .Hermione s breathing was shallow and uneven .How could they ?she choked .How could they ?Come on said Ron whose teeth seemed to be chattering .They set off back toward the castle walking slowly to keep themselves hidden under the cloak .The light was fading fast now .By the time they reached open ground darkness was settling like a spell around them .Scabbers keep still Ron hissed clamping his hand over his chest .The rat was wriggling madly .Ron came to a sudden halt trying to force Scabbers deeper into his pocket .Whats the matter with you you stupid rat ?Stay still OUCH !He bit me !Ron be quiet !Hermione whispered urgently .Fudgell be out here in a minute He wont stay put Scabbers was plainly terrified .He was writhing with all his might trying to break free of Rons grip .Whats the matter with him ?But Harry had just seen slinking toward them his body low to the ground wide yellow eyes glinting eerily in the darkness Crookshanks .Whether he could see them or was following the sound of Scabberss squeaks Harry couldnt tell .Crookshanks !Hermione moaned .No go away Crookshanks !Go away !But the cat was getting nearer Scabbers NO !Too late the rat had slipped between Rons clutching fingers hit the ground and scampered away .In one bound Crookshanks sprang after him and before Harry or Hermione could stop him Ron had thrown the Invisibility Cloak off himself and pelted away into the darkness .Ron Hermione moaned .She and Harry looked at each other then followed at a sprint it was impossible to run full out under the cloak they pulled it off and it streamed behind them like a banner as they hurtled after Ron they could hear his feet thundering along ahead and his shouts at Crookshanks .Get away from him get away Scabbers come here There was a loud thud .Gotchal Get off you stinking cat Harry and Hermione almost fell over Ron they skidded to a stop right in front of him .He was sprawled on the ground but Scabbers was back in his pocket he had both hands held tight over the quivering lump .Ron come on back under the cloak Hermione panted .Dumbledore the Minister theyll be coming back out in a minute But before they could cover themselves again before they could even catch their breath they heard the soft pounding of gigantic paws .Something was bounding toward them quiet as a shadow an enormous paleeyed jetblack dog .Harry reached for his wand but too late the dog had made an enormous leap and the front paws hit him on the chest he keeled over backward in a whirl of hair he felt its hot breath saw inchlong teeth But the force of its leap had carried it too far it rolled off him .Dazed feeling as though his ribs were broken Harry tried to stand up he could hear it gas it skidded around for a new attack .Ron was on his feet .As the dog sprang back toward them he pushed Harry aside the dogs jaws fastened instead around Rons outstretched arm .Harry lunged forward he seized a handful of the brutes hair but it was dragging Ron away as easily as though he were a rag doll Then out of nowhere something hit Harry so hard across the face he was knocked off his feet again .He heard Hermione shriek with pain and fall too .Harry groped for his wand blinking blood out of his eyes Lumos he whispered .The wandlight showed him the trunk of a thick tree they had chased Scabbers into the shadow of the Whomping Willow and its branches were creaking as though in a high wind whipping backward and forward to stop them going nearer .And there at the base of the trunk was the dog dragging Ron backward into a large gap in the roots Ron was fighting furiously but his head and torso were slipping out of sight Ron !Harry shouted trying to follow but a heavy branch whipped lethally through the air and he was forced backward again .All they could see now was one of Rons legs which he had hooked around a root in an effort to stop the dog from pulling him farther underground but a horrible crack cut the air like a gunshot Rons leg had broken and a moment later his foot vanished from sight .Harry weve got to go for help Hermione gasped she was bleeding too the Willow had cut her across the shoulder .No !That things big enough to eat him we havent got time Harry were never going to get through without help Another branch whipped down at them twigs clenched like knuckles .If that dog can get in we can Harry panted darting here and there trying to find a way through the vicious swishing branches but he couldnt get an inch nearer to the tree roots without being in range of the trees blows .Oh help help Hermione whispered frantically dancing uncertainly on the spot please .Crookshanks darted forward .He slithered between the battering branches like a snake and placed his front paws upon a knot on the trunk .Abruptly as though the tree had been turned to marble it stopped moving .Not a leaf twitched or shook .Crookshanks !Hermione whispered uncertainly .She now grasped Harrys arm painfully hard .How did he know ?Hes friends with that dog said Harry grimly .Ive seen them together .Come on and keep your wand out They covered the distance to the trunk in seconds but before they had reached the gap in the roots Crookshanks had slid into it with a flick of his bottlebrush tail .Harry went next he crawled forward headfirst and slid down an earthy slope to the bottom of a very low tunnel .Crookshanks was a little way along his eyes flashing in the light from Harrys wand .Seconds later Hermione slithered down beside him .Wheres Ron ?she whispered in a terrified voice .This way said Harry setting off bentbacked after Crookshanks .Where does this tunnel come out ?Hermione asked breathlessly from behind him .I dont know .Its marked on the Marauders Map but Fred and George said no ones ever gotten into it . .It goes off the edge of the map but it looked like it was heading for Hogsmeade .They moved as fast as they could bent almost double ahead of them Crookshanks s tail bobbed in and out of view .On and on went the passage it felt at least as long as the one to Honeydukes .All Harry could think of was Ron and what the enormous dog might be doing to him .He was drawing breath in sharp painful gasps running at a crouch .And then the tunnel began to rise moments later it twisted and Crookshanks had gone .Instead Harry could see a patch of dim light through a small opening .He and Hermione paused gasping for breath edging forward .Both raised their wands to see what lay beyond .It was a room a very disordered dusty room .Paper was peeling from the walls there were stains all over the floor every piece of furniture was broken as though somebody had smashed it .The windows were all boarded up .Harry glanced at Hermione who looked very frightened but nodded .Harry pulled himself out of the hole staring around .The room was deserted but a door to their right stood open leading to a shadowy hallway .Hermione suddenly grabbed Harrys arm again .Her wide eyes were traveling around the boarded windows .Harry she whispered I think were in the Shrieking Shack .Harry looked around .His eyes fell on a wooden chair near them .Large chunks had been torn out of it one of the legs had been ripped off entirely .Ghosts didnt do that he said slowly .At that moment there was a creak overhead .Something had moved upstairs .Both of them looked up at the ceiling .Hermione s grip on Harrys arm was so tight he was losing feeling in his fingers .He raised his eyebrows at her she nodded again and let go .Quietly as they could they crept out into the hall and up the crumbling staircase .Everything was covered in a thick layer of dust except the floor where a wide shiny stripe had been made by something being dragged upstairs .They reached the dark landing .Nox they whispered together and the lights at the end of their wands went out .Only one door was open .As they crept toward it they heard movement from behind it a low moan and then a deep loud purring .They exchanged a last look a last nod .Wand held tightly before him Harry kicked the door wide open .On a magnificent fourposter bed with dusty hangings lay Crookshanks purring loudly at the sight of them .On the floor beside him clutching his leg which stuck out at a strange angle was Ron .Harry and Hermione dashed across to him .Ron are you okay ?Wheres the dog ?Not a dog Ron moaned .His teeth were gritted with pain .Harry its a trap What Hes the dog .hes an Animagus .Ron was staring over Harrys shoulder .Harry wheeled around .With a snap the man in the shadows closed the door behind them .A mass of filthy matted hair hung to his elbows .If eyes hadnt been shining out of the deep dark sockets he might have been a corpse .The waxy skin was stretched so tightly over the bones of his face it looked like a skull .His yellow teeth were bared in a grin .It was Sirius Black .ExpelliarmusV he croaked pointing Rons wand at them .Harrys and Hermiones wands shot out of their hands high in the air and Black caught them .Then he took a step closer .His eyes were fixed on Harry .I thought youd come and help your friend he said hoarsely .His voice sounded as though he had long since lost the habit of using it .Your father would have done the same for me .Brave of you not to run for a teacher .Im grateful .it will make everything much easier .The taunt about his father rang in Harrys ears as though Black had bellowed it .A boiling hate erupted in Harrys chest leaving no place for fear .For the first time in his life he wanted his wand back in his hand not to defend himself but to attack .to kill .Without knowing what he was doing he started forward but there was a sudden movement on either side of him and two pairs of hands grabbed him and held him back .No Harry !Hermione gasped in a petrified whisper Ron however spoke to Black .If you want to kill Harry youll have to kill us too !he said fiercely though the effort of standing upright was draining him of still more color and he swayed slightly as he spoke .Something flickered in Blacks shadowed eyes .Lie down he said quietly to Ron .You will damage that leg even more .Did you hear me ?Ron said weakly though he was clinging painfully to Harry to stay upright .Youll have to kill all three of us !Therell be only one murder here tonight said Black and his grin widened .Whys that ?Harry spat trying to wrench himself free of Ron and Hermione .Didnt care last time did you ?Didnt mind slaughtering all those Muggles to get at Pettigrew .Whats the matter gone soft in Azkaban ?Harry !Hermione whimpered .Be quiet !HE KILLED MY MUM AND DAD !Harry roared and with a huge effort he broke free of Hermione s and Rons restraint and lunged forward He had forgotten about magic he had forgotten that he was short and skinny and thirteen whereas Black was a tall fullgrown man all Harry knew was that he wanted to hurt Black as badly as he could and that he didnt care how much he got hurt in return Perhaps it was the shock of Harry doing something so stupid but Black didnt raise the wands in time one of Harrys hands fastened over his wasted wrist forcing the wand tips away the knuckles of Harrys other hand collided with the side of Blacks head and they fell backward into the wall Hermione was screaming Ron was yelling there was a blinding flash as the wands in Blacks hand sent a jet of sparks into the air that missed Harrys face by inches Harry felt the shrunken arm under his fingers twisting madly but he clung on his other hand punching every part of Black it could find .But Blacks free hand had found Harrys throat No he hissed Ive waited too long The fingers tightened Harry choked his glasses askew .Then he saw Hermione s foot swing out of nowhere .Black let go of Harry with a grunt of pain Ron had thrown himself on Blacks wand hand and Harry heard a faint clatter He fought free of the tangle of bodies and saw his own wand rolling across the floor he threw himself toward it but Argh !Crookshanks had joined the fray both sets of front claws had sunk themselves deep into Harrys arm Harry threw him off but Crookshanks now darted toward Harrys wand NO YOU DONT !roared Harry and he aimed a kick at Crookshanks that made the cat leap aside spitting Harry snatched up his wand and turned Get out of the way !he shouted at Ron and Hermione .They didnt need telling twice .Hermione gasping for breath her lip bleeding scrambled aside snatching up her and Rons wands .Ron crawled to the four poster and collapsed onto it panting his white face now tinged with green both hands clutching his broken leg .Black was sprawled at the bottom of the wall .His thin chest rose and fell rapidly as he watched Harry walking slowly nearer his wand pointing straight at Blacks heart .Going to kill me Harry ?he whispered .Harry stopped right above him his wand still pointing at Blacks chest looking down at him .A livid bruise was rising around Blacks left eye and his nose was bleeding .You killed my parents said Harry his voice shaking slightly but his wand hand quite steady .Black stared up at him out of those sunken eyes .I dont deny it he said very quietly .But if you knew the whole story .The whole story ?Harry repeated a furious pounding in his ears .You sold them to Voldemort .Thats all I need to know .Youve got to listen to me Black said and there was a note of urgency in his voice now .Youll regret it if you dont .You dont understand .I understand a lot better than you think said Harry and his voice shook more than ever .You never heard her did you ?My mum .trying to stop Voldemort killing me .and you did that .you did it .Before either of them could say another word something ginger streaked past Harry Crookshanks leapt onto Blacks chest and settled himself there right over Blacks heart .Black blinked and looked down at the cat .Get off he murmured trying to push Crookshanks off him .But Crookshanks sank his claws into Blacks robes and wouldnt shift .He turned his ugly squashed face to Harry and looked up at him with those great yellow eyes .To his right Hermione gave a dry sob .Harry stared down at Black and Crookshanks his grip tightening on the wand .So what if he had to kill the cat too ?It was in league with Black .If it was prepared to die trying to protect Black that wasnt Harrys business .If Black wanted to save it that only proved he cared more for Crookshanks than for Harrys parents .Harry raised the wand .Now was the moment to do it .Now was the moment to avenge his mother and father .He was going to kill Black .He had to kill Black .This was his chance .The seconds lengthened .And still Harry stood frozen there wand poised Black staring up at him Crookshanks on his chest .Rons ragged breathing came from near the bed Hermione was quite silent .And then came a new sound Muffled footsteps were echoing up through the floor someone was moving downstairs .WERE UP HERE !Hermione screamed suddenly .WERE UP HERE SIRIUS BLACK QUICK !Black made a startled movement that almost dislodged Crookshanks Harry gripped his wand convulsively Do it nouA said a voice in his head but the footsteps were thundering up the stairs and Harry still hadnt done it .The door of the room burst open in a shower of red sparks and Harry wheeled around as Professor Lupin came hurtling into the room his face bloodless his wand raised and ready .His eyes flickered over Ron lying on the floor over Hermione cowering next to the door to Harry standing there with his wand covering Black and then to Black himself crumpled and bleeding at Harrys feet .ExpelliarmusV Lupin shouted .Harrys wand flew once more out of his hand so did the two Hermione was holding .Lupin caught them all deftly then moved into the room staring at Black who still had Crookshanks lying protectively across his chest .Harry stood there feeling suddenly empty .He hadnt done it .His nerve had failed him .Black was going to be handed back to the dementors .Then Lupin spoke in a very tense voice .Where is he Sirius ?Harry looked quickly at Lupin .He didnt understand what Lupin meant .Who was Lupin talking about ?He turned to look at Black again .Blacks face was quite expressionless .For a few seconds he didnt move at all .Then very slowly he raised his empty hand and pointed straight at Ron .Mystified Harry glanced around at Ron who looked bewildered .But then .Lupin muttered staring at Black so intently it seemed he was trying to read his mind .why hasnt he shown himself before now ?Unless Lupins eyes suddenly widened as though he was seeing something beyond Black something none of the rest could see unless he was the one .unless you switched .without telling me ?Very slowly his sunken gaze never leaving Lupins face Black nodded .Professor Harry interrupted loudly whats going on ?But he never finished the question because what he saw made his voice die in his throat .Lupin was lowering his wand gazing fixedly at Black .The Professor walked to Blacks side seized his hand pulled him to his feet so that Crookshanks fell to the floor and embraced Black like a brother .Harry felt as though the bottom had dropped out of his stomach .I DONT BELIEVE IT !Hermione screamed .Lupin let go of Black and turned to her .She had raised herself off the floor and was pointing at Lupin wildeyed .You you Hermione you and him !Hermione calm down I didnt tell anyone !Hermione shrieked .Ive been covering up for you Hermione listen to me please !Lupin shouted .I can explain Harry could feel himself shaking not with fear but with a fresh wave of fury .I trusted you he shouted at Lupin his voice wavering out of control and all the time youve been his friend !Youre wrong said Lupin .I havent been Siriuss friend but I am now Let me explain .NO !Hermione screamed .Harry dont trust him hes been helping Black get into the castle he wants you dead too hes a werewolf .There was a ringing silence .Everyones eyes were now on Lupin who looked remarkably calm though rather pale .Not at all up to your usual standard Hermione he said .Only one out of three Im afraid .I have not been helping Sirius get into the castle and I certainly dont want Harry dead .An odd shiver passed over his face .But I wont deny that I am a werewolf .Ron made a valiant effort to get up again but fell back with a whimper of pain .Lupin made toward him looking concerned but Ron gasped Get away from me werewolf Lupin stopped dead .Then with an obvious effort he turned to Hermione and said How long have you known ?Ages Hermione whispered .Since I did Professor Snapes essay .Hell be delighted said Lupin coolly .He assigned that essay hoping someone would realize what my symptoms meant .Did you check the lunar chart and realize that I was always ill at the full moon ?Or did you realize that the boggart changed into the moon when it saw me ?Both Hermione said quietly .Lupin forced a laugh .Youre the cleverest witch of your age Ive ever met Hermione .Im not Hermione whispered .If Id been a bit cleverer Id have told everyone what you are !But they already know said Lupin .At least the staff do .Dumbledore hired you when he knew you were a werewolf ?Ron gasped .Is he mad ?Some of the staff thought so said Lupin .He had to work very hard to convince certain teachers that Im trustworthy AND HE WAS WRONG !Harry yelled .YOU VE BEEN HELPING HIM ALL THE TIME !He was pointing at Black who suddenly crossed to the fourposter bed and sank onto it his face hidden in one shaking hand .Crookshanks leapt up beside him and stepped onto his lap purring .Ron edged away from both of them dragging his leg .I have not been helping Sirius said Lupin .If youll give me a chance Ill explain .Look He separated Harrys Rons and Hermiones wands and threw each back to its owner Harry caught his stunned .There said Lupin sticking his own wand back into his belt .Youre armed were not .Now will you listen ?Harry didnt know what to think .Was it a trick ?If you havent been helping him he said with a furious glance at Black how did you know he was here ?The map said Lupin .The Marauders Map .I was in my office examining it You know how to work it ?Harry said suspiciously .Of course I know how to work it said Lupin waving his hand impatiently .I helped write it .Im Moony that was my friends nickname for me at school .You wrote ?The important thing is I was watching it carefully this evening because I had an idea that you Ron and Hermione might try and sneak out of the castle to visit Hagrid before his hippogriff was executed .And I was right wasnt I ?He had started to pace up and down looking at them .Little patches of dust rose at his feet .You might have been wearing your fathers old cloak Harry How dyou know about the cloak ?The number of times I saw James disappearing under it .said Lupin waving an impatient hand again .The point is even if youre wearing an Invisibility Cloak you still show up on the Marauders Map .I watched you cross the grounds and enter Hagrids hut .Twenty minutes later you left Hagrid and set off back toward the castle .But you were now accompanied by somebody else .What ?said Harry .No we werent !I couldnt believe my eyes said Lupin still pacing and ignoring Harrys interruption .I thought the map must be malfunctioning .How could he be with you ?No one was with us !said Harry .And then I saw another dot moving fast toward you labeled Sirius Black .I saw him collide with you I watched as he pulled two of you into the Whomping Willow One of us !Ron said angrily .No Ron said Lupin .Two of you .He had stopped his pacing his eyes moving over Ron .Do you think I could have a look at the rat ?he said evenly .What ?said Ron .Whats Scabbers got to do with it ?Everything said Lupin .Could I see him please ?Ron hesitated then put a hand inside his robes .Scabbers emerged thrashing desperately Ron had to seize his long bald tail to stop him escaping .Crookshanks stood up on Blacks leg and made a soft hissing noise .Lupin moved closer to Ron .He seemed to be holding his breath as he gazed intently at Scabbers .What ?Ron said again holding Scabbers close to him looking scared .Whats my rat got to do with anything ?Thats not a rat croaked Sirius Black suddenly .What dyou mean of course hes a rat No hes not said Lupin quietly .Hes a wizard .An Animagus said Black by the name of Peter Pettigrew .MOONY WORMTAIL PADFOOT AND PRONGS It took a few seconds for the absurdity of this statement to sink in .Then Ron voiced what Harry was thinking .Youre both mental .Ridiculous !said Hermione faintly .Peter Pettigrews dead !said Harry .He killed him twelve years ago !He pointed at Black whose face twitched convulsively .I meant to he growled his yellow teeth bared but little Peter got the better of me .not this time though !And Crookshanks was thrown to the floor as Black lunged at Scabbers Ron yelled with pain as Blacks weight fell on his broken leg .Sirius NO !Lupin yelled launching himself forwards and dragging Black away from Ron again WAIT !You cant do it just like that they need to understand weve got to explain We can explain afterwards !snarled Black trying to throw Lupin off .One hand was still clawing the air as it tried to reach Scabbers who was squealing like a piglet scratching Rons face and neck as he tried to escape .Theyve got a right to know everything !Lupin panted still trying to restrain Black .Rons kept him as a pet !There are parts of it even I dont understand !And Harry you owe Harry the truth Sirius !Black stopped struggling though his hollowed eyes were still fixed on Scabbers who was clamped tightly under Rons bitten scratched and bleeding hands .All right then Black said without taking his eyes off the rat .Tell them whatever you like .But make it quick Remus .I want to commit the murder I was imprisoned for .Youre nutters both of you said Ron shakily looking round at Harry and Hermione for support .Ive had enough of this .Im off .He tried to heave himself up on his good leg but Lupin raised his wand again pointing it at Scabbers .Youre going to hear me out Ron he said quietly .Just keep a tight hold on Peter while you listen .HES NOT PETER HES SCABBERS !Ron yelled trying to force the rat back into his front pocket but Scabbers was fighting too hard Ron swayed and overbalanced and Harry caught him and pushed him back down to the bed .Then ignoring Black Harry turned to Lupin .There were witnesses who saw Pettigrew die he said .A whole street full of them .They didnt see what they thought they saw !said Black savagely still watching Scabbers struggling in Rons hands .Everyone thought Sirius killed Peter said Lupin nodding .I believed it myself until I saw the map tonight .Because the Marauders map never lies .Peters alive .Rons holding him Harry .Harry looked down at Ron and as their eyes met they agreed silently Black and Lupin were both out of their minds .Their story made no sense whatsoever .How could Scabbers be Peter Pettigrew ?Azkaban must have unhinged Black after all but why was Lupin playing along with him ?Then Hermione spoke in a trembling wouldbe calm sort of voice as though trying to will Professor Lupin to talk sensibly .But Professor Lupin .Scabbers cant be Pettigrew .it just cant be true you know it cant .Why cant it be true ?Lupin said calmly as though they were in class and Hermione had simply spotted a problem in an experiment with grindylows .Because .because people would know if Peter Pettigrew had been an Animagus .We did Animagi in class with Professor McGonagall .And I looked them up when I did my homework the Ministry of Magic keeps tabs on witches and wizards who can become animals theres a register showing what animal they become and their markings and things .and I went and looked Professor McGonagall up on the register and there have been only seven Animagi this century and Pettigrews name wasnt on the list Harry had barely had time to marvel inwardly at the effort Hermione put into her homework when Lupin started to laugh .Right again Hermione !he said .But the Ministry never knew that there used to be three unregistered Animagi running around Hogwarts .If youre going to tell them the story get a move on Remus snarled Black who was still watching Scabberss every desperate move .Ive waited twelve years Im not going to wait much longer .All right .but youll need to help me Sirius said Lupin I only know how it began .Lupin broke off .There had been a loud creak behind him .The bedroom door had opened of its own accord .All five of them stared at it .Then Lupin strode toward it and looked out into the landing .No one there .This place is haunted !said Ron .Its not said Lupin still looking at the door in a puzzled way .The Shrieking Shack was never haunted .The screams and howls the villagers used to hear were made by me .He pushed his graying hair out of his eyes thought for a moment then said Thats where all of this starts with my becoming a werewolf .None of this could have happened if I hadnt been bitten .and if I hadnt been so foolhardy .He looked sober and tired .Ron started to interrupt but Hermione said Shh !She was watching Lupin very intently .I was a very small boy when I received the bite .My parents tried everything but in those days there was no cure .The potion that Professor Snape has been making for me is a very recent discovery .It makes me safe you see .As long as I take it in the week preceding the full moon I keep my mind when I transform .I am able to curl up in my office a harmless wolf and wait for the moon to wane again .Before the Wolfsbane Potion was discovered however I became a fully fledged monster once a month .It seemed impossible that I would be able to come to Hogwarts .Other parents werent likely to want their children exposed to me .But then Dumbledore became Headmaster and he was sympathetic .He said that as long as we took certain precautions there was no reason I shouldnt come to school .Lupin sighed and looked directly at Harry .I told you months ago that the Whomping Willow was planted the year I came to Hogwarts .The truth is that it was planted because I came to Hogwarts .This house Lupin looked miserably around the room the tunnel that leads to it they were built for my use .Once a month I was smuggled out of the castle into this place to transform .The tree was placed at the tunnel mouth to stop anyone coming across me while I was dangerous .Harry couldnt see where this story was going but he was listening raptly all the same .The only sound apart from Lupins voice was Scabberss frightened squeaking .My transformations in those days were were terrible .It is very painful to turn into a werewolf .I was separated from humans to bite so I bit and scratched myself instead .The villagers heard the noise and the screaming and thought they were hearing particularly violent spirits .Dumbledore encouraged the rumor .Even now when the house has been silent for years the villagers dont dare approach it .But apart from my transformations I was happier than I had ever been in my life .For the first time ever I had friends three great friends .Sirius Black .Peter Pettigrew .and of course your father Harry James Potter .Now my three friends could hardly fail to notice that I disappeared once a month .I made up all sorts of stories .I told them my mother was ill and that I had to go home to see her .I was terrified they would desert me the moment they found out what I was .But of course they like you Hermione worked out the truth .And they didnt desert me at all .Instead they did something for me that would make my transformations not only bearable but the best times of my life .They became Animagi .My dad too ?said Harry astounded .Yes indeed said Lupin .It took them the best part of three years to work out how to do it .Your father and Sirius here were the cleverest students in the school and lucky they were because the Animagus transformation can go horribly wrong one reason the Ministry keeps a close watch on those attempting to do it .Peter needed all the help he could get from James and Sirius .Finally in our fifth year they managed it .They could each turn into a different animal at will .But how did that help you ?said Hermione sounding puzzled .They couldnt keep me company as humans so they kept me company as animals said Lupin .A werewolf is only a danger to people .They sneaked out of the castle every month under Jamess Invisibility Cloak .They transformed .Peter as the smallest could slip beneath the Willows attacking branches and touch the knot that freezes it .They would then slip down the tunnel and join me .Under their influence I became less dangerous .My body was still wolfish but my mind seemed to become less so while I was with them .Hurry up Remus snarled Black who was still watching Scabbers with a horrible sort of hunger on his face .Im getting there Sirius Im getting there .well highly exciting possibilities were open to us now that we could all transform .Soon we were leaving the Shrieking Shack and roaming the school grounds and the village by night .Sirius and James transformed into such large animals they were able to keep a werewolf in check .I doubt whether any Hogwarts students ever found out more about the Hogwarts grounds and Hogsmeade than we did .And thats how we came to write the Marauders Map and sign it with our nicknames .Sirius is Padfoot .Peter is Wormtail .James was Prongs .What sort of animal ?Harry began but Hermione cut him off .That was still really dangerous !Running around in the dark with a werewolf !What if youd given the others the slip and bitten somebody ?A thought that still haunts me said Lupin heavily .And there were near misses many of them .We laughed about them afterwards .We were young thoughtless carried away with our own cleverness .I sometimes felt guilty about betraying Dumbledores trust of course .he had admitted me to Hogwarts when no other headmaster would have done so and he had no idea I was breaking the rules he had set down for my own and others safety .He never knew I had led three fellow students into becoming Animagi illegally .But I always managed to forget my guilty feelings every time we sat down to plan our next months adventure .And I havent changed .Lupins face had hardened and there was selfdisgust in his voice .All this year I have been battling with myself wondering whether I should tell Dumbledore that Sirius was an Animagus .But I didnt do it .Why ?Because I was too cowardly .It would have meant admitting that Id betrayed his trust while I was at school admitting that Id led others along with me .and Dumbledores trust has meant everything to me .He let me into Hogwarts as a boy and he gave me a job when I have been shunned all my adult life unable to find paid work because of what I am .And so I convinced myself that Sirius was getting into the school using dark arts he learned from Voldemort that being an Animagus had nothing to do with it .so in a way Snapes been right about me all along .Snape ?said Black harshly taking his eyes off Scabbers for the first time in minutes and looking up at Lupin .Whats Snape got to do with it ?Hes here Sirius said Lupin heavily .Hes teaching here as well .He looked up at Harry Ron and Hermione .Professor Snape was at school with us .He fought very hard against my appointment to the Defense Against the Dark Arts job .He has been telling Dumbledore all year that I am not to be trusted .He has his reasons .you see Sirius here played a trick on him which nearly killed him a trick which involved me Black made a derisive noise .It served him right he sneered .Sneaking around trying to find out what we were up to .hoping he could get us expelled .Severus was very interested in where I went every month .Lupin told Harry Ron and Hermione .We were in the same year you know and we er didnt like each other very much .He especially disliked James .Jealous I think of Jamess talent on the Quidditch field .anyway Snape had seen me crossing the grounds with Madam Pomfrey one evening as she led me toward the Whomping Willow to transform .Sirius thought it would be er amusing to tell Snape all he had to do was prod the knot on the tree trunk with a long stick and hed be able to get in after me .Well of course Snape tried it if hed got as far as this house hed have met a fully grown werewolf but your father whod heard what Sirius had done went after Snape and pulled him back at great risk to his life .Snape glimpsed me though at the end of the tunnel .He was forbidden by Dumbledore to tell anybody but from that time on he knew what I was .So thats why Snape doesnt like you said Harry slowly because he thought you were in on the joke ?Thats right sneered a cold voice from the wall behind Lupin .Severus Snape was pulling off the Invisibility Cloak his wand pointing directly at Lupin .THE SERVANT OF LORD VOLDERMORT Hermione screamed .Black leapt to his feet .Harry felt as though hed received a huge electric shock .I found this at the base of the Whomping Willow said Snape throwing the cloak aside careful to keep this wand pointing directly at Lupins chest .Very useful Potter I thank you .Snape was slightly breathless but his face was full of suppressed triumph .Youre wondering perhaps how I knew you were here ?he said his eyes glittering .Ive just been to your office Lupin .You forgot to take your potion tonight so I took a gobletful along .And very lucky I did .lucky for me I mean .Lying on your desk was a certain map .One glance at it told me all I needed to know .I saw you running along this passageway and out of sight .Severus Lupin began but Snape overrode him .Ive told the headmaster again and again that youre helping your old friend Black into the castle Lupin and heres the proof .Not even I dreamed you would have the nerve to use this old place as your hideout Severus youre making a mistake said Lupin urgently .You havent heard everything I can explain Sirius is not here to kill Harry Two more for Azkaban tonight said Snape his eyes now gleaming fanatically .I shall be interested to see how Dumbledore takes this .He was quite convinced you were harmless you know Lupin .a tame werewolf You fool said Lupin softly .Is a schoolboy grudge worth putting an innocent man back inside Azkaban ?BANG !Thin snakelike cords burst from the end of Snapes wand and twisted themselves around Lupins mouth wrists and ankles he overbalanced and fell to the floor unable to move .With a roar of rage Black started toward Snape but Snape pointed his wand straight between Blacks eyes .Give me a reason he whispered .Give me a reason to do it and I swear I will .Black stopped dead .It would have been impossible to say which face showed more hatred .Harry stood there paralyzed not knowing what to do or whom to believe .He glanced around at Ron and Hermione .Ron looked just as confused as he did still fighting to keep hold on the struggling Scabbers .Hermione however took an uncertain step toward Snape and said in a very breathless voice Professor Snape it it wouldnt hurt to hear what theyve got to say w would it ?Miss Granger you are already facing suspension from this school Snape spat .You Potter and Weasley are outofbounds in the company of a convicted murderer and a werewolf .For once in your life hold your tongue .But if if there was a mistake KEEP QUIET YOU STUPID GIRL !Snape shouted looking suddenly quite deranged .DONT TALK ABOUT WHAT YOU DONT UNDERSTAND !A few sparks shot out of the end of his wand which was still pointed at Blacks face .Hermione fell silent .Vengeance is very sweet Snape breathed at Black .How I hoped I would be the one to catch you .The jokes on you again Severus Black snarled .As long as this boy brings his rat up to the castle he jerked his head at Ron Ill come quietly .Up to the castle ?said Snape silkily .I dont think we need to go that far .All I have to do is call the dementors once we get out of the Willow .Theyll be very pleased to see you Black .pleased enough to give you a little kiss I daresay .What little color there was in Blacks face left it .You youve got to hear me out he croaked .The rat look at the rat But there was a mad glint in Snape s eyes that Harry had never seen before .He seemed beyond reason .Come on all of you he said .He clicked his fingers and the ends of the cords that bound Lupin flew to his hands .Ill drag the werewolf .Perhaps the dementors will have a kiss for him too Before he knew what he was doing Harry had crossed the room in three strides and blocked the door .Get out of the way Potter youre in enough trouble already snarled Snape .If I hadnt been here to save your skin Professor Lupin could have killed me about a hundred times this year Harry said .Ive been alone with him loads of times having defense lessons against the dementors .If he was helping Black why didnt he just finish me off then ?Dont ask me to fathom the way a werewolfs mind works hissed Snape .Get out of the way Potter .YOURE PATHETIC !Harry yelled .JUST BECAUSE THEY MADE A FOOL OF YOU AT SCHOOL YOU WONT EVEN LISTEN SILENCE !I WILL NOT BE SPOKEN TO LIKE THAT !Snape shrieked looking madder than ever .Like father like son Potter !I have just saved your neck you should be thanking me on bended knee !You would have been well served if hed killed you !Youd have died like your father too arrogant to believe you might be mistaken in Black now get out of the way or I will make you .GET OUT OF THE WAY POTTER !Harry made up his mind in a split second .Before Snape could take even one step toward him he had raised his wand .Expelliarmus he yelled except that his wasnt the only voice that shouted .There was a blast that made the door rattle on its hinges Snape was lifted off his feet and slammed into the wall then slid down it to the floor a trickle of blood oozing from under his hair .He had been knocked out .Harry looked around .Both Ron and Hermione had tried to disarm Snape at exactly the same moment .Snape s wand soared in a high arc and landed on the bed next to Crookshanks .You shouldnt have done that said Black looking at Harry .You should have left him to me .Harry avoided Blacks eyes .He wasnt sure even now that hed done the right thing .We attacked a teacher .We attacked a teacher .Hermione whimpered staring at the lifeless Snape with frightened eyes .Oh were going to be in so much trouble Lupin was struggling against his bonds .Black bent down quickly and untied him .Lupin straightened up rubbing his arms where the ropes had cut into them .Thank you Harry he said .Im still not saying I believe you he told Lupin .Then its time we offered you some proof said Lupin .You boy give me Peter please .Now .Ron clutched Scabbers closer to his chest .Come off it he said weakly .Are you trying to say he broke out of Azkaban just to get his hands on Scabbers ?I mean .He looked up at Harry and Hermione for support Okay say Pettigrew could turn into a rat there are millions of rats hows he supposed to know which one hes after if he was locked up in Azkaban ?You know Sirius thats a fair question said Lupin turning to Black and frowning slightly .How did you find out where he was ?Black put one of his clawlike hands inside his robes and took out a crumpled piece of paper which he smoothed flat and held out to show the others .It was the photograph of Ron and his family that had appeared in the Daily Prophet the previous summer and there on Rons shoulder was Scabbers .How did you get this ?Lupin asked Black thunderstruck .Fudge said Black .When he came to inspect Azkaban last year he gave me his paper .And there was Peter on the front page .on this boys shoulder . .I knew him at once .how many times had I seen him transform ?And the caption said the boy would be going back to Hogwarts .to where Harry was .My God said Lupin softly staring from Scabbers to the picture in the paper and back again .His front paw .What about it ?said Ron defiantly .Hes got a toe missing said Black .Of course Lupin breathed .So simple .so brilliant .he cut it off himself ?Just before he transformed said Black .When I cornered him he yelled for the whole street to hear that Id betrayed Lily and James .Then before I could curse him he blew apart the street with the wand behind his back killed everyone within twenty feet of himself and sped down into the sewer with the other rats .Didnt you ever hear Ron ?said Lupin .The biggest bit of Peter they found was his finger .Look Scabbers probably had a fight with another rat or something !Hes been in my family for ages right Twelve years in fact said Lupin .Didnt you ever wonder why he was living so long ?We weve been taking good care of him !said Ron .Not looking too good at the moment though is he ?said Lupin .Id guess hes been losing weight ever since he heard Sirius was on the loose again .Hes been scared of that mad cat !said Ron nodding toward Crookshanks who was still purring on the bed .But that wasnt right Harry thought suddenly .Scabbers had been looking ill before he met Crookshanks .ever since Rons return from Egypt .since the time when Black had escaped .This cat isnt mad said Black hoarsely .He reached out a bony hand and stroked Crookshanks s fluffy head .Hes the most intelligent of his kind Ive ever met .He recognized Peter for what he was right away .And when he met me he knew I was no dog .It was a while before he trusted me .Finally I managed to communicate to him what I was after and hes been helping me .What do you mean ?breathed Hermione .He tried to bring Peter to me but couldnt .so he stole the passwords into Gryffindor Tower for me .As I understand it he took them from a boys bedside table .Harrys brain seemed to be sagging under the weight of what he was hearing .It was absurd .and yet .But Peter got wind of what was going on and ran for it .croaked Black .This cat Crookshanks did you call him ?told me Peter had left blood on the sheets .I supposed he bit himself .Well faking his own death had worked once .These words jolted Harry to his senses .And why did he fake his death ?he said furiously .Because he knew you were about to kill him like you killed my parents !No said Lupin Harry And now youve come to finish him off !Yes I have said Black with an evil look at Scabbers .Then I shouldve let Snape take you !Harry shouted .Harry said Lupin hurriedly dont you see ?All this time weve thought Sirius betrayed your parents and Peter tracked him down but it was the other way around dont you see ?Peter betrayed your mother and father Sirius tracked Peter down THATS NOT TRUE !Harry yelled .HE WAS THEIR SECRETKEEPER !HE SAID SO BEFORE YOU TURNED UP .HE SAID HE KILLED THEM !He was pointing at Black who shook his head slowly the sunken eyes were suddenly overbright .Harry .I as good as killed them he croaked .I persuaded Lily and James to change to Peter at the last moment persuaded them to use him as Secret Keeper instead of me .Im to blame I know it .The night they died Id arranged to check on Peter make sure he was still safe but when I arrived at his hiding place hed gone .Yet there was no sign of a struggle .It didnt feel right .I was scared .I set out for your parents house straight away .And when I saw their house destroyed and their bodies .I realized what Peter mustve done .what Id done .His voice broke .He turned away .Enough of this said Lupin and there was a steely note in his voice Harry had never heard before .Theres one certain way to prove what really happened .Ron give me that rat What are you going to do with him if I give him to you ?Ron asked Lupin tensely .Force him to show himself said Lupin .If he really is a rat it wont hurt him .Ron hesitated .Then at long last he held out Scabbers and Lupin took him .Scabbers began to squeak without stopping twisting and turning his tiny black eyes bulging in his head .Ready Sirius ?said Lupin .Black had already retrieved Snapes wand from the bed .He approached Lupin and the struggling rat and his wet eyes suddenly seemed to be burning in his face .Together ?he said quietly .I think so said Lupin holding Scabbers tightly in one hand and his wand in the other .On the count of three .One two THREE !A flash of bluewhite light erupted from both wands for a moment Scabbers was frozen in midair his small gray form twisting madly Ron yelled the rat fell and hit the floor .There was another blinding flash of light and then It was like watching a speededup film of a growing tree .A head was shooting upward from the ground limbs were sprouting a moment later a man was standing where Scabbers had been cringing and wringing his hands .Crookshanks was spitting and snarling on the bed the hair on his back was standing up .He was a very short man hardly taller than Harry and Hermione .His thin colorless hair was unkempt and there was a large bald patch on top .He had the shrunken appearance of a plump man who has lost a lot of weight in a short time .His skin looked grubby almost like Scabbers s fur and something of the rat lingered around his pointed nose and his very small watery eyes .He looked around at them all his breathing fast and shallow .Harry saw his eyes dart to the door and back again .Well hello Peter said Lupin pleasantly as though rats frequently erupted into old school friends around him .Long time no see .S Sirius .R Remus .Even Pettigrews voice was squeaky .Again his eyes darted toward the door .My friends .my old friends .Blacks wand arm rose but Lupin seized him around the wrist gave him a warning look then turned again to Pettigrew his voice light and casual .Weve been having a little chat Peter about what happened the night Lily and James died .You might have missed the finer points while you were squeaking around down there on the bed Remus gasped Pettigrew and Harry could see beads of sweat breaking out over his pasty face you dont believe him do you . ?He tried to kill me Remus .So weve heard said Lupin more coldly .Id like to clear up one or two little matters with you Peter if youd be so Hes come to try and kill me again !Pettigrew squeaked suddenly pointing at Black and Harry saw that he used his middle finger because his index was missing .He killed Lily and James and now hes going to kill me too .Youve got to help me Remus .Blacks face looked more skulllike than ever as he stared at Pettigrew with his fathomless eyes .No ones going to try and kill you until weve sorted a few things out said Lupin .Sorted things out ?squealed Pettigrew looking wildly about him once more eyes taking in the boarded windows and again the only door .I knew hed come after me !I knew hed be back for me !Ive been waiting for this for twelve years !You knew Sirius was going to break out of Azkaban ?said Lupin his brow furrowed .When nobody has ever done it before ?Hes got dark powers the rest of us can only dream of !Pettigrew shouted shrilly .How else did he get out of there ?I suppose HeWhoMustNotBeNamed taught him a few tricks !Black started to laugh a horrible mirthless laugh that filled the whole room .Voldemort teach me tricks ?he said .Pettigrew flinched as though Black had brandished a whip at him .What scared to hear your old masters name ?said Black .I dont blame you Peter .His lot arent very happy with you are they ?Dont know what you mean Sirius muttered Pettigrew his breathing faster than ever .His whole face was shining with sweat now .You havent been hiding from me for twelve years said Black .Youve been hiding from Voldemorts old supporters .I heard things in Azkaban Peter .They all think youre dead or youd have to answer to them .Ive heard them screaming all sorts of things in their sleep .Sounds like they think the double crosser doublecrossed them .Voldemort went to the Potters on your information .and Voldemort met his downfall there .And not all Voldemorts supporters ended up in Azkaban did they ?There are still plenty out here biding their time pretending theyve seen the error of their ways .If they ever got wind that you were still alive Peter Dont know .what youre talking about .said Pettigrew again more shrilly than ever .He wiped his face on his sleeve and looked up at Lupin .You dont believe this this madness Remus I must admit Peter I have difficulty in understanding why an innocent man would want to spend twelve years as a rat said Lupin evenly .Innocent but scared !squealed Pettigrew .If Voldemorts supporters were after me it was because I put one of their best men in Azkaban the spy Sirius Black !Blacks face contorted .How dare you he growled sounding suddenly like the bearsized dog he had been .I a spy for Voldemort ?When did I ever sneak around people who were stronger and more powerful than myself ?But you Peter Ill never understand why I didnt see you were the spy from the start .You always liked big friends whod look after you didnt you ?It used to be us .me and Remus .and James .Pettigrew wiped his face again he was almost panting for breath .Me a spy .must be out of your mind .never .dont know how you can say such a Lily and James only made you SecretKeeper because I suggested it Black hissed so venomously that Pettigrew took a step backward .I thought it was the perfect plan .a bluff .Voldemort would be sure to come after me would never dream theyd use a weak talentless thing like you .It must have been the finest moment of your miserable life telling Voldemort you could hand him the Potters .Pettigrew was muttering distractedly Harry caught words like farfetched and lunacy but he couldnt help paying more attention to the ashen color of Pettigrews face and the way his eyes continued to dart toward the windows and door .Professor Lupin ?said Hermione timidly .Can can I say something ?Certainly Hermione said Lupin courteously .Well Scabbers I mean this this man hes been sleeping in Harrys dormitory for three years .If hes working for YouKnowWho how come he never tried to hurt Harry before now ?There !said Pettigrew shrilly pointing at Ron with his maimed hand .Thank you !You see Remus ?I have never hurt a hair of Harrys head !Why should I ?Ill tell you why said Black .Because you never did anything for anyone unless you could see what was in it for you .Voldemorts been in hiding for fifteen years they say hes half dead .You werent about to commit murder right under Albus Dumbledores nose for a wreck of a wizard whod lost all of his power were you ?Youd want to be quite sure he was the biggest bully in the playground before you went back to him wouldnt you ?Why else did you find a wizard family to take you in ?Keeping an ear out for news werent you Peter ?Just in case your old protector regained strength and it was safe to rejoin him .Pettigrew opened his mouth and closed it several times .He seemed to have lost the ability to talk .Er Mr Black Sirius ?said Hermione .Black jumped at being addressed like this and stared at Hermione as though he had never seen anything quite like her .If you dont mind me asking how how did you get out of Azkaban if you didnt use Dark Magic ?Thank you !gasped Pettigrew nodding frantically at her .Exactly !Precisely what I But Lupin silenced him with a look .Black was frowning slightly at Hermione but not as though he were annoyed with her .He seemed to be pondering his answer .I dont know how I did it he said slowly .I think the only reason I never lost my mind is that I knew I was innocent .That wasnt a happy thought so the dementors couldnt suck it out of me .but it kept me sane and knowing who I am .helped me keep my powers .so when it all became .too much .I could transform in my cell .become a dog .Dementors cant see you know .He swallowed .They feel their way toward people by feeding off their emotions .They could tell that my feelings were less less human less complex when I was a dog .but they thought of course that I was losing my mind like everyone else in there so it didnt trouble them .But I was weak very weak and I had no hope of driving them away from me without a wand .But then I saw Peter in that picture .I realized he was at Hogwarts with Harry .perfectly positioned to act if one hint reached his ears that the Dark Side was gathering strength again .Pettigrew was shaking his head mouthing noiselessly but staring all the while at Black as though hypnotized . .ready to strike at the moment he could be sure of allies .and to deliver the last Potter to them .If he gave them Harry whod dare say hed betrayed Lord Voldemort ?Hed be welcomed back with honors .So you see I had to do something .I was the only one who knew Peter was still alive .Harry remembered what Mr Weasley had told Mrs Weasley .The guards say hes been talking in his sleep .always the same words . ‘Hes at Hog warts .It was as if someone had lit a fire in my head and the dementors couldnt destroy it .It wasnt a happy feeling .it was an obsession .but it gave me strength it cleared my mind .So one night when they opened my door to bring food I slipped past them as a dog .Its so much harder for them to sense animal emotions that they were confused .I was thin very thin .thin enough to slip through the bars .I swam as a dog back to the mainland .I journeyed north and slipped into the Hogwarts grounds as a dog .Ive been living in the forest ever since except when I came to watch the Quidditch of course .You fly as well as your father did Harry .He looked at Harry who did not look away .Believe me croaked Black .Believe me Harry .I never betrayed James and Lily .I would have died before I betrayed them .And at long last Harry believed him .Throat too tight to speak he nodded .No !Pettigrew had fallen to his knees as though Harrys nod had been his own death sentence .He shuffled forward on his knees groveling his hands clasped in front of him as though praying .Sirius its me .its Peter .your friend .you wouldnt .Black kicked out and Pettigrew recoiled .Theres enough filth on my robes without you touching them said Black .Remus !Pettigrew squeaked turning to Lupin instead writhing imploringly in front of him .You dont believe this .wouldnt Sirius have told you theyd changed the plan ?Not if he thought I was the spy Peter said Lupin .I assume thats why you didnt tell me Sirius ?he said casually over Pettigrews head .Forgive me Remus said Black .Not at all Padfoot old friend said Lupin who was now rolling up his sleeves .And will you in turn forgive me for believing you were the spy ?Of course said Black and the ghost of a grin flitted across his gaunt face .He too began rolling up his sleeves .Shall we kill him together ?Yes I think so said Lupin grimly .You wouldnt .you wont .gasped Pettigrew .And he scrambled around to Ron .Ron .havent I been a good friend .a good pet ?You wont let them kill me Ron will you .youre on my side arent you ?But Ron was staring at Pettigrew with the utmost revulsion .I let you sleep in my bed he said .Kind boy .kind master .Pettigrew crawled toward Ron you wont let them do it .I was your rat .I was a good pet .If you made a better rat than a human its not much to boast about Peter said Black harshly .Ron going still paler with pain wrenched his broken leg out of Pettigrews reach .Pettigrew turned on his knees staggered forward and seized the hem of Hermiones robes .Sweet girl .clever girl .you you wont let them . .Help me .Hermione pulled her robes out of Pettigrews clutching hands and backed away against the wall looking horrified .Pettigrew knelt trembling uncontrollably and turned his head slowly toward Harry .Harry .Harry .you look just like your father .just like him .HOW DARE YOU SPEAK TO HARRY ?roared Black .HOW DARE YOU FACE HIM ?HOW DARE YOU TALK ABOUT JAMES IN FRONT OF HIM ?Harry whispered Pettigrew shuffling toward him hands outstretched .Harry James wouldnt have wanted me killed .James would have understood Harry .he would have shown me mercy .Both Black and Lupin strode forward seized Pettigrews shoulders and threw him backward onto the floor .He sat there twitching with terror staring up at them .You sold Lily and James to Voldemort said Black who was shaking too .Do you deny it ?Pettigrew burst into tears .It was horrible to watch like an oversized balding baby cowering on the floor .Sirius Sirius what could I have done ?The Dark Lord .you have no idea .he has weapons you cant imagine .I was scared Sirius I was never brave like you and Remus and James .I never meant it to happen .HeWhoMustNotBeNamed forced me DONT LIE !bellowed Black .YOUD BEEN PASSING INFORMATION TO HIM FOR A YEAR BEFORE LILY AND JAMES DIED !YOU WERE HIS SPY !He he was taking over everywhere !gasped Pettigrew .Wh what was there to be gained by refusing him ?What was there to be gained by fighting the most evil wizard who has ever existed ?said Black with a terribly fury in his face .Only innocent lives Peter !You dont understand !whined Pettigrew .He would have killed me Sirius !THEN YOU SHOULD HAVE DIED !roared Black .DIED RATHER THAN BETRAY YOUR FRIENDS AS WE WOULD HAVE DONE FOR YOU !Black and Lupin stood shoulder to shoulder wands raised .You should have realized said Lupin quietly if Voldemort didnt kill you we would .Goodbye Peter .Hermione covered her face with her hands and turned to the wall .NO !Harry yelled .He ran forward placing himself in front of Pettigrew facing the wands .You cant kill him he said breathlessly .You cant .Black and Lupin both looked staggered .Harry this piece of vermin is the reason you have no parents Black snarled .This cringing bit of filth would have seen you die too without turning a hair .You heard him .His own stinking skin meant more to him than your whole family .I know Harry panted .Well take him up to the castle .Well hand him over to the dementors .He can go to Azkaban .but dont kill him .Harry !gasped Pettigrew and he flung his arms around Harrys knees .You thank you its more than I deserve thank you Get off me Harry spat throwing Pettigrews hands off him in disgust .Im not doing this for you .Im doing it because I dont reckon my dad wouldve wanted them to become killers just for you .No one moved or made a sound except Pettigrew whose breath was coming in wheezes as he clutched his chest .Black and Lupin were looking at each other .Then with one movement they lowered their wands .Youre the only person who has the right to decide Harry said Black .But think .think what he did .He can go to Azkaban Harry repeated .If anyone deserves that place he does .Pettigrew was still wheezing behind him .Very well said Lupin .Stand aside Harry .Harry hesitated .Im going to tie him up said Lupin .Thats all I swear .Harry stepped out of the way .Thin cords shot from Lupins wand this time and next moment Pettigrew was wriggling on the floor bound and gagged .But if you transform Peter growled Black his own wand pointing at Pettigrew too we will kill you .You agree Harry ?Harry looked down at the pitiful figure on the floor and nodded so that Pettigrew could see him .Right said Lupin suddenly businesslike .Ron I cant mend bones nearly as well as Madam Pomfrey so I think its best if we just strap your leg up until we can get you to the hospital wing .He hurried over to Ron bent down tapped Rons leg with his wand and muttered Ferula .Bandages spun up Rons leg strapping it tightly to a splint .Lupin helped him to his feet Ron put his weight gingerly on the leg and didnt wince .Thats better he said .Thanks .What about Professor Snape ?said Hermione in a small voice looking down at Snapes prone figure .Theres nothing seriously wrong with him said Lupin bending over Snape and checking his pulse .You were just a little overenthusiastic .Still out cold .Er perhaps it will be best if we dont revive him until were safely back in the castle .We can take him like this .He muttered Mobilicorpus .As though invisible strings were tied to Snapes wrists neck and knees he was pulled into a standing position head still lolling unpleasantly like a grotesque puppet .He hung a few inches above the ground his limp feet dangling .Lupin picked up the Invisibility Cloak and tucked it safely into his pocket .And two of us should be chained to this said Black nudging Pettigrew with his toe .Just to make sure .Ill do it said Lupin .And me said Ron savagely limping forward .Black conjured heavy manacles from thin air soon Pettigrew was upright again left arm chained to Lupins right right arm to Rons left .Rons face was set .He seemed to have taken Scabberss true identity as a personal insult .Crookshanks leapt lightly off the bed and led the way out of the room his bottlebrush tail held jauntily high .THE DEMENTORS KISS Harry had never been part of a stranger group .Crookshanks led the way down the stairs Lupin Pettigrew and Ron went next looking like entrants in a sixlegged race .Next came Professor Snape drifting creepily along his toes hitting each stair as they descended held up by his own wand which was being pointed at him by Sirius .Harry and Hermione brought up the rear .Getting back into the tunnel was difficult .Lupin Pettigrew and Ron had to turn sideways to manage it Lupin still had Pettigrew covered with his wand .Harry could see them edging awkwardly along the tunnel in single file .Crookshanks was still in the lead .Harry went right after Black who was still making Snape drift along ahead of them he kept bumping his lolling head on the low ceiling .Harry had the impression Black was making no effort to prevent this .You know what this means ?Black said abruptly to Harry as they made their slow progress along the tunnel .Turning Pettigrew in ?Youre free said Harry .Yes .said Black .But Im also I dont know if anyone ever told you Im your godfather .Yeah I knew that said Harry .Well .your parents appointed me your guardian said Black stiffly .If anything happened to them .Harry waited .Did Black mean what he thought he meant ?Ill understand of course if you want to stay with your aunt and uncle said Black .But .well .think about it .Once my names cleared .if you wanted a .a different home .Some sort of explosion took place in the pit of Harrys stomach .What live with you ?he said accidentally cracking his head on a bit of rock protruding from the ceiling .Leave the Dursleys ?Of course I thought you wouldnt want to said Black quickly .I understand I just thought Id Are you insane ?said Harry his voice easily as croaky as Blacks .Of course I want to leave the Dursleys !Have you got a house ?When can I move in ?Black turned right around to look at him Snapes head was scraping the ceiling but Black didnt seem to care .You want to ?he said .You mean it ?Yeah I mean it !said Harry .Blacks gaunt face broke into the first true smile Harry had seen upon it .The difference it made was startling as though a person ten years younger were shining through the starved mask for a moment he was recognizable as the man who had laughed at Harrys parents wedding .They did not speak again until they had reached the end of the tunnel .Crookshanks darted up first he had evidently pressed his paw to the knot on the trunk because Lupin Pettigrew and Ron clambered upward without any sound of savaging branches .Black saw Snape up through the hole then stood back for Harry and Hermione to pass .At last all of them were out .The grounds were very dark now the only light came from the distant windows of the castle .Without a word they set off .Pettigrew was still wheezing and occasionally whimpering .Harrys mind was buzzing .He was going to leave the Dursleys .He was going to live with Sirius Black his parents best friend .He felt dazed .What would happen when he told the Dursleys he was going to live with the convict theyd seen on television . !One wrong move Peter said Lupin threateningly ahead .His wand was still pointed sideways at Pettigrews chest .Silently they tramped through the grounds the castle lights growing slowly larger .Snape was still drifting weirdly ahead of Black his chin bumping on his chest .And then A cloud shifted .There were suddenly dim shadows on the ground .Their party was bathed in moonlight .Snape collided with Lupin Pettigrew and Ron who had stopped abruptly .Black froze .He flung out one arm to make Harry and Hermione stop .Harry could see Lupins silhouette .He had gone rigid .Then his limbs began to shake .Oh my Hermione gasped .He didnt take his potion tonight !Hes not safe !Run Black whispered .Run .Now .But Harry couldnt run .Ron was chained to Pettigrew and Lupin .He leapt forward but Black caught him around the chest and threw him back .Leave it to me RUN !There was a terrible snarling noise .Lupins head was lengthening .So was his body .His shoulders were hunching .Hair was sprouting visibly on his face and hands which were curling into clawed paws .Crookshankss hair was on end again he was backing away As the werewolf reared snapping its long jaws Sirius disappeared from Harrys side .He had transformed .The enormous bearlike dog bounded forward .As the werewolf wrenched itself free of the manacle binding it the dog seized it about the neck and pulled it backward away from Ron and Pettigrew .They were locked jaw to jaw claws ripping at each other Harry stood transfixed by the sight too intent upon the battle to notice anything else .It was Hermiones scream that alerted him Pettigrew had dived for Lupins dropped wand .Ron unsteady on his bandaged leg fell .There was a bang a burst of light and Ron lay motionless on the ground .Another bang Crookshanks flew into the air and back to the earth in a heap .ExpelliarmusV Harry yelled pointing his own wand at Pettigrew Lupins wand flew high into the air and out of sight .Stay where you are !Harry shouted running forward .Too late .Pettigrew had transformed .Harry saw his bald tail whip through the manacle on Rons outstretched arm and heard a scurrying through the grass .There was a howl and a rumbling growl Harry turned to see the werewolf taking flight it was galloping into the forest Sirius hes gone Pettigrew transformed !Harry yelled .Black was bleeding there were gashes across his muzzle and back but at Harrys words he scrambled up again and in an instant the sound of his paws faded to silence as he pounded away across the grounds .Harry and Hermione dashed over to Ron .What did he do to him ?Hermione whispered .Rons eyes were only halfclosed his mouth hung open he was definitely alive they could hear him breathing but he didnt seem to recognize them .I dont know .Harry looked desperately around .Black and Lupin both gone .they had no one but Snape for company still hanging unconscious in midair .Wed better get them up to the castle and tell someone said Harry pushing his hair out of his eyes trying to think straight .Come But then from beyond the range of their vision they heard a yelping a whining a dog in pain .Sirius Harry muttered staring into the darkness .He had a moments indecision but there was nothing they could do for Ron at the moment and by the sound of it Black was in trouble Harry set off at a run Hermione right behind him .The yelping seemed to be coming from the ground near the edge of the lake .They pelted toward it and Harry running flat out felt the cold without realizing what it must mean The yelping stopped abruptly .As they reached the lakeshore they saw why Sirius had turned back into a man .He was crouched on all fours his hands over his head .iVooo he moaned .Noooo .please .And then Harry saw them .Dementors at least a hundred of them gliding in a black mass around the lake toward them .He spun around the familiar icy cold penetrating his insides fog starting to obscure his vision more were appearing out of the darkness on every side they were encircling them .Hermione think of something happy !Harry yelled raising his wand blinking furiously to try and clear his vision shaking his head to rid it of the faint screaming that had started inside it Im going to live with my godfather .Im leaving the Dursleys .He forced himself to think of Black and only Black and began to chant Expecto patronum .Expecto patronum .Black gave a shudder rolled over and lay motionless on the ground pale as death .Hell be all right .Im going to go and live with him .Expecto patronum .Hermione help me !Expecto patronum .Expecto Hermione whispered expecto expecto But she couldnt do it .The dementors were closing in barely ten feet from them .They formed a solid wall around Harry and Hermione and were getting closer .EXPECTO PATRONUM Harry yelled trying to blot the screaming from his ears .EXPECTO PATRONUM .A thin wisp of silver escaped his wand and hovered like mist before him .At the same moment Harry felt Hermione collapse next to him .He was alone .completely alone .Expecto expecto patronum Harry felt his knees hit the cold grass .Fog was clouding his eyes .With a huge effort he fought to remember Sirius was innocent innocent Well be okay Im going to live with him Expecto patronum J he gasped .By the feeble light of his formless Patronus he saw a dementor halt very close to him .It couldnt walk through the cloud of silver mist Harry had conjured .A dead slimy hand slid out from under the cloak .It made a gesture as though to sweep the Patronus aside .No no Harry gasped .Hes innocent .expecto expecto patronum He could feel them watching him hear their rattling breath like an evil wind around him .The nearest dementor seemed to be considering him .Then it raised both its rotting hands and lowered its hood .Where there should have been eyes there was only thin gray scabbed skin stretched blankly over empty sockets .But there was a mouth .a gaping shapeless hole sucking the air with the sound of a death rattle .A paralyzing terror filled Harry so that he couldnt move or speak .His Patronus flickered and died .White fog was blinding him .He had to fight .expecto patronum .he couldnt see .and in the distance he heard the familiar screaming .expecto patronum .he groped in the mist for Sirius and found his arm .they werent going to take him .But a pair of strong clammy hands suddenly attached themselves around Harrys neck .They were forcing his face upward .He could feel its breath .It was going to get rid of him first .He could feel its putrid breath .His mother was screaming in his ears .She was going to be the last thing he ever heard And then through the fog that was drowning him he thought he saw a silvery light growing brighter and brighter .He felt himself fall forward onto the grass . .Facedown too weak to move sick and shaking Harry opened his eyes .The dementor must have released him .The blinding light was illuminating the grass around him .The screaming had stopped the cold was ebbing away .Something was driving the dementors back .It was circling around him and Black and Hermione .They were leaving .The air was warm again .With every ounce of strength he could muster Harry raised his head a few inches and saw an animal amid the light galloping away across the lake .Eyes blurred with sweat Harry tried to make out what it was .It was as bright as a unicorn .Fighting to stay conscious Harry watched it canter to a halt as it reached the opposite shore .For a moment Harry saw by its brightness somebody welcoming it back .raising his hand to pat it .someone who looked strangely familiar .but it couldnt be .Harry didnt understand .He couldnt think anymore .He felt the last of his strength leave him and his head hit the ground as he fainted .HERMIONES SECRET Shocking business .shocking .miracle none of them died .never heard the like .by thunder it was lucky you were there Snape .Thank you Minister .Order of Merlin Second Class Id say .First Class if I can wangle it !Thank you very much indeed Minister .Nasty cut youve got there .Blacks work I suppose ?As a matter of fact it was Potter Weasley and Granger Minister .iVo !Black had bewitched them I saw it immediately .A Confundus Charm to judge by their behavior .They seemed to think there was a possibility he was innocent .They werent responsible for their actions .On the other hand their interference might have permitted Black to escape .They obviously thought they were going to catch Black singlehanded .Theyve got away with a great deal before now .Im afraid its given them a rather high opinion of themselves .and of course Potter has always been allowed an extraordinary amount of license by the headmaster Ah well Snape .Harry Potter you know .weve all got a bit of a blind spot where hes concerned .And yet is it good for him to be given so much special treatment ?Personally I try and treat him like any other student .And any other student would be suspended at the very least for leading his friends into such danger .Consider Minister against all school rules after all the precautions put in place for his protection outofbounds at night consorting with a werewolf and a murderer and I have reason to believe he has been visiting Hogsmeade illegally too Well well .we shall see Snape we shall see .The boy has undoubtedly been foolish .Harry lay listening with his eyes tight shut .He felt very groggy .The words he was hearing seemed to be traveling very slowly from his ears to his brain so that it was difficult to understand .His limbs felt like lead his eyelids too heavy to lift .He wanted to lie here on this comfortable bed forever .What amazes me most is the behavior of the dementors .youve really no idea what made them retreat Snape ?No Minister .by the time I had come round they were heading back to their positions at the entrances .Extraordinary .And yet Black and Harry and the girl All unconscious by the time I reached them .I bound and gagged Black naturally conjured stretchers and brought them all straight back to the castle .There was a pause .Harrys brain seemed to be moving a little faster and as it did a gnawing sensation grew in the pit of his stomach .He opened his eyes .Everything was slightly blurred .Somebody had removed his glasses .He was lying in the dark hospital wing .At the very end of the ward he could make out Madam Pomfrey with her back to him bending over a bed .Harry squinted .Rons red hair was visible beneath Madam Pomfreys arm .Harry moved his head over on the pillow .In the bed to his right lay Hermione .Moonlight was falling across her bed .Her eyes were open too .She looked petrified and when she saw that Harry was awake pressed a finger to her lips then pointed to the hospital wing door .It was ajar and the voices of Cornelius Fudge and Snape were coming through it from the corridor outside .Madam Pomfrey now came walking briskly up the dark ward to Harrys bed .He turned to look at her .She was carrying the largest block of chocolate he had ever seen in his life .It looked like a small boulder .Ah youre awake !she said briskly .She placed the chocolate on Harrys bedside table and began breaking it apart with a small hammer .Hows Ron ?said Harry and Hermione together .Hell live said Madam Pomfrey grimly .As for you two .youll be staying here until Im satisfied youre Potter what do you think youre doing ?Harry was sitting up putting his glasses back on and picking up his wand .I need to see the headmaster he said .Potter said Madam Pomfrey soothingly its all right .Theyve got Black .Hes locked away upstairs .The dementors will be performing the kiss any moment now WHAT ?Harry jumped up out of bed Hermione had done the same .But his shout had been heard in the corridor outside next second Cornelius Fudge and Snape had entered the ward .Harry Harry whats this ?said Fudge looking agitated .You should be in bed has he had any chocolate ?he asked Madam Pomfrey anxiously .Minister listen !Harry said .Sirius Blacks innocent !Peter Pettigrew faked his own death !We saw him tonight !You cant let the dementors do that thing to Sirius hes But Fudge was shaking his head with a small smile on his face .Harry Harry youre very confused youve been through a dreadful ordeal lie back down now weve got everything under control .YOU HAVENT !Harry yelled .YOU VE GOT THE WRONG MAN !Minister listen please Hermione said she had hurried to Harrys side and was gazing imploringly into Fudges face .I saw him too .It was Rons rat hes an Animagus Pettigrew I mean and You see Minister ?said Snape .Confunded both of them .Blacks done a very good job on them .WERE NOT CONFUNDED !Harry roared .Minister !Professor !said Madam Pomfrey angrily .I must insist that you leave .Potter is my patient and he should not be distressed !Im not distressed Im trying to tell them what happened !Harry said furiously .If theyd just listen But Madam Pomfrey suddenly stuffed a large chunk of chocolate into Harrys mouth he choked and she seized the opportunity to force him back onto the bed .Now please Minister these children need care .Please leave The door opened again .It was Dumbledore .Harry swallowed his mouthful of chocolate with great difficulty and got up again .Professor Dumbledore Sirius Black For heavens sake !said Madam Pomfrey hysterically .Is this a hospital wing or not ?Headmaster I must insist My apologies Poppy but I need a word with Mr Potter and Miss Granger said Dumbledore calmly .I have just been talking to Sirius Black I suppose hes told you the same fairy tale hes planted in Potters mind ?spat Snape .Something about a rat and Pettigrew being alive That indeed is Blacks story said Dumbledore surveying Snape closely through his halfmoon spectacles .And does my evidence count for nothing ?snarled Snape .Peter Pettigrew was not in the Shrieking Shack nor did I see any sign of him on the grounds .That was because you were knocked out Professor !said Hermione earnestly .You didnt arrive in time to hear Miss Granger HOLD YOUR TONGUE !Now Snape said Fudge startled the young lady is disturbed in her mind we must make allowances I would like to speak to Harry and Hermione alone said Dumbledore abruptly .Cornelius Severus Poppy please leave us .Headmaster !sputtered Madam Pomfrey They need treatment they need rest This cannot wait said Dumbledore .I must insist .Madam Pomfrey pursed her lips and strode away into her office at the end of the ward slamming the door behind her .Fudge consulted the large gold pocket watch dangling from his waistcoat .The dementors should have arrived by now he said .Ill go and meet them .Dumbledore 111 see you upstairs .He crossed to the door and held it open for Snape but Snape hadnt moved .You surely dont believe a word of Blacks story ?Snape whispered his eyes fixed on Dumbledore s face .I wish to speak to Harry and Hermione alone Dumbledore repeated .Snape took a step toward Dumbledore .Sirius Black showed he was capable of murder at the age of sixteen he breathed .You havent forgotten that Headmaster ?You havent forgotten that he once tried to kill me ?My memory is as good as it ever was Severus said Dumbledore quietly .Snape turned on his heel and marched through the door Fudge was still holding .It closed behind them and Dumbledore turned to Harry and Hermione .They both burst into speech at the same time .Professor Blacks telling the truth we saw Pettigrew he escaped when Professor Lupin turned into a werewolf hes a rat Pettigrews front paw I mean finger he cut it off Pettigrew attacked Ron it wasnt Sirius But Dumbledore held up his hand to stem the flood of explanations .It is your turn to listen and I beg you will not interrupt me because there is very little time he said quietly .There is not a shred of proof to support Blacks story except your word and the word of two thirteenyearold wizards will not convince anybody .A street full of eyewitnesses swore they saw Sirius murder Pettigrew .I myself gave evidence to the Ministry that Sirius had been the Potters Secret Keeper .Professor Lupin can tell you Harry said unable to stop himself .Professor Lupin is currently deep in the forest unable to tell anyone anything .By the time he is human again it will be too late Sirius will be worse than dead .I might add that werewolves are so mistrusted by most of our kind that his support will count for very little and the fact that he and Sirius are old friends But Listen to me Harry .It is too late you understand me ?You must see that Professor Snapes version of events is far more convincing than yours .He hates Sirius Hermione said desperately .All because of some stupid trick Sirius played on him Sirius has not acted like an innocent man .The attack on the Fat Lady entering Gryffindor Tower with a knife without Pettigrew alive or dead we have no chance of overturning Siriuss sentence .But you believe us .Yes I do said Dumbledore quietly .But I have no power to make other men see the truth or to overrule the Minister of Magic .Harry stared up into the grave face and felt as though the ground beneath him were falling sharply away .He had grown used to the idea that Dumbledore could solve anything .He had expected Dumbledore to pull some amazing solution out of the air .But no .their last hope was gone .What we need said Dumbledore slowly and his light blue eyes moved from Harry to Hermione is more time .But Hermione began .And then her eyes became very round .OH !Now pay attention said Dumbledore speaking very low and very clearly .Sirius is locked in Professor Flitwicks office on the seventh floor .Thirteenth window from the right of the West Tower .If all goes well you will be able to save more than one innocent life tonight .But remember this both of you you must not be seen .Miss Granger you know the law you know what is at stake .You must not be seen .Harry didnt have a clue what was going on .Dumbledore had turned on his heel and looked back as he reached the door .I am going to lock you in .It is he consulted his watch five minutes to midnight .Miss Granger three turns should do it .Good luck .Good luck ?Harry repeated as the door closed behind Dumbledore .Three turns ?Whats he talking about ?What are we supposed to do ?But Hermione was fumbling with the neck of her robes pulling from beneath them a very long very fine gold chain .Harry come here she said urgently .Quick .Harry moved toward her completely bewildered .She was holding the chain out .He saw a tiny sparkling hourglass hanging from it .Here She had thrown the chain around his neck too .Ready ?she said breathlessly .What are we doing ?Harry said completely lost .Hermione turned the hourglass over three times .The dark ward dissolved .Harry had the sensation that he was flying very fast backward .A blur of colors and shapes rushed past him his ears were pounding he tried to yell but couldnt hear his own voice And then he felt solid ground beneath his feet and everything came into focus again He was standing next to Hermione in the deserted entrance hall and a stream of golden sunlight was falling across the paved floor from the open front doors .He looked wildly around at Hermione the chain of the hourglass cutting into his neck .Hermione what ?In here !Hermione seized Harrys arm and dragged him across the hall to the door of a broom closet she opened it pushed him inside among the buckets and mops then slammed the door behind them .What how Hermione what happened ?Weve gone back in time Hermione whispered lifting the chain off Harrys neck in the darkness .Three hours back .Harry found his own leg and gave it a very hard pinch .It hurt a lot which seemed to rule out the possibility that he was having a very bizarre dream .But Shh !Listen !Someones coming !I think I think it might be us !Hermione had her ear pressed against the cupboard door .Footsteps across the hall .yes I think its us going down to Hagrids !Are you telling me Harry whispered that were here in this cupboard and were out there too ?Yes said Hermione her ear still glued to the cupboard door .Im sure its us .It doesnt sound like more than three people .and were walking slowly because were under the Invisibility Cloak She broke off still listening intently .Weve gone down the front steps .Hermione sat down on an upturned bucket looking desperately anxious but Harry wanted a few questions answered .Where did you get that hourglass thing ?Its called a TimeTurner Hermione whispered and I got it from Professor McGonagall on our first day back .Ive been using it all year to get to all my lessons .Professor McGonagall made me swear I wouldnt tell anyone .She had to write all sorts of letters to the Ministry of Magic so I could have one .She had to tell them that I was a model student and that Id never ever use it for anything except my studies .Ive been turning it back so I could do hours over again thats how Ive been doing several lessons at once see ?But .Harry I dont understand what Dumbledore wants us to do .Why did he tell us to go back three hours ?Hows that going to help Sirius ?Harry stared at her shadowy face .There must be something that happened around now he wants us to change he said slowly .What happened ?We were walking down to Hagrids three hours ago .This is three hours ago and we are walking down to Hagrids said Hermione .We just heard ourselves leaving .Harry frowned he felt as though he were screwing up his whole brain in concentration .Dumbledore just said just said we could save more than one innocent life .And then it hit him .Hermione were going to save Buckbeak !But how will that help Sirius ?Dumbledore said he just told us where the window is the window of Flitwicks office !Where theyve got Sirius locked up !Weve got to fly Buckbeak up to the window and rescue Sirius !Sirius can escape on Buckbeak they can escape together !From what Harry could see of Hermiones face she looked terrified .If we manage that without being seen itll be a miracle !Well weve got to try havent we ?said Harry .He stood up and pressed his ear against the door .Doesnt sound like anyones there .Come on lets go .Harry pushed open the closet door .The entrance hall was deserted .As quietly and quickly as they could they darted out of the closet and down the stone steps .The shadows were already lengthening the tops of the trees in the Forbidden Forest gilded once more with gold .If anyones looking out of the window Hermione squeaked looking up at the castle behind them .Well run for it said Harry determinedly .Straight into the forest all right ?Well have to hide behind a tree or something and keep a lookout Okay but well go around by the greenhouses !said Hermione breathlessly .We need to keep out of sight of Hagrids front door or well see us !We must be nearly at Hagrids by now !Still working out what she meant Harry set off at a sprint Hermione behind him .They tore across the vegetable gardens to the greenhouses paused for a moment behind them then set off again fast as they could skirting around the Whomping Willow tearing toward the shelter of the forest .Safe in the shadows of the trees Harry turned around seconds later Hermione arrived beside him panting .Right she gasped .We need to sneak over to Hagrids .Keep out of sight Harry .They made their way silently through the trees keeping to the very edge of the forest .Then as they glimpsed the front of Hagrids house they heard a knock upon his door .They moved quickly behind a wide oak trunk and peered out from either side .Hagrid had appeared in his doorway shaking and white looking around to see who had knocked .And Harry heard his own voice .Its us .Were wearing the Invisibility Cloak .Let us in and we can take it off .Yeh shouldnve come !Hagrid whispered .He stood back then shut the door quickly .This is the weirdest thing weve ever done Harry said fervently .Lets move along a bit Hermione whispered .We need to get nearer to Buckbeak !They crept through the trees until they saw the nervous hippogriff tethered to the fence around Hagrids pumpkin patch .Now ?Harry whispered .No !said Hermione .If we steal him now those Committee people will think Hagrid set him free !Weve got to wait until theyve seen hes tied outside !Thats going to give us about sixty seconds said Harry .This was starting to seem impossible .At that moment there was a crash of breaking china from inside Hagrids cabin .Thats Hagrid breaking the milk jug Hermione whispered .Im going to find Scabbers in a moment Sure enough a few minutes later they heard Hermione s shriek of surprise .Hermione said Harry suddenly what if we we just run in there and grab Pettigrew No !said Hermione in a terrified whisper .Dont you understand ?Were breaking one of the most important wizarding laws !Nobodys supposed to change time nobody !You heard Dumbledore if were seen Wed only be seen by ourselves and Hagrid !Harry what do you think youd do if you saw yourself bursting into Hagrids house ?said Hermione .Id Id think Id gone mad said Harry or Id think there was some Dark Magic going on Exactly !You wouldnt understand you might even attack yourself !Dont you see ?Professor McGonagall told me what awful things have happened when wizards have meddled with time .Loads of them ended up killing their past or future selves by mistake !Okay !said Harry .It was just an idea I just thought But Hermione nudged him and pointed toward the castle .Harry moved his head a few inches to get a clear view of the distant front doors .Dumbledore Fudge the old Committee member and Macnair the executioner were coming down the steps .Were about to come out !Hermione breathed .And sure enough moments later Hagrids back door opened and Harry saw himself Ron and Hermione walking out of it with Hagrid .It was without a doubt the strangest sensation of his life standing behind the tree and watching himself in the pumpkin patch .Its okay Beaky its okay .Hagrid said to Buckbeak .Then he turned to Harry Ron and Hermione .Go on .Get goin .Hagrid we cant Well tell them what really happened They cant kill him Go !Its bad enough without you lot in trouble an all !Harry watched the Hermione in the pumpkin patch throw the Invisibility Cloak over him and Ron .Go quick .Don listen .There was a knock on Hagrids front door .The execution party had arrived .Hagrid turned around and headed back into his cabin leaving the back door ajar .Harry watched the grass flatten in patches all around the cabin and heard three pairs of feet retreating .He Ron and Hermione had gone .but the Harry and Hermione hidden in the trees could now hear what was happening inside the cabin through the back door .Where is the beast ?came the cold voice of Macnair .Out outside Hagrid croaked .Harry pulled his head out of sight as Macnairs face appeared at Hagrids window staring out at Buckbeak .Then they heard Fudge .We er have to read you the official notice of execution Hagrid .Ill make it quick .And then you and Macnair need to sign it .Macnair youre supposed to listen too thats procedure Macnairs face vanished from the window .It was now or never .Wait here Harry whispered to Hermione .Ill do it .As Fudges voice started again Harry darted out from behind his tree vaulted the fence into the pumpkin patch and approached Buckbeak .It is the decision of the Committee for the Disposal of Dangerous Creatures that the hippogriff Buckbeak hereafter called the condemned shall be executed on the sixth of June at sundown Careful not to blink Harry stared up into Buckbeaks fierce orange eyes once more and bowed .Buckbeak sank to his scaly knees and then stood up again .Harry began to fumble with the knot of rope tying Buckbeak to the fence . .sentenced to execution by beheading to be carried out by the Committees appointed executioner Walden Macnair .Come on Buckbeak Harry murmured come on were going to help you .Quietly .quietly . .as witnessed below .Hagrid you sign here .Harry threw all his weight onto the rope but Buckbeak had dug in his front feet .Well lets get this over with said the reedy voice of the Committee member from inside Hagrids cabin .Hagrid perhaps it will be better if you stay inside No I I wan ter be with him .I don wan him ter be alone Footsteps echoed from within the cabin .Buckbeak move Harry hissed .Harry tugged harder on the rope around Buckbeaks neck .The hippogriff began to walk rustling its wings irritably .They were still ten feet away from the forest in plain view of Hagrids back door .One moment please Macnair came Dumbledores voice .You need to sign too .The footsteps stopped .Harry heaved on the rope .Buckbeak snapped his beak and walked a little faster .Hermione s white face was sticking out from behind a tree .Harry hurry !she mouthed .Harry could still hear Dumbledores voice talking from within the cabin .He gave the rope another wrench .Buckbeak broke into a grudging trot .They had reached the trees .Quick !Quick !Hermione moaned darting out from behind her tree seizing the rope too and adding her weight to make Buckbeak move faster .Harry looked over his shoulder they were now blocked from sight they couldnt see Hagrids garden at all .Stop !he whispered to Hermione .They might hear us Hagrids back door had opened with a bang .Harry Hermione and Buckbeak stood quite still even the hippogriff seemed to be listening intently .Silence .then Where is it ?said the reedy voice of the Committee member .Where is the beast ?It was tied here !said the executioner furiously .I saw it !Just here !How extraordinary said Dumbledore .There was a note of amusement in his voice .Beaky !said Hagrid huskily .There was a swishing noise and the thud of an axe .The executioner seemed to have swung it into the fence in anger .And then came the howling and this time they could hear Hagrid s words through his sobs .Gone !Gone !Bless his little beak hes gone Musta pulled himself free !Beaky yeh clever boy !Buckbeak started to strain against the rope trying to get back to Hagrid .Harry and Hermione tightened their grip and dug their heels into the forest floor to stop him .Someone untied him !the executioner was snarling .We should search the grounds the forest Macnair if Buckbeak has indeed been stolen do you really think the thief will have led him away on foot ?said Dumbledore still sounding amused .Search the skies if you will .Hagrid I could do with a cup of tea .Or a large brandy .O o course Professor said Hagrid who sounded weak with happiness .Come in come in .Harry and Hermione listened closely .They heard footsteps the soft cursing of the executioner the snap of the door and then silence once more .Now what ?whispered Harry looking around .Well have to hide in here said Hermione who looked very shaken .We need to wait until theyve gone back to the castle .Then we wait until its safe to fly Buckbeak up to Siriuss window .He wont be there for another couple of hours .Oh this is going to be difficult .She looked nervously over her shoulder into the depths of the forest .The sun was setting now .Were going to have to move said Harry thinking hard .Weve got to be able to see the Whomping Willow or we wont know whats going on .Okay said Hermione getting a firmer grip on Buckbeaks rope .But weve got to keep out of sight Harry remember .They moved around the edge of the forest darkness falling thickly around them until they were hidden behind a clump of trees through which they could make out the Willow .Theres Ron !said Harry suddenly .A dark figure was sprinting across the lawn and its shout echoed through the still night air .Get away from him get away Scabbers come here And then they saw two more figures materialize out of nowhere .Harry watched himself and Hermione chasing after Ron .Then he saw Ron dive .Gotchcd Get off you stinking cat Theres Sirius !said Harry .The great shape of the dog had bounded out from the roots of the Willow .They saw him bowl Harry over then seize Ron .Looks even worse from here doesnt it ?said Harry watching the dog pulling Ron into the roots .Ouch look I just got walloped by the tree and so did you this is weird The Whomping Willow was creaking and lashing out with its lower branches they could see themselves darting here and there trying to reach the trunk .And then the tree froze .That was Crookshanks pressing the knot said Hermione .And there we go .Harry muttered .Were in .The moment they disappeared the tree began to move again .Seconds later they heard footsteps quite close by .Dumbledore Macnair Fudge and the old Committee member were making their way up to the castle .Right after wed gone down into the passage !said Hermione .If only Dumbledore had come with us .Macnair and Fudge wouldve come too said Harry bitterly .I bet you anything Fudge wouldve told Macnair to murder Sirius on the spot .They watched the four men climb the castle steps and disappear from view .For a few minutes the scene was deserted .Then Here comes Lupin !said Harry as they saw another figure sprinting down the stone steps and haring toward the Willow .Harry looked up at the sky .Clouds were obscuring the moon completely .They watched Lupin seize a broken branch from the ground and prod the knot on the trunk .The tree stopped fighting and Lupin too disappeared into the gap in its roots .If hed only grabbed the cloak said Harry .Its just lying there .He turned to Hermione .If I just dashed out now and grabbed it Snaped never be able to get it and Harry we mustnt be seen !How can you stand this ?he asked Hermione fiercely .Just standing here and watching it happen ?He hesitated .Im going to grab the cloak !Harry no !Hermione seized the back of Harrys robes not a moment too soon .Just then they heard a burst of song .It was Hagrid making his way up to the castle singing at the top of his voice and weaving slightly as he walked .A large bottle was swinging from his hands .See ?Hermione whispered .See what would have happened ?Weve got to keep out of sight !No Buckbeak .The hippogriff was making frantic attempts to get to Hagrid again Harry seized his rope too straining to hold Buckbeak back .They watched Hagrid meander tipsily up to the castle .He was gone .Buckbeak stopped fighting to get away .His head drooped sadly .Barely two minutes later the castle doors flew open yet again and Snape came charging out of them running toward the Willow .Harrys fists clenched as they watched Snape skid to a halt next to the tree looking around .He grabbed the cloak and held it up .Get your filthy hands off it Harry snarled under his breath .Shh !Snape seized the branch Lupin had used to freeze the tree prodded the knot and vanished from view as he put on the cloak .So thats it said Hermione quietly .Were all down there .and now weve just got to wait until we come back up again .She took the end of Buckbeaks rope and tied it securely around the nearest tree then sat down on the dry ground arms around her knees .Harry theres something I dont understand .Why didnt the dementors get Sirius ?I remember them coming and then I think I passed out .there were so many of them .Harry sat down too .He explained what hed seen how as the nearest dementor had lowered its mouth to Harrys a large silver something had come galloping across the lake and forced the dementors to retreat .Hermione s mouth was slightly open by the time Harry had finished .But what was it ?Theres only one thing it could have been to make the dementors go said Harry .A real Patronus .A powerful one .But who conjured it ?Harry didnt say anything .He was thinking back to the person hed seen on the other bank of the lake .He knew who he thought it had been .but how could it have been ?Didnt you see what they looked like ?said Hermione eagerly .Was it one of the teachers ?No said Harry .He wasnt a teacher .But it must have been a really powerful wizard to drive all those dementors away .If the Patronus was shining so brightly didnt it light him up ?Couldnt you see ?Yeah I saw him said Harry slowly .But .maybe I imagined it .I wasnt thinking straight .I passed out right afterward .Who did you think it was ?I think Harry swallowed knowing how strange this was going to sound .I think it was my dad .Harry glanced up at Hermione and saw that her mouth was fully open now .She was gazing at him with a mixture of alarm and pity .Harry your dads well dead she said quietly .I know that said Harry quickly .You think you saw his ghost ?I dont know .no .he looked solid .But then Maybe I was seeing things said Harry .But .from what I could see .it looked like him .Ive got photos of him .Hermione was still looking at him as though worried about his sanity .I know it sounds crazy said Harry flatly .He turned to look at Buckbeak who was digging his beak into the ground apparently searching for worms .But he wasnt really watching Buckbeak .He was thinking about his father and about his fathers three oldest friends .Moony Wormtail Padfoot and Prongs .Had all four of them been out on the grounds tonight ?Wormtail had reappeared this evening when everyone had thought he was dead . .Was it so impossible his father had done the same ?Had he been seeing things across the lake ?The figure had been too far away to see distinctly .yet he had felt sure for a moment before hed lost consciousness .The leaves overhead rustled faintly in the breeze .The moon drifted in and out of sight behind the shifting clouds .Hermione sat with her face turned toward the Willow waiting .And then at last after over an hour .Here we come !Hermione whispered .She and Harry got to their feet .Buckbeak raised his head .They saw Lupin Pettigrew and Ron clambering awkwardly out of the hole in the roots .followed by the unconscious Snape drifting weirdly upward .Next came Harry Hermione and Black .They all began to walk toward the castle .Harrys heart was starting to beat very fast .He glanced up at the sky .Any moment now that cloud was going to move aside and show the moon .Harry Hermione muttered as though she knew exactly what he was thinking weve got to stay put .We mustnt be seen .Theres nothing we can do .So were just going to let Pettigrew escape all over again .said Harry quietly .How do you expect to find a rat in the dark ?snapped Hermione .Theres nothing we can do !We came back to help Sirius were not supposed to be doing anything else !All right .The moon slid out from behind its cloud .They saw the tiny figures across the grounds stop .Then they saw movement There goes Lupin Hermione whispered .Hes transforming Hermione !said Harry suddenly .Weve got to move !We mustnt I keep telling you Not to interfere !Lupins going to run into the forest right at us !Hermione gasped .Quick !she moaned dashing to untie Buckbeak .Quick !Where are we going to go ?Where are we going to hide ?The dementors will be coming any moment Back to Hagrids !Harry said .Its empty now come on !They ran as fast as they could Buckbeak cantering along behind them .They could hear the werewolf howling behind them .The cabin was in sight Harry skidded to the door wrenched it open and Hermione and Buckbeak flashed past him Harry threw himself in after them and bolted the door .Fang the boarhound barked loudly .Shh Fang its us !said Hermione hurrying over and scratching his ears to quieten him .That was really close !she said to Harry .Yeah .Harry was looking out of the window .It was much harder to see what was going on from here .Buckbeak seemed very happy to find himself back inside Hagrids house .He lay down in front of the fire folded his wings contentedly and seemed ready for a good nap .I think Id better go outside again you know said Harry slowly .I cant see whats going on we wont know when its time Hermione looked up .Her expression was suspicious .Im not going to try and interfere said Harry quickly .But if we dont see whats going on howre we going to know when its time to rescue Sirius ?Well .okay then .Ill wait here with Buckbeak .but Harry be careful theres a werewolf out there and the dementors Harry stepped outside again and edged around the cabin .He could hear yelping in the distance .That meant the dementors were closing in on Sirius .He and Hermione would be running to him any moment .Harry stared out toward the lake his heart doing a kind of drumroll in his chest .Whoever had sent that Patronus would be appearing at any moment .For a fraction of a second he stood irresolute in front of Hagrids door .You must not be seen .But he didnt want to be seen .He wanted to do the seeing .He had to know .And there were the dementors .They were emerging out of the darkness from every direction gliding around the edges of the lake .They were moving away from where Harry stood to the opposite bank . .He wouldnt have to get near them .Harry began to run .He had no thought in his head except his father .If it was him .if it really was him .he had to know had to find out .The lake was coming nearer and nearer but there was no sign of anybody .On the opposite bank he could see tiny glimmers of silver his own attempts at a Patronus There was a bush at the very edge of the water .Harry threw himself behind it peering desperately through the leaves .On the opposite bank the glimmers of silver were suddenly extinguished .A terrified excitement shot through him any moment now Come on !he muttered staring about .Where are you ?Dad come on But no one came .Harry raised his head to look at the circle of dementors across the lake .One of them was lowering its hood .It was time for the rescuer to appear but no one was coming to help this time And then it hit him he understood .He hadnt seen his father he had seen himself Harry flung himself out from behind the bush and pulled out his wand .EXPECTO PATRONUM he yelled .And out of the end of his wand burst not a shapeless cloud of mist but a blinding dazzling silver animal .He screwed up his eyes trying to see what it was .It looked like a horse .It was galloping silently away from him across the black surface of the lake .He saw it lower its head and charge at the swarming dementors .Now it was galloping around and around the black shapes on the ground and the dementors were falling back scattering retreating into the darkness .They were gone .The Patronus turned .It was cantering back toward Harry across the still surface of the water .It wasnt a horse .It wasnt a unicorn either .It was a stag .It was shining brightly as the moon above .it was coming back to him .It stopped on the bank .Its hooves made no mark on the soft ground as it stared at Harry with its large silver eyes .Slowly it bowed its antlered head .And Harry realized .Prongs he whispered .But as his trembling fingertips stretched toward the creature it vanished .Harry stood there hand still outstretched .Then with a great leap of his heart he heard hooves behind him he whirled around and saw Hermione dashing toward him dragging Buckbeak behind her .What did you do ?she said fiercely .You said you were only going to keep a lookout !I just saved all our lives .said Harry .Get behind here behind this bush Ill explain .Hermione listened to what had just happened with her mouth open yet again .Did anyone see you ?Yes havent you been listening ?I saw me but I thought I was my dad !Its okay !Harry I cant believe it .You conjured up a Patronus that drove away all those dementors !Thats very very advanced magic .I knew I could do it this time said Harry because Id already done it .Does that make sense ?I dont know Harry look at Snape !Together they peered around the bush at the other bank .Snape had regained consciousness .He was conjuring stretchers and lifting the limp forms of Harry Hermione and Black onto them .A fourth stretcher no doubt bearing Ron was already floating at his side .Then wand held out in front of him he moved them away toward the castle .Right its nearly time said Hermione tensely looking at her watch .Weve got about fortyfive minutes until Dumbledore locks the door to the hospital wing .Weve got to rescue Sirius and get back into the ward before anybody realizes were missing .They waited watching the moving clouds reflected in the lake while the bush next to them whispered in the breeze .Buckbeak bored was ferreting for worms again .Dyou reckon hes up there yet ?said Harry checking his watch .He looked up at the castle and began counting the windows to the right of the West Tower .Look !Hermione whispered .Whos that ?Someones coming back out of the castle !Harry stared through the darkness .The man was hurrying across the grounds toward one of the entrances .Something shiny glinted in his belt .Macnair !said Harry .The executioner !Hes gone to get the dementors !This is it Hermione Hermione put her hands on Buckbeaks back and Harry gave her a leg up .Then he placed his foot on one of the lower branches of the bush and climbed up in front of her .He pulled Buckbeaks rope back over his neck and tied it to the other side of his collar like reins .Ready ?he whispered to Hermione .Youd better hold on to me He nudged Buckbeaks sides with his heels .Buckbeak soared straight into the dark air .Harry gripped his flanks with his knees feeling the great wings rising powerfully beneath them .Hermione was holding Harry very tight around the waist he could hear her muttering Oh no I dont like this oh I really dont like this Harry urged Buckbeak forward .They were gliding quietly toward the upper floors of the castle .Harry pulled hard on the lefthand side of the rope and Buckbeak turned .Harry was trying to count the windows flashing past Whoa !he said pulling backward as hard as he could .Buckbeak slowed down and they found themselves at a stop unless you counted the fact that they kept rising up and down several feet as the hippogriff beat his wings to remain airborne .Hes there !Harry said spotting Sirius as they rose up beside the window .He reached out and as Buckbeaks wings fell was able to tap sharply on the glass .Black looked up .Harry saw his jaw drop .He leapt from his chair hurried to the window and tried to open it but it was locked .Stand back !Hermione called to him and she took out her wand still gripping the back of Harrys robes with her left hand .Alohomoral The window sprang open .How how ?said Black weakly staring at the hippogriff .Get on theres not much time said Harry gripping Buckbeak firmly on either side of his sleek neck to hold him steady .Youve got to get out of here the dementors are coming Macnairs gone to get them .Black placed a hand on either side of the window frame and heaved his head and shoulders out of it .It was very lucky he was so thin .In seconds he had managed to fling one leg over Buckbeaks back and pull himself onto the hippogriff behind Hermione .Okay Buckbeak up !said Harry shaking the rope .Up to the tower come on !The hippogriff gave one sweep of its mighty wings and they were soaring upward again high as the top of the West Tower .Buckbeak landed with a clatter on the battlements and Harry and Hermione slid off him at once .Sirius youd better go quick Harry panted .Theyll reach Flitwicks office any moment theyll find out youre gone .Buckbeak pawed the ground tossing his sharp head .What happened to the other boy ?Ron ?croaked Sirius .Hes going to be okay .Hes still out of it but Madam Pomfrey says shell be able to make him better .Quick go But Black was still staring down at Harry .How can I ever thank GO !Harry and Hermione shouted together .Black wheeled Buckbeak around facing the open sky .Well see each other again he said .You are truly your fathers son Harry .He squeezed Buckbeaks sides with his heels .Harry and Hermione jumped back as the enormous wings rose once more .The hippogriff took off into the air . .He and his rider became smaller and smaller as Harry gazed after them .then a cloud drifted across the moon .They were gone .OWL POST AGAIN Harry !Hermione was tugging at his sleeve staring at her watch .Weve got exactly ten minutes to get back down to the hospital wing without anybody seeing us before Dumbledore locks the door Okay said Harry wrenching his gaze from the sky lets go .They slipped through the doorway behind them and down a tightly spiraling stone staircase .As they reached the bottom of it they heard voices .They flattened themselves against the wall and listened .It sounded like Fudge and Snape .They were walking quickly along the corridor at the foot of the staircase . .only hope Dumbledore s not going to make difficulties Snape was saying .The Kiss will be performed immediately ?As soon as Macnair returns with the dementors .This whole Black affair has been highly embarrassing .I cant tell you how much Im looking forward to informing the Daily Prophet that weve got him at last . .I daresay theyll want to interview you Snape .and once young Harrys back in his right mind I expect hell want to tell the Prophet exactly how you saved him .Harry clenched his teeth .He caught a glimpse of Snapes smirk as he and Fudge passed Harry and Hermiones hiding place .Their footsteps died away .Harry and Hermione waited a few moments to make sure theyd really gone then started to run in the opposite direction .Down one staircase then another along a new corridor then they heard a cackling ahead .Peeves Harry muttered grabbing Hermiones wrist .In here !They tore into a deserted classroom to their left just in time .Peeves seemed to be bouncing along the corridor in boisterous good spirits laughing his head off .Oh hes horrible whispered Hermione her ear to the door .I bet hes all excited because the dementors are going to finish off Sirius .She checked her watch .Three minutes Harry !They waited until Peeves s gloating voice had faded into the distance then slid back out of the room and broke into a run again .Hermione whatll happen if we dont get back inside before Dumbledore locks the door ?Harry panted .I dont want to think about it !Hermione moaned checking her watch again .One minute !They had reached the end of the corridor with the hospital wing entrance .Okay I can hear Dumbledore said Hermione tensely .Come on Harry !They crept along the corridor .The door opened .Dumbledore s back appeared .I am going to lock you in they heard him saying .It is five minutes to midnight .Miss Granger three turns should do it .Good luck .Dumbledore backed out of the room closed the door and took out his wand to magically lock it .Panicking Harry and Hermione ran forward .Dumbledore looked up and a wide smile appeared under the long silver mustache .Well ?he said quietly .We did it !said Harry breathlessly .Sirius has gone on Buckbeak .Dumbledore beamed at them .Well done .I think He listened intently for any sound within the hospital wing .Yes I think youve gone too get inside Ill lock you in Harry and Hermione slipped back inside the dormitory .It was empty except for Ron who was still lying motionless in the end bed .As the lock clicked behind them Harry and Hermione crept back to their own beds Hermione tucking the TimeTurner back under her robes .A moment later Madam Pomfrey came striding back out of her office .Did I hear the headmaster leaving ?Am I allowed to look after my patients now ?She was in a very bad mood .Harry and Hermione thought it best to accept their chocolate quietly .Madam Pomfrey stood over them making sure they ate it .But Harry could hardly swallow .He and Hermione were waiting listening their nerves jangling .And then as they both took a fourth piece of chocolate from Madam Pomfrey they heard a distant roar of fury echoing from somewhere above them .What was that ?said Madam Pomfrey in alarm .Now they could hear angry voices growing louder and louder .Madam Pomfrey was staring at the door .Really theyll wake everybody up !What do they think theyre doing ?Harry was trying to hear what the voices were saying .They were drawing nearer He must have Disapparated Severus .We should have left somebody in the room with him .When this gets out HE DIDNT DISAPPARATE !Snape roared now very close at hand .YOU CANT APPARATE OR DISAPPARATE INSIDE THIS CASTLE !THIS HAS SOMETHING TO DO WITH POTTER !Severus be reasonable Harry has been locked up BAM .The door of the hospital wing burst open .Fudge Snape and Dumbledore came striding into the ward .Dumbledore alone looked calm .Indeed he looked as though he was quite enjoying himself .Fudge appeared angry .But Snape was beside himself .OUT WITH IT POTTER !he bellowed .WHAT DID YOU DO ?Professor Snape !shrieked Madam Pomfrey .Control yourself !See here Snape be reasonable said Fudge .This doors been locked we just saw THEY HELPED HIM ESCAPE I KNOW IT !Snape howled pointing at Harry and Hermione .His face was twisted spit was flying from his mouth .Calm down man !Fudge barked .Youre talking nonsense !YOU DONT KNOW POTTER !shrieked Snape .HE DID IT I KNOW HE DID IT That will do Severus said Dumbledore quietly .Think about what you are saying .This door has been locked since I left the ward ten minutes ago .Madam Pomfrey have these students left their beds ?Of course not !said Madam Pomfrey bristling .I would have heard them !Well there you have it Severus said Dumbledore calmly .Unless you are suggesting that Harry and Hermione are able to be in two places at once Im afraid I dont see any point in troubling them further .Snape stood there seething staring from Fudge who looked thoroughly shocked at his behavior to Dumbledore whose eyes were twinkling behind his glasses .Snape whirled about robes swishing behind him and stormed out of the ward .Fellow seems quite unbalanced said Fudge staring after him .Id watch out for him if I were you Dumbledore .Oh hes not unbalanced said Dumbledore quietly .Hes just suffered a severe disappointment .Hes not the only one !puffed Fudge .The Daily Prophets going to have a field day !We had Black cornered and he slipped through our fingers yet again !All it needs now is for the story of that hippogriffs escape to get out and Ill be a laughingstock !Well .Id better go and notify the Ministry .And the dementors ?said Dumbledore .Theyll be removed from the school I trust ?Oh yes theyll have to go said Fudge running his fingers distractedly through his hair .Never dreamed theyd attempt to administer the Kiss on an innocent boy .Completely out of control .no Ill have them packed off back to Azkaban tonight .Perhaps we should think about dragons at the school entrance .Hagrid would like that said Dumbledore smiling at Harry and Hermione .As he and Fudge left the dormitory Madam Pomfrey hurried to the door and locked it again .Muttering angrily to herself she headed back to her office .There was a low moan from the other end of the ward .Ron had woken up .They could see him sitting up rubbing his head looking around .What what happened ?he groaned .Harry ?Why are we in here ?Wheres Sirius ?Wheres Lupin ?Whats going on ?Harry and Hermione looked at each other .You explain said Harry helping himself to some more chocolate .When Harry Ron and Hermione left the hospital wing at noon the next day it was to find an almost deserted castle .The sweltering heat and the end of the exams meant that everyone was taking full advantage of another Hogsmeade visit .Neither Ron nor Hermione felt like going however so they and Harry wandered onto the grounds still talking about the extraordinary events of the previous night and wondering where Sirius and Buckbeak were now .Sitting near the lake watching the giant squid waving its tentacles lazily above the water Harry lost the thread of the conversation as he looked across to the opposite bank .The stag had galloped toward him from there just last night .A shadow fell across them and they looked up to see a very blearyeyed Hagrid mopping his sweaty face with one of his tableclothsized handkerchiefs and beaming down at them .Know I shouldn feel happy after wha happened las night he said .I mean Black escapin again an everythin but guess what ?What ?they said pretending to look curious .Beaky !He escaped !Hes free !Bin celebratin all night !Thats wonderful !said Hermione giving Ron a reproving look because he looked as though he was close to laughing .Yeah .cantve tied him up properly said Hagrid gazing happily out over the grounds .I was worried this mornin mind .thought he mighta met Professor Lupin on the grounds but Lupin says he never ate anythin las night .What ?said Harry quickly .Blimey haven yeh heard ?said Hagrid his smile fading a little .He lowered his voice even though there was nobody in sight .Er Snape told all the Slytherins this mornin .Thought everyone d know by now .Professor Lupins a werewolf see .An he was loose on the grounds las night .Hes packin now o course .Hes packing ?said Harry alarmed .Why ?Leavin isn he ?said Hagrid looking surprised that Harry had to ask .Resigned firs thing this mornin .Says he cant risk it happenin again .Harry scrambled to his feet .Im going to see him he said to Ron and Hermione .But if hes resigned doesnt sound like theres anything we can do I dont care .I still want to see him .Ill meet you back here .Lupins office door was open .He had already packed most of his things .The grindylows empty tank stood next to his battered old suitcase which was open and nearly full .Lupin was bending over something on his desk and looked up only when Harry knocked on the door .I saw you coming said Lupin smiling .He pointed to the parchment he had been poring over .It was the Marauders Map .I just saw Hagrid said Harry .And he said youd resigned .Its not true is it ?Im afraid it is said Lupin .He started opening his desk drawers and taking out the contents .Why ?said Harry .The Ministry of Magic dont think you were helping Sirius do they ?Lupin crossed to the door and closed it behind Harry .No .Professor Dumbledore managed to convince Fudge that I was trying to save your lives .He sighed .That was the final straw for Severus .I think the loss of the Order of Merlin hit him hard .So he er accidentally let slip that I am a werewolf this morning at breakfast .Youre not leaving just because of that !said Harry .Lupin smiled wryly .This time tomorrow the owls will start arriving from parents .They will not want a werewolf teaching their children Harry .And after last night I see their point .I could have bitten any of you .That must never happen again .Youre the best Defense Against the Dark Arts teacher weve ever had !said Harry .Dont go !Lupin shook his head and didnt speak .He carried on emptying his drawers .Then while Harry was trying to think of a good argument to make him stay Lupin said From what the headmaster told me this morning you saved a lot of lives last night Harry .If Im proud of anything Ive done this year its how much youve learned .Tell me about your Patronus .How dyou know about that ?said Harry distracted .What else could have driven the dementors back ?Harry told Lupin what had happened .When hed finished Lupin was smiling again .Yes your father was always a stag when he transformed he said .You guessed right .thats why we called him Prongs .Lupin threw his last few books into his case closed the desk drawers and turned to look at Harry .Here I brought this from the Shrieking Shack last night he said handing Harry back the Invisibility Cloak .And .He hesitated then held out the Marauders Map too .I am no longer your teacher so I dont feel guilty about giving you back this as well .Its no use to me and I daresay you Ron and Hermione will find uses for it .Harry took the map and grinned .You told me Moony Wormtail Padfoot and Prongs wouldve wanted to lure me out of school .you said theyd have thought it was funny .And so we would have said Lupin now reaching down to close his case .I have no hesitation in saying that James would have been highly disappointed if his son had never found any of the secret passages out of the castle .There was a knock on the door .Harry hastily stuffed the Marauders Map and the Invisibility Cloak into his pocket .It was Professor Dumbledore .He didnt look surprised to see Harry there .Your carriage is at the gates Remus he said .Thank you Headmaster .Lupin picked up his old suitcase and the empty grindylow tank .Well goodbye Harry he said smiling .It has been a real pleasure teaching you .I feel sure well meet again sometime .Headmaster there is no need to see me to the gates I can manage .Harry had the impression that Lupin wanted to leave as quickly as possible .Goodbye then Remus said Dumbledore soberly .Lupin shifted the grindylow tank slightly so that he and Dumbledore could shake hands .Then with a final nod to Harry and a swift smile Lupin left the office .Harry sat down in his vacated chair staring glumly at the floor .He heard the door close and looked up .Dumbledore was still there .Why so miserable Harry ?he said quietly .You should be very proud of yourself after last night .It didnt make any difference said Harry bitterly .Pettigrew got away .Didnt make any difference ?said Dumbledore quietly .It made all the difference in the world Harry .You helped uncover the truth .You saved an innocent man from a terrible fate .Terrible .Something stirred in Harrys memory .Greater and more terrible than ever before .Professor Trelawneys prediction !Professor Dumbledore yesterday when I was having my Divination exam Professor Trelawney went very very strange .Indeed ?said Dumbledore .Er stranger than usual you mean ?Yes .her voice went all deep and her eyes rolled and she said .she said Voldemorts servant was going to set out to return to him before midnight .She said the servant would help him come back to power .Harry stared up at Dumbledore .And then she sort of became normal again and she couldnt remember anything shed said .Was it was she making a real prediction ?Dumbledore looked mildly impressed .Do you know Harry I think she might have been he said thoughtfully .Whod have thought it ?That brings her total of real predictions up to two .I should offer her a pay raise .But Harry looked at him aghast .How could Dumbledore take this so calmly ?But I stopped Sirius and Professor Lupin from killing Pettigrew !That makes it my fault if Voldemort comes back !It does not said Dumbledore quietly .Hasnt your experience with the TimeTurner taught you anything Harry ?The consequences of our actions are always so complicated so diverse that predicting the future is a very difficult business indeed .Professor Trelawney bless her is living proof of that .You did a very noble thing in saving Pettigrews life .But if he helps Voldemort back to power !Pettigrew owes his life to you .You have sent Voldemort a deputy who is in your debt .When one wizard saves another wizards life it creates a certain bond between them .and Im much mistaken if Voldemort wants his servant in the debt of Harry Potter .I dont want a connection with Pettigrew !said Harry .He betrayed my parents !This is magic at its deepest its most impenetrable Harry .But trust me .the time may come when you will be very glad you saved Pettigrews life .Harry couldnt imagine when that would be .Dumbledore looked as though he knew what Harry was thinking .I knew your father very well both at Hogwarts and later Harry he said gently .He would have saved Pettigrew too I am sure of it .Harry looked up at him .Dumbledore wouldnt laugh he could tell Dumbledore .I thought it was my dad whod conjured my Patronus .I mean when I saw myself across the lake .I thought I was seeing him .An easy mistake to make said Dumbledore softly .I expect you 11 tire of hearing it but you do look extraordinarily like James .Except for the eyes .you have your mothers eyes .Harry shook his head .It was stupid thinking it was him he muttered .I mean I knew he was dead .You think the dead we loved ever truly leave us ?You think that we dont recall them more clearly than ever in times of great trouble ?Your father is alive in you Harry and shows himself most plainly when you have need of him .How else could you produce that particular Patronus ?Prongs rode again last night .It took a moment for Harry to realize what Dumbledore had said .Last night Sirius told me all about how they became Animagi said Dumbledore smiling .An extraordinary achievement not least keeping it quiet from me .And then I remembered the most unusual form your Patronus took when it charged Mr Malfoy down at your Quidditch match against Ravenclaw .You know Harry in a way you did see your father last night .You found him inside yourself .And Dumbledore left the office leaving Harry to his very confused thoughts .Nobody at Hogwarts now knew the truth of what had happened the night that Sirius Buckbeak and Pettigrew had vanished except Harry Ron Hermione and Professor Dumbledore .As the end of term approached Harry heard many different theories about what had really happened but none of them came close to the truth .Malfoy was furious about Buckbeak .He was convinced that Hagrid had found a way of smuggling the hippogriff to safety and seemed outraged that he and his father had been outwitted by a gamekeeper .Percy Weasley meanwhile had much to say on the subject of Siriuss escape .If I manage to get into the Ministry Ill have a lot of proposals to make about Magical Law Enforcement !he told the only person who would listen his girlfriend Penelope .Though the weather was perfect though the atmosphere was so cheerful though he knew they had achieved the near impossible in helping Sirius to freedom Harry had never approached the end of a school year in worse spirits .He certainly wasnt the only one who was sorry to see Professor Lupin go .The whole of Harrys Defense Against the Dark Arts class was miserable about his resignation .Wonder what theyll give us next year ?said Seamus Finnigan gloomily .Maybe a vampire suggested Dean Thomas hopefully .It wasnt only Professor Lupins departure that was weighing on Harrys mind .He couldnt help thinking a lot about Professor Trelawneys prediction .He kept wondering where Pettigrew was now whether he had sought sanctuary with Voldemort yet .But the thing that was lowering Harrys spirits most of all was the prospect of returning to the Dursleys .For maybe half an hour a glorious half hour he had believed he would be living with Sirius from now on .his parents best friend .It would have been the next best thing to having his own father back .And while no news of Sirius was definitely good news because it meant he had successfully gone into hiding Harry couldnt help feeling miserable when he thought of the home he might have had and the fact that it was now impossible .The exam results came out on the last day of term .Harry Ron and Hermione had passed every subject .Harry was amazed that he had got through Potions .He had a shrewd suspicion that Dumbledore might have stepped in to stop Snape failing him on purpose .Snapes behavior toward Harry over the past week had been quite alarming .Harry wouldnt have thought it possible that Snapes dislike for him could increase but it certainly had .A muscle twitched unpleasantly at the corner of Snapes thin mouth every time he looked at Harry and he was constantly flexing his fingers as though itching to place them around Harrys throat .Percy had got his topgrade N .E .W .T .s Fred and George had scraped a handful of O .W .L .s each .Gryffindor House meanwhile largely thanks to their spectacular performance in the Quidditch Cup had won the House championship for the third year running .This meant that the end of term feast took place amid decorations of scarlet and gold and that the Gryffindor table was the noisiest of the lot as everybody celebrated .Even Harry managed to forget about the journey back to the Dursleys the next day as he ate drank talked and laughed with the rest .As the Hogwarts Express pulled out of the station the next morning Hermione gave Harry and Ron some surprising news .I went to see Professor McGonagall this morning just before breakfast .Ive decided to drop Muggle Studies .But you passed your exam with three hundred and twenty percent !said Ron .I know sighed Hermione but I cant stand another year like this one .That TimeTurner it was driving me mad .Ive handed it in .Without Muggle Studies and Divination Ill be able to have a normal schedule again .I still cant believe you didnt tell us about it said Ron grumpily .Were supposed to be your friends .I promised I wouldnt tell anyone said Hermione severely .She looked around at Harry who was watching Hogwarts disappear from view behind a mountain .Two whole months before hed see it again .Oh cheer up Harry !said Hermione sadly .Im okay said Harry quickly .Just thinking about the holidays .Yeah Ive been thinking about them too said Ron .Harry youve got to come and stay with us .Ill fix it up with Mum and Dad then Ill call you .I know how to use a fellytone now A telephone Ron said Hermione .Honestly you should take Muggle Studies next year .Ron ignored her .Its the Quidditch World Cup this summer !How about it Harry ?Come and stay and well go and see it !Dad can usually get tickets from work .This proposal had the effect of cheering Harry up a great deal .Yeah .I bet the Dursleysd be pleased to let me come .especially after what I did to Aunt Marge .Feeling considerably more cheerful Harry joined Ron and Hermione in several games of Exploding Snap and when the witch with the tea cart arrived he bought himself a very large lunch though nothing with chocolate in it .But it was late in the afternoon before the thing that made him truly happy turned up .Harry said Hermione suddenly peering over his shoulder .Whats that thing outside your window ?Harry turned to look outside .Something very small and gray was bobbing in and out of sight beyond the glass .He stood up for a better look and saw that it was a tiny owl carrying a letter that was much too big for it .The owl was so small in fact that it kept tumbling over in the air buffeted this way and that in the trains slipstream .Harry quickly pulled down the window stretched out his arm and caught it .It felt like a very fluffy Snitch .He brought it carefully inside .The owl dropped its letter onto Harrys seat and began zooming around their compartment apparently very pleased with itself for accomplishing its task .Hedwig clicked her beak with a sort of dignified disapproval .Crookshanks sat up in his seat following the owl with his great yellow eyes .Ron noticing this snatched the owl safely out of harms way .Harry picked up the letter .It was addressed to him .He ripped open the letter and shouted Its from Sirius !What ?said Ron and Hermione excitedly .Read it aloud !Dear Harry I hope this finds you before you reach your aunt and uncle .I dont know whether theyre used to owl post Buckbeak and I are in hiding .I wont tell you where in case this owl falls into the wrong hands .I have some doubt about his reliability but he is the best I could find and he did seem eager for the job .I believe the dementors are still searching for me but they havent a hope of finding me here .I am planning to allow some Muggles to glimpse me soon a long way from Hogwarts so that the security on the castle will be lifted .There is something I never got around to telling you during our brief meeting .It was I who sent you the Firebolt Ha !said Hermione triumphantly .See !I told you it was from him !Yes but he hadnt jinxed it had he ?said Ron .Ouch !The tiny owl now hooting happily in his hand had nibbled one of his fingers in what it seemed to think was an affectionate way .Crookshanks took the order to the Owl Office for me .I used your name but told them to take the gold from my own Gringotts vault .Please consider it as thirteen birthdays worth of presents from your godfather .I would also like to apologize for the fright I think I gave you that night last year when you left your uncles house .I had only hoped to get a glimpse of you before starting my journey north but I think the sight of me alarmed you .I am enclosing something else for you which I think will make your next year at Hogwarts more enjoyable .If ever you need me send word .Your owl will find me .Ill write again soon .Sirius Harry looked eagerly inside the envelope .There was another piece of parchment in there .He read it through quickly and felt suddenly as warm and contented as though hed swallowed a bottle of hot butterbeer in one gulp .I Sirius Black Harry Potters godfather hereby give him permission to visit Hogsmeade on weekends .Thatll be good enough for Dumbledore !said Harry happily .He looked back at Siriuss letter .Hang on theres a P .S .I thought your friend Ron might like to keep this owl as its my fault he no longer has a rat .Rons eyes widened .The minute owl was still hooting excitedly .Keep him ?he said uncertainly .He looked closely at the owl for a moment then to Harrys and Hermiones great surprise he held him out for Crookshanks to sniff .What doyou reckon ?Ron asked the cat .Definitely an owl ?Crookshanks purred .Thats good enough for me said Ron happily .Hes mine .Harry read and reread the letter from Sirius all the way back into Kings Cross station .It was still clutched tightly in his hand as he Ron and Hermione stepped back through the barrier of platform nine and threequarters .Harry spotted Uncle Vernon at once .He was standing a good distance from Mr and Mrs Weasley eyeing them suspiciously and when Mrs Weasley hugged Harry in greeting his worst suspicions about them seemed confirmed .Ill call about the World Cup !Ron yelled after Harry as Harry bid him and Hermione goodbye then wheeled the trolley bearing his trunk and Hedwigs cage toward Uncle Vernon who greeted him in his usual fashion .Whats that ?he snarled staring at the envelope Harry was still clutching in his hand .If its another form for me to sign youve got another Its not said Harry cheerfully .Its a letter from my godfather .Godfather ?sputtered Uncle Vernon .You havent got a godfather !Yes I have said Harry brightly .He was my mum and dads best friend .Hes a convicted murderer but hes broken out of wizard prison and hes on the run .He likes to keep in touch with me though .keep up with my news .check if Im happy .And grinning broadly at the look of horror on Uncle Vernons face Harry set off toward the station exit Hedwig rattling along in front of him for what looked like a much better summer than the last .THE RIDDLE HOUSE The villagers of Little Hangleton still called it the Riddle House even though it had been many years since the Riddle family had lived there .It stood on a hill overlooking the village some of its windows boarded tiles missing from its roof and ivy spreading unchecked over its face .Once a finelooking manor and easily the largest and grandest building for miles around the Riddle House was now damp derelict and unoccupied .The Little Hangletons all agreed that the old house was creepy .Half a century ago something strange and horrible had happened there something that the older inhabitants of the village still liked to discuss when topics for gossip were scarce .The story had been picked over so many times and had been embroidered in so many places that nobody was quite sure what the truth was anymore .Every version of the tale however started in the same place Fifty years before at daybreak on a fine summers morning when the Riddle House had still been well kept and impressive a maid had entered the drawing room to find all three Riddles dead .The maid had run screaming down the hill into the village and roused as many people as she could .Lying there with their eyes wide open !Cold as ice !Still in their dinner things !The police were summoned and the whole of Little Hangleton had seethed with shocked curiosity and ill disguised excitement .Nobody wasted their breath pretending to feel very sad about the Riddles for they had been most unpopular .Elderly Mr and Mrs Riddle had been rich snobbish and rude and their grownup son Tom had been if anything worse .All the villagers cared about was the identity of their murderer for plainly three apparently healthy people did not all drop dead of natural causes on the same night .The Hanged Man the village pub did a roaring trade that night the whole village seemed to have turned out to discuss the murders .They were rewarded for leaving their firesides when the Riddles cook arrived dramatically in their midst and announced to the suddenly silent pub that a man called Frank Bryce had just been arrested .Frank !cried several people .Never !Frank Bryce was the Riddles gardener .He lived alone in a rundown cottage on the grounds of the Riddle House .Frank had come back from the war with a very stiff leg and a great dislike of crowds and loud noises and had been working for the Riddles ever since .There was a rush to buy the cook drinks and hear more details .Always thought he was odd she told the eagerly listening villagers after her fourth sherry .Unfriendly like .Im sure if Ive offered him a cuppa once Ive offered it a hundred times .Never wanted to mix he didnt .Ah now said a woman at the bar he had a hard war Frank .He likes the quiet life .Thats no reason to Who else had a key to the back door then ?barked the cook .Theres been a spare key hanging in the gardeners cottage far back as I can remember !Nobody forced the door last night !No broken windows !All Frank had to do was creep up to the big house while we was all sleeping .The villagers exchanged dark looks .I always thought he had a nasty look about him right enough grunted a man at the bar .War turned him funny if you ask me said the landlord .Told you I wouldnt like to get on the wrong side of Frank didnt I Dot ?said an excited woman in the corner .Horrible temper said Dot nodding fervently .I remember when he was a kid .By the following morning hardly anyone in Little Hangleton doubted that Frank Bryce had killed the Riddles .But over in the neighboring town of Great Hangleton in the dark and dingy police station Frank was stubbornly repeating again and again that he was innocent and that the only person he had seen near the house on the day of the Riddles deaths had been a teenage boy a stranger darkhaired and pale .Nobody else in the village had seen any such boy and the police were quite sure that Frank had invented him .Then just when things were looking very serious for Frank the report on the Riddles bodies came back and changed everything .The police had never read an odder report .A team of doctors had examined the bodies and had concluded that none of the Riddles had been poisoned stabbed shot strangled suffocated or as far as they could tell harmed at all .In fact the report continued in a tone of unmistakable bewilderment the Riddles all appeared to be in perfect health apart from the fact that they were all dead .The doctors did note as though determined to find something wrong with the bodies that each of the Riddles had a look of terror upon his or her face but as the frustrated police said whoever heard of three people being frightened to death ?As there was no proof that the Riddles had been murdered at all the police were forced to let Frank go .The Riddles were buried in the Little Hangleton churchyard and their graves remained objects of curiosity for a while .To everyones surprise and amid a cloud of suspicion Frank Bryce returned to his cottage on the grounds of the Riddle House .S far as Im concerned he killed them and I dont care what the police say said Dot in the Hanged Man .And if he had any decency hed leave here knowing as how we knows he did it .But Frank did not leave .He stayed to tend the garden for the next family who lived in the Riddle House and then the next for neither family stayed long .Perhaps it was partly because of Frank that the new owners said there was a nasty feeling about the place which in the absence of inhabitants started to fall into disrepair .The wealthy man who owned the Riddle House these days neither lived there nor put it to any use they said in the village that he kept it for tax reasons though nobody was very clear what these might be .The wealthy owner continued to pay Frank to do the gardening however .Frank was nearing his seventy seventh birthday now very deaf his bad leg stiffer than ever but could be seen pottering around the flower beds in fine weather even though the weeds were starting to creep up on him try as he might to suppress them .Weeds were not the only things Frank had to contend with either .Boys from the village made a habit of throwing stones through the windows of the Riddle House .They rode their bicycles over the lawns Frank worked so hard to keep smooth .Once or twice they broke into the old house for a dare .They knew that old Franks devotion to the house and grounds amounted almost to an obsession and it amused them to see him limping across the garden brandishing his stick and yelling croakily at them .Frank for his part believed the boys tormented him because they like their parents and grandparents thought him a murderer .So when Frank awoke one night in August and saw something very odd up at the old house he merely assumed that the boys had gone one step further in their attempts to punish him .It was Franks bad leg that woke him it was paining him worse than ever in his old age .He got up and limped downstairs into the kitchen with the idea of refilling his hotwater bottle to ease the stiffness in his knee .Standing at the sink filling the kettle he looked up at the Riddle House and saw lights glimmering in its upper windows .Frank knew at once what was going on .The boys had broken into the house again and judging by the flickering quality of the light they had started a fire .Frank had no telephone and in any case he had deeply mistrusted the police ever since they had taken him in for questioning about the Riddles deaths .He put down the kettle at once hurried back upstairs as fast as his bad leg would allow and was soon back in his kitchen fully dressed and removing a rusty old key from its hook by the door .He picked up his walking stick which was propped against the wall and set off into the night .The front door of the Riddle House bore no sign of being forced nor did any of the windows .Frank limped around to the back of the house until he reached a door almost completely hidden by ivy took out the old key put it into the lock and opened the door noiselessly .He let himself into the cavernous kitchen .Frank had not entered it for many years nevertheless although it was very dark he remembered where the door into the hall was and he groped his way toward it his nostrils full of the smell of decay ears pricked for any sound of footsteps or voices from overhead .He reached the hall which was a little lighter owing to the large mullioned windows on either side of the front door and started to climb the stairs blessing the dust that lay thick upon the stone because it muffled the sound of his feet and stick .On the landing Frank turned right and saw at once where the intruders were At the very end of the passage a door stood ajar and a flickering light shone through the gap casting a long sliver of gold across the black floor .Frank edged closer and closer grasping his walking stick firmly .Several feet from the entrance he was able to see a narrow slice of the room beyond .The fire he now saw had been lit in the grate .This surprised him .Then he stopped moving and listened intently for a mans voice spoke within the room it sounded timid and fearful .There is a little more in the bottle My Lord if you are still hungry .Later said a second voice .This too belonged to a man but it was strangely highpitched and cold as a sudden blast of icy wind .Something about that voice made the sparse hairs on the back of Franks neck stand up .Move me closer to the fire Wormtail .Frank turned his right ear toward the door the better to hear .There came the clink of a bottle being put down upon some hard surface and then the dull scraping noise of a heavy chair being dragged across the floor .Frank caught a glimpse of a small man his back to the door pushing the chair into place .He was wearing a long black cloak and there was a bald patch at the back of his head .Then he went out of sight again .Where is Nagini ?said the cold voice .I I dont know My Lord said the first voice nervously .She set out to explore the house I think .You will milk her before we retire Wormtail said the second voice .I will need feeding in the night .The journey has tired me greatly .Brow furrowed Frank inclined his good ear still closer to the door listening very hard .There was a pause and then the man called Wormtail spoke again .My Lord may I ask how long we are going to stay here ?A week said the cold voice .Perhaps longer .The place is moderately comfortable and the plan cannot proceed yet .It would be foolish to act before the Quidditch World Cup is over .Frank inserted a gnarled finger into his ear and rotated it .Owing no doubt to a buildup of earwax he had heard the word Quidditch which was not a word at all .The the Quidditch World Cup My Lord ?said Wormtail .Frank dug his finger still more vigorously into his ear .Forgive me but I do not understand why should we wait until the World Cup is over ?Because fool at this very moment wizards are pouring into the country from all over the world and every meddler from the Ministry of Magic will be on duty on the watch for signs of unusual activity checking and doublechecking identities .They will be obsessed with security lest the Muggles notice anything .So we wait .Frank stopped trying to clear out his ear .He had distinctly heard the words Ministry of Magic wizards and Muggles .Plainly each of these expressions meant something secret and Frank could think of only two sorts of people who would speak in code spies and criminals .Frank tightened his hold on his walking stick once more and listened more closely still .Your Lordship is still determined then ?Wormtail said quietly .Certainly I am determined Wormtail .There was a note of menace in the cold voice now .A slight pause followed and then Wormtail spoke the words tumbling from him in a rush as though he was forcing himself to say this before he lost his nerve .It could be done without Harry Potter My Lord .Another pause more protracted and then Without Harry Potter ?breathed the second voice softly .I see .My Lord I do not say this out of concern for the boy !said Wormtail his voice rising squeakily .The boy is nothing to me nothing at all !It is merely that if we were to use another witch or wizard any wizard the thing could be done so much more quickly !If you allowed me to leave you for a short while you know that I can disguise myself most effectively I could be back here in as little as two days with a suitable person I could use another wizard said the cold voice softly that is true .My Lord it makes sense said Wormtail sounding thoroughly relieved now .Laying hands on Harry Potter would be so difficult he is so well protected And so you volunteer to go and fetch me a substitute ?I wonder .perhaps the task of nursing me has become wearisome for you Wormtail ?Could this suggestion of abandoning the plan be nothing more than an attempt to desert me ?My Lord !I I have no wish to leave you none at all Do not lie to me !hissed the second voice .I can always tell Wormtail !You are regretting that you ever returned to me .I revolt you .I see you flinch when you look at me feel you shudder when you touch me .No !My devotion to Your Lordship Your devotion is nothing more than cowardice .You would not be here if you had anywhere else to go .How am I to survive without you when I need feeding every few hours ?Who is to milk Nagini ?But you seem so much stronger My Lord Liar breathed the second voice .I am no stronger and a few days alone would be enough to rob me of the little health I have regained under your clumsy care .Silencel Wormtail who had been sputtering incoherently fell silent at once .For a few seconds Frank could hear nothing but the fire crackling .Then the second man spoke once more in a whisper that was almost a hiss .I have my reasons for using the boy as I have already explained to you and I will use no other .I have waited thirteen years .A few more months will make no difference .As for the protection surrounding the boy I believe my plan will be effective .All that is needed is a little courage from you Wormtail courage you will find unless you wish to feel the full extent of Lord Voldemorts wrath My Lord I must speak !said Wormtail panic in his voice now .All through our journey I have gone over the plan in my head My Lord Bertha Jorkinss disappearance will not go unnoticed for long and if we proceed if I murder IP whispered the second voice .If ?If you follow the plan Wormtail the Ministry need never know that anyone else has died .You will do it quietly and without fuss I only wish that I could do it myself but in my present condition .Come Wormtail one more death and our path to Harry Potter is clear .I am not asking you to do it alone .By that time my faithful servant will have rejoined us I am a faithful servant said Wormtail the merest trace of sullenness in his voice .Wormtail I need somebody with brains somebody whose loyalty has never wavered and you unfortunately fulfill neither requirement .I found you said Wormtail and there was definitely a sulky edge to his voice now .I was the one who found you .I brought you Bertha Jorkins .That is true said the second man sounding amused .A stroke of brilliance I would not have thought possible from you Wormtail though if truth be told you were not aware how useful she would be when you caught her were you ?I I thought she might be useful My Lord Liar said the second voice again the cruel amusement more pronounced than ever .However I do not deny that her information was invaluable .Without it I could never have formed our plan and for that you will have your reward Wormtail .I will allow you to perform an essential task for me one that many of my followers would give their right hands to perform .Rreally My Lord ?What ?Wormtail sounded terrified again .Ah Wormtail you dont want me to spoil the surprise ?Your part will come at the very end .but I promise you you will have the honor of being just as useful as Bertha Jorkins .You .you .Wormtails voice suddenly sounded hoarse as though his mouth had gone very dry .You .are going .to kill me too ?Wormtail Wormtail said the cold voice silkily why would I kill you ?I killed Bertha because I had to .She was fit for nothing after my questioning quite useless .In any case awkward questions would have been asked if she had gone back to the Ministry with the news that she had met you on her holidays .Wizards who are supposed to be dead would do well not to run into Ministry of Magic witches at wayside inns .Wormtail muttered something so quietly that Frank could not hear it but it made the second man laugh an entirely mirthless laugh cold as his speech .We could have modified her memory ?But Memory Charms can be broken by a powerful wizard as I proved when I questioned her .It would be an insult to her memory not to use the information I extracted from her Wormtail .Out in the corridor Frank suddenly became aware that the hand gripping his walking stick was slippery with sweat .The man with the cold voice had killed a woman .He was talking about it without any kind of remorse with amusement .He was dangerous a madman .And he was planning more murders this boy Harry Potter whoever he was was in danger Frank knew what he must do .Now if ever was the time to go to the police .He would creep out of the house and head straight for the telephone box in the village .but the cold voice was speaking again and Frank remained where he was frozen to the spot listening with all his might .One more murder .my faithful servant at Hogwarts .Harry Potter is as good as mine Wormtail .It is decided .There will be no more argument .But quiet .I think I hear Nagini .And the second mans voice changed .He started making noises such as Frank had never heard before he was hissing and spitting without drawing breath .Frank thought he must be having some sort of fit or seizure .And then Frank heard movement behind him in the dark passageway .He turned to look and found himself paralyzed with fright .Something was slithering toward him along the dark corridor floor and as it drew nearer to the sliver of firelight he realized with a thrill of terror that it was a gigantic snake at least twelve feet long .Horrified transfixed Frank stared as its undulating body cut a wide curving track through the thick dust on the floor coming closer and closer What was he to do ?The only means of escape was into the room where two men sat plotting murder yet if he stayed where he was the snake would surely kill him But before he had made his decision the snake was level with him and then incredibly miraculously it was passing it was following the spitting hissing noises made by the cold voice beyond the door and in seconds the tip of its diamondpatterned tail had vanished through the gap .There was sweat on Franks forehead now and the hand on the walking stick was trembling .Inside the room the cold voice was continuing to hiss and Frank was visited by a strange idea an impossible idea .This man could talk to snakes .Frank didnt understand what was going on .He wanted more than anything to be back in his bed with his hotwater bottle .The problem was that his legs didnt seem to want to move .As he stood there shaking and trying to master himself the cold voice switched abruptly to English again .Nagini has interesting news Wormtail it said .Inindeed My Lord ?said Wormtail .Indeed yes said the voice .According to Nagini there is an old Muggle standing right outside this room listening to every word we say .Frank didnt have a chance to hide himself .There were footsteps and then the door of the room was flung wide open .A short balding man with graying hair a pointed nose and small watery eyes stood before Frank a mixture of fear and alarm in his face .Invite him inside Wormtail .Where are your manners ?The cold voice was coming from the ancient armchair before the fire but Frank couldnt see the speaker .The snake on the other hand was curled up on the rotting hearth rug like some horrible travesty of a pet dog .Wormtail beckoned Frank into the room .Though still deeply shaken Frank took a firmer grip upon his walking stick and limped over the threshold .The fire was the only source of light in the room it cast long spidery shadows upon the walls .Frank stared at the back of the armchair the man inside it seemed to be even smaller than his servant for Frank couldnt even see the back of his head .You heard everything Muggle ?said the cold voice .Whats that youre calling me ?said Frank defiantly for now that he was inside the room now that the time had come for some sort of action he felt braver it had always been so in the war .I am calling you a Muggle said the voice coolly .It means that you are not a wizard .I dont know what you mean by wizard said Frank his voice growing steadier .All I know is Ive heard enough to interest the police tonight I have .Youve done murder and youre planning more !And Ill tell you this too he added on a sudden inspiration my wife knows Im up here and if I dont come back You have no wife said the cold voice very quietly .Nobody knows you are here .You told nobody that you were coming .Do not lie to Lord Voldemort Muggle for he knows .he always knows .Is that right ?said Frank roughly .Lord is it ?Well I dont think much of your manners My Lord .Turn round and face me like a man why dont you ?But I am not a man Muggle said the cold voice barely audible now over the crackling of the flames .I am much much more than a man .However .why not ?I will face you .Wormtail come turn my chair around .The servant gave a whimper .You heard me Wormtail .Slowly with his face screwed up as though he would rather have done anything than approach his master and the hearth rug where the snake lay the small man walked forward and began to turn the chair .The snake lifted its ugly triangular head and hissed slightly as the legs of the chair snagged on its rug .And then the chair was facing Frank and he saw what was sitting in it .His walking stick fell to the floor with a clatter .He opened his mouth and let out a scream .He was screaming so loudly that he never heard the words the thing in the chair spoke as it raised a wand .There was a flash of green light a rushing sound and Frank Bryce crumpled .He was dead before he hit the floor .Two hundred miles away the boy called Harry Potter woke with a start .THE SCAR Harry lay flat on his back breathing hard as though he had been running .He had awoken from a vivid dream with his hands pressed over his face .The old scar on his forehead which was shaped like a bolt of lightning was burning beneath his fingers as though someone had just pressed a whitehot wire to his skin .He sat up one hand still on his scar the other reaching out in the darkness for his glasses which were on the bedside table .He put them on and his bedroom came into clearer focus lit by a faint misty orange light that was filtering through the curtains from the street lamp outside the window .Harry ran his fingers over the scar again .It was still painful .He turned on the lamp beside him scrambled out of bed crossed the room opened his wardrobe and peered into the mirror on the inside of the door .A skinny boy of fourteen looked back at him his bright green eyes puzzled under his untidy black hair .He examined the lightningbolt scar of his reflection more closely .It looked normal but it was still stinging .Harry tried to recall what he had been dreaming about before he had awoken .It had seemed so real .There had been two people he knew and one he didnt .He concentrated hard frowning trying to remember .The dim picture of a darkened room came to him .There had been a snake on a hearth rug .a small man called Peter nicknamed Wormtail .and a cold high voice .the voice of Lord Voldemort .Harry felt as though an ice cube had slipped down into his stomach at the very thought .He closed his eyes tightly and tried to remember what Voldemort had looked like but it was impossible .All Harry knew was that at the moment when Voldemorts chair had swung around and he Harry had seen what was sitting in it he had felt a spasm of horror which had awoken him .or had that been the pain in his scar ?And who had the old man been ?For there had definitely been an old man Harry had watched him fall to the ground .It was all becoming confused .Harry put his face into his hands blocking out his bedroom trying to hold on to the picture of that dimly lit room but it was like trying to keep water in his cupped hands the details were now trickling away as fast as he tried to hold on to them .Voldemort and Wormtail had been talking about someone they had killed though Harry could not remember the name .and they had been plotting to kill someone else .him .Harry took his face out of his hands opened his eyes and stared around his bedroom as though expecting to see something unusual there .As it happened there were an extraordinary number of unusual things in this room .A large wooden trunk stood open at the foot of his bed revealing a cauldron broomstick black robes and assorted spellbooks .Rolls of parchment littered that part of his desk that was not taken up by the large empty cage in which his snowy owl Hedwig usually perched .On the floor beside his bed a book lay open Harry had been reading it before he fell asleep last night .The pictures in this book were all moving .Men in bright orange robes were zooming in and out of sight on broomsticks throwing a red ball to one another .Harry walked over to the book picked it up and watched one of the wizards score a spectacular goal by putting the ball through a fiftyfoothigh hoop .Then he snapped the book shut .Even Quidditch in Harrys opinion the best sport in the world couldnt distract him at the moment .He placed Flying with the Cannons on his bedside table crossed to the window and drew back the curtains to survey the street below .Privet Drive looked exactly as a respectable suburban street would be expected to look in the early hours of Saturday morning .All the curtains were closed .As far as Harry could see through the darkness there wasnt a living creature in sight not even a cat .And yet .and yet .Harry went restlessly back to the bed and sat down on it running a finger over his scar again .It wasnt the pain that bothered him Harry was no stranger to pain and injury .He had lost all the bones from his right arm once and had them painfully regrown in a night .The same arm had been pierced by a venomous footlong fang not long afterward .Only last year Harry had fallen fifty feet from an airborne broomstick .He was used to bizarre accidents and injuries they were unavoidable if you attended Hogwarts School of Witchcraft and Wizardry and had a knack for attracting a lot of trouble .No the thing that was bothering Harry was that the last time his scar had hurt him it had been because Voldemort had been close by .But Voldemort couldnt be here now .The idea of Voldemort lurking in Privet Drive was absurd impossible .Harry listened closely to the silence around him .Was he halfexpecting to hear the creak of a stair or the swish of a cloak ?And then he jumped slightly as he heard his cousin Dudley give a tremendous grunting snore from the next room .Harry shook himself mentally he was being stupid .There was no one in the house with him except Uncle Vernon Aunt Petunia and Dudley and they were plainly still asleep their dreams untroubled and painless .Asleep was the way Harry liked the Dursleys best it wasnt as though they were ever any help to him awake .Uncle Vernon Aunt Petunia and Dudley were Harrys only living relatives .They were Muggles who hated and despised magic in any form which meant that Harry was about as welcome in their house as dry rot .They had explained away Harrys long absences at Hogwarts over the last three years by telling everyone that he went to St .Brutuss Secure Center for Incurably Criminal Boys .They knew perfectly well that as an underage wizard Harry wasnt allowed to use magic outside Hogwarts but they were still apt to blame him for anything that went wrong about the house .Harry had never been able to confide in them or tell them anything about his life in the wizarding world .The very idea of going to them when they awoke and telling them about his scar hurting him and about his worries about Voldemort was laughable .And yet it was because of Voldemort that Harry had come to live with the Dursleys in the first place .If it hadnt been for Voldemort Harry would not have had the lightning scar on his forehead .If it hadnt been for Voldemort Harry would still have had parents .Harry had been a year old the night that Voldemort the most powerful Dark wizard for a century a wizard who had been gaining power steadily for eleven years arrived at his house and killed his father and mother .Voldemort had then turned his wand on Harry he had performed the curse that had disposed of many fullgrown witches and wizards in his steady rise to power and incredibly it had not worked .Instead of killing the small boy the curse had rebounded upon Voldemort .Harry had survived with nothing but a lightningshaped cut on his forehead and Voldemort had been reduced to something barely alive .His powers gone his life almost extinguished Voldemort had fled the terror in which the secret community of witches and wizards had lived for so long had lifted Voldemorts followers had disbanded and Harry Potter had become famous .It had been enough of a shock for Harry to discover on his eleventh birthday that he was a wizard it had been even more disconcerting to find out that everyone in the hidden wizarding world knew his name .Harry had arrived at Hogwarts to find that heads turned and whispers followed him wherever he went .But he was used to it now At the end of this summer he would be starting his fourth year at Hogwarts and Harry was already counting the days until he would be back at the castle again .But there was still a fortnight to go before he went back to school .He looked hopelessly around his room again and his eye paused on the birthday cards his two best friends had sent him at the end of July .What would they say if Harry wrote to them and told them about his scar hurting ?At once Hermione Grangers voice seemed to fill his head shrill and panicky .Your scar hurt ?Harry thats really serious .Write to Professor Dumbledorel And Ill go and check Common Magical Ailments and Afflictions .Maybe theres something in there about curse scars .Yes that would be Hermiones advice Go straight to the headmaster of Hogwarts and in the meantime consult a book .Harry stared out of the window at the inky blueblack sky .He doubted very much whether a book could help him now .As far as he knew he was the only living person to have survived a curse like Voldemorts it was highly unlikely therefore that he would find his symptoms listed in Common Magical Ailments and Afflictions .As for informing the headmaster Harry had no idea where Dumbledore went during the summer holidays .He amused himself for a moment picturing Dumbledore with his long silver beard fulllength wizards robes and pointed hat stretched out on a beach somewhere rubbing suntan lotion onto his long crooked nose .Wherever Dumbledore was though Harry was sure that Hedwig would be able to find him Harrys owl had never yet failed to deliver a letter to anyone even without an address .But what would he write ?Dear Professor Dumbledore Sorry to bother you but my scar hurt this morning .Yours sincerely Harry Potter .Even inside his head the words sounded stupid .And so he tried to imagine his other best friend Ron Weasleys reaction and in a moment Rons red hair and longnosed freckled face seemed to swim before Harry wearing a bemused expression .Your scar hurt ?But .but YouKnotuWho cant be near you now can he ?I mean .youd know wouldnt you ?Hed be trying to do you in again wouldnt he ?I dunno Harry maybe curse scars always twinge a bit .Ill ask Dad .Mr Weasley was a fully qualified wizard who worked in the Misuse of Muggle Artifacts Office at the Ministry of Magic but he didnt have any particular expertise in the matter of curses as far as Harry knew .In any case Harry didnt like the idea of the whole Weasley family knowing that he Harry was getting jumpy about a few moments pain .Mrs Weasley would fuss worse than Hermione and Fred and George Rons sixteenyearold twin brothers might think Harry was losing his nerve .The Weasleys were Harrys favorite family in the world he was hoping that they might invite him to stay any time now Ron had mentioned something about the Quidditch World Cup and he somehow didnt want his visit punctuated with anxious inquiries about his scar .Harry kneaded his forehead with his knuckles .What he really wanted and it felt almost shameful to admit it to himself was someone like someone like a parent an adult wizard whose advice he could ask without feeling stupid someone who cared about him who had had experience with Dark Magic .And then the solution came to him .It was so simple and so obvious that he couldnt believe it had taken so long Sirius .Harry leapt up from the bed hurried across the room and sat down at his desk he pulled a piece of parchment toward him loaded his eaglefeather quill with ink wrote Dear Sirius then paused wondering how best to phrase his problem still marveling at the fact that he hadnt thought of Sirius straight away .But then perhaps it wasnt so surprising after all he had only found out that Sirius was his godfather two months ago .There was a simple reason for Siriuss complete absence from Harrys life until then Sirius had been in Azkaban the terrifying wizard jail guarded by creatures called dementors sightless soulsucking fiends who had come to search for Sirius at Hogwarts when he had escaped .Yet Sirius had been innocent the murders for which he had been convicted had been committed by Wormtail Voldemorts supporter whom nearly everybody now believed dead .Harry Ron and Hermione knew otherwise however they had come facetoface with Wormtail only the previous year though only Professor Dumbledore had believed their story .For one glorious hour Harry had believed that he was leaving the Dursleys at last because Sirius had offered him a home once his name had been cleared .But the chance had been snatched away from him Wormtail had escaped before they could take him to the Ministry of Magic and Sirius had had to flee for his life .Harry had helped him escape on the back of a hippogriff called Buckbeak and since then Sirius had been on the run .The home Harry might have had if Wormtail had not escaped had been haunting him all summer .It had been doubly hard to return to the Dursleys knowing that he had so nearly escaped them forever .Nevertheless Sirius had been of some help to Harry even if he couldnt be with him .It was due to Sirius that Harry now had all his school things in his bedroom with him .The Dursleys had never allowed this before their general wish of keeping Harry as miserable as possible coupled with their fear of his powers had led them to lock his school trunk in the cupboard under the stairs every summer prior to this .But their attitude had changed since they had found out that Harry had a dangerous murderer for a godfather for Harry had conveniently forgotten to tell them that Sirius was innocent .Harry had received two letters from Sirius since he had been back at Privet Drive .Both had been delivered not by owls as was usual with wizards but by large brightly colored tropical birds .Hedwig had not approved of these flashy intruders she had been most reluctant to allow them to drink from her water tray before flying off again .Harry on the other hand had liked them they put him in mind of palm trees and white sand and he hoped that wherever Sirius was Sirius never said in case the letters were intercepted he was enjoying himself .Somehow Harry found it hard to imagine dementors surviving for long in bright sunlight perhaps that was why Sirius had gone south .Siriuss letters which were now hidden beneath the highly useful loose floorboard under Harrys bed sounded cheerful and in both of them he had reminded Harry to call on him if ever Harry needed to .Well he needed to now all right .Harrys lamp seemed to grow dimmer as the cold gray light that precedes sunrise slowly crept into the room .Finally when the sun had risen when his bedroom walls had turned gold and when sounds of movement could be heard from Uncle Vernon and Aunt Petunias room Harry cleared his desk of crumpled pieces of parchment and reread his finished letter .Dear Sirius Thanks for your last letter .That bird was enormous it could hardly get through my window .Things are the same as usual here .Dudleys diet isnt going too well .My aunt found him smuggling doughnuts into his room yesterday .They told him they d have to cut his pocket money if he keeps doing it so he got really angry and chucked his PlayStation out of the window .Thats a sort of computer thing you can play games on .Bit stupid really now he hasnt even got MegaMutilation Part Three to take his mind off things .Im okay mainly because the Dursleys are terrified you might turn up and turn them all into bats if I ask you to .A weird thing happened this morning though .My scar hurt again .Last time that happened it was because Voldemort was at Hogwarts .But I dont reckon he can be anywhere near me now can he ?Do you know if curse scars sometimes hurt years afterward ?Ill send this with Hedwig when she gets back shes offhunting at the moment .Say hello to Buckbeak for me .Harry Yes thought Harry that looked all right .There was no point putting in the dream he didnt want it to look as though he was too worried .He folded up the parchment and laid it aside on his desk ready for when Hedwig returned .Then he got to his feet stretched and opened his wardrobe once more .Without glancing at his reflection he started to get dressed before going down to breakfast .3 THE INVITATION By the time Harry arrived in the kitchen the three Dursleys were already seated around the table .None of them looked up as he entered or sat down .Uncle Vernons large red face was hidden behind the mornings Daily Mail and Aunt Petunia was cutting a grapefruit into quarters her lips pursed over her horselike teeth .Dudley looked furious and sulky and somehow seemed to be taking up even more space than usual .This was saying something as he always took up an entire side of the square table by himself .When Aunt Petunia put a quarter of unsweetened grapefruit onto Dudleys plate with a tremulous There you are Diddy darling Dudley glowered at her .His life had taken a most unpleasant turn since he had come home for the summer with his endofyear report .Uncle Vernon and Aunt Petunia had managed to find excuses for his bad marks as usual Aunt Petunia always insisted that Dudley was a very gifted boy whose teachers didnt understand him while Uncle Vernon maintained that he didnt want some swotty little nancy boy for a son anyway .They also skated over the accusations of bullying in the report Hes a boisterous little boy but he wouldnt hurt a fly !Aunt Petunia had said tearfully .However at the bottom of the report there were a few wellchosen comments from the school nurse that not even Uncle Vernon and Aunt Petunia could explain away .No matter how much Aunt Petunia wailed that Dudley was bigboned and that his poundage was really puppy fat and that he was a growing boy who needed plenty of food the fact remained that the school outfitters didnt stock knickerbockers big enough for him anymore .The school nurse had seen what Aunt Petunias eyes so sharp when it came to spotting fingerprints on her gleaming walls and in observing the comings and goings of the neighbors simply refused to see that far from needing extra nourishment Dudley had reached roughly the size and weight of a young killer whale .So after many tantrums after arguments that shook Harrys bedroom floor and many tears from Aunt Petunia the new regime had begun .The diet sheet that had been sent by the Smeltings school nurse had been taped to the fridge which had been emptied of all Dudleys favorite things fizzy drinks and cakes chocolate bars and burgers and filled instead with fruit and vegetables and the sorts of things that Uncle Vernon called rabbit food .To make Dudley feel better about it all Aunt Petunia had insisted that the whole family follow the diet too .She now passed a grapefruit quarter to Harry .He noticed that it was a lot smaller than Dudleys .Aunt Petunia seemed to feel that the best way to keep up Dudleys morale was to make sure that he did at least get more to eat than Harry .But Aunt Petunia didnt know what was hidden under the loose floorboard upstairs .She had no idea that Harry was not following the diet at all .The moment he had got wind of the fact that he was expected to survive the summer on carrot sticks Harry had sent Hedwig to his friends with pleas for help and they had risen to the occasion magnificently .Hedwig had returned from Hermiones house with a large box stuffed full of sugarfree snacks .Hermiones parents were dentists .Hagrid the Hogwarts gamekeeper had obliged with a sack full of his own homemade rock cakes .Harry hadnt touched these he had had too much experience of Hagrid s cooking .Mrs Weasley however had sent the family owl Errol with an enormous fruitcake and assorted meat pies .Poor Errol who was elderly and feeble had needed a full five days to recover from the journey .And then on Harrys birthday which the Dursleys had completely ignored he had received four superb birthday cakes one each from Ron Hermione Hagrid and Sirius .Harry still had two of them left and so looking forward to a real breakfast when he got back upstairs he ate his grapefruit without complaint .Uncle Vernon laid aside his paper with a deep sniff of disapproval and looked down at his own grapefruit quarter .Is this it ?he said grumpily to Aunt Petunia .Aunt Petunia gave him a severe look and then nodded pointedly at Dudley who had already finished his own grapefruit quarter and was eyeing Harrys with a very sour look in his piggy little eyes .Uncle Vernon gave a great sigh which ruffled his large bushy mustache and picked up his spoon .The doorbell rang .Uncle Vernon heaved himself out of his chair and set off down the hall .Quick as a flash while his mother was occupied with the kettle Dudley stole the rest of Uncle Vernons grapefruit .Harry heard talking at the door and someone laughing and Uncle Vernon answering curtly .Then the front door closed and the sound of ripping paper came from the hall .Aunt Petunia set the teapot down on the table and looked curiously around to see where Uncle Vernon had got to .She didnt have to wait long to find out after about a minute he was back .He looked livid .You he barked at Harry .In the living room .Now .Bewildered wondering what on earth he was supposed to have done this time Harry got up and followed Uncle Vernon out of the kitchen and into the next room .Uncle Vernon closed the door sharply behind both of them .So he said marching over to the fireplace and turning to face Harry as though he were about to pronounce him under arrest .So .Harry would have dearly loved to have said So what ?but he didnt feel that Uncle Vernons temper should be tested this early in the morning especially when it was already under severe strain from lack of food .He therefore settled for looking politely puzzled .This just arrived said Uncle Vernon .He brandished a piece of purple writing paper at Harry .A letter .About you .Harrys confusion increased .Who would be writing to Uncle Vernon about him ?Who did he know who sent letters by the postman ?Uncle Vernon glared at Harry then looked down at the letter and began to read aloud Dear Mr and Mrs Dursley We have never been introduced but I am sure you have heard a great deal from Harry about my son Ron .As Harry might have told you the final of the Quidditch World Cup takes place this Monday night and my husband Arthur has just managed to get prime tickets through his connections at the Department of Magical Games and Sports .I do hope you will allow us to take Harry to the match as this really is a onceinalifetime opportunity Britain hasnt hosted the cup for thirty years and tickets are extremely hard to come by .We would of course be glad to have Harry stay for the remainder of the summer holidays and to see him safely onto the train back to school .It would be best for Harry to send us your answer as quickly as possible in the normal way because the Muggle postman has never delivered to our house and I am not sure he even knows where it is .Hoping to see Harry soon Yours sincerely Molly Weasley P .S .I do hope weve put enough stamps on .Uncle Vernon finished reading put his hand back into his breast pocket and drew out something else .Look at this he growled .He held up the envelope in which Mrs Weasleys letter had come and Harry had to fight down a laugh .Every bit of it was covered in stamps except for a square inch on the front into which Mrs Weasley had squeezed the Dursleys address in minute writing .She did put enough stamps on then said Harry trying to sound as though Mrs Weasleys was a mistake anyone could make .His uncles eyes flashed .The postman noticed he said through gritted teeth .Very interested to know where this letter came from he was .Thats why he rang the doorbell .Seemed to think it was funny .Harry didnt say anything .Other people might not understand why Uncle Vernon was making a fuss about too many stamps but Harry had lived with the Dursleys too long not to know how touchy they were about anything even slightly out of the ordinary .Their worst fear was that someone would find out that they were connected however distantly with people like Mrs Weasley .Uncle Vernon was still glaring at Harry who tried to keep his expression neutral .If he didnt do or say anything stupid he might just be in for the treat of a lifetime .He waited for Uncle Vernon to say something but he merely continued to glare .Harry decided to break the silence .So can I go then ?he asked .A slight spasm crossed Uncle Vernons large purple face .The mustache bristled .Harry thought he knew what was going on behind the mustache a furious battle as two of Uncle Vernons most fundamental instincts came into conflict .Allowing Harry to go would make Harry happy something Uncle Vernon had struggled against for thirteen years .On the other hand allowing Harry to disappear to the Weasleys for the rest of the summer would get rid of him two weeks earlier than anyone could have hoped and Uncle Vernon hated having Harry in the house .To give himself thinking time it seemed he looked down at Mrs Weasleys letter again .Who is this woman ?he said staring at the signature with distaste .Youve seen her said Harry .Shes my friend Rons mother she was meeting him off the Hog off the school train at the end of last term .He had almost said Hogwarts Express and that was a sure way to get his uncles temper up .Nobody ever mentioned the name of Harrys school aloud in the Dursley household .Uncle Vernon screwed up his enormous face as though trying to remember something very unpleasant .Dumpy sort of woman ?he growled finally .Load of children with red hair ?Harry frowned .He thought it was a bit rich of Uncle Vernon to call anyone dumpy when his own son Dudley had finally achieved what hed been threatening to do since the age of three and become wider than he was tall .Uncle Vernon was perusing the letter again .Quidditch he muttered under his breath .Quidditch what is this rubbish ?Harry felt a second stab of annoyance .Its a sport he said shortly .Played on broom All right all right !said Uncle Vernon loudly .Harry saw with some satisfaction that his uncle looked vaguely panicky .Apparently his nerves couldnt stand the sound of the word broomsticks in his living room .He took refuge in perusing the letter again .Harry saw his lips form the words send us your answer .in the normal way .He scowled .What does she mean ‘the normal way ?he spat .Normal for us said Harry and before his uncle could stop him he added you know owl post .Thats whats normal for wizards .Uncle Vernon looked as outraged as if Harry had just uttered a disgusting swear word .Shaking with anger he shot a nervous look through the window as though expecting to see some of the neighbors with their ears pressed against the glass .How many times do I have to tell you not to mention that unnaturalness under my roof ?he hissed his face now a rich plum color .You stand there in the clothes Petunia and I have put on your ungrateful back Only after Dudley finished with them said Harry coldly and indeed he was dressed in a sweatshirt so large for him that he had had to roll back the sleeves five times so as to be able to use his hands and which fell past the knees of his extremely baggy jeans .I will not be spoken to like that !said Uncle Vernon trembling with rage .But Harry wasnt going to stand for this .Gone were the days when he had been forced to take every single one of the Dursleys stupid rules .He wasnt following Dudleys diet and he wasnt going to let Uncle Vernon stop him from going to the Quidditch World Cup not if he could help it .Harry took a deep steadying breath and then said Okay I cant see the World Cup .Can I go now then ?Only Ive got a letter to Sirius I want to finish .You know my godfather .He had done it .He had said the magic words .Now he watched the purple recede blotchily from Uncle Vernons face making it look like badly mixed black currant ice cream .Youre youre writing to him are you ?said Uncle Vernon in a wouldbe calm voice but Harry had seen the pupils of his tiny eyes contract with sudden fear .Well yeah said Harry casually .Its been a while since he heard from me and you know if he doesnt he might start thinking somethings wrong .He stopped there to enjoy the effect of these words .He could almost see the cogs working under Uncle Vernons thick dark neatly parted hair .If he tried to stop Harry writing to Sirius Sirius would think Harry was being mistreated .If he told Harry he couldnt go to the Quidditch World Cup Harry would write and tell Sirius who would know Harry was being mistreated .There was only one thing for Uncle Vernon to do .Harry could see the conclusion forming in his uncles mind as though the great mustached face were transparent .Harry tried not to smile to keep his own face as blank as possible .And then Well all right then .You can go to this ruddy .this stupid .this World Cup thing .You write and tell these these Weasleys theyre to pick you up mind .I havent got time to go dropping you off all over the country .And you can spend the rest of the summer there .And you can tell your your godfather .tell him .tell him youre going .Okay then said Harry brightly .He turned and walked toward the living room door fighting the urge to jump into the air and whoop .He was going .he was going to the Weasleys he was going to watch the Quidditch World Cup !Outside in the hall he nearly ran into Dudley who had been lurking behind the door clearly hoping to overhear Harry being told off .He looked shocked to see the broad grin on Harrys face .That was an excellent breakfast wasnt it ?said Harry .I feel really full dont you ?Laughing at the astonished look on Dudleys face Harry took the stairs three at a time and hurled himself back into his bedroom .The first thing he saw was that Hedwig was back .She was sitting in her cage staring at Harry with her enormous amber eyes and clicking her beak in the way that meant she was annoyed about something .Exactly what was annoying her became apparent almost at once .OUCH !said Harry as what appeared to be a small gray feathery tennis ball collided with the side of his head .Harry massaged the spot furiously looking up to see what had hit him and saw a minute owl small enough to fit into the palm of his hand whizzing excitedly around the room like a loose firework .Harry then realized that the owl had dropped a letter at his feet .Harry bent down recognized Rons handwriting then tore open the envelope .Inside was a hastily scribbled note .Harry DAD GOT THE TICKETS Ireland versus Bulgaria Monday night .Mums writing to the Muggles to ask you to stay .They might already have the letter I dont know how fast Muggle post is .Thought Id send this with Pig anyway .Harry stared at the word Pig then looked up at the tiny owl now zooming around the light fixture on the ceiling .He had never seen anything that looked less like a pig .Maybe he couldnt read Rons writing .He went back to the letter Were coming for you whether the Muggles like it or not you cant miss the World Cup only Mum and Dad reckon its better if we pretend to ask their permission first .If they say yes send Pig back with your answer pronto and well come and get you at five oclock on Sunday .If they say no send Pig back pronto and well come and get you at five oclock on Sunday anyway .Hermiones arriving this afternoon .Percys started work the Department of International Magical Cooperation .Dont mention anything about Abroad while youre here unless you want the pants bored off you .See you soon Ron Calm down !Harry said as the small owl flew low over his head twittering madly with what Harry could only assume was pride at having delivered the letter to the right person .Come here I need you to take my answer back !The owl fluttered down on top of Hedwigs cage .Hedwig looked coldly up at it as though daring it to try and come any closer .Harry seized his eaglefeather quill once more grabbed a fresh piece of parchment and wrote Ron its all okay the Muggles say I can come .See you five oclock tomorrow .Cant wait .Harry He folded this note up very small and with immense difficulty tied it to the tiny owls leg as it hopped on the spot with excitement .The moment the note was secure the owl was off again it zoomed out of the window and out of sight .Harry turned to Hedwig .Feeling up to a long journey ?he asked her .Hedwig hooted in a dignified sort of a way .Can you take this to Sirius for me ?he said picking up his letter .Hang on .I just want to finish it .He unfolded the parchment and hastily added a postscript .If you want to contact me Ill be at my friend Ron Weasleys for the rest of the summer .His dads got us tickets for the Quidditch World Cup The letter finished he tied it to Hedwigs leg she kept unusually still as though determined to show him how a real post owl should behave .Ill be at Rons when you get back all right ?Harry told her .She nipped his finger affectionately then with a soft swooshing noise spread her enormous wings and soared out of the open window .Harry watched her out of sight then crawled under his bed wrenched up the loose floorboard and pulled out a large chunk of birthday cake .He sat there on the floor eating it savoring the happiness that was flooding through him .He had cake and Dudley had nothing but grapefruit it was a bright summers day he would be leaving Privet Drive tomorrow his scar felt perfectly normal again and he was going to watch the Quidditch World Cup .It was hard just now to feel worried about anything even Lord Voldemort .BACK TO THE BURROW By twelve oclock the next day Harrys school trunk was packed with his school things and all his most prized possessions the Invisibility Cloak he had inherited from his father the broomstick he had gotten from Sirius the enchanted map of Hogwarts he had been given by Fred and George Weasley last year .He had emptied his hiding place under the loose floorboard of all food doublechecked every nook and cranny of his bedroom for forgotten spellbooks or quills and taken down the chart on the wall counting down the days to September the first on which he liked to cross off the days remaining until his return to Hogwarts .The atmosphere inside number four Privet Drive was extremely tense .The imminent arrival at their house of an assortment of wizards was making the Dursleys uptight and irritable .Uncle Vernon had looked downright alarmed when Harry informed him that the Weasley s would be arriving at five oclock the very next day .I hope you told them to dress properly these people he snarled at once .Ive seen the sort of stuff your lot wear .Theyd better have the decency to put on normal clothes thats all .Harry felt a slight sense of foreboding .He had rarely seen Mr or Mrs Weasley wearing anything that the Dursleys would call normal .Their children might don Muggle clothing during the holidays but Mr and Mrs Weasley usually wore long robes in varying states of shabbiness .Harry wasnt bothered about what the neighbors would think but he was anxious about how rude the Dursleys might be to the Weasleys if they turned up looking like their worst idea of wizards .Uncle Vernon had put on his best suit .To some people this might have looked like a gesture of welcome but Harry knew it was because Uncle Vernon wanted to look impressive and intimidating .Dudley on the other hand looked somehow diminished .This was not because the diet was at last taking effect but due to fright .Dudley had emerged from his last encounter with a fullygrown wizard with a curly pigs tail poking out of the seat of his trousers and Aunt Petunia and Uncle Vernon had had to pay for its removal at a private hospital in London .It wasnt altogether surprising therefore that Dudley kept running his hand nervously over his backside and walking sideways from room to room so as not to present the same target to the enemy .Lunch was an almost silent meal .Dudley didnt even protest at the food cottage cheese and grated celery .Aunt Petunia wasnt eating anything at all .Her arms were folded her lips were pursed and she seemed to be chewing her tongue as though biting back the furious diatribe she longed to throw at Harry .Theyll be driving of course ?Uncle Vernon barked across the table .Er said Harry .He hadnt thought of that .How were the Weasleys going to pick him up ?They didnt have a car anymore the old Ford Anglia they had once owned was currently running wild in the Forbidden Forest at Hogwarts .But Mr Weasley had borrowed a Ministry of Magic car last year possibly he would do the same today ?I think so said Harry .Uncle Vernon snorted into his mustache .Normally Uncle Vernon would have asked what car Mr Weasley drove he tended to judge other men by how big and expensive their cars were .But Harry doubted whether Uncle Vernon would have taken to Mr Weasley even if he drove a Ferrari .Harry spent most of the afternoon in his bedroom he couldnt stand watching Aunt Petunia peer out through the net curtains every few seconds as though there had been a warning about an escaped rhinoceros .Finally at a quarter to five Harry went back downstairs and into the living room .Aunt Petunia was compulsively straightening cushions .Uncle Vernon was pretending to read the paper but his tiny eyes were not moving and Harry was sure he was really listening with all his might for the sound of an approaching car .Dudley was crammed into an armchair his porky hands beneath him clamped firmly around his bottom .Harry couldnt take the tension he left the room and went and sat on the stairs in the hall his eyes on his watch and his heart pumping fast from excitement and nerves .But five oclock came and then went .Uncle Vernon perspiring slightly in his suit opened the front door peered up and down the street then withdrew his head quickly .Theyre late !he snarled at Harry .I know said Harry .Maybe er the traffics bad or something .Ten past five .then a quarter past five .Harry was starting to feel anxious himself now .At half past he heard Uncle Vernon and Aunt Petunia conversing in terse mutters in the living room .No consideration at all .We mightve had an engagement .Maybe they think theyll get invited to dinner if theyre late .Well they most certainly wont be said Uncle Vernon and Harry heard him stand up and start pacing the living room .Theyll take the boy and go there 11 be no hanging around .Thats if theyre coming at all .Probably mistaken the day .I daresay their kind dont set much store by punctuality .Either that or they drive some tinpot car thats broken d aaRRRRRGH !Harry jumped up .From the other side of the living room door came the sounds of the three Dursleys scrambling panicstricken across the room .Next moment Dudley came flying into the hall looking terrified .What happened ?said Harry .Whats the matter ?But Dudley didnt seem able to speak .Hands still clamped over his buttocks he waddled as fast as he could into the kitchen .Harry hurried into the living room .Loud hangings and scrapings were coming from behind the Dursleys boardedup fireplace which had a fake coal fire plugged in front of it .What is it ?gasped Aunt Petunia who had backed into the wall and was staring terrified toward the fire .What is it Vernon ?But they were left in doubt barely a second longer .Voices could be heard from inside the blocked fireplace .Ouch !Fred no go back go back theres been some kind of mistake tell George not to OUCH !George no theres no room go back quickly and tell Ron Maybe Harry can hear us Dad maybe hell be able to let us out There was a loud hammering of fists on the boards behind the electric fire .Harry ?Harry can you hear us ?The Dursleys rounded on Harry like a pair of angry wolverines .What is this ?growled Uncle Vernon .Whats going on ?They theyve tried to get here by Floo powder said Harry fighting a mad desire to laugh .They can travel by fire only youve blocked the fireplace hang on He approached the fireplace and called through the boards .Mr Weasley ?Can you hear me ?The hammering stopped .Somebody inside the chimney piece said Shh !Mr Weasley its Harry .the fireplace has been blocked up .You wont be able to get through there .Damn !said Mr Weasleys voice .What on earth did they want to block up the fireplace for ?Theyve got an electric fire Harry explained .Really ?said Mr Weasleys voice excitedly .Eclectic you say ?With a plug ?Gracious I must see that .Lets think .ouch Ron !Rons voice now joined the others .What are we doing here ?Has something gone wrong ?Oh no Ron came Freds voice very sarcastically .No this is exactly where we wanted to end up .Yeah were having the time of our lives here said George whose voice sounded muffled as though he was squashed against the wall .Boys boys .said Mr Weasley vaguely .Im trying to think what to do .Yes .only way .Stand back Harry .Harry retreated to the sofa .Uncle Vernon however moved forward .Wait a moment !he bellowed at the fire .What exactly are you going to BANG .The electric fire shot across the room as the boarded up fireplace burst outward expelling Mr Weasley Fred George and Ron in a cloud of rubble and loose chippings .Aunt Petunia shrieked and fell backward over the coffee table Uncle Vernon caught her before she hit the floor and gaped speechless at the Weasleys all of whom had bright red hair including Fred and George who were identical to the last freckle .Thats better panted Mr Weasley brushing dust from his long green robes and straightening his glasses .Ah you must be Harrys aunt and uncle !Tall thin and balding he moved toward Uncle Vernon his hand outstretched but Uncle Vernon backed away several paces dragging Aunt Petunia .Words utterly failed Uncle Vernon .His best suit was covered in white dust which had settled in his hair and mustache and made him look as though he had just aged thirty years .Er yes sorry about that said Mr Weasley lowering his hand and looking over his shoulder at the blasted fireplace .Its all my fault .It just didnt occur to me that we wouldnt be able to get out at the other end .I had your fireplace connected to the Floo Network you see just for an afternoon you know so we could get Harry .Muggle fireplaces arent supposed to be connected strictly speaking but Ive got a useful contact at the Floo Regulation Panel and he fixed it for me .I can put it right in a jiffy though dont worry .Ill light a fire to send the boys back and then I can repair your fireplace before I Disapparate .Harry was ready to bet that the Dursleys hadnt understood a single word of this .They were still gaping at Mr Weasley thunderstruck .Aunt Petunia staggered upright again and hid behind Uncle Vernon .Hello Harry !said Mr Weasley brightly .Got your trunk ready ?Its upstairs said Harry grinning back .Well get it said Fred at once .Winking at Harry he and George left the room .They knew where Harrys bedroom was having once rescued him from it in the dead of night .Harry suspected that Fred and George were hoping for a glimpse of Dudley they had heard a lot about him from Harry .Well said Mr Weasley swinging his arms slightly while he tried to find words to break the very nasty silence .Very erm very nice place youve got here .As the usually spotless living room was now covered in dust and bits of brick this remark didnt go down too well with the Dursleys .Uncle Vernons face purpled once more and Aunt Petunia started chewing her tongue again .However they seemed too scared to actually say anything .Mr Weasley was looking around .He loved everything to do with Muggles .Harry could see him itching to go and examine the television and the video recorder .They run off eckeltricity do they ?he said knowledgeably .Ah yes I can see the plugs .I collect plugs he added to Uncle Vernon .And batteries .Got a very large collection of batteries .My wife thinks Im mad but there you are .Uncle Vernon clearly thought Mr Weasley was mad too .He moved ever so slightly to the right screening Aunt Petunia from view as though he thought Mr Weasley might suddenly run at them and attack .Dudley suddenly reappeared in the room .Harry could hear the clunk of his trunk on the stairs and knew that the sounds had scared Dudley out of the kitchen .Dudley edged along the wall gazing at Mr Weasley with terrified eyes and attempted to conceal himself behind his mother and father .Unfortunately Uncle Vernons bulk while sufficient to hide bony Aunt Petunia was nowhere near enough to conceal Dudley .Ah this is your cousin is it Harry ?said Mr Weasley taking another brave stab at making conversation .Yep said Harry thats Dudley .He and Ron exchanged glances and then quickly looked away from each other the temptation to burst out laughing was almost overwhelming .Dudley was still clutching his bottom as though afraid it might fall off .Mr Weasley however seemed genuinely concerned at Dudleys peculiar behavior .Indeed from the tone of his voice when he next spoke Harry was quite sure that Mr Weasley thought Dudley was quite as mad as the Dursleys thought he was except that Mr Weasley felt sympathy rather than fear .Having a good holiday Dudley ?he said kindly .Dudley whimpered .Harry saw his hands tighten still harder over his massive backside .Fred and George came back into the room carrying Harrys school trunk .They glanced around as they entered and spotted Dudley .Their faces cracked into identical evil grins .Ah right said Mr Weasley .Better get cracking then .He pushed up the sleeves of his robes and took out his wand .Harry saw the Dursleys draw back against the wall as one .Incendio said Mr Weasley pointing his wand at the hole in the wall behind him .Flames rose at once in the fireplace crackling merrily as though they had been burning for hours .Mr Weasley took a small drawstring bag from his pocket untied it took a pinch of the powder inside and threw it onto the flames which turned emerald green and roared higher than ever .Off you go then Fred said Mr Weasley .Coming said Fred .Oh no hang on A bag of sweets had spilled out of Freds pocket and the contents were now rolling in every direction big fat toffees in brightly colored wrappers .Fred scrambled around cramming them back into his pocket then gave the Dursleys a cheery wave stepped forward and walked right into the fire saying the Burrow !Aunt Petunia gave a little shuddering gasp .There was a whooshing sound and Fred vanished .Right then George said Mr Weasley you and the trunk .Harry helped George carry the trunk forward into the flames and turn it onto its end so that he could hold it better .Then with a second whoosh George had cried the Burrow !and vanished too .Ron you next said Mr Weasley .See you said Ron brightly to the Dursleys .He grinned broadly at Harry then stepped into the fire shouted the Burrow !and disappeared .Now Harry and Mr Weasley alone remained .Well .Tye then Harry said to the Dursleys .They didnt say anything at all .Harry moved toward the fire but just as he reached the edge of the hearth Mr Weasley put out a hand and held him back .He was looking at the Dursleys in amazement .Harry said goodbye to you he said .Didnt you hear him ?It doesnt matter Harry muttered to Mr Weasley .Honestly I dont care .Mr Weasley did not remove his hand from Harrys shoulder .You arent going to see your nephew till next summer he said to Uncle Vernon in mild indignation .Surely youre going to say goodbye ?Uncle Vernons face worked furiously .The idea of being taught consideration by a man who had just blasted away half his living room wall seemed to be causing him intense suffering .But Mr Weasleys wand was still in his hand and Uncle Vernons tiny eyes darted to it once before he said very resentfully Goodbye then .See you said Harry putting one foot forward into the green flames which felt pleasantly like warm breath .At that moment however a horrible gagging sound erupted behind him and Aunt Petunia started to scream .Harry wheeled around .Dudley was no longer standing behind his parents .He was kneeling beside the coffee table and he was gagging and sputtering on a footlong purple slimy thing that was protruding from his mouth .One bewildered second later Harry realized that the footlong thing was Dudleys tongue and that a brightly colored toffee wrapper lay on the floor before him .Aunt Petunia hurled herself onto the ground beside Dudley seized the end of his swollen tongue and attempted to wrench it out of his mouth unsurprisingly Dudley yelled and sputtered worse than ever trying to fight her off .Uncle Vernon was bellowing and waving his arms around and Mr Weasley had to shout to make himself heard .Not to worry I can sort him out !he yelled advancing on Dudley with his wand outstretched but Aunt Petunia screamed worse than ever and threw herself on top of Dudley shielding him from Mr Weasley .No really !said Mr Weasley desperately .Its a simple process it was the toffee my son Fred real practical joker but its only an Engorgement Charm at least I think it is please I can correct it But far from being reassured the Dursleys became more panicstricken Aunt Petunia was sobbing hysterically tugging Dudleys tongue as though determined to rip it out Dudley appeared to be suffocating under the combined pressure of his mother and his tongue and Uncle Vernon who had lost control completely seized a china figure from on top of the sideboard and threw it very hard at Mr Weasley who ducked causing the ornament to shatter in the blasted fireplace .Now really !said Mr Weasley angrily brandishing his wand .Im trying to help Bellowing like a wounded hippo Uncle Vernon snatched up another ornament .Harry go !Just go !Mr Weasley shouted his wand on Uncle Vernon .Ill sort this out !Harry didnt want to miss the fun but Uncle Vernons second ornament narrowly missed his left ear and on balance he thought it best to leave the situation to Mr Weasley .He stepped into the fire looking over his shoulder as he said the Burrow !His last fleeting glimpse of the living room was of Mr Weasley blasting a third ornament out of Uncle Vernons hand with his wand Aunt Petunia screaming and lying on top of Dudley and Dudleys tongue lolling around like a great slimy python .But next moment Harry had begun to spin very fast and the Dursleys living room was whipped out of sight in a rush of emeraldgreen flames .5 WEASLEYS WIZARD WHEEZES Harry spun faster and faster elbows tucked tightly to his sides blurred fireplaces flashing past him until he started to feel sick and closed his eyes .Then when at last he felt himself slowing down he threw out his hands and came to a halt in time to prevent himself from falling face forward out of the Weasleys kitchen fire .Did he eat it ?said Fred excitedly holding out a hand to pull Harry to his feet .Yeah said Harry straightening up .What was it ?TonTongue Toffee said Fred brightly .George and I invented them and weve been looking for someone to test them on all summer .The tiny kitchen exploded with laughter Harry looked around and saw that Ron and George were sitting at the scrubbed wooden table with two redhaired people Harry had never seen before though he knew immediately who they must be Bill and Charlie the two eldest Weasley brothers .Howre you doing Harry ?said the nearer of the two grinning at him and holding out a large hand which Harry shook feeling calluses and blisters under his fingers .This had to be Charlie who worked with dragons in Romania .Charlie was built like the twins shorter and stockier than Percy and Ron who were both long and lanky .He had a broad goodnatured face which was weatherbeaten and so freckly that he looked almost tanned his arms were muscular and one of them had a large shiny burn on it .Bill got to his feet smiling and also shook Harrys hand .Bill came as something of a surprise .Harry knew that he worked for the wizarding bank Gringotts and that Bill had been Head Boy at Hogwarts Harry had always imagined Bill to be an older version of Percy fussy about rulebreaking and fond of bossing everyone around .However Bill was there was no other word for it cool .He was tall with long hair that he had tied back in a ponytail .He was wearing an earring with what looked like a fang dangling from it .Bills clothes would not have looked out of place at a rock concert except that Harry recognized his boots to be made not of leather but of dragon hide .Before any of them could say anything else there was a faint popping noise and Mr Weasley appeared out of thin air at Georges shoulder .He was looking angrier than Harry had ever seen him .That wasnt funny Fred !he shouted .What on earth did you give that Muggle boy ?I didnt give him anything said Fred with another evil grin .I just dropped it .It was his fault he went and ate it I never told him to .You dropped it on purpose !roared Mr Weasley .You knew hed eat it you knew he was on a diet How big did his tongue get ?George asked eagerly .It was four feet long before his parents would let me shrink it !Harry and the Weasleys roared with laughter again .It isnt funny Mr Weasley shouted .That sort of behavior seriously undermines wizardMuggle relations !I spend half my life campaigning against the mistreatment of Muggles and my own sons We didnt give it to him because hes a Muggle !said Fred indignantly .No we gave it to him because hes a great bullying git said George .Isnt he Harry ?Yeah he is Mr Weasley said Harry earnestly .Thats not the point !raged Mr Weasley .You wait until I tell your mother Tell me what ?said a voice behind them .Mrs Weasley had just entered the kitchen .She was a short plump woman with a very kind face though her eyes were presently narrowed with suspicion .Oh hello Harry dear she said spotting him and smiling .Then her eyes snapped back to her husband .Tell me what Arthur ?Mr Weasley hesitated .Harry could tell that however angry he was with Fred and George he hadnt really intended to tell Mrs Weasley what had happened .There was a silence while Mr Weasley eyed his wife nervously .Then two girls appeared in the kitchen doorway behind Mrs Weasley .One with very bushy brown hair and rather large front teeth was Harrys and Rons friend Hermione Granger .The other who was small and redhaired was Rons younger sister Ginny .Both of them smiled at Harry who grinned back which made Ginny go scarlet she had been very taken with Harry ever since his first visit to the Burrow .Tell me what Arthur ?Mrs Weasley repeated in a dangerous sort of voice .Its nothing Molly mumbled Mr Weasley Fred and George just but Ive had words with them What have they done this time ?said Mrs Weasley .If its got anything to do with Weasleys Wizard Wheezes Why dont you show Harry where hes sleeping Ron ?said Hermione from the doorway .He knows where hes sleeping said Ron in my room he slept there last We can all go said Hermione pointedly .Oh said Ron cottoning on .Right .Yeah well come too said George .You stay where you are !snarled Mrs Weasley .Harry and Ron edged out of the kitchen and they Hermione and Ginny set off along the narrow hallway and up the rickety staircase that zigzagged through the house to the upper stories .What are Weasleys Wizard Wheezes ?Harry asked as they climbed .Ron and Ginny both laughed although Hermione didnt .Mum found this stack of order forms when she was cleaning Fred and Georges room said Ron quietly .Great long price lists for stuff theyve invented .Joke stuff you know .Fake wands and trick sweets loads of stuff .It was brilliant I never knew theyd been inventing all that .Weve been hearing explosions out of their room for ages but we never thought they were actually making things said Ginny .We thought they just liked the noise .Only most of the stuff well all of it really was a bit dangerous said Ron and you know they were planning to sell it at Hogwarts to make some money and Mum went mad at them .Told them they werent allowed to make any more of it and burned all the order forms .Shes furious at them anyway .They didnt get as many O .W .L .s as she expected .O .W .L .s were Ordinary Wizarding Levels the examinations Hogwarts students took at the age of fifteen .And then there was this big row Ginny said because Mum wants them to go into the Ministry of Magic like Dad and they told her all they want to do is open a joke shop .Just then a door on the second landing opened and a face poked out wearing hornrimmed glasses and a very annoyed expression .Hi Percy said Harry .Oh hello Harry said Percy .I was wondering who was making all the noise .Im trying to work in here you know Ive got a report to finish for the office and its rather difficult to concentrate when people keep thundering up and down the stairs .Were not thundering said Ron irritably .Were walking .Sorry if weve disturbed the topsecret workings of the Ministry of Magic .What are you working on ?said Harry .A report for the Department of International Magical Cooperation said Percy smugly .Were trying to standardize cauldron thickness .Some of these foreign imports are just a shade too thin leakages have been increasing at a rate of almost three percent a year Thatll change the world that report will said Ron .Front page of the Daily Prophet I expect cauldron leaks .Percy went slightly pink .You might sneer Ron he said heatedly but unless some sort of international law is imposed we might well find the market flooded with flimsy shallow bottomed products that seriously endanger Yeah yeah all right said Ron and he started off upstairs again .Percy slammed his bedroom door shut .As Harry Hermione and Ginny followed Ron up three more flights of stairs shouts from the kitchen below echoed up to them .It sounded as though Mr Weasley had told Mrs Weasley about the toffees .The room at the top of the house where Ron slept looked much as it had the last time that Harry had come to stay the same posters of Rons favorite Quidditch team the Chudley Cannons were whirling and waving on the walls and sloping ceiling and the fish tank on the windowsill which had previously held frog spawn now contained one extremely large frog .Rons old rat Scabbers was here no more but instead there was the tiny gray owl that had delivered Rons letter to Harry in Privet Drive .It was hopping up and down in a small cage and twittering madly .Shut up Pig said Ron edging his way between two of the four beds that had been squeezed into the room .Fred and George are in here with us because Bill and Charlie are in their room he told Harry .Percy gets to keep his room all to himself because hes got to work .Er why are you calling that owl Pig ?Harry asked Ron .Because hes being stupid said Ginny .Its proper name is Pigwidgeon .Yeah and thats not a stupid name at all said Ron sarcastically .Ginny named him he explained to Harry .She reckons its sweet .And I tried to change it but it was too late he wont answer to anything else .So now hes Pig .Ive got to keep him up here because he annoys Errol and Hermes .He annoys me too come to that .Pigwidgeon zoomed happily around his cage hooting shrilly .Harry knew Ron too well to take him seriously .He had moaned continually about his old rat Scabbers but had been most upset when Hermiones cat Crookshanks appeared to have eaten him .Wheres Crookshanks ?Harry asked Hermione now .Out in the garden I expect she said .He likes chasing gnomes .Hes never seen any before .Percys enjoying work then ?said Harry sitting down on one of the beds and watching the Chudley Cannons zooming in and out of the posters on the ceiling .Enjoying it ?said Ron darkly .I dont reckon hed come home if Dad didnt make him .Hes obsessed .Just dont get him onto the subject of his boss .According to Mr Crouch .as I was saying to Mr Crouch .Mr Crouch is of the opinion .Mr Crouch was telling me .They 11 be announcing their engagement any day now .Have you had a good summer Harry ?said Hermione .Did you get our food parcels and everything ?Yeah thanks a lot said Harry .They saved my life those cakes .And have you heard from ?Ron began but at a look from Hermione he fell silent .Harry knew Ron had been about to ask about Sirius .Ron and Hermione had been so deeply involved in helping Sirius escape from the Ministry of Magic that they were almost as concerned about Harrys godfather as he was .However discussing him in front of Ginny was a bad idea .Nobody but themselves and Professor Dumbledore knew about how Sirius had escaped or believed in his innocence .I think theyve stopped arguing said Hermione to cover the awkward moment because Ginny was looking curiously from Ron to Harry .Shall we go down and help your mum with dinner ?Yeah all right said Ron .The four of them left Rons room and went back downstairs to find Mrs Weasley alone in the kitchen looking extremely badtempered .Were eating out in the garden she said when they came in .Theres just not room for eleven people in here .Could you take the plates outside girls ?Bill and Charlie are setting up the tables .Knives and forks please you two she said to Ron and Harry pointing her wand a little more vigorously than she had intended at a pile of potatoes in the sink which shot out of their skins so fast that they ricocheted off the walls and ceiling .Oh for heavens sake she snapped now directing her wand at a dustpan which hopped off the sideboard and started skating across the floor scooping up the potatoes .Those two !she burst out savagely now pulling pots and pans out of a cupboard and Harry knew she meant Fred and George .I dont know whats going to happen to them I really dont .No ambition unless you count making as much trouble as they possibly can .Mrs Weasley slammed a large copper saucepan down on the kitchen table and began to wave her wand around inside it .A creamy sauce poured from the wand tip as she stirred .Its not as though they havent got brains she continued irritably taking the saucepan over to the stove and lighting it with a further poke of her wand but theyre wasting them and unless they pull themselves together soon theyll be in real trouble .Ive had more owls from Hogwarts about them than the rest put together .If they carry on the way theyre going theyll end up in front of the Improper Use of Magic Office .Mrs Weasley jabbed her wand at the cutlery drawer which shot open .Harry and Ron both jumped out of the way as several knives soared out of it flew across the kitchen and began chopping the potatoes which had just been tipped back into the sink by the dustpan .I dont know where we went wrong with them said Mrs Weasley putting down her wand and starting to pull out still more saucepans .Its been the same for years one thing after another and they wont listen to OH NOT AGAIN .She had picked up her wand from the table and it had emitted a loud squeak and turned into a giant rubber mouse .One of their fake wands again !she shouted .How many times have I told them not to leave them lying around ?She grabbed her real wand and turned around to find that the sauce on the stove was smoking .Cmon Ron said hurriedly to Harry seizing a handful of cutlery from the open drawer lets go and help Bill and Charlie .They left Mrs Weasley and headed out the back door into the yard .They had only gone a few paces when Hermiones bandylegged ginger cat Crookshanks came pelting out of the garden bottlebrush tail held high in the air chasing what looked like a muddy potato on legs .Harry recognized it instantly as a gnome .Barely ten inches high its horny little feet pattered very fast as it sprinted across the yard and dived headlong into one of the Wellington boots that lay scattered around the door .Harry could hear the gnome giggling madly as Crookshanks inserted a paw into the boot trying to reach it .Meanwhile a very loud crashing noise was coming from the other side of the house .The source of the commotion was revealed as they entered the garden and saw that Bill and Charlie both had their wands out and were making two battered old tables fly high above the lawn smashing into each other each attempting to knock the others out of the air .Fred and George were cheering Ginny was laughing and Hermione was hovering near the hedge apparently torn between amusement and anxiety .Bills table caught Charlies with a huge bang and knocked one of its legs off .There was a clatter from overhead and they all looked up to see Percys head poking out of a window on the second floor .Will you keep it down ?!he bellowed .Sorry Perce said Bill grinning .Howre the cauldron bottoms coming on ?Very badly said Percy peevishly and he slammed the window shut .Chuckling Bill and Charlie directed the tables safely onto the grass end to end and then with a flick of his wand Bill reattached the table leg and conjured tablecloths from nowhere .By seven oclock the two tables were groaning under dishes and dishes of Mrs Weasleys excellent cooking and the nine Weasleys Harry and Hermione were settling themselves down to eat beneath a clear deep blue sky .To somebody who had been living on meals of increasingly stale cake all summer this was paradise and at first Harry listened rather than talked as he helped himself to chicken and ham pie boiled potatoes and salad .At the far end of the table Percy was telling his father all about his report on cauldron bottoms .Ive told Mr Crouch that Ill have it ready by Tuesday Percy was saying pompously .Thats a bit sooner than he expected it but I like to keep on top of things .I think hell be grateful Ive done it in good time I mean its extremely busy in our department just now what with all the arrangements for the World Cup .Were just not getting the support we need from the Department of Magical Games and Sports .Ludo Bagman I like Ludo said Mr Weasley mildly .He was the one who got us such good tickets for the Cup .I did him a bit of a favor His brother Otto got into a spot of trouble a lawnmower with unnatural powers I smoothed the whole thing over .Oh Bagmans likable enough of course said Percy dismissively but how he ever got to be Head of Department .when I compare him to Mr Crouch !I cant see Mr Crouch losing a member of our department and not trying to find out whats happened to them .You realize Bertha Jorkins has been missing for over a month now ?Went on holiday to Albania and never came back ?Yes I was asking Ludo about that said Mr Weasley frowning .He says Berthas gotten lost plenty of times before now though I must say if it was someone in my department Id be worried .Oh Berthas hopeless all right said Percy .I hear shes been shunted from department to department for years much more trouble than shes worth .but all the same Bagman ought to be trying to find her .Mr Crouch has been taking a personal interest she worked in our department at one time you know and I think Mr Crouch was quite fond of her but Bagman just keeps laughing and saying she probably misread the map and ended up in Australia instead of Albania .However Percy heaved an impressive sigh and took a deep swig of elderflower wine weve got quite enough on our plates at the Department of International Magical Cooperation without trying to find members of other departments too .As you know weve got another big event to organize right after the World Cup .Percy cleared his throat significantly and looked down toward the end of the table where Harry Ron and Hermione were sitting .You know the one Im talking about Father .He raised his voice slightly .The top secret one .Ron rolled his eyes and muttered to Harry and Hermione Hes been trying to get us to ask what that event is ever since he started work .Probably an exhibition of thickbottomed cauldrons .In the middle of the table Mrs Weasley was arguing with Bill about his earring which seemed to be a recent acquisition . .with a horrible great fang on it .Really Bill what do they say at the bank ?Mum no one at the bank gives a damn how I dress as long as I bring home plenty of treasure said Bill patiently .And your hairs getting silly dear said Mrs Weasley fingering her wand lovingly .I wish youd let me give it a trim .I like it said Ginny who was sitting beside Bill .Youre so oldfashioned Mum .Anyway its nowhere near as long as Professor Dumbledores .Next to Mrs Weasley Fred George and Charlie were all talking spiritedly about the World Cup .Its got to be Ireland said Charlie thickly through a mouthful of potato .They flattened Peru in the semifinals .Bulgaria has got Viktor Krum though said Fred .Krums one decent player Ireland has got seven said Charlie shortly .I wish England had got through .That was embarrassing that was .What happened ?said Harry eagerly regretting more than ever his isolation from the wizarding world when he was stuck on Privet Drive .Went down to Transylvania three hundred and ninety to ten said Charlie gloomily .Shocking performance .And Wales lost to Uganda and Scotland was slaughtered by Luxembourg .Harry had been on the Gryffindor House Quidditch team ever since his first year at Hogwarts and owned one of the best racing brooms in the world a Firebolt .Flying came more naturally to Harry than anything else in the magical world and he played in the position of Seeker on the Gryffindor House team .Mr Weasley conjured up candles to light the darkening garden before they had their homemade strawberry ice cream and by the time they had finished moths were fluttering low over the table and the warm air was perfumed with the smells of grass and honeysuckle .Harry was feeling extremely well fed and at peace with the world as he watched several gnomes sprinting through the rosebushes laughing madly and closely pursued by Crookshanks .Ron looked carefully up the table to check that the rest of the family were all busy talking then he said very quietly to Harry So have you heard from Sirius lately ?Hermione looked around listening closely .Yeah said Harry softly twice .He sounds okay .I wrote to him yesterday .He might write back while Im here .He suddenly remembered the reason he had written to Sirius and for a moment was on the verge of telling Ron and Hermione about his scar hurting again and about the dream that had awoken him .but he really didnt want to worry them just now not when he himself was feeling so happy and peaceful .Look at the time Mrs Weasley said suddenly checking her wristwatch .You really should be in bed the whole lot of you youll be up at the crack of dawn to get to the Cup .Harry if you leave your school list out Ill get your things for you tomorrow in Diagon Alley .Im getting everyone elses .There might not be time after the World Cup the match went on for five days last time .Wow hope it does this time !said Harry enthusiastically .Well I certainly dont said Percy sanctimoniously .I shudder to think what the state of my intray would be if I was away from work for five days .Yeah someone might slip dragon dung in it again eh Perce ?said Fred .That was a sample of fertilizer from Norway !said Percy going very red in the face .It was nothing personall It was Fred whispered to Harry as they got up from the table .We sent it .THE PORTKEY Harry felt as though he had barely lain down to sleep in Rons room when he was being shaken awake by Mrs Weasley .Time to go Harry dear she whispered moving away to wake Ron .Harry felt around for his glasses put them on and sat up .It was still dark outside .Ron muttered indistinctly as his mother roused him .At the foot of Harrys mattress he saw two large disheveled shapes emerging from tangles of blankets .S time already ?said Fred groggily .They dressed in silence too sleepy to talk then yawning and stretching the four of them headed downstairs into the kitchen .Mrs Weasley was stirring the contents of a large pot on the stove while Mr Weasley was sitting at the table checking a sheaf of large parchment tickets .He looked up as the boys entered and spread his arms so that they could see his clothes more clearly .He was wearing what appeared to be a golfing sweater and a very old pair of jeans slightly too big for him and held up with a thick leather belt .What dyou think ?he asked anxiously .Were supposed to go incognito do I look like a Muggle Harry ?Yeah said Harry smiling very good .Where re Bill and Charlie and PerPerPercy ?said George failing to stifle a huge yawn .Well theyre Apparating arent they ?said Mrs Weasley heaving the large pot over to the table and starting to ladle porridge into bowls .So they can have a bit of a liein .Harry knew that Apparating meant disappearing from one place and reappearing almost instantly in another but had never known any Hogwarts student to do it and understood that it was very difficult .So theyre still in bed ?said Fred grumpily pulling his bowl of porridge toward him .Why cant we Apparate too ?Because youre not of age and you havent passed your test snapped Mrs Weasley .And where have those girls got to ?She bustled out of the kitchen and they heard her climbing the stairs .You have to pass a test to Apparate ?Harry asked .Oh yes said Mr Weasley tucking the tickets safely into the back pocket of his jeans .The Department of Magical Transportation had to fine a couple of people the other day for Apparating without a license .Its not easy Apparition and when its not done properly it can lead to nasty complications .This pair Im talking about went and splinched themselves .Everyone around the table except Harry winced .Er splinched ?said Harry .They left half of themselves behind said Mr Weasley now spooning large amounts of treacle onto his porridge .So of course they were stuck .Couldnt move either way .Had to wait for the Accidental Magic Reversal Squad to sort them out .Meant a fair old bit of paperwork I can tell you what with the Muggles who spotted the body parts theyd left behind .Harry had a sudden vision of a pair of legs and an eyeball lying abandoned on the pavement of Privet Drive .Were they okay ?he asked startled .Oh yes said Mr Weasley matteroffactly .But they got a heavy fine and I dont think theyll be trying it again in a hurry .You dont mess around with Apparition .There are plenty of adult wizards who dont bother with it .Prefer brooms slower but safer .But Bill and Charlie and Percy can all do it ?Charlie had to take the test twice said Fred grinning .He failed the first time Apparated five miles south of where he meant to right on top of some poor old dear doing her shopping remember ?Yes well he passed the second time said Mrs Weasley marching back into the kitchen amid hearty sniggers .Percy only passed two weeks ago said George .Hes been Apparating downstairs every morning since just to prove he can .There were footsteps down the passageway and Hermione and Ginny came into the kitchen both looking pale and drowsy .Why do we have to be up so early ?Ginny said rubbing her eyes and sitting down at the table .Weve got a bit of a walk said Mr Weasley .Walk ?said Harry .What are we walking to the World Cup ?No no thats miles away said Mr Weasley smiling .We only need to walk a short way .Its just that its very difficult for a large number of wizards to congregate without attracting Muggle attention .We have to be very careful about how we travel at the best of times and on a huge occasion like the Quidditch World Cup George !said Mrs Weasley sharply and they all jumped .What ?said George in an innocent tone that deceived nobody .What is that in your pocket ?Nothing !Dont you lie to me !Mrs Weasley pointed her wand at Georges pocket and said Acciol Several small brightly colored objects zoomed out of Georges pocket he made a grab for them but missed and they sped right into Mrs Weasley s outstretched hand .We told you to destroy them !said Mrs Weasley furiously holding up what were unmistakably more TonTongue Toffees .We told you to get rid of the lot !Empty your pockets go on both of you !It was an unpleasant scene the twins had evidently been trying to smuggle as many toffees out of the house as possible and it was only by using her Summoning Charm that Mrs Weasley managed to find them all .Acciol Acciol Acciol she shouted and toffees zoomed from all sorts of unlikely places including the lining of Georges jacket and the turnups of Freds jeans .We spent six months developing those !Fred shouted at his mother as she threw the toffees away .Oh a fine way to spend six months !she shrieked .No wonder you didnt get more O .W .L .s !All in all the atmosphere was not very friendly as they took their departure .Mrs Weasley was still glowering as she kissed Mr Weasley on the cheek though not nearly as much as the twins who had each hoisted their rucksacks onto their backs and walked out without a word to her .Well have a lovely time said Mrs Weasley and behave yourselves she called after the twins retreating backs but they did not look back or answer .Ill send Bill Charlie and Percy along around midday Mrs Weasley said to Mr Weasley as he Harry Ron Hermione and Ginny set off across the dark yard after Fred and George .It was chilly and the moon was still out .Only a dull greenish tinge along the horizon to their right showed that daybreak was drawing closer .Harry having been thinking about thousands of wizards speeding toward the Quidditch World Cup sped up to walk with Mr Weasley .So how does everyone get there without all the Muggles noticing ?he asked .Its been a massive organizational problem sighed Mr Weasley .The trouble is about a hundred thousand wizards turn up at the World Cup and of course we just havent got a magical site big enough to accommodate them all .There are places Muggles cant penetrate but imagine trying to pack a hundred thousand wizards into Diagon Alley or platform nine and threequarters .So we had to find a nice deserted moor and set up as many antiMuggle precautions as possible .The whole Ministrys been working on it for months .First of course we have to stagger the arrivals .People with cheaper tickets have to arrive two weeks beforehand .A limited number use Muggle transport but we cant have too many clogging up their buses and trains remember wizards are coming from all over the world .Some Apparate of course but we have to set up safe points for them to appear well away from Muggles .I believe theres a handy wood theyre using as the Apparition point .For those who dont want to Apparate or cant we use Portkeys .Theyre objects that are used to transport wizards from one spot to another at a prearranged time .You can do large groups at a time if you need to .There have been two hundred Portkeys placed at strategic points around Britain and the nearest one to us is up at the top of Stoatshead Hill so thats where were headed .Mr Weasley pointed ahead of them where a large black mass rose beyond the village of Ottery St .Catchpole .What sort of objects are Portkeys ?said Harry curiously .Well they can be anything said Mr Weasley .Unobtrusive things obviously so Muggles dont go picking them up and playing with them .stuff theyll just think is litter .They trudged down the dark dank lane toward the village the silence broken only by their footsteps .The sky lightened very slowly as they made their way through the village its inky blackness diluting to deepest blue .Harrys hands and feet were freezing .Mr Weasley kept checking his watch .They didnt have breath to spare for talking as they began to climb Stoatshead Hill stumbling occasionally in hidden rabbit holes slipping on thick black tuffets of grass .Each breath Harry took was sharp in his chest and his legs were starting to seize up when at last his feet found level ground .Whew panted Mr Weasley taking off his glasses and wiping them on his sweater .Well weve made good time weve got ten minutes .Hermione came over the crest of the hill last clutching a stitch in her side .Now we just need the Portkey said Mr Weasley replacing his glasses and squinting around at the ground .It wont be big .Come on .They spread out searching .They had only been at it for a couple of minutes however when a shout rent the still air .Over here Arthur !Over here son weve got it !Two tall figures were silhouetted against the starry sky on the other side of the hilltop .Amos !said Mr Weasley smiling as he strode over to the man who had shouted .The rest of them followed .Mr Weasley was shaking hands with a ruddyfaced wizard with a scrubby brown beard who was holding a moldylooking old boot in his other hand .This is Amos Diggory everyone said Mr Weasley .He works for the Department for the Regulation and Control of Magical Creatures .And I think you know his son Cedric ?Cedric Diggory was an extremely handsome boy of around seventeen .He was Captain and Seeker of the Hufflepuff House Quidditch team at Hogwarts .Hi said Cedric looking around at them all .Everybody said hi back except Fred and George who merely nodded .They had never quite forgiven Cedric for beating their team Gryffindor in the first Quidditch match of the previous year .Long walk Arthur ?Cedrics father asked .Not too bad said Mr Weasley .We live just on the other side of the village there .You ?Had to get up at two didnt we Ced ?I tell you Ill be glad when hes got his Apparition test .Still .not complaining .Quidditch World Cup wouldnt miss it for a sackful of Galleons and the tickets cost about that .Mind you looks like I got off easy .Amos Diggory peered goodnaturedly around at the three Weasley boys Harry Hermione and Ginny .All these yours Arthur ?Oh no only the redheads said Mr Weasley pointing out his children .This is Hermione friend of Rons and Harry another friend Merlins beard said Amos Diggory his eyes widening .Harry ?Harry Potter ?Er yeah said Harry .Harry was used to people looking curiously at him when they met him used to the way their eyes moved at once to the lightning scar on his forehead but it always made him feel uncomfortable .Ceds talked about you of course said Amos Diggory .Told us all about playing against you last year .I said to him I said Ced thatll be something to tell your grandchildren that will .You beat Harry Potterl Harry couldnt think of any reply to this so he remained silent .Fred and George were both scowling again .Cedric looked slightly embarrassed .Harry fell off his broom Dad he muttered .I told you .it was an accident .Yes but you didnt fall off did you ?roared Amos genially slapping his son on his back .Always modest our Ced always the gentleman .but the best man won Im sure Harryd say the same wouldnt you eh ?One falls off his broom one stays on you dont need to be a genius to tell which ones the better flier !Must be nearly time said Mr Weasley quickly pulling out his watch again .Do you know whether were waiting for any more Amos ?No the Lovegoods have been there for a week already and the Fawcetts couldnt get tickets said Mr Diggory .There arent any more of us in this area are there ?Not that I know of said Mr Weasley .Yes its a minute off .Wed better get ready .He looked around at Harry and Hermione .You just need to touch the Portkey thats all a finger will do With difficulty owing to their bulky backpacks the nine of them crowded around the old boot held out by Amos Diggory .They all stood there in a tight circle as a chill breeze swept over the hilltop .Nobody spoke .It suddenly occurred to Harry how odd this would look if a Muggle were to walk up here now .nine people two of them grown men clutching this manky old boot in the semidarkness waiting .Three .muttered Mr Weasley one eye still on his watch two .one .It happened immediately Harry felt as though a hook just behind his navel had been suddenly jerked irresistibly forward .His feet left the ground he could feel Ron and Hermione on either side of him their shoulders banging into his they were all speeding forward in a howl of wind and swirling color his forefinger was stuck to the boot as though it was pulling him magnetically onward and then His feet slammed into the ground Ron staggered into him and he fell over the Portkey hit the ground near his head with a heavy thud .Harry looked up .Mr Weasley Mr Diggory and Cedric were still standing though looking very windswept everybody else was on the ground .Seven past five from Stoatshead Hill said a voice .7 BAGMAN AND CROUCH Harry disentangled himself from Ron and got to his feet .They had arrived on what appeared to be a deserted stretch of misty moor .In front of them was a pair of tired and grumpylooking wizards one of whom was holding a large gold watch the other a thick roll of parchment and a quill .Both were dressed as Muggles though very inexpertly The man with the watch wore a tweed suit with thighlength galoshes his colleague a kilt and a poncho .Morning Basil said Mr Weasley picking up the boot and handing it to the kilted wizard who threw it into a large box of used Portkeys beside him Harry could see an old newspaper an empty drinks can and a punctured football .Hello there Arthur said Basil wearily .Not on duty eh ?Its all right for some .Weve been here all night .Youd better get out of the way weve got a big party coming in from the Black Forest at five fifteen .Hang on Ill find your campsite .Weasley .Weasley .He consulted his parchment list .About a quarter of a miles walk over there first field you come to .Site managers called Mr Roberts .Diggory .second field .ask for Mr Payne .Thanks Basil said Mr Weasley and he beckoned everyone to follow him .They set off across the deserted moor unable to make out much through the mist .After about twenty minutes a small stone cottage next to a gate swam into view .Beyond it Harry could just make out the ghostly shapes of hundreds and hundreds of tents rising up the gentle slope of a large field toward a dark wood on the horizon .They said goodbye to the Diggorys and approached the cottage door .A man was standing in the doorway looking out at the tents .Harry knew at a glance that this was the only real Muggle for several acres .When he heard their footsteps he turned his head to look at them .Morning !said Mr Weasley brightly .Morning said the Muggle .Would you be Mr Roberts ?Aye I would said Mr Roberts .And whore you ?Weasley two tents booked a couple of days ago ?Aye said Mr Roberts consulting a list tacked to the door .Youve got a space up by the wood there .Just the one night ?Thats it said Mr Weasley .Youll be paying now then ?said Mr Roberts .Ah right certainly said Mr Weasley .He retreated a short distance from the cottage and beckoned Harry toward him .Help me Harry he muttered pulling a roll of Muggle money from his pocket and starting to peel the notes apart .This ones a a a ten ?Ah yes I see the little number on it now .So this is a five ?A twenty Harry corrected him in an undertone uncomfortably aware of Mr Roberts trying to catch every word .Ah yes so it is .I dont know these little bits of paper .You foreign ?said Mr Roberts as Mr Weasley returned with the correct notes .Foreign ?repeated Mr Weasley puzzled .Youre not the first one whos had trouble with money said Mr Roberts scrutinizing Mr Weasley closely .I had two try and pay me with great gold coins the size of hubcaps ten minutes ago .Did you really ?said Mr Weasley nervously .Mr Roberts rummaged around in a tin for some change .Never been this crowded he said suddenly looking out over the misty field again .Hundreds of pre bookings .People usually just turn up .Is that right ?said Mr Weasley his hand held out for his change but Mr Roberts didnt give it to him .Aye he said thoughtfully .People from all over .Loads of foreigners .And not just foreigners .Weirdos you know ?Theres a bloke walking round in a kilt and a poncho .Shouldnt he ?said Mr Weasley anxiously .Its like some sort of .I dunno .like some sort of rally said Mr Roberts .They all seem to know each other .Like a big party .At that moment a wizard in plusfours appeared out of thin air next to Mr Robertss front door .Obliviate he said sharply pointing his wand at Mr Roberts .Instantly Mr Robertss eyes slid out of focus his brows unknitted and a look of dreamy unconcern fell over his face .Harry recognized the symptoms of one who had just had his memory modified .A map of the campsite for you Mr Roberts said placidly to Mr Weasley .And your change .Thanks very much said Mr Weasley .The wizard in plusfours accompanied them toward the gate to the campsite .He looked exhausted His chin was blue with stubble and there were deep purple shadows under his eyes .Once out of earshot of Mr Roberts he muttered to Mr Weasley Been having a lot of trouble with him .Needs a Memory Charm ten times a day to keep him happy .And Ludo Bagmans not helping .Trotting around talking about Bludgers and Quaffles at the top of his voice not a worry about antiMuggle security .Blimey Ill be glad when this is over .See you later Arthur .He Disapparated .I thought Mr Bagman was Head of Magical Games and Sports said Ginny looking surprised .He should know better than to talk about Bludgers near Muggles shouldnt he ?He should said Mr Weasley smiling and leading them through the gates into the campsite but Ludos always been a bit .well .lax about security .You couldnt wish for a more enthusiastic head of the sports department though .He played Quidditch for England himself you know .And he was the best Beater the Wimbourne Wasps ever had .They trudged up the misty field between long rows of tents .Most looked almost ordinary their owners had clearly tried to make them as Mugglelike as possible but had slipped up by adding chimneys or bellpulls or weather vanes .However here and there was a tent so obviously magical that Harry could hardly be surprised that Mr Roberts was getting suspicious .Halfway up the field stood an extravagant confection of striped silk like a miniature palace with several live peacocks tethered at the entrance .A little farther on they passed a tent that had three floors and several turrets and a short way beyond that was a tent that had a front garden attached complete with birdbath sundial and fountain .Always the same said Mr Weasley smiling .We cant resist showing off when we get together .Ah here we are look this is us .They had reached the very edge of the wood at the top of the field and here was an empty space with a small sign hammered into the ground that read WEEZLY .Couldnt have a better spot !said Mr Weasley happily .The field is just on the other side of the wood there were as close as we could be .He hoisted his backpack from his shoulders .Right he said excitedly no magic allowed strictly speaking not when were out in these numbers on Muggle land .Well be putting these tents up by hand !Shouldnt be too difficult .Muggles do it all the time .Here Harry where do you reckon we should start ?Harry had never been camping in his life the Dursleys had never taken him on any kind of holiday preferring to leave him with Mrs Figg an old neighbor .However he and Hermione worked out where most of the poles and pegs should go and though Mr Weasley was more of a hindrance than a help because he got thoroughly overexcited when it came to using the mallet they finally managed to erect a pair of shabby twoman tents .All of them stood back to admire their handiwork .Nobody looking at these tents would guess they belonged to wizards Harry thought but the trouble was that once Bill Charlie and Percy arrived they would be a party of ten .Hermione seemed to have spotted this problem too she gave Harry a quizzical look as Mr Weasley dropped to his hands and knees and entered the first tent .Well be a bit cramped he called but I think well all squeeze in .Come and have a look .Harry bent down ducked under the tent flap and felt his jaw drop .He had walked into what looked like an oldfashioned threeroom flat complete with bathroom and kitchen .Oddly enough it was furnished in exactly the same sort of style as Mrs Figgs house There were crocheted covers on the mismatched chairs and a strong smell of cats .Well its not for long said Mr Weasley mopping his bald patch with a handkerchief and peering in at the four bunk beds that stood in the bedroom .I borrowed this from Perkins at the office .Doesnt camp much anymore poor fellow hes got lumbago .He picked up the dusty kettle and peered inside it .Well need water .Theres a tap marked on this map the Muggle gave us said Ron who had followed Harry inside the tent and seemed completely unimpressed by its extraordinary inner proportions .Its on the other side of the field .Well why dont you Harry and Hermione go and get us some water then Mr Weasley handed over the kettle and a couple of saucepans and the rest of us will get some wood for a fire ?But weve got an oven said Ron .Why cant we just Ron antiMuggle security !said Mr Weasley his face shining with anticipation .When real Muggles camp they cook on fires outdoors .Ive seen them at it !After a quick tour of the girls tent which was slightly smaller than the boys though without the smell of cats Harry Ron and Hermione set off across the campsite with the kettle and saucepans .Now with the sun newly risen and the mist lifting they could see the city of tents that stretched in every direction .They made their way slowly through the rows staring eagerly around .It was only just dawning on Harry how many witches and wizards there must be in the world he had never really thought much about those in other countries .Their fellow campers were starting to wake up .First to stir were the families with small children Harry had never seen witches and wizards this young before .A tiny boy no older than two was crouched outside a large pyramidshaped tent holding a wand and poking happily at a slug in the grass which was swelling slowly to the size of a salami .As they drew level with him his mother came hurrying out of the tent .How ma .ny times Kevin ?You dont touch Daddys wand yecchh !She had trodden on the giant slug which burst .Her scolding carried after them on the still air mingling with the little boys yells You bust slug !You bust slug !A short way farther on they saw two little witches barely older than Kevin who were riding toy broomsticks that rose only high enough for the girls toes to skim the dewy grass .A Ministry wizard had already spotted them as he hurried past Harry Ron and Hermione he muttered distractedly In broad daylight !Parents having a liein I suppose Here and there adult wizards and witches were emerging from their tents and starting to cook breakfast .Some with furtive looks around them conjured fires with their wands others were striking matches with dubious looks on their faces as though sure this couldnt work .Three African wizards sat in serious conversation all of them wearing long white robes and roasting what looked like a rabbit on a bright purple fire while a group of middleaged American witches sat gossiping happily beneath a spangled banner stretched between their tents that read THE SALEM WITCHES INSTITUTE .Harry caught snatches of conversation in strange languages from the inside of tents they passed and though he couldnt understand a word the tone of every single voice was excited .Er is it my eyes or has everything gone green ?said Ron .It wasnt just Rons eyes .They had walked into a patch of tents that were all covered with a thick growth of shamrocks so that it looked as though small oddly shaped hillocks had sprouted out of the earth .Grinning faces could be seen under those that had their flaps open .Then from behind them they heard their names .Harry !Ron !Hermione !It was Seamus Finnigan their fellow Gryffindor fourth year .He was sitting in front of his own shamrock covered tent with a sandyhaired woman who had to be his mother and his best friend Dean Thomas also of Gryffindor .Like the decorations ?said Seamus grinning .The Ministrys not too happy .Ah why shouldnt we show our colors ?said Mrs Finnigan .You should see what the Bulgarians have got dangling all over their tents .Youll be supporting Ireland of course ?she added eyeing Harry Ron and Hermione beadily .When they had assured her that they were indeed supporting Ireland they set off again though as Ron said Like wed say anything else surrounded by that lot .I wonder what the Bulgarians have got dangling all over their tents ?said Hermione .Lets go and have a look said Harry pointing to a large patch of tents upheld where the Bulgarian flag white green and red was fluttering in the breeze .The tents here had not been bedecked with plant life but each and every one of them had the same poster attached to it a poster of a very surly face with heavy black eyebrows .The picture was of course moving but all it did was blink and scowl .Krum said Ron quietly .What ?said Hermione .Krum !said Ron .Viktor Krum the Bulgarian Seeker !He looks really grumpy said Hermione looking around at the many Krums blinking and scowling at them . ‘Really grumpy ?Ron raised his eyes to the heavens .Who cares what he looks like ?Hes unbelievable .Hes really young too .Only just eighteen or something .Hes a genius you wait until tonight youll see .There was already a small queue for the tap in the corner of the field .Harry Ron and Hermione joined it right behind a pair of men who were having a heated argument .One of them was a very old wizard who was wearing a long flowery nightgown .The other was clearly a Ministry wizard he was holding out a pair of pinstriped trousers and almost crying with exasperation .Just put them on Archie theres a good chap .You cant walk around like that the Muggle at the gates already getting suspicious I bought this in a Muggle shop said the old wizard stubbornly .Muggles wear them .Muggle women wear them Archie not the men they wear these said the Ministry wizard and he brandished the pinstriped trousers .Im not putting them on said old Archie in indignation .I like a healthy breeze round my privates thanks .Hermione was overcome with such a strong fit of the giggles at this point that she had to duck out of the queue and only returned when Archie had collected his water and moved away .Walking more slowly now because of the weight of the water they made their way back through the campsite .Here and there they saw more familiar faces other Hogwarts students with their families .Oliver Wood the old captain of Harrys House Quidditch team who had just left Hogwarts dragged Harry over to his parents tent to introduce him and told him excitedly that he had just been signed to the Puddlemere United reserve team .Next they were hailed by Ernie Macmillan a Hufflepuff fourth year and a little farther on they saw Cho Chang a very pretty girl who played Seeker on the Ravenclaw team .She waved and smiled at Harry who slopped quite a lot of water down his front as he waved back .More to stop Ron from smirking than anything Harry hurriedly pointed out a large group of teenagers whom he had never seen before .Who dyou reckon they are ?he said .They dont go to Hogwarts do they ?Spect they go to some foreign school said Ron .I know there are others .Never met anyone who went to one though .Bill had a penfriend at a school in Brazil .this was years and years ago .and he wanted to go on an exchange trip but Mum and Dad couldnt afford it .His penfriend got all offended when he said he wasnt going and sent him a cursed hat .It made his ears shrivel up .Harry laughed but didnt voice the amazement he felt at hearing about other wizarding schools .He supposed now that he saw representatives of so many nationalities in the campsite that he had been stupid never to realize that Hogwarts couldnt be the only one .He glanced at Hermione who looked utterly unsurprised by the information .No doubt she had run across the news about other wizarding schools in some book or other .Youve been ages said George when they finally got back to the Weasleys tents .Met a few people said Ron setting the water down .You not got that fire started yet ?Dads having fun with the matches said Fred .Mr Weasley was having no success at all in lighting the fire but it wasnt for lack of trying .Splintered matches littered the ground around him but he looked as though he was having the time of his life .Oops !he said as he managed to light a match and promptly dropped it in surprise .Come here Mr Weasley said Hermione kindly taking the box from him and showing him how to do it properly .At last they got the fire lit though it was at least another hour before it was hot enough to cook anything .There was plenty to watch while they waited however .Their tent seemed to be pitched right alongside a kind of thoroughfare to the field and Ministry members kept hurrying up and down it greeting Mr Weasley cordially as they passed .Mr Weasley kept up a running commentary mainly for Harrys and Hermiones benefit his own children knew too much about the Ministry to be greatly interested .That was Cuthbert Mockridge Head of the Goblin Liaison Office .Here comes Gilbert Wimple hes with the Committee on Experimental Charms hes had those horns for awhile now .Hello Arnie .Arnold Peasegood hes an Obliviator member of the Accidental Magic Reversal Squad you know .and thats Bode and Croaker .theyre Unspeakables .Theyre what ?From the Department of Mysteries top secret no idea what they get up to .At last the fire was ready and they had just started cooking eggs and sausages when Bill Charlie and Percy came strolling out of the woods toward them .Just Apparated Dad said Percy loudly .Ah excellent lunch !They were halfway through their plates of eggs and sausages when Mr Weasley jumped to his feet waving and grinning at a man who was striding toward them .Aha !he said .The man of the moment !Ludo !Ludo Bagman was easily the most noticeable person Harry had seen so far even including old Archie in his flowered nightdress .He was wearing long Quidditch robes in thick horizontal stripes of bright yellow and black .An enormous picture of a wasp was splashed across his chest .He had the look of a powerfully built man gone slightly to seed the robes were stretched tightly across a large belly he surely had not had in the days when he had played Quidditch for England .His nose was squashed probably broken by a stray Bludger Harry thought but his round blue eyes short blond hair and rosy complexion made him look like a very overgrown schoolboy .Ahoy there !Bagman called happily .He was walking as though he had springs attached to the balls of his feet and was plainly in a state of wild excitement .Arthur old man he puffed as he reached the campfire what a day eh ?What a day !Could we have asked for more perfect weather ?A cloudless night coming .and hardly a hiccough in the arrangements .Not much for me to do !Behind him a group of haggardlooking Ministry wizards rushed past pointing at the distant evidence of some sort of a magical fire that was sending violet sparks twenty feet into the air .Percy hurried forward with his hand outstretched .Apparently his disapproval of the way Ludo Bagman ran his department did not prevent him from wanting to make a good impression .Ah yes said Mr Weasley grinning this is my son Percy .Hes just started at the Ministry and this is Fred no George sorry thats Fred Bill Charlie Ron my daughter Ginny and Rons friends Hermione Granger and Harry Potter .Bagman did the smallest of double takes when he heard Harrys name and his eyes performed the familiar flick upward to the scar on Harrys forehead .Everyone Mr Weasley continued this is Ludo Bagman you know who he is its thanks to him weve got such good tickets Bagman beamed and waved his hand as if to say it had been nothing .Fancy a flutter on the match Arthur ?he said eagerly jingling what seemed to be a large amount of gold in the pockets of his yellowandblack robes .Ive already got Roddy Pontner betting me Bulgaria will score first I offered him nice odds considering Irelands front three are the strongest Ive seen in years and little Agatha Timms has put up half shares in her eel farm on a weeklong match .Oh .go on then said Mr Weasley .Lets see .a Galleon on Ireland to win ?A Galleon ?Ludo Bagman looked slightly disappointed but recovered himself .Very well very well .any other takers ?Theyre a bit young to be gambling said Mr Weasley .Molly wouldnt like Well bet thirtyseven Galleons fifteen Sickles three Knuts said Fred as he and George quickly pooled all their money that Ireland wins but Viktor Krum gets the Snitch .Oh and well throw in a fake wand .You dont want to go showing Mr Bagman rubbish like that Percy hissed but Bagman didnt seem to think the wand was rubbish at all on the contrary his boyish face shone with excitement as he took it from Fred and when the wand gave a loud squawk and turned into a rubber chicken Bagman roared with laughter .Excellent !I havent seen one that convincing in years !Id pay five Galleons for that !Percy froze in an attitude of stunned disapproval .Boys said Mr Weasley under his breath I dont want you betting .Thats all your savings .Your mother Dont be a spoilsport Arthur !boomed Ludo Bagman rattling his pockets excitedly .Theyre old enough to know what they want !You reckon Ireland will win but Krum ll get the Snitch ?Not a chance boys not a chance .Ill give you excellent odds on that one .Well add five Galleons for the funny wand then shall we .Mr Weasley looked on helplessly as Ludo Bagman whipped out a notebook and quill and began jotting down the twins names .Cheers said George taking the slip of parchment Bagman handed him and tucking it away carefully .Bagman turned most cheerfully back to Mr Weasley .Couldnt do me a brew I suppose ?Im keeping an eye out for Barty Crouch .My Bulgarian opposite numbers making difficulties and I cant understand a word hes saying .Bartyll be able to sort it out .He speaks about a hundred and fifty languages .Mr Crouch ?said Percy suddenly abandoning his look of pokerstiff disapproval and positively writhing with excitement .He speaks over two hundred !Mermish and Gobbledegook and Troll .Anyone can speak Troll said Fred dismissively .All you have to do is point and grunt .Percy threw Fred an extremely nasty look and stoked the fire vigorously to bring the kettle back to the boil .Any news of Bertha Jorkins yet Ludo ?Mr Weasley asked as Bagman settled himself down on the grass beside them all .Not a dicky bird said Bagman comfortably .But shell turn up .Poor old Bertha .memory like a leaky cauldron and no sense of direction .Lost you take my word for it .Shell wander back into the office sometime in October thinking its still July .You dont think it might be time to send someone to look for her ?Mr Weasley suggested tentatively as Percy handed Bagman his tea .Barty Crouch keeps saying that said Bagman his round eyes widening innocently but we really cant spare anyone at the moment .Oh talk of the devil !Barty !A wizard had just Apparated at their fireside and he could not have made more of a contrast with Ludo Bagman sprawled on the grass in his old Wasp robes .Barty Crouch was a stiff upright elderly man dressed in an impeccably crisp suit and tie .The parting in his short gray hair was almost unnaturally straight and his narrow toothbrush mustache looked as though he trimmed it using a slide rule .His shoes were very highly polished .Harry could see at once why Percy idolized him .Percy was a great believer in rigidly following rules and Mr Crouch had complied with the rule about Muggle dressing so thoroughly that he could have passed for a bank manager Harry doubted even Uncle Vernon would have spotted him for what he really was .Pull up a bit of grass Barty said Ludo brightly patting the ground beside him .No thank you Ludo said Crouch and there was a bite of impatience in his voice .Ive been looking for you everywhere .The Bulgarians are insisting we add another twelve seats to the Top Box .Oh is that what theyre after ?said Bagman .I thought the chap was asking to borrow a pair of tweezers .Bit of a strong accent .Mr Crouch !said Percy breathlessly sunk into a kind of halfbow that made him look like a hunchback .Would you like a cup of tea ?Oh said Mr Crouch looking over at Percy in mild surprise .Yes thank you Weatherby .Fred and George choked into their own cups .Percy very pink around the ears busied himself with the kettle .Oh and Ive been wanting a word with you too Arthur said Mr Crouch his sharp eyes falling upon Mr Weasley .Ali Bashirs on the warpath .He wants a word with you about your embargo on flying carpets .Mr Weasley heaved a deep sigh .I sent him an owl about that just last week .If Ive told him once Ive told him a hundred times Carpets are defined as a Muggle Artifact by the Registry of Proscribed Charmable Objects but will he listen ?I doubt it said Mr Crouch accepting a cup from Percy .Hes desperate to export here .Well theyll never replace brooms in Britain will they ?said Bagman .Ali thinks theres a niche in the market for a family vehicle said Mr Crouch .I remember my grandfather had an Axminster that could seat twelve but that was before carpets were banned of course .He spoke as though he wanted to leave nobody in any doubt that all his ancestors had abided strictly by the law .So been keeping busy Barty ?said Bagman breezily .Fairly said Mr Crouch dryly .Organizing Portkeys across five continents is no mean feat Ludo .I expect youll both be glad when this is over ?said Mr Weasley .Ludo Bagman looked shocked .Glad !Dont know when Ive had more fun .Still its not as though we havent got anything to look forward to eh Barty ?Eh ?Plenty left to organize eh ?Mr Crouch raised his eyebrows at Bagman .We agreed not to make the announcement until all the details Oh details !said Bagman waving the word away like a cloud of midges .Theyve signed havent they ?Theyve agreed havent they ?I bet you anything these kidsll know soon enough anyway .I mean its happening at Hogwarts Ludo we need to meet the Bulgarians you know said Mr Crouch sharply cutting Bagmans remarks short .Thank you for the tea Weatherby .He pushed his undrunk tea back at Percy and waited for Ludo to rise Bagman struggled to his feet swigging down the last of his tea the gold in his pockets chinking merrily .See you all later !he said .Youll be up in the Top Box with me Im commentating !He waved Barty Crouch nodded curtly and both of them Disapparated .Whats happening at Hogwarts Dad ?said Fred at once .What were they talking about ?Youll find out soon enough said Mr Weasley smiling .Its classified information until such time as the Ministry decides to release it said Percy stiffly .Mr Crouch was quite right not to disclose it .Oh shut up Weatherby said Fred .A sense of excitement rose like a palpable cloud over the campsite as the afternoon wore on .By dusk the still summer air itself seemed to be quivering with anticipation and as darkness spread like a curtain over the thousands of waiting wizards the last vestiges of pretence disappeared the Ministry seemed to have bowed to the inevitable and stopped fighting the signs of blatant magic now breaking out everywhere .Salesmen were Apparating every few feet carrying trays and pushing carts full of extraordinary merchandise .There were luminous rosettes green for Ireland red for Bulgaria which were squealing the names of the players pointed green hats bedecked with dancing shamrocks Bulgarian scarves adorned with lions that really roared flags from both countries that played their national anthems as they were waved there were tiny models of Firebolts that really flew and collectible figures of famous players which strolled across the palm of your hand preening themselves .Been saving my pocket money all summer for this Ron told Harry as they and Hermione strolled through the salesmen buying souvenirs .Though Ron purchased a dancing shamrock hat and a large green rosette he also bought a small figure of Viktor Krum the Bulgarian Seeker .The miniature Krum walked backward and forward over Rons hand scowling up at the green rosette above him .Wow look at these !said Harry hurrying over to a cart piled high with what looked like brass binoculars except that they were covered with all sorts of weird knobs and dials .Omnioculars said the saleswizard eagerly .You can replay action .slow everything down .and they flash up a playbyplay breakdown if you need it .Bargain ten Galleons each .Wish I hadnt bought this now said Ron gesturing at his dancing shamrock hat and gazing longingly at the Omnioculars .Three pairs said Harry firmly to the wizard .No dont bother said Ron going red .He was always touchy about the fact that Harry who had inherited a small fortune from his parents had much more money than he did .You wont be getting anything for Christmas Harry told him thrusting Omnioculars into his and Hermiones hands .For about ten years mind .Fair enough said Ron grinning .Oooh thanks Harry said Hermione .And Ill get us some programs look Their money bags considerably lighter they went back to the tents .Bill Charlie and Ginny were all sporting green rosettes too and Mr Weasley was carrying an Irish flag .Fred and George had no souvenirs as they had given Bagman all their gold .And then a deep booming gong sounded somewhere beyond the woods and at once green and red lanterns blazed into life in the trees lighting a path to the field .Its time !said Mr Weasley looking as excited as any of them .Come on lets go !4 THE QUIDDITCH WORLD CUP Clutching their purchases Mr Weasley in the lead they all hurried into the wood following the lantern lit trail .They could hear the sounds of thousands of people moving around them shouts and laughter snatches of singing .The atmosphere of feverish excitement was highly infectious Harry couldnt stop grinning .They walked through the wood for twenty minutes talking and joking loudly until at last they emerged on the other side and found themselves in the shadow of a gigantic stadium .Though Harry could see only a fraction of the immense gold walls surrounding the field he could tell that ten cathedrals would fit comfortably inside it .Seats a hundred thousand said Mr Weasley spotting the awestruck look on Harrys face .Ministry task force of five hundred have been working on it all year .Muggle Repelling Charms on every inch of it .Every time Muggles have got anywhere near here all year theyve suddenly remembered urgent appointments and had to dash away again .bless them he added fondly leading the way toward the nearest entrance which was already surrounded by a swarm of shouting witches and wizards .Prime seats !said the Ministry witch at the entrance when she checked their tickets .Top Box !Straight upstairs Arthur and as high as you can go .The stairs into the stadium were carpeted in rich purple .They clambered upward with the rest of the crowd which slowly filtered away through doors into the stands to their left and right .Mr Weasleys party kept climbing and at last they reached the top of the staircase and found themselves in a small box set at the highest point of the stadium and situated exactly halfway between the golden goal posts .About twenty purpleandgilt chairs stood in two rows here and Harry filing into the front seats with the Weasleys looked down upon a scene the likes of which he could never have imagined .A hundred thousand witches and wizards were taking their places in the seats which rose in levels around the long oval field .Everything was suffused with a mysterious golden light which seemed to come from the stadium itself .The field looked smooth as velvet from their lofty position .At either end of the field stood three goal hoops fifty feet high right opposite them almost at Harrys eye level was a gigantic blackboard .Gold writing kept dashing across it as though an invisible giants hand were scrawling upon the blackboard and then wiping it off again watching it Harry saw that it was flashing advertisements across the field .The Bluebottle A Broom for All the Family safe reliable and with Builtin AntiBurglar Buzzer .Mrs Skowers AllPurpose Magical Mess Remover No Pain No Stain ! .Gladrags Wizardwear London Paris Hogsmeade .Harry tore his eyes away from the sign and looked over his shoulder to see who else was sharing the box with them .So far it was empty except for a tiny creature sitting in the second from last seat at the end of the row behind them .The creature whose legs were so short they stuck out in front of it on the chair was wearing a tea towel draped like a toga and it had its face hidden in its hands .Yet those long batlike ears were oddly familiar .Dobby ?said Harry incredulously .The tiny creature looked up and stretched its fingers revealing enormous brown eyes and a nose the exact size and shape of a large tomato .It wasnt Dobby it was however unmistakably a houseelf as Harrys friend Dobby had been .Harry had set Dobby free from his old owners the Malfoy family .Did sir just call me Dobby ?squeaked the elf curiously from between its fingers .Its voice was higher even than Dobbys had been a teeny quivering squeak of a voice and Harry suspected though it was very hard to tell with a houseelf that this one might just be female .Ron and Hermione spun around in their seats to look .Though they had heard a lot about Dobby from Harry they had never actually met him .Even Mr Weasley looked around in interest .Sorry Harry told the elf I just thought you were someone I knew .But I knows Dobby too sir !squeaked the elf .She was shielding her face as though blinded by light though the Top Box was not brightly lit .My name is Winky sir and you sir Her dark brown eyes widened to the size of side plates as they rested upon Harrys scar .You is surely Harry Potter !Yeah I am said Harry .But Dobby talks of you all the time sir !she said lowering her hands very slightly and looking awestruck .How is he ?said Harry .Hows freedom suiting him ?Ah sir said Winky shaking her head ah sir meaning no disrespect sir but I is not sure you did Dobby a favor sir when you is setting him free .Why ?said Harry taken aback .Whats wrong with him ?Freedom is going to Dobbys head sir said Winky sadly .Ideas above his station sir .Cant get another position sir .Why not ?said Harry .Winky lowered her voice by a halfoctave and whispered He is wanting paying for his work sir .Paying ?said Harry blankly .Well why shouldnt he be paid ?Winky looked quite horrified at the idea and closed her fingers slightly so that her face was halfhidden again .Houseelves is not paid sir !she said in a muffled squeak .No no no .I says to Dobby I says go find yourself a nice family and settle down Dobby .He is getting up to all sorts of high jinks sir what is unbecoming to a houseelf .You goes racketing around like this Dobby I says and next thing I hear yous up in front of the Department for the Regulation and Control of Magical Creatures like some common goblin .Well its about time he had a bit of fun said Harry .Houseelves is not supposed to have fun Harry Potter said Winky firmly from behind her hands .Houseelves does what they is told .I is not liking heights at all Harry Potter she glanced toward the edge of the box and gulped but my master sends me to the Top Box and I comes sir .Whys he sent you up here if he knows you dont like heights ?said Harry frowning .Master master wants me to save him a seat Harry Potter .He is very busy said Winky tilting her head toward the empty space beside her .Winky is wishing she is back in masters tent Harry Potter but Winky does what she is told .Winky is a good houseelf .She gave the edge of the box another frightened look and hid her eyes completely again .Harry turned back to the others .So thats a houseelf ?Ron muttered .Weird things arent they ?Dobby was weirder said Harry fervently .Ron pulled out his Omnioculars and started testing them staring down into the crowd on the other side of the stadium .Wild !he said twiddling the replay knob on the side .I can make that old bloke down there pick his nose again .and again .and again .Hermione meanwhile was skimming eagerly through her velvetcovered tasseled program . ‘A display from the team mascots will precede the match she read aloud .Oh thats always worth watching said Mr Weasley .National teams bring creatures from their native land you know to put on a bit of a show .The box filled gradually around them over the next half hour .Mr Weasley kept shaking hands with people who were obviously very important wizards .Percy jumped to his feet so often that he looked as though he were trying to sit on a hedgehog .When Cornelius Fudge the Minister of Magic himself arrived Percy bowed so low that his glasses fell off and shattered .Highly embarrassed he repaired them with his wand and thereafter remained in his seat throwing jealous looks at Harry whom Cornelius Fudge had greeted like an old friend .They had met before and Fudge shook Harrys hand in a fatherly fashion asked how he was and introduced him to the wizards on either side of him .Harry Potter you know he told the Bulgarian minister loudly who was wearing splendid robes of black velvet trimmed with gold and didnt seem to understand a word of English .Harry Potter .oh come on now you know who he is .the boy who survived YouKnowWho .you do know who he is The Bulgarian wizard suddenly spotted Harrys scar and started gabbling loudly and excitedly pointing at it .Knew wed get there in the end said Fudge wearily to Harry .Im no great shakes at languages I need Barty Crouch for this sort of thing .Ah I see his houseelfs saving him a seat .Good job too these Bulgarian blighters have been trying to cadge all the best places .ah and heres Lucius !Harry Ron and Hermione turned quickly .Edging along the second row to three stillempty seats right behind Mr Weasley were none other than Dobby the houseelfs former owners Lucius Malfoy his son Draco and a woman Harry supposed must be Dracos mother .Harry and Draco Malfoy had been enemies ever since their very first journey to Hogwarts .A pale boy with a pointed face and whiteblond hair Draco greatly resembled his father .His mother was blonde too tall and slim she would have been nicelooking if she hadnt been wearing a look that suggested there was a nasty smell under her nose .Ah Fudge said Mr Malfoy holding out his hand as he reached the Minister of Magic .How are you ?I dont think youve met my wife Narcissa ?Or our son Draco ?How do you do how do you do ?said Fudge smiling and bowing to Mrs Malfoy .And allow me to introduce you to Mr Oblansk Obalonsk Mr well hes the Bulgarian Minister of Magic and he cant understand a word Im saying anyway so never mind .And lets see who else you know Arthur Weasley I daresay ?It was a tense moment .Mr Weasley and Mr Malfoy looked at each other and Harry vividly recalled the last time they had come facetoface It had been in Flourish and Blotts bookshop and they had had a fight .Mr Malfoys cold gray eyes swept over Mr Weasley and then up and down the row .Good lord Arthur he said softly .What did you have to sell to get seats in the Top Box ?Surely your house wouldnt have fetched this much ?Fudge who wasnt listening said Lucius has just given a very generous contribution to St .Mungos Hospital for Magical Maladies and Injuries Arthur .Hes here as my guest .How how nice said Mr Weasley with a very strained smile .Mr Malfoys eyes had returned to Hermione who went slightly pink but stared determinedly back at him .Harry knew exactly what was making Mr Malfoys lip curl like that .The Malfoys prided themselves on being purebloods in other words they considered anyone of Muggle descent like Hermione secondclass .However under the gaze of the Minister of Magic Mr Malfoy didnt dare say anything .He nodded sneeringly to Mr Weasley and continued down the line to his seats .Draco shot Harry Ron and Hermione one contemptuous look then settled himself between his mother and father .Slimy gits Ron muttered as he Harry and Hermione turned to face the field again .Next moment Ludo Bagman charged into the box .Everyone ready ?he said his round face gleaming like a great excited Edam .Minister ready to go ?Ready when you are Ludo said Fudge comfortably .Ludo whipped out his wand directed it at his own throat and said Sonorusl and then spoke over the roar of sound that was now filling the packed stadium his voice echoed over them booming into every corner of the stands .Ladies and gentlemen .welcome !Welcome to the final of the four hundred and twentysecond Quidditch World Cup !The spectators screamed and clapped .Thousands of flags waved adding their discordant national anthems to the racket .The huge blackboard opposite them was wiped clear of its last message Bertie Botts Every Flavor Beans A Risk With Every Mouthfull and now showed BULGARIA 0 IRELAND 0 .And now without further ado allow me to introduce .the Bulgarian National Team Mascots !The righthand side of the stands which was a solid block of scarlet roared its approval .I wonder what theyve brought said Mr Weasley leaning forward in his seat .aah !He suddenly whipped off his glasses and polished them hurriedly on his robes .Veelal What are veel ?But a hundred veela were now gliding out onto the field and Harrys question was answered for him .Veela were women .the most beautiful women Harry had ever seen .except that they werent they couldnt be human .This puzzled Harry for a moment while he tried to guess what exactly they could be what could make their skin shine moon bright like that or their whitegold hair fan out behind them without wind .but then the music started and Harry stopped worrying about them not being human in fact he stopped worrying about anything at all .The veela had started to dance and Harrys mind had gone completely and blissfully blank .All that mattered in the world was that he kept watching the veela because if they stopped dancing terrible things would happen .And as the veela danced faster and faster wild half formed thoughts started chasing through Harrys dazed mind .He wanted to do something very impressive right now .Jumping from the box into the stadium seemed a good idea .but would it be good enough ?Harry what are you doing ?said Hermiones voice from a long way off .The music stopped .Harry blinked .He was standing up and one of his legs was resting on the wall of the box .Next to him Ron was frozen in an attitude that looked as though he were about to dive from a springboard .Angry yells were filling the stadium .The crowd didnt want the veela to go .Harry was with them he would of course be supporting Bulgaria and he wondered vaguely why he had a large green shamrock pinned to his chest .Ron meanwhile was absentmindedly shredding the shamrocks on his hat .Mr Weasley smiling slightly leaned over to Ron and tugged the hat out of his hands .Youll be wanting that he said once Ireland have had their say .Huh ?said Ron staring openmouthed at the veela who had now lined up along one side of the field .Hermione made a loud tutting noise .She reached up and pulled Harry back into his seat .Honestlyl she said .And now roared Ludo Bagmans voice kindly put your wands in the air .for the Irish National Team Mascots !Next moment what seemed to be a great greenand gold comet came zooming into the stadium .It did one circuit of the stadium then split into two smaller comets each hurtling toward the goal posts .A rainbow arced suddenly across the field connecting the two balls of light .The crowd oooohed and aahed as though at a fireworks display .Now the rainbow faded and the balls of light reunited and merged they had formed a great shimmering shamrock which rose up into the sky and began to soar over the stands .Something like golden rain seemed to be falling from it Excellent !yelled Ron as the shamrock soared over them and heavy gold coins rained from it bouncing off their heads and seats .Squinting up at the shamrock Harry realized that it was actually comprised of thousands of tiny little bearded men with red vests each carrying a minute lamp of gold or green .Leprechauns !said Mr Weasley over the tumultuous applause of the crowd many of whom were still fighting and rummaging around under their chairs to retrieve the gold .There you go Ron yelled happily stuffing a fistful of gold coins into Harrys hand for the Omnioculars !Now youve got to buy me a Christmas present ha !The great shamrock dissolved the leprechauns drifted down onto the field on the opposite side from the veela and settled themselves crosslegged to watch the match .And now ladies and gentlemen kindly welcome the Bulgarian National Quidditch Team !I give you Dimitrov !A scarletclad figure on a broomstick moving so fast it was blurred shot out onto the field from an entrance far below to wild applause from the Bulgarian supporters .Ivanova !A second scarletrobed player zoomed out .Zograf !Levski !Vulchanov !Volkov !aand Krum Thats him thats him !yelled Ron following Krum with his Omnioculars .Harry quickly focused his own .Viktor Krum was thin dark and sallowskinned with a large curved nose and thick black eyebrows .He looked like an overgrown bird of prey .It was hard to believe he was only eighteen .And now please greet the Irish National Quidditch Team !yelled Bagman .Presenting Connolly !Ryan !Troy !Mullet !Moran !Quigley !aand Lynch .Seven green blurs swept onto the field Harry spun a small dial on the side of his Omnioculars and slowed the players down enough to read the word Firebolt on each of their brooms and see their names embroidered in silver upon their backs .And here all the way from Egypt our referee acclaimed Chairwizard of the International Association of Quidditch Hassan Mostafa !A small and skinny wizard completely bald but with a mustache to rival Uncle Vernons wearing robes of pure gold to match the stadium strode out onto the field .A silver whistle was protruding from under the mustache and he was carrying a large wooden crate under one arm his broomstick under the other .Harry spun the speed dial on his Omnioculars back to normal watching closely as Mostafa mounted his broomstick and kicked the crate open four balls burst into the air the scarlet Quaffle the two black Bludgers and Harry saw it for the briefest moment before it sped out of sight the minuscule winged Golden Snitch .With a sharp blast on his whistle Mostafa shot into the air after the balls .Theeeeeeeeyre OFF !screamed Bagman .And its Mullet !Troy !Moran !Dimitrov !Back to Mullet !Troy !Levski !Moran !It was Quidditch as Harry had never seen it played before .He was pressing his Omnioculars so hard to his glasses that they were cutting into the bridge of his nose .The speed of the players was incredible the Chasers were throwing the Quaffle to one another so fast that Bagman only had time to say their names .Harry spun the slow dial on the right of his Omnioculars again pressed the playbyplay button on the top and he was immediately watching in slow motion while glittering purple lettering flashed across the lenses and the noise of the crowd pounded against his eardrums .Hawkshead Attacking Formation he read as he watched the three Irish Chasers zoom closely together Troy in the center slightly ahead of Mullet and Moran bearing down upon the Bulgarians .Porskoff Ploy flashed up next as Troy made as though to dart upward with the Quaffle drawing away the Bulgarian Chaser Ivanova and dropping the Quaffle to Moran .One of the Bulgarian Beaters Volkov swung hard at a passing Bludger with his small club knocking it into Morans path Moran ducked to avoid the Bludger and dropped the Quaffle and Levski soaring beneath caught it TROY SCORES !roared Bagman and the stadium shuddered with a roar of applause and cheers .Ten zero to Ireland !What ?Harry yelled looking wildly around through his Omnioculars .But Levskis got the Quaffle !Harry if youre not going to watch at normal speed youre going to miss things !shouted Hermione who was dancing up and down waving her arms in the air while Troy did a lap of honor around the field .Harry looked quickly over the top of his Omnioculars and saw that the leprechauns watching from the sidelines had all risen into the air again and formed the great glittering shamrock .Across the field the veela were watching them sulkily .Furious with himself Harry spun his speed dial back to normal as play resumed .Harry knew enough about Quidditch to see that the Irish Chasers were superb .They worked as a seamless team their movements so well coordinated that they appeared to be reading one anothers minds as they positioned themselves and the rosette on Harrys chest kept squeaking their names Troy Mullet Moran .And within ten minutes Ireland had scored twice more bringing their lead to thirtyzero and causing a thunderous tide of roars and applause from the greenclad supporters .The match became still faster but more brutal .Volkov and Vulchanov the Bulgarian Beaters were whacking the Bludgers as fiercely as possible at the Irish Chasers and were starting to prevent them from using some of their best moves twice they were forced to scatter and then finally Ivanova managed to break through their ranks dodge the Keeper Ryan and score Bulgarias first goal .Fingers in your ears !bellowed Mr Weasley as the veela started to dance in celebration .Harry screwed up his eyes too he wanted to keep his mind on the game .After a few seconds he chanced a glance at the field .The veela had stopped dancing and Bulgaria was again in possession of the Quaffle .Dimitrov !Levski !Dimitrov !Ivanova oh I say !roared Bagman .One hundred thousand wizards gasped as the two Seekers Krum and Lynch plummeted through the center of the Chasers so fast that it looked as though they had just jumped from airplanes without parachutes .Harry followed their descent through his Omnioculars squinting to see where the Snitch was Theyre going to crash !screamed Hermione next to Harry .She was half right at the very last second Viktor Krum pulled out of the dive and spiraled off .Lynch however hit the ground with a dull thud that could be heard throughout the stadium .A huge groan rose from the Irish seats .Fool !moaned Mr Weasley .Krum was feinting !Its timeout !yelled Bagmans voice as trained mediwizards hurry onto the field to examine Aidan Lynch !Hell be okay he only got ploughed !Charlie said reassuringly to Ginny who was hanging over the side of the box looking horrorstruck .Which is what Krum was after of course .Harry hastily pressed the replay and playbyplay buttons on his Omnioculars twiddled the speed dial and put them back up to his eyes .He watched as Krum and Lynch dived again in slow motion .Wronski Defensive Feint dangerous Seeker diversion read the shining purple lettering across his lenses .He saw Krums face contorted with concentration as he pulled out of the dive just in time while Lynch was flattened and he understood Krum hadnt seen the Snitch at all he was just making Lynch copy him .Harry had never seen anyone fly like that Krum hardly looked as though he was using a broomstick at all he moved so easily through the air that he looked unsupported and weightless .Harry turned his Omnioculars back to normal and focused them on Krum .He was now circling high above Lynch who was being revived by mediwizards with cups of potion .Harry focusing still more closely upon Krums face saw his dark eyes darting all over the ground a hundred feet below .He was using the time while Lynch was revived to look for the Snitch without interference .Lynch got to his feet at last to loud cheers from the greenclad supporters mounted his Firebolt and kicked back off into the air .His revival seemed to give Ireland new heart .When Mostafa blew his whistle again the Chasers moved into action with a skill unrivaled by anything Harry had seen so far .After fifteen more fast and furious minutes Ireland had pulled ahead by ten more goals .They were now leading by one hundred and thirty points to ten and the game was starting to get dirtier .As Mullet shot toward the goal posts yet again clutching the Quaffle tightly under her arm the Bulgarian Keeper Zograf flew out to meet her .Whatever happened was over so quickly Harry didnt catch it but a scream of rage from the Irish crowd and Mostafas long shrill whistle blast told him it had been a foul .And Mostafa takes the Bulgarian Keeper to task for cobbing excessive use of elbows !Bagman informed the roaring spectators .And yes its a penalty to Ireland !The leprechauns who had risen angrily into the air like a swarm of glittering hornets when Mullet had been fouled now darted together to form the words HA HA HA !The veela on the other side of the field leapt to their feet tossed their hair angrily and started to dance again .As one the Weasley boys and Harry stuffed their fingers into their ears but Hermione who hadnt bothered was soon tugging on Harrys arm .He turned to look at her and she pulled his fingers impatiently out of his ears .Look at the referee !she said giggling .Harry looked down at the field .Hassan Mostafa had landed right in front of the dancing veela and was acting very oddly indeed .He was flexing his muscles and smoothing his mustache excitedly .Now we cant have that !said Ludo Bagman though he sounded highly amused .Somebody slap the referee !A mediwizard came tearing across the field his fingers stuffed into his own ears and kicked Mostafa hard in the shins .Mostafa seemed to come to himself Harry watching through the Omnioculars again saw that he looked exceptionally embarrassed and had started shouting at the veela who had stopped dancing and were looking mutinous .And unless Im much mistaken Mostafa is actually attempting to send off the Bulgarian team mascots !said Bagmans voice .Now theres something we havent seen before .Oh this could turn nasty .It did The Bulgarian Beaters Volkov and Vulchanov landed on either side of Mostafa and began arguing furiously with him gesticulating toward the leprechauns who had now gleefully formed the words HEE HEE HEE .Mostafa was not impressed by the Bulgarians arguments however he was jabbing his finger into the air clearly telling them to get flying again and when they refused he gave two short blasts on his whistle .Two penalties for Ireland !shouted Bagman and the Bulgarian crowd howled with anger .And Volkov and Vulchanov had better get back on those brooms .yes .there they go .and Troy takes the Quaffle .Play now reached a level of ferocity beyond anything they had yet seen .The Beaters on both sides were acting without mercy Volkov and Vulchanov in particular seemed not to care whether their clubs made contact with Bludger or human as they swung them violently through the air .Dimitrov shot straight at Moran who had the Quaffle nearly knocking her off her broom .Foul roared the Irish supporters as one all standing up in a great wave of green .Foul !echoed Ludo Bagmans magically magnified voice .Dimitrov skins Moran deliberately flying to collide there and its got to be another penalty yes theres the whistle !The leprechauns had risen into the air again and this time they formed a giant hand which was making a very rude sign indeed at the veela across the field .At this the veela lost control .Instead of dancing they launched themselves across the field and began throwing what seemed to be handfuls of fire at the leprechauns .Watching through his Omnioculars Harry saw that they didnt look remotely beautiful now .On the contrary their faces were elongating into sharp cruelbeaked bird heads and long scaly wings were bursting from their shoulders And that boys yelled Mr Weasley over the tumult of the crowd below is why you should never go for looks alone !Ministry wizards were flooding onto the field to separate the veela and the leprechauns but with little success meanwhile the pitched battle below was nothing to the one taking place above .Harry turned this way and that staring through his Omnioculars as the Quaffle changed hands with the speed of a bullet .Levski Dimitrov Moran Troy Mullet Ivanova Moran again Moran MORAN SCORES !But the cheers of the Irish supporters were barely heard over the shrieks of the veela the blasts now issuing from the Ministry members wands and the furious roars of the Bulgarians .The game recommenced immediately now Levski had the Quaffle now Dimitrov The Irish Beater Quigley swung heavily at a passing Bludger and hit it as hard as possible toward Krum who did not duck quickly enough .It hit him full in the face .There was a deafening groan from the crowd Krums nose looked broken there was blood everywhere but Hassan Mostafa didnt blow his whistle .He had become distracted and Harry couldnt blame him one of the veela had thrown a handful of fire and set his broom tail alight .Harry wanted someone to realize that Krum was injured even though he was supporting Ireland Krum was the most exciting player on the field .Ron obviously felt the same .Timeout !Ah come on he cant play like that look at him Look at Lynch 1 Harry yelled .For the Irish Seeker had suddenly gone into a dive and Harry was quite sure that this was no Wronski Feint this was the real thing .Hes seen the Snitch !Harry shouted .Hes seen it !Look at him go !Half the crowd seemed to have realized what was happening the Irish supporters rose in another great wave of green screaming their Seeker on .but Krum was on his tail .How he could see where he was going Harry had no idea there were flecks of blood flying through the air behind him but he was drawing level with Lynch now as the pair of them hurtled toward the ground again Theyre going to crash !shrieked Hermione .Theyre not !roared Ron .Lynch is !yelled Harry .And he was right for the second time Lynch hit the ground with tremendous force and was immediately stampeded by a horde of angry veela .The Snitch wheres the Snitch ?bellowed Charlie along the row .Hes got it Krums got it its all over !shouted Harry .Krum his red robes shining with blood from his nose was rising gently into the air his fist held high a glint of gold in his hand .The scoreboard was flashing BULGARIA 160 IRELAND 170 across the crowd who didnt seem to have realized what had happened .Then slowly as though a great jumbo jet were revving up the rumbling from the Ireland supporters grew louder and louder and erupted into screams of delight .IRELAND WINS !Bagman shouted who like the Irish seemed to be taken aback by the sudden end of the match .KRUM GETS THE SNITCH BUT IRELAND WINS good lord I dont think any of us were expecting that !What did he catch the Snitch for ?Ron bellowed even as he jumped up and down applauding with his hands over his head .He ended it when Ireland were a hundred and sixty points ahead the idiot !He knew they were never going to catch up !Harry shouted back over all the noise also applauding loudly .The Irish Chasers were too good .He wanted to end it on his terms thats all .He was very brave wasnt he ?Hermione said leaning forward to watch Krum land as a swarm of mediwizards blasted a path through the battling leprechauns and veela to get to him .He looks a terrible mess .Harry put his Omnioculars to his eyes again .It was hard to see what was happening below because leprechauns were zooming delightedly all over the field but he could just make out Krum surrounded by mediwizards .He looked surlier than ever and refused to let them mop him up .His team members were around him shaking their heads and looking dejected a short way away the Irish players were dancing gleefully in a shower of gold descending from their mascots .Flags were waving all over the stadium the Irish national anthem blared from all sides the veela were shrinking back into their usual beautiful selves now though looking dispirited and forlorn .Veil ve fought bravely said a gloomy voice behind Harry .He looked around it was the Bulgarian Minister of Magic .You can speak English !said Fudge sounding outraged .And youve been letting me mime everything all day !Veil it vos very funny said the Bulgarian minister shrugging .And as the Irish team performs a lap of honor flanked by their mascots the Quidditch World Cup itself is brought into the Top Box !roared Bagman .Harrys eyes were suddenly dazzled by a blinding white light as the Top Box was magically illuminated so that everyone in the stands could see the inside .Squinting toward the entrance he saw two panting wizards carrying a vast golden cup into the box which they handed to Cornelius Fudge who was still looking very disgruntled that hed been using sign language all day for nothing .Lets have a really loud hand for the gallant losers Bulgaria !Bagman shouted .And up the stairs into the box came the seven defeated Bulgarian players .The crowd below was applauding appreciatively Harry could see thousands and thousands of Omniocular lenses flashing and winking in their direction .One by one the Bulgarians filed between the rows of seats in the box and Bagman called out the name of each as they shook hands with their own minister and then with Fudge .Krum who was last in line looked a real mess .Two black eyes were blooming spectacularly on his bloody face .He was still holding the Snitch .Harry noticed that he seemed much less coordinated on the ground .He was slightly duck footed and distinctly roundshouldered .But when Krums name was announced the whole stadium gave him a resounding earsplitting roar .And then came the Irish team .Aidan Lynch was being supported by Moran and Connolly the second crash seemed to have dazed him and his eyes looked strangely unfocused .But he grinned happily as Troy and Quigley lifted the Cup into the air and the crowd below thundered its approval .Harrys hands were numb with clapping .At last when the Irish team had left the box to perform another lap of honor on their brooms Aidan Lynch on the back of Connollys clutching hard around his waist and still grinning in a bemused sort of way Bagman pointed his wand at his throat and muttered Quietus .Theyll be talking about this one for years he said hoarsely a really unexpected twist that .shame it couldnt have lasted longer .Ah yes .yes I owe you .how much ?For Fred and George had just scrambled over the backs of their seats and were standing in front of Ludo Bagman with broad grins on their faces their hands outstretched .9 THE DARK MARK Dont tell your mother youve been gambling Mr Weasley implored Fred and George as they all made their way slowly down the purplecarpeted stairs .Dont worry Dad said Fred gleefully weve got big plans for this money .We dont want it confiscated .Mr Weasley looked for a moment as though he was going to ask what these big plans were but seemed to decide upon reflection that he didnt want to know .They were soon caught up in the crowds now flooding out of the stadium and back to their campsites .Raucous singing was borne toward them on the night air as they retraced their steps along the lanternlit path and leprechauns kept shooting over their heads cackling and waving their lanterns .When they finally reached the tents nobody felt like sleeping at all and given the level of noise around them Mr Weasley agreed that they could all have one last cup of cocoa together before turning in .They were soon arguing enjoyably about the match Mr Weasley got drawn into a disagreement about cobbing with Charlie and it was only when Ginny fell asleep right at the tiny table and spilled hot chocolate all over the floor that Mr Weasley called a halt to the verbal replays and insisted that everyone go to bed .Hermione and Ginny went into the next tent and Harry and the rest of the Weasleys changed into pajamas and clambered into their bunks .From the other side of the campsite they could still hear much singing and the odd echoing bang .Oh I am glad Im not on duty muttered Mr Weasley sleepily .I wouldnt fancy having to go and tell the Irish theyve got to stop celebrating .Harry who was on a top bunk above Ron lay staring up at the canvas ceiling of the tent watching the glow of an occasional leprechaun lantern flying overhead and picturing again some of Krums more spectacular moves .He was itching to get back on his own Firebolt and try out the Wronski Feint .Somehow Oliver Wood had never managed to convey with all his wriggling diagrams what that move was supposed to look like .Harry saw himself in robes that had his name on the back and imagined the sensation of hearing a hundredthousandstrong crowd roar as Ludo Bagmans voice echoed throughout the stadium I give you .PotteA .Harry never knew whether or not he had actually dropped off to sleep his fantasies of flying like Krum might well have slipped into actual dreams all he knew was that quite suddenly Mr Weasley was shouting .Get up !Ron Harry come on now get up this is urgent !Harry sat up quickly and the top of his head hit canvas .S matter ?he said .Dimly he could tell that something was wrong .The noises in the campsite had changed .The singing had stopped .He could hear screams and the sound of people running .He slipped down from the bunk and reached for his clothes but Mr Weasley who had pulled on his jeans over his own pajamas said No time Harry just grab a jacket and get outside quickly !Harry did as he was told and hurried out of the tent Ron at his heels .By the light of the few fires that were still burning he could see people running away into the woods fleeing something that was moving across the field toward them something that was emitting odd flashes of light and noises like gunfire .Loud jeering roars of laughter and drunken yells were drifting toward them then came a burst of strong green light which illuminated the scene .A crowd of wizards tightly packed and moving together with wands pointing straight upward was marching slowly across the field .Harry squinted at them .They didnt seem to have faces .Then he realized that their heads were hooded and their faces masked .High above them floating along in midair four struggling figures were being contorted into grotesque shapes .It was as though the masked wizards on the ground were puppeteers and the people above them were marionettes operated by invisible strings that rose from the wands into the air .Two of the figures were very small .More wizards were joining the marching group laughing and pointing up at the floating bodies .Tents crumpled and fell as the marching crowd swelled .Once or twice Harry saw one of the marchers blast a tent out of his way with his wand .Several caught fire .The screaming grew louder .The floating people were suddenly illuminated as they passed over a burning tent and Harry recognized one of them Mr Roberts the campsite manager .The other three looked as though they might be his wife and children .One of the marchers below flipped Mrs Roberts upside down with his wand her nightdress fell down to reveal voluminous drawers and she struggled to cover herself up as the crowd below her screeched and hooted with glee .Thats sick Ron muttered watching the smallest Muggle child who had begun to spin like a top sixty feet above the ground his head flopping limply from side to side .That is really sick .Hermione and Ginny came hurrying toward them pulling coats over their nightdresses with Mr Weasley right behind them .At the same moment Bill Charlie and Percy emerged from the boys tent fully dressed with their sleeves rolled up and their wands out .Were going to help the Ministry !Mr Weasley shouted over all the noise rolling up his own sleeves .You lot get into the woods and stick together .Ill come and fetch you when weve sorted this out !Bill Charlie and Percy were already sprinting away toward the oncoming marchers Mr Weasley tore after them .Ministry wizards were dashing from every direction toward the source of the trouble .The crowd beneath the Roberts family was coming ever closer .Cmon said Fred grabbing Ginnys hand and starting to pull her toward the wood .Harry Ron Hermione and George followed .They all looked back as they reached the trees .The crowd beneath the Roberts family was larger than ever they could see the Ministry wizards trying to get through it to the hooded wizards in the center but they were having great difficulty .It looked as though they were scared to perform any spell that might make the Roberts family fall .The colored lanterns that had lit the path to the stadium had been extinguished .Dark figures were blundering through the trees children were crying anxious shouts and panicked voices were reverberating around them in the cold night air .Harry felt himself being pushed hither and thither by people whose faces he could not see .Then he heard Ron yell with pain .What happened ?said Hermione anxiously stopping so abruptly that Harry walked into her .Ron where are you ?Oh this is stupid lumos She illuminated her wand and directed its narrow beam across the path .Ron was lying sprawled on the ground .Tripped over a tree root he said angrily getting to his feet again .Well with feet that size hard not to said a drawling voice from behind them .Harry Ron and Hermione turned sharply .Draco Malfoy was standing alone nearby leaning against a tree looking utterly relaxed .His arms folded he seemed to have been watching the scene at the campsite through a gap in the trees .Ron told Malfoy to do something that Harry knew he would never have dared say in front of Mrs Weasley Language Weasley said Malfoy his pale eyes glittering .Hadnt you better be hurrying along now ?You wouldnt like her spotted would you ?He nodded at Hermione and at the same moment a blast like a bomb sounded from the campsite and a flash of green light momentarily lit the trees around them .Whats that supposed to mean ?said Hermione defiantly .Granger theyre after Muggles said Malfoy .Dyou want to be showing off your knickers in midair ?Because if you do hang around .theyre moving this way and it would give us all a laugh .Hermiones a witch Harry snarled .Have it your own way Potter said Malfoy grinning maliciously .If you think they cant spot a Mudblood stay where you are .You watch your mouth !shouted Ron .Everybody present knew that Mudblood was a very offensive term for a witch or wizard of Muggle parentage .Never mind Ron said Hermione quickly seizing Rons arm to restrain him as he took a step toward Malfoy .There came a bang from the other side of the trees that was louder than anything they had heard .Several people nearby screamed .Malfoy chuckled softly .Scare easily dont they ?he said lazily .I suppose your daddy told you all to hide ?Whats he up to trying to rescue the Muggles ?Wherere your parents ?said Harry his temper rising .Out there wearing masks are they ?Malfoy turned his face to Harry still smiling .Well .if they were I wouldnt be likely to tell you would I Potter ?Oh come on said Hermione with a disgusted look at Malfoy lets go and find the others .Keep that big bushy head down Granger sneered Malfoy .Come on Hermione repeated and she pulled Harry and Ron up the path again .Ill bet you anything his dad is one of that masked lot !said Ron hotly .Well with any luck the Ministry will catch him !said Hermione fervently .Oh I cant believe this .Where have the others got to ?Fred George and Ginny were nowhere to be seen though the path was packed with plenty of other people all looking nervously over their shoulders toward the commotion back at the campsite .A huddle of teenagers in pajamas was arguing vociferously a little way along the path .When they saw Harry Ron and Hermione a girl with thick curly hair turned and said quickly Ou est Madame Maxime ?Nous Vavons perdue Er what ?said Ron .Oh .The girl who had spoken turned her back on him and as they walked on they distinctly heard her say Ogwarts .Beauxbatons muttered Hermione .Sorry ?said Harry .They must go to Beauxbatons said Hermione .You know .Beauxbatons Academy of Magic .I read about it in An Appraisal of Magical Education in Europe .Oh .yeah .right said Harry .Fred and George cant have gone that far said Ron pulling out his wand lighting it like Hermiones and squinting up the path .Harry dug in the pockets of his jacket for his own wand but it wasnt there .The only thing he could find was his Omnioculars .Ah no I dont believe it .Ive lost my wand !Youre kidding !Ron and Hermione raised their wands high enough to spread the narrow beams of light farther on the ground Harry looked all around him but his wand was nowhere to be seen .Maybe its back in the tent said Ron .Maybe it fell out of your pocket when we were running ?Hermione suggested anxiously .Yeah said Harry maybe .He usually kept his wand with him at all times in the wizarding world and finding himself without it in the midst of a scene like this made him feel very vulnerable .A rustling noise nearby made all three of them jump .Winky the houseelf was fighting her way out of a clump of bushes nearby .She was moving in a most peculiar fashion apparently with great difficulty it was as though someone invisible were trying to hold her back .There is bad wizards about !she squeaked distractedly as she leaned forward and labored to keep running .People high high in the air !Winky is getting out of the way !And she disappeared into the trees on the other side of the path panting and squeaking as she fought the force that was restraining her .Whats up with her ?said Ron looking curiously after Winky .Why cant she run properly ?Bet she didnt ask permission to hide said Harry .He was thinking of Dobby Every time he had tried to do something the Malfoys wouldnt like the houseelf had been forced to start beating himself up .You know houseelves get a very raw deal !said Hermione indignantly .Its slavery thats what it is !That Mr Crouch made her go up to the top of the stadium and she was terrified and hes got her bewitched so she cant even run when they start trampling tents !Why doesnt anyone do something about it ?Well the elves are happy arent they ?Ron said .You heard old Winky back at the match . ‘House elves is not supposed to have fun .thats what she likes being bossed around .Its people like you Ron Hermione began hotly who prop up rotten and unjust systems just because theyre too lazy to Another loud bang echoed from the edge of the wood .Lets just keep moving shall we ?said Ron and Harry saw him glance edgily at Hermione .Perhaps there was truth in what Malfoy had said perhaps Hermione was in more danger than they were .They set off again Harry still searching his pockets even though he knew his wand wasnt there .They followed the dark path deeper into the wood still keeping an eye out for Fred George and Ginny .They passed a group of goblins who were cackling over a sack of gold that they had undoubtedly won betting on the match and who seemed quite unperturbed by the trouble at the campsite .Farther still along the path they walked into a patch of silvery light and when they looked through the trees they saw three tall and beautiful veela standing in a clearing surrounded by a gaggle of young wizards all of whom were talking very loudly .I pull down about a hundred sacks of Galleons a year !one of them shouted .Im a dragon killer for the Committee for the Disposal of Dangerous Creatures .No youre not !yelled his friend .Youre a dishwasher at the Leaky Cauldron .but Im a vampire hunter Ive killed about ninety so far A third young wizard whose pimples were visible even by the dim silvery light of the veela now cut in Im about to become the youngest ever Minister of Magic I am .Harry snorted with laughter .He recognized the pimply wizard His name was Stan Shunpike and he was in fact a conductor on the tripledecker Knight Bus .He turned to tell Ron this but Rons face had gone oddly slack and next second Ron was yelling Did I tell you Ive invented a broomstick thatll reach Jupiter ?Honestly said Hermione and she and Harry grabbed Ron firmly by the arms wheeled him around and marched him away .By the time the sounds of the veela and their admirers had faded completely they were in the very heart of the wood .They seemed to be alone now everything was much quieter .Harry looked around .I reckon we can just wait here you know .Well hear anyone coming a mile off .The words were hardly out of his mouth when Ludo Bagman emerged from behind a tree right ahead of them .Even by the feeble light of the two wands Harry could see that a great change had come over Bagman .He no longer looked buoyant and rosyfaced there was no more spring in his step .He looked very white and strained .Whos that ?he said blinking down at them trying to make out their faces .What are you doing in here all alone ?They looked at one another surprised .Well theres a sort of riot going on said Ron .Bagman stared at him .What ?At the campsite .some people have got hold of a family of Muggles .Bagman swore loudly .Damn them !he said looking quite distracted and without another word he Disapparated with a small pop Not exactly on top of things Mr Bagman is he ?said Hermione frowning .He was a great Beater though said Ron leading the way off the path into a small clearing and sitting down on a patch of dry grass at the foot of a tree .The Wimbourne Wasps won the league three times in a row while he was with them .He took his small figure of Krum out of his pocket set it down on the ground and watched it walk around .Like the real Krum the model was slightly duck footed and roundshouldered much less impressive on his splayed feet than on his broomstick .Harry was listening for noise from the campsite .Everything seemed much quieter perhaps the riot was over .I hope the others are okay said Hermione after a while .Theyll be fine said Ron .Imagine if your dad catches Lucius Malfoy said Harry sitting down next to Ron and watching the small figure of Krum slouching over the fallen leaves .Hes always said hed like to get something on him .Thatd wipe the smirk off old Dracos face all right said Ron .Those poor Muggles though said Hermione nervously .What if they cant get them down ?They will said Ron reassuringly .Theyll find a way .Mad though to do something like that when the whole Ministry of Magics out here tonight !said Hermione .I mean how do they expect to get away with it ?Do you think theyve been drinking or are they just But she broke off abruptly and looked over her shoulder .Harry and Ron looked quickly around too .It sounded as though someone was staggering toward their clearing .They waited listening to the sounds of the uneven steps behind the dark trees .But the footsteps came to a sudden halt .Hello ?called Harry .There was silence .Harry got to his feet and peered around the tree .It was too dark to see very far but he could sense somebody standing just beyond the range of his vision .Whos there ?he said .And then without warning the silence was rent by a voice unlike any they had heard in the wood and it uttered not a panicked shout but what sounded like a spell .MORSMORDREl And something vast green and glittering erupted from the patch of darkness Harrys eyes had been struggling to penetrate it flew up over the treetops and into the sky .What the ?gasped Ron as he sprang to his feet again staring up at the thing that had appeared .For a split second Harry thought it was another leprechaun formation .Then he realized that it was a colossal skull comprised of what looked like emerald stars with a serpent protruding from its mouth like a tongue .As they watched it rose higher and higher blazing in a haze of greenish smoke etched against the black sky like a new constellation .Suddenly the wood all around them erupted with screams .Harry didnt understand why but the only possible cause was the sudden appearance of the skull which had now risen high enough to illuminate the entire wood like some grisly neon sign .He scanned the darkness for the person who had conjured the skull but he couldnt see anyone .Whos there ?he called again .Harry come on move Hermione had seized the collar of his jacket and was tugging him backward .Whats the matter ?Harry said startled to see her face so white and terrified .Its the Dark Mark Harry !Hermione moaned pulling him as hard as she could .YouKnowWhos sign !Voldemorts ?Harry come on !Harry turned Ron was hurriedly scooping up his miniature Krum the three of them started across the clearing but before they had taken a few hurried steps a series of popping noises announced the arrival of twenty wizards appearing from thin air surrounding them .Harry whirled around and in an instant he registered one fact Each of these wizards had his wand out and every wand was pointing right at himself Ron and Hermione .Without pausing to think he yelled DUCK !He seized the other two and pulled them down onto the ground .STUPEFYl roared twenty voices there was a blinding series of flashes and Harry felt the hair on his head ripple as though a powerful wind had swept the clearing .Raising his head a fraction of an inch he saw jets of fiery red light flying over them from the wizards wands crossing one another bouncing off tree trunks rebounding into the darkness Stop !yelled a voice he recognized .STOP !Thats my son Harrys hair stopped blowing about .He raised his head a little higher .The wizard in front of him had lowered his wand .He rolled over and saw Mr Weasley striding toward them looking terrified .Ron Harry his voice sounded shaky Hermione are you all right ?Out of the way Arthur said a cold curt voice .It was Mr Crouch .He and the other Ministry wizards were closing in on them .Harry got to his feet to face them .Mr Crouchs face was taut with rage .Which of you did it ?he snapped his sharp eyes darting between them .Which of you conjured the Dark Mark ?We didnt do that !said Harry gesturing up at the skull .We didnt do anything !said Ron who was rubbing his elbow and looking indignantly at his father .What did you want to attack us for ?Do not lie sir !shouted Mr Crouch .His wand was still pointing directly at Ron and his eyes were popping he looked slightly mad .You have been discovered at the scene of the crime !Barty whispered a witch in a long woolen dressing gown theyre kids Barty theyd never have been able to Where did the Mark come from you three ?said Mr Weasley quickly .Over there said Hermione shakily pointing at the place where they had heard the voice .There was someone behind the trees .they shouted words an incantation Oh stood over there did they ?said Mr Crouch turning his popping eyes on Hermione now disbelief etched all over his face .Said an incantation did they ?You seem very well informed about how that Mark is summoned missy But none of the Ministry wizards apart from Mr Crouch seemed to think it remotely likely that Harry Ron or Hermione had conjured the skull on the contrary at Hermiones words they had all raised their wands again and were pointing in the direction she had indicated squinting through the dark trees .Were too late said the witch in the woolen dressing gown shaking her head .Theyll have Disapparated .I dont think so said a wizard with a scrubby brown beard .It was Amos Diggory Cedrics father .Our Stunners went right through those trees .Theres a good chance we got them .Amos be careful !said a few of the wizards warningly as Mr Diggory squared his shoulders raised his wand marched across the clearing and disappeared into the darkness .Hermione watched him vanish with her hands over her mouth .A few seconds later they heard Mr Diggory shout .Yes !We got them !Theres someone here !Unconscious !Its but blimey .Youve got someone ?shouted Mr Crouch sounding highly disbelieving .Who ?Who is it ?They heard snapping twigs the rustling of leaves and then crunching footsteps as Mr Diggory reemerged from behind the trees .He was carrying a tiny limp figure in his arms .Harry recognized the tea towel at once .It was Winky .Mr Crouch did not move or speak as Mr Diggory deposited his elf on the ground at his feet .The other Ministry wizards were all staring at Mr Crouch .For a few seconds Crouch remained transfixed his eyes blazing in his white face as he stared down at Winky .Then he appeared to come to life again .This cannot be he said jerkily .No He moved quickly around Mr Diggory and strode off toward the place where he had found Winky .No point Mr Crouch Mr Diggory called after him .Theres no one else there .But Mr Crouch did not seem prepared to take his word for it .They could hear him moving around and the rustling of leaves as he pushed the bushes aside searching .Bit embarrassing Mr Diggory said grimly looking down at Winkys unconscious form .Barty Crouchs houseelf .I mean to say .Come off it Amos said Mr Weasley quietly you dont seriously think it was the elf ?The Dark Marks a wizards sign .It requires a wand .Yeah said Mr Diggory and she had a wand .What ?said Mr Weasley .Here look .Mr Diggory held up a wand and showed it to Mr Weasley .Had it in her hand .So thats clause three of the Code of Wand Use broken for a start .No nonhuman creature is permitted to carry or use a wand .Just then there was another pop and Ludo Bagman Apparated right next to Mr Weasley .Looking breathless and disorientated he spun on the spot goggling upward at the emeraldgreen skull .The Dark Mark !he panted almost trampling Winky as he turned inquiringly to his colleagues .Who did it ?Did you get them ?Barty !Whats going on ?Mr Crouch had returned emptyhanded .His face was still ghostly white and his hands and his toothbrush mustache were both twitching .Where have you been Barty ?said Bagman .Why werent you at the match ?Your elf was saving you a seat too gulping gargoyles !Bagman had just noticed Winky lying at his feet .What happened to her ?I have been busy Ludo said Mr Crouch still talking in the same jerky fashion barely moving his lips .And my elf has been stunned .Stunned ?By you lot you mean ?But why ?Comprehension dawned suddenly on Bagmans round shiny face he looked up at the skull down at Winky and then at Mr Crouch .iVo !he said .Winky ?Conjure the Dark Mark ?She wouldnt know how !Shed need a wand for a start !And she had one said Mr Diggory .I found her holding one Ludo .If its all right with you Mr Crouch I think we should hear what shes got to say for herself .Crouch gave no sign that he had heard Mr Diggory but Mr Diggory seemed to take his silence for assent .He raised his own wand pointed it at Winky and said Rennervatel Winky stirred feebly .Her great brown eyes opened and she blinked several times in a bemused sort of way .Watched by the silent wizards she raised herself shakily into a sitting position .She caught sight of Mr Diggorys feet and slowly tremulously raised her eyes to stare up into his face then more slowly still she looked up into the sky .Harry could see the floating skull reflected twice in her enormous glassy eyes .She gave a gasp looked wildly around the crowded clearing and burst into terrified sobs .Elf !said Mr Diggory sternly .Do you know who I am ?Im a member of the Department for the Regulation and Control of Magical Creatures !Winky began to rock backward and forward on the ground her breath coming in sharp bursts .Harry was reminded forcibly of Dobby in his moments of terrified disobedience .As you see elf the Dark Mark was conjured here a short while ago said Mr Diggory .And you were discovered moments later right beneath it !An explanation if you please !I I I is not doing it sir !Winky gasped .I is not knowing how sir !You were found with a wand in your hand !barked Mr Diggory brandishing it in front of her .And as the wand caught the green light that was filling the clearing from the skull above Harry recognized it .Hey thats mine !he said .Everyone in the clearing looked at him .Excuse me ?said Mr Diggory incredulously .Thats my wand !said Harry .I dropped it !You dropped it ?repeated Mr Diggory in disbelief .Is this a confession ?You threw it aside after you conjured the Mark ?Amos think who youre talking to !said Mr Weasley very angrily .Is Harry Potter likely to conjure the Dark Mark ?Er of course not mumbled Mr Diggory .Sorry .carried away .I didnt drop it there anyway said Harry jerking his thumb toward the trees beneath the skull .I missed it right after we got into the wood .So said Mr Diggory his eyes hardening as he turned to look at Winky again cowering at his feet .You found this wand eh elf ?And you picked it up and thought youd have some fun with it did you ?I is not doing magic with it sir !squealed Winky tears streaming down the sides of her squashed and bulbous nose .I is .I is .I is just picking it up sir !I is not making the Dark Mark sir I is not knowing how !It wasnt her !said Hermione .She looked very nervous speaking up in front of all these Ministry wizards yet determined all the same .Winkys got a squeaky little voice and the voice we heard doing the incantation was much deeper !She looked around at Harry and Ron appealing for their support .It didnt sound anything like Winky did it ?No said Harry shaking his head .It definitely didnt sound like an elf .Yeah it was a human voice said Ron .Well well soon see growled Mr Diggory looking unimpressed .Theres a simple way of discovering the last spell a wand performed elf did you know that ?Winky trembled and shook her head frantically her ears flapping as Mr Diggory raised his own wand again and placed it tip to tip with Harrys .Prior Incantatol roared Mr Diggory .Harry heard Hermione gasp horrified as a gigantic serpenttongued skull erupted from the point where the two wands met but it was a mere shadow of the green skull high above them it looked as though it were made of thick gray smoke the ghost of a spell .Deletrius Mr Diggory shouted and the smoky skull vanished in a wisp of smoke .So said Mr Diggory with a kind of savage triumph looking down upon Winky who was still shaking convulsively .I is not doing it !she squealed her eyes rolling in terror .I is not I is not I is not knowing how !I is a good elf I isnt using wands I isnt knowing how !Youve been caught redhanded elf .Mr Diggory roared .Caught with the guilty wand in your hand Amos said Mr Weasley loudly think about it .precious few wizards know how to do that spell .Where would she have learned it ?Perhaps Amos is suggesting said Mr Crouch cold anger in every syllable that I routinely teach my servants to conjure the Dark Mark ?There was a deeply unpleasant silence .Amos Diggory looked horrified .Mr Crouch .not .not at all .You have now come very close to accusing the two people in this clearing who are least likely to conjure that Mark !barked Mr Crouch .Harry Potter and myself !I suppose you are familiar with the boys story Amos ?Of course everyone knows muttered Mr Diggory looking highly discomforted .And I trust you remember the many proofs I have given over a long career that I despise and detest the Dark Arts and those who practice them ?Mr Crouch shouted his eyes bulging again .Mr Crouch I I never suggested you had anything to do with it !Amos Diggory muttered again now reddening behind his scrubby brown beard .If you accuse my elf you accuse me Diggory !shouted Mr Crouch .Where else would she have learned to conjure it ?She she mightve picked it up anywhere Precisely Amos said Mr Weasley .She might have picked it up anywhere .Winky ?he said kindly turning to the elf but she flinched as though he too was shouting at her .Where exactly did you find Harrys wand ?Winky was twisting the hem of her tea towel so violently that it was fraying beneath her fingers .I I is finding it .finding it there sir .she whispered there .in the trees sir .You see Amos ?said Mr Weasley .Whoever conjured the Mark could have Disapparated right after theyd done it leaving Harrys wand behind .A clever thing to do not using their own wand which could have betrayed them .And Winky here had the misfortune to come across the wand moments later and pick it up .But then shed have been only a few feet away from the real culprit !said Mr Diggory impatiently .Elf ?Did you see anyone ?Winky began to tremble worse than ever .Her giant eyes flickered from Mr Diggory to Ludo Bagman and onto Mr Crouch .Then she gulped and said I is seeing no one sir .no one .Amos said Mr Crouch curtly I am fully aware that in the ordinary course of events you would want to take Winky into your department for questioning .I ask you however to allow me to deal with her .Mr Diggory looked as though he didnt think much of this suggestion at all but it was clear to Harry that Mr Crouch was such an important member of the Ministry that he did not dare refuse him .You may rest assured that she will be punished Mr Crouch added coldly .Mmmaster .Winky stammered looking up at Mr Crouch her eyes brimming with tears .Mmmaster ppplease .Mr Crouch stared back his face somehow sharpened each line upon it more deeply etched .There was no pity in his gaze .Winky has behaved tonight in a manner I would not have believed possible he said slowly .I told her to remain in the tent .I told her to stay there while I went to sort out the trouble .And I find that she disobeyed me .This means clothes .No !shrieked Winky prostrating herself at Mr Crouchs feet .No master !Not clothes not clothes !Harry knew that the only way to turn a houseelf free was to present it with proper garments .It was pitiful to see the way Winky clutched at her tea towel as she sobbed over Mr Crouchs feet .But she was frightened !Hermione burst out angrily glaring at Mr Crouch .Your elfs scared of heights and those wizards in masks were levitating people !You cant blame her for wanting to get out of their way !Mr Crouch took a step backward freeing himself from contact with the elf whom he was surveying as though she were something filthy and rotten that was contaminating his overshined shoes .I have no use for a houseelf who disobeys me he said coldly looking over at Hermione .I have no use for a servant who forgets what is due to her master and to her masters reputation .Winky was crying so hard that her sobs echoed around the clearing .There was a very nasty silence which was ended by Mr Weasley who said quietly Well I think Ill take my lot back to the tent if nobodys got any objections .Amos that wands told us all it can if Harry could have it back please Mr Diggory handed Harry his wand and Harry pocketed it .Come on you three Mr Weasley said quietly .But Hermione didnt seem to want to move her eyes were still upon the sobbing elf .Hermione !Mr Weasley said more urgently .She turned and followed Harry and Ron out of the clearing and off through the trees .Whats going to happen to Winky ?said Hermione the moment they had left the clearing .I dont know said Mr Weasley .The way they were treating her !said Hermione furiously .Mr Diggory calling her ‘elf all the time .and Mr Crouch !He knows she didnt do it and hes still going to sack her !He didnt care how frightened shed been or how upset she was it was like she wasnt even human !Well shes not said Ron .Hermione rounded on him .That doesnt mean she hasnt got feelings Ron .Its disgusting the way Hermione I agree with you said Mr Weasley quickly beckoning her on but now is not the time to discuss elf rights .I want to get back to the tent as fast as we can .What happened to the others ?We lost them in the dark said Ron .Dad why was everyone so uptight about that skull thing ?Ill explain everything back at the tent said Mr Weasley tensely .But when they reached the edge of the wood their progress was impeded .A large crowd of frightened looking witches and wizards was congregated there and when they saw Mr Weasley coming toward them many of them surged forward .Whats going on in there ?Who conjured it ?Arthur its not Him ?Of course its not Him said Mr Weasley impatiently .We dont know who it was it looks like they Disapparated .Now excuse me please I want to get to bed .He led Harry Ron and Hermione through the crowd and back into the campsite .All was quiet now there was no sign of the masked wizards though several ruined tents were still smoking .Charlies head was poking out of the boys tent .Dad whats going on ?he called through the dark .Fred George and Ginny got back okay but the others Ive got them here said Mr Weasley bending down and entering the tent .Harry Ron and Hermione entered after him .Bill was sitting at the small kitchen table holding a bedsheet to his arm which was bleeding profusely .Charlie had a large rip in his shirt and Percy was sporting a bloody nose .Fred George and Ginny looked unhurt though shaken .Did you get them Dad ?said Bill sharply .The person who conjured the Mark ?No said Mr Weasley .We found Barty Crouchs elf holding Harrys wand but were none the wiser about who actually conjured the Mark .What ?said Bill Charlie and Percy together .Harrys wand ?said Fred .Mr Crouchs elf ?said Percy sounding thunderstruck .With some assistance from Harry Ron and Hermione Mr Weasley explained what had happened in the woods .When they had finished their story Percy swelled indignantly .Well Mr Crouch is quite right to get rid of an elf like that !he said .Running away when hed expressly told her not to .embarrassing him in front of the whole Ministry .how would that have looked if shed been brought up in front of the Department for the Regulation and Control She didnt do anything she was just in the wrong place at the wrong time !Hermione snapped at Percy who looked very taken aback .Hermione had always got on fairly well with Percy better indeed than any of the others .Hermione a wizard in Mr Crouchs position cant afford a houseelf whos going to run amok with a wand !said Percy pompously recovering himself .She didnt run amok !shouted Hermione .She just picked it up off the ground !Look can someone just explain what that skull thing was ?said Ron impatiently .It wasnt hurting anyone .Whys it such a big deal ?I told you its YouKnowWhos symbol Ron said Hermione before anyone else could answer .I read about it in The Rise and Fall of the Dark Arts .And it hasnt been seen for thirteen years said Mr Weasley quietly .Of course people panicked .it was almost like seeing YouKnowWho back again .I dont get it said Ron frowning .I mean .its still only a shape in the sky .Ron YouKnowWho and his followers sent the Dark Mark into the air whenever they killed said Mr Weasley .The terror it inspired .you have no idea youre too young .Just picture coming home and finding the Dark Mark hovering over your house and knowing what youre about to find inside .Mr Weasley winced .Everyones worst fear .the very worst .There was silence for a moment .Then Bill removing the sheet from his arm to check on his cut said Well it didnt help us tonight whoever conjured it .It scared the Death Eaters away the moment they saw it .They all Disapparated before wed got near enough to unmask any of them .We caught the Robertses before they hit the ground though .Theyre having their memories modified right now .Death Eaters ?said Harry .What are Death Eaters ?Its what YouKnow Whos supporters called themselves said Bill .I think we saw whats left of them tonight the ones who managed to keep themselves out of Azkaban anyway .We cant prove it was them Bill said Mr Weasley .Though it probably was he added hopelessly .Yeah I bet it was !said Ron suddenly .Dad we met Draco Malfoy in the woods and he as good as told us his dad was one of those nutters in masks !And we all know the Malfoys were right in with YouKnowWho !But what were Voldemorts supporters Harry began .Everybody flinched like most of the wizarding world the Weasleys always avoided saying Voldemorts name .Sorry said Harry quickly .What were You Know Whos supporters up to levitating Muggles ?I mean what was the point ?The point ?said Mr Weasley with a hollow laugh .Harry thats their idea of fun .Half the Muggle killings back when YouKnowWho was in power were done for fun .I suppose they had a few drinks tonight and couldnt resist reminding us all that lots of them are still at large .A nice little reunion for them he finished disgustedly .But if they were the Death Eaters why did they Disapparate when they saw the Dark Mark ?said Ron .Theyd have been pleased to see it wouldnt they ?Use your brains Ron said Bill .If they really were Death Eaters they worked very hard to keep out of Azkaban when YouKnowWho lost power and told all sorts of lies about him forcing them to kill and torture people .I bet theyd be even more frightened than the rest of us to see him come back .They denied theyd ever been involved with him when he lost his powers and went back to their daily lives .I dont reckon hed be overpleased with them do you ?So .whoever conjured the Dark Mark .said Hermione slowly were they doing it to show support for the Death Eaters or to scare them away ?Your guess is as good as ours Hermione said Mr Weasley .But Ill tell you this .it was only the Death Eaters who ever knew how to conjure it .Id be very surprised if the person who did it hadnt been a Death Eater once even if theyre not now .Listen its very late and if your mother hears whats happened shell be worried sick .Well get a few more hours sleep and then try and get an early Portkey out of here .Harry got back into his bunk with his head buzzing .He knew he ought to feel exhausted It was nearly three in the morning but he felt wideawake wide awake and worried .Three days ago it felt like much longer but it had only been three days he had awoken with his scar burning .And tonight for the first time in thirteen years Lord Voldemorts mark had appeared in the sky .What did these things mean ?He thought of the letter he had written to Sirius before leaving Privet Drive .Would Sirius have gotten it yet ?When would he reply ?Harry lay looking up at the canvas but no flying fantasies came to him now to ease him to sleep and it was a long time after Charlies snores filled the tent that Harry finally dozed off .10 MAYHEM AT THE MINISTRY Mr Weasley woke them after only a few hours sleep .He used magic to pack up the tents and they left the campsite as quickly as possible passing Mr Roberts at the door of his cottage .Mr Roberts had a strange dazed look about him and he waved them off with a vague Merry Christmas .Hell be all right said Mr Weasley quietly as they marched off onto the moor .Sometimes when a persons memorys modified it makes him a bit disorientated for a while .and that was a big thing they had to make him forget .They heard urgent voices as they approached the spot where the Portkeys lay and when they reached it they found a great number of witches and wizards gathered around Basil the keeper of the Portkeys all clamoring to get away from the campsite as quickly as possible .Mr Weasley had a hurried discussion with Basil they joined the queue and were able to take an old rubber tire back to Stoatshead Hill before the sun had really risen .They walked back through Ottery St .Catchpole and up the damp lane toward the Burrow in the dawn light talking very little because they were so exhausted and thinking longingly of their breakfast .As they rounded the corner and the Burrow came into view a cry echoed along the lane .Oh thank goodness thank goodness !Mrs Weasley who had evidently been waiting for them in the front yard came running toward them still wearing her bedroom slippers her face pale and strained a rolledup copy of the Daily Prophet clutched in her hand .Arthur Ive been so worried so worried She flung her arms around Mr Weasleys neck and the Daily Prophet fell out of her limp hand onto the ground .Looking down Harry saw the headline SCENES OF TERROR AT THE QUIDDITCH WORLD CUP complete with a twinkling blackandwhite photograph of the Dark Mark over the treetops .Youre all right Mrs Weasley muttered distractedly releasing Mr Weasley and staring around at them all with red eyes youre alive .Oh boys .And to everybodys surprise she seized Fred and George and pulled them both into such a tight hug that their heads banged together .Ouch Mum youre strangling us I shouted at you before you left !Mrs Weasley said starting to sob .Its all Ive been thinking about !What if YouKnowWho had got you and the last thing I ever said to you was that you didnt get enough O .W .L .s ?Oh Fred .George .Come on now Molly were all perfectly okay said Mr Weasley soothingly prising her off the twins and leading her back toward the house .Bill he added in an undertone pick up that paper I want to see what it says .When they were all crammed into the tiny kitchen and Hermione had made Mrs Weasley a cup of very strong tea into which Mr Weasley insisted on pouring a shot of Ogdens Old Firewhiskey Bill handed his father the newspaper .Mr Weasley scanned the front page while Percy looked over his shoulder .I knew it said Mr Weasley heavily .Ministry blunders .culprits not apprehended .lax security .Dark wizards running unchecked .national disgrace .Who wrote this ?Ah .of course .Rita Skeeter .That womans got it in for the Ministry of Magic !said Percy furiously .Last week she was saying were wasting our time quibbling about cauldron thickness when we should be stamping out vampires !As if it wasnt specifically stated in paragraph twelve of the Guidelines for the Treatment of NonWizard Part Humans Do us a favor Perce said Bill yawning and shut up .Im mentioned said Mr Weasley his eyes widening behind his glasses as he reached the bottom of the Daily Prophet article .Where ?spluttered Mrs Weasley choking on her tea and whiskey .If Id seen that Id have known you were alive !Not by name said Mr Weasley .Listen to this ‘If the terrified wizards and witches who waited breathlessly for news at the edge of the wood expected reassurance from the Ministry of Magic they were sadly disappointed .A Ministry official emerged some time after the appearance of the Dark Mark alleging that nobody had been hurt but refusing to give any more information .Whether this statement will be enough to quash the rumors that several bodies were removed from the woods an hour later remains to be seen .Oh really said Mr Weasley in exasperation handing the paper to Percy .Nobody was hurt .What was I supposed to say ?Rumors that several bodies were removed from the woods .well there certainly will be rumors now shes printed that .He heaved a deep sigh .Molly Im going to have to go into the office this is going to take some smoothing over .Ill come with you Father said Percy importantly .Mr Crouch will need all hands on deck .And I can give him my cauldron report in person .He bustled out of the kitchen .Mrs Weasley looked most upset .Arthur youre supposed to be on holiday !This hasnt got anything to do with your office surely they can handle this without you ?Ive got to go Molly said Mr Weasley .Ive made things worse .Ill just change into my robes and Ill be off .Mrs Weasley said Harry suddenly unable to contain himself Hedwig hasnt arrived with a letter for me has she ?Hedwig dear ?said Mrs Weasley distractedly .No .no there hasnt been any post at all .Ron and Hermione looked curiously at Harry .With a meaningful look at both of them he said All right if I go and dump my stuff in your room Ron ?Yeah .think I will too said Ron at once .Hermione ?Yes she said quickly and the three of them marched out of the kitchen and up the stairs .Whats up Harry ?said Ron the moment they had closed the door of the attic room behind them .Theres something I havent told you Harry said .On Saturday morning I woke up with my scar hurting again .Rons and Hermiones reactions were almost exactly as Harry had imagined them back in his bedroom on Privet Drive .Hermione gasped and started making suggestions at once mentioning a number of reference books and everybody from Albus Dumbledore to Madam Pomfrey the Hogwarts nurse .Ron simply looked dumbstruck .But he wasnt there was he ?YouKnowWho ?I mean last time your scar kept hurting he was at Hogwarts wasnt he ?Im sure he wasnt on Privet Drive said Harry .But I was dreaming about him .him and Peter you know Wormtail .I cant remember all of it now but they were plotting to kill .someone .He had teetered for a moment on the verge of saying me but couldnt bring himself to make Hermione look any more horrified than she already did .It was only a dream said Ron bracingly .Just a nightmare .Yeah but was it though ?said Harry turning to look out of the window at the brightening sky .Its weird isnt it ? .My scar hurts and three days later the Death Eaters are on the march and Voldemorts signs up in the sky again .Dont say his name !Ron hissed through gritted teeth .And remember what Professor Trelawney said ?Harry went on ignoring Ron .At the end of last year ?Professor Trelawney was their Divination teacher at Hogwarts .Hermione s terrified look vanished as she let out a derisive snort .Oh Harry you arent going to pay attention to anything that old fraud says ?You werent there said Harry .You didnt hear her .This time was different .I told you she went into a trance a real one .And she said the Dark Lord would rise again .greater and more terrible than ever before .and hed manage it because his servant was going to go back to him .and that night Wormtail escaped .There was a silence in which Ron fidgeted absentmindedly with a hole in his Chudley Cannons bedspread .Why were you asking if Hedwig had come Harry ?Hermione asked .Are you expecting a letter ?I told Sirius about my scar said Harry shrugging .Im waiting for his answer .Good thinking !said Ron his expression clearing .I bet Sirius ll know what to do !I hoped hed get back to me quickly said Harry .But we dont know where Sirius is .he could be in Africa or somewhere couldnt he ?said Hermione reasonably .Hedwigs not going to manage that journey in a few days .Yeah I know said Harry but there was a leaden feeling in his stomach as he looked out of the window at the Hedwigfree sky .Come and have a game of Quidditch in the orchard Harry said Ron .Come on three on three Bill and Charlie and Fred and George will play .You can try out the Wronski Feint .Ron said Hermione in an Idontthinkyoure being very sensitive sort of voice Harry doesnt want to play Quidditch right now .Hes worried and hes tired .We all need to go to bed .Yeah I want to play Quidditch said Harry suddenly .Hang on Ill get my Firebolt .Hermione left the room muttering something that sounded very much like Boys .k k k Neither Mr Weasley nor Percy was at home much over the following week .Both left the house each morning before the rest of the family got up and returned well after dinner every night .Its been an absolute uproar Percy told them importantly the Sunday evening before they were due to return to Hogwarts .Ive been putting out fires all week .People keep sending Howlers and of course if you dont open a Howler straight away it explodes .Scorch marks all over my desk and my best quill reduced to cinders .Why are they all sending Howlers ?asked Ginny who was mending her copy of One Thousand Magical Herbs and Fungi with Spellotape on the rug in front of the living room fire .Complaining about security at the World Cup said Percy .They want compensation for their ruined property .Mundungus Fletchers put in a claim for a twelvebedroomed tent with ensuite Jacuzzi but Ive got his number .I know for a fact he was sleeping under a cloak propped on sticks .Mrs Weasley glanced at the grandfather clock in the corner .Harry liked this clock .It was completely useless if you wanted to know the time but otherwise very informative .It had nine golden hands and each of them was engraved with one of the Weasley familys names .There were no numerals around the face but descriptions of where each family member might be .Home school and work were there but there was also traveling lost hospital prison and in the position where the number twelve would be on a normal clock mortal peril .Eight of the hands were currently pointing to the home position but Mr Weasleys which was the longest was still pointing to work .Mrs Weasley sighed .Your father hasnt had to go into the office on weekends since the days of YouKnowWho she said .Theyre working him far too hard .His dinners going to be mined if he doesnt come home soon .Well Father feels hes got to make up for his mistake at the match doesnt he ?said Percy .If truth be told he was a tad unwise to make a public statement without clearing it with his Head of Department first Dont you dare blame your father for what that wretched Skeeter woman wrote !said Mrs Weasley flaring up at once .If Dad hadnt said anything old Rita would just have said it was disgraceful that nobody from the Ministry had commented said Bill who was playing chess with Ron .Rita Skeeter never makes anyone look good .Remember she interviewed all the Gringotts Charm Breakers once and called me ‘a longhaired pillock ?Well it is a bit long dear said Mrs Weasley gently .If youd just let me No Mum .Rain lashed against the living room window .Hermione was immersed in The Standard Book of Spells Grade 4 copies of which Mrs Weasley had bought for her Harry and Ron in Diagon Alley .Charlie was darning a fireproof balaclava .Harry was polishing his Firebolt the broomstick servicing kit Hermione had given him for his thirteenth birthday open at his feet .Fred and George were sitting in a far corner quills out talking in whispers their heads bent over a piece of parchment .What are you two up to ?said Mrs Weasley sharply her eyes on the twins .Homework said Fred vaguely .Dont be ridiculous youre still on holiday said Mrs Weasley .Yeah weve left it a bit late said George .Youre not by any chance writing out a new order form are you ?said Mrs Weasley shrewdly .You wouldnt be thinking of restarting Weasleys Wizard Wheezes by any chance ?Now Mum said Fred looking up at her a pained look on his face .If the Hogwarts Express crashed tomorrow and George and I died how would you feel to know that the last thing we ever heard from you was an unfounded accusation ?Everyone laughed even Mrs Weasley .Oh your fathers coming !she said suddenly looking up at the clock again .Mr Weasleys hand had suddenly spun from work to traveling a second later it had shuddered to a halt on home with the others and they heard him calling from the kitchen .Coming Arthur !called Mrs Weasley hurrying out of the room .A few moments later Mr Weasley came into the warm living room carrying his dinner on a tray .He looked completely exhausted .Well the fats really in the fire now he told Mrs Weasley as he sat down in an armchair near the hearth and toyed unenthusiastically with his somewhat shriveled cauliflower .Rita Skeeters been ferreting around all week looking for more Ministry messups to report .And now shes found out about poor old Bertha going missing so thatll be the headline in the Prophet tomorrow .I told Bagman he should have sent someone to look for her ages ago .Mr Crouch has been saying it for weeks and weeks said Percy swiftly .Crouch is very lucky Rita hasnt found out about Winky said Mr Weasley irritably .Thered be a weeks worth of headlines in his houseelf being caught holding the wand that conjured the Dark Mark .I thought we were all agreed that that elf while irresponsible did not conjure the Mark ?said Percy hotly .If you ask me Mr Crouch is very lucky no one at the Daily Prophet knows how mean he is to elves !said Hermione angrily .Now look here Hermione !said Percy .A high ranking Ministry official like Mr Crouch deserves unswerving obedience from his servants His slave you mean !said Hermione her voice rising passionately because he didnt pay Winky did he ?I think youd all better go upstairs and check that youve packed properly !said Mrs Weasley breaking up the argument .Come on now all of you .Harry repacked his broomstick servicing kit put his Firebolt over his shoulder and went back upstairs with Ron .The rain sounded even louder at the top of the house accompanied by loud whistlings and moans from the wind not to mention sporadic howls from the ghoul who lived in the attic .Pigwidgeon began twittering and zooming around his cage when they entered .The sight of the halfpacked trunks seemed to have sent him into a frenzy of excitement .Bung him some Owl Treats said Ron throwing a packet across to Harry .It might shut him up .Harry poked a few Owl Treats through the bars of Pigwidgeons cage then turned to his trunk .Hedwigs cage stood next to it still empty .Its been over a week Harry said looking at Hedwigs deserted perch .Ron you dont reckon Sirius has been caught do you ?Nah it wouldve been in the Daily Prophet said Ron .The Ministry would want to show theyd caught someone wouldnt they ?Yeah I suppose .Look heres the stuff Mum got for you in Diagon Alley .And shes got some gold out of your vault for you .and shes washed all your socks .He heaved a pile of parcels onto Harrys camp bed and dropped the money bag and a load of socks next to it .Harry started unwrapping the shopping .Apart from The Standard Book of Spells Grade 4 by Miranda Goshawk he had a handful of new quills a dozen rolls of parchment and refills for his potion making kit he had been running low on spine of lionfish and essence of belladonna .He was just piling underwear into his cauldron when Ron made a loud noise of disgust behind him .What is that supposed to be ?He was holding up something that looked to Harry like a long maroon velvet dress .It had a moldy looking lace frill at the collar and matching lace cuffs .There was a knock on the door and Mrs Weasley entered carrying an armful of freshly laundered Hogwarts robes .Here you are she said sorting them into two piles .Now mind you pack them properly so they dont crease .Mum youve given me Ginnys new dress said Ron handing it out to her .Of course I havent said Mrs Weasley .Thats for you .Dress robes .What ?said Ron looking horrorstruck .Dress robes !repeated Mrs Weasley .It says on your school list that youre supposed to have dress robes this year .robes for formal occasions .Youve got to be kidding said Ron in disbelief .Im not wearing that no way .Everyone wears them Ron !said Mrs Weasley crossly .Theyre all like that !Your fathers got some for smart parties !Ill go starkers before I put that on said Ron stubbornly .Dont be so silly said Mrs Weasley .Youve got to have dress robes theyre on your list !I got some for Harry too .show him Harry .In some trepidation Harry opened the last parcel on his camp bed .It wasnt as bad as he had expected however his dress robes didnt have any lace on them at all in fact they were more or less the same as his school ones except that they were bottle green instead of black .I thought theyd bring out the color of your eyes dear said Mrs Weasley fondly .Well theyre okay !said Ron angrily looking at Harrys robes .Why couldnt I have some like that ?Because .well I had to get yours secondhand and there wasnt a lot of choice !said Mrs Weasley flushing .Harry looked away .He would willingly have split all the money in his Gringotts vault with the Weasleys but he knew they would never take it .Im never wearing them Ron was saying stubbornly .Never .Fine snapped Mrs Weasley .Go naked .And Harry make sure you get a picture of him .Goodness knows I could do with a laugh .She left the room slamming the door behind her .There was a funny spluttering noise from behind them .Pigwidgeon was choking on an overlarge Owl Treat .Why is everything I own rubbish ?said Ron furiously striding across the room to unstick Pigwidgeons beak .ABOARD THE HOGWARTS EXPRESS There was a definite endoftheholidays gloom in the air when Harry awoke next morning .Heavy rain was still splattering against the window as he got dressed in jeans and a sweatshirt they would change into their school robes on the Hogwarts Express .He Ron Fred and George had just reached the first floor landing on their way down to breakfast when Mrs Weasley appeared at the foot of the stairs looking harassed .Arthur !she called up the staircase .Arthur !Urgent message from the Ministry !Harry flattened himself against the wall as Mr Weasley came clattering past with his robes on back tofront and hurtled out of sight .When Harry and the others entered the kitchen they saw Mrs Weasley rummaging anxiously in the drawers Ive got a quill here somewhere !and Mr Weasley bending over the fire talking to Harry shut his eyes hard and opened them again to make sure that they were working properly .Amos Diggorys head was sitting in the middle of the flames like a large bearded egg .It was talking very fast completely unperturbed by the sparks flying around it and the flames licking its ears . .Muggle neighbors heard bangs and shouting so they went and called those whatdyoucallems pleasemen .Arthur youve got to get over there Here !said Mrs Weasley breathlessly pushing a piece of parchment a bottle of ink and a crumpled quill into Mr Weasleys hands .its a real stroke of luck I heard about it said Mr Diggorys head .I had to come into the office early to send a couple of owls and I found the Improper Use of Magic lot all setting off if Rita Skeeter gets hold of this one Arthur What does MadEye say happened ?asked Mr Weasley unscrewing the ink bottle loading up his quill and preparing to take notes .Mr Diggorys head rolled its eyes .Says he heard an intruder in his yard .Says he was creeping toward the house but was ambushed by his dustbins .What did the dustbins do ?asked Mr Weasley scribbling frantically .Made one hell of a noise and fired rubbish everywhere as far as I can tell said Mr Diggory .Apparently one of them was still rocketing around when the pleasemen turned up Mr Weasley groaned .And what about the intruder ?Arthur you know MadEye said Mr Diggorys head rolling its eyes again .Someone creeping into his yard in the dead of night ?More likely theres a very shell shocked cat wandering around somewhere covered in potato peelings .But if the Improper Use of Magic lot get their hands on MadEye hes had it think of his record weve got to get him off on a minor charge something in your department what are exploding dustbins worth ?Might be a caution said Mr Weasley still writing very fast his brow furrowed .MadEye didnt use his wand ?He didnt actually attack anyone ?Ill bet he leapt out of bed and started jinxing everything he could reach through the window said Mr Diggory but theyll have a job proving it there arent any casualties .All right Im off Mr Weasley said and he stuffed the parchment with his notes on it into his pocket and dashed out of the kitchen again .Mr Diggorys head looked around at Mrs Weasley .Sorry about this Molly it said more calmly bothering you so early and everything .but Arthurs the only one who can get MadEye off and MadEyes supposed to be starting his new job today .Why he had to choose last night .Never mind Amos said Mrs Weasley .Sure you wont have a bit of toast or anything before you go ?Oh go on then said Mr Diggory .Mrs Weasley took a piece of buttered toast from a stack on the kitchen table put it into the fire tongs and transferred it into Mr Diggorys mouth .Fanks he said in a muffled voice and then with a small pop vanished .Harry could hear Mr Weasley calling hurried good byes to Bill Charlie Percy and the girls .Within five minutes he was back in the kitchen his robes on the right way now dragging a comb through his hair .Id better hurry you have a good term boys said Mr Weasley to Harry Ron and the twins fastening a cloak over his shoulders and preparing to Disapparate .Molly are you going to be all right taking the kids to Kings Cross ?Of course I will she said .You just look after Mad Eye well be fine .As Mr Weasley vanished Bill and Charlie entered the kitchen .Did someone say MadEye ?Bill asked .Whats he been up to now ?He says someone tried to break into his house last night said Mrs Weasley .MadEye Moody ?said George thoughtfully spreading marmalade on his toast .Isnt he that nutter Your father thinks very highly of MadEye Moody said Mrs Weasley sternly .Yeah well Dad collects plugs doesnt he ?said Fred quietly as Mrs Weasley left the room .Birds of a feather .Moody was a great wizard in his time said Bill .Hes an old friend of Dumbledores isnt he ?said Charlie .Dumbledores not what youd call normal though is he ?said Fred .I mean I know hes a genius and everything .Who is MadEye ?asked Harry .Hes retired used to work at the Ministry said Charlie .I met him once when Dad took me into work with him .He was an Auror one of the best .a Dark wizard catcher he added seeing Harrys blank look .Half the cells in Azkaban are full because of him .He made himself loads of enemies though .the families of people he caught mainly .and I heard hes been getting really paranoid in his old age .Doesnt trust anyone anymore .Sees Dark wizards everywhere .Bill and Charlie decided to come and see everyone off at Kings Cross station but Percy apologizing most profusely said that he really needed to get to work .I just cant justify taking more time off at the moment he told them .Mr Crouch is really starting to rely on me .Yeah you know what Percy ?said George seriously .I reckon hell know your name soon .Mrs Weasley had braved the telephone in the village post office to order three ordinary Muggle taxis to take them into London .Arthur tried to borrow Ministry cars for us Mrs Weasley whispered to Harry as they stood in the rain washed yard watching the taxi drivers heaving six heavy Hogwarts trunks into their cars .But there werent any to spare .Oh dear they dont look happy do they ?Harry didnt like to tell Mrs Weasley that Muggle taxi drivers rarely transported overexcited owls and Pigwidgeon was making an earsplitting racket .Nor did it help that a number of Filibusters Fabulous WetStart NoHeat Fireworks went off unexpectedly when Freds trunk sprang open causing the driver carrying it to yell with fright and pain as Crookshanks clawed his way up the mans leg .The journey was uncomfortable owing to the fact that they were jammed in the back of the taxis with their trunks .Crookshanks took quite a while to recover from the fireworks and by the time they entered London Harry Ron and Hermione were all severely scratched .They were very relieved to get out at Kings Cross even though the rain was coming down harder than ever and they got soaked carrying their trunks across the busy road and into the station .Harry was used to getting onto platform nine and threequarters by now .It was a simple matter of walking straight through the apparently solid barrier dividing platforms nine and ten .The only tricky part was doing this in an unobtrusive way so as to avoid attracting Muggle attention .They did it in groups today Harry Ron and Hermione the most conspicuous since they were accompanied by Pigwidgeon and Crookshanks went first they leaned casually against the barrier chatting unconcernedly and slid sideways through it .and as they did so platform nine and threequarters materialized in front of them .The Hogwarts Express a gleaming scarlet steam engine was already there clouds of steam billowing from it through which the many Hogwarts students and parents on the platform appeared like dark ghosts .Pigwidgeon became noisier than ever in response to the hooting of many owls through the mist .Harry Ron and Hermione set off to find seats and were soon stowing their luggage in a compartment halfway along the train .They then hopped back down onto the platform to say goodbye to Mrs Weasley Bill and Charlie .I might be seeing you all sooner than you think said Charlie grinning as he hugged Ginny goodbye .Why ?said Fred keenly .Youll see said Charlie .Just dont tell Percy I mentioned it .its ‘classified information until such time as the Ministry sees fit to release it after all .Yeah I sort of wish I were back at Hogwarts this year said Bill hands in his pockets looking almost wistfully at the train .Why ?said George impatiently .Youre going to have an interesting year said Bill his eyes twinkling .I might even get time off to come and watch a bit of it .A bit of what ?said Ron .But at that moment the whistle blew and Mrs Weasley chivvied them toward the train doors .Thanks for having us to stay Mrs Weasley said Hermione as they climbed on board closed the door and leaned out of the window to talk to her .Yeah thanks for everything Mrs Weasley said Harry .Oh it was my pleasure dears said Mrs Weasley .Td invite you for Christmas but .well I expect youre all going to want to stay at Hogwarts what with .one thing and another .Mum !said Ron irritably .What dyou three know that we dont ?Youll find out this evening I expect said Mrs Weasley smiling .Its going to be very exciting mind you Im very glad theyve changed the rules What rules ?said Harry Ron Fred and George together .Im sure Professor Dumbledore will tell you .Now behave wont you ?Wont you Fred ?And you George ?The pistons hissed loudly and the train began to move .Tell us whats happening at Hogwarts !Fred bellowed out of the window as Mrs Weasley Bill and Charlie sped away from them .What rules are they changing ?But Mrs Weasley only smiled and waved .Before the train had rounded the corner she Bill and Charlie had Disapparated .Harry Ron and Hermione went back to their compartment .The thick rain splattering the windows made it very difficult to see out of them .Ron undid his trunk pulled out his maroon dress robes and flung them over Pigwidgeons cage to muffle his hooting .Bagman wanted to tell us whats happening at Hogwarts he said grumpily sitting down next to Harry .At the World Cup remember ?But my own mother wont say .Wonder what Shh !Hermione whispered suddenly pressing her finger to her lips and pointing toward the compartment next to theirs .Harry and Ron listened and heard a familiar drawling voice drifting in through the open door . .Father actually considered sending me to Durmstrang rather than Hogwarts you know .He knows the headmaster you see .Well you know his opinion of Dumbledore the mans such a Mudbloodlover and Durmstrang doesnt admit that sort of riffraff .But Mother didnt like the idea of me going to school so far away .Father says Durmstrang takes a far more sensible line than Hogwarts about the Dark Arts .Durmstrang students actually learn them not just the defense rubbish we do .Hermione got up tiptoed to the compartment door and slid it shut blocking out Malfoys voice .So he thinks Durmstrang would have suited him does he ?she said angrily .I wish he had gone then we wouldnt have to put up with him .Durmstrangs another wizarding school ?said Harry .Yes said Hermione sniffily and its got a horrible reputation .According to An Appraisal of Magical Education in Europe it puts a lot of emphasis on the Dark Arts .I think Ive heard of it said Ron vaguely .Where is it ?What country ?Well nobody knows do they ?said Hermione raising her eyebrows .Er why not ?said Harry .Theres traditionally been a lot of rivalry between all the magic schools .Durmstrang and Beauxbatons like to conceal their whereabouts so nobody can steal their secrets said Hermione matteroffactly .Come off it said Ron starting to laugh .Durmstrangs got to be about the same size as Hogwarts how are you going to hide a great big castle ?But Hogwarts is hidden said Hermione in surprise .Everyone knows that .well everyone whos read Hogwarts A History anyway .Just you then said Ron .So go on how dyou hide a place like Hogwarts ?Its bewitched said Hermione .If a Muggle looks at it all they see is a moldering old ruin with a sign over the entrance saying DANGER DO NOT ENTER UNSAFE .So Durmstrangll just look like a min to an outsider too ?Maybe said Hermione shrugging or it might have Mugglerepelling charms on it like the World Cup stadium .And to keep foreign wizards from finding it theyll have made it Unplottable Come again ?Well you can enchant a building so its impossible to plot on a map cant you ?Er .if you say so said Harry .But I think Durmstrang must be somewhere in the far north said Hermione thoughtfully .Somewhere very cold because theyve got fur capes as part of their uniforms .Ah think of the possibilities said Ron dreamily .It wouldve been so easy to push Malfoy off a glacier and make it look like an accident .Shame his mother likes him .The rain became heavier and heavier as the train moved farther north .The sky was so dark and the windows so steamy that the lanterns were lit by midday .The lunch trolley came rattling along the corridor and Harry bought a large stack of Cauldron Cakes for them to share .Several of their friends looked in on them as the afternoon progressed including Seamus Finnigan Dean Thomas and Neville Longbottom a round faced extremely forgetful boy who had been brought up by his formidable witch of a grandmother .Seamus was still wearing his Ireland rosette .Some of its magic seemed to be wearing off now it was still squeaking Troy Mullet Moran but in a very feeble and exhausted sort of way .After half an hour or so Hermione growing tired of the endless Quidditch talk buried herself once more in The Standard Book of Spells Grade 4 and started trying to learn a Summoning Charm .Neville listened jealously to the others conversation as they relived the Cup match .Gran didnt want to go he said miserably .Wouldnt buy tickets .It sounded amazing though .It was said Ron .Look at this Neville .He rummaged in his trunk up in the luggage rack and pulled out the miniature figure of Viktor Krum .Oh wow said Neville enviously as Ron tipped Krum onto his pudgy hand .We saw him right up close as well said Ron .We were in the Top Box For the first and last time in your life Weasley .Draco Malfoy had appeared in the doorway .Behind him stood Crabbe and Goyle his enormous thuggish cronies both of whom appeared to have grown at least a foot during the summer .Evidently they had overheard the conversation through the compartment door which Dean and Seamus had left ajar .Dont remember asking you to join us Malfoy said Harry coolly .Weasley .what is that ?said Malfoy pointing at Pigwidgeons cage .A sleeve of Rons dress robes was dangling from it swaying with the motion of the train the moldy lace cuff very obvious .Ron made to stuff the robes out of sight but Malfoy was too quick for him he seized the sleeve and pulled .Look at this !said Malfoy in ecstasy holding up Rons robes and showing Crabbe and Goyle Weasley you werent thinking of wearing these were you ?I mean they were very fashionable in about eighteen ninety .Eat dung Malfoy !said Ron the same color as the dress robes as he snatched them back out of Malfoys grip .Malfoy howled with derisive laughter Crabbe and Goyle guffawed stupidly .So .going to enter Weasley ?Going to try and bring a bit of glory to the family name ?Theres money involved as well you know .youd be able to afford some decent robes if you won .What are you talking about ?snapped Ron .Are you going to enter ?Malfoy repeated .I suppose you will Potter ?You never miss a chance to show off do you ?Either explain what youre on about or go away Malfoy said Hermione testily over the top of The Standard Book of Spells Grade 4 .A gleeful smile spread across Malfoys pale face .Dont tell me you dont know ?he said delightedly .Youve got a father and brother at the Ministry and you dont even know ?My God my father told me about it ages ago .heard it from Cornelius Fudge .But then Fathers always associated with the top people at the Ministry .Maybe your fathers too junior to know about it Weasley .yes .they probably dont talk about important stuff in front of him .Laughing once more Malfoy beckoned to Crabbe and Goyle and the three of them disappeared .Ron got to his feet and slammed the sliding compartment door so hard behind them that the glass shattered .Ronl said Hermione reproachfully and she pulled out her wand muttered ReparoV and the glass shards flew back into a single pane and back into the door .Well .making it look like he knows everything and we dont .Ron snarled . ‘Fathers always associated with the top people at the Ministry ..Dad couldve got a promotion any time .he just likes it where he is .Of course he does said Hermione quietly .Dont let Malfoy get to you Ron Him !Get to me !?As if !said Ron picking up one of the remaining Cauldron Cakes and squashing it into a pulp .Rons bad mood continued for the rest of the journey .He didnt talk much as they changed into their school robes and was still glowering when the Hogwarts Express slowed down at last and finally stopped in the pitchdarkness of Hogsmeade station .As the train doors opened there was a rumble of thunder overhead .Hermione bundled up Crookshanks in her cloak and Ron left his dress robes over Pigwidgeon as they left the train heads bent and eyes narrowed against the downpour .The rain was now coming down so thick and fast that it was as though buckets of icecold water were being emptied repeatedly over their heads .Hi Hagrid !Harry yelled seeing a gigantic silhouette at the far end of the platform .All righ Harry ?Hagrid bellowed back waving .See yeh at the feast if we don drown !First years traditionally reached Hogwarts Castle by sailing across the lake with Hagrid .Oooh I wouldnt fancy crossing the lake in this weather said Hermione fervently shivering as they inched slowly along the dark platform with the rest of the crowd .A hundred horseless carriages stood waiting for them outside the station .Harry Ron Hermione and Neville climbed gratefully into one of them the door shut with a snap and a few moments later with a great lurch the long procession of carriages was rumbling and splashing its way up the track toward Hogwarts Castle .THE TRIWIZARD TOURNAMENT Through the gates flanked with statues of winged boars and up the sweeping drive the carriages trundled swaying dangerously in what was fast becoming a gale .Leaning against the window Harry could see Hogwarts coming nearer its many lighted windows blurred and shimmering behind the thick curtain of rain .Lightning flashed across the sky as their carriage came to a halt before the great oak front doors which stood at the top of a flight of stone steps .People who had occupied the carriages in front were already hurrying up the stone steps into the castle .Harry Ron Hermione and Neville jumped down from their carriage and dashed up the steps too looking up only when they were safely inside the cavernous torchlit entrance hall with its magnificent marble staircase .Blimey said Ron shaking his head and sending water everywhere if that keeps up the lakes going to overflow .Im soak ARRGH !A large red waterfilled balloon had dropped from out of the ceiling onto Rons head and exploded .Drenched and sputtering Ron staggered sideways into Harry just as a second water bomb dropped narrowly missing Hermione it burst at Harrys feet sending a wave of cold water over his sneakers into his socks .People all around them shrieked and started pushing one another in their efforts to get out of the line of fire .Harry looked up and saw floating twenty feet above them Peeves the Poltergeist a little man in a bellcovered hat and orange bow tie his wide malicious face contorted with concentration as he took aim again .PEEVES !yelled an angry voice .Peeves come down here at ONCE !Professor McGonagall Deputy Headmistress and head of Gryffindor House had come dashing out of the Great Hall she skidded on the wet floor and grabbed Hermione around the neck to stop herself from falling .Ouch sorry Miss Granger Thats all right Professor !Hermione gasped massaging her throat .Peeves get down here NOW !barked Professor McGonagall straightening her pointed hat and glaring upward through her squarerimmed spectacles .Not doing nothing !cackled Peeves lobbing a water bomb at several fifthyear girls who screamed and dived into the Great Hall .Already wet arent they ?Little squirts !Wheeeeeeeeee !And he aimed another bomb at a group of second years who had just arrived .I shall call the headmaster !shouted Professor McGonagall .Im warning you Peeves Peeves stuck out his tongue threw the last of his water bombs into the air and zoomed off up the marble staircase cackling insanely .Well move along then !said Professor McGonagall sharply to the bedraggled crowd .Into the Great Hall come on !Harry Ron and Hermione slipped and slid across the entrance hall and through the double doors on the right Ron muttering furiously under his breath as he pushed his sopping hair off his face .The Great Hall looked its usual splendid self decorated for the startofterm feast .Golden plates and goblets gleamed by the light of hundreds and hundreds of candles floating over the tables in midair .The four long House tables were packed with chattering students at the top of the Hall the staff sat along one side of a fifth table facing their pupils .It was much warmer in here .Harry Ron and Hermione walked past the Slytherins the Ravenclaws and the Hufflepuffs and sat down with the rest of the Gryffindors at the far side of the Hall next to Nearly Headless Nick the Gryffindor ghost .Pearly white and semitransparent Nick was dressed tonight in his usual doublet but with a particularly large ruff which served the dual purpose of looking extrafestive and insuring that his head didnt wobble too much on his partially severed neck .Good evening he said beaming at them .Says who ?said Harry taking off his sneakers and emptying them of water .Hope they hurry up with the Sorting .Im starving .The Sorting of the new students into Houses took place at the start of every school year but by an unlucky combination of circumstances Harry hadnt been present at one since his own .He was quite looking forward to it .Just then a highly excited breathless voice called down the table .Hiya Harry !It was Colin Creevey a third year to whom Harry was something of a hero .Hi Colin said Harry warily .Harry guess what ?Guess what Harry ?My brothers starting !My brother Dennis !Er good said Harry .Hes really excited !said Colin practically bouncing up and down in his seat .I just hope hes in Gryffindor !Keep your fingers crossed eh Harry ?Er yeah all right said Harry .He turned back to Hermione Ron and Nearly Headless Nick .Brothers and sisters usually go in the same Houses dont they ?he said .He was judging by the Weasleys all seven of whom had been put into Gryffindor .Oh no not necessarily said Hermione .Parvati Patils twins in Ravenclaw and theyre identical .Youd think theyd be together wouldnt you ?Harry looked up at the staff table .There seemed to be rather more empty seats there than usual .Hagrid of course was still fighting his way across the lake with the first years Professor McGonagall was presumably supervising the drying of the entrance hall floor but there was another empty chair too and Harry couldnt think who else was missing .Wheres the new Defense Against the Dark Arts teacher ?said Hermione who was also looking up at the teachers .They had never yet had a Defense Against the Dark Arts teacher who had lasted more than three terms .Harrys favorite by far had been Professor Lupin who had resigned last year .He looked up and down the staff table .There was definitely no new face there .Maybe they couldnt get anyone !said Hermione looking anxious .Harry scanned the table more carefully .Tiny little Professor Flitwick the Charms teacher was sitting on a large pile of cushions beside Professor Sprout the Herbology teacher whose hat was askew over her flyaway gray hair .She was talking to Professor Sinistra of the Astronomy department .On Professor Sinistra s other side was the sallowfaced hook nosed greasyhaired Potions master Snape Harrys least favorite person at Hogwarts .Harrys loathing of Snape was matched only by Snape s hatred of him a hatred which had if possible intensified last year when Harry had helped Sirius escape right under Snape s overlarge nose Snape and Sirius had been enemies since their own school days .On Snape s other side was an empty seat which Harry guessed was Professor McGonagalls .Next to it and in the very center of the table sat Professor Dumbledore the headmaster his sweeping silver hair and beard shining in the candlelight his magnificent deep green robes embroidered with many stars and moons .The tips of Dumbledore s long thin fingers were together and he was resting his chin upon them staring up at the ceiling through his halfmoon spectacles as though lost in thought .Harry glanced up at the ceiling too .It was enchanted to look like the sky outside and he had never seen it look this stormy .Black and purple clouds were swirling across it and as another thunderclap sounded outside a fork of lightning flashed across it .Oh hurry up Ron moaned beside Harry I could eat a hippogriff .The words were no sooner out of his mouth than the doors of the Great Hall opened and silence fell .Professor McGonagall was leading a long line of first years up to the top of the Hall .If Harry Ron and Hermione were wet it was nothing to how these first years looked .They appeared to have swum across the lake rather than sailed .All of them were shivering with a combination of cold and nerves as they filed along the staff table and came to a halt in a line facing the rest of the school all of them except the smallest of the lot a boy with mousy hair who was wrapped in what Harry recognized as Hagrids moleskin overcoat .The coat was so big for him that it looked as though he were draped in a furry black circus tent .His small face protruded from over the collar looking almost painfully excited .When he had lined up with his terrifiedlooking peers he caught Colin Creeveys eye gave a double thumbsup and mouthed I fell in the lake He looked positively delighted about it .Professor McGonagall now placed a threelegged stool on the ground before the first years and on top of it an extremely old dirty patched wizards hat .The first years stared at it .So did everyone else .For a moment there was silence .Then a long tear near the brim opened wide like a mouth and the hat broke into song A thousand years or more ago When I was newly sewn There lived four wizards of renown Whose names are still well known Bold Gryffindor from wild moor Fair Ravenclaw from glen Sweet Hufflepuff from valley broad Shrewd Slytherin from fen .They shared a wish a hope a dream They hatched a daring plan To educate young sorcerers Thus Hogwarts School began .Now each of these four founders Formed their own house for each Did value different virtues In the ones they had to teach .By Gryffindor the bravest were Prized far beyond the rest For Ravenclaw the cleverest Would always be the best For Hufflepuff hard workers were Most worthy of admission And powerhungry Slytherin Loved those of great ambition .While still alive they did divide Their favorites from the throng Yet how to pick the worthy ones When they were dead and gone ?Twas Gryffindor who found the way He whipped me off his head The founders put some brains in me So I could choose instead !Now slip me snug about your ears Ive never yet been wrong 111 have a look inside your mind And tell where you belong !The Great Hall rang with applause as the Sorting Hat finished .Thats not the song it sang when it Sorted us said Harry clapping along with everyone else .Sings a different one every year said Ron .Its got to be a pretty boring life hasnt it being a hat ?I suppose it spends all year making up the next one .Professor McGonagall was now unrolling a large scroll of parchment .When I call out your name you will put on the hat and sit on the stool she told the first years .When the hat announces your House you will go and sit at the appropriate table .Ackerley Stewart !A boy walked forward visibly trembling from head to foot picked up the Sorting Hat put it on and sat down on the stool .RAVENCLAW !shouted the hat .Stewart Ackerley took off the hat and hurried into a seat at the Ravenclaw table where everyone was applauding him .Harry caught a glimpse of Cho the Ravenclaw Seeker cheering Stewart Ackerley as he sat down .For a fleeting second Harry had a strange desire to join the Ravenclaw table too .Baddock Malcolm !SLYTHERIN !The table on the other side of the hall erupted with cheers Harry could see Malfoy clapping as Baddock joined the Slytherins .Harry wondered whether Baddock knew that Slytherin House had turned out more Dark witches and wizards than any other .Fred and George hissed Malcolm Baddock as he sat down .Branstone Eleanor !HUFFLEPUFF !Cauldwell Owen !HUFFLEPUFF !Creevey Dennis !Tiny Dennis Creevey staggered forward tripping over Hagrid s moleskin just as Hagrid himself sidled into the Hall through a door behind the teachers table .About twice as tall as a normal man and at least three times as broad Hagrid with his long wild tangled black hair and beard looked slightly alarming a misleading impression for Harry Ron and Hermione knew Hagrid to possess a very kind nature .He winked at them as he sat down at the end of the staff table and watched Dennis Creevey putting on the Sorting Hat .The rip at the brim opened wide GRYFFINDOR !the hat shouted .Hagrid clapped along with the Gryffindors as Dennis Creevey beaming widely took off the hat placed it back on the stool and hurried over to join his brother .Colin I fell in !he said shrilly throwing himself into an empty seat .It was brilliant !And something in the water grabbed me and pushed me back in the boat !Cool !said Colin just as excitedly .It was probably the giant squid Dennis !Wow said Dennis as though nobody in their wildest dreams could hope for more than being thrown into a stormtossed fathomsdeep lake and pushed out of it again by a giant sea monster .Dennis !Dennis !See that boy down there ?The one with the black hair and glasses ?See him ?Know who he is Dennis ?Harry looked away staring very hard at the Sorting Hat now Sorting Emma Dobbs .The Sorting continued boys and girls with varying degrees of fright on their faces moving one by one to the threelegged stool the line dwindling slowly as Professor McGonagall passed the Ls .Oh hurry up Ron moaned massaging his stomach .Now Ron the Sortings much more important than food said Nearly Headless Nick as Madley Laura !became a Hufflepuff .Course it is if youre dead snapped Ron .I do hope this years batch of Gryffindors are up to scratch said Nearly Headless Nick applauding as McDonald Natalie !joined the Gryffindor table .We dont want to break our winning streak do we ?Gryffindor had won the InterHouse Championship for the last three years in a row .Pritchard Graham !SLYTHERIN !Quirke Orla !RAVENCLAW !And finally with Whitby Kevin !HUFFLEPUFF !the Sorting ended .Professor McGonagall picked up the hat and the stool and carried them away .About time said Ron seizing his knife and fork and looking expectantly at his golden plate .Professor Dumbledore had gotten to his feet .He was smiling around at the students his arms opened wide in welcome .I have only two words to say to you he told them his deep voice echoing around the Hall .Tuck in .Hear hear !said Harry and Ron loudly as the empty dishes filled magically before their eyes .Nearly Headless Nick watched mournfully as Harry Ron and Hermione loaded their own plates .aah ats beer said Ron with his mouth full of mashed potato .Youre lucky theres a feast at all tonight you know said Nearly Headless Nick .There was trouble in the kitchens earlier .Why ?Wha appened ?said Harry through a sizable chunk of steak .Peeves of course said Nearly Headless Nick shaking his head which wobbled dangerously .He pulled his ruff a little higher up on his neck .The usual argument you know .He wanted to attend the feast well its quite out of the question you know what hes like utterly uncivilized cant see a plate of food without throwing it .We held a ghosts council the Fat Friar was all for giving him the chance but most wisely in my opinion the Bloody Baron put his foot down .The Bloody Baron was the Slytherin ghost a gaunt and silent specter covered in silver bloodstains .He was the only person at Hogwarts who could really control Peeves .Yeah we thought Peeves seemed hacked off about something said Ron darkly .So what did he do in the kitchens ?Oh the usual said Nearly Headless Nick shrugging .Wreaked havoc and mayhem .Pots and pans everywhere .Place swimming in soup .Terrified the houseelves out of their wits Clang .Hermione had knocked over her golden goblet .Pumpkin juice spread steadily over the tablecloth staining several feet of white linen orange but Hermione paid no attention .There are houseelves here ?she said staring horrorstruck at Nearly Headless Nick .Here at Hogwarts ?Certainly said Nearly Headless Nick looking surprised at her reaction .The largest number in any dwelling in Britain I believe .Over a hundred .Ive never seen one !said Hermione .Well they hardly ever leave the kitchen by day do they ?said Nearly Headless Nick .They come out at night to do a bit of cleaning .see to the fires and so on .I mean youre not supposed to see them are you ?Thats the mark of a good houseelf isnt it that you dont know its there ?Hermione stared at him .But they get paid ?she said .They get holidays dont they ?And and sick leave and pensions and everything ?Nearly Headless Nick chortled so much that his ruff slipped and his head flopped off dangling on the inch or so of ghostly skin and muscle that still attached it to his neck .Sick leave and pensions ?he said pushing his head back onto his shoulders and securing it once more with his ruff .Houseelves dont want sick leave and pensions !Hermione looked down at her hardly touched plate of food then put her knife and fork down upon it and pushed it away from her .Oh cmon Ermyknee said Ron accidentally spraying Harry with bits of Yorkshire pudding .Oops sorry Arry He swallowed .You wont get them sick leave by starving yourself !Slave labor said Hermione breathing hard through her nose .Thats what made this dinner .Slave labor .And she refused to eat another bite .The rain was still drumming heavily against the high dark glass .Another clap of thunder shook the windows and the stormy ceiling flashed illuminating the golden plates as the remains of the first course vanished and were replaced instantly with puddings .Treacle tart Hermione !said Ron deliberately wafting its smell toward her .Spotted dick look !Chocolate gateau !But Hermione gave him a look so reminiscent of Professor McGonagall that he gave up .When the puddings too had been demolished and the last crumbs had faded off the plates leaving them sparkling clean Albus Dumbledore got to his feet again .The buzz of chatter filling the Hall ceased almost at once so that only the howling wind and pounding rain could be heard .So !said Dumbledore smiling around at them all .Now that we are all fed and watered Hmph !said Hermione I must once more ask for your attention while I give out a few notices .Mr Filch the caretaker has asked me to tell you that the list of objects forbidden inside the castle has this year been extended to include Screaming Yoyos Fanged Frisbees and EverBashing Boomerangs .The full list comprises some four hundred and thirty seven items I believe and can be viewed in Mr Filch s office if anybody would like to check it .The corners of Dumbledore s mouth twitched .He continued As ever I would like to remind you all that the forest on the grounds is outofbounds to students as is the village of Hogsmeade to all below third year .It is also my painful duty to inform you that the InterHouse Quidditch Cup will not take place this year .What ?Harry gasped .He looked around at Fred and George his fellow members of the Quidditch team .They were mouthing soundlessly at Dumbledore apparently too appalled to speak .Dumbledore went on This is due to an event that will be starting in October and continuing throughout the school year taking up much of the teachers time and energy but I am sure you will all enjoy it immensely .I have great pleasure in announcing that this year at Hogwarts But at that moment there was a deafening rumble of thunder and the doors of the Great Hall banged open .A man stood in the doorway leaning upon a long staff shrouded in a black traveling cloak .Every head in the Great Hall swiveled toward the stranger suddenly brightly illuminated by a fork of lightning that flashed across the ceiling .He lowered his hood shook out a long mane of grizzled dark gray hair then began to walk up toward the teachers table .A dull clunk echoed through the Hall on his every other step .He reached the end of the top table turned right and limped heavily toward Dumbledore .Another flash of lightning crossed the ceiling .Hermione gasped .The lightning had thrown the mans face into sharp relief and it was a face unlike any Harry had ever seen .It looked as though it had been carved out of weathered wood by someone who had only the vaguest idea of what human faces are supposed to look like and was none too skilled with a chisel .Every inch of skin seemed to be scarred .The mouth looked like a diagonal gash and a large chunk of the nose was missing .But it was the mans eyes that made him frightening .One of them was small dark and beady .The other was large round as a coin and a vivid electric blue .The blue eye was moving ceaselessly without blinking and was rolling up down and from side to side quite independently of the normal eye and then it rolled right over pointing into the back of the mans head so that all they could see was whiteness .The stranger reached Dumbledore .He stretched out a hand that was as badly scarred as his face and Dumbledore shook it muttering words Harry couldnt hear .He seemed to be making some inquiry of the stranger who shook his head unsmilingly and replied in an undertone .Dumbledore nodded and gestured the man to the empty seat on his righthand side .The stranger sat down shook his mane of dark gray hair out of his face pulled a plate of sausages toward him raised it to what was left of his nose and sniffed it .He then took a small knife out of his pocket speared a sausage on the end of it and began to eat .His normal eye was fixed upon the sausages but the blue eye was still darting restlessly around in its socket taking in the Hall and the students .May I introduce our new Defense Against the Dark Arts teacher ?said Dumbledore brightly into the silence .Professor Moody .It was usual for new staff members to be greeted with applause but none of the staff or students clapped except Dumbledore and Hagrid who both put their hands together and applauded but the sound echoed dismally into the silence and they stopped fairly quickly .Everyone else seemed too transfixed by Moodys bizarre appearance to do more than stare at him .Moody ?Harry muttered to Ron .MacLEye Moody ?The one your dad went to help this morning ?Must be said Ron in a low awed voice .What happened to him ?Hermione whispered .What happened to his face ?Dunno Ron whispered back watching Moody with fascination .Moody seemed totally indifferent to his lessthan warm welcome .Ignoring the jug of pumpkin juice in front of him he reached again into his traveling cloak pulled out a hip flask and took a long draught from it .As he lifted his arm to drink his cloak was pulled a few inches from the ground and Harry saw below the table several inches of carved wooden leg ending in a clawed foot .Dumbledore cleared his throat .As I was saying he said smiling at the sea of students before him all of whom were still gazing transfixed at MadEye Moody we are to have the honor of hosting a very exciting event over the coming months an event that has not been held for over a century .It is my very great pleasure to inform you that the Triwizard Tournament will be taking place at Hogwarts this year .Youre JOKING !said Fred Weasley loudly .The tension that had filled the Hall ever since Moodys arrival suddenly broke .Nearly everyone laughed and Dumbledore chuckled appreciatively .I am not joking Mr Weasley he said though now that you mention it I did hear an excellent one over the summer about a troll a hag and a leprechaun who all go into a bar .Professor McGonagall cleared her throat loudly .Er but maybe this is not the time .no .said Dumbledore where was I ?Ah yes the Triwizard Tournament .well some of you will not know what this tournament involves so I hope those who do know will forgive me for giving a short explanation and allow their attention to wander freely .The Triwizard Tournament was first established some seven hundred years ago as a friendly competition between the three largest European schools of wizardry Hogwarts Beauxbatons and Durmstrang .A champion was selected to represent each school and the three champions competed in three magical tasks .The schools took it in turns to host the tournament once every five years and it was generally agreed to be a most excellent way of establishing ties between young witches and wizards of different nationalities until that is the death toll mounted so high that the tournament was discontinued .Death toll ?Hermione whispered looking alarmed .But her anxiety did not seem to be shared by the majority of students in the Hall many of them were whispering excitedly to one another and Harry himself was far more interested in hearing about the tournament than in worrying about deaths that had happened hundreds of years ago .There have been several attempts over the centuries to reinstate the tournament Dumbledore continued none of which has been very successful .However our own departments of International Magical Cooperation and Magical Games and Sports have decided the time is ripe for another attempt .We have worked hard over the summer to ensure that this time no champion will find himself or herself in mortal danger .The heads of Beauxbatons and Durmstrang will be arriving with their shortlisted contenders in October and the selection of the three champions will take place at Halloween .An impartial judge will decide which students are most worthy to compete for the Triwizard Cup the glory of their school and a thousand Galleons personal prize money .Im going for it !Fred Weasley hissed down the table his face lit with enthusiasm at the prospect of such glory and riches .He was not the only person who seemed to be visualizing himself as the Hogwarts champion .At every House table Harry could see people either gazing raptly at Dumbledore or else whispering fervently to their neighbors .But then Dumbledore spoke again and the Hall quieted once more .Eager though I know all of you will be to bring the Triwizard Cup to Hogwarts he said the heads of the participating schools along with the Ministry of Magic have agreed to impose an age restriction on contenders this year .Only students who are of age that is to say seventeen years or older will be allowed to put forward their names for consideration .This Dumbledore raised his voice slightly for several people had made noises of outrage at these words and the Weasley twins were suddenly looking furious is a measure we feel is necessary given that the tournament tasks will still be difficult and dangerous whatever precautions we take and it is highly unlikely that students below sixth and seventh year will be able to cope with them .I will personally be ensuring that no underage student hoodwinks our impartial judge into making them Hogwarts champion .His light blue eyes twinkled as they flickered over Freds and Georges mutinous faces .I therefore beg you not to waste your time submitting yourself if you are under seventeen .The delegations from Beauxbatons and Durmstrang will be arriving in October and remaining with us for the greater part of this year .I know that you will all extend every courtesy to our foreign guests while they are with us and will give your wholehearted support to the Hogwarts champion when he or she is selected .And now it is late and I know how important it is to you all to be alert and rested as you enter your lessons tomorrow morning .Bedtime !Chop chop !Dumbledore sat down again and turned to talk to MadEye Moody .There was a great scraping and banging as all the students got to their feet and swarmed toward the double doors into the entrance hall .They cant do that !said George Weasley who had not joined the crowd moving toward the door but was standing up and glaring at Dumbledore .Were seventeen in April why cant we have a shot ?Theyre not stopping me entering said Fred stubbornly also scowling at the top table .The championsll get to do all sorts of stuff youd never be allowed to do normally .And a thousand Galleons prize money !Yeah said Ron a faraway look on his face .Yeah a thousand Galleons .Come on said Hermione well be the only ones left here if you dont move .Harry Ron Hermione Fred and George set off for the entrance hall Fred and George debating the ways in which Dumbledore might stop those who were under seventeen from entering the tournament .Whos this impartial judge whos going to decide who the champions are ?said Harry .Dunno said Fred but its them well have to fool .I reckon a couple of drops of Aging Potion might do it George .Dumbledore knows youre not of age though said Ron .Yeah but hes not the one who decides who the champion is is he ?said Fred shrewdly .Sounds to me like once this judge knows who wants to enter hell choose the best from each school and never mind how old they are .Dumbledore s trying to stop us giving our names .People have died though !said Hermione in a worried voice as they walked through a door concealed behind a tapestry and started up another narrower staircase .Yeah said Fred airily but that was years ago wasnt it ?Anyway wheres the fun without a bit of risk ?Hey Ron what if we find out how to get round Dumbledore ?Fancy entering ?What dyou reckon ?Ron asked Harry .Be cool to enter wouldnt it ?But I spose they might want someone older .Dunno if weve learned enough .I definitely havent came Nevilles gloomy voice from behind Fred and George .I expect my grand want me to try though .Shes always going on about how I should be upholding the family honor .Ill just have to oops .Nevilles foot had sunk right through a step halfway up the staircase .There were many of these trick stairs at Hogwarts it was second nature to most of the older students to jump this particular step but Nevilles memory was notoriously poor .Harry and Ron seized him under the armpits and pulled him out while a suit of armor at the top of the stairs creaked and clanked laughing wheezily .Shut it you said Ron banging down its visor as they passed .They made their way up to the entrance to Gryffindor Tower which was concealed behind a large portrait of a fat lady in a pink silk dress .Password ?she said as they approached .Balderdash said George a prefect downstairs told me .The portrait swung forward to reveal a hole in the wall through which they all climbed .A crackling fire warmed the circular common room which was full of squashy armchairs and tables .Hermione cast the merrily dancing flames a dark look and Harry distinctly heard her mutter Slave labor before bidding them good night and disappearing through the doorway to the girls dormitory .Harry Ron and Neville climbed up the last spiral staircase until they reached their own dormitory which was situated at the top of the tower .Five four poster beds with deep crimson hangings stood against the walls each with its owners trunk at the foot .Dean and Seamus were already getting into bed Seamus had pinned his Ireland rosette to his headboard and Dean had tacked up a poster of Viktor Krum over his bedside table .His old poster of the West Ham football team was pinned right next to it .Mental Ron sighed shaking his head at the completely stationary soccer players .Harry Ron and Neville got into their pajamas and into bed .Someone a houseelf no doubt had placed warming pans between the sheets .It was extremely comfortable lying there in bed and listening to the storm raging outside .I might go in for it you know Ron said sleepily through the darkness if Fred and George find out how to .the tournament .you never know do you ?Spose not .Harry rolled over in bed a series of dazzling new pictures forming in his minds eye .He had hoodwinked the impartial judge into believing he was seventeen .he had become Hogwarts champion .he was standing on the grounds his arms raised in triumph in front of the whole school all of whom were applauding and screaming .he had just won the Triwizard Tournament .Chos face stood out particularly clearly in the blurred crowd her face glowing with admiration .Harry grinned into his pillow exceptionally glad that Ron couldnt see what he could .MADEYE MOODY The storm had blown itself out by the following morning though the ceiling in the Great Hall was still gloomy heavy clouds of pewter gray swirled overhead as Harry Ron and Hermione examined their new course schedules at breakfast .A few seats along Fred George and Lee Jordan were discussing magical methods of aging themselves and bluffing their way into the Triwizard Tournament .Todays not bad .outside all morning said Ron who was running his finger down the Monday column of his schedule .Herbology with the Hufflepuffs and Care of Magical Creatures .damn it were still with the Slytherins .Double Divination this afternoon Harry groaned looking down .Divination was his least favorite subject apart from Potions .Professor Trelawney kept predicting Harrys death which he found extremely annoying .You should have given it up like me shouldnt you ?said Hermione briskly buttering herself some toast .Then youd be doing something sensible like Arithmancy .Youre eating again I notice said Ron watching Hermione adding liberal amounts of jam to her toast too .Ive decided there are better ways of making a stand about elf rights said Hermione haughtily .Yeah .and you were hungry said Ron grinning .There was a sudden rustling noise above them and a hundred owls came soaring through the open windows carrying the morning mail .Instinctively Harry looked up but there was no sign of white among the mass of brown and gray .The owls circled the tables looking for the people to whom their letters and packages were addressed .A large tawny owl soared down to Neville Longbottom and deposited a parcel into his lap Neville almost always forgot to pack something .On the other side of the Hall Draco Malfoys eagle owl had landed on his shoulder carrying what looked like his usual supply of sweets and cakes from home .Trying to ignore the sinking feeling of disappointment in his stomach Harry returned to his porridge .Was it possible that something had happened to Hedwig and that Sirius hadnt even got his letter ?His preoccupation lasted all the way across the sodden vegetable patch until they arrived in greenhouse three but here he was distracted by Professor Sprout showing the class the ugliest plants Harry had ever seen .Indeed they looked less like plants than thick black giant slugs protruding vertically out of the soil .Each was squirming slightly and had a number of large shiny swellings upon it which appeared to be full of liquid .Bubotubers Professor Sprout told them briskly .They need squeezing .You will collect the pus The what ?said Seamus Finnigan sounding revolted .Pus Finnigan pus said Professor Sprout and its extremely valuable so dont waste it .You will collect the pus I say in these bottles .Wear your dragon hide gloves it can do funny things to the skin when undiluted bubotuber pus .Squeezing the bubotubers was disgusting but oddly satisfying .As each swelling was popped a large amount of thick yellowishgreen liquid burst forth which smelled strongly of petrol .They caught it in the bottles as Professor Sprout had indicated and by the end of the lesson had collected several pints .Thisll keep Madam Pomfrey happy said Professor Sprout stoppering the last bottle with a cork .An excellent remedy for the more stubborn forms of acne bubotuber pus .Should stop students resorting to desperate measures to rid themselves of pimples .Like poor Eloise Midgen said Hannah Abbott a Hufflepuff in a hushed voice .She tried to curse hers off .Silly girl said Professor Sprout shaking her head .But Madam Pomfrey fixed her nose back on in the end .A booming bell echoed from the castle across the wet grounds signaling the end of the lesson and the class separated the Hufflepuffs climbing the stone steps for Transfiguration and the Gryffindors heading in the other direction down the sloping lawn toward Hagrid s small wooden cabin which stood on the edge of the Forbidden Forest .Hagrid was standing outside his hut one hand on the collar of his enormous black boarhound Fang .There were several open wooden crates on the ground at his feet and Fang was whimpering and straining at his collar apparently keen to investigate the contents more closely .As they drew nearer an odd rattling noise reached their ears punctuated by what sounded like minor explosions .Mornin !Hagrid said grinning at Harry Ron and Hermione .Beer wait fer the Slytherins they won want ter miss this BlastEnded Skrewts !Come again ?said Ron .Hagrid pointed down into the crates .Eurgh !squealed Lavender Brown jumping backward .Eurgh just about summed up the BlastEnded Skrewts in Harrys opinion .They looked like deformed shellless lobsters horribly pale and slimy looking with legs sticking out in very odd places and no visible heads .There were about a hundred of them in each crate each about six inches long crawling over one another bumping blindly into the sides of the boxes .They were giving off a very powerful smell of rotting fish .Every now and then sparks would fly out of the end of a skrewt and with a small phut it would be propelled forward several inches .Ony jus hatched said Hagrid proudly so yehll be able ter raise em yerselves !Thought wed make a bit of a project of it !And why would we want to raise them ?said a cold voice .The Slytherins had arrived .The speaker was Draco Malfoy .Crabbe and Goyle were chuckling appreciatively at his words .Hagrid looked stumped at the question .I mean what do they do ?asked Malfoy .What is the point of them ?Hagrid opened his mouth apparently thinking hard there was a few seconds pause then he said roughly Thas next lesson Malfoy .Yer jus feedin em today .Now yehll wan ter try em on a few diffrent things Ive never had em before not sure what theyll go fer I got ant eggs an frog livers an a bit o grass snake just try em out with a bit of each .First pus and now this muttered Seamus .Nothing but deep affection for Hagrid could have made Harry Ron and Hermione pick up squelchy handfuls of frog liver and lower them into the crates to tempt the BlastEnded Skrewts .Harry couldnt suppress the suspicion that the whole thing was entirely pointless because the skrewts didnt seem to have mouths .Ouch yelled Dean Thomas after about ten minutes .It got me !Hagrid hurried over to him looking anxious .Its end exploded !said Dean angrily showing Hagrid a burn on his hand .Ah yeah that can happen when they blast off said Hagrid nodding .Eurgh !said Lavender Brown again .Eurgh Hagrid whats that pointy thing on it ?Ah some of em have got stings said Hagrid enthusiastically Lavender quickly withdrew her hand from the box .I reckon theyre the males .The females Ve got sorta sucker things on their bellies .I think they might be ter suck blood .Well I can certainly see why were trying to keep them alive said Malfoy sarcastically .Who wouldnt want pets that can burn sting and bite all at once ?Just because theyre not very pretty it doesnt mean theyre not useful Hermione snapped .Dragon bloods amazingly magical but you wouldnt want a dragon for a pet would you ?Harry and Ron grinned at Hagrid who gave them a furtive smile from behind his bushy beard .Hagrid would have liked nothing better than a pet dragon as Harry Ron and Hermione knew only too well he had owned one for a brief period during their first year a vicious Norwegian Ridgeback by the name of Norbert .Hagrid simply loved monstrous creatures the more lethal the better .Well at least the skrewts are small said Ron as they made their way back up to the castle for lunch an hour later .They are now said Hermione in an exasperated voice but once Hagrids found out what they eat I expect theyll be six feet long .Well that wont matter if they turn out to cure seasickness or something will it ?said Ron grinning slyly at her .You know perfectly well I only said that to shut Malfoy up said Hermione .As a matter of fact I think hes right .The best thing to do would be to stamp on the lot of them before they start attacking us all .They sat down at the Gryffindor table and helped themselves to lamb chops and potatoes .Hermione began to eat so fast that Harry and Ron stared at her .Er is this the new stand on elf rights ?said Ron .Youre going to make yourself puke instead ?No said Hermione with as much dignity as she could muster with her mouth bulging with sprouts .I just want to get to the library .What ?said Ron in disbelief .Hermione its the first day back !We havent even got homework yet !Hermione shrugged and continued to shovel down her food as though she had not eaten for days .Then she leapt to her feet said See you at dinner !and departed at high speed .When the bell rang to signal the start of afternoon lessons Harry and Ron set off for North Tower where at the top of a tightly spiraling staircase a silver stepladder led to a circular trapdoor in the ceiling and the room where Professor Trelawney lived .The familiar sweet perfume spreading from the fire met their nostrils as they emerged at the top of the stepladder .As ever the curtains were all closed the circular room was bathed in a dim reddish light cast by the many lamps which were all draped with scarves and shawls .Harry and Ron walked through the mass of occupied chintz chairs and poufs that cluttered the room and sat down at the same small circular table .Good day said the misty voice of Professor Trelawney right behind Harry making him jump .A very thin woman with enormous glasses that made her eyes appear far too large for her face Professor Trelawney was peering down at Harry with the tragic expression she always wore whenever she saw him .The usual large amount of beads chains and bangles glittered upon her person in the firelight .You are preoccupied my dear she said mournfully to Harry .My inner eye sees past your brave face to the troubled soul within .And I regret to say that your worries are not baseless .I see difficult times ahead for you alas .most difficult .I fear the thing you dread will indeed come to pass .and perhaps sooner than you think .Her voice dropped almost to a whisper .Ron rolled his eyes at Harry who looked stonily back .Professor Trelawney swept past them and seated herself in a large winged armchair before the fire facing the class .Lavender Brown and Parvati Patil who deeply admired Professor Trelawney were sitting on poufs very close to her .My dears it is time for us to consider the stars she said .The movements of the planets and the mysterious portents they reveal only to those who understand the steps of the celestial dance .Human destiny may be deciphered by the planetary rays which intermingle .But Harrys thoughts had drifted .The perfumed fire always made him feel sleepy and dullwitted and Professor Trelawneys rambling talks on fortune telling never held him exactly spellbound though he couldnt help thinking about what she had just said to him . ‘I fear the thing you dread will indeed come to pass .But Hermione was right Harry thought irritably Professor Trelawney really was an old fraud .He wasnt dreading anything at the moment at all .well unless you counted his fears that Sirius had been caught .but what did Professor Trelawney know ?He had long since come to the conclusion that her brand of fortunetelling was really no more than lucky guesswork and a spooky manner .Except of course for that time at the end of last term when she had made the prediction about Voldemort rising again .and Dumbledore himself had said that he thought that trance had been genuine when Harry had described it to him .Harry Ron muttered .What ?Harry looked around the whole class was staring at him .He sat up straight he had been almost dozing off lost in the heat and his thoughts .I was saying my dear that you were clearly born under the baleful influence of Saturn said Professor Trelawney a faint note of resentment in her voice at the fact that he had obviously not been hanging on her words .Born under what sorry ?said Harry .Saturn dear the planet Saturn !said Professor Trelawney sounding definitely irritated that he wasnt riveted by this news .I was saying that Saturn was surely in a position of power in the heavens at the moment of your birth .Your dark hair .your mean stature .tragic losses so young in life .I think I am right in saying my dear that you were born in midwinter ?No said Harry I was born in July .Ron hastily turned his laugh into a hacking cough .Half an hour later each of them had been given a complicated circular chart and was attempting to fill in the position of the planets at their moment of birth .It was dull work requiring much consultation of timetables and calculation of angles .Ive got two Neptunes here said Harry after a while frowning down at his piece of parchment that cant be right can it ?aah said Ron imitating Professor Trelawneys mystical whisper when two Neptunes appear in the sky it is a sure sign that a midget in glasses is being born Harry .Seamus and Dean who were working nearby sniggered loudly though not loudly enough to mask the excited squeals from Lavender Brown Oh Professor look !I think Ive got an unaspected planet !Oooh which ones that Professor ?It is Uranus my dear said Professor Trelawney peering down at the chart .Can I have a look at Uranus too Lavender ?said Ron .Most unfortunately Professor Trelawney heard him and it was this perhaps that made her give them so much homework at the end of the class .A detailed analysis of the way the planetary movements in the coming month will affect you with reference to your personal chart she snapped sounding much more like Professor McGonagall than her usual airyfairy self .I want it ready to hand in next Monday and no excuses !Miserable old bat said Ron bitterly as they joined the crowds descending the staircases back to the Great Hall and dinner .Thatll take all weekend that will .Lots of homework ?said Hermione brightly catching up with them .Professor Vector didnt give us any at all !Well bully for Professor Vector said Ron moodily .They reached the entrance hall which was packed with people queuing for dinner .They had just joined the end of the line when a loud voice rang out behind them .Weasley !Hey Weasley !Harry Ron and Hermione turned .Malfoy Crabbe and Goyle were standing there each looking thoroughly pleased about something .What ?said Ron shortly .Your dads in the paper Weasley !said Malfoy brandishing a copy of the Daily Prophet and speaking very loudly so that everyone in the packed entrance hall could hear .Listen to this !FURTHER MISTAKES AT THE MINISTRY OF MAGIC It seems as though the Ministry of Magics troubles are not yet at an end writes Rita Skeeter Special Correspondent .Recently under fire for its poor crowd control at the Quidditch World Cup and still unable to account for the disappearance of one of its witches the Ministry was plunged into fresh embarrassment yesterday by the antics of Arnold Weasley of the Misuse of Muggle Artifacts Office .Malfoy looked up .Imagine them not even getting his name right Weasley .Its almost as though hes a complete nonentity isnt it ?he crowed .Everyone in the entrance hall was listening now .Malfoy straightened the paper with a flourish and read on Arnold Weasley who was charged with possession of a flying car two years ago was yesterday involved in a tussle with several Muggle lawkeepers policemen over a number of highly aggressive dustbins .Mr Weasley appears to have rushed to the aid of Mad Eye Moody the aged exAuror who retired from the Ministry when no longer able to tell the difference between a handshake and attempted murder .Unsurprisingly Mr Weasley found upon arrival at Mr Moody s heavily guarded house that Mr Moody had once again raised a false alarm .Mr Weasley was forced to modify several memories before he could escape from the policemen but refused to answer Daily Prophet questions about why he had involved the Ministry in such an undignified and potentially embarrassing scene .And theres a picture Weasley !said Malfoy flipping the paper over and holding it up .A picture of your parents outside their house if you can call it a house !Your mother could do with losing a bit of weight couldnt she ?Ron was shaking with fury .Everyone was staring at him .Get stuffed Malfoy said Harry .Cmon Ron .Oh yeah you were staying with them this summer werent you Potter ?sneered Malfoy .So tell me is his mother really that porky or is it just the picture ?You know your mother Malfoy ?said Harry both he and Hermione had grabbed the back of Rons robes to stop him from launching himself at Malfoy that expression shes got like shes got dung under her nose ?Has she always looked like that or was it just because you were with her ?Malfoys pale face went slightly pink .Dont you dare insult my mother Potter .Keep your fat mouth shut then said Harry turning away .BANG !Several people screamed Harry felt something whitehot graze the side of his face he plunged his hand into his robes for his wand but before hed even touched it he heard a second loud BANG and a roar that echoed through the entrance hall .OH NO YOU DONT LADDIE !Harry spun around .Professor Moody was limping down the marble staircase .His wand was out and it was pointing right at a pure white ferret which was shivering on the stoneflagged floor exactly where Malfoy had been standing .There was a terrified silence in the entrance hall .Nobody but Moody was moving a muscle .Moody turned to look at Harry at least his normal eye was looking at Harry the other one was pointing into the back of his head .Did he get you ?Moody growled .His voice was low and gravelly .No said Harry missed .LEAVE IT !Moody shouted .Leave what ?Harry said bewildered .Not you him !Moody growled jerking his thumb over his shoulder at Crabbe who had just frozen about to pick up the white ferret .It seemed that Moodys rolling eye was magical and could see out of the back of his head .Moody started to limp toward Crabbe Goyle and the ferret which gave a terrified squeak and took off streaking toward the dungeons .I dont think so !roared Moody pointing his wand at the ferret again it flew ten feet into the air fell with a smack to the floor and then bounced upward once more .I dont like people who attack when their opponents backs turned growled Moody as the ferret bounced higher and higher squealing in pain .Stinking cowardly scummy thing to do .The ferret flew through the air its legs and tail flailing helplessly .Never do that again said Moody speaking each word as the ferret hit the stone floor and bounced upward again .Professor Moody !said a shocked voice .Professor McGonagall was coming down the marble staircase with her arms full of books .Hello Professor McGonagall said Moody calmly bouncing the ferret still higher .What what are you doing ?said Professor McGonagall her eyes following the bouncing ferrets progress through the air .Teaching said Moody .Teach Moody is that a student ?shrieked Professor McGonagall the books spilling out of her arms .Yep said Moody .No !cried Professor McGonagall running down the stairs and pulling out her wand a moment later with a loud snapping noise Draco Malfoy had reappeared lying in a heap on the floor with his sleek blond hair all over his now brilliantly pink face .He got to his feet wincing .Moody we never use Transfiguration as a punishment !said Professor McGonagall weakly .Surely Professor Dumbledore told you that ?He mightve mentioned it yeah said Moody scratching his chin unconcernedly but I thought a good sharp shock We give detentions Moody !Or speak to the offenders Head of House !Ill do that then said Moody staring at Malfoy with great dislike .Malfoy whose pale eyes were still watering with pain and humiliation looked malevolently up at Moody and muttered something in which the words my father were distinguishable .Oh yeah ?said Moody quietly limping forward a few steps the dull clunk of his wooden leg echoing around the hall .Well I know your father of old boy .You tell him Moodys keeping a close eye on his son .you tell him that from me .Now your Head of Housell be Snape will it ?Yes said Malfoy resentfully .Another old friend growled Moody .Ive been looking forward to a chat with old Snape .Come on you .And he seized Malfoys upper arm and marched him off toward the dungeons .Professor McGonagall stared anxiously after them for a few moments then waved her wand at her fallen books causing them to soar up into the air and back into her arms .Dont talk to me Ron said quietly to Harry and Hermione as they sat down at the Gryffindor table a few minutes later surrounded by excited talk on all sides about what had just happened .Why not ?said Hermione in surprise .Because I want to fix that in my memory forever said Ron his eyes closed and an uplifted expression on his face .Draco Malfoy the amazing bouncing ferret .Harry and Hermione both laughed and Hermione began doling beef casserole onto each of their plates .He could have really hurt Malfoy though she said .It was good really that Professor McGonagall stopped it Hermione !said Ron furiously his eyes snapping open again youre ruining the best moment of my life !Hermione made an impatient noise and began to eat at top speed again .Dont tell me youre going back to the library this evening ?said Harry watching her .Got to said Hermione thickly .Loads to do .But you told us Professor Vector Its not schoolwork she said .Within five minutes she had cleared her plate and departed .No sooner had she gone than her seat was taken by Fred Weasley .Moody !he said .How cool is he ?Beyond cool said George sitting down opposite Fred .Supercool said the twins best friend Lee Jordan sliding into the seat beside George .We had him this afternoon he told Harry and Ron .What was it like ?said Harry eagerly .Fred George and Lee exchanged looks full of meaning .Never had a lesson like it said Fred .He knows man said Lee .Knows what ?said Ron leaning forward .Knows what its like to be out there doing it said George impressively .Doing what ?said Harry .Fighting the Dark Arts said Fred .Hes seen it all said George .Mazing said Lee .Ron dived into his bag for his schedule .We havent got him till Thursday !he said in a disappointed voice .THE UNFORGIVABLE CURSES The next two days passed without great incident unless you counted Neville melting his sixth cauldron in Potions .Professor Snape who seemed to have attained new levels of vindictiveness over the summer gave Neville detention and Neville returned from it in a state of nervous collapse having been made to disembowel a barrel full of horned toads .You know why Snape s in such a foul mood dont you ?said Ron to Harry as they watched Hermione teaching Neville a Scouring Charm to remove the frog guts from under his fingernails .Yeah said Harry .Moody .It was common knowledge that Snape really wanted the Dark Arts job and he had now failed to get it for the fourth year running .Snape had disliked all of their previous Dark Arts teachers and shown it but he seemed strangely wary of displaying overt animosity to MadEye Moody .Indeed whenever Harry saw the two of them together at mealtimes or when they passed in the corridors he had the distinct impression that Snape was avoiding Moodys eye whether magical or normal .I reckon Snapes a bit scared of him you know Harry said thoughtfully .Imagine if Moody turned Snape into a horned toad said Ron his eyes misting over and bounced him all around his dungeon .The Gryffindor fourth years were looking forward to Moodys first lesson so much that they arrived early on Thursday lunchtime and queued up outside his classroom before the bell had even rung .The only person missing was Hermione who turned up just in time for the lesson .Been in the Library .Harry finished her sentence for her .Cmon quick or we wont get decent seats .They hurried into three chairs right in front of the teachers desk took out their copies of The Dark Forces A Guide to SelfProtection and waited unusually quiet .Soon they heard Moodys distinctive clunking footsteps coming down the corridor and he entered the room looking as strange and frightening as ever .They could just see his clawed wooden foot protruding from underneath his robes .You can put those away he growled stumping over to his desk and sitting down those books .You wont need them .They returned the books to their bags Ron looking excited .Moody took out a register shook his long mane of grizzled gray hair out of his twisted and scarred face and began to call out names his normal eye moving steadily down the list while his magical eye swiveled around fixing upon each student as he or she answered .Right then he said when the last person had declared themselves present Ive had a letter from Professor Lupin about this class .Seems youve had a pretty thorough grounding in tackling Dark creatures youve covered boggarts Red Caps hinkypunks grindylows Kappas and werewolves is that right ?There was a general murmur of assent .But youre behind very behind on dealing with curses said Moody .So Im here to bring you up to scratch on what wizards can do to each other .Ive got one year to teach you how to deal with Dark What arent you staying ?Ron blurted out .Moodys magical eye spun around to stare at Ron Ron looked extremely apprehensive but after a moment Moody smiled the first time Harry had seen him do so .The effect was to make his heavily scarred face look more twisted and contorted than ever but it was nevertheless good to know that he ever did anything as friendly as smile .Ron looked deeply relieved .Youll be Arthur Weasleys son eh ?Moody said .Your father got me out of a very tight corner a few days ago .Yeah Im staying just the one year .Special favor to Dumbledore .One year and then back to my quiet retirement .He gave a harsh laugh and then clapped his gnarled hands together .So straight into it .Curses .They come in many strengths and forms .Now according to the Ministry of Magic Im supposed to teach you countercurses and leave it at that .Im not supposed to show you what illegal Dark curses look like until youre in the sixth year .Youre not supposed to be old enough to deal with it till then .But Professor Dumbledores got a higher opinion of your nerves he reckons you can cope and I say the sooner you know what youre up against the better .How are you supposed to defend yourself against something youve never seen ?A wizard whos about to put an illegal curse on you isnt going to tell you what hes about to do .Hes not going to do it nice and polite to your face .You need to be prepared .You need to be alert and watchful .You need to put that away Miss Brown when Im talking .Lavender jumped and blushed .She had been showing Parvati her completed horoscope under the desk .Apparently Moodys magical eye could see through solid wood as well as out of the back of his head .So .do any of you know which curses are most heavily punished by wizarding law ?Several hands rose tentatively into the air including Rons and Hermiones .Moody pointed at Ron though his magical eye was still fixed on Lavender .Er said Ron tentatively my dad told me about one . .Is it called the Imperius Curse or something ?Ah yes said Moody appreciatively .Your father would know that one .Gave the Ministry a lot of trouble at one time the Imperius Curse .Moody got heavily to his mismatched feet opened his desk drawer and took out a glass jar .Three large black spiders were scuttling around inside it .Harry felt Ron recoil slightly next to him Ron hated spiders .Moody reached into the jar caught one of the spiders and held it in the palm of his hand so that they could all see it .He then pointed his wand at it and muttered Imperio The spider leapt from Moodys hand on a fine thread of silk and began to swing backward and forward as though on a trapeze .It stretched out its legs rigidly then did a back flip breaking the thread and landing on the desk where it began to cartwheel in circles .Moody jerked his wand and the spider rose onto two of its hind legs and went into what was unmistakably a tap dance .Everyone was laughing everyone except Moody .Think its funny do you ?he growled .Youd like it would you if I did it to you ?The laughter died away almost instantly .Total control said Moody quietly as the spider balled itself up and began to roll over and over .I could make it jump out of the window drown itself throw itself down one of your throats .Ron gave an involuntary shudder .Years back there were a lot of witches and wizards being controlled by the Imperius Curse said Moody and Harry knew he was talking about the days in which Voldemort had been allpowerful .Some job for the Ministry trying to sort out who was being forced to act and who was acting of their own free will .The Imperius Curse can be fought and Ill be teaching you how but it takes real strength of character and not everyones got it .Better avoid being hit with it if you can .CONSTANT VIGILANCE !he barked and everyone jumped .Moody picked up the somersaulting spider and threw it back into the jar .Anyone else know one ?Another illegal curse ?Hermiones hand flew into the air again and so to Harrys slight surprise did Nevilles .The only class in which Neville usually volunteered information was Herbology which was easily his best subject .Neville looked surprised at his own daring .Yes ?said Moody his magical eye rolling right over to fix on Neville .Theres one the Cruciatus Curse said Neville in a small but distinct voice .Moody was looking very intently at Neville this time with both eyes .Your names Longbottom ?he said his magical eye swooping down to check the register again .Neville nodded nervously but Moody made no further inquiries .Turning back to the class at large he reached into the jar for the next spider and placed it upon the desktop where it remained motionless apparently too scared to move .The Cruciatus Curse said Moody .Needs to be a bit bigger for you to get the idea he said pointing his wand at the spider .Engorgio The spider swelled .It was now larger than a tarantula .Abandoning all pretense Ron pushed his chair backward as far away from Moodys desk as possible .Moody raised his wand again pointed it at the spider and muttered CrucioV At once the spiders legs bent in upon its body it rolled over and began to twitch horribly rocking from side to side .No sound came from it but Harry was sure that if it could have given voice it would have been screaming .Moody did not remove his wand and the spider started to shudder and jerk more violently Stop it !Hermione said shrilly .Harry looked around at her .She was looking not at the spider but at Neville and Harry following her gaze saw that Nevilles hands were clenched upon the desk in front of him his knuckles white his eyes wide and horrified .Moody raised his wand .The spiders legs relaxed but it continued to twitch .Reducio Moody muttered and the spider shrank back to its proper size .He put it back into the jar .Pain said Moody softly .You dont need thumbscrews or knives to torture someone if you can perform the Cruciatus Curse .That one was very popular once too .Right .anyone know any others ?Harry looked around .From the looks on everyones faces he guessed they were all wondering what was going to happen to the last spider .Hermiones hand shook slightly as for the third time she raised it into the air .Yes ?said Moody looking at her .Avada Kedavra Hermione whispered .Several people looked uneasily around at her including Ron .Ah said Moody another slight smile twisting his lopsided mouth .Yes the last and worst .Avada Kedavra .the Killing Curse .He put his hand into the glass jar and almost as though it knew what was coming the third spider scuttled frantically around the bottom of the jar trying to evade Moodys fingers but he trapped it and placed it upon the desktop .It started to scuttle frantically across the wooden surface .Moody raised his wand and Harry felt a sudden thrill of foreboding .Avada Kedavral Moody roared .There was a flash of blinding green light and a rushing sound as though a vast invisible something was soaring through the air instantaneously the spider rolled over onto its back unmarked but unmistakably dead .Several of the students stifled cries Ron had thrown himself backward and almost toppled off his seat as the spider skidded toward him .Moody swept the dead spider off the desk onto the floor .Not nice he said calmly .Not pleasant .And theres no countercurse .Theres no blocking it .Only one known person has ever survived it and hes sitting right in front of me .Harry felt his face redden as Moodys eyes both of them looked into his own .He could feel everyone else looking around at him too .Harry stared at the blank blackboard as though fascinated by it but not really seeing it at all .So that was how his parents had died .exactly like that spider .Had they been unblemished and unmarked too ?Had they simply seen the flash of green light and heard the rush of speeding death before life was wiped from their bodies ?Harry had been picturing his parents deaths over and over again for three years now ever since hed found out they had been murdered ever since hed found out what had happened that night Wormtail had betrayed his parents whereabouts to Voldemort who had come to find them at their cottage .How Voldemort had killed Harrys father first .How James Potter had tried to hold him off while he shouted at his wife to take Harry and run .Voldemort had advanced on Lily Potter told her to move aside so that he could kill Harry .how she had begged him to kill her instead refused to stop shielding her son .and so Voldemort had murdered her too before turning his wand on Harry .Harry knew these details because he had heard his parents voices when he had fought the dementors last year for that was the terrible power of the dementors to force their victims to relive the worst memories of their lives and drown powerless in their own despair .Moody was speaking again from a great distance it seemed to Harry .With a massive effort he pulled himself back to the present and listened to what Moody was saying .Avada Kedavras a curse that needs a powerful bit of magic behind it you could all get your wands out now and point them at me and say the words and I doubt Id get so much as a nosebleed .But that doesnt matter .Im not here to teach you how to do it .Now if theres no countercurse why am I showing you ?Because youve got to know .Youve got to appreciate what the worst is .You dont want to find yourself in a situation where youre facing it .CONSTANT VIGILANCE !he roared and the whole class jumped again .Now .those three curses Avada Kedavra Imperius and Cruciatus are known as the Unforgivable Curses .The use of any one of them on a fellow human being is enough to earn a life sentence in Azkaban .Thats what youre up against .Thats what Ive got to teach you to fight .You need preparing .You need arming .But most of all you need to practice constant neverceasing vigilance .Get out your quills .copy this down .They spent the rest of the lesson taking notes on each of the Unforgivable Curses .No one spoke until the bell rang but when Moody had dismissed them and they had left the classroom a torrent of talk burst forth .Most people were discussing the curses in awed voices Did you see it twitch ?and when he killed it just like that !They were talking about the lesson Harry thought as though it had been some sort of spectacular show but he hadnt found it very entertaining and nor it seemed had Hermione .Hurry up she said tensely to Harry and Ron .Not the ruddy library again ?said Ron .No said Hermione curtly pointing up a side passage .Neville .Neville was standing alone halfway up the passage staring at the stone wall opposite him with the same horrified wideeyed look he had worn when Moody had demonstrated the Cruciatus Curse .Neville ?Hermione said gently .Neville looked around .Oh hello he said his voice much higher than usual .Interesting lesson wasnt it ?I wonder whats for dinner Im Im starving arent you ?Neville are you all right ?said Hermione .Oh yes Im fine Neville gabbled in the same unnaturally high voice .Very interesting dinner I mean lesson whats for eating ?Ron gave Harry a startled look .Neville what ?But an odd clunking noise sounded behind them and they turned to see Professor Moody limping toward them .All four of them fell silent watching him apprehensively but when he spoke it was in a much lower and gentler growl than they had yet heard .Its all right sonny he said to Neville .Why dont you come up to my office ?Come on .we can have a cup of tea .Neville looked even more frightened at the prospect of tea with Moody .He neither moved nor spoke .Moody turned his magical eye upon Harry .You all right are you Potter ?Yes said Harry almost defiantly .Moodys blue eye quivered slightly in its socket as it surveyed Harry .Then he said Youve got to know .It seems harsh maybe but youve got to know .No point pretending .well .come on Longbottom Ive got some books that might interest you .Neville looked pleadingly at Harry Ron and Hermione but they didnt say anything so Neville had no choice but to allow himself to be steered away one of Moodys gnarled hands on his shoulder .What was that about ?said Ron watching Neville and Moody turn the corner .I dont know said Hermione looking pensive .Some lesson though eh ?said Ron to Harry as they set off for the Great Hall .Fred and George were right werent they ?He really knows his stuff Moody doesnt he ?When he did Avada Kedavra the way that spider just died just snuffed it right But Ron fell suddenly silent at the look on Harrys face and didnt speak again until they reached the Great Hall when he said he supposed they had better make a start on Professor Trelawneys predictions tonight since they would take hours .Hermione did not join in with Harry and Rons conversation during dinner but ate furiously fast and then left for the library again .Harry and Ron walked back to Gryffindor Tower and Harry who had been thinking of nothing else all through dinner now raised the subject of the Unforgivable Curses himself .Wouldnt Moody and Dumbledore be in trouble with the Ministry if they knew wed seen the curses ?Harry asked as they approached the Fat Lady .Yeah probably said Ron .But Dumbledores always done things his way hasnt he and Moodys been getting in trouble for years I reckon .Attacks first and asks questions later look at his dustbins .Balderdash .The Fat Lady swung forward to reveal the entrance hole and they climbed into the Gryffindor common room which was crowded and noisy .Shall we get our Divination stuff then ?said Harry .I spose Ron groaned .They went up to the dormitory to fetch their books and charts to find Neville there alone sitting on his bed reading .He looked a good deal calmer than at the end of Moodys lesson though still not entirely normal .His eyes were rather red .You all right Neville ?Harry asked him .Oh yes said Neville Im fine thanks .Just reading this book Professor Moody lent me .He held up the book Magical Water Plants of the Mediterranean .Apparently Professor Sprout told Professor Moody Im really good at Herbology Neville said .There was a faint note of pride in his voice that Harry had rarely heard there before .He thought Id like this .Telling Neville what Professor Sprout had said Harry thought had been a very tactful way of cheering Neville up for Neville very rarely heard that he was good at anything .It was the sort of thing Professor Lupin would have done .Harry and Ron took their copies of Unfogging the Future back down to the common room found a table and set to work on their predictions for the coming month .An hour later they had made very little progress though their table was littered with bits of parchment bearing sums and symbols and Harrys brain was as fogged as though it had been filled with the fumes from Professor Trelawneys fire .I havent got a clue what this lots supposed to mean he said staring down at a long list of calculations .You know said Ron whose hair was on end because of all the times he had run his fingers through it in frustration I think its back to the old Divination standby .What make it up ?Yeah said Ron sweeping the jumble of scrawled notes off the table dipping his pen into some ink and starting to write .Next Monday he said as he scribbled I am likely to develop a cough owing to the unlucky conjunction of Mars and Jupiter .He looked up at Harry .You know her just put in loads of misery shell lap it up .Right said Harry crumpling up his first attempt and lobbing it over the heads of a group of chattering first years into the fire .Okay .on Monday will be in danger of er burns .Yeah you will be said Ron darkly were seeing the skrewts again on Monday .Okay Tuesday Ill .erm Lose a treasured possession said Harry who was flicking through Unfogging the Future for ideas .Good one said Ron copying it down .Because of .erm .Mercury .Why dont you get stabbed in the back by someone you thought was a friend ?Yeah .cool .said Harry scribbling it down because .Venus is in the twelfth house .And on Wednesday I think Ill come off worst in a fight .aah I was going to have a fight .Okay Ill lose a bet .Yeah youll be betting Ill win my fight .They continued to make up predictions which grew steadily more tragic for another hour while the common room around them slowly emptied as people went up to bed .Crookshanks wandered over to them leapt lightly into an empty chair and stared inscrutably at Harry rather as Hermione might look if she knew they werent doing their homework properly .Staring around the room trying to think of a kind of misfortune he hadnt yet used Harry saw Fred and George sitting together against the opposite wall heads together quills out poring over a single piece of parchment .It was most unusual to see Fred and George hidden away in a corner and working silently they usually liked to be in the thick of things and the noisy center of attention .There was something secretive about the way they were working on the piece of parchment and Harry was reminded of how they had sat together writing something back at the Burrow .He had thought then that it was another order form for Weasleys Wizard Wheezes but it didnt look like that this time if it had been they would surely have let Lee Jordan in on the joke .He wondered whether it had anything to do with entering the Triwizard Tournament .As Harry watched George shook his head at Fred scratched out something with his quill and said in a very quiet voice that nevertheless carried across the almost deserted room No that sounds like were accusing him .Got to be careful .Then George looked over and saw Harry watching him .Harry grinned and quickly returned to his predictions he didnt want George to think he was eavesdropping .Shortly after that the twins rolled up their parchment said good night and went off to bed .Fred and George had been gone ten minutes or so when the portrait hole opened and Hermione climbed into the common room carrying a sheaf of parchment in one hand and a box whose contents rattled as she walked in the other .Crookshanks arched his back purring .Hello she said Ive just finished !So have I !said Ron triumphantly throwing down his quill .Hermione sat down laid the things she was carrying in an empty armchair and pulled Rons predictions toward her .Not going to have a very good month are you ?she said sardonically as Crookshanks curled up in her lap .Ah well at least Im forewarned Ron yawned .You seem to be drowning twice said Hermione .Oh am I ?said Ron peering down at his predictions .Id better change one of them to getting trampled by a rampaging hippogriff .Dont you think its a bit obvious youve made these up ?said Hermione .How dare you !said Ron in mock outrage .Weve been working like houseelves here !Hermione raised her eyebrows .Its just an expression said Ron hastily .Harry laid down his quill too having just finished predicting his own death by decapitation .Whats in the box ?he asked pointing at it .Funny you should ask said Hermione with a nasty look at Ron .She took off the lid and showed them the contents .Inside were about fifty badges all of different colors but all bearing the same letters S .P .E .W . ‘Spew ?said Harry picking up a badge and looking at it .Whats this about ?Not spew said Hermione impatiently .Its SPEW .Stands for the Society for the Promotion of Elfish Welfare .Never heard of it said Ron .Well of course you havent said Hermione briskly Ive only just started it .Yeah ?said Ron in mild surprise .How many members have you got ?Well if you two join three said Hermione .And you think we want to walk around wearing badges saying ‘spew do you ?said Ron .SPEW !said Hermione hotly .I was going to put Stop the Outrageous Abuse of Our Fellow Magical Creatures and Campaign for a Change in Their Legal Status but it wouldnt fit .So thats the heading of our manifesto .She brandished the sheaf of parchment at them .Ive been researching it thoroughly in the library .Elf enslavement goes back centuries .I cant believe no ones done anything about it before now .Hermione open your ears said Ron loudly .They .Like .It .They like being enslaved !Our shortterm aims said Hermione speaking even more loudly than Ron and acting as though she hadnt heard a word are to secure houseelves fair wages and working conditions .Our longterm aims include changing the law about nonwand use and trying to get an elf into the Department for the Regulation and Control of Magical Creatures because theyre shockingly underrepresented .And how do we do all this ?Harry asked .We start by recruiting members said Hermione happily .I thought two Sickles to join that buys a badge and the proceeds can fund our leaflet campaign .Youre treasurer Ron Ive got you a collecting tin upstairs and Harry youre secretary so you might want to write down everything Im saying now as a record of our first meeting .There was a pause in which Hermione beamed at the pair of them and Harry sat torn between exasperation at Hermione and amusement at the look on Rons face .The silence was broken not by Ron who in any case looked as though he was temporarily dumbstruck but by a soft tap tap on the window .Harry looked across the now empty common room and saw illuminated by the moonlight a snowy owl perched on the windowsill .Hedwig !he shouted and he launched himself out of his chair and across the room to pull open the window .Hedwig flew inside soared across the room and landed on the table on top of Harrys predictions .About time !said Harry hurrying after her .Shes got an answer !said Ron excitedly pointing at the grubby piece of parchment tied to Hedwigs leg .Harry hastily untied it and sat down to read whereupon Hedwig fluttered onto his knee hooting softly .What does it say ?Hermione asked breathlessly .The letter was very short and looked as though it had been scrawled in a great hurry .Harry read it aloud Harry Im flying north immediately .This news about your scar is the latest in a series of strange rumors that have reached me here .If it hurts again go straight to Dumbledore theyre saying hes got MadEye out of retirement which means hes reading the signs even if no one else is .Ill be in touch soon .My best to Ron and Hermione .Keep your eyes open Harry .Sirius Harry looked up at Ron and Hermione who stared back at him .Hes flying north ?Hermione whispered .Hes coming back ?Dumbledores reading what signs ?said Ron looking perplexed .Harry whats up ?For Harry had just hit himself in the forehead with his fist jolting Hedwig out of his lap .I shouldntve told him !Harry said furiously .What are you on about ?said Ron in surprise .Its made him think hes got to come back !said Harry now slamming his fist on the table so that Hedwig landed on the back of Rons chair hooting indignantly .Coming back because he thinks Im in trouble !And theres nothing wrong with me !And I havent got anything for you Harry snapped at Hedwig who was clicking her beak expectantly youll have to go up to the Owlery if you want food .Hedwig gave him an extremely offended look and took off for the open window cuffing him around the head with her outstretched wing as she went .Harry Hermione began in a pacifying sort of voice .Im going to bed said Harry shortly .See you in the morning .Upstairs in the dormitory he pulled on his pajamas and got into his fourposter but he didnt feel remotely tired .If Sirius came back and got caught it would be his Harrys fault .Why hadnt he kept his mouth shut ?A few seconds pain and hed had to blab .If hed just had the sense to keep it to himself .He heard Ron come up into the dormitory a short while later but did not speak to him .For a long time Harry lay staring up at the dark canopy of his bed .The dormitory was completely silent and had he been less preoccupied Harry would have realized that the absence of Nevilles usual snores meant that he was not the only one lying awake .BEAUXBATONS AND DRUMSTRANG Early next morning Harry woke with a plan fully formed in his mind as though his sleeping brain had been working on it all night .He got up dressed in the pale dawn light left the dormitory without waking Ron and went back down to the deserted common room .Here he took a piece of parchment from the table upon which his Divination homework still lay and wrote the following letter Dear Sirius I reckon I just imagined my scar hurting I was half asleep when I wrote to you last time .Theres no point coming back everythings fine here .Dont worry about me my head feels completely normal .Harry He then climbed out of the portrait hole up through the silent castle held up only briefly by Peeves who tried to overturn a large vase on him halfway along the fourthfloor corridor finally arriving at the Owlery which was situated at the top of West Tower .The Owlery was a circular stone room rather cold and drafty because none of the windows had glass in them .The floor was entirely covered in straw owl droppings and the regurgitated skeletons of mice and voles .Hundreds upon hundreds of owls of every breed imaginable were nestled here on perches that rose right up to the top of the tower nearly all of them asleep though here and there a round amber eye glared at Harry .He spotted Hedwig nestled between a barn owl and a tawny and hurried over to her sliding a little on the droppingstrewn floor .It took him a while to persuade her to wake up and then to look at him as she kept shuffling around on her perch showing him her tail .She was evidently still furious about his lack of gratitude the previous night .In the end it was Harry suggesting she might be too tired and that perhaps he would ask Ron to borrow Pigwidgeon that made her stick out her leg and allow him to tie the letter to it .Just find him all right ?Harry said stroking her back as he carried her on his arm to one of the holes in the wall .Before the dementors do .She nipped his finger perhaps rather harder than she would ordinarily have done but hooted softly in a reassuring sort of way all the same .Then she spread her wings and took off into the sunrise .Harry watched her fly out of sight with the familiar feeling of unease back in his stomach .He had been so sure that Siriuss reply would alleviate his worries rather than increasing them .That was a lie Harry said Hermione sharply over breakfast when he told her and Ron what he had done .You didnt imagine your scar hurting and you know it .So what ?said Harry .Hes not going back to Azkaban because of me .Drop it said Ron sharply to Hermione as she opened her mouth to argue some more and for once Hermione heeded him and fell silent .Harry did his best not to worry about Sirius over the next couple of weeks .True he could not stop himself from looking anxiously around every morning when the post owls arrived nor late at night before he went to sleep prevent himself from seeing horrible visions of Sirius cornered by dementors down some dark London street but betweentimes he tried to keep his mind off his godfather .He wished he still had Quidditch to distract him nothing worked so well on a troubled mind as a good hard training session .On the other hand their lessons were becoming more difficult and demanding than ever before particularly Moodys Defense Against the Dark Arts .To their surprise Professor Moody had announced that he would be putting the Imperius Curse on each of them in turn to demonstrate its power and to see whether they could resist its effects .But but you said its illegal Professor said Hermione uncertainly as Moody cleared away the desks with a sweep of his wand leaving a large clear space in the middle of the room .You said to use it against another human was Dumbledore wants you taught what it feels like said Moody his magical eye swiveling onto Hermione and fixing her with an eerie unblinking stare .If youd rather learn the hard way when someones putting it on you so they can control you completely fine by me .Youre excused .Off you go .He pointed one gnarled finger toward the door .Hermione went very pink and muttered something about not meaning that she wanted to leave .Harry and Ron grinned at each other .They knew Hermione would rather eat bubotuber pus than miss such an important lesson .Moody began to beckon students forward in turn and put the Imperius Curse upon them .Harry watched as one by one his classmates did the most extraordinary things under its influence .Dean Thomas hopped three times around the room singing the national anthem .Lavender Brown imitated a squirrel .Neville performed a series of quite astonishing gymnastics he would certainly not have been capable of in his normal state .Not one of them seemed to be able to fight off the curse and each of them recovered only when Moody had removed it .Potter Moody growled you next .Harry moved forward into the middle of the classroom into the space that Moody had cleared of desks .Moody raised his wand pointed it at Harry and said Imperio It was the most wonderful feeling .Harry felt a floating sensation as every thought and worry in his head was wiped gently away leaving nothing but a vague untraceable happiness .He stood there feeling immensely relaxed only dimly aware of everyone watching him .And then he heard MadEye Moodys voice echoing in some distant chamber of his empty brain Jump onto the desk .jump onto the desk .Harry bent his knees obediently preparing to spring .Jump onto the desk .Why though ?Another voice had awoken in the back of his brain .Stupid thing to do really said the voice .Jump onto the desk .No I dont think I will thanks said the other voice a little more firmly .no I dont really want to .Jump NOW The next thing Harry felt was considerable pain .He had both jumped and tried to prevent himself from jumping the result was that hed smashed headlong into the desk knocking it over and by the feeling in his legs fractured both his kneecaps .Now thats more like it !growled Moodys voice and suddenly Harry felt the empty echoing feeling in his head disappear .He remembered exactly what was happening and the pain in his knees seemed to double .Look at that you lot .Potter fought !He fought it and he damn near beat it !Well try that again Potter and the rest of you pay attention watch his eyes thats where you see it very good Potter very good indeed !Theyll have trouble controlling you !The way he talks Harry muttered as he hobbled out of the Defense Against the Dark Arts class an hour later Moody had insisted on putting Harry through his paces four times in a row until Harry could throw off the curse entirely youd think we were all going to be attacked any second .Yeah I know said Ron who was skipping on every alternate step .He had had much more difficulty with the curse than Harry though Moody assured him the effects would wear off by lunchtime .Talk about paranoid .Ron glanced nervously over his shoulder to check that Moody was definitely out of earshot and went on .No wonder they were glad to get shot of him at the Ministry .Did you hear him telling Seamus what he did to that witch who shouted ‘Boo behind him on April Fools Day ?And when are we supposed to read up on resisting the Imperius Curse with everything else weve got to do ?All the fourth years had noticed a definite increase in the amount of work they were required to do this term .Professor McGonagall explained why when the class gave a particularly loud groan at the amount of Transfiguration homework she had assigned .You are now entering a most important phase of your magical education !she told them her eyes glinting dangerously behind her square spectacles .Your Ordinary Wizarding Levels are drawing closer We dont take O .W .L .s till fifth year !said Dean Thomas indignantly .Maybe not Thomas but believe me you need all the preparation you can get !Miss Granger remains the only person in this class who has managed to turn a hedgehog into a satisfactory pincushion .I might remind you that your pincushion Thomas still curls up in fright if anyone approaches it with a pin !Hermione who had turned rather pink again seemed to be trying not to look too pleased with herself .Harry and Ron were deeply amused when Professor Trelawney told them that they had received top marks for their homework in their next Divination class .She read out large portions of their predictions commending them for their unflinching acceptance of the horrors in store for them but they were less amused when she asked them to do the same thing for the month after next both of them were running out of ideas for catastrophes .Meanwhile Professor Binns the ghost who taught History of Magic had them writing weekly essays on the goblin rebellions of the eighteenth century .Professor Snape was forcing them to research antidotes .They took this one seriously as he had hinted that he might be poisoning one of them before Christmas to see if their antidote worked .Professor Flitwick had asked them to read three extra books in preparation for their lesson on Summoning Charms .Even Hagrid was adding to their workload .The Blast Ended Skrewts were growing at a remarkable pace given that nobody had yet discovered what they ate .Hagrid was delighted and as part of their project suggested that they come down to his hut on alternate evenings to observe the skrewts and make notes on their extraordinary behavior .I will not said Draco Malfoy flatly when Hagrid had proposed this with the air of Father Christmas pulling an extra large toy out of his sack .I see enough of these foul things during lessons thanks .Hagrid s smile faded off his face .Yehll do whayer told he growled or Ill be takin a leaf outta Professor Moodys book .I hear yeh made a good ferret Malfoy .The Gryffindors roared with laughter .Malfoy flushed with anger but apparently the memory of Moodys punishment was still sufficiently painful to stop him from retorting .Harry Ron and Hermione returned to the castle at the end of the lesson in high spirits seeing Hagrid put down Malfoy was particularly satisfying especially because Malfoy had done his very best to get Hagrid sacked the previous year .When they arrived in the entrance hall they found themselves unable to proceed owing to the large crowd of students congregated there all milling around a large sign that had been erected at the foot of the marble staircase .Ron the tallest of the three stood on tiptoe to see over the heads in front of them and read the sign aloud to the other two TRIWIZARD TOURNAMENT The delegations from Beauxbatons and Durmstrang will be arriving at 6 oclock on Friday the 30th of October .Lessons will end half an hour early Brilliant !said Harry .Its Potions last thing on Friday !Snape wont have time to poison us all !Students will return their bags and books to their dormitories and assemble in front of the castle to greet our guests before the Welcoming Feast .Only a week away !said Ernie Macmillan of Hufflepuff emerging from the crowd his eyes gleaming .I wonder if Cedric knows ?Think 111 go and tell him .Cedric ?said Ron blankly as Ernie hurried off .Diggory said Harry .He must be entering the tournament .That idiot Hogwarts champion ?said Ron as they pushed their way through the chattering crowd toward the staircase .Hes not an idiot .You just dont like him because he beat Gryffindor at Quidditch said Hermione .Ive heard hes a really good student and hes a prefect .She spoke as though this settled the matter .You only like him because hes handsome said Ron scathingly .Excuse me I dont like people just because theyre handsome !said Hermione indignantly .Ron gave a loud false cough which sounded oddly like Lockhart The appearance of the sign in the entrance hall had a marked effect upon the inhabitants of the castle .During the following week there seemed to be only one topic of conversation no matter where Harry went the Triwizard Tournament .Rumors were flying from student to student like highly contagious germs who was going to try for Hogwarts champion what the tournament would involve how the students from Beauxbatons and Durmstrang differed from themselves .Harry noticed too that the castle seemed to be undergoing an extrathorough cleaning .Several grimy portraits had been scrubbed much to the displeasure of their subjects who sat huddled in their frames muttering darkly and wincing as they felt their raw pink faces .The suits of armor were suddenly gleaming and moving without squeaking and Argus Filch the caretaker was behaving so ferociously to any students who forgot to wipe their shoes that he terrified a pair of firstyear girls into hysterics .Other members of the staff seemed oddly tense too .Longbottom kindly do not reveal that you cant even perform a simple Switching Spell in front of anyone from Durmstrang !Professor McGonagall barked at the end of one particularly difficult lesson during which Neville had accidentally transplanted his own ears onto a cactus .When they went down to breakfast on the morning of the thirtieth of October they found that the Great Hall had been decorated overnight .Enormous silk banners hung from the walls each of them representing a Hogwarts House red with a gold lion for Gryffindor blue with a bronze eagle for Ravenclaw yellow with a black badger for Hufflepuff and green with a silver serpent for Slytherin .Behind the teachers table the largest banner of all bore the Hogwarts coat of arms lion eagle badger and snake united around a large letter H .Harry Ron and Hermione sat down beside Fred and George at the Gryffindor table .Once again and most unusually they were sitting apart from everyone else and conversing in low voices .Ron led the way over to them .Its a bummer all right George was saying gloomily to Fred .But if he wont talk to us in person well have to send him the letter after all .Or well stuff it into his hand .He cant avoid us forever .Whos avoiding you ?said Ron sitting down next to them .Wish you would said Fred looking irritated at the interruption .Whats a bummer ?Ron asked George .Having a nosy git like you for a brother said George .You two got any ideas on the Triwizard Tournament yet ?Harry asked .Thought any more about trying to enter ?I asked McGonagall how the champions are chosen but she wasnt telling said George bitterly .She just told me to shut up and get on with transfiguring my raccoon .Wonder what the tasks are going to be ?said Ron thoughtfully .You know I bet we could do them Harry .Weve done dangerous stuff before .Not in front of a panel of judges you havent said Fred .McGonagall says the champions get awarded points according to how well theyve done the tasks .Who are the judges ?Harry asked .Well the Heads of the participating schools are always on the panel said Hermione and everyone looked around at her rather surprised because all three of them were injured during the Tournament of 1792 when a cockatrice the champions were supposed to be catching went on the rampage .She noticed them all looking at her and said with her usual air of impatience that nobody else had read all the books she had Its all in Hogwarts A History .Though of course that books not entirely reliable .A Revised History of Hogwarts would be a more accurate title .Or A Highly Biased and Selective History of Hogwarts Which Glosses Over the Nastier Aspects of the School .What are you on about ?said Ron though Harry thought he knew what was coming .Houseelves said Hermione her eyes flashing .Not once in over a thousand pages does Hogwarts A History mention that we are all colluding in the oppression of a hundred slaves !Harry shook his head and applied himself to his scrambled eggs .His and Rons lack of enthusiasm had done nothing whatsoever to curb Hermione s determination to pursue justice for houseelves .True both of them had paid two Sickles for a S .P .E .W .badge but they had only done it to keep her quiet .Their Sickles had been wasted however if anything they seemed to have made Hermione more vociferous .She had been badgering Harry and Ron ever since first to wear the badges then to persuade others to do the same and she had also taken to rattling around the Gryffindor common room every evening cornering people and shaking the collecting tin under their noses .You do realize that your sheets are changed your fires lit your classrooms cleaned and your food cooked by a group of magical creatures who are unpaid and enslaved ?she kept saying fiercely .Some people like Neville had paid up just to stop Hermione from glowering at them .A few seemed mildly interested in what she had to say but were reluctant to take a more active role in campaigning .Many regarded the whole thing as a joke .Ron now rolled his eyes at the ceiling which was flooding them all in autumn sunlight and Fred became extremely interested in his bacon both twins had refused to buy a S .P .E .W .badge .George however leaned in toward Hermione .Listen have you ever been down in the kitchens Hermione ?No of course not said Hermione curtly I hardly think students are supposed to Well we have said George indicating Fred loads of times to nick food .And weve met them and theyre happy .They think theyve got the best job in the world Thats because theyre uneducated and brainwashed !Hermione began hotly but her next few words were drowned out by the sudden whooshing noise from overhead which announced the arrival of the post owls .Harry looked up at once and saw Hedwig soaring toward him .Hermione stopped talking abruptly she and Ron watched Hedwig anxiously as she fluttered down onto Harrys shoulder folded her wings and held out her leg wearily .Harry pulled off Siriuss reply and offered Hedwig his bacon rinds which she ate gratefully .Then checking that Fred and George were safely immersed in further discussions about the Triwizard Tournament Harry read out Siriuss letter in a whisper to Ron and Hermione .Nice try Harry .Im back in the country and well hidden .I want you to keep me posted on everything thats going on at Hog warts .Dont use Hedwig keep changing owls and dont worry about me just watch out for yourself .Dont forget what I said about your scar .Sirius Why dyou have to keep changing owls ?Ron asked in a low voice .Hedwigll attract too much attention said Hermione at once .She stands out .A snowy owl that keeps returning to wherever hes hiding .I mean theyre not native birds are they ?Harry rolled up the letter and slipped it inside his robes wondering whether he felt more or less worried than before .He supposed that Sirius managing to get back without being caught was something .He couldnt deny either that the idea that Sirius was much nearer was reassuring at least he wouldnt have to wait so long for a response every time he wrote .Thanks Hedwig he said stroking her .She hooted sleepily dipped her beak briefly into his goblet of orange juice then took off again clearly desperate for a good long sleep in the Owlery .There was a pleasant feeling of anticipation in the air that day .Nobody was very attentive in lessons being much more interested in the arrival that evening of the people from Beauxbatons and Durmstrang even Potions was more bearable than usual as it was half an hour shorter .When the bell rang early Harry Ron and Hermione hurried up to Gryffindor Tower deposited their bags and books as they had been instructed pulled on their cloaks and rushed back downstairs into the entrance hall .The Heads of Houses were ordering their students into lines .Weasley straighten your hat Professor McGonagall snapped at Ron .Miss Patil take that ridiculous thing out of your hair .Parvati scowled and removed a large ornamental butterfly from the end of her plait .Follow me please said Professor McGonagall .First years in front .no pushing .They filed down the steps and lined up in front of the castle .It was a cold clear evening dusk was falling and a pale transparentlooking moon was already shining over the Forbidden Forest .Harry standing between Ron and Hermione in the fourth row from the front saw Dennis Creevey positively shivering with anticipation among the other first years .Nearly six said Ron checking his watch and then staring down the drive that led to the front gates .How dyou reckon theyre coming ?The train ?I doubt it said Hermione .How then ?Broomsticks ?Harry suggested looking up at the starry sky .I dont think so .not from that far away .A Portkey ?Ron suggested .Or they could Apparate maybe youre allowed to do it under seventeen wherever they come from ?You cant Apparate inside the Hogwarts grounds how often do I have to tell you ?said Hermione impatiently .They scanned the darkening grounds excitedly but nothing was moving everything was still silent and quite as usual .Harry was starting to feel cold .He wished theyd hurry up .Maybe the foreign students were preparing a dramatic entrance .He remembered what Mr Weasley had said back at the campsite before the Quidditch World Cup always the same we cant resist showing off when we get together .And then Dumbledore called out from the back row where he stood with the other teachers Aha !Unless I am very much mistaken the delegation from Beauxbatons approaches !Where ?said many students eagerly all looking in different directions .There !yelled a sixth year pointing over the forest .Something large much larger than a broomstick or indeed a hundred broomsticks was hurtling across the deep blue sky toward the castle growing larger all the time .Its a dragon !shrieked one of the first years losing her head completely .Dont be stupid .its a flying house !said Dennis Creevey .Denniss guess was closer .As the gigantic black shape skimmed over the treetops of the Forbidden Forest and the lights shining from the castle windows hit it they saw a gigantic powderblue horsedrawn carriage the size of a large house soaring toward them pulled through the air by a dozen winged horses all palominos and each the size of an elephant .The front three rows of students drew backward as the carriage hurtled ever lower coming in to land at a tremendous speed then with an almighty crash that made Neville jump backward onto a Slytherin fifth years foot the horses hooves larger than dinner plates hit the ground .A second later the carriage landed too bouncing upon its vast wheels while the golden horses tossed their enormous heads and rolled large fiery red eyes .Harry just had time to see that the door of the carriage bore a coat of arms two crossed golden wands each emitting three stars before it opened .A boy in pale blue robes jumped down from the carriage bent forward fumbled for a moment with something on the carriage floor and unfolded a set of golden steps .He sprang back respectfully .Then Harry saw a shining highheeled black shoe emerging from the inside of the carriage a shoe the size of a childs sled followed almost immediately by the largest woman he had ever seen in his life .The size of the carriage and of the horses was immediately explained .A few people gasped .Harry had only ever seen one person as large as this woman in his life and that was Hagrid he doubted whether there was an inch difference in their heights .Yet somehow maybe simply because he was used to Hagrid this woman now at the foot of the steps and looking around at the waiting wideeyed crowd seemed even more unnaturally large .As she stepped into the light flooding from the entrance hall she was revealed to have a handsome oliveskinned face large black liquidlooking eyes and a rather beaky nose .Her hair was drawn back in a shining knob at the base of her neck .She was dressed from head to foot in black satin and many magnificent opals gleamed at her throat and on her thick fingers .Dumbledore started to clap the students following his lead broke into applause too many of them standing on tiptoe the better to look at this woman .Her face relaxed into a gracious smile and she walked forward toward Dumbledore extending a glittering hand .Dumbledore though tall himself had barely to bend to kiss it .My dear Madame Maxime he said .Welcome to Hogwarts .Dumblydorr said Madame Maxime in a deep voice .I ope I find you well ?In excellent form I thank you said Dumbledore .My pupils said Madame Maxime waving one of her enormous hands carelessly behind her .Harry whose attention had been focused completely upon Madame Maxime now noticed that about a dozen boys and girls all by the look of them in their late teens had emerged from the carriage and were now standing behind Madame Maxime .They were shivering which was unsurprising given that their robes seemed to be made of fine silk and none of them were wearing cloaks .A few had wrapped scarves and shawls around their heads .From what Harry could see of them they were standing in Madame Maxime s enormous shadow they were staring up at Hogwarts with apprehensive looks on their faces .As Karkaroff arrived yet ?Madame Maxime asked .He should be here any moment said Dumbledore .Would you like to wait here and greet him or would you prefer to step inside and warm up a trifle ?Warm up I think said Madame Maxime .But ze orses Our Care of Magical Creatures teacher will be delighted to take care of them said Dumbledore the moment he has returned from dealing with a slight situation that has arisen with some of his other er charges .Skrewts Ron muttered to Harry grinning .My steeds require er forceful andling said Madame Maxime looking as though she doubted whether any Care of Magical Creatures teacher at Hogwarts could be up to the job .Zey are very strong .I assure you that Hagrid will be well up to the job said Dumbledore smiling .Very well said Madame Maxime bowing slightly .Will you please inform zis Agrid zat ze orses drink only singlemalt whiskey ?It will be attended to said Dumbledore also bowing .Come said Madame Maxime imperiously to her students and the Hogwarts crowd parted to allow her and her students to pass up the stone steps .How big dyou reckon Durmstrangs horses are going to be ?Seamus Finnigan said leaning around Lavender and Parvati to address Harry and Ron .Well if theyre any bigger than this lot even Hagrid wont be able to handle them said Harry .Thats if he hasnt been attacked by his skrewts .Wonder whats up with them ?Maybe theyve escaped said Ron hopefully .Oh dont say that said Hermione with a shudder .Imagine that lot loose on the grounds .They stood shivering slightly now waiting for the Durmstrang party to arrive .Most people were gazing hopefully up at the sky .For a few minutes the silence was broken only by Madame Maximes huge horses snorting and stamping .But then Can you hear something ?said Ron suddenly .Harry listened a loud and oddly eerie noise was drifting toward them from out of the darkness a muffled rumbling and sucking sound as though an immense vacuum cleaner were moving along a riverbed .The lake !yelled Lee Jordan pointing down at it .Look at the lake !From their position at the top of the lawns overlooking the grounds they had a clear view of the smooth black surface of the water except that the surface was suddenly not smooth at all .Some disturbance was taking place deep in the center great bubbles were forming on the surface waves were now washing over the muddy banks and then out in the very middle of the lake a whirlpool appeared as if a giant plug had just been pulled out of the lakes floor .What seemed to be a long black pole began to rise slowly out of the heart of the whirlpool .and then Harry saw the rigging .Its a mast !he said to Ron and Hermione .Slowly magnificently the ship rose out of the water gleaming in the moonlight .It had a strangely skeletal look about it as though it were a resurrected wreck and the dim misty lights shimmering at its portholes looked like ghostly eyes .Finally with a great sloshing noise the ship emerged entirely bobbing on the turbulent water and began to glide toward the bank .A few moments later they heard the splash of an anchor being thrown down in the shallows and the thud of a plank being lowered onto the bank .People were disembarking they could see their silhouettes passing the lights in the ships portholes .All of them Harry noticed seemed to be built along the lines of Crabbe and Goyle .but then as they drew nearer walking up the lawns into the light streaming from the entrance hall he saw that their bulk was really due to the fact that they were wearing cloaks of some kind of shaggy matted fur .But the man who was leading them up to the castle was wearing furs of a different sort sleek and silver like his hair .Dumbledore !he called heartily as he walked up the slope .How are you my dear fellow how are you ?Blooming thank you Professor Karkaroff Dumbledore replied .Karkaroff had a fruity unctuous voice when he stepped into the light pouring from the front doors of the castle they saw that he was tall and thin like Dumbledore but his white hair was short and his goatee finishing in a small curl did not entirely hide his rather weak chin .When he reached Dumbledore he shook hands with both of his own .Dear old Hogwarts he said looking up at the castle and smiling his teeth were rather yellow and Harry noticed that his smile did not extend to his eyes which remained cold and shrewd .How good it is to be here how good .Viktor come along into the warmth .you dont mind Dumbledore ?Viktor has a slight head cold .Karkaroff beckoned forward one of his students .As the boy passed Harry caught a glimpse of a prominent curved nose and thick black eyebrows .He didnt need the punch on the arm Ron gave him or the hiss in his ear to recognize that profile .Harry its Krum tfyfflapier l6 THE GOBLET OF FIRE I dont believe it !Ron said in a stunned voice as the Hogwarts students filed back up the steps behind the party from Durmstrang .Krum Harry !Viktor Kruml For heavens sake Ron hes only a Quidditch player said Hermione .Only a Quidditch player ?Ron said looking at her as though he couldnt believe his ears .Hermione hes one of the best Seekers in the world !I had no idea he was still at school !As they recrossed the entrance hall with the rest of the Hogwarts students heading for the Great Hall Harry saw Lee Jordan jumping up and down on the soles of his feet to get a better look at the back of Krums head .Several sixthyear girls were frantically searching their pockets as they walked Oh I dont believe it I havent got a single quill on me ?Dyou think hed sign my hat in lipstick ?Really Hermione said loftily as they passed the girls now squabbling over the lipstick .Im getting his autograph if I can said Ron .You havent got a quill have you Harry ?Nope theyre upstairs in my bag said Harry .They walked over to the Gryffindor table and sat down .Ron took care to sit on the side facing the doorway because Krum and his fellow Durmstrang students were still gathered around it apparently unsure about where they should sit .The students from Beauxbatons had chosen seats at the Ravenclaw table .They were looking around the Great Hall with glum expressions on their faces .Three of them were still clutching scarves and shawls around their heads .Its not that cold said Hermione defensively .Why didnt they bring cloaks ?Over here !Come and sit over here !Ron hissed .Over here !Hermione budge up make a space What ?Too late said Ron bitterly .Viktor Krum and his fellow Durmstrang students had settled themselves at the Slytherin table .Harry could see Malfoy Crabbe and Goyle looking very smug about this .As he watched Malfoy bent forward to speak to Krum .Yeah thats right smarm up to him Malfoy said Ron scathingly .I bet Krum can see right through him though .bet he gets people fawning over him all the time .Where dyou reckon theyre going to sleep ?We could offer him a space in our dormitory Harry .I wouldnt mind giving him my bed I could kip on a camp bed .Hermione snorted .They look a lot happier than the Beauxbatons lot said Harry .The Durmstrang students were pulling off their heavy furs and looking up at the starry black ceiling with expressions of interest a couple of them were picking up the golden plates and goblets and examining them apparently impressed .Up at the staff table Filch the caretaker was adding chairs .He was wearing his moldy old tailcoat in honor of the occasion .Harry was surprised to see that he added four chairs two on either side of Dumbledores .But there are only two extra people Harry said .Whys Filch putting out four chairs who else is coming ?Eh ?said Ron vaguely .He was still staring avidly at Krum .When all the students had entered the Hall and settled down at their House tables the staff entered filing up to the top table and taking their seats .Last in line were Professor Dumbledore Professor Karkaroff and Madame Maxime .When their headmistress appeared the pupils from Beauxbatons leapt to their feet .A few of the Hogwarts students laughed .The Beauxbatons party appeared quite unembarrassed however and did not resume their seats until Madame Maxime had sat down on Dumbledore s lefthand side .Dumbledore remained standing and a silence fell over the Great Hall .Good evening ladies and gentlemen ghosts and most particularly guests said Dumbledore beaming around at the foreign students .I have great pleasure in welcoming you all to Hogwarts .I hope and trust that your stay here will be both comfortable and enjoyable .One of the Beauxbatons girls still clutching a muffler around her head gave what was unmistakably a derisive laugh .No ones making you stay !Hermione whispered bristling at her .The tournament will be officially opened at the end of the feast said Dumbledore .I now invite you all to eat drink and make yourselves at home !He sat down and Harry saw Karkaroff lean forward at once and engage him in conversation .The plates in front of them filled with food as usual .The houseelves in the kitchen seemed to have pulled out all the stops there was a greater variety of dishes in front of them than Harry had ever seen including several that were definitely foreign .Whats that ?said Ron pointing at a large dish of some sort of shellfish stew that stood beside a large steakandkidney pudding .Bouillabaisse said Hermione .Bless you said Ron .Its French said Hermione I had it on holiday summer before last .Its very nice .Ill take your word for it said Ron helping himself to black pudding .The Great Hall seemed somehow much more crowded than usual even though there were barely twenty additional students there perhaps it was because their differently colored uniforms stood out so clearly against the black of the Hogwarts robes .Now that they had removed their furs the Durmstrang students were revealed to be wearing robes of a deep bloodred .Hagrid sidled into the Hall through a door behind the staff table twenty minutes after the start of the feast .He slid into his seat at the end and waved at Harry Ron and Hermione with a very heavily bandaged hand .Skrewts doing all right Hagrid ?Harry called .Thrivin Hagrid called back happily .Yeah Ill just bet they are said Ron quietly .Looks like theyve finally found a food they like doesnt it ?Hagrid s fingers .At that moment a voice said Excuse me are you wanting ze bouillabaisse ?It was the girl from Beauxbatons who had laughed during Dumbledores speech .She had finally removed her muffler .A long sheet of silveryblonde hair fell almost to her waist .She had large deep blue eyes and very white even teeth .Ron went purple .He stared up at her opened his mouth to reply but nothing came out except a faint gurgling noise .Yeah have it said Harry pushing the dish toward the girl .You ave finished wiz it ?Yeah Ron said breathlessly .Yeah it was excellent .The girl picked up the dish and carried it carefully off to the Ravenclaw table .Ron was still goggling at the girl as though he had never seen one before .Harry started to laugh .The sound seemed to jog Ron back to his senses .Shes a veelcd he said hoarsely to Harry .Of course she isnt !said Hermione tartly .I dont see anyone else gaping at her like an idiot !But she wasnt entirely right about that .As the girl crossed the Hall many boys heads turned and some of them seemed to have become temporarily speechless just like Ron .Im telling you thats not a normal girl !said Ron leaning sideways so he could keep a clear view of her .They dont make them like that at Hogwarts !They make them okay at Hogwarts said Harry without thinking .Cho happened to be sitting only a few places away from the girl with the silvery hair .When youve both put your eyes back in said Hermione briskly youll be able to see whos just arrived .She was pointing up at the staff table .The two remaining empty seats had just been filled .Ludo Bagman was now sitting on Professor Karkaroffs other side while Mr Crouch Percys boss was next to Madame Maxime .What are they doing here ?said Harry in surprise .They organized the Triwizard Tournament didnt they ?said Hermione .I suppose they wanted to be here to see it start .When the second course arrived they noticed a number of unfamiliar desserts too .Ron examined an odd sort of pale blancmange closely then moved it carefully a few inches to his right so that it would be clearly visible from the Ravenclaw table .The girl who looked like a veela appeared to have eaten enough however and did not come over to get it .Once the golden plates had been wiped clean Dumbledore stood up again .A pleasant sort of tension seemed to fill the Hall now .Harry felt a slight thrill of excitement wondering what was coming .Several seats down from them Fred and George were leaning forward staring at Dumbledore with great concentration .The moment has come said Dumbledore smiling around at the sea of upturned faces .The Triwizard Tournament is about to start .I would like to say a few words of explanation before we bring in the casket The what ?Harry muttered .Ron shrugged .just to clarify the procedure that we will be following this year .But first let me introduce for those who do not know them Mr Bartemius Crouch Head of the Department of International Magical Cooperation there was a smattering of polite applause and Mr Ludo Bagman Head of the Department of Magical Games and Sports .There was a much louder round of applause for Bagman than for Crouch perhaps because of his fame as a Beater or simply because he looked so much more likable .He acknowledged it with a jovial wave of his hand .Bartemius Crouch did not smile or wave when his name was announced .Remembering him in his neat suit at the Quidditch World Cup Harry thought he looked strange in wizards robes .His toothbrush mustache and severe parting looked very odd next to Dumbledores long white hair and beard .Mr Bagman and Mr Crouch have worked tirelessly over the last few months on the arrangements for the Triwizard Tournament Dumbledore continued and they will be joining myself Professor Karkaroff and Madame Maxime on the panel that will judge the champions efforts .At the mention of the word champions the attentiveness of the listening students seemed to sharpen .Perhaps Dumbledore had noticed their sudden stillness for he smiled as he said The casket then if you please Mr Filch .Filch who had been lurking unnoticed in a far corner of the Hall now approached Dumbledore carrying a great wooden chest encrusted with jewels .It looked extremely old .A murmur of excited interest rose from the watching students Dennis Creevey actually stood on his chair to see it properly but being so tiny his head hardly rose above anyone elses .The instructions for the tasks the champions will face this year have already been examined by Mr Crouch and Mr Bagman said Dumbledore as Filch placed the chest carefully on the table before him and they have made the necessary arrangements for each challenge .There will be three tasks spaced throughout the school year and they will test the champions in many different ways .their magical prowess their daring their powers of deduction and of course their ability to cope with danger .At this last word the Hall was filled with a silence so absolute that nobody seemed to be breathing .As you know three champions compete in the tournament Dumbledore went on calmly one from each of the participating schools .They will be marked on how well they perform each of the Tournament tasks and the champion with the highest total after task three will win the Triwizard Cup .The champions will be chosen by an impartial selector the Goblet of Fire .Dumbledore now took out his wand and tapped three times upon the top of the casket .The lid creaked slowly open .Dumbledore reached inside it and pulled out a large roughly hewn wooden cup .It would have been entirely unremarkable had it not been full to the brim with dancing bluewhite flames .Dumbledore closed the casket and placed the goblet carefully on top of it where it would be clearly visible to everyone in the Hall .Anybody wishing to submit themselves as champion must write their name and school clearly upon a slip of parchment and drop it into the goblet said Dumbledore .Aspiring champions have twentyfour hours in which to put their names forward .Tomorrow night Halloween the goblet will return the names of the three it has judged most worthy to represent their schools .The goblet will be placed in the entrance hall tonight where it will be freely accessible to all those wishing to compete .To ensure that no underage student yields to temptation said Dumbledore I will be drawing an Age Line around the Goblet of Fire once it has been placed in the entrance hall .Nobody under the age of seventeen will be able to cross this line .Finally I wish to impress upon any of you wishing to compete that this tournament is not to be entered into lightly .Once a champion has been selected by the Goblet of Fire he or she is obliged to see the tournament through to the end .The placing of your name in the goblet constitutes a binding magical contract .There can be no change of heart once you have become a champion .Please be very sure therefore that you are wholeheartedly prepared to play before you drop your name into the goblet .Now I think it is time for bed .Good night to you all .An Age Line !Fred Weasley said his eyes glinting as they all made their way across the Hall to the doors into the entrance hall .Well that should be fooled by an Aging Potion shouldnt it ?And once your names in that goblet youre laughing it cant tell whether youre seventeen or not !But I dont think anyone under seventeen will stand a chance said Hermione we just havent learned enough .Speak for yourself said George shortly .Youll try and get in wont you Harry ?Harry thought briefly of Dumbledore s insistence that nobody under seventeen should submit their name but then the wonderful picture of himself winning the Triwizard Tournament filled his mind again .He wondered how angry Dumbledore would be if someone younger than seventeen did find a way to get over the Age Line .Where is he ?said Ron who wasnt listening to a word of this conversation but looking through the crowd to see what had become of Krum .Dumbledore didnt say where the Durmstrang people are sleeping did he ?But this query was answered almost instantly they were level with the Slytherin table now and Karkaroff had just bustled up to his students .Back to the ship then he was saying .Viktor how are you feeling ?Did you eat enough ?Should I send for some mulled wine from the kitchens ?Harry saw Krum shake his head as he pulled his furs back on .Professor I vood like some vine said one of the other Durmstrang boys hopefully .I wasnt offering it to you Poliakoff snapped Karkaroff his warmly paternal air vanishing in an instant .I notice you have dribbled food all down the front of your robes again disgusting boy Karkaroff turned and led his students toward the doors reaching them at exactly the same moment as Harry Ron and Hermione .Harry stopped to let him walk through first .Thank you said Karkaroff carelessly glancing at him .And then Karkaroff froze .He turned his head back to Harry and stared at him as though he couldnt believe his eyes .Behind their headmaster the students from Durmstrang came to a halt too .Karkaroff s eyes moved slowly up Harrys face and fixed upon his scar .The Durmstrang students were staring curiously at Harry too .Out of the corner of his eye Harry saw comprehension dawn on a few of their faces .The boy with food all down his front nudged the girl next to him and pointed openly at Harrys forehead .Yeah thats Harry Potter said a gvoice from behind them .Professor Karkaroff spun around .MadEye Moody was standing there leaning heavily on his staff his magical eye glaring unblinkingly at the Durmstrang headmaster .The color drained from Karkaroffs face as Harry watched .A terrible look of mingled fury and fear came over him .You !he said staring at Moody as though unsure he was really seeing him .Me said Moody grimly .And unless youve got anything to say to Potter Karkaroff you might want to move .Youre blocking the doorway .It was true half the students in the Hall were now waiting behind them looking over one anothers shoulders to see what was causing the holdup .Without another word Professor Karkaroff swept his students away with him .Moody watched him until he was out of sight his magical eye fixed upon his back a look of intense dislike upon his mutilated face .As the next day was Saturday most students would normally have breakfasted late .Harry Ron and Hermione however were not alone in rising much earlier than they usually did on weekends .When they went down into the entrance hall they saw about twenty people milling around it some of them eating toast all examining the Goblet of Fire .It had been placed in the center of the hall on the stool that normally bore the Sorting Hat .A thin golden line had been traced on the floor forming a circle ten feet around it in every direction .Anyone put their name in yet ?Ron asked a third year girl eagerly .All the Durmstrang lot she replied .But I havent seen anyone from Hogwarts yet .Bet some of them put it in last night after wed all gone to bed said Harry .I wouldve if it had been me .wouldnt have wanted everyone watching .What if the goblet just gobbed you right back out again ?Someone laughed behind Harry .Turning he saw Fred George and Lee Jordan hurrying down the staircase all three of them looking extremely excited .Done it Fred said in a triumphant whisper to Harry Ron and Hermione .Just taken it .What ?said Ron .The Aging Potion dung brains said Fred .One drop each said George rubbing his hands together with glee .We only need to be a few months older .Were going to split the thousand Galleons between the three of us if one of us wins said Lee grinning broadly .Im not sure this is going to work you know said Hermione warningly Im sure Dumbledore will have thought of this .Fred George and Lee ignored her .Ready ?Fred said to the other two quivering with excitement .Cmon then Ill go first Harry watched fascinated as Fred pulled a slip of parchment out of his pocket bearing the words Fred Weasley Hog warts .Fred walked right up to the edge of the line and stood there rocking on his toes like a diver preparing for a fiftyfoot drop .Then with the eyes of every person in the entrance hall upon him he took a great breath and stepped over the line .For a split second Harry thought it had worked George certainly thought so for he let out a yell of triumph and leapt after Fred but next moment there was a loud sizzling sound and both twins were hurled out of the golden circle as though they had been thrown by an invisible shotputter .They landed painfully ten feet away on the cold stone floor and to add insult to injury there was a loud popping noise and both of them sprouted identical long white beards .The entrance hall rang with laughter .Even Fred and George joined in once they had gotten to their feet and taken a good look at each others beards .I did warn you said a deep amused voice and everyone turned to see Professor Dumbledore coming out of the Great Hall .He surveyed Fred and George his eyes twinkling .I suggest you both go up to Madam Pomfrey .She is already tending to Miss Fawcett of Ravenclaw and Mr Summers of Hufflepuff both of whom decided to age themselves up a little too .Though I must say neither of their beards is anything like as fine as yours .Fred and George set off for the hospital wing accompanied by Lee who was howling with laughter and Harry Ron and Hermione also chortling went in to breakfast .The decorations in the Great Hall had changed this morning .As it was Halloween a cloud of live bats was fluttering around the enchanted ceiling while hundreds of carved pumpkins leered from every corner .Harry led the way over to Dean and Seamus who were discussing those Hogwarts students of seventeen or over who might be entering .Theres a rumor going around that Warrington got up early and put his name in Dean told Harry .That big bloke from Slytherin who looks like a sloth .Harry who had played Quidditch against Warrington shook his head in disgust .We cant have a Slytherin champion !And all the Hufflepuffs are talking about Diggory said Seamus contemptuously .But I wouldnt have thought hed have wanted to risk his good looks .Listen !said Hermione suddenly .People were cheering out in the entrance hall .They all swiveled around in their seats and saw Angelina Johnson coming into the Hall grinning in an embarrassed sort of way .A tall black girl who played Chaser on the Gryffindor Quidditch team Angelina came over to them sat down and said Well Ive done it !Just put my name in !Youre kidding !said Ron looking impressed .Are you seventeen then ?asked Harry .Course she is cant see a beard can you ?said Ron .I had my birthday last week said Angelina .Well Im glad someone from Gryffindors entering said Hermione .I really hope you get it Angelina !Thanks Hermione said Angelina smiling at her .Yeah better you than PrettyBoy Diggory said Seamus causing several Hufflepuffs passing their table to scowl heavily at him .Whatre we going to do today then ?Ron asked Harry and Hermione when they had finished breakfast and were leaving the Great Hall .We havent been down to visit Hagrid yet said Harry .Okay said Ron just as long as he doesnt ask us to donate a few fingers to the skrewts .A look of great excitement suddenly dawned on Hermione s face .Ive just realized I havent asked Hagrid to join S .P .E .W .yet !she said brightly .Wait for me will you while I nip upstairs and get the badges ?What is it with her ?said Ron exasperated as Hermione ran away up the marble staircase .Hey Ron said Harry suddenly .Its your friend .The students from Beauxbatons were coming through the front doors from the grounds among them the veelagirl .Those gathered around the Goblet of Fire stood back to let them pass watching eagerly .Madame Maxime entered the hall behind her students and organized them into a line .One by one the Beauxbatons students stepped across the Age Line and dropped their slips of parchment into the blue white flames .As each name entered the fire it turned briefly red and emitted sparks .What dyou reckonll happen to the ones who arent chosen ?Ron muttered to Harry as the veelagirl dropped her parchment into the Goblet of Fire .Reckon theyll go back to school or hang around to watch the tournament ?Dunno said Harry .Hang around I suppose .Madame Maximes staying to judge isnt she ?When all the Beauxbatons students had submitted their names Madame Maxime led them back out of the hall and out onto the grounds again .Where are they sleeping then ?said Ron moving toward the front doors and staring after them .A loud rattling noise behind them announced Hermiones reappearance with the box of S .P .E .W .badges .Oh good hurry up said Ron and he jumped down the stone steps keeping his eyes on the back of the veelagirl who was now halfway across the lawn with Madame Maxime .As they neared Hagrids cabin on the edge of the Forbidden Forest the mystery of the Beauxbatons sleeping quarters was solved .The gigantic powder blue carriage in which they had arrived had been parked two hundred yards from Hagrids front door and the students were climbing back inside it .The elephantine flying horses that had pulled the carriage were now grazing in a makeshift paddock alongside it .Harry knocked on Hagrids door and Fangs booming barks answered instantly Bout time !said Hagrid when hed flung open the door .Thought you lotd forgotten where I live !Weve been really busy Hag Hermione started to say but then she stopped dead looking up at Hagrid apparently lost for words .Hagrid was wearing his best and very horrible hairy brown suit plus a checked yellowandorange tie .This wasnt the worst of it though he had evidently tried to tame his hair using large quantities of what appeared to be axle grease .It was now slicked down into two bunches perhaps he had tried a ponytail like Bills but found he had too much hair .The look didnt really suit Hagrid at all .For a moment Hermione goggled at him then obviously deciding not to comment she said Erm where are the skrewts ?Out by the pumpkin patch said Hagrid happily .Theyre gettin massive mus be nearly three foot long now .Ony trouble is theyve started killin each other .Oh no really ?said Hermione shooting a repressive look at Ron who staring at Hagrids odd hairstyle had just opened his mouth to say something about it .Yeah said Hagrid sadly .S okay though Ive got em in separate boxes now .Still got abou twenty .Well thats lucky said Ron .Hagrid missed the sarcasm .Hagrids cabin comprised a single room in one corner of which was a gigantic bed covered in a patchwork quilt .A similarly enormous wooden table and chairs stood in front of the fire beneath the quantity of cured hams and dead birds hanging from the ceiling .They sat down at the table while Hagrid started to make tea and were soon immersed in yet more discussion of the Triwizard Tournament .Hagrid seemed quite as excited about it as they were .You wait he said grinning .You jus wait .Yer going ter see some stuff yehve never seen before .Firs task .ah but Im not supposed ter say .Go on Hagrid !Harry Ron and Hermione urged him but he just shook his head grinning .I don want ter spoil it fer yeh said Hagrid .But its gonna be spectacular Ill tell yeh that .Them champions re going ter have their work cut out .Never thought Id live ter see the Triwizard Tournament played again !They ended up having lunch with Hagrid though they didnt eat much Hagrid had made what he said was a beef casserole but after Hermione unearthed a large talon in hers she Harry and Ron rather lost their appetites .However they enjoyed themselves trying to make Hagrid tell them what the tasks in the tournament were going to be speculating which of the entrants were likely to be selected as champions and wondering whether Fred and George were beardless yet .A light rain had started to fall by midafternoon it was very cozy sitting by the fire listening to the gentle patter of the drops on the window watching Hagrid darning his socks and arguing with Hermione about houseelves for he flatly refused to join S .P .E .W .when she showed him her badges .Itd be doin em an unkindness Hermione he said gravely threading a massive bone needle with thick yellow yarn .Its in their nature ter look after humans thats what they like see ?Yehd be makin em unhappy ter take away their work an insultin em if yeh tried ter pay em .But Harry set Dobby free and he was over the moon about it !said Hermione .And we heard hes asking for wages now !Yeah well yeh get weirdos in every breed .Im not sayin there isnt the odd elf whod take freedom but yehll never persuade most of em ter do it no nothin doin Hermione .Hermione looked very cross indeed and stuffed her box of badges back into her cloak pocket .By half past five it was growing dark and Ron Harry and Hermione decided it was time to get back up to the castle for the Halloween feast and more important the announcement of the school champions .Ill come with yeh said Hagrid putting away his darning .Jus give us a sec .Hagrid got up went across to the chest of drawers beside his bed and began searching for something inside it .They didnt pay too much attention until a truly horrible smell reached their nostrils .Coughing Ron said Hagrid whats that ?Eh ?said Hagrid turning around with a large bottle in his hand .Don yeh like it ?Is that aftershave ?said Hermione in a slightly choked voice .Er eau de cologne Hagrid muttered .He was blushing .Maybe its a bit much he said gruffly .Ill go take it off hang on .He stumped out of the cabin and they saw him washing himself vigorously in the water barrel outside the window .Eau de cologne ?said Hermione in amazement .Hagrid ?And whats with the hair and the suit ?said Harry in an undertone .Look !said Ron suddenly pointing out of the window .Hagrid had just straightened up and turned round .If he had been blushing before it was nothing to what he was doing now .Getting to their feet very cautiously so that Hagrid wouldnt spot them Harry Ron and Hermione peered through the window and saw that Madame Maxime and the Beauxbatons students had just emerged from their carriage clearly about to set off for the feast too .They couldnt hear what Hagrid was saying but he was talking to Madame Maxime with a rapt mistyeyed expression Harry had only ever seen him wear once before when he had been looking at the baby dragon Norbert .Hes going up to the castle with her !said Hermione indignantly .I thought he was waiting for us !Without so much as a backward glance at his cabin Hagrid was trudging off up the grounds with Madame Maxime the Beauxbatons students following in their wake jogging to keep up with their enormous strides .He fancies her !said Ron incredulously .Well if they end up having children theyll be setting a world record bet any baby of theirs would weigh about a ton .They let themselves out of the cabin and shut the door behind them .It was surprisingly dark outside .Drawing their cloaks more closely around themselves they set off up the sloping lawns .Ooh its them look !Hermione whispered .The Durmstrang party was walking up toward the castle from the lake .Viktor Krum was walking side by side with Karkaroff and the other Durmstrang students were straggling along behind them .Ron watched Krum excitedly but Krum did not look around as he reached the front doors a little ahead of Hermione Ron and Harry and proceeded through them .When they entered the candlelit Great Hall it was almost full .The Goblet of Fire had been moved it was now standing in front of Dumbledore s empty chair at the teachers table .Fred and George cleanshaven again seemed to have taken their disappointment fairly well .Hope its Angelina said Fred as Harry Ron and Hermione sat down .So do I !said Hermione breathlessly .Well well soon know !The Halloween feast seemed to take much longer than usual .Perhaps because it was their second feast in two days Harry didnt seem to fancy the extravagantly prepared food as much as he would have normally .Like everyone else in the Hall judging by the constantly craning necks the impatient expressions on every face the fidgeting and the standing up to see whether Dumbledore had finished eating yet Harry simply wanted the plates to clear and to hear who had been selected as champions .At long last the golden plates returned to their original spotless state there was a sharp upswing in the level of noise within the Hall which died away almost instantly as Dumbledore got to his feet .On either side of him Professor Karkaroff and Madame Maxime looked as tense and expectant as anyone .Ludo Bagman was beaming and winking at various students .Mr Crouch however looked quite uninterested almost bored .Well the goblet is almost ready to make its decision said Dumbledore .I estimate that it requires one more minute .Now when the champions names are called I would ask them please to come up to the top of the Hall walk along the staff table and go through into the next chamber he indicated the door behind the staff table where they will be receiving their first instructions .He took out his wand and gave a great sweeping wave with it at once all the candles except those inside the carved pumpkins were extinguished plunging them into a state of semidarkness .The Goblet of Fire now shone more brightly than anything in the whole Hall the sparkling bright blueywhiteness of the flames almost painful on the eyes .Everyone watched waiting .A few people kept checking their watches .Any second Lee Jordan whispered two seats away from Harry .The flames inside the goblet turned suddenly red again .Sparks began to fly from it .Next moment a tongue of flame shot into the air a charred piece of parchment fluttered out of it the whole room gasped .Dumbledore caught the piece of parchment and held it at arms length so that he could read it by the light of the flames which had turned back to bluewhite .The champion for Durmstrang he read in a strong clear voice will be Viktor Krum .No surprises there !yelled Ron as a storm of applause and cheering swept the Hall .Harry saw Viktor Krum rise from the Slytherin table and slouch up toward Dumbledore he turned right walked along the staff table and disappeared through the door into the next chamber .Bravo Viktor !boomed Karkaroff so loudly that everyone could hear him even over all the applause .Knew you had it in you !The clapping and chatting died down .Now everyones attention was focused again on the goblet which seconds later turned red once more .A second piece of parchment shot out of it propelled by the flames .The champion for Beauxbatons said Dumbledore is Fleur Delacour !Its her Ron !Harry shouted as the girl who so resembled a veela got gracefully to her feet shook back her sheet of silvery blonde hair and swept up between the Ravenclaw and Hufflepuff tables .Oh look theyre all disappointed Hermione said over the noise nodding toward the remainder of the Beauxbatons party .Disappointed was a bit of an understatement Harry thought .Two of the girls who had not been selected had dissolved into tears and were sobbing with their heads on their arms .When Fleur Delacour too had vanished into the side chamber silence fell again but this time it was a silence so stiff with excitement you could almost taste it .The Hogwarts champion next .And the Goblet of Fire turned red once more sparks showered out of it the tongue of flame shot high into the air and from its tip Dumbledore pulled the third piece of parchment .The Hogwarts champion he called is Cedric Diggory !No !said Ron loudly but nobody heard him except Harry the uproar from the next table was too great .Every single Hufflepuff had jumped to his or her feet screaming and stamping as Cedric made his way past them grinning broadly and headed off toward the chamber behind the teachers table .Indeed the applause for Cedric went on so long that it was some time before Dumbledore could make himself heard again .Excellent !Dumbledore called happily as at last the tumult died down .Well we now have our three champions .I am sure I can count upon all of you including the remaining students from Beauxbatons and Durmstrang to give your champions every ounce of support you can muster .By cheering your champion on you will contribute in a very real But Dumbledore suddenly stopped speaking and it was apparent to everybody what had distracted him .The fire in the goblet had just turned red again .Sparks were flying out of it .A long flame shot suddenly into the air and borne upon it was another piece of parchment .Automatically it seemed Dumbledore reached out a long hand and seized the parchment .He held it out and stared at the name written upon it .There was a long pause during which Dumbledore stared at the slip in his hands and everyone in the room stared at Dumbledore .And then Dumbledore cleared his throat and read out Harry Potter .THE FOUR CHAMPIONS Harry sat there aware that every head in the Great Hall had turned to look at him .He was stunned .He felt numb .He was surely dreaming .He had not heard correctly .There was no applause .A buzzing as though of angry bees was starting to fill the Hall some students were standing up to get a better look at Harry as he sat frozen in his seat .Up at the top table Professor McGonagall had got to her feet and swept past Ludo Bagman and Professor Karkaroff to whisper urgently to Professor Dumbledore who bent his ear toward her frowning slightly .Harry turned to Ron and Hermione beyond them he saw the long Gryffindor table all watching him openmouthed .I didnt put my name in Harry said blankly .You know I didnt .Both of them stared just as blankly back .At the top table Professor Dumbledore had straightened up nodding to Professor McGonagall .Harry Potter !he called again .Harry !Up here if you please !Go on Hermione whispered giving Harry a slight push .Harry got to his feet trod on the hem of his robes and stumbled slightly .He set off up the gap between the Gryffindor and Hufflepuff tables .It felt like an immensely long walk the top table didnt seem to be getting any nearer at all and he could feel hundreds and hundreds of eyes upon him as though each were a searchlight .The buzzing grew louder and louder .After what seemed like an hour he was right in front of Dumbledore feeling the stares of all the teachers upon him .Well .through the door Harry said Dumbledore .He wasnt smiling .Harry moved off along the teachers table .Hagrid was seated right at the end .He did not wink at Harry or wave or give any of his usual signs of greeting .He looked completely astonished and stared at Harry as he passed like everyone else .Harry went through the door out of the Great Hall and found himself in a smaller room lined with paintings of witches and wizards .A handsome fire was roaring in the fireplace opposite him .The faces in the portraits turned to look at him as he entered .He saw a wizened witch flit out of the frame of her picture and into the one next to it which contained a wizard with a walrus mustache .The wizened witch started whispering in his ear .Viktor Krum Cedric Diggory and Fleur Delacour were grouped around the fire .They looked strangely impressive silhouetted against the flames .Krum hunchedup and brooding was leaning against the mantelpiece slightly apart from the other two .Cedric was standing with his hands behind his back staring into the fire .Fleur Delacour looked around when Harry walked in and threw back her sheet of long silvery hair .What is it ?she said .Do zey want us back in ze Hall ?She thought he had come to deliver a message .Harry didnt know how to explain what had just happened .He just stood there looking at the three champions .It struck him how very tall all of them were .There was a sound of scurrying feet behind him and Ludo Bagman entered the room .He took Harry by the arm and led him forward .Extraordinary !he muttered squeezing Harrys arm .Absolutely extraordinary !Gentlemen .lady he added approaching the fireside and addressing the other three .May I introduce incredible though it may seem the fourth Triwizard champion ?Viktor Krum straightened up .His surly face darkened as he surveyed Harry .Cedric looked nonplussed .He looked from Bagman to Harry and back again as though sure he must have misheard what Bagman had said .Fleur Delacour however tossed her hair smiling and said Oh vairy funny joke Meester Bagman .Joke ?Bagman repeated bewildered .No no not at all !Harrys name just came out of the Goblet of Fire !Krums thick eyebrows contracted slightly .Cedric was still looking politely bewildered .Fleur frowned .But evidently zair as been a mistake she said contemptuously to Bagman .E cannot compete .E is too young .Well .it is amazing said Bagman rubbing his smooth chin and smiling down at Harry .But as you know the age restriction was only imposed this year as an extra safety measure .And as his names come out of the goblet .I mean I dont think there can be any ducking out at this stage .Its down in the rules youre obliged .Harry will just have to do the best he The door behind them opened again and a large group of people came in Professor Dumbledore followed closely by Mr Crouch Professor Karkaroff Madame Maxime Professor McGonagall and Professor Snape .Harry heard the buzzing of the hundreds of students on the other side of the wall before Professor McGonagall closed the door .Madame Maxime !said Fleur at once striding over to her headmistress .Zey are saying zat zis little boy is to compete also !Somewhere under Harrys numb disbelief he felt a ripple of anger .Little boy ?Madame Maxime had drawn herself up to her full and considerable height .The top of her handsome head brushed the candlefilled chandelier and her gigantic blacksatin bosom swelled .What is ze meaning of zis Dumblydorr ?she said imperiously .Id rather like to know that myself Dumbledore said Professor Karkaroff .He was wearing a steely smile and his blue eyes were like chips of ice .Two Hogwarts champions ?I dont remember anyone telling me the host school is allowed two champions or have I not read the rules carefully enough ?He gave a short and nasty laugh .Cest impossible said Madame Maxime whose enormous hand with its many superb opals was resting upon Fleurs shoulder .Ogwarts cannot ave two champions .It is most injust .We were under the impression that your Age Line would keep out younger contestants Dumbledore said Karkaroff his steely smile still in place though his eyes were colder than ever .Otherwise we would of course have brought along a wider selection of candidates from our own schools .Its no ones fault but Potters Karkaroff said Snape softly .His black eyes were alight with malice .Dont go blaming Dumbledore for Potters determination to break rules .He has been crossing lines ever since he arrived here Thank you Severus said Dumbledore firmly and Snape went quiet though his eyes still glinted malevolently through his curtain of greasy black hair .Professor Dumbledore was now looking down at Harry who looked right back at him trying to discern the expression of the eyes behind the halfmoon spectacles .Did you put your name into the Goblet of Fire Harry ?he asked calmly .No said Harry .He was very aware of everybody watching him closely .Snape made a soft noise of impatient disbelief in the shadows .Did you ask an older student to put it into the Goblet of Fire for you ?said Professor Dumbledore ignoring Snape .No said Harry vehemently .Ah but of course e is lying !cried Madame Maxime .Snape was now shaking his head his lip curling .He could not have crossed the Age Line said Professor McGonagall sharply .I am sure we are all agreed on that Dumblydorr must ave made a mistake wiz ze line said Madame Maxime shrugging .It is possible of course said Dumbledore politely Dumbledore you know perfectly well you did not make a mistake !said Professor McGonagall angrily .Really what nonsense !Harry could not have crossed the line himself and as Professor Dumbledore believes that he did not persuade an older student to do it for him Im sure that should be good enough for everybody else !She shot a very angry look at Professor Snape .Mr Crouch .Mr Bagman said Karkaroff his voice unctuous once more you are our er objective judges .Surely you will agree that this is most irregular ?Bagman wiped his round boyish face with his handkerchief and looked at Mr Crouch who was standing outside the circle of the firelight his face half hidden in shadow .He looked slightly eerie the half darkness making him look much older giving him an almost skulllike appearance .When he spoke however it was in his usual curt voice .We must follow the rules and the rules state clearly that those people whose names come out of the Goblet of Fire are bound to compete in the tournament .Well Barty knows the rule book back to front said Bagman beaming and turning back to Karkaroff and Madame Maxime as though the matter was now closed .I insist upon resubmitting the names of the rest of my students said Karkaroff .He had dropped his unctuous tone and his smile now .His face wore a very ugly look indeed .You will set up the Goblet of Fire once more and we will continue adding names until each school has two champions .Its only fair Dumbledore .But Karkaroff it doesnt work like that said Bagman .The Goblet of Fires just gone out it wont reignite until the start of the next tournament in which Durmstrang will most certainly not be competing !exploded Karkaroff .After all our meetings and negotiations and compromises I little expected something of this nature to occur !I have half a mind to leave now !Empty threat Karkaroff growled a voice from near the door .You cant leave your champion now .Hes got to compete .Theyve all got to compete .Binding magical contract like Dumbledore said .Convenient eh ?Moody had just entered the room .He limped toward the fire and with every right step he took there was a loud clunk .Convenient ?said Karkaroff .Im afraid I dont understand you Moody .Harry could tell he was trying to sound disdainful as though what Moody was saying was barely worth his notice but his hands gave him away they had balled themselves into fists .Dont you ?said Moody quietly .Its very simple Karkaroff .Someone put Potters name in that goblet knowing hed have to compete if it came out .Evidently someone oo wished to give Ogwarts two bites at ze apple !said Madame Maxime .I quite agree Madame Maxime said Karkaroff bowing to her .I shall be lodging complaints with the Ministry of Magic and the International Confederation of Wizards If anyones got reason to complain its Potter growled Moody but .funny thing .I dont hear him saying a word .Why should e complain ?burst out Fleur Delacour stamping her foot .E as ze chance to compete asnt e ?We ave all been oping to be chosen for weeks and weeks !Ze honor for our schools !A thousand Galleons in prize money zis is a chance many would die for !Maybe someones hoping Potter is going to die for it said Moody with the merest trace of a growl .An extremely tense silence followed these words .Ludo Bagman who was looking very anxious indeed bounced nervously up and down on his feet and said Moody old man .what a thing to say !We all know Professor Moody considers the morning wasted if he hasnt discovered six plots to murder him before lunchtime said Karkaroff loudly .Apparently he is now teaching his students to fear assassination too .An odd quality in a Defense Against the Dark Arts teacher Dumbledore but no doubt you had your reasons .Imagining things am I ?growled Moody .Seeing things eh ?It was a skilled witch or wizard who put the boys name in that goblet .Ah what evidence is zere of zat ?said Madame Maxime throwing up her huge hands .Because they hoodwinked a very powerful magical object !said Moody .It would have needed an exceptionally strong Confundus Charm to bamboozle that goblet into forgetting that only three schools compete in the tournament .Im guessing they submitted Potters name under a fourth school to make sure he was the only one in his category .You seem to have given this a great deal of thought Moody said Karkaroff coldly and a very ingenious theory it is though of course I heard you recently got it into your head that one of your birthday presents contained a cunningly disguised basilisk egg and smashed it to pieces before realizing it was a carriage clock .So youll understand if we dont take you entirely seriously .There are those wholl turn innocent occasions to their advantage Moody retorted in a menacing voice .Its my job to think the way Dark wizards do Karkaroff as you ought to remember .Alas tor !said Dumbledore warningly .Harry wondered for a moment whom he was speaking to but then realized MadEye could hardly be Moodys real first name .Moody fell silent though still surveying Karkaroff with satisfaction Karkaroffs face was burning .How this situation arose we do not know said Dumbledore speaking to everyone gathered in the room .It seems to me however that we have no choice but to accept it .Both Cedric and Harry have been chosen to compete in the Tournament .This therefore they will do .Ah but Dumblydorr My dear Madame Maxime if you have an alternative I would be delighted to hear it .Dumbledore waited but Madame Maxime did not speak she merely glared .She wasnt the only one either .Snape looked furious Karkaroff livid Bagman however looked rather excited .Well shall we crack on then ?he said rubbing his hands together and smiling around the room .Got to give our champions their instructions havent we ?Barty want to do the honors ?Mr Crouch seemed to come out of a deep reverie .Yes he said instructions .Yes .the first task .He moved forward into the firelight .Close up Harry thought he looked ill .There were dark shadows beneath his eyes and a thin papery look about his wrinkled skin that had not been there at the Quidditch World Cup .The first task is designed to test your daring he told Harry Cedric Fleur and Viktor so we are not going to be telling you what it is .Courage in the face of the unknown is an important quality in a wizard .very important .The first task will take place on November the twentyfourth in front of the other students and the panel of judges .The champions are not permitted to ask for or accept help of any kind from their teachers to complete the tasks in the tournament .The champions will face the first challenge armed only with their wands .They will receive information about the second task when the first is over .Owing to the demanding and time consuming nature of the tournament the champions are exempted from endofyear tests .Mr Crouch turned to look at Dumbledore .I think thats all is it Albus ?I think so said Dumbledore who was looking at Mr Crouch with mild concern .Are you sure you wouldnt like to stay at Hogwarts tonight Barty ?No Dumbledore I must get back to the Ministry said Mr Crouch .It is a very busy very difficult time at the moment .Ive left young Weatherby in charge .Very enthusiastic .a little overenthusiastic if truth be told .Youll come and have a drink before you go at least ?said Dumbledore .Come on Barty Im staying !said Bagman brightly .Its all happening at Hogwarts now you know much more exciting here than at the office !I think not Ludo said Crouch with a touch of his old impatience .Professor Karkaroff Madame Maxime a nightcap ?said Dumbledore .But Madame Maxime had already put her arm around Fleurs shoulders and was leading her swiftly out of the room .Harry could hear them both talking very fast in French as they went off into the Great Hall .Karkaroff beckoned to Krum and they too exited though in silence .Harry Cedric I suggest you go up to bed said Dumbledore smiling at both of them .I am sure Gryffindor and Hufflepuff are waiting to celebrate with you and it would be a shame to deprive them of this excellent excuse to make a great deal of mess and noise .Harry glanced at Cedric who nodded and they left together .The Great Hall was deserted now the candles had burned low giving the jagged smiles of the pumpkins an eerie flickering quality .So said Cedric with a slight smile .Were playing against each other again !I spose said Harry .He really couldnt think of anything to say .The inside of his head seemed to be in complete disarray as though his brain had been ransacked .So .tell me .said Cedric as they reached the entrance hall which was now lit only by torches in the absence of the Goblet of Fire .How did you get your name in ?I didnt said Harry staring up at him .I didnt put it in .I was telling the truth .Ah .okay said Cedric .Harry could tell Cedric didnt believe him .Well .see you then .Instead of going up the marble staircase Cedric headed for a door to its right .Harry stood listening to him going down the stone steps beyond it then slowly he started to climb the marble ones .Was anyone except Ron and Hermione going to believe him or would they all think hed put himself in for the tournament ?Yet how could anyone think that when he was facing competitors whod had three years more magical education than he had when he was now facing tasks that not only sounded very dangerous but which were to be performed in front of hundreds of people ?Yes hed thought about it .hed fantasized about it .but it had been a joke really an idle sort of dream .hed never really seriously considered entering .But someone else had considered it .someone else had wanted him in the tournament and had made sure he was entered .Why ?To give him a treat ?He didnt think so somehow .To see him make a fool of himself ?Well they were likely to get their wish .But to get him killed ?Was Moody just being his usual paranoid self ?Couldnt someone have put Harrys name in the goblet as a trick a practical joke ?Did anyone really want him dead ?Harry was able to answer that at once .Yes someone wanted him dead someone had wanted him dead ever since he had been a year old .Lord Voldemort .But how could Voldemort have ensured that Harrys name got into the Goblet of Fire ?Voldemort was supposed to be far away in some distant country in hiding alone .feeble and powerless .Yet in that dream he had had just before he had awoken with his scar hurting Voldemort had not been alone .he had been talking to Wormtail .plotting Harrys murder .Harry got a shock to find himself facing the Fat Lady already .He had barely noticed where his feet were carrying him .It was also a surprise to see that she was not alone in her frame .The wizened witch who had flitted into her neighbors painting when he had joined the champions downstairs was now sitting smugly beside the Fat Lady .She must have dashed through every picture lining seven staircases to reach here before him .Both she and the Fat Lady were looking down at him with the keenest interest .Well well well said the Fat Lady Violets just told me everything .Whos just been chosen as school champion then ?Balderdash said Harry dully .It most certainly isnt !said the pale witch indignantly .No no Vi its the password said the Fat Lady soothingly and she swung forward on her hinges to let Harry into the common room .The blast of noise that met Harrys ears when the portrait opened almost knocked him backward .Next thing he knew he was being wrenched inside the common room by about a dozen pairs of hands and was facing the whole of Gryffindor House all of whom were screaming applauding and whistling .You shouldve told us youd entered !bellowed Fred he looked half annoyed half deeply impressed .How did you do it without getting a beard ?Brilliant !roared George .I didnt Harry said .I dont know how But Angelina had now swooped down upon him Oh if it couldnt be me at least its a Gryffindor Youll be able to pay back Diggory for that last Quidditch match Harry !shrieked Katie Bell another of the Gryffindor Chasers .Weve got food Harry come and have some Im not hungry I had enough at the feast But nobody wanted to hear that he wasnt hungry nobody wanted to hear that he hadnt put his name in the goblet not one single person seemed to have noticed that he wasnt at all in the mood to celebrate . .Lee Jordan had unearthed a Gryffindor banner from somewhere and he insisted on draping it around Harry like a cloak .Harry couldnt get away whenever he tried to sidle over to the staircase up to the dormitories the crowd around him closed ranks forcing another butterbeer on him stuffing crisps and peanuts into his hands .Everyone wanted to know how he had done it how he had tricked Dumbledores Age Line and managed to get his name into the goblet .I didnt he said over and over again I dont know how it happened .But for all the notice anyone took he might just as well not have answered at all .Im tired !he bellowed finally after nearly half an hour .No seriously George Im going to bed He wanted more than anything to find Ron and Hermione to find a bit of sanity but neither of them seemed to be in the common room .Insisting that he needed to sleep and almost flattening the little Creevey brothers as they attempted to waylay him at the foot of the stairs Harry managed to shake everyone off and climb up to the dormitory as fast as he could .To his great relief he found Ron was lying on his bed in the otherwise empty dormitory still fully dressed .He looked up when Harry slammed the door behind him .Where ve you been ?Harry said .Oh hello said Ron .He was grinning but it was a very odd strained sort of grin .Harry suddenly became aware that he was still wearing the scarlet Gryffindor banner that Lee had tied around him .He hastened to take it off but it was knotted very tightly .Ron lay on the bed without moving watching Harry struggle to remove it .So he said when Harry had finally removed the banner and thrown it into a corner .Congratulations .What dyou mean congratulations ?said Harry staring at Ron .There was definitely something wrong with the way Ron was smiling It was more like a grimace .Well .no one else got across the Age Line said Ron .Not even Fred and George .What did you use the Invisibility Cloak ?The Invisibility Cloak wouldnt have got me over that line said Harry slowly .Oh right said Ron .I thought you mightve told me if it was the cloak .because it wouldve covered both of us wouldnt it ?But you found another way did you ?Listen said Harry I didnt put my name in that goblet .Someone else mustve done it .Ron raised his eyebrows .What would they do that for ?I dunno said Harry .He felt it would sound very melodramatic to say To kill me .Rons eyebrows rose so high that they were in danger of disappearing into his hair .Its okay you know you can tell me the truth he said .If you dont want everyone else to know fine but I dont know why youre bothering to lie you didnt get into trouble for it did you ?That friend of the Fat Ladys that Violet shes already told us all Dumbledores letting you enter .A thousand Galleons prize money eh ?And you dont have to do endof year tests either .I didnt put my name in that goblet !said Harry starting to feel angry .Yeah okay said Ron in exactly the same sceptical tone as Cedric .Only you said this morning youd have done it last night and no one wouldve seen you . .Im not stupid you know .Youre doing a really good impression of it Harry snapped .Yeah ?said Ron and there was no trace of a grin forced or otherwise on his face now .You want to get to bed Harry .I expect youll need to be up early tomorrow for a photocall or something .He wrenched the hangings shut around his four poster leaving Harry standing there by the door staring at the dark red velvet curtains now hiding one of the few people he had been sure would believe him .THE WEIGHING OF THE WANDS When Harry woke up on Sunday morning it took him a moment to remember why he felt so miserable and worried .Then the memory of the previous night rolled over him .He sat up and ripped back the curtains of his own fourposter intending to talk to Ron to force Ron to believe him only to find that Rons bed was empty he had obviously gone down to breakfast .Harry dressed and went down the spiral staircase into the common room .The moment he appeared the people who had already finished breakfast broke into applause again .The prospect of going down into the Great Hall and facing the rest of the Gryffindors all treating him like some sort of hero was not inviting it was that however or stay here and allow himself to be cornered by the Creevey brothers who were both beckoning frantically to him to join them .He walked resolutely over to the portrait hole pushed it open climbed out of it and found himself facetoface with Hermione .Hello she said holding up a stack of toast which she was carrying in a napkin .I brought you this .Want to go for a walk ?Good idea said Harry gratefully .They went downstairs crossed the entrance hall quickly without looking in at the Great Hall and were soon striding across the lawn toward the lake where the Durmstrang ship was moored reflected blackly in the water .It was a chilly morning and they kept moving munching their toast as Harry told Hermione exactly what had happened after he had left the Gryffindor table the night before .To his immense relief Hermione accepted his story without question .Well of course I knew you hadnt entered yourself she said when hed finished telling her about the scene in the chamber off the Hall .The look on your face when Dumbledore read out your name !But the question is who did put it in ?Because Moodys right Harry .I dont think any student could have done it .theyd never be able to fool the Goblet or get over Dumbledore s Have you seen Ron ?Harry interrupted .Hermione hesitated .Erm .yes .he was at breakfast she said .Does he still think I entered myself ?Well .no I dont think so .not really said Hermione awkwardly .Whats that supposed to mean ‘not really ?Oh Harry isnt it obvious ?Hermione said despairingly .Hes jealous !Jealous ?Harry said incredulously .Jealous of what ?He wants to make a prat of himself in front of the whole school does he ?Look said Hermione patiently its always you who gets all the attention you know it is .I know its not your fault she added quickly seeing Harry open his mouth furiously .I know you dont ask for it .but well you know Rons got all those brothers to compete against at home and youre his best friend and youre really famous hes always shunted to one side whenever people see you and he puts up with it and he never mentions it but I suppose this is just one time too many .Great said Harry bitterly .Really great .Tell him from me Ill swap any time he wants .Tell him from me hes welcome to it .People gawping at my forehead everywhere I go .Im not telling him anything Hermione said shortly .Tell him yourself .Its the only way to sort this out .Im not running around after him trying to make him grow up !Harry said so loudly that several owls in a nearby tree took flight in alarm .Maybe hell believe Im not enjoying myself once Ive got my neck broken or Thats not funny said Hermione quietly .Thats not funny at all .She looked extremely anxious .Harry Ive been thinking you know what weve got to do dont you ?Straight away the moment we get back to the castle ?Yeah give Ron a good kick up the Write to Sirius .Youve got to tell him whats happened .He asked you to keep him posted on everything thats going on at Hogwarts .Its almost as if he expected something like this to happen .I brought some parchment and a quill out with me Come off it said Harry looking around to check that they couldnt be overheard but the grounds were quite deserted .He came back to the country just because my scar twinged .Hell probably come bursting right into the castle if I tell him someones entered me in the Triwizard Tournament Hed want you to tell him said Hermione sternly .Hes going to find out anyway How ?Harry this isnt going to be kept quiet said Hermione very seriously .This tournaments famous and youre famous .Ill be really surprised if there isnt anything in the Daily Prophet about you competing .Youre already in half the books about YouKnow Who you know .and Sirius would rather hear it from you I know he would .Okay okay Ill write to him said Harry throwing his last piece of toast into the lake .They both stood and watched it floating there for a moment before a large tentacle rose out of the water and scooped it beneath the surface .Then they returned to the castle .Whose owl am I going to use ?Harry said as they climbed the stairs .He told me not to use Hedwig again .Ask Ron if you can borrow Im not asking Ron for anything Harry said flatly .Well borrow one of the school owls then anyone can use them said Hermione .They went up to the Owlery Hermione gave Harry a piece of parchment a quill and a bottle of ink then strolled around the long lines of perches looking at all the different owls while Harry sat down against a wall and wrote his letter .Dear Sirius You told me to keep you posted on whats happening at Hogwarts so here goes I dont know if youve heard but the Triwizard Tournaments happening this year and on Saturday night I got picked as a fourth champion .I dont know who put my name in the Goblet of Fire because I didnt The other Hogwarts champion is Cedric Diggory from Hufflepuff He paused at this point thinking .He had an urge to say something about the large weight of anxiety that seemed to have settled inside his chest since last night but he couldnt think how to translate this into words so he simply dipped his quill back into the ink bottle and wrote Hope youre okay and Buckbeak Harry Finished he told Hermione getting to his feet and brushing straw off his robes .At this Hedwig came fluttering down onto his shoulder and held out her leg .I cant use you Harry told her looking around for the school owls .Ive got to use one of these .Hedwig gave a very loud hoot and took off so suddenly that her talons cut into his shoulder .She kept her back to Harry all the time he was tying his letter to the leg of a large barn owl .When the barn owl had flown off Harry reached out to stroke Hedwig but she clicked her beak furiously and soared up into the rafters out of reach .First Ron then you said Harry angrily .This isnt my fault .If Harry had thought that matters would improve once everyone got used to the idea of him being champion the following day showed him how mistaken he was .He could no longer avoid the rest of the school once he was back at lessons and it was clear that the rest of the school just like the Gryffindors thought Harry had entered himself for the tournament .Unlike the Gryffindors however they did not seem impressed .The Hufflepuffs who were usually on excellent terms with the Gryffindors had turned remarkably cold toward the whole lot of them .One Herbology lesson was enough to demonstrate this .It was plain that the Hufflepuffs felt that Harry had stolen their champions glory a feeling exacerbated perhaps by the fact that Hufflepuff House very rarely got any glory and that Cedric was one of the few who had ever given them any having beaten Gryffindor once at Quidditch .Ernie Macmillan and Justin Finch Fletchley with whom Harry normally got on very well did not talk to him even though they were repotting Bouncing Bulbs at the same tray though they did laugh rather unpleasantly when one of the Bouncing Bulbs wriggled free from Harrys grip and smacked him hard in the face .Ron wasnt talking to Harry either .Hermione sat between them making very forced conversation but though both answered her normally they avoided making eye contact with each other .Harry thought even Professor Sprout seemed distant with him but then she was Head of Hufflepuff House .He would have been looking forward to seeing Hagrid under normal circumstances but Care of Magical Creatures meant seeing the Slytherins too the first time he would come facetoface with them since becoming champion .Predictably Malfoy arrived at Hagrid s cabin with his familiar sneer firmly in place .Ah look boys its the champion he said to Crabbe and Goyle the moment he got within earshot of Harry .Got your autograph books ?Better get a signature now because I doubt hes going to be around much longer .Half the Triwizard champions have died .how long dyou reckon youre going to last Potter ?Ten minutes into the first tasks my bet .Crabbe and Goyle guffawed sycophantically but Malfoy had to stop there because Hagrid emerged from the back of his cabin balancing a teetering tower of crates each containing a very large BlastEnded Skrewt .To the classs horror Hagrid proceeded to explain that the reason the skrewts had been killing one another was an excess of pentup energy and that the solution would be for each student to fix a leash on a skrewt and take it for a short walk .The only good thing about this plan was that it distracted Malfoy completely .Take this thing for a walk ?he repeated in disgust staring into one of the boxes .And where exactly are we supposed to fix the leash ?Around the sting the blasting end or the sucker ?Roun the middle said Hagrid demonstrating .Er yeh might want ter put on yer dragonhide gloves jus as an extra precaution like .Harry you come here an help me with this big one .Hagrids real intention however was to talk to Harry away from the rest of the class .He waited until everyone else had set off with their skrewts then turned to Harry and said very seriously So yer competin Harry .In the tournament .School champion .One of the champions Harry corrected him .Hagrids beetleblack eyes looked very anxious under his wild eyebrows .No idea who put yeh in fer it Harry ?You believe I didnt do it then ?said Harry concealing with difficulty the rush of gratitude he felt at Hagrids words .Course I do Hagrid grunted .Yeh say it wasn you an I believe yeh an Dumbledore believes yer an all .Wish I knew who did do it said Harry bitterly .The pair of them looked out over the lawn the class was widely scattered now and all in great difficulty .The skrewts were now over three feet long and extremely powerful .No longer shellless and colorless they had developed a kind of thick grayish shiny armor .They looked like a cross between giant scorpions and elongated crabs but still without recognizable heads or eyes .They had become immensely strong and very hard to control .Look like theyre havin fun don they ?Hagrid said happily .Harry assumed he was talking about the skrewts because his classmates certainly werent every now and then with an alarming bang one of the skrewts ends would explode causing it to shoot forward several yards and more than one person was being dragged along on their stomach trying desperately to get back on their feet .Ah I don know Harry Hagrid sighed suddenly looking back down at him with a worried expression on his face .School champion .everythin seems ter happen ter you doesn it ?Harry didnt answer .Yes everything did seem to happen to him .that was more or less what Hermione had said as they had walked around the lake and that was the reason according to her that Ron was no longer talking to him .The next few days were some of Harrys worst at Hogwarts .The closest he had ever come to feeling like this had been during those months in his second year when a large part of the school had suspected him of attacking his fellow students .But Ron had been on his side then .He thought he could have coped with the rest of the schools behavior if he could just have had Ron back as a friend but he wasnt going to try and persuade Ron to talk to him if Ron didnt want to .Nevertheless it was lonely with dislike pouring in on him from all sides .He could understand the Hufflepuffs attitude even if he didnt like it they had their own champion to support .He expected nothing less than vicious insults from the Slytherins he was highly unpopular there and always had been because he had helped Gryffindor beat them so often both at Quidditch and in the InterHouse Championship .But he had hoped the Ravenclaws might have found it in their hearts to support him as much as Cedric .He was wrong however .Most Ravenclaws seemed to think that he had been desperate to earn himself a bit more fame by tricking the goblet into accepting his name .Then there was the fact that Cedric looked the part of a champion so much more than he did .Exceptionally handsome with his straight nose dark hair and gray eyes it was hard to say who was receiving more admiration these days Cedric or Viktor Krum .Harry actually saw the same sixthyear girls who had been so keen to get Krums autograph begging Cedric to sign their school bags one lunchtime .Meanwhile there was no reply from Sirius Hedwig was refusing to come anywhere near him Professor Trelawney was predicting his death with even more certainty than usual and he did so badly at Summoning Charms in Professor Flitwicks class that he was given extra homework the only person to get any apart from Neville .Its really not that difficult Harry Hermione tried to reassure him as they left Flitwicks class she had been making objects zoom across the room to her all lesson as though she were some sort of weird magnet for board dusters wastepaper baskets and lunascopes .You just werent concentrating properly Wonder why that was said Harry darkly as Cedric Diggory walked past surrounded by a large group of simpering girls all of whom looked at Harry as though he were a particularly large BlastEnded Skrewt .Still never mind eh ?Double Potions to look forward to this afternoon .Double Potions was always a horrible experience but these days it was nothing short of torture .Being shut in a dungeon for an hour and a half with Snape and the Slytherins all of whom seemed determined to punish Harry as much as possible for daring to become school champion was about the most unpleasant thing Harry could imagine .He had already struggled through one Fridays worth with Hermione sitting next to him intoning ignore them ignore them ignore them under her breath and he couldnt see why today should be any better .When he and Hermione arrived at Snape s dungeon after lunch they found the Slytherins waiting outside each and every one of them wearing a large badge on the front of his or her robes .For one wild moment Harry thought they were S .P .E .W .badges then he saw that they all bore the same message in luminous red letters that burnt brightly in the dimly lit underground passage Support CEDRIC DIGGORY The REAL Hogwarts Champion Like them Potter ?said Malfoy loudly as Harry approached .And this isnt all they do look !He pressed his badge into his chest and the message upon it vanished to be replaced by another one which glowed green POTTER STINKS The Slytherins howled with laughter .Each of them pressed their badges too until the message POTTER STINKS was shining brightly all around Harry .He felt the heat rise in his face and neck .Oh very funny Hermione said sarcastically to Pansy Parkinson and her gang of Slytherin girls who were laughing harder than anyone really witty .Ron was standing against the wall with Dean and Seamus .He wasnt laughing but he wasnt sticking up for Harry either .Want one Granger ?said Malfoy holding out a badge to Hermione .Ive got loads .But dont touch my hand now .Ive just washed it you see dont want a Mudblood sliming it up .Some of the anger Harry had been feeling for days and days seemed to burst through a dam in his chest .He had reached for his wand before hed thought what he was doing .People all around them scrambled out of the way backing down the corridor .Harry !Hermione said warningly .Go on then Potter Malfoy said quietly drawing out his own wand .Moodys not here to look after you now do it if youve got the guts For a split second they looked into each others eyes then at exactly the same time both acted .FurnunculusV Harry yelled .DensaugeoV screamed Malfoy .Jets of light shot from both wands hit each other in midair and ricocheted off at angles Harrys hit Goyle in the face and Malfoys hit Hermione .Goyle bellowed and put his hands to his nose where great ugly boils were springing up Hermione whimpering in panic was clutching her mouth .Hermione !Ron had hurried forward to see what was wrong with her Harry turned and saw Ron dragging Hermione s hand away from her face .It wasnt a pretty sight .Hermione s front teeth already larger than average were now growing at an alarming rate she was looking more and more like a beaver as her teeth elongated past her bottom lip toward her chin panicstricken she felt them and let out a terrified cry .And what is all this noise about ?said a soft deadly voice .Snape had arrived .The Slytherins clamored to give their explanations Snape pointed a long yellow finger at Malfoy and said Explain .Potter attacked me sir We attacked each other at the same time !Harry shouted .and he hit Goyle look Snape examined Goyle whose face now resembled something that would have been at home in a book on poisonous fungi .Hospital wing Goyle Snape said calmly .Malfoy got Hermione !Ron said .Lood He forced Hermione to show Snape her teeth she was doing her best to hide them with her hands though this was difficult as they had now grown down past her collar .Pansy Parkinson and the other Slytherin girls were doubled up with silent giggles pointing at Hermione from behind Snape s back .Snape looked coldly at Hermione then said I see no difference .Hermione let out a whimper her eyes filled with tears she turned on her heel and ran ran all the way up the corridor and out of sight .It was lucky perhaps that both Harry and Ron started shouting at Snape at the same time lucky their voices echoed so much in the stone corridor for in the confused din it was impossible for him to hear exactly what they were calling him .He got the gist however .Lets see he said in his silkiest voice .Fifty points from Gryffindor and a detention each for Potter and Weasley .Now get inside or itll be a weeks worth of detentions .Harrys ears were ringing .The injustice of it made him want to curse Snape into a thousand slimy pieces .He passed Snape walked with Ron to the back of the dungeon and slammed his bag down onto the table .Ron was shaking with anger too for a moment it felt as though everything was back to normal between them but then Ron turned and sat down with Dean and Seamus instead leaving Harry alone at his table .On the other side of the dungeon Malfoy turned his back on Snape and pressed his badge smirking .POTTER STINKS flashed once more across the room .Harry sat there staring at Snape as the lesson began picturing horrific things happening to him .If only he knew how to do the Cruciatus Curse .hed have Snape flat on his back like that spider jerking and twitching .Antidotes !said Snape looking around at them all his cold black eyes glittering unpleasantly .You should all have prepared your recipes now .I want you to brew them carefully and then we will be selecting someone on whom to test one .Snapes eyes met Harrys and Harry knew what was coming .Snape was going to poison him .Harry imagined picking up his cauldron and sprinting to the front of the class and bringing it down on Snapes greasy head And then a knock on the dungeon door burst in on Harrys thoughts .It was Colin Creevey he edged into the room beaming at Harry and walked up to Snapes desk at the front of the room .Yes ?said Snape curtly .Please sir Im supposed to take Harry Potter upstairs .Snape stared down his hooked nose at Colin whose smile faded from his eager face .Potter has another hour of Potions to complete said Snape coldly .He will come upstairs when this class is finished .Colin went pink .Sir sir Mr Bagman wants him he said nervously .All the champions have got to go I think they want to take photographs .Harry would have given anything he owned to have stopped Colin saying those last few words .He chanced half a glance at Ron but Ron was staring determinedly at the ceiling .Very well very well Snape snapped .Potter leave your things here I want you back down here later to test your antidote .Please sir hes got to take his things with him squeaked Colin .All the champions Very well said Snape .Potter take your bag and get out of my sight !Harry swung his bag over his shoulder got up and headed for the door .As he walked through the Slytherin desks POTTER STINKS flashed at him from every direction .Its amazing isnt it Harry ?said Colin starting to speak the moment Harry had closed the dungeon door behind him .Isnt it though ?You being champion ?Yeah really amazing said Harry heavily as they set off toward the steps into the entrance hall .What do they want photos for Colin ?The Daily Prophet I think !Great said Harry dully .Exactly what I need .More publicity .Good luck !said Colin when they had reached the right room .Harry knocked on the door and entered .He was in a fairly small classroom most of the desks had been pushed away to the back of the room leaving a large space in the middle three of them however had been placed endtoend in front of the blackboard and covered with a long length of velvet .Five chairs had been set behind the velvetcovered desks and Ludo Bagman was sitting in one of them talking to a witch Harry had never seen before who was wearing magenta robes .Viktor Krum was standing moodily in a corner as usual and not talking to anybody .Cedric and Fleur were in conversation .Fleur looked a good deal happier than Harry had seen her so far she kept throwing back her head so that her long silvery hair caught the light .A paunchy man holding a large black camera that was smoking slightly was watching Fleur out of the corner of his eye .Bagman suddenly spotted Harry got up quickly and bounded forward .Ah here he is !Champion number four !In you come Harry in you come .nothing to worry about its just the wand weighing ceremony the rest of the judges will be here in a moment Wand weighing ?Harry repeated nervously .We have to check that your wands are fully functional no problems you know as theyre your most important tools in the tasks ahead said Bagman .The experts upstairs now with Dumbledore .And then theres going to be a little photo shoot .This is Rita Skeeter he added gesturing toward the witch in magenta robes .Shes doing a small piece on the tournament for the Daily Prophet .Maybe not that small Ludo said Rita Skeeter her eyes on Harry .Her hair was set in elaborate and curiously rigid curls that contrasted oddly with her heavyjawed face .She wore jeweled spectacles .The thick fingers clutching her crocodileskin handbag ended in twoinch nails painted crimson .I wonder if I could have a little word with Harry before we start ?she said to Bagman but still gazing fixedly at Harry .The youngest champion you know .to add a bit of color ?Certainly !cried Bagman .That is if Harry has no objection ?Er said Harry .Lovely said Rita Skeeter and in a second her scarlettaloned fingers had Harrys upper arm in a surprisingly strong grip and she was steering him out of the room again and opening a nearby door .We dont want to be in there with all that noise she said .Lets see .ah yes this is nice and cozy .It was a broom cupboard .Harry stared at her .Come along dear thats right lovely said Rita Skeeter again perching herself precariously upon an upturned bucket pushing Harry down onto a cardboard box and closing the door throwing them into darkness .Lets see now .She unsnapped her crocodileskin handbag and pulled out a handful of candles which she lit with a wave of her wand and magicked into midair so that they could see what they were doing .You wont mind Harry if I use a QuickQuotes Quill ?It leaves me free to talk to you normally .A what ?said Harry .Rita Skeeters smile widened .Harry counted three gold teeth .She reached again into her crocodile bag and drew out a long acidgreen quill and a roll of parchment which she stretched out between them on a crate of Mrs Skowers AllPurpose Magical Mess Remover .She put the tip of the green quill into her mouth sucked it for a moment with apparent relish then placed it upright on the parchment where it stood balanced on its point quivering slightly .Testing .my name is Rita Skeeter Daily Prophet reporter .Harry looked down quickly at the quill .The moment Rita Skeeter had spoken the green quill had started to scribble skidding across the parchment Attractive blonde Rita Skeeter fortythree whose savage quill has punctured many inflated reputations Lovely said Rita Skeeter yet again and she ripped the top piece of parchment off crumpled it up and stuffed it into her handbag .Now she leaned toward Harry and said So Harry .what made you decide to enter the Triwizard Tournament ?Er said Harry again but he was distracted by the quill .Even though he wasnt speaking it was dashing across the parchment and in its wake he could make out a fresh sentence An ugly scar souvenir of a tragic past disfigures the otherwise charming face of Harry Potter whose eyes Ignore the quill Harry said Rita Skeeter firmly .Reluctantly Harry looked up at her instead .Now why did you decide to enter the tournament Harry ?I didnt said Harry .I dont know how my name got into the Goblet of Fire .I didnt put it in there .Rita Skeeter raised one heavily penciled eyebrow .Come now Harry theres no need to be scared of getting into trouble .We all know you shouldnt really have entered at all .But dont worry about that .Our readers love a rebel .But I didnt enter Harry repeated .I dont know who How do you feel about the tasks ahead ?said Rita Skeeter .Excited ?Nervous ?I havent really thought .yeah nervous I suppose said Harry .His insides squirmed uncomfortably as he spoke .Champions have died in the past havent they ?said Rita Skeeter briskly .Have you thought about that at all ?Well .they say its going to be a lot safer this year said Harry .The quill whizzed across the parchment between them back and forward as though it were skating .Of course youve looked death in the face before havent you ?said Rita Skeeter watching him closely .How would you say thats affected you ?Er said Harry yet again .Do you think that the trauma in your past might have made you keen to prove yourself ?To live up to your name ?Do you think that perhaps you were tempted to enter the Triwizard Tournament because I didnt enter said Harry starting to feel irritated .Can you remember your parents at all ?said Rita Skeeter talking over him .No said Harry .How do you think theyd feel if they knew you were competing in the Triwizard Tournament ?Proud ?Worried ?Angry ?Harry was feeling really annoyed now .How on earth was he to know how his parents would feel if they were alive ?He could feel Rita Skeeter watching him very intently .Frowning he avoided her gaze and looked down at words the quill had just written Tears fill those startling green eyes as our conversation turns to the parents he can barely remember .I have NOT got tears in my eyes !said Harry loudly .Before Rita Skeeter could say a word the door of the broom cupboard was pulled open .Harry looked around blinking in the bright light .Albus Dumbledore stood there looking down at both of them squashed into the cupboard .Dumbledorel cried Rita Skeeter with every appearance of delight but Harry noticed that her quill and the parchment had suddenly vanished from the box of Magical Mess Remover and Ritas clawed fingers were hastily snapping shut the clasp of her crocodileskin bag .How are you ?she said standing up and holding out one of her large mannish hands to Dumbledore .I hope you saw my piece over the summer about the International Confederation of Wizards Conference ?Enchantingly nasty said Dumbledore his eyes twinkling .I particularly enjoyed your description of me as an obsolete dingbat .Rita Skeeter didnt look remotely abashed .I was just making the point that some of your ideas are a little oldfashioned Dumbledore and that many wizards in the street I will be delighted to hear the reasoning behind the rudeness Rita said Dumbledore with a courteous bow and a smile but Im afraid we will have to discuss the matter later .The Weighing of the Wands is about to start and it cannot take place if one of our champions is hidden in a broom cupboard .Very glad to get away from Rita Skeeter Harry hurried back into the room .The other champions were now sitting in chairs near the door and he sat down quickly next to Cedric looking up at the velvet covered table where four of the five judges were now sitting Professor Karkaroff Madame Maxime Mr Crouch and Ludo Bagman .Rita Skeeter settled herself down in a corner Harry saw her slip the parchment out of her bag again spread it on her knee suck the end of the QuickQuotes Quill and place it once more on the parchment .May I introduce Mr Ollivander ?said Dumbledore taking his place at the judges table and talking to the champions .He will be checking your wands to ensure that they are in good condition before the tournament .Harry looked around and with a jolt of surprise saw an old wizard with large pale eyes standing quietly by the window .Harry had met Mr Ollivander before he was the wandmaker from whom Harry had bought his own wand over three years ago in Diagon Alley .Mademoiselle Delacour could we have you first please ?said Mr Ollivander stepping into the empty space in the middle of the room .Fleur Delacour swept over to Mr Ollivander and handed him her wand .Hmmm .he said .He twirled the wand between his long fingers like a baton and it emitted a number of pink and gold sparks .Then he held it close to his eyes and examined it carefully .Yes he said quietly nine and a half inches .inflexible .rosewood .and containing .dear me An air from ze ead of a veela said Fleur .One of my grandmuzzers .So Fleur was part veela thought Harry making a mental note to tell Ron .then he remembered that Ron wasnt speaking to him .Yes said Mr Ollivander yes Ive never used veela hair myself of course .I find it makes for rather temperamental wands .however to each his own and if this suits you .Mr Ollivander ran his fingers along the wand apparently checking for scratches or bumps then he muttered OrchideousV and a bunch of flowers burst from the wand tip .Very well very well its in fine working order said Mr Ollivander scooping up the flowers and handing them to Fleur with her wand .Mr Diggory you next .Fleur glided back to her seat smiling at Cedric as he passed her .Ah now this is one of mine isnt it ?said Mr Ollivander with much more enthusiasm as Cedric handed over his wand .Yes I remember it well .Containing a single hair from the tail of a particularly fine male unicorn .must have been seventeen hands nearly gored me with his horn after I plucked his tail .Twelve and a quarter inches .ash .pleasantly springy .Its in fine condition .You treat it regularly ?Polished it last night said Cedric grinning .Harry looked down at his own wand .He could see finger marks all over it .He gathered a fistful of robe from his knee and tried to rub it clean surreptitiously .Several gold sparks shot out of the end of it .Fleur Delacour gave him a very patronizing look and he desisted .Mr Ollivander sent a stream of silver smoke rings across the room from the tip of Cedrics wand pronounced himself satisfied and then said Mr Krum if you please .Viktor Krum got up and slouched roundshouldered and duckfooted toward Mr Ollivander .He thrust out his wand and stood scowling with his hands in the pockets of his robes .Hmm said Mr Ollivander this is a Gregorovitch creation unless Im much mistaken ?A fine wand maker though the styling is never quite what I .however .He lifted the wand and examined it minutely turning it over and over before his eyes .Yes .hornbeam and dragon heartstring ?he shot at Krum who nodded .Rather thicker than one usually sees .quite rigid .ten and a quarter inches .Avis .The hornbeam wand let off a blast like a gun and a number of small twittering birds flew out of the end and through the open window into the watery sunlight .Good said Mr Ollivander handing Krum back his wand .Which leaves .Mr Potter .Harry got to his feet and walked past Krum to Mr Ollivander .He handed over his wand .aah yes said Mr Ollivander his pale eyes suddenly gleaming .Yes yes yes .How well I remember .Harry could remember too .He could remember it as though it had happened yesterday .Four summers ago on his eleventh birthday he had entered Mr Ollivanders shop with Hagrid to buy a wand .Mr Ollivander had taken his measurements and then started handing him wands to try .Harry had waved what felt like every wand in the shop until at last he had found the one that suited him this one which was made of holly eleven inches long and contained a single feather from the tail of a phoenix .Mr Ollivander had been very surprised that Harry had been so compatible with this wand .Curious he had said curious and not until Harry asked what was curious had Mr Ollivander explained that the phoenix feather in Harrys wand had come from the same bird that had supplied the core of Lord Voldemorts .Harry had never shared this piece of information with anybody .He was very fond of his wand and as far as he was concerned its relation to Voldemorts wand was something it couldnt help rather as he couldnt help being related to Aunt Petunia .However he really hoped that Mr Ollivander wasnt about to tell the room about it .He had a funny feeling Rita Skeeters QuickQuotes Quill might just explode with excitement if he did .Mr Ollivander spent much longer examining Harrys wand than anyone elses .Eventually however he made a fountain of wine shoot out of it and handed it back to Harry announcing that it was still in perfect condition .Thank you all said Dumbledore standing up at the judges table .You may go back to your lessons now or perhaps it would be quicker just to go down to dinner as they are about to end Feeling that at last something had gone right today Harry got up to leave but the man with the black camera jumped up and cleared his throat .Photos Dumbledore photos !cried Bagman excitedly .All the judges and champions what do you think Rita ?Er yes lets do those first said Rita Skeeter whose eyes were upon Harry again .And then perhaps some individual shots .The photographs took a long time .Madame Maxime cast everyone else into shadow wherever she stood and the photographer couldnt stand far enough back to get her into the frame eventually she had to sit while everyone else stood around her .Karkaroff kept twirling his goatee around his finger to give it an extra curl Krum whom Harry would have thought would have been used to this sort of thing skulked half hidden at the back of the group .The photographer seemed keenest to get Fleur at the front but Rita Skeeter kept hurrying forward and dragging Harry into greater prominence .Then she insisted on separate shots of all the champions .At last they were free to go .Harry went down to dinner .Hermione wasnt there he supposed she was still in the hospital wing having her teeth fixed .He ate alone at the end of the table then returned to Gryffindor Tower thinking of all the extra work on Summoning Charms that he had to do .Up in the dormitory he came across Ron .Youve had an owl said Ron brusquely the moment he walked in .He was pointing at Harrys pillow .The school barn owl was waiting for him there .Oh right said Harry .And weve got to do our detentions tomorrow night Snapes dungeon said Ron .He then walked straight out of the room not looking at Harry .For a moment Harry considered going after him he wasnt sure whether he wanted to talk to him or hit him both seemed quite appealing but the lure of Siriuss answer was too strong .Harry strode over to the barn owl took the letter off its leg and unrolled it .Harry I cant say everything I would like to in a letter its too risky in case the owl is intercepted we need to talk facetoface .Can you ensure that you are alone by the fire in Gryffindor Tower at one oclock in the morning on the 22nd of November ?I know better than anyone that you can look after yourself and while youre around Dumbledore and Moody I dont think anyone will be able to hurt you .However someone seems to be having a good try .Entering you in that tournament would have been very risky especially right under Dumbledore s nose .Be on the watch Harry .I still want to hear about anything unusual .Let me know about the 22nd of November as quickly as you can .Sirius THE HUNGARIAN HORNTAIL The prospect of talking facetoface with Sirius was all that sustained Harry over the next fortnight the only bright spot on a horizon that had never looked darker .The shock of finding himself school champion had worn off slightly now and the fear of what was facing him had started to sink in .The first task was drawing steadily nearer he felt as though it were crouching ahead of him like some horrific monster barring his path .He had never suffered nerves like these they were way beyond anything he had experienced before a Quidditch match not even his last one against Slytherin which had decided who would win the Quidditch Cup .Harry was finding it hard to think about the future at all he felt as though his whole life had been leading up to and would finish with the first task .Admittedly he didnt see how Sirius was going to make him feel any better about having to perform an unknown piece of difficult and dangerous magic in front of hundreds of people but the mere sight of a friendly face would be something at the moment .Harry wrote back to Sirius saying that he would be beside the common room fire at the time Sirius had suggested and he and Hermione spent a long time going over plans for forcing any stragglers out of the common room on the night in question .If the worst came to the worst they were going to drop a bag of Dungbombs but they hoped they wouldnt have to resort to that Filch would skin them alive .In the meantime life became even worse for Harry within the confines of the castle for Rita Skeeter had published her piece about the Triwizard Tournament and it had turned out to be not so much a report on the tournament as a highly colored life story of Harry .Much of the front page had been given over to a picture of Harry the article continuing on pages two six and seven had been all about Harry the names of the Beauxbatons and Durmstrang champions misspelled had been squashed into the last line of the article and Cedric hadnt been mentioned at all .The article had appeared ten days ago and Harry still got a sick burning feeling of shame in his stomach every time he thought about it .Rita Skeeter had reported him saying an awful lot of things that he couldnt remember ever saying in his life let alone in that broom cupboard .I suppose I get my strength from my parents .I know theyd be very proud of me if they could see me now . .Yes sometimes at night I still cry about them Im not ashamed to admit it .I know nothing will hurt me during the tournament because theyre watching over me .But Rita Skeeter had gone even further than transforming his ers into long sickly sentences She had interviewed other people about him too .Harry has at last found love at Hogwarts .His close friend Colin Creevey says that Harry is rarely seen out of the company of one Hermione Granger a stunningly pretty Muggleborn girl who like Harry is one of the top students in the school .From the moment the article had appeared Harry had had to endure people Slytherins mainly quoting it at him as he passed and making sneering comments .Want a hanky Potter in case you start crying in Transfiguration ?Since when have you been one of the top students in the school Potter ?Or is this a school you and Longbottom have set up together ?Hey Harry !Yeah thats right !Harry found himself shouting as he wheeled around in the corridor having had just about enough .Ive just been crying my eyes out over my dead mum and Im just off to do a bit more .No it was just you dropped your quill .It was Cho .Harry felt the color rising in his face .Oh right sorry he muttered taking the quill back .Er .good luck on Tuesday she said .I really hope you do well .Which left Harry feeling extremely stupid .Hermione had come in for her fair share of unpleasantness too but she hadnt yet started yelling at innocent bystanders in fact Harry was full of admiration for the way she was handling the situation .Stunningly pretty ?Her ?Pansy Parkinson had shrieked the first time she had come facetoface with Hermione after Ritas article had appeared .What was she judging against a chipmunk ?Ignore it Hermione said in a dignified voice holding her head in the air and stalking past the sniggering Slytherin girls as though she couldnt hear them .Just ignore it Harry .But Harry couldnt ignore it .Ron hadnt spoken to him at all since he had told him about Snapes detentions .Harry had half hoped they would make things up during the two hours they were forced to pickle rats brains in Snapes dungeon but that had been the day Ritas article had appeared which seemed to have confirmed Rons belief that Harry was really enjoying all the attention .Hermione was furious with the pair of them she went from one to the other trying to force them to talk to each other but Harry was adamant He would talk to Ron again only if Ron admitted that Harry hadnt put his name in the Goblet of Fire and apologized for calling him a liar .I didnt start this Harry said stubbornly .Its his problem .You miss him !Hermione said impatiently .And I know he misses you Miss him ?said Harry .I dont miss him .But this was a downright lie .Harry liked Hermione very much but she just wasnt the same as Ron .There was much less laughter and a lot more hanging around in the library when Hermione was your best friend .Harry still hadnt mastered Summoning Charms he seemed to have developed something of a block about them and Hermione insisted that learning the theory would help .They consequently spent a lot of time poring over books during their lunchtimes .Viktor Krum was in the library an awful lot too and Harry wondered what he was up to .Was he studying or was he looking for things to help him through the first task ?Hermione often complained about Krum being there not that he ever bothered them but because groups of giggling girls often turned up to spy on him from behind bookshelves and Hermione found the noise distracting .Hes not even goodlooking !she muttered angrily glaring at Krums sharp profile .They only like him because hes famous !They wouldnt look twice at him if he couldnt do that Wonky Faint thing Wronski Feint said Harry through gritted teeth .Quite apart from liking to get Quidditch terms correct it caused him another pang to imagine Rons expression if he could have heard Hermione talking about Wonky Faints .It is a strange thing but when you are dreading something and would give anything to slow down time it has a disobliging habit of speeding up .The days until the first task seemed to slip by as though someone had fixed the clocks to work at double speed .Harrys feeling of barely controlled panic was with him wherever he went as everpresent as the snide comments about the Daily Prophet article .On the Saturday before the first task all students in the third year and above were permitted to visit the village of Hogsmeade .Hermione told Harry that it would do him good to get away from the castle for a bit and Harry didnt need much persuasion .What about Ron though ?he said .Dont you want to go with him ?Oh .well .Hermione went slightly pink .I thought we might meet up with him in the Three Broomsticks .No said Harry flatly .Oh Harry this is so stupid Ill come but Im not meeting Ron and Im wearing my Invisibility Cloak .Oh all right then .Hermione snapped but I hate talking to you in that cloak I never know if Im looking at you or not .So Harry put on his Invisibility Cloak in the dormitory went back downstairs and together he and Hermione set off for Hogsmeade .Harry felt wonderfully free under the cloak he watched other students walking past them as they entered the village most of them sporting Support Cedric Diggory badges but no horrible remarks came his way for a change and nobody was quoting that stupid article .People keep looking at me now said Hermione grumpily as they came out of Honeydukes Sweetshop later eating large creamfilled chocolates .They think Im talking to myself .Dont move your lips so much then .Come on please just take off your cloak for a bit no ones going to bother you here .Oh yeah ?said Harry .Look behind you .Rita Skeeter and her photographer friend had just emerged from the Three Broomsticks pub .Talking in low voices they passed right by Hermione without looking at her .Harry backed into the wall of Honeydukes to stop Rita Skeeter from hitting him with her crocodileskin handbag .When they were gone Harry said Shes staying in the village .I bet shes coming to watch the first task .As he said it his stomach flooded with a wave of molten panic .He didnt mention this he and Hermione hadnt discussed what was coming in the first task much he had the feeling she didnt want to think about it .Shes gone said Hermione looking right through Harry toward the end of the street .Why dont we go and have a butterbeer in the Three Broomsticks its a bit cold isnt it ?You dont have to talk to Ron !she added irritably correctly interpreting his silence .The Three Broomsticks was packed mainly with Hogwarts students enjoying their free afternoon but also with a variety of magical people Harry rarely saw anywhere else .Harry supposed that as Hogsmeade was the only allwizard village in Britain it was a bit of a haven for creatures like hags who were not as adept as wizards at disguising themselves .It was very hard to move through crowds in the Invisibility Cloak in case you accidentally trod on someone which tended to lead to awkward questions .Harry edged slowly toward a spare table in the corner while Hermione went to buy drinks .On his way through the pub Harry spotted Ron who was sitting with Fred George and Lee Jordan .Resisting the urge to give Ron a good hard poke in the back of the head he finally reached the table and sat down at it .Hermione joined him a moment later and slipped him a butterbeer under his cloak .I look like such an idiot sitting here on my own she muttered .Lucky I brought something to do .And she pulled out a notebook in which she had been keeping a record of S .P .E .W .members .Harry saw his and Rons names at the top of the very short list .It seemed a long time ago that they had sat making up those predictions together and Hermione had turned up and appointed them secretary and treasurer .You know maybe I should try and get some of the villagers involved in S .P .E .W .Hermione said thoughtfully looking around the pub .Yeah right said Harry .He took a swig of butterbeer under his cloak .Hermione when are you going to give up on this spew stuff ?When houseelves have decent wages and working conditions !she hissed back .You know Im starting to think its time for more direct action .I wonder how you get into the school kitchens ?No idea ask Fred and George said Harry .Hermione lapsed into thoughtful silence while Harry drank his butterbeer watching the people in the pub .All of them looked cheerful and relaxed .Ernie Macmillan and Hannah Abbott were swapping Chocolate Frog cards at a nearby table both of them sporting Support Cedric Diggory badges on their cloaks .Right over by the door he saw Cho and a large group of her Ravenclaw friends .She wasnt wearing a Cedric badge though .This cheered up Harry very slightly .What wouldnt he have given to be one of these people sitting around laughing and talking with nothing to worry about but homework ?He imagined how it would have felt to be here if his name hadnt come out of the Goblet of Fire .He wouldnt be wearing the Invisibility Cloak for one thing .Ron would be sitting with him .The three of them would probably be happily imagining what deadly dangerous task the school champions would be facing on Tuesday .Hed have been really looking forward to it watching them do whatever it was .cheering on Cedric with everyone else safe in a seat at the back of the stands .He wondered how the other champions were feeling .Every time he had seen Cedric lately he had been surrounded by admirers and looking nervous but excited .Harry glimpsed Fleur Delacour from time to time in the corridors she looked exactly as she always did haughty and unruffled .And Krum just sat in the library poring over books .Harry thought of Sirius and the tight tense knot in his chest seemed to ease slightly .He would be speaking to him in just over twelve hours for tonight was the night they were meeting at the common room fire assuming nothing went wrong as everything else had done lately .Look its Hagrid !said Hermione .The back of Hagrid s enormous shaggy head he had mercifully abandoned his bunches emerged over the crowd .Harry wondered why he hadnt spotted him at once as Hagrid was so large but standing up carefully he saw that Hagrid had been leaning low talking to Professor Moody .Hagrid had his usual enormous tankard in front of him but Moody was drinking from his hip flask .Madam Rosmerta the pretty landlady didnt seem to think much of this she was looking askance at Moody as she collected glasses from tables around them .Perhaps she thought it was an insult to her mulled mead but Harry knew better .Moody had told them all during their last Defense Against the Dark Arts lesson that he preferred to prepare his own food and drink at all times as it was so easy for Dark wizards to poison an unattended cup .As Harry watched he saw Hagrid and Moody get up to leave .He waved then remembered that Hagrid couldnt see him .Moody however paused his magical eye on the corner where Harry was standing .He tapped Hagrid in the small of the back being unable to reach his shoulder muttered something to him and then the pair of them made their way back across the pub toward Harry and Hermiones table .All right Hermione ?said Hagrid loudly .Hello said Hermione smiling back .Moody limped around the table and bent down Harry thought he was reading the S .P .E .W .notebook until he muttered Nice cloak Potter .Harry stared at him in amazement .The large chunk missing from Moodys nose was particularly obvious at a few inches distance .Moody grinned .Can your eye I mean can you ?Yeah it can see through Invisibility Cloaks Moody said quietly .And its come in useful at times I can tell you .Hagrid was beaming down at Harry too .Harry knew Hagrid couldnt see him but Moody had obviously told Hagrid he was there .Hagrid now bent down on the pretext of reading the S .P .E .W .notebook as well and said in a whisper so low that only Harry could hear it Harry meet me tonight at midnight at me cabin .Wear that cloak .Straightening up Hagrid said loudly Nice ter see yeh Hermione winked and departed .Moody followed him .Why does Hagrid want me to meet him at midnight ?Harry said very surprised .Does he ?said Hermione looking startled .I wonder what hes up to ?I dont know whether you should go Harry .She looked nervously around and hissed It might make you late for Sirius .It was true that going down to Hagrid s at midnight would mean cutting his meeting with Sirius very fine indeed Hermione suggested sending Hedwig down to Hagrid s to tell him he couldnt go always assuming she would consent to take the note of course Harry however thought it better just to be quick at whatever Hagrid wanted him for .He was very curious to know what this might be Hagrid had never asked Harry to visit him so late at night .At half past eleven that evening Harry who had pretended to go up to bed early pulled the Invisibility Cloak back over himself and crept back downstairs through the common room .Quite a few people were still in there .The Creevey brothers had managed to get hold of a stack of Support Cedric Diggoryl badges and were trying to bewitch them to make them say Support Harry Potter instead .So far however all they had managed to do was get the badges stuck on POTTER STINKS .Harry crept past them to the portrait hole and waited for a minute or so keeping an eye on his watch .Then Hermione opened the Fat Lady for him from outside as they had planned .He slipped past her with a whispered Thanks !and set off through the castle .The grounds were very dark .Harry walked down the lawn toward the lights shining in Hagrids cabin .The inside of the enormous Beauxbatons carriage was also lit up Harry could hear Madame Maxime talking inside it as he knocked on Hagrids front door .You there Harry ?Hagrid whispered opening the door and looking around .Yeah said Harry slipping inside the cabin and pulling the cloak down off his head .Whats up ?Got summat ter show yeh said Hagrid .There was an air of enormous excitement about Hagrid .He was wearing a flower that resembled an oversized artichoke in his buttonhole .It looked as though he had abandoned the use of axle grease but he had certainly attempted to comb his hair Harry could see the combs broken teeth tangled in it .Whatre you showing me ?Harry said warily wondering if the skrewts had laid eggs or Hagrid had managed to buy another giant threeheaded dog off a stranger in a pub .Come with me keep quiet an keep yerself covered with that cloak said Hagrid .We won take Fang he won like it .Listen Hagrid I cant stay long .Ive got to be back up at the castle by one oclock But Hagrid wasnt listening he was opening the cabin door and striding off into the night .Harry hurried to follow and found to his great surprise that Hagrid was leading him to the Beauxbatons carriage .Hagrid what ?Shhh !said Hagrid and he knocked three times on the door bearing the crossed golden wands .Madame Maxime opened it .She was wearing a silk shawl wrapped around her massive shoulders .She smiled when she saw Hagrid .Ah Agrid .it is time ?Bongsewer said Hagrid beaming at her and holding out a hand to help her down the golden steps .Madame Maxime closed the door behind her Hagrid offered her his arm and they set off around the edge of the paddock containing Madame Maxime s giant winged horses with Harry totally bewildered running to keep up with them .Had Hagrid wanted to show him Madame Maxime ?He could see her any old time he wanted .she wasnt exactly hard to miss .But it seemed that Madame Maxime was in for the same treat as Harry because after a while she said playfully Wair is it you are taking me Agrid ?Yehll enjoy this said Hagrid gruffly worth seem trust me .Ony don go tellin anyone I showed yeh right ?Yehre not sposed ter know .Of course not said Madame Maxime fluttering her long black eyelashes .And still they walked Harry getting more and more irritated as he jogged along in their wake checking his watch every now and then .Hagrid had some harebrained scheme in hand which might make him miss Sirius .If they didnt get there soon he was going to turn around go straight back to the castle and leave Hagrid to enjoy his moonlit stroll with Madame Maxime .But then when they had walked so far around the perimeter of the forest that the castle and the lake were out of sight Harry heard something .Men were shouting up ahead .then came a deafening earsplitting roar .Hagrid led Madame Maxime around a clump of trees and came to a halt .Harry hurried up alongside them for a split second he thought he was seeing bonfires and men darting around them and then his mouth fell open .Dragons .Four fully grown enormous viciouslooking dragons were rearing onto their hind legs inside an enclosure fenced with thick planks of wood roaring and snorting torrents of fire were shooting into the dark sky from their open fanged mouths fifty feet above the ground on their outstretched necks .There was a silveryblue one with long pointed horns snapping and snarling at the wizards on the ground a smooth scaled green one which was writhing and stamping with all its might a red one with an odd fringe of fine gold spikes around its face which was shooting mushroomshaped fire clouds into the air and a gigantic black one more lizardlike than the others which was nearest to them .At least thirty wizards seven or eight to each dragon were attempting to control them pulling on the chains connected to heavy leather straps around their necks and legs .Mesmerized Harry looked up high above him and saw the eyes of the black dragon with vertical pupils like a cats bulging with either fear or rage he couldnt tell which .It was making a horrible noise a yowling screeching scream .Keep back there Hagrid !yelled a wizard near the fence straining on the chain he was holding .They can shoot fire at a range of twenty feet you know !Ive seen this Horntail do forty !Isn it beautiful ?said Hagrid softly .Its no good !yelled another wizard .Stunning Spells on the count of three !Harry saw each of the dragon keepers pull out his wand .Stupefy they shouted in unison and the Stunning Spells shot into the darkness like fiery rockets bursting in showers of stars on the dragons scaly hides Harry watched the dragon nearest to them teeter dangerously on its back legs its jaws stretched wide in a silent howl its nostrils were suddenly devoid of flame though still smoking then very slowly it fell .Several tons of sinewy scalyblack dragon hit the ground with a thud that Harry could have sworn made the trees behind him quake .The dragon keepers lowered their wands and walked forward to their fallen charges each of which was the size of a small hill .They hurried to tighten the chains and fasten them securely to iron pegs which they forced deep into the ground with their wands .Wan a closer look ?Hagrid asked Madame Maxime excitedly .The pair of them moved right up to the fence and Harry followed .The wizard who had warned Hagrid not to come any closer turned and Harry realized who it was Charlie Weasley .All right Hagrid ?he panted coming over to talk .They should be okay now we put them out with a Sleeping Draft on the way here thought it might be better for them to wake up in the dark and the quiet but like you saw they werent happy not happy at all What breeds you got here Charlie ?said Hagrid gazing at the closest dragon the black one with something close to reverence .Its eyes were still just open .Harry could see a strip of gleaming yellow beneath its wrinkled black eyelid .This is a Hungarian Horntail said Charlie .Theres a Common Welsh Green over there the smaller one a Swedish ShortSnout that bluegray and a Chinese Fireball thats the red .Charlie looked around Madame Maxime was strolling away around the edge of the enclosure gazing at the stunned dragons .I didnt know you were bringing her Hagrid Charlie said frowning .The champions arent supposed to know whats coming shes bound to tell her student isnt she ?Jus thought shed like ter see em shrugged Hagrid still gazing enraptured at the dragons .Really romantic date Hagrid said Charlie shaking his head .Four .said Hagrid so its one fer each o the champions is it ?Whatve they gotta do fight em ?Just get past them I think said Charlie .Well be on hand if it gets nasty Extinguishing Spells at the ready .They wanted nesting mothers I dont know why .but I tell you this I dont envy the one who gets the Horntail .Vicious thing .Its back ends as dangerous as its front look .Charlie pointed toward the Horntails tail and Harry saw long bronzecolored spikes protruding along it every few inches .Five of Charlies fellow keepers staggered up to the Horntail at that moment carrying a clutch of huge granitegray eggs between them in a blanket .They placed them carefully at the Horntails side .Hagrid let out a moan of longing .Ive got them counted Hagrid said Charlie sternly .Then he said Hows Harry ?Fine said Hagrid .He was still gazing at the eggs .Just hope hes still fine after hes faced this lot said Charlie grimly looking out over the dragons enclosure .I didnt dare tell Mum what hes got to do for the first task shes already having kittens about him .Charlie imitated his mothers anxious voice . ‘ How could they let him enter that tournament hes much too young I thought they were all safe I thought there was going to he an age limiti She was in floods after that Daily Prophet article about him . ‘He still cries about his parents Oh bless him I never knew Harry had had enough .Trusting to the fact that Hagrid wouldnt miss him with the attractions of four dragons and Madame Maxime to occupy him he turned silently and began to walk away back to the castle .He didnt know whether he was glad hed seen what was coming or not .Perhaps this way was better .The first shock was over now .Maybe if hed seen the dragons for the first time on Tuesday he would have passed out cold in front of the whole school .but maybe he would anyway .He was going to be armed with his wand which just now felt like nothing more than a narrow strip of wood against a fifty foothigh scaly spikeridden firebreathing dragon .And he had to get past it .With everyone watching .How ?Harry sped up skirting the edge of the forest he had just under fifteen minutes to get back to the fireside and talk to Sirius and he couldnt remember ever wanting to talk to someone more than he did right now when without warning he ran into something very solid .Harry fell backward his glasses askew clutching the cloak around him .A voice nearby said Ouch !Whos there ?Harry hastily checked that the cloak was covering him and lay very still staring up at the dark outline of the wizard he had hit .He recognized the goatee .it was Karkaroff .Whos there ?said Karkaroff again very suspiciously looking around in the darkness .Harry remained still and silent .After a minute or so Karkaroff seemed to decide that he had hit some sort of animal he was looking around at waist height as though expecting to see a dog .Then he crept back under the cover of the trees and started to edge forward toward the place where the dragons were .Very slowly and very carefully Harry got to his feet and set off again as fast as he could without making too much noise hurrying through the darkness back toward Hogwarts .He had no doubt whatsoever what Karkaroff was up to .He had sneaked off his ship to try and find out what the first task was going to be .He might even have spotted Hagrid and Madame Maxime heading off around the forest together they were hardly difficult to spot at a distance .and now all Karkaroff had to do was follow the sound of voices and he like Madame Maxime would know what was in store for the champions .By the looks of it the only champion who would be facing the unknown on Tuesday was Cedric .Harry reached the castle slipped in through the front doors and began to climb the marble stairs he was very out of breath but he didnt dare slow down .He had less than five minutes to get up to the fire .Balderdash !he gasped at the Fat Lady who was snoozing in her frame in front of the portrait hole .If you say so she muttered sleepily without opening her eyes and the picture swung forward to admit him .Harry climbed inside .The common room was deserted and judging by the fact that it smelled quite normal Hermione had not needed to set off any Dungbombs to ensure that he and Sirius got privacy .Harry pulled off the Invisibility Cloak and threw himself into an armchair in front of the fire .The room was in semidarkness the flames were the only source of light .Nearby on a table the Support Cedric Diggoryl badges the Creeveys had been trying to improve were glinting in the firelight .They now read POTTER REALLY STINKS .Harry looked back into the flames and jumped .Siriuss head was sitting in the fire .If Harry hadnt seen Mr Diggory do exactly this back in the Weasleys kitchen it would have scared him out of his wits .Instead his face breaking into the first smile he had worn for days he scrambled out of his chair crouched down by the hearth and said Sirius how re you doing ?Sirius looked different from Harrys memory of him .When they had said goodbye Siriuss face had been gaunt and sunken surrounded by a quantity of long black matted hair but the hair was short and clean now Siriuss face was fuller and he looked younger much more like the only photograph Harry had of him which had been taken at the Potters wedding .Never mind me how are you ?said Sirius seriously .Im For a second Harry tried to say fine but he couldnt do it .Before he could stop himself he was talking more than hed talked in days about how no one believed he hadnt entered the tournament of his own free will how Rita Skeeter had lied about him in the Daily Prophet how he couldnt walk down a corridor without being sneered at and about Ron Ron not believing him Rons jealousy . .and now Hagrids just shown me whats coming in the first task and its dragons Sirius and Im a goner he finished desperately .Sirius looked at him eyes full of concern eyes that had not yet lost the look that Azkaban had given them that deadened haunted look .He had let Harry talk himself into silence without interruption but now he said Dragons we can deal with Harry but well get to that in a minute I havent got long here .Ive broken into a wizarding house to use the fire but they could be back at any time .There are things I need to warn you about .What ?said Harry feeling his spirits slip a further few notches .Surely there could be nothing worse than dragons coming ?Karkaroff said Sirius .Harry he was a Death Eater .You know what Death Eaters are dont you ?Yes he what ?He was caught he was in Azkaban with me but he got released .Id bet everything thats why Dumbledore wanted an Auror at Hogwarts this year to keep an eye on him .Moody caught Karkaroff .Put him into Azkaban in the first place .Karkaroff got released ?Harry said slowly his brain seemed to be struggling to absorb yet another piece of shocking information .Why did they release him ?He did a deal with the Ministry of Magic said Sirius bitterly .He said hed seen the error of his ways and then he named names .he put a load of other people into Azkaban in his place .Hes not very popular in there I can tell you .And since he got out from what I can tell hes been teaching the Dark Arts to every student who passes through that school of his .So watch out for the Durmstrang champion as well .Okay said Harry slowly .But .are you saying Karkaroff put my name in the goblet ?Because if he did hes a really good actor .He seemed furious about it .He wanted to stop me from competing .We know hes a good actor said Sirius because he convinced the Ministry of Magic to set him free didnt he ?Now Ive been keeping an eye on the Daily Prophet Harry you and the rest of the world said Harry bitterly .and reading between the lines of that Skeeter womans article last month Moody was attacked the night before he started at Hogwarts .Yes I know she says it was another false alarm Sirius said hastily seeing Harry about to speak but I dont think so somehow .I think someone tried to stop him from getting to Hogwarts .I think someone knew their job would be a lot more difficult with him around .And no ones going to look into it too closely MadEyes heard intruders a bit too often .But that doesnt mean he cant still spot the real thing .Moody was the best Auror the Ministry ever had .So .what are you saying ?said Harry slowly .Karkaroffs trying to kill me ?But why ?Sirius hesitated .Ive been hearing some very strange things he said slowly .The Death Eaters seem to be a bit more active than usual lately .They showed themselves at the Quidditch World Cup didnt they ?Someone set off the Dark Mark .and then did you hear about that Ministry of Magic witch whos gone missing ?Bertha Jorkins ?said Harry .Exactly .she disappeared in Albania and thats definitely where Voldemort was rumored to be last .and she would have known the Triwizard Tournament was coming up wouldnt she ?Yeah but .its not very likely shed have walked straight into Voldemort is it ?said Harry .Listen I knew Bertha Jorkins said Sirius grimly .She was at Hogwarts when I was a few years above your dad and me .And she was an idiot .Very nosy but no brains none at all .Its not a good combination Harry .Id say shed be very easy to lure into a trap .So .so Voldemort could have found out about the tournament ?said Harry .Is that what you mean ?You think Karkaroff might be here on his orders ?I dont know said Sirius slowly I just dont know .Karkaroff doesnt strike me as the type whod go back to Voldemort unless he knew Voldemort was powerful enough to protect him .But whoever put your name in that goblet did it for a reason and I cant help thinking the tournament would be a very good way to attack you and make it look like an accident .Looks like a really good plan from where Im standing said Harry grinning bleakly .Theyll just have to stand back and let the dragons do their stuff .Right these dragons said Sirius speaking very quickly now .Theres a way Harry .Dont be tempted to try a Stunning Spell dragons are strong and too powerfully magical to be knocked out by a single Stunner you need about half a dozen wizards at a time to overcome a dragon Yeah I know I just saw said Harry .But you can do it alone said Sirius .There is a way and a simple spells all you need .Just But Harry held up a hand to silence him his heart suddenly pounding as though it would burst .He could hear footsteps coming down the spiral staircase behind him .Go !he hissed at Sirius .Go !Theres someone coming !Harry scrambled to his feet hiding the fire if someone saw Siriuss face within the walls of Hogwarts they would raise an almighty uproar the Ministry would get dragged in he Harry would be questioned about Siriuss whereabouts Harry heard a tiny pop in the fire behind him and knew Sirius had gone .He watched the bottom of the spiral staircase .Who had decided to go for a stroll at one oclock in the morning and stopped Sirius from telling him how to get past a dragon ?It was Ron .Dressed in his maroon paisley pajamas Ron stopped dead facing Harry across the room and looked around .Who were you talking to ?he said .Whats that got to do with you ?Harry snarled .What are you doing down here at this time of night ?I just wondered where you Ron broke off shrugging .Nothing .Im going back to bed .Just thought youd come nosing around did you ?Harry shouted .He knew that Ron had no idea what hed walked in on knew he hadnt done it on purpose but he didnt care at this moment he hated everything about Ron right down to the several inches of bare ankle showing beneath his pajama trousers .Sorry about that said Ron his face reddening with anger .Shouldve realized you didnt want to be disturbed .Ill let you get on with practicing for your next interview in peace .Harry seized one of the POTTER REALLY STINKS badges off the table and chucked it as hard as he could across the room .It hit Ron on the forehead and bounced off .There you go Harry said .Something for you to wear on Tuesday .You might even have a scar now if youre lucky .Thats what you want isnt it ?He strode across the room toward the stairs he half expected Ron to stop him he would even have liked Ron to throw a punch at him but Ron just stood there in his toosmall pajamas and Harry having stormed upstairs lay awake in bed fuming for a long time afterward and didnt hear him come up to bed .THE FIRST TASK Harry got up on Sunday morning and dressed so inattentively that it was a while before he realized he was trying to pull his hat onto his foot instead of his sock .When hed finally got all his clothes on the right parts of his body he hurried off to find Hermione locating her at the Gryffindor table in the Great Hall where she was eating breakfast with Ginny .Feeling too queasy to eat Harry waited until Hermione had swallowed her last spoonful of porridge then dragged her out onto the grounds .There he told her all about the dragons and about everything Sirius had said while they took another long walk around the lake .Alarmed as she was by Siriuss warnings about Karkaroff Hermione still thought that the dragons were the more pressing problem .Lets just try and keep you alive until Tuesday evening she said desperately and then we can worry about Karkaroff .They walked three times around the lake trying all the way to think of a simple spell that would subdue a dragon .Nothing whatsoever occurred to them so they retired to the library instead .Here Harry pulled down every book he could find on dragons and both of them set to work searching through the large pile . ‘Talonclipping by charms .treating scalerot .This is no good this is for nutters like Hagrid who want to keep them healthy . ‘Dragons are extremely difficult to slay owing to the ancient magic that imbues their thick hides which none but the most powerful spells can penetrate .But Sirius said a simple one would do it .Lets try some simple spellbooks then said Harry throwing aside Men Who Love Dragons Too Much .He returned to the table with a pile of spellbooks set them down and began to flick through each in turn Hermione whispering nonstop at his elbow .Well there are Switching Spells .but whats the point of Switching it ?Unless you swapped its fangs for winegums or something that would make it less dangerous .The trouble is like that book said not much is going to get through a dragons hide .Id say Transfigure it but something that big you really havent got a hope I doubt even Professor McGonagall .unless youre supposed to put the spell on yourself ?Maybe to give yourself extra powers ?But theyre not simple spells I mean we havent done any of those in class I only know about them because Ive been doing O .W .L .practice papers .Hermione Harry said through gritted teeth will you shut up for a bit please ?Im trying to concentrate .But all that happened when Hermione fell silent was that Harrys brain filled with a sort of blank buzzing which didnt seem to allow room for concentration .He stared hopelessly down the index of Basic Hexes for the Busy and Vexed .Instant scalping .but dragons had no hair .pepper breath .that would probably increase a dragons firepower .horn tongue .just what he needed to give it an extra weapon .Oh no hes back again why cant he read on his stupid ship ?said Hermione irritably as Viktor Krum slouched in cast a surly look over at the pair of them and settled himself in a distant corner with a pile of books .Come on Harry well go back to the common room .his fan clubll be here in a moment twittering away .And sure enough as they left the library a gang of girls tiptoed past them one of them wearing a Bulgaria scarf tied around her waist .Harry barely slept that night .When he awoke on Monday morning he seriously considered for the first time ever just running away from Hogwarts .But as he looked around the Great Hall at breakfast time and thought about what leaving the castle would mean he knew he couldnt do it .It was the only place he had ever been happy .well he supposed he must have been happy with his parents too but he couldnt remember that .Somehow the knowledge that he would rather be here and facing a dragon than back on Privet Drive with Dudley was good to know it made him feel slightly calmer .He finished his bacon with difficulty his throat wasnt working too well and as he and Hermione got up he saw Cedric Diggory leaving the Hufflepuff table .Cedric still didnt know about the dragons .the only champion who didnt if Harry was right in thinking that Maxime and Karkaroff would have told Fleur and Krum .Hermione Ill see you in the greenhouses Harry said coming to his decision as he watched Cedric leaving the Hall .Go on Ill catch you up .Harry youll be late the bells about to ring Ill catch you up okay ?By the time Harry reached the bottom of the marble staircase Cedric was at the top .He was with a load of sixthyear friends .Harry didnt want to talk to Cedric in front of them they were among those who had been quoting Rita Skeeters article at him every time he went near them .He followed Cedric at a distance and saw that he was heading toward the Charms corridor .This gave Harry an idea .Pausing at a distance from them he pulled out his wand and took careful aim .Diffindol Cedrics bag split .Parchment quills and books spilled out of it onto the floor .Several bottles of ink smashed .Dont bother said Cedric in an exasperated voice as his friends bent down to help him .Tell Flitwick Im coming go on .This was exactly what Harry had been hoping for .He slipped his wand back into his robes waited until Cedrics friends had disappeared into their classroom and hurried up the corridor which was now empty of everyone but himself and Cedric .Hi said Cedric picking up a copy of A Guide to Advanced Transfiguration that was now splattered with ink .My bag just split .brandnew and all .Cedric said Harry the first task is dragons .What ?said Cedric looking up .Dragons said Harry speaking quickly in case Professor Flitwick came out to see where Cedric had got to .Theyve got four one for each of us and weve got to get past them .Cedric stared at him .Harry saw some of the panic hed been feeling since Saturday night flickering in Cedrics gray eyes .Are you sure ?Cedric said in a hushed voice .Dead sure said Harry .Ive seen them .But how did you find out ?Were not supposed to know .Never mind said Harry quickly he knew Hagrid would be in trouble if he told the truth .But Im not the only one who knows .Fleur and Krum will know by now Maxime and Karkaroff both saw the dragons too .Cedric straightened up his arms full of inky quills parchment and books his ripped bag dangling off one shoulder .He stared at Harry and there was a puzzled almost suspicious look in his eyes .Why are you telling me ?he asked .Harry looked at him in disbelief .He was sure Cedric wouldnt have asked that if he had seen the dragons himself .Harry wouldnt have let his worst enemy face those monsters unprepared well perhaps Malfoy or Snape .Its just .fair isnt it ?he said to Cedric .We all know now .were on an even footing arent we ?Cedric was still looking at him in a slightly suspicious way when Harry heard a familiar clunking noise behind him .He turned around and saw MadEye Moody emerging from a nearby classroom .Come with me Potter he growled .Diggory off you go .Harry stared apprehensively at Moody .Had he overheard them ?Er Professor Im supposed to be in Herbology Never mind that Potter .In my office please .Harry followed him wondering what was going to happen to him now .What if Moody wanted to know how hed found out about the dragons ?Would Moody go to Dumbledore and tell on Hagrid or just turn Harry into a ferret ?Well it might be easier to get past a dragon if he were a ferret Harry thought dully hed be smaller much less easy to see from a height of fifty feet .He followed Moody into his office .Moody closed the door behind them and turned to look at Harry his magical eye fixed upon him as well as the normal one .That was a very decent thing you just did Potter Moody said quietly .Harry didnt know what to say this wasnt the reaction he had expected at all .Sit down said Moody and Harry sat looking around .He had visited this office under two of its previous occupants .In Professor Lockharts day the walls had been plastered with beaming winking pictures of Professor Lockhart himself .When Lupin had lived here you were more likely to come across a specimen of some fascinating new Dark creature he had procured for them to study in class .Now however the office was full of a number of exceptionally odd objects that Harry supposed Moody had used in the days when he had been an Auror .On his desk stood what looked like a large cracked glass spinning top Harry recognized it at once as a Sneakoscope because he owned one himself though it was much smaller than Moodys .In the corner on a small table stood an object that looked something like an extra squiggly golden television aerial .It was humming slightly .What appeared to be a mirror hung opposite Harry on the wall but it was not reflecting the room .Shadowy figures were moving around inside it none of them clearly in focus .Like my Dark Detectors do you ?said Moody who was watching Harry closely .Whats that ?Harry asked pointing at the squiggly golden aerial .Secrecy Sensor .Vibrates when it detects concealment and lies .no use here of course too much interference students in every direction lying about why they havent done their homework .Been humming ever since I got here .I had to disable my Sneakoscope because it wouldnt stop whistling .Its extrasensitive picks up stuff about a mile around .Of course it could be picking up more than kid stuff he added in a growl .And whats the mirror for ?Oh thats my FoeGlass .See them out there skulking around ?Im not really in trouble until I see the whites of their eyes .Thats when I open my trunk .He let out a short harsh laugh and pointed to the large trunk under the window .It had seven keyholes in a row .Harry wondered what was in there until Moodys next question brought him sharply back to earth .So .found out about the dragons have you ?Harry hesitated .Hed been afraid of this but he hadnt told Cedric and he certainly wasnt going to tell Moody that Hagrid had broken the rules .Its all right said Moody sitting down and stretching out his wooden leg with a groan .Cheatings a traditional part of the Triwizard Tournament and always has been .I didnt cheat said Harry sharply .It was a sort of accident that I found out .Moody grinned .I wasnt accusing you laddie .Ive been telling Dumbledore from the start he can be as highminded as he likes but you can bet old Karkaroff and Maxime wont be .Theyll have told their champions everything they can .They want to win .They want to beat Dumbledore .Theyd like to prove hes only human .Moody gave another harsh laugh and his magical eye swiveled around so fast it made Harry feel queasy to watch it .So .got any ideas how youre going to get past your dragon yet ?said Moody .No said Harry .Well Im not going to tell you said Moody gruffly .I dont show favoritism me .Im just going to give you some good general advice .And the first bit is play to your strengths .I havent got any said Harry before he could stop himself .Excuse me growled Moody youve got strengths if I say youve got them .Think now .What are you best at ?Harry tried to concentrate .What was he best at ?Well that was easy really Quidditch he said dully and a fat lot of help Thats right said Moody staring at him very hard his magical eye barely moving at all .Youre a damn good flier from what Ive heard .Yeah but .Harry stared at him .Im not allowed a broom Ive only got my wand My second piece of general advice said Moody loudly interrupting him is to use a nice simple spell that will enable you to get what you need .Harry looked at him blankly .What did he need ?Come on boy .whispered Moody .Put them together .its not that difficult .And it clicked .He was best at flying .He needed to pass the dragon in the air .For that he needed his Firebolt .And for his Firebolt he needed Hermione Harry whispered when he had sped into greenhouse three minutes later uttering a hurried apology to Professor Sprout as he passed her .Hermione I need you to help me .What dyou think Ive been trying to do Harry ?she whispered back her eyes round with anxiety over the top of the quivering Flutterby Bush she was pruning .Hermione I need to learn how to do a Summoning Charm properly by tomorrow afternoon .And so they practiced .They didnt have lunch but headed for a free classroom where Harry tried with all his might to make various objects fly across the room toward him .He was still having problems .The books and quills kept losing heart halfway across the room and dropping like stones to the floor .Concentrate Harry concentrate .What dyou think Im trying to do ?said Harry angrily .A great big dragon keeps popping up in my head for some reason .Okay try again .He wanted to skip Divination to keep practicing but Hermione refused pointblank to skive off Arithmancy and there was no point in staying without her .He therefore had to endure over an hour of Professor Trelawney who spent half the lesson telling everyone that the position of Mars with relation to Saturn at that moment meant that people born in July were in great danger of sudden violent deaths .Well thats good said Harry loudly his temper getting the better of him just as long as its not drawnout .I dont want to suffer .Ron looked for a moment as though he was going to laugh he certainly caught Harrys eye for the first time in days but Harry was still feeling too resentful toward Ron to care .He spent the rest of the lesson trying to attract small objects toward him under the table with his wand .He managed to make a fly zoom straight into his hand though he wasnt entirely sure that was his prowess at Summoning Charms perhaps the fly was just stupid .He forced down some dinner after Divination then returned to the empty classroom with Hermione using the Invisibility Cloak to avoid the teachers .They kept practicing until past midnight .They would have stayed longer but Peeves turned up and pretending to think that Harry wanted things thrown at him started chucking chairs across the room .Harry and Hermione left in a hurry before the noise attracted Filch and went back to the Gryffindor common room which was now mercifully empty .At two oclock in the morning Harry stood near the fireplace surrounded by heaps of objects books quills several upturned chairs an old set of Gobstones and Nevilles toad Trevor .Only in the last hour had Harry really got the hang of the Summoning Charm .Thats better Harry thats loads better Hermione said looking exhausted but very pleased .Well now we know what to do next time I cant manage a spell Harry said throwing a rune dictionary back to Hermione so he could try again threaten me with a dragon .Right .He raised his wand once more .Accio Dictionary !The heavy book soared out of Hermione s hand flew across the room and Harry caught it .Harry I really think youve got it !said Hermione delightedly .Just as long as it works tomorrow Harry said .The Firebolts going to be much farther away than the stuff in here its going to be in the castle and Im going to be out there on the grounds .That doesnt matter said Hermione firmly Just as long as youre concentrating really really hard on it itll come .Harry wed better get some sleep .youre going to need it .Harry had been focusing so hard on learning the Summoning Charm that evening that some of his blind panic had left him .It returned in full measure however on the following morning .The atmosphere in the school was one of great tension and excitement .Lessons were to stop at midday giving all the students time to get down to the dragons enclosure though of course they didnt yet know what they would find there .Harry felt oddly separate from everyone around him whether they were wishing him good luck or hissing Well have a box of tissues ready Potted as he passed .It was a state of nervousness so advanced that he wondered whether he mightnt just lose his head when they tried to lead him out to his dragon and start trying to curse everyone in sight .Time was behaving in a more peculiar fashion than ever rushing past in great dollops so that one moment he seemed to be sitting down in his first lesson History of Magic and the next walking into lunch .and then where had the morning gone ?the last of the dragonfree hours ?Professor McGonagall was hurrying over to him in the Great Hall .Lots of people were watching .Potter the champions have to come down onto the grounds now .You have to get ready for your first task .Okay said Harry standing up his fork falling onto his plate with a clatter .Good luck Harry Hermione whispered .Youll be fine !Yeah said Harry in a voice that was most unlike his own .He left the Great Hall with Professor McGonagall .She didnt seem herself either in fact she looked nearly as anxious as Hermione .As she walked him down the stone steps and out into the cold November afternoon she put her hand on his shoulder .Now dont panic she said just keep a cool head . .Weve got wizards standing by to control the situation if it gets out of hand .The main thing is just to do your best and nobody will think any the worse of you .Are you all right ?Yes Harry heard himself say .Yes Im fine .She was leading him toward the place where the dragons were around the edge of the forest but when they approached the clump of trees behind which the enclosure would be clearly visible Harry saw that a tent had been erected its entrance facing them screening the dragons from view .Youre to go in here with the other champions said Professor McGonagall in a rather shaky sort of voice and wait for your turn Potter .Mr Bagman is in there .hell be telling you the the procedure .Good luck .Thanks said Harry in a flat distant voice .She left him at the entrance of the tent .Harry went inside .Fleur Delacour was sitting in a corner on a low wooden stool .She didnt look nearly as composed as usual but rather pale and clammy .Viktor Krum looked even surlier than usual which Harry supposed was his way of showing nerves .Cedric was pacing up and down .When Harry entered Cedric gave him a small smile which Harry returned feeling the muscles in his face working rather hard as though they had forgotten how to do it .Harry !Goodo !said Bagman happily looking around at him .Come in come in make yourself at home !Bagman looked somehow like a slightly overblown cartoon figure standing amid all the palefaced champions .He was wearing his old Wasp robes again .Well now were all here time to fill you in !said Bagman brightly .When the audience has assembled Im going to be offering each of you this bag he held up a small sack of purple silk and shook it at them from which you will each select a small model of the thing you are about to face !There are different er varieties you see .And I have to tell you something else too .ah yes .your task is to collect the golden egg Harry glanced around .Cedric had nodded once to show that he understood Bagmans words and then started pacing around the tent again he looked slightly green .Fleur Delacour and Krum hadnt reacted at all .Perhaps they thought they might be sick if they opened their mouths that was certainly how Harry felt .But they at least had volunteered for this .And in no time at all hundreds upon hundreds of pairs of feet could be heard passing the tent their owners talking excitedly laughing joking .Harry felt as separate from the crowd as though they were a different species .And then it seemed like about a second later to Harry Bagman was opening the neck of the purple silk sack .Ladies first he said offering it to Fleur Delacour .She put a shaking hand inside the bag and drew out a tiny perfect model of a dragon a Welsh Green .It had the number two around its neck .And Harry knew by the fact that Fleur showed no sign of surprise but rather a determined resignation that he had been right Madame Maxime had told her what was coming .The same held true for Krum .He pulled out the scarlet Chinese Fireball .It had a number three around its neck .He didnt even blink just sat back down and stared at the ground .Cedric put his hand into the bag and out came the blueishgray Swedish ShortSnout the number one tied around its neck .Knowing what was left Harry put his hand into the silk bag and pulled out the Hungarian Horntail and the number four .It stretched its wings as he looked down at it and bared its minuscule fangs .Well there you are !said Bagman .You have each pulled out the dragon you will face and the numbers refer to the order in which you are to take on the dragons do you see ?Now Im going to have to leave you in a moment because Im commentating .Mr Diggory youre first just go out into the enclosure when you hear a whistle all right ?Now .Harry .could I have a quick word ?Outside ?Er .yes said Harry blankly and he got up and went out of the tent with Bagman who walked him a short distance away into the trees and then turned to him with a fatherly expression on his face .Feeling all right Harry ?Anything I can get you ?What ?said Harry .I no nothing .Got a plan ?said Bagman lowering his voice conspiratorially .Because I dont mind sharing a few pointers if youd like them you know .I mean Bagman continued lowering his voice still further youre the underdog here Harry .Anything I can do to help .No said Harry so quickly he knew he had sounded rude no I I know what Im going to do thanks .Nobody would know Harry said Bagman winking at him .No Im fine said Harry wondering why he kept telling people this and wondering whether he had ever been less fine .Ive got a plan worked out I A whistle had blown somewhere .Good lord Ive got to run !said Bagman in alarm and he hurried off .Harry walked back to the tent and saw Cedric emerging from it greener than ever .Harry tried to wish him luck as he walked past but all that came out of his mouth was a sort of hoarse grunt .Harry went back inside to Fleur and Krum .Seconds later they heard the roar of the crowd which meant Cedric had entered the enclosure and was now face toface with the living counterpart of his model .It was worse than Harry could ever have imagined sitting there and listening .The crowd screamed .yelled .gasped like a single manyheaded entity as Cedric did whatever he was doing to get past the Swedish ShortSnout .Krum was still staring at the ground .Fleur had now taken to retracing Cedrics steps around and around the tent .And Bagmans commentary made everything much much worse .Horrible pictures formed in Harrys mind as he heard Oooh narrow miss there very narrow .Hes taking risks this one ! .Clever move pity it didnt work !And then after about fifteen minutes Harry heard the deafening roar that could mean only one thing Cedric had gotten past his dragon and captured the golden egg .Very good indeed !Bagman was shouting .And now the marks from the judges !But he didnt shout out the marks Harry supposed the judges were holding them up and showing them to the crowd .One down three to go !Bagman yelled as the whistle blew again .Miss Delacour if you please !Fleur was trembling from head to foot Harry felt more warmly toward her than he had done so far as she left the tent with her head held high and her hand clutching her wand .He and Krum were left alone at opposite sides of the tent avoiding each others gaze .The same process started again .Oh Im not sure that was wise !they could hear Bagman shouting gleefully .Oh .nearly !Careful now .good lord I thought shed had it then !Ten minutes later Harry heard the crowd erupt into applause once more .Fleur must have been successful too .A pause while Fleurs marks were being shown .more clapping .then for the third time the whistle .And here comes Mr Krum !cried Bagman and Krum slouched out leaving Harry quite alone .He felt much more aware of his body than usual very aware of the way his heart was pumping fast and his fingers tingling with fear .yet at the same time he seemed to be outside himself seeing the walls of the tent and hearing the crowd as though from far away .Very daring !Bagman was yelling and Harry heard the Chinese Fireball emit a horrible roaring shriek while the crowd drew its collective breath .Thats some nerve hes showing and yes hes got the egg !Applause shattered the wintery air like breaking glass Krum had finished it would be Harrys turn any moment .He stood up noticing dimly that his legs seemed to be made of marshmallow .He waited .And then he heard the whistle blow .He walked out through the entrance of the tent the panic rising into a crescendo inside him .And now he was walking past the trees through a gap in the enclosure fence .He saw everything in front of him as though it was a very highly colored dream .There were hundreds and hundreds of faces staring down at him from stands that had been magicked there since hed last stood on this spot .And there was the Horntail at the other end of the enclosure crouched low over her clutch of eggs her wings halffurled her evil yellow eyes upon him a monstrous scaly black lizard thrashing her spiked tail leaving yardlong gouge marks in the hard ground .The crowd was making a great deal of noise but whether friendly or not Harry didnt know or care .It was time to do what he had to do .to focus his mind entirely and absolutely upon the thing that was his only chance .He raised his wand .Accio Firebolti he shouted .Harry waited every fiber of him hoping praying .If it hadnt worked .if it wasnt coming .He seemed to be looking at everything around him through some sort of shimmering transparent barrier like a heat haze which made the enclosure and the hundreds of faces around him swim strangely .And then he heard it speeding through the air behind him he turned and saw his Firebolt hurtling toward him around the edge of the woods soaring into the enclosure and stopping dead in midair beside him waiting for him to mount .The crowd was making even more noise .Bagman was shouting something .but Harrys ears were not working properly anymore .listening wasnt important .He swung his leg over the broom and kicked off from the ground .And a second later something miraculous happened .As he soared upward as the wind rushed through his hair as the crowds faces became mere fleshcolored pinpricks below and the Horntail shrank to the size of a dog he realized that he had left not only the ground behind but also his fear .He was back where he belonged .This was just another Quidditch match that was all .just another Quidditch match and that Horntail was just another ugly opposing team .He looked down at the clutch of eggs and spotted the gold one gleaming against its cementcolored fellows residing safely between the dragons front legs .Okay Harry told himself diversionary tactics .lets go .He dived .The Horntails head followed him he knew what it was going to do and pulled out of the dive just in time a jet of fire had been released exactly where he would have been had he not swerved away .but Harry didnt care .that was no more than dodging a Bludger .Great Scott he can fly !yelled Bagman as the crowd shrieked and gasped .Are you watching this Mr Krum ?Harry soared higher in a circle the Horntail was still following his progress its head revolving on its long neck if he kept this up it would be nicely dizzy but better not push it too long or it would be breathing fire again Harry plummeted just as the Horntail opened its mouth but this time he was less lucky he missed the flames but the tail came whipping up to meet him instead and as he swerved to the left one of the long spikes grazed his shoulder ripping his robes He could feel it stinging he could hear screaming and groans from the crowd but the cut didnt seem to be deep .Now he zoomed around the back of the Horntail and a possibility occurred to him .The Horntail didnt seem to want to take off she was too protective of her eggs .Though she writhed and twisted furling and unfurling her wings and keeping those fearsome yellow eyes on Harry she was afraid to move too far from them .but he had to persuade her to do it or hed never get near them .The trick was to do it carefully gradually .He began to fly first this way then the other not near enough to make her breathe fire to stave him off but still posing a sufficient threat to ensure she kept her eyes on him .Her head swayed this way and that watching him out of those vertical pupils her fangs bared .He flew higher .The Horntails head rose with him her neck now stretched to its fullest extent still swaying like a snake before its charmer .Harry rose a few more feet and she let out a roar of exasperation .He was like a fly to her a fly she was longing to swat her tail thrashed again but he was too high to reach now .She shot fire into the air which he dodged .Her jaws opened wide .Come on Harry hissed swerving tantalizingly above her come on come and get me .up you get now .And then she reared spreading her great black leathery wings at last as wide as those of a small airplane and Harry dived .Before the dragon knew what he had done or where he had disappeared to he was speeding toward the ground as fast as he could go toward the eggs now unprotected by her clawed front legs he had taken his hands off his Firebolt he had seized the golden egg And with a huge spurt of speed he was off he was soaring out over the stands the heavy egg safely under his uninjured arm and it was as though somebody had just turned the volume back up for the first time he became properly aware of the noise of the crowd which was screaming and applauding as loudly as the Irish supporters at the World Cup Look at that !Bagman was yelling .Will you look at that !Our youngest champion is quickest to get his egg !Well this is going to shorten the odds on Mr Potter !Harry saw the dragon keepers rushing forward to subdue the Horntail and over at the entrance to the enclosure Professor McGonagall Professor Moody and Hagrid hurrying to meet him all of them waving him toward them their smiles evident even from this distance .He flew back over the stands the noise of the crowd pounding his eardrums and came in smoothly to land his heart lighter than it had been in weeks .He had got through the first task he had survived .That was excellent Potter !cried Professor McGonagall as he got off the Firebolt which from her was extravagant praise .He noticed that her hand shook as she pointed at his shoulder .Youll need to see Madam Pomfrey before the judges give out your score .Over there shes had to mop up Diggory already .Yeh did it Harry !said Hagrid hoarsely .Yeh did it !An agains the Horntail an all an yeh know Charlie said that was the wors Thanks Hagrid said Harry loudly so that Hagrid wouldnt blunder on and reveal that he had shown Harry the dragons beforehand .Professor Moody looked very pleased too his magical eye was dancing in its socket .Nice and easy does the trick Potter he growled .Right then Potter the first aid tent please .said Professor McGonagall .Harry walked out of the enclosure still panting and saw Madam Pomfrey standing at the mouth of a second tent looking worried .Dragons !she said in a disgusted tone pulling Harry inside .The tent was divided into cubicles he could make out Cedrics shadow through the canvas but Cedric didnt seem to be badly injured he was sitting up at least .Madam Pomfrey examined Harrys shoulder talking furiously all the while .Last year dementors this year dragons what are they going to bring into this school next ?Youre very lucky .this is quite shallow .itll need cleaning before I heal it up though .She cleaned the cut with a dab of some purple liquid that smoked and stung but then poked his shoulder with her wand and he felt it heal instantly .Now just sit quietly for a minute sit !And then you can go and get your score .She bustled out of the tent and he heard her go next door and say How does it feel now Diggory ?Harry didnt want to sit still He was too full of adrenaline .He got to his feet wanting to see what was going on outside but before hed reached the mouth of the tent two people had come darting inside Hermione followed closely by Ron .Harry you were brilliant !Hermione said squeakily .There were fingernail marks on her face where she had been clutching it in fear .You were amazing !You really were !But Harry was looking at Ron who was very white and staring at Harry as though he were a ghost .Harry he said very seriously whoever put your name in that goblet I I reckon theyre trying to do you in !It was as though the last few weeks had never happened as though Harry were meeting Ron for the first time right after hed been made champion .Caught on have you ?said Harry coldly .Took you long enough .Hermione stood nervously between them looking from one to the other .Ron opened his mouth uncertainly .Harry knew Ron was about to apologize and suddenly he found he didnt need to hear it .Its okay he said before Ron could get the words out .Forget it .No said Ron I shouldntve Forget it Harry said .Ron grinned nervously at him and Harry grinned back .Hermione burst into tears .Theres nothing to cry about !Harry told her bewildered .You two are so stupid .she shouted stamping her foot on the ground tears splashing down her front .Then before either of them could stop her she had given both of them a hug and dashed away now positively howling .Barking mad said Ron shaking his head .Harry cmon theyll be putting up your scores .Picking up the golden egg and his Firebolt feeling more elated than he would have believed possible an hour ago Harry ducked out of the tent Ron by his side talking fast .You were the best you know no competition .Cedric did this weird thing where he Transfigured a rock on the ground .turned it into a dog .he was trying to make the dragon go for the dog instead of him .Well it was a pretty cool bit of Transfiguration and it sort of worked because he did get the egg but he got burned as well the dragon changed its mind halfway through and decided it would rather have him than the Labrador he only just got away .And that Fleur girl tried this sort of charm I think she was trying to put it into a trance well that kind of worked too it went all sleepy but then it snored and this great jet of flame shot out and her skirt caught fire she put it out with a bit of water out of her wand .And Krum you wont believe this but he didnt even think of flying !He was probably the best after you though .Hit it with some sort of spell right in the eye .Only thing is it went trampling around in agony and squashed half the real eggs they took marks off for that he wasnt supposed to do any damage to them .Ron drew breath as he and Harry reached the edge of the enclosure .Now that the Horntail had been taken away Harry could see where the five judges were sitting right at the other end in raised seats draped in gold .Its marks out of ten from each one Ron said and Harry squinting up the field saw the first judge Madame Maxime raise her wand in the air .What looked like a long silver ribbon shot out of it which twisted itself into a large figure eight .Not bad !said Ron as the crowd applauded .I suppose she took marks off for your shoulder .Mr Crouch came next .He shot a number nine into the air .Looking good !Ron yelled thumping Harry on the back .Next Dumbledore .He too put up a nine .The crowd was cheering harder than ever .Ludo Bagman ten .Ten ?said Harry in disbelief .But .I got hurt .Whats he playing at ?Harry dont complain !Ron yelled excitedly .And now Karkaroff raised his wand .He paused for a moment and then a number shot out of his wand too four .What ?Ron bellowed furiously .Four ?You lousy biased scumbag you gave Krum ten !But Harry didnt care he wouldnt have cared if Karkaroff had given him zero Rons indignation on his behalf was worth about a hundred points to him .He didnt tell Ron this of course but his heart felt lighter than air as he turned to leave the enclosure .And it wasnt just Ron .those werent only Gryffindors cheering in the crowd .When it had come to it when they had seen what he was facing most of the school had been on his side as well as Cedrics .He didnt care about the Slytherins he could stand whatever they threw at him now .Youre tied in first place Harry !You and Krum !said Charlie Weasley hurrying to meet them as they set off back toward the school .Listen Ive got to run Ive got to go and send Mum an owl I swore Id tell her what happened but that was unbelievable !Oh yeah and they told me to tell you youve got to hang around for a few more minutes .Bagman wants a word back in the champions tent .Ron said he would wait so Harry reentered the tent which somehow looked quite different now friendly and welcoming .He thought back to how hed felt while dodging the Horntail and compared it to the long wait before hed walked out to face it .There was no comparison the wait had been immeasurably worse .Fleur Cedric and Krum all came in together .One side of Cedrics face was covered in a thick orange paste which was presumably mending his burn .He grinned at Harry when he saw him .Good one Harry .And you said Harry grinning back .Well done all of you !said Ludo Bagman bouncing into the tent and looking as pleased as though he personally had just got past a dragon .Now just a quick few words .Youve got a nice long break before the second task which will take place at half past nine on the morning of February the twentyfourth but were giving you something to think about in the meantime !If you look down at those golden eggs youre all holding you will see that they open .see the hinges there ?You need to solve the clue inside the egg because it will tell you what the second task is and enable you to prepare for it !All clear ?Sure ?Well off you go then !Harry left the tent rejoined Ron and they started to walk back around the edge of the forest talking hard Harry wanted to hear what the other champions had done in more detail .Then as they rounded the clump of trees behind which Harry had first heard the dragons roar a witch leapt out from behind them .It was Rita Skeeter .She was wearing acidgreen robes today the QuickQuotes Quill in her hand blended perfectly against them .Congratulations Harry !she said beaming at him .I wonder if you could give me a quick word ?How you felt facing that dragon ?How you feel now about the fairness of the scoring ?Yeah you can have a word said Harry savagely .Goodbye .And he set off back to the castle with Ron .THE HOUSEELF LIBERATION FRONT Harry Ron and Hermione went up to the Owlery that evening to find Pigwidgeon so that Harry could send Sirius a letter telling him that he had managed to get past his dragon unscathed .On the way Harry filled Ron in on everything Sirius had told him about Karkaroff .Though shocked at first to hear that Karkaroff had been a Death Eater by the time they entered the Owlery Ron was saying that they ought to have suspected it all along .Fits doesnt it ?he said .Remember what Malfoy said on the train about his dad being friends with Karkaroff ?Now we know where they knew each other .They were probably running around in masks together at the World Cup .Ill tell you one thing though Harry if it was Karkaroff who put your name in the goblet hes going to be feeling really stupid now isnt he ?Didnt work did it ?You only got a scratch !Come here Ill do it Pigwidgeon was so overexcited at the idea of a delivery he was flying around and around Harrys head hooting incessantly .Ron snatched Pigwidgeon out of the air and held him still while Harry attached the letter to his leg .Theres no way any of the other tasks are going to be that dangerous how could they be ?Ron went on as he carried Pigwidgeon to the window .You know what ?I reckon you could win this tournament Harry Im serious .Harry knew that Ron was only saying this to make up for his behavior of the last few weeks but he appreciated it all the same .Hermione however leaned against the Owlery wall folded her arms and frowned at Ron .Harrys got a long way to go before he finishes this tournament she said seriously .If that was the first task I hate to think whats coming next .Right little ray of sunshine arent you ?said Ron .You and Professor Trelawney should get together sometime .He threw Pigwidgeon out of the window .Pigwidgeon plummeted twelve feet before managing to pull himself back up again the letter attached to his leg was much longer and heavier than usual Harry hadnt been able to resist giving Sirius a blowbyblow account of exactly how he had swerved circled and dodged the Horntail .They watched Pigwidgeon disappear into the darkness and then Ron said Well wed better get downstairs for your surprise party Harry Fred and George should have nicked enough food from the kitchens by now .Sure enough when they entered the Gryffindor common room it exploded with cheers and yells again .There were mountains of cakes and flagons of pumpkin juice and butterbeer on every surface Lee Jordan had let off some Filibusters Fireworks so that the air was thick with stars and sparks and Dean Thomas who was very good at drawing had put up some impressive new banners most of which depicted Harry zooming around the Horntails head on his Firebolt though a couple showed Cedric with his head on fire .Harry helped himself to food he had almost forgotten what it was like to feel properly hungry and sat down with Ron and Hermione .He couldnt believe how happy he felt he had Ron back on his side hed gotten through the first task and he wouldnt have to face the second one for three months .Blimey this is heavy said Lee Jordan picking up the golden egg which Harry had left on a table and weighing it in his hands .Open it Harry go on !Lets just see whats inside it !Hes supposed to work out the clue on his own Hermione said swiftly .Its in the tournament rules .I was supposed to work out how to get past the dragon on my own too Harry muttered so only Hermione could hear him and she grinned rather guiltily .Yeah go on Harry open it !several people echoed .Lee passed Harry the egg and Harry dug his fingernails into the groove that ran all the way around it and prised it open .It was hollow and completely empty but the moment Harry opened it the most horrible noise a loud and screechy wailing filled the room .The nearest thing to it Harry had ever heard was the ghost orchestra at Nearly Headless Nicks deathday party who had all been playing the musical saw .Shut it !Fred bellowed his hands over his ears .What was that ?said Seamus Finnigan staring at the egg as Harry slammed it shut again .Sounded like a banshee .Maybe youve got to get past one of those next Harry !It was someone being tortured !said Neville who had gone very white and spilled sausage rolls all over the floor .Youre going to have to fight the Cruciatus Curse !Dont be a prat Neville thats illegal said George .They wouldnt use the Cruciatus Curse on the champions .I thought it sounded a bit like Percy singing .maybe youve got to attack him while hes in the shower Harry .Want a jam tart Hermione ?said Fred .Hermione looked doubtfully at the plate he was offering her .Fred grinned .Its all right he said .I havent done anything to them .Its the custard creams youve got to watch Neville who had just bitten into a custard cream choked and spat it out .Fred laughed .Just my little joke Neville .Hermione took a jam tart .Then she said Did you get all this from the kitchens Fred ?Yep said Fred grinning at her .He put on a high pitched squeak and imitated a houseelf . ‘Anything we can get you sir anything at all !Theyre dead helpful .get me a roast ox if I said I was peckish .How do you get in there ?Hermione said in an innocently casual sort of voice .Easy said Fred concealed door behind a painting of a bowl of fruit .Just tickle the pear and it giggles and He stopped and looked suspiciously at her .Why ?Nothing said Hermione quickly .Going to try and lead the houseelves out on strike now are you ?said George .Going to give up all the leaflet stuff and try and stir them up into rebellion ?Several people chortled .Hermione didnt answer .Dont you go upsetting them and telling them theyve got to take clothes and salaries !said Fred warningly .Youll put them off their cooking !Just then Neville caused a slight diversion by turning into a large canary .Oh sorry Neville !Fred shouted over all the laughter .I forgot it was the custard creams we hexed Within a minute however Neville had molted and once his feathers had fallen off he reappeared looking entirely normal .He even joined in laughing .Canary Creams !Fred shouted to the excitable crowd .George and I invented them seven Sickles each a bargain !It was nearly one in the morning when Harry finally went up to the dormitory with Ron Neville Seamus and Dean .Before he pulled the curtains of his four poster shut Harry set his tiny model of the Hungarian Horntail on the table next to his bed where it yawned curled up and closed its eyes .Really Harry thought as he pulled the hangings on his fourposter closed Hagrid had a point .they were all right really dragons .The start of December brought wind and sleet to Hogwarts .Drafty though the castle always was in winter Harry was glad of its fires and thick walls every time he passed the Durmstrang ship on the lake which was pitching in the high winds its black sails billowing against the dark skies .He thought the Beauxbatons caravan was likely to be pretty chilly too .Hagrid he noticed was keeping Madame Maximes horses well provided with their preferred drink of singlemalt whiskey the fumes wafting from the trough in the corner of their paddock was enough to make the entire Care of Magical Creatures class lightheaded .This was unhelpful as they were still tending the horrible skrewts and needed their wits about them .Im not sure whether they hibernate or not Hagrid told the shivering class in the windy pumpkin patch next lesson .Thought wed jus try an see if they fancied a kip .well jus settle em down in these boxes .There were now only ten skrewts left apparently their desire to kill one another had not been exercised out of them .Each of them was now approaching six feet in length .Their thick gray armor their powerful scuttling legs their fireblasting ends their stings and their suckers combined to make the skrewts the most repulsive things Harry had ever seen .The class looked dispiritedly at the enormous boxes Hagrid had brought out all lined with pillows and fluffy blankets .Well jus lead em in here Hagrid said an put the lids on and well see what happens .But the skrewts it transpired did not hibernate and did not appreciate being forced into pillowlined boxes and nailed in .Hagrid was soon yelling Don panic now don panic !while the skrewts rampaged around the pumpkin patch now strewn with the smoldering wreckage of the boxes .Most of the class Malfoy Crabbe and Goyle in the lead had fled into Hagrid s cabin through the back door and barricaded themselves in Harry Ron and Hermione however were among those who remained outside trying to help Hagrid .Together they managed to restrain and tie up nine of the skrewts though at the cost of numerous burns and cuts finally only one skrewt was left .Don frighten him now !Hagrid shouted as Ron and Harry used their wands to shoot jets of fiery sparks at the skrewt which was advancing menacingly on them its sting arched quivering over its back .Jus try an slip the rope round his sting so he won hurt any o the others !Yeah we wouldnt want that !Ron shouted angrily as he and Harry backed into the wall of Hagrid s cabin still holding the skrewt off with their sparks .Well well well .this does look like fun .Rita Skeeter was leaning on Hagrid s garden fence looking in at the mayhem .She was wearing a thick magenta cloak with a furry purple collar today and her crocodileskin handbag was over her arm .Hagrid launched himself forward on top of the skrewt that was cornering Harry and Ron and flattened it a blast of fire shot out of its end withering the pumpkin plants nearby .Who re you ?Hagrid asked Rita Skeeter as he slipped a loop of rope around the skrewts sting and tightened it .Rita Skeeter Daily Prophet reporter Rita replied beaming at him .Her gold teeth glinted .Thought Dumbledore said you weren allowed inside the school anymore said Hagrid frowning slightly as he got off the slightly squashed skrewt and started tugging it over to its fellows .Rita acted as though she hadnt heard what Hagrid had said .What are these fascinating creatures called ?she asked beaming still more widely .BlastEnded Skrewts grunted Hagrid .Really ?said Rita apparently full of lively interest .Ive never heard of them before .where do they come from ?Harry noticed a dull red flush rising up out of Hagrids wild black beard and his heart sank .Where had Hagrid got the skrewts from ?Hermione who seemed to be thinking along these lines said quickly Theyre very interesting arent they ?Arent they Harry ?What ?Oh yeah .ouch .interesting said Harry as she stepped on his foot .Ah youre here Harry !said Rita Skeeter as she looked around .So you like Care of Magical Creatures do you ?One of your favorite lessons ?Yes said Harry stoutly .Hagrid beamed at him .Lovely said Rita .Really lovely .Been teaching long ?she added to Hagrid .Harry noticed her eyes travel over Dean who had a nasty cut across one cheek Lavender whose robes were badly singed Seamus who was nursing several burnt fingers and then to the cabin windows where most of the class stood their noses pressed against the glass waiting to see if the coast was clear .This is ony me second year said Hagrid .Lovely .I dont suppose youd like to give an interview would you ?Share some of your experience of magical creatures ?The Prophet does a zoological column every Wednesday as Im sure you know .We could feature these er BangEnded Scoots .BlastEnded Skrewts Hagrid said eagerly .Er yeah why not ?Harry had a very bad feeling about this but there was no way of communicating it to Hagrid without Rita Skeeter seeing so he had to stand and watch in silence as Hagrid and Rita Skeeter made arrangements to meet in the Three Broomsticks for a good long interview later that week .Then the bell rang up at the castle signaling the end of the lesson .Well goodbye Harry !Rita Skeeter called merrily to him as he set off with Ron and Hermione .Until Friday night then Hagrid !Shell twist everything he says Harry said under his breath .Just as long as he didnt import those skrewts illegally or anything said Hermione desperately .They looked at one another it was exactly the sort of thing Hagrid might do .Hagrids been in loads of trouble before and Dumbledores never sacked him said Ron consolingly .Worst that can happen is Hagridll have to get rid of the skrewts .Sorry .did I say worst ?I meant best .Harry and Hermione laughed and feeling slightly more cheerful went off to lunch .Harry thoroughly enjoyed double Divination that afternoon they were still doing star charts and predictions but now that he and Ron were friends once more the whole thing seemed very funny again .Professor Trelawney who had been so pleased with the pair of them when they had been predicting their own horrific deaths quickly became irritated as they sniggered through her explanation of the various ways in which Pluto could disrupt everyday life .I would think she said in a mystical whisper that did not conceal her obvious annoyance that some of us she stared very meaningfully at Harry might be a little less frivolous had they seen what I have seen during my crystal gazing last night .As I sat here absorbed in my needlework the urge to consult the orb overpowered me .I arose I settled myself before it and I gazed into its crystalline depths .and what do you think I saw gazing back at me ?An ugly old bat in outsize specs ?Ron muttered under his breath .Harry fought hard to keep his face straight .Death my dears .Parvati and Lavender both put their hands over their mouths looking horrified .Yes said Professor Trelawney nodding impressively it comes ever closer it circles overhead like a vulture ever lower .ever lower over the castle .She stared pointedly at Harry who yawned very widely and obviously .Itd be a bit more impressive if she hadnt done it about eighty times before Harry said as they finally regained the fresh air of the staircase beneath Professor Trelawneys room .But if Id dropped dead every time shes told me Im going to Id be a medical miracle .Youd be a sort of extraconcentrated ghost said Ron chortling as they passed the Bloody Baron going in the opposite direction his wide eyes staring sinisterly .At least we didnt get homework .I hope Hermione got loads off Professor Vector I love not working when she is .But Hermione wasnt at dinner nor was she in the library when they went to look for her afterward .The only person in there was Viktor Krum .Ron hovered behind the bookshelves for a while watching Krum debating in whispers with Harry whether he should ask for an autograph but then Ron realized that six or seven girls were lurking in the next row of books debating exactly the same thing and he lost his enthusiasm for the idea .Wonder where shes got to ?Ron said as he and Harry went back to Gryffindor Tower .Dunno .balderdash .But the Fat Lady had barely begun to swing forward when the sound of racing feet behind them announced Hermiones arrival .Harry !she panted skidding to a halt beside him the Fat Lady stared down at her eyebrows raised .Harry youve got to come youve got to come the most amazing things happened please She seized Harrys arm and started to try to drag him back along the corridor .Whats the matter ?Harry said .Ill show you when we get there oh come on quick Harry looked around at Ron he looked back at Harry intrigued .Okay Harry said starting off back down the corridor with Hermione Ron hurrying to keep up .Oh dont mind me !the Fat Lady called irritably after them .Dont apologize for bothering me !Ill just hang here wide open until you get back shall I ?Yeah thanks !Ron shouted over his shoulder .Hermione where are we going ?Harry asked after she had led them down through six floors and started down the marble staircase into the entrance hall .Youll see youll see in a minute !said Hermione excitedly .She turned left at the bottom of the staircase and hurried toward the door through which Cedric Diggory had gone the night after the Goblet of Fire had regurgitated his and Harrys names .Harry had never been through here before .He and Ron followed Hermione down a flight of stone steps but instead of ending up in a gloomy underground passage like the one that led to Snapes dungeon they found themselves in a broad stone corridor brightly lit with torches and decorated with cheerful paintings that were mainly of food .Oh hang on .said Harry slowly halfway down the corridor .Wait a minute Hermione .What ?She turned around to look at him anticipation all over her face .I know what this is about said Harry .He nudged Ron and pointed to the painting just behind Hermione .It showed a gigantic silver fruit bowl .Hermione !said Ron cottoning on .Youre trying to rope us into that spew stuff again !No no Im not !she said hastily .And its not spew Ron Changed the name have you ?said Ron frowning at her .What are we now then the HouseElf Liberation Front ?Im not barging into that kitchen and trying to make them stop work Im not doing it ‘Tm not asking you to !Hermione said impatiently .I came down here just now to talk to them all and I found oh come on Harry I want to show you !She seized his arm again pulled him in front of the picture of the giant fruit bowl stretched out her forefinger and tickled the huge green pear .It began to squirm chuckling and suddenly turned into a large green door handle .Hermione seized it pulled the door open and pushed Harry hard in the back forcing him inside .He had one brief glimpse of an enormous high ceilinged room large as the Great Hall above it with mounds of glittering brass pots and pans heaped around the stone walls and a great brick fireplace at the other end when something small hurtled toward him from the middle of the room squealing Harry Potter sir !Harry Potteri Next second all the wind had been knocked out of him as the squealing elf hit him hard in the midriff hugging him so tightly he thought his ribs would break .DDobby ?Harry gasped .It is Dobby sir it is !squealed the voice from somewhere around his navel .Dobby has been hoping and hoping to see Harry Potter sir and Harry Potter has come to see him sir !Dobby let go and stepped back a few paces beaming up at Harry his enormous green tennisballshaped eyes brimming with tears of happiness .He looked almost exactly as Harry remembered him the pencil shaped nose the batlike ears the long fingers and feet all except the clothes which were very different .When Dobby had worked for the Malfoys he had always worn the same filthy old pillowcase .Now however he was wearing the strangest assortment of garments Harry had ever seen he had done an even worse job of dressing himself than the wizards at the World Cup .He was wearing a tea cozy for a hat on which he had pinned a number of bright badges a tie patterned with horseshoes over a bare chest a pair of what looked like childrens soccer shorts and odd socks .One of these Harry saw was the black one Harry had removed from his own foot and tricked Mr Malfoy into giving Dobby thereby setting Dobby free .The other was covered in pink and orange stripes .Dobby whatre you doing here ?Harry said in amazement .Dobby has come to work at Hogwarts sir !Dobby squealed excitedly .Professor Dumbledore gave Dobby and Winky jobs sir !Winky ?said Harry .Shes here too ?Yes sir yes !said Dobby and he seized Harrys hand and pulled him off into the kitchen between the four long wooden tables that stood there .Each of these tables Harry noticed as he passed them was positioned exactly beneath the four House tables above in the Great Hall .At the moment they were clear of food dinner having finished but he supposed that an hour ago they had been laden with dishes that were then sent up through the ceiling to their counterparts above .At least a hundred little elves were standing around the kitchen beaming bowing and curtsying as Dobby led Harry past them .They were all wearing the same uniform a tea towel stamped with the Hogwarts crest and tied as Winkys had been like a toga .Dobby stopped in front of the brick fireplace and pointed .Winky sir !he said .Winky was sitting on a stool by the fire .Unlike Dobby she had obviously not foraged for clothes .She was wearing a neat little skirt and blouse with a matching blue hat which had holes in it for her large ears .However while every one of Dobby s strange collection of garments was so clean and well cared for that it looked brandnew Winky was plainly not taking care of her clothes at all .There were soup stains all down her blouse and a burn in her skirt .Hello Winky said Harry .Winkys lip quivered .Then she burst into tears which spilled out of her great brown eyes and splashed down her front just as they had done at the Quidditch World Cup .Oh dear said Hermione .She and Ron had followed Harry and Dobby to the end of the kitchen .Winky dont cry please dont .But Winky cried harder than ever .Dobby on the other hand beamed up at Harry .Would Harry Potter like a cup of tea ?he squeaked loudly over Winkys sobs .Er yeah okay said Harry .Instantly about six houseelves came trotting up behind him bearing a large silver tray laden with a teapot cups for Harry Ron and Hermione a milk jug and a large plate of biscuits .Good service !Ron said in an impressed voice .Hermione frowned at him but the elves all looked delighted they bowed very low and retreated .How long have you been here Dobby ?Harry asked as Dobby handed around the tea .Only a week Harry Potter sir !said Dobby happily .Dobby came to see Professor Dumbledore sir .You see sir it is very difficult for a houseelf who has been dismissed to get a new position sir very difficult indeed At this Winky howled even harder her squashed tomato of a nose dribbling all down her front though she made no effort to stem the flow .Dobby has traveled the country for two whole years sir trying to find work !Dobby squeaked .But Dobby hasnt found work sir because Dobby wants paying now !The houseelves all around the kitchen who had been listening and watching with interest all looked away at these words as though Dobby had said something rude and embarrassing .Hermione however said Good for you Dobby !Thank you miss !said Dobby grinning toothily at her .But most wizards doesnt want a houseelf who wants paying miss .Thats not the point of a house elf they says and they slammed the door in Dobby s face !Dobby likes work but he wants to wear clothes and he wants to be paid Harry Potter .Dobby likes being free !The Hogwarts houseelves had now started edging away from Dobby as though he were carrying something contagious .Winky however remained where she was though there was a definite increase in the volume of her crying .And then Harry Potter Dobby goes to visit Winky and finds out Winky has been freed too sir !said Dobby delightedly .At this Winky flung herself forward off her stool and lay facedown on the flagged stone floor beating her tiny fists upon it and positively screaming with misery .Hermione hastily dropped down to her knees beside her and tried to comfort her but nothing she said made the slightest difference .Dobby continued with his story shouting shrilly over Winkys screeches .And then Dobby had the idea Harry Potter sir !Why doesnt Dobby and Winky find work together ?Dobby says .Where is there enough work for two house elves ?says Winky .And Dobby thinks and it comes to him sir !Hogwarts So Dobby and Winky came to see Professor Dumbledore sir and Professor Dumbledore took us on !Dobby beamed very brightly and happy tears welled in his eyes again .And Professor Dumbledore says he will pay Dobby sir if Dobby wants paying !And so Dobby is a free elf sir and Dobby gets a Galleon a week and one day off a month !Thats not very much !Hermione shouted indignantly from the floor over Winkys continued screaming and fistbeating .Professor Dumbledore offered Dobby ten Galleons a week and weekends off said Dobby suddenly giving a little shiver as though the prospect of so much leisure and riches were frightening but Dobby beat him down miss .Dobby likes freedom miss but he isnt wanting too much miss he likes work better .And how much is Professor Dumbledore paying you Winky ?Hermione asked kindly .If she had thought this would cheer up Winky she was wildly mistaken .Winky did stop crying but when she sat up she was glaring at Hermione through her massive brown eyes her whole face sopping wet and suddenly furious .Winky is a disgraced elf but Winky is not yet getting paid !she squeaked .Winky is not sunk so low as that !Winky is properly ashamed of being freed !Ashamed ?said Hermione blankly .But Winky come on !Its Mr Crouch who should be ashamed not you !You didnt do anything wrong he was really horrible to you But at these words Winky clapped her hands over the holes in her hat flattening her ears so that she couldnt hear a word and screeched You is not insulting my master miss !You is not insulting Mr Crouch !Mr Crouch is a good wizard miss !Mr Crouch is right to sack bad Winky !Winky is having trouble adjusting Harry Potter squeaked Dobby confidentially .Winky forgets she is not bound to Mr Crouch anymore she is allowed to speak her mind now but she wont do it .Cant houseelves speak their minds about their masters then ?Harry asked .Oh no sir no said Dobby looking suddenly serious .Tis part of the houseelfs enslavement sir .We keeps their secrets and our silence sir .We upholds the familys honor and we never speaks ill of them though Professor Dumbledore told Dobby he does not insist upon this .Professor Dumbledore said we is free to to Dobby looked suddenly nervous and beckoned Harry closer .Harry bent forward .Dobby whispered He said we is free to call him a a barmy old codger if we likes sir !Dobby gave a frightened sort of giggle .But Dobby is not wanting to Harry Potter he said talking normally again and shaking his head so that his ears flapped .Dobby likes Professor Dumbledore very much sir and is proud to keep his secrets and our silence for him .But you can say what you like about the Malfoys now ?Harry asked him grinning .A slightly fearful look came into Dobbys immense eyes .Dobby Dobby could he said doubtfully .He squared his small shoulders .Dobby could tell Harry Potter that his old masters were were bad Dark wizards .Dobby stood for a moment quivering all over horror struck by his own daring then he rushed over to the nearest table and began banging his head on it very hard squealing Bad Dobby !Bad Dobby Harry seized Dobby by the back of his tie and pulled him away from the table .Thank you Harry Potter thank you said Dobby breathlessly rubbing his head .You just need a bit of practice Harry said .Practice !squealed Winky furiously .You is ought to be ashamed of yourself Dobby talking that way about your masters !They isnt my masters anymore Winky !said Dobby defiantly .Dobby doesnt care what they think anymore !Oh you is a bad elf Dobby !moaned Winky tears leaking down her face once more .My poor Mr Crouch what is he doing without Winky ?He is needing me he is needing my help !I is looking after the Crouches all my life and my mother is doing it before me and my grandmother is doing it before her .oh what is they saying if they knew Winky was freed ?Oh the shame the shame !She buried her face in her skirt again and bawled .Winky said Hermione firmly Im quite sure Mr Crouch is getting along perfectly well without you .Weve seen him you know You is seeing my master ?said Winky breathlessly raising her tearstained face out of her skirt once more and goggling at Hermione .You is seeing him here at Hogwarts ?Yes said Hermione he and Mr Bagman are judges in the Triwizard Tournament .Mr Bagman comes too ?squeaked Winky and to Harrys great surprise and Rons and Hermiones too by the looks on their faces she looked angry again .Mr Bagman is a bad wizard !A very bad wizard !My master isnt liking him oh no not at all !Bagman bad ?said Harry .Oh yes Winky said nodding her head furiously .My master is telling Winky some things !But Winky is not saying .Winky Winky keeps her masters secrets .She dissolved yet again in tears they could hear her sobbing into her skirt Poor master poor master no Winky to help him no more !They couldnt get another sensible word out of Winky .They left her to her crying and finished their tea while Dobby chatted happily about his life as a free elf and his plans for his wages .Dobby is going to buy a sweater next Harry Potter !he said happily pointing at his bare chest .Tell you what Dobby said Ron who seemed to have taken a great liking to the elf Ill give you the one my mum knits me this Christmas I always get one from her .You dont mind maroon do you ?Dobby was delighted .We might have to shrink it a bit to fit you Ron told him but itll go well with your tea cozy .As they prepared to take their leave many of the surrounding elves pressed in upon them offering snacks to take back upstairs .Hermione refused with a pained look at the way the elves kept bowing and curtsying but Harry and Ron loaded their pockets with cream cakes and pies .Thanks a lot !Harry said to the elves who had all clustered around the door to say good night .See you Dobby !Harry Potter .can Dobby come and see you sometimes sir ?Dobby asked tentatively .Course you can said Harry and Dobby beamed .You know what ?said Ron once he Hermione and Harry had left the kitchens behind and were climbing the steps into the entrance hall again .All these years Ive been really impressed with Fred and George nicking food from the kitchens well its not exactly difficult is it ?They cant wait to give it away !I think this is the best thing that could have happened to those elves you know said Hermione leading the way back up the marble staircase .Dobby coming to work here I mean .The other elves will see how happy he is being free and slowly itll dawn on them that they want that too !Lets hope they dont look too closely at Winky said Harry .Oh shell cheer up said Hermione though she sounded a bit doubtful .Once the shocks worn off and shes got used to Hogwarts shell see how much better off she is without that Crouch man .She seems to love him said Ron thickly he had just started on a cream cake .Doesnt think much of Bagman though does she ?said Harry .Wonder what Crouch says at home about him ?Probably says hes not a very good Head of Department said Hermione and lets face it .hes got a point hasnt he ?Id still rather work for him than old Crouch said Ron .At least Bagmans got a sense of humor .Dont let Percy hear you saying that Hermione said smiling slightly .Yeah well Percy wouldnt want to work for anyone with a sense of humor would he ?said Ron now starting on a chocolate eclair .Percy wouldnt recognize a joke if it danced naked in front of him wearing Dobbys tea cozy .THE UNEXPECTED TASK Potter !Weasley !Will you pay attention ?Professor McGonagalls irritated voice cracked like a whip through the Transfiguration class on Thursday and Harry and Ron both jumped and looked up .It was the end of the lesson they had finished their work the guinea fowl they had been changing into guinea pigs had been shut away in a large cage on Professor McGonagalls desk Nevilles still had feathers they had copied down their homework from the blackboard Describe with examples the ways in which Transforming Spells must be adapted when performing CrossSpecies Switches .The bell was due to ring at any moment and Harry and Ron who had been having a sword fight with a couple of Fred and Georges fake wands at the back of the class looked up Ron holding a tin parrot and Harry a rubber haddock .Now that Potter and Weasley have been kind enough to act their age said Professor McGonagall with an angry look at the pair of them as the head of Harrys haddock drooped and fell silently to the floor Rons parrots beak had severed it moments before I have something to say to you all .The Yule Ball is approaching a traditional part of the Triwizard Tournament and an opportunity for us to socialize with our foreign guests .Now the ball will be open only to fourth years and above although you may invite a younger student if you wish Lavender Brown let out a shrill giggle .Parvati Patil nudged her hard in the ribs her face working furiously as she too fought not to giggle .They both looked around at Harry .Professor McGonagall ignored them which Harry thought was distinctly unfair as she had just told off him and Ron .Dress robes will be worn Professor McGonagall continued and the ball will start at eight oclock on Christmas Day finishing at midnight in the Great Hall .Now then Professor McGonagall stared deliberately around the class .The Yule Ball is of course a chance for us all to er let our hair down she said in a disapproving voice .Lavender giggled harder than ever with her hand pressed hard against her mouth to stifle the sound .Harry could see what was funny this time Professor McGonagall with her hair in a tight bun looked as though she had never let her hair down in any sense .But that does NOT mean Professor McGonagall went on that we will be relaxing the standards of behavior we expect from Hogwarts students .I will be most seriously displeased if a Gryffindor student embarrasses the school in any way .The bell rang and there was the usual scuffle of activity as everyone packed their bags and swung them onto their shoulders .Professor McGonagall called above the noise Potter a word if you please .Assuming this had something to do with his headless rubber haddock Harry proceeded gloomily to the teachers desk .Professor McGonagall waited until the rest of the class had gone and then said Potter the champions and their partners What partners ?said Harry .Professor McGonagall looked suspiciously at him as though she thought he was trying to be funny .Your partners for the Yule Ball Potter she said coldly .Your dance partners .Harrys insides seemed to curl up and shrivel .Dance partners ?He felt himself going red .I dont dance he said quickly .Oh yes you do said Professor McGonagall irritably .Thats what Im telling you .Traditionally the champions and their partners open the ball .Harry had a sudden mental image of himself in a top hat and tails accompanied by a girl in the sort of frilly dress Aunt Petunia always wore to Uncle Vernons work parties .Im not dancing he said .It is traditional said Professor McGonagall firmly .You are a Hogwarts champion and you will do what is expected of you as a representative of the school .So make sure you get yourself a partner Potter .But I dont You heard me Potter said Professor McGonagall in a very final sort of way .A week ago Harry would have said finding a partner for a dance would be a cinch compared to taking on a Hungarian Horntail .But now that he had done the latter and was facing the prospect of asking a girl to the ball he thought hed rather have another round with the dragon .Harry had never known so many people to put their names down to stay at Hogwarts for Christmas he always did of course because the alternative was usually going back to Privet Drive but he had always been very much in the minority before now .This year however everyone in the fourth year and above seemed to be staying and they all seemed to Harry to be obsessed with the coming ball or at least all the girls were and it was amazing how many girls Hogwarts suddenly seemed to hold he had never quite noticed that before .Girls giggling and whispering in the corridors girls shrieking with laughter as boys passed them girls excitedly comparing notes on what they were going to wear on Christmas night .Why do they have to move in packs ?Harry asked Ron as a dozen or so girls walked past them sniggering and staring at Harry .Howre you supposed to get one on their own to ask them ?Lasso one ?Ron suggested .Got any idea who youre going to try ?Harry didnt answer .He knew perfectly well whom hed like to ask but working up the nerve was something else .Cho was a year older than he was she was very pretty she was a very good Quidditch player and she was also very popular .Ron seemed to know what was going on inside Harrys head .Listen youre not going to have any trouble .Youre a champion .Youve just beaten a Hungarian Horntail .I bet they 11 be queuing up to go with you .In tribute to their recently repaired friendship Ron had kept the bitterness in his voice to a bare minimum .Moreover to Harrys amazement he turned out to be quite right .A curlyhaired thirdyear Hufflepuff girl to whom Harry had never spoken in his life asked him to go to the ball with her the very next day .Harry was so taken aback he said no before hed even stopped to consider the matter .The girl walked off looking rather hurt and Harry had to endure Deans Seamuss and Rons taunts about her all through History of Magic .The following day two more girls asked him a second year and to his horror a fifth year who looked as though she might knock him out if he refused .She was quite goodlooking said Ron fairly after hed stopped laughing .She was a foot taller than me said Harry still unnerved .Imagine what Id look like trying to dance with her .Hermiones words about Krum kept coming back to him .They only like him because hes famous !Harry doubted very much if any of the girls who had asked to be his partner so far would have wanted to go to the ball with him if he hadnt been a school champion .Then he wondered if this would bother him if Cho asked him .On the whole Harry had to admit that even with the embarrassing prospect of opening the ball before him life had definitely improved since he had got through the first task .He wasnt attracting nearly as much unpleasantness in the corridors anymore which he suspected had a lot to do with Cedric he had an idea Cedric might have told the Hufflepuffs to leave Harry alone in gratitude for Harrys tipoff about the dragons .There seemed to be fewer Support Cedric Diggoryl badges around too .Draco Malfoy of course was still quoting Rita Skeeters article to him at every possible opportunity but he was getting fewer and fewer laughs out of it and just to heighten Harrys feeling of wellbeing no story about Hagrid had appeared in the Daily Prophet She didn seem very intrested in magical creatures ter tell yeh the truth Hagrid said when Harry Ron and Hermione asked him how his interview with Rita Skeeter had gone during the last Care of Magical Creatures lesson of the term .To their very great relief Hagrid had given up on direct contact with the skrewts now and they were merely sheltering behind his cabin today sitting at a trestle table and preparing a fresh selection of food with which to tempt the skrewts .She jus wanted me ter talk about you Harry Hagrid continued in a low voice .Well I told her wed been friends since I went ter fetch yeh from the Dursleys . ‘Never had to tell him off in four years ?she said . ‘Never played you up in lessons has he ?I told her no an she didn seem happy at all .Yehd think she wanted me to say yeh were horrible Harry .Course she did said Harry throwing lumps of dragon liver into a large metal bowl and picking up his knife to cut some more .She cant keep writing about what a tragic little hero I am itll get boring .She wants a new angle Hagrid said Ron wisely as he shelled salamander eggs .You were supposed to say Harrys a mad delinquent !But hes not !said Hagrid looking genuinely shocked .She shouldve interviewed Snape said Harry grimly .Hed give her the goods on me any day . ‘Potter has been crossing lines ever since he first arrived at this school .Said that did he ?said Hagrid while Ron and Hermione laughed .Well yeh mightve bent a few rules Harry bu yehre all righ really aren you ?Cheers Hagrid said Harry grinning .You coming to this ball thing on Christmas Day Hagrid ?said Ron .Though I might look in on it yeah said Hagrid gruffly .Should be a good do I reckon .Youll be openin the dancin won yeh Harry ?Who re you takin ?No one yet said Harry feeling himself going red again .Hagrid didnt pursue the subject .The last week of term became increasingly boisterous as it progressed .Rumors about the Yule Ball were flying everywhere though Harry didnt believe half of them for instance that Dumbledore had bought eight hundred barrels of mulled mead from Madam Rosmerta .It seemed to be fact however that he had booked the Weird Sisters .Exactly who or what the Weird Sisters were Harry didnt know never having had access to a wizards wireless but he deduced from the wild excitement of those who had grown up listening to the WWN Wizarding Wireless Network that they were a very famous musical group .Some of the teachers like little Professor Flitwick gave up trying to teach them much when their minds were so clearly elsewhere he allowed them to play games in his lesson on Wednesday and spent most of it talking to Harry about the perfect Summoning Charm Harry had used during the first task of the Triwizard Tournament .Other teachers were not so generous .Nothing would ever deflect Professor Binns for example from plowing on through his notes on goblin rebellions as Binns hadnt let his own death stand in the way of continuing to teach they supposed a small thing like Christmas wasnt going to put him off .It was amazing how he could make even bloody and vicious goblin riots sound as boring as Percys cauldronbottom report .Professors McGonagall and Moody kept them working until the very last second of their classes too and Snape of course would no sooner let them play games in class than adopt Harry .Staring nastily around at them all he informed them that he would be testing them on poison antidotes during the last lesson of the term .Evil he is Ron said bitterly that night in the Gryffindor common room .Springing a test on us on the last day .Ruining the last bit of term with a whole load of studying .Mmm .youre not exactly straining yourself though are you ?said Hermione looking at him over the top of her Potions notes .Ron was busy building a card castle out of his Exploding Snap pack a much more interesting pastime than with Muggle cards because of the chance that the whole thing would blow up at any second .Its Christmas Hermione said Harry lazily he was rereading Flying with the Cannons for the tenth time in an armchair near the fire .Hermione looked severely over at him too .Id have thought youd be doing something constructive Harry even if you dont want to learn your antidotes !Like what ?Harry said as he watched Joey Jenkins of the Cannons belt a Bludger toward a Ballycastle Bats Chaser .That egg !Hermione hissed .Come on Hermione Ive got till February the twenty fourth Harry said .He had put the golden egg upstairs in his trunk and hadnt opened it since the celebration party after the first task .There were still two and a half months to go until he needed to know what all the screechy wailing meant after all .But it might take weeks to work it out !said Hermione .Youre going to look a real idiot if everyone else knows what the next task is and you dont !Leave him alone Hermione hes earned a bit of a break said Ron and he placed the last two cards on top of the castle and the whole lot blew up singeing his eyebrows .Nice look Ron .go well with your dress robes that will .It was Fred and George .They sat down at the table with Harry Ron and Hermione as Ron felt how much damage had been done .Ron can we borrow Pigwidgeon ?George asked .No hes off delivering a letter said Ron .Why ?Because George wants to invite him to the ball said Fred sarcastically .Because we want to send a letter you stupid great prat said George .Who dyou two keep writing to eh ?said Ron .Nose out Ron or Ill burn that for you too said Fred waving his wand threateningly .So .you lot got dates for the ball yet ?Nope said Ron .Well youd better hurry up mate or all the good ones will be gone said Fred .Whore you going with then ?said Ron .Angelina said Fred promptly without a trace of embarrassment .What ?said Ron taken aback .Youve already asked her ?Good point said Fred .He turned his head and called across the common room Oi !Angelina !Angelina who had been chatting with Alicia Spinnet near the fire looked over at him .What ?she called back .Want to come to the ball with me ?Angelina gave Fred an appraising sort of look .All right then she said and she turned back to Alicia and carried on chatting with a bit of a grin on her face .There you go said Fred to Harry and Ron piece of cake .He got to his feet yawning and said Wed better use a school owl then George come on .They left .Ron stopped feeling his eyebrows and looked across the smoldering wreck of his card castle at Harry .We should get a move on you know .ask someone .Hes right .We dont want to end up with a pair of trolls .Hermione let out a sputter of indignation .A pair of .what excuse me ?Well you know said Ron shrugging .Id rather go alone than with with Eloise Midgen say .Her acnes loads better lately and shes really nice !Her nose is offcenter said Ron .Oh I see Hermione said bristling .So basically youre going to take the bestlooking girl wholl have you even if shes completely horrible ?Er yeah that sounds about right said Ron .Im going to bed Hermione snapped and she swept off toward the girls staircase without another word .The Hogwarts staff demonstrating a continued desire to impress the visitors from Beauxbatons and Durmstrang seemed determined to show the castle at its best this Christmas .When the decorations went up Harry noticed that they were the most stunning he had yet seen inside the school .Everlasting icicles had been attached to the banisters of the marble staircase the usual twelve Christmas trees in the Great Hall were bedecked with everything from luminous holly berries to real hooting golden owls and the suits of armor had all been bewitched to sing carols whenever anyone passed them .It was quite something to hear O Come All Ye Faithful sung by an empty helmet that only knew half the words .Several times Filch the caretaker had to extract Peeves from inside the armor where he had taken to hiding filling in the gaps in the songs with lyrics of his own invention all of which were very rude .And still Harry hadnt asked Cho to the ball .He and Ron were getting very nervous now though as Harry pointed out Ron would look much less stupid than he would without a partner Harry was supposed to be starting the dancing with the other champions .I suppose theres always Moaning Myrtle he said gloomily referring to the ghost who haunted the girls toilets on the second floor .Harry weve just got to grit our teeth and do it said Ron on Friday morning in a tone that suggested they were planning the storming of an impregnable fortress .When we get back to the common room tonight well both have partners agreed ?Er .okay said Harry .But every time he glimpsed Cho that day during break and then lunchtime and once on the way to History of Magic she was surrounded by friends .Didnt she ever go anywhere alone ?Could he perhaps ambush her as she was going into a bathroom ?But no she even seemed to go there with an escort of four or five girls .Yet if he didnt do it soon she was bound to have been asked by somebody else .He found it hard to concentrate on Snapes Potions test and consequently forgot to add the key ingredient a bezoar meaning that he received bottom marks .He didnt care though he was too busy screwing up his courage for what he was about to do .When the bell rang he grabbed his bag and hurried to the dungeon door .Ill meet you at dinner he said to Ron and Hermione and he dashed off upstairs .Hed just have to ask Cho for a private word that was all .He hurried off through the packed corridors looking for her and rather sooner than he had expected he found her emerging from a Defense Against the Dark Arts lesson .Er Cho ?Could I have a word with you ?Giggling should be made illegal Harry thought furiously as all the girls around Cho started doing it .She didnt though .She said Okay and followed him out of earshot of her classmates .Harry turned to look at her and his stomach gave a weird lurch as though he had missed a step going downstairs .Er he said .He couldnt ask her .He couldnt .But he had to .Cho stood there looking puzzled watching him .The words came out before Harry had quite got his tongue around them .Wangoballwime ?Sorry ?said Cho .Dyou dyou want to go to the ball with me ?said Harry .Why did he have to go red now ?Why ?Oh !said Cho and she went red too .Oh Harry Im really sorry and she truly looked it .Ive already said Ill go with someone else .Oh said Harry .It was odd a moment before his insides had been writhing like snakes but suddenly he didnt seem to have any insides at all .Oh okay he said no problem .Im really sorry she said again .Thats okay said Harry .They stood there looking at each other and then Cho said Well Yeah said Harry .Well bye said Cho still very red .She walked away .Harry called after her before he could stop himself .Who re you going with ?Oh Cedric she said .Cedric Diggory .Oh right said Harry .His insides had come back again .It felt as though they had been filled with lead in their absence .Completely forgetting about dinner he walked slowly back up to Gryffindor Tower Chos voice echoing in his ears with every step he took .Cedric Cedric Diggory .He had been starting to quite like Cedric prepared to overlook the fact that he had once beaten him at Quidditch and was handsome and popular and nearly everyones favorite champion .Now he suddenly realized that Cedric was in fact a useless pretty boy who didnt have enough brains to fill an eggcup .Fairy lights he said dully to the Fat Lady the password had been changed the previous day .Yes indeed dear !she trilled straightening her new tinsel hair band as she swung forward to admit him .Entering the common room Harry looked around and to his surprise he saw Ron sitting ashenfaced in a distant corner .Ginny was sitting with him talking to him in what seemed to be a low soothing voice .Whats up Ron ?said Harry joining them .Ron looked up at Harry a sort of blind horror in his face .Why did I do it ?he said wildly .I dont know what made me do it !What ?said Harry .He er just asked Fleur Delacour to go to the ball with him said Ginny .She looked as though she was fighting back a smile but she kept patting Rons arm sympathetically .You what ?said Harry .I dont know what made me do it !Ron gasped again .What was I playing at ?There were people all around Ive gone mad everyone watching !I was just walking past her in the entrance hall she was standing there talking to Diggory and it sort of came over me and I asked her !Ron moaned and put his face in his hands .He kept talking though the words were barely distinguishable .She looked at me like I was a sea slug or something .Didnt even answer .And then I dunno I just sort of came to my senses and ran for it .Shes part veela said Harry .You were right her grandmother was one .It wasnt your fault I bet you just walked past when she was turning on the old charm for Diggory and got a blast of it but she was wasting her time .Hes going with Cho Chang .Ron looked up .I asked her to go with me just now Harry said dully and she told me .Ginny had suddenly stopped smiling .This is mad said Ron .Were the only ones left who havent got anyone well except Neville .Hey guess who he asked ?Hermionel What ?said Harry completely distracted by this startling news .Yeah I know !said Ron some of the color coming back into his face as he started to laugh .He told me after Potions !Said shes always been really nice helping him out with work and stuff but she told him she was already going with someone .Ha !As if !She just didnt want to go with Neville .I mean who would ?Dont !said Ginny annoyed .Dont laugh Just then Hermione climbed in through the portrait hole .Why werent you two at dinner ?she said coming over to join them .Because oh shut up laughing you two because theyve both just been turned down by girls they asked to the ball !said Ginny .That shut Harry and Ron up .Thanks a bunch Ginny said Ron sourly .All the goodlooking ones taken Ron ?said Hermione loftily .Eloise Midgen starting to look quite pretty now is she ?Well Im sure youll find someone somewhere wholl have you .But Ron was staring at Hermione as though suddenly seeing her in a whole new light .Hermione Nevilles right you are a girl .Oh well spotted she said acidly .Well you can come with one of us !No I cant snapped Hermione .Oh come on he said impatiently we need partners were going to look really stupid if we havent got any everyone else has .I cant come with you said Hermione now blushing because Im already going with someone .No youre not !said Ron .You just said that to get rid of Neville !Oh did I ?said Hermione and her eyes flashed dangerously .Just because its taken you three years to notice Ron doesnt mean no one else has spotted Im a girl !Ron stared at her .Then he grinned again .Okay okay we know youre a girl he said .That do ?Will you come now ?Ive already told you !Hermione said very angrily .Im going with someone else !And she stormed off toward the girls dormitories again .Shes lying said Ron flatly watching her go .Shes not said Ginny quietly .Who is it then ?said Ron sharply .Im not telling you its her business said Ginny .Right said Ron who looked extremely put out this is getting stupid .Ginny you can go with Harry and Ill just I cant said Ginny and she went scarlet too .Im going with with Neville .He asked me when Hermione said no and I thought .well .Im not going to be able to go otherwise Im not in fourth year .She looked extremely miserable .I think Ill go and have dinner she said and she got up and walked off to the portrait hole her head bowed .Ron goggled at Harry .Whats got into them ?he demanded .But Harry had just seen Parvati and Lavender come in through the portrait hole .The time had come for drastic action .Wait here he said to Ron and he stood up walked straight up to Parvati and said Parvati ?Will you go to the ball with me ?Parvati went into a fit of giggles .Harry waited for them to subside his fingers crossed in the pocket of his robes .Yes all right then she said finally blushing furiously .Thanks said Harry in relief .Lavender will you go with Ron ?Shes going with Seamus said Parvati and the pair of them giggled harder than ever .Harry sighed .Cant you think of anyone whod go with Ron ?he said lowering his voice so that Ron wouldnt hear .What about Hermione Granger ?said Parvati .Shes going with someone else .Parvati looked astonished .Ooooh who ?she said keenly .Harry shrugged .No idea he said .So what about Ron ?Well .said Parvati slowly I suppose my sister might .Padma you know .in Ravenclaw .Ill ask her if you like .Yeah that would be great said Harry .Let me know will you ?And he went back over to Ron feeling that this ball was a lot more trouble than it was worth and hoping very much that Padma Patils nose was dead center .THE YULE BALL Despite the very heavy load of homework that the fourth years had been given for the holidays Harry was in no mood to work when term ended and spent the week leading up to Christmas enjoying himself as fully as possible along with everyone else .Gryffindor Tower was hardly less crowded now than during termtime it seemed to have shrunk slightly too as its inhabitants were being so much rowdier than usual .Fred and George had had a great success with their Canary Creams and for the first couple of days of the holidays people kept bursting into feather all over the place .Before long however all the Gryffindors had learned to treat food anybody else offered them with extreme caution in case it had a Canary Cream concealed in the center and George confided to Harry that he and Fred were now working on developing something else .Harry made a mental note never to accept so much as a crisp from Fred and George in future .He still hadnt forgotten Dudley and the TonTongue Toffee .Snow was falling thickly upon the castle and its grounds now .The pale blue Beauxbatons carriage looked like a large chilly frosted pumpkin next to the iced gingerbread house that was Hagrids cabin while the Durmstrang ships portholes were glazed with ice the rigging white with frost .The houseelves down in the kitchen were outdoing themselves with a series of rich warming stews and savory puddings and only Fleur Delacour seemed to be able to find anything to complain about .It is too eavy all zis Ogwarts food they heard her saying grumpily as they left the Great Hall behind her one evening Ron skulking behind Harry keen not to be spotted by Fleur .I will not fit into my dress robes !Oooh theres a tragedy Hermione snapped as Fleur went out into the entrance hall .She really thinks a lot of herself that one doesnt she ?Hermione who are you going to the ball with ?said Ron .He kept springing this question on her hoping to startle her into a response by asking it when she least expected it .However Hermione merely frowned and said Im not telling you youll just make fun of me .Youre joking Weasley !said Malfoy behind them .Youre not telling me someones asked that to the ball ?Not the longmolared Mudblood ?Harry and Ron both whipped around but Hermione said loudly waving to somebody over Malfoys shoulder Hello Professor Moody !Malfoy went pale and jumped backward looking wildly around for Moody but he was still up at the staff table finishing his stew .Twitchy little ferret arent you Malfoy ?said Hermione scathingly and she Harry and Ron went up the marble staircase laughing heartily .Hermione said Ron looking sideways at her suddenly frowning your teeth .What about them ?she said .Well theyre different .Ive just noticed .Of course they are did you expect me to keep those fangs Malfoy gave me ?No I mean theyre different to how they were before he put that hex on you .Theyre all .straight and and normalsized .Hermione suddenly smiled very mischievously and Harry noticed it too It was a very different smile from the one he remembered .Well .when I went up to Madam Pomfrey to get them shrunk she held up a mirror and told me to stop her when they were back to how they normally were she said .And I just .let her carry on a bit .She smiled even more widely .Mum and Dad wont be too pleased .Ive been trying to persuade them to let me shrink them for ages but they wanted me to carry on with my braces .You know theyre dentists they just dont think teeth and magic should look !Pigwidgeons back !Rons tiny owl was twittering madly on the top of the icicleladen banisters a scroll of parchment tied to his leg .People passing him were pointing and laughing and a group of thirdyear girls paused and said Oh look at the weeny owl !Isnt he cute ?Stupid little feathery git !Ron hissed hurrying up the stairs and snatching up Pigwidgeon .You bring letters to the addressee !You dont hang around showing off !Pigwidgeon hooted happily his head protruding over Rons fist .The thirdyear girls all looked very shocked .Clear off !Ron snapped at them waving the fist holding Pigwidgeon who hooted more happily than ever as he soared through the air .Here take it Harry Ron added in an undertone as the thirdyear girls scuttled away looking scandalized .He pulled Siriuss reply off Pigwidgeons leg Harry pocketed it and they hurried back to Gryffindor Tower to read it .Everyone in the common room was much too busy in letting off more holiday steam to observe what anyone else was up to .Ron Harry and Hermione sat apart from everyone else by a dark window that was gradually filling up with snow and Harry read out Dear Harry Congratulations on getting past the Horntail .Whoever put your name in that goblet shouldnt be feeling too happy right now !I was going to suggest a Conjunctivitis Curse as a dragons eyes are its weakest point Thats what Krum did !Hermione whispered but your way was better Im impressed .Dont get complacent though Harry .Youve only done one task whoever put you in for the tournaments got plenty more opportunity if theyre trying to hurt you .Keep your eyes open particularly when the person we discussed is around and concentrate on keeping yourself out of trouble .Keep in touch I still want to hear about anything unusual .Sirius He sounds exactly like Moody said Harry quietly tucking the letter away again inside his robes . ‘Constant vigilance !Youd think I walk around with my eyes shut banging off the walls .But hes right Harry said Hermione you have still got two tasks to do .You really ought to have a look at that egg you know and start working out what it means .Hermione hes got ages !snapped Ron .Want a game of chess Harry ?Yeah okay said Harry .Then spotting the look on Hermione s face he said Come on howm I supposed to concentrate with all this noise going on ?I wont even be able to hear the egg over this lot .Oh I suppose not she sighed and she sat down to watch their chess match which culminated in an exciting checkmate of Rons involving a couple of recklessly brave pawns and a very violent bishop .Harry awoke very suddenly on Christmas Day .Wondering what had caused his abrupt return to consciousness he opened his eyes and saw something with very large round green eyes staring back at him in the darkness so close they were almost nose to nose .Dobbyl Harry yelled scrambling away from the elf so fast he almost fell out of bed .Dont do that !Dobby is sorry sir !squeaked Dobby anxiously jumping backward with his long fingers over his mouth .Dobby is only wanting to wish Harry Potter ‘Merry Christmas and bring him a present sir !Harry Potter did say Dobby could come and see him sometimes sir !Its okay said Harry still breathing rather faster than usual while his heart rate returned to normal .Just just prod me or something in future all right dont bend over me like that .Harry pulled back the curtains around his four poster took his glasses from his bedside table and put them on .His yell had awoken Ron Seamus Dean and Neville .All of them were peering through the gaps in their own hangings heavyeyed and touslehaired .Someone attacking you Harry ?Seamus asked sleepily .No its just Dobby Harry muttered .Go back to sleep .Nah .presents !said Seamus spotting the large pile at the foot of his bed .Ron Dean and Neville decided that now they were awake they might as well get down to some presentopening too .Harry turned back to Dobby who was now standing nervously next to Harrys bed still looking worried that he had upset Harry .There was a Christmas bauble tied to the loop on top of his tea cozy .Can Dobby give Harry Potter his present ?he squeaked tentatively .Course you can said Harry .Er .Ive got something for you too .It was a lie he hadnt bought anything for Dobby at all but he quickly opened his trunk and pulled out a particularly knobbly rolledup pair of socks .They were his oldest and foulest mustard yellow and had once belonged to Uncle Vernon .The reason they were extraknobbly was that Harry had been using them to cushion his Sneakoscope for over a year now .He pulled out the Sneakoscope and handed the socks to Dobby saying Sorry I forgot to wrap them .But Dobby was utterly delighted .Socks are Dobbys favorite favorite clothes sir !he said ripping off his odd ones and pulling on Uncle Vernons .I has seven now sir .But sir .he said his eyes widening having pulled both socks up to their highest extent so that they reached to the bottom of his shorts they has made a mistake in the shop Harry Potter they is giving you two the same !Ah no Harry how come you didnt spot that ?said Ron grinning over from his own bed which was now strewn with wrapping paper .Tell you what Dobby here you go take these two and you can mix them up properly .And heres your sweater .He threw Dobby a pair of violet socks he had just unwrapped and the handknitted sweater Mrs Weasley had sent .Dobby looked quite overwhelmed .Sir is very kind !he squeaked his eyes brimming with tears again bowing deeply to Ron .Dobby knew sir must be a great wizard for he is Harry Potters greatest friend but Dobby did not know that he was also as generous of spirit as noble as selfless Theyre only socks said Ron who had gone slightly pink around the ears though he looked rather pleased all the same .Wow Harry He had just opened Harrys present a Chudley Cannon hat .Cool !He jammed it onto his head where it clashed horribly with his hair .Dobby now handed Harry a small package which turned out to be socks .Dobby is making them himself sir !the elf said happily .He is buying the wool out of his wages sir !The left sock was bright red and had a pattern of broomsticks upon it the right sock was green with a pattern of Snitches .Theyre .theyre really .well thanks Dobby said Harry and he pulled them on causing Dobbys eyes to leak with happiness again .Dobby must go now sir we is already making Christmas dinner in the kitchens !said Dobby and he hurried out of the dormitory waving goodbye to Ron and the others as he passed .Harrys other presents were much more satisfactory than Dobbys odd socks with the obvious exception of the Dursleys which consisted of a single tissue an alltime low Harry supposed they too were remembering the TonTongue Toffee .Hermione had given Harry a book called Quidditch Teams of Britain and Ireland Ron a bulging bag of Dungbombs Sirius a handy penknife with attachments to unlock any lock and undo any knot and Hagrid a vast box of sweets including all Harrys favorites Bertie Botts Every Flavor Beans Chocolate Frogs Droobles Best Blowing Gum and Fizzing Whizbees .There was also of course Mrs Weasleys usual package including a new sweater green with a picture of a dragon on it Harry supposed Charlie had told her all about the Horntail and a large quantity of homemade mince pies .Harry and Ron met up with Hermione in the common room and they went down to breakfast together .They spent most of the morning in Gryffindor Tower where everyone was enjoying their presents then returned to the Great Hall for a magnificent lunch which included at least a hundred turkeys and Christmas puddings and large piles of Cribbages Wizarding Crackers .They went out onto the grounds in the afternoon the snow was untouched except for the deep channels made by the Durmstrang and Beauxbatons students on their way up to the castle .Hermione chose to watch Harry and the Weasleys snowball fight rather than join in and at five oclock said she was going back upstairs to get ready for the ball .What you need three hours ?said Ron looking at her incredulously and paying for his lapse in concentration when a large snowball thrown by George hit him hard on the side of the head .Who re you going with ?he yelled after Hermione but she just waved and disappeared up the stone steps into the castle .There was no Christmas tea today as the ball included a feast so at seven oclock when it had become hard to aim properly the others abandoned their snowball fight and trooped back to the common room .The Fat Lady was sitting in her frame with her friend Violet from downstairs both of them extremely tipsy empty boxes of chocolate liqueurs littering the bottom of her picture .Lairy fights thats the one !she giggled when they gave the password and she swung forward to let them inside .Harry Ron Seamus Dean and Neville changed into their dress robes up in their dormitory all of them looking very selfconscious but none as much as Ron who surveyed himself in the long mirror in the corner with an appalled look on his face .There was just no getting around the fact that his robes looked more like a dress than anything else .In a desperate attempt to make them look more manly he used a Severing Charm on the ruff and cuffs .It worked fairly well at least he was now lacefree although he hadnt done a very neat job and the edges still looked depressingly frayed as the boys set off downstairs .I still cant work out how you two got the best looking girls in the year muttered Dean .Animal magnetism said Ron gloomily pulling stray threads out of his cuffs .The common room looked strange full of people wearing different colors instead of the usual mass of black .Parvati was waiting for Harry at the foot of the stairs .She looked very pretty indeed in robes of shocking pink with her long dark plait braided with gold and gold bracelets glimmering at her wrists .Harry was relieved to see that she wasnt giggling .You er look nice he said awkwardly .Thanks she said .Padmas going to meet you in the entrance hall she added to Ron .Right said Ron looking around .Wheres Hermione ?Parvati shrugged .Shall we go down then Harry ?Okay said Harry wishing he could just stay in the common room .Fred winked at Harry as he passed him on the way out of the portrait hole .The entrance hall was packed with students too all milling around waiting for eight oclock when the doors to the Great Hall would be thrown open .Those people who were meeting partners from different Houses were edging through the crowd trying to find one another .Parvati found her sister Padma and led her over to Harry and Ron .Hi said Padma who was looking just as pretty as Parvati in robes of bright turquoise .She didnt look too enthusiastic about having Ron as a partner though her dark eyes lingered on the frayed neck and sleeves of his dress robes as she looked him up and down .Hi said Ron not looking at her but staring around at the crowd .Oh no .He bent his knees slightly to hide behind Harry because Fleur Delacour was passing looking stunning in robes of silvergray satin and accompanied by the Ravenclaw Quidditch captain Roger Davies .When they had disappeared Ron stood straight again and stared over the heads of the crowd .Where is Hermione ?he said again .A group of Slytherins came up the steps from their dungeon common room .Malfoy was in front he was wearing dress robes of black velvet with a high collar which in Harrys opinion made him look like a vicar .Pansy Parkinson in very frilly robes of pale pink was clutching Malfoys arm .Crabbe and Goyle were both wearing green they resembled mosscolored boulders and neither of them Harry was pleased to see had managed to find a partner .The oak front doors opened and everyone turned to look as the Durmstrang students entered with Professor Karkaroff .Krum was at the front of the party accompanied by a pretty girl in blue robes Harry didnt know .Over their heads he saw that an area of lawn right in front of the castle had been transformed into a sort of grotto full of fairy lights meaning hundreds of actual living fairies were sitting in the rosebushes that had been conjured there and fluttering over the statues of what seemed to be Father Christmas and his reindeer .Then Professor McGonagalls voice called Champions over here please !Parvati readjusted her bangles beaming she and Harry said See you in a minute to Ron and Padma and walked forward the chattering crowd parting to let them through .Professor McGonagall who was wearing dress robes of red tartan and had arranged a rather ugly wreath of thistles around the brim of her hat told them to wait on one side of the doors while everyone else went inside they were to enter the Great Hall in procession when the rest of the students had sat down .Fleur Delacour and Roger Davies stationed themselves nearest the doors Davies looked so stunned by his good fortune in having Fleur for a partner that he could hardly take his eyes off her .Cedric and Cho were close to Harry too he looked away from them so he wouldnt have to talk to them .His eyes fell instead on the girl next to Krum .His jaw dropped .It was Hermione .But she didnt look like Hermione at all .She had done something with her hair it was no longer bushy but sleek and shiny and twisted up into an elegant knot at the back of her head .She was wearing robes made of a floaty periwinkleblue material and she was holding herself differently somehow or maybe it was merely the absence of the twenty or so books she usually had slung over her back .She was also smiling rather nervously it was true but the reduction in the size of her front teeth was more noticeable than ever Harry couldnt understand how he hadnt spotted it before .Hi Harry !she said .Hi Parvati !Parvati was gazing at Hermione in unflattering disbelief .She wasnt the only one either when the doors to the Great Hall opened Krums fan club from the library stalked past throwing Hermione looks of deepest loathing .Pansy Parkinson gaped at her as she walked by with Malfoy and even he didnt seem to be able to find an insult to throw at her .Ron however walked right past Hermione without looking at her .Once everyone else was settled in the Hall Professor McGonagall told the champions and their partners to get in line in pairs and to follow her .They did so and everyone in the Great Hall applauded as they entered and started walking up toward a large round table at the top of the Hall where the judges were sitting .The walls of the Hall had all been covered in sparkling silver frost with hundreds of garlands of mistletoe and ivy crossing the starry black ceiling .The House tables had vanished instead there were about a hundred smaller lanternlit ones each seating about a dozen people .Harry concentrated on not tripping over his feet .Parvati seemed to be enjoying herself she was beaming around at everybody steering Harry so forcefully that he felt as though he were a show dog she was putting through its paces .He caught sight of Ron and Padma as he neared the top table .Ron was watching Hermione pass with narrowed eyes .Padma was looking sulky .Dumbledore smiled happily as the champions approached the top table but Karkaroff wore an expression remarkably like Rons as he watched Krum and Hermione draw nearer .Ludo Bagman tonight in robes of bright purple with large yellow stars was clapping as enthusiastically as any of the students and Madame Maxime who had changed her usual uniform of black satin for a flowing gown of lavender silk was applauding them politely .But Mr Crouch Harry suddenly realized was not there .The fifth seat at the table was occupied by Percy Weasley .When the champions and their partners reached the table Percy drew out the empty chair beside him staring pointedly at Harry .Harry took the hint and sat down next to Percy who was wearing brandnew navyblue dress robes and an expression of such smugness that Harry thought it ought to be fined .Ive been promoted Percy said before Harry could even ask and from his tone he might have been announcing his election as supreme ruler of the universe .Im now Mr Crouchs personal assistant and Im here representing him .Why didnt he come ?Harry asked .He wasnt looking forward to being lectured on cauldron bottoms all through dinner .‘Tm afraid to say Mr Crouch isnt well not well at all .Hasnt been right since the World Cup .Hardly surprising overwork .Hes not as young as he was though still quite brilliant of course the mind remains as great as it ever was .But the World Cup was a fiasco for the whole Ministry and then Mr Crouch suffered a huge personal shock with the misbehavior of that houseelf of his Blinky or whatever she was called .Naturally he dismissed her immediately afterward but well as I say hes getting on he needs looking after and I think hes found a definite drop in his home comforts since she left .And then we had the tournament to arrange and the aftermath of the Cup to deal with that revolting Skeeter woman buzzing around no poor man hes having a well earned quiet Christmas .Im just glad he knew he had someone he could rely upon to take his place .Harry wanted very much to ask whether Mr Crouch had stopped calling Percy Weatherby yet but resisted the temptation .There was no food as yet on the glittering golden plates but small menus were lying in front of each of them .Harry picked his up uncertainly and looked around there were no waiters .Dumbledore however looked carefully down at his own menu then said very clearly to his plate Pork chops !And pork chops appeared .Getting the idea the rest of the table placed their orders with their plates too .Harry glanced up at Hermione to see how she felt about this new and more complicated method of dining surely it meant plenty of extra work for the houseelves ?but for once Hermione didnt seem to be thinking about S .P .E .W .She was deep in talk with Viktor Krum and hardly seemed to notice what she was eating .It now occurred to Harry that he had never actually heard Krum speak before but he was certainly talking now and very enthusiastically at that .Veil ve have a castle also not as big as this nor as comfortable I am thinking he was telling Hermione .Ve have just four floors and the fires are lit only for magical purposes .But ve have grounds larger even than these though in vinter ve have very little daylight so ve are not enjoying them .But in summer ve are flying every day over the lakes and the mountains Now now Viktor !said Karkaroff with a laugh that didnt reach his cold eyes dont go giving away anything else now or your charming friend will know exactly where to find us !Dumbledore smiled his eyes twinkling .Igor all this secrecy .one would almost think you didnt want visitors .Well Dumbledore said Karkaroff displaying his yellowing teeth to their fullest extent we are all protective of our private domains are we not ?Do we not jealously guard the halls of learning that have been entrusted to us ?Are we not right to be proud that we alone know our schools secrets and right to protect them ?Oh I would never dream of assuming I know all Hogwarts secrets Igor said Dumbledore amicably .Only this morning for instance I took a wrong turning on the way to the bathroom and found myself in a beautifully proportioned room I have never seen before containing a really rather magnificent collection of chamber pots .When I went back to investigate more closely I discovered that the room had vanished .But I must keep an eye out for it .Possibly it is only accessible at fivethirty in the morning .Or it may only appear at the quarter moon or when the seeker has an exceptionally full bladder .Harry snorted into his plate of goulash .Percy frowned but Harry could have sworn Dumbledore had given him a very small wink .Meanwhile Fleur Delacour was criticizing the Hogwarts decorations to Roger Davies .Zis is nothing she said dismissively looking around at the sparkling walls of the Great Hall .At ze Palace of Beauxbatons we ave ice sculptures all around ze dining chamber at Chreestmas .Zey do not melt of course .zey are like uge statues of diamond glittering around ze place .And ze food is seemply superb .And we ave choirs of wood nymphs oo serenade us as we eat .We ave none of zis ugly armor in ze alls and eef a poltergeist ever entaired into Beauxbatons e would be expelled like zat .She slapped her hand onto the table impatiently .Roger Davies was watching her talk with a very dazed look on his face and he kept missing his mouth with his fork .Harry had the impression that Davies was too busy staring at Fleur to take in a word she was saying .Absolutely right he said quickly slapping his own hand down on the table in imitation of Fleur .Like that .Yeah .Harry looked around the Hall .Hagrid was sitting at one of the other staff tables he was back in his horrible hairy brown suit and gazing up at the top table .Harry saw him give a small wave and looking around saw Madame Maxime return it her opals glittering in the candlelight .Hermione was now teaching Krum to say her name properly he kept calling her Hermyown .Hermyohnee she said slowly and clearly .Hermownninny .Close enough she said catching Harrys eye and grinning .When all the food had been consumed Dumbledore stood up and asked the students to do the same .Then with a wave of his wand all the tables zoomed back along the walls leaving the floor clear and then he conjured a raised platform into existence along the right wall .A set of drums several guitars a lute a cello and some bagpipes were set upon it .The Weird Sisters now trooped up onto the stage to wildly enthusiastic applause they were all extremely hairy and dressed in black robes that had been artfully ripped and torn .They picked up their instruments and Harry who had been so interested in watching them that he had almost forgotten what was coming suddenly realized that the lanterns on all the other tables had gone out and that the other champions and their partners were standing up .Come on !Parvati hissed .Were supposed to dance !Harry tripped over his dress robes as he stood up .The Weird Sisters struck up a slow mournful tune Harry walked onto the brightly lit dance floor carefully avoiding catching anyones eye he could see Seamus and Dean waving at him and sniggering and next moment Parvati had seized his hands placed one around her waist and was holding the other tightly in hers .It wasnt as bad as it could have been Harry thought revolving slowly on the spot Parvati was steering .He kept his eyes fixed over the heads of the watching people and very soon many of them too had come onto the dance floor so that the champions were no longer the center of attention .Neville and Ginny were dancing nearby he could see Ginny wincing frequently as Neville trod on her feet and Dumbledore was waltzing with Madame Maxime .He was so dwarfed by her that the top of his pointed hat barely tickled her chin however she moved very gracefully for a woman so large .MadEye Moody was doing an extremely ungainly twostep with Professor Sinistra who was nervously avoiding his wooden leg .Nice socks Potter Moody growled as he passed his magical eye staring through Harrys robes .Oh yeah Dobby the houseelf knitted them for me said Harry grinning .He is so creepy Parvati whispered as Moody clunked away .I dont think that eye should be allowed Harry heard the final quavering note from the bagpipe with relief .The Weird Sisters stopped playing applause filled the hall once more and Harry let go of Parvati at once .Lets sit down shall we ?Oh but this is a really good one !Parvati said as the Weird Sisters struck up a new song which was much faster .No I dont like it Harry lied and he led her away from the dance floor past Fred and Angelina who were dancing so exhuberantly that people around them were backing away in fear of injury and over to the table where Ron and Padma were sitting .Hows it going ?Harry asked Ron sitting down and opening a bottle of butterbeer .Ron didnt answer .He was glaring at Hermione and Krum who were dancing nearby .Padma was sitting with her arms and legs crossed one foot jiggling in time to the music .Every now and then she threw a disgruntled look at Ron who was completely ignoring her .Parvati sat down on Harrys other side crossed her arms and legs too and within minutes was asked to dance by a boy from Beauxbatons .You dont mind do you Harry ?Parvati said .What ?said Harry who was now watching Cho and Cedric .Oh never mind snapped Parvati and she went off with the boy from Beauxbatons .When the song ended she did not return .Hermione came over and sat down in Parvatis empty chair .She was a bit pink in the face from dancing .Hi said Harry .Ron didnt say anything .Its hot isnt it ?said Hermione fanning herself with her hand .Viktors just gone to get some drinks .Ron gave her a withering look .Viktor ?he said .Hasnt he asked you to call him Vicky yet ?Hermione looked at him in surprise .Whats up with you ?she said .If you dont know said Ron scathingly Im not going to tell you .Hermione stared at him then at Harry who shrugged .Ron what ?Hes from Durmstrang !spat Ron .Hes competing against Harry !Against Hogwarts !You youre Ron was obviously casting around for words strong enough to describe Hermione s crime fraternizing with the enemy thats what youre doing !Hermiones mouth fell open .Dont be so stupid !she said after a moment .The enemy Honestly who was the one who was all excited when they saw him arrive ?Who was the one who wanted his autograph ?Whos got a model of him up in their dormitory ?Ron chose to ignore this .I spose he asked you to come with him while you were both in the library ?Yes he did said Hermione the pink patches on her cheeks glowing more brightly .So what ?What happened trying to get him to join spew were you ?No I wasnt !If you really want to know he he said hed been coming up to the library every day to try and talk to me but he hadnt been able to pluck up the courage !Hermione said this very quickly and blushed so deeply that she was the same color as Parvatis robes .Yeah well thats his story said Ron nastily .And whats that supposed to mean ?Obvious isnt it ?Hes Karkaroffs student isnt he ?He knows who you hang around with .Hes just trying to get closer to Harry get inside information on him or get near enough to jinx him Hermione looked as though Ron had slapped her .When she spoke her voice quivered .For your information he hasnt asked me one single thing about Harry not one Ron changed tack at the speed of light .Then hes hoping youll help him find out what his egg means !I suppose youve been putting your heads together during those cozy little library sessions Id never help him work out that egg !said Hermione looking outraged .Never .How could you say something like that I want Harry to win the tournament Harry knows that dont you Harry ?Youve got a funny way of showing it sneered Ron .This whole tournaments supposed to be about getting to know foreign wizards and making friends with them !said Hermione hotly .No it isnt !shouted Ron .Its about winning !People were starting to stare at them .Ron said Harry quietly I havent got a problem with Hermione coming with Krum But Ron ignored Harry too .Why dont you go and find Vicky hell be wondering where you are said Ron .Dont call him Vickyl Hermione jumped to her feet and stormed off across the dance floor disappearing into the crowd .Ron watched her go with a mixture of anger and satisfaction on his face .Are you going to ask me to dance at all ?Padma asked him .No said Ron still glaring after Hermione .Fine snapped Padma and she got up and went to join Parvati and the Beauxbatons boy who conjured up one of his friends to join them so fast that Harry could have sworn he had zoomed him there by a Summoning Charm .Vare is Hermownninny ?said a voice .Krum had just arrived at their table clutching two butterbeers .No idea said Ron mulishly looking up at him .Lost her have you ?Krum was looking surly again .Veil if you see her tell her I haff drinks he said and he slouched off .Made friends with Viktor Krum have you Ron ?Percy had bustled over rubbing his hands together and looking extremely pompous .Excellent !Thats the whole point you know international magical cooperation !To Harrys displeasure Percy now took Padmas vacated seat .The top table was now empty Professor Dumbledore was dancing with Professor Sprout Ludo Bagman with Professor McGonagall Madame Maxime and Hagrid were cutting a wide path around the dance floor as they waltzed through the students and Karkaroff was nowhere to be seen .When the next song ended everybody applauded once more and Harry saw Ludo Bagman kiss Professor McGonagalls hand and make his way back through the crowds at which point Fred and George accosted him .What do they think theyre doing annoying senior Ministry members ?Percy hissed watching Fred and George suspiciously .No respect .Ludo Bagman shook off Fred and George fairly quickly however and spotting Harry waved and came over to their table .I hope my brothers werent bothering you Mr Bagman ?said Percy at once .What ?Oh not at all not at all !said Bagman .No they were just telling me a bit more about those fake wands of theirs .Wondering if I could advise them on the marketing .Ive promised to put them in touch with a couple of contacts of mine at Zonkos Joke Shop .Percy didnt look happy about this at all and Harry was prepared to bet he would be rushing to tell Mrs Weasley about this the moment he got home .Apparently Fred and Georges plans had grown even more ambitious lately if they were hoping to sell to the public .Bagman opened his mouth to ask Harry something but Percy diverted him .How do you feel the tournaments going Mr Bagman ?Our departments quite satisfied the hitch with the Goblet of Fire he glanced at Harry was a little unfortunate of course but it seems to have gone very smoothly since dont you think ?Oh yes Bagman said cheerfully its all been enormous fun .Hows old Barty doing ?Shame he couldnt come .Oh Im sure Mr Crouch will be up and about in no time said Percy importantly but in the meantime Im more than willing to take up the slack .Of course its not all attending balls he laughed airily oh no Ive had to deal with all sorts of things that have cropped up in his absence you heard Ali Bashir was caught smuggling a consignment of flying carpets into the country ?And then weve been trying to persuade the Transylvanians to sign the International Ban on Dueling .Ive got a meeting with their Head of Magical Cooperation in the new year Lets go for a walk Ron muttered to Harry get away from Percy .Pretending they wanted more drinks Harry and Ron left the table edged around the dance floor and slipped out into the entrance hall .The front doors stood open and the fluttering fairy lights in the rose garden winked and twinkled as they went down the front steps where they found themselves surrounded by bushes winding ornamental paths and large stone statues .Harry could hear splashing water which sounded like a fountain .Here and there people were sitting on carved benches .He and Ron set off along one of the winding paths through the rosebushes but they had gone only a short way when they heard an unpleasantly familiar voice . .dont see what there is to fuss about Igor .Severus you cannot pretend this isnt happening !Karkaroffs voice sounded anxious and hushed as though keen not to be overheard .Its been getting clearer and clearer for months .I am becoming seriously concerned I cant deny it Then flee said Snapes voice curtly .Flee I will make your excuses .I however am remaining at Hogwarts .Snape and Karkaroff came around the corner .Snape had his wand out and was blasting rosebushes apart his expression most illnatured .Squeals issued from many of the bushes and dark shapes emerged from them .Ten points from Ravenclaw Fawcett !Snape snarled as a girl ran past him .And ten points from Hufflepuff too Stebbins !as a boy went rushing after her .And what are you two doing ?he added catching sight of Harry and Ron on the path ahead .Karkaroff Harry saw looked slightly discomposed to see them standing there .His hand went nervously to his goatee and he began winding it around his finger .Were walking Ron told Snape shortly .Not against the law is it ?Keep walking then !Snape snarled and he brushed past them his long black cloak billowing out behind him .Karkaroff hurried away after Snape .Harry and Ron continued down the path .Whats got Karkaroff all worried ?Ron muttered .And since when have he and Snape been on first name terms ?said Harry slowly .They had reached a large stone reindeer now over which they could see the sparkling jets of a tall fountain .The shadowy outlines of two enormous people were visible on a stone bench watching the water in the moonlight .And then Harry heard Hagrid speak .Momen I saw yeh I knew he was saying in an oddly husky voice .Harry and Ron froze .This didnt sound like the sort of scene they ought to walk in on somehow .Harry looked around back up the path and saw Fleur Delacour and Roger Davies standing halfconcealed in a rosebush nearby .He tapped Ron on the shoulder and jerked his head toward them meaning that they could easily sneak off that way without being noticed Fleur and Davies looked very busy to Harry but Ron eyes widening in horror at the sight of Fleur shook his head vigorously and pulled Harry deeper into the shadows behind the reindeer .What did you know Agrid ?said Madame Maxime a purr in her low voice .Harry definitely didnt want to listen to this he knew Hagrid would hate to be overheard in a situation like this he certainly would have if it had been possible he would have put his fingers in his ears and hummed loudly but that wasnt really an option .Instead he tried to interest himself in a beetle crawling along the stone reindeers back but the beetle just wasnt interesting enough to block out Hagrids next words .I jus knew .knew you were like me .Was it yer mother or yer father ?I I dont know what you mean Agrid .It was my mother said Hagrid quietly .She was one o the las ones in Britain .Course I can remember her too well .she left see .When I was abou three .She wasn really the maternal sort .Well .its not in their natures is it ?Dunno what happened to her .might be dead fer all I know .Madame Maxime didnt say anything .And Harry in spite of himself took his eyes off the beetle and looked over the top of the reindeers antlers listening . .He had never heard Hagrid talk about his childhood before .Me dad was brokenhearted when she wen .Tiny little bloke my dad was .By the time I was six I could lift him up an put him on top o the dresser if he annoyed me .Used ter make him laugh .Hagrids deep voice broke .Madame Maxime was listening motionless apparently staring at the silvery fountain .Dad raised me .but he died o course jus after I started school .Sorta had ter make me own way after that .Dumbledore was a real help mind .Very kind ter me he was .Hagrid pulled out a large spotted silk handkerchief and blew his nose heavily .So .anyway .enough abou me .What about you ?Which side you got it on ?But Madame Maxime had suddenly got to her feet .It is chilly she said but whatever the weather was doing it was nowhere near as cold as her voice .I think I will go in now .Eh ?said Hagrid blankly .No don go !Ive Ive never met another one before !Anuzzer what precisely ?said Madame Maxime her tone icy .Harry could have told Hagrid it was best not to answer he stood there in the shadows gritting his teeth hoping against hope he wouldnt but it was no good .Another halfgiant o course !said Hagrid .Ow dare you !shrieked Madame Maxime .Her voice exploded through the peaceful night air like a foghorn behind him Harry heard Fleur and Roger fall out of their rosebush .I ave nevair been more insulted in my life !Alfgiant ?Moi ?I ave I ave big bones !She stormed away great multicolored swarms of fairies rose into the air as she passed angrily pushing aside bushes .Hagrid was still sitting on the bench staring after her .It was much too dark to make out his expression .Then after about a minute he stood up and strode away not back to the castle but off out into the dark grounds in the direction of his cabin .Cmon Harry said very quietly to Ron .Lets go .But Ron didnt move .Whats up ?said Harry looking at him .Ron looked around at Harry his expression very serious indeed .Did you know ?he whispered .About Hagrid being halfgiant ?No Harry said shrugging .So what ?He knew immediately from the look Ron was giving him that he was once again revealing his ignorance of the wizarding world .Brought up by the Dursleys there were many things that wizards took for granted that were revelations to Harry but these surprises had become fewer with each successive year .Now however he could tell that most wizards would not have said So what ?upon finding out that one of their friends had a giantess for a mother .Ill explain inside said Ron quietly cmon .Fleur and Roger Davies had disappeared probably into a more private clump of bushes .Harry and Ron returned to the Great Hall .Parvati and Padma were now sitting at a distant table with a whole crowd of Beauxbatons boys and Hermione was once more dancing with Krum .Harry and Ron sat down at a table far removed from the dance floor .So ?Harry prompted Ron .Whats the problem with giants ?Well theyre .theyre .Ron struggled for words . .not very nice he finished lamely .Who cares ?Harry said .Theres nothing wrong with Hagrid !I know there isnt but .blimey no wonder he keeps it quiet Ron said shaking his head .I always thought hed got in the way of a bad Engorgement Charm when he was a kid or something .Didnt like to mention it .But whats it matter if his mother was a giantess ?said Harry .Well .no one who knows him will care cos theyll know hes not dangerous said Ron slowly .But .Harry theyre just vicious giants .Its like Hagrid said its in their natures theyre like trolls .they just like killing everyone knows that .There arent any left in Britain now though .What happened to them ?Well they were dying out anyway and then loads got themselves killed by Aurors .There re supposed to be giants abroad though .They hide out in mountains mostly .I dont know who Maxime thinks shes kidding Harry said watching Madame Maxime sitting alone at the judges table looking very somber .If Hagrid s halfgiant she definitely is .Big bones .the only thing thats got bigger bones than her is a dinosaur .Harry and Ron spent the rest of the ball discussing giants in their corner neither of them having any inclination to dance .Harry tried not to watch Cho and Cedric too much it gave him a strong desire to kick something .When the Weird Sisters finished playing at midnight everyone gave them a last loud round of applause and started to wend their way into the entrance hall .Many people were expressing the wish that the ball could have gone on longer but Harry was perfectly happy to be going to bed as far as he was concerned the evening hadnt been much fun .Out in the entrance hall Harry and Ron saw Hermione saying good night to Krum before he went back to the Durmstrang ship .She gave Ron a very cold look and swept past him up the marble staircase without speaking .Harry and Ron followed her but halfway up the staircase Harry heard someone calling him .Hey Harry !It was Cedric Diggory .Harry could see Cho waiting for him in the entrance hall below .Yeah ?said Harry coldly as Cedric ran up the stairs toward him .Cedric looked as though he didnt want to say whatever it was in front of Ron who shrugged looking badtempered and continued to climb the stairs .Listen .Cedric lowered his voice as Ron disappeared .I owe you one for telling me about the dragons .You know that golden egg ?Does yours wail when you open it ?Yeah said Harry .Well .take a bath okay ?What ?Take a bath and er take the egg with you and er just mull things over in the hot water .Itll help you think .Trust me .Harry stared at him .Tell you what Cedric said use the prefects bathroom .Fourth door to the left of that statue of Boris the Bewildered on the fifth floor .Passwords ‘pine fresh .Gotta go .want to say good night He grinned at Harry again and hurried back down the stairs to Cho .Harry walked back to Gryffindor Tower alone .That had been extremely strange advice .Why would a bath help him to work out what the wailing egg meant ?Was Cedric pulling his leg ?Was he trying to make Harry look like a fool so Cho would like him even more by comparison ?The Fat Lady and her friend Vi were snoozing in the picture over the portrait hole .Harry had to yell Fairy lights !before he woke them up and when he did they were extremely irritated .He climbed into the common room and found Ron and Hermione having a blazing row .Standing ten feet apart they were bellowing at each other each scarlet in the face .Well if you dont like it you know what the solution is dont you ?yelled Hermione her hair was coming down out of its elegant bun now and her face was screwed up in anger .Oh yeah ?Ron yelled back .Whats that ?Next time theres a ball ask me before someone else does and not as a last resort !Ron mouthed soundlessly like a goldfish out of water as Hermione turned on her heel and stormed up the girls staircase to bed .Ron turned to look at Harry .Well he sputtered looking thunderstruck well that just proves completely missed the point Harry didnt say anything .He liked being back on speaking terms with Ron too much to speak his mind right now but he somehow thought that Hermione had gotten the point much better than Ron had .RITA SKEBTERS SCOOP Everybody got up late on Boxing Day .The Gryffindor common room was much quieter than it had been lately many yawns punctuating the lazy conversations .Hermiones hair was bushy again she confessed to Harry that she had used liberal amounts of Sleekeazys Hair Potion on it for the ball but its way too much bother to do every day she said matteroffactly scratching a purring Crookshanks behind the ears .Ron and Hermione seemed to have reached an unspoken agreement not to discuss their argument .They were being quite friendly to each other though oddly formal .Ron and Harry wasted no time in telling Hermione about the conversation they had overheard between Madame Maxime and Hagrid but Hermione didnt seem to find the news that Hagrid was a half giant nearly as shocking as Ron did .Well I thought he must be she said shrugging .I knew he couldnt be pure giant because theyre about twenty feet tall .But honestly all this hysteria about giants .They cant all be horrible .Its the same sort of prejudice that people have toward werewolves .Its just bigotry isnt it ?Ron looked as though he would have liked to reply scathingly but perhaps he didnt want another row because he contented himself with shaking his head disbelievingly while Hermione wasnt looking .It was time now to think of the homework they had neglected during the first week of the holidays .Everybody seemed to be feeling rather flat now that Christmas was over everybody except Harry that is who was starting once again to feel slightly nervous .The trouble was that February the twentyfourth looked a lot closer from this side of Christmas and he still hadnt done anything about working out the clue inside the golden egg .He therefore started taking the egg out of his trunk every time he went up to the dormitory opening it and listening intently hoping that this time it would make some sense .He strained to think what the sound reminded him of apart from thirty musical saws but he had never heard anything else like it .He closed the egg shook it vigorously and opened it again to see if the sound had changed but it hadnt .He tried asking the egg questions shouting over all the wailing but nothing happened .He even threw the egg across the room though he hadnt really expected that to help .Harry had not forgotten the hint that Cedric had given him but his lessthanfriendly feelings toward Cedric just now meant that he was keen not to take his help if he could avoid it .In any case it seemed to him that if Cedric had really wanted to give Harry a hand he would have been a lot more explicit .He Harry had told Cedric exactly what was coming in the first task and Cedrics idea of a fair exchange had been to tell Harry to take a bath .Well he didnt need that sort of rubbishy help not from someone who kept walking down corridors hand in hand with Cho anyway .And so the first day of the new term arrived and Harry set off to lessons weighed down with books parchment and quills as usual but also with the lurking worry of the egg heavy in his stomach as though he were carrying that around with him too .Snow was still thick upon the grounds and the greenhouse windows were covered in condensation so thick that they couldnt see out of them in Herbology .Nobody was looking forward to Care of Magical Creatures much in this weather though as Ron said the skrewts would probably warm them up nicely either by chasing them or blasting off so forcefully that Hagrids cabin would catch fire .When they arrived at Hagrids cabin however they found an elderly witch with closely cropped gray hair and a very prominent chin standing before his front door .Hurry up now the bell rang five minutes ago she barked at them as they struggled toward her through the snow .Who re you ?said Ron staring at her .Wheres Hagrid ?My name is Professor GrubblyPlank she said briskly .I am your temporary Care of Magical Creatures teacher .Wheres Hagrid ?Harry repeated loudly .He is indisposed said Professor GrubblyPlank shortly .Soft and unpleasant laughter reached Harrys ears .He turned Draco Malfoy and the rest of the Slytherins were joining the class .All of them looked gleeful and none of them looked surprised to see Professor GrubblyPlank .This way please said Professor GrubblyPlank and she strode off around the paddock where the Beauxbatons horses were shivering .Harry Ron and Hermione followed her looking back over their shoulders at Hagrids cabin .All the curtains were closed .Was Hagrid in there alone and ill ?Whats wrong with Hagrid ?Harry said hurrying to catch up with Professor GrubblyPlank .Never you mind she said as though she thought he was being nosy .I do mind though said Harry hotly .Whats up with him ?Professor GrubblyPlank acted as though she couldnt hear him .She led them past the paddock where the huge Beauxbatons horses were standing huddled against the cold and toward a tree on the edge of the forest where a large and beautiful unicorn was tethered .Many of the girls ooooohed !at the sight of the unicorn .Oh its so beautiful !whispered Lavender Brown .How did she get it ?Theyre supposed to be really hard to catch !The unicorn was so brightly white it made the snow all around look gray .It was pawing the ground nervously with its golden hooves and throwing back its horned head .Boys keep back !barked Professor GrubblyPlank throwing out an arm and catching Harry hard in the chest .They prefer the womans touch unicorns .Girls to the front and approach with care come on easy does it .She and the girls walked slowly forward toward the unicorn leaving the boys standing near the paddock fence watching .The moment Professor Grubbly Plank was out of earshot Harry turned to Ron .What dyou reckons wrong with him ?You dont think a skrewt ?Oh he hasnt been attacked Potter if thats what youre thinking said Malfoy softly .No hes just too ashamed to show his big ugly face .What dyou mean ?said Harry sharply .Malfoy put his hand inside the pocket of his robes and pulled out a folded page of newsprint .There you go he said .Hate to break it to you Potter .He smirked as Harry snatched the page unfolded it and read it with Ron Seamus Dean and Neville looking over his shoulder .It was an article topped with a picture of Hagrid looking extremely shifty .DUMBLEDORES GIANT MISTAKE Albus Dumbledore eccentric Headmaster of Hogwarts School of Witchcraft and Wizardry has never been afraid to make controversial staff appointments writes Rita Skeeter Special Correspondent .In September of this year he hired Alastor MadEye Moody the notoriously jinxhappy exAuror to teach Defense Against the Dark Arts a decision that caused many raised eyebrows at the Ministry of Magic given Moodys wellknown habit of attacking anybody who makes a sudden movement in his presence .MadEye Moody however looks responsible and kindly when set beside the parthuman Dumbledore employs to teach Care of Magical Creatures .Rubeus Hagrid who admits to being expelled from Hogwarts in his third year has enjoyed the position of gamekeeper at the school ever since a job secured for him by Dumbledore .Last year however Hagrid used his mysterious influence over the headmaster to secure the additional post of Care of Magical Creatures teacher over the heads of many better qualified candidates .An alarmingly large and ferociouslooking man Hagrid has been using his newfound authority to terrify the students in his care with a succession of horrific creatures .While Dumbledore turns a blind eye Hagrid has maimed several pupils during a series of lessons that many admit to being very frightening .I was attacked by a hippogriff and my friend Vincent Crabbe got a bad bite off a flobberworm says Draco Malfoy a fourthyear student .We all hate Hagrid but were just too scared to say anything .Hagrid has no intention of ceasing his campaign of intimidation however .In conversation with a Daily Prophet reporter last month he admitted breeding creatures he has dubbed BlastEnded Skrewts highly dangerous crosses between manticores and fire crabs .The creation of new breeds of magical creature is of course an activity usually closely observed by the Department for the Regulation and Control of Magical Creatures .Hagrid however considers himself to be above such petty restrictions .I was just having some fun he says before hastily changing the subject .As if this were not enough the Daily Prophet has now unearthed evidence that Hagrid is not as he has always pretended a pureblood wizard .He is not in fact even pure human .His mother we can exclusively reveal is none other than the giantess Fridwulfa whose whereabouts are currently unknown .Bloodthirsty and brutal the giants brought themselves to the point of extinction by warring amongst themselves during the last century .The handful that remained joined the ranks of HeWho MustNotBeNamed and were responsible for some of the worst mass Muggle killings of his reign of terror .While many of the giants who served HeWhoMust NotBeNamed were killed by Aurors working against the Dark Side Fridwulfa was not among them .It is possible she escaped to one of the giant communities still existing in foreign mountain ranges .If his antics during Care of Magical Creatures lessons are any guide however Fridwulfas son appears to have inherited her brutal nature .In a bizarre twist Hagrid is reputed to have developed a close friendship with the boy who brought around YouKnow Whos fall from power thereby driving Hagrid s own mother like the rest of YouKnow Whos supporters into hiding .Perhaps Harry Potter is unaware of the unpleasant truth about his large friend but Albus Dumbledore surely has a duty to ensure that Harry Potter along with his fellow students is warned about the dangers of associating with partgiants .Harry finished reading and looked up at Ron whose mouth was hanging open .How did she find out ?he whispered .But that wasnt what was bothering Harry .What dyou mean we all hate Hagrid ?Harry spat at Malfoy .Whats this rubbish about him he pointed at Crabbe getting a bad bite off a flobberworm ?They havent even got teeth !Crabbe was sniggering apparently very pleased with himself .Well I think this should put an end to the oafs teaching career said Malfoy his eyes glinting .Half giant .and there was me thinking hed just swallowed a bottle of SkeleGro when he was young . .None of the mummies and daddies are going to like this at all .Theyll be worried hell eat their kids ha ha .You Are you paying attention over there ?Professor GrubblyPlanks voice carried over to the boys the girls were all clustered around the unicorn now stroking it .Harry was so angry that the Daily Prophet article shook in his hands as he turned to stare unseeingly at the unicorn whose many magical properties Professor GrubblyPlank was now enumerating in a loud voice so that the boys could hear too .I hope she stays that woman !said Parvati Patil when the lesson had ended and they were all heading back to the castle for lunch .Thats more what I thought Care of Magical Creatures would be like .proper creatures like unicorns not monsters .What about Hagrid ?Harry said angrily as they went up the steps .What about him ?said Parvati in a hard voice .He can still be gamekeeper cant he ?Parvati had been very cool toward Harry since the ball .He supposed that he ought to have paid her a bit more attention but she seemed to have had a good time all the same .She was certainly telling anybody who would listen that she had made arrangements to meet the boy from Beauxbatons in Hogsmeade on the next weekend trip .That was a really good lesson said Hermione as they entered the Great Hall .I didnt know half the things Professor GrubblyPlank told us about uni Look at this !Harry snarled and he shoved the Daily Prophet article under Hermione s nose .Hermione s mouth fell open as she read .Her reaction was exactly the same as Rons .How did that horrible Skeeter woman find out ?You dont think Hagrid told her ?No said Harry leading the way over to the Gryffindor table and throwing himself into a chair furious .He never even told us did he ?I reckon she was so mad he wouldnt give her loads of horrible stuff about me she went ferreting around to get him back .Maybe she heard him telling Madame Maxime at the ball said Hermione quietly .Wed have seen her in the garden !said Ron .Anyway shes not supposed to come into school anymore Hagrid said Dumbledore banned her .Maybe shes got an Invisibility Cloak said Harry ladling chicken casserole onto his plate and splashing it everywhere in his anger .Sort of thing shed do isnt it hide in bushes listening to people .Like you and Ron did you mean said Hermione .We werent trying to hear him !said Ron indignantly .We didnt have any choice !The stupid prat talking about his giantess mother where anyone could have heard him !Weve got to go and see him said Harry .This evening after Divination .Tell him we want him back .you do want him back ?he shot at Hermione .I well Im not going to pretend it didnt make a nice change having a proper Care of Magical Creatures lesson for once but I do want Hagrid back of course I do !Hermione added hastily quailing under Harrys furious stare .So that evening after dinner the three of them left the castle once more and went down through the frozen grounds to Hagrids cabin .They knocked and Fangs booming barks answered .Hagrid its us !Harry shouted pounding on the door .Open up !Hagrid didnt answer .They could hear Fang scratching at the door whining but it didnt open .They hammered on it for ten more minutes Ron even went and banged on one of the windows but there was no response .Whats he avoiding us for ?Hermione said when they had finally given up and were walking back to the school .He surely doesnt think wed care about him being halfgiant ?But it seemed that Hagrid did care .They didnt see a sign of him all week .He didnt appear at the staff table at mealtimes they didnt see him going about his gamekeeper duties on the grounds and Professor GrubblyPlank continued to take the Care of Magical Creatures classes .Malfoy was gloating at every possible opportunity .Missing your halfbreed pal ?he kept whispering to Harry whenever there was a teacher around so that he was safe from Harrys retaliation .Missing the elephantman ?There was a Hogsmeade visit halfway through January .Hermione was very surprised that Harry was going to go .I just thought youd want to take advantage of the common room being quiet she said .Really get to work on that egg .Oh I I reckon Ive got a pretty good idea what its about now Harry lied .Have you really ?said Hermione looking impressed .Well done !Harrys insides gave a guilty squirm but he ignored them .He still had five weeks to work out that egg clue after all and that was ages .whereas if he went into Hogsmeade he might run into Hagrid and get a chance to persuade him to come back .He Ron and Hermione left the castle together on Saturday and set off through the cold wet grounds toward the gates .As they passed the Durmstrang ship moored in the lake they saw Viktor Krum emerge onto the deck dressed in nothing but swimming trunks .He was very skinny indeed but apparently a lot tougher than he looked because he climbed up onto the side of the ship stretched out his arms and dived right into the lake .Hes mad !said Harry staring at Krums dark head as it bobbed out into the middle of the lake .It must be freezing its January !Its a lot colder where he comes from said Hermione .I suppose it feels quite warm to him .Yeah but theres still the giant squid said Ron .He didnt sound anxious if anything he sounded hopeful .Hermione noticed his tone of voice and frowned .Hes really nice you know she said .Hes not at all like youd think coming from Durmstrang .He likes it much better here he told me .Ron said nothing .He hadnt mentioned Viktor Krum since the ball but Harry had found a miniature arm under his bed on Boxing Day which had looked very much as though it had been snapped off a small model figure wearing Bulgarian Quidditch robes .Harry kept his eyes skinned for a sign of Hagrid all the way down the slushy High Street and suggested a visit to the Three Broomsticks once he had ascertained that Hagrid was not in any of the shops .The pub was as crowded as ever but one quick look around at all the tables told Harry that Hagrid wasnt there .Heart sinking he went up to the bar with Ron and Hermione ordered three butterbeers from Madam Rosmerta and thought gloomily that he might just as well have stayed behind and listened to the egg wailing after all .Doesnt he ever go into the office ?Hermione whispered suddenly .Look !She pointed into the mirror behind the bar and Harry saw Ludo Bagman reflected there sitting in a shadowy corner with a bunch of goblins .Bagman was talking very fast in a low voice to the goblins all of whom had their arms crossed and were looking rather menacing .It was indeed odd Harry thought that Bagman was here at the Three Broomsticks on a weekend when there was no Triwizard event and therefore no judging to be done .He watched Bagman in the mirror .He was looking strained again quite as strained as he had that night in the forest before the Dark Mark had appeared .But just then Bagman glanced over at the bar saw Harry and stood up .In a moment in a moment !Harry heard him say brusquely to the goblins and Bagman hurried through the pub toward Harry his boyish grin back in place .Harry !he said .How are you ?Been hoping to run into you !Everything going all right ?Fine thanks said Harry .Wonder if I could have a quick private word Harry ?said Bagman eagerly .You couldnt give us a moment you two could you ?Er okay said Ron and he and Hermione went off to find a table .Bagman led Harry along the bar to the end furthest from Madam Rosmerta .Well I just thought Id congratulate you again on your splendid performance against that Horntail Harry said Bagman .Really superb .Thanks said Harry but he knew this couldnt be all that Bagman wanted to say because he could have congratulated Harry in front of Ron and Hermione .Bagman didnt seem in any particular rush to spill the beans though .Harry saw him glance into the mirror over the bar at the goblins who were all watching him and Harry in silence through their dark slanting eyes .Absolute nightmare said Bagman to Harry in an undertone noticing Harry watching the goblins too .Their English isnt too good .its like being back with all the Bulgarians at the Quidditch World Cup .but at least they used sign language another human could recognize .This lot keep gabbling in Gobbledegook .and I only know one word of Gobbledegook .Bladvak .It means ‘pickax .I dont like to use it in case they think Im threatening them .He gave a short booming laugh .What do they want ?Harry said noticing how the goblins were still watching Bagman very closely .Er well .said Bagman looking suddenly nervous .They .er .theyre looking for Barry Crouch .Why are they looking for him here ?said Harry .Hes at the Ministry in London isnt he ?Er .as a matter of fact Ive no idea where he is said Bagman .Hes sort of .stopped coming to work .Been absent for a couple of weeks now .Young Percy his assistant says hes ill .Apparently hes just been sending instructions in by owl .But would you mind not mentioning that to anyone Harry ?Because Rita Skeeters still poking around everywhere she can and Im willing to bet shed work up Bartys illness into something sinister .Probably say hes gone missing like Bertha Jorkins .Have you heard anything about Bertha Jorkins ?Harry asked .No said Bagman looking strained again .Ive got people looking of course .About time thought Harry and its all very strange .She definitely arrived in Albania because she met her second cousin there .And then she left the cousins house to go south and see an aunt .and she seems to have vanished without trace en route .Blowed if I can see where shes got to .she doesnt seem the type to elope for instance .but still .What are we doing talking about goblins and Bertha Jorkins ?I really wanted to ask you he lowered his voice how are you getting on with your golden egg ?Er .not bad Harry said untruthfully .Bagman seemed to know he wasnt being honest .Listen Harry he said still in a very low voice I feel very bad about all this .you were thrown into this tournament you didnt volunteer for it .and if .his voice was so quiet now Harry had to lean closer to listen if I can help at all .a prod in the right direction .Ive taken a liking to you .the way you got past that dragon ! .well just say the word .Harry stared up into Bagmans round rosy face and his wide babyblue eyes .Were supposed to work out the clues alone arent we ?he said careful to keep his voice casual and not sound as though he was accusing the head of the Department of Magical Games and Sports of breaking the rules .Well .well yes said Bagman impatiently but come on Harry we all want a Hogwarts victory dont we ?Have you offered Cedric help ?Harry said .The smallest of frowns creased Bagmans smooth face .No I havent he said .I well like I say Ive taken a liking to you .Just thought Id offer .Well thanks said Harry but I think Im nearly there with the egg .couple more days should crack it .He wasnt entirely sure why he was refusing Bagmans help except that Bagman was almost a stranger to him and accepting his assistance would feel somehow much more like cheating than asking advice from Ron Hermione or Sirius .Bagman looked almost affronted but couldnt say much more as Fred and George turned up at that point .Hello Mr Bagman said Fred brightly .Can we buy you a drink ?Er .no said Bagman with a last disappointed glance at Harry no thank you boys .Fred and George looked quite as disappointed as Bagman who was surveying Harry as though he had let him down badly .Well I must dash he said .Nice seeing you all .Good luck Harry .He hurried out of the pub .The goblins all slid off their chairs and exited after him .Harry went to rejoin Ron and Hermione .What did he want ?Ron said the moment Harry had sat down .He offered to help me with the golden egg said Harry .He shouldnt be doing that !said Hermione looking very shocked .Hes one of the judges !And anyway youve already worked it out havent you ?Er .nearly said Harry .Well I dont think Dumbledore would like it if he knew Bagman was trying to persuade you to cheat !said Hermione still looking deeply disapproving .I hope hes trying to help Cedric as much !Hes not I asked said Harry .Who cares if Diggorys getting help ?said Ron .Harry privately agreed .Those goblins didnt look very friendly said Hermione sipping her butterbeer .What were they doing here ?Looking for Crouch according to Bagman said Harry .Hes still ill .Hasnt been into work .Maybe Percys poisoning him said Ron .Probably thinks if Crouch snuffs it hell be made head of the Department of International Magical Cooperation .Hermione gave Ron a dont jokeaboutthingslike that look and said Funny goblins looking for Mr Crouch .Theyd normally deal with the Department for the Regulation and Control of Magical Creatures .Crouch can speak loads of different languages though said Harry .Maybe they need an interpreter .Worrying about poor ickle goblins now are you ?Ron asked Hermione .Thinking of starting up S .P .U .G .or something ?Society for the Protection of Ugly Goblins ?Ha ha ha said Hermione sarcastically .Goblins dont need protection .Havent you been listening to what Professor Binns has been telling us about goblin rebellions ?No said Harry and Ron together .Well theyre quite capable of dealing with wizards said Hermione taking another sip of butterbeer .Theyre very clever .Theyre not like houseelves who never stick up for themselves .Uhoh said Ron staring at the door .Rita Skeeter had just entered .She was wearing bananayellow robes today her long nails were painted shocking pink and she was accompanied by her paunchy photographer .She bought drinks and she and the photographer made their way through the crowds to a table nearby Harry Ron and Hermione glaring at her as she approached .She was talking fast and looking very satisfied about something . .didnt seem very keen to talk to us did he Bozo ?Now why would that be do you think ?And whats he doing with a pack of goblins in tow anyway ?Showing them the sights .what nonsense .he was always a bad liar .Reckon somethings up ?Think we should do a bit of digging ? ‘Disgraced ExHead of Magical Games and Sports Ludo Bagman .Snappy start to a sentence Bozo we just need to find a story to fit it Trying to ruin someone elses life ?said Harry loudly .A few people looked around .Rita Skeeter s eyes widened behind her jeweled spectacles as she saw who had spoken .Harry !she said beaming .How lovely !Why dont you come and join ?I wouldnt come near you with a tenfoot broomstick said Harry furiously .What did you do that to Hagrid for eh ?Rita Skeeter raised her heavily penciled eyebrows .Our readers have a right to the truth Harry .I am merely doing my Who cares if hes half giant ?Harry shouted .Theres nothing wrong with him !The whole pub had gone very quiet .Madam Rosmerta was staring over from behind the bar apparently oblivious to the fact that the flagon she was filling with mead was overflowing .Rita Skeeters smile flickered very slightly but she hitched it back almost at once she snapped open her crocodileskin handbag pulled out her QuickQuotes Quill and said How about giving me an interview about the Hagrid you know Harry ?The man behind the muscles ?Your unlikely friendship and the reasons behind it .Would you call him a father substitute ?Hermione stood up very abruptly her butterbeer clutched in her hand as though it were a grenade .You horrible woman she said through gritted teeth you dont care do you anything for a story and anyone will do wont they ?Even Ludo Bagman Sit down you silly little girl and dont talk about things you dont understand said Rita Skeeter coldly her eyes hardening as they fell on Hermione .I know things about Ludo Bagman that would make your hair curl .not that it needs it she added eyeing Hermione s bushy hair .Lets go said Hermione cmon Harry Ron .They left many people were staring at them as they went .Harry glanced back as they reached the door .Rita Skeeters QuickQuotes Quill was out it was zooming backward and forward over a piece of parchment on the table .Shell be after you next Hermione said Ron in a low and worried voice as they walked quickly back up the street .Let her try !said Hermione defiantly she was shaking with rage .Ill show her !Silly little girl am I ?Oh Ill get her back for this .First Harry then Hagrid You dont want to go upsetting Rita Skeeter said Ron nervously .Im serious Hermione shell dig up something on you My parents dont read the Daily Prophet She cant scare me into hiding !said Hermione now striding along so fast that it was all Harry and Ron could do to keep up with her .The last time Harry had seen Hermione in a rage like this she had hit Draco Malfoy around the face .And Hagrid isnt hiding anymore !He should never have let that excuse for a human being upset him !Come on !Breaking into a run she led them all the way back up the road through the gates flanked by winged boars and up through the grounds to Hagrid s cabin .The curtains were still drawn and they could hear Fang barking as they approached .Hagrid !Hermione shouted pounding on his front door .Hagrid thats enough !We know youre in there !Nobody cares if your mum was a giantess Hagrid !You cant let that foul Skeeter woman do this to you !Hagrid get out here youre just being The door opened .Hermione said About t !and then stopped very suddenly because she had found herself facetoface not with Hagrid but with Albus Dumbledore .Good afternoon he said pleasantly smiling down at them .We er we wanted to see Hagrid said Hermione in a rather small voice .Yes I surmised as much said Dumbledore his eyes twinkling .Why dont you come in ?Oh .um .okay said Hermione .She Ron and Harry went into the cabin Fang launched himself upon Harry the moment he entered barking madly and trying to lick his ears .Harry fended off Fang and looked around .Hagrid was sitting at his table where there were two large mugs of tea .He looked a real mess .His face was blotchy his eyes swollen and he had gone to the other extreme where his hair was concerned far from trying to make it behave it now looked like a wig of tangled wire .Hi Hagrid said Harry .Hagrid looked up .Lo he said in a very hoarse voice .More tea I think said Dumbledore closing the door behind Harry Ron and Hermione drawing out his wand and twiddling it a revolving tea tray appeared in midair along with a plate of cakes .Dumbledore magicked the tray onto the table and everybody sat down .There was a slight pause and then Dumbledore said Did you by any chance hear what Miss Granger was shouting Hagrid ?Hermione went slightly pink but Dumbledore smiled at her and continued Hermione Harry and Ron still seem to want to know you judging by the way they were attempting to break down the door .Of course we still want to know you !Harry said staring at Hagrid .You dont think anything that Skeeter cow sorry Professor he added quickly looking at Dumbledore .I have gone temporarily deaf and havent any idea what you said Harry said Dumbledore twiddling his thumbs and staring at the ceiling .Er right said Harry sheepishly .I just meant Hagrid how could you think wed care what that woman wrote about you ?Two fat tears leaked out of Hagrid s beetleblack eyes and fell slowly into his tangled beard .Living proof of what Ive been telling you Hagrid said Dumbledore still looking carefully up at the ceiling .I have shown you the letters from the countless parents who remember you from their own days here telling me in no uncertain terms that if I sacked you they would have something to say about it Not all of em said Hagrid hoarsely .Not all of em wan me ter stay .Really Hagrid if you are holding out for universal popularity Im afraid you will be in this cabin for a very long time said Dumbledore now peering sternly over his halfmoon spectacles .Not a week has passed since I became headmaster of this school when I havent had at least one owl complaining about the way I run it .But what should I do ?Barricade myself in my study and refuse to talk to anybody ?Yeh yehre not halfgiant !said Hagrid croakily .Hagrid look what Ive got for relatives !Harry said furiously .Look at the Dursleys !An excellent point said Professor Dumbledore .My own brother Aberforth was prosecuted for practicing inappropriate charms on a goat .It was all over the papers but did Aberforth hide ?No he did not !He held his head high and went about his business as usual !Of course Im not entirely sure he can read so that may not have been bravery .Come back and teach Hagrid said Hermione quietly please come back we really miss you .Hagrid gulped .More tears leaked out down his cheeks and into his tangled beard .Dumbledore stood up .I refuse to accept your resignation Hagrid and I expect you back at work on Monday he said .You will join me for breakfast at eightthirty in the Great Hall .No excuses .Good afternoon to you all .Dumbledore left the cabin pausing only to scratch Fangs ears .When the door had shut behind him Hagrid began to sob into his dustbinlidsized hands .Hermione kept patting his arm and at last Hagrid looked up his eyes very red indeed and said Great man Dumbledore .great man .Yeah he is said Ron .Can I have one of these cakes Hagrid ?Help yerself said Hagrid wiping his eyes on the back of his hand .Ar hes righ o course yehre all righ .I bin stupid .my ol dad woulda bin ashamed o the way Ive bin behavin .More tears leaked out but he wiped them away more forcefully and said Never shown you a picture of my old dad have I ?Here .Hagrid got up went over to his dresser opened a drawer and pulled out a picture of a short wizard with Hagrids crinkled black eyes beaming as he sat on top of Hagrids shoulder .Hagrid was a good seven or eight feet tall judging by the apple tree beside him but his face was beardless young round and smooth he looked hardly older than eleven .Tha was taken jus after I got inter Hogwarts Hagrid croaked .Dad was dead chuffed .thought I migh not be a wizard see cos me mum .well anyway .Course I never was great shakes at magic really .but at least he never saw me expelled .Died see in me second year .Dumbledore was the one who stuck up for me after Dad went .Got me the gamekeeper job .trusts people he does .Gives em second chances .thas what sets him apar from other heads see .Hell accept anyone at Hogwarts slong as theyve got the talent .Knows people can turn out okay even if their families weren .well .all tha respectable .But some don understand that .Theres some whod always hold it against yeh .theres some whod even pretend they just had big bones rather than stand up an say I am what I am an Im not ashamed . ‘Never be ashamed my ol dad used ter say ‘theres some wholl hold it against you but theyre not worth botherin with .An he was right .Ive bin an idiot .Im not botherin with her no more I promise yeh that .Big bones .Ill give her big bones .Harry Ron and Hermione looked at one another nervously Harry would rather have taken fifty Blast Ended Skrewts for a walk than admit to Hagrid that he had overheard him talking to Madame Maxime but Hagrid was still talking apparently unaware that he had said anything odd .Yeh know wha Harry ?he said looking up from the photograph of his father his eyes very bright when I firs met you you reminded me o me a bit .Mum an Dad gone an you was feelin like yeh wouldn fit in at Hogwarts remember ?Not sure yeh were really up to it .an now look at yeh Harry !School champion !He looked at Harry for a moment and then said very seriously Yeh know what Id love Harry ?Id love yeh ter win I really would .Itd show em all .yeh don have ter be pureblood ter do it .Yeh don have ter be ashamed of what yeh are .Itd show em Dumbledores the one whos got it righ lettin anyone in as long as they can do magic .How you doin with that egg Harry ?Great said Harry .Really great .Hagrid s miserable face broke into a wide watery smile .Thas my boy .you show em Harry you show em .Beat em all .Lying to Hagrid wasnt quite like lying to anyone else .Harry went back to the castle later that afternoon with Ron and Hermione unable to banish the image of the happy expression on Hagrids whiskery face as he had imagined Harry winning the tournament .The incomprehensible egg weighed more heavily than ever on Harrys conscience that evening and by the time he had got into bed he had made up his mind it was time to shelve his pride and see if Cedrics hint was worth anything .THE EGG AND THE EYE As Harry had no idea how long a bath he would need to work out the secret of the golden egg he decided to do it at night when he would be able to take as much time as he wanted .Reluctant though he was to accept more favours from Cedric he also decided to use the prefects bathroom far fewer people were allowed in there so it was much less likely that he would be disturbed .Harry planned his excursion carefully because he had been caught out of bed and outofbounds by Filch the caretaker in the middle of the night once before and had no desire to repeat the experience .The Invisibility Cloak would of course be essential and as an added precaution Harry thought he would take the Marauders Map which next to the cloak was the most useful aid to rulebreaking Harry owned .The map showed the whole of Hogwarts including its many shortcuts and secret passageways and most important of all it revealed the people inside the castle as minuscule labeled dots moving around the corridors so that Harry would be forewarned if somebody was approaching the bathroom .On Thursday night Harry sneaked up to bed put on the cloak crept back downstairs and just as he had done on the night when Hagrid had shown him the dragons waited for the portrait hole to open .This time it was Ron who waited outside to give the Fat Lady the password banana fritters .Good luck Ron muttered climbing into the room as Harry crept out past him .It was awkward moving under the cloak tonight because Harry had the heavy egg under one arm and the map held in front of his nose with the other .However the moonlit corridors were empty and silent and by checking the map at strategic intervals Harry was able to ensure that he wouldnt run into anyone he wanted to avoid .When he reached the statue of Boris the Bewildered a lostlooking wizard with his gloves on the wrong hands he located the right door leaned close to it and muttered the password Pine fresh just as Cedric had told him .The door creaked open .Harry slipped inside bolted the door behind him and pulled off the Invisibility Cloak looking around .His immediate reaction was that it would be worth becoming a prefect just to be able to use this bathroom .It was softly lit by a splendid candlefilled chandelier and everything was made of white marble including what looked like an empty rectangular swimming pool sunk into the middle of the floor .About a hundred golden taps stood all around the pools edges each with a differently colored jewel set into its handle .There was also a diving board .Long white linen curtains hung at the windows a large pile of fluffy white towels sat in a corner and there was a single goldenframed painting on the wall .It featured a blonde mermaid who was fast asleep on a rock her long hair over her face .It fluttered every time she snored .Harry moved forward looking around his footsteps echoing off the walls .Magnificent though the bathroom was and quite keen though he was to try out a few of those taps now he was here he couldnt quite suppress the feeling that Cedric might have been having him on .How on earth was this supposed to help solve the mystery of the egg ?Nevertheless he put one of the fluffy towels the cloak the map and the egg at the side of the swimmingpoolsized bath then knelt down and turned on a few of the taps .He could tell at once that they carried different sorts of bubble bath mixed with the water though it wasnt bubble bath as Harry had ever experienced it .One tap gushed pink and blue bubbles the size of footballs another poured icewhite foam so thick that Harry thought it would have supported his weight if hed cared to test it a third sent heavily perfumed purple clouds hovering over the surface of the water .Harry amused himself for a while turning the taps on and off particularly enjoying the effect of one whose jet bounced off the surface of the water in large arcs .Then when the deep pool was full of hot water foam and bubbles which took a very short time considering its size Harry turned off all the taps pulled off his pajamas slippers and dressing gown and slid into the water .It was so deep that his feet barely touched the bottom and he actually did a couple of lengths before swimming back to the side and treading water staring at the egg .Highly enjoyable though it was to swim in hot and foamy water with clouds of different colored steam wafting all around him no stroke of brilliance came to him no sudden burst of understanding .Harry stretched out his arms lifted the egg in his wet hands and opened it .The wailing screeching sound filled the bathroom echoing and reverberating off the marble walls but it sounded just as incomprehensible as ever if not more so with all the echoes .He snapped it shut again worried that the sound would attract Filch wondering whether that hadnt been Cedrics plan and then making him jump so badly that he dropped the egg which clattered away across the bathroom floor someone spoke .Id try putting it in the water if I were you .Harry had swallowed a considerable amount of bubbles in shock .He stood up sputtering and saw the ghost of a very glumlooking girl sitting cross legged on top of one of the taps .It was Moaning Myrtle who was usually to be heard sobbing in the S bend of a toilet three floors below .Myrtle !Harry said in outrage Im Im not wearing anything !The foam was so dense that this hardly mattered but he had a nasty feeling that Myrtle had been spying on him from out of one of the taps ever since he had arrived .I closed my eyes when you got in she said blinking at him through her thick spectacles .You havent been to see me for ages .Yeah .well .said Harry bending his knees slightly just to make absolutely sure Myrtle couldnt see anything but his head Im not supposed to come into your bathroom am I ?Its a girls one .You didnt used to care said Myrtle miserably .You used to be in there all the time .This was true though only because Harry Ron and Hermione had found Myrtles outoforder toilets a convenient place to brew Polyjuice Potion in secret a forbidden potion that had turned him and Ron into living replicas of Crabbe and Goyle for an hour so that they could sneak into the Slytherin common room .I got told off for going in there said Harry which was halftrue Percy had once caught him coming out of Myrtles bathroom .I thought Id better not come back after that .Oh .I see .said Myrtle picking at a spot on her chin in a morose sort of way .Well .anyway .Id try the egg in the water .Thats what Cedric Diggory did .Have you been spying on him too ?said Harry indignantly .What dyou do sneak up here in the evenings to watch the prefects take baths ?Sometimes said Myrtle rather slyly but Ive never come out to speak to anyone before .Im honored said Harry darkly .You keep your eyes shut !He made sure Myrtle had her glasses well covered before hoisting himself out of the bath wrapping the towel firmly around his waist and going to retrieve the egg .Once he was back in the water Myrtle peered through her fingers and said Go on then .open it under the water !Harry lowered the egg beneath the foamy surface and opened it .and this time it did not wail .A gurgling song was coming out of it a song whose words he couldnt distinguish through the water .You need to put your head under too said Myrtle who seemed to be thoroughly enjoying bossing him around .Go on !Harry took a great breath and slid under the surface and now sitting on the marble bottom of the bubblefilled bath he heard a chorus of eerie voices singing to him from the open egg in his hands Come seek us where our voices sound We cannot sing above the ground And while youre searching ponder this Weve taken what youll sorely miss An hour long youll have to look And to recover what we took But past an hour the prospects black Too late its gone it wont come back .Harry let himself float back upward and broke the bubbly surface shaking his hair out of his eyes .Hear it ?said Myrtle .Yeah . ‘Come seek us where our voices sound .and if I need persuading .hang on I need to listen again .He sank back beneath the water .It took three more underwater renditions of the eggs song before Harry had it memorized then he trod water for a while thinking hard while Myrtle sat and watched him .Ive got to go and look for people who cant use their voices above the ground .he said slowly .Er .who could that be ?Slow arent you ?He had never seen Moaning Myrtle so cheerful apart from the day when a dose of Polyjuice Potion had given Hermione the hairy face and tail of a cat .Harry stared around the bathroom thinking .if the voices could only be heard underwater then it made sense for them to belong to underwater creatures .He ran this theory past Myrtle who smirked at him .Well thats what Diggory thought she said .He lay there talking to himself for ages about it .Ages and ages .nearly all the bubbles had gone .Underwater .Harry said slowly .Myrtle .what lives in the lake apart from the giant squid ?Oh all sorts she said .I sometimes go down there .sometimes dont have any choice if someone flushes my toilet when Im not expecting it .Trying not to think about Moaning Myrtle zooming down a pipe to the lake with the contents of a toilet Harry said Well does anything in there have a human voice ?Hang on Harrys eyes had fallen on the picture of the snoozing mermaid on the wall .Myrtle there arent merpeople in there are there ?Oooh very good she said her thick glasses twinkling it took Diggory much longer than that !And that was with her awake too Myrtle jerked her head toward the mermaid with an expression of great dislike on her glum face giggling and showing off and flashing her fins .Thats it isnt it ?said Harry excitedly .The second tasks to go and find the merpeople in the lake and .and .But he suddenly realized what he was saying and he felt the excitement drain out of him as though someone had just pulled a plug in his stomach .He wasnt a very good swimmer hed never had much practice .Dudley had had lessons in his youth but Aunt Petunia and Uncle Vernon no doubt hoping that Harry would drown one day hadnt bothered to give him any .A couple of lengths of this bath were all very well but that lake was very large and very deep .and merpeople would surely live right at the bottom .Myrtle Harry said slowly how am I supposed to breathe ?At this Myrtles eyes filled with sudden tears again .Tactless !she muttered groping in her robes for a handkerchief .Whats tactless ?said Harry bewildered .Talking about breathing in front of me !she said shrilly and her voice echoed loudly around the bathroom .When I cant .when I havent .not for ages .She buried her face in her handkerchief and sniffed loudly .Harry remembered how touchy Myrtle had always been about being dead but none of the other ghosts he knew made such a fuss about it .Sorry he said impatiently .I didnt mean I just forgot .Oh yes very easy to forget Myrtles dead said Myrtle gulping looking at him out of swollen eyes .Nobody missed me even when I was alive .Took them hours and hours to find my body I know I was sitting there waiting for them .Olive Hornby came into the bathroom ‘Are you in here again sulking Myrtle ?she said ‘because Professor Dippet asked me to look for you And then she saw my body .ooooh she didnt forget it until her dying day I made sure of that .followed her around and reminded her I did .I remember at her brothers wedding But Harry wasnt listening he was thinking about the merpeoples song again .Weve taken what youll sorely miss .That sounded as though they were going to steal something of his something he had to get back .What were they going to take ?and then of course she went to the Ministry of Magic to stop me stalking her so I had to come back here and live in my toilet .Good said Harry vaguely .Well Im a lot further on than I was .Shut your eyes again will you ?Im getting out .He retrieved the egg from the bottom of the bath climbed out dried himself and pulled on his pajamas and dressing gown again .Will you come and visit me in my bathroom again sometime ?Moaning Myrtle asked mournfully as Harry picked up the Invisibility Cloak .Er .Ill try Harry said though privately thinking the only way hed be visiting Myrtles bathroom again was if every other toilet in the castle got blocked .See you Myrtle .thanks for your help .Bye bye she said gloomily and as Harry put on the Invisibility Cloak he saw her zoom back up the tap .Out in the dark corridor Harry examined the Marauders Map to check that the coast was still clear .Yes the dots belonging to Filch and his cat Mrs Norris were safely in their office .nothing else seemed to be moving apart from Peeves though he was bouncing around the trophy room on the floor above .Harry had taken his first step back toward Gryffindor Tower when something else on the map caught his eye .something distinctly odd .Peeves was not the only thing that was moving .A single dot was flitting around a room in the bottom lefthand corner Snapes office .But the dot wasnt labeled Severus Snape .it was Bartemius Crouch .Harry stared at the dot .Mr Crouch was supposed to be too ill to go to work or to come to the Yule Ball so what was he doing sneaking into Hogwarts at one oclock in the morning ?Harry watched closely as the dot moved around and around the room pausing here and there .Harry hesitated thinking .and then his curiosity got the better of him .He turned and set off in the opposite direction toward the nearest staircase .He was going to see what Crouch was up to .Harry walked down the stairs as quietly as possible though the faces in some of the portraits still turned curiously at the squeak of a floorboard the rustle of his pajamas .He crept along the corridor below pushed aside a tapestry about halfway along and proceeded down a narrower staircase a shortcut that would take him down two floors .He kept glancing down at the map wondering .It just didnt seem in character somehow for correct lawabiding Mr Crouch to be sneaking around somebody elses office this late at night .And then halfway down the staircase not thinking about what he was doing not concentrating on anything but the peculiar behavior of Mr Crouch Harrys leg suddenly sank right through the trick step Neville always forgot to jump .He gave an ungainly wobble and the golden egg still damp from the bath slipped from under his arm .He lurched forward to try and catch it but too late the egg fell down the long staircase with a bang as loud as a bass drum on every step the Invisibility Cloak slipped Harry snatched at it and the Marauders Map fluttered out of his hand and slid down six stairs where sunk in the step to above his knee he couldnt reach it .The golden egg fell through the tapestry at the bottom of the staircase burst open and began wailing loudly in the corridor below .Harry pulled out his wand and struggled to touch the Marauders Map to wipe it blank but it was too far away to reach Pulling the cloak back over himself Harry straightened up listening hard with his eyes screwed up with fear .and almost immediately PEEVES !It was the unmistakable hunting cry of Filch the caretaker .Harry could hear his rapid shuffling footsteps coming nearer and nearer his wheezy voice raised in fury .Whats this racket ?Wake up the whole castle will you ?Ill have you Peeves Ill have you youll .and what is this ?Filch s footsteps halted there was a clink of metal on metal and the wailing stopped Filch had picked up the egg and closed it .Harry stood very still one leg still jammed tightly in the magical step listening .Any moment now Filch was going to pull aside the tapestry expecting to see Peeves .and there would be no Peeves .but if he came up the stairs he would spot the Marauders Map .and Invisibility Cloak or not the map would show Harry Potter standing exactly where he was .Egg ?Filch said quietly at the foot of the stairs .My sweet !Mrs Norris was obviously with him This is a Triwizard clue !This belongs to a school champion !Harry felt sick his heart was hammering very fast PEEVES !Filch roared gleefully .Youve been stealing !He ripped back the tapestry below and Harry saw his horrible pouchy face and bulging pale eyes staring up the dark and to Filch deserted staircase .Hiding are you ?he said softly .Im coming to get you Peeves .Youve gone and stolen a Tri wizard clue Peeves .Dumbledorell have you out of here for this you filthy pilfering poltergeist .Filch started to climb the stairs his scrawny dust colored cat at his heels .Mrs Norriss lamplike eyes so very like her masters were fixed directly upon Harry .He had had occasion before now to wonder whether the Invisibility Cloak worked on cats .Sick with apprehension he watched Filch drawing nearer and nearer in his old flannel dressing gown he tried desperately to pull his trapped leg free but it merely sank a few more inches any second now Filch was going to spot the map or walk right into him Filch ?Whats going on ?Filch stopped a few steps below Harry and turned .At the foot of the stairs stood the only person who could make Harrys situation worse Snape .He was wearing a long gray nightshirt and he looked livid .Its Peeves Professor Filch whispered malevolently .He threw this egg down the stairs .Snape climbed up the stairs quickly and stopped beside Filch .Harry gritted his teeth convinced his loudly thumping heart would give him away at any second .Peeves ?said Snape softly staring at the egg in Filchs hands .But Peeves couldnt get into my office .This egg was in your office Professor ?Of course not Snape snapped .I heard banging and wailing Yes Professor that was the egg I was coming to investigate Peeves threw it Professor and when I passed my office I saw that the torches were lit and a cupboard door was ajar !Somebody has been searching it !But Peeves couldnt I know he couldnt Filch !Snape snapped again .I seal my office with a spell none but a wizard could break !Snape looked up the stairs straight through Harry and then down into the corridor below .I want you to come and help me search for the intruder Filch .I yes Professor but Filch looked yearningly up the stairs right through Harry who could see that he was very reluctant to forgo the chance of cornering Peeves .Go Harry pleaded with him silently go with Snape .go .Mrs Norris was peering around Filch s legs .Harry had the distinct impression that she could smell him .Why had he filled that bath with so much perfumed foam ?The thing is Professor said Filch plaintively the headmaster will have to listen to me this time .Peeves has been stealing from a student it might be my chance to get him thrown out of the castle once and for all Filch I dont give a damn about that wretched poltergeist its my office thats Clunk .Clunk .Clunk .Snape stopped talking very abruptly .He and Filch both looked down at the foot of the stairs .Harry saw MadEye Moody limp into sight through the narrow gap between their heads .Moody was wearing his old traveling cloak over his nightshirt and leaning on his staff as usual .Pajama party is it ?he growled up the stairs .Professor Snape and I heard noises Professor said Filch at once .Peeves the Poltergeist throwing things around as usual and then Professor Snape discovered that someone had broken into his off Shut up !Snape hissed to Filch .Moody took a step closer to the foot of the stairs .Harry saw Moodys magical eye travel over Snape and then unmistakably onto himself .Harrys heart gave a horrible jolt .Moody could see through Invisibility Cloaks .he alone could see the full strangeness of the scene Snape in his nightshirt Filch clutching the egg and he Harry trapped in the stairs behind them .Moodys lopsided gash of a mouth opened in surprise .For a few seconds he and Harry stared straight into each others eyes .Then Moody closed his mouth and turned his blue eye upon Snape again .Did I hear that correctly Snape ?he asked slowly .Someone broke into your office ?It is unimportant said Snape coldly .On the contrary growled Moody it is very important .Whod want to break into your office ?A student I daresay said Snape .Harry could see a vein flickering horribly on Snape s greasy temple .It has happened before .Potion ingredients have gone missing from my private store cupboard .students attempting illicit mixtures no doubt .Reckon they were after potion ingredients eh ?said Moody .Not hiding anything else in your office are you ?Harry saw the edge of Snape s sallow face turn a nasty brick color the vein in his temple pulsing more rapidly .You know Im hiding nothing Moody he said in a soft and dangerous voice as youve searched my office pretty thoroughly yourself .Moodys face twisted into a smile .Aurors privilege Snape .Dumbledore told me to keep an eye Dumbledore happens to trust me said Snape through clenched teeth .I refuse to believe that he gave you orders to search my office !Course Dumbledore trusts you growled Moody .Hes a trusting man isnt he ?Believes in second chances .But me I say there are spots that dont come off Snape .Spots that never come off dyou know what I mean ?Snape suddenly did something very strange .He seized his left forearm convulsively with his right hand as though something on it had hurt him .Moody laughed .Get back to bed Snape .You dont have the authority to send me anywhere !Snape hissed letting go of his arm as though angry with himself .I have as much right to prowl this school after dark as you do !Prowl away said Moody but his voice was full of menace .I look forward to meeting you in a dark corridor some time .Youve dropped something by the way .With a stab of horror Harry saw Moody point at the Marauders Map still lying on the staircase six steps below him .As Snape and Filch both turned to look at it Harry threw caution to the winds he raised his arms under the cloak and waved furiously at Moody to attract his attention mouthing Its mine !Mine !Snape had reached out for it a horrible expression of dawning comprehension on his face Accio Parchments The map flew up into the air slipped through Snape s outstretched fingers and soared down the stairs into Moodys hand .My mistake Moody said calmly .Its mine mustve dropped it earlier But Snape s black eyes were darting from the egg in Filchs arms to the map in Moodys hand and Harry could tell he was putting two and two together as only Snape could .Potter he said quietly .Whats that ?said Moody calmly folding up the map and pocketing it .Potter !Snape snarled and he actually turned his head and stared right at the place where Harry was as though he could suddenly see him .That egg is Potters egg .That piece of parchment belongs to Potter .I have seen it before I recognize it !Potter is here !Potter in his Invisibility Cloak !Snape stretched out his hands like a blind man and began to move up the stairs Harry could have sworn his overlarge nostrils were dilating trying to sniff Harry out trapped Harry leaned backward trying to avoid Snapes fingertips but any moment now Theres nothing there Snape !barked Moody but Ill be happy to tell the headmaster how quickly your mind jumped to Harry Potter !Meaning what ?Snape turned again to look at Moody his hands still outstretched inches from Harrys chest .Meaning that Dumbledores very interested to know whos got it in for that boy !said Moody limping nearer still to the foot of the stairs .And so am I Snape .very interested .The torchlight flickered across his mangled face so that the scars and the chunk missing from his nose looked deeper and darker than ever .Snape was looking down at Moody and Harry couldnt see the expression on his face .For a moment nobody moved or said anything .Then Snape slowly lowered his hands .I merely thought said Snape in a voice of forced calm that if Potter was wandering around after hours again .its an unfortunate habit of his .he should be stopped .For for his own safety .Ah I see said Moody softly .Got Potters best interests at heart have you ?There was a pause .Snape and Moody were still staring at each other .Mrs Norris gave a loud meow still peering around Filchs legs looking for the source of Harrys bubblebath smell .I think I will go back to bed Snape said curtly .Best idea youve had all night said Moody .Now Filch if youll just give me that egg No !said Filch clutching the egg as though it were his firstborn son .Professor Moody this is evidence of Peeves treachery !Its the property of the champion he stole it from said Moody .Hand it over now .Snape swept downstairs and passed Moody without another word .Filch made a chirruping noise to Mrs Norris who stared blankly at Harry for a few more seconds before turning and following her master .Still breathing very fast Harry heard Snape walking away down the corridor Filch handed Moody the egg and disappeared from view too muttering to Mrs Norris .Never mind my sweet .well see Dumbledore in the morning .tell him what Peeves was up to .A door slammed .Harry was left staring down at Moody who placed his staff on the bottommost stair and started to climb laboriously toward him a dull clunk on every other step .Close shave Potter he muttered .Yeah .I er .thanks said Harry weakly .What is this thing ?said Moody drawing the Marauders Map out of his pocket and unfolding it .Map of Hogwarts said Harry hoping Moody was going to pull him out of the staircase soon his leg was really hurting him .Merlins beard Moody whispered staring at the map his magical eye going haywire .This .this is some map Potter !Yeah its .quite useful Harry said .His eyes were starting to water from the pain .Er Professor Moody dyou think you could help me ?What ?Oh !Yes .yes of course .Moody took hold of Harrys arms and pulled Harrys leg came free of the trick step and he climbed onto the one above it .Moody was still gazing at the map .Potter .he said slowly you didnt happen by any chance to see who broke into Snapes office did you ?On this map I mean ?Er .yeah I did .Harry admitted .It was Mr Crouch .Moodys magical eye whizzed over the entire surface of the map .He looked suddenly alarmed .Crouch ?he said .Youre youre sure Potter ?Positive said Harry .Well hes not here anymore said Moody his eye still whizzing over the map .Crouch .thats very very interesting .He said nothing for almost a minute still staring at the map .Harry could tell that this news meant something to Moody and very much wanted to know what it was .He wondered whether he dared ask .Moody scared him slightly .yet Moody had just helped him avoid an awful lot of trouble .Er .Professor Moody .why dyou reckon Mr Crouch wanted to look around S napes office ?Moodys magical eye left the map and fixed quivering upon Harry .It was a penetrating glare and Harry had the impression that Moody was sizing him up wondering whether to answer or not or how much to tell him .Put it this way Potter Moody muttered finally they say old MadEyes obsessed with catching Dark wizards .but Im nothing nothing compared to Barty Crouch .He continued to stare at the map .Harry was burning to know more .Professor Moody ?he said again .Dyou think .could this have anything to do with .maybe Mr Crouch thinks theres something going on .Like what ?said Moody sharply .Harry wondered how much he dare say .He didnt want Moody to guess that he had a source of information outside Hogwarts that might lead to tricky questions about Sirius .I dont know Harry muttered odd stuffs been happening lately hasnt it ?Its been in the Daily Prophet .the Dark Mark at the World Cup and the Death Eaters and everything .Both of Moodys mismatched eyes widened .Youre a sharp boy Potter he said .His magical eye roved back to the Marauders Map .Crouch could be thinking along those lines he said slowly .Very possible .there have been some funny rumors flying around lately helped along by Rita Skeeter of course .Its making a lot of people nervous I reckon .A grim smile twisted his lopsided mouth .Oh if theres one thing I hate he muttered more to himself than to Harry and his magical eye was fixed on the lefthand corner of the map its a Death Eater who walked free .Harry stared at him .Could Moody possibly mean what Harry thought he meant ?And now I want to ask you a question Potter said Moody in a more businesslike tone .Harrys heart sank he had thought this was coming .Moody was going to ask where he had got this map which was a very dubious magical object and the story of how it had fallen into his hands incriminated not only him but his own father Fred and George Weasley and Professor Lupin their last Defense Against the Dark Arts teacher .Moody waved the map in front of Harry who braced himself Can I borrow this ?Oh !said Harry .He was very fond of his map but on the other hand he was extremely relieved that Moody wasnt asking where hed got it and there was no doubt that he owed Moody a favor .Yeah okay .Good boy growled Moody .I can make good use of this .this might be exactly what Ive been looking for .Right bed Potter come on now .They climbed to the top of the stairs together Moody still examining the map as though it was a treasure the like of which he had never seen before .They walked in silence to the door of Moodys office where he stopped and looked up at Harry .You ever thought of a career as an Auror Potter ?No said Harry taken aback .You want to consider it said Moody nodding and looking at Harry thoughtfully .Yes indeed .and incidentally .Im guessing you werent just taking that egg for a walk tonight ?Er no said Harry grinning .Ive been working out the clue .Moody winked at him his magical eye going haywire again .Nothing like a nighttime stroll to give you ideas Potter .See you in the morning .He went back into his office staring down at the Marauders Map again and closed the door behind him .Harry walked slowly back to Gryffindor Tower lost in thought about Snape and Crouch and what it all meant .Why was Crouch pretending to be ill if he could manage to get to Hogwarts when he wanted to ?What did he think Snape was concealing in his office ?And Moody thought he Harry ought to be an Auror !Interesting idea .but somehow Harry thought as he got quietly into his fourposter ten minutes later the egg and the cloak now safely back in his trunk he thought hed like to check how scarred the rest of them were before he chose it as a career .THE SECOND TASK You said youd already worked out that egg clue !said Hermione indignantly .Keep your voice down !said Harry crossly .I just need to sort of finetune it all right ?He Ron and Hermione were sitting at the very back of the Charms class with a table to themselves .They were supposed to be practicing the opposite of the Summoning Charm today the Banishing Charm .Owing to the potential for nasty accidents when objects kept flying across the room Professor Flitwick had given each student a stack of cushions on which to practice the theory being that these wouldnt hurt anyone if they went off target .It was a good theory but it wasnt working very well .Nevilles aim was so poor that he kept accidentally sending much heavier things flying across the room Professor Flitwick for instance .Just forget the egg for a minute all right ?Harry hissed as Professor Flitwick went whizzing resignedly past them landing on top of a large cabinet .Im trying to tell you about Snape and Moody .This class was an ideal cover for a private conversation as everyone was having far too much fun to pay them any attention .Harry had been recounting his adventures of the previous night in whispered installments for the last half hour .Snape said Moodys searched his office as well ?Ron whispered his eyes alight with interest as he Banished a cushion with a sweep of his wand it soared into the air and knocked Parvatis hat off .What .dyou reckon Moodys here to keep an eye on Snape as well as Karkaroff ?Well I dunno if thats what Dumbledore asked him to do but hes definitely doing it said Harry waving his wand without paying much attention so that his cushion did an odd sort of belly flop off the desk .Moody said Dumbledore only lets Snape stay here because hes giving him a second chance or something .What ?said Ron his eyes widening his next cushion spinning high into the air ricocheting off the chandelier and dropping heavily onto Flitwicks desk .Harry .maybe Moody thinks Snape put your name in the Goblet of Fire !Oh Ron said Hermione shaking her head sceptically we thought Snape was trying to kill Harry before and it turned out he was saving Harrys life remember ?She Banished a cushion and it flew across the room and landed in the box they were all supposed to be aiming at .Harry looked at Hermione thinking .it was true that Snape had saved his life once but the odd thing was Snape definitely loathed him just as hed loathed Harrys father when they had been at school together .Snape loved taking points from Harry and had certainly never missed an opportunity to give him punishments or even to suggest that he should be suspended from the school .I dont care what Moody says Hermione went on .Dumbledores not stupid .He was right to trust Hagrid and Professor Lupin even though loads of people wouldnt have given them jobs so why shouldnt he be right about Snape even if Snape is a bit evil said Ron promptly .Come on Hermione why are all these Dark wizard catchers searching his office then ?Why has Mr Crouch been pretending to be ill ?said Hermione ignoring Ron .Its a bit funny isnt it that he cant manage to come to the Yule Ball but he can get up here in the middle of the night when he wants to ?You just dont like Crouch because of that elf Winky said Ron sending a cushion soaring into the window .You just want to think Snapes up to something said Hermione sending her cushion zooming neatly into the box .I just want to know what Snape did with his first chance if hes on his second one said Harry grimly and his cushion to his very great surprise flew straight across the room and landed neatly on top of Hermione s .Obedient to Siriuss wish of hearing about anything odd at Hogwarts Harry sent him a letter by brown owl that night explaining all about Mr Crouch breaking into Snapes office and Moody and Snapes conversation .Then Harry turned his attention in earnest to the most urgent problem facing him how to survive underwater for an hour on the twenty fourth of February .Ron quite liked the idea of using the Summoning Charm again Harry had explained about Aqua Lungs and Ron couldnt see why Harry shouldnt Summon one from the nearest Muggle town .Hermione squashed this plan by pointing out that in the unlikely event that Harry managed to learn how to operate an AquaLung within the set limit of an hour he was sure to be disqualified for breaking the International Code of Wizarding Secrecy it was too much to hope that no Muggles would spot an Aqua Lung zooming across the countryside to Hogwarts .Of course the ideal solution would be for you to Transfigure yourself into a submarine or something Hermione said .If only wed done human Transfiguration already !But I dont think we start that until sixth year and it can go badly wrong if you dont know what youre doing .Yeah I dont fancy walking around with a periscope sticking out of my head said Harry .I spose I could always attack someone in front of Moody he might do it for me .I dont think hed let you choose what you wanted to be turned into though said Hermione seriously .No I think your best chance is some sort of charm .So Harry thinking that he would soon have had enough of the library to last him a lifetime buried himself once more among the dusty volumes looking for any spell that might enable a human to survive without oxygen .However though he Ron and Hermione searched through their lunchtimes evenings and whole weekends though Harry asked Professor McGonagall for a note of permission to use the Restricted Section and even asked the irritable vulturelike librarian Madam Pince for help they found nothing whatsoever that would enable Harry to spend an hour underwater and live to tell the tale .Familiar flutterings of panic were starting to disturb Harry now and he was finding it difficult to concentrate in class again .The lake which Harry had always taken for granted as just another feature of the grounds drew his eyes whenever he was near a classroom window a great irongray mass of chilly water whose dark and icy depths were starting to seem as distant as the moon .Just as it had before he faced the Horntail time was slipping away as though somebody had bewitched the clocks to go extrafast .There was a week to go before February the twentyfourth there was still time .there were five days to go he was bound to find something soon .three days to go please let me find something .please .With two days left Harry started to go off food again .The only good thing about breakfast on Monday was the return of the brown owl he had sent to Sirius .He pulled off the parchment unrolled it and saw the shortest letter Sirius had ever written to him .Send date of next Hogsmeade weekend by return owl .Harry turned the parchment over and looked at the back hoping to see something else but it was blank .Weekend after next whispered Hermione who had read the note over Harrys shoulder .Here take my quill and send this owl back straight away .Harry scribbled the dates down on the back of Siriuss letter tied it onto the brown owls leg and watched it take flight again .What had he expected ?Advice on how to survive underwater ?He had been so intent on telling Sirius all about Snape and Moody he had completely forgotten to mention the eggs clue .Whats he want to know about the next Hogsmeade weekend for ?said Ron .Dunno said Harry dully .The momentary happiness that had flared inside him at the sight of the owl had died .Come on .Care of Magical Creatures .Whether Hagrid was trying to make up for the Blast Ended Skrewts or because there were now only two skrewts left or because he was trying to prove he could do anything that Professor GrubblyPlank could Harry didnt know but Hagrid had been continuing her lessons on unicorns ever since hed returned to work .It turned out that Hagrid knew quite as much about unicorns as he did about monsters though it was clear that he found their lack of poisonous fangs disappointing .Today he had managed to capture two unicorn foals .Unlike fullgrown unicorns they were pure gold .Parvati and Lavender went into transports of delight at the sight of them and even Pansy Parkinson had to work hard to conceal how much she liked them .Easier ter spot than the adults Hagrid told the class .They turn silver when theyre abou two years old an they grow horns at aroun four .Don go pure white till theyre full grown round about seven .Theyre a bit more trustin when theyre babies .don mind boys so much .Cmon move in a bit yeh can pat em if yeh want .give em a few o these sugar lumps .You okay Harry ?Hagrid muttered moving aside slightly while most of the others swarmed around the baby unicorns .Yeah said Harry .Jus nervous eh ?said Hagrid .Bit said Harry .Harry said Hagrid clapping a massive hand on his shoulder so that Harrys knees buckled under its weight Idve bin worried before I saw yeh take on tha Horntail but I know now yeh can do anythin yeh set yer mind ter .Im not worried at all .Yehre goin ter be fine .Got yer clue worked out haven yeh ?Harry nodded but even as he did so an insane urge to confess that he didnt have any idea how to survive at the bottom of the lake for an hour came over him .He looked up at Hagrid perhaps he had to go into the lake sometimes to deal with the creatures in it ?He looked after everything else on the grounds after all Yehre goin ter win Hagrid growled patting Harrys shoulder again so that Harry actually felt himself sink a couple of inches into the soft ground .I know it .I can feel it .Yehre goin ter win Harry .Harry just couldnt bring himself to wipe the happy confident smile off Hagrid s face .Pretending he was interested in the young unicorns he forced a smile in return and moved forward to pat them with the others .By the evening before the second task Harry felt as though he were trapped in a nightmare .He was fully aware that even if by some miracle he managed to find a suitable spell hed have a real job mastering it overnight .How could he have let this happen ?Why hadnt he got to work on the eggs clue sooner ?Why had he ever let his mind wander in class what if a teacher had once mentioned how to breathe underwater ?He sat with Hermione and Ron in the library as the sun set outside tearing feverishly through page after page of spells hidden from one another by the massive piles of books on the desk in front of each of them .Harrys heart gave a huge leap every time he saw the word water on a page but more often than not it was merely Take two pints of water half a pound of shredded mandrake leaves and a newt .I dont reckon it can be done said Rons voice flatly from the other side of the table .Theres nothing .Nothing .Closest was that thing to dry up puddles and ponds that Drought Charm but that was nowhere near powerful enough to drain the lake .There must be something Hermione muttered moving a candle closer to her .Her eyes were so tired she was poring over the tiny print of Olde and Forgotten Bewitchments and Charmes with her nose about an inch from the page .Theyd never have set a task that was undoable .They have said Ron .Harry just go down to the lake tomorrow right stick your head in yell at the merpeople to give back whatever theyve nicked and see if they chuck it out .Best you can do mate .Theres a way of doing it !Hermione said crossly .There just has to be !She seemed to be taking the librarys lack of useful information on the subject as a personal insult it had never failed her before .I know what I should have done said Harry resting facedown on Saucy Tricks for Tricky Sorts .I shouldve learned to be an Animagus like Sirius .An Animagus was a wizard who could transform into an animal .Yeah you couldve turned into a goldfish any time you wanted !said Ron .Or a frog yawned Harry .He was exhausted .It takes years to become an Animagus and then you have to register yourself and everything said Hermione vaguely now squinting down the index of Weird Wizarding Dilemmas and Their Solutions .Professor McGonagall told us remember .youve got to register yourself with the Improper Use of Magic Office .what animal you become and your markings so you cant abuse it .Hermione I was joking said Harry wearily .I know I havent got a chance of turning into a frog by tomorrow morning .Oh this is no use Hermione said snapping shut Weird Wizarding Dilemmas .Who on earth wants to make their nose hair grow into ringlets ?I wouldnt mind said Fred Weasleys voice .Be a talking point wouldnt it ?Harry Ron and Hermione looked up .Fred and George had just emerged from behind some bookshelves .Whatre you two doing here ?Ron asked .Looking for you said George .McGonagall wants you Ron .And you Hermione .Why ?said Hermione looking surprised .Dunno .she was looking a bit grim though said Fred .Were supposed to take you down to her office said George .Ron and Hermione stared at Harry who felt his stomach drop .Was Professor McGonagall about to tell Ron and Hermione off ?Perhaps shed noticed how much they were helping him when he ought to be working out how to do the task alone ?Well meet you back in the common room Hermione told Harry as she got up to go with Ron both of them looked very anxious .Bring as many of these books as you can okay ?Right said Harry uneasily .By eight oclock Madam Pince had extinguished all the lamps and came to chivvy Harry out of the library .Staggering under the weight of as many books as he could carry Harry returned to the Gryffindor common room pulled a table into a corner and continued to search .There was nothing in Madcap Magic for Wacky Warlocks .nothing in A Guide to Medieval Sorcery .not one mention of underwater exploits in An Anthology of EighteenthCentury Charms or in Dreadful Denizens of the Deep or Powers You Never Knew You Had and What to Do with Them Now Youve Wised Up .Crookshanks crawled into Harrys lap and curled up purring deeply .The common room emptied slowly around Harry .People kept wishing him luck for the next morning in cheery confident voices like Hagrids all of them apparently convinced that he was about to pull off another stunning performance like the one he had managed in the first task .Harry couldnt answer them he just nodded feeling as though there were a golfball stuck in his throat .By ten to midnight he was alone in the room with Crookshanks .He had searched all the remaining books and Ron and Hermione had not come back .Its over he told himself .You cant do it .Youll just have to go down to the lake in the morning and tell the judges .He imagined himself explaining that he couldnt do the task .He pictured Bagmans look of roundeyed surprise Karkaroffs satisfied yellowtoothed smile .He could almost hear Fleur Delacour saying I knew it .e is too young e is only a little boy .He saw Malfoy flashing his POTTER STINKS badge at the front of the crowd saw Hagrids crestfallen disbelieving face .Forgetting that Crookshanks was on his lap Harry stood up very suddenly Crookshanks hissed angrily as he landed on the floor gave Harry a disgusted look and stalked away with his bottlebrush tail in the air but Harry was already hurrying up the spiral staircase to his dormitory .He would grab the Invisibility Cloak and go back to the library hed stay there all night if he had to .Lumos Harry whispered fifteen minutes later as he opened the library door .Wand tip alight he crept along the bookshelves pulling down more books books of hexes and charms books on merpeople and water monsters books on famous witches and wizards on magical inventions on anything at all that might include one passing reference to underwater survival .He carried them over to a table then set to work searching them by the narrow beam of his wand occasionally checking his watch .One in the morning .two in the morning .the only way he could keep going was to tell himself over and over again next book .in the next one .the next one The mermaid in the painting in the prefects bathroom was laughing .Harry was bobbing like a cork in bubbly water next to her rock while she held his Firebolt over his head .Come and get it !she giggled maliciously .Come on jump !I cant Harry panted snatching at the Firebolt and struggling not to sink .Give it to me !But she just poked him painfully in the side with the end of the broomstick laughing at him .That hurts get off ouch Harry Potter must wake up sir !Stop poking me Dobby must poke Harry Potter sir he must wake up !Harry opened his eyes .He was still in the library the Invisibility Cloak had slipped off his head as hed slept and the side of his face was stuck to the pages of Where Theres a Wand Theres a Way .He sat up straightening his glasses blinking in the bright daylight .Harry Potter needs to hurry !squeaked Dobby .The second task starts in ten minutes and Harry Potter Ten minutes ?Harry croaked .Ten ten minutes ?He looked down at his watch .Dobby was right .It was twenty past nine .A large dead weight seemed to fall through Harrys chest into his stomach .Hurry Harry Potter !squeaked Dobby plucking at Harrys sleeve .You is supposed to be down by the lake with the other champions sir !Its too late Dobby Harry said hopelessly .Im not doing the task I dont know how Harry Potter will do the task !squeaked the elf .Dobby knew Harry had not found the right book so Dobby did it for him !What ?said Harry .But you dont know what the second task is Dobby knows sir !Harry Potter has to go into the lake and find his Wheezy Find my what ?and take his Wheezy back from the merpeople !Whats a Wheezy ?Your Wheezy sir your Wheezy Wheezy who is giving Dobby his sweater !Dobby plucked at the shrunken maroon sweater he was now wearing over his shorts .What ?Harry gasped .Theyve got .theyve got Ron ?The thing Harry Potter will miss most sir !squeaked Dobby . ‘But past an hour ‘the prospects black Harry recited staring horrorstruck at the elf . ‘Too late its gone it wont come back .Dobby whatve I got to do ?You has to eat this sir !squeaked the elf and he put his hand in the pocket of his shorts and drew out a ball of what looked like slimy grayishgreen rat tails .Right before you go into the lake sir gillyweed !Whats it do ?said Harry staring at the gillyweed .It will make Harry Potter breathe underwater sir !Dobby said Harry frantically listen are you sure about this ?He couldnt quite forget that the last time Dobby had tried to help him he had ended up with no bones in his right arm .Dobby is quite sure sir !said the elf earnestly .Dobby hears things sir he is a houseelf he goes all over the castle as he lights the fires and mops the floors .Dobby heard Professor McGonagall and Professor Moody in the staffroom talking about the next task .Dobby cannot let Harry Potter lose his Wheezy !Harrys doubts vanished .Jumping to his feet he pulled off the Invisibility Cloak stuffed it into his bag grabbed the gillyweed and put it into his pocket then tore out of the library with Dobby at his heels .Dobby is supposed to be in the kitchens sir !Dobby squealed as they burst into the corridor .Dobby will be missed good luck Harry Potter sir good luck !See you later Dobby !Harry shouted and he sprinted along the corridor and down the stairs three at a time .The entrance hall contained a few lastminute stragglers all leaving the Great Hall after breakfast and heading through the double oak doors to watch the second task .They stared as Harry flashed past sending Colin and Dennis Creevey flying as he leapt down the stone steps and out onto the bright chilly grounds .As he pounded down the lawn he saw that the seats that had encircled the dragons enclosure in November were now ranged along the opposite bank rising in stands that were packed to the bursting point and reflected in the lake below .The excited babble of the crowd echoed strangely across the water as Harry ran flatout around the other side of the lake toward the judges who were sitting at another gold draped table at the waters edge .Cedric Fleur and Krum were beside the judges table watching Harry sprint toward them .‘Tm .here .Harry panted skidding to a halt in the mud and accidentally splattering Fleurs robes .Where have you been ?said a bossy disapproving voice .The tasks about to start !Harry looked around .Percy Weasley was sitting at the judges table Mr Crouch had failed to turn up again .Now now Percy !said Ludo Bagman who was looking intensely relieved to see Harry .Let him catch his breath !Dumbledore smiled at Harry but Karkaroff and Madame Maxime didnt look at all pleased to see him . .It was obvious from the looks on their faces that they had thought he wasnt going to turn up .Harry bent over hands on his knees gasping for breath he had a stitch in his side that felt as though he had a knife between his ribs but there was no time to get rid of it Ludo Bagman was now moving among the champions spacing them along the bank at intervals of ten feet .Harry was on the very end of the line next to Krum who was wearing swimming trunks and was holding his wand ready .All right Harry ?Bagman whispered as he moved Harry a few feet farther away from Krum .Know what youre going to do ?Yeah Harry panted massaging his ribs .Bagman gave Harrys shoulder a quick squeeze and returned to the judges table he pointed his wand at his throat as he had done at the World Cup said Sonorusl and his voice boomed out across the dark water toward the stands .Well all our champions are ready for the second task which will start on my whistle .They have precisely an hour to recover what has been taken from them .On the count of three then .One .two .three !The whistle echoed shrilly in the cold still air the stands erupted with cheers and applause without looking to see what the other champions were doing Harry pulled off his shoes and socks pulled the handful of gillyweed out of his pocket stuffed it into his mouth and waded out into the lake .It was so cold he felt the skin on his legs searing as though this were fire not icy water .His sodden robes weighed him down as he walked in deeper now the water was over his knees and his rapidly numbing feet were slipping over silt and flat slimy stones .He was chewing the gillyweed as hard and fast as he could it felt unpleasantly slimy and rubbery like octopus tentacles .Waistdeep in the freezing water he stopped swallowed and waited for something to happen .He could hear laughter in the crowd and knew he must look stupid walking into the lake without showing any sign of magical power .The part of him that was still dry was covered in goose pimples half immersed in the icy water a cruel breeze lifting his hair Harry started to shiver violently .He avoided looking at the stands the laughter was becoming louder and there were catcalls and jeering from the Slytherins .Then quite suddenly Harry felt as though an invisible pillow had been pressed over his mouth and nose .He tried to draw breath but it made his head spin his lungs were empty and he suddenly felt a piercing pain on either side of his neck Harry clapped his hands around his throat and felt two large slits just below his ears flapping in the cold air .He had gills .Without pausing to think he did the only thing that made sense he flung himself forward into the water .The first gulp of icy lake water felt like the breath of life .His head had stopped spinning he took another great gulp of water and felt it pass smoothly through his gills sending oxygen back to his brain .He stretched out his hands in front of him and stared at them .They looked green and ghostly under the water and they had become webbed .He twisted around and looked at his bare feet they had become elongated and the toes were webbed too It looked as though he had sprouted flippers .The water didnt feel icy anymore either .on the contrary he felt pleasantly cool and very light .Harry struck out once more marveling at how far and fast his flipperlike feet propelled him through the water and noticing how clearly he could see and how he no longer seemed to need to blink .He had soon swum so far into the lake that he could no longer see the bottom .He flipped over and dived into its depths .Silence pressed upon his ears as he soared over a strange dark foggy landscape .He could only see ten feet around him so that as he sped through the water new scenes seemed to loom suddenly out of the oncoming darkness forests of rippling tangled black weed wide plains of mud littered with dull glimmering stones .He swam deeper and deeper out toward the middle of the lake his eyes wide staring through the eerily graylit water around him to the shadows beyond where the water became opaque .Small fish flickered past him like silver darts .Once or twice he thought he saw something larger moving ahead of him but when he got nearer he discovered it to be nothing but a large blackened log or a dense clump of weed .There was no sign of any of the other champions merpeople Ron nor thankfully the giant squid .Light green weed stretched ahead of him as far as he could see two feet deep like a meadow of very overgrown grass .Harry was staring unblinkingly ahead of him trying to discern shapes through the gloom .and then without warning something grabbed hold of his ankle .Harry twisted his body around and saw a grindylow a small horned water demon poking out of the weed its long fingers clutched tightly around Harrys leg its pointed fangs bared Harry stuck his webbed hand quickly inside his robes and fumbled for his wand .By the time he had grasped it two more grindylows had risen out of the weed had seized handfuls of Harrys robes and were attempting to drag him down .Relashio Harry shouted except that no sound came out .A large bubble issued from his mouth and his wand instead of sending sparks at the grindylows pelted them with what seemed to be a jet of boiling water for where it struck them angry red patches appeared on their green skin .Harry pulled his ankle out of the grindylows grip and swam as fast as he could occasionally sending more jets of hot water over his shoulder at random every now and then he felt one of the grindylows snatch at his foot again and he kicked out hard finally he felt his foot connect with a horned skull and looking back saw the dazed grindylow floating away crosseyed while its fellows shook their fists at Harry and sank back into the weed .Harry slowed down a little slipped his wand back inside his robes and looked around listening again .He turned full circle in the water the silence pressing harder than ever against his eardrums .He knew he must be even deeper in the lake now but nothing was moving but the rippling weed .How are you getting on ?Harry thought he was having a heart attack .He whipped around and saw Moaning Myrtle floating hazily in front of him gazing at him through her thick pearly glasses .Myrtle !Harry tried to shout but once again nothing came out of his mouth but a very large bubble .Moaning Myrtle actually giggled .You want to try over there !she said pointing .I wont come with you .I dont like them much they always chase me when I get too close .Harry gave her the thumbsup to show his thanks and set off once more careful to swim a bit higher over the weed to avoid any more grindylows that might be lurking there .He swam on for what felt like at least twenty minutes .He was passing over vast expanses of black mud now which swirled murkily as he disturbed the water .Then at long last he heard a snatch of haunting mersong .An hour long youll have to look And to recover what we took .Harry swam faster and soon saw a large rock emerge out of the muddy water ahead .It had paintings of merpeople on it they were carrying spears and chasing what looked like the giant squid .Harry swam on past the rock following the mersong . .your times half gone so tarry not Lest what you seek stays here to rot .A cluster of crude stone dwellings stained with algae loomed suddenly out of the gloom on all sides .Here and there at the dark windows Harry saw faces .faces that bore no resemblance at all to the painting of the mermaid in the prefects bathroom .The merpeople had grayish skin and long wild dark green hair .Their eyes were yellow as were their broken teeth and they wore thick ropes of pebbles around their necks .They leered at Harry as he swam past one or two of them emerged from their caves to watch him better their powerful silver fish tails beating the water spears clutched in their hands .Harry sped on staring around and soon the dwellings became more numerous there were gardens of weed around some of them and he even saw a pet grindylow tied to a stake outside one door .Merpeople were emerging on all sides now watching him eagerly pointing at his webbed hands and gills talking behind their hands to one another .Harry sped around a corner and a very strange sight met his eyes .A whole crowd of merpeople was floating in front of the houses that lined what looked like a merversion of a village square .A choir of merpeople was singing in the middle calling the champions toward them and behind them rose a crude sort of statue a gigantic merperson hewn from a boulder .Four people were bound tightly to the tail of the stone merperson .Ron was tied between Hermione and Cho Chang .There was also a girl who looked no older than eight whose clouds of silvery hair made Harry feel sure that she was Fleur Delacours sister .All four of them appeared to be in a very deep sleep .Their heads were lolling onto their shoulders and fine streams of bubbles kept issuing from their mouths .Harry sped toward the hostages half expecting the merpeople to lower their spears and charge at him but they did nothing .The ropes of weed tying the hostages to the statue were thick slimy and very strong .For a fleeting second he thought of the knife Sirius had bought him for Christmas locked in his trunk in the castle a quarter of a mile away no use to him whatsoever .He looked around .Many of the merpeople surrounding them were carrying spears .He swam swiftly toward a sevenfoottall merman with a long green beard and a choker of shark fangs and tried to mime a request to borrow the spear .The merman laughed and shook his head .We do not help he said in a harsh croaky voice .Come ON Harry said fiercely but only bubbles issued from his mouth and he tried to pull the spear away from the merman but the merman yanked it back still shaking his head and laughing .Harry swirled around staring about .Something sharp .anything .There were rocks littering the lake bottom .He dived and snatched up a particularly jagged one and returned to the statue .He began to hack at the ropes binding Ron and after several minutes hard work they broke apart .Ron floated unconscious a few inches above the lake bottom drifting a little in the ebb of the water .Harry looked around .There was no sign of any of the other champions .What were they playing at ?Why didnt they hurry up ?He turned back to Hermione raised the jagged rock and began to hack at her bindings too At once several pairs of strong gray hands seized him .Half a dozen mermen were pulling him away from Hermione shaking their greenhaired heads and laughing .You take your own hostage one of them said to him .Leave the others .No way !said Harry furiously but only two large bubbles came out .Your task is to retrieve your own friend .leave the others .Shes my friend too !Harry yelled gesturing toward Hermione an enormous silver bubble emerging soundlessly from his lips .And I dont want them to die either !Chos head was on Hermione s shoulder the small silverhaired girl was ghostly green and pale .Harry struggled to fight off the mermen but they laughed harder than ever holding him back .Harry looked wildly around .Where were the other champions ?Would he have time to take Ron to the surface and come back down for Hermione and the others ?Would he be able to find them again ?He looked down at his watch to see how much time was left it had stopped working .But then the merpeople around him pointed excitedly over his head .Harry looked up and saw Cedric swimming toward them .There was an enormous bubble around his head which made his features look oddly wide and stretched .Got lost !he mouthed looking panicstricken .Fleur and Krumre coming now !Feeling enormously relieved Harry watched Cedric pull a knife out of his pocket and cut Cho free .He pulled her upward and out of sight .Harry looked around waiting .Where were Fleur and Krum ?Time was getting short and according to the song the hostages would be lost after an hour .The merpeople started screeching animatedly .Those holding Harry loosened their grip staring behind them .Harry turned and saw something monstrous cutting through the water toward them a human body in swimming trunks with the head of a shark .It was Krum .He appeared to have transfigured himself but badly .The sharkman swam straight to Hermione and began snapping and biting at her ropes the trouble was that Krums new teeth were positioned very awkwardly for biting anything smaller than a dolphin and Harry was quite sure that if Krum wasnt careful he was going to rip Hermione in half .Darting forward Harry hit Krum hard on the shoulder and held up the jagged stone .Krum seized it and began to cut Hermione free .Within seconds he had done it he grabbed Hermione around the waist and without a backward glance began to rise rapidly with her toward the surface .Now what ?Harry thought desperately .If he could be sure that Fleur was coming .But still no sign .There was nothing to be done except .He snatched up the stone which Krum had dropped but the mermen now closed in around Ron and the little girl shaking their heads at him .Harry pulled out his wand .Get out of the way !Only bubbles flew out of his mouth but he had the distinct impression that the mermen had understood him because they suddenly stopped laughing .Their yellowish eyes were fixed upon Harrys wand and they looked scared .There might be a lot more of them than there were of him but Harry could tell by the looks on their faces that they knew no more magic than the giant squid did .Youve got until three !Harry shouted a great stream of bubbles burst from him but he held up three fingers to make sure they got the message .One .he put down a finger two .he put down a second one They scattered .Harry darted forward and began to hack at the ropes binding the small girl to the statue and at last she was free .He seized the little girl around the waist grabbed the neck of Rons robes and kicked off from the bottom .It was very slow work .He could no longer use his webbed hands to propel himself forward he worked his flippers furiously but Ron and Fleurs sister were like potatofilled sacks dragging him back down .He fixed his eyes skyward though he knew he must still be very deep the water above him was so dark .Merpeople were rising with him .He could see them swirling around him with ease watching him struggle through the water .Would they pull him back down to the depths when the time was up ?Did they perhaps eat humans ?Harrys legs were seizing up with the effort to keep swimming his shoulders were aching horribly with the effort of dragging Ron and the girl .He was drawing breath with extreme difficulty .He could feel pain on the sides of his neck again .he was becoming very aware of how wet the water was in his mouth .yet the darkness was definitely thinning now .he could see daylight above him .He kicked hard with his flippers and discovered that they were nothing more than feet .water was flooding through his mouth into his lungs .he was starting to feel dizzy but he knew light and air were only ten feet above him .he had to get there .he had to .Harry kicked his legs so hard and fast it felt as though his muscles were screaming in protest his very brain felt waterlogged he couldnt breathe he needed oxygen he had to keep going he could not stop And then he felt his head break the surface of the lake wonderful cold clear air was making his wet face sting he gulped it down feeling as though he had never breathed properly before and panting pulled Ron and the little girl up with him .All around him wild greenhaired heads were emerging out of the water with him but they were smiling at him .The crowd in the stands was making a great deal of noise shouting and screaming they all seemed to be on their feet Harry had the impression they thought that Ron and the little girl might be dead but they were wrong .both of them had opened their eyes the girl looked scared and confused but Ron merely expelled a great spout of water blinked in the bright light turned to Harry and said Wet this isnt it ?Then he spotted Fleurs sister .What did you bring her for ?Fleur didnt turn up I couldnt leave her Harry panted .Harry you prat said Ron you didnt take that song thing seriously did you ?Dumbledore wouldnt have let any of us drown !The song said It was only to make sure you got back inside the time limit !said Ron .I hope you didnt waste time down there acting the hero !Harry felt both stupid and annoyed .It was all very well for Ron hed been asleep he hadnt felt how eerie it was down in the lake surrounded by spear carrying merpeople whod looked more than capable of murder .Cmon Harry said shortly help me with her I dont think she can swim very well .They pulled Fleurs sister through the water back toward the bank where the judges stood watching twenty merpeople accompanying them like a guard of honor singing their horrible screechy songs .Harry could see Madam Pomfrey fussing over Hermione Krum Cedric and Cho all of whom were wrapped in thick blankets .Dumbledore and Ludo Bagman stood beaming at Harry and Ron from the bank as they swam nearer but Percy who looked very white and somehow much younger than usual came splashing out to meet them .Meanwhile Madame Maxime was trying to restrain Fleur Delacour who was quite hysterical fighting tooth and nail to return to the water .Gabrielle !Gabrielle Is she alive ?Is she urt ?Shes fine !Harry tried to tell her but he was so exhausted he could hardly talk let alone shout .Percy seized Ron and was dragging him back to the bank Gerroff Percy Im all right !Dumbledore and Bagman were pulling Harry upright Fleur had broken free of Madame Maxime and was hugging her sister .It was ze grindylows .zey attacked me .oh Gabrielle I thought .I thought .Come here you said Madam Pomfrey .She seized Harry and pulled him over to Hermione and the others wrapped him so tightly in a blanket that he felt as though he were in a straitjacket and forced a measure of very hot potion down his throat .Steam gushed out of his ears .Harry well done !Hermione cried .You did it you found out how all by yourself !Well said Harry .He would have told her about Dobby but he had just noticed Karkaroff watching him .He was the only judge who had not left the table the only judge not showing signs of pleasure and relief that Harry Ron and Fleurs sister had got back safely .Yeah thats right said Harry raising his voice slightly so that Karkaroff could hear him .You haff a water beetle in your hair Hermown ninny said Krum .Harry had the impression that Krum was drawing her attention back onto himself perhaps to remind her that he had just rescued her from the lake but Hermione brushed away the beetle impatiently and said Youre well outside the time limit though Harry .Did it take you ages to find us ?No .I found you okay .Harrys feeling of stupidity was growing .Now he was out of the water it seemed perfectly clear that Dumbledores safety precautions wouldnt have permitted the death of a hostage just because their champion hadnt turned up .Why hadnt he just grabbed Ron and gone ?He would have been first back .Cedric and Krum hadnt wasted time worrying about anyone else they hadnt taken the mersong seriously .Dumbledore was crouching at the waters edge deep in conversation with what seemed to be the chief merperson a particularly wild and ferociouslooking female .He was making the same sort of screechy noises that the merpeople made when they were above water clearly Dumbledore could speak Mermish .Finally he straightened up turned to his fellow judges and said A conference before we give the marks I think .The judges went into a huddle .Madam Pomfrey had gone to rescue Ron from Percys clutches she led him over to Harry and the others gave him a blanket and some Pepperup Potion then went to fetch Fleur and her sister .Fleur had many cuts on her face and arms and her robes were torn but she didnt seem to care nor would she allow Madam Pomfrey to clean them .Look after Gabrielle she told her and then she turned to Harry .You saved er she said breathlessly .Even though she was not your ostage .Yeah said Harry who was now heartily wishing hed left all three girls tied to the statue .Fleur bent down kissed Harry twice on each cheek he felt his face burn and wouldnt have been surprised if steam was coming out of his ears again then said to Ron And you too you elped Yeah said Ron looking extremely hopeful yeah a bit Fleur swooped down on him too and kissed him .Hermione looked simply furious but just then Ludo Bagmans magically magnified voice boomed out beside them making them all jump and causing the crowd in the stands to go very quiet .Ladies and gentlemen we have reached our decision .Merchieftainess Murcus has told us exactly what happened at the bottom of the lake and we have therefore decided to award marks out of fifty for each of the champions as follows .Fleur Delacour though she demonstrated excellent use of the BubbleHead Charm was attacked by grindylows as she approached her goal and failed to retrieve her hostage .We award her twentyfive points .Applause from the stands .I deserved zero said Fleur throatily shaking her magnificent head .Cedric Diggory who also used the BubbleHead Charm was first to return with his hostage though he returned one minute outside the time limit of an hour .Enormous cheers from the Hufflepuffs in the crowd Harry saw Cho give Cedric a glowing look .We therefore award him fortyseven points .Harrys heart sank .If Cedric had been outside the time limit he most certainly had been .Viktor Krum used an incomplete form of Transfiguration which was nevertheless effective and was second to return with his hostage .We award him forty points .Karkaroff clapped particularly hard looking very superior .Harry Potter used gillyweed to great effect Bagman continued .He returned last and well outside the time limit of an hour .However the Merchieftainess informs us that Mr Potter was first to reach the hostages and that the delay in his return was due to his determination to return all hostages to safety not merely his own .Ron and Hermione both gave Harry halfexasperated halfcommiserating looks .Most of the judges and here Bagman gave Karkaroff a very nasty look feel that this shows moral fiber and merits full marks .However .Mr Potters score is fortyfive points .Harrys stomach leapt he was now tying for first place with Cedric .Ron and Hermione caught by surprise stared at Harry then laughed and started applauding hard with the rest of the crowd .There you go Harry !Ron shouted over the noise .You werent being thick after all you were showing moral fiber !Fleur was clapping very hard too but Krum didnt look happy at all .He attempted to engage Hermione in conversation again but she was too busy cheering Harry to listen .The third and final task will take place at dusk on the twentyfourth of June continued Bagman .The champions will be notified of what is coming precisely one month beforehand .Thank you all for your support of the champions .It was over Harry thought dazedly as Madam Pomfrey began herding the champions and hostages back to the castle to get into dry clothes .it was over he had got through .he didnt have to worry about anything now until June the twentyfourth .Next time he was in Hogsmeade Harry decided as he walked back up the stone steps into the castle he was going to buy Dobby a pair of socks for every day of the year .PADFOOT RETURNS One of the best things about the aftermath of the second task was that everybody was very keen to hear details of what had happened down in the lake which meant that Ron was getting to share Harrys limelight for once .Harry noticed that Rons version of events changed subtly with every retelling .At first he gave what seemed to be the truth it tallied with Hermiones story anyway Dumbledore had put all the hostages into a bewitched sleep in Professor McGonagalls office first assuring them that they would be quite safe and would awake when they were back above the water .One week later however Ron was telling a thrilling tale of kidnap in which he struggled singlehandedly against fifty heavily armed merpeople who had to beat him into submission before tying him up .But I had my wand hidden up my sleeve he assured Padma Patil who seemed to be a lot keener on Ron now that he was getting so much attention and was making a point of talking to him every time they passed in the corridors .I couldve taken those mer idiots any time I wanted .What were you going to do snore at them ?said Hermione waspishly .People had been teasing her so much about being the thing that Viktor Krum would most miss that she was in a rather tetchy mood .Rons ears went red and thereafter he reverted to the bewitched sleep version of events .As they entered March the weather became drier but cruel winds skinned their hands and faces every time they went out onto the grounds .There were delays in the post because the owls kept being blown off course .The brown owl that Harry had sent to Sirius with the dates of the Hogsmeade weekend turned up at breakfast on Friday morning with half its feathers sticking up the wrong way Harry had no sooner torn off Siriuss reply than it took flight clearly afraid it was going to be sent outside again .Siriuss letter was almost as short as the previous one .Be at stile at end of road out of Hogsmeade past Dervish and Banges at two oclock on Saturday afternoon .Bring as much food as you can .He hasnt come back to Hogsmeade ?said Ron incredulously .It looks like it doesnt it ?said Hermione .I cant believe him said Harry tensely if hes caught .Made it so far though hasnt he ?said Ron .And its not like the place is swarming with dementors anymore .Harry folded up the letter thinking .If he was honest with himself he really wanted to see Sirius again .He therefore approached the final lesson of the afternoon double Potions feeling considerably more cheerful than he usually did when descending the steps to the dungeons .Malfoy Crabbe and Goyle were standing in a huddle outside the classroom door with Pansy Parkinsons gang of Slytherin girls .All of them were looking at something Harry couldnt see and sniggering heartily .Pansys puglike face peered excitedly around Goyle s broad back as Harry Ron and Hermione approached .There they are there they are !she giggled and the knot of Slytherins broke apart .Harry saw that Pansy had a magazine in her hands Witch Weekly .The moving picture on the front showed a curlyhaired witch who was smiling toothily and pointing at a large sponge cake with her wand .You might find something to interest you in there Granger !Pansy said loudly and she threw the magazine at Hermione who caught it looking startled .At that moment the dungeon door opened and Snape beckoned them all inside .Hermione Harry and Ron headed for a table at the back of the dungeon as usual .Once Snape had turned his back on them to write up the ingredients of todays potion on the blackboard Hermione hastily rifled through the magazine under the desk .At last in the center pages Hermione found what they were looking for .Harry and Ron leaned in closer .A color photograph of Harry headed a short piece entitled Harry Potters Secret Heartache A boy like no other perhaps yet a boy suffering all the usual pangs of adolescence writes Rita Skeeter .Deprived of love since the tragic demise of his parents fourteenyearold Harry Potter thought he had found solace in his steady girlfriend at Hogwarts Muggle born Hermione Granger .Little did he know that he would shortly be suffering yet another emotional blow in a life already littered with personal loss .Miss Granger a plain but ambitious girl seems to have a taste for famous wizards that Harry alone cannot satisfy .Since the arrival at Hogwarts of Viktor Krum Bulgarian Seeker and hero of the last World Quidditch Cup Miss Granger has been toying with both boys affections .Krum who is openly smitten with the devious Miss Granger has already invited her to visit him in Bulgaria over the summer holidays and insists that he has never felt this way about any other girl .However it might not be Miss Grangers doubtful natural charms that have captured these unfortunate boys interest .Shes really ugly says Pansy Parkinson a pretty and vivacious fourthyear student but shed be well up to making a Love Potion shes quite brainy .I think thats how shes doing it .Love Potions are of course banned at Hogwarts and no doubt Albus Dumbledore will want to investigate these claims .In the meantime Harry Potters well wishers must hope that next time he bestows his heart on a worthier candidate .I told you !Ron hissed at Hermione as she stared down at the article .I told you not to annoy Rita Skeeter !Shes made you out to be some sort of of scarlet woman !Hermione stopped looking astonished and snorted with laughter .Scarlet woman ?she repeated shaking with suppressed giggles as she looked around at Ron .Its what my mum calls them Ron muttered his ears going red .If thats the best Rita can do shes losing her touch said Hermione still giggling as she threw Witch Weekly onto the empty chair beside her .What a pile of old rubbish .She looked over at the Slytherins who were all watching her and Harry closely across the room to see if they had been upset by the article .Hermione gave them a sarcastic smile and a wave and she Harry and Ron started unpacking the ingredients they would need for their WitSharpening Potion .Theres something funny though said Hermione ten minutes later holding her pestle suspended over a bowl of scarab beetles .How could Rita Skeeter have known . ?Known what ?said Ron quickly .You havent been mixing up Love Potions have you ?Dont be stupid Hermione snapped starting to pound up her beetles again .No its just .how did she know Viktor asked me to visit him over the summer ?Hermione blushed scarlet as she said this and determinedly avoided Rons eyes .What ?said Ron dropping his pestle with a loud clunk .He asked me right after hed pulled me out of the lake Hermione muttered .After hed got rid of his sharks head .Madam Pomfrey gave us both blankets and then he sort of pulled me away from the judges so they wouldnt hear and he said if I wasnt doing anything over the summer would I like to And what did you say ?said Ron who had picked up his pestle and was grinding it on the desk a good six inches from his bowl because he was looking at Hermione .And he did say hed never felt the same way about anyone else Hermione went on going so red now that Harry could almost feel the heat coming from her but how could Rita Skeeter have heard him ?She wasnt there .or was she ?Maybe she has got an Invisibility Cloak maybe she sneaked onto the grounds to watch the second task .And what did you say ?Ron repeated pounding his pestle down so hard that it dented the desk .Well I was too busy seeing whether you and Harry were okay to Fascinating though your social life undoubtedly is Miss Granger said an icy voice right behind them and all three of them jumped I must ask you not to discuss it in my class .Ten points from Gryffindor .Snape had glided over to their desk while they were talking .The whole class was now looking around at them Malfoy took the opportunity to flash POTTER STINKS across the dungeon at Harry .Ah .reading magazines under the table as well ?Snape added snatching up the copy of Witch Weekly .A further ten points from Gryffindor .oh but of course .Snapes black eyes glittered as they fell on Rita Skeeters article .Potter has to keep up with his press cuttings .The dungeon rang with the Slytherins laughter and an unpleasant smile curled Snapes thin mouth .To Harrys fury he began to read the article aloud . ‘Harry Potters Secret Heartache .dear dear Potter whats ailing you now ? ‘A boy like no other perhaps .Harry could feel his face burning .Snape was pausing at the end of every sentence to allow the Slytherins a hearty laugh .The article sounded ten times worse when read by Snape .Even Hermione was blushing scarlet now . ‘.Harry Potters wellwishers must hope that next time he bestows his heart upon a worthier candidate .How very touching sneered Snape rolling up the magazine to continued gales of laughter from the Slytherins .Well I think I had better separate the three of you so you can keep your minds on your potions rather than on your tangled love lives .Weasley you stay here .Miss Granger over there beside Miss Parkinson .Potter that table in front of my desk .Move .Now .Furious Harry threw his ingredients and his bag into his cauldron and dragged it up to the front of the dungeon to the empty table .Snape followed sat down at his desk and watched Harry unload his cauldron .Determined not to look at Snape Harry resumed the mashing of his scarab beetles imagining each one to have Snapes face .All this press attention seems to have inflated your already overlarge head Potter said Snape quietly once the rest of the class had settled down again .Harry didnt answer .He knew Snape was trying to provoke him he had done this before .No doubt he was hoping for an excuse to take a round fifty points from Gryffindor before the end of the class .You might be laboring under the delusion that the entire wizarding world is impressed with you Snape went on so quietly that no one else could hear him Harry continued to pound his scarab beetles even though he had already reduced them to a very fine powder but I dont care how many times your picture appears in the papers .To me Potter you are nothing but a nasty little boy who considers rules to be beneath him .Harry tipped the powdered beetles into his cauldron and started cutting up his ginger roots .His hands were shaking slightly out of anger but he kept his eyes down as though he couldnt hear what Snape was saying to him .So I give you fair warning Potter Snape continued in a softer and more dangerous voice pintsized celebrity or not if I catch you breaking into my office one more time I havent been anywhere near your office !said Harry angrily forgetting his feigned deafness .Dont lie to me Snape hissed his fathomless black eyes boring into Harrys .Boomslang skin .Gillyweed .Both come from my private stores and I know who stole them .Harry stared back at Snape determined not to blink or to look guilty .In truth he hadnt stolen either of these things from Snape .Hermione had taken the boomslang skin back in their second year they had needed it for the Polyjuice Potion and while Snape had suspected Harry at the time he had never been able to prove it .Dobby of course had stolen the gillyweed .I dont know what youre talking about Harry lied coldly .You were out of bed on the night my office was broken into !Snape hissed .I know it Potter !Now MadEye Moody might have joined your fan club but I will not tolerate your behavior !One more nighttime stroll into my office Potter and you will pay !Right said Harry coolly turning back to his ginger roots .Ill bear that in mind if I ever get the urge to go in there .Snapes eyes flashed .He plunged a hand into the inside of his black robes .For one wild moment Harry thought Snape was about to pull out his wand and curse him then he saw that Snape had drawn out a small crystal bottle of a completely clear potion .Harry stared at it .Do you know what this is Potter ?Snape said his eyes glittering dangerously again .No said Harry with complete honesty this time .It is Veritaserum a Truth Potion so powerful that three drops would have you spilling your innermost secrets for this entire class to hear said Snape viciously .Now the use of this potion is controlled by very strict Ministry guidelines .But unless you watch your step you might just find that my hand slips he shook the crystal bottle slightly right over your evening pumpkin juice .And then Potter .then well find out whether youve been in my office or not .Harry said nothing .He turned back to his ginger roots once more picked up his knife and started slicing them again .He didnt like the sound of that Truth Potion at all nor would he put it past Snape to slip him some .He repressed a shudder at the thought of what might come spilling out of his mouth if Snape did it .quite apart from landing a whole lot of people in trouble Hermione and Dobby for a start there were all the other things he was concealing .like the fact that he was in contact with Sirius .and his insides squirmed at the thought how he felt about Cho .He tipped his ginger roots into the cauldron too and wondered whether he ought to take a leaf out of Moodys book and start drinking only from a private hip flask .There was a knock on the dungeon door .Enter said Snape in his usual voice .The class looked around as the door opened .Professor Karkaroff came in .Everyone watched him as he walked up toward Snape s desk .He was twisting his finger around his goatee and looking agitated .We need to talk said Karkaroff abruptly when he had reached Snape .He seemed so determined that nobody should hear what he was saying that he was barely opening his lips it was as though he were a rather poor ventriloquist .Harry kept his eyes on his ginger roots listening hard .Ill talk to you after my lesson Karkaroff Snape muttered but Karkaroff interrupted him .I want to talk now while you cant slip off Severus .Youve been avoiding me .After the lesson Snape snapped .Under the pretext of holding up a measuring cup to see if hed poured out enough armadillo bile Harry sneaked a sidelong glance at the pair of them .Karkaroff looked extremely worried and Snape looked angry .Karkaroff hovered behind Snape s desk for the rest of the double period .He seemed intent on preventing Snape from slipping away at the end of class .Keen to hear what Karkaroff wanted to say Harry deliberately knocked over his bottle of armadillo bile with two minutes to go to the bell which gave him an excuse to duck down behind his cauldron and mop up while the rest of the class moved noisily toward the door .Whats so urgent ?he heard Snape hiss at Karkaroff .This said Karkaroff and Harry peering around the edge of his cauldron saw Karkaroff pull up the left hand sleeve of his robe and show Snape something on his inner forearm .Well ?said Karkaroff still making every effort not to move his lips .Do you see ?Its never been this clear never since Put it away !snarled Snape his black eyes sweeping the classroom .But you must have noticed Karkaroff began in an agitated voice .We can talk later Karkaroff !spat Snape .Potter !What are you doing ?Clearing up my armadillo bile Professor said Harry innocently straightening up and showing Snape the sodden rag he was holding .Karkaroff turned on his heel and strode out of the dungeon .He looked both worried and angry .Not wanting to remain alone with an exceptionally angry Snape Harry threw his books and ingredients back into his bag and left at top speed to tell Ron and Hermione what he had just witnessed .They left the castle at noon the next day to find a weak silver sun shining down upon the grounds .The weather was milder than it had been all year and by the time they arrived in Hogsmeade all three of them had taken off their cloaks and thrown them over their shoulders .The food Sirius had told them to bring was in Harrys bag they had sneaked a dozen chicken legs a loaf of bread and a flask of pumpkin juice from the lunch table .They went into Gladrags Wizardwear to buy a present for Dobby where they had fun selecting the most lurid socks they could find including a pair patterned with flashing gold and silver stars and another that screamed loudly when they became too smelly .Then at half past one they made their way up the High Street past Dervish and Banges and out toward the edge of the village .Harry had never been in this direction before .The winding lane was leading them out into the wild countryside around Hogsmeade .The cottages were fewer here and their gardens larger they were walking toward the foot of the mountain in whose shadow Hogsmeade lay .Then they turned a corner and saw a stile at the end of the lane .Waiting for them its front paws on the topmost bar was a very large shaggy black dog which was carrying some newspapers in its mouth and looking very familiar .Hello Sirius said Harry when they had reached him .The black dog sniffed Harrys bag eagerly wagged its tail once then turned and began to trot away from them across the scrubby patch of ground that rose to meet the rocky foot of the mountain .Harry Ron and Hermione climbed over the stile and followed .Sirius led them to the very foot of the mountain where the ground was covered with boulders and rocks .It was easy for him with his four paws but Harry Ron and Hermione were soon out of breath .They followed Sirius higher up onto the mountain itself .For nearly half an hour they climbed a steep winding and stony path following Siriuss wagging tail sweating in the sun the shoulder straps of Harrys bag cutting into his shoulders .Then at last Sirius slipped out of sight and when they reached the place where he had vanished they saw a narrow fissure in the rock .They squeezed into it and found themselves in a cool dimly lit cave .Tethered at the end of it one end of his rope around a large rock was Buckbeak the hippogriff .Half gray horse half giant eagle Buckbeaks fierce orange eye flashed at the sight of them .All three of them bowed low to him and after regarding them imperiously for a moment Buckbeak bent his scaly front knees and allowed Hermione to rush forward and stroke his feathery neck .Harry however was looking at the black dog which had just turned into his godfather .Sirius was wearing ragged gray robes the same ones he had been wearing when he had left Azkaban .His black hair was longer than it had been when he had appeared in the fire and it was untidy and matted once more .He looked very thin .Chicken !he said hoarsely after removing the old Daily Prophets from his mouth and throwing them down onto the cave floor .Harry pulled open his bag and handed over the bundle of chicken legs and bread .Thanks said Sirius opening it grabbing a drumstick sitting down on the cave floor and tearing off a large chunk with his teeth .Ive been living off rats mostly .Cant steal too much food from Hogsmeade Id draw attention to myself .He grinned up at Harry but Harry returned the grin only reluctantly .Whatre you doing here Sirius ?he said .Fulfilling my duty as godfather said Sirius gnawing on the chicken bone in a very doglike way .Dont worry about it Im pretending to be a lovable stray .He was still grinning but seeing the anxiety in Harrys face said more seriously I want to be on the spot .Your last letter .well lets just say things are getting fishier .Ive been stealing the paper every time someone throws one out and by the looks of things Im not the only one whos getting worried .He nodded at the yellowing Daily Prophets on the cave floor and Ron picked them up and unfolded them .Harry however continued to stare at Sirius .What if they catch you ?What if youre seen ?You three and Dumbledore are the only ones around here who know Im an Animagus said Sirius shrugging and continuing to devour the chicken leg .Ron nudged Harry and passed him the Daily Prophets .There were two The first bore the headline Mystery Illness of Bartemius Crouch the second Ministry Witch Still Missing Minister of Magic Now Personally Involved .Harry scanned the story about Crouch .Phrases jumped out at him hasnt been seen in public since November .house appears deserted .St .Mungos Hospital for Magical Maladies and Injuries decline comment .Ministry refuses to confirm rumors of critical illness .Theyre making it sound like hes dying said Harry slowly .But he cant be that ill if he managed to get up here .My brothers Crouchs personal assistant Ron informed Sirius .He says Crouch is suffering from overwork .Mind you he did look ill last time I saw him up close said Harry slowly still reading the story .The night my name came out of the goblet .Getting his comeuppance for sacking Winky isnt he ?said Hermione an edge to her voice .She was stroking Buckbeak who was crunching up Siriuss chicken bones .I bet he wishes he hadnt done it now bet he feels the difference now shes not there to look after him .Hermiones obsessed with houseelfs Ron muttered to Sirius casting Hermione a dark look .Sirius however looked interested .Crouch sacked his houseelf ?Yeah at the Quidditch World Cup said Harry and he launched into the story of the Dark Marks appearance and Winky being found with Harrys wand clutched in her hand and Mr Crouchs fury .When Harry had finished Sirius was on his feet again and had started pacing up and down the cave .Let me get this straight he said after a while brandishing a fresh chicken leg .You first saw the elf in the Top Box .She was saving Crouch a seat right ?Right said Harry Ron and Hermione together .But Crouch didnt turn up for the match ?No said Harry .I think he said hed been too busy .Sirius paced all around the cave in silence .Then he said Harry did you check your pockets for your wand after youd left the Top Box ?Erm .Harry thought hard .No he said finally .I didnt need to use it before we got in the forest .And then I put my hand in my pocket and all that was in there were my Omnioculars .He stared at Sirius .Are you saying whoever conjured the Mark stole my wand in the Top Box ?Its possible said Sirius .Winky didnt steal that wand !Hermione insisted .The elf wasnt the only one in that box said Sirius his brow furrowed as he continued to pace .Who else was sitting behind you ?Loads of people said Harry .Some Bulgarian ministers .Cornelius Fudge .the Malfoys .The Malfoys !said Ron suddenly so loudly that his voice echoed all around the cave and Buckbeak tossed his head nervously .I bet it was Lucius Malfoy !Anyone else ?said Sirius .No one said Harry .Yes there was there was Ludo Bagman Hermione reminded him .Oh yeah .I dont know anything about Bagman except that he used to be Beater for the Wimbourne Wasps said Sirius still pacing .Whats he like ?Hes okay said Harry .He keeps offering to help me with the Triwizard Tournament .Does he now ?said Sirius frowning more deeply .I wonder why hed do that ?Says hes taken a liking to me said Harry .Hmm said Sirius looking thoughtful .We saw him in the forest just before the Dark Mark appeared Hermione told Sirius .Remember ?she said to Harry and Ron .Yeah but he didnt stay in the forest did he ?said Ron .The moment we told him about the riot he went off to the campsite .How dyou know ?Hermione shot back .How dyou know where he Disapparated to ?Come off it said Ron incredulously .Are you saying you reckon Ludo Bagman conjured the Dark Mark ?Its more likely he did it than Winky said Hermione stubbornly .Told you said Ron looking meaningfully at Sirius told you shes obsessed with house But Sirius held up a hand to silence Ron .When the Dark Mark had been conjured and the elf had been discovered holding Harrys wand what did Crouch do ?Went to look in the bushes said Harry but there wasnt anyone else there .Of course Sirius muttered pacing up and down of course hed want to pin it on anyone but his own elf .and then he sacked her ?Yes said Hermione in a heated voice he sacked her just because she hadnt stayed in her tent and let herself get trampled Hermione will you give it a rest with the elf !said Ron .Sirius shook his head and said Shes got the measure of Crouch better than you have Ron .If you want to know what a mans like take a good look at how he treats his inferiors not his equals .He ran a hand over his unshaven face evidently thinking hard .All these absences of Barty Crouchs .he goes to the trouble of making sure his houseelf saves him a seat at the Quidditch World Cup but doesnt bother to turn up and watch .He works very hard to reinstate the Triwizard Tournament and then stops coming to that too .Its not like Crouch .If hes ever taken a day off work because of illness before this Ill eat Buckbeak .Dyou know Crouch then ?said Harry .Siriuss face darkened .He suddenly looked as menacing as he had the night when Harry first met him the night when Harry still believed Sirius to be a murderer .Oh I know Crouch all right he said quietly .He was the one who gave the order for me to be sent to Azkaban without a trial .What ?said Ron and Hermione together .Youre kidding !said Harry .No Im not said Sirius taking another great bite of chicken .Crouch used to be Head of the Department of Magical Law Enforcement didnt you know ?Harry Ron and Hermione shook their heads .He was tipped for the next Minister of Magic said Sirius .Hes a great wizard Barty Crouch powerfully magical and powerhungry .Oh never a Voldemort supporter he said reading the look on Harrys face .No Barty Crouch was always very outspoken against the Dark Side .But then a lot of people who were against the Dark Side .well you wouldnt understand .youre too young .Thats what my dad said at the World Cup said Ron with a trace of irritation in his voice .Try us why dont you ?A grin flashed across Siriuss thin face .All right Ill try you .He walked once up the cave back again and then said Imagine that Voldemorts powerful now .You dont know who his supporters are you dont know whos working for him and who isnt you know he can control people so that they do terrible things without being able to stop themselves .Youre scared for yourself and your family and your friends .Every week news comes of more deaths more disappearances more torturing .the Ministry of Magics in disarray they dont know what to do theyre trying to keep everything hidden from the Muggles but meanwhile Muggles are dying too .Terror everywhere .panic .confusion .thats how it used to be .Well times like that bring out the best in some people and the worst in others .Crouchs principles mightve been good in the beginning I wouldnt know .He rose quickly through the Ministry and he started ordering very harsh measures against Voldemorts supporters .The Aurors were given new powers powers to kill rather than capture for instance .And I wasnt the only one who was handed straight to the dementors without trial .Crouch fought violence with violence and authorized the use of the Unforgivable Curses against suspects .I would say he became as ruthless and cruel as many on the Dark Side .He had his supporters mind you plenty of people thought he was going about things the right way and there were a lot of witches and wizards clamoring for him to take over as Minister of Magic .When Voldemort disappeared it looked like only a matter of time until Crouch got the top job .But then something rather unfortunate happened .Sirius smiled grimly .Crouchs own son was caught with a group of Death Eaters whod managed to talk their way out of Azkaban .Apparently they were trying to find Voldemort and return him to power .Crouchs son was caught ?gasped Hermione .Yep said Sirius throwing his chicken bone to Buckbeak flinging himself back down on the ground beside the loaf of bread and tearing it in half .Nasty little shock for old Barty Id imagine .Should have spent a bit more time at home with his family shouldnt he ?Ought to have left the office early once in a while .gotten to know his own son .He began to wolf down large pieces of bread .Was his son a Death Eater ?said Harry .No idea said Sirius still stuffing down bread .I was in Azkaban myself when he was brought in .This is mostly stuff Ive found out since I got out .The boy was definitely caught in the company of people Id bet my life were Death Eaters but he might have been in the wrong place at the wrong time just like the houseelf .Did Crouch try and get his son off ?Hermione whispered .Sirius let out a laugh that was much more like a bark .Crouch let his son off ?I thought you had the measure of him Hermione !Anything that threatened to tarnish his reputation had to go he had dedicated his whole life to becoming Minister of Magic .You saw him dismiss a devoted houseelf because she associated him with the Dark Mark again doesnt that tell you what hes like ?Crouchs fatherly affection stretched just far enough to give his son a trial and by all accounts it wasnt much more than an excuse for Crouch to show how much he hated the boy .then he sent him straight to Azkaban .He gave his own son to the dementors ?asked Harry quietly .Thats right said Sirius and he didnt look remotely amused now .I saw the dementors bringing him in watched them through the bars in my cell door .He cant have been more than nineteen .They took him into a cell near mine .He was screaming for his mother by nightfall .He went quiet after a few days though .they all went quiet in the end .except when they shrieked in their sleep .For a moment the deadened look in Siriuss eyes became more pronounced than ever as though shutters had closed behind them .So hes still in Azkaban ?Harry said .No said Sirius dully .No hes not in there anymore .He died about a year after they brought him in .He died ?He wasnt the only one said Sirius bitterly .Most go mad in there and plenty stop eating in the end .They lose the will to live .You could always tell when a death was coming because the dementors could sense it they got excited .That boy looked pretty sickly when he arrived .Crouch being an important Ministry member he and his wife were allowed a deathbed visit .That was the last time I saw Barty Crouch half carrying his wife past my cell .She died herself apparently shortly afterward .Grief .Wasted away just like the boy .Crouch never came for his sons body .The dementors buried him outside the fortress I watched them do it .Sirius threw aside the bread he had just lifted to his mouth and instead picked up the flask of pumpkin juice and drained it .So old Crouch lost it all just when he thought he had it made he continued wiping his mouth with the back of his hand .One moment a hero poised to become Minister of Magic .next his son dead his wife dead the family name dishonored and so Ive heard since I escaped a big drop in popularity .Once the boy had died people started feeling a bit more sympathetic toward the son and started asking how a nice young lad from a good family had gone so badly astray .The conclusion was that his father never cared much for him .So Cornelius Fudge got the top job and Crouch was shunted sideways into the Department of International Magical Cooperation .There was a long silence .Harry was thinking of the way Crouchs eyes had bulged as hed looked down at his disobedient houseelf back in the wood at the Quidditch World Cup .This then must have been why Crouch had overreacted to Winky being found beneath the Dark Mark .It had brought back memories of his son and the old scandal and his fall from grace at the Ministry .Moody says Crouch is obsessed with catching Dark wizards Harry told Sirius .Yeah Ive heard its become a bit of a mania with him said Sirius nodding .If you ask me he still thinks he can bring back the old popularity by catching one more Death Eater .And he sneaked up here to search Snapes office !said Ron triumphantly looking at Hermione .Yes and that doesnt make sense at all said Sirius .Yeah it does !said Ron excitedly but Sirius shook his head .Listen if Crouch wants to investigate Snape why hasnt he been coming to judge the tournament ?It would be an ideal excuse to make regular visits to Hogwarts and keep an eye on him .So you think Snape could be up to something then ?asked Harry but Hermione broke in .Look I dont care what you say Dumbledore trusts Snape Oh give it a rest Hermione said Ron impatiently .I know Dumbledore s brilliant and everything but that doesnt mean a really clever Dark wizard couldnt fool him Why did Snape save Harrys life in the first year then ?Why didnt he just let him die ?I dunno maybe he thought Dumbledore would kick him out What dyou think Sirius ?Harry said loudly and Ron and Hermione stopped bickering to listen .I think theyve both got a point said Sirius looking thoughtfully at Ron and Hermione .Ever since I found out Snape was teaching here Ive wondered why Dumbledore hired him .Snape s always been fascinated by the Dark Arts he was famous for it at school .Slimy oily greasyhaired kid he was Sirius added and Harry and Ron grinned at each other .Snape knew more curses when he arrived at school than half the kids in seventh year and he was part of a gang of Slytherins who nearly all turned out to be Death Eaters .Sirius held up his fingers and began ticking off names .Rosier and Wilkes they were both killed by Aurors the year before Voldemort fell .The Lestranges theyre a married couple theyre in Azkaban .Avery from what Ive heard he wormed his way out of trouble by saying hed been acting under the Imperius Curse hes still at large .But as far as I know Snape was never even accused of being a Death Eater not that that means much .Plenty of them were never caught .And Snape s certainly clever and cunning enough to keep himself out of trouble .Snape knows Karkaroff pretty well but he wants to keep that quiet said Ron .Yeah you shouldve seen Snapes face when Karkaroff turned up in Potions yesterday !said Harry quickly .Karkaroff wanted to talk to Snape he says Snapes been avoiding him .Karkaroff looked really worried .He showed Snape something on his arm but I couldnt see what it was .He showed Snape something on his arm ?said Sirius looking frankly bewildered .He ran his fingers distractedly through his filthy hair then shrugged again .Well Ive no idea what thats about .but if Karkaroffs genuinely worried and hes going to Snape for answers .Sirius stared at the cave wall then made a grimace of frustration .Theres still the fact that Dumbledore trusts Snape and I know Dumbledore trusts where a lot of other people wouldnt but I just cant see him letting Snape teach at Hogwarts if hed ever worked for Voldemort .Why are Moody and Crouch so keen to get into Snape s office then ?said Ron stubbornly .Well said Sirius slowly I wouldnt put it past Mad Eye to have searched every single teachers office when he got to Hogwarts .He takes his Defense Against the Dark Arts seriously Moody .Im not sure he trusts anyone at all and after the things hes seen its not surprising .Ill say this for Moody though he never killed if he could help it .Always brought people in alive where possible .He was tough but he never descended to the level of the Death Eaters .Crouch though .hes a different matter .is he really ill ?If he is why did he make the effort to drag himself up to Snape s office ?And if hes not .whats he up to ?What was he doing at the World Cup that was so important he didnt turn up in the Top Box ?Whats he been doing while he should have been judging the tournament ?Sirius lapsed into silence still staring at the cave wall .Buckbeak was ferreting around on the rocky floor looking for bones he might have overlooked .Finally Sirius looked up at Ron .You say your brothers Crouchs personal assistant ?Any chance you could ask him if hes seen Crouch lately ?I can try said Ron doubtfully .Better not make it sound like I reckon Crouch is up to anything dodgy though .Percy loves Crouch .And you might try and find out whether theyve got any leads on Bertha Jorkins while youre at it said Sirius gesturing to the second copy of the Daily Prophet .Bagman told me they hadnt said Harry .Yes hes quoted in the article in there said Sirius nodding at the paper .Blustering on about how bad Berthas memory is .Well maybe shes changed since I knew her but the Bertha I knew wasnt forgetful at all quite the reverse .She was a bit dim but she had an excellent memory for gossip .It used to get her into a lot of trouble she never knew when to keep her mouth shut .I can see her being a bit of a liability at the Ministry of Magic .maybe thats why Bagman didnt bother to look for her for so long .Sirius heaved an enormous sigh and rubbed his shadowed eyes .Whats the time ?Harry checked his watch then remembered it hadnt been working since it had spent over an hour in the lake .Its half past three said Hermione .Youd better get back to school Sirius said getting to his feet .Now listen .He looked particularly hard at Harry .I dont want you lot sneaking out of school to see me all right ?Just send notes to me here .I still want to hear about anything odd .But youre not to go leaving Hogwarts without permission it would be an ideal opportunity for someone to attack you .No ones tried to attack me so far except a dragon and a couple of grindylows Harry said but Sirius scowled at him .I dont care .Ill breathe freely again when this tournaments over and thats not until June .And dont forget if youre talking about me among yourselves call me Snuffles okay ?He handed Harry the empty napkin and flask and went to pat Buckbeak goodbye .Ill walk to the edge of the village with you said Sirius see if I can scrounge another paper .He transformed into the great black dog before they left the cave and they walked back down the mountainside with him across the boulderstrewn ground and back to the stile .Here he allowed each of them to pat him on the head before turning and setting off at a run around the outskirts of the village .Harry Ron and Hermione made their way back into Hogsmeade and up toward Hogwarts .Wonder if Percy knows all that stuff about Crouch ?Ron said as they walked up the drive to the castle .But maybe he doesnt care .itd probably just make him admire Crouch even more .Yeah Percy loves rules .Hed just say Crouch was refusing to break them for his own son .Percy would never throw any of his family to the dementors said Hermione severely .I dont know said Ron .If he thought we were standing in the way of his career .Percys really ambitious you know .They walked up the stone steps into the entrance hall where the delicious smells of dinner wafted toward them from the Great Hall .Poor old Snuffles said Ron breathing deeply .He must really like you Harry .Imagine having to live off rats .THE MADNESS OF MR CROUCH Harry Ron and Hermione went up to the Owlery after breakfast on Sunday to send a letter to Percy asking as Sirius had suggested whether he had seen Mr Crouch lately .They used Hedwig because it had been so long since shed had a job .When they had watched her fly out of sight through the Owlery window they proceeded down to the kitchen to give Dobby his new socks .The houseelves gave them a very cheery welcome bowing and curtsying and bustling around making tea again .Dobby was ecstatic about his present .Harry Potter is too good to Dobby !he squeaked wiping large tears out of his enormous eyes .You saved my life with that gillyweed Dobby you really did said Harry .No chance of more of those eclairs is there ?said Ron who was looking around at the beaming and bowing houseelves .Youve just had breakfast !said Hermione irritably but a great silver platter of eclairs was already zooming toward them supported by four elves .We should get some stuff to send up to Snuffles Harry muttered .Good idea said Ron .Give Pig something to do .You couldnt give us a bit of extra food could you ?he said to the surrounding elves and they bowed delightedly and hurried off to get some more .Dobby wheres Winky ?said Hermione who was looking around .Winky is over there by the fire miss said Dobby quietly his ears drooping slightly .Oh dear said Hermione as she spotted Winky .Harry looked over at the fireplace too .Winky was sitting on the same stool as last time but she had allowed herself to become so filthy that she was not immediately distinguishable from the smoke blackened brick behind her .Her clothes were ragged and unwashed .She was clutching a bottle of butterbeer and swaying slightly on her stool staring into the fire .As they watched her she gave an enormous hiccup .Winky is getting through six bottles a day now Dobby whispered to Harry .Well its not strong that stuff Harry said .But Dobby shook his head .Tis strong for a house elf sir he said .Winky hiccuped again .The elves who had brought the eclairs gave her disapproving looks as they returned to work .Winky is pining Harry Potter Dobby whispered sadly .Winky wants to go home .Winky still thinks Mr Crouch is her master sir and nothing Dobby says will persuade her that Professor Dumbledore is her master now .Hey Winky said Harry struck by a sudden inspiration walking over to her and bending down you dont know what Mr Crouch might be up to do you ?Because hes stopped turning up to judge the Triwizard Tournament .Winkys eyes flickered .Her enormous pupils focused on Harry .She swayed slightly again and then said M Master is stopped hie coming ?Yeah said Harry we havent seen him since the first task .The Daily Prophets saying hes ill .Winky swayed some more staring blurrily at Harry .Master hie ill ?Her bottom lip began to tremble .But were not sure if thats true said Hermione quickly .Master is needing his hie Winky !whimpered the elf .Master cannot hie manage hie all by himself .Other people manage to do their own housework you know Winky Hermione said severely .Winky hie is not only hie doing housework for Mr Crouch !Winky squeaked indignantly swaying worse than ever and slopping butterbeer down her already heavily stained blouse .Master is hie trusting Winky with hie the most important hie the most secret What ?said Harry .But Winky shook her head very hard spilling more butterbeer down herself .Winky keeps hie her masters secrets she said mutinously swaying very heavily now frowning up at Harry with her eyes crossed .You is hie nosing you is .Winky must not talk like that to Harry Potter !said Dobby angrily .Harry Potter is brave and noble and Harry Potter is not nosy !He is nosing hie into my masters hie private and secret hie Winky is a good houseelf hie Winky keeps her silence hie people trying to hie pry and poke hie Winkys eyelids drooped and suddenly without warning she slid off her stool into the hearth snoring loudly .The empty bottle of butterbeer rolled away across the stoneflagged floor .Half a dozen house elves came hurrying forward looking disgusted .One of them picked up the bottle the others covered Winky with a large checked tablecloth and tucked the ends in neatly hiding her from view .We is sorry you had to see that sirs and miss !squeaked a nearby elf shaking his head and looking very ashamed .We is hoping you will not judge us all by Winky sirs and miss !Shes unhappy !said Hermione exasperated .Why dont you try and cheer her up instead of covering her up ?Begging your pardon miss said the houseelf bowing deeply again but houseelves has no right to be unhappy when there is work to be done and masters to be served .Oh for heavens sake !Hermione cried .Listen to me all of you !Youve got just as much right as wizards to be unhappy !Youve got the right to wages and holidays and proper clothes you dont have to do everything youre told look at Dobby !Miss will please keep Dobby out of this Dobby mumbled looking scared .The cheery smiles had vanished from the faces of the houseelves around the kitchen .They were suddenly looking at Hermione as though she were mad and dangerous .We has your extra food !squeaked an elf at Harrys elbow and he shoved a large ham a dozen cakes and some fruit into Harrys arms .Goodbye !The houseelves crowded around Harry Ron and Hermione and began shunting them out of the kitchen many little hands pushing in the smalls of their backs .Thank you for the socks Harry Potter !Dobby called miserably from the hearth where he was standing next to the lumpy tablecloth that was Winky .You couldnt keep your mouth shut could you Hermione ?said Ron angrily as the kitchen door slammed shut behind them .They wont want us visiting them now !We couldve tried to get more stuff out of Winky about Crouch !Oh as if you care about that !scoffed Hermione .You only like coming down here for the food !It was an irritable sort of day after that .Harry got so tired of Ron and Hermione sniping at each other over their homework in the common room that he took Siriuss food up to the Owlery that evening on his own .Pigwidgeon was much too small to carry an entire ham up to the mountain by himself so Harry enlisted the help of two school screech owls as well .When they had set off into the dusk looking extremely odd carrying the large package between them Harry leaned on the windowsill looking out at the grounds at the dark rustling treetops of the Forbidden Forest and the rippling sails of the Durmstrang ship .An eagle owl flew through the coil of smoke rising from Hagrids chimney it soared toward the castle around the Owlery and out of sight .Looking down Harry saw Hagrid digging energetically in front of his cabin .Harry wondered what he was doing it looked as though he were making a new vegetable patch .As he watched Madame Maxime emerged from the Beauxbatons carriage and walked over to Hagrid .She appeared to be trying to engage him in conversation .Hagrid leaned upon his spade but did not seem keen to prolong their talk because Madame Maxime returned to the carriage shortly afterward .Unwilling to go back to Gryffindor Tower and listen to Ron and Hermione snarling at each other Harry watched Hagrid digging until the darkness swallowed him and the owls around Harry began to awake swooshing past him into the night .By breakfast the next day Rons and Hermiones bad moods had burnt out and to Harrys relief Rons dark predictions that the houseelves would send substandard food up to the Gryffindor table because Hermione had insulted them proved false the bacon eggs and kippers were quite as good as usual .When the post owls arrived Hermione looked up eagerly she seemed to be expecting something .Percy wontve had time to answer yet said Ron .We only sent Hedwig yesterday .No its not that said Hermione .Ive taken out a subscription to the Daily Prophet Im getting sick of finding everything out from the Slytherins .Good thinking !said Harry also looking up at the owls .Hey Hermione I think youre in luck A gray owl was soaring down toward Hermione .It hasnt got a newspaper though she said looking disappointed .Its But to her bewilderment the gray owl landed in front of her plate closely followed by four barn owls a brown owl and a tawny .How many subscriptions did you take out ?said Harry seizing Hermione s goblet before it was knocked over by the cluster of owls all of whom were jostling close to her trying to deliver their own letter first .What on earth ?Hermione said taking the letter from the gray owl opening it and starting to read .Oh really !she sputtered going rather red .Whats up ?said Ron .Its oh how ridiculous She thrust the letter at Harry who saw that it was not handwritten but composed from pasted letters that seemed to have been cut out of the Daily Prophet .You are a WickEd giRL .HarRy PotTER desErves BeTteR .GO back wherE you cAMe from mUGgle .Theyre all like it !said Hermione desperately opening one letter after another . ‘Harry Potter can do much better than the likes of you . ‘You deserve to be boiled in frog spawn .Ouch !She had opened the last envelope and yellowish green liquid smelling strongly of petrol gushed over her hands which began to erupt in large yellow boils .Undiluted bubotuber pus !said Ron picking up the envelope gingerly and sniffing it .Ow !said Hermione tears starting in her eyes as she tried to rub the pus off her hands with a napkin but her fingers were now so thickly covered in painful sores that it looked as though she were wearing a pair of thick knobbly gloves .Youd better get up to the hospital wing said Harry as the owls around Hermione took flight .Well tell Professor Sprout where youve gone .I warned her !said Ron as Hermione hurried out of the Great Hall cradling her hands .I warned her not to annoy Rita Skeeter !Look at this one .He read out one of the letters Hermione had left behind ‘I read in Witch Weekly about how you are playing Harry Potter false and that boy has had enough hardship and I will be sending you a curse by next post as soon as I can find a big enough envelope .Blimey shed better watch out for herself .Hermione didnt turn up for Herbology .As Harry and Ron left the greenhouse for their Care of Magical Creatures class they saw Malfoy Crabbe and Goyle descending the stone steps of the castle .Pansy Parkinson was whispering and giggling behind them with her gang of Slytherin girls .Catching sight of Harry Pansy called Potter have you split up with your girlfriend ?Why was she so upset at breakfast ?Harry ignored her he didnt want to give her the satisfaction of knowing how much trouble the Witch Weekly article had caused .Hagrid who had told them last lesson that they had finished with unicorns was waiting for them outside his cabin with a fresh supply of open crates at his feet .Harrys heart sank at the sight of the crates surely not another skrewt hatching ?but when he got near enough to see inside he found himself looking at a number of fluffy black creatures with long snouts .Their front paws were curiously flat like spades and they were blinking up at the class looking politely puzzled at all the attention .Thesere nifflers said Hagrid when the class had gathered around .Yeh find em down mines mostly .They like sparkly stuff .There yeh go look .One of the nifflers had suddenly leapt up and attempted to bite Pansy Parkinsons watch off her wrist .She shrieked and jumped backward .Useful little treasure detectors said Hagrid happily .Thought wed have some fun with em today .See over there ?He pointed at the large patch of freshly turned earth Harry had watched him digging from the Owlery window .Ive buried some gold coins .Ive got a prize fer whoever picks the niffler that digs up most .Jus take off all yer valuables an choose a niffler an get ready ter set em loose .Harry took off his watch which he was only wearing out of habit as it didnt work anymore and stuffed it into his pocket .Then he picked up a niffler .It put its long snout in Harrys ear and sniffed enthusiastically .It was really quite cuddly .Hang on said Hagrid looking down into the crate theres a spare niffler here .whos missin ?Wheres Hermione ?She had to go to the hospital wing said Ron .Well explain later Harry muttered Pansy Parkinson was listening .It was easily the most fun they had ever had in Care of Magical Creatures .The nifflers dived in and out of the patch of earth as though it were water each scurrying back to the student who had released it and spitting gold into their hands .Rons was particularly efficient it had soon filled his lap with coins .Can you buy these as pets Hagrid ?he asked excitedly as his niffler dived back into the soil splattering his robes .Yer mum wouldn be happy Ron said Hagrid grinning .They wreck houses nifflers .I reckon theyve nearly got the lot now he added pacing around the patch of earth while the nifflers continued to dive .I ony buried a hundred coins .Oh there yare Hermione !Hermione was walking toward them across the lawn .Her hands were very heavily bandaged and she looked miserable .Pansy Parkinson was watching her beadily .Well lets check how yehve done !said Hagrid .Count yer coins !An theres no point tryin ter steal any Goyle he added his beetleblack eyes narrowed .Its leprechaun gold .Vanishes after a few hours .Goyle emptied his pockets looking extremely sulky .It turned out that Rons niffler had been most successful so Hagrid gave him an enormous slab of Honeydukes chocolate for a prize .The bell rang across the grounds for lunch the rest of the class set off back to the castle but Harry Ron and Hermione stayed behind to help Hagrid put the nifflers back in their boxes .Harry noticed Madame Maxime watching them out of her carriage window .What yeh done ter your hands Hermione ?said Hagrid looking concerned .Hermione told him about the hate mail she had received that morning and the envelope full of bubotuber pus .aah don worry said Hagrid gently looking down at her .I got some o those letters an all after Rita Skeeter wrote abou me mum . ‘Yehre a monster an yeh should be put down . ‘Yer mother killed innocent people an if you had any decency youd jump in a lake .No !said Hermione looking shocked .Yeah said Hagrid heaving the niffler crates over by his cabin wall .Theyre jus nutters Hermione .Don open em if yeh get any more .Chuck em straigh in the fire .You missed a really good lesson Harry told Hermione as they headed back toward the castle .Theyre good nifflers arent they Ron ?Ron however was frowning at the chocolate Hagrid had given him .He looked thoroughly put out about something .Whats the matter ?said Harry .Wrong flavor ?No said Ron shortly .Why didnt you tell me about the gold ?What gold ?said Harry .The gold I gave you at the Quidditch World Cup said Ron .The leprechaun gold I gave you for my Omnioculars .In the Top Box .Why didnt you tell me it disappeared ?Harry had to think for a moment before he realized what Ron was talking about .Oh .he said the memory coming back to him at last .I dunno .I never noticed it had gone .I was more worried about my wand wasnt I ?They climbed the steps into the entrance hall and went into the Great Hall for lunch .Must be nice Ron said abruptly when they had sat down and started serving themselves roast beef and Yorkshire puddings .To have so much money you dont notice if a pocketful of Galleons goes missing .Listen I had other stuff on my mind that night !said Harry impatiently .We all did remember ?I didnt know leprechaun gold vanishes Ron muttered .I thought I was paying you back .You shouldnt ve given me that Chudley Cannon hat for Christmas .Forget it all right ?said Harry .Ron speared a roast potato on the end of his fork glaring at it .Then he said I hate being poor .Harry and Hermione looked at each other .Neither of them really knew what to say .Its rubbish said Ron still glaring down at his potato .I dont blame Fred and George for trying to make some extra money .Wish I could .Wish I had a niffler .Well we know what to get you next Christmas said Hermione brightly .Then when Ron continued to look gloomy she said Come on Ron it could be worse .At least your fingers arent full of pus .Hermione was having a lot of difficulty managing her knife and fork her fingers were so stiff and swollen .I hate that Skeeter woman !she burst out savagely .Ill get her back for this if its the last thing I do !Hate mail continued to arrive for Hermione over the following week and although she followed Hagrids advice and stopped opening it several of her ill wishers sent Howlers which exploded at the Gryffindor table and shrieked insults at her for the whole Hall to hear .Even those people who didnt read Witch Weekly knew all about the supposed Harry KrumHermione triangle now .Harry was getting sick of telling people that Hermione wasnt his girlfriend .Itll die down though he told Hermione if we just ignore it .People got bored with that stuff she wrote about me last time I want to know how shes listening into private conversations when shes supposed to be banned from the grounds !said Hermione angrily .Hermione hung back in their next Defense Against the Dark Arts lesson to ask Professor Moody something .The rest of the class was very eager to leave Moody had given them such a rigorous test of hexdeflection that many of them were nursing small injuries .Harry had such a bad case of Twitchy Ears he had to hold his hands clamped over them as he walked away from the class .Well Ritas definitely not using an Invisibility Cloak !Hermione panted five minutes later catching up with Harry and Ron in the entrance hall and pulling Harrys hand away from one of his wiggling ears so that he could hear her .Moody says he didnt see her anywhere near the judges table at the second task or anywhere near the lake !Hermione is there any point in telling you to drop this ?said Ron .No !said Hermione stubbornly .I want to know how she heard me talking to Viktor !And how she found out about Hagrids mum !Maybe she had you bugged said Harry .Bugged ?said Ron blankly .What .put fleas on her or something ?Harry started explaining about hidden microphones and recording equipment .Ron was fascinated but Hermione interrupted them .Arent you two ever going to read Hogwarts A History ?Whats the point ?said Ron .You know it by heart we can just ask you .All those substitutes for magic Muggles use electricity computers and radar and all those things they all go haywire around Hogwarts theres too much magic in the air .No Ritas using magic to eavesdrop she must be .If I could just find out what it is .ooh if its illegal Ill have her .Havent we got enough to worry about ?Ron asked her .Do we have to start a vendetta against Rita Skeeter as well ?Im not asking you to help !Hermione snapped .Ill do it on my own !She marched back up the marble staircase without a backward glance .Harry was quite sure she was going to the library .Whats the betting she comes back with a box of Hate Rita Skeeter badges ?said Ron .Hermione however did not ask Harry and Ron to help her pursue vengeance against Rita Skeeter for which they were both grateful because their workload was mounting ever higher in the days before the Easter holidays .Harry frankly marveled at the fact that Hermione could research magical methods of eavesdropping as well as everything else they had to do .He was working flatout just to get through all their homework though he made a point of sending regular food packages up to the cave in the mountain for Sirius after last summer Harry had not forgotten what it felt like to be continually hungry .He enclosed notes to Sirius telling him that nothing out of the ordinary had happened and that they were still waiting for an answer from Percy .Hedwig didnt return until the end of the Easter holidays .Percys letter was enclosed in a package of Easter eggs that Mrs Weasley had sent .Both Harrys and Rons were the size of dragon eggs and full of homemade toffee .Hermiones however was smaller than a chicken egg .Her face fell when she saw it .Your mum doesnt read Witch Weekly by any chance does she Ron ?she asked quietly .Yeah said Ron whose mouth was full of toffee .Gets it for the recipes .Hermione looked sadly at her tiny egg .Dont you want to see what Percys written ?Harry asked her hastily .Percys letter was short and irritated .As I am constantly telling the Daily Prophet Mr Crouch is taking a welldeserved break .He is sending in regular owls with instructions .No I havent actually seen him but I think I can be trusted to know my own superiors handwriting .I have quite enough to do at the moment without trying to quash these ridiculous rumors .Please dont bother me again unless its something important .Happy Easter .The start of the summer term would normally have meant that Harry was training hard for the last Quidditch match of the season .This year however it was the third and final task in the Triwizard Tournament for which he needed to prepare but he still didnt know what he would have to do .Finally in the last week of May Professor McGonagall held him back in Transfiguration .You are to go down to the Quidditch field tonight at nine oclock Potter she told him .Mr Bagman will be there to tell the champions about the third task .So at half past eight that night Harry left Ron and Hermione in Gryffindor Tower and went downstairs .As he crossed the entrance hall Cedric came up from the Hufflepuff common room .What dyou reckon its going to be ?he asked Harry as they went together down the stone steps out into the cloudy night .Fleur keeps going on about underground tunnels she reckons weve got to find treasure .That wouldnt be too bad said Harry thinking that he would simply ask Hagrid for a niffler to do the job for him .They walked down the dark lawn to the Quidditch stadium turned through a gap in the stands and walked out onto the field .Whatve they done to it ?Cedric said indignantly stopping dead .The Quidditch field was no longer smooth and flat .It looked as though somebody had been building long low walls all over it that twisted and crisscrossed in every direction .Theyre hedges !said Harry bending to examine the nearest one .Hello there !called a cheery voice .Ludo Bagman was standing in the middle of the field with Krum and Fleur .Harry and Cedric made their way toward them climbing over the hedges .Fleur beamed at Harry as he came nearer .Her attitude toward him had changed completely since he had saved her sister from the lake .Well what dyou think ?said Bagman happily as Harry and Cedric climbed over the last hedge .Growing nicely arent they ?Give them a month and Hagridll have them twenty feet high .Dont worry he added grinning spotting the lessthanhappy expressions on Harrys and Cedrics faces youll have your Quidditch field back to normal once the task is over !Now I imagine you can guess what were making here ?No one spoke for a moment .Then Maze grunted Krum .Thats right !said Bagman .A maze .The third tasks really very straightforward .The Triwizard Cup will be placed in the center of the maze .The first champion to touch it will receive full marks .We seemply ave to get through the maze ?said Fleur .There will be obstacles said Bagman happily bouncing on the balls of his feet .Hagrid is providing a number of creatures .then there will be spells that must be broken .all that sort of thing you know .Now the champions who are leading on points will get a head start into the maze .Bagman grinned at Harry and Cedric .Then Mr Krum will enter .then Miss Delacour .But you 11 all be in with a fighting chance depending how well you get past the obstacles .Should be fun eh ?Harry who knew only too well the kind of creatures that Hagrid was likely to provide for an event like this thought it was unlikely to be any fun at all .However he nodded politely like the other champions .Very well .if you havent got any questions well go back up to the castle shall we its a bit chilly .Bagman hurried alongside Harry as they began to wend their way out of the growing maze .Harry had the feeling that Bagman was going to start offering to help him again but just then Krum tapped Harry on the shoulder .Could I haff a vord ?Yeah all right said Harry slightly surprised .Vill you valk vith me ?Okay said Harry curiously .Bagman looked slightly perturbed .Ill wait for you Harry shall I ?No its okay Mr Bagman said Harry suppressing a smile I think I can find the castle on my own thanks .Harry and Krum left the stadium together but Krum did not set a course for the Durmstrang ship .Instead he walked toward the forest .What re we going this way for ?said Harry as they passed Hagrids cabin and the illuminated Beauxbatons carriage .Dont vant to be overheard said Krum shortly .When at last they had reached a quiet stretch of ground a short way from the Beauxbatons horses paddock Krum stopped in the shade of the trees and turned to face Harry .I vant to know he said glowering vot there is between you and Hermyownninny .Harry who from Krums secretive manner had expected something much more serious than this stared up at Krum in amazement .Nothing he said .But Krum glowered at him and Harry somehow struck anew by how tall Krum was elaborated .Were friends .Shes not my girlfriend and she never has been .Its just that Skeeter woman making things up .Hermyownninny talks about you very often said Krum looking suspiciously at Harry .Yeah said Harry because were friends .He couldnt quite believe he was having this conversation with Viktor Krum the famous International Quidditch player .It was as though the eighteenyearold Krum thought he Harry was an equal a real rival You haff never .you haff not .No said Harry very firmly .Krum looked slightly happier .He stared at Harry for a few seconds then said You fly very veil .I vos votching at the first task .Thanks said Harry grinning broadly and suddenly feeling much taller himself .I saw you at the Quidditch World Cup .The Wronski Feint you really But something moved behind Krum in the trees and Harry who had some experience of the sort of thing that lurked in the forest instinctively grabbed Krums arm and pulled him around .Vot is it ?Harry shook his head staring at the place where hed seen movement .He slipped his hand inside his robes reaching for his wand .Suddenly a man staggered out from behind a tall oak .For a moment Harry didnt recognize him .then he realized it was Mr Crouch .He looked as though he had been traveling for days .The knees of his robes were ripped and bloody his face scratched he was unshaven and gray with exhaustion .His neat hair and mustache were both in need of a wash and a trim .His strange appearance however was nothing to the way he was behaving .Muttering and gesticulating Mr Crouch appeared to be talking to someone that he alone could see .He reminded Harry vividly of an old tramp he had seen once when out shopping with the Dursleys .That man too had been conversing wildly with thin air Aunt Petunia had seized Dudleys hand and pulled him across the road to avoid him Uncle Vernon had then treated the family to a long rant about what he would like to do with beggars and vagrants .Vosnt he a judge ?said Krum staring at Mr Crouch .Isnt he vith your Ministry ?Harry nodded hesitated for a moment then walked slowly toward Mr Crouch who did not look at him but continued to talk to a nearby tree . .and when youve done that Weatherby send an owl to Dumbledore confirming the number of Durmstrang students who will be attending the tournament Karkaroff has just sent word there will be twelve .Mr Crouch ?said Harry cautiously . .and then send another owl to Madame Maxime because she might want to up the number of students shes bringing now Karkaroffs made it a round dozen .do that Weatherby will you ?Will you ?Will .Mr Crouchs eyes were bulging .He stood staring at the tree muttering soundlessly at it .Then he staggered sideways and fell to his knees .Mr Crouch ?Harry said loudly .Are you all right ?Crouchs eyes were rolling in his head .Harry looked around at Krum who had followed him into the trees and was looking down at Crouch in alarm .Vot is wrong with him ?No idea Harry muttered .Listen youd better go and get someone Dumbledore !gasped Mr Crouch .He reached out and seized a handful of Harrys robes dragging him closer though his eyes were staring over Harrys head .I need .see .Dumbledore .Okay said Harry if you get up Mr Crouch we can go up to the Ive done .stupid .thing .Mr Crouch breathed .He looked utterly mad .His eyes were rolling and bulging and a trickle of spittle was sliding down his chin .Every word he spoke seemed to cost him a terrible effort .Must .tell .Dumbledore .Get up Mr Crouch said Harry loudly and clearly .Get up Ill take you to Dumbledore !Mr Crouchs eyes rolled forward onto Harry .Who .you ?he whispered .Im a student at the school said Harry looking around at Krum for some help but Krum was hanging back looking extremely nervous .Youre not .his ?whispered Crouch his mouth sagging .No said Harry without the faintest idea what Crouch was talking about .Dumbledore s ?Thats right said Harry .Crouch was pulling him closer Harry tried to loosen Crouchs grip on his robes but it was too powerful .Warn .Dumbledore .Ill get Dumbledore if you let go of me said Harry .Just let go Mr Crouch and Ill get him .Thank you Weatherby and when you have done that I would like a cup of tea .My wife and son will be arriving shortly we are attending a concert tonight with Mr and Mrs Fudge .Crouch was now talking fluently to a tree again and seemed completely unaware that Harry was there which surprised Harry so much he didnt notice that Crouch had released him .Yes my son has recently gained twelve O .W .L .s most satisfactory yes thank you yes very proud indeed .Now if you could bring me that memo from the Andorran Minister of Magic I think I will have time to draft a response .You stay here with him !Harry said to Krum .Ill get Dumbledore Ill be quicker I know where his office is He is mad said Krum doubtfully staring down at Crouch who was still gabbling to the tree apparently convinced it was Percy .Just stay with him said Harry starting to get up but his movement seemed to trigger another abrupt change in Mr Crouch who seized him hard around the knees and pulled Harry back to the ground .Dont .leave .me !he whispered his eyes bulging again .I .escaped .must warn .must tell .see Dumbledore .my fault .all my fault .Bertha .dead .all my fault .my son .my fault .tell Dumbledore .Harry Potter .the Dark Lord .stronger .Harry Potter .Ill get Dumbledore if you let me go Mr Crouch !said Harry .He looked furiously around at Krum .Help me will you ?Looking extremely apprehensive Krum moved forward and squatted down next to Mr Crouch .Just keep him here said Harry pulling himself free of Mr Crouch .Ill be back with Dumbledore .Hurry vont you ?Krum called after him as Harry sprinted away from the forest and up through the dark grounds .They were deserted Bagman Cedric and Fleur had disappeared .Harry tore up the stone steps through the oak front doors and off up the marble staircase toward the second floor .Five minutes later he was hurtling toward a stone gargoyle standing halfway along an empty corridor .Sher sherbet lemon !he panted at it .This was the password to the hidden staircase to Dumbledore s office or at least it had been two years ago .The password had evidently changed however for the stone gargoyle did not spring to life and jump aside but stood frozen glaring at Harry malevolently .Move !Harry shouted at it .Cmon !But nothing at Hogwarts had ever moved just because he shouted at it he knew it was no good .He looked up and down the dark corridor .Perhaps Dumbledore was in the staffroom ?He started running as fast as he could toward the staircase POTTER !Harry skidded to a halt and looked around .Snape had just emerged from the hidden staircase behind the stone gargoyle .The wall was sliding shut behind him even as he beckoned Harry back toward him .What are you doing here Potter ?I need to see Professor Dumbledore !said Harry running back up the corridor and skidding to a standstill in front of Snape instead .Its Mr Crouch .hes just turned up .hes in the forest .hes asking What is this rubbish ?said Snape his black eyes glittering .What are you talking about ?Mr Crouch !Harry shouted .From the Ministry !Hes ill or something hes in the forest he wants to see Dumbledore !Just give me the password up to The headmaster is busy Potter said Snape his thin mouth curling into an unpleasant smile .Ive got to tell Dumbledore !Harry yelled .Didnt you hear me Potter ?Harry could tell Snape was thoroughly enjoying himself denying Harry the thing he wanted when he was so panicky .Look said Harry angrily Crouch isnt right hes hes out of his mind he says he wants to warn The stone wall behind Snape slid open .Dumbledore was standing there wearing long green robes and a mildly curious expression .Is there a problem ?he said looking between Harry and Snape .Professor !Harry said sidestepping Snape before Snape could speak Mr Crouch is here hes down in the forest he wants to speak to you !Harry expected Dumbledore to ask questions but to his relief Dumbledore did nothing of the sort .Lead the way he said promptly and he swept off along the corridor behind Harry leaving Snape standing next to the gargoyle and looking twice as ugly .What did Mr Crouch say Harry ?said Dumbledore as they walked swiftly down the marble staircase .Said he wants to warn you .said hes done something terrible .he mentioned his son .and Bertha Jorkins .and and Voldemort .something about Voldemort getting stronger .Indeed said Dumbledore and he quickened his pace as they hurried out into the pitchdarkness .Hes not acting normally Harry said hurrying along beside Dumbledore .He doesnt seem to know where he is .He keeps talking like he thinks Percy Weasleys there and then he changes and says he needs to see you .I left him with Viktor Krum .You did ?said Dumbledore sharply and he began to take longer strides still so that Harry was running to keep up .Do you know if anybody else saw Mr Crouch ?No said Harry .Krum and I were talking Mr Bagman had just finished telling us about the third task we stayed behind and then we saw Mr Crouch coming out of the forest Where are they ?said Dumbledore as the Beauxbatons carriage emerged from the darkness .Over here said Harry moving in front of Dumbledore leading the way through the trees .He couldnt hear Crouchs voice anymore but he knew where he was going it hadnt been much past the Beauxbatons carriage .somewhere around here .Viktor ?Harry shouted .No one answered .They were here Harry said to Dumbledore .They were definitely somewhere around here .Lumos Dumbledore said lighting his wand and holding it up .Its narrow beam traveled from black trunk to black trunk illuminating the ground .And then it fell upon a pair of feet .Harry and Dumbledore hurried forward .Krum was sprawled on the forest floor .He seemed to be unconscious .There was no sign at all of Mr Crouch .Dumbledore bent over Krum and gently lifted one of his eyelids .Stunned he said softly .His halfmoon glasses glittered in the wandlight as he peered around at the surrounding trees .Should I go and get someone ?said Harry .Madam Pomfrey ?No said Dumbledore swiftly .Stay here .He raised his wand into the air and pointed it in the direction of Hagrid s cabin .Harry saw something silvery dart out of it and streak away through the trees like a ghostly bird .Then Dumbledore bent over Krum again pointed his wand at him and muttered Renneruate .Krum opened his eyes .He looked dazed .When he saw Dumbledore he tried to sit up but Dumbledore put a hand on his shoulder and made him lie still .He attacked me !Krum muttered putting a hand up to his head .The old madman attacked me !I vos looking around to see vare Potter had gone and he attacked from behind !Lie still for a moment Dumbledore said .The sound of thunderous footfalls reached them and Hagrid came panting into sight with Fang at his heels .He was carrying his crossbow .Professor Dumbledore !he said his eyes widening .Harry what the ?Hagrid I need you to fetch Professor Karkaroff said Dumbledore .His student has been attacked .When youve done that kindly alert Professor Moody No need Dumbledore said a wheezy growl .Im here .Moody was limping toward them leaning on his staff his wand lit .Damn leg he said furiously .Wouldve been here quicker .whats happened ?Snape said something about Crouch Crouch ?said Hagrid blankly .Karkaroff please Hagrid !said Dumbledore sharply .Oh yeah .right yare Professor .said Hagrid and he turned and disappeared into the dark trees Fang trotting after him .I dont know where Barty Crouch is Dumbledore told Moody but it is essential that we find him .Im onto it growled Moody and he pulled out his wand and limped off into the forest .Neither Dumbledore nor Harry spoke again until they heard the unmistakable sounds of Hagrid and Fang returning .Karkaroff was hurrying along behind them .He was wearing his sleek silver furs and he looked pale and agitated .What is this ?he cried when he saw Krum on the ground and Dumbledore and Harry beside him .Whats going on ?I vos attacked !said Krum sitting up now and rubbing his head .Mr Crouch or votever his name Crouch attacked you ?Crouch attacked you ?The Triwizard judge ?Igor Dumbledore began but Karkaroff had drawn himself up clutching his furs around him looking livid .Treachery !he bellowed pointing at Dumbledore .It is a plot !You and your Ministry of Magic have lured me here under false pretenses Dumbledore !This is not an equal competition !First you sneak Potter into the tournament though he is underage !Now one of your Ministry friends attempts to put my champion out of action !I smell doubledealing and corruption in this whole affair and you Dumbledore you with your talk of closer international wizarding links of rebuilding old ties of forgetting old differences heres what I think of you !Karkaroff spat onto the ground at Dumbledores feet .In one swift movement Hagrid seized the front of Karkaroffs furs lifted him into the air and slammed him against a nearby tree .Apologize !Hagrid snarled as Karkaroff gasped for breath Hagrids massive fist at his throat his feet dangling in midair .Hagrid no Dumbledore shouted his eyes flashing .Hagrid removed the hand pinning Karkaroff to the tree and Karkaroff slid all the way down the trunk and slumped in a huddle at its roots a few twigs and leaves showered down upon his head .Kindly escort Harry back up to the castle Hagrid said Dumbledore sharply .Breathing heavily Hagrid gave Karkaroff a glowering look .Maybe Id better stay here Headmaster .You will take Harry back to school Hagrid Dumbledore repeated firmly .Take him right up to Gryffindor Tower .And Harry I want you to stay there .Anything you might want to do any owls you might want to send they can wait until morning do you understand me ?Er yes said Harry staring at him .How had Dumbledore known that at that very moment he had been thinking about sending Pigwidgeon straight to Sirius to tell him what had happened ?Ill leave Fang with yeh Headmaster Hagrid said staring menacingly at Karkaroff who was still sprawled at the foot of the tree tangled in furs and tree roots .Stay Fang .Cmon Harry .They marched in silence past the Beauxbatons carriage and up toward the castle .How dare he Hagrid growled as they strode past the lake .How dare he accuse Dumbledore .Like Dumbledore d do anythin like that .Like Dumbledore wanted you in the tournament in the firs place .Worried !I dunno when I seen Dumbledore more worried than hes bin lately .An you !Hagrid suddenly said angrily to Harry who looked up at him taken aback .What were yeh doin wanderin off with ruddy Krum ?Hes from Durmstrang Harry !Coulda jinxed yeh right there couldn he ?Hasn Moody taught yeh nothin ?Magine lettin him lure yeh off on yer own Krums all right !said Harry as they climbed the steps into the entrance hall .He wasnt trying to jinx me he just wanted to talk about Hermione Ill be havin a few words with her an all said Hagrid grimly stomping up the stairs .The less you lot ave ter do with these foreigners the happier yehll be .Yeh can trust any of em .You were getting on all right with Madame Maxime Harry said annoyed .Don you talk ter me abou her !said Hagrid and he looked quite frightening for a moment .Ive got her number now !Tryin ter get back in me good books tryin ter get me ter tell her whats cornin in the third task .Ha !You can trust any of em !Hagrid was in such a bad mood Harry was quite glad to say goodbye to him in front of the Fat Lady .He clambered through the portrait hole into the common room and hurried straight for the corner where Ron and Hermione were sitting to tell them what had happened .z ?THE DREAM It comes down to this said Hermione rubbing her forehead .Either Mr Crouch attacked Viktor or somebody else attacked both of them when Viktor wasnt looking .It mustve been Crouch said Ron at once .Thats why he was gone when Harry and Dumbledore got there .Hed done a runner .I dont think so said Harry shaking his head .He seemed really weak I dont reckon he was up to Disapparating or anything .You cant Disapparate on the Hogwarts grounds havent I told you enough times ?said Hermione .Okay .hows this for a theory said Ron excitedly .Krum attacked Crouch no wait for it and then Stunned himself !And Mr Crouch evaporated did he ?said Hermione coldly .Oh yeah .It was daybreak .Harry Ron and Hermione had crept out of their dormitories very early and hurried up to the Owlery together to send a note to Sirius .Now they were standing looking out at the misty grounds .All three of them were puffyeyed and pale because they had been talking late into the night about Mr Crouch .Just go through it again Harry said Hermione .What did Mr Crouch actually say ?Ive told you he wasnt making much sense said Harry .He said he wanted to warn Dumbledore about something .He definitely mentioned Bertha Jorkins and he seemed to think she was dead .He kept saying stuff was his fault .He mentioned his son .Well that was his fault said Hermione testily .He was out of his mind said Harry .Half the time he seemed to think his wife and son were still alive and he kept talking to Percy about work and giving him instructions .And .remind me what he said about YouKnow Who ?said Ron tentatively .Ive told you Harry repeated dully .He said hes getting stronger .There was a pause .Then Ron said in a falsely confident voice But he was out of his mind like you said so half of it was probably just raving .He was sanest when he was trying to talk about Voldemort said Harry and Ron winced at the sound of the name .He was having real trouble stringing two words together but that was when he seemed to know where he was and know what he wanted to do .He just kept saying he had to see Dumbledore .Harry turned away from the window and stared up into the rafters .The many perches were halfempty every now and then another owl would swoop in through one of the windows returning from its nights hunting with a mouse in its beak .If Snape hadnt held me up Harry said bitterly we mightve got there in time .The headmaster is busy Potter .whats this rubbish Potter ?Why couldnt he have just got out of the way ?Maybe he didnt want you to get there !said Ron quickly .Maybe hang on how fast dyou reckon he couldve gotten down to the forest ?Dyou reckon he couldve beaten you and Dumbledore there ?Not unless he can turn himself into a bat or something said Harry .Wouldnt put it past him Ron muttered .We need to see Professor Moody said Hermione .We need to find out whether he found Mr Crouch .If he had the Marauders Map on him it wouldve been easy said Harry .Unless Crouch was already outside the grounds said Ron because it only shows up to the boundaries doesnt Shh !said Hermione suddenly .Somebody was climbing the steps up to the Owlery .Harry could hear two voices arguing coming closer and closer .thats blackmail that is we could get into a lot of trouble for that weve tried being polite its time to play dirty like him .He wouldnt like the Ministry of Magic knowing what he did Im telling you if you put that in writing its blackmail !Yeah and you wont be complaining if we get a nice fat payoff will you ?The Owlery door banged open .Fred and George came over the threshold then froze at the sight of Harry Ron and Hermione .Whatre you doing here ?Ron and Fred said at the same time .Sending a letter said Harry and George in unison .What at this time ?said Hermione and Fred .Fred grinned .Fine we wont ask you what youre doing if you dont ask us he said .He was holding a sealed envelope in his hands .Harry glanced at it but Fred whether accidentally or on purpose shifted his hand so that the name on it was covered .Well dont let us hold you up Fred said making a mock bow and pointing at the door .Ron didnt move .Whore you blackmailing ?he said .The grin vanished from Freds face .Harry saw George half glance at Fred before smiling at Ron .Dont be stupid I was only joking he said easily .Didnt sound like that said Ron .Fred and George looked at each other .Then Fred said abruptly Ive told you before Ron keep your nose out if you like it the shape it is .Cant see why you would but Its my business if youre blackmailing someone said Ron .Georges right you could end up in serious trouble for that .Told you I was joking said George .He walked over to Fred pulled the letter out of his hands and began attaching it to the leg of the nearest barn owl .Youre starting to sound a bit like our dear older brother you are Ron .Carry on like this and youll be made a prefect .No I wont !said Ron hotly .George carried the barn owl over to the window and it took off .George turned around and grinned at Ron .Well stop telling people what to do then .See you later .He and Fred left the Owlery .Harry Ron and Hermione stared at one another .You dont think they know something about all this do you ?Hermione whispered .About Crouch and everything ?No said Harry .If it was something that serious theyd tell someone .Theyd tell Dumbledore .Ron however was looking uncomfortable .Whats the matter ?Hermione asked him .Well .said Ron slowly I dunno if they would .Theyre .theyre obsessed with making money lately I noticed it when I was hanging around with them when you know We werent talking .Harry finished the sentence for him .Yeah but blackmail .Its this joke shop idea theyve got said Ron .I thought they were only saying it to annoy Mum but they really mean it they want to start one .Theyve only got a year left at Hogwarts they keep going on about how its time to think about their future and Dad cant help them and they need gold to get started .Hermione was looking uncomfortable now .Yes but .they wouldnt do anything against the law to get gold .Wouldnt they ?said Ron looking skeptical .I dunno .they dont exactly mind breaking rules do they ?Yes but this is the law said Hermione looking scared .This isnt some silly school rule .Theyll get a lot more than detention for blackmail !Ron .maybe youd better tell Percy .Are you mad ?said Ron .Tell Percy ?Hed probably do a Crouch and turn them in .He stared at the window through which Fred and Georges owl had departed then said Come on lets get some breakfast .Dyou think its too early to go and see Professor Moody ?Hermione said as they went down the spiral staircase .Yes said Harry .Hed probably blast us through the door if we wake him at the crack of dawn hell think were trying to attack him while hes asleep .Lets give it till break .History of Magic had rarely gone so slowly .Harry kept checking Rons watch having finally discarded his own but Rons was moving so slowly he could have sworn it had stopped working too .All three of them were so tired they could happily have put their heads down on the desks and slept even Hermione wasnt taking her usual notes but was sitting with her head on her hand gazing at Professor Binns with her eyes out of focus .When the bell finally rang they hurried out into the corridors toward the Dark Arts classroom and found Professor Moody leaving it .He looked as tired as they felt .The eyelid of his normal eye was drooping giving his face an even more lopsided appearance than usual .Professor Moody ?Harry called as they made their way toward him through the crowd .Hello Potter growled Moody .His magical eye followed a couple of passing first years who sped up looking nervous it rolled into the back of Moodys head and watched them around the corner before he spoke again .Come in here .He stood back to let them into his empty classroom limped in after them and closed the door .Did you find him ?Harry asked without preamble .Mr Crouch ?No said Moody .He moved over to his desk sat down stretched out his wooden leg with a slight groan and pulled out his hip flask .Did you use the map ?Harry said .Of course said Moody taking a swig from his flask .Took a leaf out of your book Potter .Summoned it from my office into the forest .He wasnt anywhere on there .So he did Disapparate ?said Ron .You cant Disapparate on the grounds Ron said Hermione .There are other ways he could have disappeared arent there Professor ?Moodys magical eye quivered as it rested on Hermione .Youre another one who might think about a career as an Auror he told her .Mind works the right way Granger .Hermione flushed pink with pleasure .Well he wasnt invisible said Harry .The map shows invisible people .He mustve left the grounds then .But under his own steam ?said Hermione eagerly or because someone made him ?Yeah someone couldve couldve pulled him onto a broom and flown off with him couldnt they ?said Ron quickly looking hopefully at Moody as if he too wanted to be told he had the makings of an Auror .We cant rule out kidnap growled Moody .So said Ron dyou reckon hes somewhere in Hogsmeade ?Could be anywhere said Moody shaking his head .Only thing we know for sure is that hes not here .He yawned widely so that his scars stretched and his lopsided mouth revealed a number of missing teeth .Then he said Now Dumbledores told me you three fancy yourselves as investigators but theres nothing you can do for Crouch .The Ministryll be looking for him now Dumbledores notified them .Potter you just keep your mind on the third task .What ?said Harry .Oh yeah .He hadnt given the maze a single thought since hed left it with Krum the previous night .Should be right up your street this one said Moody looking up at Harry and scratching his scarred and stubbly chin .From what Dumbledores said youve managed to get through stuff like this plenty of times .Broke your way through a series of obstacles guarding the Sorcerers Stone in your first year didnt you ?We helped Ron said quickly .Me and Hermione helped .Moody grinned .Well help him practice for this one and Ill be very surprised if he doesnt win said Moody .In the meantime .constant vigilance Potter .Constant vigilance .He took another long draw from his hip flask and his magical eye swiveled onto the window .The topmost sail of the Durmstrang ship was visible through it .You two counseled Moody his normal eye on Ron and Hermione you stick close to Potter all right ?Im keeping an eye on things but all the same .you can never have too many eyes out . •k k k Sirius sent their owl back the very next morning .It fluttered down beside Harry at the same moment that a tawny owl landed in front of Hermione clutching a copy of the Daily Prophet in its beak .She took the newspaper scanned the first few pages said Ha !She hasnt got wind of Crouch !then joined Ron and Harry in reading what Sirius had to say on the mysterious events of the night before last .Harry what do you think you are playing at walking off into the forest with Viktor Krum ?I want you to swear by return owl that you are not going to go walking with anyone else at night .There is somebody highly dangerous at Hogwarts .It is clear to me that they wanted to stop Crouch from seeing Dumbledore and you were probably feet away from them in the dark .You could have been killed .Your name didnt get into the Goblet of Fire by accident .If someones trying to attack you theyre on their last chance .Stay close to Ron and Hermione do not leave Gryffindor Tower after hours and arm yourself for the third task .Practice Stunning and Disarming .A few hexes wouldnt go amiss either .Theres nothing you can do about Crouch .Keep your head down and look after yourself .Im waiting for your letter giving me your word you wont stray outof bounds again .Sirius Whos he to lecture me about being outofbounds ?said Harry in mild indignation as he folded up Siriuss letter and put it inside his robes .After all the stuff he did at school !Hes worried about you !said Hermione sharply .Just like Moody and Hagrid !So listen to them !No ones tried to attack me all year said Harry .No ones done anything to me at all Except put your name in the Goblet of Fire said Hermione .And they mustve done that for a reason Harry .Snuffles is right .Maybe theyve been biding their time .Maybe this is the task theyre going to get you .Look said Harry impatiently lets say Sirius is right and someone Stunned Krum to kidnap Crouch .Well they wouldve been in the trees near us wouldnt they ?But they waited till I was out of the way until they acted didnt they ?So it doesnt look like Im their target does it ?They couldnt have made it look like an accident if theyd murdered you in the forest !said Hermione .But if you die during a task They didnt care about attacking Krum did they ?said Harry .Why didnt they just polish me off at the same time ?They couldve made it look like Krum and I had a duel or something .Harry I dont understand it either said Hermione desperately .I just know there are a lot of odd things going on and I dont like it .Moodys right Sirius is right youve got to get in training for the third task straight away .And you make sure you write back to Sirius and promise him youre not going to go sneaking off alone again .The Hogwarts grounds never looked more inviting than when Harry had to stay indoors .For the next few days he spent all of his free time either in the library with Hermione and Ron looking up hexes or else in empty classrooms which they sneaked into to practice .Harry was concentrating on the Stunning Spell which he had never used before .The trouble was that practicing it involved certain sacrifices on Rons and Hermione s part .Cant we kidnap Mrs Norris ?Ron suggested on Monday lunchtime as he lay flat on his back in the middle of their Charms classroom having just been Stunned and reawoken by Harry for the fifth time in a row .Lets Stun her for a bit .Or you could use Dobby Harry I bet hed do anything to help you .Im not complaining or anything he got gingerly to his feet rubbing his backside but Im aching all over .Well you keep missing the cushions dont you !said Hermione impatiently rearranging the pile of cushions they had used for the Banishing Spell which Flitwick had left in a cabinet .Just try and fall backward !Once youre Stunned you cant aim too well Hermione !said Ron angrily .Why dont you take a turn ?Well I think Harrys got it now anyway said Hermione hastily .And we dont have to worry about Disarming because hes been able to do that for ages . .I think we ought to start on some of these hexes this evening .She looked down the list they had made in the library .I like the look of this one she said this Impediment Curse .Should slow down anything thats trying to attack you Harry .Well start with that one .The bell rang .They hastily shoved the cushions back into Flitwicks cupboard and slipped out of the classroom .See you at dinner !said Hermione and she set off for Arithmancy while Harry and Ron headed toward North Tower and Divination .Broad strips of dazzling gold sunlight fell across the corridor from the high windows .The sky outside was so brightly blue it looked as though it had been enameled .Its going to be boiling in Trelawneys room she never puts out that fire said Ron as they started up the staircase toward the silver ladder and the trapdoor .He was quite right .The dimly lit room was swelteringly hot .The fumes from the perfumed fire were heavier than ever .Harrys head swam as he made his way over to one of the curtained windows .While Professor Trelawney was looking the other way disentangling her shawl from a lamp he opened it an inch or so and settled back in his chintz armchair so that a soft breeze played across his face .It was extremely comfortable .My dears said Professor Trelawney sitting down in her winged armchair in front of the class and peering around at them all with her strangely enlarged eyes we have almost finished our work on planetary divination .Today however will be an excellent opportunity to examine the effects of Mars for he is placed most interestingly at the present time .If you will all look this way I will dim the lights .She waved her wand and the lamps went out .The fire was the only source of light now .Professor Trelawney bent down and lifted from under her chair a miniature model of the solar system contained within a glass dome .It was a beautiful thing each of the moons glimmered in place around the nine planets and the fiery sun all of them hanging in thin air beneath the glass .Harry watched lazily as Professor Trelawney began to point out the fascinating angle Mars was making to Neptune .The heavily perfumed fumes washed over him and the breeze from the window played across his face .He could hear an insect humming gently somewhere behind the curtain .His eyelids began to droop .He was riding on the back of an eagle owl soaring through the clear blue sky toward an old ivycovered house set high on a hillside .Lower and lower they flew the wind blowing pleasantly in Harrys face until they reached a dark and broken window in the upper story of the house and entered .Now they were flying along a gloomy passageway to a room at the very end .through the door they went into a dark room whose windows were boarded up .Harry had left the owls back .he was watching now as it fluttered across the room into a chair with its back to him .There were two dark shapes on the floor beside the chair .both of them were stirring .One was a huge snake .the other was a man .a short balding man a man with watery eyes and a pointed nose .he was wheezing and sobbing on the hearth rug .You are in luck Wormtail said a cold highpitched voice from the depths of the chair in which the owl had landed .You are very fortunate indeed .Your blunder has not ruined everything .He is dead .My Lord !gasped the man on the floor .My Lord I am .1 am so pleased .and so sorry .Nagini said the cold voice you are out of luck .1 will not be feeding Wormtail to you after all .but never mind never mind .there is still Harry Potter .The snake hissed .Harry could see its tongue fluttering .Now Wormtail said the cold voice perhaps one more little reminder why I will not tolerate another blunder from you .My Lord .no .I beg you .The tip of a wand emerged from around the back of the chair ft was pointing at Wormtail .Crucio said the cold voice .Wormtail screamed screamed as though every nerve in his body were on fire the screaming filled Harrys ears as the scar on his forehead seared with pain he was yelling too .Voldemort would hear him would know he was there .Harry !Harry Harry opened his eyes .He was lying on the floor of Professor Trelawneys room with his hands over his face .His scar was still burning so badly that his eyes were watering .The pain had been real .The whole class was standing around him and Ron was kneeling next to him looking terrified .You all right ?he said .Of course he isnt !said Professor Trelawney looking thoroughly excited .Her great eyes loomed over Harry gazing at him .What was it Potter ?A premonition ?An apparition ?What did you see ?Nothing Harry lied .He sat up .He could feel himself shaking .He couldnt stop himself from looking around into the shadows behind him Voldemorts voice had sounded so close .You were clutching your scar !said Professor Trelawney .You were rolling on the floor clutching your scar !Come now Potter I have experience in these matters !Harry looked up at her .I need to go to the hospital wing I think he said .Bad headache .My dear you were undoubtedly stimulated by the extraordinary clairvoyant vibrations of my room !said Professor Trelawney If you leave now you may lose the opportunity to see further than you have ever I dont want to see anything except a headache cure said Harry .He stood up .The class backed away .They all looked unnerved .See you later Harry muttered to Ron and he picked up his bag and headed for the trapdoor ignoring Professor Trelawney who was wearing an expression of great frustration as though she had just been denied a real treat .When Harry reached the bottom of her stepladder however he did not set off for the hospital wing .He had no intention whatsoever of going there .Sirius had told him what to do if his scar hurt him again and Harry was going to follow his advice He was going straight to Dumbledores office .He marched down the corridors thinking about what he had seen in the dream .it had been as vivid as the one that had awoken him on Privet Drive .He ran over the details in his mind trying to make sure he could remember them .He had heard Voldemort accusing Wormtail of making a blunder .but the owl had brought good news the blunder had been repaired somebody was dead .so Wormtail was not going to be fed to the snake .he Harry was going to be fed to it instead .Harry had walked right past the stone gargoyle guarding the entrance to Dumbledores office without noticing .He blinked looked around realized what he had done and retraced his steps stopping in front of it .Then he remembered that he didnt know the password .Sherbet lemon ?he tried tentatively .The gargoyle did not move .Okay said Harry staring at it Pear Drop .Er Licorice Wand .Fizzing Whizbee .Droobles Best Blowing Gum .Bertie Botts Every Flavor Beans .oh no he doesnt like them does he ? .oh just open cant you ?he said angrily .I really need to see him its urgent !The gargoyle remained immovable .Harry kicked it achieving nothing but an excruciating pain in his big toe .Chocolate Frog !he yelled angrily standing on one leg .Sugar Quill !Cockroach Cluster !The gargoyle sprang to life and jumped aside .Harry blinked .Cockroach Cluster ?he said amazed .I was only joking .He hurried through the gap in the walls and stepped onto the foot of a spiral stone staircase which moved slowly upward as the doors closed behind him taking him up to a polished oak door with a brass door knocker .He could hear voices from inside the office .He stepped off the moving staircase and hesitated listening .Dumbledore Im afraid I dont see the connection dont see it at all !It was the voice of the Minister of Magic Cornelius Fudge .Ludo says Berthas perfectly capable of getting herself lost .I agree we would have expected to have found her by now but all the same weve no evidence of foul play Dumbledore none at all .As for her disappearance being linked with Barty Crouchs !And what do you thinks happened to Barty Crouch Minister ?said Moodys gvoice .I see two possibilities Alastor said Fudge .Either Crouch has finally cracked more than likely Im sure youll agree given his personal history lost his mind and gone wandering off somewhere He wandered extremely quickly if that is the case Cornelius said Dumbledore calmly .Or else well .Fudge sounded embarrassed .Well Ill reserve judgment until after Ive seen the place where he was found but you say it was just past the Beauxbatons carriage ?Dumbledore you know what that woman is ?I consider her to be a very able headmistress and an excellent dancer said Dumbledore quietly .Dumbledore come !said Fudge angrily .Dont you think you might be prejudiced in her favor because of Hagrid ?They dont all turn out harmless if indeed you can call Hagrid harmless with that monster fixation hes got I no more suspect Madame Maxime than Hagrid said Dumbledore just as calmly .I think it possible that it is you who are prejudiced Cornelius .Can we wrap up this discussion ?growled Moody .Yes yes lets go down to the grounds then said Fudge impatiently .No its not that said Moody its just that Potter wants a word with you Dumbledore .Hes just outside the door .THE PENSIEVE The door of the office opened .Hello Potter said Moody .Come in then .Harry walked inside .He had been inside Dumbledores office once before it was a very beautiful circular room lined with pictures of previous headmasters and headmistresses of Hogwarts all of whom were fast asleep their chests rising and falling gently .Cornelius Fudge was standing beside Dumbledores desk wearing his usual pinstriped cloak and holding his limegreen bowler hat .Harry !said Fudge jovially moving forward .How are you ?Fine Harry lied .We were just talking about the night when Mr Crouch turned up on the grounds said Fudge .It was you who found him was it not ?Yes said Harry .Then feeling it was pointless to pretend that he hadnt overheard what they had been saying he added I didnt see Madame Maxime anywhere though and shed have a job hiding wouldnt she ?Dumbledore smiled at Harry behind Fudges back his eyes twinkling .Yes well said Fudge looking embarrassed were about to go for a short walk on the grounds Harry if youll excuse us .perhaps if you just go back to your class I wanted to talk to you Professor Harry said quickly looking at Dumbledore who gave him a swift searching look .Wait here for me Harry he said .Our examination of the grounds will not take long .They trooped out in silence past him and closed the door .After a minute or so Harry heard the clunks of Moodys wooden leg growing fainter in the corridor below .He looked around .Hello Fawkes he said .Fawkes Professor Dumbledores phoenix was standing on his golden perch beside the door .The size of a swan with magnificent scarletandgold plumage he swished his long tail and blinked benignly at Harry .Harry sat down in a chair in front of Dumbledores desk .For several minutes he sat and watched the old headmasters and headmistresses snoozing in their frames thinking about what he had just heard and running his fingers over his scar .It had stopped hurting now .He felt much calmer somehow now that he was in Dumbledores office knowing he would shortly be telling him about the dream .Harry looked up at the walls behind the desk .The patched and ragged Sorting Hat was standing on a shelf .A glass case next to it held a magnificent silver sword with large rubies set into the hilt which Harry recognized as the one he himself had pulled out of the Sorting Hat in his second year .The sword had once belonged to Godric Gryffindor founder of Harrys House .He was gazing at it remembering how it had come to his aid when he had thought all hope was lost when he noticed a patch of silvery light dancing and shimmering on the glass case .He looked around for the source of the light and saw a sliver of silverwhite shining brightly from within a black cabinet behind him whose door had not been closed properly .Harry hesitated glanced at Fawkes then got up walked across the office and pulled open the cabinet door .A shallow stone basin lay there with odd carvings around the edge runes and symbols that Harry did not recognize .The silvery light was coming from the basins contents which were like nothing Harry had ever seen before .He could not tell whether the substance was liquid or gas .It was a bright whitish silver and it was moving ceaselessly the surface of it became ruffled like water beneath wind and then like clouds separated and swirled smoothly .It looked like light made liquid or like wind made solid Harry couldnt make up his mind .He wanted to touch it to find out what it felt like but nearly four years experience of the magical world told him that sticking his hand into a bowl full of some unknown substance was a very stupid thing to do .He therefore pulled his wand out of the inside of his robes cast a nervous look around the office looked back at the contents of the basin and prodded them .The surface of the silvery stuff inside the basin began to swirl very fast .Harry bent closer his head right inside the cabinet .The silvery substance had become transparent it looked like glass .He looked down into it expecting to see the stone bottom of the basin and saw instead an enormous room below the surface of the mysterious substance a room into which he seemed to be looking through a circular window in the ceiling .The room was dimly lit he thought it might even be underground for there were no windows merely torches in brackets such as the ones that illuminated the walls of Hogwarts .Lowering his face so that his nose was a mere inch away from the glassy substance Harry saw that rows and rows of witches and wizards were seated around every wall on what seemed to be benches rising in levels .An empty chair stood in the very center of the room .There was something about the chair that gave Harry an ominous feeling .Chains encircled the arms of it as though its occupants were usually tied to it .Where was this place ?It surely wasnt Hogwarts he had never seen a room like that here in the castle .Moreover the crowd in the mysterious room at the bottom of the basin was comprised of adults and Harry knew there were not nearly that many teachers at Hogwarts .They seemed he thought to be waiting for something even though he could only see the tops of their hats all of their faces seemed to be pointing in one direction and none of them were talking to one another .The basin being circular and the room he was observing square Harry could not make out what was going on in the corners of it .He leaned even closer tilting his head trying to see .The tip of his nose touched the strange substance into which he was staring .Dumbledores office gave an almighty lurch Harry was thrown forward and pitched headfirst into the substance inside the basin But his head did not hit the stone bottom .He was falling through something icycold and black it was like being sucked into a dark whirlpool And suddenly Harry found himself sitting on a bench at the end of the room inside the basin a bench raised high above the others .He looked up at the high stone ceiling expecting to see the circular window through which he had just been staring but there was nothing there but dark solid stone .Breathing hard and fast Harry looked around him .Not one of the witches and wizards in the room and there were at least two hundred of them was looking at him .Not one of them seemed to have noticed that a fourteenyear old boy had just dropped from the ceiling into their midst .Harry turned to the wizard next to him on the bench and uttered a loud cry of surprise that reverberated around the silent room .He was sitting right next to Albus Dumbledore .Professor !Harry said in a kind of strangled whisper .Im sorry I didnt mean to I was just looking at that basin in your cabinet I where are we ?But Dumbledore didnt move or speak .He ignored Harry completely .Like every other wizard on the benches he was staring into the far corner of the room where there was a door .Harry gazed nonplussed at Dumbledore then around at the silently watchful crowd then back at Dumbledore .And then it dawned on him .Once before Harry had found himself somewhere that nobody could see or hear him .That time he had fallen through a page in an enchanted diary right into somebody elses memory .and unless he was very much mistaken something of the sort had happened again .Harry raised his right hand hesitated and then waved it energetically in front of Dumbledore s face .Dumbledore did not blink look around at Harry or indeed move at all .And that in Harrys opinion settled the matter .Dumbledore wouldnt ignore him like that .He was inside a memory and this was not the presentday Dumbledore .Yet it couldnt be that long ago .the Dumbledore sitting next to him now was silverhaired just like the presentday Dumbledore .But what was this place ?What were all these wizards waiting for ?Harry looked around more carefully .The room as he had suspected when observing it from above was almost certainly underground more of a dungeon than a room he thought .There was a bleak and forbidding air about the place there were no pictures on the walls no decorations at all just these serried rows of benches rising in levels all around the room all positioned so that they had a clear view of that chair with the chains on its arms .Before Harry could reach any conclusions about the place in which they were he heard footsteps .The door in the corner of the dungeon opened and three people entered or at least one man flanked by two dementors .Harrys insides went cold .The dementors tall hooded creatures whose faces were concealed were gliding slowly toward the chair in the center of the room each grasping one of the mans arms with their dead and rottenlooking hands .The man between them looked as though he was about to faint and Harry couldnt blame him .he knew the dementors could not touch him inside a memory but he remembered their power only too well .The watching crowd recoiled slightly as the dementors placed the man in the chained chair and glided back out of the room .The door swung shut behind them .Harry looked down at the man now sitting in the chair and saw that it was Karkaroff .Unlike Dumbledore Karkaroff looked much younger his hair and goatee were black .He was not dressed in sleek furs but in thin and ragged robes .He was shaking .Even as Harry watched the chains on the arms of the chair glowed suddenly gold and snaked their way up Karkaroffs arms binding him there .Igor Karkaroff said a curt voice to Harrys left .Harry looked around and saw Mr Crouch standing up in the middle of the bench beside him .Crouchs hair was dark his face was much less lined he looked fit and alert .You have been brought from Azkaban to present evidence to the Ministry of Magic .You have given us to understand that you have important information for us .Karkaroff straightened himself as best he could tightly bound to the chair .I have sir he said and although his voice was very scared Harry could still hear the familiar unctuous note in it .I wish to be of use to the Ministry .I wish to help .I I know that the Ministry is trying to to round up the last of the Dark Lords supporters .I am eager to assist in any way I can .There was a murmur around the benches .Some of the wizards and witches were surveying Karkaroff with interest others with pronounced mistrust .Then Harry heard quite distinctly from Dumbledores other side a familiar gvoice saying Filth .Harry leaned forward so that he could see past Dumbledore .MadEye Moody was sitting there except that there was a very noticeable difference in his appearance .He did not have his magical eye but two normal ones .Both were looking down upon Karkaroff and both were narrowed in intense dislike .Crouch is going to let him out Moody breathed quietly to Dumbledore .Hes done a deal with him .Took me six months to track him down and Crouch is going to let him go if hes got enough new names .Lets hear his information I say and throw him straight back to the dementors .Dumbledore made a small noise of dissent through his long crooked nose .Ah I was forgetting .you dont like the dementors do you Albus ?said Moody with a sardonic smile .No said Dumbledore calmly Im afraid I dont .I have long felt the Ministry is wrong to ally itself with such creatures .But for filth like this .Moody said softly .You say you have names for us Karkaroff said Mr Crouch .Let us hear them please .You must understand said Karkaroff hurriedly that HeWhoMustNotBeNamed operated always in the greatest secrecy .He preferred that we I mean to say his supporters and I regret now very deeply that I ever counted myself among them Get on with it sneered Moody .we never knew the names of every one of our fellows He alone knew exactly who we all were Which was a wise move wasnt it as it prevented someone like you Karkaroff from turning all of them in muttered Moody .Yet you say you have some names for us ?said Mr Crouch .I I do said Karkaroff breathlessly .And these were important supporters mark you .People I saw with my own eyes doing his bidding .I give this information as a sign that I fully and totally renounce him and am filled with a remorse so deep I can barely These names are ?said Mr Crouch sharply .Karkaroff drew a deep breath .There was Antonin Dolohov he said .I I saw him torture countless Muggles and and nonsupporters of the Dark Lord .And helped him do it murmured Moody .We have already apprehended Dolohov said Crouch .He was caught shortly after yourself .Indeed ?said Karkaroff his eyes widening .I I am delighted to hear it !But he didnt look it .Harry could tell that this news had come as a real blow to him .One of his names was worthless .Any others ?said Crouch coldly .Why yes .there was Rosier said Karkaroff hurriedly .Evan Rosier .Rosier is dead said Crouch .He was caught shortly after you were too .He preferred to fight rather than come quietly and was killed in the struggle .Took a bit of me with him though whispered Moody to Harrys right .Harry looked around at him once more and saw him indicating the large chunk out of his nose to Dumbledore .No no more than Rosier deserved !said Karkaroff a real note of panic in his voice now .Harry could see that he was starting to worry that none of his information would be of any use to the Ministry .Karkaroffs eyes darted toward the door in the corner behind which the dementors undoubtedly still stood waiting .Any more ?said Crouch .Yes !said Karkaroff .There was Travers he helped murder the McKinnons !Mulciber he specialized in the Imperius Curse forced countless people to do horrific things !Rookwood who was a spy and passed HeWhoMustNotBeNamed useful information from inside the Ministry itself !Harry could tell that this time Karkaroff had struck gold .The watching crowd was all murmuring together .Rookwood ?said Mr Crouch nodding to a witch sitting in front of him who began scribbling upon her piece of parchment .Augustus Rookwood of the Department of Mysteries ?The very same said Karkaroff eagerly .I believe he used a network of wellplaced wizards both inside the Ministry and out to collect information But Travers and Mulciber we have said Mr Crouch .Very well Karkaroff if that is all you will be returned to Azkaban while we decide Not yet !cried Karkaroff looking quite desperate .Wait I have more !Harry could see him sweating in the torchlight his white skin contrasting strongly with the black of his hair and beard .Snape !he shouted .Severus Snape !Snape has been cleared by this council said Crouch disdainfully .He has been vouched for by Albus Dumbledore .No !shouted Karkaroff straining at the chains that bound him to the chair .I assure you !Severus Snape is a Death Eater !Dumbledore had gotten to his feet .I have given evidence already on this matter he said calmly .Severus Snape was indeed a Death Eater .However he rejoined our side before Lord Voldemorts downfall and turned spy for us at great personal risk .He is now no more a Death Eater than I am .Harry turned to look at MadEye Moody .He was wearing a look of deep skepticism behind Dumbledore s back .Very well Karkaroff Crouch said coldly you have been of assistance .I shall review your case .You will return to Azkaban in the meantime .Mr Crouchs voice faded .Harry looked around the dungeon was dissolving as though it were made of smoke everything was fading he could see only his own body all else was swirling darkness .And then the dungeon returned .Harry was sitting in a different seat still on the highest bench but now to the left side of Mr Crouch .The atmosphere seemed quite different relaxed even cheerful .The witches and wizards all around the walls were talking to one another almost as though they were at some sort of sporting event .Harry noticed a witch halfway up the rows of benches opposite .She had short blonde hair was wearing magenta robes and was sucking the end of an acidgreen quill .It was unmistakably a younger Rita Skeeter .Harry looked around Dumbledore was sitting beside him again wearing different robes .Mr Crouch looked more tired and somehow fiercer gaunter .Harry understood .It was a different memory a different day .a different trial .The door in the corner opened and Ludo Bagman walked into the room .This was not however a Ludo Bagman gone to seed but a Ludo Bagman who was clearly at the height of his Quidditchplaying fitness .His nose wasnt broken now he was tall and lean and muscular .Bagman looked nervous as he sat down in the chained chair but it did not bind him there as it had bound Karkaroff and Bagman perhaps taking heart from this glanced around at the watching crowd waved at a couple of them and managed a small smile .Ludo Bagman you have been brought here in front of the Council of Magical Law to answer charges relating to the activities of the Death Eaters said Mr Crouch .We have heard the evidence against you and are about to reach our verdict .Do you have anything to add to your testimony before we pronounce judgment ?Harry couldnt believe his ears .Ludo Bagman a Death Eater ?Only said Bagman smiling awkwardly well I know Ive been a bit of an idiot One or two wizards and witches in the surrounding seats smiled indulgently .Mr Crouch did not appear to share their feelings .He was staring down at Ludo Bagman with an expression of the utmost severity and dislike .You never spoke a truer word boy someone muttered dryly to Dumbledore behind Harry .He looked around and saw Moody sitting there again .If I didnt know hed always been dim Id have said some of those Bludgers had permanently affected his brain .Ludovic Bagman you were caught passing information to Lord Voldemorts supporters said Mr Crouch .For this I suggest a term of imprisonment in Azkaban lasting no less than But there was an angry outcry from the surrounding benches .Several of the witches and wizards around the walls stood up shaking their heads and even their fists at Mr Crouch .But Ive told you I had no idea !Bagman called earnestly over the crowds babble his round blue eyes widening .None at all !Old Rookwood was a friend of my dads .never crossed my mind he was in with YouKnowWho !I thought I was collecting information for our side !And Rookwood kept talking about getting me a job in the Ministry later on .once my Quidditch days are over you know .I mean I cant keep getting hit by Bludgers for the rest of my life can I ?There were titters from the crowd .It will be put to the vote said Mr Crouch coldly .He turned to the righthand side of the dungeon .The jury will please raise their hands .those in favor of imprisonment .Harry looked toward the righthand side of the dungeon .Not one person raised their hand .Many of the witches and wizards around the walls began to clap .One of the witches on the jury stood up .Yes ?barked Crouch .Wed just like to congratulate Mr Bagman on his splendid performance for England in the Quidditch match against Turkey last Saturday the witch said breathlessly .Mr Crouch looked furious .The dungeon was ringing with applause now .Bagman got to his feet and bowed beaming .Despicable Mr Crouch spat at Dumbledore sitting down as Bagman walked out of the dungeon .Rookwood get him a job indeed .The day Ludo Bagman joins us will be a sad day indeed for the Ministry .And the dungeon dissolved again .When it had returned Harry looked around .He and Dumbledore were still sitting beside Mr Crouch but the atmosphere could not have been more different .There was total silence broken only by the dry sobs of a frail wispylooking witch in the seat next to Mr Crouch .She was clutching a handkerchief to her mouth with trembling hands .Harry looked up at Crouch and saw that he looked gaunter and grayer than ever before .A nerve was twitching in his temple .Bring them in he said and his voice echoed through the silent dungeon .The door in the corner opened yet again .Six dementors entered this time flanking a group of four people .Harry saw the people in the crowd turn to look up at Mr Crouch .A few of them whispered to one another .The dementors placed each of the four people in the four chairs with chained arms that now stood on the dungeon floor .There was a thickset man who stared blankly up at Crouch a thinner and more nervous looking man whose eyes were darting around the crowd a woman with thick shining dark hair and heavily hooded eyes who was sitting in the chained chair as though it were a throne and a boy in his late teens who looked nothing short of petrified .He was shivering his strawcolored hair all over his face his freckled skin milkwhite .The wispy little witch beside Crouch began to rock backward and forward in her seat whimpering into her handkerchief .Crouch stood up .He looked down upon the four in front of him and there was pure hatred in his face .You have been brought here before the Council of Magical Law he said clearly so that we may pass judgment on you for a crime so heinous Father said the boy with the strawcolored hair .Father .please .that we have rarely heard the like of it within this court said Crouch speaking more loudly drowning out his sons voice .We have heard the evidence against you .The four of you stand accused of capturing an Auror Frank Longbottom and subjecting him to the Cruciatus Curse believing him to have knowledge of the present whereabouts of your exiled master HeWhoMustNotBeNamed Father I didnt !shrieked the boy in chains below .I didnt I swear it Father dont send me back to the dementors You are further accused bellowed Mr Crouch of using the Cruciatus Curse on Frank Longbottoms wife when he would not give you information .You planned to restore HeWhoMustNotBeNamed to power and to resume the lives of violence you presumably led while he was strong .I now ask the jury Mother !screamed the boy below and the wispy little witch beside Crouch began to sob rocking backward and forward .Mother stop him Mother I didnt do it it wasnt me !I now ask the jury shouted Mr Crouch to raise their hands if they believe as I do that these crimes deserve a life sentence in Azkaban !In unison the witches and wizards along the right hand side of the dungeon raised their hands .The crowd around the walls began to clap as it had for Bagman their faces full of savage triumph .The boy began to scream .No !Mother no !I didnt do it I didnt do it I didnt know !Dont send me there dont let him !The dementors were gliding back into the room .The boys three companions rose quietly from their seats the woman with the heavylidded eyes looked up at Crouch and called The Dark Lord will rise again Crouch !Throw us into Azkaban we will wait !He will rise again and will come for us he will reward us beyond any of his other supporters !We alone were faithful !We alone tried to find him !But the boy was trying to fight off the dementors even though Harry could see their cold draining power starting to affect him .The crowd was jeering some of them on their feet as the woman swept out of the dungeon and the boy continued to struggle .Im your son !he screamed up at Crouch .Im your son !You are no son of mine !bellowed Mr Crouch his eyes bulging suddenly .I have no son !The wispy witch beside him gave a great gasp and slumped in her seat .She had fainted .Crouch appeared not to have noticed .Take them away !Crouch roared at the dementors spit flying from his mouth .Take them away and may they rot there !Father !Father I wasnt involved !No !No !Father please !I think Harry it is time to return to my office said a quiet voice in Harrys ear .Harry started .He looked around .Then he looked on his other side .There was an Albus Dumbledore sitting on his right watching Crouchs son being dragged away by the dementors and there was an Albus Dumbledore on his left looking right at him .Come said the Dumbledore on his left and he put his hand under Harrys elbow .Harry felt himself rising into the air the dungeon dissolved around him for a moment all was blackness and then he felt as though he had done a slowmotion somersault suddenly landing flat on his feet in what seemed like the dazzling light of Dumbledore s sunlit office .The stone basin was shimmering in the cabinet in front of him and Albus Dumbledore was standing beside him .Professor Harry gasped I know I shouldntve I didnt mean the cabinet door was sort of open and I quite understand said Dumbledore .He lifted the basin carried it over to his desk placed it upon the polished top and sat down in the chair behind it .He motioned for Harry to sit down opposite him .Harry did so staring at the stone basin .The contents had returned to their original silverywhite state swirling and rippling beneath his gaze .What is it ?Harry asked shakily .This ?It is called a Pensieve said Dumbledore .I sometimes find and I am sure you know the feeling that I simply have too many thoughts and memories crammed into my mind .Er said Harry who couldnt truthfully say that he had ever felt anything of the sort .At these times said Dumbledore indicating the stone basin I use the Pensieve .One simply siphons the excess thoughts from ones mind pours them into the basin and examines them at ones leisure .It becomes easier to spot patterns and links you understand when they are in this form .You mean .that stuffs your thoughts ?Harry said staring at the swirling white substance in the basin .Certainly said Dumbledore .Let me show you .Dumbledore drew his wand out of the inside of his robes and placed the tip into his own silvery hair near his temple .When he took the wand away hair seemed to be clinging to it but then Harry saw that it was in fact a glistening strand of the same strange silverywhite substance that filled the Pensieve .Dumbledore added this fresh thought to the basin and Harry astonished saw his own face swimming around the surface of the bowl .Dumbledore placed his long hands on either side of the Pensieve and swirled it rather as a gold prospector would pan for fragments of gold .and Harry saw his own face change smoothly into Snapes who opened his mouth and spoke to the ceiling his voice echoing slightly .Its coming back .Karkaroffs too .stronger and clearer than ever .A connection I could have made without assistance Dumbledore sighed but never mind .He peered over the top of his halfmoon spectacles at Harry who was gaping at Snapes face which was continuing to swirl around the bowl .I was using the Pensieve when Mr Fudge arrived for our meeting and put it away rather hastily .Undoubtedly I did not fasten the cabinet door properly .Naturally it would have attracted your attention .Im sorry Harry mumbled .Dumbledore shook his head .Curiosity is not a sin he said .But we should exercise caution with our curiosity .yes indeed .Frowning slightly he prodded the thoughts within the basin with the tip of his wand .Instantly a figure rose out of it a plump scowling girl of about sixteen who began to revolve slowly with her feet still in the basin .She took no notice whatsoever of Harry or Professor Dumbledore .When she spoke her voice echoed as Snapes had done as though it were coming from the depths of the stone basin .He put a hex on me Professor Dumbledore and I was only teasing him sir .I only said Id seen him kissing Florence behind the greenhouses last Thursday .But why Bertha said Dumbledore sadly looking up at the now silently revolving girl why did you have to follow him in the first place ?Bertha ?Harry whispered looking up at her .Is that was that Bertha Jorkins ?Yes said Dumbledore prodding the thoughts in the basin again Bertha sank back into them and they became silvery and opaque once more .That was Bertha as I remember her at school .The silvery light from the Pensieve illuminated Dumbledores face and it struck Harry suddenly how very old he was looking .He knew of course that Dumbledore was getting on in years but somehow he never really thought of Dumbledore as an old man .So Harry said Dumbledore quietly .Before you got lost in my thoughts you wanted to tell me something .Yes said Harry .Professor I was in Divination just now and er I fell asleep .He hesitated here wondering if a reprimand was coming but Dumbledore merely said Quite understandable .Continue .Well I had a dream said Harry .A dream about Lord Voldemort .He was torturing Wormtail .you know who Wormtail I do know said Dumbledore promptly .Please continue .Voldemort got a letter from an owl .He said something like Wormtails blunder had been repaired .He said someone was dead .Then he said Wormtail wouldnt be fed to the snake there was a snake beside his chair .He said he said hed be feeding me to it instead .Then he did the Cruciatus Curse on Wormtail and my scar hurt Harry said .It woke me up it hurt so badly .Dumbledore merely looked at him .Er thats all said Harry .I see said Dumbledore quietly .I see .Now has your scar hurt at any other time this year excepting the time it woke you up over the summer ?No I how did you know it woke me up over the summer ?said Harry astonished .You are not Siriuss only correspondent said Dumbledore .I have also been in contact with him ever since he left Hogwarts last year .It was I who suggested the mountainside cave as the safest place for him to stay .Dumbledore got up and began walking up and down behind his desk .Every now and then he placed his wand tip to his temple removed another shining silver thought and added it to the Pensieve .The thoughts inside began to swirl so fast that Harry couldnt make out anything clearly It was merely a blur of color .Professor ?he said quietly after a couple of minutes .Dumbledore stopped pacing and looked at Harry .My apologies he said quietly .He sat back down at his desk .Dyou dyou know why my scars hurting me ?Dumbledore looked very intently at Harry for a moment and then said I have a theory no more than that .It is my belief that your scar hurts both when Lord Voldemort is near you and when he is feeling a particularly strong surge of hatred .But .why ?Because you and he are connected by the curse that failed said Dumbledore .That is no ordinary scar .So you think .that dream .did it really happen ?It is possible said Dumbledore .I would say probable .Harry did you see Voldemort ?No said Harry .Just the back of his chair .But there wouldnt have been anything to see would there ?I mean he hasnt got a body has he ?But .but then how could he have held the wand ?Harry said slowly .How indeed ?muttered Dumbledore .How indeed Neither Dumbledore nor Harry spoke for a while .Dumbledore was gazing across the room and every now and then placing his wand tip to his temple and adding another shining silver thought to the seething mass within the Pensieve .Professor Harry said at last do you think hes getting stronger ?Voldemort ?said Dumbledore looking at Harry over the Pensieve .It was the characteristic piercing look Dumbledore had given him on other occasions and always made Harry feel as though Dumbledore were seeing right through him in a way that even Moodys magical eye could not .Once again Harry I can only give you my suspicions .Dumbledore sighed again and he looked older and wearier than ever .The years of Voldemorts ascent to power he said were marked with disappearances .Bertha Jorkins has vanished without a trace in the place where Voldemort was certainly known to be last .Mr Crouch too has disappeared .within these very grounds .And there was a third disappearance one which the Ministry I regret to say do not consider of any importance for it concerns a Muggle .His name was Frank Bryce he lived in the village where Voldemorts father grew up and he has not been seen since last August .You see I read the Muggle newspapers unlike most of my Ministry friends .Dumbledore looked very seriously at Harry .These disappearances seem to me to be linked .The Ministry disagrees as you may have heard while waiting outside my office .Harry nodded .Silence fell between them again Dumbledore extracting thoughts every now and then .Harry felt as though he ought to go but his curiosity held him in his chair .Professor ?he said again .Yes Harry ?said Dumbledore .Er .could I ask you about .that court thing I was in .in the Pensieve ?You could said Dumbledore heavily .I attended it many times but some trials come back to me more clearly than others .particularly now .You know you know the trial you found me in ?The one with Crouchs son ?Well .were they talking about Nevilles parents ?Dumbledore gave Harry a very sharp look .Has Neville never told you why he has been brought up by his grandmother ?he said .Harry shook his head wondering as he did so how he could have failed to ask Neville this in almost four years of knowing him .Yes they were talking about Nevilles parents said Dumbledore .His father Frank was an Auror just like Professor Moody .He and his wife were tortured for information about Voldemorts whereabouts after he lost his powers as you heard .So theyre dead ?said Harry quietly .No said Dumbledore his voice full of a bitterness Harry had never heard there before .They are insane .They are both in St .Mungos Hospital for Magical Maladies and Injuries .I believe Neville visits them with his grandmother during the holidays .They do not recognize him .Harry sat there horrorstruck .He had never known .never in four years bothered to find out .The Longbottoms were very popular said Dumbledore .The attacks on them came after Voldemorts fall from power just when everyone thought they were safe .Those attacks caused a wave of fury such as I have never known .The Ministry was under great pressure to catch those who had done it .Unfortunately the Longbottoms evidence was given their condition none too reliable .Then Mr Crouchs son might not have been involved ?said Harry slowly .Dumbledore shook his head .As to that I have no idea .Harry sat in silence once more watching the contents of the Pensieve swirl .There were two more questions he was burning to ask .but they concerned the guilt of living people .Er he said Mr Bagman . .has never been accused of any Dark activity since said Dumbledore calmly .Right said Harry hastily staring at the contents of the Pensieve again which were swirling more slowly now that Dumbledore had stopped adding thoughts .And .er .But the Pensieve seemed to be asking his question for him .Snapes face was swimming on the surface again .Dumbledore glanced down into it and then up at Harry .No more has Professor Snape he said .Harry looked into Dumbledore s light blue eyes and the thing he really wanted to know spilled out of his mouth before he could stop it .What made you think hed really stopped supporting Voldemort Professor ?Dumbledore held Harrys gaze for a few seconds and then said That Harry is a matter between Professor Snape and myself .Harry knew that the interview was over Dumbledore did not look angry yet there was a finality in his tone that told Harry it was time to go .He stood up and so did Dumbledore .Harry he said as Harry reached the door .Please do not speak about Nevilles parents to anybody else .He has the right to let people know when he is ready .Yes Professor said Harry turning to go .And Harry looked back .Dumbledore was standing over the Pensieve his face lit from beneath by its silvery spots of light looking older than ever .He stared at Harry for a moment and then said Good luck with the third task .THE THIRD TASK Dumbledore reckons You Know Whos getting stronger again as well ?Ron whispered .Everything Harry had seen in the Pensieve nearly everything Dumbledore had told and shown him afterward he had now shared with Ron and Hermione and of course with Sirius to whom Harry had sent an owl the moment he had left Dumbledores office .Harry Ron and Hermione sat up late in the common room once again that night talking it all over until Harrys mind was reeling until he understood what Dumbledore had meant about a head becoming so full of thoughts that it would have been a relief to siphon them off .Ron stared into the common room fire .Harry thought he saw Ron shiver slightly even though the evening was warm .And he trusts Snape ?Ron said .He really trusts Snape even though he knows he was a Death Eater ?Yes said Harry .Hermione had not spoken for ten minutes .She was sitting with her forehead in her hands staring at her knees .Harry thought she too looked as though she could have done with a Pensieve .Rita Skeeter she muttered finally .How can you be worrying about her now ?said Ron in utter disbelief .Im not worrying about her Hermione said to her knees .Im just thinking .remember what she said to me in the Three Broomsticks ? ‘I know things about Ludo Bagman that would make your hair curl .This is what she meant isnt it ?She reported his trial she knew hed passed information to the Death Eaters .And Winky too remember . ‘Ludo Bagmans a bad wizard .Mr Crouch would have been furious he got off he would have talked about it at home .Yeah but Bagman didnt pass information on purpose did he ?Hermione shrugged .And Fudge reckons Madame Maxime attacked Crouch ?Ron said turning back to Harry .Yeah said Harry but hes only saying that because Crouch disappeared near the Beauxbatons carriage .We never thought of her did we ?said Ron slowly .Mind you shes definitely got giant blood and she doesnt want to admit it Of course she doesnt said Hermione sharply looking up .Look what happened to Hagrid when Rita found out about his mother .Look at Fudge jumping to conclusions about her just because shes part giant .Who needs that sort of prejudice ?Id probably say I had big bones if I knew thats what Id get for telling the truth .Hermione looked at her watch .We havent done any practicing !she said looking shocked .We were going to do the Impediment Curse !Well have to really get down to it tomorrow !Come on Harry you need to get some sleep .Harry and Ron went slowly upstairs to their dormitory .As Harry pulled on his pajamas he looked over at Nevilles bed .True to his word to Dumbledore he had not told Ron and Hermione about Nevilles parents .As Harry took off his glasses and climbed into his fourposter he imagined how it must feel to have parents still living but unable to recognize you .He often got sympathy from strangers for being an orphan but as he listened to Nevilles snores he thought that Neville deserved it more than he did .Lying in the darkness Harry felt a rush of anger and hate toward the people who had tortured Mr and Mrs Longbottom .He remembered the jeers of the crowd as Crouchs son and his companions had been dragged from the court by the dementors .He understood how they had felt .Then he remembered the milkwhite face of the screaming boy and realized with a jolt that he had died a year later .It was Voldemort Harry thought staring up at the canopy of his bed in the darkness it all came back to Voldemort .He was the one who had torn these families apart who had ruined all these lives .Ron and Hermione were supposed to be studying for their exams which would finish on the day of the third task but they were putting most of their efforts into helping Harry prepare .Dont worry about it Hermione said shortly when Harry pointed this out to them and said he didnt mind practicing on his own for a while at least well get top marks in Defense Against the Dark Arts .Wed never have found out about all these hexes in class .Good training for when were all Aurors said Ron excitedly attempting the Impediment Curse on a wasp that had buzzed into the room and making it stop dead in midair .The mood in the castle as they entered June became excited and tense again .Everyone was looking forward to the third task which would take place a week before the end of term .Harry was practicing hexes at every available moment .He felt more confident about this task than either of the others .Difficult and dangerous though it would undoubtedly be Moody was right Harry had managed to find his way past monstrous creatures and enchanted barriers before now and this time he had some notice some chance to prepare himself for what lay ahead .Tired of walking in on Harry Hermione and Ron all over the school Professor McGonagall had given them permission to use the empty Transfiguration classroom at lunchtimes .Harry had soon mastered the Impediment Curse a spell to slow down and obstruct attackers the Reductor Curse which would enable him to blast solid objects out of his way and the FourPoint Spell a useful discovery of Hermiones that would make his wand point due north therefore enabling him to check whether he was going in the right direction within the maze .He was still having trouble with the Shield Charm though .This was supposed to cast a temporary invisible wall around himself that deflected minor curses Hermione managed to shatter it with a wellplaced JellyLegs Jinx and Harry wobbled around the room for ten minutes afterward before she had looked up the counterjinx .Youre still doing really well though Hermione said encouragingly looking down her list and crossing off those spells they had already learned .Some of these are bound to come in handy .Come and look at this said Ron who was standing by the window .He was staring down onto the grounds .Whats Malfoy doing ?Harry and Hermione went to see .Malfoy Crabbe and Goyle were standing in the shadow of a tree below .Crabbe and Goyle seemed to be keeping a lookout both were smirking .Malfoy was holding his hand up to his mouth and speaking into it .He looks like hes using a walkietalkie said Harry curiously .He cant be said Hermione Ive told you those sorts of things dont work around Hogwarts .Come on Harry she added briskly turning away from the window and moving back into the middle of the room lets try that Shield Charm again .Sirius was sending daily owls now .Like Hermione he seemed to want to concentrate on getting Harry through the last task before they concerned themselves with anything else .He reminded Harry in every letter that whatever might be going on outside the walls of Hogwarts was not Harrys responsibility nor was it within his power to influence it .If Voldemort is really getting stronger again he wrote my priority is to ensure your safety .He cannot hope to lay hands on you while you are under Dumbledores protection but all the same take no risks Concentrate on getting through that maze safely and then we can turn our attention to other matters .Harrys nerves mounted as June the twentyfourth drew closer but they were not as bad as those he had felt before the first and second tasks .For one thing he was confident that this time he had done everything in his power to prepare for the task .For another this was the final hurdle and however well or badly he did the tournament would at last be over which would be an enormous relief .Breakfast was a very noisy affair at the Gryffindor table on the morning of the third task .The post owls appeared bringing Harry a goodluck card from Sirius .It was only a piece of parchment folded over and bearing a muddy paw print on its front but Harry appreciated it all the same .A screech owl arrived for Hermione carrying her morning copy of the Daily Prophet as usual .She unfolded the paper glanced at the front page and spat out a mouthful of pumpkin juice all over it .What ?said Harry and Ron together staring at her .Nothing said Hermione quickly trying to shove the paper out of sight but Ron grabbed it .He stared at the headline and said No way .Not today .That old cow .What ?said Harry .Rita Skeeter again ?No said Ron and just like Hermione he attempted to push the paper out of sight .Its about me isnt it ?said Harry .No said Ron in an entirely unconvincing tone .But before Harry could demand to see the paper Draco Malfoy shouted across the Great Hall from the Slytherin table .Hey Potter !Potteri Hows your head ?You feeling all right ?Sure youre not going to go berserk on us ?Malfoy was holding a copy of the Daily Prophet too .Slytherins up and down the table were sniggering twisting in their seats to see Harrys reaction .Let me see it Harry said to Ron .Give it here .Very reluctantly Ron handed over the newspaper .Harry turned it over and found himself staring at his own picture beneath the banner headline HARRY POTTER DISTURBED AND DANGEROUS The boy who defeated HeWhoMustNotBeNamed is unstable and possibly dangerous writes Rita Skeeter Special Correspondent .Alarming evidence has recently come to light about Harry Potters strange behavior which casts doubts upon his suitability to compete in a demanding competition like the Triwizard Tournament or even to attend Hogwarts School .Potter the Daily Prophet can exclusively reveal regularly collapses at school and is often heard to complain of pain in the scar on his forehead relic of the curse with which YouKnowWho attempted to kill him .On Monday last midway through a Divination lesson your Daily Prophet reporter witnessed Potter storming from the class claiming that his scar was hurting too badly to continue studying .It is possible say top experts at St .Mungos Hospital for Magical Maladies and Injuries that Potters brain was affected by the attack inflicted upon him by You KnowWho and that his insistence that the scar is still hurting is an expression of his deepseated confusion .He might even be pretending said one specialist .This could be a plea for attention .The Daily Prophet however has unearthed worrying facts about Harry Potter thatAlbus Dumbledore Headmaster of Hogwarts has carefully concealed from the wizarding public .Potter can speak Parseltongue reveals Draco Malfoy a Hogwarts fourth year .There were a lot of attacks on students a couple of years ago and most people thought Potter was behind them after they saw him lose his temper at a dueling club and set a snake on another boy .It was all hushed up though .But hes made friends with werewolves and giants too .We think hed do anything for a bit of power .Parseltongue the ability to converse with snakes has long been considered a Dark Art .Indeed the most famous Parselmouth of our times is none other than YouKnowWho himself .A member of the Dark Force Defense League who wished to remain unnamed stated that he would regard any wizard who could speak Parseltongue as worthy of investigation .Personally I would be highly suspicious of anybody who could converse with snakes as serpents are often used in the worst kinds of Dark Magic and are historically associated with evildoers .Similarly anyone who seeks out the company of such vicious creatures as werewolves and giants would appear to have a fondness for violence .Albus Dumbledore should surely consider whether a boy such as this should be allowed to compete in the Triwizard Tournament .Some fear that Potter might resort to the Dark Arts in his desperation to win the tournament the third task of which takes place this evening .Gone off me a bit hasnt she ?said Harry lightly folding up the paper .Over at the Slytherin table Malfoy Crabbe and Goyle were laughing at him tapping their heads with their fingers pulling grotesquely mad faces and waggling their tongues like snakes .How did she know your scar hurt in Divination ?Ron said .Theres no way she was there theres no way she couldve heard The window was open said Harry .I opened it to breathe .You were at the top of North Tower !Hermione said .Your voice couldnt have carried all the way down to the grounds !Well youre the one whos supposed to be researching magical methods of bugging !said Harry .You tell me how she did it !Ive been trying !said Hermione .But I .but .An odd dreamy expression suddenly came over Hermione s face .She slowly raised a hand and ran her fingers through her hair .Are you all right ?said Ron frowning at her .Yes said Hermione breathlessly .She ran her fingers through her hair again and then held her hand up to her mouth as though speaking into an invisible walkietalkie .Harry and Ron stared at each other .Ive had an idea Hermione said gazing into space .I think I know .because then no one would be able to see .even Moody .and shed have been able to get onto the window ledge .but shes not allowed .shes definitely not allowed .I think weve got her !Just give me two seconds in the library just to make sure !With that Hermione seized her school bag and dashed out of the Great Hall .Oi !Ron called after her .Weve got our History of Magic exam in ten minutes !Blimey he said turning back to Harry she must really hate that Skeeter woman to risk missing the start of an exam .Whatre you going to do in Binnss class read again ?Exempt from the endofterm tests as a Triwizard champion Harry had been sitting in the back of every exam class so far looking up fresh hexes for the third task .Spose so Harry said to Ron but just then Professor McGonagall came walking alongside the Gryffindor table toward him .Potter the champions are congregating in the chamber off the Hall after breakfast she said .But the tasks not till tonight !said Harry accidentally spilling scrambled eggs down his front afraid he had mistaken the time .Im aware of that Potter she said .The champions families are invited to watch the final task you know .This is simply a chance for you to greet them .She moved away .Harry gaped after her .She doesnt expect the Dursleys to turn up does she ?he asked Ron blankly .Dunno said Ron .Harry Id better hurry Im going to be late for Binns .See you later .Harry finished his breakfast in the emptying Great Hall .He saw Fleur Delacour get up from the Ravenclaw table and join Cedric as he crossed to the side chamber and entered .Krum slouched off to join them shortly afterward .Harry stayed where he was .He really didnt want to go into the chamber .He had no family no family who would turn up to see him risk his life anyway .But just as he was getting up thinking that he might as well go up to the library and do a spot more hex research the door of the side chamber opened and Cedric stuck his head out .Harry come on theyre waiting for you !Utterly perplexed Harry got up .The Dursleys couldnt possibly be here could they ?He walked across the Hall and opened the door into the chamber .Cedric and his parents were just inside the door .Viktor Krum was over in a corner conversing with his darkhaired mother and father in rapid Bulgarian .He had inherited his fathers hooked nose .On the other side of the room Fleur was jabbering away in French to her mother .Fleurs little sister Gabrielle was holding her mothers hand .She waved at Harry who waved back grinning .Then he saw Mrs Weasley and Bill standing in front of the fireplace beaming at him .Surprise !Mrs Weasley said excitedly as he smiled broadly and walked over to them .Thought wed come and watch you Harry !She bent down and kissed him on the cheek .You all right ?said Bill grinning at Harry and shaking his hand .Charlie wanted to come but he couldnt get time off .He said you were incredible against the Horntail .Fleur Delacour Harry noticed was eyeing Bill with great interest over her mothers shoulder .Harry could tell she had no objection whatsoever to long hair or earrings with fangs on them .This is really nice of you Harry muttered to Mrs Weasley .I thought for a moment the Dursleys Hmm said Mrs Weasley pursing her lips .She had always refrained from criticizing the Dursleys in front of Harry but her eyes flashed every time they were mentioned .Its great being back here said Bill looking around the chamber Violet the Fat Ladys friend winked at him from her frame .Havent seen this place for five years .Is that picture of the mad knight still around ?Sir Cadogan ?Oh yeah said Harry who had met Sir Cadogan the previous year .And the Fat Lady ?said Bill .She was here in my time said Mrs Weasley .She gave me such a telling off one night when I got back to the dormitory at four in the morning What were you doing out of your dormitory at four in the morning ?said Bill surveying his mother with amazement .Mrs Weasley grinned her eyes twinkling .Your father and I had been for a nighttime stroll she said .He got caught by Apollyon Pringle he was the caretaker in those days your fathers still got the marks .Fancy giving us a tour Harry ?said Bill .Yeah okay said Harry and they made their way back toward the door into the Great Hall .As they passed Amos Diggory he looked around .There you are are you ?he said looking Harry up and down .Bet youre not feeling quite as full of yourself now Cedrics caught you up on points are you ?What ?said Harry .Ignore him said Cedric in a low voice to Harry frowning after his father .Hes been angry ever since Rita Skeeters article about the Triwizard Tournament you know when she made out you were the only Hogwarts champion .Didnt bother to correct her though did he ?said Amos Diggory loudly enough for Harry to hear as he started to walk out of the door with Mrs Weasley and Bill .Still .youll show him Ced .Beaten him once before havent you ?Rita Skeeter goes out of her way to cause trouble Amos !Mrs Weasley said angrily .I would have thought youd know that working at the Ministry !Mr Diggory looked as though he was going to say something angry but his wife laid a hand on his arm and he merely shrugged and turned away .Harry had a very enjoyable morning walking over the sunny grounds with Bill and Mrs Weasley showing them the Beauxbatons carriage and the Durmstrang ship .Mrs Weasley was intrigued by the Whomping Willow which had been planted after she had left school and reminisced at length about the gamekeeper before Hagrid a man called Ogg .Hows Percy ?Harry asked as they walked around the greenhouses .Not good said Bill .Hes very upset said Mrs Weasley lowering her voice and glancing around .The Ministry wants to keep Mr Crouchs disappearance quiet but Percys been hauled in for questioning about the instructions Mr Crouch has been sending in .They seem to think theres a chance they werent genuinely written by him .Percys been under a lot of strain .Theyre not letting him fill in for Mr Crouch as the fifth judge tonight .Cornelius Fudge is going to be doing it .They returned to the castle for lunch .Mum Bill !said Ron looking stunned as he joined the Gryffindor table .What re you doing here ?Come to watch Harry in the last task !said Mrs Weasley brightly .I must say it makes a lovely change not having to cook .How was your exam ?Oh .okay said Ron .Couldnt remember all the goblin rebels names so I invented a few .Its all right he said helping himself to a Cornish pasty while Mrs Weasley looked stern theyre all called stuff like Bodrod the Bearded and Urg the Unclean it wasnt hard .Fred George and Ginny came to sit next to them too and Harry was having such a good time he felt almost as though he were back at the Burrow he had forgotten to worry about that evenings task and not until Hermione turned up halfway through lunch did he remember that she had had a brainwave about Rita Skeeter .Are you going to tell us ?Hermione shook her head warningly and glanced at Mrs Weasley .Hello Hermione said Mrs Weasley much more stiffly than usual .Hello said Hermione her smile faltering at the cold expression on Mrs Weasleys face .Harry looked between them then said Mrs Weasley you didnt believe that rubbish Rita Skeeter wrote in Witch Weekly did you ?Because Hermione s not my girlfriend .Oh !said Mrs Weasley .No of course I didnt !But she became considerably warmer toward Hermione after that .Harry Bill and Mrs Weasley whiled away the afternoon with a long walk around the castle and then returned to the Great Hall for the evening feast .Ludo Bagman and Cornelius Fudge had joined the staff table now .Bagman looked quite cheerful but Cornelius Fudge who was sitting next to Madame Maxime looked stern and was not talking .Madame Maxime was concentrating on her plate and Harry thought her eyes looked red .Hagrid kept glancing along the table at her .There were more courses than usual but Harry who was starting to feel really nervous now didnt eat much .As the enchanted ceiling overhead began to fade from blue to a dusky purple Dumbledore rose to his feet at the staff table and silence fell .Ladies and gentlemen in five minutes time I will be asking you to make your way down to the Quidditch field for the third and final task of the Triwizard Tournament .Will the champions please follow Mr Bagman down to the stadium now .Harry got up .The Gryffindors all along the table were applauding him the Weasleys and Hermione all wished him good luck and he headed off out of the Great Hall with Cedric Fleur and Viktor .Feeling all right Harry ?Bagman asked as they went down the stone steps onto the grounds .Confident ?Im okay said Harry .It was sort of true he was nervous but he kept running over all the hexes and spells he had been practicing in his mind as they walked and the knowledge that he could remember them all made him feel better .They walked onto the Quidditch field which was now completely unrecognizable .A twentyfoothigh hedge ran all the way around the edge of it .There was a gap right in front of them the entrance to the vast maze .The passage beyond it looked dark and creepy .Five minutes later the stands had begun to fill the air was full of excited voices and the rumbling of feet as the hundreds of students filed into their seats .The sky was a deep clear blue now and the first stars were starting to appear .Hagrid Professor Moody Professor McGonagall and Professor Flitwick came walking into the stadium and approached Bagman and the champions .They were wearing large red luminous stars on their hats all except Hagrid who had his on the back of his moleskin vest .We are going to be patrolling the outside of the maze said Professor McGonagall to the champions .If you get into difficulty and wish to be rescued send red sparks into the air and one of us will come and get you do you understand ?The champions nodded .Off you go then !said Bagman brightly to the four patrollers .Good luck Harry Hagrid whispered and the four of them walked away in different directions to station themselves around the maze .Bagman now pointed his wand at his throat muttered Sonorus and his magically magnified voice echoed into the stands .Ladies and gentlemen the third and final task of the Triwizard Tournament is about to begin !Let me remind you how the points currently stand !Tied in first place with eightyfive points each Mr Cedric Diggory and Mr Harry Potter both of Hogwarts School !The cheers and applause sent birds from the Forbidden Forest fluttering into the darkening sky .In second place with eighty points Mr Viktor Krum of Durmstrang Institute !More applause .And in third place Miss Fleur Delacour of Beauxbatons Academy !Harry could just make out Mrs Weasley Bill Ron and Hermione applauding Fleur politely halfway up the stands .He waved up at them and they waved back beaming at him .So .on my whistle Harry and Cedric !said Bagman .Three two one He gave a short blast on his whistle and Harry and Cedric hurried forward into the maze .The towering hedges cast black shadows across the path and whether because they were so tall and thick or because they had been enchanted the sound of the surrounding crowd was silenced the moment they entered the maze .Harry felt almost as though he were underwater again .He pulled out his wand muttered Lumos and heard Cedric do the same just behind him .After about fifty yards they reached a fork .They looked at each other .See you Harry said and he took the left one while Cedric took the right .Harry heard Bagmans whistle for the second time .Krum had entered the maze .Harry sped up .His chosen path seemed completely deserted .He turned right and hurried on holding his wand high over his head trying to see as far ahead as possible .Still there was nothing in sight .Bagmans whistle blew in the distance for the third time .All of the champions were now inside .Harry kept looking behind him .The old feeling that he was being watched was upon him .The maze was growing darker with every passing minute as the sky overhead deepened to navy .He reached a second fork .Point Me he whispered to his wand holding it flat in his palm .The wand spun around once and pointed toward his right into solid hedge .That way was north and he knew that he needed to go northwest for the center of the maze .The best he could do was to take the left fork and go right again as soon as possible .The path ahead was empty too and when Harry reached a right turn and took it he again found his way unblocked .Harry didnt know why but the lack of obstacles was unnerving him .Surely he should have met something by now ?It felt as though the maze were luring him into a false sense of security .Then he heard movement right behind him .He held out his wand ready to attack but its beam fell only upon Cedric who had just hurried out of a path on the righthand side .Cedric looked severely shaken .The sleeve of his robe was smoking .Hagrids BlastEnded Skrewts !he hissed .Theyre enormous I only just got away !He shook his head and dived out of sight along another path .Keen to put plenty of distance between himself and the skrewts Harry hurried off again .Then as he turned a corner he saw .a dementor gliding toward him .Twelve feet tall its face hidden by its hood its rotting scabbed hands outstretched it advanced sensing its way blindly toward him .Harry could hear its rattling breath he felt clammy coldness stealing over him but knew what he had to do .He summoned the happiest thought he could concentrated with all his might on the thought of getting out of the maze and celebrating with Ron and Hermione raised his wand and cried Expecto Patronum .A silver stag erupted from the end of Harrys wand and galloped toward the dementor which fell back and tripped over the hem of its robes .Harry had never seen a dementor stumble .Hang on !he shouted advancing in the wake of his silver Patronus .Youre a boggart !Riddikulusl There was a loud crack and the shapeshifter exploded in a wisp of smoke .The silver stag faded from sight .Harry wished it could have stayed he could have used some company .but he moved on quickly and quietly as possible listening hard his wand held high once more .Left .right .left again .Twice he found himself facing dead ends .He did the FourPoint Spell again and found that he was going too far east .He turned back took a right turn and saw an odd golden mist floating ahead of him .Harry approached it cautiously pointing the wands beam at it .This looked like some kind of enchantment .He wondered whether he might be able to blast it out of the way .Reductol he said .The spell shot straight through the mist leaving it intact .He supposed he should have known better the Reductor Curse was for solid objects .What would happen if he walked through the mist ?Was it worth chancing it or should he double back ?He was still hesitating when a scream shattered the silence .Fleur ?Harry yelled .There was silence .He stared all around him .What had happened to her ?Her scream seemed to have come from somewhere ahead .He took a deep breath and ran through the enchanted mist .The world turned upside down .Harry was hanging from the ground with his hair on end his glasses dangling off his nose threatening to fall into the bottomless sky .He clutched them to the end of his nose and hung there terrified .It felt as though his feet were glued to the grass which had now become the ceiling .Below him the dark starspangled heavens stretched endlessly .He felt as though if he tried to move one of his feet he would fall away from the earth completely .Think he told himself as all the blood rushed to his head think .But not one of the spells he had practiced had been designed to combat a sudden reversal of ground and sky .Did he dare move his foot ?He could hear the blood pounding in his ears .He had two choices try and move or send up red sparks and get rescued and disqualified from the task .He shut his eyes so he wouldnt be able to see the view of endless space below him and pulled his right foot as hard as he could away from the grassy ceiling .Immediately the world righted itself .Harry fell forward onto his knees onto the wonderfully solid ground .He felt temporarily limp with shock .He took a deep steadying breath then got up again and hurried forward looking back over his shoulder as he ran away from the golden mist which twinkled innocently at him in the moonlight .He paused at a junction of two paths and looked around for some sign of Fleur .He was sure it had been she who had screamed .What had she met ?Was she all right ?There was no sign of red sparks did that mean she had got herself out of trouble or was she in such trouble that she couldnt reach her wand ?Harry took the right fork with a feeling of increasing unease .but at the same time he couldnt help thinking One champion down .The cup was somewhere close by and it sounded as though Fleur was no longer in the running .Hed got this far hadnt he ?What if he actually managed to win ?Fleetingly and for the first time since hed found himself champion he saw again that image of himself raising the Triwizard Cup in front of the rest of the school .He met nothing for ten minutes but kept running into dead ends .Twice he took the same wrong turning .Finally he found a new route and started to jog along it his wandlight waving making his shadow flicker and distort on the hedge walls .Then he rounded another corner and found himself facing a BlastEnded Skrewt .Cedric was right it was enormous .Ten feet long it looked more like a giant scorpion than anything .Its long sting was curled over its back .Its thick armor glinted in the light from Harrys wand which he pointed at it .Stupefy .The spell hit the skrewts armor and rebounded Harry ducked just in time but could smell burning hair it had singed the top of his head .The skrewt issued a blast of fire from its end and flew forward toward him .Impedimental Harry yelled .The spell hit the skrewts armor again and ricocheted off Harry staggered back a few paces and fell over .a IMPEDIMENT A The skrewt was inches from him when it froze he had managed to hit it on its fleshy shellless underside .Panting Harry pushed himself away from it and ran hard in the opposite direction the Impediment Curse was not permanent the skrewt would be regaining the use of its legs at any moment .He took a left path and hit a dead end a right and hit another forcing himself to stop heart hammering he performed the FourPoint Spell again backtracked and chose a path that would take him northwest .He had been hurrying along the new path for a few minutes when he heard something in the path running parallel to his own that made him stop dead .What are you doing ?yelled Cedrics voice .What the hell dyou think youre doing ?And then Harry heard Krums voice .Crucio The air was suddenly full of Cedrics yells .Horrified Harry began sprinting up his path trying to find a way into Cedrics .When none appeared he tried the Reductor Curse again .It wasnt very effective but it burned a small hole in the hedge through which Harry forced his leg kicking at the thick brambles and branches until they broke and made an opening he struggled through it tearing his robes and looking to his right saw Cedric jerking and twitching on the ground Krum standing over him .Harry pulled himself up and pointed his wand at Krum just as Krum looked up .Krum turned and began to run .Stupefy Harry yelled .The spell hit Krum in the back he stopped dead in his tracks fell forward and lay motionless facedown in the grass .Harry dashed over to Cedric who had stopped twitching and was lying there panting his hands over his face .Are you all right ?Harry said roughly grabbing Cedrics arm .Yeah panted Cedric .Yeah .I dont believe it .he crept up behind me .I heard him I turned around and he had his wand on me .Cedric got up .He was still shaking .He and Harry looked down at Krum .I cant believe this .I thought he was all right Harry said staring at Krum .So did I said Cedric .Did you hear Fleur scream earlier ?said Harry .Yeah said Cedric .You dont think Krum got her too ?I dont know said Harry slowly .Should we leave him here ?Cedric muttered .No said Harry .I reckon we should send up red sparks .Someonell come and collect him .otherwise hell probably be eaten by a skrewt .Hed deserve it Cedric muttered but all the same he raised his wand and shot a shower of red sparks into the air which hovered high above Krum marking the spot where he lay .Harry and Cedric stood there in the darkness for a moment looking around them .Then Cedric said Well .I spose wed better go on .What ?said Harry .Oh .yeah .right .It was an odd moment .He and Cedric had been briefly united against Krum now the fact that they were opponents came back to Harry .The two of them proceeded up the dark path without speaking then Harry turned left and Cedric right .Cedrics footsteps soon died away .Harry moved on continuing to use the FourPoint Spell making sure he was moving in the right direction .It was between him and Cedric now .His desire to reach the cup first was now burning stronger than ever but he could hardly believe what hed just seen Krum do .The use of an Unforgivable Curse on a fellow human being meant a life term in Azkaban that was what Moody had told them .Krum surely couldnt have wanted the Triwizard Cup that badly .Harry sped up .Every so often he hit more dead ends but the increasing darkness made him feel sure he was getting near the heart of the maze .Then as he strode down a long straight path he saw movement once again and his beam of wandlight hit an extraordinary creature one which he had only seen in picture form in his Monster Book of Monsters .It was a sphinx .It had the body of an overlarge lion great clawed paws and a long yellowish tail ending in a brown tuft .Its head however was that of a woman .She turned her long almondshaped eyes upon Harry as he approached .He raised his wand hesitating .She was not crouching as if to spring but pacing from side to side of the path blocking his progress .Then she spoke in a deep hoarse voice .You are very near your goal .The quickest way is past me .So .so will you move please ?said Harry knowing what the answer was going to be .No she said continuing to pace .Not unless you can answer my riddle .Answer on your first guess I let you pass .Answer wrongly I attack .Remain silent I will let you walk away from me unscathed .Harrys stomach slipped several notches .It was Hermione who was good at this sort of thing not him .He weighed his chances .If the riddle was too hard he could keep silent get away from the sphinx unharmed and try and find an alternative route to the center .Okay he said .Can I hear the riddle ?The sphinx sat down upon her hind legs in the very middle of the path and recited First think of the person who lives in disguise Who deals in secrets and tells naught but lies .Next tell me whats always the last thing to mend The middle of middle and end of the end ?And finally give me the sound often heard During the search for a hardtofind word .Now string them together and answer me this Which creature would you be unwilling to kiss ?Harry gaped at her .Could I have it again .more slowly ?he asked tentatively .She blinked at him smiled and repeated the poem .All the clues add up to a creature I wouldnt want to kiss ?Harry asked .She merely smiled her mysterious smile .Harry took that for a yes .Harry cast his mind around .There were plenty of animals he wouldnt want to kiss his immediate thought was a BlastEnded Skrewt but something told him that wasnt the answer .Hed have to try and work out the clues .A person in disguise Harry muttered staring at her who lies .er .thatd be a an imposter .No thats not my guess !A a spy ?Ill come back to that .could you give me the next clue again please ?She repeated the next lines of the poem .The last thing to mend Harry repeated .Er .no idea . ‘middle of middle .could I have the last bit again ?She gave him the last four lines .The sound often heard during the search for a hard tofind word said Harry .Er .thatd be .er .hang on ‘er !Ers a sound !The sphinx smiled at him .Spy .er .spy .er .said Harry pacing up and down .A creature I wouldnt want to kiss .a spiderl The sphinx smiled more broadly .She got up stretched her front legs and then moved aside for him to pass .Thanks !said Harry and amazed at his own brilliance he dashed forward .He had to be close now he had to be .His wand was telling him he was bang on course as long as he didnt meet anything too horrible he might have a chance .Harry broke into a run .He had a choice of paths up ahead .Point Mel he whispered again to his wand and it spun around and pointed him to the right hand one .He dashed up this one and saw light ahead .The Triwizard Cup was gleaming on a plinth a hundred yards away .Suddenly a dark figure hurtled out onto the path in front of him .Cedric was going to get there first .Cedric was sprinting as fast as he could toward the cup and Harry knew he would never catch up Cedric was much taller had much longer legs Then Harry saw something immense over a hedge to his left moving quickly along a path that intersected with his own it was moving so fast Cedric was about to run into it and Cedric his eyes on the cup had not seen it Cedric !Harry bellowed .On your left !Cedric looked around just in time to hurl himself past the thing and avoid colliding with it but in his haste he tripped .Harry saw Cedrics wand fly out of his hand as a gigantic spider stepped into the path and began to bear down upon Cedric .Stupefy .Harry yelled the spell hit the spiders gigantic hairy black body but for all the good it did he might as well have thrown a stone at it the spider jerked scuttled around and ran at Harry instead .Stupefy !Impedimenta !Stupefy !But it was no use the spider was either so large or so magical that the spells were doing no more than aggravating it .Harry had one horrifying glimpse of eight shining black eyes and razorsharp pincers before it was upon him .He was lifted into the air in its front legs struggling madly he tried to kick it his leg connected with the pincers and next moment he was in excruciating pain .He could hear Cedric yelling Stupefy .too but his spell had no more effect than Harrys Harry raised his wand as the spider opened its pincers once more and shouted Expelliarmus .It worked the Disarming Spell made the spider drop him but that meant that Harry fell twelve feet onto his already injured leg which crumpled beneath him .Without pausing to think he aimed high at the spiders underbelly as he had done with the skrewt and shouted Stupefyl just as Cedric yelled the same thing .The two spells combined did what one alone had not The spider keeled over sideways flattening a nearby hedge and strewing the path with a tangle of hairy legs .Harry !he heard Cedric shouting .You all right ?Did it fall on you ?No Harry called back panting .He looked down at his leg .It was bleeding freely .He could see some sort of thick gluey secretion from the spiders pincers on his torn robes .He tried to get up but his leg was shaking badly and did not want to support his weight .He leaned against the hedge gasping for breath and looked around .Cedric was standing feet from the Triwizard Cup which was gleaming behind him .Take it then Harry panted to Cedric .Go on take it .Youre there .But Cedric didnt move .He merely stood there looking at Harry .Then he turned to stare at the cup .Harry saw the longing expression on his face in its golden light .Cedric looked around at Harry again who was now holding onto the hedge to support himself .Cedric took a deep breath .You take it .You should win .Thats twice youve saved my neck in here .Thats not how its supposed to work Harry said .He felt angry his leg was very painful he was aching all over from trying to throw off the spider and after all his efforts Cedric had beaten him to it just as hed beaten Harry to ask Cho to the ball .The one who reaches the cup first gets the points .Thats you .Im telling you Im not going to win any races on this leg .Cedric took a few paces nearer to the Stunned spider away from the cup shaking his head .No he said .Stop being noble said Harry irritably .Just take it then we can get out of here .Cedric watched Harry steadying himself holding tight to the hedge .You told me about the dragons Cedric said .I wouldve gone down in the first task if you hadnt told me what was coming .I had help on that too Harry snapped trying to mop up his bloody leg with his robes .You helped me with the egg were square .I had help on the egg in the first place said Cedric .Were still square said Harry testing his leg gingerly it shook violently as he put weight on it he had sprained his ankle when the spider had dropped him .You shouldve got more points on the second task said Cedric mulishly .You stayed behind to get all the hostages .I shouldve done that .I was the only one who was thick enough to take that song seriously !said Harry bitterly .Just take the cup !No said Cedric .He stepped over the spiders tangled legs to join Harry who stared at him .Cedric was serious .He was walking away from the sort of glory Hufflepuff House hadnt had in centuries .Go on Cedric said .He looked as though this was costing him every ounce of resolution he had but his face was set his arms were folded he seemed decided .Harry looked from Cedric to the cup .For one shining moment he saw himself emerging from the maze holding it .He saw himself holding the Triwizard Cup aloft heard the roar of the crowd saw Chos face shining with admiration more clearly than he had ever seen it before .and then the picture faded and he found himself staring at Cedrics shadowy stubborn face .Both of us Harry said .What ?Well take it at the same time .Its still a Hogwarts victory .Well tie for it .Cedric stared at Harry .He unfolded his arms .You you sure ?Yeah said Harry .Yeah .weve helped each other out havent we ?We both got here .Lets just take it together .For a moment Cedric looked as though he couldnt believe his ears then his face split in a grin .Youre on he said .Come here .He grabbed Harrys arm below the shoulder and helped Harry limp toward the plinth where the cup stood .When they had reached it they both held a hand out over one of the cups gleaming handles .On three right ?said Harry .One two three He and Cedric both grasped a handle .Instantly Harry felt a jerk somewhere behind his navel .His feet had left the ground .He could not unclench the hand holding the Triwizard Cup it was pulling him onward in a howl of wind and swirling color Cedric at his side .FLESH BLOOD AND BONE Harry felt his feet slam into the ground his injured leg gave way and he fell forward his hand let go of the Triwizard Cup at last .He raised his head .Where are we ?he said .Cedric shook his head .He got up pulled Harry to his feet and they looked around .They had left the Hogwarts grounds completely they had obviously traveled miles perhaps hundreds of miles for even the mountains surrounding the castle were gone .They were standing instead in a dark and overgrown graveyard the black outline of a small church was visible beyond a large yew tree to their right .A hill rose above them to their left .Harry could just make out the outline of a fine old house on the hillside .Cedric looked down at the Triwizard Cup and then up at Harry .Did anyone tell you the cup was a Portkey ?he asked .Nope said Harry .He was looking around the graveyard .It was completely silent and slightly eerie .Is this supposed to be part of the task ?I dunno said Cedric .He sounded slightly nervous .Wands out dyou reckon ?Yeah said Harry glad that Cedric had made the suggestion rather than him .They pulled out their wands .Harry kept looking around him .He had yet again the strange feeling that they were being watched .Someones coming he said suddenly .Squinting tensely through the darkness they watched the figure drawing nearer walking steadily toward them between the graves .Harry couldnt make out a face but from the way it was walking and holding its arms he could tell that it was carrying something .Whoever it was he was short and wearing a hooded cloak pulled up over his head to obscure his face .And several paces nearer the gap between them closing all the time Harry saw that the thing in the persons arms looked like a baby .or was it merely a bundle of robes ?Harry lowered his wand slightly and glanced sideways at Cedric .Cedric shot him a quizzical look .They both turned back to watch the approaching figure .It stopped beside a towering marble headstone only six feet from them .For a second Harry and Cedric and the short figure simply looked at one another .And then without warning Harrys scar exploded with pain .It was agony such as he had never felt in all his life his wand slipped from his fingers as he put his hands over his face his knees buckled he was on the ground and he could see nothing at all his head was about to split open .From far away above his head he heard a high cold voice say Kill the spare .A swishing noise and a second voice which screeched the words to the night Avada KedavraV A blast of green light blazed through Harrys eyelids and he heard something heavy fall to the ground beside him the pain in his scar reached such a pitch that he retched and then it diminished terrified of what he was about to see he opened his stinging eyes .Cedric was lying spreadeagled on the ground beside him .He was dead .For a second that contained an eternity Harry stared into Cedrics face at his open gray eyes blank and expressionless as the windows of a deserted house at his halfopen mouth which looked slightly surprised .And then before Harrys mind had accepted what he was seeing before he could feel anything but numb disbelief he felt himself being pulled to his feet .The short man in the cloak had put down his bundle lit his wand and was dragging Harry toward the marble headstone .Harry saw the name upon it flickering in the wandlight before he was forced around and slammed against it .TOM RIDDLE The cloaked man was now conjuring tight cords around Harry tying him from neck to ankles to the headstone .Harry could hear shallow fast breathing from the depths of the hood he struggled and the man hit him hit him with a hand that had a finger missing .And Harry realized who was under the hood .It was Wormtail .You !he gasped .But Wormtail who had finished conjuring the ropes did not reply he was busy checking the tightness of the cords his fingers trembling uncontrollably fumbling over the knots .Once sure that Harry was bound so tightly to the headstone that he couldnt move an inch Wormtail drew a length of some black material from the inside of his cloak and stuffed it roughly into Harrys mouth then without a word he turned from Harry and hurried away .Harry couldnt make a sound nor could he see where Wormtail had gone he couldnt turn his head to see beyond the headstone he could see only what was right in front of him .Cedrics body was lying some twenty feet away .Some way beyond him glinting in the starlight lay the Triwizard Cup .Harrys wand was on the ground at Cedrics feet .The bundle of robes that Harry had thought was a baby was close by at the foot of the grave .It seemed to be stirring fretfully .Harry watched it and his scar seared with pain again .and he suddenly knew that he didnt want to see what was in those robes .he didnt want that bundle opened .He could hear noises at his feet .He looked down and saw a gigantic snake slithering through the grass circling the headstone where he was tied .Wormtails fast wheezy breathing was growing louder again .It sounded as though he was forcing something heavy across the ground .Then he came back within Harrys range of vision and Harry saw him pushing a stone cauldron to the foot of the grave .It was full of what seemed to be water Harry could hear it slopping around and it was larger than any cauldron Harry had ever used a great stone belly large enough for a fullgrown man to sit in .The thing inside the bundle of robes on the ground was stirring more persistently as though it was trying to free itself .Now Wormtail was busying himself at the bottom of the cauldron with a wand .Suddenly there were crackling flames beneath it .The large snake slithered away into the darkness .The liquid in the cauldron seemed to heat very fast .The surface began not only to bubble but to send out fiery sparks as though it were on fire .Steam was thickening blurring the outline of Wormtail tending the fire .The movements beneath the robes became more agitated .And Harry heard the high cold voice again .Hurry The whole surface of the water was alight with sparks now .It might have been encrusted with diamonds .It is ready Master .Now .said the cold voice .Wormtail pulled open the robes on the ground revealing what was inside them and Harry let out a yell that was strangled in the wad of material blocking his mouth .It was as though Wormtail had flipped over a stone and revealed something ugly slimy and blind but worse a hundred times worse .The thing Wormtail had been carrying had the shape of a crouched human child except that Harry had never seen anything less like a child .It was hairless and scaly looking a dark raw reddish black .Its arms and legs were thin and feeble and its face no child alive ever had a face like that flat and snakelike with gleaming red eyes .The thing seemed almost helpless it raised its thin arms put them around Wormtails neck and Wormtail lifted it .As he did so his hood fell back and Harry saw the look of revulsion on Wormtails weak pale face in the firelight as he carried the creature to the rim of the cauldron .For one moment Harry saw the evil flat face illuminated in the sparks dancing on the surface of the potion .And then Wormtail lowered the creature into the cauldron there was a hiss and it vanished below the surface Harry heard its frail body hit the bottom with a soft thud .Let it drown Harry thought his scar burning almost past endurance please .let it drown .Wormtail was speaking .His voice shook he seemed frightened beyond his wits .He raised his wand closed his eyes and spoke to the night .Bone of the father unknowingly given you will renew your son !The surface of the grave at Harrys feet cracked .Horrified Harry watched as a fine trickle of dust rose into the air at Wormtails command and fell softly into the cauldron .The diamond surface of the water broke and hissed it sent sparks in all directions and turned a vivid poisonouslooking blue .And now Wormtail was whimpering .He pulled a long thin shining silver dagger from inside his cloak .His voice broke into petrified sobs .Flesh of the servant wwillingly given you will revive your master .He stretched his right hand out in front of him the hand with the missing finger .He gripped the dagger very tightly in his left hand and swung it upward .Harry realized what Wormtail was about to do a second before it happened he closed his eyes as tightly as he could but he could not block the scream that pierced the night that went through Harry as though he had been stabbed with the dagger too .He heard something fall to the ground heard Wormtails anguished panting then a sickening splash as something was dropped into the cauldron .Harry couldnt stand to look .but the potion had turned a burning red the light of it shone through Harrys closed eyelids .Wormtail was gasping and moaning with agony .Not until Harry felt Wormtails anguished breath on his face did he realize that Wormtail was right in front of him .Bblood of the enemy .forcibly taken .you will .resurrect your foe .Harry could do nothing to prevent it he was tied too tightly .Squinting down struggling hopelessly at the ropes binding him he saw the shining silver dagger shaking in Wormtails remaining hand .He felt its point penetrate the crook of his right arm and blood seeping down the sleeve of his torn robes .Wormtail still panting with pain fumbled in his pocket for a glass vial and held it to Harrys cut so that a dribble of blood fell into it .He staggered back to the cauldron with Harrys blood .He poured it inside .The liquid within turned instantly a blinding white .Wormtail his job done dropped to his knees beside the cauldron then slumped sideways and lay on the ground cradling the bleeding stump of his arm gasping and sobbing .The cauldron was simmering sending its diamond sparks in all directions so blindingly bright that it turned all else to velvety blackness .Nothing happened .Let it have drowned Harry thought let it have gone wrong .And then suddenly the sparks emanating from the cauldron were extinguished .A surge of white steam billowed thickly from the cauldron instead obliterating everything in front of Harry so that he couldnt see Wormtail or Cedric or anything but vapor hanging in the air .Its gone wrong he thought .its drowned .please .please let it be dead .But then through the mist in front of him he saw with an icy surge of terror the dark outline of a man tall and skeletally thin rising slowly from inside the cauldron .Robe me said the high cold voice from behind the steam and Wormtail sobbing and moaning still cradling his mutilated arm scrambled to pick up the black robes from the ground got to his feet reached up and pulled them onehanded over his masters head .The thin man stepped out of the cauldron staring at Harry .and Harry stared back into the face that had haunted his nightmares for three years .Whiter than a skull with wide livid scarlet eyes and a nose that was flat as a snakes with slits for nostrils .Lord Voldemort had risen again .THE DEATH EATERS Voldemort looked away from Harry and began examining his own body .His hands were like large pale spiders his long white fingers caressed his own chest his arms his face the red eyes whose pupils were slits like a cats gleamed still more brightly through the darkness .He held up his hands and flexed the fingers his expression rapt and exultant .He took not the slightest notice of Wormtail who lay twitching and bleeding on the ground nor of the great snake which had slithered back into sight and was circling Harry again hissing .Voldemort slipped one of those unnaturally longfingered hands into a deep pocket and drew out a wand .He caressed it gently too and then he raised it and pointed it at Wormtail who was lifted off the ground and thrown against the headstone where Harry was tied he fell to the foot of it and lay there crumpled up and crying .Voldemort turned his scarlet eyes upon Harry laughing a high cold mirthless laugh .Wormtails robes were shining with blood now he had wrapped the stump of his arm in them .My Lord .he choked my Lord .you promised .you did promise .Hold out your arm said Voldemort lazily .Oh Master .thank you Master .He extended the bleeding stump but Voldemort laughed again .The other arm Wormtail .Master please .please .Voldemort bent down and pulled out Wormtails left arm he forced the sleeve of Wormtails robes up past his elbow and Harry saw something upon the skin there something like a vivid red tattoo a skull with a snake protruding from its mouth the image that had appeared in the sky at the Quidditch World Cup the Dark Mark .Voldemort examined it carefully ignoring Wormtails uncontrollable weeping .It is back he said softly they will all have noticed it .and now we shall see .now we shall know .He pressed his long white forefinger to the brand on Wormtails arm .The scar on Harrys forehead seared with a sharp pain again and Wormtail let out a fresh howl Voldemort removed his fingers from Wormtails mark and Harry saw that it had turned jet black .A look of cruel satisfaction on his face Voldemort straightened up threw back his head and stared around at the dark graveyard .How many will be brave enough to return when they feel it ?he whispered his gleaming red eyes fixed upon the stars .And how many will be foolish enough to stay away ?He began to pace up and down before Harry and Wormtail eyes sweeping the graveyard all the while .After a minute or so he looked down at Harry again a cruel smile twisting his snakelike face .You stand Harry Potter upon the remains of my late father he hissed softly .A Muggle and a fool .very like your dear mother .But they both had their uses did they not ?Your mother died to defend you as a child .and I killed my father and see how useful he has proved himself in death .Voldemort laughed again .Up and down he paced looking all around him as he walked and the snake continued to circle in the grass .You see that house upon the hillside Potter ?My father lived there .My mother a witch who lived here in this village fell in love with him .But he abandoned her when she told him what she was .He didnt like magic my father .He left her and returned to his Muggle parents before I was even born Potter and she died giving birth to me leaving me to be raised in a Muggle orphanage .but I vowed to find him .I revenged myself upon him that fool who gave me his name .Tom Riddle .Still he paced his red eyes darting from grave to grave .Listen to me reliving family history .he said quietly why I am growing quite sentimental .But look Harry !My true family returns .The air was suddenly full of the swishing of cloaks .Between graves behind the yew tree in every shadowy space wizards were Apparating .All of them were hooded and masked .And one by one they moved forward .slowly cautiously as though they could hardly believe their eyes .Voldemort stood in silence waiting for them .Then one of the Death Eaters fell to his knees crawled toward Voldemort and kissed the hem of his black robes .Master .Master .he murmured .The Death Eaters behind him did the same each of them approaching Voldemort on his knees and kissing his robes before backing away and standing up forming a silent circle which enclosed Tom Riddles grave Harry Voldemort and the sobbing and twitching heap that was Wormtail .Yet they left gaps in the circle as though waiting for more people .Voldemort however did not seem to expect more .He looked around at the hooded faces and though there was no wind a rustling seemed to run around the circle as though it had shivered .Welcome Death Eaters said Voldemort quietly .Thirteen years .thirteen years since last we met .Yet you answer my call as though it were yesterday . .We are still united under the Dark Mark then !Or are we ?He put back his terrible face and sniffed his slitlike nostrils widening .I smell guilt he said .There is a stench of guilt upon the air .A second shiver ran around the circle as though each member of it longed but did not dare to step back from him .I see you all whole and healthy with your powers intact such prompt appearances !and I ask myself .why did this band of wizards never come to the aid of their master to whom they swore eternal loyalty ?No one spoke .No one moved except Wormtail who was upon the ground still sobbing over his bleeding arm .And I answer myself whispered Voldemort they must have believed me broken they thought I was gone .They slipped back among my enemies and they pleaded innocence and ignorance and bewitchment .And then I ask myself but how could they have believed I would not rise again ?They who knew the steps I took long ago to guard myself against mortal death ?They who had seen proofs of the immensity of my power in the times when I was mightier than any wizard living ?And I answer myself perhaps they believed a still greater power could exist one that could vanquish even Lord Voldemort .perhaps they now pay allegiance to another .perhaps that champion of commoners of Mudbloods and Muggles Albus Dumbledore ?At the mention of Dumbledores name the members of the circle stirred and some muttered and shook their heads .Voldemort ignored them .It is a disappointment to me .I confess myself disappointed .One of the men suddenly flung himself forward breaking the circle .Trembling from head to foot he collapsed at Voldemorts feet .Master !he shrieked Master forgive me !Forgive us all !Voldemort began to laugh .He raised his wand .Cruciol The Death Eater on the ground writhed and shrieked Harry was sure the sound must carry to the houses around .Let the police come he thought desperately .anyone .anything .Voldemort raised his wand .The tortured Death Eater lay flat upon the ground gasping .Get up Avery said Voldemort softly .Stand up .You ask for forgiveness ?I do not forgive .I do not forget .Thirteen long years .I want thirteen years repayment before I forgive you .Wormtail here has paid some of his debt already have you not Wormtail ?He looked down at Wormtail who continued to sob .You returned to me not out of loyalty but out of fear of your old friends .You deserve this pain Wormtail .You know that dont you ?Yes Master moaned Wormtail please Master .please .Yet you helped return me to my body said Voldemort coolly watching Wormtail sob on the ground .Worthless and traitorous as you are you helped me .and Lord Voldemort rewards his helpers .Voldemort raised his wand again and whirled it through the air .A streak of what looked like molten silver hung shining in the wands wake .Momentarily shapeless it writhed and then formed itself into a gleaming replica of a human hand bright as moonlight which soared downward and fixed itself upon Wormtails bleeding wrist .Wormtails sobbing stopped abruptly .His breathing harsh and ragged he raised his head and stared in disbelief at the silver hand now attached seamlessly to his arm as though he were wearing a dazzling glove .He flexed the shining fingers then trembling picked up a small twig on the ground and crushed it into powder .My Lord he whispered .Master .it is beautiful .thank you .thank you .He scrambled forward on his knees and kissed the hem of Voldemorts robes .May your loyalty never waver again Wormtail said Voldemort .No my Lord .never my Lord .Wormtail stood up and took his place in the circle staring at his powerful new hand his face still shining with tears .Voldemort now approached the man on Wormtails right .Lucius my slippery friend he whispered halting before him .I am told that you have not renounced the old ways though to the world you present a respectable face .You are still ready to take the lead in a spot of Muggletorture I believe ?Yet you never tried to find me Lucius .Your exploits at the Quidditch World Cup were fun I daresay .but might not your energies have been better directed toward finding and aiding your master ?My Lord I was constantly on the alert came Lucius Malfoys voice swiftly from beneath the hood .Had there been any sign from you any whisper of your whereabouts I would have been at your side immediately nothing could have prevented me And yet you ran from my Mark when a faithful Death Eater sent it into the sky last summer ?said Voldemort lazily and Mr Malfoy stopped talking abruptly .Yes I know all about that Lucius .You have disappointed me .I expect more faithful service in the future .Of course my Lord of course .You are merciful thank you .Voldemort moved on and stopped staring at the space large enough for two people that separated Malfoy and the next man .The Lestranges should stand here said Voldemort quietly .But they are entombed in Azkaban .They were faithful .They went to Azkaban rather than renounce me .When Azkaban is broken open the Lestranges will be honored beyond their dreams .The dementors will join us .they are our natural allies .we will recall the banished giants .I shall have all my devoted servants returned to me and an army of creatures whom all fear .He walked on .Some of the Death Eaters he passed in silence but he paused before others and spoke to them .Macnair .destroying dangerous beasts for the Ministry of Magic now Wormtail tells me ?You shall have better victims than that soon Macnair .Lord Voldemort will provide .Thank you Master .thank you murmured Macnair .And here Voldemort moved on to the two largest hooded figures we have Crabbe .you will do better this time will you not Crabbe ?And you Goyle ?They bowed clumsily muttering dully .Yes Master .We will Master .The same goes for you Nott said Voldemort quietly as he walked past a stooped figure in Mr Goyle s shadow .My Lord I prostrate myself before you I am your most faithful That will do said Voldemort .He had reached the largest gap of all and he stood surveying it with his blank red eyes as though he could see people standing there .And here we have six missing Death Eaters .three dead in my service .One too cowardly to return .he will pay .One who I believe has left me forever .he will be killed of course .and one who remains my most faithful servant and who has already reentered my service .The Death Eaters stirred and Harry saw their eyes dart sideways at one another through their masks .He is at Hogwarts that faithful servant and it was through his efforts that our young friend arrived here tonight .Yes said Voldemort a grin curling his lipless mouth as the eyes of the circle flashed in Harrys direction .Harry Potter has kindly joined us for my rebirthing party .One might go so far as to call him my guest of honor .There was a silence .Then the Death Eater to the right of Wormtail stepped forward and Lucius Malfoys voice spoke from under the mask .Master we crave to know .we beg you to tell us .how you have achieved this .this miracle .how you managed to return to us .Ah what a story it is Lucius said Voldemort .And it begins and ends with my young friend here .He walked lazily over to stand next to Harry so that the eyes of the whole circle were upon the two of them .The snake continued to circle .You know of course that they have called this boy my downfall ?Voldemort said softly his red eyes upon Harry whose scar began to burn so fiercely that he almost screamed in agony .You all know that on the night I lost my powers and my body I tried to kill him .His mother died in the attempt to save him and unwittingly provided him with a protection I admit I had not foreseen .I could not touch the boy .Voldemort raised one of his long white fingers and put it very close to Harrys cheek .His mother left upon him the traces of her sacrifice . .This is old magic I should have remembered it I was foolish to overlook it .but no matter .I can touch him now .Harry felt the cold tip of the long white finger touch him and thought his head would burst with the pain .Voldemort laughed softly in his ear then took the finger away and continued addressing the Death Eaters .I miscalculated my friends I admit it .My curse was deflected by the womans foolish sacrifice and it rebounded upon myself .aah .pain beyond pain my friends nothing could have prepared me for it .I was ripped from my body I was less than spirit less than the meanest ghost .but still I was alive .What I was even I do not know .I who have gone further than anybody along the path that leads to immortality .You know my goal to conquer death .And now I was tested and it appeared that one or more of my experiments had worked .for I had not been killed though the curse should have done it .Nevertheless I was as powerless as the weakest creature alive and without the means to help myself .for I had no body and every spell that might have helped me required the use of a wand .I remember only forcing myself sleeplessly endlessly second by second to exist .I settled in a faraway place in a forest and I waited .Surely one of my faithful Death Eaters would try and find me .one of them would come and perform the magic I could not to restore me to a body .but I waited in vain .The shiver ran once more around the circle of listening Death Eaters .Voldemort let the silence spiral horribly before continuing .Only one power remained to me .I could possess the bodies of others .But I dared not go where other humans were plentiful for I knew that the Aurors were still abroad and searching for me .I sometimes inhabited animals snakes of course being my preference but I was little better off inside them than as pure spirit for their bodies were ill adapted to perform magic .and my possession of them shortened their lives none of them lasted long .Then .four years ago .the means for my return seemed assured .A wizard young foolish and gullible wandered across my path in the forest I had made my home .Oh he seemed the very chance I had been dreaming of .for he was a teacher at Dumbledores school .he was easy to bend to my will .he brought me back to this country and after a while I took possession of his body to supervise him closely as he carried out my orders .But my plan failed .I did not manage to steal the Sorcerers Stone .I was not to be assured immortal life .I was thwarted .thwarted once again by Harry Potter .Silence once more nothing was stirring not even the leaves on the yew tree .The Death Eaters were quite motionless the glittering eyes in their masks fixed upon Voldemort and upon Harry .The servant died when I left his body and I was left as weak as ever I had been Voldemort continued .I returned to my hiding place far away and I will not pretend to you that I didnt then fear that I might never regain my powers .Yes that was perhaps my darkest hour .I could not hope that I would be sent another wizard to possess .and I had given up hope now that any of my Death Eaters cared what had become of me .One or two of the masked wizards in the circle moved uncomfortably but Voldemort took no notice .And then not even a year ago when I had almost abandoned hope it happened at last .a servant returned to me .Wormtail here who had faked his own death to escape justice was driven out of hiding by those he had once counted friends and decided to return to his master .He sought me in the country where it had long been rumored I was hiding .helped of course by the rats he met along the way .Wormtail has a curious affinity with rats do you not Wormtail ?His filthy little friends told him there was a place deep in an Albanian forest that they avoided where small animals like themselves had met their deaths by a dark shadow that possessed them .But his journey back to me was not smooth was it Wormtail ?For hungry one night on the edge of the very forest where he had hoped to find me he foolishly stopped at an inn for some food .and who should he meet there but one Bertha Jorkins a witch from the Ministry of Magic .Now see the way that fate favors Lord Voldemort .This might have been the end of Wormtail and of my last hope for regeneration .But Wormtail displaying a presence of mind I would never have expected from him convinced Bertha Jorkins to accompany him on a nighttime stroll .He overpowered her .he brought her to me .And Bertha Jorkins who might have ruined all proved instead to be a gift beyond my wildest dreams .for with a little persuasion she became a veritable mine of information .She told me that the Triwizard Tournament would be played at Hogwarts this year .She told me that she knew of a faithful Death Eater who would be only too willing to help me if I could only contact him .She told me many things .but the means I used to break the Memory Charm upon her were powerful and when I had extracted all useful information from her her mind and body were both damaged beyond repair .She had now served her purpose .I could not possess her .I disposed of her .Voldemort smiled his terrible smile his red eyes blank and pitiless .Wormtails body of course was ill adapted for possession as all assumed him dead and would attract far too much attention if noticed .However he was the ablebodied servant I needed and poor wizard though he is Wormtail was able to follow the instructions I gave him which would return me to a rudimentary weak body of my own a body I would be able to inhabit while awaiting the essential ingredients for true rebirth .a spell or two of my own invention .a little help from my dear Nagini Voldemorts red eyes fell upon the continually circling snake a potion concocted from unicorn blood and the snake venom Nagini provided .I was soon returned to an almost human form and strong enough to travel .There was no hope of stealing the Sorcerers Stone anymore for I knew that Dumbledore would have seen to it that it was destroyed .But I was willing to embrace mortal life again before chasing immortality .I set my sights lower .I would settle for my old body back again and my old strength .I knew that to achieve this it is an old piece of Dark Magic the potion that revived me tonight I would need three powerful ingredients .Well one of them was already at hand was it not Wormtail ?Flesh given by a servant .My fathers bone naturally meant that we would have to come here where he was buried .But the blood of a foe .Wormtail would have had me use any wizard would you not Wormtail ?Any wizard who had hated me .as so many of them still do .But I knew the one I must use if I was to rise again more powerful than I had been when I had fallen .I wanted Harry Potters blood .I wanted the blood of the one who had stripped me of power thirteen years ago .for the lingering protection his mother once gave him would then reside in my veins too .But how to get at Harry Potter ?For he has been better protected than I think even he knows protected in ways devised by Dumbledore long ago when it fell to him to arrange the boys future .Dumbledore invoked an ancient magic to ensure the boys protection as long as he is in his relations care .Not even I can touch him there .Then of course there was the Quidditch World Cup .I thought his protection might be weaker there away from his relations and Dumbledore but I was not yet strong enough to attempt kidnap in the midst of a horde of Ministry wizards .And then the boy would return to Hogwarts where he is under the crooked nose of that Muggleloving fool from morning until night .So how could I take him ?Why .by using Bertha Jorkinss information of course .Use my one faithful Death Eater stationed at Hogwarts to ensure that the boys name was entered into the Goblet of Fire .Use my Death Eater to ensure that the boy won the tournament that he touched the Triwizard Cup first the cup which my Death Eater had turned into a Portkey which would bring him here beyond the reach of Dumbledores help and protection and into my waiting arms .And here he is .the boy you all believed had been my downfall .Voldemort moved slowly forward and turned to face Harry .He raised his wand .Crucio It was pain beyond anything Harry had ever experienced his very bones were on fire his head was surely splitting along his scar his eyes were rolling madly in his head he wanted it to end .to black out .to die .And then it was gone .He was hanging limply in the ropes binding him to the headstone of Voldemorts father looking up into those bright red eyes through a kind of mist .The night was ringing with the sound of the Death Eaters laughter .You see I think how foolish it was to suppose that this boy could ever have been stronger than me said Voldemort .But I want there to be no mistake in anybodys mind .Harry Potter escaped me by a lucky chance .And I am now going to prove my power by killing him here and now in front of you all when there is no Dumbledore to help him and no mother to die for him .I will give him his chance .He will be allowed to fight and you will be left in no doubt which of us is the stronger .Just a little longer Nagini he whispered and the snake glided away through the grass to where the Death Eaters stood watching .Now untie him Wormtail and give him back his wand .PRIORI INCANTATEM Wormtail approached Harry who scrambled to find his feet to support his own weight before the ropes were untied .Wormtail raised his new silver hand pulled out the wad of material gagging Harry and then with one swipe cut through the bonds tying Harry to the gravestone .There was a split second perhaps when Harry might have considered running for it but his injured leg shook under him as he stood on the overgrown grave as the Death Eaters closed ranks forming a tighter circle around him and Voldemort so that the gaps where the missing Death Eaters should have stood were filled .Wormtail walked out of the circle to the place where Cedrics body lay and returned with Harrys wand which he thrust roughly into Harrys hand without looking at him .Then Wormtail resumed his place in the circle of watching Death Eaters .You have been taught how to duel Harry Potter ?said Voldemort softly his red eyes glinting through the darkness .At these words Harry remembered as though from a former life the dueling club at Hogwarts he had attended briefly two years ago .All he had learned there was the Disarming Spell Expelliarmus .and what use would it be to deprive Voldemort of his wand even if he could when he was surrounded by Death Eaters outnumbered by at least thirty to one ?He had never learned anything that could possibly fit him for this .He knew he was facing the thing against which Moody had always warned .the unblockable Avada Kedavra curse and Voldemort was right his mother was not here to die for him this time .He was quite unprotected .We bow to each other Harry said Voldemort bending a little but keeping his snakelike face upturned to Harry .Come the niceties must be observed .Dumbledore would like you to show manners .Bow to death Harry .The Death Eaters were laughing again .Voldemorts lipless mouth was smiling .Harry did not bow .He was not going to let Voldemort play with him before killing him .he was not going to give him that satisfaction .I said bow Voldemort said raising his wand and Harry felt his spine curve as though a huge invisible hand were bending him ruthlessly forward and the Death Eaters laughed harder than ever .Very good said Voldemort softly and as he raised his wand the pressure bearing down upon Harry lifted too .And now you face me like a man .straight backed and proud the way your father died .And now we duel .Voldemort raised his wand and before Harry could do anything to defend himself before he could even move he had been hit again by the Cruciatus Curse .The pain was so intense so allconsuming that he no longer knew where he was .Whitehot knives were piercing every inch of his skin his head was surely going to burst with pain he was screaming more loudly than hed ever screamed in his life And then it stopped .Harry rolled over and scrambled to his feet he was shaking as uncontrollably as Wormtail had done when his hand had been cut off he staggered sideways into the wall of watching Death Eaters and they pushed him away back toward Voldemort .A little break said Voldemort the slitlike nostrils dilating with excitement a little pause .That hurt didnt it Harry ?You dont want me to do that again do you ?Harry didnt answer .He was going to die like Cedric those pitiless red eyes were telling him so .he was going to die and there was nothing he could do about it .but he wasnt going to play along .He wasnt going to obey Voldemort .he wasnt going to beg .I asked you whether you want me to do that again said Voldemort softly .Answer me !ImperioV And Harry felt for the third time in his life the sensation that his mind had been wiped of all thought .Ah it was bliss not to think it was as though he were floating dreaming .just answer no .say no .just answer no .I will not said a stronger voice in the back of his head I wont answer .Just answer no .I wont do it I wont say it .Just answer no .I WONT !And these words burst from Harrys mouth they echoed through the graveyard and the dream state was lifted as suddenly as though cold water had been thrown over him back rushed the aches that the Cruciatus Curse had left all over his body back rushed the realization of where he was and what he was facing .You wont ?said Voldemort quietly and the Death Eaters were not laughing now .You wont say no ?Harry obedience is a virtue I need to teach you before you die .Perhaps another little dose of pain ?Voldemort raised his wand but this time Harry was ready with the reflexes born of his Quidditch training he flung himself sideways onto the ground he rolled behind the marble headstone of Voldemorts father and he heard it crack as the curse missed him .We are not playing hideandseek Harry said Voldemorts soft cold voice drawing nearer as the Death Eaters laughed .You cannot hide from me .Does this mean you are tired of our duel ?Does this mean that you would prefer me to finish it now Harry ?Come out Harry .come out and play then .it will be quick .it might even be painless .I would not know .I have never died .Harry crouched behind the headstone and knew the end had come .There was no hope .no help to be had .And as he heard Voldemort draw nearer still he knew one thing only and it was beyond fear or reason He was not going to die crouching here like a child playing hideandseek he was not going to die kneeling at Voldemorts feet .he was going to die upright like his father and he was going to die trying to defend himself even if no defense was possible .Before Voldemort could stick his snakelike face around the headstone Harry stood up .he gripped his wand tightly in his hand thrust it out in front of him and threw himself around the headstone facing Voldemort .Voldemort was ready .As Harry shouted ExpelliarmusV Voldemort cried Avada KedavraV A jet of green light issued from Voldemorts wand just as a jet of red light blasted from Harrys they met in midair and suddenly Harrys wand was vibrating as though an electric charge were surging through it his hand seized up around it he couldnt have released it if hed wanted to and a narrow beam of light connected the two wands neither red nor green but bright deep gold .Harry following the beam with his astonished gaze saw that Voldemorts long white fingers too were gripping a wand that was shaking and vibrating .And then nothing could have prepared Harry for this he felt his feet lift from the ground .He and Voldemort were both being raised into the air their wands still connected by that thread of shimmering golden light .They glided away from the tombstone of Voldemorts father and then came to rest on a patch of ground that was clear and free of graves .The Death Eaters were shouting they were asking Voldemort for instructions they were closing in reforming the circle around Harry and Voldemort the snake slithering at their heels some of them drawing their wands The golden thread connecting Harry and Voldemort splintered though the wands remained connected a thousand more beams arced high over Harry and Voldemort crisscrossing all around them until they were enclosed in a golden domeshaped web a cage of light beyond which the Death Eaters circled like jackals their cries strangely muffled now .Do nothing !Voldemort shrieked to the Death Eaters and Harry saw his red eyes wide with astonishment at what was happening saw him fighting to break the thread of light still connecting his wand with Harrys Harry held onto his wand more tightly with both hands and the golden thread remained unbroken .Do nothing unless I command you !Voldemort shouted to the Death Eaters .And then an unearthly and beautiful sound filled the air .It was coming from every thread of the light spun web vibrating around Harry and Voldemort .It was a sound Harry recognized though he had heard it only once before in his life phoenix song .It was the sound of hope to Harry .the most beautiful and welcome thing he had ever heard in his life .He felt as though the song were inside him instead of just around him .It was the sound he connected with Dumbledore and it was almost as though a friend were speaking in his ear .Dont break the connection .I know Harry told the music I know I mustnt .but no sooner had he thought it than the thing became much harder to do .His wand began to vibrate more powerfully than ever .and now the beam between him and Voldemort changed too .it was as though large beads of light were sliding up and down the thread connecting the wands Harry felt his wand give a shudder under his hand as the light beads began to slide slowly and steadily his way .The direction of the beams movement was now toward him from Voldemort and he felt his wand shudder angrily .As the closest bead of light moved nearer to Harrys wand tip the wood beneath his fingers grew so hot he feared it would burst into flame .The closer that bead moved the harder Harrys wand vibrated he was sure his wand would not survive contact with it it felt as though it was about to shatter under his fingers He concentrated every last particle of his mind upon forcing the bead back toward Voldemort his ears full of phoenix song his eyes furious fixed .and slowly very slowly the beads quivered to a halt and then just as slowly they began to move the other way .and it was Voldemort s wand that was vibrating extra hard now .Voldemort who looked astonished and almost fearful .One of the beads of light was quivering inches from the tip of Voldemorts wand .Harry didnt understand why he was doing it didnt know what it might achieve .but he now concentrated as he had never done in his life on forcing that bead of light right back into Voldemorts wand .and slowly .very slowly .it moved along the golden thread .it trembled for a moment .and then it connected .At once Voldemorts wand began to emit echoing screams of pain .then Voldemorts red eyes widened with shock a dense smoky hand flew out of the tip of it and vanished .the ghost of the hand he had made Wormtail .more shouts of pain .and then something much larger began to blossom from Voldemorts wand tip a great grayish something that looked as though it were made of the solidest densest smoke .It was a head .now a chest and arms .the torso of Cedric Diggory .If ever Harry might have released his wand from shock it would have been then but instinct kept him clutching his wand tightly so that the thread of golden light remained unbroken even though the thick gray ghost of Cedric Diggory was it a ghost ?it looked so solid emerged in its entirety from the end of Voldemorts wand as though it were squeezing itself out of a very narrow tunnel .and this shade of Cedric stood up and looked up and down the golden thread of light and spoke .Hold on Harry it said .Its voice was distant and echoing .Harry looked at Voldemort .his wide red eyes were still shocked .he had no more expected this than Harry had .and very dimly Harry heard the frightened yells of the Death Eaters paround the edges of the golden dome .More screams of pain from the wand .and then something else emerged from its tip .the dense shadow of a second head quickly followed by arms and torso .an old man Harry had seen only in a dream was now pushing himself out of the end of the wand just as Cedric had done .and his ghost or his shadow or whatever it was fell next to Cedrics and surveyed Harry and Voldemort and the golden web and the connected wands with mild surprise leaning on his walking stick .He was a real wizard then ?the old man said his eyes on Voldemort .Killed me that one did .You fight him boy .But already yet another head was emerging .and this head gray as a smoky statue was a womans .Harry both arms shaking now as he fought to keep his wand still saw her drop to the ground and straighten up like the others staring .The shadow of Bertha Jorkins surveyed the battle before her with wide eyes .Dont let go now !she cried and her voice echoed like Cedrics as though from very far away .Dont let him get you Harry dont let go !She and the other two shadowy figures began to pace around the inner walls of the golden web while the Death Eaters flitted around the outside of it .and Voldemorts dead victims whispered as they circled the duelers whispered words of encouragement to Harry and hissed words Harry couldnt hear to Voldemort .And now another head was emerging from the tip of Voldemorts wand .and Harry knew when he saw it who it would be .he knew as though he had expected it from the moment when Cedric had appeared from the wand .knew because the woman was the one hed thought of more than any other tonight .The smoky shadow of a young woman with long hair fell to the ground as Bertha had done straightened up and looked at him .and Harry his arms shaking madly now looked back into the ghostly face of his mother .Your fathers coming .she said quietly .Hold on for your father .it will be all right .hold on .And he came .first his head then his body .tall and untidyhaired like Harry the smoky shadowy form of James Potter blossomed from the end of Voldemorts wand fell to the ground and straightened like his wife .He walked close to Harry looking down at him and he spoke in the same distant echoing voice as the others but quietly so that Voldemort his face now livid with fear as his victims prowled around him could not hear .When the connection is broken we will linger for only moments .but we will give you time .you must get to the Portkey it will return you to Hogwarts .do you understand Harry ?Yes Harry gasped fighting now to keep a hold on his wand which was slipping and sliding beneath his fingers .Harry .whispered the figure of Cedric take my body back will you ?Take my body back to my parents .I will said Harry his face screwed up with the effort of holding the wand .Do it now whispered his fathers voice be ready to run .do it now .NOW !Harry yelled he didnt think he could have held on for another moment anyway he pulled his wand upward with an almighty wrench and the golden thread broke the cage of light vanished the phoenix song died but the shadowy figures of Voldemorts victims did not disappear they were closing in upon Voldemort shielding Harry from his gaze And Harry ran as he had never run in his life knocking two stunned Death Eaters aside as he passed he zigzagged behind headstones feeling their curses following him hearing them hit the headstones he was dodging curses and graves pelting toward Cedrics body no longer aware of the pain in his leg his whole being concentrated on what he had to do Stun him he heard Voldemort scream .Ten feet from Cedric Harry dived behind a marble angel to avoid the jets of red light and saw the tip of its wing shatter as the spells hit it .Gripping his wand more tightly he dashed out from behind the angel Impedimental he bellowed pointing his wand wildly over his shoulder at the Death Eaters running at him .From a muffled yell he thought he had stopped at least one of them but there was no time to stop and look he jumped over the cup and dived as he heard more wand blasts behind him more jets of light flew over his head as he fell stretching out his hand to grab Cedrics arm Stand aside !I will kill him !He is mine !shrieked Voldemort .Harrys hand had closed on Cedrics wrist one tombstone stood between him and Voldemort but Cedric was too heavy to carry and the cup was out of reach Voldemorts red eyes flamed in the darkness .Harry saw his mouth curl into a smile saw him raise his wand .Acciol Harry yelled pointing his wand at the Triwizard Cup .It flew into the air and soared toward him .Harry caught it by the handle He heard Voldemorts scream of fury at the same moment that he felt the jerk behind his navel that meant the Portkey had worked it was speeding him away in a whirl of wind and color and Cedric along with him .They were going back .VERITASERUM Harry felt himself slam flat into the ground his face was pressed into grass the smell of it filled his nostrils .He had closed his eyes while the Portkey transported him and he kept them closed now .He did not move .All the breath seemed to have been knocked out of him his head was swimming so badly he felt as though the ground beneath him were swaying like the deck of a ship .To hold himself steady he tightened his hold on the two things he was still clutching the smooth cold handle of the Tri wizard Cup and Cedrics body .He felt as though he would slide away into the blackness gathering at the edges of his brain if he let go of either of them .Shock and exhaustion kept him on the ground breathing in the smell of the grass waiting .waiting for someone to do something .something to happen .and all the while his scar burned dully on his forehead .A torrent of sound deafened and confused him there were voices everywhere footsteps screams .He remained where he was his face screwed up against the noise as though it were a nightmare that would pass .Then a pair of hands seized him roughly and turned him over .Harry !HarryV He opened his eyes .He was looking up at the starry sky and Albus Dumbledore was crouched over him .The dark shadows of a crowd of people pressed in around them pushing nearer Harry felt the ground beneath his head reverberating with their footsteps .He had come back to the edge of the maze .He could see the stands rising above him the shapes of people moving in them the stars above .Harry let go of the cup but he clutched Cedric to him even more tightly .He raised his free hand and seized Dumbledore s wrist while Dumbledore s face swam in and out of focus .Hes back Harry whispered .Hes back .Voldemort .Whats going on ?Whats happened ?The face of Cornelius Fudge appeared upside down over Harry it looked white appalled .My God Diggory !it whispered .Dumbledore hes dead !The words were repeated the shadowy figures pressing in on them gasped it to those around them .and then others shouted it screeched it into the night Hes dead !Hes dead !Cedric Diggory !Dead .Harry let go of him he heard Fudges voice say and he felt fingers trying to pry him from Cedrics limp body but Harry wouldnt let him go .Then Dumbledores face which was still blurred and misted came closer .Harry you cant help him now .Its over .Let go .He wanted me to bring him back Harry muttered it seemed important to explain this .He wanted me to bring him back to his parents .Thats right Harry .just let go now .Dumbledore bent down and with extraordinary strength for a man so old and thin raised Harry from the ground and set him on his feet .Harry swayed .His head was pounding .His injured leg would no longer support his weight .The crowd around them jostled fighting to get closer pressing darkly in on him Whats happened ?Whats wrong with him ?Dig gorys dead Hell need to go to the hospital wing !Fudge was saying loudly .Hes ill hes injured Dumbledore Diggorys parents theyre here theyre in the stands .Ill take Harry Dumbledore Ill take him No I would prefer Dumbledore Amos Diggorys running .hes coming over .Dont you think you should tell him before he sees ?Harry stay here Girls were screaming sobbing hysterically .The scene flickered oddly before Harrys eyes .Its all right son Ive got you .come on .hospital wing .Dumbledore said stay said Harry thickly the pounding in his scar making him feel as though he was about to throw up his vision was blurring worse than ever .You need to lie down .Come on now .Someone larger and stronger than he was was half pulling half carrying him through the frightened crowd .Harry heard people gasping screaming and shouting as the man supporting him pushed a path through them taking him back to the castle .Across the lawn past the lake and the Durmstrang ship Harry heard nothing but the heavy breathing of the man helping him walk .What happened Harry ?the man asked at last as he lifted Harry up the stone steps .Clunk .Clunk .Clunk .It was MadEye Moody .Cup was a Portkey said Harry as they crossed the entrance hall .Took me and Cedric to a graveyard .and Voldemort was there .Lord Voldemort .Clunk .Clunk .Clunk .Up the marble stairs .The Dark Lord was there ?What happened then ?Killed Cedric .they killed Cedric .And then ?Clunk .Clunk .Clunk .Along the corridor .Made a potion .got his body back .The Dark Lord got his body back ?Hes returned ?And the Death Eaters came .and then we dueled .You dueled with the Dark Lord ?Got away .my wand .did something funny .I saw my mum and dad .they came out of his wand .In here Harry .in here and sit down .Youll be all right now .drink this .Harry heard a key scrape in a lock and felt a cup being pushed into his hands .Drink it .youll feel better .come on now Harry I need to know exactly what happened .Moody helped tip the stuff down Harrys throat he coughed a peppery taste burning his throat .Moodys office came into sharper focus and so did Moody himself .He looked as white as Fudge had looked and both eyes were fixed unblinkingly upon Harrys face .Voldemorts back Harry ?Youre sure hes back ?How did he do it ?He took stuff from his fathers grave and from Wormtail and me said Harry .His head felt clearer his scar wasnt hurting so badly he could now see Moodys face distinctly even though the office was dark .He could still hear screaming and shouting from the distant Quidditch field .What did the Dark Lord take from you ?said Moody .Blood said Harry raising his arm .His sleeve was ripped where Wormtails dagger had torn it .Moody let out his breath in a long low hiss .And the Death Eaters ?They returned ?Yes said Harry .Loads of them .How did he treat them ?Moody asked quietly .Did he forgive them ?But Harry had suddenly remembered .He should have told Dumbledore he should have said it straightaway Theres a Death Eater at Hogwarts !Theres a Death Eater here they put my name in the Goblet of Fire they made sure I got through to the end Harry tried to get up but Moody pushed him back down .I know who the Death Eater is he said quietly .Karkaroff ?said Harry wildly .Where is he ?Have you got him ?Is he locked up ?Karkaroff ?said Moody with an odd laugh .Karkaroff fled tonight when he felt the Dark Mark burn upon his arm .He betrayed too many faithful supporters of the Dark Lord to wish to meet them .but I doubt he will get far .The Dark Lord has ways of tracking his enemies .Karkaroffs gone ?He ran away ?But then he didnt put my name in the goblet ?No said Moody slowly .No he didnt .It was I who did that .Harry heard but didnt believe .No you didnt he said .You didnt do that .you cant have done .I assure you I did said Moody and his magical eye swung around and fixed upon the door and Harry knew he was making sure that there was no one outside it .At the same time Moody drew out his wand and pointed it at Harry .He forgave them then ?he said .The Death Eaters who went free ?The ones who escaped Azkaban ?What ?said Harry .He was looking at the wand Moody was pointing at him .This was a bad joke it had to be .I asked you said Moody quietly whether he forgave the scum who never even went to look for him .Those treacherous cowards who wouldnt even brave Azkaban for him .The faithless worthless bits of filth who were brave enough to cavort in masks at the Quidditch World Cup but fled at the sight of the Dark Mark when I fired it into the sky .You fired .What are you talking about . ?I told you Harry .I told you .If theres one thing I hate more than any other its a Death Eater who walked free .They turned their backs on my master when he needed them most .I expected him to punish them .I expected him to torture them .Tell me he hurt them Harry .Moodys face was suddenly lit with an insane smile .Tell me he told them that I I alone remained faithful .prepared to risk everything to deliver to him the one thing he wanted above all .you .You didnt .it it cant be you .Who put your name in the Goblet of Fire under the name of a different school ?I did .Who frightened off every person I thought might try to hurt you or prevent you from winning the tournament ?I did .Who nudged Hagrid into showing you the dragons ?I did .Who helped you see the only way you could beat the dragon ?I did .Moodys magical eye had now left the door .It was fixed upon Harry .His lopsided mouth leered more widely than ever .It hasnt been easy Harry guiding you through these tasks without arousing suspicion .I have had to use every ounce of cunning I possess so that my hand would not be detectable in your success .Dumbledore would have been very suspicious if you had managed everything too easily .As long as you got into that maze preferably with a decent head start then I knew I would have a chance of getting rid of the other champions and leaving your way clear .But I also had to contend with your stupidity .The second task .that was when I was most afraid we would fail .I was keeping watch on you Potter .I knew you hadnt worked out the eggs clue so I had to give you another hint You didnt Harry said hoarsely .Cedric gave me the clue Who told Cedric to open it underwater ?I did .I trusted that he would pass the information on to you .Decent people are so easy to manipulate Potter .I was sure Cedric would want to repay you for telling him about the dragons and so he did .But even then Potter even then you seemed likely to fail .I was watching all the time .all those hours in the library .Didnt you realize that the book you needed was in your dormitory all along ?I planted it there early on I gave it to the Longbottom boy dont you remember ?Magical Water Plants of the Mediterranean .It would have told you all you needed to know about gillyweed .I expected you to ask everyone and anyone you could for help .Longbottom would have told you in an instant .But you did not .you did not .You have a streak of pride and independence that might have ruined all .So what could I do ?Feed you information from another innocent source .You told me at the Yule Ball a houseelf called Dobby had given you a Christmas present .I called the elf to the staffroom to collect some robes for cleaning .I staged a loud conversation with Professor McGonagall about the hostages who had been taken and whether Potter would think to use gillyweed .And your little elf friend ran straight to Snapes office and then hurried to find you .Moodys wand was still pointing directly at Harrys heart .Over his shoulder foggy shapes were moving in the FoeGlass on the wall .You were so long in that lake Potter I thought you had drowned .But luckily Dumbledore took your idiocy for nobility and marked you high for it .I breathed again .You had an easier time of it than you should have in that maze tonight of course said Moody .I was patrolling around it able to see through the outer hedges able to curse many obstacles out of your way .I Stunned Fleur Delacour as she passed .I put the Imperius Curse on Krum so that he would finish Diggory and leave your path to the cup clear .Harry stared at Moody .He just didnt see how this could be .Dumbledores friend the famous Auror .the one who had caught so many Death Eaters .It made no sense .no sense at all .The foggy shapes in the FoeGlass were sharpening had become more distinct .Harry could see the outlines of three people over Moodys shoulder moving closer and closer .But Moody wasnt watching them .His magical eye was upon Harry .The Dark Lord didnt manage to kill you Potter and he so wanted to whispered Moody .Imagine how he will reward me when he finds I have done it for him .I gave you to him the thing he needed above all to regenerate and then I killed you for him .I will be honored beyond all other Death Eaters .I will be his dearest his closest supporter .closer than a son .Moodys normal eye was bulging the magical eye fixed upon Harry .The door was barred and Harry knew he would never reach his own wand in time .The Dark Lord and I said Moody and he looked completely insane now towering over Harry leering down at him have much in common .Both of us for instance had very disappointing fathers .very disappointing indeed .Both of us suffered the indignity Harry of being named after those fathers .And both of us had the pleasure .the very great pleasure .of killing our fathers to ensure the continued rise of the Dark Order !Youre mad Harry said he couldnt stop himself youre mad !Mad am I ?said Moody his voice rising uncontrollably .Well see !Well see whos mad now that the Dark Lord has returned with me at his side !He is back Harry Potter you did not conquer him and now I conquer you !Moody raised his wand he opened his mouth Harry plunged his own hand into his robes Stupefy There was a blinding flash of red light and with a great splintering and crashing the door of Moodys office was blasted apart Moody was thrown backward onto the office floor .Harry still staring at the place where Moodys face had been saw Albus Dumbledore Professor Snape and Professor McGonagall looking back at him out of the FoeGlass .He looked around and saw the three of them standing in the doorway Dumbledore in front his wand outstretched .At that moment Harry fully understood for the first time why people said Dumbledore was the only wizard Voldemort had ever feared .The look upon Dumbledore s face as he stared down at the unconscious form of MadEye Moody was more terrible than Harry could have ever imagined .There was no benign smile upon Dumbledore s face no twinkle in the eyes behind the spectacles .There was cold fury in every line of the ancient face a sense of power radiated from Dumbledore as though he were giving off burning heat .He stepped into the office placed a foot underneath Moodys unconscious body and kicked him over onto his back so that his face was visible .Snape followed him looking into the FoeGlass where his own face was still visible glaring into the room .Professor McGonagall went straight to Harry .Come along Potter she whispered .The thin line of her mouth was twitching as though she was about to cry .Come along .hospital wing .No said Dumbledore sharply .Dumbledore he ought to look at him hes been through enough tonight He will stay Minerva because he needs to understand said Dumbledore curtly .Understanding is the first step to acceptance and only with acceptance can there be recovery .He needs to know who has put him through the ordeal he has suffered tonight and why .Moody Harry said .He was still in a state of complete disbelief .How can it have been Moody ?This is not Alastor Moody said Dumbledore quietly .You have never known Alastor Moody .The real Moody would not have removed you from my sight after what happened tonight .The moment he took you I knew and I followed .Dumbledore bent down over Moodys limp form and put a hand inside his robes .He pulled out Moodys hip flask and a set of keys on a ring .Then he turned to Professors McGonagall and Snape .Severus please fetch me the strongest Truth Potion you possess and then go down to the kitchens and bring up the houseelf called Winky .Minerva kindly go down to Hagrids house where you will find a large black dog sitting in the pumpkin patch .Take the dog up to my office tell him I will be with him shortly then come back here .If either Snape or McGonagall found these instructions peculiar they hid their confusion .Both turned at once and left the office .Dumbledore walked over to the trunk with seven locks fitted the first key in the lock and opened it .It contained a mass of spellbooks .Dumbledore closed the trunk placed a second key in the second lock and opened the trunk again .The spellbooks had vanished this time it contained an assortment of broken Sneakoscopes some parchment and quills and what looked like a silvery Invisibility Cloak .Harry watched astounded as Dumbledore placed the third fourth fifth and sixth keys in their respective locks reopening the trunk and each time revealing different contents .Then he placed the seventh key in the lock threw open the lid and Harry let out a cry of amazement .He was looking down into a kind of pit an underground room and lying on the floor some ten feet below apparently fast asleep thin and starved in appearance was the real MadEye Moody .His wooden leg was gone the socket that should have held the magical eye looked empty beneath its lid and chunks of his grizzled hair were missing .Harry stared thunderstruck between the sleeping Moody in the trunk and the unconscious Moody lying on the floor of the office .Dumbledore climbed into the trunk lowered himself and fell lightly onto the floor beside the sleeping Moody .He bent over him .Stunned controlled by the Imperius Curse very weak he said .Of course they would have needed to keep him alive .Harry throw down the imposters cloak hes freezing .Madam Pomfrey will need to see him but he seems in no immediate danger .Harry did as he was told Dumbledore covered Moody in the cloak tucked it around him and clambered out of the trunk again .Then he picked up the hip flask that stood upon the desk unscrewed it and turned it over .A thick glutinous liquid splattered onto the office floor .Polyjuice Potion Harry said Dumbledore .You see the simplicity of it and the brilliance .For Moody never does drink except from his hip flask hes well known for it .The imposter needed of course to keep the real Moody close by so that he could continue making the potion .You see his hair .Dumbledore looked down on the Moody in the trunk .The imposter has been cutting it off all year see where it is uneven ?But I think in the excitement of tonight our fake Moody might have forgotten to take it as frequently as he should have done .on the hour .every hour .We shall see .Dumbledore pulled out the chair at the desk and sat down upon it his eyes fixed upon the unconscious Moody on the floor .Harry stared at him too .Minutes passed in silence .Then before Harrys very eyes the face of the man on the floor began to change .The scars were disappearing the skin was becoming smooth the mangled nose became whole and started to shrink .The long mane of grizzled gray hair was withdrawing into the scalp and turning the color of straw .Suddenly with a loud clunk the wooden leg fell away as a normal leg regrew in its place next moment the magical eyeball had popped out of the mans face as a real eye replaced it it rolled away across the floor and continued to swivel in every direction .Harry saw a man lying before him paleskinned slightly freckled with a mop of fair hair .He knew who he was .He had seen him in Dumbledores Pensieve had watched him being led away from court by the dementors trying to convince Mr Crouch that he was innocent .but he was lined around the eyes now and looked much older .There were hurried footsteps outside in the corridor .Snape had returned with Winky at his heels .Professor McGonagall was right behind them .Crouch !Snape said stopping dead in the doorway .Barty Crouch !Good heavens said Professor McGonagall stopping dead and staring down at the man on the floor .Filthy disheveled Winky peered around Snapes legs .Her mouth opened wide and she let out a piercing shriek .Master Barty Master Barty what is you doing here ?She flung herself forward onto the young mans chest .You is killed him !You is killed him !You is killed Masters son !He is simply Stunned Winky said Dumbledore .Step aside please .Severus you have the potion ?Snape handed Dumbledore a small glass bottle of completely clear liquid the Veritaserum with which he had threatened Harry in class .Dumbledore got up bent over the man on the floor and pulled him into a sitting position against the wall beneath the Foe Glass in which the reflections of Dumbledore Snape and McGonagall were still glaring down upon them all .Winky remained on her knees trembling her hands over her face .Dumbledore forced the mans mouth open and poured three drops inside it .Then he pointed his wand at the mans chest and said Rennervate .Crouchs son opened his eyes .His face was slack his gaze unfocused .Dumbledore knelt before him so that their faces were level .Can you hear me ?Dumbledore asked quietly .The mans eyelids flickered .Yes he muttered .I would like you to tell us said Dumbledore softly how you came to be here .How did you escape from Azkaban ?Crouch took a deep shuddering breath then began to speak in a flat expressionless voice .My mother saved me .She knew she was dying .She persuaded my father to rescue me as a last favor to her .He loved her as he had never loved me .He agreed .They came to visit me .They gave me a draft of Polyjuice Potion containing one of my mothers hairs .She took a draft of Polyjuice Potion containing one of my hairs .We took on each others appearance .Winky was shaking her head trembling .Say no more Master Barty say no more you is getting your father into trouble !But Crouch took another deep breath and continued in the same flat voice .The dementors are blind .They sensed one healthy one dying person entering Azkaban .They sensed one healthy one dying person leaving it .My father smuggled me out disguised as my mother in case any prisoners were watching through their doors .My mother died a short while afterward in Azkaban .She was careful to drink Polyjuice Potion until the end .She was buried under my name and bearing my appearance .Everyone believed her to be me .The mans eyelids flickered .And what did your father do with you when he had got you home ?said Dumbledore quietly .Staged my mothers death .A quiet private funeral .That grave is empty .The houseelf nursed me back to health .Then I had to be concealed .I had to be controlled .My father had to use a number of spells to subdue me .When I had recovered my strength I thought only of finding my master .of returning to his service .How did your father subdue you ?said Dumbledore .The Imperius Curse Crouch said .I was under my fathers control .I was forced to wear an Invisibility Cloak day and night .I was always with the houseelf .She was my keeper and caretaker .She pitied me .She persuaded my father to give me occasional treats .Rewards for my good behavior .Master Barty Master Barty sobbed Winky through her hands .You isnt ought to tell them we is getting in trouble .Did anybody ever discover that you were still alive ?said Dumbledore softly .Did anyone know except your father and the houseelf ?Yes said Crouch his eyelids flickering again .A witch in my fathers office .Bertha Jorkins .She came to the house with papers for my fathers signature .He was not at home .Winky showed her inside and returned to the kitchen to me .But Bertha Jorkins heard Winky talking to me .She came to investigate .She heard enough to guess who was hiding under the Invisibility Cloak .My father arrived home .She confronted him .He put a very powerful Memory Charm on her to make her forget what shed found out .Too powerful .He said it damaged her memory permanently .Why is she coming to nose into my masters private business ?sobbed Winky .Why isnt she leaving us be ?Tell me about the Quidditch World Cup said Dumbledore .Winky talked my father into it said Crouch still in the same monotonous voice .She spent months persuading him .I had not left the house for years .I had loved Quidditch .Let him go she said .He will be in his Invisibility Cloak .He can watch .Let him smell fresh air for once .She said my mother would have wanted it .She told my father that my mother had died to give me freedom .She had not saved me for a life of imprisonment .He agreed in the end .It was carefully planned .My father led me and Winky up to the Top Box early in the day .Winky was to say that she was saving a seat for my father .I was to sit there invisible .When everyone had left the box we would emerge .Winky would appear to be alone .Nobody would ever know .But Winky didnt know that I was growing stronger .I was starting to fight my fathers Imperius Curse .There were times when I was almost myself again .There were brief periods when I seemed outside his control .It happened there in the Top Box .It was like waking from a deep sleep .I found myself out in public in the middle of the match and I saw in front of me a wand sticking out of a boys pocket .I had not been allowed a wand since before Azkaban .I stole it .Winky didnt know .Winky is frightened of heights .She had her face hidden .Master Barty you bad boy !whispered Winky tears trickling between her fingers .So you took the wand said Dumbledore and what did you do with it ?We went back to the tent said Crouch .Then we heard them .We heard the Death Eaters .The ones who had never been to Azkaban .The ones who had never suffered for my master .They had turned their backs on him .They were not enslaved as I was .They were free to seek him but they did not .They were merely making sport of Muggles .The sound of their voices awoke me .My mind was clearer than it had been in years .I was angry .I had the wand .I wanted to attack them for their disloyalty to my master .My father had left the tent he had gone to free the Muggles .Winky was afraid to see me so angry .She used her own brand of magic to bind me to her .She pulled me from the tent pulled me into the forest away from the Death Eaters .I tried to hold her back .I wanted to return to the campsite .I wanted to show those Death Eaters what loyalty to the Dark Lord meant and to punish them for their lack of it .I used the stolen wand to cast the Dark Mark into the sky .Ministry wizards arrived .They shot Stunning Spells everywhere .One of the spells came through the trees where Winky and I stood .The bond connecting us was broken .We were both Stunned .When Winky was discovered my father knew I must be nearby .He searched the bushes where she had been found and felt me lying there .He waited until the other Ministry members had left the forest .He put me back under the Imperius Curse and took me home .He dismissed Winky .She had failed him .She had let me acquire a wand .She had almost let me escape .Winky let out a wail of despair .Now it was just Father and I alone in the house .And then .and then .Crouchs head rolled on his neck and an insane grin spread across his face .My master came for me .He arrived at our house late one night in the arms of his servant Wormtail .My master had found out that I was still alive .He had captured Bertha Jorkins in Albania .He had tortured her .She told him a great deal .She told him about the Triwizard Tournament .She told him the old Auror Moody was going to teach at Hogwarts .He tortured her until he broke through the Memory Charm my father had placed upon her .She told him I had escaped from Azkaban .She told him my father kept me imprisoned to prevent me from seeking my master .And so my master knew that I was still his faithful servant perhaps the most faithful of all .My master conceived a plan based upon the information Bertha had given him .He needed me .He arrived at our house near midnight .My father answered the door .The smile spread wider over Crouchs face as though recalling the sweetest memory of his life .Winkys petrified brown eyes were visible through her fingers .She seemed too appalled to speak .It was very quick .My father was placed under the Imperius Curse by my master .Now my father was the one imprisoned controlled .My master forced him to go about his business as usual to act as though nothing was wrong .And I was released .I awoke .I was myself again alive as I hadnt been in years .And what did Lord Voldemort ask you to do ?said Dumbledore .He asked me whether I was ready to risk everything for him .I was ready .It was my dream my greatest ambition to serve him to prove myself to him .He told me he needed to place a faithful servant at Hogwarts .A servant who would guide Harry Potter through the Triwizard Tournament without appearing to do so .A servant who would watch over Harry Potter .Ensure he reached the Triwizard Cup .Turn the cup into a Portkey which would take the first person to touch it to my master .But first You needed Alastor Moody said Dumbledore .His blue eyes were blazing though his voice remained calm .Wormtail and I did it .We had prepared the Polyjuice Potion beforehand .We journeyed to his house .Moody put up a struggle .There was a commotion .We managed to subdue him just in time .Forced him into a compartment of his own magical trunk .Took some of his hair and added it to the potion .I drank it I became Moodys double .I took his leg and his eye .I was ready to face Arthur Weasley when he arrived to sort out the Muggles who had heard a disturbance .I made the dustbins move around the yard .I told Arthur Weasley I had heard intruders in my yard who had set off the dustbins .Then I packed up Moodys clothes and Dark detectors put them in the trunk with Moody and set off for Hogwarts .I kept him alive under the Imperius Curse .I wanted to be able to question him .To find out about his past learn his habits so that I could fool even Dumbledore .I also needed his hair to make the Polyjuice Potion .The other ingredients were easy .I stole boomslang skin from the dungeons .When the Potions master found me in his office I said I was under orders to search it .And what became of Wormtail after you attacked Moody ?said Dumbledore .Wormtail returned to care for my master in my fathers house and to keep watch over my father .But your father escaped said Dumbledore .Yes .After a while he began to fight the Imperius Curse just as I had done .There were periods when he knew what was happening .My master decided it was no longer safe for my father to leave the house .He forced him to send letters to the Ministry instead .He made him write and say he was ill .But Wormtail neglected his duty .He was not watchful enough .My father escaped .My master guessed that he was heading for Hogwarts .My father was going to tell Dumbledore everything to confess .He was going to admit that he had smuggled me from Azkaban .My master sent me word of my fathers escape .He told me to stop him at all costs .So I waited and watched .I used the map I had taken from Harry Potter .The map that had almost mined everything .Map ?said Dumbledore quickly .What map is this ?Potters map of Hogwarts .Potter saw me on it .Potter saw me stealing more ingredients for the Polyjuice Potion from Snapes office one night .He thought I was my father .We have the same first name .I took the map from Potter that night .I told him my father hated Dark wizards .Potter believed my father was after Snape .For a week I waited for my father to arrive at Hogwarts .At last one evening the map showed my father entering the grounds .I pulled on my Invisibility Cloak and went down to meet him .He was walking around the edge of the forest .Then Potter came and Krum .I waited .I could not hurt Potter my master needed him .Potter ran to get Dumbledore .I Stunned Krum .I killed my father .iVoooo !wailed Winky .Master Barty Master Barty what is you saying ?You killed your father Dumbledore said in the same soft voice .What did you do with the body ?Carried it into the forest .Covered it with the Invisibility Cloak .I had the map with me .I watched Potter run into the castle .He met Snape .Dumbledore joined them .I watched Potter bringing Dumbledore out of the castle .I walked back out of the forest doubled around behind them went to meet them .I told Dumbledore Snape had told me where to come .Dumbledore told me to go and look for my father .I went back to my fathers body .Watched the map .When everyone was gone I Transfigured my fathers body .He became a bone .I buried it while wearing the Invisibility Cloak in the freshly dug earth in front of Hagrids cabin .There was complete silence now except for Winkys continued sobs .Then Dumbledore said And tonight I offered to carry the Triwizard Cup into the maze before dinner whispered Barty Crouch .Turned it into a Portkey .My masters plan worked .He is returned to power and I will be honored by him beyond the dreams of wizards .The insane smile lit his features once more and his head drooped onto his shoulder as Winky wailed and sobbed at his side .THE PARTING OF THE WAYS Dumbledore stood up .He stared down at Barty Crouch for a moment with disgust on his face .Then he raised his wand once more and ropes flew out of it ropes that twisted themselves around Barty Crouch binding him tightly .He turned to Professor McGonagall .Minerva could I ask you to stand guard here while I take Harry upstairs ?Of course said Professor McGonagall .She looked slightly nauseous as though she had just watched someone being sick .However when she drew out her wand and pointed it at Barty Crouch her hand was quite steady .Severus Dumbledore turned to Snape please tell Madam Pomfrey to come down here we need to get Alastor Moody into the hospital wing .Then go down into the grounds find Cornelius Fudge and bring him up to this office .He will undoubtedly want to question Crouch himself .Tell him I will be in the hospital wing in half an hours time if he needs me .Snape nodded silently and swept out of the room .Harry ?Dumbledore said gently .Harry got up and swayed again the pain in his leg which he had not noticed all the time he had been listening to Crouch now returned in full measure .He also realized that he was shaking .Dumbledore gripped his arm and helped him out into the dark corridor .I want you to come up to my office first Harry he said quietly as they headed up the passageway .Sirius is waiting for us there .Harry nodded .A kind of numbness and a sense of complete unreality were upon him but he did not care he was even glad of it .He didnt want to have to think about anything that had happened since he had first touched the Triwizard Cup .He didnt want to have to examine the memories fresh and sharp as photographs which kept flashing across his mind .MadEye Moody inside the trunk .Wormtail slumped on the ground cradling his stump of an arm .Voldemort rising from the steaming cauldron .Cedric .dead .Cedric asking to be returned to his parents .Professor Harry mumbled where are Mr and Mrs Diggory ?They are with Professor Sprout said Dumbledore .His voice which had been so calm throughout the interrogation of Barty Crouch shook very slightly for the first time .She was Head of Cedrics house and knew him best .They had reached the stone gargoyle .Dumbledore gave the password it sprang aside and he and Harry went up the moving spiral staircase to the oak door .Dumbledore pushed it open .Sirius was standing there .His face was white and gaunt as it had been when he had escaped Azkaban .In one swift moment he had crossed the room .Harry are you all right ?I knew it I knew something like this what happened ?His hands shook as he helped Harry into a chair in front of the desk .What happened ?he asked more urgently .Dumbledore began to tell Sirius everything Barty Crouch had said .Harry was only half listening .So tired every bone in his body was aching he wanted nothing more than to sit here undisturbed for hours and hours until he fell asleep and didnt have to think or feel anymore .There was a soft rush of wings .Fawkes the phoenix had left his perch flown across the office and landed on Harrys knee .Lo Fawkes said Harry quietly .He stroked the phoenixs beautiful scarletandgold plumage .Fawkes blinked peacefully up at him .There was something comforting about his warm weight .Dumbledore stopped talking .He sat down opposite Harry behind his desk .He was looking at Harry who avoided his eyes .Dumbledore was going to question him .He was going to make Harry relive everything .I need to know what happened after you touched the Portkey in the maze Harry said Dumbledore .We can leave that till morning cant we Dumbledore ?said Sirius harshly .He had put a hand on Harrys shoulder .Let him have a sleep .Let him rest .Harry felt a rush of gratitude toward Sirius but Dumbledore took no notice of Siriuss words .He leaned forward toward Harry .Very unwillingly Harry raised his head and looked into those blue eyes .If I thought I could help you Dumbledore said gently by putting you into an enchanted sleep and allowing you to postpone the moment when you would have to think about what has happened tonight I would do it .But I know better .Numbing the pain for a while will make it worse when you finally feel it .You have shown bravery beyond anything I could have expected of you .I ask you to demonstrate your courage one more time .I ask you to tell us what happened .The phoenix let out one soft quavering note .It shivered in the air and Harry felt as though a drop of hot liquid had slipped down his throat into his stomach warming him and strengthening him .He took a deep breath and began to tell them .As he spoke visions of everything that had passed that night seemed to rise before his eyes he saw the sparkling surface of the potion that had revived Voldemort he saw the Death Eaters Apparating between the graves around them he saw Cedrics body lying on the ground beside the cup .Once or twice Sirius made a noise as though about to say something his hand still tight on Harrys shoulder but Dumbledore raised his hand to stop him and Harry was glad of this because it was easier to keep going now he had started .It was even a relief he felt almost as though something poisonous were being extracted from him .It was costing him every bit of determination he had to keep talking yet he sensed that once he had finished he would feel better .When Harry told of Wormtail piercing his arm with the dagger however Sirius let out a vehement exclamation and Dumbledore stood up so quickly that Harry started .Dumbledore walked around the desk and told Harry to stretch out his arm .Harry showed them both the place where his robes were torn and the cut beneath them .He said my blood would make him stronger than if hed used someone elses Harry told Dumbledore .He said the protection my my mother left in me hed have it too .And he was right he could touch me without hurting himself he touched my face .For a fleeting instant Harry thought he saw a gleam of something like triumph in Dumbledore s eyes .But next second Harry was sure he had imagined it for when Dumbledore had returned to his seat behind the desk he looked as old and weary as Harry had ever seen him .Very well he said sitting down again .Voldemort has overcome that particular barrier .Harry continue please .Harry went on he explained how Voldemort had emerged from the cauldron and told them all he could remember of Voldemorts speech to the Death Eaters .Then he told how Voldemort had untied him returned his wand to him and prepared to duel .But when he reached the part where the golden beam of light had connected his and Voldemorts wands he found his throat obstructed .He tried to keep talking but the memories of what had come out of Voldemorts wand were flooding into his mind .He could see Cedric emerging see the old man Bertha Jorkins .his father .his mother .He was glad when Sirius broke the silence .The wands connected ?he said looking from Harry to Dumbledore .Why ?Harry looked up at Dumbledore again on whose face there was an arrested look .Priori Incantatem he muttered .His eyes gazed into Harrys and it was almost as though an invisible beam of understanding shot between them .The Reverse Spell effect ?said Sirius sharply .Exactly said Dumbledore .Harrys wand and Voldemorts wand share cores .Each of them contains a feather from the tail of the same phoenix .This phoenix in fact he added and he pointed at the scarletandgold bird perching peacefully on Harrys knee .My wands feather came from Fawkes ?Harry said amazed .Yes said Dumbledore .Mr Ollivander wrote to tell me you had bought the second wand the moment you left his shop four years ago .So what happens when a wand meets its brother ?said Sirius .They will not work properly against each other said Dumbledore .If however the owners of the wands force the wands to do battle .a very rare effect will take place .One of the wands will force the other to regurgitate spells it has performed in reverse .The most recent first .and then those which preceded it .He looked interrogatively at Harry and Harry nodded .Which means said Dumbledore slowly his eyes upon Harrys face that some form of Cedric must have reappeared .Harry nodded again .Diggory came back to life ?said Sirius sharply .No spell can reawaken the dead said Dumbledore heavily .All that would have happened is a kind of reverse echo .A shadow of the living Cedric would have emerged from the wand .am I correct Harry ?He spoke to me Harry said .He was suddenly shaking again .The .the ghost Cedric or whatever he was spoke .An echo said Dumbledore which retained Cedrics appearance and character .I am guessing other such forms appeared .less recent victims of Voldemorts wand .An old man Harry said his throat still constricted .Bertha Jorkins .And .Your parents ?said Dumbledore quietly .Yes said Harry .Siriuss grip on Harrys shoulder was now so tight it was painful .The last murders the wand performed said Dumbledore nodding .In reverse order .More would have appeared of course had you maintained the connection .Very well Harry these echoes these shadows .what did they do ?Harry described how the figures that had emerged from the wand had prowled the edges of the golden web how Voldemort had seemed to fear them how the shadow of Harrys father had told him what to do how Cedrics had made its final request .At this point Harry found he could not continue .He looked around at Sirius and saw that he had his face in his hands .Harry suddenly became aware that Fawkes had left his knee .The phoenix had fluttered to the floor .It was resting its beautiful head against Harrys injured leg and thick pearly tears were falling from its eyes onto the wound left by the spider .The pain vanished .The skin mended .His leg was repaired .I will say it again said Dumbledore as the phoenix rose into the air and resettled itself upon the perch beside the door .You have shown bravery beyond anything I could have expected of you tonight Harry .You have shown bravery equal to those who died fighting Voldemort at the height of his powers .You have shouldered a grown wizards burden and found yourself equal to it and you have now given us all that we have a right to expect .You will come with me to the hospital wing .I do not want you returning to the dormitory tonight .A Sleeping Potion and some peace .Sirius would you like to stay with him ?Sirius nodded and stood up .He transformed back into the great black dog and walked with Harry and Dumbledore out of the office accompanying them down a flight of stairs to the hospital wing .When Dumbledore pushed open the door Harry saw Mrs Weasley Bill Ron and Hermione grouped around a harassedlooking Madam Pomfrey .They appeared to be demanding to know where Harry was and what had happened to him .All of them whipped around as Harry Dumbledore and the black dog entered and Mrs Weasley let out a kind of muffled scream .Harry !Oh Harry !She started to hurry toward him but Dumbledore moved between them .Molly he said holding up a hand please listen to me for a moment .Harry has been through a terrible ordeal tonight .He has just had to relive it for me .What he needs now is sleep and peace and quiet .If he would like you all to stay with him he added looking around at Ron Hermione and Bill too you may do so .But I do not want you questioning him until he is ready to answer and certainly not this evening .Mrs Weasley nodded .She was very white .She rounded on Ron Hermione and Bill as though they were being noisy and hissed Did you hear ?He needs quiet !Headmaster said Madam Pomfrey staring at the great black dog that was Sirius may I ask what ?This dog will be remaining with Harry for a while said Dumbledore simply .I assure you he is extremely well trained .Harry I will wait while you get into bed .Harry felt an inexpressible sense of gratitude to Dumbledore for asking the others not to question him .It wasnt as though he didnt want them there but the thought of explaining it all over again the idea of reliving it one more time was more than he could stand .I will be back to see you as soon as I have met with Fudge Harry said Dumbledore .I would like you to remain here tomorrow until I have spoken to the school .He left .As Madam Pomfrey led Harry to a nearby bed he caught sight of the real Moody lying motionless in a bed at the far end of the room .His wooden leg and magical eye were lying on the bedside table .Is he okay ?Harry asked .Hell be fine said Madam Pomfrey giving Harry some pajamas and pulling screens around him .He took off his robes pulled on the pajamas and got into bed .Ron Hermione Bill Mrs Weasley and the black dog came around the screen and settled themselves in chairs on either side of him .Ron and Hermione were looking at him almost cautiously as though scared of him .Im all right he told them .Just tired .Mrs Weasleys eyes filled with tears as she smoothed his bedcovers unnecessarily .Madam Pomfrey who had bustled off to her office returned holding a small bottle of some purple potion and a goblet .Youll need to drink all of this Harry she said .Its a potion for dreamless sleep .Harry took the goblet and drank a few mouthfuls .He felt himself becoming drowsy at once .Everything around him became hazy the lamps around the hospital wing seemed to be winking at him in a friendly way through the screen around his bed his body felt as though it was sinking deeper into the warmth of the feather matress .Before he could finish the potion before he could say another word his exhaustion had carried him off to sleep .Harry woke up so warm so very sleepy that he didnt open his eyes wanting to drop off again .The room was still dimly lit he was sure it was still nighttime and had a feeling that he couldnt have been asleep very long .Then he heard whispering around him .Theyll wake him if they dont shut up !What are they shouting about ?Nothing else can have happened can it ?Harry opened his eyes blearily Someone had removed his glasses .He could see the fuzzy outlines of Mrs Weasley and Bill close by .Mrs Weasley was on her feet .Thats Fudges voice she whispered .And thats Minerva McGonagalls isnt it ?But what are they arguing about ?Now Harry could hear them too people shouting and running toward the hospital wing .Regrettable but all the same Minerva Cornelius Fudge was saying loudly .You should never have brought it inside the castle !yelled Professor McGonagall .When Dumbledore finds out Harry heard the hospital doors burst open .Unnoticed by any of the people around his bed all of whom were staring at the door as Bill pulled back the screens Harry sat up and put his glasses back on .Fudge came striding up the ward .Professors McGonagall and Snape were at his heels .Wheres Dumbledore ?Fudge demanded of Mrs Weasley .Hes not here said Mrs Weasley angrily .This is a hospital wing Minister dont you think youd do better to But the door opened and Dumbledore came sweeping up the ward .What has happened ?said Dumbledore sharply looking from Fudge to Professor McGonagall .Why are you disturbing these people ?Minerva Im surprised at you I asked you to stand guard over Barty Crouch There is no need to stand guard over him anymore Dumbledore !she shrieked .The Minister has seen to that !Harry had never seen Professor McGonagall lose control like this .There were angry blotches of color in her cheeks and her hands were balled into fists she was trembling with fury .When we told Mr Fudge that we had caught the Death Eater responsible for tonights events said Snape in a low voice he seemed to feel his personal safety was in question .He insisted on summoning a dementor to accompany him into the castle .He brought it up to the office where Barty Crouch I told him you would not agree Dumbledore !Professor McGonagall fumed .I told him you would never allow dementors to set foot inside the castle but My dear woman !roared Fudge who likewise looked angrier than Harry had ever seen him as Minister of Magic it is my decision whether I wish to bring protection with me when interviewing a possibly dangerous But Professor McGonagalls voice drowned Fudges .The moment that that thing entered the room she screamed pointing at Fudge trembling all over it swooped down on Crouch and and Harry felt a chill in his stomach as Professor McGonagall struggled to find words to describe what had happened .He did not need her to finish her sentence .He knew what the dementor must have done .It had administered its fatal kiss to Barty Crouch .It had sucked his soul out through his mouth .He was worse than dead .By all accounts he is no loss !blustered Fudge .It seems he has been responsible for several deaths !But he cannot now give testimony Cornelius said Dumbledore .He was staring hard at Fudge as though seeing him plainly for the first time .He cannot give evidence about why he killed those people .Why he killed them ?Well thats no mystery is it ?blustered Fudge .He was a raving lunatic !From what Minerva and Severus have told me he seems to have thought he was doing it all on YouKnow Whos instructions !Lord Voldemort was giving him instructions Cornelius Dumbledore said .Those peoples deaths were mere byproducts of a plan to restore Voldemort to full strength again .The plan succeeded .Voldemort has been restored to his body .Fudge looked as though someone had just swung a heavy weight into his face .Dazed and blinking he stared back at Dumbledore as if he couldnt quite believe what he had just heard .He began to sputter still goggling at Dumbledore .YouKnow Who .returned ?Preposterous .Come now Dumbledore .As Minerva and Severus have doubtless told you said Dumbledore we heard Barry Crouch confess .Under the influence of Veritaserum he told us how he was smuggled out of Azkaban and how Voldemort learning of his continued existence from Bertha Jorkins went to free him from his father and used him to capture Harry .The plan worked I tell you .Crouch has helped Voldemort to return .See here Dumbledore said Fudge and Harry was astonished to see a slight smile dawning on his face you you cant seriously believe that .YouKnow Who back ?Come now come now .certainly Crouch may have believed himself to be acting upon YouKnow Whos orders but to take the word of a lunatic like that Dumbledore .When Harry touched the Triwizard Cup tonight he was transported straight to Voldemort said Dumbledore steadily .He witnessed Lord Voldemorts rebirth .I will explain it all to you if you will step up to my office .Dumbledore glanced around at Harry and saw that he was awake but shook his head and said I am afraid I cannot permit you to question Harry tonight .Fudges curious smile lingered .He too glanced at Harry then looked back at Dumbledore and said You are er prepared to take Harrys word on this are you Dumbledore ?There was a moments silence which was broken by Sirius g.His hackles were raised and he was baring his teeth at Fudge .Certainly I believe Harry said Dumbledore .His eyes were blazing now .I heard Crouchs confession and I heard Harrys account of what happened after he touched the Triwizard Cup the two stories make sense they explain everything that has happened since Bertha Jorkins disappeared last summer .Fudge still had that strange smile on his face .Once again he glanced at Harry before answering .You are prepared to believe that Lord Voldemort has returned on the word of a lunatic murderer and a boy who .well .Fudge shot Harry another look and Harry suddenly understood .Youve been reading Rita Skeeter Mr Fudge he said quietly .Ron Hermione Mrs Weasley and Bill all jumped .None of them had realized that Harry was awake .Fudge reddened slightly but a defiant and obstinate look came over his face .And if I have ?he said looking at Dumbledore .If I have discovered that youve been keeping certain facts about the boy very quiet ?A Parselmouth eh ?And having funny turns all over the place I assume that you are referring to the pains Harry has been experiencing in his scar ?said Dumbledore coolly .You admit that he has been having these pains then ?said Fudge quickly .Headaches ?Nightmares ?Possibly hallucinations ?Listen to me Cornelius said Dumbledore taking a step toward Fudge and once again he seemed to radiate that indefinable sense of power that Harry had felt after Dumbledore had Stunned young Crouch .Harry is as sane as you or I .That scar upon his forehead has not addled his brains .I believe it hurts him when Lord Voldemort is close by or feeling particularly murderous .Fudge had taken half a step back from Dumbledore but he looked no less stubborn .Youll forgive me Dumbledore but Ive never heard of a curse scar acting as an alarm bell before .Look I saw Voldemort come back !Harry shouted .He tried to get out of bed again but Mrs Weasley forced him back .I saw the Death Eaters !I can give you their names !Lucius Malfoy Snape made a sudden movement but as Harry looked at him Snapes eyes flew back to Fudge .Malfoy was cleared !said Fudge visibly affronted .A very old family donations to excellent causes Macnair !Harry continued .Also cleared !Now working for the Ministry !Avery Nott Crabbe Goyle You are merely repeating the names of those who were acquitted of being Death Eaters thirteen years ago !said Fudge angrily .You could have found those names in old reports of the trials !For heavens sake Dumbledore the boy was full of some crackpot story at the end of last year too his tales are getting taller and youre still swallowing them the boy can talk to snakes Dumbledore and you still think hes trustworthy ?You fool !Professor McGonagall cried .Cedric Diggory !Mr Crouch !These deaths were not the random work of a lunatic !I see no evidence to the contrary !shouted Fudge now matching her anger his face purpling .It seems to me that you are all determined to start a panic that will destabilize everything we have worked for these last thirteen years !Harry couldnt believe what he was hearing .He had always thought of Fudge as a kindly figure a little blustering a little pompous but essentially good natured .But now a short angry wizard stood before him refusing pointblank to accept the prospect of disruption in his comfortable and ordered world to believe that Voldemort could have risen .Voldemort has returned Dumbledore repeated .If you accept that fact straightaway Fudge and take the necessary measures we may still be able to save the situation .The first and most essential step is to remove Azkaban from the control of the dementors Preposterous !shouted Fudge again .Remove the dementors ?Id be kicked out of office for suggesting it !Half of us only feel safe in our beds at night because we know the dementors are standing guard at Azkaban !The rest of us sleep less soundly in our beds Cornelius knowing that you have put Lord Voldemort s most dangerous supporters in the care of creatures who will join him the instant he asks them !said Dumbledore .They will not remain loyal to you Fudge !Voldemort can offer them much more scope for their powers and their pleasures than you can !With the dementors behind him and his old supporters returned to him you will be hardpressed to stop him regaining the sort of power he had thirteen years ago !Fudge was opening and closing his mouth as though no words could express his outrage .The second step you must take and at once Dumbledore pressed on is to send envoys to the giants .Envoys to the giants ?Fudge shrieked finding his tongue again .What madness is this ?Extend them the hand of friendship now before it is too late said Dumbledore or Voldemort will persuade them as he did before that he alone among wizards will give them their rights and their freedom !You you cannot be serious !Fudge gasped shaking his head and retreating further from Dumbledore .If the magical community got wind that I had approached the giants people hate them Dumbledore end of my career You are blinded said Dumbledore his voice rising now the aura of power around him palpable his eyes blazing once more by the love of the office you hold Cornelius !You place too much importance and you always have done on the socalled purity of blood !You fail to recognize that it matters not what someone is born but what they grow to be !Your dementor has just destroyed the last remaining member of a pure blood family as old as any and see what that man chose to make of his life !I tell you now take the steps I have suggested and you will be remembered in office or out as one of the bravest and greatest Ministers of Magic we have ever known .Fail to act and history will remember you as the man who stepped aside and allowed Voldemort a second chance to destroy the world we have tried to rebuild !Insane whispered Fudge still backing away .Mad And then there was silence .Madam Pomfrey was standing frozen at the foot of Harrys bed her hands over her mouth .Mrs Weasley was still standing over Harry her hand on his shoulder to prevent him from rising .Bill Ron and Hermione were staring at Fudge .If your determination to shut your eyes will carry you as far as this Cornelius said Dumbledore we have reached a parting of the ways .You must act as you see fit .And I I shall act as I see fit .Dumbledore s voice carried no hint of a threat it sounded like a mere statement but Fudge bristled as though Dumbledore were advancing upon him with a wand .Now see here Dumbledore he said waving a threatening finger .Ive given you free rein always .Ive had a lot of respect for you .I might not have agreed with some of your decisions but Ive kept quiet .There arent many whod have let you hire werewolves or keep Hagrid or decide what to teach your students without reference to the Ministry .But if youre going to work against me The only one against whom I intend to work said Dumbledore is Lord Voldemort .If you are against him then we remain Cornelius on the same side .It seemed Fudge could think of no answer to this .He rocked backward and forward on his small feet for a moment and spun his bowler hat in his hands .Finally he said with a hint of a plea in his voice He cant be back Dumbledore he just cant be .Snape strode forward past Dumbledore pulling up the left sleeve of his robes as he went .He stuck out his forearm and showed it to Fudge who recoiled .There said Snape harshly .There .The Dark Mark .It is not as clear as it was an hour or so ago when it burned black but you can still see it .Every Death Eater had the sign burned into him by the Dark Lord .It was a means of distinguishing one another and his means of summoning us to him .When he touched the Mark of any Death Eater we were to Disapparate and Apparate instantly at his side .This Mark has been growing clearer all year .Karkaroffs too .Why do you think Karkaroff fled tonight ?We both felt the Mark burn .We both knew he had returned .Karkaroff fears the Dark Lords vengeance .He betrayed too many of his fellow Death Eaters to be sure of a welcome back into the fold .Fudge stepped back from Snape too .He was shaking his head .He did not seem to have taken in a word Snape had said .He stared apparently repelled by the ugly mark on Snape s arm then looked up at Dumbledore and whispered I dont know what you and your staff are playing at Dumbledore but I have heard enough .I have no more to add .I will be in touch with you tomorrow Dumbledore to discuss the running of this school .I must return to the Ministry .He had almost reached the door when he paused .He turned around strode back down the dormitory and stopped at Harrys bed .Your winnings he said shortly taking a large bag of gold out of his pocket and dropping it onto Harrys bedside table .One thousand Galleons .There should have been a presentation ceremony but under the circumstances .He crammed his bowler hat onto his head and walked out of the room slamming the door behind him .The moment he had disappeared Dumbledore turned to look at the group around Harrys bed .There is work to be done he said .Molly .am I right in thinking that I can count on you and Arthur ?Of course you can said Mrs Weasley .She was white to the lips but she looked resolute .We know what Fudge is .Its Arthurs fondness for Muggles that has held him back at the Ministry all these years .Fudge thinks he lacks proper wizarding pride .Then I need to send a message to Arthur said Dumbledore .All those that we can persuade of the truth must be notified immediately and he is well placed to contact those at the Ministry who are not as shortsighted as Cornelius .Ill go to Dad said Bill standing up .Ill go now .Excellent said Dumbledore .Tell him what has happened .Tell him I will be in direct contact with him shortly .He will need to be discreet however .If Fudge thinks I am interfering at the Ministry Leave it to me said Bill .He clapped a hand on Harrys shoulder kissed his mother on the cheek pulled on his cloak and strode quickly from the room .Minerva said Dumbledore turning to Professor McGonagall I want to see Hagrid in my office as soon as possible .Also if she will consent to come Madame Maxime .Professor McGonagall nodded and left without a word .Poppy Dumbledore said to Madam Pomfrey would you be very kind and go down to Professor Moodys office where I think you will find a houseelf called Winky in considerable distress ?Do what you can for her and take her back to the kitchens .I think Dobby will look after her for us .Very very well said Madam Pomfrey looking startled and she too left .Dumbledore made sure that the door was closed and that Madam Pomfreys footsteps had died away before he spoke again .And now he said it is time for two of our number to recognize each other for what they are .Sirius .if you could resume your usual form .The great black dog looked up at Dumbledore then in an instant turned back into a man .Mrs Weasley screamed and leapt back from the bed .Sirius Black !she shrieked pointing at him .Mum shut up !Ron yelled .Its okay !Snape had not yelled or jumped backward but the look on his face was one of mingled fury and horror .Him !he snarled staring at Sirius whose face showed equal dislike .What is he doing here ?He is here at my invitation said Dumbledore looking between them as are you Severus .I trust you both .It is time for you to lay aside your old differences and trust each other .Harry thought Dumbledore was asking for a near miracle .Sirius and Snape were eyeing each other with the utmost loathing .I will settle in the short term said Dumbledore with a bite of impatience in his voice for a lack of open hostility .You will shake hands .You are on the same side now .Time is short and unless the few of us who know the truth do not stand united there is no hope for any of us .Very slowly but still glaring at each other as though each wished the other nothing but ill Sirius and Snape moved toward each other and shook hands .They let go extremely quickly .That will do to be going on with said Dumbledore stepping between them once more .Now I have work for each of you .Fudges attitude though not unexpected changes everything .Sirius I need you to set off at once .You are to alert Remus Lupin Arabella Figg Mundungus Fletcher the old crowd .Lie low at Lupins for a while I will contact you there .But said Harry .He wanted Sirius to stay .He did not want to have to say goodbye again so quickly .Youll see me very soon Harry said Sirius turning to him .I promise you .But I must do what I can you understand dont you ?Yeah said Harry .Yeah .of course I do .Sirius grasped his hand briefly nodded to Dumbledore transformed again into the black dog and ran the length of the room to the door whose handle he turned with a paw .Then he was gone .Severus said Dumbledore turning to Snape you know what I must ask you to do .If you are ready .if you are prepared .I am said Snape .He looked slightly paler than usual and his cold black eyes glittered strangely .Then good luck said Dumbledore and he watched with a trace of apprehension on his face as Snape swept wordlessly after Sirius .It was several minutes before Dumbledore spoke again .I must go downstairs he said finally .I must see the Diggorys .Harry take the rest of your potion .I will see all of you later .Harry slumped back against his pillows as Dumbledore disappeared .Hermione Ron and Mrs Weasley were all looking at him .None of them spoke for a very long time .Youve got to take the rest of your potion Harry Mrs Weasley said at last .Her hand nudged the sack of gold on his bedside cabinet as she reached for the bottle and the goblet .You have a good long sleep .Try and think about something else for a while .think about what youre going to buy with your winnings !I dont want that gold said Harry in an expressionless voice .You have it .Anyone can have it .I shouldnt have won it .It shouldve been Cedrics .The thing against which he had been fighting on and off ever since he had come out of the maze was threatening to overpower him .He could feel a burning prickling feeling in the inner corners of his eyes .He blinked and stared up at the ceiling .It wasnt your fault Harry Mrs Weasley whispered .I told him to take the cup with me said Harry .Now the burning feeling was in his throat too .He wished Ron would look away .Mrs Weasley set the potion down on the bedside cabinet bent down and put her arms around Harry .He had no memory of ever being hugged like this as though by a mother .The full weight of everything he had seen that night seemed to fall in upon him as Mrs Weasley held him to her .His mothers face his fathers voice the sight of Cedric dead on the ground all started spinning in his head until he could hardly bear it until he was screwing up his face against the howl of misery fighting to get out of him .There was a loud slamming noise and Mrs Weasley and Harry broke apart .Hermione was standing by the window .She was holding something tight in her hand .Sorry she whispered .Your potion Harry said Mrs Weasley quickly wiping her eyes on the back of her hand .Harry drank it in one gulp .The effect was instantaneous .Heavy irresistible waves of dreamless sleep broke over him he fell back onto his pillows and thought no more .THE BEGINNING When he looked back even a month later Harry found he had only scattered memories of the next few days .It was as though he had been through too much to take in any more .The recollections he did have were very painful .The worst perhaps was the meeting with the Diggorys that took place the following morning .They did not blame him for what had happened on the contrary both thanked him for returning Cedrics body to them .Mr Diggory sobbed through most of the interview .Mrs Diggory s grief seemed to be beyond tears .He suffered very little then she said when Harry had told her how Cedric had died .And after all Amos .he died just when hed won the tournament .He must have been happy .When they got to their feet she looked down at Harry and said You look after yourself now .Harry seized the sack of gold on the bedside table .You take this he muttered to her .It shouldve been Cedrics he got there first you take it But she backed away from him .Oh no its yours dear I couldnt .you keep it .Harry returned to Gryffindor Tower the following evening .From what Hermione and Ron told him Dumbledore had spoken to the school that morning at breakfast .He had merely requested that they leave Harry alone that nobody ask him questions or badger him to tell the story of what had happened in the maze .Most people he noticed were skirting him in the corridors avoiding his eyes .Some whispered behind their hands as he passed .He guessed that many of them had believed Rita Skeeters article about how disturbed and possibly dangerous he was .Perhaps they were formulating their own theories about how Cedric had died .He found he didnt care very much .He liked it best when he was with Ron and Hermione and they were talking about other things or else letting him sit in silence while they played chess .He felt as though all three of them had reached an understanding they didnt need to put into words that each was waiting for some sign some word of what was going on outside Hogwarts and that it was useless to speculate about what might be coming until they knew anything for certain .The only time they touched upon the subject was when Ron told Harry about a meeting Mrs Weasley had had with Dumbledore before going home .She went to ask him if you could come straight to us this summer he said .But he wants you to go back to the Dursleys at least at first .Why ?said Harry .She said Dumbledores got his reasons said Ron shaking his head darkly .I suppose weve got to trust him havent we ?The only person apart from Ron and Hermione that Harry felt able to talk to was Hagrid .As there was no longer a Defense Against the Dark Arts teacher they had those lessons free .They used the one on Thursday afternoon to go down and visit Hagrid in his cabin .It was a bright and sunny day Fang bounded out of the open door as they approached barking and wagging his tail madly .Whos that ?called Hagrid coming to the door .Harry He strode out to meet them pulled Harry into a one armed hug ruffled his hair and said Good ter see yeh mate .Good ter see yeh .They saw two bucketsize cups and saucers on the wooden table in front of the fireplace when they entered Hagrid s cabin .Bin havin a cuppa with Olympe Hagrid said .Shes jus left .Who ?said Ron curiously .Madame Maxime o course !said Hagrid .You two made up have you ?said Ron .Dunno what yehre talkin about said Hagrid airily fetching more cups from the dresser .When he had made tea and offered around a plate of doughy cookies he leaned back in his chair and surveyed Harry closely through his beetleblack eyes .You all righ ?he said gruffly .Yeah said Harry .No yehre not said Hagrid .Course yehre not .But yeh will be .Harry said nothing .Knew he was goin ter come back said Hagrid and Harry Ron and Hermione looked up at him shocked .Known it fer years Harry .Knew he was out there bidin his time .It had ter happen .Well now it has an well jus have ter get on with it .Well fight .Migh be able ter stop him before he gets a good hold .Thats Dumbledores plan anyway .Great man Dumbledore .S long as weve got him Im not too worried .Hagrid raised his bushy eyebrows at the disbelieving expressions on their faces .No good sittin worryin abou it he said .Whats cornin will come an well meet it when it does .Dumbledore told me wha you did Harry .Hagrids chest swelled as he looked at Harry .Yeh did as much as yer father wouldve done an I can give yeh no higher praise than that .Harry smiled back at him .It was the first time hed smiled in days .Whats Dumbledore asked you to do Hagrid ?he asked .He sent Professor McGonagall to ask you and Madame Maxime to meet him that night .Got a little job fer me over the summer said Hagrid .Secret though .Im not spposed ter talk abou it no not even ter you lot .Olympe Madame Maxime ter you might be cornin with me .I think she will .Think I got her persuaded .Is it to do with Voldemort ?Hagrid flinched at the sound of the name .Migh be he said evasively .Now .whod like ter come an visit the las skrewt with me ?I was jokin jokin !he added hastily seeing the looks on their faces .k k k It was with a heavy heart that Harry packed his trunk up in the dormitory on the night before his return to Privet Drive .He was dreading the Leaving Feast which was usually a cause for celebration when the winner of the InterHouse Championship would be announced .He had avoided being in the Great Hall when it was full ever since he had left the hospital wing preferring to eat when it was nearly empty to avoid the stares of his fellow students .When he Ron and Hermione entered the Hall they saw at once that the usual decorations were missing .The Great Hall was normally decorated with the winning Houses colors for the Leaving Feast .Tonight however there were black drapes on the wall behind the teachers table .Harry knew instantly that they were there as a mark of respect to Cedric .The real MadEye Moody was at the staff table now his wooden leg and his magical eye back in place .He was extremely twitchy jumping every time someone spoke to him .Harry couldnt blame him Moodys fear of attack was bound to have been increased by his tenmonth imprisonment in his own trunk .Professor Karkaroffs chair was empty .Harry wondered as he sat down with the other Gryffindors where Karkaroff was now and whether Voldemort had caught up with him .Madame Maxime was still there .She was sitting next to Hagrid .They were talking quietly together .Further along the table sitting next to Professor McGonagall was Snape .His eyes lingered on Harry for a moment as Harry looked at him .His expression was difficult to read .He looked as sour and unpleasant as ever .Harry continued to watch him long after Snape had looked away .What was it that Snape had done on Dumbledores orders the night that Voldemort had returned ?And why .why .was Dumbledore so convinced that Snape was truly on their side ?He had been their spy Dumbledore had said so in the Pensieve .Snape had turned spy against Voldemort at great personal risk .Was that the job he had taken up again ?Had he made contact with the Death Eaters perhaps ?Pretended that he had never really gone over to Dumbledore that he had been like Voldemort himself biding his time ?Harrys musings were ended by Professor Dumbledore who stood up at the staff table .The Great Hall which in any case had been less noisy than it usually was at the Leaving Feast became very quiet .The end said Dumbledore looking around at them all of another year .He paused and his eyes fell upon the Hufflepuff table .Theirs had been the most subdued table before he had gotten to his feet and theirs were still the saddest and palest faces in the Hall .There is much that I would like to say to you all tonight said Dumbledore but I must first acknowledge the loss of a very fine person who should be sitting here he gestured toward the Hufflepuffs enjoying our feast with us .I would like you all please to stand and raise your glasses to Cedric Diggory .They did it all of them the benches scraped as everyone in the Hall stood and raised their goblets and echoed in one loud low rumbling voice Cedric Diggory .Harry caught a glimpse of Cho through the crowd .There were tears pouring silently down her face .He looked down at the table as they all sat down again .Cedric was a person who exemplified many of the qualities that distinguish Hufflepuff house Dumbledore continued .He was a good and loyal friend a hard worker he valued fair play .His death has affected you all whether you knew him well or not .I think that you have the right therefore to know exactly how it came about .Harry raised his head and stared at Dumbledore .Cedric Diggory was murdered by Lord Voldemort .A panicked whisper swept the Great Hall .People were staring at Dumbledore in disbelief in horror .He looked perfectly calm as he watched them mutter themselves into silence .The Ministry of Magic Dumbledore continued does not wish me to tell you this .It is possible that some of your parents will be horrified that I have done so either because they will not believe that Lord Voldemort has returned or because they think I should not tell you so young as you are .It is my belief however that the truth is generally preferable to lies and that any attempt to pretend that Cedric died as the result of an accident or some sort of blunder of his own is an insult to his memory .Stunned and frightened every face in the Hall was turned toward Dumbledore now .or almost every face .Over at the Slytherin table Harry saw Draco Malfoy muttering something to Crabbe and Goyle .Harry felt a hot sick swoop of anger in his stomach .He forced himself to look back at Dumbledore .There is somebody else who must be mentioned in connection with Cedrics death Dumbledore went on .I am talking of course about Harry Potter .A kind of ripple crossed the Great Hall as a few heads turned in Harrys direction before flicking back to face Dumbledore .Harry Potter managed to escape Lord Voldemort said Dumbledore .He risked his own life to return Cedrics body to Hogwarts .He showed in every respect the sort of bravery that few wizards have ever shown in facing Lord Voldemort and for this I honor him .Dumbledore turned gravely to Harry and raised his goblet once more .Nearly everyone in the Great Hall followed suit .They murmured his name as they had murmured Cedrics and drank to him .But through a gap in the standing figures Harry saw that Malfoy Crabbe Goyle and many of the other Slytherins had remained defiantly in their seats their goblets untouched .Dumbledore who after all possessed no magical eye did not see them .When everyone had once again resumed their seats Dumbledore continued The Triwizard Tournaments aim was to further and promote magical understanding .In the light of what has happened of Lord Voldemorts return such ties are more important than ever before .Dumbledore looked from Madame Maxime and Hagrid to Fleur Delacour and her fellow Beauxbatons students to Viktor Krum and the Durmstrangs at the Slytherin table .Krum Harry saw looked wary almost frightened as though he expected Dumbledore to say something harsh .Every guest in this Hall said Dumbledore and his eyes lingered upon the Durmstrang students will be welcomed back here at any time should they wish to come .I say to you all once again in the light of Lord Voldemorts return we are only as strong as we are united as weak as we are divided .Lord Voldemorts gift for spreading discord and enmity is very great .We can fight it only by showing an equally strong bond of friendship and trust .Differences of habit and language are nothing at all if our aims are identical and our hearts are open .It is my belief and never have I so hoped that I am mistaken that we are all facing dark and difficult times .Some of you in this Hall have already suffered directly at the hands of Lord Voldemort .Many of your families have been torn asunder .A week ago a student was taken from our midst .Remember Cedric .Remember if the time should come when you have to make a choice between what is right and what is easy remember what happened to a boy who was good and kind and brave because he strayed across the path of Lord Voldemort .Remember Cedric Diggory .Harrys trunk was packed Hedwig was back in her cage on top of it .He Ron and Hermione were waiting in the crowded entrance hall with the rest of the fourth years for the carriages that would take them back to Hogsmeade station .It was another beautiful summers day .He supposed that Privet Drive would be hot and leafy its flower beds a riot of color when he arrived there that evening .The thought gave him no pleasure at all .Arry !He looked around .Fleur Delacour was hurrying up the stone steps into the castle .Beyond her far across the grounds Harry could see Hagrid helping Madame Maxime to back two of the giant horses into their harness .The Beauxbatons carriage was about to take off .We will see each uzzer again I ope said Fleur as she reached him holding out her hand .I am oping to get a job ere to improve my Eenglish .Its very good already said Ron in a strangled sort of voice .Fleur smiled at him Hermione scowled .Goodbye Arry said Fleur turning to go .It az been a pleasure meeting you !Harrys spirits couldnt help but lift slightly as he watched Fleur hurry back across the lawns to Madame Maxime her silvery hair rippling in the sunlight .Wonder how the Durmstrang students are getting back said Ron .Dyou reckon they can steer that ship without Karkaroff ?Karkaroff did not steer said a gruff voice .He stayed in his cabin and let us do the vork .Krum had come to say goodbye to Hermione .Could I have a vord ?he asked her .Oh .yes .all right said Hermione looking slightly flustered and following Krum through the crowd and out of sight .Youd better hurry up !Ron called loudly after her .The carriagesll be here in a minute !He let Harry keep a watch for the carriages however and spent the next few minutes craning his neck over the crowd to try and see what Krum and Hermione might be up to .They returned quite soon .Ron stared at Hermione but her face was quite impassive .I liked Diggory said Krum abruptly to Harry .He vos alvays polite to me .Alvays .Even though I vos from Durmstrang with Karkaroff he added scowling .Have you got a new headmaster yet ?said Harry .Krum shrugged .He held out his hand as Fleur had done shook Harrys hand and then Rons .Ron looked as though he was suffering some sort of painful internal struggle .Krum had already started walking away when Ron burst out Can I have your autograph ?Hermione turned away smiling at the horseless carriages that were now trundling toward them up the drive as Krum looking surprised but gratified signed a fragment of parchment for Ron .The weather could not have been more different on the journey back to Kings Cross than it had been on their way to Hogwarts the previous September .There wasnt a single cloud in the sky .Harry Ron and Hermione had managed to get a compartment to themselves .Pigwidgeon was once again hidden under Rons dress robes to stop him from hooting continually Hedwig was dozing her head under her wing and Crookshanks was curled up in a spare seat like a large furry ginger cushion .Harry Ron and Hermione talked more fully and freely than they had all week as the train sped them southward .Harry felt as though Dumbledores speech at the Leaving Feast had unblocked him somehow .It was less painful to discuss what had happened now .They broke off their conversation about what action Dumbledore might be taking even now to stop Voldemort only when the lunch trolley arrived .When Hermione returned from the trolley and put her money back into her schoolbag she dislodged a copy of the Daily Prophet that she had been carrying in there .Harry looked at it unsure whether he really wanted to know what it might say but Hermione seeing him looking at it said calmly Theres nothing in there .You can look for yourself but theres nothing at all .Ive been checking every day .Just a small piece the day after the third task saying you won the tournament .They didnt even mention Cedric .Nothing about any of it .If you ask me Fudge is forcing them to keep quiet .Hell never keep Rita quiet said Harry .Not on a story like this .Oh Rita hasnt written anything at all since the third task said Hermione in an oddly constrained voice .As a matter of fact she added her voice now trembling slightly Rita Skeeter isnt going to be writing anything at all for a while .Not unless she wants me to spill the beans on her .What are you talking about ?said Ron .I found out how she was listening in on private conversations when she wasnt supposed to be coming onto the grounds said Hermione in a rush .Harry had the impression that Hermione had been dying to tell them this for days but that she had restrained herself in light of everything else that had happened .How was she doing it ?said Harry at once .How did you find out ?said Ron staring at her .Well it was you really who gave me the idea Harry she said .Did I ?said Harry perplexed .How ?Bugging said Hermione happily .But you said they didnt work Oh not electronic bugs said Hermione .No you see .Rita Skeeter Hermione s voice trembled with quiet triumph is an unregistered Animagus .She can turn Hermione pulled a small sealed glass jar out of her bag .into a beetle .Youre kidding said Ron .You havent .shes not Oh yes she is said Hermione happily brandishing the jar at them .Inside were a few twigs and leaves and one large fat beetle .Thats never youre kidding Ron whispered lifting the jar to his eyes .No Im not said Hermione beaming .I caught her on the windowsill in the hospital wing .Look very closely and you 11 notice the markings around her antennae are exactly like those foul glasses she wears .Harry looked and saw that she was quite right .He also remembered something .There was a beetle on the statue the night we heard Hagrid telling Madame Maxime about his mum !Exactly said Hermione .And Viktor pulled a beetle out of my hair after wed had our conversation by the lake .And unless Im very much mistaken Rita was perched on the windowsill of the Divination class the day your scar hurt .Shes been buzzing around for stories all year .When we saw Malfoy under that tree .said Ron slowly .He was talking to her in his hand said Hermione .He knew of course .Thats how shes been getting all those nice little interviews with the Slytherins .They wouldnt care that she was doing something illegal as long as they were giving her horrible stuff about us and Hagrid .Hermione took the glass jar back from Ron and smiled at the beetle which buzzed angrily against the glass .Ive told her Ill let her out when we get back to London said Hermione .Ive put an Unbreakable Charm on the jar you see so she cant transform .And Ive told her shes to keep her quill to herself for a whole year .See if she cant break the habit of writing horrible lies about people .Smiling serenely Hermione placed the beetle back inside her schoolbag .The door of the compartment slid open .Very clever Granger said Draco Malfoy .Crabbe and Goyle were standing behind him .All three of them looked more pleased with themselves more arrogant and more menacing than Harry had ever seen them .So said Malfoy slowly advancing slightly into the compartment and looking slowly around at them a smirk quivering on his lips .You caught some pathetic reporter and Potters Dumbledores favorite boy again .Big deal .His smirk widened .Crabbe and Goyle leered .Trying not to think about it are we ?said Malfoy softly looking around at all three of them .Trying to pretend it hasnt happened ?Get out said Harry .He had not been this close to Malfoy since he had watched him muttering to Crabbe and Goyle during Dumbledores speech about Cedric .He could feel a kind of ringing in his ears .His hand gripped his wand under his robes .Youve picked the losing side Potter !I warned you !I told you you ought to choose your company more carefully remember ?When we met on the train first day at Hogwarts ?I told you not to hang around with riffraff like this !He jerked his head at Ron and Hermione .Too late now Potter !Theyll be the first to go now the Dark Lords back !Mudbloods and Mugglelovers first !Well second Diggory was the f It was as though someone had exploded a box of fireworks within the compartment .Blinded by the blaze of the spells that had blasted from every direction deafened by a series of bangs Harry blinked and looked down at the floor .Malfoy Crabbe and Goyle were all lying unconscious in the doorway .He Ron and Hermione were on their feet all three of them having used a different hex .Nor were they the only ones to have done so .Thought wed see what those three were up to said Fred matteroffactly stepping onto Goyle and into the compartment .He had his wand out and so did George who was careful to tread on Malfoy as he followed Fred inside .Interesting effect said George looking down at Crabbe .Who used the Furnunculus Curse ?Me said Harry .Odd said George lightly .I used JellyLegs .Looks as though those two shouldnt be mixed .He seems to have sprouted little tentacles all over his face .Well lets not leave them here they dont add much to the decor .Ron Harry and George kicked rolled and pushed the unconscious Malfoy Crabbe and Goyle each of whom looked distinctly the worse for the jumble of jinxes with which they had been hit out into the corridor then came back into the compartment and rolled the door shut .Exploding Snap anyone ?said Fred pulling out a pack of cards .They were halfway through their fifth game when Harry decided to ask them .You going to tell us then ?he said to George .Who you were blackmailing ?Oh said George darkly .That It doesnt matter said Fred shaking his head impatiently .It wasnt anything important .Not now anyway .Weve given up said George shrugging .But Harry Ron and Hermione kept on asking and finally Fred said All right all right if you really want to know .it was Ludo Bagman .Bagman ?said Harry sharply .Are you saying he was involved in Nah said George gloomily .Nothing like that .Stupid git .He wouldnt have the brains .Well what then ?said Ron .Fred hesitated then said You remember that bet we had with him at the Quidditch World Cup ?About how Ireland would win but Krum would get the Snitch ?Yeah said Harry and Ron slowly .Well the git paid us in leprechaun gold hed caught from the Irish mascots .So ?So said Fred impatiently it vanished didnt it ?By next morning it had gone !But it mustve been an accident mustnt it ?said Hermione .George laughed very bitterly .Yeah thats what we thought at first .We thought if we just wrote to him and told him hed made a mistake hed cough up .But nothing doing .Ignored our letter .We kept trying to talk to him about it at Hogwarts but he was always making some excuse to get away from us .In the end he turned pretty nasty said Fred .Told us we were too young to gamble and he wasnt giving us anything .So we asked for our money back said George glowering .He didnt refuse !gasped Hermione .Right in one said Fred .But that was all your savings !said Ron .Tell me about it said George .Course we found out what was going on in the end .Lee Jordans dad had had a bit of trouble getting money off Bagman as well .Turns out hes in big trouble with the goblins .Borrowed loads of gold off them .A gang of them cornered him in the woods after the World Cup and took all the gold he had and it still wasnt enough to cover all his debts .They followed him all the way to Hogwarts to keep an eye on him .Hes lost everything gambling .Hasnt got two Galleons to rub together .And you know how the idiot tried to pay the goblins back ?How ?said Harry .He put a bet on you mate said Fred .Put a big bet on you to win the tournament .Bet against the goblins .So thats why he kept trying to help me win !said Harry .Well I did win didnt I ?So he can pay you your gold !Nope said George shaking his head .The goblins play as dirty as him .They say you drew with Diggory and Bagman was betting youd win outright .So Bagman had to run for it .He did run for it right after the third task .George sighed deeply and started dealing out the cards again .The rest of the journey passed pleasantly enough Harry wished it could have gone on all summer in fact and that he would never arrive at Kings Cross .but as he had learned the hard way that year time will not slow down when something unpleasant lies ahead and all too soon the Hogwarts Express was pulling in at platform nine and threequarters .The usual confusion and noise filled the corridors as the students began to disembark .Ron and Hermione struggled out past Malfoy Crabbe and Goyle carrying their trunks .Harry however stayed put .Fred George wait a moment .The twins turned .Harry pulled open his trunk and drew out his Triwizard winnings .Take it he said and he thrust the sack into Georges hands .What ?said Fred looking flabbergasted .Take it Harry repeated firmly .I dont want it .Youre mental said George trying to push it back at Harry .No Im not said Harry .You take it and get inventing .Its for the joke shop .He is mental Fred said in an almost awed voice .Listen said Harry firmly .If you dont take it Im throwing it down the drain .I dont want it and I dont need it .But I could do with a few laughs .We could all do with a few laughs .Ive got a feeling were going to need them more than usual before long .Harry said George weakly weighing the money bag in his hands theres got to be a thousand Galleons in here .Yeah said Harry grinning .Think how many Canary Creams that is .The twins stared at him .Just dont tell your mum where you got it .although she might not be so keen for you to join the Ministry anymore come to think of it .Harry Fred began but Harry pulled out his wand .Look he said flatly take it or Ill hex you .I know some good ones now .Just do me one favor okay ?Buy Ron some different dress robes and say theyre from you .He left the compartment before they could say another word stepping over Malfoy Crabbe and Goyle who were still lying on the floor covered in hex marks .Uncle Vernon was waiting beyond the barrier .Mrs Weasley was close by him .She hugged Harry very tightly when she saw him and whispered in his ear I think Dumbledore will let you come to us later in the summer .Keep in touch Harry .See you Harry said Ron clapping him on the back .Bye Harry !said Hermione and she did something she had never done before and kissed him on the cheek .Harry thanks George muttered while Fred nodded fervently at his side .Harry winked at them turned to Uncle Vernon and followed him silently from the station .There was no point worrying yet he told himself as he got into the back of the Dursleys car .As Hagrid had said what would come would come .and he would have to meet it when it did .HARRY POTTER I DUDLEY DEMENTED The hottest day of the summer so far was drawing to a close and a drowsy silence lay over the large square houses of Privet Drive .Cars that were usually gleaming stood dusty in their drives and lawns that were once emerald green lay parched and yellowing the use of hosepipes had been banned due to drought .Deprived of their usual carwashing and lawnmowing pursuits the inhabitants of Privet Drive had retreated into the shade of their cool houses windows thrown wide in the hope of tempting in a nonexistent breeze .The only person left outdoors was a teenage boy who was lying flat on his back in a flower bed outside number four .He was a skinny blackhaired bespectacled boy who had the pinched slightly unhealthy look of someone who has grown a lot in a short space of time .His jeans were torn and dirty his Tshirt baggy and faded and the soles of his trainers were peeling away from the uppers .Harry Potters appearance did not endear him to the neighbors who were the sort of people who thought scruffiness ought to be punishable by law but as he had hidden himself behind a large hydrangea bush this evening he was quite invisible to passersby .In fact the only way he would be spotted was if his Uncle Vernon or Aunt Petunia stuck their heads out of the living room window and looked straight down into the flower bed below .On the whole Harry thought he was to be congratulated on his idea of hiding here .He was not perhaps very comfortable lying on the hot hard earth but on the other hand nobody was glaring at him grinding their teeth so loudly that he could not hear the news or shooting nasty questions at him as had happened every time he had tried sitting down in the living room and watching television with his aunt and uncle .Almost as though this thought had fluttered through the open window Vernon Dursley Harrys uncle suddenly spoke .Glad to see the boys stopped trying to butt in .Where is he anyway ?I dont know said Aunt Petunia unconcernedly .Not in the house .Uncle Vernon grunted .Watching the news .he said scathingly .Id like to know what hes really up to .As if a normal boy cares whats on the news Dudley hasnt got a clue whats going on doubt he knows who the Prime Minister is !Anyway its not as if there d be anything about his lot on our news Vernon shh said Aunt Petunia .The windows open !Oh yes sorry dear .The Dursleys fell silent .Harry listened to a jingle about Fruit N Bran breakfast cereal while he watched Mrs Figg a batty catloving old lady from nearby Wisteria Walk amble slowly past .She was frowning and muttering to herself .Harry was very pleased that he was concealed behind the bush Mrs Figg had recently taken to asking him around for tea whenever she met him in the street .She had rounded the corner and vanished from view before Uncle Vernons voice floated out of the window again .Dudders out for tea ?At the Polkisses said Aunt Petunia fondly .Hes got so many little friends hes so popular .Harry repressed a snort with difficulty .The Dursleys really were astonishingly stupid about their son Dudley they had swallowed all his dimwitted lies about having tea with a different member of his gang every night of the summer holidays .Harry knew perfectly well that Dudley had not been to tea anywhere he and his gang spent every evening vandalizing the play park smoking on street corners and throwing stones at passing cars and children .Harry had seen them at it during his evening walks around Little Whinging he had spent most of the holidays wandering the streets scavenging newspapers from bins along the way .The opening notes of the music that heralded the seven oclock news reached Harrys ears and his stomach turned over .Perhaps tonight after a month of waiting would be the night Record numbers of stranded holidaymakers fill airports as the Spanish baggagehandlers strike reaches its second week Give em a lifelong siesta I would snarled Uncle Vernon over the end of the newsreaders sentence but no matter Outside in the flower bed Harrys stomach seemed to unclench .If anything had happened it would surely have been the first item on the news death and destruction were more important than stranded holidaymakers .He let out a long slow breath and stared up at the brilliant blue sky .Every day this summer had been the same the tension the expectation the temporary relief and then mounting tension again .and always growing more insistent all the time the question of why nothing had happened yet .He kept listening just in case there was some small clue not recognized for what it really was by the Muggles an unexplained disappearance perhaps or some strange accident .but the baggagehandlers strike was followed by news on the drought in the Southeast I hope hes listening next door !bellowed Uncle Vernon with his sprinklers on at three in the morning !then a helicopter that had almost crashed in a field in Surrey then a famous actresss divorce from her famous husband as if were interested in their sordid affairs sniffed Aunt Petunia who had followed the case obsessively in every magazine she could lay her bony hands on .Harry closed his eyes against the now blazing evening sky as the newsreader said And finally Bungy the budgie has found a novel way of keeping cool this summer .Bungy who lives at the Five Feathers in Barnsley has learned to waterski !Mary Dorkins went to find out more .Harry opened his eyes again .If they had reached waterskiing budgerigars there was nothing else worth hearing .He rolled cautiously onto his front and raised himself onto his knees and elbows preparing to crawl out from under the window .He had moved about two inches when several things happened in very quick succession .A loud echoing crack broke the sleepy silence like a gunshot a cat streaked out from under a parked car and flew out of sight a shriek a bellowed oath and the sound of breaking china came from the Dursleys living room and as though Harry had been waiting for this signal he jumped to his feet at the same time pulling from the waistband of his jeans a thin wooden wand as if he were unsheathing a sword .But before he could draw himself up to full height the top of his head collided with the Dursleys open window and the resultant crash made Aunt Petunia scream even louder .Harry felt as if his head had been split in two eyes streaming he swayed trying to focus on the street and spot the source of the noise but he had barely staggered upright again when two large purple hands reached through the open window and closed tightly around his throat .Put it away Uncle Vernon snarled into Harrys ear .Now Before anyone sees !Get off me !Harry gasped for a few seconds they struggled Harry pulling at his uncles sausage like fingers with his left hand his right maintaining a firm grip on his raised wand .Then as the pain in the top of Harrys head gave a particularly nasty throb Uncle Vernon yelped and released Harry as though he had received an electric shock some invisible force seemed to have surged through his nephew making him impossible to hold .Panting Harry fell forward over the hydrangea bush straightened up and stared around .There was no sign of what had caused the loud cracking noise but there were several faces peering through various nearby windows .Harry stuffed his wand hastily back into his jeans and tried to look innocent .Lovely evening !shouted Uncle Vernon waving at Mrs Number Seven who was glaring from behind her net curtains .Did you hear that car backfire just now ?Gave Petunia and me quite a turn !He continued to grin in a horrible manic way until all the curious neighbors had disappeared from their various windows then the grin became a grimace of rage as he beckoned Harry back toward him .Harry moved a few steps closer taking care to stop just short of the point at which Uncle Vernons outstretched hands could resume their strangling .What the devil do you mean by it boy ?asked Uncle Vernon in a croaky voice that trembled with fury .What do I mean by what ?said Harry coldly .He kept looking left and right up the street still hoping to see the person who had made the cracking noise .Making a racket like a starting pistol right outside our I didnt make that noise said Harry firmly .Aunt Petunias thin horsey face now appeared beside Uncle Vernons wide purple one .She looked livid .Why were you lurking under our window ?Yes yes good point Petunia !What were you doing under our window boy ?Listening to the news said Harry in a resigned voice .His aunt and uncle exchanged looks of outrage .Listening to the news !Again ?Well it changes every day you see said Harry .Dont you be clever with me boy !I want to know what youre really up to and dont give me any more of this listening to the news tosh !You know perfectly well that your lot .Careful Vernon !breathed Aunt Petunia and Uncle Vernon lowered his voice so that Harry could barely hear him .that your lot dont get on our news !Thats all you know said Harry .The Dursleys goggled at him for a few seconds then Aunt Petunia said Youre a nasty little liar .What are all those she too lowered her voice so that Harry had to lipread the next word owls doing if theyre not bringing you news ?Aha !said Uncle Vernon in a triumphant whisper .Get out of that one boy !As if we didnt know you get all your news from those pestilential birds !Harry hesitated for a moment .It cost him something to tell the truth this time even though his aunt and uncle could not possibly know how bad Harry felt at admitting it .The owls .arent bringing me news said Harry tonelessly .I dont believe it said Aunt Petunia at once .No more do I said Uncle Vernon forcefully .We know youre up to something funny said Aunt Petunia .Were not stupid you know said Uncle Vernon .Well thats news to me said Harry his temper rising and before the Dursleys could call him back he had wheeled about crossed the front lawn stepped over the low garden wall and was striding off up the street .He was in trouble now and he knew it .He would have to face his aunt and uncle later and pay the price for his rudeness but he did not care very much just at the moment he had much more pressing matters on his mind .Harry was sure that the cracking noise had been made by someone Apparating or Disapparating .It was exactly the sound Dobby the houseelf made when he vanished into thin air .Was it possible that Dobby was here in Privet Drive ?Could Dobby be following him right at this very moment ?As this thought occurred he wheeled around and stared back down Privet Drive but it appeared to be completely deserted again and Harry was sure that Dobby did not know how to become invisible .He walked on hardly aware of the route he was taking for he had pounded these streets so often lately that his feet carried him to his favorite haunts automatically .Every few steps he glanced back over his shoulder .Someone magical had been near him as he lay among Aunt Petunias dying begonias he was sure of it .Why hadnt they spoken to him why hadnt they made contact why were they hiding now ?And then as his feeling of frustration peaked his certainty leaked away .Perhaps it hadnt been a magical sound after all .Perhaps he was so desperate for the tiniest sign of contact from the world to which he belonged that he was simply overreacting to perfectly ordinary noises .Could he be sure it hadnt been the sound of something breaking inside a neighbors house ?Harry felt a dull sinking sensation in his stomach and before he knew it the feeling of hopelessness that had plagued him all summer rolled over him once again .Tomorrow morning he would be awoken by the alarm at five oclock so that he could pay the owl that delivered the Daily Prophet but was there any point in continuing to take it ?Harry merely glanced at the front page before throwing it aside these days when the idiots who ran the paper finally realized that Voldemort was back it would be headline news and that was the only kind Harry cared about .If he was lucky there would also be owls carrying letters from his best friends Ron and Hermione though any expectation he had had that their letters would bring him news had long since been dashed .We cant say much about youknowwhat obviously .Weve been told not to say anything important in case our letters go astray .Were quite busy but I cant give you details here .Theres a fair amount going on well tell you everything when we see you .But when were they going to see him ?Nobody seemed too bothered with a precise date .Hermione had scribbled I expect well be seeing you quite soon inside his birthday card but how soon was soon ?As far as Harry could tell from the vague hints in their letters Hermione and Ron were in the same place presumably at Rons parents house .He could hardly bear to think of the pair of them having fun at the Burrow when he was stuck in Privet Drive .In fact he was so angry at them that he had thrown both their birthday presents of Honeydukes chocolates away unopened though he had regretted this after eating the wilting salad Aunt Petunia had provided for dinner that night .And what were Ron and Hermione busy with ?Why wasnt he Harry busy ?Hadnt he proved himself capable of handling much more than they ?Had they all forgotten what he had done ?Hadnt it been he who had entered that graveyard and watched Cedric being murdered and been tied to that tombstone and nearly killed . ?Dont think about that Harry told himself sternly for the hundredth time that summer .It was bad enough that he kept revisiting the graveyard in his nightmares without dwelling on it in his waking moments too .He turned a corner into Magnolia Crescent halfway along he passed the narrow alleyway down the side of a garage where he had first clapped eyes on his godfather .Sirius at least seemed to understand how Harry was feeling admittedly his letters were just as empty of proper news as Ron and Hermiones but at least they contained words of caution and consolation instead of tantalizing hints I know this must be frustrating for you .Keep your nose clean and everything will be okay .Be careful and dont do anything rash .Well thought Harry as he crossed Magnolia Crescent turned into Magnolia Road and headed toward the darkening play park he had by and large done as Sirius advised he had at least resisted the temptation to tie his trunk to his broomstick and set off for the Burrow by himself .In fact Harry thought his behavior had been very good considering how frustrated and angry he felt at being stuck in Privet Drive this long reduced to hiding in flower beds in the hope of hearing something that might point to what Lord Voldemort was doing .Nevertheless it was quite galling to be told not to be rash by a man who had served twelve years in the wizard prison Azkaban escaped attempted to commit the murder he had been convicted for in the first place then gone on the run with a stolen hippogriff .Harry vaulted over the locked park gate and set off across the parched grass .The park was as empty as the surrounding streets .When he reached the swings he sank onto the only one that Dudley and his friends had not yet managed to break coiled one arm around the chain and stared moodily at the ground .He would not be able to hide in the Dursleys flower bed again .Tomorrow he would have to think of some fresh way of listening to the news .In the meantime he had nothing to look forward to but another restless disturbed night because even when he escaped nightmares about Cedric he had unsettling dreams about long dark corridors all finishing in dead ends and locked doors which he supposed had something to do with the trapped feeling he had when he was awake .Often the old scar on his forehead prickled uncomfortably but he did not fool himself that Ron or Hermione or Sirius would find that very interesting anymore .In the past his scar hurting had warned that Voldemort was getting stronger again but now that Voldemort was back they would probably remind him that its regular irritation was only to be expected .Nothing to worry about .old news .The injustice of it all welled up inside him so that he wanted to yell with fury .If it hadnt been for him nobody would even have known Voldemort was back !And his reward was to be stuck in Little Whinging for four solid weeks completely cut off from the magical world reduced to squatting among dying begonias so that he could hear about waterskiing budgerigars !How could Dumbledore have forgotten him so easily ?Why had Ron and Hermione got together without inviting him along too ?How much longer was he supposed to endure Sirius telling him to sit tight and be a good boy or resist the temptation to write to the stupid Daily Prophet and point out that Voldemort had returned ?These furious thoughts whirled around in Harrys head and his insides writhed with anger as a sultry velvety night fell around him the air full of the smell of warm dry grass and the only sound that of the low grumble of traffic on the road beyond the park railings .He did not know how long he had sat on the swing before the sound of voices interrupted his musings and he looked up .The streetlamps from the surrounding roads were casting a misty glow strong enough to silhouette a group of people making their way across the park .One of them was singing a loud crude song .The others were laughing .A soft ticking noise came from several expensive racing bikes that they were wheeling along .Harry knew who those people were .The figure in front was unmistakably his cousin Dudley Dursley wending his way home accompanied by his faithful gang .Dudley was as vast as ever but a years hard dieting and the discovery of a new talent had wrought quite a change in his physique .As Uncle Vernon delightedly told anyone who would listen Dudley had recently become the Junior Heavyweight InterSchool Boxing Champion of the Southeast .The noble sport as Uncle Vernon called it had made Dudley even more formidable than he had seemed to Harry in the primary school days when he had served as Dudleys first punching bag .Harry was not remotely afraid of his cousin anymore but he still didnt think that Dudley learning to punch harder and more accurately was cause for celebration .Neighborhood children all around were terrified of him even more terrified than they were of that Potter boy who they had been warned was a hardened hooligan who attended St .Brutuss Secure Center for Incurably Criminal Boys .Harry watched the dark figures crossing the grass and wondered whom they had been beating up tonight .Look round Harry found himself thinking as he watched them .Come on .look round .Im sitting here all alone .Come and have ago .If Dudleys friends saw him sitting here they would be sure to make a beeline for him and what would Dudley do then ?He wouldnt want to lose face in front of the gang but hed be terrified of provoking Harry .It would be really fun to watch Dudleys dilemma to taunt him watch him with him powerless to respond .and if any of the others tried hitting Harry Harry was ready he had his wand .let them try .Hed love to vent some of his frustration on the boys who had once made his life hell But they did not turn around they did not see him they were almost at the railings .Harry mastered the impulse to call after them .Seeking a fight was not a smart move .He must not use magic .He would be risking expulsion again .Dudleys gangs voices died they were out of sight heading along Magnolia Road .There you go Sirius Harry thought dully .Nothing rash .Kept my nose clean .Exactly the opposite of what youd have done .He got to his feet and stretched .Aunt Petunia and Uncle Vernon seemed to feel that whenever Dudley turned up was the right time to be home and anytime after that was much too late .Uncle Vernon had threatened to lock Harry in the shed if he came home after Dudley again so stifling a yawn still scowling Harry set off toward the park gate .Magnolia Road like Privet Drive was full of large square houses with perfectly manicured lawns all owned by large square owners who drove very clean cars similar to Uncle Vernons .Harry preferred Little Whinging by night when the curtained windows made patches of jewelbright colors in the darkness and he ran no danger of hearing disapproving mutters about his delinquent appearance when he passed the householders .He walked quickly so that halfway along Magnolia Road Dudleys gang came into view again they were saying their farewells at the entrance to Magnolia Crescent .Harry stepped into the shadow of a large lilac tree and waited . .squealed like a pig didnt he ?Malcolm was saying to guffaws from the others .Nice right hook Big D said Piers .Same time tomorrow ?said Dudley .Round at my place my parents are out said Gordon .See you then said Dudley .Bye Dud !See ya Big D !Harry waited for the rest of the gang to move on before setting off again .When their voices had faded once more he headed around the corner into Magnolia Crescent and by walking very quickly he soon came within hailing distance of Dudley who was strolling along at his ease humming tunelessly .Hey Big D !Dudley turned .Oh he grunted .Its you .How long have you been ‘Big D then ?said Harry .Shut it snarled Dudley turning away again .Cool name said Harry grinning and falling into step beside his cousin .But youll always be Ickle Diddykins to me .I said SHUT IT !said Dudley whose hamlike hands had curled into fists .Dont the boys know thats what your mum calls you ?Shut your face .You dont tell her to shut her face .What about ‘popkin and ‘Dinky Diddydums can I use them then ?Dudley said nothing .The effort of keeping himself from hitting Harry seemed to be demanding all his selfcontrol .So whove you been beating up tonight ?Harry asked his grin fading .Another tenyearold ?I know you did Mark Evans two nights ago He was asking for it snarled Dudley .Oh yeah ?He cheeked me .Yeah ?Did he say you look like a pig thats been taught to walk on its hind legs ?Cause thats not cheek Dud thats true .A muscle was twitching in Dudleys jaw .It gave Harry enormous satisfaction to know how furious he was making Dudley he felt as though he was siphoning off his own frustration into his cousin the only outlet he had .They turned right down the narrow alleyway where Harry had first seen Sirius and which formed a shortcut between Magnolia Crescent and Wisteria Walk .It was empty and much darker than the streets it linked because there were no streetlamps .Their footsteps were muffled between garage walls on one side and a high fence on the other .Think youre a big man carrying that thing dont you ?Dudley said after a few seconds .What thing ?That that thing youre hiding .Harry grinned again .Not as stupid as you look are you Dud ?But I spose if you were you wouldnt be able to walk and talk at the same time .Harry pulled out his wand .He saw Dudley look sideways at it .Youre not allowed Dudley said at once .I know youre not .Youd get expelled from that freak school you go to .How dyou know they havent changed the rules Big D ?They havent said Dudley though he didnt sound completely convinced .Harry laughed softly .You havent got the guts to take me on without that thing have you ?Dudley snarled .Whereas you just need four mates behind you before you can beat up a tenyearold .You know that boxing title you keep banging on about ?How old was your opponent ?Seven ?Eight ?He was sixteen for your information snarled Dudley and he was out cold for twenty minutes after Id finished with him and he was twice as heavy as you .You just wait till I tell Dad you had that thing out Running to Daddy now are you ?Is his ickle boxing champ frightened of nasty Harrys wand ?Not this brave at night are you ?sneered Dudley .This is night Diddykins .Thats what we call it when it goes all dark like this .I mean when youre in bed !Dudley snarled .He had stopped walking .Harry stopped too staring at his cousin .From the little he could see of Dudleys large face he was wearing a strangely triumphant look .What dyou mean Im not brave in bed ?said Harry completely nonplussed .What am I supposed to be frightened of pillows or something ?I heard you last night said Dudley breathlessly .Talking in your sleep .Moaning .What dyou mean ?Harry said again but there was a cold plunging sensation in his stomach .He had revisited the graveyard last night in his dreams .Dudley gave a harsh bark of laughter then adopted a highpitched whimpering voice . ‘Dont kill Cedric !Dont kill Cedric !Whos Cedric your boyfriend ?I youre lying said Harry automatically .But his mouth had gone dry .He knew Dudley wasnt lying how else would he know about Cedric ?Tad !Help me Dad !Hes going to kill me Dad !Boo hoo !Shut up said Harry quietly .Shut up Dudley Im warning you ! ‘Come and help me Dad !Mum come and help me !Hes killed Cedric !Dad help me !Hes going to Dont you point that thing at me Dudley backed into the alley wall .Harry was pointing the wand directly at Dudleys heart .Harry could feel fourteen years hatred of Dudley pounding in his veins what wouldnt he give to strike now to jinx Dudley so thoroughly hed have to crawl home like an insect struck dumb sprouting feelers Dont ever talk about that again Harry snarled .Dyou understand me ?Point that thing somewhere else !I said do you understand me ?Point it somewhere else DO YOU UNDERSTAND ME ?GET THAT THING AWAY FROM Dudley gave an odd shuddering gasp as though he had been doused in icy water .Something had happened to the night .The star strewn indigo sky was suddenly pitchblack and lightless the stars the moon the misty streetlamps at either end of the alley had vanished .The distant grumble of cars and the whisper of trees had gone .The balmy evening was suddenly piercingly bitingly cold .They were surrounded by total impenetrable silent darkness as though some giant hand had dropped a thick icy mantle over the entire alleyway blinding them .For a split second Harry thought he had done magic without meaning to despite the fact that hed been resisting as hard as he could then his reason caught up with his senses he didnt have the power to turn off the stars .He turned his head this way and that trying to see something but the darkness pressed on his eyes like a weightless veil .Dudleys terrified voice broke in Harrys ear .Wwhat are you ddoing ?Ststop it !Im not doing anything !Shut up and dont move !I ccant see !Ive ggone blind !I I said shut up !Harry stood stockstill turning his sightless eyes left and right .The cold was so intense that he was shivering all over goose bumps had erupted up his arms and the hairs on the back of his neck were standing up he opened his eyes to their fullest extent staring blankly around unseeing .It was impossible .They couldnt be here .Not in Little Whinging .He strained his ears .He would hear them before he saw them .Ill ttell Dad !Dudley whimpered .Wwhere are you ?What are you ddo ?Will you shut up ?Harry hissed Im trying to lis But he fell silent .He had heard just the thing he had been dreading .There was something in the alleyway apart from themselves something that was drawing long hoarse rattling breaths .Harry felt a horrible jolt of dread as he stood trembling in the freezing air .Ccut it out !Stop doing it !Ill hhit you I swear I will !Dudley shut WHAM A fist made contact with the side of Harrys head lifting Harry off his feet .Small white lights popped in front of Harrys eyes for the second time in an hour he felt as though his head had been cleaved in two next moment he had landed hard on the ground and his wand had flown out of his hand .You moron Dudley !Harry yelled his eyes watering with pain as he scrambled to his hands and knees now feeling around frantically in the blackness .He heard Dudley blundering away hitting the alley fence stumbling .DUDLEY COME BACK !YOURE RUNNING RIGHT AT IT !There was a horrible squealing yell and Dudleys footsteps stopped .At the same moment Harry felt a creeping chill behind him that could mean only one thing .There was more than one .DUDLEY KEEP YOUR MOUTH SHUT !WHATEVER YOU DO KEEP YOUR MOUTH SHUT !Wand !Harry muttered frantically his hands flying over the ground like spiders .Wheres wand come on Lumosl He said the spell automatically desperate for light to help him in his search and to his disbelieving relief light flared inches from his right hand the wand tip had ignited .Harry snatched it up scrambled to his feet and turned around .His stomach turned over .A towering hooded figure was gliding smoothly toward him hovering over the ground no feet or face visible beneath its robes sucking on the night as it came .Stumbling backward Harry raised his wand .Expecto Patronurrd A silvery wisp of vapor shot from the tip of the wand and the dementor slowed but the spell hadnt worked properly tripping over his feet Harry retreated farther as the dementor bore down upon him panic fogging his brain concentrate A pair of gray slimy scabbed hands slid from inside the dementors robes reaching for him .A rushing noise filled Harrys ears .Expecto PatronumV His voice sounded dim and distant .Another wisp of silver smoke feebler than the last drifted from the wand he couldnt do it anymore he couldnt work the spell There was laughter inside his own head shrill high pitched laughter .He could smell the dementors putrid deathcold breath filling his own lungs drowning him Think .something happy .But there was no happiness in him .The dementors icy fingers were closing on his throat the high pitched laughter was growing louder and louder and a voice spoke inside his head Bow to death Harry .It might even be painless .I would not know .I have never died .He was never going to see Ron and Hermione again And their faces burst clearly into his mind as he fought for breath EXPECTO PATRONUM An enormous silver stag erupted from the tip of Harrys wand its antlers caught the dementor in the place where the heart should have been it was thrown backward weightless as darkness and as the stag charged the dementor swooped away batlike and defeated .THIS WAY !Harry shouted at the stag .Wheeling around he sprinted down the alleyway holding the lit wand aloft .DUDLEY ?DUDLEY !He had run barely a dozen steps when he reached them Dudley was curled on the ground his arms clamped over his face a second dementor was crouching low over him gripping his wrists in its slimy hands prizing them slowly almost lovingly apart lowering its hooded head toward Dudleys face as though about to kiss him .GET IT !Harry bellowed and with a rushing roaring sound the silver stag he had conjured came galloping back past him .The dementors eyeless face was barely an inch from Dudleys when the silver antlers caught it the thing was thrown up into the air and like its fellow it soared away and was absorbed into the darkness .The stag cantered to the end of the alleyway and dissolved into silver mist .Moon stars and streetlamps burst back into life .A warm breeze swept the alleyway .Trees rustled in neighboring gardens and the mundane rumble of cars in Magnolia Crescent filled the air again .Harry stood quite still all his senses vibrating taking in the abrupt return to normality .After a moment he became aware that his Tshirt was sticking to him he was drenched in sweat .He could not believe what had just happened .Dementors here in Little Whinging .Dudley lay curled up on the ground whimpering and shaking .Harry bent down to see whether he was in a fit state to stand up but then heard loud running footsteps behind him instinctively raising his wand again he spun on his heel to face the newcomer .Mrs Figg their batty old neighbor came panting into sight .Her grizzled gray hair was escaping from its hairnet a clanking string shopping bag was swinging from her wrist and her feet were halfway out of her tartan carpet slippers .Harry made to stow his wand hurriedly out of sight but Dont put it away idiot boy !she shrieked .What if there are more of them around ?Oh Im going to kill Mundungus Fletcher !A PECK OF OWLS What ?said Harry blankly .He left !said Mrs Figg wringing her hands .Left to see someone about a batch of cauldrons that fell off the back of a broom !I told him Id flay him alive if he went and now look !Dementors !Its just lucky I put Mr Tibbies on the case !But we havent got time to stand around !Hurry now weve got to get you back !Oh the trouble this is going to cause !I will kill him !But The revelation that his batty old catobsessed neighbor knew what dementors were was almost as big a shock to Harry as meeting two of them down the alleyway .Youre youre a witch ?Im a Squib as Mundungus knows full well so how on earth was I supposed to help you fight off dementors ?He left you completely without cover when I warned him This bloke Mundungus has been following me ?Hang on it was him .He Disapparated from the front of my house !Yes yes yes but luckily Id stationed Mr Tibbies under a car just in case and Mr Tibbies came and warned me but by the time I got to your house youd gone and now oh whats Dumbledore going to say ?You !she shrieked at Dudley still supine on the alley floor .Get your fat bottom off the ground quick !You know Dumbledore ?said Harry staring at her .Of course I know Dumbledore who doesnt know Dumbledore ?But come on Ill be no help if they come back Ive never so much as Transfigured a teabag She stooped down seized one of Dudleys massive arms in her wizened hands and tugged .Get up you useless lump get up !But Dudley either could not or would not move .He was still on the ground trembling and ashenfaced his mouth shut very tight .Ill do it .Harry took hold of Dudleys arm and heaved With an enormous effort he managed to hoist Dudley to his feet .Dudley seemed to be on the point of fainting His small eyes were rolling in their sockets and sweat was beading his face the moment Harry let go of him he swayed dangerously .Hurry up !said Mrs Figg hysterically .Harry pulled one of Dudleys massive arms around his own shoulders and dragged him toward the road sagging slightly under his weight .Mrs Figg tottered along in front of them peering anxiously around the corner .Keep your wand out she told Harry as they entered Wisteria Walk .Never mind the Statute of Secrecy now theres going to be hell to pay anyway we might as well be hanged for a dragon as an egg .Talk about the Reasonable Restriction of Underage Sorcery .This was exactly what Dumbledore was afraid of whats that at the end of the street ?Oh its just Mr Prentice .Dont put your wand away boy dont I keep telling you Im no use ?It was not easy to hold a wand steady and carry Dudley along at the same time .Harry gave his cousin an impatient dig in the ribs but Dudley seemed to have lost all desire for independent movement .He was slumped on Harrys shoulder his large feet dragging along the ground .Why didnt you tell me youre a Squib ?Harry asked Mrs Figg panting with the effort to keep walking .All those times I came round your house why didnt you say anything ?Dumbledore s orders .I was to keep an eye on you but not say anything you were too young .Im sorry I gave you such a miserable time but the Dursleys would never have let you come if theyd thought you enjoyed it .It wasnt easy you know .But oh my word she said tragically wringing her hands once more when Dumbledore hears about this how could Mundungus have left he was supposed to be on duty until midnight where is he ?How am I going to tell Dumbledore whats happened I cant Apparate Ive got an owl you can borrow her Harry groaned wondering whether his spine was going to snap under Dudleys weight .Harry you dont understand !Dumbledore will need to act as quickly as possible the Ministry have their own ways of detecting underage magic theyll know already you mark my words But I was getting rid of dementors I had to use magic theyre going to be more worried what dementors were doing floating around Wisteria Walk surely ?Oh my dear I wish it were so but Im afraid MUNDUNGUS FLETCHER I AM GOING TO KILL YOU !There was a loud crack and a strong smell of mingled drink and stale tobacco filled the air as a squat unshaven man in a tattered overcoat materialized right in front of them .He had short bandy legs long straggly ginger hair and bloodshot baggy eyes that gave him the doleful look of a basset hound he was also clutching a silvery bundle that Harry recognized at once as an Invisibility Cloak .S up Figgy ?he said staring from Mrs Figg to Harry and Dudley .What appened to staying undercover ?Ill give you undercover !cried Mrs Figg .Dementors you useless skiving sneak thief !Dementors ?repeated Mundungus aghast .Dementors here ?Yes here you worthless pile of bat droppings here !shrieked Mrs Figg .Dementors attacking the boy on your watch !Blimey said Mundungus weakly looking from Mrs Figg to Harry and back again .Blimey I .And you off buying stolen cauldrons !Didnt I tell you not to go ?Didnt i ?I well I Mundungus looked deeply uncomfortable .It .it was a very good business opportunity see .Mrs Figg raised the arm from which her string bag dangled and whacked Mundungus around the face and neck with it judging by the clanking noise it made it was full of cat food .Ouch gerroff gerroff you mad old bat !Someones gotta tell Dumbledore !Yes they have !yelled Mrs Figg still swinging the bag of cat food at every bit of Mundungus she could reach .And it had better be you and you can tell him why you werent there to help !Keep your airnet on !said Mundungus his arms over his head cowering .Im going Im going !And with another loud crack he vanished .I hope Dumbledore murders him !said Mrs Figg furiously .Now come on Harry what are you waiting for ?Harry decided not to waste his remaining breath on pointing out that he could barely walk under Dudleys bulk .He gave the semiconscious Dudley a heave and staggered onward .Ill take you to the door said Mrs Figg as they turned into Privet Drive .Just in case there are more of them around .Oh my word what a catastrophe .and you had to fight them off yourself .and Dumbledore said we were to keep you from doing magic at all costs .Well its no good crying over spilled potion I suppose .but the cats among the pixies now .So Harry panted Dumbledore s .been having .me followed ?Of course he has said Mrs Figg impatiently .Did you expect him to let you wander around on your own after what happened in June ?Good Lord boy they told me you were intelligent .Right .get inside and stay there she said as they reached number four .I expect someone will be in touch with you soon enough .What are you going to do ?asked Harry quickly .Im going straight home said Mrs Figg staring around the dark street and shuddering .Ill need to wait for more instructions .Just stay in the house .Good night .Hang on dont go yet !I want to know But Mrs Figg had already set off at a trot carpet slippers flopping string bag clanking .Wait !Harry shouted after her he had a million questions to ask anyone who was in contact with Dumbledore but within seconds Mrs Figg was swallowed by the darkness .Scowling Harry readjusted Dudley on his shoulder and made his slow painful way up number fours garden path .The hall light was on .Harry stuck his wand back inside the waistband of his jeans rang the bell and watched Aunt Petunias outline grow larger and larger oddly distorted by the rippling glass in the front door .Diddy !About time too I was getting quite quite Diddy whats the matter ?Harry looked sideways at Dudley and ducked out from under his arm just in time .Dudley swayed for a moment on the spot his face pale green then he opened his mouth at last and vomited all over the doormat .DIDDY !Diddy whats the matter with you ?Vernon ?VERNON !Harrys uncle came galumphing out of the living room walrus mustache blowing hither and thither as it always did when he was agitated .He hurried forward to help Aunt Petunia negotiate a weakkneed Dudley over the threshold while avoiding stepping in the pool of sick .Hes ill Vernon !What is it son ?Whats happened ?Did Mrs Polkiss give you something foreign for tea ?Why are you all covered in dirt darling ?Have you been lying on the ground ?Hang on you havent been mugged have you son ?Aunt Petunia screamed .Phone the police Vernon !Phone the police !Diddy darling speak to Mummy !What did they do to you ?In all the kerfuffle nobody seemed to have noticed Harry which suited him perfectly .He managed to slip inside just before Uncle Vernon slammed the door and while the Dursleys made their noisy progress down the hall toward the kitchen Harry moved carefully and quietly toward the stairs .Who did it son ?Give us names .Well get them dont worry .Shh !Hes trying to say something Vernon !What is it Diddy ?Tell Mummy !Harrys foot was on the bottommost stair when Dudley found his voice .Him Harry froze foot on the stair face screwed up braced for the explosion .BOY !COME HERE !With a feeling of mingled dread and anger Harry removed his foot slowly from the stair and turned to follow the Dursleys .The scrupulously clean kitchen had an oddly unreal glitter after the darkness outside .Aunt Petunia was ushering Dudley into a chair he was still very green and clammy looking .Uncle Vernon was standing in front of the draining board glaring at Harry through tiny narrowed eyes .What have you done to my son ?he said in a menacing growl .Nothing said Harry knowing perfectly well that Uncle Vernon wouldnt believe him .What did he do to you Diddy ?Aunt Petunia said in a quavering voice now sponging sick from the front of Dudleys leather jacket .Was it was it youknow what darling ?Did he use his thing ?Slowly tremulously Dudley nodded .I didnt !Harry said sharply as Aunt Petunia let out a wail and Uncle Vernon raised his fists .I didnt do anything to him it wasnt me it was But at that precise moment a screech owl swooped in through the kitchen window .Narrowly missing the top of Uncle Vernons head it soared across the kitchen dropped the large parchment envelope it was carrying in its beak at Harrys feet and turned gracefully the tips of its wings just brushing the top of the fridge then zoomed outside again and off across the garden .OWLS !bellowed Uncle Vernon the wellworn vein in his temple pulsing angrily as he slammed the kitchen window shut .OWLS AGAIN !I WILL NOT HAVE ANY MORE OWLS IN MY HOUSE !But Harry was already ripping open the envelope and pulling out the letter inside his heart pounding somewhere in the region of his Adams apple .Dear Mr Potter We have received intelligence that you performed the Patronus Charm at twentythree minutes past nine this evening in a Muggleinhabited area and in the presence of a Muggle .The severity of this breach of the Decree for the Reasonable Restriction of Underage Sorcery has resulted in your expulsion from Hog warts School of Witchcraft and Wizardry .Ministry representatives will be calling at your place of residence shortly to destroy your wand .As you have already received an official warning for a previous offense under section 13 of the International Confederation of Wizards Statute of Secrecy we regret to inform you that your presence is required at a disciplinary hearing at the Ministry of Magic at 9 a .m .on August 12th .Hoping you are well Yours sincerely Mafalda Hopkirk IMPROPER USE OF MAGIC OFFICE Ministry of Magic Harry read the letter through twice .He was only vaguely aware of Uncle Vernon and Aunt Petunia talking in the vicinity .Inside his head all was icy and numb .One fact had penetrated his consciousness like a paralyzing dart .He was expelled from Hogwarts .It was all over .He was never going back .He looked up at the Dursleys .Uncle Vernon was purplefaced shouting his fists still raised Aunt Petunia had her arms around Dudley who was retching again .Harrys temporarily stupefied brain seemed to reawaken .Ministry representatives will be calling at your place of residence shortly to destroy your wand .There was only one thing for it .He would have to run now .Where he was going to go Harry didnt know but he was certain of one thing At Hogwarts or outside it he needed his wand .In an almost dreamlike state he pulled his wand out and turned to leave the kitchen .Where dyou think youre going ?yelled Uncle Vernon .When Harry didnt reply he pounded across the kitchen to block the doorway into the hall .I havent finished with you boy !Get out of the way said Harry quietly .Youre going to stay here and explain how my son If you dont get out of the way Im going to jinx you said Harry raising the wand .You cant pull that one on me !snarled Uncle Vernon .I know youre not allowed to use it outside that madhouse you call a school !The madhouse has chucked me out said Harry .So I can do whatever I like .Youve got three seconds .One two A resounding CRACK filled the kitchen Aunt Petunia screamed Uncle Vernon yelled and ducked but for the third time that night Harry was staring for the source of a disturbance he had not made .He spotted it at once A dazed and ruffledlooking barn owl was sitting outside on the kitchen sill having just collided with the closed window .Ignoring Uncle Vernons anguished yell of OWLS !Harry crossed the room at a run and wrenched the window open again .The owl stuck out its leg to which a small roll of parchment was tied shook its feathers and took off the moment Harry had pulled off the letter .Hands shaking Harry unfurled the second message which was written very hastily and blotchily in black ink .Harry Dumbledores just arrived at the Ministry and hes trying to sort it all out .DO NOT LEAVE YOUR AUNT AND UNCLES HOUSE .DO NOT DO ANYMORE MAGIC .DO NOT SURRENDER YOUR WAND .Arthur Weasley Dumbledore was trying to sort it all out .What did that mean ?How much power did Dumbledore have to override the Ministry of Magic ?Was there a chance that he might be allowed back to Hogwarts then ?A small shoot of hope burgeoned in Harrys chest almost immediately strangled by panic how was he supposed to refuse to surrender his wand without doing magic ?Hed have to duel with the Ministry representatives and if he did that hed be lucky to escape Azkaban let alone expulsion .His mind was racing .He could run for it and risk being captured by the Ministry or stay put and wait for them to find him here .He was much more tempted by the former course but he knew that Mr Weasley had his best interests at heart .and after all Dumbledore had sorted out much worse than this before .Right Harry said Ive changed my mind Im staying .He flung himself down at the kitchen table and faced Dudley and Aunt Petunia .The Dursleys appeared taken aback at his abrupt change of mind .Aunt Petunia glanced despairingly at Uncle Vernon .The vein in Uncle Vernons purple temple was throbbing worse than ever .Who are all these ruddy owls from ?he growled .The first one was from the Ministry of Magic expelling me said Harry calmly he was straining his ears to catch noises outside in case the Ministry representatives were approaching and it was easier and quieter to answer Uncle Vernons questions than to have him start raging and bellowing .The second one was from my friend Rons dad he works at the Ministry .Ministry of Magic ?bellowed Uncle Vernon .People like you in government ?Oh this explains everything everything no wonder the countrys going to the dogs .When Harry did not respond Uncle Vernon glared at him then spat And why have you been expelled ?Because I did magic .AHA !roared Uncle Vernon slamming his fist down on the top of the fridge which sprang open several of Dudleys lowfat snacks toppled out and burst on the floor .So you admit it !What did you do to Dudley ?Nothing said Harry slightly less calmly .That wasnt me Was muttered Dudley unexpectedly and Uncle Vernon and Aunt Petunia instantly made flapping gestures at Harry to quiet him while they both bent low over Dudley .Go on son said Uncle Vernon what did he do ?Tell us darling whispered Aunt Petunia .Pointed his wand at me Dudley mumbled .Yeah I did but I didnt use Harry began angrily but .SHUT UP !roared Uncle Vernon and Aunt Petunia in unison .Go on son repeated Uncle Vernon mustache blowing about furiously .All dark Dudley said hoarsely shuddering .Everything dark .And then I hheard .things .Inside mmy head .Uncle Vernon and Aunt Petunia exchanged looks of utter horror .If their least favorite thing in the world was magic closely followed by neighbors who cheated more than they did on the hosepipe ban people who heard voices were definitely in the bottom ten .They obviously thought Dudley was losing his mind .What sort of things did you hear popkin ?breathed Aunt Petunia very whitefaced and with tears in her eyes .But Dudley seemed incapable of saying .He shuddered again and shook his large blond head and despite the sense of numb dread that had settled on Harry since the arrival of the first owl he felt a certain curiosity .Dementors caused a person to relive the worst moments of their life .What would spoiled pampered bullying Dudley have been forced to hear ?How come you fell over son ?said Uncle Vernon in an unnaturally quiet voice the kind of voice he would adopt at the bedside of a very ill person .Ttripped said Dudley shakily .And then He gestured at his massive chest .Harry understood Dudley was remembering the clammy cold that filled the lungs as hope and happiness were sucked out of you .Horrible croaked Dudley .Cold .Really cold .Okay said Uncle Vernon in a voice of forced calm while Aunt Petunia laid an anxious hand on Dudleys forehead to feel his temperature .What happened then Dudders ?Felt .felt .felt .as if .as if .As if youd never be happy again Harry supplied tonelessly .Yes Dudley whispered still trembling .So said Uncle Vernon voice restored to full and considerable volume as he straightened up .So you put some crackpot spell on my son so hed hear voices and believe he was was doomed to misery or something did you ?How many times do I have to tell you ?said Harry temper and voice rising together .It wasnt me It was a couple of dementors !A couple of whats this codswallop ?De men tors said Harry slowly and clearly .Two of them .And what the ruddy hell are dementors ?They guard the wizard prison Azkaban said Aunt Petunia .Two seconds ringing silence followed these words and then Aunt Petunia clapped her hand over her mouth as though she had let slip a disgusting swear word .Uncle Vernon was goggling at her .Harrys brain reeled .Mrs Figg was one thing but Aunt Petunia ?How dyou know that ?he asked her astonished .Aunt Petunia looked quite appalled with herself .She glanced at Uncle Vernon in fearful apology then lowered her hand slightly to reveal her horsey teeth .I heard that awful boy telling her about them years ago she said jerkily .If you mean my mum and dad why dont you use their names ?said Harry loudly but Aunt Petunia ignored him .She seemed horribly flustered .Harry was stunned .Except for one outburst years ago in the course of which Aunt Petunia had screamed that Harrys mother had been a freak he had never heard her mention her sister .He was astounded that she had remembered this scrap of information about the magical world for so long when she usually put all her energies into pretending it didnt exist .Uncle Vernon opened his mouth closed it again opened it once more shut it then apparently struggling to remember how to talk opened it for a third time and croaked So so they er they er they actually exist do they er dementy whatsits ?Aunt Petunia nodded .Uncle Vernon looked from Aunt Petunia to Dudley to Harry as if hoping somebody was going to shout April Fool !When nobody did he opened his mouth yet again but was spared the struggle to find more words by the arrival of the third owl of the evening which zoomed through the stillopen window like a feathery cannonball and landed with a clatter on the kitchen table causing all three of the Dursleys to jump with fright .Harry tore a second officiallooking envelope from the owls beak and ripped it open as the owl swooped back out into the night .Enough effing owls .muttered Uncle Vernon distractedly stomping over to the window and slamming it shut again .Dear Mr Potter Further to our letter of approximately twentytwo minutes ago the Ministry of Magic has revised its decision to destroy your wand forthwith .You may retain your wand until your disciplinary hearing on 12th August at which time an official decision will be taken .Following discussions with the Headmaster of Hogwarts School of Witchcraft and Wizardry the Ministry has agreed that the question of your expulsion will also be decided at that time .You should therefore consider yourself suspended from school pending further inquiries .With best wishes Yours sincerely Mafalda Hopkirk IMPROPER USE OF MAGIC OFFICE Ministry of Magic Harry read this letter through three times in quick succession .The miserable knot in his chest loosened slightly at the thought that he was not definitely expelled though his fears were by no means banished .Everything seemed to hang on this hearing on the twelfth of August .Well ?said Uncle Vernon recalling Harry to his surroundings .What now ?Have they sentenced you to anything ?Do your lot have the death penalty ?he added as a hopeful afterthought .Ive got to go to a hearing said Harry .And theyll sentence you there ?I suppose so .I wont give up hope then said Uncle Vernon nastily .Well if thats all said Harry getting to his feet .He was desperate to be alone to think perhaps to send a letter to Ron Hermione or Sirius .NO IT RUDDY WELL IS NOT ALL !bellowed Uncle Vernon .SIT BACK DOWN !What now ?said Harry impatiently .DUDLEY !roared Uncle Vernon .I want to know exactly what happened to my son !FINE !yelled Harry and in his temper red and gold sparks shot out of the end of his wand still clutched in his hand .All three Dursleys flinched looking terrified .Dudley and I were in the alleyway between Magnolia Crescent and Wisteria Walk said Harry speaking fast fighting to control his temper .Dudley thought hed be smart with me I pulled out my wand but didnt use it .Then two dementors turned up But what ARE dementoids ?asked Uncle Vernon furiously .What do they DO ?I told you they suck all the happiness out of you said Harry and if they get the chance they kiss you Kiss you ?said Uncle Vernon his eyes popping slightly .Kiss you ?Its what they call it when they suck the soul out of your mouth .Aunt Petunia uttered a soft scream .His soul ?They didnt take hes still got his She seized Dudley by the shoulders and shook him as though testing to see whether she could hear his soul rattling around inside him .Of course they didnt get his soul youd know if they had said Harry exasperated .Fought em off did you son ?said Uncle Vernon loudly with the appearance of a man struggling to bring the conversation back onto a plane he understood .Gave em the old onetwo did you ?You cant give a dementor the old onetwo said Harry through clenched teeth .Whys he all right then ?blustered Uncle Vernon .Why isnt he all empty then ?Because I used the Patronus WHOOSH .With a clattering a whirring of wings and a soft fall of dust a fourth owl came shooting out of the kitchen fireplace .FOR GODS SAKE !roared Uncle Vernon pulling great clumps of hair out of his mustache something he hadnt been driven to in a long time .I WILL NOT HAVE OWLS HERE I WILL NOT TOLERATE THIS I TELL YOU !But Harry was already pulling a roll of parchment from the owls leg .He was so convinced that this letter had to be from Dumbledore explaining everything the dementors Mrs Figg what the Ministry was up to how he Dumbledore intended to sort everything out that for the first time in his life he was disappointed to see Siriuss handwriting .Ignoring Uncle Vernons ongoing rant about owls and narrowing his eyes against a second cloud of dust as the most recent owl took off back up the chimney Harry read Siriuss message .Arthurs just told us whats happened .Dont leave the house again whatever you do .Harry found this such an inadequate response to everything that had happened tonight that he turned the piece of parchment over looking for the rest of the letter but there was nothing there .And now his temper was rising again .Wasnt anybody going to say well done for fighting off two dementors singlehandedly ?Both Mr Weasley and Sirius were acting as though hed misbehaved and they were saving their tellingsoff until they could ascertain how much damage had been done .a peck I mean pack of owls shooting in and out of my house and I wont have it boy I wont I cant stop the owls coming Harry snapped crushing Siriuss letter in his fist .I want the truth about what happened tonight !barked Uncle Vernon .If it was demenders who hurt Dudley how come youve been expelled ?You did you knowwhat youve admitted it !Harry took a deep steadying breath .His head was beginning to ache again .He wanted more than anything to get out of the kitchen away from the Dursleys .I did the Patronus Charm to get rid of the dementors he said forcing himself to remain calm .Its the only thing that works against them .But what were dementoids doing in Little Whinging ?said Uncle Vernon in tones of outrage .Couldnt tell you said Harry wearily .No idea .His head was pounding in the glare of the strip lighting now .His anger was ebbing away .He felt drained exhausted .The Dursleys were all staring at him .Its you said Uncle Vernon forcefully .Its got something to do with you boy I know it .Why else would they turn up here ?Why else would they be down that alleyway ?Youve got to be the only the only Evidently he couldnt bring himself to say the word wizard .The only youknowwhat for miles .I dont know why they were here .But at these words of Uncle Vernons Harrys exhausted brain ground back into action .Why had the dementors come to Little Whinging ?How could it be coincidence that they had arrived in the alleyway where Harry was ?Had they been sent ?Had the Ministry of Magic lost control of the dementors had they deserted Azkaban and joined Voldemort as Dumbledore had predicted they would ?These demembers guard some weirdos prison ?said Uncle Vernon lumbering in the wake of Harrys train of thought .Yes said Harry .If only his head would stop hurting if only he could just leave the kitchen and get to his dark bedroom and think .Oho !They were coming to arrest you !said Uncle Vernon with the triumphant air of a man reaching an unassailable conclusion .Thats it isnt it boy ?Youre on the run from the law !Of course Im not said Harry shaking his head as though to scare off a fly his mind racing now .Then why ?He must have sent them said Harry quietly more to himself than to Uncle Vernon .Whats that ?Who must have sent them ?Lord Voldemort said Harry .He registered dimly how strange it was that the Dursleys who flinched winced and squawked if they heard words like wizard magic or wand could hear the name of the most evil wizard of all time without the slightest tremor .Lord hang on said Uncle Vernon his face screwed up a look of dawning comprehension in his piggy eyes .Ive heard that name .that was the one who .Murdered my parents yes Harry said .But hes gone said Uncle Vernon impatiently without the slightest sign that the murder of Harrys parents might be a painful topic to anybody .That giant bloke said so .Hes gone .Hes back said Harry heavily .It felt very strange to be standing here in Aunt Petunias surgically clean kitchen beside the topof therange fridge and the widescreen television and talking calmly of Lord Voldemort to Uncle Vernon .The arrival of the dementors in Little Whinging seemed to have caused a breach in the great invisible wall that divided the relentlessly nonmagical world of Privet Drive and the world beyond .Harrys two lives had somehow become fused and everything had been turned upside down The Dursleys were asking for details about the magical world and Mrs Figg knew Albus Dumbledore dementors were soaring around Little Whinging and he might never go back to Hogwarts .Harrys head throbbed more painfully .Back ?whispered Aunt Petunia .She was looking at Harry as she had never looked at him before .And all of a sudden for the very first time in his life Harry fully appreciated that Aunt Petunia was his mothers sister .He could not have said why this hit him so very powerfully at this moment .All he knew was that he was not the only person in the room who had an inkling of what Lord Voldemort being back might mean .Aunt Petunia had never in her life looked at him like that before .Her large pale eyes so unlike her sisters were not narrowed in dislike or anger They were wide and fearful .The furious pretense that Aunt Petunia had maintained all Harrys life that there was no magic and no world other than the world she inhabited with Uncle Vernon seemed to have fallen away .Yes Harry said talking directly to Aunt Petunia now .He came back a month ago .I saw him .Her hands found Dudleys massive leatherclad shoulders and clutched them .Hang on said Uncle Vernon looking from his wife to Harry and back again apparently dazed and confused by the unprecedented understanding that seemed to have sprung up between them .Hang on .This Lord Voldythings back you say .Yes .The one who murdered your parents .Yes .And now hes sending dismembers after you ?Looks like it said Harry .I see said Uncle Vernon looking from his white faced wife to Harry and hitching up his trousers .He seemed to be swelling his great purple face stretching before Harrys eyes .Well that settles it he said his shirt front straining as he inflated himself you can get out of this house boy What ?said Harry .You heard me OUT !Uncle Vernon bellowed and even Aunt Petunia and Dudley jumped .OUT !OUT !I shouldve done it years ago !Owls treating the place like a rest home puddings exploding half the lounge destroyed Dudleys tail Marge bobbing around on the ceiling and that flying Ford Anglia OUT !OUT !Youve had it !Youre history !Youre not staying here if some loonys after you youre not endangering my wife and son youre not bringing trouble down on us if youre going the same way as your useless parents Ive had it !OUT !Harry stood rooted to the spot .The letters from the Ministry Mr Weasley and Sirius were crushed in his left hand .Dont leave the house again whatever you do .DO NOT LEA VE YOUR A UNT AND UNCLES HOUSE .You heard me !said Uncle Vernon bending forward now so that his massive purple face came closer to Harrys so that Harry actually felt flecks of spit hit his face .Get going !You were all keen to leave half an hour ago !Im right behind you !Get out and never darken our doorstep again !Why we ever kept you in the first place I dont know .Marge was right it should have been the orphanage we were too damn soft for our own good thought we could squash it out of you thought we could turn you normal but youve been rotten from the beginning and Ive had enough OWLS !The fifth owl zoomed down the chimney so fast it actually hit the floor before zooming into the air again with a loud screech .Harry raised his hand to seize the letter which was in a scarlet envelope but it soared straight over his head flying directly at Aunt Petunia who let out a scream and ducked her arms over her face .The owl dropped the red envelope on her head turned and flew straight up the chimney again .Harry darted forward to pick up the letter but Aunt Petunia beat him to it .You can open it if you like said Harry but Ill hear what it says anyway .Thats a Howler .Let go of it Petunia !roared Uncle Vernon .Dont touch it it could be dangerous !Its addressed to me said Aunt Petunia in a shaking voice .Its addressed to me Vernon look !Mrs Petunia Dursley The Kitchen Number Four Privet Drive She caught her breath horrified .The red envelope had begun to smoke .Open it !Harry urged her .Get it over with !Itll happen anyway No Aunt Petunias hand was trembling .She looked wildly around the kitchen as though looking for an escape route but too late the envelope burst into flames .Aunt Petunia screamed and dropped it .An awful voice filled the kitchen echoing in the confined space issuing from the burning letter on the table .REMEMBER MY LAST PETUNIA .Aunt Petunia looked as though she might faint .She sank into the chair beside Dudley her face in her hands .The remains of the envelope smoldered into ash in the silence .What is this ?Uncle Vernon said hoarsely .What I dont Petunia ?Aunt Petunia said nothing .Dudley was staring stupidly at his mother his mouth hanging open .The silence spiraled horribly .Harry was watching his aunt utterly bewildered his head throbbing fit to burst .Petunia dear ?said Uncle Vernon timidly .P Petunia ?She raised her head .She was still trembling .She swallowed .The boy the boy will have to stay Vernon she said weakly .Wwhat ?He stays she said .She was not looking at Harry .She got to her feet again .He .but Petunia .If we throw him out the neighbors will talk she said .She was regaining her usual brisk snappish manner rapidly though she was still very pale .Theyll ask awkward questions theyll want to know where hes gone .Well have to keep him .Uncle Vernon was deflating like an old tire .But Petunia dear Aunt Petunia ignored him .She turned to Harry .Youre to stay in your room she said .Youre not to leave the house .Now get to bed .Harry didnt move .Who was that Howler from ?Dont ask questions Aunt Petunia snapped .Are you in touch with wizards ?I told you to get to bed !What did it mean ?Remember the last what ?Go to bed !How come ?YOU HEARD YOUR AUNT NOW GET TO BED !THE ADVANCED GUARD Fve just been attacked by dementors and I might be expelled from Hogwarts .I want to know whats going on and when Im going to get out of here .Harry copied these words onto three separate pieces of parchment the moment he reached the desk in his dark bedroom .He addressed the first to Sirius the second to Ron and the third to Hermione .His owl Hedwig was off hunting her cage stood empty on the desk .Harry paced the bedroom waiting for her to come back his head pounding his brain too busy for sleep even though his eyes stung and itched with tiredness .His back ached from carrying Dudley home and the two lumps on his head where the window and Dudley had hit him were throbbing painfully .Up and down he paced consumed with anger and frustration grinding his teeth and clenching his fists casting angry looks out at the empty starstrewn sky every time he passed the window .Dementors sent to get him Mrs Figg and Mundungus Fletcher tailing him in secret then suspension from Hogwarts and a hearing at the Ministry of Magic and still no one was telling him what was going on .And what what had that Howler been about ?Whose voice had echoed so horribly so menacingly through the kitchen ?Why was he still trapped here without information ?Why was everyone treating him like some naughty kid ?Dont do any more magic stay in the house .He kicked his school trunk as he passed it but far from relieving his anger he felt worse as he now had a sharp pain in his toe to deal with in addition to the pain in the rest of his body .Just as he limped past the window Hedwig soared through it with a soft rustle of wings like a small ghost .About time !Harry snarled as she landed lightly on top of her cage .You can put that down IVe got work for you !Hedwigs large round amber eyes gazed reproachfully at him over the dead frog clamped in her beak .Come here said Harry picking up the three small rolls of parchment and a leather thong and tying the scrolls to her scaly leg .Take these straight to Sirius Ron and Hermione and dont come back here without good long replies .Keep pecking them till theyve written decentlength answers if youve got to .Understand ?Hedwig gave a muffled hooting noise beak still full of frog .Get going then said Harry .She took off immediately .The moment shed gone Harry threw himself down onto his bed without undressing and stared at the dark ceiling .In addition to every other miserable feeling he now felt guilty that hed been irritable with Hedwig she was the only friend he had at number four Privet Drive .But hed make it up to her when she came back with Siriuss Rons and Hermiones answers .They were bound to write back quickly they couldnt possibly ignore a dementor attack .Hed probably wake up tomorrow to three fat letters full of sympathy and plans for his immediate removal to the Burrow .And with that comforting idea sleep rolled over him stifling all further thought . •k Jc k But Hedwig didnt return next morning .Harry spent the day in his bedroom leaving it only to go to the bathroom .Three times that day Aunt Petunia shoved food into his room through the cat flap Uncle Vernon had installed three summers ago .Every time Harry heard her approaching he tried to question her about the Howler but he might as well have interrogated the doorknob for all the answers he got .Otherwise the Dursleys kept well clear of his bedroom .Harry couldnt see the point of forcing his company on them another row would achieve nothing except perhaps making him so angry hed perform more illegal magic .So it went on for three whole days .Harry was filled alternately with restless energy that made him unable to settle to anything during which he paced his bedroom again furious at the whole lot of them for leaving him to stew in this mess and with a lethargy so complete that he could lie on his bed for an hour at a time staring dazedly into space aching with dread at the thought of the Ministry hearing .What if they ruled against him ?What if he was expelled and his wand was snapped in half ?What would he do where would he go ?He could not return to living fulltime with the Dursleys not now that he knew the other world the one to which he really belonged .Was it possible that he might be able to move into Siriuss house as Sirius had suggested a year ago before he had been forced to flee from the Ministry himself ?Would he be allowed to live there alone given that he was still underage ?Or would the matter of where he went next be decided for him had his breach of the International Statute of Secrecy been severe enough to land him in a cell in Azkaban ?Whenever this thought occurred Harry invariably slid off his bed and began pacing again .On the fourth night after Hedwigs departure Harry was lying in one of his apathetic phases staring at the ceiling his exhausted mind quite blank when his uncle entered his bedroom .Harry looked slowly around at him .Uncle Vernon was wearing his best suit and an expression of enormous smugness .Were going out he said .Sorry ?We that is to say your aunt Dudley and I are going out .Fine said Harry dully looking back at the ceiling .You are not to leave your bedroom while we are away .Okay .You are not to touch the television the stereo or any of our possessions .Right .You are not to steal food from the fridge .Okay .I am going to lock your door .You do that .Uncle Vernon glared at Harry clearly suspicious of this lack of argument then stomped out of the room and closed the door behind him .Harry heard the key turn in the lock and Uncle Vernons footsteps walking heavily down the stairs .A few minutes later he heard the slamming of car doors the rumble of an engine and the unmistakable sound of the car sweeping out of the drive .Harry had no particular feeling about the Dursleys leaving .It made no difference to him whether they were in the house or not .He could not even summon the energy to get up and turn on his bedroom light .The room grew steadily darker around him as he lay listening to the night sounds through the window he kept open all the time waiting for the blessed moment when Hedwig returned .The empty house creaked around him .The pipes gurgled .Harry lay there in a kind of stupor thinking of nothing suspended in misery .And then quite distinctly he heard a crash in the kitchen below .He sat bolt upright listening intently .The Dursleys couldnt be back it was much too soon and in any case he hadnt heard their car .There was silence for a few seconds and then he heard voices .Burglars he thought sliding off the bed onto his feet but a split second later it occurred to him that burglars would keep their voices down and whoever was moving around in the kitchen was certainly not troubling to do so .He snatched up his wand from his bedside table and stood facing his bedroom door listening with all his might .Next moment he jumped as the lock gave a loud click and his door swung open .Harry stood motionless staring through the open door at the dark upstairs landing straining his ears for further sounds but none came .He hesitated for a moment and then moved swiftly and silently out of his room to the head of the stairs .His heart shot upward into his throat .There were people standing in the shadowy hall below silhouetted against the streetlight glowing through the glass door eight or nine of them all as far as he could see looking up at him .Lower your wand boy before you take someones eye out said a low gvoice .Harrys heart was thumping uncontrollably .He knew that voice but he did not lower his wand .Professor Moody ?he said uncertainly .I dont know so much about ‘Professor growled the voice never got round to much teaching did I ?Get down here we want to see you properly .Harry lowered his wand slightly but did not relax his grip on it nor did he move .He had very good reason to be suspicious .He had recently spent nine months in what he had thought was MadEye Moodys company only to find out that it wasnt Moody at all but an impostor an impostor moreover who had tried to kill Harry before being unmasked .But before he could make a decision about what to do next a second slightly hoarse voice floated upstairs .Its all right Harry .Weve come to take you away .Harrys heart leapt .He knew that voice too though he hadnt heard it for more than a year .PProfessor Lupin ?he said disbelievingly .Is that you ?Why are we all standing in the dark ?said a third voice this one completely unfamiliar a womans .Lumos .A wand tip flared illuminating the hall with magical light .Harry blinked .The people below were crowded around the foot of the stairs gazing intently up at him some craning their heads for a better look .Remus Lupin stood nearest to him .Though still quite young Lupin looked tired and rather ill he had more gray hair than when Harry had said goodbye to him and his robes were more patched and shabbier than ever .Nevertheless he was smiling broadly at Harry who tried to smile back through his shock .Oooh he looks just like I thought he would said the witch who was holding her lit wand aloft .She looked the youngest there she had a pale heartshaped face dark twinkling eyes and short spiky hair that was a violent shade of violet .Wotcher Harry !Yeah I see what you mean Remus said a bald black wizard standing farthest back he had a deep slow voice and wore a single gold hoop in his ear .He looks exactly like James .Except the eyes said a wheezyvoiced silverhaired wizard at the back .Lilys eyes .MadEye Moody who had long grizzled gray hair and a large chunk missing from his nose was squinting suspiciously at Harry through his mismatched eyes .One of the eyes was small dark and beady the other large round and electric blue the magical eye that could see through walls doors and the back of Moodys own head .Are you quite sure its him Lupin ?he growled .Itd be a nice lookout if we bring back some Death Eater impersonating him .We ought to ask him something only the real Potter would know .Unless anyone brought any Veritaserum ?Harry what form does your Patronus take ?said Lupin .A stag said Harry nervously .Thats him MadEye said Lupin .Harry descended the stairs very conscious of everybody still staring at him stowing his wand into the back pocket of his jeans as he came .Dont put your wand there boy !roared Moody .What if it ignited ?Better wizards than you have lost buttocks you know !Who dyou know whos lost a buttock ?the violet haired woman asked MadEye interestedly .Never you mind you just keep your wand out of your back pocket !growled MadEye .Elementary wand safety nobody bothers about it anymore .He stumped off toward the kitchen .And I saw that he added irritably as the woman rolled her eyes at the ceiling .Lupin held out his hand and shook Harrys .How are you ?he asked looking at Harry closely .Ffine .Harry could hardly believe this was real .Four weeks with nothing not the tiniest hint of a plan to remove him from Privet Drive and suddenly a whole bunch of wizards was standing matteroffactly in the house as though this were a longstanding arrangement .He glanced at the people surrounding Lupin they were still gazing avidly at him .He felt very conscious of the fact that he had not combed his hair for four days .Im youre really lucky the Dursleys are out .he mumbled .Lucky ha !said the violethaired woman .It was me that lured them out of the way .Sent a letter by Muggle post telling them theyd been shortlisted for the AllEngland BestKept Suburban Lawn Competition .Theyre heading off to the prizegiving right now .Or they think they are .Harry had a fleeting vision of Uncle Vernons face when he realized there was no AllEngland BestKept Suburban Lawn Competition .We are leaving arent we ?he asked .Soon ?Almost at once said Lupin were just waiting for the allclear .Where are we going ?The Burrow ?Harry asked hopefully .Not the Burrow no said Lupin motioning Harry toward the kitchen the little knot of wizards followed all still eyeing Harry curiously .Too risky .Weve set up headquarters somewhere undetectable .Its taken a while .MadEye Moody was now sitting at the kitchen table swigging from a hip flask his magical eye spinning in all directions taking in the Dursleys many labor saving appliances .This is Alastor Moody Harry Lupin continued pointing toward Moody .Yeah I know said Harry uncomfortably it felt odd to be introduced to somebody hed thought hed known for a year .And this is Nymphadora Dont call me Nymphadora Remus said the young witch with a shudder .Its Tonks .Nymphadora Tonks who prefers to be known by her surname only finished Lupin .So would you if your fool of a mother had called you ‘Nymphadora muttered Tonks .And this is Kingsley Shacklebolt he indicated the tall black wizard who bowed Elphias Doge the wheezyvoiced wizard nodded Dedalus Diggle Weve met before squeaked the excitable Diggle dropping his top hat .Emmeline Vance a stately looking witch in an emeraldgreen shawl inclined her head Sturgis Podmore a squarejawed wizard with thick straw colored hair winked and Hestia Jones .A pink cheeked blackhaired witch waved from next to the toaster .Harry inclined his head awkwardly at each of them as they were introduced .He wished they would look at something other than him it was as though he had suddenly been ushered onstage .He also wondered why so many of them were there .A surprising number of people volunteered to come and get you said Lupin as though he had read Harrys mind the corners of his mouth twitched slightly .Yeah well the more the better said Moody darkly .Were your guard Potter .Were just waiting for the signal to tell us its safe to set off said Lupin glancing out of the kitchen window .Weve got about fifteen minutes .Very clean arent they these Muggles ?said the witch called Tonks who was looking around the kitchen with great interest .My dads Muggleborn and hes a right old slob .I suppose it varies just like with wizards ?Er yeah said Harry .Look he turned back to Lupin whats going on I havent heard anything from anyone whats Vol ?Several of the witches and wizards made odd hissing noises Dedalus Diggle dropped his hat again and Moody growled Shut up What ?said Harry .Were not discussing anything here its too risky said Moody turning his normal eye on Harry his magical eye remained pointing up at the ceiling .Damn it he added angrily putting a hand up to the magical eye it keeps sticking ever since that scum wore it And with a nasty squelching sound much like a plunger being pulled from a sink he popped out his eye .MadEye you do know thats disgusting dont you ?said Tonks conversationally .Get me a glass of water would you Harry ?asked Moody .Harry crossed to the dishwasher took out a clean glass and filled it with water at the sink still watched eagerly by the band of wizards .Their relentless staring was starting to annoy him .Cheers said Moody when Harry handed him the glass .He dropped the magical eyeball into the water and prodded it up and down the eye whizzed around staring at them all in turn .I want threehundred andsixty degrees visibility on the return journey .Howre we getting wherever were going ?Harry asked .Brooms said Lupin .Only way .Youre too young to Apparate theyll be watching the Floo Network and its more than our lifes worth to set up an unauthorized Portkey .Remus says youre a good flier said Kingsley Shacklebolt in his deep voice .Hes excellent said Lupin who was checking his watch .Anyway youd better go and get packed Harry we want to be ready to go when the signal comes .Ill come and help you said Tonks brightly .She followed Harry back into the hall and up the stairs looking around with much curiosity and interest .Funny place she said its a bit too clean dyou know what I mean ?Bit unnatural .Oh this is better she added as they entered Harrys bedroom and he turned on the light .His room was certainly much messier than the rest of the house .Confined to it for four days in a very bad mood Harry had not bothered tidying up after himself .Most of the books he owned were strewn over the floor where hed tried to distract himself with each in turn and thrown it aside .Hedwigs cage needed cleaning out and was starting to smell and his trunk lay open revealing a jumbled mixture of Muggle clothes and wizards robes that had spilled onto the floor around it .Harry started picking up books and throwing them hastily into his trunk .Tonks paused at his open wardrobe to look critically at her reflection in the mirror on the inside of the door .You know I dont think purples really my color she said pensively tugging at a lock of spiky hair .Dyou think it makes me look a bit peaky ?Er said Harry looking up at her over the top of Quidditch Teams of Britain and Ireland .Yeah it does said Tonks decisively .She screwed up her eyes in a strained expression as though she were struggling to remember something .A second later her hair had turned bubblegum pink .How did you do that ?said Harry gaping at her as she opened her eyes again .Im a Metamorphmagus she said looking back at her reflection and turning her head so that she could see her hair from all directions .It means I can change my appearance at will she added spotting Harrys puzzled expression in the mirror behind her .I was born one .I got top marks in Concealment and Disguise during Auror training without any study at all it was great .Youre an Auror ?said Harry impressed .Being a Dark wizard catcher was the only career hed ever considered after Hogwarts .Yeah said Tonks looking proud .Kingsley is as well hes a bit higher up than I am though .I only qualified a year ago .Nearly failed on Stealth and Tracking Im dead clumsy did you hear me break that plate when we arrived downstairs ?Can you learn how to be a Metamorphmagus ?Harry asked her straightening up completely forgetting about packing .Tonks chuckled .Bet you wouldnt mind hiding that scar sometimes eh ?Her eyes found the lightningshaped scar on Harrys forehead .No I wouldnt mind Harry mumbled turning away .He did not like people staring at his scar .Well you 11 have to learn the hard way Im afraid said Tonks .Metamorphmagi are really rare theyre born not made .Most wizards need to use a wand or potions to change their appearance .But weve got to get going Harry were supposed to be packing she added guiltily looking around at all the mess on the floor .Oh yeah said Harry grabbing up a few more books .Dont be stupid itll be much quicker if I pack .cried Tonks waving her wand in a long sweeping movement over the floor .Books clothes telescope and scales all soared into the air and flew pellmell into the trunk .Its not very neat said Tonks walking over to the trunk and looking down at the jumble inside .My mums got this knack of getting stuff to fit itself in neatly she even gets the socks to fold themselves but Ive never mastered how she does it its a kind of flick She flicked her wand hopefully one of Harrys socks gave a feeble sort of wiggle and flopped back on top of the mess within .Ah well said Tonks slamming the trunks lid shut at least its all in .That could do with a bit of cleaning too Scourgify She pointed her wand at Hedwigs cage a few feathers and droppings vanished .Well thats a bit better Ive never quite got the hang of these sort of householdy spells .Right got everything ?Cauldron ?Broom ?Wow !A Firebolt ?Her eyes widened as they fell on the broomstick in Harrys right hand .It was his pride and joy a gift from Sirius an international standard broomstick .And Im still riding a Comet Two Sixty said Tonks enviously .Ah well .wand still in your jeans ?Both buttocks still on ?Okay lets go .Locomotor Trunk .Harrys trunk rose a few inches into the air .Holding her wand like a conductors baton Tonks made it hover across the room and out of the door ahead of them Hedwigs cage in her left hand .Harry followed her down the stairs carrying his broomstick .Back in the kitchen Moody had replaced his eye which was spinning so fast after its cleaning it made Harry feel sick .Kingsley Shacklebolt and Sturgis Podmore were examining the microwave and Hestia Jones was laughing at a potato peeler she had come across while rummaging in the drawers .Lupin was sealing a letter addressed to the Dursleys .Excellent said Lupin looking up as Tonks and Harry entered .Weve got about a minute I think .We should probably get out into the garden so were ready .Harry Ive left a letter telling your aunt and uncle not to worry They wont said Harry .That youre safe Thatll just depress them .and youll see them next summer .Do I have to ?Lupin smiled but made no answer .Come here boy said Moody gruffly beckoning Harry toward him with his wand .I need to Disillusion you .You need to what ?said Harry nervously .Disillusionment Charm said Moody raising his wand .Lupin says youve got an Invisibility Cloak but it wont stay on while were flying thisll disguise you better .Here you go He rapped Harry hard on the top of the head and Harry felt a curious sensation as though Moody had just smashed an egg there cold trickles seemed to be running down his body from the point the wand had struck .Nice one MadEye said Tonks appreciatively staring at Harrys midriff .Harry looked down at his body or rather what had been his body for it didnt look anything like his anymore .It was not invisible it had simply taken on the exact color and texture of the kitchen unit behind him .He seemed to have become a human chameleon .Come on said Moody unlocking the back door with his wand .They all stepped outside onto Uncle Vernons beautifully kept lawn .Clear night grunted Moody his magical eye scanning the heavens .Couldve done with a bit more cloud cover .Right you he barked at Harry were going to be flying in close formation .Tonksll be right in front of you keep close on her tail .Lupinll be covering you from below .Im going to be behind you .The restll be circling us .We dont break ranks for anything got me ?If one of us is killed Is that likely ?Harry asked apprehensively but Moody ignored him .the others keep flying dont stop dont break ranks .If they take out all of us and you survive Harry the rear guard are standing by to take over keep flying east and theyll join you .Stop being so cheerful MadEye hell think were not taking this seriously said Tonks as she strapped Harrys trunk and Hedwigs cage into a harness hanging from her broom .Im just telling the boy the plan growled Moody .Our jobs to deliver him safely to headquarters and if we die in the attempt No ones going to die said Kingsley Shacklebolt in his deep calming voice .Mount your brooms thats the first signal !said Lupin sharply pointing into the sky .Far far above them a shower of bright red sparks had flared among the stars .Harry recognized them at once as wand sparks .He swung his right leg over his Firebolt gripped its handle tightly and felt it vibrating very slightly as though it was as keen as he was to be up in the air once more .Second signal lets go !said Lupin loudly as more sparks green this time exploded high above them .Harry kicked off hard from the ground .The cool night air rushed through his hair as the neat square gardens of Privet Drive fell away shrinking rapidly into a patchwork of dark greens and blacks and every thought of the Ministry hearing was swept from his mind as though the rush of air had blown it out of his head .He felt as though his heart was going to explode with pleasure he was flying again flying away from Privet Drive as hed been fantasizing about all summer he was going home .For a few glorious moments all his problems seemed to recede into nothing insignificant in the vast starry sky .Hard left hard left theres a Muggle looking up !shouted Moody from behind him .Tonks swerved and Harry followed her watching his trunk swinging wildly beneath her broom .We need more height .Give it another quarter of a mile !Harrys eyes watered in the chill as they soared upward he could see nothing below now but tiny pinpricks of light that were car headlights and streetlamps .Two of those tiny lights might belong to Uncle Vernons car .The Dursleys would be heading back to their empty house right now full of rage about the nonexistent lawn competition .and Harry laughed aloud at the thought though his voice was drowned by the flapping of the others robes the creaking of the harness holding his trunk and the cage the whoosh of the wind in their ears as they sped through the air .He had not felt this alive in a month or this happy .Bearing south !shouted MadEye .Town ahead !They soared right so that they did not pass directly over the glittering spiderweb of lights below .Bear southeast and keep climbing theres some low cloud ahead we can lose ourselves in !called Moody .Were not going through clouds !shouted Tonks angrily .Well get soaked MadEye !Harry was relieved to hear her say this his hands were growing numb on the Firebolts handle .He wished he had thought to put on a coat he was starting to shiver .They altered their course every now and then according to MadEye s instructions .Harrys eyes were screwed up against the rush of icy wind that was starting to make his ears ache .He could remember being this cold on a broom only once before during the Quidditch match against Hufflepuff in his third year which had taken place in a storm .The guard around him was circling continuously like giant birds of prey .Harry lost track of time .He wondered how long they had been flying it felt like an hour at least .Turning southwest !yelled Moody .We want to avoid the motorway !Harry was now so chilled that he thought longingly for a moment of the snug dry interiors of the cars streaming along below then even more longingly of traveling by Floo powder it might be uncomfortable to spin around in fireplaces but it was at least warm in the flames .Kingsley Shacklebolt swooped around him bald pate and earring gleaming slightly in the moonlight .Now Emmeline Vance was on his right her wand out her head turning left and right .then she too swooped over him to be replaced by Sturgis Podmore .We ought to double back for a bit just to make sure were not being followed !Moody shouted .ARE YOU MAD MADEYE ?Tonks screamed from the front .Were all frozen to our brooms !If we keep going off course were not going to get there until next week !Were nearly there now !Time to start the descent !came Lupins voice .Follow Tonks Harry !Harry followed Tonks into a dive .They were heading for the largest collection of lights he had yet seen a huge sprawling crisscrossing mass glittering in lines and grids interspersed with patches of deepest black .Lower and lower they flew until Harry could see individual headlights and streetlamps chimneys and television aerials .He wanted to reach the ground very much though he felt sure that someone would have to unfreeze him from his broom .Here we go !called Tonks and a few seconds later she had landed .Harry touched down right behind her and dismounted on a patch of unkempt grass in the middle of a small square .Tonks was already unbuckling Harrys trunk .Shivering Harry looked around .The grimy fronts of the surrounding houses were not welcoming some of them had broken windows glimmering dully in the light from the streetlamps paint was peeling from many of the doors and heaps of rubbish lay outside several sets of front steps .Where are we ?Harry asked but Lupin said quietly In a minute .Moody was rummaging in his cloak his gnarled hands clumsy with cold .Got it he muttered raising what looked like a silver cigarette lighter into the air and clicking it .The nearest streetlamp went out with a pop .He clicked the unlighter again the next lamp went out .He kept clicking until every lamp in the square was extinguished and the only light in the square came from curtained windows and the sickle moon overhead .Borrowed it from Dumbledore growled Moody pocketing the PutOuter .Thatll take care of any Muggles looking out of the window see ?Now come on quick .He took Harry by the arm and led him from the patch of grass across the road and onto the pavement .Lupin and Tonks followed carrying Harrys trunk between them the rest of the guard all with their wands out flanking them .The muffled pounding of a stereo was coming from an upper window in the nearest house .A pungent smell of rotting rubbish came from the pile of bulging bin bags just inside the broken gate .Here Moody muttered thrusting a piece of parchment toward Harrys Disillusioned hand and holding his lit wand close to it so as to illuminate the writing .Read quickly and memorize .Harry looked down at the piece of paper .The narrow handwriting was vaguely familiar .It said The headquarters of the Order of the Phoenix may he found at number twelve Grimmauld Place London .NUMBER TWELVE GRIMMAULD PLACE Whats the Order of the ?Harry began .Not here boy !snarled Moody .Wait till were inside !He pulled the piece of parchment out of Harrys hand and set fire to it with his wand tip .As the message curled into flames and floated to the ground Harry looked around at the houses again .They were standing outside number eleven he looked to the left and saw number ten to the right however was number thirteen .But wheres ?Think about what youve just memorized said Lupin quietly .Harry thought and no sooner had he reached the part about number twelve Grimmauld Place than a battered door emerged out of nowhere between numbers eleven and thirteen followed swiftly by dirty walls and grimy windows .It was as though an extra house had inflated pushing those on either side out of its way .Harry gaped at it .The stereo in number eleven thudded on .Apparently the Muggles inside hadnt even felt anything .Come on hurry growled Moody prodding Harry in the back .Harry walked up the worn stone steps staring at the newly materialized door .Its black paint was shabby and scratched .The silver door knocker was in the form of a twisted serpent .There was no keyhole or letterbox .Lupin pulled out his wand and tapped the door once .Harry heard many loud metallic clicks and what sounded like the clatter of a chain .The door creaked open .Get in quick Harry Lupin whispered .But dont go far inside and dont touch anything .Harry stepped over the threshold into the almost total darkness of the hall .He could smell damp dust and a sweetish rotting smell the place had the feeling of a derelict building .He looked over his shoulder and saw the others filing in behind him Lupin and Tonks carrying his trunk and Hedwigs cage .Moody was standing on the top step and releasing the balls of light the PutOuter had stolen from the streetlamps they flew back to their bulbs and the square beyond glowed momentarily with orange light before Moody limped inside and closed the front door so that the darkness in the hall became complete .Here He rapped Harry hard over the head with his wand Harry felt as though something hot was trickling down his back this time and knew that the Disillusionment Charm must have lifted .Now stay still everyone while I give us a bit of light in here Moody whispered .The others hushed voices were giving Harry an odd feeling of foreboding it was as though they had just entered the house of a dying person .He heard a soft hissing noise and then oldfashioned gas lamps sputtered into life all along the walls casting a flickering insubstantial light over the peeling wallpaper and threadbare carpet of a long gloomy hallway where a cobwebby chandelier glimmered overhead and ageblackened portraits hung crooked on the walls .Harry heard something scuttling behind the baseboard .Both the chandelier and the candelabra on a rickety table nearby were shaped like serpents .There were hurried footsteps and Rons mother Mrs Weasley emerged from a door at the far end of the hall .She was beaming in welcome as she hurried toward them though Harry noticed that she was rather thinner and paler than she had been last time he had seen her .Oh Harry its lovely to see you !she whispered pulling him into a ribcracking hug before holding him at arms length and examining him critically .Youre looking peaky you need feeding up but youll have to wait a bit for dinner Im afraid .She turned to the gang of wizards behind him and whispered urgently Hes just arrived the meetings started .The wizards behind Harry all made noises of interest and excitement and began filing past Harry toward the door through which Mrs Weasley had just come Harry made to follow Lupin but Mrs Weasley held him back .No Harry the meetings only for members of the Order .Ron and Hermione are upstairs you can wait with them until the meetings over and then well have dinner .And keep your voice down in the hall she added in an urgent whisper .Why ?I dont want to wake anything up .What dyou ?Ill explain later Ive got to hurry Im supposed to be at the meeting Ill just show you where youre sleeping .Pressing her finger to her lips she led him on tiptoes past a pair of long motheaten curtains behind which Harry supposed there must be another door and after skirting a large umbrella stand that looked as though it had been made from a severed trolls leg they started up the dark staircase passing a row of shrunken heads mounted on plaques on the wall .A closer look showed Harry that the heads belonged to houseelves .All of them had the same rather snoutlike nose .Harrys bewilderment deepened with every step he took .What on earth were they doing in a house that looked as though it belonged to the Darkest of wizards ?Mrs Weasley why ?Ron and Hermione will explain everything dear Ive really got to dash Mrs Weasley whispered distractedly .There they had reached the second landing youre the door on the right .Ill call you when its over .And she hurried off downstairs again .Harry crossed the dingy landing turned the bedroom doorknob which was shaped like a serpents head and opened the door .He caught a brief glimpse of a gloomy highceilinged twinbedded room then there was a loud twittering noise followed by an even louder shriek and his vision was completely obscured by a large quantity of very bushy hair Hermione had thrown herself onto him in a hug that nearly knocked him flat while Rons tiny owl Pigwidgeon zoomed excitedly round and round their heads .HARRY !Ron hes here Harrys here !We didnt hear you arrive !Oh how are you ?Are you all right ?Have you been furious with us ?I bet you have I know our letters were useless but we couldnt tell you anything Dumbledore made us swear we wouldnt oh weve got so much to tell you and youve got to tell us the dementors !When we heard and that Ministry hearing its just outrageous Ive looked it all up they cant expel you they just cant theres provision in the Decree for the Restriction of Underage Sorcery for the use of magic in life threatening situations Let him breathe Hermione said Ron grinning closing the door behind Harry .He seemed to have grown several more inches during their month apart making him taller and more gangly looking than ever though the long nose bright red hair and freckles were the same .Hermione still beaming let go of Harry but before she could say another word there was a soft whooshing sound and something white soared from the top of a dark wardrobe and landed gently on Harrys shoulder .Hedwig !The snowy owl clicked her beak and nibbled his ear affectionately as Harry stroked her feathers .Shes been in a right state said Ron .Pecked us half to death when she brought your last letters look at this He showed Harry the index finger of his right hand which sported a halfhealed but clearly deep cut .Oh yeah Harry said .Sorry about that but I wanted answers you know .We wanted to give them to you mate said Ron .Hermione was going spare she kept saying youd do something stupid if you were stuck all on your own without news but Dumbledore made us swear not to tell me said Harry .Yeah Hermiones already said .The warm glow that had flared inside him at the sight of his two best friends was extinguished as something icy flooded the pit of his stomach .All of a sudden after yearning to see them for a solid month he felt he would rather Ron and Hermione left him alone .There was a strained silence in which Harry stroked Hedwig automatically not looking at either of the others .He seemed to think it was best said Hermione rather breathlessly .Dumbledore I mean .Right said Harry .He noticed that her hands too bore the marks of Hedwigs beak and found that he was not at all sorry .I think he thought you were safest with the Muggles Ron began .Yeah ?said Harry raising his eyebrows .Have either of you been attacked by dementors this summer ?Well no but thats why hes had people from the Order of the Phoenix tailing you all the time Harry felt a great jolt in his guts as though he had just missed a step going downstairs .So everyone had known he was being followed except him .Didnt work that well though did it ?said Harry doing his utmost to keep his voice even .Had to look after myself after all didnt I ?He was so angry said Hermione in an almost awestruck voice .Dumbledore .We saw him .When he found out Mundungus had left before his shift had ended .He was scary .Well Im glad he left Harry said coldly .If he hadnt I wouldnt have done magic and Dumbledore would probably have left me at Privet Drive all summer .Arent you .arent you worried about the Ministry of Magic hearing ?said Hermione quietly .No Harry lied defiantly .He walked away from them looking around with Hedwig nestled contentedly on his shoulder but this room was not likely to raise his spirits .It was dank and dark .A blank stretch of canvas in an ornate picture frame was all that relieved the bareness of the peeling walls and as Harry passed it he thought he heard someone lurking out of sight snigger .So whys Dumbledore been so keen to keep me in the dark ?Harry asked still trying hard to keep his voice casual .Did you er bother to ask him at all ?He glanced up just in time to see them exchanging a look that told him he was behaving just as they had feared he would .It did nothing to improve his temper .We told Dumbledore we wanted to tell you what was going on said Ron .We did mate .But hes really busy now weve only seen him twice since we came here and he didnt have much time he just made us swear not to tell you important stuff when we wrote he said the owls might be intercepted He could stillve kept me informed if hed wanted to Harry said shortly .Youre not telling me he doesnt know ways to send messages without owls .Hermione glanced at Ron and then said I thought that too .But he didnt want you to know anything .Maybe he thinks I cant be trusted said Harry watching their expressions .Dont be thick said Ron looking highly disconcerted .Or that I cant take care of myself Of course he doesnt think that !said Hermione anxiously .So how come I have to stay at the Dursleys while you two get to join in everything thats going on here ?said Harry the words tumbling over one another in a rush his voice growing louder with every word .How come you two are allowed to know everything thats going on ?Were not !Ron interrupted .Mum wont let us near the meetings she says were too young But before he knew it Harry was shouting .SO YOU HAVENT BEEN IN THE MEETINGS BIG DEAL !YOUVE STILL BEEN HERE HAVEN T YOU ?YOUVE STILL BEEN TOGETHER !ME IVE BEEN STUCK AT THE DURSLEYS FOR A MONTH !AND IVE HANDLED MORE THAN YOU TWOVE EVER MANAGED AND DUMBLEDORE KNOWS IT WHO SAVED THE SORCERERS STONE ?WHO GOT RID OF RIDDLE ?WHO SAVED BOTH YOUR SKINS FROM THE DEMENTORS ?Every bitter and resentful thought that Harry had had in the past month was pouring out of him his frustration at the lack of news the hurt that they had all been together without him his fury at being followed and not told about it All the feelings he was halfashamed of finally burst their boundaries .Hedwig took fright at the noise and soared off on top of the wardrobe again Pigwidgeon twittered in alarm and zoomed even faster around their heads .WHO HAD TO GET PAST DRAGONS AND SPHINXES AND EVERY OTHER FOUL THING LAST YEAR ?WHO SAW HIM COME BACK ?WHO HAD TO ESCAPE FROM HIM ?ME !Ron was standing there with his mouth halfopen clearly stunned and at a loss for anything to say while Hermione looked on the verge of tears .BUT WHY SHOULD I KNOW WHATS GOING ON ?WHY SHOULD ANYONE BOTHER TO TELL ME WHATS BEEN HAPPENING ?Harry we wanted to tell you we really did Hermione began .CANTVE WANTED TO THAT MUCH CAN YOU OR YOUD HAVE SENT ME AN OWL BUT DUMBLEDORE MADE YOU SWEAR Well he did FOUR WEEKS IVE BEEN STUCK IN PRIVET DRIVE NICKING PAPERS OUT OF BINS TO TRY AND FIND OUT WHATS BEEN GOING ON We wanted to I SUPPOSE YOUVE BEEN HAVING A REAL LAUGH HAVENT YOU ALL HOLED UP HERE TOGETHER No honest Harry were really sorry !said Hermione desperately her eyes now sparkling with tears .Youre absolutely right Harry Id be furious if it was me !Harry glared at her still breathing deeply then turned away from them again pacing up and down .Hedwig hooted glumly from the top of the wardrobe .There was a long pause broken only by the mournful creak of the floorboards below Harrys feet .What is this place anyway ?he shot at Ron and Hermione .Headquarters of the Order of the Phoenix said Ron at once .Is anyone going to bother telling me what the Order of the Phoenix ?Its a secret society said Hermione quickly .Dumbledores in charge he founded it .Its the people who fought against YouKnowWho last time .Whos in it ?said Harry coming to a halt with his hands in his pockets .Quite a few people weve met about twenty of them said Ron but we think there are more .Harry glared at them .Well ?he demanded looking from one to the other .Er said Ron .Well what ?Voldemorti said Harry furiously and both Ron and Hermione winced .Whats happening ?Whats he up to ?Where is he ?What are we doing to stop him ?Weve told you the Order dont let us in on their meetings said Hermione nervously .So we dont know the details but weve got a general idea she added hastily seeing the look on Harrys face .Fred and George have invented Extendable Ears see said Ron .Theyre really useful .Extendable ?Ears yeah .Only weve had to stop using them lately because Mum found out and went berserk .Fred and George had to hide them all to stop Mum binning them .But we got a good bit of use out of them before Mum realized what was going on .We know some of the Order are following known Death Eaters keeping tabs on them you know some of them are working on recruiting more people to the Order said Hermione .and some of them are standing guard over something said Ron .Theyre always talking about guard duty .Couldnt have been me could it ?said Harry sarcastically .Oh yeah said Ron with a look of dawning comprehension .Harry snorted .He walked around the room again looking anywhere but at Ron and Hermione .So what have you two been doing if youre not allowed in meetings ?he demanded .You said youd been busy .We have said Hermione quickly .Weve been decontaminating this house its been empty for ages and stuffs been breeding in here .Weve managed to clean out the kitchen most of the bedrooms and I think were doing the drawing room tomo AARGH !With two loud cracks Fred and George Rons elder twin brothers had materialized out of thin air in the middle of the room .Pigwidgeon twittered more wildly than ever and zoomed off to join Hedwig on top of the wardrobe .Stop doing that !Hermione said weakly to the twins who were as vividly redhaired as Ron though stockier and slightly shorter .Hello Harry said George beaming at him .We thought we heard your dulcet tones .You dont want to bottle up your anger like that Harry let it all out said Fred also beaming .There might be a couple of people fifty miles away who didnt hear you .You two passed your Apparation tests then ?asked Harry grumpily .With distinction said Fred who was holding what looked like a piece of very long fleshcolored string .It would have taken you about thirty seconds longer to walk down the stairs said Ron .Time is Galleons little brother said Fred .Anyway Harry youre interfering with reception .Extendable Ears he added in response to Harrys raised eyebrows holding up the string which Harry now saw was trailing out onto the landing .Were trying to hear whats going on downstairs .You want to be careful said Ron staring at the ear .If Mum sees one of them again .Its worth the risk thats a major meeting theyre having said Fred .The door opened and a long mane of red hair appeared .Oh hello Harry !said Rons younger sister Ginny brightly .I thought I heard your voice .Turning to Fred and George she said Its no go with the Extendable Ears shes gone and put an Imperturbable Charm on the kitchen door .How dyou know ?said George looking crestfallen .Tonks told me how to find out said Ginny .You just chuck stuff at the door and if it cant make contact the doors been Imperturbed .Ive been flicking Dungbombs at it from the top of the stairs and they just soar away from it so theres no way the Extendable Ears will be able to get under the gap .Fred heaved a deep sigh .Shame .I really fancied finding out what old Snapes been up to .Snape ?said Harry quickly .Is he here ?Yeah said George carefully closing the door and sitting down on one of the beds Fred and Ginny followed .Giving a report .Top secret .Git said Fred idly .Hes on our side now said Hermione reprovingly .Ron snorted .Doesnt stop him being a git .The way he looks at us when he sees us .Bill doesnt like him either said Ginny as though that settled the matter .Harry was not sure his anger had abated yet but his thirst for information was now overcoming his urge to keep shouting .He sank onto the bed opposite the others .Is Bill here ?he asked .I thought he was working in Egypt .He applied for a desk job so he could come home and work for the Order said Fred .He says he misses the tombs but he smirked there are compensations .What dyou mean ?Remember old Fleur Delacour ?said George .Shes got a job at Gringotts to eemprove er Eeenglish and Bills been giving her a lot of private lessons sniggered Fred .Charlies in the Order too said George but hes still in Romania Dumbledore wants as many foreign wizards brought in as possible so Charlies trying to make contacts on his days off .Couldnt Percy do that ?Harry asked .The last he had heard the third Weasley brother was working in the Department of International Magical Cooperation at the Ministry of Magic .At these words all the Weasleys and Hermione exchanged darkly significant looks .Whatever you do dont mention Percy in front of Mum and Dad Ron told Harry in a tense voice .Why not ?Because every time Percys names mentioned Dad breaks whatever hes holding and Mum starts crying Fred said .Its been awful said Ginny sadly .I think were well shut of him said George with an uncharacteristically ugly look on his face .Whats happened ?Harry said .Percy and Dad had a row said Fred .Ive never seen Dad row with anyone like that .Its normally Mum who shouts .It was the first week back after term ended said Ron .We were about to come and join the Order .Percy came home and told us hed been promoted .Youre kidding ?said Harry .Though he knew perfectly well that Percy was highly ambitious Harrys impression was that Percy had not made a great success of his first job at the Ministry of Magic .Percy had committed the fairly large oversight of failing to notice that his boss was being controlled by Lord Voldemort not that the Ministry had believed that they all thought that Mr Crouch had gone mad .Yeah we were all surprised said George because Percy got into a load of trouble about Crouch there was an inquiry and everything .They said Percy ought to have realized Crouch was off his rocker and informed a superior .But you know Percy Crouch left him in charge he wasnt going to complain .So how come they promoted him ?Thats exactly what we wondered said Ron who seemed very keen to keep normal conversation going now that Harry had stopped yelling .He came home really pleased with himself even more pleased than usual if you can imagine that and told Dad hed been offered a position in Fudges own office .A really good one for someone only a year out of Hogwarts Junior Assistant to the Minister .He expected Dad to be all impressed I think .Only Dad wasnt said Fred grimly .Why not ?said Harry .Well apparently Fudge has been storming round the Ministry checking that nobodys having any contact with Dumbledore said George .Dumbledores names mud with the Ministry these days see said Fred .They all think hes just making trouble saying YouKnow Whos back .Dad says Fudge has made it clear that anyone whos in league with Dumbledore can clear out their desks said George .Trouble is Fudge suspects Dad he knows hes friendly with Dumbledore and hes always thought Dads a bit of a weirdo because of his Muggle obsession But whats this got to do with Percy ?asked Harry confused .Im coming to that .Dad reckons Fudge only wants Percy in his office because he wants to use him to spy on the family and Dumbledore .Harry let out a low whistle .Bet Percy loved that .Ron laughed in a hollow sort of way .He went completely berserk .He said well he said loads of terrible stuff .He said hes been having to struggle against Dads lousy reputation ever since he joined the Ministry and that Dads got no ambition and thats why weve always been you know not had a lot of money I mean What ?said Harry in disbelief as Ginny made a noise like an angry cat .I know said Ron in a low voice .And it got worse .He said Dad was an idiot to run around with Dumbledore that Dumbledore was heading for big trouble and Dad was going to go down with him and that he Percy knew where his loyalty lay and it was with the Ministry .And if Mum and Dad were going to become traitors to the Ministry he was going to make sure everyone knew he didnt belong to our family anymore .And he packed his bags the same night and left .Hes living here in London now .Harry swore under his breath .He had always liked Percy least of Rons brothers but he had never imagined he would say such things to Mr Weasley .Mums been in a right state said Ron .You know crying and stuff .She came up to London to try and talk to Percy but he slammed the door in her face .I dunno what he does if he meets Dad at work ignores him I spose .But Percy must know Voldemorts back said Harry slowly .Hes not stupid he must know your mum and dad wouldnt risk everything without proof Yeah well your name got dragged into the row said Ron shooting Harry a furtive look .Percy said the only evidence was your word and .I dunno .he didnt think it was good enough .Percy takes the Daily Prophet seriously said Hermione tartly and the others all nodded .What are you talking about ?Harry asked looking around at them all .They were all regarding him warily .Havent havent you been getting the Daily Prophet ?Hermione asked nervously .Yeah I have !said Harry .Have you er been reading it thoroughly ?Hermione asked still more anxiously .Not cover to cover said Harry defensively .If they were going to report anything about Voldemort it would be headline news wouldnt it !The others flinched at the sound of the name .Hermione hurried on Well youd need to read it cover to cover to pick it up but they um they mention you a couple of times a week .But Id have seen Not if youve only been reading the front page you wouldnt said Hermione shaking her head .Im not talking about big articles .They just slip you in like youre a standing joke .What dyou ?Its quite nasty actually said Hermione in a voice of forced calm .Theyre just building on Ritas stuff .But shes not writing for them anymore is she ?Oh no shes kept her promise not that shes got any choice Hermione added with satisfaction .But she laid the foundation for what theyre trying to do now .Which is what ?said Harry impatiently .Okay you know she wrote that you were collapsing all over the place and saying your scar was hurting and all that ?Yeah said Harry who was not likely to forget Rita Skeeters stories about him in a hurry .Well theyre writing about you as though youre this deluded attentionseeking person who thinks hes a great tragic hero or something said Hermione very fast as though it would be less unpleasant for Harry to hear these facts quickly .They keep slipping in snide comments about you .If some farfetched story appears they say something like ‘a tale worthy of Harry Potter and if anyone has a funny accident or anything its lets hope he hasnt got a scar on his forehead or well be asked to worship him next I dont want anyone to worship Harry began hotly .I know you dont said Hermione quickly looking frightened .I know Harry .But you see what theyre doing ?They want to turn you into someone nobody will believe .Fudge is behind it Ill bet anything .They want wizards on the street to think youre just some stupid boy whos a bit of a joke who tells ridiculous tall stories because he loves being famous and wants to keep it going .I didnt ask I didnt want Voldemort killed my parentsV Harry spluttered .I got famous because he murdered my family but couldnt kill me !Who wants to be famous for that ?Dont they think Id rather itd never We know Harry said Ginny earnestly .And of course they didnt report a word about the dementors attacking you said Hermione .Someones told them to keep that quiet .That shouldve been a really big story outofcontrol dementors .They havent even reported that you broke the International Statute of Secrecy we thought they would it would tie in so well with this image of you as some stupid showoff we think theyre biding their time until youre expelled then theyre really going to go to town I mean if youre expelled obviously she went on hastily you really shouldnt be not if they abide by their own laws theres no case against you .They were back on the hearing and Harry did not want to think about it .He cast around for another change of subject but was saved the necessity of finding one by the sound of footsteps coming up the stairs .Uhoh .Fred gave the Extendable Ear a hearty tug there was another loud crack and he and George vanished .Seconds later Mrs Weasley appeared in the bedroom doorway .The meetings over you can come down and have dinner now everyones dying to see you Harry .And whos left all those Dungbombs outside the kitchen door ?Crookshanks said Ginny unblushingly .He loves playing with them .Oh said Mrs Weasley I thought it might have been Kreacher he keeps doing odd things like that .Now dont forget to keep your voices down in the hall .Ginny your hands are filthy what have you been doing ?Go and wash them before dinner please .Ginny grimaced at the others and followed her mother out of the room leaving Harry alone with Ron and Hermione again .Both of them were watching him apprehensively as though they feared that he would start shouting again now that everyone else had gone .The sight of them looking so nervous made him feel slightly ashamed .Look .he muttered but Ron shook his head and Hermione said quietly We knew youd be angry Harry we really dont blame you but youve got to understand we did try and persuade Dumbledore Yeah I know said Harry grudgingly .He cast around for a topic to change the subject from Dumbledore the very thought of him made Harrys insides burn with anger again .Whos Kreacher ?he asked .The houseelf who lives here said Ron .Nutter .Never met one like him .Hermione frowned at Ron .Hes not a nutter Ron His lifes ambition is to have his head cut off and stuck up on a plaque just like his mother said Ron irritably .Is that normal Hermione ?Well well if he is a bit strange its not his fault Ron rolled his eyes at Harry .Hermione still hasnt given up on spew Its not ‘spew !said Hermione heatedly .Its the Society for the Promotion of Elfish Welfare and its not just me Dumbledore says we should be kind to Kreacher too Yeah yeah said Ron .Cmon Im starving .He led the way out of the door and onto the landing but before they could descend the stairs Hold it !Ron breathed flinging out an arm to stop Harry and Hermione walking any farther .Theyre still in the hall we might be able to hear something The three of them looked cautiously over the banisters .The gloomy hallway below was packed with witches and wizards including all of Harrys guard .They were whispering excitedly together .In the very center of the group Harry saw the dark greasyhaired head and prominent nose of his least favorite teacher at Hogwarts Professor Snape .Harry leaned farther over the banisters .He was very interested in what Snape was doing for the Order of the Phoenix .A thin piece of fleshcolored string descended in front of Harrys eyes .Looking up he saw Fred and George on the landing above cautiously lowering the Extendable Ear toward the dark knot of people below .A moment later however they began to move toward the front door and out of sight .Dammit Harry heard Fred whisper as he hoisted the Extendable Ear back up again .They heard the front door open and then close .Snape never eats here Ron told Harry quietly .Thank God .Cmon .And dont forget to keep your voice down in the hall Harry Hermione whispered .As they passed the row of houseelf heads on the wall they saw Lupin Mrs Weasley and Tonks at the front door magically sealing its many locks and bolts behind those who had just left .Were eating down in the kitchen Mrs Weasley whispered meeting them at the bottom of the stairs .Harry dear if youll just tiptoe across the hall its through this door here CRASH .Tonksl cried Mrs Weasley exasperatedly turning to look behind her .Im sorry !wailed Tonks who was lying flat on the floor .Its that stupid umbrella stand thats the second time Ive tripped over But the rest of her words were drowned by a horrible earsplitting bloodcurdling screech .The motheaten velvet curtains Harry had passed earlier had flown apart but there was no door behind them .For a split second Harry thought he was looking through a window a window behind which an old woman in a black cap was screaming and screaming as though she was being tortured then Page lOOHarry Potter and the Order of the Phoenix J .K .he realized it was simply a lifesize portrait but the most realistic and the most unpleasant he had ever seen in his life .The old woman was drooling her eyes were rolling the yellowing skin of her face stretched taut as she screamed and all along the hall behind them the other portraits awoke and began to yell too so that Harry actually screwed up his eyes at the noise and clapped his hands over his ears .Lupin and Mrs Weasley darted forward and tried to tug the curtains shut over the old woman but they would not close and she screeched louder than ever brandishing clawed hands as though trying to tear at their faces .Filth !Scum !Byproducts of dirt and vileness !Half breeds mutants freaks begone from this place !How dare you befoul the house of my fathers Tonks apologized over and over again at the same time dragging the huge heavy trolls leg back off the floor .Mrs Weasley abandoned the attempt to close the curtains and hurried up and down the hall Stunning all the other portraits with her wand .Then a man with long black hair came charging out of a door facing Harry .Shut up you horrible old hag shut UP !he roared seizing the curtain Mrs Weasley had abandoned .The old womans face blanched .Yooooul she howled her eyes popping at the sight of the man .Blood traitor abomination shame of my fleshl Page lOlHarry Potter and the Order of the Phoenix J .K .I said shut UP !roared the man and with a stupendous effort he and Lupin managed to force the curtains closed again .The old womans screeches died and an echoing silence fell .Panting slightly and sweeping his long dark hair out of his eyes Harrys godfather Sirius turned to face him .Hello Harry he said grimly I see youve met my mother .5 THE ORDER OF THE PHOENIX Your ?My dear old mum yeah said Sirius .Weve been trying to get her down for a month but we think she put a Permanent Sticking Charm on the back of the canvas .Lets get downstairs quick before they all wake up again .But whats a portrait of your mother doing here ?Harry asked bewildered as they went through the door from the hall and led the way down a flight of narrow stone steps the others just behind them .Hasnt anyone told you ?This was my parents house said Sirius .But Im the last Black left so its mine now .I offered it to Dumbledore for headquarters about the only useful thing Ive been able to do .Harry who had expected a better welcome noted how hard and bitter Siriuss voice sounded .He followed his godfather to the bottom of the stairs and through a door leading into the basement kitchen .It was scarcely less gloomy than the hall above a cavernous room with rough stone walls .Most of the light was coming from a large fire at the far end of the room .A haze of pipe smoke hung in the air like battle fumes through which loomed the menacing shapes of heavy iron pots and pans hanging from the dark ceiling .Many chairs had been crammed into the room for the meeting and a long wooden table stood in the middle of the room littered with rolls of parchment goblets empty wine bottles and a heap of what appeared to be rags .Mr Weasley and his eldest son Bill were talking quietly with their heads together at the end of the table .Mrs Weasley cleared her throat .Her husband a thin balding redhaired man who wore hornrimmed glasses looked around and jumped to his feet .Harry !Mr Weasley said hurrying forward to greet him and shaking his hand vigorously .Good to see you !Over his shoulder Harry saw Bill who still wore his long hair in a ponytail hastily rolling up the lengths of parchment left on the table .Journey all right Harry ?Bill called trying to gather up twelve scrolls at once .MadEye didnt make you come via Greenland then ?He tried said Tonks striding over to help Bill and immediately sending a candle toppling onto the last piece of parchment .Oh no sorry Here dear said Mrs Weasley sounding exasperated and she repaired the parchment with a wave of her wand In the flash of light caused by Mrs Weasleys charm Harry caught a glimpse of what looked like the plan of a building .Mrs Weasley had seen him looking .She snatched the plan off the table and stuffed it into Bills heavily laden arms .This sort of thing ought to be cleared away promptly at the end of meetings she snapped before sweeping off toward an ancient dresser from which she started unloading dinner plates .Bill took out his wand muttered Evanescol and the scrolls vanished .Sit down Harry said Sirius .Youve met Mundungus havent you ?The thing Harry had taken to be a pile of rags gave a prolonged grunting snore and then jerked awake .Somen say m name ?Mundungus mumbled sleepily .I gree with Sirius .He raised a very grubby hand in the air as though voting his droopy bloodshot eyes unfocused .Ginny giggled .The meetings over Dung said Sirius as they all sat down around him at the table .Harrys arrived .Eh ?said Mundungus peering balefully at Harry through his matted ginger hair .Blimey so e as .Yeah .you all right arry ?Yeah said Harry .Mundungus fumbled nervously in his pockets still staring at Harry and pulled out a grimy black pipe .He stuck it in his mouth ignited the end of it with his wand and took a deep pull on it .Great billowing clouds of greenish smoke obscured him in seconds .Owe you a pology grunted a voice from the middle of the smelly cloud .For the last time Mundungus called Mrs Weasley will you please not smoke that thing in the kitchen especially not when were about to eat !Ah said Mundungus .Right .Sorry Molly .The cloud of smoke vanished as Mundungus stowed his pipe back in his pocket but an acrid smell of burning socks lingered .And if you want dinner before midnight Ill need a hand Mrs Weasley said to the room at large .No you can stay where you are Harry dear youve had a long journey What can I do Molly ?said Tonks enthusiastically bounding forward .Mrs Weasley hesitated looking apprehensive .Er no its all right Tonks you have a rest too youve done enough today No no I want to help !said Tonks brightly knocking over a chair as she hurried toward the dresser from which Ginny was collecting cutlery .Soon a series of heavy knives were chopping meat and vegetables of their own accord supervised by Mr Weasley while Mrs Weasley stirred a cauldron dangling over the fire and the others took out plates more goblets and food from the pantry .Harry was left at the table with Sirius and Mundungus who was still blinking mournfully at him .Seen old Figgy since ?he asked .No said Harry I havent seen anyone .See I wouldnt ave left said Mundungus leaning forward a pleading note in his voice but I ad a business opportunity Harry felt something brush against his knees and started but it was only Crookshanks Hermiones bandylegged ginger cat who wound himself once around Harrys legs purring then jumped onto Siriuss lap and curled up .Sirius scratched him absentmindedly behind the ears as he turned still grimfaced to Harry .Had a good summer so far ?No its been lousy said Harry .For the first time something like a grin flitted across Siriuss face .Dont know what youre complaining about myself .What ?said Harry incredulously .Personally Id have welcomed a dementor attack .A deadly struggle for my soul would have broken the monotony nicely .You think youve had it bad at least youve been able to get out and about stretch your legs get into a few fights .Ive been stuck inside for a month .How come ?asked Harry frowning .Because the Ministry of Magics still after me and Voldemort will know all about me being an Animagus by now Wormtail will have told him so my big disguise is useless .Theres not much I can do for the Order of the Phoenix .or so Dumbledore feels .There was something about the slightly flattened tone of voice in which Sirius uttered Dumbledores name that told Harry that Sirius was not very happy with the headmaster either .Harry felt a sudden upsurge of affection for his godfather .At least youve known whats been going on he said bracingly .Oh yeah said Sirius sarcastically .Listening to Snapes reports having to take all his snide hints that hes out there risking his life while Im sat on my backside here having a nice comfortable time .asking me how the cleanings going What cleaning ?asked Harry .Trying to make this place fit for human habitation said Sirius waving a hand around the dismal kitchen .No ones lived here for ten years not since my dear mother died unless you count her old houseelf and hes gone round the twist hasnt cleaned anything in ages Sirius ?said Mundungus who did not appear to have paid any attention to this conversation but had been minutely examining an empty goblet .This solid silver mate ?Yes said Sirius surveying it with distaste .Finest fifteenthcentury goblinwrought silver embossed with the Black family crest .Thatd come off though muttered Mundungus polishing it with his cuff .Fred George NO JUST CARRY THEM !Mrs Weasley shrieked .Harry Sirius and Mundungus looked around and a split second later dived away from the table .Fred and George had bewitched a large cauldron of stew an iron flagon of butterbeer and a heavy wooden breadboard complete with knife to hurtle through the air toward them .The stew skidded the length of the table and came to a halt just before the end leaving a long black burn on the wooden surface the flagon of butterbeer fell with a crash spilling its contents everywhere and the bread knife slipped off the board and landed point down and quivering ominously exactly where Siriuss right hand had been seconds before .FOR HEAVENS SAKE !screamed Mrs Weasley .THERE WAS NO NEED IVE HAD ENOUGH OF THIS JUST BECAUSE YOURE ALLOWED TO USE MAGIC NOW YOU DONT HAVE TO WHIP YOUR WANDS OUT FOR EVERY TINY LITTLE THING !We were just trying to save a bit of time !said Fred hurrying forward and wrenching the bread knife out of the table .Sorry Sirius mate didnt mean to Harry and Sirius were both laughing .Mundungus who had toppled backward off his chair was swearing as he got to his feet .Crookshanks had given an angry hiss and shot off under the dresser from whence his large yellow eyes glowed in the darkness .Boys Mr Weasley said lifting the stew back into the middle of the table your mothers right youre supposed to show a sense of responsibility now youve come of age none of your brothers caused this sort of trouble !Mrs Weasley raged at the twins slamming a fresh flagon of butterbeer onto the table and spilling almost as much again .Bill didnt feel the need to Apparate every few feet !Charlie didnt Charm everything he met !Percy She stopped dead catching her breath with a frightened look at her husband whose expression was suddenly wooden .Lets eat said Bill quickly .It looks wonderful Molly said Lupin ladling stew onto a plate for her and handing it across the table .For a few minutes there was silence but for the chink of plates and cutlery and the scraping of chairs as everyone settled down to their food .Then Mrs Weasley turned to Sirius and said Ive been meaning to tell you theres something trapped in that writing desk in the drawing room it keeps rattling and shaking .Of course it could just be a boggart but I thought we ought to ask Alastor to have a look at it before we let it out .Whatever you like said Sirius indifferently .The curtains in there are full of doxies too Mrs Weasley went on .I thought we might try and tackle them tomorrow .I look forward to it said Sirius .Harry heard the sarcasm in his voice but he was not sure that anyone else did .Opposite Harry Tonks was entertaining Hermione and Ginny by transforming her nose between mouthfuls .Screwing up her eyes each time with the same pained expression she had worn back in Harrys bedroom her nose swelled to a beaklike protuberance like Snapes shrank to something resembling a button mushroom and then sprouted a great deal of Page llOHarry Potter and the Order of the Phoenix J .K .hair from each nostril .Apparently this was a regular mealtime entertainment because after a while Hermione and Ginny started requesting their favorite noses .Do that one like a pig snout Tonks .Tonks obliged and Harry looking up had the fleeting impression that a female Dudley was grinning at him from across the table .Mr Weasley Bill and Lupin were having an intense discussion about goblins .Theyre not giving anything away yet said Bill .I still cant work out whether they believe hes back or not .Course they might prefer not to take sides at all .Keep out of it .Im sure theyd never go over to YouKnowWho said Mr Weasley shaking his head .Theyve suffered losses too .Remember that goblin family he murdered last time somewhere near Nottingham ?I think it depends what theyre offered said Lupin .And Im not talking about gold if theyre offered freedoms weve been denying them for centuries theyre going to be tempted .Have you still not had any luck with Ragnok Bill ?Hes feeling pretty antiwizard at the moment said Bill .He hasnt stopped raging about the Bagman business he reckons the Ministry did a coverup those goblins never got their gold from him you know A gale of laughter from the middle of the table drowned the rest of Bills words .Fred George Ron and Mundungus were rolling around in their seats .Page lllHarry Potter and the Order of the Phoenix J .K ..and then choked Mundungus tears running down his face and then if youll believe it e says to me e says ‘ere Dung where didja get all them toads from ?Cos some son of a Bludgers gone and nicked all mine !And I says ‘Nicked all your toads Will what next ?So youll be wanting some more then ?And if youll believe me lads the gormless gargoyle buys all is own toads back orf me for twice what e paid in the first place ■ I dont think we need to hear any more of your business dealings thank you very much Mundungus said Mrs Weasley sharply as Ron slumped forward onto the table howling with laughter .Beg pardon Molly said Mundungus at once wiping his eyes and winking at Harry .But you know Will nicked em orf Warty Harris in the first place so I wasnt really doing nothing wrong I dont know where you learned about right and wrong Mundungus but you seem to have missed a few crucial lessons said Mrs Weasley coldly .Fred and George buried their faces in their goblets of butterbeer George was hiccuping .For some reason Mrs Weasley threw a very nasty look at Sirius before getting to her feet and going to fetch a large rhubarb crumble for pudding .Harry looked round at his godfather .Molly doesnt approve of Mundungus said Sirius in an undertone .How come hes in the Order ?Harry said very quietly .Hes useful Sirius muttered .Knows all the crooks well he would seeing as hes one himself .But hes also very loyal to Dumbledore who helped him out of a tight spot once .It pays to have someone like Dung around he hears things we dont .But Molly thinks inviting him to stay for dinner is going too far .She hasnt forgiven him for slipping off duty when he was supposed to be tailing you .Three helpings of rhubarb crumble and custard later and the waistband on Harrys jeans was feeling uncomfortably tight which was saying something as the jeans had once been Dudleys .He lay down his spoon in a lull in the general conversation .Mr Weasley was leaning back in his chair looking replete and relaxed Tonks was yawning widely her nose now back to normal and Ginny who had lured Crookshanks out from under the dresser was sitting crosslegged on the floor rolling butterbeer corks for him to chase .Nearly time for bed I think said Mrs Weasley on a yawn .Not just yet Molly said Sirius pushing away his empty plate and turning to look at Harry .You know Im surprised at you .I thought the first thing youd do when you got here would be to start asking questions about Voldemort .The atmosphere in the room changed with the rapidity Harry associated with the arrival of dementors .Where seconds before it had been sleepily relaxed it was now alert even tense .A frisson had gone around the table at the mention of Voldemorts name .Lupin who had been about to take a sip of wine lowered his goblet slowly looking wary .I did !said Harry indignantly .I asked Ron and Hermione but they said were not allowed in the Order so And theyre quite right said Mrs Weasley .Youre too young .She was sitting bolt upright in her chair her fists clenched upon its arms every trace of drowsiness gone .Since when did someone have to be in the Order of the Phoenix to ask questions ?asked Sirius .Harrys been trapped in that Muggle house for a month .Hes got the right to know whats been happen Hang on !interrupted George loudly .How come Harry gets his questions answered ?said Fred angrily .Weve been trying to get stuff out of you for a month and you havent told us a single stinking thing !said George . ‘Youre too young youre not in the Order said Fred in a highpitched voice that sounded uncannily like his mothers .Harrys not even of age !Its not my fault you havent been told what the Orders doing said Sirius calmly .Thats your parents decision .Harry on the other hand Its not down to you to decide whats good for Harry !said Mrs Weasley sharply .Her normally kindly face looked dangerous .You havent forgotten what Dumbledore said I suppose ?Which bit ?Sirius asked politely but with an air as though readying himself for a fight .The bit about not telling Harry more than he needs to know said Mrs Weasley placing a heavy emphasis on the last three words .Ron Hermione Fred and Georges heads turned from Sirius to Mrs Weasley as though following a tennis rally .Ginny was kneeling amid a pile of abandoned butterbeer corks watching the conversation with her mouth slightly open .Lupins eyes were fixed on Sirius .I dont intend to tell him more than he needs to know Molly said Sirius .But as he was the one who saw Voldemort come back again there was a collective shudder around the table at the name he has more right than most to Hes not a member of the Order of the Phoenix !said Mrs Weasley .Hes only fifteen and and hes dealt with as much as most in the Order said Sirius and more than some No ones denying what hes done !said Mrs Weasley her voice rising her fists trembling on the arms of her chair .But hes still Hes not a child !said Sirius impatiently .Hes not an adult either !said Mrs Weasley the color rising in her cheeks .Hes not James Sirius !Im perfectly clear who he is thanks Molly said Sirius coldly .‘Tm not sure you are !said Mrs Weasley .Sometimes the way you talk about him its as though you think youve got your best friend back !Whats wrong with that ?said Harry .Whats wrong Harry is that you are not your father however much you might look like him !said Mrs Weasley her eyes still boring into Sirius .You are still at school and adults responsible for you should not forget it !Meaning Im an irresponsible godfather ?demanded Sirius his voice rising .Meaning youve been known to act rashly Sirius which is why Dumbledore keeps reminding you to stay at home and Well leave my instructions from Dumbledore out of this if you please !said Sirius loudly .Arthur !said Mrs Weasley rounding on her husband .Arthur back me up !Mr Weasley did not speak at once .He took off his glasses and cleaned them slowly on his robes not looking at his wife .Only when he had replaced them carefully on his nose did he say Dumbledore knows the position has changed Molly .He accepts that Harry will have to be filled in to a certain extent now that he is staying at headquarters Yes but theres a difference between that and inviting him to ask whatever he likes !Personally said Lupin quietly looking away from Sirius at last as Mrs Weasley turned quickly to him hopeful that finally she was about to get an ally I think it better that Harry gets the facts not all the facts Molly but the general picture from us rather than a garbled version from .others .His expression was mild but Harry felt sure that Lupin at least knew that some Extendable Ears had survived Mrs Weasleys purge .Well said Mrs Weasley breathing deeply and looking around the table for support that did not come well .I can see Im going to be overruled .Ill just say this Dumbledore must have had his reasons for not wanting Harry to know too much and speaking as someone who has got Harrys best interests at heart Hes not your son said Sirius quietly .Hes as good as said Mrs Weasley fiercely .Who else has he got ?Hes got me !Yes said Mrs Weasley her lip curling .The thing is its been rather difficult for you to look after him while youve been locked up in Azkaban hasnt it ?Sirius started to rise from his chair .Molly youre not the only person at this table who cares about Harry said Lupin sharply .Sirius sit down .Mrs Weasleys lower lip was trembling .Sirius sank slowly back into his chair his face white .I think Harry ought to be allowed a say in this Lupin continued .Hes old enough to decide for himself .I want to know whats been going on Harry said at once .He did not look at Mrs Weasley .He had been touched by what she had said about his being as good as a son but he was also impatient at her mollycoddling .Sirius was right he was not a child .Very well said Mrs Weasley her voice cracking .Ginny Ron Hermione Fred George I want you out of this kitchen now .There was instant uproar .Were of age !Fred and George bellowed together .If Harrys allowed why cant I ?shouted Ron .Mum I want to !wailed Ginny .NO !shouted Mrs Weasley standing up her eyes overbright .I absolutely forbid Molly you cant stop Fred and George said Mr Weasley wearily .They are of age Theyre still at school But theyre legally adults now said Mr Weasley in the same tired voice .Mrs Weasley was now scarlet in the face .I oh all right then Fred and George can stay but Ron Harryll tell me and Hermione everything you say anyway !said Ron hotly .Wont wont you ?he added uncertainly meeting Harrys eyes .For a split second Harry considered telling Ron that he wouldnt tell him a single word that he could try a taste of being kept in the dark and see how he liked it .But the nasty impulse vanished as they looked at each other .Course I will Harry said .Ron and Hermione beamed .Fine !shouted Mrs Weasley .Fine !Ginny BED !Ginny did not go quietly .They could hear her raging and storming at her mother all the way up the stairs and when she reached the hall Mrs Blacks earsplitting shrieks were added to the din .Lupin hurried off to the portrait to restore calm .It was only after he had returned closing the kitchen door behind him and taking his seat at the table again that Sirius spoke .Okay Harry .what do you want to know ?Harry took a deep breath and asked the question that had been obsessing him for a month .Wheres Voldemort ?Whats he doing ?Ive been trying to watch the Muggle news he said ignoring the renewed shudders and winces at the name and there hasnt been anything that looks like him yet no funny deaths or anything Thats because there havent been any suspicious deaths yet said Sirius not as far as we know anyway .And we know quite a lot .More than he thinks we do anyway said Lupin .How come hes stopped killing people ?Harry asked .He knew that Voldemort had murdered more than once in the last year alone .Because he doesnt want to draw attention to himself at the moment said Sirius .It would be dangerous for him .His comeback didnt come off quite the way he wanted it to you see .He messed it up .Or rather you messed it up for him said Lupin with a satisfied smile .How ?Harry asked perplexedly .You werent supposed to survive !said Sirius .Nobody apart from his Death Eaters was supposed to know hed come back .But you survived to bear witness .And the very last person he wanted alerted to his return the moment he got back was Dumbledore said Lupin .And you made sure Dumbledore knew at once .How has that helped ?Harry asked .Are you kidding ?said Bill incredulously .Dumbledore was the only one YouKnowWho was ever scared of !Thanks to you Dumbledore was able to recall the Order of the Phoenix about an hour after Voldemort returned said Sirius .So whats the Order been doing ?said Harry looking around at them all .Working as hard as we can to make sure Voldemort cant carry out his plans said Sirius .How dyou know what his plans are ?Harry asked quickly .Dumbledores got a shrewd idea said Lupin and Dumbledores shrewd ideas normally turn out to be accurate .So what does Dumbledore reckon hes planning ?Well firstly he wants to build up his army again said Sirius .In the old days he had huge numbers at his command witches and wizards hed bullied or bewitched into following him his faithful Death Eaters a great variety of Dark creatures .You heard him planning to recruit the giants well theyll be just one group hes after .Hes certainly not going to try and take on the Ministry of Magic with only a dozen Death Eaters .So youre trying to stop him getting more followers ?Were doing our best said Lupin .How ?Well the main thing is to try and convince as many people as possible that YouKnowWho really has returned to put them on their guard said Bill .Its proving tricky though .Why ?Because of the Ministrys attitude said Tonks .You saw Cornelius Fudge after YouKnowWho came back Harry .Well he hasnt shifted his position at all .Hes absolutely refusing to believe its happened .But why ?said Harry desperately .Whys he being so stupid ?If Dumbledore Ah well youve put your finger on the problem said Mr Weasley with a wry smile .Dumbledore .Fudge is frightened of him you see said Tonks sadly .Frightened of Dumbledore ?said Harry incredulously .Frightened of what hes up to said Mr Weasley .You see Fudge thinks Dumbledores plotting to overthrow him .He thinks Dumbledore wants to be Minister of Magic .But Dumbledore doesnt want Of course he doesnt said Mr Weasley .Hes never wanted the Ministers job even though a lot of people wanted him to take it when Millicent Bagnold retired .Fudge came to power instead but hes never quite forgotten how much popular support Dumbledore had even though Dumbledore never applied for the job .Deep down Fudge knows Dumbledores much cleverer than he is a much more powerful wizard and in the early days of his Ministry he was forever asking Dumbledore for help and advice said Lupin .But it seems that hes become fond of power now and much more confident .He loves being Minister of Magic and hes managed to convince himself that hes the clever one and Dumbledores simply stirring up trouble for the sake of it .How can he think that ?said Harry angrily .How can he think Dumbledore would just make it all up that Id make it all up ?Because accepting that Voldemorts back would mean trouble like the Ministry hasnt had to cope with for nearly fourteen years said Sirius bitterly .Fudge just cant bring himself to face it .Its so much more comfortable to convince himself Dumbledores lying to destabilize him .You see the problem said Lupin .While the Ministry insists there is nothing to fear from Voldemort its hard to convince people hes back especially as they really dont want to believe it in the first place .Whats more the Ministrys leaning heavily on the Daily Prophet not to report any of what theyre calling Dumbledores rumormongering so most of the Wizarding community are completely unaware anythings happened and that makes them easy targets for the Death Eaters if theyre using the Imperius Curse .But youre telling people arent you ?said Harry looking around at Mr Weasley Sirius Bill Mundungus Lupin and Tonks .Youre letting people know hes back ?They all smiled humorlessly .Well as everyone thinks Im a mad mass murderer and the Ministrys put a tenthousandGalleon price on my head I can hardly stroll up the street and start handing out leaflets can I ?said Sirius restlessly .And Im not a very popular dinner guest with most of the community said Lupin .Its an occupational hazard of being a werewolf .Tonks and Arthur would lose their jobs at the Ministry if they started shooting their mouths off said Sirius and its very important for us to have spies inside the Ministry because you can bet Voldemort will have them .Weve managed to convince a couple of people though said Mr Weasley .Tonks here for one shes too young to have been in the Order of the Phoenix last time and having Aurors on our side is a huge advantage Kingsley Shacklebolts been a real asset too .Hes in charge of the hunt for Sirius so hes been feeding the Ministry information that Sirius is in Tibet .But if none of yous putting the news out that Voldemort s back Harry began .Who said none of us was putting the news out ?said Sirius .Why dyou think Dumbledores in such trouble ?What dyou mean ?Harry asked .Theyre trying to discredit him said Lupin .Didnt you see the Daily Prophet last week ?They reported that hed been voted out of the Chairmanship of the International Confederation of Wizards because hes getting old and losing his grip but its not true he was voted out by Ministry wizards after he made a speech announcing Voldemorts return .Theyve demoted him from Chief Warlock on the Wizengamot thats the Wizard High Court and theyre talking about taking away his Order of Merlin First Class too .But Dumbledore says he doesnt care what they do as long as they dont take him off the Chocolate Frog cards said Bill grinning .Its no laughing matter said Mr Weasley shortly .If he carries on defying the Ministry like this he could end up in Azkaban and the last thing we want is Dumbledore locked up .While YouKnowWho knows Dumbledores out there and wise to what hes up to hes going to go cautiously for a while .If Dumbledores out of the way well YouKnowWho will have a clear field .But if Voldemorts trying to recruit more Death Eaters its bound to get out that hes come back isnt it ?asked Harry desperately .Voldemort doesnt march up to peoples houses and bang on their front doors Harry said Sirius .He tricks jinxes and blackmails them .Hes well practiced at operating in secrecy .In any case gathering followers is only one thing hes interested in hes got other plans too plans he can put into operation very quietly indeed and hes concentrating on them at the moment .Whats he after apart from followers ?Harry asked swiftly .He thought he saw Sirius and Lupin exchange the most fleeting of looks before Sirius said Stuff he can only get by stealth .When Harry continued to look puzzled Sirius said Like a weapon .Something he didnt have last time .When he was powerful before ?Yes .Like what kind of weapon ?said Harry .Something worse than the Avada Kedavra ?Thats enough .Mrs Weasley spoke from the shadows beside the door .Harry had not noticed her return from taking Ginny upstairs .Her arms were crossed and she looked furious .I want you in bed now .All of you she added looking around at Fred George Ron and Hermione .You cant boss us Fred began .Watch me snarled Mrs Weasley .She was trembling slightly as she looked at Sirius .Youve given Harry plenty of information .Any more and you might just as well induct him into the Order straightaway .Why not ?said Harry quickly .Ill join I want to join I want to fight No .It was not Mrs Weasley who spoke this time but Lupin .The Order is comprised only of overage wizards he said .Wizards who have left school he added as Fred and George opened their mouths .There are dangers involved of which you can have no idea any of you .I think Mollys right Sirius .Weve said enough .Sirius halfshrugged but did not argue .Mrs Weasley beckoned imperiously to her sons and Hermione .One by one they stood up and Harry recognizing defeat followed suit .THE NOBLE AND MOST ANCIENT HOUSE OF BLACK Mrs Weasley followed them upstairs looking grim .I want you all to go straight to bed no talking she said as they reached the first landing .Weve got a busy day tomorrow .I expect Ginnys asleep she added to Hermione so try not to wake her up .Asleep yeah right said Fred in an undertone after Hermione bade them good night and they were climbing to the next floor .If Ginnys not lying awake waiting for Hermione to tell her everything they said downstairs then Im a flobberworm .All right Ron Harry said Mrs Weasley on the second landing pointing them into their bedroom .Off to bed with you .Night Harry and Ron said to the twins .Sleep tight said Fred winking .Mrs Weasley closed the door behind Harry with a sharp snap .The bedroom looked if anything even danker and gloomier than it had on first sight .The blank picture on the wall was now breathing very slowly and deeply as though its invisible occupant was asleep .Harry put on his pajamas took off his glasses and climbed into his chilly bed while Ron threw Owl Treats up on top of the wardrobe to pacify Hedwig and Pigwidgeon who were clattering around and rustling their wings restlessly .We cant let them out to hunt every night Ron explained as he pulled on his maroon pajamas .Dumbledore doesnt want too many owls swooping around the square thinks itll look suspicious .Oh yeah .I forgot .He crossed to the door and bolted it .What re you doing that for ?Kreacher said Ron as he turned off the light .First night I was here he came wandering in at three in the morning .Trust me you dont want to wake up and find him paround your room .Anyway .He got into his bed settled down under the covers then turned to look at Harry in the darkness .Harry could see his outline by the moonlight filtering in through the grimy window .What dyou reckon ?Harry didnt need to ask what Ron meant .Well they didnt tell us much we couldnt have guessed did they ?he said thinking of all that had been said downstairs .I mean all theyve really said is that the Orders trying to stop people joining Vol There was a sharp intake of breath from Ron .demort said Harry firmly .When are you going to start using his name ?Sirius and Lupin do .Ron ignored this last comment .Yeah youre right he said .We already knew nearly everything they told us from using the Extendable Ears .The only new bit was Crack .OUCH !Keep your voice down Ron or Mumll be back up here .You two just Apparated on my knees !Yeah well its harder in the dark Harry saw the blurred outlines of Fred and George leaping down from Rons bed .There was a groan of bedsprings and Harrys mattress descended a few inches as George sat down near his feet .So got there yet ?said George eagerly .The weapon Sirius mentioned ?said Harry .Let slip more like said Fred with relish now sitting next to Ron .We didnt hear about that on the old Extendables did we ?What dyou reckon it is ?said Harry .Could be anything said Fred .But there cant be anything worse than the Avada Kedavra curse can there ?said Ron .Whats worse than death ?Maybe its something that can kill loads of people at once suggested George .Maybe its some particularly painful way of killing people said Ron fearfully .Hes got the Cruciatus Curse for causing pain said Harry .He doesnt need anything more efficient than that .There was a pause and Harry knew that the others like him were wondering what horrors this weapon could perpetrate .So who dyou thinks got it now ?asked George .I hope its our side said Ron sounding slightly nervous .If it is Dumbledores probably keeping it said Fred .Where ?said Ron quickly .Hogwarts ?Bet it is !said George .Thats where he hid the Sorcerers Stone !A weapons going to be a lot bigger than the Stone though !said Ron .Not necessarily said Fred .Yeah size is no guarantee of power said George .Look at Ginny .What dyou mean ?said Harry .Youve never been on the receiving end of one of her BatBogey Hexes have you ?Shhh !said Fred halfrising from the bed .Listen !They fell silent .Footsteps were coming up the stairs again .Mum said George and without further ado there was a loud crack and Harry felt the weight vanish from the end of his bed .A few seconds later and they heard the floorboard creak outside their door Mrs Weasley was plainly listening to see whether they were talking or not .Hedwig and Pigwidgeon hooted dolefully .The floorboard creaked again and they heard her heading upstairs to check on Fred and George .She doesnt trust us at all you know said Ron regretfully .Harry was sure he would not be able to fall asleep the evening had been so packed with things to think about that he fully expected to lie awake for hours mulling it all over .He wanted to continue talking to Ron but Mrs Weasley was now creaking back downstairs again and once she had gone he distinctly heard others making their way upstairs .In fact manylegged creatures were cantering softly up and down outside the bedroom door and Hagrid the Care of Magical Creatures teacher was saying Beauties aren they eh Harry ?Well be study in weapons this term .And Harry saw that the creatures had cannons for heads and were wheeling to face him .He ducked .The next thing he knew he was curled in a warm ball under his bedclothes and Georges loud voice was filling the room .Mum says get up your breakfast is in the kitchen and then she needs you in the drawing room there are loads more doxies than she thought and shes found a nest of dead puffskeins under the sofa .Half an hour later Harry and Ron who had dressed and breakfasted quickly entered the drawing room a long highceilinged room on the first floor with olive green walls covered in dirty tapestries .The carpet exhaled little clouds of dust every time someone put their foot on it and the long mossgreen velvet curtains were buzzing as though swarming with invisible bees .It was around these that Mrs Weasley Hermione Ginny Fred and George were grouped all looking rather peculiar as they had tied cloths over their noses and mouths .Each of them was also holding a large bottle of black liquid with a nozzle at the end .Cover your faces and take a spray Mrs Weasley said to Harry and Ron the moment she saw them pointing to two more bottles of black liquid standing on a spindlelegged table .Its Doxycide .Ive never seen an infestation this bad what that houseelfs been doing for the last ten years Hermione s face was half concealed by a tea towel but Harry distinctly saw her throw a reproachful look at Mrs Weasley at these words .Kreachers really old he probably couldnt manage Youd be surprised what Kreacher can manage when he wants to Hermione said Sirius who had just entered the room carrying a bloodstained bag of what appeared to be dead rats .Ive just been feeding Buckbeak he added in reply to Harrys inquiring look .I keep him upstairs in my mothers bedroom .Anyway .this writing desk .He dropped the bag of rats onto an armchair then bent over to examine the locked cabinet which Harry now noticed for the first time was shaking slightly .Well Molly Im pretty sure this is a boggart said Sirius peering through the keyhole but perhaps we ought to let MadEye have a shifty at it before we let it out knowing my mother it could be something much worse .Right you are Sirius said Mrs Weasley .They were both speaking in carefully light polite voices that told Harry quite plainly that neither had forgotten their disagreement of the night before .A loud clanging bell sounded from downstairs followed at once by the cacophony of screams and wails that had been triggered the previous night by Tonks knocking over the umbrella stand .I keep telling them not to ring the doorbell !said Sirius exasperatedly hurrying back out of the room .They heard him thundering down the stairs as Mrs Blacks screeches echoed up through the house once more Stains of dishonor filthy halfbreeds blood traitors children of filth .Close the door please Harry said Mrs Weasley .Harry took as much time as he dared to close the drawing room door he wanted to listen to what was going on downstairs .Sirius had obviously managed to shut the curtains over his mothers portrait because she had stopped screaming .He heard Sirius walking down the hall then the clattering of the chain on the front door and then a deep voice he recognized as Kingsley Shacklebolts saying Hestias just relieved me so shes got Moodys cloak now thought Id leave a report for Dumbledore .Feeling Mrs Weasleys eyes on the back of his head Harry regretfully closed the drawing room door and rejoined the doxy party .Mrs Weasley was bending over to check the page on doxies in Gilderoy Lockharts Guide to Household Pests which was lying open on the sofa .Right you lot you need to be careful because doxies bite and their teeth are poisonous .Ive got a bottle of antidote here but Id rather nobody needed it .She straightened up positioned herself squarely in front of the curtains and beckoned them all forward .When I say the word start spraying immediately she said .Theyll come flying out at us I expect but it says on the sprays one good squirt will paralyze them .When theyre immobilized just throw them in this bucket .She stepped carefully out of their line of fire and raised her own spray .All right squirti Harry had been spraying only a few seconds when a fully grown doxy came soaring out of a fold in the material shiny beetlelike wings whirring tiny needle sharp teeth bared its fairylike body covered with thick black hair and its four tiny fists clenched with fury .Harry caught it full in the face with a blast of Doxycide it froze in midair and fell with a surprisingly loud thunk onto the worn carpet below .Harry picked it up and threw it in the bucket .Fred what are you doing ?said Mrs Weasley sharply .Spray that at once and throw it away !Harry looked around .Fred was holding a struggling doxy between his forefinger and thumb .Righto Fred said brightly spraying the doxy quickly in the face so that it fainted but the moment Mrs Weasleys back was turned he pocketed it with a wink .We want to experiment with doxy venom for our Skiving Snackboxes George told Harry under his breath .Deftly spraying two doxies at once as they soared straight for his nose Harry moved closer to George and muttered out of the corner of his mouth What are Skiving Snackboxes ?Range of sweets to make you ill George whispered keeping a wary eye on Mrs Weasleys back .Not seriously ill mind just ill enough to get you out of a class when you feel like it .Fred and I have been developing them this summer .Theyre doubleended colorcoded chews .If you eat the orange half of the Puking Pastilles you throw up .Moment youve been rushed out of the lesson for the hospital wing you swallow the purple half ‘ which restores you to full fitness enabling you to pursue the leisure activity of your own choice during an hour that would otherwise have been devoted to unprofitable boredom .Thats what were putting in the adverts anyway whispered Fred who had edged over out of Mrs Weasleys line of vision and was now sweeping a few stray doxies from the floor and adding them to his pocket .But they still need a bit of work .At the moment our testers are having a bit of trouble stopping puking long enough to swallow the purple end .Testers ?Us said Fred .We take it in turns .George did the Fainting Fancies we both tried the Nosebleed Nougat Mum thought wed been dueling said George .Joke shop still on then ?Harry muttered pretending to be adjusting the nozzle on his spray .Well we havent had a chance to get premises yet said Fred dropping his voice even lower as Mrs Weasley mopped her brow with her scarf before returning to the attack so were running it as a mail order service at the moment .We put advertisements in the Daily Prophet last week .All thanks to you mate said George .But dont worry .Mum hasnt got a clue .She wont read the Daily Prophet anymore cause of it telling lies about you and Dumbledore .Harry grinned .He had forced the Weasley twins to take the thousandGalleon prize money he had won in the Triwizard Tournament to help them realize their ambition to open a joke shop but he was still glad to know that his part in furthering their plans was unknown to Mrs Weasley who did not think that running a joke shop was a suitable career for two of her sons .The dedoxying of the curtains took most of the morning .It was past midday when Mrs Weasley finally removed her protective scarf sank into a sagging armchair and sprang up again with a cry of disgust having sat on the bag of dead rats .The curtains were no longer buzzing they hung limp and damp from the intensive spraying unconscious doxies lay crammed in the bucket at the foot of them beside a bowl of their black eggs at which Crookshanks was now sniffing and Fred and George were shooting covetous looks .I think well tackle those after lunch .Mrs Weasley pointed at the dusty glassfronted cabinets standing on either side of the mantelpiece .They were crammed with an odd assortment of objects a selection of rusty daggers claws a coiled snakeskin a number of tarnished silver boxes inscribed with languages Harry could not understand and least pleasant of all an ornate crystal bottle with a large opal set into the stopper full of what Harry was quite sure was blood .The clanging doorbell rang again .Everyone looked at Mrs Weasley .Stay here she said firmly snatching up the bag of rats as Mrs Blacks screeches started up again from down below .Ill bring up some sandwiches .She left the room closing the door carefully behind her .At once everyone dashed over to the window to look down onto the doorstep .They could see the top of an unkempt gingery head and a stack of precariously balanced cauldrons .Mundungus !said Hermione .Whats he brought all those cauldrons for ?Probably looking for a safe place to keep them said Harry .Isnt that what he was doing the night he was supposed to be tailing me ?Picking up dodgy cauldrons ?Yeah youre right !said Fred as the front door opened Mundungus heaved his cauldrons through it and disappeared from view .Blimey Mum wont like that .He and George crossed to the door and stood beside it listening intently .Mrs Blacks screaming had stopped again .Mundungus is talking to Sirius and Kingsley Fred muttered frowning with concentration .Cant hear properly .dyou reckon we can risk the Extendable Ears ?Might be worth it said George .I could sneak upstairs and get a pair But at that precise moment there was an explosion of sound from downstairs that rendered Extendable Ears quite unnecessary .All of them could hear exactly what Mrs Weasley was shouting at the top of her voice .WE ARE NOT RUNNING A HIDEOUT FOR STOLEN GOODS !I love hearing Mum shouting at someone else said Fred with a satisfied smile on his face as he opened the door an inch or so to allow Mrs Weasley s voice to permeate the room better .It makes such a nice change .COMPLETELY IRRESPONSIBLE AS IF WE HAVENT GOT ENOUGH TO WORRY ABOUT WITHOUT YOU DRAGGING STOLEN CAULDRONS INTO THE HOUSE The idiots are letting her get into her stride said George shaking his head .Youve got to head her off early otherwise she builds up a head of steam and goes on for hours .And shes been dying to have a go at Mundungus ever since he sneaked off when he was supposed to be following you Harry and there goes Siriuss mum again Mrs Weasleys voice was lost amid fresh shrieks and screams from the portraits in the hall .George made to shut the door to drown the noise but before he could do so a houseelf edged into the room .Except for the filthy rag tied like a loincloth around its middle it was completely naked .It looked very old .Its skin seemed to be several times too big for it and though it was bald like all houseelves there was a quantity of white hair growing out of its large batlike ears .Its eyes were a bloodshot and watery gray and its fleshy nose was large and rather snoutlike .The elf took absolutely no notice of Harry and the rest .Acting as though it could not see them it shuffled hunchbacked slowly and doggedly toward the far end of the room muttering under its breath all the while in a hoarse deep voice like a bullfrogs .Smells like a drain and a criminal to boot but shes no better nasty old blood traitor with her brats messing up my Mistresss house oh my poor Mistress if she knew if she knew the scum theyve let in her house what would she say to old Kreacher oh the shame of it Mudbloods and werewolves and traitors and thieves poor old Kreacher what can he do .Hello Kreacher said Fred very loudly closing the door with a snap .The houseelf froze in his tracks stopped muttering and then gave a very pronounced and very unconvincing start of surprise .Kreacher did not see Young Master he said turning around and bowing to Fred .Still facing the carpet he added perfectly audibly Nasty little brat of a blood traitor it is .Sorry ?said George .Didnt catch that last bit .Kreacher said nothing said the elf with a second bow to George adding in a clear undertone and theres its twin unnatural little beasts they are .Harry didnt know whether to laugh or not .The elf straightened up eyeing them all very malevolently and apparently convinced that they could not hear him as he continued to mutter . .and theres the Mudblood standing there bold as brass oh if my Mistress knew oh how shed cry and theres a new boy Kreacher doesnt know his name what is he doing here Kreacher doesnt know .This is Harry Kreacher said Hermione tentatively .Harry Potter .Kreachers pale eyes widened and he muttered faster and more furiously than ever .The Mudblood is talking to Kreacher as though she is my friend if Kreachers Mistress saw him in such company oh what would she say Dont call her a Mudblood !said Ron and Ginny together very angrily .It doesnt matter Hermione whispered hes not in his right mind he doesnt know what hes Dont kid yourself Hermione he knows exactly what hes saying said Fred eyeing Kreacher with great dislike .Kreacher was still muttering his eyes on Harry .Is it true ?Is it Harry Potter ?Kreacher can see the scar it must be true thats that boy who stopped the Dark Lord Kreacher wonders how he did it Dont we all Kreacher ?said Fred .What do you want anyway ?George asked .Kreacher s huge eyes darted onto George .Kreacher is cleaning he said evasively .A likely story said a voice behind Harry .Sirius had come back he was glowering at the elf from the doorway .The noise in the hall had abated perhaps Mrs Weasley and Mundungus had moved their argument down into the kitchen .At the sight of Sirius Kreacher flung himself into a ridiculously low bow that flattened his snoutlike nose on the floor .Stand up straight said Sirius impatiently .Now what are you up to ?Kreacher is cleaning the elf repeated .Kreacher lives to serve the noble house of Black and its getting blacker every day its filthy said Sirius .Master always liked his little joke said Kreacher bowing again and continuing in an undertone Master was a nasty ungrateful swine who broke his mothers heart My mother didnt have a heart Kreacher Sirius snapped .She kept herself alive out of pure spite .Kreacher bowed again and said Whatever Master says then muttered furiously Master is not fit to wipe slime from his mothers boots oh my poor Mistress what would she say if she saw Kreacher serving him how she hated him what a disappointment he was I asked you what you were up to said Sirius coldly .Every time you show up pretending to be cleaning you sneak something off to your room so we cant throw it out .Kreacher would never move anything from its proper place in Masters house said the elf then muttered very fast Mistress would never forgive Kreacher if the tapestry was thrown out seven centuries its been in the family Kreacher must save it Kreacher will not let Master and the blood traitors and the brats destroy it I thought it might be that said Sirius casting a disdainful look at the opposite wall .Shell have put another Permanent Sticking Charm on the back of it I dont doubt but if I can get rid of it I certainly will .Now go away Kreacher .It seemed that Kreacher did not dare disobey a direct order nevertheless the look he gave Sirius as he shuffled out past him was redolent of deepest loathing and he muttered all the way out of the room .comes back from Azkaban ordering Kreacher around oh my poor Mistress what would she say if she saw the house now scum living in it her treasures thrown out she swore he was no son of hers and hes back they say hes a murderer too Keep muttering and I will be a murderer !said Sirius irritably and he slammed the door shut on the elf .Sirius hes not right in the head said Hermione pleadingly I dont think he realizes we can hear him .Hes been alone too long said Sirius taking mad orders from my mothers portrait and talking to himself but he was always a foul little If you just set him free said Hermione hopefully maybe We cant set him free he knows too much about the Order said Sirius curtly .And anyway the shock would kill him .You suggest to him that he leaves this house see how he takes it .Sirius walked across the room where the tapestry Kreacher had been trying to protect hung the length of the wall .Harry and the others followed .The tapestry looked immensely old it was faded and looked as though doxies had gnawed it in places nevertheless the golden thread with which it was embroidered still glinted brightly enough to show them a sprawling family tree dating back as far as Harry could tell to the Middle Ages .Large words at the very top of the tapestry read THE NOBLE AND MOST ANCIENT HOUSE OF BLACK TOUJOURS PUR Youre not on here !said Harry after scanning the bottom of the tree .I used to be there said Sirius pointing at a small round charred hole in the tapestry rather like a cigarette burn .My sweet old mother blasted me off after I ran away from home Kreachers quite fond of muttering the story under his breath .You ran away from home ?When I was about sixteen said Sirius .Id had enough .Where did you go ?asked Harry staring at him .Your dads place said Sirius .Your grandparents were really good about it they sort of adopted me as a second son .Yeah I camped out at your dads during the school holidays and then when I was seventeen I got a place of my own my Uncle Alphard had left me a decent bit of gold hes been wiped off here too thats probably why anyway after that I looked after myself .I was always welcome at Mr and Mrs Potters for Sunday lunch though .But .why did you . ?Leave ?Sirius smiled bitterly and ran a hand through his long unkempt hair .Because I hated the whole lot of them my parents with their pureblood mania convinced that to be a Black made you practically royal .my idiot brother soft enough to believe them .thats him .Sirius jabbed a finger at the very bottom of the tree at the name REGULUS BLACK .A date of death some fifteen years previously followed the date of birth .He was younger than me said Sirius and a much better son as I was constantly reminded .But he died said Harry .Yeah said Sirius .Stupid idiot .he joined the Death Eaters .Youre kidding !Come on Harry havent you seen enough of this house to tell what kind of wizards my family were ?said Sirius testily .Were were your parents Death Eaters as well ?No no but believe me they thought Voldemort had the right idea they were all for the purification of the Wizarding race getting rid of Muggleborns and having purebloods in charge .They werent alone either there were quite a few people before Voldemort showed his true colors who thought he had the right idea about things .They got cold feet when they saw what he was prepared to do to get power though .But I bet my parents thought Regulus was a right little hero for joining up at first .Was he killed by an Auror ?Harry asked tentatively .Oh no said Sirius .No he was murdered by Voldemort .Or on Voldemorts orders more likely I doubt Regulus was ever important enough to be killed by Voldemort in person .From what I found out after he died he got in so far then panicked about what he was being asked to do and tried to back out .Well you dont just hand in your resignation to Voldemort .Its a lifetime of service or death .Lunch said Mrs Weasleys voice .She was holding her wand high in front of her balancing a huge tray loaded with sandwiches and cake on its tip .She was very red in the face and still looked angry .The others moved over to her eager for some food but Harry remained with Sirius who had bent closer to the tapestry .I havent looked at this for years .Theres Phineas Nigellus .my greatgreatgrandfather see ?Least popular headmaster Hogwarts ever had .and Araminta Meliflua .cousin of my mothers .tried to force through a Ministry Bill to make Mugglehunting legal .and dear Aunt Elladora .she started the family tradition of beheading houseelves when they got too old to carry tea trays .of course anytime the family produced someone halfway decent they were disowned .I see Tonks isnt on here .Maybe thats why Kreacher wont take orders from her hes supposed to do whatever anyone in the family asks him .You and Tonks are related ?Harry asked surprised .Oh yeah her mother Andromeda was my favorite cousin said Sirius examining the tapestry carefully .No Andromedas not on here either look He pointed to another small round burn mark between two names Bellatrix and Narcissa .Andromedas sisters are still here because they made lovely respectable pureblood marriages but Andromeda married a Muggleborn Ted Tonks so Sirius mimed blasting the tapestry with a wand and laughed sourly .Harry however did not laugh he was too busy staring at the names to the right of Andromedas burn mark .A double line of gold embroidery linked Narcissa Black with Lucius Malfoy and a single vertical gold line from their names led to the name Draco .Youre related to the Malfoys !The pureblood families are all interrelated said Sirius .If youre only going to let your sons and daughters marry purebloods your choice is very limited there are hardly any of us left .Molly and I are cousins by marriage and Arthurs something like my second cousin once removed .But theres no point looking for them on here if ever a family was a bunch of blood traitors its the Weasleys .But Harry was now looking at the name to the left of Andromedas burn Bellatrix Black which was connected by a double line to Rodolphus Lestrange .Lestrange .Harry said aloud .The name had stirred something in his memory he knew it from somewhere but for a moment he couldnt think where though it gave him an odd creeping sensation in the pit of his stomach .Theyre in Azkaban said Sirius shortly .Harry looked at him curiously .Bellatrix and her husband Rodolphus came in with Barty Crouch Junior said Sirius in the same brusque voice .Rodolphus s brother Rabastan was with them too .And Harry remembered He had seen Bellatrix Lestrange inside Dumbledores Pensieve the strange device in which thoughts and memories could be stored a tall dark woman with heavylidded eyes who had stood at her trial and proclaimed her continuing allegiance to Lord Voldemort her pride that she had tried to find him after his downfall and her conviction that she would one day be rewarded for her loyalty .You never said she was your Does it matter if shes my cousin ?snapped Sirius .As far as Im concerned theyre not my family .Shes certainly not my family .I havent seen her since I was your age unless you count a glimpse of her coming in to Azkaban .Dyou think Im proud of having relatives like her ?Sorry said Harry quickly I didnt mean I was just surprised thats all It doesnt matter dont apologize Sirius mumbled at once .He turned away from the tapestry his hands deep in his pockets .I dont like being back here he said staring across the drawing room .I never thought Id be stuck in this house again .Harry understood completely .He knew how he would feel if forced when he was grown up and thought he was free of the place forever to return and live at number four Privet Drive .Its ideal for headquarters of course Sirius said .My father put every security measure known to Wizardkind on it when he lived here .Its Unplottable so Muggles could never come and call as if theyd have wanted to and now Dumbledores added his protection youd be hard put to find a safer house anywhere .Dumbledores SecretKeeper for the Order you know nobody can find headquarters unless he tells them personally where it is that note Moody showed you last night that was from Dumbledore .Sirius gave a short barklike laugh .If my parents could see the use it was being put to now .well my mothers portrait should give you some idea .He scowled for a moment then sighed .I wouldnt mind if I could just get out occasionally and do something useful .Ive asked Dumbledore whether I can escort you to your hearing as Snuffles obviously so I can give you a bit of moral support what dyou think ?Harry felt as though his stomach had sunk through the dusty carpet .He had not thought about the hearing once since dinner the previous evening in the excitement of being back with the people he liked best of hearing everything that was going on it had completely flown his mind .At Siriuss words however the crushing sense of dread returned to him .He stared at Hermione and the Weasleys all tucking into their sandwiches and thought how he would feel if they went back to Hogwarts without him .Dont worry Sirius said .Harry looked up and realized that Sirius had been watching him .Im sure theyre going to clear you theres definitely something in the International Statute of Secrecy about being allowed to use magic to save your own life .But if they do expel me said Harry quietly can I come back here and live with you ?Sirius smiled sadly .Well see .Id feel a lot better about the hearing if I knew I didnt have to go back to the Dursleys Harry pressed him .They must be bad if you prefer this place said Sirius gloomily .Hurry up you two or there wont be any food left Mrs Weasley called .Sirius heaved another great sigh cast a dark look at the tapestry and he and Harry went to join the others .Harry tried his best not to think about the hearing while they emptied the glass cabinets that afternoon .Fortunately for him it was a job that required a lot of concentration as many of the objects in there seemed very reluctant to leave their dusty shelves .Sirius sustained a bad bite from a silver snuffbox within seconds his bitten hand had developed an unpleasant crusty covering like a tough brown glove .Its okay he said examining the hand with interest before tapping it lightly with his wand and restoring its skin to normal must be Wartcap powder in there .He threw the box aside into the sack where they were depositing the debris from the cabinets Harry saw George wrap his own hand carefully in a cloth moments later and sneak the box into his already doxyfilled pocket .They found an unpleasantlooking silver instrument something like a manylegged pair of tweezers which scuttled up Harrys arm like a spider when he picked it up and attempted to puncture his skin Sirius seized it and smashed it with a heavy book entitled Natures Nobility A Wizarding Genealogy .There was a musical box that emitted a faintly sinister tinkling tune when wound and they all found themselves becoming curiously weak and sleepy until Ginny had the sense to slam the lid shut also a heavy locket that none of them could open a number of ancient seals and in a dusty box an Order of Merlin First Class that had been awarded to Siriuss grandfather for Services to the Ministry .It means he gave them a load of gold said Sirius contemptuously throwing the medal into the rubbish sack .Several times Kreacher sidled into the room and attempted to smuggle things away under his loincloth muttering horrible curses every time they caught him at it .When Sirius wrested a large golden ring bearing the Black crest from his grip Kreacher actually burst into furious tears and left the room sobbing under his breath and calling Sirius names Harry had never heard before .It was my fathers said Sirius throwing the ring into the sack .Kreacher wasnt quite as devoted to him as to my mother but I still caught him snogging a pair of my fathers old trousers last week .Mrs Weasley kept them all working very hard over the next few days .The drawing room took three days to decontaminate finally the only undesirable things left in it were the tapestry of the Black family tree which resisted all their attempts to remove it from the wall and the rattling writing desk Moody had not dropped by headquarters yet so they could not be sure what was inside it .They moved from the drawing room to a dining room on the ground floor where they found spiders large as saucers lurking in the dresser Ron left the room hurriedly to make a cup of tea and did not return for an hour and a half .The china which bore the Black crest and motto was all thrown unceremoniously into a sack by Sirius and the same fate met a set of old photographs in tarnished silver frames all of whose occupants squealed shrilly as the glass covering them smashed .Snape might refer to their work as cleaning but in Harrys opinion they were really waging war on the house which was putting up a very good fight aided and abetted by Kreacher .The houseelf kept appearing wherever they were congregated his muttering becoming more and more offensive as he attempted to remove anything he could from the rubbish sacks .Sirius went as far as to threaten him with clothes but Kreacher fixed him with a watery stare and said Master must do as Master wishes before turning away and muttering very loudly but Master will not turn Kreacher away no because Kreacher knows what they are up to oh yes he is plotting against the Dark Lord yes with these Mudbloods and traitors and scum .At which Sirius ignoring Hermiones protests seized Kreacher by the back of his loincloth and threw him bodily from the room .The doorbell rang several times a day which was the cue for Siriuss mother to start shrieking again and for Harry and the others to attempt to eavesdrop on the visitor though they gleaned very little from the brief glimpses and snatches of conversation they were able to sneak before Mrs Weasley recalled them to their tasks .Snape flitted in and out of the house several times more though to Harrys relief they never came facetoface he also caught sight of his Transfiguration teacher Professor McGonagall looking very odd in a Muggle dress and coat though she also seemed too busy to linger .Sometimes however the visitors stayed to help Tonks joined them for a memorable afternoon in which they found a murderous old ghoul lurking in an upstairs toilet and Lupin who was staying in the house with Sirius but who left it for long periods to do mysterious work for the Order helped them repair a grandfather clock that had developed the unpleasant habit of shooting heavy bolts at passersby .Mundungus redeemed himself slightly in Mrs Weasleys eyes by rescuing Ron from an ancient set of purple robes that had tried to strangle him when he removed them from their wardrobe .Despite the fact that he was still sleeping badly still having dreams about corridors and locked doors that made his scar prickle Harry was managing to have fun for the first time all summer .As long as he was busy he was happy when the action abated however whenever he dropped his guard or lay exhausted in bed watching blurred shadows move across the ceiling the thought of the looming Ministry hearing returned to him .Fear jabbed at his insides like needles as he wondered what was going to happen to him if he was expelled .The idea was so terrible that he did not dare voice it aloud not even to Ron and Hermione who though he often saw them whispering together and casting anxious looks in his direction followed his lead in not mentioning it .Sometimes he could not prevent his imagination showing him a faceless Ministry official who was snapping his wand in two and ordering him back to the Dursleys .but he would not go .He was determined on that .He would come back here to Grimmauld Place and live with Sirius .He felt as though a brick had dropped into his stomach when Mrs Weasley turned to him during dinner on Wednesday evening and said quietly Ive ironed your best clothes for tomorrow morning Harry and I want you to wash your hair tonight too .A good first impression can work wonders .Ron Hermione Fred George and Ginny all stopped talking and looked over at him .Harry nodded and tried to keep eating his chops but his mouth had become so dry he could not chew .How am I getting there ?he asked Mrs Weasley trying to sound unconcerned .Arthurs taking you to work with him said Mrs Weasley gently .Mr Weasley smiled encouragingly at Harry across the table .You can wait in my office until its time for the hearing he said .Harry looked over at Sirius but before he could ask the question Mrs Weasley had answered it .Professor Dumbledore doesnt think its a good idea for Sirius to go with you and I must say I think hes quite right said Sirius through clenched teeth .Mrs Weasley pursed her lips .When did Dumbledore tell you that ?Harry said staring at Sirius .He came last night when you were in bed said Mr Weasley .Sirius stabbed moodily at a potato with his fork .Harry dropped his own eyes to his plate .The thought that Dumbledore had been in the house on the eve of his hearing and not asked to see him made him feel if that were possible even worse .7 THE MINISTRY OF MAGIC Harry awoke at halfpast five the next morning as abruptly and completely as if somebody had yelled in his ear .For a few moments he lay immobile as the prospect of the hearing filled every tiny particle of his brain then unable to bear it he leapt out of bed and put on his glasses .Mrs Weasley had laid out his freshly laundered jeans and Tshirt at the foot of his bed .Harry scrambled into them .The blank picture on the wall sniggered again .Ron was lying sprawled on his back with his mouth wide open fast asleep .He did not stir as Harry crossed the room stepped out onto the landing and closed the door softly behind him .Trying not to think of the next time he would see Ron when they might no longer be fellow students at Hogwarts Harry walked quietly down the stairs past the heads of Kreachers ancestors and into the kitchen .He had expected it to be empty but it was not .When he reached the door he heard the soft rumble of voices on the other side and when he pushed it open he saw Mr and Mrs Weasley Sirius Lupin and Tonks sitting there almost as though they were waiting for him .All were fully dressed except Mrs Weasley who was wearing a quilted purple dressing gown .She leapt to her feet the moment he entered .Breakfast she said as she pulled out her wand and hurried over to the fire .Mmmorning Harry yawned Tonks .Her hair was blonde and curly this morning .Sleep all right ?Yeah said Harry .Ive bbbeen up all night she said with another shuddering yawn .Come and sit down .She drew out a chair knocking over the one beside it in the process .What do you want Harry ?Mrs Weasley called .Porridge ?Muffins ?Kippers ?Bacon and eggs ?Toast ?Just just toast thanks said Harry .Lupin glanced at Harry then said to Tonks What were you saying about Scrimgeour ?Oh .yeah .well we need to be a bit more careful hes been asking Kingsley and me funny questions .Harry felt vaguely grateful that he was not required to join in the conversation .His insides were squirming .Mrs Weasley placed a couple of pieces of toast and marmalade in front of him he tried to eat but it was like chewing carpet .Mrs Weasley sat down on his other side and started fussing with his Tshirt tucking in the label and smoothing out creases across the shoulders .He wished she wouldnt . .and Ill have to tell Dumbledore I cant do night duty tomorrow Im just tttoo tired Tonks finished yawning hugely again .Ill cover for you said Mr Weasley .Im okay Ive got a report to finish anyway .Mr Weasley was not wearing wizards robes but a pair of pinstriped trousers and an old bomber jacket .He turned from Tonks to Harry .How are you feeling ?Harry shrugged .Itll all be over soon Mr Weasley said bracingly .In a few hours time youll be cleared .Harry said nothing .The hearings on my floor in Amelia Bones s office .Shes Head of the Department of Magical Law Enforcement and shes the one wholl be questioning you .Amelia Bones is okay Harry said Tonks earnestly .Shes fair shell hear you out .Harry nodded still unable to think of anything to say .Dont lose your temper said Sirius abruptly .Be polite and stick to the facts .Harry nodded again .The laws on your side said Lupin quietly .Even underage wizards are allowed to use magic in life threatening situations .Something very cold trickled down the back of Harrys neck for a moment he thought someone was putting a Disillusionment Charm on him again then he realized that Mrs Weasley was attacking his hair with a wet comb .She pressed hard on the top of his head .Doesnt it ever lie flat ?she said desperately .Harry shook his head .Mr Weasley checked his watch and looked up at Harry .I think well go now he said .Were a bit early but I think youll be better off there than hanging around here .Okay said Harry automatically dropping his toast and getting to his feet .Youll be all right Harry said Tonks patting him on the arm .Good luck said Lupin .Im sure it will be fine .And if its not said Sirius grimly Ill see to Amelia Bones for you .Harry smiled weakly .Mrs Weasley hugged him .Weve all got our fingers crossed she said .Right said Harry .Well .see you later then .He followed Mr Weasley upstairs and along the hall .He could hear Siriuss mother grunting in her sleep behind her curtains .Mr Weasley unbolted the door and they stepped out into the cold gray dawn .You dont normally walk to work do you ?Harry asked him as they set off briskly around the square .No I usually Apparate said Mr Weasley but obviously you cant and I think its best we arrive in a thoroughly nonmagical fashion .makes a better impression given what youre being disciplined for .Mr Weasley kept his hand inside his jacket as they walked .Harry knew it was clenched around his wand .The rundown streets were almost deserted but when they arrived at the miserable little Underground station they found it already full of early morning commuters .As ever when he found himself in close proximity to Muggles going about their daily business Mr Weasley was hard put to contain his enthusiasm .Simply fabulous he whispered indicating the automatic ticket machines .Wonderfully ingenious .Theyre out of order said Harry pointing at the sign .Yes but even so .said Mr Weasley beaming fondly at them .They bought their tickets instead from a sleepy looking guard Harry handled the transaction as Mr Weasley was not very good with Muggle money and five minutes later they were boarding an Underground train that rattled them off toward the center of London .Mr Weasley kept anxiously checking and rechecking the Underground map above the windows .Four stops Harry .three stops left now .two stops to go Harry .They got off at a station in the very heart of London swept from the train in a tide of besuited men and women carrying briefcases .Up the escalator they went through the ticket barrier Mr Weasley delighted with the way the stile swallowed his ticket and emerged onto a broad street lined with imposing looking buildings already full of traffic .Where are we ?said Mr Weasley blankly and for one heartstopping moment Harry thought they had gotten off at the wrong station despite Mr Weasleys continual references to the map but a second later he said Ah yes .this way Harry and led him down a side road .Sorry he said but I never come by train and it all looks rather different from a Muggle perspective .As a matter of fact Ive never even used the visitors entrance before .The farther they walked the smaller and less imposing the buildings became until finally they reached a street that contained several rather shabbylooking offices a pub and an overflowing dumpster .Harry had expected a rather more impressive location for the Ministry of Magic .Here we are said Mr Weasley brightly pointing at an old red telephone box which was missing several panes of glass and stood before a heavily graffittied wall .After you Harry .He opened the telephone box door .Harry stepped inside wondering what on earth this was about .Mr Weasley folded himself in beside Harry and closed the door .It was a tight fit Harry was jammed against the telephone apparatus which was hanging crookedly from the wall as though a vandal had tried to rip it off .Mr Weasley reached past Harry for the receiver .Mr Weasley I think this might be out of order too Harry said .No no Im sure its fine said Mr Weasley holding the receiver above his head and peering at the dial .Lets see .six .he dialed the number two .four .and another four .and another two .As the dial whirred smoothly back into place a cool female voice sounded inside the telephone box not from the receiver in Mr Weasleys hand but as loudly and plainly as though an invisible woman were standing right beside them .Welcome to the Ministry of Magic .Please state your name and business .Er .said Mr Weasley clearly uncertain whether he should talk into the receiver or not he compromised by holding the mouthpiece to his ear Arthur Weasley Misuse of Muggle Artifacts Office here to escort Harry Potter who has been asked to attend a disciplinary hearing .Thank you said the cool female voice .Visitor please take the badge and attach it to the front of your robes .There was a click and a rattle and Harry saw something slide out of the metal chute where returned coins usually appeared .He picked it up It was a square silver badge with Harry Potter Disciplinary Hearing on it .He pinned it to the front of his Tshirt as the female voice spoke again .Visitor to the Ministry you are required to submit to a search and present your wand for registration at the security desk which is located at the far end of the Atrium .The floor of the telephone box shuddered .They were sinking slowly into the ground .Harry watched apprehensively as the pavement rose up past the glass windows of the telephone box until darkness closed over their heads .Then he could see nothing at all he could only hear a dull grinding noise as the telephone box made its way down through the earth .After about a minute though it felt much longer to Harry a chink of golden light illuminated his feet and widening rose up his body until it hit him in the face and he had to blink to stop his eyes from watering .The Ministry of Magic wishes you a pleasant day said the womans voice .The door of the telephone box sprang open and Mr Weasley stepped out of it followed by Harry whose mouth had fallen open .They were standing at one end of a very long and splendid hall with a highly polished dark wood floor .The peacockblue ceiling was inlaid with gleaming golden symbols that were continually moving and changing like some enormous heavenly notice board .The walls on each side were paneled in shiny dark wood and had many gilded fireplaces set into them .Every few seconds a witch or wizard would emerge from one of the lefthand fireplaces with a soft whoosh on the righthand side short queues of wizards were forming before each fireplace waiting to depart .Halfway down the hall was a fountain .A group of golden statues larger than lifesize stood in the middle of a circular pool .Tallest of them all was a noblelooking wizard with his wand pointing straight up in the air .Grouped around him were a beautiful witch a centaur a goblin and a houseelf .The last three were all looking adoringly up at the witch and wizard .Glittering jets of water were flying from the ends of the two wands the point of the centaurs arrow the tip of the goblins hat and each of the houseelfs ears so that the tinkling hiss of falling water was added to the pops and cracks of Apparators and the clatter of footsteps as hundreds of witches and wizards most of whom were wearing glum earlymorning looks strode toward a set of golden gates at the far end of the hall .This way said Mr Weasley .They joined the throng wending their way between the Ministry workers some of whom were carrying tottering piles of parchment others battered briefcases still others reading the Daily Prophet as they walked .As they passed the fountain Harry saw silver Sickles and bronze Knuts glinting up at him from the bottom of the pool .A small smudged sign beside it read All proceeds from the Fountain of Magical Brethren will be given to St .Mungos Hospital for Magical Maladies and Injuries If Im not expelled from Hogwarts Ill put in ten Galleons Harry found himself thinking desperately .Over here Harry said Mr Weasley and they stepped out of the stream of Ministry employees heading for the golden gates toward a desk on the left over which hung a sign saying SECURITY .A badly shaven wizard in peacockblue robes looked up as they approached and put down his Daily Prophet .Im escorting a visitor said Mr Weasley gesturing toward Harry .Step over here said the wizard in a bored voice .Harry walked closer to him and the wizard held up a long golden rod thin and flexible as a car aerial and passed it up and down Harrys front and back .Wand grunted the security wizard at Harry putting down the golden instrument and holding out his hand .Harry produced his wand .The wizard dropped it onto a strange brass instrument which looked something like a set of scales with only one dish .It began to vibrate .A narrow strip of parchment came speeding out of a slit in the base .The wizard tore this off and read the writing upon it .Eleven inches phoenixfeather core been in use four years .That correct ?Yes said Harry nervously .I keep this said the wizard impaling the slip of parchment on a small brass spike .You get this back he added thrusting the wand at Harry .Thank you .Hang on .said the wizard slowly .His eyes had darted from the silver visitors badge on Harrys chest to his forehead .Thank you Eric said Mr Weasley firmly and grasping Harry by the shoulder he steered him away from the desk and back into the stream of wizards and witches walking through the golden gates .Jostled slightly by the crowd Harry followed Mr Weasley through the gates into the smaller hall beyond where at least twenty lifts stood behind wrought golden grilles .Harry and Mr Weasley joined the crowd around one of them .A big bearded wizard holding a large cardboard box stood nearby .The box was emitting rasping noises .All right Arthur ?said the wizard nodding at Mr Weasley .Whatve you got there Bob ?asked Mr Weasley looking at the box .Were not sure said the wizard seriously .We thought it was a bogstandard chicken until it started breathing fire .Looks like a serious breach of the Ban on Experimental Breeding to me .With a great jangling and clattering a lift descended in front of them the golden grille slid back and Harry and Mr Weasley moved inside it with the rest of the crowd .Harry found himself jammed against the back wall of the lift .Several witches and wizards were looking at him curiously he stared at his feet to avoid catching anyones eye flattening his fringe as he did so .The grilles slid shut with a crash and the lift ascended slowly chains rattling all the while while the same cool female voice Harry had heard in the telephone box rang out again .Level seven Department of Magical Games and Sports incorporating the British and Irish Quidditch League Headquarters Official Gobstones Club and Ludicrous Patents Office .The lift doors opened Harry glimpsed an untidy looking corridor with various posters of Quidditch teams tacked lopsidedly on the walls one of the wizards in the lift who was carrying an armful of broomsticks extricated himself with difficulty and disappeared down the corridor .The doors closed the lift juddered upward again and the womans voice said Level six Department of Magical Transport incorporating the Floo Network Authority Broom Regulatory Control Portkey Office and Apparation Test Center .Once again the lift doors opened and four or five witches and wizards got out at the same time several paper airplanes swooped into the lift .Harry stared up at them as they flapped idly around above his head they were a pale violet color and he could see MINISTRY OF MAGIC stamped along the edges of their wings .Just Interdepartmental memos Mr Weasley muttered to him .We used to use owls but the mess was unbelievable .droppings all over the desks .As they clattered upward again the memos flapped around the swaying lamp in the lifts ceiling .Level five Department of International Magical Cooperation incorporating the International Magical Trading Standards Body the International Magical Office of Law and the International Confederation of Wizards British Seats .When the doors opened two of the memos zoomed out with a few more witches and wizards but several more memos zoomed in so that the light from the lamp in the ceiling flickered and flashed as they darted around it .Level four Department for the Regulation and Control of Magical Creatures incorporating Beast Being and Spirit Divisions Goblin Liaison Office and Pest Advisory Bureau .Scuse said the wizard carrying the firebreathing chicken and he left the lift pursued by a little flock of memos .The doors clanged shut yet again .Level three Department of Magical Accidents and Catastrophes including the Accidental Magic Reversal Squad Obliviator Headquarters and MuggleWorthy Excuse Committee .Everybody left the lift on this floor except Mr Weasley Harry and a witch who was reading an extremely long piece of parchment that was trailing on the ground .The remaining memos continued to soar around the lamp as the lift juddered upward again and then the doors opened and the voice said Level two Department of Magical Law Enforcement including the Improper Use of Magic Office Auror Headquarters and Wizengamot Administration Services .This is us Harry said Mr Weasley and they followed the witch out of the lift into a corridor lined with doors .My office is on the other side of the floor .Mr Weasley said Harry as they passed a window through which sunlight was streaming arent we underground ?Yes we are said Mr Weasley those are enchanted windows Magical Maintenance decide what weather were getting every day .We had two months of hurricanes last time they were angling for a pay raise .Just round here Harry .They turned a corner walked through a pair of heavy oak doors and emerged in a cluttered open area divided into cubicles which were buzzing with talk and laughter .Memos were zooming in and out of cubicles like miniature rockets .A lopsided sign on the nearest cubicle read AUROR HEADQUARTERS .Harry looked surreptitiously through the doorways as they passed .The Aurors had covered their cubicle walls with everything from pictures of wanted wizards and photographs of their families to posters of their favorite Quidditch teams and articles from the Daily Prophet A scarletrobed man with a ponytail longer than Bills was sitting with his boots up on his desk dictating a report to his quill .A little farther along a witch with a patch over her eye was talking over the top of her cubicle wall to Kingsley Shacklebolt .Morning Weasley said Kingsley carelessly as they drew nearer .Ive been wanting a word with you have you got a second ?Yes if it really is a second said Mr Weasley Im in rather a hurry .They were talking to each other as though they hardly knew each other and when Harry opened his mouth to say hello to Kingsley Mr Weasley stood on his foot .They followed Kingsley along the row and into the very last cubicle .Harry received a slight shock Siriuss face was blinking down at him from every direction .Newspaper cuttings and old photographs even the one of Sirius being best man at the Potters wedding papered the walls .The only Siriusfree space was a map of the world in which little red pins were glowing like jewels .Here said Kingsley brusquely to Mr Weasley shoving a sheaf of parchment into his hand I need as much information as possible on flying Muggle vehicles sighted in the last twelve months .Weve received information that Black might still be using his old motorcycle .Kingsley tipped Harry an enormous wink and added in a whisper Give him the magazine he might find it interesting .Then he said in normal tones And dont take too long Weasley the delay on that firelegs report held our investigation up for a month .If you had read my report you would know that the term is ‘firearms said Mr Weasley coolly .And Im afraid youll have to wait for information on motorcycles were extremely busy at the moment .He dropped his voice and said If you can get away before seven Mollys making meatballs .He beckoned to Harry and led him out of Kingsleys cubicle through a second set of oak doors into another passage turned left marched along another corridor turned right into a dimly lit and distinctly shabby corridor and finally reached a dead end where a door on the left stood ajar revealing a broom cupboard and a door on the right bore a tarnished brass plaque reading MISUSE OF MUGGLE ARTIFACTS .Mr Weasleys dingy office seemed to be slightly smaller than the broom cupboard .Two desks had been crammed inside it and there was barely room to move around them because of all the overflowing filing cabinets lining the walls on top of which were tottering piles of files .The little wall space available bore witness to Mr Weasleys obsessions there were several posters of cars including one of a dismantled engine two illustrations of postboxes he seemed to have cut out of Muggle childrens books and a diagram showing how to wire a plug .Sitting on top of Mr Weasleys overflowing intray was an old toaster that was hiccuping in a disconsolate way and a pair of empty leather gloves that were twiddling their thumbs .A photograph of the Weasley family stood beside the intray .Harry noticed that Percy appeared to have walked out of it .We havent got a window said Mr Weasley apologetically taking off his bomber jacket and placing it on the back of his chair .Weve asked but they dont seem to think we need one .Have a seat Harry doesnt look as if Perkins is in yet .Harry squeezed himself into the chair behind Perkinss desk while Mr Weasley rifled through the sheaf of parchment Kingsley Shacklebolt had given him .Ah he said grinning as he extracted a copy of a magazine entitled The Quibbler from its midst yes .He flicked through it .Yes hes right Im sure Sirius will find that very amusing oh dear whats this now ?A memo had just zoomed in through the open door and fluttered to rest on top of the hiccuping toaster .Mr Weasley unfolded it and read aloud Third regurgitating public toilet reported in Bethnal Green kindly investigate immediately .This is getting ridiculous .A regurgitating toilet ?AntiMuggle pranksters said Mr Weasley frowning .We had two last week one in Wimbledon one in Elephant and Castle .Muggles are pulling the flush and instead of everything disappearing well you can imagine .The poor things keep calling in those those pumbles I think theyre called you know the ones who mend pipes and things Plumbers ?exactly yes but of course theyre flummoxed .I only hope we can catch whoevers doing it .Will it be Aurors who catch them ?Oh no this is too trivial for Aurors itll be the ordinary Magical Law Enforcement Patrol ah Harry this is Perkins .A stooped timidlooking old wizard with fluffy white hair had just entered the room panting .Oh Arthur !he said desperately without looking at Harry .Thank goodness I didnt know what to do for the best whether to wait here for you or not Ive just sent an owl to your home but youve obviously missed it an urgent message came ten minutes ago I know about the regurgitating toilet said Mr Weasley .No no its not the toilet its the Potter boys hearing theyve changed the time and venue it starts at eight oclock now and its down in old Courtroom Ten Down in old but they told me Merlins beard Mr Weasley looked at his watch let out a yelp and leapt from his chair .Quick Harry we should have been there five minutes ago !Perkins flattened himself against the filing cabinets as Mr Weasley left the office at a run Harry on his heels .Why have they changed the time ?Harry said breathlessly as they hurtled past the Auror cubicles people poked out their heads and stared as they streaked past .Harry felt as though he had left all his insides back at Perkinss desk .Ive no idea but thank goodness we got here so early if youd missed it it would have been catastrophic !Mr Weasley skidded to a halt beside the lifts and jabbed impatiently at the down button .Come ON !The lift clattered into view and they hurried inside .Every time it stopped Mr Weasley cursed furiously and pummelled the number nine button .Those courtrooms havent been used in years said Mr Weasley angrily .I cant think why theyre doing it down there unless but no .A plump witch carrying a smoking goblet entered the lift at that moment and Mr Weasley did not elaborate .The Atrium said the cool female voice and the golden grilles slid open showing Harry a distant glimpse of the golden statues in the fountain .The plump witch got out and a sallowskinned wizard with a very mournful face got in .Morning Arthur he said in a sepulchral voice as the lift began to descend .Dont often see you down here .Urgent business Bode said Mr Weasley who was bouncing on the balls of his feet and throwing anxious looks over at Harry .Ah yes said Bode surveying Harry unblinkingly .Of course .Harry barely had emotion to spare for Bode but his unfaltering gaze did not make him feel any more comfortable .Department of Mysteries said the cool female voice and left it at that .Quick Harry said Mr Weasley as the lift doors rattled open and they sped up a corridor that was quite different from those above .The walls were bare there were no windows and no doors apart from a plain black one set at the very end of the corridor .Harry expected them to go through it but instead Mr Weasley seized him by the arm and dragged him to the left where there was an opening leading to a flight of steps .Down here down here panted Mr Weasley taking two steps at a time .The lift doesnt even come down this far .why theyre doing it there .They reached the bottom of the steps and ran along yet another corridor which bore a great resemblance to that which led to Snapes dungeon at Hogwarts with rough stone walls and torches in brackets .The doors they passed here were heavy wooden ones with iron bolts and keyholes .Courtroom .ten .I think .were nearly .yes .Mr Weasley stumbled to a halt outside a grimy dark door with an immense iron lock and slumped against the wall clutching at a stitch in his chest .Go on he panted pointing his thumb at the door .Get in there .Arent arent you coming with ?No no Im not allowed .Good luck !Harrys heart was beating a violent tattoo against his Adams apple .He swallowed hard turned the heavy iron door handle and stepped inside the courtroom .8 THE HEARING Harry gasped he could not help himself .The large dungeon he had entered was horribly familiar .He had not only seen it before he had been here before This was the place he had visited inside Dumbledores Pensieve the place where he had watched the Lestranges sentenced to life imprisonment in Azkaban .The walls were made of dark stone dimly lit by torches .Empty benches rose on either side of him but ahead in the highest benches of all were many shadowy figures .They had been talking in low voices but as the heavy door swung closed behind Harry an ominous silence fell .A cold male voice rang across the courtroom .Youre late .Sorry said Harry nervously .II didnt know the time had changed .That is not the Wizengamots fault said the voice .An owl was sent to you this morning .Take your seat .Harry dropped his gaze to the chair in the center of the room the arms of which were covered in chains .He had seen those chains spring to life and bind whoever sat between them .His footsteps echoed loudly as he walked across the stone floor .When he sat gingerly on the edge of the chair the chains clinked rather threateningly but did not bind him .Feeling rather sick he looked up at the people seated at the bench above .There were about fifty of them all as far as he could see wearing plumcolored robes with an elaborately worked silver W on the lefthand side of the chest and all staring down their noses at him some with very austere expressions others looks of frank curiosity .In the very middle of the front row sat Cornelius Fudge the Minister of Magic .Fudge was a portly man who often sported a limegreen bowler hat though today he had dispensed with it he had dispensed too with the indulgent smile he had once worn when he spoke to Harry .A broad squarejawed witch with very short gray hair sat on Fudges left she wore a monocle and looked forbidding .On Fudges right was another witch but she was sitting so far back on the bench that her face was in shadow .Very well said Fudge .The accused being present finally let us begin .Are you ready ?he called down the row .Yes sir said an eager voice Harry knew .Rons brother Percy was sitting at the very end of the front bench .Harry looked at Percy expecting some sign of recognition from him but none came .Percys eyes behind his hornrimmed glasses were fixed on his parchment a quill poised in his hand .Disciplinary hearing of the twelfth of August said Fudge in a ringing voice and Percy began taking notes at once into offenses committed under the Decree for the Reasonable Restriction of Underage Sorcery and the International Statute of Secrecy by Harry James Potter resident at number four Privet Drive Little Whinging Surrey .Interrogators Cornelius Oswald Fudge Minister of Magic Amelia Susan Bones Head of the Department of Magical Law Enforcement Dolores Jane Umbridge Senior Undersecretary to the Minister .Court Scribe Percy Ignatius Weasley Witness for the defense Albus Percival Wulfric Brian Dumbledore said a quiet voice from behind Harry who turned his head so fast he cricked his neck .Dumbledore was striding serenely across the room wearing long midnightblue robes and a perfectly calm expression .His long silver beard and hair gleamed in the torchlight as he drew level with Harry and looked up at Fudge through the halfmoon spectacles that rested halfway down his very crooked nose .The members of the Wizengamot were muttering .All eyes were now on Dumbledore .Some looked annoyed others slightly frightened two elderly witches in the back row however raised their hands and waved in welcome .A powerful emotion had risen in Harrys chest at the sight of Dumbledore a fortified hopeful feeling rather like that which phoenix song gave him .He wanted to catch Dumbledores eye but Dumbledore was not looking his way he was continuing to look up at the obviously flustered Fudge .Ah said Fudge who looked thoroughly disconcerted .Dumbledore .Yes .You er got our er message that the time and er place of the hearing had been changed then ?I must have missed it said Dumbledore cheerfully .However due to a lucky mistake I arrived at the Ministry three hours early so no harm done .Yes well I suppose well need another chair I Weasley could you ?Not to worry not to worry said Dumbledore pleasantly he took out his wand gave it a little flick and a squashy chintz armchair appeared out of nowhere next to Harry .Dumbledore sat down put the tips of his long fingers together and looked at Fudge over them with an expression of polite interest .The Wizengamot was still muttering and fidgeting restlessly only when Fudge spoke again did they settle down .Yes said Fudge again shuffling his notes .Well then .So .The charges .Yes .He extricated a piece of parchment from the pile before him took a deep breath and read The charges against the accused are as follows That he did knowingly deliberately and in full awareness of the illegality of his actions having received a previous written warning from the Ministry of Magic on a similar charge produce a Patronus Charm in a Muggleinhabited area in the presence of a Muggle on August the second at twentythree minutes past nine which constitutes an offense under paragraph C of the Decree for the Reasonable Restriction of Underage Sorcery 1875 and also under section thirteen of the International Confederation of Wizards Statute of Secrecy .You are Harry James Potter of number four Privet Drive Little Whinging Surrey ?Fudge said glaring at Harry over the top of his parchment .Yes Harry said .You received an official warning from the Ministry for using illegal magic three years ago did you not ?Yes but And yet you conjured a Patronus on the night of the second of August ?said Fudge .Yes said Harry but Knowing that you are not permitted to use magic outside school while you are under the age of seventeen ?Yes but Knowing that you were in an area full of Muggles ?Yes but Fully aware that you were in close proximity to a Muggle at the time ?Yes said Harry angrily but I only used it because we were The witch with the monocle on Fudges left cut across him in a booming voice .You produced a fully fledged Patronus ?Yes said Harry because A corporeal Patronus ?A what ?said Harry .Your Patronus had a clearly defined form ?I mean to say it was more than vapor or smoke ?Yes said Harry feeling both impatient and slightly desperate its a stag its always a stag .Always ?boomed Madam Bones .You have produced a Patronus before now ?Yes said Harry Ive been doing it for over a year And you are fifteen years old ?Yes and You learned this at school ?Yes Professor Lupin taught me in my third year because of the Impressive said Madam Bones staring down at him a true Patronus at that age .very impressive indeed .Some of the wizards and witches around her were muttering again a few nodded but others were frowning and shaking their heads .Its not a question of how impressive the magic was said Fudge in a testy voice .In fact the more impressive the worse it is I would have thought given that the boy did it in plain view of a Muggle !Those who had been frowning now murmured in agreement but it was the sight of Percys sanctimonious little nod that goaded Harry into speech .I did it because of the dementors !he said loudly before anyone could interrupt him again .He had expected more muttering but the silence that fell seemed to be somehow denser than before .Dementors ?said Madam Bones after a moment raising her thick eyebrows so that her monocle looked in danger of falling out .What do you mean boy ?I mean there were two dementors down that alleyway and they went for me and my cousin !Ah said Fudge again smirking unpleasantly as he looked around at the Wizengamot as though inviting them to share the joke .Yes .Yes I thought wed be hearing something like this .Dementors in Little Whinging ?Madam Bones said in tones of great surprise .I dont understand Dont you Amelia ?said Fudge still smirking .Let me explain .Hes been thinking it through and decided dementors would make a very nice little cover story very nice indeed .Muggles cant see dementors can they boy ?Highly convenient highly convenient .so its just your word and no witnesses .Im not lying !said Harry loudly over another outbreak of muttering from the court .There were two of them coming from opposite ends of the alley everything went dark and cold and my cousin felt them and ran for it Enough enough !said Fudge with a very supercilious look on his face .Im sorry to interrupt what Im sure would have been a very wellrehearsed story Dumbledore cleared his throat .The Wizengamot fell silent again .We do in fact have a witness to the presence of dementors in that alleyway he said other than Dudley Dursley I mean .Fudges plump face seemed to slacken as though somebody had let air out of it .He stared down at Dumbledore for a moment or two then with the appearance of a man pulling himself back together said We havent got time to listen to more taradiddles Im afraid Dumbledore .I want this dealt with quickly I may be wrong said Dumbledore pleasantly but I am sure that under the Wizengamot Charter of Rights the accused has the right to present witnesses for his or her case ?Isnt that the policy of the Department of Magical Law Enforcement Madam Bones ?he continued addressing the witch in the monocle .True said Madam Bones .Perfectly true .Oh very well very well snapped Fudge .Where is this person ?I brought her with me said Dumbledore .Shes just outside the door .Should I ?No Weasley you go Fudge barked at Percy who got up at once hurried down the stone steps from the judges balcony and hastened past Dumbledore and Harry without glancing at them .A moment later Percy returned followed by Mrs Figg .She looked scared and more batty than ever .Harry wished she had thought to change out of her carpet slippers .Dumbledore stood up and gave Mrs Figg his chair conjuring a second one for himself .Full name ?said Fudge loudly when Mrs Figg had perched herself nervously on the very edge of her seat .Arabella Doreen Figg said Mrs Figg in her quavery voice .And who exactly are you ?said Fudge in a bored and lofty voice .Im a resident of Little Whinging close to where Harry Potter lives said Mrs Figg .We have no record of any witch or wizard living in Little Whinging other than Harry Potter said Madam Bones at once .That situation has always been closely monitored given .given past events .Im a Squib said Mrs Figg .So you wouldnt have me registered would you ?A Squib eh ?said Fudge eyeing her suspiciously .Well be checking that .Youll leave details of your parentage with my assistant Weasley .Incidentally can Squibs see dementors ?he added looking left and right along the bench where he sat .Yes we can !said Mrs Figg indignantly .Fudge looked back down at her his eyebrows raised .Very well he said coolly .What is your story ?I had gone out to buy cat food from the corner shop at the end of Wisteria Walk shortly after nine on the evening of the second of August gabbled Mrs Figg at once as though she had learned what she was saying by heart when I heard a disturbance down the alleyway between Magnolia Crescent and Wisteria Walk .On approaching the mouth of the alleyway I saw dementors running Running ?said Madam Bones sharply .Dementors dont run they glide .Thats what I meant to say said Mrs Figg quickly patches of pink appearing in her withered cheeks .Gliding along the alley toward what looked like two boys .What did they look like ?said Madam Bones narrowing her eyes so that the monocles edges disappeared into her flesh .Well one was very large and the other one rather skinny No no said Madam Bones impatiently the dementors .describe them .Oh said Mrs Figg the pink flush creeping up her neck now .They were big .Big and wearing cloaks .Harry felt a horrible sinking in the pit of his stomach .Whatever Mrs Figg said to the contrary it sounded to him as though the most she had ever seen was a picture of a dementor and a picture could never convey the truth of what these beings were like the eerie way they moved hovering inches over the ground or the rotting smell of them or that terrible rattling noise they made as they sucked on the surrounding air .A dumpy wizard with a large black mustache in the second row leaned close to his neighbor a frizzyhaired witch and whispered something in her ear .She smirked and nodded .Big and wearing cloaks repeated Madam Bones coolly while Fudge snorted derisively .I see .Anything else ?Yes said Mrs Figg .I felt them .Everything went cold and this was a very warm summers night mark you .And I felt .as though all happiness had gone from the world .and I remembered .dreadful things .Her voice shook and died .Madam Bones eyes widened slightly .Harry could see red marks under her eyebrow where the monocle had dug into it .What did the dementors do ?she asked and Harry felt a rush of hope .They went for the boys said Mrs Figg her voice stronger and more confident now the pink flush ebbing away from her face .One of them had fallen .The other was backing away trying to repel the dementor .That was Harry .He tried twice and produced silver vapor .On the third attempt he produced a Patronus which charged down the first dementor and then with his encouragement chased away the second from his cousin .And that .that was what happened Mrs Figg finished somewhat lamely .Madam Bones looked down at Mrs Figg in silence Fudge was not looking at her at all but fidgeting with his papers .Finally he raised his eyes and said rather aggressively Thats what you saw is it ?That was what happened Mrs Figg repeated .Very well said Fudge .You may go .Mrs Figg cast a frightened look from Fudge to Dumbledore then got up and shuffled off toward the door again .Harry heard it thud shut behind her .Not a very convincing witness said Fudge loftily .Oh I dont know said Madam Bones in her booming voice .She certainly described the effects of a dementor attack very accurately .And I cant imagine why she would say they were there if they werent But dementors wandering into a Muggle suburb and just happening to come across a wizard ?snorted Fudge .The odds on that must be very very long even Bagman wouldnt have bet Oh I dont think any of us believe the dementors were there by coincidence said Dumbledore lightly .The witch sitting to the right of Fudge with her face in shadow moved slightly but everyone else was quite still and silent .And what is that supposed to mean ?asked Fudge icily .It means that I think they were ordered there said Dumbledore .I think we might have a record of it if someone had ordered a pair of dementors to go strolling through Little Whinging !barked Fudge .Not if the dementors are taking orders from someone other than the Ministry of Magic these days said Dumbledore calmly .I have already given you my views on this matter Cornelius .Yes you have said Fudge forcefully and I have no reason to believe that your views are anything other than bilge Dumbledore .The dementors remain in place in Azkaban and are doing everything we ask them to .Then said Dumbledore quietly but clearly we must ask ourselves why somebody within the Ministry ordered a pair of dementors into that alleyway on the second of August .In the complete silence that greeted these words the witch to the right of Fudge leaned forward so that Harry saw her for the first time .He thought she looked just like a large pale toad .She was rather squat with a broad flabby face as little neck as Uncle Vernon and a very wide slack mouth .Her eyes were large round and slightly bulging .Even the little black velvet bow perched on top of her short curly hair put him in mind of a large fly she was about to catch on a long sticky tongue .The Chair recognizes Dolores Jane Umbridge Senior Undersecretary to the Minister said Fudge .The witch spoke in a fluttery girlish highpitched voice that took Harry aback he had been expecting a croak .Im sure I must have misunderstood you Professor Dumbledore she said with a simper that left her big round eyes as cold as ever .So silly of me .But it sounded for a teensy moment as though you were suggesting that the Ministry of Magic had ordered an attack on this boy !She gave a silvery laugh that made the hairs on the back of Harrys neck stand up .A few other members of the Wizengamot laughed with her .It could not have been plainer that not one of them was really amused .If it is true that the dementors are taking orders only from the Ministry of Magic and it is also true that two dementors attacked Harry and his cousin a week ago then it follows logically that somebody at the Ministry might have ordered the attacks said Dumbledore politely .Of course these particular dementors may have been outside Ministry control There are no dementors outside Ministry control !snapped Fudge who had turned brick red .Dumbledore inclined his head in a little bow .Then undoubtedly the Ministry will be making a full inquiry into why two dementors were so very far from Azkaban and why they attacked without authorization .It is not for you to decide what the Ministry of Magic does or does not do Dumbledore !snapped Fudge now a shade of magenta of which Uncle Vernon would have been proud .Of course it isnt said Dumbledore mildly .I was merely expressing my confidence that this matter will not go uninvestigated .He glanced at Madam Bones who readjusted her monocle and stared back at him frowning slightly .I would remind everybody that the behavior of these dementors if indeed they are not figments of this boys imagination is not the subject of this hearing !said Fudge .We are here to examine Harry Potters offenses under the Decree for the Reasonable Restriction of Underage Sorcery !Of course we are said Dumbledore but the presence of dementors in that alleyway is highly relevant .Clause seven of the Decree states that magic may be used before Muggles in exceptional circumstances and as those exceptional circumstances include situations that threaten the life of the wizard or witch himself or witches wizards or Muggles present at the time of the We are familiar with clause seven thank you very much !snarled Fudge .Of course you are said Dumbledore courteously .Then we are in agreement that Harrys use of the Patronus Charm in these circumstances falls precisely into the category of exceptional circumstances it describes ?If there were dementors which I doubt You have heard from an eyewitness Dumbledore interrupted .If you still doubt her truthfulness call her back question her again .I am sure she would not object .I that not blustered Fudge fiddling with the papers before him .Its I want this over with today Dumbledore !But naturally you would not care how many times you heard from a witness if the alternative was a serious miscarriage of justice said Dumbledore .Serious miscarriage my hat !said Fudge at the top of his voice .Have you ever bothered to tot up the number of cockandbull stories this boy has come out with Dumbledore while trying to cover up his flagrant misuse of magic out of school ?I suppose youve forgotten the Hover Charm he used three years ago That wasnt me it was a houseelf !said Harry .YOU SEE ?roared Fudge gesturing flamboyantly in Harrys direction .A houseelf !In a Muggle house !I ask you The houseelf in question is currently in the employ of Hogwarts School said Dumbledore .I can summon him here in an instant to give evidence if you wish .I not I havent got time to listen to houseelves !Anyway thats not the only he blew up his aunt for Gods sake !Fudge shouted banging his fist on the judges bench and upsetting a bottle of ink .And you very kindly did not press charges on that occasion accepting I presume that even the best wizards cannot always control their emotions said Dumbledore calmly as Fudge attempted to scrub the ink off his notes .And I havent even started on what he gets up to at school but as the Ministry has no authority to punish Hogwarts students for misdemeanors at school Harrys behavior there is not relevant to this inquiry said Dumbledore politely as ever but now with a suggestion of coolness behind his words .Oho !said Fudge .Not our business what he does at school eh ?You think so ?The Ministry does not have the power to expel Hogwarts students Cornelius as I reminded you on the night of the second of August said Dumbledore .Nor does it have the right to confiscate wands until charges have been successfully proven again as I reminded you on the night of the second of August .In your admirable haste to ensure that the law is upheld you appear inadvertently I am sure to have overlooked a few laws yourself .Laws can be changed said Fudge savagely .Of course they can said Dumbledore inclining his head .And you certainly seem to be making many changes Cornelius .Why in the few short weeks since I was asked to leave the Wizengamot it has already become the practice to hold a full criminal trial to deal with a simple matter of underage magic !A few of the wizards above them shifted uncomfortably in their seats .Fudge turned a slightly deeper shade of puce .The toadlike witch on his right however merely gazed at Dumbledore her face quite expressionless .As far as I am aware however Dumbledore continued there is no law yet in place that says this courts job is to punish Harry for every bit of magic he has ever performed .He has been charged with a specific offense and he has presented his defense .All he and I can do now is to await your verdict .Dumbledore put his fingertips together again and said no more .Fudge glared at him evidently incensed .Harry glanced sideways at Dumbledore seeking reassurance he was not at all sure that Dumbledore was right in telling the Wizengamot in effect that it was about time they made a decision .Again however Dumbledore seemed oblivious to Harrys attempt to catch his eye .He continued to look up at the benches where the entire Wizengamot had fallen into urgent whispered conversations .Harry looked at his feet .His heart which seemed to have swollen to an unnatural size was thumping loudly under his ribs .He had expected the hearing to last longer than this .He was not at all sure that he had made a good impression .He had not really said very much .He ought to have explained more fully about the dementors about how he had fallen over about how both he and Dudley had nearly been kissed .Twice he looked up at Fudge and opened his mouth to speak but his swollen heart was now constricting his air passages and both times he merely took a deep breath and looked back at his shoes .Then the whispering stopped .Harry wanted to look up at the judges but found that it was really much much easier to keep examining his laces .Those in favor of clearing the accused of all charges ?said Madam Bones s booming voice .Harrys head jerked upward .There were hands in the air many of them .more than half !Breathing very fast he tried to count but before he could finish Madam Bones had said And those in favor of conviction ?Fudge raised his hand so did half a dozen others including the witch on his right and the heavily mustached wizard and the frizzyhaired witch in the second row .Fudge glanced around at them all looking as though there was something large stuck in his throat then lowered his own hand .He took two deep breaths and then said in a voice distorted by suppressed rage Very well very well .cleared of all charges .Excellent said Dumbledore briskly springing to his feet pulling out his wand and causing the two chintz armchairs to vanish .Well I must be getting along .Good day to you all .And without looking once at Harry he swept from the dungeon .THE WOES OF MRS WEASLEY Dumbledores abrupt departure took Harry completely by surprise .He remained sitting where he was in the chained chair struggling with his feelings of shock and relief .The Wizengamot were all getting to their feet talking and gathering up their papers and packing them away .Harry stood up .Nobody seemed to be paying him the slightest bit of attention except the toadlike witch on Fudges right who was now gazing down at him instead of at Dumbledore .Ignoring her he tried to catch Fudges eye or Madam Boness wanting to ask whether he was free to go but Fudge seemed quite determined not to notice Harry and Madam Bones was busy with her briefcase so he took a few tentative steps toward the exit and when nobody called him back broke into a very fast walk .He took the last few steps at a run wrenched open the door and almost collided with Mr Weasley who was standing right outside looking pale and apprehensive .Dumbledore didnt say Cleared Harry said pulling the door closed behind him of all charges !Beaming Mr Weasley seized Harry by the shoulders .Harry thats wonderful !Well of course they couldnt have found you guilty not on the evidence but even so I cant pretend I wasnt But Mr Weasley broke off because the courtroom door had just opened again .The Wizengamot were filing out .Merlins beard said Mr Weasley wonderingly pulling Harry aside to let them all pass you were tried by the full court ?I think so said Harry quietly .One or two of the passing wizards nodded to Harry as they passed and a few including Madam Bones said Morning Arthur to Mr Weasley but most averted their eyes .Cornelius Fudge and the toadlike witch were almost the last to leave the dungeon .Fudge acted as though Mr Weasley and Harry were part of the wall but again the witch looked almost appraisingly at Harry as she passed .Last of all to pass was Percy .Like Fudge he completely ignored his father and Harry he marched past clutching a large roll of parchment and a handful of spare quills his back rigid and his nose in the air .The lines around Mr Weasleys mouth tightened slightly but other than this he gave no sign that he had noticed his third son .Im going to take you straight back so you can tell the others the good news he said beckoning Harry forward as Percys heels disappeared up the stairs to the ninth level .Ill drop you off on the way to that toilet in Bethnal Green .Come on .So what will you have to do about the toilet ?Harry asked grinning .Everything suddenly seemed five times funnier than usual .It was starting to sink in He was cleared he was going hack to Hogwarts .Oh its a simple enough antijinx said Mr Weasley as they mounted the stairs but its not so much having to repair the damage its more the attitude behind the vandalism Harry .Mugglebaiting might strike some wizards as funny but its an expression of something much deeper and nastier and I for one Mr Weasley broke off in midsentence .They had just reached the ninthlevel corridor and Cornelius Fudge was standing a few feet away from them talking quietly to a tall man with sleek blond hair and a pointed pale face .The second man turned at the sound of their footsteps .He too broke off in midconversation his cold gray eyes narrowed and fixed upon Harrys face .Well well well .Patronus Potter said Lucius Malfoy coolly .Harry felt winded as though he had just walked into something heavy .He had last seen those cool gray eyes through slits in a Death Eaters hood and last heard that mans voice jeering in a dark graveyard while Lord Voldemort tortured him .He could not believe that Lucius Malfoy dared look him in the face he could not believe that he was here in the Ministry of Magic or that Cornelius Fudge was talking to him when Harry had told Fudge mere weeks ago that Malfoy was a Death Eater .The Minister was just telling me about your lucky escape Potter drawled Mr Malfoy .Quite astonishing the way you continue to wriggle out of very tight holes .Snakelike in fact .Mr Weasley gripped Harrys shoulder in warning .Yeah said Harry yeah Im good at escaping .Lucius Malfoy raised his eyes to Mr Weasleys face .And Arthur Weasley too !What are you doing here Arthur ?I work here said Mr Weasley shortly .Not here surely ?said Mr Malfoy raising his eyebrows and glancing toward the door over Mr Weasleys shoulder .I thought you were up on the second floor .Dont you do something that involves sneaking Muggle artifacts home and bewitching them ?No said Mr Weasley curtly his fingers now biting into Harrys shoulder .What are you doing here anyway ?Harry asked Lucius Malfoy .I dont think private matters between myself and the Minister are any concern of yours Potter said Malfoy smoothing the front of his robes Harry distinctly heard the gentle clinking of what sounded like a full pocket of gold .Really just because you are Dumbledores favorite boy you must not expect the same indulgence from the rest of us .Shall we go up to your office then Minister ?Certainly said Fudge turning his back on Harry and Mr Weasley .This way Lucius .They strode off together talking in low voices .Mr Weasley did not let go of Harrys shoulder until they had disappeared into the lift .Why wasnt he waiting outside Fudges office if theyve got business to do together ?Harry burst out furiously .What was he doing down here ?Trying to sneak down to the courtroom if you ask me said Mr Weasley looking extremely agitated as he glanced over his shoulder as though making sure they could not be overheard .Trying to find out whether youd been expelled or not .Ill leave a note for Dumbledore when I drop you off he ought to know Malfoys been talking to Fudge again .What private business have they got together anyway ?Gold I expect said Mr Weasley angrily .Malfoys been giving generously to all sorts of things for years .Gets him in with the right people .then he can ask favors .delay laws he doesnt want passed .Oh hes very well connected Lucius Malfoy .The lift arrived it was empty except for a flock of memos that flapped around Mr Weasleys head as he pressed the button for the Atrium and the doors clanged shut he waved them away irritably .Mr Weasley said Harry slowly if Fudge is meeting Death Eaters like Malfoy if hes seeing them alone how do we know they havent put the Imperius Curse on him ?Dont think it hadnt occurred to us Harry muttered Mr Weasley .But Dumbledore thinks Fudge is acting of his own accord at the moment which as Dumbledore says is not a lot of comfort .Best not talk about it anymore just now Harry .The doors slid open and they stepped out into the now almostdeserted Atrium .Eric the security man was hidden behind his Daily Prophet again .They had walked straight past the golden fountain before Harry remembered .Wait .he told Mr Weasley and pulling his money bag from his pocket he turned back to the fountain .He looked up into the handsome wizards face but up close Harry thought he looked rather weak and foolish .The witch was wearing a vapid smile like a beauty contestant and from what Harry knew of goblins and centaurs they were most unlikely to be caught staring this soppily at humans of any description .Only the houseelfs attitude of creeping servility looked convincing .With a grin at the thought of what Hermione would say if she could see the statue of the elf Harry turned his money bag upside down and emptied not just ten Galleons but the whole contents into the pool at the statues feet .I knew it !yelled Ron punching the air .You always get away with stuff !They were bound to clear you said Hermione who had looked positively faint with anxiety when Harry had entered the kitchen and was now holding a shaking hand over her eyes .There was no case against you none at all .Everyone seems quite relieved though considering they all knew Id get off said Harry smiling .Mrs Weasley was wiping her face on her apron and Fred George and Ginny were doing a kind of war dance to a chant that went He got off he got off he got off Thats enough settle down !shouted Mr Weasley though he too was smiling .Listen Sirius Lucius Malfoy was at the Ministry What ?said Sirius sharply .He got off he got off he got off Be quiet you three !Yes we saw him talking to Fudge on level nine then they went up to Fudges office together .Dumbledore ought to know .Absolutely said Sirius .Well tell him dont worry .Well Id better get going theres a vomiting toilet in Bethnal Green waiting for me .Molly Ill be late Im covering for Tonks but Kingsley might be dropping in for dinner He got off he got off he got off Thats enough Fred George Ginny !said Mrs Weasley as Mr Weasley left the kitchen .Harry dear come and sit down have some lunch you hardly ate breakfast .Ron and Hermione sat themselves down opposite him looking happier than they had done since he had first arrived at number twelve Grimmauld Place and Harrys feeling of giddy relief which had been somewhat dented by his encounter with Lucius Malfoy swelled again .The gloomy house seemed warmer and more welcoming all of a sudden even Kreacher looked less ugly as he poked his snoutlike nose into the kitchen to investigate the source of all the noise .Course once Dumbledore turned up on your side there was no way they were going to convict you said Ron happily now dishing great mounds of mashed potatoes onto everyones plates .Yeah he swung it for me said Harry .He felt that it would sound highly ungrateful not to mention childish to say I wish hed talked to me though .Or even looked at me .And as he thought this the scar on his forehead burned so badly that he clapped his hand to it .Whats up ?said Hermione looking alarmed .Scar Harry mumbled .But its nothing .It happens all the time now .None of the others had noticed a thing all of them were now helping themselves to food while gloating over Harrys narrow escape Fred George and Ginny were still singing .Hermione looked rather anxious but before she could say anything Ron said happily I bet Dumbledore turns up this evening to celebrate with us you know .I dont think hell be able to Ron said Mrs Weasley setting a huge plate of roast chicken down in front of Harry .Hes really very busy at the moment .HE GOT OFF HE GOT OFF HE GOT OFF SHUT UP !roared Mrs Weasley .Over the next few days Harry could not help noticing that there was one person within number twelve Grimmauld Place who did not seem wholly overjoyed that he would be returning to Hogwarts .Sirius had put up a very good show of happiness on first hearing the news wringing Harrys hand and beaming just like the rest of them soon however he was moodier and surlier than before talking less to everybody even Harry and spending increasing amounts of time shut up in his mothers room with Buckbeak .Dont you go feeling guilty !said Hermione sternly after Harry had confided some of his feelings to her and Ron while they scrubbed out a moldy cupboard on the third floor a few days later .You belong at Hogwarts and Sirius knows it .Personally I think hes being selfish .Thats a bit harsh Hermione said Ron frowning as he attempted to prize off a bit of mold that had attached itself firmly to his finger you wouldnt want to be stuck inside this house without company .Hell have company !said Hermione .Its headquarters to the Order of the Phoenix isnt it ?He just got his hopes up that Harry would be coming to live here with him .I dont think thats true said Harry wringing out his cloth .He wouldnt give me a straight answer when I asked him if I could .He just didnt want to get his own hopes up even more said Hermione wisely .And he probably felt a bit guilty himself because I think a part of him was really hoping youd be expelled .Then youd both be outcasts together .Come off it !said Harry and Ron together but Hermione merely shrugged .Suit yourselves .But I sometimes think Rons mums right and Sirius gets confused about whether youre you or your father Harry .So you think hes touched in the head ?said Harry heatedly .No I just think hes been very lonely for a long time said Hermione simply .At this point Mrs Weasley entered the bedroom behind them .Still not finished ?she said poking her head into the cupboard .I thought you might be here to tell us to have a break !said Ron bitterly .Dyou know how much mold weve got rid of since we arrived here ?You were so keen to help the Order said Mrs Weasley you can do your bit by making headquarters fit to live in .I feel like a houseelf grumbled Ron .Well now that you understand what dreadful lives they lead perhaps youll be a bit more active in S .P .E .W .said Hermione hopefully as Mrs Weasley left them to it again .You know maybe it wouldnt be a bad idea to show people exactly how horrible it is to clean all the time we could do a sponsored scrub of Gryffindor common room all proceeds to S .P .E .W .it would raise awareness as well as funds Ill sponsor you to shut up about spew Ron muttered irritably but only so Harry could hear him .Harry found himself daydreaming about Hogwarts more and more as the end of the holidays approached he could not wait to see Hagrid again to play Quidditch even to stroll across the vegetable patches to the Herbology greenhouses .It would be a treat just to leave this dusty musty house where half of the cupboards were still bolted shut and Kreacher wheezed insults out of the shadows as you passed though Harry was careful not to say any of this within earshot of Sirius .The fact was that living at the headquarters of the antiVoldemort movement was not nearly as interesting or exciting as Harry would have expected before hed experienced it .Though members of the Order of the Phoenix came and went regularly sometimes staying for meals sometimes only for a few minutes whispered conversation Mrs Weasley made sure that Harry and the others were kept well out of earshot whether Extendable or normal and nobody not even Sirius seemed to feel that Harry needed to know anything more than he had heard on the night of his arrival .On the very last day of the holidays Harry was sweeping up Hedwigs owl droppings from the top of the wardrobe when Ron entered their bedroom carrying a couple of envelopes .Booklists have arrived he said throwing one of the envelopes up to Harry who was standing on a chair .About time I thought theyd forgotten they usually come much earlier than this .Harry swept the last of the droppings into a rubbish bag and threw the bag over Rons head into the wastepaper basket in the corner which swallowed it and belched loudly .He then opened his letter It contained two pieces of parchment one the usual reminder that term started on the first of September the other telling him which books he would need for the coming year .Only two new ones he said reading the list .The Standard Book of Spells Grade 5 by Miranda Goshawk and Defensive Magical Theory by Wilbert Slinkhard .Crack .Fred and George Apparated right beside Harry .He was so used to them doing this by now that he didnt even fall off his chair .We were just wondering who assigned the Slinkhard book said Fred conversationally .Because it means Dumbledores found a new Defense Against the Dark Arts teacher said George .And about time too said Fred .What dyou mean ?Harry asked jumping down beside them .Well we overheard Mum and Dad talking on the Extendable Ears a few weeks back Fred told Harry and from what they were saying Dumbledore was having real trouble finding anyone to do the job this year .Not surprising is it when you look at whats happened to the last four ?said George .One sacked one dead ones memory removed and one locked in a trunk for nine months said Harry counting them off on his fingers .Yeah I see what you mean .Whats up with you Ron ?asked Fred .Ron did not answer .Harry looked around .Ron was standing very still with his mouth slightly open gaping at his letter from Hogwarts .Whats the matter ?said Fred impatiently moving around Ron to look over his shoulder at the parchment .Freds mouth fell open too .Prefect ?he said staring incredulously at the letter .Prefect ?George leapt forward seized the envelope in Rons other hand and turned it upside down .Harry saw something scarlet and gold fall into Georges palm .No way said George in a hushed voice .Theres been a mistake said Fred snatching the letter out of Rons grasp and holding it up to the light as though checking for a watermark .No one in their right mind would make Ron a prefect .The twins heads turned in unison and both of them stared at Harry .We thought you were a cert !said Fred in a tone that suggested Harry had tricked them in some way .We thought Dumbledore was bound to pick you !said George indignantly .Winning the Triwizard and everything !said Fred .I suppose all the mad stuff mustve counted against him said George to Fred .Yeah said Fred slowly .Yeah youve caused too much trouble mate .Well at least one of yous got their priorities right .He strode over to Harry and clapped him on the back while giving Ron a scathing look .Prefect .ickle Ronnie the prefect .Oh Mums going to be revolting groaned George thrusting the prefect badge back at Ron as though it might contaminate him .Ron who still had not said a word took the badge stared at it for a moment and then held it out to Harry as though asking mutely for confirmation that it was genuine .Harry took it .A large P was superimposed on the Gryffindor lion .He had seen a badge just like this on Percys chest on his very first day at Hogwarts .The door banged open .Hermione came tearing into the room her cheeks flushed and her hair flying .There was an envelope in her hand .Did you did you get ?She spotted the badge in Harrys hand and let out a shriek .I knew it !she said excitedly brandishing her letter .Me too Harry me too !No said Harry quickly pushing the badge back into Rons hand .Its Ron not me .It what ?Rons prefect not me Harry said .Ron ?said Hermione her jaw dropping .But .are you sure ?I mean She turned red as Ron looked around at her with a defiant expression on his face .Its my name on the letter he said .I .said Hermione looking thoroughly bewildered .I .well .wow !Well done Ron !Thats really Unexpected said George nodding .No said Hermione blushing harder than ever no its not .Rons done loads of .hes really .The door behind her opened a little wider and Mrs Weasley backed into the room carrying a pile of freshly laundered robes .Ginny said the booklists had come at last she said glancing around at all the envelopes as she made her way over to the bed and started sorting the robes into two piles .If you give them to me Ill take them over to Diagon Alley this afternoon and get your books while youre packing .Ron Ill have to get you more pajamas these are at least six inches too short I cant believe how fast youre growing .what color would you like ?Get him red and gold to match his badge said George smirking .Match his what ?said Mrs Weasley absently rolling up a pair of maroon socks and placing them on Rons pile .His badge said Fred with the air of getting the worst over quickly .His lovely shiny new prefects badge .Freds words took a moment to penetrate Mrs Weasleys preoccupation about pajamas .His .but .Ron youre not . ?Ron held up his badge .Mrs Weasley let out a shriek just like Hermiones .I dont believe it !I dont believe it !Oh Ron how wonderful !A prefect !Thats everyone in the family !What are Fred and I nextdoor neighbors ?said George indignantly as his mother pushed him aside and flung her arms around her youngest son .Wait until your father hears !Ron Im so proud of you what wonderful news you could end up Head Boy just like Bill and Percy its the first step !Oh what a thing to happen in the middle of all this worry Im just thrilled oh Ronnie Fred and George were both making loud retching noises behind her back but Mrs Weasley did not notice arms tight around Rons neck she was kissing him all over his face which had turned a brighter scarlet than his badge .Mum .dont .Mum get a grip .he muttered trying to push her away .She let go of him and said breathlessly Well what will it be ?We gave Percy an owl but youve already got one of course .Wwhat do you mean ?said Ron looking as though he did not dare believe his ears .Youve got to have a reward for this !said Mrs Weasley fondly .How about a nice new set of dress robes ?Weve already bought him some said Fred sourly who looked as though he sincerely regretted this generosity .Or a new cauldron Charlies old ones rusting through or a new rat you always liked Scabbers Mum said Ron hopefully can I have a new broom ?Mrs Weasleys face fell slightly broomsticks were expensive .Not a really good one !Ron hastened to add .Just just a new one for a change .Mrs Weasley hesitated then smiled .Of course you can .Well Id better get going if Ive got a broom to buy too .Ill see you all later .Little Ronnie a prefect !And dont forget to pack your trunks .A prefect .Oh Im all of a dither !She gave Ron yet another kiss on the cheek sniffed loudly and bustled from the room .Fred and George exchanged looks .You dont mind if we dont kiss you do you Ron ?said Fred in a falsely anxious voice .We could curtsy if you like said George .Oh shut up said Ron scowling at them .Or what ?said Fred an evil grin spreading across his face .Going to put us in detention ?Id love to see him try sniggered George .He could if you dont watch out !said Hermione angrily at which Fred and George burst out laughing and Ron muttered Drop it Hermione .Were going to have to watch our step George said Fred pretending to tremble with these two on our case .Yeah it looks like our lawbreaking days are finally over said George shaking his head .And with another loud crack the twins Disapparated .Those two !said Hermione furiously staring up at the ceiling through which they could now hear Fred and George roaring with laughter in the room upstairs .Dont pay any attention to them Ron theyre only jealous !I dont think they are said Ron doubtfully also looking up at the ceiling .Theyve always said only prats become prefects .Still he added on a happier note theyve never had new brooms !I wish I could go with Mum and choose .Shell never be able to afford a Nimbus but theres the new Cleansweep out thatd be great .Yeah I think Ill go and tell her I like the Cleansweep just so she knows .He dashed from the room leaving Harry and Hermione alone .For some reason Harry found that he did not want to look at Hermione .He turned to his bed picked up the pile of clean robes Mrs Weasley had laid upon it and crossed the room to his trunk .Harry ?said Hermione tentatively .Well done said Harry so heartily it did not sound like his voice at all and still not looking at her .Brilliant .Prefect .Great .Thanks said Hermione .Erm Harry could I borrow Hedwig so I can tell Mum and Dad ?Theyll be really pleased I mean prefect is something they can understand Yeah no problem said Harry still in the horrible hearty voice that did not belong to him .Take her !He leaned over his trunk laid the robes on the bottom of it and pretended to be rummaging for something while Hermione crossed to the wardrobe and called Hedwig down .A few moments passed Harry heard the door close but remained bent double listening the only sounds he could hear were the blank picture on the wall sniggering again and the wastepaper basket in the corner coughing up the owl droppings .He straightened up and looked behind him .Hermione and Hedwig had gone .Harry returned slowly to his bed and sank onto it gazing unseeingly at the foot of the wardrobe .He had forgotten completely about prefects being chosen in the fifth year .He had been too anxious about the possibility of being expelled to spare a thought for the fact that badges must be winging their way toward certain people .But if he had remembered .if he had thought about it .what would he have expected ?Not this said a small and truthful voice inside his head .Harry screwed up his face and buried it in his hands .He could not lie to himself if he had known the prefect badge was on its way he would have expected it to come to him not Ron .Did this make him as arrogant as Draco Malfoy ?Did he think himself superior to everyone else ?Did he really believe he was better than Ron ?No said the small voice defiantly .Was that true ?Harry wondered anxiously probing his own feelings .Im better at Quidditch said the voice .But Im not better at anything else .That was definitely true Harry thought he was no better than Ron in lessons .But what about outside lessons ?What about those adventures he Ron and Hermione had had together since they had started at Hogwarts often risking much worse than expulsion ?Well Ron and Hermione were with me most of the time said the voice in Harrys head .Not all the time though Harry argued with himself .They didnt fight Quirrell with me .They didnt take on Riddle and the basilisk .They didnt get rid of all those dementors the night Sirius escaped .They werent in that graveyard with me the night Voldemort returned .And the same feeling of ill usage that had overwhelmed him on the night he had arrived rose again .Ive definitely done more Harry thought indignantly .Ive done more than either of them But maybe said the small voice fairly maybe Dumbledore doesnt choose prefects because theyve got themselves into a load of dangerous situations .Maybe he chooses them for other reasons .Ron must have something you dont .Harry opened his eyes and stared through his fingers at the wardrobes clawed feet remembering what Fred had said .No one in their right mind would make Ron a prefect .Harry gave a small snort of laughter .A second later he felt sickened with himself .Ron had not asked Dumbledore to give him the prefect badge .This was not Rons fault .Was he Harry Rons best friend in the world going to sulk because he didnt have a badge laugh with the twins behind Rons back ruin this for Ron when for the first time he had beaten Harry at something ?At this point Harry heard Rons footsteps on the stairs again .He stood up straightened his glasses and hitched a grin onto his face as Ron bounded back through the door .Just caught her !he said happily .She says shell get the Cleansweep if she can .Cool Harry said and he was relieved to hear that his voice had stopped sounding hearty .Listen Ron well done mate .The smile faded off Rons face .I never thought it would be me !he said shaking his head I thought it would be you !Nah Ive caused too much trouble Harry said echoing Fred .Yeah said Ron yeah I suppose .Well wed better get our trunks packed hadnt we ?It was odd how widely their possessions seemed to have scattered themselves since they had arrived .It took them most of the afternoon to retrieve their books and belongings from all over the house and stow them back inside their school trunks .Harry noticed that Ron kept moving his prefects badge around first placing it on his bedside table then putting it into his jeans pocket then taking it out and laying it on his folded robes as though to see the effect of the red on the black .Only when Fred and George dropped in and offered to attach it to his forehead with a Permanent Sticking Charm did he wrap it tenderly in his maroon socks and lock it in his trunk .Mrs Weasley returned from Diagon Alley around six oclock laden with books and carrying a long package wrapped in thick brown paper that Ron took from her with a moan of longing .Never mind unwrapping it now people are arriving for dinner I want you all downstairs she said but the moment she was out of sight Ron ripped off the paper in a frenzy and examined every inch of his new broom an ecstatic expression on his face .Down in the basement Mrs Weasley had hung a scarlet banner over the heavily laden dinner table which read CONGRATULATIONS RON AND HERMIONE NEW PREFECTS .She looked in a better mood than Harry had seen her all holiday .I thought wed have a little party not a sitdown dinner she told Harry Ron Hermione Fred George and Ginny as they entered the room .Your father and Bill are on their way Ron Ive sent them both owls and theyre thrilled she added beaming .Fred rolled his eyes .Sirius Lupin Tonks and Kingsley Shacklebolt were already there and MadEye Moody stumped in shortly after Harry had got himself a butterbeer .Oh Alastor I am glad youre here said Mrs Weasley brightly as MadEye shrugged off his traveling cloak .Weve been wanting to ask you for ages could you have a look in the writing desk in the drawing room and tell us whats inside it ?We havent wanted to open it just in case its something really nasty .No problem Molly .Moodys electricblue eye swiveled upward and stared fixedly through the ceiling of the kitchen .Drawing room .he growled as the pupil contracted .Desk in the corner ?Yeah I see it .Yeah its a boggart .Want me to go up and get rid of it Molly ?No no Ill do it myself later beamed Mrs Weasley .You have your drink .Were having a little bit of a celebration actually .She gestured at the scarlet banner .Fourth prefect in the family !she said fondly ruffling Rons hair .Prefect eh ?growled Moody his normal eye on Ron and his magical eye swiveling around to gaze into the side of his head .Harry had the very uncomfortable feeling it was looking at him and moved away toward Sirius and Lupin .Well congratulations said Moody still glaring at Ron with his normal eye authority figures always attract trouble but I suppose Dumbledore thinks you can withstand most major jinxes or he wouldnt have appointed you .Ron looked rather startled at this view of the matter but was saved the trouble of responding by the arrival of his father and eldest brother .Mrs Weasley was in such a good mood she did not even complain that they had brought Mundungus with them too he was wearing a long overcoat that seemed oddly lumpy in unlikely places and declined the offer to remove it and put it with Moodys traveling cloak .Well I think a toast is in order said Mr Weasley when everyone had a drink .He raised his goblet .To Ron and Hermione the new Gryffindor prefects !Ron and Hermione beamed as everyone drank to them and then applauded .I was never a prefect myself said Tonks brightly from behind Harry as everybody moved toward the table to help themselves to food .Her hair was tomato red and waist length today she looked like Ginnys older sister .My Head of House said I lacked certain necessary qualities .Like what ?said Ginny who was choosing a baked potato .Like the ability to behave myself said Tonks .Ginny laughed Hermione looked as though she did not know whether to smile or not and compromised by taking an extra large gulp of butterbeer and choking on it .What about you Sirius ?Ginny asked thumping Hermione on the back .Sirius who was right beside Harry let out his usual barklike laugh .No one would have made me a prefect I spent too much time in detention with James .Lupin was the good boy he got the badge .I think Dumbledore might have hoped that I would be able to exercise some control over my best friends said Lupin .I need scarcely say that I failed dismally .Harrys mood suddenly lifted .His father had not been a prefect either .All at once the party seemed much more enjoyable he loaded up his plate feeling unusually fond of everyone in the room .Ron was rhapsodizing about his new broom to anybody who would listen . .naught to seventy in ten seconds not bad is it ?When you think the Comet Two Ninetys only naught to sixty and thats with a decent tailwind according to Which Broomstick ?Hermione was talking very earnestly to Lupin about her view of elf rights .I mean its the same kind of nonsense as werewolf segregation isnt it ?It all stems from this horrible thing wizards have of thinking theyre superior to other creatures .Mrs Weasley and Bill were having their usual argument about Bills hair . .getting really out of hand and youre so good looking it would look much better shorter wouldnt it Harry ?Oh I dunno said Harry slightly alarmed at being asked his opinion he slid away from them in the direction of Fred and George who were huddled in a corner with Mundungus .Mundungus stopped talking when he saw Harry but Fred winked and beckoned Harry closer .Its okay he told Mundungus we can trust Harry hes our financial backer .Look what Dungs gotten us said George holding out his hand to Harry .It was full of what looked like shriveled black pods .A faint rattling noise was coming from them even though they were completely stationary .Venomous Tentacula seeds said George .We need them for the Skiving Snackboxes but theyre a Class C NonTradeable Substance so weve been having a bit of trouble getting hold of them .Ten Galleons the lot then Dung ?said Fred .Wiv all the trouble I went to to get em ?said Mundungus his saggy bloodshot eyes stretching even wider .Im sorry lads but Im not taking a Knut under twenty .Dung likes his little joke Fred said to Harry .Yeah his best one so far has been six Sickles for a bag of knarl quills said George .Be careful Harry warned them quietly .What ?said Fred .Mums busy cooing over Prefect Ron were okay .But Moody could have his eye on you Harry pointed out .Mundungus looked nervously over his shoulder .Good point that he grunted .All right lads ten it is if youll take em quick .Cheers Harry !said Fred delightedly when Mundungus had emptied his pockets into the twins outstretched hands and scuttled off toward the food .Wed better get these upstairs .Harry watched them go feeling slightly uneasy .It had just occurred to him that Mr and Mrs Weasley would want to know how Fred and George were financing their joke shop business when as was inevitable they finally found out about it .Giving the twins his Triwizard winnings had seemed a simple thing to do at the time but what if it led to another family row and a Percylike estrangement ?Would Mrs Weasley still feel that Harry was as good as her son if she found out he had made it possible for Fred and George to start a career she thought quite unsuitable ?Standing where the twins had left him with nothing but a guilty weight in the pit of his stomach for company Harry caught the sound of his own name .Kingsley Shacklebolts deep voice was audible even over the surrounding chatter ..why Dumbledore didnt make Potter a prefect ?said Kingsley .Hell have had his reasons replied Lupin .But it wouldve shown confidence in him .Its what Idve done persisted Kingsley specially with the Daily Prophet having a go at him every few days .Harry did not look around he did not want Lupin or Kingsley to know he had heard .He followed Mundungus back toward the table though not remotely hungry .His pleasure in the party had evaporated as quickly as it had come he wished he were upstairs in bed .MadEye Moody was sniffing at a chicken leg with what remained of his nose evidently he could not detect any trace of poison because he then tore a strip off it with his teeth . .the handles made of Spanish oak with antijinx varnish and inbuilt vibration control Ron was saying to Tonks .Mrs Weasley yawned widely .Well I think Ill sort out that boggart before I turn in .Arthur I dont want this lot up too late all right ?Night Harry dear .She left the kitchen .Harry set down his plate and wondered whether he could follow her without attracting attention .You all right Potter ?grunted Moody .Yeah fine lied Harry .Moody took a swig from his hip flask his electric blue eye staring sideways at Harry .Come here Ive got something that might interest you he said .From an inner pocket of his robes Moody pulled a very tattered old Wizarding photograph .Original Order of the Phoenix growled Moody .Found it last night when I was looking for my spare Invisibility Cloak seeing as Podmore hasnt had the manners to return my best one .Thought people might like to see it .Harry took the photograph .A small crowd of people some waving at him others lifting their glasses looked back up at him .Theres me said Moody unnecessarily pointing at himself .The Moody in the picture was unmistakable though his hair was slightly less gray and his nose was intact .And theres Dumbledore beside me Dedalus Diggle on the other side .Thats Marlene McKinnon she was killed two weeks after this was taken they got her whole family .Thats Frank and Alice Longbottom Harrys stomach already uncomfortable clenched as he looked at Alice Longbottom he knew her round friendly face very well even though he had never met her because she was the image of her son Neville .Poor devils growled Moody .Better dead than what happened to them .and thats Emmeline Vance youve met her and that theres Lupin obviously .Benjy Fenwick he copped it too we only ever found bits of him .shift aside there he added poking the picture and the little photographic people edged sideways so that those who were partially obscured could move to the front .Thats Edgar Bones .brother of Amelia Bones they got him and his family too he was a great wizard .Sturgis Podmore blimey he looks young .Caradoc Dearborn vanished six months after this we never found his body .Hagrid of course looks exactly the same as ever .Elphias Doge youve met him Id forgotten he used to wear that stupid hat .Gideon Prewett it took five Death Eaters to kill him and his brother Fabian they fought like heroes .budge along budge along .The little people in the photograph jostled among themselves and those hidden right at the back appeared at the forefront of the picture .Thats Dumbledores brother Aberforth only time I ever met him strange bloke .Thats Dorcas Meadowes Voldemort killed her personally .Sirius when he still had short hair .and .there you go thought that would interest you !Harrys heart turned over .His mother and father were beaming up at him sitting on either side of a small wateryeyed man Harry recognized at once as Wormtail He was the one who had betrayed their whereabouts to Voldemort and so helped bring about their deaths .Eh ?said Moody .Harry looked up into Moodys heavily scarred and pitted face .Evidently Moody was under the impression he had just given Harry a bit of a treat .Yeah said Harry attempting to grin again .Er .listen Ive just remembered I havent packed my .He was spared the trouble of inventing an object he had not packed Sirius had just said Whats that youve got there MadEye ?and Moody had turned toward him .Harry crossed the kitchen slipped through the door and up the stairs before anyone could call him back .He did not know why he had received such a shock he had seen his parents pictures before after all and he had met Wormtail .but to have them sprung on him like that when he was least expecting it .No one would like that he thought angrily .And then to see them surrounded by all those other happy faces .Benjy Fenwick who had been found in bits and Gideon Prewett who had died like a hero and the Longbottoms who had been tortured into madness .all waving happily out of the photograph forevermore not knowing that they were doomed .Well Moody might find that interesting .he Harry found it disturbing .Harry tiptoed up the stairs in the hall past the stuffed elf heads glad to be on his own again but as he approached the first landing he heard noises .Someone was sobbing in the drawing room .Hello ?Harry said .There was no answer but the sobbing continued .He climbed the remaining stairs two at a time walked across the landing and opened the drawingroom door .Someone was cowering against the dark wall her wand in her hand her whole body shaking with sobs .Sprawled on the dusty old carpet in a patch of moonlight clearly dead was Ron .All the air seemed to vanish from Harrys lungs he felt as though he were falling through the floor his brain turned icy cold Ron dead no it couldnt be But wait a moment it couldnt be Ron was downstairs Mrs Weasley ?Harry croaked .Rrriddikulus Mrs Weasley sobbed pointing her shaking wand at Rons body .Crack .Rons body turned into Bills spreadeagled on his back his eyes wide open and empty .Mrs Weasley sobbed harder than ever .Rriddikulus she sobbed again .Crack .Mr Weasleys body replaced Bills his glasses askew a trickle of blood running down his face .No !Mrs Weasley moaned .No .riddikulus Riddikulusl RIDDIKULUSl Crack .Dead twins .Crack .Dead Percy .Crack .Dead Harry .Mrs Weasley just get out of here !shouted Harry staring down at his own dead body on the floor .Let someone else Whats going on ?Lupin had come running into the room closely followed by Sirius with Moody stumping along behind them .Lupin looked from Mrs Weasley to the dead Harry on the floor and seemed to understand in an instant .Pulling out his own wand he said very firmly and clearly RiddikulusV Harrys body vanished .A silvery orb hung in the air over the spot where it had lain .Lupin waved his wand once more and the orb vanished in a puff of smoke .Oh oh oh !gulped Mrs Weasley and she broke into a storm of crying her face in her hands .Molly said Lupin bleakly walking over to her Molly dont .Next second she was sobbing her heart out on Lupins shoulder .Molly it was just a boggart he said soothingly patting her on the head .Just a stupid boggart .I see them dddead all the time !Mrs Weasley moaned into his shoulder .All the tttime !I dd dream about it .Sirius was staring at the patch of carpet where the boggart pretending to be Harrys body had lain .Moody was looking at Harry who avoided his gaze .He had a funny feeling Moodys magical eye had followed him all the way out of the kitchen .Dddont tell Arthur Mrs Weasley was gulping now mopping her eyes frantically with her cuffs .I d ddont want him to know .Being silly .Lupin handed her a handkerchief and she blew her nose .Harry Im so sorry what must you think of me ?she said shakily .Not even able to get rid of a boggart .Dont be stupid said Harry trying to smile .Im just ssso worried she said tears spilling out of her eyes again .Half the fffamilys in the Order itll bbbe a miracle if we all come through this .and P PPercys not talking to us .What if something dd dreadful happens and we had never mmmade up ?And whats going to happen if Arthur and I get killed whos gggoing to look after Ron and Ginny ?Molly thats enough said Lupin firmly .This isnt like last time .The Order is better prepared weve got a head start we know what Voldemorts up to Mrs Weasley gave a little squeak of fright at the sound of the name .Oh Molly come on its about time you got used to hearing it look I cant promise no ones going to get hurt nobody can promise that but were much better off than we were last time you werent in the Order then you dont understand last time we were outnumbered twenty to one by the Death Eaters and they were picking us off one by one .Harry thought of the photograph again of his parents beaming faces .He knew Moody was still watching him .Dont worry about Percy said Sirius abruptly .Hell come round .Its a matter of time before Voldemort moves into the open once he does the whole Ministrys going to be begging us to forgive them .And Im not sure Ill be accepting their apology he added bitterly .And as for whos going to look after Ron and Ginny if you and Arthur died said Lupin smiling slightly what do you think wed do let them starve ?Mrs Weasley smiled tremulously .Being silly she muttered again mopping her eyes .But Harry closing his bedroom door behind him some ten minutes later could not think Mrs Weasley silly .He could still see his parents beaming up at him from the tattered old photograph unaware that their lives like so many of those around them were drawing to a close .The image of the boggart posing as the corpse of each member of Mrs Weasleys family in turn kept flashing before his eyes .Without warning the scar on his forehead seared with pain again and his stomach churned horribly .Cut it out he said firmly rubbing the scar as the pain receded again .First sign of madness talking to your own head said a sly voice from the empty picture on the wall .Harry ignored it .He felt older than he had ever felt in his life and it seemed extraordinary to him that barely an hour ago he had been worried about a joke shop and who had gotten a prefects badge .10 LUNA LOVEGOOD Harry had a troubled nights sleep .His parents wove in and out of his dreams never speaking Mrs Weasley sobbed over Kreachers dead body watched by Ron and Hermione who were wearing crowns and yet again Harry found himself walking down a corridor ending in a locked door .He awoke abruptly with his scar prickling to find Ron already dressed and talking to him . .better hurry up Mums going ballistic she says were going to miss the train .There was a lot of commotion in the house .From what he heard as he dressed at top speed Harry gathered that Fred and George had bewitched their trunks to fly downstairs to save the bother of carrying them with the result that they had hurtled straight into Ginny and knocked her down two flights of stairs into the hall Mrs Black and Mrs Weasley were both screaming at the top of their voices .COULD HAVE DONE HER A SERIOUS INJURY YOU IDIOTS FILTHY HALFBREEDS BESMIRCHING THE HOUSE OF MY FATHERS Hermione came hurrying into the room looking flustered just as Harry was putting on his trainers Hedwig was swaying on her shoulder and she was carrying a squirming Crookshanks in her arms .Mum and Dad just sent Hedwig back the owl fluttered obligingly over and perched on top of her cage are you ready yet ?Nearly Ginny all right ?Harry asked shoving on his glasses .Mrs Weasleys patched her up said Hermione .But now MadEyes complaining that we cant leave unless Sturgis Podmores here otherwise the guard will be one short .Guard ?said Harry .We have to go to Kings Cross with a guard ?You have to go to Kings Cross with a guard Hermione corrected him .Why ?said Harry irritably .I thought Voldemort was supposed to be lying low or are you telling me hes going to jump out from behind a dustbin to try and do me in ?I dont know its just what MadEye says said Hermione distractedly looking at her watch .But if we dont leave soon were definitely going to miss the train .WILL YOU LOT GET DOWN HERE NOW PLEASE !Mrs Weasley bellowed and Hermione jumped as though scalded and hurried out of the room .Harry seized Hedwig stuffed her unceremoniously into her cage and set off downstairs after Hermione dragging his trunk .Mrs Blacks portrait was howling with rage but nobody was bothering to close the curtains over her all the noise in the hall was bound to rouse her again anyway .Harry youre to come with me and Tonks shouted Mrs Weasley over the repeated screeches of MUDBLOODSl SCUM CREATURES OF DIRV .Leave your trunk and your owl Alastors going to deal with the luggage .Oh for heavens sake Sirius Dumbledore said no !A bearlike black dog had appeared at Harrys side as Harry clambered over the various trunks cluttering the hall to get to Mrs Weasley .Oh honestly .said Mrs Weasley despairingly well on your own head be it !She wrenched open the front door and stepped out into the weak September sunlight .Harry and the dog followed her .The door slammed behind them and Mrs Blacks screeches were cut off instantly .Wheres Tonks ?Harry said looking around as they went down the stone steps of number twelve which vanished the moment they reached the pavement .Shes waiting for us just up here said Mrs Weasley stiffly averting her eyes from the lolloping black dog beside Harry .An old woman greeted them on the corner .She had tightly curled gray hair and wore a purple hat shaped like a porkpie .Wotcher Harry she said winking .Better hurry up hadnt we Molly ?she added checking her watch .I know I know moaned Mrs Weasley lengthening her stride but MadEye wanted to wait for Sturgis .If only Arthur could have got us cars from the Ministry again .but Fudge wouldnt let him borrow so much as an empty ink bottle these days .How Muggles can stand traveling without magic .But the great black dog gave a joyful bark and gamboled around them snapping at pigeons and chasing its own tail .Harry couldnt help laughing .Sirius had been trapped inside for a very long time .Mrs Weasley pursed her lips in an almost Aunt Petuniaish way .It took them twenty minutes to reach Kings Cross by foot and nothing more eventful happened during that time than Sirius scaring a couple of cats for Harrys entertainment .Once inside the station they lingered casually beside the barrier between platforms nine and ten until the coast was clear then each of them leaned against it in turn and fell easily through onto platform nine and three quarters where the Hogwarts Express stood belching sooty steam over a platform packed with departing students and their families .Harry inhaled the familiar smell and felt his spirits soar .He was really going back .I hope the others make it in time said Mrs Weasley anxiously staring behind her at the wroughtiron arch spanning the platform through which new arrivals would come .Nice dog Harry !called a tall boy with dreadlocks .Thanks Lee said Harry grinning as Sirius wagged his tail frantically .Oh good said Mrs Weasley sounding relieved heres Alas tor with the luggage look .A porters cap pulled low over his mismatched eyes Moody came limping through the archway pushing a cart full of their trunks .All okay he muttered to Mrs Weasley and Tonks .Dont think we were followed .Seconds later Mr Weasley emerged onto the platform with Ron and Hermione .They had almost unloaded Moodys luggage cart when Fred George and Ginny turned up with Lupin .No trouble ?growled Moody .Nothing said Lupin .Ill still be reporting Sturgis to Dumbledore said Moody .Thats the second time hes not turned up in a week .Getting as unreliable as Mundungus .Well look after yourselves said Lupin shaking hands all round .He reached Harry last and gave him a clap on the shoulder .You too Harry .Be careful .Yeah keep your head down and your eyes peeled said Moody shaking Harrys hand too .And dont forget all of you careful what you put in writing .If in doubt dont put it in a letter at all .Its been great meeting all of you said Tonks hugging Hermione and Ginny .Well see you soon I expect .A warning whistle sounded the students still on the platform started hurrying onto the train .Quick quick said Mrs Weasley distractedly hugging them at random and catching Harry twice .Write .Be good .If youve forgotten anything well send it on .Onto the train now hurry .For one brief moment the great black dog reared onto its hind legs and placed its front paws on Harrys shoulders but Mrs Weasley shoved Harry away toward the train door hissing For heavens sake act more like a dog Sirius !See you !Harry called out of the open window as the train began to move while Ron Hermione and Ginny waved beside him .The figures of Tonks Lupin Moody and Mr and Mrs Weasley shrank rapidly but the black dog was bounding alongside the window wagging its tail blurred people on the platform were laughing to see it chasing the train and then they turned the corner and Sirius was gone .He shouldnt have come with us said Hermione in a worried voice .Oh lighten up said Ron he hasnt seen daylight for months poor bloke .Well said Fred clapping his hands together cant stand around chatting all day weve got business to discuss with Lee .See you later and he and George disappeared down the corridor to the right .The train was gathering still more speed so that the houses outside the window flashed past and they swayed where they stood .Shall we go and find a compartment then ?Harry asked Ron and Hermione .Ron and Hermione exchanged looks .Er said Ron .Were well Ron and I are supposed to go into the prefect carriage Hermione said awkwardly .Ron wasnt looking at Harry he seemed to have become intensely interested in the fingernails on his left hand .Oh said Harry .Right .Fine .I dont think well have to stay there all journey said Hermione quickly .Our letters said we just get instructions from the Head Boy and Girl and then patrol the corridors from time to time .Fine said Harry again .Well II might see you later then .Yeah definitely said Ron casting a shifty anxious look at Harry .Its a pain having to go down there Id rather but we have to I mean Im not enjoying it Im not Percy he finished defiantly .I know youre not said Harry and he grinned .But as Hermione and Ron dragged their trunks Crookshanks and a caged Pigwidgeon off toward the engine end of the train Harry felt an odd sense of loss .He had never traveled on the Hogwarts Express without Ron .Come on Ginny told him if we get a move on well be able to save them places .Right said Harry picking up Hedwigs cage in one hand and the handle of his trunk in the other .They struggled off down the corridor peering through the glasspaneled doors into the compartments they passed which were already full .Harry could not help noticing that a lot of people stared back at him with great interest and that several of them nudged their neighbors and pointed him out .After he had met this behavior in five consecutive carriages he remembered that the Daily Prophet had been telling its readers all summer what a lying showoff he was .He wondered bleakly whether the people now staring and whispering believed the stories .In the very last carriage they met Neville Longbottom Harrys fellow fifthyear Gryffindor his round face shining with the effort of pulling his trunk along and maintaining a onehanded grip on his struggling toad Trevor .Hi Harry he panted .Hi Ginny .Everywhere s full .I cant find a seat .What are you talking about ?said Ginny who had squeezed past Neville to peer into the compartment behind him .Theres room in this one theres only Loony Lovegood in here Neville mumbled something about not wanting to disturb anyone .Dont be silly said Ginny laughing shes all right .She slid the door open and pulled her trunk inside it .Harry and Neville followed .Hi Luna said Ginny .Is it okay if we take these seats ?The girl beside the window looked up .She had straggly waistlength dirtyblond hair very pale eyebrows and protuberant eyes that gave her a permanently surprised look .Harry knew at once why Neville had chosen to pass this compartment by .The girl gave off an aura of distinct dottiness .Perhaps it was the fact that she had stuck her wand behind her left ear for safekeeping or that she had chosen to wear a necklace of butterbeer caps or that she was reading a magazine upside down .Her eyes ranged over Neville and came to rest on Harry .She nodded .Thanks said Ginny smiling at her .Harry and Neville stowed the three trunks and Hedwigs cage in the luggage rack and sat down .The girl called Luna watched them over her upsidedown magazine which was called The Quibbler .She did not seem to need to blink as much as normal humans .She stared and stared at Harry who had taken the seat opposite her and now wished he had not .Had a good summer Luna ?Ginny asked .Yes said Luna dreamily without taking her eyes off Harry .Yes it was quite enjoyable you know .Youre Harry Potter she added .I know I am said Harry .Neville chuckled .Luna turned her pale eyes upon him instead .And I dont know who you are .Im nobody said Neville hurriedly .No youre not said Ginny sharply .Neville Longbottom Luna Lovegood .Lunas in my year but in Ravenclaw .Wit beyond measure is mans greatest treasure said Luna in a singsong voice .She raised her upsidedown magazine high enough to hide her face and fell silent .Harry and Neville looked at each other with their eyebrows raised .Ginny suppressed a giggle .The train rattled onward speeding them out into open country .It was an odd unsettled sort of day one moment the carriage was full of sunlight and the next they were passing beneath ominously gray clouds .Guess what I got for my birthday ?said Neville .Another Remembrall ?said Harry remembering the marblelike device Nevilles grandmother had sent him in an effort to improve his abysmal memory .No said Neville I could do with one though I lost the old one ages ago .No look at this .He dug the hand that was not keeping a firm grip on Trevor into his schoolbag and after a little bit of rummaging pulled out what appeared to be a small gray cactus in a pot except that it was covered with what looked like boils rather than spines .Mimbulus mimbletonia he said proudly .Harry stared at the thing .It was pulsating slightly giving it the rather sinister look of some diseased internal organ .Its really really rare said Neville beaming .I dont know if theres one in the greenhouse at Hogwarts even .I cant wait to show it to Professor Sprout .My greatuncle Algie got it for me in Assyria .Im going to see if I can breed from it .Harry knew that Nevilles favorite subject was Herbology but for the life of him he could not see what he would want with this stunted little plant .Does it er do anything ?he asked .Loads of stuff !said Neville proudly .Its got an amazing defensive mechanism hold Trevor for me .He dumped the toad into Harrys lap and took a quill from his schoolbag .Luna Lovegoods popping eyes appeared over the top of her upsidedown magazine again watching what Neville was doing .Neville held the Mimbulus mimbletonia up to his eyes his tongue between his teeth chose his spot and gave the plant a sharp prod with the tip of his quill .Liquid squirted from every boil on the plant thick stinking darkgreen jets of it they hit the ceiling the windows and spattered Luna Lovegoods magazine .Ginny who had flung her arms up in front of her face just in time merely looked as though she was wearing a slimy green hat but Harry whose hands had been busy preventing the escape of Trevor received a face full .It smelled like rancid manure .Neville whose face and torso were also drenched shook his head to get the worst out of his eyes .Ssorry he gasped .I havent tried that before .Didnt realize it would be quite so .Dont worry though Stinksaps not poisonous he added nervously as Harry spat a mouthful onto the floor .At that precise moment the door of their compartment slid open .Oh .hello Harry said a nervous voice .Um .bad time ?Harry wiped the lenses of his glasses with his Trevor free hand .A very pretty girl with long shiny black hair was standing in the doorway smiling at him Cho Chang the Seeker on the Ravenclaw Quidditch team .Oh .hi said Harry blankly .Um .said Cho .Well .just thought Id say hello .bye then .She closed the door again rather pink in the face and departed .Harry slumped back in his seat and groaned .He would have liked Cho to discover him sitting with a group of very cool people laughing their heads off at a joke he had just told he would not have chosen to be sitting with Neville and Loony Lovegood clutching a toad and dripping in Stinksap .Never mind said Ginny bracingly .Look we can get rid of all this easily .She pulled out her wand .Scour gif yY The Stinksap vanished .Sorry said Neville again in a small voice .Ron and Hermione did not turn up for nearly an hour by which time the food trolley had already gone by .Harry Ginny and Neville had finished their Pumpkin Pasties and were busy swapping Chocolate Frog cards when the compartment door slid open and they walked in accompanied by Crookshanks and a shrilly hooting Pigwidgeon in his cage .Im starving said Ron stowing Pigwidgeon next to Hedwig grabbing a Chocolate Frog from Harry and throwing himself into the seat next to him .He ripped open the wrapper bit off the Frogs head and leaned back with his eyes closed as though he had had a very exhausting morning .Well there are two fifthyear prefects from each House said Hermione looking thoroughly disgruntled as she took her seat .Boy and girl from each .And guess whos a Slytherin prefect ?said Ron still with his eyes closed .Malfoy replied Harry at once his worst fear confirmed .Course said Ron bitterly stuffing the rest of the Frog into his mouth and taking another .And that complete cow Pansy Parkinson said Hermione viciously .How she got to be a prefect when shes thicker than a concussed troll .Whos Hufflepuff ?Harry asked .Ernie Macmillan and Hannah Abbott said Ron thickly .And Anthony Goldstein and Padma Patil for Ravenclaw said Hermione .You went to the Yule Ball with Padma Patil said a vague voice .Everyone turned to look at Luna Lovegood who was gazing unblinkingly at Ron over the top of The Quibbler .He swallowed his mouthful of Frog .Yeah I know I did he said looking mildly surprised .She didnt enjoy it very much Luna informed him .She doesnt think you treated her very well because you wouldnt dance with her .I dont think Id have minded she added thoughtfully I dont like dancing very much .She retreated behind The Quibbler again .Ron stared at the cover with his mouth hanging open for a few seconds then looked around at Ginny for some kind of explanation but Ginny had stuffed her knuckles in her mouth to stop herself giggling .Ron shook his head bemused then checked his watch .Were supposed to patrol the corridors every so often he told Harry and Neville and we can give out punishments if people are misbehaving .I cant wait to get Crabbe and Goyle for something .Youre not supposed to abuse your position Ron !said Hermione sharply .Yeah right because Malfoy wont abuse it at all said Ron sarcastically .So youre going to descend to his level ?No Im just going to make sure I get his mates before he gets mine .For heavens sake Ron Ill make Goyle do lines itll kill him he hates writing said Ron happily .He lowered his voice to Goyle s low grunt and screwing up his face in a look of pained concentration mimed writing in midair .I .must .not .look .like .a .baboons .backside .Everyone laughed but nobody laughed harder than Luna Lovegood .She let out a scream of mirth that caused Hedwig to wake up and flap her wings indignantly and Crookshanks to leap up into the luggage rack hissing .She laughed so hard that her magazine slipped out of her grasp slid down her legs and onto the floor .That was funny Her prominent eyes swam with tears as she gasped for breath staring at Ron .Utterly nonplussed he looked around at the others who were now laughing at the expression on Rons face and at the ludicrously prolonged laughter of Luna Lovegood who was rocking backward and forward clutching her sides .Are you taking the mickey ?said Ron frowning at her .Baboons .backside !she choked holding her ribs .Everyone else was watching Luna laughing but Harry glancing at the magazine on the floor noticed something that made him dive for it .Upside down it had been hard to tell what the picture on the front was but Harry now realized it was a fairly bad cartoon of Cornelius Fudge Harry only recognized him because of the limegreen bowler hat .One of Fudges hands was clenched around a bag of gold the other hand was throttling a goblin .The cartoon was captioned How Far Will Fudge Go to Gain Gringotts ?Beneath this were listed the titles of other articles inside the magazine .CORRUPTION IN THE QUIDDITCH LEAGUE How the Tornados Are Taking Control SECRETS OF THE ANCIENT RUNES REVEALED SIRIUS BLACK Villain or Victim ?Can I have a look at this ?Harry asked Luna eagerly .She nodded still gazing at Ron breathless with laughter .Harry opened the magazine and scanned the index until this moment he had completely forgotten the magazine Kingsley had handed Mr Weasley to give to Sirius but it must have been this edition of The Quibbler .He found the page and turned excitedly to the article .This too was illustrated by a rather bad cartoon in fact Harry would not have known it was supposed to be Sirius if it hadnt been captioned .Sirius was standing on a pile of human bones with his wand out .The headline on the article read SIRIUS Black As Hes Painted ?Notorious Mass Murderer OR Innocent Singing Sensation ?Harry had to read this sentence several times before he was convinced that he had not misunderstood it .Since when had Sirius been a singing sensation ?For fourteen years Sirius Black has been believed guilty of the mass murder of twelve innocent Muggles and one wizard .Blacks audacious escape from Azkaban two years ago has led to the widest manhunt ever conducted by the Ministry of Magic .None of us has ever questioned that he deserves to be recaptured and handed back to the dementors .BUT DOES HE ?Startling new evidence has recently come to light that Sirius Black may not have committed the crimes for which he was sent to Azkaban .In fact says Doris Purkiss of 18 Acanthia Way Little Norton Black may not even have been present at the killings .What people dont realize is that Sirius Black is a false name says Mrs Purkiss .The man people believe to be Sirius Black is actually Stubby Boardman lead singer of the popular singing group The Hobgoblins who retired from public life after being struck in the ear by a turnip at a concert in Little Norton Church Hall nearly fifteen years ago .I recognized him the moment I saw his picture in the paper .Now Stubby couldnt possibly have committed those crimes because on the day in question he happened to be enjoying a romantic candlelit dinner with me .I have written to the Minister of Magic and am expecting him to give Stubby alias Sirius a full pardon any day now .Harry finished reading and stared at the page in disbelief .Perhaps it was a joke he thought perhaps the magazine often printed spoof items .He flicked back a few pages and found the piece on Fudge .Cornelius Fudge the Minister of Magic denied that he had any plans to take over the running of the Wizarding Bank Gringotts when he was elected Minister of Magic five years ago .Fudge has always insisted that he wants nothing more than to cooperate peacefully with the guardians of our gold .BUT DOES HE ?Sources close to the Minister have recently disclosed that Fudges dearest ambition is to seize control of the goblin gold supplies and that he will not hesitate to use force if need be .It wouldnt be the first time either said a Ministry insider .Cornelius ‘GoblinCrusher Fudge thats what his friends call him if you could hear him when he thinks no ones listening oh hes always talking about the goblins hes had done in hes had them drowned hes had them dropped off buildings hes had them poisoned hes had them cooked in pies .Harry did not read any further .Fudge might have many faults but Harry found it extremely hard to imagine him ordering goblins to be cooked in pies .He flicked through the rest of the magazine .Pausing every few pages he read an accusation that the Tutshill Tornados were winning the Quidditch League by a combination of blackmail illegal broom tampering and torture an interview with a wizard who claimed to have flown to the moon on a Cleansweep Six and brought back a bag of moon frogs to prove it and an article on ancient runes which at least explained why Luna had been reading The Quibbler upside down .According to the magazine if you turned the runes on their heads they revealed a spell to make your enemys ears turn into kumquats .In fact compared to the rest of the articles in The Quibbler the suggestion that Sirius might really be the lead singer of The Hobgoblins was quite sensible .Anything good in there ?asked Ron as Harry closed the magazine .Of course not said Hermione scathingly before Harry could answer The Quibblers rubbish everyone knows that .Excuse me said Luna her voice had suddenly lost its dreamy quality .My fathers the editor .I oh said Hermione looking embarrassed .Well .its got some interesting .I mean its quite .Ill have it back thank you said Luna coldly and leaning forward she snatched it out of Harrys hands .Rifling through it to page fiftyseven she turned it resolutely upside down again and disappeared behind it just as the compartment door opened for the third time .Harry looked around he had expected this but that did not make the sight of Draco Malfoy smirking at him from between his cronies Crabbe and Goyle any more enjoyable .What ?he said aggressively before Malfoy could open his mouth .Manners Potter or Ill have to give you a detention drawled Malfoy whose sleek blond hair and pointed chin were just like his fathers .You see I unlike you have been made a prefect which means that I unlike you have the power to hand out punishments .Yeah said Harry but you unlike me are a git so get out and leave us alone .Ron Hermione Ginny and Neville laughed .Malfoys lip curled .Tell me how does it feel being secondbest to Weasley Potter ?he asked .Shut up Malfoy said Hermione sharply .I seem to have touched a nerve said Malfoy smirking .Well just watch yourself Potter because Ill be dogging your footsteps in case you step out of line .Get out !said Hermione standing up .Sniggering Malfoy gave Harry a last malicious look and departed Crabbe and Goyle lumbering in his wake .Hermione slammed the compartment door behind them and turned to look at Harry who knew at once that she like him had registered what Malfoy had said and been just as unnerved by it .Chuck us another Frog said Ron who had clearly noticed nothing .Harry could not talk freely in front of Neville and Luna .He exchanged another nervous look with Hermione and then stared out of the window .He had thought Sirius coming with him to the station was a bit of a laugh but suddenly it seemed reckless if not downright dangerous .Hermione had been right .Sirius should not have come .What if Mr Malfoy had noticed the black dog and told Draco what if he had deduced that the Weasleys Lupin Tonks and Moody knew where Sirius was hiding ?Or had Malfoys use of the word dogging been a coincidence ?The weather remained undecided as they traveled farther and farther north .Rain spattered the windows in a halfhearted way then the sun put in a feeble appearance before clouds drifted over it once more .When darkness fell and lamps came on inside the carriages Luna rolled up The Quibbler put it carefully away in her bag and took to staring at everyone in the compartment instead .Harry was sitting with his forehead pressed against the train window trying to get a first distant glimpse of Hogwarts but it was a moonless night and the rainstreaked window was grimy .Wed better change said Hermione at last .She and Ron pinned their prefect badges carefully to their chests .Harry saw Ron checking how it looked in the black window .At last the train began to slow down and they heard the usual racket up and down it as everybody scrambled to get their luggage and pets assembled ready for departure .Ron and Hermione were supposed to supervise all this they disappeared from the carriage again leaving Harry and the others to look after Crookshanks and Pigwidgeon .Ill carry that owl if you like said Luna to Harry reaching out for Pigwidgeon as Neville stowed Trevor carefully in an inside pocket .Oh er thanks said Harry handing her the cage and hoisting Hedwigs more securely into his arms .They shuffled out of the compartment feeling the first sting of the night air on their faces as they joined the crowd in the corridor .Slowly they moved toward the doors .Harry could smell the pine trees that lined the path down to the lake .He stepped down onto the platform and looked around listening for the familiar call of Firs years over here .firs years .But it did not come .Instead a quite different voice a brisk female one was calling First years line up over here please !All first years to me !A lantern came swinging toward Harry and by its light he saw the prominent chin and severe haircut of Professor GrubblyPlank the witch who had taken over Hagrid s Care of Magical Creatures lessons for a while the previous year .Wheres Hagrid ?he said out loud .I dont know said Ginny but wed better get out of the way were blocking the door .Oh yeah .Harry and Ginny became separated as they moved off along the platform and out through the station .Jostled by the crowd Harry squinted through the darkness for a glimpse of Hagrid he had to be here Harry had been relying on it seeing Hagrid again had been one of the things to which he had been looking forward most .But there was no sign of him at all .He cant have left Harry told himself as he shuffled slowly through a narrow doorway onto the road outside with the rest of the crowd .Hes just got a cold or something .He looked around for Ron or Hermione wanting to know what they thought about the reappearance of Professor GrubblyPlank but neither of them was anywhere near him so he allowed himself to be shunted forward onto the dark rainwashed road outside Hogsmeade station .Here stood the hundred or so horseless stagecoaches that always took the students above first year up to the castle .Harry glanced quickly at them turned away to keep a lookout for Ron and Hermione then did a double take .The coaches were no longer horseless .There were creatures standing between the carriage shafts if he had had to give them a name he supposed he would have called them horses though there was something reptilian about them too .They were completely fleshless their black coats clinging to their skeletons of which every bone was visible .Their heads were dragonish and their pupilless eyes white and staring .Wings sprouted from each wither vast black leathery wings that looked as though they ought to belong to giant bats .Standing still and quiet in the gloom the creatures looked eerie and sinister .Harry could not understand why the coaches were being pulled by these horrible horses when they were quite capable of moving along by themselves .Wheres Pig ?said Rons voice right behind Harry .That Luna girl was carrying him said Harry turning quickly eager to consult Ron about Hagrid .Where dyou reckon Hagrid is ?I dunno said Ron sounding worried .Hed better be okay .A short distance away Draco Malfoy followed by a small gang of cronies including Crabbe Goyle and Pansy Parkinson was pushing some timidlooking second years out of the way so that they could get a coach to themselves .Seconds later Hermione emerged panting from the crowd .Malfoy was being absolutely foul to a first year back there I swear Im going to report him hes only had his badge three minutes and hes using it to bully people worse than ever .Wheres Crookshanks ?Ginnys got him said Harry .There she is .Ginny had just emerged from the crowd clutching a squirming Crookshanks .Thanks said Hermione relieving Ginny of the cat .Come on lets get a carriage together before they all fillup .I havent got Pig yet !Ron said but Hermione was already heading off toward the nearest unoccupied coach .Harry remained behind with Ron .What are those things dyou reckon ?he asked Ron nodding at the horrible horses as the other students surged past them .What things ?Those horse Luna appeared holding Pigwidgeons cage in her arms the tiny owl was twittering excitedly as usual .Here you are she said .Hes a sweet little owl isnt he ?Er .yeah .Hes all right said Ron gruffly .Well come on then lets get in .what were you saying Harry ?I was saying what are those horse things ?Harry said as he Ron and Luna made for the carriage in which Hermione and Ginny were already sitting .What horse things ?The horse things pulling the carriages !said Harry impatiently they were after all about three feet from the nearest one it was watching them with empty white eyes .Ron however gave Harry a perplexed look .What are you talking about ?Im talking about look !Harry grabbed Rons arm and wheeled him about so that he was facetoface with the winged horse .Ron stared straight at it for a second then looked back at Harry .What am I supposed to be looking at ?At the there between the shafts !Harnessed to the coach !Its right there in front But as Ron continued to look bemused a strange thought occurred to Harry .Cant .cant you see them ?See what ?Cant you see whats pulling the carriages ?Ron looked seriously alarmed now .Are you feeling all right Harry ?I .yeah .Harry felt utterly bewildered .The horse was there in front of him gleaming solidly in the dim light issuing from the station windows behind them vapor rising from its nostrils in the chilly night air .Yet unless Ron was faking and it was a very feeble joke if he was Ron could not see it at all .Shall we get in then ?said Ron uncertainly looking at Harry as though worried about him .Yeah said Harry .Yeah go on .Its all right said a dreamy voice from beside Harry as Ron vanished into the coachs dark interior .Youre not going mad or anything .I can see them too .Can you ?said Harry desperately turning to Luna .He could see the batwinged horses reflected in her wide silvery eyes .Oh yes said Luna Ive been able to see them ever since my first day here .Theyve always pulled the carriages .Dont worry .Youre just as sane as I am .Smiling faintly she climbed into the musty interior of the carriage after Ron .Not altogether reassured Harry followed her .XX THE SORTING HATS NEW SONG Harry did not want to tell the others that he and Luna were having the same hallucination if that was what it was so he said nothing about the horses as he sat down inside the carriage and slammed the door behind him .Nevertheless he could not help watching the silhouettes of the horses moving beyond the window .Did everyone see that GrubblyPlank woman ?asked Ginny .Whats she doing back here ?Hagrid cant have left can he ?Ill be quite glad if he has said Luna .He isnt a very good teacher is he ?Yes he is !said Harry Ron and Ginny angrily .Harry glared at Hermione she cleared her throat and quickly said Erm .yes .hes very good .Well we think hes a bit of a joke in Ravenclaw said Luna unfazed .Youve got a rubbish sense of humor then Ron snapped as the wheels below them creaked into motion .Luna did not seem perturbed by Rons rudeness on the contrary she simply watched him for a while as though he were a mildly interesting television program .Rattling and swaying the carriages moved in convoy up the road .When they passed between the tall stone pillars topped with winged boars on either side of the gates to the school grounds Harry leaned forward to try and see whether there were any lights on in Hagrids cabin by the Forbidden Forest but the grounds were in complete darkness .Hogwarts Castle however loomed ever closer a towering mass of turrets jetblack against the dark sky here and there a window blazing fiery bright above them .The carriages jingled to a halt near the stone steps leading up to the oak front doors and Harry got out of the carriage first .He turned again to look for lit windows down by the forest but there was definitely no sign of life within Hagrids cabin .Unwillingly because he had half hoped they would have vanished he turned his eyes instead upon the strange skeletal creatures standing quietly in the chill night air their blank white eyes gleaming .Harry had once before had the experience of seeing something that Ron could not but that had been a reflection in a mirror something much more insubstantial than a hundred very solidlooking beasts strong enough to pull a fleet of carriages .If Luna was to be believed the beasts had always been there but invisible why then could Harry suddenly see them and why could Ron not ?Are you coming or what ?said Ron beside him .Oh .yeah said Harry quickly and they joined the crowd hurrying up the stone steps into the castle .The entrance hall was ablaze with torches and echoing with footsteps as the students crossed the flagged stone floor for the double doors to the right leading to the Great Hall and the startofterm feast .The four long House tables in the Great Hall were filling up under the starless black ceiling which was just like the sky they could glimpse through the high windows .Candles floated in midair all along the tables illuminating the silvery ghosts who were dotted about the Hall and the faces of the students talking eagerly to one another exchanging summer news shouting greetings at friends from other Houses eyeing one anothers new haircuts and robes .Again Harry noticed people putting their heads together to whisper as he passed he gritted his teeth and tried to act as though he neither noticed nor cared .Luna drifted away from them at the Ravenclaw table .The moment they reached Gryffindors Ginny was hailed by some fellow fourth years and left to sit with them Harry Ron Hermione and Neville found seats together about halfway down the table between Nearly Headless Nick the Gryffindor House ghost and Parvati Patil and Lavender Brown the last two of whom gave Harry airy overly friendly greetings that made him quite sure they had stopped talking about him a split second before .He had more important things to worry about however He was looking over the students heads to the staff table that ran along the top wall of the Hall .Hes not there .Ron and Hermione scanned the staff table too though there was no real need Hagrids size made him instantly obvious in any lineup .He cant have left said Ron sounding slightly anxious .Of course he hasnt said Harry firmly .You dont think hes .hurt or anything do you ?said Hermione uneasily .No said Harry at once .But where is he then ?There was a pause then Harry said very quietly so that Neville Parvati and Lavender could not hear Maybe hes not back yet .You know from his mission the thing he was doing over the summer for Dumbledore .Yeah .yeah thatll be it said Ron sounding reassured but Hermione bit her lip looking up and down the staff table as though hoping for some conclusive explanation of Hagrids absence .Whos that ?she said sharply pointing toward the middle of the staff table .Harrys eyes followed hers .They lit first upon Professor Dumbledore sitting in his highbacked golden chair at the center of the long staff table wearing deeppurple robes scattered with silvery stars and a matching hat .Dumbledores head was inclined toward the woman sitting next to him who was talking into his ear .She looked Harry thought like somebodys maiden aunt squat with short curly mousebrown hair in which she had placed a horrible pink Alice band that matched the fluffy pink cardigan she wore over her robes .Then she turned her face slightly to take a sip from her goblet and he saw with a shock of recognition a pallid toadlike face and a pair of prominent pouchy eyes .Its that Umbridge woman !Who ?said Hermione .She was at my hearing she works for Fudge !Nice cardigan said Ron smirking .She works for Fudge ?Hermione repeated frowning .What on earths she doing here then ?Dunno .Hermione scanned the staff table her eyes narrowed .No she muttered no surely not .Harry did not understand what she was talking about but did not ask his attention had just been caught by Professor GrubblyPlank who had just appeared behind the staff table she worked her way along to the very end and took the seat that ought to have been Hagrids .That meant that the first years must have crossed the lake and reached the castle and sure enough a few seconds later the doors from the entrance hall opened .A long line of scaredlooking first years entered led by Professor McGonagall who was carrying a stool on which sat an ancient wizards hat heavily patched and darned with a wide rip near the frayed brim .The buzz of talk in the Great Hall faded away .The first years lined up in front of the staff table facing the rest of the students and Professor McGonagall placed the stool carefully in front of them then stood back .The first years faces glowed palely in the candlelight .A small boy right in the middle of the row looked as though he was trembling .Harry recalled fleetingly how terrified he had felt when he had stood there waiting for the unknown test that would determine to which House he belonged .The whole school waited with bated breath .Then the rip near the hats brim opened wide like a mouth and the Sorting Hat burst into song In times of old when I was new And Hogwarts barely started The founders of our noble school Thought never to be parted United by a common goal They had the selfsame yearning To make the worlds best magic school And pass along their learning .Together we will build and teach !The four good friends decided And never did they dream that they Might someday be divided For were there such friends anywhere As Slytherin and Gryffndor ?Unless it was the second pair Of Huffepuff and Ravenclaw ?So how could it have gone so wrong ?How could such friendships fail ?Why I was there and so can tell The whole sad sorry tale .Said Slytherin Well teach just those Whose ancestry is purest .Said Ravenclaw Well teach those whose Intelligence is surest .Said Gryffindor Well teach all those With brave deeds to their name Said Hufflepuff 111 teach the lot And treat them just the same .These differences caused little strife When first they came to light For each of the four founders had A House in which they might Take only those they wanted so For instance Slytherin Took only pureblood wizards Of great cunning just like him And only those of sharpest mind Were taught by Ravenclaw While the bravest and the boldest Went to daring Gryffindor .Good Hufflepuff she took the rest And taught them all she knew Thus the Houses and their founders Retained friendships firm and true .So Hogwarts worked in harmony For several happy years But then discord crept among us Feeding on our faults and fears .The Houses that like pillars four Had once held up our school Now turned upon each other and Divided sought to rule .And for a while it seemed the school Must meet an early end What with dueling and with fighting And the clash of friend on friend And at last there came a morning When old Slytherin departed And though the fighting then died out He left us quite downhearted .And never since the founders four Were whittled down to three Have the Houses been united As they once were meant to be .And now the Sorting Hat is here And you all know the score I sort you into Houses Because that is what Im for But this year Ill go further Listen closely to my song Though condemned I am to split you Still I worry that its wrong Though I must fulfill my duty And must quarter every year Still I wonder whether sorting May not bring the end I fear .Oh know the perils read the signs The warning history shows For our Hogwarts is in danger From external deadly foes And we must unite inside her Or well crumble from within .I have told you I have warned you .Let the Sorting now begin .The hat became motionless once more applause broke out though it was punctured for the first time in Harrys memory with muttering and whispers .All across the Great Hall students were exchanging remarks with their neighbors and Harry clapping along with everyone else knew exactly what they were talking about .Branched out a bit this year hasnt it ?said Ron his eyebrows raised .Too right it has said Harry .The Sorting Hat usually confined itself to describing the different qualities looked for by each of the four Hogwarts Houses and its own role in sorting them Harry could not remember it ever trying to give the school advice before .I wonder if its ever given warnings before ?said Hermione sounding slightly anxious .Yes indeed said Nearly Headless Nick knowledgeably leaning across Neville toward her Neville winced it was very uncomfortable to have a ghost lean through you .The hat feels itself honor bound to give the school due warning whenever it feels But Professor McGonagall who was waiting to read out the list of first years names was giving the whispering students the sort of look that scorches .Nearly Headless Nick placed a seethrough finger to his lips and sat primly upright again as the muttering came to an abrupt end .With a last frowning look that swept the four House tables Professor McGonagall lowered her eyes to her long piece of parchment and called out Abercrombie Euan .The terrifiedlooking boy Harry had noticed earlier stumbled forward and put the hat on his head it was only prevented from falling right down to his shoulders by his very prominent ears .The hat considered for a moment then the rip near the brim opened again and shouted GR YFFIND OR !Harry clapped loudly with the rest of Gryffindor House as Euan Abercrombie staggered to their table and sat down looking as though he would like very much to sink through the floor and never be looked at again .Slowly the long line of first years thinned in the pauses between the names and the Sorting Hats decisions Harry could hear Rons stomach rumbling loudly .Finally Zeller Rose was sorted into Hufflepuff and Professor McGonagall picked up the hat and stool and marched them away as Professor Dumbledore rose to his feet .Harry was somehow soothed to see Dumbledore standing before them all whatever his recent bitter feelings toward his headmaster .Between the absence of Hagrid and the presence of those dragonish horses he had felt that his return to Hogwarts so long anticipated was full of unexpected surprises like jarring notes in a familiar song .But this at least was how it was supposed to be their headmaster rising to greet them all before the startofterm feast .To our newcomers said Dumbledore in a ringing voice his arms stretched wide and a beaming smile on his lips welcome !To our old hands welcome back !There is a time for speech making but this is not it .Tuck in !There was an appreciative laugh and an outbreak of applause as Dumbledore sat down neatly and threw his long beard over his shoulder so as to keep it out of the way of his plate for food had appeared out of nowhere so that the five long tables were groaning under joints and pies and dishes of vegetables bread sauces and flagons of pumpkin juice .Excellent said Ron with a kind of groan of longing and he seized the nearest plate of chops and began piling them onto his plate watched wistfully by Nearly Headless Nick .What were you saying before the Sorting ?Hermione asked the ghost .About the hat giving warnings ?Oh yes said Nick who seemed glad of a reason to turn away from Ron who was now eating roast potatoes with almost indecent enthusiasm .Yes I have heard the hat give several warnings before always at times when it detects periods of great danger for the school .And always of course its advice is the same Stand together be strong from within .Ow kunnit nofe skusin danger ifzat ?said Ron .His mouth was so full Harry thought it was quite an achievement for him to make any noise at all .I beg your pardon ?said Nearly Headless Nick politely while Hermione looked revolted .Ron gave an enormous swallow and said How can it know if the schools in danger if its a hat ?I have no idea said Nearly Headless Nick .Of course it lives in Dumbledores office so I daresay it picks things up there .And it wants all the Houses to be friends ?said Harry looking over at the Slytherin table where Draco Malfoy was holding court .Fat chance .Well now you shouldnt take that attitude said Nick reprovingly .Peaceful cooperation thats the key .We ghosts though we belong to separate Houses maintain links of friendship .In spite of the competitiveness between Gryffindor and Slytherin I would never dream of seeking an argument with the Bloody Baron .Only because youre terrified of him said Ron .Nearly Headless Nick looked highly affronted .Terrified ?I hope I Sir Nicholas de Mimsy Porpington have never been guilty of cowardice in my life !The noble blood that runs in my veins What blood ?asked Ron .Surely you havent still got ?Its a figure of speech !said Nearly Headless Nick now so annoyed his head was trembling ominously on his partially severed neck .I assume I am still allowed to enjoy the use of whichever words I like even if the pleasures of eating and drinking are denied me !But I am quite used to students poking fun at my death I assure you !Nick he wasnt really laughing at you !said Hermione throwing a furious look at Ron .Unfortunately Rons mouth was packed to exploding point again and all he could manage was node iddum eentup sechew which Nick did not seem to think constituted an adequate apology .Rising into the air he straightened his feathered hat and swept away from them to the other end of the table coming to rest between the Creevey brothers Colin and Dennis .Well done Ron snapped Hermione .What ?said Ron indignantly having managed finally to swallow his food .Im not allowed to ask a simple question ?Oh forget it said Hermione irritably and the pair of them spent the rest of the meal in huffy silence .Harry was too used to their bickering to bother trying to reconcile them he felt it was a better use of his time to eat his way steadily through his steakand kidney pie then a large plateful of his favorite treacle tart .When all the students had finished eating and the noise level in the hall was starting to creep upward again Dumbledore got to his feet once more .Talking ceased immediately as all turned to face the headmaster .Harry was feeling pleasantly drowsy now .His fourposter bed was waiting somewhere above wonderfully warm and soft .Well now that we are all digesting another magnificent feast I beg a few moments of your attention for the usual startofterm notices said Dumbledore .First years ought to know that the forest in the grounds is out of bounds to students and a few of our older students ought to know by now too .Harry Ron and Hermione exchanged smirks .Mr Filch the caretaker has asked me for what he tells me is the four hundred and sixtysecond time to remind you all that magic is not permitted in corridors between classes nor are a number of other things all of which can be checked on the extensive list now fastened to Mr Filchs office door .We have had two changes in staffing this year .We are very pleased to welcome back Professor Grubbly Plank who will be taking Care of Magical Creatures lessons we are also delighted to introduce Professor Umbridge our new Defense Against the Dark Arts teacher .There was a round of polite but fairly unenthusiastic applause during which Harry Ron and Hermione exchanged slightly panicked looks Dumbledore had not said for how long GrubblyPlank would be teaching .Dumbledore continued Tryouts for the House Quidditch teams will take place on the He broke off looking inquiringly at Professor Umbridge .As she was not much taller standing than sitting there was a moment when nobody understood why Dumbledore had stopped talking but then Professor Umbridge said Hem hem and it became clear that she had got to her feet and was intending to make a speech .Dumbledore only looked taken aback for a moment then he sat back down smartly and looked alertly at Professor Umbridge as though he desired nothing better than to listen to her talk .Other members of staff were not as adept at hiding their surprise .Professor Sprouts eyebrows had disappeared into her flyaway hair and Professor McGonagalls mouth was as thin as Harry had ever seen it .No new teacher had ever interrupted Dumbledore before .Many of the students were smirking this woman obviously did not know how things were done at Hogwarts .Thank you Headmaster Professor Umbridge simpered for those kind words of welcome .Her voice was highpitched breathy and littlegirlish and again Harry felt a powerful rush of dislike that he could not explain to himself all he knew was that he loathed everything about her from her stupid voice to her fluffy pink cardigan .She gave another little throatclearing cough Hem hem and continued Well it is lovely to be back at Hogwarts I must say !She smiled revealing very pointed teeth .And to see such happy little faces looking back at me !Harry glanced around .None of the faces he could see looked happy on the contrary they all looked rather taken aback at being addressed as though they were five years old .I am very much looking forward to getting to know you all and Im sure well be very good friends !Students exchanged looks at this some of them were barely concealing grins .Ill be her friend as long as I dont have to borrow that cardigan Parvati whispered to Lavender and both of them lapsed into silent giggles .Professor Umbridge cleared her throat again Hem hem but when she continued some of the breathiness had vanished from her voice .She sounded much more businesslike and now her words had a dull learnedbyheart sound to them .The Ministry of Magic has always considered the education of young witches and wizards to be of vital importance .The rare gifts with which you were born may come to nothing if not nurtured and honed by careful instruction .The ancient skills unique to the Wizarding community must be passed down through the generations lest we lose them forever .The treasure trove of magical knowledge amassed by our ancestors must be guarded replenished and polished by those who have been called to the noble profession of teaching .Professor Umbridge paused here and made a little bow to her fellow staff members none of whom bowed back .Professor McGonagalls dark eyebrows had contracted so that she looked positively hawklike and Harry distinctly saw her exchange a significant glance with Professor Sprout as Umbridge gave another little Hem hem and went on with her speech .Every headmaster and headmistress of Hogwarts has brought something new to the weighty task of governing this historic school and that is as it should be for without progress there will be stagnation and decay .There again progress for progresss sake must be discouraged for our tried and tested traditions often require no tinkering .A balance then between old and new between permanence and change between tradition and innovation .Harry found his attentiveness ebbing as though his brain was slipping in and out of tune .The quiet that always filled the Hall when Dumbledore was speaking was breaking up as students put their heads together whispering and giggling .Over at the Ravenclaw table Cho Chang was chatting animatedly with her friends .A few seats along from Cho Luna Lovegood had got out The Quibbler again .Meanwhile at the Hufflepuff table Ernie Macmillan was one of the few still staring at Professor Umbridge but he was glassyeyed and Harry was sure he was only pretending to listen in an attempt to live up to the new prefects badge gleaming on his chest .Professor Umbridge did not seem to notice the restlessness of her audience .Harry had the impression that a fullscale riot could have broken out under her nose and she would have plowed on with her speech .The teachers however were still listening very attentively and Hermione seemed to be drinking in every word Umbridge spoke though judging by her expression they were not at all to her taste . .because some changes will be for the better while others will come in the fullness of time to be recognized as errors of judgment .Meanwhile some old habits will be retained and rightly so whereas others outmoded and outworn must be abandoned .Let us move forward then into a new era of openness effectiveness and accountability intent on preserving what ought to be preserved perfecting what needs to be perfected and pruning wherever we find practices that ought to be prohibited .She sat down .Dumbledore clapped .The staff followed his lead though Harry noticed that several of them brought their hands together only once or twice before stopping .A few students joined in but most had been taken unawares by the end of the speech not having listened to more than a few words of it and before they could start applauding properly Dumbledore had stood up again .Thank you very much Professor Umbridge that was most illuminating he said bowing to her .Now as I was saying Quidditch tryouts will be held .Yes it certainly was illuminating said Hermione in a low voice .Youre not telling me you enjoyed it ?Ron said quietly turning a glazed face upon Hermione .That was about the dullest speech Ive ever heard and I grew up with Percy .I said illuminating not enjoyable said Hermione .It explained a lot .Did it ?said Harry in surprise .Sounded like a load of waffle to me .There was some important stuff hidden in the waffle said Hermione grimly .Was there ?said Ron blankly .How about ‘progress for progresss sake must be discouraged ?How about ‘pruning wherever we find practices that ought to be prohibited ?Well what does that mean ?said Ron impatiently .Ill tell you what it means said Hermione ominously .It means the Ministrys interfering at Hogwarts .There was a great clattering and banging all around them Dumbledore had obviously just dismissed the school because everyone was standing up ready to leave the Hall .Hermione jumped up looking flustered .Ron were supposed to show the first years where to go !Oh yeah said Ron who had obviously forgotten .Hey hey you lot !Midgets !Ron Well they are theyre titchy .I know but you cant call them midgets .First years !Hermione called commandingly along the table .This way please !A group of new students walked shyly up the gap between the Gryffindor and Hufflepuff tables all of them trying hard not to lead the group .They did indeed seem very small Harry was sure he had not appeared that young when he had arrived here .He grinned at them .A blond boy next to Euan Abercrombie looked petrified nudged Euan and whispered something in his ear .Euan Abercrombie looked equally frightened and stole a horrified look at Harry who felt the grin slide off his face like Stinksap .See you later he said to Ron and Hermione and he made his way out of the Great Hall alone doing everything he could to ignore more whispering staring and pointing as he passed .He kept his eyes fixed ahead as he wove his way through the crowd in the entrance hall then he hurried up the marble staircase took a couple of concealed shortcuts and had soon left most of the crowds behind .He had been stupid not to expect this he thought angrily as he walked through much emptier upstairs corridors .Of course everyone was staring at him He had emerged from the Triwizard maze two months ago clutching the dead body of a fellow student and claiming to have seen Lord Voldemort return to power .There had not been time last term to explain himself before everyone went home even if he had felt up to giving the whole school a detailed account of the terrible events in that graveyard .He had reached the end of the corridor to the Gryffindor common room and had come to a halt in front of the portrait of the Fat Lady before he realized that he did not know the new password .Er .he said glumly staring up at the Fat Lady who smoothed the folds of her pink satin dress and looked sternly back at him .No password no entrance she said loftily .Harry I know it !someone panted from behind him and he turned to see Neville jogging toward him .Guess what it is ?Im actually going to be able to remember it for once He waved the stunted little cactus he had shown them on the train .Mimbulus mimbletonio 1 Correct said the Fat Lady and her portrait swung open toward them like a door revealing a circular hole in the wall behind through which Harry and Neville now climbed .The Gryffindor common room looked as welcoming as ever a cozy circular tower room full of dilapidated squashy armchairs and rickety old tables .A fire was crackling merrily in the grate and a few people were warming their hands before going up to their dormitories on the other side of the room Fred and George Weasley were pinning something up on the notice board .Harry waved good night to them and headed straight for the door to the boys dormitories he was not in much of a mood for talking at the moment .Neville followed him .Dean Thomas and Seamus Finnigan had reached the dormitory first and were in the process of covering the walls beside their beds with posters and photographs .They had been talking as Harry pushed open the door but stopped abruptly the moment they saw him .Harry wondered whether they had been talking about him then whether he was being paranoid .Hi he said moving across to his own trunk and opening it .Hey Harry said Dean who was putting on a pair of pajamas in the West Ham colors .Good holiday ?Not bad muttered Harry as a true account of his holiday would have taken most of the night to relate and he could not face it .You ?Yeah it was okay chuckled Dean .Better than Seamuss anyway he was just telling me .Why what happened Seamus ?Neville asked as he placed his Mimbulus mimbletonia tenderly on his bedside cabinet .Seamus did not answer immediately he was making rather a meal of ensuring that his poster of the Kenmare Kestrels Quidditch team was quite straight .Then he said with his back still turned to Harry Me mam didnt want me to come back .What ?said Harry pausing in the act of pulling off his robes .She didnt want me to come back to Hogwarts .Seamus turned away from his poster and pulled his own pajamas out of his trunk still not looking at Harry .But why ?said Harry astonished .He knew that Seamuss mother was a witch and could not understand therefore why she should have come over so Dursleyish .Seamus did not answer until he had finished buttoning his pajamas .Well he said in a measured voice I suppose .because of you .What dyou mean ?said Harry quickly .His heart was beating rather fast .He felt vaguely as though something was closing in on him .Well said Seamus again still avoiding Harrys eyes she .er .well its not just you its Dumbledore too .She believes the Daily Prophet ?said Harry .She thinks Im a liar and Dumbledore s an old fool ?Seamus looked up at him .Yeah something like that .Harry said nothing .He threw his wand down onto his bedside table pulled off his robes stuffed them angrily into his trunk and pulled on his pajamas .He was sick of it sick of being the person who was stared at and talked about all the time .If any of them knew if any of them had the faintest idea what it felt like to be the one all these things had happened to .Mrs Finnigan had no idea the stupid woman he thought savagely .He got into bed and made to pull the hangings closed around him but before he could do so Seamus said Look .what did happen that night when .you know when .with Cedric Diggory and all ?Seamus sounded nervous and eager at the same time .Dean who had been bending over his trunk trying to retrieve a slipper went oddly still and Harry knew he was listening hard .What are you asking me for ?Harry retorted .Just read the Daily Prophet like your mother why dont you ?Thatll tell you all you need to know .Dont you have a go at my mother snapped Seamus .Ill have a go at anyone who calls me a liar said Harry .Dont talk to me like that !Ill talk to you how I want said Harry his temper rising so fast he snatched his wand back from his bedside table .If youve got a problem sharing a dormitory with me go and ask McGonagall if you can be moved stop your mummy worrying Leave my mother out of this Potter !Whats going on ?Ron had appeared in the doorway .His wide eyes traveled from Harry who was kneeling on his bed with his wand pointing at Seamus to Seamus who was standing there with his fists raised .Hes having a go at my mother !Seamus yelled .What ?said Ron .Harry wouldnt do that we met your mother we liked her .Thats before she started believing every word the stinking Daily Prophet writes about me !said Harry at the top of his voice .Oh said Ron comprehension dawning across his freckled face .Oh .right .You know what ?said Seamus heatedly casting Harry a venomous look .Hes right I dont want to share a dormitory with him anymore hes a madman .Thats out of order Seamus said Ron whose ears were starting to glow red always a danger sign .Out of order am I ?shouted Seamus who in contrast with Ron was turning paler .You believe all the rubbish hes come out with about YouKnowWho do you you reckon hes telling the truth ?Yeah I do !said Ron angrily .Then youre mad too said Seamus in disgust .Yeah ?Well unfortunately for you pal Im also a prefect !said Ron jabbing himself in the chest with a finger .So unless you want detention watch your mouth !Seamus looked for a few seconds as though detention would be a reasonable price to pay to say what was going through his mind but with a noise of contempt he turned on his heel vaulted into bed and pulled the hangings shut with such violence that they were ripped from the bed and fell in a dusty pile to the floor .Ron glared at Seamus then looked at Dean and Neville .Anyone elses parents got a problem with Harry ?he said aggressively .My parents are Muggles mate said Dean shrugging .They dont know nothing about no deaths at Hogwarts because Im not stupid enough to tell them .You dont know my mother shell weasel anything out of anyone !Seamus snapped at him .Anyway your parents dont get the Daily Prophet they dont know our headmasters been sacked from the Wizengamot and the International Confederation of Wizards because hes losing his marbles My gran says thats rubbish piped up Neville .She says its the Daily Prophet thats going downhill not Dumbledore .Shes canceled our subscription .We believe Harry he said simply .He climbed into bed and pulled the covers up to his chin looking owlishly over them at Seamus .My grans always said You KnowWho would come back one day .She says if Dumbledore says hes back hes back .Harry felt a rush of gratitude toward Neville .Nobody else said anything .Seamus got out his wand repaired the bed hangings and vanished behind them .Dean got into bed rolled over and fell silent .Neville who appeared to have nothing more to say either was gazing fondly at his moonlit cactus .Harry lay back on his pillows while Ron bustled around the next bed putting his things away .He felt shaken by the argument with Seamus whom he had always liked very much .How many more people were going to suggest that he was lying or unhinged ?Had Dumbledore suffered like this all summer as first the Wizengamot then the International Confederation of Wizards had thrown him from their ranks ?Was it anger at Harry perhaps that had stopped Dumbledore getting in touch with him for months ?The two of them were in this together after all Dumbledore had believed Harry announced his version of events to the whole school and then to the wider Wizarding community .Anyone who thought Harry was a liar had to think that Dumbledore was too or else that Dumbledore had been hoodwinked .Theyll know were right in the end thought Harry miserably as Ron got into bed and extinguished the last candle in the dormitory .But he wondered how many attacks like Seamuss he would have to endure before that time came .PROFESSOR UMBRIDGE Seamus dressed at top speed next morning and left the dormitory before Harry had even put on his socks .Does he think hell turn into a nutter if he stays in a room with me too long ?asked Harry loudly as the hem of Seamuss robes whipped out of sight .Dont worry about it Harry Dean muttered hoisting his schoolbag onto his shoulder .Hes just .But apparently he was unable to say exactly what Seamus was and after a slightly awkward pause followed him out of the room .Neville and Ron both gave Harry itshisproblemnot yours looks but Harry was not much consoled .How much more of this was he going to have to take ?Whats the matter ?asked Hermione five minutes later catching up with Harry and Ron halfway across the common room as they all headed toward breakfast .You look absolutely oh for heavens sake .She was staring at the common room notice board where a large new sign had been put up .GALLONS OF GALLEONS !Pocket money failing to keep pace with your outgoings ?Like to earn a little extra gold ?Contact Fred and George Weasley Gryffindor common room for simple parttime virtually painless jobs WE REGRET THAT ALL WORK IS UNDERTAKEN AT APPLICANTS OWN RISK They are the limit said Hermione grimly taking down the sign which Fred and George had pinned up over a poster giving the date of the first Hogsmeade weekend in October .Well have to talk to them Ron .Ron looked positively alarmed .Why ?Because were prefects !said Hermione as they climbed out through the portrait hole .Its up to us to stop this kind of thing !Ron said nothing Harry could tell from his glum expression that the prospect of stopping Fred and George doing exactly what they liked was not one that he found inviting .Anyway whats up Harry ?Hermione continued as they walked down a flight of stairs lined with portraits of old witches and wizards all of whom ignored them being engrossed in their own conversation .You look really angry about something .Seamus reckons Harrys lying about YouKnow Who said Ron succinctly when Harry did not respond .Hermione whom Harry had expected to react angrily on his behalf sighed .Yes Lavender thinks so too she said gloomily .Been having a nice little chat with her about whether or not Im a lying attentionseeking prat have you ?Harry said loudly .No said Hermione calmly I told her to keep her big fat mouth shut about you actually .And it would be quite nice if you stopped jumping down Rons and my throats Harry because if you havent noticed were on your side .There was a short pause .Sorry said Harry in a low voice .Thats quite all right said Hermione with dignity .Then she shook her head .Dont you remember what Dumbledore said at the endofterm feast last year ?Harry and Ron both looked at her blankly and Hermione sighed again .About YouKnowWho .He said ‘His gift for spreading discord and enmity is very great .We can fight it only by showing an equally strong bond of friendship and trust How do you remember stuff like that ?asked Ron looking at her in admiration .I listen Ron said Hermione with a touch of asperity .So do I but I still couldnt tell you exactly what The point Hermione pressed on loudly is that this sort of thing is exactly what Dumbledore was talking about .YouKnow Whos only been back two months and weve started fighting among ourselves .And the Sorting Hats warning was the same stand together be united And Harry said it last night retorted Ron if that means were supposed to get matey with the Slytherins fat chance .Well I think its a pity were not trying for a bit of interHouse unity said Hermione crossly .They had reached the foot of the marble staircase .A line of fourthyear Ravenclaws was crossing the entrance hall they caught sight of Harry and hurried to form a tighter group as though frightened he might attack stragglers .Yeah we really ought to be trying to make friends with people like that said Harry sarcastically .They followed the Ravenclaws into the Great Hall looking instinctively at the staff table as they entered .Professor GrubblyPlank was chatting to Professor Sinistra the Astronomy teacher and Hagrid was once again conspicuous only by his absence .The enchanted ceiling above them echoed Harrys mood it was a miserable raincloud gray .Dumbledore didnt even mention how long that GrubblyPlank womans staying he said as they made their way across to the Gryffindor table .Maybe .said Hermione thoughtfully .What ?said both Harry and Ron together .Well .maybe he didnt want to draw attention to Hagrid not being here .What dyou mean draw attention to it ?said Ron half laughing .How could we not notice ?Before Hermione could answer a tall black girl with long braided hair had marched up to Harry .Hi Angelina .Hi she said briskly good summer ?And without waiting for an answer Listen Ive been made Gryffindor Quidditch Captain .Nice one said Harry grinning at her he suspected Angelinas pep talks might not be as longwinded as Oliver Woods had been which could only be an improvement .Yeah well we need a new Keeper now Olivers left .Tryouts are on Friday at five oclock and I want the whole team there all right ?Then we can see how the new personll fit in .Okay said Harry and she smiled at him and departed .Id forgotten Wood had left said Hermione vaguely sitting down beside Ron and pulling a plate of toast toward her .I suppose that will make quite a difference to the team ?I spose said Harry taking the bench opposite .He was a good Keeper .Still it wont hurt to have some new blood will it ?said Ron .With a whoosh and a clatter hundreds of owls came soaring in through the upper windows .They descended all over the Hall bringing letters and packages to their owners and showering the breakfasters with droplets of water it was clearly raining hard outside .Hedwig was nowhere to be seen but Harry was hardly surprised his only correspondent was Sirius and he doubted Sirius would have anything new to tell him after only twentyfour hours apart .Hermione however had to move her orange juice aside quickly to make way for a large damp barn owl bearing a sodden Daily Prophet in its beak .What are you still getting that for ?said Harry irritably thinking of Seamus as Hermione placed a Knut in the leather pouch on the owls leg and it took off again .Im not bothering .load of rubbish .Its best to know what the enemy are saying said Hermione darkly and she unfurled the newspaper and disappeared behind it not emerging until Harry and Ron had finished eating .Nothing she said simply rolling up the newspaper and laying it down by her plate .Nothing about you or Dumbledore or anything .Professor McGonagall was now moving along the table handing out schedules .Look at today !groaned Ron .History of Magic double Potions Divination and double Defense Against the Dark Arts .Binns Snape Trelawney and that Umbridge woman all in one day !I wish Fred and George d hurry up and get those Skiving Snackboxes sorted .Do mine ears deceive me ?said Fred arriving with George and squeezing onto the bench beside Harry .Hogwarts prefects surely dont wish to skive off lessons ?Look what weve got today said Ron grumpily shoving his schedule under Freds nose .Thats the worst Monday Ive ever seen .Fair point little bro said Fred scanning the column .You can have a bit of Nosebleed Nougat cheap if you like .Whys it cheap ?said Ron suspiciously .Because youll keep bleeding till you shrivel up we havent got an antidote yet said George helping himself to a kipper .Cheers said Ron moodily pocketing his schedule but I think Ill take the lessons .And speaking of your Skiving Snackboxes said Hermione eyeing Fred and George beadily you cant advertise for testers on the Gryffindor notice board .Says who ?said George looking astonished .Says me said Hermione .And Ron .Leave me out of it said Ron hastily .Hermione glared at him .Fred and George sniggered .Youll be singing a different tune soon enough Hermione said Fred thickly buttering a crumpet .Youre starting your fifth year youll be begging us for a Snackbox before long .And why would starting fifth year mean I want a Skiving Snackbox ?asked Hermione .Fifth years O .W .L .year said George .So ?So youve got your exams coming up havent you ?Theyll be keeping your noses so hard to that grindstone theyll be rubbed raw said Fred with satisfaction .Half our year had minor breakdowns coming up to O .W .L .s said George happily .Tears and tantrums .Patricia Stimpson kept coming over faint .Kenneth Towler came out in boils dyou remember ?said Fred reminiscently .Thats cause you put Bulbadox Powder in his pajamas said George .Oh yeah said Fred grinning .Id forgotten .Hard to keep track sometimes isnt it ?Anyway its a nightmare of a year the fifth said George .If you care about exam results anyway .Fred and I managed to keep our spirits up somehow .Yeah .you got what was it three O .W .L .s each ?said Ron .Yep said Fred unconcernedly .But we feel our futures lie outside the world of academic achievement .We seriously debated whether we were going to bother coming back for our seventh year said George brightly now that weve got He broke off at a warning look from Harry who knew George had been about to mention the Triwizard winnings he had given them .now that weve got our O .W .L .s George said hastily .I mean do we really need N .E .W .T .s ?But we didnt think Mum could take us leaving school early not on top of Percy turning out to be the worlds biggest prat .Were not going to waste our last year here though said Fred looking affectionately around at the Great Hall .Were going to use it to do a bit of market research find out exactly what the average Hogwarts student requires from his joke shop carefully evaluate the results of our research and then produce the products to fit the demand .But where are you going to get the gold to start a joke shop ?asked Hermione skeptically .Youre going to need all the ingredients and materials and premises too I suppose .Harry did not look at the twins .His face felt hot he deliberately dropped his fork and dived down to retrieve it .He heard Fred say overhead Ask us no questions and well tell you no lies Hermione .Cmon George if we get there early we might be able to sell a few Extendable Ears before Herbology .Harry emerged from under the table to see Fred and George walking away each carrying a stack of toast .What did that mean ?said Hermione looking from Harry to Ron . ‘Ask us no questions .Does that mean theyve already got some gold to start a joke shop ?You know Ive been wondering about that said Ron his brow furrowed .They bought me a new set of dress robes this summer and I couldnt understand where they got the Galleons .Harry decided it was time to steer the conversation out of these dangerous waters .Dyou reckon its true this years going to be really tough ?Because of the exams ?Oh yeah said Ron .Bound to be isnt it ?O .W .L .s are really important affect the jobs you can apply for and everything .We get career advice too later this year Bill told me .So you can choose what N .E .W .T .s you want to do next year .Dyou know what you want to do after Hogwarts ?Harry asked the other two as they left the Great Hall shortly afterward and set off toward their History of Magic classroom .Not really said Ron slowly .Except .well .He looked slightly sheepish .What ?Harry urged him .Well itd be cool to be an Auror said Ron in an offhand voice .Yeah it would said Harry fervently .But theyre like the elite said Ron .Youve got to be really good .What about you Hermione ?I dont know said Hermione .I think Id really like to do something worthwhile .An Aurors worthwhile !said Harry .Yes it is but its not the only worthwhile thing said Hermione thoughtfully .I mean if I could take S .P .E .W .further .Harry and Ron carefully avoided looking at each other .History of Magic was by common consent the most boring subject ever devised by Wizardkind .Professor Binns their ghost teacher had a wheezy droning voice that was almost guaranteed to cause severe drowsiness within ten minutes five in warm weather .He never varied the form of their lessons but lectured them without pausing while they took notes or rather gazed sleepily into space .Harry and Ron had so far managed to scrape passes in this subject only by copying Hermiones notes before exams she alone seemed able to resist the soporific power of Binns s voice .Today they suffered through three quarters of an hours droning on the subject of giant wars .Harry heard just enough within the first ten minutes to appreciate dimly that in another teachers hands this subject might have been mildly interesting but then his brain disengaged and he spent the remaining thirtyfive minutes playing hangman on a corner of his parchment with Ron while Hermione shot them filthy looks out of the corner of her eye .How would it be she asked them coldly as they left the classroom for break Binns drifting away through the blackboard if I refused to lend you my notes this year ?Wed fail our O .W .L .s said Ron .If you want that on your conscience Hermione .Well youd deserve it she snapped .You dont even try to listen to him do you ?We do try said Ron .We just havent got your brains or your memory or your concentration youre just cleverer than we are is it nice to rub it in ?Oh dont give me that rubbish said Hermione but she looked slightly mollified as she led the way out into the damp courtyard .A fine misty drizzle was falling so that the people standing in huddles around the yard looked blurred at the edges .Harry Ron and Hermione chose a secluded corner under a heavily dripping balcony turning up the collars of their robes against the chilly September air and talking about what Snape was likely to set them in the first lesson of the year .They had got as far as agreeing that it was likely to be something extremely difficult just to catch them off guard after a twomonth holiday when someone walked around the corner toward them .Hello Harry !It was Cho Chang and what was more she was on her own again .This was most unusual Cho was almost always surrounded by a gang of giggling girls Harry remembered the agony of trying to get her by herself to ask her to the Yule Ball .Hi said Harry feeling his face grow hot .At least youre not covered in Stinksap this time he told himself .Cho seemed to be thinking along the same lines .You got that stuff off then ?Yeah said Harry trying to grin as though the memory of their last meeting was funny as opposed to mortifying .So did you .er .have a good summer ?The moment he had said this he wished he hadnt Cedric had been Chos boyfriend and the memory of his death must have affected her holiday almost as badly as it had affected Harrys .Something seemed to tauten in her face but she said Oh it was all right you know .Is that a Tornados badge ?Ron demanded suddenly pointing at the front of Chos robes to which a sky blue badge emblazoned with a double gold T was pinned .You dont support them do you ?Yeah I do said Cho .Have you always supported them or just since they started winning the league ?said Ron in what Harry considered an unnecessarily accusatory tone of voice .Ive supported them since I was six said Cho coolly .Anyway .see you Harry .She walked away .Hermione waited until Cho was halfway across the courtyard before rounding on Ron .You are so tactless !What ?I only asked her if Couldnt you tell she wanted to talk to Harry on her own ?So ?She couldve done I wasnt stopping What on earth were you attacking her about her Quidditch team for ?Attacking ?I wasnt attacking her I was only Who cares if she supports the Tornados ?Oh come on half the people you see wearing those badges only bought them last season But what does it matter ?It means theyre not real fans theyre just jumping on the bandwagon Thats the bell said Harry listlessly because Ron and Hermione were bickering too loudly to hear it .They did not stop arguing all the way down to Snapes dungeon which gave Harry plenty of time to reflect that between Neville and Ron he would be lucky ever to have two minutes conversation with Cho that he could look back on without wanting to leave the country .And yet he thought as they joined the queue lining up outside Snapes classroom door she had chosen to come and talk to him hadnt she ?She had been Cedrics girlfriend she could easily have hated Harry for coming out of the Triwizard maze alive when Cedric had died yet she was talking to him in a perfectly friendly way not as though she thought him mad or a liar or in some horrible way responsible for Cedrics death .Yes she had definitely chosen to come and talk to him and that made the second time in two days .and at this thought Harrys spirits rose .Even the ominous sound of Snapes dungeon door creaking open did not puncture the small hopeful bubble that seemed to have swelled in his chest .He filed into the classroom behind Ron and Hermione and followed them to their usual table at the back ignoring the huffy irritable noises now issuing from both of them .Settle down said Snape coldly shutting the door behind him .There was no real need for the call to order the moment the class had heard the door close quiet had fallen and all fidgeting stopped .Snapes mere presence was usually enough to ensure a classs silence .Before we begin todays lesson said Snape sweeping over to his desk and staring around at them all I think it appropriate to remind you that next June you will be sitting an important examination during which you will prove how much you have learned about the composition and use of magical potions .Moronic though some of this class undoubtedly are I expect you to scrape an ‘Acceptable in your O .W .L .or suffer my .displeasure .His gaze lingered this time upon Neville who gulped .After this year of course many of you will cease studying with me Snape went on .I take only the very best into my N .E .W .T .Potions class which means that some of us will certainly be saying good bye .His eyes rested on Harry and his lip curled .Harry glared back feeling a grim pleasure at the idea that he would be able to give up Potions after fifth year .But we have another year to go before that happy moment of farewell said Snape softly so whether you are intending to attempt N .E .W .T .or not I advise all of you to concentrate your efforts upon maintaining the highpass level I have come to expect from my O .W .L .students .Today we will be mixing a potion that often comes up at Ordinary Wizarding Level the Draught of Peace a potion to calm anxiety and soothe agitation .Be warned If you are too heavyhanded with the ingredients you will put the drinker into a heavy and sometimes irreversible sleep so you will need to pay close attention to what you are doing .On Harrys left Hermione sat up a little straighter her expression one of the utmost attentiveness .The ingredients and method Snape flicked his wand are on the blackboard they appeared there you will find everything you need he flicked his wand again in the store cupboard the door of the said cupboard sprang open you have an hour and a half .Start .Just as Harry Ron and Hermione had predicted Snape could hardly have set them a more difficult fiddly potion .The ingredients had to be added to the cauldron in precisely the right order and quantities the mixture had to be stirred exactly the right number of times firstly in clockwise then in counterclockwise directions the heat of the flames on which it was simmering had to be lowered to exactly the right level for a specific number of minutes before the final ingredient was added .A light silver vapor should now be rising from your potion called Snape with ten minutes left to go .Harry who was sweating profusely looked desperately around the dungeon .His own cauldron was issuing copious amounts of dark gray steam Rons was spitting green sparks .Seamus was feverishly prodding the flames at the base of his cauldron with the tip of his wand as they had gone out .The surface of Hermiones potion however was a shimmering mist of silver vapor and as Snape swept by he looked down his hooked nose at it without comment which meant that he could find nothing to criticize .At Harrys cauldron however Snape stopped looking down at Harry with a horrible smirk on his face .Potter what is this supposed to be ?The Slytherins at the front of the class all looked up eagerly they loved hearing Snape taunt Harry .The Draught of Peace said Harry tensely .Tell me Potter said Snape softly can you read ?Draco Malfoy laughed .Yes I can said Harry his fingers clenched tightly around his wand .Read the third line of the instructions for me Potter .Harry squinted at the blackboard it was not easy to make out the instructions through the haze of multicolored steam now filling the dungeon . ‘Add powdered moonstone stir three times counterclockwise allow to simmer for seven minutes then add two drops of syrup of hellebore .His heart sank .He had not added syrup of hellebore but had proceeded straight to the fourth line of the instructions after allowing his potion to simmer for seven minutes .Did you do everything on the third line Potter ?No said Harry very quietly .I beg your pardon ?No said Harry more loudly .I forgot the hellebore .I know you did Potter which means that this mess is utterly worthless .Evanesco .The contents of Harrys potion vanished he was left standing foolishly beside an empty cauldron .Those of you who have managed to read the instructions fill one flagon with a sample of your potion label it clearly with your name and bring it up to my desk for testing said Snape .Homework twelve inches of parchment on the properties of moonstone and its uses in potionmaking to be handed in on Thursday .While everyone around him filled their flagons Harry cleared away his things seething .His potion had been no worse than Rons which was now giving off a foul odor of bad eggs or Nevilles which had achieved the consistency of justmixed cement and which Neville was now having to gouge out of his cauldron yet it was he Harry who would be receiving zero marks for the days work .He stuffed his wand back into his bag and slumped down onto his seat watching everyone else march up to Snapes desk with filled and corked flagons .When at long last the bell rang Harry was first out of the dungeon and had already started his lunch by the time Ron and Hermione joined him in the Great Hall .The ceiling had turned an even murkier gray during the morning .Rain was lashing the high windows .That was really unfair said Hermione consolingly sitting down next to Harry and helping herself to shepherds pie .Your potion wasnt nearly as bad as Goyles when he put it in his flagon the whole thing shattered and set his robes on fire .Yeah well said Harry glowering at his plate since when has Snape ever been fair to me ?Neither of the others answered all three of them knew that Snape and Harrys mutual enmity had been absolute from the moment Harry had set foot in Hogwarts .I did think he might be a bit better this year said Hermione in a disappointed voice .I mean .you know .She looked carefully around there were half a dozen empty seats on either side of them and nobody was passing the table .Now hes in the Order and everything .Poisonous toadstools dont change their spots said Ron sagely .Anyway Ive always thought Dumbledore was cracked trusting Snape wheres the evidence he ever really stopped working for YouKnowWho ?I think Dumbledores probably got plenty of evidence even if he doesnt share it with you Ron snapped Hermione .Oh shut up the pair of you said Harry heavily as Ron opened his mouth to argue back .Hermione and Ron both froze looking angry and offended .Cant you give it a rest ?he said .Youre always having a go at each other its driving me mad .And abandoning his shepherds pie he swung his schoolbag back over his shoulder and left them sitting there .He walked up the marble staircase two steps at a time past the many students hurrying toward lunch .The anger that had just flared so unexpectedly still blazed inside him and the vision of Ron and Hermione s shocked faces afforded him a sense of deep satisfaction .Serve them right he thought .Why cant they give it a rest ? .Bickering all the time .Its enough to drive anyone up the wall .He passed the large picture of Sir Cadogan the knight on a landing Sir Cadogan drew his sword and brandished it fiercely at Harry who ignored him .Come back you scurvy dog stand fast and fight !yelled Sir Cadogan in a muffled voice from behind his visor but Harry merely walked on and when Sir Cadogan attempted to follow him by running into a neighboring picture he was rebuffed by its inhabitant a large and angrylooking wolfhound .Harry spent the rest of the lunch hour sitting alone underneath the trapdoor at the top of North Tower and consequently he was the first to ascend the silver ladder that led to Sibyll Trelawneys classroom when the bell rang .Divination was Harrys least favorite class after Potions which was due mainly to Professor Trelawneys habit of predicting his premature death every few lessons .A thin woman heavily draped in shawls and glittering with strings of beads she always reminded Harry of some kind of insect with her glasses hugely magnifying her eyes .She was busy putting copies of battered leatherbound books on each of the spindly little tables with which her room was littered when Harry entered the room but so dim was the light cast by the lamps covered by scarves and the lowburning sicklyscented fire that she appeared not to notice him as he took a seat in the shadows .The rest of the class arrived over the next five minutes .Ron emerged from the trapdoor looked around carefully spotted Harry and made directly for him or as directly as he could while having to wend his way between tables chairs and overstuffed poufs .Hermione and me have stopped arguing he said sitting down beside Harry .Good grunted Harry .But Hermione says she thinks it would be nice if you stopped taking out your temper on us said Ron .Im not Im just passing on the message said Ron talking over him .But I reckon shes right .Its not our fault how Seamus and Snape treat you .I never said it Good day said Professor Trelawney in her usual misty dreamy voice and Harry broke off feeling both annoyed and slightly ashamed of himself again .And welcome back to Divination .I have of course been following your fortunes most carefully over the holidays and am delighted to see that you have all returned to Hogwarts safely as of course I knew you would .You will find on the tables before you copies of The Dream Oracle by Inigo Imago .Dream interpretation is a most important means of divining the future and one that may very probably be tested in your O .W .L .Not of course that I believe examination passes or failures are of the remotest importance when it comes to the sacred art of divination .If you have the Seeing Eye certificates and grades matter very little .However the headmaster likes you to sit the examination so .Her voice trailed away delicately leaving them all in no doubt that Professor Trelawney considered her subject above such sordid matters as examinations .Turn please to the introduction and read what Imago has to say on the matter of dream interpretation .Then divide into pairs .Use The Dream Oracle to interpret each others most recent dreams .Carry on .The one good thing to be said for this lesson was that it was not a double period .By the time they had all finished reading the introduction of the book they had barely ten minutes left for dream interpretation .At the table next to Harry and Ron Dean had paired up with Neville who immediately embarked on a long winded explanation of a nightmare involving a pair of giant scissors wearing his grandmothers best hat Harry and Ron merely looked at each other glumly .I never remember my dreams said Ron .You say one .You must remember one of them said Harry impatiently .He was not going to share his dreams with anyone .He knew perfectly well what his regular nightmare about a graveyard meant he did not need Ron or Professor Trelawney or the stupid Dream Oracle to tell him that .Well I had one that I was playing Quidditch the other night said Ron screwing up his face in an effort to remember .What dyou reckon that means ?Probably that youre going to be eaten by a giant marshmallow or something said Harry turning the pages of The Dream Oracle without interest .It was very dull work looking up bits of dreams in the Oracle and Harry was not cheered up when Professor Trelawney set them the task of keeping a dream diary for a month as homework .When the bell went he and Ron led the way back down the ladder Ron grumbling loudly .Dyou realize how much homework weve got already ?Binns set us a footandahalflong essay on giant wars Snape wants a foot on the use of moonstones and now weve got a months dream diary from Trelawney !Fred and George werent wrong about O .W .L .year were they ?That Umbridge woman had better not give us any .When they entered the Defense Against the Dark Arts classroom they found Professor Umbridge already seated at the teachers desk wearing the fluffy pink cardigan of the night before and the black velvet bow on top of her head .Harry was again reminded forcibly of a large fly perched unwisely on top of an even larger toad .The class was quiet as it entered the room Professor Umbridge was as yet an unknown quantity and nobody knew yet how strict a disciplinarian she was likely to be .Well good afternoon !she said when finally the whole class had sat down .A few people mumbled Good afternoon in reply .Tut tut said Professor Umbridge .That wont do now will it ?I should like you please to reply ‘Good afternoon Professor Umbridge .One more time please .Good afternoon class !Good afternoon Professor Umbridge they chanted back at her .There now said Professor Umbridge sweetly .That wasnt too difficult was it ?Wands away and quills out please .Many of the class exchanged gloomy looks the order wands away had never yet been followed by a lesson they had found interesting .Harry shoved his wand back inside his bag and pulled out quill ink and parchment .Professor Umbridge opened her handbag extracted her own wand which was an unusually short one and tapped the blackboard sharply with it words appeared on the board at once Defense Against the Dark Arts A Return to Basic Principles .Well now your teaching in this subject has been rather disrupted and fragmented hasnt it ?stated Professor Umbridge turning to face the class with her hands clasped neatly in front of her .The constant changing of teachers many of whom do not seem to have followed any Ministryapproved curriculum has unfortunately resulted in your being far below the standard we would expect to see in your O .W .L .year .You will be pleased to know however that these problems are now to be rectified .We will be following a carefully structured theorycentered Ministry approved course of defensive magic this year .Copy down the following please .She rapped the blackboard again the first message vanished and was replaced by Course aims 1 .Understanding the principles underlying defensive magic .2 .Learning to recognize situations in which defensive magic can legally be used .3 .Placing the use of defensive magic in a context for practical use .For a couple of minutes the room was full of the sound of scratching quills on parchment .When everyone had copied down Professor Umbridges three course aims she said Has everybody got a copy of Defensive Magical Theory by Wilbert Slinkhard ?There was a dull murmur of assent throughout the class .I think well try that again said Professor Umbridge .When I ask you a question I should like you to reply ‘Yes Professor Umbridge or ‘No Professor Umbridge .So has everyone got a copy of Defensive Magical Theory by Wilbert Slinkhard ?Yes Professor Umbridge rang through the room .Good said Professor Umbridge .I should like you to turn to page five and read chapter one ‘Basics for Beginners .There will be no need to talk .Professor Umbridge left the blackboard and settled herself in the chair behind the teachers desk observing them all with those pouchy toads eyes .Harry turned to page five of his copy of Defensive Magical Theory and started to read .It was desperately dull quite as bad as listening to Professor Binns .He felt his concentration sliding away from him he had soon read the same line half a dozen times without taking in more than the first few words .Several silent minutes passed .Next to him Ron was absentmindedly turning his quill over and over in his fingers staring at the same spot on the page .Harry looked right and received a surprise to shake him out of his torpor .Hermione had not even opened her copy of Defensive Magical Theory .She was staring fixedly at Professor Umbridge with her hand in the air .Harry could not remember Hermione ever neglecting to read when instructed to or indeed resisting the temptation to open any book that came under her nose .He looked at her questioningly but she merely shook her head slightly to indicate that she was not about to answer questions and continued to stare at Professor Umbridge who was looking just as resolutely in another direction .After several more minutes had passed however Harry was not the only one watching Hermione .The chapter they had been instructed to read was so tedious that more and more people were choosing to watch Hermiones mute attempt to catch Professor Umbridges eye than to struggle on with Basics for Beginners .When more than half the class were staring at Hermione rather than at their books Professor Umbridge seemed to decide that she could ignore the situation no longer .Did you want to ask something about the chapter dear ?she asked Hermione as though she had only just noticed her .Not about the chapter no said Hermione .Well were reading just now said Professor Umbridge showing her small pointed teeth .If you have other queries we can deal with them at the end of class .Ive got a query about your course aims said Hermione .Professor Umbridge raised her eyebrows .And your name is ?Hermione Granger said Hermione .Well Miss Granger I think the course aims are perfectly clear if you read them through carefully said Professor Umbridge in a voice of determined sweetness .Well I dont said Hermione bluntly .Theres nothing written up there about using defensive spells .There was a short silence in which many members of the class turned their heads to frown at the three course aims still written on the blackboard .Using defensive spells ?Professor Umbridge repeated with a little laugh .Why I cant imagine any situation arising in my classroom that would require you to use a defensive spell Miss Granger .You surely arent expecting to be attacked during class ?Were not going to use magic ?Ron ejaculated loudly .Students raise their hands when they wish to speak in my class Mr ?Weasley said Ron thrusting his hand into the air .Professor Umbridge smiling still more widely turned her back on him .Harry and Hermione immediately raised their hands too .Professor Umbridges pouchy eyes lingered on Harry for a moment before she addressed Hermione .Yes Miss Granger ?You wanted to ask something else ?Yes said Hermione .Surely the whole point of Defense Against the Dark Arts is to practice defensive spells ?Are you a Ministrytrained educational expert Miss Granger ?asked Professor Umbridge in her falsely sweet voice .No but Well then Im afraid you are not qualified to decide what the Svhole point of any class is .Wizards much older and cleverer than you have devised our new program of study .You will be learning about defensive spells in a secure riskfree way What use is that ?said Harry loudly .If were going to be attacked it wont be in a Hand Mr Potter !sang Professor Umbridge .Harry thrust his fist in the air .Professor Umbridge promptly turned away from him again but now several other people had their hands up too .And your name is ?Professor Umbridge said to Dean .Dean Thomas .Well Mr Thomas ?Well its like Harry said isnt it ?said Dean .If were going to be attacked it wont be riskfree I repeat said Professor Umbridge smiling in a very irritating fashion at Dean do you expect to be attacked during my classes ?No but Professor Umbridge talked over him .I do not wish to criticize the way things have been run in this school she said an unconvincing smile stretching her wide mouth but you have been exposed to some very irresponsible wizards in this class very irresponsible indeed not to mention she gave a nasty little laugh extremely dangerous halfbreeds .If you mean Professor Lupin piped up Dean Thomas angrily he was the best we ever Hand Mr Thomas !As I was saying you have been introduced to spells that have been complex inappropriate to your age group and potentially lethal .You have been frightened into believing that you are likely to meet Dark attacks every other day No we havent Hermione said we just Your hand is not up Miss Grangeii Hermione put up her hand Professor Umbridge turned away from her .It is my understanding that my predecessor not only performed illegal curses in front of you he actually performed them on you Well he turned out to be a maniac didnt he ?said Dean Thomas hotly .Mind you we still learned loads Your hand is not up Mr ThomasY trilled Professor Umbridge .Now it is the view of the Ministry that a theoretical knowledge will be more than sufficient to get you through your examination which after all is what school is all about .And your name is ?she added staring at Parvati whose hand had just shot up .Parvati Patil and isnt there a practical bit in our Defense Against the Dark Arts O .W .L .Arent we supposed to show that we can actually do the countercurses and things ?As long as you have studied the theory hard enough there is no reason why you should not be able to perform the spells under carefully controlled examination conditions said Professor Umbridge dismissively .Without ever practicing them before ?said Parvati incredulously .Are you telling us that the first time well get to do the spells will be during our exam ?I repeat as long as you have studied the theory hard enough And what goods theory going to be in the real world ?said Harry loudly his fist in the air again .Professor Umbridge looked up .This is school Mr Potter not the real world she said softly .So were not supposed to be prepared for whats waiting out there ?There is nothing waiting out there Mr Potter .Oh yeah ?said Harry .His temper which seemed to have been bubbling just beneath the surface all day was reaching boiling point .Who do you imagine wants to attack children like yourselves ?inquired Professor Umbridge in a horribly honeyed voice .Hmm lets think .said Harry in a mock thoughtful voice maybe Lord Voldemort ?Ron gasped Lavender Brown uttered a little scream Neville slipped sideways off his stool .Professor Umbridge however did not flinch .She was staring at Harry with a grimly satisfied expression on her face .Ten points from Gryffindor Mr Potter .The classroom was silent and still .Everyone was staring at either Umbridge or Harry .Now let me make a few things quite plain .Professor Umbridge stood up and leaned toward them her stubbyfingered hands splayed on her desk .You have been told that a certain Dark wizard has returned from the dead He wasnt dead said Harry angrily but yeah hes returned !Mr PotteryouhavealreadylostyourHouseten pointsdonotmakemattersworseforyourself said Professor Umbridge in one breath without looking at him .As I was saying you have been informed that a certain Dark wizard is at large once again .This is a lie .It is NOT a lie !said Harry .I saw him I fought him !Detention Mr Potter !said Professor Umbridge triumphantly .Tomorrow evening .Five oclock .My office .I repeat this is a lie .The Ministry of Magic guarantees that you are not in danger from any Dark wizard .If you are still worried by all means come and see me outside class hours .If someone is alarming you with fibs about reborn Dark wizards I would like to hear about it .I am here to help .I am your friend .And now you will kindly continue your reading .Page five ‘Basics for Beginners .Professor Umbridge sat down behind her desk again .Harry however stood up .Everyone was staring at him Seamus looked halfscared halffascinated .Harry no !Hermione whispered in a warning voice tugging at his sleeve but Harry jerked his arm out of her reach .So according to you Cedric Diggory dropped dead of his own accord did he ?Harry asked his voice shaking .There was a collective intake of breath from the class for none of them apart from Ron and Hermione had ever heard Harry talk about what had happened on the night that Cedric had died .They stared avidly from Harry to Professor Umbridge who had raised her eyes and was staring at him without a trace of a fake smile on her face .Cedric Diggorys death was a tragic accident she said coldly .It was murder said Harry .He could feel himself shaking .He had hardly talked to anyone about this least of all thirty eagerly listening classmates .Voldemort killed him and you know it .Professor Umbridges face was quite blank .For a moment he thought she was going to scream at him .Then she said in her softest most sweetly girlish voice Come here Mr Potter dear .He kicked his chair aside strode around Ron and Hermione and up to the teachers desk .He could feel the rest of the class holding its breath .He felt so angry he did not care what happened next .Professor Umbridge pulled a small roll of pink parchment out of her handbag stretched it out on the desk dipped her quill into a bottle of ink and started scribbling hunched over so that Harry could not see what she was writing .Nobody spoke .After a minute or so she rolled up the parchment and tapped it with her wand it sealed itself seamlessly so that he could not open it .Take this to Professor McGonagall dear said Professor Umbridge holding out the note to him .He took it from her without saying a word and left the room not even looking back at Ron and Hermione and slamming the classroom door shut behind him .He walked very fast along the corridor the note to McGonagall clutched tight in his hand and turning a corner walked slap into Peeves the Poltergeist a wide faced little man floating on his back in midair juggling several inkwells .Why its Potty Wee Potter !cackled Peeves allowing two of the inkwells to fall to the ground where they smashed and spattered the walls with ink Harry jumped backward out of the way with a snarl .Get out of it Peeves .Oooh Crackpots feeling cranky said Peeves pursuing Harry along the corridor leering as he zoomed along above him .What is it this time my fine Potty friend ?Hearing voices ?Seeing visions ?Speaking in Peeves blew a gigantic raspberry tongues ?I said leave me ALONE !Harry shouted running down the nearest flight of stairs but Peeves merely slid down the banister on his back beside him .Oh most think hes barking the Potty wee lad But some are more kindly and think hes just sad But Peevesy knows better and says that hes mad SHUT UP !A door to his left flew open and Professor McGonagall emerged from her office looking grim and slightly harassed .What on earth are you shouting about Potter ?she snapped as Peeves cackled gleefully and zoomed out of sight .Why arent you in class ?Ive been sent to see you said Harry stiffly .Sent ?What do you mean sent ?He held out the note from Professor Umbridge .Professor McGonagall took it from him frowning slit it open with a tap of her wand stretched it out and began to read .Her eyes zoomed from side to side behind their square spectacles as she read what Umbridge had written and with each line they became narrower .Come in here Potter .He followed her inside her study .The door closed automatically behind him .Well ?said Professor McGonagall rounding on him .Is this true ?Is what true ?Harry asked rather more aggressively than he had intended .Professor ?he added in an attempt to sound more polite .Is it true that you shouted at Professor Umbridge ?Yes said Harry .You called her a liar ?Yes .You told her HeWhoMustNotBeNamed is back ?Yes .Professor McGonagall sat down behind her desk frowning at Harry .Then she said Have a biscuit Potter .Have what ?Have a biscuit she repeated impatiently indicating a tartan tin of cookies lying on top of one of the piles of papers on her desk .And sit down .There had been a previous occasion when Harry expecting to be caned by Professor McGonagall had instead been appointed by her to the Gryffindor Quidditch team .He sank into a chair opposite her and helped himself to a Ginger Newt feeling just as confused and wrongfooted as he had done on that occasion .Professor McGonagall set down Professor Umbridges note and looked very seriously at Harry .Potter you need to be careful .Harry swallowed his mouthful of Ginger Newt and stared at her .Her tone of voice was not at all what he was used to it was not brisk crisp and stern it was low and anxious and somehow much more human than usual .Misbehavior in Dolores Umbridges class could cost you much more than House points and a detention .What do you ?Potter use your common sense snapped Professor McGonagall with an abrupt return to her usual manner .You know where she comes from you must know to whom she is reporting .The bell rang for the end of the lesson .Overhead and all around came the elephantine sounds of hundreds of students on the move .It says here shes given you detention every evening this week starting tomorrow Professor McGonagall said looking down at Umbridges note again .Every evening this week !Harry repeated horrified .But Professor couldnt you ?No I couldnt said Professor McGonagall flatly .But She is your teacher and has every right to give you detention .You will go to her room at five oclock tomorrow for the first one .Just remember Tread carefully around Dolores Umbridge .But I was telling the truth !said Harry outraged .Voldemorts back you know he is Professor Dumbledore knows he is For heavens sake Potter !said Professor McGonagall straightening her glasses angrily she had winced horribly when he had used Voldemorts name .Do you really think this is about truth or lies ?Its about keeping your head down and your temper under control !She stood up nostrils wide and mouth very thin and he stood too .Have another biscuit she said irritably thrusting the tin at him .No thanks said Harry coldly .Dont be ridiculous she snapped .He took one .Thanks he said grudgingly .Didnt you listen to Dolores Umbridges speech at the startofterm feast Potter ?Yeah said Harry .Yeah .she said .progress will be prohibited or .well it meant that .that the Ministry of Magic is trying to interfere at Hogwarts .Professor McGonagall eyed him for a moment then sniffed walked around her desk and held open the door for him .Well Im glad you listen to Hermione Granger at any rate she said pointing him out of her office .DETENTION WITH DOLORES Dinner in the Great Hall that night was not a pleasant experience for Harry .The news about his shouting match with Umbridge seemed to have traveled exceptionally fast even by Hogwarts standards .He heard whispers all around him as he sat eating between Ron and Hermione .The funny thing was that none of the whisperers seemed to mind him overhearing what they were saying about him on the contrary it was as though they were hoping he would get angry and start shouting again so that they could hear his story firsthand .He says he saw Cedric Diggory murdered .He reckons he dueled with YouKnowWho .Come off it .Who does he think hes kidding ?Pur lease .What I dont get said Harry in a shaking voice laying down his knife and fork his hands were trembling too much to hold them steady is why they all believed the story two months ago when Dumbledore told them .The thing is Harry Im not sure they did said Hermione grimly .Oh lets get out of here .She slammed down her own knife and fork Ron looked sadly at his halffinished apple pie but followed suit .People stared at them all the way out of the Hall .What dyou mean youre not sure they believed Dumbledore ?Harry asked Hermione when they reached the firstfloor landing .Look you dont understand what it was like after it happened said Hermione quietly .You arrived back in the middle of the lawn clutching Cedrics dead body .None of us saw what happened in the maze .We just had Dumbledores word for it that YouKnow Who had come back and killed Cedric and fought you .Which is the truth !said Harry loudly .I know it is Harry so will you please stop biting my head off ?said Hermione wearily .Its just that before the truth could sink in everyone went home for the summer where they spent two months reading about how youre a nutcase and Dumbledores going senile !Rain pounded on the windowpanes as they strode along the empty corridors back to Gryffindor Tower .Harry felt as though his first day had lasted a week but he still had a mountain of homework to do before bed .A dull pounding pain was developing over his right eye .He glanced out of a rainwashed window at the dark grounds as they turned into the Fat Ladys corridor .There was still no light in Hagrids cabin .Mimbulus mimbletonia said Hermione before the Fat Lady could ask .The portrait swung open to reveal the hole behind and the three of them scrambled back through it .The common room was almost empty nearly everyone was still down at dinner .Crookshanks uncoiled himself from an armchair and trotted to meet them purring loudly and when Harry Ron and Hermione took their three favorite chairs at the fireside he leapt lightly into Hermione s lap and curled up there like a furry ginger cushion .Harry gazed into the flames feeling drained and exhausted .How can Dumbledore have let this happen ?Hermione cried suddenly making Harry and Ron jump Crookshanks leapt off her looking affronted .She pounded the arms of her chair in fury so that bits of stuffing leaked out of the holes .How can he let that terrible woman teach us ?And in our O .W .L .year too !Well weve never had great Defense Against the Dark Arts teachers have we ?said Harry .You know what its like Hagrid told us nobody wants the job they say its jinxed .Yes but to employ someone whos actually refusing to let us do magic !Whats Dumbledore playing at ?And shes trying to get people to spy for her said Ron darkly .Remember when she said she wanted us to come and tell her if we hear anyone saying You Know Whos back ?Of course shes here to spy on us all thats obvious why else would Fudge have wanted her to come ?snapped Hermione .Dont start arguing again said Harry wearily as Ron opened his mouth to retaliate .Cant we just .Lets just do that homework get it out of the way .They collected their schoolbags from a corner and returned to the chairs by the fire .People were coming back from dinner now .Harry kept his face averted from the portrait hole but could still sense the stares he was attracting .Shall we do Snapes stuff first ?said Ron dipping his quill into his ink . ‘The properties .of moonstone .and its uses .in potionmaking .he muttered writing the words across the top of his parchment as he spoke them .There .He underlined the title then looked up expectantly at Hermione .So what are the properties of moonstone and its uses in potionmaking ?But Hermione was not listening she was squinting over into the far corner of the room where Fred George and Lee Jordan were now sitting at the center of a knot of innocentlooking first years all of whom were chewing something that seemed to have come out of a large paper bag that Fred was holding .No Im sorry theyve gone too far she said standing up and looking positively furious .Come on Ron .I what ?said Ron plainly playing for time .No come on Hermione we cant tell them off for giving out sweets .You know perfectly well that those are bits of Nosebleed Nougat or or Puking Pastilles or Fainting Fancies ?Harry suggested quietly .One by one as though hit over the heads with invisible mallets the first years were slumping unconscious in their seats some slid right onto the floor others merely hung over the arms of their chairs their tongues lolling out .Most of the people watching were laughing Hermione however squared her shoulders and marched directly over to where Fred and George now stood with clipboards closely observing the unconscious first years .Ron rose halfway out of his chair hovered uncertainly for a moment or two then muttered to Harry Shes got it under control before sinking as low in his chair as his lanky frame permitted .Thats enough !Hermione said forcefully to Fred and George both of whom looked up in mild surprise .Yeah youre right said George nodding this dosage looks strong enough doesnt it ?I told you this morning you cant test your rubbish on students !Were paying them !said Fred indignantly .I dont care it could be dangerous !Rubbish said Fred .Calm down Hermione theyre fine !said Lee reassuringly as he walked from first year to first year inserting purple sweets into their open mouths .Yeah look theyre coming round now said George .A few of the first years were indeed stirring .Several looked so shocked to find themselves lying on the floor or dangling off their chairs that Harry was sure Fred and George had not warned them what the sweets were going to do .Feel all right ?said George kindly to a small dark haired girl lying at his feet .II think so she said shakily .Excellent said Fred happily but the next second Hermione had snatched both his clipboard and the paper bag of Fainting Fancies from his hands .It is NOT excellent !Course it is theyre alive arent they ?said Fred angrily .You cant do this what if you made one of them really ill ?Were not going to make them ill weve already tested them all on ourselves this is just to see if everyone reacts the same If you dont stop doing it Im going to Put us in detention ?said Fred in an Idliketosee youtryit voice .Make us write lines ?said George smirking .Onlookers all over the room were laughing .Hermione drew herself up to her full height her eyes were narrowed and her bushy hair seemed to crackle with electricity .No she said her voice quivering with anger but I will write to your mother .You wouldnt said George horrified taking a step back from her .Oh yes I would said Hermione grimly .I cant stop you eating the stupid things yourselves but youre not giving them to first years .Fred and George looked thunderstruck .It was clear that as far as they were concerned Hermione s threat was way below the belt .With a last threatening look at them she thrust Freds clipboard and the bag of Fancies back into his arms and stalked back to her chair by the fire .Ron was now so low in his seat that his nose was roughly level with his knees .Thank you for your support Ron Hermione said acidly .You handled it fine by yourself Ron mumbled .Hermione stared down at her blank piece of parchment for a few seconds then said edgily Oh its no good I cant concentrate now .Im going to bed .She wrenched her bag open Harry thought she was about to put her books away but instead she pulled out two misshapen woolly objects placed them carefully on a table by the fireplace covered them with a few screwedup bits of parchment and a broken quill and stood back to admire the effect .What in the name of Merlin are you doing ?said Ron watching her as though fearful for her sanity .Theyre hats for houseelves she said briskly now stuffing her books back into her bag .I did them over the summer .Im a really slow knitter without magic but now Im back at school I should be able to make lots more .Youre leaving out hats for the houseelves ?said Ron slowly .And youre covering them up with rubbish first ?Yes said Hermione defiantly swinging her bag onto her back .Thats not on said Ron angrily .Youre trying to trick them into picking up the hats .Youre setting them free when they might not want to be free .Of course they want to be free !said Hermione at once though her face was turning pink .Dont you dare touch those hats Ron !She left .Ron waited until she had disappeared through the door to the girls dormitories then cleared the rubbish off the woolly hats .They should at least see what theyre picking up he said firmly .Anyway .He rolled up the parchment on which he had written the title of Snapes essay .Theres no point trying to finish this now I cant do it without Hermione I havent got a clue what youre supposed to do with moonstones have you ?Harry shook his head noticing as he did so that the ache in his right temple was getting worse .He thought of the long essay on giant wars and the pain stabbed at him sharply .Knowing perfectly well that he would regret not finishing his homework tonight when the morning came he piled his books back into his bag .‘Tm going to bed too .He passed Seamus on the way to the door leading to the dormitories but did not look at him .Harry had a fleeting impression that Seamus had opened his mouth to speak but sped up and reached the soothing peace of the stone spiral staircase without having to endure any more provocation .The following day dawned just as leaden and rainy as the previous one .Hagrid was still absent from the staff table at breakfast .But on the plus side no Snape today said Ron bracingly .Hermione yawned widely and poured herself some coffee .She looked mildly pleased about something and when Ron asked her what she had to be so happy about she simply said The hats have gone .Seems the houseelves do want freedom after all .I wouldnt bet on it Ron told her cuttingly .They might not count as clothes .They didnt look anything like hats to me more like woolly bladders .Hermione did not speak to him all morning .Double Charms was succeeded by double Transfiguration .Professor Flitwick and Professor McGonagall both spent the first fifteen minutes of their lessons lecturing the class on the importance of O .W .L .s .What you must remember said little Professor Flitwick squeakily perched as ever on a pile of books so that he could see over the top of his desk is that these examinations may influence your futures for many years to come !If you have not already given serious thought to your careers now is the time to do so .And in the meantime Im afraid we shall be working harder than ever to ensure that you all do yourselves justice !They then spent more than an hour reviewing Summoning Charms which according to Professor Flitwick were bound to come up in their O .W .L .and he rounded off the lesson by setting them their largest amount of Charms homework ever .It was the same if not worse in Transfiguration .You cannot pass an O .W .L .said Professor McGonagall grimly without serious application practice and study .I see no reason why everybody in this class should not achieve an O .W .L .in Transfiguration as long as they put in the work .Neville made a sad little disbelieving noise .Yes you too Longbottom said Professor McGonagall .Theres nothing wrong with your work except lack of confidence .So .today we are starting Vanishing Spells .These are easier than Conjuring Spells which you would not usually attempt until N .E .W .T .level but they are still among the most difficult magic you will be tested on in your O .W .L .She was quite right Harry found the Vanishing Spells horribly difficult .By the end of a double period neither he nor Ron had managed to vanish the snails on which they were practicing though Ron said hopefully that he thought his looked a bit paler .Hermione on the other hand successfully vanished her snail on the third attempt earning her a tenpoint bonus for Gryffindor from Professor McGonagall .She was the only person not given homework everybody else was told to practice the spell overnight ready for a fresh attempt on their snails the following afternoon .Now panicking slightly about the amount of homework they had to do Harry and Ron spent their lunch hour in the library looking up the uses of moonstones in potionmaking .Still angry about Rons slur on her woolly hats Hermione did not join them .By the time they reached Care of Magical Creatures in the afternoon Harrys head was aching again .The day had become cool and breezy and as they walked down the sloping lawn toward Hagrids cabin on the edge of the Forbidden Forest they felt the occasional drop of rain on their faces .Professor GrubblyPlank stood waiting for the class some ten yards from Hagrids front door a long trestle table in front of her laden with many twigs .As Harry and Ron reached her a loud shout of laughter sounded behind them turning they saw Draco Malfoy striding toward them surrounded by his usual gang of Slytherin cronies .He had clearly just said something highly amusing because Crabbe Goyle Pansy Parkinson and the rest continued to snigger heartily as they gathered around the trestle table .Judging by the fact that all of them kept looking over at Harry he was able to guess the subject of the joke without too much difficulty .Everyone here ?barked Professor GrubblyPlank once all the Slytherins and Gryffindors had arrived .Lets crack on then who can tell me what these things are called ?She indicated the heap of twigs in front of her .Hermione s hand shot into the air .Behind her back Malfoy did a bucktoothed imitation of her jumping up and down in eagerness to answer a question .Pansy Parkinson gave a shriek of laughter that turned almost at once into a scream as the twigs on the table leapt into the air and revealed themselves to be what looked like tiny pixieish creatures made of wood each with knobbly brown arms and legs two twiglike fingers at the end of each hand and a funny flat barklike face in which a pair of beetlebrown eyes glittered .Oooooh !said Parvati and Lavender thoroughly irritating Harry Anyone would have thought that Hagrid never showed them impressive creatures admittedly the flobberworms had been a bit dull but the salamanders and hippogriffs had been interesting enough and the BlastEnded Skrewts perhaps too much so .Kindly keep your voices down girls !said Professor GrubblyPlank sharply scattering a handful of what looked like brown rice among the stickcreatures who immediately fell upon the food .So anyone know the names of these creatures ?Miss Granger ?Bowtruckles said Hermione .Theyre tree guardians usually live in wandtrees .Five points for Gryffindor said Professor Grubbly Plank .Yes these are bowtruckles and as Miss Granger rightly says they generally live in trees whose wood is of wand quality .Anybody know what they eat ?Wood lice said Hermione promptly which explained why what Harry had taken for grains of brown rice were moving .But fairy eggs if they can get them .Good girl take another five points .So whenever you need leaves or wood from a tree in which a bowtruckle lodges it is wise to have a gift of wood lice ready to distract or placate it .They may not look dangerous but if angered they will gouge out human eyes with their fingers which as you can see are very sharp and not at all desirable near the eyeballs .So if youd like to gather closer take a few wood lice and a bowtruckle I have enough here for one between three you can study them more closely .I want a sketch from each of you with all body parts labeled by the end of the lesson .The class surged forward around the trestle table .Harry deliberately circled around the back so that he ended up right next to Professor GrubblyPlank .Wheres Hagrid ?he asked her while everyone else was choosing bowtruckles .Never you mind said Professor GrubblyPlank repressively which had been her attitude last time Hagrid had failed to turn up for a class too .Smirking all over his pointed face Draco Malfoy leaned across Harry and seized the largest bowtruckle .Maybe said Malfoy in an undertone so that only Harry could hear him the stupid great oafs got himself badly injured .Maybe you will if you dont shut up said Harry out of the side of his mouth .Maybe hes been messing with stuff thats too big for him if you get my drift .Malfoy walked away smirking over his shoulder at Harry who suddenly felt sick .Did Malfoy know something ?His father was a Death Eater after all what if he had information about Hagrid s fate that had not yet reached the Orders ears ?He hurried back around the table to Ron and Hermione who were squatting on the grass some distance away and attempting to persuade a bowtruckle to remain still long enough to draw it .Harry pulled out parchment and quill crouched down beside the others and related in a whisper what Malfoy had just said .Dumbledore would know if something had happened to Hagrid said Hermione at once .Its just playing into Malfoys hands to look worried it tells him we dont know exactly whats going on .Weve got to ignore him Harry .Here hold the bowtruckle for a moment just so I can draw its face .Yes came Malfoys clear drawl from the group nearest them Father was talking to the Minister just a couple of days ago you know and it sounds as though the Ministrys really determined to crack down on substandard teaching in this place .So even if that overgrown moron does show up again hell probably be sent packing straight away .OUCH !Harry had gripped the bowtruckle so hard that it had almost snapped it had just taken a great retaliatory swipe at his hand with its sharp fingers leaving two long deep cuts there .Harry dropped it Crabbe and Goyle who had already been guffawing at the idea of Hagrid being sacked laughed still harder as the bowtruckle set off at full tilt toward the forest a little moving stickman soon swallowed up by the tree roots .When the bell echoed distantly over the grounds Harry rolled up his bloodstained bowtruckle picture and marched off to Herbology with his hand wrapped in a handkerchief of Hermione s and Malfoys derisive laughter still ringing in his ears .If he calls Hagrid a moron one more time .snarled Harry .Harry dont go picking a row with Malfoy dont forget hes a prefect now he could make life difficult for you .Wow I wonder what itd be like to have a difficult life ?said Harry sarcastically .Ron laughed but Hermione frowned .Together they traipsed across the vegetable patch .The sky still appeared unable to make up its mind whether it wanted to rain or not .I just wish Hagrid would hurry up and get back thats all said Harry in a low voice as they reached the greenhouses .And dont say that GrubblyPlank womans a better teacher !he added threateningly .I wasnt going to said Hermione calmly .Because shell never be as good as Hagrid said Harry firmly fully aware that he had just experienced an exemplary Care of Magical Creatures lesson and was thoroughly annoyed about it .The door of the nearest greenhouse opened and some fourth years spilled out of it including Ginny .Hi she said brightly as she passed .A few seconds later Luna Lovegood emerged trailing behind the rest of the class a smudge of earth on her nose and her hair tied in a knot on the top of her head .When she saw Harry her prominent eyes seemed to bulge excitedly and she made a beeline straight for him .Many of his classmates turned curiously to watch .Luna took a great breath and then said without so much as a preliminary hello I believe HeWhoMust NotBeNamed is back and I believe you fought him and escaped from him .Er right said Harry awkwardly .Luna was wearing what looked like a pair of orange radishes for earrings a fact that Parvati and Lavender seemed to have noticed as they were both giggling and pointing at her earlobes .You can laugh !Luna said her voice rising apparently under the impression that Parvati and Lavender were laughing at what she had said rather than what she was wearing .But people used to believe there were no such things as the Blibbering Humdinger or the CrumpleHorned Snorkack !Well they were right werent they ?said Hermione impatiently .There werent any such things as the Blibbering Humdinger or the CrumpleHorned Snorkack .Luna gave her a withering look and flounced away radishes swinging madly .Parvati and Lavender were not the only ones hooting with laughter now .Dyou mind not offending the only people who believe me ?Harry asked Hermione as they made their way into class .Oh for heavens sake Harry you can do better than her said Hermione .Ginnys told me all about her apparently shell only believe in things as long as theres no proof at all .Well I wouldnt expect anything else from someone whose father runs The Quibbler .Harry thought of the sinister winged horses he had seen on the night he had arrived and how Luna had said she could see them too .His spirits sank slightly .Had she been lying ?But before he could devote much more thought to the matter Ernie Macmillan had stepped up to him .I want you to know Potter he said in a loud carrying voice that its not only weirdos who support you .I personally believe you one hundred percent .My family have always stood firm behind Dumbledore and so do I .Er thanks very much Ernie said Harry taken aback but pleased .Ernie might be pompous on occasions like these but Harry was in a mood to deeply appreciate a vote of confidence from somebody who was not wearing radishes in their ears .Ernies words had certainly wiped the smile from Lavender Browns face and as he turned to talk to Ron and Hermione Harry caught Seamuss expression which looked both confused and defiant .To nobodys surprise Professor Sprout started their lesson by lecturing them about the importance of O .W .L .s .Harry wished all the teachers would stop doing this he was starting to get an anxious twisted feeling in his stomach every time he remembered how much homework he had to do a feeling that worsened dramatically when Professor Sprout gave them yet another essay at the end of class .Tired and smelling strongly of dragon dung Professor Sprouts preferred brand of fertilizer the Gryffindors trooped back up to the castle an hour and a half later none of them talking very much it had been another long day .As Harry was starving and he had his first detention with Umbridge at five oclock he headed straight for dinner without dropping off his bag in Gryffindor Tower so that he could bolt something down before facing whatever she had in store for him .He had barely reached the entrance of the Great Hall however when a loud and angry voice said Oy Potter !What now ?he muttered wearily turning to face Angelina Johnson who looked as though she was in a towering temper .Ill tell you what now she said marching straight up to him and poking him hard in the chest with her finger .How come youve landed yourself in detention for five oclock on Friday ?What ?said Harry .Why .oh yeah Keeper tryouts !Now he remembers !snarled Angelina .Didnt I tell you I wanted to do a tryout with the whole team and find someone who fitted in with everyone ?Didnt I tell you Id booked the Quidditch pitch specially ?And now youve decided youre not going to be there !I didnt decide not to be there !said Harry stung by the injustice of these words .I got detention from that Umbridge woman just because I told her the truth about YouKnowWho Well you can just go straight to her and ask her to let you off on Friday said Angelina fiercely and I dont care how you do it tell her YouKnowWho s a figment of your imagination if you like just make sure youre therel She stormed away .You know what ?Harry said to Ron and Hermione as they entered the Great Hall .I think wed better check with Puddlemere United whether Oliver Woods been killed during a training session because she seems to be channeling his spirit .What dyou reckon are the odds of Umbridge letting you off on Friday ?said Ron skeptically as they sat down at the Gryffindor table .Less than zero said Harry glumly tipping lamb chops onto his plate and starting to eat .Better try though hadnt I ?Ill offer to do two more detentions or something I dunno .He swallowed a mouthful of potato and added I hope she doesnt keep me too long this evening .You realize weve got to write three essays practice Vanishing Spells for McGonagall work out a countercharm for Flitwick finish the bowtruckle drawing and start that stupid dream diary for Trelawney ?Ron moaned and for some reason glanced up at the ceiling .And it looks like its going to rain .Whats that got to do with our homework ?said Hermione her eyebrows raised .Nothing said Ron at once his ears reddening .At five to five Harry bade the other two goodbye and set off for Umbridges office on the third floor .When he knocked on the door she said Come in in a sugary voice .He entered cautiously looking around .He had known this office under three of its previous occupants .In the days when Gilderoy Lockhart had lived here it had been plastered in beaming portraits of its owner .When Lupin had occupied it it was likely you would meet some fascinating Dark creature in a cage or tank if you came to call .In the impostor Moodys days it had been packed with various instruments and artifacts for the detection of wrongdoing and concealment .Now however it looked totally unrecognizable .The surfaces had all been draped in lacy covers and cloths .There were several vases full of dried flowers each residing on its own doily and on one of the walls was a collection of ornamental plates each decorated with a large technicolor kitten wearing a different bow around its neck .These were so foul that Harry stared at them transfixed until Professor Umbridge spoke again .Good evening Mr Potter .Harry started and looked around .He had not noticed her at first because she was wearing a luridly flowered set of robes that blended only too well with the tablecloth on the desk behind her .Evening Harry said stiffly .Well sit down she said pointing toward a small table draped in lace beside which she had drawn up a straightbacked chair .A piece of blank parchment lay on the table apparently waiting for him .Er said Harry without moving .Professor Umbridge ?Er before we start II wanted to ask you a .a favor .Her bulging eyes narrowed .Oh yes ?Well Im .Im on the Gryffindor Quidditch team .And I was supposed to be at the tryouts for the new Keeper at five oclock on Friday and I was was wondering whether I could skip detention that night and do it do it another night .instead .He knew long before he reached the end of his sentence that it was no good .Oh no said Umbridge smiling so widely that she looked as though she had just swallowed a particularly juicy fly .Oh no no no .This is your punishment for spreading evil nasty attention seeking stories Mr Potter and punishments certainly cannot be adjusted to suit the guilty ones convenience .No you will come here at five oclock tomorrow and the next day and on Friday too and you will do your detentions as planned .I think it rather a good thing that you are missing something you really want to do .It ought to reinforce the lesson I am trying to teach you .Harry felt the blood surge to his head and heard a thumping noise in his ears .So he told evil nasty attentionseeking stories did he ?She was watching him with her head slightly to one side still smiling widely as though she knew exactly what he was thinking and was waiting to see whether he would start shouting again .With a massive effort Harry looked away from her dropped his schoolbag beside the straightbacked chair and sat down .There said Umbridge sweetly were getting better at controlling our temper already arent we ?Now you are going to be doing some lines for me Mr Potter .No not with your quill she added as Harry bent down to open his bag .Youre going to be using a rather special one of mine .Here you are .She handed him a long thin black quill with an unusually sharp point .I want you to write ‘ I must not tell lies she told him softly .How many times ?Harry asked with a creditable imitation of politeness .Oh as long as it takes for the message to sink in said Umbridge sweetly .Off you go .She moved over to her desk sat down and bent over a stack of parchment that looked like essays for marking .Harry raised the sharp black quill and then realized what was missing .You havent given me any ink he said .Oh you wont need ink said Professor Umbridge with the merest suggestion of a laugh in her voice .Harry placed the point of the quill on the paper and wrote I must not tell lies .He let out a gasp of pain .The words had appeared on the parchment in what appeared to be shining red ink .At the same time the words had appeared on the back of Harrys right hand cut into his skin as though traced there by a scalpel yet even as he stared at the shining cut the skin healed over again leaving the place where it had been slightly redder than before but quite smooth .Harry looked around at Umbridge .She was watching him her wide toadlike mouth stretched in a smile .Yes ?Nothing said Harry quietly .He looked back at the parchment placed the quill upon it once more wrote I must not tell lies and felt the searing pain on the back of his hand for a second time once again the words had been cut into his skin once again they healed over seconds later .And on it went .Again and again Harry wrote the words on the parchment in what he soon came to realize was not ink but his own blood .And again and again the words were cut into the back of his hand healed and then reappeared the next time he set quill to parchment .Darkness fell outside Umbridges window .Harry did not ask when he would be allowed to stop .He did not even check his watch .He knew she was watching him for signs of weakness and he was not going to show any not even if he had to sit here all night cutting open his own hand with this quill .Come here she said after what seemed hours .He stood up .His hand was stinging painfully .When he looked down at it he saw that the cut had healed but that the skin there was red raw .Hand she said .He extended it .She took it in her own .Harry repressed a shudder as she touched him with her thick stubby fingers on which she wore a number of ugly old rings .Tut tut I dont seem to have made much of an impression yet she said smiling .Well well just have to try again tomorrow evening wont we ?You may go .Harry left her office without a word .The school was quite deserted it was surely past midnight .He walked slowly up the corridor then when he had turned the corner and was sure that she would not hear him broke into a run .He had not had time to practice Vanishing Spells had not written a single dream in his dream diary and had not finished the drawing of the bowtruckle nor had he written his essays .He skipped breakfast next morning to scribble down a couple of madeup dreams for Divination their first lesson and was surprised to find a disheveled Ron keeping him company .How come you didnt do it last night ?Harry asked as Ron stared wildly around the common room for inspiration .Ron who had been fast asleep when Harry got back to the dormitory muttered something about doing other stuff bent low over his parchment and scrawled a few words .Thatll have to do he said slamming the diary shut Ive said I dreamed I was buying a new pair of shoes she cant make anything weird out of that can she ?They hurried off to North Tower together .How was detention with Umbridge anyway ?What did she make you do ?Harry hesitated for a fraction of a second then said Lines .Thats not too bad then eh ?said Ron .Nope said Harry .Hey I forgot did she let you off for Friday ?No said Harry .Ron groaned sympathetically .It was another bad day for Harry he was one of the worst in Transfiguration not having practiced Vanishing Spells at all .He had to give up his lunch hour to complete the picture of the bowtruckle and meanwhile Professors McGonagall GrubblyPlank and Sinistra gave them yet more homework which he had no prospect of finishing that evening because of his second detention with Umbridge .To cap it all Angelina Johnson tracked him down at dinner again and on learning that he would not be able to attend Fridays Keeper tryouts told him she was not at all impressed by his attitude and that she expected players who wished to remain on the team to put training before their other commitments .Im in detention !Harry yelled after her as she stalked away .Dyou think Id rather be stuck in a room with that old toad or playing Quidditch ?At least its only lines said Hermione consolingly as Harry sank back onto his bench and looked down at his steakandkidney pie which he no longer fancied very much .Its not as if its a dreadful punishment really .Harry opened his mouth closed it again and nodded .He was not really sure why he was not telling Ron and Hermione exactly what was happening in Umbridge s room He only knew that he did not want to see their looks of horror that would make the whole thing seem worse and therefore more difficult to face .He also felt dimly that this was between himself and Umbridge a private battle of wills and he was not going to give her the satisfaction of hearing that he had complained about it .I cant believe how much homework weve got said Ron miserably .Well why didnt you do any last night ?Hermione asked him .Where were you anyway ?I was .I fancied a walk said Ron shiftily .Harry had the distinct impression that he was not alone in concealing things at the moment .k k k The second detention was just as bad as the previous one .The skin on the back of Harrys hand became irritated more quickly now red and inflamed Harry thought it unlikely to keep healing as effectively for long .Soon the cut would remain etched in his hand and Umbridge would perhaps be satisfied .He let no moan of pain escape him however and from the moment of entering the room to the moment of his dismissal again past midnight he said nothing but Good evening and Good night .His homework situation however was now desperate and when he returned to the Gryffindor common room he did not though exhausted go to bed but opened his books and began Snapes moonstone essay .It was halfpast two by the time he had finished it .He knew he had done a poor job but there was no help for it unless he had something to give in he would be in detention with Snape next .He then dashed off answers to the questions Professor McGonagall had set them cobbled together something on the proper handling of bowtruckles for Professor GrubblyPlank and staggered up to bed where he fell fully clothed on top of the bed covers and fell asleep immediately .Thursday passed in a haze of tiredness .Ron seemed very sleepy too though Harry could not see why he should be .Harrys third detention passed in the same way as the previous two except that after two hours the words I must not tell lies did not fade from the back of Harrys hand but remained scratched there oozing droplets of blood .The pause in the pointed quills scratching made Professor Umbridge look up .Ah she said softly moving around her desk to examine his hand herself .Good .That ought to serve as a reminder to you oughtnt it ?You may leave for tonight .Do I still have to come back tomorrow ?said Harry picking up his schoolbag with his left hand rather than his smarting right .Oh yes said Professor Umbridge smiling widely as before .Yes I think we can etch the message a little deeper with another evenings work .He had never before considered the possibility that there might be another teacher in the world he hated more than Snape but as he walked back toward Gryffindor Tower he had to admit he had found a contender .Shes evil he thought as he climbed a staircase to the seventh floor shes an evil twisted mad old Ron ?He had reached the top of the stairs turned right and almost walked into Ron who was lurking behind a statue of Lachlan the Lanky clutching his broomstick .He gave a great leap of surprise when he saw Harry and attempted to hide his new Cleansweep Eleven behind his back .What are you doing ?Er nothing .What are you doing ?Harry frowned at him .Come on you can tell me !What are you hiding here for ?Im Im hiding from Fred and George if you must know said Ron .They just went past with a bunch of first years I bet theyre testing stuff on them again I mean they cant do it in the common room now can they not with Hermione there .He was talking in a very fast feverish way .But what have you got your broom for you havent been flying have you ?Harry asked .I well well okay Ill tell you but dont laugh all right ?Ron said defensively turning redder with every second .II thought Id try out for Gryffindor Keeper now Ive got a decent broom .There .Go on .Laugh .Im not laughing said Harry .Ron blinked .Its a brilliant idea !Itd be really cool if you got on the team !Ive never seen you play Keeper are you good ?Im not bad said Ron who looked immensely relieved at Harrys reaction .Charlie Fred and George always made me Keep for them when they were training during the holidays .So youve been practicing tonight ?Every evening since Tuesday .just on my own though Ive been trying to bewitch Quaffles to fly at me but it hasnt been easy and I dont know how much use itll be .Ron looked nervous and anxious .Fred and George are going to laugh themselves stupid when I turn up for the tryouts .They havent stopped taking the mickey out of me since I got made a prefect .I wish I was going to be there said Harry bitterly as they set off together toward the common room .Yeah so do Harry whats that on the back of your hand ?Harry who had just scratched his nose with his free right hand tried to hide it but had as much success as Ron with his Cleans weep .Its just a cut its nothing its But Ron had grabbed Harrys forearm and pulled the back of Harrys hand up level with his eyes .There was a pause during which he stared at the words carved into the skin then he released Harry looking sick .I thought you said she was giving you lines ?Harry hesitated but after all Ron had been honest with him so he told Ron the truth about the hours he had been spending in Umbridges office .The old hag !Ron said in a revolted whisper as they came to a halt in front of the Fat Lady who was dozing peacefully with her head against her frame .Shes sick !Go to McGonagall say something !No said Harry at once .Im not giving her the satisfaction of knowing shes got to me .Got to you ?You cant let her get away with this !I dont know how much power McGonagalls got over her said Harry .Dumbledore then tell Dumbledore !No said Harry flatly .Why not ?Hes got enough on his mind said Harry but that was not the true reason .He was not going to go to Dumbledore for help when Dumbledore had not spoken to him once since last June .Well I reckon you should Ron began but he was interrupted by the Fat Lady who had been watching them sleepily and now burst out Are you going to give me the password or will I have to stay awake all night waiting for you to finish your conversation ?Friday dawned sullen and sodden as the rest of the week .Though Harry glanced toward the staff table automatically when he entered the Great Hall it was without real hope of seeing Hagrid and he turned his mind immediately to his more pressing problems such as the mountainous pile of homework he had to do and the prospect of yet another detention with Umbridge .Two things sustained Harry that day .One was the thought that it was almost the weekend the other was that dreadful though his final detention with Umbridge was sure to be he had a distant view of the Quidditch pitch from her window and might with luck be able to see something of Rons tryout .These were rather feeble rays of light it was true but Harry was grateful for anything that might lighten his present darkness he had never had a worse first week of term at Hogwarts .At five oclock that evening he knocked on Professor Umbridges office door for what he sincerely hoped would be the final time was told to enter and did so .The blank parchment lay ready for him on the lace covered table the pointed black quill beside it .You know what to do Mr Potter said Umbridge smiling sweetly over at him .Harry picked up the quill and glanced through the window .If he just shifted his chair an inch or so to the right .On the pretext of shifting himself closer to the table he managed it .He now had a distant view of the Gryffindor Quidditch team soaring up and down the pitch while half a dozen black figures stood at the foot of the three high goalposts apparently awaiting their turn to Keep .It was impossible to tell which one was Ron at this distance .I must not tell lies Harry wrote .The cut in the back of his right hand opened and began to bleed afresh .I must not tell lies .The cut dug deeper stinging and smarting .I must not tell lies .Blood trickled down his wrist .He chanced another glance out of the window .Whoever was defending the goalposts now was doing a very poor job indeed .Katie Bell scored twice in the few seconds Harry dared watch .Hoping very much that the Keeper wasnt Ron he dropped his eyes back to the parchment dotted with blood .I must not tell lies .I must not tell lies .He looked up whenever he thought he could risk it when he could hear the scratching of Umbridges quill or the opening of a desk drawer .The third person to try out was pretty good the fourth was terrible the fifth dodged a Bludger exceptionally well but then fumbled an easy save .The sky was darkening so that Harry doubted he would be able to watch the sixth and seventh people at all .I must not tell lies .I must not tell lies .The parchment was now shining with drops of blood from the back of his hand which was searing with pain .When he next looked up night had fallen and the Quidditch pitch was no longer visible .Lets see if youve gotten the message yet shall we ?said Umbridges soft voice half an hour later .She moved toward him stretching out her short be ringed fingers for his arm .And then as she took hold of him to examine the words now cut into his skin pain seared not across the back of his hand but across the scar on his forehead .At the same time he had a most peculiar sensation somewhere around his midriff .He wrenched his arm out of her grip and leapt to his feet staring at her .She looked back at him a smile stretching her wide slack mouth .Yes it hurts doesnt it ?she said softly .He did not answer .His heart was thumping very hard and fast .Was she talking about his hand or did she know what he had just felt in his forehead ?Well I think Ive made my point Mr Potter .You may go .He caught up his schoolbag and left the room as quickly as he could .Stay calm he told himself as he sprinted up the stairs .Stay calm it doesnt necessarily mean what you think it means .Mimbulus mimbletoniaV he gasped at the Fat Lady who swung forward once more .A roar of sound greeted him .Ron came running toward him beaming all over his face and slopping butterbeer down his front from the goblet he was clutching .Harry I did it Im in Im Keeper !What ?Oh brilliant !said Harry trying to smile naturally while his heart continued to race and his hand throbbed and bled .Have a butterbeer .Ron pressed a bottle onto him .I cant believe it wheres Hermione gone ?Shes there said Fred who was also swigging butterbeer and pointed to an armchair by the fire .Hermione was dozing in it her drink tipping precariously in her hand .Well she said she was pleased when I told her said Ron looking slightly put out .Let her sleep said George hastily .It was a few moments before Harry noticed that several of the first years gathered around them bore unmistakable signs of recent nosebleeds .Come here Ron and see if Olivers old robes fit you called Katie Bell .We can take off his name and put yours on instead .As Ron moved away Angelina came striding up to Harry .Sorry I was a bit short with you earlier Potter she said abruptly .Its stressful this managing lark you know Im starting to think I was a bit hard on Wood sometimes .She was watching Ron over the rim of her goblet with a slight frown on her face .Look I know hes your best mate but hes not fabulous she said bluntly .I think with a bit of training hell be all right though .He comes from a family of good Quidditch players .Im banking on him turning out to have a bit more talent than he showed today to be honest .Vicky Frobisher and Geoffrey Hooper both flew better this evening but Hoopers a real whiner hes always moaning about something or other and Vickys involved in all sorts of societies she admitted herself that if training clashed with her Charm Club shed put Charms first .Anyway were having a practice session at two oclock tomorrow so just make sure youre there this time .And do me a favor and help Ron as much as you can okay ?He nodded and Angelina strolled back to Alicia Spinnet .Harry moved over to sit next to Hermione who awoke with a jerk as he put down his bag .Oh Harry its you .Good about Ron isnt it ?she said blearily .Im just so so so tired she yawned .I was up until one oclock making more hats .Theyre disappearing like mad !And sure enough now that he looked Harry saw that there were woolly hats concealed all around the room where unwary elves might accidentally pick them up .Great said Harry distractedly if he did not tell somebody soon he would burst .Listen Hermione I was just up in Umbridges office and she touched my arm .Hermione listened closely .When Harry had finished she said slowly Youre worried that YouKnow Whos controlling her like he controlled Quirrell ?Well said Harry dropping his voice its a possibility isnt it ?I suppose so said Hermione though she sounded unconvinced .But I dont think he can be possessing her the way he possessed Quirrell I mean hes properly alive again now isnt he hes got his own body he wouldnt need to share someone elses .He could have her under the Imperius Curse I suppose .Harry watched Fred George and Lee Jordan juggling empty butterbeer bottles for a moment .Then Hermione said But last year your scar hurt when nobody was touching you and didnt Dumbledore say it had to do with what You Know Who was feeling at the time ?I mean maybe this hasnt got anything to do with Umbridge at all maybe its just coincidence it happened while you were with her ?Shes evil said Harry flatly .Twisted .Shes horrible yes but .Harry I think you ought to tell Dumbledore your scar hurt .It was the second time in two days he had been advised to go to Dumbledore and his answer to Hermione was just the same as his answer to Ron .Im not bothering him with this .Like you just said its not a big deal .Its been hurting on and off all summer it was just a bit worse tonight thats all Harry Im sure Dumbledore would want to be bothered by this Yeah said Harry before he could stop himself thats the only bit of me Dumbledore cares about isnt it my scar ?Dont say that its not true !I think Ill write and tell Sirius about it see what he thinks Harry you cant put something like that in a letter !said Hermione looking alarmed .Dont you remember Moody told us to be careful what we put in writing !We just cant guarantee owls arent being intercepted anymore !All right all right I wont tell him then !said Harry irritably .He got to his feet .Im going to bed .Tell Ron for me will you ?Oh no said Hermione looking relieved if youre going that means I can go without being rude too Im absolutely exhausted and I want to make some more hats tomorrow .Listen you can help me if you like its quite fun Im getting better I can do patterns and bobbles and all sorts of things now .Harry looked into her face which was shining with glee and tried to look as though he was vaguely tempted by this offer .Er .no I dont think I will thanks he said .Er not tomorrow .Ive got loads of homework to do .And he traipsed off to the boys stairs leaving her looking slightly disappointed behind him .PERCY AND PADFOOT Harry was the first to awake in his dormitory next morning .He lay for a moment watching dust swirl in the chink of sunlight falling through the gap in his fourposters hangings and savored the thought that it was Saturday .The first week of term seemed to have dragged on forever like one gigantic History of Magic lesson .Judging by the sleepy silence and the freshly minted look of that beam of sunlight it was just after daybreak .He pulled open the curtains around his bed got up and started to dress .The only sound apart from the distant twittering of birds was the slow deep breathing of his fellow Gryffindors .He opened his schoolbag carefully pulled out parchment and quill and headed out of the dormitory for the common room .Making straight for his favorite squashy old armchair beside the now extinct fire Harry settled himself down comfortably and unrolled his parchment while looking around the room .The detritus of crumpledup bits of parchment old Gobstones empty ingredient jars and candy wrappers that usually covered the common room at the end of each day was gone as were all Hermiones elf hats .Wondering vaguely how many elves had now been set free whether they wanted to be or not Harry uncorked his ink bottle dipped his quill into it and then held it suspended an inch above the smooth yellowish surface of his parchment thinking hard .But after a minute or so he found himself staring into the empty grate at a complete loss for what to say .He could now appreciate how hard it had been for Ron and Hermione to write him letters over the summer .How was he supposed to tell Sirius everything that had happened over the past week and pose all the questions he was burning to ask without giving potential letterthieves a lot of information he did not want them to have ?He sat quite motionless for a while gazing into the fireplace then finally coming to a decision he dipped his quill into the ink bottle once more and set it resolutely upon the parchment .Dear Snuffles Hope youre okay the first week back heres been terrible Im really glad its the weekend .Weve got a new Defense Against the Dark Arts teacher Professor Umbridge .Shes nearly as nice as your mum .Im writing because that thing I wrote to you about last summer happened again last night when I was doing a detention with Umbridge .Were all missing our biggest friend we hope hell be back soon .Please write back quickly .Best Harry Harry reread this letter several times trying to see it from the point of view of an outsider .He could not see how they would know what he was talking about or who he was talking to just from reading this letter .He did hope Sirius would pick up the hint about Hagrid and tell them when he might be back Harry did not want to ask directly in case it drew too much attention to what Hagrid might be up to while he was not at Hogwarts .Considering it was a very short letter it had taken a long time to write sunlight had crept halfway across the room while he had been working on it and he could now hear distant sounds of movement from the dormitories above .Sealing the parchment carefully he climbed through the portrait hole and headed off for the Owlery .I would not go that way if I were you said Nearly Headless Nick drifting disconcertingly through a wall just ahead of him as he walked down the passage .Peeves is planning an amusing joke on the next person to pass the bust of Paracelsus halfway down the corridor .Does it involve Paracelsus falling on top of the persons head ?asked Harry .Funnily enough it does said Nearly Headless Nick in a bored voice .Subtlety has never been Peeves s strong point .Im off to try and find the Bloody Baron .He might be able to put a stop to it .See you Harry .Yeah bye said Harry and instead of turning right he turned left taking a longer but safer route up to the Owlery .His spirits rose as he walked past window after window showing brilliantly blue sky he had training later he would be back on the Quidditch pitch at last Something brushed his ankles .He looked down and saw the caretakers skeletal gray cat Mrs Norris slinking past him .She turned lamplike yellow eyes upon him for a moment before disappearing behind a statue of Wilfred the Wistful .Im not doing anything wrong Harry called after her .She had the unmistakable air of a cat that was off to report to her boss yet Harry could not see why he was perfectly entitled to walk up to the Owlery on a Saturday morning .The sun was high in the sky now and when Harry entered the Owlery the glassless windows dazzled his eyes thick silvery beams of sunlight crisscrossed the circular room in which hundreds of owls nestled on rafters a little restless in the early morning light some clearly just returned from hunting .The straw covered floor crunched a little as he stepped across tiny animal bones craning his neck for a sight of Hedwig .There you are he said spotting her somewhere near the very top of the vaulted ceiling .Get down here Ive got a letter for you .With a low hoot she stretched her great white wings and soared down onto his shoulder .Right I know this says ‘Snuffles on the outside he told her giving her the letter to clasp in her beak and without knowing exactly why whispering but its for Sirius okay ?She blinked her amber eyes once and he took that to mean that she understood .Safe flight then said Harry and he carried her to one of the windows with a moments pressure on his arm Hedwig took off into the blindingly bright sky .He watched her until she became a tiny black speck and vanished then switched his gaze to Hagrids hut clearly visible from this window and just as clearly uninhabited the chimney smokeless the curtains drawn .The treetops of the Forbidden Forest swayed in a light breeze .Harry watched them savoring the fresh air on his face thinking about Quidditch later .and then he saw it .A great reptilian winged horse just like the ones pulling the Hogwarts carriages with leathery black wings spread wide like a pterodactyls rose up out of the trees like a grotesque giant bird .It soared in a great circle and then plunged once more into the trees .The whole thing had happened so quickly Harry could hardly believe what he had seen except that his heart was hammering madly .The Owlery door opened behind him .He leapt in shock and turning quickly saw Cho Chang holding a letter and a parcel in her hands .Hi said Harry automatically .Oh .hi she said breathlessly .I didnt think anyone would be up here this early .I only remembered five minutes ago its my mums birthday .She held up the parcel .Right said Harry .His brain seemed to have jammed .He wanted to say something funny and interesting but the memory of that terrible winged horse was fresh in his mind .Nice day he said gesturing to the windows .His insides seemed to shrivel with embarrassment .The weather .He was talking about the weather .Yeah said Cho looking around for a suitable owl .Good Quidditch conditions .I havent been out all week have you ?No said Harry .Cho had selected one of the school barn owls .She coaxed it down onto her arm where it held out an obliging leg so that she could attach the parcel .Hey has Gryffindor got a new Keeper yet ?she asked .Yeah said Harry .Its my friend Ron Weasley dyou know him ?The Tornadohater ?said Cho rather coolly .Is he any good ?Yeah said Harry I think so .I didnt see his tryout though I was in detention .Cho looked up the parcel only halfattached to the owls legs .That Umbridge womans foul she said in a low voice .Putting you in detention just because you told the truth about how how how he died .Everyone heard about it it was all over the school .You were really brave standing up to her like that .Harrys insides reinflated so rapidly he felt as though he might actually float a few inches off the dropping strewn floor .Who cared about a stupid flying horse Cho thought he had been really brave .For a moment he considered accidentallyonpurpose showing her his cut hand as he helped her tie her parcel onto her owl .But the very instant that this thrilling thought occurred the Owlery door opened again .Filch the caretaker came wheezing into the room .There were purple patches on his sunken veined cheeks his jowls were aquiver and his thin gray hair disheveled he had obviously run here .Mrs Norris came trotting at his heels gazing up at the owls overhead and mewing hungrily .There was a restless shifting of wings from above and a large brown owl snapped his beak in a menacing fashion .Aha !said Filch taking a flatfooted step toward Harry his pouchy cheeks trembling with anger .Ive had a tipoff that you are intending to place a massive order for Dungbombs !Harry folded his arms and stared at the caretaker .Who told you I was ordering Dungbombs ?Cho was looking from Harry to Filch also frowning the barn owl on her arm tired of standing on one leg gave an admonitory hoot but she ignored it .I have my sources said Filch in a selfsatisfied hiss .Now hand over whatever it is youre sending .Feeling immensely thankful that he had not dawdled in posting off the letter Harry said I cant its gone .Gone ?said Filch his face contorting with rage .Gone said Harry calmly .Filch opened his mouth furiously mouthed for a few seconds then raked Harrys robes with his eyes .How do I know you havent got it in your pocket ?Because I saw him send it said Cho angrily .Filch rounded on her .You saw him ?Thats right I saw him she said fiercely .There was a moments pause in which Filch glared at Cho and Cho glared right back then the caretaker turned and shuffled back toward the door .He stopped with his hand on the handle and looked back at Harry .If I get so much as a whiff of a Dungbomb .He stumped off down the stairs .Mrs Norris cast a last longing look at the owls and followed him .Harry and Cho looked at each other .Thanks Harry said .No problem said Cho finally fixing the parcel to the barn owls other leg her face slightly pink .You werent ordering Dungbombs were you ?No said Harry .I wonder why he thought you were then ?she said as she carried the owl to the window .Harry shrugged he was quite as mystified by that as she was though oddly it was not bothering him very much at the moment .They left the Owlery together .At the entrance of a corridor that led toward the west wing of the castle Cho said Im going this way .Well Ill .Ill see you around Harry .Yeah .see you .She smiled at him and departed .He walked on feeling quietly elated .He had managed to have an entire conversation with her and not embarrassed himself once .You were really brave standing up to her like that .She had called him brave .She did not hate him for being alive .Of course she had preferred Cedric he knew that .Though if hed only asked her to the ball before Cedric had things might have turned out differently .She had seemed sincerely sorry that she had to refuse when Harry had asked her .Morning Harry said brightly to Ron and Hermione joining them at the Gryffindor table in the Great Hall .What are you looking so pleased about ?said Ron eyeing Harry in surprise .Erm .Quidditch later said Harry happily pulling a large platter of bacon and eggs toward him .Oh .yeah .said Ron .He put down the bit of toast he was eating and took a large swig of pumpkin juice .Then he said Listen .you dont fancy going out a bit earlier with me do you ?Just to er give me some practice before training ?So I can you know get my eye in a bit .Yeah okay said Harry .Look I dont think you should said Hermione seriously youre both really behind on homework as it But she broke off the morning post was arriving and as usual the Daily Prophet was soaring toward her in the beak of a screech owl which landed perilously close to the sugar bowl and held out a leg Hermione pushed a Knut into its leather pouch took the newspaper and scanned the front page critically as the owl took off again .Anything interesting ?said Ron Harry smiled he knew Ron was keen to get her off the subject of homework .No she sighed just some guff about the bass player in the Weird Sisters getting married .She opened the paper and disappeared behind it .Harry devoted himself to another helping of eggs and bacon Ron was staring up at the high windows looking slightly preoccupied .Wait a moment said Hermione suddenly .Oh no .Sirius !Whats happened ?said Harry and he snatched at the paper so violently that it ripped down the middle so that he and Hermione were holding half each . ‘The Ministry of Magic has received a tipoff from a reliable source that Sirius Black notorious mass murderer .blah blah blah .is currently hiding in London Hermione read from her half in an anguished whisper .Lucius Malfoy Ill bet anything said Harry in a low furious voice .He did recognize Sirius on the platform .What ?said Ron looking alarmed .You didnt say Shh !said the other two . . ‘Ministry warns Wizarding community that Black is very dangerous .killed thirteen people .broke out of Azkaban .the usual rubbish Hermione concluded laying down her half of the paper and looking fearfully at Harry and Ron .Well he just wont be able to leave the house again thats all she whispered .Dumbledore did warn him not to .Harry looked down glumly at the bit of the Prophet he had torn off .Most of the page was devoted to an advertisement for Madame Malkins Robes for All Occasions which was apparently having a sale .Hey !he said flattening it down so Hermione and Ron could both see it .Look at this !Ive got all the robes I want said Ron .No said Harry look .this little piece here .Ron and Hermione bent closer to read it the item was barely an inch long and placed right at the bottom of a column .It was headlined TRESPASS AT MINISTRY Sturgis Podmore 38 of number two Laburnum Gardens Clapham has appeared in front of the Wizengamot charged with trespass and attempted robbery at the Ministry of Magic on 31st August .Podmore was arrested by Ministry of Magic watch wizard Eric Munch who found him attempting to force his way through a topsecurity door at one oclock in the morning .Podmore who refused to speak in his own defense was convicted on both charges and sentenced to six months in Azkaban .Sturgis Podmore ?said Ron slowly but hes that bloke who looks like his heads been thatched isnt he ?Hes one of the Ord Ron shh said Hermione casting a terrified look around them .Six months in Azkaban !whispered Harry shocked .Just for trying to get through a door !Dont be silly it wasnt just for trying to get through a door what on earth was he doing at the Ministry of Magic at one oclock in the morning ?breathed Hermione .Dyou reckon he was doing something for the Order ?Ron muttered .Wait a moment .said Harry slowly .Sturgis was supposed to come and see us off remember ?The other two looked at him .Yeah he was supposed to be part of our guard going to Kings Cross remember ?And Moody was all annoyed because he didnt turn up so that doesnt seem like he was supposed to be on a iob for them does it ?Well maybe they didnt expect him to get caught said Hermione .It could be a frameup !Ron exclaimed excitedly .No listen !he went on dropping his voice dramatically at the threatening look on Hermiones face .The Ministry suspects hes one of Dumbledores lot so I dunno they lured him to the Ministry and he wasnt trying to get through a door at all !Maybe theyve just made something up to get him !There was a pause while Harry and Hermione considered this .Harry thought it seemed farfetched Hermione on the other hand looked rather impressed and said Do you know I wouldnt be at all surprised if that were true .She folded up her half of the newspaper thoughtfully .When Harry laid down his knife and fork she seemed to come out of a reverie .Right well I think we should tackle that essay for Sprout on SelfFertilizing Shrubs first and if were lucky well be able to start McGonagalls Inanimatus Conjurus before lunch .Harry felt a small twinge of guilt at the thought of the pile of homework awaiting him upstairs but the sky was a clear exhilarating blue and he had not been on his Firebolt for a week .I mean we can do it tonight said Ron as he and Harry walked down the sloping lawns toward the Quidditch pitch their broomsticks over their shoulders Hermiones dire warnings that they would fail all their O .W .L .s still ringing in their ears .And weve got tomorrow .She gets too worked up about work thats her trouble .There was a pause and he added in a slightly more anxious tone Dyou think she meant it when she said we werent copying from her ?Yeah I do said Harry .Still this is important too weve got to practice if we want to stay on the Quidditch team .Yeah thats right said Ron in a heartened tone .And we have got plenty of time to do it all .Harry glanced over to his right as they approached the Quidditch pitch to where the trees of the Forbidden Forest were swaying darkly .Nothing flew out of them the sky was empty but for a few distant owls fluttering around the Owlery Tower .He had enough to worry about the flying horse wasnt doing him any harm He pushed it out of his mind .They collected balls from the cupboard in the changing room and set to work Ron guarding the three tall goalposts Harry playing Chaser and trying to get the Quaffle past Ron .Harry thought Ron was pretty good he blocked threequarters of the goals Harry attempted to put past him and played better the longer they practiced .After a couple of hours they returned to the school where they ate lunch during which Hermione made it quite clear that she thought they were irresponsible then returned to the Quidditch pitch for the real training session .All their teammates but Angelina were already in the changing room when they entered .All right Ron ?said George winking at him .Yeah said Ron who had become quieter and quieter all the way down to the pitch .Ready to show us all up Ickle Prefect ?said Fred emerging touslehaired from the neck of his Quidditch robes a slightly malicious grin on his face .Shut up said Ron stonyfaced pulling on his own team robes for the first time .They fitted him well considering they had been Oliver Woods who was rather broader in the shoulder .Okay everyone said Angelina entering from the Captains office already changed .Lets get to it Alicia and Fred if you can just bring the ball crate out for us .Oh and there are a couple of people out there watching but I want you to just ignore them all right ?Something in her wouldbe casual voice made Harry think he might know who the uninvited spectators were and sure enough when they left the changing room for the bright sunlight of the pitch it was to a storm of catcalls and jeers from the Slytherin Quidditch team and assorted hangerson who were grouped halfway up the empty stands and whose voices echoed loudly around the stadium .Whats that Weasleys riding ?Malfoy called in his sneering drawl .Why would anyone put a Flying Charm on a moldy old log like that ?Crabbe Goyle and Pansy Parkinson guffawed and shrieked with laughter .Ron mounted his broom and kicked off from the ground and Harry followed him watching his ears turn red from behind .Ignore them he said accelerating to catch up with Ron .Well see whos laughing after we play them .Exactly the attitude I want Harry said Angelina approvingly soaring around them with the Quaffle under her arm and slowing to hover on the spot in front of her airborne team .Okay everyone were going to start with some passes just to warm up the whole team please Hey Johnson whats with that hairstyle anyway ?shrieked Pansy Parkinson from below .Why would anyone want to look like theyve got worms coming out of their head ?Angelina swept her long braided hair out of her face and said calmly Spread out then and lets see what we can do .Harry reversed away from the others to the far side of the pitch .Ron fell back toward the opposite goal .Angelina raised the Quaffle with one hand and threw it hard to Fred who passed to George who passed to Harry who passed to Ron who dropped it .The Slytherins led by Malfoy roared and screamed with laughter .Ron who had pelted toward the ground to catch the Quaffle before it landed pulled out of the dive untidily so that he slipped sideways on his broom and returned to playing height blushing .Harry saw Fred and George exchange looks but uncharacteristically neither of them said anything for which he was grateful .Pass it on Ron called Angelina as though nothing had happened .Ron threw the Quaffle to Alicia who passed back to Harry who passed to George .Hey Potter hows your scar feeling ?called Malfoy .Sure you dont need a liedown ?It must be what a whole week since you were in the hospital wing thats a record for you isnt it ?Fred passed to Angelina she reverse passed to Harry who had not been expecting it but caught it in the very tips of his fingers and passed it quickly to Ron who lunged for it and missed by inches .Come on now Ron said Angelina crossly as Ron dived for the ground again chasing the Quaffle .Pay attention .It would have been hard to say whether Rons face or the Quaffle was a deeper scarlet when he returned again to playing height .Malfoy and the rest of the Slytherin team were howling with laughter .On his third attempt Ron caught the Quaffle perhaps out of relief he passed it on so enthusiastically that it soared straight through Katies outstretched hands and hit her hard in the face .Sorry !Ron groaned zooming forward to see whether he had done any damage .Get back in position shes fine !barked Angelina .But as youre passing to a teammate do try not to knock her off her broom wont you ?Weve got Bludgers for that !Katies nose was bleeding .Down below the Slytherins were stamping their feet and jeering .Fred and George converged on Katie .Here take this Fred told her handing her something small and purple from out of his pocket .Itll clear it up in no time .All right called Angelina Fred George go and get your bats and a Bludger Ron get up to the goalposts Harry release the Snitch when I say so .Were going to aim for Rons goal obviously .Harry zoomed off after the twins to fetch the Snitch .Rons making a right pigs ear of things isnt he ?muttered George as the three of them landed at the crate containing the balls and opened it to extract one of the Bludgers and the Snitch .Hes just nervous said Harry .He was fine when I was practicing with him this morning .Yeah well I hope he hasnt peaked too soon said Fred gloomily .They returned to the air .When Angelina blew her whistle Harry released the Snitch and Fred and George let fly the Bludger from that moment on Harry was barely aware of what the others were doing .It was his job to recapture the tiny fluttering golden ball that was worth a hundred and fifty points to the Seekers team and doing so required enormous speed and skill .He accelerated rolling and swerving in and out of the Chasers the warm autumn air whipping his face and the distant yells of the Slytherins so much meaningless roaring in his ears .But too soon the whistle brought him to a halt again .Stop stop STOP !screamed Angelina .Ron youre not covering your middle post !Harry looked around at Ron who was hovering in front of the lefthand hoop leaving the other two completely unprotected .Oh .sorry .You keep shifting around while youre watching the Chasers !said Angelina .Either stay in center position until you have to move to defend a hoop or else circle the hoops but dont drift vaguely off to one side thats how you let in the last three goals !Sorry .Ron repeated his red face shining like a beacon against the bright blue sky .And Katie cant you do something about that nosebleed ?Its just getting worse !said Katie thickly attempting to stem the flow with her sleeve .Harry glanced around at Fred who was looking anxious and checking his pockets .He saw Fred pull out something purple examine it for a second and then look around at Katie evidently horrorstruck .Well lets try again said Angelina .She was ignoring the Slytherins who had now set up a chant of Gryffindor are losers Gryffindor are losers but there was a certain rigidity about her seat on the broom nevertheless .This time they had been flying for barely three minutes when Angelinas whistle sounded .Harry who had just sighted the Snitch circling the opposite goalpost pulled up feeling distinctly aggrieved .What now ?he said impatiently to Alicia who was nearest .Katie she said shortly .Harry turned and saw Angelina Fred and George all flying as fast as they could toward Katie .Harry and Alicia sped toward her too .It was plain that Angelina had stopped training just in time Katie was now chalk white and covered in blood .She needs the hospital wing said Angelina .Well take her said Fred .She er might have swallowed a Blood Blisterpod by mistake Well theres no point continuing with no Beaters and a Chaser gone said Angelina glumly as Fred and George zoomed off toward the castle supporting Katie between them .Come on lets go and get changed .The Slytherins continued to chant as they trailed back into the changing rooms .How was practice ?asked Hermione rather coolly half an hour later as Harry and Ron climbed through the portrait hole into the Gryffindor common room .It was Harry began .Completely lousy said Ron in a hollow voice sinking into a chair beside Hermione .She looked up at Ron and her frostiness seemed to melt .Well it was only your first one she said consolingly its bound to take time to Who said it was me who made it lousy ?snapped Ron .No one said Hermione looking taken aback I thought You thought I was bound to be rubbish ?No of course I didnt !Look you said it was lousy so I just Im going to get started on some homework said Ron angrily and stomped off to the staircase to the boys dormitories and vanished from sight .Hermione turned to Harry .Was he lousy ?No said Harry loyally .Hermione raised her eyebrows .Well I suppose he couldve played better Harry muttered but it was only the first training session like you said .Neither Harry nor Ron seemed to make much headway with their homework that night .Harry knew Ron was too preoccupied with how badly he had performed at Quidditch practice and he himself was having difficulty in getting the chant of Gryffindor are losers out of his head .They spent the whole of Sunday in the common room buried in their books while the room around them filled up then emptied It was another clear fine day and most of their fellow Gryffindors spent the day out in the grounds enjoying what might well be some of the last sunshine that year .By the evening Harry felt as though somebody had been beating his brain against the inside of his skull .You know we probably should try and get more homework done during the week Harry muttered to Ron as they finally laid aside Professor McGonagalls long essay on the Inanimatus Conjurus spell and turned miserably to Professor Sinistra s equally long and difficult essay about Jupiters moons .Yeah said Ron rubbing slightly bloodshot eyes and throwing his fifth spoiled bit of parchment into the fire beside them .Listen .shall we just ask Hermione if we can have a look at what shes done ?Harry glanced over at her she was sitting with Crookshanks on her lap and chatting merrily to Ginny as a pair of knitting needles flashed in midair in front of her now knitting a pair of shapeless elf socks .No he said heavily you know she wont let us .And so they worked on while the sky outside the windows became steadily darker slowly the crowd in the common room began to thin again .At halfpast eleven Hermione wandered over to them yawning .Nearly done ?No said Ron shortly .Jupiters biggest moon is Ganymede not Callisto she said pointing over Rons shoulder at a line in his Astronomy essay and its Io thats got the volcanos .Thanks snarled Ron scratching out the offending sentences .Sorry I only Yeah well if youve just come over here to criticize Ron I havent got time to listen to a sermon all right Hermione Im up to my neck in it here No look !Hermione was pointing to the nearest window .Harry and Ron both looked over .A handsome screech owl was standing on the windowsill gazing into the room at Ron .Isnt that Hermes ?said Hermione sounding amazed .Blimey it is !said Ron quietly throwing down his quill and getting to his feet .Whats Percy writing to me for ?He crossed to the window and opened it Hermes flew inside landed upon Rons essay and held out a leg to which a letter was attached .Ron took it off and the owl departed at once leaving inky footprints across Rons drawing of the moon Io .Thats definitely Percys handwriting said Ron sinking back into his chair and staring at the words on the outside of the scroll To Ronald Weasley Gryffindor House Hogwarts .He looked up at the other two .What dyou reckon ?Open it !said Hermione eagerly .Harry nodded .Ron unrolled the scroll and began to read .The farther down the parchment his eyes traveled the more pronounced became his scowl .When he had finished reading he looked disgusted .He thrust the letter at Harry and Hermione who leaned toward each other to read it together Dear Ron I have only just heard from no less a person than the Minister of Magic himself who has it from your new teacher Professor Umbridge that you have become a Hogwarts prefect I was most pleasantly surprised when I heard this news and must firstly offer my congratulations .I must admit that I have always been afraid that you would take what we might call the Fred and George route rather than following in my footsteps so you can imagine my feelings on hearing you have stopped flouting authority and have decided to shoulder some real responsibility .But I want to give you more than congratulations Ron I want to give you some advice which is why I am sending this at night rather than by the usual morning post Hopefully you will be able to read this away from prying eyes and avoid awkward questions .From something the Minister let slip when telling me you are now a prefect I gather that you are still seeing a lot of Harry Potter .I must tell you Ron that nothing could put you in danger of losing your badge more than continued fraternization with that boy .Yes I am sure you are surprised to hear this no doubt you will say that Potter has always been Dumbledores favorite but I feel bound to tell you that Dumbledore may not be in charge at Hogwarts much longer and the people who count have a very different and probably more accurate view of Potters behavior .I shall say no more here but if you look at the Daily Prophet tomorrow you will get a good idea of the way the wind is blowing and see if you can spot yours truly !Seriously Ron you do not want to be tarred with the same brush as Potter it could be very damaging to your future prospects and I am talking here about life after school too .As you must be aware given that our father escorted him to court Potter had a disciplinary hearing this summer in front of the whole Wizengamot and he did not come out of it looking too good .He got off on a mere technicality if you ask me and many of the people Ive spoken to remain convinced of his guilt .It may be that you are afraid to sever ties with Potter I know that he can be unbalanced and for all I know violent but if you have any worries about this or have spotted anything else in Potters behavior that is troubling you I urge you to speak to Dolores Umbridge a really delightful woman who I know will be only too happy to advise you .This leads me to my other bit of advice .As I have hinted above Dumbledores regime at Hog warts may soon be over .Your loyalty Ron should be not to him but to the school and the Ministry .I am very sorry to hear that so far Professor Umbridge is encountering very little cooperation from staff as she strives to make those necessary changes within Hogwarts that the Ministry so ardently desires although she should find this easier from next week again see the Prophet tomorrow .I shall say only this a student who shows himself willing to help Professor Umbridge now may be very well placed for Head Boy ship in a couple of years !I am sorry that I was unable to see more of you over the summer .It pains me to criticize our parents but I am afraid I can no longer live under their roof while they remain mixed up with the dangerous crowd around Dumbledore if you are writing to Mother at any point you might tell her that a certain Sturgis Podmore who is a great friend of Dumbledores has recently been sent to Azkaban for trespass at the Ministry .Perhaps that will open their eyes to the kind of petty criminals with whom they are currently rubbing shoulders .I count myself very lucky to have escaped the stigma of association with such people the Minister really could not be more gracious to me and I do hope Ron that you will not allow family ties to blind you to the misguided nature of our parents beliefs and actions either .I sincerely hope that in time they will realize how mistaken they were and I shall of course be ready to accept a full apology when that day comes .Please think over what I have said most carefully particularly the bit about Harry Potter and congratulations again on becoming prefect .Your brother Percy Harry looked up at Ron .Well he said trying to sound as though he found the whole thing a joke if you want to er what is it ?He checked Percys letter .Oh yeah ‘sever ties with me I swear I wont get violent .Give it back said Ron holding out his hand .He is Ron said jerkily tearing Percys letter in half the worlds he tore it into quarters biggest he tore it into eighths git .He threw the pieces into the fire .Come on weve got to get this finished some time before dawn he said briskly to Harry pulling Professor Sinistra s essay back toward him .Hermione was looking at Ron with an odd expression on her face .Oh give them here she said abruptly .What ?said Ron .Give them to me Ill look through them and correct them she said .Are you serious ?Ah Hermione youre a lifesaver said Ron what can I ?What you can say is ‘We promise well never leave our homework this late again she said holding out both hands for their essays but she looked slightly amused all the same .Thanks a million Hermione said Harry weakly passing over his essay and sinking back into his armchair rubbing his eyes .It was now past midnight and the common room was deserted but for the three of them and Crookshanks .The only sound was that of Hermiones quill scratching out sentences here and there on their essays and the ruffle of pages as she checked various facts in the reference books strewn across the table .Harry was exhausted .He also felt an odd sick empty feeling in his stomach that had nothing to do with tiredness and everything to do with the letter now curling blackly in the heart of the fire .He knew that half the people inside Hogwarts thought him strange even mad he knew that the Daily Prophet had been making snide allusions to him for months but there was something about seeing it written down like that in Percys writing about knowing that Percy was advising Ron to drop him and even to tell tales on him to Umbridge that made his situation real to him as nothing else had .He had known Percy for four years had stayed in his house during the summers shared a tent with him during the Quidditch World Cup had even been awarded full marks by him in the second task of the Triwizard Tournament last year yet now Percy thought him unbalanced and possibly violent .And with a surge of sympathy for his godfather Harry thought that Sirius was probably the only person he knew who could really understand how he felt at the moment because Sirius was in the same situation nearly everyone in the Wizarding world thought Sirius a dangerous murderer and a great Voldemort supporter and he had had to live with that knowledge for fourteen years .Harry blinked .He had just seen something in the fire that could not have been there .It had flashed into sight and vanished immediately .No .it could not have been .He had imagined it because he had been thinking about Sirius .Okay write that down Hermione said to Ron pushing his essay and a sheet covered in her own writing back to Ron and then copy out this conclusion that Ive written for you .Hermione you are honestly the most wonderful person Ive ever met said Ron weakly and if Im ever rude to you again Ill know youre back to normal said Hermione .Harry yours is okay except for this bit at the end I think you must have misheard Professor Sinistra Europas covered in ice not mice Harry ?Harry had slid off his chair onto his knees and was now crouching on the singed and threadbare hearthrug gazing into the flames .Er Harry ?said Ron uncertainly .Why are you down there ?Because Ive just seen Siriuss head in the fire said Harry .He spoke quite calmly after all he had seen Siriuss head in this very fire the previous year and talked to it too .Nevertheless he could not be sure that he had really seen it this time .It had vanished so quickly .Siriuss head ?Hermione repeated .You mean like when he wanted to talk to you during the Triwizard Tournament ?But he wouldnt do that now it would be too Siriusl She gasped gazing at the fire Ron dropped his quill .There in the middle of the dancing flames sat Siriuss head long dark hair falling around his grinning face .I was starting to think youd go to bed before everyone else had disappeared he said .Ive been checking every hour .Youve been popping into the fire every hour ?Harry said half laughing .Just for a few seconds to check if the coast was clear yet .But what if youd been seen ?said Hermione anxiously .Well I think a girl first year by the look of her mightve got a glimpse of me earlier but dont worry Sirius said hastily as Hermione clapped a hand to her mouth .I was gone the moment she looked back at me and Ill bet she just thought I was an oddly shaped log or something .But Sirius this is taking an awful risk Hermione began .You sound like Molly said Sirius .This was the only way I could come up with of answering Harrys letter without resorting to a code and codes are breakable .At the mention of Harrys letter Hermione and Ron had both turned to stare at him .You didnt say youd written to Sirius !said Hermione accusingly .I forgot said Harry which was perfectly true his meeting with Cho in the Owlery had driven everything before it out of his mind .Dont look at me like that Hermione there was no way anyone would have got secret information out of it was there Sirius ?No it was very good said Sirius smiling .Anyway wed better be quick just in case were disturbed your scar .What about ?Ron began but Hermione said quickly Well tell you afterward go on Sirius .Well I know it cant be fun when it hurts but we dont think its anything to really worry about .It kept aching all last year didnt it ?Yeah and Dumbledore said it happened whenever Voldemort was feeling a powerful emotion said Harry ignoring as usual Ron and Hermione s winces .So maybe he was just I dunno really angry or something the night I had that detention .Well now hes back its bound to hurt more often said Sirius .So you dont think it had anything to do with Umbridge touching me when I was in detention with her ?Harry asked .I doubt it said Sirius .I know her by reputation and Im sure shes no Death Eater Shes foul enough to be one said Harry darkly and Ron and Hermione nodded vigorously in agreement .Yes but the world isnt split into good people and Death Eaters said Sirius with a wry smile .I know shes a nasty piece of work though you should hear Remus talk about her .Does Lupin know her ?asked Harry quickly remembering Umbridges comments about dangerous halfbreeds during her first lesson .No said Sirius but she drafted a bit of anti werewolf legislation two years ago that makes it almost impossible for him to get a job .Harry remembered how much shabbier Lupin looked these days and his dislike of Umbridge deepened even further .Whats she got against werewolves ?said Hermione angrily .Scared of them I expect said Sirius smiling at her indignation .Apparently she loathes parthumans she campaigned to have merpeople rounded up and tagged last year too .Imagine wasting your time and energy persecuting merpeople when there are little toerags like Kreacher on the loose Ron laughed but Hermione looked upset .Sirius !she said reproachfully .Honestly if you made a bit of an effort with Kreacher Im sure hed respond after all you are the only member of his family hes got left and Professor Dumbledore said So what are Umbridges lessons like ?Sirius interrupted .Is she training you all to kill half breeds ?No said Harry ignoring Hermiones affronted look at being cut off in her defense of Kreacher .Shes not letting us use magic at all !All we do is read the stupid textbook said Ron .Ah well that figures said Sirius .Our information from inside the Ministry is that Fudge doesnt want you trained in combat .Trained in combat ?repeated Harry incredulously .What does he think were doing here forming some sort of wizard army ?Thats exactly what he thinks youre doing said Sirius or rather thats exactly what hes afraid Dumbledores doing forming his own private army with which he will be able to take on the Ministry of Magic .There was a pause at this then Ron said Thats the stupidest thing Ive ever heard including all the stuff that Luna Lovegood comes out with .So were being prevented from learning Defense Against the Dark Arts because Fudge is scared well use spells against the Ministry ?said Hermione looking furious .Yep said Sirius .Fudge thinks Dumbledore will stop at nothing to seize power .Hes getting more paranoid about Dumbledore by the day .Its a matter of time before he has Dumbledore arrested on some trumpedup charge .This reminded Harry of Percys letter .Dyou know if theres going to be anything about Dumbledore in the Daily Prophet tomorrow ?Only Rons brother Percy reckons there will be I dont know said Sirius I havent seen anyone from the Order all weekend theyre all busy .Its just been Kreacher and me here .There was a definite note of bitterness in Siriuss voice .So you havent had any news about Hagrid either ?Ah .said Sirius well he was supposed to be back by now no ones sure whats happened to him .Then seeing their stricken faces he added quickly But Dumbledores not worried so dont you three get yourselves in a state Im sure Hagrids fine .But if he was supposed to be back by now .said Hermione in a small worried voice .Madame Maxime was with him weve been in touch with her and she says they got separated on the journey home but theres nothing to suggest hes hurt or well nothing to suggest hes not perfectly okay .Unconvinced Harry Ron and Hermione exchanged worried looks .Listen dont go asking too many questions about Hagrid said Sirius hastily itll just draw even more attention to the fact that hes not back and I know Dumbledore doesnt want that .Hagrids tough hell be okay .And when they did not appear cheered by this Sirius added Whens your next Hogsmeade weekend anyway ?I was thinking we got away with the dog disguise at the station didnt we ?I thought I could NO !said Harry and Hermione together very loudly .Sirius didnt you see the Daily Prophet ?said Hermione anxiously .Oh that said Sirius grinning theyre always guessing where I am they havent really got a clue Yeah but we think this time they have said Harry .Something Malfoy said on the train made us think he knew it was you and his father was on the platform Sirius you know Lucius Malfoy so dont come up here whatever you do if Malfoy recognizes you again All right all right Ive got the point said Sirius .He looked most displeased .Just an idea thought you might like to get together I would I just dont want you chucked back in Azkaban !said Harry .There was a pause in which Sirius looked out of the fire at Harry a crease between his sunken eyes .Youre less like your father than I thought he said finally a definite coolness in his voice .The risk wouldve been what made it fun for James .Look Well Id better get going I can hear Kreacher coming down the stairs said Sirius but Harry was sure he was lying .Ill write to tell you a time I can make it back into the fire then shall I ?If you can stand to risk it ?There was a tiny pop and the place where Siriuss head had been was flickering flame once more .THE HOGWARTS HIGH INQUISITOR They had expected to have to comb Hermiones Daily Prophet carefully next morning to find the article Percy had mentioned in his letter .However the departing delivery owl had barely cleared the top of the milk jug when Hermione let out a huge gasp and flattened the newspaper to reveal a large photograph of Dolores Umbridge smiling widely and blinking slowly at them from beneath the headline MINISTRY SEEKS EDUCATIONAL REFORM DOLORES UMBRIDGE APPOINTED FIRSTEVER HIGH INQUISITOR High Inquisitor ?said Harry darkly his halfeaten bit of toast slipping from his fingers .What does that mean ?Hermione read aloud In a surprise move last night the Ministry of Magic passed new legislation giving itself an unprecedented level of control at Hogwarts School of Witchcraft and Wizardry . ‘The Minister has been growing uneasy about goings on at Hogwarts for some time said Junior Assistant to the Minister Percy Weasley . ‘He is now responding to concerns voiced by anxious parents who feel the school may be moving in a direction they do not approve .This is not the first time in recent weeks Fudge has used new laws to effect improvements at the Wizarding school .As recently as August 30th Educational Decree Twenty two was passed to ensure that in the event of the current headmaster being unable to provide a candidate for a teaching post the Ministry should select an appropriate person . ‘Thats how Dolores Umbridge came to be appointed to the teaching staff at Hogwarts said Weasley last night . ‘Dumbledore couldnt find anyone so the Minister put in Umbridge and of course shes been an immediate success Shes been a WHAT ?said Harry loudly .Wait theres more said Hermione grimly . ‘ an immediate success totally revolutionizing the teaching of Defense Against the Dark Arts and providing the Minister with ontheground feedback about whats really happening at Hogwarts .It is this last function that the Ministry has now formalized with the passing of Educational Decree Twentythree which creates the new position of ‘Hogwarts High Inquisitor .‘This is an exciting new phase in the Ministers plan to get to grips with what some are calling the falling standards at Hog warts said Weasley . ‘The Inquisitor will have powers to inspect her fellow educators and make sure that they are coming up to scratch .Professor Umbridge has been offered this position in addition to her own teaching post and we are delighted to say that she has accepted .The Ministrys new moves have received enthusiastic support from parents of students at Hogwarts . ‘I feel much easier in my mind now that I know that Dumbledore is being subjected to fair and objective evaluation said Mr Lucius Malfoy 41 speaking from his Wiltshire mansion last night . ‘Many of us with our childrens best interests at heart have been concerned about some of Dumbledores eccentric decisions in the last few years and will be glad to know that the Ministry is keeping an eye on the situation .Among those ‘eccentric decisions are undoubtedly the controversial staff appointments previously described in this newspaper which have included the hiring of werewolf Remus Lupin half giant Rubeus Hagrid and delusional exAuror ‘MadEye Moody .Rumors abound of course that Albus Dumbledore once Supreme Mugwump of the International Confederation of Wizards and Chief Warlock of the Wizengamot is no longer up to the task of managing the prestigious school of Hogwarts . ‘I think the appointment of the Inquisitor is a first step toward ensuring that Hogwarts has a headmaster in whom we can all repose confidence said a Ministry insider last night .Wizengamot elders Gris elda M archbanks and Tiberius Ogden have resigned in protest at the introduction of the post of Inquisitor to Hogwarts . ‘Hogwarts is a school not an outpost of Cornelius Fudges office said Madam Marchbanks . ‘This is a further disgusting attempt to discredit Albus Dumbledore .For a full account of Madam Marchbanks alleged links to subversive goblin groups turn to page 17 .Hermione finished reading and looked across the table at the other two .So now we know how we ended up with Umbridge !Fudge passed this ‘Educational Decree and forced her on us !And now hes given her the power to inspect other teachers !Hermione was breathing fast and her eyes were very bright .I cant believe this .Its outrageous .I know it is said Harry .He looked down at his right hand clenched upon the tabletop and saw the faint white outline of the words Umbridge had forced him to cut into his skin .But a grin was unfurling on Rons face .What ?said Harry and Hermione together staring at him .Oh I cant wait to see McGonagall inspected said Ron happily .Umbridge wont know whats hit her .Well come on said Hermione jumping up wed better get going if shes inspecting Binnss class we dont want to be late .But Professor Umbridge was not inspecting their History of Magic lesson which was just as dull as the previous Monday nor was she in Snapes dungeon when they arrived for double Potions where Harrys moonstone essay was handed back to him with a large spiky black D scrawled in an upper corner .I have awarded you the grades you would have received if you presented this work in your O .W .L said Snape with a smirk as he swept among them passing back their homework .This should give you a realistic idea of what to expect in your examination .Snape reached the front of the class and turned to face them .The general standard of this homework was abysmal .Most of you would have failed had this been your examination .I expect to see a great deal more effort for this weeks essay on the various varieties of venom antidotes or I shall have to start handing out detentions to those dunces who get Ds .He smirked as Malfoy sniggered and said in a carrying whisper Some people got Ds ?Ha !Harry realized that Hermione was looking sideways to see what grade he had received he slid his moonstone essay back into his bag as quickly as possible feeling that he would rather keep that information private .Determined not to give Snape an excuse to fail him this lesson Harry read and reread every line of the instructions on the blackboard at least three times before acting on them .His Strengthening Solution was not precisely the clear turquoise shade of Hermione s but it was at least blue rather than pink like Nevilles and he delivered a flask of it to Snapes desk at the end of the lesson with a feeling of mingled defiance and relief .Well that wasnt as bad as last week was it ?said Hermione as they climbed the steps out of the dungeon and made their way across the entrance hall toward lunch .And the homework didnt go too badly either did it ?When neither Ron nor Harry answered she pressed on I mean all right I didnt expect the top grade not if hes marking to O .W .L .standard but a pass is quite encouraging at this stage wouldnt you say ?Harry made a noncommittal noise in his throat .Of course a lot can happen between now and the exam weve got plenty of time to improve but the grades were getting now are a sort of baseline arent they ?Something we can build on .They sat down together at the Gryffindor table .Obviously Id have been thrilled if Id gotten an O Hermione said Ron sharply if you want to know what grades we got ask .I dont I didnt mean well if you want to tell me I got a P said Ron ladling soup into his bowl .Happy ?Well thats nothing to be ashamed of said Fred who had just arrived at the table with George and Lee Jordan and was sitting down on Harrys right .Nothing wrong with a good healthy P .But said Hermione doesnt P stand for .Boor yeah said Lee Jordan .Still better than D isnt it ? ‘Dreadful ?Harry felt his face grow warm and faked a small coughing fit over his roll .When he emerged from this he was sorry to find that Hermione was still in full flow about O .W .L .grades .So top grades O for ‘Outstanding she was saying and then theres A No E George corrected her E for ‘Exceeds Expectations .And Ive always thought Fred and I shouldve got E in everything because we exceeded expectations just by turning up for the exams .They all laughed except Hermione who plowed on So after E its A for ‘Acceptable and thats the last pass grade isnt it ?Yep said Fred dunking an entire roll in his soup transferring it to his mouth and swallowing it whole .Then you get P for ‘Poor Ron raised both his arms in mock celebration and D for ‘Dreadful .And then T George reminded him .T ?asked Hermione looking appalled .Even lower than a D ?What on earth does that stand for ?Troll said George promptly .Harry laughed again though he was not sure whether or not George was joking .He imagined trying to conceal from Hermione that he had received Ts in all his O .W .L .s and immediately resolved to work harder from now on .You lot had an inspected lesson yet ?Fred asked them .No said Hermione at once have you ?Just now before lunch said George .Charms .What was it like ?Harry and Hermione asked together .Fred shrugged .Not that bad .Umbridge just lurked in the corner making notes on a clipboard .You know what Flitwicks like he treated her like a guest didnt seem to bother him at all .She didnt say much .Asked Alicia a couple of questions about what the classes are normally like Alicia told her they were really good that was it .I cant see old Flitwick getting marked down said George he usually gets everyone through their exams all right .Whove you got this afternoon ?Fred asked Harry .Trelawney A T if ever I saw one and Umbridge herself .Well be a good boy and keep your temper with Umbridge today said George .Angelinall do her nut if you miss any more Quidditch practices .But Harry did not have to wait for Defense Against the Dark Arts to meet Professor Umbridge .He was pulling out his dream diary in a seat at the very back of the shadowy Divination room when Ron elbowed him in the ribs and looking round he saw Professor Umbridge emerging through the trapdoor in the floor .The class which had been talking cheerily fell silent at once .The abrupt fall in the noise level made Professor Trelawney who had been wafting about handing out Dream Oracles look round .Good afternoon Professor Trelawney said Professor Umbridge with her wide smile .You received my note I trust ?Giving the time and date of your inspection ?Professor Trelawney nodded curtly and looking very disgruntled turned her back on Professor Umbridge and continued to give out books .Still smiling Professor Umbridge grasped the back of the nearest armchair and pulled it to the front of the class so that it was a few inches behind Professor Trelawneys seat .She then sat down took her clipboard from her flowery bag and looked up expectantly waiting for the class to begin .Professor Trelawney pulled her shawls tight about her with slightly trembling hands and surveyed the class through her hugely magnifying lenses .We shall be continuing our study of prophetic dreams today she said in a brave attempt at her usual mystic tones though her voice shook slightly .Divide into pairs please and interpret each others latest nighttime visions with the aid of the Oracle .She made as though to sweep back to her seat saw Professor Umbridge sitting right beside it and immediately veered left toward Parvati and Lavender who were already deep in discussion about Parvatis most recent dream .Harry opened his copy of The Dream Oracle watching Umbridge covertly .She was making notes on her clipboard now .After a few minutes she got to her feet and began to pace the room in Trelawneys wake listening to her conversations with students and posing questions here and there .Harry bent his head hurriedly over his book .Think of a dream quick he told Ron in case the old toad comes our way .I did it last time Ron protested its your turn you tell me one .Oh I dunno .said Harry desperately who could not remember dreaming anything at all over the last few days .Lets say I dreamed I was .drowning Snape in my cauldron .Yeah thatll do .Ron chortled as he opened his Dream Oracle .Okay weve got to add your age to the date you had the dream the number of letters in the subject .would that be ‘drowning or ‘cauldron or ‘Snape ?It doesnt matter pick any of them said Harry chancing a glance behind him .Professor Umbridge was now standing at Professor Trelawneys shoulder making notes while the Divination teacher questioned Neville about his dream diary .What night did you dream this again ?Ron said immersed in calculations .I dunno last night whenever you like Harry told him trying to listen to what Umbridge was saying to Professor Trelawney .They were only a table away from him and Ron now .Professor Umbridge was making another note on her clipboard and Professor Trelawney was looking extremely put out .Now said Umbridge looking up at Trelawney youve been in this post how long exactly ?Professor Trelawney scowled at her arms crossed and shoulders hunched as though wishing to protect herself as much as possible from the indignity of the inspection .After a slight pause in which she seemed to decide that the question was not so offensive that she could reasonably ignore it she said in a deeply resentful tone Nearly sixteen years .Quite a period said Professor Umbridge making a note on her clipboard .So it was Professor Dumbledore who appointed you ?Thats right said Professor Trelawney shortly .Professor Umbridge made another note .And you are a greatgreatgranddaughter of the celebrated Seer Cassandra Trelawney ?Yes said Professor Trelawney holding her head a little higher .Another note on the clipboard .But I think correct me if I am mistaken that you are the first in your family since Cassandra to be possessed of second sight ?These things often skip er three generations said Professor Trelawney .Professor Umbridges toadlike smile widened .Of course she said sweetly making yet another note .Well if you could just predict something for me then ?She looked up inquiringly still smiling .Professor Trelawney had stiffened as though unable to believe her ears .I dont understand you said Professor Trelawney clutching convulsively at the shawl around her scrawny neck .Id like you to make a prediction for me said Professor Umbridge very clearly .Harry and Ron were not the only people watching and listening sneakily from behind their books now most of the class were staring transfixed at Professor Trelawney as she drew herself up to her full height her beads and bangles clinking .The Inner Eye does not See upon command !she said in scandalized tones .I see said Professor Umbridge softly making yet another note on her clipboard .I but but .wait said Professor Trelawney suddenly in an attempt at her usual ethereal voice though the mystical effect was ruined somewhat by the way it was shaking with anger .I .I think I do see something .something that concerns you .Why I sense something .something dark .some grave peril .Professor Trelawney pointed a shaking finger at Professor Umbridge who continued to smile blandly at her eyebrows raised .I am afraid .I am afraid that you are in grave danger !Professor Trelawney finished dramatically .There was a pause .Professor Umbridges eyebrows were still raised .Right she said softly scribbling on her clipboard once more .Well if thats really the best you can do She turned away leaving Professor Trelawney standing rooted to the spot her chest heaving .Harry caught Rons eye and knew that Ron was thinking exactly the same as he was They both knew that Professor Trelawney was an old fraud but on the other hand they loathed Umbridge so much that they felt very much on Trelawneys side until she swooped down on them a few seconds later that was .Well ?she said snapping her long fingers under Harrys nose uncharacteristically brisk .Let me see the start youve made on your dream diary please .And by the time she had interpreted Harrys dreams at the top of her voice all of which even the ones that involved eating porridge apparently foretold a gruesome and early death he was feeling much less sympathetic toward her .All the while Professor Umbridge stood a few feet away making notes on that clipboard and when the bell rang she descended the silver ladder first so that she was waiting for them all when they reached their Defense Against the Dark Arts lesson ten minutes later .She was humming and smiling to herself when they entered the room .Harry and Ron told Hermione who had been in Arithmancy exactly what had happened in Divination while they all took out their copies of Defensive Magical Theory but before Hermione could ask any questions Professor Umbridge had called them all to order and silence fell .Wands away she instructed them all smilingly and those people who had been hopeful enough to take them out sadly returned them to their bags .As we finished chapter one last lesson I would like you all to turn to page nineteen today and commence chapter two ‘Common Defensive Theories and Their Derivation .There will be no need to talk .Still smiling her wide selfsatisfied smile she sat down at her desk .The class gave an audible sigh as it turned as one to page nineteen .Harry wondered dully whether there were enough chapters in the book to keep them reading through all this years lessons and was on the point of checking the contents when he noticed that Hermione had her hand in the air again .Professor Umbridge had noticed too and what was more she seemed to have worked out a strategy for just such an eventuality .Instead of trying to pretend she had not noticed Hermione she got to her feet and walked around the front row of desks until they were facetoface then she bent down and whispered so that the rest of the class could not hear What is it this time Miss Granger ?Ive already read chapter two said Hermione .Well then proceed to chapter three .Ive read that too .Ive read the whole book .Professor Umbridge blinked but recovered her poise almost instantly .Well then you should be able to tell me what Slinkhard says about counterjinxes in chapter fifteen .He says that counterjinxes are improperly named said Hermione promptly .He says ‘counterjinx is just a name people give their jinxes when they want to make them sound more acceptable .Professor Umbridge raised her eyebrows and Harry knew she was impressed against her will .But I disagree Hermione continued .Professor Umbridges eyebrows rose a little higher and her gaze became distinctly colder .You disagree ?Yes I do said Hermione who unlike Umbridge was not whispering but speaking in a clear carrying voice that had by now attracted the rest of the classs attention .Mr Slinkhard doesnt like jinxes does he ?But I think they can be very useful when theyre used defensively .Oh you do do you ?said Professor Umbridge forgetting to whisper and straightening up .Well Im afraid it is Mr Slinkhard s opinion and not yours that matters within this classroom Miss Granger .But Hermione began .That is enough said Professor Umbridge .She walked back to the front of the class and stood before them all the jauntiness she had shown at the beginning of the lesson gone .Miss Granger I am going to take five points from Gryffindor House .There was an outbreak of muttering at this .What for ?said Harry angrily .Dont you get involved !Hermione whispered urgently to him .For disrupting my class with pointless interruptions said Professor Umbridge smoothly .I am here to teach you using a Ministryapproved method that does not include inviting students to give their opinions on matters about which they understand very little .Your previous teachers in this subject may have allowed you more license but as none of them with the possible exception of Professor Quirrell who did at least appear to have restricted himself to ageappropriate subjects would have passed a Ministry inspection Yeah Quirrell was a great teacher said Harry loudly there was just that minor drawback of him having Lord Voldemort sticking out of the back of his head .This pronouncement was followed by one of the loudest silences Harry had ever heard .Then I think another weeks detentions would do you some good Mr Potter said Umbridge sleekly .k k k The cut on the back of Harrys hand had barely healed and by the following morning it was bleeding again .He did not complain during the evenings detention he was determined not to give Umbridge the satisfaction over and over again he wrote I must not tell lies and not a sound escaped his lips though the cut deepened with every letter .The very worst part of this second weeks worth of detentions was just as George had predicted Angelinas reaction .She cornered him just as he arrived at the Gryffindor table for breakfast on Tuesday and shouted so loudly that Professor McGonagall came sweeping down upon the pair of them from the staff table .Miss Johnson how dare you make such a racket in the Great Hall !Five points from Gryffindor !But Professor hes gone and landed himself in detention again Whats this Potter ?said Professor McGonagall sharply rounding on Harry .Detention ?From whom ?From Professor Umbridge muttered Harry not meeting Professor McGonagalls beady squareframed eyes .Are you telling me she said lowering her voice so that the group of curious Ravenclaws behind them could not hear that after the warning I gave you last Monday you lost your temper in Professor Umbridges class again ?Yes Harry muttered speaking to the floor .Potter you must get a grip on yourself !You are heading for serious trouble !Another five points from Gryffindor !But what ?Professor no !Harry said furious at this injustice .Im already being punished by her why do you have to take points as well ?Because detentions do not appear to have any effect on you whatsoever !said Professor McGonagall tartly .No not another word of complaint Potter !And as for you Miss Johnson you will confine your shouting matches to the Quidditch pitch in future or risk losing the team Captaincy !She strode back toward the staff table .Angelina gave Harry a look of deepest disgust and stalked away upon which Harry flung himself onto the bench beside Ron fuming .Shes taken points off Gryffindor because Im having my hand sliced open every night !How is that fair how ?I know mate said Ron sympathetically tipping bacon onto Harrys plate shes bang out of order .Hermione however merely rustled the pages of her Daily Prophet and said nothing .You think McGonagall was right do you ?said Harry angrily to the picture of Cornelius Fudge obscuring Hermione s face .I wish she hadnt taken points from you but I think shes right to warn you not to lose your temper with Umbridge said Hermiones voice while Fudge gesticulated forcefully from the front page clearly giving some kind of speech .Harry did not speak to Hermione all through Charms but when they entered Transfiguration he forgot his anger Professor Umbridge and her clipboard were sitting in a corner and the sight of her drove the memory of breakfast right out of his head .Excellent whispered Ron as they sat down in their usual seats .Lets see Umbridge get what she deserves .Professor McGonagall marched into the room without giving the slightest indication that she knew Professor Umbridge was there .That will do she said and silence fell immediately .Mr Finnigan kindly come here and hand back the homework Miss Brown please take this box of mice dont be silly girl they wont hurt you and hand one to each student Hem hem said Professor Umbridge employing the same silly little cough she had used to interrupt Dumbledore on the first night of term .Professor McGonagall ignored her .Seamus handed back Harrys essay Harry took it without looking at him and saw to his relief that he had managed an A .Right then everyone listen closely Dean Thomas if you do that to the mouse again I shall put you in detention most of you have now successfully vanished your snails and even those who were left with a certain amount of shell have the gist of the spell .Today we shall be Hem hem said Professor Umbridge .Yes ?said Professor McGonagall turning round her eyebrows so close together they seemed to form one long severe line .I was just wondering Professor whether you received my note telling you of the date and time of your inspec Obviously I received it or I would have asked you what you are doing in my classroom said Professor McGonagall turning her back firmly on Professor Umbridge .Many of the students exchanged looks of glee .As I was saying today we shall be practicing the altogether more difficult vanishment of mice .Now the Vanishing Spell Hem hem .I wonder said Professor McGonagall in cold fury turning on Professor Umbridge how you expect to gain an idea of my usual teaching methods if you continue to interrupt me ?You see I do not generally permit people to talk when I am talking .Professor Umbridge looked as though she had just been slapped in the face .She did not speak but straightened the parchment on her clipboard and began scribbling furiously .Looking supremely unconcerned Professor McGonagall addressed the class once more .As I was saying the Vanishing Spell becomes more difficult with the complexity of the animal to be vanished .The snail as an invertebrate does not present much of a challenge the mouse as a mammal offers a much greater one .This is not therefore magic you can accomplish with your mind on your dinner .So you know the incantation let me see what you can do .How she can lecture me about not losing my temper with Umbridge !Harry said to Ron under his voice but he was grinning his anger with Professor McGonagall had quite evaporated .Professor Umbridge did not follow Professor McGonagall around the class as she had followed Professor Trelawney perhaps she thought that Professor McGonagall would not permit it .She did however take many more notes while she sat in her corner and when Professor McGonagall finally told them all to pack away rose with a grim expression on her face .Well its a start said Ron holding up a long wriggling mouse tail and dropping it back into the box Lavender was passing around .As they filed out of the classroom Harry saw Professor Umbridge approach the teachers desk he nudged Ron who nudged Hermione in turn and the three of them deliberately fell back to eavesdrop .How long have you been teaching at Hogwarts ?Professor Umbridge asked .Thirtynine years this December said Professor McGonagall brusquely snapping her bag shut .Professor Umbridge made a note .Very well she said you will receive the results of your inspection in ten days time .I can hardly wait said Professor McGonagall in a coldly indifferent voice and she strode off toward the door .Hurry up you three she added sweeping Harry Ron and Hermione before her .Harry could not help giving her a faint smile and could have sworn he received one in return .He had thought that the next time he would see Umbridge would be in his detention that evening but he was wrong .When they walked down the lawns toward the forest for Care of Magical Creatures they found her and her clipboard waiting for them beside Professor GrubblyPlank .You do not usually take this class is that correct ?Harry heard her ask as they arrived at the trestle table where the group of captive bowtruckles were scrabbling around for wood lice like so many living twigs .Quite correct said Professor GrubblyPlank hands behind her back and bouncing on the balls of her feet .I am a substitute teacher standing in for Professor Hagrid .Harry exchanged uneasy looks with Ron and Hermione .Malfoy was whispering with Crabbe and Goyle he would surely love this opportunity to tell tales on Hagrid to a member of the Ministry .Hmm said Professor Umbridge dropping her voice though Harry could still hear her quite clearly I wonder the headmaster seems strangely reluctant to give me any information on the matter can you tell me what is causing Professor Hagrids very extended leave of absence ?Harry saw Malfoy look up eagerly .Fraid I cant said Professor GrubblyPlank breezily .Dont know anything more about it than you do .Got an owl from Dumbledore would I like a couple of weeks teaching work accepted thats as much as I know .Well .shall I get started then ?Yes please do said Professor Umbridge scribbling upon her clipboard .Umbridge took a different tack in this class and wandered among the students questioning them on magical creatures .Most people were able to answer well and Harrys spirits lifted somewhat at least the class was not letting Hagrid down .Overall said Professor Umbridge returning to Professor GrubblyPlanks side after a lengthy interrogation of Dean Thomas how do you as a temporary member of staff an objective outsider I suppose you might say how do you find Hogwarts ?Do you feel you receive enough support from the school management ?Oh yes Dumbledores excellent said Professor GrubblyPlank heartily .No Im very happy with the way things are run very happy indeed .Looking politely incredulous Umbridge made a tiny note on her clipboard and went on And what are you planning to cover with this class this year assuming of course that Professor Hagrid does not return ?Oh Ill take them through the creatures that most often come up in O .W .L .said Professor Grubbly Plank .Not much left to do theyve studied unicorns and nifflers I thought wed cover porlocks and kneazles make sure they can recognize crups and knarls you know .Well you seem to know what youre doing at any rate said Professor Umbridge making a very obvious tick on her clipboard .Harry did not like the emphasis she put on you and liked it even less when she put her next question to Goyle Now I hear there have been injuries in this class ?Goyle gave a stupid grin .Malfoy hastened to answer the question .That was me he said .I was slashed by a hippogriff .A hippogriff ?said Professor Umbridge now scribbling frantically .Only because he was too stupid to listen to what Hagrid told him to do said Harry angrily .Both Ron and Hermione groaned .Professor Umbridge turned her head slowly in Harrys direction .Another nights detention I think she said softly .Well thank you very much Professor GrubblyPlank I think thats all I need here .You will be receiving the results of your inspection within ten days .Jolly good said Professor GrubblyPlank and Professor Umbridge set off back across the lawn to the castle .ie ie ie It was nearly midnight when Harry left Umbridges office that night his hand now bleeding so severely that it was staining the scarf he had wrapped around it .He expected the common room to be empty when he returned but Ron and Hermione had sat up waiting for him .He was pleased to see them especially as Hermione was disposed to be sympathetic rather than critical .Here she said anxiously pushing a small bowl of yellow liquid toward him soak your hand in that its a solution of strained and pickled murtlap tentacles it should help .Harry placed his bleeding aching hand into the bowl and experienced a wonderful feeling of relief .Crookshanks curled around his legs purring loudly and then leapt into his lap and settled down .Thanks he said gratefully scratching behind Crookshanks s ears with his left hand .I still reckon you should complain about this said Ron in a low voice .No said Harry flatly .McGonagall would go nuts if she knew Yeah she probably would said Harry .And how long dyou reckon itd take Umbridge to pass another Decree saying anyone who complains about the High Inquisitor gets sacked immediately ?Ron opened his mouth to retort but nothing came out and after a moment he closed it again in a defeated sort of way .Shes an awful woman said Hermione in a small voice .Awful .You know I was just saying to Ron when you came in .weve got to do something about her .I suggested poison said Ron grimly .No .I mean something about what a dreadful teacher she is and how were not going to learn any defense from her at all said Hermione .Well what can we do about that ?said Ron yawning .S too late isnt it ?She got the job shes here to stay Fudgell make sure of that .Well said Hermione tentatively .You know I was thinking today .She shot a slightly nervous look at Harry and then plunged on I was thinking that maybe the times come when we should just just do it ourselves .Do what ourselves ?said Harry suspiciously still floating his hand in the essence of murtlap tentacles .Well learn Defense Against the Dark Arts ourselves said Hermione .Come off it groaned Ron .You want us to do extra work ?Dyou realize Harry and I are behind on homework again and its only the second week ?But this is much more important than homework !said Hermione .Harry and Ron goggled at her .I didnt think there was anything in the universe more important than homework said Ron .Dont be silly of course there is !said Hermione and Harry saw with an ominous feeling that her face was suddenly alight with the kind of fervor that S .P .E .W .usually inspired in her .Its about preparing ourselves like Harry said in Umbridges first lesson for whats waiting out there .Its about making sure we really can defend ourselves .If we dont learn anything for a whole year We cant do much by ourselves said Ron in a defeated voice .I mean all right we can go and look jinxes up in the library and try and practice them I suppose No I agree weve gone past the stage where we can just learn things out of books said Hermione .We need a teacher a proper one who can show us how to use the spells and correct us if were going wrong .If youre talking about Lupin .Harry began .No no Im not talking about Lupin said Hermione .Hes too busy with the Order and anyway the most we could see him is during Hogsmeade weekends and thats not nearly often enough .Who then ?said Harry frowning at her .Hermione heaved a very deep sigh .Isnt it obvious ?she said .Im talking about you Harry .There was a moments silence .A light night breeze rattled the windowpanes behind Ron and the fire guttered .About me what ?said Harry .Im talking about you teaching us Defense Against the Dark Arts .Harry stared at her .Then he turned to Ron ready to exchange the exasperated looks they sometimes shared when Hermione elaborated on farfetched schemes like S .P .E .W .To Harrys consternation however Ron did not look exasperated .He was frowning slightly apparently thinking .Then he said Thats an idea .Whats an idea ?said Harry .You said Ron .Teaching us to do it .But .Harry was grinning now sure the pair of them were pulling his leg .But Im not a teacher I cant Harry youre the best in the year at Defense Against the Dark Arts said Hermione .Me ?said Harry now grinning more broadly than ever .No Im not youve beaten me in every test Actually I havent said Hermione coolly .You beat me in our third year the only year we both sat the test and had a teacher who actually knew the subject But Im not talking about test results Harry .Look what youve done How dyou mean ?You know what Im not sure I want someone this stupid teaching me Ron said to Hermione smirking slightly .He turned to Harry .Lets think he said pulling a face like Goyle concentrating .Uh .first year you saved the Stone from YouKnowWho .But that was luck said Harry that wasnt skill Second year Ron interrupted you killed the basilisk and destroyed Riddle .Yeah but if Fawkes hadnt turned up I Third year said Ron louder still you fought off about a hundred dementors at once You know that was a fluke if the TimeTurner hadnt ?Last year Ron said almost shouting now you fought off YouKnowWho again Listen to me !said Harry almost angrily because Ron and Hermione were both smirking now .Just listen to me all right ?It sounds great when you say it like that but all that stuff was luck I didnt know what I was doing half the time I didnt plan any of it I just did whatever I could think of and I nearly always had help Ron and Hermione were still smirking and Harry felt his temper rise he wasnt even sure why he was feeling so angry .Dont sit there grinning like you know better than I do I was there wasnt I ?he said heatedly .I know what went on all right ?And I didnt get through any of that because I was brilliant at Defense Against the Dark Arts I got through it all because because help came at the right time or because I guessed right but I just blundered through it all I didnt have a clue what I was doing STOP LAUGHING !The bowl of murtlap essence fell to the floor and smashed .He became aware that he was on his feet though he couldnt remember standing up .Crookshanks streaked away under a sofa Ron and Hermione s smiles had vanished .You dont know what its likel You neither of you youve never had to face him have you ?You think its just memorizing a bunch of spells and throwing them at him like youre in class or something ?The whole time you know theres nothing between you and dying except your own your own brain or guts or whatever like you can think straight when you know youre about a second from being murdered or tortured or watching your friends die theyve never taught us that in their classes what its like to deal with things like that and you two sit there acting like Im a clever little boy to be standing here alive like Diggory was stupid like he messed up you just dont get it that could just as easily have been me it would have been if Voldemort hadnt needed me We werent saying anything like that mate said Ron looking aghast .We werent having a go at Diggory we didnt youve got the wrong end of the He looked helplessly at Hermione whose face was stricken .Harry she said timidly dont you see ?This .this is exactly why we need you .We need to know what its rreally like .facing him .facing VVoldemort .It was the first time she had ever said Voldemorts name and it was this more than anything else that calmed Harry .Still breathing hard he sank back into his chair becoming aware as he did so that his hand was throbbing horribly again .He wished he had not smashed the bowl of murtlap essence .Well .think about it said Hermione quietly .Please ?Harry could not think of anything to say .He was feeling ashamed of his outburst already .He nodded hardly aware of what he was agreeing to .Hermione stood up .Well Im off to bed she said in a voice that was clearly as natural as she could make it .Erm .night .Ron had gotten to his feet too .Coming ?he said awkwardly to Harry .Yeah said Harry .In .in a minute .Ill just clear this up .He indicated the smashed bowl on the floor .Ron nodded and left .Reparo Harry muttered pointing his wand at the broken pieces of china .They flew back together good as new but there was no returning the murtlap essence to the bowl .He was suddenly so tired that he was tempted to sink back into his armchair and sleep there but instead he got to his feet and followed Ron upstairs .His restless night was punctuated once more by dreams of long corridors and locked doors and he awoke next day with his scar prickling again .IN THE HOGS HEAD Hermione made no mention of Harry giving Defense Against the Dark Arts lessons for two whole weeks after her original suggestion .Harrys detentions with Umbridge were finally over he doubted whether the words now etched on the back of his hand would ever fade entirely Ron had had four more Quidditch practices and not been shouted at during the last two and all three of them had managed to vanish their mice in Transfiguration Hermione had actually progressed to vanishing kittens before the subject was broached again on a wild blustery evening at the end of September when the three of them were sitting in the library looking up potion ingredients for Snape .I was wondering Hermione said suddenly whether youd thought any more about Defense Against the Dark Arts Harry .Course I have said Harry grumpily .Cant forget it can we with that hag teaching us I meant the idea Ron and I had Ron cast her an alarmed threatening kind of look she frowned at him oh all right the idea had then about you teaching us .Harry did not answer at once .He pretended to be perusing a page of Asiatic AntiVenoms because he did not want to say what was in his mind .The fact was that he had given the matter a great deal of thought over the past fortnight .Sometimes it seemed an insane idea just as it had on the night Hermione had proposed it but at others he had found himself thinking about the spells that had served him best in his various encounters with Dark creatures and Death Eaters found himself in fact subconsciously planning lessons .Well he said slowly when he could not pretend to find Asiatic antivenoms interesting much longer yeah I Ive thought about it a bit .And ?said Hermione eagerly .I dunno said Harry playing for time .He looked up at Ron .I thought it was a good idea from the start said Ron who seemed keener to join in this conversation now that he was sure that Harry was not going to start shouting again .Harry shifted uncomfortably in his chair .You did listen to what I said about a load of it being luck didnt you ?Yes Harry said Hermione gently but all the same theres no point pretending that youre not good at Defense Against the Dark Arts because you are .You were the only person last year who could throw off the Imperius Curse completely you can produce a Patronus you can do all sorts of stuff that fullgrown wizards cant Viktor always said Ron looked around at her so fast he appeared to crick his neck rubbing it he said Yeah ?What did Vicky say ?Ho ho said Hermione in a bored voice .He said Harry knew how to do stuff even he didnt and he was in the final year at Durmstrang .Ron was looking at Hermione suspiciously .Youre not still in contact with him are you ?So what if I am ?said Hermione coolly though her face was a little pink .I can have a pen pal if I He didnt only want to be your pen pal said Ron accusingly .Hermione shook her head exasperatedly and ignoring Ron who was continuing to watch her said to Harry Well what do you think ?Will you teach us ?Just you and Ron yeah ?Well said Hermione now looking a mite anxious again .Well .now dont fly off the handle again Harry please .But I really think you ought to teach anyone who wants to learn .I mean were talking about defending ourselves against VVoldemort oh dont be pathetic Ron it doesnt seem fair if we dont offer the chance to other people .Harry considered this for a moment then said Yeah but I doubt anyone except you two would want to be taught by me .Im a nutter remember ?Well I think you might be surprised how many people would be interested in hearing what youve got to say said Hermione seriously .Look she leaned toward him Ron who was still watching her with a frown on his face leaned forward to listen too you know the first weekend in Octobers a Hogsmeade weekend ?How would it be if we tell anyone whos interested to meet us in the village and we can talk it over ?Why do we have to do it outside school ?said Ron .Because said Hermione returning to the diagram of the Chinese Chomping Cabbage she was copying I dont think Umbridge would be very happy if she found out what we were up to .Harry had been looking forward to the weekend trip into Hogsmeade but there was one thing worrying him .Sirius had maintained a stony silence since he had appeared in the fire at the beginning of September Harry knew they had made him angry by saying that they did not want him to come but he still worried from time to time that Sirius might throw caution to the winds and turn up anyway .What were they going to do if the great black dog came bounding up the street toward them in Hogsmeade perhaps under the nose of Draco Malfoy ?Well you cant blame him for wanting to get out and about said Ron when Harry discussed his fears with him and Hermione .I mean hes been on the run for over two years hasnt he and I know that cant have been a laugh but at least he was free wasnt he ?And now hes just shut up all the time with that lunatic elf .Hermione scowled at Ron but otherwise ignored the slight on Kreacher .The trouble is she said to Harry until VVoldemort oh for heavens sake Ron comes out into the open Sirius is going to have to stay hidden isnt he ?I mean the stupid Ministry isnt going to realize Sirius is innocent until they accept that Dumbledores been telling the truth about him all along .And once the fools start catching real Death Eaters again itll be obvious Sirius isnt one .I mean he hasnt got the Mark for one thing .I dont reckon hed be stupid enough to turn up said Ron bracingly .Dumbledored go mad if he did and Sirius listens to Dumbledore even if he doesnt like what he hears .When Harry continued to look worried Hermione said Listen Ron and I have been sounding out people who we thought might want to learn some proper Defense Against the Dark Arts and there are a couple who seem interested .Weve told them to meet us in Hogsmeade .Right said Harry vaguely his mind still on Sirius .Dont worry Harry Hermione said quietly .Youve got enough on your plate without Sirius too .She was quite right of course he was barely keeping up with his homework though he was doing much better now that he was no longer spending every evening in detention with Umbridge .Ron was even further behind with his work than Harry because while they both had Quidditch practices twice a week Ron also had prefect duties .However Hermione who was taking more subjects than either of them had not only finished all her homework but was also finding time to knit more elf clothes .Harry had to admit that she was getting better it was now almost always possible to distinguish between the hats and the socks .The morning of the Hogsmeade visit dawned bright but windy .After breakfast they queued up in front of Filch who matched their names to the long list of students who had permission from their parents or guardian to visit the village .With a slight pang Harry remembered that if it hadnt been for Sirius he would not have been going at all .When Harry reached Filch the caretaker gave a great sniff as though trying to detect a whiff of something from Harry .Then he gave a curt nod that set his jowls aquiver again and Harry walked on out onto the stone steps and the cold sunlit day .Er why was Filch sniffing you ?asked Ron as he Harry and Hermione set off at a brisk pace down the wide drive to the gates .I suppose he was checking for the smell of Dungbombs said Harry with a small laugh .I forgot to tell you .And he recounted the story of sending his letter to Sirius and Filch bursting in seconds later demanding to see the letter .To his slight surprise Hermione found this story highly interesting much more indeed than he did himself .He said he was tipped off you were ordering Dungbombs ?But who had tipped him off ?I dunno said Harry shrugging .Maybe Malfoy hed think it was a laugh .They walked between the tall stone pillars topped with winged boars and turned left onto the road into the village the wind whipping their hair into their eyes .Malfoy ?said Hermione very skeptically .Well .yes .maybe .And she remained deep in thought all the way into the outskirts of Hogsmeade .Where are we going anyway ?Harry asked .The Three Broomsticks ?Oh no said Hermione coming out of her reverie no its always packed and really noisy .Ive told the others to meet us in the Hogs Head that other pub you know the one its not on the main road .I think its a bit .you know .dodgy .but students dont normally go in there so I dont think well be overheard .They walked down the main street past Zonkos Joke Shop where they were unsurprised to see Fred George and Lee Jordan past the post office from which owls issued at regular intervals and turned up a side street at the top of which stood a small inn .A battered wooden sign hung from a rusty bracket over the door with a picture upon it of a wild boars severed head leaking blood onto the white cloth around it .The sign creaked in the wind as they approached .All three of them hesitated outside the door .Well come on said Hermione slightly nervously .Harry led the way inside .It was not at all like the Three Broomsticks whose large bar gave an impression of gleaming warmth and cleanliness .The Hogs Head bar comprised one small dingy and very dirty room that smelled strongly of something that might have been goats .The bay windows were so encrusted with grime that very little daylight could permeate the room which was lit instead with the stubs of candles sitting on rough wooden tables .The floor seemed at first glance to be earthy though as Harry stepped onto it he realized that there was stone beneath what seemed to be the accumulated filth of centuries .Harry remembered Hagrid mentioning this pub in his first year Yeh get a lot o funny folk in the Hogs Head he had said explaining how he had won a dragons egg from a hooded stranger there .At the time Harry had wondered why Hagrid had not found it odd that the stranger kept his face hidden throughout their encounter now he saw that keeping your face hidden was something of a fashion in the Hogs Head .There was a man at the bar whose whole head was wrapped in dirty gray bandages though he was still managing to gulp endless glasses of some smoking fiery substance through a slit over his mouth .Two figures shrouded in hoods sat at a table in one of the windows Harry might have thought them dementors if they had not been talking in strong Yorkshire accents in a shadowy corner beside the fireplace sat a witch with a thick black veil that fell to her toes .They could just see the tip of her nose because it caused the veil to protrude slightly .I dont know about this Hermione Harry muttered as they crossed to the bar .He was looking particularly at the heavily veiled witch .Has it occurred to you Umbridge might be under that ?Hermione cast an appraising eye at the veiled figure .Umbridge is shorter than that woman she said quietly .And anyway even if Umbridge does come in here theres nothing she can do to stop us Harry because Ive double and triplechecked the school rules .Were not outofbounds I specifically asked Professor Flitwick whether students were allowed to come in the Hogs Head and he said yes but he advised me strongly to bring our own glasses .And Ive looked up everything I can think of about study groups and homework groups and theyre definitely allowed .I just dont think its a good idea if we parade what were doing .No said Harry dryly especially as its not exactly a homework group youre planning is it ?The barman sidled toward them out of a back room .He was a grumpylooking old man with a great deal of long gray hair and beard .He was tall and thin and looked vaguely familiar to Harry .What ?he grunted .Three butterbeers please said Hermione .The man reached beneath the counter and pulled up three very dusty very dirty bottles which he slammed on the bar .Six Sickles he said .Ill get them said Harry quickly passing over the silver .The barmans eyes traveled over Harry resting for a fraction of a second on his scar .Then he turned away and deposited Harrys money in an ancient wooden till whose drawer slid open automatically to receive it .Harry Ron and Hermione retreated to the farthest table from the bar and sat down looking around while the man in the dirty gray bandages rapped the counter with his knuckles and received another smoking drink from the barman .You know what ?Ron murmured looking over at the bar with enthusiasm .We could order anything we liked in here I bet that bloke would sell us anything he wouldnt care .Ive always wanted to try firewhisky You are a prefect snarled Hermione .Oh said Ron the smile fading from his face .Yeah So who did you say is supposed to be meeting us ?Harry asked wrenching open the rusty top of his butterbeer and taking a swig .Just a couple of people Hermione repeated checking her watch and then looking anxiously toward the door .I told them to be here about now and Im sure they all know where it is oh look this might be them now The door of the pub had opened .A thick band of dusty sunlight split the room in two for a moment and then vanished blocked by the incoming rush of a crowd of people .First came Neville with Dean and Lavender who were closely followed by Parvati and Padma Patil with Harrys stomach did a back flip Cho and one of her usually giggling girlfriends then on her own and looking so dreamy that she might have walked in by accident Luna Lovegood then Katie Bell Alicia Spinnet and Angelina Johnson Colin and Dennis Creevey Ernie Macmillan Justin FinchFletchley Hannah Abbott and a Hufflepuff girl with a long plait down her back whose name Harry did not know three Ravenclaw boys he was pretty sure were called Anthony Goldstein Michael Corner and Terry Boot Ginny followed by a tall skinny blond boy with an upturned nose whom Harry recognized vaguely as being a member of the Hufflepuff Quidditch team and bringing up the rear Fred and George Weasley with their friend Lee Jordan all three of whom were carrying large paper bags crammed with Zonkos merchandise .A couple of people ?said Harry hoarsely to Hermione .A couple of people ?Yes well the idea seemed quite popular said Hermione happily .Ron do you want to pull up some more chairs ?The barman had frozen in the act of wiping out a glass with a rag so filthy it looked as though it had never been washed .Possibly he had never seen his pub so full .Hi said Fred reaching the bar first and counting his companions quickly .Could we have .twenty five butterbeers please ?The barman glared at him for a moment then throwing down his rag irritably as though he had been interrupted in something very important he started passing up dusty butterbeers from under the bar .Cheers said Fred handing them out .Cough up everyone I havent got enough gold for all of these .Harry watched numbly as the large chattering group took their beers from Fred and rummaged in their robes to find coins .He could not imagine what all these people had turned up for until the horrible thought occurred to him that they might be expecting some kind of speech at which he rounded on Hermione .What have you been telling people ?he said in a low voice .What are they expecting ?Ive told you they just want to hear what youve got to say said Hermione soothingly but Harry continued to look at her so furiously that she added quickly You dont have to do anything yet Ill speak to them first .Hi Harry said Neville beaming and taking a seat opposite Harry .Harry tried to smile back but did not speak his mouth was exceptionally dry .Cho had just smiled at him and sat down on Rons right .Her friend who had curly reddishblonde hair did not smile but gave Harry a thoroughly mistrustful look that told Harry plainly that given her way she would not be here at all .In twos and threes the new arrivals settled around Harry Ron and Hermione some looking rather excited others curious Luna Lovegood gazing dreamily into space .When everybody had pulled up a chair the chatter died out .Every eye was upon Harry .Er said Hermione her voice slightly higher than usual out of nerves .Well er hi .The group focused its attention on her instead though eyes continued to dart back regularly to Harry .Well .erm .well you know why youre here .Erm .well Harry here had the idea I mean Harry had thrown her a sharp look I had the idea that it might be good if people who wanted to study Defense Against the Dark Arts and I mean really study it you know not the rubbish that Umbridge is doing with us Hermiones voice became suddenly much stronger and more confident because nobody could call that Defense Against the Dark Arts Hear hear said Anthony Goldstein and Hermione looked heartened well I thought it would be good if we well took matters into our own hands .She paused looked sideways at Harry and went on And by that I mean learning how to defend ourselves properly not just theory but the real spells You want to pass your Defense Against the Dark Arts O .W .L .too though I bet ?said Michael Corner .Of course I do said Hermione at once .But I want more than that I want to be properly trained in Defense because .because .She took a great breath and finished Because Lord Voldemorts back .The reaction was immediate and predictable .Chos friend shrieked and slopped butterbeer down herself Terry Boot gave a kind of involuntary twitch Padma Patil shuddered and Neville gave an odd yelp that he managed to turn into a cough .All of them however looked fixedly even eagerly at Harry .Well .thats the plan anyway said Hermione .If you want to join us we need to decide how were going to Wheres the proof YouKnow Whos back ?said the blond Hufflepuff player in a rather aggressive voice .Well Dumbledore believes it Hermione began .You mean Dumbledore believes him said the blond boy nodding at Harry .Who are you ?said Ron rather rudely .Zacharias Smith said the boy and I think weve got the right to know exactly what makes him say YouKnowWhos back .Look said Hermione intervening swiftly thats really not what this meeting was supposed to be about Its okay Hermione said Harry .It had just dawned upon him why there were so many people there .He felt that Hermione should have seen this coming .Some of these people maybe even most of them had turned up in the hope of hearing Harrys story firsthand .What makes me say YouKnowWhos back ?he asked looking Zacharias straight in the face .I saw him .But Dumbledore told the whole school what happened last year and if you didnt believe him you dont believe me and Im not wasting an afternoon trying to convince anyone .The whole group seemed to have held its breath while Harry spoke .Harry had the impression that even the barman was listening in .He was wiping the same glass with the filthy rag it was becoming steadily dirtier .Zacharias said dismissively All Dumbledore told us last year was that Cedric Diggory got killed by You KnowWho and that you brought Diggorys body back to Hogwarts .He didnt give us details he didnt tell us exactly how Diggory got murdered I think wed all like to know If youve come to hear exactly what it looks like when Voldemort murders someone I cant help you Harry said .His temper always so close to the surface these days was rising again .He did not take his eyes from Zacharias Smiths aggressive face determined not to look at Cho .I dont want to talk about Cedric Diggory all right ?So if thats what youre here for you might as well clear out .He cast an angry look in Hermiones direction .This was he felt all her fault she had decided to display him like some sort of freak and of course they had all turned up to see just how wild his story was .But none of them left their seats not even Zacharias Smith though he continued to gaze intently at Harry .So said Hermione her voice very highpitched again .So .like I was saying .if you want to learn some defense then we need to work out how were going to do it how often were going to meet and where were going to Is it true interrupted the girl with the long plait down her back looking at Harry that you can produce a Patronus ?There was a murmur of interest around the group at this .Yeah said Harry slightly defensively .A corporeal Patronus ?The phrase stirred something in Harrys memory .Er you dont know Madam Bones do you ?he asked .The girl smiled .Shes my auntie she said .Im Susan Bones .She told me about your hearing .So is it really true ?You make a stag Patronus ?Yes said Harry .Blimey Harry !said Lee looking deeply impressed .I never knew that !Mum told Ron not to spread it around said Fred grinning at Harry .She said you got enough attention as it was .Shes not wrong mumbled Harry and a couple of people laughed .The veiled witch sitting alone shifted very slightly in her seat .And did you kill a basilisk with that sword in Dumbledores office ?demanded Terry Boot .Thats what one of the portraits on the wall told me when I was in there last year .Er yeah I did yeah said Harry .Justin FinchFletchley whistled the Creevey brothers exchanged awestruck looks and Lavender Brown said wow softly .Harry was feeling slightly hot around the collar now he was determinedly looking anywhere but at Cho .And in our first year said Neville to the group at large he saved that Sorcerous Stone Sorcerers hissed Hermione .Yes that from YouKnowWho finished Neville .Hannah Abbotts eyes were as round as Galleons .And thats not to mention said Cho Harrys eyes snapped onto her she was looking at him smiling his stomach did another somersault all the tasks he had to get through in the Triwizard Tournament last year getting past dragons and merpeople and acromantulas and things .There was a murmur of impressed agreement around the table .Harrys insides were squirming .He was trying to arrange his face so that he did not look too pleased with himself .The fact that Cho had just praised him made it much much harder for him to say the thing he had sworn to himself he would tell them .Look he said and everyone fell silent at once I .I dont want to sound like Im trying to be modest or anything but .I had a lot of help with all that stuff .Not with the dragon you didnt said Michael Corner at once .That was a seriously cool bit of flying .Yeah well said Harry feeling it would be churlish to disagree .And nobody helped you get rid of those dementors this summer said Susan Bones .No said Harry no okay I know I did bits of it without help but the point Im trying to make is Are you trying to weasel out of showing us any of this stuff ?said Zacharias Smith .Heres an idea said Ron loudly before Harry could speak why dont you shut your mouth ?Perhaps the word weasel had affected Ron particularly strongly in any case he was now looking at Zacharias as though he would like nothing better than to thump him .Zacharias flushed .Well weve all turned up to learn from him and now hes telling us he cant really do any of it he said .Thats not what he said snarled Fred Weasley .Would you like us to clean out your ears for you ?inquired George pulling a long and lethallooking metal instrument from inside one of the Zonkos bags .Or any part of your body really were not fussy where we stick this said Fred .Yes well said Hermione hastily moving on .the point is are we agreed we want to take lessons from Harry ?There was a murmur of general agreement .Zacharias folded his arms and said nothing though perhaps this was because he was too busy keeping an eye on the instrument in Georges hand .Right said Hermione looking relieved that something had at last been settled .Well then the next question is how often we do it .I really dont think theres any point in meeting less than once a week Hang on said Angelina we need to make sure this doesnt clash with our Quidditch practice .No said Cho nor with ours .Nor ours added Zacharias Smith .Im sure we can find a night that suits everyone said Hermione slightly impatiently but you know this is rather important were talking about learning to defend ourselves against VVoldemorts Death Eaters Well said !barked Ernie Macmillan whom Harry had been expecting to speak long before this .Personally I think this is really important possibly more important than anything else well do this year even with our O .W .L .s coming up !He looked around impressively as though waiting for people to cry Surely not !When nobody spoke he went on I personally am at a loss to see why the Ministry has foisted such a useless teacher upon us at this critical period .Obviously they are in denial about the return of YouKnowWho but to give us a teacher who is trying to actively prevent us from using defensive spells We think the reason Umbridge doesnt want us trained in Defense Against the Dark Arts said Hermione is that shes got some .some mad idea that Dumbledore could use the students in the school as a kind of private army .She thinks hed mobilize us against the Ministry .Nearly everybody looked stunned at this news everybody except Luna Lovegood who piped up Well that makes sense .After all Cornelius Fudge has got his own private army .What ?said Harry completely thrown by this unexpected piece of information .Yes hes got an army of heliopaths said Luna solemnly .No he hasnt snapped Hermione .Yes he has said Luna .What are heliopaths ?asked Neville looking blank .Theyre spirits of fire said Luna her protuberant eyes widening so that she looked madder than ever .Great tall flaming creatures that gallop across the ground burning everything in front of They dont exist Neville said Hermione tartly .Oh yes they do !said Luna angrily .Im sorry but wheres the proof of that ?snapped Hermione .There are plenty of eyewitness accounts just because youre so narrowminded you need to have everything shoved under your nose before you Hem hem said Ginny in such a good imitation of Professor Umbridge that several people looked around in alarm and then laughed .Werent we trying to decide how often were going to meet and get Defense lessons ?Yes said Hermione at once yes we were youre right .Well once a week sounds cool said Lee Jordan .As long as began Angelina .Yes yes we know about the Quidditch said Hermione in a tense voice .Well the other thing to decide is where were going to meet .This was rather more difficult the whole group fell silent .Library ?suggested Katie Bell after a few moments .I cant see Madam Pince being too chuffed with us doing jinxes in the library said Harry .Maybe an unused classroom ?said Dean .Yeah said Ron McGonagall might let us have hers she did when Harry was practicing for the Tri wizard .But Harry was pretty certain that McGonagall would not be so accommodating this time .For all that Hermione had said about study and homework groups being allowed he had the distinct feeling this one might be considered a lot more rebellious .Right well well try to find somewhere said Hermione .Well send a message round to everybody when weve got a time and a place for the first meeting .She rummaged in her bag and produced parchment and a quill then hesitated rather as though she was steeling herself to say something .II think everybody should write their name down just so we know who was here .But I also think she took a deep breath that we all ought to agree not to shout about what were doing .So if you sign youre agreeing not to tell Umbridge or anybody else what were up to .Fred reached out for the parchment and cheerfully put down his signature but Harry noticed at once that several people looked less than happy at the prospect of putting their names on the list .Er .said Zacharias slowly not taking the parchment that George was trying to pass him .Well .Im sure Ernie will tell me when the meeting is .But Ernie was looking rather hesitant about signing too .Hermione raised her eyebrows at him .I well we are prefects Ernie burst out .And if this list was found .well I mean to say .you said yourself if Umbridge finds out .You just said this group was the most important thing youd do this year Harry reminded him .I yes said Ernie yes I do believe that its just Ernie do you really think Id leave that list lying around ?said Hermione testily .No .No of course not said Ernie looking slightly less anxious .I yes of course Ill sign .Nobody raised objections after Ernie though Harry saw Chos friend give her a rather reproachful look before adding her name .When the last person Zacharias had signed Hermione took the parchment back and slipped it carefully into her bag .There was an odd feeling in the group now .It was as though they had just signed some kind of contract .Well times ticking on said Fred briskly getting to his feet .George Lee and I have got items of a sensitive nature to purchase well be seeing you all later .In twos and threes the rest of the group took their leave too .Cho made rather a business of fastening the catch on her bag before leaving her long dark curtain of hair swinging forward to hide her face but her friend stood beside her arms folded clicking her tongue so that Cho had little choice but to leave with her .As her friend ushered her through the door Cho looked back and waved at Harry .Well I think that went quite well said Hermione happily as she Harry and Ron walked out of the Hogs Head into the bright sunlight a few moments later Harry and Ron still clutching their bottles of butterbeer .That Zacharias blokes a wart said Ron who was glowering after the figure of Smith just discernible in the distance .I dont like him much either admitted Hermione but he overheard me talking to Ernie and Hannah at the Hufflepuff table and he seemed really interested in coming so what could I say ?But the more people the better really I mean Michael Corner and his friends wouldnt have come if he hadnt been going out with Ginny Ron who had been draining the last few drops from his butterbeer bottle gagged and sprayed butterbeer down his front .Hes WHAT ?said Ron outraged his ears now resembling curls of raw beef .Shes going out with my sisters going what dyou mean Michael Corner ?Well thats why he and his friends came I think well theyre obviously interested in learning defense but if Ginny hadnt told Michael what was going on When did this when did she ?They met at the Yule Ball and they got together at the end of last year said Hermione composedly .They had turned into the High Street and she paused outside Scrivenshafts Quill Shop where there was a handsome display of pheasantfeather quills in the window .Hmm .I could do with a new quill .She turned into the shop .Harry and Ron followed her .Which one was Michael Corner ?Ron demanded furiously .The dark one said Hermione .I didnt like him said Ron at once .Big surprise said Hermione under her breath .But said Ron following Hermione along a row of quills in copper pots I thought Ginny fancied Harry !Hermione looked at him rather pityingly and shook her head .Ginny used to fancy Harry but she gave up on him months ago .Not that she doesnt like you of course she added kindly to Harry while she examined a long blackandgold quill .Harry whose head was still full of Chos parting wave did not find this subject quite as interesting as Ron who was positively quivering with indignation but it did bring something home to him that until now he had not really registered .So thats why she talks now ?he asked Hermione .She never used to talk in front of me .Exactly said Hermione .Yes I think Ill have this one .She went up to the counter and handed over fifteen Sickles and two Knuts Ron still breathing down her neck .Ron she said severely as she turned and trod on his feet this is exactly why Ginny hasnt told you shes seeing Michael she knew youd take it badly .So dont harp on about it for heavens sake .What dyou mean whos taking anything badly ?Im not going to harp on about anything .Ron continued to chunter under his breath all the way down the street .Hermione rolled her eyes at Harry and then said in an undertone while Ron was muttering imprecations about Michael Corner And talking about Michael and Ginny .what about Cho and you ?What dyou mean ?said Harry quickly .It was as though boiling water was rising rapidly inside him a burning sensation that was causing his face to smart in the cold had he been that obvious ?Well said Hermione smiling slightly she just couldnt keep her eyes off you could she ?Harry had never before appreciated just how beautiful the village of Hogsmeade was .EDUCATIONAL DECREE NUMBER TWENTYFOUR Harry felt happier for the rest of the weekend than he had done all term .He and Ron spent much of Sunday catching up with all their homework again and although this could hardly be called fun the last burst of autumn sunshine persisted so rather than sitting hunched over tables in the common room they took their work outside and lounged in the shade of a large beech tree on the edge of the lake .Hermione who of course was up to date with all her work brought more wool outside with her and bewitched her knitting needles so that they flashed and clicked in midair beside her producing more hats and scarves .The knowledge that they were doing something to resist Umbridge and the Ministry and that he was a key part of the rebellion gave Harry a feeling of immense satisfaction .He kept reliving Saturdays meeting in his mind all those people coming to him to learn Defense Against the Dark Arts .and the looks on their faces as they had heard some of the things he had done .and Cho praising his performance in the Triwizard Tournament .The knowledge that all those people did not think him a lying weirdo but someone to be admired buoyed him up so much that he was still cheerful on Monday morning despite the imminent prospect of all his least favorite classes .He and Ron headed downstairs from their dormitory together discussing Angelinas idea that they were to work on a new move called the Sloth Grip Roll during that nights Quidditch practice and not until they were halfway across the sunlit common room did they notice the addition to the room that had already attracted the attention of a small group of people .A large sign had been affixed to the Gryffindor notice board so large that it covered everything else on there the lists of secondhand spellbooks for sale the regular reminders of school rules from Argus Filch the Quidditch team training schedule the offers to barter certain Chocolate Frog cards for others the Weasleys new advertisement for testers the dates of the Hogsmeade weekends and the lostandfound notices .The new sign was printed in large black letters and there was a highly officiallooking seal at the bottom beside a neat and curly signature .BY ORDER OF THE HIGH INQUISITOR OF HOGWARTS All Student Organizations Societies Teams Groups and Clubs are henceforth disbanded .An Organization Society Team Group or Club is hereby defined as a regular meeting of three or more students .Permission to reform may be sought from the High Inquisitor Professor Umbridge .No Student Organization Society Team Group or Club may exist without the knowledge and approval of the High Inquisitor .Any student found to have formed or to belong to an Organization Society Team Group or Club that has not been approved by the High Inquisitor will be expelled .The above is in accordance with Educational Decree Number Twentyfour .Signed Dolores Jane Umbridge HIGH INQUISITOR Harry and Ron read the notice over the heads of some anxiouslooking second years .Does this mean theyre going to shut down the Gobstones Club ?one of them asked his friend .I reckon youll be okay with Gobstones Ron said darkly making the second year jump .I dont think were going to be as lucky though do you ?he asked Harry as the second years hurried away .Harry was reading the notice through again .The happiness that had filled him since Saturday was gone .His insides were pulsing with rage .This isnt a coincidence he said his hands forming fists .She knows .She cant said Ron at once .There were people listening in that pub .And lets face it we dont know how many of the people who turned up we can trust .Any of them could have run off and told Umbridge .And he had thought they believed him thought they even admired him .Zacharias Smith !said Ron at once punching a fist into his hand .Or I thought that Michael Corner had a really shifty look too I wonder if Hermiones seen this yet ?Harry said looking around at the door to the girls dormitories .Lets go and tell her said Ron .He bounded forward pulled open the door and set off up the spiral staircase .He was on the sixth stair when it happened .There was a loud wailing klaxonlike sound and the steps melted together to make a long smooth stone slide .There was a brief moment when Ron tried to keep running arms working madly like windmills then he toppled over backward and shot down the newly created slide coming to rest on his back at Harrys feet .Er I dont think were allowed in the girls dormitories said Harry pulling Ron to his feet and trying not to laugh .Two fourthyear girls came zooming gleefully down the stone slide .Oooh who tried to get upstairs ?they giggled happily leaping to their feet and ogling Harry and Ron .Me said Ron who was still rather disheveled .I didnt realize that would happen .Its not fair !he added to Harry as the girls headed off for the portrait hole still giggling madly .Hermiones allowed in our dormitory how come were not allowed ?Well its an oldfashioned rule said Hermione who had just slid neatly onto a rug in front of them and was now getting to her feet but it says in Hogwarts A History that the founders thought boys were less trustworthy than girls .Anyway why were you trying to get in there ?To see you look at this !said Ron dragging her over to the notice board .Hermiones eyes slid rapidly down the notice .Her expression became stony .Someone must have blabbed to her !Ron said angrily .They cant have done said Hermione in a low voice .Youre so naive said Ron you think just because youre all honorable and trustworthy No they cant have done because I put a jinx on that piece of parchment we all signed said Hermione grimly .Believe me if anyones run off and told Umbridge well know exactly who they are and they will really regret it .Whatll happen to them ?said Ron eagerly .Well put it this way said Hermione itll make Eloise Midgens acne look like a couple of cute freckles .Come on lets get down to breakfast and see what the others think .I wonder whether this has been put up in all the Houses ?It was immediately apparent on entering the Great Hall that Umbridges sign had not only appeared in Gryffindor Tower .There was a peculiar intensity about the chatter and an extra measure of movement in the Hall as people scurried up and down their tables conferring on what they had read .Harry Ron and Hermione had barely taken their seats when Neville Dean Fred George and Ginny descended upon them .Did you see it ?Dyou reckon she knows ?What are we going to do ?They were all looking at Harry .He glanced around to make sure there were no teachers near them .Were going to do it anyway of course he said quietly .Knew youd say that said George beaming and thumping Harry on the arm .The prefects as well ?said Fred looking quizzically at Ron and Hermione .Of course said Hermione coolly .Here comes Ernie and Hannah Abbott said Ron looking over his shoulder .And those Ravenclaw blokes and Smith .and no one looks very spotty .Hermione looked alarmed .Never mind spots the idiots cant come over here now itll look really suspicious sit down !she mouthed to Ernie and Hannah gesturing frantically to them to rejoin the Hufflepuff table .Later !Well talk to you lateri Ill tell Michael said Ginny impatiently swinging herself off her bench .The fool honestly .She hurried off toward the Ravenclaw table Harry watched her go .Cho was sitting not far away talking to the curlyhaired friend she had brought along to the Hogs Head .Would Umbridges notice scare her off meeting them again ?But the full repercussions of the sign were not felt until they were leaving the Great Hall for History of Magic .Harry !Ron It was Angelina and she was hurrying toward them looking perfectly desperate .Its okay said Harry quietly when she was near enough to hear him .Were still going to You realize shes including Quidditch in this ?Angelina said over him .We have to go and ask permission to reform the Gryffindor team !What ?said Harry .No way said Ron appalled .You read the sign it mentions teams too !So listen Harry .I am saying this for the last time .Please please dont lose your temper with Umbridge again or she might not let us play anymore !Okay okay said Harry for Angelina looked as though she was on the verge of tears .Dont worry Ill behave myself .Bet Umbridge is in History of Magic said Ron grimly as they set off for Binnss lesson .She hasnt inspected Binns yet .Bet you anything shes there .But he was wrong the only teacher present when they entered was Professor Binns floating an inch or so above his chair as usual and preparing to continue his monotonous drone on giant wars .Harry did not even attempt to follow what he was saying today he doodled idly on his parchment ignoring Hermiones frequent glares and nudges until a particularly painful poke in the ribs made him look up angrily .What ?She pointed at the window .Harry looked around .Hedwig was perched on the narrow window ledge gazing through the thick glass at him a letter tied to her leg .Harry could not understand it they had just had breakfast why on earth hadnt she delivered the letter then as usual ?Many of his classmates were pointing out Hedwig to each other too .Oh Ive always loved that owl shes so beautiful Harry heard Lavender sigh to Parvati .He glanced around at Professor Binns who continued to read his notes serenely unaware that the classs attention was even less focused upon him than usual .Harry slipped quietly off his chair crouched down and hurried along the row to the window where he slid the catch and opened it very slowly .He had expected Hedwig to hold out her leg so that he could remove the letter and then fly off to the Owlery but the moment the window was open wide enough she hopped inside hooting dolefully .He closed the window with an anxious glance at Professor Binns crouched low again and sped back to his seat with Hedwig on his shoulder .He regained his seat transferred Hedwig to his lap and made to remove the letter tied to her leg .It was only then that he realized that Hedwigs feathers were oddly ruffled some were bent the wrong way and she was holding one of her wings at an odd angle .Shes hurt !Harry whispered bending his head low over her .Hermione and Ron leaned in closer Hermione even put down her quill .Look theres something wrong with her wing Hedwig was quivering when Harry made to touch the wing she gave a little jump all her feathers on end as though she was inflating herself and gazed at him reproachfully .Professor Binns said Harry loudly and everyone in the class turned to look at him .Im not feeling well .Professor Binns raised his eyes from his notes looking amazed as always to find the room in front of him full of people .Not feeling well ?he repeated hazily .Not at all well said Harry firmly getting to his feet while concealing Hedwig behind his back .So I think Ill need to go to the hospital wing .Yes said Professor Binns clearly very much wrong footed .Yes .yes hospital wing .well off you go then Perkins .Once outside the room Harry returned Hedwig to his shoulder and hurried off up the corridor pausing to think only when he was out of sight of Binnss door .His first choice of somebody to cure Hedwig would have been Hagrid of course but as he had no idea where Hagrid was his only remaining option was to find Professor GrubblyPlank and hope she would help .He peered out of a window at the blustery overcast grounds .There was no sign of her anywhere near Hagrids cabin if she was not teaching she was probably in the staffroom .He set off downstairs Hedwig hooting feebly as she swayed on his shoulder .Two stone gargoyles flanked the staffroom door .As Harry approached one of them croaked You should be in class sunny Jim .This is urgent said Harry curtly .Ooooh urgent is it ?said the other gargoyle in a highpitched voice .Well thats put us in our place hasnt it ?Harry knocked he heard footsteps and then the door opened and he found himself facetoface with Professor McGonagall .You havent been given another detention !she said at once her square spectacles flashing alarmingly .No Professor !said Harry hastily .Well then why are you out of class ?Its urgent apparently said the second gargoyle snidely .Im looking for Professor GrubblyPlank Harry explained .Its my owl shes injured .Injured owl did you say ?Professor GrubblyPlank appeared at Professor McGonagalls shoulder smoking a pipe and holding a copy of the Daily Prophet Yes said Harry lifting Hedwig carefully off his shoulder she turned up after the other post owls and her wings all funny look Professor GrubblyPlank stuck her pipe firmly between her teeth and took Hedwig from Harry while Professor McGonagall watched .Hmm said Professor GrubblyPlank her pipe waggling slightly as she talked .Looks like somethings attacked her .Cant think what would have done it though .Thestrals will sometimes go for birds of course but Hagrids got the Hogwarts thestrals well trained not to touch owls .Harry neither knew nor cared what thestrals were he just wanted to know that Hedwig was going to be all right .Professor McGonagall however looked sharply at Harry and said Do you know how far this owls traveled Potter ?Er said Harry .From London I think .He met her eyes briefly and knew that she understood London to mean number twelve Grimmauld Place by the way her eyebrows had joined in the middle .Professor GrubblyPlank pulled a monocle out of the inside of her robes and screwed it into her eye to examine Hedwigs wing closely .I should be able to sort this out if you leave her with me Potter she said .She shouldnt be flying long distances for a few days in any case .Er right thanks said Harry just as the bell rang for break .No problem said Professor GrubblyPlank gruffly turning back into the staffroom .Just a moment Wilhelmina !said Professor McGonagall .Potters letter !Oh yeah !said Harry who had momentarily forgotten the scroll tied to Hedwigs leg .Professor GrubblyPlank handed it over and then disappeared into the staffroom carrying Hedwig who was staring at Harry as though unable to believe he would give her away like this .Feeling slightly guilty he turned to go but Professor McGonagall called him back .Potter !Yes Professor ?She glanced up and down the corridor there were students coming from both directions .Bear in mind she said quickly and quietly her eyes on the scroll in his hand that channels of communication in and out of Hogwarts may be being watched wont you ?I said Harry but the flood of students rolling along the corridor was almost upon him .Professor McGonagall gave him a curt nod and retreated into the staffroom leaving Harry to be swept out into the courtyard with the crowd .Here he spotted Ron and Hermione already standing in a sheltered corner their cloak collars turned up against the wind .Harry slit open the scroll as he hurried toward them and found five words in Siriuss handwriting Today same time same place .Is Hedwig okay ?asked Hermione anxiously the moment he was within earshot .Where did you take her ?asked Ron .To GrubblyPlank said Harry .And I met McGonagall .Listen .And he told them what Professor McGonagall had said .To his surprise neither of the others looked shocked on the contrary they exchanged significant looks .What ?said Harry looking from Ron to Hermione and back again .Well I was just saying to Ron .what if someone had tried to intercept Hedwig ?I mean shes never been hurt on a flight before has she ?Whos the letter from anyway ?asked Ron taking the note from Harry .Snuffles said Harry quietly . ‘Same time same place ?Does he mean the fire in the common room ?Obviously said Hermione also reading the note .She looked uneasy .I just hope nobody else has read this .But it was still sealed and everything said Harry trying to convince himself as much as her .And nobody would understand what it meant if they didnt know where wed spoken to him before would they ?I dont know said Hermione anxiously hitching her bag back over her shoulder as the bell rang again .It wouldnt be exactly difficult to reseal the scroll by magic .And if anyones watching the Floo Network .but I dont really see how we can warn him not to come without that being intercepted too !They trudged down the stone steps to the dungeons for Potions all three of them lost in thought but as they reached the bottom of the stairs they were recalled to themselves by the voice of Draco Malfoy who was standing just outside Snapes classroom door waving around an officiallooking piece of parchment and talking much louder than was necessary so that they could hear every word .Yeah Umbridge gave the Slytherin Quidditch team permission to continue playing straightaway I went to ask her first thing this morning .Well it was pretty much automatic I mean she knows my father really well hes always popping in and out of the Ministry .Itll be interesting to see whether Gryffindor are allowed to keep playing wont it ?Dont rise Hermione whispered imploringly to Harry and Ron who were both watching Malfoy faces set and fists clenched .Its what he wants .I mean said Malfoy raising his voice a little more his gray eyes glittering malevolently in Harry and Rons direction if its a question of influence with the Ministry I dont think theyve got much chance .From what my father says theyve been looking for an excuse to sack Arthur Weasley for years .And as for Potter .My father says its a matter of time before the Ministry has him carted off to St .Mungos .apparently theyve got a special ward for people whose brains have been addled by magic .Malfoy made a grotesque face his mouth sagging open and his eyes rolling .Crabbe and Goyle gave their usual grunts of laughter Pansy Parkinson shrieked with glee .Something collided hard with Harrys shoulder knocking him sideways .A split second later he realized that Neville had just charged past him heading straight for Malfoy .Neville no !Harry leapt forward and seized the back of Nevilles robes Neville struggled frantically his fists flailing trying desperately to get at Malfoy who looked for a moment extremely shocked .Help me !Harry flung at Ron managing to get an arm around Nevilles neck and dragging him backward away from the Slytherins .Crabbe and Goyle were now flexing their arms closing in front of Malfoy ready for the fight .Ron hurried forward and seized Nevilles arms together he and Harry succeeded in dragging Neville back into the Gryffindor line .Nevilles face was scarlet the pressure Harry was exerting on his throat rendered him quite incomprehensible but odd words spluttered from his mouth .Not .funny .dont .Mungos .show .him .The dungeon door opened .Snape appeared there .His black eyes swept up the Gryffindor line to the point where Harry and Ron were wrestling with Neville .Fighting Potter Weasley Longbottom ?Snape said in his cold sneering voice .Ten points from Gryffindor .Release Longbottom Potter or it will be detention .Inside all of you .Harry let go of Neville who stood panting and glaring at him .I had to stop you Harry gasped picking up his bag .Crabbe and Goyle wouldve torn you apart .Neville said nothing he merely snatched up his own bag and stalked off into the dungeon .What in the name of Merlin said Ron slowly as they followed Neville was that about ?Harry did not answer .He knew exactly why the subject of people who were in St .Mungos because of magical damage to their brains was highly distressing to Neville but he had sworn to Dumbledore that he would not tell anyone Nevilles secret .Even Neville did not know that Harry knew .Harry Ron and Hermione took their usual seats at the back of the class and pulled out parchment quills and their copies of One Thousand Magical Herbs and Fungi .The class around them was whispering about what Neville had just done but when Snape closed the dungeon door with an echoing bang everybody fell silent immediately .You will notice said Snape in his low sneering voice that we have a guest with us today .He gestured toward the dim corner of the dungeon and Harry saw Professor Umbridge sitting there clipboard on her knee .He glanced sideways at Ron and Hermione his eyebrows raised .Snape and Umbridge the two teachers he hated most .it was hard to decide which he wanted to triumph over the other .We are continuing with our Strengthening Solutions today you will find your mixtures as you left them last lesson if correctly made they should have matured well over the weekend instructions he waved his wand again on the board .Carry on .Professor Umbridge spent the first half hour of the lesson making notes in her corner .Harry was very interested in hearing her question Snape so interested that he was becoming careless with his potion again .Salamander blood Harry !Hermione moaned grabbing his wrist to prevent him adding the wrong ingredient for the third time .Not pomegranate juice !Right said Harry vaguely putting down the bottle and continuing to watch the corner .Umbridge had just gotten to her feet .Ha he said softly as she strode between two lines of desks toward Snape who was bending over Dean Thomass cauldron .Well the class seems fairly advanced for their level she said briskly to Snape s back .Though I would question whether it is advisable to teach them a potion like the Strengthening Solution .I think the Ministry would prefer it if that was removed from the syllabus .Snape straightened up slowly and turned to look at her .Now .how long have you been teaching at Hogwarts ?she asked her quill poised over her clipboard .Fourteen years Snape replied .His expression was unfathomable .His eyes on Snape Harry added a few drops to his potion it hissed menacingly and turned from turquoise to orange .You applied first for the Defense Against the Dark Arts post I believe ?Professor Umbridge asked Snape .Yes said Snape quietly .But you were unsuccessful ?Snape s lip curled .Obviously .Professor Umbridge scribbled on her clipboard .And you have applied regularly for the Defense Against the Dark Arts post since you first joined the school I believe ?Yes said Snape quietly barely moving his lips .He looked very angry .Do you have any idea why Dumbledore has consistently refused to appoint you ?asked Umbridge .I suggest you ask him said Snape jerkily .Oh I shall said Professor Umbridge with a sweet smile .I suppose this is relevant ?Snape asked his black eyes narrowed .Oh yes said Professor Umbridge .Yes the Ministry wants a thorough understanding of teachers er backgrounds .She turned away walked over to Pansy Parkinson and began questioning her about the lessons .Snape looked around at Harry and their eyes met for a second .Harry hastily dropped his gaze to his potion which was now congealing foully and giving off a strong smell of burned rubber .No marks again then Potter said Snape maliciously emptying Harrys cauldron with a wave of his wand .You will write me an essay on the correct composition of this potion indicating how and why you went wrong to be handed in next lesson do you understand ?Yes said Harry furiously .Snape had already given them homework and he had Quidditch practice this evening this would mean another couple of sleepless nights .It did not seem possible that he had awoken that morning feeling very happy .All he felt now was a fervent desire for this day to end as soon as possible .Maybe Ill skive off Divination he said glumly as they stood again in the courtyard after lunch the wind whipping at the hems of robes and brims of hats .Ill pretend to be ill and do Snapes essay instead then I wont have to stay up half the night .You cant skive off Divination said Hermione severely .Hark whos talking you walked out of Divination you hate Trelawney !said Ron indignantly .I dont hate her said Hermione loftily .I just think shes an absolutely appalling teacher and a real old fraud .But Harrys already missed History of Magic and I dont think he ought to miss anything else today !There was too much truth in this to ignore so half an hour later Harry took his seat in the hot over perfumed atmosphere of the Divination classroom feeling angry at everybody .Professor Trelawney was handing out copies of The Dream Oracle yet again he would surely be much better employed doing Snapes punishment essay than sitting here trying to find meaning in a lot of madeup dreams .It seemed however that he was not the only person in Divination who was in a temper .Professor Trelawney slammed a copy of the Oracle down on the table between Harry and Ron and swept away her lips pursed she threw the next copy of the Oracle at Seamus and Dean narrowly avoiding Seamuss head and thrust the final one into Nevilles chest with such force that he slipped off his pouf .Well carry on !said Professor Trelawney loudly her voice high pitched and somewhat hysterical .You know what to do !Or am I such a substandard teacher that you have never learned how to open a book ?The class stared perplexedly at her and then at each other .Harry however thought he knew what was the matter .As Professor Trelawney flounced back to the highbacked teachers chair her magnified eyes full of angry tears he leaned his head closer to Rons and muttered I think shes got the results of her inspection back .Professor ?said Parvati Patil in a hushed voice she and Lavender had always rather admired Professor Trelawney .Professor is there anything er wrong ?Wrong !cried Professor Trelawney in a voice throbbing with emotion .Certainly not !I have been insulted certainly .Insinuations have been made against me .Unfounded accusations levelled .but no there is nothing wrong certainly not .She took a great shuddering breath and looked away from Parvati angry tears spilling from under her glasses .I say nothing she choked of sixteen years devoted service .It has passed apparently unnoticed .But I shall not be insulted no I shall not !But Professor whos insulting you ?asked Parvati timidly .The establishment !said Professor Trelawney in a deep dramatic wavering voice .Yes those with eyes too clouded by the Mundane to See as I See to Know as I Know .Of course we Seers have always been feared always persecuted .It is alas our fate .She gulped dabbed at her wet cheeks with the end of her shawl and then pulled a small embroidered handkerchief from her sleeve into which she blew her nose very hard with a sound like Peeves blowing a raspberry .Ron sniggered .Lavender shot him a disgusted look .Professor said Parvati do you mean .is it something Professor Umbridge . ?Do not speak to me about that woman !cried Professor Trelawney leaping to her feet her beads rattling and her spectacles flashing .Kindly continue with your work !And she spent the rest of the lesson striding among them tears still leaking from behind her glasses muttering what sounded like threats under her breath . .may well choose to leave .the indignity of it .on probation .we shall see .how she dares .You and Umbridge have got something in common Harry told Hermione quietly when they met again in Defense Against the Dark Arts .She obviously reckons Trelawneys an old fraud too .Looks like shes put her on probation .Umbridge entered the room as he spoke wearing her black velvet bow and an expression of great smugness .Good afternoon class .Good afternoon Professor Umbridge they chanted drearily .Wands away please .But there was no answering flurry of movement this time nobody had bothered to take out their wands .Please turn to page thirtyfour of Defensive Magical Theory and read the third chapter entitled The Case for NonOffensive Responses to Magical Attack .There will be no need to talk Harry Ron and Hermione said together under their breaths .No Quidditch practice said Angelina in hollow tones when Harry Ron and Hermione entered the common room that night after dinner .But I kept my temper !said Harry horrified .I didnt say anything to her Angelina I swear I I know I know said Angelina miserably .She just said she needed a bit of time to consider .Consider what ?said Ron angrily .Shes given the Slytherins permission why not us ?But Harry could imagine how much Umbridge was enjoying holding the threat of no Gryffindor Quidditch team over their heads and could easily understand why she would not want to relinquish that weapon over them too soon .Well said Hermione look on the bright side at least now youll have time to do Snapes essay !Thats a bright side is it ?snapped Harry while Ron stared incredulously at Hermione .No Quidditch practice and extra Potions ?Harry slumped down into a chair dragged his Potions essay reluctantly from his bag and set to work .It was very hard to concentrate even though he knew that Sirius was not due in the fire until much later he could not help glancing into the flames every few minutes just in case .There was also an incredible amount of noise in the room Fred and George appeared finally to have perfected one type of Skiving Snackbox which they were taking turns to demonstrate to a cheering and whooping crowd .First Fred would take a bite out of the orange end of a chew at which he would vomit spectacularly into a bucket they had placed in front of them .Then he would force down the purple end of the chew at which the vomiting would immediately cease .Lee Jordan who was assisting the demonstration was lazily vanishing the vomit at regular intervals with the same Vanishing Spell Snape kept using on Harrys potions .What with the regular sounds of retching cheering and Fred and George taking advance orders from the crowd Harry was finding it exceptionally difficult to focus on the correct method for Strengthening Solutions .Hermione was not helping matters the cheers and sound of vomit hitting the bottom of Fred and Georges bucket were punctuated by loud and disapproving sniffs that Harry found if anything more distracting .Just go and stop them then !he said irritably after crossing out the wrong weight of powdered griffin claw for the fourth time .I cant theyre not technically doing anything wrong said Hermione through gritted teeth .Theyre quite within their rights to eat the foul things themselves and I cant find a rule that says the other idiots arent entitled to buy them not unless theyre proven to be dangerous in some way and it doesnt look as though they are .She Harry and Ron watched George projectilevomit into the bucket gulp down the rest of the chew and straighten up beaming with his arms wide to protracted applause .You know I dont get why Fred and George only got three O .W .L .s each said Harry watching as Fred George and Lee collected gold from the eager crowd .They really know their stuff .Oh they only know flashy stuff thats no real use to anyone said Hermione disparagingly .No real use ?said Ron in a strained voice .Hermione theyve got about twentysix Galleons already .It was a long while before the crowd around the Weasleys dispersed and then Fred Lee and George sat up counting their takings even longer so that it was well past midnight when Harry Ron and Hermione finally had the common room to themselves again .At long last Fred closed the doorway to the boys dormitories behind him rattling his box of Galleons ostentatiously so that Hermione scowled .Harry who was making very little progress with his Potions essay decided to give it up for the night .As he put his books away Ron who was dozing lightly in an armchair gave a muffled grunt awoke looked blearily into the fire and said Sirius !Harry whipped around Siriuss untidy dark head was sitting in the fire again .Hi he said grinning .Hi chorused Harry Ron and Hermione all three kneeling down upon the hearthrug .Crookshanks purred loudly and approached the fire trying despite the heat to put his face close to Siriuss .Howre things ?said Sirius .Not that good said Harry as Hermione pulled Crookshanks back to stop him singeing his whiskers .The Ministrys forced through another decree which means were not allowed to have Quidditch teams or secret Defense Against the Dark Arts groups ?said Sirius .There was a short pause .How did you know about that ?Harry demanded .You want to choose your meeting places more carefully said Sirius grinning still more broadly .The Hogs Head I ask you .Well it was better than the Three Broomsticks !said Hermione defensively .Thats always packed with people which means youd have been harder to overhear said Sirius .Youve got a lot to learn Hermione .Who overheard us ?Harry demanded .Mundungus of course said Sirius and when they all looked puzzled he laughed .He was the witch under the veil .That was Mundungus ?Harry said stunned .What was he doing in the Hogs Head ?What do you think he was doing ?said Sirius impatiently .Keeping an eye on you of course .Im still being followed ?asked Harry angrily .Yeah you are said Sirius and just as well isnt it if the first thing youre going to do on your weekend off is organize an illegal defense group .But he looked neither angry nor worried on the contrary he was looking at Harry with distinct pride .Why was Dung hiding from us ?asked Ron sounding disappointed .Wedve liked tove seen him .He was banned from the Hogs Head twenty years ago said Sirius and that barmans got a long memory .We lost Moodys spare Invisibility Cloak when Sturgis was arrested so Dungs been dressing as a witch a lot lately .Anyway .First of all Ron Ive sworn to pass on a message from your mother .Oh yeah ?said Ron sounding apprehensive .She says on no account whatsoever are you to take part in an illegal secret Defense Against the Dark Arts group .She says youll be expelled for sure and your future will be ruined .She says there will be plenty of time to learn how to defend yourself later and that you are too young to be worrying about that right now .She also Siriuss eyes turned to the other two advises Harry and Hermione not to proceed with the group though she accepts that she has no authority over either of them and simply begs them to remember that she has their best interests at heart .She would have written all this to you but if the owl had been intercepted youd all have been in real trouble and she cant say it for herself because shes on duty tonight .On duty doing what ?said Ron quickly .Never you mind just stuff for the Order said Sirius .So its fallen to me to be the messenger and make sure you tell her I passed it all on because I dont think she trusts me to .There was another pause in which Crookshanks mewing attempted to paw Siriuss head and Ron fiddled with a hole in the hearthrug .So you want me to say Im not going to take part in the defense group ?he muttered finally .Me ?Certainly not !said Sirius looking surprised .I think its an excellent idea !You do ?said Harry his heart lifting .Of course I do !said Sirius .Dyou think your father and I wouldve lain down and taken orders from an old hag like Umbridge ?But last term all you did was tell me to be careful and not take risks Last year all the evidence was that someone inside Hogwarts was trying to kill you Harry !said Sirius impatiently .This year we know that theres someone outside Hogwarts whod like to kill us all so I think learning to defend yourselves properly is a very good idea !And if we do get expelled ?Hermione asked a quizzical look on her face .Hermione this whole thing was your idea !said Harry staring at her .I know it was .I just wondered what Sirius thought she said shrugging .Well better expelled and able to defend yourselves than sitting safely in school without a clue said Sirius .Hear hear said Harry and Ron enthusiastically .So said Sirius how are you organizing this group ?Where are you meeting ?Well thats a bit of a problem now said Harry .Dunno where were going to be able to go .How about the Shrieking Shack ?suggested Sirius .Hey thats an idea !said Ron excitedly but Hermione made a skeptical noise and all three of them looked at her Siriuss head turning in the flames .Well Sirius its just that there were only four of you meeting in the Shrieking Shack when you were at school said Hermione and all of you could transform into animals and I suppose you could all have squeezed under a single Invisibility Cloak if youd wanted to .But there are twentyeight of us and none of us is an Animagus so we wouldnt need so much an Invisibility Cloak as an Invisibility Marquee Fair point said Sirius looking slightly crestfallen .Well Im sure youll come up with somewhere .There used to be a pretty roomy secret passageway behind that big mirror on the fourth floor you might have enough space to practice jinxes in there Fred and George told me its blocked said Harry shaking his head .Caved in or something .Oh .said Sirius frowning .Well 111 have a think and get back to He broke off .His face was suddenly tense alarmed .He turned sideways apparently looking into the solid brick wall of the fireplace .Sirius ?said Harry anxiously .But he had vanished .Harry gaped at the flames for a moment then turned to look at Ron and Hermione .Why did he ?Hermione gave a horrified gasp and leapt to her feet still staring at the fire .A hand had appeared amongst the flames groping as though to catch hold of something a stubby short fingered hand covered in ugly oldfashioned rings .The three of them ran for it at the door of the boys dormitory Harry looked back .Umbridges hand was still making snatching movements amongst the flames as though she knew exactly where Siriuss hair had been moments before and was determined to seize it .DUMBLEDORES ARMY Umbridge has been reading your mail Harry .Theres no other explanation .You think Umbridge attacked Hedwig ?he said outraged .Im almost certain of it said Hermione grimly .Watch your frog its escaping .Harry pointed his wand at the bullfrog that had been hopping hopefully toward the other side of the table Acciol and it zoomed gloomily back into his hand .Charms was always one of the best lessons in which to enjoy a private chat There was generally so much movement and activity that the danger of being overheard was very slight .Today with the room full of croaking bullfrogs and cawing ravens and with a heavy downpour of rain clattering and pounding against the classroom windows Harry Ron and Hermione s whispered discussion about how Umbridge had nearly caught Sirius went quite unnoticed .Ive been suspecting this ever since Filch accused you of ordering Dungbombs because it seemed such a stupid lie Hermione whispered .I mean once your letter had been read it would have been quite clear you werent ordering them so you wouldnt have been in trouble at all its a bit of a feeble joke isnt it ?But then I thought what if somebody just wanted an excuse to read your mail ?Well then it would be a perfect way for Umbridge to manage it tip off Filch let him do the dirty work and confiscate the letter then either find a way of stealing it from him or else demand to see it I dont think Filch would object whens he ever stuck up for a students rights ?Harry youre squashing your frog .Harry looked down he was indeed squeezing his bullfrog so tightly its eyes were popping he replaced it hastily upon the desk .It was a very very close call last night said Hermione .I just wonder if Umbridge knows how close it was .Silenciol The bullfrog on which she was practicing her Silencing Charm was struck dumb midcroak and glared at her reproachfully .If shed caught Snuffles .Harry finished the sentence for her .Hed probably be back in Azkaban this morning .He waved his wand without really concentrating his bullfrog swelled like a green balloon and emitted a highpitched whistle .Silenciol said Hermione hastily pointing her wand at Harrys frog which deflated silently before them .Well he mustnt do it again thats all .I just dont know how were going to let him know .We cant send him an owl .I dont reckon hell risk it again said Ron .Hes not stupid he knows she nearly got him .Silenciol The large and ugly raven in front of him let out a derisive caw .Silenciol SILENCIO The raven cawed more loudly .Its the way youre moving your wand said Hermione watching Ron critically .You dont want to wave it its more a sharp jab .Ravens are harder than frogs said Ron testily .Fine lets swap said Hermione seizing Rons raven and replacing it with her own fat bullfrog .Silencio The raven continued to open and close its sharp beak but no sound came out .Very good Miss Granger !said Professor Flitwicks squeaky little voice and Harry Ron and Hermione all jumped .Now let me see you try Mr Weasley !Wha ?Oh oh right said Ron very flustered .Er Silenciol He jabbed at the bullfrog so hard that he poked it in the eye the frog gave a deafening croak and leapt off the desk .It came as no surprise to any of them that Harry and Ron were given additional practice of the Silencing Charm for homework .They were allowed to remain inside over break due to the downpour outside .They found seats in a noisy and overcrowded classroom on the first floor in which Peeves was floating dreamily up near the chandelier occasionally blowing an ink pellet at the top of somebodys head .They had barely sat down when Angelina came struggling toward them through the groups of gossiping students .Ive got permission !she said .To reform the Quidditch team !Excellent .said Ron and Harry together .Yeah said Angelina beaming .I went to McGonagall and I think she might have appealed to Dumbledore anyway Umbridge had to give in .Ha !So I want you down at the pitch at seven oclock tonight all right because weve got to make up time you realize were only three weeks away from our first match ?She squeezed away from them narrowly dodged an ink pellet from Peeves which hit a nearby first year instead and vanished from sight .Rons smile slipped slightly as he looked out of the window which was now opaque with hammering rain .Hope this clears up .Whats up with you Hermione ?She too was gazing at the window but not as though she really saw it .Her eyes were unfocused and there was a frown on her face .Just thinking .she said still frowning at the rain washed window .About Siri .Snuffles ?said Harry .No .not exactly .said Hermione slowly .More .wondering .I suppose were doing the right thing .I think .arent we ?Harry and Ron looked at each other .Well that clears that up said Ron .It wouldve been really annoying if you hadnt explained yourself properly .Hermione looked at him as though she had only just realized he was there .I was just wondering she said her voice stronger now whether were doing the right thing starting this Defense Against the Dark Arts group .What !said Harry and Ron together .Hermione it was your idea in the first place !said Ron indignantly .I know said Hermione twisting her fingers together .But after talking to Snuffles .But hes all for it !said Harry .Yes said Hermione staring at the window again .Yes thats what made me think maybe it wasnt a good idea after all .Peeves floated over them on his stomach peashooter at the ready automatically all three of them lifted their bags to cover their heads until he had passed .Lets get this straight said Harry angrily as they put their bags back on the floor Sirius agrees with us so you dont think we should do it anymore ?Hermione looked tense and rather miserable .Now staring at her own hands she said Do you honestly trust his judgment ?Yes I do !said Harry at once .Hes always given us great advice !An ink pellet whizzed past them striking Katie Bell squarely in the ear .Hermione watched Katie leap to her feet and start throwing things at Peeves it was a few moments before Hermione spoke again and it sounded as though she was choosing her words very carefully .You dont think he has become .sort of .reckless .since hes been cooped up in Grimmauld Place ?You dont think hes .kind of .living through us ?What dyou mean ‘living through us ?Harry retorted .I mean .well I think hed love to be forming secret defense societies right under the nose of someone from the Ministry .I think hes really frustrated at how little he can do where he is .so I think hes keen to kind of .egg us on .Ron looked utterly perplexed .Sirius is right he said you do sound just like my mother .Hermione bit her lip and did not answer .The bell rang just as Peeves swooped down upon Katie and emptied an entire ink bottle over her head .The weather did not improve as the day wore on so that at seven oclock that evening when Harry and Ron went down to the Quidditch pitch for practice they were soaked through within minutes their feet slipping and sliding on the sodden grass .The sky was a deep thundery gray and it was a relief to gain the warmth and light of the changing rooms even if they knew the respite was only temporary .They found Fred and George debating whether to use one of their own Skiving Snackboxes to get out of flying .but I bet shed know what wed done Fred said out of the corner of his mouth .If only I hadnt offered to sell her some Puking Pastilles yesterday We could try the Fever Fudge George muttered no ones seen that yet Does it work ?inquired Ron hopefully as the hammering of rain on the roof intensified and wind howled around the building .Well yeah said Fred your temperaturell go right up but you get these massive pusfilled boils too said George and we havent worked out how to get rid of them yet .I cant see any boils said Ron staring at the twins .No well you wouldnt said Fred darkly theyre not in a place we generally display to the public but they make sitting on a broom a right pain in the All right everyone listen up said Angelina loudly emerging from the Captains office .I know its not ideal weather but theres a good chance well be playing Slytherin in conditions like this so its a good idea to work out how were going to cope with them .Harry didnt you do something to your glasses to stop the rain fogging them up when we played Hufflepuff in that storm ?Hermione did it said Harry .He pulled out his wand tapped his glasses and said Imperviusl I think we all ought to try that said Angelina .If we could just keep the rain off our faces it would really help visibility all together come on Imperviusl Okay .Lets go .They all stowed their wands back in the inside pockets of their robes shouldered their brooms and followed Angelina out of the changing rooms .They squelched through the deepening mud to the middle of the pitch visibility was still very poor even with the Impervius Charm light was fading fast and curtains of rain were sweeping the grounds .All right on my whistle shouted Angelina .Harry kicked off from the ground spraying mud in all directions and shot upward the wind pulling him slightly off course .He had no idea how he was going to see the Snitch in this weather he was having enough difficulty seeing the one Bludger with which they were practicing a minute into the practice it almost unseated him and he had to use the Sloth Grip Roll to avoid it .Unfortunately Angelina did not see this in fact she did not appear to be able to see anything none of them had a clue what the others were doing .The wind was picking up even at a distance Harry could hear the swishing pounding sounds of the rain pummeling the surface of the lake .Angelina kept them at it for nearly an hour before conceding defeat .She led her sodden and disgruntled team back into the changing rooms insisting that the practice had not been a waste of time though without any real conviction in her voice .Fred and George were looking particularly annoyed both were bandylegged and winced with every movement .Harry could hear them complaining in low voices as he toweled his hair dry .I think a few of mine have ruptured said Fred in a hollow voice .Mine havent said George wincing .Theyre throbbing like mad .feel bigger if anything .OUCH !said Harry .He pressed the towel to his face his eyes screwed tight with pain .The scar on his forehead had seared again more painfully than in months .Whats up ?said several voices .Harry emerged from behind his towel the changing room was blurred because he was not wearing his glasses but he could still tell that everyones face was turned toward him .Nothing he muttered I poked myself in the eye thats all .But he gave Ron a significant look and the two of them hung back as the rest of the team filed back outside muffled in their cloaks their hats pulled low over their ears .What happened ?said Ron the moment that Alicia had disappeared through the door .Was it your scar ?Harry nodded .But .Looking scared Ron strode across to the window and stared out into the rain He he cant be near us now can he ?No Harry muttered sinking onto a bench and rubbing his forehead .Hes probably miles away .It hurt because .hes .angry .Harry had not meant to say that at all and heard the words as though a stranger had spoken them yet he knew at once that they were true .He did not know how he knew it but he did Voldemort wherever he was whatever he was doing was in a towering temper .Did you see him ?said Ron looking horrified .Did you .get a vision or something ?Harry sat quite still staring at his feet allowing his mind and his memory to relax in the aftermath of the pain .A confused tangle of shapes a howling rush of voices He wants something done and its not happening fast enough he said .Again he felt surprised to hear the words coming out of his mouth and yet quite certain that they were true .But .how do you know ?said Ron .Harry shook his head and covered his eyes with his hands pressing down upon them with his palms .Little stars erupted in them .He felt Ron sit down on the bench beside him and knew Ron was staring at him .Is this what it was about last time ?said Ron in a hushed voice .When your scar hurt in Umbridges office ?YouKnowWho was angry ?Harry shook his head .What is it then ?Harry was thinking himself back .He had been looking into Umbridges face .His scar had hurt .and he had had that odd feeling in his stomach .a strange leaping feeling .a happy feeling .But of course he had not recognized it for what it was as he had been feeling so miserable himself .Last time it was because he was pleased he said .Really pleased .He thought .something good was going to happen .And the night before we came back to Hogwarts .He thought back to the moment when his scar had hurt so badly in his and Rons bedroom in Grimmauld Place .He was furious .He looked around at Ron who was gaping at him .You could take over from Trelawney mate he said in an awed voice .Im not making prophecies said Harry .No you know what youre doing ?Ron said sounding both scared and impressed .Harry youre reading YouKnowWhos mind .No said Harry shaking his head .Its more like .his mood I suppose .Im just getting flashes of what mood hes in .Dumbledore said something like this was happening last year .He said that when Voldemort was near me or when he was feeling hatred I could tell .Well now Im feeling it when hes pleased too .There was a pause .The wind and rain lashed at the building .Youve got to tell someone said Ron .I told Sirius last time .Well tell him about this time !Cant can I ?said Harry grimly .Umbridge is watching the owls and the fires remember ?Well then Dumbledore Ive just told you he already knows said Harry shortly getting to his feet taking his cloak off his peg and swinging it around himself .Theres no point telling him again .Ron did up the fastening of his own cloak watching Harry thoughtfully .Dumbledored want to know he said .Harry shrugged .Cmon .weve still got Silencing Charms to practice They hurried back through the dark grounds sliding and stumbling up the muddy lawns not talking .Harry was thinking hard .What was it that Voldemort wanted done that was not happening quickly enough ?Hes got other plans .plans he can put into operation very quietly indeed .stuff he can only get by stealth .like a weapon .Something he didnt have last time .He had not thought about those words in weeks he had been too absorbed in what was going on at Hogwarts too busy dwelling on the ongoing battles with Umbridge the injustice of all the Ministry interference .But now they came back to him and made him wonder .Voldemorts anger would make sense if he was no nearer laying hands on the weapon whatever it was .Had the Order thwarted him stopped him from seizing it ?Where was it kept ?Who had it now ?Mimbulus mimbletonia said Rons voice and Harry came back to his senses just in time to clamber through the portrait hole into the common room .It appeared that Hermione had gone to bed early leaving Crookshanks curled in a nearby chair and an assortment of knobbly knitted elf hats lying on a table by the fire .Harry was rather grateful that she was not around because he did not much want to discuss his scar hurting and have her urge him to go to Dumbledore too .Ron kept throwing him anxious glances but Harry pulled out his Potions book and set to work to finish his essay though he was only pretending to concentrate and by the time that Ron said he was going to bed too had written hardly anything .Midnight came and went while Harry was reading and rereading a passage about the uses of scurvygrass lovage and sneezewort and not taking in a word of it .These plantes are moste efficacious in the inflaming of the braine and are therefore much used in Confusing and Befuddlement Draughts where the wizard is desirous of producing hotheadedness and recklessness . .Hermione said Sirius was becoming reckless cooped up in Grimmauld Place . .moste efficacious in the inflaming of the braine and are therefore much used . .the Daily Prophet would think his brain was inflamed if they found out that he knew what Voldemort was feeling . .therefore much used in Confusing and Befuddlement Draughts . .confusing was the word all right why did he know what Voldemort was feeling ?What was this weird connection between them which Dumbledore had never been able to explain satisfactorily ? .where the wizard is desirous . .how he would like to sleep . .of producing hotheadedness ..It was warm and comfortable in his armchair before the fire with the rain still beating heavily on the windowpanes and Crookshanks purring and the crackling of the flames .The book slipped from Harrys slack grip and landed with a dull thud on the hearthrug .His head fell sideways .He was walking once more along a windowless corridor his footsteps echoing in the silence .As the door at the end of the passage loomed larger his heart beat fast with excitement .If he could only open it .enter beyond .He stretched out his hand .His fingertips were inches from it .Harry Potter sir !He awoke with a start .The candles had all been extinguished in the common room but there was something moving close by .Whozair ?said Harry sitting upright in his chair .The fire was almost extinguished the room very dark .Dobby has your owl sir !said a squeaky voice .Dobby ?said Harry thickly peering through the gloom toward the source of the voice .Dobby the houseelf was standing beside the table on which Hermione had left her half a dozen knitted hats .His large pointed ears were now sticking out from beneath what looked like all the hats that Hermione had ever knitted he was wearing one on top of the other so that his head seemed elongated by two or three feet and on the very topmost bobble sat Hedwig hooting serenely and obviously cured .Dobby volunteered to return Harry Potters owl !said the elf squeakily with a look of positive adoration on his face .Professor GrubblyPlank says she is all well now sir !He sank into a deep bow so that his pencillike nose brushed the threadbare surface of the hearthrug and Hedwig gave an indignant hoot and fluttered onto the arm of Harrys chair .Thanks Dobby !said Harry stroking Hedwigs head and blinking hard trying to rid himself of the image of the door in his dream .It had been very vivid .Looking back at Dobby he noticed that the elf was also wearing several scarves and innumerable socks so that his feet looked far too big for his body .Er .have you been taking all the clothes Hermiones been leaving out ?Oh no sir said Dobby happily Dobby has been taking some for Winky too sir .Yeah how is Winky ?asked Harry .Dobbys ears drooped slightly .Winky is still drinking lots sir he said sadly his enormous round green eyes large as tennis balls downcast .She still does not care for clothes Harry Potter .Nor do the other houseelves .None of them will clean Gryffindor Tower anymore not with the hats and socks hidden everywhere they finds them insulting sir .Dobby does it all himself sir but Dobby does not mind sir for he always hopes to meet Harry Potter and tonight sir he has got his wish !Dobby sank into a deep bow again .But Harry Potter does not seem happy Dobby went on straightening up again and looking timidly at Harry .Dobby heard him muttering in his sleep .Was Harry Potter having bad dreams ?Not really bad said Harry yawning and rubbing his eyes .Ive had worse .The elf surveyed Harry out of his vast orblike eyes .Then he said very seriously his ears drooping Dobby wishes he could help Harry Potter for Harry Potter set Dobby free and Dobby is much much happier now .Harry smiled .You cant help me Dobby but thanks for the offer .He bent and picked up his Potions book .Hed have to try and finish the essay tomorrow .He closed the book and as he did so the firelight illuminated the thin white scars on the back of his hand the result of his detention with Umbridge .Wait a moment there is something you can do for me Dobby said Harry slowly .The elf looked around beaming .Name it Harry Potter sir !I need to find a place where twentyeight people can practice Defense Against the Dark Arts without being discovered by any of the teachers .Especially Harry clenched his hand on the book so that the scars shone pearly white Professor Umbridge .He expected the elfs smile to vanish his ears to droop he expected him to say that this was impossible or else that he would try but his hopes were not high .What he had not expected was for Dobby to give a little skip his ears waggling happily and clap his hands together .Dobby knows the perfect place sir !he said happily .Dobby heard tell of it from the other houseelves when he came to Hogwarts sir .It is known by us as the Come and Go Room sir or else as the Room of Requirement !Why ?said Harry curiously .Because it is a room that a person can only enter said Dobby seriously when they have real need of it .Sometimes it is there and sometimes it is not but when it appears it is always equipped for the seekers needs .Dobby has used it sir said the elf dropping his voice and looking guilty when Winky has been very drunk .He has hidden her in the Room of Requirement and he has found antidotes to butterbeer there and a nice elfsized bed to settle her on while she sleeps it off sir .And Dobby knows Mr Filch has found extra cleaning materials there when he has run short sir and and if you really needed a bathroom said Harry suddenly remembering something Dumbledore had said at the Yule Ball the previous Christmas would it fill itself with chamber pots ?Dobby expects so sir said Dobby nodding earnestly .It is a most amazing room sir .How many people know about it ?said Harry sitting up straighter in his chair .Very few sir .Mostly people stumbles across it when they needs it sir but often they never finds it again for they do not know that it is always there waiting to be called into service sir .It sounds brilliant said Harry his heart racing .It sounds perfect Dobby .When can you show me where it is ?Anytime Harry Potter sir said Dobby looking delighted at Harrys enthusiasm .We could go now if you like !For a moment Harry was tempted to go now he was halfway out of his seat intending to hurry upstairs for his Invisibility Cloak when not for the first time a voice very much like Hermiones whispered in his ear reckless .It was after all very late he was exhausted and had Snapes essay to finish .Not tonight Dobby said Harry reluctantly sinking back into his chair .This is really important .I dont want to blow it itll need proper planning .Listen can you just tell me exactly where this Room of Requirement is and how to get in there ?Their robes billowed and swirled around them as they splashed across the flooded vegetable patch to double Herbology where they could hardly hear what Professor Sprout was saying over the hammering of raindrops hard as hailstones on the greenhouse roof .The afternoons Care of Magical Creatures lesson was to be relocated from the stormswept grounds to a free classroom on the ground floor and to their intense relief Angelina sought out her team at lunch to tell them that Quidditch practice was canceled .Good said Harry quietly when she told him because weve found somewhere to have our first Defense meeting .Tonight eight oclock seventh floor opposite that tapestry of Barnabas the Barmy being clubbed by those trolls .Can you tell Katie and Alicia ?She looked slightly taken aback but promised to tell the others Harry returned hungrily to his sausages and mash .When he looked up to take a drink of pumpkin juice he found Hermione watching him .What ?he said thickly .Well .its just that Dobbys plans arent always that safe .Dont you remember when he lost you all the bones in your arm ?This room isnt just some mad idea of Dobbys Dumbledore knows about it too he mentioned it to me at the Yule Ball .Hermiones expression cleared .Dumbledore told you about it ?Just in passing said Harry shrugging .Oh well thats all right then said Hermione briskly and she raised no more objections .Together with Ron they had spent most of the day seeking out those people who had signed their names to the list in the Hogs Head and telling them where to meet that evening .Somewhat to Harrys disappointment it was Ginny who managed to find Cho Chang and her friend first however by the end of dinner he was confident that the news had been passed to every one of the twentyfive people who had turned up in the Hogs Head .At halfpast seven Harry Ron and Hermione left the Gryffindor common room Harry clutching a certain piece of aged parchment in his hand .Fifth years were allowed to be out in the corridors until nine oclock but all three of them kept looking around nervously as they made their way up to the seventh floor .Hold it said Harry warningly unfolding the piece of parchment at the top of the last staircase tapping it with his wand and muttering I solemnly swear that I am up to no good .A map of Hogwarts appeared upon the blank surface of the parchment .Tiny black moving dots labeled with names showed where various people were .Filch is on the second floor said Harry holding the map close to his eyes and scanning it closely and Mrs Norris is on the fourth .And Umbridge ?said Hermione anxiously .In her office said Harry pointing .Okay lets go .They hurried along the corridor to the place Dobby had described to Harry a stretch of blank wall opposite an enormous tapestry depicting Barnabas the Barmys foolish attempt to train trolls for the ballet .Okay said Harry quietly while a motheaten troll paused in his relentless clubbing of the wouldbe ballet teacher to watch .Dobby said to walk past this bit of wall three times concentrating hard on what we need .They did so turning sharply at the window just beyond the blank stretch of wall then at the mansize vase on its other side .Ron had screwed up his eyes in concentration Hermione was whispering something under her breath Harrys fists were clenched as he stared ahead of him .We need somewhere to learn to fight .he thought .Just give us a place to practice .somewhere they cant find us .Harry said Hermione sharply as they wheeled around after their third walk past .A highly polished door had appeared in the wall .Ron was staring at it looking slightly wary .Harry reached out seized the brass handle pulled open the door and led the way into a spacious room lit with flickering torches like those that illuminated the dungeons eight floors below .The walls were lined with wooden bookcases and instead of chairs there were large silk cushions on the floor .A set of shelves at the far end of the room carried a range of instruments such as Sneakoscopes Secrecy Sensors and a large cracked FoeGlass that Harry was sure had hung the previous year in the fake Moodys office .These will be good when were practicing Stunning said Ron enthusiastically prodding one of the cushions with his foot .And just look at these books !said Hermione excitedly running a finger along the spines of the large leatherbound tomes .A Compendium of Common Curses and Their CounterActions .The Dark Arts Outsmarted .SelfDefensive Spellwork .wow .She looked around at Harry her face glowing and he saw that the presence of hundreds of books had finally convinced Hermione that what they were doing was right .Harry this is wonderful theres everything we need here !And without further ado she slid Jinxes for the Jinxed from its shelf sank onto the nearest cushion and began to read .There was a gentle knock on the door .Harry looked around Ginny Neville Lavender Parvati and Dean had arrived .Whoa said Dean staring around impressed .What is this place ?Harry began to explain but before he had finished more people had arrived and he had to start all over again .By the time eight oclock arrived every cushion was occupied .Harry moved across to the door and turned the key protruding from the lock it clicked in a satisfyingly loud way and everybody fell silent looking at him .Hermione carefully marked her page of Jinxes for the Jinxed and set the book aside .Well said Harry slightly nervously .This is the place weve found for practices and youve er obviously found it okay Its fantastic !said Cho and several people murmured their agreement .Its bizarre said Fred frowning around at it .We once hid from Filch in here remember George ?But it was just a broom cupboard then .Hey Harry whats this stuff ?asked Dean from the rear of the room indicating the Sneakoscopes and the FoeGlass .Dark Detectors said Harry stepping between the cushions to reach them .Basically they all show when Dark wizards or enemies are around but you dont want to rely on them too much they can be fooled .He gazed for a moment into the cracked FoeGlass shadowy figures were moving around inside it though none was recognizable .He turned his back on it .Well Ive been thinking about the sort of stuff we ought to do first and er He noticed a raised hand .What Hermione ?I think we ought to elect a leader said Hermione .Harrys leader said Cho at once looking at Hermione as though she were mad and Harrys stomach did yet another back flip .Yes but I think we ought to vote on it properly said Hermione unperturbed .It makes it formal and it gives him authority .So everyone who thinks Harry ought to be our leader ?Everybody put up their hands even Zacharias Smith though he did it very halfheartedly .Er right thanks said Harry who could feel his face burning .And what Hermione ?I also think we ought to have a name she said brightly her hand still in the air .It would promote a feeling of team spirit and unity dont you think ?Can we be the AntiUmbridge League ?said Angelina hopefully .Or the Ministry of Magic Are Morons Group ?suggested Fred .I was thinking said Hermione frowning at Fred more of a name that didnt tell everyone what we were up to so we can refer to it safely outside meetings .The Defense Association ?said Cho .The D .A .for short so nobody knows what were talking about ?Yeah the D .A .s good said Ginny .Only lets make it stand for Dumbledores Army because thats the Ministrys worst fear isnt it ?There was a good deal of appreciative murmuring and laughter at this .All in favor of the D .A .said Hermione bossily kneeling up on her cushion to count .Thats a majority motion passed !She pinned the piece of paper with all of their names on it on the wall and wrote DUMBLEDORES ARMY across the top in large letters .Right said Harry when she had sat down again shall we get practicing then ?I was thinking the first thing we should do is Expelliarmus you know the Disarming Charm .I know its pretty basic but Ive found it really useful Oh please said Zacharias Smith rolling his eyes and folding his arms .I dont think Expelliarmus is exactly going to help us against YouKnowWho do you ?Ive used it against him said Harry quietly .It saved my life last June .Smith opened his mouth stupidly .The rest of the room was very quiet .But if you think its beneath you you can leave Harry said .Smith did not move .Nor did anybody else .Okay said Harry his mouth slightly drier than usual with all those eyes upon him I reckon we should all divide into pairs and practice .It felt very odd to be issuing instructions but not nearly as odd as seeing them followed .Everybody got to their feet at once and divided up .Predictably Neville was left partnerless .You can practice with me Harry told him .Right on the count of three then one two three The room was suddenly full of shouts of Expelliarmusl Wands flew in all directions missed spells hit books on shelves and sent them flying into the air .Harry was too quick for Neville whose wand went spinning out of his hand hit the ceiling in a shower of sparks and landed with a clatter on top of a bookshelf from which Harry retrieved it with a Summoning Charm .Glancing around he thought he had been right to suggest that they practice the basics first there was a lot of shoddy spellwork going on many people were not succeeding in disarming their opponents at all but merely causing them to jump backward a few paces or wince as the feeble spell whooshed over them .Expelliarmusl said Neville and Harry caught unawares felt his wand fly out of his hand .I DID IT !said Neville gleefully .Ive never done it before I DID IT !Good one !said Harry encouragingly deciding not to point out that in a real duel situation Nevilles opponent was unlikely to be staring in the opposite direction with his wand held loosely at his side .Listen Neville can you take it in turns to practice with Ron and Hermione for a couple of minutes so I can walk around and see how the rest are doing ?Harry moved off into the middle of the room .Something very odd was happening to Zacharias Smith every time he opened his mouth to disarm Anthony Goldstein his own wand would fly out of his hand yet Anthony did not seem to be making a sound .Harry did not have to look far for the solution of the mystery however Fred and George were several feet from Smith and taking it in turns to point their wands at his back .Sorry Harry said George hastily when Harry caught his eye .Couldnt resist .Harry walked around the other pairs trying to correct those who were doing the spell wrong .Ginny was teamed with Michael Corner she was doing very well whereas Michael was either very bad or unwilling to jinx her .Ernie Macmillan was flourishing his wand unnecessarily giving his partner time to get in under his guard the Creevey brothers were enthusiastic but erratic and mainly responsible for all the books leaping off the shelves around them .Luna Lovegood was similarly patchy occasionally sending Justin FinchFletchleys wand spinning out of his hand at other times merely causing his hair to stand on end .Okay stop !Harry shouted .Stop STOP .I need a whistle he thought and immediately spotted one lying on top of the nearest row of books .He caught it up and blew hard .Everyone lowered their wands .That wasnt bad said Harry but theres definite room for improvement .Zacharias Smith glared at him .Lets try again .He moved off around the room again stopping here and there to make suggestions .Slowly the general performance improved .He avoided going near Cho and her friend for a while but after walking twice around every other pair in the room felt he could not ignore them any longer .Oh no said Cho rather wildly as he approached .Expelliarmiousl I mean Exnellimellius I oh sorry Marietta !Her curlyhaired friends sleeve had caught fire Marietta extinguished it with her own wand and glared at Harry as though it was his fault .You made me nervous I was doing all right before then !Cho told Harry ruefully .That was quite good Harry lied but when she raised her eyebrows he said Well no it was lousy but I know you can do it properly I was watching from over there .She laughed .Her friend Marietta looked at them rather sourly and turned away .Dont mind her Cho muttered .She doesnt really want to be here but I made her come with me .Her parents have forbidden her to do anything that might upset Umbridge you see her mum works for the Ministry .What about your parents ?asked Harry .Well theyve forbidden me to get on the wrong side of Umbridge too said Cho drawing herself up proudly .But if they think Im not going to fight YouKnow Who after what happened to Cedric She broke off looking rather confused and an awkward silence fell between them Terry Boots wand went whizzing past Harrys ear and hit Alicia Spinnet hard on the nose .Well my father is very supportive of any anti Ministry action !said Luna Lovegood proudly from just behind Harry evidently she had been eavesdropping on his conversation while Justin FinchFletchley attempted to disentangle himself from the robes that had flown up over his head .Hes always saying hed believe anything of Fudge I mean the number of goblins Fudge has had assassinated !And of course he uses the Department of Mysteries to develop terrible poisons which he feeds secretly to anybody who disagrees with him .And then theres his Umgubular Slashkilter Dont ask Harry muttered to Cho as she opened her mouth looking puzzled .She giggled .Hey Harry Hermione called from the other end of the room have you checked the time ?He looked down at his watch and received a shock it was already ten past nine which meant they needed to get back to their common rooms immediately or risk being caught and punished by Filch for being outofbounds .He blew his whistle everybody stopped shouting Expelliarmusl and the last couple of wands clattered to the floor .Well that was pretty good said Harry but weve overrun wed better leave it here .Same time same place next week ?Sooner !said Dean Thomas eagerly and many people nodded in agreement .Angelina however said quickly The Quidditch seasons about to start we need team practices too !Lets say next Wednesday night then said Harry and we can decide on additional meetings then .Come on wed better get going .He pulled out the Marauders Map again and checked it carefully for signs of teachers on the seventh floor .He let them all leave in threes and fours watching their tiny dots anxiously to see that they returned safely to their dormitories the Hufflepuffs to the basement corridor that also led to the kitchens the Ravenclaws to a tower on the west side of the castle and the Gryffindors along the corridor to the seventh floor and the Fat Ladys portrait .That was really really good Harry said Hermione when finally it was just her Harry and Ron left .Yeah it was !said Ron enthusiastically as they slipped out of the door and watched it melt back into stone behind them .Did you see me disarm Hermione Harry ?Only once said Hermione stung .I got you loads more than you got me I did not only get you once I got you at least three times Well if youre counting the one where you tripped over your own feet and knocked the wand out of my hand They argued all the way back to the common room but Harry was not listening to them .He had one eye on the Marauders Map but he was also thinking of how Cho had said he made her nervous .THE LION AND THE SERPENT Harry felt as though he were carrying some kind of talisman inside his chest over the following two weeks a glowing secret that supported him through Umbridges classes and even made it possible for him to smile blandly as he looked into her horrible bulging eyes .He and the D .A .were resisting her under her very nose doing the very thing that she and the Ministry most feared and whenever he was supposed to be reading Wilbert Slinkhards book during her lessons he dwelled instead on satisfying memories of their most recent meetings remembering how Neville had successfully disarmed Hermione how Colin Creevey had mastered the Impediment Jinx after three meetings hard effort how Parvati Patil had produced such a good Reductor Curse that she had reduced the table carrying all the Sneakoscopes to dust .He was finding it almost impossible to fix a regular night of the week for D .A .meetings as they had to accommodate three separate Quidditch teams practices which were often rearranged depending on the weather conditions but Harry was not sorry about this he had a feeling that it was probably better to keep the timing of their meetings unpredictable .If anyone was watching them it would be hard to make out a pattern .Hermione soon devised a very clever method of communicating the time and date of the next meeting to all the members in case they needed to change it at short notice because it would look so suspicious if people from different Houses were seen crossing the Great Hall to talk to each other too often .She gave each of the members of the D .A .a fake Galleon Ron became very excited when he saw the basket at first convinced that she was actually giving out gold .You see the numerals around the edge of the coins ?Hermione said holding one up for examination at the end of their fourth meeting .The coin gleamed fat and yellow in the light from the torches .On real Galleons thats just a serial number referring to the goblin who cast the coin .On these fake coins though the numbers will change to reflect the time and date of the next meeting .The coins will grow hot when the date changes so if youre carrying them in a pocket youll be able to feel them .We take one each and when Harry sets the date of the next meeting hell change the numbers on his coin and because Ive put a Protean Charm on them theyll all change to mimic his .A blank silence greeted Hermione s words .She looked around at all the faces upturned to her rather disconcerted .Well I thought it was a good idea she said uncertainly I mean even if Umbridge asked us to turn out our pockets theres nothing fishy about carrying a Galleon is there ?But .well if you dont want to use them .You can do a Protean Charm ?said Terry Boot .Yes said Hermione .But thats .thats N .E .W .T .standard that is he said weakly .Oh said Hermione trying to look modest .Oh .well .yes I suppose it is .How come youre not in Ravenclaw ?he demanded staring at Hermione with something close to wonder .With brains like yours ?Well the Sorting Hat did seriously consider putting me in Ravenclaw during my Sorting said Hermione brightly but it decided on Gryffindor in the end .So does that mean were using the Galleons ?There was a murmur of assent and everybody moved forward to collect one from the basket .Harry looked sideways at Hermione .You know what these remind me of ?No whats that ?The Death Eaters scars .Voldemort touches one of them and all their scars burn and they know theyve got to join him .Well .yes said Hermione quietly .That is where I got the idea .but youll notice I decided to engrave the date on bits of metal rather than on our members skin .Yeah .I prefer your way said Harry grinning as he slipped his Galleon into his pocket .I suppose the only danger with these is that we might accidentally spend them .Fat chance said Ron who was examining his own fake Galleon with a slightly mournful air .I havent got any real Galleons to confuse it with .As the first Quidditch match of the season Gryffindor versus Slytherin drew nearer their D .A .meetings were put on hold because Angelina insisted on almost daily practices .The fact that the Quidditch Cup had not been held for so long added considerably to the interest and excitement surrounding the forthcoming game .The Ravenclaws and Hufflepuffs were taking a lively interest in the outcome for they of course would be playing both teams over the coming year and the Heads of House of the competing teams though they attempted to disguise it under a decent pretense of sportsmanship were determined to see their sides victory .Harry realized how much Professor McGonagall cared about beating Slytherin when she abstained from giving them homework in the week leading up to the match .I think youve got enough to be getting on with at the moment she said loftily .Nobody could quite believe their ears until she looked directly at Harry and Ron and said grimly Ive become accustomed to seeing the Quidditch Cup in my study boys and I really dont want to have to hand it over to Professor Snape so use the extra time to practice wont you ?Snape was no less obviously partisan He had booked the Quidditch pitch for Slytherin practice so often that the Gryffindors had difficulty getting on it to play .He was also turning a deaf ear to the many reports of Slytherin attempts to hex Gryffindor players in the corridors .When Alicia Spinnet turned up in the hospital wing with her eyebrows growing so thick and fast that they obscured her vision and obstructed her mouth Snape insisted that she must have attempted a HairThickening Charm on herself and refused to listen to the fourteen eyewitnesses who insisted that they had seen the Slytherin Keeper Miles Bletchley hit her from behind with a jinx while she worked in the library .Harry felt optimistic about Gryffindors chances they had after all never lost to Malfoys team .Admittedly Ron was still not performing to Woods standard but he was working extremely hard to improve .His greatest weakness was a tendency to lose confidence when he made a blunder if he let in one goal he became flustered and was therefore likely to miss more .On the other hand Harry had seen Ron make some truly spectacular saves when he was on form During one memorable practice he had hung one handed from his broom and kicked the Quaffle so hard away from the goal hoop that it soared the length of the pitch and through the center hoop at the other end .The rest of the team felt this save compared favorably with one made recently by Barry Ryan the Irish International Keeper against Polands top Chaser Ladislaw Zamojski .Even Fred had said that Ron might yet make him and George proud and that they were seriously considering admitting that he was related to them something he assured Ron they had been trying to deny for four years .The only thing really worrying Harry was how much Ron was allowing the tactics of the Slytherin team to upset him before they even got onto the pitch .Harry of course had endured their snide comments for more than four years so whispers of Hey Potty I heard Warringtons sworn to knock you off your broom on Saturday far from chilling his blood made him laugh .Warringtons aims so pathetic Id be more worried if he was aiming for the person next to me he retorted which made Ron and Hermione laugh and wiped the smirk off Pansy Parkinsons face .But Ron had never endured a relentless campaign of insults jeers and intimidation .When Slytherins some of them seventh years and considerably larger than he was muttered as they passed in the corridors Got your bed booked in the hospital wing Weasley ?he did not laugh but turned a delicate shade of green .When Draco Malfoy imitated Ron dropping the Quaffle which he did whenever they were within sight of each other Rons ears glowed red and his hands shook so badly that he was likely to drop whatever he was holding at the time too .October extinguished itself in a rush of howling winds and driving rain and November arrived cold as frozen iron with hard frosts every morning and icy drafts that bit at exposed hands and faces .The skies and the ceiling of the Great Hall turned a pale pearly gray the mountains around Hogwarts became snowcapped and the temperature in the castle dropped so far that many students wore their thick protective dragon skin gloves in the corridors between lessons .The morning of the match dawned bright and cold .When Harry awoke he looked around at Rons bed and saw him sitting bolt upright his arms around his knees staring fixedly into space .You all right ?said Harry .Ron nodded but did not speak .Harry was reminded forcibly of the time that Ron had accidentally put a slug vomiting charm on himself .He looked just as pale and sweaty as he had done then not to mention as reluctant to open his mouth .You just need some breakfast Harry said bracingly .Cmon .The Great Hall was filling up fast when they arrived the talk louder and the mood more exuberant than usual .As they passed the Slytherin table there was an upsurge of noise Harry looked around and saw that nearly everyone there was wearing in addition to the usual greenandsilver scarves and hats silver badges in the shape of what seemed to be crowns .For some reason many of them waved at Ron laughing uproariously .Harry tried to see what was written on the badges as he walked by but he was too concerned to get Ron past their table quickly to linger long enough to read them .They received a rousing welcome at the Gryffindor table where everyone was wearing red and gold but far from raising Rons spirits the cheers seemed to sap the last of his morale he collapsed onto the nearest bench looking as though he were facing his final meal .I mustve been mental to do this he said in a croaky whisper .Mental .Dont be thick said Harry firmly passing him a choice of cereals .Youre going to be fine .Its normal to be nervous .Im rubbish croaked Ron .Im lousy .I cant play to save my life .What was I thinking ?Get a grip said Harry sternly .Look at that save you made with your foot the other day even Fred and George said it was brilliant Ron turned a tortured face to Harry .That was an accident he whispered miserably .I didnt mean to do it I slipped off my broom when none of you were looking and I was trying to get back on and I kicked the Quaffle by accident .Well said Harry recovering quickly from this unpleasant surprise a few more accidents like that and the games in the bag isnt it ?Hermione and Ginny sat down opposite them wearing redandgold scarves gloves and rosettes .Howre you feeling ?Ginny asked Ron who was now staring into the dregs of milk at the bottom of his empty cereal bowl as though seriously considering attempting to drown himself in them .Hes just nervous said Harry .Well thats a good sign I never feel you perform as well in exams if youre not a bit nervous said Hermione heartily .Hello said a vague and dreamy voice from behind them .Harry looked up Luna Lovegood had drifted over from the Ravenclaw table .Many people were staring at her and a few openly laughing and pointing she had managed to procure a hat shaped like a lifesize lions head which was perched precariously on her head .Im supporting Gryffindor said Luna pointing unnecessarily at her hat .Look what it does .She reached up and tapped the hat with her wand .It opened its mouth wide and gave an extremely realistic roar that made everyone in the vicinity jump .Its good isnt it ?said Luna happily .I wanted to have it chewing up a serpent to represent Slytherin you know but there wasnt time .Anyway .good luck Ronald !She drifted away .They had not quite recovered from the shock of Lunas hat before Angelina came hurrying toward them accompanied by Katie and Alicia whose eyebrows had mercifully been returned to normal by Madam Pomfrey .When youre ready she said were going to go straight down to the pitch check out conditions and change .Well be there in a bit Harry assured her .Rons just got to have some breakfast .It became clear after ten minutes however that Ron was not capable of eating anything more and Harry thought it best to get him down to the changing rooms .As they rose from the table Hermione got up too and taking Harrys arm she drew him to one side .Dont let Ron see whats on those Slytherins badges she whispered urgently .Harry looked questioningly at her but she shook her head warningly Ron had just ambled over to them looking lost and desperate .Good luck Ron said Hermione standing on tiptoe and kissing him on the cheek .And you Harry Ron seemed to come to himself slightly as they walked back across the Great Hall .He touched the spot on his face where Hermione had kissed him looking puzzled as though he was not quite sure what had just happened .He seemed too distracted to notice much around him but Harry cast a curious glance at the crownshaped badges as they passed the Slytherin table and this time he made out the words etched onto them WEASLEY IS OUR KING With an unpleasant feeling that this could mean nothing good he hurried Ron across the entrance hall down the stone steps and out into the icy air .The frosty grass crunched under their feet as they hurried down the sloping lawns toward the stadium .There was no wind at all and the sky was a uniform pearly white which meant that visibility would be good without the drawback of direct sunlight in the eyes .Harry pointed out these encouraging factors to Ron as they walked but he was not sure that Ron was listening .Angelina had changed already and was talking to the rest of the team when they entered .Harry and Ron pulled on their robes Ron attempted to do his up backtofront for several minutes before Alicia took pity on him and went to help and then sat down to listen to the prematch talk while the babble of voices outside grew steadily louder as the crowd came pouring out of the castle toward the pitch .Okay Eve only just found out the final lineup for Slytherin said Angelina consulting a piece of parchment .Last years Beaters Derrick and Bole have left now but it looks as though Montagues replaced them with the usual gorillas rather than anyone who can fly particularly well .Theyre two blokes called Crabbe and Goyle I dont know much about them We do said Harry and Ron together .Well they dont look bright enough to tell one end of a broom from another said Angelina pocketing her parchment but then I was always surprised Derrick and Bole managed to find their way onto the pitch without signposts .Crabbe and Goyle are in the same mold Harry assured her .They could hear hundreds of footsteps mounting the banked benches of the spectators stands now .Some people were singing though Harry could not make out the words .He was starting to feel nervous but he knew his butterflies were as nothing to Rons who was clutching his stomach and staring straight ahead again his jaw set and his complexion pale gray .Its time said Angelina in a hushed voice looking at her watch .Cmon everyone .good luck .The team rose shouldered their brooms and marched in single file out of the changing room and into the dazzling sunlight .A roar of sound greeted them in which Harry could still hear singing though it was muffled by the cheers and whistles .The Slytherin team were standing waiting for them .They too were wearing those silver crownshaped badges .The new captain Montague was built along the same lines as Dudley with massive forearms like hairy hams .Behind him lurked Crabbe and Goyle almost as large blinking stupidly in the sunlight swinging their new Beaters bats .Malfoy stood to one side the sunlight gleaming on his whiteblond head .He caught Harrys eye and smirked tapping the crownshaped badge on his chest .Captains shake hands ordered the umpire Madam Hooch as Angelina and Montague reached each other .Harry could tell that Montague was trying to crush Angelinas fingers though she did not wince .Mount your brooms .Madam Hooch placed her whistle in her mouth and blew .The balls were released and the fourteen players shot upward out of the corner of his eye Harry saw Ron streak off toward the goal hoops .He zoomed higher dodging a Bludger and set off on a wide lap of the pitch gazing around for a glint of gold on the other side of the stadium Draco Malfoy was doing exactly the same .And its Johnson Johnson with the Quaffle what a player that girl is Ive been saying it for years but she still wont go out with me JORDAN !yelled Professor McGonagall .Just a fun fact Professor adds a bit of interest and shes ducked Warrington shes passed Montague shes ouch been hit from behind by a Bludger from Crabbe .Montague catches the Quaffle Montague heading back up the pitch and nice Bludger there from George Weasley thats a Bludger to the head for Montague he drops the Quaffle caught by Katie Bell Katie Bell of Gryffindor reverse passes to Alicia Spinnet and Spinnets away Lee Jordans commentary rang through the stadium and Harry listened as hard as he could through the wind whistling in his ears and the din of the crowd all yelling and booing and singing dodges Warrington avoids a Bludger close call Alicia and the crowd are loving this just listen to them whats that theyre singing ?And as Lee paused to listen the song rose loud and clear from the sea of green and silver in the Slytherin section of the stands Weasley cannot save a thing He cannot block a single ring Thats why Slytherins all sing Weasley is our King .Weasley was born in a bin He always lets the Quaffle in Weasley will make sure we win Weasley is our King .and Alicia passes back to Angelina !Lee shouted and as Harry swerved his insides boiling at what he had just heard he knew Lee was trying to drown out the sound of the singing .Come on now Angelina looks like shes got just the Keeper to beat !SHE SHOOTS SHE aah .Bletchley the Slytherin Keeper had saved the goal he threw the Quaffle to Warrington who sped off with it zigzagging in between Alicia and Katie the singing from below grew louder and louder as he drew nearer and nearer Ron Weasley is our King Weasley is our King He always lets the Quaffle in Weasley is our King .Harry could not help himself Abandoning his search for the Snitch he turned his Firebolt toward Ron a lone figure at the far end of the pitch hovering before the three goal hoops while the massive Warrington pelted toward him .and its Warrington with the Quaffle Warrington heading for goal hes out of Bludger range with just the Keeper ahead A great swell of song rose from the Slytherin stands below Weasley cannot save a thing He cannot block a single ring .so its the first test for new Gryffindor Keeper Weasley brother of Beaters Fred and George and a promising new talent on the team come on Ron !But the scream of delight came from the Slytherin end Ron had dived wildly his arms wide and the Quaffle had soared between them straight through Rons central hoop .Slytherin score !came Lees voice amid the cheering and booing from the crowds below .So thats tennil to Slytherin bad luck Ron .The Slytherins sang even louder WEASLEY WAS BORN IN A BIN HE ALWAYS LETS THE QUAFFLE IN .and Gryffindor back in possession and its Katie Bell tanking up the pitch cried Lee valiantly though the singing was now so deafening that he could hardly make himself heard above it .WEASLEY WILL MAKE SURE WE WIN WEASLEY IS OUR KING .Harry WHAT ARE YOU DOING ?screamed Angelina soaring past him to keep up with Katie .GET GOING !Harry realized that he had been stationary in midair for more than a minute watching the progress of the match without sparing a thought for the whereabouts of the Snitch horrified he went into a dive and started circling the pitch again staring around trying to ignore the chorus now thundering through the stadium WEASLEY IS OUR KING WEASLEY IS OUR KING .There was no sign of the Snitch anywhere he looked Malfoy was still circling the stadium just like Harry .They passed midway around the pitch going in opposite directions and Harry heard Malfoy singing loudly WEASLEY WAS BORN IN A BIN .and its Warrington again bellowed Lee who passes to Pucey Puceys off past Spinnet come on now Angelina you can take him turns out you cant but nice Bludger from Fred Weasley I mean George Weasley oh who cares one of them anyway and Warrington drops the Quaffle and Katie Bell er drops it too so thats Montague with the Quaffle Slytherin Captain Montague takes the Quaffle and hes off up the pitch come on now Gryffindor block him !Harry zoomed around the end of the stadium behind the Slytherin goal hoops willing himself not to look at what was going on at Rons end as he sped past the Slytherin Keeper he heard Bletchley singing along with the crowd below WEASLEY CANNOT SAVE A THING .and Puceys dodged Alicia again and hes heading straight for goal stop it Ron !Harry did not have to look to see what had happened There was a terrible groan from the Gryffindor end coupled with fresh screams and applause from the Slytherins .Looking down Harry saw the pugfaced Pansy Parkinson right at the front of the stands her back to the pitch as she conducted the Slytherin supporters who were roaring THATS WHY SLYTHERINS ALL SING WEASLEY IS OUR KING .But twentynil was nothing there was still time for Gryffindor to catch up or catch the Snitch a few goals and they would be in the lead as usual Harry assured himself bobbing and weaving through the other players in pursuit of something shiny that turned out to be Montagues watch strap .But Ron let in two more goals .There was an edge of panic in Harrys desire to find the Snitch now .If he could just get it soon and finish the game quickly .and Katie Bell of Gryffindor dodges Pucey ducks Montague nice swerve Katie and she throws to Johnson Angelina Johnson takes the Quaffle shes past Warrington shes heading for goal come on now Angelina GRYFFINDOR SCORE !Its fortyten forty ten to Slytherin and Pucey has the Quaffle .Harry could hear Lunas ludicrous lion hat roaring amidst the Gryffindor cheers and felt heartened only thirty points in it that was nothing they could pull back easily .Harry ducked a Bludger that Crabbe had sent rocketing in his direction and resumed his frantic scouring of the pitch for the Snitch keeping one eye on Malfoy in case he showed signs of having spotted it but Malfoy like him was continuing to soar around the stadium searching fruitlessly .Pucey throws to Warrington Warrington to Montague Montague back to Pucey Johnson intervenes Johnson takes the Quaffle Johnson to Bell this looks good I mean bad Bells hit by a Bludger from Goyle of Slytherin and its Pucey in possession again .WEASLEY WAS BORN IN A BIN HE ALWAYS LETS THE QUAFFLE IN WEASLEY WILL MAKE SURE WE WIN But Harry had seen it at last The tiny fluttering Golden Snitch was hovering feet from the ground at the Slytherin end of the pitch .He dived .In a matter of seconds Malfoy was streaking out of the sky on Harrys left a greenandsilver blur lying flat on his broom .The Snitch skirted the foot of one of the goal hoops and scooted off toward the other side of the stands its change of direction suited Malfoy who was nearer .Harry pulled his Firebolt around he and Malfoy were now neck and neck .Feet from the ground Harry lifted his right hand from his broom stretching toward the Snitch .to his right Malfoys arm extended too reaching groping .It was over in two breathless desperate windswept seconds Harrys fingers closed around the tiny struggling ball Malfoys fingernails scrabbled the back of Harrys hand hopelessly Harry pulled his broom upward holding the struggling ball in his hand and the Gryffindor spectators screamed their approval .They were saved it did not matter that Ron had let in those goals nobody would remember as long as Gryffindor had won WHAM A Bludger hit Harry squarely in the small of the back and he flew forward off his broom luckily he was only five or six feet above the ground having dived so low to catch the Snitch but he was winded all the same as he landed flat on his back on the frozen pitch .He heard Madam Hoochs shrill whistle an uproar in the stands compounded of catcalls angry yells and jeering a thud then Angelinas frantic voice .Are you all right ?Course I am said Harry grimly taking her hand and allowing her to pull him to his feet .Madam Hooch was zooming toward one of the Slytherin players above him though he could not see who it was at this angle .It was that thug Crabbe said Angelina angrily .He whacked the Bludger at you the moment he saw youd got the Snitch but we won Harry we won !Harry heard a snort from behind him and turned around still holding the Snitch tightly in his hand Draco Malfoy had landed close by whitefaced with fury he was still managing to sneer .Saved Weasleys neck havent you ?he said to Harry .Ive never seen a worse Keeper .but then he was born in a bin .Did you like my lyrics Potter ?Harry did not answer he turned away to meet the rest of the team who were now landing one by one yelling and punching the air in triumph all except Ron who had dismounted from his broom over by the goalposts and was making his way slowly back to the changing rooms alone .We wanted to write another couple of verses !Malfoy called as Katie and Alicia hugged Harry .But we couldnt find rhymes for fat and ugly we wanted to sing about his mother see Talk about sour grapes said Angelina casting Malfoy a disgusted look .we couldnt fit in useless loser either for his father you know Fred and George had realized what Malfoy was talking about .Halfway through shaking Harrys hand they stiffened looking around at Malfoy .Leave it said Angelina at once taking Fred by the arm .Leave it Fred let him yell hes just sore he lost the jumpedup little but you like the Weasleys dont you Potter ?said Malfoy sneering .Spend holidays there and everything dont you ?Cant see how you stand the stink but I suppose when youve been dragged up by Muggles even the Weasleys hovel smells okay Harry grabbed hold of George meanwhile it was taking the combined efforts of Angelina Alicia and Katie to stop Fred leaping on Malfoy who was laughing openly .Harry looked around for Madam Hooch but she was still berating Crabbe for his illegal Bludger attack .Or perhaps said Malfoy leering as he backed away you can remember what your mothers house stank like Potter and Weasleys pigsty reminds you of it Harry was not aware of releasing George all he knew was that a second later both of them were sprinting at Malfoy .He had completely forgotten the fact that all the teachers were watching All he wanted to do was cause Malfoy as much pain as possible .With no time to draw out his wand he merely drew back the fist clutching the Snitch and sank it as hard as he could into Malfoys stomach Harry !HARRY !GEORGE !1VO !He could hear girls voices screaming Malfoy yelling George swearing a whistle blowing and the bellowing of the crowd around him but he did not care not until somebody in the vicinity yelled IMPEDIMENTA !and only when he was knocked over backward by the force of the spell did he abandon the attempt to punch every inch of Malfoy he could reach .What do you think youre doing ?screamed Madam Hooch as Harry leapt to his feet again it was she who had hit him with the Impediment Jinx .She was holding her whistle in one hand and a wand in the other her broom lay abandoned several feet away .Malfoy was curled up on the ground whimpering and moaning his nose bloody George was sporting a swollen lip Fred was still being forcibly restrained by the three Chasers and Crabbe was cackling in the background .Ive never seen behavior like it back up to the castle both of you and straight to your Head of Houses office !Go !Now Harry and George marched off the pitch both panting neither saying a word to each other .The howling and jeering of the crowd grew fainter and fainter until they reached the entrance hall where they could hear nothing except the sound of their own footsteps .Harry became aware that something was still struggling in his right hand the knuckles of which he had bruised against Malfoys jaw looking down he saw the Snitchs silver wings protruding from between his fingers struggling for release .They had barely reached the door of Professor McGonagalls office when she came marching along the corridor behind them .She was wearing a Gryffindor scarf but tore it from her throat with shaking hands as she strode toward them looking livid .In !she said furiously pointing to the door .Harry and George entered .She strode around behind her desk and faced them quivering with rage as she threw the Gryffindor scarf aside onto the floor .Well ?she said .I have never seen such a disgraceful exhibition .Two onto one !Explain yourselves !Malfoy provoked us said Harry stiffly .Provoked you ?shouted Professor McGonagall slamming a fist onto her desk so that her tartan biscuit tin slid sideways off it and burst open littering the floor with Ginger Newts .Hed just lost hadnt he of course he wanted to provoke you !But what on earth he can have said that justified what you two He insulted my parents snarled George .And Harrys mother .But instead of leaving it to Madam Hooch to sort out you two decided to give an exhibition of Muggle dueling did you ?bellowed Professor McGonagall .Have you any idea what youve ?Hem hem .George and Harry both spun around .Dolores Umbridge was standing in the doorway wrapped in a green tweed cloak that greatly enhanced her resemblance to a giant toad and smiling in the horribly sickly ominous way that Harry had come to associate with imminent misery .May I help Professor McGonagall ?asked Professor Umbridge in her most poisonously sweet voice .Blood rushed into Professor McGonagalls face .Help ?she repeated in a constricted voice .What do you mean ‘help ?Professor Umbridge moved forward into the office still smiling her sickly smile .Why I thought you might be grateful for a little extra authority .Harry would not have been surprised to see sparks fly from Professor McGonagalls nostrils .You thought wrong she said turning her back on Umbridge .Now you two had better listen closely .I do not care what provocation Malfoy offered you I do not care if he insulted every family member you possess your behavior was disgusting and I am giving each of you a weeks worth of detention !Do not look at me like that Potter you deserve it !And if either of you ever Hem hem .Professor McGonagall closed her eyes as though praying for patience as she turned her face toward Professor Umbridge again .Yes ?I think they deserve rather more than detentions said Umbridge smiling still more broadly .Professor McGonagalls eyes flew open .But unfortunately she said with an attempt at a reciprocal smile that made her look as though she had lockjaw it is what I think that counts as they are in my House Dolores .Well actually Minerva simpered Umbridge I think youll find that what I think does count .Now where is it ?Cornelius just sent it .I mean she gave a little false laugh as she rummaged in her handbag the Minister just sent it .Ah yes .She had pulled out a piece of parchment that she now unfurled clearing her throat fussily before starting to read what it said .Hem hem . ‘Educational Decree Number Twenty five .Not another one !exclaimed Professor McGonagall violently .Well yes said Umbridge still smiling .As a matter of fact Minerva it was you who made me see that we needed a further amendment .You remember how you overrode me when I was unwilling to allow the Gryffindor Quidditch team to reform ?How you took the case to Dumbledore who insisted that the team be allowed to play ?Well now I couldnt have that .I contacted the Minister at once and he quite agreed with me that the High Inquisitor has to have the power to strip pupils of privileges or she that is to say I would have less authority than common teachers !And you see now dont you Minerva how right I was in attempting to stop the Gryffindor team reforming ?Dreadful tempers .Anyway I was reading out our amendment .hem hem .The High Inquisitor will henceforth have supreme authority over all punishments sanctions and removal of privileges pertaining to the students of Hogwarts and the power to alter such punishments sanctions and removals of privileges as may have been ordered by other staff members .Signed Cornelius Fudge Minister of Magic Order of Merlin First Class etc .etc .She rolled up the parchment and put it back into her handbag still smiling .So .I really think I will have to ban these two from playing Quidditch ever again she said looking from Harry to George and back again .Harry felt the Snitch fluttering madly in his hand .Ban us ?he said and his voice sounded strangely distant .From playing .ever again ?Yes Mr Potter I think a lifelong ban ought to do the trick said Umbridge her smile widening still further as she watched him struggle to comprehend what she had said .You and Mr Weasley here .And I think to be safe this young mans twin ought to be stopped too if his teammates had not restrained him I feel sure he would have attacked young Mr Malfoy as well .I will want their broomsticks confiscated of course I shall keep them safely in my office to make sure there is no infringement of my ban .But I am not unreasonable Professor McGonagall she continued turning back to Professor McGonagall who was now standing as still as though carved from ice staring at her .The rest of the team can continue playing I saw no signs of violence from any of them .Well .good afternoon to you .And with a look of the utmost satisfaction Umbridge left the room leaving a horrified silence in her wake .Banned said Angelina in a hollow voice late that evening in the common room .Banned .No Seeker and no Beaters .What on earth are we going to do ?It did not feel as though they had won the match at all .Everywhere Harry looked there were disconsolate and angry faces the team themselves were slumped around the fire all apart from Ron who had not been seen since the end of the match .Its just so unfair said Alicia numbly .I mean what about Crabbe and that Bludger he hit after the whistle had been blown ?Has she banned him ?No said Ginny miserably she and Hermione were sitting on either side of Harry .He just got lines I heard Montague laughing about it at dinner .And banning Fred when he didnt even do anything !said Alicia furiously pummeling her knee with her fist .Its not my fault I didnt said Fred with a very ugly look on his face .I wouldve pounded the little scumbag to a pulp if you three hadnt been holding me back .Harry stared miserably at the dark window .Snow was falling .The Snitch he had caught earlier was now zooming around and around the common room people were watching its progress as though hypnotized and Crookshanks was leaping from chair to chair trying to catch it .Im going to bed said Angelina getting slowly to her feet .Maybe this will all turn out to have been a bad dream .Maybe Ill wake up tomorrow and find we havent played yet .She was soon followed by Alicia and Katie .Fred and George sloped off to bed some time later glowering at everyone they passed and Ginny went not long after that .Only Harry and Hermione were left beside the fire .Have you seen Ron ?Hermione asked in a low voice .Harry shook his head .I think hes avoiding us said Hermione .Where do you think he ?But at that precise moment there was a creaking sound behind them as the Fat Lady swung forward and Ron came clambering through the portrait hole .He was very pale indeed and there was snow in his hair .When he saw Harry and Hermione he stopped dead in his tracks .Where have you been ?said Hermione anxiously springing up .Walking Ron mumbled .He was still wearing his Quidditch things .You look frozen said Hermione .Come and sit down !Ron walked to the fireside and sank into the chair farthest from Harrys not looking at him .The stolen Snitch zoomed over their heads .Im sorry Ron mumbled looking at his feet .What for ?said Harry .For thinking I can play Quidditch said Ron .Im going to resign first thing tomorrow .If you resign said Harry testily therell only be three players left on the team .And when Ron looked puzzled he said Ive been given a lifetime ban .Sove Fred and George .What ?Ron yelped .Hermione told him the full story Harry could not bear to tell it again .When she had finished Ron looked more anguished than ever .This is all my fault You didnt make me punch Malfoy said Harry angrily .if I wasnt so lousy at Quidditch its got nothing to do with that it was that song that wound me up it wouldve wound anyone up Hermione got up and walked to the window away from the argument watching the snow swirling down against the pane .Look drop it will you !Harry burst out .Its bad enough without you blaming yourself for everything !Ron said nothing but sat gazing miserably at the damp hem of his robes .After a while he said in a dull voice This is the worst Ive ever felt in my life .Join the club said Harry bitterly .Well said Hermione her voice trembling slightly .I can think of one thing that might cheer you both up .Oh yeah ?said Harry skeptically .Yeah said Hermione turning away from the pitch black snowflecked window a broad smile spreading across her face .Hagrids back .HAGRIDS TALE Harry sprinted up to the boys dormitory to fetch the Invisibility Cloak and the Marauders Map from his trunk he was so quick that he and Ron were ready to leave at least five minutes before Hermione hurried back down from the girls dormitories wearing scarf gloves and one of her own knobbly elf hats .Well its cold out there !she said defensively as Ron clicked his tongue impatiently .They crept through the portrait hole and covered themselves hastily in the cloak Ron had grown so much he now needed to crouch to prevent his feet showing then moving slowly and cautiously they proceeded down the many staircases pausing at intervals to check the map for signs of Filch or Mrs Norris .They were lucky they saw nobody but Nearly Headless Nick who was gliding along absentmindedly humming something that sounded horribly like Weasley Is Our King .They crept across the entrance hall and then out into the silent snowy grounds .With a great leap of his heart Harry saw little golden squares of light ahead and smoke coiling up from Hagrids chimney .He set off at a quick march the other two jostling and bumping along behind him and they crunched excitedly through the thickening snow until at last they reached the wooden front door when Harry raised his fist and knocked three times a dog started barking frantically inside .Hagrid its us !Harry called through the keyhole .Shoulda known !said a gruff voice .They beamed at one another under the cloak they could tell that Hagrids voice was pleased .Bin home three seconds .Out the way Fang .Out the way yeh dozy dog .The bolt was drawn back the door creaked open and Hagrids head appeared in the gap .Hermione screamed .Merlins beard keep it down !said Hagrid hastily staring wildly over their heads .Under that cloak are yeh ?Well get in get in !Im sorry !Hermione gasped as the three of them squeezed past Hagrid into the house and pulled the cloak off themselves so he could see them .I just oh Hagrid .Its nuthin its nuthin !said Hagrid hastily shutting the door behind them and hurrying to close all the curtains but Hermione continued to gaze up at him in horror .Hagrids hair was matted with congealed blood and his left eye had been reduced to a puffy slit amid a mass of purpleandblack bruises .There were many cuts on his face and hands some of them still bleeding and he was moving gingerly which made Harry suspect broken ribs .It was obvious that he had only just got home a thick black traveling cloak lay over the back of a chair and a haversack large enough to carry several small children leaned against the wall inside the door .Hagrid himself twice the size of a normal man and three times as broad was now limping over to the fire and placing a copper kettle over it .What happened to you ?Harry demanded while Fang danced around them all trying to lick their faces .Told yeh nuthin said Hagrid firmly .Want a cuppa ?Come off it said Ron youre in a right state !Im tellinyeh Im fine said Hagrid straightening up and turning to beam at them all but wincing .Blimey its good ter see you three again had good summers did yeh ?Hagrid youve been attacked !said Ron .Fer the las time its nuthin !said Hagrid firmly .Would you say it was nothing if one of us turned up with a pound of mince instead of a face ?Ron demanded .You ought to go and see Madam Pomfrey Hagrid said Hermione anxiously .Some of those cuts look nasty .Im dealin with it all righ ?said Hagrid repressively .He walked across to the enormous wooden table that stood in the middle of his cabin and twitched aside a tea towel that had been lying on it .Underneath was a raw bloody greentinged steak slightly larger than the average car tire .Youre not going to eat that are you Hagrid ?said Ron leaning in for a closer look .It looks poisonous .Its s posed ter look like that its dragon meat Hagrid said .An I didn get it ter eat .He picked up the steak and slapped it over the left side of his face .Greenish blood trickled down into his beard as he gave a soft moan of satisfaction .Thas better .It helps with the stingin yeh know .So are you going to tell us whats happened to you ?Harry asked .Can Harry .Top secret .Moren me jobs worth ter tell yeh that .Did the giants beat you up Hagrid ?asked Hermione quietly .Hagrids fingers slipped on the dragon steak and it slid squelchily onto his chest .Giants ?said Hagrid catching the steak before it reached his belt and slapping it back over his face .Who said anythin abou giants ?Who yeh bin talkin to ?Whos told yeh what Ive whos said Ive bin eh ?We guessed said Hermione apologetically .Oh yeh did did yeh ?said Hagrid fixing her sternly with the eye that was not hidden by the steak .It was kind of .obvious said Ron .Harry nodded .Hagrid glared at them then snorted threw the steak onto the table again and strode back to the kettle which was now whistling .Never known kids like you three fer knowin moren yeh oughta he muttered splashing boiling water into three of his bucketshaped mugs .An Im not complimentin yeh neither .Nosy somed call it .Interferin .But his beard twitched .So you have been to look for giants ?said Harry grinning as he sat down at the table .Hagrid set tea in front of each of them sat down picked up his steak again and slapped it back over his face .Yeah all righ he grunted I have .And you found them ?said Hermione in a hushed voice .Well theyre not that difficult ter find ter be honest said Hagrid .Pretty big see .Where are they ?said Ron .Mountains said Hagrid unhelpfully .So why dont Muggles ?They do said Hagrid darkly .Ony their deaths are always put down ter mountaineerin accidents aren they ?He adjusted the steak a little so that it covered the worst of the bruising .Come on Hagrid tell us what youve been up to !said Ron .Tell us about being attacked by the giants and Harry can tell you about being attacked by the dementors Hagrid choked in his mug and dropped his steak at the same time a large quantity of spit tea and dragon blood was sprayed over the table as Hagrid coughed and spluttered and the steak slid with a soft splat onto the floor .Whadda yeh mean attacked by dementors ?growled Hagrid .Didnt you know ?Hermione asked him wideeyed .I don know anything thats been happenin since I left .I was on a secret mission wasn I didn wan owls followin me all over the place ruddy dementors !Yehre not serious ?Yeah I am they turned up in Little Whinging and attacked my cousin and me and then the Ministry of Magic expelled me WHAT ?and I had to go to a hearing and everything but tell us about the giants first .You were expelled ?Tell us about your summer and Ill tell you about mine .Hagrid glared at him through his one open eye .Harry looked right back an expression of innocent determination on his face .Oh all righ Hagrid said in a resigned voice .He bent down and tugged the dragon steak out of Fangs mouth .Oh Hagrid dont its not hygien Hermione began but Hagrid had already slapped the meat back over his swollen eye .He took another fortifying gulp of tea and then said Well we set off righ after term ended Madame Maxime went with you then ?Hermione interjected .Yeah thas right said Hagrid and a softened expression appeared on the few inches of face that were not obscured by beard or green steak .Yeah it was jus the pair of us .An Ill tell yeh this shes not afraid of roughin it Olympe .Yeh know shes a fine welldressed woman an knowin where we was goin I wondered ow shed feel abou clamberin over boulders an sleepin in caves an tha bu she never complained once .You knew where you were going ?Harry asked .You knew where the giants were ?Well Dumbledore knew an he told us said Hagrid .Are they hidden ?asked Ron .Is it a secret where they are ?Not really said Hagrid shaking his shaggy head .Its jus that mos wizards aren bothered where they are s long as its a good long way away .But where they ares very difficult ter get ter fer humans anyway so we needed Dumbledores instructions .Took us abou a month ter get there A month ?said Ron as though he had never heard of a journey lasting such a ridiculously long time .But why couldnt you just grab a Portkey or something ?There was an odd expression in Hagrids unobscured eye as he squinted at Ron it was almost pitying .Were bein watched Ron he said gruffly .What dyou mean ?Yeh don understand said Hagrid .The Ministrys keepin an eye on Dumbledore an anyone they reckons in league with him an We know about that said Harry quickly keen to hear the rest of Hagrids story .We know about the Ministry watching Dumbledore So you couldnt use magic to get there ?asked Ron looking thunderstruck .You had to act like Muggles all the way ?Well not exactly all the way said Hagrid cagily .We jus had ter be careful cause Olympe an me we stick out a bit Ron made a stifled noise somewhere between a snort and a sniff and hastily took a gulp of tea .so were not hard ter follow .We was pretendin we was goin on holiday together so we got inter France an we made like we was headin fer where Olympes school is cause we knew we was bein tailed by someone from the Ministry .We had to go slow cause Im not really s posed ter use magic an we knew the Ministryd be lookin fer a reason ter run us in .But we managed ter give the berk tailin us the slip round abou DeeJohn Ooooh Dijon ?said Hermione excitedly .Ive been there on holiday did you see ?She fell silent at the look on Rons face .We chanced a bit o magic after that and it wasn a bad journey .Ran inter a couple o mad trolls on the Polish border an I had a sligh disagreement with a vampire in a pub in Minsk but apart from tha couldnta bin smoother .An then we reached the place an we started trekkin up through the mountains lookin fer signs of em .We had ter lay off the magic once we got near em .Partly cause they don like wizards an we didn want ter put their backs up too soon and partly cause Dumbledore had warned us YouKnowWho was bound ter be after the giants an all .Said it was odds on hed sent a messenger off ter them already .Told us ter be very careful of drawin attention ter ourselves as we got nearer in case there was Death Eaters around .Hagrid paused for a long draft of tea .Go on !said Harry urgently .Found em said Hagrid baldly .Went over a ridge one nigh an there they was spread ou underneath us .Little fires burnin below an huge shadows .It was like watchin bits o the mountain movin .How big are they ?asked Ron in a hushed voice .T3out twenty feet said Hagrid casually .Some o the bigger ones mighta bin twentyfive .And how many were there ?asked Harry .I reckon abou seventy or eighty said Hagrid .Is that all ?said Hermione .Yep said Hagrid sadly eighty left an there was loads once musta bin a hundred diffrent tribes from all over the world .But theyve bin dyin out fer ages .Wizards killed a few o course but mostly they killed each other an now theyre dyin out faster than ever .Theyre not made ter live bunched up together like tha .Dumbledore says its our fault it was the wizards who forced em to go an made em live a good long way from us an they had no choice but ter stick together fer their own protection .So said Harry you saw them and then what ?Well we waited till morning didn want ter go sneakin up on em in the dark fer our own safety said Hagrid .Bout three in the mornin they fell asleep jus where they was sittin .We didn dare sleep .Fer one thing we wanted ter make sure none of em woke up an came up where we were an fer another the snorin was unbelievable .Caused an avalanche near mornin .Anyway once it was light we wen down ter see em .Just like that ?said Ron looking awestruck .You just walked right into a giant camp ?Well Dumbledored told us how ter do it said Hagrid .Give the Gurg gifts show some respect yeh know .Give the what gifts ?asked Harry .Oh the Gurg means the chief .How could you tell which one was the Gurg ?asked Ron .Hagrid grunted in amusement .No problem he said .He was the biggest the ugliest an the laziest .Sittin there waitin ter be brought food by the others .Dead goats an such like .Name o Karkus .Id put him at twentytwo twenty three feet an the weight of a couple o bull elephants .Skin like rhino hide an all .And you just walked up to him ?said Hermione breathlessly .Well .down ter him where he was lyin in the valley .They was in this dip between four pretty high mountains see beside a mountain lake an Karkus was lyin by the lake roarin at the others ter feed him an his wife .Olympe an I went down the mountainside But didnt they try and kill you when they saw you ?asked Ron incredulously .It was defnitely on some of their minds said Hagrid shrugging but we did what Dumbledore told us ter do which was ter hold our gift up high an keep our eyes on the Gurg an ignore the others .So thas what we did .An the rest of em went quiet an watched us pass an we got right up ter Karkuss feet an we bowed an put our present down in front o him .What do you give a giant ?asked Ron eagerly .Food ?Nah he can get food all righ fer himself said Hagrid .We took him magic .Giants like magic jus dont like us usin it against em .Anyway that firs day we gave him a branch o Gubraithian fire .Hermione said wow softly but Harry and Ron both frowned in puzzlement .A branch of ?Everlasting fire said Hermione irritably you ought to know that by now Professor Flitwicks mentioned it at least twice in class !Well anyway said Hagrid quickly intervening before Ron could answer back Dumbledored bewitched this branch to burn evermore which isn somethin any wizard could do an so I lies it down in the snow by Karkuss feet and says ‘A gift to the Gurg of the giants from Albus Dumbledore who sends his respectful greetings .And what did Karkus say ?asked Harry eagerly .Nothin said Hagrid .Didn speak English .Youre kidding !Didn matter said Hagrid imperturbably Dumbledore had warned us tha migh happen .Karkus knew enough to yell fer a couple o giants who knew our lingo an they translated fer us .And did he like the present ?asked Ron .Oh yeah it went down a storm once they understood what it was said Hagrid turning his dragon steak over to press the cooler side to his swollen eye .Very pleased .So then I said Altars Dumbledore asks the Gurg to speak with his messenger when he returns tomorrow with another gift .Why couldnt you speak to them that day ?asked Hermione .Dumbledore wanted us ter take it very slow said Hagrid .Let em see we kept our promises .Well come back tomorrow with another present an then we do come back with another present gives a good impression see ?An gives them time ter test out the firs present an find out its a good one an get em eager fer more .In any case giants like Karkus overload em with information an theyll kill yeh jus to simplify things .So we bowed outta the way an went off an found ourselves a nice little cave ter spend that night in an the followin mornin we went back an this time we found Karkus sittin up waitin fer us lookin all eager .And you talked to him ?Oh yeah .Firs we presented him with a nice battle helmet goblinmade an indestructible yeh know an then we sat down an we talked .What did he say ?Not much said Hagrid .Listened mostly .But there were good signs .Hed heard o Dumbledore heard hed argued against the killin of the last giants in Britain .Karkus seemed ter be quite intrested in what Dumbledore had ter say .An a few o the others specially the ones who had some English they gathered round an listened too .We were hopeful when we left that day .Promised ter come back next day with another present .But that night it all wen wrong .What dyou mean ?said Ron quickly .Well like I say theyre not meant ter live together giants said Hagrid sadly .Not in big groups like that .They can help themselves they half kill each other every few weeks .The men fight each other an the women fight each other the remnants of the old tribes fight each other an thats even without squabbles over food an the best fires an sleepin spots .Yehd think seein as how their whole race is abou finished theyd lay off each other but .Hagrid sighed deeply That night a fight broke out we saw it from the mouth of our cave lookin down on the valley .Went on fer hours yeh wouldn believe the noise .An when the sun came up the snow was scarlet an his head was lyin at the bottom o the lake .Whose head ?gasped Hermione .Karkuss said Hagrid heavily .There was a new Gurg Golgomath .He sighed deeply .Well we hadn bargained on a new Gurg two days after wed made friendly contact with the firs one an we had a funny feelin Golgomath wouldn be so keen ter listen to us but we had ter try .You went to speak to him ?asked Ron incredulously .After youd watched him rip off another giants head ?Course we did said Hagrid we hadn gone all that way ter give up after two days !We wen down with the next present wed meant ter give ter Karkus .I knew it was no go before Id opened me mouth .He was sitting there wearin Karkus s helmet leerin at us as we got nearer .Hes massive one o the biggest ones there .Black hair an matchin teeth an a necklace o bones .Humanlookin bones some of em .Well I gave it a go held out a great roll o dragon skin an said A gift fer the Gurg of the giants Nex thing I knew I was hangin upside down in the air by me feet two of his mates had grabbed me .Hermione clapped her hands to her mouth .How did you get out of that ?asked Harry .Wouldnta done if Olympe hadn bin there said Hagrid .She pulled out her wand an did some o the fastes spellwork Ive ever seen .Ruddy marvelous .Hit the two holdin me right in the eyes with Conjunctivitus Curses an they dropped me straightaway bu we were in trouble then cause wed used magic against em an thats what giants hate abou wizards .We had ter leg it an we knew there was no way we was going ter be able ter march inter camp again .Blimey Hagrid said Ron quietly .So how come its taken you so long to get home if you were only there for three days ?asked Hermione .We didn leave after three days !said Hagrid looking outraged .Dumbledore was relyin on us !But youve just said there was no way you could go back !Not by daylight we couldn no .We just had ter rethink a bit .Spent a couple o days lyin low up in the cave an watchin .An wha we saw wasn good .Did he rip off more heads ?asked Hermione sounding squeamish .No said Hagrid .I wish he had .What dyou mean ?I mean we soon found out he didn object ter all wizards just us .Death Eaters ?said Harry quickly .Yep said Hagrid darkly .Couple of em were visitin him evry day bringin gifts ter the Gurg an he wasn dangling them upside down .How dyou know they were Death Eaters ?said Ron .Because I recognized one of em Hagrid growled .Macnair remember him ?Bloke they sent ter kill Buckbeak ?Maniac he is .Likes killin as much as Golgomath no wonder they were gettin on so well .So Macnairs persuaded the giants to join YouKnow Who ?said Hermione desperately .Hold yer hippogriffs I haven finished me story yet !said Hagrid indignantly who considering he had not wanted to tell them anything in the first place now seemed to be rather enjoying himself .Me an Olympe talked it over an we agreed jus cause the Gurg looked like favorin YouKnowWho didn mean all of em would .We had ter try an persuade some o the others the ones who hadn wanted Golgomath as Gurg .How could you tell which ones they were ?asked Ron .Well they were the ones bein beaten to a pulp weren they ?said Hagrid patiently .The ones with any sense were keepin outta Golgomath s way hidin out in caves roun the gully jus like we were .So we decided wed go pokin round the caves by night an see if we couldn persuade a few o them .You went poking around dark caves looking for giants ?said Ron with awed respect in his voice .Well it wasn the giants who worried us most said Hagrid .We were more concerned abou the Death Eaters .Dumbledore had told us before we wen not ter tangle with em if we could avoid it an the trouble was they knew we was around spect Golgomath told him abou us .At night when the giants were sleepin an we wanted ter be creepin inter the caves Macnair an the other one were sneakin round the mountains lookin fer us .I was hard put to stop Olympe jumpin out at them said Hagrid the corners of his mouth lifting his wild beard .She was rarin ter attack em .shes somethin when shes roused Olympe .Fiery yeh know .spect its the French in her .Hagrid gazed mistyeyed into the fire .Harry allowed him thirty seconds reminiscence before clearing his throat loudly .So what happened ?Did you ever get near any of the other giants ?What ?Oh .oh yeah we did .Yeah on the third night after Karkus was killed we crept outta the cave wed bin hidin in and headed back down inter the gully keepin our eyes skinned fer the Death Eaters .Got inside a few o the caves no go then in abou the sixth one we found three giants hidin .Cave mustve been cramped said Ron .Wasn room ter swing a kneazle said Hagrid .Didnt they attack you when they saw you ?asked Hermione .Probably woulda done if theyd bin in any condition said Hagrid but they was badly hurt all three o them .Golgomaths lot had beaten em unconscious theyd woken up an crawled inter the nearest shelter they could find .Anyway one o them had a bit of English an e translated fer the others an what we had ter say didn seem ter go down too badly .So we kep goin back visitin the wounded .I reckon we had abou six or seven o them convinced at one poin .Six or seven ?said Ron eagerly .Well thats not bad are they going to come over here and start fighting YouKnowWho with us ?But Hermione said What do you mean ‘at one point Hagrid ?Hagrid looked at her sadly .Golgomaths lot raided the caves .The ones tha survived didn wan no more ter to do with us after that .So .so there arent any giants coming ?said Ron looking disappointed .Nope said Hagrid heaving a deep sigh as he turned over his steak again and applied the cooler side to his face but we did wha we meant ter do we gave em Dumbledores message an some o them heard it an I spect some o themll remember it .Jus maybe them that don want ter stay around Golgomathll move outta the mountains an theres gotta be a chance theyll remember Dumbledores friendly to em .Could be theyll come .Snow was filling up the window now .Harry became aware that the knees of his robes were soaked through Fang was drooling with his head in Harrys lap .Hagrid ?said Hermione quietly after a while .Mmm ?Did you .was there any sign of .did you hear anything about your .your .mother while you were there ?Hagrids unobscured eye rested upon her and Hermione looked rather scared .Im sorry .I .forget it Dead Hagrid grunted .Died years ago .They told me .Oh .Im .Im really sorry said Hermione in a very small voice .Hagrid shrugged his massive shoulders .No need he said shortly .Can remember her much .Wasn a great mother .They were silent again .Hermione glanced nervously at Harry and Ron plainly wanting them to speak .But you still havent explained how you got in this state Hagrid Ron said gesturing toward Hagrids bloodstained face .Or why youre back so late said Harry .Sirius says Madame Maxime got back ages ago Who attacked you ?said Ron .I haven bin attacked !said Hagrid emphatically .I But the rest of his words were drowned in a sudden outbreak of rapping on the door .Hermione gasped her mug slipped through her fingers and smashed on the floor Fang yelped .All four of them stared at the window beside the doorway .The shadow of somebody small and squat rippled across the thin curtain .Its her Ron whispered .Get under here !Harry said quickly seizing the Invisibility Cloak he whirled it over himself and Hermione while Ron tore around the table and dived beneath the cloak as well .Huddled together they backed away into a corner .Fang was barking madly at the door .Hagrid looked thoroughly confused .Hagrid hide our mugs !Hagrid seized Harrys and Rons mugs and shoved them under the cushion in Fangs basket .Fang was now leaping up at the door Hagrid pushed him out of the way with his foot and pulled it open .Professor Umbridge was standing in the doorway wearing her green tweed cloak and a matching hat with earflaps .Lips pursed she leaned back so as to see Hagrids face she barely reached his navel .So she said slowly and loudly as though speaking to somebody deaf .Youre Hagrid are you ?Without waiting for an answer she strolled into the room her bulging eyes rolling in every direction .Get away she snapped waving her handbag at Fang who had bounded up to her and was attempting to lick her face .Er I don want ter be rude said Hagrid staring at her but who the ruddy hell are you ?My name is Dolores Umbridge .Her eyes were sweeping the cabin .Twice they stared directly into the corner where Harry stood sandwiched between Ron and Hermione .Dolores Umbridge ?Hagrid said sounding thoroughly confused .I thought you were one o them Ministry don you work with Fudge ?I was Senior Undersecretary to the Minister yes said Umbridge now pacing around the cabin taking in every tiny detail within from the haversack against the wall to the abandoned traveling cloak .I am now the Defense Against the Dark Arts teacher Thas brave of yeh said Hagrid theres not manyd take tha job anymore and Hogwarts High Inquisitor said Umbridge giving no sign that she had heard him .Whas that ?said Hagrid frowning .Precisely what I was going to ask said Umbridge pointing at the broken shards of china on the floor that had been Hermiones mug .Oh said Hagrid with a most unhelpful glance toward the corner where Harry Ron and Hermione stood hidden oh tha was .was Fang .He broke a mug .So I had ter use this one instead .Hagrid pointed to the mug from which he had been drinking one hand still clamped over the dragon steak pressed to his eye .Umbridge stood facing him now taking in every detail of his appearance instead of the cabins .I heard voices she said quietly .I was talkin ter Fang said Hagrid stoutly .And was he talking back to you ?Well .in a manner o speakin said Hagrid looking uncomfortable .I sometimes say Fangs near enough human There are three sets of footprints in the snow leading from the castle doors to your cabin said Umbridge sleekly .Hermione gasped Harry clapped a hand over her mouth .Luckily Fang was sniffing loudly around the hem of Professor Umbridges robes and she did not appear to have heard .Well I ony jus got back said Hagrid waving an enormous hand at the haversack .Maybe someone came ter call earlier an I missed em .There are no footsteps leading away from your cabin door .Well I .I don know why thatd be .said Hagrid tugging nervously at his beard and again glancing toward the corner where Harry Ron and Hermione stood as though asking for help .Erm .Umbridge wheeled around and strode the length of the cabin looking around carefully .She bent and peered under the bed .She opened Hagrid s cupboards .She passed within two inches of where Harry Ron and Hermione stood pressed against the wall Harry actually pulled in his stomach as she walked by .After looking carefully inside the enormous cauldron Hagrid used for cooking she wheeled around again and said What has happened to you ?How did you sustain those injuries ?Hagrid hastily removed the dragon steak from his face which in Harrys opinion was a mistake because the blackandpurple bruising all around his eye was now clearly visible not to mention the large amount of fresh and congealed blood on his face .Oh I .had a bit of an accident he said lamely .What sort of accident ?II tripped .You tripped she repeated coolly .Yeah thas right .Over .over a friends broomstick .I don fly meself .Well look at the size o me I don reckon theres a broomstick thatd hold me .Friend o mine breeds Abraxan horses I dunno if youve ever seen em big beasts winged yeh know Ive had a bit of a ride on one o them an it was Where have you been ?asked Umbridge cutting coolly through Hagrids babbling .Where ve I . ?Been yes she said .Term started more than two months ago .Another teacher has had to cover your classes .None of your colleagues has been able to give me any information as to your whereabouts .You left no address .Where have you been ?There was a pause in which Hagrid stared at her with his newly uncovered eye .Harry could almost hear his brain working furiously .I Ive been away for me health he said .For your health said Umbridge .Her eyes traveled over Hagrids discolored and swollen face dragon blood dripped gently onto his waistcoat in the silence .I see .Yeah said Hagrid bit o o fresh air yeh know Yes as gamekeeper fresh air must be so difficult to come by said Umbridge sweetly .The small patch of Hagrids face that was not black or purple flushed .Well change o scene yeh know Mountain scenery ?said Umbridge swiftly .She knows Harry thought desperately .Mountains ?Hagrid repeated clearly thinking fast .Nope South of France fer me .Bit o sun an .an sea .Really ?said Umbridge .You dont have much of a tan .Yeah .well .sensitive skin said Hagrid attempting an ingratiating smile .Harry noticed that two of his teeth had been knocked out .Umbridge looked at him coldly his smile faltered .Then she hoisted her handbag a little higher into the crook of her arm and said I shall of course be informing the Minister of your late return .Righ said Hagrid nodding .You ought to know too that as High Inquisitor it is my unfortunate but necessary duty to inspect my fellow teachers .So I daresay we shall meet again soon enough .She turned sharply and marched back to the door .Youre inspectin us ?Hagrid echoed blankly looking after her .Oh yes said Umbridge softly looking back at him with her hand on the door handle .The Ministry is determined to weed out unsatisfactory teachers Hagrid .Good night .She left closing the door behind her with a snap .Harry made to pull off the Invisibility Cloak but Hermione seized his wrist .Not yet she breathed in his ear .She might not be gone yet .Hagrid seemed to be thinking the same way he stumped across the room and pulled back the curtain an inch or so .Shes goin back ter the castle he said in a low voice .Blimey .inspectin people is she ?Yeah said Harry pulling the cloak off .Trelawneys on probation already .Um .what sort of thing are you planning to do with us in class Hagrid ?asked Hermione .Oh don you worry abou that Ive got a great load o lessons planned said Hagrid enthusiastically scooping up his dragon steak from the table and slapping it over his eye again .Ive bin keepin a couple o creatures saved fer yer O .W .L .year you wait theyre somethin really special .Erm .special in what way ?asked Hermione tentatively .Im not sayin said Hagrid happily .I don want ter spoil the surprise .Look Hagrid said Hermione urgently dropping all pretense Professor Umbridge wont be at all happy if you bring anything to class thats too dangerous Dangerous ?said Hagrid looking genially bemused .Don be silly I wouldn give yeh anythin dangerous !I mean all righ they can look after themselves Hagrid youve got to pass Umbridges inspection and to do that it would really be better if she saw you teaching us how to look after porlocks how to tell the difference between knarls and hedgehogs stuff like that !said Hermione earnestly .But thas not very interestin Hermione said Hagrid .The stuff Ive gots much more impressive Ive bin bringin em on fer years I reckon Ive got the ony domestic herd in Britain Hagrid .please .said Hermione a note of real desperation in her voice .Umbridge is looking for any excuse to get rid of teachers she thinks are too close to Dumbledore .Please Hagrid teach us something dull thats bound to come up in our O .W .L .But Hagrid merely yawned widely and cast a oneeyed look of longing toward the vast bed in the corner .Lisen its bin a long day an its late he said patting Hermione gently on the shoulder so that her knees gave way and hit the floor with a thud .Oh sorry He pulled her back up by the neck of her robes .Look don you go worryin abou me I promise yeh Ive got really good stuff planned fer yer lessons now Im back .Now you lot had better get back up to the castle an don forget ter wipe yer footprints out behind yeh !I dunno if you got through to him said Ron a short while later when having checked that the coast was clear they walked back up to the castle through the thickening snow leaving no trace behind them due to the Obliteration Charm Hermione was performing as they went .Then Ill go back again tomorrow said Hermione determinedly .Ill plan his lessons for him if I have to .I dont care if she throws out Trelawney but shes not taking Hagrid !THE EYE OF THE SNAKE Hermione plowed her way back to Hagrids cabin through two feet of snow on Sunday morning .Harry and Ron wanted to go with her but their mountain of homework had reached an alarming height again so they grudgingly remained in the common room trying to ignore the gleeful shouts drifting up from the grounds outside where students were enjoying themselves skating on the frozen lake tobogganing and worst of all bewitching snowballs to zoom up to Gryffindor Tower and rap hard on the windows .Oy !bellowed Ron finally losing patience and sticking his head out of the window I am a prefect and if one more snowball hits this window OUCH !He withdrew his head sharply his face covered in snow .Its Fred and George he said bitterly slamming the window behind him .Gits .Hermione returned from Hagrids just before lunch shivering slightly her robes damp to the knees .So ?said Ron looking up when she entered .Got all his lessons planned for him ?Well I tried she said dully sinking into a chair beside Harry .She pulled out her wand and gave it a complicated little wave so that hot air streamed out of the tip she then pointed this at her robes which began to steam as they dried out .He wasnt even there when I arrived I was knocking for at least half an hour .And then he came stumping out of the forest Harry groaned .The Forbidden Forest was teeming with the kind of creatures most likely to get Hagrid the sack .Whats he keeping in there ?Did he say ?asked Harry .No said Hermione miserably .He says he wants them to be a surprise .I tried to explain about Umbridge but he just doesnt get it .He kept saying nobody in their right mind would rather study knarls than chimaeras oh I dont think hes got a chimaera she added at the appalled look on Harry and Rons faces but thats not for lack of trying from what he said about how hard it is to get eggs .I dont know how many times I told him hed be better off following GrubblyPlanks plan I honestly dont think he listened to half of what I said .Hes in a bit of a funny mood you know .He still wont say how he got all those injuries .Hagrids reappearance at the staff table at breakfast next day was not greeted by enthusiasm from all students .Some like Fred George and Lee roared with delight and sprinted up the aisle between the Gryffindor and Hufflepuff tables to wring Hagrids enormous hand others like Parvati and Lavender exchanged gloomy looks and shook their heads .Harry knew that many of them preferred Professor Grubbly Planks lessons and the worst of it was that a very small unbiased part of him knew that they had good reason GrubblyPlanks idea of an interesting class was not one where there was a risk that somebody might have their head ripped off .It was with a certain amount of apprehension that Harry Ron and Hermione headed down to Hagrids on Tuesday heavily muffled against the cold .Harry was worried not only about what Hagrid might have decided to teach them but also about how the rest of the class particularly Malfoy and his cronies would behave if Umbridge was watching them .However the High Inquisitor was nowhere to be seen as they struggled through the snow toward Hagrid who stood waiting for them on the edge of the forest .He did not present a reassuring sight the bruises that had been purple on Saturday night were now tinged with green and yellow and some of his cuts still seemed to be bleeding .Harry could not understand this Had Hagrid perhaps been attacked by some creature whose venom prevented the wounds it inflicted from healing ?As though to complete the ominous picture Hagrid was carrying what looked like half a dead cow over his shoulder .Were workin in here today !Hagrid called happily to the approaching students jerking his head back at the dark trees behind him .Bit more sheltered !Anyway they prefer the dark .What prefers the dark ?Harry heard Malfoy say sharply to Crabbe and Goyle a trace of panic in his voice .What did he say prefers the dark did you hear ?Harry remembered the only occasion on which Malfoy had entered the forest before now he had not been very brave then either .He smiled to himself after the Quidditch match anything that caused Malfoy discomfort was all right with him .Ready ?said Hagrid happily looking around at the class .Right well Ive bin savin a trip inter the forest fer yer fifth year .Thought wed go an see these creatures in their natural habitat .Now what were studyin today is pretty rare I reckon Im probably the ony person in Britain whos managed ter train em And youre sure theyre trained are you ?said Malfoy the panic in his voice even more pronounced now .Only it wouldnt be the first time youd brought wild stuff to class would it ?The Slytherins murmured agreement and a few Gryffindors looked as though they thought Malfoy had a fair point too .Course theyre trained said Hagrid scowling and hoisting the dead cow a little higher on his shoulder .So what happened to your face then ?demanded Malfoy .Mind yer own business !said Hagrid angrily .Now if yehve finished askin stupid questions follow me !He turned and strode straight into the forest .Nobody seemed much disposed to follow .Harry glanced at Ron and Hermione who sighed but nodded and the three of them set off after Hagrid leading the rest of the class .They walked for about ten minutes until they reached a place where the trees stood so closely together that it was as dark as twilight and there was no snow on the ground at all .Hagrid deposited his half a cow with a grunt on the ground stepped back and turned to face his class again most of whom were creeping toward him from tree to tree peering around nervously as though expecting to be set upon at any moment .Gather roun gather roun said Hagrid encouragingly .Now theyll be attracted by the smell o the meat but Im goin ter give em a call anyway cause theyll like ter know its me .He turned shook his shaggy head to get the hair out of his face and gave an odd shrieking cry that echoed through the dark trees like the call of some monstrous bird .Nobody laughed most of them looked too scared to make a sound .Hagrid gave the shrieking cry again .A minute passed in which the class continued to peer nervously over their shoulders and around trees for a first glimpse of whatever it was that was coming .And then as Hagrid shook his hair back for a third time and expanded his enormous chest Harry nudged Ron and pointed into the black space between two gnarled yew trees .A pair of blank white shining eyes were growing larger through the gloom and a moment later the dragonish face neck and then skeletal body of a great black winged horse emerged from the darkness .It looked around at the class for a few seconds swishing its long black tail then bowed its head and began to tear flesh from the dead cow with its pointed fangs .A great wave of relief broke over Harry .Here at last was proof that he had not imagined these creatures that they were real Hagrid knew about them too .He looked eagerly at Ron but Ron was still staring around into the trees and after a few seconds he whispered Why doesnt Hagrid call again ?Most of the rest of the class were wearing expressions as confused and nervously expectant as Rons and were still gazing everywhere but at the horse standing feet from them .There were only two other people who seemed to be able to see them a stringy Slytherin boy standing just behind Goyle was watching the horse eating with an expression of great distaste on his face and Neville whose eyes were following the swishing progress of the long black tail .Oh an here comes another one !said Hagrid proudly as a second black horse appeared out of the dark trees folded its leathery wings closer to its body and dipped its head to gorge on the meat .Now .put yer hands up who can see em ?Immensely pleased to feel that he was at last going to understand the mystery of these horses Harry raised his hand .Hagrid nodded at him .Yeah .yeah I knew youd be able ter Harry he said seriously .An you too Neville eh ?An Excuse me said Malfoy in a sneering voice but what exactly are we supposed to be seeing ?For answer Hagrid pointed at the cow carcass on the ground .The whole class stared at it for a few seconds then several people gasped and Parvati squealed .Harry understood why Bits of flesh stripping themselves away from the bones and vanishing into thin air had to look very odd indeed .Whats doing it ?Parvati demanded in a terrified voice retreating behind the nearest tree .Whats eating it ?Thestrals said Hagrid proudly and Hermione gave a soft oh !of comprehension at Harrys shoulder .Hogwarts has got a whole herd of em in here .Now who knows ?But theyre really really unlucky !interrupted Parvati looking alarmed .Theyre supposed to bring all sorts of horrible misfortune on people who see them .Professor Trelawney told me once No no no said Hagrid chuckling thas jus superstition that is they aren unlucky theyre dead clever an useful !Course this lot don get a lot o work its mainly jus pullin the school carriages unless Dumbledores takin a long journey an don want ter Apparate an heres another couple look Two more horses came quietly out of the trees one of them passing very close to Parvati who shivered and pressed herself closer to the tree saying I think I felt something I think its near me !Don worry it won hurt yeh said Hagrid patiently .Righ now who can tell me why some o you can see them an some cant ?Hermione raised her hand .Go on then said Hagrid beaming at her .The only people who can see thestrals she said are people who have seen death .Thas exactly right said Hagrid solemnly ten points ter Gryffindor .Now thestrals Hem hem .Professor Umbridge had arrived .She was standing a few feet away from Harry wearing her green hat and cloak again her clipboard at the ready .Hagrid who had never heard Umbridge s fake cough before was gazing in some concern at the closest thestral evidently under the impression that it had made the sound .Hem hem .Oh hello !Hagrid said smiling having located the source of the noise .You received the note I sent to your cabin this morning ?said Umbridge in the same loud slow voice she had used with him earlier as though she was addressing somebody both foreign and very slow .Telling you that I would be inspecting your lesson ?Oh yeah said Hagrid brightly .Glad yeh found the place all righ !Well as you can see or I dunno can you ?Were doin thestrals today Im sorry ?said Umbridge loudly cupping her hand around her ear and frowning .What did you say ?Hagrid looked a little confused .Er thestralsl he said loudly .Big er winged horses yeh know !He flapped his gigantic arms hopefully .Professor Umbridge raised her eyebrows at him and muttered as she made a note on her clipboard ‘has .to .resort .to .crude .sign .language Well .anyway .said Hagrid turning back to the class and looking slightly flustered .Erm .what was I sayin ? ‘Appears .to .have .poor .short .term .memory muttered Umbridge loudly enough for everyone to hear her .Draco Malfoy looked as though Christmas had come a month early Hermione on the other hand had turned scarlet with suppressed rage .Oh yeah said Hagrid throwing an uneasy glance at Umbridges clipboard but plowing on valiantly .Yeah I was gonna tell yeh how come we got a herd .Yeah so we started off with a male an five females .This one he patted the first horse to have appeared name o Tenebrus hes my special favorite firs one born here in the forest Are you aware Umbridge said loudly interrupting him that the Ministry of Magic has classified thestrals as ‘dangerous ?Harrys heart sank like a stone but Hagrid merely chuckled .Thestrals aren dangerous !All righ they might take a bite outta you if yeh really annoy them ‘Shows .signs .of .pleasure .at .idea .of .violence . ‘ muttered Umbridge scribbling on her clipboard again .No come on !said Hagrid looking a little anxious now .I mean a dogll bite if yeh bait it won it but thestrals have jus got a bad reputation because o the death thing people used ter think they were bad omens didn they ?Jus didn understand did they ?Umbridge did not answer she finished writing her last note then looked up at Hagrid and said again very loudly and slowly Please continue teaching as usual .I am going to walk she mimed walking Malfoy and Pansy Parkinson were having silent fits of laughter among the students she pointed around at individual members of the class and ask them questions .She pointed at her mouth to indicate talking .Hagrid stared at her clearly at a complete loss to understand why she was acting as though he did not understand normal English .Hermione had tears of fury in her eyes now .You hag you evil hag !she whispered as Umbridge walked toward Pansy Parkinson .I know what youre doing you awful twisted vicious Erm .anyway said Hagrid clearly struggling to regain the flow of his lesson so thestrals .Yeah .Well theres loads o good stuff abou them .Do you find said Professor Umbridge in a ringing voice to Pansy Parkinson that you are able to understand Professor Hagrid when he talks ?Just like Hermione Pansy had tears in her eyes but these were tears of laughter indeed her answer was almost incoherent because she was trying to suppress her giggles .No .because .well .it sounds .like grunting a lot of the time .Umbridge scribbled on her clipboard .The few unbruised bits of Hagrid s face flushed but he tried to act as though he had not heard Pansys answer .Er .yeah .good stuff abou thestrals .Well once theyre tamed like this lot yehll never be lost again . ‘Mazin senses o direction jus tell em where yeh want ter go Assuming they can understand you of course said Malfoy loudly and Pansy Parkinson collapsed in a fit of renewed giggles .Professor Umbridge smiled indulgently at them and then turned to Neville .You can see the thestrals Longbottom can you ?she said .Neville nodded .Whom did you see die ?she asked her tone indifferent .My .my grandad said Neville .And what do you think of them ?she said waving her stubby hand at the horses who by now had stripped a great deal of the carcass down to bone .Erm said Neville nervously with a glance at Hagrid .Well theyre .er .okay . ‘Students .are .too .intimidated .to .admit .they .are .frightened .muttered Umbridge making another note on her clipboard .No !said Neville looking upset no Im not scared of them !Its quite all right said Umbridge patting Neville on the shoulder with what she evidently intended to be an understanding smile though it looked more like a leer to Harry .Well Hagrid she turned to look up at him again speaking once more in that loud slow voice I think Ive got enough to be getting along with .You will receive she mimed taking something from the air in front of her the results of your inspection she pointed at the clipboard in ten days time .She held up ten stubby little fingers then her smile wider and more toadlike than ever before beneath her green hat she bustled from their midst leaving Malfoy and Pansy Parkinson in fits of laughter Hermione actually shaking with fury and Neville looking confused and upset .That foul lying twisting old gargoyle !stormed Hermione half an hour later as they made their way back up to the castle through the channels they had made earlier in the snow .You see what shes up to ?Its her thing about halfbreeds all over again shes trying to make out Hagrids some kind of dimwitted troll just because he had a giantess for a mother and oh its not fair that really wasnt a bad lesson at all I mean all right if it had been BlastEnded Skrewts again but thestrals are fine in fact for Hagrid theyre really good !Umbridge said theyre dangerous said Ron .Well its like Hagrid said they can look after themselves said Hermione impatiently and I suppose a teacher like GrubblyPlank wouldnt usually show them to us before N .E .W .T .level but well they are very interesting arent they ?The way some people can see them and some cant !I wish I could .Do you ?Harry asked her quietly .She looked horrorstruck .Oh Harry Im sorry no of course I dont that was a really stupid thing to say Its okay he said quickly dont worry .Im surprised so many people could see them said Ron .Three in a class Yeah Weasley we were just wondering said a malicious voice nearby .Unheard by any of them in the muffling snow Malfoy Crabbe and Goyle were walking along right behind them .Dyou reckon if you saw someone snuff it youd be able to see the Quaffle better ?He Crabbe and Goyle roared with laughter as they pushed past on their way to the castle and then broke into a chorus of Weasley Is Our King .Rons ears turned scarlet .Ignore them just ignore them intoned Hermione pulling out her wand and performing the charm to produce hot air again so that she could melt them an easier path through the untouched snow between them and the greenhouses .December arrived bringing with it more snow and a positive avalanche of homework for the fifth years .Ron and Hermione s prefect duties also became more and more onerous as Christmas approached .They were called upon to supervise the decoration of the castle You try putting up tinsel when Peeves has got the other end and is trying to strangle you with it said Ron to watch over first and second years spending their break times inside because of the bitter cold And theyre cheeky little snotrags you know we definitely werent that rude when we were in first year said Ron and to patrol the corridors in shifts with Argus Filch who suspected that the holiday spirit might show itself in an outbreak of wizard duels Hes got dung for brains that one said Ron furiously .They were so busy that Hermione had stopped knitting elf hats and was fretting that she was down to her last three .All those poor elves I havent set free yet having to stay over during Christmas because there arent enough hats !Harry who had not had the heart to tell her that Dobby was taking everything she made bent lower over his History of Magic essay .In any case he did not want to think about Christmas .For the first time in his school career he very much wanted to spend the holidays away from Hogwarts .Between his Quidditch ban and worry about whether or not Hagrid was going to be put on probation he felt highly resentful toward the place at the moment .The only thing he really looked forward to were the D .A .meetings and they would have to stop over the holidays as nearly everybody in the D .A .would be spending the time with their families .Hermione was going skiing with her parents something that greatly amused Ron who had never before heard of Muggles strapping narrow strips of wood to their feet to slide down mountains .Ron meanwhile was going home to the Burrow .Harry endured several days of jealousy before Ron said in response to Harry asking how Ron was going to get home for Christmas But youre coming too !Didnt I say ?Mum wrote and told me to invite you weeks ago !Hermione rolled her eyes but Harrys spirits soared The thought of Christmas at the Burrow was truly wonderful only slightly marred by Harrys guilty feeling that he would not be able to spend the holiday with Sirius .He wondered whether he could possibly persuade Mrs Weasley to invite his godfather for the festivities too but apart from the fact that he doubted whether Dumbledore would permit Sirius to leave Grimmauld Place he could not help but feel that Mrs Weasley might not want him they were so often at loggerheads .Sirius had not contacted Harry at all since his last appearance in the fire and although Harry knew that with Umbridge on the constant watch it would be unwise to attempt to contact him he did not like to think of Sirius alone in his mothers old house perhaps pulling a lonely cracker with Kreacher .Harry arrived early in the Room of Requirement for the last D .A .meeting before the holidays and was very glad he had because when the lamps burst into light he saw that Dobby had taken it upon himself to decorate the place for Christmas .He could tell the elf had done it because nobody else would have strung a hundred golden baubles from the ceiling each showing a picture of Harrys face and bearing the legend HAVE A VERY HARRY CHRISTMAS !Harry had only just managed to get the last of them down before the door creaked open and Luna Lovegood entered looking dreamy as always .Hello she said vaguely looking around at what remained of the decorations .These are nice did you put them up ?No said Harry it was Dobby the houseelf .Mistletoe said Luna dreamily pointing at a large clump of white berries placed almost over Harrys head .He jumped out from under it .Good thinking said Luna very seriously .Its often infested with nargles .Harry was saved the necessity of asking what nargles were by the arrival of Angelina Katie and Alicia .All three of them were breathless and looked very cold .Well said Angelina dully pulling off her cloak and throwing it into a corner weve replaced you .Replaced me ?said Harry blankly .You and Fred and George she said impatiently .Weve got another Seeker !Who ?said Harry quickly .Ginny Weasley said Katie .Harry gaped at her .Yeah I know said Angelina pulling out her wand and flexing her arm .But shes pretty good actually .Nothing on you of course she said throwing him a very dirty look but as we cant have you .Harry bit back the retort he was longing to utter Did she imagine for a second that he did not regret his expulsion from the team a hundred times more than she did ?And what about the Beaters ?he asked trying to keep his voice even .Andrew Kirke said Alicia without enthusiasm and Jack Sloper .Neither of them are brilliant but compared with the rest of the idiots who turned up The arrival of Ron Hermione and Neville brought this depressing discussion to an end and within five minutes the room was full enough to prevent him seeing Angelinas burning reproachful looks .Okay he said calling them all to order .I thought this evening we should just go over the things weve done so far because its the last meeting before the holidays and theres no point starting anything new right before a threeweek break Were not doing anything new ?said Zacharias Smith in a disgruntled whisper loud enough to carry through the room .If Id known that I wouldnt have come .Were all really sorry Harry didnt tell you then said Fred loudly .Several people sniggered .Harry saw Cho laughing and felt the familiar swooping sensation in his stomach as though he had missed a step going downstairs .We can practice in pairs said Harry .Well start with the Impediment Jinx just for ten minutes then we can get out the cushions and try Stunning again .They all divided up obediently Harry partnered Neville as usual .The room was soon full of intermittent cries of Impedimental People froze for a minute or so during which their partners would stare aimlessly around the room watching other pairs at work then would unfreeze and take their turn at the jinx .Neville had improved beyond all recognition .After a while when Harry had unfrozen three times in a row he had Neville join Ron and Hermione again so that he could walk around the room and watch the others .When he passed Cho she beamed at him he resisted the temptation to walk past her several more times .After ten minutes on the Impediment Jinx they laid out cushions all over the floor and started practicing Stunning again .Space was really too confined to allow them all to work this spell at once half the group observed the others for a while then swapped over .Harry felt himself positively swelling with pride as he watched them all .True Neville did Stun Padma Patil rather than Dean at whom he had been aiming but it was a much closer miss than usual and everybody else had made enormous progress .At the end of an hour Harry called a halt .Youre getting really good he said beaming around at them .When we get back from the holidays we can start doing some of the big stuff maybe even Patronuses .There was a murmur of excitement .The room began to clear in the usual twos and threes most people wished Harry a Happy Christmas as they went .Feeling cheerful he collected up the cushions with Ron and Hermione and stacked them neatly away .Ron and Hermione left before he did he hung back a little because Cho was still there and he was hoping to receive a Merry Christmas from her .No you go on he heard her say to her friend Marietta and his heart gave a jolt that seemed to take it into the region of his Adams apple .He pretended to be straightening the cushion pile .He was quite sure they were alone now and waited for her to speak .Instead he heard a hearty sniff .He turned and saw Cho standing in the middle of the room tears pouring down her face .Wha ?He didnt know what to do .She was simply standing there crying silently .Whats up ?he said feebly .She shook her head and wiped her eyes on her sleeve .Im sorry she said thickly .I suppose .its just .learning all this stuff .It just makes me .wonder whether .if hed known it all .hed still be alive .Harrys heart sank right back past its usual spot and settled somewhere around his navel .He ought to have known .She wanted to talk about Cedric .He did know this stuff Harry said heavily .He was really good at it or he could never have got to the middle of that maze .But if Voldemort really wants to kill you you dont stand a chance .She hiccuped at the sound of Voldemorts name but stared at Harry without flinching .You survived when you were just a baby she said quietly .Yeah well said Harry wearily moving toward the door I dunno why nor does anyone else so its nothing to be proud of .Oh dont go !said Cho sounding tearful again .Im really sorry to get all upset like this .I didnt mean to .She hiccuped again .She was very pretty even when her eyes were red and puffy .Harry felt thoroughly miserable .Hed have been so pleased just with a Merry Christmas .I know it must be horrible for you she said mopping her eyes on her sleeve again .Me mentioning Cedric when you saw him die .I suppose you just want to forget about it .Harry did not say anything to this it was quite true but he felt heartless saying it .Youre a rreally good teacher you know said Cho with a watery smile .Ive never been able to Stun anything before .Thanks said Harry awkwardly .They looked at each other for a long moment .Harry felt a burning desire to run from the room and at the same time a complete inability to move his feet .Mistletoe said Cho quietly pointing at the ceiling over his head .Yeah said Harry .His mouth was very dry .Its probably full of nargles though .What are nargles ?No idea said Harry .She had moved closer .His brain seemed to have been Stunned .Youd have to ask Loony .Luna I mean .Cho made a funny noise halfway between a sob and a laugh .She was even nearer him now .He could have counted the freckles on her nose .I really like you Harry .He could not think .A tingling sensation was spreading throughout him paralyzing his arms legs and brain .She was much too close .He could see every tear clinging to her eyelashes .He returned to the common room half an hour later to find Hermione and Ron in the best seats by the fire nearly everybody else had gone to bed .Hermione was writing a very long letter she had already filled half a roll of parchment which was dangling from the edge of the table .Ron was lying on the hearthrug trying to finish his Transfiguration homework .What kept you ?he asked as Harry sank into the armchair next to Hermione s .Harry did not answer .He was in a state of shock .Half of him wanted to tell Ron and Hermione what had just happened but the other half wanted to take the secret with him to the grave .Are you all right Harry ?Hermione asked peering at him over the tip of her quill .Harry gave a halfhearted shrug .In truth he didnt know whether he was all right or not .Whats up ?said Ron hoisting himself up on his elbow to get a clearer view of Harry .Whats happened ?Harry didnt quite know how to set about telling them and still wasnt sure whether he wanted to .Just as he had decided not to say anything Hermione took matters out of his hands .Is it Cho ?she asked in a businesslike way .Did she corner you after the meeting ?Numbly surprised Harry nodded .Ron sniggered breaking off when Hermione caught his eye .So er what did she want ?he asked in a mock casual voice .She Harry began rather hoarsely he cleared his throat and tried again .She er Did you kiss ?asked Hermione briskly .Ron sat up so fast that he sent his ink bottle flying all over the rug .Disregarding this completely he stared avidly at Harry .Well ?he demanded .Harry looked from Rons expression of mingled curiosity and hilarity to Hermiones slight frown and nodded .HA !Ron made a triumphant gesture with his fist and went into a raucous peal of laughter that made several timidlooking second years over beside the window jump .A reluctant grin spread over Harrys face as he watched Ron rolling around on the hearthrug .Hermione gave Ron a look of deep disgust and returned to her letter .Well ?Ron said finally looking up at Harry .How was it ?Harry considered for a moment .Wet he said truthfully .Ron made a noise that might have indicated jubilation or disgust it was hard to tell .Because she was crying Harry continued heavily .Oh said Ron his smile fading slightly .Are you that bad at kissing ?Dunno said Harry who hadnt considered this and immediately felt rather worried .Maybe I am .Of course youre not said Hermione absently still scribbling away at her letter .How do you know ?said Ron in a sharp voice .Because Cho spends half her time crying these days said Hermione vaguely .She does it at mealtimes in the loos all over the place .Youd think a bit of kissing would cheer her up said Ron grinning .Ron said Hermione in a dignified voice dipping the point of her quill into her ink pot you are the most insensitive wart I have ever had the misfortune to meet .Whats that supposed to mean ?said Ron indignantly .What sort of person cries while someones kissing them ?Yeah said Harry slightly desperately who does ?Hermione looked at the pair of them with an almost pitying expression on her face .Dont you understand how Chos feeling at the moment ?she asked .No said Harry and Ron together .Hermione sighed and laid down her quill .Well obviously shes feeling very sad because of Cedric dying .Then I expect shes feeling confused because she liked Cedric and now she likes Harry and she cant work out who she likes best .Then shell be feeling guilty thinking its an insult to Cedrics memory to be kissing Harry at all and shell be worrying about what everyone else might say about her if she starts going out with Harry .And she probably cant work out what her feelings toward Harry are anyway because he was the one who was with Cedric when Cedric died so thats all very mixed up and painful .Oh and shes afraid shes going to be thrown off the Ravenclaw Quidditch team because shes been flying so badly .A slightly stunned silence greeted the end of this speech then Ron said One person cant feel all that at once theyd explode .Just because youve got the emotional range of a teaspoon doesnt mean we all have said Hermione nastily picking up her quill again .She was the one who started it said Harry .I wouldntve she just sort of came at me and next thing shes crying all over me I didnt know what to do Dont blame you mate said Ron looking alarmed at the very thought .You just had to be nice to her said Hermione looking up anxiously .You were werent you ?Well said Harry an unpleasant heat creeping up his face I sort of patted her on the back a bit .Hermione looked as though she was restraining herself from rolling her eyes with extreme difficulty .Well I suppose it could have been worse she said .Are you going to see her again ?Ill have to wont I ?said Harry .Weve got D .A .meetings havent we ?You know what I mean said Hermione impatiently .Harry said nothing .Hermione s words opened up a whole new vista of frightening possibilities .He tried to imagine going somewhere with Cho Hogsmeade perhaps and being alone with her for hours at a time .Of course she would have been expecting him to ask her out after what had just happened .The thought made his stomach clench painfully .Oh well said Hermione distantly buried in her letter once more youll have plenty of opportunities to ask her .What if he doesnt want to ask her ?said Ron who had been watching Harry with an unusually shrewd expression on his face .Dont be silly said Hermione vaguely Harrys liked her for ages havent you Harry ?He did not answer .Yes he had liked Cho for ages but whenever he had imagined a scene involving the two of them it had always featured a Cho who was enjoying herself as opposed to a Cho who was sobbing uncontrollably into his shoulder .Who re you writing the novel to anyway ?Ron asked Hermione trying to read the bit of parchment now trailing on the floor .Hermione hitched it up out of sight .Viktor .Krum ?How many other Viktors do we know ?Ron said nothing but looked disgruntled .They sat in silence for another twenty minutes Ron finishing his Transfiguration essay with many snorts of impatience and crossingsout Hermione writing steadily to the very end of the parchment rolling it up carefully and sealing it and Harry staring into the fire wishing more than anything that Siriuss head would appear there and give him some advice about girls .But the fire merely crackled lower and lower until the redhot embers crumbled into ash and looking around Harry saw that they were yet again the last in the common room .Well night said Hermione yawning widely and she set off up the girls staircase .What does she see in Krum ?Ron demanded as he and Harry climbed the boys stairs .Well said Harry considering the matter I spose hes older isnt he .and hes an international Quidditch player .Yeah but apart from that said Ron sounding aggravated .I mean hes a grouchy git isnt he ?Bit grouchy yeah said Harry whose thoughts were still on Cho .They pulled off their robes and put on pajamas in silence Dean Seamus and Neville were already asleep .Harry put his glasses on his bedside table and got into bed but did not pull the hangings closed around his fourposter instead he stared at the patch of starry sky visible through the window next to Nevilles bed .If he had known this time last night that in twentyfour hours time he would have kissed Cho Chang .Night grunted Ron from somewhere to his right .Night said Harry .Maybe next time .if there was a next time .shed be a bit happier .He ought to have asked her out she had probably been expecting it and was now really angry with him .or was she lying in bed still crying about Cedric ?He did not know what to think .Hermiones explanation had made it all seem more complicated rather than easier to understand .Thats what they should teach us here he thought turning over onto his side how girls brains work .itd be more useful than Divination anyway .Neville snuffled in his sleep .An owl hooted somewhere out in the night .Harry dreamed he was back in the D .A .room .Cho was accusing him of luring her there under false pretenses she said that he had promised her a hundred and fifty Chocolate Frog cards if she showed up .Harry protested .Cho shouted Cedric gave me loads of Chocolate Frog cards look And she pulled out fistfuls of cards from inside her robes and threw them into the air and then turned into Hermione who said You did promise her you know Harry .I think youd better give her something else instead .How about your Firebolt ?And Harry was protesting that he could not give Cho his Firebolt because Umbridge had it and anyway the whole thing was ridiculous hed only come to the D .A .room to put up some Christmas baubles shaped like Dobbys head .The dream changed .His body felt smooth powerful and flexible .He was gliding between shining metal bars across dark cold stone .He was flat against the floor sliding along on his belly .It was dark yet he could see objects around him shimmering in strange vibrant colors .He was turning his head .At first glance the corridor was empty .but no .a man was sitting on the floor ahead his chin drooping onto his chest his outline gleaming in the dark .Harry put out his tongue .He tasted the mans scent on the air .He was alive but drowsing .sitting in front of a door at the end of the corridor .Harry longed to bite the man .but he must master the impulse .He had more important work to do .But the man was stirring .a silvery cloak fell from his legs as he jumped to his feet and Harry saw his vibrant blurred outline towering above him saw a wand withdrawn from a belt .He had no choice .He reared high from the floor and struck once twice three times plunging his fangs deeply into the mans flesh feeling his ribs splinter beneath his jaws feeling the warm gush of blood .The man was yelling in pain .then he fell silent .He slumped backward against the wall .Blood was splattering onto the floor .His forehead hurt terribly .It was aching fit to burst .Harry !HARRY !He opened his eyes .Every inch of his body was covered in icy sweat his bedcovers were twisted all around him like a straitjacket he felt as though a whitehot poker was being applied to his forehead .Harryl Ron was standing over him looking extremely frightened .There were more figures at the foot of Harrys bed .He clutched his head in his hands the pain was blinding him .He rolled right over and vomited over the edge of the mattress .Hes really ill said a scared voice .Should we call someone ?Harry !Harryl He had to tell Ron it was very important that he tell him .Taking great gulps of air Harry pushed himself up in bed willing himself not to throw up again the pain halfblinding him .Your dad he panted his chest heaving .Your dads .been attacked .What ?said Ron uncomprehendingly .Your dad !Hes been bitten its serious there was blood everywhere .Im going for help said the same scared voice and Harry heard footsteps running out of the dormitory .Harry mate said Ron uncertainly you .you were just dreaming .No !said Harry furiously it was crucial that Ron understand .It wasnt a dream .not an ordinary dream .I was there I saw it .I did it .He could hear Seamus and Dean muttering but did not care .The pain in his forehead was subsiding slightly though he was still sweating and shivering feverishly .He retched again and Ron leapt backward out of the way .Harry youre not well he said shakily .Nevilles gone for help .Im fine !Harry choked wiping his mouth on his pajamas and shaking uncontrollably .Theres nothing wrong with me its your dad youve got to worry about we need to find out where he is hes bleeding like mad I was it was a huge snake .He tried to get out of bed but Ron pushed him back into it Dean and Seamus were still whispering somewhere nearby .Whether one minute passed or ten Harry did not know he simply sat there shaking feeling the pain recede very slowly from his scar .Then there were hurried footsteps coming up the stairs and he heard Nevilles voice again .Over here Professor .Professor McGonagall came hurrying into the dormitory in her tartan dressing gown her glasses perched lopsidedly on the bridge of her bony nose .What is it Potter ?Where does it hurt ?He had never been so pleased to see her it was a member of the Order of the Phoenix he needed now not someone fussing over him and prescribing useless potions .Its Rons dad he said sitting up again .Hes been attacked by a snake and its serious I saw it happen .What do you mean you saw it happen ?said Professor McGonagall her dark eyebrows contracting .I dont know .I was asleep and then I was there .You mean you dreamed this ?No !said Harry angrily .Would none of them understand ?I was having a dream at first about something completely different something stupid .and then this interrupted it .It was real I didnt imagine it Mr Weasley was asleep on the floor and he was attacked by a gigantic snake there was a load of blood he collapsed someones got to find out where he is .Professor McGonagall was gazing at him through her lopsided spectacles as though horrified at what she was seeing .Im not lying and Im not mad !Harry told her his voice rising to a shout .I tell you I saw it happen !I believe you Potter said Professor McGonagall curtly .Put on your dressinggown were going to see the headmaster .ST .MUNGOS HOSPITAL FOR MAGICAL MALADIES AND INJURIES Harry was so relieved that she was taking him seriously that he did not hesitate but jumped out of bed at once pulled on his dressing gown and pushed his glasses back onto his nose .Weasley you ought to come too said Professor McGonagall .They followed Professor McGonagall past the silent figures of Neville Dean and Seamus out of the dormitory down the spiral stairs into the common room through the portrait hole and off along the Fat Ladys moonlit corridor .Harry felt as though the panic inside him might spill over at any moment he wanted to run to yell for Dumbledore .Mr Weasley was bleeding as they walked along so sedately and what if those fangs Harry tried hard not to think my fangs had been poisonous ?They passed Mrs Norris who turned her lamplike eyes upon them and hissed faintly but Professor McGonagall said Shoo !Mrs Norris slunk away into the shadows and in a few minutes they had reached the stone gargoyle guarding the entrance to Dumbledores office .Fizzing Whizbee said Professor McGonagall .The gargoyle sprang to life and leapt aside the wall behind it split in two to reveal a stone staircase that was moving continuously upward like a spiral escalator .The three of them stepped onto the moving stairs the wall closed behind them with a thud and they were moving upward in tight circles until they reached the highly polished oak door with the brass knocker shaped like a griffin .Though it was now well past midnight there were voices coming from inside the room a positive babble of them .It sounded as though Dumbledore was entertaining at least a dozen people .Professor McGonagall rapped three times with the griffin knocker and the voices ceased abruptly as though someone had switched them all off .The door opened of its own accord and Professor McGonagall led Harry and Ron inside .The room was in half darkness the strange silver instruments standing on tables were silent and still rather than whirring and emitting puffs of smoke as they usually did .The portraits of old headmasters and headmistresses covering the walls were all snoozing in their frames .Behind the door a magnificent redandgold bird the size of a swan dozed on its perch with its head under its wing .Oh its you Professor McGonagall .and .ah .Dumbledore was sitting in a highbacked chair behind his desk he leaned forward into the pool of candlelight illuminating the papers laid out before him .He was wearing a magnificently embroidered purpleandgold dressing gown over a snowywhite nightshirt but seemed wide awake his penetrating lightblue eyes fixed intently upon Professor McGonagall .Professor Dumbledore Potter has had a .well a nightmare said Professor McGonagall .He says .It wasnt a nightmare said Harry quickly .Professor McGonagall looked around at Harry frowning slightly .Very well then Potter you tell the headmaster about it . ~ I .well I was asleep .said Harry and even in his terror and his desperation to make Dumbledore understand he felt slightly irritated that the headmaster was not looking at him but examining his own interlocked fingers .But it wasnt an ordinary dream .it was real .I saw it happen .He took a deep breath Rons dad Mr Weasley has been attacked by a giant snake .The words seemed to reverberate in the air after he had said them slightly ridiculous even comic .There was a pause in which Dumbledore leaned back and stared meditatively at the ceiling .Ron looked from Harry to Dumbledore whitefaced and shocked .How did you see this ?Dumbledore asked quietly still not looking at Harry .Well .I dont know said Harry rather angrily what did it matter ?Inside my head I suppose You misunderstand me said Dumbledore still in the same calm tone .I mean .can you remember er where you were positioned as you watched this attack happen ?Were you perhaps standing beside the victim or else looking down on the scene from above ?This was such a curious question that Harry gaped at Dumbledore it was almost as though he knew .I was the snake he said .I saw it all from the snakes point of view .Nobody else spoke for a moment then Dumbledore now looking at Ron who was still wheyfaced said in a new and sharper voice Is Arthur seriously injured ?Yes said Harry emphatically why were they all so slow on the uptake did they not realize how much a person bled when fangs that long pierced their side ?And why could Dumbledore not do him the courtesy of looking at him ?But Dumbledore stood up so quickly that Harry jumped and addressed one of the old portraits hanging very near the ceiling .Everard ?he said sharply .And you too Dilys !A sallowfaced wizard with short black bangs and an elderly witch with long silver ringlets in the frame beside him both of whom seemed to have been in the deepest of sleeps opened their eyes immediately .You were listening ?said Dumbledore .The wizard nodded the witch said Naturally .The man has red hair and glasses said Dumbledore .Everard you will need to raise the alarm make sure he is found by the right people Both nodded and moved sideways out of their frames but instead of emerging in neighboring pictures as usually happened at Hogwarts neither reappeared one frame now contained nothing but a backdrop of dark curtain the other a handsome leather armchair .Harry noticed that many of the other headmasters and mistresses on the walls though snoring and drooling most convincingly kept sneaking peeks at him under their eyelids and he suddenly understood who had been talking when they had knocked .Everard and Dilys were two of Hogwarts s most celebrated Heads Dumbledore said now sweeping around Harry Ron and Professor McGonagall and approaching the magnificent sleeping bird on his perch beside the door .Their renown is such that both have portraits hanging in other important Wizarding institutions .As they are free to move between their own portraits they can tell us what may be happening elsewhere .But Mr Weasley could be anywhere !said Harry .Please sit down all three of you said Dumbledore as though Harry had not spoken .Everard and Dilys may not be back for several minutes .Professor McGonagall if you could draw up extra chairs .Professor McGonagall pulled her wand from the pocket of her dressing gown and waved it three chairs appeared out of thin air straightbacked and wooden quite unlike the comfortable chintz armchairs that Dumbledore had conjured back at Harrys hearing .Harry sat down watching Dumbledore over his shoulder .Dumbledore was now stroking Fawkess plumed golden head with one finger .The phoenix awoke immediately .He stretched his beautiful head high and observed Dumbledore through bright dark eyes .We will need said Dumbledore very quietly to the bird a warning .There was a flash of fire and the phoenix had gone .Dumbledore now swooped down upon one of the fragile silver instruments whose function Harry had never known carried it over to his desk sat down facing them again and tapped it gently with the tip of his wand .The instrument tinkled into life at once with rhythmic clinking noises .Tiny puffs of pale green smoke issued from the minuscule silver tube at the top .Dumbledore watched the smoke closely his brow furrowed and after a few seconds the tiny puffs became a steady stream of smoke that thickened and coiled in the air .A serpents head grew out of the end of it opening its mouth wide .Harry wondered whether the instrument was confirming his story He looked eagerly at Dumbledore for a sign that he was right but Dumbledore did not look up .Naturally naturally murmured Dumbledore apparently to himself still observing the stream of smoke without the slightest sign of surprise .But in essence divided ?Harry could make neither head nor tail of this question .The smoke serpent however split itself instantly into two snakes both coiling and undulating in the dark air .With a look of grim satisfaction Dumbledore gave the instrument another gentle tap with his wand The clinking noise slowed and died and the smoke serpents grew faint became a formless haze and vanished .Dumbledore replaced the instrument upon its spindly little table Harry saw many of the old headmasters in the portraits follow him with their eyes then realizing that Harry was watching them hastily pretend to be sleeping again .Harry wanted to ask what the strange silver instrument was for but before he could do so there was a shout from the top of the wall to their right the wizard called Everard had reappeared in his portrait panting slightly .Dumbledore !What news ?said Dumbledore at once .I yelled until someone came running said the wizard who was mopping his brow on the curtain behind him said Id heard something moving downstairs they werent sure whether to believe me but went down to check you know there are no portraits down there to watch from .Anyway they carried him up a few minutes later .He doesnt look good hes covered in blood I ran along to Elfrida Craggs portrait to get a good view as they left Good said Dumbledore as Ron made a convulsive movement I take it Dilys will have seen him arrive then And moments later the silverringletted witch had reappeared in her picture too she sank coughing into her armchair and said Yes theyve taken him to St .Mungos Dumbledore .They carried him past under my portrait .He looks bad .Thank you said Dumbledore .He looked around at Professor McGonagall .Minerva I need you to go and wake the other Weasley children .Of course .Professor McGonagall got up and moved swiftly to the door Harry cast a sideways glance at Ron who was now looking terrified .And Dumbledore what about Molly ?said Professor McGonagall pausing at the door .That will be a job for Fawkes when he has finished keeping a lookout for anybody approaching said Dumbledore .But she may already know .that excellent clock of hers .Harry knew Dumbledore was referring to the clock that told not the time but the whereabouts and conditions of the various Weasley family members and with a pang he thought that Mr Weasleys hand must even now be pointing at mortal peril .But it was very late .Mrs Weasley was probably asleep not watching the clock .And he felt cold as he remembered Mrs Weasleys boggart turning into Mr Weasleys lifeless body his glasses askew blood running down his face .But Mr Weasley wasnt going to die .He couldnt .Dumbledore was now rummaging in a cupboard behind Harry and Ron .He emerged from it carrying a blackened old kettle which he placed carefully upon his desk .He raised his wand and murmured Portus for a moment the kettle trembled glowing with an odd blue light then it quivered to a rest as solidly black as ever .Dumbledore marched over to another portrait this time of a cleverlooking wizard with a pointed beard who had been painted wearing the Slytherin colors of green and silver and was apparently sleeping so deeply that he could not hear Dumbledore s voice when he attempted to rouse him .Phineas .Phineas .And now the subjects of the portraits lining the room were no longer pretending to be asleep they were shifting around in their frames the better to watch what was happening .When the cleverlooking wizard continued to feign sleep some of them shouted his name too .Phineas !Phineas !PHINEAS !He could not pretend any longer he gave a theatrical jerk and opened his eyes wide .Did someone call ?I need you to visit your other portrait again Phineas said Dumbledore .IVe got another message .Visit my other portrait ?said Phineas in a reedy voice giving a long fake yawn his eyes traveling around the room and focusing upon Harry .Oh no Dumbledore I am too tired tonight .Something about Phineas s voice was familiar to Harry .Where had he heard it before ?But before he could think the portraits on the surrounding walls broke into a storm of protest .Insubordination sir !roared a corpulent rednosed wizard brandishing his fists .Dereliction of duty !We are honorbound to give service to the present Headmaster of Hogwarts !cried a fraillooking old wizard whom Harry recognized as Dumbledores predecessor Armando Dippet .Shame on you Phineas !Shall I persuade him Dumbledore ?called a gimlet eyed witch raising an unusually thick wand that looked not unlike a birch rod .Oh very well said the wizard called Phineas eyeing this wand slightly apprehensively though he may well have destroyed my picture by now hes done most of the family Sirius knows not to destroy your portrait said Dumbledore and Harry realized immediately where he had heard Phineas s voice before issuing from the apparently empty frame in his bedroom in Grimmauld Place .You are to give him the message that Arthur Weasley has been gravely injured and that his wife children and Harry Potter will be arriving at his house shortly .Do you understand ?Arthur Weasley injured wife and children and Harry Potter coming to stay recited Phineas in a bored voice .Yes yes .very well .He sloped away into the frame of the portrait and disappeared from view at the very moment that the study door opened again .Fred George and Ginny were ushered inside by Professor McGonagall all three of them looking disheveled and shocked still in their night things .Harry whats going on ?asked Ginny who looked frightened .Professor McGonagall says you saw Dad hurt Your father has been injured in the course of his work for the Order of the Phoenix said Dumbledore before Harry could speak .He has been taken to St .Mungos Hospital for Magical Maladies and Injuries .I am sending you back to Siriuss house which is much more convenient for the hospital than the Burrow .You will meet your mother there .Howre we going ?asked Fred looking shaken .Floo powder ?No said Dumbledore Floo powder is not safe at the moment the Network is being watched .You will be taking a Portkey .He indicated the old kettle lying innocently on his desk .We are just waiting for Phineas Nigellus to report back .I wish to be sure that the coast is clear before sending you There was a flash of flame in the very middle of the office leaving behind a single golden feather that floated gently to the floor .It is Fawkess warning said Dumbledore catching the feather as it fell .She must know youre out of your beds .Minerva go and head her off tell her any story Professor McGonagall was gone in a swish of tartan .He says hell be delighted said a bored voice behind Dumbledore the wizard called Phineas had reappeared in front of his Slytherin banner .My greatgreatgrandson has always had odd taste in houseguests .Come here then Dumbledore said to Harry and the Weasleys .And quickly before anyone else joins us Harry and the others gathered around Dumbledores desk .You have all used a Portkey before ?asked Dumbledore and they nodded each reaching out to touch some part of the blackened kettle .Good .On the count of three then .one .two .It happened in a fraction of a second In the infinitesimal pause before Dumbledore said three Harry looked up at him they were very close together and Dumbledores clear blue gaze moved from the Portkey to Harrys face .At once Harrys scar burned whitehot as though the old wound had burst open again and unbidden unwanted but terrifyingly strong there rose within Harry a hatred so powerful he felt for that instant that he would like nothing better than to strike to bite to sink his fangs into the man before him .three .He felt a powerful jerk behind his navel the ground vanished from beneath his feet his hand was glued to the kettle he was banging into the others as all sped forward in a swirl of colors and a rush of wind the kettle pulling them onward and then His feet hit the ground so hard that his knees buckled the kettle clattered to the ground and somewhere close at hand a voice said Back again the blood traitor brats is it true their fathers dying . ?OUT !roared a second voice .Harry scrambled to his feet and looked around they had arrived in the gloomy basement kitchen of number twelve Grimmauld Place .The only sources of light were the fire and one guttering candle which illuminated the remains of a solitary supper .Kreacher was disappearing through the door to the hall looking back at them malevolently as he hitched up his loincloth Sirius was hurrying toward them all looking anxious .He was unshaven and still in his day clothes there was also a slightly Mundunguslike whiff of stale drink about him .Whats going on ?he said stretching out a hand to help Ginny up .Phineas Nigellus said Arthurs been badly injured Ask Harry said Fred .Yeah I want to hear this for myself said George .The twins and Ginny were staring at him .Kreachers footsteps had stopped on the stairs outside .It was Harry began this was even worse than telling McGonagall and Dumbledore .I had a a kind of vision .And he told them all that he had seen though he altered the story so that it sounded as though he had watched from the sidelines as the snake attacked rather than from behind the snakes own eyes .Ron who was still very white gave him a fleeting look but did not speak .When Harry had finished Fred George and Ginny continued to stare at him for a moment .Harry did not know whether he was imagining it or not but he fancied there was something accusatory in their looks .Well if they were going to blame him for just seeing the attack he was glad he had not told them that he had been inside the snake at the time .Is Mum here ?said Fred turning to Sirius .She probably doesnt even know whats happened yet said Sirius .The important thing was to get you away before Umbridge could interfere .I expect Dumbledores letting Molly know now .Weve got to go to St .Mungos said Ginny urgently .She looked around at her brothers they were of course still in their pajamas .Sirius can you lend us cloaks or anything ?Hang on you cant go tearing off to St .Mungos !said Sirius .Course we can go to St .Mungos if we want said Fred with a mulish expression hes our dad !And how are you going to explain how you knew Arthur was attacked before the hospital even let his wife know ?What does that matter ?said George hotly .It matters because we dont want to draw attention to the fact that Harry is having visions of things that are happening hundreds of miles away !said Sirius angrily .Have you any idea what the Ministry would make of that information ?Fred and George looked as though they could not care less what the Ministry made of anything .Ron was still whitefaced and silent .Ginny said Somebody else could have told us .We could have heard it somewhere other than Harry .Like who ?said Sirius impatiently .Listen your dads been hurt while on duty for the Order and the circumstances are fishy enough without his children knowing about it seconds after it happened you could seriously damage the Orders We dont care about the dumb Order !shouted Fred .Its our dad dying were talking about !yelled George .Your father knew what he was getting into and he wont thank you for messing things up for the Order !said Sirius angrily in his turn .This is how it is this is why youre not in the Order you dont understand there are things worth dying for !Easy for you to say stuck here !bellowed Fred .I dont see you risking your neck !The little color remaining in Siriuss face drained from it .He looked for a moment as though he would quite like to hit Fred but when he spoke it was in a voice of determined calm .I know its hard but weve all got to act as though we dont know anything yet .Weve got to stay put at least until we hear from your mother all right ?Fred and George still looked mutinous .Ginny however took a few steps over to the nearest chair and sank into it .Harry looked at Ron who made a funny movement somewhere between a nod and shrug and they sat down too .The twins glared at Sirius for another minute then took seats on either side of Ginny .Thats right said Sirius encouragingly come on lets all .lets all have a drink while were waiting .Accio Butterbeeri He raised his wand as he spoke and half a dozen bottles came flying toward them out of the pantry skidded along the table scattering the debris of Siriuss meal and stopped neatly in front of the six of them .They all drank and for a while the only sounds were those of the crackling of the kitchen fire and the soft thud of their bottles on the table .Harry was only drinking to have something to do with his hands .His stomach was full of horrible hot bubbling guilt .They would not be here if it were not for him they would all still be asleep in bed .And it was no good telling himself that by raising the alarm he had ensured that Mr Weasley was found because there was also the inescapable business of it being he who had attacked Mr Weasley in the first place .Dont be stupid you havent got fangs he told himself trying to keep calm though the hand on his butterbeer bottle was shaking .You were lying in bed you werent attacking anyone .But then what just happened in Dumbledores office ?he asked himself .I felt like I wanted to attack Dumbledore too .He put the bottle down on the table a little harder than he meant to so that it slopped over onto the table .No one took any notice .Then a burst of fire in midair illuminated the dirty plates in front of them and as they gave cries of shock a scroll of parchment fell with a thud onto the table accompanied by a single golden phoenix tail feather .Fawkes !said Sirius at once snatching up the parchment .Thats not Dumbledores writing it must be a message from your mother here He thrust the letter into Georges hand who ripped it open and read aloud Dad is still alive .I am setting out for St .Mungos now .Stay where you are .I will send news as soon as I can .Mum .George looked around the table .Still alive .he said slowly .But that makes it sound .He did not need to finish the sentence .It sounded to Harry too as though Mr Weasley was hovering somewhere between life and death .Still exceptionally pale Ron stared at the back of his mothers letter as though it might speak words of comfort to him .Fred pulled the parchment out of Georges hands and read it for himself then looked up at Harry who felt his hand shaking on his butterbeer bottle again and clenched it more tightly to stop the trembling .If Harry had ever sat through a longer night than this one he could not remember it .Sirius suggested once that they all go to bed but without any real conviction and the Weasleys looks of disgust were answer enough .They mostly sat in silence around the table watching the candle wick sinking lower and lower into liquid wax now and then raising bottles to their lips speaking only to check the time to wonder aloud what was happening and to reassure one another that if there was bad news they would know straightaway for Mrs Weasley must long since have arrived at St .Mungos .Fred fell into a doze his head sagging sideways onto his shoulder .Ginny was curled like a cat on her chair but her eyes were open Harry could see them reflecting the firelight .Ron was sitting with his head in his hands whether awake or asleep it was impossible to tell .And he and Sirius looked at each other every so often intruders upon the family grief waiting .waiting .And then at ten past five in the morning by Rons watch the kitchen door swung open and Mrs Weasley entered the kitchen .She was extremely pale but when they all turned to look at her Fred Ron and Harry halfrising from their chairs she gave a wan smile .Hes going to be all right she said her voice weak with tiredness .Hes sleeping .We can all go and see him later .Bills sitting with him now hes going to take the morning off work .Fred fell back into his chair with his hands over his face .George and Ginny got up walked swiftly over to their mother and hugged her .Ron gave a very shaky laugh and downed the rest of his butterbeer in one .Breakfast !said Sirius loudly and joyfully jumping to his feet .Wheres that accursed houseelf ?Kreacher !KREACHER !But Kreacher did not answer the summons .Oh forget it then muttered Sirius counting the people in front of him .So its breakfast for lets see seven .Bacon and eggs I think and some tea and toast Harry hurried over to the stove to help .He did not want to intrude upon the Weasleys happiness and he dreaded the moment when Mrs Weasley would ask him to recount his vision .However he had barely taken plates from the dresser when Mrs Weasley lifted them out of his hands and pulled him into a hug .I dont know what would have happened if it hadnt been for you Harry she said in a muffled voice .They might not have found Arthur for hours and then it would have been too late but thanks to you hes alive and Dumbledores been able to think up a good cover story for Arthur being where he was youve no idea what trouble he would have been in otherwise look at poor Sturgis .Harry could hardly stand her gratitude but fortunately she soon released him to turn to Sirius and thank him for looking after her children through the night .Sirius said that he was very pleased to have been able to help and hoped they would all stay with him as long as Mr Weasley was in hospital .Oh Sirius Im so grateful .They think hell be there a little while and it would be wonderful to be nearer .Of course that might mean were here for Christmas .The more the merrier !said Sirius with such obvious sincerity that Mrs Weasley beamed at him threw on an apron and began to help with breakfast .Sirius Harry muttered unable to stand it a moment longer .Can I have a quick word ?Er now ?He walked into the dark pantry and Sirius followed .Without preamble Harry told his godfather every detail of the vision he had had including the fact that he himself had been the snake who had attacked Mr Weasley .When he paused for breath Sirius said Did you tell Dumbledore this ?Yes said Harry impatiently but he didnt tell me what it meant .Well he doesnt tell me anything anymore .Im sure he would have told you if it was anything to worry about said Sirius steadily .But thats not all said Harry in a voice only a little above a whisper .Sirius I .I think Im going mad .Back in Dumbledores office just before we took the Portkey .for a couple of seconds there I thought I was a snake I felt like one my scar really hurt when I was looking at Dumbledore Sirius I wanted to attack him He could only see a sliver of Siriuss face the rest was in darkness .It must have been the aftermath of the vision thats all said Sirius .You were still thinking of the dream or whatever it was and It wasnt that said Harry shaking his head .It was like something rose up inside me like theres a snake inside me You need to sleep said Sirius firmly .Youre going to have breakfast and then go upstairs to bed and then you can go and see Arthur after lunch with the others .Youre in shock Harry youre blaming yourself for something you only witnessed and its lucky you did witness it or Arthur might have died .Just stop worrying .He clapped Harry on the shoulder and left the pantry leaving Harry standing alone in the dark .Everyone but Harry spent the rest of the morning sleeping .He went up to the bedroom he had shared with Ron over the summer but while Ron crawled into bed and was asleep within minutes Harry sat fully clothed hunched against the cold metal bars of the bedstead keeping himself deliberately uncomfortable determined not to fall into a doze terrified that he might become the serpent again in his sleep and awake to find that he had attacked Ron or else slithered through the house after one of the others .When Ron woke up Harry pretended to have enjoyed a refreshing nap too .Their trunks arrived from Hogwarts while they were eating lunch so that they could dress as Muggles for the trip to St .Mungos .Everybody except Harry was riotously happy and talkative as they changed out of their robes into jeans and sweatshirts and they greeted Tonks and Mad Eye who had turned up to escort them across London gleefully laughing at the bowler hat MadEye was wearing at an angle to conceal his magical eye and assuring him truthfully that Tonks whose hair was short and bright pink again would attract far less attention on the underground .Tonks was very interested in Harrys vision of the attack on Mr Weasley something he was not remotely interested in discussing .There isnt any Seer blood in your family is there ?she inquired curiously as they sat side by side on a train rattling toward the heart of the city .No said Harry thinking of Professor Trelawney and feeling insulted .No said Tonks musingly no I suppose its not really prophecy youre doing is it ?I mean youre not seeing the future youre seeing the present .Its odd isnt it ?Useful though .Harry did not answer fortunately they got out at the next stop a station in the very heart of London and in the bustle of leaving the train he was able to allow Fred and George to get between himself and Tonks who was leading the way .They all followed her up the escalator Moody clunking along at the back of the group his bowler tilted low and one gnarled hand stuck in between the buttons of his coat clutching his wand .Harry thought he sensed the concealed eye staring hard at him trying to deflect more questions about his dream he asked MadEye where St .Mungos was hidden .Not far from here grunted Moody as they stepped out into the wintry air on a broad storelined street packed with Christmas shoppers .He pushed Harry a little ahead of him and stumped along just behind Harry knew the eye was rolling in all directions under the tilted hat .Wasnt easy to find a good location for a hospital .Nowhere in Diagon Alley was big enough and we couldnt have it underground like the Ministry unhealthy .In the end they managed to get hold of a building up here .Theory was sick wizards could come and go and just blend in with the crowd .He seized Harrys shoulder to prevent them being separated by a gaggle of shoppers plainly intent on nothing but making it into a nearby shop full of electrical gadgets .Here we go said Moody a moment later .They had arrived outside a large oldfashioned red brick department store called Purge and Dowse Ltd .The place had a shabby miserable air the window displays consisted of a few chipped dummies with their wigs askew standing at random and modeling fashions at least ten years out of date .Large signs on all the dusty doors read CLOSED FOR REFURBISHMENT .Harry distinctly heard a large woman laden with plastic shopping bags say to her friend as they passed Its never open that place .Right said Tonks beckoning them forward to a window displaying nothing but a particularly ugly female dummy whose false eyelashes were hanging off and who was modeling a green nylon pinafore dress .Everybody ready ?They nodded clustering around her Moody gave Harry another shove between the shoulder blades to urge him forward and Tonks leaned close to the glass looking up at the very ugly dummy and said her breath steaming up the glass Wotcher .Were here to see Arthur Weasley .For a split second Harry thought how absurd it was for Tonks to expect the dummy to hear her talking that quietly through a sheet of glass when there were buses rumbling along behind her and all the racket of a street full of shoppers .Then he reminded himself that dummies could not hear anyway .Next second his mouth opened in shock as the dummy gave a tiny nod beckoned its jointed finger and Tonks had seized Ginny and Mrs Weasley by the elbows stepped right through the glass and vanished .Fred George and Ron stepped after them Harry glanced around at the jostling crowd not one of them seemed to have a glance to spare for window displays as ugly as Purge and Dowse Ltd .s nor did any of them seem to have noticed that six people had just melted into thin air in front of them .Cmon growled Moody giving Harry yet another poke in the back and together they stepped forward through what felt like a sheet of cool water emerging quite warm and dry on the other side .There was no sign of the ugly dummy or the space where she had stood .They had arrived in what seemed to be a crowded reception area where rows of witches and wizards sat upon rickety wooden chairs some looking perfectly normal and perusing out of date copies of Witch Weekly others sporting gruesome disfigurements such as elephant trunks or extra hands sticking out of their chests .The room was scarcely less quiet than the street outside for many of the patients were making very peculiar noises .A sweatyfaced witch in the center of the front row who was fanning herself vigorously with a copy of the Daily Prophet kept letting off a highpitched whistle as steam came pouring out of her mouth and a grubbylooking warlock in the corner clanged like a bell every time he moved and with each clang his head vibrated horribly so that he had to seize himself by the ears and hold it steady .Witches and wizards in limegreen robes were walking up and down the rows asking questions and making notes on clipboards like Umbridges .Harry noticed the emblem embroidered on their chests a wand and bone crossed .Are they doctors ?he asked Ron quietly .Doctors ?said Ron looking startled .Those Muggle nutters that cut people up ?Nah theyre Healers .Over here !called Mrs Weasley over the renewed clanging of the warlock in the corner and they followed her to the queue in front of a plump blonde witch seated at a desk marked inquiries .The wall behind her was covered in notices and posters saying things like A CLEAN CAULDRON KEEPS POTIONS FROM BECOMING POISONS and ANTIDOTES ARE ANTIDONTS UNLESS APPROVED BY A QUALIFIED HEALER .There was also a large portrait of a witch with long silver ringlets that was labelled DILYS DERWENT ST .MUNGOS HEALER 17221741 HEADMISTRESS OF HOGWARTS SCHOOL OF WITCHCRAFT AND WIZARDRY I74II768 Dilys was eyeing the Weasley party as though counting them when Harry caught her eye she gave a tiny wink walked sideways out of her portrait and vanished .Meanwhile at the front of the queue a young wizard was performing an odd onthespot jig and trying in between yelps of pain to explain his predicament to the witch behind the desk .Its these ouch shoes my brother gave me ow theyre eating my OUCH feet look at them there must be some kind of AARGH jinx on them and I cant aaRGH get them off He hopped from one foot to the other as though dancing on hot coals .The shoes dont prevent you reading do they ?said the blonde witch irritably pointing at a large sign to the left of her desk .You want Spell Damage fourth floor .Just like it says on the floor guide .Next !The wizard hobbled and pranced sideways out of the way the Weasley party moved forward a few steps and Harry read the floor guide ARTIFACT ACCIDENTS Ground Floor Cauldron explosion wand backfiring broom crashes etc .CREATUREINDUCED INJURIES First Floor Bites stings burns embedded spines etc .MAGICAL BUGS Second Floor Contagious maladies e .g .dragon pox vanishing sickness scrofungulus POTION AND PLANT POISONING ..Third Floor Rashes regurgitation uncontrollable giggling etc .SPELL DAMAGE Fourth Floor Unliftable jinxes hexes and incorrectly applied charms etc .VISITORS TEAROOM AND HOSPITAL SHOP .Fifth Floor If you are unsure where to go incapable of normal speech or unable to remember why you are here our Welcome Witch will be pleased to help .A very old stooped wizard with a hearing trumpet had shuffled to the front of the queue now .Im here to see Broderick Bode !he wheezed .Ward fortynine but Im afraid youre wasting your time said the witch dismissively Hes completely addled you know still thinks hes a teapot .Next !A harassedlooking wizard was holding his small daughter tightly by the ankle while she flapped around his head using the immensely large feathery wings that had sprouted right out the back of her romper suit .Fourth floor said the witch in a bored voice without asking and the man disappeared through the double doors beside the desk holding his daughter like an oddly shaped balloon .Next !Mrs Weasley moved forward to the desk .Hello she said .My husband Arthur Weasley was supposed to be moved to a different ward this morning could you tell us ?Arthur Weasley ?said the witch running her finger down a long list in front of her .Yes first floor second door on the right Dai Llewellyn ward .Thank you said Mrs Weasley .Come on you lot .They followed through the double doors and along the narrow corridor beyond which was lined with more portraits of famous Healers and lit by crystal bubbles full of candles that floated up on the ceiling looking like giant soapsuds .More witches and wizards in limegreen robes walked in and out of the doors they passed a foulsmelling yellow gas wafted into the passageway as they passed one door and every now and then they heard distant wailing .They climbed a flight of stairs and entered the CreatureInduced Injuries corridor where the second door on the right bore the words DANGEROUS DAI LLEWELLYN WARD SERIOUS BITES .Underneath this was a card in a brass holder on which had been handwritten HealerinCharge Hippocrates Smethwyck Trainee Healer Augustus Pye .Well wait outside Molly Tonks said .Arthur wont want too many visitors at once .It ought to be just the family first .MadEye growled his approval of this idea and set himself with his back against the corridor wall his magical eye spinning in all directions .Harry drew back too but Mrs Weasley reached out a hand and pushed him through the door saying Dont be silly Harry Arthur wants to thank you .The ward was small and rather dingy as the only window was narrow and set high in the wall facing the door .Most of the light came from more shining crystal bubbles clustered in the middle of the ceiling .The walls were of panelled oak and there was a portrait of a rather viciouslooking wizard on the wall captioned URQUHART RACKHARROW 16121697 INVENTOR OF THE ENTRAIL EXPELLING CURSE .There were only three patients .Mr Weasley was occupying the bed at the far end of the ward beside the tiny window .Harry was pleased and relieved to see that he was propped up on several pillows and reading the Daily Prophet by the solitary ray of sunlight falling onto his bed .He looked around as they walked toward him and seeing whom it was beamed .Hello !he called throwing the Prophet aside .Bill just left Molly had to get back to work but he says hell drop in on you later .How are you Arthur ?asked Mrs Weasley bending down to kiss his cheek and looking anxiously into his face .Youre still looking a bit peaky .I feel absolutely fine said Mr Weasley brightly holding out his good arm to give Ginny a hug .If they could only take the bandages off Id be fit to go home .Why cant they take them off Dad ?asked Fred .Well I start bleeding like mad every time they try said Mr Weasley cheerfully reaching across for his wand which lay on his bedside cabinet and waving it so that six extra chairs appeared at his bedside to seat them all .It seems there was some rather unusual kind of poison in that snakes fangs that keeps wounds open .Theyre sure theyll find an antidote though they say theyve had much worse cases than mine and in the meantime I just have to keep taking a BloodReplenishing Potion every hour .But that fellow over there he said dropping his voice and nodding toward the bed opposite in which a man lay looking green and sickly and staring at the ceiling .Bitten by a werewolf poor chap .No cure at all .A werewolf ?whispered Mrs Weasley looking alarmed .Is he safe in a public ward ?Shouldnt he be in a private room ?Its two weeks till full moon Mr Weasley reminded her quietly .Theyve been talking to him this morning the Healers you know trying to persuade him hell be able to lead an almost normal life .I said to him didnt mention names of course but I said I knew a werewolf personally very nice man who finds the condition quite easy to manage .What did he say ?asked George .Said hed give me another bite if I didnt shut up said Mr Weasley sadly .And that woman over there he indicated the only other occupied bed which was right beside the door wont tell the Healers what bit her which makes us all think it must have been something she was handling illegally .Whatever it was took a real chunk out of her leg very nasty smell when they take off the dressings .So you going to tell us what happened Dad ?asked Fred pulling his chair closer to the bed .Well you already know dont you ?said Mr Weasley with a significant smile at Harry .Its very simple Id had a very long day dozed off got sneaked up on and bitten .Is it in the Prophet you being attacked ?asked Fred indicating the newspaper Mr Weasley had cast aside .No of course not said Mr Weasley with a slightly bitter smile the Ministry wouldnt want everyone to know a dirty great serpent got Arthur !said Mrs Weasley warningly .got er me Mr Weasley said hastily though Harry was quite sure that was not what he had meant to say .So where were you when it happened Dad ?asked George .Thats my business said Mr Weasley though with a small smile .He snatched up the Daily Prophet shook it open again and said I was just reading about Willy Widdershinss arrest when you arrived .You know Willy turned out to be behind those regurgitating toilets last summer ?One of his jinxes backfired the toilet exploded and they found him lying unconscious in the wreckage covered from head to foot in When you say you were ‘on duty Fred interrupted in a low voice what were you doing ?You heard your father whispered Mrs Weasley we are not discussing this here !Go on about Willy Widdershins Arthur Well dont ask me how but he actually got off on the toilet charge said Mr Weasley grimly .I can only suppose gold changed hands You were guarding it werent you ?said George quietly .The weapon ?The thing YouKnow Whos after ?George be quiet !snapped Mrs Weasley .Anyway said Mr Weasley in a raised voice this time Willys been caught selling biting doorknobs to Muggles and I dont think hell be able to worm his way out of it because according to this article two Muggles have lost fingers and are now in St .Mungos for emergency bone regrowth and memory modification .Just think of it Muggles in St .Mungos !I wonder which ward theyre in ?And he looked eagerly around as though hoping to see a signpost .Didnt you say YouKnow Whos got a snake Harry ?asked Fred looking at his father for a reaction .A massive one ?You saw it the night he returned didnt you ?Thats enough said Mrs Weasley crossly .MadEye and Tonks are outside Arthur they want to come and see you .And you lot can wait outside she added to her children and Harry .You can come and say goodbye afterward .Go on .They trooped back into the corridor .MadEye and Tonks went in and closed the door of the ward behind them .Fred raised his eyebrows .Fine he said coolly rummaging in his pockets be like that .Dont tell us anything .Looking for these ?said George holding out what looked like a tangle of fleshcolored string .You read my mind said Fred grinning .Lets see if St .Mungos puts Imperturbable Charms on its ward doors shall we ?He and George disentangled the string and separated five Extendable Ears from each other .Fred and George handed them around .Harry hesitated to take one .Go on Harry take it !You saved Dads life if anyones got the right to eavesdrop on him its you .Grinning in spite of himself Harry took the end of the string and inserted it into his ear as the twins had done .Okay go !Fred whispered .The fleshcolored strings wriggled like long skinny worms then snaked under the door .For a few seconds Harry could hear nothing then he heard Tonks whispering as clearly as though she were standing right beside him . .they searched the whole area but they couldnt find the snake anywhere it just seems to have vanished after it attacked you Arthur .But You KnowWho cant have expected a snake to get in can he ?I reckon he sent it as a lookout growled Moody cause hes not had any luck so far has he ?No I reckon hes trying to get a clearer picture of what hes facing and if Arthur hadnt been there the beast wouldve had much more time to look around .So Potter says he saw it all happen ?Yes said Mrs Weasley .She sounded rather uneasy .You know Dumbledore seems almost to have been waiting for Harry to see something like this .Yeah well said Moody theres something funny about the Potter kid we all know that .Dumbledore seemed worried about Harry when I spoke to him this morning whispered Mrs Weasley .Course hes worried growled Moody .The boys seeing things from inside YouKnow Whos snake .Obviously Potter doesnt realize what that means but if You Know Whos possessing him Harry pulled the Extendable Ear out of his own his heart hammering very fast and heat rushing up his face .He looked around at the others .They were all staring at him the strings still trailing from their ears looking suddenly fearful .CHRISTMAS ON THE CLOSED WARD Was this why Dumbledore would no longer meet Harrys eyes ?Did he expect to see Voldemort staring out of them afraid perhaps that their vivid green might turn suddenly to scarlet with catlike slits for pupils ?Harry remembered how the snakelike face of Voldemort had once forced itself out of the back of Professor Quirrells head and he ran his hand over the back of his own wondering what it would feel like if Voldemort burst out of his skull .He felt dirty contaminated as though he were carrying some deadly germ unworthy to sit on the underground train back from the hospital with innocent clean people whose minds and bodies were free of the taint of Voldemort .He had not merely seen the snake he had been the snake he knew it now .And then a truly terrible thought occurred to him a memory bobbing to the surface of his mind one that made his insides writhe and squirm like serpents .Whats he after apart from followers ?Stuff he can only get by stealth .like a weapon .Something he didnt have last time .Im the weapon Harry thought and it was as though poison were pumping through his veins chilling him bringing him out in a sweat as he swayed with the train through the dark tunnel .Im the one Voldemorts trying to use thats why theyve got guards around me everywhere I go its not for my protection its for other peoples only its not working they cant have someone on me all the time at Hogwarts .I did attack Mr Weasley last night it was me Voldemort made me do it and he could be inside me listening to my thoughts right now .Are you all right Harry dear ?whispered Mrs Weasley leaning across Ginny to speak to him as the train rattled along through its dark tunnel .You dont look very well .Are you feeling sick ?They were all watching him .He shook his head violently and stared up at an advertisement for home insurance .Harry dear are you sure youre all right ?said Mrs Weasley in a worried voice as they walked around the unkempt patch of grass in the middle of Grimmauld Place .You look ever so pale .Are you sure you slept this morning ?You go upstairs to bed right now and you can have a couple of hours sleep before dinner all right ?He nodded here was a readymade excuse not to talk to any of the others which was precisely what he wanted so when she opened the front door he proceeded straight past the trolls leg umbrella stand and up the stairs and hurried into his and Rons bedroom .Here he began to pace up and down past the two beds and Phineas Nigelluss empty portrait his brain teeming and seething with questions and ever more dreadful ideas .How had he become a snake ?Perhaps he was an Animagus .No he couldnt be he would know .perhaps Voldemort was an Animagus .Yes thought Harry that would fit he would turn into a snake of course .and when hes possessing me then we both transform .That still doesnt explain how come I got to London and back to my bed in the space of about five minutes though .But then Voldemort s about the most powerful wizard in the world apart from Dumbledore its probably no problem at all to him to transport people like that .And then with a terrible stab of panic he thought but this is insane if Voldemorts possessing me Im giving him a clear view into the headquarters of the Order of the Phoenix right now !Hell know whos in the Order and where Sirius is .and Ive heard loads of stuff I shouldnt have everything Sirius told me the first night I was here .There was only one thing for it He would have to leave Grimmauld Place straightaway .He would spend Christmas at Hogwarts without the others which would keep them safe over the holidays at least .But no that wouldnt do there were still plenty of people at Hogwarts to maim and injure what if it was Seamus Dean or Neville next time ?He stopped his pacing and stood staring at Phineas Nigelluss empty frame .A leaden sensation was settling in the pit of his stomach .He had no alternative He was going to have to return to Privet Drive cut himself off from other wizards entirely .Well if he had to do it he thought there was no point hanging around .Trying with all his might not to think how the Dursleys were going to react when they found him on their doorstep six months earlier than they had expected he strode over to his trunk slammed the lid shut and locked it then glanced around automatically for Hedwig before remembering that she was still at Hogwarts well her cage would be one less thing to carry he seized one end of his trunk and had dragged it halfway toward the door when a sneaky voice said Running away are we ?He looked around .Phineas Nigellus had appeared upon the canvas of his portrait and was leaning against the frame watching Harry with an amused expression on his face .Not running away no said Harry shortly dragging his trunk a few more feet across the room .I thought said Phineas Nigellus stroking his pointed beard that to belong in Gryffindor House you were supposed to be brave ?It looks to me as though you would have been better off in my own house .We Slytherins are brave yes but not stupid .For instance given the choice we will always choose to save our own necks .Its not my own neck Im saving said Harry tersely tugging the trunk over a patch of particularly uneven motheaten carpet right in front of the door .Oh I see said Phineas Nigellus still stroking his beard .This is no cowardly flight you are being noble .Harry ignored him .His hand was on the doorknob when Phineas Nigellus said lazily I have a message for you from Albus Dumbledore .Harry spun around .What is it ?Stay where you are .I havent moved !said Harry his hand still upon the doorknob .So whats the message ?I have just given it to you dolt said Phineas Nigellus smoothly .Dumbledore says ‘Stay where you are .Why ?said Harry eagerly dropping the end of his trunk .Why does he want me to stay ?What else did he say ?Nothing whatsoever said Phineas Nigellus raising a thin black eyebrow as though he found Harry impertinent .Harrys temper rose to the surface like a snake rearing from long grass .He was exhausted he was confused beyond measure he had experienced terror relief and then terror again in the last twelve hours and still Dumbledore did not want to talk to him !So thats it is it ?he said loudly .Stay there ?Thats all anyone could tell me after I got attacked by those dementors too !Just stay put while the grownups sort it out Harry !We wont bother telling you anything though because your tiny little brain might not be able to cope with it !You know said Phineas Nigellus even more loudly than Harry this is precisely why I loathed being a teacher !Young people are so infernally convinced that they are absolutely right about everything .Has it not occurred to you my poor puffedup popinjay that there might be an excellent reason why the headmaster of Hogwarts is not confiding every tiny detail of his plans to you ?Have you never paused while feeling harddoneby to note that following Dumbledore s orders has never yet led you into harm ?No .No like all young people you are quite sure that you alone feel and think you alone recognize danger you alone are the only one clever enough to realize what the Dark Lord may be planning .He is planning something to do with me then ?said Harry swiftly .Did I say that ?said Phineas Nigellus idly examining his silk gloves .Now if you will excuse me I have better things to do than to listen to adolescent agonizing .Good day to you .And he strolled into his frame and out of sight .Fine go then !Harry bellowed at the empty frame .And tell Dumbledore thanks for nothing !The empty canvas remained silent .Fuming Harry dragged his trunk back to the foot of his bed then threw himself facedown upon the motheaten covers his eyes shut his body heavy and aching .He felt he had journeyed miles and miles .It seemed impossible that less than twentyfour hours ago Cho Chang had been approaching him under the mistletoe .He was so tired .He was scared to sleep .yet he did not know how long he could fight it .Dumbledore had told him to stay .That must mean he was allowed to sleep .But he was scared .What if it happened again . ?He was sinking into shadows .It was as though a film in his head had been waiting to start .He was walking down a deserted corridor toward a plain black door past rough stone walls torches and an open doorway onto a flight of stone steps leading downstairs on the left .He reached the black door but could not open it .He stood gazing at it desperate for entry .Something he wanted with all his heart lay beyond .A prize beyond his dreams .If only his scar would stop prickling .then he would be able to think more clearly .Harry said Rons voice from far far away Mum says dinners ready but shell save you something if you want to stay in bed .Harry opened his eyes but Ron had already left the room .He doesnt want to be on his own with me Harry thought .Not after what he heard Moody say .He supposed none of them would want him there anymore now that they knew what was inside him .He would not go down to dinner he would not inflict his company upon them .He turned over onto his other side and after a while dropped back off to sleep waking much later in the early hours of the morning with his insides aching with hunger and Ron snoring in the next bed .Squinting around the room he saw the dark outline of Phineas Nigellus standing again in his portrait and it occurred to Harry that Dumbledore had probably set Phineas Nigellus to watch over him in case he attacked somebody else .The feeling of being unclean intensified .He half wished he had not obeyed Dumbledore and stayed .If this was how life was going to be in Grimmauld Place from now on maybe he would be better off in Privet Drive after all .Everybody else spent the following morning putting up Christmas decorations .Harry could not remember Sirius ever being in such a good mood he was actually singing carols apparently delighted that he was to have company over Christmas .Harry could hear his voice echoing up through the floor in the cold and empty drawing room where he was sitting alone watching the sky outside the windows growing whiter threatening snow all the time feeling a savage pleasure that he was giving the others the opportunity to keep talking about him as they were bound to be doing .When he heard Mrs Weasley calling his name softly up the stairs around lunchtime he retreated farther upstairs and ignored her .It was around six oclock in the evening that the doorbell rang and Mrs Black started screaming again .Assuming that Mundungus or some other Order member had come to call Harry merely settled himself more comfortably against the wall of Buckbeak the hippogriffs room where he was hiding trying to ignore how hungry he felt as he fed Buckbeak dead rats .It came as a slight shock when somebody hammered hard on the door a few minutes later .I know youre in there said Hermiones voice .Will you please come out ?I want to talk to you .What are you doing here ?Harry asked her pulling open the door as Buckbeak resumed his scratching at the strawstrewn floor for any fragments of rat he might have dropped .I thought you were skiing with your mum and dad .Well to tell the truth skiings not really my thing said Hermione .So Ive come for Christmas .There was snow in her hair and her face was pink with cold .But dont tell Ron that I told him its really good because he kept laughing so much .Anyway Mum and Dad are a bit disappointed but Ive told them that everyone whos serious about the exams is staying at Hogwarts to study .They want me to do well theyll understand .Anyway she said briskly lets go to your bedroom Rons mums lit a fire in there and shes sent up sandwiches .Harry followed her back to the second floor .When he entered the bedroom he was rather surprised to see both Ron and Ginny waiting for them sitting on Rons bed .I came on the Knight Bus said Hermione airily pulling off her jacket before Harry had time to speak .Dumbledore told me what had happened first thing this morning but I had to wait for term to end officially before setting off .Umbridge is already livid that you lot disappeared right under her nose even though Dumbledore told her Mr Weasley was in St .Mungos and hed given you all permission to visit .So She sat down next to Ginny and the two girls and Ron looked up at Harry .Howre you feeling ?asked Hermione .Fine said Harry stiffly .Oh dont lie Harry she said impatiently .Ron and Ginny say youve been hiding from everyone since you got back from St .Mungos .They do do they ?said Harry glaring at Ron and Ginny .Ron looked down at his feet but Ginny seemed quite unabashed .Well you have !she said .And you wont look at any of us !Its you lot who wont look at me !said Harry angrily .Maybe youre taking it in turns to look and keep missing each other suggested Hermione the corners of her mouth twitching .Very funny snapped Harry turning away .Oh stop feeling all misunderstood said Hermione sharply .Look the others have told me what you overheard last night on the Extendable Ears Yeah ?growled Harry his hands deep in his pockets as he watched the snow now falling thickly outside .All been talking about me have you ?Well Im getting used to it .We wanted to talk to you Harry said Ginny but as youve been hiding ever since we got back I didnt want anyone to talk to me said Harry who was feeling more and more nettled .Well that was a bit stupid of you said Ginny angrily seeing as you dont know anyone but me whos been possessed by YouKnowWho and I can tell you how it feels .Harry remained quite still as the impact of these words hit him .Then he turned on the spot to face her .I forgot he said .Lucky you said Ginny coolly .Im sorry Harry said and he meant it .So .so do you think Im being possessed then ?Well can you remember everything youve been doing ?Ginny asked .Are there big blank periods where you dont know what youve been up to ?Harry racked his brains .No he said .Then YouKnowWho hasnt ever possessed you said Ginny simply .When he did it to me I couldnt remember what Id been doing for hours at a time .Id find myself somewhere and not know how I got there .Harry hardly dared believe her yet his heart was lightening almost in spite of himself .That dream I had about your dad and the snake though Harry youve had these dreams before Hermione said .You had flashes of what Voldemort was up to last year .This was different said Harry shaking his head .I was inside that snake .It was like I was the snake .What if Voldemort somehow transported me to London ?One day said Hermione sounding thoroughly exasperated youll read Hogwarts A History and perhaps that will remind you that you cant Apparate or Disapparate inside Hogwarts .Even Voldemort couldnt just make you fly out of your dormitory Harry .You didnt leave your bed mate said Ron .I saw you thrashing around in your sleep about a minute before we could wake you up .Harry started pacing up and down the room again thinking .What they were all saying was not only comforting it made sense .Without really thinking he took a sandwich from the plate on the bed and crammed it hungrily into his mouth .Im not the weapon after all thought Harry .His heart swelled with happiness and relief and he felt like joining in as they heard Sirius tramping past their door toward Buckbeaks room singing God Rest Ye Merry Hippogriffs at the top of his voice .How could he have dreamed of returning to Privet Drive for Christmas ?Siriuss delight at having the house full again and especially at having Harry back was infectious .He was no longer their sullen host of the summer now he seemed determined that everyone should enjoy themselves as much if not more than they would have done at Hogwarts and he worked tirelessly in the runup to Christmas Day cleaning and decorating with their help so that by the time they all went to bed on Christmas Eve the house was barely recognizable .The tarnished chandeliers were no longer hung with cobwebs but with garlands of holly and gold and silver streamers magical snow glittered in heaps over the threadbare carpets a great Christmas tree obtained by Mundungus and decorated with live fairies blocked Siriuss family tree from view and even the stuffed elf heads on the hall wall wore Father Christmas hats and beards .Harry awoke on Christmas morning to find a stack of presents at the foot of his bed and Ron already halfway through opening his own rather larger pile .Good haul this year he informed Harry through a cloud of paper .Thanks for the Broom Compass its excellent beats Hermiones shes got me a homework planner Harry sorted through his presents and found one with Hermiones handwriting on it .She had given him too a book that resembled a diary except that it said things like Do it today or later youll pay every time he opened a page .Sirius and Lupin had given Harry a set of excellent books entitled Practical Defensive Magic and Its Use Against the Dark Arts which had superb moving color illustrations of all the counterjinxes and hexes it described .Harry flicked through the first volume eagerly he could see it was going to be highly useful in his plans for the D .A .Hagrid had sent a furry brown wallet that had fangs which were presumably supposed to be an antitheft device but unfortunately prevented Harry putting any money in without getting his fingers ripped off .Tonkss present was a small working model of a Firebolt which Harry watched fly around the room wishing he still had his fullsize version Ron had given him an enormous box of EveryFlavor Beans Mr and Mrs Weasley the usual handknitted jumper and some mince pies and Dobby a truly dreadful painting that Harry suspected had been done by the elf himself .He had just turned it upside down to see whether it looked better that way when with a loud crack Fred and George Apparated at the foot of his bed .Merry Christmas said George .Dont go downstairs for a bit .Why not ?said Ron .Mums crying again said Fred heavily .Percy sent back his Christmas jumper .Without a note added George .Hasnt asked how Dad is or visited him or anything .We tried to comfort her said Fred moving around the bed to look at Harrys portrait .Told her Percys nothing more than a humongous pile of rat droppings didnt work said George helping himself to a Chocolate Frog .So Lupin took over .Best let him cheer her up before we go down for breakfast I reckon .Whats that supposed to be anyway ?asked Fred squinting at Dobbys painting .Looks like a gibbon with two black eyes .Its Harry !said George pointing at the back of the picture .Says so on the back !Good likeness said Fred grinning .Harry threw his new homework diary at him it hit the wall opposite and fell to the floor where it said happily If youve dotted the is and crossed the ts then you may do whatever you pleasel They got up and dressed they could hear various inhabitants of the house calling Merry Christmas to each other .On their way downstairs they met Hermione .Thanks for the book Harry !she said happily .Ive been wanting that New Theory of Numerology for ages !And that perfume is really unusual Ron .No problem said Ron .Whos that for anyway ?he added nodding at the neatly wrapped present she was carrying .Kreacher said Hermione brightly .It had better not be clothes !said Ron warningly .You know what Sirius said Kreacher knows too much we cant set him free !It isnt clothes said Hermione although if I had my way Id certainly give him something to wear other than that filthy old rag .No its a patchwork quilt I thought it would brighten up his bedroom .What bedroom ?said Harry dropping his voice to a whisper as they were passing the portrait of Siriuss mother .Well Sirius says its not so much a bedroom more a kind of den said Hermione .Apparently he sleeps under the boiler in that cupboard off the kitchen .Mrs Weasley was the only person in the basement when they arrived there .She was standing at the stove and sounded as though she had a bad head cold when she wished them Merry Christmas and they all averted their eyes .So this is Kreachers bedroom ?said Ron strolling over to a dingy door in the corner opposite the pantry which Harry had never seen open .Yes said Hermione now sounding a little nervous .Er .I think wed better knock .Ron rapped the door with his knuckles but there was no reply .He must be sneaking around upstairs he said and without further ado pulled open the door .Urgh .Harry peered inside .Most of the cupboard was taken up with a very large and oldfashioned boiler but in the foots space underneath the pipes Kreacher had made himself something that looked like a nest .A jumble of assorted rags and smelly old blankets were piled on the floor and the small dent in the middle of it showed where Kreacher curled up to sleep every night .Here and there among the material were stale bread crusts and moldy old bits of cheese .In a far corner glinted small objects and coins that Harry guessed Kreacher had saved magpielike from Siriuss purge of the house and he had also managed to retrieve the silverframed family photographs that Sirius had thrown away over the summer .Their glass might be shattered but still the little blackandwhite people inside them peered haughtily up at him including he felt a little jolt in his stomach the dark heavylidded woman whose trial he had witnessed in Dumbledores Pensieve Bellatrix Lestrange .By the looks of it hers was Kreacher s favorite photograph he had placed it to the fore of all the others and had mended the glass clumsily with Spellotape .I think Ill just leave his present here said Hermione laying the package neatly in the middle of the depression in the rags and blankets and closing the door quietly .Hell find it later thatll be fine .Come to think of it said Sirius emerging from the pantry carrying a large turkey as they closed the cupboard door has anyone actually seen Kreacher lately ?I havent seen him since the night we came back here said Harry .You were ordering him out of the kitchen .Yeah .said Sirius frowning .You know I think thats the last time I saw him too .He must be hiding upstairs somewhere .He couldnt have left could he ?said Harry .I mean when you said ‘out maybe he thought you meant get out of the house ?No no houseelves cant leave unless theyre given clothes theyre tied to their familys house said Sirius .They can leave the house if they really want to Harry contradicted him .Dobby did he left the Malfoys to give me warnings two years ago .He had to punish himself afterward but he still managed it .Sirius looked slightly disconcerted for a moment then said Ill look for him later I expect Ill find him upstairs crying his eyes out over my mothers old bloomers or something .Of course he might have crawled into the airing cupboard and died .But I mustnt get my hopes up .Fred George and Ron laughed Hermione however looked reproachful .Once they had had their Christmas lunch the Weasleys and Harry and Hermione were planning to pay Mr Weasley another visit escorted by MadEye and Lupin .Mundungus turned up in time for Christmas pudding and trifle having managed to borrow a car for the occasion as the Underground did not run on Christmas Day .The car which Harry doubted very much had been taken with the knowledge or consent of its owner had had a similar Enlarging Spell put upon it as the Weasleys old Ford Anglia although normally proportioned outside ten people with Mundungus driving were able to fit into it quite comfortably .Mrs Weasley hesitated at the point of getting inside Harry knew that her disapproval of Mundungus was battling with her dislike of traveling without magic finally the cold outside and her childrens pleading triumphed and she settled herself into the backseat between Fred and Bill with good grace .The journey to St .Mungos was quite quick as there was very little traffic on the roads .A small trickle of witches and wizards were creeping furtively up the otherwise deserted street to visit the hospital .Harry and the others got out of the car and Mundungus drove off around the corner to wait for them they strolled casually toward the window where the dummy in green nylon stood then one by one stepped through the glass .The reception area looked pleasantly festive The crystal orbs that illuminated St .Mungos had been turned to red and gold so that they became gigantic glowing Christmas baubles holly hung around every doorway and shining white Christmas trees covered in magical snow and icicles glittered in every corner each topped with a gleaming gold star .It was less crowded than the last time they had been there although halfway across the room Harry found himself shunted aside by a witch with a walnut jammed up her left nostril .Family argument eh ?smirked the blonde witch behind the desk .Youre the third Ive seen today .Spell Damage fourth floor .They found Mr Weasley propped up in bed with the remains of his turkey dinner on a tray in his lap and a rather sheepish expression on his face .Everything all right Arthur ?asked Mrs Weasley after they had all greeted Mr Weasley and handed over their presents .Fine fine said Mr Weasley a little too heartily .You er havent seen Healer Smethwyck have you ?No said Mrs Weasley suspiciously why ?Nothing nothing said Mr Weasley airily starting to unwrap his pile of gifts .Well everyone had a good day ?What did you all get for Christmas ?Oh Harry this is absolutely wonderful For he had just opened Harrys gift of fusewire and screwdrivers .Mrs Weasley did not seem entirely satisfied with Mr Weasleys answer .As her husband leaned over to shake Harrys hand she peered at the bandaging under his nightshirt .Arthur she said with a snap in her voice like a mousetrap youve had your bandages changed .Why have you had your bandages changed a day early Arthur ?They told me they wouldnt need doing until tomorrow .What ?said Mr Weasley looking rather frightened and pulling the bed covers higher up his chest .No no its nothing its I He seemed to deflate under Mrs Weasleys piercing gaze .Well now dont get upset Molly but Augustus Pye had an idea .Hes the Trainee Healer you know lovely young chap and very interested in .um .complementary medicine .I mean some of these old Muggle remedies .well theyre called stitches Molly and they work very well on on Muggle wounds Mrs Weasley let out an ominous noise somewhere between a shriek and a snarl .Lupin strolled away from the bed and over to the werewolf who had no visitors and was looking rather wistfully at the crowd around Mr Weasley Bill muttered something about getting himself a cup of tea and Fred and George leapt up to accompany him grinning .Do you mean to tell me said Mrs Weasley her voice growing louder with every word and apparently unaware that her fellow visitors were scurrying for cover that you have been messing about with Muggle remedies ?Not messing about Molly dear said Mr Weasley imploringly .It was just just something Pye and I thought wed try only most unfortunately well with these particular kinds of wounds it doesnt seem to work as well as wed hoped Meaning ?Well .well I dont know whether you know what what stitches are ?It sounds as though youve been trying to sew your skin back together said Mrs Weasley with a snort of mirthless laughter but even you Arthur wouldnt be that stupid I fancy a cup of tea too said Harry jumping to his feet .Hermione Ron and Ginny almost sprinted to the door with him .As it swung closed behind them they heard Mrs Weasley shriek WHAT DO YOU MEAN THATS THE GENERAL IDEA ?Typical Dad said Ginny shaking her head as they set off up the corridor .Stitches .I ask you .Well you know they do work well on nonmagical wounds said Hermione fairly .I suppose something in that snakes venom dissolves them or something .I wonder where the tearoom is ?Fifth floor said Harry remembering the sign over the Welcome Witchs desk .They walked along the corridor through a set of double doors and found a rickety staircase lined with more portraits of brutallooking Healers .As they climbed it the various Healers called out to them diagnosing odd complaints and suggesting horrible remedies .Ron was seriously affronted when a medieval wizard called out that he clearly had a bad case of spattergroit .And whats that supposed to be ?he asked angrily as the Healer pursued him through six more portraits shoving the occupants out of the way .Tis a most grievous affliction of the skin young master that will leave you pockmarked and more gruesome even than you are now Watch who youre calling gruesome !said Ron his ears turning red .The only remedy is to take the liver of a toad bind it tight about your throat stand naked by the full moon in a barrel of eels eyes I have not got spattergroit !But the unsightly blemishes upon your visage young master Theyre freckles !said Ron furiously .Now get back in your own picture and leave me alone !He rounded on the others who were all keeping determinedly straight faces .What floors this ?I think its the fifth said Hermione .Nah its the fourth said Harry one more But as he stepped onto the landing he came to an abrupt halt staring at the small window set into the double doors that marked the start of a corridor signposted SPELL DAMAGE .A man was peering out at them all with his nose pressed against the glass .He had wavy blond hair bright blue eyes and a broad vacant smile that revealed dazzlingly white teeth .Blimey !said Ron also staring at the man .Oh my goodness said Hermione suddenly sounding breathless .Professor Lockhart !Their exDefense Against the Dark Arts teacher pushed open the doors and moved toward them wearing a long lilac dressing gown .Well hello there !he said .I expect youd like my autograph would you ?Hasnt changed much has he ?Harry muttered to Ginny who grinned .Er how are you Professor ?said Ron sounding slightly guilty .It had been Rons malfunctioning wand that had damaged Professor Lockharts memory so badly that he had landed here in the first place though as Lockhart had been attempting to permanently wipe Harry and Rons memories at the time Harrys sympathy was limited .Im very well indeed thank you !said Lockhart exuberantly pulling a rather battered peacockfeather quill from his pocket .Now how many autographs would you like ?I can do joinedup writing now you know !Er we dont want any at the moment thanks said Ron raising his eyebrows at Harry who asked Professor should you be wandering around the corridors ?Shouldnt you be in a ward ?The smile faded slowly from Lockharts face .For a few moments he gazed intently at Harry then he said Havent we met ?Er .yeah we have said Harry .You used to teach us at Hogwarts remember ?Teach ?repeated Lockhart looking faintly unsettled .Me ?Did I ?And then the smile reappeared upon his face so suddenly it was rather alarming .Taught you everything you know I expect did I ?Well how about those autographs then ?Shall we say a round dozen you can give them to all your little friends then and nobody will be left out !But just then a head poked out of a door at the far end of the corridor and a voice said Gilderoy you naughty boy where have you wandered off to ?A motherly looking Healer wearing a tinsel wreath in her hair came bustling up the corridor smiling warmly at Harry and the others .Oh Gilderoy youve got visitors !How lovely and on Christmas Day too !Do you know he never gets visitors poor lamb and I cant think why hes such a sweetie arent you ?Were doing autographs !Gilderoy told the Healer with another glittering smile .They want loads of them wont take no for an answer !I just hope weve got enough photographs !Listen to him said the Healer taking Lockharts arm and beaming fondly at him as though he were a precocious twoyearold .He was rather well known a few years ago we very much hope that this liking for giving autographs is a sign that his memory might be coming back a little bit .Will you step this way ?Hes in a closed ward you know he must have slipped out while I was bringing in the Christmas presents the doors usually kept locked .not that hes dangerous !But she lowered her voice to a whisper bit of a danger to himself bless him .Doesnt know who he is you see wanders off and cant remember how to get back .It is nice of you to have come to see him Er said Ron gesturing uselessly at the floor above actually we were just er But the Healer was smiling expectantly at them and Rons feeble mutter of going to have a cup of tea trailed away into nothingness .They looked at one another rather hopelessly and then followed Lockhart and his Healer along the corridor .Lets not stay long Ron said quietly .The Healer pointed her wand at the door of the Janus Thickey ward and muttered Alohomora .The door swung open and she led the way inside keeping a firm grasp on Gilderoys arm until she had settled him into an armchair beside his bed .This is our longterm resident ward she informed Harry Ron Hermione and Ginny in a low voice .For permanent spell damage you know .Of course with intensive remedial potions and charms and a bit of luck we can produce some improvement .Gilderoy does seem to be getting back some sense of himself and weve seen a real improvement in Mr Bode he seems to be regaining the power of speech very well though he isnt speaking any language we recognize yet .Well I must finish giving out the Christmas presents Ill leave you all to chat .Harry looked around this ward bore unmistakable signs of being a permanent home to its residents .They had many more personal effects around their beds than in Mr Weasleys ward the wall around Gilderoys headboard for instance was papered with pictures of himself all beaming toothily and waving at the new arrivals .He had autographed many of them to himself in disjointed childish writing .The moment he had been deposited in his chair by the Healer Gilderoy pulled a fresh stack of photographs toward him seized a quill and started signing them all feverishly .You can put them in envelopes he said to Ginny throwing the signed pictures into her lap one by one as he finished them .I am not forgotten you know no I still receive a very great deal of fan mail .Gladys Gudgeon writes weekly .I just wish I knew why .He paused looking faintly puzzled then beamed again and returned to his signing with renewed vigor .I suspect it is simply my good looks .A sallowskinned mournfullooking wizard lay in the bed opposite staring at the ceiling he was mumbling to himself and seemed quite unaware of anything around him .Two beds along was a woman whose entire head was covered in fur Harry remembered something similar happening to Hermione during their second year although fortunately the damage in her case had not been permanent .At the far end of the ward flowery curtains had been drawn around two beds to give the occupants and their visitors some privacy .Here you are Agnes said the Healer brightly to the furryfaced woman handing her a small pile of Christmas presents .See not forgotten are you ?And your sons sent an owl to say hes visiting tonight so thats nice isnt it ?Agnes gave several loud barks .And look Broderick youve been sent a potted plant and a lovely calendar with a different fancy hippogriff for each month theyll brighten things up wont they ?said the Healer bustling along to the mumbling man setting a rather ugly plant with long swaying tentacles on the bedside cabinet and fixing the calendar to the wall with her wand .And oh Mrs Longbottom are you leaving already ?Harrys head spun round .The curtains had been drawn back from the two beds at the end of the ward and two visitors were walking back down the aisle between the beds a formidablelooking old witch wearing a long green dress a motheaten fox fur and a pointed hat decorated with what was unmistakably a stuffed vulture and trailing behind her looking thoroughly depressed Neville .With a sudden rush of understanding Harry realized who the people in the end beds must be .He cast around wildly for some means of distracting the others so that Neville could leave the ward unnoticed and unquestioned but Ron had looked up at the sound of the name Longbottom too and before Harry could stop him had called Neville Neville jumped and cowered as though a bullet had narrowly missed him .Its us Neville !said Ron brightly getting to his feet .Have you seen ?Lockharts here !Whove you been visiting ?Friends of yours Neville dear ?said Nevilles grandmother graciously bearing down upon them all .Neville looked as though he would rather be anywhere in the world but here .A dull purple flush was creeping up his plump face and he was not making eye contact with any of them .Ah yes said his grandmother looking closely at Harry and sticking out a shriveled clawlike hand for him to shake .Yes yes I know who you are of course .Neville speaks most highly of you .Er thanks said Harry shaking hands .Neville did not look at him but stared at his own feet the color deepening in his face all the while .And you two are clearly Weasleys Mrs Longbottom continued proffering her hand regally to Ron and Ginny in turn .Yes I know your parents not well of course but fine people fine people .and you must be Hermione Granger ?Hermione looked rather startled that Mrs Longbottom knew her name but shook hands all the same .Yes Nevilles told me all about you .Helped him out of a few sticky spots havent you ?Hes a good boy she said casting a sternly appraising look down her rather bony nose at Neville but he hasnt got his fathers talent Im afraid to say .And she jerked her head in the direction of the two beds at the end of the ward so that the stuffed vulture on her hat trembled alarmingly .What ?said Ron looking amazed Harry wanted to stamp on Rons foot but that sort of thing was much harder to bring off unnoticed when you were wearing jeans rather than robes .Is that your dad down the end Neville ?Whats this ?said Mrs Longbottom sharply .Havent you told your friends about your parents Neville ?Neville took a deep breath looked up at the ceiling and shook his head .Harry could not remember ever feeling sorrier for anyone but he could not think of any way of helping Neville out of the situation .Well its nothing to be ashamed of !said Mrs Longbottom angrily .You should be proud Neville proud .They didnt give their health and their sanity so their only son would be ashamed of them you know !Im not ashamed said Neville very faintly still looking anywhere but at Harry and the others .Ron was now standing on tiptoe to look over at the inhabitants of the two beds .Well youve got a funny way of showing it !said Mrs Longbottom .My son and his wife she said turning haughtily to Harry Ron Hermione and Ginny were tortured into insanity by YouKnow Whos followers .Hermione and Ginny both clapped their hands over their mouths .Ron stopped craning his neck to catch a glimpse of Nevilles parents and looked mortified .They were Aurors you know and very well respected within the Wizarding community Mrs Longbottom went on .Highly gifted the pair of them .I yes Alice dear what is it ?Nevilles mother had come edging down the ward in her nightdress .She no longer had the plump happy looking face Harry had seen in Moodys old photograph of the original Order of the Phoenix .Her face was thin and worn now her eyes seemed overlarge and her hair which had turned white was wispy and deadlooking .She did not seem to want to speak or perhaps she was not able to but she made timid motions toward Neville holding something in her outstretched hand .Again ?said Mrs Longbottom sounding slightly weary .Very well Alice dear very well Neville take it whatever it is .But Neville had already stretched out his hand into which his mother dropped an empty Droobles Blowing Gum wrapper .Very nice dear said Nevilles grandmother in a falsely cheery voice patting his mother on the shoulder .But Neville said quietly Thanks Mum .His mother tottered away back up the ward humming to herself .Neville looked around at the others his expression defiant as though daring them to laugh but Harry did not think hed ever found anything less funny in his life .Well wed better get back sighed Mrs Longbottom drawing on long green gloves .Very nice to have met you all .Neville put that wrapper in the bin she must have given you enough of them to paper your bedroom by now .But as they left Harry was sure he saw Neville slip the wrapper into his pocket .The door closed behind them .I never knew said Hermione who looked tearful .Nor did I said Ron rather hoarsely .Nor me whispered Ginny .They all looked at Harry .I did he said glumly .Dumbledore told me but I promised I wouldnt mention it .thats what Bellatrix Lestrange got sent to Azkaban for using the Cruciatus Curse on Nevilles parents until they lost their minds .Bellatrix Lestrange did that ?whispered Hermione horrified .That woman Kreachers got a photo of in his den ?There was a long silence broken by Lockharts angry voice .Look I didnt learn joinedup writing for nothing you know !OCCLUMENCY Kreacher it transpired had been lurking in the attic .Sirius said he had found him up there covered in dust no doubt looking for more relics of the Black family to hide in his cupboard .Though Sirius seemed satisfied with this story it made Harry uneasy .Kreacher seemed to be in a better mood on his reappearance his bitter muttering had subsided somewhat and he submitted to orders more docilely than usual though once or twice Harry caught the houseelf staring avidly at him always looking quickly away when he saw that Harry had noticed .Harry did not mention his vague suspicions to Sirius whose cheerfulness was evaporating fast now that Christmas was over .As the date of their departure back to Hogwarts drew nearer he became more and more prone to what Mrs Weasley called fits of the sullens in which he would become taciturn and grumpy often withdrawing to Buckbeaks room for hours at a time .His gloom seeped through the house oozing under doorways like some noxious gas so that all of them became infected by it .Harry did not want to leave Sirius all alone again with only Kreacher for company .In fact for the first time in his life he was not looking forward to returning to Hogwarts .Going back to school would mean placing himself once again under the tyranny of Dolores Umbridge who had no doubt managed to force through another dozen decrees in their absence .Then there was no Quidditch to look forward to now that he had been banned there was every likelihood that their burden of homework would increase as the exams drew even nearer Dumbledore remained as remote as ever in fact if it had not been for the D .A .Harry felt he might have gone to Sirius and begged him to let him leave Hogwarts and remain in Grimmauld Place .Then on the very last day of the holidays something happened that made Harry positively dread his return to school .Harry dear said Mrs Weasley poking her head into his and Rons bedroom where the pair of them were playing wizard chess watched by Hermione Ginny and Crookshanks could you come down to the kitchen ?Professor Snape would like a word with you .Harry did not immediately register what she had said one of his castles was engaged in a violent tussle with a pawn of Rons and he was egging it on enthusiastically .Squash him squash him hes only a pawn you idiot sorry Mrs Weasley what did you say ?Professor Snape dear .In the kitchen .Hed like a word .Harrys mouth fell open in horror .He looked around at Ron Hermione and Ginny all of whom were gaping back at him .Crookshanks whom Hermione had been restraining with difficulty for the past quarter of an hour leapt gleefully upon the board and set the pieces running for cover squealing at the top of their voices .Snape ?said Harry blankly .Professor Snape dear said Mrs Weasley reprovingly .Now come on quickly he says he cant stay long .Whats he want with you ?said Ron looking unnerved as Mrs Weasley withdrew from the room .You havent done anything have you ?No !said Harry indignantly racking his brains to think what he could have done that would make Snape pursue him to Grimmauld Place .Had his last piece of homework perhaps earned a T ?He pushed open the kitchen door a minute or two later to find Sirius and Snape both seated at the long kitchen table glaring in opposite directions .The silence between them was heavy with mutual dislike .A letter lay open on the table in front of Sirius .Er said Harry to announce his presence .Snape looked around at him his face framed between curtains of greasy black hair .Sit down Potter .You know said Sirius loudly leaning back on his rear chair legs and speaking to the ceiling I think Id prefer it if you didnt give orders here Snape .Its my house you see .An ugly flush suffused Snape s pallid face .Harry sat down in a chair beside Sirius facing Snape across the table .I was supposed to see you alone Potter said Snape the familiar sneer curling his mouth but Black Im his godfather said Sirius louder than ever .I am here on Dumbledores orders said Snape whose voice by contrast was becoming more and more quietly waspish but by all means stay Black I know you like to feel .involved .Whats that supposed to mean ?said Sirius letting his chair fall back onto all four legs with a loud bang .Merely that I am sure you must feel ah frustrated by the fact that you can do nothing useful Snape laid a delicate stress on the word for the Order .It was Siriuss turn to flush .Snape s lip curled in triumph as he turned to Harry .The headmaster has sent me to tell you Potter that it is his wish for you to study Occlumency this term .Study what ?said Harry blankly .Snapes sneer became more pronounced .Occlumency Potter .The magical defense of the mind against external penetration .An obscure branch of magic but a highly useful one .Harrys heart began to pump very fast indeed .Defense against external penetration ?But he was not being possessed they had all agreed on that .Why do I have to study Occlu thing ?he blurted out .Because the headmaster thinks it a good idea said Snape smoothly .You will receive private lessons once a week but you will not tell anybody what you are doing least of all Dolores Umbridge .You understand ?Yes said Harry .Whos going to be teaching me ?Snape raised an eyebrow .I am he said .Harry had the horrible sensation that his insides were melting .Extra lessons with Snape what on earth had he done to deserve this ?He looked quickly around at Sirius for support .Why cant Dumbledore teach Harry ?asked Sirius aggressively .Why you ?I suppose because it is a headmasters privilege to delegate less enjoyable tasks said Snape silkily .I assure you I did not beg for the job .He got to his feet .I will expect you at six oclock on Monday evening Potter .My office .If anybody asks you are taking Remedial Potions .Nobody who has seen you in my classes could deny you need them .He turned to leave his black traveling cloak billowing behind him .Wait a moment said Sirius sitting up straighter in his chair .Snape turned back to face them sneering .I am in rather a hurry Black .unlike you I do not have unlimited leisure time .Ill get to the point then said Sirius standing up .He was rather taller than Snape who Harry noticed had balled his fist in the pocket of his cloak over what Harry was sure was the handle of his wand .If I hear youre using these Occlumency lessons to give Harry a hard time youll have me to answer to .How touching Snape sneered .But surely you have noticed that Potter is very like his father ?Yes I have said Sirius proudly .Well then youll know hes so arrogant that criticism simply bounces off him Snape said sleekly .Sirius pushed his chair roughly aside and strode around the table toward Snape pulling out his wand as he went Snape whipped out his own .They were squaring up to each other Sirius looking livid Snape calculating his eyes darting from Siriuss wand tip to his face .Sirius !said Harry loudly but Sirius appeared not to hear him .Ive warned you Snivellus said Sirius his face barely a foot from Snape s I dont care if Dumbledore thinks youve reformed I know better Oh but why dont you tell him so ?whispered Snape .Or are you afraid he might not take the advice of a man who has been hiding inside his mothers house for six months very seriously ?Tell me how is Lucius Malfoy these days ?I expect hes delighted his lapdogs working at Hogwarts isnt he ?Speaking of dogs said Snape softly did you know that Lucius Malfoy recognized you last time you risked a little jaunt outside ?Clever idea Black getting yourself seen on a safe station platform .gave you a castiron excuse not to leave your hidey hole in future didnt it ?Sirius raised his wand .NO !Harry yelled vaulting over the table and trying to get in between them Sirius dont Are you calling me a coward ?roared Sirius trying to push Harry out of the way but Harry would not budge .Why yes I suppose I am said Snape .Harry get out of it !snarled Sirius pushing him out of the way with his free hand .The kitchen door opened and the entire Weasley family plus Hermione came inside all looking very happy with Mr Weasley walking proudly in their midst dressed in a pair of striped pajamas covered by a mackintosh .Cured !he announced brightly to the kitchen at large .Completely cured !He and all the other Weasleys froze on the threshold gazing at the scene in front of them which was also suspended in midaction both Sirius and Snape looking toward the door with their wands pointing into each others faces and Harry immobile between them a hand stretched out to each of them trying to force them apart .Merlins beard said Mr Weasley the smile sliding off his face whats going on here ?Both Sirius and Snape lowered their wands .Harry looked from one to the other .Each wore an expression of utmost contempt yet the unexpected entrance of so many witnesses seemed to have brought them to their senses .Snape pocketed his wand and swept back across the kitchen passing the Weasleys without comment .At the door he looked back .Six oclock Monday evening Potter .He was gone .Sirius glared after him his wand at his side .But whats been going on ?asked Mr Weasley again .Nothing Arthur said Sirius who was breathing heavily as though he had just run a long distance .Just a friendly little chat between two old school friends .With what looked like an enormous effort he smiled .So .youre cured ?Thats great news really great .Yes isnt it ?said Mrs Weasley leading her husband forward into a chair .Healer Smethwyck worked his magic in the end found an antidote to whatever that snakes got in its fangs and Arthurs learned his lesson about dabbling in Muggle medicine havent you dear ?she added rather menacingly .Yes Molly dear said Mr Weasley meekly .That nights meal should have been a cheerful one with Mr Weasley back amongst them Harry could tell Sirius was trying to make it so yet when his godfather was not forcing himself to laugh loudly at Fred and Georges jokes or offering everyone more food his face fell back into a moody brooding expression .Harry was separated from him by Mundungus and MadEye who had dropped in to offer Mr Weasley their congratulations he wanted to talk to Sirius to tell him that he should not listen to a word Snape said that Snape was goading him deliberately and that the rest of them did not think Sirius was a coward for doing as Dumbledore told him and remaining in Grimmauld Place but he had no opportunity to do so and wondered occasionally eyeing the ugly look on Siriuss face whether he would have dared to even if he had the chance .Instead he told Ron and Hermione under his voice about having to take Occlumency lessons with Snape .Dumbledore wants to stop you having those dreams about Voldemort said Hermione at once .Well you wont be sorry not to have them anymore will you ?Extra lessons with Snape ?said Ron sounding aghast .Id rather have the nightmares !They were to return to Hogwarts on the Knight Bus the following day escorted once again by Tonks and Lupin both of whom were eating breakfast in the kitchen when Harry Ron and Hermione arrived there next morning .The adults seemed to have been midway through a whispered conversation when the door opened all of them looked around hastily and fell silent .After a hurried breakfast they pulled on jackets and scarves against the chilly gray January morning .Harry had an unpleasant constricted sensation in his chest he did not want to say goodbye to Sirius .He had a bad feeling about this parting he did not know when they would next see each other and felt that it was incumbent upon him to say something to Sirius to stop him doing anything stupid Harry was worried that Snapes accusation of cowardice had stung Sirius so badly he might even now be planning some foolhardy trip beyond Grimmauld Place .Before he could think of what to say however Sirius had beckoned him to his side .I want you to take this he said quietly thrusting a badly wrapped package roughly the size of a paperback book into Harrys hands .What is it ?Harry asked .A way of letting me know if Snapes giving you a hard time .No dont open it in here !said Sirius with a wary look at Mrs Weasley who was trying to persuade the twins to wear handknitted mittens .I doubt Molly would approve but I want you to use it if you need me all right ?Okay said Harry stowing the package away in the inside pocket of his jacket but he knew he would never use whatever it was .It would not be he Harry who lured Sirius from his place of safety no matter how foully Snape treated him in their forthcoming Occlumency classes .Lets go then said Sirius clapping Harry on the shoulder and smiling grimly and before Harry could say anything else they were heading upstairs stopping before the heavily chained and bolted front door surrounded by Weasleys .Goodbye Harry take care said Mrs Weasley hugging him .See you Harry and keep an eye out for snakes for me !said Mr Weasley genially shaking his hand .Right yeah said Harry distractedly .It was his last chance to tell Sirius to be careful he turned looked into his godfathers face and opened his mouth to speak but before he could do so Sirius was giving him a brief onearmed hug .He said gruffly Look after yourself Harry and next moment Harry found himself being shunted out into the icy winter air with Tonks today heavily disguised as a tall tweedy woman with irongray hair chivvying him down the steps .The door of number twelve slammed shut behind them .They followed Lupin down the front steps .As he reached the pavement Harry looked around .Number twelve was shrinking rapidly as those on either side of it stretched sideways squeezing it out of sight one blink later it had gone .Come on the quicker we get on the bus the better said Tonks and Harry thought there was nervousness in the glance she threw around the square .Lupin flung out his right arm .BANG .A violently purple tripledecker bus had appeared out of thin air in front of them narrowly avoiding the nearest lamppost which jumped backward out of its way .A thin pimply jugeared youth in a purple uniform leapt down onto the pavement and said Welcome to the Yes yes we know thank you said Tonks swiftly .On on get on And she shoved Harry forward toward the steps past the conductor who goggled at Harry as he passed .Ere its Arry !If you shout his name I will curse you into oblivion muttered Tonks menacingly now shunting Ginny and Hermione forward .Ive always wanted to go on this thing said Ron happily joining Harry on board and looking around .It had been evening the last time Harry had traveled by Knight Bus and its three decks had been full of brass bedsteads .Now in the early morning it was crammed with an assortment of mismatched chairs grouped haphazardly around windows .Some of these appeared to have fallen over when the bus stopped abruptly in Grimmauld Place a few witches and wizards were still getting to their feet grumbling and somebodys shopping bag had slid the length of the bus an unpleasant mixture of frog spawn cockroaches and custard creams was scattered all over the floor .Looks like well have to split up said Tonics briskly looking around for empty chairs .Fred George and Ginny if you just take those seats at the back .Remus can stay with you .She Harry Ron and Hermione proceeded up to the very top deck where there were two chairs at the very front of the bus and two at the back .Stan Shunpike the conductor followed Harry and Ron eagerly to the back .Heads turned as Harry passed and when he sat down he saw all the faces flick back to the front again .As Harry and Ron handed Stan eleven Sickles each the bus set off again swaying ominously .It rumbled around Grimmauld Square weaving on and off the pavement then with another tremendous BANG they were all flung backward Rons chair toppled right over and Pigwidgeon who had been on his lap burst out of his cage and flew twittering wildly up to the front of the bus where he fluttered down upon Hermiones shoulder instead .Harry who had narrowly avoided falling by seizing a candle bracket looked out of the window they were now speeding down what appeared to be a motorway .Just outside Birmingham said Stan happily answering Harrys unasked question as Ron struggled up from the floor .You keepin well then Arry ?I seen your name in the paper loads over the summer but it werent never nuffink very nice .I said to Ern I said ‘e didnt seem like a nutter when we met im just goes to show dunnit ?He handed over their tickets and continued to gaze enthralled at Harry apparently Stan did not care how nutty somebody was if they were famous enough to be in the paper .The Knight Bus swayed alarmingly overtaking a line of cars on the inside .Looking toward the front of the bus Harry saw Hermione cover her eyes with her hands Pigwidgeon still swaying happily on her shoulder .BANG .Chairs slid backward again as the Knight Bus jumped from the Birmingham motorway to a quiet country lane full of hairpin bends .Hedgerows on either side of the road were leaping out of their way as they mounted the verges .From here they moved to a main street in the middle of a busy town then to a viaduct surrounded by tall hills then to a windswept road between highrise flats each time with a loud BANG .Ive changed my mind muttered Ron picking himself up from the floor for the sixth time I never want to ride on here again .Listen its Ogwarts stop after this said Stan brightly swaying toward them .That bossy woman up front oo got on with you shes given us a little tip to move you up the queue .Were just gonna let Madam Marsh off first though There was more retching from downstairs followed by a horrible spattering sound .Shes not feeling er best .A few minutes later the Knight Bus screeched to a halt outside a small pub which squeezed itself out of the way to avoid a collision .They could hear Stan ushering the unfortunate Madam Marsh out of the bus and the relieved murmurings of her fellow passengers on the second deck .The bus moved on again gathering speed until BANG .They were rolling through a snowy Hogsmeade .Harry caught a glimpse of the Hogs Head down its side street the severed boars head sign creaking in the wintry wind .Flecks of snow hit the large window at the front of the bus .At last they rolled to a halt outside the gates to Hogwarts .Lupin and Tonks helped them off the bus with their luggage and then got off to say goodbye .Harry glanced up at the three decks of the Knight Bus and saw all the passengers staring down at them noses flat against the windows .Youll be safe once youre in the grounds said Tonks casting a careful eye around at the deserted road .Have a good term okay ?Look after yourselves said Lupin shaking hands all round and reaching Harry last .And listen .He lowered his voice while the rest of them exchanged lastminute goodbyes with Tonks Harry I know you dont like Snape but he is a superb Occlumens and we all Sirius included want you to learn to protect yourself so work hard all right ?Yeah all right said Harry heavily looking up into Lupins prematurely lined face .See you then .The six of them struggled up the slippery drive toward the castle dragging their trunks .Hermione was already talking about knitting a few elf hats before bedtime .Harry glanced back when they reached the oak front doors the Knight Bus had already gone and he halfwished given what was coming the following day that he was still on board .Harry spent most of the next day dreading the evening .His morning Potions lesson did nothing to dispel his trepidation as Snape was as unpleasant as ever and Harrys mood was further lowered by the fact that members of the D .A .were continually approaching him in the corridors between classes asking hopefully whether there would be a meeting that night .Ill let you know when the next one is Harry said over and over again but I cant do it tonight Ive got to go to er Remedial Potions .You take Remedial Potions ?asked Zacharias Smith superciliously having cornered Harry in the entrance hall after lunch .Good Lord you must be terrible Snape doesnt usually give extra lessons does he ?As Smith strode away in an annoyingly buoyant fashion Ron glared after him .Shall I jinx him ?I can still get him from here he said raising his wand and taking aim between Smiths shoulder blades .Forget it said Harry dismally .Its what everyones going to think isnt it ?That Im really stup Hi Harry said a voice behind him .He turned around and found Cho standing there .Oh said Harry as his stomach leapt uncomfortably .Hi .Well be in the library Harry said Hermione firmly and she seized Ron above the elbow and dragged him off toward the marble staircase .Had a good Christmas ?asked Cho .Yeah not bad said Harry .Mine was pretty quiet said Cho .For some reason she was looking rather embarrassed .Erm .theres another Hogsmeade trip next month did you see the notice ?What ?Oh no I havent checked the notice board since I got back .Yes its on Valentines Day .Right said Harry wondering why she was telling him this .Well I suppose you want to ?Only if you do she said eagerly .Harry stared .He had been about to say I suppose you want to know when the next D .A .meeting is ?but her response did not seem to fit .I er he said .Oh its okay if you dont she said looking mortified .Dont worry .IIll see you around .She walked away .Harry stood staring after her his brain working frantically .Then something clunked into place .Cho !Hey CHO !He ran after her catching her halfway up the marble staircase .Er dyou want to come into Hogsmeade with me on Valentines Day ?Oooh yes !she said blushing crimson and beaming at him .Right .well .thats settled then said Harry and feeling that the day was not going to be a complete loss after all he headed off to the library to pick up Ron and Hermione before their afternoon lessons walking in a rather bouncy way himself .By six oclock that evening however even the glow of having successfully asked out Cho Chang was insufficient to lighten the ominous feelings that intensified with every step Harry took toward Snapes office .He paused outside the door when he reached it wishing he were almost anywhere else then taking a deep breath knocked and entered .It was a shadowy room lined with shelves bearing hundreds of glass jars in which floated slimy bits of animals and plants suspended in variously colored potions .In a corner stood the cupboard full of ingredients that Snape had once accused Harry not without reason of robbing .Harrys attention was drawn toward the desk however where a shallow stone basin engraved with runes and symbols lay in a pool of candlelight .Harry recognized it at once Dumbledores Pensieve .Wondering what on earth it was doing here he jumped when Snapes cold voice came out of the corner .Shut the door behind you Potter .Harry did as he was told with the horrible feeling that he was imprisoning himself as he did so .When he turned back to face the room Snape had moved into the light and was pointing silently at the chair opposite his desk .Harry sat down and so did Snape his cold black eyes fixed unblinkingly upon Harry dislike etched in every line of his face .Well Potter you know why you are here he said .The headmaster has asked me to teach you Occlumency .I can only hope that you prove more adept at it than Potions .Right said Harry tersely .This may not be an ordinary class Potter said Snape his eyes narrowed malevolently but I am still your teacher and you will therefore call me ‘sir or ‘Professor at all times .Yes .sir said Harry .Now Occlumency .As I told you back in your dear godfathers kitchen this branch of magic seals the mind against magical intrusion and influence .And why does Professor Dumbledore think I need it sir ?said Harry looking directly into Snapes dark cold eyes and wondering whether he would answer .Snape looked back at him for a moment and then said contemptuously Surely even you could have worked that out by now Potter ?The Dark Lord is highly skilled at Legilimency Whats that ?Sir ?It is the ability to extract feelings and memories from another persons mind He can read minds ?said Harry quickly his worst fears confirmed .You have no subtlety Potter said Snape his dark eyes glittering .You do not understand fine distinctions .It is one of the shortcomings that makes you such a lamentable potionmaker .Snape paused for a moment apparently to savor the pleasure of insulting Harry before continuing Only Muggles talk of ‘mind reading .The mind is not a book to be opened at will and examined at leisure .Thoughts are not etched on the inside of skulls to be perused by any invader .The mind is a complex and manylayered thing Potter .or at least most minds are .He smirked .It is true however that those who have mastered Legilimency are able under certain conditions to delve into the minds of their victims and to interpret their findings correctly .The Dark Lord for instance almost always knows when somebody is lying to him .Only those skilled at Occlumency are able to shut down those feelings and memories that contradict the lie and so utter falsehoods in his presence without detection .Whatever Snape said Legilimency sounded like mind reading to Harry and he did not like the sound of it at all .So he could know what were thinking right now ?Sir ?The Dark Lord is at a considerable distance and the walls and grounds of Hogwarts are guarded by many ancient spells and charms to ensure the bodily and mental safety of those who dwell within them said Snape .Time and space matter in magic Potter .Eye contact is often essential to Legilimency .Well then why do I have to learn Occlumency ?Snape eyed Harry tracing his mouth with one long thin finger as he did so .The usual rules do not seem to apply with you Potter .The curse that failed to kill you seems to have forged some kind of connection between you and the Dark Lord .The evidence suggests that at times when your mind is most relaxed and vulnerable when you are asleep for instance you are sharing the Dark Lords thoughts and emotions .The headmaster thinks it inadvisable for this to continue .He wishes me to teach you how to close your mind to the Dark Lord .Harrys heart was pumping fast again .None of this added up .But why does Professor Dumbledore want to stop it ?he asked abruptly .I dont like it much but its been useful hasnt it ?I mean .I saw that snake attack Mr Weasley and if I hadnt Professor Dumbledore wouldnt have been able to save him would he ?Sir ?Snape stared at Harry for a few moments still tracing his mouth with his finger .When he spoke again it was slowly and deliberately as though he weighed every word .It appears that the Dark Lord has been unaware of the connection between you and himself until very recently .Up till now it seems that you have been experiencing his emotions and sharing his thoughts without his being any the wiser .However the vision you had shortly before Christmas The one with the snake and Mr Weasley ?Do not interrupt me Potter said Snape in a dangerous voice .As I was saying .the vision you had shortly before Christmas represented such a powerful incursion upon the Dark Lords thoughts I saw inside the snakes head not his !I thought I just told you not to interrupt me Potter ?But Harry did not care if Snape was angry at last he seemed to be getting to the bottom of this business .He had moved forward in his chair so that without realizing it he was perched on the very edge tense as though poised for flight .How come I saw through the snakes eyes if its Voldemorts thoughts Im sharing ?Do not say the Dark Lords name spat Snape .There was a nasty silence .They glared at each other across the Pensieve .Professor Dumbledore says his name said Harry quietly .Dumbledore is an extremely powerful wizard Snape muttered .While he may feel secure enough to use the name .the rest of us .He rubbed his left forearm apparently unconsciously on the spot where Harry knew the Dark Mark was burned into his skin .I just wanted to know Harry began again forcing his voice back to politeness why You seem to have visited the snakes mind because that was where the Dark Lord was at that particular moment snarled Snape .He was possessing the snake at the time and so you dreamed you were inside it too .And Vol he realized I was there ?It seems so said Snape coolly .How do you know ?said Harry urgently .Is this just Professor Dumbledore guessing or ?I told you said Snape rigid in his chair his eyes slits to call me ‘sir .Yes sir said Harry impatiently but how do you know ?It is enough that we know said Snape repressively .The important point is that the Dark Lord is now aware that you are gaining access to his thoughts and feelings .He has also deduced that the process is likely to work in reverse that is to say he has realized that he might be able to access your thoughts and feelings in return And he might try and make me do things ?asked Harry .Sir ?he added hurriedly .He might said Snape sounding cold and unconcerned .Which brings us back to Occlumency .Snape pulled out his wand from an inside pocket of his robes and Harry tensed in his chair but Snape merely raised the wand to his temple and placed its tip into the greasy roots of his hair .When he withdrew it some silvery substance came away stretching from temple to wand like a thick gossamer strand which broke as he pulled the wand away from it and fell gracefully into the Pensieve where it swirled silvery white neither gas nor liquid .Twice more Snape raised the wand to his temple and deposited the silvery substance into the stone basin then without offering any explanation of his behavior he picked up the Pensieve carefully removed it to a shelf out of their way and returned to face Harry with his wand held at the ready .Stand up and take out your wand Potter .Harry got to his feet feeling nervous .They faced each other with the desk between them .You may use your wand to attempt to disarm me or defend yourself in any other way you can think of said Snape .And what are you going to do ?Harry asked eyeing Snape s wand apprehensively .I am about to attempt to break into your mind said Snape softly .We are going to see how well you resist .I have been told that you have already shown aptitude at resisting the Imperius Curse .You will find that similar powers are needed for this .Brace yourself now .LegilimensV Snape had struck before Harry was ready before Harry had even begun to summon any force of resistance the office swam in front of his eyes and vanished image after image was racing through his mind like a flickering film so vivid it blinded him to his surroundings .He was five watching Dudley riding a new red bicycle and his heart was bursting with jealousy .He was nine and Ripper the bulldog was chasing him up a tree and the Dursleys were laughing below on the lawn .He was sitting under the Sorting Hat and it was telling him he would do well in Slytherin .Hermione was lying in the hospital wing her face covered with thick black hair .A hundred dementors were closing in on him beside the dark lake .Cho Chang was drawing nearer to him under the mistletoe .No said a voice in Harrys head as the memory of Cho drew nearer youre not watching that youre not watching it its private He felt a sharp pain in his knee .Snape s office had come back into view and he realized that he had fallen to the floor one of his knees had collided painfully with the leg of Snape s desk .He looked up at Snape who had lowered his wand and was rubbing his wrist .There was an angry weal there like a scorch mark .Did you mean to produce a Stinging Hex ?asked Snape coolly .No said Harry bitterly getting up from the floor .I thought not said Snape contemptuously .You let me get in too far .You lost control .Did you see everything I saw ?Harry asked unsure whether he wanted to hear the answer .Flashes of it said Snape his lip curling .To whom did the dog belong ?My Aunt Marge Harry muttered hating Snape .Well for a first attempt that was not as poor as it might have been said Snape raising his wand once more .You managed to stop me eventually though you wasted time and energy shouting .You must remain focused .Repel me with your brain and you will not need to resort to your wand .Im trying said Harry angrily but youre not telling me how !Manners Potter said Snape dangerously .Now I want you to close your eyes .Harry threw him a filthy look before doing as he was told .He did not like the idea of standing there with his eyes shut while Snape faced him carrying a wand .Clear your mind Potter said Snape s cold voice .Let go of all emotion .But Harrys anger at Snape continued to pound through his veins like venom .Let go of his anger ?He could as easily detach his legs .Youre not doing it Potter .You will need more discipline than this .Focus now .Harry tried to empty his mind tried not to think or remember or feel .Lets go again .on the count of three .one two three Legilimensl A great black dragon was rearing in front of him .His father and mother were waving at him out of an enchanted mirror .Cedric Diggory was lying on the ground with blank eyes staring at him .NOOOOOOO !He was on his knees again his face buried in his hands his brain aching as though someone had been trying to pull it from his skull .Get up !said Snape sharply .Get up !You are not trying you are making no effort you are allowing me access to memories you fear handing me weapons !Harry stood up again his heart thumping wildly as though he had really just seen Cedric dead in the graveyard .Snape looked paler than usual and angrier though not nearly as angry as Harry was .I am making an effort he said through clenched teeth .I told you to empty yourself of emotion !Yeah ?Well Im finding that hard at the moment Harry snarled .Then you will find yourself easy prey for the Dark Lord !said Snape savagely .Fools who wear their hearts proudly on their sleeves who cannot control their emotions who wallow in sad memories and allow themselves to be provoked this easily weak people in other words they stand no chance against his powers !He will penetrate your mind with absurd ease Potter !I am not weak said Harry in a low voice fury now pumping through him so that he thought he might attack Snape in a moment .Then prove it !Master yourself !spat Snape .Control your anger discipline your mind !We shall try again !Get ready now !Legilimens He was watching Uncle Vernon hammering the letter box shut .A hundred dementors were drifting across the lake in the grounds toward him .He was running along a windowless passage with Mr Weasley .They were drawing nearer to the plain black door at the end of the corridor .Harry expected to go through it .but Mr Weasley led him off to the left down a flight of stone steps .I KNOW !I KNOW !He was on all fours again on Snapes office floor his scar was prickling unpleasantly but the voice that had just issued from his mouth was triumphant .He pushed himself up again to find Snape staring at him his wand raised .It looked as though this time Snape had lifted the spell before Harry had even tried to fight back .What happened then Potter ?he asked eyeing Harry intently .I saw I remembered Harry panted .Ive just realized .Realized what ?asked Snape sharply .Harry did not answer at once he was still savoring the moment of blinding realization as he rubbed his forehead .He had been dreaming about a windowless corridor ending in a locked door for months without once realizing that it was a real place .Now seeing the memory again he knew that all along he had been dreaming about the corridor down which he had run with Mr Weasley on the twelfth of August as they hurried to the courtrooms in the Ministry .It was the corridor leading to the Department of Mysteries and Mr Weasley had been there the night that he had been attacked by Voldemorts snake .He looked up at Snape .Whats in the Department of Mysteries ?What did you say ?Snape asked quietly and Harry saw with deep satisfaction that Snape was unnerved .I said whats in the Department of Mysteries sir ?Harry said .And why said Snape slowly would you ask such a thing ?Because said Harry watching Snape closely for a reaction that corridor Ive just seen Ive been dreaming about it for months Ive just recognized it it leads to the Department of Mysteries .and I think Voldemort wants something from I have told you not to say the Dark Lords name They glared at each other .Harrys scar seared again but he did not care .Snape looked agitated .When he spoke again he sounded as though he was trying to appear cool and unconcerned .There are many things in the Department of Mysteries Potter few of which you would understand and none of which concern you do I make myself plain ?Yes Harry said still rubbing his prickling scar which was becoming more painful .I want you back here same time on Wednesday and we will continue work then .Fine said Harry .He was desperate to get out of Snape s office and find Ron and Hermione .You are to rid your mind of all emotion every night before sleep empty it make it blank and calm you understand ?Yes said Harry who was barely listening .And be warned Potter .I shall know if you have not practiced .Right Harry mumbled .He picked up his schoolbag swung it over his shoulder and hurried toward the office door .As he opened it he glanced back at Snape who had his back to Harry and was scooping his own thoughts out of the Pensieve with the tip of his wand and replacing them carefully inside his own head .Harry left without another word closing the door carefully behind him his scar still throbbing painfully .Harry found Ron and Hermione in the library where they were working on Umbridges most recent ream of homework .Other students nearly all of them fifth years sat at lamplit tables nearby noses close to books quills scratching feverishly while the sky outside the mullioned windows grew steadily blacker .The only other sound was the slight squeaking of one of Madam Pinces shoes as the librarian prowled the aisles menacingly breathing down the necks of those touching her precious books .Harry felt shivery his scar was still aching he felt almost feverish .When he sat down opposite Ron and Hermione he caught sight of himself in the window opposite .He was very white and his scar seemed to be showing up more clearly than usual .How did it go ?Hermione whispered and then looking concerned Are you all right Harry ?Yeah .fine .I dunno said Harry impatiently wincing as pain shot through his scar again .Listen .Ive just realized something .And he told them what he had just seen and deduced .So .so are you saying .whispered Ron as Madam Pince swept past squeaking slightly that the weapon the thing YouKnow Whos after is in the Ministry of Magic ?In the Department of Mysteries its got to be Harry whispered .I saw that door when your dad took me down to the courtrooms for my hearing and its definitely the same one he was guarding when the snake bit him .Hermione let out a long slow sigh .Of course she breathed .Of course what ?said Ron rather impatiently .Ron think about it .Sturgis Podmore was trying to get through a door at the Ministry of Magic .It must have been that one its too much of a coincidence !How come Sturgis was trying to break in when hes on our side ?said Ron .Well I dont know Hermione admitted .That is a bit odd .So whats in the Department of Mysteries ?Harry asked Ron .Has your dad ever mentioned anything about it ?I know they call the people who work in there ‘Unspeakables said Ron frowning .Because no one really seems to know what they do in there .Weird place to have a weapon .Its not weird at all it makes perfect sense said Hermione .It will be something top secret that the Ministry has been developing I expect .Harry are you sure youre all right ?For Harry had just run both his hands hard over his forehead as though trying to iron it .Yeah .fine .he said lowering his hands which were trembling .I just feel a bit .I dont like Occlumency much .I expect anyone would feel shaky if theyd had their mind attacked over and over again said Hermione sympathetically .Look lets get back to the common room well be a bit more comfortable there .But the common room was packed and full of shrieks of laughter and excitement Fred and George were demonstrating their latest bit of joke shop merchandise .Headless Hats !shouted George as Fred waved a pointed hat decorated with a fluffy pink feather at the watching students .Two Galleons each watch Fred now !Fred swept the hat onto his head beaming .For a second he merely looked rather stupid then both hat and head vanished .Several girls screamed but everyone else was roaring with laughter .And off again !shouted George and Freds hand groped for a moment in what seemed to be thin air over his shoulder then his head reappeared as he swept the pinkfeathered hat from it again .How do those hats work then ?said Hermione distracted from her homework and watching Fred and George .I mean obviously its some kind of Invisibility Spell but its rather clever to have extended the field of invisibility beyond the boundaries of the charmed object .Id imagine the charm wouldnt have a very long life though .Harry did not answer he was still feeling ill .Im going to have to do this tomorrow he muttered pushing the books he had just taken out of his bag back inside it .Well write it in your homework planner then !said Hermione encouragingly .So you dont forget !Harry and Ron exchanged looks as he reached into his bag withdrew the planner and opened it tentatively .Dont leave it till later you big secondrateri chided the book as Harry scribbled down Umbridges homework .Hermione beamed at it .I think 111 go to bed said Harry stuffing the homework planner back into his bag and making a mental note to drop it in the fire the first opportunity he got .He walked across the common room dodging George who tried to put a Headless Hat on him and reached the peace and cool of the stone staircase to the boys dormitories .He was feeling sick again just as he had the night he had had the vision of the snake but thought that if he could just lie down for a while he would be all right .He opened the door of his dormitory and was one step inside it when he experienced pain so severe he thought that someone must have sliced into the top of his head .He did not know where he was whether he was standing or lying down he did not even know his own name .Maniacal laughter was ringing in his ears .He was happier than he had been in a very long time .Jubilant ecstatic triumphant .A wonderful wonderful thing had happened .Harry ?HARRY !Someone had hit him around the face .The insane laughter was punctuated with a cry of pain .The happiness was draining out of him but the laughter continued .He opened his eyes and as he did so he became aware that the wild laughter was coming out of his own mouth .The moment he realized this it died away Harry lay panting on the floor staring up at the ceiling the scar on his forehead throbbing horribly .Ron was bending over him looking very worried .What happened ?he said .I .dunno .Harry gasped sitting up again .Hes really happy .really happy .YouKnowWho is ?Something goods happened mumbled Harry .He was shaking as badly as he had done after seeing the snake attack Mr Weasley and felt very sick .Something hes been hoping for .The words came just as they had back in the Gryffindor changing room as though a stranger was speaking them through Harrys mouth yet he knew they were true .He took deep breaths willing himself not to vomit all over Ron .He was very glad that Dean and Seamus were not here to watch this time .Hermione told me to come and check on you said Ron in a low voice helping Harry to his feet .She says your defenses will be low at the moment after Snapes been fiddling around with your mind .Still I suppose itll help in the long run wont it ?He looked doubtfully at Harry as he helped him toward bed .Harry nodded without any conviction and slumped back on his pillows aching all over from having fallen to the floor so often that evening his scar still prickling painfully .He could not help feeling that his first foray into Occlumency had weakened his minds resistance rather than strengthening it and he wondered with a feeling of great trepidation what had happened to make Lord Voldemort the happiest he had been in fourteen years .THE BEETLE AT BAY Harrys question was answered the very next morning .When Hermiones Daily Prophet arrived she smoothed it out gazed for a moment at the front page and then gave a yelp that caused everyone in the vicinity to stare at her .What ?said Harry and Ron together .For an answer she spread the newspaper on the table in front of them and pointed at ten blackandwhite photographs that filled the whole of the front page nine showing wizards faces and the tenth a witchs .Some of the people in the photographs were silently jeering others were tapping their fingers on the frame of their pictures looking insolent .Each picture was captioned with a name and the crime for which the person had been sent to Azkaban .Antonin Dolohov read the legend beneath a wizard with a long pale twisted face who was sneering up at Harry convicted of the brutal murders of Gideon and Fabian Prewett .Augustus Rookwood said the caption beneath a pockmarked man with greasy hair who was leaning against the edge of his picture looking bored convicted of leaking Ministry of Magic Secrets to He WhoMustNotBeNamed .But Harrys eyes were drawn to the picture of the witch .Her face had leapt out at him the moment he had seen the page .She had long dark hair that looked unkempt and straggly in the picture though he had seen it sleek thick and shining .She glared up at him through heavily lidded eyes an arrogant disdainful smile playing around her thin mouth .Like Sirius she retained vestiges of great good looks but something perhaps Azkaban had taken most of her beauty .Bellatrix Lestrange convicted of the torture and permanent incapacitation of Frank and Alice Longbottom .Hermione nudged Harry and pointed at the headline over the pictures which Harry concentrating on Bellatrix had not yet read .MASS BREAKOUT FROM AZKABAN MINISTRY FEARS BLACK IS RALLYING POINT FOR OLD DEATH EATERS Black ?said Harry loudly .Not ?Shhh whispered Hermione desperately .Not so loud just read it !The Ministry of Magic announced late last night that there has been a mass breakout from Azkaban .Speaking to reporters in his private office Cornelius Fudge Minister of Magic confirmed that ten high security prisoners escaped in the early hours of yesterday evening and that he has already informed the Muggle Prime Minister of the dangerous nature of these individuals .We find ourselves most unfortunately in the same position we were two and a half years ago when the murderer Sirius Black escaped said Fudge last night .Nor do we think the two breakouts are unrelated .An escape of this magnitude suggests outside help and we must remember that Black as the first person ever to break out of Azkaban would be ideally placed to help others follow in his footsteps .We think it likely that these individuals who include Blacks cousin Bellatrix Lestrange have rallied around Black as their leader .We are however doing all we can to round up the criminals and beg the magical community to remain alert and cautious .On no account should any of these individuals be approached .There you are Harry said Ron looking awestruck .Thats why he was happy last night .I dont believe this snarled Harry Fudge is blaming the breakout on Sirius ?What other options does he have ?said Hermione bitterly .He can hardly say ‘Sorry everyone Dumbledore warned me this might happen the Azkaban guards have joined Lord Voldemort stop whimpering Ron ‘and now Voldemorts worst supporters have broken out too .I mean hes spent a good six months telling everyone you and Dumbledore are liars hasnt he ?Hermione ripped open the newspaper and began to read the report inside while Harry looked around the Great Hall .He could not understand why his fellow students were not looking scared or at least discussing the terrible piece of news on the front page but very few of them took the newspaper every day like Hermione .There they all were talking about homework and Quidditch and who knew what other rubbish and outside these walls ten more Death Eaters had swollen Voldemorts ranks .He glanced up at the staff table .It was a different story here Dumbledore and Professor McGonagall were deep in conversation both looking extremely grave .Professor Sprout had the Prophet propped against a bottle of ketchup and was reading the front page with such concentration that she was not noticing the gentle drip of egg yolk falling into her lap from her stationary spoon .Meanwhile at the far end of the table Professor Umbridge was tucking into a bowl of porridge .For once her pouchy toads eyes were not sweeping the Great Hall looking for misbehaving students .She scowled as she gulped down her food and every now and then she shot a malevolent glance up the table to where Dumbledore and McGonagall were talking so intently .Oh my said Hermione wonderingly still staring at the newspaper .What now ?said Harry quickly he was feeling jumpy .Its .horrible said Hermione looking shaken .She folded back page ten of the newspaper and handed it back to Harry and Ron .TRAGIC DEMISE OF MINISTRY OF MAGIC WORKER St .Mungos Hospital promised a full inquiry last night after Ministry of Magic worker Broderick Bode 49 was discovered dead in his bed strangled by a pottedplant .Healers called to the scene were unable to revive Mr Bode who had been injured in a workplace accident some weeks prior to his death .Healer Miriam Strout who was in charge of Mr Bodes ward at the time of the incident has been suspended on full pay and was unavailable for comment yesterday but a spokeswizard for the hospital said in a statement St .Mungos deeply regrets the death of Mr Bode whose health was improving steadily prior to this tragic accident .We have strict guidelines on the decorations permitted on our wards but it appears that Healer Strout busy over the Christmas period overlooked the dangers of the plant on Mr Bodes bedside table .As his speech and mobility improved Healer Strout encouraged Mr Bode to look after the plant himself unaware that it was not an innocent Flitterbloom but a cutting of Devils Snare which when touched by the convalescent Mr Bode throttled him instantly .St .Mungos is as yet unable to account for the presence of the plant on the ward and asks any witch or wizard with information to come forward .Bode .said Ron .Bode .It rings a bell .We saw him Hermione whispered .In St .Mungos remember ?He was in the bed opposite Lockharts just lying there staring at the ceiling .And we saw the Devils Snare arrive .She the Healer said it was a Christmas present .Harry looked back at the story .A feeling of horror was rising like bile in his throat .How come we didnt recognize Devils Snare . ?Weve seen it before .we couldve stopped this from happening .Who expects Devils Snare to turn up in a hospital disguised as a potted plant ?said Ron sharply .Its not our fault whoever sent it to the bloke is to blame !They must be a real prat why didnt they check what they were buying ?Oh come on Ron !said Hermione shakily I dont think anyone could put Devils Snare in a pot and not realize it tries to kill whoever touches it ?This this was murder .A clever murder as well .If the plant was sent anonymously hows anyone ever going to find out who did it ?Harry was not thinking about Devils Snare .He was remembering taking the lift down to the ninth level of the Ministry on the day of his hearing and the sallowfaced man who had got in on the Atrium level .I met Bode he said slowly .I saw him at the Ministry with your dad .Rons mouth fell open .Ive heard Dad talk about him at home !He was an Unspeakable he worked in the Department of Mysteries !They looked at one another for a moment then Hermione pulled the newspaper back toward her closed it glared for a moment at the pictures of the ten escaped Death Eaters on the front then leapt to her feet .Where are you going ?said Ron startled .To send a letter said Hermione swinging her bag onto her shoulder .It .well I dont know whether .but its worth trying .and Im the only one who can I hate it when she does that grumbled Ron as he and Harry got up from the table and made their own slower way out of the Great Hall .Would it kill her to tell us what shes up to for once ?Itd take her about ten more seconds hey Hagrid !Hagrid was standing beside the doors into the entrance hall waiting for a crowd of Ravenclaws to pass .He was still as heavily bruised as he had been on the day he had come back from his mission to the giants and there was a new cut right across the bridge of his nose .All righ you two ?he said trying to muster a smile but managing only a kind of pained grimace .Are you okay Hagrid ?asked Harry following him as he lumbered after the Ravenclaws .Fine fine said Hagrid with a feeble assumption of airiness he waved a hand and narrowly missed concussing a frightenedlooking Professor Vector who was passing .Jus busy yeh know usual stuff lessons ter prepare couple o salamanders got scale rot an Im on probation he mumbled .Youre on probation ?said Ron very loudly so that many students passing looked around curiously .Sorry I mean youre on probation ?he whispered .Yeah said Hagrid .Sno moren I expected ter tell yeh the truth .Yeh migh notve picked up on it bu that inspection didn go too well yeh know .anyway he sighed deeply .Bes go an mb a bit more chili powder on them salamanders or their tailsll be hangin off em next .See yeh Harry .Ron .He trudged away out the front doors and down the stone steps into the damp grounds .Harry watched him go wondering how much more bad news he could stand .The fact that Hagrid was now on probation became common knowledge within the school over the next few days but to Harrys indignation hardly anybody appeared to be upset about it indeed some people Draco Malfoy prominent among them seemed positively gleeful .As for the freakish death of an obscure Department of Mysteries employee in St .Mungos Harry Ron and Hermione seemed to be the only people who knew or cared .There was only one topic of conversation in the corridors now the ten escaped Death Eaters whose story had finally filtered through the school from those few people who read the newspapers .Rumors were flying that some of the convicts had been spotted in Hogsmeade that they were supposed to be hiding out in the Shrieking Shack and that they were going to break into Hogwarts just as Sirius Black had done .Those who came from Wizarding families had grown up hearing the names of these Death Eaters spoken with almost as much fear as Voldemorts the crimes they had committed during the days of Voldemorts reign of terror were legendary .There were relatives of their victims among the Hogwarts students who now found themselves the unwilling objects of a gruesome sort of reflected fame as they walked the corridors Susan Bones who had an uncle aunt and cousins who had all died at the hands of one of the ten said miserably during Herbology that she now had a good idea what it felt like to be Harry .And I dont know how you stand it its horrible she said bluntly dumping far too much dragon manure on her tray of Screechsnap seedlings causing them to wriggle and squeak in discomfort .It was true that Harry was the subject of much renewed muttering and pointing in the corridors these days yet he thought he detected a slight difference in the tone of the whisperers voices .They sounded curious rather than hostile now and once or twice he was sure he overheard snatches of conversation that suggested that the speakers were not satisfied with the Prophets version of how and why ten Death Eaters had managed to break out of Azkaban fortress .In their confusion and fear these doubters now seemed to be turning to the only other explanation available to them the one that Harry and Dumbledore had been expounding since the previous year .It was not only the students mood that had changed .It was now quite common to come across two or three teachers conversing in low urgent whispers in the corridors breaking off their conversations the moment they saw students approaching .They obviously cant talk freely in the staffroom anymore said Hermione in a low voice as she Harry and Ron passed Professors McGonagall Flitwick and Sprout huddled together outside the Charms classroom one day .Not with Umbridge there .Reckon they know anything new ?said Ron gazing back over his shoulder at the three teachers .If they do were not going to hear about it are we ?said Harry angrily .Not after Decree .What number are we on now ?For new signs had appeared on the house notice boards the morning after news of the Azkaban breakout BY ORDER OF THE HIGH INQUISITOR OF HOGWARTS Teachers are hereby banned from giving students any information that is not strictly related to the subjects they are paid to teach .The above is in accordance with Educational Decree Number Twentysix .Signed Dolores Jane Umbridge HIGH INQUISITOR This latest decree had been the subject of a great number of jokes among the students .Lee Jordan had pointed out to Umbridge that by the terms of the new rule she was not allowed to tell Fred and George off for playing Exploding Snap in the back of the class .Exploding Snaps got nothing to do with Defense Against the Dark Arts Professor !Thats not information relating to your subject !When Harry next saw Lee the back of his hand was bleeding rather badly .Harry recommended essence of murtlap .Harry had thought that the breakout from Azkaban might have humbled Umbridge a little that she might have been abashed at the catastrophe that had occurred right under her beloved Fudges nose .It seemed however to have only intensified her furious desire to bring every aspect of life at Hogwarts under her personal control .She seemed determined at the very least to achieve a sacking before long and the only question was whether it would be Professor Trelawney or Hagrid who went first .Every single Divination and Care of Magical Creatures lesson was now conducted in the presence of Umbridge and her clipboard .She lurked by the fire in the heavily perfumed tower room interrupting Professor Trelawneys increasingly hysterical talks with difficult questions about Ornithomancy and Heptomology insisting that she predict students answers before they gave them and demanding that she demonstrate her skill at the crystal ball the tea leaves and the rune stones in turn .Harry thought that Professor Trelawney might soon crack under the strain several times he passed her in the corridors in itself a very unusual occurrence as she generally remained in her tower room muttering wildly to herself wringing her hands and shooting terrified glances over her shoulder all the time giving off a powerful smell of cooking sherry .If he had not been so worried about Hagrid he would have felt sorry for her but if one of them was to be ousted out of a job there could be only one choice for Harry as to who should remain .Unfortunately Harry could not see that Hagrid was putting up a better show than Trelawney .Though he seemed to be following Hermiones advice and had shown them nothing more frightening than a crup a creature indistinguishable from a Jack Russell terrier except for its forked tail since before Christmas he also seemed to have lost his nerve .He was oddly distracted and jumpy in lessons losing the thread of what he was saying while talking to the class answering questions wrongly and glancing anxiously at Umbridge all the time .He was also more distant with Harry Ron and Hermione than he had ever been before expressly forbidding them to visit him after dark .If she catches yeh itll be all of our necks on the line he told them flatly and with no desire to do anything that jeopardized his job further they abstained from walking down to his hut in the evenings .It seemed to Harry that Umbridge was steadily depriving him of everything that made his life at Hogwarts worth living visits to Hagrids house letters from Sirius his Firebolt and Quidditch .He took his revenge the only way he had redoubling his efforts for the D .A .Harry was pleased to see that all of them even Zacharias Smith had been spurred to work harder than ever by the news that ten more Death Eaters were now on the loose but in nobody was this improvement more pronounced than in Neville .The news of his parents attackers escape had wrought a strange and even slightly alarming change in him .He had not once mentioned his meeting with Harry Ron and Hermione on the closed ward in St .Mungos and taking their lead from him they had kept quiet about it too .Nor had he said anything on the subject of Bellatrix and her fellow torturers escape in fact he barely spoke during D .A .meetings anymore but worked relentlessly on every new jinx and countercurse Harry taught them his plump face screwed up in concentration apparently indifferent to injuries or accidents working harder than anyone else in the room .He was improving so fast it was quite unnerving and when Harry taught them the Shield Charm a means of deflecting minor jinxes so that they rebounded upon the attacker only Hermione mastered the charm faster than Neville .In fact Harry would have given a great deal to be making as much progress at Occlumency as Neville was making during D .A .meetings .Harrys sessions with Snape which had started badly enough were not improving on the contrary Harry felt he was getting worse with every lesson .Before he had started studying Occlumency his scar had prickled occasionally usually during the night or else following one of those strange flashes of Voldemorts thoughts or moods that he experienced every now and then .Nowadays however his scar hardly ever stopped prickling and he often felt lurches of annoyance or cheerfulness that were unrelated to what was happening to him at the time which were always accompanied by a particularly painful twinge from his scar .He had the horrible impression that he was slowly turning into a kind of aerial that was tuned in to tiny fluctuations in Voldemorts mood and he was sure he could date this increased sensitivity firmly from his first Occlumency lesson with Snape .What was more he was now dreaming about walking down the corridor toward the entrance to the Department of Mysteries almost every night dreams that always culminated in him standing longingly in front of the plain black door .Maybe its a bit like an illness said Hermione looking concerned when Harry confided in her and Ron .A fever or something .It has to get worse before it gets better .Its lessons with Snape that are making it worse said Harry flatly .Im getting sick of my scar hurting and Im getting bored walking down that corridor every night .He rubbed his forehead angrily .I just wish the door would open Im sick of standing staring at it Thats not funny said Hermione sharply .Dumbledore doesnt want you to have dreams about that corridor at all or he wouldnt have asked Snape to teach you Occlumency .Youre just going to have to work a bit harder in your lessons .I am working !said Harry nettled .You try it sometime Snape trying to get inside your head its not a bundle of laughs you know !Maybe .said Ron slowly .Maybe what ?said Hermione rather snappishly .Maybe its not Harrys fault he cant close his mind said Ron darkly .What do you mean ?said Hermione .Well maybe Snape isnt really trying to help Harry .Harry and Hermione stared at him .Ron looked darkly and meaningfully from one to the other .Maybe he said again in a lower voice hes actually trying to open Harrys mind a bit wider .make it easier for YouKnow Shut up Ron said Hermione angrily .How many times have you suspected Snape and when have you ever been right ?Dumbledore trusts him he works for the Order that ought to be enough .He used to be a Death Eater said Ron stubbornly .And weve never seen proof that he really swapped sides .Dumbledore trusts him Hermione repeated .And if we cant trust Dumbledore we cant trust anyone .With so much to worry about and so much to do startling amounts of homework that frequently kept the fifth years working until past midnight secret D .A .meetings and regular classes with Snape January seemed to be passing alarmingly fast .Before Harry knew it February had arrived bringing with it wetter and warmer weather and the prospect of the second Hogsmeade visit of the year .Harry had had very little time to spare on conversations with Cho since they had agreed to visit the village together but suddenly found himself facing a Valentines Day spent entirely in her company .On the morning of the fourteenth he dressed particularly carefully .He and Ron arrived at breakfast just in time for the arrival of the post owls .Hedwig was not there not that he had expected her but Hermione was tugging a letter from the beak of an unfamiliar brown owl as they sat down .And about time !If it hadnt come today .she said eagerly tearing open the envelope and pulling out a small piece of parchment .Her eyes sped from left to right as she read through the message and a grimly pleased expression spread across her face .Listen Harry she said looking up at him .This is really important .Do you think you could meet me in the Three Broomsticks around midday ?Well .I dunno said Harry dubiously .Cho might be expecting me to spend the whole day with her .We never said what we were going to do .Well bring her along if you must said Hermione urgently .But will you come ?Well .all right but why ?I havent got time to tell you now Ive got to answer this quickly And she hurried out of the Great Hall the letter clutched in one hand and a piece of uneaten toast in the other .Are you coming ?Harry asked Ron but he shook his head looking glum .I cant come into Hogsmeade at all Angelina wants a full days training .Like its going to help were the worst team Ive ever seen .You should see Sloper and Kirke theyre pathetic even worse than I am .He heaved a great sigh .I dunno why Angelina wont just let me resign .Its because youre good when youre on form thats why said Harry irritably .He found it very hard to be sympathetic to Rons plight when he himself would have given almost anything to be playing in the forthcoming match against Hufflepuff .Ron seemed to notice Harrys tone because he did not mention Quidditch again during breakfast and there was a slight frostiness in the way they said goodbye to each other shortly afterward .Ron departed for the Quidditch pitch and Harry after attempting to flatten his hair while staring at his reflection in the back of a teaspoon proceeded alone to the entrance hall to meet Cho feeling very apprehensive and wondering what on earth they were going to talk about .She was waiting for him a little to the side of the oak front doors looking very pretty with her hair tied back in a long ponytail .Harrys feet seemed to be too big for his body as he walked toward her and he was suddenly horribly aware of his arms and how stupid they looked swinging at his sides .Hi said Cho slightly breathlessly .Hi said Harry .They stared at each other for a moment then Harry said Well er shall we go then ?Oh yes .They joined the queue of people being signed out by Filch occasionally catching each others eye and grinning shiftily but not talking to each other .Harry was relieved when they reached the fresh air finding it easier to walk along in silence than just stand there looking awkward .It was a fresh breezy sort of day and as they passed the Quidditch stadium Harry glimpsed Ron and Ginny skimming over the stands and felt a horrible pang that he was not up there with them .You really miss it dont you ?said Cho .He looked around and saw her watching him .Yeah sighed Harry .I do .Remember the first time we played against each other in the third year ?she asked him .Yeah said Harry grinning .You kept blocking me .And Wood told you not to be a gentleman and knock me off my broom if you had to said Cho smiling reminiscently .I heard he got taken on by Pride of Portree is that right ?Nah it was Puddlemere United I saw him at the World Cup last year .Oh I saw you there too remember ?We were on the same campsite .It was really good wasnt it ?The subject of the Quidditch World Cup carried them all the way down the drive and out through the gates .Harry could hardly believe how easy it was to talk to her no more difficult in fact than talking to Ron and Hermione and he was just starting to feel confident and cheerful when a large gang of Slytherin girls passed them including Pansy Parkinson .Potter and Chang !screeched Pansy to a chorus of snide giggles .Urgh Chang I dont think much of your taste .At least Diggory was goodlooking !They sped up talking and shrieking in a pointed fashion with many exaggerated glances back at Harry and Cho leaving an embarrassed silence in their wake .Harry could think of nothing else to say about Quidditch and Cho slightly flushed was watching her feet .So .where dyou want to go ?Harry asked as they entered Hogsmeade .The High Street was full of students ambling up and down peering into the shop windows and messing about together on the pavements .Oh .I dont mind said Cho shrugging .Um .shall we just have a look in the shops or something ?They wandered toward Dervish and Banges .A large poster had been stuck up in the window and a few Hogsmeaders were looking at it .They moved aside when Harry and Cho approached and Harry found himself staring once more at the ten pictures of the escaped Death Eaters .The poster By Order of the Ministry of Magic offered a thousandGalleon reward to any witch or wizard with information relating to the recapture of any of the convicts pictured .Its funny isnt it said Cho in a low voice also gazing up at the pictures of the Death Eaters .Remember when that Sirius Black escaped and there were dementors all over Hogsmeade looking for him ?And now ten Death Eaters are on the loose and there arent dementors anywhere .Yeah said Harry tearing his eyes away from Bellatrix Lestranges face to glance up and down the High Street .Yeah it is weird .He was not sorry that there were no dementors nearby but now he came to think of it their absence was highly significant .They had not only let the Death Eaters escape they were not bothering to look for them .It looked as though they really were outside Ministry control now .The ten escaped Death Eaters were staring out of every shop window he and Cho passed .It started to rain as they passed Scrivenshafts cold heavy drops of water kept hitting Harrys face and the back of his neck .Um .dyou want to get a coffee ?said Cho tentatively as the rain began to fall more heavily .Yeah all right said Harry looking around .Where ?Oh theres a really nice place just up here havent you ever been to Madam Puddifoots ?she said brightly and she led him up a side road and into a small tea shop that Harry had never noticed before .It was a cramped steamy little place where everything seemed to have been decorated with frills or bows .Harry was reminded unpleasantly of Umbridges office .Cute isnt it ?said Cho happily .Er .yeah said Harry untruthfully .Look shes decorated it for Valentines Day !said Cho indicating a number of golden cherubs that were hovering over each of the small circular tables occasionally throwing pink confetti over the occupants .aah .They sat down at the last remaining table which was situated in the steamy window .Roger Davies the Ravenclaw Quidditch Captain was sitting about a foot and a half away with a pretty blonde girl .They were holding hands .The sight made Harry feel uncomfortable particularly when looking around the tea shop he saw that it was full of nothing but couples all of them holding hands .Perhaps Cho would expect him to hold her hand .What can I get you mdears ?said Madam Puddifoot a very stout woman with a shiny black bun squeezing between their table and Roger Daviess with great difficulty .Two coffees please said Cho .In the time it took for their coffees to arrive Roger Davies and his girlfriend started kissing over their sugar bowl .Harry wished they wouldnt he felt that Davies was setting a standard with which Cho would soon expect him to compete .He felt his face growing hot and tried staring out of the window but it was so steamed up he could not see the street outside .To postpone the moment when he had to look at Cho he stared up at the ceiling as though examining the paintwork and received a handful of confetti in the face from their hovering cherub .After a few more painful minutes Cho mentioned Umbridge Harry seized on the subject with relief and they passed a few happy moments abusing her but the subject had already been so thoroughly canvassed during D .A .meetings it did not last very long .Silence fell again .Harry was very conscious of the slurping noises coming from the table next door and cast wildly around for something else to say .Er .listen dyou want to come with me to the Three Broomsticks at lunchtime ?Im meeting Hermione Granger there .Cho raised her eyebrows .Youre meeting Hermione Granger ?Today ?Yeah .Well she asked me to so I thought I would .Dyou want to come with me ?She said it wouldnt matter if you did .Oh .well .that was nice of her .But Cho did not sound as though she thought it was nice at all on the contrary her tone was cold and all of a sudden she looked rather forbidding .A few more minutes passed in total silence Harry drinking his coffee so fast that he would soon need a fresh cup .Next door Roger Davies and his girlfriend seemed glued together by the lips .Chos hand was lying on the table beside her coffee and Harry was feeling a mounting pressure to take hold of it .Just do it he told himself as a fount of mingled panic and excitement surged up inside his chest .Just reach out and grab it .Amazing how much more difficult it was to extend his arm twelve inches and touch her hand than to snatch a speeding Snitch from midair .But just as he moved his hand forward Cho took hers off the table .She was now watching Roger Davies kissing his girlfriend with a mildly interested expression .He asked me out you know she said in a quiet voice .A couple of weeks ago .Roger .I turned him down though .Harry who had grabbed the sugar bowl to excuse his sudden lunging movement across the table could not think why she was telling him this .If she wished she were sitting at the table next door being heartily kissed by Roger Davies why had she agreed to come out with him ?He said nothing .Their cherub threw another handful of confetti over them some of it landed in the last cold dregs of coffee Harry had been about to drink .I came in here with Cedric last year said Cho .In the second or so it took for him to take in what she had said Harrys insides had become glacial .He could not believe she wanted to talk about Cedric now while kissing couples surrounded them and a cherub floated over their heads .Chos voice was rather higher when she spoke again .Ive been meaning to ask you for ages .Did Cedric did he mmmention me at all before he died ?This was the very last subject on earth Harry wanted to discuss and least of all with Cho .Well no he said quietly .There there wasnt time for him to say anything .Erm .so .dyou .dyou get to see a lot of Quidditch in the holidays ?You support the Tornados right ?His voice sounded falsely bright and cheery .To his horror he saw that her eyes were swimming with tears again just as they had been after the last D .A .meeting before Christmas .Look he said desperately leaning in so that nobody else could overhear lets not talk about Cedric right now .Lets talk about something else .But this apparently was quite the wrong thing to say .I thought she said tears spattering down onto the table .I thought youd uuunderstand !I need to talk about it !Surely you nneed to talk about it ttoo !I mean you saw it happen ddidnt you ?Everything was going nightmarishly wrong Roger Davies girlfriend had even unglued herself to look around at Cho crying .Well I have talked about it Harry said in a whisper to Ron and Hermione but Oh youll talk to Hermione Granger !she said shrilly her face now shining with tears and several more kissing couples broke apart to stare .But you wont talk to me !Pperhaps it would be best if we just .just ppaid and you went and met up with Hermione GGranger like you obviously want to !Harry stared at her utterly bewildered as she seized a frilly napkin and dabbed at her shining face with it .Cho ?he said weakly wishing Roger would seize his girlfriend and start kissing her again to stop her goggling at him and Cho .Go on leave !she said now crying into the napkin .I dont know why you asked me out in the first place if youre going to make arrangements to meet other girls right after me .How many are you meeting after Hermione ?Its not like that !said Harry and he was so relieved at finally understanding what she was annoyed about that he laughed which he realized a split second too late was a mistake .Cho sprang to her feet .The whole tearoom was quiet and everybody was watching them now .Ill see you around Harry she said dramatically and hiccuping slightly she dashed to the door wrenched it open and hurried off into the pouring rain .Cho !Harry called after her but the door had already swung shut behind her with a tuneful tinkle .There was total silence within the tea shop .Every eye was upon Harry .He threw a Galleon down onto the table shook pink confetti out of his eyes and followed Cho out of the door .It was raining hard now and she was nowhere to be seen .He simply did not understand what had happened half an hour ago they had been getting along fine .Women !he muttered angrily sloshing down the rainwashed street with his hands in his pockets .What did she want to talk about Cedric for anyway ?Why does she always want to drag up a subject that makes her act like a human hosepipe ?He turned right and broke into a splashy run and within minutes he was turning into the doorway of the Three Broomsticks .He knew he was too early to meet Hermione but he thought it likely there would be someone in here with whom he could spend the intervening time .He shook his wet hair out of his eyes and looked around .Hagrid was sitting alone in a corner looking morose .Hi Hagrid !he said when he had squeezed through the crammed tables and pulled up a chair beside him .Hagrid jumped and looked down at Harry as though he barely recognized him .Harry saw that he had two fresh cuts on his face and several new bruises .Oh its you Harry said Hagrid .You all righ ?Yeah Im fine lied Harry in fact next to this battered and mournfullooking Hagrid he felt he did not have much to complain about .Er are you okay ?Me ?said Hagrid .Oh yeah Im grand Harry grand .He gazed into the depths of his pewter tankard which was the size of a large bucket and sighed .Harry did not know what to say to him .They sat side by side in silence for a moment .Then Hagrid said abruptly In the same boat you an me aren we Harry ?Er said Harry .Yeah .Ive said it before .Both outsiders like said Hagrid nodding wisely .An both orphans .Yeah .both orphans .He took a great swig from his tankard .Makes a diffrence havin a decent family he said .Me dad was decent .An your mum an dad were decent .If theyd lived life woulda bin diffrent eh ?Yeah .I spose said Harry cautiously .Hagrid seemed to be in a very strange mood .Family said Hagrid gloomily .Whatever yeh say bloods important .And he wiped a trickle of it out of his eye .Hagrid said Harry unable to stop himself where are you getting all these injuries ?Eh ?said Hagrid looking startled .Wha injuries ?All those !said Harry pointing at Hagrid s face .Oh .thas jus normal bumps an bruises Harry said Hagrid dismissively .I got a rough job .He drained his tankard set it back upon the table and got to his feet .Ill be seeinyeh Harry .Take care now .And he lumbered out of the pub looking wretched and then disappeared into the torrential rain .Harry watched him go feeling miserable .Hagrid was unhappy and he was hiding something but he seemed determined not to accept help .What was going on ?But before Harry could think about the matter any further he heard a voice calling his name .Harry !Harry over here !Hermione was waving at him from the other side of the room .He got up and made his way toward her through the crowded pub .He was still a few tables away when he realized that Hermione was not alone she was sitting at a table with the unlikeliest pair of drinking mates he could ever have imagined Luna Lovegood and none other than Rita Skeeter ex journalist on the Daily Prophet and one of Hermiones least favorite people in the world .Youre early !said Hermione moving along to give him room to sit down .I thought you were with Cho I wasnt expecting you for another hour at least !Cho ?said Rita at once twisting around in her seat to stare avidly at Harry .A girl ?She snatched up her crocodileskin handbag and groped within it .Its none of your business if Harrys been with a hundred girls Hermione told Rita coolly .So you can put that away right now .Rita had been on the point of withdrawing an acid green quill from her bag .Looking as though she had been forced to swallow Stinksap she snapped her bag shut again .What are you up to ?Harry asked sitting down and staring from Rita to Luna to Hermione .Little Miss Perfect was just about to tell me when you arrived said Rita taking a large slurp of her drink .I suppose Im allowed to talk to him am I ?she shot at Hermione .Yes I suppose you are said Hermione coldly .Unemployment did not suit Rita .The hair that had once been set in elaborate curls now hung lank and unkempt around her face .The scarlet paint on her twoinch talons was chipped and there were a couple of false jewels missing from her winged glasses .She took another great gulp of her drink and said out of the corner of her mouth Pretty girl is she Harry ?One more word about Harrys love life and the deals off and thats a promise said Hermione irritably .What deal ?said Rita wiping her mouth on the back of her hand .You havent mentioned a deal yet Miss Prissy you just told me to turn up .Oh one of these days .She took a deep shuddering breath .Yes yes one of these days youll write more horrible stories about Harry and me said Hermione indifferently .Find someone who cares why dont you ?Theyve run plenty of horrible stories about Harry this year without my help said Rita shooting a sideways look at him over the top of her glass and adding in a rough whisper How has that made you feel Harry ?Betrayed ?Distraught ?Misunderstood ?He feels angry of course said Hermione in a hard clear voice .Because hes told the Minister of Magic the truth and the Ministers too much of an idiot to believe him .So you actually stick to it do you that HeWho MustNotBeNamed is back ?said Rita lowering her glass and subjecting Harry to a piercing stare while her finger strayed longingly to the clasp of the crocodile bag .You stand by all this garbage Dumbledores been telling everybody about You KnowWho returning and you being the sole witness ?I wasnt the sole witness snarled Harry .There were a dozenodd Death Eaters there as well .Want their names ?Id love them breathed Rita now fumbling in her bag once more and gazing at him as though he was the most beautiful thing she had ever seen .A great bold headline ‘Potter Accuses .A subheading ‘Harry Potter Names Death Eaters Still Among Us .And then beneath a nice big photograph of you ‘Disturbed teenage survivor of YouKnowWhos attack Harry Potter 1 5 caused outrage yesterday by accusing respectable and prominent members of the Wizarding community of being Death Eaters .The QuickQuotes Quill was actually in her hand and halfway to her mouth when the rapturous expression died out of her face .But of course she said lowering the quill and looking daggers at Hermione Little Miss Perfect wouldnt want that story out there would she ?As a matter of fact said Hermione sweetly thats exactly what Little Miss Perfect does want .Rita stared at her .So did Harry .Luna on the other hand sang Weasley Is Our King dreamily under her breath and stirred her drink with a cocktail onion on a stick .You want me to report what he says about HeWho MustNotBeNamed ?Rita asked Hermione in a hushed voice .Yes I do said Hermione .The true story .All the facts .Exactly as Harry reports them .Hell give you all the details hell tell you the names of the undiscovered Death Eaters he saw there hell tell you what Voldemort looks like now oh get a grip on yourself she added contemptuously throwing a napkin across the table for at the sound of Voldemorts name Rita had jumped so badly that she had slopped half her glass of firewhisky down herself .Rita blotted the front of her grubby raincoat still staring at Hermione .Then she said baldly The Prophet wouldnt print it .In case you havent noticed nobody believes his cockandbull story .Everyone thinks hes delusional .Now if you let me write the story from that angle We dont need another story about how Harrys lost his marbles !said Hermione angrily .Weve had plenty of those already thank you !I want him given the opportunity to tell the truth !Theres no market for a story like that said Rita coldly .You mean the Prophet wont print it because Fudge wont let them said Hermione irritably .Rita gave Hermione a long hard look .Then leaning forward across the table toward her she said in a businesslike tone All right Fudge is leaning on the Prophet but it comes to the same thing .They wont print a story that shows Harry in a good light .Nobody wants to read it .Its against the public mood .This last Azkaban breakout has got people quite worried enough .People just dont want to believe YouKnow Whos back .So the Daily Prophet exists to tell people what they want to hear does it ?said Hermione scathingly .Rita sat up straight again her eyebrows raised and drained her glass of firewhisky .The Prophet exists to sell itself you silly girl she said coldly .My dad thinks its an awful paper said Luna chipping into the conversation unexpectedly .Sucking on her cocktail onion she gazed at Rita with her enormous protuberant slightly mad eyes .He publishes important stories that he thinks the public needs to know .He doesnt care about making money .Rita looked disparagingly at Luna .Im guessing your father runs some stupid little village newsletter ?she said .Twentyfive Ways to Mingle with Muggles and the dates of the next Bring andFly Sale ?No said Luna dipping her onion back into her gillywater hes the editor of The Quibbler .Rita snorted so loudly that people at a nearby table looked around in alarm .‘Important stories he thinks the public needs to know ?she said witheringly .I could manure my garden with the contents of that rag .Well this is your chance to raise the tone of it a bit isnt it ?said Hermione pleasantly .Luna says her fathers quite happy to take Harrys interview .Thats wholl be publishing it .Rita stared at them both for a moment and then let out a great whoop of laughter .The Quibbleii she said cackling .You think people will take him seriously if hes published in The Quibbler ?Some people wont said Hermione in a level voice .But the Daily Prophets version of the Azkaban breakout had some gaping holes in it .I think a lot of people will be wondering whether there isnt a better explanation of what happened and if theres an alternative story available even if it is published in a she glanced sideways at Luna in a well an unusual magazine I think they might be rather keen to read it .Rita did not say anything for a while but eyed Hermione shrewdly her head a little to one side .All right lets say for a moment Ill do it she said abruptly .What kind of fee am I going to get ?I dont think Daddy exactly pays people to write for the magazine said Luna dreamily .They do it because its an honor and of course to see their names in print .Rita Skeeter looked as though the taste of Stinksap was strong in her mouth again as she rounded on Hermione .Im supposed to do this for free ?Well yes said Hermione calmly taking a sip of her drink .Otherwise as you very well know I will inform the authorities that you are an unregistered Animagus .Of course the Prophet might give you rather a lot for an insiders account of life in Azkaban .Rita looked as though she would have liked nothing better than to seize the paper umbrella sticking out of Hermione s drink and thrust it up her nose .I dont suppose Ive got any choice have I ?said Rita her voice shaking slightly .She opened her crocodile bag once more withdrew a piece of parchment and raised her QuickQuotes Quill .Daddy will be pleased said Luna brightly .A muscle twitched in Ritas jaw .Okay Harry ?said Hermione turning to him .Ready to tell the public the truth ?I suppose said Harry watching Rita balancing the QuickQuotes Quill at the ready on the parchment between them .Fire away then Rita said Hermione serenely fishing a cherry out of the bottom of her glass .SEEN AND UNFORESEEN Luna said vaguely that she did not know how soon Ritas interview with Harry would appear in The Quibbler that her father was expecting a lovely long article on recent sightings of CrumpleHorned Snorkacks .And of course thatll be a very important story so Harrys might have to wait for the following issue said Luna .Harry had not found it an easy experience to talk about the night when Voldemort had returned .Rita had pressed him for every little detail and he had given her everything he could remember knowing that this was his one big opportunity to tell the world the truth .He wondered how people would react to the story .He guessed that it would confirm a lot of people in the view that he was completely insane not least because his story would be appearing alongside utter rubbish about CrumpleHorned Snorkacks .But the breakout of Bellatrix Lestrange and her fellow Death Eaters had given Harry a burning desire to do something whether it worked or not .Cant wait to see what Umbridge thinks of you going public said Dean sounding awestruck at dinner on Monday night .Seamus was shoveling down large amounts of chickenandham pie on Deans other side but Harry knew he was listening .Its the right thing to do Harry said Neville who was sitting opposite him .He was rather pale but went on in a low voice It must have been .tough .talking about it .Was it ?Yeah mumbled Harry but people have got to know what Voldemorts capable of havent they ?Thats right said Neville nodding and his Death Eaters too .People should know .Neville left his sentence hanging and returned to his baked potato .Seamus looked up but when he caught Harrys eye he looked quickly back at his plate again .After a while Dean Seamus and Neville departed for the common room leaving Harry and Hermione at the table waiting for Ron who had not yet had dinner because of Quidditch practice .Cho Chang walked into the hall with her friend Marietta .Harrys stomach gave an unpleasant lurch but she did not look over at the Gryffindor table and sat down with her back to him .Oh I forgot to ask you said Hermione brightly glancing over at the Ravenclaw table what happened on your date with Cho ?How come you were back so early ?Er .well it was .said Harry pulling a dish of rhubarb crumble toward him and helping himself to seconds a complete fiasco now that you mention it .And he told her what had happened in Madam Puddifoots Tea Shop . .so then he finished several minutes later as the final bit of crumble disappeared she jumps up right and says ‘111 see you around Harry and runs out of the place !He put down his spoon and looked at Hermione .I mean what was all that about ?What was going on ?Hermione glanced over at the back of Chos head and sighed .Oh Harry she said sadly .Well Im sorry but you were a bit tactless .Me tactless ?said Harry outraged .One minute we were getting on fine next minute she was telling me that Roger Davies asked her out and how she used to go and snog Cedric in that stupid tea shop how was I supposed to feel about that ?Well you see said Hermione with the patient air of one explaining that one plus one equals two to an overemotional toddler you shouldnt have told her that you wanted to meet me halfway through your date .But but spluttered Harry but you told me to meet you at twelve and to bring her along how was I supposed to do that without telling her ?You should have told her differently said Hermione still with that maddeningly patient air .You should have said it was really annoying but Id made you promise to come along to the Three Broomsticks and you really didnt want to go youd much rather spend the whole day with her but unfortunately you thought you really ought to meet me and would she please please come along with you and hopefully youd be able to get away more quickly ?And it might have been a good idea to mention how ugly you think I am too Hermione added as an afterthought .But I dont think youre ugly said Harry bemused .Hermione laughed .Harry youre worse than Ron .Well no youre not she sighed as Ron himself came stumping into the Hall splattered with mud and looking grumpy .Look you upset Cho when you said you were going to meet me so she tried to make you jealous .It was her way of trying to find out how much you liked her .Is that what she was doing ?said Harry as Ron dropped onto the bench opposite them and pulled every dish within reach toward himself .Well wouldnt it have been easier if shed just asked me whether I liked her better than you ?Girls dont often ask questions like that said Hermione .Well they should !said Harry forcefully .Then I couldve just told her I fancy her and she wouldnt have had to get herself all worked up again about Cedric dying !Im not saying what she did was sensible said Hermione as Ginny joined them just as muddy as Ron and looking equally disgruntled .Im just trying to make you see how she was feeling at the time .You should write a book Ron told Hermione as he cut up his potatoes translating mad things girls do so boys can understand them .Yeah said Harry fervently looking over at the Ravenclaw table .Cho had just got up still not looking at him she left the Great Hall .Feeling rather depressed he looked back at Ron and Ginny .So how was Quidditch practice ?It was a nightmare said Ron in a surly voice .Oh come on said Hermione looking at Ginny Im sure it wasnt that Yes it was said Ginny .It was appalling .Angelina was nearly in tears by the end of it .Ron and Ginny went off for baths after dinner Harry and Hermione returned to the busy Gryffindor common room and their usual pile of homework .Harry had been struggling with a new star chart for Astronomy for half an hour when Fred and George turned up .Ron and Ginny not here ?asked Fred looking around as he pulled up a chair and when Harry shook his head he said Good .We were watching their practice .Theyre going to be slaughtered .Theyre complete rubbish without us .Come on Ginnys not bad said George fairly sitting down next to Fred .Actually I dunno how she got so good seeing how we never let her play with us .Shes been breaking into your broom shed in the garden since the age of six and taking each of your brooms out in turn when you werent looking said Hermione from behind her tottering pile of Ancient Rune books .Oh said George looking mildly impressed .Well thatd explain it .Has Ron saved a goal yet ?asked Hermione peering over the top of Magical Hieroglyphs and Logograms .Well he can do it if he doesnt think anyones watching him said Fred rolling his eyes .So all we have to do is ask the crowd to turn their backs and talk among themselves every time the Quaffle goes up his end on Saturday .He got up again and moved restlessly to the window staring out across the dark grounds .You know Quidditch was about the only thing in this place worth staying for .Hermione cast him a stern look .Youve got exams coming !Told you already were not fussed about N .E .W .T .s said Fred .The Snackboxes are ready to roll we found out how to get rid of those boils just a couple of drops of murtlap essence sorts them Lee put us onto it .George yawned widely and looked out disconsolately at the cloudy night sky .I dunno if I even want to watch this match .If Zacharias Smith beats us I might have to kill myself .Kill him more like said Fred firmly .Thats the trouble with Quidditch said Hermione absentmindedly once again bent over her Rune translation it creates all this bad feeling and tension between the Houses .She looked up to find her copy of Spellmans Syllabary and caught Fred George and Harry looking at her with expressions of mingled disgust and incredulity on their faces .Well it does !she said impatiently .Its only a game isnt it ?Hermione said Harry shaking his head youre good on feelings and stuff but you just dont understand about Quidditch .Maybe not she said darkly returning to her translation again but at least my happiness doesnt depend on Rons goalkeeping ability .And though Harry would rather have jumped off the Astronomy Tower than admit it to her by the time he had watched the game the following Saturday he would have given any number of Galleons not to care about Quidditch either .The very best thing you could say about the match was that it was short the Gryffindor spectators had to endure only twentytwo minutes of agony .It was hard to say what the worst thing was Harry thought it was a closerun contest between Rons fourteenth failed save Sloper missing the Bludger but hitting Angelina in the mouth with his bat and Kirke shrieking and falling backward off his broom as Zacharias Smith zoomed at him carrying the Quaffle .The miracle was that Gryffindor only lost by ten points Ginny managed to snatch the Snitch from right under Hufflepuff Seeker Summerbys nose so that the final score was two hundred and forty versus two hundred and thirty .Good catch Harry told Ginny back in the common room where the atmosphere closely resembled that of a particularly dismal funeral .I was lucky she shrugged .It wasnt a very fast Snitch and Summerbys got a cold he sneezed and closed his eyes at exactly the wrong moment .Anyway once youre back on the team Ginny Ive got a lifelong ban .Youre banned as long as Umbridge is in the school Ginny corrected him .Theres a difference .Anyway once youre back I think Ill try out for Chaser .Angelina and Alicia are both leaving next year and I prefer goalscoring to Seeking anyway .Harry looked over at Ron who was hunched in a corner staring at his knees a bottle of butterbeer clutched in his hand .Angelina still wont let him resign Ginny said as though reading Harrys mind .She says she knows hes got it in him .Harry liked Angelina for the faith she was showing in Ron but at the same time thought it would really be kinder to let him leave the team .Ron had left the pitch to another booming chorus of Weasley Is Our King sung with great gusto by the Slytherins who were now favorites to win the Quidditch Cup .Fred and George wandered over .I havent got the heart to take the mickey out of him even said Fred looking over at Rons crumpled figure .Mind you .when he missed the fourteenth He made wild motions with his arms as though doing an upright doggypaddle .Well Ill save it for parties eh ?Ron dragged himself up to bed shortly after this .Out of respect for his feelings Harry waited a while before going up to the dormitory himself so that Ron could pretend to be asleep if he wanted to .Sure enough when Harry finally entered the room Ron was snoring a little too loudly to be entirely plausible .Harry got into bed thinking about the match .It had been immensely frustrating watching from the sidelines .He was quite impressed by Ginnys performance but he felt that if he had been playing he could have caught the Snitch sooner .There had been a moment when it had been fluttering near Kirkes ankle if she hadnt hesitated she might have been able to scrape a win for Gryffindor .Umbridge had been sitting a few rows below Harry and Hermione .Once or twice she had turned squatly in her seat to look at him her wide toads mouth stretched in what he thought had been a gloating smile .The memory of it made him feel hot with anger as he lay there in the dark .After a few minutes however he remembered that he was supposed to be emptying his mind of all emotion before he slept as Snape kept instructing him at the end of every Occlumency lesson .He tried for a moment or two but the thought of Snape on top of memories of Umbridge merely increased his sense of grumbling resentment and he found himself focusing instead on how much he loathed the pair of them .Slowly Rons snores died away replaced by the sound of deep slow breathing .It took Harry much longer to get to sleep his body was tired but it took his brain a long time to close down .He dreamed that Neville and Professor Sprout were waltzing around the Room of Requirement while Professor McGonagall played the bagpipes .He watched them happily for a while then decided to go and find the other members of the D .A .But when he left the room he found himself facing not the tapestry of Barnabas the Barmy but a torch burning in its bracket on a stone wall .He turned his head slowly to the left .There at the far end of the windowless passage was a plain black door .He walked toward it with a sense of mounting excitement .He had the strangest feeling that this time he was going to get lucky at last and find the way to open it .He was feet from it and saw with a leap of excitement that there was a glowing strip of faint blue light down the righthand side .The door was ajar .He stretched out his hand to push it wide and Ron gave a loud rasping genuine snore and Harry awoke abruptly with his right hand stretched in front of him in the darkness to open a door that was hundreds of miles away .He let it fall with a feeling of mingled disappointment and guilt .He knew he should not have seen the door but at the same time felt so consumed with curiosity about what was behind it that he could not help feeling annoyed with Ron .If he could have saved his snore for just another minute .k k k They entered the Great Hall for breakfast at exactly the same moment as the post owls on Monday morning .Hermione was not the only person eagerly awaiting her Daily Prophet Nearly everyone was eager for more news about the escaped Death Eaters who despite many reported sightings had still not been caught .She gave the delivery owl a Knut and unfolded the newspaper eagerly while Harry helped himself to orange juice as he had only received one note during the entire year he was sure when the first owl landed with a thud in front of him that it had made a mistake .Who re you after ?he asked it languidly removing his orange juice from underneath its beak and leaning forward to see the recipients name and address Harry Potter Great Hall Hogwarts School Frowning he made to take the letter from the owl but before he could do so three four five more owls had fluttered down beside it and were jockeying for position treading in the butter knocking over the salt and each attempting to give him their letters first .Whats going on ?Ron asked in amazement as the whole of Gryffindor table leaned forward to watch as another seven owls landed amongst the first ones screeching hooting and flapping their wings .Harry !said Hermione breathlessly plunging her hands into the feathery mass and pulling out a screech owl bearing a long cylindrical package .I think I know what this means open this one first !Harry ripped off the brown packaging .Out rolled a tightly furled copy of Marchs edition of The Quibbler .He unrolled it to see his own face grinning sheepishly at him from the front cover .In large red letters across his picture were the words HARRY POTTER SPEAKS OUT AT LAST THE TRUTH ABOUT HEWHOMUSTNOTBE NAMED AND THE NIGHT I SAW HIM RETURN Its good isnt it ?said Luna who had drifted over to the Gryffindor table and now squeezed herself onto the bench between Fred and Ron .It came out yesterday I asked Dad to send you a free copy .I expect all these she waved a hand at the assembled owls still scrabbling around on the table in front of Harry are letters from readers .Thats what I thought said Hermione eagerly Harry dyou mind if we ?Help yourself said Harry feeling slightly bemused .Ron and Hermione both started ripping open envelopes .This ones from a bloke who thinks youre off your rocker said Ron glancing down his letter .Ah well This woman recommends you try a good course of Shock Spells at St .Mungos said Hermione looking disappointed and crumpling up a second .This one looks okay though said Harry slowly scanning a long letter from a witch in Paisley .Hey she says she believes me !This ones in two minds said Fred who had joined in the letteropening with enthusiasm .Says you dont come across as a mad person but he really doesnt want to believe YouKnow Whos back so he doesnt know what to think now .Blimey what a waste of parchment .Heres another one youve convinced Harry !said Hermione excitedly . ‘Having read your side of the story I am forced to the conclusion that the Daily Prophet has treated you very unfairly .Little though I want to think that HeWhoMustNotBeNamed has returned I am forced to accept that you are telling the truth .Oh this is wonderful !Another one who thinks youre barking said Ron throwing a crumpled letter over his shoulder but this one says youve got her converted and she now thinks youre a real hero shes put in a photograph too wow What is going on here ?said a falsely sweet girlish voice .Harry looked up with his hands full of envelopes .Professor Umbridge was standing behind Fred and Luna her bulging toads eyes scanning the mess of owls and letters on the table in front of Harry .Behind her he saw many of the students watching them avidly .Why have you got all these letters Mr Potter ?she asked slowly .Is that a crime now ?said Fred loudly .Getting mail ?Be careful Mr Weasley or I shall have to put you in detention said Umbridge .Well Mr Potter ?Harry hesitated but he did not see how he could keep what he had done quiet it was surely only a matter of time before a copy of The Quibbler came to Umbridges attention .People have written to me because I gave an interview said Harry .About what happened to me last June .For some reason he glanced up at the staff table as he said this .He had the strangest feeling that Dumbledore had been watching him a second before but when he looked Dumbledore seemed to be absorbed in conversation with Professor Flitwick .An interview ?repeated Umbridge her voice thinner and higher than ever .What do you mean ?I mean a reporter asked me questions and I answered them said Harry .Here And he threw the copy of The Quibbler at her .She caught it and stared down at the cover .Her pale doughy face turned an ugly patchy violet .When did you do this ?she asked her voice trembling slightly .Last Hogsmeade weekend said Harry .She looked up at him incandescent with rage the magazine shaking in her stubby fingers .There will be no more Hogsmeade trips for you Mr Potter she whispered .How you dare .how you could .She took a deep breath .I have tried again and again to teach you not to tell lies .The message apparently has still not sunk in .Fifty points from Gryffindor and another weeks worth of detentions .She stalked away clutching The Quibbler to her chest the eyes of many students following her .By midmorning enormous signs had been put up all over the school not just on House notice boards but in the corridors and classrooms too .BY ORDER OF THE HIGH INQUISITOR OF HOGWARTS Any student found in possession of the magazine The Quibbler will be expelled .The above is in accordance with Educational Decree Number Twentyseven .Signed Dolores Jane Umbridge HIGH INQUISITOR For some reason every time Hermione caught sight of one of these signs she beamed with pleasure .What exactly are you so happy about ?Harry asked her .Oh Harry dont you see ?Hermione breathed .If she could have done one thing to make absolutely sure that every single person in this school will read your interview it was banning it !And it seemed that Hermione was quite right .By the end of that day though Harry had not seen so much as a corner of The Quibbler anywhere in the school the whole place seemed to be quoting the interview at each other Harry heard them whispering about it as they queued up outside classes discussing it over lunch and in the back of lessons while Hermione even reported that every occupant of the cubicles in the girls toilets had been talking about it when she nipped in there before Ancient Runes .And then they spotted me and obviously they know I know you so they were bombarding me with questions Hermione told Harry her eyes shining and Harry I think they believe you I really do I think youve finally got them convinced !Meanwhile Professor Umbridge was stalking the school stopping students at random and demanding that they turn out their books and pockets .Harry knew she was looking for copies of The Quibbler but the students were several steps ahead of her .The pages carrying Harrys interview had been bewitched to resemble extracts from textbooks if anyone but themselves read it or else wiped magically blank until they wanted to peruse it again .Soon it seemed that every single person in the school had read it .The teachers were of course forbidden from mentioning the interview by Educational Decree Number Twentysix but they found ways to express their feelings about it all the same .Professor Sprout awarded Gryffindor twenty points when Harry passed her a watering can a beaming Professor Flitwick pressed a box of squeaking sugar mice on him at the end of Charms said Shh and hurried away and Professor Trelawney broke into hysterical sobs during Divination and announced to the startled class and a very disapproving Umbridge that Harry was not going to suffer an early death after all but would live to a ripe old age become Minister of Magic and have twelve children .But what made Harry happiest was Cho catching up with him as he was hurrying along to Transfiguration the next day .Before he knew what had happened her hand was in his and she was breathing in his ear Im really really sorry .That interview was so brave .it made me cry .He was sorry to hear she had shed even more tears over it but very glad they were on speaking terms again and even more pleased when she gave him a swift kiss on the cheek and hurried off again .And unbelievably no sooner had he arrived outside Transfiguration than something just as good happened Seamus stepped out of the queue to face him .I just wanted to say he mumbled squinting at Harrys left knee I believe you .And Ive sent a copy of that magazine to me mam .If anything more was needed to complete Harrys happiness it was Malfoy Crabbe and Goyles reactions .He saw them with their heads together later that afternoon in the library together with a weedylooking boy Hermione whispered was called Theodore Nott .They looked around at Harry as he browsed the shelves for the book he needed on Partial Vanishment and Goyle cracked his knuckles threateningly and Malfoy whispered something undoubtedly malevolent to Crabbe .Harry knew perfectly well why they were acting like this He had named all of their fathers as Death Eaters .And the best bit is whispered Hermione gleefully as they left the library they cant contradict you because they cant admit theyve read the article !To cap it all Luna told him over dinner that no copy of The Quibbler had ever sold out faster .Dads reprinting !she told Harry her eyes popping excitedly .He cant believe it he says people seem even more interested in this than the Crumple Horned Snorkacks !Harry was a hero in the Gryffindor common room that night daringly Fred and George had put an Enlargement Charm on the front cover of The Quibbler and hung it on the wall so that Harrys giant head gazed down upon the proceedings occasionally saying things like The Ministry are morons and Eat dung Umbridge in a booming voice .Hermione did not find this very amusing she said it interfered with her concentration and ended up going to bed early out of irritation .Harry had to admit that the poster was not quite as funny after an hour or two especially when the talking spell had started to wear off so that it merely shouted disconnected words like Dung and Umbridge at more and more frequent intervals in a progressively higher voice .In fact it started to make his head ache and his scar began prickling uncomfortably again .To disappointed moans from the many people who were sitting around him asking him to relive his interview for the umpteenth time he announced that he too needed an early night .The dormitory was empty when he reached it .He rested his forehead for a moment against the cool glass of the window beside his bed it felt soothing against his scar .Then he undressed and got into bed wishing his headache would go away .He also felt slightly sick .He rolled over onto his side closed his eyes and fell asleep almost at once .He was standing in a dark curtained room lit by a single branch of candles .His hands were clenched on the back of a chair in front of him .They were long fingered and white as though they had not seen sunlight for years and looked like large pale spiders against the dark velvet of the chair .Beyond the chair in a pool of light cast upon the floor by the candles knelt a man in black robes .I have been badly advised it seems said Harry in a high cold voice that pulsed with anger .Master I crave your pardon .croaked the man kneeling on the floor .The back of his head glimmered in the candlelight .He seemed to be trembling .I do not blame you Rookwood said Harry in that cold cruel voice .He relinquished his grip upon the chair and walked around it closer to the man cowering upon the floor until he stood directly over him in the darkness looking down from a far greater height than usual .You are sure of your facts Rookwood ?asked Harry .Yes My Lord yes .I used to work in the department after after all .Avery told me Bode would be able to remove it .Bode could never have taken it Master .Bode would have known he could not .Undoubtedly that is why he fought so hard against Malfoys Imperius Curse .Stand up Rookwood whispered Harry .The kneeling man almost fell over in his haste to obey .His face was pockmarked the scars were thrown into relief by the candlelight .He remained a little stooped when standing as though halfway through a bow and he darted terrified looks up at Harrys face .You have done well to tell me this said Harry .Very well .I have wasted months on fruitless schemes it seems .But no matter .We begin again from now .You have Lord Voldemorts gratitude Rookwood .My Lord .yes My Lord gasped Rookwood his voice hoarse with relief .I shall need your help .I shall need all the information you can give me .Of course My Lord of course .anything .Very well .you may go .Send Avery to me .Rookwood scurried backward bowing and disappeared through a door .Left alone in the dark room Harry turned toward the wall .A cracked agespotted mirror hung on the wall in the shadows .Harry moved toward it .His reflection grew larger and clearer in the darkness .A face whiter than a skull .red eyes with slits for pupils .NOOOOOOOOO !What ?yelled a voice nearby .Harry flailed around madly became entangled in the hangings and fell out of his bed .For a few seconds he did not know where he was he was convinced that he was about to see the white skulllike face looming at him out of the dark again then Rons voice spoke very near to him .Will you stop acting like a maniac and I can get you out of here !Ron wrenched the hangings apart and Harry stared up at him in the moonlight as he lay flat on his back his scar searing with pain .Ron looked as though he had just been getting ready for bed one arm was out of his robes .Has someone been attacked again ?asked Ron pulling Harry roughly to his feet .Is it Dad ?Is it that snake ?No everyones fine gasped Harry whose forehead felt as though it was on fire again .Well .Avery isnt .Hes in trouble .He gave him the wrong information .Hes really angry .Harry groaned and sank shaking onto his bed rubbing his scar .But Rookwoods going to help him now .Hes on the right track again .What are you talking about ?said Ron sounding scared .Dyou mean .did you just see YouKnow Who ?I was YouKnowWho said Harry and he stretched out his hands in the darkness and held them up to his face to check that they were no longer deathly white and longfingered .He was with Rookwood hes one of the Death Eaters who escaped from Azkaban remember ?Rookwoods just told him Bode couldnt have done it .Done what ?Remove something .He said Bode would have known he couldnt have done it .Bode was under the Imperius Curse .I think he said Malfoys dad put it on him .Bode was bewitched to remove something ?Ron said .But Harry thats got to be The weapon Harry finished the sentence for him .I know .The dormitory door opened Dean and Seamus came in .Harry swung his legs back into bed .He did not want to look as though anything odd had just happened seeing as Seamus had only just stopped thinking Harry was a nutter .Did you say murmured Ron putting his head close to Harrys on the pretense of helping himself to water from the jug on his bedside table that you were You KnowWho ?Yeah said Harry quietly .Ron took an unnecessarily large gulp of water .Harry saw it spill over his chin onto his chest .Harry he said as Dean and Seamus clattered around noisily pulling off their robes and talking youve got to tell I havent got to tell anyone said Harry shortly .I wouldnt have seen it at all if I could do Occlumency .Im supposed to have learned to shut this stuff out .Thats what they want .By they he meant Dumbledore .He got back into bed and rolled over onto his side with his back to Ron and after a while he heard Rons mattress creak as he lay back down too .His scar began to burn he bit hard on his pillow to stop himself making a noise .Somewhere he knew Avery was being punished .Harry and Ron waited until break next morning to tell Hermione exactly what had happened .They wanted to be absolutely sure they could not be overheard .Standing in their usual corner of the cool and breezy courtyard Harry told her every detail of the dream he could remember .When he had finished she said nothing at all for a few moments but stared with a kind of painful intensity at Fred and George who were both headless and selling their magical hats from under their cloaks on the other side of the yard .So thats why they killed him she said quietly withdrawing her gaze from Fred and George at last .When Bode tried to steal this weapon something funny happened to him .I think there must be defensive spells on it or around it to stop people from touching it .Thats why he was in St .Mungos his brain had gone all funny and he couldnt talk .But remember what the Healer told us ?He was recovering .And they couldnt risk him getting better could they ?I mean the shock of whatever happened when he touched that weapon probably made the Imperius Curse lift .Once hed got his voice back hed explain what hed been doing wouldnt he ?They would have known hed been sent to steal the weapon .Of course it would have been easy for Lucius Malfoy to put the curse on him .Never out of the Ministry is he ?He was even hanging around that day I had my hearing said Harry .In the hang on .he said slowly .He was in the Department of Mysteries corridor that day !Your dad said he was probably trying to sneak down and find out what happened in my hearing but what if Sturgis gasped Hermione looking thunderstruck .Sorry ?said Ron looking bewildered .Sturgis Podmore said Hermione breathlessly .Arrested for trying to get through a door .Lucius Malfoy got him too .I bet he did it the day you saw him there Harry .Sturgis had Moodys Invisibility Cloak right ?So what if he was standing guard by the door invisible and Malfoy heard him move or guessed he was there or just did the Imperius Curse on the off chance that a guard was there ?So when Sturgis next had an opportunity probably when it was his turn on guard duty again he tried to get into the department to steal the weapon for Voldemort Ron be quiet but he got caught and sent to Azkaban .She gazed at Harry .And now Rookwoods told Voldemort how to get the weapon ?I didnt hear all the conversation but thats what it sounded like said Harry .Rookwood used to work there .Maybe Voldemortll send Rookwood to do it ?Hermione nodded apparently still lost in thought .Then quite abruptly she said But you shouldnt have seen this at all Harry .What ?he said taken aback .Youre supposed to be learning how to close your mind to this sort of thing said Hermione suddenly stern .I know I am said Harry .But Well I think we should just try and forget what you saw said Hermione firmly .And you ought to put in a bit more effort on your Occlumency from now on .Harry was so angry with her that he did not talk to her for the rest of the day which proved to be another bad one .When people were not discussing the escaped Death Eaters in the corridors today they were laughing at Gryffindors abysmal performance in their match against Hufflepuff the Slytherins were singing Weasley Is Our King so loudly and frequently that by sundown Filch had banned it from the corridors out of sheer irritation .The week did not improve as it progressed Harry received two more Ds in Potions was still on tenterhooks that Hagrid might get the sack and could not stop himself from dwelling on the dream in which he had seen Voldemort though he did not bring it up with Ron and Hermione again because he did not want another tellingoff from Hermione .He wished very much that he could have talked to Sirius about it but that was out of the question so he tried to push the matter to the back of his mind .Unfortunately the back of his mind was no longer the secure place it had once been .Get up Potter .A couple of weeks after his dream of Rookwood Harry was to be found yet again kneeling on the floor of Snapes office trying to clear his head .He had just been forced yet again to relive a stream of very early memories he had not even realized he still had most of them concerning humiliations Dudley and his gang had inflicted upon him in primary school .That last memory said Snape .What was it ?I dont know said Harry getting wearily to his feet .He was finding it increasingly difficult to disentangle separate memories from the rush of images and sound that Snape kept calling forth .You mean the one where my cousin tried to make me stand in the toilet ?No said Snape softly .I mean the one concerning a man kneeling in the middle of a darkened room .Its .nothing said Harry .Snapes dark eyes bored into Harrys .Remembering what Snape had said about eye contact being crucial to Legilimency Harry blinked and looked away .How do that man and that room come to be inside your head Potter ?said Snape .It said Harry looking everywhere but at Snape it was just a dream I had .A dream repeated Snape .There was a pause during which Harry stared fixedly at a large dead frog suspended in a purple liquid in its jar .You do know why we are here dont you Potter ?said Snape in a low dangerous voice .You do know why I am giving up my evenings to this tedious job ?Yes said Harry stiffly .Remind me why we are here Potter .So I can learn Occlumency said Harry now glaring at a dead eel .Correct Potter .And dim though you may be Harry looked back at Snape hating him I would have thought that after two months worth of lessons you might have made some progress .How many other dreams about the Dark Lord have you had ?Just that one lied Harry .Perhaps said Snape his dark cold eyes narrowing slightly perhaps you actually enjoy having these visions and dreams Potter .Maybe they make you feel special important ?No they dont said Harry his jaw set and his fingers clenched tightly around the handle of his wand .That is just as well Potter said Snape coldly because you are neither special nor important and it is not up to you to find out what the Dark Lord is saying to his Death Eaters .No thats your job isnt it ?Harry shot at him .He had not meant to say it it had burst out of him in temper .For a long moment they stared at each other Harry convinced he had gone too far .But there was a curious almost satisfied expression on Snapes face when he answered .Yes Potter he said his eyes glinting .That is my job .Now if you are ready we will start again .He raised his wand .One two three LegilimensV A hundred dementors were swooping toward Harry across the lake in the grounds .He screwed up his face in concentration .They were coming closer .He could see the dark holes beneath their hoods .yet he could also see Snape standing in front of him his eyes fixed upon Harrys face muttering under his breath .And somehow Snape was growing clearer and the dementors were growing fainter .Harry raised his own wand .Protegol Snape staggered his wand flew upward away from Harry and suddenly Harrys mind was teeming with memories that were not his a hooknosed man was shouting at a cowering woman while a small darkhaired boy cried in a corner .A greasyhaired teenager sat alone in a dark bedroom pointing his wand at the ceiling shooting down flies .A girl was laughing as a scrawny boy tried to mount a bucking broomstick ENOUGH !Harry felt as though he had been pushed hard in the chest he took several staggering steps backward hit some of the shelves covering Snapes walls and heard something crack .Snape was shaking slightly very white in the face .The back of Harrys robes were damp .One of the jars behind him had broken when he fell against it the pickled slimy thing within was swirling in its draining potion .Reparo hissed Snape and the jar sealed itself once more .Well Potter .that was certainly an improvement .Panting slightly Snape straightened the Pensieve in which he had again stored some of his thoughts before starting the lesson almost as though checking that they were still there .I dont remember telling you to use a Shield Charm .but there is no doubt that it was effective .Harry did not speak he felt that to say anything might be dangerous .He was sure he had just broken into Snapes memories that he had just seen scenes from Snapes childhood and it was unnerving to think that the crying little boy who had watched his parents shouting was actually standing in front of him with such loathing in his eyes .Lets try again shall we ?said Snape .Harry felt a thrill of dread He was about to pay for what had just happened he was sure of it .They moved back into position with the desk between them Harry feeling he was going to find it much harder to empty his mind this time .On the count of three then said Snape raising his wand once more .One two Harry did not have time to gather himself together and attempt to clear his mind for Snape had already cried Legilimens He was hurtling along the corridor toward the Department of Mysteries past the blank stone walls past the torches the plain black door was growing ever larger he was moving so fast he was going to collide with it he was feet from it and he could see that chink of faint blue light again The door had flown open !He was through it at last inside a blackwalled blackfloored circular room lit with blueflamed candles and there were more doors all around him he needed to go on but which door ought he to take ?POTTER !Harry opened his eyes .He was flat on his back again with no memory of having gotten there he was also panting as though he really had run the length of the Department of Mysteries corridor really had sprinted through the black door and found the circular room .Explain yourself !said Snape who was standing over him looking furious .I .dunno what happened said Harry truthfully standing up .There was a lump on the back of his head from where he had hit the ground and he felt feverish .Ive never seen that before .I mean I told you Ive dreamed about the door .but its never opened before .You are not working hard enough !For some reason Snape seemed even angrier than he had done two minutes before when Harry had seen into his own memories .You are lazy and sloppy Potter it is small wonder that the Dark Lord Can you tell me something sir ?said Harry firing up again .Why do you call Voldemort the Dark Lord Ive only ever heard Death Eaters call him that Snape opened his mouth in a snarl and a woman screamed from somewhere outside the room .Snapes head jerked upward he was gazing at the ceiling .What the ?he muttered .Harry could hear a muffled commotion coming from what he thought might be the entrance hall .Snape looked around at him frowning .Did you see anything unusual on your way down here Potter ?Harry shook his head .Somewhere above them the woman screamed again .Snape strode to his office door his wand still held at the ready and swept out of sight .Harry hesitated for a moment then followed .The screams were indeed coming from the entrance hall they grew louder as Harry ran toward the stone steps leading up from the dungeons .When he reached the top he found the entrance hall packed .Students had come flooding out of the Great Hall where dinner was still in progress to see what was going on .Others had crammed themselves onto the marble staircase .Harry pushed forward through a knot of tall Slytherins and saw that the onlookers had formed a great ring some of them looking shocked others even frightened .Professor McGonagall was directly opposite Harry on the other side of the hall she looked as though what she was watching made her feel faintly sick .Professor Trelawney was standing in the middle of the entrance hall with her wand in one hand and an empty sherry bottle in the other looking utterly mad .Her hair was sticking up on end her glasses were lopsided so that one eye was magnified more than the other her innumerable shawls and scarves were trailing haphazardly from her shoulders giving the impression that she was falling apart at the seams .Two large trunks lay on the floor beside her one of them upside down it looked very much as though it had been thrown down the stairs after her .Professor Trelawney was staring apparently terrified at something Harry could not see but that seemed to be standing at the foot of the stairs .No !she shrieked .NO !This cannot be happening .It cannot .I refuse to accept it !You didnt realize this was coming ?said a high girlish voice sounding callously amused and Harry moving slightly to his right saw that Trelawneys terrifying vision was nothing other than Professor Umbridge .Incapable though you are of predicting even tomorrows weather you must surely have realized that your pitiful performance during my inspections and lack of any improvement would make it inevitable you would be sacked ?You ccant !howled Professor Trelawney tears streaming down her face from behind her enormous lenses you ccant sack me !Ive bbeen here sixteen years !HHogwarts is mmy hhome !It was your home said Professor Umbridge and Harry was revolted to see the enjoyment stretching her toadlike face as she watched Professor Trelawney sink sobbing uncontrollably onto one of her trunks until an hour ago when the Minister of Magic countersigned the order for your dismissal .Now kindly remove yourself from this hall .You are embarrassing us .But she stood and watched with an expression of gloating enjoyment as Professor Trelawney shuddered and moaned rocking backward and forward on her trunk in paroxysms of grief .Harry heard a sob to his left and looked around .Lavender and Parvati were both crying silently their arms around each other .Then he heard footsteps .Professor McGonagall had broken away from the spectators marched straight up to Professor Trelawney and was patting her firmly on the back while withdrawing a large handkerchief from within her robes .There there Sibyll .Calm down .Blow your nose on this .Its not as bad as you think now .You are not going to have to leave Hogwarts .Oh really Professor McGonagall ?said Umbridge in a deadly voice taking a few steps forward .And your authority for that statement is . ?That would be mine said a deep voice .The oak front doors had swung open .Students beside them scuttled out of the way as Dumbledore appeared in the entrance .What he had been doing out in the grounds Harry could not imagine but there was something impressive about the sight of him framed in the doorway against an oddly misty night .Leaving the doors wide behind him he strode forward through the circle of onlookers toward the place where Professor Trelawney sat tearstained and trembling upon her trunk Professor McGonagall alongside her .Yours Professor Dumbledore ?said Umbridge with a singularly unpleasant little laugh .Im afraid you do not understand the position .I have here she pulled a parchment scroll from within her robes an Order of Dismissal signed by myself and the Minister of Magic .Under the terms of Educational Decree Number Twentythree the High Inquisitor of Hogwarts has the power to inspect place upon probation and sack any teacher she that is to say I feel is not performing up to the standard required by the Ministry of Magic .I have decided that Professor Trelawney is not up to scratch .I have dismissed her .To Harrys very great surprise Dumbledore continued to smile .He looked down at Professor Trelawney who was still sobbing and choking on her trunk and said You are quite right of course Professor Umbridge .As High Inquisitor you have every right to dismiss my teachers .You do not however have the authority to send them away from the castle .I am afraid he went on with a courteous little bow that the power to do that still resides with the headmaster and it is my wish that Professor Trelawney continue to live at Hogwarts .At this Professor Trelawney gave a wild little laugh in which a hiccup was barely hidden .No no Ill ggo Dumbledore !I shshall 1leave Hogwarts and sseek my fortune elsewhere No said Dumbledore sharply .It is my wish that you remain Sibyll .He turned to Professor McGonagall .Might I ask you to escort Sibyll back upstairs Professor McGonagall ?Of course said McGonagall .Up you get Sibyll .Professor Sprout came hurrying forward out of the crowd and grabbed Professor Trelawneys other arm .Together they guided her past Umbridge and up the marble stairs .Professor Flitwick went scurrying after them his wand held out before him he squeaked Locomotor trunksl and Professor Trelawneys luggage rose into the air and proceeded up the staircase after her Professor Flitwick bringing up the rear .Professor Umbridge was standing stockstill staring at Dumbledore who continued to smile benignly .And what she said in a whisper that nevertheless carried all around the entrance hall are you going to do with her once I appoint a new Divination teacher who needs her lodgings ?Oh that wont be a problem said Dumbledore pleasantly .You see I have already found us a new Divination teacher and he will prefer lodgings on the ground floor .Youve found ?said Umbridge shrilly .Youve found ?Might I remind you Dumbledore that under Educational Decree Twentytwo the Ministry has the right to appoint a suitable candidate if and only if the headmaster is unable to find one said Dumbledore .And I am happy to say that on this occasion I have succeeded .May I introduce you ?He turned to face the open front doors through which night mist was now drifting .Harry heard hooves .There was a shocked murmur around the hall and those nearest the doors hastily moved even farther backward some of them tripping over in their haste to clear a path for the newcomer .Through the mist came a face Harry had seen once before on a dark dangerous night in the Forbidden Forest whiteblond hair and astonishingly blue eyes the head and torso of a man joined to the palomino body of a horse .This is Firenze said Dumbledore happily to a thunderstruck Umbridge .I think you 11 find him suitable .THE CENTAUR AND THE SNEAK Ill bet you wish you hadnt given up Divination now dont you Hermione ?asked Parvati smirking .It was breakfast time a few days after the sacking of Professor Trelawney and Parvati was curling her eyelashes around her wand and examining the effect in the back of her spoon .They were to have their first lesson with Firenze that morning .Not really said Hermione indifferently who was reading the Daily Prophet Ive never really liked horses .She turned a page of the newspaper scanning its columns .Hes not a horse hes a centaur !said Lavender sounding shocked .A gorgeous centaur .sighed Parvati .Either way hes still got four legs said Hermione coolly .Anyway I thought you two were all upset that Trelawney had gone ?We are !Lavender assured her .We went up to her office to see her we took her some daffodils not the honking ones that Sprouts got nice ones .How is she ?asked Harry .Not very good poor thing said Lavender sympathetically .She was crying and saying shed rather leave the castle forever than stay here if Umbridge is still here and I dont blame her .Umbridge was horrible to her wasnt she ?Ive got a feeling Umbridge has only just started being horrible said Hermione darkly .Impossible said Ron who was tucking into a large plate of eggs and bacon .She cant get any worse than shes been already .You mark my words shes going to want revenge on Dumbledore for appointing a new teacher without consulting her said Hermione closing the newspaper .Especially another parthuman .You saw the look on her face when she saw Firenze .After breakfast Hermione departed for her Arithmancy class and Harry and Ron followed Parvati and Lavender into the entrance hall heading for Divination .Arent we going up to North Tower ?asked Ron looking puzzled as Parvati bypassed the marble staircase .Parvati looked scornfully over her shoulder at him .How dyou expect Firenze to climb that ladder ?Were in classroom eleven now it was on the notice board yesterday .Classroom eleven was situated in the groundfloor corridor leading off the entrance hall on the opposite side to the Great Hall .Harry knew it to be one of those classrooms that were never used regularly and that it therefore had the slightly neglected feeling of a cupboard or storeroom .When he entered it right behind Ron and found himself right in the middle of a forest clearing he was therefore momentarily stunned .What the ?The classroom floor had become springily mossy and trees were growing out of it their leafy branches fanned across the ceiling and windows so that the room was full of slanting shafts of soft dappled green light .The students who had already arrived were sitting on the earthy floor with their backs resting against tree trunks or boulders arms wrapped around their knees or folded tightly across their chests looking rather nervous .In the middle of the room where there were no trees stood Firenze .Harry Potter he said holding out a hand when Harry entered .Er hi said Harry shaking hands with the centaur who surveyed him unblinkingly through those astonishingly blue eyes but did not smile .Er good to see you .And you said the centaur inclining his whiteblond head .It was foretold that we would meet again .Harry noticed that there was the shadow of a hoof shaped bruise on Firenzes chest .As he turned to join the rest of the class upon the floor he saw that they were all looking at him with awe apparently deeply impressed that he was on speaking terms with Firenze whom they seemed to find intimidating .When the door was closed and the last student had sat down upon a tree stump beside the wastepaper basket Firenze gestured around the room .Professor Dumbledore has kindly arranged this classroom for us said Firenze when everyone had settled down in imitation of my natural habitat .I would have preferred to teach you in the Forbidden Forest which was until Monday my home .but this is not possible .Please er sir said Parvati breathlessly raising her hand why not ?Weve been in there with Hagrid were not frightened !It is not a question of your bravery said Firenze but of my position .I can no longer return to the forest .My herd has banished me .Herd ?said Lavender in a confused voice and Harry knew she was thinking of cows .What oh !Comprehension dawned on her face .There are more of you ?she said stunned .Did Hagrid breed you like the thestrals ?asked Dean eagerly .Firenze turned his head very slowly to face Dean who seemed to realize at once that he had said something very offensive .I didnt I meant sorry he finished in a hushed voice .Centaurs are not the servants or playthings of humans said Firenze quietly .There was a pause then Parvati raised her hand again .Please sir .why have the other centaurs banished you ?Because I have agreed to work for Professor Dumbledore said Firenze .They see this as a betrayal of our kind .Harry remembered how nearly four years ago the centaur Bane had shouted at Firenze for allowing Harry to ride to safety upon his back calling him a common mule .He wondered whether it had been Bane who had kicked Firenze in the chest .Let us begin said Firenze .He swished his long palomino tail raised his hand toward the leafy canopy overhead then lowered it slowly and as he did so the light in the room dimmed so that they now seemed to be sitting in a forest clearing by twilight and stars emerged upon the ceiling .There were oohs and gasps and Ron said audibly Blimey !Lie back upon the floor said Firenze in his calm voice and observe the heavens .Here is written for those who can see the fortune of our races .Harry stretched out on his back and gazed upward at the ceiling .A twinkling red star winked at him from overhead .I know that you have learned the names of the planets and their moons in Astronomy said Firenzes calm voice and that you have mapped the stars progress through the heavens .Centaurs have unraveled the mysteries of these movements over centuries .Our findings teach us that the future may be glimpsed in the sky above us .Professor Trelawney did Astrology with us !said Parvati excitedly raising her hand in front of her so that it stuck up in the air as she lay on her back .Mars causes accidents and burns and things like that and when it makes an angle to Saturn like now she drew a right angle in the air above her that means that people need to be extra careful when handling hot things That said Firenze calmly is human nonsense .Parvatis hand fell limply to her side .Trivial hurts tiny human accidents said Firenze as his hooves thudded over the mossy floor .These are of no more significance than the scurryings of ants to the wide universe and are unaffected by planetary movements .Professor Trelawney began Parvati in a hurt and indignant voice .is a human said Firenze simply .And is therefore blinkered and fettered by the limitations of your kind .Harry turned his head very slightly to look at Parvati .She looked very offended as did several of the people surrounding her .Sibyll Trelawney may have Seen I do not know continued Firenze and Harry heard the swishing of his tail again as he walked up and down before them but she wastes her time in the main on the self flattering nonsense humans call fortunetelling .I however am here to explain the wisdom of centaurs which is impersonal and impartial .We watch the skies for the great tides of evil or change that are sometimes marked there .It may take ten years to be sure of what we are seeing .Firenze pointed to the red star directly above Harry .In the past decade the indications have been that Wizardkind is living through nothing more than a brief calm between two wars .Mars bringer of battle shines brightly above us suggesting that the fight must break out again soon .How soon centaurs may attempt to divine by the burning of certain herbs and leaves by the observation of fume and flame .It was the most unusual lesson Harry had ever attended .They did indeed burn sage and mallowsweet there on the classroom floor and Firenze told them to look for certain shapes and symbols in the pungent fumes but he seemed perfectly unconcerned that not one of them could see any of the signs he described telling them that humans were hardly ever good at this that it took centaurs years and years to become competent and finished by telling them that it was foolish to put too much faith in such things anyway because even centaurs sometimes read them wrongly .He was nothing like any human teacher Harry had ever had .His priority did not seem to be to teach them what he knew but rather to impress upon them that nothing not even centaurs knowledge was foolproof .Hes not very definite on anything is he ?said Ron in a low voice as they put out their mallowsweet fire .I mean I could do with a few more details about this war were about to have couldnt you ?The bell rang right outside the classroom door and everyone jumped Harry had completely forgotten that they were still inside the castle quite convinced that he was really in the forest .The class filed out looking slightly perplexed Harry and Ron were on the point of following them when Firenze called Harry Potter a word please .Harry turned .The centaur advanced a little toward him .Ron hesitated .You may stay Firenze told him .But close the door please .Ron hastened to obey .Harry Potter you are a friend of Hagrids are you not ?said the centaur .Yes said Harry .Then give him a warning from me .His attempt is not working .He would do better to abandon it .His attempt is not working ?Harry repeated blankly .And he would do better to abandon it said Firenze nodding .I would warn Hagrid myself but I am banished it would be unwise for me to go too near the forest now Hagrid has troubles enough without a centaurs battle .But whats Hagrid attempting to do ?said Harry nervously .Firenze looked at Harry impassively .Hagrid has recently rendered me a great service said Firenze and he has long since earned my respect for the care he shows all living creatures .I shall not betray his secret .But he must be brought to his senses .The attempt is not working .Tell him Harry Potter .Good day to you .The happiness Harry had felt in the aftermath of The Quibbler interview had long since evaporated .As a dull March blurred into a squally April his life seemed to have become one long series of worries and problems again .Umbridge had continued attending all Care of Magical Creatures lessons so it had been very difficult to deliver Firenzes warning to Hagrid .At last Harry had managed it by pretending he had lost his copy of Fantastic Beasts and Where to Find Them and doubling back after class one day .When he passed on Firenzes message Hagrid gazed at him for a moment through his puffy blackened eyes apparently taken aback .Then he seemed to pull himself together .Nice bloke Firenze he said gruffly but he don know what hes talkin abou on this .The attemps cornin on fine .Hagrid whatre you up to ?asked Harry seriously .Because youve got to be careful Umbridge has already sacked Trelawney and if you ask me shes on a roll .If youre doing anything you shouldnt be Theres things more importan than keepin a job said Hagrid though his hands shook slightly as he said this and a basin full of knarl droppings crashed to the floor .Don worry abou me Harry jus get along now theres a good lad .Harry had no choice but to leave Hagrid mopping up the dung all over his floor but he felt thoroughly dispirited as he trudged back up to the castle .Meanwhile as the teachers and Hermione persisted in reminding them the O .W .L .s were drawing ever nearer .All the fifth years were suffering from stress to some degree but Hannah Abbott became the first to receive a Calming Draught from Madam Pomfrey after she burst into tears during Herbology and sobbed that she was too stupid to take exams and wanted to leave school now .If it had not been for the D .A .lessons Harry thought he would have been extremely unhappy .He sometimes felt that he was living for the hours he spent in the Room of Requirement working hard but thoroughly enjoying himself at the same time swelling with pride as he looked around at his fellow D .A .members and saw how far they had come .Indeed Harry sometimes wondered how Umbridge was going to react when all the members of the D .A .received Outstanding in their Defense Against the Dark Arts O .W .L .s .They had finally started work on Patronuses which everybody had been very keen to practice though as Harry kept reminding them producing a Patronus in the middle of a brightly lit classroom when they were not under threat was very different to producing it when confronted by something like a dementor .Oh dont be such a killjoy said Cho brightly watching her silvery swanshaped Patronus soar around the Room of Requirement during their last lesson before Easter .Theyre so pretty !Theyre not supposed to be pretty theyre supposed to protect you said Harry patiently .What we really need is a boggart or something thats how I learned I had to conjure a Patronus while the boggart was pretending to be a dementor But that would be really scary !said Lavender who was shooting puffs of silver vapor out of the end of her wand .And I still cant do it !she added angrily .Neville was having trouble too .His face was screwed up in concentration but only feeble wisps of silver smoke issued from his wand tip .Youve got to think of something happy Harry reminded him .Im trying said Neville miserably who was trying so hard his round face was actually shining with sweat .Harry I think Im doing it !yelled Seamus who had been brought along to his first ever D .A .meeting by Dean .Look ah its gone .But it was definitely something hairy Harry !Hermiones Patronus a shining silver otter was gamboling around her .They are sort of nice arent they ?she said looking at it fondly .The door of the Room of Requirement opened and then closed again Harry looked around to see who had entered but there did not seem to be anybody there .It was a few moments before he realized that the people close to the door had fallen silent .Next thing he knew something was tugging at his robes somewhere near the knee .He looked down and saw to his very great astonishment Dobby the houseelf peering up at him from beneath his usual eight hats .Hi Dobby !he said .What are you whats wrong ?For the elfs eyes were wide with terror and he was shaking .The members of the D .A .closest to Harry had fallen silent now Everybody in the room was watching Dobby .The few Patronuses people had managed to conjure faded away into silver mist leaving the room looking much darker than before .Harry Potter sir .squeaked the elf trembling from head to foot Harry Potter sir .Dobby has come to warn you .but the houseelves have been warned not to tell .He ran headfirst at the wall Harry who had some experience of Dobbys habits of selfpunishment made to seize him but Dobby merely bounced off the stone cushioned by his eight hats .Hermione and a few of the other girls let out squeaks of fear and sympathy .Whats happened Dobby ?Harry asked grabbing the elfs tiny arm and holding him away from anything with which he might seek to hurt himself .Harry Potter .she .she .Dobby hit himself hard on the nose with his free fist Harry seized that too .Whos ‘she Dobby ?But he thought he knew surely only one she could induce such fear in Dobby ?The elf looked up at him slightly crosseyed and mouthed wordlessly .Umbridge ?asked Harry horrified .Dobby nodded then tried to bang his head off Harrys knees Harry held him at bay .What about her ?Dobby she hasnt found out about this about us about the D .A .He read the answer in the elfs stricken face .His hands held fast by Harry the elf tried to kick himself and fell to the floor .Is she coming ?Harry asked quietly .Dobby let out a howl and began beating his bare feet hard on the floor .Yes Harry Potter yes !Harry straightened up and looked around at the motionless terrified people gazing at the thrashing elf .WHAT ARE YOU WAITING FOR ?Harry bellowed .RUN !They all pelted toward the exit at once forming a scrum at the door then people burst through Harry could hear them sprinting along the corridors and hoped they had the sense not to try and make it all the way to their dormitories .It was only ten to nine if they just took refuge in the library or the Owlery which were both nearer Harry come on !shrieked Hermione from the center of the knot of people now fighting to get out .He scooped up Dobby who was still attempting to do himself serious injury and ran with the elf in his arms to join the back of the queue .Dobby this is an order get back down to the kitchen with the other elves and if she asks you whether you warned me lie and say no !said Harry .And I forbid you to hurt yourself !he added dropping the elf as he made it over the threshold at last and slamming the door behind him .Thank you Harry Potter !squeaked Dobby and he streaked off .Harry glanced left and right the others were all moving so fast that he caught only glimpses of flying heels at either end of the corridor before they vanished .He started to run right there was a boys bathroom up ahead he could pretend hed been in there all the time if he could just reach it aaRGH !Something caught him around the ankles and he fell spectacularly skidding along on his front for six feet before coming to a halt .Someone behind him was laughing .He rolled over onto his back and saw Malfoy concealed in a niche beneath an ugly dragonshaped vase .Trip Jinx Potter !he said .Hey Professor PROFESSOR !Ive got one !Umbridge came bustling around the far corner breathless but wearing a delighted smile .Its him !she said jubilantly at the sight of Harry on the floor .Excellent Draco excellent oh very good fifty points to Slytherin !Ill take him from here .Stand up Potter !Harry got to his feet glaring at the pair of them .He had never seen Umbridge looking so happy .She seized his arm in a vicelike grip and turned beaming broadly to Malfoy .You hop along and see if you can round up anymore of them Draco she said .Tell the others to look in the library anybody out of breath check the bathrooms Miss Parkinson can do the girls ones off you go and you she added in her softest most dangerous voice as Malfoy walked away .You can come with me to the headmasters office Potter .They were at the stone gargoyle within minutes .Harry wondered how many of the others had been caught .He thought of Ron Mrs Weasley would kill him and of how Hermione would feel if she was expelled before she could take her O .W .L .s .And it had been Seamuss very first meeting .and Neville had been getting so good .Fizzing Whizbee sang Umbridge and the stone gargoyle jumped aside the wall behind split open and they ascended the moving stone staircase .They reached the polished door with the griffin knocker but Umbridge did not bother to knock she strode straight inside still holding tight to Harry .The office was full of people .Dumbledore was sitting behind his desk his expression serene the tips of his long fingers together .Professor McGonagall stood rigidly beside him her face extremely tense .Cornelius Fudge Minister of Magic was rocking backward and forward on his toes beside the fire apparently immensely pleased with the situation .Kingsley Shacklebolt and a toughlooking wizard Harry did not recognize with very short wiry hair were positioned on either side of the door like guards and the freckled bespectacled form of Percy Weasley hovered excitedly beside the wall a quill and a heavy scroll of parchment in his hands apparently poised to take notes .The portraits of old headmasters and mistresses were not shamming sleep tonight .All of them were watching what was happening below alert and serious .As Harry entered a few flitted into neighboring frames and whispered urgently into their neighbors ears .Harry pulled himself free of Umbridges grasp as the door swung shut behind them .Cornelius Fudge was glaring at him with a kind of vicious satisfaction upon his face .Well he said .Well well well .Harry replied with the dirtiest look he could muster .His heart drummed madly inside him but his brain was oddly cool and clear .He was heading back to Gryffindor Tower said Umbridge .There was an indecent excitement in her voice the same callous pleasure Harry had heard as she watched Professor Trelawney dissolving with misery in the entrance hall .The Malfoy boy cornered him .Did he did he ?said Fudge appreciatively .I must remember to tell Lucius .Well Potter .I expect you know why you are here ?Harry fully intended to respond with a defiant yes His mouth had opened and the word was half formed when he caught sight of Dumbledores face .Dumbledore was not looking directly at Harry his eyes were fixed upon a point just over his shoulder but as Harry stared at him he shook his head a fraction of an inch to each side .Harry changed direction mid word .Yeh no .I beg your pardon ?said Fudge .No said Harry firmly .You dont know why you are here ?No I dont said Harry .Fudge looked incredulously from Harry to Professor Umbridge Harry took advantage of his momentary inattention to steal another quick look at Dumbledore who gave the carpet the tiniest of nods and the shadow of a wink .So you have no idea said Fudge in a voice positively sagging with sarcasm why Professor Umbridge has brought you to this office ?You are not aware that you have broken any school rules ?School rules ?said Harry .No .Or Ministry decrees ?amended Fudge angrily .Not that Im aware of said Harry blandly .His heart was still hammering very fast .It was almost worth telling these lies to watch Fudges blood pressure rising but he could not see how on earth he would get away with them .If somebody had tipped off Umbridge about the D .A .then he the leader might as well be packing his trunk right now .So its news to you is it said Fudge his voice now thick with anger that an illegal student organization has been discovered within this school ?Yes it is said Harry hoisting an unconvincing look of innocent surprise onto his face .I think Minister said Umbridge silkily from beside him we might make better progress if I fetch our informant .Yes yes do said Fudge nodding and he glanced maliciously at Dumbledore as Umbridge left the room .Theres nothing like a good witness is there Dumbledore ?Nothing at all Cornelius said Dumbledore gravely inclining his head .There was a wait of several minutes in which nobody looked at each other then Harry heard the door open behind him .Umbridge moved past him into the room gripping by the shoulder Chos curlyhaired friend Marietta who was hiding her face in her hands .Dont be scared dear dont be frightened said Professor Umbridge softly patting her on the back its quite all right now .You have done the right thing .The minister is very pleased with you .Hell be telling your mother what a good girl youve been .Mariettas mother Minister she added looking up at Fudge is Madam Edgecombe from the Department of Magical Transportation .Floo Network office shes been helping us police the Hogwarts fires you know .Jolly good jolly good !said Fudge heartily .Like mother like daughter eh ?Well come on now dear look up dont be shy lets hear what youve got to galloping gargoyles !As Marietta raised her head Fudge leapt backward in shock nearly landing himself in the fire .He cursed and stamped on the hem of his cloak which had started to smoke and Marietta gave a wail and pulled the neck of her robes right up to her eyes but not before the whole room had seen that her face was horribly disfigured by a series of close set purple pustules that had spread across her nose and cheeks to form the word SNEAK .Never mind the spots now dear said Umbridge impatiently just take your robes away from your mouth and tell the Minister But Marietta gave another muffled wail and shook her head frantically .Oh very well you silly girl Ill tell him snapped Umbridge .She hitched her sickly smile back onto her face and said Well Minister Miss Edgecombe here came to my office shortly after dinner this evening and told me she had something she wanted to tell me .She said that if I proceeded to a secret room on the seventh floor sometimes known as the Room of Requirement I would find out something to my advantage .I questioned her a little further and she admitted that there was to be some kind of meeting there .Unfortunately at that point this hex she waved impatiently at Mariettas concealed face came into operation and upon catching sight of her face in my mirror the girl became too distressed to tell me any more .Well now said Fudge fixing Marietta with what he evidently imagined was a kind and fatherly look .It is very brave of you my dear coming to tell Professor Umbridge you did exactly the right thing .Now will you tell me what happened at this meeting ?What was its purpose ?Who was there ?But Marietta would not speak .She merely shook her head again her eyes wide and fearful .Havent we got a counterjinx for this ?Fudge asked Umbridge impatiently gesturing at Mariettas face .So she can speak freely ?I have not yet managed to find one Umbridge admitted grudgingly and Harry felt a surge of pride in Hermiones jinxing ability .But it doesnt matter if she wont speak I can take up the story from here .You will remember Minister that I sent you a report back in October that Potter had met a number of fellow students in the Hogs Head in Hogsmeade And what is your evidence for that ?cut in Professor McGonagall .I have testimony from Willy Widdershins Minerva who happened to be in the bar at the time .He was heavily bandaged it is true but his hearing was quite unimpaired said Umbridge smugly .He heard every word Potter said and hastened straight to the school to report to me Oh so thats why he wasnt prosecuted for setting up all those regurgitating toilets !said Professor McGonagall raising her eyebrows .What an interesting insight into our justice system !Blatant corruption !roared the portrait of the corpulent rednosed wizard on the wall behind Dumbledores desk .The Ministry did not cut deals with petty criminals in my day no sir they did not !Thank you Fortescue that will do said Dumbledore softly .The purpose of Potters meeting with these students continued Professor Umbridge was to persuade them to join an illegal society whose aim was to learn spells and curses the Ministry has decided are inappropriate for schoolage I think you 11 find youre wrong there Dolores said Dumbledore quietly peering at her over the half moon spectacles perched halfway down his crooked nose .Harry stared at him .He could not see how Dumbledore was going to talk him out of this one if Willy Widdershins had indeed heard every word he said in the Hogs Head there was simply no escaping it .Oho !said Fudge bouncing up and down on the balls of his feet again .Yes do lets hear the latest cockandbull story designed to pull Potter out of trouble !Go on then Dumbledore go on Willy Widdershins was lying was he ?Or was it Potters identical twin in the Hogs Head that day ?Or is there the usual simple explanation involving a reversal of time a dead man coming back to life and a couple of invisible dementors ?Percy Weasley let out a hearty laugh .Oh very good Minister very good !Harry could have kicked him .Then he saw to his astonishment that Dumbledore was smiling gently too .Cornelius I do not deny and nor I am sure does Harry that he was in the Hogs Head that day nor that he was trying to recruit students to a Defense Against the Dark Arts group .I am merely pointing out that Dolores is quite wrong to suggest that such a group was at that time illegal .If you remember the Ministry decree banning all student societies was not put into effect until two days after Harrys Hogsmeade meeting so he was not breaking any rules in the Hogs Head at all .Percy looked as though he had been struck in the face by something very heavy .Fudge remained motionless in midbounce his mouth hanging open .Umbridge recovered first .Thats all very fine Headmaster she said smiling sweetly .But we are now nearly six months on from the introduction of Educational Decree Number Twentyfour .If the first meeting was not illegal all those that have happened since most certainly are .Well said Dumbledore surveying her with polite interest over the top of his interlocked fingers they certainly would be if they had continued after the decree came into effect .Do you have any evidence that these meetings continued ?As Dumbledore spoke Harry heard a rustle behind him and rather thought Kingsley whispered something .He could have sworn too that he felt something brush against his side a gentle something like a draft or bird wings but looking down he saw nothing there .Evidence ?repeated Umbridge with that horrible wide toadlike smile .Have you not been listening Dumbledore ?Why do you think Miss Edgecombe is here ?Oh can she tell us about six months worth of meetings ?said Dumbledore raising his eyebrows .I was under the impression that she was merely reporting a meeting tonight .Miss Edgecombe said Umbridge at once tell us how long these meetings have been going on dear .You can simply nod or shake your head Im sure that wont make the spots worse .Have they been happening regularly over the last six months ?Harry felt a horrible plummeting in his stomach .This was it they had hit a dead end of solid evidence that not even Dumbledore would be able to shift aside .Just nod or shake your head dear Umbridge said coaxingly to Marietta .Come on now that wont activate the jinx further .Everyone in the room was gazing at the top of Mariettas face .Only her eyes were visible between the pulled up robes and her curly fringe .Perhaps it was a trick of the firelight but her eyes looked oddly blank .And then to Harrys utter amazement Marietta shook her head .Umbridge looked quickly at Fudge and then back at Marietta .I dont think you understood the question did you dear ?Im asking whether youve been going to these meetings for the past six months ?You have havent you ?Again Marietta shook her head .What do you mean by shaking your head dear ?said Umbridge in a testy voice .I would have thought her meaning was quite clear said Professor McGonagall harshly .There have been no secret meetings for the past six months .Is that correct Miss Edgecombe ?Marietta nodded .But there was a meeting tonight !said Umbridge furiously .There was a meeting Miss Edgecombe you told me about it in the Room of Requirement !And Potter was the leader was he not Potter organized it Potter why are you shaking your head girl ?Well usually when a person shakes their head said McGonagall coldly they mean ‘no .So unless Miss Edgecombe is using a form of sign language as yet unknown to humans Professor Umbridge seized Marietta pulled her around to face her and began shaking her very hard .A split second later Dumbledore was on his feet his wand raised .Kingsley started forward and Umbridge leapt back from Marietta waving her hands in the air as though they had been burned .I cannot allow you to manhandle my students Dolores said Dumbledore and for the first time he looked angry .You want to calm yourself Madam Umbridge said Kingsley in his deep slow voice .You dont want to get yourself into trouble now .No said Umbridge breathlessly glancing up at the towering figure of Kingsley .I mean yes youre right Shacklebolt I I forgot myself .Marietta was standing exactly where Umbridge had released her .She seemed neither perturbed by Umbridges sudden attack nor relieved by her release .She was still clutching her robe up to her oddly blank eyes staring straight ahead of her .A sudden suspicion connected to Kingsleys whisper and the thing he had felt shoot past him sprang into Harrys mind .Dolores said Fudge with the air of trying to settle something once and for all the meeting tonight the one we know definitely happened Yes said Umbridge pulling herself together yes .well Miss Edgecombe tipped me off and I proceeded at once to the seventh floor accompanied by certain trustworthy students so as to catch those in the meeting redhanded .It appears that they were forewarned of my arrival however because when we reached the seventh floor they were running in every direction .It does not matter however .I have all their names here Miss Parkinson ran into the Room of Requirement for me to see if they had left anything behind .We needed evidence and the room provided And to Harrys horror she withdrew from her pocket the list of names that had been pinned upon the Room of Requirements wall and handed it to Fudge .The moment I saw Potters name on the list I knew what we were dealing with she said softly .Excellent said Fudge a smile spreading across his face .Excellent Dolores .And .by thunder .He looked up at Dumbledore who was still standing beside Marietta his wand held loosely in his hand .See what theyve named themselves ?said Fudge quietly .DumbledoresArmy .Dumbledore reached out and took the piece of parchment from Fudge .He gazed at the heading scribbled by Hermione months before and for a moment seemed unable to speak .Then he looked up smiling .Well the game is up he said simply .Would you like a written confession from me Cornelius or will a statement before these witnesses suffice ?Harry saw McGonagall and Kingsley look at each other .There was fear in both faces .He did not understand what was going on and neither apparently did Fudge .Statement ?said Fudge slowly .What I dont ?Dumbledores Army Cornelius said Dumbledore still smiling as he waved the list of names before Fudges face .Not Potters Army .Dumbledores Army .But but Understanding blazed suddenly in Fudges face .He took a horrified step backward yelped and jumped out of the fire again .You ?he whispered stamping again on his smoldering cloak .Thats right said Dumbledore pleasantly .You organized this ?I did said Dumbledore .You recruited these students for for your army ?Tonight was supposed to be the first meeting said Dumbledore nodding .Merely to see whether they would be interested in joining me .I see now that it was a mistake to invite Miss Edgecombe of course .Marietta nodded .Fudge looked from her to Dumbledore his chest swelling .Then you have been plotting against me !he yelled .Thats right said Dumbledore cheerfully .NO !shouted Harry .Kingsley flashed a look of warning at him McGonagall widened her eyes threateningly but it had suddenly dawned upon Harry what Dumbledore was about to do and he could not let it happen .No Professor Dumbledore !Be quiet Harry or I am afraid you will have to leave my office said Dumbledore calmly .Yes shut up Potter !barked Fudge who was still ogling Dumbledore with a kind of horrified delight .Well well well I came here tonight expecting to expel Potter and instead Instead you get to arrest me said Dumbledore smiling .Its like losing a Knut and finding a Galleon isnt it ?Weasley !cried Fudge now positively quivering with delight Weasley have you written it all down everything hes said his confession have you got it ?Yes sir I think so sir !said Percy eagerly whose nose was splattered with ink from the speed of his notetaking .The bit about how hes been trying to build up an army against the Ministry how hes been working to destabilize me ?Yes sir Ive got it yes !said Percy scanning his notes joyfully .Very well then said Fudge now radiant with glee .Duplicate your notes Weasley and send a copy to the Daily Prophet at once .If we send a fast owl we should make the morning edition !Percy dashed from the room slamming the door behind him and Fudge turned back to Dumbledore .You will now be escorted back to the Ministry where you will be formally charged and then sent to Azkaban to await trial !Ah said Dumbledore gently yes .Yes I thought we might hit that little snag .Snag ?said Fudge his voice still vibrating with joy .I see no snag Dumbledore !Well said Dumbledore apologetically Im afraid I do .Oh really ?Well its just that you seem to be laboring under the delusion that I am going to what is the phrase ? ‘Come quietly .I am afraid I am not going to come quietly at all Cornelius .I have absolutely no intention of being sent to Azkaban .I could break out of course but what a waste of time and frankly I can think of a whole host of things I would rather be doing .Umbridges face was growing steadily redder she looked as though she was being filled with boiling water .Fudge stared at Dumbledore with a very silly expression on his face as though he had just been stunned by a sudden blow and could not quite believe it had happened .He made a small choking noise and then looked around at Kingsley and the man with short gray hair who alone of everyone in the room had remained entirely silent so far .The latter gave Fudge a reassuring nod and moved forward a little away from the wall .Harry saw his hand drift almost casually toward his pocket .Dont be silly Dawlish said Dumbledore kindly .Im sure you are an excellent Auror I seem to remember that you achieved ‘Outstanding in all your N .E .W .T .s but if you attempt to er ‘bring me in by force I will have to hurt you .The man called Dawlish blinked looking rather foolish .He looked toward Fudge again but this time seemed to be hoping for a clue as to what to do next .So sneered Fudge recovering himself you intend to take on Dawlish Shacklebolt Dolores and myself singlehanded do you Dumbledore ?Merlins beard no said Dumbledore smiling .Not unless you are foolish enough to force me to .He will not be singlehanded !said Professor McGonagall loudly plunging her hand inside her robes .Oh yes he will Minerva !said Dumbledore sharply .Hogwarts needs you !Enough of this rubbish !said Fudge pulling out his own wand .Dawlish !Shacklebolt !Take him .A streak of silver light flashed around the room .There was a bang like a gunshot and the floor trembled .A hand grabbed the scruff of Harrys neck and forced him down on the floor as a second silver flash went off several of the portraits yelled Fawkes screeched and a cloud of dust filled the air .Coughing in the dust Harry saw a dark figure fall to the ground with a crash in front of him .There was a shriek and a thud and somebody cried No !Then the sound of breaking glass frantically scuffling footsteps a groan and silence .Harry struggled around to see who was half strangling him and saw Professor McGonagall crouched beside him .She had forced both him and Marietta out of harms way .Dust was still floating gently down through the air onto them .Panting slightly Harry saw a very tall figure moving toward them .Are you all right ?said Dumbledore .Yes !said Professor McGonagall getting up and dragging Harry and Marietta with her .The dust was clearing .The wreckage of the office loomed into view Dumbledores desk had been overturned all of the spindly tables had been knocked to the floor their silver instruments in pieces .Fudge Umbridge Kingsley and Dawlish lay motionless on the floor .Fawkes the phoenix soared in wide circles above them singing softly .Unfortunately I had to hex Kingsley too or it would have looked very suspicious said Dumbledore in a low voice .He was remarkably quick on the uptake modifying Miss Edgecombes memory like that while everyone was looking the other way thank him for me wont you Minerva ?Now they will all awake very soon and it will be best if they do not know that we had time to communicate you must act as though no time has passed as though they were merely knocked to the ground they will not remember Where will you go Dumbledore ?whispered Professor McGonagall .Grimmauld Place ?Oh no said Dumbledore with a grim smile .I am not leaving to go into hiding .Fudge will soon wish hed never dislodged me from Hogwarts I promise you .Professor Dumbledore .Harry began .He did not know what to say first how sorry he was that he had started the D .A .in the first place and caused all this trouble or how terrible he felt that Dumbledore was leaving to save him from expulsion ?But Dumbledore cut him off before he could say another word .Listen to me Harry he said urgently you must study Occlumency as hard as you can do you understand me ?Do everything Professor Snape tells you and practice it particularly every night before sleeping so that you can close your mind to bad dreams you will understand why soon enough but you must promise me The man called Dawlish was stirring .Dumbledore seized Harrys wrist .Remember close your mind But as Dumbledore s fingers closed over Harrys skin a pain shot through the scar on his forehead and he felt again that terrible snakelike longing to strike Dumbledore to bite him to hurt him you will understand whispered Dumbledore .Fawkes circled the office and swooped low over him .Dumbledore released Harry raised his hand and grasped the phoenixs long golden tail .There was a flash of fire and the pair of them had gone .Where is he ?yelled Fudge pushing himself up from the ground .Where is he ?I dont know !shouted Kingsley also leaping to his feet .Well he cant have Disapparated !cried Umbridge .You cant inside this school The stairs !cried Dawlish and he flung himself upon the door wrenched it open and disappeared followed closely by Kingsley and Umbridge .Fudge hesitated then got to his feet slowly brushing dust from his front .There was a long and painful silence .Well Minerva said Fudge nastily straightening his torn shirtsleeve Im afraid this is the end of your friend Dumbledore .You think so do you ?said Professor McGonagall scornfully .Fudge seemed not to hear her .He was looking around at the wrecked office .A few of the portraits hissed at him one or two even made rude hand gestures .Youd better get those two off to bed said Fudge looking back at Professor McGonagall with a dismissive nod toward Harry and Marietta .She said nothing but marched Harry and Marietta to the door .As it swung closed behind them Harry heard Phineas Nigelluss voice .You know Minister I disagree with Dumbledore on many counts .but you cannot deny hes got style .SNAPES WORST MEMORY BY ORDER OF THE MINISTRY OF MAGIC Dolores Jane Umbridge High Inquisitor has replaced Albus Dumbledore as Head of Hogwarts School of Witchcraft and Wizardry .The above is in accordance with Educational Decree Number Twentyeight .Signed Cornelius Oswald Fudge MINISTER OF MAGIC The notices had gone up all over the school overnight but they did not explain how every single person within the castle seemed to know that Dumbledore had overcome two Aurors the High Inquisitor the Minister of Magic and his Junior Assistant to escape .No matter where Harry went within the castle next day the sole topic of conversation was Dumbledores flight and though some of the details might have gone awry in the retelling Harry overheard one secondyear girl assuring another that Fudge was now lying in St .Mungos with a pumpkin for a head it was surprising how accurate the rest of their information was .Everybody seemed aware for instance that Harry and Marietta were the only students to have witnessed the scene in Dumbledores office and as Marietta was now in the hospital wing Harry found himself besieged with requests to give a firsthand account wherever he went .Dumbledore will be back before long said Ernie Macmillan confidently on the way back from Herbology after listening intently to Harrys story .They couldnt keep him away in our second year and they wont be able to this time .The Fat Friar told me .He dropped his voice conspiratorially so that Harry Ron and Hermione had to lean closer to him to hear .that Umbridge tried to get back into his office last night after theyd searched the castle and grounds for him .Couldnt get past the gargoyle .The Heads office has sealed itself against her .Ernie smirked .Apparently she had a right little tantrum .Oh I expect she really fancied herself sitting up there in the Heads office said Hermione viciously as they walked up the stone steps into the entrance hall .Lording it over all the other teachers the stupid puffedup powercrazy old Now do you really want to finish that sentence Granger ?Draco Malfoy had slid out from behind the door followed by Crabbe and Goyle .His pale pointed face was alight with malice .Afraid Im going to have to dock a few points from Gryffindor and Hufflepuff he drawled .Its only teachers that can dock points from Houses Malfoy said Ernie at once .Yeah were prefects too remember ?snarled Ron .I know prefects cant dock points Weasel King sneered Malfoy Crabbe and Goyle sniggered .But members of the Inquisitorial Squad The what ?said Hermione sharply .The Inquisitorial Squad Granger said Malfoy pointing toward a tiny silver I upon his robes just beneath his prefects badge .A select group of students who are supportive of the Ministry of Magic handpicked by Professor Umbridge .Anyway members of the Inquisitorial Squad do have the power to dock points .So Granger Ill have five from you for being rude about our new headmistress .Macmillan five for contradicting me .Five because I dont like you Potter .Weasley your shirts untucked so Ill have another five for that .Oh yeah I forgot youre a Mudblood Granger so ten for that .Ron pulled out his wand but Hermione pushed it away whispering Dont !Wise move Granger breathed Malfoy .New Head new times .Be good now Potty .Weasel King .He strode away laughing heartily with Crabbe and Goyle .He was bluffing said Ernie looking appalled .He cant be allowed to dock points .that would be ridiculous .It would completely undermine the prefect system .But Harry Ron and Hermione had turned automatically toward the giant hourglasses set in niches along the wall behind them which recorded the House points .Gryffindor and Ravenclaw had been neck and neck in the lead that morning .Even as they watched stones flew upward reducing the amounts in the lower bulbs .In fact the only glass that seemed unchanged was the emeraldfilled one of Slytherin .Noticed have you ?said Freds voice .He and George had just come down the marble staircase and joined Harry Ron Hermione and Ernie in front of the hourglasses .Malfoy just docked us all about fifty points said Harry furiously as they watched several more stones fly upward from the Gryffindor hourglass .Yeah Montague tried to do us during break said George .What do you mean ‘tried ?said Ron quickly .He never managed to get all the words out said Fred due to the fact that we forced him headfirst into that Vanishing Cabinet on the first floor .Hermione looked very shocked .But youll get into terrible trouble !Not until Montague reappears and that could take weeks I dunno where we sent him said Fred coolly .Anyway .weve decided we dont care about getting into trouble anymore .Have you ever ?asked Hermione .Course we have said George .Never been expelled have we ?Weve always known where to draw the line said Fred .We might have put a toe across it occasionally said George .But weve always stopped short of causing real mayhem said Fred .But now ?said Ron tentatively .Well now said George .what with Dumbledore gone said Fred .we reckon a bit of mayhem said George .is exactly what our dear new Head deserves said Fred .You mustnt !whispered Hermione .You really mustnt !Shed love a reason to expel you !You dont get it Hermione do you ?said Fred smiling at her .We dont care about staying anymore .Wed walk out right now if we werent determined to do our bit for Dumbledore first .So anyway he checked his watch phase one is about to begin .Id get in the Great Hall for lunch if I were you that way the teachers will see you cant have had anything to do with it .Anything to do with what ?said Hermione anxiously .Youll see said George .Run along now .Fred and George turned away and disappeared in the swelling crowd descending the stairs toward lunch .Looking highly disconcerted Ernie muttered something about unfinished Transfiguration homework and scurried away .I think we should get out of here you know said Hermione nervously .Just in case .Yeah all right said Ron and the three of them moved toward the doors to the Great Hall but Harry had barely glimpsed todays ceiling of scudding white clouds when somebody tapped him on the shoulder and turning he found himself almost nose to nose with Filch the caretaker .He took several hasty steps backward Filch was best viewed at a distance .The headmistress would like to see you Potter he leered .I didnt do it said Harry stupidly thinking of whatever Fred and George were planning .Filchs jowls wobbled with silent laughter .Guilty conscience eh ?he wheezed .Follow me .Harry glanced back at Ron and Hermione who were both looking worried .He shrugged and followed Filch back into the entrance hall against the tide of hungry students .Filch seemed to be in an extremely good mood he hummed creakily under his breath as they climbed the marble staircase .As they reached the first landing he said Things are changing around here Potter .Ive noticed said Harry coldly .Yerse .Ive been telling Dumbledore for years and years hes too soft with you all said Filch chuckling nastily .You filthy little beasts would never have dropped Stinkpellets if youd known I had it in my power to whip you raw would you now ?Nobody would have thought of throwing Fanged Frisbees down the corridors if I couldve strung you up by the ankles in my office would they ?But when Educational Decree Twentynine comes in Potter Ill be allowed to do them things .And shes asked the Minister to sign an order for the expulsion of Peeves .Oh things are going to be very different around here with her in charge .Umbridge had obviously gone to some lengths to get Filch on her side Harry thought and the worst of it was that he would probably prove an important weapon his knowledge of the schools secret passageways and hiding places was probably second only to the Weasley twins .Here we are he said leering down at Harry as he rapped three times upon Professor Umbridges door and pushed it open .The Potter boy to see you maam .Umbridges office so very familiar to Harry from his many detentions was the same as usual except for the large wooden block lying across the front of her desk on which golden letters spelled the word HEADMISTRESS also his Firebolt and Freds and Georges Cleansweeps which he saw with a pang were now chained and padlocked to a stout iron peg in the wall behind the desk .Umbridge was sitting behind the desk busily scribbling upon some of her pink parchment but looked up and smiled widely at their entrance .Thank you Argus she said sweetly .Not at all maam not at all said Filch bowing as low as his rheumatism would permit and exiting backward .Sit said Umbridge curtly pointing toward a chair and Harry sat .She continued to scribble for a few moments .He watched some of the foul kittens gamboling around the plates over her head wondering what fresh horror she had in store for him .Well now she said finally setting down her quill and looking like a toad about to swallow a particularly juicy fly .What would you like to drink ?What ?said Harry quite sure he had misheard her .To drink Mr Potter she said smiling still more widely .Tea ?Coffee ?Pumpkin juice ?As she named each drink she gave her short wand a wave and a cup or glass of it appeared upon her desk .Nothing thank you said Harry .I wish you to have a drink with me she said her voice becoming more dangerously sweet .Choose one .Fine .tea then said Harry shrugging .She got up and made quite a performance of adding milk with her back to him .She then bustled around the desk with it smiling in sinisterly sweet fashion .There she said handing it to him .Drink it before it gets cold wont you ?Well now Mr Potter .I thought we ought to have a little chat after the distressing events of last night .He said nothing .She settled herself back into her seat and waited .When several long moments had passed in silence she said gaily Youre not drinking up !He raised the cup to his lips and then just as suddenly lowered it .One of the horrible painted kittens behind Umbridge had great round blue eyes just like MadEye Moodys magical one and it had just occurred to Harry what MadEye would say if he ever heard that Harry had drunk anything offered by a known enemy .Whats the matter ?said Umbridge who was still watching him .Do you want sugar ?No said Harry .He raised the cup to his lips again and pretended to take a sip though keeping his mouth tightly closed .Umbridges smile widened .Good she whispered .Very good .Now then .She leaned forward a little .Where is Albus Dumbledore ?No idea said Harry promptly .Drink up drink up she said still smiling .Now Mr Potter let us not play childish games .I know that you know where he has gone .You and Dumbledore have been in this together from the beginning .Consider your position Mr Potter .I dont know where he is .Harry pretended to drink again .Very well said Umbridge looking displeased .In that case you will kindly tell me the whereabouts of Sirius Black .Harrys stomach turned over and his hand holding the teacup shook so that the cup rattled in its saucer .He tilted the cup to his mouth with his lips pressed together so that some of the hot liquid trickled down onto his robes .I dont know he said a little too quickly .Mr Potter said Umbridge let me remind you that it was I who almost caught the criminal Black in the Gryffindor fire in October .I know perfectly well it was you he was meeting and if I had had any proof neither of you would be at large today I promise you .I repeat Mr Potter .Where is Sirius Black ?No idea said Harry loudly .Havent got a clue .They stared at each other so long that Harry felt his eyes watering .Then she stood up .Very well Potter I will take your word for it this time but be warned The might of the Ministry stands behind me .All channels of communication in and out of this school are being monitored .A Floo Network Regulator is keeping watch over every fire in Hogwarts except my own of course .My Inquisitorial Squad is opening and reading all owl post entering and leaving the castle .And Mr Filch is observing all secret passages in and out of the castle .If I find a shred of evidence .BOOM !The very floor of the office shook Umbridge slipped sideways clutching her desk for support looking shocked .What was ?She was gazing toward the door Harry took the opportunity to empty his almost full cup of tea into the nearest vase of dried flowers .He could hear people running and screaming several floors below .Back to lunch with you Potter !cried Umbridge raising her wand and dashing out of the office .Harry gave her a few seconds start then hurried after her to see what the source of all the uproar was .It was not difficult to find .One floor down pandemonium reigned .Somebody and Harry had a very shrewd idea who had set off what seemed to be an enormous crate of enchanted fireworks .Dragons comprised entirely of greenandgold sparks were soaring up and down the corridors emitting loud fiery blasts and bangs as they went .Shocking pink Catherine wheels five feet in diameter were whizzing lethally through the air like so many flying saucers .Rockets with long tails of brilliant silver stars were ricocheting off the walls .Sparklers were writing swearwords in midair of their own accord .Firecrackers were exploding like mines everywhere Harry looked and instead of burning themselves out fading from sight or fizzling to a halt these pyrotechnical miracles seemed to be gaining in energy and momentum the longer he watched .Filch and Umbridge were standing apparently transfixed with horror halfway down the stairs .As Harry watched one of the larger Catherine wheels seemed to decide that what it needed was more room to maneuver it whirled toward Umbridge and Filch with a sinister voheeeeeeeeee .Both adults yelled with fright and ducked and it soared straight out of the window behind them and off across the grounds .Meanwhile several of the dragons and a large purple bat that was smoking ominously took advantage of the open door at the end of the corridor to escape toward the second floor .Hurry Filch hurry !shrieked Umbridge .Theyll be all over the school unless we do something Stupefy A jet of red light shot out of the end of her wand and hit one of the rockets .Instead of freezing in midair it exploded with such force that it blasted a hole in a painting of a soppylooking witch in the middle of a meadow she ran for it just in time reappearing seconds later squashed into the painting next door where a couple of wizards playing cards stood up hastily to make room for her .Dont Stun them Filch !shouted Umbridge angrily for all the world as though it had been his suggestion .Right you are Headmistress !wheezed Filch who was a Squib and could no more have Stunned the fireworks than swallowed them .He dashed to a nearby cupboard pulled out a broom and began swatting at the fireworks in midair within seconds the head of the broom was ablaze .Harry had seen enough .Laughing he ducked down low ran to a door he knew was concealed behind a tapestry a little way along the corridor and slipped through it to find Fred and George hiding just behind it listening to Umbridges and Filchs yells and quaking with suppressed mirth .Impressive Harry said quietly grinning .Very impressive .Youll put Dr .Filibuster out of business no problem .Cheers whispered George wiping tears of laughter from his face .Oh I hope she tries Vanishing them next .They multiply by ten every time you try .The fireworks continued to burn and to spread all over the school that afternoon .Though they caused plenty of disruption particularly the firecrackers the other teachers did not seem to mind them very much .Dear dear said Professor McGonagall sardonically as one of the dragons soared around her classroom emitting loud bangs and exhaling flame .Miss Brown would you mind running along to the headmistress and informing her that we have an escaped firework in our classroom ?The upshot of it all was that Professor Umbridge spent her first afternoon as headmistress running all over the school answering the summonses of the other teachers none of whom seemed able to rid their rooms of the fireworks without her .When the final bell rang and the students were heading back to Gryffindor Tower with their bags Harry saw with immense satisfaction a disheveled and soot blackened Umbridge tottering sweatyfaced from Professor Flitwicks classroom .Thank you so much Professor !said Professor Flitwick in his squeaky little voice .I could have got rid of the sparklers myself of course but I wasnt sure whether I had the authority .Beaming he closed his classroom door in her snarling face .Fred and George were heroes that night in the Gryffindor common room .Even Hermione fought her way through the excited crowd around them to congratulate them .They were wonderful fireworks she said admiringly .Thanks said George looking both surprised and pleased .Weasleys Wildfire WhizBangs .Only thing is we used our whole stock were going to have to start again from scratch now .It was worth it though said Fred who was taking orders from clamoring Gryffindors .If you want to add your name to the waiting list Hermione its five Galleons for your Basic Blaze box and twenty for the Deflagration Deluxe .Hermione returned to the table where Harry and Ron were sitting staring at their schoolbags as though hoping their homework might spring out of it and start doing itself .Oh why dont we have a night off ?said Hermione brightly as a silvertailed Weasley rocket zoomed past the window .After all the Easter holidays start on Friday well have plenty of time then .Are you feeling all right ?Ron asked staring at her in disbelief .Now you mention it said Hermione happily dyou know .I think Im feeling a bit .rebellious .Harry could still hear the distant bangs of escaped firecrackers when he and Ron went up to bed an hour later and as he got undressed a sparkler floated past the tower still resolutely spelling out the word POO .He got into bed yawning .With his glasses off the occasional firework still passing the window became blurred looking like sparkling clouds beautiful and mysterious against the black sky .He turned onto his side wondering how Umbridge was feeling about her first day in Dumbledores job and how Fudge would react when he heard that the school had spent most of the day in a state of advanced disruption .Smiling to himself he closed his eyes .The whizzes and bangs of escaped fireworks in the grounds seemed to be growing more distant .or perhaps he Harry was simply speeding away from them .He had fallen right into the corridor leading to the Department of Mysteries .He was speeding toward the plain black door .Let it open .Let it open .It did .He was inside the circular room lined with doors .He crossed it placed his hand upon an identical door and it swung inward .Now he was in a long rectangular room full of an odd mechanical clicking .There were dancing flecks of light on the walls but he did not pause to investigate .He had to go on .There was a door at the far end .It too opened at his touch .And now he was in a dimly lit room as high and wide as a church full of nothing but rows and rows of towering shelves each laden with small dusty spun glass spheres .Now Harrys heart was beating fast with excitement .He knew where to go .He ran forward but his footsteps made no noise in the enormous deserted room .There was something in this room he wanted very very much .Something he wanted .or somebody else wanted .His scar was hurting .BANG !Harry awoke instantly confused and angry .The dark dormitory was full of the sound of laughter .Cool !said Seamus who was silhouetted against the window .I think one of those Catherine wheels hit a rocket and its like they mated come and see !Harry heard Ron and Dean scramble out of bed for a better look .He lay quite still and silent while the pain in his scar subsided and disappointment washed over him .He felt as though a wonderful treat had been snatched from him at the very last moment .He had got so close that time .Glittering pinkandsilver winged piglets were now soaring past the windows of Gryffindor Tower .Harry lay and listened to the appreciative whoops of Gryffindors in the dormitories below them .His stomach gave a sickening jolt as he remembered that he had Occlumency the following evening .Harry spent the whole of the next day dreading what Snape was going to say if he found out how much farther into the Department of Mysteries he had penetrated during his last dream .With a surge of guilt he realized that he had not practiced Occlumency once since their last lesson There had been too much going on since Dumbledore had left .He was sure he would not have been able to empty his mind even if he had tried .He doubted however whether Snape would accept that excuse .He attempted a little lastminute practice during classes that day but it was no good Hermione kept asking him what was wrong whenever he fell silent trying to rid himself of all thought and emotion and after all the best moment to empty his brain was not while teachers were firing review questions at the class .Resigned to the worst he set off for Snape s office after dinner .Halfway across the entrance hall however Cho came hurrying up to him .Over here said Harry glad of a reason to postpone his meeting with Snape and beckoning her across to the corner of the entrance hall where the giant hourglasses stood .Gryffindors was now almost empty .Are you okay ?Umbridge hasnt been asking you about the D .A .has she ?Oh no said Cho hurriedly .No it was only .Well I just wanted to say .Harry I never dreamed Marietta would tell .Yeah well said Harry moodily .He did feel Cho might have chosen her friends a bit more carefully .It was small consolation that the last he had heard Marietta was still up in the hospital wing and Madam Pomfrey had not been able to make the slightest improvement to her pimples .Shes a lovely person really said Cho .She just made a mistake Harry looked at her incredulously .A lovely person who made a mistake ?She sold us all out including you !Well .we all got away didnt we ?said Cho pleadingly .You know her mum works for the Ministry its really difficult for her Rons dad works for the Ministry too !Harry said furiously .And in case you hadnt noticed he hasnt got ‘sneak written across his face That was a really horrible trick of Hermione Grangers said Cho fiercely .She should have told us shed jinxed that list I think it was a brilliant idea said Harry coldly .Cho flushed and her eyes grew brighter .Oh yes I forgot of course if it was darling Hermiones idea Dont start crying again said Harry warningly .I wasnt going to !she shouted .Yeah .well .good he said .Ive got enough to cope with at the moment .Go and cope with it then !she said furiously turning on her heel and stalking off .Fuming Harry descended the stairs to Snapes dungeon and though he knew from experience how much easier it would be for Snape to penetrate his mind if he arrived angry and resentful he succeeded in nothing but thinking of a few more good things he should have said to Cho about Marietta before reaching the dungeon door .Youre late Potter said Snape coldly as Harry closed the door behind him .Snape was standing with his back to Harry removing as usual certain of his thoughts and placing them carefully in Dumbledores Pensieve .He dropped the last silvery strand into the stone basin and turned to face Harry .So he said .Have you been practicing ?Yes Harry lied looking carefully at one of the legs of Snapes desk .Well well soon find out wont we ?said Snape smoothly .Wand out Potter .Harry moved into his usual position facing Snape with the desk between them .His heart was pumping fast with anger at Cho and anxiety about how much Snape was about to extract from his mind .On the count of three then said Snape lazily .One two Snapes office door banged open and Draco Malfoy sped in .Professor Snape sir oh sorry Malfoy was looking at Snape and Harry in some surprise .Its all right Draco said Snape lowering his wand .Potter is here for a little Remedial Potions .Harry had not seen Malfoy look so gleeful since Umbridge had turned up to inspect Hagrid .I didnt know he said leering at Harry who knew his face was burning .He would have given a great deal to be able to shout the truth at Malfoy or even better to hit him with a good curse .Well Draco what is it ?asked Snape .Its Professor Umbridge sir she needs your help said Malfoy .Theyve found Montague sir .Hes turned up jammed inside a toilet on the fourth floor .How did he get in there ?demanded Snape .I dont know sir hes a bit confused .Very well very well Potter said Snape we shall resume this lesson tomorrow evening instead .He turned and swept from his office .Malfoy mouthed Remedial Potions ?at Harry behind Snape s back before following him .Seething Harry replaced his wand inside his robes and made to leave the room .At least he had twenty four more hours in which to practice he knew he ought to feel grateful for the narrow escape though it was hard that it came at the expense of Malfoy telling the whole school that he needed Remedial Potions .He was at the office door when he saw it a patch of shivering light dancing on the door frame .He stopped looking at it reminded of something .Then he remembered It was a little like the lights he had seen in his dream last night the lights in the second room he had walked through on his journey through the Department of Mysteries .He turned around .The light was coming from the Pensieve sitting on Snape s desk .The silver white contents were ebbing and swirling within .Snapes thoughts .things he did not want Harry to see if he broke through Snapes defenses accidentally .Harry gazed at the Pensieve curiosity welling inside him .What was it that Snape was so keen to hide from Harry ?The silvery lights shivered on the wall .Harry took two steps toward the desk thinking hard .Could it possibly be information about the Department of Mysteries that Snape was determined to keep from him ?Harry looked over his shoulder his heart now pumping harder and faster than ever .How long would it take Snape to release Montague from the toilet ?Would he come straight back to his office afterward or accompany Montague to the hospital wing ?Surely the latter .Montague was Captain of the Slytherin Quidditch team Snape would want to make sure he was all right .Harry walked the remaining few feet to the Pensieve and stood over it gazing into its depths .He hesitated listening then pulled out his wand again .The office and the corridor beyond were completely silent .He gave the contents of the Pensieve a small prod with the end of his wand .The silvery stuff within began to swirl very fast .Harry leaned forward over it and saw that it had become transparent .He was once again looking down into a room as though through a circular window in the ceiling .In fact unless he was much mistaken he was looking down upon the Great Hall .His breath was actually fogging the surface of Snapes thoughts .His brain seemed to be in limbo .It would be insane to do the thing that he was so strongly tempted to do .He was trembling .Snape could be back at any moment .but Harry thought of Chos anger of Malfoys jeering face and a reckless daring seized him .He took a great gulp of breath and plunged his face into the surface of Snapes thoughts .At once the floor of the office lurched tipping Harry headfirst into the Pensieve .He was falling through cold blackness spinning furiously as he went and then He was standing in the middle of the Great Hall but the four House tables were gone .Instead there were more than a hundred smaller tables all facing the same way at each of which sat a student head bent low scribbling on a roll of parchment .The only sound was the scratching of quills and the occasional rustle as somebody adjusted their parchment .It was clearly exam time .Sunshine was streaming through the high windows onto the bent heads which shone chestnut and copper and gold in the bright light .Harry looked around carefully .Snape had to be here somewhere .This was his memory .And there he was at a table right behind Harry .Harry stared .Snapetheteenager had a stringy pallid look about him like a plant kept in the dark .His hair was lank and greasy and was flopping onto the table his hooked nose barely half an inch from the surface of the parchment as he scribbled .Harry moved around behind Snape and read the heading of the examination paper DEFENSE AGAINST THE DARK ARTS ORDINARY WIZARDING LEVEL So Snape had to be fifteen or sixteen around Harrys own age .His hand was flying across the parchment he had written at least a foot more than his closest neighbors and yet his writing was minuscule and cramped .Five more minutes !The voice made Harry jump turning he saw the top of Professor Flitwicks head moving between the desks a short distance away .Professor Flitwick was walking past a boy with untidy black hair .very untidy black hair .Harry moved so quickly that had he been solid he would have knocked desks flying .Instead he seemed to slide dreamlike across two aisles and up a third .The back of the blackhaired boys head drew nearer and nearer .He was straightening up now putting down his quill pulling his roll of parchment toward him so as to reread what he had written .Harry stopped in front of the desk and gazed down at his fifteenyear old father .Excitement exploded in the pit of his stomach It was as though he was looking at himself but with deliberate mistakes .Jamess eyes were hazel his nose was slightly longer than Harrys and there was no scar on his forehead but they had the same thin face same mouth same eyebrows .Jamess hair stuck up at the back exactly as Harrys did his hands could have been Harrys and Harry could tell that when James stood up they would be within an inch of each others heights .James yawned hugely and rumpled up his hair making it even messier than it had been .Then with a glance toward Professor Flitwick he turned in his seat and grinned at a boy sitting four seats behind him .With another shock of excitement Harry saw Sirius give James the thumbsup .Sirius was lounging in his chair at his ease tilting it back on two legs .He was very goodlooking his dark hair fell into his eyes with a sort of casual elegance neither Jamess nor Harrys could ever have achieved and a girl sitting behind him was eyeing him hopefully though he didnt seem to have noticed .And two seats along from this girl Harrys stomach gave another pleasurable squirm was Remus Lupin .He looked rather pale and peaky was the full moon approaching ?and was absorbed in the exam As he reread his answers he scratched his chin with the end of his quill frowning slightly .So that meant Wormtail had to be around here somewhere too .and sure enough Harry spotted him within seconds a small mousyhaired boy with a pointed nose .Wormtail looked anxious he was chewing his fingernails staring down at his paper scuffing the ground with his toes .Every now and then he glanced hopefully at his neighbors paper .Harry stared at Wormtail for a moment then back at James who was now doodling on a bit of scrap parchment .He had drawn a Snitch and was now tracing the letters L .E .What did they stand for ?Quills down please !squeaked Professor Flitwick .That means you too Stebbins !Please remain seated while I collect your parchment !Acciol More than a hundred rolls of parchment zoomed into the air and into Professor Flitwicks outstretched arms knocking him backward off his feet .Several people laughed .A couple of students at the front desks got up took hold of Professor Flitwick beneath the elbows and lifted him onto his feet again .Thank you .thank you panted Professor Flitwick .Very well everybody youre free to go !Harry looked down at his father who had hastily crossed out the L .E .he had been embellishing jumped to his feet stuffed his quill and the exam question paper into his bag which he slung over his back and stood waiting for Sirius to join him .Harry looked around and glimpsed Snape a short way away moving between the tables toward the doors into the entrance hall still absorbed in his own examination paper .Roundshouldered yet angular he walked in a twitchy manner that recalled a spider his oily hair swinging about his face .A gang of chattering girls separated Snape from James and Sirius and by planting himself in the midst of this group Harry managed to keep Snape in sight while straining his ears to catch the voices of James and his friends .Did you like question ten Moony ?asked Sirius as they emerged into the entrance hall .Loved it said Lupin briskly . ‘Give five signs that identify the werewolf .Excellent question .Dyou think you managed to get all the signs ?said James in tones of mock concern .Think I did said Lupin seriously as they joined the crowd thronging around the front doors eager to get out into the sunlit grounds .One Hes sitting on my chair .Two Hes wearing my clothes .Three His names Remus Lupin .Wormtail was the only one who didnt laugh .I got the snout shape the pupils of the eyes and the tufted tail he said anxiously but I couldnt think what else How thick are you Wormtail ?said James impatiently .You run round with a werewolf once a month Keep your voice down implored Lupin .Harry looked anxiously behind him again .Snape remained close by still buried in his examination questions but this was Snapes memory and Harry was sure that if Snape chose to wander off in a different direction once outside in the grounds he Harry would not be able to follow James any farther .To his intense relief however when James and his three friends strode off down the lawn toward the lake Snape followed still poring over the paper and apparently with no fixed idea of where he was going .By jogging a little ahead of him Harry managed to maintain a close watch on James and the others .Well I thought that paper was a piece of cake he heard Sirius say .Ill be surprised if I dont get Outstanding on it at least .Me too said James .He put his hand in his pocket and took out a struggling Golden Snitch .Where d you get that ?Nicked it said James casually .He started playing with the Snitch allowing it to fly as much as a foot away and seizing it again his reflexes were excellent .Wormtail watched him in awe .They stopped in the shade of the very same beech tree on the edge of the lake where Harry Ron and Hermione had spent a Sunday finishing their homework and threw themselves down on the grass .Harry looked over his shoulder yet again and saw to his delight that Snape had settled himself on the grass in the dense shadows of a clump of bushes .He was as deeply immersed in the O .W .L .paper as ever which left Harry free to sit down on the grass between the beech and the bushes and watch the foursome under the tree .The sunlight was dazzling on the smooth surface of the lake on the bank of which the group of laughing girls who had just left the Great Hall were sitting with shoes and socks off cooling their feet in the water .Lupin had pulled out a book and was reading .Sirius stared around at the students milling over the grass looking rather haughty and bored but very handsomely so .James was still playing with the Snitch letting it zoom farther and farther away almost escaping but always grabbed at the last second .Wormtail was watching him with his mouth open .Every time James made a particularly difficult catch Wormtail gasped and applauded .After five minutes of this Harry wondered why James didnt tell Wormtail to get a grip on himself but James seemed to be enjoying the attention .Harry noticed his father had a habit of rumpling up his hair as though to make sure it did not get too tidy and also that he kept looking over at the girls by the waters edge .Put that away will you ?said Sirius finally as James made a fine catch and Wormtail let out a cheer .Before Wormtail wets himself from excitement .Wormtail turned slightly pink but James grinned .If it bothers you he said stuffing the Snitch back in his pocket .Harry had the distinct impression that Sirius was the only one for whom James would have stopped showing off .Im bored said Sirius .Wish it was full moon .You might said Lupin darkly from behind his book .Weve still got Transfiguration if youre bored you could test me .Here .He held out his book .Sirius snorted .I dont need to look at that rubbish I know it all .Thisll liven you up Padfoot said James quietly .Look who it is .Siriuss head turned .He had become very still like a dog that has scented a rabbit .Excellent he said softly .Snivellus .Harry turned to see what Sirius was looking at .Snape was on his feet again and was stowing the O .W .L .paper in his bag .As he emerged from the shadows of the bushes and set off across the grass Sirius and James stood up .Lupin and Wormtail remained sitting Lupin was still staring down at his book though his eyes were not moving and a faint frown line had appeared between his eyebrows .Wormtail was looking from Sirius and James to Snape with a look of avid anticipation on his face .All right Snivellus ?said James loudly .Snape reacted so fast it was as though he had been expecting an attack Dropping his bag he plunged his hand inside his robes and his wand was halfway into the air when James shouted ExpelliarmusV Snape s wand flew twelve feet into the air and fell with a little thud in the grass behind him .Sirius let out a bark of laughter .Impedimental he said pointing his wand at Snape who was knocked off his feet halfway through a dive toward his own fallen wand .Students all around had turned to watch .Some of them had gotten to their feet and were edging nearer to watch .Some looked apprehensive others entertained .Snape lay panting on the ground .James and Sirius advanced on him wands up James glancing over his shoulder at the girls at the waters edge as he went .Wormtail was on his feet now watching hungrily edging around Lupin to get a clearer view .Howd the exam go Snivelly ?said James .I was watching him his nose was touching the parchment said Sirius viciously .Therell be great grease marks all over it they wont be able to read a word .Several people watching laughed Snape was clearly unpopular .Wormtail sniggered shrilly .Snape was trying to get up but the jinx was still operating on him he was struggling as though bound by invisible ropes .You wait he panted staring up at James with an expression of purest loathing .You wait .Wait for what ?said Sirius coolly .Whatre you going to do Snivelly wipe your nose on us ?Snape let out a stream of mixed swearwords and hexes but his wand being ten feet away nothing happened .Wash out your mouth said James coldly .Scourgifyl Pink soap bubbles streamed from Snapes mouth at once the froth was covering his lips making him gag choking him Leave him ALONE !James and Sirius looked around .Jamess free hand jumped to his hair again .It was one of the girls from the lake edge .She had thick dark red hair that fell to her shoulders and startlingly green almondshaped eyes Harrys eyes .Harrys mother .All right Evans ?said James and the tone of his voice was suddenly pleasant deeper more mature .Leave him alone Lily repeated .She was looking at James with every sign of great dislike .Whats he done to you ?Well said James appearing to deliberate the point its more the fact that he exists if you know what I mean .Many of the surrounding watchers laughed Sirius and Wormtail included but Lupin still apparently intent on his book didnt and neither did Lily .You think youre funny she said coldly .But youre just an arrogant bullying toerag Potter .Leave him alone .I will if you go out with me Evans said James quickly .Go on .Go out with me and Ill never lay a wand on old Snivelly again .Behind him the Impediment Jinx was wearing off .Snape was beginning to inch toward his fallen wand spitting out soapsuds as he crawled .I wouldnt go out with you if it was a choice between you and the giant squid said Lily .Bad luck Prongs said Sirius briskly turning back to Snape .OY !But too late Snape had directed his wand straight at James there was a flash of light and a gash appeared on the side of Jamess face spattering his robes with blood .James whirled about a second flash of light later Snape was hanging upside down in the air his robes falling over his head to reveal skinny pallid legs and a pair of graying underpants .Many people in the small crowd watching cheered .Sirius James and Wormtail roared with laughter .Lily whose furious expression had twitched for an instant as though she was going to smile said Let him down !Certainly said James and he jerked his wand upward .Snape fell into a crumpled heap on the ground .Disentangling himself from his robes he got quickly to his feet wand up but Sirius said Petrificus Totalusl and Snape keeled over again at once rigid as a board .LEAVE HIM ALONE !Lily shouted .She had her own wand out now .James and Sirius eyed it warily .Ah Evans dont make me hex you said James earnestly .Take the curse off him then !James sighed deeply then turned to Snape and muttered the countercurse .There you go he said as Snape struggled to his feet again youre lucky Evans was here Snivellus I dont need help from filthy little Mudbloods like her !Lily blinked .Fine she said coolly .I wont bother in future .And Id wash your pants if I were you Snivellus .Apologize to Evans !James roared at Snape his wand pointed threateningly at him .I dont want you to make him apologize Lily shouted rounding on James .Youre as bad as he is .What ?yelped James .Id NEVER call you a you knowwhat !Messing up your hair because you think it looks cool to look like youve just got off your broomstick showing off with that stupid Snitch walking down corridors and hexing anyone who annoys you just because you can Im surprised your broomstick can get off the ground with that fat head on it .You make me SICK .She turned on her heel and hurried away .Evans !James shouted after her Hey EVANS !But she didnt look back .What is it with her ?said James trying and failing to look as though this was a throwaway question of no real importance to him .Reading between the lines Id say she thinks youre a bit conceited mate said Sirius .Right said James who looked furious now right There was another flash of light and Snape was once again hanging upside down in the air .Who wants to see me take off Snivellys pants ?But whether James really did take off Snapes pants Harry never found out .A hand had closed tight over his upper arm closed with a pincerlike grip .Wincing Harry looked around to see who had hold of him and saw with a thrill of horror a fully grown adultsized Snape standing right beside him white with rage .Having fun ?Harry felt himself rising into the air .The summers day evaporated around him he was floating upward through icy blackness Snapes hand still tight upon his upper arm .Then with a swooping feeling as though he had turned head over heels in midair his feet hit the stone floor of Snapes dungeon and he was standing again beside the Pensieve on Snapes desk in the shadowy presentday Potions masters study .So said Snape gripping Harrys arm so tightly Harrys hand was starting to feel numb .So .been enjoying yourself Potter ?Nno .said Harry trying to free his arm .It was scary Snapes lips were shaking his face was white his teeth were bared .Amusing man your father wasnt he ?said Snape shaking Harry so hard that his glasses slipped down his nose .I didnt Snape threw Harry from him with all his might .Harry fell hard onto the dungeon floor .You will not tell anybody what you saw !Snape bellowed .No said Harry getting to his feet as far from Snape as he could .No of course I w Get out get out I dont want to see you in this office ever again !And as Harry hurtled toward the door ajar of dead cockroaches exploded over his head .He wrenched the door open and flew away up the corridor stopping only when he had put three floors between himself and Snape .There he leaned against the wall panting and rubbing his bruised arm .He had no desire at all to return to Gryffindor Tower so early nor to tell Ron and Hermione what he had just seen .What was making Harry feel so horrified and unhappy was not being shouted at or having jars thrown at him it was that he knew how it felt to be humiliated in the middle of a circle of onlookers knew exactly how Snape had felt as his father had taunted him and that judging from what he had just seen his father had been every bit as arrogant as Snape had always told him .CAREER ADVICE But why havent you got Occlumency lessons anymore ?said Hermione frowning .Ive told you Harry muttered .Snape reckons I can carry on by myself now Ive got the basics .So youve stopped having funny dreams ?said Hermione skeptically .Pretty much said Harry not looking at her .Well I dont think Snape should stop until youre absolutely sure you can control them !said Hermione indignantly .Harry I think you should go back to him and ask No said Harry forcefully .Just drop it Hermione okay ?It was the first day of the Easter holidays and Hermione as was her custom had spent a large part of the day drawing up study schedules for the three of them .Harry and Ron had let her do it it was easier than arguing with her and in any case they might come in useful .Ron had been startled to discover that there were only six weeks left until their exams .How can that come as a shock ?Hermione demanded as she tapped each little square on Rons schedule with her wand so that it flashed a different color according to its subject .I dunno .said Ron theres been a lot going on .Well there you are she said handing him his schedule if you follow that you should do fine .Ron looked down it gloomily but then brightened .Youve given me an evening off every week !Thats for Quidditch practice said Hermione .The smile faded from Rons face .Whats the point ?he said .Weve got about as much chance of winning the Quidditch Cup this year as Dads got of becoming Minister of Magic .Hermione said nothing .She was looking at Harry who was staring blankly at the opposite wall of the common room while Crookshanks pawed at his hand trying to get his ears scratched .Whats wrong Harry ?What ?he said quickly .Nothing .He seized his copy of Defensive Magical Theory and pretended to be looking something up in the index .Crookshanks gave him up as a bad job and slunk away under Hermiones chair .I saw Cho earlier said Hermione tentatively and she looked really miserable too .Have you two had a row again ?Wha oh yeah we have said Harry seizing gratefully on the excuse .What about ?That sneak friend of hers Marietta said Harry .Yeah well I dont blame you !said Ron angrily setting down his study schedule .If it hadnt been for her .Ron went into a rant about Marietta Edgecombe which Harry found helpful .All he had to do was look angry nod and say yeah and thats right whenever Ron drew breath leaving his mind free to dwell ever more miserably on what he had seen in the Pensieve .He felt as though the memory of it was eating him from inside .He had been so sure that his parents had been wonderful people that he never had the slightest difficulty in disbelieving Snapes aspersions on his fathers character .Hadnt people like Hagrid and Sirius told Harry how wonderful his father had been ?Yeah well look what Sirius was like himself said a nagging voice inside Harrys head .He was as bad wasnt he ?Yes he had once overheard Professor McGonagall saying that his father and Sirius had been troublemakers at school but she had described them as forerunners of the Weasley twins and Harry could not imagine Fred and George dangling someone upside down for the fun of it .not unless they really loathed them .Perhaps Malfoy or somebody who really deserved it .Harry tried to make a case for Snape having deserved what he had suffered at Jamess hands but hadnt Lily asked Whats he done to you ?And hadnt James replied Its more the fact that he exists if you know what I mean ?Hadnt James started it all simply because Sirius said he was bored ?Harry remembered Lupin saying back in Grimmauld Place that Dumbledore had made him prefect in the hope that he would be able to exercise some control over James and Sirius .But in the Pensieve he had sat there and let it all happen .Harry reminded himself that Lily had intervened his mother had been decent yet the memory of the look on her face as she had shouted at James disturbed him quite as much as anything else .She had clearly loathed James and Harry simply could not understand how they could have ended up married .Once or twice he even wondered whether James had forced her into it .For nearly five years the thought of his father had been a source of comfort of inspiration .Whenever someone had told him he was like James he had glowed with pride inside .And now .now he felt cold and miserable at the thought of him .The weather grew breezier brighter and warmer as the holidays passed but Harry was stuck with the rest of the fifth and seventh years who were all trapped inside traipsing back and forth to the library .Harry pretended that his bad mood had no other cause but the approaching exams and as his fellow Gryffindors were sick of studying themselves his excuse went unchallenged .Harry Im talking to you can you hear me ?Huh ?He looked around .Ginny Weasley looking very windswept had joined him at the library table where he had been sitting alone .It was late on Sunday evening Hermione had gone back to Gryffindor Tower to review Ancient Runes Ron had Quidditch practice .Oh hi said Harry pulling his books back toward him .How come youre not at practice ?Its over said Ginny .Ron had to take Jack Sloper up to the hospital wing .Why ?Well were not sure but we think he knocked himself out with his own bat .She sighed heavily .Anyway .a package just arrived its only just got through Umbridges new screening process .She hoisted a box wrapped in brown paper onto the table it had clearly been unwrapped and carelessly rewrapped and there was a scribbled note across it in red ink reading INSPECTED AND PASSED BY THE HOGWARTS HIGH INQUISITOR .Its Easter eggs from Mum said Ginny .Theres one for you .There you go .She handed him a handsome chocolate egg decorated with small iced Snitches and according to the packaging containing a bag of Fizzing Whizbees .Harry looked at it for a moment then to his horror felt a hard lump rise in his throat .Are you okay Harry ?asked Ginny quietly .Yeah Im fine said Harry gruffly .The lump in his throat was painful .He did not understand why an Easter egg should have made him feel like this .You seem really down lately Ginny persisted .You know Im sure if you just talked to Cho .Its not Cho I want to talk to said Harry brusquely .Who is it then ?asked Ginny .He glanced around to make quite sure that nobody was listening Madam Pince was several shelves away stamping out a pile of books for a franticlooking Hannah Abbott .I wish I could talk to Sirius he muttered .But I know I cant .More to give himself something to do than because he really wanted any Harry unwrapped his Easter egg broke off a large bit and put it into his mouth .Well said Ginny slowly helping herself to a bit of egg too if you really want to talk to Sirius I expect we could think of a way to do it .Come on said Harry hopelessly .With Umbridge policing the fires and reading all our mail ?The thing about growing up with Fred and George said Ginny thoughtfully is that you sort of start thinking anythings possible if youve got enough nerve .Harry looked at her .Perhaps it was the effect of the chocolate Lupin had always advised eating some after encounters with dementors or simply because he had finally spoken aloud the wish that had been burning inside him for a week but he felt a bit more hopeful .WHAT DO YOU THINK YOU ARE DOING ?Oh damn whispered Ginny jumping to her feet .I forgot Madam Pince was swooping down upon them her shriveled face contorted with rage .Chocolate in the library she screamed .Out out OUT !And whipping out her wand she caused Harrys books bag and ink bottle to chase him and Ginny from the library whacking them repeatedly over the head as they ran .As though to underline the importance of their upcoming examinations a batch of pamphlets leaflets and notices concerning various Wizarding careers appeared on the tables in Gryffindor Tower shortly before the end of the holidays along with yet another notice on the board which read CAREER ADVICE All fifth years will be required to attend a short meeting with their Head of House during the first week of the Summer term in which they will be given the opportunity to discuss their future careers .Times of individual appointments are listed below .Harry looked down the list and found that he was expected in Professor McGonagalls office at halfpast two on Monday which would mean missing most of Divination .He and the other fifth years spent a considerable part of the final weekend of the Easter break reading all the career information that had been left there for their perusal .Well I dont fancy Healing said Ron on the last evening of the holidays .He was immersed in a leaflet that carried the crossed boneandwand emblem of St .Mungos on its front .It says here you need at least an E at N .E .W .T .level in Potions Herbology Transfiguration Charms and Defense Against the Dark Arts .I mean .blimey .Dont want much do they ?Well its a very responsible job isnt it ?said Hermione absently .She was poring over a bright pinkandorange leaflet that was headed SO YOU THINK YOUD LIKE TO WORK IN MUGGLE RELATIONS ?You dont seem to need many qualifications to liaise with Muggles .All they want is an O .W .L .in Muggle Studies . ‘Much more important is your enthusiasm patience and a good sense offunV Youd need more than a good sense of fun to liaise with my uncle said Harry darkly .Good sense of when to duck more like .He was halfway through a pamphlet on Wizard banking .Listen to this ‘Are you seeking a challenging career involving travel adventure and substantial dangerrelated treasure bonuses ?Then consider a position with Gringotts Wizarding Bank who are currently recruiting Curse Breakers for thrilling opportunities abroad .They want Arithmancy though .You could do it Hermione !I dont much fancy banking said Hermione vaguely now immersed in HAVE YOU GOT WHAT IT TAKES TO TRAIN SECURITY TROLLS ?Hey said a voice in Harrys ear .He looked around Fred and George had come to join them .Ginnys had a word with us about you said Fred stretching out his legs on the table in front of them and causing several booklets on careers with the Ministry of Magic to slide off onto the floor .She says you need to talk to Sirius ?What ?said Hermione sharply freezing with her hand halfway toward picking up MAKE A BANG AT THE DEPARTMENT OF MAGICAL ACCIDENTS AND CATASTROPHES .Yeah .said Harry trying to sound casual yeah I thought Id like Dont be so ridiculous said Hermione straightening up and looking at him as though she could not believe her eyes .With Umbridge groping around in the fires and frisking all the owls ?Well we think we can find a way around that said George stretching and smiling .Its a simple matter of causing a diversion .Now you might have noticed that we have been rather quiet on the mayhem front during the Easter holidays ?What was the point we asked ourselves of disrupting leisure time ?continued Fred .No point at all we answered ourselves .And of course wed have messed up peoples studying too which would be the very last thing wed want to do .He gave Hermione a sanctimonious little nod .She looked rather taken aback by this thoughtfulness .But its business as usual from tomorrow Fred continued briskly .And if were going to be causing a bit of uproar why not do it so that Harry can have his chat with Sirius ?Yes but still said Hermione with an air of explaining something very simple to somebody very obtuse even if you do cause a diversion how is Harry supposed to talk to him ?Umbridges office said Harry quietly .He had been thinking about it for a fortnight and could think of no alternative Umbridge herself had told him that the only fire that was not being watched was her own .Are you insane ?said Hermione in a hushed voice .Ron had lowered his leaflet on jobs in the cultivated fungus trade and was watching the conversation warily .I dont think so said Harry shrugging .And how are you going to get in there in the first place ?Harry was ready for this question .Siriuss knife he said .Excuse me ?Christmas before last Sirius gave me a knife thatll open any lock said Harry .So even if shes bewitched the door so Alohomora wont work which I bet she has What do you think about this ?Hermione demanded of Ron and Harry was reminded irresistibly of Mrs Weasley appealing to her husband during Harrys first dinner in Grimmauld Place .I dunno said Ron looking alarmed at being asked to give an opinion .If Harry wants to do it its up to him isnt it ?Spoken like a true friend and Weasley said Fred clapping Ron hard on the back .Right then .Were thinking of doing it tomorrow just after lessons because it should cause maximum impact if everybodys in the corridors Harry well set it off in the east wing somewhere draw her right away from her own office I reckon we should be able to guarantee you what twenty minutes ?he said looking at George .Easy said George .What sort of diversion is it ?asked Ron .Youll see little bro said Fred as he and George got up again .At least you will if you trot along to Gregory the Smarmys corridor round about five oclock tomorrow .Harry awoke very early the next day feeling almost as anxious as he had done on the morning of his hearing at the Ministry of Magic .It was not only the prospect of breaking into Umbridges office and using her fire to speak to Sirius that was making him feel nervous though that was certainly bad enough today also happened to be the first time he would be in close proximity with Snape since Snape had thrown him out of his office as they had Potions that day .After lying in bed for a while thinking about the day ahead Harry got up very quietly and moved across to the window beside Nevilles bed staring out on a truly glorious morning .The sky was a clear misty opalescent blue .Directly ahead of him Harry could see the towering beech tree below which his father had once tormented Snape .He was not sure what Sirius could possibly say to him that would make up for what he had seen in the Pensieve but he was desperate to hear Siriuss own account of what had happened to know of any mitigating factors there might have been any excuse at all for his fathers behavior .Something caught Harrys attention movement on the edge of the Forbidden Forest .Harry squinted into the sun and saw Hagrid emerging from between the trees .He seemed to be limping .As Harry watched Hagrid staggered to the door of his cabin and disappeared inside it .Harry watched the cabin for several minutes .Hagrid did not emerge again but smoke furled from the chimney so Hagrid could not be so badly injured that he was unequal to stoking the fire .Harry turned away from the window headed back to his trunk and started to dress .With the prospect of forcing entry into Umbridges office ahead Harry had never expected the day to be a restful one but he had not reckoned on Hermiones almost continual attempts to dissuade him from what he was planning to do at five oclock .For the first time ever she was at least as inattentive to Professor Binns in History of Magic as Harry and Ron were keeping up a stream of whispered admonitions that Harry tried very hard to ignore . .and if she does catch you there apart from being expelled shell be able to guess youve been talking to Snuffles and this time I expect shell force you to drink Veritaserum and answer her questions .Hermione said Ron in a low and indignant voice are you going to stop telling Harry off and listen to Binns or am I going to have to take notes instead ?You take notes for a change it wont kill you !By the time they reached the dungeons neither Harry nor Ron was speaking to Hermione any longer .Undeterred she took advantage of their silence to maintain an uninterrupted flow of dire warnings all uttered under her breath in a vehement hiss that caused Seamus to waste five whole minutes checking his cauldron for leaks .Snape meanwhile seemed to have decided to act as though Harry were invisible .Harry was of course well used to this tactic as it was one of Uncle Vernons favorites and on the whole was grateful he had to suffer nothing worse .In fact compared to what he usually had to endure from Snape in the way of taunts and snide remarks he found the new approach something of an improvement and was pleased to find that when left well alone he was able to concoct an Invigoration Draught quite easily .At the end of the lesson he scooped some of the potion into a flask corked it and took it up to Snapes desk for marking feeling that he might at last have scraped an E .He had just turned away when he heard a smashing noise Malfoy gave a gleeful yell of laughter .Harry whipped around again .His potion sample lay in pieces on the floor and Snape was watching him with a look of gloating pleasure .Whoops he said softly .Another zero then Potter Harry was too incensed to speak .He strode back to his cauldron intending to fill another flask and force Snape to mark it but saw to his horror that the rest of the contents had vanished .Im sorry !said Hermione with her hands over her mouth .Im really sorry Harry I thought youd finished so I cleared up !Harry could not bring himself to answer .When the bell rang he hurried out of the dungeon without a backward glance and made sure that he found himself a seat between Neville and Seamus for lunch so that Hermione could not start nagging him about using Umbridges office again .He was in such a bad mood by the time that he got to Divination that he had quite forgotten his career appointment with Professor McGonagall remembering only when Ron asked him why he wasnt in her office .He hurtled back upstairs and arrived out of breath only a few minutes late .Sorry Professor he panted as he closed the door .I forgot .No matter Potter she said briskly but as she spoke somebody else sniffed from the corner .Harry looked around .Professor Umbridge was sitting there a clipboard on her knee a fussy little piefrill around her neck and a small horribly smug smile on her face .Sit down Potter said Professor McGonagall tersely .Her hands shook slightly as she shuffled the many pamphlets littering her desk .Harry sat down with his back to Umbridge and did his best to pretend he could not hear the scratching of her quill on her clipboard .Well Potter this meeting is to talk over any career ideas you might have and to help you decide which subjects you should continue into sixth and seventh years said Professor McGonagall .Have you had any thoughts about what you would like to do after you leave Hogwarts ?Er said Harry .He was finding the scratching noise from behind him very distracting .Yes ?Professor McGonagall prompted Harry .Well I thought of maybe being an Auror Harry mumbled .Youd need top grades for that said Professor McGonagall extracting a small dark leaflet from under the mass on her desk and opening it .They ask for a minimum of five N .E .W .T .s and nothing under ‘Exceeds Expectations grade I see .Then you would be required to undergo a stringent series of character and aptitude tests at the Auror office .Its a difficult career path Potter they only take the best .In fact I dont think anybody has been taken on in the last three years .At this moment Professor Umbridge gave a very tiny cough as though she was trying to see how quietly she could do it .Professor McGonagall ignored her .Youll want to know which subjects you ought to take I suppose ?she went on talking a little more loudly than before .Yes said Harry .Defense Against the Dark Arts I suppose ?Naturally said Professor McGonagall crisply .I would also advise Professor Umbridge gave another cough a little more audible this time .Professor McGonagall closed her eyes for a moment opened them again and continued as though nothing had happened .I would also advise Transfiguration because Aurors frequently need to Transfigure or Untransfigure in their work .And I ought to tell you now Potter that I do not accept students into my N .E .W .T .classes unless they have achieved ‘Exceeds Expectations or higher at Ordinary Wizarding Level .Id say youre averaging ‘Acceptable at the moment so youll need to put in some good hard work before the exams to stand a chance of continuing .Then you ought to do Charms always useful and Potions .Yes Potter Potions she added with the merest flicker of a smile .Poisons and antidotes are essential study for Aurors .And I must tell you that Professor Snape absolutely refuses to take students who get anything other than ‘Outstanding in their O .W .L .s so Professor Umbridge gave her most pronounced cough yet .May I offer you a cough drop Dolores ?Professor McGonagall asked curtly without looking at Professor Umbridge .Oh no thank you very much said Umbridge with that simpering laugh Harry hated so much .I just wondered whether I could make the teensiest interruption Minerva ?I daresay you 11 find you can said Professor McGonagall through tightly gritted teeth .I was just wondering whether Mr Potter has quite the temperament for an Auror ?said Professor Umbridge sweetly .Were you ?said Professor McGonagall haughtily .Well Potter she continued as though there had been no interruption if you are serious in this ambition I would advise you to concentrate hard on bringing your Transfiguration and Potions up to scratch .I see Professor Flitwick has graded you between Acceptable and ‘Exceeds Expectations for the last two years so your Charm work seems satisfactory as for Defense Against the Dark Arts your marks have been generally high Professor Lupin in particular thought you are you quite sure you wouldnt like a cough drop Dolores ?Oh no need thank you Minerva simpered Professor Umbridge who had just coughed her loudest yet .I was just concerned that you might not have Harrys most recent Defense Against the Dark Arts marks in front of you .Im quite sure I slipped in a note .What this thing ?said Professor McGonagall in a tone of revulsion as she pulled a sheet of pink parchment from between the leaves of Harrys folder .She glanced down it her eyebrows slightly raised then placed it back into the folder without comment .Yes as I was saying Potter Professor Lupin thought you showed a pronounced aptitude for the subject and obviously for an Auror Did you not understand my note Minerva ?asked Professor Umbridge in honeyed tones quite forgetting to cough .Of course I understood it said Professor McGonagall her teeth clenched so tightly that the words came out a little muffled .Well then I am confused .Im afraid I dont quite understand how you can give Mr Potter false hope that False hope ?repeated Professor McGonagall still refusing to look round at Professor Umbridge .He has achieved high marks in all his Defense Against the Dark Arts tests Im terribly sorry to have to contradict you Minerva but as you will see from my note Harry has been achieving very poor results in his classes with me I should have made my meaning plainer said Professor McGonagall turning at last to look Umbridge directly in the eyes .He has achieved high marks in all Defense Against the Dark Arts tests set by a competent teacher .Professor Umbridges smile vanished as suddenly as a lightbulb blowing .She sat back in her chair turned a sheet on her clipboard and began scribbling very fast indeed her bulging eyes rolling from side to side .Professor McGonagall turned back to Harry her thin nostrils flared her eyes burning .Any questions Potter ?Yes said Harry .What sort of character and aptitude tests do the Ministry do on you if you get enough N .E .W .T .s ?Well youll need to demonstrate the ability to react well to pressure and so forth said Professor McGonagall perseverance and dedication because Auror training takes a further three years not to mention very high skills in practical defense .It will mean a lot more study even after youve left school so unless youre prepared to I think youll also find said Umbridge her voice very cold now that the Ministry looks into the records of those applying to be Aurors .Their criminal records .unless youre prepared to take even more exams after Hogwarts you should really look at another which means that this boy has as much chance of becoming an Auror as Dumbledore has of ever returning to this school .A very good chance then said Professor McGonagall .Potter has a criminal record said Umbridge loudly .Potter has been cleared of all charges said Professor McGonagall even more loudly .Professor Umbridge stood up .She was so short that this did not make a great deal of difference but her fussy simpering demeanor had given place to a hard fury that made her broad flabby face look oddly sinister .Potter has no chance whatsoever of becoming an Auror !Professor McGonagall got to her feet too and in her case this was a much more impressive move .She towered over Professor Umbridge .Potter she said in ringing tones I will assist you to become an Auror if it is the last thing I do !If I have to coach you nightly I will make sure you achieve the required results !The Minister of Magic will never employ Harry Potter !said Umbridge her voice rising furiously .There may well be a new Minister of Magic by the time Potter is ready to join !shouted Professor McGonagall .Aha !shrieked Professor Umbridge pointing a stubby finger at McGonagall .Yes !Yes yes yes !Of course !Thats what you want isnt it Minerva McGonagall ?You want Cornelius Fudge replaced by Albus Dumbledore !You think youll be where I am dont you Senior Undersecretary to the Minister and headmistress to boot !You are raving said Professor McGonagall superbly disdainful .Potter that concludes our career consultation .Harry swung his bag over his shoulder and hurried out of the room not daring to look at Umbridge .He could hear her and Professor McGonagall continuing to shout at each other all the way back along the corridor .Professor Umbridge was still breathing as though she had just run a race when she strode into their Defense Against the Dark Arts lesson that afternoon .I hope youve thought better of what you were planning to do Harry Hermione whispered the moment they had opened their books to chapter thirty four NonRetaliation and Negotiation .Umbridge looks like shes in a really bad mood already .Every now and then Umbridge shot glowering looks at Harry who kept his head down staring at Defensive Magical Theory his eyes unfocused thinking .He could just imagine Professor McGonagalls reaction if he were caught trespassing in Professor Umbridges office mere hours after she had vouched for him .There was nothing to stop him simply going back to Gryffindor Tower and hoping that sometime during the next summer holiday he would have a chance to ask Sirius about the scene he had witnessed in the Pensieve .Nothing except that the thought of taking this sensible course of action made him feel as though a lead weight had dropped into his stomach .And then there was the matter of Fred and George whose diversion was already planned not to mention the knife Sirius had given him which was currently residing in his schoolbag along with his fathers old Invisibility Cloak .But the fact remained that if he were caught .Dumbledore sacrificed himself to keep you in school Harry !whispered Hermione raising her book to hide her face from Umbridge .And if you get thrown out today it will all have been for nothing !He could abandon the plan and simply learn to live with the memory of what his father had done on a summers day more than twenty years ago .And then he remembered Sirius in the fire upstairs in the Gryffindor common room .You re less like your father than I thought .The risk wouldve been what made it fun for James .But did he want to be like his father anymore ?Harry dont do it please dont do it !Hermione said in anguished tones as the bell rang at the end of the class .He did not answer he did not know what to do .Ron seemed determined to give neither his opinion nor his advice .He would not look at Harry though when Hermione opened her mouth to try dissuading Harry some more he said in a low voice Give it a rest okay ?He can make up his own mind .Harrys heart beat very fast as he left the classroom .He was halfway along the corridor outside when he heard the unmistakable sounds of a diversion going off in the distance .There were screams and yells reverberating from somewhere above them .People exiting the classrooms all around Harry were stopping in their tracks and looking up at the ceiling fearfully Then Umbridge came pelting out of her classroom as fast as her short legs would carry her .Pulling out her wand she hurried off in the opposite direction It was now or never .Harry please !said Hermione weakly .But he had made up his mind hitching his bag more securely onto his shoulder he set off at a run weaving in and out of students now hurrying in the opposite direction off to see what all the fuss was about in the east wing .Harry reached the corridor where Umbridges office was situated and found it deserted .Dashing behind a large suit of armor whose helmet creaked around to watch him he pulled open his bag seized Siriuss knife and donned the Invisibility Cloak .He then crept slowly and carefully back out from behind the suit of armor and along the corridor until he reached Umbridges door .He inserted the blade of the magical knife into the crack around it and moved it gently up and down then withdrew it .There was a tiny click and the door swung open .He ducked inside the office closed the door quickly behind him and looked around .It was empty nothing was moving except the horrible kittens on the plates continuing to frolic on the wall above the confiscated broomsticks .Harry pulled off his cloak and striding over to the fireplace found what he was looking for within seconds a small box containing glittering Floo powder .He crouched down in front of the empty grate his hands shaking .He had never done this before though he thought he knew how it must work .Sticking his head into the fireplace he took a large pinch of powder and dropped it onto the logs stacked neatly beneath him .They exploded at once into emeraldgreen flames .Number twelve Grimmauld Place !Harry said loudly and clearly .It was one of the most curious sensations he had ever experienced he had traveled by Floo powder before of course but then it had been his entire body that had spun around and around in the flames through the network of Wizarding fireplaces that stretched over the country This time his knees remained firm upon the cold floor of Umbridges office and only his head hurtled through the emerald fire .And then abruptly as it had begun the spinning stopped .Feeling rather sick and as though he was wearing an exceptionally hot muffler around his head Harry opened his eyes to find that he was looking up out of the kitchen fireplace at the long wooden table where a man sat poring over a piece of parchment .Sirius ?The man jumped and looked around .It was not Sirius but Lupin .Harry !he said looking thoroughly shocked .What are you whats happened is everything all right ?Yeah said Harry .I just wondered I mean I just fancied a a chat with Sirius .Ill call him said Lupin getting to his feet still looking perplexed .He went upstairs to look for Kreacher he seems to be hiding in the attic again .And Harry saw Lupin hurry out of the kitchen .Now he was left with nothing to look at but the chair and table legs .He wondered why Sirius had never mentioned how very uncomfortable it was to speak out of the fire his knees were already objecting painfully to their prolonged contact with Umbridges hard stone floor .Lupin returned with Sirius at his heels moments later .What is it ?said Sirius urgently sweeping his long dark hair out of his eyes and dropping to the ground in front of the fire so that he and Harry were on a level Lupin knelt down too looking very concerned .Are you all right ?Do you need help ?No said Harry its nothing like that .I just wanted to talk .about my dad .They exchanged a look of great surprise but Harry did not have time to feel awkward or embarrassed his knees were becoming sorer by the second and he guessed that five minutes had already passed from the start of the diversion George had only guaranteed him twenty .He therefore plunged immediately into the story of what he had seen in the Pensieve .When he had finished neither Sirius nor Lupin spoke for a moment .Then Lupin said quietly I wouldnt like you to judge your father on what you saw there Harry .He was only fifteen Im fifteen !said Harry heatedly .Look Harry said Sirius placatingly James and Snape hated each other from the moment they set eyes on each other it was just one of those things you can understand that cant you ?I think James was everything Snape wanted to be he was popular he was good at Quidditch good at pretty much everything .And Snape was just this little oddball who was up to his eyes in the Dark Arts and James whatever else he may have appeared to you Harry always hated the Dark Arts .Yeah said Harry but he just attacked Snape for no good reason just because well just because you said you were bored he finished with a slightly apologetic note in his voice .Im not proud of it said Sirius quickly .Lupin looked sideways at Sirius and then said Look Harry what youve got to understand is that your father and Sirius were the best in the school at whatever they did everyone thought they were the height of cool if they sometimes got a bit carried away If we were sometimes arrogant little berks you mean said Sirius .Lupin smiled .He kept messing up his hair said Harry in a pained voice .Sirius and Lupin laughed .Id forgotten he used to do that said Sirius affectionately .Was he playing with the Snitch ?said Lupin eagerly .Yeah said Harry watching uncomprehendingly as Sirius and Lupin beamed reminiscently .Well .I thought he was a bit of an idiot .Of course he was a bit of an idiot !said Sirius bracingly .We were all idiots !Well not Moony so much he said fairly looking at Lupin but Lupin shook his head .Did I ever tell you to lay off Snape ?he said .Did I ever have the guts to tell you I thought you were out of order ?Yeah well said Sirius you made us feel ashamed of ourselves sometimes .That was something .And said Harry doggedly determined to say everything that was on his mind now he was here he kept looking over at the girls by the lake hoping they were watching him !Oh well he always made a fool of himself whenever Lily was around said Sirius shrugging .He couldnt stop himself showing off whenever he got near her .How come she married him ?Harry asked miserably .She hated him !Nah she didnt said Sirius .She started going out with him in seventh year said Lupin .Once James had deflated his head a bit said Sirius .And stopped hexing people just for the fun of it said Lupin .Even Snape ?said Harry .Well said Lupin slowly Snape was a special case .I mean he never lost an opportunity to curse James so you couldnt really expect James to take that lying down could you ?And my mum was okay with that ?She didnt know too much about it to tell you the truth said Sirius .I mean James didnt take Snape on dates with her and jinx him in front of her did he ?Sirius frowned at Harry who was still looking unconvinced .Look he said your father was the best friend I ever had and he was a good person .A lot of people are idiots at the age of fifteen .He grew out of it .Yeah okay said Harry heavily .I just never thought Id feel sorry for Snape .Now you mention it said Lupin a faint crease between his eyebrows how did Snape react when he found youd seen all this ?He told me hed never teach me Occlumency again said Harry indifferently like thats a big disappoint He WHAT ?shouted Sirius causing Harry to jump and inhale a mouthful of ashes .Are you serious Harry ?said Lupin quickly .Hes stopped giving you lessons ?Yeah said Harry surprised at what he considered a great overreaction .But its okay I dont care its a bit of a relief to tell you the Im coming up there to have a word with Snape !said Sirius forcefully and he actually made to stand up but Lupin wrenched him back down again .If anyones going to tell Snape it will be me !he said firmly .But Harry first of all youre to go back to Snape and tell him that on no account is he to stop giving you lessons when Dumbledore hears I cant tell him that hed kill me !said Harry outraged .You didnt see him when we got out of the Pensieve Harry there is nothing so important as you learning Occlumency !said Lupin sternly .Do you understand me ?Nothing !Okay okay said Harry thoroughly discomposed not to mention annoyed .Ill .Ill try and say something to him .But it wont be .He fell silent .He could hear distant footsteps .Is that Kreacher coming downstairs ?No said Sirius glancing behind him .It must be somebody your end .Harrys heart skipped several beats .Id better go !he said hastily and he pulled his head backward out of Grimmauld Places fire .For a moment his head seemed to be revolving on his shoulders and then he found himself kneeling in front of Umbridges fire with his head firmly back on watching the emerald flames flicker and die .Quickly quickly !he heard a wheezy voice mutter right outside the office door .Ah shes left it open .Harry dived for the Invisibility Cloak and had just managed to pull it back over himself when Filch burst into the office .He looked absolutely delighted about something and was talking to himself feverishly as he crossed the room pulled open a drawer in Umbridges desk and began rifling through the papers inside it .Approval for Whipping .Approval for Whipping .I can do it at last .Theyve had it coming to them for years .He pulled out a piece of parchment kissed it then shuffled rapidly back out of the door clutching it to his chest .Harry leapt to his feet and making sure that he had his bag and the Invisibility Cloak was completely covering him he wrenched open the door and hurried out of the office after Filch who was hobbling along faster than Harry had ever seen him go .One landing down from Umbridges office and Harry thought it was safe to become visible again he pulled off the cloak shoved it in his bag and hurried onward .There was a great deal of shouting and movement coming from the entrance hall .He ran down the marble staircase and found what looked like most of the school assembled there .It was just like the night when Trelawney had been sacked .Students were standing all around the walls in a great ring some of them Harry noticed covered in a substance that looked very like Stinksap teachers and ghosts were also in the crowd .Prominent among the onlookers were members of the Inquisitorial Squad who were all looking exceptionally pleased with themselves and Peeves who was bobbing overhead gazed down upon Fred and George who stood in the middle of the floor with the unmistakable look of two people who had just been cornered .So !said Umbridge triumphantly whom Harry realized was standing just a few stairs in front of him once more looking down upon her prey .So .you think it amusing to turn a school corridor into a swamp do you ?Pretty amusing yeah said Fred looking back up at her without the slightest sign of fear .Filch elbowed his way closer to Umbridge almost crying with happiness .Ive got the form Headmistress he said hoarsely waving the piece of parchment Harry had just seen him take from her desk .Ive got the form and Ive got the whips waiting .Oh let me do it now .Very good Argus she said .You two she went on gazing down at Fred and George are about to learn what happens to wrongdoers in my school .You know what ?said Fred .I dont think we are .He turned to his twin .George said Fred I think weve outgrown fulltime education .Yeah Ive been feeling that way myself said George lightly .Time to test our talents in the real world dyou reckon ?asked Fred .Definitely said George .And before Umbridge could say a word they raised their wands and said together Accio BroomsV Harry heard a loud crash somewhere in the distance .Looking to his left he ducked just in time Fred and Georges broomsticks one still trailing the heavy chain and iron peg with which Umbridge had fastened them to the wall were hurtling along the corridor toward their owners .They turned left streaked down the stairs and stopped sharply in front of the twins the chain clattering loudly on the flagged stone floor .We wont be seeing you Fred told Professor Umbridge swinging his leg over his broomstick .Yeah dont bother to keep in touch said George mounting his own .Fred looked around at the assembled students and at the silent watchful crowd .If anyone fancies buying a Portable Swamp as demonstrated upstairs come to number ninetythree Diagon Alley Weasleys Wizarding Wheezes he said in a loud voice .Our new premises !Special discounts to Hogwarts students who swear theyre going to use our products to get rid of this old bat added George pointing at Professor Umbridge .STOP THEM !shrieked Umbridge but it was too late .As the Inquisitorial Squad closed in Fred and George kicked off from the floor shooting fifteen feet into the air the iron peg swinging dangerously below .Fred looked across the hall at the poltergeist bobbing on his level above the crowd .Give her hell from us Peeves .And Peeves whom Harry had never seen take an order from a student before swept his belled hat from his head and sprang to a salute as Fred and George wheeled about to tumultuous applause from the students below and sped out of the open front doors into the glorious sunset .GRAWP The story of Fred and Georges flight to freedom was retold so often over the next few days that Harry could tell it would soon become the stuff of Hogwarts legend .Within a week even those who had been eyewitnesses were half convinced that they had seen the twins divebomb Umbridge on their brooms pelting her with Dungbombs before zooming out of the doors .In the immediate aftermath of their departure there was a great wave of talk about copying them so that Harry frequently heard students saying things like Honestly some days I just feel like jumping on my broom and leaving this place or else One more lesson like that and I might just do a Weasley .Fred and George had made sure that nobody was likely to forget them very soon .For one thing they had not left instructions on how to remove the swamp that now filled the corridor on the fifth floor of the east wing .Umbridge and Filch had been observed trying different means of removing it but without success .Eventually the area was roped off and Filch gnashing his teeth furiously was given the task of punting students across it to their classrooms .Harry was certain that teachers like McGonagall or Flitwick could have removed the swamp in an instant but just as in the case of Fred and Georges Wildfire Whiz Bangs they seemed to prefer to watch Umbridge struggle .Then there were the two large broomshaped holes in Umbridge s office door through which Fred and Georges Cleansweeps had smashed to rejoin their masters .Filch fitted a new door and removed Harrys Firebolt to the dungeons where it was rumored Umbridge had set an armed security troll to guard it .However her troubles were far from over .Inspired by Fred and Georges example a great number of students were now vying for the newly vacant positions of TroublemakersinChief .In spite of the new door somebody managed to slip a hairy snouted niffler into Umbridge s office which promptly tore the place apart in its search for shiny objects leapt on Umbridge on her reentrance and tried to gnaw the rings off her stubby fingers .Dungbombs and Stinkpellets were dropped so frequently in the corridors that it became the new fashion for students to perform BubbleHead Charms on themselves before leaving lessons which ensured them a supply of fresh clean air even though it gave them all the peculiar appearance of wearing upsidedown goldfish bowls on their heads .Filch prowled the corridors with a horsewhip ready in his hands desperate to catch miscreants but the problem was that there were now so many of them that he did not know which way to turn .The Inquisitorial Squad were attempting to help him but odd things kept happening to its members .Warrington of the Slytherin Quidditch team reported to the hospital wing with a horrible skin complaint that made him look as though he had been coated in cornflakes .Pansy Parkinson to Hermiones delight missed all her lessons the following day as she had sprouted antlers .Meanwhile it became clear just how many Skiving Snackboxes Fred and George had managed to sell before leaving Hogwarts .Umbridge only had to enter her classroom for the students assembled there to faint vomit develop dangerous fevers or else spout blood from both nostrils .Shrieking with rage and frustration she attempted to trace the mysterious symptoms to their source but the students told her stubbornly they were suffering Umbridgeitis .After putting four successive classes in detention and failing to discover their secret she was forced to give up and allow the bleeding swooning sweating and vomiting students to leave her classes in droves .But not even the users of the Snackboxes could compete with that master of chaos Peeves who seemed to have taken Freds parting words deeply to heart .Cackling madly he soared through the school upending tables bursting out of blackboards and toppling statues and vases .Twice he shut Mrs Norris inside suits of armor from which she was rescued yowling loudly by the furious caretaker .He smashed lanterns and snuffed out candles juggled burning torches over the heads of screaming students caused neatly stacked piles of parchment to topple into fires or out of windows flooded the second floor when he pulled off all the taps in the bathrooms dropped a bag of tarantulas in the middle of the Great Hall during breakfast and whenever he fancied a break spent hours at a time floating along after Umbridge and blowing loud raspberries every time she spoke .None of the staff but Filch seemed to be stirring themselves to help her .Indeed a week after Fred and Georges departure Harry witnessed Professor McGonagall walking right past Peeves who was determinedly loosening a crystal chandelier and could have sworn he heard her tell the poltergeist out of the corner of her mouth It unscrews the other way .To cap matters Montague had still not recovered from his sojourn in the toilet .He remained confused and disorientated and his parents were to be observed one Tuesday morning striding up the front drive looking extremely angry .Should we say something ?said Hermione in a worried voice pressing her cheek against the Charms window so that she could see Mr and Mrs Montague marching inside .About what happened to him ?In case it helps Madam Pomfrey cure him ?Course not hell recover said Ron indifferently .Anyway more trouble for Umbridge isnt it ?said Harry in a satisfied voice .He and Ron both tapped the teacups they were supposed to be charming with their wands .Harrys spouted four very short legs that would not reach the desk and wriggled pointlessly in midair .Rons grew four very thin spindly legs that hoisted the cup off the desk with great difficulty trembled for a few seconds then folded causing the cup to crack into two .Reparo said Hermione quickly mending Rons cup with a wave of her wand .Thats all very well but what if Montagues permanently injured ?Who cares ?said Ron irritably while his teacup stood drunkenly again trembling violently at the knees .Montague shouldnt have tried to take all those points from Gryffindor should he ?If you want to worry about anyone Hermione worry about me !You ?she said catching her teacup as it scampered happily away across the desk on four sturdy little willowpatterned legs and replacing it in front of her .Why should I be worried about you ?When Mums next letter finally gets through Umbridges screening process said Ron bitterly now holding his cup up while its frail legs tried feebly to support its weight Im going to be in deep trouble .I wouldnt be surprised if shes sent a Howler again .But Itll be my fault Fred and George left you wait said Ron darkly .Shell say I shouldve stopped them leaving I shouldve grabbed the ends of their brooms and hung on or something .Yeah itll be all my fault .Well if she does say that itll be very unfair you couldnt have done anything !But Im sure she wont I mean if its really true theyve got premises in Diagon Alley now they must have been planning this for ages .Yeah but thats another thing how did they get premises ?said Ron hitting his teacup so hard with his wand that its legs collapsed again and it lay twitching before him .Its a bit dodgy isnt it ?Theyll need loads of Galleons to afford the rent on a place in Diagon Alley shell want to know what theyve been up to to get their hands on that sort of gold .Well yes that occurred to me too said Hermione allowing her teacup to jog in neat little circles around Harrys whose stubby little legs were still unable to touch the desktop .Ive been wondering whether Mundungus has persuaded them to sell stolen goods or something awful .He hasnt said Harry curtly .How do you know ?said Ron and Hermione together .Because Harry hesitated but the moment to confess finally seemed to have come .There was no good to be gained in keeping silent if it meant anyone suspected that Fred and George were criminals .Because they got the gold from me .I gave them my Triwizard winnings last June .There was a shocked silence then Hermiones teacup jogged right over the edge of the desk and smashed on the floor .Oh Harry you didnt she said .Yes I did said Harry mutinously .And I dont regret it either I didnt need the gold and theyll be great at a joke shop .But this is excellent !said Ron looking thrilled .Its all your fault Harry Mum cant blame me at all !Can I tell her ?Yeah I suppose youd better said Harry dully .Specially if she thinks theyre receiving stolen cauldrons or something .Hermione said nothing at all for the rest of the lesson but Harry had a shrewd suspicion that her self restraint was bound to crack before long .Sure enough once they had left the castle for break and were standing around in the weak May sunshine she fixed Harry with a beady eye and opened her mouth with a determined air .Harry interrupted her before she had even started .Its no good nagging me its done he said firmly .Fred and George have got the gold spent a good bit of it too by the sounds of it and I cant get it back from them and I dont want to .So save your breath Hermione .I wasnt going to say anything about Fred and George !she said in an injured voice .Ron snorted disbelievingly and Hermione threw him a very dirty look .No I wasnt !she said angrily .As a matter of fact I was going to ask Harry when hes going to go back to Snape and ask for Occlumency lessons again !Harrys heart sank .Once they had exhausted the subject of Fred and Georges dramatic departure which admittedly had taken many hours Ron and Hermione had wanted to hear news of Sirius .As Harry had not confided in them the reason he had wanted to talk to Sirius in the first place it had been hard to think of things to tell them .He had ended up saying to them truthfully that Sirius wanted Harry to resume Occlumency lessons .He had been regretting this ever since Hermione would not let the subject drop and kept reverting to it when Harry least expected it .You cant tell me youve stopped having funny dreams Hermione said now because Ron told me last night you were muttering in your sleep again .Harry threw Ron a furious look .Ron had the grace to look ashamed of himself .You were only muttering a bit he mumbled apologetically .Something about ‘just a bit farther .I dreamed I was watching you lot play Quidditch Harry lied brutally .I was trying to get you to stretch out a bit farther to grab the Quaffle .Rons ears went red .Harry felt a kind of vindictive pleasure He had not of course dreamed anything of the sort .Last night he had once again made the journey along the Department of Mysteries corridor .He had passed through the circular room then the room full of clicking and dancing light until he found himself again inside that cavernous room full of shelves on which were ranged dusty glass spheres .He had hurried straight toward row number ninety seven turned left and ran along it .It had probably been then that he had spoken aloud .Just a bit farther .for he could feel his conscious self struggling to wake .and before he had reached the end of the row he had found himself lying in bed again gazing up at the canopy of his fourposter .You are trying to block your mind arent you ?said Hermione looking beadily at Harry .You are keeping going with your Occlumency ?Of course I am said Harry trying to sound as though this question was insulting but not quite meeting her eye .The truth was that he was so intensely curious about what was hidden in that room full of dusty orbs that he was quite keen for the dreams to continue .The problem was that with just under a month to go until the exams and every free moment devoted to studying his mind seemed saturated with information when he went to bed so that he found it very difficult to get to sleep at all .When he did his overwrought brain presented him most nights with stupid dreams about the exams .He also suspected that part of his mind the part that often spoke in Hermiones voice now felt guilty on the occasions it strayed down that corridor ending in the black door and sought to wake him before he could reach journeys end .You know said Ron whose ears were still flaming red if Montague doesnt recover before Slytherin play Hufflepuff we might be in with a chance of winning the Cup .Yeah I spose so said Harry glad of a change of subject .I mean weve won one lost one if Slytherin lose to Hufflepuff next Saturday Yeah thats right said Harry losing track of what he was agreeing to Cho Chang had just walked across the courtyard determinedly not looking at him .The final match of the Quidditch season Gryffindor versus Ravenclaw was to take place on the last weekend of May .Although Slytherin had been narrowly defeated by Hufflepuff in their last match Gryffindor was not daring to hope for victory due mainly though of course nobody said it to him to Rons abysmal goalkeeping record .He however seemed to have found a new optimism .I mean I cant get any worse can I ?he told Harry and Hermione grimly over breakfast on the morning of the match .Nothing to lose now is there ?You know said Hermione as she and Harry walked down to the pitch a little later in the midst of a very excitable crowd I think Ron might do better without Fred and George around .They never exactly gave him a lot of confidence .Luna Lovegood overtook them with what appeared to be a live eagle perched on top of her head .Oh gosh I forgot !said Hermione watching the eagle flapping its wings as Luna walked serenely past a group of cackling and pointing Slytherins .Cho will be playing wont she ?Harry who had not forgotten this merely grunted .They found seats in the topmost row of the stands .It was a fine clear day .Ron could not wish for better and Harry found himself hoping against hope that Ron would not give the Slytherins cause for more rousing choruses of Weasley Is Our King .Lee Jordan who had been very dispirited since Fred and George had left was commentating as usual .As the teams zoomed out onto the pitches he named the players with something less than his usual gusto . .Bradley .Davies .Chang he said and Harry felt his stomach perform less of a back flip more a feeble lurch as Cho walked out onto the pitch her shiny black hair rippling in the slight breeze .He was not sure what he wanted to happen anymore except that he could not stand any more rows .Even the sight of her chatting animatedly to Roger Davies as they prepared to mount their brooms caused him only a slight twinge of jealousy .And theyre off !said Lee .And Davies takes the Quaffle immediately Ravenclaw Captain Davies with the Quaffle he dodges Johnson he dodges Bell he dodges Spinnet as well .Hes going straight for goal !Hes going to shoot and and Lee swore very loudly .And hes scored .Harry and Hermione groaned with the rest of the Gryffindors .Predictably horribly the Slytherins on the other side of the stands began to sing Weasley cannot save a thing He cannot block a single ring .Harry said a hoarse voice in Harrys ear .Hermione Harry looked around and saw Hagrids enormous bearded face sticking between the seats apparently he had squeezed his way all along the row behind for the first and second years he had just passed had a ruffled flattened look about them .For some reason Hagrid was bent double as though anxious not to be seen though he was still at least four feet taller than everybody else .Listen he whispered can yeh come with me ?Now ?While evryones watchin the match ?Er .cant it wait Hagrid ?asked Harry .Till the match is over ?No said Hagrid .No Harry its gotta be now .while evryones lookin the other way .Please ?Hagrids nose was gently dripping blood .His eyes were both blackened .Harry had not seen him this close up since his return to the school he looked utterly woebegone .Course said Harry at once course well come .He and Hermione edged back along their row of seats causing much grumbling among the students who had to stand up for them .The people in Hagrids row were not complaining merely attempting to make themselves as small as possible .I ppreciate this you two I really do said Hagrid as they reached the stairs .He kept looking around nervously as they descended toward the lawn below .I jus hope she doesn notice us goin .You mean Umbridge ?said Harry .She wont shes got her whole Inquisitorial Squad sitting with her didnt you see ?She must be expecting trouble at the match .Yeah well a bit o trouble wouldn hurt said Hagrid pausing to peer around the edge of the stands to make sure the stretch of lawn between there and his cabin was deserted .Give us more time .What is it Hagrid ?said Hermione looking up at him with a concerned expression on her face as they hurried across the lawn toward the edge of the forest .Yeh yehll see in a mo said Hagrid looking over his shoulder as a great roar rose from the stands behind them .Hey did someone jus score ?Itll be Ravenclaw said Harry heavily .Good .good .said Hagrid distractedly .Thas good .They had to jog to keep up with him as he strode across the lawn looking around with every other step .When they reached his cabin Hermione turned automatically left toward the front door Hagrid however walked straight past it into the shade of the trees on the outermost edge of the forest where he picked up a crossbow that was leaning against a tree .When he realized they were no longer with him he turned .Were goin in here he said jerking his shaggy head behind him .Into the forest ?said Hermione perplexed .Yeah said Hagrid .Cmon now quick before were spotted !Harry and Hermione looked at each other then ducked into the cover of the trees behind Hagrid who was already striding away from them into the green gloom his crossbow over his arm .Harry and Hermione ran to catch up with him .Hagrid why are you armed ?said Harry .Jus a precaution said Hagrid shrugging his massive shoulders .You didnt bring your crossbow the day you showed us the thestrals said Hermione timidly .Nah well we weren goin in so far then said Hagrid .An anyway tha was before Firenze left the forest wasn it ?Why does Firenze leaving make a difference ?asked Hermione curiously .Cause the other centaurs are good an riled at me thas why said Hagrid quietly glancing around .They used ter be well yeh couldn call em friendly but we got on all righ .Kept emselves to emselves bu always turned up if I wanted a word .Not anymore He sighed deeply .Firenze said that theyre angry because he went to work for Dumbledore ?Harry asked tripping on a protruding root because he was busy watching Hagrid s profile .Yeah said Hagrid heavily .Well angry doesn cover it .Ruddy livid .If I hadn stepped in I reckon theyd ve kicked Firenze ter death They attacked him ?said Hermione sounding shocked .Yep said Hagrid gruffly forcing his way through several lowhanging branches .He had half the herd onto him And you stopped it ?said Harry amazed and impressed .By yourself ?Course I did couldnt stand by an watch em kill him could I ?said Hagrid .Lucky I was passin really .an Idve thought Firenze mighta remembered tha before he started sendin me stupid warnins !he added hotly and unexpectedly .Harry and Hermione looked at each other startled but Hagrid scowling did not elaborate .Anyway he said breathing a little more heavily than usual since then the other centaurs Ve bin livid with me an the trouble is theyve got a lot of influence in the forest .Cleverest creatures in here Is that why were here Hagrid ?asked Hermione .The centaurs ?Ah no said Hagrid shaking his head dismissively no its not them .Well o course they could complicate the problem yeah .But yehll see what I mean in a bit .On this incomprehensible note he fell silent and forged a little ahead taking one stride for every three of theirs so that they had great trouble keeping up with him .The path was becoming increasingly overgrown and the trees grew so closely together as they walked farther and farther into the forest that it was as dark as dusk .They were soon a long way past the clearing where Hagrid had shown them the thestrals but Harry felt no sense of unease until Hagrid stepped unexpectedly off the path and began wending his way in and out of trees toward the dark heart of the forest .Hagrid ?said Harry fighting his way through thickly knotted brambles over which Hagrid had stepped easily and remembering very vividly what had happened to him on the other occasions he had stepped off the forest path .Where are we going ?Bit further said Hagrid over his shoulder .Cmon Harry .We need ter keep together now .It was a great struggle to keep up with Hagrid what with branches and thickets of thorn through which Hagrid marched as easily as though they were cobwebs but which snagged Harry and Hermiones robes frequently entangling them so severely that they had to stop for minutes at a time to free themselves .Harrys arms and legs were soon covered in small cuts and scratches .They were so deep in the forest now that sometimes all Harry could see of Hagrid in the gloom was a massive dark shape ahead of him .Any sound seemed threatening in the muffled silence .The breaking of a twig echoed loudly and the tiniest rustle of movement though it might have been made by an innocent sparrow caused Harry to peer through the gloom for a culprit .It occurred to him that he had never managed to get this far into the forest without meeting some kind of creature their absence struck him as rather ominous .Hagrid would it be all right if we lit our wands ?said Hermione quietly .Er .all righ Hagrid whispered back .In fact .He stopped suddenly and turned around Hermione walked right into him and was knocked over backward .Harry caught her just before she hit the forest floor .Maybe we bes jus stop fer a momen so I can .fill yeh in said Hagrid .Before we ge there like .Good !said Hermione as Harry set her back on her feet .They both murmured Lumos and their wand tips ignited .Hagrid s face swam through the gloom by the light of the two wavering beams and Harry saw that he looked nervous and sad again .Righ said Hagrid .Well .see .the thing is .He took a great breath .Well theres a good chance Im goin ter be gettin the sack any day now he said .Harry and Hermione looked at each other then back at him .But youve lasted this long Hermione said tentatively .What makes you think Umbridge reckons it was me that put tha niffler in her office .And was it ?said Harry before he could stop himself .No it ruddy well wasn !said Hagrid indignantly .Ony anythin ter do with magical creatures an she thinks its got somethin ter do with me .Yeh know shes bin lookin fer a chance ter get rid of me ever since I got back .I don wan ter go o course but if it wasn fer .well .the special circumstances Im abou ter explain to yeh Id leave righ now before shes go the chance ter do it in front o the whole school like she did with Trelawney .Harry and Hermione both made noises of protest but Hagrid overrode them with a wave of one of his enormous hands .Its not the end o the world Ill be able ter help Dumbledore once Im outta here I can be useful ter the Order .An you lotll have GrubblyPlank yehll yehll get through yer exams fine .His voice trembled and broke .Don worry abou me he said hastily as Hermione made to pat his arm .He pulled his enormous spotted handkerchief from the pocket of his waistcoat and mopped his eyes with it .Look I wouldn be tellin yer this at all if I didn have ter .See if I go .well I can leave withou .withou fellin someone .because Ill Ill need you two ter help me .An Ron if hes willin .Of course well help you said Harry at once .What do you want us to do ?Hagrid gave a great sniff and patted Harry wordlessly on the shoulder with such force that Harry was knocked sideways into a tree .I knew yehd say yes said Hagrid into his handkerchief but I won .never .forget .Well .cmon .jus a little bit further through here .Watch yerselves now theres nettles .They walked on in silence for another fifteen minutes .Harry had opened his mouth to ask how much farther they had to go when Hagrid threw out his right arm to signal that they should stop .Really easy he said softly .Very quiet now .They crept forward and Harry saw that they were facing a large smooth mound of earth nearly as tall as Hagrid that he thought with a jolt of dread was sure to be the lair of some enormous animal .Trees had been ripped up at the roots all around the mound so that it stood on a bare patch of ground surrounded by heaps of trunks and boughs that formed a kind of fence or barricade behind which Harry Hermione and Hagrid now stood .Sleepin breathed Hagrid .Sure enough Harry could hear a distant rhythmic rumbling that sounded like a pair of enormous lungs at work .He glanced sideways at Hermione who was gazing at the mound with her mouth slightly open .She looked utterly terrified .Hagrid she said in a whisper barely audible over the sound of the sleeping creature who is he ?Harry found this an odd question .What is it ?was the one he had been planning on asking .Hagrid you told us said Hermione her wand now shaking in her hand you told us none of them wanted to come !Harry looked from her to Hagrid and then as realization hit him he looked back at the mound with a small gasp of horror .The great mound of earth on which he Hermione and Hagrid could easily have stood was moving slowly up and down in time with the deep grunting breathing .It was not a mound at all .It was the curved back of what was clearly .Well no he didn want ter come said Hagrid sounding desperate .But I had ter bring him Hermione I had ter !But why ?asked Hermione who sounded as though she wanted to cry .Why what oh Hagrid I knew if I jus got him back said Hagrid sounding close to tears himself an an taught him a few manners Id be able ter take him outside an show evryone hes harmless !Harmless !said Hermione shrilly and Hagrid made frantic hushing noises with his hands as the enormous creature before them grunted loudly and shifted in its sleep .Hes been hurting you all this time hasnt he ?Thats why youve had all these injuries !He don know his own strength !said Hagrid earnestly .An hes gettin better hes not fightin so much anymore So this is why it took you two months to get home !said Hermione distractedly .Oh Hagrid why did you bring him back if he didnt want to come wouldnt he have been happier with his own people ?They were all bullyin him Hermione cause hes so small !said Hagrid .Small ?said Hermione .Small ?Hermione I couldn leave him said Hagrid tears now trickling down his bruised face into his beard .See hes my brother !Hermione simply stared at him her mouth open .Hagrid when you say ‘brother said Harry slowly do you mean ?Well halfbrother amended Hagrid .Turns out me mother took up with another giant when she left me dad an she went an had Grawp here Grawp ?said Harry .Yeah .well thas what it sounds like when he says his name said Hagrid anxiously .He don speak a lot of English .Ive bin tryin ter teach him .Anyway she don seem ter have liked him much moren she liked me .See with giantesses what counts is producin good big kids and hes always been a bit on the runty side fer a giant ony sixteen foot Oh yes tiny !said Hermione with a kind of hysterical sarcasm .Absolutely minuscule !He was bein kicked around by all o them I jus couldn leave him Did Madame Maxime want to bring him back ?asked Harry .She well she could see it was right importan ter me said Hagrid twisting his enormous hands .Bu bu she got a bit tired of him after a while I must admit .so we split up on the journey home .She promised not ter tell anyone though .How on earth did you get him back without anyone noticing ?said Harry .Well thas why it took so long see said Hagrid .Could ony travel by nigh an through wild country an stuff .Course he covers the ground pretty well when he wants ter but he kep wantin ter go back .Oh Hagrid why on earth didnt you let him !said Hermione flopping down onto a rippedup tree and burying her face in her hands .What do you think youre going to do with a violent giant who doesnt even want to be here !Well now Violent thas a bit harsh said Hagrid still twisting his hands agitatedly .Ill admit he mighta taken a couple o swings at me when hes bin in a bad mood but hes gettin better loads better settlin down well .What are those ropes for then ?Harry asked .He had just noticed ropes thick as saplings stretching from around the trunks of the largest nearby trees toward the place where Grawp lay curled on the ground with his back to them .You have to keep him tied up ?said Hermione faintly .Well .yeah .said Hagrid looking anxious .See its like I say he doesn really know his strength Harry understood now why there had been such a suspicious lack of any other living creature in this part of the forest .So what is it you want Harry and Ron and me to do ?Hermione asked apprehensively .Look after him said Hagrid croakily .After Im gone .Harry and Hermione exchanged miserable looks Harry uncomfortably aware that he had already promised Hagrid that he would do whatever he asked .What what does that involve exactly ?Hermione inquired .Not food or anythin !said Hagrid eagerly .He can get his own food no problem .Birds an deer an stuff .No its company he needs .If I jus knew someone was carryin on tryin ter help him a bit .teachin him yeh know .Harry said nothing but turned to look back at the gigantic form lying asleep on the ground in front of them .Grawp had his back to them .Unlike Hagrid who simply looked like a very oversize human Grawp looked strangely misshapen .What Harry had taken to be a vast mossy boulder to the left of the great earthen mound he now recognized as Grawp s head .It was much larger in proportion to the body than a human head almost perfectly round and covered with tightly curling closegrowing hair the color of bracken .The rim of a single large fleshy ear was visible on top of the head which seemed to sit rather like Uncle Vernons directly upon the shoulders with little or no neck in between .The back under what looked like a dirty brownish smock comprised of animal skins sewn roughly together was very broad and as Grawp slept it seemed to strain a little at the rough seams of the skins .The legs were curled up under the body Harry could see the soles of enormous filthy bare feet large as sledges resting one on top of the other on the earthy forest floor .You want us to teach him Harry said in a hollow voice .He now understood what Firenzes warning had meant .His attempt is not working .He would do better to abandon it .Of course the other creatures who lived in the forest would have heard Hagrids fruitless attempts to teach Grawp English .Yeah even if yeh jus talk ter him a bit said Hagrid hopefully .Cause I reckon if he can talk ter people hell understand more that we all like him really an want him to stay .Harry looked at Hermione who peered back at him from between the fingers over her face .Kind of makes you wish we had Norbert back doesnt it ?he said and she gave a very shaky laugh .Yehll do it then ?said Hagrid who did not seem to have caught what Harry had just said .Well .said Harry already bound by his promise .Well try Hagrid .I knew I could count on yeh Harry Hagrid said beaming in a very watery way and dabbing at his face with his handkerchief again .An I don wan yeh ter put yerself out too much like .I know yehve got exams .If yeh could jus nip down here in yer Invisibility Cloak maybe once a week an have a little chat with him .Ill wake him up then introduce you Wha no !said Hermione jumping up Hagrid no dont wake him really we dont need But Hagrid had already stepped over the great trunk in front of them and was proceeding toward Grawp .When he was around ten feet away he lifted a long broken bough from the ground smiled reassuringly over his shoulder at Harry and Hermione and then poked Grawp hard in the middle of the back with the end of the bough .The giant gave a roar that echoed around the silent forest .Birds in the treetops overhead rose twittering from their perches and soared away .In front of Harry and Hermione meanwhile the gigantic Grawp was rising from the ground which shuddered as he placed an enormous hand upon it to push himself onto his knees and turned his head to see who and what had disturbed him .All righ Grawpy ?said Hagrid in a wouldbe cheery voice backing away with the long bough raised ready to poke Grawp again .Had a nice sleep eh ?Harry and Hermione retreated as far as they could while still keeping the giant within their sights .Grawp knelt between two trees he had not yet uprooted .They looked up into his startlingly huge face which resembled a gray full moon swimming in the gloom of the clearing .It was as though the features had been hewn onto a great stone ball .The nose was stubby and shapeless the mouth lopsided and full of misshapen yellow teeth the size of halfbricks .The small eyes were a muddy greenishbrown and just now were half gummed together with sleep .Grawp raised dirty knuckles as big as cricket balls to his eyes rubbed vigorously then without warning pushed himself to his feet with surprising speed and agility .Oh my .Harry heard Hermione squeal terrified beside him .The trees to which the other ends of the ropes around Grawps wrists and ankles were attached creaked ominously .He was as Hagrid had said at least sixteen feet tall .Gazing blearily around he reached out a hand the size of a beach umbrella seized a birds nest from the upper branches of a towering pine and turned it upside down with a roar of apparent displeasure that there was no bird in it eggs fell like grenades toward the ground and Hagrid threw his arms over his head to protect himself .Anyway Grawpy shouted Hagrid looking up apprehensively in case of further falling eggs Ive brought some friends ter meet yeh .Remember I told yeh I might ?Remember when I said I might have ter go on a little trip an leave them ter look after yeh fer a bit ?Remember that Grawpy ?But Grawp merely gave another low roar it was hard to say whether he was listening to Hagrid or whether he even recognized the sounds Hagrid was making as speech .He had now seized the top of the pine tree and was pulling it toward him evidently for the simple pleasure of seeing how far it would spring back when he let go .Now Grawpy don do that !shouted Hagrid .Thas how you ended up pullin up the others And sure enough Harry could see the earth around the trees roots beginning to crack .I got company fer yeh !Hagrid shouted .Company see !Look down yeh big buffoon I brought yeh some friends !Oh Hagrid dont moaned Hermione but Hagrid had already raised the bough again and gave Grawps knee a sharp poke .The giant let go of the top of the pine tree which swayed menacingly and deluged Hagrid with a rain of needles and looked down .This said Hagrid hastening over to where Harry and Hermione stood is Harry Grawp !Harry Potter !He migh be cornin ter visit yeh if I have ter go away understand ?The giant had only just realized that Harry and Hermione were there .They watched in great trepidation as he lowered his huge boulder of a head so that he could peer blearily at them .An this is Hermione see ?Her Hagrid hesitated .Turning to Hermione he said Would yeh mind if he called yeh Hermy Hermione ?Ony its a difficult name fer him ter remember .No not at all squeaked Hermione .This is Hermy Grawp !An shes gonna be cornin an all !Isn tha nice ?Eh ?Two friends fer yeh ter GRAWPY NO !Grawps hand had shot out of nowhere toward Hermione Harry seized her and pulled her backward behind the tree so that Grawps fist scraped the trunk but closed on thin air .BAD BOY GRAWPY !Harry heard Hagrid yelling as Hermione clung to Harry behind the tree shaking and whimpering .VERY BAD BOY !YEH DON GRAB OUCH !Harry poked his head out from around the trunk and saw Hagrid lying on his back his hand over his nose .Grawp apparently losing interest had straightened up again and was again engaged in pulling back the pine as far as it would go .Righ said Hagrid thickly getting up with one hand pinching his bleeding nose and the other grasping his crossbow .Well .there yeh are .Yehve met him an an now hell know yeh when yeh come back .Yeah .well .He looked up at Grawp who was now pulling back the pine with an expression of detached pleasure on his boulderish face the roots were creaking as he ripped them away from the ground .Well I reckon thas enough fer one day said Hagrid .Well er well go back now shall we ?Harry and Hermione nodded .Hagrid shouldered his crossbow again and still pinching his nose led the way back into the trees .Nobody spoke for a while not even when they heard the distant crash that meant Grawp had pulled over the pine tree at last .Hermiones face was pale and set .Harry could not think of a single thing to say .What on earth was going to happen when somebody found out that Hagrid had hidden Grawp in the forest ?And he had promised that he Ron and Hermione would continue Hagrids totally pointless attempts to civilize the giant .How could Hagrid even with his immense capacity to delude himself that fanged monsters were lovably harmless fool himself that Grawp would ever be fit to mix with humans ?Hold it said Hagrid abruptly just as Harry and Hermione were struggling through a patch of thick knotgrass behind him .He pulled an arrow out of the quiver over his shoulder and fitted it into the crossbow .Harry and Hermione raised their wands now that they had stopped walking they too could hear movement close by .Oh blimey said Hagrid quietly .I thought that we told you Hagrid said a deep male voice that you are no longer welcome here ?A mans naked torso seemed for an instant to be floating toward them through the dappled green half light .Then they saw that his waist joined smoothly with a horses chestnut body .This centaur had a proud highcheekboned face and long black hair .Like Hagrid he was armed A quiverful of arrows and a long bow were slung over his shoulders .How are yeh Magorian ?said Hagrid warily .The trees behind the centaur rustled and four or five more emerged behind him .Harry recognized the blackbodied and bearded Bane whom he had met nearly four years ago on the same night he had met Firenze .Bane gave no sign that he had ever seen Harry before .So he said with a nasty inflection in his voice before turning immediately to Magorian .We agreed I think what we would do if this human showed his face in the forest again ?This human now am I ?said Hagrid testily .Jus fer stoppin all of yeh committin murder ?You ought not to have meddled Hagrid said Magorian .Our ways are not yours nor are our laws .Firenze has betrayed and dishonored us .I dunno how yeh work that out said Hagrid impatiently .Hes done nothin except help Albus Dumbledore Firenze has entered into servitude to humans said a gray centaur with a hard deeply lined face .Servitude !said Hagrid scathingly .Hes doin Dumbledore a favor is all He is peddling our knowledge and secrets among humans said Magorian quietly .There can be no return from such disgrace .If yeh say so said Hagrid shrugging but personally I think yeh re makin a big mistake As are you human said Bane coming back into our forest when we warned you Now you listen ter me said Hagrid angrily .Ill have less of the ‘our forest if its all the same ter you .Its not up ter you who comes an goes in here No more is it up to you Hagrid said Magorian smoothly .I shall let you pass today because you are accompanied by your young Theyre not his !interrupted Bane contemptuously .Students Magorian from up at the school !They have probably already profited from the traitor F irenze s teachings .Nevertheless said Magorian calmly the slaughter of foals is a terrible crime .We do not touch the innocent .Today Hagrid you pass .Henceforth stay away from this place .You forfeited the friendship of the centaurs when you helped the traitor Firenze escape us .I won be kept outta the fores by a bunch of mules like you !said Hagrid loudly .Hagrid said Hermione in a highpitched and terrified voice as both Bane and the gray centaur pawed at the ground lets go please lets go !Hagrid moved forward but his crossbow was still raised and his eyes were still fixed threateningly upon Magorian .We know what you are keeping in the forest Hagrid !Magorian called after them as the centaurs slipped out of sight .And our tolerance is waning !Hagrid turned and gave every appearance of wanting to walk straight back to Magorian again .Youll tolerate him as long as hes here its as much his forest as yours !he yelled while Harry and Hermione both pushed with all their might against Hagrid s moleskin waistcoat in an effort to keep him moving forward .Still scowling he looked down his expression changed to mild surprise at the sight of them both pushing him .He seemed not to have felt it .Calm down you two he said turning to walk on while they panted along behind him .Ruddy old nags though eh ?Hagrid said Hermione breathlessly skirting the patch of nettles they had passed on their way there if the centaurs dont want humans in the forest it doesnt really look as though Harry and I will be able Ah you heard what they said said Hagrid dismissively They wouldnt hurt foals I mean kids .Anyway we can let ourselves be pushed around by that lot .Nice try Harry murmured to Hermione who looked crestfallen .At last they rejoined the path and after another ten minutes the trees began to thin .They were able to see patches of clear blue sky again and hear in the distance the definite sounds of cheering and shouting .Was that another goal ?asked Hagrid pausing in the shelter of the trees as the Quidditch stadium came into view .Or dyou reckon the match is over ?I dont know said Hermione miserably .Harry saw that she looked much the worse for wear her hair was full of bits of twig and leaves her robes were ripped in several places and there were numerous scratches on her face and arms .He knew he could look little better .I reckon its over yeh know !said Hagrid still squinting toward the stadium .Look theres people cornin out already if you two hurry yeh ll be able ter blend in with the crowd an no onell know you werent there !Good idea said Harry .Well .see you later then Hagrid .I dont believe him said Hermione in a very unsteady voice the moment they were out of earshot of Hagrid .I dont believe him .I really dont believe him .Calm down said Harry .Calm down !she said feverishly .A giant !A giant in the forest !And were supposed to give him English lessons !Always assuming of course we can get past the herd of murderous centaurs on the way in and out !I dont believe him !We havent got to do anything yet !Harry tried to reassure her in a quiet voice as they joined a stream of jabbering Hufflepuffs heading back toward the castle .Hes not asking us to do anything unless he gets chucked out and that might not even happen Oh come off it Harry !said Hermione angrily stopping dead in her tracks so that the people behind her had to swerve to avoid her .Of course hes going to be chucked out and to be perfectly honest after what weve just seen who can blame Umbridge ?There was a pause in which Harry glared at her and her eyes filled slowly with tears .You didnt mean that said Harry quietly .No .well .all right .I didnt she said wiping her eyes angrily .But why does he have to make life so difficult for himself for us ?I dunno Weasley is our King Weasley is our King He didnt let the Quaffle in Weasley is our King .And I wish theyd stop singing that stupid song said Hermione miserably havent they gloated enough ?A great tide of students was moving up the sloping lawns from the pitch .Oh lets get in before we have to meet the Slytherins said Hermione .Weasley can save anything He never leaves a single ring Thats why Gryffindors all sing Weasley is our King .Hermione .said Harry slowly .The song was growing louder but it was issuing not from a crowd of greenandsilverclad Slytherins but from a mass of red and gold moving slowly toward the castle which was bearing a solitary figure upon its many shoulders .Weasley is our King Weasley is our King He didnt let the Quaffle in Weasley is our King .No !said Hermione in a hushed voice .YES !said Harry loudly .HARRY !HERMIONE !yelled Ron waving the silver Quidditch Cup in the air and looking quite beside himself .WE DID IT !WE WON !They beamed up at him as he passed there was a scrum at the door of the castle and Rons head got rather badly bumped on the lintel but nobody seemed to want to put him down .Still singing the crowd squeezed itself into the entrance hall and out of sight .Harry and Hermione watched them go beaming until the last echoing strains of Weasley Is Our King died away .Then they turned to each other their smiles fading .Well save our news till tomorrow shall we ?said Harry .Yes all right said Hermione wearily .Im not in any hurry .They climbed the steps together .At the front doors both instinctively looked back at the Forbidden Forest .Harry was not sure whether it was his imagination or not but he rather thought he saw a small cloud of birds erupting into the air over the treetops in the distance almost as though the tree in which they had been nesting had just been pulled up by the roots .O .W .L .S Rons euphoria at helping Gryffindor scrape the Quidditch Cup was such that he could not settle to anything next day .All he wanted to do was talk over the match and Harry and Hermione found it very difficult to find an opening in which to mention Grawp not that either of them tried very hard neither was keen to be the one to bring Ron back to reality in quite such a brutal fashion .As it was another fine warm day they persuaded him to join them in studying under the beech tree on the edge of the lake where they stood less chance of being overheard than in the common room .Ron was not particularly keen on this idea at first he was thoroughly enjoying being patted on the back by Gryffindors walking past his chair not to mention the occasional outbursts of Weasley Is Our King but agreed after a while that some fresh air might do him good .They spread their books out in the shade of the beech tree and sat down while Ron talked them through his first save of the match for what felt like the dozenth time .Well I mean Id already let in that one of Daviess so I wasnt feeling that confident but I dunno when Bradley came toward me just out of nowhere I thought you can do this And I had about a second to decide which way to fly you know because he looked like he was aiming for the right goal hoop my right obviously his left but I had a funny feeling that he was feinting and so I took the chance and flew left his right I mean and well you saw what happened he concluded modestly sweeping his hair back quite unnecessarily so that it looked interestingly windswept and glancing around to see whether the people nearest to them a bunch of gossiping thirdyear Hufflepuffs had heard him .And then when Chambers came at me about five minutes later what ?Ron said stopping mid sentence at the look on Harrys face .Why are you grinning ?Im not said Harry quickly looking down at his Transfiguration notes and attempting to straighten his face .The truth was that Ron had just reminded Harry forcibly of another Gryffindor Quidditch player who had once sat rumpling his hair under this very tree .Im just glad we won thats all .Yeah said Ron slowly savoring the words we won .Did you see the look on Changs face when Ginny got the Snitch right out from under her nose ?I suppose she cried did she ?said Harry bitterly .Well yeah more out of temper than anything though .Ron frowned slightly .But you saw her chuck her broom away when she got back to the ground didnt you ?Er said Harry .Well actually .no Ron said Hermione with a heavy sigh putting down her book and looking at him apologetically .As a matter of fact the only bit of the match Harry and I saw was Daviess first goal .Rons carefully ruffled hair seemed to wilt with disappointment .You didnt watch ?he said faintly looking from one to the other .You didnt see me make any of those saves ?Well no said Hermione stretching out a placatory hand toward him .But Ron we didnt want to leave we had to !Yeah ?said Ron whose face was growing rather red .How come ?It was Hagrid said Harry .He decided to tell us why hes been covered in injuries ever since he got back from the giants .He wanted us to go into the forest with him we had no choice you know how he gets .Anyway .The story was told in five minutes by the end of which Rons indignation had been replaced by a look of total incredulity .He brought one back and hid it in the forest ?Yep said Harry grimly .No said Ron as though by saying this he could make it untrue .No he cant have .Well he has said Hermione firmly .Grawps about sixteen feet tall enjoys ripping up twentyfoot pine trees and knows me she snorted as Hermy .Ron gave a nervous laugh .And Hagrid wants us to . ?Teach him English yeah said Harry .Hes lost his mind said Ron in an almost awed voice .Yes said Hermione irritably turning a page of Intermediate Transfiguration and glaring at a series of diagrams showing an owl turning into a pair of opera glasses .Yes Im starting to think he has .But unfortunately he made Harry and me promise .Well youre just going to have to break your promise thats all said Ron firmly .I mean come on .Weve got exams and were about that far he held up his hand to show thumb and forefinger a millimeter apart from being chucked out as it is .And anyway .remember Norbert ?Remember Aragog ?Have we ever come off better for mixing with any of Hagrid s monster mates ?I know its just that we promised said Hermione in a small voice .Ron smoothed his hair flat again looking preoccupied .Well he sighed Hagrid hasnt been sacked yet has he ?Hes hung on this long maybe hell hang on till the end of term and we wont have to go near Grawp at all .The castle grounds were gleaming in the sunlight as though freshly painted the cloudless sky smiled at itself in the smoothly sparkling lake the satingreen lawns rippled occasionally in a gentle breeze June had arrived but to the fifth years this meant only one thing Their O .W .L .s were upon them at last .Their teachers were no longer setting them homework lessons were devoted to reviewing those topics their teachers thought most likely to come up in the exams .The purposeful feverish atmosphere drove nearly everything but the O .W .L .s from Harrys mind though he did wonder occasionally during Potions lessons whether Lupin had ever told Snape that he must continue giving Harry Occlumency tuition If he had then Snape had ignored Lupin as thoroughly as he was now ignoring Harry .This suited Harry very well he was quite busy and tense enough without extra classes with Snape and to his relief Hermione was much too preoccupied these days to badger him about Occlumency .She was spending a lot of time muttering to herself and had not laid out any elf clothes for days .She was not the only person acting oddly as the O .W .L .s drew steadily nearer .Ernie Macmillan had developed an irritating habit of interrogating people about their study habits .How many hours dyou think youre doing a day ?he demanded of Harry and Ron as they queued outside Herbology a manic gleam in his eyes .I dunno said Ron .A few .More or less than eight ?Less I spose said Ron looking slightly alarmed .‘Tm doing eight said Ernie puffing out his chest .Eight or nine .Im getting an hour in before breakfast every day .Eights my average .I can do ten on a good weekend day .I did nine and a half on Monday .Not so good on Tuesday only seven and a quarter .Then on Wednesday ■ Harry was deeply thankful that Professor Sprout ushered them into greenhouse three at that point forcing Ernie to abandon his recital .Meanwhile Draco Malfoy had found a different way to induce panic .Of course its not what you know he was heard to tell Crabbe and Goyle loudly outside Potions a few days before the exams were to start its who you know .Now Fathers been friendly with the head of the Wizarding Examinations Authority for years old Griselda Marchbanks weve had her round for dinner and everything .Do you think thats true ?Hermione whispered to Harry and Ron looking frightened .Nothing we can do about it if it is said Ron gloomily .I dont think its true said Neville quietly from behind them .Because Griselda Marchbanks is a friend of my grans and shes never mentioned the Malfoys .Whats she like Neville ?asked Hermione at once .Is she strict ?Bit like Gran really said Neville in a subdued voice .Knowing her wont hurt your chances though will it ?Ron told him encouragingly .Oh I dont think it will make any difference said Neville still more miserably .Grans always telling Professor Marchbanks Im not as good as my dad .Well .you saw what shes like at St .Mungos .Neville looked fixedly at the floor .Harry Ron and Hermione glanced at one another but didnt know what to say .It was the first time that Neville had acknowledged that they had met at the Wizarding hospital .Meanwhile a flourishing blackmarket trade in aids to concentration mental agility and wakefulness had sprung up among the fifth and seventh years .Harry and Ron were much tempted by the bottle of Baruffios Brain Elixir offered to them by Ravenclaw sixth year Eddie Carmichael who swore it was solely responsible for the nine Outstanding O .W .L .s he had gained the previous summer and was offering the whole pint for a mere twelve Galleons .Ron assured Harry he would reimburse him for his half the moment he left Hogwarts and got a job but before they could close the deal Hermione had confiscated the bottle from Carmichael and poured the contents down a toilet .Hermione we wanted to buy that !shouted Ron .Dont be stupid she snarled .You might as well take Harold Dingles powdered dragon claw and have done with it .Dingles got powdered dragon claw ?said Ron eagerly .Not anymore said Hermione .I confiscated that too .None of these things actually works you know Dragon claw does work !said Ron .Its supposed to be incredible really gives your brain a boost you come over all cunning for a few hours Hermione let me have a pinch go on it cant hurt This stuff can said Hermione grimly .Ive had a look at it and its actually dried doxy droppings .This information took the edge off Harry and Rons desire for brain stimulants .They received their examination schedules and details of the procedure for O .W .L .s during their next Transfiguration lesson .As you can see Professor McGonagall told the class while they copied down the dates and times of their exams from the blackboard your O .W .L .s are spread over two successive weeks .You will sit the theory exams in the mornings and the practice in the afternoons .Your practical Astronomy examination will of course take place at night .Now I must warn you that the most stringent Anti Cheating Charms have been applied to your examination papers .AutoAnswer Quills are banned from the examination hall as are Remembralls Detachable Cribbing Cuffs and Self Correcting Ink .Every year I am afraid to say seems to harbor at least one student who thinks that he or she can get around the Wizarding Examinations Authoritys rules .I can only hope that it is nobody in Gryffindor .Our new headmistress Professor McGonagall pronounced the word with the same look on her face that Aunt Petunia had whenever she was contemplating a particularly stubborn bit of dirt has asked the Heads of House to tell their students that cheating will be punished most severely because of course your examination results will reflect upon the headmistresss new regime at the school .Professor McGonagall gave a tiny sigh .Harry saw the nostrils of her sharp nose flare .However that is no reason not to do your very best .You have your own futures to think about .Please Professor said Hermione her hand in the air when will we find out our results ?An owl will be sent to you some time in July said Professor McGonagall .Excellent said Dean Thomas in an audible whisper so we dont have to worry about it till the holidays .Harry imagined sitting in his bedroom in Privet Drive in six weeks time waiting for his O .W .L .results .Well he thought at least he would be sure of one bit of post next summer .Their first exam Theory of Charms was scheduled for Monday morning .Harry agreed to test Hermione after lunch on Sunday but regretted it almost at once .She was very agitated and kept snatching the book back from him to check that she had gotten the answer completely right finally hitting him hard on the nose with the sharp edge of Achievements in Charming .Why dont you just do it yourself ?he said firmly handing the book back to her his eyes watering .Meanwhile Ron was reading two years of Charms notes with his fingers in his ears his lips moving soundlessly Seamus was lying flat on his back on the floor reciting the definition of a Substantive Charm while Dean checked it against The Standard Book of Spells Grade 5 and Parvati and Lavender who were practicing basic locomotion charms were making their pencil cases race each other around the edge of the table .Dinner was a subdued affair that night .Harry and Ron did not talk much but ate with gusto having studied hard all day .Hermione on the other hand kept putting down her knife and fork and diving under the table for her bag from which she would seize a book to check some fact or figure .Ron was just telling her that she ought to eat a decent meal or she would not sleep that night when her fork slid from her limp fingers and landed with a loud tinkle on her plate .Oh my goodness she said faintly staring into the entrance hall .Is that them ?Is that the examiners ?Harry and Ron whipped around on their bench .Through the doors to the Great Hall they could see Umbridge standing with a small group of ancient looking witches and wizards .Umbridge Harry was pleased to see looked rather nervous .Shall we go and have a closer look ?said Ron .Harry and Hermione nodded and they hastened toward the double doors into the entrance hall slowing down as they stepped over the threshold to walk sedately past the examiners .Harry thought Professor Marchbanks must be the tiny stooped witch with a face so lined it looked as though it had been draped in cobwebs Umbridge was speaking to her very deferentially .Professor Marchbanks seemed to be a little deaf she was answering Umbridge very loudly considering that they were only a foot apart .Journey was fine journey was fine weve made it plenty of times before !she said impatiently .Now I havent heard from Dumbledore lately !she added peering around the hall as though hopeful he might suddenly emerge from a broom cupboard .No idea where he is I suppose ?None at all said Umbridge shooting a malevolent look at Harry Ron and Hermione who were now dawdling around the foot of the stairs as Ron pretended to do up his shoelace .But I daresay the Ministry of Magic will track him down soon enough .I doubt it shouted tiny Professor Marchbanks not if Dumbledore doesnt want to be found !I should know .Examined him personally in Transfiguration and Charms when he did N .E .W .T .s .Did things with a wand Id never seen before .Yes .well .said Professor Umbridge as Harry Ron and Hermione dragged their feet up the marble staircase as slowly as they dared let me show you to the staffroom .I daresay youd like a cup of tea after your journey .It was an uncomfortable sort of an evening .Everyone was trying to do some lastminute studying but nobody seemed to be getting very far .Harry went to bed early but then lay awake for what felt like hours .He remembered his careers consultation and McGonagalls furious declaration that she would help him become an Auror if it was the last thing she did .He wished he had expressed a more achievable ambition now that exam time was here .He knew that he was not the only one lying awake but none of the others in the dormitory spoke and finally one by one they fell asleep .None of the fifth years talked very much at breakfast next day either .Parvati was practicing incantations under her breath while the salt cellar in front of her twitched Hermione was rereading Achievement in Charming so fast that her eyes appeared blurred and Neville kept dropping his knife and fork and knocking over the marmalade .Once breakfast was over the fifth and seventh years milled around in the entrance hall while the other students went off to lessons .Then at halfpast nine they were called forward class by class to reenter the Great Hall which was now arranged exactly as Harry had seen it in the Pensieve when his father Sirius and Snape had been taking their O .W .L .s .The four House tables had been removed and replaced instead with many tables for one all facing the stafftable end of the Hall where Professor McGonagall stood facing them .When they were all seated and quiet she said You may begin and turned over an enormous hourglass on the desk beside her on which were also spare quills ink bottles and rolls of parchment .Harry turned over his paper his heart thumping hard .Three rows to his right and four seats ahead Hermione was already scribbling .He lowered his eyes to the first question a Give the incantation and b describe the wand movement required to make objects fly .Harry had a fleeting memory of a club soaring high into the air and landing loudly on the thick skull of a troll .Smiling slightly he bent over the paper and began to write .Well it wasnt too bad was it ?asked Hermione anxiously in the entrance hall two hours later still clutching the exam paper .Im not sure I did myself justice on Cheering Charms I just ran out of time did you put in the countercharm for hiccups ?I wasnt sure whether I ought to it felt like too much and on question twentythree Hermione said Ron sternly weve been through this before .Were not going through every exam afterward its bad enough doing them once .The fifth years ate lunch with the rest of the school the four House tables reappeared over the lunch hour and then trooped off into the small chamber beside the Great Hall where they were to wait until called for their practical examination .As small groups of students were called forward in alphabetical order those left behind muttered incantations and practiced wand movements occasionally poking one another in the back or eye by mistake .Hermiones name was called .Trembling she left the chamber with Anthony Goldstein Gregory Goyle and Daphne Greengrass .Students who had already been tested did not return afterward so Harry and Ron had no idea how Hermione had done .Shell be fine remember she got a hundred and twelve percent on one of our Charms tests ?said Ron .Ten minutes later Professor Flitwick called Parkinson Pansy Patil Padma Patil Parvati Potter Harry .Good luck said Ron quietly .Harry walked into the Great Hall clutching his wand so tightly his hand shook .Professor Tofty is free Potter squeaked Professor Flitwick who was standing just inside the door .He pointed Harry toward what looked like the very oldest and baldest examiner who was sitting behind a small table in a far corner a short distance from Professor Marchbanks who was halfway through testing Draco Malfoy .Potter is it ?said Professor Tofty consulting his notes and peering over his pincenez at Harry as he approached .The famous Potter ?Out of the corner of his eye Harry distinctly saw Malfoy throw a scathing look over at him the wine glass Malfoy had been levitating fell to the floor and smashed .Harry could not suppress a grin .Professor Tofty smiled back at him encouragingly .Thats it he said in his quavery old voice no need to be nervous .Now if I could ask you to take this eggcup and make it do some cartwheels for me .On the whole Harry thought it went rather well his Levitation Charm was certainly much better than Malfoys had been though he wished he had not mixed up the incantations for Color Change and Growth Charms so that the rat he was supposed to be turning orange swelled shockingly and was the size of a badger before Harry could rectify his mistake .He was glad Hermione had not been in the Hall at the time and neglected to mention it to her afterward .He could tell Ron though Ron had caused a dinner plate to mutate into a large mushroom and had no idea how it had happened .There was no time to relax that night they went straight to the common room after dinner and submerged themselves in studying for Transfiguration next day .Harry went to bed his head buzzing with complex spell models and theories .He forgot the definition of a Switching Spell during his written exam next morning but thought his practical could have been a lot worse .At least he managed to vanish the whole of his iguana whereas poor Hannah Abbott lost her head completely at the next table and somehow managed to multiply her ferret into a flock of flamingos causing the examination to be halted for ten minutes while the birds were captured and carried out of the Hall .They had their Herbology exam on Wednesday other than a small bite from a Fanged Geranium Harry felt he had done reasonably well and then on Thursday Defense Against the Dark Arts .Here for the first time Harry felt sure he had passed .He had no problem with any of the written questions and took particular pleasure during the practical examination in performing all the counterjinxes and defensive spells right in front of Umbridge who was watching coolly from near the doors into the entrance hall .Oh bravo !cried Professor Tofty who was examining Harry again when Harry demonstrated a perfect boggart banishing spell .Very good indeed !Well I think thats all Potter .unless .He leaned forward a little .I heard from my dear friend Tiberius Ogden that you can produce a Patronus ?For a bonus point . ?Harry raised his wand looked directly at Umbridge and imagined her being sacked .Expecto Patronum .The silver stag erupted from the end of his wand and cantered the length of the hall .All of the examiners looked around to watch its progress and when it dissolved into silver mist Professor Tofty clapped his veined and knotted hands enthusiastically .Excellent !he said .Very well Potter you may go !As Harry passed Umbridge beside the door their eyes met .There was a nasty smile playing around her wide slack mouth but he did not care .Unless he was very much mistaken and he was not planning on saying it to anybody in case he was he had just achieved an Outstanding O .W .L .On Friday Harry and Ron had a day off while Hermione sat her Ancient Runes exam and as they had the whole weekend in front of them they permitted themselves a break from studying .They stretched and yawned beside the open window through which warm summer air wafted over them as they played a desultory game of wizard chess .Harry could see Hagrid in the distance teaching a class on the edge of the forest .He was trying to guess what creatures they were examining he thought it must be unicorns because the boys seemed to be standing back a little when the portrait hole opened and Hermione clambered in looking thoroughly bad tempered .How were the runes ?said Ron yawning and stretching .I mistranslated ‘ehwaz said Hermione furiously .It means ‘partnership not ‘defense I mixed it up with ‘eihwaz .Ah well said Ron lazily thats only one mistake isnt it youll still get Oh shut up said Hermione angrily it could be the one mistake that makes the difference between a pass and a fail .And whats more someones put another niffler in Umbridges office I dont know how they got it through that new door but I just walked past there and Umbridge is shrieking her head off by the sound of it it tried to take a chunk out of her leg Good said Harry and Ron together .It is not good !said Hermione hotly .She thinks its Hagrid doing it remember ?And we do not want Hagrid chucked out !Hes teaching at the moment she cant blame him said Harry gesturing out of the window .Oh youre so naive sometimes Harry you really think Umbridge will wait for proof ?said Hermione who seemed determined to be in a towering temper and she swept off toward the girls dormitories banging the door behind her .Such a lovely sweettempered girl said Ron very quietly prodding his queen forward so that she could begin beating up one of Harrys knights .Hermione s bad mood persisted for most of the weekend though Harry and Ron found it quite easy to ignore as they spent most of Saturday and Sunday studying for Potions on Monday the exam to which Harry was looking forward least and which he was sure would be the one that would be the downfall of his ambitions to become an Auror .Sure enough he found the written exam difficult though he thought he might have got full marks on the question about Polyjuice Potion He could describe its effects extremely accurately having taken it illegally in his second year .The afternoon practical was not as dreadful as he had expected it to be .With Snape absent from the proceedings he found that he was much more relaxed than he usually was while making potions .Neville who was sitting very near Harry also looked happier than Harry had ever seen him during a Potions class .When Professor Marchbanks said Step away from your cauldrons please the examination is over Harry corked his sample flask feeling that he might not have achieved a good grade but that he had with luck avoided a fail .Only four exams left said Parvati Patil wearily as they headed back to Gryffindor common room .Only !said Hermione snappishly .Ive got Arithmancy and its probably the toughest subject there is !Nobody was foolish enough to snap back so she was unable to vent her spleen on any of them and was reduced to telling off some first years for giggling too loudly in the common room .Harry was determined to perform well in Tuesdays Care of Magical Creatures exam so as not to let Hagrid down .The practical examination took place in the afternoon on the lawn on the edge of the Forbidden Forest where students were required to correctly identify the knarl hidden among a dozen hedgehogs the trick was to offer them all milk in turn knarls highly suspicious creatures whose quills had many magical properties generally went berserk at what they saw as an attempt to poison them then demonstrate correct handling of a bowtruckle feed and clean a firecrab without sustaining serious burns and choose from a wide selection of food the diet they would give a sick unicorn .Harry could see Hagrid watching anxiously out of his cabin window .When Harrys examiner a plump little witch this time smiled at him and told him he could leave Harry gave Hagrid a fleeting thumbsup before heading back up to the castle .The Astronomy theory exam on Wednesday morning went well enough Harry was not convinced he had got the names of all of Jupiters moons right but was at least confident that none of them was inhabited by mice .They had to wait until evening for their practical Astronomy the afternoon was devoted instead to Divination .Even by Harrys low standards in Divination the exam went very badly .He might as well have tried to see moving pictures in the desktop as in the stubbornly blank crystal ball he lost his head completely during tealeaf reading saying it looked to him as though Professor Marchbanks would shortly be meeting a round dark soggy stranger and rounded off the whole fiasco by mixing up the life and head lines on her palm and informing her that she ought to have died the previous Tuesday .Well we were always going to fail that one said Ron gloomily as they ascended the marble staircase .He had just made Harry feel rather better by telling him how he told the examiner in detail about the ugly man with a wart on his nose in his crystal ball only to look up and realize he had been describing his examiners reflection .We shouldnt have taken the stupid subject in the first place said Harry .Still at least we can give it up now .Yeah said Harry .No more pretending we care what happens when Jupiter and Uranus get too friendly .And from now on I dont care if my tea leaves spell die Ron die Im just chucking them in the bin where they belong .Harry laughed just as Hermione came running up behind them .He stopped laughing at once in case it annoyed her .Well I think Ive done all right in Arithmancy she said and Harry and Ron both sighed with relief .Just time for a quick look over our star charts before dinner then .When they reached the top of the Astronomy Tower at eleven oclock they found a perfect night for stargazing cloudless and still .The grounds were bathed in silvery moonlight and there was a slight chill in the air .Each of them set up his or her telescope and when Professor Marchbanks gave the word proceeded to fill in the blank star chart he or she had been given .Professors Marchbanks and Tofty strolled among them watching as they entered the precise positions of the stars and planets they were observing .All was quiet except for the rustle of parchment the occasional creak of a telescope as it was adjusted on its stand and the scribbling of many quills .Half an hour passed then an hour the little squares of reflected gold light flickering on the ground below started to vanish as lights in the castle windows were extinguished .As Harry completed the constellation Orion on his chart however the front doors of the castle opened directly below the parapet where he was standing so that light spilled down the stone steps a little way across the lawn .Harry glanced down as he made a slight adjustment to the position of his telescope and saw five or six elongated shadows moving over the brightly lit grass before the doors swung shut and the lawn became a sea of darkness once more .Harry put his eye back to his telescope and refocused it now examining Venus .He looked down at his chart to enter the planet there but something distracted him .Pausing with his quill suspended over the parchment he squinted down into the shadowy grounds and saw half a dozen figures walking over the lawn .If they had not been moving and the moonlight had not been gilding the tops of their heads they would have been indistinguishable from the dark ground on which they stood .Even at this distance Harry had a funny feeling that he recognized the walk of the squattest among them who seemed to be leading the group .He could not think why Umbridge would be taking a stroll outside past midnight much less accompanied by five others .Then somebody coughed behind him and he remembered that he was halfway through an exam .He had quite forgotten Venuss position jamming his eye to his telescope he found it again and was again on the point of entering it on his chart when alert for any odd sound he heard a distant knock that echoed through the deserted grounds followed immediately by the muffled barking of a large dog .He looked up his heart hammering .There were lights on in Hagrids windows and the people he had observed crossing the lawn were now silhouetted against them .The door opened and he distinctly saw six tiny but sharply defined figures walk over the threshold .The door closed again and there was silence .Harry felt very uneasy .He glanced around to see whether Ron or Hermione had noticed what he had but Professor Marchbanks came walking behind him at that moment and not wanting to appear as though he was sneaking looks at anyone elses work he hastily bent over his star chart and pretended to be adding notes to it while really peering over the top of the parapet toward Hagrids cabin .Figures were now moving across the cabin windows temporarily blocking the light .He could feel Professor Marchbankss eyes on the back of his neck and pressed his eye again to his telescope staring up at the moon though he had marked its position an hour ago but as Professor Marchbanks moved on he heard a roar from the distant cabin that echoed through the darkness right to the top of the Astronomy Tower .Several of the people around Harry ducked out from behind their telescopes and peered instead in the direction of Hagrids cabin .Professor Tofty gave another dry little cough .Try and concentrate now boys and girls he said softly .Most people returned to their telescopes .Harry looked to his left .Hermione was gazing transfixed at Hagrids .Ahem twenty minutes to go said Professor Tofty .Hermione jumped and returned at once to her star chart Harry looked down at his own and noticed that he had mislabelled Venus as Mars .He bent to correct it .There was a loud BANG from the grounds .Several people said Ouch !as they poked themselves in the face with the ends of their telescopes hastening to see what was going on below .Hagrids door had burst open and by the light flooding out of the cabin they saw him quite clearly a massive figure roaring and brandishing his fists surrounded by six people all of whom judging by the tiny threads of red light they were casting in his direction seemed to be attempting to Stun him .No !cried Hermione .My dear !said Professor Tofty in a scandalized voice .This is an examination !But nobody was paying the slightest attention to their star charts anymore Jets of red light were still flying beside Hagrids cabin yet somehow they seemed to be bouncing off him .He was still upright and still as far as Harry could see fighting .Cries and yells echoed across the grounds a man yelled Be reasonable Hagrid !and Hagrid roared Reasonable be damned yeh won take me like this Dawlish !Harry could see the tiny outline of Fang attempting to defend Hagrid leaping at the wizards surrounding him until a Stunning Spell caught him and he fell to the ground .Hagrid gave a howl of fury lifted the culprit bodily from the ground and threw him The man flew what looked like ten feet and did not get up again .Hermione gasped both hands over her mouth Harry looked around at Ron and saw that he too was looking scared .None of them had ever seen Hagrid in a real temper before .Look !squealed Parvati who was leaning over the parapet and pointing to the foot of the castle where the front doors seemed to have opened again more light had spilled out onto the dark lawn and a single long black shadow was now rippling across the lawn .Now really !said Professor Tofty anxiously .Only sixteen minutes left you know !But nobody paid him the slightest attention They were watching the person now sprinting toward the battle beside Hagrids cabin .How dare you !the figure shouted as she ran .How dare you !Its McGonagall !whispered Hermione .Leave him alone !Alone I say !said Professor McGonagalls voice through the darkness .On what grounds are you attacking him ?He has done nothing nothing to warrant such Hermione Parvati and Lavender all screamed .No fewer than four Stunners had shot from the figures around the cabin toward Professor McGonagall .Halfway between cabin and castle the red beams collided with her .For a moment she looked luminous illuminated by an eerie red glow then was lifted right off her feet landed hard on her back and moved no more .Galloping gargoyles !shouted Professor Tofty who seemed to have forgotten the exam completely .Not so much as a warning !Outrageous behavior !COWARDS !bellowed Hagrid his voice carrying clearly to the top of the tower and several lights flickered back on inside the castle .RUDDY COWARDS !HAVE SOME O THAT AN THAT Oh my gasped Hermione .Hagrid took two massive swipes at his closest attackers judging by their immediate collapse they had been knocked cold .Harry saw him double over and thought for a moment that he had finally been overcome by a spell but on the contrary next moment Hagrid was standing again with what appeared to be a sack on his back then Harry realized that Fangs limp body was draped around his shoulders .Get him get him !screamed Umbridge but her remaining helper seemed highly reluctant to go within reach of Hagrid s fists .Indeed he was backing away so fast he tripped over one of his unconscious colleagues and fell over .Hagrid had turned and begun to run with Fang still hung around his neck Umbridge sent one last Stunning Spell after him but it missed and Hagrid running fullpelt toward the distant gates disappeared into the darkness .There was a long minutes quivering silence everybody gazing openmouthed into the grounds .Then Professor Toftys voice said feebly Um .five minutes to go everybody .Though he had only filled in twothirds of his chart Harry was desperate for the end of the exam .When it came at last he Ron and Hermione forced their telescopes haphazardly back into their holders and dashed back down the spiral staircase .None of the students were going to bed they were all talking loudly and excitedly at the foot of the stairs about what they had witnessed .That evil woman !gasped Hermione who seemed to be having difficulty talking due to rage .Trying to sneak up on Hagrid in the dead of night !She clearly wanted to avoid another scene like Trelawneys said Ernie Macmillan sagely squeezing over to join them .Hagrid did well didnt he ?said Ron who looked more alarmed than impressed .How come all the spells bounced off him ?Itll be his giant blood said Hermione shakily .Its very hard to Stun a giant theyre like trolls really tough .But poor Professor McGonagall .Four Stunners straight in the chest and shes not exactly young is she ?Dreadful dreadful said Ernie shaking his head pompously .Well Im off to bed .Night all .People around them were drifting away still talking excitedly about what they had just seen .At least they didnt get to take Hagrid off to Azkaban said Ron .I spect hes gone to join Dumbledore hasnt he ?I suppose so said Hermione who looked tearful .Oh this is awful I really thought Dumbledore would be back before long but now weve lost Hagrid too .They traipsed back to the Gryffindor common room to find it full .The commotion out in the grounds had woken several people who had hastened to rouse their friends .Seamus and Dean who had arrived ahead of Harry Ron and Hermione were now telling everyone what they had heard from the top of the Astronomy Tower .But why sack Hagrid now ?asked Angelina Johnson shaking her head .Its not like Trelawney hes been teaching much better than usual this year !Umbridge hates parthumans said Hermione bitterly flopping down into an armchair .She was always going to try and get Hagrid out .And she thought Hagrid was putting nifflers in her office piped up Katie Bell .Oh blimey said Lee Jordan covering his mouth .Its mes been putting the nifflers in her office Fred and George left me a couple Ive been levitating them in through her window .Shed have sacked him anyway said Dean .He was too close to Dumbledore .Thats true said Harry sinking into an armchair beside Hermione s .I just hope Professor McGonagalls all right said Lavender tearfully .They carried her back up to the castle we watched through the dormitory window said Colin Creevey .She didnt look very well .Madam Pomfrey will sort her out said Alicia Spinnet firmly .Shes never failed yet .It was nearly four in the morning before the common room cleared .Harry felt wide awake the image of Hagrid sprinting away into the dark was haunting him .He was so angry with Umbridge he could not think of a punishment bad enough for her though Rons suggestion of having her fed to a box of starving BlastEnded Skrewts had its merits .He fell asleep contemplating hideous revenges and arose from bed three hours later feeling distinctly unrested .Their final exam History of Magic was not to take place until that afternoon .Harry would very much have liked to go back to bed after breakfast but he had been counting on the morning for a spot of last minute studying so instead he sat with his head in his hands by the common room window trying hard not to doze off as he read through some of the notes stacked threeandahalf feet high that Hermione had lent him .The fifth years entered the Great Hall at two oclock and took their places in front of their overturned examination papers .Harry felt exhausted .He just wanted this to be over so that he could go and sleep .Then tomorrow he and Ron were going to go down to the Quidditch pitch he was going to have a fly on Rons broom and savor their freedom from studying .Turn over your papers said Professor Marchbanks from the front of the Hall flicking over the giant hourglass .You may begin .Harry stared fixedly at the first question .It was several seconds before it occurred to him that he had not taken in a word of it there was a wasp buzzing distractingly against one of the high windows .Slowly tortuously he began to write an answer .He was finding it very difficult to remember names and kept confusing dates .He simply skipped question four In your opinion did wand legislation contribute to or lead to better control of goblin riots of the eighteenth century ?thinking that he would go back to it if he had time at the end .He had a stab at question five How was the Statute of Secrecy breached in 1 749 and what measures were introduced to prevent a recurrence ?but had a nagging suspicion that he had missed several important points .He had a feeling vampires had come into the story somewhere .He looked ahead for a question he could definitely answer and his eyes alighted upon number ten .Describe the circumstances that led to the Formation of the International Confederation of Wizards and explain why the warlocks of Liechtenstein refused to join .I know this Harry thought though his brain felt torpid and slack .He could visualize a heading in Hermiones handwriting The Formation of the International Confederation of Wizards .He had read these notes only this morning .He began to write looking up now and again to check the large hourglass on the desk beside Professor Marchbanks .He was sitting right behind Parvati Patil whose long dark hair fell below the back of her chair .Once or twice he found himself staring at the tiny golden lights that glistened in it when she moved her head very slightly and had to give his own head a little shake to clear it . .the first Supreme Mugwump of the International Confederation of Wizards was Pierre Bonaccord but his appointment was contested by the Wizarding community of Liechtenstein because All around Harry quills were scratching on parchment like scurrying burrowing rats .The sun was very hot on the back of his head .What was it that Bonaccord had done to offend the wizards of Liechtenstein ?Harry had a feeling it had something to do with trolls .He gazed blankly at the back of Parvati s head again .If he could only perform Legilimency and open a window in the back of her head and see what it was about trolls that had caused the breach between Pierre Bonaccord and Liechtenstein .Harry closed his eyes and buried his face in his hands so that the glowing red of his eyelids grew dark and cool .Bonaccord had wanted to stop troll hunting and give the trolls rights .but Liechtenstein was having problems with a tribe of particularly vicious mountain trolls .That was it .He opened his eyes they stung and watered at the sight of the blazing white parchment .Slowly he wrote two lines about the trolls then read through what he had done so far .It did not seem very informative or detailed yet he was sure Hermiones notes on the confederation had gone on for pages and pages .He closed his eyes again trying to see them trying to remember .The confederation had met for the first time in France yes he had written that already .Goblins had tried to attend and been ousted .He had written that too .And nobody from Liechtenstein had wanted to come Think he told himself his face in his hands while all around him quills scratched out neverending answers and the sand trickled through the hourglass at the front .He was walking along the cool dark corridor to the Department of Mysteries again walking with a firm and purposeful tread breaking occasionally into a run determined to reach his destination at last .The black door swung open for him as usual and here he was in the circular room with its many doors .Straight across the stone floor and through the second door .patches of dancing light on the walls and floor and that odd mechanical clicking but no time to explore he must hurry .He jogged the last few feet to the third door which swung open just like the others .Once again he was in the cathedralsized room full of shelves and glass spheres .His heart was beating very fast now .He was going to get there this time .When he reached number ninetyseven he turned left and hurried along the aisle between two rows .But there was a shape on the floor at the very end a black shape moving upon the floor like a wounded animal .Harrys stomach contracted with fear .with excitement .A voice issued from his own mouth a high cold voice empty of any human kindness Take it for me .Lift it down now .I cannot touch it .but you can .The black shape upon the floor shifted a little .Harry saw a longfingered white hand clutching a wand rise on the end of his own arm .heard the high cold voice say Cruciol The man on the floor let out a scream of pain attempted to stand but fell back writhing .Harry was laughing .He raised his wand the curse lifted and the figure groaned and became motionless .Lord Voldemort is waiting .Very slowly his arms trembling the man on the ground raised his shoulders a few inches and lifted his head .His face was bloodstained and gaunt twisted in pain yet rigid with defiance .Youll have to kill me whispered Sirius .Undoubtedly I shall in the end said the cold voice .But you will fetch it for me first Black .You think you have felt pain thus far ?Think again .We have hours ahead of us and nobody to hear you scream .But somebody screamed as Voldemort lowered his wand again somebody yelled and fell sideways off a hot desk onto the cold stone floor .Harry hit the ground and awoke still yelling his scar on fire as the Great Hall erupted all around him .OUT OF THE FIRE Im not going .I dont need the hospital wing .I dont want .He was gibbering trying to pull away from Professor Tofty who was looking at him with much concern and who had just helped Harry out into the entrance hall while the students all around them stared .Im Im fine sir Harry stammered wiping the sweat from his face .Really .I just fell asleep .Had a nightmare .Pressure of examinations !said the old wizard sympathetically patting Harry shakily on the shoulder .It happens young man it happens !Now a cooling drink of water and perhaps you will be ready to return to the Great Hall ?The examination is nearly over but you may be able to round off your last answer nicely ?Yes said Harry wildly .I mean .no .Ive done done as much as I can I think .Very well very well said the old wizard gently .I shall go and collect your examination paper and I suggest that you go and have a nice lie down .Ill do that said Harry nodding vigorously .Thanks very much .He waited for the second when the old mans heels disappeared over the threshold into the Great Hall then ran up the marble staircase and then more staircases toward the hospital wing hurtling along the corridors so fast that the portraits he passed muttered reproaches and burst through the double doors like a hurricane causing Madam Pomfrey who had been spooning some bright blue liquid into Montagues open mouth to shriek in alarm .Potter what do you think youre doing ?I need to see Professor McGonagall gasped Harry the breath tearing his lungs .Now .Its urgent .Shes not here Potter said Madam Pomfrey sadly .She was transferred to St .Mungos this morning .Four Stunning Spells straight to the chest at her age ?Its a wonder they didnt kill her .Shes .gone ?said Harry stunned .The bell rang just outside the dormitory and he heard the usual distant rumbling of students starting to flood out into the corridors above and below him .He remained quite still looking at Madam Pomfrey .Terror was rising inside him .There was nobody left to tell .Dumbledore had gone Hagrid had gone but he had always expected Professor McGonagall to be there irascible and inflexible perhaps but always dependably solidly present .I dont wonder youre shocked Potter said Madam Pomfrey with a kind of fierce approval in her face .As if one of them could have Stunned Minerva McGonagall face on by daylight !Cowardice thats what it was .Despicable cowardice .If I wasnt worried what would happen to you students without me Id resign in protest .Yes said Harry blankly .He strode blindly from the hospital wing into the teeming corridor where he stood buffeted by the crowd the panic expanding inside him like poison gas so that his head swam and he could not think what to do .Ron and Hermione said a voice in his head .He was running again pushing students out of the way oblivious to their angry protests and shouts .He sprinted back down two floors and was at the top of the marble staircase when he saw them hurrying toward him .Harry !said Hermione at once looking very frightened .What happened ?Are you all right ?Are you ill ?Where have you been ?demanded Ron .Come with me Harry said quickly .Come on Ive got to tell you something .He led them along the firstfloor corridor peering through doorways and at last found an empty classroom into which he dived closing the door behind Ron and Hermione the moment they were inside and leaning against it facing them .Voldemorts got Sirius .What ?How dyou ?Saw it .Just now .When I fell asleep in the exam .But but where ?How ?said Hermione whose face was white .I dunno how said Harry .But I know exactly where .Theres a room in the Department of Mysteries full of shelves covered in these little glass balls and theyre at the end of row ninetyseven .Hes trying to use Sirius to get whatever it is he wants from in there .Hes torturing him .Says hell end by killing him .Harry found his voice was shaking as were his knees .He moved over to a desk and sat down on it trying to master himself .Howre we going to get there ?he asked them .There was a moments silence .Then Ron said Gget there ?Get to the Department of Mysteries so we can rescue Sirius !Harry said loudly .But Harry .said Ron weakly .What ?What ?said Harry .He could not understand why they were both gaping at him as though he was asking them something unreasonable .Harry said Hermione in a rather frightened voice er .how .how did Voldemort get into the Ministry of Magic without anybody realizing he was there ?How do I know ?bellowed Harry .The question is how were going to get in there !But .Harry think about this said Hermione taking a step toward him its five oclock in the afternoon .The Ministry of Magic must be full of workers .How would Voldemort and Sirius have got in without being seen ?Harry .theyre probably the two most wanted wizards in the world .You think they could get into a building full of Aurors undetected ?I dunno Voldemort used an Invisibility Cloak or something !Harry shouted .Anyway the Department of Mysteries has always been completely empty whenever Ive been Youve never been there Harry said Hermione quietly .Youve dreamed about the place thats all .Theyre not normal dreams !Harry shouted in her face standing up and taking a step closer to her in turn .He wanted to shake her .How dyou explain Rons dad then what was all that about how come I knew what had happened to him ?Hes got a point said Ron quietly looking at Hermione .But this is just just so unlikely said Hermione desperately .Harry how on earth could Voldemort have got hold of Sirius when hes been in Grimmauld Place all the time ?Sirius mightve cracked and just wanted some fresh air said Ron sounding worried .Hes been desperate to get out of that house for ages But why Hermione persisted why on earth would Voldemort want to use Sirius to get the weapon or whatever the thing is ?I dunno there could be loads of reasons !Harry yelled at her .Maybe Sirius is just someone Voldemort doesnt care about seeing hurt You know what Ive just thought of something said Ron in a hushed voice .Siriuss brother was a Death Eater wasnt he ?Maybe he told Sirius the secret of how to get the weapon !Yeah and thats why Dumbledores been so keen to keep Sirius locked up all the time !said Harry .Look Im sorry cried Hermione but neither of you are making sense and weve got no proof for any of this no proof Voldemort and Sirius are even there Hermione Harrys seen them !said Ron rounding on her .Okay she said looking frightened yet determined Ive just got to say this .What ?You .This isnt a criticism Harry !But you do .sort of .I mean dont you think youve got a bit of a a savingpeoplething ?she said .He glared at her .And whats that supposed to mean a ‘savingpeoplething ?Well .you .She looked more apprehensive than ever .I mean .last year for instance .in the lake .during the Tournament .you shouldnt have .I mean you didnt need to save that little Delacour girl .You got a bit .carried away .A wave of hot prickly anger swept Harrys body how could she remind him of that blunder now ? .I mean it was really great of you and everything said Hermione quickly looking positively petrified at the look on Harrys face .Everyone thought it was a wonderful thing to do Thats funny said Harry in a trembling voice because I definitely remember Ron saying Id wasted time acting the hero .Is that what you think this is ?You reckon I want to act the hero again ?No no no !said Hermione looking aghast .Thats not what I mean at all !Well spit out what youve got to say because were wasting time here !Harry shouted .Im trying to say Voldemort knows you Harry !He took Ginny down into the Chamber of Secrets to lure you there its the kind of thing he does he knows youre the the sort of person whod go to Siriuss aid !What if hes just trying to get you into the Department of Myst ?Hermione it doesnt matter if hes done it to get me there or not theyve taken McGonagall to St .Mungos there isnt anyone left from the Order at Hogwarts who we can tell and if we dont go Sirius is dead !But Harry what if your dream was was just that a dream ?Harry let out a roar of frustration .Hermione actually stepped back from him looking alarmed .You dont get it !Harry shouted at her .Im not having nightmares Im not just dreaming !What dyou think all the Occlumency was for why dyou think Dumbledore wanted me prevented from seeing these things ?Because theyre REAL Hermione Sirius is trapped Ive seen him Voldemorts got him and no one else knows and that means were the only ones who can save him and if you dont want to do it fine but Im going understand ?And if I remember rightly you didnt have a problem with my saving peoplething when it was you I was saving from the dementors or he rounded on Ron when it was your sister I was saving from the basilisk I never said I had a problem !said Ron heatedly .But Harry youve just said it said Hermione fiercely .Dumbledore wanted you to learn to shut these things out of your mind if youd done Occlumency properly youd never have seen this IF YOU THINK IM JUST GOING TO ACT LIKE I HAVEN T SEEN Sirius told you there was nothing more important than you learning to close your mind !WELL I EXPECT HED SAY SOMETHING DIFFERENT IF HE KNEW WHAT ID JUST The classroom door opened .Harry Ron and Hermione whipped around .Ginny walked in looking curious followed by Luna who as usual looked as though she had drifted in accidentally .Hi said Ginny uncertainly .We recognized Harrys voice what are you yelling about ?Never you mind said Harry roughly .Ginny raised her eyebrows .Theres no need to take that tone with me she said coolly .I was only wondering whether I could help .Well you cant said Harry shortly .Youre being rather rude you know said Luna serenely .Harry swore and turned away .The very last thing he wanted now was a conversation with Luna Lovegood .Wait said Hermione suddenly .Wait .Harry they can help .Harry and Ron looked at her .Listen she said urgently Harry we need to establish whether Sirius really has left headquarters Ive told you I saw Harry Im begging you please !said Hermione desperately .Please lets just check that Sirius isnt at home before we go charging off to London if we find out hes not there then I swear I wont try and stop you Ill come Ill ddo whatever it takes to try and save him Sirius is being tortured NOW !shouted Harry .We havent got time to waste But if this is a trick of VVoldemorts Harry weve got to check weve got to How ?Harry demanded .Howre we going to check ?Well have to use Umbridges fire and see if we can contact him said Hermione who looked positively terrified at the thought .Well draw Umbridge away again but well need lookouts and thats where we can use Ginny and Luna .Though clearly struggling to understand what was going on Ginny said immediately Yeah well do it and Luna said When you say ‘Sirius are you talking about Stubby Boardman ?Nobody answered her .Okay Harry said aggressively to Hermione Okay if you can think of a way of doing this quickly Im with you otherwise Im going to the Department of Mysteries right now The Department of Mysteries ?said Luna looking mildly surprised .But how are you going to get there ?Again Harry ignored her .Right said Hermione twisting her hands together and pacing up and down between the desks .Right .well .One of us has to go and find Umbridge and and send her off in the wrong direction keep her away from her office .They could tell her I dont know that Peeves is up to something awful as usual .Ill do it said Ron at once .Ill tell her Peeves is smashing up the Transfiguration department or something its miles away from her office .Come to think of it I could probably persuade Peeves to do it if I met him on the way .It was a mark of the seriousness of the situation that Hermione made no objection to the smashing up of the Transfiguration department .Okay she said her brow furrowed as she continued to pace .Now we need to keep students away from her office while we force entry or some Slytherins bound to go and tip her off .Luna and I can stand at either end of the corridor said Ginny promptly and warn people not to go down there because someones let off a load of Garroting Gas .Hermione looked surprised at the readiness with which Ginny had come up with this lie .Ginny shrugged and said Fred and George were planning to do it before they left .Okay said Hermione well then Harry you and I will be under the Invisibility Cloak and well sneak into the office and you can talk to Sirius Hes not there Hermione !I mean you can can check whether Sirius is at home or not while I keep watch I dont think you should be in there alone Lees already proved the windows a weak spot sending those nifflers through it .Even through his anger and impatience Harry recognized Hermione s offer to accompany him into Umbridges office as a sign of solidarity and loyalty .I .okay thanks he muttered .Right well even if we do all of that I dont think were going to be able to bank on more than five minutes said Hermione looking relieved that Harry seemed to have accepted the plan not with Filch and the wretched Inquisitorial Squad floating around .Five minutesll be enough said Harry .Cmon lets go Now ?said Hermione looking shocked .Of course now !said Harry angrily .What did you think were going to wait until after dinner or something ?Hermione Sirius is being tortured right now I oh all right she said desperately .You go and get the Invisibility Cloak and well meet you at the end of Umbridges corridor okay ?Harry did not answer but flung himself out of the room and began to fight his way through the milling crowds outside .Two floors up he met Seamus and Dean who hailed him jovially and told him they were planning a dusktilldawn endofexams celebration in the common room .Harry barely heard them .He scrambled through the portrait hole while they were still arguing about how many blackmarket butterbeers they would need and was climbing back out of it the Invisibility Cloak and Siriuss knife secure in his bag before they noticed he had left them .Harry dyou want to chip in a couple of Galleons ?Harold Dingle reckons he could sell us some firewhisky .But Harry was already tearing away back along the corridor and a couple of minutes later was jumping the last few stairs to join Ron Hermione Ginny and Luna who were huddled together at the end of Umbridges corridor .Got it he panted .Ready to go then ?All right whispered Hermione as a gang of loud sixth years passed them .So Ron you go and head Umbridge off .Ginny Luna if you can start moving people out of the corridor .Harry and I will get the cloak on and wait until the coast is clear .Ron strode away his bright red hair visible right to the end of the passage .Meanwhile Ginnys equally vivid head bobbed between the jostling students surrounding them in the other direction trailed by Lunas blonde one .Get over here muttered Hermione tugging at Harrys wrist and pulling him back into a recess where the ugly stone head of a medieval wizard stood muttering to itself on a column .Are are you sure youre okay Harry ?Youre still very pale .Im fine he said shortly tugging the Invisibility Cloak from out of his bag .In truth his scar was aching but not so badly that he thought Voldemort had yet dealt Sirius a fatal blow .It had hurt much worse than this when Voldemort had been punishing Avery .Here he said .He threw the Invisibility Cloak over both of them and they stood listening carefully over the Latin mumblings of the bust in front of them .You cant come down here !Ginny was calling to the crowd .No sorry youre going to have to go round by the swiveling staircase someones let off Garroting Gas just along here They could hear people complaining one surly voice said I cant see no gas .Thats because its colorless said Ginny in a convincingly exasperated voice but if you want to walk through it carry on then well have your body as proof for the next idiot who didnt believe us .Slowly the crowd thinned .The news about the Garroting Gas seemed to have spread people were not coming this way anymore .When at last the surrounding area was quite clear Hermione said quietly I think thats as good as were going to get Harry come on lets do it .Together they moved forward covered by the cloak .Luna was standing with her back to them at the far end of the corridor .As they passed Ginny Hermione whispered Good one .dont forget the signal .Whats the signal ?muttered Harry as they approached Umbridges door .A loud chorus of Weasley Is Our King if they see Umbridge coming replied Hermione as Harry inserted the blade of Siriuss knife in the crack between door and wall .The lock clicked open and they entered the office .The garish kittens were basking in the late afternoon sunshine warming their plates but otherwise the office was as still and empty as last time .Hermione breathed a sigh of relief .I thought she might have added extra security after the second niffler .They pulled off the cloak .Hermione hurried over to the window and stood out of sight peering down into the grounds with her wand out .Harry dashed over to the fireplace seized the pot of Floo powder and threw a pinch into the grate causing emerald flames to burst into life there .He knelt down quickly thrust his head into the dancing fire and cried Number twelve Grimmauld Place !His head began to spin as though he had just got off a fairground ride though his knees remained firmly planted upon the cold office floor .He kept his eyes screwed up against the whirling ash and when the spinning stopped he opened them to find himself looking out upon the long cold kitchen of Grimmauld Place .There was nobody there .He had expected this yet was not prepared for the molten wave of dread and panic that seemed to burst through his stomach floor at the sight of the deserted room .Sirius ?he shouted .Sirius are you there ?His voice echoed around the room but there was no answer except a tiny scuffing sound to the right of the fire .Whos there ?he called wondering whether it was just a mouse .Kreacher the houseelf came creeping into view .He looked highly delighted about something though he seemed to have recently sustained a nasty injury to both hands which were heavily bandaged .Its the Potter boys head in the fire Kreacher informed the empty kitchen stealing furtive oddly triumphant glances at Harry .What has he come for Kreacher wonders ?Wheres Sirius Kreacher ?Harry demanded .The houseelf gave a wheezy chuckle .Master has gone out Harry Potter .Wheres he gone ?Wheres he gone Kreacher ?Kreacher merely cackled .Im warning you !said Harry fully aware that his scope for inflicting punishment upon Kreacher was almost nonexistent in this position .What about Lupin ?MadEye ?Any of them are any of them here ?Nobody here but Kreacher !said the elf gleefully and turning away from Harry he began to walk slowly toward the door at the end of the kitchen .Kreacher thinks he will have a little chat with his Mistress now yes he hasnt had a chance in a long time Kreachers Master has been keeping him away from her Where has Sirius gone ?Harry yelled after the elf .Kreacher has he gone to the Department of Mysteries ?Kreacher stopped in his tracks .Harry could just make out the back of his bald head through the forest of chair legs before him .Master does not tell poor Kreacher where he is going said the elf quietly .But you know !shouted Harry .Dont you ?You know where he is !There was a moments silence then the elf let out his loudest cackle yet .Master will not come back from the Department of Mysteries !he said gleefully .Kreacher and his Mistress are alone again !And he scurried forward and disappeared through the door to the hall .You !But before he could utter a single curse or insult Harry felt a great pain at the top of his head .He inhaled a lot of ash and choking found himself being dragged backward through the flames until with a horrible abruptness he was staring up into the wide pallid face of Professor Umbridge who had dragged him backward out of the fire by the hair and was now bending his neck back as far as it would go as though she was going to slit his throat .You think she whispered bending Harrys neck back even farther so that he was looking up at the ceiling above him that after two nifflers I was going to let one more foul scavenging little creature enter my office without my knowledge ?I had Stealth Sensoring Spells placed all around my doorway after the last one got in you foolish boy .Take his wand she barked at someone he could not see and he felt a hand grope inside the chest pocket of his robes and remove the wand .Hers too .Harry heard a scuffle over by the door and knew that Hermione had just had her wand wrested from her as well .I want to know why you are in my office said Umbridge shaking the fist clutching his hair so that he staggered .I was trying to get my Firebolt !Harry croaked .Liar .She shook his head again .Your Firebolt is under strict guard in the dungeons as you very well know Potter .You had your head in my fire .With whom have you been communicating ?No one said Harry trying to pull away from her .He felt several hairs part company with his scalp .LiaA shouted Umbridge .She threw him from her and he slammed into the desk .Now he could see Hermione pinioned against the wall by Millicent Bulstrode .Malfoy was leaning on the windowsill smirking as he threw Harrys wand into the air one handed and then caught it again .There was a commotion outside and several large Slytherins entered each gripping Ron Ginny Luna and to Harrys bewilderment Neville who was trapped in a stranglehold by Crabbe and looked in imminent danger of suffocation .All four of them had been gagged .Got em all said Warrington shoving Ron roughly forward into the room .That one .he poked a thick finger at Neville tried to stop me taking her he pointed at Ginny who was trying to kick the shins of the large Slytherin girl holding her so I brought him along too .Good good said Umbridge watching Ginnys struggles .Well it looks as though Hogwarts will shortly be a Weasleyfree zone doesnt it ?Malfoy laughed loudly and sycophantically .Umbridge gave her wide complacent smile and settled herself into a chintzcovered armchair blinking up at her captives like a toad in a flowerbed .So Potter she said .You stationed lookouts around my office and you sent this buffoon she nodded at Ron and Malfoy laughed even louder to tell me the poltergeist was wreaking havoc in the Transfiguration department when I knew perfectly well that he was busy smearing ink on the eyepieces of all the school telescopes Mr Filch having just informed me so .Clearly it was very important for you to talk to somebody .Was it Albus Dumbledore ?Or the half breed Hagrid ?I doubt it was Minerva McGonagall I hear she is still too ill to talk to anyone .Malfoy and a few of the other members of the Inquisitorial Squad laughed some more at that .Harry found he was so full of rage and hatred he was shaking .Its none of your business who I talk to he snarled .Umbridges slack face seemed to tighten .Very well she said in her most dangerous and falsely sweet voice .Very well Mr Potter .I offered you the chance to tell me freely .You refused .I have no alternative but to force you .Draco fetch Professor Snape .Malfoy stowed Harrys wand inside his robes and left the room smirking but Harry hardly noticed .He had just realized something he could not believe he had been so stupid as to forget it .He had thought that all the members of the Order all those who could help him save Sirius were gone but he had been wrong .There was still a member of the Order of the Phoenix at Hogwarts Snape .There was silence in the office except for the fidgetings and scufflings resultant from the Slytherins efforts to keep Ron and the others under control .Rons lip was bleeding onto Umbridges carpet as he struggled against Warringtons half nelson .Ginny was still trying to stamp on the feet of the sixthyear girl who had both her upper arms in a tight grip .Neville was turning steadily more purple in the face while tugging at Crabbes arms and Hermione was attempting vainly to throw Millicent Bulstrode off her .Luna however stood limply by the side of her captor gazing vaguely out of the window as though rather bored by the proceedings .Harry looked back at Umbridge who was watching him closely .He kept his face deliberately smooth and blank as footsteps were heard in the corridor outside and Draco Malfoy came back into the room holding open the door for Snape .You wanted to see me Headmistress ?said Snape looking around at all the pairs of struggling students with an expression of complete indifference .Ah Professor Snape said Umbridge smiling widely and standing up again .Yes I would like another bottle of Veritaserum as quick as you can please .You took my last bottle to interrogate Potter he said observing her coolly through his greasy curtains of black hair .Surely you did not use it all ?I told you that three drops would be sufficient .Umbridge flushed .You can make some more cant you ?she said her voice becoming more sweetly girlish as it always did when she was furious .Certainly said Snape his lip curling .It takes a full moon cycle to mature so I should have it ready for you in around a month .A month ?squawked Umbridge swelling toadishly .A month ?But I need it this evening Snape !I have just found Potter using my fire to communicate with a person or persons unknown !Really ?said Snape showing his first faint sign of interest as he looked around at Harry .Well it doesnt surprise me .Potter has never shown much inclination to follow school rules .His cold dark eyes were boring into Harrys who met his gaze unflinchingly concentrating hard on what he had seen in his dream willing Snape to read it in his mind to understand .I wish to interrogate him !shouted Umbridge angrily and Snape looked away from Harry back into her furiously quivering face .I wish you to provide me with a potion that will force him to tell me the truth !I have already told you said Snape smoothly that I have no further stocks of Veritaserum .Unless you wish to poison Potter and I assure you I would have the greatest sympathy with you if you did I cannot help you .The only trouble is that most venoms act too fast to give the victim much time for truthtelling .Snape looked back at Harry who stared at him frantic to communicate without words .Voldemorts got Sirius in the Department of Mysteries he thought desperately .Voldemorts got Sirius You are on probation !shrieked Professor Umbridge and Snape looked back at her his eyebrows slightly raised .You are being deliberately unhelpful !I expected better Lucius Malfoy always speaks most highly of you !Now get out of my office !Snape gave her an ironic bow and turned to leave .Harry knew his last chance of letting the Order know what was going on was walking out of the door .Hes got Padfoot !he shouted .Hes got Padfoot at the place where its hidden !Snape had stopped with his hand on Umbridges door handle .Padfoot ?cried Professor Umbridge looking eagerly from Harry to Snape .What is Padfoot ?Where what is hidden ?What does he mean Snape ?Snape looked around at Harry .His face was inscrutable .Harry could not tell whether he had understood or not but he did not dare speak more plainly in front of Umbridge .I have no idea said Snape coldly .Potter when I want nonsense shouted at me I shall give you a Babbling Beverage .And Crabbe loosen your hold a little if Longbottom suffocates it will mean a lot of tedious paperwork and I am afraid I shall have to mention it on your reference if ever you apply for a job .He closed the door behind him with a snap leaving Harry in a state of worse turmoil than before Snape had been his very last hope .He looked at Umbridge who seemed to be feeling the same way her chest was heaving with rage and frustration .Very well she said and she pulled out her wand .Very well .I am left with no alternative .This is more than a matter of school discipline .This is an issue of Ministry security .Yes .yes .She seemed to be talking herself into something .She was shifting her weight nervously from foot to foot staring at Harry beating her wand against her empty palm and breathing heavily .Harry felt horribly powerless without his own wand as he watched her .You are forcing me Potter .I do not want to said Umbridge still moving restlessly on the spot but sometimes circumstances justify the use .I am sure the Minister will understand that I had no choice .Malfoy was watching her with a hungry expression on his face .The Cruciatus Curse ought to loosen your tongue said Umbridge quietly .No !shrieked Hermione .Professor Umbridge its illegal but Umbridge took no notice .There was a nasty eager excited look on her face that Harry had never seen before .She raised her wand .The Minister wouldnt want you to break the law Professor Umbridge !cried Hermione .What Cornelius doesnt know wont hurt him said Umbridge who was now panting slightly as she pointed her wand at different parts of Harrys body in turn apparently trying to decide what would hurt the most .He never knew I ordered dementors after Potter last summer but he was delighted to be given the chance to expel him all the same .It was you ?gasped Harry .You sent the dementors after me ?Somebody had to act breathed Umbridge as her wand came to rest pointing directly at Harrys forehead .They were all bleating about silencing you somehow discrediting you but I was the one who actually did something about it .Only you wriggled out of that one didnt you Potter ?Not today though not now .And taking a deep breath she cried Cruc NO !shouted Hermione in a cracked voice from behind Millicent Bulstrode .No Harry Harry well have to tell her !No way !yelled Harry staring at the little of Hermione he could see .Well have to Harry shell force it out of you anyway whats .whats the point . ?And Hermione began to cry weakly into the back of Millicent Bulstrode s robes .Millicent stopped trying to squash her against the wall immediately and dodged out of her way looking disgusted .Well well well !said Umbridge looking triumphant .Little Miss QuestionAll is going to give us some answers !Come on then girl come on !Er my nee no !shouted Ron through his gag .Ginny was staring at Hermione as though she had never seen her before Neville still choking for breath was gazing at her too .But Harry had just noticed something .Though Hermione was sobbing desperately into her hands there was no trace of a tear .Im Im sorry everyone said Hermione .But I cant stand it ■ Thats right thats right girl !said Umbridge seizing Hermione by the shoulders thrusting her into the abandoned chintz chair and leaning over her .Now then .with whom was Potter communicating just now ?Well gulped Hermione into her hands well he was trying to speak to Professor Dumbledore .Ron froze his eyes wide Ginny stopped trying to stamp on her Slytherin captors toes even Luna looked mildly surprised .Fortunately the attention of Umbridge and her minions was focused too exclusively upon Hermione to notice these suspicious signs .Dumbledore ?said Umbridge eagerly .You know where Dumbledore is then ?Well .no !sobbed Hermione .Weve tried the Leaky Cauldron in Diagon Alley and the Three Broomsticks and even the Hogs Head Idiot girl Dumbledore wont be sitting in a pub when the whole Ministrys looking for him !shouted Umbridge disappointment etched in every sagging line of her face .But but we needed to tell him something important !wailed Hermione holding her hands more tightly over her face not Harry knew out of anguish but to disguise the continued absence of tears .Yes ?said Umbridge with a sudden resurgence of excitement .What was it you wanted to tell him ?We .we wanted to tell him its rready !choked Hermione .Whats ready ?demanded Umbridge and now she grabbed Hermione s shoulders again and shook her slightly .Whats ready girl ?The .the weapon said Hermione .Weapon ?Weapon ?said Umbridge and her eyes seemed to pop with excitement .You have been developing some method of resistance ?A weapon you could use against the Ministry ?On Professor Dumbledores orders of course ?Yyyes gasped Hermione .But he had to leave before it was finished and nnnow weve finished it for him and we cccant find him ttto tell him !What kind of weapon is it ?said Umbridge harshly her stubby hands still tight on Hermione s shoulders .We dont rrreally understand it said Hermione sniffing loudly .We jjjust did what PPProfessor Dumbledore told us ttto do .Umbridge straightened up looking exultant .Lead me to the weapon she said .‘Tm not showing .them said Hermione shrilly looking around at the Slytherins through her fingers .It is not for you to set conditions said Professor Umbridge harshly .Fine said Hermione now sobbing into her hands again fine .let them see it I hope they use it on you !In fact I wish youd invite loads and loads of people to come and see !Ththat would serve you right oh Id love it if the whwhole school knew where it was and how to uuse it and then if you annoy any of them theyll be able to ssort you out !These words had a powerful impact on Umbridge .She glanced swiftly and suspiciously around at her Inquisitorial Squad her bulging eyes resting for a moment on Malfoy who was too slow to disguise the look of eagerness and greed that had appeared on his face .Umbridge contemplated Hermione for another long moment and then spoke in what she clearly thought was a motherly voice .All right dear lets make it just you and me .and well take Potter too shall we ?Get up now Professor said Malfoy eagerly Professor Umbridge I think some of the squad should come with you to look after I am a fully qualified Ministry official Malfoy do you really think I cannot manage two wandless teenagers alone ?asked Umbridge sharply .In any case it does not sound as though this weapon is something that schoolchildren should see .You will remain here until I return and make sure none of these she gestured around at Ron Ginny Neville and Luna escape .All right said Malfoy looking sulky and disappointed .And you two can go ahead of me and show me the way said Umbridge pointing at Harry and Hermione with her wand .Lead on .FIGHT AND FLIGHT Harry had no idea what Hermione was planning or even whether she had a plan .He walked half a pace behind her as they headed down the corridor outside Umb ridges office knowing it would look very suspicious if he appeared not to know where they were going .He did not dare attempt to talk to her Umbridge was walking so closely behind them that he could hear her ragged breathing .Hermione led the way down the stairs into the entrance hall .The din of loud voices and the clatter of cutlery on plates echoed from out of the double doors to the Great Hall .It seemed incredible to Harry that twenty feet away were people who were enjoying dinner celebrating the end of exams not a care in the world .Hermione walked straight out of the oak front doors and down the stone steps into the balmy evening air .The sun was falling toward the tops of the trees in the Forbidden Forest now as Hermione marched purposefully across the grass Umbridge jogging to keep up .Their long dark shadows rippled over the grass behind them like cloaks .Its hidden in Hagrids hut is it ?said Umbridge eagerly in Harrys ear .Of course not said Hermione scathingly .Hagrid might have set it off accidentally .Yes said Umbridge whose excitement seemed to be mounting .Yes he would have done of course the great halfbreed oaf .She laughed .Harry felt a strong urge to swing around and seize her by the throat but resisted .His scar was throbbing in the soft evening air but it had not yet burned whitehot as he knew it would if Voldemort had moved in for the kill .Then .where is it ?asked Umbridge with a hint of uncertainty in her voice as Hermione continued to stride toward the forest .In there of course said Hermione pointing into the dark trees .It had to be somewhere that students werent going to find it accidentally didnt it ?Of course said Umbridge though she sounded a little apprehensive now .Of course .very well then .you two stay ahead of me .Can we have your wand then if were going first ?Harry asked her .No I dont think so Mr Potter said Umbridge sweetly poking him in the back with it .The Ministry places a rather higher value on my life than yours Im afraid .As they reached the cool shade of the first trees Harry tried to catch Hermione s eye walking into the forest without wands seemed to him to be more foolhardy than anything they had done so far this evening .She however merely gave Umbridge a contemptuous glance and plunged straight into the trees moving at such a pace that Umbridge with her shorter legs had difficulty in keeping up .Is it very far in ?Umbridge asked as her robe ripped on a bramble .Oh yes said Hermione .Yes its well hidden .Harrys misgivings increased .Hermione was not taking the path they had followed to visit Grawp but the one he had followed three years ago to the lair of the monster Aragog .Hermione had not been with him on that occasion he doubted she had any idea what danger lay at the end of it .Er are you sure this is the right way ?he asked her pointedly .Oh yes she said in a steely voice crashing through the undergrowth with what he thought was a wholly unnecessary amount of noise .Behind them Umbridge tripped over a fallen sapling .Neither of them paused to help her up again Hermione merely strode on calling loudly over her shoulder Its a bit further in !Hermione keep your voice down Harry muttered hurrying to catch up with her .Anything could be listening in here I want us heard she answered quietly as Umbridge jogged noisily after them .Youll see .They walked on for what seemed a long time until they were once again so deep into the forest that the dense tree canopy blocked out all light .Harry had the feeling he had had before in the forest one of being watched by unseen eyes .How much further ?demanded Umbridge angrily from behind him .Not far now !shouted Hermione as they emerged into a dim dank clearing .Just a little bit An arrow flew through the air and landed with a menacing thud in the tree just over her head .The air was suddenly full of the sound of hooves .Harry could feel the forest floor trembling Umbridge gave a little scream and pushed him in front of her like a shield He wrenched himself free of her and turned .Around fifty centaurs were emerging on every side their bows raised and loaded pointing at Harry Hermione and Umbridge who backed slowly into the center of the clearing Umbridge uttering odd little whimpers of terror .Harry looked sideways at Hermione .She was wearing a triumphant smile .Who are you ?said a voice .Harry looked left .The chestnutbodied centaur called Magorian was walking toward them out of the circle his bow like the others was raised .On Harrys right Umbridge was still whimpering her wand trembling violently as she pointed it at the advancing centaur .I asked you who are you human said Magorian roughly .I am Dolores Umbridge !said Umbridge in a high pitched terrified voice .Senior Undersecretary to the Minister of Magic and Headmistress and High Inquisitor of Hogwarts !You are from the Ministry of Magic ?said Magorian as many of the centaurs in the surrounding circle shifted restlessly .Thats right !said Umbridge in an even higher voice .So be very careful !By the laws laid down by the Department for the Regulation and Control of Magical Creatures any attack by halfbreeds such as yourselves on a human What did you call us ?shouted a wildlooking black centaur whom Harry recognized as Bane .There was a great deal of angry muttering and tightening of bowstrings around them .Dont call them that !Hermione said furiously but Umbridge did not appear to have heard her .Still pointing her shaking wand at Magorian she continued Law Fifteen B states clearly that ‘Any attack by a magical creature who is deemed to have nearhuman intelligence and therefore considered responsible for its actions ‘Nearhuman intelligence ?repeated Magorian as Bane and several others roared with rage and pawed the ground .We consider that a great insult human !Our intelligence thankfully far outstrips your own What are you doing in our forest ?bellowed the hardfaced gray centaur whom Harry and Hermione had seen on their last trip into the forest .Why are you here ?Your forest ?said Umbridge shaking now not only with fright but also it seemed with indignation .I would remind you that you live here only because the Ministry of Magic permits you certain areas of land An arrow flew so close to her head that it caught at her mousy hair in passing .She let out an earsplitting scream and threw her hands over her head while some of the centaurs bellowed their approval and others laughed raucously .The sound of their wild neighing laughter echoing around the dimly lit clearing and the sight of their pawing hooves was extremely unnerving .Whose forest is it now human ?bellowed Bane .Filthy halfbreeds !she screamed her hands still tight over her head .Beasts !Uncontrolled animals !Be quiet !shouted Hermione but it was too late Umbridge pointed her wand at Magorian and screamed Incarcerousl Ropes flew out of midair like thick snakes wrapping themselves tightly around the centaurs torso and trapping his arms .He gave a cry of rage and reared onto his hind legs attempting to free himself while the other centaurs charged .Harry grabbed Hermione and pulled her to the ground .Facedown on the forest floor he knew a moment of terror as hooves thundered around him but the centaurs leapt over and around them bellowing and screaming with rage .Nooooo !he heard Umbridge shriek .Noooooo .I am Senior Undersecretary .you cannot .unhand me you animals .nooooo !He saw a flash of red light and knew that she had attempted to Stun one of them then she screamed very loudly .Lifting his head a few inches Harry saw that Umbridge had been seized from behind by Bane and lifted high into the air wriggling and yelling with fright .Her wand fell from her hand to the ground and Harrys heart leapt if he could just reach it But as he stretched out a hand toward it a centaurs hoof descended upon the wand and it broke cleanly in half .Now !roared a voice in Harrys ear and a thick hairy arm descended from thin air and dragged him upright Hermione too had been pulled to her feet .Over the plunging manycolored backs and heads of the centaurs Harry saw Umbridge being borne away through the trees by Bane still screaming nonstop her voice grew fainter and fainter until they could no longer hear it over the trampling of hooves surrounding them .And these ?said the hardfaced gray centaur holding Hermione .They are young said a slow doleful voice from behind Harry .We do not attack foals .They brought her here Ronan replied the centaur who had such a firm grip on Harry .And they are not so young .He is nearing manhood this one .He shook Harry by the neck of his robes .Please said Hermione breathlessly please dont attack us we dont think like her we arent Ministry of Magic employees !We only came in here because we hoped youd drive her off for us Harry knew at once from the look on the face of the gray centaur holding Hermione that she had made a terrible mistake in saying this .The gray centaur threw back his head his back legs stamping furiously and bellowed You see Ronan ?They already have the arrogance of their kind !So we were to do your dirty work were we human girl ?We were to act as your servants drive away your enemies like obedient hounds ?No !said Hermione in a horrorstruck squeak .Please I didnt mean that !I just hoped youd be able to to help us But she seemed to be going from bad to worse .We do not help humans !snarled the centaur holding Harry tightening his grip and rearing a little at the same time so that Harrys feet left the ground momentarily .We are a race apart and proud to be so .We will not permit you to walk from here boasting that we did your bidding !Were not going to say anything like that !Harry shouted .We know you didnt do anything because we wanted you to But nobody seemed to be listening to him .A bearded centaur toward the back of the crowd shouted They came here unasked they must pay the consequences !A roar of approval met these words and a duncolored centaur shouted They can join the woman !You said you didnt hurt the innocent !shouted Hermione real tears sliding down her face now .We havent done anything to hurt you we havent used wands or threats we just want to go back to school please let us go back We are not all like the traitor Firenze human girl !shouted the gray centaur to more neighing roars of approval from his fellows .Perhaps you thought us pretty talking horses ?We are an ancient people who will not stand wizard invasions and insults !We do not recognize your laws we do not acknowledge your superiority we are But they did not hear what else centaurs were for at that moment there came a crashing noise on the edge of the clearing so loud that all of them Harry Hermione and the fifty or so centaurs filling the clearing looked around .Harrys centaur let him fall to the ground again as his hands flew to his bow and quiver of arrows Hermione had been dropped too and Harry hurried toward her as two thick tree trunks parted ominously and the monstrous form of Grawp the giant appeared in the gap .The centaurs nearest him backed into those behind .The clearing was now a forest of bows and arrows waiting to be fired all pointing upward at the enormous grayish face now looming over them from just beneath the thick canopy of branches .Grawp s lopsided mouth was gaping stupidly .They could see his bricklike yellow teeth glimmering in the halflight his dull sludgecolored eyes narrowed as he squinted down at the creatures at his feet .Broken ropes trailed from both ankles .He opened his mouth even wider .Hagger .Harry did not know what hagger meant or what language it was from nor did he much care he was watching Grawp s feet which were almost as long as Harrys whole body .Hermione gripped his arm tightly the centaurs were quite silent staring up at the giant whose huge round head moved from side to side as he continued to peer amongst them as though looking for something he had dropped .Haggeii he said again more insistently .Get away from here giant !called Magorian .You are not welcome among us !These words seemed to make no impression whatsoever on Grawp .He stooped a little the centaurs arms tensed on their bows and then bellowed HAGGER !A few of the centaurs looked worried now .Hermione however gave a gasp .Harry !she whispered .I think hes trying to say ‘Hagrid !At this precise moment Grawp caught sight of them the only two humans in a sea of centaurs .He lowered his head another foot or so staring intently at them .Harry could feel Hermione shaking as Grawp opened his mouth wide again and said in a deep rumbling voice Hermy .Goodness said Hermione gripping Harrys arm so tightly it was growing numb and looking as though she was about to faint he he remembered !HERMY !roared Grawp .WHERE HAGGER ?I dont know !squealed Hermione terrified .Im sorry Grawp I dont know !GRAWP WANT HAGGER !One of the giants massive hands swooped down upon them Hermione let out a real scream ran a few steps backward and fell over .Wandless Harry braced himself to punch kick bite or whatever else it took as the hand flew toward him and knocked a snow white centaur off his legs .It was what the centaurs had been waiting for Grawps outstretched fingers were a foot from Harry when fifty arrows went soaring through the air at the giant peppering his enormous face causing him to howl with pain and rage and straighten up again rubbing his face with his enormous hands breaking off the arrow shafts but forcing the heads in still deeper .He yelled and stamped his enormous feet and the centaurs scattered out of the way .Pebblesized droplets of Grawps blood showered Harry as he pulled Hermione to her feet and the pair of them ran as fast as they could for the shelter of the trees .Once there they looked back Grawp was snatching blindly at the centaurs as blood ran all down his face they were retreating in disorder galloping away through the trees on the other side of the clearing .As Harry and Hermione watched Grawp gave another roar of fury and plunged after them smashing more trees aside as he went .Oh no said Hermione quaking so badly that her knees gave way .Oh that was horrible .And he might kill them all .Im not that fussed to be honest said Harry bitterly .The sounds of the galloping centaurs and the blundering giant were growing fainter and fainter .As Harry listened to them his scar gave another great throb and a wave of terror swept over him .They had wasted so much time they were even further from rescuing Sirius than they had been when he had had the vision .Not only had Harry managed to lose his wand but they were stuck in the middle of the Forbidden Forest with no means of transport whatsoever .Smart plan he spat at Hermione keen to release some of his fury .Really smart plan .Where do we go from here ?We need to get back up to the castle said Hermione faintly .By the time weve done that Sirius 11 probably be dead !said Harry kicking a nearby tree in temper there was a highpitched chattering overhead and he looked up to see an angry bowtruckle flexing its long twiglike fingers at him .Well we cant do anything without wands said Hermione hopelessly dragging herself up again .Anyway Harry how exactly were you planning to get all the way to London ?Yeah we were just wondering that said a familiar voice from behind her .Harry and Hermione moved instinctively together peering through the trees as Ron came into sight with Ginny Neville and Luna hurrying along behind him .All of them looked a little the worse for wear there were several long scratches running the length of Ginnys cheek a large purple lump was swelling above Nevilles right eye Rons lip was bleeding worse than ever but all were looking rather pleased with themselves .So said Ron pushing aside a lowhanging branch and holding out Harrys wand had any ideas ?How did you get away ?asked Harry in amazement taking his wand from Ron .Couple of Stunners a Disarming Charm Neville brought off a really nice little Impediment Jinx said Ron airily now handing back Hermiones wand too .But Ginny was best she got Malfoy BatBogey Hex it was superb his whole face was covered in the great flapping things .Anyway we saw you heading into the forest out of the window and followed .Whatve you done with Umbridge ?She got carried away said Harry .By a herd of centaurs .And they left you behind ?asked Ginny looking astonished .No they got chased off by Grawp said Harry .Whos Grawp ?Luna asked interestedly .Hagrids little brother said Ron promptly .Anyway never mind that now .Harry what did you find out in the fire ?Has YouKnowWho got Sirius or ?Yes said Harry as his scar gave another painful prickle and Im sure Sirius is still alive but I cant see how were going to get there to help him .They all fell silent looking rather scared .The problem facing them seemed insurmountable .Well well have to fly wont we ?said Luna in the closest thing to a matteroffact voice Harry had ever heard her use .Okay said Harry irritably rounding on her first of all we arent doing anything if youre including yourself in that and second of all Rons the only one with a broomstick that isnt being guarded by a security troll so Ive got a broom !said Ginny .Yeah but youre not coming said Ron angrily .Excuse me but I care what happens to Sirius as much as you do !said Ginny her jaw set so that her resemblance to Fred and George was suddenly striking .Youre too Harry began .Im three years older than you were when you fought YouKnowWho over the Sorcerers Stone she said fiercely and its because of me Malfoys stuck back in Umbridges office with giant flying bogeys attacking him Yeah but We were all in the D .A .together said Neville quietly .It was all supposed to be about fighting YouKnow Who wasnt it ?And this is the first chance weve had to do something real or was that all just a game or something ?No of course it wasnt said Harry impatiently .Then we should come too said Neville simply .We want to help .Thats right said Luna smiling happily .Harrys eyes met Rons .He knew that Ron was thinking exactly what he was If he could have chosen any members of the D .A .in addition to himself Ron and Hermione to join him in the attempt to rescue Sirius he would not have picked Ginny Neville or Luna .Well it doesnt matter anyway said Harry frustratedly because we still dont know how to get there I thought wed settled that ?said Luna maddeningly .Were flying !Look said Ron barely containing his anger you might be able to fly without a broomstick but the rest of us cant sprout wings whenever we There are other ways of flying than with broomsticks said Luna serenely .I spose were going to ride on the back of the Kacky Snorgle or whatever it is ?Ron demanded .The CrumpleHorned Snorkack cant fly said Luna in a dignified voice but they can and Hagrid says theyre very good at finding places their riders are looking for .Harry whirled around .Standing between two trees their white eyes gleaming eerily were two thestrals watching the whispered conversation as though they understood every word .Yes !he whispered moving toward them .They tossed their reptilian heads throwing back long black manes and Harry stretched out his hand eagerly and patted the nearest ones shining neck .How could he ever have thought them ugly ?Is it those mad horse things ?said Ron uncertainly staring at a point slightly to the left of the thestral Harry was patting .Those ones you cant see unless youve watched someone snuff it ?Yeah said Harry .How many ?Just two .Well we need three said Hermione who was still looking a little shaken but determined just the same .Four Hermione said Ginny scowling .I think there are six of us actually said Luna calmly counting .Dont be stupid we cant all go !said Harry angrily .Look you three he pointed at Neville Ginny and Luna youre not involved in this youre not They burst into more protests .His scar gave another more painful twinge .Every moment they delayed was precious he did not have time to argue .Okay fine its your choice he said curtly .But unless we can find more thestrals youre not going to be able Oh more of them will come said Ginny confidently who like Ron was squinting in quite the wrong direction apparently under the impression that she was looking at the horses .What makes you think that ?Because in case you hadnt noticed you and Hermione are both covered in blood she said coolly and we know Hagrid lures thestrals with raw meat so thats probably why these two turned up in the first place .Harry felt a soft tug on his robes at that moment and looked down to see the closest thestral licking his sleeve which was damp with Grawps blood .Okay then he said a bright idea occurring .Ron and I will take these two and go ahead and Hermione can stay here with you three and shell attract more thestrals Im not staying behind !said Hermione furiously .Theres no need said Luna smiling .Look here come more now .You two must really smell .Harry turned .No fewer than six or seven thestrals were picking their way through the trees now their great leathery wings folded tight to their bodies their eyes gleaming through the darkness .He had no excuse now .All right he said angrily pick one and get on then .THE DEPARTMENT OF MYSTERIES Harry wound his hand tightly into the mane of the nearest thestral placed a foot on a stump nearby and scrambled clumsily onto the horses silken back .It did not object but twisted its head around fangs bared and attempted to continue its eager licking of his robes .He found there was a way of lodging his knees behind the wing joints that made him feel more secure and looked around at the others .Neville had heaved himself over the back of the next thestral and was now attempting to swing one short leg over the creatures back .Luna was already in place sitting sidesaddle and adjusting her robes as though she did this every day .Ron Hermione and Ginny however were still standing motionless on the spot openmouthed and staring .What ?he said .Howre we supposed to get on ?said Ron faintly .When we cant see the things ?Oh its easy said Luna sliding obligingly from her thestral and marching over to him Hermione and Ginny .Come here .She pulled them over to the other thestrals standing around and one by one managed to help them onto the backs of their mounts .All three looked extremely nervous as she wound their hands into the horses manes and told them to grip tightly before getting back onto her own steed .This is mad Ron said faintly moving his free hand gingerly up and down his horses neck .Mad .if I could just see it Youd better hope it stays invisible said Harry darkly .We all ready then ?They all nodded and he saw five pairs of knees tighten beneath their robes .Okay .He looked down at the back of his thestrals glossy black head and swallowed .Ministry of Magic visitors entrance London then he said uncertainly .Er .if you know .where to go .For a moment his thestral did nothing at all .Then with a sweeping movement that nearly unseated him the wings on either side extended the horse crouched slowly and then rocketed upward so fast and so steeply that Harry had to clench his arms and legs tightly around the horse to avoid sliding backward over its bony rump .He closed his eyes and put his face down into the horses silky mane as they burst through the topmost branches of the trees and soared out into a bloodred sunset .Harry did not think he had ever moved so fast The thestral streaked over the castle its wide wings hardly beating .The cooling air was slapping Harrys face eyes screwed up against the rushing wind he looked around and saw his five fellows soaring along behind him each of them bent as low as possible into the neck of their thestral to protect themselves from its slipstream .They were over the Hogwarts grounds they had passed Hogsmeade .Harry could see mountains and gullies below them .In the falling darkness Harry saw small collections of lights as they passed over more villages then a winding road on which a single car was beetling its way home through the hills .This is bizarre !Harry heard Ron yell from somewhere behind him and he imagined how it must feel to be speeding along at this height with no visible means of support .Twilight fell The sky turned to a light dusky purple littered with tiny silver stars and soon it was only the lights of Muggle towns that gave them any clue of how far from the ground they were or how very fast they were traveling .Harrys arms were wrapped tightly around his horses neck as he willed it to go even faster .How much time had elapsed since he had seen Sirius lying on the Department of Mysteries floor ?How much longer would he be able to resist Voldemort ?All Harry knew for sure was that Sirius had neither done as Voldemort wanted nor died for he was convinced that either outcome would cause him to feel Voldemorts jubilation or fury course through his own body making his scar sear as painfully as it had on the night Mr Weasley was attacked .On they flew through the gathering darkness Harrys face felt stiff and cold his legs numb from gripping the thestrals sides so tightly but he did not dare shift positions lest he slip .He was deaf from the thundering in his ears and his mouth was dry and frozen from the rush of cold night air .He had lost all sense of how far they had come all his faith was in the beast below him still streaking purposefully through the night barely flapping its wings as it sped ever onward .If they were too late .Hes still alive hes still fighting I can feel it .If Voldemort decided Sirius was not going to crack .Id know .Harrys stomach gave a jolt .The thestrals head was suddenly pointing toward the ground and he had actually slid forward a few inches along its neck .They were descending at last .He heard one of the girls shriek behind him and twisted around dangerously but could see no sign of a falling body .Presumably they had received a shock from the change of position just as he had .And now bright orange lights were growing larger and rounder on all sides .They could see the tops of buildings streams of headlights like luminous insect eyes squares of pale yellow that were windows .Quite suddenly it seemed they were hurtling toward the pavement .Harry gripped the thestral with every last ounce of his strength braced for a sudden impact but the horse touched the dark ground as lightly as a shadow and Harry slid from his back looking around at the street where the overflowing dumpster still stood a short way from the vandalized telephone box both drained of color in the flat orange glare of the streetlights .Ron landed a short way away and toppled immediately off his thestral onto the pavement .Never again he said struggling to his feet .He made as though to stride away from his thestral but unable to see it collided with its hindquarters and almost fell over again .Never ever again .that was the worst Hermione and Ginny touched down on either side of him .Both slid off their mounts a little more gracefully than Ron though with similar expressions of relief at being back on firm ground .Neville jumped down shaking but Luna dismounted smoothly .Where do we go from here then ?she asked Harry in a politely interested voice as though this was all a rather interesting day trip .Over here he said .He gave his thestral a quick grateful pat then led the way quickly to the battered telephone box and opened the door .Come on he urged the others as they hesitated .Ron and Ginny marched in obediently Hermione Neville and Luna squashed themselves in after them Harry took one glance back at the thestrals now foraging for scraps of rotten food inside the dumpster then forced himself into the box after Luna .Whoevers nearest the receiver dial six two four four two !he said .Ron did it his arm bent bizarrely to reach the dial .As it whirred back into place the cool female voice sounded inside the box Welcome to the Ministry of Magic .Please state your name and business .Harry Potter Ron Weasley Hermione Granger Harry said very quickly Ginny Weasley Neville Longbottom Luna Lovegood .Were here to save someone unless your Ministry can do it first !Thank you said the cool female voice .Visitors please take the badges and attach them to the front of your robes .Half a dozen badges slid out of the metal chute where returned coins usually appeared .Hermione scooped them up and handed them mutely to Harry over Ginny s head he glanced at the topmost one .HARRY POTTER RESCUE MISSION Visitor to the Ministry you are required to submit to a search and present your wand for registration at the security desk which is located at the far end of the Atrium .Fine !Harry said loudly as his scar gave another throb .Now can we move ?The floor of the telephone box shuddered and the pavement rose up past the glass windows of the telephone box .The scavenging thestrals were sliding out of sight blackness closed over their heads and with a dull grinding noise they sank down into the depths of the Ministry of Magic .A chink of soft golden light hit their feet and widening rose up their bodies .Harry bent his knees and held his wand as ready as he could in such cramped conditions peering through the glass to see whether anybody was waiting for them in the Atrium but it seemed to be completely empty .The light was dimmer than it had been by day .There were no fires burning under the mantelpieces set into the walls but he saw as the lift slid smoothly to a halt that golden symbols continued to twist sinuously in the dark blue ceiling .The Ministry of Magic wishes you a pleasant evening said the womans voice .The door of the telephone box burst open Harry toppled out of it followed by Neville and Luna .The only sound in the Atrium was the steady rush of water from the golden fountain where jets from the wands of the witch and wizard the point of the centaurs arrow the tip of the goblins hat and the houseelfs ears continued to gush into the surrounding pool .Come on said Harry quietly and the six of them sprinted off down the hall Harry in the lead past the fountain toward the desk where the security man who had weighed Harrys wand had sat and which was now deserted .Harry felt sure that there ought to be a security person there sure that their absence was an ominous sign and his feeling of foreboding increased as they passed through the golden gates to the lifts .He pressed the nearest down button and a lift clattered into sight almost immediately the golden grilles slid apart with a great echoing clanking and they dashed inside .Harry stabbed the number nine button the grilles closed with a bang and the lift began to descend jangling and rattling .Harry had not realized how noisy the lifts were on the day that he had come with Mr Weasley he was sure that the din would raise every security person within the building yet when the lift halted the cool female voice said Department of Mysteries and the grilles slid open again they stepped out into the corridor where nothing was moving but the nearest torches flickering in the rush of air from the lift .Harry turned toward the plain black door .After months and months of dreaming about it he was here at last .Lets go he whispered and he led the way down the corridor Luna right behind him gazing around with her mouth slightly open .Okay listen said Harry stopping again within six feet of the door .Maybe .maybe a couple of people should stay here as a as a lookout and And howre we going to let you know somethings coming ?asked Ginny her eyebrows raised .You could be miles away .Were coming with you Harry said Neville .Lets get on with it said Ron firmly .Harry still did not want to take them all with him but it seemed he had no choice .He turned to face the door and walked forward .Just as it had in his dream it swung open and he marched forward leading the others over the threshold .They were standing in a large circular room .Everything in here was black including the floor and ceiling identical unmarked handleless black doors were set at intervals all around the black walls interspersed with branches of candles whose flames burned blue their cool shimmering light reflected in the shining marble floor so that it looked as though there was dark water underfoot .Someone shut the door Harry muttered .He regretted giving this order the moment Neville had obeyed it .Without the long chink of light from the torchlit corridor behind them the place became so dark that for a moment the only things they could see were the bunches of shivering blue flames on the walls and their ghostly reflections in the floor below .In his dream Harry had always walked purposefully across this room to the door immediately opposite the entrance and walked on .But there were around a dozen doors here .Just as he was gazing ahead at the doors opposite him trying to decide which was the right one there was a great rumbling noise and the candles began to move sideways .The circular wall was rotating .Hermione grabbed Harrys arm as though frightened the floor might move too but it did not .For a few seconds the blue flames around them were blurred to resemble neon lines as the wall sped around and then quite as suddenly as it had started the rumbling stopped and everything became stationary once again .Harrys eyes had blue streaks burned into them it was all he could see .What was that about ?whispered Ron fearfully .I think it was to stop us knowing which door we came in from said Ginny in a hushed voice .Harry realized at once that she was right He could no sooner have picked the exit from the other doors than located an ant upon the jetblack floor .Meanwhile the door through which they needed to proceed could be any of the dozen surrounding them .Howre we going to get back out ?said Neville uncomfortably .Well that doesnt matter now said Harry forcefully blinking to try and erase the blue lines from his vision and clutching his wand tighter than ever .We wont need to get out till weve found Sirius Dont go calling for him though !Hermione said urgently but Harry had never needed her advice less his instinct was to keep as quiet as possible for the time being .Where do we go then Harry ?Ron asked .I dont Harry began .He swallowed .In the dreams I went through the door at the end of the corridor from the lifts into a dark room thats this one and then I went through another door into a room that kind of .glitters .We should try a few doors he said hastily .Ill know the right way when I see it .Cmon .He marched straight at the door now facing him the others following close behind him set his left hand against its cool shining surface raised his wand ready to strike the moment it opened and pushed .It swung open easily .After the darkness of the first room the lamps hanging low on golden chains from this ceiling gave the impression that this long rectangular room was much brighter though there were no glittering shimmering lights such as Harry had seen in his dreams .The place was quite empty except for a few desks and in the very middle of the room an enormous glass tank of deepgreen water big enough for all of them to swim in which contained a number of pearly white objects that were drifting around lazily in the liquid .Whatre those things ?whispered Ron .Dunno said Harry .Are they fish ?breathed Ginny .Aquavirius maggots !said Luna excitedly .Dad said the Ministry were breeding No said Hermione .She sounded odd .She moved forward to look through the side of the tank .Theyre brains .Brains ?Yes .I wonder what theyre doing with them ?Harry joined her at the tank .Sure enough there could be no mistake now that he saw them at close quarters .Glimmering eerily they drifted in and out of sight in the depths of the green water looking something like slimy cauliflowers .Lets get out of here said Harry .This isnt right we need to try another door There are doors here too said Ron pointing around the walls .Harrys heart sank how big was this place ?In my dream I went through that dark room into the second one he said .I think we should go back and try from there .So they hurried back into the dark circular room the ghostly shapes of the brains were now swimming before Harrys eyes instead of the blue candle flames .Wait !said Hermione sharply as Luna made to close the door of the brain room behind them .FlagrateV She drew with her wand in midair and a fiery X appeared on the door .No sooner had the door clicked shut behind them than there was a great rumbling and once again the wall began to revolve very fast but now there was a great redgold blur in amongst the faint blue and when all became still again the fiery cross still burned showing the door they had already tried .Good thinking said Harry .Okay lets try this one Again he strode directly at the door facing him and pushed it open his wand still raised the others at his heels .This room was larger than the last dimly lit and rectangular and the center of it was sunken forming a great stone pit some twenty feet below them .They were standing on the topmost tier of what seemed to be stone benches running all around the room and descending in steep steps like an amphitheater or the courtroom in which Harry had been tried by the Wizengamot .Instead of a chained chair however there was a raised stone dais in the center of the lowered floor and upon this dais stood a stone archway that looked so ancient cracked and crumbling that Harry was amazed the thing was still standing .Unsupported by any surrounding wall the archway was hung with a tattered black curtain or veil which despite the complete stillness of the cold surrounding air was fluttering very slightly as though it had just been touched .Whos there ?said Harry jumping down onto the bench below .There was no answering voice but the veil continued to flutter and sway .Careful !whispered Hermione .Harry scrambled down the benches one by one until he reached the stone bottom of the sunken pit .His footsteps echoed loudly as he walked slowly toward the dais .The pointed archway looked much taller from where he stood now than when he had been looking down on it from above .Still the veil swayed gently as though somebody had just passed through it .Sirius ?Harry spoke again but much more quietly now that he was nearer .He had the strangest feeling that there was someone standing right behind the veil on the other side of the archway .Gripping his wand very tightly he edged around the dais but there was nobody there .All that could be seen was the other side of the tattered black veil .Lets go called Hermione from halfway up the stone steps .This isnt right Harry come on lets go .She sounded scared much more scared than she had in the room where the brains swam yet Harry thought the archway had a kind of beauty about it old though it was .The gently rippling veil intrigued him he felt a very strong inclination to climb up on the dais and walk through it .Harry lets go okay ?said Hermione more forcefully .Okay he said but he did not move .He had just heard something .There were faint whispering murmuring noises coming from the other side of the veil .What are you saying ?he said very loudly so that the words echoed all around the surrounding stone benches .Nobodys talking Harry !said Hermione now moving over to him .Someones whispering behind there he said moving out of her reach and continuing to frown at the veil .Is that you Ron ?Im here mate said Ron appearing around the side of the archway .Cant anyone else hear it ?Harry demanded for the whispering and murmuring was becoming louder without really meaning to put it there he found his foot was on the dais .I can hear them too breathed Luna joining them around the side of the archway and gazing at the swaying veil .There are people in there What do you mean ‘in there ?demanded Hermione jumping down from the bottom step and sounding much angrier than the occasion warranted .There isnt any ‘in there its just an archway theres no room for anybody to be there Harry stop it come away She grabbed his arm and pulled but he resisted .Harry we are supposed to be here for Sirius !she said in a highpitched strained voice .Sirius Harry repeated still gazing mesmerized at the continuously swaying veil .Yeah .And then something slid back into place in his brain Sirius captured bound and tortured and he was staring at this archway .He took several paces back from the dais and wrenched his eyes from the veil .Lets go he said .Thats what Ive been trying to well come on then !said Hermione and she led the way back around the dais .On the other side Ginny and Neville were staring apparently entranced at the veil too .Without speaking Hermione took hold of Ginnys arm Ron Nevilles and they marched them firmly back to the lowest stone bench and clambered all the way back up to the door .What dyou reckon that arch was ?Harry asked Hermione as they regained the dark circular room .I dont know but whatever it was it was dangerous she said firmly again inscribing a fiery cross upon the door .Once more the wall spun and became still again .Harry approached a door at random and pushed .It did not move .Whats wrong ?said Hermione .Its .locked .said Harry throwing his weight at the door but it did not budge .This is it then isnt it ?said Ron excitedly joining Harry in the attempt to force the door open .Bound to be !Get out of the way !said Hermione sharply .She pointed her wand at the place where a lock would have been on an ordinary door and said Alohomora Nothing happened .Siriuss knife !said Harry and he pulled it out from inside his robes and slid it into the crack between the door and the wall .The others all watched eagerly as he ran it from top to bottom withdrew it and then flung his shoulder again at the door .It remained as firmly shut as ever .What was more when Harry looked down at the knife he saw that the blade had melted .Right were leaving that room said Hermione decisively .But what if thats the one ?said Ron staring at it with a mixture of apprehension and longing .It cant be Harry could get through all the doors in his dream said Hermione marking the door with another fiery cross as Harry replaced the nowuseless handle of Siriuss knife in his pocket .You know what could be in there ?said Luna eagerly as the wall started to spin yet again .Something blibbering no doubt said Hermione under her breath and Neville gave a nervous little laugh .The wall slid back to a halt and Harry with a feeling of increasing desperation pushed the next door open .This is it !He knew it at once by the beautiful dancing diamondsparkling light .As Harrys eyes became more accustomed to the brilliant glare he saw clocks gleaming from every surface large and small grandfather and carriage hanging in spaces between the bookcases or standing on desks ranging the length of the room so that a busy relentless ticking filled the place like thousands of minuscule marching footsteps .The source of the dancing diamondbright light was a towering crystal bell jar that stood at the far end of the room .This way !Harrys heart was pumping frantically now that he knew they were on the right track .He led the way forward down the narrow space between the lines of the desks heading as he had done in his dream for the source of the light the crystal bell jar quite as tall as he was that stood on a desk and appeared to be full of a billowing glittering wind .Oh look .said Ginny as they drew nearer pointing at the very heart of the bell jar .Drifting along in the sparkling current inside was a tiny jewelbright egg .As it rose in the jar it cracked open and a hummingbird emerged which was carried to the very top of the jar but as it fell on the draft its feathers became bedraggled and damp again and by the time it had been borne back to the bottom of the jar it had been enclosed once more in its egg .Keep going !said Harry sharply because Ginny showed signs of wanting to stop and watch the eggs progress back into a bird .You dawdled enough by that old arch !she said crossly but followed him past the bell jar to the only door behind it .This is it Harry said again and his heart was now pumping so hard and fast he felt it must interfere with his speech .Its through here He glanced around at them all .They had their wands out and looked suddenly serious and anxious .He looked back at the door and pushed .It swung open .They were there they had found the place high as a church and full of nothing but towering shelves covered in small dusty glass orbs .They glimmered dully in the light issuing from more candle brackets set at intervals along the shelves .Like those in the circular room behind them their flames were burning blue .The room was very cold .Harry edged forward and peered down one of the shadowy aisles between two rows of shelves .He could not hear anything nor see the slightest sign of movement .You said it was row ninetyseven whispered Hermione .Yeah breathed Harry looking up at the end of the closest row .Beneath the branch of blueglowing candles protruding from it glimmered the silver figure 53 .We need to go right I think whispered Hermione squinting to the next row .Yes .thats fiftyfour .Keep your wands out Harry said softly .They crept forward staring behind them as they went on down the long alleys of shelves the farther ends of which were in near total darkness .Tiny yellowing labels had been stuck beneath each glass orb on the shelf .Some of them had a weird liquid glow others were as dull and dark within as blown lightbulbs .They passed row eightyfour .eightyfive .Harry was listening hard for the slightest sound of movement but Sirius might be gagged now or else unconscious .or said an unbidden voice inside his head he might already be dead .Id have felt it he told himself his heart now hammering against his Adams apple .Id already know .Ninetyseven !whispered Hermione .They stood grouped around the end of the row gazing down the alley beside it .There was nobody there .Hes right down at the end said Harry whose mouth had become slightly dry .You cant see properly from here .And he led them forward between the towering rows of glass balls some of which glowed softly as they passed .He should be near here whispered Harry convinced that every step was going to bring the ragged form of Sirius into view upon the darkened floor .Anywhere here .really close .Harry ?said Hermione tentatively but he did not want to respond .His mouth was very dry now .Somewhere about .here .he said .They had reached the end of the row and emerged into more dim candlelight .There was nobody there at all .All was echoing dusty silence .He might be .Harry whispered hoarsely peering down the alley next door .Or maybe .He hurried to look down the one beyond that .Harry ?said Hermione again .What ?he snarled .I .I dont think Sirius is here .Nobody spoke .Harry did not want to look at any of them .He felt sick .He did not understand why Sirius was not here .He had to be here .This was where he Harry had seen him .He ran up the space at the end of the rows staring down them .Empty aisle after empty aisle flickered past .He ran the other way back past his staring companions .There was no sign of Sirius anywhere nor any hint of a struggle .Harry ?Ron called .What ?He did not want to hear what Ron had to say did not want to hear Ron tell him he had been stupid or suggest that they ought to go back to Hogwarts .But the heat was rising in his face and he felt as though he would like to skulk down here in the darkness for a long while before facing the brightness of the Atrium above and the others accusing stares .Have you seen this ?said Ron .What ?said Harry but eagerly this time it had to be a sign that Sirius had been there a clue he strode back to where they were all standing a little way down row ninetyseven but found nothing except Ron staring at one of the dusty glass spheres on the shelves .What ?Harry repeated glumly .Its its got your name on said Ron .Harry moved a little closer .Ron was pointing at one of the small glass spheres that glowed with a dull inner light though it was very dusty and appeared not to have been touched for many years .My name ?said Harry blankly .He stepped forward .Not as tall as Ron he had to crane his neck to read the yellowish label affixed to the shelf right beneath the dusty glass ball .In spidery writing was written a date of some sixteen years previously and below that S .P .T .to A .P .W .B .D .Dark Lord and ?Harry Potter Harry stared at it .What is it ?Ron asked sounding unnerved .Whats your name doing down here ?He glanced along at the other labels on that stretch of shelf .‘Tm not here he said sounding perplexed .None of the rest of us are here .Harry I dont think you should touch it said Hermione sharply as he stretched out his hand .Why not ?he said .Its something to do with me isnt it ?Dont Harry said Neville suddenly .Harry looked around at him .Nevilles round face was shining slightly with sweat .He looked as though he could not take much more suspense .Its got my name on said Harry .And feeling slightly reckless he closed his fingers around the dusty balls surface .He had expected it to feel cold but it did not .On the contrary it felt as though it had been lying in the sun for hours as though the glow of light within was warming it .Expecting even hoping that something dramatic was going to happen something exciting that might make their long and dangerous journey worthwhile after all he lifted the glass ball down from its shelf and stared at it .Nothing whatsoever happened .The others moved in closer around Harry gazing at the orb as he brushed it free of the clogging dust .And then from right behind them a drawling voice said Very good Potter .Now turn around nice and slowly and give that to me .35 BEYOND THE VEIL Black shapes were emerging out of thin air all around them blocking their way left and right eyes glinted through slits in hoods a dozen lit wand tips were pointing directly at their hearts .Ginny gave a gasp of horror .To me Potter repeated the drawling voice of Lucius Malfoy as he held out his hand palm up .Harrys insides plummeted sickeningly .They were trapped and outnumbered two to one .To me said Malfoy yet again .Wheres Sirius ?Harry said .Several of the Death Eaters laughed .A harsh female voice from the midst of the shadowy figures to Harrys left said triumphantly The Dark Lord always knows !Always echoed Malfoy softly .Now give me the prophecy Potter .I want to know where Sirius is !I want to know where Sirius is !mimicked the woman to his left .She and her fellow Death Eaters had closed in so that they were mere feet away from Harry and the others the light from their wands dazzling Harrys eyes .Youve got him said Harry ignoring the rising panic in his chest the dread he had been fighting since they had first entered the ninetyseventh row .Hes here .I know he is .The little baby woke up fwightened and fort what it dweamed was twoo said the woman in a horrible mockbaby voice .Harry felt Ron stir beside him .Dont do anything he muttered .Not yet The woman who had mimicked him let out a raucous scream of laughter .You hear him ?You hear him ?Giving instructions to the other children as though he thinks of fighting us !Oh you dont know Potter as I do Bellatrix said Malfoy softly .He has a great weakness for heroics the Dark Lord understands this about him .Now give me the prophecy Potter .I know Sirius is here said Harry though panic was causing his chest to constrict and he felt as though he could not breathe properly .I know youve got him !More of the Death Eaters laughed though the woman still laughed loudest of all .Its time you learned the difference between life and dreams Potter said Malfoy .Now give me the prophecy or we start using wands .Go on then said Harry raising his own wand to chest height .As he did so the five wands of Ron Hermione Neville Ginny and Luna rose on either side of him .The knot in Harrys stomach tightened .If Sirius really was not here he had led his friends to their deaths for no reason at all .But the Death Eaters did not strike .Hand over the prophecy and no one need get hurt said Malfoy coolly .It was Harrys turn to laugh .Yeah right !he said .I give you this prophecy is it ?And youll just let us skip off home will you ?The words were hardly out of his mouth when the female Death Eater shrieked Accio Proph Harry was just ready for her .He shouted Protego before she had finished her spell and though the glass sphere slipped to the tips of his fingers he managed to cling on to it .Oh he knows how to play little bitty baby Potter she said her mad eyes staring through the slits in her hood .Very well then I TOLD YOU NO !Lucius Malfoy roared at the woman .If you smash it !Harrys mind was racing .The Death Eaters wanted this dusty spunglass sphere .He had no interest in it .He just wanted to get them all out of this alive make sure that none of his friends paid a terrible price for his stupidity .The woman stepped forward away from her fellows and pulled off her hood .Azkaban had hollowed Bellatrix Lestranges face making it gaunt and skull like but it was alive with a feverish fanatical glow .You need more persuasion ?she said her chest rising and falling rapidly .Very well take the smallest one she ordered the Death Eaters beside her .Let him watch while we torture the little girl .Ill do it .Harry felt the others close in around Ginny .He stepped sideways so that he was right in front of her the prophecy held up to his chest .Youll have to smash this if you want to attack any of us he told Bellatrix .I dont think your boss will be too pleased if you come back without it will he ?She did not move she merely stared at him the tip of her tongue moistening her thin mouth .So said Harry what kind of prophecy are we talking about anyway ?He could not think what to do but to keep talking .Nevilles arm was pressed against his and he could feel him shaking .He could feel one of the others quickened breath on the back of his head .He was hoping they were all thinking hard about ways to get out of this because his mind was blank .Page lOOOHarry Potter and the Order of the Phoenix J .K .What kind of prophecy ?repeated Bellatrix the grin fading from her face .You jest Harry Potter .Nope not jesting said Harry his eyes flicking from Death Eater to Death Eater looking for a weak link a space through which they could escape .How come Voldemort wants it ?Several of the Death Eaters let out low hisses .You dare speak his name ?whispered Bellatrix .Yeah said Harry maintaining his tight grip on the glass ball expecting another attempt to bewitch it from him .Yeah IVe got no problem saying Vol Shut your mouth !Bellatrix shrieked .You dare speak his name with your unworthy lips you dare besmirch it with your halfbloods tongue you dare Did you know hes a halfblood too ?said Harry recklessly .Hermione gave a little moan in his ear .Voldemort ?Yeah his mother was a witch but his dad was a Muggle or has he been telling you lot hes pureblood ?STUPEF iVO !A jet of red light had shot from the end of Bellatrix Lestranges wand but Malfoy had deflected it .His spell caused hers to hit the shelf a foot to the left of Harry and several of the glass orbs there shattered .Two figures pearly white as ghosts fluid as smoke unfurled themselves from the fragments of broken glass upon the floor and each began to speak .Their Page lOOlHarry Potter and the Order of the Phoenix J .K .voices vied with each other so that only fragments of what they were saying could be heard over Malfoy and Bellatrixs shouts . .at the Solstice will come a new .said the figure of an old bearded man .DO NOT ATTACK !WE NEED THE PROPHECY !He dared he dares shrieked Bellatrix incoherently .He stands there filthy halfblood WAIT UNTIL WEVE GOT THE PROPHECY !bawled Malfoy . .and none will come after .said the figure of a young woman .The two figures that had burst from the shattered spheres had melted into thin air .Nothing remained of them or their erstwhile homes but fragments of glass upon the floor .They had however given Harry an idea .The problem was going to be conveying it to the others .You havent told me whats so special about this prophecy Im supposed to be handing over he said playing for time .He moved his foot slowly sideways feeling around for someone elses .Do not play games with us Potter said Malfoy .Im not playing games said Harry half his mind on the conversation half on his wandering foot .And then he found someones toes and pressed down upon them .A sharp intake of breath behind him told him they were Hermiones .What ?she whispered .Dumbledore never told you that the reason you bear that scar was hidden in the bowels of the Department of Mysteries ?said Malfoy sneeringly .I what ?said Harry and for a moment he quite forgot his plan .What about my scar ?What ?whispered Hermione more urgently behind him .Can this be ?said Malfoy sounding maliciously delighted some of the Death Eaters were laughing again and under cover of their laughter Harry hissed to Hermione moving his lips as little as possible Smash shelves Dumbledore never told you ?Malfoy repeated .Well this explains why you didnt come earlier Potter the Dark Lord wondered why when I say go you didnt come running when he showed you the place where it was hidden in your dreams .He thought natural curiosity would make you want to hear the exact wording .Did he ?said Harry .Behind him he felt rather than heard Hermione passing his message to the others and he sought to keep talking to distract the Death Eaters .So he wanted me to come and get it did he ?Why ?Why ?Malfoy sounded incredulously delighted .Because the only people who are permitted to retrieve a prophecy from the Department of Mysteries Potter are those about whom it was made as the Dark Lord discovered when he attempted to use others to steal it for him .And why did he want to steal a prophecy about me ?About both of you Potter about both of you .Havent you ever wondered why the Dark Lord tried to kill you as a baby ?Harry stared into the slitted eyeholes through which Malfoys gray eyes were gleaming .Was this prophecy the reason Harrys parents had died the reason he carried his lightningbolt scar ?Was the answer to all of this clutched in his hand ?Someone made a prophecy about Voldemort and me ?he said quietly gazing at Lucius Malfoy his fingers tightening over the warm glass sphere in his hand .It was hardly larger than a Snitch and still gritty with dust .And hes made me come and get it for him ?Why couldnt he come and get it himself ?Get it himself ?shrieked Bellatrix on a cackle of mad laughter .The Dark Lord walk into the Ministry of Magic when they are so sweetly ignoring his return ?The Dark Lord reveal himself to the Aurors when at the moment they are wasting their time on my dear cousin ?So hes got you doing his dirty work for him has he ?said Harry .Like he tried to get Sturgis to steal it and Bode ?Very good Potter very good .said Malfoy slowly .But the Dark Lord knows you are not unintell NOW !yelled Harry .Five different voices behind him bellowed REDUCTOl Five curses flew in five different directions and the shelves opposite them exploded as they hit .The towering structure swayed as a hundred glass spheres burst apart pearlywhite figures unfurled into the air and floated there their voices echoing from who knew what longdead past amid the torrent of crashing glass and splintered wood now raining down upon the floor RUN !Harry yelled and as the shelves swayed precariously and more glass spheres began to pour from above he seized a handful of Hermiones robes and dragged her forward one arm over his head as chunks of shelf and shards of glass thundered down upon them .A Death Eater lunged forward through the cloud of dust and Harry elbowed him hard in the masked face .They were all yelling there were cries of pain thunderous crashes as the shelves collapsed upon themselves weirdly echoing fragments of the Seers unleashed from their spheres Harry found the way ahead clear and saw Ron Ginny and Luna sprint past him their arms over their heads .Something heavy struck him on the side of the face but he merely ducked his head and sprinted onward a hand caught him by the shoulder he heard Hermione shout Stupefy and the hand released him at once .They were at the end of row ninetyseven Harry turned right and began to sprint in earnest .He could hear footsteps right behind him and Hermiones voice urging Neville on .The door through which they had come was ajar straight ahead Harry could see the glittering light of the bell jar he pelted through it the prophecy still clutched tight and safe in his hand waited for the others to hurtle over the threshold before slamming the door behind them Colloportus gasped Hermione and the door sealed itself with an odd squelching noise .Where where are the others ?gasped Harry .He had thought that Ron Luna and Ginny had been ahead of them that they would be waiting in this room but there was nobody there .They must have gone the wrong way !whispered Hermione terror in her face .Listen !whispered Neville .Footsteps and shouts echoed from behind the door they had just sealed .Harry put his ear close to the door to listen and heard Lucius Malfoy roar Leave Nott leave him I say the Dark Lord will not care for Notts injuries as much as losing that prophecy Jugson come back here we need to organize !Well split into pairs and search and dont forget be gentle with Potter until weve got the prophecy you can kill the others if necessary Bellatrix Rodolphus you take the left Crabbe Rabastan go right Jugson Dolohov the door straight ahead Macnair and Avery through here Rookwood over there Mulciber come with me !What do we do ?Hermione asked Harry trembling from head to foot .Well we dont stand here waiting for them to find us for a start said Harry .Lets get away from this door .They ran quietly as they could past the shimmering bell jar where the tiny egg was hatching and unhatching toward the exit into the circular hallway at the far end of the room .They were almost there when Harry heard something large and heavy collide with the door Hermione had charmed shut .Stand aside !said a rough voice .Alohomora As the door flew open Harry Hermione and Neville dived under desks .They could see the bottom of the two Death Eaters robes drawing nearer their feet moving rapidly .They mightve run straight through to the hall said the rough voice .Check under the desks said another .Harry saw the knees of the Death Eaters bend .Poking his wand out from under the desk he shouted STUPEFY A jet of red light hit the nearest Death Eater he fell backward into a grandfather clock and knocked it over .The second Death Eater however had leapt aside to avoid Harrys spell and now pointed his own wand at Hermione who had crawled out from under the desk to get a better aim .Avada Harry launched himself across the floor and grabbed the Death Eater around the knees causing him to topple and his aim to go awry .Neville overturned his desk in his anxiety to help pointing his wand wildly at the struggling pair he cried EXPELLIARMUS Both Harrys and the Death Eaters wands flew out of their hands and soared back toward the entrance to the Hall of Prophecy both scrambled to their feet and charged after them the Death Eater in front and Harry hot on his heels Neville bringing up the rear plainly horrors truck at what he had done .Get out of the way Harry !yelled Neville clearly determined to repair the damage .Harry flung himself sideways as Neville took aim again and shouted STUPEFY !The jet of red light flew right over the Death Eaters shoulder and hit a glassfronted cabinet on the wall full of variously shaped hourglasses .The cabinet fell to the floor and burst apart glass flying everywhere then sprang back up onto the wall fully mended then fell down again and shattered The Death Eater had snatched up his wand which lay on the floor beside the glittering bell jar .Harry ducked down behind another desk as the man turned his mask had slipped so that he could not see he ripped it off with his free hand and shouted STUP STUPEFY screamed Hermione who had just caught up with them .The jet of red light hit the Death Eater in the middle of his chest he froze his arm still raised his wand fell to the floor with a clatter and he collapsed backward toward the bell jar .Harry expected to hear a clunk for the man to hit solid glass and slide off the jar onto the floor but instead his head sank through the surface of the bell jar as though it was nothing but a soap bubble and he came to rest sprawled on his back on the table with his head lying inside the jar full of glittering wind .Accio Wand cried Hermione .Harrys wand flew from a dark corner into her hand and she threw it to him .Thanks he said right lets get out of Look out !said Neville horrified staring at the Death Eaters head in the bell jar .All three of them raised their wands again but none of them struck .They were all gazing openmouthed appalled at what was happening to the mans head .It was shrinking very fast growing balder and balder the black hair and stubble retracting into his skull his cheeks smooth his skull round and covered with a peachlike fuzz .A babys head now sat grotesquely on top of the thick muscled neck of the Death Eater as he struggled to get up again .But even as they watched their mouths open the head began to swell to its previous proportions again thick black hair was sprouting from the pate and chin .Its time said Hermione in an awestruck voice .Time .The Death Eater shook his ugly head again trying to clear it but before he could pull himself together again it began to shrink back to babyhood once more .There was a shout from a room nearby then a crash and a scream .RON ?Harry yelled turning quickly from the monstrous transformation taking place before them .GINNY ?LUNA ?Harry !Hermione screamed .The Death Eater had pulled his head out of the bell jar .His appearance was utterly bizarre his tiny babys head bawling loudly while his thick arms flailed dangerously in all directions narrowly missing Harry who ducked .Harry raised his wand but to his amazement Hermione seized his arm .You cant hurt a baby !There was no time to argue the point .Harry could hear more footsteps growing louder from the Hall of Prophecy they had just left and knew too late that he ought not to have shouted and given away their position .Come on !he said again and leaving the ugly baby headed Death Eater staggering behind them they took off for the door that stood ajar at the other end of the room leading back into the black hallway .They had run halfway toward it when Harry saw through the open door two more Death Eaters running across the black room toward them .Veering left he burst instead into a small dark cluttered office and slammed the door behind them .Collo began Hermione but before she could complete the spell the door had burst open again and the two Death Eaters had come hurtling inside .With a cry of triumph both yelled IMPEDIMENT A Harry Hermione and Neville were all knocked backward off their feet .Neville was thrown over the desk and disappeared from view Hermione smashed into a bookcase and was promptly deluged in a cascade of heavy books the back of Harrys head slammed into the stone wall behind him tiny lights burst in front of his eyes and for a moment he was too dizzy and bewildered to react .WEVE GOT HIM !yelled the Death Eater nearest Harry IN AN OFFICE OFF Page lOlOHarry Potter and the Order of the Phoenix J .K .Silenciol cried Hermione and the mans voice was extinguished .He continued to mouth through the hole in his mask but no sound came out he was thrust aside by his fellow .Petrificus Totalusl shouted Harry as the second Death Eater raised his wand .His arms and legs snapped together and he fell forward facedown onto the rug at Harrys feet stiff as a board and unable to move at all .Well done Ha But the Death Eater Hermione had just struck dumb made a sudden slashing movement with his wand from which flew a streak of what looked like purple flame .It passed right across Hermiones chest she gave a tiny oh !as though of surprise and then crumpled onto the floor where she lay motionless .HERMIONE !Harry fell to his knees beside her as Neville crawled rapidly toward her from under the desk his wand held up in front of him .The Death Eater kicked out hard at Nevilles head as he emerged his foot broke Nevilles wand in two and connected with his face Neville gave a howl of pain and recoiled clutching his mouth and nose .Harry twisted around his own wand held high and saw that the Death Eater had ripped off his mask and was pointing his wand directly at Harry who recognized the long pale twisted face from the Daily Prophet Antonin Dolohov the wizard who had murdered the Prewetts .Dolohov grinned .With his free hand he pointed from the prophecy still clutched in Harrys hand to himself then at Hermione .Though he could no longer Page lOUHarry Potter and the Order of the Phoenix J .K .speak his meaning could not have been clearer Give me the prophecy or you get the same as her .Like you wont kill us all the moment I hand it over anyway !said Harry .A whine of panic inside his head was preventing him thinking properly .He had one hand on Hermiones shoulder which was still warm yet did not dare look at her properly .Dont let her be dead dont let her be dead its my fault if shes dead .Whaddever you do Harry said Neville fiercely from under the desk lowering his hands to show a clearly broken nose and blood pouring down his mouth and chin dond gib it to him !Then there was a crash outside the door and Dolohov looked over his shoulder the babyheaded Death Eater had appeared in the doorway his head bawling his great fists still flailing uncontrollably at everything around him .Harry seized his chance PETRIFICUS TOT ALU S The spell hit Dolohov before he could block it and he toppled forward across his comrade both of them rigid as boards and unable to move an inch .Hermione Harry said at once shaking her as the babyheaded Death Eater blundered out of sight again .Hermione wake up .Whaddid he do to her ?said Neville crawling out from under the desk again to kneel at her other side blood streaming from his rapidly swelling nose .I dunno .Neville groped for Hermiones wrist .Dats a pulse Harry Ib sure id is .Such a powerful wave of relief swept through Harry that for a moment he felt lightheaded .Shes alive ?Yeah I dink so .There was a pause in which Harry listened hard for the sounds of more footsteps but all he could hear were the whimpers and blunderings of the baby Death Eater in the next room .Neville were not far from the exit Harry whispered .Were right next to that circular room .If we can just get you across it and find the right door before any more Death Eaters come Ill bet you can get Hermione up the corridor and into the lift .Then you could find someone .Raise the alarm .And whad are you going do do ?said Neville mopping his bleeding nose with his sleeve and frowning at Harry .Ive got to find the others said Harry .Well Ib going do find dem wid you said Neville firmly .But Hermione Well dake her wid us said Neville firmly .Ill carry her youre bedder at fighding dem dan I ab He stood up and seized one of Hermiones arms glared at Harry who hesitated then grabbed the other and helped hoist Hermiones limp form over Nevilles shoulders .Wait said Harry snatching up Hermiones wand from the floor and shoving it into Nevilles hand youd better take this .Neville kicked aside the broken fragments of his own wand as they walked slowly toward the door .My grans going do kill be said Neville thickly blood spattering from his nose as he spoke dat was by dads old wand .Harry stuck his head out of the door and looked around cautiously .The babyheaded Death Eater was screaming and banging into things toppling grandfather clocks and overturning desks bawling and confused while the glass cabinet that Harry now suspected had contained TimeTurners continued to fall shatter and repair itself on the wall behind them .Hes never going to notice us he whispered .Cmon .keep close behind me .They crept out of the office and back toward the door into the black hallway which now seemed completely deserted .They walked a few steps forward Neville tottering slightly due to Hermiones weight .The door of the Time Room swung shut behind them and the walls began to rotate once more .The recent blow on the back of Harrys head seemed to have unsteadied him he narrowed his eyes swaying slightly until the walls stopped moving again .With a sinking heart Harry saw that Hermiones fiery crosses had faded from the doors .So which way dyou reck ?But before they could make a decision as to which way to try a door to their right sprang open and three people fell out of it .Ron !croaked Harry dashing toward them .Ginny are you all ?Harry said Ron giggling weakly lurching forward seizing the front of Harrys robes and gazing at him with unfocused eyes .There you are .Ha ha ha .You look funny Harry .Youre all messed up .Rons face was very white and something dark was trickling from the corner of his mouth .Next moment his knees had given way but he still clutched the front of Harrys robes so that Harry was pulled into a kind of bow .Ginny ?Harry said fearfully .What happened ?But Ginny shook her head and slid down the wall into a sitting position panting and holding her ankle .I think her ankles broken I heard something crack whispered Luna who was bending over her and who alone seemed to be unhurt .Four of them chased us into a dark room full of planets it was a very odd place some of the time we were just floating in the dark Harry we saw Uranus up close !said Ron still giggling feebly .Get it Harry ?We saw Uranus ha ha ha A bubble of blood grew at the corner of Rons mouth and burst .Anyway one of them grabbed Ginnys foot I used the Reductor Curse and blew up Pluto in his face but .Luna gestured hopelessly at Ginny who was breathing in a very shallow way her eyes still closed .And what about Ron ?said Harry fearfully as Ron continued to giggle still hanging off the front of Harrys robes .I dont know what they hit him with said Luna sadly but hes gone a bit funny I could hardly get him along at all .Harry said Ron pulling Harrys ear down to his mouth and still giggling weakly you know who this girl is Harry ?Shes Loony .Loony Lovegood .ha ha ha .Weve got to get out of here said Harry firmly .Luna can you help Ginny ?Yes said Luna sticking her wand behind her ear for safekeeping putting an arm around Ginnys waist and pulling her up .Its only my ankle I can do it myself !said Ginny impatiently but next moment she had collapsed sideways and grabbed Luna for support .Harry pulled Rons arm over his shoulder just as so many months ago he had pulled Dudleys .He looked around They had a oneintwelve chance of getting the exit right the first time He heaved Ron toward a door they were within a few feet of it when another door across the hall burst open and three Death Eaters sped into the hall led by Bellatrix Lestrange .There they are !she shrieked .Stunning Spells shot across the room Harry smashed his way through the door ahead flung Ron unceremoniously from him and ducked back to help Neville in with Hermione .They were all over the threshold just in time to slam the door against Bellatrix .Colloportus shouted Harry and he heard three bodies slam into the door on the other side .It doesnt matter !said a mans voice .There are other ways in WEVE GOT THEM THEYRE HERE !Harry spun around .They were back in the Brain Room and sure enough there were doors all around the walls .He could hear footsteps in the hall behind them as more Death Eaters came running to join the first .Luna Neville help me !The three of them tore around the room sealing the doors as they went Harry crashed into a table and rolled over the top of it in his haste to reach the next door .Colloportusl There were footsteps running along behind the doors every now and then another heavy body would launch itself against one so it creaked and shuddered .Luna and Neville were bewitching the doors along the opposite wall then as Harry reached the very top of the room he heard Luna cry Collo aargh ?He turned in time to see her flying through the air .Five Death Eaters were surging into the room through the door she had not reached in time Luna hit a desk slid over its surface and onto the floor on the other side where she lay sprawled as still as Hermione .Get Potter !shrieked Bellatrix and she ran at him .He dodged her and sprinted back up the room he was safe as long as they thought they might hit the prophecy Hey !said Ron who had staggered to his feet and was now tottering drunkenly toward Harry giggling .Hey Harry there are brains in here ha ha ha isnt that weird Harry ?Ron get out of the way get down But Ron had already pointed his wand at the tank .Honest Harry theyre brains look Accio Brain The scene seemed momentarily frozen .Harry Ginny and Neville and each of the Death Eaters turned in spite of themselves to watch the top of the tank as a brain burst from the green liquid like a leaping fish .For a moment it seemed suspended in midair then it soared toward Ron spinning as it came and what looked like ribbons of moving images flew from it unraveling like rolls of film Ha ha ha Harry look at it said Ron watching it disgorge its gaudy innards .Harry come and touch it bet its weird RON NO !Harry did not know what would happen if Ron touched the tentacles of thought now flying behind the brain but he was sure it would not be anything good .He darted forward but Ron had already caught the brain in his outstretched hands .The moment they made contact with his skin the tentacles began wrapping themselves around Rons arms like ropes .Harry look whats happen no no I dont like it no stop stop But the thin ribbons were spinning around Rons chest now .He tugged and tore at them as the brain was pulled tight against him like an octopuss body .Diffindol yelled Harry trying to sever the feelers wrapping themselves tightly around Ron before his eyes but they would not break .Ron fell over still thrashing against his bonds .Harry itll suffocate him !screamed Ginny immobilized by her broken ankle on the floor then a jet of red light flew from one of the Death Eaters wands and hit her squarely in the face .She keeled over sideways and lay there unconscious .STUBEFYl shouted Neville wheeling around and waving Hermiones wand at the oncoming Death Eaters .STUBEFY STUBEFYl But nothing happened one of the Death Eaters shot their own Stunning Spell at Neville it missed him by inches .Harry and Neville were now the only two left fighting the five Death Eaters two of whom sent streams of silver light like arrows past them that left craters in the wall behind them .Harry ran for it as Bellatrix Lestrange sprinted right at him .Holding the prophecy high above his head he sprinted back up the room all he could think of doing was to draw the Death Eaters away from the others .It seemed to have worked .They streaked after him knocking chairs and tables flying but not daring to bewitch him in case they hurt the prophecy and he dashed through the only door still open the one through which the Death Eaters themselves had come .Inwardly praying that Neville would stay with Ron find some way of releasing him he ran a few feet into the new room and felt the floor vanish He was falling down steep stone step after steep stone step bouncing on every tier until at last with a crash that knocked all the breath out of his body he landed flat on his back in the sunken pit where the stone archway stood on its dais .The whole room was ringing with the Death Eaters laughter .He looked up and saw the five who had been in the Brain Room descending toward him while as many more emerged through other doorways and began leaping from bench to bench toward him .Harry got to his feet though his legs were trembling so badly they barely supported him .The prophecy was still miraculously unbroken in his left hand his wand clutched tightly in his right .He backed away looking around trying to keep all the Death Eaters within his sights .The back of his legs hit something solid he had reached the dais where the archway stood .He climbed backward onto it .The Death Eaters all halted gazing at him .Some were panting as hard as he was .One was bleeding badly Dolohov freed of the full BodyBind was leering his wand pointing straight at Harrys face .Potter your race is run drawled Lucius Malfoy pulling off his mask .Now hand me the prophecy like a good boy .Let let the others go and Ill give it to you !said Harry desperately .A few of the Death Eaters laughed .You are not in a position to bargain Potter said Lucius Malfoy his pale face flushed with pleasure .You see there are ten of us and only one of you .or hasnt Dumbledore ever taught you how to count ?Hes dot alone !shouted a voice from above them .Hes still god be !Harrys heart sank .Neville was scrambling down the stone benches toward them Hermiones wand held fast in his trembling hand .Neville no go back to Ron STUBEFYl Neville shouted again pointing his wand at each Death Eater in turn STUBEFYl .STUBE One of the largest Death Eaters seized Neville from behind pinioning his arms to his sides .He struggled and kicked several of the Death Eaters laughed .Its Longbottom isnt it ?sneered Lucius Malfoy .Well your grandmother is used to losing family members to our cause .Your death will not come as a great shock .Longbottom ?repeated Bellatrix and a truly evil smile lit her gaunt face .Why I have had the pleasure of meeting your parents boy .I DOE YOU HAB !roared Neville and he fought so hard against his captors encircling grip that the Death Eater shouted Someone Stun him !No no no said Bellatrix .She looked transported alive with excitement as she glanced at Harry then back at Neville .No lets see how long Longbottom lasts before he cracks like his parents .Unless Potter wants to give us the prophecy DOND GIB ID DO DEM !roared Neville who seemed beside himself kicking and writhing as Bellatrix drew nearer to him and his captor her wand raised .DOND GIB ID DO DEM HARRY !Bellatrix raised her wand .Cruciol Neville screamed his legs drawn up to his chest so that the Death Eater holding him was momentarily holding him off the ground .The Death Eater dropped him and he fell to the floor twitching and screaming in agony .That was just a taster !said Bellatrix raising her wand so that Nevilles screams stopped and he lay sobbing at her feet .She turned and gazed up at Harry .Now Potter either give us the prophecy or watch your little friend die the hard way !Harry did not have to think there was no choice .The prophecy was hot with the heat from his clutching hand as he held it out .Malfoy jumped forward to take it .Then high above them two more doors burst open and five more people sprinted into the room Sirius Lupin Moody Tonks and Kingsley .Malfoy turned and raised his wand but Tonks had already sent a Stunning Spell right at him .Harry did not wait to see whether it had made contact but dived off the dais out of the way .The Death Eaters were completely distracted by the appearance of the members of the Order who were now raining spells down upon them as they jumped from step to step toward the sunken floor Through the darting bodies the flashes of light Harry could see Neville crawling along .He dodged another jet of red light and flung himself flat on the ground to reach Neville .Are you okay ?he yelled as another spell soared inches over their heads .Yes said Neville trying to pull himself up .And Ron ?I dink hes all right he was still fighding the brain when I left The stone floor between them exploded as a spell hit it leaving a crater right where Nevilles hand had been seconds before .Both scrambled away from the spot then a thick arm came out of nowhere seized Harry around the neck and pulled him upright so that his toes were barely touching the floor .Give it to me growled a voice in his ear give me the prophecy The man was pressing so tightly on Harrys windpipe that he could not breathe through watering eyes he saw Sirius dueling with a Death Eater some ten feet away .Kingsley was fighting two at once Tonks still halfway up the tiered seats was firing spells down at Bellatrix nobody seemed to realize that Harry was dying .He turned his wand backward toward the mans side but had no breath to utter an incantation and the mans free hand was groping toward the hand in which Harry was grasping the prophecy AARGH !Neville had come lunging out of nowhere Unable to articulate a spell he had jabbed Hermiones wand hard into the eyehole of the Death Eaters mask .The man relinquished Harry at once with a howl of pain and Harry whirled around to face him and gasped STUPEFY The Death Eater keeled over backward and his mask slipped off .It was Macnair Buckbeaks wouldbe killer one of his eyes now swollen and bloodshot .Thanks !Harry said to Neville pulling him aside as Sirius and his Death Eater lurched past dueling so fiercely that their wands were blurs .Then Harrys foot made contact with something round and hard and he slipped for a moment he thought he had dropped the prophecy then saw Moodys magic eye spinning away across the floor .Its owner was lying on his side bleeding from the head and his attacker was now bearing down upon Harry and Neville Dolohov his long pale face twisted with glee .Tarantallegrcd he shouted his wand pointing at Neville whose legs went immediately into a kind of frenzied tap dance unbalancing him and causing him to fall to the floor again .Now Potter He made the same slashing movement with his wand that he had used on Hermione just as Harry yelled Protego Harry felt something streak across his face like a blunt knife but the force of it knocked him sideways and he fell over Nevilles jerking legs but the Shield Charm had stopped the worst of the spell .Dolohov raised his wand again .Accio Proph Sirius hurtled out of nowhere rammed Dolohov with his shoulder and sent him flying out of the way .The prophecy had again flown to the tips of Harrys fingers but he had managed to cling to it .Now Sirius and Dolohov were dueling their wands flashing like swords sparks flying from their wand tips Dolohov drew back his wand to make the same slashing movement he had used on Harry and Hermione .Springing up Harry yelled Petrificus Totalusl Once again Dolohovs arms and legs snapped together and he keeled over backward landing with a crash on his back .Nice one !shouted Sirius forcing Harrys head down as a pair of Stunning Spells flew toward them .Now I want you to get out of They both ducked again .A jet of green light had narrowly missed Sirius across the room Harry saw Tonks fall from halfway up the stone steps her limp form toppling from stone seat to stone seat and Bellatrix triumphant running back toward the fray .Harry take the prophecy grab Neville and run !Sirius yelled dashing to meet Bellatrix .Harry did not see what happened next Kingsley swayed across his field of vision battling with the pockmarked Rookwood now maskless another jet of green light flew over Harrys head as he launched himself toward Neville Can you stand ?he bellowed in Nevilles ear as Nevilles legs jerked and twitched uncontrollably .Put your arm round my neck Neville did so Harry heaved Nevilles legs were still flying in every direction they would not support him and then out of nowhere a man lunged at them .Both fell backward Nevilles legs waving wildly like an overturned beetles Harry with his left arm held up in the air to try and save the small glass ball from being smashed .The prophecy give me the prophecy Potter !snarled Lucius Malfoys voice in his ear and Harry felt the tip of Malfoys wand pressing hard between his ribs .No get off me .Neville catch it !Harry flung the prophecy across the floor Neville spun himself around on his back and scooped the ball to his chest .Malfoy pointed the wand instead at Neville but Harry jabbed his own wand back over his shoulder and yelled Impedimental Malfoy was blasted off his back .As Harry scrambled up again he looked around and saw Malfoy smash into the dais on which Sirius and Bellatrix were now dueling .Malfoy aimed his wand at Harry and Neville again but before he could draw breath to strike Lupin had jumped between them .Harry round up the others and GO !Harry seized Neville by the shoulder of his robes and lifted him bodily onto the first tier of stone steps .Nevilles legs twitched and jerked and would not support his weight .Harry heaved again with all the strength he possessed and they climbed another step A spell hit the stone bench at Harrys heel .It crumbled away and he fell back to the step below Neville sank to the ground his legs still jerking and thrashing and thrust the prophecy into his pocket .Come on !said Harry desperately hauling at Nevilles robes .Just try and push with your legs He gave another stupendous heave and Nevilles robes tore all along the left seam the small spunglass ball dropped from his pocket and before either of them could catch it one of Nevilles floundering feet kicked it .It flew some ten feet to their right and smashed on the step beneath them .As both of them stared at the place where it had broken appalled at what had happened a pearlywhite figure with hugely magnified eyes rose into the air unnoticed by any but them .Harry could see its mouth moving but in all the crashes and screams and yells surrounding them not one word of the prophecy could he hear .The figure stopped speaking and dissolved into nothingness .Harry Ib sorry !cried Neville his face anguished as his legs continued to flounder Ib so sorry Harry I didnd bean do ■ It doesnt matter !Harry shouted .Just try and stand lets get out of Dubbledorel said Neville his sweaty face suddenly transported staring over Harrys shoulder .What ?DUBBLEDORE !Harry turned to look where Neville was staring .Directly above them framed in the doorway from the Brain Room stood Albus Dumbledore his wand aloft his face white and furious .Harry felt a kind of electric charge surge through every particle of his body they were saved .Dumbledore sped down the steps past Neville and Harry who had no more thought of leaving .Dumbledore was already at the foot of the steps when the Death Eaters nearest realized he was there .There were yells one of the Death Eaters ran for it scrabbling like a monkey up the stone steps opposite .Dumbledores spell pulled him back as easily and effortlessly as though he had hooked him with an invisible line Only one couple were still battling apparently unaware of the new arrival .Harry saw Sirius duck Bellatrixs jet of red light He was laughing at her .Come on you can do better than that !he yelled his voice echoing around the cavernous room .The second jet of light hit him squarely on the chest .The laughter had not quite died from his face but his eyes widened in shock .Harry released Neville though he was unaware of doing so .He was jumping down the steps again pulling out his wand as Dumbledore turned to the dais too .It seemed to take Sirius an age to fall .His body curved in a graceful arc as he sank backward through the ragged veil hanging from the arch .And Harry saw the look of mingled fear and surprise on his godfathers wasted oncehandsome face as he fell through the ancient doorway and disappeared behind the veil which fluttered for a moment as though in a high wind and then fell back into place .Harry heard Bellatrix Lestranges triumphant scream but knew it meant nothing Sirius had only just fallen through the archway he would reappear from the other side any second .But Sirius did not reappear .SIRIUS !Harry yelled SIRIUS !He had reached the floor his breath coming in searing gasps .Sirius must be just behind the curtain he Harry would pull him back out again .But as he reached the ground and sprinted toward the dais Lupin grabbed Harry around the chest holding him back .Theres nothing you can do Harry Get him save him hes only just gone through !Its too late Harry We can still reach him Harry struggled hard and viciously but Lupin would not let go .Theres nothing you can do Harry .nothing .Hes gone .THE ONLY ONE HE EVER FEARED He hasnt gone !Harry yelled .He did not believe it he would not believe it still he fought Lupin with every bit of strength he had Lupin did not understand people hid behind that curtain he had heard them whispering the first time he had entered the room Sirius was hiding simply lurking out of sight SIRIUS !he bellowed SIRIUS !He cant come back Harry said Lupin his voice breaking as he struggled to contain Harry .He cant come back because hes d HE IS NOT DEAD !roared Harry .SIRIUS !There was movement going on around them pointless bustling the flashes of more spells .To Harry it was meaningless noise the deflected curses flying past them did not matter nothing mattered except that Lupin stop pretending that Sirius who was standing feet from them behind that old curtain was not going to emerge at any moment shaking back his dark hair and eager to reenter the battle Lupin dragged Harry away from the dais Harry still staring at the archway angry at Sirius now for keeping him waiting But some part of him realized even as he fought to break free from Lupin that Sirius had never kept him waiting before .Sirius had risked everything always to see Harry to help him .If Sirius was not reappearing out of that archway when Harry was yelling for him as though his life depended on it the only possible explanation was that he could not come back .That he really was .Dumbledore had most of the remaining Death Eaters grouped in the middle of the room seemingly immobilized by invisible ropes .MadEye Moody had crawled across the room to where Tonks lay and was attempting to revive her .Behind the dais there were still flashes of light grunts and cries Kingsley had run forward to continue Siriuss duel with Bellatrix .Harry ?Neville had slid down the stone benches one by one to the place where Harry stood .Harry was no longer struggling against Lupin who maintained a precautionary grip on his arm nevertheless .Harry .Ib really sorry .said Neville .His legs were still dancing uncontrollably .Was dat man was Sirius Black a a friend of yours ?Harry nodded .Here said Lupin quietly and pointing his wand at Nevilles legs he said Finite .The spell was lifted .Nevilles legs fell back onto the floor and remained still .Lupins face was pale .Lets lets find the others .Where are they all Neville ?Lupin turned away from the archway as he spoke .It sounded as though every word was causing him pain .Deyre all back dere said Neville .A brain addacked Ron bud I dink hes all righd and Herbiones unconscious bud we could feel a bulse There was a loud bang and a yell from behind the dais .Harry saw Kingsley yelling in pain hit the ground .Bellatrix Lestrange turned tail and ran as Dumbledore whipped around .He aimed a spell at her but she deflected it .She was halfway up the steps now Harry no !cried Lupin but Harry had already ripped his arm from Lupins slackened grip .SHE KILLED SIRIUS !bellowed Harry .SHE KILLED HIM ILL KILL HER !And he was off scrambling up the stone benches .People were shouting behind him but he did not care .The hem of Bellatrixs robes whipped out of sight ahead and they were back in the room where the brains were swimming .She aimed a curse over her shoulder .The tank rose into the air and tipped .Harry was deluged in the foul smelling potion within .The brains slipped and slid over him and began spinning their long colored tentacles but he shouted Wingardium Levioscd and they flew into the air away from him .Slipping and sliding he ran on toward the door .He leapt over Luna who was groaning on the floor past Ginny who said Harry what ?past Ron who giggled feebly and Hermione who was still unconscious .He wrenched open the door into the circular black hall and saw Bellatrix disappearing through a door on the other side of the room beyond her was the corridor leading back to the lifts .He ran but she had slammed the door behind her and the walls had begun to rotate again .Once more he was surrounded by streaks of blue light from the whirling candelabra .Wheres the exit ?he shouted desperately as the wall rumbled to a halt again .Wheres the way out ?The room seemed to have been waiting for him to ask .The door right behind him flew open and the corridor toward the lifts stretched ahead of him torch lit and empty .He ran .He could hear a lift clattering ahead of him .He sprinted up the passageway swung around the corner and slammed his fist onto the button to call a second lift .It jangled and banged lower and lower the grilles slid open and Harry dashed inside now hammering the button marked Atrium .The doors slid shut and he was rising .He forced his way out of the lift before the grilles were fully open and looked around .Bellatrix was almost at the telephone lift at the other end of the hall but she looked back as he sprinted toward her and aimed another spell at him .He dodged behind the Fountain of Magical Brethren the spell zoomed past him and hit the wrought gold gates at the other end of the Atrium so that they rang like bells .There were no more footsteps .She had stopped running .He crouched behind the statues listening .Come out come out little HarryV she called in her mockbaby voice which echoed off the polished wooden floors .What did you come after me for then ?I thought you were here to avenge my dear cousin !I am !shouted Harry and a score of ghostly Harrys seemed to chorus I am I am I am all around the room .aah .did you love him little baby Potter ?Hatred rose in Harry such as he had never known before .He flung himself out from behind the fountain and bellowed CrucioV Bellatrix screamed .The spell had knocked her off her feet but she did not writhe and shriek with pain as Neville had she was already on her feet again breathless no longer laughing .Harry dodged behind the golden fountain again her counterspell hit the head of the handsome wizard which was blown off and landed twenty feet away gouging long scratches into the wooden floor .Never used an Unforgivable Curse before have you boy ?she yelled .She had abandoned her baby voice now .You need to mean them Potter !You need to really want to cause pain to enjoy it righteous anger wont hurt me for long Ill show you how it is done shall I ?Ill give you a lesson Harry had been edging around the fountain on the other side .She screamed Cruciol and he was forced to duck down again as the centaurs arm holding its bow spun off and landed with a crash on the floor a short distance from the golden wizards head .Potter you cannot win against me !she cried .He could hear her moving to the right trying to get a clear shot of him .He backed around the statue away from her crouching behind the centaurs legs his head level with the houseelfs .I was and am the Dark Lords most loyal servant I learned the Dark Arts from him and I know spells of such power that you pathetic little boy can never hope to compete Stupefy yelled Harry .He had edged right around to where the goblin stood beaming up at the now headless wizard and taken aim at her back as she peered around the fountain for him .She reacted so fast he barely had time to duck .Protegol The jet of red light his own Stunning Spell bounced back at him .Harry scrambled back behind the fountain and one of the goblins ears went flying across the room .Potter I am going to give you one chance !shouted Bellatrix .Give me the prophecy roll it out toward me now and I may spare your life !Well youre going to have to kill me because its gone !Harry roared and as he shouted it pain seared across his forehead .His scar was on fire again and he felt a surge of fury that was quite unconnected with his own rage .And he knows !said Harry with a mad laugh to match Bellatrix s own .Your dear old mate Voldemort knows its gone !Hes not going to be happy with you is he ?What ?What do you mean ?she cried and for the first time there was fear in her voice .The prophecy smashed when I was trying to get Neville up the steps !What do you think Voldemortll say about that then ?His scar seared and burned .The pain of it was making his eyes stream .LIAR !she shrieked but he could hear the terror behind the anger now .YOUVE GOT IT POTTER AND YOU WILL GIVE IT TO ME Accio Prophecy !ACCIO PROPHECY !Harry laughed again because he knew it would incense her the pain building in his head so badly he thought his skull might burst .He waved his empty hand from behind the oneeared goblin and withdrew it quickly as she sent another jet of green light flying at him .Nothing there !he shouted .Nothing to summon !It smashed and nobody heard what it said tell your boss that No !she screamed .It isnt true youre lying MASTER I TRIED I TRIED DO NOT PUNISH ME Dont waste your breath !yelled Harry his eyes screwed up against the pain in his scar now more terrible than ever .He cant hear you from here !Cant I Potter ?said a high cold voice .Harry opened his eyes .Tall thin and blackhooded his terrible snakelike face white and gaunt his scarlet slitpupiled eyes staring .Lord Voldemort had appeared in the middle of the hall his wand pointing at Harry who stood frozen quite unable to move .So you smashed my prophecy ?said Voldemort softly staring at Harry with those pitiless red eyes .No Bella he is not lying .I see the truth looking at me from within his worthless mind .Months of preparation months of effort .and my Death Eaters have let Harry Potter thwart me again .Master I am sorry I knew not I was fighting the Animagus Black !sobbed Bellatrix flinging herself down at Voldemorts feet as he paced slowly nearer .Master you should know Be quiet Bella said Voldemort dangerously .I shall deal with you in a moment .Do you think I have entered the Ministry of Magic to hear your sniveling apologies ?But Master he is here he is below Voldemort paid no attention .I have nothing more to say to you Potter he said quietly .You have irked me too often for too long .AVADA KEDAVRAl Harry had not even opened his mouth to resist .His mind was blank his wand pointing uselessly at the floor .But the headless golden statue of the wizard in the fountain had sprung alive leaping from its plinth and landed on the floor with a crash between Harry and Voldemort .The spell merely glanced off its chest as the statue flung out its arms protecting Harry .What ?said Voldemort staring around .And then he breathed Dumbledore !Harry looked behind him his heart pounding .Dumbledore was standing in front of the golden gates .Voldemort raised his wand and sent another jet of green light at Dumbledore who turned and was gone in a whirling of his cloak next second he had reappeared behind Voldemort and waved his wand toward the remnants of the fountain the other statues sprang to life too .The statue of the witch ran at Bellatrix who screamed and sent spells streaming uselessly off its chest before it dived at her pinning her to the floor .Meanwhile the goblin and the house elf scuttled toward the fireplaces set along the wall and the onearmed centaur galloped at Voldemort who vanished and reappeared beside the pool .The headless statue thrust Harry backward away from the fight as Dumbledore advanced on Voldemort and the golden centaur cantered around them both .It was foolish to come here tonight Tom said Dumbledore calmly .The Aurors are on their way By which time I shall be gone and you dead !spat Voldemort .He sent another Killing Curse at Dumbledore but missed instead hitting the security guards desk which burst into flame .Dumbledore flicked his own wand .The force of the spell that emanated from it was such that Harry though shielded by his stone guard felt his hair stand on end as it passed and this time Voldemort was forced to conjure a shining silver shield out of thin air to deflect it .The spell whatever it was caused no visible damage to the shield though a deep gonglike note reverberated from it an oddly chilling sound .You do not seek to kill me Dumbledore ?called Voldemort his scarlet eyes narrowed over the top of the shield .Above such brutality are you ?We both know that there are other ways of destroying a man Tom Dumbledore said calmly continuing to walk toward Voldemort as though he had not a fear in the world as though nothing had happened to interrupt his stroll up the hall .Merely taking your life would not satisfy me I admit There is nothing worse than death Dumbledore !snarled Voldemort .You are quite wrong said Dumbledore still closing in upon Voldemort and speaking as lightly as though they were discussing the matter over drinks .Harry felt scared to see him walking along undefended shieldless .He wanted to cry out a warning but his headless guard kept shunting him backward toward the wall blocking his every attempt to get out from behind it .Indeed your failure to understand that there are things much worse than death has always been your greatest weakness Another jet of green light flew from behind the silver shield .This time it was the onearmed centaur galloping in front of Dumbledore that took the blast and shattered into a hundred pieces but before the fragments had even hit the floor Dumbledore had drawn back his wand and waved it as though brandishing a whip .A long thin flame flew from the tip it wrapped itself around Voldemort shield and all .For a moment it seemed Dumbledore had won but then the fiery rope became a serpent which relinquished its hold upon Voldemort at once and turned hissing furiously to face Dumbledore .Voldemort vanished .The snake reared from the floor ready to strike There was a burst of flame in midair above Dumbledore just as Voldemort reappeared standing on the plinth in the middle of the pool where so recently the five statues had stood .Look outi Harry yelled .But even as he shouted one more jet of green light had flown at Dumbledore from Voldemorts wand and the snake had struck Fawkes swooped down in front of Dumbledore opened his beak wide and swallowed the jet of green light whole .He burst into flame and fell to the floor small wrinkled and flightless .At the same moment Dumbledore brandished his wand in one long fluid movement the snake which had been an instant from sinking its fangs into him flew high into the air and vanished in a wisp of dark smoke the water in the pool rose up and covered Voldemort like a cocoon of molten glass For a few seconds Voldemort was visible only as a dark rippling faceless figure shimmering and indistinct upon the plinth clearly struggling to throw off the suffocating mass Then he was gone and the water fell with a crash back into its pool slopping wildly over the sides drenching the polished floor .MASTER !screamed Bellatrix .Sure it was over sure Voldemort had decided to flee Harry made to run out from behind his statue guard but Dumbledore bellowed Stay where you are Harry !For the first time Dumbledore sounded frightened .Harry could not see why .The hall was quite empty but for themselves the sobbing Bellatrix still trapped under her statue and the tiny baby Fawkes croaking feebly on the floor And then Harrys scar burst open .He knew he was dead it was pain beyond imagining pain past endurance He was gone from the hall he was locked in the coils of a creature with red eyes so tightly bound that Harry did not know where his body ended and the creatures began .They were fused together bound by pain and there was no escape And when the creature spoke it used Harrys mouth so that in his agony he felt his jaw move .Kill me now Dumbledore .Blinded and dying every part of him screaming for release Harry felt the creature use him again .If death is nothing Dumbledore kill the boy .Let the pain stop thought Harry .Let him kill us .End it Dumbledore .Death is nothing compared to this .And Ill see Sirius again .And as Harrys heart filled with emotion the creatures coils loosened the pain was gone Harry was lying facedown on the floor his glasses gone shivering as though he lay upon ice not wood .And there were voices echoing through the hall more voices than there should have been Harry opened his eyes saw his glasses lying at the heel of the headless statue that had been guarding him but which now lay flat on its back cracked and immobile .He put them on and raised his head an inch to find Dumbledores crooked nose inches from his own .Are you all right Harry ?Yes said Harry shaking so violently he could not hold his head up properly .Yeah Im wheres Voldemort where who are all these whats The Atrium was full of people .The floor was reflecting emeraldgreen flames that had burst into life in all the fireplaces along one wall and a stream of witches and wizards was emerging from them .As Dumbledore pulled him back to his feet Harry saw the tiny gold statues of the houseelf and the goblin leading a stunnedlooking Cornelius Fudge forward .He was there !shouted a scarletrobed man with a ponytail who was pointing at a pile of golden rubble on the other side of the hall where Bellatrix had lain trapped moments before .I saw him Mr Fudge I swear it was YouKnowWho he grabbed a woman and Disapparated !I know Williamson I know I saw him too !gibbered Fudge who was wearing pajamas under his pinstriped cloak and was gasping as though he had just run miles .Merlins beard here here !in the Ministry of Magic !great heavens above it doesnt seem possible my word how can this be ?If you proceed downstairs into the Department of Mysteries Cornelius said Dumbledore apparently satisfied that Harry was all right and walking forward so that the newcomers realized he was there for the first time a few of them raised their wands others simply looked amazed the statues of the elf and goblin applauded and Fudge jumped so much that his slipperclad feet left the floor you will find several escaped Death Eaters contained in the Death Chamber bound by an AntiDisapparation Jinx and awaiting your decision as to what to do with them .Dumbledore !gasped Fudge apparently beside himself with amazement .You here I I He looked wildly around at the Aurors he had brought with him and it could not have been clearer that he was in half a mind to cry Seize him !Cornelius I am ready to fight your men and win again !said Dumbledore in a thunderous voice .But a few minutes ago you saw proof with your own eyes that I have been telling you the truth for a year .Lord Voldemort has returned you have been chasing the wrong men for twelve months and it is time you listened to sense !I dont well blustered Fudge looking around as though hoping somebody was going to tell him what to do .When nobody did he said Very well Dawlish !Williamson !Go down to the Department of Mysteries and see .Dumbledore you you will need to tell me exactly the Fountain of Magical Brethren what happened ?he added in a kind of whimper staring around at the floor where the remains of the statues of the witch wizard and centaur now lay scattered .We can discuss that after I have sent Harry back to Hogwarts said Dumbledore .Harry Harry Potter ?Fudge spun around and stared at Harry who was still standing against the wall beside the fallen statue that had been guarding him during Dumbledore and Voldemorts duel .Hehere ?said Fudge .Why whats all this about ?I shall explain everything repeated Dumbledore when Harry is back at school .He walked away from the pool to the place where the golden wizards head lay on the floor .He pointed his wand at it and muttered Portus .The head glowed blue and trembled noisily against the wooden floor for a few seconds then became still once more .Now see here Dumbledore !said Fudge as Dumbledore picked up the head and walked back to Harry carrying it .You havent got authorization for that Portkey !You cant do things like that right in front of the Minister of Magic you you His voice faltered as Dumbledore surveyed him magisterially over his halfmoon spectacles .You will give the order to remove Dolores Umbridge from Hogwarts said Dumbledore .You will tell your Aurors to stop searching for my Care of Magical Creatures teacher so that he can return to work .I will give you .Dumbledore pulled a watch with twelve hands from his pocket and glanced at it half an hour of my time tonight in which I think we shall be more than able to cover the important points of what has happened here .After that I shall need to return to my school .If you need more help from me you are of course more than welcome to contact me at Hogwarts .Letters addressed to the headmaster will find me .Fudge goggled worse than ever .His mouth was open and his round face grew pinker under his rumpled gray hair .I you Dumbledore turned his back on him .Take this Portkey Harry .He held out the golden head of the statue and Harry placed his hand upon it past caring what he did next or where he went .I shall see you in half an hour said Dumbledore quietly .One .two .three .Harry felt the familiar sensation of a hook being jerked behind his navel .The polished wooden floor was gone from beneath his feet the Atrium Fudge and Dumbledore had all disappeared and he was flying forward in a whirlwind of color and sound .THE LOST PROPHECY Harrys feet hit solid ground again his knees buckled a little and the golden wizards head fell with a resounding clunk to the floor .He looked around and saw that he had arrived in Dumbledores office .Everything seemed to have repaired itself during the headmasters absence .The delicate silver instruments stood again upon the spindlelegged tables puffing and whirring serenely .The portraits of the headmasters and headmistresses were snoozing in their frames heads lolling back in armchairs or against the edge of their pictures .Harry looked through the window .There was a cool line of pale green along the horizon Dawn was approaching .The silence and the stillness broken only by the occasional grunt or snuffle of a sleeping portrait was unbearable to him .If his surroundings could have reflected the feelings inside him the pictures would have been screaming in pain .He walked around the quiet beautiful office breathing quickly trying not to think .But he had to think .There was no escape .It was his fault Sirius had died it was all his fault .If he Harry had not been stupid enough to fall for Voldemorts trick if he had not been so convinced that what he had seen in his dream was real if he had only opened his mind to the possibility that Voldemort was as Hermione had said banking on Harrys love of playing the hero .It was unbearable he would not think about it he could not stand it .There was a terrible hollow inside him he did not want to feel or examine a dark hole where Sirius had been where Sirius had vanished .He did not want to have to be alone with that great silent space he could not stand it A picture behind him gave a particularly loud grunting snore and a cool voice said Ah .Harry Potter .Phineas Nigellus gave a long yawn stretching his arms as he watched Harry with shrewd narrow eyes .And what brings you here in the early hours of the morning ?said Phineas .This office is supposed to be barred to all but the rightful headmaster .Or has Dumbledore sent you here ?Oh dont tell me .He gave another shuddering yawn .Another message for my worthless greatgreatgrandson ?Harry could not speak .Phineas Nigellus did not know that Sirius was dead but Harry could not tell him .To say it aloud would be to make it final absolute irretrievable .A few more of the portraits had stirred now .Terror of being interrogated made Harry stride across the room and seize the doorknob .It would not turn .He was shut in .I hope this means said the corpulent rednosed wizard who hung on the wall behind Dumbledores desk that Dumbledore will soon be back with us ?Harry turned .The wizard was eyeing him with great interest .Harry nodded .He tugged again on the doorknob behind his back but it remained immovable .Oh good said the wizard .It has been very dull without him very dull indeed .He settled himself on the thronelike chair on which he had been painted and smiled benignly upon Harry .Dumbledore thinks very highly of you as I am sure you know he said comfortably .Oh yes .Holds you in great esteem .The guilt filling the whole of Harrys chest like some monstrous weighty parasite now writhed and squirmed .Harry could not stand this he could not stand being Harry anymore .He had never felt more trapped inside his own head and body never wished so intensely that he could be somebody anybody else .The empty fireplace burst into emeraldgreen flame making Harry leap away from the door staring at the man spinning inside the grate .As Dumbledores tall form unfolded itself from the fire the wizards and witches on the surrounding walls jerked awake .Many of them gave cries of welcome .Thank you said Dumbledore softly .He did not look at Harry at first but walked over to the perch beside the door and withdrew from an inside pocket of his robes the tiny ugly featherless Fawkes whom he placed gently on the tray of soft ashes beneath the golden post where the fullgrown Fawkes usually stood .Well Harry said Dumbledore finally turning away from the baby bird you will be pleased to hear that none of your fellow students are going to suffer lasting damage from the nights events .Harry tried to say Good but no sound came out .It seemed to him that Dumbledore was reminding him of the amount of damage he had caused by his actions tonight and although Dumbledore was for once looking at him directly and though his expression was kindly rather than accusatory Harry could not bear to meet his eyes .Madam Pomfrey is patching everybody up now said Dumbledore .Nymphadora Tonks may need to spend a little time in St .Mungos but it seems that she will make a full recovery .Harry contented himself with nodding at the carpet which was growing lighter as the sky outside grew paler .He was sure that all the portraits around the room were listening eagerly to every word Dumbledore spoke wondering where Dumbledore and Harry had been and why there had been injuries .I know how you are feeling Harry said Dumbledore very quietly .No you dont said Harry and his voice was suddenly loud and strong .Whitehot anger leapt inside him .Dumbledore knew nothing about his feelings .You see Dumbledore ?said Phineas Nigellus slyly .Never try to understand the students .They hate it .They would much rather be tragically misunderstood wallow in selfpity stew in their own Thats enough Phineas said Dumbledore .Harry turned his back on Dumbledore and stared determinedly out of the opposite window .He could see the Quidditch stadium in the distance .Sirius had appeared there once disguised as the shaggy black dog so he could watch Harry play .He had probably come to see whether Harry was as good as James had been .Harry had never asked him .There is no shame in what you are feeling Harry said Dumbledore s voice .On the contrary .the fact that you can feel pain like this is your greatest strength .Harry felt the whitehot anger lick his insides blazing in the terrible emptiness filling him with the desire to hurt Dumbledore for his calmness and his empty words .My greatest strength is it ?said Harry his voice shaking as he stared out at the Quidditch stadium no longer seeing it .You havent got a clue .You dont know .What dont I know ?asked Dumbledore calmly .It was too much .Harry turned around shaking with rage .I dont want to talk about how I feel all right ?Harry suffering like this proves you are still a man !This pain is part of being human THEN I DONT WANT TOBE HUMAN !Harry roared and he seized one of the delicate silver instruments from the spindlelegged table beside him and flung it across the room .It shattered into a hundred tiny pieces against the wall .Several of the pictures let out yells of anger and fright and the portrait of Armando Dippet said a Reallyl I DONT CARE !Harry yelled at them snatching up a lunascope and throwing it into the fireplace .IVE HAD ENOUGH IVE SEEN ENOUGH I WANT OUT I WANT IT TO END I DONT CARE ANYMORE He seized the table on which the silver instrument had stood and threw that too .It broke apart on the floor and the legs rolled in different directions .You do care said Dumbledore .He had not flinched or made a single move to stop Harry demolishing his office .His expression was calm almost detached .You care so much you feel as though you will bleed to death with the pain of it .I DONT !Harry screamed so loudly that he felt his throat might tear and for a second he wanted to rush at Dumbledore and break him too shatter that calm old face shake him hurt him make him feel some tiny part of the horror inside Harry .Oh yes you do said Dumbledore still more calmly .You have now lost your mother your father and the closest thing to a parent you have ever known .Of course you care .YOU DONT KNOW HOW I FEEL !Harry roared .YOU STANDING THERE YOU But words were no longer enough smashing things was no more help .He wanted to run he wanted to keep running and never look back he wanted to be somewhere he could not see the clear blue eyes staring at him that hatefully calm old face .He ran to the door seized the doorknob again and wrenched at it .But the door would not open .Harry turned back to Dumbledore .Let me out he said .He was shaking from head to foot .No said Dumbledore simply .For a few seconds they stared at each other .Let me out Harry said again .No Dumbledore repeated .If you dont if you keep me in here if you dont let me By all means continue destroying my possessions said Dumbledore serenely .I daresay I have too many .He walked around his desk and sat down behind it watching Harry .Let me out Harry said yet again in a voice that was cold and almost as calm as Dumbledore s .Not until I have had my say said Dumbledore .Do you do you think I want to do you think I give a I DONT CARE WHAT YOUVE GOT TO SAY !Harry roared .I dont want to hear anything youve got to say !You will said Dumbledore sadly .Because you are not nearly as angry with me as you ought to be .If you are to attack me as I know you are close to doing I would like to have thoroughly earned it .What are you talking ?It is my fault that Sirius died said Dumbledore clearly .Or I should say almost entirely my fault I will not be so arrogant as to claim responsibility for the whole .Sirius was a brave clever and energetic man and such men are not usually content to sit at home in hiding while they believe others to be in danger .Nevertheless you should never have believed for an instant that there was any necessity for you to go to the Department of Mysteries tonight .If I had been open with you Harry as I should have been you would have known a long time ago that Voldemort might try and lure you to the Department of Mysteries and you would never have been tricked into going there tonight .And Sirius would not have had to come after you .That blame lies with me and with me alone .Harry was still standing with his hand on the doorknob but he was unaware of it .He was gazing at Dumbledore hardly breathing listening yet barely understanding what he was hearing .Please sit down said Dumbledore .It was not an order it was a request .Harry hesitated then walked slowly across the room now littered with silver cogs and fragments of wood and took the seat facing Dumbledore s desk .Am I to understand said Phineas Nigellus slowly from Harrys left that my greatgreatgrandson the last of the Blacks is dead ?Yes Phineas said Dumbledore .I dont believe it said Phineas brusquely .Harry turned his head in time to see Phineas marching out of his portrait and knew that he had gone to visit his other painting in Grimmauld Place .He would walk perhaps from portrait to portrait calling for Sirius through the house .Harry I owe you an explanation said Dumbledore .An explanation of an old mans mistakes .For I see now that what I have done and not done with regard to you bears all the hallmarks of the failings of age .Youth cannot know how age thinks and feels .But old men are guilty if they forget what it was to be young .and I seem to have forgotten lately .The sun was rising properly now .There was a rim of dazzling orange visible over the mountains and the sky above it was colorless and bright .The light fell upon Dumbledore upon the silver of his eyebrows and beard upon the lines gouged deeply into his face .I guessed fifteen years ago said Dumbledore when I saw the scar upon your forehead what it might mean .I guessed that it might be the sign of a connection forged between you and Voldemort .Youve told me this before Professor said Harry bluntly .He did not care about being rude .He did not care about anything very much anymore .Yes said Dumbledore apologetically .Yes but you see it is necessary to start with your scar .For it became apparent shortly after you rejoined the magical world that I was correct and that your scar was giving you warnings when Voldemort was close to you or else feeling powerful emotion .I know said Harry wearily .And this ability of yours to detect Voldemorts presence even when he is disguised and to know what he is feeling when his emotions are roused has become more and more pronounced since Voldemort returned to his own body and his full powers .Harry did not bother to nod .He knew all of this already .More recently said Dumbledore I became concerned that Voldemort might realize that this connection between you exists .Sure enough there came a time when you entered so far into his mind and thoughts that he sensed your presence .I am speaking of course of the night when you witnessed the attack on Mr Weasley .Yeah Snape told me Harry muttered .Professor Snape Harry Dumbledore corrected him quietly .But did you not wonder why it was not I who explained this to you ?Why I did not teach you Occlumency ?Why I had not so much as looked at you for months ?Harry looked up .He could see now that Dumbledore looked sad and tired .Yeah Harry mumbled .Yeah I wondered .You see continued Dumbledore heavily .I believed it could not be long before Voldemort attempted to force his way into your mind to manipulate and misdirect your thoughts and I was not eager to give him more incentives to do so .I was sure that if he realized that our relationship was or had ever been closer than that of headmaster and pupil he would seize his chance to use you as a means to spy on me .I feared the uses to which he would put you the possibility that he might try and possess you .Harry I believe I was right to think that Voldemort would have made use of you in such a way .On those rare occasions when we had close contact I thought I saw a shadow of him stir behind your eyes .I was trying in distancing myself from you to protect you .An old mans mistake .Harry remembered the feeling that a dormant snake had risen in him ready to strike on those occasions when he and Dumbledore made eye contact .Voldemorts aim in possessing you as he demonstrated tonight would not have been my destruction .It would have been yours .He hoped when he possessed you briefly a short while ago that I would sacrifice you in the hope of killing him .He sighed deeply .Harry was letting the words wash over him .He would have been so interested to know all this a few months ago and now it was meaningless compared to the gaping chasm inside him that was the loss of Sirius none of it mattered .Sirius told me that you felt Voldemort awake inside you the very night that you had the vision of Arthur Weasleys attack .I knew at once that my worst fears were correct Voldemort from that point had realized he could use you .In an attempt to arm you against Voldemorts assaults on your mind I arranged Occlumency lessons with Professor Snape .He paused .Harry watched the sunlight which was sliding slowly across the polished surface of Dumbledores desk illuminate a silver ink pot and a handsome scarlet quill .Harry could tell that the portraits all around them were awake and listening raptly to Dumbledores explanation .He could hear the occasional rustle of robes the slight clearing of a throat .Phineas Nigellus had still not returned .Professor Snape discovered Dumbledore resumed that you had been dreaming about the door to the Department of Mysteries for months .Voldemort of course had been obsessed with the possibility of hearing the prophecy ever since he regained his body and as he dwelled on the door so did you though you did not know what it meant .And then you saw Rookwood who worked in the Department of Mysteries before his arrest telling Voldemort what we had known all along that the prophecies held in the Ministry of Magic are heavily protected .Only the people to whom they refer can lift them from the shelves without suffering madness .In this case either Voldemort himself would have to enter the Ministry of Magic and risk revealing himself at last or else you would have to take it for him .It became a matter of even greater urgency that you should master Occlumency .But I didnt muttered Harry .He said it aloud to try and ease the dead weight of guilt inside him a confession must surely relieve some of the terrible pressure squeezing his heart .I didnt practice I didnt bother I couldve stopped myself having those dreams Hermione kept telling me to do it if I had hed never have been able to show me where to go and Sirius wouldnt Sirius wouldnt Something was erupting inside Harrys head a need to justify himself to explain I tried to check if hed really taken Sirius I went to Umbridges office I spoke to Kreacher in the fire and he said Sirius wasnt there he said hed gone !Kreacher lied said Dumbledore calmly .You are not his master he could lie to you without even needing to punish himself .Kreacher intended you to go to the Ministry of Magic .He he sent me on purpose ?Oh yes .Kreacher I am afraid has been serving more than one master for months .How ?said Harry blankly .He hasnt been out of Grimmauld Place for years .Kreacher seized his opportunity shortly before Christmas said Dumbledore when Sirius apparently shouted at him to ‘get out .He took Sirius at his word and interpreted this as an order to leave the house .He went to the only Black family member for whom he had any respect left .Blacks cousin Narcissa sister of Bellatrix and wife of Lucius Malfoy .How do you know all this ?Harry said .His heart was beating very fast .He felt sick .He remembered worrying about Kreachers odd absence over Christmas remembered him turning up again in the attic .Kreacher told me last night said Dumbledore .You see when you gave Professor Snape that cryptic warning he realized that you had had a vision of Sirius trapped in the bowels of the Department of Mysteries .He like you attempted to contact Sirius at once .I should explain that members of the Order of the Phoenix have more reliable methods of communicating than the fire in Dolores Umbridges office .Professor Snape found that Sirius was alive and safe in Grimmauld Place .When however you did not return from your trip into the forest with Dolores Umbridge Professor Snape grew worried that you still believed Sirius to be a captive of Lord Voldemorts .He alerted certain Order members at once .Dumbledore heaved a great sigh and then said Alastor Moody Nymphadora Tonks Kingsley Shacklebolt and Remus Lupin were at headquarters when he made contact .All agreed to go to your aid at once .Professor Snape requested that Sirius remain behind as he needed somebody to remain at headquarters to tell me what had happened for I was due there at any moment .In the meantime he Professor Snape intended to search the forest for you .But Sirius did not wish to remain behind while the others went to search for you .He delegated to Kreacher the task of telling me what had happened .And so it was that when I arrived in Grimmauld Place shortly after they had all left for the Ministry it was the elf who told me laughing fit to burst where Sirius had gone .He was laughing ?said Harry in a hollow voice .Oh yes said Dumbledore .You see Kreacher was not able to betray us totally .He is not SecretKeeper for the Order he could not give the Malfoys our whereabouts or tell them any of the Orders confidential plans that he had been forbidden to reveal .He was bound by the enchantments of his kind which is to say that he could not disobey a direct order from his master Sirius .But he gave Narcissa information of the sort that is very valuable to Voldemort yet must have seemed much too trivial for Sirius to think of banning him from repeating it .Like what ?said Harry .Like the fact that the person Sirius cared most about in the world was you said Dumbledore quietly .Like the fact that you were coming to regard Sirius as a mixture of father and brother .Voldemort knew already of course that Sirius was in the Order that you knew where he was but Kreachers information made him realize that the one person whom you would go to any lengths to rescue was Sirius Black .Harrys lips were cold and numb .So .when I asked Kreacher if Sirius was there last night .The Malfoys undoubtedly on Voldemorts instructions had told him he must find a way of keeping Sirius out of the way once you had seen the vision of Sirius being tortured .Then if you decided to check whether Sirius was at home or not Kreacher would be able to pretend he was not .Kreacher injured Buckbeak the hippogriff yesterday and at the moment when you made your appearance in the fire Sirius was upstairs trying to tend to him .There seemed to be very little air in Harrys lungs his breathing was quick and shallow .And Kreacher told you all this .and laughed ?he croaked .He did not wish to tell me said Dumbledore .But I am a sufficiently accomplished Legilimens myself to know when I am being lied to and I persuaded him to tell me the full story before I left for the Department of Mysteries .And whispered Harry his hands curled in cold fists on his knees and Hermione kept telling us to be nice to him She was quite right Harry said Dumbledore .I warned Sirius when we adopted twelve Grimmauld Place as our headquarters that Kreacher must be treated with kindness and respect .I also told him that Kreacher could be dangerous to us .I do not think that Sirius took me very seriously or that he ever saw Kreacher as a being with feelings as acute as a humans Dont you blame dont you talk about Sirius like Harrys breath was constricted he could not get the words out properly .But the rage that had subsided so briefly had flared in him again he would not let Dumbledore criticize Sirius .Kreacher s a lying foul he deserved Kreacher is what he has been made by wizards Harry said Dumbledore .Yes he is to be pitied .His existence has been as miserable as your friend Dobbys .He was forced to do Siriuss bidding because Sirius was the last of the family to which he was enslaved but he felt no true loyalty to him .And whatever Kreachers faults it must be admitted that Sirius did nothing to make Kreachers lot easier DONT TALK ABOUT SIRIUS LIKE THAT !Harry yelled .He was on his feet again furious ready to fly at Dumbledore who had plainly not understood Sirius at all how brave he was how much he had suffered What about Snape ?Harry spat .Youre not talking about him are you ?When I told him Voldemort had Sirius he just sneered at me as usual Harry you know that Professor Snape had no choice but to pretend not to take you seriously in front of Dolores Umbridge said Dumbledore steadily but as I have explained he informed the Order as soon as possible about what you had said .It was he who deduced where you had gone when you did not return from the forest .It was he too who gave Professor Umbridge fake Veritaserum when she was attempting to force you to tell of Siriuss whereabouts .Harry disregarded this he felt a savage pleasure in blaming Snape it seemed to be easing his own sense of dreadful guilt and he wanted to hear Dumbledore agree with him .Snape Snape ggoaded Sirius about staying in the house he made out Sirius was a coward Sirius was much too old and clever to have allowed such feeble taunts to hurt him said Dumbledore .Snape stopped giving me Occlumency lessons !Harry snarled .He threw me out of his office !I am aware of it said Dumbledore heavily .I have already said that it was a mistake for me not to teach you myself though I was sure at the time that nothing could have been more dangerous than to open your mind even further to Voldemort while in my presence Snape made it worse my scar always hurt worse after lessons with him Harry remembered Rons thoughts on the subject and plunged on .How do you know he wasnt trying to soften me up for Voldemort make it easier for him to get inside my I trust Severus Snape said Dumbledore simply .But I forgot another old mans mistake that some wounds run too deep for the healing .I thought Professor Snape could overcome his feelings about your father I was wrong .But thats okay is it ?yelled Harry ignoring the scandalized faces and disapproving mutterings of the portraits covering the walls .Its okay for Snape to hate my dad but its not okay for Sirius to hate Kreacher ?Sirius did not hate Kreacher said Dumbledore .He regarded him as a servant unworthy of much interest or notice .Indifference and neglect often do much more damage than outright dislike .The fountain we destroyed tonight told a lie .We wizards have mistreated and abused our fellows for too long and we are now reaping our reward .SO SIRIUS DESERVED WHAT HE GOT DID HE ?Harry yelled .I did not say that nor will you ever hear me say it Dumbledore replied quietly .Sirius was not a cruel man he was kind to houseelves in general .He had no love for Kreacher because Kreacher was a living reminder of the home Sirius had hated .Yeah he did hate it !said Harry his voice cracking turning his back on Dumbledore and walking away .The sun was bright inside the room now and the eyes of all the portraits followed him as he walked without realizing what he was doing without seeing the office at all .You made him stay shut up in that house and he hated it thats why he wanted to get out last night I was trying to keep Sirius alive said Dumbledore quietly .People dont like being locked up !Harry said furiously rounding on him .You did it to me all last summer Dumbledore closed his eyes and buried his face in his longfingered hands .Harry watched him but this uncharacteristic sign of exhaustion or sadness or whatever it was from Dumbledore did not soften him .On the contrary he felt even angrier that Dumbledore was showing signs of weakness .He had no business being weak when Harry wanted to rage and storm at him .Dumbledore lowered his hands and surveyed Harry through his halfmoon glasses .It is time he said for me to tell you what I should have told you five years ago Harry .Please sit down .I am going to tell you everything .I ask only a little patience .You will have your chance to rage at me to do whatever you like when I have finished .I will not stop you .Harry glared at him for a moment then flung himself back into the chair opposite Dumbledore and waited .Dumbledore stared for a moment at the sunlit grounds outside the window then looked back at Harry and said Five years ago you arrived at Hogwarts Harry safe and whole as I had planned and intended .Well not quite whole .You had suffered .I knew you would when I left you on your aunt and uncles doorstep .I knew I was condemning you to ten dark and difficult years .He paused .Harry said nothing .You might ask and with good reason why it had to be so .Why could some Wizarding family not have taken you in ?Many would have done so more than gladly would have been honored and delighted to raise you as a son .My answer is that my priority was to keep you alive .You were in more danger than perhaps anyone but myself realized .Voldemort had been vanquished hours before but his supporters and many of them are almost as terrible as he were still at large angry desperate and violent .And I had to make my decision too with regard to the years ahead .Did I believe that Voldemort was gone forever ?No .I knew not whether it would be ten twenty or fifty years before he returned but I was sure he would do so and I was sure too knowing him as I have done that he would not rest until he killed you .I knew that Voldemort s knowledge of magic is perhaps more extensive than any wizard alive .I knew that even my most complex and powerful protective spells and charms were unlikely to be invincible if he ever returned to full power .But I knew too where Voldemort was weak .And so I made my decision .You would be protected by an ancient magic of which he knows which he despises and which he has always therefore underestimated to his cost .I am speaking of course of the fact that your mother died to save you .She gave you a lingering protection he never expected a protection that flows in your veins to this day .I put my trust therefore in your mothers blood .I delivered you to her sister her only remaining relative .She doesnt love me said Harry at once .She doesnt give a damn But she took you Dumbledore cut across him .She may have taken you grudgingly furiously unwillingly bitterly yet still she took you and in doing so she sealed the charm I placed upon you .Your mothers sacrifice made the bond of blood the strongest shield I could give you .I still dont While you can still call home the place where your mothers blood dwells there you cannot be touched or harmed by Voldemort .He shed her blood but it lives on in you and her sister .Her blood became your refuge .You need return there only once a year but as long as you can still call it home there he cannot hurt you .Your aunt knows this .I explained what I had done in the letter I left with you on her doorstep .She knows that allowing you houseroom may well have kept you alive for the past fifteen years .Wait said Harry .Wait a moment .He sat up straighter in his chair staring at Dumbledore .You sent that Howler .You told her to remember it was your voice I thought said Dumbledore inclining his head slightly that she might need reminding of the pact she had sealed by taking you .I suspected the dementor attack might have awoken her to the dangers of having you as a surrogate son .It did said Harry quietly .Well my uncle more than her .He wanted to chuck me out but after the Howler came she she said I had to stay .He stared at the floor for a moment then said But whats this got to do with .He could not say Siriuss name .Five years ago then continued Dumbledore as though he had not paused in his story you arrived at Hogwarts neither as happy nor as well nourished as I would have liked perhaps yet alive and healthy .You were not a pampered little prince but as normal a boy as I could have hoped under the circumstances .Thus far my plan was working well .And then .well you will remember the events of your first year at Hogwarts quite as clearly as I do .You rose magnificently to the challenge that faced you and sooner much sooner than I had anticipated you found yourself facetoface with Voldemort .You survived again .You did more .You delayed his return to full power and strength .You fought a mans fight .I was .prouder of you than I can say .Yet there was a flaw in this wonderful plan of mine said Dumbledore .An obvious flaw that I knew even then might be the undoing of it all .And yet knowing how important it was that my plan should succeed I told myself that I would not permit this flaw to min it .I alone could prevent this so I alone must be strong .And here was my first test as you lay in the hospital wing weak from your struggle with Voldemort .I dont understand what youre saying said Harry .Dont you remember asking me as you lay in the hospital wing why Voldemort had tried to kill you when you were a baby ?Harry nodded .Ought I to have told you then ?Harry stared into the blue eyes and said nothing but his heart was racing again .You do not see the flaw in the plan yet ?No .perhaps not .Well as you know I decided not to answer you .Eleven I told myself was much too young to know .I had never intended to tell you when you were eleven .The knowledge would be too much at such a young age .I should have recognized the danger signs then .I should have asked myself why I did not feel more disturbed that you had already asked me the question to which I knew one day I must give a terrible answer .I should have recognized that I was too happy to think that I did not have to do it on that particular day .You were too young much too young .And so we entered your second year at Hogwarts .And once again you met challenges even grown wizards have never faced .Once again you acquitted yourself beyond my wildest dreams .You did not ask me again however why Voldemort had left that mark upon you .We discussed your scar oh yes .We came very very close to the subject .Why did I not tell you everything ?Well it seemed to me that twelve was after all hardly better than eleven to receive such information .I allowed you to leave my presence bloodstained exhausted but exhilarated and if I felt a twinge of unease that I ought perhaps have told you then it was swiftly silenced .You were still so young you see and I could not find it in me to spoil that night of triumph .Do you see Harry ?Do you see the flaw in my brilliant plan now ?I had fallen into the trap I had foreseen that I had told myself I could avoid that I must avoid .I dont I cared about you too much said Dumbledore simply .I cared more for your happiness than your knowing the truth more for your peace of mind than my plan more for your life than the lives that might be lost if the plan failed .In other words I acted exactly as Voldemort expects we fools who love to act .Is there a defense ?I defy anyone who has watched you as I have and I have watched you more closely than you can have imagined not to want to save you more pain than you had already suffered .What did I care if numbers of nameless and faceless people and creatures were slaughtered in the vague future if in the here and now you were alive and well and happy ?I never dreamed that I would have such a person on my hands .We entered your third year .I watched from afar as you struggled to repel dementors as you found Sirius learned what he was and rescued him .Was I to tell you then at the moment when you had triumphantly snatched your godfather from the jaws of the Ministry ?But now at the age of thirteen my excuses were running out .Young you might be but you had proved you were exceptional .My conscience was uneasy Harry .I knew the time must come soon .But you came out of the maze last year having watched Cedric Diggory die having escaped death so narrowly yourself .and I did not tell you though I knew now Voldemort had returned I must do it soon .And now tonight I know you have long been ready for the knowledge I have kept from you for so long because you have proved that I should have placed the burden upon you before this .My only defense is this I have watched you struggling under more burdens than any student who has ever passed through this school and I could not bring myself to add another the greatest one of all .Harry waited but Dumbledore did not speak .I still dont understand .Voldemort tried to kill you when you were a child because of a prophecy made shortly before your birth .He knew the prophecy had been made though he did not know its full contents .He set out to kill you when you were still a baby believing he was fulfilling the terms of the prophecy .He discovered to his cost that he was mistaken when the curse intended to kill you backfired .And so since his return to his body and particularly since your extraordinary escape from him last year he has been determined to hear that prophecy in its entirety .This is the weapon he has been seeking so assiduously since his return the knowledge of how to destroy you .The sun had risen fully now .Dumbledores office was bathed in it .The glass case in which the sword of Godric Gryffindor resided gleamed white and opaque the fragments of the instruments Harry had thrown to the floor glistened like raindrops and behind him the baby Fawkes made soft chirruping noises in his nest of ashes .The prophecys smashed Harry said blankly .I was pulling Neville up those benches in the the room where the archway was and I ripped his robes and it fell .The thing that smashed was merely the record of the prophecy kept by the Department of Mysteries .But the prophecy was made to somebody and that person has the means of recalling it perfectly .Who heard it ?asked Harry though he thought he knew the answer already .I did said Dumbledore .On a cold wet night sixteen years ago in a room above the bar at the Hogs Head Inn .I had gone there to see an applicant for the post of Divination teacher though it was against my inclination to allow the subject of Divination to continue at all .The applicant however was the greatgreatgranddaughter of a very famous very gifted Seer and I thought it common politeness to meet her .I was disappointed .It seemed to me that she had not a trace of the gift herself .I told her courteously I hope that I did not think she would be suitable for the post .I turned to leave .Dumbledore got to his feet and walked past Harry to the black cabinet that stood beside Fawkess perch .He bent down slid back a catch and took from inside it the shallow stone basin carved with runes around the edges in which Harry had seen his father tormenting Snape .Dumbledore walked back to the desk placed the Pensieve upon it and raised his wand to his own temple .From it he withdrew silvery gossamerfine strands of thought clinging to the wand and deposited them in the basin .He sat back down behind his desk and watched his thoughts swirl and drift inside the Pensieve for a moment .Then with a sigh he raised his wand and prodded the silvery substance with its tip .A figure rose out of it draped in shawls her eyes magnified to enormous size behind her glasses and she revolved slowly her feet in the basin .But when Sibyll Trelawney spoke it was not in her usual ethereal mystic voice but in the harsh hoarse tones Harry had heard her use once before .The one with the power to vanquish the Dark Lord approaches .Born to those who have thrice defied him born as the seventh month dies .and the Dark Lord will mark him as his equal but he will have power the Dark Lord knows not .and either must die at the hand of the other for neither can live while the other survives .The one with the power to vanquish the Dark Lord will be born as the seventh month dies .The slowly revolving Professor Trelawney sank back into the silver mass below and vanished .The silence within the office was absolute .Neither Dumbledore nor Harry nor any of the portraits made a sound .Even Fawkes had fallen silent .Professor Dumbledore ?Harry said very quietly for Dumbledore still staring at the Pensieve seemed completely lost in thought .It .did that mean .What did that mean ?It meant said Dumbledore that the person who has the only chance of conquering Lord Voldemort for good was born at the end of July nearly sixteen years ago .This boy would be born to parents who had already defied Voldemort three times .Harry felt as though something was closing in upon him .His breathing seemed difficult again .It means me ?Dumbledore surveyed him for a moment through his glasses .The odd thing is Harry he said softly that it may not have meant you at all .Sibylls prophecy could have applied to two wizard boys both born at the end of July that year both of whom had parents in the Order of the Phoenix both sets of parents having narrowly escaped Voldemort three times .One of course was you .The other was Neville Longbottom .But then .but then why was it my name on the prophecy and not Nevilles ?The official record was relabeled after Voldemort s attack on you as a child said Dumbledore .It seemed plain to the keeper of the Hall of Prophecy that Voldemort could only have tried to kill you because he knew you to be the one to whom Sibyll was referring .Then it might not be me ?said Harry .I am afraid said Dumbledore slowly looking as though every word cost him a great effort that there is no doubt that it is you .But you said Neville was born at the end of July too and his mum and dad You are forgetting the next part of the prophecy the final identifying feature of the boy who could vanquish Voldemort .Voldemort himself would ‘mark him as his equal .And so he did Harry .He chose you not Neville .He gave you the scar that has proved both blessing and curse .But he might have chosen wrong !said Harry .He might have marked the wrong person !He chose the boy he thought most likely to be a danger to him said Dumbledore .And notice this Harry .He chose not the pureblood which according to his creed is the only kind of wizard worth being or knowing but the halfblood like himself .He saw himself in you before he had ever seen you and in marking you with that scar he did not kill you as he intended but gave you powers and a future which have fitted you to escape him not once but four times so far something that neither your parents nor Nevilles parents ever achieved .Why did he do it then ?said Harry who felt numb and cold .Why did he try and kill me as a baby ?He should have waited to see whether Neville or I looked more dangerous when we were older and tried to kill whoever it was then That might indeed have been the more practical course said Dumbledore except that Voldemorts information about the prophecy was incomplete .The Hogs Head Inn which Sibyll chose for its cheapness has long attracted shall we say a more interesting clientele than the Three Broomsticks .As you and your friends found out to your cost and I to mine that night it is a place where it is never safe to assume you are not being overheard .Of course I had not dreamed when I set out to meet Sibyll Trelawney that I would hear anything worth overhearing .My our one stroke of good fortune was that the eavesdropper was detected only a short way into the prophecy and thrown from the building .So he only heard . ?He heard only the first part the part foretelling the birth of a boy in July to parents who had thrice defied Voldemort .Consequently he could not warn his master that to attack you would be to risk transferring power to you again marking you as his equal .So Voldemort never knew that there might be danger in attacking you that it might be wise to wait or to learn more .He did not know that you would have ‘power the Dark Lord knows not But I dont !said Harry in a strangled voice .I havent any powers he hasnt got I couldnt fight the way he did tonight I cant possess people or or kill them There is a room in the Department of Mysteries interrupted Dumbledore that is kept locked at all times .It contains a force that is at once more wonderful and more terrible than death than human intelligence than forces of nature .It is also perhaps the most mysterious of the many subjects for study that reside there .It is the power held within that room that you possess in such quantities and which Voldemort has not at all .That power took you to save Sirius tonight .That power also saved you from possession by Voldemort because he could not bear to reside in a body so full of the force he detests .In the end it mattered not that you could not close your mind .It was your heart that saved you .Harry closed his eyes .If he had not gone to save Sirius Sirius would not have died .More to stave off the moment when he would have to think of Sirius again Harry asked without caring much about the answer The end of the prophecy .it was something about . ‘neither can live . ‘.while the other survives said Dumbledore .So said Harry dredging up the words from what felt like a deep well of despair inside him so does that mean that .that one of us has got to kill the other one .in the end ?Yes said Dumbledore .For a long time neither of them spoke .Somewhere far beyond the office walls Harry could hear the sound of voices students heading down to the Great Hall for an early breakfast perhaps .It seemed impossible that there could be people in the world who still desired food who laughed who neither knew nor cared that Sirius Black was gone forever .Sirius seemed a million miles away already even if a part of Harry still believed that if he had only pulled back that veil he would have found Sirius looking back at him greeting him perhaps with his laugh like a bark .I feel I owe you another explanation Harry said Dumbledore hesitantly .You may perhaps have wondered why I never chose you as a prefect ?I must confess .that I rather thought .you had enough responsibility to be going on with .Harry looked up at him and saw a tear trickling down Dumbledore s face into his long silver beard .THE SECOND WAR BEGINS HEWHOMUSTNOTBENAMED RETURNS In a brief statement Friday night Minister of Magic Cornelius Fudge confirmed that HeWhoMustNotBe Named has returned to this country and is active once more .It is with great regret that I must confirm that the wizard styling himself Lord well you know who I mean is alive and among us again said Fudge looking tired and flustered as he addressed reporters .It is with almost equal regret that we report the mass revolt of the dementors of Azkaban who have shown themselves averse to continuing in the Ministrys employ .We believe that the dementors are currently taking direction from Lord Thingy .We urge the magical population to remain vigilant The Ministry is currently publishing guides to elementary home and personal defense that will be delivered free to all Wizarding homes within the coming month .The Ministers statement was met with dismay and alarm from the Wizarding community which as recently as last Wednesday was receiving Ministry assurances that there was no truth whatsoever in these persistent rumors that YouKnowWho is operating amongst us once more .Details of the events that led to the Ministry turnaround are still hazy though it is believed that HeWhoMustNotBeNamed and a select band of followers known as Death Eaters gained entry to the Ministry of Magic itself on Thursday evening .Albus Dumbledore newly reinstated headmaster of Hogwarts School of Witchcraft and Wizardry reinstated member of the International Confederation of Wizards and reinstated Chief Warlock of the Wizengamot was unavailable for comment last night .He has insisted for a year that YouKnowWho was not dead as was widely hoped and believed but recruiting followers once more for a fresh attempt to seize power .Meanwhile the Boy Who Lived There you are Harry I knew theyd drag you into it somehow said Hermione looking over the top of the paper at him .They were in the hospital wing .Harry was sitting on the end of Rons bed and they were both listening to Hermione read the front page of the Sunday Prophet .Ginny whose ankle had been mended in a trice by Madam Pomfrey was curled up at the foot of Hermiones bed Neville whose nose had likewise been returned to its normal size and shape was in a chair between the two beds and Luna who had dropped in to visit clutching the latest edition of The Quibbler was reading the magazine upside down and apparently not taking in a word Hermione was saying .Hes ‘the Boy Who Lived again now though isnt he ?said Ron darkly .Not such a showoff maniac anymore eh ?He helped himself to a handful of Chocolate Frogs from the immense pile on his bedside cabinet threw a few to Harry Ginny and Neville and ripped off the wrapper of his own with his teeth .There were still deep welts on his forearms where the brains tentacles had wrapped around him .According to Madam Pomfrey thoughts could leave deeper scarring than almost anything else though since she had started applying copious amounts of Dr .Ubblys Oblivious Unction there seemed to be some improvement .Yes theyre very complimentary about you now Harry said Hermione now scanning down the article . ‘A lone voice of truth .perceived as unbalanced yet never wavered in his story .forced to bear ridicule and slander .Hmmm said Hermione frowning I notice they dont mention the fact that it was them doing all the ridiculing and slandering though .She winced slightly and put a hand to her ribs .The curse Dolohov had used on her though less effective than it would have been had he been able to say the incantation aloud had nevertheless caused in Madam Pomfreys words quite enough damage to be going on with .Hermione was having to take ten different types of potion every day and although she was improving greatly was already bored with the hospital wing . ‘YouKnow Whos Last Attempt to Take Over pages two to four What the Ministry Should Have Told Us page five Why Nobody Listened to Albus Dumbledore pages six to eight Exclusive Interview with Harry Potter page nine .Well said Hermione folding up the newspaper and throwing it aside its certainly given them lots to write about .And that interview with Harry isnt exclusive its the one that was in The Quibbler months ago .Daddy sold it to them said Luna vaguely turning a page of The Quibbler .He got a very good price for it too so were going to go on an expedition to Sweden this summer and see if we can catch a Crumple Horned Snorkack .Hermione seemed to struggle with herself for a moment then said That sounds lovely .Ginny caught Harrys eye and looked away quickly grinning .So anyway said Hermione sitting up a little straighter and wincing again whats going on in school ?Well Flitwicks got rid of Fred and Georges swamp said Ginny .He did it in about three seconds .But he left a tiny patch under the window and hes roped it off Why ?said Hermione looking startled .Oh he just says it was a really good bit of magic said Ginny shrugging .I think he left it as a monument to Fred and George said Ron through a mouthful of chocolate .They sent me all these you know he told Harry pointing at the small mountain of Frogs beside him .Must be doing all right out of that joke shop eh ?Hermione looked rather disapproving and asked So has all the trouble stopped now Dumbledores back ?Yes said Neville everythings settled right back down again .I spose Filch is happy is he ?asked Ron propping a Chocolate Frog card featuring Dumbledore against his water jug .Not at all said Ginny .Hes really really miserable actually .She lowered her voice to a whisper .He keeps saying Umbridge was the best thing that ever happened to Hogwarts .All six of them looked around .Professor Umbridge was lying in a bed opposite them gazing up at the ceiling .Dumbledore had strode alone into the forest to rescue her from the centaurs .How he had done it how he had emerged from the trees supporting Professor Umbridge without so much as a scratch on him nobody knew and Umbridge was certainly not telling .Since she had returned to the castle she had not as far as any of them knew uttered a single word .Nobody really knew what was wrong with her either .Her usually neat mousy hair was very untidy and there were bits of twig and leaf in it but otherwise she seemed to be quite unscathed .Madam Pomfrey says shes just in shock whispered Hermione .Sulking more like said Ginny Yeah she shows signs of life if you do this said Ron and with his tongue he made soft clipclopping noises .Umbridge sat bolt upright looking wildly around .Anything wrong Professor ?called Madam Pomfrey poking her head around her office door .No .no .said Umbridge sinking back into her pillows no I must have been dreaming .Hermione and Ginny muffled their laughter in the bedclothes .Speaking of centaurs said Hermione when she had recovered a little whos Divination teacher now ?Is Firenze staying ?Hes got to said Harry the other centaurs wont take him back will they ?It looks like he and Trelawney are both going to teach said Ginny .Bet Dumbledore wishes he couldve got rid of Trelawney for good said Ron now munching on his fourteenth Frog .Mind you the whole subjects useless if you ask me Firenze isnt a lot better .How can you say that ?Hermione demanded .After weve just found out that there are real prophecies ?Harrys heart began to race .He had not told Ron Hermione or anyone else what the prophecy had contained .Neville had told them it had smashed while Harry was pulling him up the steps in the Death Room and Harry had not yet corrected this impression .He was not ready to see their expressions when he told them that he must be either murderer or victim there was no other way .It is a pity it broke said Hermione quietly shaking her head .Yeah it is said Ron .Still at least YouKnowWho never found out what was in it either where are you going ?he added looking both surprised and disappointed as Harry stood up .Er Hagrids said Harry .You know he just got back and I promised Id go down and see him and tell him how you two are .Oh all right then said Ron grumpily looking out of the dormitory window at the patch of bright blue sky beyond .Wish we could come .Say hello to him for us !called Hermione as Harry proceeded down the ward .And ask him whats happening about .about his little friend !Harry gave a wave of his hand to show he had heard and understood as he left the dormitory .The castle seemed very quiet even for a Sunday .Everybody was clearly out in the sunny grounds enjoying the end of their exams and the prospect of a last few days of term unhampered by studying or homework .Harry walked slowly along the deserted corridor peering out of windows as he went .He could see people messing around in the air over the Quidditch pitch and a couple of students swimming in the lake accompanied by the giant squid .He was finding it hard at the moment to decide whether he wanted to be with people or not .Whenever he was in company he wanted to get away and whenever he was alone he wanted company .He thought he might really go and visit Hagrid though he had not talked to him properly since he had returned .Harry had just descended the last marble step into the entrance hall when Malfoy Crabbe and Goyle emerged from a door on the right that Harry knew led down to the Slytherin common room .Harry stopped dead so did Malfoy and the others .For a few moments the only sounds were the shouts laughter and splashes drifting into the hall from the grounds through the open front doors .Malfoy glanced around .Harry knew he was checking for signs of teachers .Then he looked back at Harry and said in a low voice Youre dead Potter .Harry raised his eyebrows .Funny he said youd think Id have stopped walking around .Malfoy looked angrier than Harry had ever seen him .He felt a kind of detached satisfaction at the sight of his pale pointed face contorted with rage .Youre going to pay said Malfoy in a voice barely louder than a whisper .Im going to make you pay for what youve done to my father .Well Im terrified now said Harry sarcastically .I spose Lord Voldemorts just a warmup act compared to you three whats the matter ?he said for Malfoy Crabbe and Goyle had all looked stricken at the sound of the name .Hes your dads mate isnt he ?Not scared of him are you ?You think youre such a big man Potter said Malfoy advancing now Crabbe and Goyle flanking him .You wait .Ill have you .You cant land my father in prison I thought I just had said Harry .The dementors have left Azkaban said Malfoy quietly .Dad and the othersll be out in no time .Yeah I expect they will said Harry .Still at least everyone knows what scumbags they are now Malfoys hand flew toward his wand but Harry was too quick for him .He had drawn his own wand before Malfoys fingers had even entered the pocket of his robes .Potter !The voice rang across the entrance hall Snape had emerged from the staircase leading down to his office and at the sight of him Harry felt a great rush of hatred beyond anything he felt toward Malfoy .Whatever Dumbledore said he would never forgive Snape .never .What are you doing Potter ?said Snape coldly as ever as he strode over to the four of them .Im trying to decide what curse to use on Malfoy sir said Harry fiercely .Snape stared at him .Put that wand away at once he said curtly .Ten points from Gryff Snape looked toward the giant hourglasses on the walls and gave a sneering smile .Ah .I see there are no longer any points left in the Gryffindor hourglass to take away .In that case Potter we will simply have to Add some more ?Professor McGonagall had just stumped up the stone steps into the castle .She was carrying a tartan carpetbag in one hand and leaning heavily on a walking stick with her other but otherwise looked quite well .Professor McGonagall !said Snape striding forward .Out of St .Mungos I see !Yes Professor Snape said Professor McGonagall shrugging off her traveling cloak Im quite as good as new .You two Crabbe Goyle She beckoned them forward imperiously and they came shuffling their large feet and looking awkward .Here said Professor McGonagall thrusting her carpetbag into Crabbe s chest and her cloak into Goyles take these up to my office for me .They turned and stumped away up the marble staircase .Right then said Professor McGonagall looking up at the hourglasses on the wall well I think Potter and his friends ought to have fifty points apiece for alerting the world to the return of You Know Who !What say you Professor Snape ?What ?snapped Snape though Harry knew he had heard perfectly well .Oh well I suppose .So thats fifty each for Potter the two Weasleys Longbottom and Miss Granger said Professor McGonagall and a shower of rubies fell down into the bottom bulb of Gryffindors hourglass as she spoke .Oh and fifty for Miss Lovegood I suppose she added and a number of sapphires fell into Ravenclaws glass .Now you wanted to take ten from Mr Potter I think Professor Snape so there we are .A few rubies retreated into the upper bulb leaving a respectable amount below nevertheless .Well Potter Malfoy I think you ought to be outside on a glorious day like this Professor McGonagall continued briskly .Harry did not need telling twice .He thrust his wand back inside his robes and headed straight for the front doors without another glance at Snape and Malfoy .The hot sun hit him with a blast as he walked across the lawns toward Hagrids cabin .Students lying around on the grass sunbathing talking reading the Sunday Prophet and eating sweets looked up at him as he passed .Some called out to him or else waved clearly eager to show that they like the Prophet had decided he was something of a hero .Harry said nothing to any of them .He had no idea how much they knew of what had happened three days ago but he had so far avoided being questioned and preferred it that way .He thought at first when he knocked on Hagrids cabin door that he was out but then Fang came charging around the corner and almost bowled him over with the enthusiasm of his welcome .Hagrid it transpired was picking runner beans in his back garden .All righ Harry !he said beaming when Harry approached the fence .Come in come in well have a cup o dandelion juice .Hows things ?Hagrid asked him as they settled down at his wooden table with a glass apiece of iced juice .You er feelin all righ are yeh ?Harry knew from the look of concern on Hagrids face that he was not referring to Harrys physical well being .Im fine Harry said quickly because he could not bear to discuss the thing that he knew was in Hagrids mind .So whereve you been ?Bin hidin out in the mountains said Hagrid .Up in a cave like Sirius did when he Hagrid broke off cleared his throat gruffly looked at Harry and took a long draft of juice .Anyway back now he said feebly .You you look better said Harry who was determined to keep the conversation moving away from Sirius .Wha ?said Hagrid raising a massive hand and feeling his face .Oh oh yeah .Well Grawpys loads better behaved now loads .Seemed right pleased ter see me when I got back ter tell yeh the truth .Hes a good lad really .Ive bin thinkin abou tryin ter find him a lady friend actually .Harry would normally have tried to persuade Hagrid out of this idea at once .The prospect of a second giant taking up residence in the forest possibly even wilder and more brutal than Grawp was positively alarming but somehow Harry could not muster the energy necessary to argue the point .He was starting to wish he was alone again and with the idea of hastening his departure he took several large gulps of his dandelion juice half emptying his glass .Evryone knows youve bin tellin the truth now Harry said Hagrid softly and unexpectedly .Thas gotta be better hasn it ?Harry shrugged .Look .Hagrid leaned toward him across the table I knew Sirius longer n you did .He died in battle an thas the way hedve wanted ter go He didnt want to go at all !said Harry angrily .Hagrid bowed his great shaggy head .Nah I don reckon he did he said quietly .But still Harry .he was never one ter sit around at home an let other people do the fightin .He couldn have lived with himself if he hadn gone ter help Harry leapt up again .Ive got to go and visit Ron and Hermione in the hospital wing he said mechanically .Oh said Hagrid looking rather upset .Oh .all righ then Harry .Take care of yerself then an drop back in if yehve got a mo .Yeah .right .Harry crossed to the door as fast as he could and pulled it open .He was out in the sunshine again before Hagrid had finished saying goodbye and walked away across the lawn .Once again people called out to him as he passed .He closed his eyes for a few moments wishing they would all vanish that he could open his eyes and find himself alone in the grounds .A few days ago before his exams had finished and he had seen the vision Voldemort had planted in his mind he would have given almost anything for the Wizarding world to know that he had been telling the truth for them to believe that Voldemort was back and know that he was neither a liar nor mad .Now however .He walked a short way around the lake sat down on its bank sheltered from the gaze of passersby behind a tangle of shrubs and stared out over the gleaming water thinking .Perhaps the reason he wanted to be alone was because he had felt isolated from everybody since his talk with Dumbledore .An invisible barrier separated him from the rest of the world .He was he had always been a marked man .It was just that he had never really understood what that meant .And yet sitting here on the edge of the lake with the terrible weight of grief dragging at him with the loss of Sirius so raw and fresh inside he could not muster any great sense of fear .It was sunny and the grounds around him were full of laughing people and even though he felt as distant from them as though he belonged to a different race it was still very hard to believe as he sat here that his life must include or end in murder .He sat there for a long time gazing out at the water trying not to think about his godfather or to remember that it was directly across from here on the opposite bank that Sirius had collapsed trying to fend off a hundred dementors .The sun had fallen before he realized that he was cold .He got up and returned to the castle wiping his face on his sleeve as he went .Ron and Hermione left the hospital wing completely cured three days before the end of term .Hermione showed signs of wanting to talk about Sirius but Ron tended to make hushing noises every time she mentioned his name .Harry was not sure whether or not he wanted to talk about his godfather yet his wishes varied with his mood .He knew one thing though Unhappy as he felt at the moment he would greatly miss Hogwarts in a few days time when he was back at number four Privet Drive .Even though he now understood exactly why he had to return there every summer he did not feel any better about it .Indeed he had never dreaded his return more .Professor Umbridge left Hogwarts the day before the end of term .It seemed that she had crept out of the hospital wing during dinnertime evidently hoping to depart undetected but unfortunately for her she met Peeves on the way who seized his last chance to do as Fred had instructed and chased her gleefully from the premises whacking her alternately with a walking stick and a sock full of chalk .Many students ran out into the entrance hall to watch her running away down the path and the Heads of Houses tried only halfheartedly to restrain their pupils .Indeed Professor McGonagall sank back into her chair at the staff table after a few feeble remonstrances and was clearly heard to express a regret that she could not run cheering after Umbridge herself because Peeves had borrowed her walking stick .Their last evening at school arrived most people had finished packing and were already heading down to the endofterm feast but Harry had not even started .Just do it tomorrow !said Ron who was waiting by the door of their dormitory .Come on Im starving .I wont be long .Look you go ahead .But when the dormitory door closed behind Ron Harry made no effort to speed up his packing .The very last thing he wanted to do was to attend the end ofterm feast .He was worried that Dumbledore would make some reference to him in his speech .He was sure to mention Voldemorts return he had talked to them about it last year after all .Harry pulled some crumpled robes out of the very bottom of his trunk to make way for folded ones and as he did so noticed a badly wrapped package lying in a corner of it .He could not think what it was doing there .He bent down pulled it out from underneath his trainers and examined it .He realized what it was within seconds .Sirius had given it to him just inside the front door of twelve Grimmauld Place .Use it if you need me all right ?Harry sank down onto his bed and unwrapped the package .Out fell a small square mirror .It looked old it was certainly dirty .Harry held it up to his face and saw his own reflection looking back at him .He turned the mirror over .There on the reverse side was a scribbled note from Sirius .This is a twoway mirror .Ive got the other .If you need to speak to me just say my name into it youll appear in my mirror and Ill be able to talk in yours .James and I used to use them when we were in separate detentions .And Harrys heart began to race .He remembered seeing his dead parents in the Mirror of Erised four years ago .He was going to be able to talk to Sirius again right now he knew it He looked around to make sure there was nobody else there the dormitory was quite empty .He looked back at the mirror raised it in front of his face with trembling hands and said loudly and clearly Sirius .His breath misted the surface of the glass .He held the mirror even closer excitement flooding through him but the eyes blinking back at him through the fog were definitely his own .He wiped the mirror clear again and said so that every syllable rang clearly through the room Sirius Black !Nothing happened .The frustrated face looking back out of the mirror was still definitely his own .Sirius didnt have his mirror on him when he went through the archway said a small voice in Harrys head .Thats why its not working .Harry remained quite still for a moment then hurled the mirror back into the trunk where it shattered .He had been convinced for a whole shining minute that he was going to see Sirius talk to him again .Disappointment was burning in his throat .He got up and began throwing his things pellmell into the trunk on top of the broken mirror But then an idea struck him .A better idea than a mirror .A much bigger more important idea .How had he never thought of it before why had he never asked ?He was sprinting out of the dormitory and down the spiral staircase hitting the walls as he ran and barely noticing .He hurtled across the empty common room through the portrait hole and off along the corridor ignoring the Fat Lady who called after him The feast is about to start you know youre cutting it very fine !But Harry had no intention of going to the feast .How could it be that the place was full of ghosts whenever you didnt need one yet now .He ran down staircases and along corridors and met nobody either alive or dead .They were all clearly in the Great Hall .Outside his Charms classroom he came to a halt panting and thinking disconsolately that he would have to wait until later until after the end of the feast .But just as he had given up hope he saw it a translucent somebody drifting across the end of the corridor .Hey hey Nick !NICK !The ghost stuck its head back out of the wall revealing the extravagantly plumed hat and dangerously wobbling head of Sir Nicholas de Mimsy Porpington .Good evening he said withdrawing the rest of his body from the solid stone and smiling at Harry .I am not the only one who is late then ?Though he sighed in rather different senses of course .Nick can I ask you something ?A most peculiar expression stole over Nearly Headless Nicks face as he inserted a finger in the stiff ruff at his neck and tugged it a little straighter apparently to give himself thinking time .He desisted only when his partially severed neck seemed about to give way completely .Er now Harry ?said Nick looking discomforted .Cant it wait until after the feast ?No Nick please said Harry I really need to talk to you .Can we go in here ?Harry opened the door of the nearest classroom and Nearly Headless Nick sighed .Oh very well he said looking resigned .I cant pretend I havent been expecting it .Harry was holding the door open for him but he drifted through the wall instead .Expecting what ?Harry asked as he closed the door .You to come and find me said Nick now gliding over to the window and looking out at the darkening grounds .It happens sometimes .when somebody has suffered a .loss .Well said Harry refusing to be deflected .You were right Ive Ive come to find you .Nick said nothing .Its said Harry who was finding this more awkward than he had anticipated its just youre dead .But youre still here arent you ?Nick sighed and continued to gaze out at the grounds .Thats right isnt it ?Harry urged him .You died but Im talking to you .You can walk around Hogwarts and everything cant you ?Yes said Nearly Headless Nick quietly I walk and talk yes .So you came back didnt you ?said Harry urgently .People can come back right ?As ghosts .They dont have to disappear completely .Well ?he added impatiently when Nick continued to say nothing .Nearly Headless Nick hesitated then said Not everyone can come back as a ghost .What dyou mean ?said Harry quickly .Only .only wizards .Oh said Harry and he almost laughed with relief .Well thats okay then the person Im asking about is a wizard .So he can come back right ?Nick turned away from the window and looked mournfully at Harry .He wont come back .Who ?Sirius Black said Nick .But you did !said Harry angrily .You came back youre dead and you didnt disappear Wizards can leave an imprint of themselves upon the earth to walk palely where their living selves once trod said Nick miserably .But very few wizards choose that path .Why not ?said Harry .Anyway it doesnt matter Sirius wont care if its unusual hell come back I know he will !And so strong was his belief that Harry actually turned his head to check the door sure for a split second that he was going to see Sirius pearly white and transparent but beaming walking through it toward him .He will not come back repeated Nick quietly .He will have .gone on .What dyou mean ‘gone on ?said Harry quickly .Gone on where ?Listen what happens when you die anyway ?Where do you go ?Why doesnt everyone come back ?Why isnt this place full of ghosts ?Why ?I cannot answer said Nick .Youre dead arent you ?said Harry exasperatedly .Who can answer better than you ?I was afraid of death said Nick .I chose to remain behind .I sometimes wonder whether I oughtnt to have .Well that is neither here nor there .In fact I am neither here nor there .He gave a small sad chuckle .I know nothing of the secrets of death Harry for I chose my feeble imitation of life instead .I believe learned wizards study the matter in the Department of Mysteries Dont talk to me about that place !said Harry fiercely .I am sorry not to have been more help said Nick gently .Well .well do excuse me .the feast you know .And he left the room leaving Harry there alone gazing blankly at the wall through which Nick had disappeared .Harry felt almost as though he had lost his godfather all over again in losing the hope that he might be able to see or speak to him once more .He walked slowly and miserably back up through the empty castle wondering whether he would ever feel cheerful again .He had turned the corner toward the Fat Ladys corridor when he saw somebody up ahead fastening a note to a board on the wall .A second glance showed him that it was Luna .There were no good hiding places nearby she was bound to have heard his footsteps and in any case Harry could hardly muster the energy to avoid anyone at the moment .Hello said Luna vaguely glancing around at him as she stepped back from the notice .How come youre not at the feast ?Harry asked .Well Ive lost most of my possessions said Luna serenely .People take them and hide them you know .But as its the last night I really do need them back so Ive been putting up signs .She gestured toward the notice board upon which sure enough she had pinned a list of all her missing books and clothes with a plea for their return .An odd feeling rose in Harry an emotion quite different from the anger and grief that had filled him since Siriuss death .It was a few moments before he realized that he was feeling sorry for Luna .How come people hide your stuff ?he asked her frowning .Oh .well .She shrugged .I think they think Im a bit odd you know .Some people call me ‘Loony Lovegood actually .Harry looked at her and the new feeling of pity intensified rather painfully .Thats no reason for them to take your things he said flatly .Dyou want help finding them ?Oh no she said smiling at him .Theyll come back they always do in the end .It was just that I wanted to pack tonight .Anyway .why arent you at the feast ?Harry shrugged .Just didnt feel like it .No said Luna observing him with those oddly misty protuberant eyes .I dont suppose you do .That man the Death Eaters killed was your godfather wasnt he ?Ginny told me .Harry nodded curtly but found that for some reason he did not mind Luna talking about Sirius .He had just remembered that she too could see thestrals .Have you .he began .I mean who .has anyone youve known ever died ?Yes said Luna simply my mother .She was a quite extraordinary witch you know but she did like to experiment and one of her spells went rather badly wrong one day .I was nine .Im sorry Harry mumbled .Yes it was rather horrible said Luna conversationally .I still feel very sad about it sometimes .But Ive still got Dad .And anyway its not as though Ill never see Mum again is it ?Er isnt it ?said Harry uncertainly .She shook her head in disbelief .Oh come on .You heard them just behind the veil didnt you ?You mean .In that room with the archway .They were just lurking out of sight thats all .You heard them .They looked at each other .Luna was smiling slightly .Harry did not know what to say or to think .Luna believed so many extraordinary things .yet he had been sure he had heard voices behind the veil too .Are you sure you dont want me to help you look for your stuff ?he said .Oh no said Luna .No I think Ill just go down and have some pudding and wait for it all to turn up .It always does in the end .Well have a nice holiday Harry .Yeah .yeah you too .She walked away from him and as he watched her go he found that the terrible weight in his stomach seemed to have lessened slightly .The journey home on the Hogwarts Express next day was eventful in several ways .Firstly Malfoy Crabbe and Goyle who had clearly been waiting all week for the opportunity to strike without teacher witnesses attempted to ambush Harry halfway down the train as he made his way back from the toilet .The attack might have succeeded had it not been for the fact that they unwittingly chose to stage the attack right outside a compartment full of D .A .members who saw what was happening through the glass and rose as one to rush to Harrys aid .By the time Ernie Macmillan Hannah Abbott Susan Bones Justin Page llOOHarry Potter and the Order of the Phoenix J .K .FinchFletchley Anthony Goldstein and Terry Boot had finished using a wide variety of the hexes and jinxes Harry had taught them Malfoy Crabbe and Goyle resembled nothing so much as three gigantic slugs squeezed into Hogwarts uniforms as Harry Ernie and Justin hoisted them into the luggage rack and left them there to ooze .I must say Im looking forward to seeing Malfoys mothers face when he gets off the train said Ernie with some satisfaction as he watched Malfoy squirm above him .Ernie had never quite got over the indignity of Malfoy docking points from Hufflepuff during his brief spell as a member of the Inquisitorial Squad .Goyles mumll be really pleased though said Ron who had come to investigate the source of the commotion .Hes loads betterlooking now .Anyway Harry the food trolleys just stopped if you want anything .Harry thanked the others and accompanied Ron back to their compartment where he bought a large pile of Cauldron Cakes and Pumpkin Pasties .Hermione was reading the Daily Prophet again Ginny was doing a quiz in The Quibbler and Neville was stroking his Mimbulus mimbletonia which had grown a great deal over the year and now made odd crooning noises when touched .Harry and Ron whiled away most of the journey playing wizard chess while Hermione read out snippets from the Prophet It was now full of articles about how to repel dementors attempts by the Ministry to track down Death Eaters and hysterical letters claiming that the writer had seen Lord Voldemort walking past their house that very morning .Page llOlHarry Potter and the Order of the Phoenix J .K .It hasnt really started yet sighed Hermione gloomily folding up the newspaper again .But it wont be long now .Hey Harry said Ron nodding toward the glass window onto the corridor .Harry looked around .Cho was passing accompanied by Marietta Edgecombe who was wearing a balaclava .His and Chos eyes met for a moment .Cho blushed and kept walking .Harry looked back down at the chessboard just in time to see one of his pawns chased off its square by Rons knight .Whats er going on with you and her anyway ?Ron asked quietly .Nothing said Harry truthfully .I er heard shes going out with someone else now said Hermione tentatively .Harry was surprised to find that this information did not hurt at all .Wanting to impress Cho seemed to belong to a past that was no longer quite connected with him .So much of what he had wanted before Siriuss death felt that way these days .The week that had elapsed since he had last seen Sirius seemed to have lasted much much longer It stretched across two universes the one with Sirius in it and the one without .Youre well out of it mate said Ron forcefully .I mean shes quite goodlooking and all that but you want someone a bit more cheerful .Shes probably cheerful enough with someone else said Harry shrugging .Whos she with now anyway ?Ron asked Hermione but it was Ginny who answered .Michael Corner she said .Michael but said Ron craning around in his seat to stare at her .But you were going out with him !Not anymore said Ginny resolutely .He didnt like Gryffindor beating Ravenclaw at Quidditch and got really sulky so I ditched him and he ran off to comfort Cho instead .She scratched her nose absently with the end of her quill turned The Quibbler upside down and began marking her answers .Ron looked highly delighted .Well I always thought he was a bit of an idiot he said prodding his queen forward toward Harrys quivering castle .Good for you .Just choose someone better next time .He cast Harry an oddly furtive look as he said it .Well Ive chosen Dean Thomas would you say hes better ?asked Ginny vaguely .WHAT ?shouted Ron upending the chessboard .Crookshanks went plunging after the pieces and Hedwig and Pigwidgeon twittered and hooted angrily from overhead .As the train slowed down in the approach to Kings Cross Harry thought he had never wanted to leave it less .He even wondered fleetingly what would happen if he simply refused to get off but remained stubbornly sitting there until the first of September when it would take him back to Hogwarts .When it finally puffed to a standstill however he lifted down Hedwigs cage and prepared to drag his trunk from the train as usual .When the ticket inspector signaled to him Ron and Hermione that it was safe to walk through the magical barrier between platforms nine and ten however he found a surprise awaiting him on the other side a group of people standing there to greet him whom he had not expected at all .There was MadEye Moody looking quite as sinister with his bowler hat pulled low over his magical eye as he would have done without it his gnarled hands clutching a long staff his body wrapped in a voluminous traveling cloak .Tonks stood just behind him her bright bubblegumpink hair gleaming in the sunlight filtering through the dirty glass station ceiling wearing heavily patched jeans and a bright purple Tshirt bearing the legend THE WEIRD SISTERS .Next to Tonks was Lupin his face pale his hair graying a long and threadbare overcoat covering a shabby jumper and trousers .At the front of the group stood Mr and Mrs Weasley dressed in their Muggle best and Fred and George who were both wearing brandnew jackets in some lurid green scaly material .Ron Ginny !called Mrs Weasley hurrying forward and hugging her children tightly .Oh and Harry dear how are you ?Fine lied Harry as she pulled him into a tight embrace .Over her shoulder he saw Ron goggling at the twins new clothes .What are they supposed to be ?he asked pointing at the jackets .Finest dragon skin little bro said Fred giving his zip a little tweak .Business is booming and we thought wed treat ourselves .Hello Harry said Lupin as Mrs Weasley let go of Harry and turned to greet Hermione .Hi said Harry .I didnt expect .what are you all doing here ?Well said Lupin with a slight smile we thought we might have a little chat with your aunt and uncle before letting them take you home .I dunno if thats a good idea said Harry at once .Oh I think it is growled Moody who had limped a little closer .Thatll be them will it Potter ?He pointed with his thumb over his shoulder his magical eye was evidently peering through the back of his head and his bowler hat .Harry leaned an inch or so to the left to see where MadEye was pointing and there sure enough were the three Dursleys who looked positively appalled to see Harrys reception committee .Ah Harry !said Mr Weasley turning from Hermiones parents whom he had been greeting enthusiastically and who were taking it in turns to hug Hermione .Well shall we do it then ?Yeah I reckon so Arthur said Moody .He and Mr Weasley took the lead across the station toward the place where the Dursleys stood apparently rooted to the floor .Hermione disengaged herself gently from her mother to join the group .Good afternoon said Mr Weasley pleasantly to Uncle Vernon coming to a halt right in front of him .You might remember me my names Arthur Weasley .As Mr Weasley had singlehandedly demolished most of the Dursleys living room two years previously Harry would have been very surprised if Uncle Vernon had forgotten him .Sure enough Uncle Vernon turned a deeper shade of puce and glared at Mr Weasley but chose not to say anything partly perhaps because the Dursleys were outnumbered two to one .Aunt Petunia looked both frightened and embarrassed .She kept glancing around as though terrified somebody she knew would see her in such company .Dudley meanwhile seemed to be trying to look small and insignificant a feat at which he was failing extravagantly .We thought wed just have a few words with you about Harry said Mr Weasley still smiling .Yeah growled Moody .About how hes treated when hes at your place .Uncle Vernons mustache seemed to bristle with indignation .Possibly because the bowler hat gave him the entirely mistaken impression that he was dealing with a kindred spirit he addressed himself to Moody .I am not aware that it is any of your business what goes on in my house I expect what youre not aware of would fill several books Dursley growled Moody .Anyway thats not the point interjected Tonks whose pink hair seemed to offend Aunt Petunia more than all the rest put together for she closed her eyes rather than look at her .The point is if we find out youve been horrible to Harry and make no mistake well hear about it added Lupin pleasantly .Yes said Mr Weasley even if you wont let Harry use the fellytone Telephone whispered Hermione .Yeah if we get any hint that Potters been mistreated in any way youll have us to answer to said Moody .Uncle Vernon swelled ominously .His sense of outrage seemed to outweigh even his fear of this bunch of oddballs .Are you threatening me sir ?he said so loudly that passersby actually turned to stare .Yes I am said MadEye who seemed rather pleased that Uncle Vernon had grasped this fact so quickly .And do I look like the kind of man who can be intimidated ?barked Uncle Vernon .Well .said Moody pushing back his bowler hat to reveal his sinisterly revolving magical eye .Uncle Vernon leapt backward in horror and collided painfully with a luggage trolley .Yes Id have to say you do Dursley .He turned from Uncle Vernon to Harry .So Potter .give us a shout if you need us .If we dont hear from you for three days in a row well send someone along .Aunt Petunia whimpered piteously .It could not have been plainer that she was thinking of what the neighbors would say if they caught sight of these people marching up the garden path .T3ye then Potter said Moody grasping Harrys shoulder for a moment with a gnarled hand .Take care Harry said Lupin quietly .Keep in touch .Harry well have you away from there as soon as we can Mrs Weasley whispered hugging him again .Well see you soon mate said Ron anxiously shaking Harrys hand .Really soon Harry said Hermione earnestly .We promise .Harry nodded .He somehow could not find words to tell them what it meant to him to see them all ranged there on his side .Instead he smiled raised a hand in farewell turned around and led the way out of the station toward the sunlit street with Uncle Vernon Aunt Petunia and Dudley hurrying along in his wake .J THE OTHER MINISTER It was nearing midnight and the Prime Minister was sitting alone in his office reading a long memo that was slipping through his brain without leaving the slightest trace of meaning behind .He was waiting for a call from the President of a far distant country and between wondering when the wretched man would telephone and trying to suppress unpleasant memories of what had been a very long tiring and difficult week there was not much space in his head for anything else .The more he attempted to focus on the print on the page before him the more clearly the Prime Minister could see the gloating face of one of his political opponents .This particular opponent had appeared on the news that very day not only to enumerate all the terrible things that had happened in the last week as though anyone needed reminding but also to explain why each and every one of them was the governments fault .The Prime Ministers pulse quickened at the very thought of these accusations for they were neither fair nor true .How on earth was his government supposed to have stopped that bridge collapsing ?It was outrageous for anybody to suggest that they were not spending enough on bridges .The bridge was fewer than ten years old and the best experts were at a loss to explain why it had snapped cleanly in two sending a dozen cars into the watery depths of the river below .And how dare anyone suggest that it was lack of policemen that had resulted in those two very nasty and wellpublicized murders ?Or that the government should have somehow foreseen the freak hurricane in the West Country that had caused so much damage to both people and property ?And was it his fault that one of his Junior Ministers Herbert Chorley had chosen this week to act so peculiarly that he was now going to be spending a lot more time with his family ?A grim mood has gripped the country the opponent had concluded barely concealing his own broad grin .And unfortunately this was perfectly true .The Prime Minister felt it himself people really did seem more miserable than usual .Even the weather was dismal all this chilly mist in the middle of July .It wasnt right it wasnt normal .He turned over the second page of the memo saw how much longer it went on and gave it up as a bad job .Stretching his arms above his head he looked around his office mournfully .It was a handsome room with a fine marble fireplace facing the long sash windows firmly closed against the unseasonable chill .With a slight shiver the Prime Minister got up and moved over to the window looking out at the thin mist that was pressing itself against the glass .It was then as he stood with his back to the room that he heard a soft cough behind him .He froze nose to nose with his own scaredlooking reflection in the dark glass .He knew that cough .He had heard it before .He turned very slowly to face the empty room .Hello ?he said trying to sound braver than he felt .For a brief moment he allowed himself the impossible hope that nobody would answer him .However a voice responded at once a crisp decisive voice that sounded as though it were reading a prepared statement .It was coming as the Prime Minister had known at the first cough from the froglike little man wearing a long silver wig who was depicted in a small dirty oil painting in the far corner of the room .To the Prime Minister of Muggles .Urgent we meet .Kindly respond immediately .Sincerely Fudge .The man in the painting looked inquiringly at the Prime Minister .Er said the Prime Minister listen .Its not a very good time for me .Im waiting for a telephone call you see .from the President of That can be rearranged said the portrait at once .The Prime Ministers heart sank .He had been afraid of that .But I really was rather hoping to speak We shall arrange for the President to forget to call .He will telephone tomorrow night instead said the little man .Kindly respond immediately to Mr Fudge .I .oh .very well said the Prime Minister weakly .Yes Ill see Fudge .He hurried back to his desk straightening his tie as he went .He had barely resumed his seat and arranged his face into what he hoped was a relaxed and unfazed expression when bright green flames burst into life in the empty grate beneath his marble mantelpiece .He watched trying not to betray a flicker of surprise or alarm as a portly man appeared within the flames spinning as fast as a top .Seconds later he had climbed out onto a rather fine antique rug brushing ash from the sleeves of his long pinstriped cloak a limegreen bowler hat in his hand .Ah .Prime Minister said Cornelius Fudge striding forward with his hand outstretched .Good to see you again .The Prime Minister could not honestly return this compliment so said nothing at all .He was not remotely pleased to see Fudge whose occasional appearances apart from being downright alarming in themselves generally meant that he was about to hear some very bad news .Furthermore Fudge was looking distinctly careworn .He was thinner balder and grayer and his face had a crumpled look .The Prime Minister had seen that kind of look in politicians before and it never boded well .How can I help you ?he said shaking Fudges hand very briefly and gesturing toward the hardest of the chairs in front of the desk .Difficult to know where to begin muttered Fudge pulling up the chair sitting down and placing his green bowler upon his knees .What a week what a week .Had a bad one too have you ?asked the Prime Minister stiffly hoping to convey by this that he had quite enough on his plate already without any extra helpings from Fudge .Yes of course said Fudge rubbing his eyes wearily and looking morosely at the Prime Minister .Ive been having the same week you have Prime Minister .The Brockdale Bridge .the Bones and Vance murders .not to mention the ruckus in the West Country .You er your I mean to say some of your people were were involved in those those things were they ?Fudge fixed the Prime Minister with a rather stern look .Of course they were he said .Surely youve realized whats going on ?I .hesitated the Prime Minister .It was precisely this sort of behavior that made him dislike Fudges visits so much .He was after all the Prime Minister and did not appreciate being made to feel like an ignorant schoolboy .But of course it had been like this from his very first meeting with Fudge on his very first evening as Prime Minister .He remembered it as though it were yesterday and knew it would haunt him until his dying day .He had been standing alone in this very office savoring the triumph that was his after so many years of dreaming and scheming when he had heard a cough behind him just like tonight and turned to find that ugly little portrait talking to him announcing that the Minister of Magic was about to arrive and introduce himself .Naturally he had thought that the long campaign and the strain of the election had caused him to go mad .He had been utterly terrified to find a portrait talking to him though this had been nothing to how he felt when a selfproclaimed wizard had bounced out of the fireplace and shaken his hand .He had remained speechless throughout Fudges kindly explanation that there were witches and wizards still living in secret all over the world and his reassurances that he was not to bother his head about them as the Ministry of Magic took responsibility for the whole Wizarding community and prevented the nonmagical population from getting wind of them .It was said Fudge a difficult job that encompassed everything from regulations on responsible use of broomsticks to keeping the dragon population under control the Prime Minister remembered clutching the desk for support at this point .Fudge had then patted the shoulder of the stilldumbstruck Prime Minister in a fatherly sort of way .Not to worry he had said its oddson youll never see me again .Ill only bother you if theres something really serious going on our end something thats likely to affect the Muggles the nonmagical population I should say .Otherwise its live and let live .And I must say youre taking it a lot better than your predecessor .He tried to throw me out the window thought I was a hoax planned by the opposition .At this the Prime Minister had found his voice at last .Youre youre not a hoax then ?It had been his last desperate hope .No said Fudge gently .No Im afraid Im not .Look .And he had turned the Prime Ministers teacup into a gerbil .But said the Prime Minister breathlessly watching his teacup chewing on the corner of his next speech but why why has nobody told me ?The Minister of Magic only reveals him or herself to the Muggle Prime Minister of the day said Fudge poking his wand back inside his jacket .We find it the best way to maintain secrecy .But then bleated the Prime Minister why hasnt a former Prime Minister warned me ?At this Fudge had actually laughed .My dear Prime Minister are you ever going to tell anybody ?Still chortling Fudge had thrown some powder into the fireplace stepped into the emerald flames and vanished with a whooshing sound .The Prime Minister had stood there quite motionless and realized that he would never as long as he lived dare mention this encounter to a living soul for who in the wide world would believe him ?The shock had taken a little while to wear off .For a time he had tried to convince himself that Fudge had indeed been a hallucination brought on by lack of sleep during his grueling election campaign .In a vain attempt to rid himself of all reminders of this uncomfortable encounter he had given the gerbil to his delighted niece and instructed his private secretary to take down the portrait of the ugly little man who had announced Fudges arrival .To the Prime Ministers dismay however the portrait had proved impossible to remove .When several carpenters a builder or two an art historian and the Chancellor of the Exchequer had all tried unsuccessfully to prise it from the wall the Prime Minister had abandoned the attempt and simply resolved to hope that the thing remained motionless and silent for the rest of his term in office .Occasionally he could have sworn he saw out of the corner of his eye the occupant of the painting yawning or else scratching his nose even once or twice simply walking out of his frame and leaving nothing but a stretch of muddybrown canvas behind .However he had trained himself not to look at the picture very much and always to tell himself firmly that his eyes were playing tricks on him when anything like this happened .Then three years ago on a night very like tonight the Prime Minister had been alone in his office when the portrait had once again announced the imminent arrival of Fudge who had burst out of the fireplace sopping wet and in a state of considerable panic .Before the Prime Minister could ask why he was dripping all over the Axminster Fudge had started ranting about a prison the Prime Minister had never heard of a man named Serious Black something that sounded like Hogwarts and a boy called Harry Potter none of which made the remotest sense to the Prime Minister . .Fve just come from Azkaban Fudge had panted tipping a large amount of water out of the rim of his bowler hat into his pocket .Middle of the North Sea you know nasty flight .the dementors are in uproar he shuddered theyve never had a breakout before .Anyway I had to come to you Prime Minister .Blacks a known Muggle killer and may be planning to rejoin YouKnowWho .But of course you dont even know who YouKnowWho is !He had gazed hopelessly at the Prime Minister for a moment then said Well sit down sit down Id better fill you in .Have a whiskey .The Prime Minister rather resented being told to sit down in his own office let alone offered his own whiskey but he sat nevertheless .Fudge pulled out his wand conjured two large glasses full of amber liquid out of thin air pushed one of them into the Prime Ministers hand and drew up a chair .Fudge had talked for more than an hour .At one point he had refused to say a certain name aloud and wrote it instead on a piece of parchment which he had thrust into the Prime Ministers whiskeyfree hand .When at last Fudge had stood up to leave the Prime Minister had stood up too .So you think that .He had squinted down at the name in his left hand .Lord Vol HeWhoMustNotBeNamed snarled Fudge .Im sorry .You think that HeWhoMustNotBe Named is still alive then ?Well Dumbledore says he is said Fudge as he had fastened his pinstriped cloak under his chin but weve never found him .If you ask me hes not dangerous unless hes got support so its Black we ought to be worrying about .Youll put out that warning then ?Excellent .Well I hope we dont see each other again Prime Minister !Good night .But they had seen each other again .Less than a year later a harassedlooking Fudge had appeared out of thin air in the cabinet room to inform the Prime Minister that there had been a spot of bother at the Kwidditch or that was what it had sounded like World Cup and that several Muggles had been involved but that the Prime Minister was not to worry the fact that YouKnow Whos Mark had been seen again meant nothing Fudge was sure it was an isolated incident and the Muggle Liaison Office was dealing with all memory modifications as they spoke .Oh and I almost forgot Fudge had added .Were importing three foreign dragons and a sphinx for the Triwizard Tournament quite routine but the Department for the Regulation and Control of Magical Creatures tells me that its down in the rule book that we have to notify you if were bringing highly dangerous creatures into the country .I what dragons ?spluttered the Prime Minister .Yes three said Fudge .And a sphinx .Well good day to you .The Prime Minister had hoped beyond hope that dragons and sphinxes would be the worst of it but no .Less than two years later Fudge had erupted out of the fire yet again this time with the news that there had been a mass breakout from Azkaban .A mass breakout ?repeated the Prime Minister hoarsely .No need to worry no need to worry !shouted Fudge already with one foot in the flames .Well have them rounded up in no time just thought you ought to know !And before the Prime Minister could shout Now wait just one moment !Fudge had vanished in a shower of green sparks .Whatever the press and the opposition might say the Prime Minister was not a foolish man .It had not escaped his notice that despite Fudges assurances at their first meeting they were now seeing rather a lot of each other nor that Fudge was becoming more flustered with each visit .Little though he liked to think about the Minister of Magic or as he always called Fudge in his head the Other Minister the Prime Minister could not help but fear that the next time Fudge appeared it would be with graver news still .The sight therefore of Fudge stepping out of the fire once more looking disheveled and fretful and sternly surprised that the Prime Minister did not know exactly why he was there was about the worst thing that had happened in the course of this extremely gloomy week .How should I know whats going on in the er Wizarding community ?snapped the Prime Minister now .I have a country to run and quite enough concerns at the moment without We have the same concerns Fudge interrupted .The Brockdale Bridge didnt wear out .That wasnt really a hurricane .Those murders were not the work of Muggles .And Herbert Chorleys family would be safer without him .We are currently making arrangements to have him transferred to St .Mungos Hospital for Magical Maladies and Injuries .The move should be effected tonight .What do you .Im afraid I .What ?blustered the Prime Minister .Fudge took a great deep breath and said Prime Minister I am very sorry to have to tell you that hes back .HeWhoMustNotBeNamed is back .Back ?When you say ‘back .hes alive ?I mean The Prime Minister groped in his memory for the details of that horrible conversation of three years previously when Fudge had told him about the wizard who was feared above all others the wizard who had committed a thousand terrible crimes before his mysterious disappearance fifteen years earlier .Yes alive said Fudge .That is I dont know is a man alive if he cant be killed ?I dont really understand it and Dumbledore wont explain properly but anyway hes certainly got a body and is walking and talking and killing so I suppose for the purposes of our discussion yes hes alive .The Prime Minister did not know what to say to this but a persistent habit of wishing to appear well informed on any subject that came up made him cast around for any details he could remember of their previous conversations .Is Serious Black with er HeWhoMustNotBe Named ?Black ?Black ?said Fudge distractedly turning his bowler rapidly in his fingers .Sirius Black you mean ?Merlins beard no .Blacks dead .Turns out we were er mistaken about Black .He was innocent after all .And he wasnt in league with HeWhoMust NotBeNamed either .I mean he added defensively spinning the bowler hat still faster all the evidence pointed we had more than fifty eyewitnesses but anyway as I say hes dead .Murdered as a matter of fact .On Ministry of Magic premises .Theres going to be an inquiry actually .To his great surprise the Prime Minister felt a fleeting stab of pity for Fudge at this point .It was however eclipsed almost immediately by a glow of smugness at the thought that deficient though he himself might be in the area of materializing out of fireplaces there had never been a murder in any of the government departments under his charge .Not yet anyway .While the Prime Minister surreptitiously touched the wood of his desk Fudge continued But Blacks by theby now .The point is were at war Prime Minister and steps must be taken .At war ?repeated the Prime Minister nervously .Surely thats a little bit of an overstatement ?HeWhoMustNotBeNamed has now been joined by those of his followers who broke out of Azkaban in January said Fudge speaking more and more rapidly and twirling his bowler so fast that it was a limegreen blur .Since they have moved into the open they have been wreaking havoc .The Brockdale Bridge he did it Prime Minister he threatened a mass Muggle killing unless I stood aside for him and Good grief so its your fault those people were killed and Im having to answer questions about rusted rigging and corroded expansion joints and I dont know what else !said the Prime Minister furiously .My fault !said Fudge coloring up .Are you saying you would have caved in to blackmail like that ?Maybe not said the Prime Minister standing up and striding about the room but I would have put all my efforts into catching the blackmailer before he committed any such atrocity !Do you really think I wasnt already making every effort ?demanded Fudge heatedly .Every Auror in the Ministry was and is trying to find him and round up his followers but we happen to be talking about one of the most powerful wizards of all time a wizard who has eluded capture for almost three decades !So I suppose youre going to tell me he caused the hurricane in the West Country too ?said the Prime Minister his temper rising with every pace he took .It was infuriating to discover the reason for all these terrible disasters and not to be able to tell the public almost worse than it being the governments fault after all .That was no hurricane said Fudge miserably .Excuse me !barked the Prime Minister now positively stamping up and down .Trees uprooted roofs ripped off lampposts bent horrible injuries It was the Death Eaters said Fudge .HeWhoMust NotBeNameds followers .And .and we suspect giant involvement .The Prime Minister stopped in his tracks as though he had hit an invisible wall .What involvement ?Fudge grimaced .He used giants last time when he wanted to go for the grand effect he said .The Office of Misinformation has been working around the clock weve had teams of Obliviators out trying to modify the memories of all the Muggles who saw what really happened weve got most of the Department for the Regulation and Control of Magical Creatures running around Somerset but we cant find the giant its been a disaster .You dont say !said the Prime Minister furiously .I wont deny that morale is pretty low at the Ministry said Fudge .What with all that and then losing Amelia Bones .Losing who ?Amelia Bones .Head of the Department of Magical Law Enforcement .We think HeWhoMustNotBe Named may have murdered her in person because she was a very gifted witch and and all the evidence was that she put up a real fight .Fudge cleared his throat and with an effort it seemed stopped spinning his bowler hat .But that murder was in the newspapers said the Prime Minister momentarily diverted from his anger .Our newspapers .Amelia Bones .it just said she was a middleaged woman who lived alone .It was a a nasty killing wasnt it ?Its had rather a lot of publicity .The police are baffled you see .Fudge sighed .Well of course they are he said .Killed in a room that was locked from the inside wasnt she ?We on the other hand know exactly who did it not that that gets us any further toward catching him .And then there was Emmeline Vance maybe you didnt hear about that one Oh yes I did !said the Prime Minister .It happened just around the corner from here as a matter of fact .The papers had a field day with it ‘breakdown of law and order in the Prime Ministers backyard And as if all that wasnt enough said Fudge barely listening to the Prime Minister weve got dementors swarming all over the place attacking people left right and center .Once upon a happier time this sentence would have been unintelligible to the Prime Minister but he was wiser now .I thought dementors guard the prisoners in Azkaban he said cautiously .They did said Fudge wearily .But not anymore .Theyve deserted the prison and joined HeWhoMust NotBeNamed .I wont pretend that wasnt a blow .But said the Prime Minister with a sense of dawning horror didnt you tell me theyre the creatures that drain hope and happiness out of people ?Thats right .And theyre breeding .Thats whats causing all this mist .The Prime Minister sank weakkneed into the nearest chair .The idea of invisible creatures swooping through the towns and countryside spreading despair and hopelessness in his voters made him feel quite faint .Now see here Fudge youve got to do something !Its your responsibility as Minister of Magic !My dear Prime Minister you cant honestly think Im still Minister of Magic after all this ?I was sacked three days ago !The whole Wizarding community has been screaming for my resignation for a fortnight .Ive never known them so united in my whole term of office !said Fudge with a brave attempt at a smile .The Prime Minister was momentarily lost for words .Despite his indignation at the position into which he had been placed he still rather felt for the shrunken looking man sitting opposite him .Im very sorry he said finally .If theres anything I can do ?Its very kind of you Prime Minister but there is nothing .I was sent here tonight to bring you up to date on recent events and to introduce you to my successor .I rather thought hed be here by now but of course hes very busy at the moment with so much going on .Fudge looked around at the portrait of the ugly little man wearing the long curly silver wig who was digging in his ear with the point of a quill .Catching Fudges eye the portrait said Hell be here in a moment hes just finishing a letter to Dumbledore .I wish him luck said Fudge sounding bitter for the first time .Ive been writing to Dumbledore twice a day for the past fortnight but he wont budge .If hed just been prepared to persuade the boy I might still be .Well maybe Scrimgeour will have more success .Fudge subsided into what was clearly an aggrieved silence but it was broken almost immediately by the portrait which suddenly spoke in its crisp official voice .To the Prime Minister of Muggles .Requesting a meeting .Urgent .Kindly respond immediately .Rufus Scrimgeour Minister of Magic .Yes yes fine said the Prime Minister distractedly and he barely flinched as the flames in the grate turned emerald green again rose up and revealed a second spinning wizard in their heart disgorging him moments later onto the antique rug .Fudge got to his feet and after a moments hesitation the Prime Minister did the same watching the new arrival straighten up dust down his long black robes and look around .The Prime Ministers first foolish thought was that Rufus Scrimgeour looked rather like an old lion .There were streaks of gray in his mane of tawny hair and his bushy eyebrows he had keen yellowish eyes behind a pair of wirerimmed spectacles and a certain rangy loping grace even though he walked with a slight limp .There was an immediate impression of shrewdness and toughness the Prime Minister thought he understood why the Wizarding community preferred Scrimgeour to Fudge as a leader in these dangerous times .How do you do ?said the Prime Minister politely holding out his hand .Scrimgeour grasped it briefly his eyes scanning the room then pulled out a wand from under his robes .Fudge told you everything ?he asked striding over to the door and tapping the keyhole with his wand .The Prime Minister heard the lock click .Er yes said the Prime Minister .And if you dont mind Id rather that door remained unlocked .Id rather not be interrupted said Scrimgeour shortly or watched he added pointing his wand at the windows so that the curtains swept across them .Right well Im a busy man so lets get down to business .First of all we need to discuss your security .The Prime Minister drew himself up to his fullest height and replied I am perfectly happy with the security Ive already got thank you very Well were not Scrimgeour cut in .Itll be a poor lookout for the Muggles if their Prime Minister gets put under the Imperius Curse .The new secretary in your outer office ‘Tm not getting rid of Kingsley Shacklebolt if thats what youre suggesting !said the Prime Minister hotly .Hes highly efficient gets through twice the work the rest of them Thats because hes a wizard said Scrimgeour without a flicker of a smile .A highly trained Auror who has been assigned to you for your protection .Now wait a moment !declared the Prime Minister .You cant just put your people into my office I decide who works for me I thought you were happy with Shacklebolt ?said Scrimgeour coldly .I am thats to say I was Then theres no problem is there ?said Scrimgeour .I .well as long as Shacklebolts work continues to be .er .excellent said the Prime Minister lamely but Scrimgeour barely seemed to hear him .Now about Herbert Chorley your Junior Minister he continued .The one who has been entertaining the public by impersonating a duck .What about him ?asked the Prime Minister .He has clearly reacted to a poorly performed Imperius Curse said Scrimgeour .Its addled his brains but he could still be dangerous .Hes only quacking !said the Prime Minister weakly .Surely a bit of a rest .Maybe go easy on the drink A team of Healers from St .Mungos Hospital for Magical Maladies and Injuries are examining him as we speak .So far he has attempted to strangle three of them said Scrimgeour .I think it best that we remove him from Muggle society for a while .I .well .Hell be all right wont he ?said the Prime Minister anxiously .Scrimgeour merely shrugged already moving back toward the fireplace .Well thats really all I had to say .I will keep you posted of developments Prime Minister or at least I shall probably be too busy to come personally in which case I shall send Fudge here .He has consented to stay on in an advisory capacity .Fudge attempted to smile but was unsuccessful he merely looked as though he had a toothache .Scrimgeour was already rummaging in his pocket for the mysterious powder that turned the fire green .The Prime Minister gazed hopelessly at the pair of them for a moment then the words he had fought to suppress all evening burst from him at last .But for heavens sake youre wizards .You can do magic !Surely you can sort out well anything !Scrimgeour turned slowly on the spot and exchanged an incredulous look with Fudge who really did manage a smile this time as he said kindly The trouble is the other side can do magic too Prime Minister .And with that the two wizards stepped one after the other into the bright green fire and vanished .SPINNERS END Many miles away the chilly mist that had pressed against the Prime Ministers windows drifted over a dirty river that wound between overgrown rubbish strewn banks .An immense chimney relic of a disused mill reared up shadowy and ominous .There was no sound apart from the whisper of the black water and no sign of life apart from a scrawny fox that had slunk down the bank to nose hopefully at some old fishandchip wrappings in the tall grass .But then with a very faint pop a slim hooded figure appeared out of thin air on the edge of the river .The fox froze wary eyes fixed upon this strange new phenomenon .The figure seemed to take its bearings for a few moments then set off with light quick strides its long cloak rustling over the grass .With a second and louder pop another hooded figure materialized .Wait !The harsh cry startled the fox now crouching almost flat in the undergrowth .It leapt from its hiding place and up the bank .There was a flash of green light a yelp and the fox fell back to the ground dead .The second figure turned over the animal with its toe .Just a fox said a womans voice dismissively from under the hood .I thought perhaps an Auror Cissy wait !But her quarry who had paused and looked back at the flash of light was already scrambling up the bank the fox had just fallen down .Cissy Narcissa listen to me The second woman caught the first and seized her arm but the other wrenched it away .Go back Bella !You must listen to me !Ive listened already .Ive made my decision .Leave me alone !The woman named Narcissa gained the top of the bank where a line of old railings separated the river from a narrow cobbled street .The other woman Bella followed at once .Side by side they stood looking across the road at the rows and rows of dilapidated brick houses their windows dull and blind in the darkness .He lives here ?asked Bella in a voice of contempt .Here ?In this Muggle dunghill ?We must be the first of our kind ever to set foot But Narcissa was not listening she had slipped through a gap in the rusty railings and was already hurrying across the road .Cissy wait Bella followed her cloak streaming behind and saw Narcissa darting through an alley between the houses into a second almost identical street .Some of the streetlamps were broken the two women were running between patches of light and deep darkness .The pursuer caught up with her prey just as she turned another corner this time succeeding in catching hold of her arm and swinging her around so that they faced each other .Cissy you must not do this you cant trust him The Dark Lord trusts him doesnt he ?The Dark Lord is .I believe .mistaken Bella panted and her eyes gleamed momentarily under her hood as she looked around to check that they were indeed alone .In any case we were told not to speak of the plan to anyone .This is a betrayal of the Dark Lords Let go Bella !snarled Narcissa and she drew a wand from beneath her cloak holding it threateningly in the others face .Bella merely laughed .Cissy your own sister ?You wouldnt There is nothing I wouldnt do anymore !Narcissa breathed a note of hysteria in her voice and as she brought down the wand like a knife there was another flash of light .Bella let go of her sisters arm as though burned .Narcisscd But Narcissa had rushed ahead .Rubbing her hand her pursuer followed again keeping her distance now as they moved deeper into the deserted labyrinth of brick houses .At last Narcissa hurried up a street named Spinners End over which the towering mill chimney seemed to hover like a giant admonitory finger .Her footsteps echoed on the cobbles as she passed boarded and broken windows until she reached the very last house where a dim light glimmered through the curtains in a downstairs room .She had knocked on the door before Bella cursing under her breath had caught up .Together they stood waiting panting slightly breathing in the smell of the dirty river that was carried to them on the night breeze .After a few seconds they heard movement behind the door and it opened a crack .A sliver of a man could be seen looking out at them a man with long black hair parted in curtains around a sallow face and black eyes .Narcissa threw back her hood .She was so pale that she seemed to shine in the darkness the long blonde hair streaming down her back gave her the look of a drowned person .Narcissa !said the man opening the door a little wider so that the light fell upon her and her sister too .What a pleasant surprise !Severus she said in a strained whisper .May I speak to you ?Its urgent .But of course .He stood back to allow her to pass him into the house .Her stillhooded sister followed without invitation .Snape she said curtly as she passed him .Bellatrix he replied his thin mouth curling into a slightly mocking smile as he closed the door with a snap behind them .They had stepped directly into a tiny sitting room which had the feeling of a dark padded cell .The walls were completely covered in books most of them bound in old black or brown leather a threadbare sofa an old armchair and a rickety table stood grouped together in a pool of dim light cast by a candlefilled lamp hung from the ceiling .The place had an air of neglect as though it was not usually inhabited .Snape gestured Narcissa to the sofa .She threw off her cloak cast it aside and sat down staring at her white and trembling hands clasped in her lap .Bellatrix lowered her hood more slowly .Dark as her sister was fair with heavily lidded eyes and a strong jaw she did not take her gaze from Snape as she moved to stand behind Narcissa .So what can I do for you ?Snape asked settling himself in the armchair opposite the two sisters .We .we are alone arent we ?Narcissa asked quietly .Yes of course .Well Wormtails here but were not counting vermin are we ?He pointed his wand at the wall of books behind him and with a bang a hidden door flew open revealing a narrow staircase upon which a small man stood frozen .As you have clearly realized Wormtail we have guests said Snape lazily .The man crept hunchbacked down the last few steps and moved into the room .He had small watery eyes a pointed nose and wore an unpleasant simper .His left hand was caressing his right which looked as though it was encased in a bright silver glove .Narcissa !he said in a squeaky voice .And Bellatrix !How charming Wormtail will get us drinks if youd like them said Snape .And then he will return to his bedroom .Wormtail winced as though Snape had thrown something at him .I am not your servant !he squeaked avoiding Snape s eye .Really ?I was under the impression that the Dark Lord placed you here to assist me .To assist yes but not to make you drinks and and clean your house !I had no idea Wormtail that you were craving more dangerous assignments said Snape silkily .This can be easily arranged I shall speak to the Dark Lord I can speak to him myself if I want to !Of course you can said Snape sneering .But in the meantime bring us drinks .Some of the elfmade wine will do .Wormtail hesitated for a moment looking as though he might argue but then turned and headed through a second hidden door .They heard banging and a clinking of glasses .Within seconds he was back bearing a dusty bottle and three glasses upon a tray .He dropped these on the rickety table and scurried from their presence slamming the bookcovered door behind him .Snape poured out three glasses of bloodred wine and handed two of them to the sisters .Narcissa murmured a word of thanks whilst Bellatrix said nothing but continued to glower at Snape .This did not seem to discompose him on the contrary he looked rather amused .The Dark Lord he said raising his glass and draining it .The sisters copied him .Snape refilled their glasses .As Narcissa took her second drink she said in a rush Severus Im sorry to come here like this but I had to see you .I think you are the only one who can help me Snape held up a hand to stop her then pointed his wand again at the concealed staircase door .There was a loud bang and a squeal followed by the sound of Wormtail scurrying back up the stairs .My apologies said Snape .He has lately taken to listening at doors I dont know what he means by it . .You were saying Narcissa ?She took a great shuddering breath and started again .Severus I know I ought not to be here I have been told to say nothing to anyone but Then you ought to hold your tongue !snarled Bellatrix .Particularly in present company ! ‘Present company ?repeated Snape sardonically .And what am I to understand by that Bellatrix ?That I dont trust you Snape as you very well know !Narcissa let out a noise that might have been a dry sob and covered her face with her hands .Snape set his glass down upon the table and sat back again his hands upon the arms of his chair smiling into Bellatrixs glowering face .Narcissa I think we ought to hear what Bellatrix is bursting to say it will save tedious interruptions .Well continue Bellatrix said Snape .Why is it that you do not trust me ?A hundred reasons !she said loudly striding out from behind the sofa to slam her glass upon the table .Where to start !Where were you when the Dark Lord fell ?Why did you never make any attempt to find him when he vanished ?What have you been doing all these years that youve lived in Dumbledores pocket ?Why did you stop the Dark Lord procuring the Sorcerers Stone ?Why did you not return at once when the Dark Lord was reborn ?Where were you a few weeks ago when we battled to retrieve the prophecy for the Dark Lord ?And why Snape is Harry Potter still alive when you have had him at your mercy for five years ?She paused her chest rising and falling rapidly the color high in her cheeks .Behind her Narcissa sat motionless her face still hidden in her hands .Snape smiled .Before I answer you oh yes Bellatrix I am going to answer !You can carry my words back to the others who whisper behind my back and carry false tales of my treachery to the Dark Lord !Before I answer you I say let me ask a question in turn .Do you really think that the Dark Lord has not asked me each and every one of those questions ?And do you really think that had I not been able to give satisfactory answers I would be sitting here talking to you ?She hesitated .I know he believes you but .You think he is mistaken ?Or that I have somehow hoodwinked him ?Fooled the Dark Lord the greatest wizard the most accomplished Legilimens the world has ever seen ?Bellatrix said nothing but looked for the first time a little discomfited .Snape did not press the point .He picked up his drink again sipped it and continued You ask where I was when the Dark Lord fell .I was where he had ordered me to be at Hogwarts School of Witchcraft and Wizardry because he wished me to spy upon Albus Dumbledore .You know I presume that it was on the Dark Lords orders that I took up the post ?She nodded almost imperceptibly and then opened her mouth but Snape forestalled her .You ask why I did not attempt to find him when he vanished .For the same reason that Avery Yaxley the Carrows Greyback Lucius he inclined his head slightly to Narcissa and many others did not attempt to find him .I believed him finished .I am not proud of it I was wrong but there it is .If he had not forgiven we who lost faith at that time he would have very few followers left .Hed have me !said Bellatrix passionately .I who spent many years in Azkaban for him !Yes indeed most admirable said Snape in a bored voice .Of course you werent a lot of use to him in prison but the gesture was undoubtedly fine Gesture !she shrieked in her fury she looked slightly mad .While I endured the dementors you remained at Hogwarts comfortably playing Dumbledores pet !Not quite said Snape calmly .He wouldnt give me the Defense Against the Dark Arts job you know .Seemed to think it might ah bring about a relapse .tempt me into my old ways .This was your sacrifice for the Dark Lord not to teach your favorite subject ?she jeered .Why did you stay there all that time Snape ?Still spying on Dumbledore for a master you believed dead ?Hardly said Snape although the Dark Lord is pleased that I never deserted my post I had sixteen years of information on Dumbledore to give him when he returned a rather more useful welcomeback present than endless reminiscences of how unpleasant Azkaban is .But you stayed Yes Bellatrix I stayed said Snape betraying a hint of impatience for the first time .I had a comfortable job that I preferred to a stint in Azkaban .They were rounding up the Death Eaters you know .Dumbledores protection kept me out of jail it was most convenient and I used it .I repeat The Dark Lord does not complain that I stayed so I do not see why you do .I think you next wanted to know he pressed on a little more loudly for Bellatrix showed every sign of interrupting why I stood between the Dark Lord and the Sorcerers Stone .That is easily answered .He did not know whether he could trust me .He thought like you that I had turned from faithful Death Eater to Dumbledores stooge .He was in a pitiable condition very weak sharing the body of a mediocre wizard .He did not dare reveal himself to a former ally if that ally might turn him over to Dumbledore or the Ministry .I deeply regret that he did not trust me .He would have returned to power three years sooner .As it was I saw only greedy and unworthy Quirrell attempting to steal the stone and I admit I did all I could to thwart him .Bellatrixs mouth twisted as though she had taken an unpleasant dose of medicine .But you didnt return when he came back you didnt fly back to him at once when you felt the Dark Mark burn Correct .I returned two hours later .I returned on Dumbledores orders .On Dumbledores ?she began in tones of outrage .Think !said Snape impatient again .Think !By waiting two hours just two hours I ensured that I could remain at Hogwarts as a spy !By allowing Dumbledore to think that I was only returning to the Dark Lords side because I was ordered to I have been able to pass information on Dumbledore and the Order of the Phoenix ever since !Consider Bellatrix The Dark Mark had been growing stronger for months .I knew he must be about to return all the Death Eaters knew !I had plenty of time to think about what I wanted to do to plan my next move to escape like Karkaroff didnt I ?The Dark Lords initial displeasure at my lateness vanished entirely I assure you when I explained that I remained faithful although Dumbledore thought I was his man .Yes the Dark Lord thought that I had left him forever but he was wrong .But what use have you been ?sneered Bellatrix .What useful information have we had from you ?My information has been conveyed directly to the Dark Lord said Snape .If he chooses not to share it with you He shares everything with me !said Bellatrix firing up at once .He calls me his most loyal his most faithful Does he ?said Snape his voice delicately inflected to suggest his disbelief .Does he still after the fiasco at the Ministry ?That was not my fault !said Bellatrix flushing .The Dark Lord has in the past entrusted me with his most precious if Lucius hadnt Dont you dare dont you dare blame my husband !said Narcissa in a low and deadly voice looking up at her sister .There is no point apportioning blame said Snape smoothly .What is done is done .But not by you !said Bellatrix furiously .No you were once again absent while the rest of us ran dangers were you not Snape ?My orders were to remain behind said Snape .Perhaps you disagree with the Dark Lord perhaps you think that Dumbledore would not have noticed if I had joined forces with the Death Eaters to fight the Order of the Phoenix ?And forgive me you speak of dangers .you were facing six teenagers were you not ?They were joined as you very well know by half of the Order before long !snarled Bellatrix .And while we are on the subject of the Order you still claim you cannot reveal the whereabouts of their headquarters dont you ?I am not the SecretKeeper I cannot speak the name of the place .You understand how the enchantment works I think ?The Dark Lord is satisfied with the information I have passed him on the Order .It led as perhaps you have guessed to the recent capture and murder of Emmeline Vance and it certainly helped dispose of Sirius Black though I give you full credit for finishing him off .He inclined his head and toasted her .Her expression did not soften .You are avoiding my last question Snape .Harry Potter .You could have killed him at any point in the past five years .You have not done it .Why ?Have you discussed this matter with the Dark Lord ?asked Snape .He .lately we .I am asking you Snape !If I had murdered Harry Potter the Dark Lord could not have used his blood to regenerate making him invincible You claim you foresaw his use of the boy !she jeered .I do not claim it I had no idea of his plans I have already confessed that I thought the Dark Lord dead .I am merely trying to explain why the Dark Lord is not sorry that Potter survived at least until a year ago .But why did you keep him alive ?Have you not understood me ?It was only Dumbledores protection that was keeping me out of Azkaban !Do you disagree that murdering his favorite student might have turned him against me ?But there was more to it than that .I should remind you that when Potter first arrived at Hogwarts there were still many stories circulating about him rumors that he himself was a great Dark wizard which was how he had survived the Dark Lords attack .Indeed many of the Dark Lords old followers thought Potter might be a standard around which we could all rally once more .I was curious I admit it and not at all inclined to murder him the moment he set foot in the castle .Of course it became apparent to me very quickly that he had no extraordinary talent at all .He has fought his way out of a number of tight corners by a simple combination of sheer luck and more talented friends .He is mediocre to the last degree though as obnoxious and selfsatisfied as was his father before him .I have done my utmost to have him thrown out of Hogwarts where I believe he scarcely belongs but kill him or allow him to be killed in front of me ?I would have been a fool to risk it with Dumbledore close at hand .And through all this we are supposed to believe Dumbledore has never suspected you ?asked Bellatrix .He has no idea of your true allegiance he trusts you implicitly still ?I have played my part well said Snape .And you overlook Dumbledores greatest weakness He has to believe the best of people .I spun him a tale of deepest remorse when I joined his staff fresh from my Death Eater days and he embraced me with open arms though as I say never allowing me nearer the Dark Arts than he could help .Dumbledore has been a great wizard oh yes he has for Bellatrix had made a scathing noise the Dark Lord acknowledges it .I am pleased to say however that Dumbledore is growing old .The duel with the Dark Lord last month shook him .He has since sustained a serious injury because his reactions are slower than they once were .But through all these years he has never stopped trusting Severus Snape and therein lies my great value to the Dark Lord .Bellatrix still looked unhappy though she appeared unsure how best to attack Snape next .Taking advantage of her silence Snape turned to her sister .Now .you came to ask me for help Narcissa ?Narcissa looked up at him her face eloquent with despair .Yes Severus .I I think you are the only one who can help me I have nowhere else to turn .Lucius is in jail and .She closed her eyes and two large tears seeped from beneath her eyelids .The Dark Lord has forbidden me to speak of it Narcissa continued her eyes still closed .He wishes none to know of the plan .It is .very secret .But If he has forbidden it you ought not to speak said Snape at once .The Dark Lords word is law .Narcissa gasped as though he had doused her with cold water .Bellatrix looked satisfied for the first time since she had entered the house .There !she said triumphantly to her sister .Even Snape says so You were told not to talk so hold your silence !But Snape had gotten to his feet and strode to the small window peered through the curtains at the deserted street then closed them again with a jerk .He turned around to face Narcissa frowning .It so happens that I know of the plan he said in a low voice .I am one of the few the Dark Lord has told .Nevertheless had I not been in on the secret Narcissa you would have been guilty of great treachery to the Dark Lord .I thought you must know about it !said Narcissa breathing more freely .He trusts you so Severus .You know about the plan ?said Bellatrix her fleeting expression of satisfaction replaced by a look of outrage .You know ?Certainly said Snape .But what help do you require Narcissa ?If you are imagining I can persuade the Dark Lord to change his mind I am afraid there is no hope none at all .Severus she whispered tears sliding down her pale cheeks .My son .my only son .Draco should be proud said Bellatrix indifferently .The Dark Lord is granting him a great honor .And I will say this for Draco He isnt shrinking away from his duty he seems glad of a chance to prove himself excited at the prospect Narcissa began to cry in earnest gazing beseechingly all the while at Snape .Thats because he is sixteen and has no idea what lies in store !Why Severus ?Why my son ?It is too dangerous !This is vengeance for Luciuss mistake I know it !Snape said nothing .He looked away from the sight of her tears as though they were indecent but he could not pretend not to hear her .Thats why hes chosen Draco isnt it ?she persisted .To punish Lucius ?If Draco succeeds said Snape still looking away from her he will be honored above all others .But he wont succeed !sobbed Narcissa .How can he when the Dark Lord himself ?Bellatrix gasped Narcissa seemed to lose her nerve .I only meant .that nobody has yet succeeded .Severus .please .You are you have always been Dracos favorite teacher .You are Luciuss old friend .I beg you .You are the Dark Lords favorite his most trusted advisor .Will you speak to him persuade him ?The Dark Lord will not be persuaded and I am not stupid enough to attempt it said Snape flatly .I cannot pretend that the Dark Lord is not angry with Lucius .Lucius was supposed to be in charge .He got himself captured along with how many others and failed to retrieve the prophecy into the bargain .Yes the Dark Lord is angry Narcissa very angry indeed .Then I am right he has chosen Draco in revenge !choked Narcissa .He does not mean him to succeed he wants him to be killed trying !When Snape said nothing Narcissa seemed to lose what little selfrestraint she still possessed .Standing up she staggered to Snape and seized the front of his robes .Her face close to his her tears falling onto his chest she gasped You could do it .You could do it instead of Draco Severus .You would succeed of course you would and he would reward you beyond all of us Snape caught hold of her wrists and removed her clutching hands .Looking down into her tears tained face he said slowly He intends me to do it in the end I think .But he is determined that Draco should try first .You see in the unlikely event that Draco succeeds I shall be able to remain at Hogwarts a little longer fulfilling my useful role as spy .In other words it doesnt matter to him if Draco is killed !The Dark Lord is very angry repeated Snape quietly .He failed to hear the prophecy .You know as well as I do Narcissa that he does not forgive easily .She crumpled falling at his feet sobbing and moaning on the floor .My only son .my only son .You should be proud !said Bellatrix ruthlessly .If I had sons I would be glad to give them up to the service of the Dark Lord !Narcissa gave a little scream of despair and clutched at her long blonde hair .Snape stooped seized her by the arms lifted her up and steered her back onto the sofa .He then poured her more wine and forced the glass into her hand .Narcissa thats enough .Drink this .Listen to me .She quieted a little slopping wine down herself she took a shaky sip .It might be possible .for me to help Draco .She sat up her face paperwhite her eyes huge .Severus oh Severus you would help him ?Would you look after him see he comes to no harm ?I can try .She flung away her glass it skidded across the table as she slid off the sofa into a kneeling position at Snape s feet seized his hand in both of hers and pressed her lips to it .If you are there to protect him .Severus will you swear it ?Will you make the Unbreakable Vow ?The Unbreakable Vow ?Snapes expression was blank unreadable .Bellatrix however let out a cackle of triumphant laughter .Arent you listening Narcissa ?Oh hell try Im sure . .The usual empty words the usual slithering out of action .oh on the Dark Lords orders of course !Snape did not look at Bellatrix .His black eyes were fixed upon Narcissas tearfilled blue ones as she continued to clutch his hand .Certainly Narcissa I shall make the Unbreakable Vow he said quietly .Perhaps your sister will consent to be our Bonder .Bellatrixs mouth fell open .Snape lowered himself so that he was kneeling opposite Narcissa .Beneath Bellatrixs astonished gaze they grasped right hands .You will need your wand Bellatrix said Snape coldly .She drew it still looking astonished .And you will need to move a little closer he said .She stepped forward so that she stood over them and placed the tip of her wand on their linked hands .Narcissa spoke .Will you Severus watch over my son Draco as he attempts to fulfill the Dark Lords wishes ?I will said Snape .A thin tongue of brilliant flame issued from the wand and wound its way around their hands like a redhot wire .And will you to the best of your ability protect him from harm ?I will said Snape .A second tongue of flame shot from the wand and interlinked with the first making a fine glowing chain .And should it prove necessary .if it seems Draco will fail .whispered Narcissa Snapes hand twitched within hers but he did not draw away will you carry out the deed that the Dark Lord has ordered Draco to perform ?There was a moments silence .Bellatrix watched her wand upon their clasped hands her eyes wide .I will said Snape .Bellatrixs astounded face glowed red in the blaze of a third tongue of flame which shot from the wand twisted with the others and bound itself thickly around their clasped hands like a rope like a fiery snake .3 WILL AND WONT Harry Potter was snoring loudly .He had been sitting in a chair beside his bedroom window for the best part of four hours staring out at the darkening street and had finally fallen asleep with one side of his face pressed against the cold windowpane his glasses askew and his mouth wide open .The misty fug his breath had left on the window sparkled in the orange glare of the streetlamp outside and the artificial light drained his face of all color so that he looked ghostly beneath his shock of untidy black hair .The room was strewn with various possessions and a good smattering of rubbish .Owl feathers apple cores and sweet wrappers littered the floor a number of spellbooks lay higgledypiggledy among the tangled robes on his bed and a mess of newspapers sat in a puddle of light on his desk .The headline of one blared HARRY POTTER THE CHOSEN ONE ?Rumors continue to fly about the mysterious recent disturbance at the Ministry of Magic during which HeWhoMustNotBeNamed was sighted once more .Were not allowed to talk about it dont ask me anything said one agitated Obliviator who refused to give his name as he left the Ministry last night .Nevertheless highly placed sources within the Ministry have confirmed that the disturbance centered on the fabled Hall of Prophecy .Though Ministry spokeswizards have hitherto refused even to confirm the existence of such a place a growing number of the Wizarding community believe that the Death Eaters now serving sentences in Azkaban for trespass and attempted theft were attempting to steal a prophecy .The nature of that prophecy is unknown although speculation is rife that it concerns Harry Potter the only person ever known to have survived the Killing Curse and who is also known to have been at the Ministry on the night in question .Some are going so far as to call Potter the Chosen One believing that the prophecy names him as the only one who will be able to rid us of He WhoMustNotBeNamed .The current whereabouts of the prophecy if it exists are unknown although ctd .This one bore the headline SCRIMGEOUR SUCCEEDS FUDGE Most of this front page was taken up with a large blackandwhite picture of a man with a lionlike mane of thick hair and a rather ravaged face .The picture was moving the man was waving at the ceiling .Rufus Scrimgeour previously Head of the Auror office in the Department of Magical Law Enforcement has succeeded Cornelius Fudge as Minister of Magic .The appointment has largely been greeted with enthusiasm by the Wizarding community though rumors of a rift between the new Minister and Albus Dumbledore newly reinstated Chief Warlock of the Wizengamot surfaced within hours of Scrimgeour taking office .Scrimgeours representatives admitted that he had met with Dumbledore at once upon taking possession of the top job but refused to comment on the topics under discussion .Albus Dumbledore is known to ctd .Newly appointed Minister of Magic Rufus Scrimgeour spoke today of the tough new measures taken by his Ministry to ensure the safety of students returning to Hogwarts School of Witchcraft and Wizardry this autumn .For obvious reasons the Ministry will not be going into detail about its stringent new security plans said the Minister although an insider confirmed that measures include defensive spells and charms a complex array of countercurses and a small task force of Aurors dedicated solely to the protection of Hogwarts School .Most seem reassured by the new Ministers tough stand on student safety .Said Mrs Augusta Longbottom My grandson Neville a good friend of Harry Potters incidentally who fought the Death Eaters alongside him at the Ministry in June and But the rest of this story was obscured by the large birdcage standing on top of it .Inside it was a magnificent snowy owl .Her amber eyes surveyed the room imperiously her head swiveling occasionally to gaze at her snoring master .Once or twice she clicked her beak impatiently but Harry was too deeply asleep to hear her .A large trunk stood in the very middle of the room .Its lid was open it looked expectant yet it was almost empty but for a residue of old underwear sweets empty ink bottles and broken quills that coated the very bottom .Nearby on the floor lay a purple leaflet emblazoned with the words ISSUED ON BEHALF OF THE MINISTRY OF MAGIC PROTECTING YOUR HOME AND FAMILY AGAINST DARK FORCES The Wizarding community is currently under threat from an organization calling itself the Death Eaters .Observing the following simple security guidelines will help protect you your family and your home from attack .1 .You are advised not to leave the house alone .2 .Particular care should be taken during the hours of darkness .Wherever possible arrange to complete journeys before night has fallen .3 .Review the security arrangements around your house making sure that all family members are aware of emergency measures such as Shield and Disillusionment Charms and in the case of underage family members SideAlongApparition .4 .Agree on security questions with close friends and family so as to detect Death Eaters masquerading as others by use of the Polyjuice Potion see Should the Dark Mark appear over any dwelling place or other building DO NOT ENTER but contact the Auror office immediately .7 .Unconfirmed sightings suggest that the Death Eaters may now be using Inferi see Harry grunted in his sleep and his face slid down the window an inch or so making his glasses still more lopsided but he did not wake up .An alarm clock repaired by Harry several years ago ticked loudly on the sill showing one minute to eleven .Beside it held in place by Harrys relaxed hand was a piece of parchment covered in thin slanting writing .Harry had read this letter so often since its arrival three days ago that although it had been delivered in a tightly furled scroll it now lay quite flat .Dear Harry If it is convenient to you I shall call at number four Privet Drive this coming Friday at eleven p .m .to escort you to the Burrow where you have been invited to spend the remainder of your school holidays .If you are agreeable I should also be glad of your assistance in a matter to which I hope to attend on the way to the Burrow .I shall explain this more fully when I see you .Kindly send your answer by return of this owl .Hoping to see you this Friday I am yours most sincerely Albus Dumbledore Though he already knew it by heart Harry had been stealing glances at this missive every few minutes since seven oclock that evening when he had first taken up his position beside his bedroom window which had a reasonable view of both ends of Privet Drive .He knew it was pointless to keep rereading Dumbledore s words Harry had sent back his yes with the delivering owl as requested and all he could do now was wait Either Dumbledore was going to come or he was not .But Harry had not packed .It just seemed too good to be true that he was going to be rescued from the Dursleys after a mere fortnight of their company .He could not shrug off the feeling that something was going to go wrong his reply to Dumbledore s letter might have gone astray Dumbledore could be prevented from collecting him the letter might turn out not to be from Dumbledore at all but a trick or joke or trap .Harry had not been able to face packing and then being let down and having to unpack again .The only gesture he had made to the possibility of a journey was to shut his snowy owl Hedwig safely in her cage .The minute hand on the alarm clock reached the number twelve and at that precise moment the streetlamp outside the window went out .Harry awoke as though the sudden darkness were an alarm .Hastily straightening his glasses and unsticking his cheek from the glass he pressed his nose against the window instead and squinted down at the pavement .A tall figure in a long billowing cloak was walking up the garden path .Harry jumped up as though he had received an electric shock knocked over his chair and started snatching anything and everything within reach from the floor and throwing it into the trunk .Even as he lobbed a set of robes two spellbooks and a packet of crisps across the room the doorbell rang .Downstairs in the living room his Uncle Vernon shouted Who the blazes is calling at this time of night ?Harry froze with a brass telescope in one hand and a pair of trainers in the other .He had completely forgotten to warn the Dursleys that Dumbledore might be coming .Feeling both panicky and close to laughter he clambered over the trunk and wrenched open his bedroom door in time to hear a deep voice say Good evening .You must be Mr Dursley .I daresay Harry has told you I would be coming for him ?Harry ran down the stairs two at a time coming to an abrupt halt several steps from the bottom as long experience had taught him to remain out of arms reach of his uncle whenever possible .There in the doorway stood a tall thin man with waistlength silver hair and beard .Halfmoon spectacles were perched on his crooked nose and he was wearing a long black traveling cloak and a pointed hat .Vernon Dursley whose mustache was quite as bushy as Dumbledore s though black and who was wearing a puce dressing gown was staring at the visitor as though he could not believe his tiny eyes .Judging by your look of stunned disbelief Harry did not warn you that I was coming said Dumbledore pleasantly .However let us assume that you have invited me warmly into your house .It is unwise to linger overlong on doorsteps in these troubled times .He stepped smartly over the threshold and closed the front door behind him .It is a long time since my last visit said Dumbledore peering down his crooked nose at Uncle Vernon .I must say your agapanthus are flourishing .Vernon Dursley said nothing at all .Harry did not doubt that speech would return to him and soon the vein pulsing in his uncles temple was reaching danger point but something about Dumbledore seemed to have robbed him temporarily of breath .It might have been the blatant wizardishness of his appearance but it might too have been that even Uncle Vernon could sense that here was a man whom it would be very difficult to bully .Ah good evening Harry said Dumbledore looking up at him through his halfmoon glasses with a most satisfied expression .Excellent excellent .These words seemed to rouse Uncle Vernon .It was clear that as far as he was concerned any man who could look at Harry and say excellent was a man with whom he could never see eye to eye .I dont mean to be rude he began in a tone that threatened rudeness in every syllable .yet sadly accidental rudeness occurs alarmingly often Dumbledore finished the sentence gravely .Best to say nothing at all my dear man .Ah and this must be Petunia .The kitchen door had opened and there stood Harrys aunt wearing rubber gloves and a housecoat over her nightdress clearly halfway through her usual pre bedtime wipedown of all the kitchen surfaces .Her rather horsey face registered nothing but shock .Albus Dumbledore said Dumbledore when Uncle Vernon failed to effect an introduction .We have corresponded of course .Harry thought this an odd way of reminding Aunt Petunia that he had once sent her an exploding letter but Aunt Petunia did not challenge the term .And this must be your son Dudley ?Dudley had that moment peered round the living room door .His large blond head rising out of the stripy collar of his pajamas looked oddly disembodied his mouth gaping in astonishment and fear .Dumbledore waited a moment or two apparently to see whether any of the Dursleys were going to say anything but as the silence stretched on he smiled .Shall we assume that you have invited me into your sitting room ?Dudley scrambled out of the way as Dumbledore passed him .Harry still clutching the telescope and trainers jumped the last few stairs and followed Dumbledore who had settled himself in the armchair nearest the fire and was taking in the surroundings with an expression of benign interest .He looked quite extraordinarily out of place .Arent arent we leaving sir ?Harry asked anxiously .Yes indeed we are but there are a few matters we need to discuss first said Dumbledore .And I would prefer not to do so in the open .We shall trespass upon your aunt and uncles hospitality only a little longer .You will will you ?Vernon Dursley had entered the room Petunia at his shoulder and Dudley skulking behind them both .Yes said Dumbledore simply I shall .He drew his wand so rapidly that Harry barely saw it with a casual flick the sofa zoomed forward and knocked the knees out from under all three of the Dursley s so that they collapsed upon it in a heap .Another flick of the wand and the sofa zoomed back to its original position .We may as well be comfortable said Dumbledore pleasantly .As he replaced his wand in his pocket Harry saw that his hand was blackened and shriveled it looked as though his flesh had been burned away .Sir what happened to your ?Later Harry said Dumbledore .Please sit down .Harry took the remaining armchair choosing not to look at the Dursleys who seemed stunned into silence .I would assume that you were going to offer me refreshment Dumbledore said to Uncle Vernon but the evidence so far suggests that that would be optimistic to the point of foolishness .A third twitch of the wand and a dusty bottle and five glasses appeared in midair .The bottle tipped and poured a generous measure of honeycolored liquid into each of the glasses which then floated to each person in the room .Madam Rosmertas finest oakmatured mead said Dumbledore raising his glass to Harry who caught hold of his own and sipped .He had never tasted anything like it before but enjoyed it immensely .The Dursleys after quick scared looks at one another tried to ignore their glasses completely a difficult feat as they were nudging them gently on the sides of their heads .Harry could not suppress a suspicion that Dumbledore was rather enjoying himself .Well Harry said Dumbledore turning toward him a difficulty has arisen which I hope you will be able to solve for us .By us I mean the Order of the Phoenix .But first of all I must tell you that Siriuss will was discovered a week ago and that he left you everything he owned .Over on the sofa Uncle Vernons head turned but Harry did not look at him nor could he think of anything to say except Oh .Right .This is in the main fairly straightforward Dumbledore went on .You add a reasonable amount of gold to your account at Gringotts and you inherit all of Siriuss personal possessions .The slightly problematic part of the legacy His godfathers dead ?said Uncle Vernon loudly from the sofa .Dumbledore and Harry both turned to look at him .The glass of mead was now knocking quite insistently on the side of Vernons head he attempted to beat it away .Hes dead ?His godfather ?Yes said Dumbledore .He did not ask Harry why he had not confided in the Dursleys .Our problem he continued to Harry as if there had been no interruption is that Sirius also left you number twelve Grimmauld Place .Hes been left a house ?said Uncle Vernon greedily his small eyes narrowing but nobody answered him .You can keep using it as headquarters said Harry .I dont care .You can have it I dont really want it .Harry never wanted to set foot in number twelve Grimmauld Place again if he could help it .He thought he would be haunted forever by the memory of Sirius pits dark musty rooms alone imprisoned within the place he had wanted so desperately to leave .That is generous said Dumbledore .We have however vacated the building temporarily .Why ?Well said Dumbledore ignoring the mutterings of Uncle Vernon who was now being rapped smartly over the head by the persistent glass of mead Black family tradition decreed that the house was handed down the direct line to the next male with the name of ‘Black .Sirius was the very last of the line as his younger brother Regulus predeceased him and both were childless .While his will makes it perfectly plain that he wants you to have the house it is nevertheless possible that some spell or enchantment has been set upon the place to ensure that it cannot be owned by anyone other than a pureblood .A vivid image of the shrieking spitting portrait of Siriuss mother that hung in the hall of number twelve Grimmauld Place flashed into Harrys mind .I bet there has he said .Quite said Dumbledore .And if such an enchantment exists then the ownership of the house is most likely to pass to the eldest of Siriuss living relatives which would mean his cousin Bellatrix Lestrange .Without realizing what he was doing Harry sprang to his feet the telescope and trainers in his lap rolled across the floor .Bellatrix Lestrange Siriuss killer inherit his house ?No he said .Well obviously we would prefer that she didnt get it either said Dumbledore calmly .The situation is fraught with complications .We do not know whether the enchantments we ourselves have placed upon it for example making it Unplottable will hold now that ownership has passed from Siriuss hands .It might be that Bellatrix will arrive on the doorstep at any moment .Naturally we had to move out until such time as we have clarified the position .But how are you going to find out if Im allowed to own it ?Fortunately said Dumbledore there is a simple test .He placed his empty glass on a small table beside his chair but before he could do anything else Uncle Vernon shouted Will you get these ruddy things off us ?Harry looked around all three of the Dursleys were cowering with their arms over their heads as their glasses bounced up and down on their skulls their contents flying everywhere .Oh Im so sorry said Dumbledore politely and he raised his wand again .All three glasses vanished .But it would have been better manners to drink it you know .It looked as though Uncle Vernon was bursting with any number of unpleasant retorts but he merely shrank back into the cushions with Aunt Petunia and Dudley and said nothing keeping his small piggy eyes on Dumbledore s wand .You see Dumbledore said turning back to Harry and again speaking as though Uncle Vernon had not uttered if you have indeed inherited the house you have also inherited He flicked his wand for a fifth time .There was a loud crack and a houseelf appeared with a snout for a nose giant bats ears and enormous bloodshot eyes crouching on the Dursleys shag carpet and covered in grimy rags .Aunt Petunia let out a hairraising shriek nothing this filthy had entered her house in living memory .Dudley drew his large bare pink feet off the floor and sat with them raised almost above his head as though he thought the creature might run up his pajama trousers and Uncle Vernon bellowed What the hell is that ?Kreacher finished Dumbledore .Kreacher wont Kreacher wont Kreacher wont !croaked the houseelf quite as loudly as Uncle Vernon stamping his long gnarled feet and pulling his ears .Kreacher belongs to Miss Bellatrix oh yes Kreacher belongs to the Blacks Kreacher wants his new mistress Kreacher wont go to the Potter brat Kreacher wont wont wont As you can see Harry said Dumbledore loudly over Kreachers continued croaks of wont wont wont Kreacher is showing a certain reluctance to pass into your ownership .I dont care said Harry again looking with disgust at the writhing stamping houseelf .I dont want him .Wont wont wont wont You would prefer him to pass into the ownership of Bellatrix Lestrange ?Bearing in mind that he has lived at the headquarters of the Order of the Phoenix for the past year ?Wont wont wont wont Harry stared at Dumbledore .He knew that Kreacher could not be permitted to go and live with Bellatrix Lestrange but the idea of owning him of having responsibility for the creature that had betrayed Sirius was repugnant .Give him an order said Dumbledore .If he has passed into your ownership he will have to obey .If not then we shall have to think of some other means of keeping him from his rightful mistress .Wont wont wont WONT .Kreachers voice had risen to a scream .Harry could think of nothing to say except Kreacher shut up !It looked for a moment as though Kreacher was going to choke .He grabbed his throat his mouth still working furiously his eyes bulging .After a few seconds of frantic gulping he threw himself face forward onto the carpet Aunt Petunia whimpered and beat the floor with his hands and feet giving himself over to a violent but entirely silent tantrum .Well that simplifies matters said Dumbledore cheerfully .It seems that Sirius knew what he was doing .You are the rightful owner of number twelve Grimmauld Place and of Kreacher .Do I do I have to keep him with me ?Harry asked aghast as Kreacher thrashed around at his feet .Not if you dont want to said Dumbledore .If I might make a suggestion you could send him to Hogwarts to work in the kitchen there .In that way the other houseelves could keep an eye on him .Yeah said Harry in relief yeah Ill do that .Er Kreacher I want you to go to Hogwarts and work in the kitchens there with the other houseelves .Kreacher who was now lying flat on his back with his arms and legs in the air gave Harry one upsidedown look of deepest loathing and with another loud crack vanished .Good said Dumbledore .There is also the matter of the hippogriff Buckbeak .Hagrid has been looking after him since Sirius died but Buckbeak is yours now so if you would prefer to make different arrangements No said Harry at once he can stay with Hagrid .I think Buckbeak would prefer that .Hagrid will be delighted said Dumbledore smiling .He was thrilled to see Buckbeak again .Incidentally we have decided in the interests of Buckbeaks safety to rechristen him ‘Witherwings for the time being though I doubt that the Ministry would ever guess he is the hippogriff they once sentenced to death .Now Harry is your trunk packed ?Erm .Doubtful that I would turn up ?Dumbledore suggested shrewdly .Ill just go and er finish off said Harry hastily hurrying to pick up his fallen telescope and trainers .It took him a little over ten minutes to track down everything he needed at last he had managed to extract his Invisibility Cloak from under the bed screwed the top back on his jar of colorchange ink and forced the lid of his trunk shut on his cauldron .Then heaving his trunk in one hand and holding Hedwigs cage in the other he made his way back downstairs .He was disappointed to discover that Dumbledore was not waiting in the hall which meant that he had to return to the living room .Nobody was talking .Dumbledore was humming quietly apparently quite at his ease but the atmosphere was thicker than cold custard and Harry did not dare look at the Dursleys as he said Professor Im ready now .Good said Dumbledore .Just one last thing then .And he turned to speak to the Dursleys once more .As you will no doubt be aware Harry comes of age in a years time No said Aunt Petunia speaking for the first time since Dumbledores arrival .Im sorry ?said Dumbledore politely .No he doesnt .Hes a month younger than Dudley and Dudders doesnt turn eighteen until the year after next .Ah said Dumbledore pleasantly but in the Wizarding world we come of age at seventeen .Uncle Vernon muttered Preposterous but Dumbledore ignored him .Now as you already know the wizard called Lord Voldemort has returned to this country .The Wizarding community is currently in a state of open warfare .Harry whom Lord Voldemort has already attempted to kill on a number of occasions is in even greater danger now than the day when I left him upon your doorstep fifteen years ago with a letter explaining about his parents murder and expressing the hope that you would care for him as though he were your own .Dumbledore paused and although his voice remained light and calm and he gave no obvious sign of anger Harry felt a kind of chill emanating from him and noticed that the Dursleys drew very slightly closer together .You did not do as I asked .You have never treated Harry as a son .He has known nothing but neglect and often cruelty at your hands .The best that can be said is that he has at least escaped the appalling damage you have inflicted upon the unfortunate boy sitting between you .Both Aunt Petunia and Uncle Vernon looked around instinctively as though expecting to see someone other than Dudley squeezed between them .Us mistreat Dudders ?What dyou ?began Uncle Vernon furiously but Dumbledore raised his finger for silence a silence which fell as though he had struck Uncle Vernon dumb .The magic I evoked fifteen years ago means that Harry has powerful protection while he can still call this house ‘home .However miserable he has been here however unwelcome however badly treated you have at least grudgingly allowed him houseroom .This magic will cease to operate the moment that Harry turns seventeen in other words at the moment he becomes a man .I ask only this that you allow Harry to return once more to this house before his seventeenth birthday which will ensure that the protection continues until that time .None of the Dursleys said anything .Dudley was frowning slightly as though he was still trying to work out when he had ever been mistreated .Uncle Vernon looked as though he had something stuck in his throat Aunt Petunia however was oddly flushed .Well Harry .time for us to be off said Dumbledore at last standing up and straightening his long black cloak .Until we meet again he said to the Dursleys who looked as though that moment could wait forever as far as they were concerned and after doffing his hat he swept from the room .Bye said Harry hastily to the Dursleys and followed Dumbledore who paused beside Harrys trunk upon which Hedwigs cage was perched .We do not want to be encumbered by these just now he said pulling out his wand again .I shall send them to the Burrow to await us there .However I would like you to bring your Invisibility Cloak .just in case .Harry extracted his cloak from his trunk with some difficulty trying not to show Dumbledore the mess within .When he had stuffed it into an inside pocket of his jacket Dumbledore waved his wand and the trunk cage and Hedwig vanished .Dumbledore then waved his wand again and the front door opened onto cool misty darkness .And now Harry let us step out into the night and pursue that flighty temptress adventure .HORACE SLUGHORN Despite the fact that he had spent every waking moment of the past few days hoping desperately that Dumbledore would indeed come to fetch him Harry felt distinctly awkward as they set off down Privet Drive together .He had never had a proper conversation with the headmaster outside of Hogwarts before there was usually a desk between them .The memory of their last facetoface encounter kept intruding too and it rather heightened Harrys sense of embarrassment he had shouted a lot on that occasion not to mention done his best to smash several of Dumbledore s most prized possessions .Dumbledore however seemed completely relaxed .Keep your wand at the ready Harry he said brightly .But I thought Im not allowed to use magic outside school sir ?If there is an attack said Dumbledore I give you permission to use any counterjinx or curse that might occur to you .However I do not think you need worry about being attacked tonight .Why not sir ?You are with me said Dumbledore simply .This will do Harry .He came to an abrupt halt at the end of Privet Drive .You have not of course passed your Apparition Test he said .No said Harry .I thought you had to be seventeen ?You do said Dumbledore .So you will need to hold on to my arm very tightly .My left if you dont mind as you have noticed my wand arm is a little fragile at the moment .Harry gripped Dumbledores proffered forearm .Very good said Dumbledore .Well here we go .Harry felt Dumbledores arm twist away from him and redoubled his grip the next thing he knew everything went black he was being pressed very hard from all directions he could not breathe there were iron bands tightening around his chest his eyeballs were being forced back into his head his eardrums were being pushed deeper into his skull and then He gulped great lungfuls of cold night air and opened his streaming eyes .He felt as though he had just been forced through a very tight rubber tube .It was a few seconds before he realized that Privet Drive had vanished .He and Dumbledore were now standing in what appeared to be a deserted village square in the center of which stood an old war memorial and a few benches .His comprehension catching up with his senses Harry realized that he had just Apparated for the first time in his life .Are you all right ?asked Dumbledore looking down at him solicitously .The sensation does take some getting used to .Im fine said Harry rubbing his ears which felt as though they had left Privet Drive rather reluctantly .But I think I might prefer brooms .Dumbledore smiled drew his traveling cloak a little more tightly around his neck and said This way .He set off at a brisk pace past an empty inn and a few houses .According to a clock on a nearby church it was almost midnight .So tell me Harry said Dumbledore .Your scar .has it been hurting at all ?Harry raised a hand unconsciously to his forehead and rubbed the lightningshaped mark .No he said and IVe been wondering about that .I thought it would be burning all the time now Voldemorts getting so powerful again .He glanced up at Dumbledore and saw that he was wearing a satisfied expression .I on the other hand thought otherwise said Dumbledore .Lord Voldemort has finally realized the dangerous access to his thoughts and feelings you have been enjoying .It appears that he is now employing Occlumency against you .Well Im not complaining said Harry who missed neither the disturbing dreams nor the startling flashes of insight into Voldemorts mind .They turned a corner passing a telephone box and a bus shelter .Harry looked sideways at Dumbledore again .Professor ?Harry ?Er where exactly are we ?This Harry is the charming village of Budleigh Babberton .And what are we doing here ?Ah yes of course I havent told you said Dumbledore .Well I have lost count of the number of times I have said this in recent years but we are once again one member of staff short .We are here to persuade an old colleague of mine to come out of retirement and return to Hogwarts .How can I help with that sir ?Oh I think well find a use for you said Dumbledore vaguely .Left here Harry .They proceeded up a steep narrow street lined with houses .All the windows were dark .The odd chill that had lain over Privet Drive for two weeks persisted here too .Thinking of dementors Harry cast a look over his shoulder and grasped his wand reassuringly in his pocket .Professor why couldnt we just Apparate directly into your old colleagues house ?Because it would be quite as rude as kicking down the front door said Dumbledore .Courtesy dictates that we offer fellow wizards the opportunity of denying us entry .In any case most Wizarding dwellings are magically protected from unwanted Apparators .At Hogwarts for instance you cant Apparate anywhere inside the buildings or grounds said Harry quickly .Hermione Granger told me .And she is quite right .We turn left again .The church clock chimed midnight behind them .Harry wondered why Dumbledore did not consider it rude to call on his old colleague so late but now that conversation had been established he had more pressing questions to ask .Sir I saw in the Daily Prophet that Fudge has been sacked .Correct said Dumbledore now turning up a steep side street .He has been replaced as I am sure you also saw by Rufus Scrimgeour who used to be Head of the Auror office .Is he .Do you think hes good ?asked Harry .An interesting question said Dumbledore .He is able certainly .A more decisive and forceful personality than Cornelius .Yes but I meant I know what you meant .Rufus is a man of action and having fought Dark wizards for most of his working life does not underestimate Lord Voldemort .Harry waited but Dumbledore did not say anything about the disagreement with Scrimgeour that the Daily Prophet had reported and he did not have the nerve to pursue the subject so he changed it .And .sir .I saw about Madam Bones .Yes said Dumbledore quietly .A terrible loss .She was a great witch .Just up here I think ouch .He had pointed with his injured hand .Professor what happened to your ?I have no time to explain now said Dumbledore .It is a thrilling tale I wish to do it justice .He smiled at Harry who understood that he was not being snubbed and that he had permission to keep asking questions .Sir I got a Ministry of Magic leaflet by owl about security measures we should all take against the Death Eaters .Yes I received one myself said Dumbledore still smiling .Did you find it useful ?Not really .No I thought not .You have not asked me for instance what is my favorite flavor of jam to check that I am indeed Professor Dumbledore and not an impostor .I didnt .Harry began not entirely sure whether he was being reprimanded or not .For future reference Harry it is raspberry .although of course if I were a Death Eater I would have been sure to research my own jam preferences before impersonating myself .Er .right said Harry .Well on that leaflet it said something about Inferi .What exactly are they ?The leaflet wasnt very clear .They are corpses said Dumbledore calmly .Dead bodies that have been bewitched to do a Dark wizards bidding .Inferi have not been seen for a long time however not since Voldemort was last powerful . .He killed enough people to make an army of them of course .This is the place Harry just here .They were nearing a small neat stone house set in its own garden .Harry was too busy digesting the horrible idea of Inferi to have much attention left for anything else but as they reached the front gate Dumbledore stopped dead and Harry walked into him .Oh dear .Oh dear dear dear .Harry followed his gaze up the carefully tended front path and felt his heart sink .The front door was hanging off its hinges .Dumbledore glanced up and down the street .It seemed quite deserted .Wand out and follow me Harry he said quietly .He opened the gate and walked swiftly and silently up the garden path Harry at his heels then pushed the front door very slowly his wand raised and at the ready .Lumos .Dumbledore s wand tip ignited casting its light up a narrow hallway .To the left another door stood open .Holding his illuminated wand aloft Dumbledore walked into the sitting room with Harry right behind him .A scene of total devastation met their eyes .A grandfather clock lay splintered at their feet its face cracked its pendulum lying a little farther away like a dropped sword .A piano was on its side its keys strewn across the floor .The wreckage of a fallen chandelier glittered nearby .Cushions lay deflated feathers oozing from slashes in their sides fragments of glass and china lay like powder over everything .Dumbledore raised his wand even higher so that its light was thrown upon the walls where something darkly red and glutinous was spattered over the wallpaper .Harrys small intake of breath made Dumbledore look around .Not pretty is it ?he said heavily .Yes something horrible has happened here .Dumbledore moved carefully into the middle of the room scrutinizing the wreckage at his feet .Harry followed gazing around halfscared of what he might see hidden behind the wreck of the piano or the overturned sofa but there was no sign of a body .Maybe there was a fight and and they dragged him off Professor ?Harry suggested trying not to imagine how badly wounded a man would have to be to leave those stains spattered halfway up the walls .I dont think so said Dumbledore quietly peering behind an overstuffed armchair lying on its side .You mean hes ?Still here somewhere ?Yes .And without warning Dumbledore swooped plunging the tip of his wand into the seat of the overstuffed armchair which yelled Ouch !Good evening Horace said Dumbledore straightening up again .Harrys jaw dropped .Where a split second before there had been an armchair there now crouched an enormously fat bald old man who was massaging his lower belly and squinting up at Dumbledore with an aggrieved and watery eye .There was no need to stick the wand in that hard he said gruffly clambering to his feet .It hurt .The wandlight sparkled on his shiny pate his prominent eyes his enormous silver walruslike mustache and the highly polished buttons on the maroon velvet jacket he was wearing over a pair of lilac silk pajamas .The top of his head barely reached Dumbledore s chin .What gave it away ?he grunted as he staggered to his feet still rubbing his lower belly .He seemed remarkably unabashed for a man who had just been discovered pretending to be an armchair .My dear Horace said Dumbledore looking amused if the Death Eaters really had come to call the Dark Mark would have been set over the house .The wizard clapped a pudgy hand to his vast forehead .The Dark Mark he muttered .Knew there was something .ah well .Wouldnt have had time anyway Id only just put the finishing touches to my upholstery when you entered the room .He heaved a great sigh that made the ends of his mustache flutter .Would you like my assistance clearing up ?asked Dumbledore politely .Please said the other .They stood back to back the tall thin wizard and the short round one and waved their wands in one identical sweeping motion .The furniture flew back to its original places ornaments reformed in midair feathers zoomed into their cushions torn books repaired themselves as they landed upon their shelves oil lanterns soared onto side tables and reignited a vast collection of splintered silver picture frames flew glittering across the room and alighted whole and untarnished upon a desk rips cracks and holes healed everywhere and the walls wiped themselves clean .What kind of blood was that incidentally ?asked Dumbledore loudly over the chiming of the newly unsmashed grandfather clock .On the walls ?Dragon shouted the wizard called Horace as with a deafening grinding and tinkling the chandelier screwed itself back into the ceiling .There was a final plunk from the piano and silence .Yes dragon repeated the wizard conversationally .My last bottle and prices are skyhigh at the moment .Still it might be reusable .He stumped over to a small crystal bottle standing on top of a sideboard and held it up to the light examining the thick liquid within .Hmm .Bit dusty .He set the bottle back on the sideboard and sighed .It was then that his gaze fell upon Harry .Oho he said his large round eyes flying to Harrys forehead and the lightningshaped scar it bore .Ohol This said Dumbledore moving forward to make the introduction is Harry Potter .Harry this is an old friend and colleague of mine Horace Slughorn .Slughorn turned on Dumbledore his expression shrewd .So thats how you thought youd persuade me is it ?Well the answers no Albus .He pushed past Harry his face turned resolutely away with the air of a man trying to resist temptation .I suppose we can have a drink at least ?asked Dumbledore .For old times sake ?Slughorn hesitated .All right then one drink he said ungraciously .Dumbledore smiled at Harry and directed him toward a chair not unlike the one that Slughorn had so recently impersonated which stood right beside the newly burning fire and a brightly glowing oil lamp .Harry took the seat with the distinct impression that Dumbledore for some reason wanted to keep him as visible as possible .Certainly when Slughorn who had been busy with decanters and glasses turned to face the room again his eyes fell immediately upon Harry .Hmpf he said looking away quickly as though frightened of hurting his eyes .Here He gave a drink to Dumbledore who had sat down without invitation thrust the tray at Harry and then sank into the cushions of the repaired sofa and a disgruntled silence .His legs were so short they did not touch the floor .Well how have you been keeping Horace ?Dumbledore asked .Not so well said Slughorn at once .Weak chest .Wheezy .Rheumatism too .Cant move like I used to .Well thats to be expected .Old age .Fatigue .And yet you must have moved fairly quickly to prepare such a welcome for us at such short notice said Dumbledore .You cant have had more than three minutes warning ?Slughorn said half irritably half proudly Two .Didnt hear my Intruder Charm go off I was taking a bath .Still he added sternly seeming to pull himself back together again the fact remains that Im an old man Albus .A tired old man whos earned the right to a quiet life and a few creature comforts .He certainly had those thought Harry looking around the room .It was stuffy and cluttered yet nobody could say it was uncomfortable there were soft chairs and footstools drinks and books boxes of chocolates and plump cushions .If Harry had not known who lived there he would have guessed at a rich fussy old lady .Youre not yet as old as I am Horace said Dumbledore .Well maybe you ought to think about retirement yourself said Slughorn bluntly .His pale gooseberry eyes had found Dumbledore s injured hand .Reactions not what they were I see .Youre quite right said Dumbledore serenely shaking back his sleeve to reveal the tips of those burned and blackened fingers the sight of them made the back of Harrys neck prickle unpleasantly .I am undoubtedly slower than I was .But on the other hand .He shrugged and spread his hands wide as though to say that age had its compensations and Harry noticed a ring on his uninjured hand that he had never seen Dumbledore wear before It was large rather clumsily made of what looked like gold and was set with a heavy black stone that had cracked down the middle .Slughorns eyes lingered for a moment on the ring too and Harry saw a tiny frown momentarily crease his wide forehead .So all these precautions against intruders Horace .are they for the Death Eaters benefit or mine ?asked Dumbledore .What would the Death Eaters want with a poor brokendown old buffer like me ?demanded Slughorn .I imagine that they would want you to turn your considerable talents to coercion torture and murder said Dumbledore .Are you really telling me that they havent come recruiting yet ?Slughorn eyed Dumbledore balefully for a moment then muttered I havent given them the chance .Ive been on the move for a year .Never stay in one place more than a week .Move from Muggle house to Muggle house the owners of this place are on holiday in the Canary Islands its been very pleasant Ill be sorry to leave .Its quite easy once you know how one simple Freezing Charm on these absurd burglar alarms they use instead of Sneakoscopes and make sure the neighbors dont spot you bringing in the piano .Ingenious said Dumbledore .But it sounds a rather tiring existence for a brokendown old buffer in search of a quiet life .Now if you were to return to Hogwarts If youre going to tell me my life would be more peaceful at that pestilential school you can save your breath Albus !I might have been in hiding but some funny rumors have reached me since Dolores Umbridge left !If thats how you treat teachers these days Professor Umbridge ran afoul of our centaur herd said Dumbledore .I think you Horace would have known better than to stride into the forest and call a horde of angry centaurs ‘filthy halfbreeds .Thats what she did did she ?said Slughorn .Idiotic woman .Never liked her .Harry chuckled and both Dumbledore and Slughorn looked round at him .Sorry Harry said hastily .Its just I didnt like her either .Dumbledore stood up rather suddenly .Are you leaving ?asked Slughorn at once looking hopeful .No I was wondering whether I might use your bathroom said Dumbledore .Oh said Slughorn clearly disappointed .Second on the left down the hall .Dumbledore strode from the room .Once the door had closed behind him there was silence .After a few moments Slughorn got to his feet but seemed uncertain what to do with himself .He shot a furtive look at Harry then crossed to the fire and turned his back on it warming his wide behind .Dont think I dont know why hes brought you he said abruptly .Harry merely looked at Slughorn .Slughorn s watery eyes slid over Harrys scar this time taking in the rest of his face .You look very like your father .Yeah Ive been told said Harry .Except for your eyes .Youve got My mothers eyes yeah .Harry had heard it so often he found it a bit wearing .Hmpf .Yes well .You shouldnt have favorites as a teacher of course but she was one of mine .Your mother Slughorn added in answer to Harrys questioning look .Lily Evans .One of the brightest I ever taught .Vivacious you know .Charming girl .I used to tell her she ought to have been in my House .Very cheeky answers I used to get back too .Which was your House ?I was Head of Slytherin said Slughorn .Oh now he went on quickly seeing the expression on Harrys face and wagging a stubby finger at him dont go holding that against me !Youll be Gryffindor like her I suppose ?Yes it usually goes in families .Not always though .Ever heard of Sirius Black ?You must have done been in the papers for the last couple of years died a few weeks ago It was as though an invisible hand had twisted Harrys intestines and held them tight .Well anyway he was a big pal of your fathers at school .The whole Black family had been in my House but Sirius ended up in Gryffindor !Shame he was a talented boy .I got his brother Regulus when he came along but Id have liked the set .He sounded like an enthusiastic collector who had been outbid at auction .Apparently lost in memories he gazed at the opposite wall turning idly on the spot to ensure an even heat on his backside .Your mother was Muggleborn of course .Couldnt believe it when I found out .Thought she must have been pureblood she was so good .One of my best friends is Muggleborn said Harry and shes the best in our year .Funny how that sometimes happens isnt it ?said Slughorn .Not really said Harry coldly .Slughorn looked down at him in surprise .You mustnt think Im prejudiced !he said .No no no !Havent I just said your mother was one of my alltime favorite students ?And there was Dirk Cresswell in the year after her too now Head of the Goblin Liaison Office of course another Muggleborn a very gifted student and still gives me excellent inside information on the goingson at Gringotts !He bounced up and down a little smiling in a self satisfied way and pointed at the many glittering photograph frames on the dresser each peopled with tiny moving occupants .All exstudents all signed .Youll notice Barnabas Cuffe editor of the Daily Prophet hes always interested to hear my take on the days news .And Ambrosius Flume of Honeydukes a hamper every birthday and all because I was able to give him an introduction to Ciceron Harkiss who gave him his first job !And at the back youll see her if you just crane your neck thats Gwenog Jones who of course captains the Holyhead Harpies .People are always astonished to hear Im on firstname terms with the Harpies and free tickets whenever I want them !This thought seemed to cheer him up enormously .And all these people know where to find you to send you stuff ?asked Harry who could not help wondering why the Death Eaters had not yet tracked down Slughorn if hampers of sweets Quidditch tickets and visitors craving his advice and opinions could find him .The smile slid from Slughorn s face as quickly as the blood from his walls .Of course not he said looking down at Harry .I have been out of touch with everybody for a year .Harry had the impression that the words shocked Slughorn himself he looked quite unsettled for a moment .Then he shrugged .Still .the prudent wizard keeps his head down in such times .All very well for Dumbledore to talk but taking up a post at Hogwarts just now would be tantamount to declaring my public allegiance to the Order of the Phoenix !And while Im sure theyre very admirable and brave and all the rest of it I dont personally fancy the mortality rate You dont have to join the Order to teach at Hogwarts said Harry who could not quite keep a note of derision out of his voice It was hard to sympathize with Slughorn s cosseted existence when he remembered Sirius crouching in a cave and living on rats .Most of the teachers arent in it and none of them has ever been killed well unless you count Quirrell and he got what he deserved seeing as he was working with Voldemort .Harry had been sure Slughorn would be one of those wizards who could not bear to hear Voldemorts name spoken aloud and was not disappointed Slughorn gave a shudder and a squawk of protest which Harry ignored .I reckon the staff are safer than most people while Dumbledore s headmaster hes supposed to be the only one Voldemort ever feared isnt he ?Harry went on .Slughorn gazed into space for a moment or two He seemed to be thinking over Harrys words .Well yes it is true that HeWhoMustNotBeNamed has never sought a fight with Dumbledore he muttered grudgingly .And I suppose one could argue that as I have not joined the Death Eaters HeWho MustNotBeNamed can hardly count me a friend .in which case I might well be safer a little closer to Albus .I cannot pretend that Amelia Boness death did not shake me .If she with all her Ministry contacts and protection .Dumbledore reentered the room and Slughorn jumped as though he had forgotten he was in the house .Oh there you are Albus he said .Youve been a very long time .Upset stomach ?No I was merely reading the Muggle magazines said Dumbledore .I do love knitting patterns .Well Harry we have trespassed upon Horaces hospitality quite long enough I think it is time for us to leave .Not at all reluctant to obey Harry jumped to his feet .Slughorn seemed taken aback .Youre leaving ?Yes indeed .I think I know a lost cause when I see one .Lost . ?Slughorn seemed agitated .He twiddled his fat thumbs and fidgeted as he watched Dumbledore fasten his traveling cloak and Harry zip up his jacket .Well Im sorry you dont want the job Horace said Dumbledore raising his uninjured hand in a farewell salute .Hogwarts would have been glad to see you back again .Our greatly increased security notwithstanding you will always be welcome to visit should you wish to .Yes .well .very gracious .as I say .Goodbye then .Bye said Harry .They were at the front door when there was a shout from behind them .All right all right 111 do it !Dumbledore turned to see Slughorn standing breathless in the doorway to the sitting room .You will come out of retirement ?Yes yes said Slughorn impatiently .I must be mad but yes .Wonderful said Dumbledore beaming .Then Horace we shall see you on the first of September .Yes I daresay you will grunted Slughorn .As they set off down the garden path Slughorn s voice floated after them 111 want a pay rise Dumbledore !Dumbledore chuckled .The garden gate swung shut behind them and they set off back down the hill through the dark and the swirling mist .Well done Harry said Dumbledore .I didnt do anything said Harry in surprise .Oh yes you did .You showed Horace exactly how much he stands to gain by returning to Hogwarts .Did you like him ?Er .Harry wasnt sure whether he liked Slughorn or not .He supposed he had been pleasant in his way but he had also seemed vain and whatever he said to the contrary much too surprised that a Muggleborn should make a good witch .Horace said Dumbledore relieving Harry of the responsibility to say any of this likes his comfort .He also likes the company of the famous the successful and the powerful .He enjoys the feeling that he influences these people .He has never wanted to occupy the throne himself he prefers the backseat more room to spread out you see .He used to handpick favorites at Hogwarts sometimes for their ambition or their brains sometimes for their charm or their talent and he had an uncanny knack for choosing those who would go on to become outstanding in their various fields .Horace formed a kind of club of his favorites with himself at the center making introductions forging useful contacts between members and always reaping some kind of benefit in return whether a free box of his favorite crystalized pineapple or the chance to recommend the next junior member of the Goblin Liaison Office .Harry had a sudden and vivid mental image of a great swollen spider spinning a web around it twitching a thread here and there to bring its large and juicy flies a little closer .I tell you all this Dumbledore continued not to turn you against Horace or as we must now call him Professor Slughorn but to put you on your guard .He will undoubtedly try to collect you Harry .You would be the jewel of his collection ‘the Boy Who Lived .or as they call you these days ‘the Chosen One .At these words a chill that had nothing to do with the surrounding mist stole over Harry .He was reminded of words he had heard a few weeks ago words that had a horrible and particular meaning to him Neither can live while the other survives .Dumbledore had stopped walking level with the church they had passed earlier .This will do Harry .If you will grasp my arm .Braced this time Harry was ready for the Apparition but still found it unpleasant .When the pressure disappeared and he found himself able to breathe again he was standing in a country lane beside Dumbledore and looking ahead to the crooked silhouette of his second favorite building in the world the Burrow .In spite of the feeling of dread that had just swept through him his spirits could not help but lift at the sight of it .Ron was in there .and so was Mrs Weasley who could cook better than anyone he knew .If you dont mind Harry said Dumbledore as they passed through the gate Id like a few words with you before we part .In private .Perhaps in here ?Dumbledore pointed toward a rundown stone outhouse where the Weasleys kept their broomsticks .A little puzzled Harry followed Dumbledore through the creaking door into a space a little smaller than the average cupboard .Dumbledore illuminated the tip of his wand so that it glowed like a torch and smiled down at Harry .I hope you will forgive me for mentioning it Harry but I am pleased and a little proud at how well you seem to be coping after everything that happened at the Ministry .Permit me to say that I think Sirius would have been proud of you .Harry swallowed his voice seemed to have deserted him .He did not think he could stand to discuss Sirius it had been painful enough to hear Uncle Vernon say His godfathers dead ?and even worse to hear Siriuss name thrown out casually by Slughorn .It was cruel said Dumbledore softly that you and Sirius had such a short time together .A brutal ending to what should have been a long and happy relationship .Harry nodded his eyes fixed resolutely on the spider now climbing Dumbledores hat .He could tell that Dumbledore understood that he might even suspect that until his letter arrived Harry had spent nearly all his time at the Dursleys lying on his bed refusing meals and staring at the misted window full of the chill emptiness that he had come to associate with dementors .Its just hard Harry said finally in a low voice to realize he wont write to me again .His eyes burned suddenly and he blinked .He felt stupid for admitting it but the fact that he had had someone outside Hogwarts who cared what happened to him almost like a parent had been one of the best things about discovering his godfather .and now the post owls would never bring him that comfort again .Sirius represented much to you that you had never known before said Dumbledore gently .Naturally the loss is devastating .But while I was at the Dursleys .interrupted Harry his voice growing stronger I realized I cant shut myself away or or crack up .Sirius wouldnt have wanted that would he ?And anyway lifes too short .Look at Madam Bones look at Emmeline Vance .It could be me next couldnt it ?But if it is he said fiercely now looking straight into Dumbledores blue eyes gleaming in the wandlight Ill make sure I take as many Death Eaters with me as I can and Voldemort too if I can manage it .Spoken both like your mother and fathers son and Siriuss true godson !said Dumbledore with an approving pat on Harrys back .I take my hat off to you or I would if I were not afraid of showering you in spiders .And now Harry on a closely related subject .I gather that you have been taking the Daily Prophet over the last two weeks ?Yes said Harry and his heart beat a little faster .Then you will have seen that there have been not so much leaks as floods concerning your adventure in the Hall of Prophecy ?Yes said Harry again .And now everyone knows that Im the one No they do not interrupted Dumbledore .There are only two people in the whole world who know the full contents of the prophecy made about you and Lord Voldemort and they are both standing in this smelly spidery broom shed .It is true however that many have guessed correctly that Voldemort sent his Death Eaters to steal a prophecy and that the prophecy concerned you .Now I think I am correct in saying that you have not told anybody that you know what the prophecy said ?No said Harry .A wise decision on the whole said Dumbledore .Although I think you ought to relax it in favor of your friends Mr Ronald Weasley and Miss Hermione Granger .Yes he continued when Harry looked startled I think they ought to know .You do them a disservice by not confiding something this important to them .I didnt want to worry or frighten them ?said Dumbledore surveying Harry over the top of his halfmoon spectacles .Or perhaps to confess that you yourself are worried and frightened ?You need your friends Harry .As you so rightly said Sirius would not have wanted you to shut yourself away .Harry said nothing but Dumbledore did not seem to require an answer .He continued On a different though related subject it is my wish that you take private lessons with me this year .Private with you ?said Harry surprised out of his preoccupied silence .Yes .I think it is time that I took a greater hand in your education .What will you be teaching me sir ?Oh a little of this a little of that said Dumbledore airily .Harry waited hopefully but Dumbledore did not elaborate so he asked something else that had been bothering him slightly .If Im having lessons with you I wont have to do Occlumency lessons with Snape will I ?Professor Snape Harry and no you will not .Good said Harry in relief because they were a He stopped careful not to say what he really thought .I think the word ‘fiasco would be a good one here said Dumbledore nodding .Harry laughed .Well that means I wont see much of Professor Snape from now on he said because he wont let me carry on Potions unless I get ‘Outstanding in my O .W .L .which I know I havent .Dont count your owls before they are delivered said Dumbledore gravely .Which now I think of it ought to be some time later today .Now two more things Harry before we part .Firstly I wish you to keep your Invisibility Cloak with you at all times from this moment onward .Even within Hogwarts itself .Just in case you understand me ?Harry nodded .And lastly while you stay here the Burrow has been given the highest security the Ministry of Magic can provide .These measures have caused a certain amount of inconvenience to Arthur and Molly all their post for instance is being searched at the Ministry before being sent on .They do not mind in the slightest for their only concern is your safety .However it would be poor repayment if you risked your neck while staying with them .I understand said Harry quickly .Very well then said Dumbledore pushing open the broom shed door and stepping out into the yard .I see a light in the kitchen .Let us not deprive Molly any longer of the chance to deplore how thin you are .AN EXCESS OF PHLEGM Harry and Dumbledore approached the back door of the Burrow which was surrounded by the familiar litter of old Wellington boots and rusty cauldrons Harry could hear the soft clucking of sleepy chickens coming from a distant shed .Dumbledore knocked three times and Harry saw sudden movement behind the kitchen window .Whos there ?said a nervous voice he recognized as Mrs Weasleys .Declare yourself !It is I Dumbledore bringing Harry .The door opened at once .There stood Mrs Weasley short plump and wearing an old green dressing gown .Harry dear !Gracious Albus you gave me a fright you said not to expect you before morning !We were lucky said Dumbledore ushering Harry over the threshold .Slughorn proved much more persuadable than I had expected .Harrys doing of course .Ah hello Nymphadora !Harry looked around and saw that Mrs Weasley was not alone despite the lateness of the hour .A young witch with a pale heartshaped face and mousy brown hair was sitting at the table clutching a large mug between her hands .Hello Professor she said .Wotcher Harry .Hi Tonks .Harry thought she looked drawn even ill and there was something forced in her smile .Certainly her appearance was less colorful than usual without her customary shade of bubblegumpink hair .Id better be off she said quickly standing up and pulling her cloak around her shoulders .Thanks for the tea and sympathy Molly .Please dont leave on my account said Dumbledore courteously I cannot stay I have urgent matters to discuss with Rufus Scrimgeour .No no I need to get going said Tonks not meeting Dumbledores eyes .Night Dear why not come to dinner at the weekend Remus and MadEye are coming ?No really Molly .thanks anyway .Good night everyone .Tonks hurried past Dumbledore and Harry into the yard a few paces beyond the doorstep she turned on the spot and vanished into thin air .Harry noticed that Mrs Weasley looked troubled .Well I shall see you at Hogwarts Harry said Dumbledore .Take care of yourself .Molly your servant .He made Mrs Weasley a bow and followed Tonks vanishing at precisely the same spot .Mrs Weasley closed the door on the empty yard and then steered Harry by the shoulders into the full glow of the lantern on the table to examine his appearance .Youre like Ron she sighed looking him up and down .Both of you look as though youve had Stretching Jinxes put on you .I swear Rons grown four inches since I last bought him school robes .Are you hungry Harry ?Yeah I am said Harry suddenly realizing just how hungry he was .Sit down dear Ill knock something up .As Harry sat down a furry ginger cat with a squashed face jumped onto his knees and settled there purring .So Hermiones here ?he asked happily as he tickled Crookshanks behind the ears .Oh yes she arrived the day before yesterday said Mrs Weasley rapping a large iron pot with her wand .It bounced onto the stove with a loud clang and began to bubble at once .Everyones in bed of course we didnt expect you for hours .Here you are She tapped the pot again it rose into the air flew toward Harry and tipped over Mrs Weasley slid a bowl neatly beneath it just in time to catch the stream of thick steaming onion soup .Bread dear ?Thanks Mrs Weasley .She waved her wand over her shoulder a loaf of bread and a knife soared gracefully onto the table as the loaf sliced itself and the soup pot dropped back onto the stove Mrs Weasley sat down opposite him .So you persuaded Horace Slughorn to take the job ?Harry nodded his mouth so full of hot soup that he could not speak .He taught Arthur and me said Mrs Weasley .He was at Hogwarts for ages started around the same time as Dumbledore I think .Did you like him ?His mouth now full of bread Harry shrugged and gave a noncommittal jerk of the head .I know what you mean said Mrs Weasley nodding wisely .Of course he can be charming when he wants to be but Arthurs never liked him much .The Ministrys littered with Slughorns old favorites he was always good at giving leg ups but he never had much time for Arthur didnt seem to think he was enough of a highflier .Well that just shows you even Slughorn makes mistakes .I dont know whether Rons told you in any of his letters its only just happened but Arthurs been promoted !It could not have been clearer that Mrs Weasley had been bursting to say this .Harry swallowed a large amount of very hot soup and thought he could feel his throat blistering .Thats great !he gasped .You are sweet beamed Mrs Weasley possibly taking his watering eyes for emotion at the news .Yes Rufus Scrimgeour has set up several new offices in response to the present situation and Arthurs heading the Office for the Detection and Confiscation of Counterfeit Defensive Spells and Protective Objects .Its a big job hes got ten people reporting to him now !What exactly ?Well you see in all the panic about YouKnowWho odd things have been cropping up for sale everywhere things that are supposed to guard against YouKnowWho and the Death Eaters .You can imagine the kind of thing socalled protective potions that are really gravy with a bit of bubotuber pus added or instructions for defensive jinxes that actually make your ears fall off .Well in the main the perpetrators are just people like Mundungus Fletcher whove never done an honest days work in their lives and are taking advantage of how frightened everybody is but every now and then something really nasty turns up .The other day Arthur confiscated a box of cursed Sneakoscopes that were almost certainly planted by a Death Eater .So you see its a very important job and I tell him its just silly to miss dealing with spark plugs and toasters and all the rest of that Muggle rubbish .Mrs Weasley ended her speech with a stern look as if it had been Harry suggesting that it was natural to miss spark plugs .Is Mr Weasley still at work ?Harry asked .Yes he is .As a matter of fact hes a tiny bit late .He said hed be back around midnight .She turned to look at a large clock that was perched awkwardly on top of a pile of sheets in the washing basket at the end of the table .Harry recognized it at once It had nine hands each inscribed with the name of a family member and usually hung on the Weasleys sitting room wall though its current position suggested that Mrs Weasley had taken to carrying it around the house with her .Every single one of its nine hands was now pointing at mortal peril .Its been like that for a while now said Mrs Weasley in an unconvincingly casual voice ever since YouKnowWho came back into the open .I suppose everybodys in mortal danger now .I dont think it can be just our family .but I dont know anyone else whos got a clock like this so I cant check .Oh !With a sudden exclamation she pointed at the clocks face .Mr Weasleys hand had switched to traveling .Hes coming !And sure enough a moment later there was a knock on the back door .Mrs Weasley jumped up and hurried to it with one hand on the doorknob and her face pressed against the wood she called softly Arthur is that you ?Yes came Mr Weasleys weary voice .But I would say that even if I were a Death Eater dear .Ask the question !Oh honestly .Molly !All right all right .What is your dearest ambition ?To find out how airplanes stay up .Mrs Weasley nodded and turned the doorknob but apparently Mr Weasley was holding tight to it on the other side because the door remained firmly shut .Molly !Ive got to ask you your question first !Arthur really this is just silly .What do you like me to call you when were alone together ?Even by the dim light of the lantern Harry could tell that Mrs Weasley had turned bright red he himself felt suddenly warm around the ears and neck and hastily gulped soup clattering his spoon as loudly as he could against the bowl .Mollywobbles whispered a mortified Mrs Weasley into the crack at the edge of the door .Correct said Mr Weasley .Now you can let me in .Mrs Weasley opened the door to reveal her husband a thin balding redhaired wizard wearing horn rimmed spectacles and a long and dusty traveling cloak .I still dont see why we have to go through that every time you come home said Mrs Weasley still pink in the face as she helped her husband out of his cloak .I mean a Death Eater might have forced the answer out of you before impersonating you !I know dear but its Ministry procedure and I have to set an example .Something smells good onion soup ?Mr Weasley turned hopefully in the direction of the table .Harry !We didnt expect you until morning !They shook hands and Mr Weasley dropped into the chair beside Harry as Mrs Weasley set a bowl of soup in front of him too .Thanks Molly .Its been a tough night .Some idiots started selling MetamorphMedals .Just sling them around your neck and youll be able to change your appearance at will .A hundred thousand disguises all for ten Galleons !And what really happens when you put them on ?Mostly you just turn a fairly unpleasant orange color but a couple of people have also sprouted tentaclelike warts all over their bodies .As if St .Mungos didnt have enough to do already !It sounds like the sort of thing Fred and George would find funny said Mrs Weasley hesitantly .Are you sure ?Of course I am !said Mr Weasley .The boys wouldnt do anything like that now not when people are desperate for protection !So is that why youre late MetamorphMedals ?No we got wind of a nasty backfiring jinx down in Elephant and Castle but luckily the Magical Law Enforcement Squad had sorted it out by the time we got there .Harry stifled a yawn behind his hand .Bed said an undeceived Mrs Weasley at once .Ive got Fred and Georges room all ready for you youll have it to yourself .Why where are they ?Oh theyre in Diagon Alley sleeping in the little flat over their joke shop as theyre so busy said Mrs Weasley .I must say I didnt approve at first but they do seem to have a bit of a flair for business !Come on dear your trunks already up there .Night Mr Weasley said Harry pushing back his chair .Crookshanks leapt lightly from his lap and slunk out of the room .Gnight Harry said Mr Weasley .Harry saw Mrs Weasley glance at the clock in the washing basket as they left the kitchen .All the hands were once again at mortal peril .Fred and Georges bedroom was on the second floor .Mrs Weasley pointed her wand at a lamp on the bedside table and it ignited at once bathing the room in a pleasant golden glow .Though a large vase of flowers had been placed on a desk in front of the small window their perfume could not disguise the lingering smell of what Harry thought was gunpowder .A considerable amount of floor space was devoted to a vast number of unmarked sealed cardboard boxes amongst which stood Harrys school trunk .The room looked as though it was being used as a temporary warehouse .Hedwig hooted happily at Harry from her perch on top of a large wardrobe then took off through the window Harry knew she had been waiting to see him before going hunting .Harry bade Mrs Weasley good night put on pajamas and got into one of the beds .There was something hard inside the pillowcase .He groped inside it and pulled out a sticky purpleand orange sweet which he recognized as a Puking Pastille .Smiling to himself he rolled over and was instantly asleep .Seconds later or so it seemed to Harry he was awakened by what sounded like cannon fire as the door burst open .Sitting bolt upright he heard the rasp of the curtains being pulled back The dazzling sunlight seemed to poke him hard in both eyes .Shielding them with one hand he groped hopelessly for his glasses with the other .Wuzzgoinon ?We didnt know you were here already !said a loud and excited voice and he received a sharp blow to the top of the head .Ron dont hit him !said a girls voice reproachfully .Harrys hand found his glasses and he shoved them on though the light was so bright he could hardly see anyway .A long looming shadow quivered in front of him for a moment he blinked and Ron Weasley came into focus grinning down at him .All right ?Never been better said Harry rubbing the top of his head and slumping back onto his pillows .You ?Not bad said Ron pulling over a cardboard box and sitting on it .When did you get here ?Mums only just told us !About one oclock this morning .Were the Muggles all right ?Did they treat you okay ?Same as usual said Harry as Hermione perched herself on the edge of his bed they didnt talk to me much but I like it better that way .Howre you Hermione ?Oh Im fine said Hermione who was scrutinizing Harry as though he was sickening for something .He thought he knew what was behind this and as he had no wish to discuss Siriuss death or any other miserable subject at the moment he said Whats the time ?Have I missed breakfast ?Dont worry about that Mums bringing you up a tray she reckons you look underfed said Ron rolling his eyes .So whats been going on ?Nothing much Ive just been stuck at my aunt and uncles havent I ?Come off it !said Ron .Youve been off with Dumbledore !It wasnt that exciting .He just wanted me to help him persuade this old teacher to come out of retirement .His names Horace Slughorn .Oh said Ron looking disappointed .We thought Hermione flashed a warning look at Ron and Ron changed tack at top speed .we thought itd be something like that .You did ?said Harry amused .Yeah .yeah now Umbridge has left obviously we need a new Defense Against the Dark Arts teacher dont we ?So er whats he like ?He looks a bit like a walrus and he used to be Head of Slytherin said Harry .Something wrong Hermione ?She was watching him as though expecting strange symptoms to manifest themselves at any moment .She rearranged her features hastily in an unconvincing smile .No of course not !So um did Slughorn seem like hell be a good teacher ?Dunno said Harry .He cant be worse than Umbridge can he ?I know someone whos worse than Umbridge said a voice from the doorway .Rons younger sister slouched into the room looking irritable .Hi Harry .Whats up with you ?Ron asked .Its her said Ginny plonking herself down on Harrys bed .Shes driving me mad .Whats she done now ?asked Hermione sympathetically .Its the way she talks to me youd think I was about three !I know said Hermione dropping her voice .Shes so full of herself .Harry was astonished to hear Hermione talking about Mrs Weasley like this and could not blame Ron for saying angrily Cant you two lay off her for five seconds ?Oh thats right defend her snapped Ginny .We all know you cant get enough of her .This seemed an odd comment to make about Rons mother .Starting to feel that he was missing something Harry said Who are you ?But his question was answered before he could finish it .The bedroom door flew open again and Harry instinctively yanked the bedcovers up to his chin so hard that Hermione and Ginny slid off the bed onto the floor .A young woman was standing in the doorway a woman of such breathtaking beauty that the room seemed to have become strangely airless .She was tall and willowy with long blonde hair and appeared to emanate a faint silvery glow .To complete this vision of perfection she was carrying a heavily laden breakfast tray .Arry she said in a throaty voice .Eet as been too long !As she swept over the threshold toward him Mrs Weasley was revealed bobbing along in her wake looking rather cross .There was no need to bring up the tray I was just about to do it myself !Eet was no trouble said Fleur Delacour setting the tray across Harrys knees and then swooping to kiss him on each cheek He felt the places where her mouth had touched him burn .I ave been longing to see im .You remember my seester Gabrielle ?She never stops talking about Ariy Potter .She will be delighted to see you again .Oh .is she here too ?Harry croaked .No no silly boy said Fleur with a tinkling laugh I mean next summer when we but do you not know ?Her great blue eyes widened and she looked reproachfully at Mrs Weasley who said We hadnt got around to telling him yet .Fleur turned back to Harry swinging her silvery sheet of hair so that it whipped Mrs Weasley across the face .Bill and I are going to be married !Oh said Harry blankly .He could not help noticing how Mrs Weasley Hermione and Ginny were all determinedly avoiding one anothers gaze .Wow .Er congratulations !She swooped down upon him and kissed him again .Bill is very busy at ze moment working very ard and I only work parttime at Gringotts for my Eenglish so he brought me ere for a few days to get to know is family properly .I was so pleased to ear you would be coming zere isnt much to do ere unless you like cooking and chickens !Well enjoy your breakfast Arry !With these words she turned gracefully and seemed to float out of the room closing the door quietly behind her .Mrs Weasley made a noise that sounded like tchah !Mum hates her said Ginny quietly .I do not hate her !said Mrs Weasley in a cross whisper .I just think theyve hurried into this engagement thats all !Theyve known each other a year said Ron who looked oddly groggy and was staring at the closed door .Well thats not very long !I know why its happened of course .Its all this uncertainty with YouKnowWho coming back people think they might be dead tomorrow so theyre rushing all sorts of decisions theyd normally take time over .It was the same last time he was powerful people eloping left right and center Including you and Dad said Ginny slyly .Yes well your father and I were made for each other what was the point in waiting ?said Mrs Weasley .Whereas Bill and Fleur .well .what have they really got in common ?Hes a hardworking downto earth sort of person whereas shes A cow said Ginny nodding .But Bills not that downtoearth .Hes a CurseBreaker isnt he he likes a bit of adventure a bit of glamour .I expect thats why hes gone for Phlegm .Stop calling her that Ginny said Mrs Weasley sharply as Harry and Hermione laughed .Well Id better get on .Eat your eggs while theyre warm Harry .Looking careworn she left the room .Ron still seemed slightly punchdrunk he was shaking his head experimentally like a dog trying to rid its ears of water .Dont you get used to her if shes staying in the same house ?Harry asked .Well you do said Ron but if she jumps out at you unexpectedly like then .Its pathetic said Hermione furiously striding away from Ron as far as she could go and turning to face him with her arms folded once she had reached the wall .You dont really want her around forever ?Ginny asked Ron incredulously .When he merely shrugged she said Well Mums going to put a stop to it if she can I bet you anything .Hows she going to manage that ?asked Harry .She keeps trying to get Tonks round for dinner .I think shes hoping Bill will fall for Tonks instead .I hope he does Id much rather have her in the family .Yeah thatll work said Ron sarcastically .Listen no bloke in his right minds going to fancy Tonks when Fleurs around .I mean Tonks is okaylooking when she isnt doing stupid things to her hair and her nose but Shes a damn sight nicer than Phlegm said Ginny And shes more intelligent shes an Auror !said Hermione from the corner .Fleurs not stupid she was good enough to enter the Triwizard Tournament said Harry .Not you as well !said Hermione bitterly .I suppose you like the way Phlegm says ‘Arry do you ?asked Ginny scornfully .No said Harry wishing he hadnt spoken I was just saying Phlegm I mean Fleur Id much rather have Tonks in the family said Ginny .At least shes a laugh .She hasnt been much of a laugh lately said Ron .Every time Ive seen her shes looked more like Moaning Myrtle .Thats not fair snapped Hermione .She still hasnt got over what happened .you know .I mean he was her cousin !Harrys heart sank .They had arrived at Sirius .He picked up a fork and began shoveling scrambled eggs into his mouth hoping to deflect any invitation to join in this part of the conversation .Tonks and Sirius barely knew each other !said Ron .Sirius was in Azkaban half her life and before that their families never met Thats not the point said Hermione .She thinks it was her fault he died !How does she work that one out ?asked Harry in spite of himself .Well she was fighting Bellatrix Lestrange wasnt she ?I think she feels that if only she had finished her off Bellatrix couldnt have killed Sirius .Thats stupid said Ron .Its survivors guilt said Hermione .I know Lupins tried to talk her round but shes still really down .Shes actually having trouble with her Metamorphosing !With her ?She cant change her appearance like she used to explained Hermione .I think her powers must have been affected by shock or something .I didnt know that could happen said Harry .Nor did I said Hermione but I suppose if youre really depressed .The door opened again and Mrs Weasley popped her head in .Ginny she whispered come downstairs and help me with the lunch .Im talking to this lot !said Ginny outraged .Now !said Mrs Weasley and withdrew .She only wants me there so she doesnt have to be alone with Phlegm !said Ginny crossly .She swung her long red hair around in a very good imitation of Fleur and pranced across the room with her arms held aloft like a ballerina .You lot had better come down quickly too she said as she left .Harry took advantage of the temporary silence to eat more breakfast .Hermione was peering into Fred and Georges boxes though every now and then she cast sideways looks at Harry .Ron who was now helping himself to Harrys toast was still gazing dreamily at the door .Whats this ?Hermione asked eventually holding up what looked like a small telescope .Dunno said Ron but if Fred and Georgeve left it here its probably not ready for the joke shop yet so be careful .Your mum said the shops going well said Harry .Said Fred and George have got a real flair for business .Thats an understatement said Ron .Theyre raking in the Galleons !I cant wait to see the place we havent been to Diagon Alley yet because Mum says Dads got to be there for extra security and hes been really busy at work but it sounds excellent .And what about Percy ?asked Harry the third eldest Weasley brother had fallen out with the rest of the family .Is he talking to your mum and dad again ?Nope said Ron .But he knows your dad was right all along now about Voldemort being back Dumbledore says people find it far easier to forgive others for being wrong than being right said Hermione .I heard him telling your mum Ron .Sounds like the sort of mental thing Dumbledore would say said Ron .Hes going to be giving me private lessons this year said Harry conversationally .Ron choked on his bit of toast and Hermione gasped .You kept that quiet !said Ron .I only just remembered said Harry honestly .He told me last night in your broom shed .Blimey .private lessons with Dumbledore !said Ron looking impressed .I wonder why hes . ?His voice tailed away .Harry saw him and Hermione exchange looks .Harry laid down his knife and fork his heart beating rather fast considering that all he was doing was sitting in bed .Dumbledore had said to do it .Why not now ?He fixed his eyes on his fork which was gleaming in the sunlight streaming into his lap and said I dont know exactly why hes going to be giving me lessons but I think it must be because of the prophecy .Neither Ron nor Hermione spoke .Harry had the impression that both had frozen .He continued still speaking to his fork You know the one they were trying to steal at the Ministry .Nobody knows what it said though said Hermione quickly .It got smashed .Although the Prophet says began Ron but Hermione said Shh !The Prophets got it right said Harry looking up at them both with a great effort Hermione seemed frightened and Ron amazed .That glass ball that smashed wasnt the only record of the prophecy .I heard the whole thing in Dumbledore s office he was the one the prophecy was made to so he could tell me .From what it said Harry took a deep breath it looks like Im the one whos got to finish off Voldemort .At least it said neither of us could live while the other survives .The three of them gazed at one another in silence for a moment .Then there was a loud bang and Hermione vanished behind a puff of black smoke .Hermione !shouted Harry and Ron the breakfast tray slid to the floor with a crash .Hermione emerged coughing out of the smoke clutching the telescope and sporting a brilliantly purple black eye .I squeezed it and it it punched me !she gasped .And sure enough they now saw a tiny fist on a long spring protruding from the end of the telescope .Dont worry said Ron who was plainly trying not to laugh Mumll fix that shes good at healing minor injuries Oh well never mind that now !said Hermione hastily .Harry oh Harry .She sat down on the edge of his bed again .We wondered after we got back from the Ministry .Obviously we didnt want to say anything to you but from what Lucius Malfoy said about the prophecy how it was about you and Voldemort well we thought it might be something like this .Oh Harry .She stared at him then whispered Are you scared ?Not as much as I was said Harry .When I first heard it I was .but now it seems as though I always knew Id have to face him in the end .When we heard Dumbledore was collecting you in person we thought he might be telling you something or showing you something to do with the prophecy said Ron eagerly .And we were kind of right werent we ?He wouldnt be giving you lessons if he thought you were a goner wouldnt waste his time he must think youve got a chance !Thats true said Hermione .I wonder what hell teach you Harry ?Really advanced defensive magic probably .powerful countercurses .antijinxes .Harry did not really listen .A warmth was spreading through him that had nothing to do with the sunlight a tight obstruction in his chest seemed to be dissolving .He knew that Ron and Hermione were more shocked than they were letting on but the mere fact that they were still there on either side of him speaking bracing words of comfort not shrinking from him as though he were contaminated or dangerous was worth more than he could ever tell them . .and evasive enchantments generally concluded Hermione .Well at least you know one lesson youll be having this year thats one more than Ron and me .I wonder when our O .W .L .results will come ?Cant be long now its been a month said Ron .Hang on said Harry as another part of last nights conversation came back to him .I think Dumbledore said our O .W .L .results would be arriving today !Today ?shrieked Hermione .Today ?But why didnt you oh my God you should have said She leapt to her feet .Im going to see whether any owls have come .But when Harry arrived downstairs ten minutes later fully dressed and carrying his empty breakfast tray it was to find Hermione sitting at the kitchen table in great agitation while Mrs Weasley tried to lessen her resemblance to half a panda .It just wont budge Mrs Weasley was saying anxiously standing over Hermione with her wand in her hand and a copy of The Healers Helpmate open at Bruises Cuts and Abrasions .This has always worked before I just cant understand it .Itll be Fred and Georges idea of a funny joke making sure it cant come off said Ginny But its got to come off !squeaked Hermione .I cant go around looking like this forever !You wont dear well find an antidote dont worry said Mrs Weasley soothingly .Bill told me ow Fred and George are very amusing !said Fleur smiling serenely .Yes I can hardly breathe for laughing snapped Hermione .She jumped up and started walking round and round the kitchen twisting her fingers together .Mrs Weasley youre quite quite sure no owls have arrived this morning ?Yes dear Id have noticed said Mrs Weasley patiently .But its barely nine theres still plenty of time .I know I messed up Ancient Runes muttered Hermione feverishly I definitely made at least one serious mistranslation .And the Defense Against the Dark Arts practical was no good at all .I thought Transfiguration went all right at the time but looking back Hermione will you shut up youre not the only one whos nervous !barked Ron .And when youve got your eleven ‘Outstanding O .W .L .s .Dont dont dont !said Hermione flapping her hands hysterically .I know Ive failed everything !What happens if we fail ?Harry asked the room at large but it was again Hermione who answered .We discuss our options with our Head of House I asked Professor McGonagall at the end of last term .Harrys stomach squirmed .He wished he had eaten less breakfast .At Beauxbatons said Fleur complacently we ad a different way of doing things .I think eet was better .We sat our examinations after six years of study not five and then Fleurs words were drowned in a scream .Hermione was pointing through the kitchen window .Three black specks were clearly visible in the sky growing larger all the time .Theyre definitely owls said Ron hoarsely jumping up to join Hermione at the window .And there are three of them said Harry hastening to her other side .One for each of us said Hermione in a terrified whisper .Oh no .oh no .oh no .She gripped both Harry and Ron tightly around the elbows .The owls were flying directly at the Burrow three handsome tawnies each of which it became clear as they flew lower over the path leading up to the house was carrying a large square envelope .Oh no squealed Hermione .Mrs Weasley squeezed past them and opened the kitchen window .One two three the owls soared through it and landed on the table in a neat line .All three of them lifted their right legs .Harry moved forward .The letter addressed to him was tied to the leg of the owl in the middle .He untied it with fumbling fingers .To his left Ron was trying to detach his own results to his right Hermiones hands were shaking so much she was making her whole owl tremble .Nobody in the kitchen spoke .At last Harry managed to detach the envelope .He slit it open quickly and unfolded the parchment inside .ORDINARY WIZARDING LEVEL RESULTS Pass Grades Fail Grades Outstanding O Poor P Exceeds Expectations E Dreadful D Acceptable A Troll T Harry James Potter has achieved Astronomy A Care of Magical Creatures E Charms E Defense Against the Dark ArtsO Divination P Herbology E History of Magic D Potions E Transfiguration E Harry read the parchment through several times his breathing becoming easier with each reading .It was all right He had always known that he would fail Divination and he had had no chance of passing History of Magic given that he had collapsed halfway through the examination but he had passed everything else !He ran his finger down the grades .he had passed well in Transfiguration and Herbology he had even exceeded expectations at Potions !And best of all he had achieved Outstanding at Defense Against the Dark Arts !He looked around .Hermione had her back to him and her head bent but Ron was looking delighted .Only failed Divination and History of Magic and who cares about them ?he said happily to Harry .Here swap Harry glanced down Rons grades There were no Outstandings there .Knew youd be top at Defense Against the Dark Arts said Ron punching Harry on the shoulder .Weve done all right havent we ?Well done !said Mrs Weasley proudly ruffling Rons hair .Seven O .W .L .s thats more than Fred and George got together !Hermione ?said Ginny tentatively for Hermione still hadnt turned around .How did you do ?I not bad said Hermione in a small voice .Oh come off it said Ron striding over to her and whipping her results out of her hand .Yep nine ‘Outstandings and one ‘Exceeds Expectations at Defense Against the Dark Arts .He looked down at her halfamused halfexasperated .Youre actually disappointed arent you ?Hermione shook her head but Harry laughed .Well were N .E .W .T .students now !grinned Ron .Mum are there any more sausages ?Harry looked back down at his results .They were as good as he could have hoped for .He felt just one tiny twinge of regret .This was the end of his ambition to become an Auror .He had not secured the required Potions grade .He had known all along that he wouldnt but he still felt a sinking in his stomach as he looked again at that small black E .It was odd really seeing that it had been a Death Eater in disguise who had first told Harry he would make a good Auror but somehow the idea had taken hold of him and he couldnt really think of anything else he would like to be .Moreover it had seemed the right destiny for him since he had heard the prophecy a few weeks ago .Neither can live while the other survives .Wouldnt he be living up to the prophecy and giving himself the best chance of survival if he joined those highly trained wizards whose job it was to find and kill Voldemort ?6 DRACOS DETOUR Harry remained within the confines of the Burrows garden over the next few weeks .He spent most of his days playing twoaside Quidditch in the Weasleys orchard he and Hermione against Ron and Ginny Hermione was dreadful and Ginny good so they were reasonably well matched and his evenings eating triple helpings of everything Mrs Weasley put in front of him .It would have been a happy peaceful holiday had it not been for the stories of disappearances odd accidents even of deaths now appearing almost daily in the Prophet Sometimes Bill and Mr Weasley brought home news before it even reached the paper .To Mrs Weasleys displeasure Harrys sixteenth birthday celebrations were marred by grisly tidings brought to the party by Remus Lupin who was looking gaunt and grim his brown hair streaked liberally with gray his clothes more ragged and patched than ever .There have been another couple of dementor attacks he announced as Mrs Weasley passed him a large slice of birthday cake .And theyve found Igor Karkaroffs body in a shack up north .The Dark Mark had been set over it well frankly Im surprised he stayed alive for even a year after deserting the Death Eaters Siriuss brother Regulus only managed a few days as far as I can remember .Yes well said Mrs Weasley frowning perhaps we should talk about something diff Did you hear about Florean Fortescue Remus ?asked Bill who was being plied with wine by Fleur .The man who ran the icecream place in Diagon Alley ?Harry interrupted with an unpleasant hollow sensation in the pit of his stomach .He used to give me free ice creams .Whats happened to him ?Dragged off by the look of his place .Why ?asked Ron while Mrs Weasley pointedly glared at Bill .Who knows ?He mustve upset them somehow .He was a good man Florean .Talking of Diagon Alley said Mr Weasley looks like Ollivanders gone too .The wandmaker ?said Ginny looking startled .Thats the one .Shops empty .No sign of a struggle .No one knows whether he left voluntarily or was kidnapped .But wands whatll people do for wands ?Theyll make do with other makers said Lupin .But Ollivander was the best and if the other side have got him its not so good for us .The day after this rather gloomy birthday tea their letters and booklists arrived from Hogwarts .Harrys included a surprise He had been made Quidditch Captain .That gives you equal status with prefects !cried Hermione happily .You can use our special bathroom now and everything !Wow I remember when Charlie wore one of these said Ron examining the badge with glee .Harry this is so cool youre my Captain if you let me back on the team I suppose ha ha .Well I dont suppose we can put off a trip to Diagon Alley much longer now youve got these sighed Mrs Weasley looking down Rons booklist .Well go on Saturday as long as your father doesnt have to go into work again .Im not going there without him .Mum dyou honestly think YouKnow Whos going to be hiding behind a bookshelf in Flourish and Blotts ?sniggered Ron .Fortescue and Ollivander went on holiday did they ?said Mrs Weasley firing up at once .If you think securitys a laughing matter you can stay behind and Ill get your things myself No I wanna come I want to see Fred and Georges shop !said Ron hastily .Then you just buck up your ideas young man before I decide youre too immature to come with us !said Mrs Weasley angrily snatching up her clock all nine hands of which were still pointing at mortal peril and balancing it on top of a pile of just laundered towels .And that goes for returning to Hogwarts as well !Ron turned to stare incredulously at Harry as his mother hoisted the laundry basket and the teetering clock into her arms and stormed out of the room .Blimey .you cant even make a joke round here anymore .But Ron was careful not to be flippant about Voldemort over the next few days .Saturday dawned without any more outbursts from Mrs Weasley though she seemed very tense at breakfast .Bill who would be staying at home with Fleur much to Hermione and Ginnys pleasure passed a full money bag across the table to Harry .Wheres mine ?demanded Ron at once his eyes wide .Thats already Harrys idiot said Bill .I got it out of your vault for you Harry because its taking about five hours for the public to get to their gold at the moment the goblins have tightened security so much .Two days ago Arkie Philpott had a Probity Probe stuck up his .Well trust me this ways easier .Thanks Bill said Harry pocketing his gold .E is always so thoughtful purred Fleur adoringly stroking Bills nose .Ginny mimed vomiting into her cereal behind Fleur .Harry choked over his cornflakes and Ron thumped him on the back .It was an overcast murky day .One of the special Ministry of Magic cars in which Harry had ridden once before was awaiting them in the front yard when they emerged from the house pulling on their cloaks .Its good Dad can get us these again said Ron appreciatively stretching luxuriously as the car moved smoothly away from the Burrow Bill and Fleur waving from the kitchen window .He Harry Hermione and Ginny were all sitting in roomy comfort in the wide backseat .Dont get used to it its only because of Harry said Mr Weasley over his shoulder .He and Mrs Weasley were in front with the Ministry driver the front passenger seat had obligingly stretched into what resembled a twoseater sofa .Hes been given top grade security status .And well be joining up with additional security at the Leaky Cauldron too .Harry said nothing he did not much fancy doing his shopping while surrounded by a battalion of Aurors .He had stowed his Invisibility Cloak in his backpack and felt that if that was good enough for Dumbledore it ought to be good enough for the Ministry though now he came to think of it he was not sure the Ministry knew about his cloak .Here you are then said the driver a surprisingly short while later speaking for the first time as he slowed in Charing Cross Road and stopped outside the Leaky Cauldron .Im to wait for you any idea how long you 11 be ?A couple of hours I expect said Mr Weasley .Ah good hes here !Harry imitated Mr Weasley and peered through the window his heart leapt .There were no Aurors waiting outside the inn but instead the gigantic black bearded form of Rubeus Hagrid the Hogwarts gamekeeper wearing a long beaverskin coat beaming at the sight of Harrys face and oblivious to the startled stares of passing Muggles .Harry !he boomed sweeping Harry into a bone crushing hug the moment Harry had stepped out of the car .Buckbeak Witherwings I mean yeh should see him Harry hes so happy ter be back in the open air Glad hes pleased said Harry grinning as he massaged his ribs .We didnt know ‘security meant you !I know jus like old times innit ?See the Ministry wanted ter send a bunch o Aurors but Dumbledore said Id do said Hagrid proudly throwing out his chest and tucking his thumbs into his pockets .Lets get goin then after yeh Molly Arthur The Leaky Cauldron was for the first time in Harrys memory completely empty .Only Tom the landlord wizened and toothless remained of the old crowd .He looked up hopefully as they entered but before he could speak Hagrid said importantly Jus passin through today Tom sure yeh understand Hogwarts business yeh know .Tom nodded gloomily and returned to wiping glasses Harry Hermione Hagrid and the Weasleys walked through the bar and out into the chilly little courtyard at the back where the dustbins stood .Hagrid raised his pink umbrella and rapped a certain brick in the wall which opened at once to form an archway onto a winding cobbled street .They stepped through the entrance and paused looking around .Diagon Alley had changed .The colorful glittering window displays of spellbooks potion ingredients and cauldrons were lost to view hidden behind the large Ministry of Magic posters that had been pasted over them .Most of these somber purple posters carried blownup versions of the security advice on the Ministry pamphlets that had been sent out over the summer but others bore moving blackandwhite photographs of Death Eaters known to be on the loose .Bellatrix Lestrange was sneering from the front of the nearest apothecary .A few windows were boarded up including those of Florean Fortescues Ice Cream Parlor .On the other hand a number of shabbylooking stalls had sprung up along the street .The nearest one which had been erected outside Flourish and Blotts under a striped stained awning had a cardboard sign pinned to its front AMULETS Effective Against Werewolves Dementors and Inferi A seedylooking little wizard was rattling armfuls of silver symbols on chains at passersby .One for your little girl madam ?he called at Mrs Weasley as they passed leering at Ginny .Protect her pretty neck ?If I were on duty .said Mr Weasley glaring angrily at the amulet seller .Yes but dont go arresting anyone now dear were in a hurry said Mrs Weasley nervously consulting a list .I think wed better do Madam Malkins first Hermione wants new dress robes and Rons showing much too much ankle in his school robes and you must need new ones too Harry youve grown so much come on everyone Molly it doesnt make sense for all of us to go to Madam Malkins said Mr Weasley .Why dont those three go with Hagrid and we can go to Flourish and Blotts and get everyones schoolbooks ?I dont know said Mrs Weasley anxiously clearly torn between a desire to finish the shopping quickly and the wish to stick together in a pack .Hagrid do you think ?Don fret theyll be fine with me Molly said Hagrid soothingly waving an airy hand the size of a dustbin lid .Mrs Weasley did not look entirely convinced but allowed the separation scurrying off toward Flourish and Blotts with her husband and Ginny while Harry Ron Hermione and Hagrid set off for Madam Malkins .Harry noticed that many of the people who passed them had the same harried anxious look as Mrs Weasley and that nobody was stopping to talk anymore the shoppers stayed together in their own tightly knit groups moving intently about their business .Nobody seemed to be shopping alone .Migh be a bit of a squeeze in there with all of us said Hagrid stopping outside Madam Malkins and bending down to peer through the window .Ill stand guard outside all right ?So Harry Ron and Hermione entered the little shop together .It appeared at first glance to be empty but no sooner had the door swung shut behind them than they heard a familiar voice issuing from behind a rack of dress robes in spangled green and blue . .not a child in case you havent noticed Mother .I am perfectly capable of doing my shopping alone .There was a clucking noise and a voice Harry recognized as that of Madam Malkin the owner said Now dear your mothers quite right none of us is supposed to go wandering around on our own anymore its nothing to do with being a child Watch where youre sticking that pin will you !A teenage boy with a pale pointed face and white blond hair appeared from behind the rack wearing a handsome set of dark green robes that glittered with pins around the hem and the edges of the sleeves .He strode to the mirror and examined himself it was a few moments before he noticed Harry Ron and Hermione reflected over his shoulder .His light gray eyes narrowed .If youre wondering what the smell is Mother a Mudblood just walked in said Draco Malfoy .I dont think theres any need for language like that !said Madam Malkin scurrying out from behind the clothes rack holding a tape measure and a wand .And I dont want wands drawn in my shop either !she added hastily for a glance toward the door had shown her Harry and Ron both standing there with their wands out and pointing at Malfoy .Hermione who was standing slightly behind them whispered No dont honestly its not worth it .Yeah like youd dare do magic out of school sneered Malfoy .Who blacked your eye Granger ?I want to send them flowers .Thats quite enough !said Madam Malkin sharply looking over her shoulder for support .Madam please Narcissa Malfoy strolled out from behind the clothes rack .Put those away she said coldly to Harry and Ron .If you attack my son again I shall ensure that it is the last thing you ever do .Really ?said Harry taking a step forward and gazing into the smoothly arrogant face that for all its pallor still resembled her sisters .He was as tall as she was now .Going to get a few Death Eater pals to do us in are you ?Madam Malkin squealed and clutched at her heart .Really you shouldnt accuse dangerous thing to say wands away please !But Harry did not lower his wand .Narcissa Malfoy smiled unpleasantly .I see that being Dumbledores favorite has given you a false sense of security Harry Potter .But Dumbledore wont always be there to protect you .Harry looked mockingly all around the shop .Wow .look at that .hes not here now !So why not have a go ?They might be able to find you a double cell in Azkaban with your loser of a husband !Malfoy made an angry movement toward Harry but stumbled over his overlong robe .Ron laughed loudly .Dont you dare talk to my mother like that Potter !Malfoy snarled .Its all right Draco said Narcissa restraining him with her thin white fingers upon his shoulder .I expect Potter will be reunited with dear Sirius before I am reunited with Lucius .Harry raised his wand higher .Harry no !moaned Hermione grabbing his arm and attempting to push it down by his side .Think .You mustnt .Youll be in such trouble .Madam Malkin dithered for a moment on the spot then seemed to decide to act as though nothing was happening in the hope that it wouldnt .She bent toward Malfoy who was still glaring at Harry .I think this left sleeve could come up a little bit more dear let me just Ouch !bellowed Malfoy slapping her hand away .Watch where youre putting your pins woman !Mother I dont think I want these anymore He pulled the robes over his head and threw them onto the floor at Madam Malkins feet .Youre right Draco said Narcissa with a contemptuous glance at Hermione now I know the kind of scum that shops here .Well do better at Twilfitt and Tattings .And with that the pair of them strode out of the shop Malfoy taking care to bang as hard as he could into Ron on the way out .Well reallyl said Madam Malkin snatching up the fallen robes and moving the tip of her wand over them like a vacuum cleaner so that it removed all the dust .She was distracted all through the fitting of Rons and Harrys new robes tried to sell Hermione wizards dress robes instead of witchs and when she finally bowed them out of the shop it was with an air of being glad to see the back of them .Got evrything ?asked Hagrid brightly when they reappeared at his side .Just about said Harry .Did you see the Malfoys ?Yeah said Hagrid unconcerned .Bu they wouldn dare make trouble in the middle o Diagon Alley Harry .Don worry abou them .Harry Ron and Hermione exchanged looks but before they could disabuse Hagrid of this comfortable notion Mr and Mrs Weasley and Ginny appeared all clutching heavy packages of books .Everyone all right ?said Mrs Weasley .Got your robes ?Right then we can pop in at the Apothecary and Eeylops on the way to Fred and Georges stick close now .Neither Harry nor Ron bought any ingredients at the Apothecary seeing that they were no longer studying Potions but both bought large boxes of owl nuts for Hedwig and Pigwidgeon at Eeylops Owl Emporium .Then with Mrs Weasley checking her watch every minute or so they headed farther along the street in search of Weasleys Wizard Wheezes the joke shop run by Fred and George .We really havent got too long Mrs Weasley said .So well just have a quick look around and then back to the car .We must be close thats number ninety two .ninetyfour .Whoa said Ron stopping in his tracks .Set against the dull postermuffled shop fronts around them Fred and Georges windows hit the eye like a firework display .Casual passersby were looking back over their shoulders at the windows and a few rather stunnedlooking people had actually come to a halt transfixed .The lefthand window was dazzlingly full of an assortment of goods that revolved popped flashed bounced and shrieked Harrys eyes began to water just looking at it .The righthand window was covered with a gigantic poster purple like those of the Ministry but emblazoned with flashing yellow letters WHY ARE YOU WORRYING ABOUT YOUKNOWWHO ?YOU SHOULD BE WORRYING ABOUT UNOPOO THE CONSTIPATION SENSATION THATS GRIPPING THE NATION !Harry started to laugh .He heard a weak sort of moan beside him and looked around to see Mrs Weasley gazing dumbfounded at the poster .Her lips moved silently mouthing the name UNoPoo .Theyll be murdered in their beds !she whispered .No they wont !said Ron who like Harry was laughing .This is brilliant !And he and Harry led the way into the shop .It was packed with customers Harry could not get near the shelves .He stared around looking up at the boxes piled to the ceiling Here were the Skiving Snackboxes that the twins had perfected during their last unfinished year at Hogwarts Harry noticed that the Nosebleed Nougat was most popular with only one battered box left on the shelf .There were bins full of trick wands the cheapest merely turning into rubber chickens or pairs of briefs when waved the most expensive beating the unwary user around the head and neck and boxes of quills which came in Self Inking SpellChecking and SmartAnswer varieties .A space cleared in the crowd and Harry pushed his way toward the counter where a gaggle of delighted tenyearolds was watching a tiny little wooden man slowly ascending the steps to a real set of gallows both perched on a box that read REUSABLE HANGMAN SPELL IT OR HELL SWING ! ‘Patented Daydream Charms .Hermione had managed to squeeze through to a large display near the counter and was reading the information on the back of a box bearing a highly colored picture of a handsome youth and a swooning girl who were standing on the deck of a pirate ship . ‘One simple incantation and you will enter a top quality highly realistic thirtyminute daydream easy to fit into the average school lesson and virtually undetectable side effects include vacant expression and minor drooling .Not for sale to undersixteens .You know said Hermione looking up at Harry that really is extraordinary magic !For that Hermione said a voice behind them you can have one for free .A beaming Fred stood before them wearing a set of magenta robes that clashed magnificently with his flaming hair .How are you Harry ?They shook hands .And whats happened to your eye Hermione ?Your punching telescope she said ruefully .Oh blimey I forgot about those said Fred .Here He pulled a tub out of his pocket and handed it to her she unscrewed it gingerly to reveal a thick yellow paste .Just dab it on that bruisell be gone within the hour said Fred .We had to find a decent bruise remover .Were testing most of our products on ourselves .Hermione looked nervous .It is safe isnt it ?she asked .Course it is said Fred bracingly .Come on Harry Ill give you a tour .Harry left Hermione dabbing her black eye with paste and followed Fred toward the back of the shop where he saw a stand of card and rope tricks .Muggle magic tricks !said Fred happily pointing them out .For freaks like Dad you know who love Muggle stuff .Its not a big earner but we do fairly steady business theyre great novelties .Oh heres George .Freds twin shook Harrys hand energetically .Giving him the tour ?Come through the back Harry thats where were making the real money pocket anything you and youll pay in more than GalleonsV he added warningly to a small boy who hastily whipped his hand out of the tub labeled EDIBLE DARK MARKS THEYLL MAKE ANYONE SICK !George pushed back a curtain beside the Muggle tricks and Harry saw a darker less crowded room .The packaging on the products lining these shelves was more subdued .Weve just developed this more serious line said Fred .Funny how it happened .You wouldnt believe how many people even people who work at the Ministry cant do a decent Shield Charm said George .Course they didnt have you teaching them Harry .Thats right .Well we thought Shield Hats were a bit of a laugh you know challenge your mate to jinx you while wearing it and watch his face when the jinx just bounces off .But the Ministry bought five hundred for all its support staff !And were still getting massive orders !So weve expanded into a range of Shield Cloaks Shield Gloves . .I mean they wouldnt help much against the Unforgivable Curses but for minor to moderate hexes or jinxes .And then we thought wed get into the whole area of Defense Against the Dark Arts because its such a money spinner continued George enthusiastically .This is cool .Look Instant Darkness Powder were importing it from Peru .Handy if you want to make a quick escape .And our Decoy Detonators are just walking off the shelves look said Fred pointing at a number of weirdlooking black horntype objects that were indeed attempting to scurry out of sight .You just drop one surreptitiously and itll run off and make a nice loud noise out of sight giving you a diversion if you need one .Handy said Harry impressed .Here said George catching a couple and throwing them to Harry .A young witch with short blonde hair poked her head around the curtain Harry saw that she too was wearing magenta staff robes .Theres a customer out here looking for a joke cauldron Mr Weasley and Mr Weasley she said .Harry found it very odd to hear Fred and George called Mr Weasley but they took it in their stride .Right you are Verity Im coming said George promptly .Harry you help yourself to anything you want all right ?No charge .I cant do that !said Harry who had already pulled out his money bag to pay for the Decoy Detonators .You dont pay here said Fred firmly waving away Harrys gold .But You gave us our startup loan we havent forgotten said George sternly .Take whatever you like and just remember to tell people where you got it if they ask .George swept off through the curtain to help with the customers and Fred led Harry back into the main part of the shop to find Hermione and Ginny still poring over the Patented Daydream Charms .Havent you girls found our special WonderWitch products yet ?asked Fred .Follow me ladies .Near the window was an array of violently pink products around which a cluster of excited girls was giggling enthusiastically .Hermione and Ginny both hung back looking wary .There you go said Fred proudly .Best range of love potions youll find anywhere .Ginny raised an eyebrow skeptically .Do they work ?she asked .Certainly they work for up to twentyfour hours at a time depending on the weight of the boy in question and the attractiveness of the girl said George reappearing suddenly at their side .But were not selling them to our sister he added becoming suddenly stern not when shes already got about five boys on the go from what weve Whatever youve heard from Ron is a big fat lie said Ginny calmly leaning forward to take a small pink pot off the shelf .Whats this ?Guaranteed tensecond pimple vanisher said Fred .Excellent on everything from boils to blackheads but dont change the subject .Are you or are you not currently going out with a boy called Dean Thomas ?Yes I am said Ginny .And last time I looked he was definitely one boy not five .What are those ?She was pointing at a number of round balls of fluff in shades of pink and purple all rolling around the bottom of a cage and emitting highpitched squeaks .Pygmy Puffs said George .Miniature puffskeins we cant breed them fast enough .So what about Michael Corner ?I dumped him he was a bad loser said Ginny putting a finger through the bars of the cage and watching the Pygmy Puffs crowd around it .Theyre really cute !Theyre fairly cuddly yes conceded Fred .But youre moving through boyfriends a bit fast arent you ?Ginny turned to look at him her hands on her hips .There was such a Mrs Weasleyish glare on her face that Harry was surprised Fred didnt recoil .Its none of your business .And Ill thank you she added angrily to Ron who had just appeared at Georges elbow laden with merchandise not to tell tales about me to these two !Thats three Galleons nine Sickles and a Knut said Fred examining the many boxes in Rons arms .Cough up .Im your brother !And thats our stuff youre nicking .Three Galleons nine Sickles .Ill knock off the Knut .But I havent got three Galleons nine Sickles !Youd better put it back then and mind you put it on the right shelves .Ron dropped several boxes swore and made a rude hand gesture at Fred that was unfortunately spotted by Mrs Weasley who had chosen that moment to appear .If I see you do that again Ill jinx your fingers together she said sharply .Mum can I have a Pygmy Puff ?said Ginny at once .A what ?said Mrs Weasley warily .Look theyre so sweet .Mrs Weasley moved aside to look at the Pygmy Puffs and Harry Ron and Hermione momentarily had an unimpeded view out of the window .Draco Malfoy was hurrying up the street alone .As he passed Weasleys Wizard Wheezes he glanced over his shoulder .Seconds later he moved beyond the scope of the window and they lost sight of him .Wonder where his mummy is ?said Harry frowning .Given her the slip by the looks of it said Ron .Why though ?said Hermione .Harry said nothing he was thinking too hard .Narcissa Malfoy would not have let her precious son out of her sight willingly Malfoy must have made a real effort to free himself from her clutches .Harry knowing and loathing Malfoy was sure the reason could not be innocent .He glanced around .Mrs Weasley and Ginny were bending over the Pygmy Puffs .Mr Weasley was delightedly examining a pack of Muggle marked playing cards .Fred and George were both helping customers .On the other side of the glass Hagrid was standing with his back to them looking up and down the street .Get under here quick said Harry pulling his Invisibility Cloak out of his bag .Oh I dont know Harry said Hermione looking uncertainly toward Mrs Weasley .Come on said Ron .She hesitated for a second longer then ducked under the cloak with Harry and Ron .Nobody noticed them vanish they were all too interested in Fred and Georges products .Harry Ron and Hermione squeezed their way out of the door as quickly as they could but by the time they gained the street Malfoy had disappeared just as successfully as they had .He was going in that direction murmured Harry as quietly as possible so that the humming Hagrid would not hear them .Cmon .They scurried along peering left and right through shop windows and doors until Hermione pointed ahead .Thats him isnt it ?she whispered .Turning left ?Big surprise whispered Ron .For Malfoy had glanced around then slid into Knockturn Alley and out of sight .Quick or well lose him said Harry speeding up .Our feetll be seen !said Hermione anxiously as the cloak flapped a little around their ankles it was much more difficult hiding all three of them under the cloak nowadays .It doesnt matter said Harry impatiently .Just hurry !But Knockturn Alley the side street devoted to the Dark Arts looked completely deserted .They peered into windows as they passed but none of the shops seemed to have any customers at all .Harry supposed it was a bit of a giveaway in these dangerous and suspicious times to buy Dark artifacts or at least to be seen buying them .Hermione gave his arm a hard pinch .Ouch !Shh !Look !Hes in there !she breathed in Harrys ear .They had drawn level with the only shop in Knockturn Alley that Harry had ever visited Borgin and Burkes which sold a wide variety of sinister objects .There in the midst of the cases full of skulls and old bottles stood Draco Malfoy with his back to them just visible beyond the very same large black cabinet in which Harry had once hidden to avoid Malfoy and his father .Judging by the movements of Malfoys hands he was talking animatedly .The proprietor of the shop Mr Borgin an oilyhaired stooping man stood facing Malfoy .He was wearing a curious expression of mingled resentment and fear .If only we could hear what theyre saying !said Hermione .We can !said Ron excitedly .Hang on damn He dropped a couple more of the boxes he was still clutching as he fumbled with the largest .Extendable Ears look !Fantastic !said Hermione as Ron unraveled the long fleshcolored strings and began to feed them toward the bottom of the door .Oh I hope the door isnt Imperturbable No !said Ron gleefully .Listen !They put their heads together and listened intently to the ends of the strings through which Malfoys voice could be heard loud and clear as though a radio had been turned on . .you know how to fix it ?Possibly said Borgin in a tone that suggested he was unwilling to commit himself .Ill need to see it though .Why dont you bring it into the shop ?I cant said Malfoy .Its got to stay put .I just need you to tell me how to do it .Harry saw Borgin lick his lips nervously .Well without seeing it I must say it will be a very difficult job perhaps impossible .I couldnt guarantee anything .No ?said Malfoy and Harry knew just by his tone that Malfoy was sneering .Perhaps this will make you more confident .He moved toward Borgin and was blocked from view by the cabinet .Harry Ron and Hermione shuffled sideways to try and keep him in sight but all they could see was Borgin looking very frightened .Tell anyone said Malfoy and there will be retribution .You know Fenrir Greyback ?Hes a family friend .Hell be dropping in from time to time to make sure youre giving the problem your full attention .There will be no need for Ill decide that said Malfoy .Well Id better be off .And dont forget to keep that one safe Ill need it .Perhaps youd like to take it now ?No of course I wouldnt you stupid little man how would I look carrying that down the street ?Just dont sell it .Of course not .sir .Borgin made a bow as deep as the one Harry had once seen him give Lucius Malfoy .Not a word to anyone Borgin and that includes my mother understand ?Naturally naturally murmured Borgin bowing again .Next moment the bell over the door tinkled loudly as Malfoy stalked out of the shop looking very pleased with himself .He passed so close to Harry Ron and Hermione that they felt the cloak flutter around their knees again .Inside the shop Borgin remained frozen his unctuous smile had vanished he looked worried .What was that about ?whispered Ron reeling in the Extendable Ears .Dunno said Harry thinking hard .He wants something mended .and he wants to reserve something in there .Could you see what he pointed at when he said ‘that one ?No he was behind that cabinet You two stay here whispered Hermione .What are you ?But Hermione had already ducked out from under the cloak .She checked her hair in the reflection in the glass then marched into the shop setting the bell tinkling again .Ron hastily fed the Extendable Ears back under the door and passed one of the strings to Harry .Hello horrible morning isnt it ?Hermione said brightly to Borgin who did not answer but cast her a suspicious look .Humming cheerily Hermione strolled through the jumble of objects on display .Is this necklace for sale ?she asked pausing beside a glassfronted case .If youve got one and a half thousand Galleons said Mr Borgin coldly .Oh er no I havent got quite that much said Hermione walking on .And .what about this lovely um skull ?Sixteen Galleons .So its for sale then ?It isnt being .kept for anyone ?Mr Borgin squinted at her .Harry had the nasty feeling he knew exactly what Hermione was up to .Apparently Hermione felt she had been rumbled too because she suddenly threw caution to the winds .The thing is that er boy who was in here just now Draco Malfoy well hes a friend of mine and I want to get him a birthday present but if hes already reserved anything I obviously dont want to get him the same thing so .um .It was a pretty lame story in Harrys opinion and apparently Borgin thought so too .Out he said sharply .Get out !Hermione did not wait to be asked twice but hurried to the door with Borgin at her heels .As the bell tinkled again Borgin slammed the door behind her and put up the closed sign .Ah well said Ron throwing the cloak back over Hermione .Worth a try but you were a bit obvious Well next time you can show me how its done Master of Mystery !she snapped .Ron and Hermione bickered all the way back to Weasleys Wizard Wheezes where they were forced to stop so that they could dodge undetected around a very anxiouslooking Mrs Weasley and Hagrid who had clearly noticed their absence .Once in the shop Harry whipped off the Invisibility Cloak hid it in his bag and joined in with the other two when they insisted in answer to Mrs Weasleys accusations that they had been in the back room all along and that she could not have looked properly .7 THE SLUG CLUB Harry spent a lot of the last week of the holidays pondering the meaning of Malfoys behavior in Knockturn Alley .What disturbed him most was the satisfied look on Malfoys face as he had left the shop .Nothing that made Malfoy look that happy could be good news .To his slight annoyance however neither Ron nor Hermione seemed quite as curious about Malfoys activities as he was or at least they seemed to get bored of discussing it after a few days .Yes Ive already agreed it was fishy Harry said Hermione a little impatiently .She was sitting on the windowsill in Fred and Georges room with her feet up on one of the cardboard boxes and had only grudgingly looked up from her new copy of Advanced Rune Translation .But havent we agreed there could be a lot of explanations ?Maybe hes broken his Hand of Glory said Ron vaguely as he attempted to straighten his broomsticks bent tail twigs .Remember that shriveledup arm Malfoy had ?But what about when he said ‘Dont forget to keep that one safe ?asked Harry for the umpteenth time .That sounded to me like Borgins got another one of the broken objects and Malfoy wants both .You reckon ?said Ron now trying to scrape some dirt off his broom handle .Yeah I do said Harry .When neither Ron nor Hermione answered he said Malfoys fathers in Azkaban .Dont you think Malfoyd like revenge ?Ron looked up blinking .Malfoy revenge ?What can he do about it ?Thats my point I dont know !said Harry frustrated .But hes up to something and I think we should take it seriously .His fathers a Death Eater and Harry broke off his eyes fixed on the window behind Hermione his mouth open .A startling thought had just occurred to him .Harry ?said Hermione in an anxious voice .Whats wrong ?Your scars not hurting again is it ?asked Ron nervously .Hes a Death Eater said Harry slowly .Hes replaced his father as a Death Eater !There was a silence then Ron erupted in laughter .Malfoy ?Hes sixteen Harry !You think YouKnow Who would let Malfoy join ?It seems very unlikely Harry said Hermione in a repressive sort of voice .What makes you think ?In Madam Malkins .She didnt touch him but he yelled and jerked his arm away from her when she went to roll up his sleeve .It was his left arm .Hes been branded with the Dark Mark .Ron and Hermione looked at each other .Well .said Ron sounding thoroughly unconvinced .I think he just wanted to get out of there Harry said Hermione .He showed Borgin something we couldnt see Harry pressed on stubbornly .Something that seriously scared Borgin .It was the Mark I know it he was showing Borgin who he was dealing with you saw how seriously Borgin took him !Ron and Hermione exchanged another look .Im not sure Harry .Yeah I still dont reckon YouKnowWho would let Malfoy join .Annoyed but absolutely convinced he was right Harry snatched up a pile of filthy Quidditch robes and left the room Mrs Weasley had been urging them for days not to leave their washing and packing until the last moment .On the landing he bumped into Ginny who was returning to her room carrying a pile of freshly laundered clothes .I wouldnt go in the kitchen just now she warned him .Theres a lot of Phlegm around .Ill be careful not to slip in it .Harry smiled .Sure enough when he entered the kitchen it was to find Fleur sitting at the kitchen table in full flow about plans for her wedding to Bill while Mrs Weasley kept watch over a pile of selfpeeling sprouts looking badtempered . .Bill and I ave almost decided on only two bridesmaids Ginny and Gabrielle will look very sweet togezzer .I am theenking of dressing zem in pale gold pink would of course be orrible with Ginnys air Ah Harry !said Mrs Weasley loudly cutting across Fleurs monologue .Good I wanted to explain about the security arrangements for the journey to Hogwarts tomorrow .Weve got Ministry cars again and there will be Aurors waiting at the station Is Tonks going to be there ?asked Harry handing over his Quidditch things .No I dont think so shes been stationed somewhere else from what Arthur said .She has let erself go zat Tonks Fleur mused examining her own stunning reflection in the back of a teaspoon .A big mistake if you ask Yes thank you said Mrs Weasley tartly cutting across Fleur again .Youd better get on Harry I want the trunks ready tonight if possible so we dont have the usual lastminute scramble .And in fact their departure the following morning was smoother than usual .The Ministry cars glided up to the front of the Burrow to find them waiting trunks packed Hermiones cat Crookshanks safely enclosed in his traveling basket and Hedwig Rons owl Pigwidgeon and Ginnys new purple Pygmy Puff Arnold in cages .Au revoir Ariy said Fleur throatily kissing him goodbye .Ron hurried forward looking hopeful but Ginny stuck out her foot and Ron fell sprawling in the dust at Fleurs feet .Furious redfaced and dirt spattered he hurried into the car without saying goodbye .There was no cheerful Hagrid waiting for them at Kings Cross Station .Instead two grimfaced bearded Aurors in dark Muggle suits moved forward the moment the cars stopped and flanking the party marched them into the station without speaking .Quick quick through the barrier said Mrs Weasley who seemed a little flustered by this austere efficiency .Harry had better go first with She looked inquiringly at one of the Aurors who nodded briefly seized Harrys upper arm and attempted to steer him toward the barrier between platforms nine and ten .I can walk thanks said Harry irritably jerking his arm out of the Aurors grip .He pushed his trolley directly at the solid barrier ignoring his silent companion and found himself a second later standing on platform nine and threequarters where the scarlet Hogwarts Express stood belching steam over the crowd .Hermione and the Weasleys joined him within seconds .Without waiting to consult his grimfaced Auror Harry motioned to Ron and Hermione to follow him up the platform looking for an empty compartment .We cant Harry said Hermione looking apologetic .Ron and Ive got to go to the prefects carriage first and then patrol the corridors for a bit .Oh yeah I forgot said Harry .Youd better get straight on the train all of you youve only got a few minutes to go said Mrs Weasley consulting her watch .Well have a lovely term Ron .Mr Weasley can I have a quick word ?said Harry making up his mind on the spur of the moment .Of course said Mr Weasley who looked slightly surprised but followed Harry out of earshot of the others nevertheless .Harry had thought it through carefully and come to the conclusion that if he was to tell anyone Mr Weasley was the right person firstly because he worked at the Ministry and was therefore in the best position to make further investigations and secondly because he thought that there was not too much risk of Mr Weasley exploding with anger .He could see Mrs Weasley and the grimfaced Auror casting the pair of them suspicious looks as they moved away .When we were in Diagon Alley Harry began but Mr Weasley forestalled him with a grimace .Am I about to discover where you Ron and Hermione disappeared to while you were supposed to be in the back room of Fred and Georges shop ?How did you ?Harry please .Youre talking to the man who raised Fred and George .Er .yeah all right we werent in the back room .Very well then lets hear the worst .Well we followed Draco Malfoy .We used my Invisibility Cloak .Did you have any particular reason for doing so or was it a mere whim ?Because I thought Malfoy was up to something said Harry disregarding Mr Weasleys look of mingled exasperation and amusement .Hed given his mother the slip and I wanted to know why .Of course you did said Mr Weasley sounding resigned .Well ?Did you find out why ?He went into Borgin and Burkes said Harry and started bullying the bloke in there Borgin to help him fix something .And he said he wanted Borgin to keep something else for him .He made it sound like it was the same kind of thing that needed fixing .Like they were a pair .And .Harry took a deep breath .Theres something else .We saw Malfoy jump about a mile when Madam Malkin tried to touch his left arm .I think hes been branded with the Dark Mark .I think hes replaced his father as a Death Eater .Mr Weasley looked taken aback .After a moment he said Harry I doubt whether YouKnowWho would allow a sixteenyearold Does anyone really know what YouKnowWho would or wouldnt do ?asked Harry angrily .Mr Weasley Im sorry but isnt it worth investigating ?If Malfoy wants something fixing and he needs to threaten Borgin to get it done its probably something Dark or dangerous isnt it ?I doubt it to be honest Harry said Mr Weasley slowly .You see when Lucius Malfoy was arrested we raided his house .We took away everything that might have been dangerous .I think you missed something said Harry stubbornly .Well maybe said Mr Weasley but Harry could tell that Mr Weasley was humoring him .There was a whistle behind them nearly everyone had boarded the train and the doors were closing .Youd better hurry said Mr Weasley as Mrs Weasley cried Harry quickly !He hurried forward and Mr and Mrs Weasley helped him load his trunk onto the train .Now dear youre coming to us for Christmas its all fixed with Dumbledore so well see you quite soon said Mrs Weasley through the window as Harry slammed the door shut behind him and the train began to move .You make sure you look after yourself and The train was gathering speed .be good and She was jogging to keep up now .stay safe !Harry waved until the train had turned a corner and Mr and Mrs Weasley were lost to view then turned to see where the others had got to .He supposed Ron and Hermione were cloistered in the prefects carriage but Ginny was a little way along the corridor chatting to some friends .He made his way toward her dragging his trunk .People stared shamelessly as he approached .They even pressed their faces against the windows of their compartments to get a look at him .He had expected an upswing in the amount of gaping and gawping he would have to endure this term after all the Chosen One rumors in the Daily Prophet but he did not enjoy the sensation of standing in a very bright spotlight .He tapped Ginny on the shoulder .Fancy trying to find a compartment ?I cant Harry I said Id meet Dean said Ginny brightly .See you later .Right said Harry .He felt a strange twinge of annoyance as she walked away her long red hair dancing behind her he had become so used to her presence over the summer that he had almost forgotten that Ginny did not hang around with him Ron and Hermione while at school .Then he blinked and looked around He was surrounded by mesmerized girls .Hi Harry !said a familiar voice from behind him .Neville !said Harry in relief turning to see a round faced boy struggling toward him .Hello Harry said a girl with long hair and large misty eyes who was just behind Neville .Luna hi how are you ?Very well thank you said Luna .She was clutching a magazine to her chest large letters on the front announced that there was a pair of free Spectrespecs inside .Quibbler still going strong then ?asked Harry who felt a certain fondness for the magazine having given it an exclusive interview the previous year .Oh yes circulations well up said Luna happily .Lets find seats said Harry and the three of them set off along the train through hordes of silently staring students .At last they found an empty compartment and Harry hurried inside gratefully .Theyre even staring at us !said Neville indicating himself and Luna .Because were with you !Theyre staring at you because you were at the Ministry too said Harry as he hoisted his trunk into the luggage rack .Our little adventure there was all over the Daily Prophet you mustve seen it .Yes I thought Gran would be angry about all the publicity said Neville but she was really pleased .Says Im starting to live up to my dad at long last .She bought me a new wand look !He pulled it out and showed it to Harry .Cherry and unicorn hair he said proudly .We think it was one of the last Ollivander ever sold he vanished next day oi come back here Trevor !And he dived under the seat to retrieve his toad as it made one of its frequent bids for freedom .Are we still doing D .A .meetings this year Harry ?asked Luna who was detaching a pair of psychedelic spectacles from the middle of The Quibbler .No point now weve got rid of Umbridge is there ?said Harry sitting down .Neville bumped his head against the seat as he emerged from under it .He looked most disappointed .I liked the D .A .I learned loads with you !I enjoyed the meetings too said Luna serenely .It was like having friends .This was one of those uncomfortable things Luna often said and which made Harry feel a squirming mixture of pity and embarrassment .Before he could respond however there was a disturbance outside their compartment door a group of fourthyear girls was whispering and giggling together on the other side of the glass .You ask him !No you !Ill do it !And one of them a boldlooking girl with large dark eyes a prominent chin and long black hair pushed her way through the door .Hi Harry Im Romilda Romilda Vane she said loudly and confidently .Why dont you join us in our compartment ?You dont have to sit with them she added in a stage whisper indicating Nevilles bottom which was sticking out from under the seat again as he groped around for Trevor and Luna who was now wearing her free Spectrespecs which gave her the look of a demented multicolored owl .Theyre friends of mine said Harry coldly .Oh said the girl looking very surprised .Oh .Okay .And she withdrew sliding the door closed behind her .People expect you to have cooler friends than us said Luna once again displaying her knack for embarrassing honesty .You are cool said Harry shortly .None of them was at the Ministry .They didnt fight with me .Thats a very nice thing to say beamed Luna .Then she pushed her Spectrespecs farther up her nose and settled down to read The Quibbler .We didnt face him though said Neville emerging from under the seat with fluff and dust in his hair and a resignedlooking Trevor in his hand .You did .You should hear my gran talk about you . ‘That Harry Potters got more backbone than the whole Ministry of Magic put together .Shed give anything to have you as a grandson .Harry laughed uncomfortably and changed the subject to O .W .L .results as soon as he could .While Neville recited his grades and wondered aloud whether he would be allowed to take a Transfiguration N .E .W .T .with only an Acceptable Harry watched him without really listening .Nevilles childhood had been blighted by Voldemort just as much as Harrys had but Neville had no idea how close he had come to having Harrys destiny .The prophecy could have referred to either of them yet for his own inscrutable reasons Voldemort had chosen to believe that Harry was the one meant .Had Voldemort chosen Neville it would be Neville sitting opposite Harry bearing the lightningshaped scar and the weight of the prophecy .Or would it ?Would Nevilles mother have died to save him as Lily had died for Harry ?Surely she would .But what if she had been unable to stand between her son and Voldemort ?Would there then have been no Chosen One at all ?An empty seat where Neville now sat and a scarless Harry who would have been kissed good bye by his own mother not Rons ?You all right Harry ?You look funny said Neville .Harry started .Sorry I Wrackspurt got you ?asked Luna sympathetically peering at Harry through her enormous colored spectacles .I what ?A Wrackspurt .Theyre invisible .They float in through your ears and make your brain go fuzzy she said .I thought I felt one zooming around in here .She flapped her hands at thin air as though beating off large invisible moths .Harry and Neville caught each others eyes and hastily began to talk of Quidditch .The weather beyond the train windows was as patchy as it had been all summer they passed through stretches of the chilling mist then out into weak clear sunlight .It was during one of the clear spells when the sun was visible almost directly overhead that Ron and Hermione entered the compartment at last .Wish the lunch trolley would hurry up Im starving said Ron longingly slumping into the seat beside Harry and rubbing his stomach .Hi Neville .Hi Luna .Guess what ?he added turning to Harry .Malfoys not doing prefect duty .Hes just sitting in his compartment with the other Slytherins we saw him when we passed .Harry sat up straight interested .It was not like Malfoy to pass up the chance to demonstrate his power as prefect which he had happily abused all the previous year .What did he do when he saw you ?The usual said Ron indifferently demonstrating a rude hand gesture .Not like him though is it ?Well that is he did the hand gesture again but why isnt he out there bullying first years ?Dunno said Harry but his mind was racing .Didnt this look as though Malfoy had more important things on his mind than bullying younger students ?Maybe he preferred the Inquisitorial Squad said Hermione .Maybe being a prefect seems a bit tame after that .I dont think so said Harry .I think hes But before he could expound on his theory the compartment door slid open again and a breathless third year girl stepped inside .Im supposed to deliver these to Neville Longbottom and Harry PPotter she faltered as her eyes met Harrys and she turned scarlet .She was holding out two scrolls of parchment tied with violet ribbon .Perplexed Harry and Neville took the scroll addressed to each of them and the girl stumbled back out of the compartment .What is it ?Ron demanded as Harry unrolled his .An invitation said Harry .Harry I would be delighted if you would join me for a bite of lunch in compartment C .Sincerely Professor H .E .F .Slug horn Whos Professor Slughorn ?asked Neville looking perplexedly at his own invitation .New teacher said Harry .Well I suppose well have to go wont we ?But what does he want me for ?asked Neville nervously as though he was expecting detention .No idea said Harry which was not entirely true though he had no proof yet that his hunch was correct .Listen he added seized by a sudden brain wave lets go under the Invisibility Cloak then we might get a good look at Malfoy on the way see what hes up to .This idea however came to nothing The corridors which were packed with people on the lookout for the lunch trolley were impossible to negotiate while wearing the cloak .Harry stowed it regretfully back in his bag reflecting that it would have been nice to wear it just to avoid all the staring which seemed to have increased in intensity even since he had last walked down the train .Every now and then students would hurtle out of their compartments to get a better look at him .The exception was Cho Chang who darted into her compartment when she saw Harry coming .As Harry passed the window he saw her deep in determined conversation with her friend Marietta who was wearing a very thick layer of makeup that did not entirely obscure the odd formation of pimples still etched across her face .Smirking slightly Harry pushed on .When they reached compartment C they saw at once that they were not Slughorns only invitees although judging by the enthusiasm of Slughorns welcome Harry was the most warmly anticipated .Harry mboy !said Slughorn jumping up at the sight of him so that his great velvetcovered belly seemed to fill all the remaining space in the compartment .His shiny bald head and great silvery mustache gleamed as brightly in the sunlight as the golden buttons on his waistcoat .Good to see you good to see you !And you must be Mr Longbottom !Neville nodded looking scared .At a gesture from Slughorn they sat down opposite each other in the only two empty seats which were nearest the door .Harry glanced around at their fellow guests .He recognized a Slytherin from their year a tall black boy with high cheekbones and long slanting eyes there were also two seventhyear boys Harry did not know and squashed in the corner beside Slughorn and looking as though she was not entirely sure how she had got there Ginny .Now do you know everyone ?Slughorn asked Harry and Neville .Blaise Zabini is in your year of course Zabini did not make any sign of recognition or greeting nor did Harry or Neville Gryffindor and Slytherin students loathed each other on principle .This is Cormac McLaggen perhaps youve come across each other ?No ?McLaggen a large wiryhaired youth raised a hand and Harry and Neville nodded back at him .and this is Marcus Belby I dont know whether ?Belby who was thin and nervouslooking gave a strained smile .and this charming young lady tells me she knows you !Slughorn finished .Ginny grimaced at Harry and Neville from behind Slughorns back .Well now this is most pleasant said Slughorn cozily .A chance to get to know you all a little better .Here take a napkin .Ive packed my own lunch the trolley as I remember it is heavy on licorice wands and a poor old mans digestive system isnt quite up to such things .Pheasant Belby ?Belby started and accepted what looked like half a cold pheasant .I was just telling young Marcus here that I had the pleasure of teaching his Uncle Damocles Slughorn told Harry and Neville now passing around a basket of rolls .Outstanding wizard outstanding and his Order of Merlin most welldeserved .Do you see much of your uncle Marcus ?Unfortunately Belby had just taken a large mouthful of pheasant in his haste to answer Slughorn he swallowed too fast turned purple and began to choke .Anapneo said Slughorn calmly pointing his wand at Belby whose airway seemed to clear at once .Not .not much of him no gasped Belby his eyes streaming .Well of course I daresay hes busy said Slughorn looking questioningly at Belby .I doubt he invented the Wolfsbane Potion without considerable hard work !I suppose .said Belby who seemed afraid to take another bite of pheasant until he was sure that Slughorn had finished with him .Er .he and my dad dont get on very well you see so I dont really know much about .His voice tailed away as Slughorn gave him a cold smile and turned to McLaggen instead .Now you Cormac said Slughorn I happen to know you see a lot of your Uncle Tiberius because he has a rather splendid picture of the two of you hunting nogtails in I think Norfolk ?Oh yeah that was fun that was said McLaggen .We went with Bertie Higgs and Rufus Scrimgeour this was before he became Minister obviously Ah you know Bertie and Rufus too ?beamed Slughorn now offering around a small tray of pies somehow Belby was missed out .Now tell me .It was as Harry had suspected .Everyone here seemed to have been invited because they were connected to somebody wellknown or influential everyone except Ginny .Zabini who was interrogated after McLaggen turned out to have a famously beautiful witch for a mother from what Harry could make out she had been married seven times each of her husbands dying mysteriously and leaving her mounds of gold .It was Nevilles turn next This was a very uncomfortable ten minutes for Nevilles parents well known Aurors had been tortured into insanity by Bellatrix Lestrange and a couple of Death Eater cronies .At the end of Nevilles interview Harry had the impression that Slughorn was reserving judgment on Neville yet to see whether he had any of his parents flair .And now said Slughorn shifting massively in his seat with the air of a compere introducing his star act .Harry Potter !Where to begin ?I feel I barely scratched the surface when we met over the summer !He contemplated Harry for a moment as though he was a particularly large and succulent piece of pheasant then said The Chosen One theyre calling you now !Harry said nothing .Belby McLaggen and Zabini were all staring at him .Of course said Slughorn watching Harry closely there have been rumors for years .I remember when well after that terrible night Lily James and you survived and the word was that you must have powers beyond the ordinary Zabini gave a tiny little cough that was clearly supposed to indicate amused skepticism .An angry voice burst out from behind Slughorn .Yeah Zabini because youre so talented .at posing .Oh dear !chuckled Slughorn comfortably looking around at Ginny who was glaring at Zabini around Slughorn s great belly .You want to be careful Blaise !I saw this young lady perform the most marvelous BatBogey Hex as I was passing her carriage !I wouldnt cross her !Zabini merely looked contemptuous .Anyway said Slughorn turning back to Harry .Such rumors this summer .Of course one doesnt know what to believe the Prophet has been known to print inaccuracies make mistakes but there seems little doubt given the number of witnesses that there was quite a disturbance at the Ministry and that you were there in the thick of it all !Harry who could not see any way out of this without flatly lying nodded but still said nothing .Slughorn beamed at him .So modest so modest no wonder Dumbledore is so fond you were there then ?But the rest of the stories so sensational of course one doesnt know quite what to believe this fabled prophecy for instance We never heard a prophecy said Neville turning geranium pink as he said it .Thats right said Ginny staunchly .Neville and I were both there too and all this ‘Chosen One rubbish is just the Prophet making things up as usual .You were both there too were you ?said Slughorn with great interest looking from Ginny to Neville but both of them sat clamlike before his encouraging smile .Yes .well .it is true that the Prophet often exaggerates of course .Slughorn said sounding a little disappointed .I remember dear Gwenog telling me Gwenog Jones I mean of course Captain of the Holyhead Harpies He meandered off into a longwinded reminiscence but Harry had the distinct impression that Slughorn had not finished with him and that he had not been convinced by Neville and Ginny .The afternoon wore on with more anecdotes about illustrious wizards Slughorn had taught all of whom had been delighted to join what he called the Slug Club at Hogwarts .Harry could not wait to leave but couldnt see how to do so politely .Finally the train emerged from yet another long misty stretch into a red sunset and Slughorn looked around blinking in the twilight .Good gracious its getting dark already !I didnt notice that theyd lit the lamps !Youd better go and change into your robes all of you .McLaggen you must drop by and borrow that book on nogtails .Harry Blaise any time youre passing .Same goes for you miss he twinkled at Ginny .Well off you go off you go !As he pushed past Harry into the darkening corridor Zabini shot him a filthy look that Harry returned with interest .He Ginny and Neville followed Zabini back along the train .Im glad thats over muttered Neville .Strange man isnt he ?Yeah he is a bit said Harry his eyes on Zabini .How come you ended up in there Ginny ?He saw me hex Zacharias Smith said Ginny .You remember that idiot from Hufflepuff who was in the D .A .He kept on and on asking about what happened at the Ministry and in the end he annoyed me so much I hexed him when Slughorn came in I thought I was going to get detention but he just thought it was a really good hex and invited me to lunch !Mad eh ?Better reason for inviting someone than because their mothers famous said Harry scowling at the back of Zabini s head or because their uncle But he broke off .An idea had just occurred to him a reckless but potentially wonderful idea .In a minutes time Zabini was going to reenter the Slytherin sixthyear compartment and Malfoy would be sitting there thinking himself unheard by anybody except fellow Slytherins .If Harry could only enter unseen behind him what might he not see or hear ?True there was little of the journey left Hogsmeade Station had to be less than half an hour away judging by the wildness of the scenery flashing by the windows but nobody else seemed prepared to take Harrys suspicions seriously so it was down to him to prove them .Ill see you two later said Harry under his breath pulling out his Invisibility Cloak and flinging it over himself .But whatre you ?asked Neville .Later !whispered Harry darting after Zabini as quietly as possible though the rattling of the train made such caution almost pointless .The corridors were almost completely empty now .Nearly everyone had returned to their carriages to change into their school robes and pack up their possessions .Though he was as close as he could get to Zabini without touching him Harry was not quick enough to slip into the compartment when Zabini opened the door .Zabini was already sliding it shut when Harry hastily stuck out his foot to prevent it closing .Whats wrong with this thing ?said Zabini angrily as he smashed the sliding door repeatedly into Harrys foot .Harry seized the door and pushed it open hard Zabini still clinging on to the handle toppled over sideways into Gregory Goyles lap and in the ensuing ruckus Harry darted into the compartment leapt onto Zabinis temporarily empty seat and hoisted himself up into the luggage rack .It was fortunate that Goyle and Zabini were snarling at each other drawing all eyes onto them for Harry was quite sure his feet and ankles had been revealed as the cloak had flapped around them indeed for one horrible moment he thought he saw Malfoys eyes follow his trainer as it whipped upward out of sight .But then Goyle slammed the door shut and flung Zabini off him Zabini collapsed into his own seat looking ruffled Vincent Crabbe returned to his comic and Malfoy sniggering lay back down across two seats with his head in Pansy Parkinsons lap .Harry lay curled uncomfortably under the cloak to ensure that every inch of him remained hidden and watched Pansy stroke the sleek blond hair off Malfoys forehead smirking as she did so as though anyone would have loved to have been in her place .The lanterns swinging from the carriage ceiling cast a bright light over the scene Harry could read every word of Crabbes comic directly below him .So Zabini said Malfoy what did Slughorn want ?Just trying to make up to wellconnected people said Zabini who was still glowering at Goyle .Not that he managed to find many .This information did not seem to please Malfoy .Who else had he invited ?he demanded .McLaggen from Gryffindor said Zabini .Oh yeah his uncles big in the Ministry said Malfoy .someone else called Belby from Ravenclaw Not him hes a prat !said Pansy .and Longbottom Potter and that Weasley girl finished Zabini .Malfoy sat up very suddenly knocking Pansys hand aside .He invited Longbottom ?Well I assume so as Longbottom was there said Zabini indifferently .Whats Longbottom got to interest Slughorn ?Zabini shrugged .Potter precious Potter obviously he wanted a look at ‘the Chosen One sneered Malfoy but that Weasley girl !Whats so special about her ?A lot of boys like her said Pansy watching Malfoy out of the corner of her eyes for his reaction .Even you think shes goodlooking dont you Blaise and we all know how hard you are to please !I wouldnt touch a filthy little blood traitor like her whatever she looked like said Zabini coldly and Pansy looked pleased .Malfoy sank back across her lap and allowed her to resume the stroking of his hair .Well I pity Slughorns taste .Maybe hes going a bit senile .Shame my father always said he was a good wizard in his day .My father used to be a bit of a favorite of his .Slughorn probably hasnt heard Im on the train or I wouldnt bank on an invitation said Zabini .He asked me about Notts father when I first arrived .They used to be old friends apparently but when he heard hed been caught at the Ministry he didnt look happy and Nott didnt get an invitation did he ?I dont think Slughorns interested in Death Eaters .Malfoy looked angry but forced out a singularly humorless laugh .Well who cares what hes interested in ?What is he when you come down to it ?Just some stupid teacher .Malfoy yawned ostentatiously .I mean I might not even be at Hogwarts next year whats it matter to me if some fat old hasbeen likes me or not ?What do you mean you might not be at Hogwarts next year ?said Pansy indignantly ceasing grooming Malfoy at once .Well you never know said Malfoy with the ghost of a smirk .I might have er moved on to bigger and better things .Crouched in the luggage rack under his cloak Harrys heart began to race .What would Ron and Hermione say about this ?Crabbe and Goyle were gawping at Malfoy apparently they had had no inkling of any plans to move on to bigger and better things .Even Zabini had allowed a look of curiosity to mar his haughty features .Pansy resumed the slow stroking of Malfoys hair looking dumbfounded .Do you mean Him ?Malfoy shrugged .Mother wants me to complete my education but personally I dont see it as that important these days .I mean think about it .When the Dark Lord takes over is he going to care how many O .W .L .s or N .E .W .T .s anyones got ?Of course he isnt .Itll be all about the kind of service he received the level of devotion he was shown .And you think youll be able to do something for him ?asked Zabini scathingly .Sixteen years old and not even fully qualified yet ?Ive just said havent I ?Maybe he doesnt care if Im qualified .Maybe the job he wants me to do isnt something that you need to be qualified for said Malfoy quietly .Crabbe and Goyle were both sitting with their mouths open like gargoyles .Pansy was gazing down at Malfoy as though she had never seen anything so awe inspiring .I can see Hogwarts said Malfoy clearly relishing the effect he had created as he pointed out of the blackened window .Wed better get our robes on .Harry was so busy staring at Malfoy he did not notice Goyle reaching up for his trunk as he swung it down it hit Harry hard on the side of the head .He let out an involuntary gasp of pain and Malfoy looked up at the luggage rack frowning .Harry was not afraid of Malfoy but he still did not much like the idea of being discovered hiding under his Invisibility Cloak by a group of unfriendly Slytherins .Eyes still watering and head still throbbing he drew his wand careful not to disarrange the cloak and waited breath held .To his relief Malfoy seemed to decide that he had imagined the noise he pulled on his robes like the others locked his trunk and as the train slowed to a jerky crawl fastened a thick new traveling cloak round his neck .Harry could see the corridors filling up again and hoped that Hermione and Ron would take his things out onto the platform for him he was stuck where he was until the compartment had quite emptied .At last with a final lurch the train came to a complete halt .Goyle threw the door open and muscled his way out into a crowd of second years punching them aside Crabbe and Zabini followed .You go on Malfoy told Pansy who was waiting for him with her hand held out as though hoping he would hold it .I just want to check something .Pansy left .Now Harry and Malfoy were alone in the compartment .People were filing past descending onto the dark platform .Malfoy moved over to the compartment door and let down the blinds so that people in the corridor beyond could not peer in .He then bent down over his trunk and opened it again .Harry peered down over the edge of the luggage rack his heart pumping a little faster .What had Malfoy wanted to hide from Pansy ?Was he about to see the mysterious broken object it was so important to mend ?Petrificus Totalusl Without warning Malfoy pointed his wand at Harry who was instantly paralyzed .As though in slow motion he toppled out of the luggage rack and fell with an agonizing floorshaking crash at Malfoys feet the Invisibility Cloak trapped beneath him his whole body revealed with his legs still curled absurdly into the cramped kneeling position .He couldnt move a muscle he could only gaze up at Malfoy who smiled broadly .I thought so he said jubilantly .I heard Goyles trunk hit you .And I thought I saw something white flash through the air after Zabini came back .His eyes lingered for a moment upon Harrys trainers .You didnt hear anything I care about Potter .But while Ive got you here .And he stamped hard on Harrys face .Harry felt his nose break blood spurted everywhere .Thats from my father .Now lets see .Malfoy dragged the cloak out from under Harrys immobilized body and threw it over him .I dont reckon theyll find you till the trains back in London he said quietly .See you around Potter .or not .And taking care to tread on Harrys fingers Malfoy left the compartment .SNAPE VICTORIOUS Harry could not move a muscle .He lay there beneath the Invisibility Cloak feeling the blood from his nose flow hot and wet over his face listening to the voices and footsteps in the corridor beyond .His immediate thought was that someone surely would check the compartments before the train departed again .But at once came the dispiriting realization that even if somebody looked into the compartment he would be neither seen nor heard .His best hope was that somebody else would walk in and step on him .Harry had never hated Malfoy more than as he lay there like an absurd turtle on its back blood dripping sickeningly into his open mouth .What a stupid situation to have landed himself in .and now the last few footsteps were dying away everyone was shuffling along the dark platform outside he could hear the scraping of trunks and the loud babble of talk .Ron and Hermione would think that he had left the train without them .Once they arrived at Hogwarts and took their places in the Great Hall looked up and down the Gryffindor table a few times and finally realized that he was not there he no doubt would be halfway back to London .He tried to make a sound even a grunt but it was impossible .Then he remembered that some wizards like Dumbledore could perform spells without speaking so he tried to summon his wand which had fallen out of his hand by saying the words Accio Wand over and over again in his head but nothing happened .He thought he could hear the rustling of the trees that surrounded the lake and the faroff hoot of an owl but no hint of a search being made or even he despised himself slightly for hoping it panicked voices wondering where Harry Potter had gone .A feeling of hopelessness spread through him as he imagined the convoy of thestraldrawn carriages trundling up to the school and the muffled yells of laughter issuing from whichever carriage Malfoy was riding in where he could be recounting his attack on Harry to Crabbe Goyle Zabini and Pansy Parkinson .The train lurched causing Harry to roll over onto his side .Now he was staring at the dusty underside of the seats instead of the ceiling .The floor began to vibrate as the engine roared into life .The Express was leaving and nobody knew he was still on it .Then he felt his Invisibility Cloak fly off him and a voice overhead said Wotcher Harry .There was a flash of red light and Harrys body unfroze he was able to push himself into a more dignified sitting position hastily wipe the blood off his bruised face with the back of his hand and raise his head to look up at Tonks who was holding the Invisibility Cloak she had just pulled away .Wed better get out of here quickly she said as the train windows became obscured with steam and they began to move out of the station .Come on well jump .Harry hurried after her into the corridor .She pulled open the train door and leapt onto the platform which seemed to be sliding underneath them as the train gathered momentum .He followed her staggered a little on landing then straightened up in time to see the gleaming scarlet steam engine pick up speed round the corner and disappear from view .The cold night air was soothing on his throbbing nose .Tonks was looking at him he felt angry and embarrassed that he had been discovered in such a ridiculous position .Silently she handed him back the Invisibility Cloak .Who did it ?Draco Malfoy said Harry bitterly .Thanks for .well .No problem said Tonks without smiling .From what Harry could see in the darkness she was as mousyhaired and miserablelooking as she had been when he had met her at the Burrow .I can fix your nose if you stand still .Harry did not think much of this idea he had been intending to visit Madam Pomfrey the matron in whom he had a little more confidence when it came to Healing Spells but it seemed rude to say this so he stayed stockstill and closed his eyes .Episkey said Tonks .Harrys nose felt very hot and then very cold .He raised a hand and felt it gingerly .It seemed to be mended .Thanks a lot !Youd better put that cloak back on and we can walk up to the school said Tonks still unsmiling .As Harry swung the cloak back over himself she waved her wand an immense silvery fourlegged creature erupted from it and streaked off into the darkness .Was that a Patronus ?asked Harry who had seen Dumbledore send messages like this .Yes Im sending word to the castle that Ive got you or theyll worry .Come on wed better not dawdle .They set off toward the lane that led to the school .How did you find me ?I noticed you hadnt left the train and I knew you had that cloak .I thought you might be hiding for some reason .When I saw the blinds were drawn down on that compartment I thought Id check .But what are you doing here anyway ?Harry asked .Im stationed in Hogsmeade now to give the school extra protection said Tonks .Is it just you whos stationed up here or ?No Proudfoot Savage and Dawlish are here too .Dawlish that Auror Dumbledore attacked last year ?Thats right .They trudged up the dark deserted lane following the freshly made carriage tracks .Harry looked sideways at Tonks under his cloak .Last year she had been inquisitive to the point of being a little annoying at times she had laughed easily she had made jokes .Now she seemed older and much more serious and purposeful .Was this all the effect of what had happened at the Ministry ?He reflected uncomfortably that Hermione would have suggested he say something consoling about Sirius to her that it hadnt been her fault at all but he couldnt bring himself to do it .He was far from blaming her for Siriuss death it was no more her fault than anyone elses and much less than his but he did not like talking about Sirius if he could avoid it .And so they tramped on through the cold night in silence Tonks s long cloak whispering on the ground behind them .Having always traveled there by carriage Harry had never before appreciated just how far Hogwarts was from Hogsmeade Station .With great relief he finally saw the tall pillars on either side of the gates each topped with a winged boar .He was cold he was hungry and he was quite keen to leave this new gloomy Tonks behind .But when he put out a hand to push open the gates he found them chained shut .Alohomora he said confidently pointing his wand at the padlock but nothing happened .That wont work on these said Tonks .Dumbledore bewitched them himself .Harry looked around .I could climb a wall he suggested .No you couldnt said Tonks flatly .Antiintruder jinxes on all of them .Securitys been tightened a hundredfold this summer .Well then said Harry starting to feel annoyed at her lack of helpfulness I suppose Ill just have to sleep out here and wait for morning .Someones coming down for you said Tonks .Look .A lantern was bobbing at the distant foot of the castle .Harry was so pleased to see it he felt he could even endure Filchs wheezy criticisms of his tardiness and rants about how his timekeeping would improve with the regular application of thumbscrews .It was not until the glowing yellow light was ten feet away from them and Harry had pulled off his Invisibility Cloak so that he could be seen that he recognized with a rush of pure loathing the uplit hooked nose and long black greasy hair of Severus Snape .Well well well sneered Snape taking out his wand and tapping the padlock once so that the chains snaked backward and the gates creaked open .Nice of you to turn up Potter although you have evidently decided that the wearing of school robes would detract from your appearance .I couldnt change I didnt have my Harry began but Snape cut across him .There is no need to wait Nymphadora Potter is quite ah safe in my hands .I meant Hagrid to get the message said Tonks frowning .Hagrid was late for the startofterm feast just like Potter here so I took it instead .And incidentally said Snape standing back to allow Harry to pass him I was interested to see your new Patronus .He shut the gates in her face with a loud clang and tapped the chains with his wand again so that they slithered clinking back into place .I think you were better off with the old one said Snape the malice in his voice unmistakable .The new one looks weak .As Snape swung the lantern about Harry saw fleetingly a look of shock and anger on Tonkss face .Then she was covered in darkness once more .Good night Harry called to her over his shoulder as he began the walk up to the school with Snape .Thanks for .everything .See you Harry .Snape did not speak for a minute or so .Harry felt as though his body was generating waves of hatred so powerful that it seemed incredible that Snape could not feel them burning him .He had loathed Snape from their first encounter but Snape had placed himself forever and irrevocably beyond the possibility of Harrys forgiveness by his attitude toward Sirius .Whatever Dumbledore said Harry had had time to think over the summer and had concluded that Snape s snide remarks to Sirius about remaining safely hidden while the rest of the Order of the Phoenix were off fighting Voldemort had probably been a powerful factor in Sirius rushing off to the Ministry the night that he had died .Harry clung to this notion because it enabled him to blame Snape which felt satisfying and also because he knew that if anyone was not sorry that Sirius was dead it was the man now striding next to him in the darkness .Fifty points from Gryffindor for lateness I think said Snape .And let me see another twenty for your Muggle attire .You know I dont believe any House has ever been in negative figures this early in the term We havent even started pudding .You might have set a record Potter .The fury and hatred bubbling inside Harry seemed to blaze whitehot but he would rather have been immobilized all the way back to London than tell Snape why he was late .I suppose you wanted to make an entrance did you ?Snape continued .And with no flying car available you decided that bursting into the Great Hall halfway through the feast ought to create a dramatic effect .Still Harry remained silent though he thought his chest might explode .He knew that Snape had come to fetch him for this for the few minutes when he could needle and torment Harry without anyone else listening .They reached the castle steps at last and as the great oaken front doors swung open into the vast flagged entrance hall a burst of talk and laughter and of tinkling plates and glasses greeted them through the doors standing open into the Great Hall .Harry wondered whether he could slip his Invisibility Cloak back on thereby gaining his seat at the long Gryffindor table which inconveniently was the farthest from the entrance hall without being noticed .As though he had read Harrys mind however Snape said No cloak .You can walk in so that everyone sees you which is what you wanted Im sure .Harry turned on the spot and marched straight through the open doors anything to get away from Snape .The Great Hall with its four long House tables and its staff table set at the top of the room was decorated as usual with floating candles that made the plates below glitter and glow .It was all a shimmering blur to Harry however who walked so fast that he was passing the Hufflepuff table before people really started to stare and by the time they were standing up to get a good look at him he had spotted Ron and Hermione sped along the benches toward them and forced his way in between them .Whereve you blimey whatve you done to your face ?said Ron goggling at him along with everyone else in the vicinity .Why whats wrong with it ?said Harry grabbing a spoon and squinting at his distorted reflection .Youre covered in blood !said Hermione .Come here She raised her wand said Tergeol and siphoned off the dried blood .Thanks said Harry feeling his now clean face .Hows my nose looking ?Normal said Hermione anxiously .Why shouldnt it ?Harry what happened ?Weve been terrified !Ill tell you later said Harry curtly .He was very conscious that Ginny Neville Dean and Seamus were listening in even Nearly Headless Nick the Gryffindor ghost had come floating along the bench to eavesdrop .But said Hermione .Not now Hermione said Harry in a darkly significant voice .He hoped very much that they would all assume he had been involved in something heroic preferably involving a couple of Death Eaters and a dementor .Of course Malfoy would spread the story as far and wide as he could but there was always a chance it wouldnt reach too many Gryffindor ears .He reached across Ron for a couple of chicken legs and a handful of chips but before he could take them they vanished to be replaced with puddings .You missed the Sorting anyway said Hermione as Ron dived for a large chocolate gateau .Hat say anything interesting ?asked Harry taking a piece of treacle tart .More of the same really .advising us all to unite in the face of our enemies you know .Dumbledore mentioned Voldemort at all ?Not yet but he always saves his proper speech for after the feast doesnt he ?It cant be long now .Snape said Hagrid was late for the feast Youve seen Snape ?How come ?said Ron between frenzied mouthfuls of gateau .Bumped into him said Harry evasively .Hagrid was only a few minutes late said Hermione .Look hes waving at you Harry .Harry looked up at the staff table and grinned at Hagrid who was indeed waving at him .Hagrid had never quite managed to comport himself with the dignity of Professor McGonagall Head of Gryffindor House the top of whose head came up to somewhere between Hagrids elbow and shoulder as they were sitting side by side and who was looking disapprovingly at this enthusiastic greeting .Harry was surprised to see the Divination teacher Professor Trelawney sitting on Hagrids other side she rarely left her tower room and he had never seen her at the startofterm feast before .She looked as odd as ever glittering with beads and trailing shawls her eyes magnified to enormous size by her spectacles .Having always considered her a bit of a fraud Harry had been shocked to discover at the end of the previous term that it had been she who had made the prediction that caused Lord Voldemort to kill Harrys parents and attack Harry himself .The knowledge had made him even less eager to find himself in her company but thankfully this year he would be dropping Divination .Her great beaconlike eyes swiveled in his direction he hastily looked away toward the Slytherin table .Draco Malfoy was miming the shattering of a nose to raucous laughter and applause .Harry dropped his gaze to his treacle tart his insides burning again .What he would not give to fight Malfoy oneonone .So what did Professor Slughorn want ?Hermione asked .To know what really happened at the Ministry said Harry .Him and everyone else here sniffed Hermione .People were interrogating us about it on the train werent they Ron ?Yeah said Ron .All wanting to know if you really are ‘the Chosen One There has been much talk on that very subject even amongst the ghosts interrupted Nearly Headless Nick inclining his barely connected head toward Harry so that it wobbled dangerously on its ruff .I am considered something of a Potter authority it is widely known that we are friendly .I have assured the spirit community that I will not pester you for information however . ‘Harry Potter knows that he can confide in me with complete confidence I told them . ‘I would rather die than betray his trust .Thats not saying much seeing as youre already dead Ron observed .Once again you show all the sensitivity of a blunt axe said Nearly Headless Nick in affronted tones and he rose into the air and glided back toward the far end of the Gryffindor table just as Dumbledore got to his feet at the staff table .The talk and laughter echoing around the Hall died away almost instantly .The very best of evenings to you !he said smiling broadly his arms opened wide as though to embrace the whole room .What happened to his hand ?gasped Hermione .She was not the only one who had noticed .Dumbledore s right hand was as blackened and dead looking as it had been on the night he had come to fetch Harry from the Dursleys .Whispers swept the room Dumbledore interpreting them correctly merely smiled and shook his purpleandgold sleeve over his injury .Nothing to worry about he said airily .Now .to our new students welcome to our old students welcome back !Another year full of magical education awaits you .His hand was like that when I saw him over the summer Harry whispered to Hermione .I thought hed have cured it by now though .or Madam Pomfrey wouldve done .It looks as if its died said Hermione with a nauseated expression .But there are some injuries you cant cure .old curses .and there are poisons without antidotes . .and Mr Filch our caretaker has asked me to say that there is a blanket ban on any joke items bought at the shop called Weasleys Wizard Wheezes .Those wishing to play for their House Quidditch teams should give their names to their Heads of House as usual .We are also looking for new Quidditch commentators who should do likewise .We are pleased to welcome a new member of staff this year .Professor Slughorn Slughorn stood up his bald head gleaming in the candlelight his big waistcoated belly casting the table below into shadow is a former colleague of mine who has agreed to resume his old post of Potions master .Potions ?Potions ?The word echoed all over the Hall as people wondered whether they had heard right .Potions ?said Ron and Hermione together turning to stare at Harry .But you said Professor Snape meanwhile said Dumbledore raising his voice so that it carried over all the muttering will be taking over the position of Defense Against the Dark Arts teacher .No !said Harry so loudly that many heads turned in his direction .He did not care he was staring up at the staff table incensed .How could Snape be given the Defense Against the Dark Arts job after all this time ?Hadnt it been widely known for years that Dumbledore did not trust him to do it ?But Harry you said that Slughorn was going to be teaching Defense Against the Dark Arts !said Hermione .I thought he was !said Harry racking his brains to remember when Dumbledore had told him this but now that he came to think of it he was unable to recall Dumbledore ever telling him what Slughorn would be teaching .Snape who was sitting on Dumbledores right did not stand up at the mention of his name he merely raised a hand in lazy acknowledgment of the applause from the Slytherin table yet Harry was sure he could detect a look of triumph on the features he loathed so much .Well theres one good thing he said savagely .Snape ll be gone by the end of the year .What do you mean ?asked Ron .That jobs jinxed .No ones lasted more than a year . .Quirrell actually died doing it .Personally Im going to keep my fingers crossed for another death .Harry !said Hermione shocked and reproachful .He might just go back to teaching Potions at the end of the year said Ron reasonably .That Slughorn bloke might not want to stay longterm .Moody didnt .Dumbledore cleared his throat .Harry Ron and Hermione were not the only ones who had been talking the whole Hall had erupted in a buzz of conversation at the news that Snape had finally achieved his hearts desire .Seemingly oblivious to the sensational nature of the news he had just imparted Dumbledore said nothing more about staff appointments but waited a few seconds to ensure that the silence was absolute before continuing .Now as everybody in this Hall knows Lord Voldemort and his followers are once more at large and gaining in strength .The silence seemed to tauten and strain as Dumbledore spoke .Harry glanced at Malfoy .Malfoy was not looking at Dumbledore but making his fork hover in midair with his wand as though he found the headmasters words unworthy of his attention .I cannot emphasize strongly enough how dangerous the present situation is and how much care each of us at Hogwarts must take to ensure that we remain safe .The castles magical fortifications have been strengthened over the summer we are protected in new and more powerful ways but we must still guard scrupulously against carelessness on the part of any student or member of staff .I urge you therefore to abide by any security restrictions that your teachers might impose upon you however irksome you might find them in particular the rule that you are not to be out of bed after hours .I implore you should you notice anything strange or suspicious within or outside the castle to report it to a member of staff immediately .I trust you to conduct yourselves always with the utmost regard for your own and others safety .Dumbledores blue eyes swept over the students before he smiled once more .But now your beds await as warm and comfortable as you could possibly wish and I know that your top priority is to be wellrested for your lessons tomorrow .Let us therefore say good night .Pip pip !With the usual deafening scraping noise the benches were moved back and the hundreds of students began to file out of the Great Hall toward their dormitories .Harry who was in no hurry at all to leave with the gawping crowd nor to get near enough to Malfoy to allow him to retell the story of the nosestamping lagged behind pretending to retie the lace on his trainer allowing most of the Gryffindors to draw ahead of him .Hermione had darted ahead to fulfill her prefects duty of shepherding the first years but Ron remained with Harry .What really happened to your nose ?he asked once they were at the very back of the throng pressing out of the Hall and out of earshot of anyone else .Harry told him .It was a mark of the strength of their friendship that Ron did not laugh .I saw Malfoy miming something to do with a nose he said darkly .Yeah well never mind that said Harry bitterly .Listen to what he was saying before he found out I was there .Harry had expected Ron to be stunned by Malfoys boasts .With what Harry considered pure pigheadedness however Ron was unimpressed .Come on Harry he was just showing off for Parkinson .What kind of mission would YouKnow Who have given him ?How dyou know Voldemort doesnt need someone at Hogwarts ?It wouldnt be the first I wish yehd stop sayin tha name Harry said a reproachful voice behind them .Harry looked over his shoulder to see Hagrid shaking his head .Dumbledore uses that name said Harry stubbornly .Yeah well thas Dumbledore innit ?said Hagrid mysteriously .So how come yeh were late Harry ?I was worried .Got held up on the train said Harry .Why were you late ?I was with Grawp said Hagrid happily .Los track o the time .Hes got a new home up in the mountains now Dumbledore fixed it nice big cave .Hes much happier than he was in the forest .We were havin a good chat .Really ?said Harry taking care not to catch Rons eye the last time he had met Hagrids halfbrother a vicious giant with a talent for ripping up trees by the roots his vocabulary had comprised five words two of which he was unable to pronounce properly .Oh yeah hes really come on said Hagrid proudly .Yehll be amazed .Im thinkin o trainin him up as me assistant .Ron snorted loudly but managed to pass it off as a violent sneeze .They were now standing beside the oak front doors .Anyway Ill see yeh tomorrow firs lessons straight after lunch .Come early an yeh can say hello ter Buck I mean Witherwings !Raising an arm in cheery farewell he headed out of the front doors into the darkness .Harry and Ron looked at each other .Harry could tell that Ron was experiencing the same sinking feeling as himself .Youre not taking Care of Magical Creatures are you ?Ron shook his head .And youre not either are you ?Harry shook his head too .And Hermione said Ron shes not is she ?Harry shook his head again .Exactly what Hagrid would say when he realized his three favorite students had given up his subject he did not like to think .9 THE HALFBLOOD PRINCE Harry and Ron met Hermione in the common room before breakfast next morning .Hoping for some support for his theory Harry lost no time in telling Hermione what he had overheard Malfoy saying on the Hogwarts Express .But he was obviously showing off for Parkinson wasnt he ?interjected Ron quickly before Hermione could say anything .Well she said uncertainly I dont know .It would be like Malfoy to make himself seem more important than he is .but thats a big lie to tell .Exactly said Harry but he could not press the point because so many people were trying to listen in to his conversation not to mention staring at him and whispering behind their hands .Its rude to point Ron snapped at a particularly minuscule firstyear boy as they joined the queue to climb out of the portrait hole .The boy who had been muttering something about Harry behind his hand to his friend promptly turned scarlet and toppled out of the hole in alarm .Ron sniggered .I love being a sixth year .And were going to be getting free time this year .Whole periods when we can just sit up here and relax .Were going to need that time for studying Ron !said Hermione as they set off down the corridor .Yeah but not today said Ron .Todays going to be a real doss I reckon .Hold it !said Hermione throwing out an arm and halting a passing fourth year who was attempting to push past her with a limegreen disk clutched tightly in his hand .Fanged Frisbees are banned hand it over she told him sternly .The scowling boy handed over the snarling Frisbee ducked under her arm and took off after his friends .Ron waited for him to vanish then tugged the Frisbee from Hermione s grip .Excellent Ive always wanted one of these .Hermione s remonstration was drowned by a loud giggle Lavender Brown had apparently found Rons remark highly amusing .She continued to laugh as she passed them glancing back at Ron over her shoulder .Ron looked rather pleased with himself .The ceiling of the Great Hall was serenely blue and streaked with frail wispy clouds just like the squares of sky visible through the high mullioned windows .While they tucked into porridge and eggs and bacon Harry and Ron told Hermione about their embarrassing conversation with Hagrid the previous evening .But he cant really think wed continue Care of Magical Creatures !she said looking distressed .I mean when has any of us expressed .you know .any enthusiasm ?Thats it though innit ?said Ron swallowing an entire fried egg whole .We were the ones who made the most effort in classes because we like Hagrid .But he thinks we liked the stupid subject Dyou reckon anyones going to go on to N .E .W .T .Neither Harry nor Hermione answered there was no need .They knew perfectly well that nobody in their year would want to continue Care of Magical Creatures .They avoided Hagrids eye and returned his cheery wave only halfheartedly when he left the staff table ten minutes later .After they had eaten they remained in their places awaiting Professor McGonagalls descent from the staff table .The distribution of class schedules was more complicated than usual this year for Professor McGonagall needed first to confirm that everybody had achieved the necessary O .W .L .grades to continue with their chosen N .E .W .T .s .Hermione was immediately cleared to continue with Charms Defense Against the Dark Arts Transfiguration Herbology Arithmancy Ancient Runes and Potions and shot off to a firstperiod Ancient Runes class without further ado .Neville took a little longer to sort out his round face was anxious as Professor McGonagall looked down his application and then consulted his O .W .L .results .Herbology fine she said .Professor Sprout will be delighted to see you back with an ‘Outstanding O .W .L .And you qualify for Defense Against the Dark Arts with ‘Exceeds Expectations .But the problem is Transfiguration .Im sorry Longbottom but an Acceptable really isnt good enough to continue to N .E .W .T level .I just dont think youd be able to cope with the coursework .Neville hung his head .Professor McGonagall peered at him through her square spectacles .Why do you want to continue with Transfiguration anyway ?Ive never had the impression that you particularly enjoyed it .Neville looked miserable and muttered something about my grandmother wants .Hmph snorted Professor McGonagall .Its high time your grandmother learned to be proud of the grandson shes got rather than the one she thinks she ought to have particularly after what happened at the Ministry .Neville turned very pink and blinked confusedly Professor McGonagall had never paid him a compliment before .Im sorry Longbottom but I cannot let you into my N .E .W .T .class .I see that you have an ‘Exceeds Expectations in Charms however why not try for a N .E .W .T .in Charms ?My grandmother thinks Charms is a soft option mumbled Neville .Take Charms said Professor McGonagall and I shall drop Augusta a line reminding her that just because she failed her Charms O .W .L .the subject is not necessarily worthless .Smiling slightly at the look of delighted incredulity on Nevilles face Professor McGonagall tapped a blank schedule with the tip of her wand and handed it now carrying details of his new classes to Neville .Professor McGonagall turned next to Parvati Patil whose first question was whether Firenze the handsome centaur was still teaching Divination .He and Professor Trelawney are dividing classes between them this year said Professor McGonagall a hint of disapproval in her voice it was common knowledge that she despised the subject of Divination .The sixth year is being taken by Professor Trelawney .Parvati set off for Divination five minutes later looking slightly crestfallen .So Potter Potter .said Professor McGonagall consulting her notes as she turned to Harry .Charms Defense Against the Dark Arts Herbology Transfiguration .all fine .I must say I was pleased with your Transfiguration mark Potter very pleased .Now why havent you applied to continue with Potions ?I thought it was your ambition to become an Auror ?It was but you told me I had to get an ‘Outstanding in my O .W .L .Professor .And so you did when Professor Snape was teaching the subject .Professor Slughorn however is perfectly happy to accept N .E .W .T students with ‘Exceeds Expectations at O .W .L .Do you wish to proceed with Potions ?Yes said Harry but I didnt buy the books or any ingredients or anything Im sure Professor Slughorn will be able to lend you some said Professor McGonagall .Very well Potter here is your schedule .Oh by the way twenty hopefuls have already put down their names for the Gryffindor Quidditch team .I shall pass the list to you in due course and you can fix up trials at your leisure .A few minutes later Ron was cleared to do the same subjects as Harry and the two of them left the table together .Look said Ron delightedly gazing at his schedule weve got a free period now .and a free period after break .and after lunch .excellent .They returned to the common room which was empty apart from a half dozen seventh years including Katie Bell the only remaining member of the original Gryffindor Quidditch team that Harry had joined in his first year .I thought youd get that well done she called over pointing at the Captains badge on Harrys chest .Tell me when you call trials !Dont be stupid said Harry you dont need to try out Ive watched you play for five years .You mustnt start off like that she said warningly .For all you know theres someone much better than me out there .Good teams have been ruined before now because Captains just kept playing the old faces or letting in their friends .Ron looked a little uncomfortable and began playing with the Fanged Frisbee Hermione had taken from the fourthyear student .It zoomed around the common room snarling and attempting to take bites of the tapestry .Crookshankss yellow eyes followed it and he hissed when it came too close .An hour later they reluctantly left the sunlit common room for the Defense Against the Dark Arts classroom four floors below .Hermione was already queuing outside carrying an armful of heavy books and looking putupon .We got so much homework for Runes she said anxiously when Harry and Ron joined her .A fifteen inch essay two translations and Ive got to read these by Wednesday !Shame yawned Ron .You wait she said resentfully .I bet Snape gives us loads .The classroom door opened as she spoke and Snape stepped into the corridor his sallow face framed as ever by two curtains of greasy black hair .Silence fell over the queue immediately .Inside he said .Harry looked around as they entered .Snape had imposed his personality upon the room already it was gloomier than usual as curtains had been drawn over the windows and was lit by candlelight .New pictures adorned the walls many of them showing people who appeared to be in pain sporting grisly injuries or strangely contorted body parts .Nobody spoke as they settled down looking around at the shadowy gruesome pictures .I have not asked you to take out your books said Snape closing the door and moving to face the class from behind his desk Hermione hastily dropped her copy of Confronting the Faceless back into her bag and stowed it under her chair .I wish to speak to you and I want your fullest attention .His black eyes roved over their upturned faces lingering for a fraction of a second longer on Harrys than anyone elses .You have had five teachers in this subject so far I believe .You believe .like you havent watched them all come and go Snape hoping youd be next thought Harry scathingly .Naturally these teachers will all have had their own methods and priorities .Given this confusion I am surprised so many of you scraped an O .W .L .in this subject .I shall be even more surprised if all of you manage to keep up with the N .E .W .T .work which will be much more advanced .Snape set off around the edge of the room speaking now in a lower voice the class craned their necks to keep him in view .The Dark Arts said Snape are many varied ever changing and eternal .Fighting them is like fighting a manyheaded monster which each time a neck is severed sprouts a head even fiercer and cleverer than before .You are fighting that which is unfixed mutating indestructible .Harry stared at Snape .It was surely one thing to respect the Dark Arts as a dangerous enemy another to speak of them as Snape was doing with a loving caress in his voice ?Your defenses said Snape a little louder must therefore be as flexible and inventive as the arts you seek to undo .These pictures he indicated a few of them as he swept past give a fair representation of what happens to those who suffer for instance the Cruciatus Curse he waved a hand toward a witch who was clearly shrieking in agony feel the Dementors Kiss a wizard lying huddled and blankeyed slumped against a wall or provoke the aggression of the Inferius a bloody mass upon the ground .Has an Inferius been seen then ?said Parvati Patil in a highpitched voice .Is it definite is he using them ?The Dark Lord has used Inferi in the past said Snape which means you would be welladvised to assume he might use them again .Now .He set off again around the other side of the classroom toward his desk and again they watched him as he walked his dark robes billowing behind him . .you are I believe complete novices in the use of nonverbal spells .What is the advantage of a nonverbal spell ?Hermiones hand shot into the air .Snape took his time looking around at everybody else making sure he had no choice before saying curtly Very well Miss Granger ?Your adversary has no warning about what kind of magic youre about to perform said Hermione which gives you a splitsecond advantage .An answer copied almost word for word from The Standard Book of Spells Grade Six said Snape dismissively over in the corner Malfoy sniggered but correct in essentials .Yes those who progress to using magic without shouting incantations gain an element of surprise in their spellcasting .Not all wizards can do this of course it is a question of concentration and mind power which some his gaze lingered maliciously upon Harry once more lack .Harry knew Snape was thinking of their disastrous Occlumency lessons of the previous year .He refused to drop his gaze but glowered at Snape until Snape looked away .You will now divide Snape went on into pairs .One partner will attempt to jinx the other without speaking .The other will attempt to repel the jinx in equal silence .Carry on .Although Snape did not know it Harry had taught at least half the class everyone who had been a member of the D .A .how to perform a Shield Charm the previous year .None of them had ever cast the charm without speaking however .A reasonable amount of cheating ensued many people were merely whispering the incantation instead of saying it aloud .Typically ten minutes into the lesson Hermione managed to repel Nevilles muttered JellyLegs Jinx without uttering a single word a feat that would surely have earned her twenty points for Gryffindor from any reasonable teacher thought Harry bitterly but which Snape ignored .He swept between them as they practiced looking just as much like an overgrown bat as ever lingering to watch Harry and Ron struggling with the task .Ron who was supposed to be jinxing Harry was purple in the face his lips tightly compressed to save himself from the temptation of muttering the incantation .Harry had his wand raised waiting on tenterhooks to repel a jinx that seemed unlikely ever to come .Pathetic Weasley said Snape after a while .Here let me show you He turned his wand on Harry so fast that Harry reacted instinctively all thought of nonverbal spells forgotten he yelled Protegol His Shield Charm was so strong Snape was knocked offbalance and hit a desk .The whole class had looked around and now watched as Snape righted himself scowling .Do you remember me telling you we are practicing nonverbal spells Potter ?Yes said Harry stiffly .Yes sir .Theres no need to call me ‘sir Professor .The words had escaped him before he knew what he was saying .Several people gasped including Hermione .Behind Snape however Ron Dean and Seamus grinned appreciatively .Detention Saturday night my office said Snape .I do not take cheek from anyone Potter .not even ‘the Chosen One .That was brilliant Harry !chortled Ron once they were safely on their way to break a short while later .You really shouldnt have said it said Hermione frowning at Ron .What made you ?He tried to jinx me in case you didnt notice !fumed Harry .I had enough of that during those Occlumency lessons !Why doesnt he use another guinea pig for a change ?Whats Dumbledore playing at anyway letting him teach Defense ?Did you hear him talking about the Dark Arts ?He loves them !All that unfixed indestructible stuff Well said Hermione I thought he sounded a bit like you .Like me ?Yes when you were telling us what its like to face Voldemort .You said it wasnt just memorizing a bunch of spells you said it was just you and your brains and your guts well wasnt that what Snape was saying ?That it really comes down to being brave and quickthinking ?Harry was so disarmed that she had thought his words as well worth memorizing as The Standard Book of Spells that he did not argue .Harry !Hey Harry !Harry looked around Jack Sloper one of the Beaters on last years Gryffindor Quidditch team was hurrying toward him holding a roll of parchment .For you panted Sloper .Listen I heard youre the new Captain .Whenre you holding trials ?Im not sure yet said Harry thinking privately that Sloper would be very lucky to get back on the team .Ill let you know .Oh right .I was hoping itd be this weekend But Harry was not listening he had just recognized the thin slanting writing on the parchment .Leaving Sloper in midsentence he hurried away with Ron and Hermione unrolling the parchment as he went .Dear Harry I would like to start our private lessons this Saturday .Kindly come along to my office at 8 p .m .I hope you are enjoying your first day back at school .Yours sincerely Albus Dumbledore P .S .I enjoy Acid Pops .He enjoys Acid Pops ?said Ron who had read the message over Harrys shoulder and was looking perplexed .Its the password to get past the gargoyle outside his study said Harry in a low voice .Ha !Snapes not going to be pleased .I wont be able to do his detention !He Ron and Hermione spent the whole of break speculating on what Dumbledore would teach Harry .Ron thought it most likely to be spectacular jinxes and hexes of the type the Death Eaters would not know .Hermione said such things were illegal and thought it much more likely that Dumbledore wanted to teach Harry advanced Defensive magic .After break she went off to Arithmancy while Harry and Ron returned to the common room where they grudgingly started Snapes homework .This turned out to be so complex that they still had not finished when Hermione joined them for their afterlunch free period though she considerably speeded up the process .They had only just finished when the bell rang for the afternoons double Potions and they beat the familiar path down to the dungeon classroom that had for so long been Snapes .When they arrived in the corridor they saw that there were only a dozen people progressing to N .E .W .T .level .Crabbe and Goyle had evidently failed to achieve the required O .W .L .grade but four Slytherins had made it through including Malfoy .Four Ravenclaws were there and one Hufflepuff Ernie Macmillan whom Harry liked despite his rather pompous manner .Harry Ernie said portentously holding out his hand as Harry approached didnt get a chance to speak in Defense Against the Dark Arts this morning .Good lesson I thought but Shield Charms are old hat of course for us old D .A .lags .And how are you Ron Hermione ?Before they could say more than fine the dungeon door opened and Slughorns belly preceded him out of the door .As they filed into the room his great walrus mustache curved above his beaming mouth and he greeted Harry and Zabini with particular enthusiasm .The dungeon was most unusually already full of vapors and odd smells .Harry Ron and Hermione sniffed interestedly as they passed large bubbling cauldrons .The four Slytherins took a table together as did the four Ravenclaws .This left Harry Ron and Hermione to share a table with Ernie .They chose the one nearest a goldcolored cauldron that was emitting one of the most seductive scents Harry had ever inhaled Somehow it reminded him simultaneously of treacle tart the woody smell of a broomstick handle and something flowery he thought he might have smelled at the Burrow .He found that he was breathing very slowly and deeply and that the potions fumes seemed to be filling him up like drink .A great contentment stole over him he grinned across at Ron who grinned back lazily .Now then now then now then said Slughorn whose massive outline was quivering through the many shimmering vapors .Scales out everyone and potion kits and dont forget your copies of Advanced PotionMaking .Sir ?said Harry raising his hand .Harry mboy ?I havent got a book or scales or anything nors Ron we didnt realize wed be able to do the N .E .W .T .you see Ah yes Professor McGonagall did mention .not to worry my dear boy not to worry at all .You can use ingredients from the store cupboard today and Im sure we can lend you some scales and weve got a small stock of old books here theyll do until you can write to Flourish and Blotts .Slughorn strode over to a corner cupboard and after a moments foraging emerged with two very battered looking copies of Advanced PotionMaking by Libatius Borage which he gave to Harry and Ron along with two sets of tarnished scales .Now then said Slughorn returning to the front of the class and inflating his already bulging chest so that the buttons on his waistcoat threatened to burst off Ive prepared a few potions for you to have a look at just out of interest you know .These are the kind of thing you ought to be able to make after completing your N .E .W .T .s .You ought to have heard of em even if you havent made em yet .Anyone tell me what this one is ?He indicated the cauldron nearest the Slytherin table .Harry raised himself slightly in his seat and saw what looked like plain water boiling away inside it .Hermiones wellpracticed hand hit the air before anybody elses Slughorn pointed at her .Its Veritaserum a colorless odorless potion that forces the drinker to tell the truth said Hermione .Very good very good !said Slughorn happily .Now he continued pointing at the cauldron nearest the Ravenclaw table this one here is pretty well known . .Featured in a few Ministry leaflets lately too .Who can ?Hermiones hand was fastest once more .Its Polyjuice Potion sir she said .Harry too had recognized the slowbubbling mudlike substance in the second cauldron but did not resent Hermione getting the credit for answering the question she after all was the one who had succeeded in making it back in their second year .Excellent excellent !Now this one here .yes my dear ?said Slughorn now looking slightly bemused as Hermiones hand punched the air again .Its Amortentia !It is indeed .It seems almost foolish to ask said Slughorn who was looking mightily impressed but I assume you know what it does ?Its the most powerful love potion in the world !said Hermione .Quite right !You recognized it I suppose by its distinctive motherofpearl sheen ?And the steam rising in characteristic spirals said Hermione enthusiastically and its supposed to smell differently to each of us according to what attracts us and I can smell freshly mown grass and new parchment and But she turned slightly pink and did not complete the sentence .May I ask your name my dear ?said Slughorn ignoring Hermiones embarrassment .Hermione Granger sir .Granger ?Granger ?Can you possibly be related to Hector DagworthGranger who founded the Most Extraordinary Society of Potioneers ?No I dont think so sir .Im Muggleborn you see .Harry saw Malfoy lean close to Nott and whisper something both of them sniggered but Slughorn showed no dismay on the contrary he beamed and looked from Hermione to Harry who was sitting next to her .Oho ! ‘One of my best friends is Muggleborn and shes the best in our yeah Im assuming this is the very friend of whom you spoke Harry ?Yes sir said Harry .Well well take twenty wellearned points for Gryffindor Miss Granger said Slughorn genially .Malfoy looked rather as he had done the time Hermione had punched him in the face .Hermione turned to Harry with a radiant expression and whispered Did you really tell him Im the best in the year ?Oh Harry !Well whats so impressive about that ?whispered Ron who for some reason looked annoyed .You are the best in the year Idve told him so if hed asked me !Hermione smiled but made a shhing gesture so that they could hear what Slughorn was saying .Ron looked slightly disgruntled .Amortentia doesnt really create love of course .It is impossible to manufacture or imitate love .No this will simply cause a powerful infatuation or obsession .It is probably the most dangerous and powerful potion in this room oh yes he said nodding gravely at Malfoy and Nott both of whom were smirking skeptically .When you have seen as much of life as I have you will not underestimate the power of obsessive love .And now said Slughorn it is time for us to start work .Sir you havent told us whats in this one said Ernie Macmillan pointing at a small black cauldron standing on Slughorn s desk .The potion within was splashing about merrily it was the color of molten gold and large drops were leaping like goldfish above the surface though not a particle had spilled .Oho said Slughorn again .Harry was sure that Slughorn had not forgotten the potion at all but had waited to be asked for dramatic effect .Yes .That .Well that one ladies and gentlemen is a most curious little potion called Felix Felicis .I take it he turned smiling to look at Hermione who had let out an audible gasp that you know what Felix Felicis does Miss Granger ?Its liquid luck said Hermione excitedly .It makes you lucky !The whole class seemed to sit up a little straighter .Now all Harry could see of Malfoy was the back of his sleek blond head because he was at last giving Slughorn his full and undivided attention .Quite right take another ten points for Gryffindor .Yes its a funny little potion Felix Felicis said Slughorn .Desperately tricky to make and disastrous to get wrong .However if brewed correctly as this has been you will find that all your endeavors tend to succeed .at least until the effects wear off .Why dont people drink it all the time sir ?said Terry Boot eagerly .Because if taken in excess it causes giddiness recklessness and dangerous overconfidence said Slughorn .Too much of a good thing you know .highly toxic in large quantities .But taken sparingly and very occasionally .Have you ever taken it sir ?asked Michael Corner with great interest .Twice in my life said Slughorn .Once when I was twentyfour once when I was fiftyseven .Two tablespoonfuls taken with breakfast .Two perfect days .He gazed dreamily into the distance .Whether he was playacting or not thought Harry the effect was good .And that said Slughorn apparently coming back to earth is what I shall be offering as a prize in this lesson .There was silence in which every bubble and gurgle of the surrounding potions seemed magnified tenfold .One tiny bottle of Felix Felicis said Slughorn taking a minuscule glass bottle with a cork in it out of his pocket and showing it to them all .Enough for twelve hours luck .From dawn till dusk you will be lucky in everything you attempt .Now I must give you warning that Felix Felicis is a banned substance in organized competitions .sporting events for instance examinations or elections .So the winner is to use it on an ordinary day only .and watch how that ordinary day becomes extraordinary !So said Slughorn suddenly brisk how are you to win my fabulous prize ?Well by turning to page ten of Advanced PotionMaking .We have a little over an hour left to us which should be time for you to make a decent attempt at the Draught of Living Death .I know it is more complex than anything you have attempted before and I do not expect a perfect potion from anybody .The person who does best however will win little Felix here .Off you go !There was a scraping as everyone drew their cauldrons toward them and some loud clunks as people began adding weights to their scales but nobody spoke .The concentration within the room was almost tangible .Harry saw Malfoy riffling feverishly through his copy of Advanced PotionMaking .It could not have been clearer that Malfoy really wanted that lucky day .Harry bent swiftly over the tattered book Slughorn had lent him .To his annoyance he saw that the previous owner had scribbled all over the pages so that the margins were as black as the printed portions .Bending low to decipher the ingredients even here the previous owner had made annotations and crossed things out Harry hurried off toward the store cupboard to find what he needed .As he dashed back to his cauldron he saw Malfoy cutting up valerian roots as fast as he could .Everyone kept glancing around at what the rest of the class was doing this was both an advantage and a disadvantage of Potions that it was hard to keep your work private .Within ten minutes the whole place was full of bluish steam .Hermione of course seemed to have progressed furthest .Her potion already resembled the smooth black currantcolored liquid mentioned as the ideal halfway stage .Having finished chopping his roots Harry bent low over his book again .It was really very irritating having to try and decipher the directions under all the stupid scribbles of the previous owner who for some reason had taken issue with the order to cut up the sopophorous bean and had written in the alternative instruction Crush with flat side of silver dagger releases juice better than cutting .Sir I think you knew my grandfather Abraxas Malfoy ?Harry looked up Slughorn was just passing the Slytherin table .Yes said Slughorn without looking at Malfoy I was sorry to hear he had died although of course it wasnt unexpected dragon pox at his age .And he walked away .Harry bent back over his cauldron smirking .He could tell that Malfoy had expected to be treated like Harry or Zabini perhaps even hoped for some preferential treatment of the type he had learned to expect from Snape .It looked as though Malfoy would have to rely on nothing but talent to win the bottle of Felix Felicis .The sopophorous bean was proving very difficult to cut up .Harry turned to Hermione .Can I borrow your silver knife ?She nodded impatiently not taking her eyes off her potion which was still deep purple though according to the book ought to be turning a light shade of lilac by now .Harry crushed his bean with the flat side of the dagger .To his astonishment it immediately exuded so much juice he was amazed the shriveled bean could have held it all .Hastily scooping it all into the cauldron he saw to his surprise that the potion immediately turned exactly the shade of lilac described by the textbook .His annoyance with the previous owner vanishing on the spot Harry now squinted at the next line of instructions .According to the book he had to stir counterclockwise until the potion turned clear as water .According to the addition the previous owner had made however he ought to add a clockwise stir after every seventh counterclockwise stir .Could the old owner be right twice ?Harry stirred counterclockwise held his breath and stirred once clockwise .The effect was immediate .The potion turned palest pink .How are you doing that ?demanded Hermione who was redfaced and whose hair was growing bushier and bushier in the fumes from her cauldron her potion was still resolutely purple .Add a clockwise stir No no the book says counterclockwise !she snapped .Harry shrugged and continued what he was doing .Seven stirs counterclockwise one clockwise pause .seven stirs counterclockwise one stir clockwise .Across the table Ron was cursing fluently under his breath his potion looked like liquid licorice .Harry glanced around .As far as he could see no one elses potion had turned as pale as his .He felt elated something that had certainly never happened before in this dungeon .And times .up !called Slughorn .Stop stirring please !Slughorn moved slowly among the tables peering into cauldrons .He made no comment but occasionally gave the potions a stir or a sniff .At last he reached the table where Harry Ron Hermione and Ernie were sitting .He smiled ruefully at the tarlike substance in Rons cauldron .He passed over Ernies navy concoction .Hermiones potion he gave an approving nod .Then he saw Harrys and a look of incredulous delight spread over his face .The clear winner !he cried to the dungeon .Excellent excellent Harry !Good lord its clear youve inherited your mothers talent .She was a dab hand at Potions Lily was !Here you are then here you are one bottle of Felix Felicis as promised and use it well !Harry slipped the tiny bottle of golden liquid into his inner pocket feeling an odd combination of delight at the furious looks on the Slytherins faces and guilt at the disappointed expression on Hermiones .Ron looked simply dumbfounded .How did you do that ?he whispered to Harry as they left the dungeon .Got lucky I suppose said Harry because Malfoy was within earshot .Once they were securely ensconced at the Gryffindor table for dinner however he felt safe enough to tell them .Hermiones face became stonier with every word he uttered .I spose you think I cheated ?he finished aggravated by her expression .Well it wasnt exactly your own work was it ?she said stiffly .He only followed different instructions to ours said Ron .Couldve been a catastrophe couldnt it ?But he took a risk and it paid off .He heaved a sigh .Slughorn couldve handed me that book but no I get the one no ones ever written on .Puked on by the look of page fiftytwo but Hang on said a voice close by Harrys left ear and he caught a sudden waft of that flowery smell he had picked up in Slughorns dungeon .He looked around and saw that Ginny had joined them .Did I hear right ?Youve been taking orders from something someone wrote in a book Harry ?She looked alarmed and angry .Harry knew what was on her mind at once .Its nothing he said reassuringly lowering his voice .Its not like you know Riddles diary .Its just an old textbook someones scribbled on .But youre doing what it says ?I just tried a few of the tips written in the margins honestly Ginny theres nothing funny Ginnys got a point said Hermione perking up at once .We ought to check that theres nothing odd about it .I mean all these funny instructions who knows ?Hey !said Harry indignantly as she pulled his copy of Advanced PotionMaking out of his bag and raised her wand .Specialis Revelio she said rapping it smartly on the front cover .Nothing whatsoever happened .The book simply lay there looking old and dirty and dogeared .Finished ?said Harry irritably .Or dyou want to wait and see if it does a few backflips ?It seems all right said Hermione still staring at the book suspiciously .I mean it really does seem to be .just a textbook .Good .Then Ill have it back said Harry snatching it off the table but it slipped from his hand and landed open on the floor .Nobody else was looking .Harry bent low to retrieve the book and as he did so he saw something scribbled along the bottom of the back cover in the same small cramped handwriting as the instructions that had won him his bottle of Felix Felicis now safely hidden inside a pair of socks in his trunk upstairs .This Book is the Property of the HalfBlood Prince .10 THE HOUSE OF GAUNT For the rest of the weeks Potions lessons Harry continued to follow the HalfBlood Princes instructions wherever they deviated from Libatius Borages with the result that by their fourth lesson Slughorn was raving about Harrys abilities saying that he had rarely taught anyone so talented .Neither Ron nor Hermione was delighted by this .Although Harry had offered to share his book with both of them Ron had more difficulty deciphering the handwriting than Harry did and could not keep asking Harry to read aloud or it might look suspicious .Hermione meanwhile was resolutely plowing on with what she called the official instructions but becoming increasingly badtempered as they yielded poorer results than the Princes .Harry wondered vaguely who the HalfBlood Prince had been .Although the amount of homework they had been given prevented him from reading the whole of his copy of Advanced PotionMaking he had skimmed through it sufficiently to see that there was barely a page on which the Prince had not made additional notes not all of them concerned with potionmaking .Here and there were directions for what looked like spells that the Prince had made up himself .Or herself said Hermione irritably overhearing Harry pointing some of these out to Ron in the common room on Saturday evening .It might have been a girl .I think the handwriting looks more like a girls than a boys .The HalfBlood Prince he was called Harry said .How many girls have been Princes ?Hermione seemed to have no answer to this .She merely scowled and twitched her essay on The Principles of Re materialization away from Ron who was trying to read it upside down .Harry looked at his watch and hurriedly put the old copy of Advanced PotionMaking back into his bag .Its five to eight Id better go Ill be late for Dumbledore .Ooooh !gasped Hermione looking up at once .Good luck !Well wait up we want to hear what he teaches you !Hope it goes okay said Ron and the pair of them watched Harry leave through the portrait hole .Harry proceeded through deserted corridors though he had to step hastily behind a statue when Professor Trelawney appeared around a corner muttering to herself as she shuffled a pack of dirtylooking playing cards reading them as she walked .Two of spades conflict she murmured as she passed the place where Harry crouched hidden .Seven of spades an ill omen .Ten of spades violence .Knave of spades a dark young man possibly troubled one who dislikes the questioner She stopped dead right on the other side of Harrys statue .Well that cant be right she said annoyed and Harry heard her reshuffling vigorously as she set off again leaving nothing but a whiff of cooking sherry behind her .Harry waited until he was quite sure she had gone then hurried off again until he reached the spot in the seventhfloor corridor where a single gargoyle stood against the wall .Acid Pops said Harry and the gargoyle leapt aside the wall behind it slid apart and a moving spiral stone staircase was revealed onto which Harry stepped so that he was carried in smooth circles up to the door with the brass knocker that led to Dumbledores office .Harry knocked .Come in said Dumbledores voice .Good evening sir said Harry walking into the headmasters office .Ah good evening Harry .Sit down said Dumbledore smiling .I hope youve had an enjoyable first week back at school ?Yes thanks sir said Harry .You must have been busy a detention under your belt already !Er began Harry awkwardly but Dumbledore did not look too stern .I have arranged with Professor Snape that you will do your detention next Saturday instead .Right said Harry who had more pressing matters on his mind than S napes detention and now looked around surreptitiously for some indication of what Dumbledore was planning to do with him this evening .The circular office looked just as it always did the delicate silver instruments stood on spindle legged tables puffing smoke and whirring portraits of previous headmasters and headmistresses dozed in their frames and Dumbledores magnificent phoenix Fawkes stood on his perch behind the door watching Harry with bright interest .It did not even look as though Dumbledore had cleared a space for dueling practice .So Harry said Dumbledore in a businesslike voice .You have been wondering I am sure what I have planned for you during these for want of a better word lessons ?Yes sir .Well I have decided that it is time now that you know what prompted Lord Voldemort to try and kill you fifteen years ago for you to be given certain information .There was a pause .You said at the end of last term you were going to tell me everything said Harry .It was hard to keep a note of accusation from his voice .Sir he added .And so I did said Dumbledore placidly .I told you everything I know .From this point forth we shall be leaving the firm foundation of fact and journeying together through the murky marshes of memory into thickets of wildest guesswork .From here on in Harry I may be as woefully wrong as Humphrey Belcher who believed the time was ripe for a cheese cauldron .But you think youre right ?said Harry .Naturally I do but as I have already proven to you I make mistakes like the next man .In fact being forgive me rather cleverer than most men my mistakes tend to be correspondingly huger .Sir said Harry tentatively does what youre going to tell me have anything to do with the prophecy ?Will it help me .survive ?It has a very great deal to do with the prophecy said Dumbledore as casually as if Harry had asked him about the next days weather and I certainly hope that it will help you to survive .Dumbledore got to his feet and walked around the desk past Harry who turned eagerly in his seat to watch Dumbledore bending over the cabinet beside the door .When Dumbledore straightened up he was holding a familiar shallow stone basin etched with odd markings around its rim .He placed the Pensieve on the desk in front of Harry .You look worried .Harry had indeed been eyeing the Pensieve with some apprehension .His previous experiences with the odd device that stored and revealed thoughts and memories though highly instructive had also been uncomfortable .The last time he had disturbed its contents he had seen much more than he would have wished .But Dumbledore was smiling .This time you enter the Pensieve with me .and even more unusually with permission .Where are we going sir ?For a trip down Bob Ogdens memory lane said Dumbledore pulling from his pocket a crystal bottle containing a swirling silvery white substance .Who was Bob Ogden ?He was employed by the Department of Magical Law Enforcement said Dumbledore .He died some time ago but not before I had tracked him down and persuaded him to confide these recollections to me .We are about to accompany him on a visit he made in the course of his duties .If you will stand Harry .But Dumbledore was having difficulty pulling out the stopper of the crystal bottle His injured hand seemed stiff and painful .Shall shall I sir ?No matter Harry Dumbledore pointed his wand at the bottle and the cork flew out .Sir how did you injure your hand ?Harry asked again looking at the blackened fingers with a mixture of revulsion and pity .Now is not the moment for that story Harry .Not yet .We have an appointment with Bob Ogden .Dumbledore tipped the silvery contents of the bottle into the Pensieve where they swirled and shimmered neither liquid nor gas .After you said Dumbledore gesturing toward the bowl .Harry bent forward took a deep breath and plunged his face into the silvery substance .He felt his feet leave the office floor he was falling falling through whirling darkness and then quite suddenly he was blinking in dazzling sunlight .Before his eyes had adjusted Dumbledore landed beside him .They were standing in a country lane bordered by high tangled hedgerows beneath a summer sky as bright and blue as a forgetmenot .Some ten feet in front of them stood a short plump man wearing enormously thick glasses that reduced his eyes to molelike specks .He was reading a wooden signpost that was sticking out of the brambles on the lefthand side of the road .Harry knew this must be Ogden he was the only person in sight and he was also wearing the strange assortment of clothes so often chosen by inexperienced wizards trying to look like Muggles in this case a frock coat and spats over a striped one piece bathing costume .Before Harry had time to do more than register his bizarre appearance however Ogden had set off at a brisk walk down the lane .Dumbledore and Harry followed .As they passed the wooden sign Harry looked up at its two arms .The one pointing back the way they had come read GREAT HANGLETON 5 MILES .The arm pointing after Ogden said LITTLE HANGLETON 1 MILE .They walked a short way with nothing to see but the hedgerows the wide blue sky overhead and the swishing frockcoated figure ahead .Then the lane curved to the left and fell away sloping steeply down a hillside so that they had a sudden unexpected view of a whole valley laid out in front of them .Harry could see a village undoubtedly Little Hangleton nestled between two steep hills its church and graveyard clearly visible .Across the valley set on the opposite hillside was a handsome manor house surrounded by a wide expanse of velvety green lawn .Ogden had broken into a reluctant trot due to the steep downward slope .Dumbledore lengthened his stride and Harry hurried to keep up .He thought Little Hangleton must be their final destination and wondered as he had done on the night they had found Slughorn why they had to approach it from such a distance .He soon discovered that he was mistaken in thinking that they were going to the village however .The lane curved to the right and when they rounded the corner it was to see the very edge of Ogdens frock coat vanishing through a gap in the hedge .Dumbledore and Harry followed him onto a narrow dirt track bordered by higher and wilder hedgerows than those they had left behind .The path was crooked rocky and potholed sloping downhill like the last one and it seemed to be heading for a patch of dark trees a little below them .Sure enough the track soon opened up at the copse and Dumbledore and Harry came to a halt behind Ogden who had stopped and drawn his wand .Despite the cloudless sky the old trees ahead cast deep dark cool shadows and it was a few seconds before Harrys eyes discerned the building halfhidden amongst the tangle of trunks .It seemed to him a very strange location to choose for a house or else an odd decision to leave the trees growing nearby blocking all light and the view of the valley below .He wondered whether it was inhabited its walls were mossy and so many tiles had fallen off the roof that the rafters were visible in places .Nettles grew all around it their tips reaching the windows which were tiny and thick with grime .Just as he had concluded that nobody could possibly live there however one of the windows was thrown open with a clatter and a thin trickle of steam or smoke issued from it as though somebody was cooking .Ogden moved forward quietly and it seemed to Harry rather cautiously .As the dark shadows of the trees slid over him he stopped again staring at the front door to which somebody had nailed a dead snake .Then there was a rustle and a crack and a man in rags dropped from the nearest tree landing on his feet right in front of Ogden who leapt backward so fast he stood on the tails of his frock coat and stumbled .Youre not welcome .The man standing before them had thick hair so matted with dirt it could have been any color .Several of his teeth were missing .His eyes were small and dark and stared in opposite directions .He might have looked comical but he did not the effect was frightening and Harry could not blame Ogden for backing away several more paces before he spoke .Er good morning .Im from the Ministry of Magic Youre not welcome .Er Im sorry I dont understand you said Ogden nervously .Harry thought Ogden was being extremely dim the stranger was making himself very clear in Harrys opinion particularly as he was brandishing a wand in one hand and a short and rather bloody knife in the other .You understand him Im sure Harry ?said Dumbledore quietly .Yes of course said Harry slightly nonplussed .Why cant Ogden ?But as his eyes found the dead snake on the door again he suddenly understood .Hes speaking Parseltongue ?Very good said Dumbledore nodding and smiling .The man in rags was now advancing on Ogden knife in one hand wand in the other .Now look Ogden began but too late There was a bang and Ogden was on the ground clutching his nose while a nasty yellowish goo squirted from between his fingers .Morfin !said a loud voice .An elderly man had come hurrying out of the cottage banging the door behind him so that the dead snake swung pathetically .This man was shorter than the first and oddly proportioned his shoulders were very broad and his arms overlong which with his bright brown eyes short scrubby hair and wrinkled face gave him the look of a powerful aged monkey .He came to a halt beside the man with the knife who was now cackling with laughter at the sight of Ogden on the ground .Ministry is it ?said the older man looking down at Ogden .Correct !said Ogden angrily dabbing his face .And you I take it are Mr Gaunt ?Sright said Gaunt .Got you in the face did he ?Yes he did !snapped Ogden .Shouldve made your presence known shouldnt you ?said Gaunt aggressively .This is private property .Cant just walk in here and not expect my son to defend himself .Defend himself against what man ?said Ogden clambering back to his feet .Busybodies .Intruders .Muggles and filth .Ogden pointed his wand at his own nose which was still issuing large amounts of what looked like yellow pus and the flow stopped at once .Mr Gaunt spoke out of the corner of his mouth to Morfin .Get in the house .Dont argue .This time ready for it Harry recognized Parseltongue even while he could understand what was being said he distinguished the weird hissing noise that was all Ogden could hear .Morfin seemed to be on the point of disagreeing but when his father cast him a threatening look he changed his mind lumbering away to the cottage with an odd rolling gait and slamming the front door behind him so that the snake swung sadly again .Its your son Im here to see Mr Gaunt said Ogden as he mopped the last of the pus from the front of his coat .That was Morfin wasnt it ?Ar that was Morfin said the old man indifferently .Are you pureblood ?he asked suddenly aggressive .Thats neither here nor there said Ogden coldly and Harry felt his respect for Ogden rise .Apparently Gaunt felt rather differently .He squinted into Ogdens face and muttered in what was clearly supposed to be an offensive tone Now I come to think about it Ive seen noses like yours down in the village .I dont doubt it if your sons been let loose on them said Ogden .Perhaps we could continue this discussion inside ?Inside ?Yes Mr Gaunt .Ive already told you .Im here about Morfin .We sent an owl Ive no use for owls said Gaunt .I dont open letters .Then you can hardly complain that you get no warning of visitors said Ogden tartly .I am here following a serious breach of Wizarding law which occurred here in the early hours of this morning All right all right all right !bellowed Gaunt .Come in the bleeding house then and much good itll do you !The house seemed to contain three tiny rooms .Two doors led off the main room which served as kitchen and living room combined .Morfin was sitting in a filthy armchair beside the smoking fire twisting a live adder between his thick fingers and crooning softly at it in Parseltongue Hissy hissy little snakey Slither on the floor You be good to Morfin Or hell nail you to the door .There was a scuffling noise in the corner beside the open window and Harry realized that there was somebody else in the room a girl whose ragged gray dress was the exact color of the dirty stone wall behind her .She was standing beside a steaming pot on a grimy black stove and was fiddling around with the shelf of squalidlooking pots and pans above it .Her hair was lank and dull and she had a plain pale rather heavy face .Her eyes like her brothers stared in opposite directions .She looked a little cleaner than the two men but Harry thought he had never seen a more defeatedlooking person .Mdaughter Merope said Gaunt grudgingly as Ogden looked inquiringly toward her .Good morning said Ogden .She did not answer but with a frightened glance at her father turned her back on the room and continued shifting the pots on the shelf behind her .Well Mr Gaunt said Ogden to get straight to the point we have reason to believe that your son Morfin performed magic in front of a Muggle late last night .There was a deafening clang .Merope had dropped one of the pots .Pick it up Gaunt bellowed at her .Thats it grub on the floor like some filthy Muggle whats your wand for you useless sack of muck ?Mr Gaunt please !said Ogden in a shocked voice as Merope who had already picked up the pot flushed blotchily scarlet lost her grip on the pot again drew her wand shakily from her pocket pointed it at the pot and muttered a hasty inaudible spell that caused the pot to shoot across the floor away from her hit the opposite wall and crack in two .Morfin let out a mad cackle of laughter .Gaunt screamed Mend it you pointless lump mend it !Merope stumbled across the room but before she had time to raise her wand Ogden had lifted his own and said firmly Reparo .The pot mended itself instantly .Gaunt looked for a moment as though he was going to shout at Ogden but seemed to think better of it Instead he jeered at his daughter Lucky the nice man from the Ministrys here isnt it ?Perhaps hell take you off my hands perhaps he doesnt mind dirty Squibs .Without looking at anybody or thanking Ogden Merope picked up the pot and returned it hands trembling to its shelf .She then stood quite still her back against the wall between the filthy window and the stove as though she wished for nothing more than to sink into the stone and vanish .Mr Gaunt Ogden began again as Ive said the reason for my visit I heard you the first time !snapped Gaunt .And so what ?Morfin gave a Muggle a bit of what was coming to him what about it then ?Morfin has broken Wizarding law said Ogden sternly . ‘Morfin has broken Wizarding law .Gaunt imitated Ogdens voice making it pompous and singsong .Morfin cackled again .He taught a filthy Muggle a lesson thats illegal now is it ?Yes said Ogden .Im afraid it is .He pulled from an inside pocket a small scroll of parchment and unrolled it .Whats that then his sentence ?said Gaunt his voice rising angrily .It is a summons to the Ministry for a hearing Summons !Summons ?Who do you think you are summoning my son anywhere ?Im Head of the Magical Law Enforcement Squad said Ogden .And you think were scum do you ?screamed Gaunt advancing on Ogden now with a dirty yellow nailed finger pointing at his chest .Scum wholl come running when the Ministry tells em to ?Do you know who youre talking to you filthy little Mudblood do you ?I was under the impression that I was speaking to Mr Gaunt said Ogden looking wary but standing his ground .Thats right !roared Gaunt .For a moment Harry thought Gaunt was making an obscene hand gesture but then realized that he was showing Ogden the ugly black stoned ring he was wearing on his middle finger waving it before Ogdens eyes .See this ?See this ?Know what it is ?Know where it came from ?Centuries its been in our family thats how far back we go and pureblood all the way !Know how much Ive been offered for this with the Peverell coat of arms engraved on the stone ?Ive really no idea said Ogden blinking as the ring sailed within an inch of his nose and its quite beside the point Mr Gaunt .Your son has committed With a howl of rage Gaunt ran toward his daughter .For a split second Harry thought he was going to throttle her as his hand flew to her throat next moment he was dragging her toward Ogden by a gold chain around her neck .See this ?he bellowed at Ogden shaking a heavy gold locket at him while Merope spluttered and gasped for breath .I see it I see it !said Ogden hastily .Slytherinsl yelled Gaunt .Salazar Slytherins !Were his last living descendants what do you say to that eh ?Mr Gaunt your daughter !said Ogden in alarm but Gaunt had already released Merope she staggered away from him back to her corner massaging her neck and gulping for air .So !said Gaunt triumphantly as though he had just proved a complicated point beyond all possible dispute .Dont you go talking to us as if were dirt on your shoes !Generations of purebloods wizards all more than you can say I dont doubt !And he spat on the floor at Ogdens feet .Morfin cackled again .Merope huddled beside the window her head bowed and her face hidden by her lank hair said nothing .Mr Gaunt said Ogden doggedly I am afraid that neither your ancestors nor mine have anything to do with the matter in hand .I am here because of Morfin Morfin and the Muggle he accosted late last night .Our information he glanced down at his scroll of parchment is that Morfin performed a jinx or hex on the said Muggle causing him to erupt in highly painful hives .Morfin giggled .Be quiet boy snarled Gaunt in Parseltongue and Morfin fell silent again .And so what if he did then ?Gaunt said defiantly to Ogden .I expect youve wiped the Muggle s filthy face clean for him and his memory to boot Thats hardly the point is it Mr Gaunt ?said Ogden .This was an unprovoked attack on a defenseless Ar I had you marked out as a Mugglelover the moment I saw you sneered Gaunt and he spat on the floor again .This discussion is getting us nowhere said Ogden firmly .It is clear from your sons attitude that he feels no remorse for his actions .He glanced down at his scroll of parchment again .Morfin will attend a hearing on the fourteenth of September to answer the charges of using magic in front of a Muggle and causing harm and distress to that same Mugg Ogden broke off .The jingling clopping sounds of horses and loud laughing voices were drifting in through the open window .Apparently the winding lane to the village passed very close to the copse where the house stood .Gaunt froze listening his eyes wide .Morfin hissed and turned his face toward the sounds his expression hungry .Merope raised her head .Her face Harry saw was starkly white .My God what an eyesore !rang out a girls voice as clearly audible through the open window as if she had stood in the room beside them .Couldnt your father have that hovel cleared away Tom ?Its not ours said a young mans voice .Everything on the other side of the valley belongs to us but that cottage belongs to an old tramp called Gaunt and his children .The sons quite mad you should hear some of the stories they tell in the village The girl laughed .The jingling clopping noises were growing louder and louder .Morfin made to get out of his armchair .Keep your seat said his father warningly in Parseltongue .Tom said the girls voice again now so close they were clearly right beside the house I might be wrong but has somebody nailed a snake to that door ?Good lord youre right !said the mans voice .Thatll be the son I told you hes not right in the head .Dont look at it Cecilia darling .The jingling and clopping sounds were now growing fainter again . ‘Darling whispered Morfin in Parseltongue looking at his sister . ‘Darling he called her .So he wouldnt have you anyway .Merope was so white Harry felt sure she was going to faint .Whats that ?said Gaunt sharply also in Parseltongue looking from his son to his daughter .What did you say Morfin ?She likes looking at that Muggle said Morfin a vicious expression on his face as he stared at his sister who now looked terrified .Always in the garden when he passes peering through the hedge at him isnt she ?And last night Merope shook her head jerkily imploringly but Morfin went on ruthlessly Hanging out of the window waiting for him to ride home wasnt she ?Hanging out of the window to look at a Muggle ?said Gaunt quietly .All three of the Gaunts seemed to have forgotten Ogden who was looking both bewildered and irritated at this renewed outbreak of incomprehensible hissing and rasping .Is it true ?said Gaunt in a deadly voice advancing a step or two toward the terrified girl .My daughter pureblooded descendant of Salazar Slytherin hankering after a filthy dirtveined Muggle ?Merope shook her head frantically pressing herself into the wall apparently unable to speak .But I got him FatheA cackled Morfin .I got him as he went by and he didnt look so pretty with hives all over him did he Merope ?You disgusting little Squib you filthy little blood traitoA .roared Gaunt losing control and his hands closed around his daughters throat .Both Harry and Ogden yelled No !at the same time Ogden raised his wand and cried Relashiol Gaunt was thrown backward away from his daughter he tripped over a chair and fell flat on his back .With a roar of rage Morfin leapt out of his chair and ran at Ogden brandishing his bloody knife and firing hexes indiscriminately from his wand .Ogden ran for his life .Dumbledore indicated that they ought to follow and Harry obeyed Merope s screams echoing in his ears .Ogden hurtled up the path and erupted onto the main lane his arms over his head where he collided with the glossy chestnut horse ridden by a very handsome darkhaired young man .Both he and the pretty girl riding beside him on a gray horse roared with laughter at the sight of Ogden who bounced off the horses flank and set off again his frock coat flying covered from head to foot in dust running pellmell up the lane .I think that will do Harry said Dumbledore .He took Harry by the elbow and tugged .Next moment they were both soaring weightlessly through darkness until they landed squarely on their feet back in Dumbledore s now twilit office .What happened to the girl in the cottage ?said Harry at once as Dumbledore lit extra lamps with a flick of his wand .Merope or whatever her name was ?Oh she survived said Dumbledore reseating himself behind his desk and indicating that Harry should sit down too .Ogden Apparated back to the Ministry and returned with reinforcements within fifteen minutes .Morfin and his father attempted to fight but both were overpowered removed from the cottage and subsequently convicted by the Wizengamot .Morfin who already had a record of Muggle attacks was sentenced to three years in Azkaban .Marvolo who had injured several Ministry employees in addition to Ogden received six months .Marvolo ?Harry repeated wonderingly .Thats right said Dumbledore smiling in approval .I am glad to see youre keeping up .That old man was ?Voldemorts grandfather yes said Dumbledore .Marvolo his son Morfin and his daughter Merope were the last of the Gaunts a very ancient Wizarding family noted for a vein of instability and violence that flourished through the generations due to their habit of marrying their own cousins .Lack of sense coupled with a great liking for grandeur meant that the family gold was squandered several generations before Marvolo was born .He as you saw was left in squalor and poverty with a very nasty temper a fantastic amount of arrogance and pride and a couple of family heirlooms that he treasured just as much as his son and rather more than his daughter .So Merope said Harry leaning forward in his chair and staring at Dumbledore so Merope was .Sir does that mean she was .Voldemorts mother ?It does said Dumbledore .And it so happens that we also had a glimpse of Voldemorts father .I wonder whether you noticed ?The Muggle Morfin attacked ?The man on the horse ?Very good indeed said Dumbledore beaming .Yes that was Tom Riddle senior the handsome Muggle who used to go riding past the Gaunt cottage and for whom Merope Gaunt cherished a secret burning passion .And they ended up married ?Harry said in disbelief unable to imagine two people less likely to fall in love .I think you are forgetting said Dumbledore that Merope was a witch .I do not believe that her magical powers appeared to their best advantage when she was being terrorized by her father .Once Marvolo and Morfin were safely in Azkaban once she was alone and free for the first time in her life then I am sure she was able to give full rein to her abilities and to plot her escape from the desperate life she had led for eighteen years .Can you not think of any measure Merope could have taken to make Tom Riddle forget his Muggle companion and fall in love with her instead ?The Imperius Curse ?Harry suggested .Or a love potion ?Very good .Personally I am inclined to think that she used a love potion .I am sure it would have seemed more romantic to her and I do not think it would have been very difficult some hot day when Riddle was riding alone to persuade him to take a drink of water .In any case within a few months of the scene we have just witnessed the village of Little Hangleton enjoyed a tremendous scandal .You can imagine the gossip it caused when the squires son ran off with the tramps daughter Merope .But the villagers shock was nothing to Marvolos .He returned from Azkaban expecting to find his daughter dutifully awaiting his return with a hot meal ready on his table .Instead he found a clear inch of dust and her note of farewell explaining what she had done .From all that I have been able to discover he never mentioned her name or existence from that time forth .The shock of her desertion may have contributed to his early death or perhaps he had simply never learned to feed himself .Azkaban had greatly weakened Marvolo and he did not live to see Morfin return to the cottage .And Merope ?She .she died didnt she ?Wasnt Voldemort brought up in an orphanage ?Yes indeed said Dumbledore .We must do a certain amount of guessing here although I do not think it is difficult to deduce what happened .You see within a few months of their runaway marriage Tom Riddle reappeared at the manor house in Little Hangleton without his wife .The rumor flew around the neighborhood that he was talking of being ‘hoodwinked and ‘taken in .What he meant I am sure is that he had been under an enchantment that had now lifted though I daresay he did not dare use those precise words for fear of being thought insane .When they heard what he was saying however the villagers guessed that Merope had lied to Tom Riddle pretending that she was going to have his baby and that he had married her for this reason .But she did have his baby .But not until a year after they were married .Tom Riddle left her while she was still pregnant .What went wrong ?asked Harry .Why did the love potion stop working ?Again this is guesswork said Dumbledore but I believe that Merope who was deeply in love with her husband could not bear to continue enslaving him by magical means .I believe that she made the choice to stop giving him the potion .Perhaps besotted as she was she had convinced herself that he would by now have fallen in love with her in return .Perhaps she thought he would stay for the babys sake .If so she was wrong on both counts .He left her never saw her again and never troubled to discover what became of his son .The sky outside was inky black and the lamps in Dumbledore s office seemed to glow more brightly than before .I think that will do for tonight Harry said Dumbledore after a moment or two .Yes sir said Harry .He got to his feet but did not leave .Sir .is it important to know all this about Voldemorts past ?Very important I think said Dumbledore .And it .its got something to do with the prophecy ?It has everything to do with the prophecy .Right said Harry a little confused but reassured all the same .He turned to go then another question occurred to him and he turned back again .Sir am I allowed to tell Ron and Hermione everything youve told me ?Dumbledore considered him for a moment then said Yes I think Mr Weasley and Miss Granger have proved themselves trustworthy .But Harry I am going to ask you to ask them not to repeat any of this to anybody else .It would not be a good idea if word got around how much I know or suspect about Lord Voldemorts secrets .No sir Ill make sure its just Ron and Hermione .Good night .He turned away again and was almost at the door when he saw it .Sitting on one of the little spindle legged tables that supported so many fraillooking silver instruments was an ugly gold ring set with a large cracked black stone .Sir said Harry staring at it .That ring Yes ?said Dumbledore .You were wearing it when we visited Professor Slughorn that night .So I was Dumbledore agreed .But isnt it .sir isnt it the same ring Marvolo Gaunt showed Ogden ?Dumbledore bowed his head .The very same .But how come ?Have you always had it ?No I acquired it very recently said Dumbledore .A few days before I came to fetch you from your aunt and uncles in fact .That would be around the time you injured your hand then sir ?Around that time yes Harry .Harry hesitated .Dumbledore was smiling .Sir how exactly ?Too late Harry !You shall hear the story another time .Good night .Good night sir .HERMIONES HELPING HAND As Hermione had predicted the sixth years free periods were not the hours of blissful relaxation Ron had anticipated but times in which to attempt to keep up with the vast amount of homework they were being set .Not only were they studying as though they had exams every day but the lessons themselves had become more demanding than ever before .Harry barely understood half of what Professor McGonagall said to them these days even Hermione had had to ask her to repeat instructions once or twice .Incredibly and to Hermione s increasing resentment Harrys best subject had suddenly become Potions thanks to the HalfBlood Prince .Nonverbal spells were now expected not only in Defense Against the Dark Arts but in Charms and Transfiguration too .Harry frequently looked over at his classmates in the common room or at mealtimes to see them purple in the face and straining as though they had overdosed on UNoPoo but he knew that they were really struggling to make spells work without saying incantations aloud .It was a relief to get outside into the greenhouses they were dealing with more dangerous plants than ever in Herbology but at least they were still allowed to swear loudly if the Venomous Tentacula seized them unexpectedly from behind .One result of their enormous workload and the frantic hours of practicing nonverbal spells was that Harry Ron and Hermione had so far been unable to find time to go and visit Hagrid .He had stopped coming to meals at the staff table an ominous sign and on the few occasions when they had passed him in the corridors or out in the grounds he had mysteriously failed to notice them or hear their greetings .Weve got to go and explain said Hermione looking up at Hagrid s huge empty chair at the staff table the following Saturday at breakfast .Weve got Quidditch tryouts this morning !said Ron .And were supposed to be practicing that Aguamenti Charm from Flitwick !Anyway explain what ?How are we going to tell him we hated his stupid subject ?We didnt hate it !said Hermione .Speak for yourself I havent forgotten the skrewts said Ron darkly .And Im telling you now weve had a narrow escape .You didnt hear him going on about his gormless brother wed have been teaching Grawp how to tie his shoelaces if wed stayed .I hate not talking to Hagrid said Hermione looking upset .Well go down after Quidditch Harry assured her .He too was missing Hagrid although like Ron he thought that they were better off without Grawp in their lives .But trials might take all morning the number of people who have applied .He felt slightly nervous at confronting the first hurdle of his Captaincy .I dunno why the teams this popular all of a sudden .Oh come on Harry said Hermione suddenly impatient .Its not Quidditch thats popular its you !Youve never been more interesting and frankly youve never been more fanciable .Ron gagged on a large piece of kipper .Hermione spared him one look of disdain before turning back to Harry .Everyone knows youve been telling the truth now dont they ?The whole Wizarding world has had to admit that you were right about Voldemort being back and that you really have fought him twice in the last two years and escaped both times .And now theyre calling you ‘the Chosen One well come on cant you see why people are fascinated by you ?Harry was finding the Great Hall very hot all of a sudden even though the ceiling still looked cold and rainy .And youve been through all that persecution from the Ministry when they were trying to make out you were unstable and a liar .You can still see the marks on the back of your hand where that evil woman made you write with your own blood but you stuck to your story anyway .You can still see where those brains got hold of me in the Ministry look said Ron shaking back his sleeves .And it doesnt hurt that youve grown about a foot over the summer either Hermione finished ignoring Ron .Im tall said Ron inconsequentially .The post owls arrived swooping down through rain flecked windows scattering everyone with droplets of water .Most people were receiving more post than usual anxious parents were keen to hear from their children and to reassure them in turn that all was well at home .Harry had received no mail since the start of term his only regular correspondent was now dead and although he had hoped that Lupin might write occasionally he had so far been disappointed .He was very surprised therefore to see the snowy white Hedwig circling amongst all the brown and gray owls .She landed in front of him carrying a large square package .A moment later an identical package landed in front of Ron crushing beneath it his minuscule and exhausted owl Pigwidgeon .Ha !said Harry unwrapping the parcel to reveal a new copy of Advanced PotionMaking fresh from Flourish and Blotts .Oh good said Hermione delighted .Now you can give that graffitied copy back .Are you mad ?said Harry .Im keeping it !Look Ive thought it out He pulled the old copy of Advanced PotionMaking out of his bag and tapped the cover with his wand muttering Diffindol The cover fell off .He did the same thing with the brandnew book Hermione looked scandalized .He then swapped the covers tapped each and said Reparo There sat the Princes copy disguised as a new book and there sat the fresh copy from Flourish and Blotts looking thoroughly secondhand .Ill give Slughorn back the new one he cant complain it cost nine Galleons .Hermione pressed her lips together looking angry and disapproving but was distracted by a third owl landing in front of her carrying that days copy of the Daily Prophet .She unfolded it hastily and scanned the front page .Anyone we know dead ?asked Ron in a determinedly casual voice he posed the same question every time Hermione opened her paper .No but there have been more dementor attacks said Hermione .And an arrest .Excellent who ?said Harry thinking of Bellatrix Lestrange .Stan Shunpike said Hermione .What ?said Harry startled . ‘Stanley Shunpike conductor on the popular Wizarding conveyance the Knight Bus has been arrested on suspicion of Death Eater activity .Mr Shunpike 21 was taken into custody late last night after a raid on his Clapham home .Stan Shunpike a Death Eater ?said Harry remembering the spotty youth he had first met three years before .No way !He might have been put under the Imperius Curse said Ron reasonably .You never can tell .It doesnt look like it said Hermione who was still reading .It says here he was arrested after he was overheard talking about the Death Eaters secret plans in a pub .She looked up with a troubled expression on her face .If he was under the Imperius Curse hed hardly stand around gossiping about their plans would he ?It sounds like he was trying to make out he knew more than he did said Ron .Isnt he the one who claimed he was going to become Minister of Magic when he was trying to chat up those veela ?Yeah thats him said Harry .I dunno what theyre playing at taking Stan seriously .They probably want to look as though theyre doing something said Hermione frowning .People are terrified you know the Patil twins parents want them to go home ?And Eloise Midgen has already been withdrawn .Her father picked her up last night .What !said Ron goggling at Hermione .But Hogwarts is safer than their homes bound to be !Weve got Aurors and all those extra protective spells and weve got Dumbledore !I dont think weve got him all the time said Hermione very quietly glancing toward the staff table over the top of the Prophet Havent you noticed ?His seats been empty as often as Hagrids this past week .Harry and Ron looked up at the staff table .The headmasters chair was indeed empty .Now Harry came to think of it he had not seen Dumbledore since their private lesson a week ago .I think hes left the school to do something with the Order said Hermione in a low voice .I mean .its all looking serious isnt it ?Harry and Ron did not answer but Harry knew that they were all thinking the same thing .There had been a horrible incident the day before when Hannah Abbott had been taken out of Herbology to be told her mother had been found dead .They had not seen Hannah since .When they left the Gryffindor table five minutes later to head down to the Quidditch pitch they passed Lavender Brown and Parvati Patil .Remembering what Hermione had said about the Patil twins parents wanting them to leave Hogwarts Harry was unsurprised to see that the two best friends were whispering together looking distressed .What did surprise him was that when Ron drew level with them Parvati suddenly nudged Lavender who looked around and gave Ron a wide smile .Ron blinked at her then returned the smile uncertainly .His walk instantly became something more like a strut .Harry resisted the temptation to laugh remembering that Ron had refrained from doing so after Malfoy had broken Harrys nose Hermione however looked cold and distant all the way down to the stadium through the cool misty drizzle and departed to find a place in the stands without wishing Ron good luck .As Harry had expected the trials took most of the morning .Half of Gryffindor House seemed to have turned up from first years who were nervously clutching a selection of the dreadful old school brooms to seventh years who towered over the rest looking coolly intimidating .The latter included a large wiryhaired boy Harry recognized immediately from the Hogwarts Express .We met on the train in old Sluggys compartment he said confidently stepping out of the crowd to shake Harrys hand .Cormac McLaggen Keeper .You didnt try out last year did you ?asked Harry taking note of the breadth of McLaggen and thinking that he would probably block all three goal hoops without even moving .I was in the hospital wing when they held the trials said McLaggen with something of a swagger .Ate a pound of doxy eggs for a bet .Right said Harry .Well .if you wait over there .He pointed over to the edge of the pitch close to where Hermione was sitting .He thought he saw a flicker of annoyance pass over McLaggens face and wondered whether McLaggen expected preferential treatment because they were both old Sluggys favorites .Harry decided to start with a basic test asking all applicants for the team to divide into groups of ten and fly once around the pitch .This was a good decision The first ten was made up of first years and it could not have been plainer that they had hardly ever flown before .Only one boy managed to remain airborne for more than a few seconds and he was so surprised he promptly crashed into one of the goal posts .The second group was comprised of ten of the silliest girls Harry had ever encountered who when he blew his whistle merely fell about giggling and clutching one another .Romilda Vane was amongst them .When he told them to leave the pitch they did so quite cheerfully and went to sit in the stands to heckle everyone else .The third group had a pileup halfway around the pitch .Most of the fourth group had come without broomsticks .The fifth group were Hufflepuffs .If theres anyone else here whos not from Gryffindor roared Harry who was starting to get seriously annoyed leave now please !There was a pause then a couple of little Ravenclaws went sprinting off the pitch snorting with laughter .After two hours many complaints and several tantrums one involving a crashed Comet Two Sixty and several broken teeth Harry had found himself three Chasers Katie Bell returned to the team after an excellent trial a new find called Demelza Robins who was particularly good at dodging Bludgers and Ginny Weasley who had outflown all the competition and scored seventeen goals to boot .Pleased though he was with his choices Harry had also shouted himself hoarse at the many complainers and was now enduring a similar battle with the rejected Beaters .Thats my final decision and if you dont get out of the way for the Keepers Ill hex you he bellowed .Neither of his chosen Beaters had the old brilliance of Fred and George but he was still reasonably pleased with them Jimmy Peakes a short but broadchested thirdyear boy who had managed to raise a lump the size of an egg on the back of Harrys head with a ferociously hit Bludger and Ritchie Coote who looked weedy but aimed well .They now joined Katie Demelza and Ginny in the stands to watch the selection of their last team member .Harry had deliberately left the trial of the Keepers until last hoping for an emptier stadium and less pressure on all concerned .Unfortunately however all the rejected players and a number of people who had come down to watch after a lengthy breakfast had joined the crowd by now so that it was larger than ever .As each Keeper flew up to the goal hoops the crowd roared and jeered in equal measure .Harry glanced over at Ron who had always had a problem with nerves Harry had hoped that winning their final match last term might have cured it but apparently not Ron was a delicate shade of green .None of the first five applicants saved more than two goals apiece .To Harrys great disappointment Cormac McLaggen saved four penalties out of five .On the last one however he shot off in completely the wrong direction the crowd laughed and booed and McLaggen returned to the ground grinding his teeth .Ron looked ready to pass out as he mounted his Cleansweep Eleven .Good luck !cried a voice from the stands .Harry looked around expecting to see Hermione but it was Lavender Brown .He would have quite liked to have hidden his face in his hands as she did a moment later but thought that as the Captain he ought to show slightly more grit and so turned to watch Ron do his trial .Yet he need not have worried Ron saved one two three four five penalties in a row .Delighted and resisting joining in the cheers of the crowd with difficulty Harry turned to McLaggen to tell him that most unfortunately Ron had beaten him only to find McLaggens red face inches from his own .He stepped back hastily .His sister didnt really try said McLaggen menacingly .There was a vein pulsing in his temple like the one Harry had often admired in Uncle Vernons .She gave him an easy save .Rubbish said Harry coldly .That was the one he nearly missed .McLaggen took a step nearer Harry who stood his ground this time .Give me another go .No said Harry .Youve had your go .You saved four .Ron saved five .Rons Keeper he won it fair and square .Get out of my way .He thought for a moment that McLaggen might punch him but he contented himself with an ugly grimace and stormed away gwhat sounded like threats to thin air .Harry turned around to find his new team beaming at him .Well done he croaked .You flew really well You did brilliantly Ron !This time it really was Hermione running toward them from the stands Harry saw Lavender walking off the pitch arm in arm with Parvati a rather grumpy expression on her face .Ron looked extremely pleased with himself and even taller than usual as he grinned at the team and at Hermione .After fixing the time of their first full practice for the following Thursday Harry Ron and Hermione bade goodbye to the rest of the team and headed off toward Hagrids .A watery sun was trying to break through the clouds now and it had stopped drizzling at last .Harry felt extremely hungry he hoped there would be something to eat at Hagrids .I thought I was going to miss that fourth penalty Ron was saying happily .Tricky shot from Demelza did you see had a bit of spin on it Yes yes you were magnificent said Hermione looking amused .I was better than that McLaggen anyway said Ron in a highly satisfied voice .Did you see him lumbering off in the wrong direction on his fifth ?Looked like hed been Confunded .To Harrys surprise Hermione turned a very deep shade of pink at these words .Ron noticed nothing he was too busy describing each of his other penalties in loving detail .The great gray hippogriff Buckbeak was tethered in front of Hagrids cabin .He clicked his razorsharp beak at their approach and turned his huge head toward them .Oh dear said Hermione nervously .Hes still a bit scary isnt he ?Come off it youve ridden him havent you ?said Ron .Harry stepped forward and bowed low to the hippogriff without breaking eye contact or blinking .After a few seconds Buckbeak sank into a bow too .How are you ?Harry asked him in a low voice moving forward to stroke the feathery head .Missing him ?But youre okay here with Hagrid arent you ?Oi !said a loud voice .Hagrid had come striding around the corner of his cabin wearing a large flowery apron and carrying a sack of potatoes .His enormous boarhound Fang was at his heels Fang gave a booming bark and bounded forward .Git away from him !Hell have yer fingers oh .Its yeh lot .Fang was jumping up at Hermione and Ron attempting to lick their ears .Hagrid stood and looked at them all for a split second then turned and strode into his cabin slamming the door behind him .Oh dear !said Hermione looking stricken .Dont worry about it said Harry grimly .He walked over to the door and knocked loudly .Hagrid !Open up we want to talk to you !There was no sound from within .If you dont open the door well blast it open !Harry said pulling out his wand .Harry !said Hermione sounding shocked .You cant possibly Yeah I can !said Harry .Stand back But before he could say anything else the door flew open again as Harry had known it would and there stood Hagrid glowering down at him and looking despite the flowery apron positively alarming .Im a teacher !he roared at Harry .A teacher Potter !How dare yeh threaten ter break down my door ! ‘Tm sorry sir said Harry emphasizing the last word as he stowed his wand inside his robes .Hagrid looked stunned .Since when have yeh called me ‘sir ?Since when have you called me ‘Potter ?Oh very clever growled Hagrid .Very amusin .Thats me outsmarted innit ?All righ come in then yeh ungrateful little .Mumbling darkly he stood back to let them pass .Hermione scurried in after Harry looking rather frightened .Well ?said Hagrid grumpily as Harry Ron and Hermione sat down around his enormous wooden table Fang laying his head immediately upon Harrys knee and drooling all over his robes .Whats this ?Feelin sorry for me ?Reckon Im lonely or summat ?No said Harry at once .We wanted to see you .Weve missed you !said Hermione tremulously .Missed me have yeh ?snorted Hagrid .Yeah .Righ .He stomped around brewing up tea in his enormous copper kettle muttering all the while .Finally he slammed down three bucketsized mugs of mahoganybrown tea in front of them and a plate of his rock cakes .Harry was hungry enough even for Hagrids cooking and took one at once .Hagrid said Hermione timidly when he joined them at the table and started peeling his potatoes with a brutality that suggested that each tuber had done him a great personal wrong we really wanted to carry on with Care of Magical Creatures you know .Hagrid gave another great snort .Harry rather thought some bogeys landed on the potatoes and was inwardly thankful that they were not staying for dinner .We did !said Hermione .But none of us could fit it into our schedules !Yeah .Righ said Hagrid again .There was a funny squelching sound and they all looked around Hermione let out a tiny shriek and Ron leapt out of his seat and hurried around the table away from the large barrel standing in the corner that they had only just noticed .It was full of what looked like footlong maggots slimy white and writhing .What are they Hagrid ?asked Harry trying to sound interested rather than revolted but putting down his rock cake all the same .Jus giant grubs said Hagrid .And they grow into . ?said Ron looking apprehensive .They won grow inter nuthin said Hagrid .I got em ter feed ter Aragog .And without warning he burst into tears .Hagrid !cried Hermione leaping up hurrying around the table the long way to avoid the barrel of maggots and putting an arm around his shaking shoulders .What is it ?Its .him .gulped Hagrid his beetleblack eyes streaming as he mopped his face with his apron .Its .Aragog .I think hes dyin .He got ill over the summer an hes not gettin better .I don know what Ill do if he .if he .Weve bin tergether so long .Hermione patted Hagrids shoulder looking at a complete loss for anything to say .Harry knew how she felt .He had known Hagrid to present a vicious baby dragon with a teddy bear seen him croon over giant scorpions with suckers and stingers attempt to reason with his brutal giant of a halfbrother but this was perhaps the most incomprehensible of all his monster fancies the gigantic talking spider Aragog who dwelled deep in the Forbidden Forest and which he and Ron had only narrowly escaped four years previously .Is there is there anything we can do ?Hermione asked ignoring Rons frantic grimaces and head shakings .I don think there is Hermione choked Hagrid attempting to stem the flood of his tears .See the rest o the tribe .Aragogs family .theyre gettin a bit funny now hes ill .bit restive .Yeah I think we saw a bit of that side of them said Ron in an undertone . .I don reckon itd be safe fer anyone but me ter go near the colony at the mo Hagrid finished blowing his nose hard on his apron and looking up .But thanks fer offerin Hermione .It means a lot .After that the atmosphere lightened considerably for although neither Harry nor Ron had shown any inclination to go and feed giant grubs to a murderous gargantuan spider Hagrid seemed to take it for granted that they would have liked to have done and became his usual self once more .Ar I always knew yehd find it hard ter squeeze me inter yer timetables he said gruffly pouring them more tea .Even if yeh applied fer TimeTurners We couldnt have done said Hermione .We smashed the entire stock of Ministry TimeTurners when we were there last summer .It was in the Daily Prophet .Ar well then said Hagrid .Theres no way yeh couldve done it .Im sorry Ive bin yeh know Ive jus bin worried abou Aragog .an I did wonder whether if Professor GrubblyPlank had bin teachin yeh At which all three of them stated categorically and untruthfully that Professor GrubblyPlank who had substituted for Hagrid a few times was a dreadful teacher with the result that by the time Hagrid waved them off the premises at dusk he looked quite cheerful .Im starving said Harry once the door had closed behind them and they were hurrying through the dark and deserted grounds he had abandoned the rock cake after an ominous cracking noise from one of his back teeth .And Ive got that detention with Snape tonight I havent got much time for dinner .As they came into the castle they spotted Cormac McLaggen entering the Great Hall .It took him two attempts to get through the doors he ricocheted off the frame on the first attempt .Ron merely guffawed gloatingly and strode off into the Hall after him but Harry caught Hermione s arm and held her back .What ?said Hermione defensively .If you ask me said Harry quietly McLaggen looks like he was Confunded this morning .And he was standing right in front of where you were sitting .Hermione blushed .Oh all right then I did it she whispered .But you should have heard the way he was talking about Ron and Ginny !Anyway hes got a nasty temper you saw how he reacted when he didnt get in you wouldnt have wanted someone like that on the team .No said Harry .No I suppose thats true .But wasnt that dishonest Hermione ?I mean youre a prefect arent you ?Oh be quiet she snapped as he smirked .What are you two doing ?demanded Ron reappearing in the doorway to the Great Hall and looking suspicious .Nothing said Harry and Hermione together and they hurried after Ron .The smell of roast beef made Harrys stomach ache with hunger but they had barely taken three steps toward the Gryffindor table when Professor Slughorn appeared in front of them blocking their path .Harry Harry just the man I was hoping to see !he boomed genially twiddling the ends of his walrus mustache and puffing out his enormous belly .I was hoping to catch you before dinner !What do you say to a spot of supper tonight in my rooms instead ?Were having a little party just a few rising stars Ive got McLaggen coming and Zabini the charming Melinda Bobbin I dont know whether you know her ?Her family owns a large chain of apothecaries and of course I hope very much that Miss Granger will favor me by coming too .Slughorn made Hermione a little bow as he finished speaking .It was as though Ron was not present Slughorn did not so much as look at him .I cant come Professor said Harry at once .Ive got a detention with Professor Snape .Oh dear !said Slughorn his face falling comically .Dear dear I was counting on you Harry !Well now Ill just have to have a word with Severus and explain the situation .Im sure Ill be able to persuade him to postpone your detention .Yes Ill see you both later !He bustled away out of the Hall .Hes got no chance of persuading Snape said Harry the moment Slughorn was out of earshot .This detentions already been postponed once Snape did it for Dumbledore but he wont do it for anyone else .Oh I wish you could come I dont want to go on my own !said Hermione anxiously Harry knew that she was thinking about McLaggen .I doubt youll be alone Ginnyll probably be invited snapped Ron who did not seem to have taken kindly to being ignored by Slughorn .After dinner they made their way back to Gryffindor Tower .The common room was very crowded as most people had finished dinner by now but they managed to find a free table and sat down Ron who had been in a bad mood ever since the encounter with Slughorn folded his arms and frowned at the ceiling .Hermione reached out for a copy of the Evening Prophet which somebody had left abandoned on a chair .Anything new ?said Harry .Not really .Hermione had opened the newspaper and was scanning the inside pages .Oh look your dads in here Ron hes all right !she added quickly for Ron had looked around in alarm .It just says hes been to visit the Malfoys house . ‘This second search of the Death Eaters residence does not seem to have yielded any results .Arthur Weasley of the Office for the Detection and Confiscation of Counterfeit Defensive Spells and Protective Objects said that his team had been acting upon a confidential tipoff Yeah mine !said Harry .I told him at Kings Cross about Malfoy and that thing he was trying to get Borgin to fix !Well if its not at their house he must have brought whatever it is to Hogwarts with him But how can he have done Harry ?said Hermione putting down the newspaper with a surprised look .We were all searched when we arrived werent we ?Were you ?said Harry taken aback .I wasnt !Oh no of course you werent I forgot you were late . .Well Filch ran over all of us with Secrecy Sensors when we got into the entrance hall .Any Dark object would have been found I know for a fact Crabbe had a shrunken head confiscated .So you see Malfoy cant have brought in anything dangerous !Momentarily stymied Harry watched Ginny Weasley playing with Arnold the Pygmy Puff for a while before seeing a way around this objection .Someones sent it to him by owl then he said .His mother or someone .All the owls are being checked too said Hermione .Filch told us so when he was jabbing those Secrecy Sensors everywhere he could reach .Really stumped this time Harry found nothing else to say .There did not seem to be any way Malfoy could have brought a dangerous or Dark object into the school .He looked hopefully at Ron who was sitting with his arms folded staring over at Lavender Brown .Can you think of any way Malfoy ?Oh drop it Harry said Ron .Listen its not my fault Slughorn invited Hermione and me to his stupid party neither of us wanted to go you know !said Harry firing up .Well as Im not invited to any parties said Ron getting to his feet again I think Ill go to bed .He stomped off toward the door to the boys dormitories leaving Harry and Hermione staring after him .Harry ?said the new Chaser Demelza Robins appearing suddenly at his shoulder .Ive got a message for you .From Professor Slughorn ?asked Harry sitting up hopefully .No .from Professor Snape said Demelza .Harrys heart sank .He says youre to come to his office at half past eight tonight to do your detention er no matter how many party invitations youve received .And he wanted you to know youll be sorting out rotten flobberworms from good ones to use in Potions and and he says theres no need to bring protective gloves .Right said Harry grimly .Thanks a lot Demelza .SILVER AND OPALS Where was Dumbledore and what was he doing ?Harry caught sight of the headmaster only twice over the next few weeks .He rarely appeared at meals anymore and Harry was sure Hermione was right in thinking that he was leaving the school for days at a time .Had Dumbledore forgotten the lessons he was supposed to be giving Harry ?Dumbledore had said that the lessons were leading to something to do with the prophecy Harry had felt bolstered comforted and now he felt slightly abandoned .Halfway through October came their first trip of the term to Hogsmeade .Harry had wondered whether these trips would still be allowed given the increasingly tight security measures around the school but was pleased to know that they were going ahead it was always good to get out of the castle grounds for a few hours .Harry woke early on the morning of the trip which was proving stormy and whiled away the time until breakfast by reading his copy of Advanced Potion Making .He did not usually lie in bed reading his textbooks that sort of behavior as Ron rightly said was indecent in anybody except Hermione who was simply weird that way .Harry felt however that the HalfBlood Princes copy of Advanced PotionMaking hardly qualified as a textbook .The more Harry pored over the book the more he realized how much was in there not only the handy hints and shortcuts on potions that were earning him such a glowing reputation with Slughorn but also the imaginative little jinxes and hexes scribbled in the margins which Harry was sure judging by the crossingsout and revisions that the Prince had invented himself .Harry had already attempted a few of the Princes self invented spells .There had been a hex that caused toenails to grow alarmingly fast he had tried this on Crabbe in the corridor with very entertaining results a jinx that glued the tongue to the roof of the mouth which he had twice used to general applause on an unsuspecting Argus Filch and perhaps most useful of all Muffliato a spell that filled the ears of anyone nearby with an unidentifiable buzzing so that lengthy conversations could be held in class without being overheard .The only person who did not find these charms amusing was Hermione who maintained a rigidly disapproving expression throughout and refused to talk at all if Harry had used the Muffliato spell on anyone in the vicinity .Sitting up in bed Harry turned the book sideways so as to examine more closely the scribbled instructions for a spell that seemed to have caused the Prince some trouble .There were many crossingsout and alterations but finally crammed into a corner of the page the scribble Levicorpus nvbl While the wind and sleet pounded relentlessly on the windows and Neville snored loudly Harry stared at the letters in brackets .Nvbl .that had to mean nonverbal .Harry rather doubted he would be able to bring off this particular spell he was still having difficulty with nonverbal spells something Snape had been quick to comment on in every D .A .D .A .class .On the other hand the Prince had proved a much more effective teacher than Snape so far .Pointing his wand at nothing in particular he gave it an upward flick and said Levicorpusl inside his head .aargh !There was a flash of light and the room was full of voices Everyone had woken up as Ron had let out a yell .Harry sent Advanced PotionMaking flying in panic Ron was dangling upside down in midair as though an invisible hook had hoisted him up by the ankle .Sorry !yelled Harry as Dean and Seamus roared with laughter and Neville picked himself up from the floor having fallen out of bed .Hang on Ill let you down He groped for the potion book and riffled through it in a panic trying to find the right page at last he located it and deciphered one cramped word underneath the spell Praying that this was the counterjinx Harry thought Liberacorpus with all his might .There was another flash of light and Ron fell in a heap onto his mattress .Sorry repeated Harry weakly while Dean and Seamus continued to roar with laughter .Tomorrow said Ron in a muffled voice Id rather you set the alarm clock .By the time they had got dressed padding themselves out with several of Mrs Weasleys handknitted sweaters and carrying cloaks scarves and gloves Rons shock had subsided and he had decided that Harrys new spell was highly amusing so amusing in fact that he lost no time in regaling Hermione with the story as they sat down for breakfast . .and then there was another flash of light and I landed on the bed again !Ron grinned helping himself to sausages .Hermione had not cracked a smile during this anecdote and now turned an expression of wintry disapproval upon Harry .Was this spell by any chance another one from that potion book of yours ?she asked .Harry frowned at her .Always jump to the worst conclusion dont you ?Was it ?Well .yeah it was but so what ?So you just decided to try out an unknown handwritten incantation and see what would happen ?Why does it matter if its handwritten ?said Harry preferring not to answer the rest of the question .Because its probably not Ministry of Magic approved said Hermione .And also she added as Harry and Ron rolled their eyes because Im starting to think this Prince character was a bit dodgy .Both Harry and Ron shouted her down at once .It was a laugh !said Ron upending a ketchup bottle over his sausages .Just a laugh Hermione thats all !Dangling people upside down by the ankle ?said Hermione .Who puts their time and energy into making up spells like that ?Fred and George said Ron shrugging its their kind of thing .And er My dad said Harry .He had only just remembered .What ?said Ron and Hermione together .My dad used this spell said Harry .I Lupin told me .This last part was not true in fact Harry had seen his father use the spell on Snape but he had never told Ron and Hermione about that particular excursion into the Pensieve .Now however a wonderful possibility occurred to him .Could the Half Blood Prince possibly be ?Maybe your dad did use it Harry said Hermione but hes not the only one .Weve seen a whole bunch of people use it in case youve forgotten .Dangling people in the air .Making them float along asleep helpless .Harry stared at her .With a sinking feeling he too remembered the behavior of the Death Eaters at the Quidditch World Cup .Ron came to his aid .That was different he said robustly .They were abusing it .Harry and his dad were just having a laugh .You dont like the Prince Hermione he added pointing a sausage at her sternly because hes better than you at Potions Its got nothing to do with that !said Hermione her cheeks reddening .I just think its very irresponsible to start performing spells when you dont even know what theyre for and stop talking about ‘the Prince as if its his title I bet its just a stupid nickname and it doesnt seem as though he was a very nice person to me !I dont see where you get that from said Harry heatedly .If hed been a budding Death Eater he wouldnt have been boasting about being ‘halfblood would he ?Even as he said it Harry remembered that his father had been pureblood but he pushed the thought out of his mind he would worry about that later .The Death Eaters cant all be pureblood there arent enough pureblood wizards left said Hermione stubbornly .I expect most of them are halfbloods pretending to be pure .Its only Muggleborns they hate theyd be quite happy to let you and Ron join up .There is no way theyd let me be a Death Eater !said Ron indignantly a bit of sausage flying off the fork he was now brandishing at Hermione and hitting Ernie Macmillan on the head .My whole family are blood traitors !Thats as bad as Muggleborns to Death Eaters !And theyd love to have me said Harry sarcastically .Wed be best pals if they didnt keep trying to do me in .This made Ron laugh even Hermione gave a grudging smile and a distraction arrived in the shape of Ginny .Hey Harry Im supposed to give you this .It was a scroll of parchment with Harrys name written upon it in familiar thin slanting writing .Thanks Ginny .Its Dumbledores next lesson !Harry told Ron and Hermione pulling open the parchment and quickly reading its contents .Monday evening !He felt suddenly light and happy .Want to join us in Hogsmeade Ginny ?he asked .Im going with Dean might see you there she replied waving at them as she left .Filch was standing at the oak front doors as usual checking off the names of people who had permission to go into Hogsmeade .The process took even longer than normal as Filch was triplechecking everybody with his Secrecy Sensor .What does it matter if were smuggling Dark stuff OUT ?demanded Ron eyeing the long thin Secrecy Sensor with apprehension .Surely you ought to be checking what we bring back IN ?His cheek earned him a few extra jabs with the Sensor and he was still wincing as they stepped out into the wind and sleet .The walk into Hogsmeade was not enjoyable .Harry wrapped his scarf over his lower face the exposed part soon felt both raw and numb .The road to the village was full of students bent double against the bitter wind .More than once Harry wondered whether they might not have had a better time in the warm common room and when they finally reached Hogsmeade and saw that Zonkos Joke Shop had been boarded up Harry took it as confirmation that this trip was not destined to be fun .Ron pointed with a thickly gloved hand toward Honeydukes which was mercifully open and Harry and Hermione staggered in his wake into the crowded shop .Thank God shivered Ron as they were enveloped by warm toffeescented air .Lets stay here all afternoon .Harry mboy !said a booming voice from behind them .Oh no muttered Harry .The three of them turned to see Professor Slughorn who was wearing an enormous furry hat and an overcoat with matching fur collar clutching a large bag of crystalized pineapple and occupying at least a quarter of the shop .Harry thats three of my little suppers youve missed now !said Slughorn poking him genially in the chest .It wont do mboy Im determined to have you !Miss Granger loves them dont you ?Yes said Hermione helplessly theyre really So why dont you come along Harry ?demanded Slughorn .Well Ive had Quidditch practice Professor said Harry who had indeed been scheduling practices every time Slughorn had sent him a little violet ribbonadorned invitation .This strategy meant that Ron was not left out and they usually had a laugh with Ginny imagining Hermione shut up with McLaggen and Zabini .Well I certainly expect you to win your first match after all this hard work !said Slughorn .But a little recreation never hurt anybody .Now how about Monday night you cant possibly want to practice in this weather .I cant Professor Ive got er an appointment with Professor Dumbledore that evening .Unlucky again !cried Slughorn dramatically .Ah well .you cant evade me forever Harry !And with a regal wave he waddled out of the shop taking as little notice of Ron as though he had been a display of Cockroach Clusters .I cant believe youve wriggled out of another one said Hermione shaking her head .Theyre not that bad you know .Theyre even quite fun sometimes . .But then she caught sight of Rons expression .Oh look theyve got deluxe sugar quills those would last hours !Glad that Hermione had changed the subject Harry showed much more interest in the new extralarge sugar quills than he would normally have done but Ron continued to look moody and merely shrugged when Hermione asked him where he wanted to go next .Lets go to the Three Broomsticks said Harry .Itll be warm .They bundled their scarves back over their faces and left the sweetshop .The bitter wind was like knives on their faces after the sugary warmth of Honeydukes .The street was not very busy nobody was lingering to chat just hurrying toward their destinations .The exceptions were two men a little ahead of them standing just outside the Three Broomsticks .One was very tall and thin squinting through his rainwashed glasses Harry recognized the barman who worked in the other Hogsmeade pub the Hogs Head .As Harry Ron and Hermione drew closer the barman drew his cloak more tightly around his neck and walked away leaving the shorter man to fumble with something in his arms .They were barely feet from him when Harry realized who the man was .Mundungus !The squat bandylegged man with long straggly ginger hair jumped and dropped an ancient suitcase which burst open releasing what looked like the entire contents of a junk shop window .Oh ello Arry said Mundungus Fletcher with a most unconvincing stab at airiness .Well dont let me keep ya .And he began scrabbling on the ground to retrieve the contents of his suitcase with every appearance of a man eager to be gone .Are you selling this stuff ?asked Harry watching Mundungus grab an assortment of grubbylooking objects from the ground .Oh well gotta scrape a living said Mundungus .Gimme that !Ron had stooped down and picked up something silver .Hang on Ron said slowly .This looks familiar Thank you !said Mundungus snatching the goblet out of Rons hand and stuffing it back into the case .Well Ill see you all OUCH !Harry had pinned Mundungus against the wall of the pub by the throat .Holding him fast with one hand he pulled out his wand .Harry !squealed Hermione .You took that from Siriuss house said Harry who was almost nose to nose with Mundungus and was breathing in an unpleasant smell of old tobacco and spirits .That had the Black family crest on it .I no what ?spluttered Mundungus who was slowly turning purple .What did you do go back the night he died and strip the place ?snarled Harry .I no Give it to me !Harry you mustnt !shrieked Hermione as Mundungus started to turn blue .There was a bang and Harry felt his hands fly off Mundunguss throat .Gasping and spluttering Mundungus seized his fallen case then CRACK he Disapparated .Harry swore at the top of his voice spinning on the spot to see where Mundungus had gone .COME BACK YOU THIEVING !Theres no point Harry .Tonks had appeared out of nowhere her mousy hair wet with sleet .Mundungus will probably be in London by now .Theres no point yelling .Hes nicked Siriuss stuff !Nicked it !Yes but still said Tonks who seemed perfectly untroubled by this piece of information .You should get out of the cold .She watched them go through the door of the Three Broomsticks .The moment he was inside Harry burst out He was nicking Siriuss stuff .I know Harry but please dont shout people are staring whispered Hermione .Go and sit down Ill get you a drink .Harry was still fuming when Hermione returned to their table a few minutes later holding three bottles of butterbeer .Cant the Order control Mundungus ?Harry demanded of the other two in a furious whisper .Cant they at least stop him stealing everything thats not fixed down when hes at headquarters ?Shh !said Hermione desperately looking around to make sure nobody was listening there were a couple of warlocks sitting close by who were staring at Harry with great interest and Zabini was lolling against a pillar not far away .Harry Id be annoyed too I know its your things hes stealing Harry gagged on his butterbeer he had momentarily forgotten that he owned number twelve Grimmauld Place .Yeah its my stuff !he said .No wonder he wasnt pleased to see me !Well Im going to tell Dumbledore whats going on hes the only one who scares Mundungus .Good idea whispered Hermione clearly pleased that Harry was calming down .Ron what are you staring at ?Nothing said Ron hastily looking away from the bar but Harry knew he was trying to catch the eye of the curvy and attractive barmaid Madam Rosmerta for whom he had long nursed a soft spot .I expect ‘nothings in the back getting more firewhisky said Hermione waspishly .Ron ignored this jibe sipping his drink in what he evidently considered to be a dignified silence .Harry was thinking about Sirius and how he had hated those silver goblets anyway .Hermione drummed her fingers on the table her eyes flickering between Ron and the bar .The moment Harry drained the last drops in his bottle she said Shall we call it a day and go back to school then ?The other two nodded it had not been a fun trip and the weather was getting worse the longer they stayed .Once again they drew their cloaks tightly around them rearranged their scarves pulled on their gloves then followed Katie Bell and a friend out of the pub and back up the High Street .Harrys thoughts strayed to Ginny as they trudged up the road to Hogwarts through the frozen slush .They had not met up with her undoubtedly thought Harry because she and Dean were cozily closeted in Madam Puddifoots Tea Shop that haunt of happy couples .Scowling he bowed his head against the swirling sleet and trudged on .It was a little while before Harry became aware that the voices of Katie Bell and her friend which were being carried back to him on the wind had become shriller and louder .Harry squinted at their indistinct figures .The two girls were having an argument about something Katie was holding in her hand .Its nothing to do with you Leanne !Harry heard Katie say .They rounded a corner in the lane sleet coming thick and fast blurring Harrys glasses .Just as he raised a gloved hand to wipe them Leanne made to grab hold of the package Katie was holding Katie tugged it back and the package fell to the ground .At once Katie rose into the air not as Ron had done suspended comically by the ankle but gracefully her arms outstretched as though she was about to fly .Yet there was something wrong something eerie .Her hair was whipped around her by the fierce wind but her eyes were closed and her face was quite empty of expression .Harry Ron Hermione and Leanne had all halted in their tracks watching .Then six feet above the ground Katie let out a terrible scream .Her eyes flew open but whatever she could see or whatever she was feeling was clearly causing her terrible anguish .She screamed and screamed Leanne started to scream too and seized Katies ankles trying to tug her back to the ground .Harry Ron and Hermione rushed forward to help but even as they grabbed Katies legs she fell on top of them Harry and Ron managed to catch her but she was writhing so much they could hardly hold her .Instead they lowered her to the ground where she thrashed and screamed apparently unable to recognize any of them .Harry looked around the landscape seemed deserted .Stay there !he shouted at the others over the howling wind .Im going for help !He began to sprint toward the school he had never seen anyone behave as Katie had just behaved and could not think what had caused it he hurtled around a bend in the lane and collided with what seemed to be an enormous bear on its hind legs .Hagrid !he panted disentangling himself from the hedgerow into which he had fallen .Harry !said Hagrid who had sleet trapped in his eyebrows and beard and was wearing his great shaggy beaverskin coat .Jus bin visitin Grawp hes cornin on so well yeh wouldn Hagrid someones hurt back there or cursed or something Wha ?said Hagrid bending lower to hear what Harry was saying over the raging wind .Someones been cursed !bellowed Harry .Cursed ?Whos bin cursed not Ron ?Hermione ?No its not them its Katie Bell this way .Together they ran back along the lane .It took them no time to find the little group of people around Katie who was still writhing and screaming on the ground Ron Hermione and Leanne were all trying to quiet her .Get back !shouted Hagrid .Lemme see her !Somethings happened to her !sobbed Leanne .I dont know what Hagrid stared at Katie for a second then without a word bent down scooped her into his arms and ran off toward the castle with her .Within seconds Katies piercing screams had died away and the only sound was the roar of the wind .Hermione hurried over to Katies wailing friend and put an arm around her .Its Leanne isnt it ?The girl nodded .Did it just happen all of a sudden or ?It was when that package tore sobbed Leanne pointing at the now sodden brownpaper package on the ground which had split open to reveal a greenish glitter .Ron bent down his hand outstretched but Harry seized his arm and pulled him back .Dont touch if !He crouched down .An ornate opal necklace was visible poking out of the paper .Ive seen that before said Harry staring at the thing .It was on display in Borgin and Burkes ages ago .The label said it was cursed .Katie must have touched it .He looked up at Leanne who had started to shake uncontrollably .How did Katie get hold of this ?Well thats why we were arguing .She came back from the bathroom in the Three Broomsticks holding it said it was a surprise for somebody at Hogwarts and she had to deliver it .She looked all funny when she said it .Oh no oh no I bet shed been Imperiused and I didnt realize !Leanne shook with renewed sobs .Hermione patted her shoulder gently .She didnt say whod given it to her Leanne ?No .she wouldnt tell me .and I said she was being stupid and not to take it up to school but she just wouldnt listen and .and then I tried to grab it from her .and and Leanne let out a wail of despair .Wed better get up to school said Hermione her arm still around Leanne .Well be able to find out how she is .Come on .Harry hesitated for a moment then pulled his scarf from around his face and ignoring Rons gasp carefully covered the necklace in it and picked it up .Well need to show this to Madam Pomfrey he said .As they followed Hermione and Leanne up the road Harry was thinking furiously .They had just entered the grounds when he spoke unable to keep his thoughts to himself any longer .Malfoy knows about this necklace .It was in a case at Borgin and Burkes four years ago I saw him having a good look at it while I was hiding from him and his dad .This is what he was buying that day when we followed him !He remembered it and he went back for it !I I dunno Harry said Ron hesitantly .Loads of people go to Borgin and Burkes .and didnt that girl say Katie got it in the girls bathroom ?She said she came back from the bathroom with it she didnt necessarily get it in the bathroom itself McGonagall !said Ron warningly .Harry looked up .Sure enough Professor McGonagall was hurrying down the stone steps through swirling sleet to meet them .Hagrid says you four saw what happened to Katie Bell upstairs to my office at once please !Whats that youre holding Potter ?Its the thing she touched said Harry .Good lord said Professor McGonagall looking alarmed as she took the necklace from Harry .No no Filch theyre with me !she added hastily as Filch came shuffling eagerly across the entrance hall holding his Secrecy Sensor aloft .Take this necklace to Professor Snape at once but be sure not to touch it keep it wrapped in the scarf !Harry and the others followed Professor McGonagall upstairs and into her office .The sleetspattered windows were rattling in their frames and the room was chilly despite the fire crackling in the grate .Professor McGonagall closed the door and swept around her desk to face Harry Ron Hermione and the still sobbing Leanne .Well ?she said sharply .What happened ?Haltingly and with many pauses while she attempted to control her crying Leanne told Professor McGonagall how Katie had gone to the bathroom in the Three Broomsticks and returned holding the unmarked package how Katie had seemed a little odd and how they had argued about the advisability of agreeing to deliver unknown objects the argument culminating in the tussle over the parcel which tore open .At this point Leanne was so overcome there was no getting another word out of her .All right said Professor McGonagall not unkindly go up to the hospital wing please Leanne and get Madam Pomfrey to give you something for shock .When she had left the room Professor McGonagall turned back to Harry Ron and Hermione .What happened when Katie touched the necklace ?She rose up in the air said Harry before either Ron or Hermione could speak and then began to scream and collapsed .Professor can I see Professor Dumbledore please ?The headmaster is away until Monday Potter said Professor McGonagall looking surprised .Away ?Harry repeated angrily .Yes Potter away !said Professor McGonagall tartly .But anything you have to say about this horrible business can be said to me Im sure !For a split second Harry hesitated .Professor McGonagall did not invite confidences Dumbledore though in many ways more intimidating still seemed less likely to scorn a theory however wild .This was a lifeanddeath matter though and no moment to worry about being laughed at .I think Draco Malfoy gave Katie that necklace Professor .On one side of him Ron rubbed his nose in apparent embarrassment on the other Hermione shuffled her feet as though quite keen to put a bit of distance between herself and Harry .That is a very serious accusation Potter said Professor McGonagall after a shocked pause .Do you have any proof ?No said Harry but .and he told her about following Malfoy to Borgin and Burkes and the conversation they had overheard between him and Mr Borgin .When he had finished speaking Professor McGonagall looked slightly confused .Malfoy took something to Borgin and Burkes for repair ?No Professor he just wanted Borgin to tell him how to mend something he didnt have it with him .But thats not the point the thing is that he bought something at the same time and I think it was that necklace You saw Malfoy leaving the shop with a similar package ?No Professor he told Borgin to keep it in the shop for him But Harry Hermione interrupted Borgin asked him if he wanted to take it with him and Malfoy said no Because he didnt want to touch it obviously !said Harry angrily .What he actually said was ‘How would I look carrying that down the street ?said Hermione .Well he would look a bit of a prat carrying a necklace interjected Ron .Oh Ron said Hermione despairingly it would be all wrapped up so he wouldnt have to touch it and quite easy to hide inside a cloak so nobody would see it !I think whatever he reserved at Borgin and Burkes was noisy or bulky something he knew would draw attention to him if he carried it down the street and in any case she pressed on loudly before Harry could interrupt I asked Borgin about the necklace dont you remember ?When I went in to try and find out what Malfoy had asked him to keep I saw it there .And Borgin just told me the price he didnt say it was already sold or anything Well you were being really obvious he realized what you were up to within about five seconds of course he wasnt going to tell you anyway Malfoy couldve sent off for it since Thats enough !said Professor McGonagall as Hermione opened her mouth to retort looking furious .Potter I appreciate you telling me this but we cannot point the finger of blame at Mr Malfoy purely because he visited the shop where this necklace might have been purchased .The same is probably true of hundreds of people thats what I said muttered Ron .and in any case we have put stringent security measures in place this year .I do not believe that necklace can possibly have entered this school without our knowledge But and what is more said Professor McGonagall with an air of awful finality Mr Malfoy was not in Hogsmeade today .Harry gaped at her deflating .How do you know Professor ?Because he was doing detention with me .He has now failed to complete his Transfiguration homework twice in a row .So thank you for telling me your suspicions Potter she said as she marched past them but I need to go up to the hospital wing now to check on Katie Bell .Good day to you all .She held open her office door .They had no choice but to file past her without another word .Harry was angry with the other two for siding with McGonagall nevertheless he felt compelled to join in once they started discussing what had happened .So who do you reckon Katie was supposed to give the necklace to ?asked Ron as they climbed the stairs to the common room .Goodness only knows said Hermione .But whoever it was has had a narrow escape .No one could have opened that package without touching the necklace .It couldve been meant for loads of people said Harry .Dumbledore the Death Eaters would love to get rid of him he must be one of their top targets .Or Slughorn Dumbledore reckons Voldemort really wanted him and they cant be pleased that hes sided with Dumbledore .Or Or you said Hermione looking troubled .Couldnt have been said Harry or Katie wouldve just turned around in the lane and given it to me wouldnt she ?I was behind her all the way out of the Three Broomsticks .It would have made much more sense to deliver the parcel outside Hogwarts what with Filch searching everyone who goes in and out .I wonder why Malfoy told her to take it into the castle ?Harry Malfoy wasnt in Hogsmeade !said Hermione actually stamping her foot in frustration .He must have used an accomplice then said Harry .Crabbe or Goyle or come to think of it another Death Eater hell have loads better cronies than Crabbe and Goyle now hes joined up Ron and Hermione exchanged looks that plainly said Theres no point arguing with him .Dilligrout said Hermione firmly as they reached the Fat Lady .The portrait swung open to admit them to the common room .It was quite full and smelled of damp clothing many people seemed to have returned from Hogsmeade early because of the bad weather .There was no buzz of fear or speculation however Clearly the news of Katies fate had not yet spread .It wasnt a very slick attack really when you stop and think about it said Ron casually turfing a first year out of one of the good armchairs by the fire so that he could sit down .The curse didnt even make it into the castle .Not what youd call foolproof .Youre right said Hermione prodding Ron out of the chair with her foot and offering it to the first year again .It wasnt very well thoughtout at all .But since when has Malfoy been one of the worlds great thinkers ?asked Harry .Neither Ron nor Hermione answered him .THE SECRET RIDDLE Katie was removed to St .Mungos Hospital for Magical Maladies and Injuries the following day by which time the news that she had been cursed had spread all over the school though the details were confused and nobody other than Harry Ron Hermione and Leanne seemed to know that Katie herself had not been the intended target .Oh and Malfoy knows of course said Harry to Ron and Hermione who continued their new policy of feigning deafness whenever Harry mentioned his MalfoyIsaDeathEater theory .Harry had wondered whether Dumbledore would return from wherever he had been in time for Monday nights lesson but having had no word to the contrary he presented himself outside Dumbledore s office at eight oclock knocked and was told to enter .There sat Dumbledore looking unusually tired his hand was as black and burned as ever but he smiled when he gestured to Harry to sit down .The Pensieve was sitting on the desk again casting silvery specks of light over the ceiling .You have had a busy time while I have been away Dumbledore said .I believe you witnessed Katies accident .Yes sir .How is she ?Still very unwell although she was relatively lucky .She appears to have brushed the necklace with the smallest possible amount of skin There was a tiny hole in her glove .Had she put it on had she even held it in her ungloved hand she would have died perhaps instantly .Luckily Professor Snape was able to do enough to prevent a rapid spread of the curse Why him ?asked Harry quickly .Why not Madam Pomfrey ?Impertinent said a soft voice from one of the portraits on the wall and Phineas Nigellus Black Siriuss greatgreatgrandfather raised his head from his arms where he had appeared to be sleeping .I would not have permitted a student to question the way Hogwarts operated in my day .Yes thank you Phineas said Dumbledore quellingly .Professor Snape knows much more about the Dark Arts than Madam Pomfrey Harry .Anyway the St .Mungos staff are sending me hourly reports and I am hopeful that Katie will make a full recovery in time .Where were you this weekend sir ?Harry asked disregarding a strong feeling that he might be pushing his luck a feeling apparently shared by Phineas Nigellus who hissed softly .I would rather not say just now said Dumbledore .However I shall tell you in due course .You will ?said Harry startled .Yes I expect so said Dumbledore withdrawing a fresh bottle of silver memories from inside his robes and uncorking it with a prod of his wand .Sir said Harry tentatively I met Mundungus in Hogsmeade .Ah yes I am already aware that Mundungus has been treating your inheritance with lightfingered contempt said Dumbledore frowning a little .He has gone to ground since you accosted him outside the Three Broomsticks I rather think he dreads facing me .However rest assured that he will not be making away with any more of Siriuss old possessions .That mangy old halfblood has been stealing Black heirlooms ?said Phineas Nigellus incensed and he stalked out of his frame undoubtedly to visit his portrait in number twelve Grimmauld Place .Professor said Harry after a short pause did Professor McGonagall tell you what I told her after Katie got hurt ?About Draco Malfoy ?She told me of your suspicions yes said Dumbledore .And do you ?I shall take all appropriate measures to investigate anyone who might have had a hand in Katies accident said Dumbledore .But what concerns me now Harry is our lesson .Harry felt slightly resentful at this If their lessons were so very important why had there been such a long gap between the first and second ?However he said no more about Draco Malfoy but watched as Dumbledore poured the fresh memories into the Pensieve and began swirling the stone basin once more between his longfingered hands .You will remember I am sure that we left the tale of Lord Voldemorts beginnings at the point where the handsome Muggle Tom Riddle had abandoned his witch wife Merope and returned to his family home in Little Hangleton .Merope was left alone in London expecting the baby who would one day become Lord Voldemort .How do you know she was in London sir ?Because of the evidence of one Caractacus Burke said Dumbledore who by an odd coincidence helped found the very shop whence came the necklace we have just been discussing .He swilled the contents of the Pensieve as Harry had seen him swill them before much as a gold prospector sifts for gold .Up out of the swirling silvery mass rose a little old man revolving slowly in the Pensieve silver as a ghost but much more solid with a thatch of hair that completely covered his eyes .Yes we acquired it in curious circumstances .It was brought in by a young witch just before Christmas oh many years ago now .She said she needed the gold badly well that much was obvious .Covered in rags and pretty far along .Going to have a baby see .She said the locket had been Slytherins .Well we hear that sort of story all the time ‘Oh this was Merlins this was his favorite teapot but when I looked at it it had his mark all right and a few simple spells were enough to tell me the truth .Of course that made it near enough priceless .She didnt seem to have any idea how much it was worth .Happy to get ten Galleons for it .Best bargain we ever made !Dumbledore gave the Pensieve an extravigorous shake and Caractacus Burke descended back into the swirling mass of memory from whence he had come .He only gave her ten Galleons ?said Harry indignantly .Caractacus Burke was not famed for his generosity said Dumbledore .So we know that near the end of her pregnancy Merope was alone in London and in desperate need of gold desperate enough to sell her one and only valuable possession the locket that was one of Marvolos treasured family heirlooms .But she could do magic !said Harry impatiently .She could have got food and everything for herself by magic couldnt she ?Ah said Dumbledore perhaps she could .But it is my belief I am guessing again but I am sure I am right that when her husband abandoned her Merope stopped using magic .I do not think that she wanted to be a witch any longer .Of course it is also possible that her unrequited love and the attendant despair sapped her of her powers that can happen .In any case as you are about to see Merope refused to raise her wand even to save her own life .She wouldnt even stay alive for her son ?Dumbledore raised his eyebrows .Could you possibly be feeling sorry for Lord Voldemort ?No said Harry quickly but she had a choice didnt she not like my mother Your mother had a choice too said Dumbledore gently .Yes Merope Riddle chose death in spite of a son who needed her but do not judge her too harshly Harry .She was greatly weakened by long suffering and she never had your mothers courage .And now if you will stand .Where are we going ?Harry asked as Dumbledore joined him at the front of the desk .This time said Dumbledore we are going to enter my memory .I think you will find it both rich in detail and satisfyingly accurate .After you Harry .Harry bent over the Pensieve his face broke the cool surface of the memory and then he was falling through darkness again .Seconds later his feet hit firm ground he opened his eyes and found that he and Dumbledore were standing in a bustling old fashioned London street .There I am said Dumbledore brightly pointing ahead of them to a tall figure crossing the road in front of a horsedrawn milk cart .This younger Albus Dumbledore s long hair and beard were auburn .Having reached their side of the street he strode off along the pavement drawing many curious glances due to the flamboyantly cut suit of plum velvet that he was wearing .Nice suit sir said Harry before he could stop himself but Dumbledore merely chuckled as they followed his younger self a short distance finally passing through a set of iron gates into a bare courtyard that fronted a rather grim square building surrounded by high railings .He mounted the few steps leading to the front door and knocked once .After a moment or two the door was opened by a scruffy girl wearing an apron .Good afternoon .I have an appointment with a Mrs Cole who I believe is the matron here ?Oh said the bewilderedlooking girl taking in Dumbledore s eccentric appearance .Um .just a mo .MRS COLE !she bellowed over her shoulder .Harry heard a distant voice shouting something in response .The girl turned back to Dumbledore .Come in shes on er way .Dumbledore stepped into a hallway tiled in black and white the whole place was shabby but spotlessly clean .Harry and the older Dumbledore followed .Before the front door had closed behind them a skinny harassedlooking woman came scurrying toward them .She had a sharpfeatured face that appeared more anxious than unkind and she was talking over her shoulder to another aproned helper as she walked toward Dumbledore . .and take the iodine upstairs to Martha Billy Stubbs has been picking his scabs and Eric Whalleys oozing all over his sheets chicken pox on top of everything else she said to nobody in particular and then her eyes fell upon Dumbledore and she stopped dead in her tracks looking as astonished as if a giraffe had just crossed her threshold .Good afternoon said Dumbledore holding out his hand .Mrs Cole simply gaped .My name is Albus Dumbledore .I sent you a letter requesting an appointment and you very kindly invited me here today .Mrs Cole blinked .Apparently deciding that Dumbledore was not a hallucination she said feebly Oh yes .Well well then youd better come into my room .Yes .She led Dumbledore into a small room that seemed part sitting room part office .It was as shabby as the hallway and the furniture was old and mismatched .She invited Dumbledore to sit on a rickety chair and seated herself behind a cluttered desk eyeing him nervously .I am here as I told you in my letter to discuss Tom Riddle and arrangements for his future said Dumbledore .Are you family ?asked Mrs Cole .No I am a teacher said Dumbledore .I have come to offer Tom a place at my school .What schools this then ?It is called Hogwarts said Dumbledore .And how come youre interested in Tom ?We believe he has qualities we are looking for .You mean hes won a scholarship ?How can he have done ?Hes never been entered for one .Well his name has been down for our school since birth Who registered him ?His parents ?There was no doubt that Mrs Cole was an inconveniently sharp woman .Apparently Dumbledore thought so too for Harry now saw him slip his wand out of the pocket of his velvet suit at the same time picking up a piece of perfectly blank paper from Mrs Coles desktop .Here said Dumbledore waving his wand once as he passed her the piece of paper I think this will make everything clear .Mrs Coles eyes slid out of focus and back again as she gazed intently at the blank paper for a moment .That seems perfectly in order she said placidly handing it back .Then her eyes fell upon a bottle of gin and two glasses that had certainly not been present a few seconds before .Er may I offer you a glass of gin ?she said in an extrarefined voice .Thank you very much said Dumbledore beaming .It soon became clear that Mrs Cole was no novice when it came to gin drinking .Pouring both of them a generous measure she drained her own glass in one gulp .Smacking her lips frankly she smiled at Dumbledore for the first time and he didnt hesitate to press his advantage .I was wondering whether you could tell me anything of Tom Riddles history ?I think he was born here in the orphanage ?Thats right said Mrs Cole helping herself to more gin .I remember it clear as anything because Id just started here myself .New Years Eve and bitter cold snowing you know .Nasty night .And this girl not much older than I was myself at the time came staggering up the front steps .Well she wasnt the first .We took her in and she had the baby within the hour .And she was dead in another hour .Mrs Cole nodded impressively and took another generous gulp of gin .Did she say anything before she died ?asked Dumbledore .Anything about the boys father for instance ?Now as it happens she did said Mrs Cole who seemed to be rather enjoying herself now with the gin in her hand and an eager audience for her story .I remember she said to me ‘I hope he looks like his papa and I wont lie she was right to hope it because she was no beauty and then she told me he was to be named Tom for his father and Marvolo for her father yes I know funny name isnt it ?We wondered whether she came from a circus and she said the boys surname was to be Riddle .And she died soon after that without another word .Well we named him just as shed said it seemed so important to the poor girl but no Tom nor Marvolo nor any kind of Riddle ever came looking for him nor any family at all so he stayed in the orphanage and hes been here ever since .Mrs Cole helped herself almost absentmindedly to another healthy measure of gin .Two pink spots had appeared high on her cheekbones .Then she said Hes a funny boy .Yes said Dumbledore .I thought he might be .He was a funny baby too .He hardly ever cried you know .And then when he got a little older he was .odd .Odd in what way ?asked Dumbledore gently .Well he But Mrs Cole pulled up short and there was nothing blurry or vague about the inquisitorial glance she shot Dumbledore over her gin glass .Hes definitely got a place at your school you say ?Definitely said Dumbledore .And nothing I say can change that ?Nothing said Dumbledore .Youll be taking him away whatever ?Whatever repeated Dumbledore gravely .She squinted at him as though deciding whether or not to trust him .Apparently she decided she could because she said in a sudden rush He scares the other children .You mean he is a bully ?asked Dumbledore .I think he must be said Mrs Cole frowning slightly but its very hard to catch him at it .There have been incidents .Nasty things .Dumbledore did not press her though Harry could tell that he was interested .She took yet another gulp of gin and her rosy cheeks grew rosier still .Billy Stubbss rabbit .well Tom said he didnt do it and I dont see how he could have done but even so it didnt hang itself from the rafters did it ?I shouldnt think so no said Dumbledore quietly .But Im jiggered if I know how he got up there to do it .All I know is he and Billy had argued the day before .And then Mrs Cole took another swig of gin slopping a little over her chin this time on the summer outing we take them out you know once a year to the countryside or to the seaside well Amy Benson and Dennis Bishop were never quite right afterwards and all we ever got out of them was that theyd gone into a cave with Tom Riddle .He swore theyd just gone exploring but something happened in there Im sure of it .And well there have been a lot of things funny things .She looked around at Dumbledore again and though her cheeks were flushed her gaze was steady .I dont think many people will be sorry to see the back of him .You understand Im sure that we will not be keeping him permanently ?said Dumbledore .He will have to return here at the very least every summer .Oh well thats better than a whack on the nose with a rusty poker said Mrs Cole with a slight hiccup .She got to her feet and Harry was impressed to see that she was quite steady even though twothirds of the gin was now gone .I suppose youd like to see him ?Very much said Dumbledore rising too .She led him out of her office and up the stone stairs calling out instructions and admonitions to helpers and children as she passed .The orphans Harry saw were all wearing the same kind of grayish tunic .They looked reasonably wellcared for but there was no denying that this was a grim place in which to grow up .Here we are said Mrs Cole as they turned off the second landing and stopped outside the first door in a long corridor .She knocked twice and entered .Tom ?Youve got a visitor .This is Mr Dumberton sorry Dunderbore .Hes come to tell you well Ill let him do it .Harry and the two Dumbledores entered the room and Mrs Cole closed the door on them .It was a small bare room with nothing in it except an old wardrobe a wooden chair and an iron bedstead .A boy was sitting on top of the gray blankets his legs stretched out in front of him holding a book .There was no trace of the Gaunts in Tom Riddles face .Merope had got her dying wish He was his handsome father in miniature tall for eleven years old darkhaired and pale .His eyes narrowed slightly as he took in Dumbledores eccentric appearance .There was a moments silence .How do you do Tom ?said Dumbledore walking forward and holding out his hand .The boy hesitated then took it and they shook hands .Dumbledore drew up the hard wooden chair beside Riddle so that the pair of them looked rather like a hospital patient and visitor .I am Professor Dumbledore . ‘Professor ?repeated Riddle .He looked wary .Is that like ‘doctor ?What are you here for ?Did she get you in to have a look at me ?He was pointing at the door through which Mrs Cole had just left .No no said Dumbledore smiling .I dont believe you said Riddle .She wants me looked at doesnt she ?Tell the truth !He spoke the last three words with a ringing force that was almost shocking .It was a command and it sounded as though he had given it many times before .His eyes had widened and he was glaring at Dumbledore who made no response except to continue smiling pleasantly .After a few seconds Riddle stopped glaring though he looked if anything warier still .Who are you ?I have told you .My name is Professor Dumbledore and I work at a school called Hogwarts .I have come to offer you a place at my school your new school if you would like to come .Riddles reaction to this was most surprising .He leapt from the bed and backed away from Dumbledore looking furious .You cant kid me !The asylum thats where youre from isnt it ? ‘Professor yes of course well Im not going see ?That old cats the one who should be in the asylum .I never did anything to little Amy Benson or Dennis Bishop and you can ask them theyll tell you !I am not from the asylum said Dumbledore patiently .I am a teacher and if you will sit down calmly I shall tell you about Hogwarts .Of course if you would rather not come to the school nobody will force you Id like to see them try sneered Riddle .Hogwarts Dumbledore went on as though he had not heard Riddles last words is a school for people with special abilities Im not mad !I know that you are not mad .Hogwarts is not a school for mad people .It is a school of magic .There was silence .Riddle had frozen his face expressionless but his eyes were flickering back and forth between each of Dumbledores as though trying to catch one of them lying .Magic ?he repeated in a whisper .Thats right said Dumbledore .Its .its magic what I can do ?What is it that you can do ?All sorts breathed Riddle .A flush of excitement was rising up his neck into his hollow cheeks he looked fevered .I can make things move without touching them .I can make animals do what I want them to do without training them .I can make bad things happen to people who annoy me .I can make them hurt if I want to .His legs were trembling .He stumbled forward and sat down on the bed again staring at his hands his head bowed as though in prayer .I knew I was different he whispered to his own quivering fingers .I knew I was special .Always I knew there was something .Well you were quite right said Dumbledore who was no longer smiling but watching Riddle intently .You are a wizard .Riddle lifted his head .His face was transfigured There was a wild happiness upon it yet for some reason it did not make him better looking on the contrary his finely carved features seemed somehow rougher his expression almost bestial .Are you a wizard too ?Yes I am .Prove it said Riddle at once in the same commanding tone he had used when he had said Tell the truth .Dumbledore raised his eyebrows .If as I take it you are accepting your place at Hogwarts Of course I am !Then you will address me as ‘Professor or ‘sir .Riddles expression hardened for the most fleeting moment before he said in an unrecognizably polite voice Im sorry sir .I meant please Professor could you show me ?Harry was sure that Dumbledore was going to refuse that he would tell Riddle there would be plenty of time for practical demonstrations at Hogwarts that they were currently in a building full of Muggles and must therefore be cautious .To his great surprise however Dumbledore drew his wand from an inside pocket of his suit jacket pointed it at the shabby wardrobe in the corner and gave the wand a casual flick .The wardrobe burst into flames .Riddle jumped to his feet Harry could hardly blame him for howling in shock and rage all his worldly possessions must be in there .But even as Riddle rounded on Dumbledore the flames vanished leaving the wardrobe completely undamaged .Riddle stared from the wardrobe to Dumbledore then his expression greedy he pointed at the wand .Where can I get one of them ?All in good time said Dumbledore .I think there is something trying to get out of your wardrobe .And sure enough a faint rattling could be heard from inside it .For the first time Riddle looked frightened .Open the door said Dumbledore .Riddle hesitated then crossed the room and threw open the wardrobe door .On the topmost shelf above a rail of threadbare clothes a small cardboard box was shaking and rattling as though there were several frantic mice trapped inside it .Take it out said Dumbledore .Riddle took down the quaking box .He looked unnerved .Is there anything in that box that you ought not to have ?asked Dumbledore .Riddle threw Dumbledore a long clear calculating look .Yes I suppose so sir he said finally in an expressionless voice .Open it said Dumbledore .Riddle took off the lid and tipped the contents onto his bed without looking at them .Harry who had expected something much more exciting saw a mess of small everyday objects a yoyo a silver thimble and a tarnished mouth organ among them .Once free of the box they stopped quivering and lay quite still upon the thin blankets .You will return them to their owners with your apologies said Dumbledore calmly putting his wand back into his jacket .I shall know whether it has been done .And be warned Thieving is not tolerated at Hogwarts .Riddle did not look remotely abashed he was still staring coldly and appraisingly at Dumbledore .At last he said in a colorless voice Yes sir .At Hogwarts Dumbledore went on we teach you not only to use magic but to control it .You have inadvertently I am sure been using your powers in a way that is neither taught nor tolerated at our school .You are not the first nor will you be the last to allow your magic to run away with you .But you should know that Hogwarts can expel students and the Ministry of Magic yes there is a Ministry will punish lawbreakers still more severely .All new wizards must accept that in entering our world they abide by our laws .Yes sir said Riddle again .It was impossible to tell what he was thinking his face remained quite blank as he put the little cache of stolen objects back into the cardboard box .When he had finished he turned to Dumbledore and said baldly I havent got any money .That is easily remedied said Dumbledore drawing a leather moneypouch from his pocket .There is a fund at Hogwarts for those who require assistance to buy books and robes .You might have to buy some of your spellbooks and so on secondhand but Where do you buy spellbooks ?interrupted Riddle who had taken the heavy money bag without thanking Dumbledore and was now examining a fat gold Galleon .In Diagon Alley said Dumbledore .I have your list of books and school equipment with me .I can help you find everything Youre coming with me ?asked Riddle looking up .Certainly if you I dont need you said Riddle .Im used to doing things for myself I go round London on my own all the time .How do you get to this Diagon Alley sir ?he added catching Dumbledore s eye .Harry thought that Dumbledore would insist upon accompanying Riddle but once again he was surprised .Dumbledore handed Riddle the envelope containing his list of equipment and after telling Riddle exactly how to get to the Leaky Cauldron from the orphanage he said You will be able to see it although Muggles around you nonmagical people that is will not .Ask for Tom the barman easy enough to remember as he shares your name Riddle gave an irritable twitch as though trying to displace an irksome fly .You dislike the name Tom ?There are a lot of Toms muttered Riddle .Then as though he could not suppress the question as though it burst from him in spite of himself he asked Was my father a wizard ?He was called Tom Riddle too theyve told me .Im afraid I dont know said Dumbledore his voice gentle .My mother cant have been magic or she wouldnt have died said Riddle more to himself than Dumbledore .It mustve been him .So when Ive got all my stuff when do I come to this Hogwarts ?All the details are on the second piece of parchment in your envelope said Dumbledore .You will leave from Kings Cross Station on the first of September .There is a train ticket in there too .Riddle nodded .Dumbledore got to his feet and held out his hand again .Taking it Riddle said I can speak to snakes .I found out when weve been to the country on trips they find me they whisper to me .Is that normal for a wizard ?Harry could tell that he had withheld mention of this strangest power until that moment determined to impress .It is unusual said Dumbledore after a moments hesitation but not unheard of .His tone was casual but his eyes moved curiously over Riddles face .They stood for a moment man and boy staring at each other .Then the handshake was broken Dumbledore was at the door .Goodbye Tom .I shall see you at Hogwarts .I think that will do said the whitehaired Dumbledore at Harrys side and seconds later they were soaring weightlessly through darkness once more before landing squarely in the presentday office .Sit down said Dumbledore landing beside Harry .Harry obeyed his mind still full of what he had just seen .He believed it much quicker than I did I mean when you told him he was a wizard said Harry .I didnt believe Hagrid at first when he told me .Yes Riddle was perfectly ready to believe that he was to use his word ‘special said Dumbledore .Did you know then ?asked Harry .Did I know that I had just met the most dangerous Dark wizard of all time ?said Dumbledore .No I had no idea that he was to grow up to be what he is .However I was certainly intrigued by him .I returned to Hogwarts intending to keep an eye upon him something I should have done in any case given that he was alone and friendless but which already I felt I ought to do for others sake as much as his .His powers as you heard were surprisingly well developed for such a young wizard and most interestingly and ominously of all he had already discovered that he had some measure of control over them and begun to use them consciously .And as you saw they were not the random experiments typical of young wizards He was already using magic against other people to frighten to punish to control .The little stories of the strangled rabbit and the young boy and girl he lured into a cave were most suggestive . ‘I can make them hurt if I want to .And he was a Parselmouth interjected Harry .Yes indeed a rare ability and one supposedly connected with the Dark Arts although as we know there are Parselmouths among the great and the good too .In fact his ability to speak to serpents did not make me nearly as uneasy as his obvious instincts for cruelty secrecy and domination .Time is making fools of us again said Dumbledore indicating the dark sky beyond the windows .But before we part I want to draw your attention to certain features of the scene we have just witnessed for they have a great bearing on the matters we shall be discussing in future meetings .Firstly I hope you noticed Riddles reaction when I mentioned that another shared his first name Tom ?Harry nodded .There he showed his contempt for anything that tied him to other people anything that made him ordinary .Even then he wished to be different separate notorious .He shed his name as you know within a few short years of that conversation and created the mask of ‘Lord Voldemort behind which he has been hidden for so long .I trust that you also noticed that Tom Riddle was already highly selfsufficient secretive and apparently friendless ?He did not want help or companionship on his trip to Diagon Alley .He preferred to operate alone .The adult Voldemort is the same .You will hear many of his Death Eaters claiming that they are in his confidence that they alone are close to him even understand him .They are deluded .Lord Voldemort has never had a friend nor do I believe that he has ever wanted one .And lastly I hope you are not too sleepy to pay attention to this Harry the young Tom Riddle liked to collect trophies .You saw the box of stolen articles he had hidden in his room .These were taken from victims of his bullying behavior souvenirs if you will of particularly unpleasant bits of magic .Bear in mind this magpielike tendency for this particularly will be important later .And now it really is time for bed .Harry got to his feet .As he walked across the room his eyes fell upon the little table on which Marvolo Gaunts ring had rested last time but the ring was no longer there .Yes Harry ?said Dumbledore for Harry had come to a halt .The rings gone said Harry looking around .But I thought you might have the mouth organ or something .Dumbledore beamed at him peering over the top of his halfmoon spectacles .Very astute Harry but the mouth organ was only ever a mouth organ .And on that enigmatic note he waved to Harry who understood himself to be dismissed .FELIX FELICIS Harry had Herbology first thing the following morning .He had been unable to tell Ron and Hermione about his lesson with Dumbledore over breakfast for fear of being overheard but he filled them in as they walked across the vegetable patch toward the greenhouses .The weekends brutal wind had died out at last the weird mist had returned and it took them a little longer than usual to find the correct greenhouse .Wow scary thought the boy YouKnowWho said Ron quietly as they took their places around one of the gnarled Snargaluff stumps that formed this terms project and began pulling on their protective gloves .But I still dont get why Dumbledores showing you all this .I mean its really interesting and everything but whats the point ?Dunno said Harry inserting a gum shield .But he says its all important and itll help me survive .I think its fascinating said Hermione earnestly .It makes absolute sense to know as much about Voldemort as possible .How else will you find out his weaknesses ?So how was Slughorns latest party ?Harry asked her thickly through the gum shield .Oh it was quite fun really said Hermione now putting on protective goggles .I mean he drones on about famous expupils a bit and he absolutely fawns on McLaggen because hes so wellconnected but he gave us some really nice food and he introduced us to Gwenog Jones .Gwenog Jones ?said Ron his eyes widening under his own goggles .The Gwenog Jones ?Captain of the Holyhead Harpies ?Thats right said Hermione .Personally I thought she was a bit full of herself but Quite enough chat over here !said Professor Sprout briskly bustling over and looking stern .Youre lagging behind everybody else has started and Nevilles already got his first pod !They looked around sure enough there sat Neville with a bloody lip and several nasty scratches along the side of his face but clutching an unpleasantly pulsating green object about the size of a grapefruit .Okay Professor were starting now !said Ron adding quietly when she had turned away again shouldve used Muffliato Harry .No we shouldnt !said Hermione at once looking as she always did intensely cross at the thought of the HalfBlood Prince and his spells .Well come on .wed better get going .She gave the other two an apprehensive look they all took deep breaths and then dived at the gnarled stump between them .It sprang to life at once long prickly bramblelike vines flew out of the top and whipped through the air .One tangled itself in Hermiones hair and Ron beat it back with a pair of secateurs Harry succeeded in trapping a couple of vines and knotting them together a hole opened in the middle of all the tentaclelike branches Hermione plunged her arm bravely into this hole which closed like a trap around her elbow Harry and Ron tugged and wrenched at the vines forcing the hole to open again and Hermione snatched her arm free clutching in her fingers a pod just like Nevilles .At once the prickly vines shot back inside and the gnarled stump sat there looking like an innocently dead lump of wood .You know I dont think Ill be having any of these in my garden when Ive got my own place said Ron pushing his goggles up onto his forehead and wiping sweat from his face .Pass me a bowl said Hermione holding the pulsating pod at arms length Harry handed one over and she dropped the pod into it with a look of disgust on her face .Dont be squeamish squeeze it out theyre best when theyre fresh !called Professor Sprout .Anyway said Hermione continuing their interrupted conversation as though a lump of wood had not just attacked them Slughorns going to have a Christmas party Harry and theres no way youll be able to wriggle out of this one because he actually asked me to check your free evenings so he could be sure to have it on a night you can come .Harry groaned .Meanwhile Ron who was attempting to burst the pod in the bowl by putting both hands on it standing up and squashing it as hard as he could said angrily And this is another party just for Slughorns favorites is it ?Just for the Slug Club yes said Hermione .The pod flew out from under Rons fingers and hit the greenhouse glass rebounding onto the back of Professor Sprouts head and knocking off her old patched hat .Harry went to retrieve the pod when he got back Hermione was saying Look didnt make up the name ‘Slug Club ‘Slug Club repeated Ron with a sneer worthy of Malfoy .Its pathetic .Well I hope you enjoy your party .Why dont you try hooking up with McLaggen then Slughorn can make you King and Queen Slug Were allowed to bring guests said Hermione who for some reason had turned a bright boiling scarlet and I was going to ask you to come but if you think its that stupid then I wont bother !Harry suddenly wished the pod had flown a little farther so that he need not have been sitting here with the pair of them .Unnoticed by either he seized the bowl that contained the pod and began to try and open it by the noisiest and most energetic means he could think of unfortunately he could still hear every word of their conversation .You were going to ask me ?asked Ron in a completely different voice .Yes said Hermione angrily .But obviously if youd rather I hooked up with McLaggen .There was a pause while Harry continued to pound the resilient pod with a trowel .No I wouldnt said Ron in a very quiet voice .Harry missed the pod hit the bowl and shattered it .Reparo he said hastily poking the pieces with his wand and the bowl sprang back together again .The crash however appeared to have awoken Ron and Hermione to Harrys presence .Hermione looked flustered and immediately started fussing about for her copy of FleshEating Trees of the World to find out the correct way to juice Snargaluff pods Ron on the other hand looked sheepish but also rather pleased with himself .Hand that over Harry said Hermione hurriedly .It says were supposed to puncture them with something sharp .Harry passed her the pod in the bowl he and Ron both snapped their goggles back over their eyes and dived once more for the stump .It was not as though he was really surprised thought Harry as he wrestled with a thorny vine intent upon throttling him he had had an inkling that this might happen sooner or later .But he was not sure how he felt about it .He and Cho were now too embarrassed to look at each other let alone talk to each other what if Ron and Hermione started going out together then split up ?Could their friendship survive it ?Harry remembered the few weeks when they had not been talking to each other in the third year he had not enjoyed trying to bridge the distance between them .And then what if they didnt split up ?What if they became like Bill and Fleur and it became excruciatingly embarrassing to be in their presence so that he was shut out for good ?Gotcha !yelled Ron pulling a second pod from the stump just as Hermione managed to burst the first one open so that the bowl was full of tubers wriggling like pale green worms .The rest of the lesson passed without further mention of Slughorns party .Although Harry watched his two friends more closely over the next few days Ron and Hermione did not seem any different except that they were a little politer to each other than usual .Harry supposed he would just have to wait to see what happened under the influence of butterbeer in Slughorns dimly lit room on the night of the party .In the meantime however he had more pressing worries .Katie Bell was still in St .Mungos Hospital with no prospect of leaving which meant that the promising Gryffindor team Harry had been training so carefully since September was one Chaser short .He kept putting off replacing Katie in the hope that she would return but their opening match against Slytherin was looming and he finally had to accept that she would not be back in time to play .Harry did not think he could stand another full House tryout .With a sinking feeling that had little to do with Quidditch he cornered Dean Thomas after Transfiguration one day .Most of the class had already left although several twittering yellow birds were still zooming around the room all of Hermione s creation nobody else had succeeded in conjuring so much as a feather from thin air .Are you still interested in playing Chaser ?Wha ?Yeah of course !said Dean excitedly .Over Deans shoulder Harry saw Seamus Finnigan slamming his books into his bag looking sour .One of the reasons why Harry would have preferred not to have to ask Dean to play was that he knew Seamus would not like it .On the other hand he had to do what was best for the team and Dean had outflown Seamus at the tryouts .Well then youre in said Harry .Theres a practice tonight seven oclock .Right said Dean .Cheers Harry !Blimey I cant wait to tell Ginny !He sprinted out of the room leaving Harry and Seamus alone together an uncomfortable moment made no easier when a bird dropping landed on Seamuss head as one of Hermiones canaries whizzed over them .Seamus was not the only person disgruntled by the choice of Katies substitute .There was much muttering in the common room about the fact that Harry had now chosen two of his classmates for the team .As Harry had endured much worse mutterings than this in his school career he was not particularly bothered but all the same the pressure was increasing to provide a win in the upcoming match against Slytherin .If Gryffindor won Harry knew that the whole House would forget that they had criticized him and swear that they had always known it was a great team .If they lost .well Harry thought wryly he had still endured worse mutterings .Harry had no reason to regret his choice once he saw Dean fly that evening he worked well with Ginny and Demelza .The Beaters Peakes and Coote were getting better all the time .The only problem was Ron .Harry had known all along that Ron was an inconsistent player who suffered from nerves and a lack of confidence and unfortunately the looming prospect of the opening game of the season seemed to have brought out all his old insecurities .After letting in half a dozen goals most of them scored by Ginny his technique became wilder and wilder until he finally punched an oncoming Demelza Robins in the mouth .It was an accident Im sorry Demelza really sorry !Ron shouted after her as she zigzagged back to the ground dripping blood everywhere .I just Panicked Ginny said angrily landing next to Demelza and examining her fat lip .You prat Ron look at the state of her !I can fix that said Harry landing beside the two girls pointing his wand at Demelzas mouth and saying Episkey .And Ginny dont call Ron a prat youre not the Captain of this team Well you seemed too busy to call him a prat and I thought someone should Harry forced himself not to laugh .In the air everyone lets go .Overall it was one of the worst practices they had had all term though Harry did not feel that honesty was the best policy when they were this close to the match .Good work everyone I think well flatten Slytherin he said bracingly and the Chasers and Beaters left the changing room looking reasonably happy with themselves .I played like a sack of dragon dung said Ron in a hollow voice when the door had swung shut behind Ginny .No you didnt said Harry firmly .Youre the best Keeper I tried out Ron .Your only problem is nerves .He kept up a relentless flow of encouragement all the way back to the castle and by the time they reached the second floor Ron was looking marginally more cheerful .When Harry pushed open the tapestry to take their usual shortcut up to Gryffindor Tower however they found themselves looking at Dean and Ginny who were locked in a close embrace and kissing fiercely as though glued together .It was as though something large and scaly erupted into life in Harrys stomach clawing at his insides Hot blood seemed to flood his brain so that all thought was extinguished replaced by a savage urge to jinx Dean into a jelly .Wrestling with this sudden madness he heard Rons voice as though from a great distance away .Oi !Dean and Ginny broke apart and looked around .What ?said Ginny .I dont want to find my own sister snogging people in public !This was a deserted corridor till you came butting in !said Ginny .Dean was looking embarrassed .He gave Harry a shifty grin that Harry did not return as the newborn monster inside him was roaring for Deans instant dismissal from the team .Er .cmon Ginny said Dean lets go back to the common room .You go !said Ginny .I want a word with my dear brother !Dean left looking as though he was not sorry to depart the scene .Right said Ginny tossing her long red hair out of her face and glaring at Ron lets get this straight once and for all .It is none of your business who I go out with or what I do with them Ron Yeah it is !said Ron just as angrily .Dyou think I want people saying my sisters a A what ?shouted Ginny drawing her wand .A what exactly ?He doesnt mean anything Ginny said Harry automatically though the monster was roaring its approval of Rons words .Oh yes he does !she said flaring up at Harry .Just because hes never snogged anyone in his life just because the best kiss hes ever had is from our Auntie Muriel Shut your mouth !bellowed Ron bypassing red and turning maroon .No I will not !yelled Ginny beside herself .Ive seen you with Phlegm hoping shell kiss you on the cheek every time you see her its pathetic !If you went out and got a bit of snogging done yourself you wouldnt mind so much that everyone else does it !Ron had pulled out his wand too Harry stepped swiftly between them .You dont know what youre talking about !Ron roared trying to get a clear shot at Ginny around Harry who was now standing in front of her with his arms outstretched .Just because I dont do it in public !Ginny screamed with derisive laughter trying to push Harry out of the way .Been kissing Pigwidgeon have you ?Or have you got a picture of Auntie Muriel stashed under your pillow ?You A streak of orange light flew under Harrys left arm and missed Ginny by inches Harry pushed Ron up against the wall .Dont be stupid Harrys snogged Cho Chang !shouted Ginny who sounded close to tears now .And Hermione snogged Viktor Krum its only you who acts like its something disgusting Ron and thats because youve got about as much experience as a twelveyearold !And with that she stormed away .Harry quickly let go of Ron the look on his face was murderous .They both stood there breathing heavily until Mrs Norris Filch s cat appeared around the corner which broke the tension .Cmon said Harry as the sound of Filch s shuffling feet reached their ears .They hurried up the stairs and along a seventhfloor corridor .Oi out of the way !Ron barked at a small girl who jumped in fright and dropped a bottle of toadspawn .Harry hardly noticed the sound of shattering glass he felt disoriented dizzy being struck by a lightning bolt must be something like this .Its just because shes Rons sister he told himself .You just didnt like seeing her kissing Dean because shes Rons sister .But unbidden into his mind came an image of that same deserted corridor with himself kissing Ginny instead .The monster in his chest purred .but then he saw Ron ripping open the tapestry curtain and drawing his wand on Harry shouting things like betrayal of trust .supposed to be my friend .Dyou think Hermione did snog Krum ?Ron asked abruptly as they approached the Fat Lady .Harry gave a guilty start and wrenched his imagination away from a corridor in which no Ron intruded in which he and Ginny were quite alone What ?he said confusedly .Oh .er .The honest answer was yes but he did not want to give it .However Ron seemed to gather the worst from the look on Harrys face .Dilligrout he said darkly to the Fat Lady and they climbed through the portrait hole into the common room .Neither of them mentioned Ginny or Hermione again indeed they barely spoke to each other that evening and got into bed in silence each absorbed in his own thoughts .Harry lay awake for a long time looking up at the canopy of his fourposter and trying to convince himself that his feelings for Ginny were entirely elder brotherly .They had lived had they not like brother and sister all summer playing Quidditch teasing Ron and having a laugh about Bill and Phlegm ?He had known Ginny for years now .It was natural that he should feel protective .natural that he should want to look out for her .want to rip Dean limb from limb for kissing her .No .he would have to control that particular brotherly feeling .Ron gave a great grunting snore .Shes Rons sister Harry told himself firmly .Rons sister .Shes outofbounds .He would not risk his friendship with Ron for anything .He punched his pillow into a more comfortable shape and waited for sleep to come trying his utmost not to allow his thoughts to stray anywhere near Ginny .Harry awoke next morning feeling slightly dazed and confused by a series of dreams in which Ron had chased him with a Beaters bat but by midday he would have happily exchanged the dream Ron for the real one who was not only coldshouldering Ginny and Dean but also treating a hurt and bewildered Hermione with an icy sneering indifference .What was more Ron seemed to have become overnight as touchy and ready to lash out as the average Blast Ended Skrewt .Harry spent the day attempting to keep the peace between Ron and Hermione with no success finally Hermione departed for bed in high dudgeon and Ron stalked off to the boys dormitory after swearing angrily at several frightened first years for looking at him .To Harrys dismay Rons new aggression did not wear off over the next few days .Worse still it coincided with an even deeper dip in his Keeping skills which made him still more aggressive so that during the final Quidditch practice before Saturdays match he failed to save every single goal the Chasers aimed at him but bellowed at everybody so much that he reduced Demelza Robins to tears .You shut up and leave her alone !shouted Peakes who was about twothirds Rons height though admittedly carrying a heavy bat .ENOUGH !bellowed Harry who had seen Ginny glowering in Rons direction and remembering her reputation as an accomplished caster of the Bat Bogey Hex soared over to intervene before things got out of hand .Peakes go and pack up the Bludgers .Demelza pull yourself together you played really well today .Ron .he waited until the rest of the team were out of earshot before saying it youre my best mate but carry on treating the rest of them like this and Im going to kick you off the team .He really thought for a moment that Ron might hit him but then something much worse happened Ron seemed to sag on his broom all the fight went out of him and he said I resign .Im pathetic .Youre not pathetic and youre not resigning !said Harry fiercely seizing Ron by the front of his robes .You can save anything when youre on form its a mental problem youve got !You calling me mental ?Yeah maybe I am !They glared at each other for a moment then Ron shook his head wearily .I know you havent got any time to find another Keeper so Ill play tomorrow but if we lose and we will Im taking myself off the team .Nothing Harry said made any difference .He tried boosting Rons confidence all through dinner but Ron was too busy being grumpy and surly with Hermione to notice .Harry persisted in the common room that evening but his assertion that the whole team would be devastated if Ron left was somewhat undermined by the fact that the rest of the team was sitting in a huddle in a distant corner clearly muttering about Ron and casting him nasty looks .Finally Harry tried getting angry again in the hope of provoking Ron into a defiant and hopefully goalsaving attitude but this strategy did not appear to work any better than encouragement Ron went to bed as dejected and hopeless as ever .Harry lay awake for a very long time in the darkness .He did not want to lose the upcoming match not only was it his first as Captain but he was determined to beat Draco Malfoy at Quidditch even if he could not yet prove his suspicions about him .Yet if Ron played as he had done in the last few practices their chances of winning were very slim .If only there was something he could do to make Ron pull himself together .make him play at the top of his form .something that would ensure that Ron had a really good day .And the answer came to Harry in one sudden glorious stroke of inspiration .Breakfast was the usual excitable affair next morning the Slytherins hissed and booed loudly as every member of the Gryffindor team entered the Great Hall .Harry glanced at the ceiling and saw a clear pale blue sky a good omen .The Gryffindor table a solid mass of red and gold cheered as Harry and Ron approached .Harry grinned and waved Ron grimaced weakly and shook his head .Cheer up Ron !called Lavender .I know youll be brilliant !Ron ignored her .Tea ?Harry asked him .Coffee ?Pumpkin juice ?Anything said Ron glumly taking a moody bite of toast .A few minutes later Hermione who had become so tired of Rons recent unpleasant behavior that she had not come down to breakfast with them paused on her way up the table .How are you both feeling ?she asked tentatively her eyes on the back of Rons head .Fine said Harry who was concentrating on handing Ron a glass of pumpkin juice .There you go Ron .Drink up .Ron had just raised the glass to his lips when Hermione spoke sharply .Dont drink that Ron !Both Harry and Ron looked up at her .Why not ?said Ron .Hermione was now staring at Harry as though she could not believe her eyes .You just put something in that drink .Excuse me ?said Harry .You heard me .I saw you .You just tipped something into Rons drink .Youve got the bottle in your hand right now !I dont know what youre talking about said Harry stowing the little bottle hastily in his pocket .Ron I warn you dont drink it !Hermione said again alarmed but Ron picked up the glass drained it in one gulp and said Stop bossing me around Hermione .She looked scandalized .Bending low so that only Harry could hear her she hissed You should be expelled for that .Id never have believed it of you Harry !Hark whos talking he whispered back .Confunded anyone lately ?She stormed up the table away from them .Harry watched her go without regret .Hermione had never really understood what a serious business Quidditch was .He then looked around at Ron who was smacking his lips .Nearly time said Harry blithely .The frosty grass crunched underfoot as they strode down to the stadium .Pretty lucky the weathers this good eh ?Harry asked Ron .Yeah said Ron who was pale and sicklooking .Ginny and Demelza were already wearing their Quidditch robes and waiting in the changing room .Conditions look ideal said Ginny ignoring Ron .And guess what ?That Slytherin Chaser Vaisey he took a Bludger in the head yesterday during their practice and hes too sore to play !And even better than that Malfoys gone off sick too !What ?said Harry wheeling around to stare at her .Hes ill ?Whats wrong with him ?No idea but its great for us said Ginny brightly .Theyre playing Harper instead hes in my year and hes an idiot .Harry smiled back vaguely but as he pulled on his scarlet robes his mind was far from Quidditch .Malfoy had once before claimed he could not play due to injury but on that occasion he had made sure the whole match was rescheduled for a time that suited the Slytherins better .Why was he now happy to let a substitute go on ?Was he really ill or was he faking ?Fishy isnt it ?he said in an undertone to Ron .Malfoy not playing ?Lucky I call it said Ron looking slightly more animated .And Vaisey off too hes their best goal scorer I didnt fancy hey !he said suddenly freezing halfway through pulling on his Keepers gloves and staring at Harry .What ?I .you .Ron had dropped his voice he looked both scared and excited .My drink .my pumpkin juice .you didnt . ?Harry raised his eyebrows but said nothing except Well be starting in about five minutes youd better get your boots on .They walked out onto the pitch to tumultuous roars and boos .One end of the stadium was solid red and gold the other a sea of green and silver .Many Hufflepuffs and Ravenclaws had taken sides too Amidst all the yelling and clapping Harry could distinctly hear the roar of Luna Lovegoods famous liontopped hat .Harry stepped up to Madam Hooch the referee who was standing ready to release the balls from the crate .Captains shake hands she said and Harry had his hand crushed by the new Slytherin Captain Urquhart .Mount your brooms .On the whistle .three .two .one .The whistle sounded Harry and the others kicked off hard from the frozen ground and they were away .Harry soared around the perimeter of the grounds looking around for the Snitch and keeping one eye on Harper who was zigzagging far below him .Then a voice that was jarringly different to the usual commentators started up .Well there they go and I think were all surprised to see the team that Potters put together this year .Many thought given Ronald Weasleys patchy performance as Keeper last year that he might be off the team but of course a close personal friendship with the Captain does help .These words were greeted with jeers and applause from the Slytherin end of the pitch .Harry craned around on his broom to look toward the commentators podium .A tall skinny blond boy with an upturned nose was standing there talking into the magical megaphone that had once been Lee Jordans Harry recognized Zacharias Smith a Hufflepuff player whom he heartily disliked .Oh and here comes Slytherin s first attempt on goal its Urquhart streaking down the pitch and Harrys stomach turned over .Weasley saves it well hes bound to get lucky sometimes I suppose .Thats right Smith he is muttered Harry grinning to himself as he dived amongst the Chasers with his eyes searching all around for some hint of the elusive Snitch .With half an hour of the game gone Gryffindor were leading sixty points to zero Ron having made some truly spectacular saves some by the very tips of his gloves and Ginny having scored four of Gryffindors six goals .This effectively stopped Zacharias wondering loudly whether the two Weasleys were only there because Harry liked them and he started on Peakes and Coote instead .Of course Coote isnt really the usual build for a Beater said Zacharias loftily theyve generally got a bit more muscle Hit a Bludger at him !Harry called to Coote as he zoomed past but Coote grinning broadly chose to aim the next Bludger at Harper instead who was just passing Harry in the opposite direction .Harry was pleased to hear the dull thunk that meant the Bludger had found its mark .It seemed as though Gryffindor could do no wrong .Again and again they scored and again and again at the other end of the pitch Ron saved goals with apparent ease .He was actually smiling now and when the crowd greeted a particularly good save with a rousing chorus of the old favorite Weasley Is Our King he pretended to conduct them from on high .Thinks hes something special today doesnt he ?said a snide voice and Harry was nearly knocked off his broom as Harper collided with him hard and deliberately .Your bloodtraitor pal .Madam Hoochs back was turned and though Gryffindors below shouted in anger by the time she looked around Harper had already sped off .His shoulder aching Harry raced after him determined to ram him back .And I think Harper of Slytherins seen the Snitch !said Zacharias Smith through his megaphone .Yes hes certainly seen something Potter hasnt !Smith really was an idiot thought Harry hadnt he noticed them collide ?But next moment his stomach seemed to drop out of the sky Smith was right and Harry was wrong Harper had not sped upward at random he had spotted what Harry had not The Snitch was speeding along high above them glinting brightly against the clear blue sky .Harry accelerated the wind was whistling in his ears so that it drowned all sound of Smiths commentary or the crowd but Harper was still ahead of him and Gryffindor was only a hundred points up if Harper got there first Gryffindor had lost .and now Harper was feet from it his hand outstretched .Oi Harper !yelled Harry in desperation .How much did Malfoy pay you to come on instead of him ?He did not know what made him say it but Harper did a doubletake he fumbled the Snitch let it slip through his fingers and shot right past it .Harry made a great swipe for the tiny fluttering ball and caught it .YES !Harry yelled .Wheeling around he hurtled back toward the ground the Snitch held high in his hand .As the crowd realized what had happened a great shout went up that almost drowned the sound of the whistle that signaled the end of the game .Ginny where re you going ?yelled Harry who had found himself trapped in the midst of a mass midair hug with the rest of the team but Ginny sped right on past them until with an almighty crash she collided with the commentators podium .As the crowd shrieked and laughed the Gryffindor team landed beside the wreckage of wood under which Zacharias was feebly stirring Harry heard Ginny saying blithely to an irate Professor McGonagall Forgot to brake Professor sorry .Laughing Harry broke free of the rest of the team and hugged Ginny but let go very quickly .Avoiding her gaze he clapped a cheering Ron on the back instead as all enmity forgotten the Gryffindor team left the pitch arm in arm punching the air and waving to their supporters .The atmosphere in the changing room was jubilant .Party up in the common room Seamus said !yelled Dean exuberantly .Cmon Ginny Demelza !Ron and Harry were the last two in the changing room .They were just about to leave when Hermione entered .She was twisting her Gryffindor scarf in her hands and looked upset but determined .I want a word with you Harry .She took a deep breath .You shouldnt have done it .You heard Slughorn its illegal .What are you going to do turn us in ?demanded Ron .What are you two talking about ?asked Harry turning away to hang up his robes so that neither of them would see him grinning .You know perfectly well what were talking about !said Hermione shrilly .You spiked Rons juice with lucky potion at breakfast !Felix Felicis !No I didnt said Harry turning back to face them both .Yes you did Harry and thats why everything went right there were Slytherin players missing and Ron saved everything !I didnt put it in !said Harry grinning broadly .He slipped his hand inside his jacket pocket and drew out the tiny bottle that Hermione had seen in his hand that morning .It was full of golden potion and the cork was still tightly sealed with wax .I wanted Ron to think Id done it so I faked it when I knew you were looking .He looked at Ron .You saved everything because you felt lucky .You did it all yourself .He pocketed the potion again .There really wasnt anything in my pumpkin juice ?Ron said astounded .But the weathers good .and Vaisey couldnt play .I honestly havent been given lucky potion ?Harry shook his head .Ron gaped at him for a moment then rounded on Hermione imitating her voice .You added Felix Felicis to Rons juice this morning thats why he saved every thing See !I can save goals without help Hermione !I never said you couldnt Ron you thought youd been given it too !But Ron had already strode past her out of the door with his broomstick over his shoulder .Er said Harry into the sudden silence he had not expected his plan to backfire like this shall .shall we go up to the party then ?You go !said Hermione blinking back tears .Im sick of Ron at the moment I dont know what Im supposed to have done .And she stormed out of the changing room too .Harry walked slowly back up the grounds toward the castle through the crowd many of whom shouted congratulations at him but he felt a great sense of letdown he had been sure that if Ron won the match he and Hermione would be friends again immediately .He did not see how he could possibly explain to Hermione that what she had done to offend Ron was kiss Viktor Krum not when the offense had occurred so long ago .Harry could not see Hermione at the Gryffindor celebration party which was in full swing when he arrived .Renewed cheers and clapping greeted his appearance and he was soon surrounded by a mob of people congratulating him .What with trying to shake off the Creevey brothers who wanted a blowbyblow match analysis and the large group of girls that encircled him laughing at his least amusing comments and batting their eyelids it was some time before he could try and find Ron .At last he extricated himself from Romilda Vane who was hinting heavily that she would like to go to Slughorns Christmas party with him .As he was ducking toward the drinks table he walked straight into Ginny Arnold the Pygmy Puff riding on her shoulder and Crookshanks mewing hopefully at her heels .Looking for Ron ?she asked smirking .Hes over there the filthy hypocrite .Harry looked into the corner she was indicating .There in full view of the whole room stood Ron wrapped so closely around Lavender Brown it was hard to tell whose hands were whose .It looks like hes eating her face doesnt it ?said Ginny dispassionately .But I suppose hes got to refine his technique somehow .Good game Harry .She patted him on the arm Harry felt a swooping sensation in his stomach but then she walked off to help herself to more butterbeer .Crookshanks trotted after her his yellow eyes fixed upon Arnold .Harry turned away from Ron who did not look like he would be surfacing soon just as the portrait hole was closing .With a sinking feeling he thought he saw a mane of bushy brown hair whipping out of sight .He darted forward sidestepped Romilda Vane again and pushed open the portrait of the Fat Lady .The corridor outside seemed to be deserted .Hermione ?He found her in the first unlocked classroom he tried .She was sitting on the teachers desk alone except for a small ring of twittering yellow birds circling her head which she had clearly just conjured out of midair .Harry could not help admiring her spellwork at a time like this .Oh hello Harry she said in a brittle voice .I was just practicing .Yeah .theyre er really good .said Harry .He had no idea what to say to her .He was just wondering whether there was any chance that she had not noticed Ron that she had merely left the room because the party was a little too rowdy when she said in an unnaturally highpitched voice Ron seems to be enjoying the celebrations .Er .does he ?said Harry .Dont pretend you didnt see him said Hermione .He wasnt exactly hiding it was ?The door behind them burst open .To Harrys horror Ron came in laughing pulling Lavender by the hand .Oh he said drawing up short at the sight of Harry and Hermione .Oops !said Lavender and she backed out of the room giggling .The door swung shut behind her .There was a horrible swelling billowing silence .Hermione was staring at Ron who refused to look at her but said with an odd mixture of bravado and awkwardness Hi Harry !Wondered where youd got to !Hermione slid off the desk .The little flock of golden birds continued to twitter in circles around her head so that she looked like a strange feathery model of the solar system .You shouldnt leave Lavender waiting outside she said quietly .Shell wonder where youve gone .She walked very slowly and erectly toward the door .Harry glanced at Ron who was looking relieved that nothing worse had happened .Oppugno came a shriek from the doorway .Harry spun around to see Hermione pointing her wand at Ron her expression wild The little flock of birds was speeding like a hail of fat golden bullets toward Ron who yelped and covered his face with his hands but the birds attacked pecking and clawing at every bit of flesh they could reach .Gerremoffme !he yelled but with one last look of vindictive fury Hermione wrenched open the door and disappeared through it .Harry thought he heard a sob before it slammed .THE UNBREAKABLE VOW Snow was swirling against the icy windows once more Christmas was approaching fast .Hagrid had already singlehandedly delivered the usual twelve Christmas trees for the Great Hall garlands of holly and tinsel had been twisted around the banisters of the stairs everlasting candles glowed from inside the helmets of suits of armor and great bunches of mistletoe had been hung at intervals along the corridors .Large groups of girls tended to converge underneath the mistletoe bunches every time Harry went past which caused blockages in the corridors fortunately however Harrys frequent nighttime wanderings had given him an unusually good knowledge of the castles secret passageways so that he was able without too much difficulty to navigate mistletoefree routes between classes .Ron who might once have found the necessity of these detours a cause for jealousy rather than hilarity simply roared with laughter about it all .Although Harry much preferred this new laughing joking Ron to the moody aggressive model he had been enduring for the last few weeks the improved Ron came at a heavy price .Firstly Harry had to put up with the frequent presence of Lavender Brown who seemed to regard any moment that she was not kissing Ron as a moment wasted and secondly Harry found himself once more the best friend of two people who seemed unlikely ever to speak to each other again .Ron whose hands and forearms still bore scratches and cuts from Hermiones bird attack was taking a defensive and resentful tone .She cant complain he told Harry .She snogged Krum .So shes found out someone wants to snog me too .Well its a free country .I havent done anything wrong .Harry did not answer but pretended to be absorbed in the book they were supposed to have read before Charms next morning Quintessence A Quest .Determined as he was to remain friends with both Ron and Hermione he was spending a lot of time with his mouth shut tight .I never promised Hermione anything Ron mumbled .I mean all right I was going to go to Slughorns Christmas party with her but she never said .just as friends .Im a free agent .Harry turned a page of Quintessence aware that Ron was watching him .Rons voice tailed away in mutters barely audible over the loud crackling of the fire though Harry thought he caught the words Krum and cant complain again .Hermiones schedule was so full that Harry could only talk to her properly in the evenings when Ron was in any case so tightly wrapped around Lavender that he did not notice what Harry was doing .Hermione refused to sit in the common room while Ron was there so Harry generally joined her in the library which meant that their conversations were held in whispers .Hes at perfect liberty to kiss whomever he likes said Hermione while the librarian Madam Pince prowled the shelves behind them .I really couldnt care less .She raised her quill and dotted an i so ferociously that she punctured a hole in her parchment .Harry said nothing .He thought his voice might soon vanish from lack of use .He bent a little lower over Advanced PotionMaking and continued to make notes on Everlasting Elixirs occasionally pausing to decipher the Princes useful additions to Libatius Borages text .And incidentally said Hermione after a few moments you need to be careful .For the last time said Harry speaking in a slightly hoarse whisper after threequarters of an hour of silence I am not giving back this book Ive learned more from the HalfBlood Prince than Snape or Slughorn have taught me in Im not talking about your stupid socalled Prince said Hermione giving his book a nasty look as though it had been rude to her .Im talking about earlier .I went into the girls bathroom just before I came in here and there were about a dozen girls in there including that Romilda Vane trying to decide how to slip you a love potion .Theyre all hoping theyre going to get you to take them to Slughorn s party and they all seem to have bought Fred and Georges love potions which Im afraid to say probably work Why didnt you confiscate them then ?demanded Harry .It seemed extraordinary that Hermiones mania for upholding rules could have abandoned her at this crucial juncture .They didnt have the potions with them in the bathroom said Hermione scornfully .They were just discussing tactics .As I doubt whether even the Half Blood Prince she gave the book another nasty look could dream up an antidote for a dozen different love potions at once Id just invite someone to go with you thatll stop all the others thinking theyve still got a chance .Its tomorrow night theyre getting desperate .There isnt anyone I want to invite mumbled Harry who was still trying not to think about Ginny any more than he could help despite the fact that she kept cropping up in his dreams in ways that made him devoutly thankful that Ron could not perform Legilimency .Well just be careful what you drink because Romilda Vane looked like she meant business said Hermione grimly .She hitched up the long roll of parchment on which she was writing her Arithmancy essay and continued to scratch away with her quill .Harry watched her with his mind a long way away .Hang on a moment he said slowly .I thought Filch had banned anything bought at Weasleys Wizard Wheezes ?And when has anyone ever paid attention to what Filch has banned ?asked Hermione still concentrating on her essay .But I thought all the owls were being searched .So how come these girls are able to bring love potions into school ?Fred and George send them disguised as perfumes and cough potions said Hermione .Its part of their Owl Order Service .You know a lot about it .Hermione gave him the kind of nasty look she had just given his copy of Advanced PotionMaking .It was all on the back of the bottles they showed Ginny and me in the summer she said coldly .I dont go around putting potions in peoples drinks .or pretending to either which is just as bad .Yeah well never mind that said Harry quickly .The point is Filch is being fooled isnt he ?These girls are getting stuff into the school disguised as something else !So why couldnt Malfoy have brought the necklace into the school ?Oh Harry .not that again .Come on why not ?demanded Harry .Look sighed Hermione Secrecy Sensors detect jinxes curses and concealment charms dont they ?Theyre used to find Dark Magic and Dark objects .Theyd have picked up a powerful curse like the one on that necklace within seconds .But something thats just been put in the wrong bottle wouldnt register and anyway love potions arent Dark or dangerous Easy for you to say muttered Harry thinking of Romilda Vane .so it would be down to Filch to realize it wasnt a cough potion and hes not a very good wizard I doubt he can tell one potion from Hermione stopped dead Harry had heard it too .Somebody had moved close behind them among the dark bookshelves .They waited and a moment later the vulturelike countenance of Madam Pince appeared around the corner her sunken cheeks her skin like parchment and her long hooked nose illuminated unflatteringly by the lamp she was carrying .The library is now closed she said .Mind you return anything you have borrowed to the correct what have you been doing to that book you depraved boy ?It isnt the librarys its mine !said Harry hastily snatching his copy of Advanced PotionMaking off the table as she lunged at it with a clawlike hand .Despoiled !she hissed .Desecrated !Befouled !Its just a book thats been written on !said Harry tugging it out of her grip .She looked as though she might have a seizure Hermione who had hastily packed her things grabbed Harry by the arm and frogmarched him away .Shell ban you from the library if youre not careful .Why did you have to bring that stupid book ?Its not my fault shes barking mad Hermione .Or dyou think she overheard you being rude about Filch ?Ive always thought there might be something going on between them .Oh ha ha .Enjoying the fact that they could speak normally again they made their way along the deserted lamp lit corridors back to the common room arguing about whether or not Filch and Madam Pince were secretly in love with each other .Baubles said Harry to the Fat Lady this being the new festive password .Same to you said the Fat Lady with a roguish grin and she swung forward to admit them .Hi Harry !said Romilda Vane the moment he had climbed through the portrait hole .Fancy a gillywater ?Hermione gave him a whatdidItellyou ?look over her shoulder .No thanks said Harry quickly .I dont like it much .Well take these anyway said Romilda thrusting a box into his hands .Chocolate Cauldrons theyve got firewhisky in them .My gran sent them to me but I dont like them .Oh right thanks a lot said Harry who could not think what else to say .Er Im just going over here with .He hurried off behind Hermione his voice tailing away feebly .Told you said Hermione succinctly .Sooner you ask someone sooner theyll all leave you alone and you can But her face suddenly turned blank she had just spotted Ron and Lavender who were entwined in the same armchair .Well good night Harry said Hermione though it was only seven oclock in the evening and she left for the girls dormitory without another word .Harry went to bed comforting himself that there was only one more day of lessons to struggle through plus Slughorns party after which he and Ron would depart together for the Burrow .It now seemed impossible that Ron and Hermione would make up with each other before the holidays began but perhaps somehow the break would give them time to calm down think better of their behavior .But his hopes were not high and they sank still lower after enduring a Transfiguration lesson with them both next day .They had just embarked upon the immensely difficult topic of human Transfiguration working in front of mirrors they were supposed to be changing the color of their own eyebrows .Hermione laughed unkindly at Rons disastrous first attempt during which he somehow managed to give himself a spectacular handlebar mustache Ron retaliated by doing a cruel but accurate impression of Hermione jumping up and down in her seat every time Professor McGonagall asked a question which Lavender and Parvati found deeply amusing and which reduced Hermione to the verge of tears again .She raced out of the classroom on the bell leaving half her things behind Harry deciding that her need was greater than Rons just now scooped up her remaining possessions and followed her .He finally tracked her down as she emerged from a girls bathroom on the floor below .She was accompanied by Luna Lovegood who was patting her vaguely on the back .Oh hello Harry said Luna .Did you know one of your eyebrows is bright yellow ?Hi Luna .Hermione you left your stuff .He held out her books .Oh yes said Hermione in a choked voice taking her things and turning away quickly to hide the fact that she was wiping her eyes on her pencil case .Thank you Harry .Well Id better get going .And she hurried off without giving Harry any time to offer words of comfort though admittedly he could not think of any .Shes a bit upset said Luna .I thought at first it was Moaning Myrtle in there but it turned out to be Hermione .She said something about that Ron Weasley .Yeah theyve had a row said Harry .He says very funny things sometimes doesnt he ?said Luna as they set off down the corridor together .But he can be a bit unkind .I noticed that last year .I spose said Harry .Luna was demonstrating her usual knack of speaking uncomfortable truths he had never met anyone quite like her .So have you had a good term ?Oh its been all right said Luna .A bit lonely without the D .A .Ginnys been nice though .She stopped two boys in our Transfiguration class calling me ‘Loony the other day How would you like to come to Slughorns party with me tonight ?The words were out of Harrys mouth before he could stop them he heard himself say them as though it were a stranger speaking .Luna turned her protuberant eyes upon him in surprise .Slughorns party ?With you ?Yeah said Harry .Were supposed to bring guests so I thought you might like .I mean .He was keen to make his intentions perfectly clear .I mean just as friends you know .But if you dont want to .He was already half hoping that she didnt want to .Oh no Id love to go with you as friends !said Luna beaming as he had never seen her beam before .Nobodys ever asked me to a party before as a friend !Is that why you dyed your eyebrow for the party ?Should I do mine too ?No said Harry firmly that was a mistake .Ill get Hermione to put it right for me .So Ill meet you in the entrance hall at eight oclock then .AHA !screamed a voice from overhead and both of them jumped unnoticed by either of them they had just passed right underneath Peeves who was hanging upside down from a chandelier and grinning maliciously at them .Potty asked Loony to go to the partyl Potty lurves Loony !Potty luuuuurves LooooooonyV And he zoomed away cackling and shrieking Potty loves Loony !Nice to keep these things private said Harry .And sure enough in no time at all the whole school seemed to know that Harry Potter was taking Luna Lovegood to Slughorns party .You couldve taken anyonel said Ron in disbelief over dinner .Anyonel And you chose Loony Lovegood ?Dont call her that Ron snapped Ginny pausing behind Harry on her way to join friends .Im really glad youre taking her Harry shes so excited .And she moved on down the table to sit with Dean .Harry tried to feel pleased that Ginny was glad he was taking Luna to the party but could not quite manage it .A long way along the table Hermione was sitting alone playing with her stew .Harry noticed Ron looking at her furtively .You could say sorry suggested Harry bluntly .What and get attacked by another flock of canaries ?muttered Ron .What did you have to imitate her for ?She laughed at my mustache !So did I it was the stupidest thing Ive ever seen .But Ron did not seem to have heard Lavender had just arrived with Parvati .Squeezing herself in between Harry and Ron Lavender flung her arms around Rons neck .Hi Harry said Parvati who like him looked faintly embarrassed and bored by the behavior of their two friends .Hi said Harry .Howre you ?Youre staying at Hogwarts then ?I heard your parents wanted you to leave .I managed to talk them out of it for the time being said Parvati .That Katie thing really freaked them out but as there hasnt been anything since .Oh hi Hermione !Parvati positively beamed .Harry could tell that she was feeling guilty for having laughed at Hermione in Transfiguration .He looked around and saw that Hermione was beaming back if possible even more brightly .Girls were very strange sometimes .Hi Parvati !said Hermione ignoring Ron and Lavender completely .Are you going to Slughorns party tonight ?No invite said Parvati gloomily .Id love to go though it sounds like its going to be really good .Youre going arent you ?Yes Im meeting Cormac at eight and were There was a noise like a plunger being withdrawn from a blocked sink and Ron surfaced .Hermione acted as though she had not seen or heard anything .were going up to the party together .Cormac ?said Parvati .Cormac McLaggen you mean ?Thats right said Hermione sweetly .The one who almost she put a great deal of emphasis on the word became Gryffindor Keeper .Are you going out with him then ?asked Parvati wideeyed .Oh yes didnt you know ?said Hermione with a most unHermioneish giggle .No !said Parvati looking positively agog at this piece of gossip .Wow you like your Quidditch players dont you ?First Krum then McLaggen .I like really good Quidditch players Hermione corrected her still smiling .Well see you .Got to go and get ready for the party .She left .At once Lavender and Parvati put their heads together to discuss this new development with everything they had ever heard about McLaggen and all they had ever guessed about Hermione .Ron looked strangely blank and said nothing .Harry was left to ponder in silence the depths to which girls would sink to get revenge .When he arrived in the entrance hall at eight oclock that night he found an unusually large number of girls lurking there all of whom seemed to be staring at him resentfully as he approached Luna .She was wearing a set of spangled silver robes that were attracting a certain amount of giggles from the onlookers but otherwise she looked quite nice .Harry was glad in any case that she had left off her radish earrings her butterbeer cork necklace and her Spectrespecs .Hi he said .Shall we get going then ?Oh yes she said happily .Where is the party ?Slughorns office said Harry leading her up the marble staircase away from all the staring and muttering .Did you hear theres supposed to be a vampire coming ?Rufus Scrimgeour ?asked Luna .I what ?said Harry disconcerted .You mean the Minister of Magic ?Yes hes a vampire said Luna matteroffactly .Father wrote a very long article about it when Scrimgeour first took over from Cornelius Fudge but he was forced not to publish by somebody from the Ministry .Obviously they didnt want the truth to get out !Harry who thought it most unlikely that Rufus Scrimgeour was a vampire but who was used to Luna repeating her fathers bizarre views as though they were fact did not reply they were already approaching Slughorns office and the sounds of laughter music and loud conversation were growing louder with every step they took .Whether it had been built that way or because he had used magical trickery to make it so Slughorns office was much larger than the usual teachers study .The ceiling and walls had been draped with emerald crimson and gold hangings so that it looked as though they were all inside a vast tent .The room was crowded and stuffy and bathed in the red light cast by an ornate golden lamp dangling from the center of the ceiling in which real fairies were fluttering each a brilliant speck of light .Loud singing accompanied by what sounded like mandolins issued from a distant corner a haze of pipe smoke hung over several elderly warlocks deep in conversation and a number of houseelves were negotiating their way squeakily through the forest of knees obscured by the heavy silver platters of food they were bearing so that they looked like little roving tables .Harry mboy !boomed Slughorn almost as soon as Harry and Luna had squeezed in through the door .Come in come in so many people Id like you to meet !Slughorn was wearing a tasseled velvet hat to match his smoking jacket .Gripping Harrys arm so tightly he might have been hoping to Disapparate with him Slughorn led him purposefully into the party Harry seized Lunas hand and dragged her along with him .Harry Id like you to meet Eldred Worple an old student of mine author of Blood Brothers My Life Amongst the Vampires and of course his friend Sanguini .Worple who was a small stout bespectacled man grabbed Harrys hand and shook it enthusiastically the vampire Sanguini who was tall and emaciated with dark shadows under his eyes merely nodded .He looked rather bored .A gaggle of girls was standing close to him looking curious and excited .Harry Potter I am simply delighted !said Worple peering shortsightedly up into Harrys face .I was saying to Professor Slughorn only the other day ‘Where is the biography of Harry Potter for which we have all been waiting ?Er said Harry were you ?Just as modest as Horace described !said Worple .But seriously his manner changed it became suddenly businesslike I would be delighted to write it myself people are craving to know more about you dear boy craving !If you were prepared to grant me a few interviews say in four or fivehour sessions why we could have the book finished within months .And all with very little effort on your part I assure you ask Sanguini here if it isnt quite Sanguini stay here added Worple suddenly stern for the vampire had been edging toward the nearby group of girls a rather hungry look in his eye .Here have a pasty said Worple seizing one from a passing elf and stuffing it into Sanguinis hand before turning his attention back to Harry .My dear boy the gold you could make you have no idea Im definitely not interested said Harry firmly and Ive just seen a friend of mine sorry .He pulled Luna after him into the crowd he had indeed just seen a long mane of brown hair disappear between what looked like two members of the Weird Sisters .Hermione !HermioneV Harry !There you are thank goodness !Hi Luna !Whats happened to you ?asked Harry for Hermione looked distinctly disheveled rather as though she had just fought her way out of a thicket of Devils Snare .Oh Ive just escaped I mean Ive just left Cormac she said .Under the mistletoe she added in explanation as Harry continued to look questioningly at her .Serves you right for coming with him he told her severely .I thought hed annoy Ron most said Hermione dispassionately .I debated for a while about Zacharias Smith but I thought on the whole You considered Smith ?said Harry revolted .Yes I did and Im starting to wish Id chosen him McLaggen makes Grawp look a gentleman .Lets go this way well be able to see him coming hes so tall .The three of them made their way over to the other side of the room scooping up goblets of mead on the way realizing too late that Professor Trelawney was standing there alone .Hello said Luna politely to Professor Trelawney .Good evening my dear said Professor Trelawney focusing upon Luna with some difficulty .Harry could smell cooking sherry again .I havent seen you in my classes lately .No Ive got Firenze this year said Luna .Oh of course said Professor Trelawney with an angry drunken titter .Or Dobbin as I prefer to think of him .You would have thought would you not that now I am returned to the school Professor Dumbledore might have got rid of the horse ?But no .we share classes .Its an insult frankly an insult .Do you know .Professor Trelawney seemed too tipsy to have recognized Harry .Under cover of her furious criticisms of Firenze Harry drew closer to Hermione and said Lets get something straight .Are you planning to tell Ron that you interfered at Keeper tryouts ?Hermione raised her eyebrows .Do you really think Id stoop that low ?Harry looked at her shrewdly .Hermione if you can ask out McLaggen Theres a difference said Hermione with dignity .Ive got no plans to tell Ron anything about what might or might not have happened at Keeper tryouts .Good said Harry fervently .Because hell just fall apart again and well lose the next match Quidditch !said Hermione angrily .Is that all boys care about ?Cormac hasnt asked me one single question about myself no Ive just been treated to ‘A Hundred Great Saves Made by Cormac McLaggen nonstop ever since oh no here he comes !She moved so fast it was as though she had Disapparated one moment she was there the next she had squeezed between two guffawing witches and vanished .Seen Hermione ?asked McLaggen forcing his way through the throng a minute later .No sorry said Harry and he turned quickly to join in Lunas conversation forgetting for a split second to whom she was talking .Harry Potter !said Professor Trelawney in deep vibrant tones noticing him for the first time .Oh hello said Harry unenthusiastically .My dear boy !she said in a very carrying whisper .The rumors !The stories !The Chosen One !Of course I have known for a very long time .The omens were never good Harry .But why have you not returned to Divination ?For you of all people the subject is of the utmost importance !Ah Sybill we all think our subjects most important !said a loud voice and Slughorn appeared at Professor Trelawneys other side his face very red his velvet hat a little askew a glass of mead in one hand and an enormous mince pie in the other .But I dont think Ive ever known such a natural at Potions !said Slughorn regarding Harry with a fond if bloodshot eye .Instinctive you know like his mother !Ive only ever taught a few with this kind of ability I can tell you that Sybill why even Severus And to Harrys horror Slughorn threw out an arm and seemed to scoop Snape out of thin air toward them .Stop skulking and come and join us Severus !hiccuped Slughorn happily .I was just talking about Harrys exceptional potionmaking !Some credit must go to you of course you taught him for five years !Trapped with Slughorns arm around his shoulders Snape looked down his hooked nose at Harry his black eyes narrowed .Funny I never had the impression that I managed to teach Potter anything at all .Well then its natural ability !shouted Slughorn .You should have seen what he gave me first lesson Draught of Living Death never had a student produce finer on a first attempt I dont think even you Severus Really ?said Snape quietly his eyes still boring into Harry who felt a certain disquiet .The last thing he wanted was for Snape to start investigating the source of his newfound brilliance at Potions .Remind me what other subjects youre taking Harry ?asked Slughorn .Defense Against the Dark Arts Charms Transfiguration Herbology .All the subjects required in short for an Auror said Snape with the faintest sneer .Yeah well thats what Id like to do said Harry defiantly .And a great one youll make too !boomed Slughorn .I dont think you should be an Auror Harry said Luna unexpectedly .Everybody looked at her .The Aurors are part of the Rotfang Conspiracy I thought everyone knew that .Theyre working to bring down the Ministry of Magic from within using a combination of Dark Magic and gum disease .Harry inhaled half his mead up his nose as he started to laugh .Really it had been worth bringing Luna just for this .Emerging from his goblet coughing sopping wet but still grinning he saw something calculated to raise his spirits even higher Draco Malfoy being dragged by the ear toward them by Argus Filch .Professor Slughorn wheezed Filch his jowls aquiver and the maniacal light of mischiefdetection in his bulging eyes I discovered this boy lurking in an upstairs corridor .He claims to have been invited to your party and to have been delayed in setting out .Did you issue him with an invitation ?Malfoy pulled himself free of Filch s grip looking furious .All right I wasnt invited !he said angrily .I was trying to gatecrash happy ?No Im not !said Filch a statement at complete odds with the glee on his face .Youre in trouble you are !Didnt the headmaster say that nighttime prowlings out unless youve got permission didnt he eh ?Thats all right Argus thats all right said Slughorn waving a hand .Its Christmas and its not a crime to want to come to a party .Just this once well forget any punishment you may stay Draco .Filch s expression of outraged disappointment was perfectly predictable but why Harry wondered watching him did Malfoy look almost equally unhappy ?And why was Snape looking at Malfoy as though both angry and .was it possible ? .a little afraid ?But almost before Harry had registered what he had seen Filch had turned and shuffled away muttering under his breath Malfoy had composed his face into a smile and was thanking Slughorn for his generosity and Snapes face was smoothly inscrutable again .Its nothing nothing said Slughorn waving away Malfoy s thanks .I did know your grandfather after all .He always spoke very highly of you sir said Malfoy quickly .Said you were the best potionmaker hed ever known .Harry stared at Malfoy .It was not the suckingup that intrigued him he had watched Malfoy do that to Snape for a long time .It was the fact that Malfoy did after all look a little ill .This was the first time he had seen Malfoy close up for ages he now saw that Malfoy had dark shadows under his eyes and a distinctly grayish tinge to his skin .Id like a word with you Draco said Snape suddenly .Oh now Severus said Slughorn hiccuping again its Christmas dont be too hard Im his Head of House and I shall decide how hard or otherwise to be said Snape curtly .Follow me Draco .They left Snape leading the way Malfoy looking resentful .Harry stood there for a moment irresolute then said Ill be back in a bit Luna er bathroom .All right she said cheerfully and he thought he heard her as he hurried off into the crowd resume the subject of the Rotfang Conspiracy with Professor Trelawney who seemed sincerely interested .It was easy once out of the party to pull his Invisibility Cloak out of his pocket and throw it over himself for the corridor was quite deserted .What was more difficult was finding Snape and Malfoy .Harry ran down the corridor the noise of his feet masked by the music and loud talk still issuing from Slughorn s office behind him .Perhaps Snape had taken Malfoy to his office in the dungeons .or perhaps he was escorting him back to the Slytherin common room .Harry pressed his ear against door after door as he dashed down the corridor until with a great jolt of excitement he crouched down to the keyhole of the last classroom in the corridor and heard voices . .cannot afford mistakes Draco because if you are expelled I didnt have anything to do with it all right ?I hope you are telling the truth because it was both clumsy and foolish .Already you are suspected of having a hand in it .Who suspects me ?said Malfoy angrily .For the last time I didnt do it okay ?That Bell girl mustve had an enemy no one knows about dont look at me like that !I know what youre doing Im not stupid but it wont work I can stop you !There was a pause and then Snape said quietly Ah .Aunt Bellatrix has been teaching you Occlumency I see .What thoughts are you trying to conceal from your master Draco ?Im not trying to conceal anything from him I just dont want you butting in !Harry pressed his ear still more closely against the keyhole .What had happened to make Malfoy speak to Snape like this Snape toward whom he had always shown respect even liking ?So that is why you have been avoiding me this term ?You have feared my interference ?You realize that had anybody else failed to come to my office when I had told them repeatedly to be there Draco So put me in detention !Report me to Dumbledore !jeered Malfoy .There was another pause .Then Snape said You know perfectly well that I do not wish to do either of those things .Youd better stop telling me to come to your office then !Listen to me said Snape his voice so low now that Harry had to push his ear very hard against the keyhole to hear .I am trying to help you .I swore to your mother I would protect you .I made the Unbreakable Vow Draco Looks like you 11 have to break it then because I dont need your protection !Its my job he gave it to me and Im doing it Ive got a plan and its going to work its just taking a bit longer than I thought it would !What is your plan ?Its none of your business !If you tell me what you are trying to do I can assist you Ive got all the assistance I need thanks Im not alone !You were certainly alone tonight which was foolish in the extreme wandering the corridors without lookouts or backup these are elementary mistakes I wouldve had Crabbe and Goyle with me if you hadnt put them in detention !Keep your voice down !spat Snape for Malfoys voice had risen excitedly .If your friends Crabbe and Goyle intend to pass their Defense Against the Dark Arts O .W .L .this time around they will need to work a little harder than they are doing at pres What does it matter ?said Malfoy .Defense Against the Dark Arts its all just a joke isnt it an act ?Like any of us need protecting against the Dark Arts It is an act that is crucial to success Draco !said Snape .Where do you think I would have been all these years if I had not known how to act ?Now listen to me !You are being incautious wandering around at night getting yourself caught and if you are placing your reliance in assistants like Crabbe and Goyle Theyre not the only ones Ive got other people on my side better people !Then why not confide in me and I can I know what youre up to !You want to steal my glory !There was another pause then Snape said coldly You are speaking like a child .I quite understand that your fathers capture and imprisonment has upset you but Harry had barely a seconds warning he heard Malfoys footsteps on the other side of the door and flung himself out of the way just as it burst open Malfoy was striding away down the corridor past the open door of Slughorns office around the distant corner and out of sight .Hardly daring to breathe Harry remained crouched down as Snape emerged slowly from the classroom .His expression unfathomable he returned to the party .Harry remained on the floor hidden beneath the cloak his mind racing .A VERY FROSTY CHRISTMAS So Snape was offering to help him ?He was definitely offering to help him ?If you ask that once more said Harry Im going to stick this sprout Im only checking !said Ron .They were standing alone at the Burrows kitchen sink peeling a mountain of sprouts for Mrs Weasley .Snow was drifting past the window in front of them .Yes Snape was offering to help himl said Harry .He said hed promised Malfoys mother to protect him that hed made an Unbreakable Oath or something An Unbreakable Vow ?said Ron looking stunned .Nah he cant have .Are you sure ?Yes Im sure said Harry .Why what does it mean ?Well you cant break an Unbreakable Vow .Id worked that much out for myself funnily enough .What happens if you break it then ?You die said Ron simply .Fred and George tried to get me to make one when I was about five .I nearly did too I was holding hands with Fred and everything when Dad found us .He went mental said Ron with a reminiscent gleam in his eyes .Only time Ive ever seen Dad as angry as Mum .Fred reckons his left buttock has never been the same since .Yeah well passing over Freds left buttock I beg your pardon ?said Freds voice as the twins entered the kitchen .aah George look at this .Theyre using knives and everything .Bless them .Ill be seventeen in two and a bit months time said Ron grumpily and then Ill be able to do it by magic !But meanwhile said George sitting down at the kitchen table and putting his feet up on it we can enjoy watching you demonstrate the correct use of a whoopsadaisy !You made me do that !said Ron angrily sucking his cut thumb .You wait when Im seventeen Im sure youll dazzle us all with hitherto unsuspected magical skills yawned Fred .And speaking of hitherto unsuspected skills Ronald said George what is this we hear from Ginny about you and a young lady called unless our information is faulty Lavender Brown ?Ron turned a little pink but did not look displeased as he turned back to the sprouts .Mind your own business .What a snappy retort said Fred .I really dont know how you think of them .No what we wanted to know was .how did it happen ?What dyou mean ?Did she have an accident or something ?What ?Well how did she sustain such extensive brain damage ?Careful now !Mrs Weasley entered the room just in time to see Ron throw the sprout knife at Fred who had turned it into a paper airplane with one lazy flick of his wand .Ronl she said furiously .Dont you ever let me see you throwing knives again !I wont said Ron let you see he added under his breath as he turned back to the sprout mountain .Fred George Im sorry dears but Remus is arriving tonight so Bill will have to squeeze in with you two .No problem said George .Then as Charlie isnt coming home that just leaves Harry and Ron in the attic and if Fleur shares with Ginny thatll make Ginnys Christmas muttered Fred .everyone should be comfortable .Well theyll have a bed anyway said Mrs Weasley sounding slightly harassed .Percy definitely not showing his ugly face then ?asked Fred .Mrs Weasley turned away before she answered .No hes busy I expect at the Ministry .Or hes the worlds biggest prat said Fred as Mrs Weasley left the kitchen .One of the two .Well lets get going then George .What are you two up to ?asked Ron .Cant you help us with these sprouts ?You could just use your wand and then well be free too !No I dont think we can do that said Fred seriously .Its very characterbuilding stuff learning to peel sprouts without magic makes you appreciate how difficult it is for Muggles and Squibs and if you want people to help you Ron added George throwing the paper airplane at him I wouldnt chuck knives at them .Just a little hint .Were off to the village theres a very pretty girl working in the paper shop who thinks my card tricks are something marvelous .almost like real magic .Gits said Ron darkly watching Fred and George setting off across the snowy yard .Wouldve only taken them ten seconds and then we couldve gone too .I couldnt said Harry .I promised Dumbledore I wouldnt wander off while Im staying here .Oh yeah said Ron .He peeled a few more sprouts and then said Are you going to tell Dumbledore what you heard Snape and Malfoy saying to each other ?Yep said Harry .Im going to tell anyone who can put a stop to it and Dumbledores top of the list .I might have another word with your dad too .Pity you didnt hear what Malfoys actually doing though .I couldnt have done could I ?That was the whole point he was refusing to tell Snape .There was silence for a moment or two then Ron said Course you know what theyll all say ?Dad and Dumbledore and all of them ?Theyll say Snape isnt really trying to help Malfoy he was just trying to find out what Malfoys up to .They didnt hear him said Harry flatly .No ones that good an actor not even Snape .Yeah .Im just saying though said Ron .Harry turned to face him frowning .You think Im right though ?Yeah I do !said Ron hastily .Seriously I do !But theyre all convinced Snapes in the Order arent they ?Harry said nothing .It had already occurred to him that this would be the most likely objection to his new evidence he could hear Hermione now Obviously Harry he was pretending to offer help so he could trick Malfoy into telling him what hes doing .This was pure imagination however as he had had no opportunity to tell Hermione what he had overheard .She had disappeared from Slughorns parry before he returned to it or so he had been informed by an irate McLaggen and she had already gone to bed by the time he returned to the common room .As he and Ron had left for the Burrow early the next day he had barely had time to wish her a happy Christmas and to tell her that he had some very important news when they got back from the holidays .He was not entirely sure that she had heard him though Ron and Lavender had been saying a thoroughly nonverbal goodbye just behind him at the time .Still even Hermione would not be able to deny one thing Malfoy was definitely up to something and Snape knew it so Harry felt fully justified in saying I told you so which he had done several times to Ron already .Harry did not get the chance to speak to Mr Weasley who was working very long hours at the Ministry until Christmas Eve night .The Weasleys and their guests were sitting in the living room which Ginny had decorated so lavishly that it was rather like sitting in a paperchain explosion .Fred George Harry and Ron were the only ones who knew that the angel on top of the tree was actually a garden gnome that had bitten Fred on the ankle as he pulled up carrots for Christmas dinner .Stupefied painted gold stuffed into a miniature tutu and with small wings glued to its back it glowered down at them all the ugliest angel Harry had ever seen with a large bald head like a potato and rather hairy feet .They were all supposed to be listening to a Christmas broadcast by Mrs Weasleys favorite singer Celestina Warbeck whose voice was warbling out of the large wooden wireless set .Fleur who seemed to find Celestina very dull was talking so loudly in the corner that a scowling Mrs Weasley kept pointing her wand at the volume control so that Celestina grew louder and louder .Under cover of a particularly jazzy number called A Cauldron Full of Hot Strong Love Fred and George started a game of Exploding Snap with Ginny .Ron kept shooting Bill and Fleur covert looks as though hoping to pick up tips .Meanwhile Remus Lupin who was thinner and more ragged looking than ever was sitting beside the fire staring into its depths as though he could not hear Celestinas voice .Oh come and stir my cauldron And if you do it right Ill boil you up some hot strong love To keep you warm tonight .We danced to this when we were eighteen !said Mrs Weasley wiping her eyes on her knitting .Do you remember Arthur ?Mphf ?said Mr Weasley whose head had been nodding over the satsuma he was peeling .Oh yes .marvelous tune .With an effort he sat up a little straighter and looked around at Harry who was sitting next to him .Sorry about this he said jerking his head toward the wireless as Celestina broke into the chorus .Be over soon .No problem said Harry grinning .Has it been busy at the Ministry ?Very said Mr Weasley .I wouldnt mind if we were getting anywhere but of the three arrests weve made in the last couple of months I doubt that one of them is a genuine Death Eater only dont repeat that Harry he added quickly looking much more awake all of a sudden .Theyre not still holding Stan Shunpike are they ?asked Harry .Im afraid so said Mr Weasley .I know Dumbledores tried appealing directly to Scrimgeour about Stan .I mean anybody who has actually interviewed him agrees that hes about as much a Death Eater as this satsuma .but the top levels want to look as though theyre making some progress and ‘three arrests sounds better than ‘three mistaken arrests and releases .but again this is all top secret .I wont say anything said Harry .He hesitated for a moment wondering how best to embark on what he wanted to say as he marshaled his thoughts Celestina Warbeck began a ballad called You Charmed the Heart Right Out of Me .Mr Weasley you know what I told you at the station when we were setting off for school ?I checked Harry said Mr Weasley at once .I went and searched the Malfoys house .There was nothing either broken or whole that shouldnt have been there .Yeah I know I saw in the Prophet that youd looked .but this is something different .Well something more .And he told Mr Weasley everything he had overheard between Malfoy and Snape .As Harry spoke he saw Lupins head turn a little toward him taking in every word .When he had finished there was silence except for Celestinas crooning .Oh my poor heart where has it gone ?Its left me for a spell .Has it occurred to you Harry said Mr Weasley that Snape was simply pretending ?Pretending to offer help so that he could find out what Malfoys up to ?said Harry quickly .Yeah I thought youd say that .But how do we know ?It isnt our business to know said Lupin unexpectedly .He had turned his back on the fire now and faced Harry across Mr Weasley .Its Dumbledores business .Dumbledore trusts Severus and that ought to be good enough for all of us .But said Harry just say just say Dumbledores wrong about Snape People have said it many times .It comes down to whether or not you trust Dumbledores judgment .I do therefore I trust Severus .But Dumbledore can make mistakes argued Harry .He says it himself .And you he looked Lupin straight in the eye do you honestly like Snape ?I neither like nor dislike Severus said Lupin .No Harry I am speaking the truth he added as Harry pulled a skeptical expression .We shall never be bosom friends perhaps after all that happened between James and Sirius and Severus there is too much bitterness there .But I do not forget that during the year I taught at Hogwarts Severus made the Wolfsbane Potion for me every month made it perfectly so that I did not have to suffer as I usually do at the full moon .But he ‘accidentally let it slip that youre a werewolf so you had to leave !said Harry angrily .Lupin shrugged .The news would have leaked out anyway .We both know he wanted my job but he could have wreaked much worse damage on me by tampering with the potion .He kept me healthy .I must be grateful .Maybe he didnt dare mess with the potion with Dumbledore watching him !said Harry .You are determined to hate him Harry said Lupin with a faint smile .And I understand with James as your father with Sirius as your godfather you have inherited an old prejudice .By all means tell Dumbledore what you have told Arthur and me but do not expect him to share your view of the matter do not even expect him to be surprised by what you tell him .It might have been on Dumbledores orders that Severus questioned Draco . .and now youve torn it quite apart Ill thank you to give back my heart !Celestina ended her song on a very long highpitched note and loud applause issued out of the wireless which Mrs Weasley joined in with enthusiastically .Eez eet over ?said Fleur loudly .Thank goodness what an orrible Shall we have a nightcap then ?asked Mr Weasley loudly leaping to his feet .Who wants eggnog ?What have you been up to lately ?Harry asked Lupin as Mr Weasley bustled off to fetch the eggnog and everybody else stretched and broke into conversation .Oh Ive been underground said Lupin .Almost literally .Thats why I havent been able to write Harry sending letters to you would have been something of a giveaway .What do you mean ?Ive been living among my fellows my equals said Lupin .Werewolves he added at Harrys look of incomprehension .Nearly all of them are on Voldemorts side .Dumbledore wanted a spy and here I was .readymade .He sounded a little bitter and perhaps realized it for he smiled more warmly as he went on I am not complaining it is necessary work and who can do it better than I ?However it has been difficult gaining their trust .I bear the unmistakable signs of having tried to live among wizards you see whereas they have shunned normal society and live on the margins stealing and sometimes killing to eat .How come they like Voldemort ?They think that under his rule they will have a better life said Lupin .And it is hard to argue with Grey back out there .Whos Grey back ?You havent heard of him ?Lupins hands closed convulsively in his lap .Fenrir Greyback is perhaps the most savage werewolf alive today .He regards it as his mission in life to bite and to contaminate as many people as possible he wants to create enough werewolves to overcome the wizards .Voldemort has promised him prey in return for his services .Greyback specializes in children .Bite them young he says and raise them away from their parents raise them to hate normal wizards .Voldemort has threatened to unleash him upon peoples sons and daughters it is a threat that usually produces good results .Lupin paused and then said It was Greyback who bit me .What ?said Harry astonished .When when you were a kid you mean ?Yes .My father had offended him .I did not know for a very long time the identity of the werewolf who had attacked me I even felt pity for him thinking that he had had no control knowing by then how it felt to transform .But Greyback is not like that .At the full moon he positions himself close to victims ensuring that he is near enough to strike .He plans it all .And this is the man Voldemort is using to marshal the werewolves .I cannot pretend that my particular brand of reasoned argument is making much headway against Greybacks insistence that we werewolves deserve blood that we ought to revenge ourselves on normal people .But you are normal !said Harry fiercely .Youve just got a a problem Lupin burst out laughing .Sometimes you remind me a lot of James .He called it my ‘furry little problem in company .Many people were under the impression that I owned a badly behaved rabbit .He accepted a glass of eggnog from Mr Weasley with a word of thanks looking slightly more cheerful .Harry meanwhile felt a rush of excitement This last mention of his father had reminded him that there was something he had been looking forward to asking Lupin .Have you ever heard of someone called the Half Blood Prince ?The HalfBlood what ?Prince said Harry watching him closely for signs of recognition .There are no Wizarding princes said Lupin now smiling .Is this a title youre thinking of adopting ?I should have thought being ‘the Chosen One would be enough .Its nothing to do with me !said Harry indignantly .The HalfBlood Prince is someone who used to go to Hogwarts Ive got his old Potions book .He wrote spells all over it spells he invented .One of them was Levicorpus Oh that one had a great vogue during my time at Hogwarts said Lupin reminiscently .There were a few months in my fifth year when you couldnt move for being hoisted into the air by your ankle .My dad used it said Harry .I saw him in the Pensieve he used it on Snape .He tried to sound casual as though this was a throwaway comment of no real importance but he was not sure he had achieved the right effect Lupins smile was a little too understanding .Yes he said but he wasnt the only one .As I say it was very popular .You know how these spells come and go .But it sounds like it was invented while you were at school Harry persisted .Not necessarily said Lupin .Jinxes go in and out of fashion like everything else .He looked into Harrys face and then said quietly James was a pureblood Harry and I promise you he never asked us to call him ‘Prince .Abandoning pretense Harry said And it wasnt Sirius ?Or you ?Definitely not .Oh .Harry stared into the fire .I just thought well hes helped me out a lot in Potions classes the Prince has .How old is this book Harry ?I dunno Ive never checked .Well perhaps that will give you some clue as to when the Prince was at Hogwarts said Lupin .Shortly after this Fleur decided to imitate Celestina singing A Cauldron Full of Hot Strong Love which was taken by everyone once they had glimpsed Mrs Weasleys expression to be the cue to go to bed .Harry and Ron climbed all the way up to Rons attic bedroom where a camp bed had been added for Harry .Ron fell asleep almost immediately but Harry delved into his trunk and pulled out his copy of Advanced PotionMaking before getting into bed .There he turned its pages searching until he finally found at the front of the book the date that it had been published .It was nearly fifty years old .Neither his father nor his fathers friends had been at Hogwarts fifty years ago .Feeling disappointed Harry threw the book back into his trunk turned off the lamp and rolled over thinking of werewolves and Snape Stan Shunpike and the HalfBlood Prince and finally falling into an uneasy sleep full of creeping shadows and the cries of bitten children .Shes got to be joking .Harry woke with a start to find a bulging stocking lying over the end of his bed .He put on his glasses and looked around the tiny window was almost completely obscured with snow and in front of it Ron was sitting bolt upright in bed and examining what appeared to be a thick gold chain .Whats that ?asked Harry .Its from Lavender said Ron sounding revolted .She cant honestly think Id wear .Harry looked more closely and let out a shout of laughter .Dangling from the chain in large gold letters were the words My Sweetheart Nice he said .Classy .You should definitely wear it in front of Fred and George .If you tell them said Ron shoving the necklace out of sight under his pillow I I 111 Stutter at me ?said Harry grinning .Come on would I ?How could she think Id like something like that though ?Ron demanded of thin air looking rather shocked .Well think back said Harry .Have you ever let it slip that youd like to go out in public with the words ‘My Sweetheart round your neck ?Well .we dont really talk much said Ron .Its mainly .Snogging said Harry .Well yeah said Ron .He hesitated a moment then said Is Hermione really going out with McLaggen ?I dunno said Harry .They were at Slughorns party together but I dont think it went that well .Ron looked slightly more cheerful as he delved deeper into his stocking .Harrys presents included a sweater with a large Golden Snitch worked onto the front handknitted by Mrs Weasley a large box of Weasleys Wizard Wheezes products from the twins and a slightly damp moldysmelling package that came with a label reading TO MASTER FROM KREACHER .Harry stared at it .Dyou reckon this is safe to open ?he asked .Cant be anything dangerous all our mails still being searched at the Ministry replied Ron though he was eyeing the parcel suspiciously .I didnt think of giving Kreacher anything .Do people usually give their houseelves Christmas presents ?asked Harry prodding the parcel cautiously .Hermione would said Ron .But lets wait and see what it is before you start feeling guilty .A moment later Harry had given a loud yell and leapt out of his camp bed the package contained a large number of maggots .Nice said Ron roaring with laughter .Very thoughtful .Id rather have them than that necklace said Harry which sobered Ron up at once .Everybody was wearing new sweaters when they all sat down for Christmas lunch everyone except Fleur on whom it appeared Mrs Weasley had not wanted to waste one and Mrs Weasley herself who was sporting a brandnew midnight blue witchs hat glittering with what looked like tiny starlike diamonds and a spectacular golden necklace .Fred and George gave them to me !Arent they beautiful ?Well we find we appreciate you more and more Mum now were washing our own socks said George waving an airy hand .Parsnips Remus ?Harry youve got a maggot in your hair said Ginny cheerfully leaning across the table to pick it out Harry felt goose bumps erupt up his neck that had nothing to do with the maggot .Ow orrible said Fleur with an affected little shudder .Yes isnt it ?said Ron .Gravy Fleur ?In his eagerness to help her he knocked the gravy boat flying Bill waved his wand and the gravy soared up in the air and returned meekly to the boat .You are as bad as zat Tonks said Fleur to Ron when she had finished kissing Bill in thanks .She is always knocking I invited dear Tonks to come along today said Mrs Weasley setting down the carrots with unnecessary force and glaring at Fleur .But she wouldnt come .Have you spoken to her lately Remus ?No I havent been in contact with anybody very much said Lupin .But Tonks has got her own family to go to hasnt she ?Hmmm said Mrs Weasley .Maybe .I got the impression she was planning to spend Christmas alone actually .She gave Lupin an annoyed look as though it was all his fault she was getting Fleur for a daughterinlaw instead of Tonks but Harry glancing across at Fleur who was now feeding Bill bits of turkey off her own fork thought that Mrs Weasley was fighting a long lost battle .He was however reminded of a question he had with regard to Tonks and who better to ask than Lupin the man who knew all about Patronuses ?Tonkss Patronus has changed its form he told him .Snape said so anyway .I didnt know that could happen .Why would your Patronus change ?Lupin took his time chewing his turkey and swallowing before saying slowly Sometimes .a great shock .an emotional upheaval .It looked big and it had four legs said Harry struck by a sudden thought and lowering his voice .Hey .it couldnt be ?Arthur !said Mrs Weasley suddenly .She had risen from her chair her hand was pressed over her heart and she was staring out of the kitchen window .Arthur its Percy !What ?Mr Weasley looked around .Everybody looked quickly at the window Ginny stood up for a better look .There sure enough was Percy Weasley striding across the snowy yard his hornrimmed glasses glinting in the sunlight .He was not however alone .Arthur hes hes with the Minister !And sure enough the man Harry had seen in the Daily Prophet was following along in Percys wake limping slightly his mane of graying hair and his black cloak flecked with snow .Before any of them could say anything before Mr and Mrs Weasley could do more than exchange stunned looks the back door opened and there stood Percy .There was a moments painful silence .Then Percy said rather stiffly Merry Christmas Mother .Oh Percy said Mrs Weasley and she threw herself into his arms .Rufus Scrimgeour paused in the doorway leaning on his walking stick and smiling as he observed this affecting scene .You must forgive this intrusion he said when Mrs Weasley looked around at him beaming and wiping her eyes .Percy and I were in the vicinity working you know and he couldnt resist dropping in and seeing you all .But Percy showed no sign of wanting to greet any of the rest of the family .He stood pokerstraight and awkwardlooking and stared over everybody elses heads .Mr Weasley Fred and George were all observing him stonyfaced .Please come in sit down Minister !fluttered Mrs Weasley straightening her hat .Have a little purkey or some tooding .I mean No no my dear Molly said Scrimgeour .Harry guessed that he had checked her name with Percy before they entered the house .I dont want to intrude wouldnt be here at all if Percy hadnt wanted to see you all so badly .Oh Perce !said Mrs Weasley tearfully reaching up to kiss him . .Weve only looked in for five minutes so Ill have a stroll around the yard while you catch up with Percy .No no I assure you I dont want to butt in !Well if anybody cared to show me your charming garden .Ah that young mans finished why doesnt he take a stroll with me ?The atmosphere around the table changed perceptibly .Everybody looked from Scrimgeour to Harry .Nobody seemed to find Scrimgeour s pretense that he did not know Harrys name convincing or find it natural that he should be chosen to accompany the Minister around the garden when Ginny Fleur and George also had clean plates .Yeah all right said Harry into the silence .He was not fooled for all Scrimgeours talk that they had just been in the area that Percy wanted to look up his family this must be the real reason that they had come so that Scrimgeour could speak to Harry alone .Its fine he said quietly as he passed Lupin who had half risen from his chair .Fine he added as Mr Weasley opened his mouth to speak .Wonderful !said Scrimgeour standing back to let Harry pass through the door ahead of him .Well just take a turn around the garden and Percy and Ill be off .Carry on everyone !Harry walked across the yard toward the Weasleys overgrown snowcovered garden Scrimgeour limping slightly at his side .He had Harry knew been Head of the Auror office he looked tough and battlescarred very different from portly Fudge in his bowler hat .Charming said Scrimgeour stopping at the garden fence and looking out over the snowy lawn and the indistinguishable plants .Charming .Harry said nothing .He could tell that Scrimgeour was watching him .Ive wanted to meet you for a very long time said Scrimgeour after a few moments .Did you know that ?No said Harry truthfully .Oh yes for a very long time .But Dumbledore has been very protective of you said Scrimgeour .Natural of course natural after what youve been through .Especially what happened at the Ministry He waited for Harry to say something but Harry did not oblige so he went on I have been hoping for an occasion to talk to you ever since I gained office but Dumbledore has most understandably as I say prevented this .Still Harry said nothing waiting .The rumors that have flown around !said Scrimgeour .Well of course we both know how these stories get distorted .all these whispers of a prophecy .of you being ‘the Chosen One .They were getting near it now Harry thought the reason Scrimgeour was here . .I assume that Dumbledore has discussed these matters with you ?Harry deliberated wondering whether he ought to lie or not .He looked at the little gnome prints all around the flowerbeds and the scuffedup patch that marked the spot where Fred had caught the gnome now wearing the tutu at the top of the Christmas tree .Finally he decided on the truth .or a bit of it .Yeah weve discussed it .Have you have you .said Scrimgeour .Harry could see out of the corner of his eye Scrimgeour squinting at him so he pretended to be very interested in a gnome that had just poked its head out from underneath a frozen rhododendron .And what has Dumbledore told you Harry ?Sorry but thats between us said Harry .He kept his voice as pleasant as he could and Scrimgeours tone too was light and friendly as he said Oh of course if its a question of confidences I wouldnt want you to divulge .no no .and in any case does it really matter whether you are ‘the Chosen One or not ?Harry had to mull that one over for a few seconds before responding .I dont really know what you mean Minister .Well of course to you it will matter enormously said Scrimgeour with a laugh .But to the Wizarding community at large .its all perception isnt it ?Its what people believe thats important .Harry said nothing .He thought he saw dimly where they were heading but he was not going to help Scrimgeour get there .The gnome under the rhododendron was now digging for worms at its roots and Harry kept his eyes fixed upon it .People believe you are ‘the Chosen One you see said Scrimgeour .They think you quite the hero which of course you are Harry chosen or not !How many times have you faced HeWhoMustNotBe Named now ?Well anyway he pressed on without waiting for a reply the point is you are a symbol of hope for many Harry .The idea that there is somebody out there who might be able who might even be destined to destroy HeWhoMustNotBe Named well naturally it gives people a lift .And I cant help but feel that once you realize this you might consider it well almost a duty to stand alongside the Ministry and give everyone a boost .The gnome had just managed to get hold of a worm .It was now tugging very hard on it trying to get it out of the frozen ground .Harry was silent so long that Scrimgeour said looking from Harry to the gnome Funny little chaps arent they ?But what say you Harry ?I dont exactly understand what you want said Harry slowly . ‘Stand alongside the Ministry .What does that mean ?Oh well nothing at all onerous I assure you said Scrimgeour .If you were to be seen popping in and out of the Ministry from time to time for instance that would give the right impression .And of course while you were there you would have ample opportunity to speak to Gawain Robards my successor as Head of the Auror office .Dolores Umbridge has told me that you cherish an ambition to become an Auror .Well that could be arranged very easily .Harry felt anger bubbling in the pit of his stomach So Dolores Umbridge was still at the Ministry was she ?So basically he said as though he just wanted to clarify a few points youd like to give the impression that Im working for the Ministry ?It would give everyone a lift to think you were more involved Harry said Scrimgeour sounding relieved that Harry had cottoned on so quickly .The Chosen One you know .Its all about giving people hope the feeling that exciting things are happening .But if I keep running in and out of the Ministry said Harry still endeavoring to keep his voice friendly wont that seem as though I approve of what the Ministrys up to ?Well said Scrimgeour frowning slightly well yes thats partly why wed like No I dont think thatll work said Harry pleasantly .You see I dont like some of the things the Ministrys doing .Locking up Stan Shunpike for instance .Scrimgeour did not speak for a moment but his expression hardened instantly .I would not expect you to understand he said and he was not as successful at keeping anger out of his voice as Harry had been .These are dangerous times and certain measures need to be taken .You are sixteen years old Dumbledores a lot older than sixteen and he doesnt think Stan should be in Azkaban either said Harry .Youre making Stan a scapegoat just like you want to make me a mascot .They looked at each other long and hard .Finally Scrimgeour said with no pretense at warmth I see .You prefer like your hero Dumbledore to disassociate yourself from the Ministry ?I dont want to be used said Harry .Some would say its your duty to be used by the Ministry !Yeah and others might say its your duty to check that people really are Death Eaters before you chuck them in prison said Harry his temper rising now .Youre doing what Barty Crouch did .You never get it right you people do you ?Either weve got Fudge pretending everythings lovely while people get murdered right under his nose or weve got you chucking the wrong people into jail and trying to pretend youve got ‘the Chosen One working for you !So youre not ‘the Chosen One ?said Scrimgeour .I thought you said it didnt matter either way ?said Harry with a bitter laugh .Not to you anyway .I shouldnt have said that said Scrimgeour quickly .It was tactless No it was honest said Harry .One of the only honest things youve said to me .You dont care whether I live or die but you do care that I help you convince everyone youre winning the war against Voldemort .I havent forgotten Minister .He raised his right fist .There shining white on the back of his cold hand were the scars which Dolores Umbridge had forced him to carve into his own flesh must not tell lies .I dont remember you rushing to my defense when I was trying to tell everyone Voldemort was back .The Ministry wasnt so keen to be pals last year .They stood in silence as icy as the ground beneath their feet .The gnome had finally managed to extricate his worm and was now sucking on it happily leaning against the bottommost branches of the rhododendron bush .What is Dumbledore up to ?said Scrimgeour brusquely .Where does he go when he is absent from Hogwarts ?No idea said Harry .And you wouldnt tell me if you knew said Scrimgeour would you ?No I wouldnt said Harry .Well then I shall have to see whether I cant find out by other means .You can try said Harry indifferently .But you seem cleverer than Fudge so Id have thought youd have learned from his mistakes .He tried interfering at Hogwarts .You might have noticed hes not Minister anymore but Dumbledores still headmaster .Id leave Dumbledore alone if I were you .There was a long pause .Well it is clear to me that he has done a very good job on you said Scrimgeour his eyes cold and hard behind his wirerimmed glasses .Dumbledores man through and through arent you Potter ?Yeah I am said Harry .Glad we straightened that out .And turning his back on the Minister of Magic he strode back toward the house .A SLUGGISH MEMORY Late in the afternoon a few days after New Year Harry Ron and Ginny lined up beside the kitchen fire to return to Hogwarts .The Ministry had arranged this oneoff connection to the Floo Network to return students quickly and safely to the school .Only Mrs Weasley was there to say goodbye as Mr Weasley Fred George Bill and Fleur were all at work .Mrs Weasley dissolved into tears at the moment of parting .Admittedly it took very little to set her off lately she had been crying on and off ever since Percy had stormed from the house on Christmas Day with his glasses splattered with mashed parsnip for which Fred George and Ginny all claimed credit .Dont cry Mum said Ginny patting her on the back as Mrs Weasley sobbed into her shoulder .Its okay .Yeah dont worry about us said Ron permitting his mother to plant a very wet kiss on his cheek or about Percy .Hes such a prat its not really a loss is it ?Mrs Weasley sobbed harder than ever as she enfolded Harry in her arms .Promise me youll look after yourself .Stay out of trouble .I always do Mrs Weasley said Harry .I like a quiet life you know me .She gave a watery chuckle and stood back .Be good then all of you .Harry stepped into the emerald fire and shouted Hogwarts !He had one last fleeting view of the Weasleys kitchen and Mrs Weasleys tearful face before the flames engulfed him spinning very fast he caught blurred glimpses of other Wizarding rooms which were whipped out of sight before he could get a proper look then he was slowing down finally stopping squarely in the fireplace in Professor McGonagalls office .She barely glanced up from her work as he clambered out over the grate .Evening Potter .Try not to get too much ash on the carpet .No Professor .Harry straightened his glasses and flattened his hair as Ron came spinning into view .When Ginny had arrived all three of them trooped out of McGonagalls office and off toward Gryffindor Tower .Harry glanced out of the corridor windows as they passed the sun was already sinking over grounds carpeted in deeper snow than had lain over the Burrow garden .In the distance he could see Hagrid feeding Buckbeak in front of his cabin .Baubles said Ron confidently when they reached the Fat Lady who was looking rather paler than usual and winced at his loud voice .No she said .What dyou mean ‘no ?There is a new password she said .And please dont shout .But weve been away howre we supposed to ?Harry !Ginny !Hermione was hurrying toward them very pinkfaced and wearing a cloak hat and gloves .I got back a couple of hours ago Ive just been down to visit Hagrid and Buck I mean Witherwings she said breathlessly .Did you have a good Christmas ?Yeah said Ron at once pretty eventful Rufus Scrim Ive got something for you Harry said Hermione neither looking at Ron nor giving any sign that she had heard him .Oh hang on password .Abstinence .Precisely said the Fat Lady in a feeble voice and swung forward to reveal the portrait hole .Whats up with her ?asked Harry .Overindulged over Christmas apparently said Hermione rolling her eyes as she led the way into the packed common room .She and her friend Violet drank their way through all the wine in that picture of drunk monks down by the Charms corridor .Anyway She rummaged in her pocket for a moment then pulled out a scroll of parchment with Dumbledores writing on it .Great said Harry unrolling it at once to discover that his next lesson with Dumbledore was scheduled for the following night .Ive got loads to tell him and you .Lets sit down But at that moment there was a loud squeal of Won Won !and Lavender Brown came hurtling out of nowhere and flung herself into Rons arms .Several onlookers sniggered Hermione gave a tinkling laugh and said Theres a table over here .Coming Ginny ?No thanks I said Id meet Dean said Ginny though Harry could not help noticing that she did not sound very enthusiastic .Leaving Ron and Lavender locked in a kind of vertical wrestling match Harry led Hermione over to the spare table .So how was your Christmas ?Oh fine she shrugged .Nothing special .How was it at WonWons ?Ill tell you in a minute said Harry .Look Hermione cant you ?No I cant she said flatly .So dont even ask .I thought maybe you know over Christmas It was the Fat Lady who drank a vat of fivehundred year old wine Harry not me .So what was this important news you wanted to tell me ?She looked too fierce to argue with at that moment so Harry dropped the subject of Ron and recounted all that he had overheard between Malfoy and Snape .When he had finished Hermione sat in thought for a moment and then said Dont you think ?he was pretending to offer help so that he could trick Malfoy into telling him what hes doing ?Well yes said Hermione .Rons dad and Lupin think so Harry said grudgingly .But this definitely proves Malfoys planning something you cant deny that .No I cant she answered slowly .And hes acting on Voldemorts orders just like I said !Hmm .did either of them actually mention Voldemorts name ?Harry frowned trying to remember .Im not sure .Snape definitely said your master and who else would that be ?I dont know said Hermione biting her lip .Maybe his father ?She stared across the room apparently lost in thought not even noticing Lavender tickling Ron .Hows Lupin ?Not great said Harry and he told her all about Lupins mission among the werewolves and the difficulties he was facing .Have you heard of this Fenrir Grey back ?Yes I have !said Hermione sounding startled .And so have you Harry !When History of Magic ?You know full well I never listened .No no not History of Magic Malfoy threatened Borgin with him !said Hermione .Back in Knockturn Alley dont you remember ?He told Borgin that Grey back was an old family friend and that hed be checking up on Borgins progress !Harry gaped at her .I forgot !But this proves Malfoys a Death Eater how else could he be in contact with Greyback and telling him what to do ?It is pretty suspicious breathed Hermione .Unless Oh come on said Harry in exasperation you cant get round this one !Well .there is the possibility it was an empty threat .Youre unbelievable you are said Harry shaking his head .Well see whos right .Youll be eating your words Hermione just like the Ministry .Oh yeah I had a row with Rufus Scrimgeour as well .And the rest of the evening passed amicably with both of them abusing the Minister of Magic for Hermione like Ron thought that after all the Ministry had put Harry through the previous year they had a great deal of nerve asking him for help now .The new term started next morning with a pleasant surprise for the sixth years a large sign had been pinned to the common room notice boards overnight .APPARITION LESSONS If you are seventeen years of age or will turn seventeen on or before the 31st August next you are eligible for a twelveweek course of Apparition Lessons from a Ministry of Magic Apparition instructor .Please sign below if you would like to participate .Cost 12 Galleons .Harry and Ron joined the crowd that was jostling around the notice and taking it in turns to write their names at the bottom .Ron was just taking out his quill to sign after Hermione when Lavender crept up behind him slipped her hands over his eyes and trilled Guess who WonWon ?Harry turned to see Hermione stalking off he caught up with her having no wish to stay behind with Ron and Lavender but to his surprise Ron caught up with them only a little way beyond the portrait hole his ears bright red and his expression disgruntled .Without a word Hermione sped up to walk with Neville .So Apparition said Ron his tone making it perfectly plain that Harry was not to mention what had just happened .Should be a laugh eh ?I dunno said Harry .Maybe its better when you do it yourself I didnt enjoy it much when Dumbledore took me along for the ride .I forgot youd already done it .Id better pass my test first time said Ron looking anxious .Fred and George did .Charlie failed though didnt he ?Yeah but Charlies bigger than me Ron held his arms out from his body as though he was a gorilla so Fred and George didnt go on about it much .not to his face anyway .When can we take the actual test ?Soon as were seventeen .Thats only March for me !Yeah but you wouldnt be able to Apparate in here not in the castle .Not the point is it ?Everyone would know I could Apparate if I wanted .Ron was not the only one to be excited at the prospect of Apparition .All that day there was much talk about the forthcoming lessons a great deal of store was set by being able to vanish and reappear at will .How cool will it be when we can just Seamus clicked his fingers to indicate disappearance .Me cousin Fergus does it just to annoy me you wait till I can do it back .Hell never have another peaceful moment .Lost in visions of this happy prospect he flicked his wand a little too enthusiastically so that instead of producing the fountain of pure water that was the object of todays Charms lesson he let out a hoselike jet that ricocheted off the ceiling and knocked Professor Flitwick flat on his face .Harrys already Apparated Ron told a slightly abashed Seamus after Professor Flitwick had dried himself off with a wave of his wand and set Seamus lines I am a wizard not a baboon brandishing a stick .Dum er someone took him .SideAlong Apparition you know .Whoa !whispered Seamus and he Dean and Neville put their heads a little closer to hear what Apparition felt like .For the rest of the day Harry was besieged with requests from the other sixth years to describe the sensation of Apparition .All of them seemed awed rather than put off when he told them how uncomfortable it was and he was still answering detailed questions at ten to eight that evening when he was forced to lie and say that he needed to return a book to the library so as to escape in time for his lesson with Dumbledore .The lamps in Dumbledore s office were lit the portraits of previous headmasters were snoring gently in their frames and the Pensieve was ready upon the desk once more .Dumbledore s hands lay on either side of it the right one as blackened and burnt looking as ever .It did not seem to have healed at all and Harry wondered for perhaps the hundredth time what had caused such a distinctive injury but did not ask Dumbledore had said that he would know eventually and there was in any case another subject he wanted to discuss .But before Harry could say anything about Snape and Malfoy Dumbledore spoke .I hear that you met the Minister of Magic over Christmas ?Yes said Harry .Hes not very happy with me .No sighed Dumbledore .He is not very happy with me either .We must try not to sink beneath our anguish Harry but battle on .Harry grinned .He wanted me to tell the Wizarding community that the Ministrys doing a wonderful job .Dumbledore smiled .It was Fudges idea originally you know .During his last days in office when he was trying desperately to cling to his post he sought a meeting with you hoping that you would give him your support After everything Fudge did last year ?said Harry angrily .After Umbridge ?I told Cornelius there was no chance of it but the idea did not die when he left office .Within hours of Scrimgeours appointment we met and he demanded that I arrange a meeting with you So thats why you argued !Harry blurted out .It was in the Daily Prophet The Prophet is bound to report the truth occasionally said Dumbledore if only accidentally .Yes that was why we argued .Well it appears that Rufus found a way to corner you at last .He accused me of being ‘Dumbledore s man through and through .How very rude of him .I told him I was .Dumbledore opened his mouth to speak and then closed it again .Behind Harry Fawkes the phoenix let out a low soft musical cry .To Harrys intense embarrassment he suddenly realized that Dumbledore s bright blue eyes looked rather watery and stared hastily at his own knees .When Dumbledore spoke however his voice was quite steady .I am very touched Harry .Scrimgeour wanted to know where you go when youre not at Hogwarts said Harry still looking fixedly at his knees .Yes he is very nosy about that said Dumbledore now sounding cheerful and Harry thought it safe to look up again .He has even attempted to have me followed .Amusing really .He set Dawlish to tail me .It wasnt kind .I have already been forced to jinx Dawlish once I did it again with the greatest regret .So they still dont know where you go ?asked Harry hoping for more information on this intriguing subject but Dumbledore merely smiled over the top of his halfmoon spectacles .No they dont and the time is not quite right for you to know either .Now I suggest we press on unless theres anything else ?There is actually sir said Harry .Its about Malfoy and Snape .Professor Snape Harry .Yes sir .I overheard them during Professor Slughorns party .well I followed them actually .Dumbledore listened to Harrys story with an impassive face .When Harry had finished he did not speak for a few moments then said Thank you for telling me this Harry but I suggest that you put it out of your mind .I do not think that it is of great importance .Not of great importance ?repeated Harry incredulously .Professor did you understand ?Yes Harry blessed as I am with extraordinary brainpower I understood everything you told me said Dumbledore a little sharply .I think you might even consider the possibility that I understood more than you did .Again I am glad that you have confided in me but let me reassure you that you have not told me anything that causes me disquiet .Harry sat in seething silence glaring at Dumbledore .What was going on ?Did this mean that Dumbledore had indeed ordered Snape to find out what Malfoy was doing in which case he had already heard everything Harry had just told him from Snape ?Or was he really worried by what he had heard but pretending not to be ?So sir said Harry in what he hoped was a polite calm voice you definitely still trust ?I have been tolerant enough to answer that question already said Dumbledore but he did not sound very tolerant anymore .My answer has not changed .I should think not said a snide voice Phineas Nigellus was evidently only pretending to be asleep .Dumbledore ignored him .And now Harry I must insist that we press on .I have more important things to discuss with you this evening .Harry sat there feeling mutinous .How would it be if he refused to permit the change of subject if he insisted upon arguing the case against Malfoy ?As though he had read Harrys mind Dumbledore shook his head .Ah Harry how often this happens even between the best of friends !Each of us believes that what he has to say is much more important than anything the other might have to contribute !I dont think what youve got to say is unimportant sir said Harry stiffly .Well you are quite right because it is not said Dumbledore briskly .I have two more memories to show you this evening both obtained with enormous difficulty and the second of them is I think the most important I have collected .Harry did not say anything to this he still felt angry at the reception his confidences had received but could not see what was to be gained by arguing further .So said Dumbledore in a ringing voice we meet this evening to continue the tale of Tom Riddle whom we left last lesson poised on the threshold of his years at Hogwarts .You will remember how excited he was to hear that he was a wizard that he refused my company on a trip to Diagon Alley and that I in turn warned him against continued thievery when he arrived at school .Well the start of the school year arrived and with it came Tom Riddle a quiet boy in his secondhand robes who lined up with the other first years to be sorted .He was placed in Slytherin House almost the moment that the Sorting Hat touched his head continued Dumbledore waving his blackened hand toward the shelf over his head where the Sorting Hat sat ancient and unmoving .How soon Riddle learned that the famous founder of the House could talk to snakes I do not know perhaps that very evening .The knowledge can only have excited him and increased his sense of selfimportance .However if he was frightening or impressing fellow Slytherins with displays of Parseltongue in their common room no hint of it reached the staff .He showed no sign of outward arrogance or aggression at all .As an unusually talented and very goodlooking orphan he naturally drew attention and sympathy from the staff almost from the moment of his arrival .He seemed polite quiet and thirsty for knowledge .Nearly all were most favorably impressed by him .Didnt you tell them sir what hed been like when you met him at the orphanage ?asked Harry .No I did not .Though he had shown no hint of remorse it was possible that he felt sorry for how he had behaved before and was resolved to turn over a fresh leaf .I chose to give him that chance .Dumbledore paused and looked inquiringly at Harry who had opened his mouth to speak .Here again was Dumbledore s tendency to trust people in spite of overwhelming evidence that they did not deserve it !But then Harry remembered something .But you didnt really trust him sir did you ?He told me .the Riddle who came out of that diary said ‘Dumbledore never seemed to like me as much as the other teachers did .Let us say that I did not take it for granted that he was trustworthy said Dumbledore .I had as I have already indicated resolved to keep a close eye upon him and so I did .I cannot pretend that I gleaned a great deal from my observations at first .He was very guarded with me he felt I am sure that in the thrill of discovering his true identity he had told me a little too much .He was careful never to reveal as much again but he could not take back what he had let slip in his excitement nor what Mrs Cole had confided in me .However he had the sense never to try and charm me as he charmed so many of my colleagues .As he moved up the school he gathered about him a group of dedicated friends I call them that for want of a better term although as I have already indicated Riddle undoubtedly felt no affection for any of them .This group had a kind of dark glamour within the castle .They were a motley collection a mixture of the weak seeking protection the ambitious seeking some shared glory and the thuggish gravitating toward a leader who could show them more refined forms of cruelty .In other words they were the forerunners of the Death Eaters and indeed some of them became the first Death Eaters after leaving Hogwarts .Rigidly controlled by Riddle they were never detected in open wrongdoing although their seven years at Hogwarts were marked by a number of nasty incidents to which they were never satisfactorily linked the most serious of which was of course the opening of the Chamber of Secrets which resulted in the death of a girl .As you know Hagrid was wrongly accused of that crime .I have not been able to find many memories of Riddle at Hogwarts said Dumbledore placing his withered hand on the Pensieve .Few who knew him then are prepared to talk about him they are too terrified .What I know I found out after he had left Hogwarts after much painstaking effort after tracing those few who could be tricked into speaking after searching old records and questioning Muggle and wizard witnesses alike .Those whom I could persuade to talk told me that Riddle was obsessed with his parentage .This is understandable of course he had grown up in an orphanage and naturally wished to know how he came to be there .It seems that he searched in vain for some trace of Tom Riddle senior on the shields in the trophy room on the lists of prefects in the old school records even in the books of Wizarding history .Finally he was forced to accept that his father had never set foot in Hogwarts .I believe that it was then that he dropped the name forever assumed the identity of Lord Voldemort and began his investigations into his previously despised mothers family the woman whom you will remember he had thought could not be a witch if she had succumbed to the shameful human weakness of death .All he had to go upon was the single name ‘Marvolo which he knew from those who ran the orphanage had been his mothers fathers name .Finally after painstaking research through old books of Wizarding families he discovered the existence of Slytherins surviving line .In the summer of his sixteenth year he left the orphanage to which he returned annually and set off to find his Gaunt relatives .And now Harry if you will stand .Dumbledore rose and Harry saw that he was again holding a small crystal bottle filled with swirling pearly memory .I was very lucky to collect this he said as he poured the gleaming mass into the Pensieve .As you will understand when we have experienced it .Shall we ?Harry stepped up to the stone basin and bowed obediently until his face sank through the surface of the memory he felt the familiar sensation of falling through nothingness and then landed upon a dirty stone floor in almost total darkness .It took him several seconds to recognize the place by which time Dumbledore had landed beside him .The Gaunts house was now more indescribably filthy than anywhere Harry had ever seen .The ceiling was thick with cobwebs the floor coated in grime moldy and rotting food lay upon the table amidst a mass of crusted pots .The only light came from a single guttering candle placed at the feet of a man with hair and beard so overgrown Harry could see neither eyes nor mouth .He was slumped in an armchair by the fire and Harry wondered for a moment whether he was dead .But then there came a loud knock on the door and the man jerked awake raising a wand in his right hand and a short knife in his left .The door creaked open .There on the threshold holding an oldfashioned lamp stood a boy Harry recognized at once tall pale darkhaired and handsome the teenage Voldemort .Voldemorts eyes moved slowly around the hovel and then found the man in the armchair .For a few seconds they looked at each other then the man staggered upright the many empty bottles at his feet clattering and tinkling across the floor .YOU !he bellowed .YOU !And he hurtled drunkenly at Riddle wand and knife held aloft .Stop .Riddle spoke in Parseltongue .The man skidded into the table sending moldy pots crashing to the floor .He stared at Riddle .There was a long silence while they contemplated each other .The man broke it .You speak it ?Yes I speak it said Riddle .He moved forward into the room allowing the door to swing shut behind him .Harry could not help but feel a resentful admiration for Voldemorts complete lack of fear .His face merely expressed disgust and perhaps disappointment .Where is Marvolo ?he asked .Dead said the other .Died years ago didnt he ?Riddle frowned .Who are you then ?Im Morfin aint 1 ?Marvolo s son ?Course I am then .Morfin pushed the hair out of his dirty face the better to see Riddle and Harry saw that he wore Marvolos blackstoned ring on his right hand .I thought you was that Muggle whispered Morfin .You look mighty like that Muggle .What Muggle ?said Riddle sharply .That Muggle what my sister took a fancy to that Muggle what lives in the big house over the way said Morfin and he spat unexpectedly upon the floor between them .You look right like him .Riddle .But hes older now in e ?Hes oldern you now I think on it .Morfin looked slightly dazed and swayed a little still clutching the edge of the table for support .He come back see he added stupidly .Voldemort was gazing at Morfin as though appraising his possibilities .Now he moved a little closer and said Riddle came back ?Ar he left her and serve her right marrying filth said Morfin spitting on the floor again .Robbed us mind before she ran off !Wheres the locket eh wheres Slytherins locket ?Voldemort did not answer .Morfin was working himself into a rage again he brandished his knife and shouted Dishonored us she did that little slut !And whore you coming here and asking questions about all that ?Its over innit .Its over .He looked away staggering slightly and Voldemort moved forward .As he did so an unnatural darkness fell extinguishing Voldemorts lamp and Morfin s candle extinguishing everything .Dumbledores fingers closed tightly around Harrys arm and they were soaring back into the present again .The soft golden light in Dumbledores office seemed to dazzle Harrys eyes after that impenetrable darkness .Is that all ?said Harry at once .Why did it go dark what happened ?Because Morfin could not remember anything from that point onward said Dumbledore gesturing Harry back into his seat .When he awoke next morning he was lying on the floor quite alone .Marvolos ring had gone .Meanwhile in the village of Little Hangleton a maid was running along the High Street screaming that there were three bodies lying in the drawing room of the big house Tom Riddle Senior and his mother and father .The Muggle authorities were perplexed .As far as I am aware they do not know to this day how the Riddles died for the Avada Kedavra curse does not usually leave any sign of damage .The exception sits before me Dumbledore added with a nod to Harrys scar .The Ministry on the other hand knew at once that this was a wizards murder .They also knew that a convicted Mugglehater lived across the valley from the Riddle house a Mugglehater who had already been imprisoned once for attacking one of the murdered people .So the Ministry called upon Morfin .They did not need to question him to use Veritaserum or Legilimency .He admitted to the murder on the spot giving details only the murderer could know .He was proud he said to have killed the Muggles had been awaiting his chance all these years .He handed over his wand which was proved at once to have been used to kill the Riddles .And he permitted himself to be led off to Azkaban without a fight .All that disturbed him was the fact that his fathers ring had disappeared . ‘Hell kill me for losing it he told his captors over and over again . ‘Hell kill me for losing his ring .And that apparently was all he ever said again .He lived out the remainder of his life in Azkaban lamenting the loss of Marvolos last heirloom and is buried beside the prison alongside the other poor souls who have expired within its walls .So Voldemort stole Morfins wand and used it ?said Harry sitting up straight .Thats right said Dumbledore .We have no memories to show us this but I think we can be fairly sure what happened .Voldemort Stupefied his uncle took his wand and proceeded across the valley to ‘the big house over the way .There he murdered the Muggle man who had abandoned his witch mother and for good measure his Muggle grandparents thus obliterating the last of the unworthy Riddle line and revenging himself upon the father who never wanted him .Then he returned to the Gaunt hovel performed the complex bit of magic that would implant a false memory in his uncles mind laid Morfins wand beside its unconscious owner pocketed the ancient ring he wore and departed .And Morfin never realized he hadnt done it ?Never said Dumbledore .He gave as I say a full and boastful confession .But he had this real memory in him all the time !Yes but it took a great deal of skilled Legilimency to coax it out of him said Dumbledore and why should anybody delve further into Morfins mind when he had already confessed to the crime ?However I was able to secure a visit to Morfin in the last weeks of his life by which time I was attempting to discover as much as I could about Voldemorts past .I extracted this memory with difficulty .When I saw what it contained I attempted to use it to secure Morfins release from Azkaban .Before the Ministry reached their decision however Morfin had died .But how come the Ministry didnt realize that Voldemort had done all that to Morfin ?Harry asked angrily .He was underage at the time wasnt he ?I thought they could detect underage magic !You are quite right they can detect magic but not the perpetrator You will remember that you were blamed by the Ministry for the Hover Charm that was in fact cast by Dobby growled Harry this injustice still rankled .So if youre underage and you do magic inside an adult witch or wizards house the Ministry wont know ?They will certainly be unable to tell who performed the magic said Dumbledore smiling slightly at the look of great indignation on Harrys face .They rely on witch and wizard parents to enforce their offsprings obedience while within their walls .Well thats rubbish snapped Harry .Look what happened here look what happened to Morfin !I agree said Dumbledore .Whatever Morfin was he did not deserve to die as he did blamed for murders he had not committed .But it is getting late and I want you to see this other memory before we part .Dumbledore took from an inside pocket another crystal phial and Harry fell silent at once remembering that Dumbledore had said it was the most important one he had collected .Harry noticed that the contents proved difficult to empty into the Pensieve as though they had congealed slightly did memories go bad ?This will not take long said Dumbledore when he had finally emptied the phial .We shall be back before you know it .Once more into the Pensieve then And Harry fell again through the silver surface landing this time right in front of a man he recognized at once .It was a much younger Horace Slughorn .Harry was so used to him bald that he found the sight of Slughorn with thick shiny strawcolored hair quite disconcerting it looked as though he had had his head thatched though there was already a shiny Galleonsized bald patch on his crown .His mustache less massive than it was these days was gingery blond .He was not quite as rotund as the Slughorn Harry knew though the golden buttons on his richly embroidered waistcoat were taking a fair amount of strain .His little feet resting upon a velvet pouffe he was sitting well back in a comfortable winged armchair one hand grasping a small glass of wine the other searching through a box of crystalized pineapple .Harry looked around as Dumbledore appeared beside him and saw that they were standing in Slughorn s office .Half a dozen boys were sitting around Slughorn all on harder or lower seats than his and all in their midteens .Harry recognized Voldemort at once .His was the most handsome face and he looked the most relaxed of all the boys .His right hand lay negligently upon the arm of his chair with a jolt Harry saw that he was wearing Marvolos goldand black ring he had already killed his father .Sir is it true that Professor Merrythought is retiring ?he asked .Tom Tom if I knew I couldnt tell you said Slughorn wagging a reproving sugarcovered finger at Riddle though ruining the effect slightly by winking .I must say Id like to know where you get your information boy more knowledgeable than half the staff you are .Riddle smiled the other boys laughed and cast him admiring looks .What with your uncanny ability to know things you shouldnt and your careful flattery of the people who matter thank you for the pineapple by the way youre quite right it is my favorite As several of the boys tittered something very odd happened .The whole room was suddenly filled with a thick white fog so that Harry could see nothing but the face of Dumbledore who was standing beside him .Then Slughorn s voice rang out through the mist unnaturally loudly Youll go wrong boy mark my words .The fog cleared as suddenly as it had appeared and yet nobody made any allusion to it nor did anybody look as though anything unusual had just happened .Bewildered Harry looked around as a small golden clock standing upon Slughorns desk chimed eleven oclock .Good gracious is it that time already ?said Slughorn .Youd better get going boys or well all be in trouble .Lestrange I want your essay by tomorrow or its detention .Same goes for you Avery .Slughorn pulled himself out of his armchair and carried his empty glass over to his desk as the boys filed out .Voldemort however stayed behind .Harry could tell he had dawdled deliberately wanting to be last in the room with Slughorn .Look sharp Tom said Slughorn turning around and finding him still present .You dont want to be caught out of bed out of hours and you a prefect .Sir I wanted to ask you something .Ask away then mboy ask away .Sir I wondered what you know about .about Horcruxes ?And it happened all over again The dense fog filled the room so that Harry could not see Slughorn or Voldemort at all only Dumbledore smiling serenely beside him .Then Slughorns voice boomed out again just as it had done before .I dont know anything about Horcruxes and I wouldnt tell you if I did !Now get out of here at once and dont let me catch you mentioning them again Well thats that said Dumbledore placidly beside Harry .Time to go .And Harrys feet left the floor to fall seconds later back onto the mg in front of Dumbledores desk .Thats all there is ?said Harry blankly .Dumbledore had said that this was the most important memory of all but he could not see what was so significant about it .Admittedly the fog and the fact that nobody seemed to have noticed it was odd but other than that nothing seemed to have happened except that Voldemort had asked a question and failed to get an answer .As you might have noticed said Dumbledore reseating himself behind his desk that memory has been tampered with .Tampered with ?repeated Harry sitting back down too .Certainly said Dumbledore .Professor Slughorn has meddled with his own recollections .But why would he do that ?Because I think he is ashamed of what he remembers said Dumbledore .He has tried to rework the memory to show himself in a better light obliterating those parts which he does not wish me to see .It is as you will have noticed very crudely done and that is all to the good for it shows that the true memory is still there beneath the alterations .And so for the first time I am giving you homework Harry .It will be your job to persuade Professor Slughorn to divulge the real memory which will undoubtedly be our most crucial piece of information of all .Harry stared at him .But surely sir he said keeping his voice as respectful as possible you dont need me you could use Legilimency .or Veritaserum .Professor Slughorn is an extremely able wizard who will be expecting both said Dumbledore .He is much more accomplished at Occlumency than poor Morfin Gaunt and I would be astonished if he has not carried an antidote to Veritaserum with him ever since I coerced him into giving me this travesty of a recollection .No I think it would be foolish to attempt to wrest the truth from Professor Slughorn by force and might do much more harm than good I do not wish him to leave Hogwarts .However he has his weaknesses like the rest of us and I believe that you are the one person who might be able to penetrate his defenses .It is most important that we secure the true memory Harry .How important we will only know when we have seen the real thing .So good luck .and good night .A little taken aback by the abrupt dismissal Harry got to his feet quickly .Good night sir .As he closed the study door behind him he distinctly heard Phineas Nigellus say I cant see why the boy should be able to do it better than you Dumbledore .I wouldnt expect you to Phineas replied Dumbledore and Fawkes gave another low musical cry .BIRTHDAY SURPRISES The next day Harry confided in both Ron and Hermione the task that Dumbledore had set him though separately for Hermione still refused to remain in Rons presence longer than it took to give him a contemptuous look .Ron thought that Harry was unlikely to have any trouble with Slughorn at all .He loves you he said over breakfast waving an airy forkful of fried egg .Wont refuse you anything will he ?Not his little Potions Prince .Just hang back after class this afternoon and ask him .Hermione however took a gloomier view .He must be determined to hide what really happened if Dumbledore couldnt get it out of him she said in a low voice as they stood in the deserted snowy courtyard at break .Horcruxes .Horcruxes .Ive never even heard of them .You havent ?Harry was disappointed he had hoped that Hermione might have been able to give him a clue as to what Horcruxes were .They must be really advanced Dark Magic or why would Voldemort have wanted to know about them ?I think its going to be difficult to get the information Harry youll have to be very careful about how you approach Slughorn think out a strategy .Ron reckons I should just hang back after Potions this afternoon .Oh well if WonWon thinks that youd better do it she said flaring up at once .After all when has Won Wons judgment ever been faulty ?Hermione cant you ?iVo !she said angrily and stormed away leaving Harry alone and ankledeep in snow .Potions lessons were uncomfortable enough these days seeing as Harry Ron and Hermione had to share a desk .Today Hermione moved her cauldron around the table so that she was close to Ernie and ignored both Harry and Ron .Whatve you done ?Ron muttered to Harry looking at Hermione s haughty profile .But before Harry could answer Slughorn was calling for silence from the front of the room .Settle down settle down please !Quickly now lots of work to get through this afternoon !Golpalotts Third Law .who can tell me ?But Miss Granger can of course !Hermione recited at top speed GolpalottsThird Lawstatesthattheantidoteforablendedpoison willbeequaltomorethanthesumoftheantidotes foreachoftheseparatecomponents .Precisely !beamed Slughorn .Ten points for Gryffindor !Now if we accept Golpalotts Third Law as true .Harry was going to have to take Slughorn s word for it that Golpalotts Third Law was true because he had not understood any of it .Nobody apart from Hermione seemed to be following what Slughorn said next either . .which means of course that assuming we have achieved correct identification of the potions ingredients by Scarpins Revelaspell our primary aim is not the relatively simple one of selecting antidotes to those ingredients in and of themselves but to find that added component that will by an almost alchemical process transform these disparate elements Ron was sitting beside Harry with his mouth half open doodling absently on his new copy of Advanced PotionMaking .Ron kept forgetting that he could no longer rely on Hermione to help him out of trouble when he failed to grasp what was going on . .and so finished Slughorn I want each of you to come and take one of these phials from my desk .You are to create an antidote for the poison within it before the end of the lesson .Good luck and dont forget your protective gloves !Hermione had left her stool and was halfway toward Slughorn s desk before the rest of the class had realized it was time to move and by the time Harry Ron and Ernie returned to the table she had already tipped the contents of her phial into her cauldron and was kindling a fire underneath it .Its a shame that the Prince wont be able to help you much with this Harry she said brightly as she straightened up .You have to understand the principles involved this time .No shortcuts or cheats !Annoyed Harry uncorked the poison he had taken from Slughorns desk which was a garish shade of pink tipped it into his cauldron and lit a fire underneath it .He did not have the faintest idea what he was supposed to do next .He glanced around at Ron who was now standing there looking rather gormless having copied everything Harry had done .You sure the Prince hasnt got any tips ?Ron muttered to Harry .Harry pulled out his trusty copy of Advanced Potion Making and turned to the chapter on antidotes .There was Golpalotts Third Law stated word for word as Hermione had recited it but not a single illuminating note in the Princes hand to explain what it meant .Apparently the Prince like Hermione had had no difficulty understanding it .Nothing said Harry gloomily .Hermione was now waving her wand enthusiastically over her cauldron .Unfortunately they could not copy the spell she was doing because she was now so good at nonverbal incantations that she did not need to say the words aloud .Ernie Macmillan however was muttering Specialis Reveliol over his cauldron which sounded impressive so Harry and Ron hastened to imitate him .It took Harry only five minutes to realize that his reputation as the best potionmaker in the class was crashing around his ears .Slughorn had peered hopefully into his cauldron on his first circuit of the dungeon preparing to exclaim in delight as he usually did and instead had withdrawn his head hastily coughing as the smell of bad eggs overwhelmed him .Hermiones expression could not have been any smugger she had loathed being outperformed in every Potions class .She was now decanting the mysteriously separated ingredients of her poison into ten different crystal phials .More to avoid watching this irritating sight than anything else Harry bent over the HalfBlood Princes book and turned a few pages with unnecessary force .And there it was scrawled right across a long list of antidotes Just shove a bezoar down their throats .Harry stared at these words for a moment .Hadnt he once long ago heard of bezoars ?Hadnt Snape mentioned them in their firstever Potions lesson ?A stone taken from the stomach of a goat which will protect from most poisons .It was not an answer to the Golpalott problem and had Snape still been their teacher Harry would not have dared do it but this was a moment for desperate measures .He hastened toward the store cupboard and rummaged within it pushing aside unicorn horns and tangles of dried herbs until he found at the very back a small cardboard box on which had been scribbled the word bezoars .He opened the box just as Slughorn called Two minutes left everyone !Inside were half a dozen shriveled brown objects looking more like driedup kidneys than real stones .Harry seized one put the box back in the cupboard and hurried back to his cauldron .Times .UP !called Slughorn genially .Well lets see how youve done !Blaise .what have you got for me ?Slowly Slughorn moved around the room examining the various antidotes .Nobody had finished the task although Hermione was trying to cram a few more ingredients into her bottle before Slughorn reached her .Ron had given up completely and was merely trying to avoid breathing in the putrid fumes issuing from his cauldron .Harry stood there waiting the bezoar clutched in a slightly sweaty hand .Slughorn reached their table last .He sniffed Ernies potion and passed on to Rons with a grimace .He did not linger over Rons cauldron but backed away swiftly retching slightly .And you Harry he said .What have you got to show me ?Harry held out his hand the bezoar sitting on his palm .Slughorn looked down at it for a full ten seconds .Harry wondered for a moment whether he was going to shout at him .Then he threw back his head and roared with laughter .Youve got nerve boy !he boomed taking the bezoar and holding it up so that the class could see it .Oh youre like your mother .Well I cant fault you .A bezoar would certainly act as an antidote to all these potions !Hermione who was sweatyfaced and had soot on her nose looked livid .Her halffinished antidote comprising fiftytwo ingredients including a chunk of her own hair bubbled sluggishly behind Slughorn who had eyes for nobody but Harry .And you thought of a bezoar all by yourself did you Harry ?she asked through gritted teeth .Thats the individual spirit a real potionmaker needs !said Slughorn happily before Harry could reply .Just like his mother she had the same intuitive grasp of potionmaking its undoubtedly from Lily he gets it .Yes Harry yes if youve got a bezoar to hand of course that would do the trick .although as they dont work on everything and are pretty rare its still worth knowing how to mix antidotes .The only person in the room looking angrier than Hermione was Malfoy who Harry was pleased to see had spilled something that looked like catsick over himself .Before either of them could express their fury that Harry had come top of the class by not doing any work however the bell rang .Time to pack up !said Slughorn .And an extra ten points to Gryffindor for sheer cheek !Still chuckling he waddled back to his desk at the front of the dungeon .Harry dawdled behind taking an inordinate amount of time to do up his bag .Neither Ron nor Hermione wished him luck as they left both looked rather annoyed .At last Harry and Slughorn were the only two left in the room .Come on now Harry youll be late for your next lesson said Slughorn affably snapping the gold clasps shut on his dragon skin briefcase .Sir said Harry reminding himself irresistibly of Voldemort I wanted to ask you something .Ask away then my dear boy ask away .Sir I wondered what you know about .about Horcruxes ?Slughorn froze .His round face seemed to sink in upon itself .He licked his lips and said hoarsely What did you say ?I asked whether you know anything about Horcruxes sir .You see Dumbledore put you up to this whispered Slughorn .His voice had changed completely .It was not genial anymore but shocked terrified .He fumbled in his breast pocket and pulled out a handkerchief mopping his sweating brow .Dumbledores shown you that that memory .Well ?Hasnt he ?Yes said Harry deciding on the spot that it was best not to lie .Yes of course said Slughorn quietly still dabbing at his white face .Of course .well if youve seen that memory Harry youll know that I dont know anything anything he repeated the word forcefully about Horcruxes .He seized his dragonskin briefcase stuffed his handkerchief back into his pocket and marched to the dungeon door .Sir said Harry desperately I just thought there might be a bit more to the memory Did you ?said Slughorn .Then you were wrong werent you ?WRONG !He bellowed the last word and before Harry could say another word slammed the dungeon door behind him .Neither Ron nor Hermione was at all sympathetic when Harry told them of this disastrous interview .Hermione was still seething at the way Harry had triumphed without doing the work properly .Ron was resentful that Harry hadnt slipped him a bezoar too .It wouldve just looked stupid if wed both done it !said Harry irritably .Look I had to try and soften him up so I could ask him about Voldemort didnt I ?Oh will you get a grip he added in exasperation as Ron winced at the sound of the name .Infuriated by his failure and by Rons and Hermiones attitudes Harry brooded for the next few days over what to do next about Slughorn .He decided that for the time being he would let Slughorn think that he had forgotten all about Horcruxes it was surely best to lull him into a false sense of security before returning to the attack .When Harry did not question Slughorn again the Potions master reverted to his usual affectionate treatment of him and appeared to have put the matter from his mind .Harry awaited an invitation to one of his little evening parties determined to accept this time even if he had to reschedule Quidditch practice .Unfortunately however no such invitation arrived .Harry checked with Hermione and Ginny Neither of them had received an invitation and nor as far as they knew had anybody else .Harry could not help wondering whether this meant that Slughorn was not quite as forgetful as he appeared simply determined to give Harry no additional opportunities to question him .Meanwhile the Hogwarts library had failed Hermione for the first time in living memory .She was so shocked she even forgot that she was annoyed at Harry for his trick with the bezoar .I havent found one single explanation of what Horcruxes do !she told him .Not a single one !Ive been right through the restricted section and even in the most horrible books where they tell you how to brew the most gruesome potions nothing !All I could find was this in the introduction to Magick Moste Evile listen ‘Of the Horcrux wickedest of magical inventions we shall not speak nor give direction .I mean why mention it then ?she said impatiently slamming the old book shut it let out a ghostly wail .Oh shut up she snapped stuffing it back into her bag .The snow melted around the school as February arrived to be replaced by cold dreary wetness .Purplishgray clouds hung low over the castle and a constant fall of chilly rain made the lawns slippery and muddy .The upshot of this was that the sixth years first Apparition lesson which was scheduled for a Saturday morning so that no normal lessons would be missed took place in the Great Hall instead of in the grounds .When Harry and Hermione arrived in the Hall Ron had come down with Lavender they found that the tables had disappeared .Rain lashed against the high windows and the enchanted ceiling swirled darkly above them as they assembled in front of Professors McGonagall Snape Flitwick and Sprout the Heads of Houses and a small wizard whom Harry took to be the Apparition instructor from the Ministry .He was oddly colorless with transparent eyelashes wispy hair and an insubstantial air as though a single gust of wind might blow him away .Harry wondered whether constant disappearances and reappearances had somehow diminished his substance or whether this frail build was ideal for anyone wishing to vanish .Good morning said the Ministry wizard when all the students had arrived and the Heads of Houses had called for quiet .My name is Wilkie Twycross and I shall be your Ministry Apparition instructor for the next twelve weeks .I hope to be able to prepare you for your Apparition Tests in this time Malfoy be quiet and pay attention !barked Professor McGonagall .Everybody looked around .Malfoy had flushed a dull pink he looked furious as he stepped away from Crabbe with whom he appeared to have been having a whispered argument .Harry glanced quickly at Snape who also looked annoyed though Harry strongly suspected that this was less because of Malfoys rudeness than the fact that McGonagall had reprimanded one of his House .by which time many of you may be ready to take your tests Twycross continued as though there had been no interruption .As you may know it is usually impossible to Apparate or Disapparate within Hogwarts .The headmaster has lifted this enchantment purely within the Great Hall for one hour so as to enable you to practice .May I emphasize that you will not be able to Apparate outside the walls of this Hall and that you would be unwise to try .I would like each of you to place yourselves now so that you have a clear five feet of space in front of you .There was a great scrambling and jostling as people separated banged into each other and ordered others out of their space .The Heads of Houses moved among the students marshaling them into position and breaking up arguments .Harry where are you going ?demanded Hermione .But Harry did not answer he was moving quickly through the crowd past the place where Professor Flitwick was making squeaky attempts to position a few Ravenclaws all of whom wanted to be near the front past Professor Sprout who was chivying the Hufflepuffs into line until by dodging around Ernie Macmillan he managed to position himself right at the back of the crowd directly behind Malfoy who was taking advantage of the general upheaval to continue his argument with Crabbe standing five feet away and looking mutinous .I dont know how much longer all right ?Malfoy shot at him oblivious to Harry standing right behind him .Its taking longer than I thought it would .Crabbe opened his mouth but Malfoy appeared to secondguess what he was going to say .Look its none of your business what Im doing Crabbe you and Goyle just do as youre told and keep a lookout !I tell my friends what Im up to if I want them to keep a lookout for me Harry said just loud enough for Malfoy to hear him .Malfoy spun around on the spot his hand flying to his wand but at that precise moment the four Heads of House shouted Quiet !and silence fell again .Malfoy turned slowly to face the front again .Thank you said Twycross .Now then .He waved his wand .Oldfashioned wooden hoops instantly appeared on the floor in front of every student .The important things to remember when Apparating are the three Ds !said Twycross .Destination Determination Deliberation !Step one Fix your mind firmly upon the desired destination said Twycross .In this case the interior of your hoop .Kindly concentrate upon that destination now .Everybody looked around furtively to check that everyone else was staring into their hoop then hastily did as they were told .Harry gazed at the circular patch of dusty floor enclosed by his hoop and tried hard to think of nothing else .This proved impossible as he couldnt stop puzzling over what Malfoy was doing that needed lookouts .Step two said Twycross focus your determination to occupy the visualized space !Let your yearning to enter it flood from your mind to every particle of your body !Harry glanced around surreptitiously .A little way to his left Ernie Macmillan was contemplating his hoop so hard that his face had turned pink it looked as though he was straining to lay a Quafflesized egg .Harry bit back a laugh and hastily returned his gaze to his own hoop .Step three called Twycross and only when I give the command .Turn on the spot feeling your way into nothingness moving with deliberation !On my command now .one Harry glanced around again lots of people were looking positively alarmed at being asked to Apparate so quickly .two Harry tried to fix his thoughts on his hoop again he had already forgotten what the three Ds stood for .THREE !Harry spun on the spot lost balance and nearly fell over .He was not the only one .The whole Hall was suddenly full of staggering people Neville was flat on his back Ernie Macmillan on the other hand had done a kind of pirouetting leap into his hoop and looked momentarily thrilled until he caught sight of Dean Thomas roaring with laughter at him .Never mind never mind said Twycross dryly who did not seem to have expected anything better .Adjust your hoops please and back to your original positions .The second attempt was no better than the first .The third was just as bad .Not until the fourth did anything exciting happen .There was a horrible screech of pain and everybody looked around terrified to see Susan Bones of Hufflepuff wobbling in her hoop with her left leg still standing five feet away where she had started .The Heads of House converged on her there was a great bang and a puff of purple smoke which cleared to reveal Susan sobbing reunited with her leg but looking horrified .Splinching or the separation of random body parts said Wilkie Twycross dispassionately occurs when the mind is insufficiently determined .You must concentrate continuously upon your destination and move without haste but with deliberation .thus .Twycross stepped forward turned gracefully on the spot with his arms outstretched and vanished in a swirl of robes reappearing at the back of the Hall .Remember the three Ds he said and try again .one two three But an hour later Susans Splinching was still the most interesting thing that had happened .Twycross did not seem discouraged .Fastening his cloak at his neck he merely said Until next Saturday everybody and do not forget Destination .Determination .Deliberation .With that he waved his wand Vanishing the hoops and walked out of the Hall accompanied by Professor McGonagall .Talk broke out at once as people began moving toward the entrance hall .How did you do ?asked Ron hurrying toward Harry .I think I felt something the last time I tried a kind of tingling in my feet .I expect your trainers are too small WonWon said a voice behind them and Hermione stalked past smirking .I didnt feel anything said Harry ignoring this interruption .But I dont care about that now What dyou mean you dont care ?Dont you want to learn to Apparate ?said Ron incredulously .Im not fussed really I prefer flying said Harry glancing over his shoulder to see where Malfoy was and speeding up as they came into the entrance hall .Look hurry up will you theres something I want to do .Perplexed Ron followed Harry back to the Gryffindor Tower at a run .They were temporarily detained by Peeves who had jammed a door on the fourth floor shut and was refusing to let anyone pass until they set fire to their own pants but Harry and Ron simply turned back and took one of their trusted shortcuts .Within five minutes they were climbing through the portrait hole .Are you going to tell me what were doing then ?asked Ron panting slightly .Up here said Harry and he crossed the common room and led the way through the door to the boys staircase .Their dormitory was as Harry had hoped empty .He flung open his trunk and began to rummage in it while Ron watched impatiently .Harry .Malfoy s using Crabbe and Goyle as lookouts .He was arguing with Crabbe just now .I want to know aha .He had found it a folded square of apparently blank parchment which he now smoothed out and tapped with the tip of his wand .I solemnly swear that I am up to no good .or Malfoy is anyway .At once the Marauders Map appeared on the parchments surface .Here was a detailed plan of every one of the castles floors and moving around it the tiny labeled black dots that signified each of the castles occupants .Help me find Malfoy said Harry urgently .He laid the map upon his bed and he and Ron leaned over it searching .There !said Ron after a minute or so .Hes in the Slytherin common room look .with Parkinson and Zabini and Crabbe and Goyle .Harry looked down at the map disappointed but rallied almost at once .Well Im keeping an eye on him from now on he said firmly .And the moment I see him lurking somewhere with Crabbe and Goyle keeping watch outside itll be on with the old Invisibility Cloak and off to find out what hes He broke off as Neville entered the dormitory bringing with him a strong smell of singed material and began rummaging in his trunk for a fresh pair of pants .Despite his determination to catch Malfoy out Harry had no luck at all over the next couple of weeks .Although he consulted the map as often as he could sometimes making unnecessary visits to the bathroom between lessons to search it he did not once see Malfoy anywhere suspicious .Admittedly he spotted Crabbe and Goyle moving around the castle on their own more often than usual sometimes remaining stationary in deserted corridors but at these times Malfoy was not only nowhere near them but impossible to locate on the map at all .This was most mysterious .Harry toyed with the possibility that Malfoy was actually leaving the school grounds but could not see how he could be doing it given the very high level of security now operating within the castle .He could only suppose that he was missing Malfoy amongst the hundreds of tiny black dots upon the map .As for the fact that Malfoy Crabbe and Goyle appeared to be going their different ways when they were usually inseparable these things happened as people got older Ron and Hermione Harry reflected sadly were living proof .February moved toward March with no change in the weather except that it became windy as well as wet .To general indignation a sign went up on all common room notice boards that the next trip into Hogsmeade had been canceled .Ron was furious .It was on my birthday !he said .I was looking forward to that !Not a big surprise though is it ?said Harry .Not after what happened to Katie .She had still not returned from St .Mungos .What was more further disappearances had been reported in the Daily Prophet including several relatives of students at Hogwarts .But now all Ive got to look forward to is stupid Apparition !said Ron grumpily .Big birthday treat .Three lessons on Apparition was proving as difficult as ever though a few more people had managed to Splinch themselves .Frustration was running high and there was a certain amount of illfeeling toward Wilkie Twycross and his three Ds which had inspired a number of nicknames for him the politest of which were Dogbreath and Dunghead .Happy birthday Ron said Harry when they were woken on the first of March by Seamus and Dean leaving noisily for breakfast .Have a present .He threw the package across onto Rons bed where it joined a small pile of them that must Harry assumed have been delivered by houseelves in the night .Cheers said Ron drowsily and as he ripped off the paper Harry got out of bed opened his own trunk and began rummaging in it for the Marauders Map which he hid after every use .He turfed out half the contents of his trunk before he found it hiding beneath the rolledup socks in which he was still keeping his bottle of lucky potion Felix Felicis .Right he murmured taking it back to bed with him tapping it quietly and murmuring I solemnly swear that I am up to no good so that Neville who was passing the foot of his bed at the time would not hear .Nice one Harry !said Ron enthusiastically waving the new pair of Quidditch Keepers gloves Harry had given him .No problem said Harry absentmindedly as he searched the Slytherin dormitory closely for Malfoy .Hey .I dont think hes in his bed .Ron did not answer he was too busy unwrapping presents every now and then letting out an exclamation of pleasure .Seriously good haul this year !he announced holding up a heavy gold watch with odd symbols around the edge and tiny moving stars instead of hands .See what Mum and Dad got me ?Blimey I think Ill come of age next year too .Cool muttered Harry sparing the watch a glance before peering more closely at the map .Where was Malfoy ?He did not seem to be at the Slytherin table in the Great Hall eating breakfast .He was nowhere near Snape who was sitting in his study .He wasnt in any of the bathrooms or in the hospital wing .Want one ?said Ron thickly holding out a box of Chocolate Cauldrons .No thanks said Harry looking up .Malfoys gone again !Cant have done said Ron stuffing a second Cauldron into his mouth as he slid out of bed to get dressed .Come on if you dont hurry up youll have to Apparate on an empty stomach .Might make it easier I suppose .Ron looked thoughtfully at the box of Chocolate Cauldrons then shrugged and helped himself to a third .Harry tapped the map with his wand muttered Mischief managed though it hadnt been and got dressed thinking hard .There had to be an explanation for Malfoys periodic disappearances but he simply could not think what it could be .The best way of finding out would be to tail him but even with the Invisibility Cloak this was an impractical idea Harry had lessons Quidditch practice homework and Apparition he could not follow Malfoy around school all day without his absence being remarked upon .Ready ?he said to Ron .He was halfway to the dormitory door when he realized that Ron had not moved but was leaning on his bedpost staring out of the rainwashed window with a strangely unfocused look on his face .Ron ?Breakfast .Im not hungry .Harry stared at him .I thought you just said ?Well all right Ill come down with you sighed Ron but I dont want to eat .Harry scrutinized him suspiciously .Youve just eaten half a box of Chocolate Cauldrons havent you ?Its not that Ron sighed again .You .you wouldnt understand .Fair enough said Harry albeit puzzled as he turned to open the door .Harry !said Ron suddenly .What ?Harry I cant stand it !You cant stand what ?asked Harry now starting to feel definitely alarmed .Ron was rather pale and looked as though he was about to be sick .I cant stop thinking about her !said Ron hoarsely .Harry gaped at him .He had not expected this and was not sure he wanted to hear it .Friends they might be but if Ron started calling Lavender LavLav he would have to put his foot down .Why does that stop you having breakfast ?Harry asked trying to inject a note of common sense into the proceedings .I dont think she knows I exist said Ron with a desperate gesture .She definitely knows you exist said Harry bewildered .She keeps snogging you doesnt she ?Ron blinked .Who are you talking about ?Who are you talking about ?said Harry with an increasing sense that all reason had dropped out of the conversation .Romilda Vane said Ron softly and his whole face seemed to illuminate as he said it as though hit by a ray of purest sunlight .They stared at each other for almost a whole minute before Harry said This is a joke right ?Youre joking .I think .Harry I think I love her said Ron in a strangled voice .Okay said Harry walking up to Ron to get a better look at the glazed eyes and the pallid complexion okay .Say that again with a straight face .I love her repeated Ron breathlessly .Have you seen her hair its all black and shiny and silky .and her eyes ?Her big dark eyes ?And her This is really funny and everything said Harry impatiently but jokes over all right ?Drop it .He turned to leave he had got two steps toward the door when a crashing blow hit him on the right ear .Staggering he looked around .Rons fist was drawn right back his face was contorted with rage he was about to strike again .Harry reacted instinctively his wand was out of his pocket and the incantation sprang to mind without conscious thought Levicorpus Ron yelled as his heel was wrenched upward once more he dangled helplessly upside down his robes hanging off him .What was that for ?Harry bellowed .You insulted her Harry !You said it was a joke !shouted Ron who was slowly turning purple in the face as all the blood rushed to his head .This is insane !said Harry .Whats got into ?And then he saw the box lying open on Rons bed and the truth hit him with the force of a stampeding troll .Where did you get those Chocolate Cauldrons ?They were a birthday present !shouted Ron revolving slowly in midair as he struggled to get free .I offered you one didnt I ?You just picked them up off the floor didnt you ?Theyd fallen off my bed all right ?Let me go !They didnt fall off your bed you prat dont you understand ?They were mine I chucked them out of my trunk when I was looking for the map theyre the Chocolate Cauldrons Romilda gave me before Christmas and theyre all spiked with love potion !But only one word of this seemed to have registered with Ron .Romilda ?he repeated .Did you say Romilda ?Harry do you know her ?Can you introduce me ?Harry stared at the dangling Ron whose face now looked tremendously hopeful and fought a strong desire to laugh .A part of him the part closest to his throbbing right ear was quite keen on the idea of letting Ron down and watching him run amok until the effects of the potion wore off .But on the other hand they were supposed to be friends Ron had not been himself when he had attacked and Harry thought that he would deserve another punching if he permitted Ron to declare undying love for Romilda Vane .Yeah Ill introduce you said Harry thinking fast .Im going to let you down now okay ?He sent Ron crashing back to the floor his ear did hurt quite a lot but Ron simply bounded to his feet again grinning .Shell be in Slughorns office said Harry confidently leading the way to the door .Why will she be in there ?asked Ron anxiously hurrying to keep up .Oh she has extra Potions lessons with him said Harry inventing wildly .Maybe I could ask if I can have them with her ?said Ron eagerly .Great idea said Harry .Lavender was waiting beside the portrait hole a complication Harry had not foreseen .Youre late WonWon !she pouted .Ive got you a birthday Leave me alone said Ron impatiently .Harrys going to introduce me to Romilda Vane .And without another word to her he pushed his way out of the portrait hole .Harry tried to make an apologetic face to Lavender but it might have turned out simply amused because she looked more offended than ever as the Fat Lady swung shut behind them .Harry had been slightly worried that Slughorn might be at breakfast but he answered his office door at the first knock wearing a green velvet dressing gown and matching nightcap and looking rather blearyeyed .Harry he mumbled .This is very early for a call .I generally sleep late on a Saturday .Professor Im really sorry to disturb you said Harry as quietly as possible while Ron stood on tiptoe attempting to see past Slughorn into his room but my friend Rons swallowed a love potion by mistake .You couldnt make him an antidote could you ?Id take him to Madam Pomfrey but were not supposed to have anything from Weasleys Wizard Wheezes and you know .awkward questions .Id have thought you could have whipped him up a remedy Harry an expert potioneer like you ?asked Slughorn .Er said Harry somewhat distracted by the fact that Ron was now elbowing him in the ribs in an attempt to force his way into the room well Ive never mixed an antidote for a love potion sir and by the time I get it right Ron mightve done something serious Helpfully Ron chose this moment to moan I cant see her Harry is he hiding her ?Was this potion within date ?asked Slughorn now eyeing Ron with professional interest .They can strengthen you know the longer theyre kept .That would explain a lot panted Harry now positively wrestling with Ron to keep him from knocking Slughorn over .Its his birthday Professor he added imploringly .Oh all right come in then come in said Slughorn relenting .Ive got the necessary here in my bag its not a difficult antidote .Ron burst through the door into Slughorn s overheated crowded study tripped over a tasseled footstool regained his balance by seizing Harry around the neck and muttered She didnt see that did she ?Shes not here yet said Harry watching Slughorn opening his potion kit and adding a few pinches of this and that to a small crystal bottle .Thats good said Ron fervently .How do I look ?Very handsome said Slughorn smoothly handing Ron a glass of clear liquid .Now drink that up its a tonic for the nerves keep you calm when she arrives you know .Brilliant said Ron eagerly and he gulped the antidote down noisily .Harry and Slughorn watched him .For a moment Ron beamed at them .Then very slowly his grin sagged and vanished to be replaced by an expression of utmost horror .Back to normal then ?said Harry grinning .Slughorn chuckled .Thanks a lot Professor .Dont mention it mboy dont mention it said Slughorn as Ron collapsed into a nearby armchair looking devastated .Pickmeup thats what he needs Slughorn continued now bustling over to a table loaded with drinks .Ive got butterbeer Ive got wine Ive got one last bottle of this oakmatured mead .hmm .meant to give that to Dumbledore for Christmas .ah well .He shrugged .He cant miss what hes never had !Why dont we open it now and celebrate Mr Weasleys birthday ?Nothing like a fine spirit to chase away the pangs of disappointed love .He chortled again and Harry joined in .This was the first time he had found himself almost alone with Slughorn since his disastrous first attempt to extract the true memory from him .Perhaps if he could just keep Slughorn in a good mood .perhaps if they got through enough of the oakmatured mead .There you are then said Slughorn handing Harry and Ron a glass of mead each before raising his own .Well a very happy birthday Ralph Ron whispered Harry .But Ron who did not appear to be listening to the toast had already thrown the mead into his mouth and swallowed it .There was one second hardly more than a heartbeat in which Harry knew there was something terribly wrong and Slughorn it seemed did not .and may you have many more Ron Ron had dropped his glass he halfrose from his chair and then crumpled his extremities jerking uncontrollably .Foam was dribbling from his mouth and his eyes were bulging from their sockets .Professor !Harry bellowed .Do something !But Slughorn seemed paralyzed by shock .Ron twitched and choked His skin was turning blue .What but spluttered Slughorn .Harry leapt over a low table and sprinted toward Slughorn s open potion kit pulling out jars and pouches while the terrible sound of Rons gargling breath filled the room .Then he found it the shriveled kidneylike stone Slughorn had taken from him in Potions .He hurtled back to Rons side wrenched open his jaw and thrust the bezoar into his mouth .Ron gave a great shudder a rattling gasp and his body became limp and still .ELF TAILS So all in all not one of Rons better birthdays ?said Fred .It was evening the hospital wing was quiet the windows curtained the lamps lit .Rons was the only occupied bed .Harry Hermione and Ginny were sitting around him they had spent all day waiting outside the double doors trying to see inside whenever somebody went in or out .Madam Pomfrey had only let them enter at eight oclock .Fred and George had arrived at ten past .This isnt how we imagined handing over our present said George grimly putting down a large wrapped gift on Rons bedside cabinet and sitting beside Ginny .Yeah when we pictured the scene he was conscious said Fred .There we were in Hogsmeade waiting to surprise him said George .You were in Hogsmeade ?asked Ginny looking up .We were thinking of buying Zonkos said Fred gloomily .A Hogsmeade branch you know but a fat lot of good itll do us if you lot arent allowed out at weekends to buy our stuff anymore .But never mind that now .He drew up a chair beside Harry and looked at Rons pale face .How exactly did it happen Harry ?Harry retold the story he had already recounted it felt like a hundred times to Dumbledore to McGonagall to Madam Pomfrey to Hermione and to Ginny . .and then I got the bezoar down his throat and his breathing eased up a bit Slughorn ran for help McGonagall and Madam Pomfrey turned up and they brought Ron up here .They reckon hell be all right .Madam Pomfrey says hell have to stay here a week or so .keep taking essence of rue .Blimey it was lucky you thought of a bezoar said George in a low voice .Lucky there was one in the room said Harry who kept turning cold at the thought of what would have happened if he had not been able to lay hands on the little stone .Hermione gave an almost inaudible sniff .She had been exceptionally quiet all day .Having hurtled whitefaced up to Harry outside the hospital wing and demanded to know what had happened she had taken almost no part in Harry and Ginnys obsessive discussion about how Ron had been poisoned but merely stood beside them clenchjawed and frightenedlooking until at last they had been allowed in to see him .Do Mum and Dad know ?Fred asked Ginny .Theyve already seen him they arrived an hour ago theyre in Dumbledores office now but theyll be back soon .There was a pause while they all watched Ron mumble a little in his sleep .So the poison was in the drink ?said Fred quietly .Yes said Harry at once he could think of nothing else and was glad for the opportunity to start discussing it again .Slughorn poured it out Would he have been able to slip something into Rons glass without you seeing ?Probably said Harry but why would Slughorn want to poison Ron ?No idea said Fred frowning .You dont think he could have mixed up the glasses by mistake ?Meaning to get you ?Why would Slughorn want to poison Harry ?asked Ginny .I dunno said Fred but there must be loads of people whod like to poison Harry mustnt there ?The Chosen One and all that ?So you think Slughorn s a Death Eater ?said Ginny .Anythings possible said Fred darkly .He could be under the Imperius Curse said George .Or he could be innocent said Ginny .The poison could have been in the bottle in which case it was probably meant for Slughorn himself .Whod want to kill Slughorn ?Dumbledore reckons Voldemort wanted Slughorn on his side said Harry .Slughorn was in hiding for a year before he came to Hogwarts .And .He thought of the memory Dumbledore had not yet been able to extract from Slughorn .And maybe Voldemort wants him out of the way maybe he thinks he could be valuable to Dumbledore .But you said Slughorn had been planning to give that bottle to Dumbledore for Christmas Ginny reminded him .So the poisoner could just as easily have been after Dumbledore .Then the poisoner didnt know Slughorn very well said Hermione speaking for the first time in hours and sounding as though she had a bad head cold .Anyone who knew Slughorn would have known there was a good chance hed keep something that tasty for himself .Ermynee croaked Ron unexpectedly from between them .They all fell silent watching him anxiously but after muttering incomprehensibly for a moment he merely started snoring .The dormitory doors flew open making them all jump Hagrid came striding toward them his hair rainflecked his bearskin coat flapping behind him a crossbow in his hand leaving a trail of muddy dolphinsized footprints all over the floor .Bin in the forest all day !he panted .Aragogs worse I bin readin to him didn get up ter dinner till jus now an then Professor Sprout told me abou Ron !How is he ?Not bad said Harry .They say hell be okay .No more than six visitors at a time !said Madam Pomfrey hurrying out of her office .Hagrid makes six George pointed out .Oh .yes .said Madam Pomfrey who seemed to have been counting Hagrid as several people due to his vastness .To cover her confusion she hurried off to clear up his muddy footprints with her wand .I don believe this said Hagrid hoarsely shaking his great shaggy head as he stared down at Ron .Jus don believe it .Look at him lyin there .Whod want ter hurt him eh ?Thats just what we were discussing said Harry .We dont know .Someone couldn have a grudge against the Gryffindor Quidditch team could they ?said Hagrid anxiously .Firs Katie now Ron .I cant see anyone trying to bump off a Quidditch team said George .Wood mightve done the Slytherins if he couldve got away with it said Fred fairly .Well I dont think its Quidditch but I think theres a connection between the attacks said Hermione quietly .How dyou work that out ?asked Fred .Well for one thing they both ought to have been fatal and werent although that was pure luck .And for another neither the poison nor the necklace seems to have reached the person who was supposed to be killed .Of course she added broodingly that makes the person behind this even more dangerous in a way because they dont seem to care how many people they finish off before they actually reach their victim .Before anybody could respond to this ominous pronouncement the dormitory doors opened again and Mr and Mrs Weasley hurried up the ward .They had done no more than satisfy themselves that Ron would make a full recovery on their last visit to the ward now Mrs Weasley seized hold of Harry and hugged him very tightly .Dumbledores told us how you saved him with the bezoar she sobbed .Oh Harry what can we say ?You saved Ginny .you saved Arthur .now youve saved Ron .Dont be .I didnt .muttered Harry awkwardly .Half our family does seem to owe you their lives now I stop and think about it Mr Weasley said in a constricted voice .Well all I can say is that it was a lucky day for the Weasleys when Ron decided to sit in your compartment on the Hogwarts Express Harry .Harry could not think of any reply to this and was almost glad when Madam Pomfrey reminded them that there were only supposed to be six visitors around Rons bed he and Hermione rose at once to leave and Hagrid decided to go with them leaving Ron with his family .Its terrible growled Hagrid into his beard as the three of them walked back along the corridor to the marble staircase .All this new security an kids are still gettin hurt .Dumbledores worried sick .He don say much but I can tell .Hasnt he got any ideas Hagrid ?asked Hermione desperately .I spect hes got hundreds of ideas brain like his said Hagrid .But he doesn know who sent that necklace nor put poison in that wine or theyd ve bin caught wouldn they ?Wha worries me said Hagrid lowering his voice and glancing over his shoulder Harry for good measure checked the ceiling for Peeves is how long Hogwarts can stay open if kids are bein attacked .Chamber o Secrets all over again isn it ?Therell be panic more parents takin their kids outta school an nex thing yeh know the board o governors .Hagrid stopped talking as the ghost of a longhaired woman drifted serenely past then resumed in a hoarse whisper .the board o governorsll be talkin about shuttin us up fer good .Surely not ?said Hermione looking worried .Gotta see it from their point o view said Hagrid heavily .I mean its always bin a bit of a risk sendin a kid ter Hogwarts hasn it ?Yer expect accidents don yeh with hundreds of underage wizards all locked up tergether but attempted murder thas diffrent .Sno wonder Dumbledores angry with Sn Hagrid stopped in his tracks a familiar guilty expression on what was visible of his face above his tangled black beard .What ?said Harry quickly .Dumbledores angry with Snape ?I never said tha said Hagrid though his look of panic could not have been a bigger giveaway .Look at the time its gettin on fer midnight I need ter Hagrid why is Dumbledore angry with Snape ?Harry asked loudly .Shhhh !said Hagrid looking both nervous and angry .Don shout stuff like that Harry dyeh wan me ter lose me job ?Mind I don suppose yehd care would yeh not now yehve given up Care of Mag Dont try and make me feel guilty it wont work !said Harry forcefully .Whats Snape done ?I dunno Harry I shouldnta heard it at all !I well I was cornin outta the forest the other evenin an I overheard em talking well arguin .Didnt like ter draw attention to meself so I sorta skulked an tried not ter listen but it was a well a heated discussion an it wasn easy ter block it out .Well ?Harry urged him as Hagrid shuffled his enormous feet uneasily .Well I jus heard Snape sayin Dumbledore took too much fer granted an maybe he Snape didn wan ter do it anymore Do what ?I dunno Harry it sounded like Snape was feelin a bit overworked thas all anyway Dumbledore told him flat out hed agreed ter do it an that was all there was to it .Pretty firm with him .An then he said summat abou Snape makin investigations in his House in Slytherin .Well theres nothin strange abou that !Hagrid added hastily as Harry and Hermione exchanged looks full of meaning .All the Heads o Houses were asked ter look inter that necklace business Yeah but Dumbledore s not having rows with the rest of them is he ?said Harry .Look Hagrid twisted his crossbow uncomfortably in his hands there was a loud splintering sound and it snapped in two .I know what yehre like abou Snape Harry an I don want yeh ter go readin more inter this than there is .Look out said Hermione tersely .They turned just in time to see the shadow of Argus Filch looming over the wall behind them before the man himself turned the corner hunchbacked his jowls aquiver .Oho !he wheezed .Out of bed so late thisll mean detention !No it won Filch said Hagrid shortly .Theyre with me aren they ?And what difference does that make ?asked Filch obnoxiously .Im a ruddy teacher aren I yeh sneakin Squib !said Hagrid firing up at once .There was a nasty hissing noise as Filch swelled with fury Mrs Norris had arrived unseen and was twisting herself sinuously around Filchs skinny ankles .Get goin said Hagrid out of the corner of his mouth .Harry did not need telling twice he and Hermione both hurried off Hagrids and Filchs raised voices echoed behind them as they ran .They passed Peeves near the turning into Gryffindor Tower but he was streaking happily toward the source of the yelling cackling and calling When theres strife and when theres trouble Call on Peevsie hell make double !The Fat Lady was snoozing and not pleased to be woken but swung forward grumpily to allow them to clamber into the mercifully peaceful and empty common room .It did not seem that people knew about Ron yet Harry was very relieved He had been interrogated enough that day .Hermione bade him good night and set off for the girls dormitory .Harry however remained behind taking a seat beside the fire and looking down into the dying embers .So Dumbledore had argued with Snape .In spite of all he had told Harry in spite of his insistence that he trusted Snape completely he had lost his temper with him .He did not think that Snape had tried hard enough to investigate the Slytherins .or perhaps to investigate a single Slytherin Malfoy ?Was it because Dumbledore did not want Harry to do anything foolish to take matters into his own hands that he had pretended there was nothing in Harrys suspicions ?That seemed likely .It might even be that Dumbledore did not want anything to distract Harry from their lessons or from procuring that memory from Slughorn .Perhaps Dumbledore did not think it right to confide suspicions about his staff to sixteen yearolds .There you are Potter !Harry jumped to his feet in shock his wand at the ready .He had been quite convinced that the common room was empty he had not been at all prepared for a hulking figure to rise suddenly out of a distant chair .A closer look showed him that it was Cormac McLaggen .Ive been waiting for you to come back said McLaggen disregarding Harrys drawn wand .Mustve fallen asleep .Look I saw them taking Weasley up to the hospital wing earlier .Didnt look like hell be fit for next weeks match .It took Harry a few moments to realize what McLaggen was talking about .Oh .right .Quidditch he said putting his wand back into the belt of his jeans and running a hand wearily through his hair .Yeah .he might not make it .Well then Ill be playing Keeper wont I ?said McLaggen .Yeah said Harry .Yeah I suppose so .He could not think of an argument against it after all McLaggen had certainly performed secondbest in the trials .Excellent said McLaggen in a satisfied voice .So whens practice ?What ?Oh .theres one tomorrow evening .Good .Listen Potter we should have a talk beforehand .Ive got some ideas on strategy you might find useful .Right said Harry unenthusiastically .Well Ill hear them tomorrow then .Im pretty tired now .see you The news that Ron had been poisoned spread quickly next day but it did not cause the sensation that Katies attack had done .People seemed to think that it might have been an accident given that he had been in the Potions masters room at the time and that as he had been given an antidote immediately there was no real harm done .In fact the Gryffindors were generally much more interested in the upcoming Quidditch match against Hufflepuff for many of them wanted to see Zacharias Smith who played Chaser on the Hufflepuff team punished soundly for his commentary during the opening match against Slytherin .Harry however had never been less interested in Quidditch he was rapidly becoming obsessed with Draco Malfoy .Still checking the Marauders Map whenever he got a chance he sometimes made detours to wherever Malfoy happened to be but had not yet detected him doing anything out of the ordinary .And still there were those inexplicable times when Malfoy simply vanished from the map .But Harry did not get a lot of time to consider the problem what with Quidditch practice homework and the fact that he was now being dogged wherever he went by Cormac McLaggen and Lavender Brown .He could not decide which of them was more annoying .McLaggen kept up a constant stream of hints that he would make a better permanent Keeper for the team than Ron and that now that Harry was seeing him play regularly he would surely come around to this way of thinking too he was also keen to criticize the other players and provide Harry with detailed training schemes so that more than once Harry was forced to remind him who was Captain .Meanwhile Lavender kept sidling up to Harry to discuss Ron which Harry found almost more wearing than McLaggens Quidditch lectures .At first Lavender had been very annoyed that nobody had thought to tell her that Ron was in the hospital wing I mean I am his girlfriend !but unfortunately she had now decided to forgive Harry this lapse of memory and was keen to have lots of indepth chats with him about Rons feelings a most uncomfortable experience that Harry would have happily forgone .Look why dont you talk to Ron about all this ?Harry asked after a particularly long interrogation from Lavender that took in everything from precisely what Ron had said about her new dress robes to whether or not Harry thought that Ron considered his relationship with Lavender to be serious .Well I would but hes always asleep when I go and see him !said Lavender fretfully .Is he ?said Harry surprised for he had found Ron perfectly alert every time he had been up to the hospital wing both highly interested in the news of Dumbledore and Snapes row and keen to abuse McLaggen as much as possible .Is Hermione Granger still visiting him ?Lavender demanded suddenly .Yeah I think so .Well theyre friends arent they ?said Harry uncomfortably .Friends dont make me laugh said Lavender scornfully .She didnt talk to him for weeks after he started going out with me !But I suppose she wants to make up with him now hes all interesting .Would you call getting poisoned being interesting ?asked Harry .Anyway sorry got to go theres McLaggen coming for a talk about Quidditch said Harry hurriedly and he dashed sideways through a door pretending to be solid wall and sprinted down the shortcut that would take him off to Potions where thankfully neither Lavender nor McLaggen could follow him .On the morning of the Quidditch match against Hufflepuff Harry dropped in on the hospital wing before heading down to the pitch .Ron was very agitated Madam Pomfrey would not let him go down to watch the match feeling it would overexcite him .So hows McLaggen shaping up ?he asked Harry nervously apparently forgetting that he had already asked the same question twice .Ive told you said Harry patiently he could be worldclass and I wouldnt want to keep him .He keeps trying to tell everyone what to do he thinks he could play every position better than the rest of us .I cant wait to be shot of him .And speaking of getting shot of people Harry added getting to his feet and picking up his Firebolt will you stop pretending to be asleep when Lavender comes to see you ?Shes driving me mad as well .Oh said Ron looking sheepish .Yeah .All right .If you dont want to go out with her anymore just tell her said Harry .Yeah .well .its not that easy is it ?said Ron .He paused .Hermione going to look in before the match ?he added casually .No shes already gone down to the pitch with Ginny .Oh said Ron looking rather glum .Right .Well good luck .Hope you hammer McLag I mean Smith .Ill try said Harry shouldering his broom .See you after the match .He hurried down through the deserted corridors the whole school was outside either already seated in the stadium or heading down toward it .He was looking out of the windows he passed trying to gauge how much wind they were facing when a noise ahead made him glance up and he saw Malfoy walking toward him accompanied by two girls both of whom looked sulky and resentful .Malfoy stopped short at the sight of Harry then gave a short humorless laugh and continued walking .Where re you going ?Harry demanded .Yeah Im really going to tell you because its your business Potter sneered Malfoy .Youd better hurry up theyll be waiting for ‘the Chosen Captain ‘the Boy Who Scored whatever they call you these days .One of the girls gave an unwilling giggle .Harry stared at her .She blushed .Malfoy pushed past Harry and she and her friend followed at a trot turning the corner and vanishing from view .Harry stood rooted on the spot and watched them disappear .This was infuriating he was already cutting it fine to get to the match on time and yet there was Malfoy skulking off while the rest of the school was absent Harrys best chance yet of discovering what Malfoy was up to .The silent seconds trickled past and Harry remained where he was frozen gazing at the place where Malfoy had vanished .Where have you been ?demanded Ginny as Harry sprinted into the changing rooms .The whole team was changed and ready Coote and Peakes the Beaters were both hitting their clubs nervously against their legs .I met Malfoy Harry told her quietly as he pulled his scarlet robes over his head .So ?So I wanted to know how come hes up at the castle with a couple of girlfriends while everyone else is down here .Does it matter right now ?Well Im not likely to find out am I ?said Harry seizing his Firebolt and pushing his glasses straight .Come on then !And without another word he marched out onto the pitch to deafening cheers and boos .There was little wind the clouds were patchy every now and then there were dazzling flashes of bright sunlight .Tricky conditions !McLaggen said bracingly to the team .Coote Peakes youll want to fly out of the sun so they dont see you coming Im the Captain McLaggen shut up giving them instructions said Harry angrily .Just get up by the goal posts !Once McLaggen had marched off Harry turned to Coote and Peakes .Make sure you do fly out of the sun he told them grudgingly .He shook hands with the Hufflepuff Captain and then on Madam Hoochs whistle kicked off and rose into the air higher than the rest of his team streaking around the pitch in search of the Snitch .If he could catch it good and early there might be a chance he could get back up to the castle seize the Marauders Map and find out what Malfoy was doing .And thats Smith of Hufflepuff with the Quaffle said a dreamy voice echoing over the grounds .He did the commentary last time of course and Ginny Weasley flew into him I think probably on purpose it looked like it .Smith was being quite rude about Gryffindor I expect he regrets that now hes playing them oh look hes lost the Quaffle Ginny took it from him I do like her shes very nice .Harry stared down at the commentators podium .Surely nobody in their right mind would have let Luna Lovegood commentate ?But even from above there was no mistaking that long dirtyblonde hair nor the necklace of butterbeer corks .Beside Luna Professor McGonagall was looking slightly uncomfortable as though she was indeed having second thoughts about this appointment . .but now that big Hufflepuff players got the Quaffle from her I cant remember his name its something like Bibble no Buggins Its Cadwallader !said Professor McGonagall loudly from beside Luna .The crowd laughed .Harry stared around for the Snitch there was no sign of it .Moments later Cadwallader scored .McLaggen had been shouting criticism at Ginny for allowing the Quaffle out of her possession with the result that he had not noticed the large red ball soaring past his right ear .McLaggen will you pay attention to what youre supposed to be doing and leave everyone else alone !bellowed Harry wheeling around to face his Keeper .Youre not setting a great example !McLaggen shouted back redfaced and furious .And Harry Potters now having an argument with his Keeper said Luna serenely while both Hufflepuffs and Slytherins below in the crowd cheered and jeered .I dont think thatll help him find the Snitch but maybe its a clever ruse .Swearing angrily Harry spun round and set off around the pitch again scanning the skies for some sign of the tiny winged golden ball .Ginny and Demelza scored a goal apiece giving the redandgoldclad supporters below something to cheer about .Then Cadwallader scored again making things level but Luna did not seem to have noticed she appeared singularly uninterested in such mundane things as the score and kept attempting to draw the crowds attention to such things as interestingly shaped clouds and the possibility that Zacharias Smith who had so far failed to maintain possession of the Quaffle for longer than a minute was suffering from something called Losers Lurgy .Seventyforty to Hufflepuff !barked Professor McGonagall into Lunas megaphone .Is it already ?said Luna vaguely .Oh look !The Gryffindor Keepers got hold of one of the Beaters bats .Harry spun around in midair .Sure enough McLaggen for reasons best known to himself had pulled Peakes s bat from him and appeared to be demonstrating how to hit a Bludger toward an oncoming Cadwallader .Will you give him back his bat and get back to the goal posts !roared Harry pelting toward McLaggen just as McLaggen took a ferocious swipe at the Bludger and mishit it .A blinding sickening pain .a flash of light .distant screams .and the sensation of falling down a long tunnel .And the next thing Harry knew he was lying in a remarkably warm and comfortable bed and looking up at a lamp that was throwing a circle of golden light onto a shadowy ceiling .He raised his head awkwardly .There on his left was a familiarlooking freckly redhaired person .Nice of you to drop in said Ron grinning .Harry blinked and looked around .Of course He was in the hospital wing .The sky outside was indigo streaked with crimson .The match must have finished hours ago .as had any hope of cornering Malfoy .Harrys head felt strangely heavy he raised a hand and felt a stiff turban of bandages .What happened ?Cracked skull said Madam Pomfrey bustling up and pushing him back against his pillows .Nothing to worry about I mended it at once but Im keeping you in overnight .You shouldnt overexert yourself for a few hours .I dont want to stay here overnight said Harry angrily sitting up and throwing back his covers .I want to find McLaggen and kill him .Im afraid that would come under the heading of ‘overexertion said Madam Pomfrey pushing him firmly back onto the bed and raising her wand in a threatening manner .You will stay here until I discharge you Potter or I shall call the headmaster .She bustled back into her office and Harry sank back into his pillows fuming .Dyou know how much we lost by ?he asked Ron through clenched teeth .Well yeah I do said Ron apologetically .Final score was three hundred and twenty to sixty .Brilliant said Harry savagely .Really brilliant !When I get hold of McLaggen You dont want to get hold of him hes the size of a troll said Ron reasonably .Personally I think theres a lot to be said for hexing him with that toenail thing of the Princes .Anyway the rest of the team mightve dealt with him before you get out of here theyre not happy .There was a note of badly suppressed glee in Rons voice Harry could tell he was nothing short of thrilled that McLaggen had messed up so badly .Harry lay there staring up at the patch of light on the ceiling his recently mended skull not hurting precisely but feeling slightly tender underneath all the bandaging .I could hear the match commentary from here said Ron his voice now shaking with laughter .I hope Luna always commentates from now on .Losers Lurgy .But Harry was still too angry to see much humor in the situation and after a while Rons snorts subsided .Ginny came in to visit while you were unconscious he said after a long pause and Harrys imagination zoomed into overdrive rapidly constructing a scene in which Ginny weeping over his lifeless form confessed her feelings of deep attraction to him while Ron gave them his blessing .She reckons you only just arrived on time for the match .How come ?You left here early enough .Oh .said Harry as the scene in his minds eye imploded .Yeah .well I saw Malfoy sneaking off with a couple of girls who didnt look like they wanted to be with him and thats the second time hes made sure he isnt down on the Quidditch pitch with the rest of the school he skipped the last match too remember ?Harry sighed .Wish Id followed him now the match was such a fiasco .Dont be stupid said Ron sharply .You couldnt have missed a Quidditch match just to follow Malfoy youre the Captain !I want to know what hes up to said Harry .And dont tell me its all in my head not after what I overheard between him and Snape I never said it was all in your head said Ron hoisting himself up on an elbow in turn and frowning at Harry but theres no rule saying only one person at a time can be plotting anything in this place !Youre getting a bit obsessed with Malfoy Harry .I mean thinking about missing a match just to follow him .I want to catch him at it !said Harry in frustration .I mean wheres he going when he disappears off the map ?I dunno .Hogsmeade ?suggested Ron yawning .Ive never seen him going along any of the secret passageways on the map .I thought they were being watched now anyway ?Well then I dunno said Ron .Silence fell between them .Harry stared up at the circle of lamplight above him thinking .If only he had Rufus Scrimgeours power he would have been able to set a tail upon Malfoy but unfortunately Harry did not have an office full of Aurors at his command .He thought fleetingly of trying to set something up with the D .A .but there again was the problem that people would be missed from lessons most of them after all still had full schedules .There was a low rumbling snore from Rons bed .After a while Madam Pomfrey came out of her office this time wearing a thick dressing gown .It was easiest to feign sleep Harry rolled over onto his side and listened to all the curtains closing themselves as she waved her wand .The lamps dimmed and she returned to her office he heard the door click behind her and knew that she was off to bed .This was Harry reflected in the darkness the third time that he had been brought to the hospital wing because of a Quidditch injury .Last time he had fallen off his broom due to the presence of dementors around the pitch and the time before that all the bones had been removed from his arm by the incurably inept Professor Lockhart .That had been his most painful injury by far .he remembered the agony of regrowing an armful of bones in one night a discomfort not eased by the arrival of an unexpected visitor in the middle of the Harry sat bolt upright his heart pounding his bandage turban askew .He had the solution at last There was a way to have Malfoy followed how could he have forgotten why hadnt he thought of it before ?But the question was how to call him ?What did you do ?Quietly tentatively Harry spoke into the darkness .Kreacher ?There was a very loud crack and the sounds of scuffling and squeaks filled the silent room .Ron awoke with a yelp .Whats going ?Harry pointed his wand hastily at the door of Madam Pomfreys office and muttered MuffliatoV so that she would not come running .Then he scrambled to the end of his bed for a better look at what was going on .Two houseelves were rolling around on the floor in the middle of the dormitory one wearing a shrunken maroon jumper and several woolly hats the other a filthy old rag strung over his hips like a loincloth .Then there was another loud bang and Peeves the Poltergeist appeared in midair above the wrestling elves .I was watching that Potty !he told Harry indignantly pointing at the fight below before letting out a loud cackle .Look at the ickle creatures squabbling bitey bitey punchy punchy Kreacher will not insult Harry Potter in front of Dobby no he wont or Dobby will shut Kreachers mouth for him !cried Dobby in a highpitched voice .kicky scratchy !cried Peeves happily now pelting bits of chalk at the elves to enrage them further .Tweaky pokey !Kreacher will say what he likes about his master oh yes and what a master he is filthy friend of Mudbloods oh what would poor Kreachers mistress say ?Exactly what Kreachers mistress would have said they did not find out for at that moment Dobby sank his knobbly little fist into Kreachers mouth and knocked out half of his teeth .Harry and Ron both leapt out of their beds and wrenched the two elves apart though they continued to try and kick and punch each other egged on by Peeves who swooped around the lamp squealing Stick your fingers up his nosey draw his cork and pull his earsies Harry aimed his wand at Peeves and said Langlockl Peeves clutched at his throat gulped then swooped from the room making obscene gestures but unable to speak owing to the fact that his tongue had just glued itself to the roof of his mouth .Nice one said Ron appreciatively lifting Dobby into the air so that his flailing limbs no longer made contact with Kreacher .That was another Prince hex wasnt it ?Yeah said Harry twisting Kreachers wizened arm into a half nelson .Right Im forbidding you to fight each other !Well Kreacher youre forbidden to fight Dobby .Dobby I know Im not allowed to give you orders Dobby is a free houseelf and he can obey anyone he likes and Dobby will do whatever Harry Potter wants him to do !said Dobby tears now streaming down his shriveled little face onto his jumper .Okay then said Harry and he and Ron both released the elves who fell to the floor but did not continue fighting .Master called me ?croaked Kreacher sinking into a bow even as he gave Harry a look that plainly wished him a painful death .Yeah I did said Harry glancing toward Madam Pomfreys office door to check that the Muffliato spell was still working there was no sign that she had heard any of the commotion .Ive got a job for you .Kreacher will do whatever Master wants said Kreacher sinking so low that his lips almost touched his gnarled toes because Kreacher has no choice but Kreacher is ashamed to have such a master yes Dobby will do it Harry Potter !squeaked Dobby his tennisballsized eyes still swimming in tears .Dobby would be honored to help Harry Potter !Come to think of it it would be good to have both of you said Harry .Okay then .I want you to tail Draco Malfoy .Ignoring the look of mingled surprise and exasperation on Rons face Harry went on I want to know where hes going who hes meeting and what hes doing .I want you to follow him around the clock .Yes Harry Potter !said Dobby at once his great eyes shining with excitement .And if Dobby does it wrong Dobby will throw himself off the topmost tower Harry Potter !There wont be any need for that said Harry hastily .Master wants me to follow the youngest of the Malfoys ?croaked Kreacher .Master wants me to spy upon the pureblood greatnephew of my old mistress ?Thats the one said Harry foreseeing a great danger and determining to prevent it immediately .And youre forbidden to tip him off Kreacher or to show him what youre up to or to talk to him at all or to write him messages or .or to contact him in any way .Got it ?He thought he could see Kreacher struggling to see a loophole in the instructions he had just been given and waited .After a moment or two and to Harrys great satisfaction Kreacher bowed deeply again and said with bitter resentment Master thinks of everything and Kreacher must obey him even though Kreacher would much rather be the servant of the Malfoy boy oh yes .Thats settled then said Harry .Ill want regular reports but make sure Im not surrounded by people when you turn up .Ron and Hermione are okay .And dont tell anyone what youre doing .Just stick to Malfoy like a couple of wart plasters .LORD VOLDEMORTS REQUEST Harry and Ron left the hospital wing first thing on Monday morning restored to full health by the ministrations of Madam Pomfrey and now able to enjoy the benefits of having been knocked out and poisoned the best of which was that Hermione was friends with Ron again .Hermione even escorted them down to breakfast bringing with her the news that Ginny had argued with Dean .The drowsing creature in Harrys chest suddenly raised its head sniffing the air hopefully .What did they row about ?he asked trying to sound casual as they turned onto a seventhfloor corridor that was deserted but for a very small girl who had been examining a tapestry of trolls in tutus .She looked terrified at the sight of the approaching sixth years and dropped the heavy brass scales she was carrying .Its all right !said Hermione kindly hurrying forward to help her .Here .She tapped the broken scales with her wand and said Reparo .The girl did not say thank you but remained rooted to the spot as they passed and watched them out of sight Ron glanced back at her .I swear theyre getting smaller he said .Never mind her said Harry a little impatiently .What did Ginny and Dean row about Hermione ?Oh Dean was laughing about McLaggen hitting that Bludger at you said Hermione .It mustve looked funny said Ron reasonably .It didnt look funny at all !said Hermione hotly .It looked terrible and if Coote and Peakes hadnt caught Harry he could have been very badly hurt !Yeah well there was no need for Ginny and Dean to split up over it said Harry still trying to sound casual .Or are they still together ?Yes they are but why are you so interested ?asked Hermione giving Harry a sharp look .I just dont want my Quidditch team messed up again !he said hastily but Hermione continued to look suspicious and he was most relieved when a voice behind them called Harry !giving him an excuse to turn his back on her .Oh hi Luna .I went to the hospital wing to find you said Luna rummaging in her bag .But they said youd left .She thrust what appeared to be a green onion a large spotted toadstool and a considerable amount of what looked like cat litter into Rons hands finally pulling out a rather grubby scroll of parchment that she handed to Harry . .Ive been told to give you this .It was a small roll of parchment which Harry recognized at once as another invitation to a lesson with Dumbledore .Tonight he told Ron and Hermione once he had unrolled it .Nice commentary last match !said Ron to Luna as she took back the green onion the toadstool and the cat litter .Luna smiled vaguely .Youre making fun of me arent you ?she said .Everyone says I was dreadful .No Im serious !said Ron earnestly .I cant remember enjoying commentary more !What is this by the way ?he added holding the onionlike object up to eye level .Oh its a Gurdyroot she said stuffing the cat litter and the toadstool back into her bag .You can keep it if you like Ive got a few of them .Theyre really excellent for warding off Gulping Plimpies .And she walked away leaving Ron chortling still clutching the Gurdyroot .You know shes grown on me Luna he said as they set off again for the Great Hall .I know shes insane but its in a good He stopped talking very suddenly .Lavender Brown was standing at the foot of the marble staircase looking thunderous .Hi said Ron nervously .Cmon Harry muttered to Hermione and they sped past though not before they had heard Lavender say Why didnt you tell me you were getting out today ?And why was she with you ?Ron looked both sulky and annoyed when he appeared at breakfast half an hour later and though he sat with Lavender Harry did not see them exchange a word all the time they were together .Hermione was acting as though she was quite oblivious to all of this but once or twice Harry saw an inexplicable smirk cross her face .All that day she seemed to be in a particularly good mood and that evening in the common room she even consented to look over in other words finish writing Harrys Herbology essay something she had been resolutely refusing to do up to this point because she had known that Harry would then let Ron copy his work .Thanks a lot Hermione said Harry giving her a hasty pat on the back as he checked his watch and saw that it was nearly eight oclock .Listen Ive got to hurry or Ill be late for Dumbledore .She did not answer but merely crossed out a few of his feebler sentences in a weary sort of way .Grinning Harry hurried out through the portrait hole and off to the headmasters office .The gargoyle leapt aside at the mention of toffee eclairs and Harry took the spiral staircase two steps at a time knocking on the door just as a clock within chimed eight .Enter called Dumbledore but as Harry put out a hand to push the door it was wrenched open from inside .There stood Professor Trelawney .Aha !she cried pointing dramatically at Harry as she blinked at him through her magnifying spectacles .So this is the reason I am to be thrown unceremoniously from your office Dumbledore !My dear Sybill said Dumbledore in a slightly exasperated voice there is no question of throwing you unceremoniously from anywhere but Harry does have an appointment and I really dont think there is any more to be said Very well said Professor Trelawney in a deeply wounded voice .If you will not banish the usurping nag so be it .Perhaps I shall find a school where my talents are better appreciated .She pushed past Harry and disappeared down the spiral staircase they heard her stumble halfway down and Harry guessed that she had tripped over one of her trailing shawls .Please close the door and sit down Harry said Dumbledore sounding rather tired .Harry obeyed noticing as he took his usual seat in front of Dumbledore s desk that the Pensieve lay between them once more as did two more tiny crystal bottles full of swirling memory .Professor Trelawney still isnt happy Firenze is teaching then ?Harry asked .No said Dumbledore Divination is turning out to be much more trouble than I could have foreseen never having studied the subject myself .I cannot ask Firenze to return to the forest where he is now an outcast nor can I ask Sybill Trelawney to leave .Between ourselves she has no idea of the danger she would be in outside the castle .She does not know and I think it would be unwise to enlighten her that she made the prophecy about you and Voldemort you see .Dumbledore heaved a deep sigh then said But never mind my staffing problems .We have much more important matters to discuss .Firstly have you managed the task I set you at the end of our previous lesson ?Ah said Harry brought up short .What with Apparition lessons and Quidditch and Ron being poisoned and getting his skull cracked and his determination to find out what Draco Malfoy was up to Harry had almost forgotten about the memory Dumbledore had asked him to extract from Professor Slughorn .Well I asked Professor Slughorn about it at the end of Potions sir but er he wouldnt give it to me .There was a little silence .I see said Dumbledore eventually peering at Harry over the top of his halfmoon spectacles and giving Harry the usual sensation that he was being Xrayed .And you feel that you have exerted your very best efforts in this matter do you ?That you have exercised all of your considerable ingenuity ?That you have left no depth of cunning unplumbed in your quest to retrieve the memory ?Well Harry stalled at a loss for what to say next .His single attempt to get hold of the memory suddenly seemed embarrassingly feeble .Well .the day Ron swallowed love potion by mistake I took him to Professor Slughorn .I thought maybe if I got Professor Slughorn in a good enough mood And did that work ?asked Dumbledore .Well no sir because Ron got poisoned which naturally made you forget all about trying to retrieve the memory I would have expected nothing else while your best friend was in danger .Once it became clear that Mr Weasley was going to make a full recovery however I would have hoped that you returned to the task I set you .I thought I made it clear to you how very important that memory is .Indeed I did my best to impress upon you that it is the most crucial memory of all and that we will be wasting our time without it .A hot prickly feeling of shame spread from the top of Harrys head all the way down his body .Dumbledore had not raised his voice he did not even sound angry but Harry would have preferred him to yell this cold disappointment was worse than anything .Sir he said a little desperately it isnt that I wasnt bothered or anything Ive just had other other things .Other things on your mind Dumbledore finished the sentence for him .I see .Silence fell between them again the most uncomfortable silence Harry had ever experienced with Dumbledore it seemed to go on and on punctuated only by the little grunting snores of the portrait of Armando Dippet over Dumbledore s head .Harry felt strangely diminished as though he had shrunk a little since he had entered the room .When he could stand it no longer he said Professor Dumbledore Im really sorry .I should have done more .I should have realized you wouldnt have asked me to do it if it wasnt really important .Thank you for saying that Harry said Dumbledore quietly .May I hope then that you will give this matter higher priority from now on ?There will be little point in our meeting after tonight unless we have that memory .Ill do it sir Ill get it from him he said earnestly .Then we shall say no more about it just now said Dumbledore more kindly but continue with our story where we left off .You remember where that was ?Yes sir said Harry quickly .Voldemort killed his father and his grandparents and made it look as though his Uncle Morfin did it .Then he went back to Hogwarts and he asked .he asked Professor Slughorn about Horcruxes he mumbled shamefacedly .Very good said Dumbledore .Now you will remember I hope that I told you at the very outset of these meetings of ours that we would be entering the realms of guesswork and speculation ?Yes sir .Thus far as I hope you agree I have shown you reasonably firm sources of fact for my deductions as to what Voldemort did until the age of seventeen ?Harry nodded .But now Harry said Dumbledore now things become murkier and stranger .If it was difficult to find evidence about the boy Riddle it has been almost impossible to find anyone prepared to reminisce about the man Voldemort .In fact I doubt whether there is a soul alive apart from himself who could give us a full account of his life since he left Hogwarts .However I have two last memories that I would like to share with you .Dumbledore indicated the two little crystal bottles gleaming beside the Pensieve .I shall then be glad of your opinion as to whether the conclusions I have drawn from them seem likely .The idea that Dumbledore valued his opinion this highly made Harry feel even more deeply ashamed that he had failed in the task of retrieving the Horcrux memory and he shifted guiltily in his seat as Dumbledore raised the first of the two bottles to the light and examined it .I hope you are not tired of diving into other peoples memories for they are curious recollections these two he said .This first one came from a very old houseelf by the name of Hokey .Before we see what Hokey witnessed I must quickly recount how Lord Voldemort left Hogwarts .He reached the seventh year of his schooling with as you might have expected top grades in every examination he had taken .All around him his classmates were deciding which jobs they were to pursue once they had left Hogwarts .Nearly everybody expected spectacular things from Tom Riddle prefect Head Boy winner of the Award for Special Services to the School .I know that several teachers Professor Slughorn amongst them suggested that he join the Ministry of Magic offered to set up appointments put him in touch with useful contacts .He refused all offers .The next thing the staff knew Voldemort was working at Borgin and Burkes .At Borgin and Burkes ?Harry repeated stunned .At Borgin and Burkes repeated Dumbledore calmly .I think you will see what attractions the place held for him when we have entered Hokeys memory .But this was not Voldemorts first choice of job .Hardly anyone knew of it at the time I was one of the few in whom the then headmaster confided but Voldemort first approached Professor Dippet and asked whether he could remain at Hogwarts as a teacher .He wanted to stay here ?Why ?asked Harry more amazed still .I believe he had several reasons though he confided none of them to Professor Dippet said Dumbledore .Firstly and very importantly Voldemort was I believe more attached to this school than he has ever been to a person .Hogwarts was where he had been happiest the first and only place he had felt at home .Harry felt slightly uncomfortable at these words for this was exactly how he felt about Hogwarts too .Secondly the castle is a stronghold of ancient magic .Undoubtedly Voldemort had penetrated many more of its secrets than most of the students who pass through the place but he may have felt that there were still mysteries to unravel stores of magic to tap .And thirdly as a teacher he would have had great power and influence over young witches and wizards .Perhaps he had gained the idea from Professor Slughorn the teacher with whom he was on best terms who had demonstrated how influential a role a teacher can play .I do not imagine for an instant that Voldemort envisaged spending the rest of his life at Hogwarts but I do think that he saw it as a useful recruiting ground and a place where he might begin to build himself an army .But he didnt get the job sir ?No he did not .Professor Dippet told him that he was too young at eighteen but invited him to reapply in a few years if he still wished to teach .How did you feel about that sir ?asked Harry hesitantly .Deeply uneasy said Dumbledore .I had advised Armando against the appointment I did not give the reasons I have given you for Professor Dippet was very fond of Voldemort and convinced of his honesty .But I did not want Lord Voldemort back at this school and especially not in a position of power .Which job did he want sir ?What subject did he want to teach ?Somehow Harry knew the answer even before Dumbledore gave it .Defense Against the Dark Arts .It was being taught at the time by an old Professor by the name of Galatea Merrythought who had been at Hogwarts for nearly fifty years .So Voldemort went off to Borgin and Burkes and all the staff who had admired him said what a waste it was a brilliant young wizard like that working in a shop .However Voldemort was no mere assistant .Polite and handsome and clever he was soon given particular jobs of the type that only exist in a place like Borgin and Burkes which specializes as you know Harry in objects with unusual and powerful properties .Voldemort was sent to persuade people to part with their treasures for sale by the partners and he was by all accounts unusually gifted at doing this .Ill bet he was said Harry unable to contain himself .Well quite said Dumbledore with a faint smile .And now it is time to hear from Hokey the houseelf who worked for a very old very rich witch by the name of Hepzibah Smith .Dumbledore tapped a bottle with his wand the cork flew out and he tipped the swirling memory into the Pensieve saying as he did so After you Harry .Harry got to his feet and bent once more over the rippling silver contents of the stone basin until his face touched them .He tumbled through dark nothingness and landed in a sitting room in front of an immensely fat old lady wearing an elaborate ginger wig and a brilliant pink set of robes that flowed all around her giving her the look of a melting iced cake .She was looking into a small jeweled mirror and dabbing rouge onto her already scarlet cheeks with a large powder puff while the tiniest and oldest house elf Harry had ever seen laced her fleshy feet into tight satin slippers .Hurry up Hokey !said Hepzibah imperiously .He said hed come at four its only a couple of minutes to and hes never been late yet !She tucked away her powder puff as the houseelf straightened up .The top of the elfs head barely reached the seat of Hepzibah s chair and her papery skin hung off her frame just like the crisp linen sheet she wore draped like a toga .How do I look ?said Hepzibah turning her head to admire the various angles of her face in the mirror .Lovely madam squeaked Hokey .Harry could only assume that it was down in Hokeys contract that she must lie through her teeth when asked this question because Hepzibah Smith looked a long way from lovely in his opinion .A tinkling doorbell rang and both mistress and elf jumped .Quick quick hes here Hokey !cried Hepzibah and the elf scurried out of the room which was so crammed with objects that it was difficult to see how anybody could navigate their way across it without knocking over at least a dozen things There were cabinets full of little lacquered boxes cases full of goldembossed books shelves of orbs and celestial globes and many flourishing potted plants in brass containers .In fact the room looked like a cross between a magical antique shop and a conservatory .The houseelf returned within minutes followed by a tall young man Harry had no difficulty whatsoever in recognizing as Voldemort .He was plainly dressed in a black suit his hair was a little longer than it had been at school and his cheeks were hollowed but all of this suited him he looked more handsome than ever .He picked his way through the cramped room with an air that showed he had visited many times before and bowed low over Hepzibah s fat little hand brushing it with his lips .I brought you flowers he said quietly producing a bunch of roses from nowhere .You naughty boy you shouldnt have !squealed old Hepzibah though Harry noticed that she had an empty vase standing ready on the nearest little table .You do spoil this old lady Tom .Sit down sit down .Wheres Hokey ?Ah .The houseelf had come dashing back into the room carrying a tray of little cakes which she set at her mistresss elbow .Help yourself Tom said Hepzibah I know how you love my cakes .Now how are you ?You look pale .They overwork you at that shop Ive said it a hundred times .Voldemort smiled mechanically and Hepzibah simpered .Well whats your excuse for visiting this time ?she asked batting her lashes .Mr Burke would like to make an improved offer for the goblinmade armor said Voldemort .Five hundred Galleons he feels it is a more than fair Now now not so fast or Ill think youre only here for my trinkets !pouted Hepzibah .I am ordered here because of them said Voldemort quietly .I am only a poor assistant madam who must do as he is told .Mr Burke wishes me to inquire Oh Mr Burke phooey !said Hepzibah waving a little hand .Ive something to show you that Ive never shown Mr Burke !Can you keep a secret Tom ?Will you promise you wont tell Mr Burke Ive got it ?Hed never let me rest if he knew Id shown it to you and Im not selling not to Burke not to anyone !But you Tom youll appreciate it for its history not how many Galleons you can get for it .Id be glad to see anything Miss Hepzibah shows me said Voldemort quietly and Hepzibah gave another girlish giggle .I had Hokey bring it out for me .Hokey where are you ?I want to show Mr Riddle our finest treasure .In fact bring both while youre at it .Here madam squeaked the houseelf and Harry saw two leather boxes one on top of the other moving across the room as if of their own volition though he knew the tiny elf was holding them over her head as she wended her way between tables pouffes and footstools .Now said Hepzibah happily taking the boxes from the elf laying them in her lap and preparing to open the topmost one I think youll like this Tom .Oh if my family knew I was showing you .They cant wait to get their hands on this !She opened the lid .Harry edged forward a little to get a better view and saw what looked like a small golden cup with two finely wrought handles .I wonder whether you know what it is Tom ?Pick it up have a good look !whispered Hepzibah and Voldemort stretched out a longfingered hand and lifted the cup by one handle out of its snug silken wrappings .Harry thought he saw a red gleam in his dark eyes .His greedy expression was curiously mirrored on Hepzibahs face except that her tiny eyes were fixed upon Voldemorts handsome features .A badger murmured Voldemort examining the engraving upon the cup .Then this was . ?Helga Hufflepuffs as you very well know you clever boy !said Hepzibah leaning forward with a loud creaking of corsets and actually pinching his hollow cheek .Didnt I tell you I was distantly descended ?This has been handed down in the family for years and years .Lovely isnt it ?And all sorts of powers its supposed to possess too but I havent tested them thoroughly I just keep it nice and safe in here .She hooked the cup back off Voldemorts long forefinger and restored it gently to its box too intent upon settling it carefully back into position to notice the shadow that crossed Voldemorts face as the cup was taken away .Now then said Hepzibah happily wheres Hokey ?Oh yes there you are take that away now Hokey .The elf obediently took the boxed cup and Hepzibah turned her attention to the much flatter box in her lap .I think youll like this even more Tom she whispered .Lean in a little dear boy so you can see . .Of course Burke knows Ive got this one I bought it from him and I daresay hed love to get it back when Im gone .She slid back the fine filigree clasp and flipped open the box .There upon the smooth crimson velvet lay a heavy golden locket .Voldemort reached out his hand without invitation this time and held it up to the light staring at it .Slytherins mark he said quietly as the light played upon an ornate serpentine S .Thats right !said Hepzibah delighted apparently at the sight of Voldemort gazing at her locket transfixed .I had to pay an arm and a leg for it but I couldnt let it pass not a real treasure like that had to have it for my collection .Burke bought it apparently from a raggedlooking woman who seemed to have stolen it but had no idea of its true value There was no mistaking it this time Voldemorts eyes flashed scarlet at the words and Harry saw his knuckles whiten on the lockets chain .I daresay Burke paid her a pittance but there you are .Pretty isnt it ?And again all kinds of powers attributed to it though I just keep it nice and safe .She reached out to take the locket back .For a moment Harry thought Voldemort was not going to let go of it but then it had slid through his fingers and was back in its red velvet cushion .So there you are Tom dear and I hope you enjoyed that !She looked him full in the face and for the first time Harry saw her foolish smile falter .Are you all right dear ?Oh yes said Voldemort quietly .Yes Im very well .I thought but a trick of the light I suppose said Hepzibah looking unnerved and Harry guessed that she too had seen the momentary red gleam in Voldemorts eyes .Here Hokey take these away and lock them up again .The usual enchantments .Time to leave Harry said Dumbledore quietly and as the little elf bobbed away bearing the boxes Dumbledore grasped Harry once again above the elbow and together they rose up through oblivion and back to Dumbledore s office .Hepzibah Smith died two days after that little scene said Dumbledore resuming his seat and indicating that Harry should do the same .Hokey the houseelf was convicted by the Ministry of poisoning her mistresss evening cocoa by accident .No way !said Harry angrily .I see we are of one mind said Dumbledore .Certainly there are many similarities between this death and that of the Riddles .In both cases somebody else took the blame someone who had a clear memory of having caused the death Hokey confessed ?She remembered putting something in her mistresss cocoa that turned out not to be sugar but a lethal and littleknown poison said Dumbledore .It was concluded that she had not meant to do it but being old and confused Voldemort modified her memory just like he did with Morfin !Yes that is my conclusion too said Dumbledore .And just as with Morfin the Ministry was predisposed to suspect Hokey because she was a houseelf said Harry .He had rarely felt more in sympathy with the society Hermione had set up S .P .E .W .Precisely said Dumbledore .She was old she admitted to having tampered with the drink and nobody at the Ministry bothered to inquire further .As in the case of Morfin by the time I traced her and managed to extract this memory her life was almost over but her memory of course proves nothing except that Voldemort knew of the existence of the cup and the locket .By the time Hokey was convicted Hepzibahs family had realized that two of her greatest treasures were missing .It took them a while to be sure of this for she had many hiding places having always guarded her collection most jealously .But before they were sure beyond doubt that the cup and the locket were both gone the assistant who had worked at Borgin and Burkes the young man who had visited Hepzibah so regularly and charmed her so well had resigned his post and vanished .His superiors had no idea where he had gone they were as surprised as anyone at his disappearance .And that was the last that was seen or heard of Tom Riddle for a very long time .Now said Dumbledore if you dont mind Harry I want to pause once more to draw your attention to certain points of our story .Voldemort had committed another murder whether it was his first since he killed the Riddles I do not know but I think it was .This time as you will have seen he killed not for revenge but for gain .He wanted the two fabulous trophies that poor besotted old woman showed him .Just as he had once robbed the other children at his orphanage just as he had stolen his Uncle Morfin s ring so he ran off now with Hepzibahs cup and locket .But said Harry frowning it seems mad .Risking everything throwing away his job just for those .Mad to you perhaps but not to Voldemort said Dumbledore .I hope you will understand in due course exactly what those objects meant to him Harry but you must admit that it is not difficult to imagine that he saw the locket at least as rightfully his .The locket maybe said Harry but why take the cup as well ?It had belonged to another of Hogwartss founders said Dumbledore .I think he still felt a great pull toward the school and that he could not resist an object so steeped in Hogwarts history .There were other reasons I think .I hope to be able to demonstrate them to you in due course .And now for the very last recollection I have to show you at least until you manage to retrieve Professor Slughorns memory for us .Ten years separates Hokeys memory and this one ten years during which we can only guess at what Lord Voldemort was doing .Harry got to his feet once more as Dumbledore emptied the last memory into the Pensieve .Whose memory is it ?he asked .Mine said Dumbledore .And Harry dived after Dumbledore through the shifting silver mass landing in the very office he had just left .There was Fawkes slumbering happily on his perch and there behind the desk was Dumbledore who looked very similar to the Dumbledore standing beside Harry though both hands were whole and undamaged and his face was perhaps a little less lined .The one difference between the presentday office and this one was that it was snowing in the past bluish flecks were drifting past the window in the dark and building up on the outside ledge .The younger Dumbledore seemed to be waiting for something and sure enough moments after their arrival there was a knock on the door and he said Enter .Harry let out a hastily stifled gasp .Voldemort had entered the room .His features were not those Harry had seen emerge from the great stone cauldron almost two years ago They were not as snakelike the eyes were not yet scarlet the face not yet masklike and yet he was no longer handsome Tom Riddle .It was as though his features had been burned and blurred they were waxy and oddly distorted and the whites of the eyes now had a permanently bloody look though the pupils were not yet the slits that Harry knew they would become .He was wearing a long black cloak and his face was as pale as the snow glistening on his shoulders .The Dumbledore behind the desk showed no sign of surprise .Evidently this visit had been made by appointment .Good evening Tom said Dumbledore easily .Wont you sit down ?Thank you said Voldemort and he took the seat to which Dumbledore had gestured the very seat by the looks of it that Harry had just vacated in the present .I heard that you had become headmaster he said and his voice was slightly higher and colder than it had been .A worthy choice .I am glad you approve said Dumbledore smiling .May I offer you a drink ?That would be welcome said Voldemort .I have come a long way .Dumbledore stood and swept over to the cabinet where he now kept the Pensieve but which then was full of bottles .Having handed Voldemort a goblet of wine and poured one for himself he returned to the seat behind his desk .So Tom .to what do I owe the pleasure ?Voldemort did not answer at once but merely sipped his wine .They do not call me Tom anymore he said .These days I am known as I know what you are known as said Dumbledore smiling pleasantly .But to me Im afraid you will always be Tom Riddle .It is one of the irritating things about old teachers .I am afraid that they never quite forget their charges youthful beginnings .He raised his glass as though toasting Voldemort whose face remained expressionless .Nevertheless Harry felt the atmosphere in the room change subtly Dumbledores refusal to use Voldemorts chosen name was a refusal to allow Voldemort to dictate the terms of the meeting and Harry could tell that Voldemort took it as such .I am surprised you have remained here so long said Voldemort after a short pause .I always wondered why a wizard such as yourself never wished to leave school .Well said Dumbledore still smiling to a wizard such as myself there can be nothing more important than passing on ancient skills helping hone young minds .If I remember correctly you once saw the attraction of teaching too .I see it still said Voldemort .I merely wondered why you who are so often asked for advice by the Ministry and who have twice I think been offered the post of Minister Three times at the last count actually said Dumbledore .But the Ministry never attracted me as a career .Again something we have in common I think .Voldemort inclined his head unsmiling and took another sip of wine .Dumbledore did not break the silence that stretched between them now but waited with a look of pleasant expectancy for Voldemort to talk first .I have returned he said after a little while later perhaps than Professor Dippet expected .but I have returned nevertheless to request again what he once told me I was too young to have .I have come to you to ask that you permit me to return to this castle to teach .I think you must know that I have seen and done much since I left this place .I could show and tell your students things they can gain from no other wizard .Dumbledore considered Voldemort over the top of his own goblet for a while before speaking .Yes I certainly do know that you have seen and done much since leaving us he said quietly .Rumors of your doings have reached your old school Tom .I should be sorry to believe half of them .Voldemort s expression remained impassive as he said Greatness inspires envy envy engenders spite spite spawns lies .You must know this Dumbledore .You call it ‘greatness what you have been doing do you ?asked Dumbledore delicately .Certainly said Voldemort and his eyes seemed to burn red .I have experimented I have pushed the boundaries of magic further perhaps than they have ever been pushed Of some kinds of magic Dumbledore corrected him quietly .Of some .Of others you remain .forgive me .woefully ignorant .For the first time Voldemort smiled .It was a taut leer an evil thing more threatening than a look of rage .The old argument he said softly .But nothing I have seen in the world has supported your famous pronouncements that love is more powerful than my kind of magic Dumbledore .Perhaps you have been looking in the wrong places suggested Dumbledore .Well then what better place to start my fresh researches than here at Hogwarts ?said Voldemort .Will you let me return ?Will you let me share my knowledge with your students ?I place myself and my talents at your disposal .I am yours to command .Dumbledore raised his eyebrows .And what will become of those whom you command ?What will happen to those who call themselves or so rumor has it the Death Eaters ?Harry could tell that Voldemort had not expected Dumbledore to know this name he saw Voldemorts eyes flash red again and the slitlike nostrils flare .My friends he said after a moments pause will carry on without me I am sure .I am glad to hear that you consider them friends said Dumbledore .I was under the impression that they are more in the order of servants .You are mistaken said Voldemort .Then if I were to go to the Hogs Head tonight I would not find a group of them Nott Rosier Mulciber Dolohov awaiting your return ?Devoted friends indeed to travel this far with you on a snowy night merely to wish you luck as you attempted to secure a teaching post .There could be no doubt that Dumbledore s detailed knowledge of those with whom he was traveling was even less welcome to Voldemort however he rallied almost at once .You are omniscient as ever Dumbledore .Oh no merely friendly with the local barmen said Dumbledore lightly .Now Tom .Dumbledore set down his empty glass and drew himself up in his seat the tips of his fingers together in a very characteristic gesture .Let us speak openly .Why have you come here tonight surrounded by henchmen to request a job we both know you do not want ?Voldemort looked coldly surprised .A job I do not want ?On the contrary Dumbledore I want it very much .Oh you want to come back to Hogwarts but you do not want to teach any more than you wanted to when you were eighteen .What is it youre after Tom ?Why not try an open request for once ?Voldemort sneered .If you do not want to give me a job Of course I dont said Dumbledore .And I dont think for a moment you expected me to .Nevertheless you came here you asked you must have had a purpose .Voldemort stood up .He looked less like Tom Riddle than ever his features thick with rage .This is your final word ?It is said Dumbledore also standing .Then we have nothing more to say to each other .No nothing said Dumbledore and a great sadness filled his face .The time is long gone when I could frighten you with a burning wardrobe and force you to make repayment for your crimes .But I wish I could Tom .I wish I could .For a second Harry was on the verge of shouting a pointless warning He was sure that Voldemorts hand had twitched toward his pocket and his wand but then the moment had passed Voldemort had turned away the door was closing and he was gone .Harry felt Dumbledore s hand close over his arm again and moments later they were standing together on almost the same spot but there was no snow building on the window ledge and Dumbledores hand was blackened and deadlooking once more .Why ?said Harry at once looking up into Dumbledores face .Why did he come back ?Did you ever find out ?I have ideas said Dumbledore but no more than that .What ideas sir ?I shall tell you Harry when you have retrieved that memory from Professor Slughorn said Dumbledore .When you have that last piece of the jigsaw everything will I hope be clear .to both of us .Harry was still burning with curiosity and even though Dumbledore had walked to the door and was holding it open for him he did not move at once .Was he after the Defense Against the Dark Arts job again sir ?He didnt say .Oh he definitely wanted the Defense Against the Dark Arts job said Dumbledore .The aftermath of our little meeting proved that .You see we have never been able to keep a Defense Against the Dark Arts teacher for longer than a year since I refused the post to Lord Voldemort .THE UNKNOWABLE ROOM Harry wracked his brains over the next week as to how he was to persuade Slughorn to hand over the true memory but nothing in the nature of a brain wave occurred and he was reduced to doing what he did increasingly these days when at a loss poring over his Potions book hoping that the Prince would have scribbled something useful in a margin as he had done so many times before .You wont find anything in there said Hermione firmly late on Sunday evening .Dont start Hermione said Harry .If it hadnt been for the Prince Ron wouldnt be sitting here now .He would if youd just listened to Snape in our first year said Hermione dismissively .Harry ignored her .He had just found an incantation Sectumsempral scrawled in a margin above the intriguing words For Enemies and was itching to try it out but thought it best not to in front of Hermione .Instead he surreptitiously folded down the corner of the page .They were sitting beside the fire in the common room the only other people awake were fellow sixth years .There had been a certain amount of excitement earlier when they had come back from dinner to find a new sign on the notice board that announced the date for their Apparition Test .Those who would be seventeen on or before the first test date the twentyfirst of April had the option of signing up for additional practice sessions which would take place heavily supervised in Hogsmeade .Ron had panicked on reading this notice he had still not managed to Apparate and feared he would not be ready for the test .Hermione who had now achieved Apparition twice was a little more confident but Harry who would not be seventeen for another four months could not take the test whether ready or not .At least you can Apparate though !said Ron tensely .Youll have no trouble come July !Ive only done it once Harry reminded him he had finally managed to disappear and rematerialize inside his hoop during their previous lesson .Having wasted a lot of time worrying aloud about Apparition Ron was now struggling to finish a viciously difficult essay for Snape that Harry and Hermione had already completed .Harry fully expected to receive low marks on his because he had disagreed with Snape on the best way to tackle dementors but he did not care Slughorns memory was the most important thing to him now . ‘Tm telling you the stupid Prince isnt going to be able to help you with this Harry !said Hermione more loudly .Theres only one way to force someone to do what you want and thats the Imperius Curse which is illegal Yeah I know that thanks said Harry not looking up from the book .Thats why Im looking for something different .Dumbledore says Veritaserum wont do it but there might be something else a potion or a spell .Youre going about it the wrong way said Hermione .Only you can get the memory Dumbledore says .That must mean you can persuade Slughorn where other people cant .Its not a question of slipping him a potion anyone could do that How dyou spell ‘belligerent ?said Ron shaking his quill very hard while staring at his parchment .It cant be B U M No it isnt said Hermione pulling Rons essay toward her .And ‘augury doesnt begin O R G either .What kind of quill are you using ?Its one of Fred and Georges SpellCheck ones .but I think the charm must be wearing off .Yes it must said Hermione pointing at the title of his essay because we were asked how wed deal with dementors not ‘Dugbogs and I dont remember you changing your name to ‘Roonil Wazlib either .Ah no !said Ron staring horrorstruck at the parchment .Dont say Ill have to write the whole thing out again !Its okay we can fix it said Hermione pulling the essay toward her and taking out her wand .I love you Hermione said Ron sinking back in his chair rubbing his eyes wearily .Hermione turned faintly pink but merely said Dont let Lavender hear you saying that .I wont said Ron into his hands .Or maybe I will .then shell ditch me .Why dont you ditch her if you want to finish it ?asked Harry .You havent ever chucked anyone have you ?said Ron .You and Cho just Sort of fell apart yeah said Harry Wish that would happen with me and Lavender said Ron gloomily watching Hermione silently tapping each of his misspelled words with the end of her wand so that they corrected themselves on the page .But the more I hint I want to finish it the tighter she holds on .Its like going out with the giant squid .There said Hermione some twenty minutes later handing back Rons essay .Thanks a million said Ron .Can I borrow your quill for the conclusion ?Harry who had found nothing useful in the Half Blood Princes notes so far looked around the three of them were now the only ones left in the common room Seamus having just gone up to bed cursing Snape and his essay .The only sounds were the crackling of the fire and Ron scratching out one last paragraph on dementors using Hermiones quill .Harry had just closed the HalfBlood Princes book yawning when Crack .Hermione let out a little shriek Ron spilled ink all over his freshly completed essay and Harry said Kreacher !The houseelf bowed low and addressed his own gnarled toes .Master said he wanted regular reports on what the Malfoy boy is doing so Kreacher has come to give Crack .Dobby appeared alongside Kreacher his teacozy hat askew .Dobby has been helping too Harry Potter !he squeaked casting Kreacher a resentful look .And Kreacher ought to tell Dobby when he is coming to see Harry Potter so they can make their reports together !What is this ?asked Hermione still looking shocked by these sudden appearances .Whats going on Harry ?Harry hesitated before answering because he had not told Hermione about setting Kreacher and Dobby to tail Malfoy houseelves were always such a touchy subject with her .Well .theyve been following Malfoy for me he said .Night and day croaked Kreacher .Dobby has not slept for a week Harry Potter !said Dobby proudly swaying where he stood .Hermione looked indignant .You havent slept Dobby ?But surely Harry you didnt tell him not to No of course I didnt said Harry quickly .Dobby you can sleep all right ?But has either of you found out anything ?he hastened to ask before Hermione could intervene again .Master Malfoy moves with a nobility that befits his pure blood croaked Kreacher at once .His features recall the fine bones of my mistress and his manners are those of Draco Malfoy is a bad boy !squeaked Dobby angrily .A bad boy who who He shuddered from the tassel of his tea cozy to the toes of his socks and then ran at the fire as though about to dive into it Harry to whom this was not entirely unexpected caught him around the middle and held him fast .For a few seconds Dobby struggled then went limp .Thank you Harry Potter he panted .Dobby still finds it difficult to speak ill of his old masters .Harry released him Dobby straightened his tea cozy and said defiantly to Kreacher But Kreacher should know that Draco Malfoy is not a good master to a houseelf !Yeah we dont need to hear about you being in love with Malfoy Harry told Kreacher .Lets fast forward to where hes actually been going .Kreacher bowed again looking furious and then said Master Malfoy eats in the Great Hall he sleeps in a dormitory in the dungeons he attends his classes in a variety of Dobby you tell me said Harry cutting across Kreacher .Has he been going anywhere he shouldnt have ?Harry Potter sir squeaked Dobby his great orblike eyes shining in the firelight the Malfoy boy is breaking no rules that Dobby can discover but he is still keen to avoid detection .He has been making regular visits to the seventh floor with a variety of other students who keep watch for him while he enters The Room of Requirement !said Harry smacking himself hard on the forehead with Advanced Potion Making .Hermione and Ron stared at him .Thats where hes been sneaking off to !Thats where hes doing .whatever hes doing !And I bet thats why hes been disappearing off the map come to think of it Ive never seen the Room of Requirement on there !Maybe the Marauders never knew the room was there said Ron .I think itll be part of the magic of the room said Hermione .If you need it to be Unplottable it will be .Dobby have you managed to get in to have a look at what Malfoys doing ?said Harry eagerly .No Harry Potter that is impossible said Dobby .No its not said Harry at once .Malfoy got into our headquarters there last year so Ill be able to get in and spy on him no problem .But I dont think you will Harry said Hermione slowly .Malfoy already knew exactly how we were using the room didnt he because that stupid Marietta had blabbed .He needed the room to become the headquarters of the D .A .so it did .But you dont know what the room becomes when Malfoy goes in there so you dont know what to ask it to transform into .Therell be a way around that said Harry dismissively .Youve done brilliantly Dobby .Kreachers done well too said Hermione kindly but far from looking grateful Kreacher averted his huge bloodshot eyes and croaked at the ceiling The Mudblood is speaking to Kreacher Kreacher will pretend he cannot hear Get out of it Harry snapped at him and Kreacher made one last deep bow and Disapparated .Youd better go and get some sleep too Dobby .Thank you Harry Potter sir !squeaked Dobby happily and he too vanished .How goods this ?said Harry enthusiastically turning to Ron and Hermione the moment the room was elffree again .We know where Malfoys going !Weve got him cornered now !Yeah its great said Ron glumly who was attempting to mop up the sodden mass of ink that had recently been an almost completed essay .Hermione pulled it toward her and began siphoning the ink off with her wand .But whats all this about him going up there with a Variety of students ?said Hermione .How many people are in on it ?You wouldnt think hed trust lots of them to know what hes doing .Yeah that is weird said Harry frowning .I heard him telling Crabbe it wasnt Crabbes business what he was doing .so whats he telling all these .all these .Harrys voice tailed away he was staring at the fire .God Ive been stupid he said quietly .Its obvious isnt it ?There was a great vat of it down in the dungeon .He couldve nicked some any time during that lesson .Nicked what ?said Ron .Polyjuice Potion .He stole some of the Polyjuice Potion Slughorn showed us in our first Potions lesson .There arent a whole variety of students standing guard for Malfoy .its just Crabbe and Goyle as usual .Yeah it all fits !said Harry jumping up and starting to pace in front of the fire .Theyre stupid enough to do what theyre told even if he wont tell them what hes up to .but he doesnt want them to be seen lurking around outside the Room of Requirement so hes got them taking Polyjuice to make them look like other people .Those two girls I saw him with when he missed Quidditch ha !Crabbe and Goyle !Do you mean to say said Hermione in a hushed voice that that little girl whose scales I repaired ?Yeah of course !said Harry loudly staring at her .Of course !Malfoy mustve been inside the room at the time so she what am I talking about ?he dropped the scales to tell Malfoy not to come out because there was someone there !And there was that girl who dropped the toadspawn too !Weve been walking past him all the time and not realizing it !Hes got Crabbe and Goyle transforming into girls ?guffawed Ron .Blimey .No wonder they dont look too happy these days .Im surprised they dont tell him to stuff it .Well they wouldnt would they if hes shown them his Dark Mark ?said Harry .Hmmm .the Dark Mark we dont know exists said Hermione skeptically rolling up Rons dried essay before it could come to any more harm and handing it to him .Well see said Harry confidently .Yes we will Hermione said getting to her feet and stretching .But Harry before you get all excited I still dont think youll be able to get into the Room of Requirement without knowing whats there first .And I dont think you should forget she heaved her bag onto her shoulder and gave him a very serious look that what youre supposed to be concentrating on is getting that memory from Slughorn .Good night .Harry watched her go feeling slightly disgruntled .Once the door to the girls dormitories had closed behind her he rounded on Ron .What dyou think ?Wish I could Disapparate like a houseelf said Ron staring at the spot where Dobby had vanished .Id have that Apparition Test in the bag .Harry did not sleep well that night .He lay awake for what felt like hours wondering how Malfoy was using the Room of Requirement and what he Harry would see when he went in there the following day for whatever Hermione said Harry was sure that if Malfoy had been able to see the headquarters of the D .A .he would be able to see Malfoy s .what could it be ?A meeting place ?A hideout ?A storeroom ?A workshop ?Harrys mind worked feverishly and his dreams when he finally fell asleep were broken and disturbed by images of Malfoy who turned into Slughorn who turned into Snape .Harry was in a state of great anticipation over breakfast the following morning he had a free period before Defense Against the Dark Arts and was determined to spend it trying to get into the Room of Requirement .Hermione was rather ostentatiously showing no interest in his whispered plans for forcing entry into the room which irritated Harry because he thought she might be a lot of help if she wanted to .Look he said quietly leaning forward and putting a hand on the Daily Prophet which she had just removed from a post owl to stop her from opening it and vanishing behind it .I havent forgotten about Slughorn but I havent got a clue how to get that memory off him and until I get a brain wave why shouldnt I find out what Malfoys doing ?Ive already told you you need to persuade Slughorn said Hermione .Its not a question of tricking him or bewitching him or Dumbledore could have done it in a second .Instead of messing around outside the Room of Requirement she jerked the Prophet out from under Harrys hand and unfolded it to look at the front page you should go and find Slughorn and start appealing to his better nature .Anyone we know ?asked Ron as Hermione scanned the headlines .Yes !said Hermione causing both Harry and Ron to gag on their breakfast .But its all right hes not dead its Mundungus hes been arrested and sent to Azkaban !Something to do with impersonating an Inferius during an attempted burglary .and someone called Octavius Pepper has vanished .Oh and how horrible a nineyearold boy has been arrested for trying to kill his grandparents they think he was under the Imperius Curse .They finished their breakfast in silence .Hermione set off immediately for Ancient Runes Ron for the common room where he still had to finish his conclusion on Snapes dementor essay and Harry for the corridor on the seventh floor and the stretch of wall opposite the tapestry of Barnabas the Barmy teaching trolls to do ballet .Harry slipped on his Invisibility Cloak once he had found an empty passage but he need not have bothered .When he reached his destination he found it deserted .Harry was not sure whether his chances of getting inside the room were better with Malfoy inside it or out but at least his first attempt was not going to be complicated by the presence of Crabbe or Goyle pretending to be an elevenyearold girl .He closed his eyes as he approached the place where the Room of Requirements door was concealed .He knew what he had to do he had become most accomplished at it last year .Concentrating with all his might he thought I need to see what Malfoy s doing in here .I need to see what Malfoys doing in here .I need to see what Malfoys doing in here .Three times he walked past the door then his heart pounding with excitement he opened his eyes and faced it But he was still looking at a stretch of mundanely blank wall .He moved forward and gave it an experimental push .The stone remained solid and unyielding .Okay said Harry aloud .Okay .I thought the wrong thing .He pondered for a moment then set off again eyes closed concentrating as hard as he could .I need to see the place where Malfoy keeps coming secretly .I need to see the place where Malfoy keeps coming secretly .After three walks past he opened his eyes expectantly .There was no door .Oh come off it he told the wall irritably .That was a clear instruction .Fine .He thought hard for several minutes before striding off once more .I need you to become the place you become for Draco Malfoy .He did not immediately open his eyes when he had finished his patrolling he was listening hard as though he might hear the door pop into existence .He heard nothing however except the distant twittering of birds outside .He opened his eyes .There was still no door .Harry swore .Someone screamed .He looked around to see a gaggle of first years running back around the corner apparently under the impression that they had just encountered a particularly foulmouthed ghost .Harry tried every variation of I need to see what Draco Malfoy is doing inside you that he could think of for a whole hour at the end of which he was forced to concede that Hermione might have had a point The room simply did not want to open for him .Frustrated and annoyed he set off for Defense Against the Dark Arts pulling off his Invisibility Cloak and stuffing it into his bag as he went .Late again Potter said Snape coldly as Harry hurried into the candlelit classroom .Ten points from Gryffindor .Harry scowled at Snape as he flung himself into the seat beside Ron half the class was still on its feet taking out books and organizing their things he could not be much later than any of them .Before we start I want your dementor essays said Snape waving his wand carelessly so that twenty five scrolls of parchment soared into the air and landed in a neat pile on his desk .And I hope for your sakes they are better than the tripe I had to endure on resisting the Imperius Curse .Now if you will all open your books to page what is it Mr Finnigan ?Sir said Seamus Ive been wondering how do you tell the difference between an Inferius and a ghost ?Because there was something in the paper about an Inferius No there wasnt said Snape in a bored voice .But sir I heard people talking If you had actually read the article in question Mr Finnigan you would have known that the socalled Inferius was nothing but a smelly sneak thief by the name of Mundungus Fletcher .I thought Snape and Mundungus were on the same side muttered Harry to Ron and Hermione .Shouldnt he be upset Mundungus has been arrest But Potter seems to have a lot to say on the subject said Snape pointing suddenly at the back of the room his black eyes fixed on Harry Let us ask Potter how we would tell the difference between an Inferius and a ghost .The whole class looked around at Harry who hastily tried to recall what Dumbledore had told him the night that they had gone to visit Slughorn .Er well ghosts are transparent he said .Oh very good interrupted Snape his lip curling .Yes it is easy to see that nearly six years of magical education have not been wasted on you Potter . ‘Ghosts are transparent .Pansy Parkinson let out a highpitched giggle .Several other people were smirking .Harry took a deep breath and continued calmly though his insides were boiling Yeah ghosts are transparent but Inferi are dead bodies arent they ?So theyd be solid A fiveyearold could have told us as much sneered Snape .The Inferius is a corpse that has been reanimated by a Dark wizards spells .It is not alive it is merely used like a puppet to do the wizards bidding .A ghost as I trust that you are all aware by now is the imprint of a departed soul left upon the earth .and of course as Potter so wisely tells us transparent .Well what Harry said is the most useful if were trying to tell them apart !said Ron .When we come facetoface with one down a dark alley were going to be having a shufti to see if its solid arent we were not going to be asking ‘Excuse me are you the imprint of a departed soul ?There was a ripple of laughter instantly quelled by the look Snape gave the class .Another ten points from Gryffindor said Snape .I would expect nothing more sophisticated from you Ronald Weasley the boy so solid he cannot Apparate half an inch across a room .IVo !whispered Hermione grabbing Harrys arm as he opened his mouth furiously .Theres no point youll just end up in detention again leave it !Now open your books to page two hundred and thirteen said Snape smirking a little and read the first two paragraphs on the Cruciatus Curse .Ron was very subdued all through the class .When the bell sounded at the end of the lesson Lavender caught up with Ron and Harry Hermione mysteriously melted out of sight as she approached and abused Snape hotly for his jibe about Rons Apparition but this seemed to merely irritate Ron and he shook her off by making a detour into the boys bathroom with Harry .Snapes right though isnt he ?said Ron after staring into a cracked mirror for a minute or two .I dunno whether its worth me taking the test .I just cant get the hang of Apparition .You might as well do the extra practice sessions in Hogsmeade and see where they get you said Harry reasonably .Itll be more interesting than trying to get into a stupid hoop anyway .Then if youre still not you know as good as youd like to be you can postpone the test do it with me over the summ Myrtle this is the boys bathroom !The ghost of a girl had risen out of the toilet in a cubicle behind them and was now floating in midair staring at them through thick white round glasses .Oh she said glumly .Its you two .Who were you expecting ?said Ron looking at her in the mirror .Nobody said Myrtle picking moodily at a spot on her chin .He said hed come back and see me but then you said youd pop in and visit me too she gave Harry a reproachful look and I havent seen you for months and months .Ive learned not to expect too much from boys .I thought you lived in that girls bathroom ?said Harry who had been careful to give the place a wide berth for some years now .I do she said with a sulky little shrug but that doesnt mean I cant visit other places .I came and saw you in your bath once remember ?Vividly said Harry .But I thought he liked me she said plaintively .Maybe if you two left hed come back again .We had lots in common .Im sure he felt it .And she looked hopefully toward the door .When you say you had lots in common said Ron sounding rather amused now dyou mean he lives in an Sbend too ?No said Myrtle defiantly her voice echoing loudly around the old tiled bathroom .I mean hes sensitive people bully him too and he feels lonely and hasnt got anybody to talk to and hes not afraid to show his feelings and cry !Theres been a boy in here crying ?said Harry curiously .A young boy ?Never you mind !said Myrtle her small leaky eyes fixed on Ron who was now definitely grinning .I promised I wouldnt tell anyone and Ill take his secret to the not the grave surely ?said Ron with a snort .The sewers maybe .Myrtle gave a howl of rage and dived back into the toilet causing water to slop over the sides and onto the floor .Goading Myrtle seemed to have put fresh heart into Ron .Youre right he said swinging his schoolbag back over his shoulder Ill do the practice sessions in Hogsmeade before I decide about taking the test .And so the following weekend Ron joined Hermione and the rest of the sixth years who would turn seventeen in time to take the test in a fortnight .Harry felt rather jealous watching them all get ready to go into the village he missed making trips there and it was a particularly fine spring day one of the first clear skies they had seen in a long time .However he had decided to use the time to attempt another assault on the Room of Requirement .Youd do better said Hermione when he confided this plan to Ron and her in the entrance hall to go straight to Slughorns office and try and get that memory from him .Ive been trying !said Harry crossly which was perfectly true .He had lagged behind after every Potions lesson that week in an attempt to corner Slughorn but the Potions master always left the dungeon so fast that Harry had not been able to catch him .Twice Harry had gone to his office and knocked but received no reply though on the second occasion he was sure he had heard the quickly stifled sounds of an old gramophone .He doesnt want to talk to me Hermione !He can tell Ive been trying to get him on his own again and hes not going to let it happen !Well youve just got to keep at it havent you ?The short queue of people waiting to file past Filch who was doing his usual prodding act with the Secrecy Sensor moved forward a few steps and Harry did not answer in case he was overheard by the caretaker .He wished Ron and Hermione both luck then turned and climbed the marble staircase again determined whatever Hermione said to devote an hour or two to the Room of Requirement .Once out of sight of the entrance hall Harry pulled the Marauders Map and his Invisibility Cloak from his bag .Having concealed himself he tapped the map murmured I solemnly swear that I am up to no good and scanned it carefully .As it was Sunday morning nearly all the students were inside their various common rooms the Gryffindors in one tower the Ravenclaws in another the Slytherins in the dungeons and the Hufflepuffs in the basement near the kitchens .Here and there a stray person meandered around the library or up a corridor .There were a few people out in the grounds .and there alone in the seventhfloor corridor was Gregory Goyle .There was no sign of the Room of Requirement but Harry was not worried about that if Goyle was standing guard outside it the room was open whether the map was aware of it or not .He therefore sprinted up the stairs slowing down only when he reached the corner into the corridor when he began to creep very slowly toward the very same little girl clutching her heavy brass scales that Hermione had so kindly helped a fortnight before .He waited until he was right behind her before bending very low and whispering Hello .youre very pretty arent you ?Goyle gave a highpitched scream of terror threw the scales up into the air and sprinted away vanishing from sight long before the sound of the scales smashing had stopped echoing around the corridor .Laughing Harry turned to contemplate the blank wall behind which he was sure Draco Malfoy was now standing frozen aware that someone unwelcome was out there but not daring to make an appearance .It gave Harry a most agreeable feeling of power as he tried to remember what form of words he had not yet tried .Yet this hopeful mood did not last long .Half an hour later having tried many more variations of his request to see what Malfoy was up to the wall was just as doorless as ever .Harry felt frustrated beyond belief Malfoy might be just feet away from him and there was still not the tiniest shred of evidence as to what he was doing in there .Losing his patience completely Harry ran at the wall and kicked it .OUCH !He thought he might have broken his toe as he clutched it and hopped on one foot the Invisibility Cloak slipped off him .Harry ?He spun around onelegged and toppled over .There to his utter astonishment was Tonks walking toward him as though she frequently strolled up this corridor .Whatre you doing here ?he said scrambling to his feet again why did she always have to find him lying on the floor ?I came to see Dumbledore said Tonks .Harry thought she looked terrible thinner than usual her mousecolored hair lank .His office isnt here said Harry its round the other side of the castle behind the gargoyle I know said Tonks .Hes not there .Apparently hes gone away again .Has he ?said Harry putting his bruised foot gingerly back on the floor .Hey you dont know where he goes I suppose ?No said Tonks .What did you want to see him about ?Nothing in particular said Tonks picking apparently unconsciously at the sleeve of her robe .I just thought he might know whats going on .Ive heard rumors .people getting hurt .Yeah I know its all been in the papers said Harry .That little kid trying to kill his The Prophets often behind the times said Tonks who didnt seem to be listening to him .You havent had any letters from anyone in the Order recently ?No one from the Order writes to me anymore said Harry not since Sirius He saw that her eyes had filled with tears .Im sorry he muttered awkwardly .I mean .I miss him as well .What ?said Tonks blankly as though she had not heard him .Well .Ill see you around Harry .And she turned abruptly and walked back down the corridor leaving Harry to stare after her .After a minute or so he pulled the Invisibility Cloak on again and resumed his efforts to get into the Room of Requirement but his heart was not in it .Finally a hollow feeling in his stomach and the knowledge that Ron and Hermione would soon be back for lunch made him abandon the attempt and leave the corridor to Malfoy who hopefully would be too afraid to leave for some hours to come .He found Ron and Hermione in the Great Hall already halfway through an early lunch .I did it well kind of !Ron told Harry enthusiastically when he caught sight of him .I was supposed to be Apparating to outside Madam Puddifoots Tea Shop and I overshot it a bit ended up near Scrivenshafts but at least I moved !Good one said Harry .Howd you do Hermione ?Oh she was perfect obviously said Ron before Hermione could answer .Perfect deliberation divination and desperation or whatever the hell it is we all went for a quick drink in the Three Broomsticks after and you shouldve heard Twycross going on about her Ill be surprised if he doesnt pop the question soon And what about you ?asked Hermione ignoring Ron .Have you been up at the Room of Requirement all this time ?Yep said Harry .And guess who I ran into up there ?Tonks !Tonks ?repeated Ron and Hermione together looking surprised .Yeah she said shed come to visit Dumbledore .If you ask me said Ron once Harry had finished describing his conversation with Tonks shes cracking up a bit .Losing her nerve after what happened at the Ministry .Its a bit odd said Hermione who for some reason looked very concerned .Shes supposed to be guarding the school whys she suddenly abandoning her post to come and see Dumbledore when hes not even here ?I had a thought said Harry tentatively .He felt strange about voicing it this was much more Hermiones territory than his .You dont think she can have been .you know .in love with Sirius ?Hermione stared at him .What on earth makes you say that ?I dunno said Harry shrugging but she was nearly crying when I mentioned his name .and her Patronus is a big fourlegged thing now .I wondered whether it hadnt become .you know .him .Its a thought said Hermione slowly .But I still dont know why shed be bursting into the castle to see Dumbledore if thats really why she was here .Goes back to what I said doesnt it ?said Ron who was now shoveling mashed potato into his mouth .Shes gone a bit funny .Lost her nerve .Women he said wisely to Harry theyre easily upset .And yet said Hermione coming out of her reverie I doubt youd find a woman who sulked for half an hour because Madam Rosmerta didnt laugh at their joke about the hag the Healer and the Mimbulus mimbletonia .Ron scowled .AFTER THE BURIAL Patches of bright blue sky were beginning to appear over the castle turrets but these signs of approaching summer did not lift Harrys mood .He had been thwarted both in his attempts to find out what Malfoy was doing and in his efforts to start a conversation with Slughorn that might lead somehow to Slughorn handing over the memory he had apparently suppressed for decades .For the last time just forget about Malfoy Hermione told Harry firmly .They were sitting with Ron in a sunny corner of the courtyard after lunch .Hermione and Ron were both clutching a Ministry of Magic leaflet Common Apparition Mistakes and How to Avoid Them for they were taking their tests that very afternoon but by and large the leaflets had not proved soothing to the nerves .Ron gave a start and tried to hide behind Hermione as a girl came around the corner .It isnt Lavender said Hermione wearily .Oh good said Ron relaxing .Harry Potter ?said the girl .I was asked to give you this .Thanks .Harrys heart sank as he took the small scroll of parchment .Once the girl was out of earshot he said Dumbledore said we wouldnt be having any more lessons until I got the memory !Maybe he wants to check on how youre doing ?suggested Hermione as Harry unrolled the parchment but rather than finding Dumbledore s long narrow slanted writing he saw an untidy sprawl very difficult to read due to the presence of large blotches on the parchment where the ink had run .Dear Harry Ron and Hermione Aragog died last night Harry and Ron you met him and you know how special he was .Hermione I know youd have liked him .It would mean a lot to me if youd nip down for the burial later this evening .Im planning on doing it round dusk that was his favorite time of day .I know youre not supposed to be out that late but you can use the cloak .Wouldnt ask but I cant face it alone .Hagrid Look at this said Harry handing the note to Hermione .Oh for heavens sake she said scanning it quickly and passing it to Ron who read it through looking increasingly incredulous .Hes mentaft he said furiously .That thing told its mates to eat Harry and me !Told them to help themselves !And now Hagrid expects us to go down there and cry over its horrible hairy body !Its not just that said Hermione .Hes asking us to leave the castle at night and he knows securitys a million times tighter and how much trouble wed be in if we were caught .Weve been down to see him by night before said Harry .Yes but for something like this ?said Hermione .Weve risked a lot to help Hagrid out but after all Aragogs dead .If it were a question of saving him Id want to go even less said Ron firmly .You didnt meet him Hermione .Believe me being dead will have improved him a lot .Harry took the note back and stared down at all the inky blotches all over it .Tears had clearly fallen thick and fast upon the parchment .Harry you cant be thinking of going said Hermione .Its such a pointless thing to get detention for .Harry sighed .Yeah I know he said .I spose Hagrid ll have to bury Aragog without us .Yes he will said Hermione looking relieved .Look Potions will be almost empty this afternoon with us all off doing our tests .Try and soften Slughorn up a bit then !Fiftyseventh time lucky you think ?said Harry bitterly .Lucky said Ron suddenly .Harry thats it get lucky !What dyou mean ?Use your lucky potion !Ron thats thats it !said Hermione sounding stunned .Of course !Why didnt I think of it ?Harry stared at them both .Felix Felicis ?he said .I dunno .I was sort of saving it .What for ?demanded Ron incredulously .What on earth is more important than this memory Harry ?asked Hermione .Harry did not answer .The thought of that little golden bottle had hovered on the edges of his imagination for some time vague and unformulated plans that involved Ginny splitting up with Dean and Ron somehow being happy to see her with a new boyfriend had been fermenting in the depths of his brain unacknowledged except during dreams or the twilight time between sleeping and waking .Harry ?Are you still with us ?asked Hermione .Wha ?Yeah of course he said pulling himself together .Well .okay .If I cant get Slughorn to talk this afternoon Ill take some Felix and have another go this evening .Thats decided then said Hermione briskly getting to her feet and performing a graceful pirouette .Destination .determination .deliberation .she murmured .Oh stop that Ron begged her I feel sick enough as it is quick hide me !It isnt Lavender !said Hermione impatiently as another couple of girls appeared in the courtyard and Ron dived behind her .Cool said Ron peering over Hermiones shoulder to check .Blimey they dont look happy do they ?Theyre the Montgomery sisters and of course they dont look happy didnt you hear what happened to their little brother ?said Hermione .Im losing track of whats happening to everyones relatives to be honest said Ron .Well their brother was attacked by a werewolf .The rumor is that their mother refused to help the Death Eaters .Anyway the boy was only five and he died in St .Mungos they couldnt save him .He died ?repeated Harry shocked .But surely werewolves dont kill they just turn you into one of them ?They sometimes kill said Ron who looked unusually grave now .Ive heard of it happening when the werewolf gets carried away .What was the werewolfs name ?said Harry quickly .Well the rumor is that it was that Fenrir Greyback said Hermione .I knew it the maniac who likes attacking kids the one Lupin told me about !said Harry angrily .Hermione looked at him bleakly .Harry youve got to get that memory she said .Its all about stopping Voldemort isnt it ?These dreadful things that are happening are all down to him .The bell rang overhead in the castle and both Hermione and Ron jumped to their feet looking terrified .Youll do fine Harry told them both as they headed toward the entrance hall to meet the rest of the people taking their Apparition Test .Good luck .And you too !said Hermione with a significant look as Harry headed off to the dungeons .There were only three of them in Potions that afternoon Harry Ernie and Draco Malfoy .All too young to Apparate just yet ?said Slughorn genially .Not turned seventeen yet ?They shook their heads .Ah well said Slughorn cheerily as were so few well do something fun .I want you all to brew me up something amusing !That sounds good sir said Ernie sycophantically rubbing his hands together .Malfoy on the other hand did not crack a smile .What do you mean ‘something amusing ?he said irritably .Oh surprise me said Slughorn airily .Malfoy opened his copy of Advanced PotionMaking with a sulky expression .It could not have been plainer that he thought this lesson was a waste of time .Undoubtedly Harry thought watching him over the top of his own book Malfoy was begrudging the time he could otherwise be spending in the Room of Requirement .Was it his imagination or did Malfoy like Tonks look thinner ?Certainly he looked paler his skin still had that grayish tinge probably because he so rarely saw daylight these days .But there was no air of smugness excitement or superiority none of the swagger that he had had on the Hogwarts Express when he had boasted openly of the mission he had been given by Voldemort .There could be only one conclusion in Harrys opinion The mission whatever it was was going badly .Cheered by this thought Harry skimmed through his copy of Advanced PotionMaking and found a heavily corrected HalfBlood Princes version of An Elixir to Induce Euphoria which seemed not only to meet Slughorn s instructions but which might Harrys heart leapt as the thought struck him put Slughorn into such a good mood that he would be prepared to hand over that memory if Harry could persuade him to taste some .Well now this looks absolutely wonderful said Slughorn an hour and a half later clapping his hands together as he stared down into the sunshine yellow contents of Harrys cauldron .Euphoria I take it ?And whats that I smell ?Mmmm .youve added just a sprig of peppermint havent you ?Unorthodox but what a stroke of inspiration Harry of course that would tend to counterbalance the occasional side effects of excessive singing and nosetweaking .I really dont know where you get these brain waves my boy .unless Harry pushed the HalfBlood Princes book deeper into his bag with his foot .its just your mothers genes coming out in you !Oh .yeah maybe said Harry relieved .Ernie was looking rather grumpy determined to outshine Harry for once he had most rashly invented his own potion which had curdled and formed a kind of purple dumpling at the bottom of his cauldron .Malfoy was already packing up sourfaced Slughorn had pronounced his Hiccuping Solution merely passable .The bell rang and both Ernie and Malfoy left at once .Sir Harry began but Slughorn immediately glanced over his shoulder when he saw that the room was empty but for himself and Harry he hurried away as fast as he could .Professor Professor dont you want to taste my po ?called Harry desperately .But Slughorn had gone .Disappointed Harry emptied the cauldron packed up his things left the dungeon and walked slowly back upstairs to the common room .Ron and Hermione returned in the late afternoon .Harry !cried Hermione as she climbed through the portrait hole .Harry I passed !Well done !he said .And Ron ?He he just failed whispered Hermione as Ron came slouching into the room looking most morose .It was really unlucky a tiny thing the examiner just spotted that hed left half an eyebrow behind .How did it go with Slughorn ?No joy said Harry as Ron joined them .Bad luck mate but youll pass next time we can take it together .Yeah I spose said Ron grumpily .But half an eyebrow Like that matters !I know said Hermione soothingly it does seem really harsh .They spent most of their dinner roundly abusing the Apparition examiner and Ron looked fractionally more cheerful by the time they set off back to the common room now discussing the continuing problem of Slughorn and the memory .So Harry you going to use the Felix Felicis or what ?Ron demanded .Yeah I spose Id better said Harry .I dont reckon Ill need all of it not twelve hours worth it cant take all night .Ill just take a mouthful .Two or three hours should do it .Its a great feeling when you take it said Ron reminiscently .Like you cant do anything wrong .What are you talking about ?said Hermione laughing .Youve never taken any !Yeah but I thought I had didnt I ?said Ron as though explaining the obvious .Same difference really .As they had only just seen Slughorn enter the Great Hall and knew that he liked to take time over meals they lingered for a while in the common room the plan being that Harry should go to Slughorn s office once the teacher had had time to get back there .When the sun had sunk to the level of the treetops in the Forbidden Forest they decided the moment had come and after checking carefully that Neville Dean and Seamus were all in the common room sneaked up to the boys dormitory .Harry took out the rolledup socks at the bottom of his trunk and extracted the tiny gleaming bottle .Well here goes said Harry and he raised the little bottle and took a carefully measured gulp .What does it feel like ?whispered Hermione .Harry did not answer for a moment .Then slowly but surely an exhilarating sense of infinite opportunity stole through him he felt as though he could have done anything anything at all .and getting the memory from Slughorn seemed suddenly not only possible but positively easy .He got to his feet smiling brimming with confidence .Excellent he said .Really excellent .Right .Im going down to Hagrids .What ?said Ron and Hermione together looking aghast .No Harry youve got to go and see Slughorn remember ?said Hermione .No said Harry confidently .Im going to Hagrids Ive got a good feeling about going to Hagrids .Youve got a good feeling about burying a giant spider ?asked Ron looking stunned .Yeah said Harry pulling his Invisibility Cloak out of his bag .I feel like its the place to be tonight you know what I mean ?No said Ron and Hermione together both looking positively alarmed now .This is Felix Felicis I suppose ?said Hermione anxiously holding up the bottle to the light .You havent got another little bottle full of I dont know Essence of Insanity ?suggested Ron as Harry swung his cloak over his shoulders .Harry laughed and Ron and Hermione looked even more alarmed .Trust me he said .I know what Im doing .or at least he strolled confidently to the door Felix does .He pulled the Invisibility Cloak over his head and set off down the stairs Ron and Hermione hurrying along behind him .At the foot of the stairs Harry slid through the open door .What were you doing up there with her ?shrieked Lavender Brown staring right through Harry at Ron and Hermione emerging together from the boys dormitories .Harry heard Ron spluttering behind him as he darted across the room away from them .Getting through the portrait hole was simple as he approached it Ginny and Dean came through it and Harry was able to slip between them .As he did so he brushed accidentally against Ginny .Dont push me please Dean she said sounding annoyed .Youre always doing that I can get through perfectly well on my own .The portrait swung closed behind Harry but not before he had heard Dean make an angry retort .His feeling of elation increasing Harry strode off through the castle .He did not have to creep along for he met nobody on his way but this did not surprise him in the slightest This evening he was the luckiest person at Hogwarts .Why he knew that going to Hagrids was the right thing to do he had no idea .It was as though the potion was illuminating a few steps of the path at a time He could not see the final destination he could not see where Slughorn came in but he knew that he was going the right way to get that memory .When he reached the entrance hall he saw that Filch had forgotten to lock the front door .Beaming Harry threw it open and breathed in the smell of clean air and grass for a moment before walking down the steps into the dusk .It was when he reached the bottom step that it occurred to him how very pleasant it would be to pass the vegetable patch on his walk to Hagrids .It was not strictly on the way but it seemed clear to Harry that this was a whim on which he should act so he directed his feet immediately toward the vegetable patch where he was pleased but not altogether surprised to find Professor Slughorn in conversation with Professor Sprout .Harry lurked behind a low stone wall feeling at peace with the world and listening to their conversation .I do thank you for taking the time Pomona Slughorn was saying courteously most authorities agree that they are at their most efficacious if picked at twilight .Oh I quite agree said Professor Sprout warmly .That enough for you ?Plenty plenty said Slughorn who Harry saw was carrying an armful of leafy plants .This should allow for a few leaves for each of my third years and some to spare if anybody overstews them .Well good evening to you and many thanks again !Professor Sprout headed off into the gathering darkness in the direction of her greenhouses and Slughorn directed his steps to the spot where Harry stood invisible .Seized with an immediate desire to reveal himself Harry pulled off the cloak with a flourish .Good evening Professor .Merlins beard Harry you made me jump said Slughorn stopping dead in his tracks and looking wary .How did you get out of the castle ?I think Filch mustve forgotten to lock the doors said Harry cheerfully and was delighted to see Slughorn scowl .Ill be reporting that man hes more concerned about litter than proper security if you ask me .But why are you out here Harry ?Well sir its Hagrid said Harry who knew that the right thing to do just now was to tell the truth .Hes pretty upset .But you wont tell anyone Professor ?I dont want trouble for him .Slughorns curiosity was evidently aroused .Well I cant promise that he said gruffly .But I know that Dumbledore trusts Hagrid to the hilt so Im sure he cant be up to anything very dreadful .Well its this giant spider hes had it for years .It lived in the forest .It could talk and everything I heard rumors there were acromantulas in the forest said Slughorn softly looking over at the mass of black trees .Its true then ?Yes said Harry .But this one Aragog the first one Hagrid ever got it died last night .Hes devastated .He wants company while he buries it and I said Id go .Touching touching said Slughorn absentmindedly his large droopy eyes fixed upon the distant lights of Hagrid s cabin .But acromantula venom is very valuable .If the beast only just died it might not yet have dried out .Of course I wouldnt want to do anything insensitive if Hagrid is upset .but if there was any way to procure some .I mean its almost impossible to get venom from an acromantula while its alive .Slughorn seemed to be talking more to himself than Harry now . .seems an awful waste not to collect it .might get a hundred Galleons a pint .To be frank my salary is not large .And now Harry saw clearly what was to be done .Well he said with a most convincing hesitancy well if you wanted to come Professor Hagrid would probably be really pleased .Give Aragog a better sendoff you know .Yes of course said Slughorn his eyes now gleaming with enthusiasm .I tell you what Harry Ill meet you down there with a bottle or two .Well drink the poor beasts well not health but well send it off in style anyway once its buried .And Ill change my tie this one is a little exuberant for the occasion .He bustled back into the castle and Harry sped off to Hagrid s delighted with himself .Yeh came croaked Hagrid when he opened the door and saw Harry emerging from the Invisibility Cloak in front of him .Yeah Ron and Hermione couldnt though said Harry .Theyre really sorry .Don don matter .Hedve bin touched yehre here though Harry .Hagrid gave a great sob .He had made himself a black armband out of what looked like a rag dipped in boot polish and his eyes were puffy red and swollen .Harry patted him consolingly on the elbow which was the highest point of Hagrid he could easily reach .Where are we burying him ?he asked .The forest ?Blimey no said Hagrid wiping his streaming eyes on the bottom of his shirt .The other spiders won let me anywhere near their webs now Aragogs gone .Turns out it was ony on his orders they didn eat me !Can yeh believe that Harry ?The honest answer was yes Harry recalled with painful ease the scene when he and Ron had come facetoface with the acromantulas They had been quite clear that Aragog was the only thing that stopped them from eating Hagrid .Never bin an area o the forest I couldn go before !said Hagrid shaking his head .It wasn easy gettin Aragogs body out o there I can tell yeh they usually eat their dead see .But I wanted ter give im a nice burial .a proper sendoff .He broke into sobs again and Harry resumed the patting of his elbow saying as he did so for the potion seemed to indicate that it was the right thing to do Professor Slughorn met me coming down here Hagrid .Not in trouble are yeh ?said Hagrid looking up alarmed .Yeh shouldn be outta the castle in the evenin I know it its my fault No no when he heard what I was doing he said hed like to come and pay his last respects to Aragog too said Harry .Hes gone to change into something more suitable I think .and he said hed bring some bottles so we can drink to Aragogs memory .Did he ?said Hagrid looking both astonished and touched .Thas thas righ nice of him that is an not turnin yeh in either .Ive never really had a lot ter do with Horace Slughorn before .Cornin ter see old Aragog off though eh ?Well .he dve liked that Aragog would .Harry thought privately that what Aragog would have liked most about Slughorn was the ample amount of edible flesh he provided but he merely moved to the rear window of Hagrid s hut where he saw the rather horrible sight of the enormous dead spider lying on its back outside its legs curled and tangled .Are we going to bury him here Hagrid in your garden ?Jus beyond the pumpkin patch I thought said Hagrid in a choked voice .Ive already dug the yeh know grave .Jus thought wed say a few nice things over him happy memories yeh know His voice quivered and broke .There was a knock on the door and he turned to answer it blowing his nose on his great spotted handkerchief as he did so .Slughorn hurried over the threshold several bottles in his arms and wearing a somber black cravat .Hagrid he said in a deep grave voice .So very sorry to hear of your loss .Thas very nice of yeh said Hagrid .Thanks a lot .An thanks fer not givin Harry detention neither .Wouldnt have dreamed of it said Slughorn .Sad night sad night .Where is the poor creature ?Out here said Hagrid in a shaking voice .Shall we shall we do it then ?The three of them stepped out into the back garden .The moon was glistening palely through the trees now and its rays mingled with the light spilling from Hagrids window to illuminate Aragogs body lying on the edge of a massive pit beside a tenfoothigh mound of freshly dug earth .Magnificent said Slughorn approaching the spiders head where eight milky eyes stared blankly at the sky and two huge curved pincers shone motionless in the moonlight .Harry thought he heard the tinkle of bottles as Slughorn bent over the pincers apparently examining the enormous hairy head .Its not evryone appreciates how beauiful they are said Hagrid to Slughorn s back tears leaking from the corners of his crinkled eyes .I didn know yeh were intrested in creatures like Aragog Horace .Interested ?My dear Hagrid I revere them said Slughorn stepping back from the body .Harry saw the glint of a bottle disappear beneath his cloak though Hagrid mopping his eyes once more noticed nothing .Now .shall we proceed to the burial ?Hagrid nodded and moved forward .He heaved the gigantic spider into his arms and with an enormous grunt rolled it into the dark pit .It hit the bottom with a rather horrible crunchy thud .Hagrid started to cry again .Of course its difficult for you who knew him best said Slughorn who like Harry could reach no higher than Hagrids elbow but patted it all the same .Why dont I say a few words ?He must have got a lot of good quality venom from Aragog Harry thought for Slughorn wore a satisfied smirk as he stepped up to the rim of the pit and said in a slow impressive voice Farewell Aragog king of arachnids whose long and faithful friendship those who knew you wont forget !Though your body will decay your spirit lingers on in the quiet webspun places of your forest home .May your manyeyed descendants ever flourish and your human friends find solace for the loss they have sustained .Tha was .tha was .beauiful !howled Hagrid and he collapsed onto the compost heap crying harder than ever .There there said Slughorn waving his wand so that the huge pile of earth rose up and then fell with a muffled sort of crash onto the dead spider forming a smooth mound .Lets get inside and have a drink .Get on his other side Harry .Thats it .Up you come Hagrid .Well done .They deposited Hagrid in a chair at the table .Fang who had been skulking in his basket during the burial now came padding softly across to them and put his heavy head into Harrys lap as usual .Slughorn uncorked one of the bottles of wine he had brought .I have had it all tested for poison he assured Harry pouring most of the first bottle into one of Hagrid s bucket sized mugs and handing it to Hagrid .Had a houseelf taste every bottle after what happened to your poor friend Rupert .Harry saw in his minds eye the expression on Hermiones face if she ever heard about this abuse of houseelves and decided never to mention it to her .One for Harry .said Slughorn dividing a second bottle between two mugs .and one for me .Well he raised his mug high to Aragog .Aragog said Harry and Hagrid together .Both Slughorn and Hagrid drank deeply .Harry however with the way ahead illuminated for him by Felix Felicis knew that he must not drink so he merely pretended to take a gulp and then set the mug back on the table before him .I had him from an egg yeh know said Hagrid morosely .Tiny little thing he was when he hatched .Bout the size of a Pekingese .Sweet said Slughorn .Used ter keep him in a cupboard up at the school until .well .Hagrid s face darkened and Harry knew why Tom Riddle had contrived to have Hagrid thrown out of school blamed for opening the Chamber of Secrets .Slughorn however did not seem to be listening he was looking up at the ceiling from which a number of brass pots hung and also a long silky skein of bright white hair .Thats never unicorn hair Hagrid ?Oh yeah said Hagrid indifferently .Gets pulled out of their tails they catch it on branches an stuff in the forest yeh know .But my dear chap do you know how much thats worth ?I use it fer bindin on bandages an stuff if a creature gets injured said Hagrid shrugging .Its dead useful .very strong see .Slughorn took another deep draught from his mug his eyes moving carefully around the cabin now looking Harry knew for more treasures that he might be able to convert into a plentiful supply of oak matured mead crystalized pineapple and velvet smoking jackets .He refilled Hagrids mug and his own and questioned him about the creatures that lived in the forest these days and how Hagrid was able to look after them all .Hagrid becoming expansive under the influence of the drink and Slughorn s flattering interest stopped mopping his eyes and entered happily into a long explanation of bowtruckle husbandry .The Felix Felicis gave Harry a little nudge at this point and he noticed that the supply of drink that Slughorn had brought was running out fast .Harry had not yet managed to bring off the Refilling Charm without saying the incantation aloud but the idea that he might not be able to do it tonight was laughable Indeed Harry grinned to himself as unnoticed by either Hagrid or Slughorn now swapping tales of the illegal trade in dragon eggs he pointed his wand under the table at the emptying bottles and they immediately began to refill .After an hour or so Hagrid and Slughorn began making extravagant toasts to Hogwarts to Dumbledore to elfmade wine and to Harry Potter !bellowed Hagrid slopping some of his fourteenth bucket of wine down his chin as he drained it .Yes indeed cried Slughorn a little thickly Parry Otter the Chosen Boy Who well something of that sort he mumbled and drained his mug too .Not long after this Hagrid became tearful again and pressed the whole unicorn tail upon Slughorn who pocketed it with cries of To friendship !To generosity !To ten Galleons a hair !And for a while after that Hagrid and Slughorn were sitting side by side arms around each other singing a slow sad song about a dying wizard called Odo .aargh the good die young muttered Hagrid slumping low onto the table a little crosseyed while Slughorn continued to warble the refrain .Me dad was no age ter go .nor were yer mum an dad Harry .Great fat tears oozed out of the corners of Hagrid s crinkled eyes again he grasped Harrys arm and shook it .Bes wiz and witchard o their age I never knew .terrible thing .terrible thing .And Odo the hero they bore him back home To the place that hed known as a lad sang Slughorn plaintively .They laid him to rest with his hat inside out And his wand snapped in two which was sad . .terrible Hagrid grunted and his great shaggy head rolled sideways onto his arms and he fell asleep snoring deeply .Sorry said Slughorn with a hiccup .Cant carry a tune to save my life .Hagrid wasnt talking about your singing said Harry quietly .He was talking about my mum and dad dying .Oh said Slughorn repressing a large belch .Oh dear .Yes that was was terrible indeed .Terrible .terrible .He looked quite at a loss for what to say and resorted to refilling their mugs .I dont dont suppose you remember it Harry ?he asked awkwardly .No well I was only one when they died said Harry his eyes on the flame of the candle flickering in Hagrids heavy snores .But Ive found out pretty much what happened since .My dad died first .Did you know that ?I I didnt said Slughorn in a hushed voice .Yeah .Voldemort murdered him and then stepped over his body toward my mum said Harry .Slughorn gave a great shudder but he did not seem able to tear his horrified gaze away from Harrys face .He told her to get out of the way said Harry remorselessly .He told me she neednt have died .He only wanted me .She could have run .Oh dear breathed Slughorn .She could have .she neednt .Thats awful .It is isnt it ?said Harry in a voice barely more than a whisper .But she didnt move .Dad was already dead but she didnt want me to go too .She tried to plead with Voldemort .but he just laughed .Thats enough !said Slughorn suddenly raising a shaking hand .Really my dear boy enough .Im an old man .I dont need to hear .I dont want to hear I forgot lied Harry Felix Felicis leading him on .You liked her didnt you ?Liked her ?said Slughorn his eyes brimming with tears once more .I dont imagine anyone who met her wouldnt have liked her .Very brave .Very funny .It was the most horrible thing .But you wont help her son said Harry .She gave me her life but you wont give me a memory .Hagrids rumbling snores filled the cabin .Harry looked steadily into Slughorn s tearfilled eyes .The Potions master seemed unable to look away .Dont say that he whispered .It isnt a question .If it were to help you of course .but no purpose can be served .It can said Harry clearly .Dumbledore needs information .I need information .He knew he was safe Felix was telling him that Slughorn would remember nothing of this in the morning .Looking Slughorn straight in the eye Harry leaned forward a little .I am the Chosen One .I have to kill him .I need that memory .Slughorn turned paler than ever his shiny forehead gleamed with sweat .You are the Chosen One ?Of course I am said Harry calmly .But then .my dear boy .youre asking a great deal .youre asking me in fact to aid you in your attempt to destroy You dont want to get rid of the wizard who killed Lily Evans ?Harry Harry of course I do but Youre scared hell find out you helped me ?Slughorn said nothing he looked terrified .Be brave like my mother Professor .Slughorn raised a pudgy hand and pressed his shaking fingers to his mouth he looked for a moment like an enormously overgrown baby .I am not proud .he whispered through his fingers .I am ashamed of what of what that memory shows .I think I may have done great damage that day .Youd cancel out anything you did by giving me the memory said Harry .It would be a very brave and noble thing to do .Hagrid twitched in his sleep and snored on .Slughorn and Harry stared at each other over the guttering candle .There was a long long silence but Felix Felicis told Harry not to break it to wait .Then very slowly Slughorn put his hand in his pocket and pulled out his wand .He put his other hand inside his cloak and took out a small empty bottle .Still looking into Harrys eyes Slughorn touched the tip of his wand to his temple and withdrew it so that a long silver thread of memory came away too clinging to the wand tip .Longer and longer the memory stretched until it broke and swung silvery bright from the wand .Slughorn lowered it into the bottle where it coiled then spread swirling like gas .He corked the bottle with a trembling hand and then passed it across the table to Harry .Thank you very much Professor .Youre a good boy said Professor Slughorn tears trickling down his fat cheeks into his walrus mustache .And youve got her eyes .Just dont think too badly of me once youve seen it .And he too put his head on his arms gave a deep sigh and fell asleep .HORCRUXES Harry could feel the Felix Felicis wearing off as he crept back into the castle .The front door had remained unlocked for him but on the third floor he met Peeves and only narrowly avoided detection by diving sideways through one of his shortcuts .By the time he got up to the portrait of the Fat Lady and pulled off his Invisibility Cloak he was not surprised to find her in a most unhelpful mood .What sort of time do you call this ?Im really sorry I had to go out for something important Well the password changed at midnight so youll just have to sleep in the corridor wont you ?Youre joking !said Harry .Why did it have to change at midnight ?Thats the way it is said the Fat Lady .If youre angry go and take it up with the headmaster hes the one whos tightened security .Fantastic said Harry bitterly looking around at the hard floor .Really brilliant .Yeah I would go and take it up with Dumbledore if he was here because hes the one who wanted me to He is here said a voice behind Harry .Professor Dumbledore returned to the school an hour ago .Nearly Headless Nick was gliding toward Harry his head wobbling as usual upon his ruff .I had it from the Bloody Baron who saw him arrive said Nick .He appeared according to the Baron to be in good spirits though a little tired of course .Where is he ?said Harry his heart leaping .Oh groaning and clanking up on the Astronomy Tower its a favorite pastime of his Not the Bloody Baron Dumbledore !Oh in his office said Nick .I believe from what the Baron said that he had business to attend to before turning in Yeah he has said Harry excitement blazing in his chest at the prospect of telling Dumbledore he had secured the memory .He wheeled about and sprinted off again ignoring the Fat Lady who was calling after him .Come back !All right I lied !I was annoyed you woke me up !The passwords still ‘tapeworm !But Harry was already hurtling back along the corridor and within minutes he was saying toffee eclairs to Dumbledores gargoyle which leapt aside permitting Harry entrance onto the spiral staircase .Enter said Dumbledore when Harry knocked .He sounded exhausted .Harry pushed open the door .There was Dumbledores office looking the same as ever but with black star strewn skies beyond the windows .Good gracious Harry said Dumbledore in surprise .To what do I owe this very late pleasure ?Sir Ive got it .Ive got the memory from Slughorn .Harry pulled out the tiny glass bottle and showed it to Dumbledore .For a moment or two the headmaster looked stunned .Then his face split in a wide smile .Harry this is spectacular news !Very well done indeed !I knew you could do it !All thought of the lateness of the hour apparently forgotten he hurried around his desk took the bottle with Slughorns memory in his uninjured hand and strode over to the cabinet where he kept the Pensieve .And now said Dumbledore placing the stone basin upon his desk and emptying the contents of the bottle into it .Now at last we shall see .Harry quickly .Harry bowed obediently over the Pensieve and felt his feet leave the office floor .Once again he fell through darkness and landed in Horace Slughorns office many years before .There was the much younger Slughorn with his thick shiny strawcolored hair and his gingeryblond mustache sitting again in the comfortable winged armchair in his office his feet resting upon a velvet pouffe a small glass of wine in one hand the other rummaging in a box of crystalized pineapple .And there were the halfdozen teenage boys sitting around Slughorn with Tom Riddle in the midst of them Marvolos goldandblack ring gleaming on his finger .Dumbledore landed beside Harry just as Riddle asked Sir is it true that Professor Merrythought is retiring ?Tom Tom if I knew I couldnt tell you said Slughorn wagging his finger reprovingly at Riddle though winking at the same time .I must say Id like to know where you get your information boy more knowledgeable than half the staff you are .Riddle smiled the other boys laughed and cast him admiring looks .What with your uncanny ability to know things you shouldnt and your careful flattery of the people who matter thank you for the pineapple by the way youre quite right it is my favorite Several of the boys tittered again .I confidently expect you to rise to Minister of Magic within twenty years .Fifteen if you keep sending me pineapple I have excellent contacts at the Ministry .Tom Riddle merely smiled as the others laughed again .Harry noticed that he was by no means the eldest of the group of boys but that they all seemed to look to him as their leader .I dont know that politics would suit me sir he said when the laughter had died away .I dont have the right kind of background for one thing .A couple of the boys around him smirked at each other .Harry was sure they were enjoying a private joke undoubtedly about what they knew or suspected regarding their gang leaders famous ancestor .Nonsense said Slughorn briskly couldnt be plainer you come from decent Wizarding stock abilities like yours .No youll go far Tom Ive never been wrong about a student yet .The small golden clock standing upon Slughorn s desk chimed eleven oclock behind him and he looked around .Good gracious is it that time already ?Youd better get going boys or well all be in trouble .Lestrange I want your essay by tomorrow or its detention .Same goes for you Avery .One by one the boys filed out of the room .Slughorn heaved himself out of his armchair and carried his empty glass over to his desk .A movement behind him made him look around Riddle was still standing there .Look sharp Tom you dont want to be caught out of bed out of hours and you a prefect .Sir I wanted to ask you something .Ask away then mboy ask away .Sir I wondered what you know about .about Horcruxes ?Slughorn stared at him his thick fingers absentmindedly caressing the stem of his wine glass .Project for Defense Against the Dark Arts is it ?But Harry could tell that Slughorn knew perfectly well that this was not schoolwork .Not exactly sir said Riddle .I came across the term while reading and I didnt fully understand it .No .well .youd be hardpushed to find a book at Hogwarts thatll give you details on Horcruxes Tom thats very Dark stuff very Dark indeed said Slughorn .But you obviously know all about them sir ?I mean a wizard like you sorry I mean if you cant tell me obviously I just knew if anyone could tell me you could so I just thought Id ask It was very well done thought Harry the hesitancy the casual tone the careful flattery none of it overdone .He Harry had had too much experience of trying to wheedle information out of reluctant people not to recognize a master at work .He could tell that Riddle wanted the information very very much perhaps had been working toward this moment for weeks .Well said Slughorn not looking at Riddle but fiddling with the ribbon on top of his box of crystalized pineapple well it cant hurt to give you an overview of course .Just so that you understand the term .A Horcrux is the word used for an object in which a person has concealed part of their soul .I dont quite understand how that works though sir said Riddle .His voice was carefully controlled but Harry could sense his excitement .Well you split your soul you see said Slughorn and hide part of it in an object outside the body .Then even if ones body is attacked or destroyed one cannot die for part of the soul remains earthbound and undamaged .But of course existence in such a form .Slughorn s face crumpled and Harry found himself remembering words he had heard nearly two years before I was ripped from my body I was less than spirit less than the meanest ghost .but still I was alive . .few would want it Tom very few .Death would be preferable .But Riddles hunger was now apparent his expression was greedy he could no longer hide his longing .How do you split your soul ?Well said Slughorn uncomfortably you must understand that the soul is supposed to remain intact and whole .Splitting it is an act of violation it is against nature .But how do you do it ?By an act of evil the supreme act of evil .By committing murder .Killing rips the soul apart .The wizard intent upon creating a Horcrux would use the damage to his advantage He would encase the torn portion Encase ?But how ?There is a spell do not ask me I dont know !said Slughorn shaking his head like an old elephant bothered by mosquitoes .Do I look as though I have tried it do I look like a killer ?No sir of course not said Riddle quickly .Im sorry .I didnt mean to offend .Not at all not at all not offended said Slughorn gruffly .Its natural to feel some curiosity about these things .Wizards of a certain caliber have always been drawn to that aspect of magic .Yes sir said Riddle .What I dont understand though just out of curiosity I mean would one Horcrux be much use ?Can you only split your soul once ?Wouldnt it be better make you stronger to have your soul in more pieces I mean for instance isnt seven the most powerfully magical number wouldnt seven ?Merlins beard Tom !yelped Slughorn .Seven !Isnt it bad enough to think of killing one person ?And in any case .bad enough to divide the soul .but to rip it into seven pieces .Slughorn looked deeply troubled now He was gazing at Riddle as though he had never seen him plainly before and Harry could tell that he was regretting entering into the conversation at all .Of course he muttered this is all hypothetical what were discussing isnt it ?All academic .Yes sir of course said Riddle quickly .But all the same Tom .keep it quiet what Ive told thats to say what weve discussed .People wouldnt like to think weve been chatting about Horcruxes .Its a banned subject at Hogwarts you know .Dumbledores particularly fierce about it .I wont say a word sir said Riddle and he left but not before Harry had glimpsed his face which was full of that same wild happiness it had worn when he had first found out that he was a wizard the sort of happiness that did not enhance his handsome features but made them somehow less human .Thank you Harry said Dumbledore quietly .Let us go .When Harry landed back on the office floor Dumbledore was already sitting down behind his desk .Harry sat too and waited for Dumbledore to speak .I have been hoping for this piece of evidence for a very long time said Dumbledore at last .It confirms the theory on which I have been working it tells me that I am right and also how very far there is still to go .Harry suddenly noticed that every single one of the old headmasters and headmistresses in the portraits around the walls was awake and listening in on their conversation .A corpulent rednosed wizard had actually taken out an ear trumpet .Well Harry said Dumbledore I am sure you understood the significance of what we just heard .At the same age as you are now give or take a few months Tom Riddle was doing all he could to find out how to make himself immortal .You think he succeeded then sir ?asked Harry .He made a Horcrux ?And thats why he didnt die when he attacked me ?He had a Horcrux hidden somewhere ?A bit of his soul was safe ?A bit .or more said Dumbledore .You heard Voldemort What he particularly wanted from Horace was an opinion on what would happen to the wizard who created more than one Horcrux what would happen to the wizard so determined to evade death that he would be prepared to murder many times rip his soul repeatedly so as to store it in many separately concealed Horcruxes .No book would have given him that information .As far as I know as far I am sure as Voldemort knew no wizard had ever done more than tear his soul in two .Dumbledore paused for a moment marshaling his thoughts and then said Four years ago I received what I considered certain proof that Voldemort had split his soul .Where ?asked Harry How ?You handed it to me Harry said Dumbledore .The diary Riddles diary the one giving instructions on how to reopen the Chamber of Secrets .I dont understand sir said Harry .Well although I did not see the Riddle who came out of the diary what you described to me was a phenomenon I had never witnessed .A mere memory starting to act and think for itself ?A mere memory sapping the life out of the girl into whose hands it had fallen ?No something much more sinister had lived inside that book .a fragment of soul I was almost sure of it .The diary had been a Horcrux .But this raised as many questions as it answered .What intrigued and alarmed me most was that that diary had been intended as a weapon as much as a safeguard .I still dont understand said Harry .Well it worked as a Horcrux is supposed to work in other words the fragment of soul concealed inside it was kept safe and had undoubtedly played its part in preventing the death of its owner .But there could be no doubt that Riddle really wanted that diary read wanted the piece of his soul to inhabit or possess somebody else so that Slytherins monster would be unleashed again .Well he didnt want his hard work to be wasted said Harry .He wanted people to know he was Slytherins heir because he couldnt take credit at the time .Quite correct said Dumbledore nodding .But dont you see Harry that if he intended the diary to be passed to or planted on some future Hogwarts student he was being remarkably blase about that precious fragment of his soul concealed within it .The point of a Horcrux is as Professor Slughorn explained to keep part of the self hidden and safe not to fling it into somebody elses path and run the risk that they might destroy it as indeed happened That particular fragment of soul is no more you saw to that .The careless way in which Voldemort regarded this Horcrux seemed most ominous to me .It suggested that he must have made or been planning to make more Horcruxes so that the loss of his first would not be so detrimental .I did not wish to believe it but nothing else seemed to make sense .Then you told me two years later that on the night that Voldemort returned to his body he made a most illuminating and alarming statement to his Death Eaters .who have gone further than anybody along the path that leads to immortality .That was what you told me he said . ‘Further than anybody And I thought I knew what that meant though the Death Eaters did not .He was referring to his Horcruxes Horcruxes in the plural Harry which I do not believe any other wizard has ever had .Yet it fitted Lord Voldemort has seemed to grow less human with the passing years and the transformation he has undergone seemed to me to be only explicable if his soul was mutilated beyond the realms of what we might call ‘usual evil So hes made himself impossible to kill by murdering other people ?said Harry .Why couldnt he make a Sorcerers Stone or steal one if he was so interested in immortality ?Well we know that he tried to do just that five years ago said Dumbledore .But there are several reasons why I think a Sorcerers Stone would appeal less than Horcruxes to Lord Voldemort .While the Elixir of Life does indeed extend life it must be drunk regularly for all eternity if the drinker is to maintain their immortality .Therefore Voldemort would be entirely dependent on the Elixir and if it ran out or was contaminated or if the Stone was stolen he would die just like any other man .Voldemort likes to operate alone remember .I believe that he would have found the thought of being dependent even on the Elixir intolerable .Of course he was prepared to drink it if it would take him out of the horrible partlife to which he was condemned after attacking you but only to regain a body .Thereafter I am convinced he intended to continue to rely on his Horcruxes He would need nothing more if only he could regain a human form .He was already immortal you see .or as close to immortal as any man can be .But now Harry armed with this information the crucial memory you have succeeded in procuring for us we are closer to the secret of finishing Lord Voldemort than anyone has ever been before .You heard him Harry ‘Wouldnt it be better make you stronger to have your soul in more pieces .isnt seven the most powerfully magical number .Isnt seven the most powerfully magical number .Yes I think the idea of a sevenpart soul would greatly appeal to Lord Voldemort .He made seven Horcruxes ?said Harry horror struck while several of the portraits on the walls made similar noises of shock and outrage .But they could be anywhere in the world hidden buried or invisible I am glad to see you appreciate the magnitude of the problem said Dumbledore calmly .But firstly no Harry not seven Horcruxes six .The seventh part of his soul however maimed resides inside his regenerated body .That was the part of him that lived a spectral existence for so many years during his exile without that he has no self at all .That seventh piece of soul will be the last that anybody wishing to kill Voldemort must attack the piece that lives in his body .But the six Horcruxes then said Harry a little desperately how are we supposed to find them ?You are forgetting .you have already destroyed one of them .And I have destroyed another .You have ?said Harry eagerly .Yes indeed said Dumbledore and he raised his blackened burnedlooking hand .The ring Harry .Marvolos ring .And a terrible curse there was upon it too .Had it not been forgive me the lack of seemly modesty for my own prodigious skill and for Professor Snapes timely action when I returned to Hogwarts desperately injured I might not have lived to tell the tale .However a withered hand does not seem an unreasonable exchange for a seventh of Voldemorts soul .The ring is no longer a Horcrux .But how did you find it ?Well as you now know for many years I have made it my business to discover as much as I can about Voldemorts past life .I have traveled widely visiting those places he once knew .I stumbled across the ring hidden in the ruin of the Gaunts house .It seems that once Voldemort had succeeded in sealing a piece of his soul inside it he did not want to wear it anymore .He hid it protected by many powerful enchantments in the shack where his ancestors had once lived Morfin having been carted off to Azkaban of course never guessing that I might one day take the trouble to visit the ruin or that I might be keeping an eye open for traces of magical concealment .However we should not congratulate ourselves too heartily .You destroyed the diary and I the ring but if we are right in our theory of a sevenpart soul four Horcruxes remain .And they could be anything ?said Harry .They could be old tin cans or I dunno empty potion bottles .You are thinking of Portkeys Harry which must be ordinary objects easy to overlook .But would Lord Voldemort use tin cans or old potion bottles to guard his own precious soul ?You are forgetting what I have showed you .Lord Voldemort liked to collect trophies and he preferred objects with a powerful magical history .His pride his belief in his own superiority his determination to carve for himself a startling place in magical history these things suggest to me that Voldemort would have chosen his Horcruxes with some care favoring objects worthy of the honor .The diary wasnt that special .The diary as you have said yourself was proof that he was the Heir of Slytherin I am sure that Voldemort considered it of stupendous importance .So the other Horcruxes ?said Harry .Do you think you know what they are sir ?I can only guess said Dumbledore .For the reasons I have already given I believe that Lord Voldemort would prefer objects that in themselves have a certain grandeur .I have therefore trawled back through Voldemorts past to see if I can find evidence that such artifacts have disappeared around him .The locket !said Harry loudly .Hufflepuffs cup !Yes said Dumbledore smiling I would be prepared to bet perhaps not my other hand but a couple of fingers that they became Horcruxes three and four .The remaining two assuming again that he created a total of six are more of a problem but I will hazard a guess that having secured objects from Hufflepuff and Slytherin he set out to track down objects owned by Gryffindor or Ravenclaw .Four objects from the four founders would I am sure have exerted a powerful pull over Voldemorts imagination .I cannot answer for whether he ever managed to find anything of Ravenclaws .I am confident however that the only known relic of Gryffindor remains safe .Dumbledore pointed his blackened fingers to the wall behind him where a rubyencrusted sword reposed within a glass case .Do you think thats why he really wanted to come back to Hogwarts sir ?said Harry .To try and find something from one of the other founders ?My thoughts precisely said Dumbledore .But unfortunately that does not advance us much further for he was turned away or so I believe without the chance to search the school .I am forced to conclude that he never fulfilled his ambition of collecting four founders objects .He definitely had two he may have found three that is the best we can do for now .Even if he got something of Ravenclaws or of Gryffindors that leaves a sixth Horcrux said Harry counting on his fingers .Unless he got both ?I dont think so said Dumbledore .I think I know what the sixth Horcrux is .I wonder what you will say when I confess that I have been curious for a while about the behavior of the snake Nagini ?The snake ?said Harry startled .You can use animals as Horcruxes ?Well it is inadvisable to do so said Dumbledore because to confide a part of your soul to something that can think and move for itself is obviously a very risky business .However if my calculations are correct Voldemort was still at least one Horcrux short of his goal of six when he entered your parents house with the intention of killing you .He seems to have reserved the process of making Horcruxes for particularly significant deaths .You would certainly have been that .He believed that in killing you he was destroying the danger the prophecy had outlined .He believed he was making himself invincible .I am sure that he was intending to make his final Horcrux with your death .As we know he failed .After an interval of some years however he used Nagini to kill an old Muggle man and it might then have occurred to him to turn her into his last Horcrux .She underlines the Slytherin connection which enhances Lord Voldemorts mystique I think he is perhaps as fond of her as he can be of anything he certainly likes to keep her close and he seems to have an unusual amount of control over her even for a Parselmouth .So said Harry the diarys gone the rings gone .The cup the locket and the snake are still intact and you think there might be a Horcrux that was once Ravenclaws or Gryffindors ?An admirably succinct and accurate summary yes said Dumbledore bowing his head .So .are you still looking for them sir ?Is that where youve been going when youve been leaving the school ?Correct said Dumbledore .I have been looking for a very long time .I think .perhaps .I may be close to finding another one .There are hopeful signs .And if you do said Harry quickly can I come with you and help get rid of it ?Dumbledore looked at Harry very intently for a moment before saying Yes I think so .I can ?said Harry thoroughly taken aback .Oh yes said Dumbledore smiling slightly .I think you have earned that right .Harry felt his heart lift .It was very good not to hear words of caution and protection for once .The headmasters and headmistresses around the walls seemed less impressed by Dumbledores decision Harry saw a few of them shaking their heads and Phineas Nigellus actually snorted .Does Voldemort know when a Horcrux is destroyed sir ?Can he feel it ?Harry asked ignoring the portraits .A very interesting question Harry .I believe not .I believe that Voldemort is now so immersed in evil and these crucial parts of himself have been detached for so long he does not feel as we do .Perhaps at the point of death he might be aware of his loss .but he was not aware for instance that the diary had been destroyed until he forced the truth out of Lucius Malfoy .When Voldemort discovered that the diary had been mutilated and robbed of all its powers I am told that his anger was terrible to behold .But I thought he meant Lucius Malfoy to smuggle it into Hogwarts ?Yes he did years ago when he was sure he would be able to create more Horcruxes but still Lucius was supposed to wait for Voldemorts sayso and he never received it for Voldemort vanished shortly after giving him the diary .No doubt he thought that Lucius would not dare do anything with the Horcrux other than guard it carefully but he was counting too much upon Luciuss fear of a master who had been gone for years and whom Lucius believed dead .Of course Lucius did not know what the diary really was .I understand that Voldemort had told him the diary would cause the Chamber of Secrets to reopen because it was cleverly enchanted .Had Lucius known he held a portion of his masters soul in his hands he would undoubtedly have treated it with more reverence but instead he went ahead and carried out the old plan for his own ends By planting the diary upon Arthur Weasleys daughter he hoped to discredit Arthur and get rid of a highly incriminating magical object in one stroke .Ah poor Lucius .what with Voldemort s fury about the fact that he threw away the Horcrux for his own gain and the fiasco at the Ministry last year I would not be surprised if he is not secretly glad to be safe in Azkaban at the moment .Harry sat in thought for a moment then asked So if all of his Horcruxes are destroyed Voldemort could be killed ?Yes I think so said Dumbledore .Without his Horcruxes Voldemort will be a mortal man with a maimed and diminished soul .Never forget though that while his soul may be damaged beyond repair his brain and his magical powers remain intact .It will take uncommon skill and power to kill a wizard like Voldemort even without his Horcruxes .But I havent got uncommon skill and power said Harry before he could stop himself .Yes you have said Dumbledore firmly .You have a power that Voldemort has never had .You can I know !said Harry impatiently .I can love !It was only with difficulty that he stopped himself adding Big deal !Yes Harry you can love said Dumbledore who looked as though he knew perfectly well what Harry had just refrained from saying .Which given everything that has happened to you is a great and remarkable thing .You are still too young to understand how unusual you are Harry .So when the prophecy says that Ill have ‘power the Dark Lord knows not it just means love ?asked Harry feeling a little let down .Yes just love said Dumbledore .But Harry never forget that what the prophecy says is only significant because Voldemort made it so .I told you this at the end of last year .Voldemort singled you out as the person who would be most dangerous to him and in doing so he made you the person who would be most dangerous to him !But it comes to the same No it doesnt !said Dumbledore sounding impatient now .Pointing at Harry with his black withered hand he said You are setting too much store by the prophecy !But spluttered Harry but you said the prophecy means If Voldemort had never heard of the prophecy would it have been fulfilled ?Would it have meant anything ?Of course not !Do you think every prophecy in the Hall of Prophecy has been fulfilled ?But said Harry bewildered but last year you said one of us would have to kill the other Harry Harry only because Voldemort made a grave error and acted on Professor Trelawneys words !If Voldemort had never murdered your father would he have imparted in you a furious desire for revenge ?Of course not !If he had not forced your mother to die for you would he have given you a magical protection he could not penetrate ?Of course not Harry !Dont you see ?Voldemort himself created his worst enemy just as tyrants everywhere do !Have you any idea how much tyrants fear the people they oppress ?All of them realize that one day amongst their many victims there is sure to be one who rises against them and strikes back !Voldemort is no different !Always he was on the lookout for the one who would challenge him .He heard the prophecy and he leapt into action with the result that he not only handpicked the man most likely to finish him he handed him uniquely deadly weapons !But It is essential that you understand this !said Dumbledore standing up and striding about the room his glittering robes swooshing in his wake Harry had never seen him so agitated .By attempting to kill you Voldemort himself singled out the remarkable person who sits here in front of me and gave him the tools for the job !It is Voldemort s fault that you were able to see into his thoughts his ambitions that you even understand the snakelike language in which he gives orders and yet Harry despite your privileged insight into Voldemorts world which incidentally is a gift any Death Eater would kill to have you have never been seduced by the Dark Arts never even for a second shown the slightest desire to become one of Voldemorts followers !Of course I havent !said Harry indignantly .He killed my mum and dad !You are protected in short by your ability to love !said Dumbledore loudly .The only protection that can possibly work against the lure of power like Voldemorts !In spite of all the temptation you have endured all the suffering you remain pure of heart just as pure as you were at the age of eleven when you stared into a mirror that reflected your hearts desire and it showed you only the way to thwart Lord Voldemort and not immortality or riches .Harry have you any idea how few wizards could have seen what you saw in that mirror ?Voldemort should have known then what he was dealing with but he did not !But he knows it now .You have flitted into Lord Voldemorts mind without damage to yourself but he cannot possess you without enduring mortal agony as he discovered in the Ministry .I do not think he understands why Harry but then he was in such a hurry to mutilate his own soul he never paused to understand the incomparable power of a soul that is untarnished and whole .But sir said Harry making valiant efforts not to sound argumentative it all comes to the same thing doesnt it ?Ive got to try and kill him or Got to ?said Dumbledore .Of course youve got to !But not because of the prophecy !Because you yourself will never rest until youve tried !We both know it !Imagine please just for a moment that you had never heard that prophecy !How would you feel about Voldemort now ?Think !Harry watched Dumbledore striding up and down in front of him and thought .He thought of his mother his father and Sirius .He thought of Cedric Diggory .He thought of all the terrible deeds he knew Lord Voldemort had done .A flame seemed to leap inside his chest searing his throat .Id want him finished said Harry quietly .And Id want to do it .Of course you would !cried Dumbledore .You see the prophecy does not mean you have to do anything !But the prophecy caused Lord Voldemort to mark you as his equal .In other words you are free to choose your way quite free to turn your back on the prophecy !But Voldemort continues to set store by the prophecy .He will continue to hunt you .which makes it certain really that That one of us is going to end up killing the other said Harry .Yes .But he understood at last what Dumbledore had been trying to tell him .It was he thought the difference between being dragged into the arena to face a battle to the death and walking into the arena with your head held high .Some people perhaps would say that there was little to choose between the two ways but Dumbledore knew and so do I thought Harry with a rush of fierce pride and so did my parents that there was all the difference in the world .SECTUMSEMPRA Exhausted but delighted with his nights work Harry told Ron and Hermione everything that had happened during next mornings Charms lesson having first cast the Muffliato spell upon those nearest them .They were both satisfyingly impressed by the way he had wheedled the memory out of Slughorn and positively awed when he told them about Voldemorts Horcruxes and Dumbledores promise to take Harry along should he find another one .Wow said Ron when Harry had finally finished telling them everything Ron was waving his wand very vaguely in the direction of the ceiling without paying the slightest bit of attention to what he was doing .Wow .Youre actually going to go with Dumbledore .and try and destroy .wow .Ron youre making it snow said Hermione patiently grabbing his wrist and redirecting his wand away from the ceiling from which sure enough large white flakes had started to fall .Lavender Brown Harry noticed glared at Hermione from a neighboring table through very red eyes and Hermione immediately let go of Rons arm .Oh yeah said Ron looking down at his shoulders in vague surprise .Sorry .looks like weve all got horrible dandruff now .He brushed some of the fake snow off Hermione s shoulder .Lavender burst into tears .Ron looked immensely guilty and turned his back on her .We split up he told Harry out of the corner of his mouth .Last night .When she saw me coming out of the dormitory with Hermione .Obviously she couldnt see you so she thought it had just been the two of us .Ah said Harry .Well you dont mind its over do you ?No Ron admitted .It was pretty bad while she was yelling but at least I didnt have to finish it .Coward said Hermione though she looked amused .Well it was a bad night for romance all around .Ginny and Dean split up too Harry .Harry thought there was a rather knowing look in her eye as she told him that but she could not possibly know that his insides were suddenly dancing the conga .Keeping his face as immobile and his voice as indifferent as he could he asked How come ?Oh something really silly .She said he was always trying to help her through the portrait hole like she couldnt climb in herself .but theyve been a bit rocky for ages .Harry glanced over at Dean on the other side of the classroom .He certainly looked unhappy .Of course this puts you in a bit of a dilemma doesnt it ?said Hermione .What dyou mean ?said Harry quickly .The Quidditch team said Hermione .If Ginny and Dean arent speaking .Oh oh yeah said Harry .Flitwick said Ron in a warning tone .The tiny little Charms master was bobbing his way toward them and Hermione was the only one who had managed to turn vinegar into wine her glass flask was full of deep crimson liquid whereas the contents of Harrys and Rons were still murky brown .Now now boys squeaked Professor Flitwick reproachfully .A little less talk a little more action .Let me see you try .Together they raised their wands concentrating with all their might and pointed them at their flasks .Harrys vinegar turned to ice Rons flask exploded .Yes .for homework said Professor Flitwick reemerging from under the table and pulling shards of glass out of the top of his hat practice .They had one of their rare joint free periods after Charms and walked back to the common room together .Ron seemed to be positively lighthearted about the end of his relationship with Lavender and Hermione seemed cheery too though when asked what she was grinning about she simply said Its a nice day .Neither of them seemed to have noticed that a fierce battle was raging inside Harrys brain Shes Rons sister .But shes ditched Dean !Shes still Rons sister .Im his best mate !Thatll make it worse .If I talked to him first Hed hit you .What if I dont care ?Hes your best mate Harry barely noticed that they were climbing through the portrait hole into the sunny common room and only vaguely registered the small group of seventh years clustered together there until Hermione cried Katie !Youre back !Are you okay ?Harry stared It was indeed Katie Bell looking completely healthy and surrounded by her jubilant friends .Im really well !she said happily .They let me out of St .Mungos on Monday I had a couple of days at home with Mum and Dad and then came back here this morning .Leanne was just telling me about McLaggen and the last match Harry .Yeah said Harry well now youre back and Rons fit well have a decent chance of thrashing Ravenclaw which means we could still be in the running for the Cup .Listen Katie .He had to put the question to her at once his curiosity even drove Ginny temporarily from his brain .He dropped his voice as Katies friends started gathering up their things apparently they were late for Transfiguration . .that necklace .can you remember who gave it to you now ?No said Katie shaking her head ruefully .Everyones been asking me but I havent got a clue .The last thing I remember was walking into the ladies in the Three Broomsticks .You definitely went into the bathroom then ?said Hermione .Well I know I pushed open the door said Katie so I suppose whoever Imperiused me was standing just behind it .After that my memorys a blank until about two weeks ago in St .Mungos .Listen Id better go I wouldnt put it past McGonagall to give me lines even if it is my first day back .She caught up her bag and books and hurried after her friends leaving Harry Ron and Hermione to sit down at a window table and ponder what she had told them .So it must have been a girl or a woman who gave Katie the necklace said Hermione to be in the ladies bathroom .Or someone who looked like a girl or a woman said Harry .Dont forget there was a cauldron full of Polyjuice Potion at Hogwarts .We know some of it got stolen .In his minds eye he watched a parade of Crabbes and Goyles prance past all transformed into girls .I think Im going to take another swig of Felix said Harry and have a go at the Room of Requirement again .That would be a complete waste of potion said Hermione flatly putting down the copy of Spellmans Syllabary she had just taken out of her bag .Luck can only get you so far Harry .The situation with Slughorn was different you always had the ability to persuade him you just needed to tweak the circumstances a bit .Luck isnt enough to get you through a powerful enchantment though .Dont go wasting the rest of that potion !Youll need all the luck you can get if Dumbledore takes you along with him .She dropped her voice to a whisper .Couldnt we make some more ?Ron asked Harry ignoring Hermione .Itd be great to have a stock of it . .Have a look in the book .Harry pulled his copy of Advanced PotionMaking out of his bag and looked up Felix Felicis .Blimey its seriously complicated he said running an eye down the list of ingredients .And it takes six months .Youve got to let it stew .Typical said Ron .Harry was about to put his book away again when he noticed the corner of a page folded down turning to it he saw the Sectumsempra spell captioned For Enemies that he had marked a few weeks previously .He had still not found out what it did mainly because he did not want to test it around Hermione but he was considering trying it out on McLaggen next time he came up behind him unawares .The only person who was not particularly pleased to see Katie Bell back at school was Dean Thomas because he would no longer be required to fill her place as Chaser .He took the blow stoically enough when Harry told him merely grunting and shrugging but Harry had the distinct feeling as he walked away that Dean and Seamus were muttering mutinously behind his back .The following fortnight saw the best Quidditch practices Harry had known as Captain .His team was so pleased to be rid of McLaggen so glad to have Katie back at last that they were flying extremely well .Ginny did not seem at all upset about the breakup with Dean on the contrary she was the life and soul of the team .Her imitations of Ron anxiously bobbing up and down in front of the goal posts as the Quaffle sped toward him or of Harry bellowing orders at McLaggen before being knocked out cold kept them all highly amused .Harry laughing with the others was glad to have an innocent reason to look at Ginny he had received several more Bludger injuries during practice because he had not been keeping his eyes on the Snitch .The battle still raged inside his head Ginny or Ron ?Sometimes he thought that the postLavender Ron might not mind too much if he asked Ginny out but then he remembered Rons expression when he had seen her kissing Dean and was sure that Ron would consider it base treachery if Harry so much as held her hand .Yet Harry could not help himself talking to Ginny laughing with her walking back from practice with her however much his conscience ached he found himself wondering how best to get her on her own .It would have been ideal if Slughorn had given another of his little parties for Ron would not be around but unfortunately Slughorn seemed to have given them up .Once or twice Harry considered asking for Hermiones help but he did not think he could stand seeing the smug look on her face he thought he caught it sometimes when Hermione spotted him staring at Ginny or laughing at her jokes .And to complicate matters he had the nagging worry that if he didnt do it somebody else was sure to ask Ginny out soon He and Ron were at least agreed on the fact that she was too popular for her own good .All in all the temptation to take another gulp of Felix Felicis was becoming stronger by the day for surely this was a case for as Hermione put it tweaking the circumstances ?The balmy days slid gently through May and Ron seemed to be there at Harrys shoulder every time he saw Ginny .Harry found himself longing for a stroke of luck that would somehow cause Ron to realize that nothing would make him happier than his best friend and his sister falling for each other and to leave them alone together for longer than a few seconds .There seemed no chance of either while the final Quidditch game of the season was looming Ron wanted to talk tactics with Harry all the time and had little thought for anything else .Ron was not unique in this respect interest in the GryffindorRavenclaw game was running extremely high throughout the school for the match would decide the Championship which was still wide open .If Gryffindor beat Ravenclaw by a margin of three hundred points a tall order and yet Harry had never known his team to fly better then they would win the Championship .If they won by less than three hundred points they would come second to Ravenclaw if they lost by a hundred points they would be third behind Hufflepuff and if they lost by more than a hundred they would be in fourth place and nobody Harry thought would ever ever let him forget that it had been he who had captained Gryffindor to their first bottomofthetable defeat in two centuries .The runup to this crucial match had all the usual features members of rival Houses attempting to intimidate opposing teams in the corridors unpleasant chants about individual players being rehearsed loudly as they passed the team members themselves either swaggering around enjoying all the attention or else dashing into bathrooms between classes to throw up .Somehow the game had become inextricably linked in Harrys mind with success or failure in his plans for Ginny .He could not help feeling that if they won by more than three hundred points the scenes of euphoria and a nice loud after match party might be just as good as a hearty swig of Felix Felicis .In the midst of all his preoccupations Harry had not forgotten his other ambition finding out what Malfoy was up to in the Room of Requirement .He was still checking the Marauders Map and as he was unable to locate Malfoy on it deduced that Malfoy was still spending plenty of time within the room .Although Harry was losing hope that he would ever succeed in getting inside the Room of Requirement he attempted it whenever he was in the vicinity but no matter how he reworded his request the wall remained firmly doorless .A few days before the match against Ravenclaw Harry found himself walking down to dinner alone from the common room Ron having rushed off into a nearby bathroom to throw up yet again and Hermione having dashed off to see Professor Vector about a mistake she thought she might have made in her last Arithmancy essay .More out of habit than anything Harry made his usual detour along the seventhfloor corridor checking the Marauders Map as he went .For a moment he could not find Malfoy anywhere and assumed he must indeed be inside the Room of Requirement again but then he saw Malfoys tiny labeled dot standing in a boys bathroom on the floor below accompanied not by Crabbe or Goyle but by Moaning Myrtle .Harry only stopped staring at this unlikely coupling when he walked right into a suit of armor .The loud crash brought him out of his reverie hurrying from the scene lest Filch turn up he dashed down the marble staircase and along the passageway below .Outside the bathroom he pressed his ear against the door .He could not hear anything .He very quietly pushed the door open .Draco Malfoy was standing with his back to the door his hands clutching either side of the sink his white blond head bowed .Dont crooned Moaning Myrtles voice from one of the cubicles .Dont .tell me whats wrong .I can help you .No one can help me said Malfoy .His whole body was shaking .I cant do it .I cant .It wont work .and unless I do it soon .he says hell kill me .And Harry realized with a shock so huge it seemed to root him to the spot that Malfoy was crying actually crying tears streaming down his pale face into the grimy basin .Malfoy gasped and gulped and then with a great shudder looked up into the cracked mirror and saw Harry staring at him over his shoulder .Malfoy wheeled around drawing his wand .Instinctively Harry pulled out his own .Malfoys hex missed Harry by inches shattering the lamp on the wall beside him Harry threw himself sideways thought Levicorpus and flicked his wand but Malfoy blocked the jinx and raised his wand for another No !No !Stop it !squealed Moaning Myrtle her voice echoing loudly around the tiled room .Stop !STOP !There was a loud bang and the bin behind Harry exploded Harry attempted a LegLocker Curse that backfired off the wall behind Malfoys ear and smashed the cistern beneath Moaning Myrtle who screamed loudly water poured everywhere and Harry slipped as Malfoy his face contorted cried Cruci SECTUMSEMPRAl bellowed Harry from the floor waving his wand wildly .Blood spurted from Malfoys face and chest as though he had been slashed with an invisible sword .He staggered backward and collapsed onto the waterlogged floor with a great splash his wand falling from his limp right hand .No gasped Harry .Slipping and staggering Harry got to his feet and plunged toward Malfoy whose face was now shining scarlet his white hands scrabbling at his blood soaked chest .No I didnt Harry did not know what he was saying he fell to his knees beside Malfoy who was shaking uncontrollably in a pool of his own blood .Moaning Myrtle let out a deafening scream MURDER !MURDER IN THE BATHROOM !MURDER !The door banged open behind Harry and he looked up terrified Snape had burst into the room his face livid .Pushing Harry roughly aside he knelt over Malfoy drew his wand and traced it over the deep wounds Harrys curse had made muttering an incantation that sounded almost like song .The flow of blood seemed to ease Snape wiped the residue from Malfoys face and repeated his spell .Now the wounds seemed to be knitting .Harry was still watching horrified by what he had done barely aware that he too was soaked in blood and water .Moaning Myrtle was still sobbing and wailing overhead .When Snape had performed his countercurse for the third time he halflifted Malfoy into a standing position .You need the hospital wing .There may be a certain amount of scarring but if you take dittany immediately we might avoid even that .Come .He supported Malfoy across the bathroom turning at the door to say in a voice of cold fury And you Potter .You wait here for me .It did not occur to Harry for a second to disobey .He stood up slowly shaking and looked down at the wet floor .There were bloodstains floating like crimson flowers across its surface .He could not even find it in himself to tell Moaning Myrtle to be quiet as she continued to wail and sob with increasingly evident enjoyment .Snape returned ten minutes later .He stepped into the bathroom and closed the door behind him .Go he said to Myrtle and she swooped back into her toilet at once leaving a ringing silence behind her .I didnt mean it to happen said Harry at once .His voice echoed in the cold watery space .I didnt know what that spell did .But Snape ignored this .Apparently I underestimated you Potter he said quietly .Who would have thought you knew such Dark Magic ?Who taught you that spell ?I read about it somewhere .Where ?It was a library book Harry invented wildly .I cant remember what it was call Liar said Snape .Harrys throat went dry .He knew what Snape was going to do and he had never been able to prevent it .The bathroom seemed to shimmer before his eyes he struggled to block out all thought but try as he might the HalfBlood Princes copy of Advanced PotionMaking swam hazily to the forefront of his mind .And then he was staring at Snape again in the midst of this wrecked soaked bathroom .He stared into Snapes black eyes hoping against hope that Snape had not seen what he feared but Bring me your schoolbag said Snape softly and all of your schoolbooks .All of them .Bring them to me here .Now !There was no point arguing .Harry turned at once and splashed out of the bathroom .Once in the corridor he broke into a run toward Gryffindor Tower .Most people were walking the other way they gaped at him drenched in water and blood but he answered none of the questions fired at him as he ran past .He felt stunned it was as though a beloved pet had turned suddenly savage what had the Prince been thinking to copy such a spell into his book ?And what would happen when Snape saw it ?Would he tell Slughorn Harrys stomach churned how Harry had been achieving such good results in Potions all year ?Would he confiscate or destroy the book that had taught Harry so much .the book that had become a kind of guide and friend ?Harry could not let it happen .He could not .Where Ve you ?Why are you soaking ?Is that blood ?Ron was standing at the top of the stairs looking bewildered at the sight of Harry .I need your book Harry panted .Your Potions book .Quick .give it to me .But what about the HalfBlood Ill explain later !Ron pulled his copy of Advanced PotionMaking out of his bag and handed it over Harry sprinted off past him and back to the common room .Here he seized his schoolbag ignoring the amazed looks of several people who had already finished their dinner threw himself back out of the portrait hole and hurtled off along the seventhfloor corridor .He skidded to a halt beside the tapestry of dancing trolls closed his eyes and began to walk .I need a place to hide my book .I need a place to hide my book .I need a place to hide my book .Three times he walked up and down in front of the stretch of blank wall .When he opened his eyes there it was at last the door to the Room of Requirement .Harry wrenched it open flung himself inside and slammed it shut .He gasped .Despite his haste his panic his fear of what awaited him back in the bathroom he could not help but be overawed by what he was looking at .He was standing in a room the size of a large cathedral whose high windows were sending shafts of light down upon what looked like a city with towering walls built of what Harry knew must be objects hidden by generations of Hogwarts inhabitants .There were alleyways and roads bordered by teetering piles of broken and damaged furniture stowed away perhaps to hide the evidence of mishandled magic or else hidden by castleproud houseelves .There were thousands and thousands of books no doubt banned or graffitied or stolen .There were winged catapults and Fanged Frisbees some still with enough life in them to hover halfheartedly over the mountains of other forbidden items there were chipped bottles of congealed potions hats jewels cloaks there were what looked like dragon eggshells corked bottles whose contents still shimmered evilly several rusting swords and a heavy bloodstained axe .Harry hurried forward into one of the many alleyways between all this hidden treasure .He turned right past an enormous stuffed troll ran on a short way took a left at the broken Vanishing Cabinet in which Montague had got lost the previous year finally pausing beside a large cupboard that seemed to have had acid thrown at its blistered surface .He opened one of the cupboards creaking doors It had already been used as a hiding place for something in a cage that had long since died its skeleton had five legs .He stuffed the HalfBlood Princes book behind the cage and slammed the door .He paused for a moment his heart thumping horribly gazing around at all the clutter .Would he be able to find this spot again amidst all this junk ?Seizing the chipped bust of an ugly old warlock from on top of a nearby crate he stood it on top of the cupboard where the book was now hidden perched a dusty old wig and a tarnished tiara on the statues head to make it more distinctive then sprinted back through the alleyways of hidden junk as fast as he could go back to the door back out onto the corridor where he slammed the door behind him and it turned at once back into stone .Harry ran flatout toward the bathroom on the floor below cramming Rons copy of Advanced Potion Making into his bag as he did so .A minute later he was back in front of Snape who held out his hand wordlessly for Harrys schoolbag .Harry handed it over panting a searing pain in his chest and waited .One by one Snape extracted Harrys books and examined them .Finally the only book left was the Potions book which he looked at very carefully before speaking .This is your copy of Advanced PotionMaking is it Potter ?Yes said Harry still breathing hard .Youre quite sure of that are you Potter ?Yes said Harry with a touch more defiance .This is the copy of Advanced PotionMaking that you purchased from Flourish and Blotts ?Yes said Harry firmly .Then why asked Snape does it have the name ‘Roonil Wazlib written inside the front cover ?Harrys heart missed a beat .Thats my nickname he said .Your nickname repeated Snape .Yeah .thats what my friends call me said Harry .I understand what a nickname is said Snape .The cold black eyes were boring once more into Harrys he tried not to look into them .Close your mind .Close your mind .But he had never learned how to do it properly .Do you know what I think Potter ?said Snape very quietly .I think that you are a liar and a cheat and that you deserve detention with me every Saturday until the end of term .What do you think Potter ?I I dont agree sir said Harry still refusing to look into Snape s eyes .Well we shall see how you feel after your detentions said Snape .Ten oclock Saturday morning Potter .My office .But sir .said Harry looking up desperately .Quidditch .the last match of the .Ten oclock whispered Snape with a smile that showed his yellow teeth .Poor Gryffindor .fourth place this year I fear .And he left the bathroom without another word leaving Harry to stare into the cracked mirror feeling sicker he was sure than Ron had ever felt in his life .I wont say ‘I told you so said Hermione an hour later in the common room .Leave it Hermione said Ron angrily .Harry had never made it to dinner he had no appetite at all .He had just finished telling Ron Hermione and Ginny what had happened not that there seemed to have been much need .The news had traveled very fast Apparently Moaning Myrtle had taken it upon herself to pop up in every bathroom in the castle to tell the story Malfoy had already been visited in the hospital wing by Pansy Parkinson who had lost no time in vilifying Harry far and wide and Snape had told the staff precisely what had happened .Harry had already been called out of the common room to endure fifteen highly unpleasant minutes in the company of Professor McGonagall who had told him he was lucky not to have been expelled and that she supported wholeheartedly Snape s punishment of detention every Saturday until the end of term .I told you there was something wrong with that Prince person Hermione said evidently unable to stop herself .And I was right wasnt I ?No I dont think you were said Harry stubbornly .He was having a bad enough time without Hermione lecturing him the looks on the Gryffindor teams faces when he had told them he would not be able to play on Saturday had been the worst punishment of all .He could feel Ginnys eyes on him now but did not meet them he did not want to see disappointment or anger there .He had just told her that she would be playing Seeker on Saturday and that Dean would be rejoining the team as Chaser in her place .Perhaps if they won Ginny and Dean would make up during the postmatch euphoria .The thought went through Harry like an icy knife .Harry said Hermione how can you still stick up for that book when that spell Will you stop harping on about the book !snapped Harry .The Prince only copied it out !Its not like he was advising anyone to use it !For all we know he was making a note of something that had been used against him !I dont believe this said Hermione .Youre actually defending Im not defending what I did !said Harry quickly .I wish I hadnt done it and not just because Ive got about a dozen detentions .You know I wouldntve used a spell like that not even on Malfoy but you cant blame the Prince he hadnt written ‘try this out its really good he was just making notes for himself wasnt he not for anyone else .Are you telling me said Hermione that youre going to go back ?And get the book ?Yeah I am said Harry forcefully .Listen without the Prince Id never have won the Felix Felicis .Id never have known how to save Ron from poisoning Id never have got a reputation for Potions brilliance you dont deserve said Hermione nastily .Give it a rest Hermione !said Ginny and Harry was so amazed so grateful he looked up .By the sound of it Malfoy was trying to use an Unforgivable Curse you should be glad Harry had something good up his sleeve !Well of course Im glad Harry wasnt cursed !said Hermione clearly stung .But you cant call that Sectumsempra spell good Ginny look where its landed him !And Id have thought seeing what this has done to your chances in the match Oh dont start acting as though you understand Quidditch snapped Ginny youll only embarrass yourself .Harry and Ron stared Hermione and Ginny who had always got on together very well were now sitting with their arms folded glaring in opposite directions .Ron looked nervously at Harry then snatched up a book at random and hid behind it .Harry however little though he knew he deserved it felt unbelievably cheerful all of a sudden even though none of them spoke again for the rest of the evening .His lightheartedness was shortlived .There were Slytherin taunts to be endured next day not to mention much anger from fellow Gryffindors who were most unhappy that their Captain had got himself banned from the final match of the season .By Saturday morning whatever he might have told Hermione Harry would have gladly exchanged all the Felix Felicis in the world to be walking down to the Quidditch pitch with Ron Ginny and the others .It was almost unbearable to turn away from the mass of students streaming out into the sunshine all of them wearing rosettes and hats and brandishing banners and scarves to descend the stone steps into the dungeons and walk until the distant sounds of the crowd were quite obliterated knowing that he would not be able to hear a word of commentary or a cheer or groan .Ah Potter said Snape when Harry had knocked on his door and entered the unpleasantly familiar office that Snape despite teaching floors above now had not vacated it was as dimly lit as ever and the same slimy dead objects were suspended in colored potions all around the walls .Ominously there were many cobwebbed boxes piled on a table where Harry was clearly supposed to sit they had an aura of tedious hard and pointless work about them .Mr Filch has been looking for someone to clear out these old files said Snape softly .They are the records of other Hogwarts wrongdoers and their punishments .Where the ink has grown faint or the cards have suffered damage from mice we would like you to copy out the crimes and punishments afresh and making sure that they are in alphabetical order replace them in the boxes .You will not use magic .Right Professor said Harry with as much contempt as he could put into the last three syllables .I thought you could start said Snape a malicious smile on his lips with boxes one thousand and twelve to one thousand and fiftysix .You will find some familiar names in there which should add interest to the task .Here you see .He pulled out a card from one of the topmost boxes with a flourish and read ‘James Potter and Sirius Black .Apprehended using an illegal hex upon Bertram Aubrey .Aubreys head twice normal size .Double detention .Snape sneered .It must be such a comfort to think that though they are gone a record of their great achievements remains .Harry felt the familiar boiling sensation in the pit of his stomach .Biting his tongue to prevent himself retaliating he sat down in front of the boxes and pulled one toward him .It was as Harry had anticipated useless boring work punctuated as Snape had clearly planned with the regular jolt in the stomach that meant he had just read his father or Siriuss names usually coupled together in various petty misdeeds occasionally accompanied by those of Remus Lupin and Peter Pettigrew .And while he copied out all their various offenses and punishments he wondered what was going on outside where the match would have just started .Ginny playing Seeker against Cho .Harry glanced again and again at the large clock ticking on the wall .It seemed to be moving half as fast as a regular clock perhaps Snape had bewitched it to go extra slowly ?He could not have been here for only half an hour .an hour .an hour and a half .Harrys stomach started rumbling when the clock showed half past twelve .Snape who had not spoken at all since setting Harry his task finally looked up at ten past one .I think that will do he said coldly .Mark the place you have reached .You will continue at ten oclock next Saturday .Yes sir .Harry stuffed a bent card into the box at random and hurried out of the door before Snape could change his mind racing back up the stone steps straining his ears to hear a sound from the pitch but all was quiet . .It was over then .He hesitated outside the crowded Great Hall then ran up the marble staircase whether Gryffindor had won or lost the team usually celebrated or commiserated in their own common room .Quid agis ?he said tentatively to the Fat Lady wondering what he would find inside .Her expression was unreadable as she replied Youll see .And she swung forward .A roar of celebration erupted from the hole behind her .Harry gaped as people began to scream at the sight of him several hands pulled him into the room .We won !yelled Ron bounding into sight and brandishing the silver Cup at Harry .We won !Four hundred and fifty to a hundred and forty !We won !Harry looked around there was Ginny running toward him she had a hard blazing look in her face as she threw her arms around him .And without thinking without planning it without worrying about the fact that fifty people were watching Harry kissed her .After several long moments or it might have been half an hour or possibly several sunlit days they broke apart .The room had gone very quiet .Then several people wolfwhistled and there was an outbreak of nervous giggling .Harry looked over the top of Ginnys head to see Dean Thomas holding a shattered glass in his hand and Romilda Vane looking as though she might throw something .Hermione was beaming but Harrys eyes sought Ron .At last he found him still clutching the Cup and wearing an expression appropriate to having been clubbed over the head .For a fraction of a second they looked at each other then Ron gave a tiny jerk of the head that Harry understood to mean Well if you must .The creature in his chest roaring in triumph he grinned down at Ginny and gestured wordlessly out of the portrait hole .A long walk in the grounds seemed indicated during which if they had time they might discuss the match .THE SEER OVERHEARD The fact that Harry Potter was going out with Ginny Weasley seemed to interest a great number of people most of them girls yet Harry found himself newly and happily impervious to gossip over the next few weeks .After all it made a very nice change to be talked about because of something that was making him happier than he could remember being for a very long time rather than because he had been involved in horrific scenes of Dark Magic .Youd think people had better things to gossip about said Ginny as she sat on the common room floor leaning against Harrys legs and reading the Daily Prophet Three dementor attacks in a week and all Romilda Vane does is ask me if its true youve got a hippogriff tattooed across your chest .Ron and Hermione both roared with laughter .Harry ignored them .What did you tell her ?I told her its a Hungarian Horntail said Ginny turning a page of the newspaper idly .Much more macho .Thanks said Harry grinning .And what did you tell her Rons got ?A Pygmy Puff but I didnt say where .Ron scowled as Hermione rolled around laughing .Watch it he said pointing warningly at Harry and Ginny .Just because Ive given my permission doesnt mean I cant withdraw it ‘Your permission scoffed Ginny .Since when did you give me permission to do anything ?Anyway you said yourself youd rather it was Harry than Michael or Dean .Yeah I would said Ron grudgingly .And just as long as you dont start snogging each other in public You filthy hypocrite !What about you and Lavender thrashing around like a pair of eels all over the place ?demanded Ginny .But Rons tolerance was not to be tested much as they moved into June for Harry and Ginnys time together was becoming increasingly restricted .Ginnys O .W .L .s were approaching and she was therefore forced to study for hours into the night .On one such evening when Ginny had retired to the library and Harry was sitting beside the window in the common room supposedly finishing his Herbology homework but in reality reliving a particularly happy hour he had spent down by the lake with Ginny at lunchtime Hermione dropped into the seat between him and Ron with an unpleasantly purposeful look on her face .I want to talk to you Harry .What about ?said Harry suspiciously .Only the previous day Hermione had told him off for distracting Ginny when she ought to be working hard for her examinations .The socalled HalfBlood Prince .Oh not again he groaned .Will you please drop it ?He had not dared to return to the Room of Requirement to retrieve his book and his performance in Potions was suffering accordingly though Slughorn who approved of Ginny had jocularly attributed this to Harry being lovesick .But Harry was sure that Snape had not yet given up hope of laying hands on the Princes book and was determined to leave it where it was while Snape remained on the lookout .Im not dropping it said Hermione firmly until youve heard me out .Now Ive been trying to find out a bit about who might make a hobby of inventing Dark spells He didnt make a hobby of it He he who says its a he ?Weve been through this said Harry crossly .Prince Hermione PrinceV Right !said Hermione red patches blazing in her cheeks as she pulled a very old piece of newsprint out of her pocket and slammed it down on the table in front of Harry .Look at that !Look at the picture !Harry picked up the crumbling piece of paper and stared at the moving photograph yellowed with age Ron leaned over for a look too .The picture showed a skinny girl of around fifteen .She was not pretty she looked simultaneously cross and sullen with heavy brows and a long pallid face .Underneath the photograph was the caption EILEEN PRINCE CAPTAIN OF THE HOGWARTS GOBSTONES TEAM .So ?said Harry scanning the short news item to which the picture belonged it was a rather dull story about interschool competitions .Her name was Eileen Prince .Prince Harry .They looked at each other and Harry realized what Hermione was trying to say .He burst out laughing .No way .What ?You think she was the HalfBlood . ?Oh come on .Well why not ?Harry there arent any real princes in the Wizarding world !Its either a nickname a made up title somebodys given themselves or it could be their actual name couldnt it ?No listen !If say her father was a wizard whose surname was Prince and her mother was a Muggle then that would make her a halfblood Prince !Yeah very ingenious Hermione .But it would !Maybe she was proud of being half a Prince !Listen Hermione I can tell its not a girl .I can just tell .The truth is that you dont think a girl would have been clever enough said Hermione angrily .How can I have hung round with you for five years and not think girls are clever ?said Harry stung by this .Its the way he writes I just know the Prince was a bloke I can tell .This girl hasnt got anything to do with it .Where did you get this anyway ?The library said Hermione predictably .Theres a whole collection of old Prophets up there .Well Im going to find out more about Eileen Prince if I can .Enjoy yourself said Harry irritably .I will said Hermione .And the first place Ill look she shot at him as she reached the portrait hole is records of old Potions awards !Harry scowled after her for a moment then continued his contemplation of the darkening sky .Shes just never got over you outperforming her in Potions said Ron returning to his copy of A Thousand Magical Herbs and Fungi .You dont think Im mad wanting that book back do you ?Course not said Ron robustly .He was a genius the Prince .Anyway .without his bezoar tip .He drew his finger significantly across his own throat .I wouldnt be here to discuss it would I ?I mean Im not saying that spell you used on Malfoy was great Nor am I said Harry quickly .But he healed all right didnt he ?Back on his feet in no time .Yeah said Harry this was perfectly true although his conscience squirmed slightly all the same .Thanks to Snape .You still got detention with Snape this Saturday ?Ron continued .Yeah and the Saturday after that and the Saturday after that sighed Harry .And hes hinting now that if I dont get all the boxes done by the end of term well carry on next year .He was finding these detentions particularly irksome because they cut into the already limited time he could have been spending with Ginny .Indeed he had frequently wondered lately whether Snape did not know this for he was keeping Harry later and later every time while making pointed asides about Harry having to miss the good weather and the varied opportunities it offered .Harry was shaken from these bitter reflections by the appearance at his side of Jimmy Peakes who was holding out a scroll of parchment .Thanks Jimmy .Hey its from Dumbledore !said Harry excitedly unrolling the parchment and scanning it .He wants me to go to his office as quick as I can !They stared at each other .Blimey whispered Ron .You dont reckon .he hasnt found . ?Better go and see hadnt I ?said Harry jumping to his feet .He hurried out of the common room and along the seventh floor as fast as he could passing nobody but Peeves who swooped past in the opposite direction throwing bits of chalk at Harry in a routine sort of way and cackling loudly as he dodged Harrys defensive jinx .Once Peeves had vanished there was silence in the corridors with only fifteen minutes left until curfew most people had already returned to their common rooms .And then Harry heard a scream and a crash .He stopped in his tracks listening .How dare you aargh !The noise was coming from a corridor nearby Harry sprinted toward it his wand at the ready hurtled around another corner and saw Professor Trelawney sprawled upon the floor her head covered in one of her many shawls several sherry bottles lying beside her one broken .Professor Harry hurried forward and helped Professor Trelawney to her feet .Some of her glittering beads had become entangled with her glasses .She hiccuped loudly patted her hair and pulled herself up on Harrys helping arm .What happened Professor ?You may well ask !she said shrilly .I was strolling along brooding upon certain dark portents I happen to have glimpsed .But Harry was not paying much attention .He had just noticed where they were standing There on the right was the tapestry of dancing trolls and on the left that smoothly impenetrable stretch of stone wall that concealed Professor were you trying to get into the Room of Requirement ? .omens I have been vouchsafed what ?She looked suddenly shifty .The Room of Requirement repeated Harry .Were you trying to get in there ?I well I didnt know students knew about Not all of them do said Harry .But what happened ?You screamed .It sounded as though you were hurt .I well said Professor Trelawney drawing her shawls around her defensively and staring down at him with her vastly magnified eyes .I wished to ah deposit certain um personal items in the room .And she muttered something about nasty accusations .Right said Harry glancing down at the sherry bottles .But you couldnt get in and hide them ?He found this very odd the room had opened for him after all when he had wanted to hide the HalfBlood Princes book .Oh I got in all right said Professor Trelawney glaring at the wall .But there was somebody already in there .Somebody in ?Who ?demanded Harry .Who was in there ?I have no idea said Professor Trelawney looking slightly taken aback at the urgency in Harrys voice .I walked into the room and I heard a voice which has never happened before in all my years of hiding of using the room I mean .A voice ?Saying what ?I dont know that it was saying anything said Professor Trelawney .It was .whooping .Whooping ?Gleefully she said nodding .Harry stared at her .Was it male or female ?I would hazard a guess at male said Professor Trelawney .And it sounded happy ?Very happy said Professor Trelawney sniffily .As though it was celebrating ?Most definitely .And then ?And then I called out Whos there ?You couldnt have found out who it was without asking ?Harry asked her slightly frustrated .The Inner Eye said Professor Trelawney with dignity straightening her shawls and many strands of glittering beads was fixed upon matters well outside the mundane realms of whooping voices .Right said Harry hastily he had heard about Professor Trelawneys Inner Eye all too often before .And did the voice say who was there ?No it did not she said .Everything went pitch black and the next thing I knew I was being hurled headfirst out of the room !And you didnt see that coming ?said Harry unable to help himself .No I did not as I say it was pitch She stopped and glared at him suspiciously .I think youd better tell Professor Dumbledore said Harry .He ought to know Malfoys celebrating I mean that someone threw you out of the room .To his surprise Professor Trelawney drew herself up at this suggestion looking haughty .The headmaster has intimated that he would prefer fewer visits from me she said coldly .I am not one to press my company upon those who do not value it .If Dumbledore chooses to ignore the warnings the cards show Her bony hand closed suddenly around Harrys wrist .Again and again no matter how I lay them out And she pulled a card dramatically from underneath her shawls .the lightningstruck tower she whispered .Calamity .Disaster .Coming nearer all the time .Right said Harry again .Well .I still think you should tell Dumbledore about this voice and everything going dark and being thrown out of the room .You think so ?Professor Trelawney seemed to consider the matter for a moment but Harry could tell that she liked the idea of retelling her little adventure .Im going to see him right now said Harry .Ive got a meeting with him .We could go together .Oh well in that case said Professor Trelawney with a smile .She bent down scooped up her sherry bottles and dumped them unceremoniously in a large blueandwhite vase standing in a nearby niche .I miss having you in my classes Harry she said soulfully as they set off together .You were never much of a Seer .but you were a wonderful Object Harry did not reply he had loathed being the Object of Professor Trelawneys continual predictions of doom .I am afraid she went on that the nag Im sorry the centaur knows nothing of cartomancy .I asked him one Seer to another had he not too sensed the distant vibrations of coming catastrophe ?But he seemed to find me almost comical .Yes comical !Her voice rose rather hysterically and Harry caught a powerful whiff of sherry even though the bottles had been left behind .Perhaps the horse has heard people say that I have not inherited my greatgreatgrandmothers gift .Those rumors have been bandied about by the jealous for years .You know what I say to such people Harry ?Would Dumbledore have let me teach at this great school put so much trust in me all these years had I not proved myself to him ?Harry mumbled something indistinct .I well remember my first interview with Dumbledore went on Professor Trelawney in throaty tones .He was deeply impressed of course deeply impressed .I was staying at the Hogs Head which I do not advise incidentally bedbugs dear boy but funds were low .Dumbledore did me the courtesy of calling upon me in my room .He questioned me .I must confess that at first I thought he seemed illdisposed toward Divination .and I remember I was starting to feel a little odd I had not eaten much that day .but then .And now Harry was paying attention properly for the first time for he knew what had happened then Professor Trelawney had made the prophecy that had altered the course of his whole life the prophecy about him and Voldemort . .but then we were rudely interrupted by Severus Snape !What ?Yes there was a commotion outside the door and it flew open and there was that rather uncouth barman standing with Snape who was waffling about having come the wrong way up the stairs although Im afraid that I myself rather thought he had been apprehended eavesdropping on my interview with Dumbledore you see he himself was seeking a job at the time and no doubt hoped to pick up tips !Well after that you know Dumbledore seemed much more disposed to give me a job and I could not help thinking Harry that it was because he appreciated the stark contrast between my own unassuming manners and quiet talent compared to the pushing thrusting young man who was prepared to listen at keyholes Harry dear ?She looked back over her shoulder having only just realized that Harry was no longer with her he had stopped walking and they were now ten feet from each other .Harry ?she repeated uncertainly .Perhaps his face was white to make her look so concerned and frightened .Harry was standing stock still as waves of shock crashed over him wave after wave obliterating everything except the information that had been kept from him for so long .It was Snape who had overheard the prophecy .It was Snape who had carried the news of the prophecy to Voldemort .Snape and Peter Pettigrew together had sent Voldemort hunting after Lily and James and their son .Nothing else mattered to Harry just now .Harry ?said Professor Trelawney again .Harry I thought we were going to see the headmaster together ?You stay here said Harry through numb lips .But dear .I was going to tell him how I was assaulted in the Room of You stay here !Harry repeated angrily .She looked alarmed as he ran past her around the corner into Dumbledores corridor where the lone gargoyle stood sentry .Harry shouted the password at the gargoyle and ran up the moving spiral staircase three steps at a time .He did not knock upon Dumbledores door he hammered and the calm voice answered Enter after Harry had already flung himself into the room .Fawkes the phoenix looked around his bright black eyes gleaming with reflected gold from the sunset beyond the windows .Dumbledore was standing at the window looking out at the grounds a long black traveling cloak in his arms .Well Harry I promised that you could come with me .For a moment or two Harry did not understand the conversation with Trelawney had driven everything else out of his head and his brain seemed to be moving very slowly .Come .with you . ?Only if you wish it of course .If I .And then Harry remembered why he had been eager to come to Dumbledores office in the first place .Youve found one ?Youve found a Horcrux ?I believe so .Rage and resentment fought shock and excitement For several moments Harry could not speak .It is natural to be afraid said Dumbledore . ‘Tm not scared !said Harry at once and it was perfectly true fear was one emotion he was not feeling at all .Which Horcrux is it ?Where is it ?I am not sure which it is though I think we can rule out the snake but I believe it to be hidden in a cave on the coast many miles from here a cave I have been trying to locate for a very long time the cave in which Tom Riddle once terrorized two children from his orphanage on their annual trip you remember ?Yes said Harry .How is it protected ?I do not know I have suspicions that may be entirely wrong .Dumbledore hesitated then said Harry I promised you that you could come with me and I stand by that promise but it would be very wrong of me not to warn you that this will be exceedingly dangerous .Im coming said Harry almost before Dumbledore had finished speaking .Boiling with anger at Snape his desire to do something desperate and risky had increased tenfold in the last few minutes .This seemed to show on Harrys face for Dumbledore moved away from the window and looked more closely at Harry a slight crease between his silver eyebrows .What has happened to you ?Nothing lied Harry promptly .What has upset you ?Im not upset .Harry you were never a good Occlumens The word was the spark that ignited Harrys fury .Snape !he said very loudly and Fawkes gave a soft squawk behind them .Snapes whats happened !He told Voldemort about the prophecy it was him he listened outside the door Trelawney told me !Dumbledores expression did not change but Harry thought his face whitened under the bloody tinge cast by the setting sun .For a long moment Dumbledore said nothing .When did you find out about this ?he asked at last .Just now !said Harry who was refraining from yelling with enormous difficulty .And then suddenly he could not stop himself .AND YOU LET HIM TEACH HERE AND HE TOLD VOLDEMORT TO GO AFTER MY MUM AND DAD !Breathing hard as though he was fighting Harry turned away from Dumbledore who still had not moved a muscle and paced up and down the study rubbing his knuckles in his hand and exercising every last bit of restraint to prevent himself knocking things over .He wanted to rage and storm at Dumbledore but he also wanted to go with him to try and destroy the Horcrux he wanted to tell him that he was a foolish old man for trusting Snape but he was terrified that Dumbledore would not take him along unless he mastered his anger .Harry said Dumbledore quietly .Please listen to me .It was as difficult to stop his relentless pacing as to refrain from shouting .Harry paused biting his lip and looked into Dumbledores lined face .Professor Snape made a terrible Dont tell me it was a mistake sir he was listening at the door !Please let me finish .Dumbledore waited until Harry had nodded curtly then went on .Professor Snape made a terrible mistake .He was still in Lord Voldemorts employ on the night he heard the first half of Professor Trelawneys prophecy .Naturally he hastened to tell his master what he had heard for it concerned his master most deeply .But he did not know he had no possible way of knowing which boy Voldemort would hunt from then onward or that the parents he would destroy in his murderous quest were people that Professor Snape knew that they were your mother and father Harry let out a yell of mirthless laughter .He hated my dad like he hated Sirius !Havent you noticed Professor how the people Snape hates tend to end up dead ?You have no idea of the remorse Professor Snape felt when he realized how Lord Voldemort had interpreted the prophecy Harry .I believe it to be the greatest regret of his life and the reason that he returned But hes a very good Occlumens isnt he sir ?said Harry whose voice was shaking with the effort of keeping it steady .And isnt Voldemort convinced that Snapes on his side even now ?Professor .how can you be sure Snapes on our side ?Dumbledore did not speak for a moment he looked as though he was trying to make up his mind about something .At last he said I am sure .I trust Severus Snape completely .Harry breathed deeply for a few moments in an effort to steady himself .It did not work .Well I dont !he said as loudly as before .Hes up to something with Draco Malfoy right now right under your nose and you still We have discussed this Harry said Dumbledore and now he sounded stern again .I have told you my views .Youre leaving the school tonight and Ill bet you havent even considered that Snape and Malfoy might decide to To what ?asked Dumbledore his eyebrows raised .What is it that you suspect them of doing precisely ?I .theyre up to something !said Harry and his hands curled into fists as he said it .Professor Trelawney was just in the Room of Requirement trying to hide her sherry bottles and she heard Malfoy whooping celebrating !Hes trying to mend something dangerous in there and if you ask me hes fixed it at last and youre about to just walk out of school without Enough said Dumbledore .He said it quite calmly and yet Harry fell silent at once he knew that he had finally crossed some invisible line .Do you think that I have once left the school unprotected during my absences this year ?I have not .Tonight when I leave there will again be additional protection in place .Please do not suggest that I do not take the safety of my students seriously Harry .I didnt mumbled Harry a little abashed but Dumbledore cut across him .I do not wish to discuss the matter any further .Harry bit back his retort scared that he had gone too far that he had ruined his chance of accompanying Dumbledore but Dumbledore went on Do you wish to come with me tonight ?Yes said Harry at once .Very well then Listen .Dumbledore drew himself up to his full height .I take you with me on one condition that you obey any command I might give you at once and without question .Of course .Be sure to understand me Harry .I mean that you must follow even such orders as ‘run ‘hide or ‘go back .Do I have your word ?I yes of course .If I tell you to hide you will do so ?Yes .If I tell you to flee you will obey ?Yes .If I tell you to leave me and save yourself you will do as I tell you ?Harry ?They looked at each other for a moment .Yes sir .Very good .Then I wish you to go and fetch your Invisibility Cloak and meet me in the entrance hall in five minutes time .Dumbledore turned back to look out of the fiery window the sun was now a ruby red glare along the horizon .Harry walked quickly from the office and down the spiral staircase .His mind was oddly clear all of a sudden .He knew what to do .Ron and Hermione were sitting together in the common room when he came back .What does he want ?Hermione said at once .Harry are you okay ?she added anxiously .Im fine said Harry shortly racing past them .He dashed up the stairs and into his dormitory where he flung open his trunk and pulled out the Marauders Map and a pair of balledup socks .Then he sped back down the stairs and into the common room skidding to a halt where Ron and Hermione sat looking stunned .Ive got to be quick Harry panted .Dumbledore thinks Im getting my Invisibility Cloak .Listen .Quickly he told them where he was going and why .He did not pause either for Hermione s gasps of horror or for Rons hasty questions they could work out the finer details for themselves later . .so you see what this means ?Harry finished at a gallop .Dumbledore wont be here tonight so Malfoys going to have another clear shot at whatever hes up to .No listen to me !he hissed angrily as both Ron and Hermione showed every sign of interrupting .I know it was Malfoy celebrating in the Room of Requirement .Here He shoved the Marauders Map into Hermiones hands .Youve got to watch him and youve got to watch Snape too .Use anyone else who you can rustle up from the D .A .Hermione those contact Galleons will still work right ?Dumbledore says hes put extra protection in the school but if Snape s involved hell know what Dumbledore s protection is and how to avoid it but he wont be expecting you lot to be on the watch will he ?Harry began Hermione her eyes huge with fear .I havent got time to argue said Harry curtly .Take this as well He thrust the socks into Rons hands .Thanks said Ron .Er why do I need socks ?You need whats wrapped in them its the Felix Felicis .Share it between yourselves and Ginny too .Say goodbye to her for me .Id better go Dumbledore s waiting No !said Hermione as Ron unwrapped the tiny little bottle of golden potion looking awestruck .We dont want it you take it who knows what youre going to be facing ?Ill be fine Ill be with Dumbledore said Harry .I want to know you lot are okay .Dont look like that Hermione Ill see you later .And he was off hurrying back through the portrait hole and toward the entrance hall .Dumbledore was waiting beside the oaken front doors .He turned as Harry came skidding out onto the topmost stone step panting hard a searing stitch in his side .I would like you to wear your cloak please said Dumbledore and he waited until Harry had thrown it on before saying Very good .Shall we go ?Dumbledore set off at once down the stone steps his own traveling cloak barely stirring in the still summer air .Harry hurried alongside him under the Invisibility Cloak still panting and sweating rather a lot .But what will people think when they see you leaving Professor ?Harry asked his mind on Malfoy and Snape .That I am off into Hogsmeade for a drink said Dumbledore lightly .I sometimes offer Rosmerta my custom or else visit the Hogs Head .or I appear to .It is as good a way as any of disguising ones true destination .They made their way down the drive in the gathering twilight .The air was full of the smells of warm grass lake water and wood smoke from Hagrids cabin .It was difficult to believe that they were heading for anything dangerous or frightening .Professor said Harry quietly as the gates at the bottom of the drive came into view will we be Apparating ?Yes said Dumbledore .You can Apparate now I believe ?Yes said Harry but I havent got a license .He felt it best to be honest what if he spoiled everything by turning up a hundred miles from where he was supposed to go ?No matter said Dumbledore I can assist you again .They turned out of the gates into the twilit deserted lane to Hogsmeade .Darkness descended fast as they walked and by the time they reached the High Street night was falling in earnest .Lights twinkled from windows over shops and as they neared the Three Broomsticks they heard raucous shouting .and stay out !shouted Madam Rosmerta forcibly ejecting a grubbylooking wizard .Oh hello Albus .Youre out late .Good evening Rosmerta good evening .forgive me Im off to the Hogs Head .No offense but I feel like a quieter atmosphere tonight .A minute later they turned the corner into the side street where the Hogs Heads sign creaked a little though there was no breeze .In contrast to the Three Broomsticks the pub appeared to be completely empty .It will not be necessary for us to enter muttered Dumbledore glancing around .As long as nobody sees us go .now place your hand upon my arm Harry .There is no need to grip too hard I am merely guiding you .On the count of three .One .two .three .Harry turned .At once there was that horrible sensation that he was being squeezed through a thick rubber tube he could not draw breath every part of him was being compressed almost past endurance and then just when he thought he must suffocate the invisible bands seemed to burst open and he was standing in cool darkness breathing in lungfuls of fresh salty air .THE CAVE Harry could smell salt and hear rushing waves a light chilly breeze ruffled his hair as he looked out at moonlit sea and starstrewn sky .He was standing upon a high outcrop of dark rock water foaming and churning below him .He glanced over his shoulder .A towering cliff stood behind them a sheer drop black and faceless .A few large chunks of rock such as the one upon which Harry and Dumbledore were standing looked as though they had broken away from the cliff face at some point in the past .It was a bleak harsh view the sea and the rock unrelieved by any tree or sweep of grass or sand .What do you think ?asked Dumbledore .He might have been asking Harrys opinion on whether it was a good site for a picnic .They brought the kids from the orphanage here ?asked Harry who could not imagine a less cozy spot for a day trip .Not here precisely said Dumbledore .There is a village of sorts about halfway along the cliffs behind us .I believe the orphans were taken there for a little sea air and a view of the waves .No I think it was only ever Tom Riddle and his youthful victims who visited this spot .No Muggle could reach this rock unless they were uncommonly good mountaineers and boats cannot approach the cliffs the waters around them are too dangerous .I imagine that Riddle climbed down magic would have served better than ropes .And he brought two small children with him probably for the pleasure of terrorizing them .I think the journey alone would have done it dont you ?Harry looked up at the cliff again and felt goose bumps .But his final destination and ours lies a little farther on .Come .Dumbledore beckoned Harry to the very edge of the rock where a series of jagged niches made footholds leading down to boulders that lay halfsubmerged in water and closer to the cliff .It was a treacherous descent and Dumbledore hampered slightly by his withered hand moved slowly .The lower rocks were slippery with seawater .Harry could feel flecks of cold salt spray hitting his face .Lumos said Dumbledore as he reached the boulder closest to the cliff face .A thousand flecks of golden light sparkled upon the dark surface of the water a few feet below where he crouched the black wall of rock beside him was illuminated too .You see ?said Dumbledore quietly holding his wand a little higher .Harry saw a fissure in the cliff into which dark water was swirling .You will not object to getting a little wet ?No said Harry .Then take off your Invisibility Cloak there is no need for it now and let us take the plunge .And with the sudden agility of a much younger man Dumbledore slid from the boulder landed in the sea and began to swim with a perfect breaststroke toward the dark slit in the rock face his lit wand held in his teeth .Harry pulled off his cloak stuffed it into his pocket and followed .The water was icy Harrys waterlogged clothes billowed around him and weighed him down .Taking deep breaths that filled his nostrils with the tang of salt and seaweed he struck out for the shimmering shrinking light now moving deeper into the cliff .The fissure soon opened into a dark tunnel that Harry could tell would be filled with water at high tide .The slimy walls were barely three feet apart and glimmered like wet tar in the passing light of Dumbledore s wand .A little way in the passageway curved to the left and Harry saw that it extended far into the cliff .He continued to swim in Dumbledore s wake the tips of his benumbed fingers brushing the rough wet rock .Then he saw Dumbledore rising out of the water ahead his silver hair and dark robes gleaming .When Harry reached the spot he found steps that led into a large cave .He clambered up them water streaming from his soaking clothes and emerged shivering uncontrollably into the still and freezing air .Dumbledore was standing in the middle of the cave his wand held high as he turned slowly on the spot examining the walls and ceiling .Yes this is the place said Dumbledore .How can you tell ?Harry spoke in a whisper .It has known magic said Dumbledore simply .Harry could not tell whether the shivers he was experiencing were due to his spinedeep coldness or to the same awareness of enchantments .He watched as Dumbledore continued to revolve on the spot evidently concentrating on things Harry could not see .This is merely the antechamber the entrance hall said Dumbledore after a moment or two .We need to penetrate the inner place .Now it is Lord Voldemorts obstacles that stand in our way rather than those nature made .Dumbledore approached the wall of the cave and caressed it with his blackened fingertips murmuring words in a strange tongue that Harry did not understand .Twice Dumbledore walked right around the cave touching as much of the rough rock as he could occasionally pausing running his fingers backward and forward over a particular spot until finally he stopped his hand pressed flat against the wall .Here he said .We go on through here .The entrance is concealed .Harry did not ask how Dumbledore knew .He had never seen a wizard work things out like this simply by looking and touching but Harry had long since learned that bangs and smoke were more often the marks of ineptitude than expertise .Dumbledore stepped back from the cave wall and pointed his wand at the rock .For a moment an arched outline appeared there blazing white as though there was a powerful light behind the crack .Youve ddone it !said Harry through chattering teeth but before the words had left his lips the outline had gone leaving the rock as bare and solid as ever .Dumbledore looked around .Harry Im so sorry I forgot he said he now pointed his wand at Harry and at once Harrys clothes were as warm and dry as if they had been hanging in front of a blazing fire .Thank you said Harry gratefully but Dumbledore had already turned his attention back to the solid cave wall .He did not try any more magic but simply stood there staring at it intently as though something extremely interesting was written on it .Harry stayed quite still he did not want to break Dumbledores concentration .Then after two solid minutes Dumbledore said quietly Oh surely not .So crude .What is it Professor ?I rather think said Dumbledore putting his uninjured hand inside his robes and drawing out a short silver knife of the kind Harry used to chop potion ingredients that we are required to make payment to pass .Payment ?said Harry .Youve got to give the door something ?Yes said Dumbledore .Blood if I am not much mistaken .Blood ?I said it was crude said Dumbledore who sounded disdainful even disappointed as though Voldemort had fallen short of the standards Dumbledore expected .The idea as I am sure you will have gathered is that your enemy must weaken him or herself to enter .Once again Lord Voldemort fails to grasp that there are much more terrible things than physical injury .Yeah but still if you can avoid it .said Harry who had experienced enough pain not to be keen for more .Sometimes however it is unavoidable said Dumbledore shaking back the sleeve of his robes and exposing the forearm of his injured hand .Professor !protested Harry hurrying forward as Dumbledore raised his knife .Ill do it Im He did not know what he was going to say younger fitter ?But Dumbledore merely smiled .There was a flash of silver and a spurt of scarlet the rock face was peppered with dark glistening drops .You are very kind Harry said Dumbledore now passing the tip of his wand over the deep cut he had made in his own arm so that it healed instantly just as Snape had healed Malfoys wounds .But your blood is worth more than mine .Ah that seems to have done the trick doesnt it ?The blazing silver outline of an arch had appeared in the wall once more and this time it did not fade away The bloodspattered rock within it simply vanished leaving an opening into what seemed total darkness .After me I think said Dumbledore and he walked through the archway with Harry on his heels lighting his own wand hastily as he went .An eerie sight met their eyes They were standing on the edge of a great black lake so vast that Harry could not make out the distant banks in a cavern so high that the ceiling too was out of sight .A misty greenish light shone far away in what looked like the middle of the lake it was reflected in the completely still water below .The greenish glow and the light from the two wands were the only things that broke the otherwise velvety blackness though their rays did not penetrate as far as Harry would have expected .The darkness was somehow denser than normal darkness .Let us walk said Dumbledore quietly .Be very careful not to step into the water .Stay close to me .He set off around the edge of the lake and Harry followed close behind him .Their footsteps made echoing slapping sounds on the narrow rim of rock that surrounded the water .On and on they walked but the view did not vary on one side of them the rough cavern wall on the other the boundless expanse of smooth glassy blackness in the very middle of which was that mysterious greenish glow .Harry found the place and the silence oppressive unnerving .Professor ?he said finally .Do you think the Horcrux is here ?Oh yes said Dumbledore .Yes Im sure it is .The question is how do we get to it ?We couldnt .we couldnt just try a Summoning Charm ?Harry said sure that it was a stupid suggestion .But he was much keener than he was prepared to admit on getting out of this place as soon as possible .Certainly we could said Dumbledore stopping so suddenly that Harry almost walked into him .Why dont you do it ?Me ?Oh .okay .Harry had not expected this but cleared his throat and said loudly wand aloft Accio Horcruxl With a noise like an explosion something very large and pale erupted out of the dark water some twenty feet away before Harry could see what it was it had vanished again with a crashing splash that made great deep ripples on the mirrored surface .Harry leapt backward in shock and hit the wall his heart was still thundering as he turned to Dumbledore .What was that ?Something I think that is ready to respond should we attempt to seize the Horcrux .Harry looked back at the water .The surface of the lake was once more shining black glass The ripples had vanished unnaturally fast Harrys heart however was still pounding .Did you think that would happen sir ?I thought something would happen if we made an obvious attempt to get our hands on the Horcrux .That was a very good idea Harry much the simplest way of finding out what we are facing .But we dont know what the thing was said Harry looking at the sinisterly smooth water .What the things are you mean said Dumbledore .I doubt very much that there is only one of them .Shall we walk on ?Professor ?Yes Harry ?Do you think were going to have to go into the lake ?Into it ?Only if we are very unfortunate .You dont think the Horcrux is at the bottom ?Oh no .I think the Horcrux is in the middle .And Dumbledore pointed toward the misty green light in the center of the lake .So were going to have to cross the lake to get to it ?Yes I think so .Harry did not say anything .His thoughts were all of water monsters of giant serpents of demons kelpies and sprites .Aha said Dumbledore and he stopped again this time Harry really did walk into him for a moment he toppled on the edge of the dark water and Dumbledores uninjured hand closed tightly around his upper arm pulling him back .So sorry Harry I should have given warning .Stand back against the wall please I think I have found the place .Harry had no idea what Dumbledore meant this patch of dark bank was exactly like every other bit as far as he could tell but Dumbledore seemed to have detected something special about it .This time he was running his hand not over the rocky wall but through the thin air as though expecting to find and grip something invisible .Oho said Dumbledore happily seconds later .His hand had closed in midair upon something Harry could not see .Dumbledore moved closer to the water Harry watched nervously as the tips of Dumbledore s buckled shoes found the utmost edge of the rock rim .Keeping his hand clenched in midair Dumbledore raised his wand with the other and tapped his fist with the point .Immediately a thick coppery green chain appeared out of thin air extending from the depths of the water into Dumbledore s clenched hand .Dumbledore tapped the chain which began to slide through his fist like a snake coiling itself on the ground with a clinking sound that echoed noisily off the rocky walls pulling something from the depths of the black water .Harry gasped as the ghostly prow of a tiny boat broke the surface glowing as green as the chain and floated with barely a ripple toward the place on the bank where Harry and Dumbledore stood .How did you know that was there ?Harry asked in astonishment .Magic always leaves traces said Dumbledore as the boat hit the bank with a gentle bump sometimes very distinctive traces .I taught Tom Riddle .I know his style .Is .is this boat safe ?Oh yes I think so .Voldemort needed to create a means to cross the lake without attracting the wrath of those creatures he had placed within it in case he ever wanted to visit or remove his Horcrux .So the things in the water wont do anything to us if we cross in Voldemorts boat ?I think we must resign ourselves to the fact that they will at some point realize we are not Lord Voldemort .Thus far however we have done well .They have allowed us to raise the boat .But why have they let us ?asked Harry who could not shake off the vision of tentacles rising out of the dark water the moment they were out of sight of the bank .Voldemort would have been reasonably confident that none but a very great wizard would have been able to find the boat said Dumbledore .I think he would have been prepared to risk what was to his mind the most unlikely possibility that somebody else would find it knowing that he had set other obstacles ahead that only he would be able to penetrate .We shall see whether he is right .Harry looked down into the boat .It really was very small .It doesnt look like it was built for two people .Will it hold both of us ?Will we be too heavy together ?Dumbledore chuckled .Voldemort will not have cared about the weight but about the amount of magical power that crossed his lake .I rather think an enchantment will have been placed upon this boat so that only one wizard at a time will be able to sail in it .But then ?I do not think you will count Harry You are underage and unqualified .Voldemort would never have expected a sixteenyearold to reach this place I think it unlikely that your powers will register compared to mine .These words did nothing to raise Harrys morale perhaps Dumbledore knew it for he added Voldemorts mistake Harry Voldemorts mistake .Age is foolish and forgetful when it underestimates youth .Now you first this time and be careful not to touch the water .Dumbledore stood aside and Harry climbed carefully into the boat .Dumbledore stepped in too coiling the chain onto the floor .They were crammed in together Harry could not comfortably sit but crouched his knees jutting over the edge of the boat which began to move at once .There was no sound other than the silken rustle of the boats prow cleaving the water it moved without their help as though an invisible rope was pulling it onward toward the light in the center .Soon they could no longer see the walls of the cavern they might have been at sea except that there were no waves .Harry looked down and saw the reflected gold of his wandlight sparkling and glittering on the black water as they passed .The boat was carving deep ripples upon the glassy surface grooves in the dark mirror .And then Harry saw it marble white floating inches below the surface .Professor !he said and his startled voice echoed loudly over the silent water .Harry ?I think I saw a hand in the water a human hand !Yes I am sure you did said Dumbledore calmly .Harry stared down into the water looking for the vanished hand and a sick feeling rose in his throat .So that thing that jumped out of the water ?But Harry had his answer before Dumbledore could reply the wandlight had slid over a fresh patch of water and showed him this time a dead man lying faceup inches beneath the surface his open eyes misted as though with cobwebs his hair and his robes swirling around him like smoke .There are bodies in here !said Harry and his voice sounded much higher than usual and most unlike his own .Yes said Dumbledore placidly but we do not need to worry about them at the moment .At the moment ?Harry repeated tearing his gaze from the water to look at Dumbledore .Not while they are merely drifting peacefully below us said Dumbledore .There is nothing to be feared from a body Harry any more than there is anything to be feared from the darkness .Lord Voldemort who of course secretly fears both disagrees .But once again he reveals his own lack of wisdom .It is the unknown we fear when we look upon death and darkness nothing more .Harry said nothing he did not want to argue but he found the idea that there were bodies floating around them and beneath them horrible and what was more he did not believe that they were not dangerous .But one of them jumped he said trying to make his voice as level and calm as Dumbledore s .When I tried to Summon the Horcrux a body leapt out of the lake .Yes said Dumbledore .I am sure that once we take the Horcrux we shall find them less peaceable .However like many creatures that dwell in cold and darkness they fear light and warmth which we shall therefore call to our aid should the need arise .Fire Harry Dumbledore added with a smile in response to Harrys bewildered expression .Oh .right .said Harry quickly .He turned his head to look at the greenish glow toward which the boat was still inexorably sailing .He could not pretend now that he was not scared .The great black lake teeming with the dead .It seemed hours and hours ago that he had met Professor Trelawney that he had given Ron and Hermione Felix Felicis .He suddenly wished he had said a better goodbye to them .and he hadnt seen Ginny at all .Nearly there said Dumbledore cheerfully .Sure enough the greenish light seemed to be growing larger at last and within minutes the boat had come to a halt bumping gently into something that Harry could not see at first but when he raised his illuminated wand he saw that they had reached a small island of smooth rock in the center of the lake .Careful not to touch the water said Dumbledore again as Harry climbed out of the boat .The island was no larger than Dumbledore s office an expanse of flat dark stone on which stood nothing but the source of that greenish light which looked much brighter when viewed close to .Harry squinted at it at first he thought it was a lamp of some kind but then he saw that the light was coming from a stone basin rather like the Pensieve which was set on top of a pedestal .Dumbledore approached the basin and Harry followed .Side by side they looked down into it .The basin was full of an emerald liquid emitting that phosphorescent glow .What is it ?asked Harry quietly .I am not sure said Dumbledore .Something more worrisome than blood and bodies however .Dumbledore pushed back the sleeve of his robe over his blackened hand and stretched out the tips of his burned fingers toward the surface of the potion .Sir no dont touch !I cannot touch said Dumbledore smiling faintly .See ?I cannot approach any nearer than this .You try .Staring Harry put his hand into the basin and attempted to touch the potion .He met an invisible barrier that prevented him coming within an inch of it .No matter how hard he pushed his fingers encountered nothing but what seemed to be solid and inflexible air .Out of the way please Harry said Dumbledore .He raised his wand and made complicated movements over the surface of the potion murmuring soundlessly .Nothing happened except perhaps that the potion glowed a little brighter .Harry remained silent while Dumbledore worked but after a while Dumbledore withdrew his wand and Harry felt it was safe to talk again .You think the Horcrux is in there sir ?Oh yes .Dumbledore peered more closely into the basin .Harry saw his face reflected upside down in the smooth surface of the green potion .But how to reach it ?This potion cannot be penetrated by hand Vanished parted scooped up or siphoned away nor can it be Transfigured Charmed or otherwise made to change its nature .Almost absentmindedly Dumbledore raised his wand again twirled it once in midair and then caught the crystal goblet that he had conjured out of nowhere .I can only conclude that this potion is supposed to be drunk .What ?said Harry .No !Yes I think so Only by drinking it can I empty the basin and see what lies in its depths .But what if what if it kills you ?Oh I doubt that it would work like that said Dumbledore easily .Lord Voldemort would not want to kill the person who reached this island .Harry couldnt believe it .Was this more of Dumbledore s insane determination to see good in everyone ?Sir said Harry trying to keep his voice reasonable sir this is Voldemort were Im sorry Harry I should have said he would not want to immediately kill the person who reached this island Dumbledore corrected himself .He would want to keep them alive long enough to find out how they managed to penetrate so far through his defenses and most importantly of all why they were so intent upon emptying the basin .Do not forget that Lord Voldemort believes that he alone knows about his Horcruxes .Harry made to speak again but this time Dumbledore raised his hand for silence frowning slightly at the emerald liquid evidently thinking hard .Undoubtedly he said finally this potion must act in a way that will prevent me taking the Horcrux .It might paralyze me cause me to forget what I am here for create so much pain I am distracted or render me incapable in some other way .This being the case Harry it will be your job to make sure I keep drinking even if you have to tip the potion into my protesting mouth .You understand ?Their eyes met over the basin each pale face lit with that strange green light .Harry did not speak .Was this why he had been invited along so that he could forcefeed Dumbledore a potion that might cause him unendurable pain ?You remember said Dumbledore the condition on which I brought you with me ?Harry hesitated looking into the blue eyes that had turned green in the reflected light of the basin .But what if ?You swore did you not to follow any command I gave you ?Yes but I warned you did I not that there might be danger ?Yes said Harry but Well then said Dumbledore shaking back his sleeves once more and raising the empty goblet you have my orders .Why cant I drink the potion instead ?asked Harry desperately .Because I am much older much cleverer and much less valuable said Dumbledore .Once and for all Harry do I have your word that you will do all in your power to make me keep drinking ?Couldnt ?Do I have it ?But Your word Harry .I all right but Before Harry could make any further protest Dumbledore lowered the crystal goblet into the potion .For a split second Harry hoped that he would not be able to touch the potion with the goblet but the crystal sank into the surface as nothing else had when the glass was full to the brim Dumbledore lifted it to his mouth .Your good health Harry .And he drained the goblet .Harry watched terrified his hands gripping the rim of the basin so hard that his fingertips were numb .Professor ?he said anxiously as Dumbledore lowered the empty glass .How do you feel ?Dumbledore shook his head his eyes closed .Harry wondered whether he was in pain .Dumbledore plunged the glass blindly back into the basin refilled it and drank once more .In silence Dumbledore drank three gobletsful of the potion .Then halfway through the fourth goblet he staggered and fell forward against the basin .His eyes were still closed his breathing heavy .Professor Dumbledore ?said Harry his voice strained .Can you hear me ?Dumbledore did not answer .His face was twitching as though he was deeply asleep but dreaming a horrible dream .His grip on the goblet was slackening the potion was about to spill from it .Harry reached forward and grasped the crystal cup holding it steady .Professor can you hear me ?he repeated loudly his voice echoing around the cavern .Dumbledore panted and then spoke in a voice Harry did not recognize for he had never heard Dumbledore frightened like this .I dont want .Dont make me .Harry stared into the whitened face he knew so well at the crooked nose and halfmoon spectacles and did not know what to do . .dont like .want to stop .moaned Dumbledore .You .you cant stop Professor said Harry .Youve got to keep drinking remember ?You told me you had to keep drinking .Here .Hating himself repulsed by what he was doing Harry forced the goblet back toward Dumbledore s mouth and tipped it so that Dumbledore drank the remainder of the potion inside .No .he groaned as Harry lowered the goblet back into the basin and refilled it for him .I dont want to . .I dont want to .Let me go .Its all right Professor said Harry his hand shaking .Its all right Im here Make it stop make it stop moaned Dumbledore .Yes .yes thisll make it stop lied Harry .He tipped the contents of the goblet into Dumbledore s open mouth .Dumbledore screamed the noise echoed all around the vast chamber across the dead black water .No no no no I cant I cant dont make me I dont want to .Its all right Professor its all right !said Harry loudly his hands shaking so badly he could hardly scoop up the sixth gobletful of potion the basin was now half empty .Nothings happening to you youre safe it isnt real I swear it isnt real take this now take this .And obediently Dumbledore drank as though it was an antidote Harry offered him but upon draining the goblet he sank to his knees shaking uncontrollably .Its all my fault all my fault he sobbed .Please make it stop I know I did wrong oh please make it stop and Ill never never again .This will make it stop Professor Harry said his voice cracking as he tipped the seventh glass of potion into Dumbledores mouth .Dumbledore began to cower as though invisible torturers surrounded him his flailing hand almost knocked the refilled goblet from Harrys trembling hands as he moaned Dont hurt them dont hurt them please please its my fault hurt me instead .Here drink this drink this youll be all right said Harry desperately and once again Dumbledore obeyed him opening his mouth even as he kept his eyes tight shut and shook from head to foot .And now he fell forward screaming again hammering his fists upon the ground while Harry filled the ninth goblet .Please please please no .not that not that Ill do anything .Just drink Professor just drink .Dumbledore drank like a child dying of thirst but when he had finished he yelled again as though his insides were on fire .No more please no more .Harry scooped up a tenth gobletful of potion and felt the crystal scrape the bottom of the basin .Were nearly there Professor .Drink this drink it .He supported Dumbledores shoulders and again Dumbledore drained the glass then Harry was on his feet once more refilling the goblet as Dumbledore began to scream in more anguish than ever I want to die !I want to die !Make it stop make it stop I want to die !Drink this Professor .Drink this .Dumbledore drank and no sooner had he finished than he yelled KILL ME !This this one will !gasped Harry .Just drink this .Itll be over .all over !Dumbledore gulped at the goblet drained every last drop and then with a great rattling gasp rolled over onto his face .No !shouted Harry who had stood to refill the goblet again instead he dropped the cup into the basin flung himself down beside Dumbledore and heaved him over onto his back Dumbledores glasses were askew his mouth agape his eyes closed .No said Harry shaking Dumbledore no youre not dead you said it wasnt poison wake up wake up Rennervatel he cried his wand pointing at Dumbledores chest there was a flash of red light but nothing happened .Renneruate sir please Dumbledores eyelids flickered Harrys heart leapt .Sir are you ?Water croaked Dumbledore .Water panted Harry .Yes He leapt to his feet and seized the goblet he had dropped in the basin he barely registered the golden locket lying curled beneath it .Aguamenti he shouted jabbing the goblet with his wand .The goblet filled with clear water Harry dropped to his knees beside Dumbledore raised his head and brought the glass to his lips but it was empty .Dumbledore groaned and began to pant .But I had some wait AguamentiV said Harry again pointing his wand at the goblet .Once more for a second clear water gleamed within it but as he approached Dumbledore s mouth the water vanished again .Sir Im trying Im trying !said Harry desperately but he did not think that Dumbledore could hear him he had rolled onto his side and was drawing great rattling breaths that sounded agonizing .Aguamenti Aguamenti A GUAMENTP .The goblet filled and emptied once more .And now Dumbledore s breathing was fading .His brain whirling in panic Harry knew instinctively the only way left to get water because Voldemort had planned it so .He flung himself over to the edge of the rock and plunged the goblet into the lake bringing it up full to the brim of icy water that did not vanish .Sir here !Harry yelled and lunging forward he tipped the water clumsily over Dumbledores face .It was the best he could do for the icy feeling on his arm not holding the cup was not the lingering chill of the water .A slimy white hand had gripped his wrist and the creature to whom it belonged was pulling him slowly backward across the rock .The surface of the lake was no longer mirrorsmooth it was churning and everywhere Harry looked white heads and hands were emerging from the dark water men and women and children with sunken sightless eyes were moving toward the rock an army of the dead rising from the black water .Petrificus Totalusl yelled Harry struggling to cling to the smooth soaked surface of the island as he pointed his wand at the Inferius that had his arm It released him falling backward into the water with a splash he scrambled to his feet but many more Inferi were already climbing onto the rock their bony hands clawing at its slippery surface their blank frosted eyes upon him trailing waterlogged rags sunken faces leering .Petrificus Totalusl Harry bellowed again backing away as he swiped his wand through the air six or seven of them crumpled but more were coming toward him .Impedimental Incarcerousl A few of them stumbled one or two of them bound in ropes but those climbing onto the rock behind them merely stepped over or on the fallen bodies .Still slashing at the air with his wand Harry yelled Sectumsempral SECTUMSEMPRAl But though gashes appeared in their sodden rags and their icy skin they had no blood to spill They walked on unfeeling their shrunken hands outstretched toward him and as he backed away still farther he felt arms enclose him from behind thin fleshless arms cold as death and his feet left the ground as they lifted him and began to carry him slowly and surely back to the water and he knew there would be no release that he would be drowned and become one more dead guardian of a fragment of Voldemorts shattered soul .But then through the darkness fire erupted crimson and gold a ring of fire that surrounded the rock so that the Inferi holding Harry so tightly stumbled and faltered they did not dare pass through the flames to get to the water .They dropped Harry he hit the ground slipped on the rock and fell grazing his arms but scrambled back up raising his wand and staring around .Dumbledore was on his feet again pale as any of the surrounding Inferi but taller than any too the fire dancing in his eyes his wand was raised like a torch and from its tip emanated the flames like a vast lasso encircling them all with warmth .The Inferi bumped into each other attempting blindly to escape the fire in which they were enclosed .Dumbledore scooped the locket from the bottom of the stone basin and stowed it inside his robes .Wordlessly he gestured to Harry to come to his side .Distracted by the flames the Inferi seemed unaware that their quarry was leaving as Dumbledore led Harry back to the boat the ring of fire moving with them around them the bewildered Inferi accompanying them to the waters edge where they slipped gratefully back into their dark waters .Harry who was shaking all over thought for a moment that Dumbledore might not be able to climb into the boat he staggered a little as he attempted it all his efforts seemed to be going into maintaining the ring of protective flame around them .Harry seized him and helped him back to his seat .Once they were both safely jammed inside again the boat began to move back across the black water away from the rock still encircled by that ring of fire and it seemed that the Inferi swarming below them did not dare resurface .Sir panted Harry sir I forgot about fire they were coming at me and I panicked Quite understandable murmured Dumbledore .Harry was alarmed to hear how faint his voice was .They reached the bank with a little bump and Harry leapt out then turned quickly to help Dumbledore .The moment that Dumbledore reached the bank he let his wand hand fall the ring of fire vanished but the Inferi did not emerge again from the water .The little boat sank into the water once more clanking and tinkling its chain slithered back into the lake too .Dumbledore gave a great sigh and leaned against the cavern wall .I am weak .he said .Dont worry sir said Harry at once anxious about Dumbledore s extreme pallor and by his air of exhaustion .Dont worry Ill get us back .Lean on me sir .And pulling Dumbledore s uninjured arm around his shoulders Harry guided his headmaster back around the lake bearing most of his weight .The protection was .after all .welldesigned said Dumbledore faintly .One alone could not have done it .You did well very well Harry .Dont talk now said Harry fearing how slurred Dumbledores voice had become how much his feet dragged .Save your energy sir .Well soon be out of here .The archway will have sealed again .My knife .Theres no need I got cut on the rock said Harry firmly .Just tell me where .Here .Harry wiped his grazed forearm upon the stone Having received its tribute of blood the archway reopened instantly .They crossed the outer cave and Harry helped Dumbledore back into the icy seawater that filled the crevice in the cliff .Its going to be all right sir Harry said over and over again more worried by Dumbledores silence than he had been by his weakened voice .Were nearly there .I can Apparate us both back .Dont worry .I am not worried Harry said Dumbledore his voice a little stronger despite the freezing water .I am with you .THE LIGHTNINGSTRUCK TOWER Once back under the starry sky Harry heaved Dumbledore onto the top of the nearest boulder and then to his feet .Sodden and shivering Dumbledores weight still upon him Harry concentrated harder than he had ever done upon his destination Hogsmeade .Closing his eyes gripping Dumbledores arm as tightly as he could he stepped forward into that feeling of horrible compression .He knew it had worked before he opened his eyes The smell of salt the sea breeze had gone .He and Dumbledore were shivering and dripping in the middle of the dark High Street in Hogsmeade .For one horrible moment Harrys imagination showed him more Inferi creeping toward him around the sides of shops but he blinked and saw that nothing was stirring all was still the darkness complete but for a few streetlamps and lit upper windows .We did it Professor !Harry whispered with difficulty he suddenly realized that he had a searing stitch in his chest .We did it !We got the Horcrux !Dumbledore staggered against him .For a moment Harry thought that his inexpert Apparition had thrown Dumbledore off balance then he saw his face paler and damper than ever in the distant light of a streetlamp .Sir are you all right ?Ive been better said Dumbledore weakly though the corners of his mouth twitched .That potion .was no health drink .And to Harrys horror Dumbledore sank onto the ground .Sir its okay sir youre going to be all right dont worry He looked around desperately for help but there was nobody to be seen and all he could think was that he must somehow get Dumbledore quickly to the hospital wing .We need to get you up to the school sir .Madam Pomfrey .No said Dumbledore .It is .Professor Snape whom I need .But I do not think .I can walk very far just yet .Right sir listen Im going to knock on a door find a place you can stay then I can run and get Madam Severus said Dumbledore clearly .I need Severus .All right then Snape but Im going to have to leave you for a moment so I can Before Harry could make a move however he heard running footsteps .His heart leapt Somebody had seen somebody knew they needed help and looking around he saw Madam Rosmerta scurrying down the dark street toward them on highheeled fluffy slippers wearing a silk dressing gown embroidered with dragons .I saw you Apparate as I was pulling my bedroom curtains !Thank goodness thank goodness I couldnt think what to but whats wrong with Albus ?She came to a halt panting and stared down wide eyed at Dumbledore .Hes hurt said Harry .Madam Rosmerta can he come into the Three Broomsticks while I go up to the school and get help for him ?You cant go up there alone !Dont you realize havent you seen ?If you help me support him said Harry not listening to her I think we can get him inside What has happened ?asked Dumbledore .Rosmerta whats wrong ?The the Dark Mark Albus .And she pointed into the sky in the direction of Hogwarts .Dread flooded Harry at the sound of the words .He turned and looked .There it was hanging in the sky above the school the blazing green skull with a serpent tongue the mark Death Eaters left behind whenever they had entered a building .wherever they had murdered .When did it appear ?asked Dumbledore and his hand clenched painfully upon Harrys shoulder as he struggled to his feet .Must have been minutes ago it wasnt there when I put the cat out but when I got upstairs We need to return to the castle at once said Dumbledore .Rosmerta and though he staggered a little he seemed wholly in command of the situation we need transport brooms Ive got a couple behind the bar she said looking very frightened .Shall I run and fetch ?No Harry can do it .Harry raised his wand at once .Accio Rosmertas Broomsl A second later they heard a loud bang as the front door of the pub burst open two brooms had shot out into the street and were racing each other to Harrys side where they stopped dead quivering slightly at waist height .Rosmerta please send a message to the Ministry said Dumbledore as he mounted the broom nearest him .It might be that nobody within Hogwarts has yet realized anything is wrong .Harry put on your Invisibility Cloak .Harry pulled his Cloak out of his pocket and threw it over himself before mounting his broom Madam Rosmerta was already tottering back toward her pub as Harry and Dumbledore kicked off from the ground and rose up into the air .As they sped toward the castle Harry glanced sideways at Dumbledore ready to grab him should he fall but the sight of the Dark Mark seemed to have acted upon Dumbledore like a stimulant He was bent low over his broom his eyes fixed upon the Mark his long silver hair and beard flying behind him on the night air .And Harry too looked ahead at the skull and fear swelled inside him like a venomous bubble compressing his lungs driving all other discomfort from his mind .How long had they been away ?Had Ron Hermione and Ginnys luck run out by now ?Was it one of them who had caused the Mark to be set over the school or was it Neville or Luna or some other member of the D .A .And if it was .he was the one who had told them to patrol the corridors he had asked them to leave the safety of their beds .Would he be responsible again for the death of a friend ?As they flew over the dark twisting lane down which they had walked earlier Harry heard over the whistling of the night air in his ears Dumbledore muttering in some strange language again .He thought he understood why as he felt his broom shudder when they flew over the boundary wall into the grounds Dumbledore was undoing the enchantments he himself had set around the castle so they could enter at speed .The Dark Mark was glittering directly above the Astronomy Tower the highest of the castle .Did that mean the death had occurred there ?Dumbledore had already crossed the crenellated ramparts and was dismounting Harry landed next to him seconds later and looked around .The ramparts were deserted .The door to the spiral staircase that led back into the castle was closed .There was no sign of a struggle of a fight to the death of a body .What does it mean ?Harry asked Dumbledore looking up at the green skull with its serpents tongue glinting evilly above them .Is it the real Mark ?Has someone definitely been Professor ?In the dim green glow from the Mark Harry saw Dumbledore clutching at his chest with his blackened hand .Go and wake Severus said Dumbledore faintly but clearly .Tell him what has happened and bring him to me .Do nothing else speak to nobody else and do not remove your cloak .I shall wait here .But You swore to obey me Harry go !Harry hurried over to the door leading to the spiral staircase but his hand had only just closed upon the iron ring of the door when he heard running footsteps on the other side .He looked around at Dumbledore who gestured him to retreat .Harry backed away drawing his wand as he did so .The door burst open and somebody erupted through it and shouted Expelliarmus Harrys body became instantly rigid and immobile and he felt himself fall back against the tower wall propped like an unsteady statue unable to move or speak .He could not understand how it had happened Expelliarmus was not a Freezing Charm Then by the light of the Mark he saw Dumbledore s wand flying in an arc over the edge of the ramparts and understood .Dumbledore had wordlessly immobilized Harry and the second he had taken to perform the spell had cost him the chance of defending himself .Standing against the ramparts very white in the face Dumbledore still showed no sign of panic or distress .He merely looked across at his disarmer and said Good evening Draco .Malfoy stepped forward glancing around quickly to check that he and Dumbledore were alone .His eyes fell upon the second broom .Who else is here ?A question I might ask you .Or are you acting alone ?Harry saw Malfoys pale eyes shift back to Dumbledore in the greenish glare of the Mark .No he said .Ive got backup .There are Death Eaters here in your school tonight .Well well said Dumbledore as though Malfoy was showing him an ambitious homework project .Very good indeed .You found a way to let them in did you ?Yeah said Malfoy who was panting .Right under your nose and you never realized !Ingenious said Dumbledore .Yet .forgive me .where are they now ?You seem unsupported .They met some of your guards .Theyre having a fight down below .They wont be long .I came on ahead .I Ive got a job to do .Well then you must get on and do it my dear boy said Dumbledore softly .There was silence .Harry stood imprisoned within his own invisible paralyzed body staring at the two of them his ears straining to hear sounds of the Death Eaters distant fight and in front of him Draco Malfoy did nothing but stare at Albus Dumbledore who incredibly smiled .Draco Draco you are not a killer .How do you know ?said Malfoy at once .He seemed to realize how childish the words had sounded Harry saw him flush in the Marks greenish light .You dont know what Im capable of said Malfoy more forcefully .You dont know what Ive done !Oh yes I do said Dumbledore mildly .You almost killed Katie Bell and Ronald Weasley .You have been trying with increasing desperation to kill me all year .Forgive me Draco but they have been feeble attempts .So feeble to be honest that I wonder whether your heart has been really in it .It has been in it !said Malfoy vehemently .Ive been working on it all year and tonight Somewhere in the depths of the castle below Harry heard a muffled yell .Malfoy stiffened and glanced over his shoulder .Somebody is putting up a good fight said Dumbledore conversationally .But you were saying .yes you have managed to introduce Death Eaters into my school which I admit I thought impossible . .How did you do it ?But Malfoy said nothing He was still listening to whatever was happening below and seemed almost as paralyzed as Harry was .Perhaps you ought to get on with the job alone suggested Dumbledore .What if your backup has been thwarted by my guard ?As you have perhaps realized there are members of the Order of the Phoenix here tonight too .And after all you dont really need help .I have no wand at the moment .I cannot defend myself .Malfoy merely stared at him .I see said Dumbledore kindly when Malfoy neither moved nor spoke .You are afraid to act until they join you .Im not afraid !snarled Malfoy though he still made no move to hurt Dumbledore .Its you who should be scared !But why ?I dont think you will kill me Draco .Killing is not nearly as easy as the innocent believe .So tell me while we wait for your friends .how did you smuggle them in here ?It seems to have taken you a long time to work out how to do it .Malfoy looked as though he was fighting down the urge to shout or to vomit .He gulped and took several deep breaths glaring at Dumbledore his wand pointing directly at the latters heart .Then as though he could not help himself he said I had to mend that broken Vanishing Cabinet that no ones used for years .The one Montague got lost in last year .aah .Dumbledores sigh was half a groan .He closed his eyes for a moment .That was clever .There is a pair I take it ?In Borgin and Burkes said Malfoy and they make a kind of passage between them .Montague told me that when he was stuck in the Hogwarts one he was trapped in limbo but sometimes he could hear what was going on at school and sometimes what was going on in the shop as if the cabinet was traveling between them but he couldnt make anyone hear him .In the end he managed to Apparate out even though hed never passed his test .He nearly died doing it .Everyone thought it was a really good story but I was the only one who realized what it meant even Borgin didnt know I was the one who realized there could be a way into Hogwarts through the cabinets if I fixed the broken one .Very good murmured Dumbledore .So the Death Eaters were able to pass from Borgin and Burkes into the school to help you .A clever plan a very clever plan .and as you say right under my nose .Yeah said Malfoy who bizarrely seemed to draw courage and comfort from Dumbledores praise .Yeah it was !But there were times Dumbledore went on werent there when you were not sure you would succeed in mending the cabinet ?And you resorted to crude and badly judged measures such as sending me a cursed necklace that was bound to reach the wrong hands .poisoning mead there was only the slightest chance I might drink .Yeah well you still didnt realize who was behind that stuff did you ?sneered Malfoy as Dumbledore slid a little down the ramparts the strength in his legs apparently fading and Harry struggled fruitlessly mutely against the enchantment binding him .As a matter of fact I did said Dumbledore .I was sure it was you .Why didnt you stop me then ?Malfoy demanded .I tried Draco .Professor Snape has been keeping watch over you on my orders He hasnt been doing your orders he promised my mother Of course that is what he would tell you Draco but Hes a double agent you stupid old man he isnt working for you you just think he is !We must agree to differ on that Draco .It so happens that I trust Professor Snape Well youre losing your grip then !sneered Malfoy .Hes been offering me plenty of help wanting all the glory for himself wanting a bit of the action What are you doing ? ‘Did you do the necklace that was stupid it could have blown everything But I havent told him what Ive been doing in the Room of Requirement hes going to wake up tomorrow and itll all be over and he wont be the Dark Lords favorite anymore hell be nothing compared to me nothing !Very gratifying said Dumbledore mildly .We all like appreciation for our own hard work of course .But you must have had an accomplice all the same .someone in Hogsmeade someone who was able to slip Katie the the aah .Dumbledore closed his eyes again and nodded as though he was about to fall asleep .of course .Rosmerta .How long has she been under the Imperius Curse ?Got there at last have you ?Malfoy taunted .There was another yell from below rather louder than the last .Malfoy looked nervously over his shoulder again then back at Dumbledore who went on So poor Rosmerta was forced to lurk in her own bathroom and pass that necklace to any Hogwarts student who entered the room unaccompanied ?And the poisoned mead .well naturally Rosmerta was able to poison it for you before she sent the bottle to Slughorn believing that it was to be my Christmas present .Yes very neat .very neat .Poor Mr Filch would not of course think to check a bottle of Rosmertas .Tell me how have you been communicating with Rosmerta ?I thought we had all methods of communication in and out of the school monitored .Enchanted coins said Malfoy as though he was compelled to keep talking though his wand hand was shaking badly .I had one and she had the other and I could send her messages Isnt that the secret method of communication the group that called themselves Dumbledore s Army used last year ?asked Dumbledore .His voice was light and conversational but Harry saw him slip an inch lower down the wall as he said it .Yeah I got the idea from them said Malfoy with a twisted smile .I got the idea of poisoning the mead from the Mudblood Granger as well I heard her talking in the library about Filch not recognizing potions .Please do not use that offensive word in front of me said Dumbledore .Malfoy gave a harsh laugh .You care about me saying ‘Mudblood when Im about to kill you ?Yes I do said Dumbledore and Harry saw his feet slide a little on the floor as he struggled to remain upright .But as for being about to kill me Draco you have had several long minutes now we are quite alone I am more defenseless than you can have dreamed of finding me and still you have not acted .Malfoys mouth contorted involuntarily as though he had tasted something very bitter .Now about tonight Dumbledore went on I am a little puzzled about how it happened .You knew that I had left the school ?But of course he answered his own question Rosmerta saw me leaving she tipped you off using your ingenious coins Im sure .Thats right said Malfoy .But she said you were just going for a drink youd be back .Well I certainly did have a drink .and I came back .after a fashion mumbled Dumbledore .So you decided to spring a trap for me ?We decided to put the Dark Mark over the tower and get you to hurry up here to see whod been killed said Malfoy .And it worked !Well .yes and no .said Dumbledore .But am I to take it then that nobody has been murdered ?Someones dead said Malfoy and his voice seemed to go up an octave as he said it .One of your people .I dont know who it was dark .I stepped over the body .I was supposed to be waiting up here when you got back only your Phoenix lot got in the way .Yes they do that said Dumbledore .There was a bang and shouts from below louder than ever it sounded as though people were fighting on the actual spiral staircase that led to where Dumbledore Malfoy and Harry stood and Harrys heart thundered unheard in his invisible chest .Someone was dead . .Malfoy had stepped over the body .but who was it ?There is little time one way or another said Dumbledore .So let us discuss your options Draco .My options !said Malfoy loudly .Im standing here with a wand Im about to kill you My dear boy let us have no more pretense about that .If you were going to kill me you would have done it when you first disarmed me you would not have stopped for this pleasant chat about ways and means .I havent got any options !said Malfoy and he was suddenly white as Dumbledore .Ive got to do it !Hell kill me !Hell kill my whole family !I appreciate the difficulty of your position said Dumbledore .Why else do you think I have not confronted you before now ?Because I knew that you would have been murdered if Lord Voldemort realized that I suspected you .Malfoy winced at the sound of the name .I did not dare speak to you of the mission with which I knew you had been entrusted in case he used Legilimency against you continued Dumbledore .But now at last we can speak plainly to each other . .No harm has been done you have hurt nobody though you are very lucky that your unintentional victims survived .I can help you Draco .No you cant said Malfoy his wand hand shaking very badly indeed .Nobody can .He told me to do it or hell kill me .Ive got no choice .Come over to the right side Draco and we can hide you more completely than you can possibly imagine .What is more I can send members of the Order to your mother tonight to hide her likewise .Your father is safe at the moment in Azkaban .When the time comes we can protect him too .Come over to the right side Draco .you are not a killer .Malfoy stared at Dumbledore .But I got this far didnt I ?he said slowly .They thought Id die in the attempt but Im here .and youre in my power .Im the one with the wand .Youre at my mercy .No Draco said Dumbledore quietly .It is my mercy and not yours that matters now .Malfoy did not speak .His mouth was open his wand hand still trembling .Harry thought he saw it drop by a fraction But suddenly footsteps were thundering up the stairs and a second later Malfoy was buffeted out of the way as four people in black robes burst through the door onto the ramparts .Still paralyzed his eyes staring unblinkingly Harry gazed in terror upon four strangers It seemed the Death Eaters had won the fight below .A lumpylooking man with an odd lopsided leer gave a wheezy giggle .Dumbledore cornered !he said and he turned to a stocky little woman who looked as though she could be his sister and who was grinning eagerly .Dumbledore wandless Dumbledore alone !Well done Draco well done !Good evening Amycus said Dumbledore calmly as though welcoming the man to a tea party .And youve brought Alecto too .Charming .The woman gave an angry little titter .Think your little jokesll help you on your deathbed then ?she jeered .Jokes ?No no these are manners replied Dumbledore .Do it said the stranger standing nearest to Harry a big rangy man with matted gray hair and whiskers whose black Death Eaters robes looked uncomfortably tight .He had a voice like none that Harry had ever heard a rasping bark of a voice .Harry could smell a powerful mixture of dirt sweat and unmistakably of blood coming from him .His filthy hands had long yellowish nails .Is that you Fenrir ?asked Dumbledore .Thats right rasped the other .Pleased to see me Dumbledore ?No I cannot say that I am .Greyback grinned showing pointed teeth .Blood trickled down his chin and he licked his lips slowly obscenely .But you know how much I like kids Dumbledore .Am I to take it that you are attacking even without the full moon now ?This is most unusual .You have developed a taste for human flesh that cannot be satisfied once a month ?Thats right said Fenrir Greyback .Shocks you that does it Dumbledore ?Frightens you ?Well I cannot pretend it does not disgust me a little said Dumbledore .And yes I am a little shocked that Draco here invited you of all people into the school where his friends live .I didnt breathed Malfoy .He was not looking at Fenrir he did not seem to want to even glance at him .I didnt know he was going to come I wouldnt want to miss a trip to Hogwarts Dumbledore rasped Greyback .Not when there are throats to be ripped out .Delicious delicious .And he raised a yellow fingernail and picked at his front teeth leering at Dumbledore .I could do you for afters Dumbledore .No said the fourth Death Eater sharply .He had a heavy brutallooking face .Weve got orders .Dracos got to do it .Now Draco and quickly .Malfoy was showing less resolution than ever .He looked terrified as he stared into Dumbledore s face which was even paler and rather lower than usual as he had slid so far down the rampart wall .Hes not long for this world anyway if you ask me !said the lopsided man to the accompaniment of his sisters wheezing giggles .Look at him whats happened to you then Dumby ?Oh weaker resistance slower reflexes Amycus said Dumbledore .Old age in short .One day perhaps it will happen to you .if you are lucky .Whats that mean then whats that mean ?yelled the Death Eater suddenly violent .Always the same werent yeh Dumby talking and doing nothing nothing .I dont even know why the Dark Lords bothering to kill yer !Come on Draco do it !But at that moment there were renewed sounds of scuffling from below and a voice shouted Theyve blocked the stairs Reductol REDUCTOl Harrys heart leapt So these four had not eliminated all opposition but merely broken through the fight to the top of the tower and by the sound of it created a barrier behind them Now Draco quickly !said the brutalfaced man angrily .But Malfoys hand was shaking so badly that he could barely aim .Ill do it snarled Fenrir moving toward Dumbledore with his hands outstretched his teeth bared .I said no !shouted the brutalfaced man there was a flash of light and the werewolf was blasted out of the way he hit the ramparts and staggered looking furious .Harrys heart was hammering so hard it seemed impossible that nobody could hear him standing there imprisoned by Dumbledore s spell if he could only move he could aim a curse from under the cloak Draco do it or stand aside so one of us screeched the woman but at that precise moment the door to the ramparts burst open once more and there stood Snape his wand clutched in his hand as his black eyes swept the scene from Dumbledore slumped against the wall to the four Death Eaters including the enraged werewolf and Malfoy .Weve got a problem Snape said the lumpy Amycus whose eyes and wand were fixed alike upon Dumbledore the boy doesnt seem able But somebody else had spoken Snapes name quite softly .Severus .The sound frightened Harry beyond anything he had experienced all evening .For the first time Dumbledore was pleading .Snape said nothing but walked forward and pushed Malfoy roughly out of the way .The three Death Eaters fell back without a word .Even the werewolf seemed cowed .Snape gazed for a moment at Dumbledore and there was revulsion and hatred etched in the harsh lines of his face .Severus .please .Snape raised his wand and pointed it directly at Dumbledore .Avada KedavraV A jet of green light shot from the end of Snapes wand and hit Dumbledore squarely in the chest .Harrys scream of horror never left him silent and unmoving he was forced to watch as Dumbledore was blasted into the air .For a split second he seemed to hang suspended beneath the shining skull and then he fell slowly backward like a great rag doll over the battlements and out of sight .FLIGHT OF THE PRINCE Harry felt as though he too were hurtling through space it had not happened .It could not have happened .Out of here quickly said Snape .He seized Malfoy by the scruff of the neck and forced him through the door ahead of the rest Greyback and the squat brother and sister followed the latter both panting excitedly .As they vanished through the door Harry realized he could move again .What was now holding him paralyzed against the wall was not magic but horror and shock .He threw the Invisibility Cloak aside as the brutalfaced Death Eater last to leave the tower top was disappearing through the door .Petrificus Totalusl The Death Eater buckled as though hit in the back with something solid and fell to the ground rigid as a waxwork but he had barely hit the floor when Harry was clambering over him and running down the darkened staircase .Terror tore at Harrys heart .He had to get to Dumbledore and he had to catch Snape .Somehow the two things were linked .He could reverse what had happened if he had them both together .Dumbledore could not have died .He leapt the last ten steps of the spiral staircase and stopped where he landed his wand raised The dimly lit corridor was full of dust half the ceiling seemed to have fallen in and a battle was raging before him but even as he attempted to make out who was fighting whom he heard the hated voice shout Its over time to go and saw Snape disappearing around the corner at the far end of the corridor he and Malfoy seemed to have forced their way through the fight unscathed .As Harry plunged after them one of the fighters detached themselves from the fray and flew at him It was the werewolf Fenrir .He was on top of Harry before Harry could raise his wand Harry fell backward with filthy matted hair in his face the stench of sweat and blood filling his nose and mouth hot greedy breath at his throat Petrificus Totalusl Harry felt Fenrir collapse against him with a stupendous effort he pushed the werewolf off and onto the floor as a jet of green light came flying toward him he ducked and ran headfirst into the fight .His feet met something squashy and slippery on the floor and he stumbled There were two bodies lying there lying facedown in a pool of blood but there was no time to investigate .Harry now saw red hair flying like flames in front of him Ginny was locked in combat with the lumpy Death Eater Amycus who was throwing hex after hex at her while she dodged them Amycus was giggling enjoying the sport Crucio Crucio you cant dance forever pretty Impedimenta .yelled Harry .His jinx hit Amycus in the chest He gave a piglike squeal of pain was lifted off his feet and slammed into the opposite wall slid down it and fell out of sight behind Ron Professor McGonagall and Lupin each of whom was battling a separate Death Eater .Beyond them Harry saw Tonks fighting an enormous blond wizard who was sending curses flying in all directions so that they ricocheted off the walls around them cracking stone shattering the nearest window Harry where did you come from ?Ginny cried but there was no time to answer her .He put his head down and sprinted forward narrowly avoiding a blast that erupted over his head showering them all in bits of wall .Snape must not escape he must catch up with Snape Take that shouted Professor McGonagall and Harry glimpsed the female Death Eater Alecto sprinting away down the corridor with her arms over her head her brother right behind her .He launched himself after them but his foot caught on something and next moment he was lying across someones legs .Looking around he saw Nevilles pale round face flat against the floor .Neville are you ?Mall right muttered Neville who was clutching his stomach Harry .Snape n Malfoy .ran past .I know Im on it !said Harry aiming a hex from the floor at the enormous blond Death Eater who was causing most of the chaos .The man gave a howl of pain as the spell hit him in the face He wheeled around staggered and then pounded away after the brother and sister .Harry scrambled up from the floor and began to sprint along the corridor ignoring the bangs issuing from behind him the yells of the others to come back and the mute call of the figures on the ground whose fate he did not yet know .He skidded around the corner his trainers slippery with blood Snape had an immense head start .Was it possible that he had already entered the cabinet in the Room of Requirement or had the Order made steps to secure it to prevent the Death Eaters retreating that way ?He could hear nothing but his own pounding feet his own hammering heart as he sprinted along the next empty corridor but then spotted a bloody footprint that showed at least one of the fleeing Death Eaters was heading toward the front doors perhaps the Room of Requirement was indeed blocked He skidded around another corner and a curse flew past him he dived behind a suit of armor that exploded .He saw the brother and sister running down the marble staircase ahead and aimed jinxes at them but merely hit several bewigged witches in a portrait on the landing who ran screeching into neighboring paintings .As he leapt the wreckage of armor Harry heard more shouts and screams other people within the castle seemed to have awoken .He pelted toward a shortcut hoping to overtake the brother and sister and close in on Snape and Malfoy who must surely have reached the grounds by now .Remembering to leap the vanishing step halfway down the concealed staircase he burst through a tapestry at the bottom and out into a corridor where a number of bewildered and pajamaclad Hufflepuffs stood .Harry !We heard a noise and someone said something about the Dark Mark began Ernie Macmillan .Out of the way !yelled Harry knocking two boys aside as he sprinted toward the landing and down the remainder of the marble staircase .The oak front doors had been blasted open there were smears of blood on the flagstones and several terrified students stood huddled against the walls one or two still cowering with their arms over their faces .The giant Gryffindor hourglass had been hit by a curse and the rubies within were still falling with a loud rattle onto the flagstones below .Harry flew across the entrance hall and out into the dark grounds He could just make out three figures racing across the lawn heading for the gates beyond which they could Disapparate by the looks of them the huge blond Death Eater and some way ahead of him Snape and Malfoy .The cold night air ripped at Harrys lungs as he tore after them he saw a flash of light in the distance that momentarily silhouetted his quarry .He did not know what it was but continued to run not yet near enough to get a good aim with a curse Another flash shouts retaliatory jets of light and Harry understood Hagrid had emerged from his cabin and was trying to stop the Death Eaters escaping and though every breath seemed to shred his lungs and the stitch in his chest was like fire Harry sped up as an unbidden voice in his head said not Hagrid .not Hagrid too .Something caught Harry hard in the small of the back and he fell forward his face smacking the ground blood pouring out of both nostrils He knew even as he rolled over his wand ready that the brother and sister he had overtaken using his shortcut were closing in behind him .Impedimenta .he yelled as he rolled over again crouching close to the dark ground and miraculously his jinx hit one of them who stumbled and fell tripping up the other Harry leapt to his feet and sprinted on after Snape .And now he saw the vast outline of Hagrid illuminated by the light of the crescent moon revealed suddenly behind clouds the blond Death Eater was aiming curse after curse at the gamekeeper but Hagrids immense strength and the toughened skin he had inherited from his giantess mother seemed to be protecting him .Snape and Malfoy however were still running they would soon be beyond the gates able to Disapparate Harry tore past Hagrid and his opponent took aim at Snapes back and yelled Stupefy He missed the jet of red light soared past Snapes head Snape shouted Run Draco and turned .Twenty yards apart he and Harry looked at each other before raising their wands simultaneously .Cruc But Snape parried the curse knocking Harry backward off his feet before he could complete it Harry rolled over and scrambled back up again as the huge Death Eater behind him yelled Incendiol Harry heard an explosive bang and a dancing orange light spilled over all of them Hagrids house was on fire .Fangs in there yer evil !Hagrid bellowed .Cruc yelled Harry for the second time aiming for the figure ahead illuminated in the dancing firelight but Snape blocked the spell again .Harry could see him sneering .No Unforgivable Curses from you Potter !he shouted over the rushing of the flames Hagrids yells and the wild yelping of the trapped Fang .You havent got the nerve or the ability Incarc Harry roared but Snape deflected the spell with an almost lazy flick of his arm .Fight back !Harry screamed at him .Fight back you cowardly Coward did you call me Potter ?shouted Snape .Your father would never attack me unless it was four on one what would you call him I wonder ?Stupe Blocked again and again and again until you learn to keep your mouth shut and your mind closed Potter !sneered Snape deflecting the curse once more .Now come !he shouted at the huge Death Eater behind Harry .It is time to be gone before the Ministry turns up Impedi But before he could finish this jinx excruciating pain hit Harry he keeled over in the grass .Someone was screaming he would surely die of this agony Snape was going to torture him to death or madness No !roared Snapes voice and the pain stopped as suddenly as it had started Harry lay curled on the dark grass clutching his wand and panting somewhere overhead Snape was shouting Have you forgotten our orders ?Potter belongs to the Dark Lord we are to leave him !Go !Go !And Harry felt the ground shudder under his face as the brother and sister and the enormous Death Eater obeyed running toward the gates .Harry uttered an inarticulate yell of rage In that instant he cared not whether he lived or died .Pushing himself to his feet again he staggered blindly toward Snape the man he now hated as much as he hated Voldemort himself Sectum !Snape flicked his wand and the curse was repelled yet again but Harry was mere feet away now and he could see Snapes face clearly at last He was no longer sneering or jeering the blazing flames showed a face full of rage .Mustering all his powers of concentration Harry thought Levi No Potter !screamed Snape .There was a loud BANG and Harry was soaring backward hitting the ground hard again and this time his wand flew out of his hand .He could hear Hagrid yelling and Fang howling as Snape closed in and looked down on him where he lay wandless and defenseless as Dumbledore had been .Snapes pale face illuminated by the flaming cabin was suffused with hatred just as it had been before he had cursed Dumbledore .You dare use my own spells against me Potter ?It was I who invented them I the HalfBlood Prince !And youd turn my inventions on me like your filthy father would you ?I dont think so .no !Harry had dived for his wand Snape shot a hex at it and it flew feet away into the darkness and out of sight .Kill me then panted Harry who felt no fear at all but only rage and contempt .Kill me like you killed him you coward DONT screamed Snape and his face was suddenly demented inhuman as though he was in as much pain as the yelping howling dog stuck in the burning house behind them CALL ME COWARD !And he slashed at the air Harry felt a whitehot whiplike something hit him across the face and was slammed backward into the ground .Spots of light burst in front of his eyes and for a moment all the breath seemed to have gone from his body then he heard a rush of wings above him and something enormous obscured the stars .Buckbeak had flown at Snape who staggered backward as the razorsharp claws slashed at him .As Harry raised himself into a sitting position his head still swimming from its last contact with the ground he saw Snape running as hard as he could the enormous beast flapping behind him and screeching as Harry had never heard him screech Harry struggled to his feet looking around groggily for his wand hoping to give chase again but even as his fingers fumbled in the grass discarding twigs he knew it would be too late and sure enough by the time he had located his wand he turned only to see the hippogriff circling the gates .Snape had managed to Disapparate just beyond the schools boundaries .Hagrid muttered Harry still dazed looking around .HAGRID ?He stumbled toward the burning house as an enormous figure emerged from out of the flames carrying Fang on his back .With a cry of thankfulness Harry sank to his knees he was shaking in every limb his body ached all over and his breath came in painful stabs .Yeh all righ Harry ?Yeh all righ ?Speak ter me Harry .Hagrids huge hairy face was swimming above Harry blocking out the stars .Harry could smell burnt wood and dog hair he put out a hand and felt Fangs reassuringly warm and alive body quivering beside him .Im all right panted Harry .Are you ?Course I am .take moren that ter finish me .Hagrid put his hands under Harrys arms and raised him up with such force that Harrys feet momentarily left the ground before Hagrid set him upright again .He could see blood trickling down Hagrids cheek from a deep cut under one eye which was swelling rapidly .We should put out your house said Harry the charms ‘Aguamenti .Knew it was summat like that mumbled Hagrid and he raised a smoldering pink flowery umbrella and said Aguamenti A jet of water flew out of the umbrella tip .Harry raised his wand arm which felt like lead and murmured Aguamenti too Together he and Hagrid poured water on the house until the last flame was extinguished .Snot too bad said Hagrid hopefully a few minutes later looking at the smoking wreck .Nothin Dumbledore won be able to put righ .Harry felt a searing pain in his stomach at the sound of the name .In the silence and the stillness horror rose inside him .Hagrid .I was bindin up a couple o bowtruckle legs when I heard em cornin said Hagrid sadly still staring at his wrecked cabin .Theyllve bin burnt ter twigs poor little things .Hagrid .But what happened Harry ?I jus saw them Death Eaters runnin down from the castle but what the ruddy hell was Snape doin with em ?Wheres he gone was he chasin them ?He .Harry cleared his throat it was dry from panic and the smoke .Hagrid he killed .Killed ?said Hagrid loudly staring down at Harry .Snape killed ?Whatre yeh on abou Harry ?Dumbledore said Harry .Snape killed .Dumbledore .Hagrid simply looked at him the little of his face that could be seen completely blank uncomprehending .Dumbledore wha Harry ?Hes dead .Snape killed him .Don say that said Hagrid roughly .Snape kill Dumbledore don be stupid Harry .Whas made yeh say tha ?I saw it happen .Yeh couldn have .I saw it Hagrid .Hagrid shook his head his expression was disbelieving but sympathetic and Harry knew that Hagrid thought he had sustained a blow to the head that he was confused perhaps by the aftereffects of a jinx .What musta happened was Dumbledore musta told Snape ter go with them Death Eaters Hagrid said confidently .I suppose hes gotta keep his cover .Look lets get yeh back up ter the school .Come on Harry .Harry did not attempt to argue or explain .He was still shaking uncontrollably .Hagrid would find out soon enough too soon .As they directed their steps back toward the castle Harry saw that many of its windows were lit now .He could imagine clearly the scenes inside as people moved from room to room telling each other that Death Eaters had got in that the Mark was shining over Hogwarts that somebody must have been killed .The oak front doors stood open ahead of them light flooding out onto the drive and the lawn .Slowly uncertainly dressinggowned people were creeping down the steps looking around nervously for some sign of the Death Eaters who had fled into the night .Harrys eyes however were fixed upon the ground at the foot of the tallest tower .He imagined that he could see a black huddled mass lying in the grass there though he was really too far away to see anything of the sort .Even as he stared wordlessly at the place where he thought Dumbledore s body must lie however he saw people beginning to move toward it .Whatre they all lookin at ?said Hagrid as he and Harry approached the castle front Fang keeping as close as he could to their ankles .Whas tha lyin on the grass ?Hagrid added sharply heading now toward the foot of the Astronomy Tower where a small crowd was congregating .See it Harry ?Righ at the foot o the tower ?Under where the Mark .Blimey .yeh don think someone got thrown ?Hagrid fell silent the thought apparently too horrible to express aloud .Harry walked alongside him feeling the aches and pains in his face and his legs where the various hexes of the last half hour had hit him though in an oddly detached way as though somebody near him was suffering them .What was real and inescapable was the awful pressing feeling in his chest .He and Hagrid moved dreamlike through the murmuring crowd to the very front where the dumbstruck students and teachers had left a gap .Harry heard Hagrid s moan of pain and shock but he did not stop he walked slowly forward until he reached the place where Dumbledore lay and crouched down beside him .He had known there was no hope from the moment that the full BodyBind Curse Dumbledore had placed upon him lifted known that it could have happened only because its caster was dead but there was still no preparation for seeing him here spreadeagled broken the greatest wizard Harry had ever or would ever meet .Dumbledores eyes were closed but for the strange angle of his arms and legs he might have been sleeping .Harry reached out straightened the half moon spectacles upon the crooked nose and wiped a trickle of blood from the mouth with his own sleeve .Then he gazed down at the wise old face and tried to absorb the enormous and incomprehensible truth that never again would Dumbledore speak to him never again could he help .The crowd murmured behind Harry .After what seemed like a long time he became aware that he was kneeling upon something hard and looked down .The locket they had managed to steal so many hours before had fallen out of Dumbledores pocket .It had opened perhaps due to the force with which it hit the ground .And although he could not feel more shock or horror or sadness than he felt already Harry knew as he picked it up that there was something wrong .He turned the locket over in his hands .This was neither as large as the locket he remembered seeing in the Pensieve nor were there any markings upon it no sign of the ornate S that was supposed to be Slytherins mark .Moreover there was nothing inside but for a scrap of folded parchment wedged tightly into the place where a portrait should have been .Automatically without really thinking about what he was doing Harry pulled out the fragment of parchment opened it and read by the light of the many wands that had now been lit behind him To the Dark Lord I know I will be dead long before you read this but I want you to know that it was I who discovered your secret I have stolen the real Horcrux and intend to destroy it as soon as I can .I face death in the hope that when you meet your match you will be mortal once more .R .A .B .Harry neither knew nor cared what the message meant .Only one thing mattered This was not a Horcrux .Dumbledore had weakened himself by drinking that terrible potion for nothing .Harry crumpled the parchment in his hand and his eyes burned with tears as behind him Fang began to howl .z ?THE PHOENIX LAMENT Cmere Harry .No .Yeh can stay here Harry .Come on now .No .He did not want to leave Dumbledores side he did not want to move anywhere .Hagrids hand on his shoulder was trembling .Then another voice said Harry come on .A much smaller and warmer hand had enclosed his and was pulling him upward .He obeyed its pressure without really thinking about it .Only as he walked blindly back through the crowd did he realize from a trace of flowery scent on the air that it was Ginny who was leading him back into the castle .Incomprehensible voices battered him sobs and shouts and wails stabbed the night but Harry and Ginny walked on back up the steps into the entrance hall .Faces swam on the edges of Harrys vision people were peering at him whispering wondering and Gryffindor rubies glistened on the floor like drops of blood as they made their way toward the marble staircase .Were going to the hospital wing said Ginny .Im not hurt said Harry .Its McGonagalls orders said Ginny .Everyones up there Ron and Hermione and Lupin and everyone Fear stirred in Harrys chest again He had forgotten the inert figures he had left behind .Ginny who else is dead ?Dont worry none of us .But the Dark Mark Malfoy said he stepped over a body He stepped over Bill but its all right hes alive .There was something in her voice however that Harry knew boded ill .Are you sure ?Of course Im sure .hes a a bit of a mess thats all .Greyback attacked him .Madam Pomfrey says he wont wont look the same anymore .Ginny s voice trembled a little .We dont really know what the aftereffects will be I mean Greyback being a werewolf but not transformed at the time .But the others .There were other bodies on the ground .Neville and Professor Flitwick are both hurt but Madam Pomfrey says theyll be all right .And a Death Eaters dead he got hit by a Killing Curse that huge blond one was firing off everywhere Harry if we hadnt had your Felix potion I think wed all have been killed but everything seemed to just miss us They had reached the hospital wing .Pushing open the doors Harry saw Neville lying apparently asleep in a bed near the door .Ron Hermione Luna Tonks and Lupin were gathered around another bed near the far end of the ward .At the sound of the doors opening they all looked up .Hermione ran to Harry and hugged him Lupin moved forward too looking anxious .Are you all right Harry ?Im fine .Hows Bill ?Nobody answered .Harry looked over Hermiones shoulder and saw an unrecognizable face lying on Bills pillow so badly slashed and ripped that he looked grotesque .Madam Pomfrey was dabbing at his wounds with some harshsmelling green ointment .Harry remembered how Snape had mended Malfoys Sectumsempra wounds so easily with his wand .Cant you fix them with a charm or something ?he asked the matron .No charm will work on these said Madam Pomfrey .Ive tried everything I know but there is no cure for werewolf bites .But he wasnt bitten at the full moon said Ron who was gazing down into his brothers face as though he could somehow force him to mend just by staring .Greyback hadnt transformed so surely Bill wont be a a real ?He looked uncertainly at Lupin .No I dont think that Bill will be a true werewolf said Lupin but that does not mean that there wont be some contamination .Those are cursed wounds .They are unlikely ever to heal fully and and Bill might have some wolfish characteristics from now on .Dumbledore might know something thatd work though Ron said .Where is he ?Bill fought those maniacs on Dumbledores orders Dumbledore owes him he cant leave him in this state Ron Dumbledores dead said Ginny .No !Lupin looked wildly from Ginny to Harry as though hoping the latter might contradict her but when Harry did not Lupin collapsed into a chair beside Bills bed his hands over his face .Harry had never seen Lupin lose control before he felt as though he was intruding upon something private indecent .He turned away and caught Rons eye instead exchanging in silence a look that confirmed what Ginny had said .How did he die ?whispered Tonks .How did it happen ?Snape killed him said Harry .I was there I saw it .We arrived back on the Astronomy Tower because thats where the Mark was .Dumbledore was ill he was weak but I think he realized it was a trap when we heard footsteps running up the stairs .He immobilized me I couldnt do anything I was under the Invisibility Cloak and then Malfoy came through the door and disarmed him Hermione clapped her hands to her mouth and Ron groaned .Lunas mouth trembled .more Death Eaters arrived and then Snape and Snape did it .The Avada Kedavra .Harry couldnt go on .Madam Pomfrey burst into tears .Nobody paid her any attention except Ginny who whispered Shh !Listen !Gulping Madam Pomfrey pressed her fingers to her mouth her eyes wide .Somewhere out in the darkness a phoenix was singing in a way Harry had never heard before a stricken lament of terrible beauty .And Harry felt as he had felt about phoenix song before that the music was inside him not without It was his own grief turned magically to song that echoed across the grounds and through the castle windows .How long they all stood there listening he did not know nor why it seemed to ease their pain a little to listen to the sound of their mourning but it felt like a long time later that the hospital door opened again and Professor McGonagall entered the ward .Like all the rest she bore marks of the recent battle There were grazes on her face and her robes were ripped .Molly and Arthur are on their way she said and the spell of the music was broken Everyone roused themselves as though coming out of trances turning again to look at Bill or else to rub their own eyes shake their heads .Harry what happened ?According to Hagrid you were with Professor Dumbledore when he when it happened .He says Professor Snape was involved in some Snape killed Dumbledore said Harry .She stared at him for a moment then swayed alarmingly Madam Pomfrey who seemed to have pulled herself together ran forward conjuring a chair from thin air which she pushed under McGonagall .Snape repeated McGonagall faintly falling into the chair .We all wondered .but he trusted .always .Snape .I cant believe it .Snape was a highly accomplished Occlumens said Lupin his voice uncharacteristically harsh .We always knew that .But Dumbledore swore he was on our side !whispered Tonks .I always thought Dumbledore must know something about Snape that we didnt .He always hinted that he had an ironclad reason for trusting Snape muttered Professor McGonagall now dabbing at the corners of her leaking eyes with a tartan edged handkerchief .I mean .with Snape s history .of course people were bound to wonder .but Dumbledore told me explicitly that Snape s repentance was absolutely genuine .Wouldnt hear a word against him !Id love to know what Snape told him to convince him said Tonks .I know said Harry and they all turned to look at him .Snape passed Voldemort the information that made Voldemort hunt down my mum and dad .Then Snape told Dumbledore he hadnt realized what he was doing he was really sorry hed done it sorry that they were dead .They all stared at him .And Dumbledore believed that ?said Lupin incredulously .Dumbledore believed Snape was sorry James was dead ?Snape hated James .And he didnt think my mother was worth a damn either said Harry because she was Muggleborn . ‘Mudblood he called her .Nobody asked how Harry knew this .All of them seemed to be lost in horrified shock trying to digest the monstrous truth of what had happened .This is all my fault said Professor McGonagall suddenly .She looked disoriented twisting her wet handkerchief in her hands .My fault .I sent Filius to fetch Snape tonight I actually sent for him to come and help us !If I hadnt alerted Snape to what was going on he might never have joined forces with the Death Eaters .I dont think he knew they were there before Filius told him I dont think he knew they were coming .It isnt your fault Minerva said Lupin firmly .We all wanted more help we were glad to think Snape was on his way .So when he arrived at the fight he joined in on the Death Eaters side ?asked Harry who wanted every detail of Snape s duplicity and infamy feverishly collecting more reasons to hate him to swear vengeance .I dont know exactly how it happened said Professor McGonagall distractedly .Its all so confusing .Dumbledore had told us that he would be leaving the school for a few hours and that we were to patrol the corridors just in case .Remus Bill and Nymphadora were to join us .and so we patrolled .All seemed quiet .Every secret passageway out of the school was covered .We knew nobody could fly in .There were powerful enchantments on every entrance into the castle .I still dont know how the Death Eaters can possibly have entered .I do said Harry and he explained briefly about the pair of Vanishing Cabinets and the magical pathway they formed .So they got in through the Room of Requirement .Almost against his will he glanced from Ron to Hermione both of whom looked devastated .I messed up Harry said Ron bleakly .We did like you told us We checked the Marauders Map and we couldnt see Malfoy on it so we thought he must be in the Room of Requirement so me Ginny and Neville went to keep watch on it .but Malfoy got past us .He came out of the room about an hour after we started keeping watch said Ginny .He was on his own clutching that awful shriveled arm His Hand of Glory said Ron .Gives light only to the holder remember ?Anyway Ginny went on he must have been checking whether the coast was clear to let the Death Eaters out because the moment he saw us he threw something into the air and it all went pitchblack Peruvian Instant Darkness Powder said Ron bitterly .Fred and Georges .Im going to be having a word with them about who they let buy their products .We tried everything Lumos Incendio said Ginny .Nothing would penetrate the darkness all we could do was grope our way out of the corridor again and meanwhile we could hear people rushing past us .Obviously Malfoy could see because of that hand thing and was guiding them but we didnt dare use any curses or anything in case we hit each other and by the time wed reached a corridor that was light theyd gone .Luckily said Lupin hoarsely Ron Ginny and Neville ran into us almost immediately and told us what had happened .We found the Death Eaters minutes later heading in the direction of the Astronomy Tower .Malfoy obviously hadnt expected more people to be on the watch he seemed to have exhausted his supply of Darkness Powder at any rate .A fight broke out they scattered and we gave chase .One of them Gibbon broke away and headed up the tower stairs To set off the Mark ?asked Harry .He must have done yes they must have arranged that before they left the Room of Requirement said Lupin .But I dont think Gibbon liked the idea of waiting up there alone for Dumbledore because he came running back downstairs to rejoin the fight and was hit by a Killing Curse that just missed me .So if Ron was watching the Room of Requirement with Ginny and Neville said Harry turning to Hermione were you ?Outside Snapes office yes whispered Hermione her eyes sparkling with tears with Luna .We hung around for ages outside it and nothing happened .We didnt know what was going on upstairs Ron had taken the map .It was nearly midnight when Professor Flitwick came sprinting down into the dungeons .He was shouting about Death Eaters in the castle I dont think he really registered that Luna and I were there at all he just burst his way into Snapes office and we heard him saying that Snape had to go back with him and help and then we heard a loud thump and Snape came hurtling out of his room and he saw us and and What ?Harry urged her .I was so stupid Harry !said Hermione in a high pitched whisper .He said Professor Flitwick had collapsed and that we should go and take care of him while he while he went to help fight the Death Eaters She covered her face in shame and continued to talk into her fingers so that her voice was muffled .We went into his office to see if we could help Professor Flitwick and found him unconscious on the floor .and oh its so obvious now Snape must have Stupefied Flitwick but we didnt realize Harry we didnt realize we just let Snape go !Its not your fault said Lupin firmly .Hermione had you not obeyed Snape and got out of the way he probably would have killed you and Luna .So then he came upstairs said Harry who was watching Snape running up the marble staircase in his minds eye his black robes billowing behind him as ever pulling his wand from under his cloak as he ascended and he found the place where you were all fighting .We were in trouble we were losing said Tonks in a low voice .Gibbon was down but the rest of the Death Eaters seemed ready to fight to the death .Neville had been hurt Bill had been savaged by Greyback .It was all dark .curses flying everywhere .The Malfoy boy had vanished he must have slipped past up the stairs .then more of them ran after him but one of them blocked the stair behind them with some kind of curse .Neville ran at it and got thrown up into the air None of us could break through said Ron and that massive Death Eater was still firing off jinxes all over the place they were bouncing off the walls and barely missing us .And then Snape was there said Tonks and then he wasnt I saw him running toward us but that huge Death Eaters jinx just missed me right afterward and I ducked and lost track of things said Ginny .I saw him run straight through the cursed barrier as though it wasnt there said Lupin .I tried to follow him but was thrown back just like Neville .He must have known a spell we didnt whispered McGonagall .After all he was the Defense Against the Dark Arts teacher .I just assumed that he was in a hurry to chase after the Death Eaters whod escaped up to the tower .He was said Harry savagely but to help them not to stop them .and Ill bet you had to have a Dark Mark to get through that barrier so what happened when he came back down ?Well the big Death Eater had just fired off a hex that caused half the ceiling to fall in and also broke the curse blocking the stairs said Lupin .We all ran forward those of us who were still standing anyway and then Snape and the boy emerged out of the dust obviously none of us attacked them We just let them pass said Tonks in a hollow voice .We thought they were being chased by the Death Eaters and next thing the other Death Eaters and Greyback were back and we were fighting again I thought I heard Snape shout something but I dont know what He shouted ‘Its over said Harry .Hed done what hed meant to do .They all fell silent .Fawkess lament was still echoing over the dark grounds outside .As the music reverberated upon the air unbidden unwelcome thoughts slunk into Harrys mind .Had they taken Dumbledores body from the foot of the tower yet ?What would happen to it next ?Where would it rest ?He clenched his fists tightly in his pockets .He could feel the small cold lump of the fake Horcrux against the knuckles of his right hand .The doors of the hospital wing burst open making them all jump Mr and Mrs Weasley were striding up the ward Fleur just behind them her beautiful face terrified .Molly Arthur said Professor McGonagall jumping up and hurrying to greet them .I am so sorry Bill whispered Mrs Weasley darting past Professor McGonagall as she caught sight of Bills mangled face .Oh Bill .Lupin and Tonks had got up hastily and retreated so that Mr and Mrs Weasley could get nearer to the bed .Mrs Weasley bent over her son and pressed her lips to his bloody forehead .You said Greyback attacked him ?Mr Weasley asked Professor McGonagall distractedly .But he hadnt transformed ?So what does that mean ?What will happen to Bill ?We dont yet know said Professor McGonagall looking helplessly at Lupin .There will probably be some contamination Arthur said Lupin .It is an odd case possibly unique .We dont know what his behavior might be like when he awakens .Mrs Weasley took the nastysmelling ointment from Madam Pomfrey and began dabbing at Bills wounds .And Dumbledore .said Mr Weasley .Minerva is it true .Is he really . ?As Professor McGonagall nodded Harry felt Ginny move beside him and looked at her .Her slightly narrowed eyes were fixed upon Fleur who was gazing down at Bill with a frozen expression on her face .Dumbledore gone whispered Mr Weasley but Mrs Weasley had eyes only for her eldest son she began to sob tears falling onto Bills mutilated face .Of course it doesnt matter how he looks .Its not rreally important .but he was a very handsome little bboy .always very handsome .and he was g going to be married !And what do you mean by zat ?said Fleur suddenly and loudly .What do you mean ‘e was going to be married ?Mrs Weasley raised her tearstained face looking startled .Well only that You theenk Bill will not wish to marry me anymore ?demanded Fleur .You theenk because of these bites he will not love me ?No thats not what I Because e will !said Fleur drawing herself up to her full height and throwing back her long mane of silver hair .It would take more zan a werewolf to stop Bill loving me !Well yes Im sure said Mrs Weasley but I thought perhaps given how how he You thought I would not weesh to marry him ?Or peraps you hoped ?said Fleur her nostrils flaring .What do I care how he looks ?I am goodlooking enough for both of us I theenk !All these scars show is zat my husband is brave !And I shall do zat !she added fiercely pushing Mrs Weasley aside and snatching the ointment from her .Mrs Weasley fell back against her husband and watched Fleur mopping up Bills wounds with a most curious expression upon her face .Nobody said anything Harry did not dare move .Like everybody else he was waiting for the explosion .Our GreatAuntie Muriel said Mrs Weasley after a long pause has a very beautiful tiara goblinmade which I am sure I could persuade her to lend you for the wedding .She is very fond of Bill you know and it would look lovely with your hair .Thank you said Fleur stiffly .I am sure zat will be lovely .And then Harry did not quite see how it happened both women were crying and hugging each other .Completely bewildered wondering whether the world had gone mad he turned around Ron looked as stunned as he felt and Ginny and Hermione were exchanging startled looks .You see !said a strained voice .Tonks was glaring at Lupin .She still wants to marry him even though hes been bitten !She doesnt care !Its different said Lupin barely moving his lips and looking suddenly tense .Bill will not be a full werewolf .The cases are completely But I dont care either I dont care !said Tonks seizing the front of Lupins robes and shaking them .Ive told you a million times .And the meaning of Tonkss Patronus and her mouse colored hair and the reason she had come running to find Dumbledore when she had heard a rumor someone had been attacked by Greyback all suddenly became clear to Harry it had not been Sirius that Tonks had fallen in love with after all .And Ive told you a million times said Lupin refusing to meet her eyes staring at the floor that I am too old for you too poor .too dangerous .Ive said all along youre taking a ridiculous line on this Remus said Mrs Weasley over Fleurs shoulder as she patted her on the back .I am not being ridiculous said Lupin steadily .Tonks deserves somebody young and whole .But she wants you said Mr Weasley with a small smile .And after all Remus young and whole men do not necessarily remain so .He gestured sadly at his son lying between them .This is .not the moment to discuss it said Lupin avoiding everybodys eyes as he looked around distractedly .Dumbledore is dead .Dumbledore would have been happier than anybody to think that there was a little more love in the world said Professor McGonagall curtly just as the hospital doors opened again and Hagrid walked in .The little of his face that was not obscured by hair or beard was soaking and swollen he was shaking with tears a vast spotted handkerchief in his hand .Ive .Ive done it Professor he choked .Mmoved him .Professor Sprouts got the kids back in bed .Professor Flitwicks lyin down but he says hell be all righ in a jiffy an Professor Slughorn says the Ministrys bin informed .Thank you Hagrid said Professor McGonagall standing up at once and turning to look at the group around Bills bed .I shall have to see the Ministry when they get here .Hagrid please tell the Heads of Houses Slughorn can represent Slytherin that I want to see them in my office forthwith .I would like you to join us too .As Hagrid nodded turned and shuffled out of the room again she looked down at Harry .Before I meet them I would like a quick word with you Harry .If youll come with me .Harry stood up murmured See you in a bit to Ron Hermione and Ginny and followed Professor McGonagall back down the ward .The corridors outside were deserted and the only sound was the distant phoenix song .It was several minutes before Harry became aware that they were not heading for Professor McGonagalls office but for Dumbledores and another few seconds before he realized that of course she had been deputy headmistress .Apparently she was now headmistress .so the room behind the gargoyle was now hers .In silence they ascended the moving spiral staircase and entered the circular office .He did not know what he had expected that the room would be draped in black perhaps or even that Dumbledores body might be lying there .In fact it looked almost exactly as it had done when he and Dumbledore had left it mere hours previously the silver instruments whirring and puffing on their spindlelegged tables Gryffindors sword in its glass case gleaming in the moonlight the Sorting Hat on a shelf behind the desk .But Fawkess perch stood empty he was still crying his lament to the grounds .And a new portrait had joined the ranks of the dead headmasters and headmistresses of Hogwarts Dumbledore was slumbering in a golden frame over the desk his half moon spectacles perched upon his crooked nose looking peaceful and untroubled .After glancing once at this portrait Professor McGonagall made an odd movement as though steeling herself then rounded the desk to look at Harry her face taut and lined .Harry she said I would like to know what you and Professor Dumbledore were doing this evening when you left the school .I cant tell you that Professor said Harry .He had expected the question and had his answer ready .It had been here in this very room that Dumbledore had told him that he was to confide the contents of their lessons to nobody but Ron and Hermione .Harry it might be important said Professor McGonagall .It is said Harry very but he didnt want me to tell anyone .Professor McGonagall glared at him .Potter Harry registered the renewed use of his surname in the light of Professor Dumbledores death I think you must see that the situation has changed somewhat I dont think so said Harry shrugging .Professor Dumbledore never told me to stop following his orders if he died .But Theres one thing you should know before the Ministry gets here though .Madam Rosmertas under the Imperius Curse she was helping Malfoy and the Death Eaters thats how the necklace and the poisoned mead Rosmerta ?said Professor McGonagall incredulously but before she could go on there was a knock on the door behind them and Professors Sprout Flitwick and Slughorn traipsed into the room followed by Hagrid who was still weeping copiously his huge frame trembling with grief .Snape !ejaculated Slughorn who looked the most shaken pale and sweating .Snape !I taught him !I thought I knew him !But before any of them could respond to this a sharp voice spoke from high on the wall A sallowfaced wizard with a short black fringe had just walked back into his empty canvas .Minerva the Minister will be here within seconds he has just Disapparated from the Ministry .Thank you Everard said Professor McGonagall and she turned quickly to her teachers .I want to talk about what happens to Hogwarts before he gets here she said quickly .Personally I am not convinced that the school should reopen next year .The death of the headmaster at the hands of one of our colleagues is a terrible stain upon Hogwarts s history .It is horrible .I am sure Dumbledore would have wanted the school to remain open said Professor Sprout .I feel that if a single pupil wants to come then the school ought to remain open for that pupil .But will we have a single pupil after this ?said Slughorn now dabbing his sweating brow with a silken handkerchief .Parents will want to keep their children at home and I cant say I blame them .Personally I dont think were in more danger at Hogwarts than we are anywhere else but you cant expect mothers to think like that .Theyll want to keep their families together its only natural .I agree said Professor McGonagall .And in any case it is not true to say that Dumbledore never envisaged a situation in which Hogwarts might close .When the Chamber of Secrets reopened he considered the closure of the school and I must say that Professor Dumbledores murder is more disturbing to me than the idea of Slytherins monster living undetected in the bowels of the castle .We must consult the governors said Professor Flitwick in his squeaky little voice he had a large bruise on his forehead but seemed otherwise unscathed by his collapse in Snapes office .We must follow the established procedures .A decision should not be made hastily .Hagrid you havent said anything said Professor McGonagall .What are your views ought Hogwarts to remain open ?Hagrid who had been weeping silently into his large spotted handkerchief throughout this conversation now raised puffy red eyes and croaked I dunno Professor .thats fer the Heads of House an the headmistress ter decide .Professor Dumbledore always valued your views said Professor McGonagall kindly and so do I .Well Im stayin said Hagrid fat tears still leaking out of the corners of his eyes and trickling down into his tangled beard .Its me home its bin me home since I was thirteen .An if theres kids who wan me ter teach em Ill do it .But .I dunno .Hogwarts without Dumbledore .He gulped and disappeared behind his handkerchief once more and there was silence .Very well said Professor McGonagall glancing out of the window at the grounds checking to see whether the Minister was yet approaching then I must agree with Filius that the right thing to do is to consult the governors who will make the final decision .Now as to getting students home .there is an argument for doing it sooner rather than later .We could arrange for the Hogwarts Express to come tomorrow if necessary What about Dumbledores funeral ?said Harry speaking at last .Well .said Professor McGonagall losing a little of her briskness as her voice shook .I I know that it was Dumbledores wish to be laid to rest here at Hogwarts Then thats whatll happen isnt it ?said Harry fiercely .If the Ministry thinks it appropriate said Professor McGonagall .No other headmaster or headmistress has ever been No other headmaster or headmistress ever gave more to this school growled Hagrid .Hogwarts should be Dumbledores final resting place said Professor Flitwick .Absolutely said Professor Sprout .And in that case said Harry you shouldnt send the students home until the funerals over .Theyll want to say The last word caught in his throat but Professor Sprout completed the sentence for him .Goodbye .Well said squeaked Professor Flitwick .Well said indeed !Our students should pay tribute it is fitting .We can arrange transport home afterward .Seconded barked Professor Sprout .I suppose .yes .said Slughorn in a rather agitated voice while Hagrid let out a strangled sob of assent .Hes coming said Professor McGonagall suddenly gazing down into the grounds .The Minister .and by the looks of it hes brought a delegation .Can I leave Professor ?said Harry at once .He had no desire at all to see or be interrogated by Rufus Scrimgeour tonight .You may said Professor McGonagall .And quickly .She strode toward the door and held it open for him .He sped down the spiral staircase and off along the deserted corridor he had left his Invisibility Cloak at the top of the Astronomy Tower but it did not matter there was nobody in the corridors to see him pass not even Filch Mrs Norris or Peeves .He did not meet another soul until he turned into the passage leading to the Gryffindor common room .Is it true ?whispered the Fat Lady as he approached her .It is really true ?Dumbledore dead ?Yes said Harry .She let out a wail and without waiting for the password swung forward to admit him .As Harry had suspected it would be the common room was jampacked .The room fell silent as he climbed through the portrait hole .He saw Dean and Seamus sitting in a group nearby This meant that the dormitory must be empty or nearly so .Without speaking to anybody without making eye contact at all Harry walked straight across the room and through the door to the boys dormitories .As he had hoped Ron was waiting for him still fully dressed sitting on his bed .Harry sat down on his own fourposter and for a moment they simply stared at each other .Theyre talking about closing the school said Harry .Lupin said they would said Ron .There was a pause .So ?said Ron in a very low voice as though he thought the furniture might be listening in .Did you find one ?Did you get it ?A a Horcrux ?Harry shook his head .All that had taken place around that black lake seemed like an old nightmare now had it really happened and only hours ago ?You didnt get it ?said Ron looking crestfallen .It wasnt there ?No said Harry .Someone had already taken it and left a fake in its place .Already taken ?Wordlessly Harry pulled the fake locket from his pocket opened it and passed it to Ron .The full story could wait .It did not matter tonight .nothing mattered except the end the end of their pointless adventure the end of Dumbledores life .R .A .B .whispered Ron but who was that ?Dunno said Harry lying back on his bed fully clothed and staring blankly upwards .He felt no curiosity at all about R .A .B .He doubted that he would ever feel curious again .As he lay there he became aware suddenly that the grounds were silent .Fawkes had stopped singing .And he knew without knowing how he knew it that the phoenix had gone had left Hogwarts for good just as Dumbledore had left the school had left the world .had left Harry .THE WHITE TOMB All lessons were suspended all examinations postponed .Some students were hurried away from Hogwarts by their parents over the next couple of days the Patil twins were gone before breakfast on the morning following Dumbledores death and Zacharias Smith was escorted from the castle by his haughtylooking father .Seamus Finnigan on the other hand refused pointblank to accompany his mother home they had a shouting match in the entrance hall that was resolved when she agreed that he could remain behind for the funeral .She had difficulty in finding a bed in Hogsmeade Seamus told Harry and Ron for wizards and witches were pouring into the village preparing to pay their last respects to Dumbledore .Some excitement was caused among the younger students who had never seen it before when a powderblue carriage the size of a house pulled by a dozen giant winged palominos came soaring out of the sky in the late afternoon before the funeral and landed on the edge of the forest .Harry watched from a window as a gigantic and handsome oliveskinned blackhaired woman descended the carriage steps and threw herself into the waiting Hagrids arms .Meanwhile a delegation of Ministry officials including the Minister of Magic himself was being accommodated within the castle .Harry was diligently avoiding contact with any of them he was sure that sooner or later he would be asked again to account for Dumbledores last excursion from Hogwarts .Harry Ron Hermione and Ginny were spending all of their time together .The beautiful weather seemed to mock them Harry could imagine how it would have been if Dumbledore had not died and they had had this time together at the very end of the year Ginnys examinations finished the pressure of homework lifted .and hour by hour he put off saying the thing that he knew he must say doing what he knew was right to do because it was too hard to forgo his best source of comfort .They visited the hospital wing twice a day Neville had been discharged but Bill remained under Madam Pomfreys care .His scars were as bad as ever in truth he now bore a distinct resemblance to MadEye Moody though thankfully with both eyes and legs but in personality he seemed just the same as ever .All that appeared to have changed was that he now had a great liking for very rare steaks . .so eet ees lucky e is marrying me said Fleur happily plumping up Bills pillows because ze British overcook their meat I ave always said this .I suppose Im just going to have to accept that he really is going to marry her sighed Ginny later that evening as she Harry Ron and Hermione sat beside the open window of the Gryffindor common room looking out over the twilit grounds .Shes not that bad said Harry .Ugly though he added hastily as Ginny raised her eyebrows and she let out a reluctant giggle .Well I suppose if Mum can stand it I can .Anyone else we know died ?Ron asked Hermione who was perusing the Evening Prophet .Hermione winced at the forced toughness in his voice .No she said reprovingly folding up the newspaper .Theyre still looking for Snape but no sign .Of course there isnt said Harry who became angry every time this subject cropped up .They wont find Snape till they find Voldemort and seeing as theyve never managed to do that in all this time .Im going to go to bed yawned Ginny .I havent been sleeping that well since .well .I could do with some sleep .She kissed Harry Ron looked away pointedly waved at the other two and departed for the girls dormitories .The moment the door had closed behind her Hermione leaned forward toward Harry with a most Hermioneish look on her face .Harry I found something out this morning in the library .R .A .B .said Harry sitting up straight .He did not feel the way he had so often felt before excited curious burning to get to the bottom of a mystery he simply knew that the task of discovering the truth about the real Horcrux had to be completed before he could move a little farther along the dark and winding path stretching ahead of him the path that he and Dumbledore had set out upon together and which he now knew he would have to journey alone .There might still be as many as four Horcruxes out there somewhere and each would need to be found and eliminated before there was even a possibility that Voldemort could be killed .He kept reciting their names to himself as though by listing them he could bring them within reach the locket .the cup .the snake .something of Gryffindors or Ravenclaws .the locket .the cup .the snake .something of Gryffindors or Ravenclaws .This mantra seemed to pulse through Harrys mind as he fell asleep at night and his dreams were thick with cups lockets and mysterious objects that he could not quite reach though Dumbledore helpfully offered Harry a rope ladder that turned to snakes the moment he began to climb .He had shown Hermione the note inside the locket the morning after Dumbledore s death and although she had not immediately recognized the initials as belonging to some obscure wizard about whom she had been reading she had since been rushing off to the library a little more often than was strictly necessary for somebody who had no homework to do .No she said sadly Ive been trying Harry but I havent found anything .There are a couple of reasonably wellknown wizards with those initials Rosalind Antigone Bungs .Rupert ‘Axebanger Brookstanton .but they dont seem to fit at all .Judging by that note the person who stole the Horcrux knew Voldemort and I cant find a shred of evidence that Bungs or Axebanger ever had anything to do with him .No actually its about .well Snape .She looked nervous even saying the name again .What about him ?asked Harry heavily slumping back in his chair .Well its just that I was sort of right about the Half Blood Prince business she said tentatively .Dyou have to rub it in Hermione ?How dyou think I feel about that now ?No no Harry I didnt mean that !she said hastily looking around to check that they were not being overheard .Its just that I was right about Eileen Prince once owning the book .You see .she was Snape s mother !I thought she wasnt much of a looker said Ron .Hermione ignored him .I was going through the rest of the old Prophets and there was a tiny announcement about Eileen Prince marrying a man called Tobias Snape and then later an announcement saying that shed given birth to a murderer spat Harry .Well .yes said Hermione .So .I was sort of right .Snape must have been proud of being ‘half a Prince you see ?Tobias Snape was a Muggle from what it said in the Prophet Yeah that fits said Harry .Hed play up the pure blood side so he could get in with Lucius Malfoy and the rest of them .Hes just like Voldemort .Pure blood mother Muggle father .ashamed of his parentage trying to make himself feared using the Dark Arts gave himself an impressive new name Lord Voldemort the HalfBlood Prince how could Dumbledore have missed ?He broke off looking out the window .He could not stop himself dwelling upon Dumbledore s inexcusable trust in Snape .but as Hermione had just inadvertently reminded him he Harry had been taken in just the same .In spite of the increasing nastiness of those scribbled spells he had refused to believe ill of the boy who had been so clever who had helped him so much .Helped him .it was an almost unendurable thought now .I still dont get why he didnt turn you in for using that book said Ron .He mustve known where you were getting it all from .He knew said Harry bitterly .He knew when I used Sectumsempra .He didnt really need Legilimency .He might even have known before then with Slughorn talking about how brilliant I was at Potions . .Shouldnt have left his old book in the bottom of that cupboard should he ?But why didnt he turn you in ?I dont think he wanted to associate himself with that book said Hermione .I dont think Dumbledore would have liked it very much if hed known .And even if Snape pretended it hadnt been his Slughorn would have recognized his writing at once .Anyway the book was left in Snapes old classroom and Ill bet Dumbledore knew his mother was called ‘Prince .I shouldve shown the book to Dumbledore said Harry .All that time he was showing me how Voldemort was evil even when he was at school and I had proof Snape was too ‘Evil is a strong word said Hermione quietly .You were the one who kept telling me the book was dangerous !Im trying to say Harry that youre putting too much blame on yourself .I thought the Prince seemed to have a nasty sense of humor but I would never have guessed he was a potential killer .None of us couldve guessed Snape would .you know said Ron .Silence fell between them each of them lost in their own thoughts but Harry was sure that they like him were thinking about the following morning when Dumbledores body would be laid to rest .He had never attended a funeral before there had been no body to bury when Sirius had died .He did not know what to expect and was a little worried about what he might see about how he would feel .He wondered whether Dumbledores death would be more real to him once it was over .Though he had moments when the horrible fact of it threatened to overwhelm him there were blank stretches of numbness where despite the fact that nobody was talking about anything else in the whole castle he still found it difficult to believe that Dumbledore had really gone .Admittedly he had not as he had with Sirius looked desperately for some kind of loophole some way that Dumbledore would come back .He felt in his pocket for the cold chain of the fake Horcrux which he now carried with him everywhere not as a talisman but as a reminder of what it had cost and what remained still to do .Harry rose early to pack the next day the Hogwarts Express would be leaving an hour after the funeral .Downstairs he found the mood in the Great Hall subdued .Everybody was wearing their dress robes and no one seemed very hungry .Professor McGonagall had left the thronelike chair in the middle of the staff table empty .Hagrids chair was deserted too Harry thought that perhaps he had not been able to face breakfast but Snapes place had been unceremoniously filled by Rufus Scrimgeour .Harry avoided his yellowish eyes as they scanned the Hall Harry had the uncomfortable feeling that Scrimgeour was looking for him .Among Scrimgeours entourage Harry spotted the red hair and hornrimmed glasses of Percy Weasley .Ron gave no sign that he was aware of Percy apart from stabbing pieces of kipper with unwonted venom .Over at the Slytherin table Crabbe and Goyle were muttering together .Hulking boys though they were they looked oddly lonely without the tall pale figure of Malfoy between them bossing them around .Harry had not spared Malfoy much thought .His animosity was all for Snape but he had not forgotten the fear in Malfoys voice on that tower top nor the fact that he had lowered his wand before the other Death Eaters arrived .Harry did not believe that Malfoy would have killed Dumbledore .He despised Malfoy still for his infatuation with the Dark Arts but now the tiniest drop of pity mingled with his dislike .Where Harry wondered was Malfoy now and what was Voldemort making him do under threat of killing him and his parents ?Harrys thoughts were interrupted by a nudge in the ribs from Ginny .Professor McGonagall had risen to her feet and the mournful hum in the Hall died away at once .It is nearly time she said .Please follow your Heads of Houses out into the grounds .Gryffindors after me .They filed out from behind their benches in near silence .Harry glimpsed Slughorn at the head of the Slytherin column wearing magnificent long emerald green robes embroidered with silver .He had never seen Professor Sprout Head of the Hufflepuffs looking so clean there was not a single patch on her hat and when they reached the entrance hall they found Madam Pince standing beside Filch she in a thick black veil that fell to her knees he in an ancient black suit and tie reeking of mothballs .They were heading as Harry saw when he stepped out onto the stone steps from the front doors toward the lake .The warmth of the sun caressed his face as they followed Professor McGonagall in silence to the place where hundreds of chairs had been set out in rows .An aisle ran down the center of them There was a marble table standing at the front all chairs facing it .It was the most beautiful summers day .An extraordinary assortment of people had already settled into half of the chairs shabby and smart old and young .Most Harry did not recognize but a few he did including members of the Order of the Phoenix Kingsley Shacklebolt MadEye Moody Tonks her hair miraculously returned to vividest pink Remus Lupin with whom she seemed to be holding hands Mr and Mrs Weasley Bill supported by Fleur and followed by Fred and George who were wearing jackets of black dragon skin .Then there was Madame Maxime who took up two and a half chairs on her own Tom the landlord of the Leaky Cauldron in London Arabella Figg Harrys Squib neighbor the hairy bass player from the Wizarding group the Weird Sisters Ernie Prang driver of the Knight Bus Madam Malkin of the robe shop in Diagon Alley and some people whom Harry merely knew by sight such as the barman of the Hogs Head and the witch who pushed the trolley on the Hogwarts Express .The castle ghosts were there too barely visible in the bright sunlight discernible only when they moved shimmering insubstantially on the gleaming air .Harry Ron Hermione and Ginny filed into seats at the end of a row beside the lake .People were whispering to each other it sounded like a breeze in the grass but the birdsong was louder by far .The crowd continued to swell with a great rush of affection for both of them Harry saw Neville being helped into a seat by Luna .Neville and Luna alone of the D .A .had responded to Hermione s summons the night that Dumbledore had died and Harry knew why They were the ones who had missed the D .A .most .probably the ones who had checked their coins regularly in the hope that there would be another meeting .Cornelius Fudge walked past toward the front rows his expression miserable twirling his green bowler hat as usual Harry next recognized Rita Skeeter who he was infuriated to see had a notebook clutched in her redtaloned hand and then with a worse jolt of fury Dolores Umbridge an unconvincing expression of grief upon her toadlike face a black velvet bow set atop her ironcolored curls .At the sight of the centaur Firenze who was standing like a sentinel near the waters edge she gave a start and scurried hastily into a seat a good distance away .The staff was seated at last .Harry could see Scrimgeour looking grave and dignified in the front row with Professor McGonagall .He wondered whether Scrimgeour or any of these important people were really sorry that Dumbledore was dead .But then he heard music strange otherworldly music and he forgot his dislike of the Ministry in looking around for the source of it .He was not the only one Many heads were turning searching a little alarmed .In there whispered Ginny in Harrys ear .And he saw them in the clear green sunlit water inches below the surface reminding him horribly of the Inferi a chorus of merpeople singing in a strange language he did not understand their pallid faces rippling their purplish hair flowing all around them .The music made the hair on Harrys neck stand up and yet it was not unpleasant .It spoke very clearly of loss and of despair .As he looked down into the wild faces of the singers he had the feeling that they at least were sorry for Dumbledores passing .Then Ginny nudged him again and he looked around .Hagrid was walking slowly up the aisle between the chairs .He was crying quite silently his face gleaming with tears and in his arms wrapped in purple velvet spangled with golden stars was what Harry knew to be Dumbledores body .A sharp pain rose in Harrys throat at this sight For a moment the strange music and the knowledge that Dumbledores body was so close seemed to take all warmth from the day .Ron looked white and shocked .Tears were falling thick and fast into both Ginny s and Hermiones laps .They could not see clearly what was happening at the front .Hagrid seemed to have placed the body carefully upon the table .Now he retreated down the aisle blowing his nose with loud trumpeting noises that drew scandalized looks from some including Harry saw Dolores Umbridge .but Harry knew that Dumbledore would not have cared .He tried to make a friendly gesture to Hagrid as he passed but Hagrids eyes were so swollen it was a wonder he could see where he was going .Harry glanced at the back row to which Hagrid was heading and realized what was guiding him for there dressed in a jacket and trousers each the size of a small marquee was the giant Grawp his great ugly boulderlike head bowed docile almost human .Hagrid sat down next to his halfbrother and Grawp patted Hagrid hard on the head so that his chair legs sank into the ground .Harry had a wonderful momentary urge to laugh .But then the music stopped and he turned to face the front again .A little tuftyhaired man in plain black robes had got to his feet and stood now in front of Dumbledore s body .Harry could not hear what he was saying .Odd words floated back to them over the hundreds of heads .Nobility of spirit .intellectual contribution .greatness of heart .It did not mean very much .It had little to do with Dumbledore as Harry had known him .He suddenly remembered Dumbledore s idea of a few words nitwit oddment blubber and tweak and again had to suppress a grin .What was the matter with him ?There was a soft splashing noise to his left and he saw that the merpeople had broken the surface to listen too .He remembered Dumbledore crouching at the waters edge two years ago very close to where Harry now sat and conversing in Mermish with the Merchieftainess .Harry wondered where Dumbledore had learned Mermish .There was so much he had never asked him so much he should have said .And then without warning it swept over him the dreadful truth more completely and undeniably than it had until now .Dumbledore was dead gone .He clutched the cold locket in his hand so tightly that it hurt but he could not prevent hot tears spilling from his eyes He looked away from Ginny and the others and stared out over the lake toward the forest as the little man in black droned on .There was movement among the trees .The centaurs had come to pay their respects too .They did not move into the open but Harry saw them standing quite still half hidden in shadow watching the wizards their bows hanging at their sides .And Harry remembered his first nightmarish trip into the forest the first time he had ever encountered the thing that was then Voldemort and how he had faced him and how he and Dumbledore had discussed fighting a losing battle not long thereafter .It was important Dumbledore said to fight and fight again and keep fighting for only then could evil be kept at bay though never quite eradicated .And Harry saw very clearly as he sat there under the hot sun how people who cared about him had stood in front of him one by one his mother his father his godfather and finally Dumbledore all determined to protect him but now that was over .He could not let anybody else stand between him and Voldemort he must abandon forever the illusion he ought to have lost at the age of one that the shelter of a parents arms meant that nothing could hurt him .There was no waking from his nightmare no comforting whisper in the dark that he was safe really that it was all in his imagination the last and greatest of his protectors had died and he was more alone than he had ever been before .The little man in black had stopped speaking at last and resumed his seat .Harry waited for somebody else to get to their feet he expected speeches probably from the Minister but nobody moved .Then several people screamed .Bright white flames had erupted around Dumbledores body and the table upon which it lay Higher and higher they rose obscuring the body .White smoke spiraled into the air and made strange shapes Harry thought for one heart stopping moment that he saw a phoenix fly joyfully into the blue but next second the fire had vanished .In its place was a white marble tomb encasing Dumbledores body and the table on which he had rested .There were a few more cries of shock as a shower of arrows soared through the air but they fell far short of the crowd .It was Harry knew the centaurs tribute He saw them turn tail and disappear back into the cool trees .Likewise the merpeople sank slowly back into the green water and were lost from view .Harry looked at Ginny Ron and Hermione Rons face was screwed up as though the sunlight were blinding him .Hermione s face was glazed with tears but Ginny was no longer crying .She met Harrys gaze with the same hard blazing look that he had seen when she had hugged him after winning the Quidditch Cup in his absence and he knew that at that moment they understood each other perfectly and that when he told her what he was going to do now she would not say Be careful or Dont do it but accept his decision because she would not have expected anything less of him .And so he steeled himself to say what he had known he must say ever since Dumbledore had died .Ginny listen .he said very quietly as the buzz of conversation grew louder around them and people began to get to their feet I cant be involved with you anymore .Weve got to stop seeing each other .We cant be together .She said with an oddly twisted smile Its for some stupid noble reason isnt it ?Its been like .like something out of someone elses life these last few weeks with you said Harry .But I cant .we cant .Ive got things to do alone now .She did not cry she simply looked at him .Voldemort uses people his enemies are close to .Hes already used you as bait once and that was just because youre my best friends sister .Think how much danger youll be in if we keep this up .Hell know hell find out .Hell try and get to me through you .What if I dont care ?said Ginny fiercely .I care said Harry .How do you think Id feel if this was your funeral .and it was my fault .She looked away from him over the lake .I never really gave up on you she said .Not really .I always hoped .Hermione told me to get on with life maybe go out with some other people relax a bit around you because I never used to be able to talk if you were in the room remember ?And she thought you might take a bit more notice if I was a bit more myself .Smart girl that Hermione said Harry trying to smile .I just wish Id asked you sooner .We couldve had ages .months .years maybe .But youve been too busy saving the Wizarding world said Ginny half laughing .Well .I cant say Im surprised .I knew this would happen in the end .I knew you wouldnt be happy unless you were hunting Voldemort .Maybe thats why I like you so much .Harry could not bear to hear these things nor did he think his resolution would hold if he remained sitting beside her .Ron he saw was now holding Hermione and stroking her hair while she sobbed into his shoulder tears dripping from the end of his own long nose .With a miserable gesture Harry got up turned his back on Ginny and on Dumbledores tomb and walked away around the lake .Moving felt much more bearable than sitting still just as setting out as soon as possible to track down the Horcruxes and kill Voldemort would feel better than waiting to do it .Harry !He turned .Rufus Scrimgeour was limping rapidly toward him around the bank leaning on his walking stick .Ive been hoping to have a word .do you mind if I walk a little way with you ?No said Harry indifferently and set off again .Harry this was a dreadful tragedy said Scrimgeour quietly .I cannot tell you how appalled I was to hear of it .Dumbledore was a very great wizard .We had our disagreements as you know but no one knows better than I What do you want ?asked Harry flatly .Scrimgeour looked annoyed but as before hastily modified his expression to one of sorrowful understanding .You are of course devastated he said .I know that you were very close to Dumbledore .I think you may have been his favorite pupil ever .The bond between the two of you What do you want ?Harry repeated coming to a halt .Scrimgeour stopped too leaned on his stick and stared at Harry his expression shrewd now .The word is that you were with him when he left the school the night that he died .Whose word ?said Harry .Somebody Stupefied a Death Eater on top of the tower after Dumbledore died .There were also two broomsticks up there .The Ministry can add two and two Harry .Glad to hear it said Harry .Well where I went with Dumbledore and what we did is my business .He didnt want people to know .Such loyalty is admirable of course said Scrimgeour who seemed to be restraining his irritation with difficulty but Dumbledore is gone Harry .Hes gone .He will only be gone from the school when none here are loyal to him said Harry smiling in spite of himself .My dear boy .even Dumbledore cannot return from the I am not saying he can .You wouldnt understand .But Ive got nothing to tell you .Scrimgeour hesitated then said in what was evidently supposed to be a tone of delicacy The Ministry can offer you all sorts of protection you know Harry .I would be delighted to place a couple of my Aurors at your service Harry laughed .Voldemort wants to kill me himself and Aurors wont stop him .So thanks for the offer but no thanks .So said Scrimgeour his voice cold now the request I made of you at Christmas What request ?Oh yeah .the one where I tell the world what a great job youre doing in exchange for for raising everyones morale !snapped Scrimgeour .Harry considered him for a moment .Released Stan Shunpike yet ?Scrimgeour turned a nasty purple color highly reminiscent of Uncle Vernon .I see you are Dumbledores man through and through said Harry .Thats right .Scrimgeour glared at him for another moment then turned and limped away without another word .Harry could see Percy and the rest of the Ministry delegation waiting for him casting nervous glances at the sobbing Hagrid and Grawp who were still in their seats .Ron and Hermione were hurrying toward Harry passing Scrimgeour going in the opposite direction .Harry turned and walked slowly on waiting for them to catch up which they finally did in the shade of a beech tree under which they had sat in happier times .What did Scrimgeour want ?Hermione whispered .Same as he wanted at Christmas shrugged Harry .Wanted me to give him inside information on Dumbledore and be the Ministrys new poster boy .Ron seemed to struggle with himself for a moment then he said loudly to Hermione Look let me go back and hit Percy !No she said firmly grabbing his arm .Itll make me feel better !Harry laughed .Even Hermione grinned a little though her smile faded as she looked up at the castle .I cant bear the idea that we might never come back she said softly .How can Hogwarts close ?Maybe it wont said Ron .Were not in any more danger here than we are at home are we ?Everywheres the same now .Id even say Hogwarts is safer there are more wizards inside to defend the place .What dyou reckon Harry ?Im not coming back even if it does reopen said Harry .Ron gaped at him but Hermione said sadly I knew you were going to say that .But then what will you do ? ‘Tm going back to the Dursleys once more because Dumbledore wanted me to said Harry .But itll be a short visit and then Ill be gone for good .But where will you go if you dont come back to school ?I thought I might go back to Godrics Hollow Harry muttered .He had had the idea in his head ever since the night of Dumbledores death .For me it started there all of it .Ive just got a feeling I need to go there .And I can visit my parents graves Id like that .And then what ?said Ron .Then Ive got to track down the rest of the Horcruxes havent I ?said Harry his eyes upon Dumbledores white tomb reflected in the water on the other side of the lake .Thats what he wanted me to do thats why he told me all about them .If Dumbledore was right and Im sure he was there are still four of them out there .Ive got to find them and destroy them and then Ive got to go after the seventh bit of Voldemorts soul the bit thats still in his body and Im the one whos going to kill him .And if I meet Severus Snape along the way he added so much the better for me so much the worse for him .There was a long silence .The crowd had almost dispersed now the stragglers giving the monumental figure of Grawp a wide berth as he cuddled Hagrid whose howls of grief were still echoing across the water .Well be there Harry said Ron .What ?At your aunt and uncles house said Ron .And then well go with you wherever youre going .No said Harry quickly he had not counted on this he had meant them to understand that he was undertaking this most dangerous journey alone .You said to us once before said Hermione quietly that there was time to turn back if we wanted to .Weve had time havent we ?Were with you whatever happens said Ron .But mate youre going to have to come round my mum and dads house before we do anything else even Godrics Hollow .Why ?Bill and Fleurs wedding remember ?Harry looked at him startled the idea that anything as normal as a wedding could still exist seemed incredible and yet wonderful .Yeah we shouldnt miss that he said finally .His hand closed automatically around the fake Horcrux but in spite of everything in spite of the dark and twisting path he saw stretching ahead for himself in spite of the final meeting with Voldemort he knew must come whether in a month in a year or in ten he felt his heart lift at the thought that there was still one last golden day of peace left to enjoy with Ron and Hermione .I THE DARK LORD ASCENDING The two men appeared out of nowhere a few yards apart in the narrow moonlit lane .For a second they stood quite still wands directed at each others chests then recognizing each other they stowed their wands beneath their cloaks and started walking briskly in the same direction .News ?asked the taller of the two .The best replied Severus Snape .The lane was bordered on the left by wild low growing brambles on the right by a high neatly manicured hedge .The mens long cloaks flapped around their ankles as they marched .Thought I might be late said Yaxley his blunt features sliding in and out of sight as the branches of overhanging trees broke the moonlight .It was a little trickier than I expected .But I hope he will be satisfied .You sound confident that your reception will be good ?Snape nodded but did not elaborate .They turned right into a wide driveway that led off the lane .The high hedge curved with them running off into the distance beyond the pair of impressive wroughtiron gates barring the mens way .Neither of them broke step In silence both raised their left arms in a kind of salute and passed straight through as though the dark metal were smoke .The yew hedges muffled the sound of the mens footsteps .There was a rustle somewhere to their right Yaxley drew his wand again pointing it over his companions head but the source of the noise proved to be nothing more than a purewhite peacock strutting majestically along the top of the hedge .He always did himself well Lucius .Peacocks .Yaxley thrust his wand back under his cloak with a snort .A handsome manor house grew out of the darkness at the end of the straight drive lights glinting in the diamondpaned downstairs windows .Somewhere in the dark garden beyond the hedge a fountain was playing .Gravel crackled beneath their feet as Snape and Yaxley sped toward the front door which swung inward at their approach though nobody had visibly opened it .The hallway was large dimly lit and sumptuously decorated with a magnificent carpet covering most of the stone floor .The eyes of the palefaced portraits on the walls followed Snape and Yaxley as they strode past .The two men halted at a heavy wooden door leading into the next room hesitated for the space of a heartbeat then Snape turned the bronze handle .The drawing room was full of silent people sitting at a long and ornate table .The rooms usual furniture had been pushed carelessly up against the walls .Illumination came from a roaring fire beneath a handsome marble mantelpiece surmounted by a gilded mirror .Snape and Yaxley lingered for a moment on the threshold .As their eyes grew accustomed to the lack of light they were drawn upward to the strangest feature of the scene an apparently unconscious human figure hanging upside down over the table revolving slowly as if suspended by an invisible rope and reflected in the mirror and in the bare polished surface of the table below .None of the people seated underneath this singular sight was looking at it except for a pale young man sitting almost directly below it .He seemed unable to prevent himself from glancing upward every minute or so .Yaxley .Snape said a high clear voice from the head of the table .You are very nearly late .The speaker was seated directly in front of the fireplace so that it was difficult at first for the new arrivals to make out more than his silhouette .As they drew nearer however his face shone through the gloom hairless snakelike with slits for nostrils and gleaming red eyes whose pupils were vertical .He was so pale that he seemed to emit a pearly glow .Severus here said Voldemort indicating the seat on his immediate right .Yaxley beside Dolohov .The two men took their allotted places .Most of the eyes around the table followed Snape and it was to him that Voldemort spoke first .So ?My Lord the Order of the Phoenix intends to move Harry Potter from his current place of safety on Saturday next at nightfall .The interest around the table sharpened palpably Some stiffened others fidgeted all gazing at Snape and Voldemort .Saturday .at nightfall repeated Voldemort .His red eyes fastened upon Snape s black ones with such intensity that some of the watchers looked away apparently fearful that they themselves would be scorched by the ferocity of the gaze .Snape however looked calmly back into Voldemorts face and after a moment or two Voldemorts lipless mouth curved into something like a smile .Good .Very good .And this information comes from the source we discussed said Snape .My Lord .Yaxley had leaned forward to look down the long table at Voldemort and Snape .All faces turned to him .My Lord I have heard differently .Yaxley waited but Voldemort did not speak so he went on Dawlish the Auror let slip that Potter will not be moved until the thirtieth the night before the boy turns seventeen .Snape was smiling .My source told me that there are plans to lay a false trail this must be it .No doubt a Confundus Charm has been placed upon Dawlish .It would not be the first time he is known to be susceptible .I assure you my Lord Dawlish seemed quite certain said Yaxley .If he has been Confunded naturally he is certain said Snape .I assure you Yaxley the Auror Office will play no further part in the protection of Harry Potter .The Order believes that we have infiltrated the Ministry .The Orders got one thing right then eh ?said a squat man sitting a short distance from Yaxley he gave a wheezy giggle that was echoed here and there along the table .Voldemort did not laugh .His gaze had wandered upward to the body revolving slowly overhead and he seemed to be lost in thought .My Lord Yaxley went on Dawlish believes an entire party of Aurors will be used to transfer the boy Voldemort held up a large white hand and Yaxley subsided at once watching resentfully as Voldemort turned back to Snape .Where are they going to hide the boy next ?At the home of one of the Order said Snape .The place according to the source has been given every protection that the Order and Ministry together could provide .I think that there is little chance of taking him once he is there my Lord unless of course the Ministry has fallen before next Saturday which might give us the opportunity to discover and undo enough of the enchantments to break through the rest .Well Yaxley ?Voldemort called down the table the firelight glinting strangely in his red eyes .Will the Ministry have fallen by next Saturday ?Once again all heads turned .Yaxley squared his shoulders .My Lord I have good news on that score .I have with difficulty and after great effort suceeded in placing an Imperius Curse upon Pius Thicknesse .Many of those sitting around Yaxley looked impressed his neighbor Dolohov a man with a long twisted face clapped him on the back .It is a start said Voldemort .But Thicknesse is only one man .Scrimgeour must be surrounded by our people before I act .One failed attempt on the Ministers life will set me back a long way .Yes my Lord that is true but you know as Head of the Department of Magical Law Enforcement Thicknesse has regular contact not only with the Minister himself but also with the Heads of all the other Ministry departments .It will I think be easy now that we have such a highranking official under our control to subjugate the others and then they can all work together to bring Scrimgeour down .As long as our friend Thicknesse is not discovered before he has converted the rest said Voldemort .At any rate it remains unlikely that the Ministry will be mine before next Saturday .If we cannot touch the boy at his destination then it must be done while he travels .We are at an advantage there my Lord said Yaxley who seemed determined to receive some portion of approval .We now have several people planted within the Department of Magical Transport .If Potter Apparates or uses the Floo Network we shall know immediately .He will not do either said Snape .The Order is eschewing any form of transport that is controlled or regulated by the Ministry they mistrust everything to do with the place .All the better said Voldemort .He will have to move in the open .Easier to take by far .Again Voldemort looked up at the slowly revolving body as he went on I shall attend to the boy in person .There have been too many mistakes where Harry Potter is concerned .Some of them have been my own .That Potter lives is due more to my errors than to his triumphs .The company around the table watched Voldemort apprehensively each of them by his or her expression afraid that they might be blamed for Harry Potters continued existence .Voldemort however seemed to be speaking more to himself than to any of them still addressing the unconscious body above him .I have been careless and so have been thwarted by luck and chance those wreckers of all but the best laid plans .But I know better now .I understand those things that I did not understand before .I must be the one to kill Harry Potter and I shall be .At these words seemingly in response to them a sudden wail sounded a terrible drawnout cry of misery and pain .Many of those at the table looked downward startled for the sound had seemed to issue from below their feet .Wormtail said Voldemort with no change in his quiet thoughtful tone and without removing his eyes from the revolving body above have I not spoken to you about keeping our prisoner quiet ?Yes mmy Lord gasped a small man halfway down the table who had been sitting so low in his chair that it had appeared at first glance to be unoccupied .Now he scrambled from his seat and scurried from the room leaving nothing behind him but a curious gleam of silver .As I was saying continued Voldemort looking again at the tense faces of his followers I understand better now .I shall need for instance to borrow a wand from one of you before I go to kill Potter .The faces around him displayed nothing but shock he might have announced that he wanted to borrow one of their arms .No volunteers ?said Voldemort .Lets see .Lucius I see no reason for you to have a wand anymore .Lucius Malfoy looked up .His skin appeared yellowish and waxy in the firelight and his eyes were sunken and shadowed .When he spoke his voice was hoarse .My Lord ?Your wand Lucius .I require your wand .Malfoy glanced sideways at his wife .She was staring straight ahead quite as pale as he was her long blonde hair hanging down her back but beneath the table her slim fingers closed briefly on his wrist .At her touch Malfoy put his hand into his robes withdrew a wand and passed it along to Voldemort who held it up in front of his red eyes examining it closely .What is it ?Elm my Lord whispered Malfoy .And the core ?Dragon dragon heartstring .Good said Voldemort .He drew out his own wand and compared the lengths .Lucius Malfoy made an involuntary movement for a fraction of a second it seemed he expected to receive Voldemorts wand in exchange for his own .The gesture was not missed by Voldemort whose eyes widened maliciously .Give you my wand Lucius ?My wand ?Some of the throng sniggered .I have given you your liberty Lucius is that not enough for you ?But I have noticed that you and your family seem less than happy of late .What is it about my presence in your home that displeases you Lucius ?Nothing nothing my Lord !Such lies Lucius .The soft voice seemed to hiss on even after the cruel mouth had stopped moving .One or two of the wizards barely repressed a shudder as the hissing grew louder something heavy could be heard sliding across the floor beneath the table .The huge snake emerged to climb slowly up Voldemorts chair .It rose seemingly endlessly and came to rest across Voldemorts shoulders its neck the thickness of a mans thigh its eyes with their vertical slits for pupils unblinking .Voldemort stroked the creature absently with long thin fingers still looking at Lucius Malfoy .Why do the Malfoys look so unhappy with their lot ?Is my return my rise to power not the very thing they professed to desire for so many years ?Of course my Lord said Lucius Malfoy .His hand shook as he wiped sweat from his upper lip .We did desire it we do .To Malfoys left his wife made an odd stiff nod her eyes averted from Voldemort and the snake .To his right his son Draco who had been gazing up at the inert body overhead glanced quickly at Voldemort and away again terrified to make eye contact .My Lord said a dark woman halfway down the table her voice constricted with emotion it is an honor to have you here in our familys house .There can be no higher pleasure .She sat beside her sister as unlike her in looks with her dark hair and heavily lidded eyes as she was in bearing and demeanor where Narcissa sat rigid and impassive Bellatrix leaned toward Voldemort for mere words could not demonstrate her longing for closeness .No higher pleasure repeated Voldemort his head tilted a little to one side as he considered Bellatrix .That means a great deal Bellatrix from you .Her face flooded with color her eyes welled with tears of delight .My Lord knows I speak nothing but the truth !No higher pleasure .even compared with the happy event that I hear has taken place in your family this week ?She stared at him her lips parted evidently confused .I dont know what you mean my Lord .Im talking about your niece Bellatrix .And yours Lucius and Narcissa .She has just married the werewolf Remus Lupin .You must be so proud .There was an eruption of jeering laughter from around the table .Many leaned forward to exchange gleeful looks a few thumped the table with their fists .The great snake disliking the disturbance opened its mouth wide and hissed angrily but the Death Eaters did not hear it so jubilant were they at Bellatrix and the Malfoys humiliation .Bellatrixs face so recently flushed with happiness had turned an ugly blotchy red .She is no niece of ours my Lord she cried over the outpouring of mirth .We Narcissa and I have never set eyes on our sister since she married the Mudblood .This brat has nothing to do with either of us nor any beast she marries .What say you Draco ?asked Voldemort and though his voice was quiet it carried clearly through the catcalls and jeers .Will you babysit the cubs ?The hilarity mounted Draco Malfoy looked in terror at his father who was staring down into his own lap then caught his mothers eye .She shook her head almost imperceptibly then resumed her own deadpan stare at the opposite wall .Enough said Voldemort stroking the angry snake .Enough .And the laughter died at once .Many of our oldest family trees become a little diseased over time he said as Bellatrix gazed at him breathless and imploring .You must prune yours must you not to keep it healthy ?Cut away those parts that threaten the health of the rest .Yes my Lord whispered Bellatrix and her eyes swam with tears of gratitude again .At the first chance !You shall have it said Voldemort .And in your family so in the world .we shall cut away the canker that infects us until only those of the true blood remain .Voldemort raised Lucius Malfoys wand pointed it directly at the slowly revolving figure suspended over the table and gave it a tiny flick .The figure came to life with a groan and began to struggle against invisible bonds .Do you recognize our guest Severus ?asked Voldemort .Snape raised his eyes to the upsidedown face .All of the Death Eaters were looking up at the captive now as though they had been given permission to show curiosity .As she revolved to face the firelight the woman said in a cracked and terrified voice Severus !Help me !Ah yes said Snape as the prisoner turned slowly away again .And you Draco ?asked Voldemort stroking the snakes snout with his wandfree hand .Draco shook his head jerkily .Now that the woman had woken he seemed unable to look at her anymore .But you would not have taken her classes said Voldemort .For those of you who do not know we are joined here tonight by Charity Burbage who until recently taught at Hogwarts School of Witchcraft and Wizardry .There were small noises of comprehension around the table .A broad hunched woman with pointed teeth cackled .Yes .Professor Burbage taught the children of witches and wizards all about Muggles .how they are not so different from us .One of the Death Eaters spat on the floor .Charity Burbage revolved to face Snape again .Severus .please .please .Silence said Voldemort with another twitch of Malfoys wand and Charity fell silent as if gagged .Not content with corrupting and polluting the minds of Wizarding children last week Professor Burbage wrote an impassioned defense of Mudbloods in the Daily Prophet Wizards she says must accept these thieves of their knowledge and magic .The dwindling of the purebloods is says Professor Burbage a most desirable circumstance .She would have us all mate with Muggles .or no doubt werewolves .Nobody laughed this time There was no mistaking the anger and contempt in Voldemorts voice .For the third time Charity Burbage revolved to face Snape .Tears were pouring from her eyes into her hair .Snape looked back at her quite impassive as she turned slowly away from him again .Avada Kedavra .The flash of green light illuminated every corner of the room .Charity fell with a resounding crash onto the table below which trembled and creaked .Several of the Death Eaters leapt back in their chairs .Draco fell out of his onto the floor .Dinner Nagini said Voldemort softly and the great snake swayed and slithered from his shoulders onto the polished wood .IN MEMORIAM Harry was bleeding .Clutching his right hand in his left and swearing under his breath he shouldered open his bedroom door .There was a crunch of breaking china He had trodden on a cup of cold tea that had been sitting on the floor outside his bedroom door .What the ?He looked around the landing of number four Privet Drive was deserted .Possibly the cup of tea was Dudleys idea of a clever booby trap .Keeping his bleeding hand elevated Harry scraped the fragments of cup together with the other hand and threw them into the already crammed bin just visible inside his bedroom door .Then he tramped across to the bathroom to run his finger under the tap .It was stupid pointless irritating beyond belief that he still had four days left of being unable to perform magic .but he had to admit to himself that this jagged cut in his finger would have defeated him .He had never learned how to repair wounds and now he came to think of it particularly in light of his immediate plans this seemed a serious flaw in his magical education .Making a mental note to ask Hermione how it was done he used a large wad of toilet paper to mop up as much of the tea as he could before returning to his bedroom and slamming the door behind him .Harry had spent the morning completely emptying his school trunk for the first time since he had packed it six years ago .At the start of the intervening school years he had merely skimmed off the topmost three quarters of the contents and replaced or updated them leaving a layer of general debris at the bottom old quills desiccated beetle eyes single socks that no longer fit .Minutes previously Harry had plunged his hand into this mulch experienced a stabbing pain in the fourth finger of his right hand and withdrawn it to see a lot of blood .He now proceeded a little more cautiously .Kneeling down beside the trunk again he groped around in the bottom and after retrieving an old badge that flickered feebly between Support CEDRIC DIGGORY and POTTER STINKS a cracked and wornout Sneakoscope and a gold locket inside which a note signed R .A .B .had been hidden he finally discovered the sharp edge that had done the damage .He recognized it at once .It was a twoinchlong fragment of the enchanted mirror that his dead godfather Sirius had given him .Harry laid it aside and felt cautiously around the trunk for the rest but nothing more remained of his godfathers last gift except powdered glass which clung to the deepest layer of debris like glittering grit .Harry sat up and examined the jagged piece on which he had cut himself seeing nothing but his own bright green eye reflected back at him .Then he placed the fragment on top of that mornings Daily Prophet which lay unread on the bed and attempted to stem the sudden upsurge of bitter memories the stabs of regret and of longing the discovery of the broken mirror had occasioned by attacking the rest of the rubbish in the trunk .It took another hour to empty it completely throw away the useless items and sort the remainder in piles according to whether or not he would need them from now on .His school and Quidditch robes cauldron parchment quills and most of his textbooks were piled in a corner to be left behind .He wondered what his aunt and uncle would do with them burn them in the dead of night probably as if they were the evidence of some dreadful crime .His Muggle clothing Invisibility Cloak potionmaking kit certain books the photograph album Hagrid had once given him a stack of letters and his wand had been repacked into an old rucksack .In a front pocket were the Marauders Map and the locket with the note signed R .A .B .inside it .The locket was accorded this place of honor not because it was valuable in all usual senses it was worthless but because of what it had cost to attain it .This left a sizable stack of newspapers sitting on his desk beside his snowy owl Hedwig one for each of the days Harry had spent at Privet Drive this summer .He got up off the floor stretched and moved across to his desk .Hedwig made no movement as he began to flick through the newspapers throwing them onto the rubbish pile one by one .The owl was asleep or else faking she was angry with Harry about the limited amount of time she was allowed out of her cage at the moment .As he neared the bottom of the pile of newspapers Harry slowed down searching for one particular issue that he knew had arrived shortly after he had returned to Privet Drive for the summer he remembered that there had been a small mention on the front about the resignation of Charity Burbage the Muggle Studies teacher at Hogwarts .At last he found it .Turning to page ten he sank into his desk chair and reread the article he had been looking for .ALBUS DUMBLEDORE REMEMBERED by Elphias Doge I met Albus Dumbledore at the age of eleven on our first day at Hogwarts .Our mutual attraction was undoubtedly due to the fact that we both felt ourselves to be outsiders .I had contracted dragon pox shortly before arriving at school and while I was no longer contagious my pockmarked visage and greenish hue did not encourage many to approach me .For his part Albus had arrived at Hogwarts under the burden of unwanted notoriety .Scarcely a year previously his father Percival had been convicted of a savage and wellpublicized attack upon three young Muggles .Albus never attempted to deny that his father who was to die in Azkaban had committed this crime on the contrary when I plucked up courage to ask him he assured me that he knew his father to be guilty .Beyond that Dumbledore refused to speak of the sad business though many attempted to make him do so .Some indeed were disposed to praise his fathers action and assumed that Albus too was a Muggle hater .They could not have been more mistaken As anybody who knew Albus would attest he never revealed the remotest antiMuggle tendency .Indeed his determined support for Muggle rights gained him many enemies in subsequent years .In a matter of months however Albuss own fame had begun to eclipse that of his father .By the end of his first year he would never again be known as the son of a Mugglehater but as nothing more or less than the most brilliant student ever seen at the school .Those of us who were privileged to be his friends benefited from his example not to mention his help and encouragement with which he was always generous .He confessed to me in later life that he knew even then that his greatest pleasure lay in teaching .He not only won every prize of note that the school offered he was soon in regular correspondence with the most notable magical names of the day including Nicolas Flamel the celebrated alchemist Bathilda Bagshot the noted historian and Adalbert Waffling the magical theoretician .Several of his papers found their way into learned publications such as Transfiguration Today Challenges in Charming and The Practical Potioneer .Dumbledores future career seemed likely to be meteoric and the only question that remained was when he would become Minister of Magic .Though it was often predicted in later years that he was on the point of taking the job however he never had Ministerial ambitions .Three years after we had started at Hogwarts Albuss brother Aberforth arrived at school .They were not alike Aberforth was never bookish and unlike Albus preferred to settle arguments by dueling rather than through reasoned discussion .However it is quite wrong to suggest as some have that the brothers were not friends .They rubbed along as comfortably as two such different boys could do .In fairness to Aberforth it must be admitted that living in Albuss shadow cannot have been an altogether comfortable experience .Being continually outshone was an occupational hazard of being his friend and cannot have been any more pleasurable as a brother .When Albus and I left Hogwarts we intended to take the then traditional tour of the world together visiting and observing foreign wizards before pursuing our separate careers .However tragedy intervened .On the very eve of our trip Albuss mother Kendra died leaving Albus the head and sole breadwinner of the family .I postponed my departure long enough to pay my respects at Kendras funeral then left for what was now to be a solitary journey .With a younger brother and sister to care for and little gold left to them there could no longer be any question of Albus accompanying me .That was the period of our lives when we had least contact .I wrote to Albus describing perhaps insensitively the wonders of my journey from narrow escapes from chimaeras in Greece to the experiments of the Egyptian alchemists .His letters told me little of his daytoday life which I guessed to be frustratingly dull for such a brilliant wizard .Immersed in my own experiences it was with horror that I heard toward the end of my years travels that yet another tragedy had struck the Dumbledores the death of his sister Ariana .Though Ariana had been in poor health for a long time the blow coming so soon after the loss of their mother had a profound effect on both of her brothers .All those closest to Albus and I count myself one of that lucky number agree that Ariana s death and Albuss feeling of personal responsibility for it though of course he was guiltless left their mark upon him forevermore .I returned home to find a young man who had experienced a much older persons suffering .Albus was more reserved than before and much less light hearted .To add to his misery the loss of Ariana had led not to a renewed closeness between Albus and Aberforth but to an estrangement .In time this would lift in later years they reestablished if not a close relationship then certainly a cordial one .However he rarely spoke of his parents or of Ariana from then on and his friends learned not to mention them .Other quills will describe the triumphs of the following years .Dumbledores innumerable contributions to the store of Wizarding knowledge including his discovery of the twelve uses of dragons blood will benefit generations to come as will the wisdom he displayed in the many judgments he made while Chief Warlock of the Wizengamot .They say still that no Wizarding duel ever matched that between Dumbledore and Grindelwald in 1 945 .Those who witnessed it have written of the terror and the awe they felt as they watched these two extraordinary wizards do battle .Dumbledores triumph and its consequences for the Wizarding world are considered a turning point in magical history to match the introduction of the International Statute of Secrecy or the downfall of He WhoMustNotBeNamed .Albus Dumbledore was never proud or vain he could find something to value in anyone however apparently insignificant or wretched and I believe that his early losses endowed him with great humanity and sympathy .I shall miss his friendship more than I can say but my loss is as nothing compared to the Wizarding worlds .That he was the most inspiring and the best loved of all Hogwarts headmasters cannot be in question .He died as he lived working always for the greater good and to his last hour as willing to stretch out a hand to a small boy with dragon pox as he was on the day that I met him .Harry finished reading but continued to gaze at the picture accompanying the obituary .Dumbledore was wearing his familiar kindly smile but as he peered over the top of his halfmoon spectacles he gave the impression even in newsprint of Xraying Harry whose sadness mingled with a sense of humiliation .He had thought he knew Dumbledore quite well but ever since reading this obituary he had been forced to recognize that he had barely known him at all .Never once had he imagined Dumbledore s childhood or youth it was as though he had sprung into being as Harry had known him venerable and silverhaired and old .The idea of a teenage Dumbledore was simply odd like trying to imagine a stupid Hermione or a friendly BlastEnded Skrewt .He had never thought to ask Dumbledore about his past .No doubt it would have felt strange impertinent even but after all it had been common knowledge that Dumbledore had taken part in that legendary duel with Grindelwald and Harry had not thought to ask Dumbledore what that had been like nor about any of his other famous achievements .No they had always discussed Harry Harrys past Harrys future Harrys plans .and it seemed to Harry now despite the fact that his future was so dangerous and so uncertain that he had missed irreplaceable opportunities when he had failed to ask Dumbledore more about himself even though the only personal question he had ever asked his headmaster was also the only one he suspected that Dumbledore had not answered honestly What do you see when you look in the mirror ??I see myself holding a pair of thick woolen socks .After several minutes thought Harry tore the obituary out of the Prophet folded it carefully and tucked it inside the first volume of Practical Defensive Magic and Its Use Against the Dark Arts .Then he threw the rest of the newspaper onto the rubbish pile and turned to face the room .It was much tidier .The only things left out of place were todays Daily Prophet still lying on the bed and on top of it the piece of broken mirror .Harry moved across the room slid the mirror fragment off todays Prophet and unfolded the newspaper .He had merely glanced at the headline when he had taken the rolledup paper from the delivery owl early that morning and thrown it aside after noting that it said nothing about Voldemort .Harry was sure that the Ministry was leaning on the Prophet to suppress news about Voldemort .It was only now therefore that he saw what he had missed .Across the bottom half of the front page a smaller headline was set over a picture of Dumbledore striding along looking harried DUMBLEDORE THE TRUTH AT LAST ?Coming next week the shocking story of the flawed genius considered by many to be the greatest wizard of his generation .Stripping away the popular image of serene silverbearded wisdom Rita Skeeter reveals the disturbed childhood the lawless youth the lifelong feuds and the guilty secrets that Dumbledore carried to his grave .WHY was the man tipped to be Minister of Magic content to remain a mere headmaster ?WHAT was the real purpose of the secret organization known as the Order of the Phoenix ?HOW did Dumbledore really meet his end ?The answers to these and many more questions are explored in the explosive new biography The Life and Lies of Albus Dumbledore by Rita Skeeter exclusively interviewed by Betty Braithwaite In person Rita Skeeter is much warmer and softer than her famously ferocious quillportraits might suggest .Greeting me in the hallway of her cozy home she leads me straight into the kitchen for a cup of tea a slice of pound cake and it goes without saying a steaming vat of freshest gossip .Well of course Dumbledore is a biographers dream says Skeeter .Such a long full life .Im sure my book will be the first of very very many .Skeeter was certainly quick off the mark .Her nine hundredpage book was completed a mere four weeks after Dumbledore s mysterious death in June .I ask her how she managed this superfast feat .Oh when youve been a journalist as long as I have working to a deadline is second nature .I knew that the Wizarding world was clamoring for the full story and I wanted to be the first to meet that need .I mention the recent widely publicized remarks of Elphias Doge Special Advisor to the Wizengamot and longstanding friend of Albus Dumbledores that Skeeters book contains less fact than a Chocolate Frog card .Skeeter throws back her head and laughs .Darling Dodgy !I remember interviewing him a few years back about merpeople rights bless him .Completely gaga seemed to think we were sitting at the bottom of Lake Windermere kept telling me to watch out for trout .And yet Elphias Doges accusations of inaccuracy have been echoed in many places .Does Skeeter really feel that four short weeks have been enough to gain a full picture of Dumbledores long and extraordinary life ?Oh my dear beams Skeeter rapping me affectionately across the knuckles you know as well as I do how much information can be generated by a fat bag of Galleons a refusal to hear the word ‘no and a nice sharp QuickQuotes Quill !People were queuing to dish the dirt on Dumbledore anyway .Not everyone thought he was so wonderful you know he trod on an awful lot of important toes .But old Dodgy Doge can get off his high hippogriff because Ive had access to a source most journalists would swap their wands for one who has never spoken in public before and who was close to Dumbledore during the most turbulent and disturbing phase of his youth .The advance publicity for Skeeter s biography has certainly suggested that there will be shocks in store for those who believe Dumbledore to have led a blameless life .What were the biggest surprises she uncovered I ask ?Now come off it Betty Im not giving away all the highlights before anybodys bought the book !laughs Skeeter .But I can promise that anybody who still thinks Dumbledore was white as his beard is in for a rude awakening !Lets just say that nobody hearing him rage against YouKnowWho would have dreamed that he dabbled in the Dark Arts himself in his youth !And for a wizard who spent his later years pleading for tolerance he wasnt exactly broadminded when he was younger !Yes Albus Dumbledore had an extremely murky past not to mention that very fishy family which he worked so hard to keep hushed up .I ask whether Skeeter is referring to Dumbledore s brother Aberforth whose conviction by the Wizengamot for misuse of magic caused a minor scandal fifteen years ago .Oh Aberforth is just the tip of the dung heap laughs Skeeter .No no Im talking about much worse than a brother with a fondness for fiddling about with goats worse even than the Mugglemaiming father Dumbledore couldnt keep either of them quiet anyway they were both charged by the Wizengamot .No its the mother and the sister that intrigued me and a little digging uncovered a positive nest of nastiness but as I say youll have to wait for chapters nine to twelve for full details .All I can say now is its no wonder Dumbledore never talked about how his nose got broken .Family skeletons notwithstanding does Skeeter deny the brilliance that led to Dumbledore s many magical discoveries ?He had brains she concedes although many now question whether he could really take full credit for all of his supposed achievements .As I reveal in chapter sixteen Ivor Dillonsby claims he had already discovered eight uses of dragons blood when Dumbledore ‘borrowed his papers .But the importance of some of Dumbledores achievements cannot I venture be denied .What of his famous defeat of Grindelwald ?Oh now Im glad you mentioned Grindelwald says Skeeter with a tantalizing smile .Im afraid those who go dewyeyed over Dumbledores spectacular victory must brace themselves for a bombshell or perhaps a Dungbomb .Very dirty business indeed .All Ill say is dont be so sure that there really was the spectacular duel of legend .After theyve read my book people may be forced to conclude that Grindelwald simply conjured a white handkerchief from the end of his wand and came quietly !Skeeter refuses to give any more away on this intriguing subject so we turn instead to the relationship that will undoubtedly fascinate her readers more than any other .Oh yes says Skeeter nodding briskly I devote an entire chapter to the whole PotterDumbledore relationship .Its been called unhealthy even sinister .Again your readers will have to buy my book for the whole story but there is no question that Dumbledore took an unnatural interest in Potter from the word go .Whether that was really in the boys best interests well well see .Its certainly an open secret that Potter has had a most troubled adolescence .I ask whether Skeeter is still in touch with Harry Potter whom she so famously interviewed last year a breakthrough piece in which Potter spoke exclusively of his conviction that YouKnowWho had returned .Oh yes weve developed a close bond says Skeeter .Poor Potter has few real friends and we met at one of the most testing moments of his life the Triwizard Tournament .I am probably one of the only people alive who can say that they know the real Harry Potter .Which leads us neatly to the many rumors still circulating about Dumbledores final hours .Does Skeeter believe that Potter was there when Dumbledore died ?Well I dont want to say too much its all in the book but eyewitnesses inside Hogwarts castle saw Potter running away from the scene moments after Dumbledore fell jumped or was pushed .Potter later gave evidence against Severus Snape a man against whom he has a notorious grudge .Is everything as it seems ?That is for the Wizarding community to decide once theyve read my book .On that intriguing note I take my leave .There can be no doubt that Skeeter has quilled an instant bestseller .Dumbledores legions of admirers meanwhile may well be trembling at what is soon to emerge about their hero .Harry reached the bottom of the article but continued to stare blankly at the page .Revulsion and fury rose in him like vomit he balled up the newspaper and threw it with all his force at the wall where it joined the rest of the rubbish heaped around his overflowing bin .He began to stride blindly around the room opening empty drawers and picking up books only to replace them on the same piles barely conscious of what he was doing as random phrases from Ritas article echoed in his head An entire chapter to the whole PotterDumbledore relationship .Its been called unhealthy even sinister .He dabbled in the Dark Arts himself in his youth .Ive had access to a source most journalists would swap their wands for .Lies !Harry bellowed and through the window he saw the nextdoor neighbor who had paused to restart his lawn mower look up nervously .Harry sat down hard on the bed .The broken bit of mirror danced away from him he picked it up and turned it over in his fingers thinking thinking of Dumbledore and the lies with which Rita Skeeter was defaming him .A flash of brightest blue .Harry froze his cut finger slipping on the jagged edge of the mirror again .He had imagined it he must have done .He glanced over his shoulder but the wall was a sickly peach color of Aunt Petunias choosing There was nothing blue there for the mirror to reflect .He peered into the mirror fragment again and saw nothing but his own bright green eye looking back at him .He had imagined it there was no other explanation imagined it because he had been thinking of his dead headmaster .If anything was certain it was that the bright blue eyes of Albus Dumbledore would never pierce him again .3 THE DURSLEYS DEPARTING The sound of the front door slamming echoed up the stairs and a voice yelled Oi !You !Sixteen years of being addressed thus left Harry in no doubt whom his uncle was calling nevertheless he did not immediately respond .He was still gazing at the mirror fragment in which for a split second he had thought he saw Dumbledores eye .It was not until his uncle bellowed BOY !that Harry got slowly to his feet and headed for the bedroom door pausing to add the piece of broken mirror to the rucksack filled with things he would be taking with him .You took your time !roared Vernon Dursley when Harry appeared at the top of the stairs .Get down here I want a word !Harry strolled downstairs his hands deep in his jeans pockets .When he reached the living room he found all three Dursleys .They were dressed for traveling Uncle Vernon in a fawn zipup jacket Aunt Petunia in a neat salmoncolored coat and Dudley Harrys large blond muscular cousin in his leather jacket .Yes ?asked Harry .Sit down !said Uncle Vernon .Harry raised his eyebrows .Please !added Uncle Vernon wincing slightly as though the word was sharp in his throat .Harry sat .He thought he knew what was coming .His uncle began to pace up and down Aunt Petunia and Dudley following his movements with anxious expressions .Finally his large purple face crumpled with concentration Uncle Vernon stopped in front of Harry and spoke .Ive changed my mind he said .What a surprise said Harry .Dont you take that tone began Aunt Petunia in a shrill voice but Vernon Dursley waved her down .Its all a lot of claptrap said Uncle Vernon glaring at Harry with piggy little eyes .Ive decided I dont believe a word of it .Were staying put were not going anywhere .Harry looked up at his uncle and felt a mixture of exasperation and amusement .Vernon Dursley had been changing his mind every twentyfour hours for the past four weeks packing and unpacking and repacking the car with every change of heart .Harrys favorite moment had been the one when Uncle Vernon unaware that Dudley had added his dumbbells to his case since the last time it had been unpacked had attempted to hoist it back into the boot and collapsed with roars of pain and much swearing .According to you Vernon Dursley said now resuming his pacing up and down the living room we Petunia Dudley and I are in danger .From from Some of ‘my lot right said Harry .Well I dont believe it repeated Uncle Vernon coming to a halt in front of Harry again .I was awake half the night thinking it all over and I believe its a plot to get the house .The house ?repeated Harry .What house ?This house !shrieked Uncle Vernon the vein in his forehead starting to pulse .Our house !House prices are skyrocketing around here !You want us out of the way and then youre going to do a bit of hocuspocus and before we know it the deeds will be in your name and Are you out of your mind ?demanded Harry .A plot to get this house ?Are you actually as stupid as you look ?Dont you dare !squealed Aunt Petunia but again Vernon waved her down Slights on his personal appearance were it seemed as nothing to the danger he had spotted .Just in case youve forgotten said Harry Ive already got a house my godfather left me one .So why would I want this one ?All the happy memories ?There was silence .Harry thought he had rather impressed his uncle with this argument .You claim said Uncle Vernon starting to pace yet again that this Lord Thing Voldemort said Harry impatiently and weve been through this about a hundred times already .This isnt a claim its fact Dumbledore told you last year and Kingsley and Mr Weasley Vernon Dursley hunched his shoulders angrily and Harry guessed that his uncle was attempting to ward off recollections of the unannounced visit a few days into Harrys summer holidays of two fully grown wizards .The arrival on the doorstep of Kingsley Shacklebolt and Arthur Weasley had come as a most unpleasant shock to the Dursleys .Harry had to admit however that as Mr Weasley had once demolished half of the living room his reappearance could not have been expected to delight Uncle Vernon .Kingsley and Mr Weasley explained it all as well Harry pressed on remorselessly .Once Im seventeen the protective charm that keeps me safe will break and that exposes you as well as me .The Order is sure Voldemort will target you whether to torture you to try and find out where I am or because he thinks by holding you hostage Id come and try to rescue you .Uncle Vernons and Harrys eyes met .Harry was sure that in that instant they were both wondering the same thing .Then Uncle Vernon walked on and Harry resumed Youve got to go into hiding and the Order wants to help .Youre being offered serious protection the best there is .Uncle Vernon said nothing but continued to pace up and down .Outside the sun hung low over the privet hedges .The nextdoor neighbors lawn mower stalled again .I thought there was a Ministry of Magic ?asked Vernon Dursley abruptly .There is said Harry surprised .Well then why cant they protect us ?It seems to me that as innocent victims guilty of nothing more than harboring a marked man we ought to qualify for government protection !Harry laughed he could not help himself .It was so very typical of his uncle to put his hopes in the establishment even within this world that he despised and mistrusted .You heard what Mr Weasley and Kingsley said Harry replied .We think the Ministry has been infiltrated .Uncle Vernon strode to the fireplace and back breathing so heavily that his great black mustache rippled his face still purple with concentration .All right he said stopping in front of Harry yet again .All right lets say for the sake of argument we accept this protection .I still dont see why we cant have that Kingsley bloke .Harry managed not to roll his eyes but with difficulty .This question had also been addressed half a dozen times .As Ive told you he said through gritted teeth Kingsley is protecting the Mug I mean your Prime Minister .Exactly hes the best !said Uncle Vernon pointing at the blank television screen .The Dursleys had spotted Kingsley on the news walking along discreetly behind the Muggle Prime Minister as he visited a hospital .This and the fact that Kingsley had mastered the knack of dressing like a Muggle not to mention a certain reassuring something in his slow deep voice had caused the Dursleys to take to Kingsley in a way that they had certainly not done with any other wizard although it was true that they had never seen him with his earring in .Well hes taken said Harry .But Hestia Jones and Dedalus Diggle are more than up to the job If wed even seen CVs .began Uncle Vernon but Harry lost patience .Getting to his feet he advanced on his uncle now pointing at the TV set himself .These accidents arent accidents the crashes and explosions and derailments and whatever else has happened since we last watched the news .People are disappearing and dying and hes behind it Voldemort .Ive told you this over and over again he kills Muggles for fun .Even the fogs theyre caused by dementors and if you cant remember what they are ask your son !Dudleys hands jerked upward to cover his mouth .With his parents and Harrys eyes upon him he slowly lowered them again and asked There are .more of them ?More ?laughed Harry .More than the two that attacked us you mean ?Of course there are there are hundreds maybe thousands by this time seeing as they feed off fear and despair All right all right blustered Vernon Dursley .Youve made your point I hope so said Harry because once Im seventeen all of them Death Eaters dementors maybe even Inferi which means dead bodies enchanted by a Dark wizard will be able to find you and will certainly attack you .And if you remember the last time you tried to outrun wizards I think you 11 agree you need help .There was a brief silence in which the distant echo of Hagrid smashing down a wooden front door seemed to reverberate through the intervening years .Aunt Petunia was looking at Uncle Vernon Dudley was staring at Harry .Finally Uncle Vernon blurted out But what about my work ?What about Dudleys school ?I dont suppose those things matter to a bunch of layabout wizards Dont you understand ?shouted Harry .They will torture and kill you like they did my parents !Dad said Dudley in a loud voice Dad Im going with these Order people .Dudley said Harry for the first time in your life youre talking sense .He knew that the battle was won .If Dudley was frightened enough to accept the Orders help his parents would accompany him There could be no question of being separated from their Diddykins .Harry glanced at the carriage clock on the mantelpiece .Theyll be here in about five minutes he said and when none of the Dursleys replied he left the room .The prospect of parting probably forever from his aunt uncle and cousin was one that he was able to contemplate quite cheerfully but there was nevertheless a certain awkwardness in the air .What did you say to one another at the end of sixteen years solid dislike ?Back in his bedroom Harry fiddled aimlessly with his rucksack then poked a couple of owl nuts through the bars of Hedwigs cage .They fell with dull thuds to the bottom where she ignored them .Were leaving soon really soon Harry told her .And then youll be able to fly again .The doorbell rang .Harry hesitated then headed back out of his room and downstairs .It was too much to expect Hestia and Dedalus to cope with the Dursleys on their own .Harry Potter !squeaked an excited voice the moment Harry had opened the door a small man in a mauve top hat was sweeping him a deep bow .An honor as ever !Thanks Dedalus said Harry bestowing a small and embarrassed smile upon the darkhaired Hestia .Its really good of you to do this .Theyre through here my aunt and uncle and cousin .Good day to you Harry Potters relatives !said Dedalus happily striding into the living room .The Dursleys did not look at all happy to be addressed thus Harry half expected another change of mind .Dudley shrank nearer to his mother at the sight of the witch and wizard .I see you are packed and ready .Excellent !The plan as Harry has told you is a simple one said Dedalus pulling an immense pocket watch out of his waistcoat and examining it .We shall be leaving before Harry does .Due to the danger of using magic in your house Harry being still underage it could provide the Ministry with an excuse to arrest him we shall be driving say ten miles or so before Disapparating to the safe location we have picked out for you .You know how to drive I take it ?he asked Uncle Vernon politely .Know how to ?Of course I ruddy well know how to drive !spluttered Uncle Vernon .Very clever of you sir very clever I personally would be utterly bamboozled by all those buttons and knobs said Dedalus .He was clearly under the impression that he was flattering Vernon Dursley who was visibly losing confidence in the plan with every word Dedalus spoke .Cant even drive he muttered under his breath his mustache rippling indignantly but fortunately neither Dedalus nor Hestia seemed to hear him .You Harry Dedalus continued will wait here for your guard .There has been a little change in the arrangements What dyou mean ?said Harry at once .I thought MadEye was going to come and take me by Side Along Apparition ?Cant do it said Hestia tersely .MadEye will explain .The Dursleys who had listened to all of this with looks of utter incomprehension on their faces jumped as a loud voice screeched Hurry up Harry looked all around the room before realizing that the voice had issued from Dedaluss pocket watch .Quite right were operating to a very tight schedule said Dedalus nodding at his watch and tucking it back into his waistcoat .We are attempting to time your departure from the house with your familys Disapparition Harry thus the charm breaks at the moment you all head for safety .He turned to the Dursleys .Well are we all packed and ready to go ?None of them answered him .Uncle Vernon was still staring appalled at the bulge in Dedaluss waistcoat pocket .Perhaps we should wait outside in the hall Dedalus murmured Hestia .She clearly felt that it would be tactless for them to remain in the room while Harry and the Dursleys exchanged loving possibly tearful farewells .Theres no need Harry muttered but Uncle Vernon made any further explanation unnecessary by saying loudly Well this is goodbye then boy .He swung his right arm upward to shake Harrys hand but at the last moment seemed unable to face it and merely closed his fist and began swinging it backward and forward like a metronome .Ready Diddy ?asked Aunt Petunia fussily checking the clasp of her handbag so as to avoid looking at Harry altogether .Dudley did not answer but stood there with his mouth slightly ajar reminding Harry a little of the giant Grawp .Come along then said Uncle Vernon .He had already reached the living room door when Dudley mumbled I dont understand .What dont you understand popkin ?asked Aunt Petunia looking up at her son .Dudley raised a large hamlike hand to point at Harry .Why isnt he coming with us ?Uncle Vernon and Aunt Petunia froze where they stood staring at Dudley as though he had just expressed a desire to become a ballerina .What ?said Uncle Vernon loudly .Why isnt he coming too ?asked Dudley .Well he he doesnt want to said Uncle Vernon turning to glare at Harry and adding You dont want to do you ?Not in the slightest said Harry .There you are Uncle Vernon told Dudley .Now come on were off .He marched out of the room .They heard the front door open but Dudley did not move and after a few faltering steps Aunt Petunia stopped too .What now ?barked Uncle Vernon reappearing in the doorway .It seemed that Dudley was struggling with concepts too difficult to put into words .After several moments of apparently painful internal struggle he said But wheres he going to go ?Aunt Petunia and Uncle Vernon looked at each other .It was clear that Dudley was frightening them .Hestia Jones broke the silence .But .surely you know where your nephew is going ?she asked looking bewildered .Certainly we know said Vernon Dursley .Hes off with some of your lot isnt he ?Right Dudley lets get in the car you heard the man were in a hurry .Again Vernon Dursley marched as far as the front door but Dudley did not follow .Off with some of our lot ?Hestia looked outraged .Harry had met this attitude before Witches and wizards seemed stunned that his closest living relatives took so little interest in the famous Harry Potter .Its fine Harry assured her .It doesnt matter honestly .Doesnt matter ?repeated Hestia her voice rising ominously .Dont these people realize what youve been through ?What danger you are in ?The unique position you hold in the hearts of the antiVoldemort movement ?Er no they dont said Harry .They think Im a waste of space actually but Im used to I dont think youre a waste of space .If Harry had not seen Dudleys lips move he might not have believed it .As it was he stared at Dudley for several seconds before accepting that it must have been his cousin who had spoken for one thing Dudley had turned red .Harry was embarrassed and astonished himself .Well .er .thanks Dudley .Again Dudley appeared to grapple with thoughts too unwieldy for expression before mumbling You saved my life .Not really said Harry .It was your soul the dementor would have taken .He looked curiously at his cousin .They had had virtually no contact during this summer or last as Harry had come back to Privet Drive so briefly and kept to his room so much .It now dawned on Harry however that the cup of cold tea on which he had trodden that morning might not have been a booby trap at all .Although rather touched he was nevertheless quite relieved that Dudley appeared to have exhausted his ability to express his feelings .After opening his mouth once or twice more Dudley subsided into scarletfaced silence .Aunt Petunia burst into tears .Hestia Jones gave her an approving look that changed to outrage as Aunt Petunia ran forward and embraced Dudley rather than Harry .Sso sweet Dudders .she sobbed into his massive chest .Ssuch a lovely bboy .ssaying thank you But he hasnt said thank you at all !said Hestia indignantly .He only said he didnt think Harry was a waste of space !Yeah but coming from Dudley thats like ‘I love you said Harry torn between annoyance and a desire to laugh as Aunt Petunia continued to clutch at Dudley as if he had just saved Harry from a burning building .Are we going or not ?roared Uncle Vernon reappearing yet again at the living room door .I thought we were on a tight schedule !Yes yes we are said Dedalus Diggle who had been watching these exchanges with an air of bemusement and now seemed to pull himself together .We really must be off .Harry He tripped forward and wrung Harrys hand with both of his own .good luck .I hope we meet again .The hopes of the Wizarding world rest upon your shoulders .Oh said Harry right .Thanks .Farewell Harry said Hestia also clasping his hand .Our thoughts go with you .I hope everythings okay said Harry with a glance toward Aunt Petunia and Dudley .Oh Im sure we shall end up the best of chums said Diggle brightly waving his hat as he left the room .Hestia followed him .Dudley gently released himself from his mothers clutches and walked toward Harry who had to repress an urge to threaten him with magic .Then Dudley held out his large pink hand .Blimey Dudley said Harry over Aunt Petunias renewed sobs did the dementors blow a different personality into you ?Dunno muttered Dudley .See you Harry .Yeah .said Harry taking Dudleys hand and shaking it .Maybe .Take care Big D .Dudley nearly smiled then lumbered from the room .Harry heard his heavy footfalls on the graveled drive and then a car door slammed .Aunt Petunia whose face had been buried in her handkerchief looked around at the sound .She did not seem to have expected to find herself alone with Harry .Hastily stowing her wet handkerchief into her pocket she said Well goodbye and marched toward the door without looking at him .Goodbye said Harry .She stopped and looked back .For a moment Harry had the strangest feeling that she wanted to say something to him She gave him an odd tremulous look and seemed to teeter on the edge of speech but then with a little jerk of her head she bustled out of the room after her husband and son .THE SEVEN POTTERS Harry ran back upstairs to his bedroom arriving at the window just in time to see the Dursleys car swinging out of the drive and off up the road .Dedaluss top hat was visible between Aunt Petunia and Dudley in the backseat .The car turned right at the end of Privet Drive its windows burned scarlet for a moment in the now setting sun and then it was gone .Harry picked up Hedwigs cage his Firebolt and his rucksack gave his unnaturally tidy bedroom one last sweeping look and then made his ungainly way back downstairs to the hall where he deposited cage broomstick and bag near the foot of the stairs .The light was fading rapidly now the hall full of shadows in the evening light .It felt most strange to stand here in the silence and know that he was about to leave the house for the last time .Long ago when he had been left alone while the Dursleys went out to enjoy themselves the hours of solitude had been a rare treat Pausing only to sneak something tasty from the fridge he had rushed upstairs to play on Dudleys computer or put on the television and flicked through the channels to his hearts content .It gave him an odd empty feeling to remember those times it was like remembering a younger brother whom he had lost .Dont you want to take a last look at the place ?he asked Hedwig who was still sulking with her head under her wing .Well never be here again .Dont you want to remember all the good times ?I mean look at this doormat .What memories .Dudley puked on it after I saved him from the dementors .Turns out he was grateful after all can you believe it ? .And last summer Dumbledore walked through that front door .Harry lost the thread of his thoughts for a moment and Hedwig did nothing to help him retrieve it but continued to sit with her head under her wing .Harry turned his back on the front door .And under here Hedwig Harry pulled open a door under the stairs is where I used to sleep !You never knew me then Blimey its small Id forgotten .Harry looked around at the stacked shoes and umbrellas remembering how he used to wake every morning looking up at the underside of the staircase which was more often than not adorned with a spider or two .Those had been the days before he had known anything about his true identity before he had found out how his parents had died or why such strange things often happened around him .But Harry could still remember the dreams that had dogged him even in those days confused dreams involving flashes of green light and once Uncle Vernon had nearly crashed the car when Harry had recounted it a flying motorbike .There was a sudden deafening roar from somewhere nearby .Harry straightened up with a jerk and smacked the top of his head on the low door frame .Pausing only to employ a few of Uncle Vernons choicest swear words he staggered back into the kitchen clutching his head and staring out of the window into the back garden .The darkness seemed to be rippling the air itself quivering .Then one by one figures began to pop into sight as their Disillusionment Charms lifted .Dominating the scene was Hagrid wearing a helmet and goggles and sitting astride an enormous motorbike with a black sidecar attached .All around him other people were dismounting from brooms and in two cases skeletal black winged horses .Wrenching open the back door Harry hurtled into their midst .There was a general cry of greeting as Hermione flung her arms around him Ron clapped him on the back and Hagrid said All righ Harry ?Ready fer the off ?Definitely said Harry beaming around at them all .But I wasnt expecting this many of you !Change of plan growled MadEye who was holding two enormous bulging sacks and whose magical eye was spinning from darkening sky to house to garden with dizzying rapidity .Lets get undercover before we talk you through it .Harry led them all back into the kitchen where laughing and chattering they settled on chairs sat themselves upon Aunt Petunias gleaming work surfaces or leaned up against her spotless appliances Ron long and lanky Hermione her bushy hair tied back in a long plait Fred and George grinning identically Bill badly scarred and long haired Mr Weasley kindfaced balding his spectacles a little awry MadEye battleworn one legged his bright blue magical eye whizzing in its socket Tonks whose short hair was her favorite shade of bright pink Lupin grayer more lined Fleur slender and beautiful with her long silvery blonde hair Kingsley bald black broadshouldered Hagrid with his wild hair and beard standing hunchbacked to avoid hitting his head on the ceiling and Mundungus Fletcher small dirty and hangdog with his droopy basset hounds eyes and matted hair .Harrys heart seemed to expand and glow at the sight He felt incredibly fond of all of them even Mundungus whom he had tried to strangle the last time they had met .Kingsley I thought you were looking after the Muggle Prime Minister ?he called across the room .He can get along without me for one night said Kingsley .Youre more important .Harry guess what ?said Tonks from her perch on top of the washing machine and she wiggled her left hand at him a ring glittered there .You got married ?Harry yelped looking from her to Lupin .Im sorry you couldnt be there Harry it was very quiet .Thats brilliant congrat All right all right well have time for a cozy catchup later !roared Moody over the hubbub and silence fell in the kitchen .Moody dropped his sacks at his feet and turned to Harry .As Dedalus probably told you we had to abandon Plan A .Pius Thicknesse has gone over which gives us a big problem .Hes made it an imprisonable offense to connect this house to the Floo Network place a Portkey here or Apparate in or out .All done in the name of your protection to prevent YouKnowWho getting in at you .Absolutely pointless seeing as your mothers charm does that already .What hes really done is to stop you getting out of here safely .Second problem Youre underage which means youve still got the Trace on you .I dont The Trace the Trace !said MadEye impatiently .The charm that detects magical activity around underseventeens the way the Ministry finds out about underage magic !If you or anyone around you casts a spell to get you out of here Thicknesse is going to know about it and so will the Death Eaters .We cant wait for the Trace to break because the moment you turn seventeen youll lose all the protection your mother gave you .In short Pius Thicknesse thinks hes got you cornered good and proper .Harry could not help but agree with the unknown Thicknesse .So what are we going to do ?Were going to use the only means of transport left to us the only ones the Trace cant detect because we dont need to cast spells to use them brooms thestrals and Hagrids motorbike .Harry could see flaws in this plan however he held his tongue to give MadEye the chance to address them .Now your mothers charm will only break under two conditions when you come of age or Moody gestured around the pristine kitchen you no longer call this place home .You and your aunt and uncle are going your separate ways tonight in the full understanding that youre never going to live together again correct ?Harry nodded .So this time when you leave therell be no going back and the charm will break the moment you get outside its range .Were choosing to break it early because the alternative is waiting for YouKnowWho to come and seize you the moment you turn seventeen .The one thing weve got on our side is that You KnowWho doesnt know were moving you tonight .Weve leaked a fake trail to the Ministry They think youre not leaving until the thirtieth .However this is YouKnowWho were dealing with so we cant just rely on him getting the date wrong hes bound to have a couple of Death Eaters patrolling the skies in this general area just in case .So weve given a dozen different houses every protection we can throw at them .They all look like they could be the place were going to hide you theyve all got some connection with the Order my house Kingsleys place Mollys Auntie Muriels you get the idea .Yeah said Harry not entirely truthfully because he could still spot a gaping hole in the plan .Youll be going to Tonkss parents .Once youre within the boundaries of the protective enchantments weve put on their house youll be able to use a Portkey to the Burrow .Any questions ?Er yes said Harry .Maybe they wont know which of the twelve secure houses Im heading for at first but wont it be sort of obvious once he performed a quick headcount fourteen of us fly off toward Tonkss parents ?Ah said Moody I forgot to mention the key point .Fourteen of us wont be flying to Tonkss parents .There will be seven Harry Potters moving through the skies tonight each of them with a companion each pair heading for a different safe house .From inside his cloak Moody now withdrew a flask of what looked like mud .There was no need for him to say another word Harry understood the rest of the plan immediately .No !he said loudly his voice ringing through the kitchen .No way !I told them youd take it like this said Hermione with a hint of complacency .If you think Im going to let six people risk their lives !because its the first time for all of us said Ron .This is different pretending to be me Well none of us really fancy it Harry said Fred earnestly .Imagine if something went wrong and we were stuck as specky scrawny gits forever .Harry did not smile .You cant do it if I dont cooperate you need me to give you some hair .Well thats that plan scuppered said George .Obviously theres no chance at all of us getting a bit of your hair unless you cooperate .Yeah thirteen of us against one bloke whos not allowed to use magic weve got no chance said Fred .Funny said Harry really amusing .If it has to come to force then it will growled Moody his magical eye now quivering a little in its socket as he glared at Harry .Everyone heres overage Potter and theyre all prepared to take the risk .Mundungus shrugged and grimaced the magical eye swerved sideways to glare at him out of the side of Moodys head .Lets have no more arguments .Times wearing on .I want a few of your hairs boy now .But this is mad theres no need No need !snarled Moody .With YouKnowWho out there and half the Ministry on his side ?Potter if were lucky hell have swallowed the fake bait and hell be planning to ambush you on the thirtieth but hed be mad not to have a Death Eater or two keeping an eye out its what Id do .They might not be able to get at you or this house while your mothers charm holds but its about to break and they know the rough position of the place .Our only chance is to use decoys .Even YouKnowWho cant split himself into seven .Harry caught Hermiones eye and looked away at once .So Potter some of your hair if you please .Harry glanced at Ron who grimaced at him in a just doit sort of way .Now !barked Moody .With all of their eyes upon him Harry reached up to the top of his head grabbed a hank of hair and pulled .Good said Moody limping forward as he pulled the stopper out of the flask of potion .Straight in here if you please .Harry dropped the hair into the mudlike liquid .The moment it made contact with its surface the potion began to froth and smoke then all at once it turned a clear bright gold .Ooh you look much tastier than Crabbe and Goyle Harry said Hermione before catching sight of Rons raised eyebrows blushing slightly and saying Oh you know what I mean Goyle s potion looked like bogies .Right then fake Potters line up over here please said Moody .Ron Hermione Fred George and Fleur lined up in front of Aunt Petunias gleaming sink .Were one short said Lupin .Here said Hagrid gruffly and he lifted Mundungus by the scruff of the neck and dropped him down beside Fleur who wrinkled her nose pointedly and moved along to stand between Fred and George instead .Ive toldjer Id sooner be a protector said Mundungus .Shut it growled Moody .As Ive already told you you spineless worm any Death Eaters we run into will be aiming to capture Potter not kill him .Dumbledore always said YouKnowWho would want to finish Potter in person .Itll be the protectors who have got the most to worry about the Death Eatersll want to kill them .Mundungus did not look particularly reassured but Moody was already pulling half a dozen eggcupsized glasses from inside his cloak which he handed out before pouring a little Polyjuice Potion into each one .Altogether then .Ron Hermione Fred George Fleur and Mundungus drank .All of them gasped and grimaced as the potion hit their throats At once their features began to bubble and distort like hot wax .Hermione and Mundungus were shooting upward Ron Fred and George were shrinking their hair was darkening Hermiones and Fleurs appearing to shoot backward into their skulls .Moody quite unconcerned was now loosening the ties of the large sacks he had brought with him .When he straightened up again there were six Harry Potters gasping and panting in front of him .Fred and George turned to each other and said together Wow were identical !I dunno though I think Im still betterlooking said Fred examining his reflection in the kettle .Bah said Fleur checking herself in the microwave door Bill dont look at me Im ideous .Those whose clothes are a bit roomy Ive got smaller here said Moody indicating the first sack and vice versa .Dont forget the glasses theres six pairs in the side pocket .And when youre dressed theres luggage in the other sack .The real Harry thought that this might just be the most bizarre thing he had ever seen and he had seen some extremely odd things .He watched as his six doppelgangers rummaged in the sacks pulling out sets of clothes putting on glasses stuffing their own things away .He felt like asking them to show a little more respect for his privacy as they all began stripping off with impunity clearly much more at ease with displaying his body than they would have been with their own .I knew Ginny was lying about that tattoo said Ron looking down at his bare chest .Harry your eyesight really is awful said Hermione as she put on glasses .Once dressed the fake Harrys took rucksacks and owl cages each containing a stuffed snowy owl from the second sack .Good said Moody as at last seven dressed bespectacled and luggageladen Harrys faced him .The pairs will be as follows Mundungus will be traveling with me by broom Whym I with you ?grunted the Harry nearest the back door .Because youre the one that needs watching growled Moody and sure enough his magical eye did not waver from Mundungus as he continued Arthur and Fred Im George said the twin at whom Moody was pointing .Cant you even tell us apart when were Harry ?Sorry George Im only yanking your wand Im Fred really Enough messing around !snarled Moody .The other one George or Fred or whoever you are youre with Remus .Miss Delacour Im taking Fleur on a thestral said Bill .Shes not that fond of brooms .Fleur walked over to stand beside him giving him a soppy slavish look that Harry hoped with all his heart would never appear on his face again .Miss Granger with Kingsley again by thestral Hermione looked reassured as she answered Kingsleys smile Harry knew that Hermione too lacked confidence on a broomstick .Which leaves you and me Ron !said Tonks brightly knocking over a mug tree as she waved at him .Ron did not look quite as pleased as Hermione .An youre with me Harry .That all righ ?said Hagrid looking a little anxious .Well be on the bike brooms an thestrals cant take me weight see .Not a lot o room on the seat with me on it though so youll be in the sidecar .Thats great said Harry not altogether truthfully .We think the Death Eaters will expect you to be on a broom said Moody who seemed to guess how Harry was feeling .Snapes had plenty of time to tell them everything about you hes never mentioned before so if we do run into any Death Eaters were betting theyll choose one of the Potters who look at home on a broomstick .All right then he went on tying up the sack with the fake Potters clothes in it and leading the way back to the door I make it three minutes until were supposed to leave .No point locking the back door it wont keep the Death Eaters out when they come looking .Come on .Harry hurried into the hall to fetch his rucksack Firebolt and Hedwigs cage before joining the others in the dark back garden .On every side broomsticks were leaping into hands Hermione had already been helped up onto a great black thestral by Kingsley Fleur onto the other by Bill .Hagrid was standing ready beside the motorbike goggles on .Is this it ?Is this Siriuss bike ?The very same said Hagrid beaming down at Harry .An the last time yeh was on it Harry I could fit yeh in one hand !Harry could not help but feel a little humiliated as he got into the sidecar .It placed him several feet below everybody else Ron smirked at the sight of him sitting there like a child in a bumper car .Harry stuffed his rucksack and broomstick down by his feet and rammed Hedwigs cage between his knees .It was extremely uncomfortable .Arthurs done a bit o tinkerin said Hagrid quite oblivious to Harrys discomfort .He settled himself astride the motorcycle which creaked slightly and sank inches into the ground .Its got a few tricks up its handlebars now .Tha one was my idea .He pointed a thick finger at a purple button near the speedometer .Please be careful Hagrid said Mr Weasley who was standing beside them holding his broomstick .Im still not sure that was advisable and its certainly only to be used in emergencies .All right then said Moody .Everyone ready please I want us all to leave at exactly the same time or the whole point of the diversions lost .Everybody mounted their brooms .Hold tight now Ron said Tonks and Harry saw Ron throw a furtive guilty look at Lupin before placing his hands on either side of her waist .Hagrid kicked the motorbike into life It roared like a dragon and the sidecar began to vibrate .Good luck everyone shouted Moody .See you all in about an hour at the Burrow .On the count of three .One .two .THREE .There was a great roar from the motorbike and Harry felt the sidecar give a nasty lurch He was rising through the air fast his eyes watering slightly hair whipped back off his face .Around him brooms were soaring upward too the long black tail of a thestral flicked past .His legs jammed into the sidecar by Hedwigs cage and his rucksack were already sore and starting to go numb .So great was his discomfort that he almost forgot to take a last glimpse of number four Privet Drive by the time he looked over the edge of the sidecar he could no longer tell which one it was .Higher and higher they climbed into the sky And then out of nowhere out of nothing they were surrounded .At least thirty hooded figures suspended in midair formed a vast circle in the midst of which the Order members had risen oblivious Screams a blaze of green light on every side Hagrid gave a yell and the motorbike rolled over .Harry lost any sense of where they were Streetlights above him yells around him he was clinging to the sidecar for dear life .Hedwigs cage the Firebolt and his rucksack slipped from beneath his knees No HEDWIG !The broomstick spun to earth but he just managed to seize the strap of his rucksack and the top of the cage as the motorbike swung the right way up again .A seconds relief and then another burst of green light .The owl screeched and fell to the floor of the cage .No NO !The motorbike zoomed forward Harry glimpsed hooded Death Eaters scattering as Hagrid blasted through their circle .Hedwig Hedwig But the owl lay motionless and pathetic as a toy on the floor of her cage .He could not take it in and his terror for the others was paramount .He glanced over his shoulder and saw a mass of people moving flares of green light two pairs of people on brooms soaring off into the distance but he could not tell who they were Hagrid weve got to go back weve got to go back !he yelled over the thunderous roar of the engine pulling out his wand ramming Hedwigs cage onto the floor refusing to believe that she was dead .Hagrid TURN AROUND !My jobs ter get you there safe Harry !bellowed Hagrid and he opened the throttle .Stop STOP !Harry shouted but as he looked back again two jets of green light flew past his left ear Four Death Eaters had broken away from the circle and were pursuing them aiming for Hagrid s broad back .Hagrid swerved but the Death Eaters were keeping up with the bike more curses shot after them and Harry had to sink low into the sidecar to avoid them .Wriggling around he cried Stupefy and a red bolt of light shot from his own wand cleaving a gap between the four pursuing Death Eaters as they scattered to avoid it .Hold on Harry thisll do for em !roared Hagrid and Harry looked up just in time to see Hagrid slamming a thick finger into a green button near the fuel gauge .A wall a solid brick wall erupted out of the exhaust pipe .Craning his neck Harry saw it expand into being in midair .Three of the Death Eaters swerved and avoided it but the fourth was not so lucky He vanished from view and then dropped like a boulder from behind it his broomstick broken into pieces .One of his fellows slowed up to save him but they and the airborne wall were swallowed by darkness as Hagrid leaned low over the handlebars and sped up .More Killing Curses flew past Harrys head from the two remaining Death Eaters wands they were aiming for Hagrid .Harry responded with further Stunning Spells Red and green collided in midair in a shower of multicolored sparks and Harry thought wildly of fireworks and the Muggles below who would have no idea what was happening Here we go again Harry hold on !yelled Hagrid and he jabbed at a second button .This time a great net burst from the bikes exhaust but the Death Eaters were ready for it .Not only did they swerve to avoid it but the companion who had slowed to save their unconscious friend had caught up .He bloomed suddenly out of the darkness and now three of them were pursuing the motorbike all shooting curses after it .Thisll do it Harry hold on tight !yelled Hagrid and Harry saw him slam his whole hand onto the purple button beside the speedometer .With an unmistakable bellowing roar dragon fire burst from the exhaust whitehot and blue and the motorbike shot forward like a bullet with a sound of wrenching metal .Harry saw the Death Eaters swerve out of sight to avoid the deadly trail of flame and at the same time felt the sidecar sway ominously Its metal connections to the bike had splintered with the force of acceleration .Its all righ Harry !bellowed Hagrid now thrown flat onto his back by the surge of speed nobody was steering now and the sidecar was starting to twist violently in the bikes slipstream . ‘Tm on it Harry don worry !Hagrid yelled and from inside his jacket pocket he pulled his flowery pink umbrella .Hagrid !No !Let me !REPAROl There was a deafening bang and the sidecar broke away from the bike completely Harry sped forward propelled by the impetus of the bikes flight then the sidecar began to lose height In desperation Harry pointed his wand at the sidecar and shouted Wingardium Leviosal The sidecar rose like a cork unsteerable but at least still airborne He had but a split seconds relief however as more curses streaked past him The three Death Eaters were closing in .Im cornin Harry !Hagrid yelled from out of the darkness but Harry could feel the sidecar beginning to sink again Crouching as low as he could he pointed at the middle of the oncoming figures and yelled Impedimental The jinx hit the middle Death Eater in the chest For a moment the man was absurdly spreadeagled in midair as though he had hit an invisible barrier One of his fellows almost collided with him Then the sidecar began to fall in earnest and the remaining Death Eater shot a curse so close to Harry that he had to duck below the rim of the car knocking out a tooth on the edge of his seat Im cornin Harry Im cornin !A huge hand seized the back of Harrys robes and hoisted him out of the plummeting sidecar Harry pulled his rucksack with him as he dragged himself onto the motorbikes seat and found himself backto back with Hagrid .As they soared upward away from the two remaining Death Eaters Harry spat blood out of his mouth pointed his wand at the falling sidecar and yelled Confringo He knew a dreadful gutwrenching pang for Hedwig as it exploded the Death Eater nearest it was blasted off his broom and fell from sight his companion fell back and vanished .Harry Im sorry Im sorry moaned Hagrid I shouldnta tried ter repair it meself yehve got no room Its not a problem just keep flying !Harry shouted back as two more Death Eaters emerged out of the darkness drawing closer .As the curses came shooting across the intervening space again Hagrid swerved and zigzagged Harry knew that Hagrid did not dare use the dragonfire button again with Harry seated so insecurely .Harry sent Stunning Spell after Stunning Spell back at their pursuers barely holding them off .He shot another blocking jinx at them The closest Death Eater swerved to avoid it and his hood slipped and by the red light of his next Stunning Spell Harry saw the strangely blank face of Stanley Shunpike Stan ExpelliarmusV Harry yelled .Thats him its him its the real one !The hooded Death Eaters shout reached Harry even above the thunder of the motorbikes engine Next moment both pursuers had fallen back and disappeared from view .Harry whats happened ?bellowed Hagrid .Where Ve they gone ?I dont know !But Harry was afraid The hooded Death Eater had shouted Its the real one !how had he known ?He gazed around at the apparently empty darkness and felt its menace .Where were they ?He clambered around on the seat to face forward and seized hold of the back of Hagrid s jacket .Hagrid do the dragonfire thing again lets get out of here !Hold on tight then Harry !There was a deafening screeching roar again and the whiteblue fire shot from the exhaust Harry felt himself slipping backward off what little of the seat he had Hagrid flung backward upon him barely maintaining his grip on the handlebars I think weve lost em Harry I think weve done it !yelled Hagrid .But Harry was not convinced Fear lapped at him as he looked left and right for pursuers he was sure would come .Why had they fallen back ?One of them had still had a wand .Its him .its the real one .They had said it right after he had tried to Disarm Stan .Were nearly there Harry weve nearly made it !shouted Hagrid .Harry felt the bike drop a little though the lights down on the ground still seemed remote as stars .Then the scar on his forehead burned like fire as a Death Eater appeared on either side of the bike two Killing Curses missed Harry by millimeters cast from behind And then Harry saw him .Voldemort was flying like smoke on the wind without broomstick or thestral to hold him his snakelike face gleaming out of the blackness his white fingers raising his wand again Hagrid let out a bellow of fear and steered the motorbike into a vertical dive .Clinging on for dear life Harry sent Stunning Spells flying at random into the whirling night .He saw a body fly past him and knew he had hit one of them but then he heard a bang and saw sparks from the engine the motorbike spiraled through the air completely out of control Green jets of light shot past them again .Harry had no idea which way was up which down His scar was still burning he expected to die at any second .A hooded figure on a broomstick was feet from him he saw it raise its arm NO !With a shout of fury Hagrid launched himself off the bike at the Death Eater to his horror Harry saw both Hagrid and the Death Eater falling out of sight their combined weight too much for the broomstick Barely gripping the plummeting bike with his knees Harry heard Voldemort scream Mine It was over He could not see or hear where Voldemort was he glimpsed another Death Eater swooping out of the way and heard Avada As the pain from Harrys scar forced his eyes shut his wand acted of its own accord .He felt it drag his hand around like some great magnet saw a spurt of golden fire through his halfclosed eyelids heard a crack and a scream of fury .The remaining Death Eater yelled Voldemort screamed No Somehow Harry found his nose an inch from the dragonfire button .He punched it with his wandfree hand and the bike shot more flames into the air hurtling straight toward the ground .Hagrid !Harry called holding on to the bike for dear life .Hagrid Accio Hagridl The motorbike sped up sucked toward the earth .Face level with the handlebars Harry could see nothing but distant lights growing nearer and nearer He was going to crash and there was nothing he could do about it .Behind him came another scream Your wand Selwyn give me your wand He felt Voldemort before he saw him .Looking sideways he stared into the red eyes and was sure they would be the last thing he ever saw Voldemort preparing to curse him once more And then Voldemort vanished .Harry looked down and saw Hagrid spreadeagled on the ground below him .He pulled hard at the handlebars to avoid hitting him groped for the brake but with an earsplitting groundtrembling crash he smashed into a muddy pond .5 FALLEN WARRIOR Hagrid ?Harry struggled to raise himself out of the debris of metal and leather that surrounded him his hands sank into inches of muddy water as he tried to stand .He could not understand where Voldemort had gone and expected him to swoop out of the darkness at any moment .Something hot and wet was trickling down his chin and from his forehead .He crawled out of the pond and stumbled toward the great dark mass on the ground that was Hagrid .Hagrid ?Hagrid talk to me But the dark mass did not stir .Whos there ?Is it Potter ?Are you Harry Potter ?Harry did not recognize the mans voice .Then a woman shouted Theyve crashed Ted !Crashed in the garden !Harrys head was swimming .Hagrid he repeated stupidly and his knees buckled .The next thing he knew he was lying on his back on what felt like cushions with a burning sensation in his ribs and right arm .His missing tooth had been regrown .The scar on his forehead was still throbbing .Hagrid ?He opened his eyes and saw that he was lying on a sofa in an unfamiliar lamplit sitting room .His rucksack lay on the floor a short distance away wet and muddy .A fairhaired bigbellied man was watching Harry anxiously .Hagrids fine son said the man the wifes seeing to him now .How are you feeling ?Anything else broken ?Ive fixed your ribs your tooth and your arm .Im Ted by the way Ted Tonks Doras father .Harry sat up too quickly Lights popped in front of his eyes and he felt sick and giddy .Voldemort Easy now said Ted Tonks placing a hand on Harrys shoulder and pushing him back against the cushions .That was a nasty crash you just had .What happened anyway ?Something go wrong with the bike ?Arthur Weasley overstretch himself again him and his Muggle contraptions ?No said Harry as his scar pulsed like an open wound .Death Eaters loads of them we were chased Death Eaters ?said Ted sharply .What dyou mean Death Eaters ?I thought they didnt know you were being moved tonight I thought They knew said Harry .Ted Tonks looked up at the ceiling as though he could see through it to the sky above .Well we know our protective charms hold then dont we ?They shouldnt be able to get within a hundred yards of the place in any direction .Now Harry understood why Voldemort had vanished it had been at the point when the motorbike crossed the barrier of the Orders charms .He only hoped they would continue to work He imagined Voldemort a hundred yards above them as they spoke looking for a way to penetrate what Harry visualized as a great transparent bubble .He swung his legs off the sofa he needed to see Hagrid with his own eyes before he would believe that he was alive .He had barely stood up however when a door opened and Hagrid squeezed through it his face covered in mud and blood limping a little but miraculously alive .Harry !Knocking over two delicate tables and an aspidistra he covered the floor between them in two strides and pulled Harry into a hug that nearly cracked his newly repaired ribs .Blimey Harry how did yeh get out o that ?I thought we were both goners .Yeah me too .I cant believe Harry broke off .He had just noticed the woman who had entered the room behind Hagrid .You !he shouted and he thrust his hand into his pocket but it was empty .Your wands here son said Ted tapping it on Harrys arm .It fell right beside you I picked it up .And thats my wife youre shouting at .Oh Im Im sorry .As she moved forward into the room Mrs Tonkss resemblance to her sister Bellatrix became much less pronounced Her hair was a light soft brown and her eyes were wider and kinder .Nevertheless she looked a little haughty after Harrys exclamation .What happened to our daughter ?she asked .Hagrid said you were ambushed where is Nymphadora ?I dont know said Harry .We dont know what happened to anyone else .She and Ted exchanged looks .A mixture of fear and guilt gripped Harry at the sight of their expressions if any of the others had died it was his fault all his fault .He had consented to the plan given them his hair .The Portkey he said remembering all of a sudden .Weve got to get back to the Burrow and find out then well be able to send you word or or Tonks will once shes Dorall be okay Dromeda said Ted .She knows her stuff shes been in plenty of tight spots with the Aurors .The Portkey s through here he added to Harry .Its supposed to leave in three minutes if you want to take it .Yeah we do said Harry .He seized his rucksack swung it onto his shoulders .I He looked at Mrs Tonks wanting to apologize for the state of fear in which he left her and for which he felt so terribly responsible but no words occurred to him that did not seem hollow and insincere .Ill tell Tonks Dora to send word when she .Thanks for patching us up thanks for everything .I He was glad to leave the room and follow Ted Tonks along a short hallway and into a bedroom .Hagrid came after them bending low to avoid hitting his head on the door lintel .There you go son .Thats the Portkey .Mr Tonks was pointing to a small silverbacked hairbrush lying on the dressing table .Thanks said Harry reaching out to place a finger on it ready to leave .Wait a moment said Hagrid looking around .Harry wheres Hedwig ?She .she got hit said Harry .The realization crashed over him He felt ashamed of himself as the tears stung his eyes .The owl had been his companion his one great link with the magical world whenever he had been forced to return to the Dursleys .Hagrid reached out a great hand and patted him painfully on the shoulder .Never mind he said gruffly .Never mind .She had a great old life Hagrid !said Ted Tonks warningly as the hairbrush glowed bright blue and Hagrid only just got his forefinger to it in time .With a jerk behind the navel as though an invisible hook and line had dragged him forward Harry was pulled into nothingness spinning uncontrollably his finger glued to the Portkey as he and Hagrid hurtled away from Mr Tonks .Seconds later Harrys feet slammed onto hard ground and he fell onto his hands and knees in the yard of the Burrow .He heard screams .Throwing aside the no longer glowing hairbrush Harry stood up swaying slightly and saw Mrs Weasley and Ginny running down the steps by the back door as Hagrid who had also collapsed on landing clambered laboriously to his feet .Harry ?You are the real Harry ?What happened ?Where are the others ?cried Mrs Weasley .What dyou mean ?Isnt anyone else back ?Harry panted .The answer was clearly etched in Mrs Weasley s pale face .The Death Eaters were waiting for us Harry told her .We were surrounded the moment we took off they knew it was tonight I dont know what happened to anyone else four of them chased us it was all we could do to get away and then Voldemort caught up with us He could hear the selfjustifying note in his voice the plea for her to understand why he did not know what had happened to her sons but Thank goodness youre all right she said pulling him into a hug he did not feel he deserved .Havent go any brandy have yeh Molly ?asked Hagrid a little shakily .Fer medicinal purposes ?She could have summoned it by magic but as she hurried back toward the crooked house Harry knew that she wanted to hide her face .He turned to Ginny and she answered his unspoken plea for information at once .Ron and Tonks should have been back first but they missed their Portkey it came back without them she said pointing at a rusty oil can lying on the ground nearby .And that one she pointed at an ancient sneaker should have been Dad and Freds they were supposed to be second .You and Hagrid were third and she checked her watch if they made it George and Lupin ought to be back in about a minute .Mrs Weasley reappeared carrying a bottle of brandy which she handed to Hagrid .He uncorked it and drank it straight down in one .Mum !shouted Ginny pointing to a spot several feet away .A blue light had appeared in the darkness It grew larger and brighter and Lupin and George appeared spinning and then falling .Harry knew immediately that there was something wrong Lupin was supporting George who was unconscious and whose face was covered in blood .Harry ran forward and seized Georges legs .Together he and Lupin carried George into the house and through the kitchen to the sitting room where they laid him on the sofa .As the lamplight fell across Georges head Ginny gasped and Harrys stomach lurched One of Georges ears was missing .The side of his head and neck were drenched in wet shockingly scarlet blood .No sooner had Mrs Weasley bent over her son than Lupin grabbed Harry by the upper arm and dragged him none too gently back into the kitchen where Hagrid was still attempting to ease his bulk through the back door .Oi !said Hagrid indignantly .Le go of him !Le go of Harry !Lupin ignored him .What creature sat in the corner the first time that Harry Potter visited my office at Hogwarts ?he said giving Harry a small shake .Answer me !A a grindylow in a tank wasnt it ?Lupin released Harry and fell back against a kitchen cupboard .Wha was tha about ?roared Hagrid .Im sorry Harry but I had to check said Lupin tersely .Weve been betrayed .Voldemort knew that you were being moved tonight and the only people who could have told him were directly involved in the plan .You might have been an impostor .So why aren you checkin me ?panted Hagrid still struggling to fit through the door .Youre halfgiant said Lupin looking up at Hagrid .The Polyjuice Potion is designed for human use only .None of the Order would have told Voldemort we were moving tonight said Harry .The idea was dreadful to him he could not believe it of any of them .Voldemort only caught up with me toward the end he didnt know which one I was in the beginning .If hed been in on the plan hed have known from the start I was the one with Hagrid .Voldemort caught up with you ?said Lupin sharply .What happened ?How did you escape ?Harry explained briefly how the Death Eaters pursuing them had seemed to recognize him as the true Harry how they had abandoned the chase how they must have summoned Voldemort who had appeared just before he and Hagrid had reached the sanctuary of Tonkss parents .They recognized you ?But how ?What had you done ?I .Harry tried to remember the whole journey seemed like a blur of panic and confusion .I saw Stan Shunpike .You know the bloke who was the conductor on the Knight Bus ?And I tried to Disarm him instead of well he doesnt know what hes doing does he ?He must be Imperiused !Lupin looked aghast .Harry the time for Disarming is past !These people are trying to capture and kill you !At least Stun if you arent prepared to kill !We were hundreds of feet up !Stans not himself and if I Stunned him and hed fallen hed have died the same as if Id used Avada Kedavra !Expelliarmus saved me from Voldemort two years ago Harry added defiantly .Lupin was reminding him of the sneering Hufflepuff Zacharias Smith who had jeered at Harry for wanting to teach Dumbledores Army how to Disarm .Yes Harry said Lupin with painful restraint and a great number of Death Eaters witnessed that happening !Forgive me but it was a very unusual move then under imminent threat of death .Repeating it tonight in front of Death Eaters who either witnessed or heard about the first occasion was close to suicidal !So you think I should have killed Stan Shunpike ?said Harry angrily .Of course not said Lupin but the Death Eaters frankly most people !would have expected you to attack back !Expelliarmus is a useful spell Harry but the Death Eaters seem to think it is your signature move and I urge you not to let it become so !Lupin was making Harry feel idiotic and yet there was still a grain of defiance inside him .I wont blast people out of my way just because theyre there said Harry .Thats Voldemorts job .Lupins retort was lost Finally succeeding in squeezing through the door Hagrid staggered to a chair and sat down it collapsed beneath him .Ignoring his mingled oaths and apologies Harry addressed Lupin again .Will George be okay ?All Lupins frustration with Harry seemed to drain away at the question .I think so although theres no chance of replacing his ear not when its been cursed off There was a scuffling from outside .Lupin dived for the back door Harry leapt over Hagrids legs and sprinted into the yard .Two figures had appeared in the yard and as Harry ran toward them he realized they were Hermione now returning to her normal appearance and Kingsley both clutching a bent coat hanger .Hermione flung herself into Harrys arms but Kingsley showed no pleasure at the sight of any of them .Over Hermione s shoulder Harry saw him raise his wand and point it at Lupins chest .The last words Albus Dumbledore spoke to the pair of us ? ‘Harry is the best hope we have .Trust him said Lupin calmly .Kingsley turned his wand on Harry but Lupin said Its him Ive checked !All right all right !said Kingsley stowing his wand back beneath his cloak .But somebody betrayed us !They knew they knew it was tonight !So it seems replied Lupin but apparently they did not realize that there would be seven Harrys .Small comfort !snarled Kingsley .Who else is back ?Only Harry Hagrid George and me .Hermione stifled a little moan behind her hand .What happened to you ?Lupin asked Kingsley .Followed by five injured two mightve killed one Kingsley reeled off and we saw YouKnowWho as well he joined the chase halfway through but vanished pretty quickly .Remus he can Fly supplied Harry .I saw him too he came after Hagrid and me .So thats why he left to follow you !said Kingsley .I couldnt understand why hed vanished .But what made him change targets ?Harry behaved a little too kindly to Stan Shunpike said Lupin .Stan ?repeated Hermione .But I thought he was in Azkaban ?Kingsley let out a mirthless laugh .Hermione theres obviously been a mass breakout which the Ministry has hushed up .Traverss hood fell off when I cursed him hes supposed to be inside too .But what happened to you Remus ?Wheres George ?He lost an ear said Lupin .Lost an ?repeated Hermione in a high voice .Snapes work said Lupin .Snape ?shouted Harry .You didnt say He lost his hood during the chase .Sectumsempra was always a specialty of Snapes .I wish I could say Id paid him back in kind but it was all I could do to keep George on the broom after he was injured he was losing so much blood .Silence fell between the four of them as they looked up at the sky .There was no sign of movement the stars stared back unblinking indifferent unobscured by flying friends .Where was Ron ?Where were Fred and Mr Weasley ?Where were Bill Fleur Tonks MadEye and Mundungus ?Harry give us a hand !called Hagrid hoarsely from the door in which he was stuck again .Glad of something to do Harry pulled him free then headed through the empty kitchen and back into the sitting room where Mrs Weasley and Ginny were still tending to George .Mrs Weasley had staunched his bleeding now and by the lamplight Harry saw a clean gaping hole where Georges ear had been .How is he ?Mrs Weasley looked around and said I cant make it grow back not when its been removed by Dark Magic .But it could have been so much worse .Hes alive .Yeah said Harry .Thank God .Did I hear someone else in the yard ?Ginny asked .Hermione and Kingsley said Harry .Thank goodness Ginny whispered .They looked at each other Harry wanted to hug her hold on to her he did not even care much that Mrs Weasley was there but before he could act on the impulse there was a great crash from the kitchen .Ill prove who I am Kingsley after Ive seen my son now back off if you know whats good for you !Harry had never heard Mr Weasley shout like that before .He burst into the living room his bald patch gleaming with sweat his spectacles askew Fred right behind him both pale but uninjured .Arthur !sobbed Mrs Weasley .Oh thank goodness !How is he ?Mr Weasley dropped to his knees beside George .For the first time since Harry had known him Fred seemed to be lost for words .He gaped over the back of the sofa at his twins wound as if he could not believe what he was seeing .Perhaps roused by the sound of Fred and their fathers arrival George stirred .How do you feel Georgie ?whispered Mrs Weasley .Georges fingers groped for the side of his head .Saintlike he murmured .Whats wrong with him ?croaked Fred looking terrified .Is his mind affected ?Saintlike repeated George opening his eyes and looking up at his brother .You see .Im holy .Hole v Fred geddit ?Mrs Weasley sobbed harder than ever .Color flooded Freds pale face .Pathetic he told George .Pathetic !With the whole wide world of earrelated humor before you you go for holey ?Ah well said George grinning at his tearsoaked mother .Youll be able to tell us apart now anyway Mum .He looked around .Hi Harry you are Harry right ?Yeah I am said Harry moving closer to the sofa .Well at least we got you back okay said George .Why arent Ron and Bill huddled round my sickbed ?Theyre not back yet George said Mrs Weasley .Georges grin faded .Harry glanced at Ginny and motioned to her to accompany him back outside .As they walked through the kitchen she said in a low voice Ron and Tonks should be back by now .They didnt have a long journey Auntie Muriels not that far from here .Harry said nothing .He had been trying to keep fear at bay ever since reaching the Burrow but now it enveloped him seeming to crawl over his skin throbbing in his chest clogging his throat .As they walked down the back steps into the dark yard Ginny took his hand .Kingsley was striding backward and forward glancing up at the sky every time he turned .Harry was reminded of Uncle Vernon pacing the living room a million years ago .Hagrid Hermione and Lupin stood shoulder to shoulder gazing upward in silence .None of them looked around when Harry and Ginny joined their silent vigil .The minutes stretched into what might as well have been years .The slightest breath of wind made them all jump and turn toward the whispering bush or tree in the hope that one of the missing Order members might leap unscathed from its leaves And then a broom materialized directly above them and streaked toward the ground Its them !screamed Hermione .Tonks landed in a long skid that sent earth and pebbles everywhere .Remus !Tonks cried as she staggered off the broom into Lupins arms .His face was set and white He seemed unable to speak .Ron tripped dazedly toward Harry and Hermione .Youre okay he mumbled before Hermione flew at him and hugged him tightly .I thought I thought M all right said Ron patting her on the back .M fine .Ron was great said Tonks warmly relinquishing her hold on Lupin .Wonderful .Stunned one of the Death Eaters straight to the head and when youre aiming at a moving target from a flying broom You did ?said Hermione gazing up at Ron with her arms still around his neck .Always the tone of surprise he said a little grumpily breaking free .Are we the last back ?No said Ginny were still waiting for Bill and Fleur and MadEye and Mundungus .Im going to tell Mum and Dad youre okay Ron She ran back inside .So what kept you ?What happened ?Lupin sounded almost angry at Tonks .Bellatrix said Tonks .She wants me quite as much as she wants Harry Remus she tried very hard to kill me .I just wish Id got her I owe Bellatrix .But we definitely injured Rodolphus .Then we got to Rons Auntie Muriels and wed missed our Portkey and she was fussing over us A muscle was jumping in Lupins jaw .He nodded but seemed unable to say anything else .So what happened to you lot ?Tonks asked turning to Harry Hermione and Kingsley .They recounted the stories of their own journeys but all the time the continued absence of Bill Fleur Mad Eye and Mundungus seemed to lie upon them like a frost its icy bite harder and harder to ignore .Im going to have to get back to Downing Street I should have been there an hour ago said Kingsley finally after a last sweeping gaze at the sky .Let me know when theyre back .Lupin nodded .With a wave to the others Kingsley walked away into the darkness toward the gate .Harry thought he heard the faintest pop as Kingsley Disapparated just beyond the Burrows boundaries .Mr and Mrs Weasley came racing down the back steps Ginny behind them .Both parents hugged Ron before turning to Lupin and Tonks .Thank you said Mrs Weasley for our sons .Dont be silly Molly said Tonks at once .Hows George ?asked Lupin .Whats wrong with him ?piped up Ron .Hes lost But the end of Mrs Weasley s sentence was drowned in a general outcry A thestral had just soared into sight and landed a few feet from them .Bill and Fleur slid from its back windswept but unhurt .Bill !Thank God thank God Mrs Weasley ran forward but the hug Bill bestowed upon her was perfunctory .Looking directly at his father he said MadEyes dead .Nobody spoke nobody moved .Harry felt as though something inside him was falling falling through the earth leaving him forever .We saw it said Bill Fleur nodded tear tracks glittering on her cheeks in the light from the kitchen window .It happened just after we broke out of the circle MadEye and Dung were close by us they were heading north too .Voldemort he can fly went straight for them .Dung panicked I heard him cry out MadEye tried to stop him but he Disapparated .Voldemorts curse hit MadEye full in the face he fell backward off his broom and there was nothing we could do nothing we had half a dozen of them on our own tail Bills voice broke .Of course you couldnt have done anything said Lupin .They all stood looking at each other .Harry could not quite comprehend it .MadEye dead it could not be . .MadEye so tough so brave the consummate survivor .At last it seemed to dawn on everyone though nobody said it that there was no point waiting in the yard anymore and in silence they followed Mr and Mrs Weasley back into the Burrow and into the living room where Fred and George were laughing together .Whats wrong ?said Fred scanning their faces as they entered .Whats happened ?Whos ?MadEye said Mr Weasley .Dead .The twins grins turned to grimaces of shock .Nobody seemed to know what to do .Tonks was crying silently into a handkerchief She had been close to MadEye Harry knew his favorite and his protegee at the Ministry of Magic .Hagrid who had sat down on the floor in the corner where he had most space was dabbing at his eyes with his tableclothsized handkerchief .Bill walked over to the sideboard and pulled out a bottle of firewhisky and some glasses .Here he said and with a wave of his wand he sent twelve full glasses soaring through the room to each of them holding the thirteenth aloft .MadEye .MadEye they all said and drank .MadEye echoed Hagrid a little late with a hiccup .The firewhisky seared Harrys throat .It seemed to burn feeling back into him dispelling the numbness and sense of unreality firing him with something that was like courage .So Mundungus disappeared ?said Lupin who had drained his own glass in one .The atmosphere changed at once .Everybody looked tense watching Lupin both wanting him to go on it seemed to Harry and slightly afraid of what they might hear .I know what youre thinking said Bill and I wondered that too on the way back here because they seemed to be expecting us didnt they ?But Mundungus cant have betrayed us .They didnt know there would be seven Harrys that confused them the moment we appeared and in case youve forgotten it was Mundungus who suggested that little bit of skullduggery .Why wouldnt he have told them the essential point ?I think Dung panicked its as simple as that .He didnt want to come in the first place but MadEye made him and YouKnowWho went straight for them .It was enough to make anyone panic .YouKnowWho acted exactly as MadEye expected him to sniffed Tonks .MadEye said hed expect the real Harry to be with the toughest most skilled Aurors .He chased MadEye first and when Mundungus gave them away he switched to Kingsley .Yes and zat eez all very good snapped Fleur but still eet does not explain ow zey knew we were moving Arry tonight does eet ?Somebody must ave been careless .Somebody let slip ze date to an outsider .It is ze only explanation for zem knowing ze date but not ze ole plan .She glared around at them all tear tracks still etched on her beautiful face silently daring any of them to contradict her .Nobody did .The only sound to break the silence was that of Hagrid hiccuping from behind his handkerchief .Harry glanced at Hagrid who had just risked his own life to save Harrys Hagrid whom he loved whom he trusted who had once been tricked into giving Voldemort crucial information in exchange for a dragons egg .No Harry said aloud and they all looked at him surprised The firewhisky seemed to have amplified his voice .I mean .if somebody made a mistake Harry went on and let something slip I know they didnt mean to do it .Its not their fault he repeated again a little louder than he would usually have spoken .Weve got to trust each other .I trust all of you I dont think anyone in this room would ever sell me to Voldemort .More silence followed his words .They were all looking at him Harry felt a little hot again and drank some more firewhisky for something to do .As he drank he thought of MadEye .MadEye had always been scathing about Dumbledores willingness to trust people .Well said Harry said Fred unexpectedly .Yeah ear ear said George with half a glance at Fred the corner of whose mouth twitched .Lupin was wearing an odd expression as he looked at Harry .It was close to pitying .You think Im a fool ?demanded Harry .No I think youre like James said Lupin who would have regarded it as the height of dishonor to mistrust his friends .Harry knew what Lupin was getting at that his father had been betrayed by his friend Peter Pettigrew .He felt irrationally angry .He wanted to argue but Lupin had turned away from him set down his glass upon a side table and addressed Bill Theres work to do .I can ask Kingsley whether No said Bill at once Ill do it Ill come .Where are you going ?said Tonks and Fleur together .MadEyes body said Lupin .We need to recover it .Cant it ?began Mrs Weasley with an appealing look at Bill .Wait ?said Bill .Not unless youd rather the Death Eaters took it ?Nobody spoke .Lupin and Bill said goodbye and left .The rest of them now dropped into chairs all except for Harry who remained standing .The suddenness and completeness of death was with them like a presence .Ive got to go too said Harry .Ten pairs of startled eyes looked at him .Dont be silly Harry said Mrs Weasley .What are you talking about ?I cant stay here .He rubbed his forehead it was prickling again it had not hurt like this for more than a year .Youre all in danger while Im here .I dont want But dont be so silly !said Mrs Weasley .The whole point of tonight was to get you here safely and thank goodness it worked .And Fleurs agreed to get married here rather than in France weve arranged everything so that we can all stay together and look after you She did not understand she was making him feel worse not better .If Voldemort finds out Im here But why should he ?asked Mrs Weasley .There are a dozen places you might be now Harry said Mr Weasley .Hes got no way of knowing which safe house youre in .Its not me Im worried for !said Harry .We know that said Mr Weasley quietly but it would make our efforts tonight seem rather pointless if you left .Yer not goin anywhere growled Hagrid .Blimey Harry after all we wen through ter get you here ?Yeah what about my bleeding ear ?said George hoisting himself up on his cushions .I know that MadEye wouldnt want I KNOW !Harry bellowed .He felt beleaguered and blackmailed Did they think he did not know what they had done for him didnt they understand that it was for precisely that reason that he wanted to go now before they had to suffer any more on his behalf ?There was a long and awkward silence in which his scar continued to prickle and throb and which was broken at last by Mrs Weasley .Wheres Hedwig Harry ?she said coaxingly .We can put her up with Pigwidgeon and give her something to eat .His insides clenched like a fist .He could not tell her the truth .He drank the last of his firewhisky to avoid answering .Wait till it gets out yeh did it again Harry said Hagrid .Escaped him fought him off when he was right on top of yeh !It wasnt me said Harry flatly .It was my wand .My wand acted of its own accord .After a few moments Hermione said gently But thats impossible Harry .You mean that you did magic without meaning to you reacted instinctively .No said Harry .The bike was falling I couldnt have told you where Voldemort was but my wand spun in my hand and found him and shot a spell at him and it wasnt even a spell I recognized .Ive never made gold flames appear before .Often said Mr Weasley when youre in a pressured situation you can produce magic you never dreamed of .Small children often find before theyre trained It wasnt like that said Harry through gritted teeth .His scar was burning He felt angry and frustrated he hated the idea that they were all imagining him to have power to match Voldemorts .No one said anything .He knew that they did not believe him .Now that he came to think of it he had never heard of a wand performing magic on its own before .His scar seared with pain it was all he could do not to moan aloud .Muttering about fresh air he set down his glass and left the room .As he crossed the dark yard the great skeletal thestral looked up rustled its enormous batlike wings then resumed its grazing .Harry stopped at the gate into the garden staring out at its overgrown plants rubbing his pounding forehead and thinking of Dumbledore .Dumbledore would have believed him he knew it .Dumbledore would have known how and why Harrys wand had acted independently because Dumbledore always had the answers he had known about wands had explained to Harry the strange connection that existed between his wand and Voldemorts .But Dumbledore like MadEye like Sirius like his parents like his poor owl all were gone where Harry could never talk to them again .He felt a burning in his throat that had nothing to do with firewhisky .And then out of nowhere the pain in his scar peaked .As he clutched his forehead and closed his eyes a voice screamed inside his head .You told me the problem would be solved by using anothers wand And into his mind burst the vision of an emaciated old man lying in rags upon a stone floor screaming a horrible drawnout scream a scream of unendurable agony .No !No !I beg you I beg you .You lied to Lord Voldemort Ollivander !I did not .I swear I did not .You sought to help Potter to help him escape me !I swear I did not .I believed a different wand would work .Explain then what happened .Luciuss wand is destroyed !I cannot understand .The connection .exists only .between your two wands .Lies !Please .I beg you .And Harry saw the white hand raise its wand and felt Voldemort s surge of vicious anger saw the frail old man on the floor writhe in agony Harry ?It was over as quickly as it had come Harry stood shaking in the darkness clutching the gate into the garden his heart racing his scar still tingling .It was several moments before he realized that Ron and Hermione were at his side .Harry come back in the house Hermione whispered .You arent still thinking of leaving ?Yeah youve got to stay mate said Ron thumping Harry on the back .Are you all right ?Hermione asked close enough now to look into Harrys face .You look awful !Well said Harry shakily I probably look better than Ollivander .When he had finished telling them what he had seen Ron looked appalled but Hermione downright terrified .But it was supposed to have stopped !Your scar it wasnt supposed to do this anymore !You mustnt let that connection open up again Dumbledore wanted you to close your mind !When he did not reply she gripped his arm .Harry hes taking over the Ministry and the newspapers and half the Wizarding world !Dont let him inside your head too !6 THE GHOUL IN PAJAMAS The shock of losing MadEye hung over the house in the days that followed Harry kept expecting to see him stumping in through the back door like the other Order members who passed in and out to relay news .Harry felt that nothing but action would assuage his feelings of guilt and grief and that he ought to set out on his mission to find and destroy Horcruxes as soon as possible .Well you cant do anything about the Ron mouthed the word Horcruxes till youre seventeen .Youve still got the Trace on you .And we can plan here as well as anywhere cant we ?Or he dropped his voice to a whisper dyou reckon you already know where the YouKnowWhats are ?No Harry admitted .I think Hermiones been doing a bit of research said Ron .She said she was saving it for when you got here .They were sitting at the breakfast table Mr Weasley and Bill had just left for work .Mrs Weasley had gone upstairs to wake Hermione and Ginny while Fleur had drifted off to take a bath .The Tracell break on the thirty first said Harry .That means I only need to stay here four days .Then I can Five days Ron corrected him firmly .Weve got to stay for the wedding .Theyll kill us if we miss it .Harry understood they to mean Fleur and Mrs Weasley .Its one extra day said Ron when Harry looked mutinous .Dont they realize how important ?Course they dont said Ron .They havent got a clue .And now you mention it I wanted to talk to you about that .Ron glanced toward the door into the hall to check that Mrs Weasley was not returning yet then leaned in closer to Harry .Mums been trying to get it out of Hermione and me .What were off to do .Shell try you next so brace yourself .Dad and Lupin ve both asked as well but when we said Dumbledore told you not to tell anyone except us they dropped it .Not Mum though .Shes determined .Rons prediction came true within hours .Shortly before lunch Mrs Weasley detached Harry from the others by asking him to help identify a lone mans sock that she thought might have come out of his rucksack .Once she had him cornered in the tiny scullery off the kitchen she started .Ron and Hermione seem to think that the three of you are dropping out of Hogwarts she began in a light casual tone .Oh said Harry .Well yeah .We are .The mangle turned of its own accord in a corner wringing out what looked like one of Mr Weasleys vests .May I ask why you are abandoning your education ?said Mrs Weasley .Well Dumbledore left me .stuff to do mumbled Harry .Ron and Hermione know about it and they want to come too .What sort of ‘stuff ?Im sorry I cant Well frankly I think Arthur and I have a right to know and Im sure Mr and Mrs Granger would agree !said Mrs Weasley .Harry had been afraid of the concerned parent attack .He forced himself to look directly into her eyes noticing as he did so that they were precisely the same shade of brown as Ginnys .This did not help .Dumbledore didnt want anyone else to know Mrs Weasley .Im sorry .Ron and Hermione dont have to come its their choice I dont see that you have to go either !she snapped dropping all pretense now .Youre barely of age any of you !Its utter nonsense if Dumbledore needed work doing he had the whole Order at his command !Harry you must have misunderstood him .Probably he was telling you something he wanted done and you took it to mean that he wanted you I didnt misunderstand said Harry flatly .Its got to be me .He handed her back the single sock he was supposed to be identifying which was patterned with golden bulrushes .And thats not mine I dont support Puddlemere United .Oh of course not said Mrs Weasley with a sudden and rather unnerving return to her casual tone .I should have realized .Well Harry while weve still got you here you wont mind helping with the preparations for Bill and Fleurs wedding will you ?Theres still so much to do .No I of course not said Harry disconcerted by this sudden change of subject .Sweet of you she replied and she smiled as she left the scullery .From that moment on Mrs Weasley kept Harry Ron and Hermione so busy with preparations for the wedding that they hardly had any time to think .The kindest explanation of this behavior would have been that Mrs Weasley wanted to distract them all from thoughts of MadEye and the terrors of their recent journey .After two days of nonstop cutlery cleaning of colormatching favors ribbons and flowers of de gnoming the garden and helping Mrs Weasley cook vast batches of canapes however Harry started to suspect her of a different motive .All the jobs she handed out seemed to keep him Ron and Hermione away from one another he had not had a chance to speak to the two of them alone since the first night when he had told them about Voldemort torturing Ollivander .I think Mum thinks that if she can stop the three of you getting together and planning shell be able to delay you leaving Ginny told Harry in an undertone as they laid the table for dinner on the third night of his stay .And then what does she thinks going to happen ?Harry muttered .Someone else might kill off Voldemort while shes holding us here making volau vents ?He had spoken without thinking and saw Ginnys face whiten .So its true ?she said .Thats what youre trying to do ?I not I was joking said Harry evasively .They stared at each other and there was something more than shock in Ginnys expression .Suddenly Harry became aware that this was the first time that he had been alone with her since those stolen hours in secluded corners of the Hogwarts grounds .He was sure she was remembering them too .Both of them jumped as the door opened and Mr Weasley Kingsley and Bill walked in .They were often joined by other Order members for dinner now because the Burrow had replaced number twelve Grimmauld Place as the headquarters .Mr Weasley had explained that after the death of Dumbledore their SecretKeeper each of the people to whom Dumbledore had confided Grimmauld Places location had become a Secret Keeper in turn .And as there are around twenty of us that greatly dilutes the power of the Fidelius Charm .Twenty times as many opportunities for the Death Eaters to get the secret out of somebody .We cant expect it to hold much longer .But surely Snape will have told the Death Eaters the address by now ?asked Harry .Well MadEye set up a couple of curses against Snape in case he turns up there again .We hope theyll be strong enough both to keep him out and to bind his tongue if he tries to talk about the place but we cant be sure .It would have been insane to keep using the place as headquarters now that its protection has become so shaky .The kitchen was so crowded that evening it was difficult to maneuver knives and forks .Harry found himself crammed beside Ginny the unsaid things that had just passed between them made him wish they had been separated by a few more people .He was trying so hard to avoid brushing her arm he could barely cut his chicken .No news about MadEye ?Harry asked Bill .Nothing replied Bill .They had not been able to hold a funeral for Moody because Bill and Lupin had failed to recover his body .It had been difficult to know where he might have fallen given the darkness and the confusion of the battle .The Daily Prophet hasnt said a word about him dying or about finding the body Bill went on .But that doesnt mean much .Its keeping a lot quiet these days .And they still havent called a hearing about all the underage magic I used escaping the Death Eaters ?Harry called across the table to Mr Weasley who shook his head .Because they know I had no choice or because they dont want me to tell the world Voldemort attacked me ?The latter I think .Scrimgeour doesnt want to admit that YouKnowWho is as powerful as he is nor that Azkabans seen a mass breakout .Yeah why tell the public the truth ?said Harry clenching his knife so tightly that the faint scars on the back of his right hand stood out white against his skin I must not tell lies .Isnt anyone at the Ministry prepared to stand up to him ?asked Ron angrily .Of course Ron but people are terrified Mr Weasley replied terrified that they will be next to disappear their children the next to be attacked !There are nasty rumors going around I for one dont believe the Muggle Studies professor at Hogwarts resigned .She hasnt been seen for weeks now .Meanwhile Scrimgeour remains shut up in his office all day I just hope hes working on a plan .There was a pause in which Mrs Weasley magicked the empty plates onto the work surface and served apple tart .We must decide ow you will be disguised Arry said Fleur once everyone had pudding .For ze wedding she added when he looked confused .Of course none of our guests are Death Eaters but we cannot guarantee zat zey will not let something slip after zey ave ad champagne .From this Harry gathered that she still suspected Hagrid .Yes good point said Mrs Weasley from the top of the table where she sat spectacles perched on the end of her nose scanning an immense list of jobs that she had scribbled on a very long piece of parchment .Now Ron have you cleaned out your room yet ?Why ?exclaimed Ron slamming his spoon down and glaring at his mother .Why does my room have to be cleaned out ?Harry and I are fine with it the way it is !We are holding your brothers wedding here in a few days time young man And are they getting married in my bedroom ?asked Ron furiously .No !So why in the name of Merlins saggy left Dont talk to your mother like that said Mr Weasley firmly .And do as youre told .Ron scowled at both his parents then picked up his spoon and attacked the last few mouthfuls of his apple tart .I can help some of its my mess Harry told Ron but Mrs Weasley cut across him .No Harry dear Id much rather you helped Arthur muck out the chickens and Hermione Id be ever so grateful if youd change the sheets for Monsieur and Madame Delacour you know theyre arriving at eleven tomorrow morning .But as it turned out there was very little to do for the chickens .Theres no need to er mention it to Molly Mr Weasley told Harry blocking his access to the coop but er Ted Tonks sent me most of what was left of Siriuss bike and er Im hiding thats to say keeping it in here .Fantastic stuff Theres an exhaust gaskin as I believe its called the most magnificent battery and itll be a great opportunity to find out how brakes work .Im going to try and put it all back together again when Mollys not I mean when Ive got time .When they returned to the house Mrs Weasley was nowhere to be seen so Harry slipped upstairs to Rons attic bedroom .Im doing it Im doing !Oh its you said Ron in relief as Harry entered the room .Ron lay back down on the bed which he had evidently just vacated .The room was just as messy as it had been all week the only change was that Hermione was now sitting in the far corner her fluffy ginger cat Crookshanks at her feet sorting books some of which Harry recognized as his own into two enormous piles .Hi Harry she said as he sat down on his camp bed .And how did you manage to get away ?Oh Rons mum forgot that she asked Ginny and me to change the sheets yesterday said Hermione .She threw Numerology and Grammatica onto one pile and The Rise and Fall of the Dark Arts onto the other .We were just talking about MadEye Ron told Harry .I reckon he might have survived .But Bill saw him hit by the Killing Curse said Harry .Yeah but Bill was under attack too said Ron .How can he be sure what he saw ?Even if the Killing Curse missed MadEye still fell about a thousand feet said Hermione now weighing Quidditch Teams of Britain and Ireland in her hand .He could have used a Shield Charm Fleur said his wand was blasted out of his hand said Harry .Well all right if you want him to be dead said Ron grumpily punching his pillow into a more comfortable shape .Of course we dont want him to be dead !said Hermione looking shocked .Its dreadful that hes dead !But were being realistic !For the first time Harry imagined MadEyes body broken as Dumbledores had been yet with that one eye still whizzing in its socket .He felt a stab of revulsion mixed with a bizarre desire to laugh .The Death Eaters probably tidied up after themselves thats why no ones found him said Ron wisely .Yeah said Harry .Like Barty Crouch turned into a bone and buried in Hagrids front garden .They probably transfigured Moody and stuffed him Dont !squealed Hermione .Startled Harry looked over just in time to see her burst into tears over her copy of Spellmans Syllabary .Oh no said Harry struggling to get up from the old camp bed .Hermione I wasnt trying to upset But with a great creaking of rusty bedsprings Ron bounded off the bed and got there first .One arm around Hermione he fished in his jeans pocket and withdrew a revoltinglooking handkerchief that he had used to clean out the oven earlier .Hastily pulling out his wand he pointed it at the rag and said Tergeo .The wand siphoned off most of the grease .Looking rather pleased with himself Ron handed the slightly smoking handkerchief to Hermione .Oh .thanks Ron .Im sorry .She blew her nose and hiccuped .Its just so awfful isnt it ?R right after Dumbledore .I jjust nnever imagined MadEye dying somehow he seemed so tough !Yeah I know said Ron giving her a squeeze .But you know what hed say to us if he was here ? ‘Cconstant vigilance said Hermione mopping her eyes .Thats right said Ron nodding .Hed tell us to learn from what happened to him .And what Ive learned is not to trust that cowardly little squit Mundungus .Hermione gave a shaky laugh and leaned forward to pick up two more books .A second later Ron had snatched his arm back from around her shoulders she had dropped The Monster Book of Monsters on his foot .The book had broken free from its restraining belt and snapped viciously at Rons ankle .Im sorry Im sorry !Hermione cried as Harry wrenched the book from Rons leg and retied it shut .What are you doing with all those books anyway ?Ron asked limping back to his bed .Just trying to decide which ones to take with us said Hermione .When were looking for the Horcruxes .Oh of course said Ron clapping a hand to his forehead .I forgot well be hunting down Voldemort in a mobile library .Ha ha said Hermione looking down at Spellmans Syllabary .I wonder .will we need to translate runes ?Its possible .I think wed better take it to be safe .She dropped the syllabary onto the larger of the two piles and picked up Hogwarts A History .Listen said Harry .He had sat up straight .Ron and Hermione looked at him with similar mixtures of resignation and defiance .I know you said after Dumbledores funeral that you wanted to come with me Harry began .Here he goes Ron said to Hermione rolling his eyes .As we knew he would she sighed turning back to the books .You know I think I will take Hogwarts A History .Even if were not going back there I dont think Id feel right if I didnt have it with Listen !said Harry again .No Harry you listen said Hermione .Were coming with you .That was decided months ago years really .But Shut up Ron advised him .are you sure youve thought this through ?Harry persisted .Lets see said Hermione slamming Travels with Trolls onto the discarded pile with a rather fierce look .Ive been packing for days so were ready to leave at a moments notice which for your information has included doing some pretty difficult magic not to mention smuggling MadEyes whole stock of Polyjuice Potion right under Rons mums nose .Ive also modified my parents memories so that theyre convinced theyre really called Wendell and Monica Wilkins and that their lifes ambition is to move to Australia which they have now done .Thats to make it more difficult for Voldemort to track them down and interrogate them about me or you because unfortunately Ive told them quite a bit about you .Assuming I survive our hunt for the Horcruxes Ill find Mum and Dad and lift the enchantment .If I dont well I think Ive cast a good enough charm to keep them safe and happy .Wendell and Monica Wilkins dont know that theyve got a daughter you see .Hermiones eyes were swimming with tears again .Ron got back off the bed put his arm around her once more and frowned at Harry as though reproaching him for lack of tact .Harry could not think of anything to say not least because it was highly unusual for Ron to be teaching anyone else tact .I Hermione Im sorry I didnt Didnt realize that Ron and I know perfectly well what might happen if we come with you ?Well we do .Ron show Harry what youve done .Nah hes just eaten said Ron .Go on he needs to know !Oh all right .Harry come here .For the second time Ron withdrew his arm from around Hermione and stumped over to the door .Cmon .Why ?Harry asked following Ron out of the room onto the tiny landing .Descendo muttered Ron pointing his wand at the low ceiling .A hatch opened right over their heads and a ladder slid down to their feet .A horrible half sucking halfmoaning sound came out of the square hole along with an unpleasant smell like open drains .Thats your ghoul isnt it ?asked Harry who had never actually met the creature that sometimes disrupted the nightly silence .Yeah it is said Ron climbing the ladder .Come and have a look at him .Harry followed Ron up the few short steps into the tiny attic space .His head and shoulders were in the room before he caught sight of the creature curled up a few feet from him fast asleep in the gloom with its large mouth wide open .But it .it looks .do ghouls normally wear pajamas ?No said Ron .Nor have they usually got red hair or that number of pustules .Harry contemplated the thing slightly revolted .It was human in shape and size and was wearing what now that Harrys eyes became used to the darkness was clearly an old pair of Rons pajamas .He was also sure that ghouls were generally rather slimy and bald rather than distinctly hairy and covered in angry purple blisters .Hes me see ?said Ron .No said Harry .I dont .Ill explain it back in my room the smells getting to me said Ron .They climbed back down the ladder which Ron returned to the ceiling and rejoined Hermione who was still sorting books .Once weve left the ghouls going to come and live down here in my room said Ron .I think hes really looking forward to it well its hard to tell because all he can do is moan and drool but he nods a lot when you mention it .Anyway hes going to be me with spattergroit .Good eh ?Harry merely looked his confusion .It is !said Ron clearly frustrated that Harry had not grasped the brilliance of the plan .Look when we three dont turn up at Hogwarts again everyones going to think Hermione and I must be with you right ?Which means the Death Eaters will go straight for our families to see if theyve got information on where you are .But hopefully itll look like Ive gone away with Mum and Dad a lot of Muggleborns are talking about going into hiding at the moment said Hermione .We cant hide my whole family itll look too fishy and they cant all leave their jobs said Ron .So were going to put out the story that Im seriously ill with spattergroit which is why I cant go back to school .If anyone comes calling to investigate Mum or Dad can show them the ghoul in my bed covered in pustules .Spattergroit s really contagious so theyre not going to want to go near him .It wont matter that he cant say anything either because apparently you cant once the fungus has spread to your uvula .And your mum and dad are in on this plan ?asked Harry .Dad is .He helped Fred and George transform the ghoul .Mum .well youve seen what shes like .She wont accept were going till weve gone .There was silence in the room broken only by gentle thuds as Hermione continued to throw books onto one pile or the other .Ron sat watching her and Harry looked from one to the other unable to say anything .The measures they had taken to protect their families made him realize more than anything else could have done that they really were going to come with him and that they knew exactly how dangerous that would be .He wanted to tell them what that meant to him but he simply could not find words important enough .Through the silence came the muffled sounds of Mrs Weasley shouting from four floors below .Ginnys probably left a speck of dust on a poxy napkin ring said Ron .I dunno why the Delacours have got to come two days before the wedding .Fleurs sisters a bridesmaid she needs to be here for the rehearsal and shes too young to come on her own said Hermione as she pored indecisively over Break with a Banshee .Well guests arent going to help Mums stress levels said Ron .What we really need to decide said Hermione tossing Defensive Magical Theory into the bin without a second glance and picking up An Appraisal of Magical Education in Europe is where were going after we leave here .I know you said you wanted to go to Godrics Hollow first Harry and I understand why but .well .shouldnt we make the Horcruxes our priority ?If we knew where any of the Horcruxes were Id agree with you said Harry who did not believe that Hermione really understood his desire to return to Godrics Hollow .His parents graves were only part of the attraction He had a strong though inexplicable feeling that the place held answers for him .Perhaps it was simply because it was there that he had survived Voldemorts Killing Curse now that he was facing the challenge of repeating the feat Harry was drawn to the place where it had happened wanting to understand .Dont you think theres a possibility that Voldemorts keeping a watch on Godrics Hollow ?Hermione asked .He might expect you to go back and visit your parents graves once youre free to go wherever you like ?This had not occurred to Harry .While he struggled to find a counterargument Ron spoke up evidently following his own train of thought .This R .A .B .person he said .You know the one who stole the real locket ?Hermione nodded .He said in his note he was going to destroy it didnt he ?Harry dragged his rucksack toward him and pulled out the fake Horcrux in which R .A .B .s note was still folded . ‘ I have stolen the real Horcrux and intend to destroy it as soon as I can Harry read out .Well what if he did finish it off ?said Ron .Or she interposed Hermione .Whichever said Ron itd be one less for us to do !Yes but were still going to have to try and trace the real locket arent we ?said Hermione to find out whether or not its destroyed .And once we get hold of it how do you destroy a Horcrux ?asked Ron .Well said Hermione Ive been researching that .How ?asked Harry .I didnt think there were any books on Horcruxes in the library ?There werent said Hermione who had turned pink .Dumbledore removed them all but he he didnt destroy them .Ron sat up straight wideeyed .How in the name of Merlins pants have you managed to get your hands on those Horcrux books ?It it wasnt stealing !said Hermione looking from Harry to Ron with a kind of desperation .They were still library books even if Dumbledore had taken them off the shelves .Anyway if he really didnt want anyone to get at them Im sure he would have made it much harder to Get to the point !said Ron .Well .it was easy said Hermione in a small voice .I just did a Summoning Charm .You know Accio .And they zoomed out of Dumbledore s study window right into the girls dormitory .But when did you do this ?Harry asked regarding Hermione with a mixture of admiration and incredulity .Just after his Dumbledores funeral said Hermione in an even smaller voice .Right after we agreed wed leave school and go and look for the Horcruxes .When I went back upstairs to get my things it it just occurred to me that the more we knew about them the better it would be .and I was alone in there .so I tried .and it worked .They flew straight in through the open window and I I packed them .She swallowed and then said imploringly I cant believe Dumbledore would have been angry its not as though were going to use the information to make a Horcrux is it ?Can you hear us complaining ?said Ron .Where are these books anyway ?Hermione rummaged for a moment and then extracted from the pile a large volume bound in faded black leather .She looked a little nauseated and held it as gingerly as if it were something recently dead .This is the one that gives explicit instructions on how to make a Horcrux .Secrets of the Darkest Art its a horrible book really awful full of evil magic .I wonder when Dumbledore removed it from the library .If he didnt do it until he was headmaster I bet Voldemort got all the instruction he needed from here .Why did he have to ask Slughorn how to make a Horcrux then if hed already read that ?asked Ron .He only approached Slughorn to find out what would happen if you split your soul into seven said Harry .Dumbledore was sure Riddle already knew how to make a Horcrux by the time he asked Slughorn about them .I think youre right Hermione that could easily have been where he got the information .And the more Ive read about them said Hermione the more horrible they seem and the less I can believe that he actually made six .It warns in this book how unstable you make the rest of your soul by ripping it and thats just by making one Horcrux !Harry remembered what Dumbledore had said about Voldemort moving beyond usual evil .Isnt there any way of putting yourself back together ?Ron asked .Yes said Hermione with a hollow smile but it would be excruciatingly painful .Why ?How do you do it ?asked Harry .Remorse said Hermione .Youve got to really feel what youve done .Theres a footnote .Apparently the pain of it can destroy you .I cant see Voldemort attempting it somehow can you ?No said Ron before Harry could answer .So does it say how to destroy Horcruxes in that book ?Yes said Hermione now turning the fragile pages as if examining rotting entrails because it warns Dark wizards how strong they have to make the enchantments on them .From all that Ive read what Harry did to Riddles diary was one of the few really foolproof ways of destroying a Horcrux .What stabbing it with a basilisk fang ?asked Harry .Oh well lucky weve got such a large supply of basilisk fangs then said Ron .I was wondering what we were going to do with them .It doesnt have to be a basilisk fang said Hermione patiently .It has to be something so destructive that the Horcrux cant repair itself .Basilisk venom only has one antidote and its incredibly rare □ phoenix tears said Harry nodding .Exactly said Hermione .Our problem is that there are very few substances as destructive as basilisk venom and theyre all dangerous to carry around with you .Thats a problem were going to have to solve though because ripping smashing or crushing a Horcrux wont do the trick .Youve got to put it beyond magical repair .But even if we wreck the thing it lives in said Ron why cant the bit of soul in it just go and live in something else ?Because a Horcrux is the complete opposite of a human being .Seeing that Harry and Ron looked thoroughly confused Hermione hurried on Look if I picked up a sword right now Ron and ran you through with it I wouldnt damage your soul at all .Which would be a real comfort to me Im sure said Ron .Harry laughed .It should be actually !But my point is that whatever happens to your body your soul will survive untouched said Hermione .But its the other way round with a Horcrux .The fragment of soul inside it depends on its container its enchanted body for survival .It cant exist without it .That diary sort of died when I stabbed it said Harry remembering ink pouring like blood from the punctured pages and the screams of the piece of Voldemorts soul as it vanished .And once the diary was properly destroyed the bit of soul trapped in it could no longer exist .Ginny tried to get rid of the diary before you did flushing it away but obviously it came back good as new .Hang on said Ron frowning .The bit of soul in that diary was possessing Ginny wasnt it ?How does that work then ?While the magical container is still intact the bit of soul inside it can flit in and out of someone if they get too close to the object .I dont mean holding it for too long its nothing to do with touching it she added before Ron could speak .I mean close emotionally .Ginny poured her heart out into that diary she made herself incredibly vulnerable .Youre in trouble if you get too fond of or dependent on the Horcrux .I wonder how Dumbledore destroyed the ring ?said Harry .Why didnt I ask him ?I never really .His voice tailed away He was thinking of all the things he should have asked Dumbledore and of how since the headmaster had died it seemed to Harry that he had wasted so many opportunities when Dumbledore had been alive to find out more .to find out everything .The silence was shattered as the bedroom door flew open with a wallshaking crash .Hermione shrieked and dropped Secrets of the Darkest Art Crookshanks streaked under the bed hissing indignantly Ron jumped off the bed skidded on a discarded Chocolate Frog wrapper and smacked his head on the opposite wall and Harry instinctively dived for his wand before realizing that he was looking up at Mrs Weasley whose hair was disheveled and whose face was contorted with rage .Im so sorry to break up this cozy little gathering she said her voice trembling .Im sure you all need your rest .but there are wedding presents stacked in my room that need sorting out and I was under the impression that you had agreed to help .Oh yes said Hermione looking terrified as she leapt to her feet sending books flying in every direction we will .were sorry .With an anguished look at Harry and Ron Hermione hurried out of the room after Mrs Weasley .Its like being a houseelf complained Ron in an undertone still massaging his head as he and Harry followed .Except without the job satisfaction .The sooner this weddings over the happier Ill be .Yeah said Harry then well have nothing to do except find Horcruxes .Itll be like a holiday wont it ?Ron started to laugh but at the sight of the enormous pile of wedding presents waiting for them in Mrs Weasleys room stopped quite abruptly .The Delacours arrived the following morning at eleven oclock .Harry Ron Hermione and Ginny were feeling quite resentful toward Fleurs family by this time and it was with ill grace that Ron stumped back upstairs to put on matching socks and Harry attempted to flatten his hair .Once they had all been deemed smart enough they trooped out into the sunny backyard to await the visitors .Harry had never seen the place looking so tidy .The rusty cauldrons and old Wellington boots that usually littered the steps by the back door were gone replaced by two new Flutterby bushes standing either side of the door in large pots though there was no breeze the leaves waved lazily giving an attractive rippling effect .The chickens had been shut away the yard had been swept and the nearby garden had been pruned plucked and generally spruced up although Harry who liked it in its overgrown state thought that it looked rather forlorn without its usual contingent of capering gnomes .He had lost track of how many security enchantments had been placed upon the Burrow by both the Order and the Ministry all he knew was that it was no longer possible for anybody to travel by magic directly into the place .Mr Weasley had therefore gone to meet the Delacours on top of a nearby hill where they were to arrive by Portkey .The first sound of their approach was an unusually highpitched laugh which turned out to be coming from Mr Weasley who appeared at the gate moments later laden with luggage and leading a beautiful blonde woman in long leafgreen robes who could only be Fleurs mother .Maman !cried Fleur rushing forward to embrace her .Papa !Monsieur Delacour was nowhere near as attractive as his wife he was a head shorter and extremely plump with a little pointed black beard .However he looked goodnatured .Bouncing toward Mrs Weasley on highheeled boots he kissed her twice on each cheek leaving her flustered .You ave been to much trouble he said in a deep voice .Fleur tells us you ave been working very ard .Oh its been nothing nothing !trilled Mrs Weasley .No trouble at all !Ron relieved his feelings by aiming a kick at a gnome who was peering out from behind one of the new Flutterby bushes .Dear lady !said Monsieur Delacour still holding Mrs Weasleys hand between his own two plump ones and beaming .We are most honored at the approaching union of our two families !Let me present my wife Apolline .Madame Delacour glided forward and stooped to kiss Mrs Weasley too .Enchantee she said .Your usband as been telling us such amusing stories !Mr Weasley gave a maniacal laugh Mrs Weasley threw him a look upon which he became immediately silent and assumed an expression appropriate to the sickbed of a close friend .And of course you ave met my leetle daughter Gabrielle !said Monsieur Delacour .Gabrielle was Fleur in miniature eleven years old with waistlength hair of pure silvery blonde she gave Mrs Weasley a dazzling smile and hugged her then threw Harry a glowing look batting her eyelashes .Ginny cleared her throat loudly .Well come in do !said Mrs Weasley brightly and she ushered the Delacours into the house with many No please !s and After you !s and Not at all !s .The Delacours it soon transpired were helpful pleasant guests .They were pleased with everything and keen to assist with the preparations for the wedding .Monsieur Delacour pronounced everything from the seating plan to the bridesmaids shoes Charmanti Madame Delacour was most accomplished at household spells and had the oven properly cleaned in a trice Gabrielle followed her elder sister around trying to assist in any way she could and jabbering away in rapid French .On the downside the Burrow was not built to accommodate so many people .Mr and Mrs Weasley were now sleeping in the sitting room having shouted down Monsieur and Madame Delacours protests and insisted they take their bedroom .Gabrielle was sleeping with Fleur in Percys old room and Bill would be sharing with Charlie his best man once Charlie arrived from Romania .Opportunities to make plans together became virtually nonexistent and it was in desperation that Harry Ron and Hermione took to volunteering to feed the chickens just to escape the overcrowded house .But she still wont leave us alone !snarled Ron as their second attempt at a meeting in the yard was foiled by the appearance of Mrs Weasley carrying a large basket of laundry in her arms .Oh good youve fed the chickens she called as she approached them .Wed better shut them away again before the men arrive tomorrow .to put up the tent for the wedding she explained pausing to lean against the henhouse .She looked exhausted .Millamants Magic Marquees .theyre very good Bills escorting them .Youd better stay inside while theyre here Harry .I must say it does complicate organizing a wedding having all these security spells around the place .Im sorry said Harry humbly .Oh dont be silly dear !said Mrs Weasley at once .I didnt mean well your safetys much more important !Actually Ive been wanting to ask you how you want to celebrate your birthday Harry .Seventeen after all its an important day .I dont want a fuss said Harry quickly envisaging the additional strain this would put on them all .Really Mrs Weasley just a normal dinner would be fine .Its the day before the wedding .Oh well if youre sure dear .Ill invite Remus and Tonks shall I ?And how about Hagrid ?Thatd be great said Harry .But please dont go to loads of trouble .Not at all not at all .Its no trouble .She looked at him a long searching look then smiled a little sadly straightened up and walked away .Harry watched as she waved her wand near the washing line and the damp clothes rose into the air to hang themselves up and suddenly he felt a great wave of remorse for the inconvenience and the pain he was giving her .7 THE WILL OF ALBUS DUMBLEDORE He was walking along a mountain road in the cool blue light of dawn .Far below swathed in mist was the shadow of a small town .Was the man he sought down there the man he needed so badly he could think of little else the man who held the answer the answer to his problem . ?Oi wake up .Harry opened his eyes .He was lying again on the camp bed in Rons dingy attic room .The sun had not yet risen and the room was still shadowy .Pigwidgeon was asleep with his head under his tiny wing .The scar on Harrys forehead was prickling .You were muttering in your sleep .Was I ?Yeah . ‘Gregorovitch .You kept saying ‘Gregorovitch .Harry was not wearing his glasses Rons face appeared slightly blurred .Whos Gregorovitch ?I dunno do I ?You were the one saying it .Harry rubbed his forehead thinking .He had a vague idea he had heard the name before but he could not think where .I think Voldemorts looking for him .Poor bloke said Ron fervently .Harry sat up still rubbing his scar now wide awake .He tried to remember exactly what he had seen in the dream but all that came back was a mountainous horizon and the outline of the little village cradled in a deep valley .I think hes abroad .Who Gregorovitch ?Voldemort .I think hes somewhere abroad looking for Gregorovitch .It didnt look like anywhere in Britain .You reckon you were seeing into his mind again ?Ron sounded worried .Do me a favor and dont tell Hermione said Harry .Although how she expects me to stop seeing stuff in my sleep .He gazed up at little Pigwidgeons cage thinking .Why was the name Gregorovitch familiar ?I think he said slowly hes got something to do with Quidditch .Theres some connection but I cant I cant think what it is .Quidditch ?said Ron .Sure youre not thinking of Gorgovitch ?Who ?Dragomir Gorgovitch Chaser transferred to the Chudley Cannons for a record fee two years ago .Record holder for most Quaffle drops in a season .No said Harry .Im definitely not thinking of Gorgovitch .I try not to either said Ron .Well happy birthday anyway .Wow thats right I forgot !Im seventeen !Harry seized the wand lying beside his camp bed pointed it at the cluttered desk where he had left his glasses and said Accio Glasses !Although they were only around a foot away there was something immensely satisfying about seeing them zoom toward him at least until they poked him in the eye .Slick snorted Ron .Reveling in the removal of his Trace Harry sent Rons possessions flying around the room causing Pigwidgeon to wake up and flutter excitedly around his cage .Harry also tried tying the laces of his trainers by magic the resultant knot took several minutes to untie by hand and purely for the pleasure of it turned the orange robes on Rons Chudley Cannons posters bright blue .Id do your fly by hand though Ron advised Harry sniggering when Harry immediately checked it .Heres your present .Unwrap it up here its not for my mothers eyes .A book ?said Harry as he took the rectangular parcel .Bit of a departure from tradition isnt it ?This isnt your average book said Ron .Its pure gold Twelve FailSafe Ways to Charm Witches .Explains everything you need to know about girls .If only Id had this last year Id have known exactly how to get rid of Lavender and I wouldve known how to get going with .Well Fred and George gave me a copy and Ive learned a lot .Youd be surprised its not all about wandwork either .When they arrived in the kitchen they found a pile of presents waiting on the table .Bill and Monsieur Delacour were finishing their breakfasts while Mrs Weasley stood chatting to them over the frying pan .Arthur told me to wish you a happy seventeenth Harry said Mrs Weasley beaming at him .He had to leave early for work but hell be back for dinner .Thats our present on top .Harry sat down took the square parcel she had indicated and unwrapped it .Inside was a watch very like the one Mr and Mrs Weasley had given Ron for his seventeenth it was gold with stars circling around the face instead of hands .Its traditional to give a wizard a watch when he comes of age said Mrs Weasley watching him anxiously from beside the cooker .Im afraid that one isnt new like Rons it was actually my brother Fabians and he wasnt terribly careful with his possessions its a bit dented on the back but The rest of her speech was lost Harry had got up and hugged her .He tried to put a lot of unsaid things into the hug and perhaps she understood them because she patted his cheek clumsily when he released her then waved her wand in a slightly random way causing half a pack of bacon to flop out of the frying pan onto the floor .Happy birthday Harry !said Hermione hurrying into the kitchen and adding her own present to the top of the pile .Its not much but I hope you like it .What did you get him ?she added to Ron who seemed not to hear her .Come on then open Hermiones !said Ron .She had bought him a new Sneakoscope .The other packages contained an enchanted razor from Bill and Fleur Ah yes zis will give you ze smoothest shave you will ever ave Monsieur Delacour assured him but you must tell it clearly what you want .ozzerwise you might find you ave a leetle less hair zan you would like .chocolates from the Delacours and an enormous box of the latest Weasleys Wizard Wheezes merchandise from Fred and George .Harry Ron and Hermione did not linger at the table as the arrival of Madame Delacour Fleur and Gabrielle made the kitchen uncomfortably crowded .Ill pack these for you Hermione said brightly taking Harrys presents out of his arms as the three of them headed back upstairs .Im nearly done Im just waiting for the rest of your underpants to come out of the wash Ron Rons splutter was interrupted by the opening of a door on the firstfloor landing .Harry will you come in here a moment ?It was Ginny .Ron came to an abrupt halt but Hermione took him by the elbow and tugged him on up the stairs .Feeling nervous Harry followed Ginny into her room .He had never been inside it before .It was small but bright .There was a large poster of the Wizarding band the Weird Sisters on one wall and a picture of Gwenog Jones Captain of the allwitch Quidditch team the Holyhead Harpies on the other .A desk stood facing the open window which looked out over the orchard where he and Ginny had once played twoaside Quidditch with Ron and Hermione and which now housed a large pearly white marquee .The golden flag on top was level with Ginnys window .Ginny looked up into Harrys face took a deep breath and said Happy seventeenth .Yeah .thanks .She was looking at him steadily he however found it difficult to look back at her it was like gazing into a brilliant light .Nice view he said feebly pointing toward the window .She ignored this .He could not blame her .I couldnt think what to get you she said .You didnt have to get me anything .She disregarded this too .I didnt know what would be useful .Nothing too big because you wouldnt be able to take it with you .He chanced a glance at her .She was not tearful that was one of the many wonderful things about Ginny she was rarely weepy .He had sometimes thought that having six brothers must have toughened her up .She took a step closer to him .So then I thought Id like you to have something to remember me by you know if you meet some veela when youre off doing whatever youre doing .I think dating opportunities are going to be pretty thin on the ground to be honest .Theres the silver lining Ive been looking for she whispered and then she was kissing him as she had never kissed him before and Harry was kissing her back and it was blissful oblivion better than firewhisky she was the only real thing in the world Ginny the feel of her one hand at her back and one in her long sweetsmelling hair The door banged open behind them and they jumped apart .Oh said Ron pointedly .Sorry .Ron !Hermione was just behind him slightly out of breath .There was a strained silence then Ginny said in a flat little voice Well happy birthday anyway Harry .Rons ears were scarlet Hermione looked nervous .Harry wanted to slam the door in their faces but it felt as though a cold draft had entered the room when the door opened and his shining moment had popped like a soap bubble .All the reasons for ending his relationship with Ginny for staying well away from her seemed to have slunk inside the room with Ron and all happy forgetfulness was gone .He looked at Ginny wanting to say something though he hardly knew what but she had turned her back on him .He thought that she might have succumbed for once to tears .He could not do anything to comfort her in front of Ron .Ill see you later he said and followed the other two out of the bedroom .Ron marched downstairs through the stillcrowded kitchen and into the yard and Harry kept pace with him all the way Hermione trotting along behind them looking scared .Once he reached the seclusion of the freshly mown lawn Ron rounded on Harry .You ditched her .What are you doing now messing her around ?Im not messing her around said Harry as Hermione caught up with them .Ron But Ron held up a hand to silence her .She was really cut up when you ended it So was I .You know why I stopped it and it wasnt because I wanted to .Yeah but you go snogging her now and shes just going to get her hopes up again Shes not an idiot she knows it cant happen shes not expecting us to to end up married or As he said it a vivid picture formed in Harrys mind of Ginny in a white dress marrying a tall faceless and unpleasant stranger .In one spiraling moment it seemed to hit him Her future was free and unencumbered whereas his .he could see nothing but Voldemort ahead .If you keep groping her every chance you get It wont happen again said Harry harshly .The day was cloudless but he felt as though the sun had gone in .Okay ?Ron looked half resentful half sheepish he rocked backward and forward on his feet for a moment then said Right then well thats .yeah .Ginny did not seek another onetoone meeting with Harry for the rest of the day nor by any look or gesture did she show that they had shared more than polite conversation in her room .Nevertheless Charlies arrival came as a relief to Harry .It provided a distraction watching Mrs Weasley force Charlie into a chair raise her wand threateningly and announce that he was about to get a proper haircut .As Harrys birthday dinner would have stretched the Burrows kitchen to breaking point even before the arrival of Charlie Lupin Tonks and Hagrid several tables were placed end to end in the garden .Fred and George bewitched a number of purple lanterns all emblazoned with a large number 17 to hang in midair over the guests .Thanks to Mrs Weasleys ministrations Georges wound was neat and clean but Harry was not yet used to the dark hole in the side of his head despite the twins many jokes about it .Hermione made purple and gold streamers erupt from the end of her wand and drape themselves artistically over the trees and bushes .Nice said Ron as with one final flourish of her wand Hermione turned the leaves on the crabapple tree to gold .Youve really got an eye for that sort of thing .Thank you Ron !said Hermione looking both pleased and a little confused .Harry turned away smiling to himself .He had a funny notion that he would find a chapter on compliments when he found time to peruse his copy of Twelve FailSafe Ways to Charm Witches he caught Ginnys eye and grinned at her before remembering his promise to Ron and hurriedly striking up a conversation with Monsieur Delacour .Out of the way out of the way !sang Mrs Weasley coming through the gate with what appeared to be a giant beachballsized Snitch floating in front of her .Seconds later Harry realized that it was his birthday cake which Mrs Weasley was suspending with her wand rather than risk carrying it over the uneven ground .When the cake had finally landed in the middle of the table Harry said That looks amazing Mrs Weasley .Oh its nothing dear she said fondly .Over her shoulder Ron gave Harry the thumbsup and mouthed Good one .By seven oclock all the guests had arrived led into the house by Fred and George who had waited for them at the end of the lane .Hagrid had honored the occasion by wearing his best and horrible hairy brown suit .Although Lupin smiled as he shook Harrys hand Harry thought he looked rather unhappy .It was all very odd Tonks beside him looked simply radiant .Happy birthday Harry she said hugging him tightly .Seventeen eh !said Hagrid as he accepted a bucket sized glass of wine from Fred .Six years ter the day since we met Harry dyeh remember it ?Vaguely said Harry grinning up at him .Didnt you smash down the front door give Dudley a pigs tail and tell me I was a wizard ?I forge the details Hagrid chortled .All righ Ron Hermione ?Were fine said Hermione .How are you ?Ar not bad .Bin busy we got some newborn unicorns Ill show yeh when yeh get back Harry avoided Rons and Hermiones gazes as Hagrid rummaged in his pocket .Here Harry couldn think what ter get yeh but then I remembered this .He pulled out a small slightly furry drawstring pouch with a long string evidently intended to be worn around the neck .Mokeskin .Hide anythin in there an no one but the owner can get it out .Theyre rare them .Hagrid thanks !Snothin said Hagrid with a wave of a dustbinlid sized hand .An theres Charlie !Always liked him hey !Charlie !Charlie approached running his hand slightly ruefully over his new brutally short haircut .He was shorter than Ron thickset with a number of burns and scratches up his muscley arms .Hi Hagrid hows it going ?Bin meanin ter write fer ages .Hows Norbert doin ?Norbert ?Charlie laughed .The Norwegian Ridgeback ?We call her Norberta now .Wha Norberts a girl ?Oh yeah said Charlie .How can you tell ?asked Hermione .Theyre a lot more vicious said Charlie .He looked over his shoulder and dropped his voice .Wish Dad would hurry up and get here .Mums getting edgy .They all looked over at Mrs Weasley .She was trying to talk to Madame Delacour while glancing repeatedly at the gate .I think wed better start without Arthur she called to the garden at large after a moment or two .He must have been held up at oh !They all saw it at the same time a streak of light that came flying across the yard and onto the table where it resolved itself into a bright silver weasel which stood on its hind legs and spoke with Mr Weasleys voice .Minister of Magic coming with me .The Patronus dissolved into thin air leaving Fleurs family peering in astonishment at the place where it had vanished .We shouldnt be here said Lupin at once .Harry Im sorry Ill explain another time He seized Tonkss wrist and pulled her away they reached the fence climbed over it and vanished from sight .Mrs Weasley looked bewildered .The Minister but why ?I dont understand But there was no time to discuss the matter a second later Mr Weasley had appeared out of thin air at the gate accompanied by Rufus Scrimgeour instantly recognizable by his mane of grizzled hair .The two newcomers marched across the yard toward the garden and the lantern lit table where everybody sat in silence watching them draw closer .As Scrimgeour came within range of the lantern light Harry saw that he looked much older than the last time they had met scraggy and grim .Sorry to intrude said Scrimgeour as he limped to a halt before the table .Especially as I can see that I am gatecrashing a party .His eyes lingered for a moment on the giant Snitch cake .Many happy returns .Thanks said Harry .I require a private word with you Scrimgeour went on .Also with Mr Ronald Weasley and Miss Hermione Granger .Us ?said Ron sounding surprised .Why us ?I shall tell you that when we are somewhere more private said Scrimgeour .Is there such a place ?he demanded of Mr Weasley .Yes of course said Mr Weasley who looked nervous .The er sitting room why dont you use that ?You can lead the way Scrimgeour said to Ron .There will be no need for you to accompany us Arthur .Harry saw Mr Weasley exchange a worried look with Mrs Weasley as he Ron and Hermione stood up .As they led the way back to the house in silence Harry knew that the other two were thinking the same as he was Scrimgeour must somehow have learned that the three of them were planning to drop out of Hogwarts .Scrimgeour did not speak as they all passed through the messy kitchen and into the Burrows sitting room .Although the garden had been full of soft golden evening light it was already dark in here Harry flicked his wand at the oil lamps as he entered and they illuminated the shabby but cozy room .Scrimgeour sat himself in the sagging armchair that Mr Weasley normally occupied leaving Harry Ron and Hermione to squeeze side by side onto the sofa .Once they had done so Scrimgeour spoke .I have some questions for the three of you and I think it will be best if we do it individually .If you two he pointed at Harry and Hermione can wait upstairs I will start with Ronald .Were not going anywhere said Harry while Hermione nodded vigorously .You can speak to us together or not at all .Scrimgeour gave Harry a cold appraising look .Harry had the impression that the Minister was wondering whether it was worthwhile opening hostilities this early .Very well then together he said shrugging .He cleared his throat .I am here as Im sure you know because of Albus Dumbledores will .Harry Ron and Hermione looked at one another .A surprise apparently !You were not aware then that Dumbledore had left you anything ?Aall of us ?said Ron .Me and Hermione too ?Yes all of But Harry interrupted .Dumbledore died over a month ago .Why has it taken this long to give us what he left us ?Isnt it obvious ?said Hermione before Scrimgeour could answer .They wanted to examine whatever hes left us .You had no right to do that !she said and her voice trembled slightly .I had every right said Scrimgeour dismissively .The Decree for Justifiable Confiscation gives the Ministry the power to confiscate the contents of a will That law was created to stop wizards passing on Dark artifacts said Hermione and the Ministry is supposed to have powerful evidence that the deceaseds possessions are illegal before seizing them !Are you telling me that you thought Dumbledore was trying to pass us something cursed ?Are you planning to follow a career in Magical Law Miss Granger ?asked Scrimgeour .No Im not retorted Hermione .Im hoping to do some good in the world !Ron laughed .Scrimgeour s eyes flickered toward him and away again as Harry spoke .So why have you decided to let us have our things now ?Cant think of a pretext to keep them ?No itll be because the thirtyone days are up said Hermione at once .They cant keep the objects longer than that unless they can prove theyre dangerous .Right ?Would you say you were close to Dumbledore Ronald ?asked Scrimgeour ignoring Hermione .Ron looked startled .Me ?Not not really .It was always Harry who .Ron looked around at Harry and Hermione to see Hermione giving him a stoptalkingnow sort of look but the damage was done Scrimgeour looked as though he had heard exactly what he had expected and wanted to hear .He swooped like a bird of prey upon Rons answer .If you were not very close to Dumbledore how do you account for the fact that he remembered you in his will ?He made exceptionally few personal bequests .The vast majority of his possessions his private library his magical instruments and other personal effects were left to Hogwarts .Why do you think you were singled out ?I .dunno said Ron .I .when I say we werent close .I mean I think he liked me .Youre being modest Ron said Hermione .Dumbledore was very fond of you .This was stretching the truth to breaking point as far as Harry knew Ron and Dumbledore had never been alone together and direct contact between them had been negligible .However Scrimgeour did not seem to be listening .He put his hand inside his cloak and drew out a drawstring pouch much larger than the one Hagrid had given Harry .From it he removed a scroll of parchment which he unrolled and read aloud . ‘The Last Will and Testament of Albus Percival Wulfric Brian Dumbledore .Yes here we are . ‘To Ronald Bilius Weasley I leave my Deluminator in the hope that he will remember me when he uses it .Scrimgeour took from the bag an object that Harry had seen before It looked something like a silver cigarette lighter but it had he knew the power to suck all light from a place and restore it with a simple click .Scrimgeour leaned forward and passed the Deluminator to Ron who took it and turned it over in his fingers looking stunned .That is a valuable object said Scrimgeour watching Ron .It may even be unique .Certainly it is of Dumbledores own design .Why would he have left you an item so rare ?Ron shook his head looking bewildered .Dumbledore must have taught thousands of students Scrimgeour persevered .Yet the only ones he remembered in his will are you three .Why is that ?To what use did he think you would put his Deluminator Mr Weasley ?Put out lights I spose mumbled Ron .What else could I do with it ?Evidently Scrimgeour had no suggestions .After squinting at Ron for a moment or two he turned back to Dumbledores will .To Miss Hermione Jean Granger I leave my copy of The Tales of Beedle the Bard in the hope that she will find it entertaining and instructive .Scrimgeour now pulled out of the bag a small book that looked as ancient as the copy of Secrets of the Darkest Art upstairs .Its binding was stained and peeling in places .Hermione took it from Scrimgeour without a word .She held the book in her lap and gazed at it .Harry saw that the title was in runes he had never learned to read them .As he looked a tear splashed onto the embossed symbols .Why do you think Dumbledore left you that book Miss Granger ?asked Scrimgeour .He .he knew I liked books said Hermione in a thick voice mopping her eyes with her sleeve .But why that particular book ?I dont know .He must have thought Id enjoy it .Did you ever discuss codes or any means of passing secret messages with Dumbledore ?No I didnt said Hermione still wiping her eyes on her sleeve .And if the Ministry hasnt found any hidden codes in this book in thirtyone days I doubt that I will .She suppressed a sob .They were wedged together so tightly that Ron had difficulty extracting his arm to put it around Hermione s shoulders .Scrimgeour turned back to the will . ‘To Harry James Potter he read and Harrys insides contracted with a sudden excitement ‘I leave the Snitch he caught in his first Quidditch match at Hogwarts as a reminder of the rewards of perseverance and skill .As Scrimgeour pulled out the tiny walnutsized golden ball its silver wings fluttered rather feebly and Harry could not help feeling a definite sense of anticlimax .Why did Dumbledore leave you this Snitch ?asked Scrimgeour .No idea said Harry .For the reasons you just read out I suppose .to remind me what you can get if you .persevere and whatever it was .You think this a mere symbolic keepsake then ?I suppose so said Harry .What else could it be ?Im asking the questions said Scrimgeour shifting his chair a little closer to the sofa .Dusk was really falling outside now the marquee beyond the windows towered ghostly white over the hedge .I notice that your birthday cake is in the shape of a Snitch Scrimgeour said to Harry .Why is that ?Hermione laughed derisively .Oh it cant be a reference to the fact Harrys a great Seeker thats way too obvious she said .There must be a secret message from Dumbledore hidden in the icing !I dont think theres anything hidden in the icing said Scrimgeour but a Snitch would be a very good hiding place for a small object .You know why Im sure ?Harry shrugged .Hermione however answered Harry thought that answering questions correctly was such a deeply ingrained habit she could not suppress the urge .Because Snitches have flesh memories she said .What ?said Harry and Ron together both considered Hermione s Quidditch knowledge negligible .Correct said Scrimgeour .A Snitch is not touched by bare skin before it is released not even by the maker who wears gloves .It carries an enchantment by which it can identify the first human to lay hands upon it in case of a disputed capture .This Snitch he held up the tiny golden ball will remember your touch Potter .It occurs to me that Dumbledore who had prodigious magical skill whatever his other faults might have enchanted this Snitch so that it will open only for you .Harrys heart was beating rather fast .He was sure that Scrimgeour was right .How could he avoid taking the Snitch with his bare hand in front of the Minister ?You dont say anything said Scrimgeour .Perhaps you already know what the Snitch contains ?No said Harry still wondering how he could appear to touch the Snitch without really doing so .If only he knew Legilimency really knew it and could read Hermiones mind he could practically hear her brain whirring beside him .Take it said Scrimgeour quietly .Harry met the Ministers yellow eyes and knew he had no option but to obey .He held out his hand and Scrimgeour leaned forward again and placed the Snitch slowly and deliberately into Harrys palm .Nothing happened .As Harrys fingers closed around the Snitch its tired wings fluttered and were still .Scrimgeour Ron and Hermione continued to gaze avidly at the now partially concealed ball as if still hoping it might transform in some way .That was dramatic said Harry coolly .Both Ron and Hermione laughed .Thats all then is it ?asked Hermione making to prise herself off the sofa .Not quite said Scrimgeour who looked bad tempered now .Dumbledore left you a second bequest Potter .What is it ?asked Harry excitement rekindling .Scrimgeour did not bother to read from the will this time .The sword of Godric Gryffindor he said .Hermione and Ron both stiffened .Harry looked around for a sign of the rubyencrusted hilt but Scrimgeour did not pull the sword from the leather pouch which in any case looked much too small to contain it .So where is it ?Harry asked suspiciously .Unfortunately said Scrimgeour that sword was not Dumbledore s to give away .The sword of Godric Gryffindor is an important historical artifact and as such belongs It belongs to Harry !said Hermione hotly .It chose him he was the one who found it it came to him out of the Sorting Hat According to reliable historical sources the sword may present itself to any worthy Gryffindor said Scrimgeour .That does not make it the exclusive property of Mr Potter whatever Dumbledore may have decided .Scrimgeour scratched his badly shaven cheek scrutinizing Harry .Why do you think ?Dumbledore wanted to give me the sword ?said Harry struggling to keep his temper .Maybe he thought it would look nice on my wall .This is not a joke Potter !growled Scrimgeour .Was it because Dumbledore believed that only the sword of Godric Gryffindor could defeat the Heir of Slytherin ?Did he wish to give you that sword Potter because he believed as do many that you are the one destined to destroy HeWhoMustNotBeNamed ?Interesting theory said Harry .Has anyone ever tried sticking a sword in Voldemort ?Maybe the Ministry should put some people onto that instead of wasting their time stripping down Deluminators or covering up breakouts from Azkaban .So is this what youve been doing Minister shut up in your office trying to break open a Snitch ?People are dying I was nearly one of them Voldemort chased me across three counties he killed MadEye Moody but theres been no word about any of that from the Ministry has there ?And you still expect us to cooperate with you !You go too far !shouted Scrimgeour standing up Harry jumped to his feet too .Scrimgeour limped toward Harry and jabbed him hard in the chest with the point of his wand It singed a hole in Harrys T shirt like a lit cigarette .Oi !said Ron jumping up and raising his own wand but Harry said No !Dyou want to give him an excuse to arrest us ?Remembered youre not at school have you ?said Scrimgeour breathing hard into Harrys face .Remembered that I am not Dumbledore who forgave your insolence and insubordination ?You may wear that scar like a crown Potter but it is not up to a seventeenyearold boy to tell me how to do my job !Its time you learned some respect !Its time you earned it said Harry .The floor trembled there was a sound of running footsteps then the door to the sitting room burst open and Mr and Mrs Weasley ran in .We we thought we heard began Mr Weasley looking thoroughly alarmed at the sight of Harry and the Minister virtually nose to nose .raised voices panted Mrs Weasley .Scrimgeour took a couple of steps back from Harry glancing at the hole he had made in Harrys Tshirt .He seemed to regret his loss of temper .It it was nothing he growled .I .regret your attitude he said looking Harry full in the face once more .You seem to think that the Ministry does not desire what you what Dumbledore desired .We ought to be working together .I dont like your methods Minister said Harry .Remember ?For the second time he raised his right fist and displayed to Scrimgeour the scars that still showed white on the back of it spelling I must not tell lies .Scrimgeour s expression hardened .He turned away without another word and limped from the room .Mrs Weasley hurried after him Harry heard her stop at the back door .After a minute or so she called Hes gone !What did he want ?Mr Weasley asked looking around at Harry Ron and Hermione as Mrs Weasley came hurrying back to them .To give us what Dumbledore left us said Harry .Theyve only just released the contents of his will .Outside in the garden over the dinner tables the three objects Scrimgeour had given them were passed from hand to hand .Everyone exclaimed over the Deluminator and The Tales of Beedle the Bard and lamented the fact that Scrimgeour had refused to pass on the sword but none of them could offer any suggestion as to why Dumbledore would have left Harry an old Snitch .As Mr Weasley examined the Deluminator for the third or fourth time Mrs Weasley said tentatively Harry dear everyones awfully hungry we didnt like to start without you .Shall I serve dinner now ?They all ate rather hurriedly and then after a hasty chorus of Happy Birthday and much gulping of cake the party broke up .Hagrid who was invited to the wedding the following day but was far too bulky to sleep in the overstretched Burrow left to set up a tent for himself in a neighboring field .Meet us upstairs Harry whispered to Hermione while they helped Mrs Weasley restore the garden to its normal state .After everyones gone to bed .Up in the attic room Ron examined his Deluminator and Harry filled Hagrids mokeskin purse not with gold but with those items he most prized apparently worthless though some of them were the Marauders Map the shard of Siriuss enchanted mirror and R .A .B .s locket .He pulled the strings tight and slipped the purse around his neck then sat holding the old Snitch and watching its wings flutter feebly .At last Hermione tapped on the door and tiptoed inside .Muffliato she whispered waving her wand in the direction of the stairs .Thought you didnt approve of that spell ?said Ron .Times change said Hermione .Now show us that Deluminator .Ron obliged at once .Holding it up in front of him he clicked it .The solitary lamp they had lit went out at once .The thing is whispered Hermione through the dark we could have achieved that with Peruvian Instant Darkness Powder .There was a small click and the ball of light from the lamp flew back to the ceiling and illuminated them all once more .Still its cool said Ron a little defensively .And from what they said Dumbledore invented it himself !I know but surely he wouldnt have singled you out in his will just to help us turn out the lights !Dyou think he knew the Ministry would confiscate his will and examine everything hed left us ?asked Harry .Definitely said Hermione .He couldnt tell us in the will why he was leaving us these things but that still doesnt explain . .why he couldnt have given us a hint when he was alive ?asked Ron .Well exactly said Hermione now flicking through The Tales of Beedle the Bard .If these things are important enough to pass on right under the nose of the Ministry youd think hed have let us know why .unless he thought it was obvious ?Thought wrong then didnt he ?said Ron .I always said he was mental .Brilliant and everything but cracked .Leaving Harry an old Snitch what the hell was that about ?Ive no idea said Hermione .When Scrimgeour made you take it Harry I was so sure that something was going to happen !Yeah well said Harry his pulse quickening as he raised the Snitch in his fingers .I wasnt going to try too hard in front of Scrimgeour was I ?What do you mean ?asked Hermione .The Snitch I caught in my first ever Quidditch match ?said Harry .Dont you remember ?Hermione looked simply bemused .Ron however gasped pointing frantically from Harry to the Snitch and back again until he found his voice .That was the one you nearly swallowed !Exactly said Harry and with his heart beating fast he pressed his mouth to the Snitch .It did not open .Frustration and bitter disappointment welled up inside him He lowered the golden sphere but then Hermione cried out .Writing !Theres writing on it quick look !He nearly dropped the Snitch in surprise and excitement .Hermione was quite right .Engraved upon the smooth golden surface where seconds before there had been nothing were five words written in the thin slanting handwriting that Harry recognized as Dumbledores I open at the close .He had barely read them when the words vanished again . ‘I open at the close .Whats that supposed to mean ?Hermione and Ron shook their heads looking blank .I open at the close .at the close .I open at the close .But no matter how often they repeated the words with many different inflections they were unable to wring any more meaning from them .And the sword said Ron finally when they had at last abandoned their attempts to divine meaning in the Snitchs inscription .Why did he want Harry to have the sword ?And why couldnt he just have told me ?Harry said quietly .It was there it was right there on the wall of his office during all our talks last year !If he wanted me to have it why didnt he just give it to me then ?He felt as though he were sitting in an examination with a question he ought to have been able to answer in front of him his brain slow and unresponsive .Was there something he had missed in the long talks with Dumbledore last year ?Ought he to know what it all meant ?Had Dumbledore expected him to understand ?And as for this book said Hermione The Tales of Beedle the Bard .Ive never even heard of them !Youve never heard of The Tales of Beedle the Bard ?said Ron incredulously .Youre kidding right ?No Im not !said Hermione in surprise .Do you know them then ?Well of course I do !Harry looked up diverted .The circumstance of Ron having read a book that Hermione had not was unprecedented .Ron however looked bemused by their surprise .Oh come on !All the old kids stories are supposed to be Beedle s arent they ?The Fountain of Fair Fortune .The Wizard and the Hopping Pot . ‘Babbitty Rabbitty and her Cackling Stump .Excuse me ?said Hermione giggling .What was that last one ?Come off it !said Ron looking in disbelief from Harry to Hermione .You mustve heard of Babbitty Rabbitty Ron you know full well Harry and I were brought up by Muggles !said Hermione .We didnt hear stories like that when we were little we heard ‘Snow White and the Seven Dwarfs and ‘Cinderella Whats that an illness ?asked Ron .So these are childrens stories ?asked Hermione bending again over the runes .Yeah said Ron uncertainly I mean thats just what you hear you know that all these old stories came from Beedle .I dunno what theyre like in the original versions .But I wonder why Dumbledore thought I should read them ?Something creaked downstairs .Probably just Charlie now Mums asleep sneaking off to regrow his hair said Ron nervously .All the same we should get to bed whispered Hermione .It wouldnt do to oversleep tomorrow .No agreed Ron .A brutal triple murder by the bridegrooms mother might put a bit of a damper on the wedding .Ill get the lights .And he clicked the Deluminator once more as Hermione left the room .THE WEDDING Three oclock on the following afternoon found Harry Ron Fred and George standing outside the great white marquee in the orchard awaiting the arrival of the wedding guests .Harry had taken a large dose of Polyjuice Potion and was now the double of a redheaded Muggle boy from the local village Ottery St .Catchpole from whom Fred had stolen hairs using a Summoning Charm .The plan was to introduce Harry as Cousin Barny and trust to the great number of Weasley relatives to camouflage him .All four of them were clutching seating plans so that they could help show people to the right seats .A host of whiterobed waiters had arrived an hour earlier along with a goldenjacketed band and all of these wizards were currently sitting a short distance away under a tree Harry could see a blue haze of pipe smoke issuing from the spot .Behind Harry the entrance to the marquee revealed rows and rows of fragile golden chairs set on either side of a long purple carpet .The supporting poles were entwined with white and gold flowers .Fred and George had fastened an enormous bunch of golden balloons over the exact point where Bill and Fleur would shortly become husband and wife .Outside butterflies and bees were hovering lazily over the grass and hedgerow .Harry was rather uncomfortable .The Muggle boy whose appearance he was affecting was slightly fatter than him and his dress robes felt hot and tight in the full glare of a summers day .When I get married said Fred tugging at the collar of his own robes I wont be bothering with any of this nonsense .You can all wear what you like and Ill put a full BodyBind Curse on Mum until its all over .She wasnt too bad this morning considering said George .Cried a bit about Percy not being here but who wants him ?Oh blimey brace yourselves here they come look .Brightly colored figures were appearing one by one out of nowhere at the distant boundary of the yard .Within minutes a procession had formed which began to snake its way up through the garden toward the marquee .Exotic flowers and bewitched birds fluttered on the witches hats while precious gems glittered from many of the wizards cravats a hum of excited chatter grew louder and louder drowning the sound of the bees as the crowd approached the tent .Excellent I think I see a few veela cousins said George craning his neck for a better look .Theyll need help understanding our English customs Ill look after them .Not so fast Your Holeyness said Fred and darting past the gaggle of middleaged witches heading the procession he said Here permettezmoi to assister vous to a pair of pretty French girls who giggled and allowed him to escort them inside .George was left to deal with the middleaged witches and Ron took charge of Mr Weasleys old Ministry colleague Perkins while a rather deaf old couple fell to Harrys lot .Wotcher said a familiar voice as he came out of the marquee again and found Tonks and Lupin at the front of the queue .She had turned blonde for the occasion .Arthur told us you were the one with the curly hair .Sorry about last night she added in a whisper as Harry led them up the aisle .The Ministrys being very antiwerewolf at the moment and we thought our presence might not do you any favors .Its fine I understand said Harry speaking more to Lupin than Tonks .Lupin gave him a swift smile but as they turned away Harry saw Lupins face fall again into lines of misery .He did not understand it but there was no time to dwell on the matter Hagrid was causing a certain amount of disruption .Having misunderstood Freds directions he had sat himself not upon the magically enlarged and reinforced seat set aside for him in the back row but on five seats that now resembled a large pile of golden matchsticks .While Mr Weasley repaired the damage and Hagrid shouted apologies to anybody who would listen Harry hurried back to the entrance to find Ron facetoface with a most eccentriclooking wizard .Slightly cross eyed with shoulderlength white hair the texture of candyfloss he wore a cap whose tassel dangled in front of his nose and robes of an eyewatering shade of eggyolk yellow .An odd symbol rather like a triangular eye glistened from a golden chain around his neck .Xenophilius Lovegood he said extending a hand to Harry my daughter and I live just over the hill so kind of the good Weasleys to invite us .But I think you know my Luna ?he added to Ron .Yes said Ron .Isnt she with you ?She lingered in that charming little garden to say hello to the gnomes such a glorious infestation !How few wizards realize just how much we can learn from the wise little gnomes or to give them their correct name the Gernumbli gardensi .Ours do know a lot of excellent swear words said Ron but I think Fred and George taught them those .He led a party of warlocks into the marquee as Luna rushed up .Hello Harry !she said .Er my names Barny said Harry flummoxed .Oh have you changed that too ?she asked brightly .How did you know ?Oh just your expression she said .Like her father Luna was wearing bright yellow robes which she had accessorized with a large sunflower in her hair .Once you got over the brightness of it all the general effect was quite pleasant .At least there were no radishes dangling from her ears .Xenophilius who was deep in conversation with an acquaintance had missed the exchange between Luna and Harry .Bidding the wizard farewell he turned to his daughter who held up her finger and said Daddy look one of the gnomes actually bit me !How wonderful !Gnome saliva is enormously beneficial !said Mr Lovegood seizing Lunas outstretched finger and examining the bleeding puncture marks .Luna my love if you should feel any burgeoning talent today perhaps an unexpected urge to sing opera or to declaim in Mermish do not repress it !You may have been gifted by the Gernumblies !Ron passing them in the opposite direction let out a loud snort .Ron can laugh said Luna serenely as Harry led her and Xenophilius toward their seats but my father has done a lot of research on Gernumbli magic .Really ?said Harry who had long since decided not to challenge Luna or her fathers peculiar views .Are you sure you dont want to put anything on that bite though ?Oh its fine said Luna sucking her finger in a dreamy fashion and looking Harry up and down .You look smart .I told Daddy most people would probably wear dress robes but he believes you ought to wear sun colors to a wedding for luck you know .As she drifted off after her father Ron reappeared with an elderly witch clutching his arm .Her beaky nose redrimmed eyes and feathery pink hat gave her the look of a badtempered flamingo . .and your hairs much too long Ronald for a moment I thought you were Ginevra .Merlins beard what is Xenophilius Lovegood wearing ?He looks like an omelet .And who are you ?she barked at Harry .Oh yeah Auntie Muriel this is our cousin Barny .Another Weasley ?You breed like gnomes .Isnt Harry Potter here ?I was hoping to meet him .I thought he was a friend of yours Ronald or have you merely been boasting ?No he couldnt come Hmm .Made an excuse did he ?Not as gormless as he looks in press photographs then .Ive just been instructing the bride on how best to wear my tiara she shouted at Harry .Goblinmade you know and been in my family for centuries .Shes a goodlooking girl but still French .Well well find me a good seat Ronald I am a hundred and seven and I ought not to be on my feet too long .Ron gave Harry a meaningful look as he passed and did not reappear for some time When next they met at the entrance Harry had shown a dozen more people to their places .The marquee was nearly full now and for the first time there was no queue outside .Nightmare Muriel is said Ron mopping his forehead on his sleeve .She used to come for Christmas every year then thank God she took offense because Fred and George set off a Dungbomb under her chair at dinner .Dad always says shell have written them out of her will like they care theyre going to end up richer than anyone in the family rate theyre going .Wow he added blinking rather rapidly as Hermione came hurrying toward them .You look great !Always the tone of surprise said Hermione though she smiled .She was wearing a floaty lilaccolored dress with matching high heels her hair was sleek and shiny .Your GreatAunt Muriel doesnt agree I just met her upstairs while she was giving Fleur the tiara .She said ‘Oh dear is this the Muggleborn ?and then ‘Bad posture and skinny ankles .Dont take it personally shes rude to everyone said Ron .Talking about Muriel ?inquired George reemerging from the marquee with Fred .Yeah shes just told me my ears are lopsided .Old bat .I wish old Uncle Bilius was still with us though he was a right laugh at weddings .Wasnt he the one who saw a Grim and died twenty four hours later ?asked Hermione .Well yeah he went a bit odd toward the end conceded George .But before he went loopy he was the life and soul of the party said Fred .He used to down an entire bottle of firewhisky then run onto the dance floor hoist up his robes and start pulling bunches of flowers out of his Yes he sounds a real charmer said Hermione while Harry roared with laughter .Never married for some reason said Ron .You amaze me said Hermione .They were all laughing so much that none of them noticed the latecomer a darkhaired young man with a large curved nose and thick black eyebrows until he held out his invitation to Ron and said with his eyes on Hermione You look vunderful .Viktor !she shrieked and dropped her small beaded bag which made a loud thump quite disproportionate to its size .As she scrambled blushing to pick it up she said I didnt know you were goodness its lovely to see how are you ?Rons ears had turned bright red again .After glancing at Krums invitation as if he did not believe a word of it he said much too loudly How come youre here ?Fleur invited me said Krum eyebrows raised .Harry who had no grudge against Krum shook hands then feeling that it would be prudent to remove Krum from Rons vicinity offered to show him his seat .Your friend is not pleased to see me said Krum as they entered the now packed marquee .Or is he a relative ?he added with a glance at Harrys red curly hair .Cousin Harry muttered but Krum was not really listening .His appearance was causing a stir particularly amongst the veela cousins He was after all a famous Quidditch player .While people were still craning their necks to get a good look at him Ron Hermione Fred and George came hurrying down the aisle .Time to sit down Fred told Harry or were going to get run over by the bride .Harry Ron and Hermione took their seats in the second row behind Fred and George .Hermione looked rather pink and Rons ears were still scarlet .After a few moments he muttered to Harry Did you see hes grown a stupid little beard ?Harry gave a noncommittal grunt .A sense of jittery anticipation had filled the warm tent the general murmuring broken by occasional spurts of excited laughter .Mr and Mrs Weasley strolled up the aisle smiling and waving at relatives Mrs Weasley was wearing a brandnew set of amethystcolored robes with a matching hat .A moment later Bill and Charlie stood up at the front of the marquee both wearing dress robes with large white roses in their buttonholes Fred wolfwhistled and there was an outbreak of giggling from the veela cousins .Then the crowd fell silent as music swelled from what seemed to be the golden balloons .Ooooh !said Hermione swiveling around in her seat to look at the entrance .A great collective sigh issued from the assembled witches and wizards as Monsieur Delacour and Fleur came walking up the aisle Fleur gliding Monsieur Delacour bouncing and beaming .Fleur was wearing a very simple white dress and seemed to be emitting a strong silvery glow .While her radiance usually dimmed everyone else by comparison today it beautified everybody it fell upon .Ginny and Gabrielle both wearing golden dresses looked even prettier than usual and once Fleur had reached him Bill did not look as though he had ever met Fenrir Greyback .Ladies and gentlemen said a slightly singsong voice and with a slight shock Harry saw the same small tuftyhaired wizard who had presided at Dumbledores funeral now standing in front of Bill and Fleur .We are gathered here today to celebrate the union of two faithful souls .Yes my tiara sets off the whole thing nicely said Auntie Muriel in a rather carrying whisper .But I must say Ginevras dress is far too low cut .Ginny glanced around grinning winked at Harry then quickly faced the front again .Harrys mind wandered a long way from the marquee back to afternoons spent alone with Ginny in lonely parts of the school grounds .They seemed so long ago they had always seemed too good to be true as though he had been stealing shining hours from a normal persons life a person without a lightningshaped scar on his forehead .Do you William Arthur take Fleur Isabelle . ?In the front row Mrs Weasley and Madame Delacour were both sobbing quietly into scraps of lace .Trumpetlike sounds from the back of the marquee told everyone that Hagrid had taken out one of his own tableclothsized handkerchiefs .Hermione turned and beamed at Harry her eyes too were full of tears . .then I declare you bonded for life .The tuftyhaired wizard waved his wand high over the heads of Bill and Fleur and a shower of silver stars fell upon them spiraling around their now entwined figures .As Fred and George led a round of applause the golden balloons overhead burst Birds of paradise and tiny golden bells flew and floated out of them adding their songs and chimes to the din .Ladies and gentlemen !called the tuftyhaired wizard .If you would please stand up !They all did so Auntie Muriel grumbling audibly he waved his wand again .The seats on which they had been sitting rose gracefully into the air as the canvas walls of the marquee vanished so that they stood beneath a canopy supported by golden poles with a glorious view of the sunlit orchard and surrounding countryside .Next a pool of molten gold spread from the center of the tent to form a gleaming dance floor the hovering chairs grouped themselves around small whiteclothed tables which all floated gracefully back to earth around it and the golden jacketed band trooped toward a podium .Smooth said Ron approvingly as the waiters popped up on all sides some bearing silver trays of pumpkin juice butterbeer and firewhisky others tottering piles of tarts and sandwiches .We should go and congratulate them !said Hermione standing on tiptoe to see the place where Bill and Fleur had vanished amid a crowd of well wishers .Well have time later shrugged Ron snatching three butterbeers from a passing tray and handing one to Harry .Hermione cop hold lets grab a table .Not there !Nowhere near Muriel Ron led the way across the empty dance floor glancing left and right as he went Harry felt sure that he was keeping an eye out for Krum .By the time they had reached the other side of the marquee most of the tables were occupied The emptiest was the one where Luna sat alone .All right if we join you ?asked Ron .Oh yes she said happily .Daddys just gone to give Bill and Fleur our present .What is it a lifetimes supply of Gurdyroots ?asked Ron .Hermione aimed a kick at him under the table but caught Harry instead .Eyes watering in pain Harry lost track of the conversation for a few moments .The band had begun to play .Bill and Fleur took to the dance floor first to great applause after a while Mr Weasley led Madame Delacour onto the floor followed by Mrs Weasley and Fleurs father .I like this song said Luna swaying in time to the waltzlike tune and a few seconds later she stood up and glided onto the dance floor where she revolved on the spot quite alone eyes closed and waving her arms .Shes great isnt she ?said Ron admiringly .Always good value .But the smile vanished from his face at once Viktor Krum had dropped into Lunas vacant seat .Hermione looked pleasurably flustered but this time Krum had not come to compliment her .With a scowl on his face he said Who is that man in the yellow ?Thats Xenophilius Lovegood hes the father of a friend of ours said Ron .His pugnacious tone indicated that they were not about to laugh at Xenophilius despite the clear provocation .Come and dance he added abruptly to Hermione .She looked taken aback but pleased too and got up .They vanished together into the growing throng on the dance floor .Ah they are together now ?asked Krum momentarily distracted .Er sort of said Harry .Who are you ?Krum asked .Barny Weasley .They shook hands .You Barny you know this man Lovegood veil ?No I only met him today .Why ?Krum glowered over the top of his drink watching Xenophilius who was chatting to several warlocks on the other side of the dance floor .Because said Krum if he vos not a guest of Fleurs I vould duel him here and now for vearing that filthy sign upon his chest .Sign ?said Harry looking over at Xenophilius too .The strange triangular eye was gleaming on his chest .Why ?Whats wrong with it ?Grindelvald .That is Grindelvalds sign .Grindelwald .the Dark wizard Dumbledore defeated ?Exactly .Krums jaw muscles worked as if he were chewing then he said Grindelvald killed many people my grandfather for instance .Of course he vos never poverful in this country they said he feared Dumbledore and rightly seeing how he vos finished .But this he pointed a finger at Xenophilius this is his symbol I recognized it at vunce Grindelvald carved it into a vail at Durmstrang ven he vos a pupil there .Some idiots copied it onto their books and clothes thinking to shock make themselves impressive until those of us who had lost family members to Grindelvald taught them better .Krum cracked his knuckles menacingly and glowered at Xenophilius .Harry felt perplexed .It seemed incredibly unlikely that Lunas father was a supporter of the Dark Arts and nobody else in the tent seemed to have recognized the triangular runelike shape .Are you er quite sure its Grindelwalds ?I am not mistaken said Krum coldly .I valked past that sign for several years I know it veil .Well theres a chance said Harry that Xenophilius doesnt actually know what the symbol means .The Lovegoods are quite .unusual .He could easily have picked it up somewhere and think its a cross section of the head of a CrumpleHorned Snorkack or something .The cross section of a vot ?Well I dont know what they are but apparently he and his daughter go on holiday looking for them .Harry felt he was doing a bad job explaining Luna and her father .Thats her he said pointing at Luna who was still dancing alone waving her arms around her head like someone attempting to beat off midges .Vy is she doing that ?asked Krum .Probably trying to get rid of a Wrackspurt said Harry who recognized the symptoms .Krum did not seem to know whether or not Harry was making fun of him .He drew his wand from inside his robes and tapped it menacingly on his thigh sparks flew out of the end .Gregorovitch !said Harry loudly and Krum started but Harry was too excited to care the memory had come back to him at the sight of Krums wand Ollivander taking it and examining it carefully before the Triwizard Tournament .Vot about him ?asked Krum suspiciously .Hes a wandmaker !I know that said Krum .He made your wand !Thats why I thought Quidditch Krum was looking more and more suspicious .How do you know Gregorovitch made my vand ?I .I read it somewhere I think said Harry .In a a fan magazine he improvised wildly and Krum looked mollified .I had not realized I ever discussed my vand with fans he said .So .er .where is Gregorovitch these days ?Krum looked puzzled .He retired several years ago .I vos one of the last to purchase a Gregorovitch vand .They are the best although I know of course that you Britons set much store by Ollivander .Harry did not answer .He pretended to watch the dancers like Krum but he was thinking hard .So Voldemort was looking for a celebrated wandmaker and Harry did not have to search far for a reason It was surely because of what Harrys wand had done on the night that Voldemort had pursued him across the skies .The holly and phoenix feather wand had conquered the borrowed wand something that Ollivander had not anticipated or understood .Would Gregorovitch know better ?Was he truly more skilled than Ollivander did he know secrets of wands that Ollivander did not ?This girl is very nicelooking Krum said recalling Harry to his surroundings .Krum was pointing at Ginny who had just joined Luna .She is also a relative of yours ?Yeah said Harry suddenly irritated and shes seeing someone .Jealous type .Big bloke .You wouldnt want to cross him .Krum grunted .Vot he said draining his goblet and getting to his feet again is the point of being an international Quidditch player if all the goodlooking girls are taken ?And he strode off leaving Harry to take a sandwich from a passing waiter and make his way around the edge of the crowded dance floor .He wanted to find Ron to tell him about Gregorovitch but Ron was dancing with Hermione out in the middle of the floor .Harry leaned up against one of the golden pillars and watched Ginny who was now dancing with Fred and Georges friend Lee Jordan trying not to feel resentful about the promise he had given Ron .He had never been to a wedding before so he could not judge how Wizarding celebrations differed from Muggle ones though he was pretty sure that the latter would not involve a wedding cake topped with two model phoenixes that took flight when the cake was cut or bottles of champagne that floated unsupported through the crowd .As evening drew in and moths began to swoop under the canopy now lit with floating golden lanterns the revelry became more and more uncontained .Fred and George had long since disappeared into the darkness with a pair of Fleurs cousins Charlie Hagrid and a squat wizard in a purple porkpie hat were singing Odo the Hero in a corner .Wandering through the crowd so as to escape a drunken uncle of Rons who seemed unsure whether or not Harry was his son Harry spotted an old wizard sitting alone at a table .His cloud of white hair made him look rather like an aged dandelion clock and was topped by a motheaten fez .He was vaguely familiar Racking his brains Harry suddenly realized that this was Elphias Doge member of the Order of the Phoenix and the writer of Dumbledores obituary .Harry approached him .May I sit down ?Of course of course said Doge he had a rather highpitched wheezy voice .Harry leaned in .Mr Doge Im Harry Potter .Doge gasped .My dear boy !Arthur told me you were here disguised .I am so glad so honored !In a flutter of nervous pleasure Doge poured Harry a goblet of champagne .I thought of writing to you he whispered after Dumbledore .the shock .and for you I am sure Doges tiny eyes filled with sudden tears .I saw the obituary you wrote for the Daily Prophet said Harry .I didnt realize you knew Professor Dumbledore so well .As well as anyone said Doge dabbing his eyes with a napkin .Certainly I knew him longest if you dont count Aberforth and somehow people never do seem to count Aberforth .Speaking of the Daily Prophet .I dont know whether you saw Mr Doge ?Oh please call me Elphias dear boy .Elphias I dont know whether you saw the interview Rita Skeeter gave about Dumbledore ?Doges face flooded with angry color .Oh yes Harry I saw it .That woman or vulture might be a more accurate term positively pestered me to talk to her .I am ashamed to say that I became rather rude called her an interfering trout which resulted as you may have seen in aspersions cast upon my sanity .Well in that interview Harry went on Rita Skeeter hinted that Professor Dumbledore was involved in the Dark Arts when he was young .Dont believe a word of it !said Doge at once .Not a word Harry !Let nothing tarnish your memories of Albus Dumbledore !Harry looked into Doges earnest pained face and felt not reassured but frustrated .Did Doge really think it was that easy that Harry could simply choose not to believe ?Didnt Doge understand Harrys need to be sure to know everything ?Perhaps Doge suspected Harrys feelings for he looked concerned and hurried on Harry Rita Skeeter is a dreadful But he was interrupted by a shrill cackle .Rita Skeeter ?Oh I love her always read her !Harry and Doge looked up to see Auntie Muriel standing there the plumes dancing on her hat a goblet of champagne in her hand .Shes written a book about Dumbledore you know !Hello Muriel said Doge .Yes we were just discussing You there !Give me your chair Im a hundred and seven !Another redheaded Weasley cousin jumped off his seat looking alarmed and Auntie Muriel swung it around with surprising strength and plopped herself down upon it between Doge and Harry .Hello again Barry or whatever your name is she said to Harry .Now what were you saying about Rita Skeeter Elphias ?You know shes written a biography of Dumbledore ?I cant wait to read it I must remember to place an order at Flourish and Blotts !Doge looked stiff and solemn at this but Auntie Muriel drained her goblet and clicked her bony fingers at a passing waiter for a replacement .She took another large gulp of champagne belched and then said Theres no need to look like a pair of stuffed frogs !Before he became so respected and respectable and all that tosh there were some mighty funny rumors about Albus !Illinformed sniping said Doge turning radish colored again .You would say that Elphias cackled Auntie Muriel .I noticed how you skated over the sticky patches in that obituary of yours !Im sorry you think so said Doge more coldly still .I assure you I was writing from the heart .Oh we all know you worshipped Dumbledore I daresay youll still think he was a saint even if it does turn out that he did away with his Squib sister !Muriell exclaimed Doge .A chill that had nothing to do with the iced champagne was stealing through Harrys chest .What do you mean ?he asked Muriel .Who said his sister was a Squib ?I thought she was ill ?Thought wrong then didnt you Barry !said Auntie Muriel looking delighted at the effect she had produced .Anyway how could you expect to know anything about it ?It all happened years and years before you were even thought of my dear and the truth is that those of us who were alive then never knew what really happened .Thats why I cant wait to find out what Skeeters unearthed !Dumbledore kept that sister of his quiet for a long time !Untrue !wheezed Doge .Absolutely untrue !He never told me his sister was a Squib said Harry without thinking still cold inside .And why on earth would he tell you ?screeched Muriel swaying a little in her seat as she attempted to focus upon Harry .The reason Albus never spoke about Ariana began Elphias in a voice stiff with emotion is I should have thought quite clear .He was so devastated by her death Why did nobody ever see her Elphias ?squawked Muriel .Why did half of us never even know she existed until they carried the coffin out of the house and held a funeral for her ?Where was saintly Albus while Ariana was locked in the cellar ?Off being brilliant at Hogwarts and never mind what was going on in his own house !What dyou mean locked in the cellar ?asked Harry .What is this ?Doge looked wretched .Auntie Muriel cackled again and answered Harry .Dumbledores mother was a terrifying woman simply terrifying .Muggleborn though I heard she pretended otherwise She never pretended anything of the sort !Kendra was a fine woman whispered Doge miserably but Auntie Muriel ignored him .proud and very domineering the sort of witch who would have been mortified to produce a Squib Ariana was not a Squib !wheezed Doge .So you say Elphias but explain then why she never attended Hogwarts !said Auntie Muriel .She turned back to Harry .In our day Squibs were often hushed up though to take it to the extreme of actually imprisoning a little girl in the house and pretending she didnt exist I tell you thats not what happened !said Doge but Auntie Muriel steamrollered on still addressing Harry .Squibs were usually shipped off to Muggle schools and encouraged to integrate into the Muggle community .much kinder than trying to find them a place in the Wizarding world where they must always be second class but naturally Kendra Dumbledore wouldnt have dreamed of letting her daughter go to a Muggle school Ariana was delicate !said Doge desperately .Her health was always too poor to permit her to permit her to leave the house ?cackled Muriel .And yet she was never taken to St .Mungos and no Healer was ever summoned to see her !Really Muriel how you can possibly know whether For your information Elphias my cousin Lancelot was a Healer at St .Mungos at the time and he told my family in strictest confidence that Ariana had never been seen there .All most suspicious Lancelot thought !Doge looked to be on the verge of tears .Auntie Muriel who seemed to be enjoying herself hugely snapped her fingers for more champagne .Numbly Harry thought of how the Dursleys had once shut him up locked him away kept him out of sight all for the crime of being a wizard .Had Dumbledores sister suffered the same fate in reverse imprisoned for her lack of magic ?And had Dumbledore truly left her to her fate while he went off to Hogwarts to prove himself brilliant and talented ?Now if Kendra hadnt died first Muriel resumed Id have said that it was she who finished off Ariana How can you Muriel ?groaned Doge .A mother kill her own daughter ?Think what you are saying !If the mother in question was capable of imprisoning her daughter for years on end why not ?shrugged Auntie Muriel .But as I say it doesnt fit because Kendra died before Ariana of what nobody ever seemed sure Oh no doubt Ariana murdered her said Doge with a brave attempt at scorn .Why not ?Yes Ariana might have made a desperate bid for freedom and killed Kendra in the struggle said Auntie Muriel thoughtfully .Shake your head all you like Elphias !You were at Arianas funeral were you not ?Yes I was said Doge through trembling lips .And a more desperately sad occasion I cannot remember .Albus was heartbroken His heart wasnt the only thing .Didnt Aberforth break Albus s nose halfway through the service ?If Doge had looked horrified before this it was nothing to how he looked now .Muriel might have stabbed him .She cackled loudly and took another swig of champagne which dribbled down her chin .How do you ?croaked Doge .My mother was friendly with old Bathilda Bagshot said Auntie Muriel happily .Bathilda described the whole thing to Mother while I was listening at the door .A coffinside brawl !The way Bathilda told it Aberforth shouted that it was all Albus s fault that Ariana was dead and then punched him in the face .According to Bathilda Albus did not even defend himself and thats odd enough in itself Albus could have destroyed Aberforth in a duel with both hands tied behind his back .Muriel swigged yet more champagne .The recitation of these old scandals seemed to elate her as much as they horrified Doge .Harry did not know what to think what to believe He wanted the truth and yet all Doge did was sit there and bleat feebly that Ariana had been ill .Harry could hardly believe that Dumbledore would not have intervened if such cruelty was happening inside his own house and yet there was undoubtedly something odd about the story .And Ill tell you something else Muriel said hiccuping slightly as she lowered her goblet .I think Bathilda has spilled the beans to Rita Skeeter .All those hints in Skeeters interview about an important source close to the Dumbledores goodness knows she was there all through the Ariana business and it would fit !Bathilda would never talk to Rita Skeeter !whispered Doge .Bathilda Bagshot ?Harry said .The author of A History of Magic ?The name was printed on the front of one of Harrys textbooks though admittedly not one of the ones he had read most attentively .Yes said Doge clutching at Harrys question like a drowning man at a life belt .A most gifted magical historian and an old friend of Albuss .Quite gaga these days Ive heard said Auntie Muriel cheerfully .If that is so it is even more dishonorable for Skeeter to have taken advantage of her said Doge and no reliance can be placed on anything Bathilda may have said !Oh there are ways of bringing back memories and Im sure Rita Skeeter knows them all said Auntie Muriel .But even if Bathildas completely cuckoo Im sure shed still have old photographs maybe even letters .She knew the Dumbledores for years .Well worth a trip to Godrics Hollow Id have thought .Harry who had been taking a sip of butterbeer choked .Doge banged him on the back as Harry coughed looking at Auntie Muriel through streaming eyes .Once he had control of his voice again he asked Bathilda Bagshot lives in Godrics Hollow ?Oh yes shes been there forever !The Dumbledores moved there after Percival was imprisoned and she was their neighbor .The Dumbledores lived in Godrics Hollow ?Yes Barry thats what I just said said Auntie Muriel testily .Harry felt drained empty .Never once in six years had Dumbledore told Harry that they had both lived and lost loved ones in Godrics Hollow .Why ?Were Lily and James buried close to Dumbledore s mother and sister ?Had Dumbledore visited their graves perhaps walked past Lilys and Jamess to do so ?And he had never once told Harry .never bothered to say And why it was so important Harry could not explain even to himself yet he felt it had been tantamount to a lie not to tell him that they had this place and these experiences in common .He stared ahead of him barely noticing what was going on around him and did not realize that Hermione had appeared out of the crowd until she drew up a chair beside him .I simply cant dance anymore she panted slipping off one of her shoes and rubbing the sole of her foot .Rons gone looking to find more butterbeers .Its a bit odd Ive just seen Viktor storming away from Lunas father it looked like theyd been arguing She dropped her voice staring at him .Harry are you okay ?Harry did not know where to begin but it did not matter .At that moment something large and silver came falling through the canopy over the dance floor .Graceful and gleaming the lynx landed lightly in the middle of the astonished dancers .Heads turned as those nearest it froze absurdly in middance .Then the Patronuss mouth opened wide and it spoke in the loud deep slow voice of Kingsley Shacklebolt .The Ministry has fallen .Scrimgeour is dead .They are coming .9 A PLACE TO HIDE Everything seemed fuzzy slow .Harry and Hermione jumped to their feet and drew their wands .Many people were only just realizing that something strange had happened heads were still turning toward the silver cat as it vanished .Silence spread outward in cold ripples from the place where the Patronus had landed .Then somebody screamed .Harry and Hermione threw themselves into the panicking crowd .Guests were sprinting in all directions many were Disapparating the protective enchantments around the Burrow had broken .Ron !Hermione cried .Ron where are you ?As they pushed their way across the dance floor Harry saw cloaked and masked figures appearing in the crowd then he saw Lupin and Tonks their wands raised and heard both of them shout Protego a cry that was echoed on all sides Ron !Ron !Hermione called half sobbing as she and Harry were buffeted by terrified guests Harry seized her hand to make sure they werent separated as a streak of light whizzed over their heads whether a protective charm or something more sinister he did not know And then Ron was there .He caught hold of Hermione s free arm and Harry felt her turn on the spot sight and sound were extinguished as darkness pressed in upon him all he could feel was Hermiones hand as he was squeezed through space and time away from the Burrow away from the descending Death Eaters away perhaps from Voldemort himself .Where are we ?said Rons voice .Harry opened his eyes .For a moment he thought they had not left the wedding after all They still seemed to be surrounded by people .Tottenham Court Road panted Hermione .Walk just walk we need to find somewhere for you to change .Harry did as she asked .They half walked half ran up the wide dark street thronged with latenight revelers and lined with closed shops stars twinkling above them .A doubledecker bus rumbled by and a group of merry pubgoers ogled them as they passed Harry and Ron were still wearing dress robes .Hermione we havent got anything to change into Ron told her as a young woman burst into raucous giggles at the sight of him .Why didnt I make sure I had the Invisibility Cloak with me ?said Harry inwardly cursing his own stupidity .All last year I kept it on me and Its okay Ive got the Cloak Ive got clothes for both of you said Hermione .Just try and act naturally until this will do .She led them down a side street then into the shelter of a shadowy alleyway .When you say youve got the Cloak and clothes .said Harry frowning at Hermione who was carrying nothing except her small beaded handbag in which she was now rummaging .Yes theyre here said Hermione and to Harry and Rons utter astonishment she pulled out a pair of jeans a sweatshirt some maroon socks and finally the silvery Invisibility Cloak .How the ruddy hell ?Undetectable Extension Charm said Hermione .Tricky but I think Ive done it okay anyway I managed to fit everything we need in here .She gave the fragilelooking bag a little shake and it echoed like a cargo hold as a number of heavy objects rolled around inside it .Oh damn thatll be the books she said peering into it and I had them all stacked by subject .Oh well .Harry youd better take the Invisibility Cloak .Ron hurry up and change .When did you do all this ?Harry asked as Ron stripped off his robes .I told you at the Burrow Ive had the essentials packed for days you know in case we needed to make a quick getaway .I packed your rucksack this morning Harry after you changed and put it in here . .I just had a feeling .Youre amazing you are said Ron handing her his bundledup robes .Thank you said Hermione managing a small smile as she pushed the robes into the bag .Please Harry get that Cloak on !Harry threw the Invisibility Cloak around his shoulders and pulled it up over his head vanishing from sight .He was only just beginning to appreciate what had happened .The others everyone at the wedding We cant worry about that now whispered Hermione .Its you theyre after Harry and well just put everyone in even more danger by going back .Shes right said Ron who seemed to know that Harry was about to argue even if he could not see his face .Most of the Order was there theyll look after everyone .Harry nodded then remembered that they could not see him and said Yeah .But he thought of Ginny and fear bubbled like acid in his stomach .Come on I think we ought to keep moving said Hermione .They moved back up the side street and onto the main road again where a group of men on the opposite side was singing and weaving across the pavement .Just as a matter of interest why Tottenham Court Road ?Ron asked Hermione .Ive no idea it just popped into my head but Im sure were safer out in the Muggle world its not where theyll expect us to be .True said Ron looking around but dont you feel a bit exposed ?Where else is there ?asked Hermione cringing as the men on the other side of the road started wolf whistling at her .We can hardly book rooms at the Leaky Cauldron can we ?And Grimmauld Place is out if Snape can get in there .I suppose we could try my parents house though I think theres a chance they might check there .Oh I wish theyd shut up !All right darling ?the drunkest of the men on the other pavement was yelling .Fancy a drink ?Ditch ginger and come and have a pint !Lets sit down somewhere Hermione said hastily as Ron opened his mouth to shout back across the road .Look this will do in here !It was a small and shabby allnight cafe .A light layer of grease lay on all the Formica topped tables but it was at least empty .Harry slipped into a booth first and Ron sat next to him opposite Hermione who had her back to the entrance and did not like it She glanced over her shoulder so frequently she appeared to have a twitch .Harry did not like being stationary walking had given the illusion that they had a goal .Beneath the Cloak he could feel the last vestiges of Polyjuice leaving him his hands returning to their usual length and shape .He pulled his glasses out of his pocket and put them on again .After a minute or two Ron said You know were not far from the Leaky Cauldron here its only in Charing Cross Ron we cant !said Hermione at once .Not to stay there but to find out whats going on !We know whats going on !Voldemorts taken over the Ministry what else do we need to know ?Okay okay it was just an idea !They relapsed into a prickly silence .The gumchewing waitress shuffled over and Hermione ordered two cappuccinos As Harry was invisible it would have looked odd to order him one .A pair of burly workmen entered the cafe and squeezed into the next booth .Hermione dropped her voice to a whisper .I say we find a quiet place to Disapparate and head for the countryside .Once were there we could send a message to the Order .Can you do that talking Patronus thing then ?asked Ron .Ive been practicing and I think so said Hermione .Well as long as it doesnt get them into trouble though they mightve been arrested already .God thats revolting Ron added after one sip of the foamy grayish coffee .The waitress had heard she shot Ron a nasty look as she shuffled off to take the new customers orders .The larger of the two workmen who was blond and quite huge now that Harry came to look at him waved her away .She stared affronted .Lets get going then I dont want to drink this muck said Ron .Hermione have you got Muggle money to pay for this ?Yes I took out all my Building Society savings before I came to the Burrow .Ill bet all the change is at the bottom sighed Hermione reaching for her beaded bag .The two workmen made identical movements and Harry mirrored them without conscious thought All three of them drew their wands .Ron a few seconds late in realizing what was going on lunged across the table pushing Hermione sideways onto her bench .The force of the Death Eaters spells shattered the tiled wall where Rons head had just been as Harry still invisible yelled Stupefyl The great blond Death Eater was hit in the face by a jet of red light He slumped sideways unconscious .His companion unable to see who had cast the spell fired another at Ron Shining black ropes flew from his wandtip and bound Ron head to foot the waitress screamed and ran for the door Harry sent another Stunning Spell at the Death Eater with the twisted face who had tied up Ron but the spell missed rebounded on the window and hit the waitress who collapsed in front of the door .Expulsol bellowed the Death Eater and the table behind which Harry was standing blew up The force of the explosion slammed him into the wall and he felt his wand leave his hand as the Cloak slipped off him .Petrificus TotalusV screamed Hermione from out of sight and the Death Eater fell forward like a statue to land with a crunching thud on the mess of broken china table and coffee .Hermione crawled out from underneath the bench shaking bits of glass ashtray out of her hair and trembling all over .Ddiffindo she said pointing her wand at Ron who roared in pain as she slashed open the knee of his jeans leaving a deep cut .Oh Im so sorry Ron my hands shaking !Diffindol The severed ropes fell away .Ron got to his feet shaking his arms to regain feeling in them .Harry picked up his wand and climbed over all the debris to where the large blond Death Eater was sprawled across the bench .I shouldve recognized him he was there the night Dumbledore died he said .He turned over the darker Death Eater with his foot the mans eyes moved rapidly between Harry Ron and Hermione .Thats Dolohov said Ron .I recognize him from the old wanted posters .I think the big ones Thorfinn Rowle .Never mind what theyre called !said Hermione a little hysterically .How did they find us ?What are we going to do ?Somehow her panic seemed to clear Harrys head .Lock the door he told her and Ron turn out the lights .He looked down at the paralyzed Dolohov thinking fast as the lock clicked and Ron used the Deluminator to plunge the cafe into darkness .Harry could hear the men who had jeered at Hermione earlier yelling at another girl in the distance .What are we going to do with them ?Ron whispered to Harry through the dark then even more quietly Kill them ?Theyd kill us .They had a good go just now .Hermione shuddered and took a step backward .Harry shook his head .We just need to wipe their memories said Harry .Its better like that itll throw them off the scent .If we killed them itd be obvious we were here .Youre the boss said Ron sounding profoundly relieved .But Ive never done a Memory Charm .Nor have I said Hermione but I know the theory .She took a deep calming breath then pointed her wand at Dolohovs forehead and said Obliviate .At once Dolohovs eyes became unfocused and dreamy .Brilliant !said Harry clapping her on the back .Take care of the other one and the waitress while Ron and I clear up .Clear up ?said Ron looking around at the partly destroyed cafe .Why ?Dont you think they might wonder whats happened if they wake up and find themselves in a place that looks like its just been bombed ?Oh right yeah .Ron struggled for a moment before managing to extract his wand from his pocket .Its no wonder I cant get it out Hermione you packed my old jeans theyre tight .Oh Im so sorry hissed Hermione and as she dragged the waitress out of sight of the windows Harry heard her mutter a suggestion as to where Ron could stick his wand instead .Once the cafe was restored to its previous condition they heaved the Death Eaters back into their booth and propped them up facing each other .But how did they find us ?Hermione asked looking from one inert man to the other .How did they know where we were ?She turned to Harry .You you dont think youve still got your Trace on you do you Harry ?He cant have said Ron .The Trace breaks at seventeen thats Wizarding law you cant put it on an adult .As far as you know said Hermione .What if the Death Eaters have found a way to put it on a seventeenyearold ?But Harry hasnt been near a Death Eater in the last twentyfour hours .Whos supposed to have put a Trace back on him ?Hermione did not reply .Harry felt contaminated tainted Was that really how the Death Eaters had found them ?If I cant use magic and you cant use magic near me without us giving away our position he began .Were not splitting up !said Hermione firmly .We need a safe place to hide said Ron .Give us time to think things through .Grimmauld Place said Harry .The other two gaped .Dont be silly Harry Snape can get in there !Rons dad said theyve put up jinxes against him and even if they havent worked he pressed on as Hermione began to argue so what ?I swear Id like nothing better than to meet Snape !But Hermione where else is there ?Its the best chance weve got .Snapes only one Death Eater .If Ive still got the Trace on me well have whole crowds of them on us wherever else we go .She could not argue though she looked as if she would have liked to .While she unlocked the cafe door Ron clicked the Deluminator to release the cafes light .Then on Harrys count of three they reversed the spells upon their three victims and before the waitress or either of the Death Eaters could do more than stir sleepily Harry Ron and Hermione had turned on the spot and vanished into the compressing darkness once more .Seconds later Harrys lungs expanded gratefully and he opened his eyes They were now standing in the middle of a familiar small and shabby square .Tall dilapidated houses looked down on them from every side .Number twelve was visible to them for they had been told of its existence by Dumbledore its Secret Keeper and they rushed toward it checking every few yards that they were not being followed or observed .They raced up the stone steps and Harry tapped the front door once with his wand .They heard a series of metallic clicks and the clatter of a chain then the door swung open with a creak and they hurried over the threshold .As Harry closed the door behind them the old fashioned gas lamps sprang into life casting flickering light along the length of the hallway .It looked just as Harry remembered it eerie cobwebbed the outlines of the houseelf heads on the wall throwing odd shadows up the staircase .Long dark curtains concealed the portrait of Siriuss mother .The only thing that was out of place was the trolls leg umbrella stand which was lying on its side as if Tonks had just knocked it over again .I think somebodys been in here Hermione whispered pointing toward it .That couldve happened as the Order left Ron murmured back .So where are these jinxes they put up against Snape ?Harry asked .Maybe theyre only activated if he shows up ?suggested Ron .Yet they remained close together on the doormat backs against the door scared to move farther into the house .Well we cant stay here forever said Harry and he took a step forward .Severus Snape ?MadEye Moodys voice whispered out of the darkness making all three of them jump back in fright .Were not Snape !croaked Harry before something whooshed over him like cold air and his tongue curled backward on itself making it impossible to speak .Before he had time to feel inside his mouth however his tongue had unraveled again .The other two seemed to have experienced the same unpleasant sensation .Ron was making retching noises Hermione stammered That mmust have b been the TTongueTying Curse MadEye set up for Snape !Gingerly Harry took another step forward .Something shifted in the shadows at the end of the hall and before any of them could say another word a figure had risen up out of the carpet tall dustcolored and terrible Hermione screamed and so did Mrs Black her curtains flying open the gray figure was gliding toward them faster and faster its waistlength hair and beard streaming behind it its face sunken fleshless with empty eye sockets Horribly familiar dreadfully altered it raised a wasted arm pointing at Harry .No !Harry shouted and though he had raised his wand no spell occurred to him .No !It wasnt us !We didnt kill you On the word kill the figure exploded in a great cloud of dust Coughing his eyes watering Harry looked around to see Hermione crouched on the floor by the door with her arms over her head and Ron who was shaking from head to foot patting her clumsily on the shoulder and saying Its all rright .Its ggone .Dust swirled around Harry like mist catching the blue gaslight as Mrs Black continued to scream .Mudbloods filth stains of dishonor taint of shame on the house of my fathers SHUT UP !Harry bellowed directing his wand at her and with a bang and a burst of red sparks the curtains swung shut again silencing her .That .that was .Hermione whimpered as Ron helped her to her feet .Yeah said Harry but it wasnt really him was it ?Just something to scare Snape .Had it worked Harry wondered or had Snape already blasted the horrorfigure aside as casually as he had killed the real Dumbledore ?Nerves still tingling he led the other two up the hall halfexpecting some new terror to reveal itself but nothing moved except for a mouse skittering along the skirting board .Before we go any farther I think wed better check whispered Hermione and she raised her wand and said Homenum revelio .Nothing happened .Well youve just had a big shock said Ron kindly .What was that supposed to do ?It did what I meant it to do !said Hermione rather crossly .That was a spell to reveal human presence and theres nobody here except us !And old Dusty said Ron glancing at the patch of carpet from which the corpsefigure had risen .Lets go up said Hermione with a frightened look at the same spot and she led the way up the creaking stairs to the drawing room on the first floor .Hermione waved her wand to ignite the old gas lamps then shivering slightly in the drafty room she perched on the sofa her arms wrapped tightly around her .Ron crossed to the window and moved the heavy velvet curtain aside an inch .Cant see anyone out there he reported .And youd think if Harry still had a Trace on him theyd have followed us here .I know they cant get in the house but whats up Harry ?Harry had given a cry of pain His scar had burned again as something flashed across his mind like a bright light on water .He saw a large shadow and felt a fury that was not his own pound through his body violent and brief as an electric shock .What did you see ?Ron asked advancing on Harry .Did you see him at my place ?No I just felt anger hes really angry But that could be at the Burrow said Ron loudly .What else ?Didnt you see anything ?Was he cursing someone ?No I just felt anger I couldnt tell Harry felt badgered confused and Hermione did not help as she said in a frightened voice Your scar again ?But whats going on ?I thought that connection had closed !It did for a while muttered Harry his scar was still painful which made it hard to concentrate .I I think its started opening again whenever he loses control thats how it used to But then youve got to close your mind !said Hermione shrilly .Harry Dumbledore didnt want you to use that connection he wanted you to shut it down thats why you were supposed to use Occlumency !Otherwise Voldemort can plant false images in your mind remember Yeah I do remember thanks said Harry through gritted teeth he did not need Hermione to tell him that Voldemort had once used this selfsame connection between them to lead him into a trap nor that it had resulted in Siriuss death .He wished that he had not told them what he had seen and felt it made Voldemort more threatening as though he were pressing against the window of the room and still the pain in his scar was building and he fought it It was like resisting the urge to be sick .He turned his back on Ron and Hermione pretending to examine the old tapestry of the Black family tree on the wall .Then Hermione shrieked Harry drew his wand again and spun around to see a silver Patronus soar through the drawing room window and land upon the floor in front of them where it solidified into the weasel that spoke with the voice of Rons father .Family safe do not reply we are being watched .The Patronus dissolved into nothingness .Ron let out a noise between a whimper and a groan and dropped onto the sofa Hermione joined him gripping his arm .Theyre all right theyre all right !she whispered and Ron half laughed and hugged her .Harry he said over Hermiones shoulder I Its not a problem said Harry sickened by the pain in his head .Its your family course youre worried .Id feel the same way .He thought of Ginny .I do feel the same way .The pain in his scar was reaching a peak burning as it had done in the garden of the Burrow .Faintly he heard Hermione say I dont want to be on my own .Could we use the sleeping bags Ive brought and camp in here tonight ?He heard Ron agree .He could not fight the pain much longer He had to succumb .Bathroom he muttered and he left the room as fast as he could without running .He barely made it Bolting the door behind him with trembling hands he grasped his pounding head and fell to the floor then in an explosion of agony he felt the rage that did not belong to him possess his soul saw a long room lit only by firelight and the great blond Death Eater on the floor screaming and writhing and a slighter figure standing over him wand outstretched while Harry spoke in a high cold merciless voice .More Rowle or shall we end it and feed you to Nagini ?Lord Voldemort is not sure that he will forgive this time .You called me back for this to tell me that Harry Potter has escaped again ?Draco give Rowle another taste of our displeasure .Do it or feel my wrath yourself !A log fell in the fire Flames reared their light darting across a terrified pointed white face with a sense of emerging from deep water Harry drew heaving breaths and opened his eyes .He was spreadeagled on the cold black marble floor his nose inches from one of the silver serpent tails that supported the large bathtub .He sat up .Malfoys gaunt petrified face seemed branded on the inside of his eyes .Harry felt sickened by what he had seen by the use to which Draco was now being put by Voldemort .There was a sharp rap on the door and Harry jumped as Hermiones voice rang out .Harry do you want your toothbrush ?Ive got it here .Yeah great thanks he said fighting to keep his voice casual as he stood up to let her in .10 KREACHERS TALE Harry woke early next morning wrapped in a sleeping bag on the drawing room floor .A chink of sky was visible between the heavy curtains It was the cool clear blue of watered ink somewhere between night and dawn and everything was quiet except for Ron and Hermiones slow deep breathing .Harry glanced over at the dark shapes they made on the floor beside him .Ron had had a fit of gallantry and insisted that Hermione sleep on the cushions from the sofa so that her silhouette was raised above his .Her arm curved to the floor her fingers inches from Rons .Harry wondered whether they had fallen asleep holding hands .The idea made him feel strangely lonely .He looked up at the shadowy ceiling the cobwebbed chandelier .Less than twentyfour hours ago he had been standing in the sunlight at the entrance to the marquee waiting to show in wedding guests .It seemed a lifetime away .What was going to happen now ?He lay on the floor and he thought of the Horcruxes of the daunting complex mission Dumbledore had left him .Dumbledore .The grief that had possessed him since Dumbledores death felt different now .The accusations he had heard from Muriel at the wedding seemed to have nested in his brain like diseased things infecting his memories of the wizard he had idolized .Could Dumbledore have let such things happen ?Had he been like Dudley content to watch neglect and abuse as long as it did not affect him ?Could he have turned his back on a sister who was being imprisoned and hidden ?Harry thought of Godrics Hollow of graves Dumbledore had never mentioned there he thought of mysterious objects left without explanation in Dumbledores will and resentment swelled in the darkness .Why hadnt Dumbledore told him ?Why hadnt he explained ?Had Dumbledore actually cared about Harry at all ?Or had Harry been nothing more than a tool to be polished and honed but not trusted never confided in ?Harry could not stand lying there with nothing but bitter thoughts for company .Desperate for something to do for distraction he slipped out of his sleeping bag picked up his wand and crept out of the room .On the landing he whispered Lumos and started to climb the stairs by wandlight .On the second landing was the bedroom in which he and Ron had slept last time they had been here he glanced into it .The wardrobe doors stood open and the bedclothes had been ripped back .Harry remembered the overturned troll leg downstairs .Somebody had searched the house since the Order had left .Snape ?Or perhaps Mundungus who had pilfered plenty from this house both before and after Sirius died ?Harrys gaze wandered to the portrait that sometimes contained Phineas Nigellus Black Siriuss greatgreatgrandfather but it was empty showing nothing but a stretch of muddy backdrop .Phineas Nigellus was evidently spending the night in the headmasters study at Hogwarts .Harry continued up the stairs until he reached the topmost landing where there were only two doors .The one facing him bore a nameplate reading SIRIUS .Harry had never entered his godfathers bedroom before .He pushed open the door holding his wand high to cast light as widely as possible .The room was spacious and must once have been handsome .There was a large bed with a carved wooden headboard a tall window obscured by long velvet curtains and a chandelier thickly coated in dust with candle stubs still resting in its sockets solid wax hanging in frostlike drips .A fine film of dust covered the pictures on the walls and the beds headboard a spiders web stretched between the chandelier and the top of the large wooden wardrobe and as Harry moved deeper into the room he heard a scurrying of disturbed mice .The teenage Sirius had plastered the walls with so many posters and pictures that little of the walls silverygray silk was visible .Harry could only assume that Siriuss parents had been unable to remove the Permanent Sticking Charm that kept them on the wall because he was sure they would not have appreciated their eldest sons taste in decoration .Sirius seemed to have gone out of his way to annoy his parents .There were several large Gryffindor banners faded scarlet and gold just to underline his difference from all the rest of the Slytherin family .There were many pictures of Muggle motorcycles and also Harry had to admire Siriuss nerve several posters of bikiniclad Muggle girls Harry could tell that they were Muggles because they remained quite stationary within their pictures faded smiles and glazed eyes frozen on the paper .This was in contrast to the only Wizarding photograph on the walls which was a picture of four Hogwarts students standing arm in arm laughing at the camera .With a leap of pleasure Harry recognized his father his untidy black hair stuck up at the back like Harrys and he too wore glasses .Beside him was Sirius carelessly handsome his slightly arrogant face so much younger and happier than Harry had ever seen it alive .To Siriuss right stood Pettigrew more than a head shorter plump and wateryeyed flushed with pleasure at his inclusion in this coolest of gangs with the muchadmired rebels that James and Sirius had been .On Jamess left was Lupin even then a little shabbylooking but he had the same air of delighted surprise at finding himself liked and included .or was it simply because Harry knew how it had been that he saw these things in the picture ?He tried to take it from the wall it was his now after all Sirius had left him everything but it would not budge .Sirius had taken no chances in preventing his parents from redecorating his room .Harry looked around at the floor .The sky outside was growing brighter A shaft of light revealed bits of paper books and small objects scattered over the carpet .Evidently Siriuss bedroom had been searched too although its contents seemed to have been judged mostly if not entirely worthless .A few of the books had been shaken roughly enough to part company with their covers and sundry pages littered the floor .Harry bent down picked up a few of the pieces of paper and examined them .He recognized one as part of an old edition of A History of Magic by Bathilda Bagshot and another as belonging to a motorcycle maintenance manual .The third was handwritten and crumpled .He smoothed it out .Dear Padfoot Thank you thank you for Harrys birthday present !It was his favorite by far .One year old and already zooming along on a toy broomstick he looked so pleased with himself Im enclosing a picture so you can see .You know it only rises about two feet off the ground but he nearly killed the cat and he smashed a horrible vase Petunia sent me for Christmas no complaints there .Of course James thought it was so funny says hes going to be a great Quidditch player but weve had to pack away all the ornaments and make sure we dont take our eyes off him when he gets going .We had a very quiet birthday tea just us and old Bathilda who has always been sweet to us and who dotes on Harry .We were so sorry you couldnt come but the Orders got to come first and Harrys not old enough to know its his birthday anyway !James is getting a bit frustrated shut up here he tries not to show it but I can tell also Dumbledores still got his Invisibility Cloak so no chance of little excursions .If you could visit it would cheer him up so much .Wormy was here last weekend I thought he seemed down but that was probably the news about the McKinnons I cried all evening when I heard .Bathilda drops in most days shes a fascinating old thing with the most amazing stories about Dumbledore Im not sure hed be pleased if he knew !I dont know how much to believe actually because it seems incredible that Dumbledore Harrys extremities seemed to have gone numb .He stood quite still holding the miraculous paper in his nerveless fingers while inside him a kind of quiet eruption sent joy and grief thundering in equal measure through his veins .Lurching to the bed he sat down .He read the letter again but could not take in any more meaning than he had done the first time and was reduced to staring at the handwriting itself .She had made her gs the same way he did He searched through the letter for every one of them and each felt like a friendly little wave glimpsed from behind a veil .The letter was an incredible treasure proof that Lily Potter had lived really lived that her warm hand had once moved across this parchment tracing ink into these letters these words words about him Harry her son .Impatiently brushing away the wetness in his eyes he reread the letter this time concentrating on the meaning .It was like listening to a halfremembered voice .They had had a cat .perhaps it had perished like his parents at Godrics Hollow .or else fled when there was nobody left to feed it .Sirius had bought him his first broomstick .His parents had known Bathilda Bagshot had Dumbledore introduced them ?DumblecLores still got his Invisibility Cloak .There was something funny there .Harry paused pondering his mothers words .Why had Dumbledore taken Jamess Invisibility Cloak ?Harry distinctly remembered his headmaster telling him years before I dont need a cloak to become invisible .Perhaps some less gifted Order member had needed its assistance and Dumbledore had acted as carrier ?Harry passed on .Wormy was here .Pettigrew the traitor had seemed down had he ?Was he aware that he was seeing James and Lily alive for the last time ?And finally Bathilda again who told incredible stories about Dumbledore .It seems incredible that Dumbledore That Dumbledore what ?But there were any number of things that would seem incredible about Dumbledore that he had once received bottom marks in a Transfiguration test for instance or had taken up goatcharming like Aberforth .Harry got to his feet and scanned the floor Perhaps the rest of the letter was here somewhere .He seized papers treating them in his eagerness with as little consideration as the original searcher he pulled open drawers shook out books stood on a chair to run his hand over the top of the wardrobe and crawled under the bed and armchair .At last lying facedown on the floor he spotted what looked like a torn piece of paper under the chest of drawers .When he pulled it out it proved to be most of the photograph Lily had described in her letter .A blackhaired baby was zooming in and out of the picture on a tiny broom roaring with laughter and a pair of legs that must have belonged to James was chasing after him .Harry tucked the photograph into his pocket with Lilys letter and continued to look for the second sheet .After another quarter of an hour however he was forced to conclude that the rest of his mothers letter was gone .Had it simply been lost in the sixteen years that had elapsed since it had been written or had it been taken by whoever had searched the room ?Harry read the first sheet again this time looking for clues as to what might have made the second sheet valuable .His toy broomstick could hardly be considered interesting to the Death Eaters .The only potentially useful thing he could see here was possible information on Dumbledore .It seems incredible that Dumbledore what ?Harry ?Harry !HarryV Im here !he called .Whats happened ?There was a clatter of footsteps outside the door and Hermione burst inside .We woke up and didnt know where you were !she said breathlessly .She turned and shouted over her shoulder Ron !Ive found him !Rons annoyed voice echoed distantly from several floors below .Good !Tell him from me hes a git !Harry dont just disappear please we were terrified !Why did you come up here anyway ?She gazed around the ransacked room .What have you been doing ?Look what Ive just found .He held out his mothers letter .Hermione took it and read it while Harry watched her .When she reached the end of the page she looked up at him .Oh Harry .And theres this too .He handed her the torn photograph and Hermione smiled at the baby zooming in and out of sight on the toy broom .Ive been looking for the rest of the letter Harry said but its not here .Hermione glanced around .Did you make all this mess or was some of it done when you got here ?Someone had searched before me said Harry .I thought so .Every room I looked into on the way up had been disturbed .What were they after do you think ?Information on the Order if it was Snape .But youd think hed already have all he needed I mean he was in the Order wasnt he ?Well then said Harry keen to discuss his theory what about information on Dumbledore ?The second page of this letter for instance .You know this Bathilda my mum mentions you know who she is ?Who ?Bathilda Bagshot the author of A History of Magic said Hermione looking interested .So your parents knew her ?She was an incredible magical historian .And shes still alive said Harry and she lives in Godrics Hollow Rons Auntie Muriel was talking about her at the wedding .She knew Dumbledore s family too .Be pretty interesting to talk to wouldnt she ?There was a little too much understanding in the smile Hermione gave him for Harrys liking .He took back the letter and the photograph and tucked them inside the pouch around his neck so as not to have to look at her and give himself away .I understand why youd love to talk to her about your mum and dad and Dumbledore too said Hermione .But that wouldnt really help us in our search for the Horcruxes would it ?Harry did not answer and she rushed on Harry I know you really want to go to Godrics Hollow but Im scared Im scared at how easily those Death Eaters found us yesterday .It just makes me feel more than ever that we ought to avoid the place where your parents are buried Im sure theyd be expecting you to visit it .Its not just that Harry said still avoiding looking at her .Muriel said stuff about Dumbledore at the wedding .I want to know the truth .He told Hermione everything that Muriel had told him .When he had finished Hermione said Of course I can see why thats upset you Harry Im not upset he lied Id just like to know whether or not its true or Harry do you really think youll get the truth from a malicious old woman like Muriel or from Rita Skeeter ?How can you believe them ?You knew Dumbledore !I thought I did he muttered .But you know how much truth there was in everything Rita wrote about you !Doge is right how can you let these people tarnish your memories of Dumbledore ?He looked away trying not to betray the resentment he felt .There it was again Choose what to believe .He wanted the truth .Why was everybody so determined that he should not get it ?Shall we go down to the kitchen ?Hermione suggested after a little pause .Find something for breakfast ?He agreed but grudgingly and followed her out onto the landing and past the second door that led off it .There were deep scratch marks in the paintwork below a small sign that he had not noticed in the dark .He paused at the top of the stairs to read it .It was a pompous little sign neatly lettered by hand the sort of thing that Percy Weasley might have stuck on his bedroom door Do Not Enter Without the Express Permission of Regulus Arcturus Black Excitement trickled through Harry but he was not immediately sure why .He read the sign again .Hermione was already a flight of stairs below him .Hermione he said and he was surprised that his voice was so calm .Come back up here .Whats the matter ?R .A .B .I think Ive found him .There was a gasp and then Hermione ran back up the stairs .In your mums letter ?But I didnt see Harry shook his head pointing at Reguluss sign .She read it then clutched Harrys arm so tightly that he winced .Siriuss brother ?she whispered .He was a Death Eater said Harry Sirius told me about him he joined up when he was really young and then got cold feet and tried to leave so they killed him .That fits !gasped Hermione .If he was a Death Eater he had access to Voldemort and if he became disenchanted then he would have wanted to bring Voldemort down !She released Harry leaned over the banister and screamed Ron !RON !Get up here quick !Ron appeared panting a minute later his wand ready in his hand .Whats up ?If its massive spiders again I want breakfast before I He frowned at the sign on Reguluss door to which Hermione was silently pointing .What ?That was Siriuss brother wasnt it ?Regulus Arcturus .Regulus .R .A .B .l The locket you dont reckon ?Lets find out said Harry .He pushed the door It was locked .Hermione pointed her wand at the handle and said Alohomora .There was a click and the door swung open .They moved over the threshold together gazing around .Reguluss bedroom was slightly smaller than Siriuss though it had the same sense of former grandeur .Whereas Sirius had sought to advertise his difference from the rest of the family Regulus had striven to emphasize the opposite .The Slytherin colors of emerald and silver were everywhere draping the bed the walls and the windows .The Black family crest was painstakingly painted over the bed along with its motto TOU JOURS PUR .Beneath this was a collection of yellow newspaper cuttings all stuck together to make a ragged collage .Hermione crossed the room to examine them .Theyre all about Voldemort she said .Regulus seems to have been a fan for a few years before he joined the Death Eaters .A little puff of dust rose from the bedcovers as she sat down to read the clippings .Harry meanwhile had noticed another photograph a Hogwarts Quidditch team was smiling and waving out of the frame .He moved closer and saw the snakes emblazoned on their chests Slytherins .Regulus was instantly recognizable as the boy sitting in the middle of the front row He had the same dark hair and slightly haughty look of his brother though he was smaller slighter and rather less handsome than Sirius had been .He played Seeker said Harry .What ?said Hermione vaguely she was still immersed in Voldemorts press clippings .Hes sitting in the middle of the front row thats where the Seeker .Never mind said Harry realizing that nobody was listening Ron was on his hands and knees searching under the wardrobe .Harry looked around the room for likely hiding places and approached the desk .Yet again somebody had searched before them .The drawers contents had been turned over recently the dust disturbed but there was nothing of value there old quills outof date textbooks that bore evidence of being roughly handled a recently smashed ink bottle its sticky residue covering the contents of the drawer .Theres an easier way said Hermione as Harry wiped his inky fingers on his jeans .She raised her wand and said Accio Locked .Nothing happened .Ron who had been searching the folds of the faded curtains looked disappointed .Is that it then ?Its not here ?Oh it could still be here but under counter enchantments said Hermione .Charms to prevent it being summoned magically you know .Like Voldemort put on the stone basin in the cave said Harry remembering how he had been unable to Summon the fake locket .How are we supposed to find it then ?asked Ron .We search manually said Hermione .Thats a good idea said Ron rolling his eyes and he resumed his examination of the curtains .They combed every inch of the room for more than an hour but were forced finally to conclude that the locket was not there .The sun had risen now its light dazzled them even through the grimy landing windows .It could be somewhere else in the house though said Hermione in a rallying tone as they walked back downstairs As Harry and Ron had become more discouraged she seemed to have become more determined .Whether hed managed to destroy it or not hed want to keep it hidden from Voldemort wouldnt he ?Remember all those awful things we had to get rid of when we were here last time ?That clock that shot bolts at everyone and those old robes that tried to strangle Ron Regulus might have put them there to protect the lockets hiding place even though we didnt realize it at .at .Harry and Ron looked at her .She was standing with one foot in midair with the dumbstruck look of one who had just been Obliviated her eyes had even drifted out of focus . .at the time she finished in a whisper .Something wrong ?asked Ron .There was a locket .What ?said Harry and Ron together .In the cabinet in the drawing room .Nobody could open it .And we .we .Harry felt as though a brick had slid down through his chest into his stomach .He remembered He had even handled the thing as they passed it around each trying in turn to prise it open .It had been tossed into a sack of rubbish along with the snuffbox of Wartcap powder and the music box that had made everyone sleepy .Kreacher nicked loads of things back from us said Harry .It was the only chance the only slender hope left to them and he was going to cling to it until forced to let go .He had a whole stash of stuff in his cupboard in the kitchen .Cmon .He ran down the stairs taking two steps at a time the other two thundering along in his wake .They made so much noise that they woke the portrait of Siriuss mother as they passed through the hall .Filth .Mudbloods Scum she screamed after them as they dashed down into the basement kitchen and slammed the door behind them .Harry ran the length of the room skidded to a halt at the door of Kreachers cupboard and wrenched it open .There was the nest of dirty old blankets in which the houseelf had once slept but they were no longer glittering with the trinkets Kreacher had salvaged .The only thing there was an old copy of Natures Nobility A Wizarding Genealogy .Refusing to believe his eyes Harry snatched up the blankets and shook them .A dead mouse fell out and rolled dismally across the floor .Ron groaned as he threw himself into a kitchen chair Hermione closed her eyes .Its not over yet said Harry and he raised his voice and called Kreacherl There was a loud crack and the houseelf that Harry had so reluctantly inherited from Sirius appeared out of nowhere in front of the cold and empty fireplace tiny half humansized his pale skin hanging off him in folds white hair sprouting copiously from his batlike ears .He was still wearing the filthy rag in which they had first met him and the contemptuous look he bent upon Harry showed that his attitude to his change of ownership had altered no more than his outfit .Master croaked Kreacher in his bullfrogs voice and he bowed low muttering to his knees back in my Mistresss old house with the bloodtraitor Weasley and the Mudblood I forbid you to call anyone ‘blood traitor or ‘Mudblood growled Harry .He would have found Kreacher with his snoutlike nose and bloodshot eyes a distinctly unlovable object even if the elf had not betrayed Sirius to Voldemort .Ive got a question for you said Harry his heart beating rather fast as he looked down at the elf and I order you to answer it truthfully .Understand ?Yes Master said Kreacher bowing low again Harry saw his lips moving soundlessly undoubtedly framing the insults he was now forbidden to utter .Two years ago said Harry his heart now hammering against his ribs there was a big gold locket in the drawing room upstairs .We threw it out .Did you steal it back ?There was a moments silence during which Kreacher straightened up to look Harry full in the face .Then he said Yes .Where is it now ?asked Harry jubilantly as Ron and Hermione looked gleeful .Kreacher closed his eyes as though he could not bear to see their reactions to his next word .Gone .Gone ?echoed Harry elation flooding out of him .What do you mean its gone ?The elf shivered .He swayed .Kreacher said Harry fiercely I order you Mundungus Fletcher croaked the elf his eyes still tight shut .Mundungus Fletcher stole it all Miss Bellas and Miss Cissys pictures my Mistresss gloves the Order of Merlin First Class the goblets with the family crest and and Kreacher was gulping for air His hollow chest was rising and falling rapidly then his eyes flew open and he uttered a bloodcurdling scream .and the locket Master Reguluss locket Kreacher did wrong Kreacher failed in his orders !Harry reacted instinctively As Kreacher lunged for the poker standing in the grate he launched himself upon the elf flattening him .Hermiones scream mingled with Kreachers but Harry bellowed louder than both of them Kreacher I order you to stay still !He felt the elf freeze and released him .Kreacher lay flat on the cold stone floor tears gushing from his sagging eyes .Harry let him up !Hermione whispered .So he can beat himself up with the poker ?snorted Harry kneeling beside the elf .I dont think so .Right Kreacher I want the truth How do you know Mundungus Fletcher stole the locket ?Kreacher saw him !gasped the elf as tears poured over his snout and into his mouth full of graying teeth .Kreacher saw him coming out of Kreachers cupboard with his hands full of Kreachers treasures .Kreacher told the sneak thief to stop but Mundungus Fletcher laughed and rran .You called the locket ‘Master Regulus s said Harry .Why ?Where did it come from ?What did Regulus have to do with it ?Kreacher sit up and tell me everything you know about that locket and everything Regulus had to do with it !The elf sat up curled into a ball placed his wet face between his knees and began to rock backward and forward .When he spoke his voice was muffled but quite distinct in the silent echoing kitchen .Master Sirius ran away good riddance for he was a bad boy and broke my Mistresss heart with his lawless ways .But Master Regulus had proper pride he knew what was due to the name of Black and the dignity of his pure blood .For years he talked of the Dark Lord who was going to bring the wizards out of hiding to rule the Muggles and the Muggleborns .and when he was sixteen years old Master Regulus joined the Dark Lord .So proud so proud so happy to serve .And one day a year after he had joined Master Regulus came down to the kitchen to see Kreacher .Master Regulus always liked Kreacher .And Master Regulus said .he said .The old elf rocked faster than ever . .he said that the Dark Lord required an elf .Voldemort needed an elf ?Harry repeated looking around at Ron and Hermione who looked just as puzzled as he did .Oh yes moaned Kreacher .And Master Regulus had volunteered Kreacher .It was an honor said Master Regulus an honor for him and for Kreacher who must be sure to do whatever the Dark Lord ordered him to do .and then to ccome home .Kreacher rocked still faster his breath coming in sobs .So Kreacher went to the Dark Lord .The Dark Lord did not tell Kreacher what they were to do but took Kreacher with him to a cave beside the sea .And beyond the cave there was a cavern and in the cavern was a great black lake .The hairs on the back of Harrys neck stood up .Kreachers croaking voice seemed to come to him from across that dark water .He saw what had happened as clearly as though he had been present . .There was a boat .Of course there had been a boat Harry knew the boat ghostly green and tiny bewitched so as to carry one wizard and one victim toward the island in the center .This then was how Voldemort had tested the defenses surrounding the Horcrux by borrowing a disposable creature a houseelf .There was a bbasin full of potion on the island .The DDark Lord made Kreacher drink it .The elf quaked from head to foot .Kreacher drank and as he drank he saw terrible things .Kreachers insides burned .Kreacher cried for Master Regulus to save him he cried for his Mistress Black but the Dark Lord only laughed .He made Kreacher drink all the potion .He dropped a locket into the empty basin .He filled it with more potion .And then the Dark Lord sailed away leaving Kreacher on the island .Harry could see it happening .He watched Voldemorts white snakelike face vanishing into darkness those red eyes fixed pitilessly on the thrashing elf whose death would occur within minutes whenever he succumbed to the desperate thirst that the burning potion caused its victim .But here Harrys imagination could go no further for he could not see how Kreacher had escaped .Kreacher needed water he crawled to the islands edge and he drank from the black lake .and hands dead hands came out of the water and dragged Kreacher under the surface .How did you get away ?Harry asked and he was not surprised to hear himself whispering .Kreacher raised his ugly head and looked at Harry with his great bloodshot eyes .Master Regulus told Kreacher to come back he said .I know but how did you escape the Inferi ?Kreacher did not seem to understand .Master Regulus told Kreacher to come back he repeated .I know but Well its obvious isnt it Harry ?said Ron .He Disapparated !But .you couldnt Apparate in and out of that cave said Harry otherwise Dumbledore Elf magic isnt like wizards magic is it ?said Ron .I mean they can Apparate and Disapparate in and out of Hogwarts when we cant .There was silence as Harry digested this .How could Voldemort have made such a mistake ?But even as he thought this Hermione spoke and her voice was icy .Of course Voldemort would have considered the ways of houseelves far beneath his notice just like all the purebloods who treat them like animals .It would never have occurred to him that they might have magic that he didnt .The houseelfs highest law is his Masters bidding intoned Kreacher .Kreacher was told to come home so Kreacher came home .Well then you did what you were told didnt you ?said Hermione kindly .You didnt disobey orders at all !Kreacher shook his head rocking as fast as ever .So what happened when you got back ?Harry asked .What did Regulus say when you told him what had happened ?Master Regulus was very worried very worried croaked Kreacher .Master Regulus told Kreacher to stay hidden and not to leave the house .And then .it was a little while later .Master Regulus came to find Kreacher in his cupboard one night and Master Regulus was strange not as he usually was disturbed in his mind Kreacher could tell .and he asked Kreacher to take him to the cave the cave where Kreacher had gone with the Dark Lord .And so they had set off .Harry could visualize them quite clearly the frightened old elf and the thin dark Seeker who had so resembled Sirius .Kreacher knew how to open the concealed entrance to the underground cavern knew how to raise the tiny boat this time it was his beloved Regulus who sailed with him to the island with its basin of poison .And he made you drink the potion ?said Harry disgusted .But Kreacher shook his head and wept .Hermiones hands leapt to her mouth She seemed to have understood something .MMaster Regulus took from his pocket a locket like the one the Dark Lord had said Kreacher tears pouring down either side of his snoutlike nose .And he told Kreacher to take it and when the basin was empty to switch the lockets .Kreachers sobs came in great rasps now Harry had to concentrate hard to understand him .And he ordered Kreacher to leave without him .And he told Kreacher to go home and never to tell my Mistress what he had done but to destroy the first locket .And he drank all the potion and Kreacher swapped the lockets and watched .as Master Regulus .was dragged beneath the water .and .Oh Kreacher !wailed Hermione who was crying .She dropped to her knees beside the elf and tried to hug him .At once he was on his feet cringing away from her quite obviously repulsed .The Mudblood touched Kreacher he will not allow it what would his Mistress say ?I told you not to call her ‘Mudblood !snarled Harry but the elf was already punishing himself He fell to the ground and banged his forehead on the floor .Stop him stop him !Hermione cried .Oh dont you see now how sick it is the way theyve got to obey ?Kreacher stop stop !shouted Harry .The elf lay on the floor panting and shivering green mucus glistening around his snout a bruise already blooming on his pallid forehead where he had struck himself his eyes swollen and bloodshot and swimming in tears .Harry had never seen anything so pitiful .So you brought the locket home he said relentlessly for he was determined to know the full story .And you tried to destroy it ?Nothing Kreacher did made any mark upon it moaned the elf .Kreacher tried everything everything he knew but nothing nothing would work .So many powerful spells upon the casing Kreacher was sure the way to destroy it was to get inside it but it would not open .Kreacher punished himself he tried again he punished himself he tried again .Kreacher failed to obey orders Kreacher could not destroy the locket !And his Mistress was mad with grief because Master Regulus had disappeared and Kreacher could not tell her what had happened no because Master Regulus had ffforbidden him to tell any of the fffamily what happened in the ccave .Kreacher began to sob so hard that there were no more coherent words .Tears flowed down Hermiones cheeks as she watched Kreacher but she did not dare touch him again .Even Ron who was no fan of Kreachers looked troubled .Harry sat back on his heels and shook his head trying to clear it .I dont understand you Kreacher he said finally .Voldemort tried to kill you Regulus died to bring Voldemort down but you were still happy to betray Sirius to Voldemort ?You were happy to go to Narcissa and Bellatrix and pass information to Voldemort through them .Harry Kreacher doesnt think like that said Hermione wiping her eyes on the back of her hand .Hes a slave houseelves are used to bad even brutal treatment what Voldemort did to Kreacher wasnt that far out of the common way .What do wizard wars mean to an elf like Kreacher ?Hes loyal to people who are kind to him and Mrs Black must have been and Regulus certainly was so he served them willingly and parroted their beliefs .I know what youre going to say she went on as Harry began to protest that Regulus changed his mind .but he doesnt seem to have explained that to Kreacher does he ?And I think I know why .Kreacher and Regulus s family were all safer if they kept to the old pureblood line .Regulus was trying to protect them all .Sirius Sirius was horrible to Kreacher Harry and its no good looking like that you know its true .Kreacher had been alone for a long time when Sirius came to live here and he was probably starving for a bit of affection .Im sure ‘Miss Cissy and ‘Miss Bella were perfectly lovely to Kreacher when he turned up so he did them a favor and told them everything they wanted to know .Ive said all along that wizards would pay for how they treat houseelves .Well Voldemort did .and so did Sirius .Harry had no retort .As he watched Kreacher sobbing on the floor he remembered what Dumbledore had said to him mere hours after Siriuss death I do not think Sirius ever saw Kreacher as a being with feelings as acute as a humans .Kreacher said Harry after a while when you feel up to it er .please sit up .It was several minutes before Kreacher hiccuped himself into silence .Then he pushed himself into a sitting position again rubbing his knuckles into his eyes like a small child .Kreacher I am going to ask you to do something said Harry .He glanced at Hermione for assistance .He wanted to give the order kindly but at the same time he could not pretend that it was not an order .However the change in his tone seemed to have gained her approval She smiled encouragingly .Kreacher I want you please to go and find Mundungus Fletcher .We need to find out where the locket where Master Reguluss locket is .Its really important .We want to finish the work Master Regulus started we want to er ensure that he didnt die in vain .Kreacher dropped his fists and looked up at Harry .Find Mundungus Fletcher ?he croaked .And bring him here to Grimmauld Place said Harry .Do you think you could do that for us ?As Kreacher nodded and got to his feet Harry had a sudden inspiration .He pulled out Hagrids purse and took out the fake Horcrux the substitute locket in which Regulus had placed the note to Voldemort .Kreacher Id er like you to have this he said pressing the locket into the elfs hand .This belonged to Regulus and Im sure hed want you to have it as a token of gratitude for what you Overkill mate said Ron as the elf took one look at the locket let out a howl of shock and misery and threw himself back onto the ground .It took them nearly half an hour to calm down Kreacher who was so overcome to be presented with a Black family heirloom for his very own that he was too weak at the knees to stand properly .When finally he was able to totter a few steps they all accompanied him to his cupboard watched him tuck up the locket safely in his dirty blankets and assured him that they would make its protection their first priority while he was away .He then made two low bows to Harry and Ron and even gave a funny little spasm in Hermiones direction that might have been an attempt at a respectful salute before Disapparating with the usual loud crack .THE BRIBE If Kreacher could escape a lake full of Inferi Harry was confident that the capture of Mundungus would take a few hours at most and he prowled the house all morning in a state of high anticipation .However Kreacher did not return that morning or even that afternoon .By nightfall Harry felt discouraged and anxious and a supper composed largely of moldy bread upon which Hermione had tried a variety of unsuccessful Transfigurations did nothing to help .Kreacher did not return the following day nor the day after that .However two cloaked men had appeared in the square outside number twelve and they remained there into the night gazing in the direction of the house that they could not see .Death Eaters for sure said Ron as he Harry and Hermione watched from the drawing room windows .Reckon they know were in here ?I dont think so said Hermione though she looked frightened or theyd have sent Snape in after us wouldnt they ?Dyou reckon hes been in here and had his tongue tied by Moodys curse ?asked Ron .Yes said Hermione otherwise hed have been able to tell that lot how to get in wouldnt he ?But theyre probably watching to see whether we turn up .They know that Harry owns the house after all .How do they ?began Harry .Wizarding wills are examined by the Ministry remember ?Theyll know Sirius left you the place .The presence of the Death Eaters outside increased the ominous mood inside number twelve .They had not heard a word from anyone beyond Grimmauld Place since Mr Weasleys Patronus and the strain was starting to tell .Restless and irritable Ron had developed an annoying habit of playing with the Deluminator in his pocket This particularly infuriated Hermione who was whiling away the wait for Kreacher by studying The Tales of Beedle the Bard and did not appreciate the way the lights kept flashing on and off .Will you stop it !she cried on the third evening of Kreachers absence as all light was sucked from the drawing room yet again .Sorry sorry !said Ron clicking the Deluminator and restoring the lights .I dont know Im doing it !Well cant you find something useful to occupy yourself ?What like reading kids stories ?Dumbledore left me this book Ron and he left me the Deluminator maybe Im supposed to use it !Unable to stand the bickering Harry slipped out of the room unnoticed by either of them .He headed downstairs toward the kitchen which he kept visiting because he was sure that was where Kreacher was most likely to reappear .Halfway down the flight of stairs into the hall however he heard a tap on the front door then metallic clicks and the grinding of the chain .Every nerve in his body seemed to tauten He pulled out his wand moved into the shadows beside the decapitated elf heads and waited .The door opened He saw a glimpse of the lamplit square outside and a cloaked figure edged into the hall and closed the door behind it .The intruder took a step forward and Moodys voice asked Severus Snape ?Then the dust figure rose from the end of the hall and rushed him raising its dead hand .It was not I who killed you Albus said a quiet voice .The jinx broke The dustfigure exploded again and it was impossible to make out the newcomer through the dense gray cloud it left behind .Harry pointed his wand into the middle of it .Dont move !He had forgotten the portrait of Mrs Black At the sound of his yell the curtains hiding her flew open and she began to scream Mudbloods and filth dishonoring my house Ron and Hermione came crashing down the stairs behind Harry wands pointing like his at the unknown man now standing with his arms raised in the hall below .Hold your fire its me Remus !Oh thank goodness said Hermione weakly pointing her wand at Mrs Black instead with a bang the curtains swished shut again and silence fell .Ron too lowered his wand but Harry did not .Show yourself !he called back .Lupin moved forward into the lamplight hands still held high in a gesture of surrender .I am Remus John Lupin werewolf sometimes known as Moony one of the four creators of the Marauders Map married to Nymphadora usually known as Tonks and I taught you how to produce a Patronus Harry which takes the form of a stag .Oh all right said Harry lowering his wand but I had to check didnt I ?Speaking as your exDefense Against the Dark Arts teacher I quite agree that you had to check .Ron Hermione you shouldnt be quite so quick to lower your defenses .They ran down the stairs toward him .Wrapped in a thick black traveling cloak he looked exhausted but pleased to see them .No sign of Severus then ?he asked .No said Harry .Whats going on ?Is everyone okay ?Yes said Lupin but were all being watched .There are a couple of Death Eaters in the square outside We know I had to Apparate very precisely onto the top step outside the front door to be sure that they would not see me .They cant know youre in here or Im sure theyd have more people out there theyre staking out everywhere thats got any connection with you Harry .Lets go downstairs theres a lot to tell you and I want to know what happened after you left the Burrow .They descended into the kitchen where Hermione pointed her wand at the grate .A fire sprang up instantly It gave the illusion of coziness to the stark stone walls and glistened off the long wooden table .Lupin pulled a few butterbeers from beneath his traveling cloak and they sat down .Id have been here three days ago but I needed to shake off the Death Eater tailing me said Lupin .So you came straight here after the wedding ?No said Harry only after we ran into a couple of Death Eaters in a cafe on Tottenham Court Road .Lupin slopped most of his butterbeer down his front .What ?They explained what had happened when they had finished Lupin looked aghast .But how did they find you so quickly ?Its impossible to track anyone who Apparates unless you grab hold of them as they disappear !And it doesnt seem likely they were just strolling down Tottenham Court Road at the time does it ?said Harry .We wondered said Hermione tentatively whether Harry could still have the Trace on him ?Impossible said Lupin .Ron looked smug and Harry felt hugely relieved .Apart from anything else theyd know for sure Harry was here if he still had the Trace on him wouldnt they ?But I cant see how they could have tracked you to Tottenham Court Road thats worrying really worrying .He looked disturbed but as far as Harry was concerned that question could wait .Tell us what happened after we left we havent heard a thing since Rons dad told us the family were safe .Well Kingsley saved us said Lupin .Thanks to his warning most of the wedding guests were able to Disapparate before they arrived .Were they Death Eaters or Ministry people ?interjected Hermione .A mixture but to all intents and purposes theyre the same thing now said Lupin .There were about a dozen of them but they didnt know you were there Harry .Arthur heard a rumor that they tried to torture your whereabouts out of Scrimgeour before they killed him if its true he didnt give you away .Harry looked at Ron and Hermione their expressions reflected the mingled shock and gratitude he felt .He had never liked Scrimgeour much but if what Lupin said was true the mans final act had been to try to protect Harry .The Death Eaters searched the Burrow from top to bottom Lupin went on .They found the ghoul but didnt want to get too close and then they interrogated those of us who remained for hours .They were trying to get information on you Harry but of course nobody apart from the Order knew that you had been there .At the same time that they were smashing up the wedding more Death Eaters were forcing their way into every Orderconnected house in the country .No deaths he added quickly forestalling the question but they were rough .They burned down Dedalus Diggles house but as you know he wasnt there and they used the Cruciatus Curse on Tonkss family .Again trying to find out where you went after you visited them .Theyre all right shaken obviously but otherwise okay .The Death Eaters got through all those protective charms ?Harry asked remembering how effective these had been on the night he had crashed in Tonkss parents garden .What youve got to realize Harry is that the Death Eaters have got the full might of the Ministry on their side now said Lupin .Theyve got the power to perform brutal spells without fear of identification or arrest .They managed to penetrate every defensive spell wed cast against them and once inside they were completely open about why theyd come .And are they bothering to give an excuse for torturing Harrys whereabouts out of people ?asked Hermione an edge to her voice .Well said Lupin .He hesitated then pulled out a folded copy of the Daily Prophet Here he said pushing it across the table to Harry youll know sooner or later anyway .Thats their pretext for going after you .Harry smoothed out the paper .A huge photograph of his own face filled the front page .He read the headline over it WANTED FOR QUESTIONING ABOUT THE DEATH OF ALBUS DUMBLEDORE Ron and Hermione gave roars of outrage but Harry said nothing .He pushed the newspaper away he did not want to read any more He knew what it would say .Nobody but those who had been on top of the tower when Dumbledore died knew who had really killed him and as Rita Skeeter had already told the Wizarding world Harry had been seen running from the place moments after Dumbledore had fallen .Im sorry Harry Lupin said .So Death Eaters have taken over the Daily Prophet too ?asked Hermione furiously .Lupin nodded .But surely people realize whats going on ?The coup has been smooth and virtually silent said Lupin .The official version of Scrimgeours murder is that he resigned he has been replaced by Pius Thicknesse who is under the Imperius Curse .Why didnt Voldemort declare himself Minister of Magic ?asked Ron .Lupin laughed .He doesnt need to Ron .Effectively he is the Minister but why should he sit behind a desk at the Ministry ?His puppet Thicknesse is taking care of everyday business leaving Voldemort free to extend his power beyond the Ministry .Naturally many people have deduced what has happened There has been such a dramatic change in Ministry policy in the last few days and many are whispering that Voldemort must be behind it .However that is the point They whisper .They darent confide in each other not knowing whom to trust they are scared to speak out in case their suspicions are true and their families are targeted .Yes Voldemort is playing a very clever game .Declaring himself might have provoked open rebellion Remaining masked has created confusion uncertainty and fear .And this dramatic change in Ministry policy said Harry involves warning the Wizarding world against me instead of Voldemort ?Thats certainly part of it said Lupin and it is a masterstroke .Now that Dumbledore is dead you the Boy Who Lived were sure to be the symbol and rallying point for any resistance to Voldemort .But by suggesting that you had a hand in the old heros death Voldemort has not only set a price upon your head but sown doubt and fear amongst many who would have defended you .Meanwhile the Ministry has started moving against Muggleborns .Lupin pointed at the Daily Prophet Look at page two .Hermione turned the pages with much the same expression of distaste she had worn when handling Secrets of the Darkest Art ‘Muggleborn Register she read aloud . ‘The Ministry of Magic is undertaking a survey of socalled Muggleborns the better to understand how they came to possess magical secrets . ‘Recent research undertaken by the Department of Mysteries reveals that magic can only be passed from person to person when Wizards reproduce .Where no proven Wizarding ancestry exists therefore the so called Muggleborn is likely to have obtained magical power by theft or force . ‘The Ministry is determined to root out such usurpers of magical power and to this end has issued an invitation to every socalled Muggleborn to present themselves for interview by the newly appointed Muggleborn Registration Commission .People wont let this happen said Ron .It is happening Ron said Lupin .Muggleborns are being rounded up as we speak .But how are they supposed to have ‘stolen magic ?said Ron .Its mental if you could steal magic there wouldnt be any Squibs would there ?I know said Lupin .Nevertheless unless you can prove that you have at least one close Wizarding relative you are now deemed to have obtained your magical power illegally and must suffer the punishment .Ron glanced at Hermione then said What if purebloods and halfbloods swear a Muggleborns part of their family ?Ill tell everyone Hermione s my cousin Hermione covered Rons hand with hers and squeezed it .Thank you Ron but I couldnt let you You wont have a choice said Ron fiercely gripping her hand back .Ill teach you my family tree so you can answer questions on it .Hermione gave a shaky laugh .Ron as were on the run with Harry Potter the most wanted person in the country I dont think it matters .If I was going back to school it would be different .Whats Voldemort planning for Hogwarts ?she asked Lupin .Attendance is now compulsory for every young witch and wizard he replied .That was announced yesterday .Its a change because it was never obligatory before .Of course nearly every witch and wizard in Britain has been educated at Hogwarts but their parents had the right to teach them at home or send them abroad if they preferred .This way Voldemort will have the whole Wizarding population under his eye from a young age .And its also another way of weeding out Muggleborns because students must be given Blood Status meaning that they have proven to the Ministry that they are of Wizard descent before they are allowed to attend .Harry felt sickened and angry At this moment excited elevenyearolds would be poring over stacks of newly purchased spellbooks unaware that they would never see Hogwarts perhaps never see their families again either .Its .its .he muttered struggling to find words that did justice to the horror of his thoughts but Lupin said quietly I know .Lupin hesitated .Ill understand if you cant confirm this Harry but the Order is under the impression that Dumbledore left you a mission .He did Harry replied and Ron and Hermione are in on it and theyre coming with me .Can you confide in me what the mission is ?Harry looked into the prematurely lined face framed in thick but graying hair and wished that he could return a different answer .I cant Remus Im sorry .If Dumbledore didnt tell you I dont think I can .I thought youd say that said Lupin looking disappointed .But I might still be of some use to you .You know what I am and what I can do .I could come with you to provide protection .There would be no need to tell me exactly what you were up to .Harry hesitated .It was a very tempting offer though how they would be able to keep their mission secret from Lupin if he were with them all the time he could not imagine .Hermione however looked puzzled .But what about Tonks ?she asked .What about her ?said Lupin .Well said Hermione frowning youre married !How does she feel about you going away with us ?Tonks will be perfectly safe said Lupin .Shell be at her parents house .There was something strange in Lupins tone it was almost cold .There was also something odd in the idea of Tonks remaining hidden at her parents house she was after all a member of the Order and as far as Harry knew was likely to want to be in the thick of the action .Remus said Hermione tentatively is everything all right .you know .between you and Everything is fine thank you said Lupin pointedly .Hermione turned pink .There was another pause an awkward and embarrassed one and then Lupin said with an air of forcing himself to admit something unpleasant Tonks is going to have a baby .Oh how wonderful !squealed Hermione .Excellent !said Ron enthusiastically .Congratulations said Harry .Lupin gave an artificial smile that was more like a grimace then said So .do you accept my offer ?Will three become four ?I cannot believe that Dumbledore would have disapproved he appointed me your Defense Against the Dark Arts teacher after all .And I must tell you that I believe that we are facing magic many of us have never encountered or imagined .Ron and Hermione both looked at Harry .Just just to be clear he said .You want to leave Tonks at her parents house and come away with us ?Shell be perfectly safe there theyll look after her said Lupin .He spoke with a finality bordering on indifference .Harry Im sure James would have wanted me to stick with you .Well said Harry slowly Im not .Im pretty sure my father would have wanted to know why you arent sticking with your own kid actually .Lupins face drained of color .The temperature in the kitchen might have dropped ten degrees .Ron stared around the room as though he had been bidden to memorize it while Hermione s eyes swiveled backward and forward from Harry to Lupin .You dont understand said Lupin at last .Explain then said Harry .Lupin swallowed .I I made a grave mistake in marrying Tonks .I did it against my better judgment and I have regretted it very much ever since .I see said Harry so youre just going to dump her and the kid and run off with us ?Lupin sprang to his feet His chair toppled over backward and he glared at them so fiercely that Harry saw for the first time ever the shadow of the wolf upon his human face .Dont you understand what Ive done to my wife and my unborn child ?I should never have married her Ive made her an outcast !Lupin kicked aside the chair he had overturned .You have only ever seen me amongst the Order or under Dumbledores protection at Hogwarts !You dont know how most of the Wizarding world sees creatures like me !When they know of my affliction they can barely talk to me !Dont you see what Ive done ?Even her own family is disgusted by our marriage what parents want their only daughter to marry a werewolf ?And the child the child Lupin actually seized handfuls of his own hair he looked quite deranged .My kind dont usually breed !It will be like me I am convinced of it how can I forgive myself when I knowingly risked passing on my own condition to an innocent child ?And if by some miracle it is not like me then it will be better off a hundred times so without a father of whom it must always be ashamed !Remus !whispered Hermione tears in her eyes .Dont say that how could any child be ashamed of you ?Oh I dont know Hermione said Harry .Id be pretty ashamed of him .Harry did not know where his rage was coming from but it had propelled him to his feet too .Lupin looked as though Harry had hit him .If the new regime thinks Muggleborns are bad Harry said what will they do to a halfwerewolf whose fathers in the Order ?My father died trying to protect my mother and me and you reckon hed tell you to abandon your kid to go on an adventure with us ?How how dare you ?said Lupin .This is not about a desire for for danger or personal glory how dare you suggest such a I think youre feeling a bit of a daredevil Harry said .You fancy stepping into Siriuss shoes Harry no !Hermione begged him but he continued to glare into Lupins livid face .Id never have believed this Harry said .The man who taught me to fight dementors a coward .Lupin drew his wand so fast that Harry had barely reached for his own there was a loud bang and he felt himself flying backward as if punched as he slammed into the kitchen wall and slid to the floor he glimpsed the tail of Lupins cloak disappearing around the door .Remus Remus come back !Hermione cried but Lupin did not respond .A moment later they heard the front door slam .Harry !wailed Hermione .How could you ?It was easy said Harry .He stood up he could feel a lump swelling where his head had hit the wall .He was still so full of anger he was shaking .Dont look at me like that !he snapped at Hermione .Dont you start on her !snarled Ron .No no we mustnt fight !said Hermione launching herself between them .You shouldnt have said that stuff to Lupin Ron told Harry .He had it coming to him said Harry .Broken images were racing each other through his mind Sirius falling through the veil Dumbledore suspended broken in midair a flash of green light and his mothers voice begging for mercy .Parents said Harry shouldnt leave their kids unless unless theyve got to .Harry said Hermione stretching out a consoling hand but he shrugged it off and walked away his eyes on the fire Hermione had conjured .He had once spoken to Lupin out of that fireplace seeking reassurance about James and Lupin had consoled him .Now Lupins tortured white face seemed to swim in the air before him .He felt a sickening surge of remorse .Neither Ron nor Hermione spoke but Harry felt sure that they were looking at each other behind his back communicating silently .He turned around and caught them turning hurriedly away from each other .I know I shouldnt have called him a coward .No you shouldnt said Ron at once .But hes acting like one .All the same .said Hermione .I know said Harry .But if it makes him go back to Tonks itll be worth it wont it ?He could not keep the plea out of his voice .Hermione looked sympathetic Ron uncertain .Harry looked down at his feet thinking of his father .Would James have backed Harry in what he had said to Lupin or would he have been angry at how his son had treated his old friend ?The silent kitchen seemed to hum with the shock of the recent scene and with Ron and Hermione s unspoken reproaches .The Daily Prophet Lupin had brought was still lying on the table Harrys own face staring up at the ceiling from the front page .He walked over to it and sat down opened the paper at random and pretended to read .He could not take in the words his mind was still too full of the encounter with Lupin .He was sure that Ron and Hermione had resumed their silent communications on the other side of the Prophet He turned a page loudly and Dumbledores name leapt out at him .It was a moment or two before he took in the meaning of the photograph which showed a family group .Beneath the photograph were the words The Dumbledore family left to right Albus Percival holding newborn Ariana Kendra and Aberforth .His attention caught Harry examined the picture more carefully .Dumbledores father Percival was a goodlooking man with eyes that seemed to twinkle even in this faded old photograph .The baby Ariana was little longer than a loaf of bread and no more distinctivelooking .The mother Kendra had jetblack hair pulled into a high bun .Her face had a carved quality about it .Harry thought of photos of Native Americans hed seen as he studied her dark eyes high cheekbones and straight nose formally composed above a highnecked silk gown .Albus and Aberforth wore matching lacy collared jackets and had identical shoulderlength hairstyles .Albus looked several years older but otherwise the two boys looked very alike for this was before Albus s nose had been broken and before he started wearing glasses .The family looked quite happy and normal smiling serenely up out of the newspaper .Baby Arianas arm waved vaguely out of her shawl .Harry looked above the picture and saw the headline EXCLUSIVE EXTRACT FROM THE UPCOMING BIOGRAPHY OF ALBUS DUMBLEDORE by Rita Skeeter Thinking that it could hardly make him feel any worse than he already did Harry began to read Proud and haughty Kendra Dumbledore could not bear to remain in MouldontheWold after her husband Percivals wellpublicized arrest and imprisonment in Azkaban .She therefore decided to uproot the family and relocate to Godrics Hollow the village that was later to gain fame as the scene of Harry Potters strange escape from YouKnowWho .Like MouldontheWold Godrics Hollow was home to a number of Wizarding families but as Kendra knew none of them she would be spared the curiosity about her husbands crime she had faced in her former village .By repeatedly rebuffing the friendly advances of her new Wizarding neighbors she soon ensured that her family was left well alone .Slammed the door in my face when I went around to welcome her with a batch of homemade Cauldron Cakes says Bathilda Bagshot .The first year they were there I only ever saw the two boys .Wouldnt have known there was a daughter if I hadnt been picking Plangentines by moonlight the winter after they moved in and saw Kendra leading Ariana out into the back garden .Walked her round the lawn once keeping a firm grip on her then took her back inside .Didnt know what to make of it .It seems that Kendra thought the move to Godrics Hollow was the perfect opportunity to hide Ariana once and for all something she had probably been planning for years .The timing was significant .Ariana was barely seven years old when she vanished from sight and seven is the age by which most experts agree that magic will have revealed itself if present .Nobody now alive remembers Ariana ever demonstrating even the slightest sign of magical ability .It seems clear therefore that Kendra made a decision to hide her daughters existence rather than suffer the shame of admitting that she had produced a Squib .Moving away from the friends and neighbors who knew Ariana would of course make imprisoning her all the easier .The tiny number of people who henceforth knew of Arianas existence could be counted upon to keep the secret including her two brothers who deflected awkward questions with the answer their mother had taught them My sister is too frail for school .Next week Albus Dumbledore at Hogwarts the Prizes and the Pretense .Harry had been wrong What he had read had indeed made him feel worse .He looked back at the photograph of the apparently happy family .Was it true ?How could he find out ?He wanted to go to Godrics Hollow even if Bathilda was in no fit state to talk to him he wanted to visit the place where he and Dumbledore had both lost loved ones .He was in the process of lowering the newspaper to ask Rons and Hermiones opinions when a deafening crack echoed around the kitchen .For the first time in three days Harry had forgotten all about Kreacher .His immediate thought was that Lupin had burst back into the room and for a split second he did not take in the mass of struggling limbs that had appeared out of thin air right beside his chair .He hurried to his feet as Kreacher disentangled himself and bowing low to Harry croaked Kreacher has returned with the thief Mundungus Fletcher Master .Mundungus scrambled up and pulled out his wand Hermione however was too quick for him .Expelliarmusl Mundungus s wand soared into the air and Hermione caught it .Wildeyed Mundungus dived for the stairs Ron rugbytackled him and Mundungus hit the stone floor with a muffled crunch .What ?he bellowed writhing in his attempts to free himself from Rons grip .Whave I done ?Setting a bleedin ouseelf on me what are you playing at whave I done lemme go lemme go or Youre not in much of a position to make threats said Harry .He threw aside the newspaper crossed the kitchen in a few strides and dropped to his knees beside Mundungus who stopped struggling and looked terrified .Ron got up panting and watched as Harry pointed his wand deliberately at Mundungus s nose .Mundungus stank of stale sweat and tobacco smoke His hair was matted and his robes stained .Kreacher apologizes for the delay in bringing the thief Master croaked the elf .Fletcher knows how to avoid capture has many hideyholes and accomplices .Nevertheless Kreacher cornered the thief in the end .Youve done really well Kreacher said Harry and the elf bowed low .Right weve got a few questions for you Harry told Mundungus who shouted at once I panicked okay ?I never wanted to come along no offense mate but I never volunteered to die for you an that was bleedin YouKnowWho come flying at me anyone woulda got outta there I said all along I didnt wanna do it For your information none of the rest of us Disapparated said Hermione .Well youre a bunch of bleedin eroes then arent you but I never pretended I was up for killing meself Were not interested in why you ran out on Mad Eye said Harry moving his wand a little closer to Mundunguss baggy bloodshot eyes .We already knew you were an unreliable bit of scum .Well then why the ell am I being unted down by ouseelves ?Or is this about them goblets again ?I aint got none of em left or you could ave em Its not about the goblets either although youre getting warmer said Harry .Shut up and listen .It felt wonderful to have something to do someone of whom he could demand some small portion of truth .Harrys wand was now so close to the bridge of Mundunguss nose that Mundungus had gone cross eyed trying to keep it in view .When you cleaned out this house of anything valuable Harry began but Mundungus interrupted him again .Sirius never cared about any of the junk There was the sound of pattering feet a blaze of shining copper an echoing clang and a shriek of agony Kreacher had taken a run at Mundungus and hit him over the head with a saucepan .Call im off call im off e should be locked up !screamed Mundungus cowering as Kreacher raised the heavybottomed pan again .Kreacher no !shouted Harry .Kreachers thin arms trembled with the weight of the pan still held aloft .Perhaps just one more Master Harry for luck ?Ron laughed .We need him conscious Kreacher but if he needs persuading you can do the honors said Harry .Thank you very much Master said Kreacher with a bow and he retreated a short distance his great pale eyes still fixed upon Mundungus with loathing .When you stripped this house of all the valuables you could find Harry began again you took a bunch of stuff from the kitchen cupboard .There was a locket there .Harrys mouth was suddenly dry He could sense Ron and Hermiones tension and excitement too .What did you do with it ?Why ?asked Mundungus .Is it valuable ?Youve still got it !cried Hermione .No he hasnt said Ron shrewdly .Hes wondering whether he should have asked more money for it .More ?said Mundungus .That wouldnt have been effing difficult .bleedin gave it away din I ?No choice .What do you mean ?I was selling in Diagon Alley and she come up to me and asks if Ive got a license for trading in magical artifacts .Bleedin snoop .She was gonna fine me but she took a fancy to the locket an told me shed take it and let me off that time and to fink meself lucky .Who was this woman ?asked Harry .I dunno some Ministry hag .Mundungus considered for a moment brow wrinkled .Little woman .Bow on top of er head .He frowned and then added Looked like a toad .Harry dropped his wand It hit Mundungus on the nose and shot red sparks into his eyebrows which ignited .Aguamenti screamed Hermione and a jet of water streamed from her wand engulfing a spluttering and choking Mundungus .Harry looked up and saw his own shock reflected in Rons and Hermiones faces .The scars on the back of his right hand seemed to be tingling again .MAGIC IS MIGHT As August wore on the square of unkempt grass in the middle of Grimmauld Place shriveled in the sun until it was brittle and brown .The inhabitants of number twelve were never seen by anybody in the surrounding houses and nor was number twelve itself .The Muggles who lived in Grimmauld Place had long since accepted the amusing mistake in the numbering that had caused number eleven to sit beside number thirteen .And yet the square was now attracting a trickle of visitors who seemed to find the anomaly most intriguing .Barely a day passed without one or two people arriving in Grimmauld Place with no other purpose or so it seemed than to lean against the railings facing numbers eleven and thirteen watching the join between the two houses .The lurkers were never the same two days running although they all seemed to share a dislike for normal clothing .Most of the Londoners who passed them were used to eccentric dressers and took little notice though occasionally one of them might glance back wondering why anyone would wear such long cloaks in this heat .The watchers seemed to be gleaning little satisfaction from their vigil .Occasionally one of them started forward excitedly as if they had seen something interesting at last only to fall back looking disappointed .On the first day of September there were more people lurking in the square than ever before .Half a dozen men in long cloaks stood silent and watchful gazing as ever at houses eleven and thirteen but the thing for which they were waiting still appeared elusive .As evening drew in bringing with it an unexpected gust of chilly rain for the first time in weeks there occurred one of those inexplicable moments when they appeared to have seen something interesting .The man with the twisted face pointed and his closest companion a podgy pallid man started forward but a moment later they had relaxed into their previous state of inactivity looking frustrated and disappointed .Meanwhile inside number twelve Harry had just entered the hall .He had nearly lost his balance as he Apparated onto the top step just outside the front door and thought that the Death Eaters might have caught a glimpse of his momentarily exposed elbow .Shutting the front door carefully behind him he pulled off the Invisibility Cloak draped it over his arm and hurried along the gloomy hallway toward the door that led to the basement a stolen copy of the Daily Prophet clutched in his hand .The usual low whisper of Severus Snape ?greeted him the chill wind swept him and his tongue rolled up for a moment .I didnt kill you he said once it had unrolled then held his breath as the dusty jinxfigure exploded .He waited until he was halfway down the stairs to the kitchen out of earshot of Mrs Black and clear of the dust cloud before calling Ive got news and you wont like it .The kitchen was almost unrecognizable .Every surface now shone Copper pots and pans had been burnished to a rosy glow the wooden tabletop gleamed the goblets and plates already laid for dinner glinted in the light from a merrily blazing fire on which a cauldron was simmering .Nothing in the room however was more dramatically different than the houseelf who now came hurrying toward Harry dressed in a snowywhite towel his ear hair as clean and fluffy as cotton wool Reguluss locket bouncing on his thin chest .Shoes off if you please Master Harry and hands washed before dinner croaked Kreacher seizing the Invisibility Cloak and slouching off to hang it on a hook on the wall beside a number of oldfashioned robes that had been freshly laundered .Whats happened ?Ron asked apprehensively .He and Hermione had been poring over a sheaf of scribbled notes and handdrawn maps that littered the end of the long kitchen table but now they watched Harry as he strode toward them and threw down the newspaper on top of their scattered parchment .A large picture of a familiar hooknosed blackhaired man stared up at them all beneath a headline that read SEVERUS SNAPE CONFIRMED AS HOGWARTS HEADMASTER No !said Ron and Hermione loudly .Hermione was quickest she snatched up the newspaper and began to read the accompanying story out loud . ‘Severus Snape longstanding Potions master at Hogwarts School of Witchcraft and Wizardry was today appointed headmaster in the most important of several staffing changes at the ancient school .Following the resignation of the previous Muggle Studies teacher Alecto Carrow will take over the post while her brother Amycus fills the position of Defense Against the Dark Arts professor .7 welcome the opportunity to uphold our finest Wizarding traditions and values Like committing murder and cutting off peoples ears I suppose !Snape headmaster !Snape in Dumbledores study Merlins pants !she shrieked making both Harry and Ron jump .She leapt up from the table and hurtled from the room shouting as she went Ill be back in a minute ! ‘Merlins pants ?repeated Ron looking amused .She must be upset .He pulled the newspaper toward him and perused the article about Snape .The other teachers wont stand for this .McGonagall and Flitwick and Sprout all know the truth they know how Dumbledore died .They wont accept Snape as headmaster .And who are these Carrows ?Death Eaters said Harry .There are pictures of them inside .They were at the top of the tower when Snape killed Dumbledore so its all friends together .And Harry went on bitterly drawing up a chair I cant see that the other teachers have got any choice but to stay .If the Ministry and Voldemort are behind Snape itll be a choice between staying and teaching or a nice few years in Azkaban and thats if theyre lucky .I reckon theyll stay to try and protect the students .Kreacher came bustling to the table with a large tureen in his hands and ladled out soup into pristine bowls whistling between his teeth as he did so .Thanks Kreacher said Harry flipping over the Prophet so as not to have to look at Snape s face .Well at least we know exactly where Snape is now .He began to spoon soup into his mouth .The quality of Kreachers cooking had improved dramatically ever since he had been given Reguluss locket Todays French onion was as good as Harry had ever tasted .There are still a load of Death Eaters watching the house he told Ron as he ate more than usual .Its like theyre hoping well march out carrying our school trunks and head off for the Hogwarts Express .Ron glanced at his watch .Ive been thinking about that all day .It left nearly six hours ago .Weird not being on it isnt it ?In his minds eye Harry seemed to see the scarlet steam engine as he and Ron had once followed it by air shimmering between fields and hills a rippling scarlet caterpillar .He was sure Ginny Neville and Luna were sitting together at this moment perhaps wondering where he Ron and Hermione were or debating how best to undermine Snape s new regime .They nearly saw me coming back in just now Harry said .I landed badly on the top step and the Cloak slipped .I do that every time .Oh here she is Ron added craning around in his seat to watch Hermione reentering the kitchen .And what in the name of Merlins most baggy Y Fronts was that about ?I remembered this Hermione panted .She was carrying a large framed picture which she now lowered to the floor before seizing her small beaded bag from the kitchen sideboard .Opening it she proceeded to force the painting inside and despite the fact that it was patently too large to fit inside the tiny bag within a few seconds it had vanished like so much else into the bags capacious depths .Phineas Nigellus Hermione explained as she threw the bag onto the kitchen table with the usual sonorous clanking crash .Sorry ?said Ron but Harry understood .The painted image of Phineas Nigellus Black was able to flit between his portrait in Grimmauld Place and the one that hung in the headmasters office at Hogwarts the circular towertop room where Snape was no doubt sitting right now in triumphant possession of Dumbledores collection of delicate silver magical instruments the stone Pensieve the Sorting Hat and unless it had been moved elsewhere the sword of Gryffindor .Snape could send Phineas Nigellus to look inside this house for him Hermione explained to Ron as she resumed her seat .But let him try it now all Phineas Nigellus will be able to see is the inside of my handbag .Good thinking !said Ron looking impressed .Thank you smiled Hermione pulling her soup toward her .So Harry what else happened today ?Nothing said Harry .Watched the Ministry entrance for seven hours .No sign of her .Saw your dad though Ron .He looks fine .Ron nodded his appreciation of this news .They had agreed that it was far too dangerous to try and communicate with Mr Weasley while he walked in and out of the Ministry because he was always surrounded by other Ministry workers .It was however reassuring to catch these glimpses of him even if he did look very strained and anxious .Dad always told us most Ministry people use the Floo Network to get to work Ron said .Thats why we havent seen Umbridge shed never walk shed think shes too important .And what about that funny old witch and that little wizard in the navy robes ?Hermione asked .Oh yeah the bloke from Magical Maintenance said Ron .How do you know he works for Magical Maintenance ?Hermione asked her soupspoon suspended in midair .Dad said everyone from Magical Maintenance wears navy blue robes .But you never told us that !Hermione dropped her spoon and pulled toward her the sheaf of notes and maps that she and Ron had been examining when Harry had entered the kitchen .Theres nothing in here about navy blue robes nothing !she said flipping feverishly through the pages .Well does it really matter ?Ron it all matters !If were going to get into the Ministry and not give ourselves away when theyre bound to be on the lookout for intruders every little detail matters !Weve been over and over this I mean whats the point of all these reconnaissance trips if you arent even bothering to tell us Blimey Hermione I forget one little thing You do realize dont you that theres probably no more dangerous place in the whole world for us to be right now than the Ministry of I think we should do it tomorrow said Harry .Hermione stopped dead her jaw hanging Ron choked a little over his soup .Tomorrow ?repeated Hermione .You arent serious Harry ?I am said Harry .I dont think were going to be much better prepared than we are now even if we skulk around the Ministry entrance for another month .The longer we put it off the farther away that locket could be .Theres already a good chance Umbridge has chucked it away the thing doesnt open .Unless said Ron shes found a way of opening it and shes now possessed .Wouldnt make any difference to her she was so evil in the first place Harry shrugged .Hermione was biting her lip deep in thought .We know everything important Harry went on addressing Hermione .We know theyve stopped Apparition in and out of the Ministry .We know only the most senior Ministry members are allowed to connect their homes to the Floo Network now because Ron heard those two Unspeakables complaining about it .And we know roughly where Umbridges office is because of what you heard that bearded bloke saying to his mate ‘Ill be up on level one Dolores wants to see me Hermione recited immediately .Exactly said Harry .And we know you get in using those funny coins or tokens or whatever they are because I saw that witch borrowing one from her friend But we havent got any !If the plan works we will have Harry continued calmly .I dont know Harry I dont know .There are an awful lot of things that could go wrong so much relies on chance .Thatll be true even if we spend another three months preparing said Harry .Its time to act .He could tell from Rons and Hermiones faces that they were scared he was not particularly confident himself and yet he was sure the time had come to put their plan into operation .They had spent the previous four weeks taking it in turns to don the Invisibility Cloak and spy on the official entrance to the Ministry which Ron thanks to Mr Weasley had known since childhood .They had tailed Ministry workers on their way in eavesdropped on their conversations and learned by careful observation which of them could be relied upon to appear alone at the same time every day .Occasionally there had been a chance to sneak a Daily Prophet out of somebodys briefcase .Slowly they had built up the sketchy maps and notes now stacked in front of Hermione .All right said Ron slowly lets say we go for it tomorrow .I think it should just be me and Harry .Oh dont start that again !sighed Hermione .I thought wed settled this .Its one thing hanging around the entrances under the Cloak but this is different Hermione .Ron jabbed a finger at a copy of the Daily Prophet dated ten days previously .Youre on the list of Muggle borns who didnt present themselves for interrogation !And youre supposed to be dying of spattergroit at the Burrow !If anyone shouldnt go its Harry hes got a tenthousandGalleon price on his head Fine Ill stay here said Harry .Let me know if you ever defeat Voldemort wont you ?As Ron and Hermione laughed pain shot through the scar on Harrys forehead .His hand jumped to it He saw Hermiones eyes narrow and he tried to pass off the movement by brushing his hair out of his eyes .Well if all three of us go well have to Disapparate separately Ron was saying .We cant all fit under the Cloak anymore .Harrys scar was becoming more and more painful .He stood up .At once Kreacher hurried forward .Master has not finished his soup would Master prefer the savory stew or else the treacle tart to which Master is so partial ?Thanks Kreacher but Ill be back in a minute er bathroom .Aware that Hermione was watching him suspiciously Harry hurried up the stairs to the hall and then to the first landing where he dashed into the bathroom and bolted the door again .Grunting with pain he slumped over the black basin with its taps in the form of openmouthed serpents and closed his eyes .He was gliding along a twilit street .The buildings on either side of him had high timbered gables they looked like gingerbread houses .He approached one of them then saw the whiteness of his own longfingered hand against the door .He knocked .He felt a mounting excitement .The door opened A laughing woman stood there .Her face fell as she looked into Harrys face humor gone terror replacing it .Gregorovitch ?said a high cold voice .She shook her head She was trying to close the door .A white hand held it steady prevented her shutting him out .I want Gregorovitch .Er wohnt hier nicht mehr she cried shaking her head .He no live here !He no live here !I know him not !Abandoning the attempt to close the door she began to back away down the dark hall and Harry followed gliding toward her and his longfingered hand had drawn his wand .Where is he ?Das weifi ich nichti He move !I know not I know not !He raised the wand .She screamed .Two young children came running into the hall .She tried to shield them with her arms .There was a flash of green light Harry !HARRY !He opened his eyes he had sunk to the floor .Hermione was pounding on the door again .Harry open up !He had shouted out he knew it .He got up and unbolted the door Hermione toppled inside at once regained her balance and looked around suspiciously .Ron was right behind her looking unnerved as he pointed his wand into the corners of the chilly bathroom .What were you doing ?asked Hermione sternly .What dyou think I was doing ?asked Harry with feeble bravado .You were yelling your head off !said Ron .Oh yeah .I mustve dozed off or Harry please dont insult our intelligence said Hermione taking deep breaths .We know your scar hurt downstairs and youre white as a sheet .Harry sat down on the edge of the bath .Fine .Ive just seen Voldemort murdering a woman .By now hes probably killed her whole family .And he didnt need to .It was Cedric all over again they were just there .Harry you arent supposed to let this happen anymore !Hermione cried her voice echoing through the bathroom .Dumbledore wanted you to use Occlumency !He thought the connection was dangerous Voldemort can use it Harry !What good is it to watch him kill and torture how can it help ?Because it means I know what hes doing said Harry .So youre not even going to try to shut him out ?Hermione I cant .You know Im lousy at Occlumency I never got the hang of it .You never really tried !she said hotly .I dont get it Harry do you like having this special connection or relationship or what whatever She faltered under the look he gave her as he stood up .Like it ?he said quietly .Would you like it ?I no Im sorry Harry I didnt mean I hate it I hate the fact that he can get inside me that I have to watch him when hes most dangerous .But Im going to use it .Dumbledore Forget Dumbledore .This is my choice nobody elses .I want to know why hes after Gregorovitch .Who ?Hes a foreign wandmaker said Harry .He made Krums wand and Krum reckons hes brilliant .But according to you said Ron Voldemorts got Ollivander locked up somewhere .If hes already got a wandmaker what does he need another one for ?Maybe he agrees with Krum maybe he thinks Gregorovitch is better .or else he thinks Gregorovitch will be able to explain what my wand did when he was chasing me because Ollivander didnt know .Harry glanced into the cracked dusty mirror and saw Ron and Hermione exchanging skeptical looks behind his back .Harry you keep talking about what your wand did said Hermione but you made it happen !Why are you so determined not to take responsibility for your own power ?Because I know it wasnt me !And so does Voldemort Hermione !We both know what really happened !They glared at each other Harry knew that he had not convinced Hermione and that she was marshaling counterarguments against both his theory on his wand and the fact that he was permitting himself to see into Voldemorts mind .To his relief Ron intervened .Drop it he advised her .Its up to him .And if were going to the Ministry tomorrow dont you reckon we should go over the plan ?Reluctantly as the other two could tell Hermione let the matter rest though Harry was quite sure she would attack again at the first opportunity .In the meantime they returned to the basement kitchen where Kreacher served them all stew and treacle tart .They did not get to bed until late that night after spending hours going over and over their plan until they could recite it word perfect to each other .Harry who was now sleeping in Siriuss room lay in bed with his wandlight trained on the old photograph of his father Sirius Lupin and Pettigrew and muttered the plan to himself for another ten minutes .As he extinguished his wand however he was thinking not of Polyjuice Potion Puking Pastilles or the navy blue robes of Magical Maintenance he thought of Gregorovitch the wandmaker and how long he could hope to remain hidden while Voldemort sought him so determinedly .Dawn seemed to follow midnight with indecent haste .You look terrible was Rons greeting as he entered the room to wake Harry .Not for long said Harry yawning .They found Hermione downstairs in the kitchen .She was being served coffee and hot rolls by Kreacher and wearing the slightly manic expression that Harry associated with exam review .Robes she said under her breath acknowledging their presence with a nervous nod and continuing to poke around in her beaded bag Polyjuice Potion .Invisibility Cloak .Decoy Detonators .You should each take a couple just in case .Puking Pastilles Nosebleed Nougat Extendable Ears .They gulped down their breakfast then set off upstairs Kreacher bowing them out and promising to have a steakandkidney pie ready for them when they returned .Bless him said Ron fondly and when you think I used to fantasize about cutting off his head and sticking it on the wall .They made their way onto the front step with immense caution They could see a couple of puffy eyed Death Eaters watching the house from across the misty square .Hermione Disapparated with Ron first then came back for Harry .After the usual brief spell of darkness and near suffocation Harry found himself in the tiny alleyway where the first phase of their plan was scheduled to take place .It was as yet deserted except for a couple of large bins the first Ministry workers did not usually appear here until at least eight oclock .Right then said Hermione checking her watch .She ought to be here in about five minutes .When Ive Stunned her Hermione we know said Ron sternly .And I thought we were supposed to open the door before she got here ?Hermione squealed .I nearly forgot !Stand back She pointed her wand at the padlocked and heavily graffitied fire door beside them which burst open with a crash .The dark corridor behind it led as they knew from their careful scouting trips into an empty theater .Hermione pulled the door back toward her to make it look as though it was still closed .And now she said turning back to face the other two in the alleyway we put on the Cloak again and we wait Ron finished throwing it over Hermione s head like a blanket over a birdcage and rolling his eyes at Harry .Little more than a minute later there was a tiny pop and a little Ministry witch with flyaway gray hair Apparated feet from them blinking a little in the sudden brightness the sun had just come out from behind a cloud .She barely had time to enjoy the unexpected warmth however before Hermione s silent Stunning Spell hit her in the chest and she toppled over .Nicely done Hermione said Ron emerging from behind a bin beside the theater door as Harry took off the Invisibility Cloak .Together they carried the little witch into the dark passageway that led backstage .Hermione plucked a few hairs from the witchs head and added them to a flask of muddy Polyjuice Potion she had taken from the beaded bag .Ron was rummaging through the little witchs handbag .Shes Mafalda Hopkirk he said reading a small card that identified their victim as an assistant in the Improper Use of Magic Office .Youd better take this Hermione and here are the tokens .He passed her several small golden coins all embossed with the letters M .O .M .which he had taken from the witchs purse .Hermione drank the Polyjuice Potion which was now a pleasant heliotrope color and within seconds stood before them the double of Mafalda Hopkirk .As she removed Mafaldas spectacles and put them on Harry checked his watch .Were running late Mr Magical Maintenance will be here any second .They hurried to close the door on the real Mafalda Harry and Ron threw the Invisibility Cloak over themselves but Hermione remained in view waiting .Seconds later there was another pop and a small ferretylooking wizard appeared before them .Oh hello Mafalda .Hello !said Hermione in a quavery voice .How are you today ?Not so good actually replied the little wizard who looked thoroughly downcast .As Hermione and the wizard headed for the main road Harry and Ron crept along behind them .Im sorry to hear youre under the weather said Hermione talking firmly over the little wizard as he tried to expound upon his problems it was essential to stop him from reaching the street .Here have a sweet .Eh ?Oh no thanks I insist !said Hermione aggressively shaking the bag of pastilles in his face .Looking rather alarmed the little wizard took one .The effect was instantaneous .The moment the pastille touched his tongue the little wizard started vomiting so hard that he did not even notice as Hermione yanked a handful of hairs from the top of his head .Oh dear !she said as he splattered the alley with sick .Perhaps youd better take the day off !No no !He choked and retched trying to continue on his way despite being unable to walk straight .I must today must go But thats just silly !said Hermione alarmed .You cant go to work in this state I think you ought to go to St .Mungos and get them to sort you out !The wizard had collapsed heaving onto all fours still trying to crawl toward the main street .You simply cant go to work like this !cried Hermione .At last he seemed to accept the truth of her words .Using a repulsed Hermione to claw his way back into a standing position he turned on the spot and vanished leaving nothing behind but the bag Ron had snatched from his hand as he went and some flying chunks of vomit .Urgh said Hermione holding up the skirts of her robe to avoid the puddles of sick .It would have made much less mess to Stun him too .Yeah said Ron emerging from under the cloak holding the wizards bag but I still think a whole pile of unconscious bodies would have drawn more attention .Keen on his job though isnt he ?Chuck us the hair and the potion then .Within two minutes Ron stood before them as small and ferrety as the sick wizard and wearing the navy blue robes that had been folded in his bag .Weird he wasnt wearing them today wasnt it seeing how much he wanted to go ?Anyway Im Reg Cattermole according to the label in the back .Now wait here Hermione told Harry who was still under the Invisibility Cloak and well be back with some hairs for you .He had to wait ten minutes but it seemed much longer to Harry skulking alone in the sicksplattered alleyway beside the door concealing the Stunned Mafalda .Finally Ron and Hermione reappeared .We dont know who he is Hermione said passing Harry several curly black hairs but hes gone home with a dreadful nosebleed !Here hes pretty tall youll need bigger robes .She pulled out a set of the old robes Kreacher had laundered for them and Harry retired to take the potion and change .Once the painful transformation was complete he was more than six feet tall and from what he could tell from his wellmuscled arms powerfully built .He also had a beard .Stowing the Invisibility Cloak and his glasses inside his new robes he rejoined the other two .Blimey thats scary said Ron looking up at Harry who now towered over him .Take one of Mafaldas tokens Hermione told Harry and lets go its nearly nine .They stepped out of the alleyway together .Fifty yards along the crowded pavement there were spiked black railings flanking two flights of steps one labeled GENTLEMEN the other LADIES .See you in a moment then said Hermione nervously and she tottered off down the steps to LADIES .Harry and Ron joined a number of oddly dressed men descending into what appeared to be an ordinary underground public toilet tiled in grimy black and white .Morning Reg !called another wizard in navy blue robes as he let himself into a cubicle by inserting his golden token into a slot in the door .Blooming pain in the bum this eh ?Forcing us all to get to work this way !Who are they expecting to turn up Harry Potter ?The wizard roared with laughter at his own wit .Ron gave a forced chuckle .Yeah he said stupid isnt it ?And he and Harry let themselves into adjoining cubicles .To Harrys left and right came the sound of flushing .He crouched down and peered through the gap at the bottom of the cubicle just in time to see a pair of booted feet climbing into the toilet next door .He looked left and saw Ron blinking at him .We have to flush ourselves in ?he whispered .Looks like it Harry whispered back his voice came out deep and gravelly .They both stood up .Feeling exceptionally foolish Harry clambered into the toilet .He knew at once that he had done the right thing though he appeared to be standing in water his shoes feet and robes remained quite dry .He reached up pulled the chain and next moment had zoomed down a short chute emerging out of a fireplace into the Ministry of Magic .He got up clumsily there was a lot more of his body than he was accustomed to .The great Atrium seemed darker than Harry remembered it .Previously a golden fountain had filled the center of the hall casting shimmering spots of light over the polished wooden floor and walls .Now a gigantic statue of black stone dominated the scene .It was rather frightening this vast sculpture of a witch and a wizard sitting on ornately carved thrones looking down at the Ministry workers toppling out of fireplaces below them .Engraved in foothigh letters at the base of the statue were the words MAGIC IS MIGHT .Harry received a heavy blow on the back of the legs Another wizard had just flown out of the fireplace behind him .Out of the way cant y oh sorry Runcorn !Clearly frightened the balding wizard hurried away .Apparently the man whom Harry was impersonating Runcorn was intimidating .Psst !said a voice and he looked around to see a wispy little witch and the ferrety wizard from Magical Maintenance gesturing to him from over beside the statue .Harry hastened to join them .You got in all right then ?Hermione whispered to Harry .No hes still stuck in the bog said Ron .Oh very funny .Its horrible isnt it ?she said to Harry who was staring up at the statue .Have you seen what theyre sitting on ?Harry looked more closely and realized that what he had thought were decoratively carved thrones were actually mounds of carved humans hundreds and hundreds of naked bodies men women and children all with rather stupid ugly faces twisted and pressed together to support the weight of the handsomely robed wizards .Muggles whispered Hermione .In their rightful place .Come on lets get going .They joined the stream of witches and wizards moving toward the golden gates at the end of the hall looking around as surreptitiously as possible but there was no sign of the distinctive figure of Dolores Umbridge .They passed through the gates and into a smaller hall where queues were forming in front of twenty golden grilles housing as many lifts .They had barely joined the nearest one when a voice said Cattermole !They looked around Harrys stomach turned over .One of the Death Eaters who had witnessed Dumbledores death was striding toward them .The Ministry workers beside them fell silent their eyes downcast Harry could feel fear rippling through them .The mans scowling slightly brutish face was somehow at odds with his magnificent sweeping robes which were embroidered with much gold thread .Someone in the crowd around the lifts called sycophantically Morning Yaxley !Yaxley ignored them .I requested somebody from Magical Maintenance to sort out my office Cattermole .Its still raining in there .Ron looked around as though hoping somebody else would intervene but nobody spoke .Raining .in your office ?Thats thats not good is it ?Ron gave a nervous laugh .Yaxleys eyes widened .You think its funny Cattermole do you ?A pair of witches broke away from the queue for the lift and bustled off .No said Ron no of course You realize that I am on my way downstairs to interrogate your wife Cattermole ?In fact Im quite surprised youre not down there holding her hand while she waits .Already given her up as a bad job have you ?Probably wise .Be sure and marry a pureblood next time .Hermione had let out a little squeak of horror .Yaxley looked at her .She coughed feebly and turned away .I I stammered Ron .But if my wife were accused of being a Mudblood said Yaxley not that any woman I married would ever be mistaken for such filth and the Head of the Department of Magical Law Enforcement needed a job doing I would make it my priority to do that job Cattermole .Do you understand me ?Yes whispered Ron .Then attend to it Cattermole and if my office is not completely dry within an hour your wifes Blood Status will be in even graver doubt than it is now .The golden grille before them clattered open .With a nod and unpleasant smile to Harry who was evidently expected to appreciate this treatment of Cattermole Yaxley swept away toward another lift .Harry Ron and Hermione entered theirs but nobody followed them It was as if they were infectious .The grilles shut with a clang and the lift began to move upward .What am I going to do ?Ron asked the other two at once he looked stricken .If I dont turn up my wife I mean Cattermole s wife Well come with you we should stick together began Harry but Ron shook his head feverishly .Thats mental we havent got much time .You two find Umbridge Ill go and sort out Yaxleys office but how do I stop it raining ?Try Finite Incantatem said Hermione at once that should stop the rain if its a hex or curse if it doesnt somethings gone wrong with an Atmospheric Charm which will be more difficult to fix so as an interim measure try Impervius to protect his belongings Say it again slowly said Ron searching his pockets desperately for a quill but at that moment the lift juddered to a halt .A disembodied female voice said Level four Department for the Regulation and Control of Magical Creatures incorporating Beast Being and Spirit Divisions Goblin Liaison Office and Pest Advisory Bureau and the grilles slid open again admitting a couple of wizards and several pale violet paper airplanes that fluttered around the lamp in the ceiling of the lift .Morning Albert said a bushily whiskered man smiling at Harry .He glanced over at Ron and Hermione as the lift creaked upward once more Hermione was now whispering frantic instructions to Ron .The wizard leaned toward Harry leering and muttered Dirk Cresswell eh ?From Goblin Liaison ?Nice one Albert .Im pretty confident Ill get his job now !He winked .Harry smiled back hoping that this would suffice .The lift stopped the grilles opened once more .Level two Department of Magical Law Enforcement including the Improper Use of Magic Office Auror Headquarters and Wizengamot Administration Services said the disembodied witchs voice .Harry saw Hermione give Ron a little push and he hurried out of the lift followed by the other wizards leaving Harry and Hermione alone .The moment the golden door had closed Hermione said very fast Actually Harry I think Id better go after him I dont think he knows what hes doing and if he gets caught the whole thing Level one Minister of Magic and Support Staff .The golden grilles slid apart again and Hermione gasped .Four people stood before them two of them deep in conversation a longhaired wizard wearing magnificent robes of black and gold and a squat toadlike witch wearing a velvet bow in her short hair and clutching a clipboard to her chest .THE MUGGLEBORN REGISTRATION COMMISSION Ah Mafalda !said Umbridge looking at Hermione .Travers sent you did he ?Yyes squeaked Hermione .Good youll do perfectly well .Umbridge spoke to the wizard in black and gold .Thats that problem solved Minister if Mafalda can be spared for recordkeeping we shall be able to start straightaway .She consulted her clipboard .Ten people today and one of them the wife of a Ministry employee !Tut tut .even here in the heart of the Ministry !She stepped into the lift beside Hermione as did the two wizards who had been listening to Umbridges conversation with the Minister .Well go straight down Mafalda youll find everything you need in the courtroom .Good morning Albert arent you getting out ?Yes of course said Harry in Runcorns deep voice .Harry stepped out of the lift .The golden grilles clanged shut behind him .Glancing over his shoulder Harry saw Hermiones anxious face sinking back out of sight a tall wizard on either side of her Umbridges velvet hairbow level with her shoulder .What brings you up here Runcorn ?asked the new Minister of Magic .His long black hair and beard were streaked with silver and a great overhanging forehead shadowed his glinting eyes putting Harry in mind of a crab looking out from beneath a rock .Needed a quick word with Harry hesitated for a fraction of a second Arthur Weasley .Someone said he was up on level one .Ah said Pius Thicknesse .Has he been caught having contact with an Undesirable ?No said Harry his throat dry .No nothing like that .Ah well .Its only a matter of time said Thicknesse .If you ask me the blood traitors are as bad as the Mudbloods .Good day Runcorn .Good day Minister .Harry watched Thicknesse march away along the thickly carpeted corridor .The moment the Minister had passed out of sight Harry tugged the Invisibility Cloak out from under his heavy black cloak threw it over himself and set off along the corridor in the opposite direction .Runcorn was so tall that Harry was forced to stoop to make sure his big feet were hidden .Panic pulsed in the pit of his stomach .As he passed gleaming wooden door after gleaming wooden door each bearing a small plaque with the owners name and occupation upon it the might of the Ministry its complexity its impenetrability seemed to force itself upon him so that the plan he had been carefully concocting with Ron and Hermione over the past four weeks seemed laughably childish .They had concentrated all their efforts on getting inside without being detected They had not given a moments thought to what they would do if they were forced to separate .Now Hermione was stuck in court proceedings which would undoubtedly last hours Ron was struggling to do magic that Harry was sure was beyond him a womans liberty possibly depending on the outcome and he Harry was wandering around on the top floor when he knew perfectly well that his quarry had just gone down in the lift .He stopped walking leaned against a wall and tried to decide what to do .The silence pressed upon him There was no bustling or talk or swift footsteps here the purplecarpeted corridors were as hushed as though the Muffliato charm had been cast over the place .Her office must be up here Harry thought .It seemed most unlikely that Umbridge would keep her jewelry in her office but on the other hand it seemed foolish not to search it to make sure .He therefore set off along the corridor again passing nobody but a frowning wizard who was murmuring instructions to a quill that floated in front of him scribbling on a trail of parchment .Now paying attention to the names on the doors Harry turned a corner .Halfway along the next corridor he emerged into a wide open space where a dozen witches and wizards sat in rows at small desks not unlike school desks though much more highly polished and free from graffiti .Harry paused to watch them for the effect was quite mesmerizing .They were all waving and twiddling their wands in unison and squares of colored paper were flying in every direction like little pink kites .After a few seconds Harry realized that there was a rhythm to the proceedings that the papers all formed the same pattern and after a few more seconds he realized that what he was watching was the creation of pamphlets that the paper squares were pages which when assembled folded and magicked into place fell into neat stacks beside each witch or wizard .Harry crept closer although the workers were so intent on what they were doing that he doubted they would notice a carpetmuffled footstep and he slid a completed pamphlet from the pile beside a young witch .He examined it beneath the Invisibility Cloak .Its pink cover was emblazoned with a golden title MUDBLOODS and the Dangers They Pose to a Peaceful PureBlood Society Beneath the title was a picture of a red rose with a simpering face in the middle of its petals being strangled by a green weed with fangs and a scowl .There was no authors name upon the pamphlet but again the scars on the back of his right hand seemed to tingle as he examined it .Then the young witch beside him confirmed his suspicion as she said still waving and twirling her wand Will the old hag be interrogating Mudbloods all day does anyone know ?Careful said the wizard beside her glancing around nervously one of his pages slipped and fell to the floor .What has she got magic ears as well as an eye now ?The witch glanced toward the shining mahogany door facing the space full of pamphletmakers Harry looked too and rage reared in him like a snake .Where there might have been a peephole on a Muggle front door a large round eye with a bright blue iris had been set into the wood an eye that was shockingly familiar to anybody who had known Alastor Moody .For a split second Harry forgot where he was and what he was doing there He even forgot that he was invisible .He strode straight over to the door to examine the eye .It was not moving It gazed blindly upward frozen .The plaque beneath it read DOLORES UMBRIDGE SENIOR UNDERSECRETARY TO THE MINISTER Below that a slightly shinier new plaque read HEAD OF THE MUGGLEBORN REGISTRATION COMMISSION Harry looked back at the dozen pamphletmakers Though they were intent upon their work he could hardly suppose that they would not notice if the door of an empty office opened in front of them .He therefore withdrew from an inner pocket an odd object with little waving legs and a rubberbulbed horn for a body .Crouching down beneath the Cloak he placed the Decoy Detonator on the ground .It scuttled away at once through the legs of the witches and wizards in front of him .A few moments later during which Harry waited with his hand upon the doorknob there came a loud bang and a great deal of acrid black smoke billowed from a corner .The young witch in the front row shrieked Pink pages flew everywhere as she and her fellows jumped up looking around for the source of the commotion .Harry turned the doorknob stepped into Umbridges office and closed the door behind him .He felt he had stepped back in time .The room was exactly like Umbridges office at Hogwarts Lace draperies doilies and dried flowers covered every available surface .The walls bore the same ornamental plates each featuring a highly colored beribboned kitten gamboling and frisking with sickening cuteness .The desk was covered with a flouncy flowered cloth .Behind MadEyes eye a telescopic attachment enabled Umbridge to spy on the workers on the other side of the door .Harry took a look through it and saw that they were all still gathered around the Decoy Detonator .He wrenched the telescope out of the door leaving a hole behind pulled the magical eyeball out of it and placed it in his pocket .Then he turned to face the room again raised his wand and murmured Accio Locket .Nothing happened but he had not expected it to no doubt Umbridge knew all about protective charms and spells .He therefore hurried behind her desk and began pulling open the drawers .He saw quills and notebooks and Spellotape enchanted paper clips that coiled snakelike from their drawer and had to be beaten back a fussy little lace box full of spare hair bows and clips but no sign of a locket .There was a filing cabinet behind the desk Harry set to searching it .Like Filch s filing cabinets at Hogwarts it was full of folders each labeled with a name .It was not until Harry reached the bottommost drawer that he saw something to distract him from his search Mr Weasleys file .He pulled it out and opened it .ARTHUR WEASLEY BLOOD STATUS Pureblood but with unacceptable proMuggle leanings .Known member of the Order of the Phoenix .FAMILY Wife pureblood seven children two youngest at Hogwarts .NB Youngest son currently at home seriously ill Ministry inspectors have confirmed .SECURITY STATUS TRACKED .All movements are being monitored .Strong likelihood Undesirable No .1 will contact has stayed with Weasley family previously Undesirable Number One Harry muttered under his breath as he replaced Mr Weasleys folder and shut the drawer .He had an idea he knew who that was and sure enough as he straightened up and glanced around the office for fresh hiding places he saw a poster of himself on the wall with the words undesirable no .1 emblazoned across his chest .A little pink note was stuck to it with a picture of a kitten in the corner .Harry moved across to read it and saw that Umbridge had written To be punished .Angrier than ever he proceeded to grope in the bottoms of the vases and baskets of dried flowers but was not at all surprised that the locket was not there .He gave the office one last sweeping look and his heart skipped a beat .Dumbledore was staring at him from a small rectangular mirror propped up on a bookcase beside the desk .Harry crossed the room at a run and snatched it up but realized the moment he touched it that it was not a mirror at all .Dumbledore was smiling wistfully out of the front cover of a glossy book .Harry had not immediately noticed the curly green writing across his hat The Life and Lies ofAlbus Dumbledore nor the slightly smaller writing across his chest by Rita Skeeter bestselling author of Armando Dippet Master or Moron ?Harry opened the book at random and saw a fullpage photograph of two teenage boys both laughing immoderately with their arms around each others shoulders .Dumbledore now with elbowlength hair had grown a tiny wispy beard that recalled the one on Krums chin that had so annoyed Ron .The boy who roared in silent amusement beside Dumbledore had a gleeful wild look about him .His golden hair fell in curls to his shoulders .Harry wondered whether it was a young Doge but before he could check the caption the door of the office opened .If Thicknesse had not been looking over his shoulder as he entered Harry would not have had time to pull the Invisibility Cloak over himself .As it was he thought Thicknesse might have caught a glimpse of movement because for a moment or two he remained quite still staring curiously at the place where Harry had just vanished .Perhaps deciding that all he had seen was Dumbledore scratching his nose on the front of the book for Harry had hastily replaced it upon the shelf Thicknesse finally walked to the desk and pointed his wand at the quill standing ready in the ink pot .It sprang out and began scribbling a note to Umbridge .Very slowly hardly daring to breathe Harry backed out of the office into the open area beyond .The pamphletmakers were still clustered around the remains of the Decoy Detonator which continued to hoot feebly as it smoked .Harry hurried off up the corridor as the young witch said I bet it sneaked up here from Experimental Charms theyre so careless remember that poisonous duck ?Speeding back toward the lifts Harry reviewed his options .It had never been likely that the locket was here at the Ministry and there was no hope of bewitching its whereabouts out of Umbridge while she was sitting in a crowded court .Their priority now had to be to leave the Ministry before they were exposed and try again another day .The first thing to do was to find Ron and then they could work out a way of extracting Hermione from the courtroom .The lift was empty when it arrived .Harry jumped in and pulled off the Invisibility Cloak as it started its descent .To his enormous relief when it rattled to a halt at level two a soakingwet and wildeyed Ron got in .Mmorning he stammered to Harry as the lift set off again .Ron its me Harry !Harry !Blimey I forgot what you looked like why isnt Hermione with you ?She had to go down to the courtrooms with Umbridge she couldnt refuse and But before Harry could finish the lift had stopped again The doors opened and Mr Weasley walked inside talking to an elderly witch whose blonde hair was teased so high it resembled an anthill . .I quite understand what youre saying Wakanda but Im afraid I cannot be party to Mr Weasley broke off he had noticed Harry .It was very strange to have Mr Weasley glare at him with that much dislike .The lift doors closed and the four of them trundled downward once more .Oh hello Reg said Mr Weasley looking around at the sound of steady dripping from Rons robes .Isnt your wife in for questioning today ?Er whats happened to you ?Why are you so wet ?Yaxleys office is raining said Ron .He addressed Mr Weasleys shoulder and Harry felt sure he was scared that his father might recognize him if they looked directly into each others eyes .I couldnt stop it so theyve sent me to get Bernie Pillsworth I think they said Yes a lot of offices have been raining lately said Mr Weasley .Did you try Meteolojinx Recanto ?It worked for Bletchley .Meteolojinx Recanto ?whispered Ron .No I didnt .Thanks D I mean thanks Arthur .The lift doors opened the old witch with the anthill hair left and Ron darted past her out of sight .Harry made to follow him but found his path blocked as Percy Weasley strode into the lift his nose buried in some papers he was reading .Not until the doors had clanged shut again did Percy realize he was in a lift with his father .He glanced up saw Mr Weasley turned radish red and left the lift the moment the doors opened again .For the second time Harry tried to get out but this time found his way blocked by Mr Weasleys arm .One moment Runcorn .The lift doors closed and as they clanked down another floor Mr Weasley said I hear you laid information about Dirk Cresswell .Harry had the impression that Mr Weasleys anger was no less because of the brush with Percy .He decided his best chance was to act stupid .Sorry ?he said .Dont pretend Runcorn said Mr Weasley fiercely .You tracked down the wizard who faked his family tree didnt you ?I so what if I did ?said Harry .So Dirk Cresswell is ten times the wizard you are said Mr Weasley quietly as the lift sank ever lower .And if he survives Azkaban you 11 have to answer to him not to mention his wife his sons and his friends Arthur Harry interrupted you know youre being tracked dont you ?Is that a threat Runcorn ?said Mr Weasley loudly .No said Harry its a fact !Theyre watching your every move The lift doors opened .They had reached the Atrium .Mr Weasley gave Harry a scathing look and swept from the lift .Harry stood there shaken .He wished he was impersonating somebody other than Runcorn .The lift doors clanged shut .Harry pulled out the Invisibility Cloak and put it back on .He would try to extricate Hermione on his own while Ron was dealing with the raining office .When the doors opened he stepped out into a torchlit stone passageway quite different from the wood paneled and carpeted corridors above .As the lift rattled away again Harry shivered slightly looking toward the distant black door that marked the entrance to the Department of Mysteries .He set off his destination not the black door but the doorway he remembered on the lefthand side which opened onto the flight of stairs down to the court chambers .His mind grappled with possibilities as he crept down them He still had a couple of Decoy Detonators but perhaps it would be better to simply knock on the courtroom door enter as Runcorn and ask for a quick word with Mafalda ?Of course he did not know whether Runcorn was sufficiently important to get away with this and even if he managed it Hermione s nonreappearance might trigger a search before they were clear of the Ministry .Lost in thought he did not immediately register the unnatural chill that was creeping over him as if he were descending into fog .It was becoming colder and colder with every step he took a cold that reached right down into his throat and tore at his lungs .And then he felt that stealing sense of despair of hopelessness filling him expanding inside him .Dementors he thought .And as he reached the foot of the stairs and turned to his right he saw a dreadful scene .The dark passage outside the courtrooms was packed with tall black hooded figures their faces completely hidden their ragged breathing the only sound in the place .The petrified Muggleborns brought in for questioning sat huddled and shivering on hard wooden benches .Most of them were hiding their faces in their hands perhaps in an instinctive attempt to shield themselves from the dementors greedy mouths .Some were accompanied by families others sat alone .The dementors were gliding up and down in front of them and the cold and the hopelessness and the despair of the place laid themselves upon Harry like a curse .Fight it he told himself but he knew that he could not conjure a Patronus here without revealing himself instantly .So he moved forward as silently as he could and with every step he took numbness seemed to steal over his brain but he forced himself to think of Hermione and of Ron who needed him .Moving through the towering black figures was terrifying The eyeless faces hidden beneath their hoods turned as he passed and he felt sure that they sensed him sensed perhaps a human presence that still had some hope some resilience .And then abruptly and shockingly amid the frozen silence one of the dungeon doors on the left of the corridor was flung open and screams echoed out of it .No no Im halfblood Im halfblood I tell you !My father was a wizard he was look him up Arkie Alderton hes a wellknown broomstick designer look him up I tell you get your hands off me get your hands off This is your final warning said Umbridges soft voice magically magnified so that it sounded clearly over the mans desperate screams .If you struggle you will be subjected to the Dementors Kiss .The mans screams subsided but dry sobs echoed through the corridor .Take him away said Umbridge .Two dementors appeared in the doorway of the courtroom their rotting scabbed hands clutching the upper arms of a wizard who appeared to be fainting .They glided away down the corridor with him and the darkness they trailed behind them swallowed him from sight .Next Mary Cattermole called Umbridge .A small woman stood up she was trembling from head to foot .Her dark hair was smoothed back into a bun and she wore long plain robes .Her face was completely bloodless .As she passed the dementors Harry saw her shudder .He did it instinctively without any sort of plan because he hated the sight of her walking alone into the dungeon As the door began to swing closed he slipped into the courtroom behind her .It was not the same room in which he had once been interrogated for improper use of magic .This one was much smaller though the ceiling was quite as high it gave the claustrophobic sense of being stuck at the bottom of a deep well .There were more dementors in here casting their freezing aura over the place they stood like faceless sentinels in the corners farthest from the high raised platform .Here behind a balustrade sat Umbridge with Yaxley on one side of her and Hermione quite as whitefaced as Mrs Cattermole on the other .At the foot of the platform a brightsilver longhaired cat prowled up and down up and down and Harry realized that it was there to protect the prosecutors from the despair that emanated from the dementors That was for the accused to feel not the accusers .Sit down said Umbridge in her soft silky voice .Mrs Cattermole stumbled to the single seat in the middle of the floor beneath the raised platform .The moment she had sat down chains clinked out of the arms of the chair and bound her there .You are Mary Elizabeth Cattermole ?asked Umbridge .Mrs Cattermole gave a single shaky nod .Married to Reginald Cattermole of the Magical Maintenance Department ?Mrs Cattermole burst into tears .I dont know where he is he was supposed to meet me here !Umbridge ignored her .Mother to Maisie Ellie and Alfred Cattermole ?Mrs Cattermole sobbed harder than ever .Theyre frightened they think I might not come home Spare us spat Yaxley .The brats of Mudbloods do not stir our sympathies .Mrs Cattermoles sobs masked Harrys footsteps as he made his way carefully toward the steps that led up to the raised platform .The moment he had passed the place where the Patronus cat patrolled he felt the change in temperature It was warm and comfortable here .The Patronus he was sure was Umbridges and it glowed brightly because she was so happy here in her element upholding the twisted laws she had helped to write .Slowly and very carefully he edged his way along the platform behind Umbridge Yaxley and Hermione taking a seat behind the latter .He was worried about making Hermione jump .He thought of casting the Muffliato charm upon Umbridge and Yaxley but even murmuring the word might cause Hermione alarm .Then Umbridge raised her voice to address Mrs Cattermole and Harry seized his chance .Im behind you he whispered into Hermiones ear .As he had expected she jumped so violently she nearly overturned the bottle of ink with which she was supposed to be recording the interview but both Umbridge and Yaxley were concentrating upon Mrs Cattermole and this went unnoticed .A wand was taken from you upon your arrival at the Ministry today Mrs Cattermole Umbridge was saying .Eightandthreequarter inches cherry unicornhair core .Do you recognize that description ?Mrs Cattermole nodded mopping her eyes on her sleeve .Could you please tell us from which witch or wizard you took that wand ?Ttook ?sobbed Mrs Cattermole .I didnt ttake it from anybody .I bbought it when I was eleven years old .It it it chose me .She cried harder than ever .Umbridge laughed a soft girlish laugh that made Harry want to attack her .She leaned forward over the barrier the better to observe her victim and something gold swung forward too and dangled over the void the locket .Hermione had seen it she let out a little squeak but Umbridge and Yaxley still intent upon their prey were deaf to everything else .No said Umbridge no I dont think so Mrs Cattermole .Wands only choose witches or wizards .You are not a witch .I have your responses to the questionnaire that was sent to you here Mafalda pass them to me .Umbridge held out a small hand She looked so toadlike at that moment that Harry was quite surprised not to see webs between the stubby fingers .Hermione s hands were shaking with shock .She fumbled in a pile of documents balanced on the chair beside her finally withdrawing a sheaf of parchment with Mrs Cattermoles name on it .Thats thats pretty Dolores she said pointing at the pendant gleaming in the ruffled folds of Umbridges blouse .What ?snapped Umbridge glancing down .Oh yes an old family heirloom she said patting the locket lying on her large bosom .The S stands for Selwyn .I am related to the Selwyns .Indeed there are few pureblood families to whom I am not related .A pity she continued in a louder voice flicking through Mrs Cattermoles questionnaire that the same cannot be said for you . ‘Parents professions greengrocers .Yaxley laughed jeeringly .Below the fluffy silver cat patrolled up and down and the dementors stood waiting in the corners .It was Umbridges lie that brought the blood surging into Harrys brain and obliterated his sense of caution that the locket she had taken as a bribe from a petty criminal was being used to bolster her own pureblood credentials .He raised his wand not even troubling to keep it concealed beneath the Invisibility Cloak and said Stupefyl There was a flash of red light Umbridge crumpled and her forehead hit the edge of the balustrade Mrs Cattermoles papers slid off her lap onto the floor and down below the psilver cat vanished .Icecold air hit them like an oncoming wind Yaxley confused looked around for the source of the trouble and saw Harrys disembodied hand and wand pointing at him .He tried to draw his own wand but too late Stupefyl Yaxley slid to the ground to lie curled on the floor .Harry !Hermione if you think I was going to sit here and let her pretend Harry Mrs Cattermole !Harry whirled around throwing off the Invisibility Cloak down below the dementors had moved out of their corners they were gliding toward the woman chained to the chair Whether because the Patronus had vanished or because they sensed that their masters were no longer in control they seemed to have abandoned restraint .Mrs Cattermole let out a terrible scream of fear as a slimy scabbed hand grasped her chin and forced her face back .EXPECTO PATRONUM The silver stag soared from the tip of Harrys wand and leaped toward the dementors which fell back and melted into the dark shadows again .The stags light more powerful and more warming than the cats protection filled the whole dungeon as it cantered around and around the room .Get the Horcrux Harry told Hermione .He ran back down the steps stuffing the Invisibility Cloak back into his bag and approached Mrs Cattermole .You ?she whispered gazing into his face .But but Reg said you were the one who submitted my name for questioning !Did I ?muttered Harry tugging at the chains binding her arms .Well Ive had a change of heart .Diffindol Nothing happened .Hermione how do I get rid of these chains ?Wait Im trying something up here Hermione were surrounded by dementors !I know that Harry but if she wakes up and the lockets gone I need to duplicate it Geminio There .That should fool her .Hermione came running downstairs .Lets see .Relashiol The chains clinked and withdrew into the arms of the chair .Mrs Cattermole looked just as frightened as ever before .I dont understand she whispered .Youre going to leave here with us said Harry pulling her to her feet .Go home grab your children and get out get out of the country if youve got to .Disguise yourselves and run .Youve seen how it is you wont get anything like a fair hearing here .Harry said Hermione how are we going to get out of here with all those dementors outside the door ?Patronuses said Harry pointing his wand at his own The stag slowed and walked still gleaming brightly toward the door .As many as we can muster do yours Hermione .Expec Expecto patronum said Hermione .Nothing happened .Its the only spell she ever has trouble with Harry told a completely bemused Mrs Cattermole .Bit unfortunate really .Come on Hermione .Expecto patronum .A silver otter burst from the end of Hermione s wand and swam gracefully through the air to join the stag .Cmon said Harry and he led Hermione and Mrs Cattermole to the door .When the Patronuses glided out of the dungeon there were cries of shock from the people waiting outside .Harry looked around the dementors were falling back on both sides of them melding into the darkness scattering before the silver creatures .Its been decided that you should all go home and go into hiding with your families Harry told the waiting Muggleborns who were dazzled by the light of the Patronuses and still cowering slightly .Go abroad if you can .Just get well away from the Ministry .Thats the er new official position .Now if youll just follow the Patronuses youll be able to leave from the Atrium .They managed to get up the stone steps without being intercepted but as they approached the lifts Harry started to have misgivings .If they emerged into the Atrium with a silver stag an otter soaring alongside it and twenty or so people half of them accused Muggleborns he could not help feeling that they would attract unwanted attention .He had just reached this unwelcome conclusion when the lift clanged to a halt in front of them .Reg !screamed Mrs Cattermole and she threw herself into Rons arms .Runcorn let me out he attacked Umbridge and Yaxley and hes told all of us to leave the country I think wed better do it Reg I really do lets hurry home and fetch the children and why are you so wet ?Water muttered Ron disengaging himself .Harry they know there are intruders inside the Ministry something about a hole in Umbridges office door I reckon weve got five minutes if that Hermione s Patronus vanished with a pop as she turned a horrorstruck face to Harry .Harry if were trapped here !We wont be if we move fast said Harry .He addressed the silent group behind them who were all gawping at him .Whos got wands ?About half of them raised their hands .Okay all of you who havent got wands need to attach yourself to somebody who has .Well need to be fast before they stop us .Come on .They managed to cram themselves into two lifts .Harrys Patronus stood sentinel before the golden grilles as they shut and the lifts began to rise .Level eight said the witchs cool voice Atrium .Harry knew at once that they were in trouble .The Atrium was full of people moving from fireplace to fireplace sealing them off .Harry !squeaked Hermione .What are we going to ?STOP !Harry thundered and the powerful voice of Runcorn echoed through the Atrium The wizards sealing the fireplaces froze .Follow me he whispered to the group of terrified Muggleborns who moved forward in a huddle shepherded by Ron and Hermione .Whats up Albert ?said the same balding wizard who had followed Harry out of the fireplace earlier .He looked nervous .This lot need to leave before you seal the exits said Harry with all the authority he could muster .The group of wizards in front of him looked at one another .Weve been told to seal all exits and not let anyone Are you contradicting me ?Harry blustered .Would you like me to have your family tree examined like I had Dirk Cresswells ?Sorry !gasped the balding wizard backing away .I didnt mean nothing Albert but I thought .I thought they were in for questioning and .Their blood is pure said Harry and his deep voice echoed impressively through the hall .Purer than many of yours I daresay .Off you go he boomed to the Muggleborns who scurried forward into the fireplaces and began to vanish in pairs .The Ministry wizards hung back some looking confused others scared and resentful .Then Mary !Mrs Cattermole looked over her shoulder .The real Reg Cattermole no longer vomiting but pale and wan had just come running out of a lift .RReg ?She looked from her husband to Ron who swore loudly .The balding wizard gaped his head turning ludicrously from one Reg Cattermole to the other .Hey whats going on ?What is this ?Seal the exit !SEAL IT !Yaxley had burst out of another lift and was running toward the group beside the fireplaces into which all of the Muggleborns but Mrs Cattermole had now vanished .As the balding wizard lifted his wand Harry raised an enormous fist and punched him sending him flying through the air .Hes been helping Muggleborns escape Yaxley !Harry shouted .The balding wizards colleagues set up an uproar under cover of which Ron grabbed Mrs Cattermole pulled her into the stillopen fireplace and disappeared .Confused Yaxley looked from Harry to the punched wizard while the real Reg Cattermole screamed My wife !Who was that with my wife ?Whats going on ?Harry saw Yaxleys head turn saw an inkling of the truth dawn in that brutish face .Come on !Harry shouted at Hermione he seized her hand and they jumped into the fireplace together as Yaxleys curse sailed over Harrys head .They spun for a few seconds before shooting up out of a toilet into a cubicle .Harry flung open the door Ron was standing there beside the sinks still wrestling with Mrs Cattermole .Reg I dont understand Let go Im not your husband youve got to go home !There was a noise in the cubicle behind them Harry looked around Yaxley had just appeared .LETS GO !Harry yelled .He seized Hermione by the hand and Ron by the arm and turned on the spot .Darkness engulfed them along with the sensation of compressing bands but something was wrong .Hermione s hand seemed to be sliding out of his grip .He wondered whether he was going to suffocate he could not breathe or see and the only solid things in the world were Rons arm and Hermione s fingers which were slowly slipping away .And then he saw the door of number twelve Grimmauld Place with its serpent door knocker but before he could draw breath there was a scream and a flash of purple light Hermione s hand was suddenly vicelike upon his and everything went dark again .THE THIEF Harry opened his eyes and was dazzled by gold and green he had no idea what had happened he only knew that he was lying on what seemed to be leaves and twigs .Struggling to draw breath into lungs that felt flattened he blinked and realized that the gaudy glare was sunlight streaming through a canopy of leaves far above him .Then an object twitched close to his face .He pushed himself onto his hands and knees ready to face some small fierce creature but saw that the object was Rons foot .Looking around Harry saw that they and Hermione were lying on a forest floor apparently alone .Harrys first thought was of the Forbidden Forest and for a moment even though he knew how foolish and dangerous it would be for them to appear in the grounds of Hogwarts his heart leapt at the thought of sneaking through the trees to Hagrids hut .However in the few moments it took for Ron to give a low groan and Harry to start crawling toward him he realized that this was not the Forbidden Forest The trees looked younger they were more widely spaced the ground clearer .He met Hermione also on her hands and knees at Rons head .The moment his eyes fell upon Ron all other concerns fled Harrys mind for blood drenched the whole of Rons left side and his face stood out grayish white against the leafstrewn earth .The Polyjuice Potion was wearing off now Ron was halfway between Cattermole and himself in appearance his hair turning redder and redder as his face drained of the little color it had left .Whats happened to him ?Splinched said Hermione her fingers already busy at Rons sleeve where the blood was wettest and darkest .Harry watched horrified as she tore open Rons shirt .He had always thought of Splinching as something comical but this .His insides crawled unpleasantly as Hermione laid bare Rons upper arm where a great chunk of flesh was missing scooped cleanly away as though by a knife .Harry quickly in my bag theres a small bottle labeled ‘Essence of Dittany Bag right Harry sped to the place where Hermione had landed seized the tiny beaded bag and thrust his hand inside it .At once object after object began presenting itself to his touch He felt the leather spines of books woolly sleeves of jumpers heels of shoes Quickly He grabbed his wand from the ground and pointed it into the depths of the magical bag .Accio Dittany A small brown bottle zoomed out of the bag he caught it and hastened back to Hermione and Ron whose eyes were now halfclosed strips of white eyeball all that were visible between his lids .Hes fainted said Hermione who was also rather pale she no longer looked like Mafalda though her hair was still gray in places .Unstopper it for me Harry my hands are shaking .Harry wrenched the stopper off the little bottle Hermione took it and poured three drops of the potion onto the bleeding wound .Greenish smoke billowed upward and when it had cleared Harry saw that the bleeding had stopped .The wound now looked several days old new skin stretched over what had just been open flesh .Wow said Harry .Its all I feel safe doing said Hermione shakily .There are spells that would put him completely right but I darent try in case I do them wrong and cause more damage .Hes lost so much blood already .How did he get hurt ?I mean Harry shook his head trying to clear it to make sense of whatever had just taken place why are we here ?I thought we were going back to Grimmauld Place ?Hermione took a deep breath .She looked close to tears .Harry I dont think were going to be able to go back there .What dyou ?As we Disapparated Yaxley caught hold of me and I couldnt get rid of him he was too strong and he was still holding on when we arrived at Grimmauld Place and then well I think he must have seen the door and thought we were stopping there so he slackened his grip and I managed to shake him off and I brought us here instead !But then wheres he ?Hang on .You dont mean hes at Grimmauld Place ?He cant get in there ?Her eyes sparkled with unshed tears as she nodded .Harry I think he can .I I forced him to let go with a Revulsion Jinx but Id already taken him inside the Fidelius Charms protection .Since Dumbledore died were SecretKeepers so Ive given him the secret havent I ?There was no pretending Harry was sure she was right .It was a serious blow .If Yaxley could now get inside the house there was no way that they could return .Even now he could be bringing other Death Eaters in there by Apparition .Gloomy and oppressive though the house was it had been their one safe refuge even now that Kreacher was so much happier and friendlier a kind of home .With a twinge of regret that had nothing to do with food Harry imagined the houseelf busying himself over the steakandkidney pie that Harry Ron and Hermione would never eat .Harry Im sorry Im so sorry !Dont be stupid it wasnt your fault !If anything it was mine .Harry put his hand in his pocket and drew out Mad Eyes eye .Hermione recoiled looking horrified .Umbridge had stuck it to her office door to spy on people .I couldnt leave it there .but thats how they knew there were intruders .Before Hermione could answer Ron groaned and opened his eyes .He was still gray and his face glistened with sweat .How dyou feel ?Hermione whispered .Lousy croaked Ron wincing as he felt his injured arm .Where are we ?In the woods where they held the Quidditch World Cup said Hermione .I wanted somewhere enclosed undercover and this was the first place you thought of Harry finished for her glancing around at the apparently deserted glade .He could not help remembering what had happened the last time they had Apparated to the first place Hermione had thought of how Death Eaters had found them within minutes .Had it been Legilimency ?Did Voldemort or his henchmen know even now where Hermione had taken them ?Dyou reckon we should move on ?Ron asked Harry and Harry could tell by the look on Rons face that he was thinking the same .I dunno .Ron still looked pale and clammy .He had made no attempt to sit up and it looked as though he was too weak to do so .The prospect of moving him was daunting .Lets stay here for now Harry said .Looking relieved Hermione sprang to her feet .Where are you going ?asked Ron .If were staying we should put some protective enchantments around the place she replied and raising her wand she began to walk in a wide circle around Harry and Ron murmuring incantations as she went .Harry saw little disturbances in the surrounding air It was as if Hermione had cast a heat haze upon their clearing .Salvio Hexia .Protego Totalum .Repello Muggletum .Muffliato .You could get out the tent Harry .Tent ?In the bag !In the .of course said Harry .He did not bother to grope inside it this time but used another Summoning Charm .The tent emerged in a lumpy mass of canvas rope and poles .Harry recognized it partly because of the smell of cats as the same tent in which they had slept on the night of the Quidditch World Cup .I thought this belonged to that bloke Perkins at the Ministry ?he asked starting to disentangle the tent pegs .Apparently he didnt want it back his lumbagos so bad said Hermione now performing complicated figureofeight movements with her wand so Rons dad said I could borrow it .ErectoV she added pointing her wand at the misshapen canvas which in one fluid motion rose into the air and settled fully constructed onto the ground before Harry out of whose startled hands a tent peg soared to land with a final thud at the end of a guy rope .Cave Inimicum Hermione finished with a skyward flourish .Thats as much as I can do .At the very least we should know theyre coming I cant guarantee it will keep out Vol Dont say the name !Ron cut across her his voice harsh .Harry and Hermione looked at each other .Im sorry Ron said moaning a little as he raised himself to look at them but it feels like a a jinx or something .Cant we call him YouKnowWho please ?Dumbledore said fear of a name began Harry .In case you hadnt noticed mate calling YouKnow Who by his name didnt do Dumbledore much good in the end Ron snapped back .Just just show You KnowWho some respect will you ?Respect ?Harry repeated but Hermione shot him a warning look apparently he was not to argue with Ron while the latter was in such a weakened condition .Harry and Hermione half carried half dragged Ron through the entrance of the tent .The interior was exactly as Harry remembered it a small flat complete with bathroom and tiny kitchen .He shoved aside an old armchair and lowered Ron carefully onto the lower berth of a bunk bed .Even this very short journey had turned Ron whiter still and once they had settled him on the mattress he closed his eyes again and did not speak for a while .Ill make some tea said Hermione breathlessly pulling kettle and mugs from the depths of her bag and heading toward the kitchen .Harry found the hot drink as welcome as the firewhisky had been on the night that MadEye had died it seemed to burn away a little of the fear fluttering in his chest .After a minute or two Ron broke the silence .What dyou reckon happened to the Cattermoles ?With any luck theyll have got away said Hermione clutching her hot mug for comfort .As long as Mr Cattermole had his wits about him hell have transported Mrs Cattermole by SideAlong Apparition and theyll be fleeing the country right now with their children .Thats what Harry told her to do .Blimey I hope they escaped said Ron leaning back on his pillows .The tea seemed to be doing him good a little of his color had returned .I didnt get the feeling Reg Cattermole was all that quickwitted though the way everyone was talking to me when I was him .God I hope they made it .If they both end up in Azkaban because of us .Harry looked over at Hermione and the question he had been about to ask about whether Mrs Cattermole s lack of a wand would prevent her Apparating alongside her husband died in his throat .Hermione was watching Ron fret over the fate of the Cattermoles and there was such tenderness in her expression that Harry felt almost as if he had surprised her in the act of kissing him .So have you got it ?Harry asked her partly to remind her that he was there .Got got what ?she said with a little start .What did we just go through all that for ?The locket !Wheres the locket ?You got it ?shouted Ron raising himself a little higher on his pillows .No one tells me anything !Blimey you could have mentioned it !Well we were running for our lives from the Death Eaters werent we ?said Hermione .Here .And she pulled the locket out of the pocket of her robes and handed it to Ron .It was as large as a chickens egg .An ornate letter S inlaid with many small green stones glinted dully in the diffused light shining through the tents canvas roof .There isnt any chance someones destroyed it since Kreacher had it ?asked Ron hopefully .I mean are we sure its still a Horcrux ?I think so said Hermione taking it back from him and looking at it closely .There d be some sign of damage if it had been magically destroyed .She passed it to Harry who turned it over in his fingers .The thing looked perfect pristine .He remembered the mangled remains of the diary and how the stone in the Horcrux ring had been cracked open when Dumbledore destroyed it .I reckon Kreachers right said Harry .Were going to have to work out how to open this thing before we can destroy it .Sudden awareness of what he was holding of what lived behind the little golden doors hit Harry as he spoke .Even after all their efforts to find it he felt a violent urge to fling the locket from him .Mastering himself again he tried to prise the locket apart with his fingers then attempted the charm Hermione had used to open Reguluss bedroom door .Neither worked .He handed the locket back to Ron and Hermione each of whom did their best but were no more successful at opening it than he had been .Can you feel it though ?Ron asked in a hushed voice as he held it tight in his clenched fist .What dyou mean ?Ron passed the Horcrux to Harry .After a moment or two Harry thought he knew what Ron meant .Was it his own blood pulsing through his veins that he could feel or was it something beating inside the locket like a tiny metal heart ?What are we going to do with it ?Hermione asked .Keep it safe till we work out how to destroy it Harry replied and little though he wanted to he hung the chain around his own neck dropping the locket out of sight beneath his robes where it rested against his chest beside the pouch Hagrid had given him .I think we should take it in turns to keep watch outside the tent he added to Hermione standing up and stretching .And well need to think about some food as well .You stay there he added sharply as Ron attempted to sit up and turned a nasty shade of green .With the Sneakoscope Hermione had given Harry for his birthday set carefully upon the table in the tent Harry and Hermione spent the rest of the day sharing the role of lookout .However the Sneakoscope remained silent and still upon its point all day and whether because of the protective enchantments and Mugglerepelling charms Hermione had spread around them or because people rarely ventured this way their patch of wood remained deserted apart from occasional birds and squirrels .Evening brought no change Harry lit his wand as he swapped places with Hermione at ten oclock and looked out upon a deserted scene noting the bats fluttering high above him across the single patch of starry sky visible from their protected clearing .He felt hungry now and a little lightheaded .Hermione had not packed any food in her magical bag as she had assumed that they would be returning to Grimmauld Place that night so they had had nothing to eat except some wild mushrooms that Hermione had collected from amongst the nearest trees and stewed in a billycan .After a couple of mouthfuls Ron had pushed his portion away looking queasy Harry had only persevered so as not to hurt Hermione s feelings .The surrounding silence was broken by odd rustlings and what sounded like crackings of twigs Harry thought that they were caused by animals rather than people yet he kept his wand held tight at the ready .His insides already uncomfortable due to their inadequate helping of rubbery mushrooms tingled with unease .He had thought that he would feel elated if they managed to steal back the Horcrux but somehow he did not all he felt as he sat looking out at the darkness of which his wand lit only a tiny part was worry about what would happen next .It was as though he had been hurtling toward this point for weeks months maybe even years but now he had come to an abrupt halt run out of road .There were other Horcruxes out there somewhere but he did not have the faintest idea where they could be .He did not even know what all of them were .Meanwhile he was at a loss to know how to destroy the only one that they had found the Horcrux that currently lay against the bare flesh of his chest .Curiously it had not taken heat from his body but lay so cold against his skin it might just have emerged from icy water .From time to time Harry thought or perhaps imagined that he could feel the tiny heartbeat ticking irregularly alongside his own .Nameless forebodings crept upon him as he sat there in the dark He tried to resist them push them away yet they came at him relentlessly .Neither can live while the other survives .Ron and Hermione now talking softly behind him in the tent could walk away if they wanted to He could not .And it seemed to Harry as he sat there trying to master his own fear and exhaustion that the Horcrux against his chest was ticking away the time he had left .Stupid idea he told himself dont think that .His scar was starting to prickle again .He was afraid that he was making it happen by having these thoughts and tried to direct them into another channel .He thought of poor Kreacher who had expected them home and had received Yaxley instead .Would the elf keep silent or would he tell the Death Eater everything he knew ?Harry wanted to believe that Kreacher had changed toward him in the past month that he would be loyal now but who knew what would happen ?What if the Death Eaters tortured the elf ?Sick images swarmed into Harrys head and he tried to push these away too for there was nothing he could do for Kreacher He and Hermione had already decided against trying to summon him what if someone from the Ministry came too ?They could not count on elfish Apparition being free from the same flaw that had taken Yaxley to Grimmauld Place on the hem of Hermione s sleeve .Harrys scar was burning now .He thought that there was so much they did not know Lupin had been right about magic they had never encountered or imagined .Why hadnt Dumbledore explained more ?Had he thought that there would be time that he would live for years for centuries perhaps like his friend Nicolas Flamel ?If so he had been wrong .Snape had seen to that .Snape the sleeping snake who had struck at the top of the tower .And Dumbledore had fallen .fallen .Give it to me Gregorovitch .Harrys voice was high clear and cold his wand held in front of him by a longfingered white hand .The man at whom he was pointing was suspended upside down in midair though there were no ropes holding him he swung there invisibly and eerily bound his limbs wrapped about him his terrified face on a level with Harrys ruddy due to the blood that had rushed to his head .He had purewhite hair and a thick bushy beard a trussedup Father Christmas .I have it not I have it no more !It was many years ago stolen from me !Do not lie to Lord Voldemort Gregorovitch .He knows .He always knows .The hanging mans pupils were wide dilated with fear and they seemed to swell bigger and bigger until their blackness swallowed Harry whole And now Harry was hurrying along a dark corridor in stout little Gregorovitch s wake as he held a lantern aloft Gregorovitch burst into the room at the end of the passage and his lantern illuminated what looked like a workshop wood shavings and gold gleamed in the swinging pool of light and there on the window ledge sat perched like a giant bird a young man with golden hair .In the split second that the lanterns light illuminated him Harry saw the delight upon his handsome face then the intruder shot a Stunning Spell from his wand and jumped neatly backward out of the window with a crow of laughter .And Harry was hurtling back out of those wide tunnellike pupils and Gregorovitch s face was stricken with terror .Who was the thief Gregorovitch ?said the high cold voice .I do not know I never knew a young man no please PLEASE !A scream that went on and on and then a burst of green light Harryl He opened his eyes panting his forehead throbbing .He had passed out against the side of the tent had slid sideways down the canvas and was sprawled on the ground .He looked up at Hermione whose bushy hair obscured the tiny patch of sky visible through the dark branches high above them .Dream he said sitting up quickly and attempting to meet Hermione s glower with a look of innocence .Mustve dozed off sorry .I know it was your scar !I can tell by the look on your face !You were looking into Vol Dont say his name !came Rons angry voice from the depths of the tent .Fine retorted Hermione .YouKnowWhos mind then !I didnt mean it to happen !Harry said .It was a dream !Can you control what you dream about Hermione ?If you just learned to apply Occlumency But Harry was not interested in being told off he wanted to discuss what he had just seen .Hes found Gregorovitch Hermione and I think hes killed him but before he killed him he read Gregorovitch s mind and I saw I think Id better take over the watch if youre so tired youre falling asleep said Hermione coldly .I can finish the watch !No youre obviously exhausted .Go and lie down .She dropped down in the mouth of the tent looking stubborn .Angry but wishing to avoid a row Harry ducked back inside .Rons stillpale face was poking out from the lower bunk Harry climbed into the one above him lay down and looked up at the dark canvas ceiling .After several moments Ron spoke in a voice so low that it would not carry to Hermione huddled in the entrance .Whats YouKnowWho doing ?Harry screwed up his eyes in the effort to remember every detail then whispered into the darkness .He found Gregorovitch .He had him tied up he was torturing him .Hows Gregorovitch supposed to make him a new wand if hes tied up ?I dunno .Its weird isnt it ?Harry closed his eyes thinking of all he had seen and heard .The more he recalled the less sense it made . .Voldemort had said nothing about Harrys wand nothing about the twin cores nothing about Gregorovitch making a new and more powerful wand to beat Harrys .He wanted something from Gregorovitch Harry said eyes still closed tight .He asked him to hand it over but Gregorovitch said it had been stolen from him .and then .then .He remembered how he as Voldemort had seemed to hurtle through Gregorovitch s eyes into his memories .He read Gregorovitch s mind and I saw this young bloke perched on a windowsill and he fired a curse at Gregorovitch and jumped out of sight .He stole it he stole whatever YouKnowWhos after .And I .I think Ive seen him somewhere .Harry wished he could have another glimpse of the laughing boys face .The theft had happened many years ago according to Gregorovitch .Why did the young thief look familiar ?The noises of the surrounding woods were muffled inside the tent all Harry could hear was Rons breathing .After a while Ron whispered Couldnt you see what the thief was holding ?No .it mustve been something small .Harry ?The wooden slats of Rons bunk creaked as he repositioned himself in bed .Harry you dont reckon YouKnowWhos after something else to turn into a Horcrux ?I dont know said Harry slowly .Maybe .But wouldnt it be dangerous for him to make another one ?Didnt Hermione say he had pushed his soul to the limit already ?Yeah but maybe he doesnt know that .Yeah .maybe said Harry .He had been sure that Voldemort had been looking for a way around the problem of the twin cores sure that Voldemort sought a solution from the old wandmaker .and yet he had killed him apparently without asking him a single question about wandlore .What was Voldemort trying to find ?Why with the Ministry of Magic and the Wizarding world at his feet was he far away intent on the pursuit of an object that Gregorovitch had once owned and which had been stolen by the unknown thief ?Harry could still see the blondhaired youths face it was merry wild there was a Fred and Georgeish air of triumphant trickery about him .He had soared from the windowsill like a bird and Harry had seen him before but he could not think where .With Gregorovitch dead it was the merryfaced thief who was in danger now and it was on him that Harrys thoughts dwelled as Rons snores began to rumble from the lower bunk and as he himself drifted slowly into sleep once more .THE GOBLINS REVENGE Early next morning before the other two were awake Harry left the tent to search the woods around them for the oldest most gnarled and resilientlooking tree he could find .There in its shadow he buried MadEye Moodys eye and marked the spot by gouging a small cross in the bark with his wand .It was not much but Harry felt that MadEye would have much preferred this to being stuck on Dolores Umbridges door .Then he returned to the tent to wait for the others to wake and discuss what they were going to do next .Harry and Hermione felt that it was best not to stay anywhere too long and Ron agreed with the sole proviso that their next move took them within reach of a bacon sandwich .Hermione therefore removed the enchantments she had placed around the clearing while Harry and Ron obliterated all the marks and impressions on the ground that might show they had camped there .Then they Disapparated to the outskirts of a small market town .Once they had pitched the tent in the shelter of a small copse of trees and surrounded it with freshly cast defensive enchantments Harry ventured out under the Invisibility Cloak to find sustenance .This however did not go as planned .He had barely entered the town when an unnatural chill a descending mist and a sudden darkening of the skies made him freeze where he stood .But you can make a brilliant Patronus !protested Ron when Harry arrived back at the tent empty handed out of breath and mouthing the single word dementors .I couldnt .make one he panted clutching the stitch in his side .Wouldnt .come .Their expressions of consternation and disappointment made Harry feel ashamed .It had been a nightmarish experience seeing the dementors gliding out of the mist in the distance and realizing as the paralyzing cold choked his lungs and a distant screaming filled his ears that he was not going to be able to protect himself .It had taken all Harrys willpower to uproot himself from the spot and run leaving the eyeless dementors to glide amongst the Muggles who might not be able to see them but would assuredly feel the despair they cast wherever they went .So we still havent got any food .Shut up Ron snapped Hermione .Harry what happened ?Why do you think you couldnt make your Patronus ?You managed perfectly yesterday !I dont know .He sat low in one of Perkinss old armchairs feeling more humiliated by the moment .He was afraid that something had gone wrong inside him .Yesterday seemed a long time ago Today he might have been thirteen years old again the only one who collapsed on the Hogwarts Express .Ron kicked a chair leg .What ?he snarled at Hermione .Im starving !All Ive had since I bled half to death is a couple of toadstools !You go and fight your way through the dementors then said Harry stung .I would but my arms in a sling in case you hadnt noticed !Thats convenient .And whats that supposed to ?Of course !cried Hermione clapping a hand to her forehead and startling both of them into silence .Harry give me the locket !Come on she said impatiently clicking her fingers at him when he did not react the Horcrux Harry youre still wearing it !She held out her hands and Harry lifted the golden chain over his head .The moment it parted contact with Harrys skin he felt free and oddly light .He had not even realized that he was clammy or that there was a heavy weight pressing on his stomach until both sensations lifted .Better ?asked Hermione .Yeah loads better !Harry she said crouching down in front of him and using the kind of voice he associated with visiting the very sick you dont think youve been possessed do you ?What ?No !he said defensively .I remember everything weve done while Ive been wearing it .I wouldnt know what Id done if Id been possessed would I ?Ginny told me there were times when she couldnt remember anything .Hmm said Hermione looking down at the heavy gold locket .Well maybe we ought not to wear it .We can just keep it in the tent .We are not leaving that Horcrux lying around Harry stated firmly .If we lose it if it gets stolen Oh all right all right said Hermione and she placed it around her own neck and tucked it out of sight down the front of her shirt .But well take turns wearing it so nobody keeps it on too long .Great said Ron irritably and now weve sorted that out can we please get some food ?Fine but well go somewhere else to find it said Hermione with half a glance at Harry .Theres no point staying where we know dementors are swooping around .In the end they settled down for the night in a far flung field belonging to a lonely farm from which they had managed to obtain eggs and bread .Its not stealing is it ?asked Hermione in a troubled voice as they devoured scrambled eggs on toast .Not if I left some money under the chicken coop ?Ron rolled his eyes and said with his cheeks bulging Ermynee oo worry oo much .Elax !And indeed it was much easier to relax when they were comfortably well fed The argument about the dementors was forgotten in laughter that night and Harry felt cheerful even hopeful as he took the first of the three night watches .This was their first encounter with the fact that a full stomach meant good spirits an empty one bickering and gloom .Harry was least surprised by this because he had suffered periods of near starvation at the Dursleys .Hermione bore up reasonably well on those nights when they managed to scavenge nothing but berries or stale biscuits her temper perhaps a little shorter than usual and her silences rather dour .Ron however had always been used to three delicious meals a day courtesy of his mother or of the Hogwarts houseelves and hunger made him both unreasonable and irascible .Whenever lack of food coincided with Rons turn to wear the Horcrux he became downright unpleasant .So where next ?was his constant refrain .He did not seem to have any ideas himself but expected Harry and Hermione to come up with plans while he sat and brooded over the low food supplies .Accordingly Harry and Hermione spent fruitless hours trying to decide where they might find the other Horcruxes and how to destroy the one they had already got their conversations becoming increasingly repetitive as they had no new information .As Dumbledore had told Harry that he believed Voldemort had hidden the Horcruxes in places important to him they kept reciting in a sort of dreary litany those locations they knew that Voldemort had lived or visited .The orphanage where he had been born and raised Hogwarts where he had been educated Borgin and Burkes where he had worked after completing school then Albania where he had spent his years of exile These formed the basis of their speculations .Yeah lets go to Albania .Shouldnt take more than an afternoon to search an entire country said Ron sarcastically .There cant be anything there .Hed already made five of his Horcruxes before he went into exile and Dumbledore was certain the snake is the sixth said Hermione .We know the snakes not in Albania its usually with Vol Didnt I ask you to stop saying that ?Fine !The snake is usually with YouKnotuWho happy ?Not particularly .I cant see him hiding anything at Borgin and Burkes said Harry who had made this point many times before but said it again simply to break the nasty silence .Borgin and Burke were experts at Dark objects they wouldve recognized a Horcrux straightaway .Ron yawned pointedly .Repressing a strong urge to throw something at him Harry plowed on I still reckon he might have hidden something at Hogwarts .Hermione sighed .But Dumbledore would have found it Harry !Harry repeated the argument he kept bringing out in favor of this theory .Dumbledore said in front of me that he never assumed he knew all of Hogwartss secrets .Im telling you if there was one place Vol Oi !YOUKNOWWHO then !Harry shouted goaded past endurance .If there was one place that was really important to YouKnowWho it was Hogwarts !Oh come on scoffed Ron .His school ?Yeah his school !It was his first real home the place that meant he was special it meant everything to him and even after he left This is YouKnowWho were talking about right ?Not you ?inquired Ron .He was tugging at the chain of the Horcrux around his neck Harry was visited by a desire to seize it and throttle him .You told us that YouKnowWho asked Dumbledore to give him a job after he left said Hermione .Thats right said Harry .And Dumbledore thought he only wanted to come back to try and find something probably another founders object to make into another Horcrux ?Yeah said Harry .But he didnt get the job did he ?said Hermione .So he never got the chance to find a founders object there and hide it in the school !Okay then said Harry defeated .Forget Hogwarts .Without any other leads they traveled into London and hidden beneath the Invisibility Cloak searched for the orphanage in which Voldemort had been raised .Hermione stole into a library and discovered from their records that the place had been demolished many years before .They visited its site and found a tower block of offices .We could try digging in the foundations ?Hermione suggested halfheartedly .He wouldnt have hidden a Horcrux here Harry said .He had known it all along The orphanage had been the place Voldemort had been determined to escape he would never have hidden a part of his soul there .Dumbledore had shown Harry that Voldemort sought grandeur or mystique in his hiding places this dismal gray corner of London was as far removed as you could imagine from Hogwarts or the Ministry or a building like Gringotts the Wizarding bank with its golden doors and marble floors .Even without any new ideas they continued to move through the countryside pitching the tent in a different place each night for security .Every morning they made sure that they had removed all clues to their presence then set off to find another lonely and secluded spot traveling by Apparition to more woods to the shadowy crevices of cliffs to purple moors gorsecovered mountainsides and once a sheltered and pebbly cove .Every twelve hours or so they passed the Horcrux between them as though they were playing some perverse slowmotion game of passtheparcel where they dreaded the music stopping because the reward was twelve hours of increased fear and anxiety .Harrys scar kept prickling .It happened most often he noticed when he was wearing the Horcrux .Sometimes he could not stop himself reacting to the pain .What ?What did you see ?demanded Ron whenever he noticed Harry wince .A face muttered Harry every time .The same face .The thief who stole from Gregorovitch .And Ron would turn away making no effort to hide his disappointment .Harry knew that Ron was hoping to hear news of his family or of the rest of the Order of the Phoenix but after all he Harry was not a television aerial he could only see what Voldemort was thinking at the time not tune in to whatever took his fancy .Apparently Voldemort was dwelling endlessly on the unknown youth with the gleeful face whose name and whereabouts Harry felt sure Voldemort knew no better than he did .As Harrys scar continued to burn and the merry blondhaired boy swam tantalizingly in his memory he learned to suppress any sign of pain or discomfort for the other two showed nothing but impatience at the mention of the thief .He could not entirely blame them when they were so desperate for a lead on the Horcruxes .As the days stretched into weeks Harry began to suspect that Ron and Hermione were having conversations without and about him .Several times they stopped talking abruptly when Harry entered the tent and twice he came accidentally upon them huddled a little distance away heads together and talking fast both times they fell silent when they realized he was approaching them and hastened to appear busy collecting wood or water .Harry could not help wondering whether they had only agreed to come on what now felt like a pointless and rambling journey because they thought he had some secret plan that they would learn in due course .Ron was making no effort to hide his bad mood and Harry was starting to fear that Hermione too was disappointed by his poor leadership .In desperation he tried to think of further Horcrux locations but the only one that continued to occur to him was Hogwarts and as neither of the others thought this at all likely he stopped suggesting it .Autumn rolled over the countryside as they moved through it They were now pitching the tent on mulches of fallen leaves .Natural mists joined those cast by the dementors wind and rain added to their troubles .The fact that Hermione was getting better at identifying edible fungi could not altogether compensate for their continuing isolation the lack of other peoples company or their total ignorance of what was going on in the war against Voldemort .My mother said Ron one night as they sat in the tent on a riverbank in Wales can make good food appear out of thin air .He prodded moodily at the lumps of charred gray fish on his plate .Harry glanced automatically at Rons neck and saw as he had expected the golden chain of the Horcrux glinting there .He managed to fight down the impulse to swear at Ron whose attitude would he knew improve slightly when the time came to take off the locket .Your mother cant produce food out of thin air said Hermione .No one can .Food is the first of the five Principal Exceptions to Gamps Law of Elemental Transfigur Oh speak English cant you ?Ron said prising a fish bone out from between his teeth .Its impossible to make good food out of nothing !You can Summon it if you know where it is you can transform it you can increase the quantity if youve already got some Well dont bother increasing this its disgusting said Ron .Harry caught the fish and I did my best with it !I notice Im always the one who ends up sorting out the food because Im a girl I suppose !No its because youre supposed to be the best at magic !shot back Ron .Hermione jumped up and bits of roast pike slid off her tin plate onto the floor .You can do the cooking tomorrow Ron you can find the ingredients and try and charm them into something worth eating and Ill sit here and pull faces and moan and you can see how you Shut up !said Harry leaping to his feet and holding up both hands .Shut up now Hermione looked outraged .How can you side with him he hardly ever does the cook Hermione be quiet I can hear someone !He was listening hard his hands still raised warning them not to talk .Then over the rush and gush of the dark river beside them he heard voices again .He looked around at the Sneakoscope .It was not moving .You cast the Muffliato charm over us right ?he whispered to Hermione .I did everything she whispered back Muffliato MuggleRepelling and Disillusionment Charms all of it .They shouldnt be able to hear or see us whoever they are .Heavy scuffing and scraping noises plus the sound of dislodged stones and twigs told them that several people were clambering down the steep wooded slope that descended to the narrow bank where they had pitched the tent .They drew their wands waiting .The enchantments they had cast around themselves ought to be sufficient in the near total darkness to shield them from the notice of Muggles and normal witches and wizards .If these were Death Eaters then perhaps their defenses were about to be tested by Dark Magic for the first time .The voices became louder but no more intelligible as the group of men reached the bank .Harry estimated that their owners were fewer than twenty feet away but the cascading river made it impossible to tell for sure .Hermione snatched up the beaded bag and started to rummage after a moment she drew out three Extendable Ears and threw one each to Harry and Ron who hastily inserted the ends of the flesh colored strings into their ears and fed the other ends out of the tent entrance .Within seconds Harry heard a weary male voice .There ought to be a few salmon in here or dyou reckon its too early in the season ?Accio Salmon .There were several distinct splashes and then the slapping sounds of fish against flesh .Somebody grunted appreciatively .Harry pressed the Extendable Ear deeper into his own Over the murmur of the river he could make out more voices but they were not speaking English or any human language he had ever heard .It was a rough and unmelodious tongue a string of rattling guttural noises and there seemed to be two speakers one with a slightly lower slower voice than the other .A fire danced into life on the other side of the canvas large shadows passed between tent and flames .The delicious smell of baking salmon wafted tantalizingly in their direction .Then came the clinking of cutlery on plates and the first man spoke again .Here Griphook Gornuk .Goblins Hermione mouthed at Harry who nodded .Thank you said the goblins together in English .So you three have been on the run how long ?asked a new mellow and pleasant voice it was vaguely familiar to Harry who pictured a roundbellied cheerfulfaced man .Six weeks .seven .I forget said the tired man .Met up with Griphook in the first couple of days and joined forces with Gornuk not long after .Nice to have a bit of company .There was a pause while knives scraped plates and tin mugs were picked up and replaced on the ground .What made you leave Ted ?continued the man .Knew they were coming for me replied mellow voiced Ted and Harry suddenly knew who he was Tonkss father .Heard Death Eaters were in the area last week and decided Id better run for it .Refused to register as a Muggleborn on principle see so I knew it was a matter of time knew Id have to leave in the end .My wife should be okay shes pureblood .And then I met Dean here what a few days ago son ?Yeah said another voice and Harry Ron and Hermione stared at each other silent but beside themselves with excitement sure they recognized the voice of Dean Thomas their fellow Gryffindor .Muggleborn eh ?asked the first man .Not sure said Dean .My dad left my mum when I was a kid .Ive got no proof he was a wizard though .There was silence for a while except for the sounds of munching then Ted spoke again .Ive got to say Dirk Im surprised to run into you .Pleased but surprised .Word was youd been caught .I was said Dirk .I was halfway to Azkaban when I made a break for it Stunned Dawlish and nicked his broom .It was easier than youd think I dont reckon hes quite right at the moment .Might be Confunded .If so Id like to shake the hand of the witch or wizard who did it probably saved my life .There was another pause in which the fire crackled and the river rushed on .Then Ted said And where do you two fit in ?I er had the impression the goblins were for YouKnowWho on the whole .You had a false impression said the highervoiced of the goblins .We take no sides .This is a wizards war .How come youre in hiding then ?I deemed it prudent said the deepervoiced goblin .Having refused what I considered an impertinent request I could see that my personal safety was in jeopardy .What did they ask you to do ?asked Ted .Duties illbefitting the dignity of my race replied the goblin his voice rougher and less human as he said it .I am not a houseelf .What about you Griphook ?Similar reasons said the highervoiced goblin .Gringotts is no longer under the sole control of my race .I recognize no Wizarding master .He added something under his breath in Gobbledegook and Gornuk laughed .Whats the joke ?asked Dean .He said replied Dirk that there are things wizards dont recognize either .There was a short pause .I dont get it said Dean .I had my small revenge before I left said Griphook in English .Good man goblin I should say amended Ted hastily .Didnt manage to lock a Death Eater up in one of the old highsecurity vaults I suppose ?If I had the sword would not have helped him break out replied Griphook .Gornuk laughed again and even Dirk gave a dry chuckle .Dean and I are still missing something here said Ted .So is Severus Snape though he does not know it said Griphook and the two goblins roared with malicious laughter .Inside the tent Harrys breathing was shallow with excitement He and Hermione stared at each other listening as hard as they could .Didnt you hear about that Ted ?asked Dirk .About the kids who tried to steal Gryffindors sword out of Snape s office at Hogwarts ?An electric current seemed to course through Harry jangling his every nerve as he stood rooted to the spot .Never heard a word said Ted .Not in the Prophet was it ?Hardly chortled Dirk .Griphook here told me he heard about it from Bill Weasley who works for the bank .One of the kids who tried to take the sword was Bills younger sister .Harry glanced toward Hermione and Ron both of whom were clutching the Extendable Ears as tightly as lifelines .She and a couple of friends got into Snape s office and smashed open the glass case where he was apparently keeping the sword .Snape caught them as they were trying to smuggle it down the staircase .Ah God bless em said Ted .What did they think that theyd be able to use the sword on YouKnow Who ?Or on Snape himself ?Well whatever they thought they were going to do with it Snape decided the sword wasnt safe where it was said Dirk .Couple of days later once hed got the sayso from YouKnowWho I imagine he sent it down to London to be kept in Gringotts instead .The goblins started to laugh again .Im still not seeing the joke said Ted .Its a fake rasped Griphook .The sword of Gryffindor !Oh yes .It is a copy an excellent copy it is true but it was Wizardmade .The original was forged centuries ago by goblins and had certain properties only goblinmade armor possesses .Wherever the genuine sword of Gryffindor is it is not in a vault at Gringotts bank .I see said Ted .And I take it you didnt bother telling the Death Eaters this ?I saw no reason to trouble them with the information said Griphook smugly and now Ted and Dean joined in Gornuk and Dirks laughter .Inside the tent Harry closed his eyes willing someone to ask the question he needed answered and after a minute that seemed ten Dean obliged he was Harry remembered with a jolt an exboyfriend of Ginnys too .What happened to Ginny and the others ?The ones who tried to steal it ?Oh they were punished and cruelly said Griphook indifferently .Theyre okay though ?asked Ted quickly .I mean the Weasleys dont need any more of their kids injured do they ?They suffered no serious injury as far as I am aware said Griphook .Lucky for them said Ted .With Snapes track record I suppose we should just be glad theyre still alive .You believe that story then do you Ted ?asked Dirk .You believe Snape killed Dumbledore ?Course I do said Ted .Youre not going to sit there and tell me you think Potter had anything to do with it ?Hard to know what to believe these days muttered Dirk .I know Harry Potter said Dean .And I reckon hes the real thing the Chosen One or whatever you want to call it .Yeah theres a lot would like to believe hes that son said Dirk me included .But where is he ?Run for it by the looks of things .Youd think if he knew anything we dont or had anything special going for him hed be out there now fighting rallying resistance instead of hiding .And you know the Prophet made a pretty good case against him The Prophet ?scoffed Ted .You deserve to be lied to if youre still reading that muck Dirk .You want the facts try the Quibbler .There was a sudden explosion of choking and retching plus a good deal of thumping by the sound of it Dirk had swallowed a fish bone .At last he spluttered The Quibbler ?That lunatic rag of Xeno Lovegoods ?Its not so lunatic these days said Ted .You want to give it a look .Xeno is printing all the stuff the Prophets ignoring not a single mention of Crumple Horned Snorkacks in the last issue .How long theyll let him get away with it mind I dont know .But Xeno says front page of every issue that any wizard whos against YouKnowWho ought to make helping Harry Potter their numberone priority .Hard to help a boy whos vanished off the face of the earth said Dirk .Listen the fact that they havent caught him yets one hell of an achievement said Ted .Id take tips from him gladly its what were trying to do stay free isnt it ?Yeah well youve got a point there said Dirk heavily .With the whole of the Ministry and all their informers looking for him Id have expected him to be caught by now .Mind whos to say they havent already caught and killed him without publicizing it ?Ah dont say that Dirk murmured Ted .There was a long pause filled with more clattering of knives and forks .When they spoke again it was to discuss whether they ought to sleep on the bank or retreat back up the wooded slope .Deciding the trees would give better cover they extinguished their fire then clambered back up the incline their voices fading away .Harry Ron and Hermione reeled in the Extendable Ears .Harry who had found the need to remain silent increasingly difficult the longer they eavesdropped now found himself unable to say more than Ginny the sword I know !said Hermione .She lunged for the tiny beaded bag this time sinking her arm in it right up to the armpit .Here .we .are .she said between gritted teeth and she pulled at something that was evidently in the depths of the bag .Slowly the edge of an ornate picture frame came into sight .Harry hurried to help her .As they lifted the empty portrait of Phineas Nigellus free of Hermiones bag she kept her wand pointing at it ready to cast a spell at any moment .If somebody swapped the real sword for the fake while it was in Dumbledores office she panted as they propped the painting against the side of the tent Phineas Nigellus would have seen it happen he hangs right beside the case !Unless he was asleep said Harry but he still held his breath as Hermione knelt down in front of the empty canvas her wand directed at its center cleared her throat then said Er Phineas ?Phineas Nigellus ?Nothing happened .Phineas Nigellus ?said Hermione again .Professor Black ?Please could we talk to you ?Please ? ‘Please always helps said a cold snide voice and Phineas Nigellus slid into his portrait .At once Hermione cried Obscuro A black blindfold appeared over Phineas Nigelluss clever dark eyes causing him to bump into the frame and shriek with pain .What how dare what are you ?Im very sorry Professor Black said Hermione but its a necessary precaution !Remove this foul addition at once !Remove it I say !You are ruining a great work of art !Where am I ?What is going on ?Never mind where we are said Harry and Phineas Nigellus froze abandoning his attempts to peel off the painted blindfold .Can that possibly be the voice of the elusive Mr Potter ?Maybe said Harry knowing that this would keep Phineas Nigelluss interest .Weve got a couple of questions to ask you about the sword of Gryffindor .Ah said Phineas Nigellus now turning his head this way and that in an effort to catch sight of Harry yes .That silly girl acted most unwisely there Shut up about my sister said Ron roughly .Phineas Nigellus raised supercilious eyebrows .Who else is here ?he asked turning his head from side to side .Your tone displeases me !The girl and her friends were foolhardy in the extreme .Thieving from the headmaster !They werent thieving said Harry .That sword isnt Snapes .It belongs to Professor Snapes school said Phineas Nigellus .Exactly what claim did the Weasley girl have upon it ?She deserved her punishment as did the idiot Longbottom and the Lovegood oddity !Neville is not an idiot and Luna is not an oddity !said Hermione .Where am I ?repeated Phineas Nigellus starting to wrestle with the blindfold again .Where have you brought me ?Why have you removed me from the house of my forebears ?Never mind that !How did Snape punish Ginny Neville and Luna ?asked Harry urgently .Professor Snape sent them into the Forbidden Forest to do some work for the oaf Hagrid .Hagrids not an oaf !said Hermione shrilly .And Snape mightve thought that was a punishment said Harry but Ginny Neville and Luna probably had a good laugh with Hagrid .The Forbidden Forest .theyve faced plenty worse than the Forbidden Forest big deal !He felt relieved he had been imagining horrors the Cruciatus Curse at the very least .What we really wanted to know Professor Black is whether anyone else has um taken out the sword at all ?Maybe its been taken away for cleaning or or something ?Phineas Nigellus paused again in his struggles to free his eyes and sniggered .Muggleborns he said .Goblinmade armor does not require cleaning simple girl .Goblins silver repels mundane dirt imbibing only that which strengthens it .Dont call Hermione simple said Harry .I grow weary of contradiction said Phineas Nigellus .Perhaps it is time for me to return to the headmasters office ?Still blindfolded he began groping the side of his frame trying to feel his way out of his picture and back into the one at Hogwarts .Harry had a sudden inspiration .Dumbledore !Cant you bring us Dumbledore ?I beg your pardon ?asked Phineas Nigellus .Professor Dumbledores portrait couldnt you bring him along here into yours ?Phineas Nigellus turned his face in the direction of Harrys voice .Evidently it is not only Muggleborns who are ignorant Potter .The portraits of Hogwarts may commune with each other but they cannot travel outside the castle except to visit a painting of themselves hanging elsewhere .Dumbledore cannot come here with me and after the treatment I have received at your hands I can assure you that I shall not be making a return visit !Slightly crestfallen Harry watched Phineas redouble his attempts to leave his frame .Professor Black said Hermione couldnt you just tell us please when was the last time the sword was taken out of its case ?Before Ginny took it out I mean ?Phineas snorted impatiently .I believe that the last time I saw the sword of Gryffindor leave its case was when Professor Dumbledore used it to break open a ring .Hermione whipped around to look at Harry .Neither of them dared say more in front of Phineas Nigellus who had at last managed to locate the exit .Well good night to you he said a little waspishly and he began to move out of sight again .Only the edge of his hat brim remained in view when Harry gave a sudden shout .Wait !Have you told Snape you saw this ?Phineas Nigellus stuck his blindfolded head back into the picture .Professor Snape has more important things on his mind than the many eccentricities of Albus Dumbledore .Goodbye Potter !And with that he vanished completely leaving behind him nothing but his murky backdrop .Harry !Hermione cried .I know !Harry shouted .Unable to contain himself he punched the air it was more than he had dared to hope for .He strode up and down the tent feeling that he could have run a mile he did not even feel hungry anymore .Hermione was squashing Phineas Nigelluss portrait back into the beaded bag when she had fastened the clasp she threw the bag aside and raised a shining face to Harry .The sword can destroy Horcruxes !Goblinmade blades imbibe only that which strengthen them Harry that swords impregnated with basilisk venom !And Dumbledore didnt give it to me because he still needed it he wanted to use it on the locket and he must have realized they wouldnt let you have it if he put it in his will so he made a copy and put a fake in the glass case and he left the real one where ?They gazed at each other Harry felt that the answer was dangling invisibly in the air above them tantalizingly close .Why hadnt Dumbledore told him ?Or had he in fact told Harry but Harry had not realized it at the time ?Think !whispered Hermione .Think !Where would he have left it ?Not at Hogwarts said Harry resuming his pacing .Somewhere in Hogsmeade ?suggested Hermione .The Shrieking Shack ?said Harry .Nobody ever goes in there .But Snape knows how to get in wouldnt that be a bit risky ?Dumbledore trusted Snape Harry reminded her .Not enough to tell him that he had swapped the swords said Hermione .Yeah youre right !said Harry and he felt even more cheered at the thought that Dumbledore had had some reservations however faint about Snape s trustworthiness .So would he have hidden the sword well away from Hogsmeade then ?What dyou reckon Ron ?Ron ?Harry looked around .For one bewildered moment he thought that Ron had left the tent then realized that Ron was lying in the shadow of a lower bunk looking stony .Oh remembered me have you ?he said .What ?Ron snorted as he stared up at the underside of the upper bunk .You two carry on .Dont let me spoil your fun .Perplexed Harry looked to Hermione for help but she shook her head apparently as nonplussed as he was .Whats the problem ?asked Harry .Problem ?Theres no problem said Ron still refusing to look at Harry .Not according to you anyway .There were several plunks on the canvas over their heads .It had started to rain .Well youve obviously got a problem said Harry .Spit it out will you ?Ron swung his long legs off the bed and sat up .He looked mean unlike himself .All right Ill spit it out .Dont expect me to skip up and down the tent because theres some other damn thing weve got to find .Just add it to the list of stuff you dont know .I dont know ?repeated Harry I dont know ?Plunk plunk plunk .The rain was falling harder and heavier it pattered on the leafstrewn bank all around them and into the river chattering through the dark .Dread doused Harrys jubilation Ron was saying exactly what he had suspected and feared him to be thinking .Its not like Im not having the time of my life here said Ron you know with my arm mangled and nothing to eat and freezing my backside off every night .I just hoped you know after wed been running round a few weeks wed have achieved something .Ron Hermione said but in such a quiet voice that Ron could pretend not to have heard it over the loud tattoo the rain was now beating on the tent .I thought you knew what youd signed up for said Harry .Yeah I thought I did too .So what part of it isnt living up to your expectations ?asked Harry .Anger was coming to his defense now .Did you think wed be staying in five star hotels ?Finding a Horcrux every other day ?Did you think youd be back to Mummy by Christmas ?We thought you knew what you were doing !shouted Ron standing up and his words pierced Harry like scalding knives .We thought Dumbledore had told you what to do we thought you had a real plan !Ron !said Hermione this time clearly audible over the rain thundering on the tent roof but again he ignored her .Well sorry to let you down said Harry his voice quite calm even though he felt hollow inadequate .Ive been straight with you from the start I told you everything Dumbledore told me .And in case you havent noticed weve found one Horcrux Yeah and were about as near getting rid of it as we are to finding the rest of them nowhere effing near in other words !Take off the locket Ron Hermione said her voice unusually high .Please take it off .You wouldnt be talking like this if you hadnt been wearing it all day .Yeah he would said Harry who did not want excuses made for Ron .Dyou think I havent noticed the two of you whispering behind my back ?Dyou think I didnt guess you were thinking this stuff ?Harry we werent Dont lie !Ron hurled at her .You said it too you said you were disappointed you said youd thought he had a bit more to go on than I didnt say it like that Harry I didnt !she cried .The rain was pounding the tent tears were pouring down Hermiones face and the excitement of a few minutes before had vanished as if it had never been a shortlived firework that had flared and died leaving everything dark wet and cold .The sword of Gryffindor was hidden they knew not where and they were three teenagers in a tent whose only achievement was not yet to be dead .So why are you still here ?Harry asked Ron .Search me said Ron .Go home then said Harry .Yeah maybe I will !shouted Ron and he took several steps toward Harry who did not back away .Didnt you hear what they said about my sister ?But you dont give a rats fart do you its only the Forbidden Forest Harry IveFacedWorse Potter doesnt care what happens to her in here well I do all right giant spiders and mental stuff I was only saying she was with the others they were with Hagrid Yeah I get it you dont care !And what about the rest of my family ‘the Weasleys dont need another kid injured did you hear that ?Yeah I Not bothered what it meant though ?Ron !said Hermione forcing her way between them .I dont think it means anything new has happened anything we dont know about think Ron Bills already scarred plenty of people must have seen that George has lost an ear by now and youre supposed to be on your deathbed with spattergroit Im sure thats all he meant Oh youre sure are you ?Right then well I wont bother myself about them .Its all right for you two isnt it with your parents safely out of the way My parents are dead .Harry bellowed .And mine could be going the same way !yelled Ron .Then GO !roared Harry .Go back to them pretend youve got over your spattergroit and Mummyll be able to feed you up and Ron made a sudden movement Harry reacted but before either wand was clear of its owners pocket Hermione had raised her own .Protego she cried and an invisible shield expanded between her and Harry on the one side and Ron on the other all of them were forced backward a few steps by the strength of the spell and Harry and Ron glared from either side of the transparent barrier as though they were seeing each other clearly for the first time .Harry felt a corrosive hatred toward Ron Something had broken between them .Leave the Horcrux Harry said .Ron wrenched the chain from over his head and cast the locket into a nearby chair .He turned to Hermione .What are you doing ?What do you mean ?Are you staying or what ?I .She looked anguished .Yes yes Im staying .Ron we said wed go with Harry we said wed help I get it .You choose him .Ron no please come back come back !She was impeded by her own Shield Charm by the time she had removed it he had already stormed into the night .Harry stood quite still and silent listening to her sobbing and calling Rons name amongst the trees .After a few minutes she returned her sopping hair plastered to her face .Hes gggone !Disapparated !She threw herself into a chair curled up and started to cry .Harry felt dazed .He stooped picked up the Horcrux and placed it around his own neck .He dragged blankets off Rons bunk and threw them over Hermione .Then he climbed onto his own bed and stared up at the dark canvas roof listening to the pounding of the rain .GODRICS HOLLOW When Harry woke the following day it was several seconds before he remembered what had happened .Then he hoped childishly that it had been a dream that Ron was still there and had never left .Yet by turning his head on his pillow he could see Rons deserted bunk .It was like a dead body in the way it seemed to draw his eyes .Harry jumped down from his own bed keeping his eyes averted from Rons .Hermione who was already busy in the kitchen did not wish Harry good morning but turned her face away quickly as he went by .Hes gone Harry told himself .Hes gone .He had to keep thinking it as he washed and dressed as though repetition would dull the shock of it .Hes gone and hes not coming back .And that was the simple truth of it Harry knew because their protective enchantments meant that it would be impossible once they vacated this spot for Ron to find them again .He and Hermione ate breakfast in silence .Hermione s eyes were puffy and red she looked as if she had not slept .They packed up their things Hermione dawdling .Harry knew why she wanted to spin out their time on the riverbank several times he saw her look up eagerly and he was sure she had deluded herself into thinking that she heard footsteps through the heavy rain but no redhaired figure appeared between the trees .Every time Harry imitated her looked around for he could not help hoping a little himself and saw nothing but rainswept woods another little parcel of fury exploded inside him .He could hear Ron saying We thought you knew what you were doing and he resumed packing with a hard knot in the pit of his stomach .The muddy river beside them was rising rapidly and would soon spill over onto their bank .They had lingered a good hour after they would usually have departed their campsite .Finally having entirely repacked the beaded bag three times Hermione seemed unable to find any more reasons to delay She and Harry grasped hands and Disapparated reappearing on a windswept heathercovered hillside .The instant they arrived Hermione dropped Harrys hand and walked away from him finally sitting down on a large rock her face on her knees shaking with what he knew were sobs .He watched her supposing that he ought to go and comfort her but something kept him rooted to the spot .Everything inside him felt cold and tight Again he saw the contemptuous expression on Rons face .Harry strode off through the heather walking in a large circle with the distraught Hermione at its center casting the spells she usually performed to ensure their protection .They did not discuss Ron at all over the next few days .Harry was determined never to mention his name again and Hermione seemed to know that it was no use forcing the issue although sometimes at night when she thought he was sleeping he would hear her crying .Meanwhile Harry had started bringing out the Marauders Map and examining it by wandlight .He was waiting for the moment when Rons labeled dot would reappear in the corridors of Hogwarts proving that he had returned to the comfortable castle protected by his status of pureblood .However Ron did not appear on the map and after a while Harry found himself taking it out simply to stare at Ginnys name in the girls dormitory wondering whether the intensity with which he gazed at it might break into her sleep that she would somehow know he was thinking about her hoping that she was all right .By day they devoted themselves to trying to determine the possible locations of Gryffindors sword but the more they talked about the places in which Dumbledore might have hidden it the more desperate and farfetched their speculation became .Cudgel his brains though he might Harry could not remember Dumbledore ever mentioning a place in which he might hide something .There were moments when he did not know whether he was angrier with Ron or with Dumbledore .We thought you knew what you were doing .We thought Dumbledore had told you what to do .We thought you had a real plan He could not hide it from himself Ron had been right .Dumbledore had left him with virtually nothing .They had discovered one Horcrux but they had no means of destroying it The others were as unattainable as they had ever been .Hopelessness threatened to engulf him .He was staggered now to think of his own presumption in accepting his friends offers to accompany him on this meandering pointless journey .He knew nothing he had no ideas and he was constantly painfully on the alert for any indication that Hermione too was about to tell him that she had had enough that she was leaving .They were spending many evenings in near silence and Hermione took to bringing out Phineas Nigelluss portrait and propping it up in a chair as though he might fill part of the gaping hole left by Rons departure .Despite his previous assertion that he would never visit them again Phineas Nigellus did not seem able to resist the chance to find out more about what Harry was up to and consented to reappear blindfolded every few days or so .Harry was even glad to see him because he was company albeit of a snide and taunting kind .They relished any news about what was happening at Hogwarts though Phineas Nigellus was not an ideal informer .He venerated Snape the first Slytherin headmaster since he himself had controlled the school and they had to be careful not to criticize or ask impertinent questions about Snape or Phineas Nigellus would instantly leave his painting .However he did let drop certain snippets .Snape seemed to be facing a constant low level of mutiny from a hard core of students .Ginny had been banned from going into Hogsmeade .Snape had reinstated Umbridges old decree forbidding gatherings of three or more students or any unofficial student societies .From all of these things Harry deduced that Ginny and probably Neville and Luna along with her had been doing their best to continue Dumbledores Army .This scant news made Harry want to see Ginny so badly it felt like a stomachache but it also made him think of Ron again and of Dumbledore and of Hogwarts itself which he missed nearly as much as his exgirlfriend .Indeed as Phineas Nigellus talked about Snape s crackdown Harry experienced a split second of madness when he imagined simply going back to school to join the destabilization of Snapes regime Being fed and having a soft bed and other people being in charge seemed the most wonderful prospect in the world at that moment .But then he remembered that he was Undesirable Number One that there was a tenthousandGalleon price on his head and that to walk into Hogwarts these days was just as dangerous as walking into the Ministry of Magic .Indeed Phineas Nigellus inadvertently emphasized this fact by slipping in leading questions about Harry and Hermiones whereabouts .Hermione shoved him back inside the beaded bag every time he did this and Phineas Nigellus invariably refused to reappear for several days after these unceremonious goodbyes .The weather grew colder and colder .They did not dare remain in any one area too long so rather than staying in the south of England where a hard ground frost was the worst of their worries they continued to meander up and down the country braving a mountainside where sleet pounded the tent a wide flat marsh where the tent was flooded with chill water and a tiny island in the middle of a Scottish loch where snow half buried the tent in the night .They had already spotted Christmas trees twinkling from several sitting room windows before there came an evening when Harry resolved to suggest again what seemed to him the only unexplored avenue left to them .They had just eaten an unusually good meal Hermione had been to a supermarket under the Invisibility Cloak scrupulously dropping the money into an open till as she left and Harry thought that she might be more persuadable than usual on a stomach full of spaghetti Bolognese and tinned pears .He had also had the foresight to suggest that they take a few hours break from wearing the Horcrux which was hanging over the end of the bunk beside him .Hermione ?Hmm ?She was curled up in one of the sagging armchairs with The Tales of Beedle the Bard .He could not imagine how much more she could get out of the book which was not after all very long but evidently she was still deciphering something in it because Spellmans Syllabary lay open on the arm of the chair .Harry cleared his throat .He felt exactly as he had done on the occasion several years previously when he had asked Professor McGonagall whether he could go into Hogsmeade despite the fact that he had not persuaded the Dursleys to sign his permission slip .Hermione Ive been thinking and Harry could you help me with something ?Apparently she had not been listening to him .She leaned forward and held out The Tales of Beedle the Bard .Look at that symbol she said pointing to the top of a page .Above what Harry assumed was the title of the story being unable to read runes he could not be sure there was a picture of what looked like a triangular eye its pupil crossed with a vertical line .I never took Ancient Runes Hermione .I know that but it isnt a rune and its not in the syllabary either .All along I thought it was a picture of an eye but I dont think it is !Its been inked in look somebodys drawn it there it isnt really part of the book .Think have you ever seen it before ?No .No wait a moment .Harry looked closer .Isnt it the same symbol Lunas dad was wearing round his neck ?Well thats what I thought too !Then its Grindelwalds mark .She stared at him openmouthed .What ?Krum told me .He recounted the story that Viktor Krum had told him at the wedding .Hermione looked astonished .Grindelwalds mark ?She looked from Harry to the weird symbol and back again .Ive never heard that Grindelwald had a mark .Theres no mention of it in anything Ive ever read about him .Well like I say Krum reckoned that symbol was carved on a wall at Durmstrang and Grindelwald put it there .She fell back into the old armchair frowning .Thats very odd .If its a symbol of Dark Magic whats it doing in a book of childrens stories ?Yeah it is weird said Harry .And youd think Scrimgeour would have recognized it .He was Minister he ought to have been expert on Dark stuff .I know .Perhaps he thought it was an eye just like I did .All the other stories have little pictures over the titles .She did not speak but continued to pore over the strange mark .Harry tried again .Hermione ?Hmm ?Ive been thinking .I I want to go to Godrics Hollow .She looked up at him but her eyes were unfocused and he was sure she was still thinking about the mysterious mark on the book .Yes she said .Yes Ive been wondering that too .I really think well have to .Did you hear me right ?he asked .Of course I did .You want to go to Godrics Hollow .I agree I think we should .I mean I cant think of anywhere else it could be either .Itll be dangerous but the more I think about it the more likely it seems its there .Er whats there ?asked Harry .At that she looked just as bewildered as he felt .Well the sword Harry !Dumbledore must have known youd want to go back there and I mean Godrics Hollow is Godric Gryffindors birthplace Really ?Gryffindor came from Godrics Hollow ?Harry did you ever even open A History of Magic ?Erm he said smiling for what felt like the first time in months The muscles in his face felt oddly stiff .I mightve opened it you know when I bought it .just the once .Well as the village is named after him Id have thought you might have made the connection said Hermione .She sounded much more like her old self than she had done of late Harry half expected her to announce that she was off to the library .Theres a bit about the village in A History of Magic wait .She opened the beaded bag and rummaged for a while finally extracting her copy of their old school textbook A History of Magic by Bathilda Bagshot which she thumbed through until finding the page she wanted . ‘Upon the signature of the International Statute of Secrecy in 1689 wizards went into hiding for good .It was natural perhaps that they formed their own small communities within a community .Many small villages and hamlets attracted several magical families who banded together for mutual support and protection .The villages of Tinworth in Cornwall Upper Flagley in Yorkshire and Ottery St .Catchpole on the south coast of England were notable homes to knots of Wizarding families who lived alongside tolerant and sometimes Confunded Muggles .Most celebrated of these halfmagical dwelling places is perhaps Godrics Hollow the West Country village where the great wizard Godric Gryffindor was born and where Bowman Wright Wizarding smith forged the first Golden Snitch .The graveyard is full of the names of ancient magical families and this accounts no doubt for the stories of hauntings that have dogged the little church beside it for many centuries .You and your parents arent mentioned Hermione said closing the book because Professor Bagshot doesnt cover anything later than the end of the nineteenth century .But you see ?Godrics Hollow Godric Gryffindor Gryffindors sword dont you think Dumbledore would have expected you to make the connection ?Oh yeah .Harry did not want to admit that he had not been thinking about the sword at all when he suggested they go to Godrics Hollow .For him the lure of the village lay in his parents graves the house where he had narrowly escaped death and in the person of Bathilda Bagshot .Remember what Muriel said ?he asked eventually .Who ?You know he hesitated He did not want to say Rons name .Ginnys greataunt .At the wedding .The one who said you had skinny ankles .Oh said Hermione .It was a sticky moment Harry knew that she had sensed Rons name in the offing .He rushed on She said Bathilda Bagshot still lives in Godrics Hollow .Bathilda Bagshot murmured Hermione running her index finger over Bathildas embossed name on the front cover of A History of Magic .Well I suppose She gasped so dramatically that Harrys insides turned over he drew his wand looking around at the entrance half expecting to see a hand forcing its way through the entrance flap but there was nothing there .What ?he said half angry half relieved .What did you do that for ?I thought youd seen a Death Eater unzipping the tent at least Harry what if Bathilda s got the sword ?What if Dumbledore entrusted it to her ?Harry considered this possibility .Bathilda would be an extremely old woman by now and according to Muriel she was gaga .Was it likely that Dumbledore would have hidden the sword of Gryffindor with her ?If so Harry felt that Dumbledore had left a great deal to chance Dumbledore had never revealed that he had replaced the sword with a fake nor had he so much as mentioned a friendship with Bathilda .Now however was not the moment to cast doubt on Hermiones theory not when she was so surprisingly willing to fall in with Harrys dearest wish .Yeah he might have done !So are we going to go to Godrics Hollow ?Yes but well have to think it through carefully Harry .She was sitting up now and Harry could tell that the prospect of having a plan again had lifted her mood as much as his .Well need to practice Disapparating together under the Invisibility Cloak for a start and perhaps Disillusionment Charms would be sensible too unless you think we should go the whole hog and use Polyjuice Potion ?In that case well need to collect hair from somebody .I actually think wed better do that Harry the thicker our disguises the better .Harry let her talk nodding and agreeing whenever there was a pause but his mind had left the conversation .For the first time since he had discovered that the sword in Gringotts was a fake he felt excited .He was about to go home about to return to the place where he had had a family .It was in Godrics Hollow that but for Voldemort he would have grown up and spent every school holiday .He could have invited friends to his house .He might even have had brothers and sisters .It would have been his mother who had made his seventeenth birthday cake .The life he had lost had hardly ever seemed so real to him as at this moment when he knew he was about to see the place where it had been taken from him .After Hermione had gone to bed that night Harry quietly extracted his rucksack from Hermione s beaded bag and from inside it the photograph album Hagrid had given him so long ago .For the first time in months he perused the old pictures of his parents smiling and waving up at him from the images which were all he had left of them now .Harry would gladly have set out for Godrics Hollow the following day but Hermione had other ideas .Convinced as she was that Voldemort would expect Harry to return to the scene of his parents deaths she was determined that they would set off only after they had ensured that they had the best disguises possible .It was therefore a full week later once they had surreptitiously obtained hairs from innocent Muggles who were Christmas shopping and had practiced Apparating and Disapparating while underneath the Invisibility Cloak together that Hermione agreed to make the journey .They were to Apparate to the village under cover of darkness so it was late afternoon when they finally swallowed Polyjuice Potion Harry transforming into a balding middleaged Muggle man Hermione into his small and rather mousy wife .The beaded bag containing all of their possessions apart from the Horcrux which Harry was wearing around his neck was tucked into an inside pocket of Hermione s buttonedup coat .Harry lowered the Invisibility Cloak over them then they turned into the suffocating darkness once again .Heart beating in his throat Harry opened his eyes .They were standing hand in hand in a snowy lane under a dark blue sky in which the nights first stars were already glimmering feebly .Cottages stood on either side of the narrow road Christmas decorations twinkling in their windows .A short way ahead of them a glow of golden streetlights indicated the center of the village .All this snow !Hermione whispered beneath the cloak .Why didnt we think of snow ?After all our precautions well leave prints !Well just have to get rid of them you go in front Ill do it Harry did not want to enter the village like a pantomime horse trying to keep themselves concealed while magically covering their traces .Lets take off the Cloak said Harry and when she looked frightened Oh come on we dont look like us and theres no one around .He stowed the Cloak under his jacket and they made their way forward unhampered the icy air stinging their faces as they passed more cottages Any one of them might have been the one in which James and Lily had once lived or where Bathilda lived now .Harry gazed at the front doors their snowburdened roofs and their front porches wondering whether he remembered any of them knowing deep inside that it was impossible that he had been little more than a year old when he had left this place forever .He was not even sure whether he would be able to see the cottage at all he did not know what happened when the subjects of a Fidelius Charm died .Then the little lane along which they were walking curved to the left and the heart of the village a small square was revealed to them .Strung all around with colored lights there was what looked like a war memorial in the middle partly obscured by a windblown Christmas tree .There were several shops a post office a pub and a little church whose stainedglass windows were glowing jewel bright across the square .The snow here had become impacted It was hard and slippery where people had trodden on it all day .Villagers were crisscrossing in front of them their figures briefly illuminated by streetlamps .They heard a snatch of laughter and pop music as the pub door opened and closed then they heard a carol start up inside the little church .Harry I think its Christmas Eve !said Hermione .Is it ?He had lost track of the date they had not seen a newspaper for weeks .Im sure it is said Hermione her eyes upon the church .They .theyll be in there wont they ?Your mum and dad ?I can see the graveyard behind it .Harry felt a thrill of something that was beyond excitement more like fear .Now that he was so near he wondered whether he wanted to see after all .Perhaps Hermione knew how he was feeling because she reached for his hand and took the lead for the first time pulling him forward .Halfway across the square however she stopped dead .Harry look !She was pointing at the war memorial .As they had passed it it had transformed .Instead of an obelisk covered in names there was a statue of three people a man with untidy hair and glasses a woman with long hair and a kind pretty face and a baby boy sitting in his mothers arms .Snow lay upon all their heads like fluffy white caps .Harry drew closer gazing up into his parents faces .He had never imagined that there would be a statue . .How strange it was to see himself represented in stone a happy baby without a scar on his forehead .Cmon said Harry when he had looked his fill and they turned again toward the church .As they crossed the road he glanced over his shoulder the statue had turned back into the war memorial .The singing grew louder as they approached the church .It made Harrys throat constrict it reminded him so forcefully of Hogwarts of Peeves bellowing rude versions of carols from inside suits of armor of the Great Halls twelve Christmas trees of Dumbledore wearing a bonnet he had won in a cracker of Ron in a handknitted sweater .There was a kissing gate at the entrance to the graveyard .Hermione pushed it open as quietly as possible and they edged through it .On either side of the slippery path to the church doors the snow lay deep and untouched .They moved off through the snow carving deep trenches behind them as they walked around the building keeping to the shadows beneath the brilliant windows .Behind the church row upon row of snowy tombstones protruded from a blanket of pale blue that was flecked with dazzling red gold and green wherever the reflections from the stained glass hit the snow .Keeping his hand closed tightly on the wand in his jacket pocket Harry moved toward the nearest grave .Look at this its an Abbott could be some longlost relation of Hannahs !Keep your voice down Hermione begged him .They waded deeper and deeper into the graveyard gouging dark tracks into the snow behind them stooping to peer at the words on old headstones every now and then squinting into the surrounding darkness to make absolutely sure that they were unaccompanied .Harry here !Hermione was two rows of tombstones away he had to wade back to her his heart positively banging in his chest .Is it ?No but look !She pointed to the dark stone .Harry stooped down and saw upon the frozen lichenspotted granite the words KENDRA DUMBLEDORE and a short way below her dates of birth and death AND HER DAUGHTER ARIANA .There was also a quotation Where your treasure is there will your heart be also .So Rita Skeeter and Muriel had got some of their facts right .The Dumbledore family had indeed lived here and part of it had died here .Seeing the grave was worse than hearing about it .Harry could not help thinking that he and Dumbledore both had deep roots in this graveyard and that Dumbledore ought to have told him so yet he had never thought to share the connection .They could have visited the place together for a moment Harry imagined coming here with Dumbledore of what a bond that would have been of how much it would have meant to him .But it seemed that to Dumbledore the fact that their families lay side by side in the same graveyard had been an unimportant coincidence irrelevant perhaps to the job he wanted Harry to do .Hermione was looking at Harry and he was glad that his face was hidden in shadow .He read the words on the tombstone again .Where your treasure is there will your heart be also .He did not understand what these words meant .Surely Dumbledore had chosen them as the eldest member of the family once his mother had died .Are you sure he never mentioned ?Hermione began .No said Harry curtly then lets keep looking and he turned away wishing he had not seen the stone He did not want his excited trepidation tainted with resentment .Here !cried Hermione again a few moments later from out of the darkness .Oh no sorry !I thought it said Potter .She was rubbing at a crumbling mossy stone gazing down at it a little frown on her face .Harry come back a moment .He did not want to be sidetracked again and only grudgingly made his way back through the snow toward her .What ?Look at this !The grave was extremely old weathered so that Harry could hardly make out the name .Hermione showed him the symbol beneath it .Harry thats the mark in the book !He peered at the place she indicated The stone was so worn that it was hard to make out what was engraved there though there did seem to be a triangular mark beneath the nearly illegible name .Yeah .it could be .Hermione lit her wand and pointed it at the name on the headstone .It says Ig Ignotus I think .Im going to keep looking for my parents all right ?Harry told her a slight edge to his voice and he set off again leaving her crouched beside the old grave .Every now and then he recognized a surname that like Abbott he had met at Hogwarts .Sometimes there were several generations of the same Wizarding family represented in the graveyard Harry could tell from the dates that it had either died out or the current members had moved away from Godrics Hollow .Deeper and deeper amongst the graves he went and every time he reached a new headstone he felt a little lurch of apprehension and anticipation .The darkness and the silence seemed to become all of a sudden much deeper .Harry looked around worried thinking of dementors then realized that the carols had finished that the chatter and flurry of churchgoers were fading away as they made their way back into the square .Somebody inside the church had just turned off the lights .Then Hermiones voice came out of the blackness for the third time sharp and clear from a few yards away .Harry theyre here .right here .And he knew by her tone that it was his mother and father this time He moved toward her feeling as if something heavy were pressing on his chest the same sensation he had had right after Dumbledore had died a grief that had actually weighed on his heart and lungs .The headstone was only two rows behind Kendra and Arianas .It was made of white marble just like Dumbledores tomb and this made it easy to read as it seemed to shine in the dark .Harry did not need to kneel or even approach very close to it to make out the words engraved upon it .JAMES POTTER BORN 27 MARCH 1960 LILY POTTER BORN 30 JANUARY 1960 DIED 31 OCTOBER 1981 The last enemy that shall be destroyed is death .Harry read the words slowly as though he would have only one chance to take in their meaning and he read the last of them aloud .The last enemy that shall be destroyed is death .A horrible thought came to him and with it a kind of panic .Isnt that a Death Eater idea ?Why is that there ?It doesnt mean defeating death in the way the Death Eaters mean it Harry said Hermione her voice gentle .It means .you know .living beyond death .Living after death .But they were not living thought Harry They were gone .The empty words could not disguise the fact that his parents moldering remains lay beneath snow and stone indifferent unknowing .And tears came before he could stop them boiling hot then instantly freezing on his face and what was the point in wiping them off or pretending ?He let them fall his lips pressed hard together looking down at the thick snow hiding from his eyes the place where the last of Lily and James lay bones now surely or dust not knowing or caring that their living son stood so near his heart still beating alive because of their sacrifice and close to wishing at this moment that he was sleeping under the snow with them .Hermione had taken his hand again and was gripping it tightly .He could not look at her but returned the pressure now taking deep sharp gulps of the night air trying to steady himself trying to regain control .He should have brought something to give them and he had not thought of it and every plant in the graveyard was leafless and frozen .But Hermione raised her wand moved it in a circle through the air and a wreath of Christmas roses blossomed before them .Harry caught it and laid it on his parents grave .As soon as he stood up he wanted to leave He did not think he could stand another moment there .He put his arm around Hermiones shoulders and she put hers around his waist and they turned in silence and walked away through the snow past Dumbledores mother and sister back toward the dark church and the outofsight kissing gate .BATHILDAS SECRET Harry stop .Whats wrong ?They had only just reached the grave of the unknown Abbott .Theres someone there .Someone watching us .I can tell .There over by the bushes .They stood quite still holding on to each other gazing at the dense black boundary of the graveyard .Harry could not see anything .Are you sure ?I saw something move I could have sworn I did .She broke from him to free her wand arm .We look like Muggles Harry pointed out .Muggles who ve just been laying flowers on your parents grave !Harry Im sure theres someone over there !Harry thought of A History of Magic the graveyard was supposed to be haunted what if ?But then he heard a rustle and saw a little eddy of dislodged snow in the bush to which Hermione had pointed .Ghosts could not move snow .Its a cat said Harry after a second or two or a bird .If it was a Death Eater wed be dead by now .But lets get out of here and we can put the Cloak back on .They glanced back repeatedly as they made their way out of the graveyard .Harry who did not feel as sanguine as he had pretended when reassuring Hermione was glad to reach the gate and the slippery pavement .They pulled the Invisibility Cloak back over themselves .The pub was fuller than before Many voices inside it were now singing the carol that they had heard as they approached the church .For a moment Harry considered suggesting they take refuge inside it but before he could say anything Hermione murmured Lets go this way and pulled him down the dark street leading out of the village in the opposite direction from which they had entered .Harry could make out the point where the cottages ended and the lane turned into open country again .They walked as quickly as they dared past more windows sparkling with multicolored lights the outlines of Christmas trees dark through the curtains .How are we going to find Bathildas house ?asked Hermione who was shivering a little and kept glancing back over her shoulder .Harry ?What do you think ?Harry ?She tugged at his arm but Harry was not paying attention .He was looking toward the dark mass that stood at the very end of this row of houses .Next moment he had sped up dragging Hermione along with him she slipped a little on the ice .Harry Look .Look at it Hermione .I dont .oh !He could see it the Fidelius Charm must have died with James and Lily .The hedge had grown wild in the sixteen years since Hagrid had taken Harry from the rubble that lay scattered amongst the waisthigh grass .Most of the cottage was still standing though entirely covered in dark ivy and snow but the right side of the top floor had been blown apart that Harry was sure was where the curse had backfired .He and Hermione stood at the gate gazing up at the wreck of what must once have been a cottage just like those that flanked it .I wonder why nobodys ever rebuilt it ?whispered Hermione .Maybe you cant rebuild it ?Harry replied .Maybe its like the injuries from Dark Magic and you cant repair the damage ?He slipped a hand from beneath the Cloak and grasped the snowy and thickly rusted gate not wishing to open it but simply to hold some part of the house .Youre not going to go inside ?It looks unsafe it might oh Harry look !His touch on the gate seemed to have done it .A sign had risen out of the ground in front of them up through the tangles of nettles and weeds like some bizarre fastgrowing flower and in golden letters upon the wood it said On this spot on the night of 31 October 1 981 Lily and James Potter lost their lives .Their son Harry remains the only wizard ever to have survived the Killing Curse .This house invisible to Muggles has been left in its ruined state as a monument to the Potters and as a reminder of the violence that tore apart their family .And all around these neatly lettered words scribbles had been added by other witches and wizards who had come to see the place where the Boy Who Lived had escaped .Some had merely signed their names in Everlasting Ink others had carved their initials into the wood still others had left messages .The most recent of these shining brightly over sixteen years worth of magical graffiti all said similar things .Good luck Harry wherever you are .If you read this Harry were all behind you !Long live Harry Potter .They shouldnt have written on the sign !said Hermione indignant .But Harry beamed at her .Its brilliant .Im glad they did .I .He broke off .A heavily muffled figure was hobbling up the lane toward them silhouetted by the bright lights in the distant square .Harry thought though it was hard to judge that the figure was a woman .She was moving slowly possibly frightened of slipping on the snowy ground .Her stoop her stoutness her shuffling gait all gave an impression of extreme age .They watched in silence as she drew nearer .Harry was waiting to see whether she would turn into any of the cottages she was passing but he knew instinctively that she would not .At last she came to a halt a few yards from them and simply stood there in the middle of the frozen road facing them .He did not need Hermiones pinch to his arm .There was next to no chance that this woman was a Muggle She was standing there gazing at a house that ought to have been completely invisible to her if she was not a witch .Even assuming that she was a witch however it was odd behavior to come out on a night this cold simply to look at an old ruin .By all the rules of normal magic meanwhile she ought not to be able to see Hermione and him at all .Nevertheless Harry had the strangest feeling that she knew that they were there and also who they were .Just as he had reached this uneasy conclusion she raised a gloved hand and beckoned .Hermione moved closer to him under the Cloak her arm pressed against his .How does she know ?He shook his head .The woman beckoned again more vigorously .Harry could think of many reasons not to obey the summons and yet his suspicions about her identity were growing stronger every moment that they stood facing each other in the deserted street .Was it possible that she had been waiting for them all these long months ?That Dumbledore had told her to wait and that Harry would come in the end ?Was it not likely that it was she who had moved in the shadows in the graveyard and had followed them to this spot ?Even her ability to sense them suggested some Dumbledoreish power that he had never encountered before .Finally Harry spoke causing Hermione to gasp and jump .Are you Bathilda ?The muffled figure nodded and beckoned again .Beneath the Cloak Harry and Hermione looked at each other .Harry raised his eyebrows Hermione gave a tiny nervous nod .They stepped toward the woman and at once she turned and hobbled off back the way they had come .Leading them past several houses she turned in at a gate .They followed her up the front path through a garden nearly as overgrown as the one they had just left .She fumbled for a moment with a key at the front door then opened it and stepped back to let them pass .She smelled bad or perhaps it was her house Harry wrinkled his nose as they sidled past her and pulled off the Cloak .Now that he was beside her he realized how tiny she was bowed down with age she came barely level with his chest .She closed the door behind them her knuckles blue and mottled against the peeling paint then turned and peered into Harrys face .Her eyes were thick with cataracts and sunken into folds of transparent skin and her whole face was dotted with broken veins and liver spots .He wondered whether she could make him out at all even if she could it was the balding Muggle whose identity he had stolen that she would see .The odor of old age of dust of unwashed clothes and stale food intensified as she unwound a motheaten black shawl revealing a head of scant white hair through which the scalp showed clearly .Bathilda ?Harry repeated .She nodded again .Harry became aware of the locket against his skin the thing inside it that sometimes ticked or beat had woken he could feel it pulsing through the cold gold .Did it know could it sense that the thing that would destroy it was near ?Bathilda shuffled past them pushing Hermione aside as though she had not seen her and vanished into what seemed to be a sitting room .Harry Im not sure about this breathed Hermione .Look at the size of her I think we could overpower her if we had to said Harry .Listen I should have told you I knew she wasnt all there .Muriel called her ‘gaga .Come !called Bathilda from the next room .Hermione jumped and clutched Harrys arm .Its okay said Harry reassuringly and he led the way into the sitting room .Bathilda was tottering around the place lighting candles but it was still very dark not to mention extremely dirty .Thick dust crunched beneath their feet and Harrys nose detected underneath the dank and mildewed smell something worse like meat gone bad .He wondered when was the last time anyone had been inside Bathildas house to check whether she was coping .She seemed to have forgotten that she could do magic too for she lit the candles clumsily by hand her trailing lace cuff in constant danger of catching fire .Let me do that offered Harry and he took the matches from her .She stood watching him as he finished lighting the candle stubs that stood on saucers around the room perched precariously on stacks of books and on side tables crammed with cracked and moldy cups .The last surface on which Harry spotted a candle was a bowfronted chest of drawers on which there stood a large number of photographs .When the flame danced into life its reflection wavered on their dusty glass and silver .He saw a few tiny movements from the pictures .As Bathilda fumbled with logs for the fire he muttered Tergeo The dust vanished from the photographs and he saw at once that half a dozen were missing from the largest and most ornate frames .He wondered whether Bathilda or somebody else had removed them .Then the sight of a photograph near the back of the collection caught his eye and he snatched it up .It was the goldenhaired merryfaced thief the young man who had perched on Gregorovitchs windowsill smiling lazily up at Harry out of the silver frame .And it came to Harry instantly where he had seen the boy before in The Life and Lies of Albus Dumbledore arm in arm with the teenage Dumbledore and that must be where all the missing photographs were in Ritas book .Mrs Miss Bagshot ?he said and his voice shook slightly .Who is this ?Bathilda was standing in the middle of the room watching Hermione light the fire for her .Miss Bagshot ?Harry repeated and he advanced with the picture in his hands as the flames burst into life in the fireplace .Bathilda looked up at his voice and the Horcrux beat faster upon his chest .Who is this person ?Harry asked her pushing the picture forward .She peered at it solemnly then up at Harry .Do you know who this is ?he repeated in a much slower and louder voice than usual .This man ?Do you know him ?Whats he called ?Bathilda merely looked vague .Harry felt an awful frustration .How had Rita Skeeter unlocked Bathildas memories ?Who is this man ?he repeated loudly .Harry what are you doing ?asked Hermione .This picture Hermione its the thief the thief who stole from Gregorovitch !Please !he said to Bathilda .Who is this ?But she only stared at him .Why did you ask us to come with you Mrs Miss Bagshot ?asked Hermione raising her own voice .Was there something you wanted to tell us ?Giving no sign that she had heard Hermione Bathilda now shuffled a few steps closer to Harry .With a little jerk of her head she looked back into the hall .You want us to leave ?he asked .She repeated the gesture this time pointing firstly at him then at herself then at the ceiling .Oh right .Hermione I think she wants me to go upstairs with her .All right said Hermione lets go .But when Hermione moved Bathilda shook her head with surprising vigor once more pointing first at Harry then to herself .She wants me to go with her alone .Why ?asked Hermione and her voice rang out sharp and clear in the candlelit room the old lady shook her head a little at the loud noise .Maybe Dumbledore told her to give the sword to me and only to me ?Do you really think she knows who you are ?Yes said Harry looking down into the milky eyes fixed upon his own I think she does .Well okay then but be quick Harry .Lead the way Harry told Bathilda .She seemed to understand because she shuffled around him toward the door .Harry glanced back at Hermione with a reassuring smile but he was not sure she had seen it she stood hugging herself in the midst of the candlelit squalor looking toward the bookcase .As Harry walked out of the room unseen by both Hermione and Bathilda he slipped the silver framed photograph of the unknown thief inside his jacket .The stairs were steep and narrow Harry was half tempted to place his hands on stout Bathildas backside to ensure that she did not topple over backward on top of him which seemed only too likely .Slowly wheezing a little she climbed to the upper landing turned immediately right and led him into a lowceilinged bedroom .It was pitchblack and smelled horrible Harry had just made out a chamber pot protruding from under the bed before Bathilda closed the door and even that was swallowed by the darkness .Lumos said Harry and his wand ignited .He gave a start Bathilda had moved close to him in those few seconds of darkness and he had not heard her approach .You are Potter ?she whispered .Yes I am .She nodded slowly solemnly .Harry felt the Horcrux beating fast faster than his own heart It was an unpleasant agitating sensation .Have you got anything for me ?Harry asked but she seemed distracted by his lit wandtip .Have you got anything for me ?he repeated .Then she closed her eyes and several things happened at once Harrys scar prickled painfully the Horcrux twitched so that the front of his sweater actually moved the dark fetid room dissolved momentarily .He felt a leap of joy and spoke in a high cold voice Hold him .Harry swayed where he stood The dark foulsmelling room seemed to close around him again he did not know what had just happened .Have you got anything for me ?he asked for a third time much louder .Over here she whispered pointing to the corner .Harry raised his wand and saw the outline of a cluttered dressing table beneath the curtained window .This time she did not lead him .Harry edged between her and the unmade bed his wand raised .He did not want to look away from her .What is it ?he asked as he reached the dressing table which was heaped high with what looked and smelled like dirty laundry .There she said pointing at the shapeless mass .And in the instant that he looked away his eyes raking the tangled mess for a sword hilt a ruby she moved weirdly He saw it out of the corner of his eye panic made him turn and horror paralyzed him as he saw the old body collapsing and the great snake pouring from the place where her neck had been .The snake struck as he raised his wand The force of the bite to his forearm sent the wand spinning up toward the ceiling its light swung dizzyingly around the room and was extinguished Then a powerful blow from the tail to his midriff knocked the breath out of him He fell backward onto the dressing table into the mound of filthy clothing He rolled sideways narrowly avoiding the snakes tail which thrashed down upon the table where he had been a second earlier Fragments of the glass surface rained upon him as he hit the floor .From below he heard Hermione call Harry ?He could not get enough breath into his lungs to call back Then a heavy smooth mass smashed him to the floor and he felt it slide over him powerful muscular No !he gasped pinned to the floor .Yes whispered the voice .Yesss .hold you .hold you .Accio .Accio Wand .But nothing happened and he needed his hands to try to force the snake from him as it coiled itself around his torso squeezing the air from him pressing the Horcrux hard into his chest a circle of ice that throbbed with life inches from his own frantic heart and his brain was flooding with cold white light all thought obliterated his own breath drowned distant footsteps everything going .A metal heart was banging outside his chest and now he was flying flying with triumph in his heart without need of broomstick or thestral .He was abruptly awake in the soursmelling darkness Nagini had released him .He scrambled up and saw the snake outlined against the landing light It struck and Hermione dived aside with a shriek her deflected curse hit the curtained window which shattered .Frozen air filled the room as Harry ducked to avoid another shower of broken glass and his foot slipped on a pencillike something his wand He bent and snatched it up but now the room was full of the snake its tail thrashing Hermione was nowhere to be seen and for a moment Harry thought the worst but then there was a loud bang and a flash of red light and the snake flew into the air smacking Harry hard in the face as it went coil after heavy coil rising up to the ceiling .Harry raised his wand but as he did so his scar seared more painfully more powerfully than it had done in years .Hes coming !Hermione hes comingl As he yelled the snake fell hissing wildly .Everything was chaos It smashed shelves from the wall and splintered china flew everywhere as Harry jumped over the bed and seized the dark shape he knew to be Hermione She shrieked with pain as he pulled her back across the bed The snake reared again but Harry knew that worse than the snake was coming was perhaps already at the gate his head was going to split open with the pain from his scar The snake lunged as he took a running leap dragging Hermione with him as it struck Hermione screamed ConfringoV and her spell flew around the room exploding the wardrobe mirror and ricocheting back at them bouncing from floor to ceiling Harry felt the heat of it sear the back of his hand .Glass cut his cheek as pulling Hermione with him he leapt from bed to broken dressing table and then straight out of the smashed window into nothingness her scream reverberating through the night as they twisted in midair .And then his scar burst open and he was Voldemort and he was running across the fetid bedroom his long white hands clutching at the windowsill as he glimpsed the bald man and the little woman twist and vanish and he screamed with rage a scream that mingled with the girls that echoed across the dark gardens over the church bells ringing in Christmas Day .And his scream was Harrys scream his pain was Harrys pain .that it could happen here where it had happened before .here within sight of that house where he had come so close to knowing what it was to die .to die .The pain was so terrible .ripped from his body .But if he had no body why did his head hurt so badly if he was dead how could he feel so unbearably didnt pain cease with death didnt it go .The night wet and windy two children dressed as pumpkins waddling across the square and the shop windows covered in paper spiders all the tawdry Muggle trappings of a world in which they did not believe .And he was gliding along that sense of purpose and power and rightness in him that he always knew on these occasions .Not anger .that was for weaker souls than he .but triumph yes .He had waited for this he had hoped for it .Nice costume mister !He saw the small boys smile falter as he ran near enough to see beneath the hood of the cloak saw the fear cloud his painted face Then the child turned and ran away .Beneath the robe he fingered the handle of his wand .One simple movement and the child would never reach his mother .but unnecessary quite unnecessary .And along a new and darker street he moved and now his destination was in sight at last the Fidelius Charm broken though they did not know it yet .And he made less noise than the dead leaves slithering along the pavement as he drew level with the dark hedge and stared over it .They had not drawn the curtains he saw them quite clearly in their little sitting room the tall blackhaired man in his glasses making puffs of colored smoke erupt from his wand for the amusement of the small blackhaired boy in his blue pajamas .The child was laughing and trying to catch the smoke to grab it in his small fist .A door opened and the mother entered saying words he could not hear her long darkred hair falling over her face .Now the father scooped up the son and handed him to the mother .He threw his wand down upon the sofa and stretched yawning .The gate creaked a little as he pushed it open but James Potter did not hear .His white hand pulled out the wand beneath his cloak and pointed it at the door which burst open .He was over the threshold as James came sprinting into the hall .It was easy too easy he had not even picked up his wand .Lily take Harry and go !Its him !Go !Run !Ill hold him off !Hold him off without a wand in his hand ! .He laughed before casting the curse .Avada Kedavra !The green light filled the cramped hallway it lit the pram pushed against the wall it made the banisters glare like lightning rods and James Potter fell like a marionette whose strings were cut .He could hear her screaming from the upper floor trapped but as long as she was sensible she at least had nothing to fear .He climbed the steps listening with faint amusement to her attempts to barricade herself in .She had no wand upon her either .How stupid they were and how trusting thinking that their safety lay in friends that weapons could be discarded even for moments .He forced the door open cast aside the chair and boxes hastily piled against it with one lazy wave of his wand .and there she stood the child in her arms .At the sight of him she dropped her son into the crib behind her and threw her arms wide as if this would help as if in shielding him from sight she hoped to be chosen instead .Not Harry not Harry please not Harry !Stand aside you silly girl .stand aside now .Not Harry please no take me kill me instead This is my last warning Not Harry !Please .have mercy .have mercy .Not Harry !Not Harry !Please Ill do anything Stand aside .Stand aside girl !He could have forced her away from the crib but it seemed more prudent to finish them all .The green light flashed around the room and she dropped like her husband .The child had not cried all this time He could stand clutching the bars of his crib and he looked up into the intruders face with a kind of bright interest perhaps thinking that it was his father who hid beneath the cloak making more pretty lights and his mother would pop up any moment laughing He pointed the wand very carefully into the boys face He wanted to see it happen the destruction of this one inexplicable danger .The child began to cry It had seen that he was not James .He did not like it crying he had never been able to stomach the small ones whining in the orphanage Avada Kedavra !And then he broke He was nothing nothing but pain and terror and he must hide himself not here in the rubble of the ruined house where the child was trapped and screaming but far away .far away .No he moaned .The snake rustled on the filthy cluttered floor and he had killed the boy and yet he was the boy .No .And now he stood at the broken window of Bathildas house immersed in memories of his greatest loss and at his feet the great snake slithered over broken china and glass .He looked down and saw something .something incredible .No .Harry its all right youre all right !He stooped down and picked up the smashed photograph .There he was the unknown thief the thief he was seeking .No .I dropped it .I dropped it .Harry its okay wake up wake up !He was Harry .Harry not Voldemort .and the thing that was rustling was not a snake .He opened his eyes .Harry Hermione whispered .Do you feel all all right ?Yes he lied .He was in the tent lying on one of the lower bunks beneath a heap of blankets .He could tell that it was almost dawn by the stillness and the quality of the cold flat light beyond the canvas ceiling .He was drenched in sweat he could feel it on the sheets and blankets .We got away .Yes said Hermione .I had to use a Hover Charm to get you into your bunk I couldnt lift you .Youve been .Well you havent been quite .There were purple shadows under her brown eyes and he noticed a small sponge in her hand She had been wiping his face .Youve been ill she finished .Quite ill .How long ago did we leave ?Hours ago .Its nearly morning .And Ive been .what unconscious ?Not exactly said Hermione uncomfortably .Youve been shouting and moaning and .things she added in a tone that made Harry feel uneasy .What had he done ?Screamed curses like Voldemort cried like the baby in the crib ?I couldnt get the Horcrux off you Hermione said and he knew she wanted to change the subject .It was stuck stuck to your chest .Youve got a mark Im sorry I had to use a Severing Charm to get it away .The snake bit you too but Ive cleaned the wound and put some dittany on it .He pulled the sweaty Tshirt he was wearing away from himself and looked down .There was a scarlet oval over his heart where the locket had burned him .He could also see the halfhealed puncture marks to his forearm .Where Ve you put the Horcrux ?In my bag .I think we should keep it off for a while .He lay back on his pillows and looked into her pinched gray face .We shouldnt have gone to Godrics Hollow .Its my fault its all my fault Hermione Im sorry .Its not your fault .I wanted to go too I really thought Dumbledore might have left the sword there for you .Yeah well .we got that wrong didnt we ?What happened Harry ?What happened when she took you upstairs ?Was the snake hiding somewhere ?Did it just come out and kill her and attack you ?No he said .She was the snake .or the snake was her .all along .Wwhat ?He closed his eyes .He could still smell Bathildas house on him It made the whole thing horribly vivid .Bathilda mustve been dead a while .The snake was .was inside her .YouKnowWho put it there in Godrics Hollow to wait .You were right .He knew Id go back .The snake was inside her ?He opened his eyes again Hermione looked revolted nauseated .Lupin said there would be magic wed never imagined Harry said .She didnt want to talk in front of you because it was Parseltongue all Parseltongue and I didnt realize but of course I could understand her .Once we were up in the room the snake sent a message to YouKnowWho I heard it happen inside my head I felt him get excited he said to keep me there .and then .He remembered the snake coming our of Bathildas neck Hermione did not need to know the details . .she changed changed into the snake and attacked .He looked down at the puncture marks .It wasnt supposed to kill me just keep me there till YouKnowWho came .If he had only managed to kill the snake it would have been worth it all of it .Sick at heart he sat up and threw back the covers .Harry no Im sure you ought to rest !Youre the one who needs sleep .No offense but you look terrible .Im fine .Ill keep watch for a while .Wheres my wand ?She did not answer she merely looked at him .Wheres my wand Hermione ?She was biting her lip and tears swam in her eyes .Harry .Wheres my wand ?She reached down beside the bed and held it out to him .The holly and phoenix wand was nearly severed in two .One fragile strand of phoenix feather kept both pieces hanging together .The wood had splintered apart completely .Harry took it into his hands as though it was a living thing that had suffered a terrible injury .He could not think properly Everything was a blur of panic and fear .Then he held out the wand to Hermione .Mend it .Please .Harry I dont think when its broken like this Please Hermione try !RReparo .The dangling half of the wand resealed itself .Harry held it up .Lumosl The wand sparked feebly then went out .Harry pointed it at Hermione .Expelliarmusl Hermione s wand gave a little jerk but did not leave her hand .The feeble attempt at magic was too much for Harrys wand which split into two again .He stared at it aghast unable to take in what he was seeing .the wand that had survived so much .Harry Hermione whispered so quietly he could hardly hear her .Im so so sorry .I think it was me .As we were leaving you know the snake was coming for us and so I cast a Blasting Curse and it rebounded everywhere and it must have must have hit It was an accident said Harry mechanically .He felt empty stunned .Well well find a way to repair it .Harry I dont think were going to be able to said Hermione the tears trickling down her face .Remember .remember Ron ?When he broke his wand crashing the car ?It was never the same again he had to get a new one .Harry thought of Ollivander kidnapped and held hostage by Voldemort of Gregorovitch who was dead .How was he supposed to find himself a new wand ?Well he said in a falsely matteroffact voice well Ill just borrow yours for now then .While I keep watch .Her face glazed with tears Hermione handed over her wand and he left her sitting beside his bed desiring nothing more than to get away from her .THE LIFE AND LIES OF ALBUS DUMBLEDORE The sun was coming up The pure colorless vastness of the sky stretched over him indifferent to him and his suffering .Harry sat down in the tent entrance and took a deep breath of clean air .Simply to be alive to watch the sun rise over the sparkling snowy hillside ought to have been the greatest treasure on earth yet he could not appreciate it His senses had been spiked by the calamity of losing his wand .He looked out over a valley blanketed in snow distant church bells chiming through the glittering silence .Without realizing it he was digging his fingers into his arms as if he were trying to resist physical pain .He had spilled his own blood more times than he could count he had lost all the bones in his right arm once this journey had already given him scars to his chest and forearm to join those on his hand and forehead but never until this moment had he felt himself to be fatally weakened vulnerable and naked as though the best part of his magical power had been torn from him .He knew exactly what Hermione would say if he expressed any of this The wand is only as good as the wizard .But she was wrong his case was different .She had not felt the wand spin like the needle of a compass and shoot golden flames at his enemy .He had lost the protection of the twin cores and only now that it was gone did he realize how much he had been counting upon it .He pulled the pieces of the broken wand out of his pocket and without looking at them tucked them away in Hagrids pouch around his neck .The pouch was now too full of broken and useless objects to take any more .Harrys hand brushed the old Snitch through the mokeskin and for a moment he had to fight the temptation to pull it out and throw it away .Impenetrable unhelpful useless like everything else Dumbledore had left behind And his fury at Dumbledore broke over him now like lava scorching him inside wiping out every other feeling .Out of sheer desperation they had talked themselves into believing that Godrics Hollow held answers convinced themselves that they were supposed to go back that it was all part of some secret path laid out for them by Dumbledore but there was no map no plan .Dumbledore had left them to grope in the darkness to wrestle with unknown and undreamedof terrors alone and unaided Nothing was explained nothing was given freely they had no sword and now Harry had no wand .And he had dropped the photograph of the thief and it would surely be easy now for Voldemort to find out who he was .Voldemort had all the information now .Harry ?Hermione looked frightened that he might curse her with her own wand .Her face streaked with tears she crouched down beside him two cups of tea trembling in her hands and something bulky under her arm .Thanks he said taking one of the cups .Do you mind if I talk to you ?No he said because he did not want to hurt her feelings .Harry you wanted to know who that man in the picture was .Well .Ive got the book .Timidly she pushed it onto his lap a pristine copy of The Life and Lies of Albus Dumbledore .Where how ?It was in Bathildas sitting room just lying there .This note was sticking out of the top of it .Hermione read the few lines of spiky acidgreen writing aloud . ‘Dear Batty Thanks for your help .Heres a copy of the book hope you like it .You said everything even if you dont remember it .Rita .I think it must have arrived while the real Bathilda was alive but perhaps she wasnt in any fit state to read it ?No she probably wasnt .Harry looked down upon Dumbledore s face and experienced a surge of savage pleasure Now he would know all the things that Dumbledore had never thought it worth telling him whether Dumbledore wanted him to or not .Youre still really angry at me arent you ?said Hermione he looked up to see fresh tears leaking out of her eyes and knew that his anger must have shown in his face .No he said quietly .No Hermione I know it was an accident .You were trying to get us out of there alive and you were incredible .Id be dead if you hadnt been there to help me .He tried to return her watery smile then turned his attention to the book .Its spine was stiff it had clearly never been opened before .He riffled through the pages looking for photographs .He came across the one he sought almost at once the young Dumbledore and his handsome companion roaring with laughter at some longforgotten joke .Harry dropped his eyes to the caption .Albus Dumbledore shortly after his mothers death with his friend Gellert Grindelwald .Harry gaped at the last word for several long moments .Grindelwald .His friend Grindelwald .He looked sideways at Hermione who was still contemplating the name as though she could not believe her eyes .Slowly she looked up at Harry .Grindelwald ?Ignoring the remainder of the photographs Harry searched the pages around them for a recurrence of that fatal name .He soon discovered it and read greedily but became lost It was necessary to go further back to make sense of it all and eventually he found himself at the start of a chapter entitled The Greater Good .Together he and Hermione started to read Now approaching his eighteenth birthday Dumbledore left Hogwarts in a blaze of glory Head Boy Prefect Winner of the Barnabus Finkley Prize for Exceptional SpellCasting British Youth Representative to the Wizengamot Gold Medal Winner for GroundBreaking Contribution to the International Alchemical Conference in Cairo .Dumbledore intended next to take a Grand Tour with Elphias Dogbreath Doge the dimwitted but devoted sidekick he had picked up at school .The two young men were staying at the Leaky Cauldron in London preparing to depart for Greece the following morning when an owl arrived bearing news of Dumbledore s mothers death .Dogbreath Doge who refused to be interviewed for this book has given the public his own sentimental version of what happened next .He represents Kendras death as a tragic blow and Dumbledores decision to give up his expedition as an act of noble selfsacrifice .Certainly Dumbledore returned to Godrics Hollow at once supposedly to care for his younger brother and sister .But how much care did he actually give them ?He were a head case that Aberforth says Enid Smeek whose family lived on the outskirts of Godrics Hollow at that time .Ran wild .Course with his mum and dad gone youd have felt sorry for him only he kept chucking goat dung at my head .I dont think Albus was fussed about him I never saw them together anyway .So what was Albus doing if not comforting his wild young brother ?The answer it seems is ensuring the continued imprisonment of his sister .For though her first jailer had died there was no change in the pitiful condition of Ariana Dumbledore .Her very existence continued to be known only to those few outsiders who like Dogbreath Doge could be counted upon to believe in the story of her ill health .Another such easily satisfied friend of the family was Bathilda Bagshot the celebrated magical historian who has lived in Godrics Hollow for many years .Kendra of course had rebuffed Bathilda when she first attempted to welcome the family to the village .Several years later however the author sent an owl to Albus at Hog warts having been favorably impressed by his paper on transspecies transformation in Transfiguration Today .This initial contact led to acquaintance with the entire Dumbledore family .At the time of Kendras death Bathilda was the only person in Godrics Hollow who was on speaking terms with Dumbledores mother .Unfortunately the brilliance that Bathilda exhibited earlier in her life has now dimmed .The fires lit but the cauldrons empty as Ivor Dillonsby put it to me or in Enid Smeeks slightly earthier phrase Shes nutty as squirrel poo .Nevertheless a combination of triedandtested reporting techniques enabled me to extract enough nuggets of hard fact to string together the whole scandalous story .Like the rest of the Wizarding world Bathilda puts Kendras premature death down to a backfiring charm a story repeated by Albus and Aberforth in later years .Bathilda also parrots the family line on Ariana calling her frail and delicate .On one subject however Bathilda is well worth the effort I put into procuring Veritaserum for she and she alone knows the full story of the bestkept secret of Albus Dumbledores life .Now revealed for the first time it calls into question everything that his admirers believed of Dumbledore his supposed hatred of the Dark Arts his opposition to the oppression of Muggles even his devotion to his own family .The very same summer that Dumbledore went home to Godrics Hollow now an orphan and head of the family Bathilda Bagshot agreed to accept into her home her greatnephew Gellert Grindelwald .The name of Grindelwald is justly famous In a list of Most Dangerous Dark Wizards of All Time he would miss out on the top spot only because YouKnowWho arrived a generation later to steal his crown .As Grindelwald never extended his campaign of terror to Britain however the details of his rise to power are not widely known here .Educated at Durmstrang a school famous even then for its unfortunate tolerance of the Dark Arts Grindelwald showed himself quite as precociously brilliant as Dumbledore .Rather than channel his abilities into the attainment of awards and prizes however Gellert Grindelwald devoted himself to other pursuits .At sixteen years old even Durmstrang felt it could no longer turn a blind eye to the twisted experiments of Gellert Grindelwald and he was expelled .Hitherto all that has been known of Grindelwald s next movements is that he traveled abroad for some months .It can now be revealed that Grindelwald chose to visit his greataunt in Godrics Hollow and that there intensely shocking though it will be for many to hear it he struck up a close friendship with none other than Albus Dumbledore .He seemed a charming boy to me babbles Bathilda whatever he became later .Naturally I introduced him to poor Albus who was missing the company of lads his own age .The boys took to each other at once .They certainly did .Bathilda shows me a letter kept by her that Albus Dumbledore sent Gellert Grindelwald in the dead of night .Yes even after theyd spent all day in discussion both such brilliant young boys they got on like a cauldron on fire Id sometimes hear an owl tapping at Gellerts bedroom window delivering a letter from Albus !An idea would have struck him and he had to let Gellert know immediately !And what ideas they were .Profoundly shocking though Albus Dumbledore s fans will find it here are the thoughts of their seventeenyearold hero as relayed to his new best friend .A copy of the original letter may be seen on Gellert Your point about Wizard dominance being FOR THE MUGGLES OWN GOOD this I think is the crucial point .Yes we have been given power and yes that power gives us the right to rule but it also gives us responsibilities over the ruled .We must stress this point it will be the foundation stone upon which we build .Where we are opposed as we surely will be this must be the basis of all our counterarguments .We seize control FOR THE GREATER GOOD .And from this it follows that where we meet resistance we must use only the force that is necessary and no more .This was your mistake at Durmstrang !But I do not complain because if you had not been expelled we would never have met .Albus Astonished and appalled though his many admirers will be this letter constitutes proof that Albus Dumbledore once dreamed of overthrowing the Statute of Secrecy and establishing Wizard rule over Muggles .What a blow for those who have always portrayed Dumbledore as the Muggleboms greatest champion !How hollow those speeches promoting Muggle rights seem in the light of this damning new evidence !How despicable does Albus Dumbledore appear busy plotting his rise to power when he should have been mourning his mother and caring for his sister !No doubt those determined to keep Dumbledore on his crumbling pedestal will bleat that he did not after all put his plans into action that he must have suffered a change of heart that he came to his senses .However the truth seems altogether more shocking .Barely two months into their great new friendship Dumbledore and Grindelwald parted never to see each other again until they met for their legendary duel for more see chapter 22 .What caused this abrupt rupture ?Had Dumbledore come to his senses ?Had he told Grindelwald he wanted no more part in his plans ?Alas no .It was poor little Ariana dying I think that did it says Bathilda .It came as an awful shock .Gellert was there in the house when it happened and he came back to my house all of a dither told me he wanted to go home the next day .Terribly distressed you know .So I arranged a Portkey and that was the last I saw of him .Albus was beside himself at Arianas death .It was so dreadful for those two brothers .They had lost everybody except each other .No wonder tempers ran a little high .Aberforth blamed Albus you know as people will under these dreadful circumstances .But Aberforth always talked a little madly poor boy .All the same breaking Albuss nose at the funeral was not decent .It would have destroyed Kendra to see her sons fighting like that across her daughters body .A shame Gellert could not have stayed for the funeral . .He would have been a comfort to Albus at least .This dreadful coffin side brawl known only to those few who attended Ariana Dumbledores funeral raises several questions .Why exactly did Aberforth Dumbledore blame Albus for his sisters death ?Was it as Batty pretends a mere effusion of grief ?Or could there have been some more concrete reason for his fury ?Grindelwald expelled from Durmstrang for nearfatal attacks upon fellow students fled the country hours after the girls death and Albus out of shame or fear ?never saw him again not until forced to do so by the pleas of the Wizarding world .Neither Dumbledore nor Grindelwald ever seems to have referred to this brief boyhood friendship in later life .However there can be no doubt that Dumbledore delayed for some five years of turmoil fatalities and disappearances his attack upon Gellert Grindelwald .Was it lingering affection for the man or fear of exposure as his once best friend that caused Dumbledore to hesitate ?Was it only reluctantly that Dumbledore set out to capture the man he was once so delighted he had met ?And how did the mysterious Ariana die ?Was she the inadvertent victim of some Dark rite ?Did she stumble across something she ought not to have done as the two young men sat practicing for their attempt at glory and domination ?Is it possible that Ariana Dumbledore was the first person to die for the greater good ?The chapter ended here and Harry looked up .Hermione had reached the bottom of the page before him .She tugged the book out of Harrys hands looking a little alarmed by his expression and closed it without looking at it as though hiding something indecent .Harry But he shook his head .Some inner certainty had crashed down inside him it was exactly as he had felt after Ron left .He had trusted Dumbledore believed him the embodiment of goodness and wisdom .All was ashes How much more could he lose ?Ron Dumbledore the phoenix wand .Harry .She seemed to have heard his thoughts .Listen to me .It it doesnt make very nice reading Yeah you could say that but dont forget Harry this is Rita Skeeter writing .You did read that letter to Grindelwald didnt you ?Yes I I did .She hesitated looking upset cradling her tea in her cold hands .I think thats the worst bit .I know Bathilda thought it was all just talk but ‘For the Greater Good became Grindelwald s slogan his justification for all the atrocities he committed later .And .from that .it looks like Dumbledore gave him the idea .They say ‘For the Greater Good was even carved over the entrance to Nurmengard .Whats Nurmengard ?The prison Grindelwald had built to hold his opponents .He ended up in there himself once Dumbledore had caught him .Anyway its its an awful thought that Dumbledore s ideas helped Grindelwald rise to power .But on the other hand even Rita cant pretend that they knew each other for more than a few months one summer when they were both really young and I thought youd say that said Harry .He did not want to let his anger spill out at her but it was hard to keep his voice steady .I thought youd say They were young .They were the same age as we are now .And here we are risking our lives to fight the Dark Arts and there he was in a huddle with his new best friend plotting their rise to power over the Muggles .His temper would not remain in check much longer He stood up and walked around trying to work some of it off .Im not trying to defend what Dumbledore wrote said Hermione .All that ‘right to rule rubbish its ‘Magic Is Might all over again .But Harry his mother had just died he was stuck alone in the house Alone ?He wasnt alone !He had his brother and sister for company his Squib sister he was keeping locked up I dont believe it said Hermione .She stood up too .Whatever was wrong with that girl I dont think she was a Squib .The Dumbledore we knew would never ever have allowed The Dumbledore we thought we knew didnt want to conquer Muggles by force !Harry shouted his voice echoing across the empty hilltop and several blackbirds rose into the air squawking and spiraling against the pearly sky .He changed Harry he changed !Its as simple as that !Maybe he did believe these things when he was seventeen but the whole of the rest of his life was devoted to fighting the Dark Arts !Dumbledore was the one who stopped Grindelwald the one who always voted for Muggle protection and Muggleborn rights who fought YouKnowWho from the start and who died trying to bring him down !Ritas book lay on the ground between them so that the face of Albus Dumbledore smiled dolefully at both .Harry Im sorry but I think the real reason youre so angry is that Dumbledore never told you any of this himself .Maybe I am !Harry bellowed and he flung his arms over his head hardly knowing whether he was trying to hold in his anger or protect himself from the weight of his own disillusionment .Look what he asked from me Hermione !Risk your life Harry !And again !And again !And dont expect me to explain everything just trust me blindly trust that I know what Im doing trust me even though I dont trust you !Never the whole truth !Never !His voice cracked with the strain and they stood looking at each other in the whiteness and the emptiness and Harry felt they were as insignificant as insects beneath that wide sky .He loved you Hermione whispered .I know he loved you .Harry dropped his arms .I dont know who he loved Hermione but it was never me .This isnt love the mess hes left me in .He shared a damn sight more of what he was really thinking with Gellert Grindelwald than he ever shared with me .Harry picked up Hermione s wand which he had dropped in the snow and sat back down in the entrance of the tent .Thanks for the tea .Ill finish the watch .You get back in the warm .She hesitated but recognized the dismissal .She picked up the book and then walked back past him into the tent but as she did so she brushed the top of his head lightly with her hand .He closed his eyes at her touch and hated himself for wishing that what she said was true that Dumbledore had really cared .THE SILVER DOE It was snowing by the time Hermione took over the watch at midnight .Harrys dreams were confused and disturbing Nagini wove in and out of them first through a gigantic cracked ring then through a wreath of Christmas roses .He woke repeatedly panicky convinced that somebody had called out to him in the distance imagining that the wind whipping around the tent was footsteps or voices .Finally he got up in the darkness and joined Hermione who was huddled in the entrance to the tent reading A History of Magic by the light of her wand .The snow was still falling thickly and she greeted with relief his suggestion of packing up early and moving on .Well go somewhere more sheltered she agreed shivering as she pulled on a sweatshirt over her pajamas .I kept thinking I could hear people moving outside .I even thought I saw somebody once or twice .Harry paused in the act of pulling on a jumper and glanced at the silent motionless Sneakoscope on the table .Im sure I imagined it said Hermione looking nervous .The snow in the dark it plays tricks on your eyes .But perhaps we ought to Disapparate under the Invisibility Cloak just in case ?Half an hour later with the tent packed Harry wearing the Horcrux and Hermione clutching the beaded bag they Disapparated .The usual tightness engulfed them Harrys feet parted company with the snowy ground then slammed hard onto what felt like frozen earth covered with leaves .Where are we ?he asked peering around at a fresh mass of trees as Hermione opened the beaded bag and began tugging out tent poles .The Forest of Dean she said .I came camping here once with my mum and dad .Here too snow lay on the trees all around and it was bitterly cold but they were at least protected from the wind .They spent most of the day inside the tent huddled for warmth around the useful bright blue flames that Hermione was so adept at producing and which could be scooped up and carried around in a jar .Harry felt as though he was recuperating from some brief but severe illness an impression reinforced by Hermione s solicitousness .That afternoon fresh flakes drifted down upon them so that even their sheltered clearing had a fresh dusting of powdery snow .After two nights of little sleep Harrys senses seemed more alert than usual .Their escape from Godrics Hollow had been so narrow that Voldemort seemed somehow closer than before more threatening .As darkness drew in again Harry refused Hermiones offer to keep watch and told her to go to bed .Harry moved an old cushion into the tent mouth and sat down wearing all the sweaters he owned but even so still shivery .The darkness deepened with the passing hours until it was virtually impenetrable .He was on the point of taking out the Marauders Map so as to watch Ginnys dot for a while before he remembered that it was the Christmas holidays and that she would be back at the Burrow .Every tiny movement seemed magnified in the vastness of the forest .Harry knew that it must be full of living creatures but he wished they would all remain still and silent so that he could separate their innocent scurryings and prowlings from noises that might proclaim other sinister movements .He remembered the sound of a cloak slithering over dead leaves many years ago and at once thought he heard it again before mentally shaking himself .Their protective enchantments had worked for weeks why should they break now ?And yet he could not throw off the feeling that something was different tonight .Several times he jerked upright his neck aching because he had fallen asleep slumped at an awkward angle against the side of the tent .The night reached such a depth of velvety blackness that he might have been suspended in limbo between Disapparition and Apparition .He had just held up a hand in front of his face to see whether he could make out his fingers when it happened .A bright silver light appeared right ahead of him moving through the trees .Whatever the source it was moving soundlessly .The light seemed simply to drift toward him .He jumped to his feet his voice frozen in his throat and raised Hermiones wand .He screwed up his eyes as the light became blinding the trees in front of it pitchblack in silhouette and still the thing came closer .And then the source of the light stepped out from behind an oak .It was a silver white doe moonbright and dazzling picking her way over the ground still silent and leaving no hoofprints in the fine powdering of snow .She stepped toward him her beautiful head with its wide longlashed eyes held high .Harry stared at the creature filled with wonder not at her strangeness but at her inexplicable familiarity .He felt that he had been waiting for her to come but that he had forgotten until this moment that they had arranged to meet .His impulse to shout for Hermione which had been so strong a moment ago had gone .He knew he would have staked his life on it that she had come for him and him alone .They gazed at each other for several long moments and then she turned and walked away .No he said and his voice was cracked with lack of use .Come back !She continued to step deliberately through the trees and soon her brightness was striped by their thick black trunks .For one trembling second he hesitated .Caution murmured it could be a trick a lure a trap .But instinct overwhelming instinct told him that this was not Dark Magic .He set off in pursuit .Snow crunched beneath his feet but the doe made no noise as she passed through the trees for she was nothing but light .Deeper and deeper into the forest she led him and Harry walked quickly sure that when she stopped she would allow him to approach her properly .And then she would speak and the voice would tell him what he needed to know .At last she came to a halt .She turned her beautiful head toward him once more and he broke into a run a question burning in him but as he opened his lips to ask it she vanished .Though the darkness had swallowed her whole her burnished image was still imprinted on his retinas it obscured his vision brightening when he lowered his eyelids disorienting him .Now fear came Her presence had meant safety .Lumos he whispered and the wandtip ignited .The imprint of the doe faded away with every blink of his eyes as he stood there listening to the sounds of the forest to distant crackles of twigs soft swishes of snow .Was he about to be attacked ?Had she enticed him into an ambush ?Was he imagining that somebody stood beyond the reach of the wandlight watching him ?He held the wand higher .Nobody ran out at him no flash of green light burst from behind a tree .Why then had she led him to this spot ?Something gleamed in the light of the wand and Harry spun about but all that was there was a small frozen pool its cracked black surface glittering as he raised the wand higher to examine it .He moved forward rather cautiously and looked down .The ice reflected his distorted shadow and the beam of wandlight but deep below the thick misty gray carapace something else glinted .A great silver cross His heart skipped into his mouth He dropped to his knees at the pools edge and angled the wand so as to flood the bottom of the pool with as much light as possible .A glint of deep red .It was a sword with glittering rubies in its hilt .The sword of Gryffindor was lying at the bottom of the forest pool .Barely breathing he stared down at it .How was this possible ?How could it have come to be lying in a forest pool this close to the place where they were camping ?Had some unknown magic drawn Hermione to this spot or was the doe which he had taken to be a Patronus some kind of guardian of the pool ?Or had the sword been put into the pool after they had arrived precisely because they were here ?In which case where was the person who had wanted to pass it to Harry ?Again he directed the wand at the surrounding trees and bushes searching for a human outline for the glint of an eye but he could not see anyone there .All the same a little more fear leavened his exhilaration as he returned his attention to the sword reposing upon the bottom of the frozen pool .He pointed the wand at the silvery shape and murmured Accio Sword .It did not stir .He had not expected it to .If it had been that easy the sword would have lain on the ground for him to pick up not in the depths of a frozen pool .He set off around the circle of ice thinking hard about the last time the sword had delivered itself to him .He had been in terrible danger then and had asked for help .Help he murmured but the sword remained upon the pool bottom indifferent motionless .What was it Harry asked himself walking again that Dumbledore had told him the last time he had retrieved the sword ?Only a true Gryffindor could have pulled that out of the hat .And what were the qualities that defined a Gryffindor ?A small voice inside Harrys head answered him Their daring nerve and chivalry set Gryffindors apart .Harry stopped walking and let out a long sigh his smoky breath dispersing rapidly upon the frozen air .He knew what he had to do .If he was honest with himself he had thought it might come to this from the moment he had spotted the sword through the ice .He glanced around at the surrounding trees again but was convinced now that nobody was going to attack him .They had had their chance as he walked alone through the forest had had plenty of opportunity as he examined the pool .The only reason to delay at this point was because the immediate prospect was so deeply uninviting .With fumbling fingers Harry started to remove his many layers of clothing .Where chivalry entered into this he thought ruefully he was not entirely sure unless it counted as chivalrous that he was not calling for Hermione to do it in his stead .An owl hooted somewhere as he stripped off and he thought with a pang of Hedwig .He was shivering now his teeth chattering horribly and yet he continued to strip off until at last he stood there in his underwear barefooted in the snow .He placed the pouch containing his wand his mothers letter the shard of Siriuss mirror and the old Snitch on top of his clothes then he pointed Hermiones wand at the ice .Diffindo .It cracked with a sound like a bullet in the silence The surface of the pool broke and chunks of dark ice rocked on the ruffled water .As far as Harry could judge it was not deep but to retrieve the sword he would have to submerge himself completely .Contemplating the task ahead would not make it easier or the water warmer .He stepped to the pools edge and placed Hermiones wand on the ground still lit .Then trying not to imagine how much colder he was about to become or how violently he would soon be shivering he jumped .Every pore of his body screamed in protest The very air in his lungs seemed to freeze solid as he was submerged to his shoulders in the frozen water .He could hardly breathe trembling so violently the water lapped over the edges of the pool he felt for the blade with his numb feet .He only wanted to dive once .Harry put off the moment of total submersion from second to second gasping and shaking until he told himself that it must be done gathered all his courage and dived .The cold was agony It attacked him like fire .His brain itself seemed to have frozen as he pushed through the dark water to the bottom and reached out groping for the sword .His fingers closed around the hilt he pulled it upward .Then something closed tight around his neck .He thought of water weeds though nothing had brushed him as he dived and raised his empty hand to free himself .It was not weed The chain of the Horcrux had tightened and was slowly constricting his windpipe .Harry kicked out wildly trying to push himself back to the surface but merely propelled himself into the rocky side of the pool .Thrashing suffocating he scrabbled at the strangling chain his frozen fingers unable to loosen it and now little lights were popping inside his head and he was going to drown there was nothing left nothing he could do and the arms that closed around his chest were surely Deaths .Choking and retching soaking and colder than he had ever been in his life he came to facedown in the snow .Somewhere close by another person was panting and coughing and staggering around .Hermione had come again as she had come when the snake attacked .Yet it did not sound like her not with those deep coughs not judging by the weight of the footsteps .Harry had no strength to lift his head and see his saviors identity .All he could do was raise a shaking hand to his throat and feel the place where the locket had cut tightly into his flesh .It was gone Someone had cut him free .Then a panting voice spoke from over his head .Are you mental ?Nothing but the shock of hearing that voice could have given Harry the strength to get up .Shivering violently he staggered to his feet .There before him stood Ron fully dressed but drenched to the skin his hair plastered to his face the sword of Gryffindor in one hand and the Horcrux dangling from its broken chain in the other .Why the hell panted Ron holding up the Horcrux which swung backward and forward on its shortened chain in some parody of hypnosis didnt you take this thing off before you dived ?Harry could not answer .The silver doe was nothing nothing compared with Rons reappearance he could not believe it .Shuddering with cold he caught up the pile of clothes still lying at the waters edge and began to pull them on .As he dragged sweater after sweater over his head Harry stared at Ron half expecting him to have disappeared every time he lost sight of him and yet he had to be real He had just dived into the pool he had saved Harrys life .It was yyou ?Harry said at last his teeth chattering his voice weaker than usual due to his nearstrangulation .Well yeah said Ron looking slightly confused .Yyou cast that doe ?What ?No of course not !I thought it was you doing it !My Patronus is a stag .Oh yeah .I thought it looked different .No antlers .Harry put Hagrids pouch back around his neck pulled on a final sweater stooped to pick up Hermiones wand and faced Ron again .How come youre here ?Apparently Ron had hoped that this point would come up later if at all .Well Ive you know Ive come back .If He cleared his throat .You know .You still want me .There was a pause in which the subject of Rons departure seemed to rise like a wall between them .Yet he was here .He had returned .He had just saved Harrys life .Ron looked down at his hands .He seemed momentarily surprised to see the things he was holding .Oh yeah I got it out he said rather unnecessarily holding up the sword for Harrys inspection .Thats why you jumped in right ?Yeah said Harry .But I dont understand .How did you get here ?How did you find us ?Long story said Ron .Ive been looking for you for hours its a big forest isnt it ?And I was just thinking Id have to kip under a tree and wait for morning when I saw that deer coming and you following .You didnt see anyone else ?No said Ron .I But he hesitated glancing at two trees growing close together some yards away .I did think I saw something move over there but I was running to the pool at the time because youd gone in and you hadnt come up so I wasnt going to make a detour to hey !Harry was already hurrying to the place Ron had indicated .The two oaks grew close together there was a gap of only a few inches between the trunks at eye level an ideal place to see but not be seen .The ground around the roots however was free of snow and Harry could see no sign of footprints .He walked back to where Ron stood waiting still holding the sword and the Horcrux .Anything there ?Ron asked .No said Harry .So how did the sword get in that pool ?Whoever cast the Patronus must have put it there .They both looked at the ornate silver sword its rubied hilt glinting a little in the light from Hermiones wand .You reckon this is the real one ?asked Ron .One way to find out isnt there ?said Harry .The Horcrux was still swinging from Rons hand .The locket was twitching slightly .Harry knew that the thing inside it was agitated again .It had sensed the presence of the sword and had tried to kill Harry rather than let him possess it .Now was not the time for long discussions now was the moment to destroy the locket once and for all .Harry looked around holding Hermiones wand high and saw the place a flattish rock lying in the shadow of a sycamore tree .Come here he said and he led the way brushed snow from the rocks surface and held out his hand for the Horcrux .When Ron offered the sword however Harry shook his head .No you should do it .Me ?said Ron looking shocked .Why ?Because you got the sword out of the pool .I think its supposed to be you .He was not being kind or generous .As certainly as he had known that the doe was benign he knew that Ron had to be the one to wield the sword .Dumbledore had at least taught Harry something about certain kinds of magic of the incalculable power of certain acts .Im going to open it said Harry and you stab it .Straightaway okay ?Because whatevers in there will put up a fight .The bit of Riddle in the diary tried to kill me .How are you going to open it ?asked Ron .He looked terrified .Im going to ask it to open using Parseltongue said Harry .The answer came so readily to his lips that he thought that he had always known it deep down Perhaps it had taken his recent encounter with Nagini to make him realize it .He looked at the serpentine S inlaid with glittering green stones It was easy to visualize it as a minuscule snake curled upon the cold rock .No !said Ron .No dont open it !Im serious !Why not ?asked Harry .Lets get rid of the damn thing its been months I cant Harry Im serious you do it But why ?Because that things bad for me !said Ron backing away from the locket on the rock .I cant handle it !Im not making excuses Harry for what I was like but it affects me worse than it affected you and Hermione it made me think stuff stuff I was thinking anyway but it made everything worse I cant explain it and then Id take it off and Id get my head on straight again and then Id have to put the effing thing back on I cant do it Harry !He had backed away the sword dragging at his side shaking his head .You can do it said Harry you can !Youve just got the sword I know its supposed to be you who uses it .Please just get rid of it Ron .The sound of his name seemed to act like a stimulant .Ron swallowed then still breathing hard through his long nose moved back toward the rock .Tell me when he croaked .On three said Harry looking back down at the locket and narrowing his eyes concentrating on the letter S imagining a serpent while the contents of the locket rattled like a trapped cockroach .It would have been easy to pity it except that the cut around Harrys neck still burned .One .two .three .open .The last word came as a hiss and a snarl and the golden doors of the locket swung wide with a little click .Behind both of the glass windows within blinked a living eye dark and handsome as Tom Riddles eyes had been before he turned them scarlet and slit pupiled .Stab said Harry holding the locket steady on the rock .Ron raised the sword in his shaking hands The point dangled over the frantically swiveling eyes and Harry gripped the locket tightly bracing himself already imagining blood pouring from the empty windows .Then a voice hissed from out of the Horcrux .I have seen your heart and it is mine .Dont listen to it !Harry said harshly .Stab it !I have seen your dreams Ronald Weasley and I have seen your fears .All you desire is possible but all that you dread is also possible .Stab !shouted Harry his voice echoed off the surrounding trees the sword point trembled and Ron gazed down into Riddles eyes .Least loved always by the mother who craved a daughter .Least loved now by the girl who prefers your friend .Second best always eternally overshadowed .Ron stab it now !Harry bellowed He could feel the locket quivering in his grip and was scared of what was coming .Ron raised the sword still higher and as he did so Riddles eyes gleamed scarlet .Out of the lockets two windows out of the eyes there bloomed like two grotesque bubbles the heads of Harry and Hermione weirdly distorted .Ron yelled in shock and backed away as the figures blossomed out of the locket first chests then waists then legs until they stood in the locket side by side like trees with a common root swaying over Ron and the real Harry who had snatched his fingers away from the locket as it burned suddenly whitehot .Ron !he shouted but the RiddleHarry was now speaking with Voldemorts voice and Ron was gazing mesmerized into its face .Why return ?We were better without you happier without you glad of your absence .We laughed at your stupidity your cowardice your presumption Presumption ?echoed the RiddleHermione who was more beautiful and yet more terrible than the real Hermione She swayed cackling before Ron who looked horrified yet transfixed the sword hanging pointlessly at his side .Who could look at you who would ever look at you beside Harry Potter ?What have you ever done compared with the Chosen One ?What are you compared with the Boy Who Lived ?Ron stab it STAB IT !Harry yelled but Ron did not move His eyes were wide and the RiddleHarry and the RiddleHermione were reflected in them their hair swirling like flames their eyes shining red their voices lifted in an evil duet .Your mother confessed sneered RiddleHarry while RiddleHermione jeered that she would have preferred me as a son would be glad to exchange .Who wouldnt prefer him what woman would take you you are nothing nothing nothing to him crooned RiddleHermione and she stretched like a snake and entwined herself around RiddleHarry wrapping him in a close embrace Their lips met .On the ground in front of them Rons face filled with anguish .He raised the sword high his arms shaking .Do it Ron !Harry yelled .Ron looked toward him and Harry thought he saw a trace of scarlet in his eyes .Ron ?The sword flashed plunged Harry threw himself out of the way there was a clang of metal and a long drawnout scream .Harry whirled around slipping in the snow wand held ready to defend himself but there was nothing to fight .The monstrous versions of himself and Hermione were gone There was only Ron standing there with the sword held slackly in his hand looking down at the shattered remains of the locket on the flat rock .Slowly Harry walked back to him hardly knowing what to say or do .Ron was breathing heavily His eyes were no longer red at all but their normal blue they were also wet .Harry stooped pretending he had not seen and picked up the broken Horcrux .Ron had pierced the glass in both windows Riddles eyes were gone and the stained silk lining of the locket was smoking slightly .The thing that had lived in the Horcrux had vanished torturing Ron had been its final act .The sword clanged as Ron dropped it .He had sunk to his knees his head in his arms .He was shaking but not Harry realized from cold .Harry crammed the broken locket into his pocket knelt down beside Ron and placed a hand cautiously on his shoulder .He took it as a good sign that Ron did not throw it off .After you left he said in a low voice grateful for the fact that Rons face was hidden she cried for a week .Probably longer only she didnt want me to see .There were loads of nights when we never even spoke to each other .With you gone .He could not finish it was only now that Ron was here again that Harry fully realized how much his absence had cost them .Shes like my sister he went on .I love her like a sister and I reckon she feels the same way about me .Its always been like that .I thought you knew .Ron did not respond but turned his face away from Harry and wiped his nose noisily on his sleeve .Harry got to his feet again and walked to where Rons enormous rucksack lay yards away discarded as Ron had run toward the pool to save Harry from drowning .He hoisted it onto his own back and walked back to Ron who clambered to his feet as Harry approached eyes bloodshot but otherwise composed .Im sorry he said in a thick voice .Im sorry I left .I know I was a a He looked around at the darkness as if hoping a bad enough word would swoop down upon him and claim him .Youve sort of made up for it tonight said Harry .Getting the sword .Finishing off the Horcrux .Saving my life .That makes me sound a lot cooler than I was Ron mumbled .Stuff like that always sounds cooler than it really was said Harry .Ive been trying to tell you that for years .Simultaneously they walked forward and hugged Harry gripping the stillsopping back of Rons jacket .And now said Harry as they broke apart all weve got to do is find the tent again .But it was not difficult .Though the walk through the dark forest with the doe had seemed lengthy with Ron by his side the journey back seemed to take a surprisingly short time .Harry could not wait to wake Hermione and it was with quickening excitement that he entered the tent Ron lagging a little behind him .It was gloriously warm after the pool and the forest the only illumination the bluebell flames still shimmering in a bowl on the floor .Hermione was fast asleep curled up under her blankets and did not move until Harry had said her name several times .Hermionel She stirred then sat up quickly pushing her hair out of her face .Whats wrong ?Harry ?Are you all right ?Its okay everythings fine .More than fine .Im great .Theres someone here .What do you mean ?Who ?She saw Ron who stood there holding the sword and dripping onto the threadbare carpet .Harry backed into a shadowy corner slipped off Rons rucksack and attempted to blend in with the canvas .Hermione slid out of her bunk and moved like a sleepwalker toward Ron her eyes upon his pale face .She stopped right in front of him her lips slightly parted her eyes wide .Ron gave a weak hopeful smile and half raised his arms .Hermione launched herself forward and started punching every inch of him that she could reach .Ouch ow gerroff !What the ?Hermione OW !You complete arse Ronald Weasley !She punctuated every word with a blow Ron backed away shielding his head as Hermione advanced .You crawl back here after weeks and weeks oh wheres my wand ?She looked as though ready to wrestle it out of Harrys hands and he reacted instinctively .Protegol The invisible shield erupted between Ron and Hermione The force of it knocked her backward onto the floor .Spitting hair out of her mouth she leapt up again .Hermione !said Harry .Calm I will not calm down !she screamed .Never before had he seen her lose control like this she looked quite demented .Give me back my wand !Give it back to me Hermione will you please Dont you tell me what to do Harry Potter !she screeched .Dont you dare !Give it back now !And YOU !She was pointing at Ron in dire accusation It was like a malediction and Harry could not blame Ron for retreating several steps .I came running after you !I called you !I begged you to come back !I know Ron said Hermione Im sorry Im really Oh youre sorry !She laughed a highpitched outofcontrol sound Ron looked at Harry for help but Harry merely grimaced his helplessness .You come back after weeks weeks and you think its all going to be all right if you just say sorry ?Well what else can I say ?Ron shouted and Harry was glad that Ron was fighting back .Oh I dont know !yelled Hermione with awful sarcasm .Rack your brains Ron that should only take a couple of seconds Hermione interjected Harry who considered this a low blow he just saved my I dont care !she screamed .I dont care what hes done !Weeks and weeks we could have been dead for all he knew I knew you werent dead !bellowed Ron drowning her voice for the first time and approaching as close as he could with the Shield Charm between them .Harrys all over the Prophet all over the radio theyre looking for you everywhere all these rumors and mental stories I knew Id hear straight off if you were dead you dont know what its been like What its been like for you ?Her voice was now so shrill only bats would be able to hear it soon but she had reached a level of indignation that rendered her temporarily speechless and Ron seized his opportunity .I wanted to come back the minute Id Disapparated but I walked straight into a gang of Snatchers Hermione and I couldnt go anywhere !A gang of what ?asked Harry as Hermione threw herself down into a chair with her arms and legs crossed so tightly it seemed unlikely that she would unravel them for several years .Snatchers said Ron .Theyre everywhere gangs trying to earn gold by rounding up Muggleborns and blood traitors theres a reward from the Ministry for everyone captured .I was on my own and I look like I might be school age they got really excited thought I was a Muggleborn in hiding .I had to talk fast to get out of being dragged to the Ministry .What did you say to them ?Told them I was Stan Shunpike .First person I could think of .And they believed that ?They werent the brightest .One of them was definitely part troll the smell off him .Ron glanced at Hermione clearly hopeful she might soften at this small instance of humor but her expression remained stony above her tightly knotted limbs .Anyway they had a row about whether I was Stan or not .It was a bit pathetic to be honest but there were still five of them and only one of me and theyd taken my wand .Then two of them got into a fight and while the others were distracted I managed to hit the one holding me in the stomach grabbed his wand Disarmed the bloke holding mine and Disapparated .I didnt do it so well Splinched myself again Ron held up his right hand to show two missing fingernails Hermione raised her eyebrows coldly and I came out miles from where you were .By the time I got back to that bit of riverbank where wed been .youd gone .Gosh what a gripping story Hermione said in the lofty voice she adopted when wishing to wound .You must have been simply terrified .Meanwhile we went to Godrics Hollow and lets think what happened there Harry ?Oh yes YouKnow Whos snake turned up it nearly killed both of us and then YouKnow Who himself arrived and missed us by about a second .What ?Ron said gaping from her to Harry but Hermione ignored him .Imagine losing fingernails Harry !That really puts our sufferings into perspective doesnt it ?Hermione said Harry quietly Ron just saved my life .She appeared not to have heard him .One thing I would like to know though she said fixing her eyes on a spot a foot over Rons head .How exactly did you find us tonight ?Thats important .Once we know well be able to make sure were not visited by anyone else we dont want to see .Ron glared at her then pulled a small silver object from his jeans pocket .This .She had to look at Ron to see what he was showing them .The Deluminator ?she asked so surprised she forgot to look cold and fierce .It doesnt just turn the lights on and off said Ron .I dont know how it works or why it happened then and not any other time because Ive been wanting to come back ever since I left .But I was listening to the radio really early on Christmas morning and I heard .I heard you .He was looking at Hermione .You heard me on the radio ?she asked incredulously .No I heard you coming out of my pocket .Your voice he held up the Deluminator again came out of this .And what exactly did I say ?asked Hermione her tone somewhere between skepticism and curiosity .My name . ‘Ron .And you said .something about a wand .Hermione turned a fiery shade of scarlet .Harry remembered It had been the first time Rons name had been said aloud by either of them since the day he had left Hermione had mentioned it when talking about repairing Harrys wand .So I took it out Ron went on looking at the Deluminator and it didnt seem different or anything but I was sure Id heard you .So I clicked it .And the light went out in my room but another light appeared right outside the window .Ron raised his empty hand and pointed in front of him his eyes focused on something neither Harry nor Hermione could see .It was a ball of light kind of pulsing and bluish like that light you get around a Portkey you know ?Yeah said Harry and Hermione together automatically .I knew this was it said Ron .I grabbed my stuff and packed it then I put on my rucksack and went out into the garden .The little ball of light was hovering there waiting for me and when I came out it bobbed along a bit and I followed it behind the shed and then it .well it went inside me .Sorry ?said Harry sure he had not heard correctly .It sort of floated toward me said Ron illustrating the movement with his free index finger right to my chest and then it just went straight through .It was here he touched a point close to his heart I could feel it it was hot .And once it was inside me I knew what I was supposed to do I knew it would take me where I needed to go .So I Disapparated and came out on the side of a hill .There was snow everywhere .We were there said Harry .We spent two nights there and the second night I kept thinking I could hear someone moving around in the dark and calling out !Yeah well that wouldve been me said Ron .Your protective spells work anyway because I couldnt see you and I couldnt hear you .I was sure you were around though so in the end I got in my sleeping bag and waited for one of you to appear .I thought youd have to show yourselves when you packed up the tent .No actually said Hermione .Weve been Disapparating under the Invisibility Cloak as an extra precaution .And we left really early because as Harry says wed heard somebody blundering around .Well I stayed on that hill all day said Ron .I kept hoping youd appear .But when it started to get dark I knew I must have missed you so I clicked the Deluminator again the blue light came out and went inside me and I Disapparated and arrived here in these woods .I still couldnt see you so I just had to hope one of you would show yourselves in the end and Harry did .Well I saw the doe first obviously .You saw the what ?said Hermione sharply .They explained what had happened and as the story of the silver doe and the sword in the pool unfolded Hermione frowned from one to the other of them concentrating so hard she forgot to keep her limbs locked together .But it must have been a Patronus !she said .Couldnt you see who was casting it ?Didnt you see anyone ?And it led you to the sword !I cant believe this !Then what happened ?Ron explained how he had watched Harry jump into the pool and had waited for him to resurface how he had realized that something was wrong dived in and saved Harry then returned for the sword .He got as far as the opening of the locket then hesitated and Harry cut in .and Ron stabbed it with the sword .And .and it went ?Just like that ?she whispered .Well it it screamed said Harry with half a glance at Ron .Here .He threw the locket into her lap gingerly she picked it up and examined its punctured windows .Deciding that it was at last safe to do so Harry removed the Shield Charm with a wave of Hermiones wand and turned to Ron .Did you just say you got away from the Snatchers with a spare wand ?What ?said Ron who had been watching Hermione examining the locket .Oh oh yeah .He tugged open a buckle on his rucksack and pulled a short dark wand out of its pocket .Here .I figured its always handy to have a backup .You were right said Harry holding out his hand .Mines broken .Youre kidding ?Ron said but at that moment Hermione got to her feet and he looked apprehensive again .Hermione put the vanquished Horcrux into the beaded bag then climbed back into her bed and settled down without another word .Ron passed Harry the new wand .About the best you could hope for I think murmured Harry .Yeah said Ron .Couldve been worse .Remember those birds she set on me ?I still havent ruled it out came Hermiones muffled voice from beneath her blankets but Harry saw Ron smiling slightly as he pulled his maroon pajamas out of his rucksack .XEN OPHILIUS LOVEGOOD Harry had not expected Hermiones anger to abate overnight and was therefore unsurprised that she communicated mainly by dirty looks and pointed silences the next morning .Ron responded by maintaining an unnaturally somber demeanor in her presence as an outward sign of continuing remorse .In fact when all three of them were together Harry felt like the only nonmourner at a poorly attended funeral .During those few moments he spent alone with Harry however collecting water and searching the undergrowth for mushrooms Ron became shamelessly cheery .Someone helped us he kept saying .Someone sent that doe .Someones on our side .One Horcrux down mate !Bolstered by the destruction of the locket they set to debating the possible locations of the other Horcruxes and even though they had discussed the matter so often before Harry felt optimistic certain that more breakthroughs would succeed the first .Hermiones sulkiness could not mar his buoyant spirits The sudden upswing in their fortunes the appearance of the mysterious doe the recovery of Gryffindors sword and above all Rons return made Harry so happy that it was quite difficult to maintain a straight face .Late in the afternoon he and Ron escaped Hermiones baleful presence again and under the pretense of scouring the bare hedges for nonexistent blackberries they continued their ongoing exchange of news .Harry had finally managed to tell Ron the whole story of his and Hermiones various wanderings right up to the full story of what had happened at Godrics Hollow Ron was now filling Harry in on everything he had discovered about the wider Wizarding world during his weeks away . .and how did you find out about the Taboo ?he asked Harry after explaining the many desperate attempts of Muggleborns to evade the Ministry .The what ?You and Hermione have stopped saying YouKnow Whos name !Oh yeah .Well its just a bad habit weve slipped into said Harry .But I havent got a problem calling him V NO !roared Ron causing Harry to jump into the hedge and Hermione nose buried in a book at the tent entrance to scowl over at them .Sorry said Ron wrenching Harry back out of the brambles but the names been jinxed Harry thats how they track people !Using his name breaks protective enchantments it causes some kind of magical disturbance its how they found us in Tottenham Court Road !Because we used his name ?Exactly !Youve got to give them credit it makes sense .It was only people who were serious about standing up to him like Dumbledore who ever dared use it .Now theyve put a Taboo on it anyone who says it is trackable quickandeasy way to find Order members !They nearly got Kingsley Youre kidding ?Yeah a bunch of Death Eaters cornered him Bill said but he fought his way out .Hes on the run now just like us .Ron scratched his chin thoughtfully with the end of his wand .You dont reckon Kingsley could have sent that doe ?His Patronus is a lynx we saw it at the wedding remember ?Oh yeah .They moved farther along the hedge away from the tent and Hermione .Harry .you dont reckon it couldve been Dumbledore ?Dumbledore what ?Ron looked a little embarrassed but said in a low voice Dumbledore .the doe ?I mean Ron was watching Harry out of the corners of his eyes he had the real sword last didnt he ?Harry did not laugh at Ron because he understood too well the longing behind the question .The idea that Dumbledore had managed to come back to them that he was watching over them would have been inexpressibly comforting .He shook his head .Dumbledores dead he said .I saw it happen I saw the body .Hes definitely gone .Anyway his Patronus was a phoenix not a doe .Patronuses can change though cant they ?said Ron .Tonkss changed didnt it ?Yeah but if Dumbledore was alive why wouldnt he show himself ?Why wouldnt he just hand us the sword ?Search me said Ron .Same reason he didnt give it to you while he was alive ?Same reason he left you an old Snitch and Hermione a book of kids stories ?Which is what ?asked Harry turning to look Ron full in the face desperate for the answer .I dunno said Ron .Sometimes Ive thought when Ive been a bit hacked off he was having a laugh or or he just wanted to make it more difficult .But I dont think so not anymore .He knew what he was doing when he gave me the Deluminator didnt he ?He well Rons ears turned bright red and he became engrossed in a tuft of grass at his feet which he prodded with his toe he mustve known Id run out on you .No Harry corrected him .He mustve known youd always want to come back .Ron looked grateful but still awkward .Partly to change the subject Harry said Speaking of Dumbledore have you heard what Skeeter wrote about him ?Oh yeah said Ron at once people are talking about it quite a lot .Course if things were different itd be huge news Dumbledore being pals with Grindelwald but now its just something to laugh about for people who didnt like Dumbledore and a bit of a slap in the face for everyone who thought he was such a good bloke .I dont know that its such a big deal though .He was really young when they Our age said Harry just as he had retorted to Hermione and something in his face seemed to decide Ron against pursuing the subject .A large spider sat in the middle of a frosted web in the brambles .Harry took aim at it with the wand Ron had given him the previous night which Hermione had since condescended to examine and had decided was made of blackthorn .Engorgio .The spider gave a little shiver bouncing slightly in the web .Harry tried again .This time the spider grew slightly larger .Stop that said Ron sharply .Im sorry I said Dumbledore was young okay ?Harry had forgotten Rons hatred of spiders .Sorry Reducio .The spider did not shrink .Harry looked down at the blackthorn wand .Every minor spell he had cast with it so far that day had seemed less powerful than those he had produced with his phoenix wand .The new one felt intrusively unfamiliar like having somebody elses hand sewn to the end of his arm .You just need to practice said Hermione who had approached them noiselessly from behind and had stood watching anxiously as Harry tried to enlarge and reduce the spider .Its all a matter of confidence Harry .He knew why she wanted it to be all right She still felt guilty about breaking his wand .He bit back the retort that sprang to his lips that she could take the blackthorn wand if she thought it made no difference and he would have hers instead .Keen for them all to be friends again however he agreed but when Ron gave Hermione a tentative smile she stalked off and vanished behind her book once more .All three of them returned to the tent when darkness fell and Harry took first watch .Sitting in the entrance he tried to make the blackthorn wand levitate small stones at his feet but his magic still seemed clumsier and less powerful than it had done before .Hermione was lying on her bunk reading while Ron after many nervous glances up at her had taken a small wooden wireless out of his rucksack and started to try and tune it .Theres this one program he told Harry in a low voice that tells the news like it really is .All the others are on You Know Whos side and are following the Ministry line but this one .you wait till you hear it its great .Only they cant do it every night they have to keep changing locations in case theyre raided and you need a password to tune in .Trouble is I missed the last one .He drummed lightly on the top of the radio with his wand muttering random words under his breath .He threw Hermione many covert glances plainly fearing an angry outburst but for all the notice she took of him he might not have been there .For ten minutes or so Ron tapped and muttered Hermione turned the pages of her book and Harry continued to practice with the blackthorn wand .Finally Hermione climbed down from her bunk .Ron ceased his tapping at once .If its annoying you 111 stop !he told Hermione nervously .Hermione did not deign to respond but approached Harry .We need to talk she said .He looked at the book still clutched in her hand .It was The Life and Lies of Albus Dumbledore .What ?he said apprehensively .It flew through his mind that there was a chapter on him in there he was not sure he felt up to hearing Ritas version of his relationship with Dumbledore .Hermione s answer however was completely unexpected .I want to go and see Xenophilius Lovegood .He stared at her .Sorry ?Xenophilius Lovegood .Lunas father .I want to go and talk to him !Er why ?She took a deep breath as though bracing herself and said Its that mark the mark in Beedle the Bard .Look at this !She thrust The Life and Lies ofAlbus Dumbledore under Harrys unwilling eyes and he saw a photograph of the original letter that Dumbledore had written Grindelwald with Dumbledore s familiar thin slanting handwriting .He hated seeing absolute proof that Dumbledore really had written those words that they had not been Ritas invention .The signature said Hermione .Look at the signature Harry !He obeyed .For a moment he had no idea what she was talking about but looking more closely with the aid of his lit wand he saw that Dumbledore had replaced the A of Albus with a tiny version of the same triangular mark inscribed upon The Tales of Beedle the Bard .Er what are you ?said Ron tentatively but Hermione quelled him with a look and turned back to Harry .It keeps cropping up doesnt it ?she said .I know Viktor said it was Grindelwald s mark but it was definitely on that old grave in Godrics Hollow and the dates on the headstone were long before Grindelwald came along !And now this !Well we cant ask Dumbledore or Grindelwald what it means I dont even know whether Grindelwalds still alive but we can ask Mr Lovegood .He was wearing the symbol at the wedding .Im sure this is important Harry !Harry did not answer immediately .He looked into her intense eager face and then out into the surrounding darkness thinking .After a long pause he said Hermione we dont need another Godrics Hollow .We talked ourselves into going there and But it keeps appearing Harry !Dumbledore left me The Tales of Beedle the Bard how do you know were not supposed to find out about the sign ?Here we go again !Harry felt slightly exasperated .We keep trying to convince ourselves Dumbledore left us secret signs and clues The Deluminator turned out to be pretty useful piped up Ron .I think Hermiones right I think we ought to go and see Lovegood .Harry threw him a dark look .He was quite sure that Rons support of Hermione had little to do with a desire to know the meaning of the triangular rune .It wont be like Godrics Hollow Ron added Lovegoods on your side Harry The Quibblers been for you all along it keeps telling everyone theyve got to help you !Im sure this is important !said Hermione earnestly .But dont you think if it was Dumbledore would have told me about it before he died ?Maybe .maybe its something you need to find out for yourself said Hermione with a faint air of clutching at straws .Yeah said Ron sycophantically that makes sense .No it doesnt snapped Hermione but I still think we ought to talk to Mr Lovegood .A symbol that links Dumbledore Grindelwald and Godrics Hollow ?Harry Im sure we ought to know about this !I think we should vote on it said Ron .Those in favor of going to see Lovegood His hand flew into the air before Hermiones .Her lips quivered suspiciously as she raised her own .Outvoted Harry sorry said Ron clapping him on the back .Fine said Harry half amused half irritated .Only once weve seen Lovegood lets try and look for some more Horcruxes shall we ?Where do the Lovegoods live anyway ?Do either of you know ?Yeah theyre not far from my place said Ron .I dunno exactly where but Mum and Dad always point toward the hills whenever they mention them .Shouldnt be hard to find .When Hermione had returned to her bunk Harry lowered his voice .You only agreed to try and get back in her good books .Alls fair in love and war said Ron brightly and this is a bit of both .Cheer up its the Christmas holidays Luna ll be home !They had an excellent view of the village of Ottery St .Catchpole from the breezy hillside to which they Disapparated next morning .From their high vantage point the village looked like a collection of toy houses in the great slanting shafts of sunlight stretching to earth in the breaks between clouds .They stood for a minute or two looking toward the Burrow their hands shadowing their eyes but all they could make out were the high hedges and trees of the orchard which afforded the crooked little house protection from Muggle eyes .Its weird being this near but not going to visit said Ron .Well its not like you havent just seen them .You were there for Christmas said Hermione coldly .I wasnt at the Burrow !said Ron with an incredulous laugh .Do you think I was going to go back there and tell them all Id walked out on you ?Yeah Fred and George wouldve been great about it .And Ginny shed have been really understanding .But where have you been then ?asked Hermione surprised .Bill and Fleurs new place .Shell Cottage .Bills always been decent to me .He he wasnt impressed when he heard what Id done but he didnt go on about it .He knew I was really sorry .None of the rest of the family know I was there .Bill told Mum he and Fleur werent going home for Christmas because they wanted to spend it alone .You know first holiday after they were married .I dont think Fleur minded .You know how much she hates Celestina Warbeck .Ron turned his back on the Burrow .Lets try up here he said leading the way over the top of the hill .They walked for a few hours Harry at Hermione s insistence hidden beneath the Invisibility Cloak .The cluster of low hills appeared to be uninhabited apart from one small cottage which seemed deserted .Do you think its theirs and theyve gone away for Christmas ?said Hermione peering through the window at a neat little kitchen with geraniums on the windowsill .Ron snorted .Listen Ive got a feeling youd be able to tell who lived there if you looked through the Lovegoods window .Lets try the next lot of hills .So they Disapparated a few miles farther north .Aha !shouted Ron as the wind whipped their hair and clothes .Ron was pointing upward toward the top of the hill on which they had appeared where a most strangelooking house rose vertically against the sky a great black cylinder with a ghostly moon hanging behind it in the afternoon sky .Thats got to be Lunas house who else would live in a place like that ?It looks like a giant rook !Its nothing like a bird said Hermione frowning at the tower .I was talking about a chess rook said Ron .A castle to you .Rons legs were the longest and he reached the top of the hill first .When Harry and Hermione caught up with him panting and clutching stitches in their sides they found him grinning broadly .Its theirs said Ron .Look .Three handpainted signs had been tacked to a brokendown gate .The first read THE QUIBBLER .EDITOR X .LOVEGOOD the second PICK YOUR OWN MISTLETOE the third KEEP OFF THE DIRIGIBLE PLUMS The gate creaked as they opened it .The zigzagging path leading to the front door was overgrown with a variety of odd plants including a bush covered in the orange radishlike fruit Luna sometimes wore as earrings .Harry thought he recognized a Snargaluff and gave the wizened stump a wide berth .Two aged crab apple trees bent with the wind stripped of leaves but still heavy with berrysized red fruits and bushy crowns of whitebeaded mistletoe stood sentinel on either side of the front door .A little owl with a slightly flattened hawklike head peered down at them from one of the branches .Youd better take off the Invisibility Cloak Harry said Hermione .Its you Mr Lovegood wants to help not us .He did as she suggested handing her the Cloak to stow in the beaded bag .She then rapped three times on the thick black door which was studded with iron nails and bore a knocker shaped like an eagle .Barely ten seconds passed then the door was flung open and there stood Xenophilius Lovegood barefoot and wearing what appeared to be a stained nightshirt His long white candyfloss hair was dirty and unkempt .Xenophilius had been positively dapper at Bill and Fleurs wedding by comparison .What ?What is it ?Who are you ?What do you want ?he cried in a highpitched querulous voice looking first at Hermione then at Ron and finally at Harry upon which his mouth fell open in a perfect comical O .Hello Mr Lovegood said Harry holding out his hand .Im Harry Harry Potter .Xenophilius did not take Harrys hand although the eye that was not pointing inward at his nose slid straight to the scar on Harrys forehead .Would it be okay if we came in ?asked Harry .Theres something wed like to ask you .I .Im not sure thats advisable whispered Xenophilius .He swallowed and cast a quick look around the garden .Rather a shock .My word .I .Im afraid I dont really think I ought to It wont take long said Harry slightly disappointed by this lessthanwarm welcome .I oh all right then .Come in quickly .QuicklyV They were barely over the threshold when Xenophilius slammed the door shut behind them .They were standing in the most peculiar kitchen Harry had ever seen .The room was perfectly circular so that it felt like being inside a giant pepper pot .Everything was curved to fit the walls the stove the sink and the cupboards and all of it had been painted with flowers insects and birds in bright primary colors .Harry thought he recognized Lunas style The effect in such an enclosed space was slightly overwhelming .In the middle of the floor a wroughtiron spiral staircase led to the upper levels .There was a great deal of clattering and banging coming from overhead Harry wondered what Luna could be doing .Youd better come up said Xenophilius still looking extremely uncomfortable and he led the way .The room above seemed to be a combination of living room and workplace and as such was even more cluttered than the kitchen .Though much smaller and entirely round the room somewhat resembled the Room of Requirement on the unforgettable occasion that it had transformed itself into a gigantic labyrinth comprised of centuries of hidden objects .There were piles upon piles of books and papers on every surface .Delicately made models of creatures Harry did not recognize all flapping wings or snapping jaws hung from the ceiling .Luna was not there The thing that was making such a racket was a wooden object covered in magically turning cogs and wheels .It looked like the bizarre offspring of a workbench and a set of old shelves but after a moment Harry deduced that it was an old fashioned printing press due to the fact that it was churning out Quibblers .Excuse me said Xenophilius and he strode over to the machine seized a grubby tablecloth from beneath an immense number of books and papers which all tumbled onto the floor and threw it over the press somewhat muffling the loud bangs and clatters .He then faced Harry .Why have you come here ?Before Harry could speak however Hermione let out a small cry of shock .Mr Lovegood whats that ?She was pointing at an enormous gray spiral horn not unlike that of a unicorn which had been mounted on the wall protruding several feet into the room .It is the horn of a CrumpleHorned Snorkack said Xenophilius .No it isnt !said Hermione .Hermione muttered Harry embarrassed nows not the moment But Harry its an Erumpent horn !Its a Class B Tradeable Material and its an extraordinarily dangerous thing to have in a house !How dyou know its an Erumpent horn ?asked Ron edging away from the horn as fast as he could given the extreme clutter of the room .Theres a description in Fantastic Beasts and Where to Find Them .Mr Lovegood you need to get rid of it straightaway dont you know it can explode at the slightest touch ?The CrumpleHorned Snorkack said Xenophilius very clearly a mulish look upon his face is a shy and highly magical creature and its horn Mr Lovegood I recognize the grooved markings around the base thats an Erumpent horn and its incredibly dangerous I dont know where you got it I bought it said Xenophilius dogmatically two weeks ago from a delightful young wizard who knew of my interest in the exquisite Snorkack .A Christmas surprise for my Luna .Now he said turning to Harry why exactly have you come here Mr Potter ?We need some help said Harry before Hermione could start again .Ah said Xenophilius .Help .Hmm .His good eye moved again to Harrys scar .He seemed simultaneously terrified and mesmerized .Yes .The thing is .helping Harry Potter .rather dangerous .Arent you the one who keeps telling everyone its their first duty to help Harry ?said Ron .In that magazine of yours ?Xenophilius glanced behind him at the concealed printing press still banging and clattering beneath the tablecloth .Er yes I have expressed that view .However Thats for everyone else to do not you personally ?said Ron .Xenophilius did not answer .He kept swallowing his eyes darting between the three of them .Harry had the impression that he was undergoing some painful internal struggle .Wheres Luna ?asked Hermione .Lets see what she thinks .Xenophilius gulped .He seemed to be steeling himself .Finally he said in a shaky voice difficult to hear over the noise of the printing press Luna is down at the stream fishing for Freshwater Plimpies .She .she will like to see you .Ill go and call her and then yes very well .I shall try to help you .He disappeared down the spiral staircase and they heard the front door open and close .They looked at each other .Cowardly old wart said Ron .Lunas got ten times his guts .Hes probably worried about whatll happen to them if the Death Eaters find out I was here said Harry .Well I agree with Ron said Hermione .Awful old hypocrite telling everyone else to help you and trying to worm out of it himself .And for heavens sake keep away from that horn .Harry crossed to the window on the far side of the room .He could see a stream a thin glittering ribbon lying far below them at the base of the hill .They were very high up a bird fluttered past the window as he stared in the direction of the Burrow now invisible beyond another line of hills .Ginny was over there somewhere .They were closer to each other today than they had been since Bill and Fleurs wedding but she could have no idea he was gazing toward her now thinking of her .He supposed he ought to be glad of it anyone he came into contact with was in danger Xenophiliuss attitude proved that .He turned away from the window and his gaze fell upon another peculiar object standing upon the cluttered curved sideboard a stone bust of a beautiful but austerelooking witch wearing a most bizarrelooking headdress .Two objects that resembled golden ear trumpets curved out from the sides .A tiny pair of glittering blue wings was stuck to a leather strap that ran over the top of her head while one of the orange radishes had been stuck to a second strap around her forehead .Look at this said Harry .Fetching said Ron .Surprised he didnt wear that to the wedding .They heard the front door close and a moment later Xenophilius had climbed back up the spiral staircase into the room his thin legs now encased in Wellington boots bearing a tray of illassorted teacups and a steaming teapot .Ah you have spotted my pet invention he said shoving the tray into Hermiones arms and joining Harry at the statues side .Modeled fittingly enough upon the head of the beautiful Rowena Ravenclaw . ‘Wit beyond measure is mans greatest treasureV He indicated the objects like ear trumpets .These are the Wrackspurt siphons to remove all sources of distraction from the thinkers immediate area .Here he pointed out the tiny wings a billywig propeller to induce an elevated frame of mind .Finally he pointed to the orange radish the Dirigible Plum so as to enhance the ability to accept the extraordinary .Xenophilius strode back to the tea tray which Hermione had managed to balance precariously on one of the cluttered side tables .May I offer you all an infusion of Gurdyroots ?said Xenophilius .We make it ourselves .As he started to pour out the drink which was as deeply purple as beetroot juice he added Luna is down beyond Bottom Bridge she is most excited that you are here .She ought not to be too long she has caught nearly enough Plimpies to make soup for all of us .Do sit down and help yourselves to sugar .Now he removed a tottering pile of papers from an armchair and sat down his Wellingtoned legs crossed how may I help you Mr Potter ?Well said Harry glancing at Hermione who nodded encouragingly its about that symbol you were wearing around your neck at Bill and Fleurs wedding Mr Lovegood .We wondered what it meant .Xenophilius raised his eyebrows .Are you referring to the sign of the Deathly Hallows ?THE TALE OF THE THREE BROTHERS Harry turned to look at Ron and Hermione .Neither of them seemed to have understood what Xenophilius had said either .The Deathly Hallows ?Thats right said Xenophilius .You havent heard of them ?Im not surprised .Very very few wizards believe .Witness that knuckleheaded young man at your brothers wedding he nodded at Ron who attacked me for sporting the symbol of a wellknown Dark wizard !Such ignorance .There is nothing Dark about the Hallows at least not in that crude sense .One simply uses the symbol to reveal oneself to other believers in the hope that they might help one with the Quest .He stirred several lumps of sugar into his Gurdyroot infusion and drank some .Im sorry said Harry .I still dont really understand .To be polite he took a sip from his cup too and almost gagged The stuff was quite disgusting as though someone had liquidized bogeyflavored Every Flavor Beans .Well you see believers seek the Deathly Hallows said Xenophilius smacking his lips in apparent appreciation of the Gurdyroot infusion .But what are the Deathly Hallows ?asked Hermione .Xenophilius set aside his empty teacup .I assume that you are all familiar with The Tale of the Three Brothers ?Harry said No but Ron and Hermione both said Yes .Xenophilius nodded gravely .Well well Mr Potter the whole thing starts with The Tale of the Three Brothers .I have a copy somewhere .He glanced vaguely around the room at the piles of parchment and books but Hermione said Ive got a copy Mr Lovegood Ive got it right here .And she pulled out The Tales of Beedle the Bard from the small beaded bag .The original ?inquired Xenophilius sharply and when she nodded he said Well then why dont you read it aloud ?Much the best way to make sure we all understand .Er .all right said Hermione nervously .She opened the book and Harry saw that the symbol they were investigating headed the top of the page as she gave a little cough and began to read . ‘There were once three brothers who were traveling along a lonely winding road at twilight Midnight our mum always told us said Ron who had stretched out arms behind his head to listen .Hermione shot him a look of annoyance .Sorry I just think its a bit spookier if its midnight !said Ron .Yeah because we really need a bit more fear in our lives said Harry before he could stop himself .Xenophilius did not seem to be paying much attention but was staring out of the window at the sky .Go on Hermione . ‘In time the brothers reached a river too deep to wade through and too dangerous to swim across .However these brothers were learned in the magical arts and so they simply waved their wands and made a bridge appear across the treacherous water .They were halfway across it when they found their path blocked by a hooded figure . ‘And Death spoke to them Sorry interjected Harry but Death spoke to them ?Its a fairy tale Harry !Right sorry .Go on . ‘And Death spoke to them .He was angry that he had been cheated out of three new victims for travelers usually drowned in the river .But Death was cunning .He pretended to congratulate the three brothers upon their magic and said that each had earned a prize for having been clever enough to evade him . ‘So the oldest brother who was a combative man asked for a wand more powerful than any in existence a wand that must always win duels for its owner a wand worthy of a wizard who had conquered Death !So Death crossed to an elder tree on the banks of the river fashioned a wand from a branch that hung there and gave it to the oldest brother . ‘Then the second brother who was an arrogant man decided that he wanted to humiliate Death still further and asked for the power to recall others from Death .So Death picked up a stone from the riverbank and gave it to the second brother and told him that the stone would have the power to bring back the dead . ‘And then Death asked the third and youngest brother what he would like .The youngest brother was the humblest and also the wisest of the brothers and he did not trust Death .So he asked for something that would enable him to go forth from that place without being followed by Death .And Death most unwillingly handed over his own Cloak of Invisibility .Deaths got an Invisibility Cloak ?Harry interrupted again .So he can sneak up on people said Ron .Sometimes he gets bored of running at them flapping his arms and shrieking .sorry Hermione . ‘Then Death stood aside and allowed the three brothers to continue on their way and they did so talking with wonder of the adventure they had had and admiring Deaths gifts . ‘In due course the brothers separated each for his own destination . ‘The first brother traveled on for a week or more and reaching a distant village sought out a fellow wizard with whom he had a quarrel .Naturally with the Elder Wand as his weapon he could not fail to win the duel that followed .Leaving his enemy dead upon the floor the oldest brother proceeded to an inn where he boasted loudly of the powerful wand he had snatched from Death himself and of how it made him invincible . ‘That very night another wizard crept upon the oldest brother as he lay winesodden upon his bed .The thief took the wand and for good measure slit the oldest brothers throat . ‘And so Death took the first brother for his own . ‘Meanwhile the second brother journeyed to his own home where he lived alone .Here he took out the stone that had the power to recall the dead and turned it thrice in his hand .To his amazement and his delight the figure of the girl he had once hoped to marry before her untimely death appeared at once before him . ‘Yet she was sad and cold separated from him as by a veil .Though she had returned to the mortal world she did not truly belong there and suffered .Finally the second brother driven mad with hopeless longing killed himself so as truly to join her . ‘And so Death took the second brother for his own . ‘But though Death searched for the third brother for many years he was never able to find him .It was only when he had attained a great age that the youngest brother finally took off the Cloak of Invisibility and gave it to his son .And then he greeted Death as an old friend and went with him gladly and equals they departed this life .Hermione closed the book .It was a moment or two before Xenophilius seemed to realize that she had stopped reading then he withdrew his gaze from the window and said Well there you are .Sorry ?said Hermione sounding confused .Those are the Deathly Hallows said Xenophilius .He picked up a quill from a packed table at his elbow and pulled a torn piece of parchment from between more books .The Elder Wand he said and he drew a straight vertical line upon the parchment .The Resurrection Stone he said and he added a circle on top of the line .The Cloak of Invisibility he finished enclosing both line and circle in a triangle to make the symbol that so intrigued Hermione .Together he said the Deathly Hallows .But theres no mention of the words ‘Deathly Hallows in the story said Hermione .Well of course not said Xenophilius maddeningly smug .That is a childrens tale told to amuse rather than to instruct .Those of us who understand these matters however recognize that the ancient story refers to three objects or Hallows which if united will make the possessor master of Death .There was a short silence in which Xenophilius glanced out of the window .Already the sun was low in the sky .Luna ought to have enough Plimpies soon he said quietly .When you say ‘master of Death said Ron .Master said Xenophilius waving an airy hand .Conqueror .Vanquisher .Whichever term you prefer .But then .do you mean .said Hermione slowly and Harry could tell that she was trying to keep any trace of skepticism out of her voice that you believe these objects these Hallows actually exist ?Xenophilius raised his eyebrows again .Well of course .But said Hermione and Harry could hear her restraint starting to crack Mr Lovegood how can you possibly believe ?Luna has told me all about you young lady said Xenophilius .You are I gather not unintelligent but painfully limited .Narrow .Closeminded .Perhaps you ought to try on the hat Hermione said Ron nodding toward the ludicrous headdress .His voice shook with the strain of not laughing .Mr Lovegood Hermione began again .We all know that there are such things as Invisibility Cloaks .They are rare but they exist .But Ah but the Third Hallow is a true Cloak of Invisibility Miss Granger !I mean to say it is not a traveling cloak imbued with a Disillusionment Charm or carrying a Bedazzling Hex or else woven from Demiguise hair which will hide one initially but fade with the years until it turns opaque .We are talking about a cloak that really and truly renders the wearer completely invisible and endures eternally giving constant and impenetrable concealment no matter what spells are cast at it .How many cloaks have you ever seen like that Miss Granger ?Hermione opened her mouth to answer then closed it again looking more confused than ever .She Harry and Ron glanced at one another and Harry knew that they were all thinking the same thing .It so happened that a cloak exactly like the one Xenophilius had just described was in the room with them at that very moment .Exactly said Xenophilius as if he had defeated them all in reasoned argument .None of you have ever seen such a thing .The possessor would be immeasurably rich would he not ?He glanced out of the window again .The sky was now tinged with the faintest trace of pink .All right said Hermione disconcerted .Say the Cloak existed .what about the stone Mr Lovegood ?The thing you call the Resurrection Stone ?What of it ?Well how can that be real ?Prove that it is not said Xenophilius .Hermione looked outraged .But thats Im sorry but thats completely ridiculous !How can I possibly prove it doesnt exist ?Do you expect me to get hold of of all the pebbles in the world and test them ?I mean you could claim that anythings real if the only basis for believing in it is that nobodys proved it doesnt exist !Yes you could said Xenophilius .I am glad to see that you are opening your mind a little .So the Elder Wand said Harry quickly before Hermione could retort you think that exists too ?Oh well in that case there is endless evidence said Xenophilius .The Elder Wand is the Hallow that is most easily traced because of the way in which it passes from hand to hand .Which is what ?asked Harry .Which is that the possessor of the wand must capture it from its previous owner if he is to be truly master of it said Xenophilius .Surely you have heard of the way the wand came to Egbert the Egregious after his slaughter of Emeric the Evil ?Of how Godelot died in his own cellar after his son Hereward took the wand from him ?Of the dreadful Loxias who took the wand from Barnabas Deverill whom he had killed ?The bloody trail of the Elder Wand is splattered across the pages of Wizarding history .Harry glanced at Hermione .She was frowning at Xenophilius but she did not contradict him .So where do you think the Elder Wand is now ?asked Ron .Alas who knows ?said Xenophilius as he gazed out of the window .Who knows where the Elder Wand lies hidden ?The trail goes cold with Arcus and Livius .Who can say which of them really defeated Loxias and which took the wand ?And who can say who may have defeated them ?History alas does not tell us .There was a pause .Finally Hermione asked stiffly Mr Lovegood does the Peverell family have anything to do with the Deathly Hallows ?Xenophilius looked taken aback as something shifted in Harrys memory but he could not locate it .Peverell .he had heard that name before .But you have been misleading me young woman !said Xenophilius now sitting up much straighter in his chair and goggling at Hermione .I thought you were new to the Hallows Quest !Many of us Questers believe that the Peverells have everything everything !to do with the Hallows !Who are the Peverells ?asked Ron .That was the name on the grave with the mark on it in Godrics Hollow said Hermione still watching Xenophilius .Ignotus Peverell .Exactly !said Xenophilius his forefinger raised pedantically .The sign of the Deathly Hallows on Ignotus s grave is conclusive proof !Of what ?asked Ron .Why that the three brothers in the story were actually the three Peverell brothers Antioch Cadmus and Ignotus !That they were the original owners of the Hallows !With another glance at the window he got to his feet picked up the tray and headed for the spiral staircase .You will stay for dinner ?he called as he vanished downstairs again .Everybody always requests our recipe for Freshwater Plimpy soup .Probably to show the Poisoning Department at St .Mungos said Ron under his breath .Harry waited until they could hear Xenophilius moving about in the kitchen downstairs before speaking .What do you think ?he asked Hermione .Oh Harry she said wearily its a pile of utter rubbish .This cant be what the sign really means .This must just be his weird take on it .What a waste of time .I spose this is the man who brought us Crumple Horned Snorkacks said Ron .You dont believe it either ?Harry asked him .Nah that storys just one of those things you tell kids to teach them lessons isnt it ? ‘Dont go looking for trouble dont pick fights dont go messing around with stuff thats best left alone !Just keep your head down mind your own business and youll be okay Come to think of it Ron added maybe that storys why elder wands are supposed to be unlucky .What are you talking about ?One of those superstitions isnt it ? ‘Mayborn witches will marry Muggles . ‘Jinx by twilight undone by midnight . ‘Wand of elder never prosper .You mustve heard them .My mums full of them .Harry and I were raised by Muggles Hermione reminded him .We were taught different superstitions .She sighed deeply as a rather pungent smell drifted up from the kitchen .The one good thing about her exasperation with Xenophilius was that it seemed to have made her forget that she was annoyed at Ron .I think youre right she told him .Its just a morality tale its obvious which gift is best which one youd choose The three of them spoke at the same time Hermione said the Cloak Ron said the wand and Harry said the stone .They looked at each other half surprised half amused .Youre supposed to say the Cloak Ron told Hermione but you wouldnt need to be invisible if you had the wand .An unbeatable wand Hermione come on !Weve already got an Invisibility Cloak said Harry .And its helped us rather a lot in case you hadnt noticed !said Hermione .Whereas the wand would be bound to attract trouble Only if you shouted about it argued Ron .Only if you were prat enough to go dancing around waving it over your head and singing ‘Ive got an unbeatable wand come and have a go if you think youre hard enough .As long as you kept your trap shut Yes but could you keep your trap shut ?said Hermione looking skeptical .You know the only true thing he said to us was that there have been stories about extra powerful wands for hundreds of years .There have ?asked Harry .Hermione looked exasperated The expression was so endearingly familiar that Harry and Ron grinned at each other .The Deathstick the Wand of Destiny they crop up under different names through the centuries usually in the possession of some Dark wizard whos boasting about them .Professor Binns mentioned some of them but oh its all nonsense .Wands are only as powerful as the wizards who use them .Some wizards just like to boast that theirs are bigger and better than other peoples .But how do you know said Harry that those wands the Deathstick and the Wand of Destiny arent the same wand surfacing over the centuries under different names ?What and theyre all really the Elder Wand made by Death ?said Ron .Harry laughed The strange idea that had occurred to him was after all ridiculous .His wand he reminded himself had been of holly not elder and it had been made by Ollivander whatever it had done that night Voldemort had pursued him across the skies .And if it had been unbeatable how could it have been broken ?So why would you take the stone ?Ron asked him .Well if you could bring people back we could have Sirius .MadEye .Dumbledore .my parents .Neither Ron nor Hermione smiled .But according to Beedle the Bard they wouldnt want to come back would they ?said Harry thinking about the tale they had just heard .I dont suppose there have been loads of other stories about a stone that can raise the dead have there ?he asked Hermione .No she replied sadly .I dont think anyone except Mr Lovegood could kid themselves thats possible .Beedle probably took the idea from the Sorcerers Stone you know instead of a stone to make you immortal a stone to reverse death .The smell from the kitchen was getting stronger It was something like burning underpants .Harry wondered whether it would be possible to eat enough of whatever Xenophilius was cooking to spare his feelings .What about the Cloak though ?said Ron slowly .Dont you realize hes right ?Ive got so used to Harrys Cloak and how good it is I never stopped to think .Ive never heard of one like Harrys .Its infallible .Weve never been spotted under it Of course not were invisible when were under it Ron !But all the stuff he said about other cloaks and theyre not exactly ten a Knut you know is true !Its never occurred to me before but Ive heard stuff about charms wearing off cloaks when they get old or them being ripped apart by spells so theyve got holes in .Harrys was owned by his dad so its not exactly new is it but its just .perfect !Yes all right but Ron the stone .As they argued in whispers Harry moved around the room only half listening .Reaching the spiral stair he raised his eyes absently to the next level and was distracted at once .His own face was looking back at him from the ceiling of the room above .After a moments bewilderment he realized that it was not a mirror but a painting .Curious he began to climb the stairs .Harry what are you doing ?I dont think you should look around when hes not here !But Harry had already reached the next level .Luna had decorated her bedroom ceiling with five beautifully painted faces Harry Ron Hermione Ginny and Neville .They were not moving as the portraits at Hogwarts moved but there was a certain magic about them all the same Harry thought they breathed .What appeared to be fine golden chains wove around the pictures linking them together but after examining them for a minute or so Harry realized that the chains were actually one word repeated a thousand times in golden ink friends .friends .friends .Harry felt a great rush of affection for Luna .He looked around the room .There was a large photograph beside the bed of a young Luna and a woman who looked very like her .They were hugging .Luna looked rather bettergroomed in this picture than Harry had ever seen her in life .The picture was dusty .This struck Harry as slightly odd .He stared around .Something was wrong .The pale blue carpet was also thick with dust .There were no clothes in the wardrobe whose doors stood ajar .The bed had a cold unfriendly look as though it had not been slept in for weeks .A single cobweb stretched over the nearest window across a bloodred sky .Whats wrong ?Hermione asked as Harry descended the staircase but before he could respond Xenophilius reached the top of the stairs from the kitchen now holding a tray laden with bowls .Mr Lovegood said Harry .Wheres Luna ?Excuse me ?Wheres Luna ?Xenophilius halted on the top step .I Ive already told you .She is down at Bottom Bridge fishing for Plimpies .So why have you only laid that tray for four ?Xenophilius tried to speak but no sound came out .The only noise was the continued chugging of the printing press and a slight rattle from the tray as Xenophilius s hands shook .I dont think Lunas been here for weeks said Harry .Her clothes are gone her bed hasnt been slept in .Where is she ?And why do you keep looking out of the window ?Xenophilius dropped the tray The bowls bounced and smashed .Harry Ron and Hermione drew their wands Xenophilius froze his hand about to enter his pocket .At that moment the printing press gave a huge bang and numerous Quibblers came streaming across the floor from underneath the tablecloth the press fell silent at last .Hermione stooped down and picked up one of the magazines her wand still pointing at Mr Lovegood .Harry look at this .He strode over to her as quickly as he could through all the clutter .The front of The Quibbler carried his own picture emblazoned with the words UNDESIRABLE NUMBER ONE and captioned with the reward money .The Quibblers going for a new angle then ?Harry asked coldly his mind working very fast .Is that what you were doing when you went into the garden Mr Lovegood ?Sending an owl to the Ministry ?Xenophilius licked his lips .They took my Luna he whispered .Because of what Ive been writing .They took my Luna and I dont know where she is what theyve done to her .But they might give her back to me if I if I Hand over Harry ?Hermione finished for him .No deal said Ron flatly .Get out of the way were leaving .Xenophilius looked ghastly a century old his lips drawn back into a dreadful leer .They will be here at any moment .I must save Luna .I cannot lose Luna .You must not leave .He spread his arms in front of the staircase and Harry had a sudden vision of his mother doing the same thing in front of his crib .Dont make us hurt you Harry said .Get out of the way Mr Lovegood .HARRY !Hermione screamed .Figures on broomsticks were flying past the windows .As the three of them looked away from him Xenophilius drew his wand .Harry realized their mistake just in time He launched himself sideways shoving Ron and Hermione out of harms way as Xenophiliuss Stunning Spell soared across the room and hit the Erumpent horn .There was a colossal explosion .The sound of it seemed to blow the room apart Fragments of wood and paper and rubble flew in all directions along with an impenetrable cloud of thick white dust .Harry flew through the air then crashed to the floor unable to see as debris rained upon him his arms over his head .He heard Hermiones scream Rons yell and a series of sickening metallic thuds which told him that Xenophilius had been blasted off his feet and fallen backward down the spiral stairs .Half buried in rubble Harry tried to raise himself He could barely breathe or see for dust .Half of the ceiling had fallen in and the end of Lunas bed was hanging through the hole .The bust of Rowena Ravenclaw lay beside him with half its face missing fragments of torn parchment were floating through the air and most of the printing press lay on its side blocking the top of the staircase to the kitchen .Then another white shape moved close by and Hermione coated in dust like a second statue pressed her finger to her lips .The door downstairs crashed open .Didnt I tell you there was no need to hurry Travers ?said a rough voice .Didnt 1 tell you this nutter was just raving as usual ?There was a bang and a scream of pain from Xenophilius .No .no .upstairs .Potter !I told you last week Lovegood we werent coming back for anything less than some solid information !Remember last week ?When you wanted to swap your daughter for that stupid bleeding headdress ?And the week before another bang another squeal when you thought wed give her back if you offered us proof there are Crumple bang Headed bang Snorkacks ?No no I beg you !sobbed Xenophilius .It really is Potter !Really !And now it turns out you only called us here to try and blow us up !roared the Death Eater and there was a volley of bangs interspersed with squeals of agony from Xenophilius .The place looks like its about to fall in Selwyn said a cool second voice echoing up the mangled staircase .The stairs are completely blocked .Could try clearing it ?Might bring the place down .You lying piece of filth shouted the wizard named Selwyn .Youve never seen Potter in your life have you ?Thought youd lure us here to kill us did you ?And you think youll get your girl back like this ?I swear .I swear .Potters upstairs !Homenum revelio said the voice at the foot of the stairs .Harry heard Hermione gasp and he had the odd sensation that something was swooping low over him immersing his body in its shadow .Theres someone up there all right Selwyn said the second man sharply .Its Potter I tell you its Potter !sobbed Xenophilius .Please .please .give me Luna just let me have Luna .You can have your little girl Lovegood said Selwyn if you get up those stairs and bring me down Harry Potter .But if this is a plot if its a trick if youve got an accomplice waiting up there to ambush us well see if we can spare a bit of your daughter for you to bury .Xenophilius gave a wail of fear and despair .There were scurryings and scrapings Xenophilius was trying to get through the debris on the stairs .Come on Harry whispered weve got to get out of here .He started to dig himself out under cover of all the noise Xenophilius was making on the staircase .Ron was buried deepest Harry and Hermione climbed as quietly as they could over all the wreckage to where he lay trying to prise a heavy chest of drawers off his legs .While Xenophilius s banging and scraping drew nearer and nearer Hermione managed to free Ron with the use of a Hover Charm .All right breathed Hermione as the broken printing press blocking the top of the stairs began to tremble Xenophilius was feet away from them .She was still white with dust .Do you trust me Harry ?Harry nodded .Okay then Hermione whispered give me the Invisibility Cloak .Ron youre going to put it on .Me ?But Harry Please Ron Harry hold on tight to my hand Ron grab my shoulder .Harry held out his left hand .Ron vanished beneath the Cloak .The printing press blocking the stairs was vibrating Xenophilius was trying to shift it using a Hover Charm .Harry did not know what Hermione was waiting for .Hold tight she whispered .Hold tight .any second Xenophiliuss paper white face appeared over the top of the sideboard .Obliviate cried Hermione pointing her wand first into his face then at the floor beneath them .Deprimo She had blasted a hole in the sitting room floor .They fell like boulders Harry still holding onto her hand for dear life there was a scream from below and he glimpsed two men trying to get out of the way as vast quantities of rubble and broken furniture rained all around them from the shattered ceiling .Hermione twisted in midair and the thundering of the collapsing house rang in Harrys ears as she dragged him once more into darkness .THE DEATHLY HALLOWS Harry fell panting onto grass and scrambled up at once .They seemed to have landed in the corner of a field at dusk Hermione was already running in a circle around them waving her wand .Protego Totalum .Salvio Hexia .That treacherous old bleeder !Ron panted emerging from beneath the Invisibility Cloak and throwing it to Harry .Hermione youre a genius a total genius I cant believe we got out of that !Cave Inimicum .Didnt I say it was an Erumpent horn didnt I tell him ?And now his house has been blown apart !Serves him right said Ron examining his torn jeans and the cuts to his legs .What dyou reckon theyll do to him ?Oh I hope they dont kill him !groaned Hermione .Thats why I wanted the Death Eaters to get a glimpse of Harry before we left so they knew Xenophilius hadnt been lying !Why hide me though ?asked Ron .Youre supposed to be in bed with spattergroit Ron !Theyve kidnapped Luna because her father supported Harry !What would happen to your family if they knew youre with him ?But what about your mum and dad ?Theyre in Australia said Hermione .They should be all right .They dont know anything .Youre a genius Ron repeated looking awed .Yeah you are Hermione agreed Harry fervently .I dont know what wed do without you .She beamed but became solemn at once .What about Luna ?Well if theyre telling the truth and shes still alive began Ron .Dont say that dont say it !squealed Hermione .She must be alive she must !Then shell be in Azkaban I expect said Ron .Whether she survives the place though .Loads dont .She will said Harry .He could not bear to contemplate the alternative .Shes tough Luna much tougher than youd think .Shes probably teaching all the inmates about Wrackspurts and Nargles .I hope youre right said Hermione .She passed a hand over her eyes .Id feel so sorry for Xenophilius if if he hadnt just tried to sell us to the Death Eaters yeah said Ron .They put up the tent and retreated inside it where Ron made them tea .After their narrow escape the chilly musty old place felt like home safe familiar and friendly .Oh why did we go there ?groaned Hermione after a few minutes silence .Harry you were right it was Godrics Hollow all over again a complete waste of time !The Deathly Hallows .such rubbish .although actually a sudden thought seemed to have struck her he might have made it all up mightnt he ?He probably doesnt believe in the Deathly Hallows at all he just wanted to keep us talking until the Death Eaters arrived !I dont think so said Ron .Its a damn sight harder making stuff up when youre under stress than youd think .I found that out when the Snatchers caught me .It was much easier pretending to be Stan because I knew a bit about him than inventing a whole new person .Old Lovegood was under loads of pressure trying to make sure we stayed put .I reckon he told us the truth or what he thinks is the truth just to keep us talking .Well I dont suppose it matters sighed Hermione .Even if he was being honest I never heard such a lot of nonsense in all my life .Hang on though said Ron .The Chamber of Secrets was supposed to be a myth wasnt it ?But the Deathly Hallows cant exist Ron !You keep saying that but one of them can said Ron .Harrys Invisibility Cloak The Tale of the Three Brothers is a story said Hermione firmly .A story about how humans are frightened of death .If surviving was as simple as hiding under the Invisibility Cloak wed have everything we need already !I dont know .We could do with an unbeatable wand said Harry turning the blackthorn wand he so disliked over in his fingers .Theres no such thing Harry !You said there have been loads of wands the Deathstick and whatever they were called All right even if you want to kid yourself the Elder Wands real what about the Resurrection Stone ?Her fingers sketched quotation marks around the name and her tone dripped sarcasm .No magic can raise the dead and thats that !When my wand connected with YouKnowWhos it made my mum and dad appear .and Cedric .But they werent really back from the dead were they ?said Hermione .Those kinds of of pale imitations arent the same as truly bringing someone back to life .But she the girl in the tale didnt really come back did she ?The story says that once people are dead they belong with the dead .But the second brother still got to see her and talk to her didnt he ?He even lived with her for a while .He saw concern and something less easily definable in Hermiones expression .Then as she glanced at Ron Harry realized that it was fear He had scared her with his talk of living with dead people .So that Peverell bloke whos buried in Godrics Hollow he said hastily trying to sound robustly sane you dont know anything about him then ?No she replied looking relieved at the change of subject .I looked him up after I saw the mark on his grave if hed been anyone famous or done anything important Im sure hed be in one of our books .The only place Ive managed to find the name ‘Peverell is Natures Nobility A Wizarding Genealogy .I borrowed it from Kreacher she explained as Ron raised his eyebrows .It lists the pureblood families that are now extinct in the male line .Apparently the Peverells were one of the earliest families to vanish . ‘Extinct in the male line ?repeated Ron .It means the names died out said Hermione centuries ago in the case of the Peverells .They could still have descendants though theyd just be called something different .And then it came to Harry in one shining piece the memory that had stirred at the sound of the name Peverell a filthy old man brandishing an ugly ring in the face of a Ministry official and he cried aloud Marvolo Gaunt !Sorry ?said Ron and Hermione together .Marvolo Gaunti You Know Whos grandfather !In the Pensieve !With Dumbledore !Marvolo Gaunt said he was descended from the Peverells !Ron and Hermione looked bewildered .The ring the ring that became the Horcrux Marvolo Gaunt said it had the Peverell coat of arms on it !I saw him waving it in the bloke from the Ministrys face he nearly shoved it up his nose !The Peverell coat of arms ?said Hermione sharply .Could you see what it looked like ?Not really said Harry trying to remember .There was nothing fancy on there as far as I could see maybe a few scratches .I only ever saw it really close up after it had been cracked open .Harry saw Hermione s comprehension in the sudden widening of her eyes .Ron was looking from one to the other astonished .Blimey .You reckon it was this sign again ?The sign of the Hallows ?Why not ?said Harry excitedly .Marvolo Gaunt was an ignorant old git who lived like a pig all he cared about was his ancestry .If that ring had been passed down through the centuries he might not have known what it really was .There were no books in that house and trust me he wasnt the type to read fairy tales to his kids .Hed have loved to think the scratches on the stone were a coat of arms because as far as he was concerned having pure blood made you practically royal .Yes .and thats all very interesting said Hermione cautiously but Harry if youre thinking what I think youre think Well why not ?Why not ?said Harry abandoning caution .It was a stone wasnt it ?He looked at Ron for support .What if it was the Resurrection Stone ?Rons mouth fell open .Blimey but would it still work if Dumbledore broke ?Work ?Work ?Ron it never worked !Theres no such thing as a Resurrection Stone Hermione had leapt to her feet looking exasperated and angry .Harry youre trying to fit everything into the Hallows story Fit everything in ?he repeated .Hermione it fits of its own accord !I know the sign of the Deathly Hallows was on that stone !Gaunt said he was descended from the Peverells !A minute ago you told us you never saw the mark on the stone properly !Where dyou reckon the ring is now ?Ron asked Harry .What did Dumbledore do with it after he broke it open ?But Harrys imagination was racing ahead far beyond Ron and Hermione s .Three objects or Hallows which if united will make the possessor master of Death .Master .Conqueror .Vanquisher .The last enemy that shall be destroyed is death .And he saw himself possessor of the Hallows facing Voldemort whose Horcruxes were no match .Neither can live while the other survives .Was this the answer ?Hallows versus Horcruxes ?Was there a way after all to ensure that he was the one who triumphed ?If he were the master of the Deathly Hallows would he be safe ?Harry ?But he scarcely heard Hermione He had pulled out his Invisibility Cloak and was running it through his fingers the cloth supple as water light as air .He had never seen anything to equal it in his nearly seven years in the Wizarding world .The Cloak was exactly what Xenophilius had described A cloak that really and truly renders the wearer completely invisible and endures eternally giving constant and impenetrable concealment no matter what spells are cast at it .And then with a gasp he remembered Dumbledore had my Cloak the night my parents died !His voice shook and he could feel the color in his face but he did not care .My mum told Sirius that Dumbledore borrowed the Cloak !This is why !He wanted to examine it because he thought it was the third Hallow !Ignotus Peverell is buried in Godrics Hollow .Harry was walking blindly around the tent feeling as though great new vistas of truth were opening all around him .Hes my ancestor !Im descended from the third brother !It all makes sense !He felt armed in certainty in his belief in the Hallows as if the mere idea of possessing them was giving him protection and he felt joyous as he turned back to the other two .Harry said Hermione again but he was busy undoing the pouch around his neck his fingers shaking hard .Read it he told her pushing his mothers letter into her hand .Read it !Dumbledore had the Cloak Hermione !Why else would he want it ?He didnt need a Cloak he could perform a Disillusionment Charm so powerful that he made himself completely invisible without one !Something fell to the floor and rolled glittering under a chair He had dislodged the Snitch when he pulled out the letter .He stooped to pick it up and then the newly tapped spring of fabulous discoveries threw him another gift and shock and wonder erupted inside him so that he shouted out .ITS IN HERE !He left me the ring its in the Snitch !You you reckon ?He could not understand why Ron looked taken aback .It was so obvious so clear to Harry Everything fit everything .His Cloak was the third Hallow and when he discovered how to open the Snitch he would have the second and then all he needed to do was find the first Hallow the Elder Wand and then But it was as though a curtain fell on a lit stage All his excitement all his hope and happiness were extinguished at a stroke and he stood alone in the darkness and the glorious spell was broken .Thats what hes after .The change in his voice made Ron and Hermione look even more scared .YouKnowWhos after the Elder Wand .He turned his back on their strained incredulous faces .He knew it was the truth .It all made sense .Voldemort was not seeking a new wand he was seeking an old wand a very old wand indeed .Harry walked to the entrance of the tent forgetting about Ron and Hermione as he looked out into the night thinking .Voldemort had been raised in a Muggle orphanage .Nobody could have told him The Tales of Beedle the Bard when he was a child any more than Harry had heard them .Hardly any wizards believed in the Deathly Hallows .Was it likely that Voldemort knew about them ?Harry gazed into the darkness .If Voldemort had known about the Deathly Hallows surely he would have sought them done anything to possess them three objects that made the possessor master of Death ?If he had known about the Deathly Hallows he might not have needed Horcruxes in the first place .Didnt the simple fact that he had taken a Hallow and turned it into a Horcrux demonstrate that he did not know this last great Wizarding secret ?Which meant that Voldemort sought the Elder Wand without realizing its full power without understanding that it was one of three .for the wand was the Hallow that could not be hidden whose existence was best known .The bloody trail of the Elder Wand is splattered across the pages of Wizarding history .Harry watched the cloudy sky curves of smokegray and silver sliding over the face of the white moon .He felt lightheaded with amazement at his discoveries .He turned back into the tent .It was a shock to see Ron and Hermione standing exactly where he had left them Hermione still holding Lilys letter Ron at her side looking slightly anxious .Didnt they realize how far they had traveled in the last few minutes ?This is it Harry said trying to bring them inside the glow of his own astonished certainty .This explains everything .The Deathly Hallows are real and Ive got one maybe two He held up the Snitch .and YouKnowWhos chasing the third but he doesnt realize .he just thinks its a powerful wand Harry said Hermione moving across to him and handing him back Lilys letter Im sorry but I think youve got this wrong all wrong .But dont you see ?It all fits No it doesnt she said .It doesnt Harry youre just getting carried away .Please she said as he started to speak please just answer me this If the Deathly Hallows really existed and Dumbledore knew about them knew that the person who possessed all three of them would be master of Death Harry why wouldnt he have told you ?Why ?He had his answer ready .But you said it Hermione !Youve got to find out about them for yourself !Its a Quest !But I only said that to try and persuade you to come to the Lovegoods !cried Hermione in exasperation .I didnt really believe it !Harry took no notice .Dumbledore usually let me find out stuff for myself .He let me try my strength take risks .This feels like the kind of thing hed do .Harry this isnt a game this isnt practice !This is the real thing and Dumbledore left you very clear instructions Find and destroy the Horcruxes !That symbol doesnt mean anything forget the Deathly Hallows we cant afford to get sidetracked Harry was barely listening to her .He was turning the Snitch over and over in his hands half expecting it to break open to reveal the Resurrection Stone to prove to Hermione that he was right that the Deathly Hallows were real .She appealed to Ron .You dont believe in this do you ?Harry looked up .Ron hesitated .I dunno .I mean .bits of it sort of fit together said Ron awkwardly .But when you look at the whole thing .He took a deep breath .I think were supposed to get rid of Horcruxes Harry .Thats what Dumbledore told us to do .Maybe .maybe we should forget about this Hallows business .Thank you Ron said Hermione .Ill take first watch .And she strode past Harry and sat down in the tent entrance bringing the action to a fierce full stop .But Harry hardly slept that night .The idea of the Deathly Hallows had taken possession of him and he could not rest while agitating thoughts whirled through his mind the wand the stone and the Cloak if he could just possess them all .I open at the close .But what was ‘the close ?Why couldnt he have the stone now ?If only he had the stone he could ask Dumbledore these questions in person .and Harry murmured words to the Snitch in the darkness trying everything even Parseltongue but the golden ball would not open .And the wand the Elder Wand where was that hidden ?Where was Voldemort searching now ?Harry wished his scar would burn and show him Voldemorts thoughts because for the first time ever he and Voldemort were united in wanting the very same thing .Hermione would not like that idea of course .But then she did not believe .Xenophilius had been right in a way .Limited .Narrow .Closeminded .The truth was that she was scared of the idea of the Deathly Hallows especially of the Resurrection Stone .and Harry pressed his mouth again to the Snitch kissing it nearly swallowing it but the cold metal did not yield .It was nearly dawn when he remembered Luna alone in a cell in Azkaban surrounded by dementors and he suddenly felt ashamed of himself .He had forgotten all about her in his feverish contemplation of the Hallows .If only they could rescue her but dementors in those numbers would be virtually unassailable .Now he came to think about it he had not yet tried casting a Patronus with the blackthorn wand .He must try that in the morning .If only there was a way of getting a better wand .And desire for the Elder Wand the Deathstick unbeatable invincible swallowed him once more .They packed up the tent next morning and moved on through a dreary shower of rain .The downpour pursued them to the coast where they pitched the tent that night and persisted through the whole week through sodden landscapes that Harry found bleak and depressing .He could think only of the Deathly Hallows .It was as though a flame had been lit inside him that nothing not Hermione s flat disbelief nor Rons persistent doubts could extinguish .And yet the fiercer the longing for the Hallows burned inside him the less joyful it made him .He blamed Ron and Hermione Their determined indifference was as bad as the relentless rain for dampening his spirits but neither could erode his certainty which remained absolute .Harrys belief in and longing for the Hallows consumed him so much that he felt quite isolated from the other two and their obsession with the Horcruxes .Obsession ?said Hermione in a low fierce voice when Harry was careless enough to use the word one evening after Hermione had told him off for his lack of interest in locating more Horcruxes .Were not the ones with an obsession Harry !Were the ones trying to do what Dumbledore wanted us to do !But he was impervious to the veiled criticism .Dumbledore had left the sign of the Hallows for Hermione to decipher and he had also Harry remained convinced of it left the Resurrection Stone hidden in the golden Snitch .Neither can live while the other survives .master of Death .Why didnt Ron and Hermione understand ? ‘The last enemy that shall be destroyed is death Harry quoted calmly .I thought it was YouKnowWho we were supposed to be fighting ?Hermione retorted and Harry gave up on her .Even the mystery of the silver doe which the other two insisted on discussing seemed less important to Harry now a vaguely interesting sideshow .The only other thing that mattered to him was that his scar had begun to prickle again although he did all he could to hide this fact from the other two .He sought solitude whenever it happened but was disappointed by what he saw .The visions he and Voldemort were sharing had changed in quality they had become blurred shifting as though they were moving in and out of focus .Harry was just able to make out the indistinct features of an object that looked like a skull and something like a mountain that was more shadow than substance .Used to images sharp as reality Harry was disconcerted by the change .He was worried that the connection between himself and Voldemort had been damaged a connection that he both feared and whatever he had told Hermione prized .Somehow Harry connected these unsatisfying vague images with the destruction of his wand as if it was the blackthorn wands fault that he could no longer see into Voldemorts mind as well as before .As the weeks crept on Harry could not help but notice even through his new selfabsorption that Ron seemed to be taking charge .Perhaps because he was determined to make up for having walked out on them perhaps because Harrys descent into listlessness galvanized his dormant leadership qualities Ron was the one now encouraging and exhorting the other two into action .Three Horcruxes left he kept saying .We need a plan of action come on !Where havent we looked ?Lets go through it again .The orphanage .Diagon Alley Hogwarts the Riddle House Borgin and Burkes Albania every place that they knew Tom Riddle had ever lived or worked visited or murdered Ron and Hermione raked over them again Harry joining in only to stop Hermione pestering him .He would have been happy to sit alone in silence trying to read Voldemorts thoughts to find out more about the Elder Wand but Ron insisted on journeying to ever more unlikely places simply Harry was aware to keep them moving .You never know was Rons constant refrain .Upper Flagley is a Wizarding village he mightve wanted to live there .Lets go and have a poke around .These frequent forays into Wizarding territory brought them within occasional sight of Snatchers .Some of them are supposed to be as bad as Death Eaters said Ron .The lot that got me were a bit pathetic but Bill reckons some of them are really dangerous .They said on Potterwatch On what ?said Harry .Potterwatch didnt I tell you thats what it was called ?The program I keep trying to get on the radio the only one that tells the truth about whats going on !Nearly all the programs are following YouKnow Whos line all except Potterwatch .I really want you to hear it but its tricky tuning in .Ron spent evening after evening using his wand to beat out various rhythms on top of the wireless while the dials whirled .Occasionally they would catch snatches of advice on how to treat dragon pox and once a few bars of A Cauldron Full of Hot Strong Love .While he tapped Ron continued to try to hit on the correct password muttering strings of random words under his breath .Theyre normally something to do with the Order he told them .Bill had a real knack for guessing them .Im bound to get one in the end .But not until March did luck favor Ron at last .Harry was sitting in the tent entrance on guard duty staring idly at a clump of grape hyacinths that had forced their way through the chilly ground when Ron shouted excitedly from inside the tent .Ive got it Ive got it !Password was Altars !Get in here Harry !Roused for the first time in days from his contemplation of the Deathly Hallows Harry hurried back inside the tent to find Ron and Hermione kneeling on the floor beside the little radio .Hermione who had been polishing the sword of Gryffindor just for something to do was sitting openmouthed staring at the tiny speaker from which a most familiar voice was issuing . .apologize for our temporary absence from the airwaves which was due to a number of house calls in our area by those charming Death Eaters .But thats Lee Jordan !said Hermione .I know !beamed Ron .Cool eh ? .now found ourselves another secure location Lee was saying and Im pleased to tell you that two of our regular contributors have joined me here this evening .Evening boys !Hi .Evening River . ‘River thats Lee Ron explained .Theyve all got code names but you can usually tell Shh !said Hermione .But before we hear from Royal and Romulus Lee went on lets take a moment to report those deaths that the Wizarding Wireless Network News and Daily Prophet dont think important enough to mention .It is with great regret that we inform our listeners of the murders of Ted Tonks and Dirk Cresswell .Harry felt a sick swooping in his belly .He Ron and Hermione gazed at one another in horror .A goblin by the name of Gornuk was also killed .It is believed that Muggleborn Dean Thomas and a second goblin both believed to have been traveling with Tonks Cresswell and Gornuk may have escaped .If Dean is listening or if anyone has any knowledge of his whereabouts his parents and sisters are desperate for news .Meanwhile in Gaddley a Muggle family of five has been found dead in their home .Muggle authorities are attributing the deaths to a gas leak but members of the Order of the Phoenix inform me that it was the Killing Curse more evidence as if it were needed of the fact that Muggle slaughter is becoming little more than a recreational sport under the new regime .Finally we regret to inform our listeners that the remains of Bathilda Bagshot have been discovered in Godrics Hollow .The evidence is that she died several months ago .The Order of the Phoenix informs us that her body showed unmistakable signs of injuries inflicted by Dark Magic .Listeners Id like to invite you now to join us in a minutes silence in memory of Ted Tonks Dirk Cresswell Bathilda Bagshot Gornuk and the unnamed but no less regretted Muggles murdered by the Death Eaters .Silence fell and Harry Ron and Hermione did not speak .Half of Harry yearned to hear more half of him was afraid of what might come next .It was the first time he had felt fully connected to the outside world for a long time .Thank you said Lees voice .And now we turn to regular contributor Royal for an update on how the new Wizarding order is affecting the Muggle world .Thanks River said an unmistakable voice deep measured reassuring .Kingsley !burst out Ron .We know !said Hermione hushing him .Muggles remain ignorant of the source of their suffering as they continue to sustain heavy casualties said Kingsley .However we continue to hear truly inspirational stories of wizards and witches risking their own safety to protect Muggle friends and neighbors often without the Muggles knowledge .Id like to appeal to all our listeners to emulate their example perhaps by casting a protective charm over any Muggle dwellings in your street .Many lives could be saved if such simple measures are taken .And what would you say Royal to those listeners who reply that in these dangerous times it should be Wizards first ?asked Lee .Id say that its one short step from Wizards first to ‘Purebloods first and then to ‘Death Eaters replied Kingsley .Were all human arent we ?Every human life is worth the same and worth saving .Excellently put Royal and youve got my vote for Minister of Magic if ever we get out of this mess said Lee .And now over to Romulus for our popular feature ‘Pals of Potter .Thanks River said another very familiar voice Ron started to speak but Hermione forestalled him in a whisper .We know its Lupin Romulus do you maintain as you have every time youve appeared on our program that Harry Potter is still alive ?I do said Lupin firmly .There is no doubt at all in my mind that his death would be proclaimed as widely as possible by the Death Eaters if it had happened because it would strike a deadly blow at the morale of those resisting the new regime .The Boy Who Lived remains a symbol of everything for which we are fighting the triumph of good the power of innocence the need to keep resisting .A mixture of gratitude and shame welled up in Harry .Had Lupin forgiven him then for the terrible things he had said when they had last met ?And what would you say to Harry if you knew he was listening Romulus ?Id tell him were all with him in spirit said Lupin then hesitated slightly .And Id tell him to follow his instincts which are good and nearly always right .Harry looked at Hermione whose eyes were full of tears .Nearly always right she repeated .Oh didnt I tell you ?said Ron in surprise .Bill told me Lupins living with Tonks again !And apparently shes getting pretty big too . .and our usual update on those friends of Harry Potters who are suffering for their allegiance ?Lee was saying .Well as regular listeners will know several of the more outspoken supporters of Harry Potter have now been imprisoned including Xenophilius Lovegood erstwhile editor of The Quibbler said Lupin .At least hes still alive !muttered Ron .We have also heard within the last few hours that Rubeus Hagrid all three of them gasped and so nearly missed the rest of the sentence wellknown gamekeeper at Hogwarts School has narrowly escaped arrest within the grounds of Hogwarts where he is rumored to have hosted a ‘Support Harry Potter party in his house .However Hagrid was not taken into custody and is we believe on the run .I suppose it helps when escaping from Death Eaters if youve got a sixteenfoothigh half brother ?asked Lee .It would tend to give you an edge agreed Lupin gravely .May I just add that while we here at Potterwatch applaud Hagrids spirit we would urge even the most devoted of Harrys supporters against following Hagrids lead . ‘Support Harry Potter parties are unwise in the present climate .Indeed they are Romulus said Lee so we suggest that you continue to show your devotion to the man with the lightning scar by listening to PotterwatcM And now lets move to news concerning the wizard who is proving just as elusive as Harry Potter .We like to refer to him as the Chief Death Eater and here to give his views on some of the more insane rumors circulating about him Id like to introduce a new correspondent Rodent . ‘Rodent ?said yet another familiar voice and Harry Ron and Hermione cried out together Fred !No is it George ?Its Fred I think said Ron leaning in closer as whichever twin it was said Im not being ‘Rodent no way I told you I wanted to be ‘Rapier !Oh all right then . ‘Rapier could you please give us your take on the various stories weve been hearing about the Chief Death Eater ?Yes River I can said Fred .As our listeners will know unless theyve taken refuge at the bottom of a garden pond or somewhere similar YouKnowWhos strategy of remaining in the shadows is creating a nice little climate of panic .Mind you if all the alleged sightings of him are genuine we must have a good nineteen YouKnowWhos running around the place .Which suits him of course said Kingsley .The air of mystery is creating more terror than actually showing himself .Agreed said Fred .So people lets try and calm down a bit .Things are bad enough without inventing stuff as well .For instance this new idea that You KnowWho can kill with a single glance from his eyes .Thats a basilisk listeners .One simple test Check whether the thing thats glaring at you has got legs .If it has its safe to look into its eyes although if it really is YouKnowWho thats still likely to be the last thing you ever do .For the first time in weeks and weeks Harry was laughing He could feel the weight of tension leaving him .And the rumors that he keeps being sighted abroad ?asked Lee .Well who wouldnt want a nice little holiday after all the hard work hes been putting in ?asked Fred .Point is people dont get lulled into a false sense of security thinking hes out of the country .Maybe he is maybe he isnt but the fact remains he can move faster than Severus Snape confronted with shampoo when he wants to so dont count on him being a long way away if youre planning on taking any risks .I never thought Id hear myself say it but safety first !Thank you very much for those wise words Rapier said Lee .Listeners that brings us to the end of another Potterwatch .We dont know when it will be possible to broadcast again but you can be sure we shall be back .Keep twiddling those dials The next password will be ‘MadEye .Keep each other safe Keep faith .Good night .The radios dial twirled and the lights behind the tuning panel went out .Harry Ron and Hermione were still beaming .Hearing familiar friendly voices was an extraordinary tonic Harry had become so used to their isolation he had nearly forgotten that other people were resisting Voldemort .It was like waking from a long sleep .Good eh ?said Ron happily .Brilliant said Harry .Its so brave of them sighed Hermione admiringly .If they were found .Well they keep on the move dont they ?said Ron .Like us .But did you hear what Fred said ?asked Harry excitedly now the broadcast was over his thoughts turned again toward his allconsuming obsession .Hes abroad !Hes still looking for the Wand I knew it !Harry Come on Hermione why are you so determined not to admit it ?Vol HARRY NO !demorts after the Elder Wand !The names Taboo !Ron bellowed leaping to his feet as a loud crack sounded outside the tent .I told you Harry I told you we cant say it anymore weve got to put the protection back around us quickly its how they find But Ron stopped talking and Harry knew why .The Sneakoscope on the table had lit up and begun to spin they could hear voices coming nearer and nearer rough excited voices .Ron pulled the Deluminator out of his pocket and clicked it Their lamps went out .Come out of there with your hands up !came a rasping voice through the darkness .We know youre in there !Youve got half a dozen wands pointing at you and we dont care who we curse !MALFOY MANOR Harry looked around at the other two now mere outlines in the darkness .He saw Hermione point her wand not toward the outside but into his face there was a bang a burst of white light and he buckled in agony unable to see .He could feel his face swelling rapidly under his hands as heavy footfalls surrounded him .Get up vermin .Unknown hands dragged Harry roughly off the ground .Before he could stop them someone had rummaged through his pockets and removed the blackthorn wand .Harry clutched at his excruciatingly painful face which felt unrecognizable beneath his fingers tight swollen and puffy as though he had suffered some violent allergic reaction .His eyes had been reduced to slits through which he could barely see his glasses fell off as he was bundled out of the tent all he could make out were the blurred shapes of four or five people wrestling Ron and Hermione outside too .Get off her !Ron shouted .There was the unmistakable sound of knuckles hitting flesh Ron grunted in pain and Hermione screamed No !Leave him alone leave him alone !Your boyfriends going to have worse than that done to him if hes on my list said the horribly familiar rasping voice .Delicious girl .What a treat .I do enjoy the softness of the skin .Harrys stomach turned over .He knew who this was Fenrir Grey back the werewolf who was permitted to wear Death Eater robes in return for his hired savagery .Search the tent !said another voice .Harry was thrown facedown onto the ground .A thud told him that Ron had been cast down beside him .They could hear footsteps and crashes the men were pushing over chairs inside the tent as they searched .Now lets see who weve got said Greybacks gloating voice from overhead and Harry was rolled over onto his back .A beam of wandlight fell into his face and Grey back laughed .Ill be needing butterbeer to wash this one down .What happened to you ugly ?Harry did not answer immediately .I said repeated Greyback and Harry received a blow to the diaphragm that made him double over in pain what happened to you ?Stung Harry muttered .Been stung .Yeah looks like it said a second voice .Whats your name ?snarled Greyback .Dudley said Harry .And your first name ?I Vernon .Vernon Dudley .Check the list Scabior said Greyback and Harry heard him move sideways to look down at Ron instead .And what about you ginger ?Stan Shunpike said Ron .Like ell you are said the man called Scabior .We know Stan Shunpike es put a bit of work our way .There was another thud .Ib Bardy said Ron and Harry could tell that his mouth was full of blood .Bardy Weadley .A Weasley ?rasped Greyback .So youre related to blood traitors even if youre not a Mudblood .And lastly your pretty little friend .The relish in his voice made Harrys flesh crawl .Easy Greyback said Scabior over the jeering of the others .Oh Im not going to bite just yet .Well see if shes a bit quicker at remembering her name than Barny .Who are you girly ?Penelope Clearwater said Hermione .She sounded terrified but convincing .Whats your blood status ?Halfblood said Hermione .Easy enough to check said Scabior .But the ole lot of em look like they could still be ogwarts age Weh lebt said Ron .Left ave you ginger ?said Scabior .And you decided to go camping ?And you thought just for a laugh youd use the Dark Lords name ?Nod a laugh said Ron .Aggiden .Accident ?There was more jeering laughter .You know who used to like using the Dark Lords name Weasley ?growled Greyback .The Order of the Phoenix .Mean anything to you ?Doh .Well they dont show the Dark Lord proper respect so the names been Tabooed .A few Order members have been tracked that way .Well see .Bind them up with the other two prisoners !Someone yanked Harry up by the hair dragged him a short way pushed him down into a sitting position then started binding him backtoback with other people .Harry was still half blind barely able to see anything through his puffedup eyes .When at last the man tying them had walked away Harry whispered to the other prisoners .Anyone still got a wand ?No said Ron and Hermione from either side of him .This is all my fault .I said the name Im sorry Harry ?It was a new but familiar voice and it came from directly behind Harry from the person tied to Hermiones left .Dean ?It is you !If they find out who theyve got !Theyre Snatchers theyre only looking for truants to sell for gold Not a bad little haul for one night Greyback was saying as a pair of hobnailed boots marched close by Harry and they heard more crashes from inside the tent .A Mudblood a runaway goblin and three truants .You checked their names on the list yet Scabior ?he roared .Yeah .Theres no Vernon Dudley on ere Greyback .Interesting said Greyback .Thats interesting .He crouched down beside Harry who saw through the infinitesimal gap left between his swollen eyelids a face covered in matted gray hair and whiskers with pointed brown teeth and sores at the corners of his mouth .Greyback smelled as he had done at the top of the tower where Dumbledore had died of dirt sweat and blood .So you arent wanted then Vernon ?Or are you on that list under a different name ?What House were you in at Hogwarts ?Slytherin said Harry automatically .Funny ow they all thinks we wants to ear that jeered Scabior out of the shadows .But none of em can tell us where the common room is .Its in the dungeons said Harry clearly .You enter through the wall .Its full of skulls and stuff and its under the lake so the lights all green .There was a short pause .Well well looks like we really ave caught a little Slytherin said Scabior .Good for you Vernon cause there aint a lot of Mudblood Slytherins .Whos your father ?He works at the Ministry Harry lied .He knew that his whole story would collapse with the smallest investigation but on the other hand he only had until his face regained its usual appearance before the game was up in any case .Department of Magical Accidents and Catastrophes .You know what Greyback said Scabior .I think there is a Dudley in there .Harry could barely breathe Could luck sheer luck get them safely out of this ?Well well said Greyback and Harry could hear the tiniest note of trepidation in that callous voice and knew that Greyback was wondering whether he had indeed just attacked and bound the son of a Ministry official .Harrys heart was pounding against the ropes around his ribs he would not have been surprised to know that Greyback could see it .If youre telling the truth ugly youve got nothing to fear from a trip to the Ministry .I expect your fatherll reward us just for picking you up .But said Harry his mouth bone dry if you just let us Hey !came a shout from inside the tent .Look at this Greyback !A dark figure came bustling toward them and Harry saw a glint of silver in the light of their wands .They had found Gryffindors sword .Veery nice said Greyback appreciatively taking it from his companion .Oh very nice indeed .Looks goblinmade that .Where did you get something like this ?Its my fathers Harry lied hoping against hope that it was too dark for Greyback to see the name etched just below the hilt .We borrowed it to cut firewood ang on a minute Greyback !Look at this in the Propheti As Scabior said it Harrys scar which was stretched tight across his distended forehead burned savagely .More clearly than he could make out anything around him he saw a towering building a grim fortress jet black and forbidding Voldemorts thoughts had suddenly become razorsharp again he was gliding toward the gigantic building with a sense of calmly euphoric purpose .So close .So close .With a huge effort of will Harry closed his mind to Voldemorts thoughts pulling himself back to where he sat tied to Ron Hermione Dean and Griphook in the darkness listening to Greyback and Scabior . ‘ermione Granger Scabior was saying ‘the Mudblood who is known to be traveling with arry Potter .Harrys scar burned in the silence but he made a supreme effort to keep himself present not to slip into Voldemorts mind .He heard the creak of Greybacks boots as he crouched down in front of Hermione .You know what little girly ?This picture looks a hell of a lot like you .It isnt !It isnt me !Hermione s terrified squeak was as good as a confession . ‘.known to be traveling with Harry Potter repeated Grey back quietly .A stillness had settled over the scene .Harrys scar was exquisitely painful but he struggled with all his strength against the pull of Voldemorts thoughts It had never been so important to remain in his own right mind .Well this changes things doesnt it ?whispered Greyback .Nobody spoke Harry sensed the gang of Snatchers watching frozen and felt Hermione s arm trembling against his .Greyback got up and took a couple of steps to where Harry sat crouching down again to stare closely at his misshapen features .Whats that on your forehead Vernon ?he asked softly his breath foul in Harrys nostrils as he pressed a filthy finger to the taut scar .Dont touch it !Harry yelled he could not stop himself he thought he might be sick from the pain of it .I thought you wore glasses Potter ?breathed Greyback .I found glasses !yelped one of the Snatchers skulking in the background .There was glasses in the tent Greyback wait And seconds later Harrys glasses had been rammed back onto his face .The Snatchers were closing in now peering at him .It is !rasped Greyback .Weve caught Potter !They all took several steps backward stunned by what they had done .Harry still fighting to remain present inside his own splitting head could think of nothing to say Fragmented visions were breaking across the surface of his mind He was gliding around the high walls of the black fortress No he was Harry tied up and wandless in grave danger looking up up to the topmost window the highest tower He was Harry and they were discussing his fate in low voices Time to fly . .to the Ministry ?To hell with the Ministry growled Greyback .Theyll take the credit and we wont get a look in .I say we take him straight to YouKnowWho .Will you summon im ?ere ?said Scabior sounding awed terrified .No snarled Greyback I havent got they say hes using the Malfoys place as a base .Well take the boy there .Harry thought he knew why Greyback was not calling Voldemort .The werewolf might be allowed to wear Death Eater robes when they wanted to use him but only Voldemorts inner circle were branded with the Dark Mark Greyback had not been granted this highest honor .Harrys scar seared again and he rose into the night flying straight up to the window at the very top of the tower .completely sure its him ?Cause if it aint Greyback were dead .Whos in charge here ?roared Greyback covering his moment of inadequacy .I say thats Potter and him plus his wand thats two hundred thousand Galleons right there !But if youre too gutless to come along any of you its all for me and with any luck Ill get the girl thrown in !The window was the merest slit in the black rock not big enough for a man to enter .A skeletal figure was just visible through it curled beneath a blanket .Dead or sleeping . ?All right !said Scabior .All right were in !And what about the rest of em Greyback whatll we do with em ?Might as well take the lot .Weve got two Mudbloods thats another ten Galleons .Give me the sword as well .If theyre rubies thats another small fortune right there .The prisoners were dragged to their feet .Harry could hear Hermiones breathing fast and terrified .Grab hold and make it tight .Ill do Potter !said Greyback seizing a fistful of Harrys hair Harry could feel his long yellow nails scratching his scalp .On three !One two three They Disapparated pulling the prisoners with them .Harry struggled trying to throw off Greybacks hand but it was hopeless Ron and Hermione were squeezed tightly against him on either side he could not separate from the group and as the breath was squeezed out of him his scar seared more painfully still as he forced himself through the slit of a window like a snake and landed lightly as vapor inside the celllike room The prisoners lurched into one another as they landed in a country lane .Harrys eyes still puffy took a moment to acclimatize then he saw a pair of wroughtiron gates at the foot of what looked like a long drive .He experienced the tiniest trickle of relief .The worst had not happened yet Voldemort was not here .He was Harry knew for he was fighting to resist the vision in some strange fortresslike place at the top of a tower .How long it would take Voldemort to get to this place once he knew that Harry was here was another matter .One of the Snatchers strode to the gates and shook them .How do we get in ?Theyre locked Greyback I cant blimey !He whipped his hands away in fright .The iron was contorting twisting itself out of the abstract furls and coils into a frightening face which spoke in a clanging echoing voice State your purpose !Weve got Potter !Greyback roared triumphantly .Weve captured Harry Potter !The gates swung open .Come on !said Greyback to his men and the prisoners were shunted through the gates and up the drive between high hedges that muffled their footsteps .Harry saw a ghostly white shape above him and realized it was an albino peacock .He stumbled and was dragged onto his feet by Greyback now he was staggering along sideways tied backto back to the four other prisoners .Closing his puffy eyes he allowed the pain in his scar to overcome him for a moment wanting to know what Voldemort was doing whether he knew yet that Harry was caught .The emaciated figure stirred beneath its thin blanket and rolled over toward him eyes opening in a skull of a face .The frail man sat up great sunken eyes fixed upon him upon Voldemort and then he smiled .Most of his teeth were gone .So you have come .I thought you would .one day .But your journey was pointless .I never had it .You lie As Voldemorts anger throbbed inside him Harrys scar threatened to burst with pain and he wrenched his mind back to his own body fighting to remain present as the prisoners were pushed over gravel .Light spilled out over all of them .What is this ?said a womans cold voice .Were here to see HeWhoMustNotBeNamed !rasped Greyback .Who are you ?You know me !There was resentment in the werewolfs voice .Fenrir Greyback !Weve caught Harry Potter !Greyback seized Harry and dragged him around to face the light forcing the other prisoners to shuffle around too .I know es swollen maam but its im !piped up Scabior .If you look a bit closer youll see is scar .And this ere see the girl ?The Mudblood whos been traveling around with im maam .Theres no doubt its im and weve got is wand as well !Ere maam Through his puffy eyelids Harry saw Narcissa Malfoy scrutinizing his swollen face .Scabior thrust the blackthorn wand at her .She raised her eyebrows .Bring them in she said .Harry and the others were shoved and kicked up broad stone steps into a hallway lined with portraits .Follow me said Narcissa leading the way across the hall .My son Draco is home for his Easter holidays .If that is Harry Potter he will know .The drawing room dazzled after the darkness outside even with his eyes almost closed Harry could make out the wide proportions of the room .A crystal chandelier hung from the ceiling more portraits against the dark purple walls .Two figures rose from chairs in front of an ornate marble fireplace as the prisoners were forced into the room by the Snatchers .What is this ?The dreadfully familiar drawling voice of Lucius Malfoy fell on Harrys ears .He was panicking now He could see no way out and it was easier as his fear mounted to block out Voldemorts thoughts though his scar was still burning .They say theyve got Potter said Narcissas cold voice .Draco come here .Harry did not dare look directly at Draco but saw him obliquely a figure slightly taller than he was rising from an armchair his face a pale and pointed blur beneath whiteblond hair .Greyback forced the prisoners to turn again so as to place Harry directly beneath the chandelier .Well boy ?rasped the werewolf .Harry was facing a mirror over the fireplace a great gilded thing in an intricately scrolled frame .Through the slits of his eyes he saw his own reflection for the first time since leaving Grimmauld Place .His face was huge shiny and pink every feature distorted by Hermiones jinx .His black hair reached his shoulders and there was a dark shadow around his jaw .Had he not known that it was he who stood there he would have wondered who was wearing his glasses .He resolved not to speak for his voice was sure to give him away yet he still avoided eye contact with Draco as the latter approached .Well Draco ?said Lucius Malfoy .He sounded avid .Is it ?Is it Harry Potter ?I cant I cant be sure said Draco .He was keeping his distance from Greyback and seemed as scared of looking at Harry as Harry was of looking at him .But look at him carefully look !Come closer !Harry had never heard Lucius Malfoy so excited .Draco if we are the ones who hand Potter over to the Dark Lord everything will be forgiv Now we wont be forgetting who actually caught him I hope Mr Malfoy ?said Greyback menacingly .Of course not of course not !said Lucius impatiently .He approached Harry himself came so close that Harry could see the usually languid pale face in sharp detail even through his swollen eyes .With his face a puffy mask Harry felt as though he was peering out from between the bars of a cage .What did you do to him ?Lucius asked Greyback .How did he get into this state ?That wasnt us .Looks more like a Stinging Jinx to me said Lucius .His gray eyes raked Harrys forehead .Theres something there he whispered it could be the scar stretched tight .Draco come here look properly !What do you think ?Harry saw Dracos face up close now right beside his fathers .They were extraordinarily alike except that while his father looked beside himself with excitement Dracos expression was full of reluctance even fear .I dont know he said and he walked away toward the fireplace where his mother stood watching .We had better be certain Lucius Narcissa called to her husband in her cold clear voice .Completely sure that it is Potter before we summon the Dark Lord .They say this is his she was looking closely at the blackthorn wand but it does not resemble Ollivanders description .If we are mistaken if we call the Dark Lord here for nothing .Remember what he did to Rowle and Dolohov ?What about the Mudblood then ?growled Greyback .Harry was nearly thrown off his feet as the Snatchers forced the prisoners to swivel around again so that the light fell on Hermione instead .Wait said Narcissa sharply .Yes yes she was in Madam Malkins with Potter !I saw her picture in the Prophett Look Draco isnt it the Granger girl ?I .maybe .yeah .But then thats the Weasley boy !shouted Lucius striding around the bound prisoners to face Ron .Its them Potters friends Draco look at him isnt it Arthur Weasleys son whats his name ?Yeah said Draco again his back to the prisoners .It could be .The drawing room door opened behind Harry .A woman spoke and the sound of the voice wound Harrys fear to an even higher pitch .What is this ?Whats happened Cissy ?Bellatrix Lestrange walked slowly around the prisoners and stopped on Harrys right staring at Hermione through her heavily lidded eyes .But surely she said quietly this is the Mudblood girl ?This is Granger ?Yes yes its Granger !cried Lucius .And beside her we think Potter !Potter and his friends caught at last !Potter ?shrieked Bellatrix and she backed away the better to take in Harry .Are you sure ?Well then the Dark Lord must be informed at once !She dragged back her left sleeve Harry saw the Dark Mark burned into the flesh of her arm and knew that she was about to touch it to summon her beloved master I was about to call him !said Lucius and his hand actually closed upon Bellatrixs wrist preventing her from touching the Mark .I shall summon him Bella Potter has been brought to my house and it is therefore upon my authority Your authority !she sneered attempting to wrench her hand from his grasp .You lost your authority when you lost your wand Lucius !How dare you !Take your hands off me !This is nothing to do with you you did not capture the boy Begging your pardon Mr Malfoy interjected Greyback but its us that caught Potter and its us that 11 be claiming the gold Gold !laughed Bellatrix still attempting to throw off her brotherinlaw her free hand groping in her pocket for her wand .Take your gold filthy scavenger what do I want with gold ?I seek only the honor of his of She stopped struggling her dark eyes fixed upon something Harry could not see .Jubilant at her capitulation Lucius threw her hand from him and ripped up his own sleeve STOP !shrieked Bellatrix .Do not touch it we shall all perish if the Dark Lord comes now !Lucius froze his index finger hovering over his own Mark .Bellatrix strode out of Harrys limited line of vision .What is that ?he heard her say .Sword grunted an outofsight Snatcher .Give it to me .Its not yorn missus its mine I reckon I found it .There was a bang and a flash of red light Harry knew that the Snatcher had been Stunned .There was a roar of anger from his fellows Scabior drew his wand .What dyou think youre playing at woman ?Stupefyl she screamed .Stupefyl They were no match for her even though there were four of them against one of her She was a witch as Harry knew with prodigious skill and no conscience .They fell where they stood all except Greyback who had been forced into a kneeling position his arms outstretched .Out of the corners of his eyes Harry saw Bellatrix bearing down upon the werewolf the sword of Gryffindor gripped tightly in her hand her face waxen .Where did you get this sword ?she whispered to Greyback as she pulled his wand out of his unresisting grip .How dare you ?he snarled his mouth the only thing that could move as he was forced to gaze up at her .He bared his pointed teeth .Release me woman !Where did you find this sword ?she repeated brandishing it in his face .Snape sent it to my vault in Gringotts !It was in their tent rasped Greyback .Release me I say !She waved her wand and the werewolf sprang to his feet but appeared too wary to approach her .He prowled behind an armchair his filthy curved nails clutching its back .Draco move this scum outside said Bellatrix indicating the unconscious men .If you havent got the guts to finish them then leave them in the courtyard for me .Dont you dare speak to Draco like said Narcissa furiously but Bellatrix screamed Be quiet !The situation is graver than you can possibly imagine Cissy !We have a very serious problem !She stood panting slightly looking down at the sword examining its hilt .Then she turned to look at the silent prisoners .If it is indeed Potter he must not be harmed she muttered more to herself than to the others .The Dark Lord wishes to dispose of Potter himself .But if he finds out .I must .I must know .She turned back to her sister again .The prisoners must be placed in the cellar while I think what to do !This is my house Bella you dont give orders in my Do it !You have no idea of the danger we are in !shrieked Bellatrix .She looked frightening mad a thin stream of fire issued from her wand and burned a hole in the carpet .Narcissa hesitated for a moment then addressed the werewolf .Take these prisoners down to the cellar Greyback .Wait said Bellatrix sharply .All except .except for the Mudblood .Greyback gave a grunt of pleasure .No !shouted Ron .You can have me keep me !Bellatrix hit him across the face the blow echoed around the room .If she dies under questioning Ill take you next she said .Blood traitor is next to Mudblood in my book .Take them downstairs Greyback and make sure they are secure but do nothing more to them yet .She threw Greybacks wand back to him then took a short silver knife from under her robes .She cut Hermione free from the other prisoners then dragged her by the hair into the middle of the room while Greyback forced the rest of them to shuffle across to another door into a dark passageway his wand held out in front of him projecting an invisible and irresistible force .Reckon shell let me have a bit of the girl when shes finished with her ?Greyback crooned as he forced them along the corridor .Id say Ill get a bite or two wouldnt you ginger ?Harry could feel Ron shaking .They were forced down a steep flight of stairs still tied backtoback and in danger of slipping and breaking their necks at any moment .At the bottom was a heavy door .Greyback unlocked it with a tap of his wand then forced them into a dank and musty room and left them in total darkness .The echoing bang of the slammed cellar door had not died away before there was a terrible drawnout scream from directly above them .HERMIONE !Ron bellowed and he started to writhe and struggle against the ropes tying them together so that Harry staggered .HERMIONE !Be quiet !Harry said .Shut up Ron we need to work out a way HERMIONE !HERMIONE !We need a plan stop yelling we need to get these ropes off Harry ?came a whisper through the darkness .Ron ?Is that you ?Ron stopped shouting .There was a sound of movement close by them then Harry saw a shadow moving closer .Harry ?Ron ?Luna ?Yes its me !Oh no I didnt want you to be caught !Luna can you help us get these ropes off ?said Harry .Oh yes I expect so .Theres an old nail we use if we need to break anything .Just a moment .Hermione screamed again from overhead and they could hear Bellatrix screaming too but her words were inaudible for Ron shouted again HERMIONE !HERMIONE !Mr Ollivander ?Harry could hear Luna saying .Mr Ollivander have you got the nail ?If you just move over a little bit .I think it was beside the water jug .She was back within seconds .Youll need to stay still she said .Harry could feel her digging at the ropes tough fibers to work the knots free .From upstairs they heard Bellatrixs voice .Im going to ask you again !Where did you get this sword ?Where ?We found it we found it PLEASE !Hermione screamed again Ron struggled harder than ever and the rusty nail slipped onto Harrys wrist .Ron please stay still !Luna whispered .I cant see what Im doing My pocket !said Ron .In my pocket theres a Deluminator and its full of light !A few seconds later there was a click and the luminescent spheres the Deluminator had sucked from the lamps in the tent flew into the cellar Unable to rejoin their sources they simply hung there like tiny suns flooding the underground room with light .Harry saw Luna all eyes in her white face and the motionless figure of Ollivander the wandmaker curled up on the floor in the corner .Craning around he caught sight of their fellow prisoners Dean and Griphook the goblin who seemed barely conscious kept standing by the ropes that bound him to the humans .Oh thats much easier thanks Ron said Luna and she began hacking at their bindings again .Hello Dean !From above came Bellatrixs voice .You are lying filthy Mudblood and I know it !You have been inside my vault at Gringotts !Tell the truth tell the truth Another terrible scream HERMIONE !What else did you take ?What else have you got ?Tell me the truth or I swear I shall run you through with this knife !There !Harry felt the ropes fall away and turned rubbing his wrists to see Ron running around the cellar looking up at the low ceiling searching for a trapdoor .Dean his face bruised and bloody said Thanks to Luna and stood there shivering but Griphook sank onto the cellar floor looking groggy and disoriented many welts across his swarthy face .Ron was now trying to Disapparate without a wand .Theres no way out Ron said Luna watching his fruitless efforts .The cellar is completely escape proof .I tried at first .Mr Ollivander has been here for a long time hes tried everything .Hermione was screaming again The sound went through Harry like physical pain .Barely conscious of the fierce prickling of his scar he too started to run around the cellar feeling the walls for he hardly knew what knowing in his heart that it was useless .What else did you take what else ?ANSWER ME !CRUCIO Hermione s screams echoed off the walls upstairs Ron was half sobbing as he pounded the walls with his fists and Harry in utter desperation seized Hagrids pouch from around his neck and groped inside it He pulled out Dumbledores Snitch and shook it hoping for he did not know what nothing happened he waved the broken halves of the phoenix wand but they were lifeless the mirror fragment fell sparkling to the floor and he saw a gleam of brightest blue Dumbledores eye was gazing at him out of the mirror .Help us !he yelled at it in mad desperation .Were in the cellar of Malfoy Manor help us !The eye blinked and was gone .Harry was not even sure that it had really been there .He tilted the shard of mirror this way and that and saw nothing reflected there but the walls and ceiling of their prison and upstairs Hermione was screaming worse than ever and next to him Ron was bellowing HERMIONE !HERMIONE !How did you get into my vault ?they heard Bellatrix scream .Did that dirty little goblin in the cellar help you ?We only met him tonight !Hermione sobbed .Weve never been inside your vault .It isnt the real sword !Its a copy just a copy !A copy ?screeched Bellatrix .Oh a likely story !But we can find out easily !came Luciuss voice .Draco fetch the goblin he can tell us whether the sword is real or not !Harry dashed across the cellar to where Griphook was huddled on the floor .Griphook he whispered into the goblins pointed ear you must tell them that swords a fake they mustnt know its the real one Griphook please He could hear someone scuttling down the cellar steps next moment Dracos shaking voice spoke from behind the door .Stand back .Line up against the back wall .Dont try anything or Ill kill you !They did as they were bidden as the lock turned Ron clicked the Deluminator and the lights whisked back into his pocket restoring the cellars darkness .The door flew open Malfoy marched inside wand held out in front of him pale and determined .He seized the little goblin by the arm and backed out again dragging Griphook with him .The door slammed shut and at the same moment a loud crack echoed inside the cellar .Ron clicked the Deluminator .Three balls of light flew back into the air from his pocket revealing Dobby the houseelf who had just Apparated into their midst .DOB !Harry hit Ron on the arm to stop him shouting and Ron looked terrified at his mistake .Footsteps crossed the ceiling overhead Draco marching Griphook to Bellatrix .Dobbys enormous tennisballshaped eyes were wide he was trembling from his feet to the tips of his ears .He was back in the home of his old masters and it was clear that he was petrified .Harry Potter he squeaked in the tiniest quiver of a voice Dobby has come to rescue you .But how did you ?An awful scream drowned Harrys words Hermione was being tortured again .He cut to the essentials .You can Disapparate out of this cellar ?he asked Dobby who nodded his ears flapping .And you can take humans with you ?Dobby nodded again .Right .Dobby I want you to grab Luna Dean and Mr Ollivander and take them take them to Bill and Fleurs said Ron .Shell Cottage on the outskirts of Tinworth !The elf nodded for a third time .And then come back said Harry .Can you do that Dobby ?Of course Harry Potter whispered the little elf .He hurried over to Mr Ollivander who appeared to be barely conscious .He took one of the wandmakers hands in his own then held out the other to Luna and Dean neither of whom moved .Harry we want to help you !Luna whispered .We cant leave you here said Dean .Go both of you !Well see you at Bill and Fleurs .As Harry spoke his scar burned worse than ever and for a few seconds he looked down not upon the wandmaker but on another man who was just as old just as thin but laughing scornfully .Kill me then Voldemort I welcome death !But my death will not bring you what you seek .There is so much you do not understand .He felt Voldemorts fury but as Hermione screamed again he shut it out returning to the cellar and the horror of his own present .Go !Harry beseeched Luna and Dean .Go !Well follow just go !They caught hold of the elfs outstretched fingers .There was another loud crack and Dobby Luna Dean and Ollivander vanished .What was that ?shouted Lucius Malfoy from over their heads .Did you hear that ?What was that noise in the cellar ?Harry and Ron stared at each other .Draco no call Wormtail !Make him go and check !Footsteps crossed the room overhead then there was silence .Harry knew that the people in the drawing room were listening for more noises from the cellar .Were going to have to try and tackle him he whispered to Ron .They had no choice The moment anyone entered the room and saw the absence of three prisoners they were lost .Leave the lights on Harry added and as they heard someone descending the steps outside the door they backed against the wall on either side of it .Stand back came Wormtails voice .Stand away from the door .I am coming in .The door flew open .For a split second Wormtail gazed into the apparently empty cellar ablaze with light from the three miniature suns floating in midair .Then Harry and Ron launched themselves upon him .Ron seized Wormtails wand arm and forced it upward Harry slapped a hand to his mouth muffling his voice .Silently they struggled Wormtails wand emitted sparks his silver hand closed around Harrys throat .What is it Wormtail ?called Lucius Malfoy from above .Nothing !Ron called back in a passable imitation of Wormtails wheezy voice .All fine !Harry could barely breathe .Youre going to kill me ?Harry choked attempting to prise off the metal fingers .After I saved your life ?You owe me Wormtail !The silver fingers slackened .Harry had not expected it He wrenched himself free astonished keeping his hand over Wormtails mouth .He saw the ratlike mans small watery eyes widen with fear and surprise He seemed just as shocked as Harry at what his hand had done at the tiny merciful impulse it had betrayed and he continued to struggle more powerfully as though to undo that moment of weakness .And well have that whispered Ron tugging Wormtails wand from his other hand .Wandless helpless Pettigrews pupils dilated in terror .His eyes had slid from Harrys face to something else .His own silver fingers were moving inexorably toward his own throat .No Without pausing to think Harry tried to drag back the hand but there was no stopping it .The silver tool that Voldemort had given his most cowardly servant had turned upon its disarmed and useless owner Pettigrew was reaping his reward for his hesitation his moment of pity he was being strangled before their eyes .No !Ron had released Wormtail too and together he and Harry tried to pull the crushing metal fingers from around Wormtails throat but it was no use .Pettigrew was turning blue .Relashiol said Ron pointing the wand at the silver hand but nothing happened Pettigrew dropped to his knees and at the same moment Hermione gave a dreadful scream from overhead .Wormtails eyes rolled upward in his purple face he gave a last twitch and was still .Harry and Ron looked at each other then leaving Wormtails body on the floor behind them ran up the stairs and back into the shadowy passageway leading to the drawing room .Cautiously they crept along it until they reached the drawing room door which was ajar .Now they had a clear view of Bellatrix looking down at Griphook who was holding Gryffindors sword in his longfingered hands .Hermione was lying at Bellatrixs feet .She was barely stirring .Well ?Bellatrix said to Griphook .Is it the true sword ?Harry waited holding his breath fighting against the prickling of his scar .No said Griphook .It is a fake .Are you sure ?panted Bellatrix .Quite sure ?Yes said the goblin .Relief broke across her face all tension drained from it .Good she said and with a casual flick of her wand she slashed another deep cut into the goblins face and he dropped with a yell at her feet .She kicked him aside .And now she said in a voice that burst with triumph we call the Dark Lord !And she pushed back her sleeve and touched her forefinger to the Dark Mark .At once Harrys scar felt as though it had split open again .His true surroundings vanished He was Voldemort and the skeletal wizard before him was laughing toothlessly at him he was enraged at the summons he felt he had warned them he had told them to summon him for nothing less than Potter .If they were mistaken .Kill me then !demanded the old man .You will not win you cannot win !That wand will never ever be yours And Voldemorts fury broke A burst of green light filled the prison room and the frail old body was lifted from its hard bed and then fell back lifeless and Voldemort returned to the window his wrath barely controllable .They would suffer his retribution if they had no good reason for calling him back .And I think said Bellatrixs voice we can dispose of the Mudblood .Greyback take her if you want her .NOOOOOOOOOOOO !Ron had burst into the drawing room Bellatrix looked around shocked she turned her wand to face Ron instead ExpelliarmusV he roared pointing Wormtails wand at Bellatrix and hers flew into the air and was caught by Harry who had sprinted after Ron .Lucius Narcissa Draco and Greyback wheeled about Harry yelled Stupefy and Lucius Malfoy collapsed onto the hearth .Jets of light flew from Dracos Narcissas and Greybacks wands Harry threw himself to the floor rolling behind a sofa to avoid them .STOP OR SHE DIES !Panting Harry peered around the edge of the sofa .Bellatrix was supporting Hermione who seemed to be unconscious and was holding her short silver knife to Hermione s throat .Drop your wands she whispered .Drop them or well see exactly how filthy her blood is !Ron stood rigid clutching Wormtails wand .Harry straightened up still holding Bellatrixs .I said drop them !she screeched pressing the blade into Hermiones throat Harry saw beads of blood appear there .All right !he shouted and he dropped Bellatrixs wand onto the floor at his feet .Ron did the same with Wormtails .Both raised their hands to shoulder height .Good !she leered .Draco pick them up !The Dark Lord is coming Harry Potter !Your death approaches !Harry knew it his scar was bursting with the pain of it and he could feel Voldemort flying through the sky from far away over a dark and stormy sea and soon he would be close enough to Apparate to them and Harry could see no way out .Now said Bellatrix softly as Draco hurried back to her with the wands Cissy I think we ought to tie these little heroes up again while Greyback takes care of Miss Mudblood .I am sure the Dark Lord will not begrudge you the girl Greyback after what you have done tonight .At the last word there was a peculiar grinding noise from above .All of them looked upward in time to see the crystal chandelier tremble then with a creak and an ominous jingling it began to fall .Bellatrix was directly beneath it dropping Hermione she threw herself aside with a scream .The chandelier crashed to the floor in an explosion of crystal and chains falling on top of Hermione and the goblin who still clutched the sword of Gryffindor .Glittering shards of crystal flew in all directions Draco doubled over his hands covering his bloody face .As Ron ran to pull Hermione out of the wreckage Harry took his chance He leapt over an armchair and wrested the three wands from Dracos grip pointed all of them at Greyback and yelled Stupefyl The werewolf was lifted off his feet by the triple spell flew up to the ceiling and then smashed to the ground .As Narcissa dragged Draco out of the way of further harm Bellatrix sprang to her feet her hair flying as she brandished the silver knife but Narcissa had directed her wand at the doorway .Dobby !she screamed and even Bellatrix froze .You !You dropped the chandelier ?The tiny elf trotted into the room his shaking finger pointing at his old mistress .You must not hurt Harry Potter he squeaked .Kill him Cissy !shrieked Bellatrix but there was another loud crack and Narcissas wand too flew into the air and landed on the other side of the room .You dirty little monkey !bawled Bellatrix .How dare you take a witchs wand how dare you defy your masters ?Dobby has no master !squealed the elf .Dobby is a free elf and Dobby has come to save Harry Potter and his friends !Harrys scar was blinding him with pain .Dimly he knew that they had moments seconds before Voldemort was with them .Ron catch and GO !he yelled throwing one of the wands to him then he bent down to tug Griphook out from under the chandelier .Hoisting the groaning goblin who still clung to the sword over one shoulder Harry seized Dobbys hand and spun on the spot to Disapparate .As he turned into darkness he caught one last view of the drawing room of the pale frozen figures of Narcissa and Draco of the streak of red that was Rons hair and a blur of flying silver as Bellatrixs knife flew across the room at the place where he was vanishing Bill and Fleurs .Shell Cottage .Bill and Fleurs .He had disappeared into the unknown all he could do was repeat the name of the destination and hope that it would suffice to take him there .The pain in his forehead pierced him and the weight of the goblin bore down upon him he could feel the blade of Gryffindors sword bumping against his back Dobbys hand jerked in his he wondered whether the elf was trying to take charge to pull them in the right direction and tried by squeezing the fingers to indicate that that was fine with him .And then they hit solid earth and smelled salty air .Harry fell to his knees relinquished Dobbys hand and attempted to lower Griphook gently to the ground .Are you all right ?he said as the goblin stirred but Griphook merely whimpered .Harry squinted around through the darkness .There seemed to be a cottage a short way away under the wide starry sky and he thought he saw movement outside it .Dobby is this Shell Cottage ?he whispered clutching the two wands he had brought from the Malfoys ready to fight if he needed to .Have we come to the right place ?Dobby ?He looked around .The little elf stood feet from him .DOBBY !The elf swayed slightly stars reflected in his wide shining eyes .Together he and Harry looked down at the silver hilt of the knife protruding from the elfs heaving chest .Dobby no HELP !Harry bellowed toward the cottage toward the people moving there .HELP !He did not know or care whether they were wizards or Muggles friends or foes all he cared about was that a dark stain was spreading across Dobbys front and that he had stretched out his thin arms to Harry with a look of supplication .Harry caught him and laid him sideways on the cool grass .Dobby no dont die dont die The elfs eyes found him and his lips trembled with the effort to form words .Harry .Potter .And then with a little shudder the elf became quite still and his eyes were nothing more than great glassy orbs sprinkled with light from the stars they could not see .THE WANDMAKER It was like sinking into an old nightmare for an instant Harry knelt again beside Dumbledores body at the foot of the tallest tower at Hogwarts but in reality he was staring at a tiny body curled upon the grass pierced by Bellatrixs silver knife .Harrys voice was still saying Dobby .Dobby .even though he knew that the elf had gone where he could not call him back .After a minute or so he realized that they had after all come to the right place for here were Bill and Fleur Dean and Luna gathering around him as he knelt over the elf .Hermione ?he said suddenly .Where is she ?Rons taken her inside said Bill .Shell be all right .Harry looked back down at Dobby .He stretched out a hand and pulled the sharp blade from the elfs body then dragged off his own jacket and covered Dobby in it like a blanket .The sea was rushing against rock somewhere nearby Harry listened to it while the others talked discussing matters in which he could take no interest making decisions .Dean carried the injured Griphook into the house Fleur hurrying with them now Bill was making suggestions about burying the elf .Harry agreed without really knowing what he was saying .As he did so he gazed down at the tiny body and his scar prickled and burned and in one part of his mind viewed as if from the wrong end of a long telescope he saw Voldemort punishing those they had left behind at Malfoy Manor .His rage was dreadful and yet Harrys grief for Dobby seemed to diminish it so that it became a distant storm that reached Harry from across a vast silent ocean .I want to do it properly were the first words of which Harry was fully conscious of speaking .Not by magic .Have you got a spade ?And shortly afterward he had set to work alone digging the grave in the place that Bill had shown him at the end of the garden between bushes .He dug with a kind of fury relishing the manual work glorying in the nonmagic of it for every drop of his sweat and every blister felt like a gift to the elf who had saved their lives .His scar burned but he was master of the pain he felt it yet was apart from it .He had learned control at last learned to shut his mind to Voldemort the very thing Dumbledore had wanted him to learn from Snape .Just as Voldemort had not been able to possess Harry while Harry was consumed with grief for Sirius so his thoughts could not penetrate Harry now while he mourned Dobby .Grief it seemed drove Voldemort out .though Dumbledore of course would have said that it was love .On Harry dug deeper and deeper into the hard cold earth subsuming his grief in sweat denying the pain in his scar .In the darkness with nothing but the sound of his own breath and the rushing sea to keep him company the things that had happened at the Malfoys returned to him the things he had heard came back to him and understanding blossomed in the darkness .The steady rhythm of his arms beat time with his thoughts .Hallows .Horcruxes .Hallows .Horcruxes .Yet he no longer burned with that weird obsessive longing .Loss and fear had snuffed it out He felt as though he had been slapped awake again .Deeper and deeper Harry sank into the grave and he knew where Voldemort had been tonight and whom he had killed in the topmost cell of Nurmengard and why .And he thought of Wormtail dead because of one small unconscious impulse of mercy .Dumbledore had foreseen that .How much more had he known ?Harry lost track of time .He knew only that the darkness had lightened a few degrees when he was rejoined by Ron and Dean .Hows Hermione ?Better said Ron .Fleurs looking after her .Harry had his retort ready for when they asked him why he had not simply created a perfect grave with his wand but he did not need it .They jumped down into the hole he had made with spades of their own and together they worked in silence until the hole seemed deep enough .Harry wrapped the elf more snugly in his jacket .Ron sat on the edge of the grave and stripped off his shoes and socks which he placed upon the elfs bare feet .Dean produced a woolen hat which Harry placed carefully upon Dobbys head muffling his batlike ears .We should close his eyes .Harry had not heard the others coming through the darkness .Bill was wearing a traveling cloak Fleur a large white apron from the pocket of which protruded a bottle of what Harry recognized to be SkeleGro .Hermione was wrapped in a borrowed dressing gown pale and unsteady on her feet Ron put an arm around her when she reached him .Luna who was huddled in one of Fleurs coats crouched down and placed her fingers tenderly upon each of the elfs eyelids sliding them over his glassy stare .There she said softly .Now he could be sleeping .Harry placed the elf into the grave arranged his tiny limbs so that he might have been resting then climbed out and gazed for the last time upon the little body .He forced himself not to break down as he remembered Dumbledores funeral and the rows and rows of golden chairs and the Minister of Magic in the front row the recitation of Dumbledores achievements the stateliness of the white marble tomb .He felt that Dobby deserved just as grand a funeral and yet here the elf lay between bushes in a roughly dug hole .I think we ought to say something piped up Luna .Ill go first shall I ?And as everybody looked at her she addressed the dead elf at the bottom of the grave .Thank you so much Dobby for rescuing me from that cellar .Its so unfair that you had to die when you were so good and brave .Ill always remember what you did for us .I hope youre happy now .She turned and looked expectantly at Ron who cleared his throat and said in a thick voice Yeah .thanks Dobby .Thanks muttered Dean .Harry swallowed .Goodbye Dobby he said .It was all he could manage but Luna had said it all for him .Bill raised his wand and the pile of earth beside the grave rose up into the air and fell neatly upon it a small reddish mound .Dyou mind if I stay here a moment ?he asked the others .They murmured words he did not catch he felt gentle pats upon his back and then they all traipsed back toward the cottage leaving Harry alone beside the elf .He looked around There were a number of large white stones smoothed by the sea marking the edge of the flower beds .He picked up one of the largest and laid it pillowlike over the place where Dobby s head now rested .He then felt in his pocket for a wand .There were two in there .He had forgotten lost track he could not now remember whose wands these were he seemed to remember wrenching them out of someones hand .He selected the shorter of the two which felt friendlier in his hand and pointed it at the rock .Slowly under his murmured instruction deep cuts appeared upon the rocks surface .He knew that Hermione could have done it more neatly and probably more quickly but he wanted to mark the spot as he had wanted to dig the grave .When Harry stood up again the stone read HERE LIES DOBBY A FREE ELF .He looked down at his handiwork for a few more seconds then walked away his scar still prickling a little and his mind full of those things that had come to him in the grave ideas that had taken shape in the darkness ideas both fascinating and terrible .They were all sitting in the living room when he entered the little hall their attention focused upon Bill who was talking .The room was lightcolored pretty with a small fire of driftwood burning brightly in the fireplace .Harry did not want to drop mud upon the carpet so he stood in the doorway listening . .lucky that Ginnys on holiday .If shed been at Hogwarts they could have taken her before we reached her .Now we know shes safe too .He looked around and saw Harry standing there .Ive been getting them all out of the Burrow he explained .Moved them to Muriels .The Death Eaters know Rons with you now theyre bound to target the family dont apologize he added at the sight of Harrys expression .It was always a matter of time Dads been saying so for months .Were the biggest bloodtraitor family there is .How are they protected ?asked Harry .Fidelius Charm .Dads SecretKeeper .And weve done it on this cottage too Im SecretKeeper here .None of us can go to work but thats hardly the most important thing now .Once Ollivander and Griphook are well enough well move them to Muriels too .There isnt much room here but shes got plenty .Griphooks legs are on the mend Fleurs given him SkeleGro we could probably move them in an hour or No Harry said and Bill looked startled .I need both of them here .I need to talk to them .Its important .He heard the authority in his own voice the conviction the sense of purpose that had come to him as he dug Dobbys grave .All of their faces were turned toward him looking puzzled .Im going to wash Harry told Bill looking down at his hands still covered in mud and Dobbys blood .Then 111 need to see them straightaway .He walked into the little kitchen to the basin beneath a window overlooking the sea .Dawn was breaking over the horizon shell pink and faintly gold as he washed again following the train of thought that had come to him in the dark garden .Dobby would never be able to tell them who had sent him to the cellar but Harry knew what he had seen .A piercing blue eye had looked out of the mirror fragment and then help had come .Help will always be given at Hog warts to those who ask for it Harry dried his hands impervious to the beauty of the scene outside the window and to the murmuring of the others in the sitting room .He looked out over the ocean and felt closer this dawn than ever before closer to the heart of it all .And still his scar prickled and he knew that Voldemort was getting there too .Harry understood and yet did not understand .His instinct was telling him one thing his brain quite another .The Dumbledore in Harrys head smiled surveying Harry over the tips of his fingers pressed together as if in prayer .You gave Ron the Deluminator .You understood him .You gave him a way back .And you understood Wormtail too .You knew there was a bit of regret there somewhere .And if you knew them .What did you know about me Dumbledore ?Am I meant to know but not to seek ?Did you know how hard Id find that ?Is that why you made it this difficult ?So Id have time to work that out ?Harry stood quite still eyes glazed watching the place where a bright gold rim of dazzling sun was rising over the horizon .Then he looked down at his clean hands and was momentarily surprised to see the cloth he was holding in them .He set it down and returned to the hall and as he did so he felt his scar pulse angrily and there flashed across his mind swift as the reflection of a dragonfly over water the outline of a building he knew extremely well .Bill and Fleur were standing at the foot of the stairs .I need to speak to Griphook and Ollivander Harry said .No said Fleur .You will ave to wait Arry .Zey are both ill tired Im sorry he said without heat but it cant wait .I need to talk to them now .Privately and separately .Its urgent .Harry what the hells going on ?asked Bill .You turn up here with a dead houseelf and a half conscious goblin Hermione looks as though shes been tortured and Rons just refused to tell me anything We cant tell you what were doing said Harry flatly .Youre in the Order Bill you know Dumbledore left us a mission .Were not supposed to talk about it to anyone else .Fleur made an impatient noise but Bill did not look at her he was staring at Harry .His deeply scarred face was hard to read .Finally Bill said All right .Who do you want to talk to first ?Harry hesitated .He knew what hung on his decision .There was hardly any time left now was the moment to decide Horcruxes or Hallows ?Griphook Harry said .Ill speak to Griphook first .His heart was racing as if he had been sprinting and had just cleared an enormous obstacle .Up here then said Bill leading the way .Harry had walked up several steps before stopping and looking back .I need you two as well !he called to Ron and Hermione who had been skulking half concealed in the doorway of the sitting room .They both moved into the light looking oddly relieved .How are you ?Harry asked Hermione .You were amazing coming up with that story when she was hurting you like that Hermione gave a weak smile as Ron gave her a one armed squeeze .What are we doing now Harry ?he asked .Youll see .Come on .Harry Ron and Hermione followed Bill up the steep stairs onto a small landing .Three doors led off it .In here said Bill opening the door into his and Fleurs room .It too had a view of the sea now flecked with gold in the sunrise .Harry moved to the window turned his back on the spectacular view and waited his arms folded his scar prickling .Hermione took the chair beside the dressing table Ron sat on the arm .Bill reappeared carrying the little goblin whom he set down carefully upon the bed .Griphook grunted thanks and Bill left closing the door upon them all .Im sorry to take you out of bed said Harry .How are your legs ?Painful replied the goblin .But mending .He was still clutching the sword of Gryffindor and wore a strange look half truculent half intrigued .Harry noted the goblins sallow skin his long thin fingers his black eyes .Fleur had removed his shoes His long feet were dirty .He was larger than a house elf but not by much .His domed head was much bigger than a humans .You probably dont remember Harry began .that I was the goblin who showed you to your vault the first time you ever visited Gringotts ?said Griphook .I remember Harry Potter .Even amongst goblins you are very famous .Harry and the goblin looked at each other sizing each other up .Harrys scar was still prickling .He wanted to get through this interview with Griphook quickly and at the same time was afraid of making a false move .While he tried to decide on the best way to approach his request the goblin broke the silence .You buried the elf he said sounding unexpectedly rancorous .I watched you from the window of the bedroom next door .Yes said Harry .Griphook looked at him out of the corners of his slanting black eyes .You are an unusual wizard Harry Potter .In what way ?asked Harry rubbing his scar absently .You dug the grave .So ?Griphook did not answer .Harry rather thought he was being sneered at for acting like a Muggle but it did not much matter to him whether Griphook approved of Dobbys grave or not .He gathered himself for the attack .Griphook I need to ask You also rescued a goblin .What ?You brought me here .Saved me .Well I take it youre not sorry ?said Harry a little impatiently .No Harry Potter said Griphook and with one finger he twisted the thin black beard upon his chin but you are a very odd wizard .Right said Harry .Well I need some help Griphook and you can give it to me .The goblin made no sign of encouragement but continued to frown at Harry as though he had never seen anything like him .I need to break into a Gringotts vault .Harry had not meant to say it so baldly the words were forced from him as pain shot through his lightning scar and he saw again the outline of Hogwarts .He closed his mind firmly .He needed to deal with Griphook first .Ron and Hermione were staring at Harry as though he had gone mad .Harry said Hermione but she was cut off by Griphook .Break into a Gringotts vault ?repeated the goblin wincing a little as he shifted his position upon the bed .It is impossible .No it isnt Ron contradicted him .Its been done .Yeah said Harry .The same day I first met you Griphook .My birthday seven years ago .The vault in question was empty at the time snapped the goblin and Harry understood that even though Griphook had left Gringotts he was offended at the idea of its defenses being breached .Its protection was minimal .Well the vault we need to get into isnt empty and Im guessing its protection will be pretty powerful said Harry .It belongs to the Lestranges .He saw Hermione and Ron look at each other astonished but there would be time enough to explain after Griphook had given his answer .You have no chance said Griphook flatly .No chance at all .If you seek beneath our floors a treasure that was never yours Thief you have been warned beware yeah I know I remember said Harry .But Im not trying to get myself any treasure Im not trying to take anything for personal gain .Can you believe that ?The goblin looked slantwise at Harry and the lightning scar on Harrys forehead prickled but he ignored it refusing to acknowledge its pain or its invitation .If there was a wizard of whom I would believe that they did not seek personal gain said Griphook finally it would be you Harry Potter .Goblins and elves are not used to the protection or the respect that you have shown this night .Not from wand carriers .Wandcarriers repeated Harry The phrase fell oddly upon his ears as his scar prickled as Voldemort turned his thoughts northward and as Harry burned to question Ollivander next door .The right to carry a wand said the goblin quietly has long been contested between wizards and goblins .Well goblins can do magic without wands said Ron .That is immaterial !Wizards refuse to share the secrets of wandlore with other magical beings they deny us the possibility of extending our powers !Well goblins wont share any of their magic either said Ron .You wont tell us how to make swords and armor the way you do .Goblins know how to work metal in a way wizards have never It doesnt matter said Harry noting Griphooks rising color .This isnt about wizards versus goblins or any other sort of magical creature Griphook gave a nasty laugh .But it is it is about precisely that !As the Dark Lord becomes ever more powerful your race is set still more firmly above mine !Gringotts falls under Wizarding rule houseelves are slaughtered and who amongst the wandcarriers protests ?We do !said Hermione .She had sat up straight her eyes bright .We protest !And Im hunted quite as much as any goblin or elf Griphook !Im a Mudblood !Dont call yourself Ron muttered .Why shouldnt I ?said Hermione .Mudblood and proud of it !Ive got no higher position under this new order than you have Griphook !It was me they chose to torture back at the Malfoys !As she spoke she pulled aside the neck of the dressing gown to reveal the thin cut Bellatrix had made scarlet against her throat .Did you know that it was Harry who set Dobby free ?she asked .Did you know that weve wanted elves to be freed for years ?Ron fidgeted uncomfortably on the arm of Hermiones chair .You cant want You KnowWho defeated more than we do Griphook !The goblin gazed at Hermione with the same curiosity he had shown Harry .What do you seek within the Lestranges vault ?he asked abruptly .The sword that lies inside it is a fake .This is the real one .He looked from one to the other of them .I think that you already know this .You asked me to lie for you back there .But the fake sword isnt the only thing in that vault is it ?asked Harry .Perhaps youve seen the other things in there ?His heart was pounding harder than ever .He redoubled his efforts to ignore the pulsing of his scar .The goblin twisted his beard around his finger again .It is against our code to speak of the secrets of Gringotts .We are the guardians of fabulous treasures .We have a duty to the objects placed in our care which were so often wrought by our fingers .The goblin stroked the sword and his black eyes roved from Harry to Hermione to Ron and then back again .So young he said finally to be fighting so many .Will you help us ?said Harry .We havent got a hope of breaking in without a goblins help .Youre our one chance .I shall .think about it said Griphook maddeningly .But Ron started angrily Hermione nudged him in the ribs .Thank you said Harry .The goblin bowed his great domed head in acknowledgement then flexed his short legs .I think he said settling himself ostentatiously upon Bill and Fleurs bed that the SkeleGro has finished its work .I may be able to sleep at last .Forgive me .Yeah of course said Harry but before leaving the room he leaned forward and took the sword of Gryffindor from beside the goblin .Griphook did not protest but Harry thought he saw resentment in the goblins eyes as he closed the door upon him .Little git whispered Ron .Hes enjoying keeping us hanging .Harry whispered Hermione pulling them both away from the door into the middle of the stilldark landing are you saying what I think youre saying ?Are you saying theres a Horcrux in the Lestranges vault ?Yes said Harry .Bellatrix was terrified when she thought wed been in there she was beside herself .Why ?What did she think wed seen what else did she think we might have taken ?Something she was petrified YouKnowWho would find out about .But I thought we were looking for places YouKnow Whos been places hes done something important ?said Ron looking baffled .Was he ever inside the Lestranges vault ?I dont know whether he was ever inside Gringotts said Harry .He never had gold there when he was younger because nobody left him anything .He would have seen the bank from the outside though the first time he ever went to Diagon Alley .Harrys scar throbbed but he ignored it he wanted Ron and Hermione to understand about Gringotts before they spoke to Ollivander .I think he would have envied anyone who had a key to a Gringotts vault .I think hed have seen it as a real symbol of belonging to the Wizarding world .And dont forget he trusted Bellatrix and her husband .They were his most devoted servants before he fell and they went looking for him after he vanished .He said it the night he came back I heard him .Harry rubbed his scar .I dont think hed have told Bellatrix it was a Horcrux though .He never told Lucius Malfoy the truth about the diary .He probably told her it was a treasured possession and asked her to place it in her vault .The safest place in the world for anything you want to hide Hagrid told me .except for Hogwarts .When Harry had finished speaking Ron shook his head .You really understand him .Bits of him said Harry .Bits .I just wish Id understood Dumbledore as much .But well see .Come on Ollivander now .Ron and Hermione looked bewildered but impressed as they followed him across the little landing and knocked upon the door opposite Bill and Fleurs .A weak Come in !answered them .The wandmaker was lying on the twin bed farthest from the window .He had been held in the cellar for more than a year and tortured Harry knew on at least one occasion .He was emaciated the bones of his face sticking out sharply against the yellowish skin .His great silver eyes seemed vast in their sunken sockets .The hands that lay upon the blanket could have belonged to a skeleton .Harry sat down on the empty bed beside Ron and Hermione .The rising sun was not visible here .The room faced the cliff top garden and the freshly dug grave .Mr Ollivander Im sorry to disturb you Harry said .My dear boy .Ollivanders voice was feeble .You rescued us .I thought we would die in that place .I can never thank you .never thank you .enough .We were glad to do it .Harrys scar throbbed .He knew he was certain that there was hardly any time left in which to beat Voldemort to his goal or else to attempt to thwart him .He felt a flutter of panic .yet he had made his decision when he chose to speak to Griphook first .Feigning a calm he did not feel he groped in the pouch around his neck and took out the two halves of his broken wand .Mr Ollivander I need some help .Anything .Anything said the wandmaker weakly .Can you mend this ?Is it possible ?Ollivander held out a trembling hand and Harry placed the two barely connected halves into his palm .Holly and phoenix feather said Ollivander in a tremulous voice .Eleven inches .Nice and supple .Yes said Harry .Can you ?No whispered Ollivander .I am sorry very sorry but a wand that has suffered this degree of damage cannot be repaired by any means that I know of .Harry had been braced to hear it but it was a blow nevertheless .He took the wand halves back and replaced them in the pouch around his neck .Ollivander stared at the place where the shattered wand had vanished and did not look away until Harry had taken from his pocket the two wands he had brought from the Malfoys .Can you identify these ?Harry asked .The wandmaker took the first of the wands and held it close to his faded eyes rolling it between his knobbleknuckled fingers flexing it slightly .Walnut and dragon heartstring he said .Twelve andthreequarter inches .Unyielding .This wand belonged to Bellatrix Lestrange .And this one ?Ollivander performed the same examination .Hawthorn and unicorn hair .Ten inches precisely .Reasonably springy .This was the wand of Draco Malfoy .Was ?repeated Harry .Isnt it still his ?Perhaps not .If you took it I did then it may be yours .Of course the manner of taking matters .Much also depends upon the wand itself .In general however where a wand has been won its allegiance will change .There was silence in the room except for the distant rushing of the sea .You talk about wands like theyve got feelings said Harry like they can think for themselves .The wand chooses the wizard said Ollivander .That much has always been clear to those of us who have studied wandlore .A person can still use a wand that hasnt chosen them though ?asked Harry .Oh yes if you are any wizard at all you will be able to channel your magic through almost any instrument .The best results however must always come where there is the strongest affinity between wizard and wand .These connections are complex .An initial attraction and then a mutual quest for experience the wand learning from the wizard the wizard from the wand .The sea gushed forward and backward it was a mournful sound .I took this wand from Draco Malfoy by force said Harry .Can I use it safely ?I think so .Subtle laws govern wand ownership but the conquered wand will usually bend its will to its new master .So I should use this one ?said Ron pulling Wormtails wand out of his pocket and handing it to Ollivander .Chestnut and dragon heartstring .Nineanda quarter inches .Brittle .I was forced to make this shortly after my kidnapping for Peter Pettigrew .Yes if you won it it is more likely to do your bidding and do it well than another wand .And this holds true for all wands does it ?asked Harry .I think so replied Ollivander his protuberant eyes upon Harrys face .You ask deep questions Mr Potter .Wandlore is a complex and mysterious branch of magic .So it isnt necessary to kill the previous owner to take true possession of a wand ?asked Harry .Ollivander swallowed .Necessary ?No I should not say that it is necessary to kill .There are legends though said Harry and as his heart rate quickened the pain in his scar became more intense he was sure that Voldemort had decided to put his idea into action .Legends about a wand or wands that have passed from hand to hand by murder .Ollivander turned pale .Against the snowy pillow he was light gray and his eyes were enormous bloodshot and bulging with what looked like fear .Only one wand I think he whispered .And YouKnowWho is interested in it isnt he ?asked Harry .I how ?croaked Ollivander and he looked appealingly at Ron and Hermione for help .How do you know this ?He wanted you to tell him how to overcome the connection between our wands said Harry .Ollivander looked terrified .He tortured me you must understand that !The Cruciatus Curse I I had no choice but to tell him what I knew what I guessed !I understand said Harry .You told him about the twin cores ?You said he just had to borrow another wizards wand ?Ollivander looked horrified transfixed by the amount that Harry knew .He nodded slowly .But it didnt work Harry went on .Mine still beat the borrowed wand .Do you know why that is ?Ollivander shook his head as slowly as he had just nodded .I had .never heard of such a thing .Your wand performed something unique that night .The connection of the twin cores is incredibly rare yet why your wand should have snapped the borrowed wand I do not know .We were talking about the other wand the wand that changes hands by murder .When YouKnowWho realized my wand had done something strange he came back and asked about that other wand didnt he ?How do you know this ?Harry did not answer .Yes he asked whispered Ollivander .He wanted to know everything I could tell him about the wand variously known as the Deathstick the Wand of Destiny or the Elder Wand .Harry glanced sideways at Hermione .She looked flabbergasted .The Dark Lord said Ollivander in hushed and frightened tones had always been happy with the wand I made him yew and phoenix feather thirteenandahalf inches until he discovered the connection of the twin cores .Now he seeks another more powerful wand as the only way to conquer yours .But hell know soon if he doesnt already that mines broken beyond repair said Harry quietly .No !said Hermione sounding frightened .He cant know that Harry how could he ?Priori Incantatem said Harry .We left your wand and the blackthorn wand at the Malfoys Hermione .If they examine them properly make them recreate the spells theyve cast lately theyll see that yours broke mine theyll see that you tried and failed to mend it and theyll realize that Ive been using the blackthorn one ever since .The little color she had regained since their arrival had drained from her face .Ron gave Harry a reproachful look and said Lets not worry about that now But Mr Ollivander intervened .The Dark Lord no longer seeks the Elder Wand only for your destruction Mr Potter .He is determined to possess it because he believes it will make him truly invulnerable .And will it ?The owner of the Elder Wand must always fear attack said Ollivander but the idea of the Dark Lord in possession of the Deathstick is I must admit .formidable .Harry was suddenly reminded of how he had been unsure when they first met of how much he liked Ollivander .Even now having been tortured and imprisoned by Voldemort the idea of the Dark wizard in possession of this wand seemed to enthrall him as much as it repulsed him .You you really think this wand exists then Mr Ollivander ?asked Hermione .Oh yes said Ollivander .Yes it is perfectly possible to trace the wands course through history .There are gaps of course and long ones where it vanishes from view temporarily lost or hidden but always it resurfaces .It has certain identifying characteristics that those who are learned in wandlore recognize .There are written accounts some of them obscure that I and other wandmakers have made it our business to study .They have the ring of authenticity .So you you dont think it can be a fairy tale or a myth ?Hermione asked hopefully .No said Ollivander .Whether it needs to pass by murder I do not know .Its history is bloody but that may be simply due to the fact that it is such a desirable object and arouses such passions in wizards .Immensely powerful dangerous in the wrong hands and an object of incredible fascination to all of us who study the power of wands .Mr Ollivander said Harry you told YouKnowWho that Gregorovitch had the Elder Wand didnt you ?Ollivander turned if possible even paler .He looked ghostly as he gulped .But how how do you ?Never mind how I know it said Harry closing his eyes momentarily as his scar burned and he saw for mere seconds a vision of the main street in Hogsmeade still dark because it was so much farther north .You told YouKnowWho that Gregorovitch had the wand ?It was a rumor whispered Ollivander .A rumor years and years ago long before you were born !I believe Gregorovitch himself started it .You can see how good it would be for business that he was studying and duplicating the qualities of the Elder Wand !Yes I can see that said Harry .He stood up .Mr Ollivander one last thing and then well let you get some rest .What do you know about the Deathly Hallows ?The the what ?asked the wandmaker looking utterly bewildered .The Deathly Hallows .Im afraid I dont know what youre talking about .Is this still something to do with wands ?Harry looked into the sunken face and believed that Ollivander was not acting .He did not know about the Hallows .Thank you said Harry .Thank you very much .Well leave you to get some rest now .Ollivander looked stricken .He was torturing me !he gasped .The Cruciatus Curse .you have no idea .I do said Harry .I really do .Please get some rest .Thank you for telling me all of this .He led Ron and Hermione down the staircase .Harry caught a glimpse of Bill Fleur Luna and Dean sitting at the table in the kitchen cups of tea in front of them .They all looked up at Harry as he appeared in the doorway but he merely nodded to them and continued into the garden Ron and Hermione behind him .The reddish mound of earth that covered Dobby lay ahead and Harry walked back to it as the pain in his head built more and more powerfully .It was a huge effort now to close down the visions that were forcing themselves upon him but he knew that he would have to resist only a little longer .He would yield very soon because he needed to know that his theory was right .He must make only one more short effort so that he could explain to Ron and Hermione .Gregorovitch had the Elder Wand a long time ago he said .I saw YouKnowWho trying to find him .When he tracked him down he found that Gregorovitch didnt have it anymore It was stolen from him by Grindelwald .How Grindelwald found out that Gregorovitch had it I dont know but if Gregorovitch was stupid enough to spread the rumor it cant have been that difficult .Voldemort was at the gates of Hogwarts Harry could see him standing there and see too the lamp bobbing in the predawn coming closer and closer .And Grindelwald used the Elder Wand to become powerful .And at the height of his power when Dumbledore knew he was the only one who could stop him he dueled Grindelwald and beat him and he took the Elder Wand .Dumbledore had the Elder Wand ?said Ron .But then where is it now ?At Hogwarts said Harry fighting to remain with them in the clifftop garden .But then lets go !said Ron urgently .Harry lets go and get it before he does !Its too late for that said Harry .He could not help himself but clutched his head trying to help it resist .He knows where it is .Hes there now .Harry !Ron said furiously .How long have you known this why have we been wasting time ?Why did you talk to Griphook first ?We could have gone we could still go No said Harry and he sank to his knees in the grass .Hermiones right .Dumbledore didnt want me to have it .He didnt want me to take it .He wanted me to get the Horcruxes .The unbeatable wand Harry !moaned Ron .Im not supposed to .Im supposed to get the Horcruxes .And now everything was cool and dark The sun was barely visible over the horizon as he glided alongside Snape up through the grounds toward the lake .I shall join you in the castle shortly he said in his high cold voice .Leave me now .Snape bowed and set off back up the path his black cloak billowing behind him .Harry walked slowly waiting for Snape s figure to disappear .It would not do for Snape or indeed anyone else to see where he was going .But there were no lights in the castle windows and he could conceal himself .and in a second he had cast upon himself a Disillusionment Charm that hid him even from his own eyes .And he walked on around the edge of the lake taking in the outlines of the beloved castle his first kingdom his birthright .And here it was beside the lake reflected in the dark waters .The white marble tomb an unnecessary blot on the familiar landscape .He felt again that rush of controlled euphoria that heady sense of purpose in destruction .He raised the old yew wand How fitting that this would be its last great act .The tomb split open from head to foot .The shrouded figure was as long and thin as it had been in life .He raised the wand again .The wrappings fell open .The face was translucent pale sunken yet almost perfectly preserved .They had left his spectacles on the crooked nose He felt amused derision .Dumbledores hands were folded upon his chest and there it lay clutched beneath them buried with him .Had the old fool imagined that marble or death would protect the wand ?Had he thought that the Dark Lord would be scared to violate his tomb ?The spiderlike hand swooped and pulled the wand from Dumbledores grasp and as he took it a shower of sparks flew from its tip sparkling over the corpse of its last owner ready to serve a new master at last .SHELL COTTAGE Bill and Fleurs cottage stood alone on a cliff overlooking the sea its walls embedded with shells and whitewashed .It was a lonely and beautiful place .Wherever Harry went inside the tiny cottage or its garden he could hear the constant ebb and flow of the sea like the breathing of some great slumbering creature .He spent much of the next few days making excuses to escape the crowded cottage craving the clifftop view of open sky and wide empty sea and the feel of cold salty wind on his face .The enormity of his decision not to race Voldemort to the wand still scared Harry .He could not remember ever before choosing not to act .He was full of doubts doubts that Ron could not help voicing whenever they were together .What if Dumbledore wanted us to work out the symbol in time to get the wand ?What if working out what the symbol meant made you ‘worthy to get the Hallows ?Harry if that really is the Elder Wand how the hell are we supposed to finish off YouKnow Who ?Harry had no answers There were moments when he wondered whether it had been outright madness not to try to prevent Voldemort breaking open the tomb .He could not even explain satisfactorily why he had decided against it Every time he tried to reconstruct the internal arguments that had led to his decision they sounded feebler to him .The odd thing was that Hermiones support made him feel just as confused as Rons doubts .Now forced to accept that the Elder Wand was real she maintained that it was an evil object and that the way Voldemort had taken possession of it was repellent not to be considered .You could never have done that Harry she said again and again .You couldnt have broken into Dumbledores grave .But the idea of Dumbledores corpse frightened Harry much less than the possibility that he might have misunderstood the living Dumbledores intentions .He felt that he was still groping in the dark he had chosen his path but kept looking back wondering whether he had misread the signs whether he should not have taken the other way .From time to time anger at Dumbledore crashed over him again powerful as the waves slamming themselves against the cliff beneath the cottage anger that Dumbledore had not explained before he died .But is he dead ?said Ron three days after they had arrived at the cottage .Harry had been staring out over the wall that separated the cottage garden from the cliff when Ron and Hermione had found him he wished they had not having no wish to join in with their argument .Yes he is Ron please dont start that again !Look at the facts Hermione said Ron speaking across Harry who continued to gaze at the horizon .The silver doe .The sword .The eye Harry saw in the mirror Harry admits he could have imagined the eye !Dont you Harry ?I could have said Harry without looking at her .But you dont think you did do you ?asked Ron .No I dont said Harry .There you go !said Ron quickly before Hermione could carry on .If it wasnt Dumbledore explain how Dobby knew we were in the cellar Hermione ?I cant but can you explain how Dumbledore sent him to us if hes lying in a tomb at Hogwarts ?I dunno it couldve been his ghost !Dumbledore wouldnt come back as a ghost said Harry .There was little about Dumbledore he was sure of now but he knew that much .He would have gone on .What dyou mean ‘gone on ?asked Ron but before Harry could say any more a voice behind them said Arry ?Fleur had come out of the cottage her long silver hair flying in the breeze .Arry Gripook would like to speak to you .E eez in ze smallest bedroom e says e does not want to be overeard .Her dislike of the goblin sending her to deliver messages was clear she looked irritable as she walked back around the house .Griphook was waiting for them as Fleur had said in the tiniest of the cottages three bedrooms in which Hermione and Luna slept by night .He had drawn the red cotton curtains against the bright cloudy sky which gave the room a fiery glow at odds with the rest of the airy light cottage .I have reached my decision Harry Potter said the goblin who was sitting crosslegged in a low chair drumming its arms with his spindly fingers .Though the goblins of Gringotts will consider it base treachery I have decided to help you Thats great !said Harry relief surging through him .Griphook thank you were really in return said the goblin firmly for payment .Slightly taken aback Harry hesitated .How much do you want ?Ive got gold .Not gold said Griphook .I have gold .His black eyes glittered there were no whites to his eyes .I want the sword .The sword of Godric Gryffindor .Harrys spirits plummeted .You cant have that he said .Im sorry .Then said the goblin softly we have a problem .We can give you something else said Ron eagerly .Ill bet the Lestranges have got loads of stuff you can take your pick once we get into the vault .He had said the wrong thing .Griphook flushed angrily .I am not a thief boy !I am not trying to procure treasures to which I have no right !The swords ours It is not said the goblin .Were Gryffindors and it was Godric Gryffindors And before it was Gryffindors whose was it ?demanded the goblin sitting up straight .No ones said Ron .It was made for him wasnt it ?No !cried the goblin bristling with anger as he pointed a long finger at Ron .Wizarding arrogance again !That sword was Ragnuk the Firsts taken from him by Godric Gryffindor !It is a lost treasure a masterpiece of goblinwork !It belongs with the goblins !The sword is the price of my hire take it or leave it !Griphook glared at them .Harry glanced at the other two then said We need to discuss this Griphook if thats all right .Could you give us a few minutes ?The goblin nodded looking sour .Downstairs in the empty sitting room Harry walked to the fireplace brow furrowed trying to think what to do .Behind him Ron said Hes having a laugh .We cant let him have that sword .It is true ?Harry asked Hermione .Was the sword stolen by Gryffindor ?I dont know she said hopelessly .Wizarding history often skates over what the wizards have done to other magical races but theres no account that I know of that says Gryffindor stole the sword .Itll be one of those goblin stories said Ron about how the wizards are always trying to get one over on them .I suppose we should think ourselves lucky he hasnt asked for one of our wands .Goblins have got good reason to dislike wizards Ron said Hermione .Theyve been treated brutally in the past .Goblins arent exactly fluffy little bunnies though are they ?said Ron .Theyve killed plenty of us .Theyve fought dirty too .But arguing with Griphook about whose race is most underhanded and violent isnt going to make him more likely to help us is it ?There was a pause while they tried to think of a way around the problem .Harry looked out of the window at Dobbys grave .Luna was arranging sea lavender in a jam jar beside the headstone .Okay said Ron and Harry turned back to face him hows this ?We tell Griphook we need the sword until we get inside the vault and then he can have it .Theres a fake in there isnt there ?We switch them and give him the fake .Ron hed know the difference better than we would !said Hermione .Hes the only one who realized there had been a swap !Yeah but we could scarper before he realizes He quailed beneath the look Hermione was giving him .That she said quietly is despicable .Ask for his help then doublecross him ?And you wonder why goblins dont like wizards Ron ?Rons ears had turned red .All right all right !It was the only thing I could think of !Whats your solution then ?We need to offer him something else something just as valuable .Brilliant .Ill go and get one of our other ancient goblinmade swords and you can gift wrap it .Silence fell between them again .Harry was sure that the goblin would accept nothing but the sword even if they had something as valuable to offer him .Yet the sword was their one indispensable weapon against the Horcruxes .He closed his eyes for a moment or two and listened to the rush of the sea .The idea that Gryffindor might have stolen the sword was unpleasant to him He had always been proud to be a Gryffindor Gryffindor had been the champion of Muggleborns the wizard who had clashed with the purebloodloving Slytherin .Maybe hes lying Harry said opening his eyes again .Griphook .Maybe Gryffindor didnt take the sword .How do we know the goblin version of historys right ?Does it make a difference ?asked Hermione .Changes how I feel about it said Harry .He took a deep breath .Well tell him he can have the sword after hes helped us get into that vault but well be careful to avoid telling him exactly when he can have it .A grin spread slowly across Rons face .Hermione however looked alarmed .Harry we cant He can have it Harry went on after weve used it on all of the Horcruxes .Ill make sure he gets it then .Ill keep my word .But that could be years !said Hermione .I know that but he neednt .I wont be lying .really .Harry met her eyes with a mixture of defiance and shame .He remembered the words that had been engraved over the gateway to Nurmengard FOR THE GREATER GOOD .He pushed the idea away .What choice did they have ?I dont like it said Hermione .Nor do I much Harry admitted .Well I think its genius said Ron standing up again .Lets go and tell him .Back in the smallest bedroom Harry made the offer careful to phrase it so as not to give any definite time for the handover of the sword .Hermione frowned at the floor while he was speaking he felt irritated at her afraid that she might give the game away .However Griphook had eyes for nobody but Harry .I have your word Harry Potter that you will give me the sword of Gryffindor if I help you ?Yes said Harry .Then shake said the goblin holding out his hand .Harry took it and shook .He wondered whether those black eyes saw any misgivings in his own .Then Griphook relinquished him clapped his hands together and said So .We begin !It was like planning to break into the Ministry all over again .They settled to work in the smallest bedroom which was kept according to Griphooks preference in semidarkness .I have visited the Lestranges vault only once Griphook told them on the occasion I was told to place inside it the false sword .It is one of the most ancient chambers .The oldest Wizarding families store their treasures at the deepest level where the vaults are largest and best protected .They remained shut in the cupboardlike room for hours at a time .Slowly the days stretched into weeks .There was problem after problem to overcome not least of which was that their store of Polyjuice Potion was greatly depleted .Theres really only enough left for one of us said Hermione tilting the thick mudlike potion against the lamplight .Thatll be enough said Harry who was examining Griphooks handdrawn map of the deepest passageways .The other inhabitants of Shell Cottage could hardly fail to notice that something was going on now that Harry Ron and Hermione only emerged for mealtimes .Nobody asked questions although Harry often felt Bills eyes on the three of them at the table thoughtful concerned .The longer they spent together the more Harry realized that he did not much like the goblin .Griphook was unexpectedly bloodthirsty laughed at the idea of pain in lesser creatures and seemed to relish the possibility that they might have to hurt other wizards to reach the Lestranges vault .Harry could tell that his distaste was shared by the other two but they did not discuss it They needed Griphook .The goblin ate only grudgingly with the rest of them .Even after his legs had mended he continued to request trays of food in his room like the stillfrail Ollivander until Bill following an angry outburst from Fleur went upstairs to tell him that the arrangement could not continue .Thereafter Griphook joined them at the overcrowded table although he refused to eat the same food insisting instead on lumps of raw meat roots and various fungi .Harry felt responsible It was after all he who had insisted that the goblin remain at Shell Cottage so that he could question him his fault that the whole Weasley family had been driven into hiding that Bill Fred George and Mr Weasley could no longer work .Im sorry he told Fleur one blustery April evening as he helped her prepare dinner .I never meant you to have to deal with all of this .She had just set some knives to work chopping up steaks for Griphook and Bill who had preferred his meat bloody ever since he had been attacked by Greyback .While the knives sliced away behind her her somewhat irritable expression softened .Arry you saved my sisters life I do not forget .This was not strictly speaking true but Harry decided against reminding her that Gabrielle had never been in real danger .Anyway Fleur went on pointing her wand at a pot of sauce on the stove which began to bubble at once Mr Ollivander leaves for Muriels zis evening .Zat will make zings easier .Ze goblin she scowled a little at the mention of him can move downstairs and you Ron and Dean can take zat room .We dont mind sleeping in the living room said Harry who knew that Griphook would think poorly of having to sleep on the sofa keeping Griphook happy was essential to their plans .Dont worry about us .And when she tried to protest he went on Well be off your hands soon too Ron Hermione and I .We wont need to be here much longer .But what do you mean ?she said frowning at him her wand pointing at the casserole dish now suspended in midair .Of course you must not leave you are safe ere !She looked rather like Mrs Weasley as she said it and he was glad that the back door opened at that moment .Luna and Dean entered their hair damp from the rain outside and their arms full of driftwood . .and tiny little ears Luna was saying a bit like a hippos Daddy says only purple and hairy .And if you want to call them you have to hum they prefer a waltz nothing too fast .Looking uncomfortable Dean shrugged at Harry as he passed following Luna into the combined dining and sitting room where Ron and Hermione were laying the dinner table .Seizing the chance to escape Fleurs questions Harry grabbed two jugs of pumpkin juice and followed them . .and if you ever come to our house Ill be able to show you the horn Daddy wrote to me about it but I havent seen it yet because the Death Eaters took me from the Hogwarts Express and I never got home for Christmas Luna was saying as she and Dean relaid the fire .Luna we told you Hermione called over to her .That horn exploded .It came from an Erumpent not a CrumpleHorned Snorkack No it was definitely a Snorkack horn said Luna serenely .Daddy told me .It will probably have re formed by now they mend themselves you know .Hermione shook her head and continued laying down forks as Bill appeared leading Mr Ollivander down the stairs .The wandmaker still looked exceptionally frail and he clung to Bills arm as the latter supported him carrying a large suitcase . ‘Tm going to miss you Mr Ollivander said Luna approaching the old man .And I you my dear said Ollivander patting her on the shoulder .You were an inexpressible comfort to me in that terrible place .So au revoir Mr Ollivander said Fleur kissing him on both cheeks .And I wonder whezzer you could oblige me by delivering a package to Bills Auntie Muriel ?I never returned er tiara .It will be an honor said Ollivander with a little bow the very least I can do in return for your generous hospitality .Fleur drew out a worn velvet case which she opened to show the wandmaker .The tiara sat glittering and twinkling in the light from the lowhanging lamp .Moonstones and diamonds said Griphook who had sidled into the room without Harry noticing .Made by goblins I think ?And paid for by wizards said Bill quietly and the goblin shot him a look that was both furtive and challenging .A strong wind gusted against the cottage windows as Bill and Ollivander set off into the night .The rest of them squeezed in around the table elbow to elbow and with barely enough room to move they started to eat .The fire crackled and popped in the grate beside them .Fleur Harry noticed was merely playing with her food she glanced at the window every few minutes however Bill returned before they had finished their first course his long hair tangled by the wind .Everythings fine he told Fleur .Ollivander settled in Mum and Dad say hello .Ginny sends you all her love .Fred and George are driving Muriel up the wall theyre still operating an OwlOrder business out of her back room .It cheered her up to have her tiara back though .She said she thought wed stolen it .Ah she eez charmante your aunt said Fleur crossly waving her wand and causing the dirty plates to rise and form a stack in midair .She caught them and marched out of the room .Daddys made a tiara piped up Luna .Well more of a crown really .Ron caught Harrys eye and grinned Harry knew that he was remembering the ludicrous headdress they had seen on their visit to Xenophilius .Yes hes trying to recreate the lost diadem of Ravenclaw .He thinks hes identified most of the main elements now .Adding the billywig wings really made a difference There was a bang on the front door .Everyones head turned toward it .Fleur came running out of the kitchen looking frightened Bill jumped to his feet his wand pointing at the door Harry Ron and Hermione did the same .Silently Griphook slipped beneath the table out of sight .Who is it ?Bill called .It is I Remus John Lupin !called a voice over the howling wind .Harry experienced a thrill of fear what had happened ?I am a werewolf married to Nymphadora Tonks and you the SecretKeeper of Shell Cottage told me the address and bade me come in an emergency !Lupin muttered Bill and he ran to the door and wrenched it open .Lupin fell over the threshold .He was whitefaced wrapped in a traveling cloak his graying hair windswept .He straightened up looked around the room making sure of who was there then cried aloud Its a boy !Weve named him Ted after Doras father !Hermione shrieked .Wha ?Tonks Tonks has had the baby ?Yes yes shes had the baby !shouted Lupin .All around the table came cries of delight sighs of relief Hermione and Fleur both squealed Congratulations !and Ron said Blimey a baby !as if he had never heard of such a thing before .Yes yes a boy said Lupin again who seemed dazed by his own happiness .He strode around the table and hugged Harry the scene in the basement of Grimmauld Place might never have happened .Youll be godfather ?he said as he released Harry .Mme ?stammered Harry You yes of course Dora quite agrees no one better I yeah blimey Harry felt overwhelmed astonished delighted now Bill was hurrying to fetch wine and Fleur was persuading Lupin to join them for a drink .I cant stay long I must get back said Lupin beaming around at them all He looked years younger than Harry had ever seen him .Thank you thank you Bill .Bill had soon filled all of their goblets they stood and raised them high in a toast .To Teddy Remus Lupin said Lupin a great wizard in the making !Oo does e look like ?Fleur inquired .I think he looks like Dora but she thinks he is like me .Not much hair .It looked black when he was born but I swear its turned ginger in the hour since .Probably be blond by the time I get back .Andromeda says Tonkss hair started changing color the day that she was born .He drained his goblet .Oh go on then just one more he added beaming as Bill made to fill it again .The wind buffeted the little cottage and the fire leapt and crackled and Bill was soon opening another bottle of wine .Lupins news seemed to have taken them out of themselves removed them for a while from their state of siege Tidings of new life were exhilarating .Only the goblin seemed untouched by the suddenly festive atmosphere and after a while he slunk back to the bedroom he now occupied alone .Harry thought he was the only one who had noticed this until he saw Bills eyes following the goblin up the stairs .No .no .I really must get back said Lupin at last declining yet another goblet of wine .He got to his feet and pulled his traveling cloak back around himself .Goodbye goodbye Ill try and bring some pictures in a few days time theyll all be so glad to know that Ive seen you He fastened his cloak and made his farewells hugging the women and grasping hands with the men then still beaming returned into the wild night .Godfather Harry !said Bill as they walked into the kitchen together helping clear the table .A real honor !Congratulations !As Harry set down the empty goblets he was carrying Bill pulled the door behind him closed shutting out the stillvoluble voices of the others who were continuing to celebrate even in Lupins absence .I wanted a private word actually Harry .It hasnt been easy to get an opportunity with the cottage this full of people .Bill hesitated .Harry youre planning something with Griphook .It was a statement not a question and Harry did not bother to deny it .He merely looked at Bill waiting .I know goblins said Bill .Ive worked for Gringotts ever since I left Hogwarts .As far as there can be friendship between wizards and goblins I have goblin friends or at least goblins I know well and like .Again Bill hesitated .Harry what do you want from Griphook and what have you promised him in return ?I cant tell you that said Harry .Sorry Bill .The kitchen door opened behind them Fleur was trying to bring through more empty goblets .Wait Bill told her .Just a moment .She backed out and he closed the door again .Then I have to say this Bill went on .If you have struck any kind of bargain with Griphook and most particularly if that bargain involves treasure you must be exceptionally careful .Goblin notions of ownership payment and repayment are not the same as human ones .Harry felt a slight squirm of discomfort as though a small snake had stirred inside him .What do you mean ?he asked .We are talking about a different breed of being said Bill .Dealings between wizards and goblins have been fraught for centuries but youll know all that from History of Magic .There has been fault on both sides I would never claim that wizards have been innocent .However there is a belief among some goblins and those at Gringotts are perhaps most prone to it that wizards cannot be trusted in matters of gold and treasure that they have no respect for goblin ownership .I respect Harry began but Bill shook his head .You dont understand Harry nobody could understand unless they have lived with goblins .To a goblin the rightful and true master of any object is the maker not the purchaser .All goblinmade objects are in goblin eyes rightfully theirs .But if it was bought then they would consider it rented by the one who had paid the money .They have however great difficulty with the idea of goblinmade objects passing from wizard to wizard .You saw Griphooks face when the tiara passed under his eyes .He disapproves .I believe he thinks as do the fiercest of his kind that it ought to have been returned to the goblins once the original purchaser died .They consider our habit of keeping goblinmade objects passing them from wizard to wizard without further payment little more than theft .Harry had an ominous feeling now he wondered whether Bill guessed more than he was letting on .All I am saying said Bill setting his hand on the door back into the sitting room is to be very careful what you promise goblins Harry .It would be less dangerous to break into Gringotts than to renege on a promise to a goblin .Right said Harry as Bill opened the door yeah .Thanks .Ill bear that in mind .As he followed Bill back to the others a wry thought came to him born no doubt of the wine he had drunk .He seemed set on course to become just as reckless a godfather to Teddy Lupin as Sirius Black had been to him .GRINGOTTS Their plans were made their preparations complete in the smallest bedroom a single long coarse black hair plucked from the sweater Hermione had been wearing at Malfoy Manor lay curled in a small glass phial on the mantelpiece .And youll be using her actual wand said Harry nodding toward the walnut wand so I reckon youll be pretty convincing .Hermione looked frightened that the wand might sting or bite her as she picked it up .I hate this thing she said in a low voice .I really hate it .It feels all wrong it doesnt work properly for me .Its like a bit of her .Harry could not help but remember how Hermione had dismissed his loathing of the blackthorn wand insisting that he was imagining things when it did not work as well as his own telling him to simply practice .He chose not to repeat her own advice back to her however the eve of their attempted assault on Gringotts felt like the wrong moment to antagonize her .Itll probably help you get in character though said Ron .Think what that wands done !But thats my point !said Hermione .This is the wand that tortured Nevilles mum and dad and who knows how many other people ?This is the wand that killed Sirius !Harry had not thought of that He looked down at the wand and was visited by a brutal urge to snap it to slice it in half with Gryffindors sword which was propped against the wall beside him .I miss my wand Hermione said miserably .I wish Mr Ollivander could have made me another one too .Mr Ollivander had sent Luna a new wand that morning .She was out on the back lawn at that moment testing its capabilities in the late afternoon sun .Dean who had lost his wand to the Snatchers was watching rather gloomily .Harry looked down at the hawthorn wand that had once belonged to Draco Malfoy .He had been surprised but pleased to discover that it worked for him at least as well as Hermione s had done .Remembering what Ollivander had told them of the secret workings of wands Harry thought he knew what Hermione s problem was She had not won the walnut wands allegiance by taking it personally from Bellatrix .The door of the bedroom opened and Griphook entered .Harry reached instinctively for the hilt of the sword and drew it close to him but regretted his action at once He could tell that the goblin had noticed .Seeking to gloss over the sticky moment he said Weve just been checking the lastminute stuff Griphook .Weve told Bill and Fleur were leaving tomorrow and weve told them not to get up to see us off .They had been firm on this point because Hermione would need to transform into Bellatrix before they left and the less that Bill and Fleur knew or suspected about what they were about to do the better .They had also explained that they would not be returning .As they had lost Perkinss old tent on the night that the Snatchers caught them Bill had lent them another one .It was now packed inside the beaded bag which Harry was impressed to learn Hermione had protected from the Snatchers by the simple expedient of stuffing it down her sock .Though he would miss Bill Fleur Luna and Dean not to mention the home comforts they had enjoyed over the last few weeks Harry was looking forward to escaping the confinement of Shell Cottage .He was tired of trying to make sure that they were not overheard tired of being shut in the tiny dark bedroom .Most of all he longed to be rid of Griphook .However precisely how and when they were to part from the goblin without handing over Gryffindors sword remained a question to which Harry had no answer .It had been impossible to decide how they were going to do it because the goblin rarely left Harry Ron and Hermione alone together for more than five minutes at a time He could give my mother lessons growled Ron as the goblins long fingers kept appearing around the edges of doors .With Bills warning in mind Harry could not help suspecting that Griphook was on the watch for possible skulduggery .Hermione disapproved so heartily of the planned doublecross that Harry had given up attempting to pick her brains on how best to do it Ron on the rare occasions that they had been able to snatch a few Griphookfree moments had come up with nothing better than Well just have to wing it mate .Harry slept badly that night .Lying awake in the early hours he thought back to the way he had felt the night before they had infiltrated the Ministry of Magic and remembered a determination almost an excitement .Now he was experiencing jolts of anxiety nagging doubts He could not shake off the fear that it was all going to go wrong .He kept telling himself that their plan was good that Griphook knew what they were facing that they were wellprepared for all the difficulties they were likely to encounter yet still he felt uneasy .Once or twice he heard Ron stir and was sure that he too was awake but they were sharing the sitting room with Dean so Harry did not speak .It was a relief when six oclock arrived and they could slip out of their sleeping bags dress in the semidarkness then creep out into the garden where they were to meet Hermione and Griphook .The dawn was chilly but there was little wind now that it was May .Harry looked up at the stars still glimmering palely in the dark sky and listened to the sea washing backward and forward against the cliff He was going to miss the sound .Small green shoots were forcing their way up through the red earth of Dobbys grave now in a years time the mound would be covered in flowers .The white stone that bore the elfs name had already acquired a weathered look .He realized now that they could hardly have laid Dobby to rest in a more beautiful place but Harry ached with sadness to think of leaving him behind .Looking down on the grave he wondered yet again how the elf had known where to come to rescue them .His fingers moved absentmindedly to the little pouch still strung around his neck through which he could feel the jagged mirror fragment in which he had been sure he had seen Dumbledores eye .Then the sound of a door opening made him look around .Bellatrix Lestrange was striding across the lawn toward them accompanied by Griphook .As she walked she was tucking the small beaded bag into the inside pocket of another set of the old robes they had taken from Grimmauld Place .Though Harry knew perfectly well that it was really Hermione he could not suppress a shiver of loathing .She was taller than he was her long black hair rippling down her back her heavily lidded eyes disdainful as they rested upon him but then she spoke and he heard Hermione through Bellatrixs low voice .She tasted disgusting worse than Gurdyroots !Okay Ron come here so I can do you .Right but remember I dont like the beard too long Oh for heavens sake this isnt about looking handsome Its not that it gets in the way !But I liked my nose a bit shorter try and do it the way you did last time .Hermione sighed and set to work muttering under her breath as she transformed various aspects of Rons appearance .He was to be given a completely fake identity and they were trusting to the malevolent aura cast by Bellatrix to protect him .Meanwhile Harry and Griphook were to be concealed under the Invisibility Cloak .There said Hermione how does he look Harry ?It was just possible to discern Ron under his disguise but only Harry thought because he knew him so well .Rons hair was now long and wavy he had a thick brown beard and mustache no freckles a short broad nose and heavy eyebrows .Well hes not my type but hell do said Harry .Shall we go then ?All three of them glanced back at Shell Cottage lying dark and silent under the fading stars then turned and began to walk toward the point just beyond the boundary wall where the Fidelius Charm stopped working and they would be able to Disapparate .Once past the gate Griphook spoke .I should climb up now Harry Potter I think ?Harry bent down and the goblin clambered onto his back his hands linked in front of Harrys throat .He was not heavy but Harry disliked the feeling of the goblin and the surprising strength with which he clung on .Hermione pulled the Invisibility Cloak out of the beaded bag and threw it over them both .Perfect she said bending down to check Harrys feet .I cant see a thing .Lets go .Harry turned on the spot with Griphook on his shoulders concentrating with all his might on the Leaky Cauldron the inn that was the entrance to Diagon Alley .The goblin clung even tighter as they moved into the compressing darkness and seconds later Harrys feet found pavement and he opened his eyes on Charing Cross Road .Muggles bustled past wearing the hangdog expressions of early morning quite unconscious of the little inns existence .The bar of the Leaky Cauldron was nearly deserted .Tom the stooped and toothless landlord was polishing glasses behind the bar counter a couple of warlocks having a muttered conversation in the far corner glanced at Hermione and drew back into the shadows .Madam Lestrange murmured Tom and as Hermione passed he inclined his head subserviently .Good morning said Hermione and as Harry crept past still carrying Griphook piggyback under the Cloak he saw Tom look surprised .Too polite Harry whispered in Hermiones ear as they passed out of the inn into the tiny backyard .You need to treat people like theyre scum !Okay okay !Hermione drew out Bellatrixs wand and tapped a brick in the nondescript wall in front of them .At once the bricks began to whirl and spin A hole appeared in the middle of them which grew wider and wider finally forming an archway onto the narrow cobbled street that was Diagon Alley .It was quiet barely time for the shops to open and there were hardly any shoppers abroad .The crooked cobbled street was much altered now from the bustling place Harry had visited before his first term at Hogwarts so many years before .More shops than ever were boarded up though several new establishments dedicated to the Dark Arts had been created since his last visit .Harrys own face glared down at him from posters plastered over many windows always captioned with the words UNDESIRABLE NUMBER ONE .A number of ragged people sat huddled in doorways .He heard them moaning to the few passersby pleading for gold insisting that they were really wizards .One man had a bloody bandage over his eye .As they set off along the street the beggars glimpsed Hermione .They seemed to melt away before her drawing hoods over their faces and fleeing as fast as they could .Hermione looked after them curiously until the man with the bloodied bandage came staggering right across her path .My children !he bellowed pointing at her .His voice was cracked highpitched he sounded distraught .Where are my children ?What has he done with them ?You know you know I I really stammered Hermione .The man lunged at her reaching for her throat Then with a bang and a burst of red light he was thrown backward onto the ground unconscious .Ron stood there his wand still outstretched and a look of shock visible behind his beard .Faces appeared at the windows on either side of the street while a little knot of prosperouslooking passersby gathered their robes about them and broke into gentle trots keen to vacate the scene .Their entrance into Diagon Alley could hardly have been more conspicuous for a moment Harry wondered whether it might not be better to leave now and try to think of a different plan .Before they could move or consult one another however they heard a cry from behind them .Why Madam Lestrange !Harry whirled around and Griphook tightened his hold around Harrys neck A tall thin wizard with a crown of bushy gray hair and a long sharp nose was striding toward them .Its Travers hissed the goblin into Harrys ear but at that moment Harry could not think who Travers was .Hermione had drawn herself up to her fullest height and said with as much contempt as she could muster And what do you want ?Travers stopped in his tracks clearly affronted .Hes another Death Eater breathed Griphook and Harry sidled sideways to repeat the information into Hermione s ear .I merely sought to greet you said Travers coolly but if my presence is not welcome .Harry recognized his voice now Travers was one of the Death Eaters who had been summoned to Xenophiliuss house .No no not at all Travers said Hermione quickly trying to cover up her mistake .How are you ?Well I confess I am surprised to see you out and about Bellatrix .Really ?Why ?asked Hermione .Well Travers coughed I heard that the inhabitants of Malfoy Manor were confined to the house after the .ah .escape .Harry willed Hermione to keep her head .If this was true and Bellatrix was not supposed to be out in public The Dark Lord forgives those who have served him most faithfully in the past said Hermione in a magnificent imitation of Bellatrixs most contemptuous manner .Perhaps your credit is not as good with him as mine is Travers .Though the Death Eater looked offended he also seemed less suspicious .He glanced down at the man Ron had just Stunned .How did it offend you ?It does not matter it will not do so again said Hermione coolly .Some of these wandless can be troublesome said Travers .While they do nothing but beg I have no objection but one of them actually asked me to plead her case at the Ministry last week . ‘Im a witch sir Im a witch let me prove it to youV he said in a squeaky impersonation .As if I was going to give her my wand but whose wand said Travers curiously are you using at the moment Bellatrix ?I heard that your own was I have my wand here said Hermione coldly holding up Bellatrixs wand .I dont know what rumors you have been listening to Travers but you seem sadly misinformed .Travers seemed a little taken aback at that and he turned instead to Ron .Who is your friend ?I do not recognize him .This is Dragomir Despard said Hermione they had decided that a fictional foreigner was the safest cover for Ron to assume .He speaks very little English but he is in sympathy with the Dark Lords aims .He has traveled here from Transylvania to see our new regime .Indeed ?How do you do Dragomir ?Ow you ?said Ron holding out his hand .Travers extended two fingers and shook Rons hand as though frightened of dirtying himself .So what brings you and your ah sympathetic friend to Diagon Alley this early ?asked Travers .I need to visit Gringotts said Hermione .Alas I also said Travers .Gold filthy gold !We cannot live without it yet I confess I deplore the necessity of consorting with our longfingered friends .Harry felt Griphooks clasped hands tighten momentarily around his neck .Shall we ?said Travers gesturing Hermione forward .Hermione had no choice but to fall into step beside him and head along the crooked cobbled street toward the place where the snowywhite Gringotts stood towering over the other little shops .Ron sloped along beside them and Harry and Griphook followed .A watchful Death Eater was the very last thing they needed and the worst of it was with Travers marching at what he believed to be Bellatrixs side there was no means for Harry to communicate with Hermione or Ron .All too soon they arrived at the foot of the marble steps leading up to the great bronze doors .As Griphook had already warned them the liveried goblins who usually flanked the entrance had been replaced by two wizards both of whom were clutching long thin golden rods .Ah Probity Probes sighed Travers theatrically so crude but effective !And he set off up the steps nodding left and right to the wizards who raised the golden rods and passed them up and down his body .The Probes Harry knew detected spells of concealment and hidden magical objects .Knowing that he had only seconds Harry pointed Dracos wand at each of the guards in turn and murmured Confundo twice .Unnoticed by Travers who was looking through the bronze doors at the inner hall each of the guards gave a little start as the spells hit them .Hermione s long black hair rippled behind her as she climbed the steps .One moment madam said the guard raising his Probe .But youve just done that !said Hermione in Bellatrixs commanding arrogant voice .Travers looked around eyebrows raised .The guard was confused .He stared down at the thin golden Probe and then at his companion who said in a slightly dazed voice Yeah youve just checked them Marius .Hermione swept forward Ron by her side Harry and Griphook trotting invisibly behind them .Harry glanced back as they crossed the threshold The wizards were both scratching their heads .Two goblins stood before the inner doors which were made of silver and which carried the poem warning of dire retribution to potential thieves .Harry looked up at it and all of a sudden a knifesharp memory came to him standing on this very spot on the day that he had turned eleven the most wonderful birthday of his life and Hagrid standing beside him saying Like I said yehd be mad ter try an rob it .Gringotts had seemed a place of wonder that day the enchanted repository of a trove of gold he had never known he possessed and never for an instant could he have dreamed that he would return to steal .But within seconds they were standing in the vast marble hall of the bank .The long counter was manned by goblins sitting on high stools serving the first customers of the day .Hermione Ron and Travers headed toward an old goblin who was examining a thick gold coin through an eyeglass .Hermione allowed Travers to step ahead of her on the pretext of explaining features of the hall to Ron .The goblin tossed the coin he was holding aside said to nobody in particular Leprechaun and then greeted Travers who passed over a tiny golden key which was examined and given back to him .Hermione stepped forward .Madam Lestrange !said the goblin evidently startled .Dear me !How how may I help you today ?I wish to enter my vault said Hermione .The old goblin seemed to recoil a little .Harry glanced around .Not only was Travers hanging back watching but several other goblins had looked up from their work to stare at Hermione .You have .identification ?asked the goblin .Identification ?I I have never been asked for identification before !said Hermione .They know whispered Griphook in Harrys ear .They must have been warned there might be an impostor !Your wand will do madam said the goblin .He held out a slightly trembling hand and in a dreadful blast of realization Harry knew that the goblins of Gringotts were aware that Bellatrixs wand had been stolen .Act now act now whispered Griphook in Harrys ear the Imperius Cursel Harry raised the hawthorn wand beneath the cloak pointed it at the old goblin and whispered for the first time in his life Imperiol A curious sensation shot down Harrys arm a feeling of tingling warmth that seemed to flow from his mind down the sinews and veins connecting him to the wand and the curse it had just cast .The goblin took Bellatrixs wand examined it closely and then said Ah you have had a new wand made Madam Lestrange !What ?said Hermione .No no thats mine A new wand ?said Travers approaching the counter again still the goblins all around were watching .But how could you have done which wandmaker did you use ?Harry acted without thinking Pointing his wand at Travers he muttered Imperiol once more .Oh yes I see said Travers looking down at Bellatrixs wand yes very handsome .And is it working well ?I always think wands require a little breaking in dont you ?Hermione looked utterly bewildered but to Harrys enormous relief she accepted the bizarre turn of events without comment .The old goblin behind the counter clapped his hands and a younger goblin approached .I shall need the Clankers he told the goblin who dashed away and returned a moment later with a leather bag that seemed to be full of jangling metal which he handed to his senior .Good good !So if you will follow me Madam Lestrange said the old goblin hopping down off his stool and vanishing from sight I shall take you to your vault .He appeared around the end of the counter jogging happily toward them the contents of the leather bag still jingling .Travers was now standing quite still with his mouth hanging wide open .Ron was drawing attention to this odd phenomenon by regarding Travers with confusion .Wait Bogrod !Another goblin came scurrying around the counter .We have instructions he said with a bow to Hermione .Forgive me Madam but there have been special orders regarding the vault of Lestrange .He whispered urgently in Bogrods ear but the Imperiused goblin shook him off .I am aware of the instructions .Madam Lestrange wishes to visit her vault .Very old family .old clients .This way please .And still clanking he hurried toward one of the many doors leading off the hall .Harry looked back at Travers who was still rooted to the spot looking abnormally vacant and made his decision With a flick of his wand he made Travers come with them walking meekly in their wake as they reached the door and passed into the rough stone passageway beyond which was lit with flaming torches .Were in trouble they suspect said Harry as the door slammed behind them and he pulled off the Invisibility Cloak .Griphook jumped down from his shoulders neither Travers nor Bogrod showed the slightest surprise at the sudden appearance of Harry Potter in their midst .Theyre Imperiused he added in response to Hermione and Rons confused queries about Travers and Bogrod who were both now standing there looking blank .I dont think I did it strongly enough I dont know .And another memory darted through his mind of the real Bellatrix Lestrange shrieking at him when he had first tried to use an Unforgivable Curse You need to mean them Potter !What do we do ?asked Ron .Shall we get out now while we can ?If we can said Hermione looking back toward the door into the main hall beyond which who knew what was happening .Weve got this far I say we go on said Harry .Good !said Griphook .So we need Bogrod to control the cart I no longer have the authority .But there will not be room for the wizard .Harry pointed his wand at Travers .Imperio The wizard turned and set off along the dark track at a smart pace .What are you making him do ?Hide said Harry as he pointed his wand at Bogrod who whistled to summon a little cart that came trundling along the tracks toward them out of the darkness .Harry was sure he could hear shouting behind them in the main hall as they all clambered into it Bogrod in front with Griphook Harry Ron and Hermione crammed together in the back .With a jerk the cart moved off gathering speed They hurtled past Travers who was wriggling into a crack in the wall then the cart began twisting and turning through the labyrinthine passages sloping downward all the time .Harry could not hear anything over the rattling of the cart on the tracks His hair flew behind him as they swerved between stalactites flying ever deeper into the earth but he kept glancing back .They might as well have left enormous footprints behind them the more he thought about it the more foolish it seemed to have disguised Hermione as Bellatrix to have brought along Bellatrixs wand when the Death Eaters knew who had stolen it They were deeper than Harry had ever penetrated within Gringotts they took a hairpin bend at speed and saw ahead of them with seconds to spare a waterfall pounding over the track .Harry heard Griphook shout No !but there was no braking They zoomed through it .Water filled Harrys eyes and mouth He could not see or breathe Then with an awful lurch the cart flipped over and they were all thrown out of it .Harry heard the cart smash into pieces against the passage wall heard Hermione shriek something and felt himself glide back toward the ground as though weightless landing painlessly on the rocky passage floor .CCushioning Charm Hermione spluttered as Ron pulled her to her feet but to Harrys horror he saw that she was no longer Bellatrix instead she stood there in overlarge robes sopping wet and completely herself Ron was redhaired and beardless again .They were realizing it as they looked at each other feeling their own faces .The Thiefs Downfall !said Griphook clambering to his feet and looking back at the deluge onto the tracks which Harry knew now had been more than water .It washes away all enchantment all magical concealment !They know there are impostors in Gringotts they have set off defenses against us !Harry saw Hermione checking that she still had the beaded bag and hurriedly thrust his own hand under his jacket to make sure he had not lost the Invisibility Cloak .Then he turned to see Bogrod shaking his head in bewilderment The Thiefs Downfall seemed to have lifted the Imperius Curse .We need him said Griphook we cannot enter the vault without a Gringotts goblin .And we need the Clankers !Imperiol Harry said again his voice echoed through the stone passage as he felt again the sense of heady control that flowed from brain to wand .Bogrod submitted once more to his will his befuddled expression changing to one of polite indifference as Ron hurried to pick up the leather bag of metal tools .Harry I think I can hear people coming !said Hermione and she pointed Bellatrixs wand at the waterfall and cried Protego They saw the Shield Charm break the flow of enchanted water as it flew up the passageway .Good thinking said Harry .Lead the way Griphook !How are we going to get out again ?Ron asked as they hurried on foot into the darkness after the goblin Bogrod panting in their wake like an old dog .Lets worry about that when we have to said Harry .He was trying to listen He thought he could hear something clanking and moving around nearby .Griphook how much farther ?Not far Harry Potter not far .And they turned a corner and saw the thing for which Harry had been prepared but which still brought all of them to a halt .A gigantic dragon was tethered to the ground in front of them barring access to four or five of the deepest vaults in the place .The beasts scales had turned pale and flaky during its long incarceration under the ground its eyes were milkily pink both rear legs bore heavy cuffs from which chains led to enormous pegs driven deep into the rocky floor .Its great spiked wings folded close to its body would have filled the chamber if it spread them and when it turned its ugly head toward them it roared with a noise that made the rock tremble opened its mouth and spat a jet of fire that sent them running back up the passageway .It is partially blind panted Griphook but even more savage for that .However we have the means to control it .It has learned what to expect when the Clankers come .Give them to me .Ron passed the bag to Griphook and the goblin pulled out a number of small metal instruments that when shaken made a loud ringing noise like miniature hammers on anvils .Griphook handed them out Bogrod accepted his meekly .You know what to do Griphook told Harry Ron and Hermione .It will expect pain when it hears the noise It will retreat and Bogrod must place his palm upon the door of the vault .They advanced around the corner again shaking the Clankers and the noise echoed off the rocky walls grossly magnified so that the inside of Harrys skull seemed to vibrate with the din .The dragon let out another hoarse roar then retreated .Harry could see it trembling and as they drew nearer he saw the scars made by vicious slashes across its face and guessed that it had been taught to fear hot swords when it heard the sound of the Clankers .Make him press his hand to the door !Griphook urged Harry who turned his wand again upon Bogrod .The old goblin obeyed pressing his palm to the wood and the door of the vault melted away to reveal a cavelike opening crammed from floor to ceiling with golden coins and goblets silver armor the skins of strange creatures some with long spines others with drooping wings potions in jeweled flasks and a skull still wearing a crown .Search fast !said Harry as they all hurried inside the vault .He had described Hufflepuffs cup to Ron and Hermione but if it was the other unknown Horcrux that resided in this vault he did not know what it looked like .He barely had time to glance around however before there was a muffled clunk from behind them The door had reappeared sealing them inside the vault and they were plunged into total darkness .No matter Bogrod will be able to release us !said Griphook as Ron gave a shout of surprise .Light your wands cant you ?And hurry we have very little time !Lumosl Harry shone his lit wand around the vault Its beam fell upon glittering jewels he saw the fake sword of Gryffindor lying on a high shelf amongst a jumble of chains .Ron and Hermione had lit their wands too and were now examining the piles of objects surrounding them .Harry could this be ?Aargh !Hermione screamed in pain and Harry turned his wand on her in time to see a jeweled goblet tumbling from her grip .But as it fell it split became a shower of goblets so that a second later with a great clatter the floor was covered in identical cups rolling in every direction the original impossible to discern amongst them .It burned me !moaned Hermione sucking her blistered fingers .They have added Gemino and Flagrante Curses !said Griphook .Everything you touch will burn and multiply but the copies are worthless and if you continue to handle the treasure you will eventually be crushed to death by the weight of expanding gold !Okay dont touch anything !said Harry desperately but even as he said it Ron accidentally nudged one of the fallen goblets with his foot and twenty more exploded into being while Ron hopped on the spot part of his shoe burned away by contact with the hot metal .Stand still dont move !said Hermione clutching at Ron .Just look around !said Harry .Remember the cups small and gold its got a badger engraved on it two handles otherwise see if you can spot Ravenclaws symbol anywhere the eagle They directed their wands into every nook and crevice turning cautiously on the spot .It was impossible not to brush up against anything Harry sent a great cascade of fake Galleons onto the ground where they joined the goblets and now there was scarcely room to place their feet and the glowing gold blazed with heat so that the vault felt like a furnace .Harrys wandlight passed over shields and goblin made helmets set on shelves rising to the ceiling higher and higher he raised the beam until suddenly it found an object that made his heart skip and his hand tremble .Its there its up there Ron and Hermione pointed their wands at it too so that the little golden cup sparkled in a threeway spotlight the cup that had belonged to Helga Hufflepuff which had passed into the possession of Hepzibah Smith from whom it had been stolen by Tom Riddle .And how the hell are we going to get up there without touching anything ?asked Ron .Accio Cup cried Hermione who had evidently forgotten in her desperation what Griphook had told them during their planning sessions .No use no use !snarled the goblin .Then what do we do ?said Harry glaring at the goblin .If you want the sword Griphook then youll have to help us more than wait !Can I touch stuff with the sword ?Hermione give it here !Hermione fumbled inside her robes drew out the beaded bag rummaged for a few seconds then removed the shining sword .Harry seized it by its rubied hilt and touched the tip of the blade to a silver flagon nearby which did not multiply .If I can just poke the sword through a handle but how am I going to get up there ?The shelf on which the cup reposed was out of reach for any of them even Ron who was tallest .The heat from the enchanted treasure rose in waves and sweat ran down Harrys face and back as he struggled to think of a way up to the cup and then he heard the dragon roar on the other side of the vault door and the sound of clanking growing louder and louder .They were truly trapped now There was no way out except through the door and a horde of goblins seemed to be approaching on the other side .Harry looked at Ron and Hermione and saw terror in their faces .Hermione said Harry as the clanking grew louder Ive got to get up there weve got to get rid of it She raised her wand pointed it at Harry and whispered Levicorpus .Hoisted into the air by his ankle Harry hit a suit of armor and replicas burst out of it like whitehot bodies filling the cramped space .With screams of pain Ron Hermione and the two goblins were knocked aside into other objects which also began to replicate .Half buried in a rising tide of redhot treasure they struggled and yelled as Harry thrust the sword through the handle of Hufflepuffs cup hooking it onto the blade .Impervius screeched Hermione in an attempt to protect herself Ron and the goblins from the burning metal .Then the worst scream yet made Harry look down Ron and Hermione were waistdeep in treasure struggling to keep Bogrod from slipping beneath the rising tide but Griphook had sunk out of sight and nothing but the tips of a few long fingers were left in view .Harry seized Griphooks fingers and pulled .The blistered goblin emerged by degrees howling .Liberacorpus yelled Harry and with a crash he and Griphook landed on the surface of the swelling treasure and the sword flew out of Harrys hand .Get it !Harry yelled fighting the pain of the hot metal on his skin as Griphook clambered onto his shoulders again determined to avoid the swelling mass of redhot objects .Wheres the sword ?It had the cup on it !The clanking on the other side of the door was growing deafening it was too late There !It was Griphook who had seen it and Griphook who lunged and in that instant Harry knew that the goblin had never expected them to keep their word .One hand holding tightly to a fistful of Harrys hair to make sure he did not fall into the heaving sea of burning gold Griphook seized the hilt of the sword and swung it high out of Harrys reach .The tiny golden cup skewered by the handle on the swords blade was flung into the air .The goblin still astride him Harry dived and caught it and although he could feel it scalding his flesh he did not relinquish it even while countless Hufflepuff cups burst from his fist raining down upon him as the entrance of the vault opened up again and he found himself sliding uncontrollably on an expanding avalanche of fiery gold and silver that bore him Ron and Hermione into the outer chamber .Hardly aware of the pain from the burns covering his body and still borne along on the swell of replicating treasure Harry shoved the cup into his pocket and reached up to retrieve the sword but Griphook was gone .Sliding from Harrys shoulders the moment he could he had sprinted for cover amongst the surrounding goblins brandishing the sword and crying Thieves !Thieves !Help !Thieves !He vanished into the midst of the advancing crowd all of whom were holding daggers and who accepted him without question .Slipping on the hot metal Harry struggled to his feet and knew that the only way out was through .Stupefyl he bellowed and Ron and Hermione joined in Jets of red light flew into the crowd of goblins and some toppled over but others advanced and Harry saw several wizard guards running around the corner .The tethered dragon let out a roar and a gush of flame flew over the goblins The wizards fled doubled up back the way they had come and inspiration or madness came to Harry .Pointing his wand at the thick cuffs chaining the beast to the floor he yelled Relashiol The cuffs broke open with loud bangs .This way !Harry yelled and still shooting Stunning Spells at the advancing goblins he sprinted toward the blind dragon .Harry Harry what are you doing ?cried Hermione .Get up climb up come on The dragon had not realized that it was free Harrys foot found the crook of its hind leg and he pulled himself up onto its back .The scales were hard as steel it did not even seem to feel him .He stretched out an arm Hermione hoisted herself up Ron climbed on behind them and a second later the dragon became aware that it was untethered .With a roar it reared Harry dug in his knees clutching as tightly as he could to the jagged scales as the wings opened knocking the shrieking goblins aside like skittles and it soared into the air .Harry Ron and Hermione flat on its back scraped against the ceiling as it dived toward the passage opening while the pursuing goblins hurled daggers that glanced off its flanks .Well never get out its too big !Hermione screamed but the dragon opened its mouth and belched flame again blasting the tunnel whose floors and ceiling cracked and crumbled .By sheer force the dragon clawed and fought its way through .Harrys eyes were shut tight against the heat and dust Deafened by the crashing of rock and the dragons roars he could only cling to its back expecting to be shaken off at any moment then he heard Hermione yelling Defodiol She was helping the dragon enlarge the passageway carving out the ceiling as it struggled upward toward the fresher air away from the shrieking and clanking goblins Harry and Ron copied her blasting the ceiling apart with more gouging spells .They passed the underground lake and the great crawling snarling beast seemed to sense freedom and space ahead of it and behind them the passage was full of the dragons thrashing spiked tail of great lumps of rock gigantic fractured stalactites and the clanking of the goblins seemed to be growing more muffled while ahead the dragons fire kept their progress clear And then at last by the combined force of their spells and the dragons brute strength they had blasted their way out of the passage into the marble hallway .Goblins and wizards shrieked and ran for cover and finally the dragon had room to stretch its wings Turning its horned head toward the cool outside air it could smell beyond the entrance it took off and with Harry Ron and Hermione still clinging to its back it forced its way through the metal doors leaving them buckled and hanging from their hinges as it staggered into Diagon Alley and launched itself into the sky .THE FINAL HIDING PLACE There was no means of steering the dragon could not see where it was going and Harry knew that if it turned sharply or rolled in midair they would find it impossible to cling onto its broad back .Nevertheless as they climbed higher and higher London unfurling below them like a grayandgreen map Harrys overwhelming feeling was of gratitude for an escape that had seemed impossible .Crouching low over the beasts neck he clung tight to the metallic scales and the cool breeze was soothing on his burned and blistered skin the dragons wings beating the air like the sails of a windmill .Behind him whether from delight or fear he could not tell Ron kept swearing at the top of his voice and Hermione seemed to be sobbing .After five minutes or so Harry lost some of his immediate dread that the dragon was going to throw them off for it seemed intent on nothing but getting as far away from its underground prison as possible but the question of how and when they were to dismount remained rather frightening .He had no idea how long dragons could fly without landing nor how this particular dragon which could barely see would locate a good place to put down .He glanced around constantly imagining that he could feel his scar prickling .How long would it be before Voldemort knew that they had broken into the Lestranges vault ?How soon would the goblins of Gringotts notify Bellatrix ?How quickly would they realize what had been taken ?And then when they discovered that the golden cup was missing ?Voldemort would know at last that they were hunting Horcruxes .The dragon seemed to crave cooler and fresher air It climbed steadily until they were flying through wisps of chilly cloud and Harry could no longer make out the little colored dots which were cars pouring in and out of the capital .On and on they flew over countryside parceled out in patches of green and brown over roads and rivers winding through the landscape like strips of matte and glossy ribbon .What do you reckon its looking for ?Ron yelled as they flew farther and farther north .No idea Harry bellowed back .His hands were numb with cold but he did not dare attempt to shift his grip .He had been wondering for some time what they would do if they saw the coast sail beneath them if the dragon headed for open sea he was cold and numb not to mention desperately hungry and thirsty .When he wondered had the beast itself last eaten ?Surely it would need sustenance before long ?And what if at that point it realized it had three highly edible humans sitting on its back ?The sun slipped lower in the sky which was turning indigo and still the dragon flew cities and towns gliding out of sight beneath them its enormous shadow sliding over the earth like a great dark cloud .Every part of Harry ached with the effort of holding on to the dragons back .Is it my imagination shouted Ron after a considerable stretch of silence or are we losing height ?Harry looked down and saw deep green mountains and lakes coppery in the sunset .The landscape seemed to grow larger and more detailed as he squinted over the side of the dragon and he wondered whether it had divined the presence of fresh water by the flashes of reflected sunlight .Lower and lower the dragon flew in great spiraling circles honing in it seemed upon one of the smaller lakes .I say we jump when it gets low enough !Harry called back to the others .Straight into the water before it realizes were here !They agreed Hermione a little faintly and now Harry could see the dragons wide yellow underbelly rippling in the surface of the water .NOW !He slithered over the side of the dragon and plummeted feetfirst toward the surface of the lake the drop was greater than he had estimated and he hit the water hard plunging like a stone into a freezing green reedfilled world .He kicked toward the surface and emerged panting to see enormous ripples emanating in circles from the places where Ron and Hermione had fallen .The dragon did not seem to have noticed anything It was already fifty feet away swooping low over the lake to scoop up water in its scarred snout .As Ron and Hermione emerged spluttering and gasping from the depths of the lake the dragon flew on its wings beating hard and landed at last on a distant bank .Harry Ron and Hermione struck out for the opposite shore .The lake did not seem to be deep Soon it was more a question of fighting their way through reeds and mud than swimming and at last they flopped sodden panting and exhausted onto slippery grass .Hermione collapsed coughing and shuddering .Though Harry could have happily lain down and slept he staggered to his feet drew out his wand and started casting the usual protective spells around them .When he had finished he joined the others .It was the first time that he had seen them properly since escaping from the vault .Both had angry red burns all over their faces and arms and their clothing was singed away in places .They were wincing as they dabbed essence of dittany onto their many injuries .Hermione handed Harry the bottle then pulled out three bottles of pumpkin juice she had brought from Shell Cottage and clean dry robes for all of them .They changed and then gulped down the juice .Well on the upside said Ron finally who was sitting watching the skin on his hands regrow we got the Horcrux .On the downside no sword said Harry through gritted teeth as he dripped dittany through the singed hole in his jeans onto the angry burn beneath .No sword repeated Ron .That doublecrossing little scab .Harry pulled the Horcrux from the pocket of the wet jacket he had just taken off and set it down on the grass in front of them .Glinting in the sun it drew their eyes as they swigged their bottles of juice .At least we cant wear it this time thatd look a bit weird hanging round our necks said Ron wiping his mouth on the back of his hand .Hermione looked across the lake to the far bank where the dragon was still drinking .Whatll happen to it do you think ?she asked .Will it be all right ?You sound like Hagrid said Ron .Its a dragon Hermione it can look after itself .Its us we need to worry about .What do you mean ?Well I dont know how to break this to you said Ron but I think they might have noticed we broke into Gringotts .All three of them started to laugh and once started it was difficult to stop .Harrys ribs ached he felt lightheaded with hunger but he lay back on the grass beneath the reddening sky and laughed until his throat was raw .What are we going to do though ?said Hermione finally hiccuping herself back to seriousness .Hell know wont he ?You Know Who will know we know about his Horcruxes !Maybe theyll be too scared to tell him ?said Ron hopefully .Maybe theyll cover up The sky the smell of lake water the sound of Rons voice were extinguished Pain cleaved Harrys head like a sword stroke .He was standing in a dimly lit room and a semicircle of wizards faced him and on the floor at his feet knelt a small quaking figure .What did you say to me ?His voice was high and cold but fury and fear burned inside him .The one thing he had dreaded but it could not be true he could not see how .The goblin was trembling unable to meet the red eyes high above his .Say it again !murmured Voldemort .Say it again .Mmy Lord stammered the goblin its black eyes wide with terror mmy Lord .we ttried tto ststop them .Imimpostors my Lord .broke broke into the into the Lestranges vvault .Impostors ?What impostors ?I thought Gringotts had ways of revealing impostors ?Who were they ?It was .it was .the PPotter bboy and ttwo accomplices .And they took ?he said his voice rising a terrible fear gripping him .Tell me !What did they take ?A .a ssmall golden ccup mmy Lord .The scream of rage of denial left him as if it were a strangers He was crazed frenzied it could not be true it was impossible nobody had ever known How was it possible that the boy could have discovered his secret ?The Elder Wand slashed through the air and green light erupted through the room the kneeling goblin rolled over dead the watching wizards scattered before him terrified Bellatrix and Lucius Malfoy threw others behind them in their race for the door and again and again his wand fell and those who were left were slain all of them for bringing him this news for hearing about the golden cup Alone amongst the dead he stormed up and down and they passed before him in vision his treasures his safeguards his anchors to immortality the diary was destroyed and the cup was stolen What if what if the boy knew about the others ?Could he know had he already acted had he traced more of them ?Was Dumbledore at the root of this ?Dumbledore who had always suspected him Dumbledore dead on his orders Dumbledore whose wand was his now yet who reached out from the ignominy of death through the boy the boy But surely if the boy had destroyed any of his Horcruxes he Lord Voldemort would have known would have felt it ?He the greatest wizard of them all he the most powerful he the killer of Dumbledore and of how many other worthless nameless men How could Lord Voldemort not have known if he himself most important and precious had been attacked mutilated ?True he had not felt it when the diary had been destroyed but he had thought that was because he had no body to feel being less than ghost .No surely the rest were safe .The other Horcruxes must be intact .But he must know he must be sure .He paced the room kicking aside the goblins corpse as he passed and the pictures blurred and burned in his boiling brain the lake the shack and Hogwarts A modicum of calm cooled his rage now How could the boy know that he had hidden the ring in the Gaunt shack ?No one had ever known him to be related to the Gaunts he had hidden the connection the killings had never been traced to him The ring surely was safe .And how could the boy or anybody else know about the cave or penetrate its protection ?The idea of the locket being stolen was absurd .As for the school He alone knew where in Hogwarts he had stowed the Horcrux because he alone had plumbed the deepest secrets of that place .And there was still Nagini who must remain close now no longer sent to do his bidding under his protection .But to be sure to be utterly sure he must return to each of his hiding places he must redouble protection around each of his Horcruxes .A job like the quest for the Elder Wand that he must undertake alone .Which should he visit first which was in most danger ?An old unease flickered inside him .Dumbledore had known his middle name .Dumbledore might have made the connection with the Gaunts .Their abandoned home was perhaps the least secure of his hiding places it was there that he would go first .The lake surely impossible .though was there a slight possibility that Dumbledore might have known some of his past misdeeds through the orphanage .And Hogwarts .but he knew that his Horcrux there was safe it would be impossible for Potter to enter Hogsmeade without detection let alone the school .Nevertheless it would be prudent to alert Snape to the fact that the boy might try to reenter the castle .To tell Snape why the boy might return would be foolish of course it had been a grave mistake to trust Bellatrix and Malfoy Didnt their stupidity and carelessness prove how unwise it was ever to trust ?He would visit the Gaunt shack first then and take Nagini with him He would not be parted from the snake anymore .and he strode from the room through the hall and out into the dark garden where the fountain played he called the snake in Parseltongue and it slithered out to join him like a long shadow .Harrys eyes flew open as he wrenched himself back to the present He was lying on the bank of the lake in the setting sun and Ron and Hermione were looking down at him .Judging by their worried looks and by the continued pounding of his scar his sudden excursion into Voldemorts mind had not passed unnoticed .He struggled up shivering vaguely surprised that he was still wet to his skin and saw the cup lying innocently in the grass before him and the lake deep blue shot with gold in the failing sun .He knows .His own voice sounded strange and low after Voldemorts high screams .He knows and hes going to check where the others are and the last one he was already on his feet is at Hogwarts .I knew it .I knew it .What ?Ron was gaping at him Hermione sat up looking worried .But what did you see ?How do you know ?I saw him find out about the cup I I was in his head hes Harry remembered the killings hes seriously angry and scared too he cant understand how we knew and now hes going to check the others are safe the ring first .He thinks the Hogwarts one is safest because Snapes there because itll be so hard not to be seen getting in I think hell check that one last but he could still be there within hours Did you see where in Hogwarts it is ?asked Ron now scrambling to his feet too .No he was concentrating on warning Snape he didnt think about exactly where it is Wait wait cried Hermione as Ron caught up the Horcrux and Harry pulled out the Invisibility Cloak again .We cant just go we havent got a plan we need to We need to get going said Harry firmly .He had been hoping to sleep looking forward to getting into the new tent but that was impossible now .Can you imagine what hes going to do once he realizes the ring and the locket are gone ?What if he moves the Hogwarts Horcrux decides it isnt safe enough ?But how are we going to get in ?Well go to Hogsmeade said Harry and try to work something out once we see what the protection around the schools like .Get under the Cloak Hermione I want to stick together this time .But we dont really fit Itll be dark no ones going to notice our feet .The flapping of enormous wings echoed across the black water The dragon had drunk its fill and risen into the air .They paused in their preparations to watch it climb higher and higher now black against the rapidly darkening sky until it vanished over a nearby mountain .Then Hermione walked forward and took her place between the other two .Harry pulled the Cloak down as far as it would go and together they turned on the spot into the crushing darkness .THE MISSING MIRROR Harrys feet touched road .He saw the achingly familiar Hogsmeade High Street dark shop fronts and the outline of black mountains beyond the village and the curve in the road ahead that led off toward Hogwarts and light spilling from the windows of the Three Broomsticks and with a lurch of the heart he remembered with piercing accuracy how he had landed here nearly a year before supporting a desperately weak Dumbledore all this in a second upon landing and then even as he relaxed his grip upon Rons and Hermiones arms it happened .The air was rent by a scream that sounded like Voldemorts when he had realized the cup had been stolen It tore at every nerve in Harrys body and he knew immediately that their appearance had caused it .Even as he looked at the other two beneath the Cloak the door of the Three Broomsticks burst open and a dozen cloaked and hooded Death Eaters dashed into the street their wands aloft .Harry seized Rons wrist as he raised his wand there were too many of them to Stun Even attempting it would give away their position .One of the Death Eaters waved his wand and the scream stopped still echoing around the distant mountains .Accio Cloak .roared one of the Death Eaters .Harry seized its folds but it made no attempt to escape The Summoning Charm had not worked on it .Not under your wrapper then Potter ?yelled the Death Eater who had tried the charm and then to his fellows Spread out .Hes here .Six of the Death Eaters ran toward them Harry Ron and Hermione backed as quickly as possible down the nearest side street and the Death Eaters missed them by inches .They waited in the darkness listening to the footsteps running up and down beams of light flying along the street from the Death Eaters searching wands .Lets just leave !Hermione whispered .Disapparate now !Great idea said Ron but before Harry could reply a Death Eater shouted We know youre here Potter and theres no getting away !Well find you !They were ready for us whispered Harry .They set up that spell to tell them wed come .I reckon theyve done something to keep us here trap us What about dementors ?called another Death Eater .Let em have free rein theyd find him quick enough !The Dark Lord wants Potter dead by no hand but his an dementors wont kill him !The Dark Lord wants Potters life not his soul .Hell be easier to kill if hes been Kissed first !There were noises of agreement .Dread filled Harry To repel dementors they would have to produce Patronuses which would give them away immediately .Were going to have to try to Disapparate Harry !Hermione whispered .Even as she said it he felt the unnatural cold begin to steal over the street .Light was sucked from the environment right up to the stars which vanished .In the pitchblackness he felt Hermione take hold of his arm and together they turned on the spot .The air through which they needed to move seemed to have become solid They could not Disapparate the Death Eaters had cast their charms well .The cold was biting deeper and deeper into Harrys flesh .He Ron and Hermione retreated down the side street groping their way along the wall trying not to make a sound .Then around the corner gliding noiselessly came dementors ten or more of them visible because they were of a denser darkness than their surroundings with their black cloaks and their scabbed and rotting hands .Could they sense fear in the vicinity ?Harry was sure of it They seemed to be coming more quickly now taking those dragging rattling breaths he detested tasting despair on the air closing in He raised his wand He could not would not suffer the Dementors Kiss whatever happened afterward .It was of Ron and Hermione that he thought as he whispered Expecto Patronum .The silver stag burst from his wand and charged The dementors scattered and there was a triumphant yell from somewhere out of sight .Its him down there down there I saw his Patronus it was a stag !The dementors had retreated the stars were popping out again and the footsteps of the Death Eaters were becoming louder but before Harry in his panic could decide what to do there was a grinding of bolts nearby a door opened on the lefthand side of the narrow street and a rough voice said Potter in here quick !He obeyed without hesitation The three of them hurtled through the open doorway .Upstairs keep the Cloak on keep quiet !muttered a tall figure passing them on his way into the street and slamming the door behind him .Harry had had no idea where they were but now he saw by the stuttering light of a single candle the grubby sawdust strewn bar of the Hogs Head Inn .They ran behind the counter and through a second doorway which led to a rickety wooden staircase that they climbed as fast as they could .The stairs opened onto a sitting room with a threadbare carpet and a small fireplace above which hung a single large oil painting of a blonde girl who gazed out at the room with a kind of vacant sweetness .Shouts reached them from the street below .Still wearing the Invisibility Cloak they crept toward the grimy window and looked down .Their savior whom Harry now recognized as the Hogs Heads barman was the only person not wearing a hood .So what ?he was bellowing into one of the hooded faces .So what ?You send dementors down my street Ill send a Patronus back at em !Im not having em near me Ive told you that Im not having it !That wasnt your Patronus !said a Death Eater .That was a stag it was Potters !Stag !roared the barman and he pulled out a wand .Stag !You idiot Expecto Patronum .Something huge and horned erupted from the wand Head down it charged toward the High Street and out of sight .Thats not what I saw said the Death Eater though with less certainty .Curfews been broken you heard the noise one of his companions told the barman .Someone was out in the street against regulations If I want to put my cat out I will and be damned to your curfew !You set off the Caterwauling Charm ?What if I did ?Going to cart me off to Azkaban ?Kill me for sticking my nose out my own front door ?Do it then if you want to !But I hope for your sakes you havent pressed your little Dark Marks and summoned him .Hes not going to like being called here for me and my old cat is he now ?Dont you worry about us said one of the Death Eaters worry about yourself breaking curfew !And where will you lot traffick potions and poisons when my pubs closed down ?Whatll happen to your little sidelines then ?Are you threatening ?I keep my mouth shut its why you come here isnt it ?I still say I saw a stag Patronus !shouted the first Death Eater .Stag ?roared the barman .Its a goat idiot !All right we made a mistake said the second Death Eater .Break curfew again and we wont be so lenient !The Death Eaters strode back toward the High Street .Hermione moaned with relief wove out from under the Cloak and sat down on a wobblelegged chair .Harry drew the curtains tight shut then pulled the Cloak off himself and Ron .They could hear the barman down below rebolting the door of the bar then climbing the stairs .Harrys attention was caught by something on the mantelpiece a small rectangular mirror propped on top of it right beneath the portrait of the girl .The barman entered the room .You bloody fools he said gruffly looking from one to the other of them .What were you thinking coming here ?Thank you said Harry .We cant thank you enough .You saved our lives .The barman grunted .Harry approached him looking up into the face trying to see past the long stringy wiregray hair and beard .He wore spectacles .Behind the dirty lenses the eyes were a piercing brilliant blue .Its your eye Ive been seeing in the mirror .There was silence in the room .Harry and the barman looked at each other .You sent Dobby .The barman nodded and looked around for the elf .Thought hed be with you .Where Ve you left him ?Hes dead said Harry .Bellatrix Lestrange killed him .The barmans face was impassive .After a few moments he said Im sorry to hear it .I liked that elf .He turned away lighting lamps with prods of his wand not looking at any of them .Youre Aberforth said Harry to the mans back .He neither confirmed nor denied it but bent to light the fire .How did you get this ?Harry asked walking across to Siriuss mirror the twin of the one he had broken nearly two years before .Bought it from Dung bout a year ago said Aberforth .Albus told me what it was .Been trying to keep an eye out for you .Ron gasped .The silver doe !he said excitedly .Was that you too ?What are you talking about ?said Aberforth .Someone sent a doe Patronus to us !Brains like that you could be a Death Eater son .Havent I just proved my Patronus is a goat ?Oh said Ron .Yeah .well Im hungry !he added defensively as his stomach gave an enormous rumble .I got food said Aberforth and he sloped out of the room reappearing moments later with a large loaf of bread some cheese and a pewter jug of mead which he set upon a small table in front of the fire .Ravenous they ate and drank and for a while there was silence but for the crackle of the fire the clink of goblets and the sound of chewing .Right then said Aberforth when they had eaten their fill and Harry and Ron sat slumped dozily in their chairs .We need to think of the best way to get you out of here .Cant be done by night you heard what happens if anyone moves outdoors during darkness Caterwauling Charms set off theyll be onto you like bowtruckles on doxy eggs .I dont reckon Ill be able to pass off a stag as a goat a second time .Wait for daybreak when curfew lifts then you can put your Cloak back on and set out on foot .Get right out of Hogsmeade up into the mountains and youll be able to Disapparate there .Might see Hagrid .Hes been hiding in a cave up there with Grawp ever since they tried to arrest him .Were not leaving said Harry .We need to get into Hogwarts .Dont be stupid boy said Aberforth .Weve got to said Harry .What youve got to do said Aberforth leaning forward is to get as far from here as you can .You dont understand .There isnt much time .Weve got to get into the castle .Dumbledore I mean your brother wanted us The firelight made the grimy lenses of Aberforth s glasses momentarily opaque a bright flat white and Harry remembered the blind eyes of the giant spider Aragog .My brother Albus wanted a lot of things said Aberforth and people had a habit of getting hurt while he was carrying out his grand plans .You get away from this school Potter and out of the country if you can .Forget my brother and his clever schemes .Hes gone where none of this can hurt him and you dont owe him anything .You dont understand said Harry again .Oh dont I ?said Aberforth quietly .You dont think I understood my own brother ?Think you knew Albus better than I did ?I didnt mean that said Harry whose brain felt sluggish with exhaustion and from the surfeit of food and wine .Its .he left me a job .Did he now ?said Aberforth .Nice job I hope ?Pleasant ?Easy ?Sort of thing youd expect an unqualified wizard kid to be able to do without overstretching themselves ?Ron gave a rather grim laugh .Hermione was looking strained .Iits not easy no said Harry .But Ive got to ‘Got to ?Why ‘got to ?Hes dead isnt he ?said Aberforth roughly .Let it go boy before you follow him !Save yourself !I cant .Why not ?I Harry felt overwhelmed he could not explain so he took the offensive instead .But youre fighting too youre in the Order of the Phoenix I was said Aberforth .The Order of the Phoenix is finished .YouKnowWhos won its over and anyone whos pretending differents kidding themselves .Itll never be safe for you here Potter he wants you too badly .So go abroad go into hiding save yourself .Best take these two with you .He jerked a thumb at Ron and Hermione .Theyll be in danger long as they live now everyone knows theyve been working with you .I cant leave said Harry .Ive got a job Give it to someone else !I cant .Its got to be me Dumbledore explained it all Oh did he now ?And did he tell you everything was he honest with you ?Harry wanted with all his heart to say Yes but somehow the simple word would not rise to his lips .Aberforth seemed to know what he was thinking .I knew my brother Potter .He learned secrecy at our mothers knee .Secrets and lies thats how we grew up and Albus .he was a natural .The old mans eyes traveled to the painting of the girl over the mantelpiece .It was now Harry looked around properly the only picture in the room .There was no photograph of Albus Dumbledore nor of anyone else .Mr Dumbledore ?said Hermione rather timidly .Is that your sister ?Ariana ?Yes said Aberforth tersely .Been reading Rita Skeeter have you missy ?Even by the rosy light of the fire it was clear that Hermione had turned red .Elphias Doge mentioned her to us said Harry trying to spare Hermione .That old berk muttered Aberforth taking another swig of mead .Thought the sun shone out of my brothers every orifice he did .Well so did plenty of people you three included by the looks of it .Harry kept quiet .He did not want to express the doubts and uncertainties about Dumbledore that had riddled him for months now .He had made his choice while he dug Dobbys grave he had decided to continue along the winding dangerous path indicated for him by Albus Dumbledore to accept that he had not been told everything that he wanted to know but simply to trust .He had no desire to doubt again he did not want to hear anything that would deflect him from his purpose .He met Aberforth s gaze which was so strikingly like his brothers The bright blue eyes gave the same impression that they were Xraying the object of their scrutiny and Harry thought that Aberforth knew what he was thinking and despised him for it .Professor Dumbledore cared about Harry very much said Hermione in a low voice .Did he now ?said Aberforth .Funny thing how many of the people my brother cared about very much ended up in a worse state than if hed left em well alone .What do you mean ?asked Hermione breathlessly .Never you mind said Aberforth .But thats a really serious thing to say !said Hermione .Are you are you talking about your sister ?Aberforth glared at her His lips moved as if he were chewing the words he was holding back .Then he burst into speech .When my sister was six years old she was attacked set upon by three Muggle boys .Theyd seen her doing magic spying through the back garden hedge She was a kid she couldnt control it no witch or wizard can at that age .What they saw scared them I expect .They forced their way through the hedge and when she couldnt show them the trick they got a bit carried away trying to stop the little freak doing it .Hermione s eyes were huge in the firelight Ron looked slightly sick .Aberforth stood up tall as Albus and suddenly terrible in his anger and the intensity of his pain .It destroyed her what they did She was never right again .She wouldnt use magic but she couldnt get rid of it it turned inward and drove her mad it exploded out of her when she couldnt control it and at times she was strange and dangerous .But mostly she was sweet and scared and harmless .And my father went after the bastards that did it said Aberforth and attacked them .And they locked him up in Azkaban for it .He never said why hed done it because if the Ministry had known what Ariana had become shed have been locked up in St .Mungos for good .Theyd have seen her as a serious threat to the International Statute of Secrecy unbalanced like she was with magic exploding out of her at moments when she couldnt keep it in any longer .We had to keep her safe and quiet .We moved house put it about she was ill and my mother looked after her and tried to keep her calm and happy .I was her favorite he said and as he said it a grubby schoolboy seemed to look out through Aberforths wrinkles and tangled beard .Not Albus he was always up in his bedroom when he was home reading his books and counting his prizes keeping up with his correspondence with ‘the most notable magical names of the day Aberforth sneered .He didnt want to be bothered with her .She liked me best .I could get her to eat when she wouldnt do it for my mother I could get her to calm down when she was in one of her rages and when she was quiet she used to help me feed the goats .Then when she was fourteen .See I wasnt there said Aberforth .If Id been there I could have calmed her down .She had one of her rages and my mother wasnt as young as she was and .it was an accident .Ariana couldnt control it .But my mother was killed .Harry felt a horrible mixture of pity and repulsion he did not want to hear any more but Aberforth kept talking and Harry wondered how long it had been since he had spoken about this whether in fact he had ever spoken about it .So that put paid to Albuss trip round the world with little Doge .The pair of em came home for my mothers funeral and then Doge went off on his own and Albus settled down as head of the family .Ha !Aberforth spat into the fire .Id have looked after her I told him so I didnt care about school Id have stayed home and done it .He told me I had to finish my education and hed take over from my mother .Bit of a comedown for Mr Brilliant theres no prizes for looking after your half mad sister stopping her blowing up the house every other day .But he did all right for a few weeks .till he came .And now a positively dangerous look crept over Aberforths face .Grindelwald .And at last my brother had an equal to talk to someone just as bright and talented as he was .And looking after Ariana took a backseat then while they were hatching all their plans for a new Wizarding order and looking for Hallows and whatever else it was they were so interested in .Grand plans for the benefit of all Wizardkind and if one young girl got neglected what did that matter when Albus was working for the greater good ?But after a few weeks of it Id had enough I had .It was nearly time for me to go back to Hogwarts so I told em both of em facetoface like I am to you now and Aberforth looked down at Harry and it took little imagination to see him as a teenager wiry and angry confronting his elder brother .I told him youd better give it up now .You cant move her shes in no fit state you cant take her with you wherever it is youre planning to go when youre making your clever speeches trying to whip yourselves up a following .He didnt like that said Aberforth and his eyes were briefly occluded by the firelight on the lenses of his glasses They shone white and blind again .Grindelwald didnt like that at all .He got angry .He told me what a stupid little boy I was trying to stand in the way of him and my brilliant brother .Didnt I understand my poor sister wouldnt have to be hidden once theyd changed the world and led the wizards out of hiding and taught the Muggles their place ?And there was an argument .and I pulled out my wand and he pulled out his and I had the Cruciatus Curse used on me by my brothers best friend and Albus was trying to stop him and then all three of us were dueling and the flashing lights and the bangs set her off she couldnt stand it The color was draining from Aberforth s face as though he had suffered a mortal wound .and I think she wanted to help but she didnt really know what she was doing and I dont know which of us did it it could have been any of us and she was dead .His voice broke on the last word and he dropped down into the nearest chair .Hermiones face was wet with tears and Ron was almost as pale as Aberforth .Harry felt nothing but revulsion He wished he had not heard it wished he could wash his mind clean of it .Im so .Im so sorry Hermione whispered .Gone croaked Aberforth .Gone forever .He wiped his nose on his cuff and cleared his throat .Course Grindelwald scarpered .He had a bit of a track record already back in his own country and he didnt want Ariana set to his account too .And Albus was free wasnt he ?Free of the burden of his sister free to become the greatest wizard of the He was never free said Harry .I beg your pardon ?said Aberforth .Never said Harry .The night that your brother died he drank a potion that drove him out of his mind .He started screaming pleading with someone who wasnt there . ‘Dont hurt them please .hurt me instead .Ron and Hermione were staring at Harry .He had never gone into details about what had happened on the island on the lake The events that had taken place after he and Dumbledore had returned to Hogwarts had eclipsed it so thoroughly .He thought he was back there with you and Grindelwald I know he did said Harry remembering Dumbledore whimpering pleading .He thought he was watching Grindelwald hurting you and Ariana .It was torture to him if youd seen him then you wouldnt say he was free .Aberforth seemed lost in contemplation of his own knotted and veined hands .After a long pause he said How can you be sure Potter that my brother wasnt more interested in the greater good than in you ?How can you be sure you arent dispensable just like my little sister ?A shard of ice seemed to pierce Harrys heart .I dont believe it .Dumbledore loved Harry said Hermione .Why didnt he tell him to hide then ?shot back Aberforth .Why didnt he say to him Take care of yourself heres how to survive ?Because said Harry before Hermione could answer sometimes youve got to think about more than your own safety !Sometimes youve got to think about the greater good !This is war !Youre seventeen boy !Im of age and Im going to keep fighting even if youve given up !Who says Ive given up ?The Order of the Phoenix is finished Harry repeated .Tou Know Whos won its over and anyone whos pretending differents kidding themselves .I dont say I like it but its the truth !No it isnt said Harry .Your brother knew how to finish YouKnowWho and he passed the knowledge on to me .Im going to keep going until I succeed or I die .Dont think I dont know how this might end .Ive known it for years .He waited for Aberforth to jeer or to argue but he did not .He merely scowled .We need to get into Hogwarts said Harry again .If you cant help us well wait till daybreak leave you in peace and try to find a way in ourselves .If you can help us well now would be a great time to mention it .Aberforth remained fixed in his chair gazing at Harry with the eyes that were so extraordinarily like his brothers .At last he cleared his throat got to his feet walked around the little table and approached the portrait of Ariana .You know what to do he said .She smiled turned and walked away not as people in portraits usually did out of the sides of their frames but along what seemed to be a long tunnel painted behind her .They watched her slight figure retreating until finally she was swallowed by the darkness .Er what ?began Ron .Theres only one way in now said Aberforth .You must know theyve got all the old secret passageways covered at both ends dementors all around the boundary walls regular patrols inside the school from what my sources tell me .The place has never been so heavily guarded .How you expect to do anything once you get inside it with Snape in charge and the Carrows as his deputies .well thats your lookout isnt it ?You say youre prepared to die .But what . ?said Hermione frowning at Arianas picture .A tiny white dot had reappeared at the end of the painted tunnel and now Ariana was walking back toward them growing bigger and bigger as she came .But there was somebody else with her now someone taller than she was who was limping along looking excited .His hair was longer than Harry had ever seen it He appeared to have suffered several gashes to his face and his clothes were ripped and torn .Larger and larger the two figures grew until only their heads and shoulders filled the portrait .Then the whole thing swung forward on the wall like a little door and the entrance to a real tunnel was revealed .And out of it his hair overgrown his face cut his robes ripped clambered the real Neville Longbottom who gave a roar of delight leapt down from the mantelpiece and yelled I knew youd come !I knew it HarryY THE LOST DIADEM Neville what the how ?But Neville had spotted Ron and Hermione and with yells of delight was hugging them too .The longer Harry looked at Neville the worse he appeared One of his eyes was swollen yellow and purple there were gouge marks on his face and his general air of unkemptness suggested that he had been living rough .Nevertheless his battered visage shone with happiness as he let go of Hermione and said again I knew youd come !Kept telling Seamus it was a matter of time !Neville whats happened to you ?What ?This ?Neville dismissed his injuries with a shake of the head .This is nothing .Seamus is worse .Youll see .Shall we get going then ?Oh he turned to Aberforth Ab there might be a couple more people on the way .Couple more ?repeated Aberforth ominously .What dyou mean a couple more Longbottom ?Theres a curfew and a Caterwauling Charm on the whole village !I know thats why theyll be Apparating directly into the bar said Neville .Just send them down the passage when they get here will you ?Thanks a lot .Neville held out his hand to Hermione and helped her to climb up onto the mantelpiece and into the tunnel Ron followed then Neville .Harry addressed Aberforth .I dont know how to thank you .Youve saved our lives twice .Look after em then said Aberforth gruffly .I might not be able to save em a third time .Harry clambered up onto the mantelpiece and through the hole behind Arianas portrait .There were smooth stone steps on the other side It looked as though the passageway had been there for years .Brass lamps hung from the walls and the earthy floor was worn and smooth as they walked their shadows rippled fanlike across the wall .How longs this been here ?Ron asked as they set off .It isnt on the Marauders Map is it Harry ?I thought there were only seven passages in and out of school ?They sealed off all of those before the start of the year said Neville .Theres no chance of getting through any of them now not with curses over the entrances and Death Eaters and dementors waiting at the exits .He started walking backward beaming drinking them in .Never mind that stuff .Is it true ?Did you break into Gringotts ?Did you escape on a dragon ?Its everywhere everyones talking about it Terry Boot got beaten up by Carrow for yelling about it in the Great Hall at dinner !Yeah its true said Harry .Neville laughed gleefully .What did you do with the dragon ?Released it into the wild said Ron .Hermione was all for keeping it as a pet Dont exaggerate Ron But what have you been doing ?People have been saying youve just been on the run Harry but I dont think so .I think youve been up to something .Youre right said Harry but tell us about Hogwarts Neville we havent heard anything .Its been .well its not really like Hogwarts anymore said Neville the smile fading from his face as he spoke .Do you know about the Carrows ?Those two Death Eaters who teach here ?They do more than teach said Neville .Theyre in charge of all discipline .They like punishment the Carrows .Like Umbridge ?Nah they make her look tame .The other teachers are all supposed to refer us to the Carrows if we do anything wrong .They dont though if they can avoid it .You can tell they all hate them as much as we do .Amycus the bloke he teaches what used to be Defense Against the Dark Arts except now its just the Dark Arts .Were supposed to practice the Cruciatus Curse on people whove earned detentions What ?Harry Ron and Hermiones united voices echoed up and down the passage .Yeah said Neville .Thats how I got this one he pointed at a particularly deep gash in his cheek I refused to do it .Some people are into it though Crabbe and Goyle love it .First time theyve ever been top in anything I expect .Alecto Amycuss sister teaches Muggle Studies which is compulsory for everyone .Weve all got to listen to her explain how Muggles are like animals stupid and dirty and how they drove wizards into hiding by being vicious toward them and how the natural order is being reestablished .I got this one he indicated another slash to his face for asking her how much Muggle blood she and her brother have got .Blimey Neville said Ron theres a time and a place for getting a smart mouth .You didnt hear her said Neville .You wouldnt have stood it either .The thing is it helps when people stand up to them it gives everyone hope .I used to notice that when you did it Harry .But theyve used you as a knife sharpener said Ron wincing slightly as they passed a lamp and Nevilles injuries were thrown into even greater relief .Neville shrugged .Doesnt matter .They dont want to spill too much pure blood so theyll torture us a bit if were mouthy but they wont actually kill us .Harry did not know what was worse the things that Neville was saying or the matteroffact tone in which he said them .The only people in real danger are the ones whose friends and relatives on the outside are giving trouble .They get taken hostage .Old Xeno Lovegood was getting a bit too outspoken in The Quihhler so they dragged Luna off the train on the way back for Christmas .Neville shes all right weve seen her Yeah I know she managed to get a message to me .From his pocket he pulled a golden coin and Harry recognized it as one of the fake Galleons that Dumbledores Army had used to send one another messages .These have been great said Neville beaming at Hermione .The Carrows never rumbled how we were communicating it drove them mad .We used to sneak out at night and put graffiti on the walls Dumbledores Army Still Recruiting stuff like that .Snape hated it .You used to ?said Harry who had noticed the past tense .Well it got more difficult as time went on said Neville .We lost Luna at Christmas and Ginny never came back after Easter and the three of us were sort of the leaders .The Carrows seemed to know I was behind a lot of it so they started coming down on me hard and then Michael Corner went and got caught releasing a firstyear theyd chained up and they tortured him pretty badly .That scared people off .No kidding muttered Ron as the passage began to slope upward .Yeah well I couldnt ask people to go through what Michael did so we dropped those kinds of stunts .But we were still fighting doing underground stuff right up until a couple of weeks ago .Thats when they decided there was only one way to stop me I suppose and they went for Gran .They what ?said Harry Ron and Hermione together .Yeah said Neville panting a little now because the passage was climbing so steeply well you can see their thinking .It had worked really well kidnapping kids to force their relatives to behave I spose it was only a matter of time before they did it the other way around .Thing was he faced them and Harry was astonished to see that he was grinning they bit off a bit more than they could chew with Gran .Little old witch living alone they probably thought they didnt need to send anyone particularly powerful .Anyway Neville laughed Dawlish is still in St .Mungos and Grans on the run .She sent me a letter he clapped a hand to the breast pocket of his robes telling me she was proud of me that Im my parents son and to keep it up .Cool said Ron .Yeah said Neville happily .Only thing was once they realized they had no hold over me they decided Hogwarts could do without me after all .I dont know whether they were planning to kill me or send me to Azkaban either way I knew it was time to disappear .But said Ron looking thoroughly confused arent arent we heading straight back into Hogwarts ?Course said Neville .Youll see .Were here .They turned a corner and there ahead of them was the end of the passage .Another short flight of steps led to a door just like the one hidden behind Arianas portrait .Neville pushed it open and climbed through .As Harry followed he heard Neville call out to unseen people Look who it is !Didnt I tell you ?As Harry emerged into the room beyond the passage there were several screams and yells HARRY !Its Potter its POTTER !Ron !Hermionel He had a confused impression of colored hangings of lamps and many faces .The next moment he Ron and Hermione were engulfed hugged pounded on the back their hair ruffled their hands shaken by what seemed to be more than twenty people They might just have won a Quidditch final .Okay okay calm down !Neville called and as the crowd backed away Harry was able to take in their surroundings .He did not recognize the room at all .It was enormous and looked rather like the interior of a particularly sumptuous tree house or perhaps a gigantic ships cabin .Multicolored hammocks were strung from the ceiling and from a balcony that ran around the dark woodpaneled and windowless walls which were covered in bright tapestry hangings Harry saw the gold Gryffindor lion emblazoned on scarlet the black badger of Hufflepuff set against yellow and the bronze eagle of Ravenclaw on blue .The silver and green of Slytherin alone were absent .There were bulging bookcases a few broomsticks propped against the walls and in the corner a large wooden cased wireless .Where are we ?Room of Requirement of course !said Neville .Surpassed itself hasnt it ?The Carrows were chasing me and I knew I had just one chance for a hideout I managed to get through the door and this is what I found !Well it wasnt exactly like this when I arrived it was a load smaller there was only one hammock and just Gryffindor hangings .But its expanded as more and more of the D .A .have arrived .And the Carrows cant get in ?asked Harry looking around for the door .No said Seamus Finnigan whom Harry had not recognized until he spoke Seamuss face was bruised and puffy .Its a proper hideout as long as one of us stays in here they cant get at us the door wont open .Its all down to Neville .He really gets this room .Youve got to ask it for exactly what you need like ‘I dont want any Carrow supporters to be able to get in and itll do it for you !Youve just got to make sure you close the loopholes !Nevilles the man !Its quite straightforward really said Neville modestly .Id been in here about a day and a half and getting really hungry and wishing I could get something to eat and thats when the passage to the Hogs Head opened up .I went through it and met Aberforth .Hes been providing us with food because for some reason thats the one thing the room doesnt really do .Yeah well foods one of the five exceptions to Gamps Law of Elemental Transfiguration said Ron to general astonishment .So weve been hiding out here for nearly two weeks said Seamus and it just makes more hammocks every time we need them and it even sprouted a pretty good bathroom once girls started turning up and thought theyd quite like to wash yes supplied Lavender Brown whom Harry had not noticed until that point .Now that he looked around properly he recognized many familiar faces .Both Patil twins were there as were Terry Boot Ernie Macmillan Anthony Goldstein and Michael Corner .Tell us what youve been up to though said Ernie .Thereve been so many rumors weve been trying to keep up with you on Potterwatch .He pointed at the wireless .You didnt break into Gringotts ?They did !said Neville .And the dragons true too !There was a smattering of applause and a few whoops Ron took a bow .What were you after ?asked Seamus eagerly .Before any of them could parry the question with one of their own Harry felt a terrible scorching pain in the lightning scar .As he turned his back hastily on the curious and delighted faces the Room of Requirement vanished and he was standing inside a ruined stone shack and the rotting floorboards were ripped apart at his feet a disinterred golden box lay open and empty beside the hole and Voldemorts scream of fury vibrated inside his head .With an enormous effort he pulled out of Voldemorts mind again back to where he stood swaying in the Room of Requirement sweat pouring from his face and Ron holding him up .Are you all right Harry ?Neville was saying .Want to sit down ?I expect youre tired arent ?No said Harry .He looked at Ron and Hermione trying to tell them without words that Voldemort had just discovered the loss of one of the other Horcruxes .Time was running out fast If Voldemort chose to visit Hogwarts next they would miss their chance .We need to get going he said and their expressions told him that they understood .What are we going to do then Harry ?asked Seamus .Whats the plan ?Plan ?repeated Harry .He was exercising all his willpower to prevent himself succumbing again to Voldemorts rage His scar was still burning .Well theres something we Ron Hermione and I need to do and then well get out of here .Nobody was laughing or whooping anymore .Neville looked confused .What dyou mean ‘get out of here ?We havent come back to stay said Harry rubbing his scar trying to soothe the pain .Theres something important we need to do What is it ?I I cant tell you .There was a ripple of muttering at this Nevilles brows contracted .Why cant you tell us ?Its something to do with fighting YouKnowWho right ?Well yeah Then well help you .The other members of Dumbledores Army were nodding some enthusiastically others solemnly .A couple of them rose from their chairs to demonstrate their willingness for immediate action .You dont understand .Harry seemed to have said that a lot in the last few hours .We we cant tell you .Weve got to do it alone .Why ?asked Neville .Because .In his desperation to start looking for the missing Horcrux or at least to have a private discussion with Ron and Hermione about where they might commence their search Harry found it difficult to gather his thoughts .His scar was still searing .Dumbledore left the three of us a job he said carefully and we werent supposed to tell I mean he wanted us to do it just the three of us .Were his army said Neville .Dumbledores Army .We were all in it together weve been keeping it going while you three have been off on your own It hasnt exactly been a picnic mate said Ron .I never said it had but I dont see why you cant trust us .Everyone in this rooms been fighting and theyve been driven in here because the Carrows were hunting them down .Everyone in heres proven theyre loyal to Dumbledore loyal to you .Look Harry began without knowing what he was going to say but it did not matter The tunnel door had just opened behind him .We got your message Neville !Hello you three I thought you must be here !It was Luna and Dean .Seamus gave a great roar of delight and ran to hug his best friend .Hi everyone !said Luna happily .Oh its great to be back !Luna said Harry distractedly what are you doing here ?How did you ?I sent for her said Neville holding up the fake Galleon .I promised her and Ginny that if you turned up Id let them know .We all thought that if you came back it would mean revolution .That we were going to overthrow Snape and the Carrows .Of course thats what it means said Luna brightly .Isnt it Harry ?Were going to fight them out of Hogwarts ?Listen said Harry with a rising sense of panic Im sorry but thats not what we came back for .Theres something weve got to do and then Youre going to leave us in this mess ?demanded Michael Corner .No !said Ron .What were doing will benefit everyone in the end its all about trying to get rid of YouKnowWho Then let us help !said Neville angrily .We want to be a part of it !There was another noise behind them and Harry turned .His heart seemed to fail Ginny was now climbing through the hole in the wall closely followed by Fred George and Lee Jordan .Ginny gave Harry a radiant smile He had forgotten or had never fully appreciated how beautiful she was but he had never been less pleased to see her .Aberforths getting a bit annoyed said Fred raising his hand in answer to several cries of greeting .He wants a kip and his bars turned into a railway station .Harrys mouth fell open .Right behind Lee Jordan came Harrys old girlfriend Cho Chang .She smiled at him .I got the message she said holding up her own fake Galleon and she walked over to sit beside Michael Corner .So whats the plan Harry ?said George .There isnt one said Harry still disoriented by the sudden appearance of all these people unable to take everything in while his scar was still burning so fiercely .Just going to make it up as we go along are we ?My favorite kind said Fred .Youve got to stop this !Harry told Neville .What did you call them all back for ?This is insane Were fighting arent we ?said Dean taking out his fake Galleon .The message said Harry was back and we were going to fight !Ill have to get a wand though You havent got a wand ?began Seamus .Ron turned suddenly to Harry .Why cant they help ?What ?They can help .He dropped his voice and said so that none of them could hear but Hermione who stood between them We dont know where it is .Weve got to find it fast .We dont have to tell them its a Horcrux .Harry looked from Ron to Hermione who murmured I think Rons right .We dont even know what were looking for we need them .And when Harry looked unconvinced You dont have to do everything alone Harry .Harry thought fast his scar still prickling his head threatening to split again .Dumbledore had warned him against telling anyone but Ron and Hermione about the Horcruxes .Secrets and lies thats how we grew up and Albus .he was a natural .Was he turning into Dumbledore keeping his secrets clutched to his chest afraid to trust ?But Dumbledore had trusted Snape and where had that led ?To murder at the top of the highest tower .All right he said quietly to the other two .Okay he called to the room at large and all noise ceased Fred and George who had been cracking jokes for the benefit of those nearest fell silent and all of them looked alert excited .Theres something we need to find Harry said .Something something thatll help us overthrow YouKnowWho .Its here at Hogwarts but we dont know where .It might have belonged to Ravenclaw .Has anyone heard of an object like that ?Has anyone ever come across something with her eagle on it for instance ?He looked hopefully toward the little group of Ravenclaws to Padma Michael Terry and Cho but it was Luna who answered perched on the arm of Ginnys chair .Well theres her lost diadem .I told you about it remember Harry ?The lost diadem of Ravenclaw ?Daddys trying to duplicate it .Yeah but the lost diadem said Michael Corner rolling his eyes is lost Luna .Thats sort of the point .When was it lost ?asked Harry .Centuries ago they say said Cho and Harrys heart sank .Professor Flitwick says the diadem vanished with Ravenclaw herself .People have looked but she appealed to her fellow Ravenclaws nobodys ever found a trace of it have they ?They all shook their heads .Sorry but what is a diadem ?asked Ron .Its a kind of crown said Terry Boot .Ravenclaws was supposed to have magical properties enhance the wisdom of the wearer .Yes Daddys Wrackspurt siphons But Harry cut across Luna .And none of you have ever seen anything that looks like it ?They all shook their heads again .Harry looked at Ron and Hermione and his own disappointment was mirrored back at him .An object that had been lost this long and apparently without trace did not seem like a good candidate for the Horcrux hidden in the castle .Before he could formulate a new question however Cho spoke again .If youd like to see what the diadems supposed to look like I could take you up to our common room and show you Harry ?Ravenclaws wearing it in her statue .Harrys scar scorched again For a moment the Room of Requirement swam before him and he saw instead the dark earth soaring beneath him and felt the great snake wrapped around his shoulders .Voldemort was flying again whether to the underground lake or here to the castle he did not know Either way there was hardly any time left .Hes on the move he said quietly to Ron and Hermione .He glanced at Cho and then back at them .Listen I know its not much of a lead but Im going to go and look at this statue at least find out what the diadem looks like .Wait for me here and keep you know the other one safe .Cho had got to her feet but Ginny said rather fiercely No Luna will take Harry wont you Luna ?Oooh yes Id like to said Luna happily and Cho sat down again looking disappointed .How do we get out ?Harry asked Neville .Over here .He led Harry and Luna to a corner where a small cupboard opened onto a steep staircase .It comes out somewhere different every day so theyve never been able to find it he said .Only trouble is we never know exactly where were going to end up when we go out .Be careful Harry theyre always patrolling the corridors at night .No problem said Harry .See you in a bit .He and Luna hurried up the staircase which was long lit by torches and turned corners in unexpected places .At last they reached what appeared to be solid wall .Get under here Harry told Luna pulling out the Invisibility Cloak and throwing it over both of them .He gave the wall a little push .It melted away at his touch and they slipped outside Harry glanced back and saw that it had resealed itself at once .They were standing in a dark corridor Harry pulled Luna back into the shadows fumbled in the pouch around his neck and took out the Marauders Map .Holding it close to his nose he searched and located his and Lunas dots at last .Were up on the fifth floor he whispered watching Filch moving away from them a corridor ahead .Come on this way .They crept off .Harry had prowled the castle at night many times before but never had his heart hammered this fast never had so much depended on his safe passage through the place .Through squares of moonlight upon the floor past suits of armor whose helmets creaked at the sound of their soft footsteps around corners beyond which who knew what lurked Harry and Luna walked checking the Marauders Map whenever light permitted twice pausing to allow a ghost to pass without drawing attention to themselves .He expected to encounter an obstacle at any moment his worst fear was Peeves and he strained his ears with every step to hear the first telltale signs of the poltergeists approach .This way Harry breathed Luna plucking his sleeve and pulling him toward a spiral staircase .They climbed in tight dizzying circles Harry had never been up here before .At last they reached a door .There was no handle and no keyhole nothing but a plain expanse of aged wood and a bronze knocker in the shape of an eagle .Luna reached out a pale hand which looked eerie floating in midair unconnected to arm or body .She knocked once and in the silence it sounded to Harry like a cannon blast .At once the beak of the eagle opened but instead of a birds call a soft musical voice said Which came first the phoenix or the flame ?Hmm .What do you think Harry ?said Luna looking thoughtful .What ?Isnt there just a password ?Oh no youve got to answer a question said Luna .What if you get it wrong ?Well you have to wait for somebody who gets it right said Luna .That way you learn you see ?Yeah .Trouble is we cant really afford to wait for anyone else Luna .No I see what you mean said Luna seriously .Well then I think the answer is that a circle has no beginning .Well reasoned said the voice and the door swung open .The deserted Ravenclaw common room was a wide circular room airier than any Harry had ever seen at Hogwarts .Graceful arched windows punctuated the walls which were hung with blueandbronze silks By day the Ravenclaws would have a spectacular view of the surrounding mountains .The ceiling was domed and painted with stars which were echoed in the midnightblue carpet .There were tables chairs and bookcases and in a niche opposite the door stood a tall statue of white marble .Harry recognized Rowena Ravenclaw from the bust he had seen at Lunas house .The statue stood beside a door that led he guessed to dormitories above .He strode right up to the marble woman and she seemed to look back at him with a quizzical half smile on her face beautiful yet slightly intimidating .A delicate looking circlet had been reproduced in marble on top of her head .It was not unlike the tiara Fleur had worn at her wedding .There were tiny words etched into it .Harry stepped out from under the Cloak and climbed up onto Ravenclaws plinth to read them . ‘Wit beyond measure is mans greatest treasure .Which makes you pretty skint witless said a cackling voice .Harry whirled around slipped off the plinth and landed on the floor .The slopingshouldered figure of Alecto Carrow was standing before him and even as Harry raised his wand she pressed a stubby forefinger to the skull and snake branded on her forearm .THE SACKING OF SEVERUS SNAPE The moment her finger touched the Mark Harrys scar burned savagely the starry room vanished from sight and he was standing upon an outcrop of rock beneath a cliff and the sea was washing around him and there was triumph in his heart They have the boy .A loud bang brought Harry back to where he stood Disoriented he raised his wand but the witch before him was already falling forward she hit the ground so hard that the glass in the bookcases tinkled .Ive never Stunned anyone except in our D .A .lessons said Luna sounding mildly interested .That was noisier than I thought it would be .And sure enough the ceiling had begun to tremble .Scurrying echoing footsteps were growing louder from behind the door leading to the dormitories Lunas spell had woken Ravenclaws sleeping above .Luna where are you ?I need to get under the Cloak !Lunas feet appeared out of nowhere he hurried to her side and she let the Cloak fall back over them as the door opened and a stream of Ravenclaws all in their nightclothes flooded into the common room .There were gasps and cries of surprise as they saw Alecto lying there unconscious .Slowly they shuffled in around her a savage beast that might wake at any moment and attack them .Then one brave little first year darted up to her and prodded her backside with his big toe .I think she might be dead !he shouted with delight .Oh look whispered Luna happily as the Ravenclaws crowded in around Alecto .Theyre pleased !Yeah .great .Harry closed his eyes and as his scar throbbed he chose to sink again into Voldemorts mind .He was moving along the tunnel into the first cave .He had chosen to make sure of the locket before coming .but that would not take him long .There was a rap on the common room door and every Ravenclaw froze .From the other side Harry heard the soft musical voice that issued from the eagle door knocker Where do Vanished objects go ?I dunno do I ?Shut it !snarled an uncouth voice that Harry knew was that of the Carrow brother Amycus .Alecto ?Alecto ?Are you there ?Have you got him ?Open the door !The Ravenclaws were whispering amongst themselves terrified .Then without warning there came a series of loud bangs as though somebody was firing a gun into the door .ALECTO If he comes and we havent got Potter dyou want to go the same way as the Malfoys ?ANSWER ME !Amyous bellowed shaking the door for all he was worth but still it did not open .The Ravenclaws were all backing away and some of the most frightened began scampering back up the staircase to their beds .Then just as Harry was wondering whether he ought not to blast open the door and Stun Amycus before the Death Eater could do anything else a second most familiar voice rang out beyond the door .May I ask what you are doing Professor Carrow ?Trying to get through this damned door !shouted Amycus .Go and get Flitwick !Get him to open it now !But isnt your sister in there ?asked Professor McGonagall .Didnt Professor Flitwick let her in earlier this evening at your urgent request ?Perhaps she could open the door for you ?Then you neednt wake up half the castle .She aint answering you old besom !You open it !Garn !Do it now !Certainly if you wish it said Professor McGonagall with awful coldness .There was a genteel tap of the knocker and the musical voice asked again Where do Vanished objects go ?Into nonbeing which is to say everything replied Professor McGonagall .Nicely phrased replied the eagle door knocker and the door swung open .The few Ravenclaws who had remained behind sprinted for the stairs as Amycus burst over the threshold brandishing his wand .Hunched like his sister he had a pallid doughy face and tiny eyes which fell at once on Alecto sprawled motionless on the floor .He let out a yell of fury and fear .Whatve they done the little whelps ?he screamed .Ill Cruciate the lot of em till they tell me who did it and whats the Dark Lord going to say ?he shrieked standing over his sister and smacking himself on the forehead with his fist .We havent got him and theyve gorn and killed her !Shes only Stunned said Professor McGonagall impatiently who had stooped down to examine Alecto .Shell be perfectly all right .No she bludgering well wont !bellowed Amycus .Not after the Dark Lord gets hold of her !Shes gorn and sent for him I felt me Mark burn and he thinks weve got Potter ! ‘Got Potter ?said Professor McGonagall sharply .What do you mean ‘got Potter ?He told us Potter might try and get inside Ravenclaw Tower and to send for him if we caught him !Why would Harry Potter try to get inside Ravenclaw Tower ?Potter belongs in my House !Beneath the disbelief and anger Harry heard a little strain of pride in her voice and affection for Minerva McGonagall gushed up inside him .We was told he might come in here !said Carrow .I dunno why do I ?Professor McGonagall stood up and her beady eyes swept the room .Twice they passed right over the place where Harry and Luna stood .We can push it off on the kids said Amycus his piglike face suddenly crafty .Yeah thats what well do .Well say Alecto was ambushed by the kids them kids up there he looked up at the starry ceiling toward the dormitories and well say they forced her to press her Mark and thats why he got a false alarm .He can punish them .Couple of kids more or less whats the difference ?Only the difference between truth and lies courage and cowardice said Professor McGonagall who had turned pale a difference in short which you and your sister seem unable to appreciate .But let me make one thing very clear .You are not going to pass off your many ineptitudes on the students of Hogwarts .I shall not permit it .Excuse me ?Amycus moved forward until he was offensively close to Professor McGonagall his face within inches of hers .She refused to back away but looked down at him as if he were something disgusting she had found stuck to a lavatory seat .Its not a case of what youll permit Minerva McGonagall .Your times over .Its us whats in charge here now and youll back me up or youll pay the price .And he spat in her face .Harry pulled the Cloak off himself raised his wand and said You shouldnt have done that .As Amycus spun around Harry shouted Crucio The Death Eater was lifted off his feet .He writhed through the air like a drowning man thrashing and howling in pain and then with a crunch and a shattering of glass he smashed into the front of a bookcase and crumpled insensible to the floor .I see what Bellatrix meant said Harry the blood thundering through his brain you need to really mean it .Potter !whispered Professor McGonagall clutching her heart .Potter youre here !What ?How ?She struggled to pull herself together .Potter that was foolish !He spat at you said Harry .Potter I that was very very gallant of you but dont you realize ?Yeah I do Harry assured her .Somehow her panic steadied him .Professor McGonagall Voldemorts on the way .Oh are we allowed to say the name now ?asked Luna with an air of interest pulling off the Invisibility Cloak .This appearance of a second outlaw seemed to overwhelm Professor McGonagall who staggered backward and fell into a nearby chair clutching at the neck of her old tartan dressing gown .I dont think it makes any difference what we call him Harry told Luna .He already knows where I am .In a distant part of Harrys brain that part connected to the angry burning scar he could see Voldemort sailing fast over the dark lake in the ghostly green boat .He had nearly reached the island where the stone basin stood .You must flee whispered Professor McGonagall .Now Potter as quickly as you can !I cant said Harry .Theres something I need to do .Professor do you know where the diadem of Ravenclaw is ?The ddiadem of Ravenclaw ?Of course not hasnt it been lost for centuries ?She sat up a little straighter .Potter it was madness utter madness for you to enter this castle I had to said Harry .Professor theres something hidden here that Im supposed to find and it could be the diadem if I could just speak to Professor Flitwick There was a sound of movement of clinking glass Amycus was coming round .Before Harry or Luna could act Professor McGonagall rose to her feet pointed her wand at the groggy Death Eater and said Imperio .Amycus got up walked over to his sister picked up her wand then shuffled obediently to Professor McGonagall and handed it over along with his own .Then he lay down on the floor beside Alecto .Professor McGonagall waved her wand again and a length of shimmering silver rope appeared out of thin air and snaked around the Carrows binding them tightly together .Potter said Professor McGonagall turning to face him again with superb indifference to the Carrows predicament if HeWhoMustNotBeNamed does indeed know that you are here As she said it a wrath that was like physical pain blazed through Harry setting his scar on fire and for a second he looked down upon a basin whose potion had turned clear and saw that no golden locket lay safe beneath the surface Potter are you all right ?said a voice and Harry came back He was clutching Lunas shoulder to steady himself .Times running out Voldemorts getting nearer .Professor Im acting on Dumbledores orders I must find what he wanted me to find !But weve got to get the students out while Im searching the castle its me Voldemort wants but he wont care about killing a few more or less not now not now he knows Im attacking Horcruxes Harry finished the sentence in his head .Youre acting on Dumbledores orders ?she repeated with a look of dawning wonder .Then she drew herself up to her fullest height .We shall secure the school against HeWhoMust NotBeNamed while you search for this this object .Is that possible ?I think so said Professor McGonagall dryly we teachers are rather good at magic you know .I am sure we will be able to hold him off for a while if we all put our best efforts into it .Of course something will have to be done about Professor Snape Let me and if Hogwarts is about to enter a state of siege with the Dark Lord at the gates it would indeed be advisable to take as many innocent people out of the way as possible .With the Floo Network under observation and Apparition impossible within the grounds Theres a way said Harry quickly and he explained about the passageway leading into the Hogs Head .Potter were talking about hundreds of students I know Professor but if Voldemort and the Death Eaters are concentrating on the school boundaries they wont be interested in anyone whos Disapparating out of the Hogs Head .Theres something in that she agreed .She pointed her wand at the Carrows and a silver net fell upon their bound bodies tied itself around them and hoisted them into the air where they dangled beneath the blueandgold ceiling like two large ugly sea creatures .Come .We must alert the other Heads of House .Youd better put that Cloak back on .She marched toward the door and as she did so she raised her wand .From the tip burst three silver cats with spectacle markings around their eyes .The Patronuses ran sleekly ahead filling the spiral staircase with silvery light as Professor McGonagall Harry and Luna hurried back down .Along the corridors they raced and one by one the Patronuses left them Professor McGonagalls tartan dressing gown rustled over the floor and Harry and Luna jogged behind her under the Cloak .They had descended two more floors when another set of quiet footsteps joined theirs .Harry whose scar was still prickling heard them first He felt in the pouch around his neck for the Marauders Map but before he could take it out McGonagall too seemed to become aware of their company .She halted raised her wand ready to duel and said Whos there ?It is I said a low voice .From behind a suit of armor stepped Severus Snape .Hatred boiled up in Harry at the sight of him He had forgotten the details of Snape s appearance in the magnitude of his crimes forgotten how his greasy black hair hung in curtains around his thin face how his black eyes had a dead cold look .He was not wearing nightclothes but was dressed in his usual black cloak and he too was holding his wand ready for a fight .Where are the Carrows ?he asked quietly .Wherever you told them to be I expect Severus said Professor McGonagall .Snape stepped nearer and his eyes flitted over Professor McGonagall into the air around her as if he knew that Harry was there .Harry held his wand up too ready to attack .I was under the impression said Snape that Alecto had apprehended an intruder .Really ?said Professor McGonagall .And what gave you that impression ?Snape made a slight flexing movement of his left arm where the Dark Mark was branded into his skin .Oh but naturally said Professor McGonagall .You Death Eaters have your own private means of communication I forgot .Snape pretended not to have heard her .His eyes were still probing the air all about her and he was moving gradually closer with an air of hardly noticing what he was doing .I did not know that it was your night to patrol the corridors Minerva .You have some objection ?I wonder what could have brought you out of your bed at this late hour ?I thought I heard a disturbance said Professor McGonagall .Really ?But all seems calm .Snape looked into her eyes .Have you seen Harry Potter Minerva ?Because if you have I must insist Professor McGonagall moved faster than Harry could have believed Her wand slashed through the air and for a split second Harry thought that Snape must crumple unconscious but the swiftness of his Shield Charm was such that McGonagall was thrown off balance .She brandished her wand at a torch on the wall and it flew out of its bracket Harry about to curse Snape was forced to pull Luna out of the way of the descending flames which became a ring of fire that filled the corridor and flew like a lasso at Snape Then it was no longer fire but a great black serpent that McGonagall blasted to smoke which reformed and solidified in seconds to become a swarm of pursuing daggers Snape avoided them only by forcing the suit of armor in front of him and with echoing clangs the daggers sank one after another into its breast Minerva !said a squeaky voice and looking behind him still shielding Luna from flying spells Harry saw Professors Flitwick and Sprout sprinting up the corridor toward them in their nightclothes with the enormous Professor Slughorn panting along at the rear .No !squealed Flitwick raising his wand .Youll do no more murder at Hogwarts !Flitwicks spell hit the suit of armor behind which Snape had taken shelter With a clatter it came to life .Snape struggled free of the crushing arms and sent it flying back toward his attackers Harry and Luna had to dive sideways to avoid it as it smashed into the wall and shattered .When Harry looked up again Snape was in full flight McGonagall Flitwick and Sprout all thundering after him He hurtled through a classroom door and moments later he heard McGonagall cry Coward !COWARD !Whats happened whats happened ?asked Luna .Harry dragged her to her feet and they raced along the corridor trailing the Invisibility Cloak behind them into the deserted classroom where Professors McGonagall Flitwick and Sprout were standing at a smashed window .He jumped said Professor McGonagall as Harry and Luna ran into the room .You mean hes dead ?Harry sprinted to the window ignoring Flitwicks and Sprouts yells of shock at his sudden appearance .No hes not dead said McGonagall bitterly .Unlike Dumbledore he was still carrying a wand .and he seems to have learned a few tricks from his master .With a tingle of horror Harry saw in the distance a huge batlike shape flying through the darkness toward the perimeter wall .There were heavy footfalls behind them and a great deal of puffing Slughorn had just caught up .Harry !he panted massaging his immense chest beneath his emeraldgreen silk pajamas .My dear boy .what a surprise .Minerva do please explain . .Severus .what . ?Our headmaster is taking a short break said Professor McGonagall pointing at the Snapeshaped hole in the window .Professor !Harry shouted his hands at his forehead .He could see the Inferifilled lake sliding beneath him and he felt the ghostly green boat bump into the underground shore and Voldemort leapt from it with murder in his heart Professor weve got to barricade the school hes coming now !Very well .HeWhoMustNotBeNamed is coming she told the other teachers .Sprout and Flitwick gasped Slughorn let out a low groan .Potter has work to do in the castle on Dumbledores orders .We need to put in place every protection of which we are capable while Potter does what he needs to do .You realize of course that nothing we do will be able to keep out YouKnowWho indefinitely ?squeaked Flitwick .But we can hold him up said Professor Sprout .Thank you Pomona said Professor McGonagall and between the two witches there passed a look of grim understanding .I suggest we establish basic protection around the place then gather our students and meet in the Great Hall .Most must be evacuated though if any of those who are over age wish to stay and fight I think they ought to be given the chance .Agreed said Professor Sprout already hurrying toward the door .I shall meet you in the Great Hall in twenty minutes with my House .And as she jogged out of sight they could hear her muttering Tentacula .Devils Snare .And Snargaluff pods .yes Id like to see the Death Eaters fighting those .I can act from here said Flitwick and although he could barely see out of it he pointed his wand through the smashed window and started muttering incantations of great complexity .Harry heard a weird rushing noise as though Flitwick had unleashed the power of the wind into the grounds .Professor Harry said approaching the little Charms master Professor Im sorry to interrupt but this is important .Have you got any idea where the diadem of Ravenclaw is ?Protego Horribilis the diadem of Ravenclaw ?squeaked Flitwick .A little extra wisdom never goes amiss Potter but I hardly think it would be much use in this situation !I only meant do you know where it is ?Have you ever seen it ?Seen it ?Nobody has seen it in living memory !Long since lost boy !Harry felt a mixture of desperate disappointment and panic .What then was the Horcrux ?We shall meet you and your Ravenclaws in the Great Hall Filius !said Professor McGonagall beckoning to Harry and Luna to follow her .They had just reached the door when Slughorn rumbled into speech .My word he puffed pale and sweaty his walrus mustache aquiver .What a todo !Im not at all sure whether this is wise Minerva .He is bound to find a way in you know and anyone who has tried to delay him will be in most grievous peril I shall expect you and the Slytherins in the Great Hall in twenty minutes also said Professor McGonagall .If you wish to leave with your students we shall not stop you .But if any of you attempt to sabotage our resistance or take up arms against us within this castle then Horace we duel to kill .Minerva !he said aghast .The time has come for Slytherin House to decide upon its loyalties interrupted Professor McGonagall .Go and wake your students Horace .Harry did not stay to watch Slughorn splutter He and Luna ran after Professor McGonagall who had taken up a position in the middle of the corridor and raised her wand .Piertotum oh for heavens sake Filch not now The aged caretaker had just come hobbling into view shouting Students out of bed !Students in the corridors !Theyre supposed to be you blithering idiot !shouted McGonagall .Now go and do something constructive !Find Peeves !PPeeves ?stammered Filch as though he had never heard the name before .Yes Peeves you fool Peevesl Havent you been complaining about him for a quarter of a century ?Go and fetch him at once !Filch evidently thought Professor McGonagall had taken leave of her senses but hobbled away hunch shouldered muttering under his breath .And now Piertotum Locomotori cried Professor McGonagall .And all along the corridor the statues and suits of armor jumped down from their plinths and from the echoing crashes from the floors above and below Harry knew that their fellows throughout the castle had done the same .Hogwarts is threatened !shouted Professor McGonagall .Man the boundaries protect us do your duty to our school !Clattering and yelling the horde of moving statues stampeded past Harry some of them smaller others larger than life .There were animals too and the clanking suits of armor brandished swords and spiked balls on chains .Now Potter said McGonagall you and Miss Lovegood had better return to your friends and bring them to the Great Hall I shall rouse the other Gryffindors .They parted at the top of the next staircase Harry and Luna running back toward the concealed entrance to the Room of Requirement .As they ran they met crowds of students most wearing traveling cloaks over their pajamas being shepherded down to the Great Hall by teachers and prefects .That was Potter !Harry Potted It was him I swear I just saw him !But Harry did not look back and at last they reached the entrance to the Room of Requirement .Harry leaned against the enchanted wall which opened to admit them and he and Luna sped back down the steep staircase .Wh ?As the room came into view Harry slipped down a few stairs in shock .It was packed far more crowded than when he had last been in there .Kingsley and Lupin were looking up at him as were Oliver Wood Katie Bell Angelina Johnson and Alicia Spinnet Bill and Fleur and Mr and Mrs Weasley .Harry whats happening ?said Lupin meeting him at the foot of the stairs .Voldemorts on his way theyre barricading the school Snapes run for it What are you doing here ?How did you know ?We sent messages to the rest of Dumbledores Army Fred explained .You couldnt expect everyone to miss the fun Harry and the D .A .let the Order of the Phoenix know and it all kind of snowballed .What first Harry ?called George .Whats going on ?Theyre evacuating the younger kids and everyones meeting in the Great Hall to get organized Harry said .Were fighting .There was a great roar and a surge toward the foot of the stairs he was pressed back against the wall as they ran past him the mingled members of the Order of the Phoenix Dumbledores Army and Harrys old Quidditch team all with their wands drawn heading up into the main castle .Come on Luna Dean called as he passed holding out his free hand she took it and followed him back up the stairs .The crowd was thinning Only a little knot of people remained below in the Room of Requirement and Harry joined them .Mrs Weasley was struggling with Ginny .Around them stood Lupin Fred George Bill and Fleur .Youre underage !Mrs Weasley shouted at her daughter as Harry approached .I wont permit it !The boys yes but you youve got to go home !I wont !Ginnys hair flew as she pulled her arm out of her mothers grip .Im in Dumbledores Army A teenagers gang !A teenagers gang thats about to take him on which no one else has dared to do !said Fred .Shes sixteen !shouted Mrs Weasley .Shes not old enough !What you two were thinking bringing her with you Fred and George looked slightly ashamed of themselves .Mums right Ginny said Bill gently .You cant do this .Everyone underage will have to leave its only right .I cant go home !Ginny shouted angry tears sparkling in her eyes .My whole familys here I cant stand waiting there alone and not knowing and Her eyes met Harrys for the first time .She looked at him beseechingly but he shook his head and she turned away bitterly .Fine she said staring at the entrance to the tunnel back to the Hogs Head .Ill say goodbye now then and There was a scuffling and a great thump Someone else had clambered out of the tunnel overbalanced slightly and fallen .He pulled himself up on the nearest chair looked around through lopsided horn rimmed glasses and said Am I too late ?Has it started ?I only just found out so I I Percy spluttered into silence .Evidently he had not expected to run into most of his family .There was a long moment of astonishment broken by Fleur turning to Lupin and saying in a wildly transparent attempt to break the tension So ow eez leetle Teddy ?Lupin blinked at her startled .The silence between the Weasleys seemed to be solidifying like ice .I oh yes hes fine !Lupin said loudly .Yes Tonks is with him at her mothers Percy and the other Weasleys were still staring at one another frozen .Here Ive got a picture !Lupin shouted pulling a photograph from inside his jacket and showing it to Fleur and Harry who saw a tiny baby with a tuft of bright turquoise hair waving fat fists at the camera .I was a fool !Percy roared so loudly that Lupin nearly dropped his photograph .I was an idiot I was a pompous prat I was a a Ministryloving familydisowning powerhungry moron said Fred .Percy swallowed .Yes I was !Well you cant say fairer than that said Fred holding out his hand to Percy .Mrs Weasley burst into tears .She ran forward pushed Fred aside and pulled Percy into a strangling hug while he patted her on the back his eyes on his father .Im sorry Dad Percy said .Mr Weasley blinked rather rapidly then he too hurried to hug his son .What made you see sense Perce ?inquired George .Its been coming on for a while said Percy mopping his eyes under his glasses with a corner of his traveling cloak .But I had to find a way out and its not so easy at the Ministry theyre imprisoning traitors all the time .I managed to make contact with Aberforth and he tipped me off ten minutes ago that Hogwarts was going to make a fight of it so here I am .Well we do look to our prefects to take a lead at times such as these said George in a good imitation of Percys most pompous manner .Now lets get upstairs and fight or all the good Death Eatersll be taken .So youre my sisterinlaw now ?said Percy shaking hands with Fleur as they hurried off toward the staircase with Bill Fred and George .Ginny !barked Mrs Weasley .Ginny had been attempting under cover of the reconciliation to sneak upstairs too .Molly how about this said Lupin .Why doesnt Ginny stay here then at least shell be on the scene and know whats going on but she wont be in the middle of the fighting ?Thats a good idea said Mr Weasley firmly .Ginny you stay in this room you hear me ?Ginny did not seem to like the idea much but under her fathers unusually stern gaze she nodded .Mr and Mrs Weasley and Lupin headed off for the stairs as well .Wheres Ron ?asked Harry .Wheres Hermione ?They must have gone up to the Great Hall already Mr Weasley called over his shoulder .I didnt see them pass me said Harry .They said something about a bathroom said Ginny not long after you left .A bathroom ?Harry strode across the room to an open door leading off the Room of Requirement and checked the bathroom beyond .It was empty .Youre sure they said bath ?But then his scar seared and the Room of Requirement vanished He was looking through the high wroughtiron gates with winged boars on pillars at either side looking through the dark grounds toward the castle which was ablaze with lights .Nagini lay draped over his shoulders .He was possessed of that cold cruel sense of purpose that preceded murder .THE BATTLE OF HOGWARTS The enchanted ceiling of the Great Hall was dark and scattered with stars and below it the four long House tables were lined with disheveled students some in traveling cloaks others in dressing gowns .Here and there shone the pearly white figures of the school ghosts .Every eye living and dead was fixed upon Professor McGonagall who was speaking from the raised platform at the top of the Hall .Behind her stood the remaining teachers including the palomino centaur Firenze and the members of the Order of the Phoenix who had arrived to fight . .evacuation will be overseen by Mr Filch and Madam Pomfrey .Prefects when I give the word you will organize your House and take your charges in an orderly fashion to the evacuation point .Many of the students looked petrified .However as Harry skirted the walls scanning the Gryffindor table for Ron and Hermione Ernie Macmillan stood up at the Hufflepuff table and shouted And what if we want to stay and fight ?There was a smattering of applause .If you are of age you may stay said Professor McGonagall .What about our things ?called a girl at the Ravenclaw table .Our trunks our owls ?We have no time to collect possessions said Professor McGonagall .The important thing is to get you out of here safely .Wheres Professor Snape ?shouted a girl from the Slytherin table .He has to use the common phrase done a bunk replied Professor McGonagall and a great cheer erupted from the Gryffindors Hufflepuffs and Ravenclaws .Harry moved up the Hall alongside the Gryffindor table still looking for Ron and Hermione .As he passed faces turned in his direction and a great deal of whispering broke out in his wake .We have already placed protection around the castle Professor McGonagall was saying but it is unlikely to hold for very long unless we reinforce it .I must ask you therefore to move quickly and calmly and do as your prefects But her final words were drowned as a different voice echoed throughout the Hall .It was high cold and clear There was no telling from where it came it seemed to issue from the walls themselves .Like the monster it had once commanded it might have lain dormant there for centuries .I know that you are preparing to fight .There were screams amongst the students some of whom clutched each other looking around in terror for the source of the sound .Your efforts are futile .You cannot fight me .I do not want to kill you .I have great respect for the teachers of Hogwarts .I do not want to spill magical blood .There was silence in the Hall now the kind of silence that presses against the eardrums that seems too huge to be contained by walls .Give me Harry Potter said Voldemorts voice and none shall be harmed .Give me Harry Potter and I shall leave the school untouched .Give me Harry Potter and you will be rewarded .You have until midnight .The silence swallowed them all again .Every head turned every eye in the place seemed to have found Harry to hold him frozen in the glare of thousands of invisible beams .Then a figure rose from the Slytherin table and he recognized Pansy Parkinson as she raised a shaking arm and screamed But hes there !Potters there Someone grab him !Before Harry could speak there was a massive movement .The Gryffindors in front of him had risen and stood facing not Harry but the Slytherins .Then the Hufflepuffs stood and almost at the same moment the Ravenclaws all of them with their backs to Harry all of them looking toward Pansy instead and Harry awestruck and overwhelmed saw wands emerging everywhere pulled from beneath cloaks and from under sleeves .Thank you Miss Parkinson said Professor McGonagall in a clipped voice .You will leave the Hall first with Mr Filch .If the rest of your House could follow .Harry heard the grinding of benches and then the sound of the Slytherins trooping out on the other side of the Hall .Ravenclaws follow on !cried Professor McGonagall .Slowly the four tables emptied .The Slytherin table was completely deserted but a number of older Ravenclaws remained seated while their fellows filed out even more Hufflepuffs stayed behind and half of Gryffindor remained in their seats necessitating Professor McGonagalls descent from the teachers platform to chivvy the underage on their way .Absolutely not Creevey go !And you Peakes !Harry hurried over to the Weasleys all sitting together at the Gryffindor table .Where are Ron and Hermione ?Havent you found ?began Mr Weasley looking worried .But he broke off as Kingsley had stepped forward on the raised platform to address those who had remained behind .Weve only got half an hour until midnight so we need to act fast !A battle plan has been agreed between the teachers of Hogwarts and the Order of the Phoenix .Professors Flitwick Sprout and McGonagall are going to take groups of fighters up to the three highest towers Ravenclaw Astronomy and Gryffindor where theyll have a good overview excellent positions from which to work spells .Meanwhile Remus he indicated Lupin Arthur he pointed toward Mr Weasley sitting at the Gryffindor table and I will take groups into the grounds .Well need somebody to organize defense of the entrances of the passageways into the school Sounds like a job for us called Fred indicating himself and George and Kingsley nodded his approval .All right leaders up here and well divide up the troops !Potter said Professor McGonagall hurrying up to him as students flooded the platform jostling for position receiving instructions Arent you supposed to be looking for something ?What ?Oh said Harry oh yeah !He had almost forgotten about the Horcrux almost forgotten that the battle was being fought so that he could search for it The inexplicable absence of Ron and Hermione had momentarily driven every other thought from his mind .Then go Potter go !Right yeah He sensed eyes following him as he ran out of the Great Hall again into the entrance hall still crowded with evacuating students .He allowed himself to be swept up the marble staircase with them but at the top he hurried off along a deserted corridor .Fear and panic were clouding his thought processes .He tried to calm himself to concentrate on finding the Horcrux but his thoughts buzzed as frantically and fruitlessly as wasps trapped beneath a glass .Without Ron and Hermione to help him he could not seem to marshal his ideas .He slowed down coming to a halt halfway along an empty passage where he sat down upon the plinth of a departed statue and pulled the Marauders Map out of the pouch around his neck .He could not see Rons or Hermiones names anywhere on it though the density of the crowd of dots now making its way to the Room of Requirement might he thought be concealing them .He put the map away pressed his hands over his face and closed his eyes trying to concentrate .Voldemort thought Id go to Ravenclaw Tower .There it was a solid fact the place to start .Voldemort had stationed Alecto Carrow in the Ravenclaw common room and there could only be one explanation Voldemort feared that Harry already knew his Horcrux was connected to that House .But the only object anyone seemed to associate with Ravenclaw was the lost diadem .and how could the Horcrux be the diadem ?How was it possible that Voldemort the Slytherin had found the diadem that had eluded generations of Ravenclaws ?Who could have told him where to look when nobody had seen the diadem in living memory ?In living memory .Beneath his fingers Harrys eyes flew open again .He leapt up from the plinth and tore back the way he had come now in pursuit of his one last hope .The sound of hundreds of people marching toward the Room of Requirement grew louder and louder as he returned to the marble stairs .Prefects were shouting instructions trying to keep track of the students in their own Houses there was much pushing and shoving Harry saw Zacharias Smith bowling over firstyears to get to the front of the queue here and there younger students were in tears while older ones called desperately for friends or siblings .Harry caught sight of a pearly white figure drifting across the entrance hall below and yelled as loudly as he could over the clamor .Nick !NICK !I need to talk to you !He forced his way back through the tide of students finally reaching the bottom of the stairs where Nearly Headless Nick ghost of Gryffindor Tower stood waiting for him .Harry !My dear boy !Nick made to grasp Harrys hands with both of his own Harrys felt as though they had been thrust into icy water .Nick youve got to help me .Whos the ghost of Ravenclaw Tower ?Nearly Headless Nick looked surprised and a little offended .The Gray Lady of course but if it is ghostly services you require ?Its got to be her dyou know where she is ?Lets see .Nicks head wobbled a little on his ruff as he turned hither and thither peering over the heads of the swarming students .Thats her over there Harry the young woman with the long hair .Harry looked in the direction of Nicks transparent pointing finger and saw a tall ghost who caught sight of Harry looking at her raised her eyebrows and drifted away through a solid wall .Harry ran after her .Once through the door of the corridor into which she had disappeared he saw her at the very end of the passage still gliding smoothly away from him .Hey wait come back !She consented to pause floating a few inches from the ground .Harry supposed that she was beautiful with her waistlength hair and floorlength cloak but she also looked haughty and proud .Close to he recognized her as a ghost he had passed several times in the corridor but to whom he had never spoken .Youre the Gray Lady ?She nodded but did not speak .The ghost of Ravenclaw Tower ?That is correct .Her tone was not encouraging .Please I need some help .I need to know anything you can tell me about the lost diadem .A cold smile curved her lips .I am afraid she said turning to leave that I cannot help you .WAIT !He had not meant to shout but anger and panic were threatening to overwhelm him .He glanced at his watch as she hovered in front of him It was a quarter to midnight .This is urgent he said fiercely .If that diadems at Hogwarts Ive got to find it fast .You are hardly the first student to covet the diadem she said disdainfully .Generations of students have badgered me This isnt about trying to get better marks !Harry shouted at her .Its about Voldemort defeating Voldemort or arent you interested in that ?She could not blush but her transparent cheeks became more opaque and her voice was heated as she replied Of course I how dare you suggest ?Well help me then !Her composure was slipping .It it is not a question of she stammered .My mothers diadem Your mothers ?She looked angry with herself .When I lived she said stiffly I was Helena Ravenclaw .Youre her daughter ?But then you must know what happened to it !While the diadem bestows wisdom she said with an obvious effort to pull herself together I doubt that it would greatly increase your chances of defeating the wizard who calls himself Lord Havent I just told you Im not interested in wearing it !Harry said fiercely .Theres no time to explain but if you care about Hogwarts if you want to see Voldemort finished youve got to tell me anything you know about the diadem !She remained quite still floating in midair staring down at him and a sense of hopelessness engulfed Harry .Of course if she had known anything she would have told Flitwick or Dumbledore who had surely asked her the same question .He had shaken his head and made to turn away when she spoke in a low voice .I stole the diadem from my mother .You you did what ?I stole the diadem repeated Helena Ravenclaw in a whisper .I sought to make myself cleverer more important than my mother .I ran away with it .He did not know how he had managed to gain her confidence and did not ask he simply listened hard as she went on My mother they say never admitted that the diadem was gone but pretended that she had it still .She concealed her loss my dreadful betrayal even from the other founders of Hogwarts .Then my mother fell ill fatally ill .In spite of my perfidy she was desperate to see me one more time .She sent a man who had long loved me though I spurned his advances to find me .She knew that he would not rest until he had done so .Harry waited .She drew a deep breath and threw back her head .He tracked me to the forest where I was hiding .When I refused to return with him he became violent .The Baron was always a hottempered man .Furious at my refusal jealous of my freedom he stabbed me .The Baron ?You mean ?The Bloody Baron yes said the Gray Lady and she lifted aside the cloak she wore to reveal a single dark wound in her white chest .When he saw what he had done he was overcome with remorse .He took the weapon that had claimed my life and used it to kill himself .All these centuries later he wears his chains as an act of penitence .as he should she added bitterly .And .and the diadem ?It remained where I had hidden it when I heard the Baron blundering through the forest toward me .Concealed inside a hollow tree .A hollow tree ?repeated Harry .What tree ?Where was this ?A forest in Albania .A lonely place I thought was far beyond my mothers reach .Albania repeated Harry .Sense was emerging miraculously from confusion and now he understood why she was telling him what she had denied Dumbledore and Flitwick .Youve already told someone this story havent you ?Another student ?She closed her eyes and nodded .I had .no idea .He was .flattering .He seemed to .to understand .to sympathize .Yes Harry thought Tom Riddle would certainly have understood Helena Ravenclaws desire to possess fabulous objects to which she had little right .Well you werent the first person Riddle wormed things out of Harry muttered .He could be charming when he wanted .So Voldemort had managed to wheedle the location of the lost diadem out of the Gray Lady .He had traveled to that farflung forest and retrieved the diadem from its hiding place perhaps as soon as he left Hogwarts before he even started work at Borgin and Burkes .And wouldnt those secluded Albanian woods have seemed an excellent refuge when so much later Voldemort had needed a place to lie low undisturbed for ten long years ?But the diadem once it became his precious Horcrux had not been left in that lowly tree .No the diadem had been returned secretly to its true home and Voldemort must have put it there the night he asked for a job !said Harry finishing his thought .I beg your pardon ?He hid the diadem in the castle the night he asked Dumbledore to let him teach !said Harry .Saying it out loud enabled him to make sense of it all .He mustve hidden the diadem on his way up to or down from Dumbledore s office !But it was still worth trying to get the job then he mightve got the chance to nick Gryffindors sword as well thank you thanks !Harry left her floating there looking utterly bewildered .As he rounded the corner back into the entrance hall he checked his watch .It was five minutes until midnight and though he now knew what the last Horcrux was he was no closer to discovering where it was .Generations of students had failed to find the diadem that suggested that it was not in Ravenclaw Tower but if not there where ?What hiding place had Tom Riddle discovered inside Hogwarts Castle that he believed would remain secret forever ?Lost in desperate speculation Harry turned a corner but he had taken only a few steps down the new corridor when the window to his left broke open with a deafening shattering crash .As he leapt aside a gigantic body flew in through the window and hit the opposite wall .Something large and furry detached itself whimpering from the new arrival and flung itself at Harry .Hagrid !Harry bellowed fighting off Fang the boarhounds attentions as the enormous bearded figure clambered to his feet .What the ?Harry yer here !Yer here Hagrid stooped down bestowed upon Harry a cursory and ribcracking hug then ran back to the shattered window .Good boy Grawpy !he bellowed through the hole in the window .Ill see yer in a moment theres a good lad !Beyond Hagrid out in the dark night Harry saw bursts of light in the distance and heard a weird keening scream .He looked down at his watch It was midnight .The battle had begun .Blimey Harry panted Hagrid this is it eh ?Time ter fight ?Hagrid where have you come from ?Heard YouKnowWho from up in our cave said Hagrid grimly .Voice carried didn it ?Yeh got till midnight ter gimme Potter .Knew yeh mus be here knew what mus be happenin .Get down Fang .So we come ter join in me an Grawpy an Fang .Smashed our way through the boundary by the forest Grawpy was carryin us Fang an me .Told him ter let me down at the castle so he shoved me through the window bless him .Not exacly what I meant bu wheres Ron an Hermione ?That said Harry is a really good question .Come on .They hurried together along the corridor Fang lolloping beside them .Harry could hear movement through the corridors all around running footsteps shouts through the windows he could see more flashes of light in the dark grounds .Wherere we goin ?puffed Hagrid pounding along at Harrys heels making the floorboards quake .I dunno exactly said Harry making another random turn but Ron and Hermione must be around here somewhere .The first casualties of the battle were already strewn across the passage ahead The two stone gargoyles that usually guarded the entrance to the staffroom had been smashed apart by a jinx that had sailed through another broken window .Their remains stirred feebly on the floor and as Harry leapt over one of their disembodied heads it moaned faintly Oh dont mind me .Ill just lie here and crumble .Its ugly stone face made Harry think suddenly of the marble bust of Rowena Ravenclaw at Xenophiliuss house wearing that mad headdress and then of the statue in Ravenclaw Tower with the stone diadem upon her white curls .And as he reached the end of the passage the memory of a third stone effigy came back to him that of an ugly old warlock onto whose head Harry himself had placed a wig and a battered old tiara .The shock shot through Harry with the heat of firewhisky and he nearly stumbled .He knew at last where the Horcrux sat waiting for him .Tom Riddle who confided in no one and operated alone might have been arrogant enough to assume that he and only he had penetrated the deepest mysteries of Hogwarts Castle .Of course Dumbledore and Flitwick those model pupils had never set foot in that particular place but he Harry had strayed off the beaten track in his time at school here at last was a secret he and Voldemort knew that Dumbledore had never discovered He was roused by Professor Sprout who was thundering past followed by Neville and half a dozen others all of them wearing earmuffs and carrying what appeared to be large potted plants .Mandrakes !Neville bellowed at Harry over his shoulder as he ran .Going to lob them over the walls they wont like this !Harry knew now where to go He sped off with Hagrid and Fang galloping behind him .They passed portrait after portrait and the painted figures raced alongside them wizards and witches in ruffs and breeches in armor and cloaks cramming themselves into each others canvases screaming news from other parts of the castle .As they reached the end of this corridor the whole castle shook and Harry knew as a gigantic vase blew off its plinth with explosive force that it was in the grip of enchantments more sinister than those of the teachers and the Order .Its all righ Fang its all righ !yelled Hagrid but the great boarhound had taken flight as slivers of china flew like shrapnel through the air and Hagrid pounded off after the terrified dog leaving Harry alone .He forged on through the trembling passages his wand at the ready and for the length of one corridor the little painted knight Sir Cadogan rushed from painting to painting beside him clanking along in his armor screaming encouragement his fat little pony cantering behind him .Braggarts and rogues dogs and scoundrels drive them out Harry Potter see them off !Harry hurtled around a corner and found Fred and a small knot of students including Lee Jordan and Hannah Abbott standing beside another empty plinth whose statue had concealed a secret passageway .Their wands were drawn and they were listening at the concealed hole .Nice night for it !Fred shouted as the castle quaked again and Harry sprinted by elated and terrified in equal measure .Along yet another corridor he dashed and then there were owls everywhere and Mrs Norris was hissing and trying to bat them with her paws no doubt to return them to their proper place .Potter !Aberforth Dumbledore stood blocking the corridor ahead his wand held ready .Ive had hundreds of kids thundering through my pub Potter !I know were evacuating Harry said Voldemorts attacking because they havent handed you over yeah said Aberforth Im not deaf the whole of Hogsmeade heard him .And it never occurred to any of you to keep a few Slytherins hostage ?There are kids of Death Eaters youve just sent to safety .Wouldnt it have been a bit smarter to keep em here ?It wouldnt stop Voldemort said Harry and your brother would never have done it .Aberforth grunted and tore away in the opposite direction .Your brother would never have done it .Well it was the truth Harry thought as he ran on again Dumbledore who had defended Snape for so long would never have held students ransom .And then he skidded around a final corner and with a yell of mingled relief and fury he saw them Ron and Hermione both with their arms full of large curved dirty yellow objects Ron with a broomstick under his arm .Where the hell have you been ?Harry shouted .Chamber of Secrets said Ron .Chamber what ?said Harry coming to an unsteady halt before them .It was Ron all Rons idea !said Hermione breathlessly .Wasnt it absolutely brilliant ?There we were after you left and I said to Ron even if we find the other one how are we going to get rid of it ?We still hadnt got rid of the cup !And then he thought of it !The basilisk !What the ?Something to get rid of Horcruxes said Ron simply .Harrys eyes dropped to the objects clutched in Ron and Hermiones arms great curved fangs torn he now realized from the skull of a dead basilisk .But how did you get in there ?he asked staring from the fangs to Ron .You need to speak Parseltongue !He did !whispered Hermione .Show him Ron !Ron made a horrible strangled hissing noise .Its what you did to open the locket he told Harry apologetically .I had to have a few goes to get it right but he shrugged modestly we got there in the end .He was amazing .said Hermione .Amazing !So .Harry was struggling to keep up .So .So were another Horcrux down said Ron and from under his jacket he pulled the mangled remains of Hufflepuffs cup .Hermione stabbed it .Thought she should .She hasnt had the pleasure yet .Genius !yelled Harry .It was nothing said Ron though he looked delighted with himself .So whats new with you ?As he said it there was an explosion from overhead All three of them looked up as dust fell from the ceiling and they heard a distant scream .I know what the diadem looks like and I know where it is said Harry talking fast .He hid it exactly where I hid my old Potions book where everyones been hiding stuff for centuries .He thought he was the only one to find it .Come on .As the walls trembled again he led the other two back through the concealed entrance and down the staircase into the Room of Requirement .It was empty except for three women Ginny Tonks and an elderly witch wearing a motheaten hat whom Harry recognized immediately as Nevilles grandmother .Ah Potter she said crisply as if she had been waiting for him .You can tell us whats going on .Is everyone okay ?said Ginny and Tonks together .S far as we know said Harry .Are there still people in the passage to the Hogs Head ?He knew that the room would not be able to transform while there were still users inside it .I was the last to come through said Mrs Longbottom .I sealed it I think it unwise to leave it open now Aberforth has left his pub .Have you seen my grandson ?Hes fighting said Harry .Naturally said the old lady proudly .Excuse me I must go and assist him .With surprising speed she trotted off toward the stone steps .Harry looked at Tonks .I thought you were supposed to be with Teddy at your mothers ?I couldnt stand not knowing Tonks looked anguished .Shell look after him have you seen Remus ?He was planning to lead a group of fighters into the grounds Without another word Tonks sped off .Ginny said Harry Im sorry but we need you to leave too .Just for a bit .Then you can come back in .Ginny looked simply delighted to leave her sanctuary .And then you can come back in !he shouted after her as she ran up the steps after Tonks .Youve got to come back ini Hang on a moment !said Ron sharply .Weve forgotten someone !Who ?asked Hermione .The houseelves theyll all be down in the kitchen wont they ?You mean we ought to get them fighting ?asked Harry .No said Ron seriously I mean we should tell them to get out .We dont want any more Dobbies do we ?We cant order them to die for us There was a clatter as the basilisk fangs cascaded out of Hermione s arms .Running at Ron she flung them around his neck and kissed him full on the mouth .Ron threw away the fangs and broomstick he was holding and responded with such enthusiasm that he lifted Hermione off her feet .Is this the moment ?Harry asked weakly and when nothing happened except that Ron and Hermione gripped each other still more firmly and swayed on the spot he raised his voice .01 !Theres a war going on here !Ron and Hermione broke apart their arms still around each other .I know mate said Ron who looked as though he had recently been hit on the back of the head with a Bludger so its now or never isnt it ?Never mind that what about the Horcrux ?Harry shouted .Dyou think you could just just hold it in until weve got the diadem ?Yeah right sorry said Ron and he and Hermione set about gathering up fangs both pink in the face .It was clear as the three of them stepped back into the corridor upstairs that in the minutes that they had spent in the Room of Requirement the situation within the castle had deteriorated severely The walls and ceiling were shaking worse than ever dust filled the air and through the nearest window Harry saw bursts of green and red light so close to the foot of the castle that he knew the Death Eaters must be very near to entering the place .Looking down Harry saw Grawp the giant meandering past swinging what looked like a stone gargoyle torn from the roof and roaring his displeasure .Lets hope he steps on some of them !said Ron as more screams echoed from close by .As long as its not any of our lot !said a voice Harry turned and saw Ginny and Tonks both with their wands drawn at the next window which was missing several panes .Even as he watched Ginny sent a well aimed jinx into a crowd of fighters below .Good girl !roared a figure running through the dust toward them and Harry saw Aberforth again his gray hair flying as he led a small group of students past .They look like they might be breaching the north battlements theyve brought giants of their own !Have you seen Remus ?Tonks called after him .He was dueling Dolohov shouted Aberforth havent seen him since !Tonks said Ginny Tonks Im sure hes okay But Tonks had run off into the dust after Aberforth .Ginny turned helpless to Harry Ron and Hermione .Theyll be all right said Harry though he knew they were empty words .Ginny well be back in a moment just keep out of the way keep safe come on !he said to Ron and Hermione and they ran back to the stretch of wall beyond which the Room of Requirement was waiting to do the bidding of the next entrant .I need the place where everything is hidden Harry begged of it inside his head and the door materialized on their third run past .The furor of the battle died the moment they crossed the threshold and closed the door behind them All was silent .They were in a place the size of a cathedral with the appearance of a city its towering walls built of objects hidden by thousands of longgone students .And he never realized anyone could get in ?said Ron his voice echoing in the silence .He thought he was the only one said Harry .Too bad for him Ive had to hide stuff in my time .this way he added I think its down here .He passed the stuffed troll and the Vanishing Cabinet Draco Malfoy had mended last year with such disastrous consequences then hesitated looking up and down aisles of junk he could not remember where to go next .Accio Diadem .cried Hermione in desperation but nothing flew through the air toward them .It seemed that like the vault at Gringotts the room would not yield its hidden objects that easily .Lets split up Harry told the other two .Look for a stone bust of an old man wearing a wig and a tiara !Its standing on a cupboard and its definitely somewhere near here .They sped off up adjacent aisles Harry could hear the others footsteps echoing through the towering piles of junk of bottles hats crates chairs books weapons broomsticks bats .Somewhere near here Harry muttered to himself .Somewhere .somewhere .Deeper and deeper into the labyrinth he went looking for objects he recognized from his one previous trip into the room .His breath was loud in his ears and then his very soul seemed to shiver There it was right ahead the blistered old cupboard in which he had hidden his old Potions book and on top of it the pockmarked stone warlock wearing a dusty old wig and what looked like an ancient discolored tiara .He had already stretched out his hand though he remained ten feet away when a voice behind him said Hold it Potter .He skidded to a halt and turned around .Crabbe and Goyle were standing behind him shoulder to shoulder wands pointing right at Harry .Through the small space between their leering faces he saw Draco Malfoy .Thats my wand youre holding Potter said Malfoy pointing his own through the gap between Crabbe and Goyle .Not anymore panted Harry tightening his grip on the hawthorn wand .Winners keepers Malfoy .Whos lent you theirs ?My mother said Draco .Harry laughed though there was nothing very humorous about the situation .He could not hear Ron or Hermione anymore .They seemed to have run out of earshot searching for the diadem .So how come you three arent with Voldemort ?asked Harry .Were gonna be rewarded said Crabbe His voice was surprisingly soft for such an enormous person Harry had hardly ever heard him speak before .Crabbe was smiling like a small child promised a large bag of sweets .We ung back Potter .We decided not to go .Decided to bring you to im .Good plan said Harry in mock admiration .He could not believe that he was this close and was going to be thwarted by Malfoy Crabbe and Goyle .He began edging slowly backward toward the place where the Horcrux sat lopsided upon the bust .If he could just get his hands on it before the fight broke out .So how did you get in here ?he asked trying to distract them .I virtually lived in the Room of Hidden Things all last year said Malfoy his voice brittle .I know how to get in .We was hiding in the corridor outside grunted Goyle .We can do Disslusion Charms now !And then his face split into a gormless grin you turned up right in front of us and said you was looking for a diedum !Whats a diedum ?Harry ?Rons voice echoed suddenly from the other side of the wall to Harrys right .Are you talking to someone ?With a whiplike movement Crabbe pointed his wand at the fiftyfoot mountain of old furniture of broken trunks of old books and robes and unidentifiable junk and shouted DescendoV The wall began to totter then the top third crumbled into the aisle next door where Ron stood .Ron !Harry bellowed as somewhere out of sight Hermione screamed and Harry heard innumerable objects crashing to the floor on the other side of the destabilized wall He pointed his wand at the rampart cried Finite !and it steadied .No !shouted Malfoy staying Crabbes arm as the latter made to repeat his spell .If you wreck the room you might bury this diadem thing !Whats that matter ?said Crabbe tugging himself free .Its Potter the Dark Lord wants who cares about a diedum ?Potter came in here to get it said Malfoy with ill disguised impatience at the slowwittedness of his colleagues so that must mean ‘Must mean ?Crabbe turned on Malfoy with undisguised ferocity .Who cares what you think ?I dont take your orders no more Draco .You an your dad are finished .Harry ?shouted Ron again from the other side of the junk wall .Whats going on ?Harry ?mimicked Crabbe .Whats going no Potter !Cruciol Harry had lunged for the tiara Crabbes curse missed him but hit the stone bust which flew into the air the diadem soared upward and then dropped out of sight in the mass of objects on which the bust had rested .STOP !Malfoy shouted at Crabbe his voice echoing through the enormous room .The Dark Lord wants him alive So ?Im not killing him am I ?yelled Crabbe throwing off Malfoys restraining arm .But if I can I will the Dark Lord wants him dead anyway whats thediff ?A jet of scarlet light shot past Harry by inches Hermione had run around the corner behind him and sent a Stunning Spell straight at Crabbe s head .It only missed because Malfoy pulled him out of the way .Its that Mudblood !Avada Kedavral Harry saw Hermione dive aside and his fury that Crabbe had aimed to kill wiped all else from his mind .He shot a Stunning Spell at Crabbe who lurched out of the way knocking Malfoys wand out of his hand it rolled out of sight beneath a mountain of broken furniture and boxes .Dont kill him !DONT KILL HIM !Malfoy yelled at Crabbe and Goyle who were both aiming at Harry Their split seconds hesitation was all Harry needed .Expelliarmusl Goyle s wand flew out of his hand and disappeared into the bulwark of objects beside him Goyle leapt foolishly on the spot trying to retrieve it Malfoy jumped out of range of Hermione s second Stunning Spell and Ron appearing suddenly at the end of the aisle shot a full BodyBind Curse at Crabbe which narrowly missed .Crabbe wheeled around and screamed Avada KedavraY again .Ron leapt out of sight to avoid the jet of green light .The wandless Malfoy cowered behind a threelegged wardrobe as Hermione charged toward them hitting Goyle with a Stunning Spell as she came .Its somewhere here !Harry yelled at her pointing at the pile of junk into which the old tiara had fallen .Look for it while I go and help R HARRY !she screamed .A roaring billowing noise behind him gave him a moments warning .He turned and saw both Ron and Crabbe running as hard as they could up the aisle toward them .Like it hot scum ?roared Crabbe as he ran .But he seemed to have no control over what he had done .Flames of abnormal size were pursuing them licking up the sides of the junk bulwarks which were crumbling to soot at their touch .Aguamenti Harry bawled but the jet of water that soared from the tip of his wand evaporated in the air .RUN !Malfoy grabbed the Stunned Goyle and dragged him along Crabbe outstripped all of them now looking terrified Harry Ron and Hermione pelted along in his wake and the fire pursued them .It was not normal fire Crabbe had used a curse of which Harry had no knowledge As they turned a corner the flames chased them as though they were alive sentient intent upon killing them .Now the fire was mutating forming a gigantic pack of fiery beasts Flaming serpents chimaeras and dragons rose and fell and rose again and the detritus of centuries on which they were feeding was thrown up in the air into their fanged mouths tossed high on clawed feet before being consumed by the inferno .Malfoy Crabbe and Goyle had vanished from view Harry Ron and Hermione stopped dead the fiery monsters were circling them drawing closer and closer claws and horns and tails lashed and the heat was solid as a wall around them .What can we do ?Hermione screamed over the deafening roars of the fire .What can we do ?Here !Harry seized a pair of heavylooking broomsticks from the nearest pile of junk and threw one to Ron who pulled Hermione onto it behind him .Harry swung his leg over the second broom and with hard kicks to the ground they soared up into the air missing by feet the horned beak of a flaming raptor that snapped its jaws at them .The smoke and heat were becoming overwhelming Below them the cursed fire was consuming the contraband of generations of hunted students the guilty outcomes of a thousand banned experiments the secrets of the countless souls who had sought refuge in the room .Harry could not see a trace of Malfoy Crabbe or Goyle anywhere He swooped as low as he dared over the marauding monsters of flame to try to find them but there was nothing but fire What a terrible way to die .He had never wanted this .Harry lets get out lets get out !bellowed Ron though it was impossible to see where the door was through the black smoke .And then Harry heard a thin piteous human scream from amidst the terrible commotion the thunder of devouring flame .Its too dangerous !Ron yelled but Harry wheeled in the air .His glasses giving his eyes some small protection from the smoke he raked the firestorm below seeking a sign of life a limb or a face that was not yet charred like wood .And he saw them Malfoy with his arms around the unconscious Goyle the pair of them perched on a fragile tower of charred desks and Harry dived .Malfoy saw him coming and raised one arm but even as Harry grasped it he knew at once that it was no good Goyle was too heavy and Malfoy s hand covered in sweat slid instantly out of Harrys IF WE DIE FOR THEM ILL KILL YOU HARRY !roared Rons voice and as a great flaming chimaera bore down upon them he and Hermione dragged Goyle onto their broom and rose rolling and pitching into the air once more as Malfoy clambered up behind Harry .The door get to the door the door !screamed Malfoy in Harrys ear and Harry sped up following Ron Hermione and Goyle through the billowing black smoke hardly able to breathe and all around them the last few objects unburned by the devouring flames were flung into the air as the creatures of the cursed fire cast them high in celebration cups and shields a sparkling necklace and an old discolored tiara What are you doing what are you doing the doors that way screamed Malfoy but Harry made a hairpin swerve and dived .The diadem seemed to fall in slow motion turning and glittering as it dropped toward the maw of a yawning serpent and then he had it caught it around his wrist Harry swerved again as the serpent lunged at him he soared upward and straight toward the place where he prayed the door stood open Ron Hermione and Goyle had vanished Malfoy was screaming and holding Harry so tightly it hurt .Then through the smoke Harry saw a rectangular patch on the wall and steered the broom at it and moments later clean air filled his lungs and they collided with the wall in the corridor beyond .Malfoy fell off the broom and lay facedown gasping coughing and retching .Harry rolled over and sat up The door to the Room of Requirement had vanished and Ron and Hermione sat panting on the floor beside Goyle who was still unconscious .CCrabbe choked Malfoy as soon as he could speak .CCrabbe .Hes dead said Ron harshly .There was silence apart from panting and coughing .Then a number of huge bangs shook the castle and a great cavalcade of transparent figures galloped past on horses their heads screaming with bloodlust under their arms .Harry staggered to his feet when the Headless Hunt had passed and looked around The battle was still going on all around him .He could hear more screams than those of the retreating ghosts .Panic flared within him .Wheres Ginny ?he said sharply .She was here .She was supposed to be going back into the Room of Requirement .Blimey dyou reckon itll still work after that fire ?asked Ron but he too got to his feet rubbing his chest and looking left and right .Shall we split up and look ?No said Hermione getting to her feet too .Malfoy and Goyle remained slumped hopelessly on the corridor floor neither of them had wands .Lets stick together .I say we go Harry whats that on your arm ?What ?Oh yeah He pulled the diadem from his wrist and held it up .It was still hot blackened with soot but as he looked at it closely he was just able to make out the tiny words etched upon it WIT BEYOND MEASURE IS MANS GREATEST TREASURE .A bloodlike substance dark and tarry seemed to be leaking from the diadem .Suddenly Harry felt the thing vibrate violently then break apart in his hands and as it did so he thought he heard the faintest most distant scream of pain echoing not from the grounds or the castle but from the thing that had just fragmented in his fingers .It must have been Fiendfyre !whimpered Hermione her eyes on the broken pieces .Sorry ?Fiendfyre cursed fire its one of the substances that destroy Horcruxes but I would never ever have dared use it its so dangerous how did Crabbe know how to ?Mustve learned from the Carrows said Harry grimly .Shame he wasnt concentrating when they mentioned how to stop it really said Ron whose hair like Hermiones was singed and whose face was blackened .If he hadnt tried to kill us all Id be quite sorry he was dead .But dont you realize ?whispered Hermione .This means if we can just get the snake But she broke off as yells and shouts and the unmistakable noises of dueling filled the corridor .Harry looked around and his heart seemed to fail Death Eaters had penetrated Hogwarts .Fred and Percy had just backed into view both of them dueling masked and hooded men .Harry Ron and Hermione ran forward to help Jets of light flew in every direction and the man dueling Percy backed off fast Then his hood slipped and they saw a high forehead and streaked hair Hello Minister !bellowed Percy sending a neat jinx straight at Thicknesse who dropped his wand and clawed at the front of his robes apparently in awful discomfort .Did I mention Im resigning ?Youre joking Perce !shouted Fred as the Death Eater he was battling collapsed under the weight of three separate Stunning Spells .Thicknesse had fallen to the ground with tiny spikes erupting all over him he seemed to be turning into some form of sea urchin .Fred looked at Percy with glee .You actually are joking Perce .I dont think Ive heard you joke since you were The air exploded .They had been grouped together Harry Ron Hermione Fred and Percy the two Death Eaters at their feet one Stunned the other Transfigured and in that fragment of a moment when danger seemed temporarily at bay the world was rent apart .Harry felt himself flying through the air and all he could do was hold as tightly as possible to that thin stick of wood that was his one and only weapon and shield his head in his arms He heard the screams and yells of his companions without a hope of knowing what had happened to them And then the world resolved itself into pain and semidarkness He was half buried in the wreckage of a corridor that had been subjected to a terrible attack .Cold air told him that the side of the castle had been blown away and hot stickiness on his cheek told him that he was bleeding copiously .Then he heard a terrible cry that pulled at his insides that expressed agony of a kind neither flame nor curse could cause and he stood up swaying more frightened than he had been that day more frightened perhaps than he had been in his life .And Hermione was struggling to her feet in the wreckage and three redheaded men were grouped on the ground where the wall had blasted apart .Harry grabbed Hermione s hand as they staggered and stumbled over stone and wood .No no no !someone was shouting .No !Fred !No !And Percy was shaking his brother and Ron was kneeling beside them and Freds eyes stared without seeing the ghost of his last laugh still etched upon his face .THE ELDER WAND The world had ended so why had the battle not ceased the castle fallen silent in horror and every combatant laid down their arms ?Harrys mind was in free fall spinning out of control unable to grasp the impossibility because Fred Weasley could not be dead the evidence of all his senses must be lying And then a body fell past the hole blown into the side of the school and curses flew in at them from the darkness hitting the wall behind their heads .Get down !Harry shouted as more curses flew through the night He and Ron had both grabbed Hermione and pulled her to the floor but Percy lay across Freds body shielding it from further harm and when Harry shouted Percy come on weve got to move !he shook his head .Percy !Harry saw tear tracks streaking the grime coating Rons face as he seized his elder brothers shoulders and pulled but Percy would not budge .Percy you cant do anything for him !Were going to Hermione screamed and Harry turning did not need to ask why .A monstrous spider the size of a small car was trying to climb through the huge hole in the wall One of Aragogs descendants had joined the fight .Ron and Harry shouted together their spells collided and the monster was blown backward its legs jerking horribly and vanished into the darkness .It brought friends !Harry called to the others glancing over the edge of the castle through the hole in the wall the curses had blasted More giant spiders were climbing the side of the building liberated from the Forbidden Forest into which the Death Eaters must have penetrated .Harry fired Stunning Spells down upon them knocking the lead monster into its fellows so that they rolled back down the building and out of sight .Then more curses came soaring over Harrys head so close he felt the force of them blow his hair .Lets move NOW !Pushing Hermione ahead of him with Ron Harry stooped to seize Freds body under the armpits .Percy realizing what Harry was trying to do stopped clinging to the body and helped together crouching low to avoid the curses flying at them from the grounds they hauled Fred out of the way .Here said Harry and they placed him in a niche where a suit of armor had stood earlier .He could not bear to look at Fred a second longer than he had to and after making sure that the body was well hidden he took off after Ron and Hermione .Malfoy and Goyle had vanished but at the end of the corridor which was now full of dust and falling masonry glass long gone from the windows he saw many people running backward and forward whether friends or foes he could not tell .Rounding the corner Percy let out a bulllike roar ROOKWOOD !and sprinted off in the direction of a tall man who was pursuing a couple of students .Harry in here !Hermione screamed .She had pulled Ron behind a tapestry They seemed to be wrestling together and for one mad second Harry thought that they were embracing again then he saw that Hermione was trying to restrain Ron to stop him running after Percy .Listen to me LISTEN ROM I wanna help I wanna kill Death Eaters His face was contorted smeared with dust and smoke and he was shaking with rage and grief .Ron were the only ones who can end it !Please Ron we need the snake weve got to kill the snake !said Hermione .But Harry knew how Ron felt Pursuing another Horcrux could not bring the satisfaction of revenge he too wanted to fight to punish them the people who had killed Fred and he wanted to find the other Weasleys and above all make sure make quite sure that Ginny was not but he could not permit that idea to form in his mind We will fight !Hermione said .Well have to to reach the snake !But lets not lose sight now of what were supposed to be ddoing !Were the only ones who can end it !She was crying too and she wiped her face on her torn and singed sleeve as she spoke but she took great heaving breaths to calm herself as still keeping a tight hold on Ron she turned to Harry .You need to find out where Voldemort is because hell have the snake with him wont he ?Do it Harry look inside him !Why was it so easy ?Because his scar had been burning for hours yearning to show him Voldemorts thoughts ?He closed his eyes on her command and at once the screams and the bangs and all the discordant sounds of the battle were drowned until they became distant as though he stood far far away from them .He was standing in the middle of a desolate but strangely familiar room with peeling paper on the walls and all the windows boarded except for one .The sounds of the assault on the castle were muffled and distant .The single unblocked window revealed distant bursts of light where the castle stood but inside the room it was dark except for a solitary oil lamp .He was rolling his wand between his fingers watching it his thoughts on the room in the castle the secret room only he had ever found the room like the Chamber that you had to be clever and cunning and inquisitive to discover .He was confident that the boy would not find the diadem .although Dumbledores puppet had come much farther than he had ever expected .too far .My Lord said a voice desperate and cracked .He turned There was Lucius Malfoy sitting in the darkest corner ragged and still bearing the marks of the punishment he had received after the boys last escape .One of his eyes remained closed and puffy .My Lord .please .my son .If your son is dead Lucius it is not my fault .He did not come and join me like the rest of the Slytherins .Perhaps he has decided to befriend Harry Potter ?No never whispered Malfoy .You must hope not .Arent arent you afraid my Lord that Potter might die at another hand but yours ?asked Malfoy his voice shaking .Wouldnt it be .forgive me .more prudent to call off this battle enter the castle and seek him yyourself ?Do not pretend Lucius .You wish the battle to cease so that you can discover what has happened to your son .And I do not need to seek Potter .Before the night is out Potter will have come to find me .Voldemort dropped his gaze once more to the wand in his fingers .It troubled him .and those things that troubled Lord Voldemort needed to be rearranged .Go and fetch Snape .Snape mmy Lord ?Snape .Now .I need him .There is a service I require from him .Go .Frightened stumbling a little through the gloom Lucius left the room .Voldemort continued to stand there twirling the wand between his fingers staring at it .It is the only way Nagini he whispered and he looked around and there was the great thick snake now suspended in midair twisting gracefully within the enchanted protected space he had made for her a starry transparent sphere somewhere between glittering cage and tank .With a gasp Harry pulled back and opened his eyes at the same moment his ears were assaulted with the screeches and cries the smashes and bangs of battle .Hes in the Shrieking Shack .The snakes with him its got some sort of magical protection around it .Hes just sent Lucius Malfoy to find Snape .Voldemorts sitting in the Shrieking Shack ?said Hermione outraged .Hes not hes not even fighting ?He doesnt think he needs to fight said Harry .He thinks Im going to go to him .But why ?He knows Im after Horcruxes hes keeping Nagini close beside him obviously Im going to have to go to him to get near the thing Right said Ron squaring his shoulders .So you cant go thats what he wants what hes expecting .You stay here and look after Hermione and Ill go and get it Harry cut across Ron .You two stay here Ill go under the Cloak and Ill be back as soon as I No said Hermione it makes much more sense if I take the Cloak and Dont even think about it Ron snarled at her .Before Hermione could get farther than Ron Im just as capable the tapestry at the top of the staircase on which they stood was ripped open .POTTER !Two masked Death Eaters stood there but even before their wands were fully raised Hermione shouted Glisseo The stairs beneath their feet flattened into a chute and she Harry and Ron hurtled down it unable to control their speed but so fast that the Death Eaters Stunning Spells flew far over their heads .They shot through the concealing tapestry at the bottom and spun onto the floor hitting the opposite wall .Duro cried Hermione pointing her wand at the tapestry and there were two loud sickening crunches as the tapestry turned to stone and the Death Eaters pursuing them crumpled against it .Get back !shouted Ron and he Harry and Hermione flattened themselves against a door as a herd of galloping desks thundered past shepherded by a sprinting Professor McGonagall .She appeared not to notice them Her hair had come down and there was a gash on her cheek .As she turned the corner they heard her scream CHARGE !Harry you get the Cloak on said Hermione .Never mind us But he threw it over all three of them large though they were he doubted anyone would see their disembodied feet through the dust that clogged the air the falling stone the shimmer of spells .They ran down the next staircase and found themselves in a corridor full of duelers .The portraits on either side of the fighters were crammed with figures screaming advice and encouragement while Death Eaters both masked and unmasked dueled students and teachers .Dean had won himself a wand for he was facetoface with Dolohov Parvati with Travers .Harry Ron and Hermione raised their wands at once ready to strike but the duelers were weaving and darting around so much that there was a strong likelihood of hurting one of their own side if they cast curses .Even as they stood braced looking for the opportunity to act there came a great Wheeeeeeeeeeee and looking up Harry saw Peeves zooming over them dropping Snargaluff pods down onto the Death Eaters whose heads were suddenly engulfed in wriggling green tubers like fat worms .Argh !A fistful of tubers had hit the Cloak over Rons head the slimy green roots were suspended improbably in midair as Ron tried to shake them loose .Someones invisible there !shouted a masked Death Eater pointing .Dean made the most of the Death Eaters momentary distraction knocking him out with a Stunning Spell Dolohov attempted to retaliate and Parvati shot a BodyBind Curse at him .LETS GO !Harry yelled and he Ron and Hermione gathered the Cloak tightly around themselves and pelted heads down through the midst of the fighters slipping a little in pools of Snargaluff juice toward the top of the marble staircase into the entrance hall .Im Draco Malfoy Im Draco Im on your side !Draco was on the upper landing pleading with another masked Death Eater .Harry Stunned the Death Eater as they passed Malfoy looked around beaming for his savior and Ron punched him from under the Cloak .Malfoy fell backward on top of the Death Eater his mouth bleeding utterly bemused .And thats the second time weve saved your life tonight you twofaced bastard !Ron yelled .There were more duelers all over the stairs and in the hall Death Eaters everywhere Harry looked Yaxley close to the front doors in combat with Flitwick a masked Death Eater dueling Kingsley right beside them .Students ran in every direction some carrying or dragging injured friends .Harry directed a Stunning Spell toward the masked Death Eater it missed but nearly hit Neville who had emerged from nowhere brandishing armfuls of Venomous Tentacula which looped itself happily around the nearest Death Eater and began reeling him in .Harry Ron and Hermione sped down the marble staircase Glass shattered to their left and the Slytherin hourglass that had recorded House points spilled its emeralds everywhere so that people slipped and staggered as they ran .Two bodies fell from the balcony overhead as they reached the ground and a gray blur that Harry took for an animal sped four legged across the hall to sink its teeth into one of the fallen .NO !shrieked Hermione and with a deafening blast from her wand Fenrir Greyback was thrown backward from the feebly stirring body of Lavender Brown .He hit the marble banisters and struggled to return to his feet .Then with a bright white flash and a crack a crystal ball fell on top of his head and he crumpled to the ground and did not move .I have more !shrieked Professor Trelawney from over the banisters .More for any who want them !Here And with a movement like a tennis serve she heaved another enormous crystal sphere from her bag waved her wand through the air and caused the ball to speed across the hall and smash through a window .At the same moment the heavy wooden front doors burst open and more of the gigantic spiders forced their way into the entrance hall .Screams of terror rent the air The fighters scattered Death Eaters and Hogwartians alike and red and green jets of light flew into the midst of the oncoming monsters which shuddered and reared more terrifying than ever .How do we get out ?yelled Ron over all the screaming but before either Harry or Hermione could answer they were bowled aside Hagrid had come thundering down the stairs brandishing his flowery pink umbrella .Dont hurt em dont hurt em !he yelled .HAGRID NO !Harry forgot everything else He sprinted out from under the Cloak running bent double to avoid the curses illuminating the whole hall .HAGRID COME BACK !But he was not even halfway to Hagrid when he saw it happen Hagrid vanished amongst the spiders and with a great scurrying a foul swarming movement they retreated under the onslaught of spells Hagrid buried in their midst .HAGRID !Harry heard someone calling his own name whether friend or foe he did not care He was sprinting down the front steps into the dark grounds and the spiders were swarming away with their prey and he could see nothing of Hagrid at all .HAGRID !He thought he could make out an enormous arm waving from the midst of the spider swarm but as he made to chase after them his way was impeded by a monumental foot which swung down out of the darkness and made the ground on which he stood shudder .He looked up A giant stood before him twenty feet high its head hidden in shadow nothing but its treelike hairy shins illuminated by light from the castle doors .With one brutal fluid movement it smashed a massive fist through an upper window and glass rained down upon Harry forcing him back under the shelter of the doorway .Oh my !shrieked Hermione as she and Ron caught up with Harry and gazed upward at the giant now trying to seize people through the window above .DONT !Ron yelled grabbing Hermiones hand as she raised her wand .Stun him and hell crush half the castle HAGGER ?Grawp came lurching around the corner of the castle only now did Harry realize that Grawp was indeed an undersized giant .The gargantuan monster trying to crush people on the upper floors looked around and let out a roar .The stone steps trembled as he stomped toward his smaller kin and Grawp s lopsided mouth fell open showing yellow halfbrick sized teeth and then they launched themselves at each other with the savagery of lions .RUN !Harry roared the night was full of hideous yells and blows as the giants wrestled and he seized Hermiones hand and tore down the steps into the grounds Ron bringing up the rear .Harry had not lost hope of finding and saving Hagrid he ran so fast that they were halfway toward the forest before they were brought up short again .The air around them had frozen Harrys breath caught and solidified in his chest .Shapes moved out in the darkness swirling figures of concentrated blackness moving in a great wave toward the castle their faces hooded and their breath rattling .Ron and Hermione closed in beside him as the sounds of fighting behind them grew suddenly muted deadened because a silence only dementors could bring was falling thickly through the night and Fred was gone and Hagrid was surely dying or already dead .Come on Harry !said Hermiones voice from a very long way away .Patronuses Harry come on !He raised his wand but a dull hopelessness was spreading through him How many more lay dead that he did not yet know about he felt as though his soul had already half left his body .HARRY COME ON !screamed Hermione .A hundred dementors were advancing gliding toward them sucking their way closer to Harrys despair which was like a promise of a feast .He saw Rons silver terrier burst into the air flicker feebly and expire he saw Hermiones otter twist in midair and fade and his own wand trembled in his hand and he almost welcomed the oncoming oblivion the promise of nothing of no feeling .And then a silver hare a boar and a fox soared past Harry Ron and Hermiones heads The dementors fell back before the creatures approach .Three more people had arrived out of the darkness to stand beside them their wands outstretched continuing to cast their Patronuses Luna Ernie and Seamus .Thats right said Luna encouragingly as if they were back in the Room of Requirement and this was simply spell practice for the D .A .Thats right Harry .come on think of something happy .Something happy ?he said his voice cracked .Were all still here she whispered were still fighting .Come on now .There was a silver spark then a wavering light and then with the greatest effort it had ever cost him the stag burst from the end of Harrys wand .It cantered forward and now the dementors scattered in earnest and immediately the night was mild again but the sounds of the surrounding battle were loud in his ears .Cant thank you enough said Ron shakily turning to Luna Ernie and Seamus you just saved With a roar and an earthquaking tremor another giant came lurching out of the darkness from the direction of the forest brandishing a club taller than any of them .RUN !Harry shouted again but the others needed no telling They all scattered and not a second too soon for next moment the creatures vast foot had fallen exactly where they had been standing .Harry looked round Ron and Hermione were following him but the other three had vanished back into the battle .Lets get out of range !yelled Ron as the giant swung its club again and its bellows echoed through the night across the grounds where bursts of red and green light continued to illuminate the darkness .The Whomping Willow said Harry go !Somehow he walled it all up in his mind crammed it into a small space into which he could not look now Thoughts of Fred and Hagrid and his terror for all the people he loved scattered in and outside the castle must all wait because they had to run had to reach the snake and Voldemort because that was as Hermione said the only way to end it He sprinted half believing he could outdistance death itself ignoring the jets of light flying in the darkness all around him and the sound of the lake crashing like the sea and the creaking of the Forbidden Forest though the night was windless through grounds that seemed themselves to have risen in rebellion he ran faster than he had ever moved in his life and it was he who saw the great tree first the Willow that protected the secret at its roots with whiplike slashing branches .Panting and gasping Harry slowed down skirting the Willows swiping branches peering through the darkness toward its thick trunk trying to see the single knot in the bark of the old tree that would paralyze it .Ron and Hermione caught up Hermione so out of breath she could not speak .How howre we going to get in ?panted Ron .I can see the place if we just had Crookshanks again Crookshanks ?wheezed Hermione bent double clutching her chest .Are you a wizard or what ?Oh right yeah Ron looked around then directed his wand at a twig on the ground and said Wingardium Leviosal The twig flew up from the ground spun through the air as if caught by a gust of wind then zoomed directly at the trunk through the Willows ominously swaying branches .It jabbed at a place near the roots and at once the writhing tree became still .Perfect !panted Hermione .Wait .For one teetering second while the crashes and booms of the battle filled the air Harry hesitated .Voldemort wanted him to do this wanted him to come .Was he leading Ron and Hermione into a trap ?But then the reality seemed to close upon him cruel and plain The only way forward was to kill the snake and the snake was where Voldemort was and Voldemort was at the end of this tunnel .Harry were coming just get in there !said Ron pushing him forward .Harry wriggled into the earthy passage hidden in the trees roots .It was a much tighter squeeze than it had been the last time they had entered it .The tunnel was lowceilinged They had had to double up to move through it nearly four years previously now there was nothing for it but to crawl .Harry went first his wand illuminated expecting at any moment to meet barriers but none came .They moved in silence Harrys gaze fixed upon the swinging beam of the wand held in his fist .At last the tunnel began to slope upward and Harry saw a sliver of light ahead .Hermione tugged at his ankle .The Cloak !she whispered .Put the Cloak on !He groped behind him and she forced the bundle of slippery cloth into his free hand .With difficulty he dragged it over himself murmured Nox extinguishing his wandlight and continued on his hands and knees as silently as possible all his senses straining expecting every second to be discovered to hear a cold clear voice see a flash of green light .And then he heard voices coming from the room directly ahead of them only slightly muffled by the fact that the opening at the end of the tunnel had been blocked up by what looked like an old crate .Hardly daring to breathe Harry edged right up to the opening and peered through a tiny gap left between crate and wall .The room beyond was dimly lit but he could see Nagini swirling and coiling like a serpent underwater safe in her enchanted starry sphere which floated unsupported in midair .He could see the edge of a table and a longfingered white hand toying with a wand .Then Snape spoke and Harrys heart lurched Snape was inches away from where he crouched hidden . .my Lord their resistance is crumbling and it is doing so without your help said Voldemort in his high clear voice .Skilled wizard though you are Severus I do not think you will make much difference now .We are almost there .almost .Let me find the boy .Let me bring you Potter .I know I can find him my Lord .Please .Snape strode past the gap and Harry drew back a little keeping his eyes fixed upon Nagini wondering whether there was any spell that might penetrate the protection surrounding her but he could not think of anything .One failed attempt and he would give away his position .Voldemort stood up .Harry could see him now see the red eyes the flattened serpentine face the pallor of him gleaming slightly in the semidarkness .I have a problem Severus said Voldemort softly .My Lord ?said Snape .Voldemort raised the Elder Wand holding it as delicately and precisely as a conductors baton .Why doesnt it work for me Severus ?In the silence Harry imagined he could hear the snake hissing slightly as it coiled and uncoiled or was it Voldemorts sibilant sigh lingering on the air ?My my Lord ?said Snape blankly .I do not understand .You you have performed extraordinary magic with that wand .No said Voldemort .I have performed my usual magic .I am extraordinary but this wand .no .It has not revealed the wonders it has promised .I feel no difference between this wand and the one I procured from Ollivander all those years ago .Voldemorts tone was musing calm but Harrys scar had begun to throb and pulse Pain was building in his forehead and he could feel that controlled sense of fury building inside Voldemort .No difference said Voldemort again .Snape did not speak .Harry could not see his face He wondered whether Snape sensed danger was trying to find the right words to reassure his master .Voldemort started to move around the room Harry lost sight of him for seconds as he prowled speaking in that same measured voice while the pain and fury mounted in Harry .I have thought long and hard Severus .Do you know why I have called you back from the battle ?And for a moment Harry saw Snape s profile His eyes were fixed upon the coiling snake in its enchanted cage .No my Lord but I beg you will let me return .Let me find Potter .You sound like Lucius .Neither of you understands Potter as I do .He does not need finding .Potter will come to me .I know his weakness you see his one great flaw .He will hate watching the others struck down around him knowing that it is for him that it happens .He will want to stop it at any cost .He will come .But my Lord he might be killed accidentally by one other than yourself My instructions to my Death Eaters have been perfectly clear .Capture Potter .Kill his friends the more the better but do not kill him .But it is of you that I wished to speak Severus not Harry Potter .You have been very valuable to me .Very valuable .My Lord knows I seek only to serve him .But let me go and find the boy my Lord .Let me bring him to you .I know I can I have told you no !said Voldemort and Harry caught the glint of red in his eyes as he turned again and the swishing of his cloak was like the slithering of a snake and he felt Voldemorts impatience in his burning scar .My concern at the moment Severus is what will happen when I finally meet the boy !My Lord there can be no question surely ?but there is a question Severus .There is .Voldemort halted and Harry could see him plainly again as he slid the Elder Wand through his white fingers staring at Snape .Why did both the wands I have used fail when directed at Harry Potter ?I I cannot answer that my Lord .Cant you ?The stab of rage felt like a spike driven through Harrys head He forced his own fist into his mouth to stop himself from crying out in pain .He closed his eyes and suddenly he was Voldemort looking into Snapes pale face .My wand of yew did everything of which I asked it Severus except to kill Harry Potter .Twice it failed .Ollivander told me under torture of the twin cores told me to take anothers wand .I did so but Luciuss wand shattered upon meeting Potters .I I have no explanation my Lord .Snape was not looking at Voldemort now .His dark eyes were still fixed upon the coiling serpent in its protective sphere .I sought a third wand Severus .The Elder Wand the Wand of Destiny the Deathstick .I took it from its previous master .I took it from the grave of Albus Dumbledore .And now Snape looked at Voldemort and Snapes face was like a death mask .It was marble white and so still that when he spoke it was a shock to see that anyone lived behind the blank eyes .My Lord let me go to the boy All this long night when I am on the brink of victory I have sat here said Voldemort his voice barely louder than a whisper wondering wondering why the Elder Wand refuses to be what it ought to be refuses to perform as legend says it must perform for its rightful owner .and I think I have the answer .Snape did not speak .Perhaps you already know it ?You are a clever man after all Severus .You have been a good and faithful servant and I regret what must happen .My Lord The Elder Wand cannot serve me properly Severus because I am not its true master .The Elder Wand belongs to the wizard who killed its last owner .You killed Albus Dumbledore .While you live Severus the Elder Wand cannot be truly mine .My Lord !Snape protested raising his wand .It cannot be any other way said Voldemort .I must master the wand Severus .Master the wand and I master Potter at last .And Voldemort swiped the air with the Elder Wand .It did nothing to Snape who for a split second seemed to think he had been reprieved But then Voldemorts intention became clear .The snakes cage was rolling through the air and before Snape could do anything more than yell it had encased him head and shoulders and Voldemort spoke in Parseltongue .Kill .There was a terrible scream .Harry saw Snape s face losing the little color it had left it whitened as his black eyes widened as the snakes fangs pierced his neck as he failed to push the enchanted cage off himself as his knees gave way and he fell to the floor .I regret it said Voldemort coldly .He turned away there was no sadness in him no remorse .It was time to leave this shack and take charge with a wand that would now do his full bidding .He pointed it at the starry cage holding the snake which drifted upward off Snape who fell sideways onto the floor blood gushing from the wounds in his neck .Voldemort swept from the room without a backward glance and the great serpent floated after him in its huge protective sphere .Back in the tunnel and his own mind Harry opened his eyes He had drawn blood biting down on his knuckles in the effort not to shout out .Now he was looking through the tiny crack between crate and wall watching a foot in a black boot trembling on the floor .Harry !breathed Hermione behind him but he had already pointed his wand at the crate blocking his view .It lifted an inch into the air and drifted sideways silently .As quietly as he could he pulled himself up into the room .He did not know why he was doing it why he was approaching the dying man He did not know what he felt as he saw Snapes white face and the fingers trying to staunch the bloody wound at his neck .Harry took off the Invisibility Cloak and looked down upon the man he hated whose widening black eyes found Harry as he tried to speak .Harry bent over him and Snape seized the front of his robes and pulled him close .A terrible rasping gurgling noise issued from Snapes throat .Take .it .Take .it .Something more than blood was leaking from Snape .Silvery blue neither gas nor liquid it gushed from his mouth and his ears and his eyes and Harry knew what it was but did not know what to do A flask conjured from thin air was thrust into his shaking hands by Hermione .Harry lifted the silvery substance into it with his wand .When the flask was full to the brim and Snape looked as though there was no blood left in him his grip on Harrys robes slackened .Look .at .me .he whispered .The green eyes found the black but after a second something in the depths of the dark pair seemed to vanish leaving them fixed blank and empty .The hand holding Harry thudded to the floor and Snape moved no more .THE PRINCES TALE Harry remained kneeling at Snapes side simply staring down at him until quite suddenly a high cold voice spoke so close to them that Harry jumped to his feet the flask gripped tightly in his hands thinking that Voldemort had reentered the room .Voldemort s voice reverberated from the walls and floor and Harry realized that he was talking to Hogwarts and to all the surrounding area that the residents of Hogsmeade and all those still fighting in the castle would hear him as clearly as if he stood beside them his breath on the back of their necks a deathblow away .You have fought said the high cold voice valiantly .Lord Voldemort knows how to value bravery .Yet you have sustained heavy losses .If you continue to resist me you will all die one by one .I do not wish this to happen .Every drop of magical blood spilled is a loss and a waste .Lord Voldemort is merciful .I command my forces to retreat immediately .You have one hour .Dispose of your dead with dignity .Treat your injured .I speak now Harry Potter directly to you .You have permitted your friends to die for you rather than face me yourself .I shall wait for one hour in the Forbidden Forest .If at the end of that hour you have not come to me have not given yourself up then battle recommences .This time I shall enter the fray myself Harry Potter and I shall find you and I shall punish every last man woman and child who has tried to conceal you from me .One hour .Both Ron and Hermione shook their heads frantically looking at Harry .Dont listen to him said Ron .Itll be all right said Hermione wildly .Lets lets get back to the castle if hes gone to the forest well need to think of a new plan She glanced at Snapes body then hurried back to the tunnel entrance .Ron followed her .Harry gathered up the Invisibility Cloak then looked down at Snape .He did not know what to feel except shock at the way Snape had been killed and the reason for which it had been done .They crawled back through the tunnel none of them talking and Harry wondered whether Ron and Hermione could still hear Voldemort ringing in their heads as he could .You have permitted your friends to die for you rather than face me yourself I shall wait for one hour in the Forbidden Forest .One hour .Small bundles seemed to litter the lawn at the front of the castle .It could only be an hour or so from dawn yet it was pitchblack .The three of them hurried toward the stone steps .A lone clog the size of a small boat lay abandoned in front of them .There was no other sign of Grawp or of his attacker .The castle was unnaturally silent .There were no flashes of light now no bangs or screams or shouts .The flagstones of the deserted entrance hall were stained with blood .Emeralds were still scattered all over the floor along with pieces of marble and splintered wood .Part of the banisters had been blown away .Where is everyone ?whispered Hermione .Ron led the way to the Great Hall .Harry stopped in the doorway .The House tables were gone and the room was crowded .The survivors stood in groups their arms around each others necks .The injured were being treated upon the raised platform by Madam Pomfrey and a group of helpers .Firenze was amongst the injured his flank poured blood and he shook where he lay unable to stand .The dead lay in a row in the middle of the Hall .Harry could not see Freds body because his family surrounded him .George was kneeling at his head Mrs Weasley was lying across Freds chest her body shaking Mr Weasley stroking her hair while tears cascaded down his cheeks .Without a word to Harry Ron and Hermione walked away .Harry saw Hermione approach Ginny whose face was swollen and blotchy and hug her .Ron joined Bill Fleur and Percy who flung an arm around Rons shoulders .As Ginny and Hermione moved closer to the rest of the family Harry had a clear view of the bodies lying next to Fred Remus and Tonks pale and still and peacefullooking apparently asleep beneath the dark enchanted ceiling .The Great Hall seemed to fly away become smaller shrink as Harry reeled backward from the doorway .He could not draw breath .He could not bear to look at any of the other bodies to see who else had died for him .He could not bear to join the Weasleys could not look into their eyes when if he had given himself up in the first place Fred might never have died .He turned away and ran up the marble staircase .Lupin Tonks .He yearned not to feel .He wished he could rip out his heart his innards everything that was screaming inside him .The castle was completely empty even the ghosts seemed to have joined the mass mourning in the Great Hall .Harry ran without stopping clutching the crystal flask of Snapes last thoughts and he did not slow down until he reached the stone gargoyle guarding the headmasters office .Password ?Dumbledore !said Harry without thinking because it was he whom he yearned to see and to his surprise the gargoyle slid aside revealing the spiral staircase behind .But when Harry burst into the circular office he found a change .The portraits that hung all around the walls were empty .Not a single headmaster or headmistress remained to see him all it seemed had flitted away charging through the paintings that lined the castle so that they could have a clear view of what was going on .Harry glanced hopelessly at Dumbledores deserted frame which hung directly behind the headmasters chair then turned his back on it .The stone Pensieve lay in the cabinet where it had always been Harry heaved it onto the desk and poured Snapes memories into the wide basin with its runic markings around the edge .To escape into someone elses head would be a blessed relief .Nothing that even Snape had left him could be worse than his own thoughts .The memories swirled silver white and strange and without hesitating with a feeling of reckless abandonment as though this would assuage his torturing grief Harry dived .He fell headlong into sunlight and his feet found warm ground .When he straightened up he saw that he was in a nearly deserted playground .A single huge chimney dominated the distant skyline .Two girls were swinging backward and forward and a skinny boy was watching them from behind a clump of bushes .His black hair was overlong and his clothes were so mismatched that it looked deliberate too short jeans a shabby overlarge coat that might have belonged to a grown man an odd smocklike shirt .Harry moved closer to the boy .Snape looked no more than nine or ten years old sallow small stringy .There was undisguised greed in his thin face as he watched the younger of the two girls swinging higher and higher than her sister .Lily dont do it !shrieked the elder of the two .But the girl had let go of the swing at the very height of its arc and flown into the air quite literally flown launched herself skyward with a great shout of laughter and instead of crumpling on the playground asphalt she soared like a trapeze artist through the air staying up far too long landing far too lightly .Mummy told you not to !Petunia stopped her swing by dragging the heels of her sandals on the ground making a crunching grinding sound then leapt up hands on hips .Mummy said you werent allowed Lily !But Im fine said Lily still giggling .Tuney look at this .Watch what I can do .Petunia glanced around .The playground was deserted apart from themselves and though the girls did not know it Snape .Lily had picked up a fallen flower from the bush behind which Snape lurked .Petunia advanced evidently torn between curiosity and disapproval .Lily waited until Petunia was near enough to have a clear view then held out her palm .The flower sat there opening and closing its petals like some bizarre manylipped oyster .Stop it !shrieked Petunia .Its not hurting you said Lily but she closed her hand on the blossom and threw it back to the ground .Its not right said Petunia but her eyes had followed the flowers flight to the ground and lingered upon it .How do you do it ?she added and there was definite longing in her voice .Its obvious isnt it ?Snape could no longer contain himself but had jumped out from behind the bushes .Petunia shrieked and ran backward toward the swings but Lily though clearly startled remained where she was .Snape seemed to regret his appearance .A dull flush of color mounted the sallow cheeks as he looked at Lily .Whats obvious ?asked Lily .Snape had an air of nervous excitement .With a glance at the distant Petunia now hovering beside the swings he lowered his voice and said I know what you are .What do you mean ?Youre .youre a witch whispered Snape .She looked affronted .Thats not a very nice thing to say to somebody !She turned nose in the air and marched off toward her sister .No !said Snape .He was highly colored now and Harry wondered why he did not take off the ridiculously large coat unless it was because he did not want to reveal the smock beneath it .He flapped after the girls looking ludicrously batlike like his older self .The sisters considered him united in disapproval both holding on to one of the swing poles as though it was the safe place in tag .You are said Snape to Lily .You are a witch .Ive been watching you for a while .But theres nothing wrong with that .My mums one and Im a wizard .Petunias laugh was like cold water .Wizard !she shrieked her courage returned now that she had recovered from the shock of his unexpected appearance .I know who you are .Youre that Snape boy !They live down Spinners End by the river she told Lily and it was evident from her tone that she considered the address a poor recommendation .Why have you been spying on us ?Havent been spying said Snape hot and uncomfortable and dirtyhaired in the bright sunlight .Wouldnt spy on you anyway he added spitefully youre a Muggle .Though Petunia evidently did not understand the word she could hardly mistake the tone .Lily come on were leaving !she said shrilly .Lily obeyed her sister at once glaring at Snape as she left .He stood watching them as they marched through the playground gate and Harry the only one left to observe him recognized Snape s bitter disappointment and understood that Snape had been planning this moment for a while and that it had all gone wrong .The scene dissolved and before Harry knew it re formed around him .He was now in a small thicket of trees .He could see a sunlit river glittering through their trunks .The shadows cast by the trees made a basin of cool green shade .Two children sat facing each other crosslegged on the ground .Snape had removed his coat now his odd smock looked less peculiar in the half light . .and the Ministry can punish you if you do magic outside school you get letters .But I have done magic outside school !Were all right .We havent got wands yet .They let you off when youre a kid and you cant help it .But once youre eleven he nodded importantly and they start training you then youve got to go careful .There was a little silence .Lily had picked up a fallen twig and twirled it in the air and Harry knew that she was imagining sparks trailing from it .Then she dropped the twig leaned in toward the boy and said It is real isnt it ?Its not a joke ?Petunia says youre lying to me .Petunia says there isnt a Hogwarts .It is real isnt it ?Its real for us said Snape .Not for her .But well get the letter you and me .Really ?whispered Lily .Definitely said Snape and even with his poorly cut hair and his odd clothes he struck an oddly impressive figure sprawled in front of her brimful of confidence in his destiny .And will it really come by owl ?Lily whispered .Normally said Snape .But youre Muggleborn so someone from the school will have to come and explain to your parents .Does it make a difference being Muggleborn ?Snape hesitated .His black eyes eager in the greenish gloom moved over the pale face the dark red hair .No he said .It doesnt make any difference .Good said Lily relaxing It was clear that she had been worrying .Youve got loads of magic said Snape .I saw that .All the time I was watching you .His voice trailed away she was not listening but had stretched out on the leafy ground and was looking up at the canopy of leaves overhead .He watched her as greedily as he had watched her in the playground .How are things at your house ?Lily asked .A little crease appeared between his eyes .Fine he said .Theyre not arguing anymore ?Oh yes theyre arguing said Snape .He picked up a fistful of leaves and began tearing them apart apparently unaware of what he was doing .But it wont be that long and Ill be gone .Doesnt your dad like magic ?He doesnt like anything much said Snape .Severus ?A little smile twisted Snape s mouth when she said his name .Yeah ?Tell me about the dementors again .What dyou want to know about them for ?If I use magic outside school They wouldnt give you to the dementors for that !Dementors are for people who do really bad stuff .They guard the wizard prison Azkaban .Youre not going to end up in Azkaban youre too He turned red again and shredded more leaves .Then a small rustling noise behind Harry made him turn Petunia hiding behind a tree had lost her footing .Tuney !said Lily surprise and welcome in her voice but Snape had jumped to his feet .Whos spying now ?he shouted .What dyou want ?Petunia was breathless alarmed at being caught .Harry could see her struggling for something hurtful to say .What is that youre wearing anyway ?she said pointing at Snapes chest .Your mums blouse ?There was a crack A branch over Petunias head had fallen .Lily screamed The branch caught Petunia on the shoulder and she staggered backward and burst into tears .Tuney !But Petunia was running away .Lily rounded on Snape .Did you make that happen ?No .He looked both defiant and scared .You did !She was backing away from him .You did .You hurt her !No no I didnt !But the lie did not convince Lily After one last burning look she ran from the little thicket off after her sister and Snape looked miserable and confused .And the scene reformed .Harry looked around He was on platform nine and threequarters and Snape stood beside him slightly hunched next to a thin sallowfaced sourlooking woman who greatly resembled him .Snape was staring at a family of four a short distance away .The two girls stood a little apart from their parents .Lily seemed to be pleading with her sister Harry moved closer to listen . .Im sorry Tuney Im sorry !Listen She caught her sisters hand and held tight to it even though Petunia tried to pull it away .Maybe once Im there no listen Tuney !Maybe once Im there Ill be able to go to Professor Dumbledore and persuade him to change his mind !I dont want to go !said Petunia and she dragged her hand back out of her sisters grasp .You think I want to go to some stupid castle and learn to be a a Her pale eyes roved over the platform over the cats mewling in their owners arms over the owls fluttering and hooting at each other in cages over the students some already in their long black robes loading trunks onto the scarlet steam engine or else greeting one another with glad cries after a summer apart .you think I want to be a a freak ?Lilys eyes filled with tears as Petunia succeeded in tugging her hand away .Im not a freak said Lily .Thats a horrible thing to say .Thats where youre going said Petunia with relish .A special school for freaks .You and that Snape boy .weirdos thats what you two are .Its good youre being separated from normal people .Its for our safety .Lily glanced toward her parents who were looking around the platform with an air of wholehearted enjoyment drinking in the scene .Then she looked back at her sister and her voice was low and fierce .You didnt think it was such a freaks school when you wrote to the headmaster and begged him to take you .Petunia turned scarlet .Beg ?I didnt beg !I saw his reply .It was very kind .You shouldnt have read whispered Petunia that was my private how could you ?Lily gave herself away by halfglancing toward where Snape stood nearby .Petunia gasped .That boy found it !You and that boy have been sneaking in my room !No not sneaking Now Lily was on the defensive .Severus saw the envelope and he couldnt believe a Muggle could have contacted Hogwarts thats all !He says there must be wizards working undercover in the postal service who take care of Apparently wizards poke their noses in everywhere !said Petunia now as pale as she had been flushed .Freak .she spat at her sister and she flounced off to where her parents stood .The scene dissolved again .Snape was hurrying along the corridor of the Hogwarts Express as it clattered through the countryside .He had already changed into his school robes had perhaps taken the first opportunity to take off his dreadful Muggle clothes .At last he stopped outside a compartment in which a group of rowdy boys were talking .Hunched in a corner seat beside the window was Lily her face pressed against the windowpane .Snape slid open the compartment door and sat down opposite Lily .She glanced at him and then looked back out of the window .She had been crying .I dont want to talk to you she said in a constricted voice .Why not ?Tuney hhates me .Because we saw that letter from Dumbledore .So what ?She threw him a look of deep dislike .So shes my sister !Shes only a He caught himself quickly Lily too busy trying to wipe her eyes without being noticed did not hear him .But were going !he said unable to suppress the exhilaration in his voice .This is it !Were off to Hogwarts !She nodded mopping her eyes but in spite of herself she half smiled .Youd better be in Slytherin said Snape encouraged that she had brightened a little .Slytherin ?One of the boys sharing the compartment who had shown no interest at all in Lily or Snape until that point looked around at the word and Harry whose attention had been focused entirely on the two beside the window saw his father slight blackhaired like Snape but with that indefinable air of having been wellcaredfor even adored that Snape so conspicuously lacked .Who wants to be in Slytherin ?I think Id leave wouldnt you ?James asked the boy lounging on the seats opposite him and with a jolt Harry realized that it was Sirius .Sirius did not smile .My whole family have been in Slytherin he said .Blimey said James and I thought you seemed all right !Sirius grinned .Maybe Ill break the tradition .Where are you heading if youve got the choice ?James lifted an invisible sword . ‘Gryffindor where dwell the brave at heart !Like my dad .Snape made a small disparaging noise .James turned on him .Got a problem with that ?No said Snape though his slight sneer said otherwise .If youd rather be brawny than brainy Where re you hoping to go seeing as youre neither ?interjected Sirius .James roared with laughter .Lily sat up rather flushed and looked from James to Sirius in dislike .Come on Severus lets find another compartment .Oooooo .James and Sirius imitated her lofty voice James tried to trip Snape as he passed .See ya Snivellus !a voice called as the compartment door slammed .And the scene dissolved once more .Harry was standing right behind Snape as they faced the candlelit House tables lined with rapt faces .Then Professor McGonagall said Evans Lily !He watched his mother walk forward on trembling legs and sit down upon the rickety stool .Professor McGonagall dropped the Sorting Hat onto her head and barely a second after it had touched the dark red hair the hat cried Gryffindoii Harry heard Snape let out a tiny groan .Lily took off the hat handed it back to Professor McGonagall then hurried toward the cheering Gryffindors but as she went she glanced back at Snape and there was a sad little smile on her face .Harry saw Sirius move up the bench to make room for her .She took one look at him seemed to recognize him from the train folded her arms and firmly turned her back on him .The roll call continued .Harry watched Lupin Pettigrew and his father join Lily and Sirius at the Gryffindor table .At last when only a dozen students remained to be sorted Professor McGonagall called Snape .Harry walked with him to the stool watched him place the hat upon his head .Slytherinl cried the Sorting Hat .And Severus Snape moved off to the other side of the Hall away from Lily to where the Slytherins were cheering him to where Lucius Malfoy a prefect badge gleaming upon his chest patted Snape on the back as he sat down beside him .And the scene changed .Lily and Snape were walking across the castle courtyard evidently arguing .Harry hurried to catch up with them to listen in .As he reached them he realized how much taller they both were A few years seemed to have passed since their Sorting . .thought we were supposed to be friends ?Snape was saying .Best friends ?We are Sev but I dont like some of the people youre hanging round with !Im sorry but I detest Avery and Mulciber !Mulciber What do you see in him Sev hes creepy !Dyou know what he tried to do to Mary Macdonald the other day ?Lily had reached a pillar and leaned against it looking up into the thin sallow face .That was nothing said Snape .It was a laugh thats all It was Dark Magic and if you think thats funny What about the stuff Potter and his mates get up to ?demanded Snape .His color rose again as he said it unable it seemed to hold in his resentment .Whats Potter got to do with anything ?said Lily .They sneak out at night .Theres something weird about that Lupin .Where does he keep going ?Hes ill said Lily .They say hes ill Every month at the full moon ?said Snape .I know your theory said Lily and she sounded cold .Why are you so obsessed with them anyway ?Why do you care what theyre doing at night ?Im just trying to show you theyre not as wonderful as everyone seems to think they are .The intensity of his gaze made her blush .They dont use Dark Magic though .She dropped her voice .And youre being really ungrateful .I heard what happened the other night .You went sneaking down that tunnel by the Whomping Willow and James Potter saved you from whatevers down there Snapes whole face contorted and he spluttered Saved ?Saved ?You think he was playing the hero ?He was saving his neck and his friends too !Youre not going to I wont let you Let me ?Let me ?Lilys bright green eyes were slits .Snape backtracked at once .I didnt mean I just dont want to see you made a fool of He fancies you James Potter fancies you !The words seemed wrenched from him against his will .And hes not .everyone thinks .big Quidditch hero Snapes bitterness and dislike were rendering him incoherent and Lilys eyebrows were traveling farther and farther up her forehead .I know James Potters an arrogant toerag she said cutting across Snape .I dont need you to tell me that .But Mulcibers and Averys idea of humor is just evil .Evil Sev .I dont understand how you can be friends with them .Harry doubted that Snape had even heard her strictures on Mulciber and Avery .The moment she had insulted James Potter his whole body had relaxed and as they walked away there was a new spring in Snapes step .And the scene dissolved .Harry watched again as Snape left the Great Hall after sitting his O .W .L .in Defense Against the Dark Arts watched as he wandered away from the castle and strayed inadvertently close to the place beneath the beech tree where James Sirius Lupin and Pettigrew sat together .But Harry kept his distance this time because he knew what happened after James had hoisted Severus into the air and taunted him he knew what had been done and said and it gave him no pleasure to hear it again .He watched as Lily joined the group and went to Snapes defense .Distantly he heard Snape shout at her in his humiliation and his fury the unforgivable word MudbloocL .The scene changed .Im sorry .Im not interested .Im sorry !Save your breath .It was nighttime .Lily who was wearing a dressing gown stood with her arms folded in front of the portrait of the Fat Lady at the entrance to Gryffindor Tower .I only came out because Mary told me you were threatening to sleep here .I was .I would have done .I never meant to call you Mudblood it just Slipped out ?There was no pity in Lilys voice .Its too late .Ive made excuses for you for years .None of my friends can understand why I even talk to you .You and your precious little Death Eater friends you see you dont even deny it !You dont even deny thats what youre all aiming to be !You cant wait to join You Know Who can you ?He opened his mouth but closed it without speaking .I cant pretend anymore .Youve chosen your way Ive chosen mine .No listen I didnt mean to call me Mudblood ?But you call everyone of my birth Mudblood Severus .Why should I be any different ?He struggled on the verge of speech but with a contemptuous look she turned and climbed back through the portrait hole .The corridor dissolved and the scene took a little longer to reform Harry seemed to fly through shifting shapes and colors until his surroundings solidified again and he stood on a hilltop forlorn and cold in the darkness the wind whistling through the branches of a few leafless trees .The adult Snape was panting turning on the spot his wand gripped tightly in his hand waiting for something or for someone .His fear infected Harry too even though he knew that he could not be harmed and he looked over his shoulder wondering what it was that Snape was waiting for Then a blinding jagged jet of white light flew through the air Harry thought of lightning but Snape had dropped to his knees and his wand had flown out of his hand .Dont kill me !That was not my intention .Any sound of Dumbledore Apparating had been drowned by the sound of the wind in the branches .He stood before Snape with his robes whipping around him and his face was illuminated from below in the light cast by his wand .Well Severus ?What message does Lord Voldemort have for me ?No no message Im here on my own account !Snape was wringing his hands He looked a little mad with his straggling black hair flying around him .I I come with a warning no a request please Dumbledore flicked his wand .Though leaves and branches still flew through the night air around them silence fell on the spot where he and Snape faced each other .What request could a Death Eater make of me ?The the prophecy .the prediction .Trelawney Ah yes said Dumbledore .How much did you relay to Lord Voldemort ?Everything everything I heard !said Snape .That is why it is for that reason he thinks it means Lily Evans !The prophecy did not refer to a woman said Dumbledore .It spoke of a boy born at the end of July You know what I mean !He thinks it means her son he is going to hunt her down kill them all If she means so much to you said Dumbledore surely Lord Voldemort will spare her ?Could you not ask for mercy for the mother in exchange for the son ?I have I have asked him You disgust me said Dumbledore and Harry had never heard so much contempt in his voice .Snape seemed to shrink a little .You do not care then about the deaths of her husband and child ?They can die as long as you have what you want ?Snape said nothing but merely looked up at Dumbledore .Hide them all then he croaked .Keep her them safe .Please .And what will you give me in return Severus ?In in return ?Snape gaped at Dumbledore and Harry expected him to protest but after a long moment he said Anything .The hilltop faded and Harry stood in Dumbledores office and something was making a terrible sound like a wounded animal .Snape was slumped forward in a chair and Dumbledore was standing over him looking grim .After a moment or two Snape raised his face and he looked like a man who had lived a hundred years of misery since leaving the wild hilltop .I thought .you were going .to keep her .safe .She and James put their faith in the wrong person said Dumbledore .Rather like you Severus .Werent you hoping that Lord Voldemort would spare her ?Snapes breathing was shallow .Her boy survives said Dumbledore .With a tiny jerk of the head Snape seemed to flick off an irksome fly .Her son lives .He has her eyes precisely her eyes .You remember the shape and color of Lily Evanss eyes I am sure ?DONT !bellowed Snape .Gone .dead .Is this remorse Severus ?I wish .I wish were dead .And what use would that be to anyone ?said Dumbledore coldly .If you loved Lily Evans if you truly loved her then your way forward is clear .Snape seemed to peer through a haze of pain and Dumbledore s words appeared to take a long time to reach him .What what do you mean ?You know how and why she died .Make sure it was not in vain .Help me protect Lilys son .He does not need protection .The Dark Lord has gone The Dark Lord will return and Harry Potter will be in terrible danger when he does .There was a long pause and slowly Snape regained control of himself mastered his own breathing .At last he said Very well .Very well .But never never tell Dumbledore !This must be between us !Swear it !I cannot bear .especially Potters son .I want your word !My word Severus that I shall never reveal the best of you ?Dumbledore sighed looking down into Snapes ferocious anguished face .If you insist .The office dissolved but reformed instantly .Snape was pacing up and down in front of Dumbledore .mediocre arrogant as his father a determined rulebreaker delighted to find himself famous attentionseeking and impertinent You see what you expect to see Severus said Dumbledore without raising his eyes from a copy of Transfiguration Today .Other teachers report that the boy is modest likable and reasonably talented .Personally I find him an engaging child .Dumbledore turned a page and said without looking up Keep an eye on Quirrell wont you ?A whirl of color and now everything darkened and Snape and Dumbledore stood a little apart in the entrance hall while the last stragglers from the Yule Ball passed them on their way to bed .Well ?murmured Dumbledore .Karkaroffs Mark is becoming darker too .He is panicking he fears retribution you know how much help he gave the Ministry after the Dark Lord fell .Snape looked sideways at Dumbledore s crooked nosed profile .Karkaroff intends to flee if the Mark burns .Does he ?said Dumbledore softly as Fleur Delacour and Roger Davies came giggling in from the grounds .And are you tempted to join him ?No said Snape his black eyes on Fleurs and Rogers retreating figures .I am not such a coward .No agreed Dumbledore .You are a braver man by far than Igor Karkaroff .You know I sometimes think we Sort too soon .He walked away leaving Snape looking stricken .And now Harry stood in the headmasters office yet again .It was nighttime and Dumbledore sagged sideways in the thronelike chair behind the desk apparently semiconscious .His right hand dangled over the side blackened and burned .Snape was muttering incantations pointing his wand at the wrist of the hand while with his left hand he tipped a goblet full of thick golden potion down Dumbledore s throat .After a moment or two Dumbledore s eyelids fluttered and opened .Why said Snape without preamble why did you put on that ring ?It carries a curse surely you realized that .Why even touch it ?Marvolo Gaunts ring lay on the desk before Dumbledore .It was cracked the sword of Gryffindor lay beside it .Dumbledore grimaced .I .was a fool .Sorely tempted .Tempted by what ?Dumbledore did not answer .It is a miracle you managed to return here !Snape sounded furious .That ring carried a curse of extraordinary power to contain it is all we can hope for I have trapped the curse in one hand for the time being Dumbledore raised his blackened useless hand and examined it with the expression of one being shown an interesting curio .You have done very well Severus .How long do you think I have ?Dumbledore s tone was conversational he might have been asking for a weather forecast .Snape hesitated and then said I cannot tell .Maybe a year .There is no halting such a spell forever .It will spread eventually it is the sort of curse that strengthens over time .Dumbledore smiled .The news that he had less than a year to live seemed a matter of little or no concern to him .I am fortunate extremely fortunate that I have you Severus .If you had only summoned me a little earlier I might have been able to do more buy you more time !said Snape furiously .He looked down at the broken ring and the sword .Did you think that breaking the ring would break the curse ?Something like that .I was delirious no doubt .said Dumbledore .With an effort he straightened himself in his chair .Well really this makes matters much more straightforward .Snape looked utterly perplexed .Dumbledore smiled .I refer to the plan Lord Voldemort is revolving around me .His plan to have the poor Malfoy boy murder me .Snape sat down in the chair Harry had so often occupied across the desk from Dumbledore .Harry could tell that he wanted to say more on the subject of Dumbledore s cursed hand but the other held it up in polite refusal to discuss the matter further .Scowling Snape said The Dark Lord does not expect Draco to succeed .This is merely punishment for Luciuss recent failures .Slow torture for Dracos parents while they watch him fail and pay the price .In short the boy has had a death sentence pronounced upon him as surely as I have said Dumbledore .Now I should have thought the natural successor to the job once Draco fails is yourself ?There was a short pause .That I think is the Dark Lords plan .Lord Voldemort foresees a moment in the near future when he will not need a spy at Hogwarts ?He believes the school will soon be in his grasp yes .And if it does fall into his grasp said Dumbledore almost it seemed as an aside I have your word that you will do all in your power to protect the students of Hogwarts ?Snape gave a stiff nod .Good .Now then .Your first priority will be to discover what Draco is up to .A frightened teenage boy is a danger to others as well as to himself .Offer him help and guidance he ought to accept he likes you much less since his father has lost favor .Draco blames me he thinks I have usurped Luciuss position .All the same try .I am concerned less for myself than for accidental victims of whatever schemes might occur to the boy .Ultimately of course there is only one thing to be done if we are to save him from Lord Voldemorts wrath .Snape raised his eyebrows and his tone was sardonic as he asked Are you intending to let him kill you ?Certainly not .You must kill me .There was a long silence broken only by an odd clicking noise .Fawkes the phoenix was gnawing a bit of cuttlebone .Would you like me to do it now ?asked Snape his voice heavy with irony .Or would you like a few moments to compose an epitaph ?Oh not quite yet said Dumbledore smiling .I daresay the moment will present itself in due course .Given what has happened tonight he indicated his withered hand we can be sure that it will happen within a year .If you dont mind dying said Snape roughly why not let Draco do it ?That boys soul is not yet so damaged said Dumbledore .I would not have it ripped apart on my account .And my soul Dumbledore ?Mine ?You alone know whether it will harm your soul to help an old man avoid pain and humiliation said Dumbledore .I ask this one great favor of you Severus because death is coming for me as surely as the Chudley Cannons will finish bottom of this years league .I confess I should prefer a quick painless exit to the protracted and messy affair it will be if for instance Greyback is involved I hear Voldemort has recruited him ?Or dear Bellatrix who likes to play with her food before she eats it .His tone was light but his blue eyes pierced Snape as they had frequently pierced Harry as though the soul they discussed was visible to him .At last Snape gave another curt nod .Dumbledore seemed satisfied .Thank you Severus .The office disappeared and now Snape and Dumbledore were strolling together in the deserted castle grounds by twilight .What are you doing with Potter all these evenings you are closeted together ?Snape asked abruptly .Dumbledore looked weary .Why ?You arent trying to give him more detentions Severus ?The boy will soon have spent more time in detention than out .He is his father over again In looks perhaps but his deepest nature is much more like his mothers .I spend time with Harry because I have things to discuss with him information I must give him before it is too late .Information repeated Snape .You trust him .you do not trust me .It is not a question of trust .I have as we both know limited time .It is essential that I give the boy enough information for him to do what he needs to do .And why may I not have the same information ?I prefer not to put all of my secrets in one basket particularly not a basket that spends so much time dangling on the arm of Lord Voldemort .Which I do on your orders !And you do it extremely well .Do not think that I underestimate the constant danger in which you place yourself Severus .To give Voldemort what appears to be valuable information while withholding the essentials is a job I would entrust to nobody but you .Yet you confide much more in a boy who is incapable of Occlumency whose magic is mediocre and who has a direct connection into the Dark Lords mind !Voldemort fears that connection said Dumbledore .Not so long ago he had one small taste of what truly sharing Harrys mind means to him .It was pain such as he has never experienced .He will not try to possess Harry again I am sure of it .Not in that way .I dont understand .Lord Voldemorts soul maimed as it is cannot bear close contact with a soul like Harrys .Like a tongue on frozen steel like flesh in flame Souls ?We were talking of minds !In the case of Harry and Lord Voldemort to speak of one is to speak of the other .Dumbledore glanced around to make sure that they were alone .They were close by the Forbidden Forest now but there was no sign of anyone near them .After you have killed me Severus You refuse to tell me everything yet you expect that small service of me !snarled Snape and real anger flared in the thin face now .You take a great deal for granted Dumbledore !Perhaps I have changed my mind !You gave me your word Severus .And while we are talking about services you owe me I thought you agreed to keep a close eye on our young Slytherin friend ?Snape looked angry mutinous .Dumbledore sighed .Come to my office tonight Severus at eleven and you shall not complain that I have no confidence in you .They were back in Dumbledore s office the windows dark and Fawkes sat silent as Snape sat quite still as Dumbledore walked around him talking .Harry must not know not until the last moment not until it is necessary otherwise how could he have the strength to do what must be done ?But what must he do ?That is between Harry and me .Now listen closely Severus .There will come a time after my death do not argue do not interrupt !There will come a time when Lord Voldemort will seem to fear for the life of his snake .For Nagini ?Snape looked astonished .Precisely .If there comes a time when Lord Voldemort stops sending that snake forth to do his bidding but keeps it safe beside him under magical protection then I think it will be safe to tell Harry .Tell him what ?Dumbledore took a deep breath and closed his eyes .Tell him that on the night Lord Voldemort tried to kill him when Lily cast her own life between them as a shield the Killing Curse rebounded upon Lord Voldemort and a fragment of Voldemorts soul was blasted apart from the whole and latched itself onto the only living soul left in that collapsing building .Part of Lord Voldemort lives inside Harry and it is that which gives him the power of speech with snakes and a connection with Lord Voldemorts mind that he has never understood .And while that fragment of soul unmissed by Voldemort remains attached to and protected by Harry Lord Voldemort cannot die .Harry seemed to be watching the two men from one end of a long tunnel they were so far away from him their voices echoing strangely in his ears .So the boy .the boy must die ?asked Snape quite calmly .And Voldemort himself must do it Severus .That is essential .Another long silence .Then Snape said I thought .all these years .that we were protecting him for her .For Lily .We have protected him because it has been essential to teach him to raise him to let him try his strength said Dumbledore his eyes still tight shut .Meanwhile the connection between them grows ever stronger a parasitic growth Sometimes I have thought he suspects it himself .If I know him he will have arranged matters so that when he does set out to meet his death it will truly mean the end of Voldemort .Dumbledore opened his eyes .Snape looked horrified .You have kept him alive so that he can die at the right moment ?Dont be shocked Severus .How many men and women have you watched die ?Lately only those whom I could not save said Snape .He stood up .You have used me .Meaning ?I have spied for you and lied for you put myself in mortal danger for you .Everything was supposed to be to keep Lily Potters son safe .Now you tell me you have been raising him like a pig for slaughter But this is touching Severus said Dumbledore seriously .Have you grown to care for the boy after all ?For him ?shouted Snape .Expecto Patronuml From the tip of his wand burst the silver doe She landed on the office floor bounded once across the office and soared out of the window .Dumbledore watched her fly away and as her silvery glow faded he turned back to Snape and his eyes were full of tears .After all this time ?Always said Snape .And the scene shifted .Now Harry saw Snape talking to the portrait of Dumbledore behind his desk .You will have to give Voldemort the correct date of Harrys departure from his aunt and uncles said Dumbledore .Not to do so will raise suspicion when Voldemort believes you so well informed .However you must plant the idea of decoys that I think ought to ensure Harrys safety .Try Confunding Mundungus Fletcher .And Severus if you are forced to take part in the chase be sure to act your part convincingly .I am counting upon you to remain in Lord Voldemorts good books as long as possible or Hogwarts will be left to the mercy of the Carrows .Now Snape was head to head with Mundungus in an unfamiliar tavern Mundungus s face looking curiously blank Snape frowning in concentration .You will suggest to the Order of the Phoenix Snape murmured that they use decoys .Polyjuice Potion .Identical Potters .It is the only thing that might work .You will forget that I have suggested this .You will present it as your own idea .You understand ?I understand murmured Mundungus his eyes unfocused .Now Harry was flying alongside Snape on a broomstick through a clear dark night He was accompanied by other hooded Death Eaters and ahead were Lupin and a Harry who was really George . .A Death Eater moved ahead of Snape and raised his wand pointing it directly at Lupins back Sectumsemprcd shouted Snape .But the spell intended for the Death Eaters wand hand missed and hit George instead And next Snape was kneeling in Siriuss old bedroom .Tears were dripping from the end of his hooked nose as he read the old letter from Lily .The second page carried only a few words could ever have been friends with Gellert Grindelwald .I think her minds going personally !Lots of love Lily Snape took the page bearing Lilys signature and her love and tucked it inside his robes .Then he ripped in two the photograph he was also holding so that he kept the part from which Lily laughed throwing the portion showing James and Harry back onto the floor under the chest of drawers .And now Snape stood again in the headmasters study as Phineas Nigellus came hurrying into his portrait .Headmaster !They are camping in the Forest of Dean !The Mudblood Do not use that word !the Granger girl then mentioned the place as she opened her bag and I heard her !Good .Very good !cried the portrait of Dumbledore behind the headmasters chair .Now Severus the sword !Do not forget that it must be taken under conditions of need and valor and he must not know that you give it !If Voldemort should read Harrys mind and see you acting for him I know said Snape curtly .He approached the portrait of Dumbledore and pulled at its side .It swung forward revealing a hidden cavity behind it from which he took the sword of Gryffindor .And you still arent going to tell me why its so important to give Potter the sword ?said Snape as he swung a traveling cloak over his robes .No I dont think so said Dumbledores portrait .He will know what to do with it .And Severus be very careful they may not take kindly to your appearance after George Weasleys mishap Snape turned at the door .Dont worry Dumbledore he said coolly .I have a plan .And Snape left the room .Harry rose up out of the Pensieve and moments later he lay on the carpeted floor in exactly the same room Snape might just have closed the door .THE FOREST AGAIN Finally the truth .Lying with his face pressed into the dusty carpet of the office where he had once thought he was learning the secrets of victory Harry understood at last that he was not supposed to survive .His job was to walk calmly into Deaths welcoming arms .Along the way he was to dispose of Voldemorts remaining links to life so that when at last he flung himself across Voldemorts path and did not raise a wand to defend himself the end would be clean and the job that ought to have been done in Godrics Hollow would be finished Neither would live neither could survive .He felt his heart pounding fiercely in his chest .How strange that in his dread of death it pumped all the harder valiantly keeping him alive .But it would have to stop and soon .Its beats were numbered .How many would there be time for as he rose and walked through the castle for the last time out into the grounds and into the forest ?Terror washed over him as he lay on the floor with that funeral drum pounding inside him .Would it hurt to die ?All those times he had thought that it was about to happen and escaped he had never really thought of the thing itself His will to live had always been so much stronger than his fear of death .Yet it did not occur to him now to try to escape to outrun Voldemort .It was over he knew it and all that was left was the thing itself dying .If he could only have died on that summers night when he had left number four Privet Drive for the last time when the noble phoenixfeather wand had saved him !If he could only have died like Hedwig so quickly he would not have known it had happened !Or if he could have launched himself in front of a wand to save someone he loved .He envied even his parents deaths now .This coldblooded walk to his own destruction would require a different kind of bravery .He felt his fingers trembling slightly and made an effort to control them although no one could see him the portraits on the walls were all empty .Slowly very slowly he sat up and as he did so he felt more alive and more aware of his own living body than ever before .Why had he never appreciated what a miracle he was brain and nerve and bounding heart ?It would all be gone .or at least he would be gone from it .His breath came slow and deep and his mouth and throat were completely dry but so were his eyes .Dumbledores betrayal was almost nothing .Of course there had been a bigger plan Harry had simply been too foolish to see it he realized that now .He had never questioned his own assumption that Dumbledore wanted him alive .Now he saw that his life span had always been determined by how long it took to eliminate all the Horcruxes .Dumbledore had passed the job of destroying them to him and obediently he had continued to chip away at the bonds tying not only Voldemort but himself to life !How neat how elegant not to waste any more lives but to give the dangerous task to the boy who had already been marked for slaughter and whose death would not be a calamity but another blow against Voldemort .And Dumbledore had known that Harry would not duck out that he would keep going to the end even though it was his end because he had taken trouble to get to know him hadnt he ?Dumbledore knew as Voldemort knew that Harry would not let anyone else die for him now that he had discovered it was in his power to stop it .The images of Fred Lupin and Tonks lying dead in the Great Hall forced their way back into his minds eye and for a moment he could hardly breathe Death was impatient .But Dumbledore had overestimated him .He had failed The snake survived .One Horcrux remained to bind Voldemort to the earth even after Harry had been killed .True that would mean an easier job for somebody .He wondered who would do it .Ron and Hermione would know what needed to be done of course .That would have been why Dumbledore wanted him to confide in two others .so that if he fulfilled his true destiny a little early they could carry on .Like rain on a cold window these thoughts pattered against the hard surface of the incontrovertible truth which was that he must die .I must die .It must end .Ron and Hermione seemed a long way away in a far off country he felt as though he had parted from them long ago .There would be no goodbyes and no explanations he was determined of that .This was a journey they could not take together and the attempts they would make to stop him would waste valuable time .He looked down at the battered gold watch he had received on his seventeenth birthday .Nearly half of the hour allotted by Voldemort for his surrender had elapsed .He stood up .His heart was leaping against his ribs like a frantic bird .Perhaps it knew it had little time left perhaps it was determined to fulfill a lifetimes beats before the end .He did not look back as he closed the office door .The castle was empty .He felt ghostly striding through it alone as if he had already died .The portrait people were still missing from their frames the whole place was eerily still as if all its remaining lifeblood were concentrated in the Great Hall where the dead and the mourners were crammed .Harry pulled the Invisibility Cloak over himself and descended through the floors at last walking down the marble staircase into the entrance hall .Perhaps some tiny part of him hoped to be sensed to be seen to be stopped but the Cloak was as ever impenetrable perfect and he reached the front doors easily .Then Neville nearly walked into him .He was one half of a pair that was carrying a body in from the grounds .Harry glanced down and felt another dull blow to his stomach Colin Creevey though underage must have sneaked back just as Malfoy Crabbe and Goyle had done .He was tiny in death .You know what ?I can manage him alone Neville said Oliver Wood and he heaved Colin over his shoulder in a firemans lift and carried him into the Great Hall .Neville leaned against the door frame for a moment and wiped his forehead with the back of his hand .He looked like an old man .Then he set off down the steps again into the darkness to recover more bodies .Harry took one glance back at the entrance of the Great Hall .People were moving around trying to comfort each other drinking kneeling beside the dead but he could not see any of the people he loved no hint of Hermione Ron Ginny or any of the other Weasleys no Luna .He felt he would have given all the time remaining to him for just one last look at them but then would he ever have the strength to stop looking ?It was better like this .He moved down the steps and out into the darkness .It was nearly four in the morning and the deathly stillness of the grounds felt as though they were holding their breath waiting to see whether he could do what he must .Harry moved toward Neville who was bending over another body .Neville .Blimey Harry you nearly gave me heart failure !Harry had pulled off the Cloak The idea had come to him out of nowhere born out of a desire to make absolutely sure .Where are you going alone ?Neville asked suspiciously .Its all part of the plan said Harry .Theres something Ive got to do .Listen Neville Harry !Neville looked suddenly scared .Harry youre not thinking of handing yourself over ?No Harry lied easily .Course not .this is something else .But I might be out of sight for a while .You know Voldemorts snake Neville ?Hes got a huge snake .Calls it Nagini .Ive heard yeah .What about it ?Its got to be killed .Ron and Hermione know that but just in case they The awfulness of that possibility smothered him for a moment made it impossible to keep talking .But he pulled himself together again This was crucial he must be like Dumbledore keep a cool head make sure there were backups others to carry on .Dumbledore had died knowing that three people still knew about the Horcruxes now Neville would take Harrys place There would still be three in the secret .Just in case theyre busy and you get the chance Kill the snake ?Kill the snake Harry repeated .All right Harry .Youre okay are you ?Im fine .Thanks Neville .But Neville seized his wrist as Harry made to move on .Were all going to keep fighting Harry .You know that ?Yeah I The suffocating feeling extinguished the end of the sentence he could not go on .Neville did not seem to find it strange .He patted Harry on the shoulder released him and walked away to look for more bodies .Harry swung the Cloak back over himself and walked on .Someone else was moving not far away stooping over another prone figure on the ground .He was feet away from her when he realized it was Ginny .He stopped in his tracks .She was crouching over a girl who was whispering for her mother .Its all right Ginny was saying .Its okay .Were going to get you inside .But I want to go home whispered the girl .I dont want to fight anymore !I know said Ginny and her voice broke .Its going to be all right .Ripples of cold undulated over Harrys skin .He wanted to shout out to the night he wanted Ginny to know that he was there he wanted her to know where he was going .He wanted to be stopped to be dragged back to be sent back home .But he was home .Hogwarts was the first and best home he had known .He and Voldemort and Snape the abandoned boys had all found home here .Ginny was kneeling beside the injured girl now holding her hand .With a huge effort Harry forced himself on .He thought he saw Ginny look around as he passed and wondered whether she had sensed someone walking nearby but he did not speak and he did not look back .Hagrids hut loomed out of the darkness .There were no lights no sound of Fang scrabbling at the door his bark booming in welcome .All those visits to Hagrid and the gleam of the copper kettle on the fire and rock cakes and giant grubs and his great bearded face and Ron vomiting slugs and Hermione helping him save Norbert .He moved on and now he reached the edge of the forest and he stopped .A swarm of dementors was gliding amongst the trees he could feel their chill and he was not sure he would be able to pass safely through it .He had no strength left for a Patronus .He could no longer control his own trembling .It was not after all so easy to die .Every second he breathed the smell of the grass the cool air on his face was so precious To think that people had years and years time to waste so much time it dragged and he was clinging to each second .At the same time he thought that he would not be able to go on and knew that he must .The long game was ended the Snitch had been caught it was time to leave the air .The Snitch .His nerveless fingers fumbled for a moment with the pouch at his neck and he pulled it out .I open at the close .Breathing fast and hard he stared down at it .Now that he wanted time to move as slowly as possible it seemed to have sped up and understanding was coming so fast it seemed to have bypassed thought .This was the close .This was the moment .He pressed the golden metal to his lips and whispered I am about to die .The metal shell broke open .He lowered his shaking hand raised Dracos wand beneath the Cloak and murmured Lumos .The black stone with its jagged crack running down the center sat in the two halves of the Snitch .The Resurrection Stone had cracked down the vertical line representing the Elder Wand .The triangle and circle representing the Cloak and the stone were still discernible .And again Harry understood without having to think .It did not matter about bringing them back for he was about to join them .He was not really fetching them They were fetching him .He closed his eyes and turned the stone over in his hand three times .He knew it had happened because he heard slight movements around him that suggested frail bodies shifting their footing on the earthy twig strewn ground that marked the outer edge of the forest .He opened his eyes and looked around .They were neither ghost nor truly flesh he could see that .They resembled most closely the Riddle that had escaped from the diary so long ago and he had been memory made nearly solid .Less substantial than living bodies but much more than ghosts they moved toward him and on each face there was the same loving smile .James was exactly the same height as Harry .He was wearing the clothes in which he had died and his hair was untidy and ruffled and his glasses were a little lopsided like Mr Weasleys .Sirius was tall and handsome and younger by far than Harry had seen him in life .He loped with an easy grace his hands in his pockets and a grin on his face .Lupin was younger too and much less shabby and his hair was thicker and darker .He looked happy to be back in this familiar place scene of so many adolescent wanderings .Lilys smile was widest of all .She pushed her long hair back as she drew close to him and her green eyes so like his searched his face hungrily as though she would never be able to look at him enough .Youve been so brave .He could not speak .His eyes feasted on her and he thought that he would like to stand and look at her forever and that would be enough .You are nearly there said James .Very close .We are .so proud of you .Does it hurt ?The childish question had fallen from Harrys lips before he could stop it .Dying ?Not at all said Sirius .Quicker and easier than falling asleep .And he will want it to be quick .He wants it over said Lupin .I didnt want you to die Harry said .These words came without his volition .Any of you .Im sorry He addressed Lupin more than any of them beseeching him .right after youd had your son .Remus Im sorry I am sorry too said Lupin .Sorry I will never know him .but he will know why I died and I hope he will understand .I was trying to make a world in which he could live a happier life .A chilly breeze that seemed to emanate from the heart of the forest lifted the hair at Harrys brow .He knew that they would not tell him to go that it would have to be his decision .Youll stay with me ?Until the very end said James .They wont be able to see you ?asked Harry .We are part of you said Sirius .Invisible to anyone else .Harry looked at his mother .Stay close to me he said quietly .And he set off .The dementors chill did not overcome him he passed through it with his companions and they acted like Patronuses to him and together they marched through the old trees that grew closely together their branches tangled their roots gnarled and twisted underfoot .Harry clutched the Cloak tightly around him in the darkness traveling deeper and deeper into the forest with no idea where exactly Voldemort was but sure that he would find him .Beside him making scarcely a sound walked James Sirius Lupin and Lily and their presence was his courage and the reason he was able to keep putting one foot in front of the other .His body and mind felt oddly disconnected now his limbs working without conscious instruction as if he were passenger not driver in the body he was about to leave .The dead who walked beside him through the forest were much more real to him now than the living back at the castle Ron Hermione Ginny and all the others were the ones who felt like ghosts as he stumbled and slipped toward the end of his life toward Voldemort .A thud and a whisper Some other living creature had stirred close by .Harry stopped under the Cloak peering around listening and his mother and father Lupin and Sirius stopped too .Someone there came a rough whisper close at hand .Hes got an Invisibility Cloak .Could it be ?Two figures emerged from behind a nearby tree Their wands flared and Harry saw Yaxley and Dolohov peering into the darkness directly at the place Harry his mother and father and Sirius and Lupin stood .Apparently they could not see anything .Definitely heard something said Yaxley .Animal dyou reckon ?That head case Hagrid kept a whole bunch of stuff in here said Dolohov glancing over his shoulder .Yaxley looked down at his watch .Times nearly up .Potters had his hour .Hes not coming .And he was sure hed come !He wont be happy .Better go back said Yaxley .Find out what the plan is now .He and Dolohov turned and walked deeper into the forest .Harry followed them knowing that they would lead him exactly where he wanted to go .He glanced sideways and his mother smiled at him and his father nodded encouragement .They had traveled on mere minutes when Harry saw light ahead and Yaxley and Dolohov stepped out into a clearing that Harry knew had been the place where the monstrous Aragog had once lived .The remnants of his vast web were there still but the swarm of descendants he had spawned had been driven out by the Death Eaters to fight for their cause .A fire burned in the middle of the clearing and its flickering light fell over a crowd of completely silent watchful Death Eaters .Some of them were still masked and hooded others showed their faces .Two giants sat on the outskirts of the group casting massive shadows over the scene their faces cruel roughhewn like rock .Harry saw Fenrir skulking chewing his long nails the great blond Rowle was dabbing at his bleeding lip .He saw Lucius Malfoy who looked defeated and terrified and Narcissa whose eyes were sunken and full of apprehension .Every eye was fixed upon Voldemort who stood with his head bowed and his white hands folded over the Elder Wand in front of him .He might have been praying or else counting silently in his mind and Harry standing still on the edge of the scene thought absurdly of a child counting in a game of hideand seek .Behind his head still swirling and coiling the great snake Nagini floated in her glittering charmed cage like a monstrous halo .When Dolohov and Yaxley rejoined the circle Voldemort looked up .No sign of him my Lord said Dolohov .Voldemort s expression did not change .The red eyes seemed to burn in the firelight .Slowly he drew the Elder Wand between his long fingers .My Lord Bellatrix had spoken She sat closest to Voldemort disheveled her face a little bloody but otherwise unharmed .Voldemort raised his hand to silence her and she did not speak another word but eyed him in worshipful fascination .I thought he would come said Voldemort in his high clear voice his eyes on the leaping flames .I expected him to come .Nobody spoke .They seemed as scared as Harry whose heart was now throwing itself against his ribs as though determined to escape the body he was about to cast aside .His hands were sweating as he pulled off the Invisibility Cloak and stuffed it beneath his robes with his wand .He did not want to be tempted to fight .I was it seems .mistaken said Voldemort .You werent .Harry said it as loudly as he could with all the force he could muster He did not want to sound afraid .The Resurrection Stone slipped from between his numb fingers and out of the corner of his eyes he saw his parents Sirius and Lupin vanish as he stepped forward into the firelight .At that moment he felt that nobody mattered but Voldemort .It was just the two of them .The illusion was gone as soon as it had come .The giants roared as the Death Eaters rose together and there were many cries gasps even laughter .Voldemort had frozen where he stood but his red eyes had found Harry and he stared as Harry moved toward him with nothing but the fire between them .Then a voice yelled HARRY !NO !He turned Hagrid was bound and trussed tied to a tree nearby .His massive body shook the branches overhead as he struggled desperate .NO !NO !HARRY WHATRE YEH ?QUIET !shouted Rowle and with a flick of his wand Hagrid was silenced .Bellatrix who had leapt to her feet was looking eagerly from Voldemort to Harry her breast heaving .The only things that moved were the flames and the snake coiling and uncoiling in the glittering cage behind Voldemorts head .Harry could feel his wand against his chest but he made no attempt to draw it .He knew that the snake was too well protected knew that if he managed to point the wand at Nagini fifty curses would hit him first .And still Voldemort and Harry looked at each other and now Voldemort tilted his head a little to the side considering the boy standing before him and a singularly mirthless smile curled the lipless mouth .Harry Potter he said very softly .His voice might have been part of the spitting fire .The Boy Who Lived .None of the Death Eaters moved .They were waiting Everything was waiting .Hagrid was struggling and Bellatrix was panting and Harry thought inexplicably of Ginny and her blazing look and the feel of her lips on his Voldemort had raised his wand .His head was still tilted to one side like a curious child wondering what would happen if he proceeded .Harry looked back into the red eyes and wanted it to happen now quickly while he could still stand before he lost control before he betrayed fear He saw the mouth move and a flash of green light and everything was gone .KINGS CROSS He lay facedown listening to the silence .He was perfectly alone .Nobody was watching .Nobody else was there .He was not perfectly sure that he was there himself .A long time later or maybe no time at all it came to him that he must exist must be more than disembodied thought because he was lying definitely lying on some surface .Therefore he had a sense of touch and the thing against which he lay existed too .Almost as soon as he had reached this conclusion Harry became conscious that he was naked .Convinced as he was of his total solitude this did not concern him but it did intrigue him slightly .He wondered whether as he could feel he would be able to see .In opening them he discovered that he had eyes .He lay in a bright mist though it was not like mist he had ever experienced before .His surroundings were not hidden by cloudy vapor rather the cloudy vapor had not yet formed into surroundings .The floor on which he lay seemed to be white neither warm nor cold but simply there a flat blank something on which to be .He sat up .His body appeared unscathed .He touched his face .He was not wearing glasses anymore .Then a noise reached him through the unformed nothingness that surrounded him the small soft thumpings of something that flapped flailed and struggled .It was a pitiful noise yet also slightly indecent .He had the uncomfortable feeling that he was eavesdropping on something furtive shameful .For the first time he wished he were clothed .Barely had the wish formed in his head than robes appeared a short distance away .He took them and pulled them on They were soft clean and warm .It was extraordinary how they had appeared just like that the moment he had wanted them .He stood up looking around .Was he in some great Room of Requirement ?The longer he looked the more there was to see .A great domed glass roof glittered high above him in sunlight .Perhaps it was a palace .All was hushed and still except for those odd thumping and whimpering noises coming from somewhere close by in the mist .Harry turned slowly on the spot and his surroundings seemed to invent themselves before his eyes .A wideopen space bright and clean a hall larger by far than the Great Hall with that clear domed glass ceiling .It was quite empty .He was the only person there except for He recoiled .He had spotted the thing that was making the noises .It had the form of a small naked child curled on the ground its skin raw and rough flayedlooking and it lay shuddering under a seat where it had been left unwanted stuffed out of sight struggling for breath .He was afraid of it .Small and fragile and wounded though it was he did not want to approach it .Nevertheless he drew slowly nearer ready to jump back at any moment .Soon he stood near enough to touch it yet he could not bring himself to do it .He felt like a coward .He ought to comfort it but it repulsed him .You cannot help .He spun around .Albus Dumbledore was walking toward him sprightly and upright wearing sweeping robes of midnight blue .Harry .He spread his arms wide and his hands were both whole and white and undamaged .You wonderful boy .You brave brave man .Let us walk .Stunned Harry followed as Dumbledore strode away from where the flayed child lay whimpering leading him to two seats that Harry had not previously noticed set some distance away under that high sparkling ceiling .Dumbledore sat down in one of them and Harry fell into the other staring at his old headmasters face .Dumbledore s long silver hair and beard the piercingly blue eyes behind halfmoon spectacles the crooked nose Everything was as he had remembered it .And yet .But youre dead said Harry .Oh yes said Dumbledore matteroffactly .Then .Im dead too ?Ah said Dumbledore smiling still more broadly .That is the question isnt it ?On the whole dear boy I think not .They looked at each other the old man still beaming .Not ?repeated Harry .Not said Dumbledore .But .Harry raised his hand instinctively toward the lightning scar .It did not seem to be there .But I should have died I didnt defend myself !I meant to let him kill me !And that said Dumbledore will I think have made all the difference .Happiness seemed to radiate from Dumbledore like light like fire Harry had never seen the man so utterly so palpably content .Explain said Harry .But you already know said Dumbledore .He twiddled his thumbs together .I let him kill me said Harry .Didnt I ?You did said Dumbledore nodding .Go on !So the part of his soul that was in me .Dumbledore nodded still more enthusiastically urging Harry onward a broad smile of encouragement on his face . .has it gone ?Oh yes !said Dumbledore .Yes he destroyed it .Your soul is whole and completely your own Harry .But then .Harry glanced over his shoulder to where the small maimed creature trembled under the chair .What is that Professor ?Something that is beyond either of our help said Dumbledore .But if Voldemort used the Killing Curse Harry started again and nobody died for me this time how can I be alive ?I think you know said Dumbledore .Think back .Remember what he did in his ignorance in his greed and his cruelty .Harry thought .He let his gaze drift over his surroundings .If it was indeed a palace in which they sat it was an odd one with chairs set in little rows and bits of railing here and there and still he and Dumbledore and the stunted creature under the chair were the only beings there .Then the answer rose to his lips easily without effort .He took my blood said Harry .Precisely !said Dumbledore .He took your blood and rebuilt his living body with it !Your blood in his veins Harry Lilys protection inside both of you !He tethered you to life while he lives !I live .while he lives ?But I thought .I thought it was the other way round !I thought we both had to die ?Or is it the same thing ?He was distracted by the whimpering and thumping of the agonized creature behind them and glanced back at it yet again .Are you sure we cant do anything ?There is no help possible .Then explain .more said Harry and Dumbledore smiled .You were the seventh Horcrux Harry the Horcrux he never meant to make .He had rendered his soul so unstable that it broke apart when he committed those acts of unspeakable evil the murder of your parents the attempted killing of a child .But what escaped from that room was even less than he knew .He left more than his body behind .He left part of himself latched to you the wouldbe victim who had survived .And his knowledge remained woefully incomplete Harry !That which Voldemort does not value he takes no trouble to comprehend .Of houseelves and childrens tales of love loyalty and innocence Voldemort knows and understands nothing .Nothing .That they all have a power beyond his own a power beyond the reach of any magic is a truth he has never grasped .He took your blood believing it would strengthen him .He took into his body a tiny part of the enchantment your mother laid upon you when she died for you .His body keeps her sacrifice alive and while that enchantment survives so do you and so does Voldemorts one last hope for himself .Dumbledore smiled at Harry and Harry stared at him .And you knew this ?You knew all along ?I guessed .But my guesses have usually been good said Dumbledore happily and they sat in silence for what seemed like a long time while the creature behind them continued to whimper and tremble .Theres more said Harry .Theres more to it .Why did my wand break the wand he borrowed ?As to that I cannot be sure .Have a guess then said Harry and Dumbledore laughed .What you must understand Harry is that you and Lord Voldemort have journeyed together into realms of magic hitherto unknown and untested .But here is what I think happened and it is unprecedented and no wandmaker could I think ever have predicted it or explained it to Voldemort .Without meaning to as you now know Lord Voldemort doubled the bond between you when he returned to a human form .A part of his soul was still attached to yours and thinking to strengthen himself he took a part of your mothers sacrifice into himself .If he could only have understood the precise and terrible power of that sacrifice he would not perhaps have dared to touch your blood .But then if he had been able to understand he could not be Lord Voldemort and might never have murdered at all .Having ensured this twofold connection having wrapped your destinies together more securely than ever two wizards were joined in history Voldemort proceeded to attack you with a wand that shared a core with yours .And now something very strange happened as we know .The cores reacted in a way that Lord Voldemort who never knew that your wand was twin of his had never expected .He was more afraid than you were that night Harry .You had accepted even embraced the possibility of death something Lord Voldemort has never been able to do .Your courage won your wand overpowered his .And in doing so something happened between those wands something that echoed the relationship between their masters .I believe that your wand imbibed some of the power and qualities of Voldemorts wand that night which is to say that it contained a little of Voldemort himself .So your wand recognized him when he pursued you recognized a man who was both kin and mortal enemy and it regurgitated some of his own magic against him magic much more powerful than anything Luciuss wand had ever performed .Your wand now contained the power of your enormous courage and of Voldemorts own deadly skill What chance did that poor stick of Lucius Malfoys stand ?But if my wand was so powerful how come Hermione was able to break it ?asked Harry .My dear boy its remarkable effects were directed only at Voldemort who had tampered so illadvisedly with the deepest laws of magic .Only toward him was that wand abnormally powerful .Otherwise it was a wand like any other .though a good one I am sure Dumbledore finished kindly .Harry sat in thought for a long time or perhaps seconds .It was very hard to be sure of things like time here .He killed me with your wand .He failed to kill you with my wand Dumbledore corrected Harry .I think we can agree that you are not dead though of course he added as if fearing he had been discourteous I do not minimize your sufferings which I am sure were severe .I feel great at the moment though said Harry looking down at his clean unblemished hands .Where are we exactly ?Well I was going to ask you that said Dumbledore looking around .Where would you say that we are ?Until Dumbledore had asked Harry had not known .Now however he found that he had an answer ready to give .It looks he said slowly like Kings Cross station .Except a lot cleaner and empty and there are no trains as far as I can see .Kings Cross station !Dumbledore was chuckling immoderately .Good gracious really ?Well where do you think we are ?asked Harry a little defensively .My dear boy I have no idea .This is as they say your party .Harry had no idea what this meant Dumbledore was being infuriating .He glared at him then remembered a much more pressing question than that of their current location .The Deathly Hallows he said and he was glad to see that the words wiped the smile from Dumbledores face .Ah yes he said .He even looked a little worried .Well ?For the first time since Harry had met Dumbledore he looked less than an old man much less .He looked fleetingly like a small boy caught in wrongdoing .Can you forgive me ?he said .Can you forgive me for not trusting you ?For not telling you ?Harry I only feared that you would fail as I had failed .I only dreaded that you would make my mistakes .I crave your pardon Harry .I have known for some time now that you are the better man .What are you talking about ?asked Harry startled by Dumbledores tone by the sudden tears in his eyes .The Hallows the Hallows murmured Dumbledore .A desperate mans dream !But theyre real !Real and dangerous and a lure for fools said Dumbledore .And I was such a fool .But you know dont you ?I have no secrets from you anymore .You know .What do I know ?Dumbledore turned his whole body to face Harry and tears still sparkled in the brilliantly blue eyes .Master of death Harry master of Death !Was I better ultimately than Voldemort ?Of course you were said Harry .Of course how can you ask that ?You never killed if you could avoid it !True true said Dumbledore and he was like a child seeking reassurance .Yet I too sought a way to conquer death Harry .Not the way he did said Harry .After all his anger at Dumbledore how odd it was to sit here beneath the high vaulted ceiling and defend Dumbledore from himself .Hallows not Horcruxes .Hallows murmured Dumbledore not Horcruxes .Precisely .There was a pause .The creature behind them whimpered but Harry no longer looked around .Grindelwald was looking for them too ?he asked .Dumbledore closed his eyes for a moment and nodded .It was the thing above all that drew us together he said quietly .Two clever arrogant boys with a shared obsession .He wanted to come to Godrics Hollow as I am sure you have guessed because of the grave of Ignotus Peverell .He wanted to explore the place the third brother had died .So its true ?asked Harry .All of it ?The Peverell brothers were the three brothers of the tale said Dumbledore nodding .Oh yes I think so .Whether they met Death on a lonely road .I think it more likely that the Peverell brothers were simply gifted dangerous wizards who succeeded in creating those powerful objects .The story of them being Deaths own Hallows seems to me the sort of legend that might have sprung up around such creations .The Cloak as you know now traveled down through the ages father to son mother to daughter right down to Ignotuss last living descendant who was born as Ignotus was in the village of Godrics Hollow .Dumbledore smiled at Harry .Me ?You .You have guessed I know why the Cloak was in my possession on the night your parents died .James had showed it to me just a few days previously .It explained much of his undetected wrongdoing at school !I could hardly believe what I was seeing .I asked to borrow it to examine it .I had long since given up my dream of uniting the Hallows but I could not resist could not help taking a closer look .It was a Cloak the likes of which I had never seen immensely old perfect in every respect .and then your father died and I had two Hallows at last all to myself !His tone was unbearably bitter .The Cloak wouldnt have helped them survive though Harry said quickly .Voldemort knew where my mum and dad were .The Cloak couldnt have made them curseproof .True sighed Dumbledore .True .Harry waited but Dumbledore did not speak so he prompted him .So youd given up looking for the Hallows when you saw the Cloak ?Oh yes said Dumbledore faintly .It seemed that he forced himself to meet Harrys eyes .You know what happened .You know .You cannot despise me more than I despise myself .But I dont despise you Then you should said Dumbledore .He drew a deep breath .You know the secret of my sisters ill health what those Muggles did what she became .You know how my poor father sought revenge and paid the price died in Azkaban .You know how my mother gave up her own life to care for Ariana .I resented it Harry .Dumbledore stated it baldly coldly .He was looking now over the top of Harrys head into the distance .I was gifted I was brilliant .I wanted to escape .I wanted to shine .I wanted glory .Do not misunderstand me he said and pain crossed the face so that he looked ancient again .I loved them .I loved my parents I loved my brother and my sister but I was selfish Harry more selfish than you who are a remarkably selfless person could possibly imagine .So that when my mother died and I was left the responsibility of a damaged sister and a wayward brother I returned to my village in anger and bitterness .Trapped and wasted I thought !And then of course he came .Dumbledore looked directly into Harrys eyes again .Grindelwald .You cannot imagine how his ideas caught me Harry inflamed me .Muggles forced into subservience .We wizards triumphant .Grindelwald and I the glorious young leaders of the revolution .Oh I had a few scruples .I assuaged my conscience with empty words .It would all be for the greater good and any harm done would be repaid a hundredfold in benefits for wizards .Did I know in my heart of hearts what Gellert Grindelwald was ?I think I did but I closed my eyes .If the plans we were making came to fruition all my dreams would come true .And at the heart of our schemes the Deathly Hallows !How they fascinated him how they fascinated both of us !The unbeatable wand the weapon that would lead us to power !The Resurrection Stone to him though I pretended not to know it it meant an army of Inferi !To me I confess it meant the return of my parents and the lifting of all responsibility from my shoulders .And the Cloak .somehow we never discussed the Cloak much Harry .Both of us could conceal ourselves well enough without the Cloak the true magic of which of course is that it can be used to protect and shield others as well as its owner .I thought that if we ever found it it might be useful in hiding Ariana but our interest in the Cloak was mainly that it completed the trio for the legend said that the man who united all three objects would then be truly master of death which we took to mean ‘invincible .Invincible masters of death Grindelwald and Dumbledore !Two months of insanity of cruel dreams and neglect of the only two members of my family left to me .And then .you know what happened .Reality returned in the form of my rough unlettered and infinitely more admirable brother .I did not want to hear the truths he shouted at me .I did not want to hear that I could not set forth to seek Hallows with a fragile and unstable sister in tow .The argument became a fight .Grindelwald lost control .That which I had always sensed in him though I pretended not to now sprang into terrible being .And Ariana .after all my mothers care and caution .lay dead upon the floor .Dumbledore gave a little gasp and began to cry in earnest .Harry reached out and was glad to find that he could touch him He gripped his arm tightly and Dumbledore gradually regained control .Well Grindelwald fled as anyone but I could have predicted .He vanished with his plans for seizing power and his schemes for Muggle torture and his dreams of the Deathly Hallows dreams in which I had encouraged him and helped him .He ran while I was left to bury my sister and learn to live with my guilt and my terrible grief the price of my shame .Years passed .There were rumors about him .They said he had procured a wand of immense power .I meanwhile was offered the post of Minister of Magic not once but several times .Naturally I refused .I had learned that I was not to be trusted with power .But youd have been better much better than Fudge or Scrimgeour !burst out Harry .Would I ?asked Dumbledore heavily .I am not so sure .I had proven as a very young man that power was my weakness and my temptation .It is a curious thing Harry but perhaps those who are best suited to power are those who have never sought it .Those who like you have leadership thrust upon them and take up the mantle because they must and find to their own surprise that they wear it well .I was safer at Hogwarts .I think I was a good teacher You were the best you are very kind Harry .But while I busied myself with the training of young wizards Grindelwald was raising an army .They say he feared me and perhaps he did but less I think than I feared him .Oh not death said Dumbledore in answer to Harrys questioning look .Not what he could do to me magically .I knew that we were evenly matched perhaps that I was a shade more skillful .It was the truth I feared .You see I never knew which of us in that last horrific fight had actually cast the curse that killed my sister .You may call me cowardly You would be right .Harry I dreaded beyond all things the knowledge that it had been I who brought about her death not merely through my arrogance and stupidity but that I actually struck the blow that snuffed out her life .I think he knew it I think he knew what frightened me .I delayed meeting him until finally it would have been too shameful to resist any longer .People were dying and he seemed unstoppable and I had to do what I could .Well you know what happened next .I won the duel .I won the wand .Another silence .Harry did not ask whether Dumbledore had ever found out who struck Ariana dead .He did not want to know and even less did he want Dumbledore to have to tell him .At last he knew what Dumbledore would have seen when he looked in the Mirror of Erised and why Dumbledore had been so understanding of the fascination it had exercised over Harry .They sat in silence for a long time and the whimperings of the creature behind them barely disturbed Harry anymore .At last he said Grindelwald tried to stop Voldemort going after the wand .He lied you know pretended he had never had it .Dumbledore nodded looking down at his lap tears still glittering on the crooked nose .They say he showed remorse in later years alone in his cell at Nurmengard .I hope that it is true .I would like to think he did feel the horror and shame of what he had done .Perhaps that lie to Voldemort was his attempt to make amends .to prevent Voldemort from taking the Hallow . .or maybe from breaking into your tomb ?suggested Harry and Dumbledore dabbed his eyes .After another short pause Harry said You tried to use the Resurrection Stone .Dumbledore nodded .When I discovered it after all those years buried in the abandoned home of the Gaunts the Hallow I had craved most of all though in my youth I had wanted it for very different reasons I lost my head Harry .I quite forgot that it was now a Horcrux that the ring was sure to carry a curse .I picked it up and I put it on and for a second I imagined that I was about to see Ariana and my mother and my father and to tell them how very very sorry I was .I was such a fool Harry .After all those years I had learned nothing .I was unworthy to unite the Deathly Hallows I had proved it time and again and here was final proof .Why ?said Harry .It was natural !You wanted to see them again .Whats wrong with that ?Maybe a man in a million could unite the Hallows Harry .I was fit only to possess the meanest of them the least extraordinary .I was fit to own the Elder Wand and not to boast of it and not to kill with it .I was permitted to tame and to use it because I took it not for gain but to save others from it .But the Cloak I took out of vain curiosity and so it could never have worked for me as it works for you its true owner .The stone I would have used in an attempt to drag back those who are at peace rather than to enable my selfsacrifice as you did .You are the worthy possessor of the Hallows .Dumbledore patted Harrys hand and Harry looked up at the old man and smiled he could not help himself .How could he remain angry with Dumbledore now ?Why did you have to make it so difficult ?Dumbledores smile was tremulous .I am afraid I counted on Miss Granger to slow you up Harry .I was afraid that your hot head might dominate your good heart .I was scared that if presented outright with the facts about those tempting objects you might seize the Hallows as I did at the wrong time for the wrong reasons .If you laid hands on them I wanted you to possess them safely .You are the true master of death because the true master does not seek to run away from Death .He accepts that he must die and understands that there are far far worse things in the living world than dying .And Voldemort never knew about the Hallows ?I do not think so because he did not recognize the Resurrection Stone he turned into a Horcrux .But even if he had known about them Harry I doubt that he would have been interested in any except the first .He would not think that he needed the Cloak and as for the stone whom would he want to bring back from the dead ?He fears the dead .He does not love .But you expected him to go after the wand ?I have been sure that he would try ever since your wand beat Voldemorts in the graveyard of Little Hangleton .At first he was afraid that you had conquered him by superior skill .Once he had kidnapped Ollivander however he discovered the existence of the twin cores .He thought that explained everything .Yet the borrowed wand did no better against yours !So Voldemort instead of asking himself what quality it was in you that had made your wand so strong what gift you possessed that he did not naturally set out to find the one wand that they said would beat any other .For him the Elder Wand has become an obsession to rival his obsession with you .He believes that the Elder Wand removes his last weakness and makes him truly invincible .Poor Severus .If you planned your death with Snape you meant him to end up with the Elder Wand didnt you ?I admit that was my intention said Dumbledore but it did not work as I intended did it ?No said Harry .That bit didnt work out .The creature behind them jerked and moaned and Harry and Dumbledore sat without talking for the longest time yet .The realization of what would happen next settled gradually over Harry in the long minutes like softly falling snow .Ive got to go back havent I ?That is up to you .Ive got a choice ?Oh yes .Dumbledore smiled at him .We are in Kings Cross you say ?I think that if you decided not to go back you would be able to .lets say .board a train .And where would it take me ?On said Dumbledore simply .Silence again .Voldemorts got the Elder Wand .True .Voldemort has the Elder Wand .But you want me to go back ?I think said Dumbledore that if you choose to return there is a chance that he may be finished for good .I cannot promise it .But I know this Harry that you have less to fear from returning here than he does .Harry glanced again at the rawlooking thing that trembled and choked in the shadow beneath the distant chair .Do not pity the dead Harry .Pity the living and above all those who live without love .By returning you may ensure that fewer souls are maimed fewer families are torn apart .If that seems to you a worthy goal then we say goodbye for the present .Harry nodded and sighed .Leaving this place would not be nearly as hard as walking into the forest had been but it was warm and light and peaceful here and he knew that he was heading back to pain and the fear of more loss .He stood up and Dumbledore did the same and they looked for a long moment into each others faces .Tell me one last thing said Harry .Is this real ?Or has this been happening inside my head ?Dumbledore beamed at him and his voice sounded loud and strong in Harrys ears even though the bright mist was descending again obscuring his figure .Of course it is happening inside your head Harry but why on earth should that mean that it is not real ?THE FLAW IN THE PLAN He was lying facedown on the ground again .The smell of the forest filled his nostrils .He could feel the cold hard ground beneath his cheek and the hinge of his glasses which had been knocked sideways by the fall cutting into his temple .Every inch of him ached and the place where the Killing Curse had hit him felt like the bruise of an ironclad punch .He did not stir but remained exactly where he had fallen with his left arm bent out at an awkward angle and his mouth gaping .He had expected to hear cheers of triumph and jubilation at his death but instead hurried footsteps whispers and solicitous murmurs filled the air .My Lord .my Lord .It was Bellatrixs voice and she spoke as if to a lover .Harry did not dare open his eyes but allowed his other senses to explore his predicament .He knew that his wand was still stowed beneath his robes because he could feel it pressed between his chest and the ground .A slight cushioning effect in the area of his stomach told him that the Invisibility Cloak was also there stuffed out of sight .My Lord .That will do said Voldemorts voice .More footsteps Several people were backing away from the same spot .Desperate to see what was happening and why Harry opened his eyes by a millimeter .Voldemort seemed to be getting to his feet .Various Death Eaters were hurrying away from him returning to the crowd lining the clearing .Bellatrix alone remained behind kneeling beside Voldemort .Harry closed his eyes again and considered what he had seen .The Death Eaters had been huddled around Voldemort who seemed to have fallen to the ground .Something had happened when he had hit Harry with the Killing Curse .Had Voldemort too collapsed ?It seemed like it .And both of them had fallen briefly unconscious and both of them had now returned .My Lord let me I do not require assistance said Voldemort coldly and though he could not see it Harry pictured Bellatrix withdrawing a helpful hand .The boy .Is he dead ?There was complete silence in the clearing .Nobody approached Harry but he felt their concentrated gaze it seemed to press him harder into the ground and he was terrified a finger or an eyelid might twitch .You said Voldemort and there was a bang and a small shriek of pain .Examine him .Tell me whether he is dead .Harry did not know who had been sent to verify .He could only lie there with his heart thumping traitorously and wait to be examined but at the same time noting small comfort though it was that Voldemort was wary of approaching him that Voldemort suspected that all had not gone to plan .Hands softer than he had been expecting touched Harrys face pulled back an eyelid crept beneath his shirt down to his chest and felt his heart .He could hear the womans fast breathing her long hair tickled his face .He knew that she could feel the steady pounding of life against his ribs .Is Draco alive ?Is he in the castle ?The whisper was barely audible her lips were an inch from his ear her head bent so low that her long hair shielded his face from the onlookers .Yes he breathed back .He felt the hand on his chest contract her nails pierced him .Then it was withdrawn .She had sat up .He is dead !Narcissa Malfoy called to the watchers .And now they shouted now they yelled in triumph and stamped their feet and through his eyelids Harry saw bursts of red and silver light shoot into the air in celebration .Still feigning death on the ground he understood .Narcissa knew that the only way she would be permitted to enter Hogwarts and find her son was as part of the conquering army .She no longer cared whether Voldemort won .You see ?screeched Voldemort over the tumult .Harry Potter is dead by my hand and no man alive can threaten me now !Watch !CrucioV Harry had been expecting it knew his body would not be allowed to remain unsullied upon the forest floor it must be subjected to humiliation to prove Voldemorts victory .He was lifted into the air and it took all his determination to remain limp yet the pain he expected did not come .He was thrown once twice three times into the air His glasses flew off and he felt his wand slide a little beneath his robes but he kept himself floppy and lifeless and when he fell to the ground for the last time the clearing echoed with jeers and shrieks of laughter .Now said Voldemort we go to the castle and show them what has become of their hero .Who shall drag the body ?No Wait There was a fresh outbreak of laughter and after a few moments Harry felt the ground trembling beneath him .You carry him Voldemort said .He will be nice and visible in your arms will he not ?Pick up your little friend Hagrid .And the glasses put on the glasses he must be recognizable Someone slammed Harrys glasses back onto his face with deliberate force but the enormous hands that lifted him into the air were exceedingly gentle .Harry could feel Hagrid s arms trembling with the force of his heaving sobs great tears splashed down upon him as Hagrid cradled Harry in his arms and Harry did not dare by movement or word to intimate to Hagrid that all was not yet lost .Move said Voldemort and Hagrid stumbled forward forcing his way through the closegrowing trees back through the forest .Branches caught at Harrys hair and robes but he lay quiescent his mouth lolling open his eyes shut and in the darkness while the Death Eaters crowed all around them and while Hagrid sobbed blindly nobody looked to see whether a pulse beat in the exposed neck of Harry Potter .The two giants crashed along behind the Death Eaters Harry could hear trees creaking and falling as they passed they made so much din that birds rose shrieking into the sky and even the jeers of the Death Eaters were drowned .The victorious procession marched on toward the open ground and after a while Harry could tell by the lightening of the darkness through his closed eyelids that the trees were beginning to thin .BANE !Hagrids unexpected bellow nearly forced Harrys eyes open .Happy now are yeh that yeh didn fight yeh cowardly bunch o nags ?Are yeh happy Harry Potters ddead .Hagrid could not continue but broke down in fresh tears .Harry wondered how many centaurs were watching their procession pass he dared not open his eyes to look .Some of the Death Eaters called insults at the centaurs as they left them behind .A little later Harry sensed by a freshening of the air that they had reached the edge of the forest .Stop .Harry thought that Hagrid must have been forced to obey Voldemorts command because he lurched a little .And now a chill settled over them where they stood and Harry heard the rasping breath of the dementors that patrolled the outer trees .They would not affect him now .The fact of his own survival burned inside him a talisman against them as though his fathers stag kept guardian in his heart .Someone passed close by Harry and he knew that it was Voldemort himself because he spoke a moment later his voice magically magnified so that it swelled through the grounds crashing upon Harrys eardrums .Harry Potter is dead .He was killed as he ran away trying to save himself while you lay down your lives for him .We bring you his body as proof that your hero is gone .The battle is won .You have lost half of your fighters .My Death Eaters outnumber you and the Boy Who Lived is finished .There must be no more war .Anyone who continues to resist man woman or child will be slaughtered as will every member of their family .Come out of the castle now kneel before me and you shall be spared .Your parents and children your brothers and sisters will live and be forgiven and you will join me in the new world we shall build together .There was silence in the grounds and from the castle .Voldemort was so close to him that Harry did not dare open his eyes again .Come said Voldemort and Harry heard him move ahead and Hagrid was forced to follow .Now Harry opened his eyes a fraction and saw Voldemort striding in front of them wearing the great snake Nagini around his shoulders now free of her enchanted cage .But Harry had no possibility of extracting the wand concealed under his robes without being noticed by the Death Eaters who marched on either side of them through the slowly lightening darkness .Harry sobbed Hagrid .Oh Harry .Harry .Harry shut his eyes tight again .He knew that they were approaching the castle and strained his ears to distinguish above the gleeful voices of the Death Eaters and their tramping footsteps signs of life from those within .Stop .The Death Eaters came to a halt Harry heard them spreading out in a line facing the open front doors of the school .He could see even through his closed lids the reddish glow that meant light streamed upon him from the entrance hall .He waited .Any moment the people for whom he had tried to die would see him lying apparently dead in Hagrid s arms .NO !The scream was the more terrible because he had never expected or dreamed that Professor McGonagall could make such a sound .He heard another woman laughing nearby and knew that Bellatrix gloried in McGonagalls despair .He squinted again for a single second and saw the open doorway filling with people as the survivors of the battle came out onto the front steps to face their vanquishers and see the truth of Harrys death for themselves .He saw Voldemort standing a little in front of him stroking Naginis head with a single white finger .He closed his eyes again .No !iVo !Harry !HARRY !Rons Hermiones and Ginnys voices were worse than McGonagalls Harry wanted nothing more than to call back yet he made himself lie silent and their cries acted like a trigger the crowd of survivors took up the cause screaming and yelling abuse at the Death Eaters until SILENCE !cried Voldemort and there was a bang and a flash of bright light and silence was forced upon them all .It is over !Set him down Hagrid at my feet where he belongs !Harry felt himself lowered onto the grass .You see ?said Voldemort and Harry felt him striding backward and forward right beside the place where he lay .Harry Potter is dead !Do you understand now deluded ones ?He was nothing ever but a boy who relied on others to sacrifice themselves for him !He beat you !yelled Ron and the charm broke and the defenders of Hogwarts were shouting and screaming again until a second more powerful bang extinguished their voices once more .He was killed while trying to sneak out of the castle grounds said Voldemort and there was relish in his voice for the lie killed while trying to save himself But Voldemort broke off Harry heard a scuffle and a shout then another bang a flash of light and a grunt of pain he opened his eyes an infinitesimal amount .Someone had broken free of the crowd and charged at Voldemort Harry saw the figure hit the ground Disarmed Voldemort throwing the challengers wand aside and laughing .And who is this ?he said in his soft snakes hiss .Who has volunteered to demonstrate what happens to those who continue to fight when the battle is lost ?Bellatrix gave a delighted laugh .It is Neville Longbottom my Lord !The boy who has been giving the Carrows so much trouble !The son of the Aurors remember ?Ah yes I remember said Voldemort looking down at Neville who was struggling back to his feet unarmed and unprotected standing in the noman s land between the survivors and the Death Eaters .But you are a pureblood arent you my brave boy ?Voldemort asked Neville who stood facing him his empty hands curled in fists .So what if I am ?said Neville loudly .You show spirit and bravery and you come of noble stock .You will make a very valuable Death Eater .We need your kind Neville Longbottom .Ill join you when hell freezes over said Neville .Dumbledores Army !he shouted and there was an answering cheer from the crowd whom Voldemorts Silencing Charms seemed unable to hold .Very well said Voldemort and Harry heard more danger in the silkiness of his voice than in the most powerful curse .If that is your choice Longbottom we revert to the original plan .On your head he said quietly be it .Still watching through his lashes Harry saw Voldemort wave his wand .Seconds later out of one of the castles shattered windows something that looked like a misshapen bird flew through the half light and landed in Voldemorts hand .He shook the mildewed object by its pointed end and it dangled empty and ragged the Sorting Hat .There will be no more Sorting at Hogwarts School said Voldemort .There will be no more Houses .The emblem shield and colors of my noble ancestor Salazar Slytherin will suffice for everyone .Wont they Neville Longbottom ?He pointed his wand at Neville who grew rigid and still then forced the hat onto Nevilles head so that it slipped down below his eyes .There were movements from the watching crowd in front of the castle and as one the Death Eaters raised their wands holding the fighters of Hogwarts at bay .Neville here is now going to demonstrate what happens to anyone foolish enough to continue to oppose me said Voldemort and with a flick of his wand he caused the Sorting Hat to burst into flames .Screams split the dawn and Neville was aflame rooted to the spot unable to move and Harry could not bear it He must act And then many things happened at the same moment .They heard uproar from the distant boundary of the school as what sounded like hundreds of people came swarming over the outofsight walls and pelted toward the castle uttering loud war cries .At the same time Grawp came lumbering around the side of the castle and yelled HAGGER !His cry was answered by roars from Voldemorts giants They ran at Grawp like bull elephants making the earth quake .Then came hooves and the twangs of bows and arrows were suddenly falling amongst the Death Eaters who broke ranks shouting their surprise .Harry pulled the Invisibility Cloak from inside his robes swung it over himself and sprang to his feet as Neville moved too .In one swift fluid motion Neville broke free of the BodyBind Curse upon him the flaming hat fell off him and he drew from its depths something silver with a glittering rubied handle The slash of the silver blade could not be heard over the roar of the oncoming crowd or the sounds of the clashing giants or of the stampeding centaurs and yet it seemed to draw every eye .With a single stroke Neville sliced off the great snakes head which spun high into the air gleaming in the light flooding from the entrance hall and Voldemorts mouth was open in a scream of fury that nobody could hear and the snakes body thudded to the ground at his feet Hidden beneath the Invisibility Cloak Harry cast a Shield Charm between Neville and Voldemort before the latter could raise his wand .Then over the screams and the roars and the thunderous stamps of the battling giants Hagrids yell came loudest of all .HARRY !Hagrid shouted .HARRY WHERES HARRY ?Chaos reigned .The charging centaurs were scattering the Death Eaters everyone was fleeing the giants stamping feet and nearer and nearer thundered the reinforcements that had come from who knew where Harry saw great winged creatures soaring around the heads of Voldemorts giants thestrals and Buckbeak the hippogriff scratching at their eyes while Grawp punched and pummeled them and now the wizards defenders of Hogwarts and Death Eaters alike were being forced back into the castle .Harry was shooting jinxes and curses at any Death Eater he could see and they crumpled not knowing what or who had hit them and their bodies were trampled by the retreating crowd .Still hidden beneath the Invisibility Cloak Harry was buffeted into the entrance hall He was searching for Voldemort and saw him across the room firing spells from his wand as he backed into the Great Hall still screaming instructions to his followers as he sent curses flying left and right Harry cast more Shield Charms and Voldemorts wouldbe victims Seamus Finnigan and Hannah Abbott darted past him into the Great Hall where they joined the fight already flourishing inside it .And now there were more even more people storming up the front steps and Harry saw Charlie Weasley overtaking Horace Slughorn who was still wearing his emerald pajamas .They seemed to have returned at the head of what looked like the families and friends of every Hogwarts student who had remained to fight along with the shopkeepers and homeowners of Hogsmeade .The centaurs Bane Ronan and Magorian burst into the hall with a great clatter of hooves as behind Harry the door that led to the kitchens was blasted off its hinges .The houseelves of Hogwarts swarmed into the entrance hall screaming and waving carving knives and cleavers and at their head the locket of Regulus Black bouncing on his chest was Kreacher his bullfrogs voice audible even above this din Fight !Fight !Fight for my Master defender of houseelves !Fight the Dark Lord in the name of brave Regulus !Fight !They were hacking and stabbing at the ankles and shins of Death Eaters their tiny faces alive with malice and everywhere Harry looked Death Eaters were folding under sheer weight of numbers overcome by spells dragging arrows from wounds stabbed in the leg by elves or else simply attempting to escape but swallowed by the oncoming horde .But it was not over yet Harry sped between duelers past struggling prisoners and into the Great Hall .Voldemort was in the center of the battle and he was striking and smiting all within reach .Harry could not get a clear shot but fought his way nearer still invisible and the Great Hall became more and more crowded as everyone who could walk forced their way inside .Harry saw Yaxley slammed to the floor by George and Lee Jordan saw Dolohov fall with a scream at Flitwicks hands saw Walden Macnair thrown across the room by Hagrid hit the stone wall opposite and slide unconscious to the ground .He saw Ron and Neville bringing down Fenrir Greyback Aberforth Stunning Rookwood Arthur and Percy flooring Thicknesse and Lucius and Narcissa Malfoy running through the crowd not even attempting to fight screaming for their son .Voldemort was now dueling McGonagall Slughorn and Kingsley all at once and there was cold hatred in his face as they wove and ducked around him unable to finish him Bellatrix was still fighting too fifty yards away from Voldemort and like her master she dueled three at once Hermione Ginny and Luna all battling their hardest but Bellatrix was equal to them and Harrys attention was diverted as a Killing Curse shot so close to Ginny that she missed death by an inch He changed course running at Bellatrix rather than Voldemort but before he had gone a few steps he was knocked sideways .NOT MY DAUGHTER YOU BITCH !Mrs Weasley threw off her cloak as she ran freeing her arms .Bellatrix spun on the spot roaring with laughter at the sight of her new challenger .OUT OF MY WAY !shouted Mrs Weasley to the three girls and with a swipe of her wand she began to duel .Harry watched with terror and elation as Molly Weasleys wand slashed and twirled and Bellatrix Lestranges smile faltered and became a snarl .Jets of light flew from both wands the floor around the witches feet became hot and cracked both women were fighting to kill .No !Mrs Weasley cried as a few students ran forward trying to come to her aid .Get back !Get back !She is mine !Hundreds of people now lined the walls watching the two fights Voldemort and his three opponents Bellatrix and Molly and Harry stood invisible torn between both wanting to attack and yet to protect unable to be sure that he would not hit the innocent .What will happen to your children when Ive killed you ?taunted Bellatrix as mad as her master capering as Mollys curses danced around her .When Mummys gone the same way as Freddie ?You will never touch our children again !screamed Mrs Weasley .Bellatrix laughed the same exhilarated laugh her cousin Sirius had given as he toppled backward through the veil and suddenly Harry knew what was going to happen before it did .Mollys curse soared beneath Bellatrixs outstretched arm and hit her squarely in the chest directly over her heart .Bellatrixs gloating smile froze her eyes seemed to bulge For the tiniest space of time she knew what had happened and then she toppled and the watching crowd roared and Voldemort screamed .Harry felt as though he turned in slow motion he saw McGonagall Kingsley and Slughorn blasted backward flailing and writhing through the air as Voldemort s fury at the fall of his last best lieutenant exploded with the force of a bomb .Voldemort raised his wand and directed it at Molly Weasley .Protego roared Harry and the Shield Charm expanded in the middle of the Hall and Voldemort stared around for the source as Harry pulled off the Invisibility Cloak at last .The yell of shock the cheers the screams on every side of Harry !HES ALIVE !were stifled at once .The crowd was afraid and silence fell abruptly and completely as Voldemort and Harry looked at each other and began at the same moment to circle each other .I dont want anyone else to try to help Harry said loudly and in the total silence his voice carried like a trumpet call .Its got to be like this .Its got to be me .Voldemort hissed .Potter doesnt mean that he said his red eyes wide .That isnt how he works is it ?Who are you going to use as a shield today Potter ?Nobody said Harry simply .There are no more Horcruxes .Its just you and me .Neither can live while the other survives and one of us is about to leave for good .One of us ?jeered Voldemort and his whole body was taut and his red eyes stared a snake that was about to strike .You think it will be you do you the boy who has survived by accident and because Dumbledore was pulling the strings ?Accident was it when my mother died to save me ?asked Harry .They were still moving sideways both of them in that perfect circle maintaining the same distance from each other and for Harry no face existed but Voldemorts .Accident when I decided to fight in that graveyard ?Accident that I didnt defend myself tonight and still survived and returned to fight again ?Accidents .screamed Voldemort but still he did not strike and the watching crowd was frozen as if Petrified and of the hundreds in the Hall nobody seemed to breathe but they two .Accident and chance and the fact that you crouched and sniveled behind the skirts of greater men and women and permitted me to kill them for you !You wont be killing anyone else tonight said Harry as they circled and stared into each others eyes green into red .You wont be able to kill any of them ever again .Dont you get it ?I was ready to die to stop you from hurting these people But you did not !I meant to and thats what did it .Ive done what my mother did .Theyre protected from you .Havent you noticed how none of the spells you put on them are binding ?You cant torture them .You cant touch them .You dont learn from your mistakes Riddle do you ?You dare Yes I dare said Harry .I know things you dont know Tom Riddle .I know lots of important things that you dont .Want to hear some before you make another big mistake ?Voldemort did not speak but prowled in a circle and Harry knew that he kept him temporarily mesmerized and at bay held back by the faintest possibility that Harry might indeed know a final secret .Is it love again ?said Voldemort his snakes face jeering .Dumbledores favorite solution love which he claimed conquered death though love did not stop him falling from the tower and breaking like an old waxwork ?Love which did not prevent me stamping out your Mudblood mother like a cockroach Potter and nobody seems to love you enough to run forward this time and take my curse .So what will stop you dying now when I strike ?Just one thing said Harry and still they circled each other wrapped in each other held apart by nothing but the last secret .If it is not love that will save you this time said Voldemort you must believe that you have magic that I do not or else a weapon more powerful than mine ?I believe both said Harry and he saw shock flit across the snakelike face though it was instantly dispelled Voldemort began to laugh and the sound was more frightening than his screams humorless and insane it echoed around the silent Hall .You think you know more magic than I do ?he said .Than I than Lord Voldemort who has performed magic that Dumbledore himself never dreamed of ?Oh he dreamed of it said Harry but he knew more than you knew enough not to do what youve done .You mean he was weak !screamed Voldemort .Too weak to dare too weak to take what might have been his what will be mine !No he was cleverer than you said Harry a better wizard a better man .I brought about the death of Albus Dumbledore !You thought you did said Harry but you were wrong .For the first time the watching crowd stirred as the hundreds of people around the walls drew breath as one .Dumbledore is dead Voldemort hurled the words at Harry as though they would cause him unendurable pain .His body decays in the marble tomb in the grounds of this castle I have seen it Potter and he will not return !Yes Dumbledores dead said Harry calmly but you didnt have him killed .He chose his own manner of dying chose it months before he died arranged the whole thing with the man you thought was your servant .What childish dream is this ?said Voldemort but still he did not strike and his red eyes did not waver from Harrys .Severus Snape wasnt yours said Harry .Snape was Dumbledores Dumbledores from the moment you started hunting down my mother .And you never realized it because of the thing you cant understand .You never saw Snape cast a Patronus did you Riddle ?Voldemort did not answer .They continued to circle each other like wolves about to tear each other apart .Snapes Patronus was a doe said Harry the same as my mothers because he loved her for nearly all of his life from the time when they were children .You should have realized he said as he saw Voldemorts nostrils flare he asked you to spare her life didnt he ?He desired her that was all sneered Voldemort but when she had gone he agreed that there were other women and of purer blood worthier of him Of course he told you that said Harry but he was Dumbledores spy from the moment you threatened her and hes been working against you ever since !Dumbledore was already dying when Snape finished him !It matters not !shrieked Voldemort who had followed every word with rapt attention but now let out a cackle of mad laughter .It matters not whether Snape was mine or Dumbledores or what petty obstacles they tried to put in my path !I crushed them as I crushed your mother Snape s supposed great love Oh but it all makes sense Potter and in ways that you do not understand !Dumbledore was trying to keep the Elder Wand from me !He intended that Snape should be the true master of the wand !But I got there ahead of you little boy I reached the wand before you could get your hands on it I understood the truth before you caught up .I killed Severus Snape three hours ago and the Elder Wand the Deathstick the Wand of Destiny is truly mine !Dumbledore s last plan went wrong Harry Potter !Yeah it did said Harry .Youre right .But before you try to kill me Id advise you to think about what youve done .Think and try for some remorse Riddle .What is this ?Of all the things that Harry had said to him beyond any revelation or taunt nothing had shocked Voldemort like this .Harry saw his pupils contract to thin slits saw the skin around his eyes whiten .Its your one last chance said Harry its all youve got left .Ive seen what youll be otherwise .Be a man .try .Try for some remorse .You dare ?said Voldemort again .Yes I dare said Harry because Dumbledores last plan hasnt backfired on me at all .Its backfired on you Riddle .Voldemorts hand was trembling on the Elder Wand and Harry gripped Dracos very tightly .The moment he knew was seconds away .That wand still isnt working properly for you because you murdered the wrong person .Severus Snape was never the true master of the Elder Wand .He never defeated Dumbledore .He killed Arent you listening ?Snape never beat Dumbledorel Dumbledores death was planned between them !Dumbledore intended to die undefeated the wands last true master !If all had gone as planned the wands power would have died with him because it had never been won from him !But then Potter Dumbledore as good as gave me the wand !Voldemorts voice shook with malicious pleasure .I stole the wand from its last masters tomb !I removed it against its last masters wishes !Its power is mine !You still dont get it Riddle do you ?Possessing the wand isnt enough !Holding it using it doesnt make it really yours .Didnt you listen to Ollivander ?The wand chooses the wizard .The Elder Wand recognized a new master before Dumbledore died someone who never even laid a hand on it .The new master removed the wand from Dumbledore against his will never realizing exactly what he had done or that the worlds most dangerous wand had given him its allegiance .Voldemorts chest rose and fell rapidly and Harry could feel the curse coming feel it building inside the wand pointed at his face .The true master of the Elder Wand was Draco Malfoy .Blank shock showed in Voldemorts face for a moment but then it was gone .But what does it matter ?he said softly .Even if you are right Potter it makes no difference to you and me .You no longer have the phoenix wand We duel on skill alone .and after I have killed you I can attend to Draco Malfoy .But youre too late said Harry .Youve missed your chance .I got there first .I overpowered Draco weeks ago .I took this wand from him .Harry twitched the hawthorn wand and he felt the eyes of everyone in the Hall upon it .So it all comes down to this doesnt it ?whispered Harry .Does the wand in your hand know its last master was Disarmed ?Because if it does .I am the true master of the Elder Wand .A redgold glow burst suddenly across the enchanted sky above them as an edge of dazzling sun appeared over the sill of the nearest window .The light hit both of their faces at the same time so that Voldemorts was suddenly a flaming blur .Harry heard the high voice shriek as he too yelled his best hope to the heavens pointing Dracos wand Avada KedavraV Expelliarmus The bang was like a cannon blast and the golden flames that erupted between them at the dead center of the circle they had been treading marked the point where the spells collided .Harry saw Voldemorts green jet meet his own spell saw the Elder Wand fly high dark against the sunrise spinning across the enchanted ceiling like the head of Nagini spinning through the air toward the master it would not kill who had come to take full possession of it at last .And Harry with the unerring skill of the Seeker caught the wand in his free hand as Voldemort fell backward arms splayed the slit pupils of the scarlet eyes rolling upward .Tom Riddle hit the floor with a mundane finality his body feeble and shrunken the white hands empty the snakelike face vacant and unknowing .Voldemort was dead killed by his own rebounding curse and Harry stood with two wands in his hand staring down at his enemys shell .One shivering second of silence the shock of the moment suspended and then the tumult broke around Harry as the screams and the cheers and the roars of the watchers rent the air .The fierce new sun dazzled the windows as they thundered toward him and the first to reach him were Ron and Hermione and it was their arms that were wrapped around him their incomprehensible shouts that deafened him .Then Ginny Neville and Luna were there and then all the Weasleys and Hagrid and Kingsley and McGonagall and Flitwick and Sprout and Harry could not hear a word that anyone was shouting nor tell whose hands were seizing him pulling him trying to hug some part of him hundreds of them pressing in all of them determined to touch the Boy Who Lived the reason it was over at last The sun rose steadily over Hogwarts and the Great Hall blazed with life and light .Harry was an indispensable part of the mingled outpourings of jubilation and mourning of grief and celebration .They wanted him there with them their leader and symbol their savior and their guide and that he had not slept that he craved the company of only a few of them seemed to occur to no one .He must speak to the bereaved clasp their hands witness their tears receive their thanks hear the news now creeping in from every quarter as the morning drew on that the Imperiused up and down the country had come back to themselves that Death Eaters were fleeing or else being captured that the innocent of Azkaban were being released at that very moment and that Kingsley Shacklebolt had been named temporary Minister of Magic .They moved Voldemorts body and laid it in a chamber off the Hall away from the bodies of Fred Tonks Lupin Colin Creevey and fifty others who had died fighting him .McGonagall had replaced the House tables but nobody was sitting according to House anymore All were jumbled together teachers and pupils ghosts and parents centaurs and house elves and Firenze lay recovering in a corner and Grawp peered in through a smashed window and people were throwing food into his laughing mouth .After a while exhausted and drained Harry found himself sitting on a bench beside Luna .Id want some peace and quiet if it were me she said .Id love some he replied .Ill distract them all she said .Use your Cloak .And before he could say a word she had cried Oooh look a Blibbering Humdinger !and pointed out of the window .Everyone who heard looked around and Harry slid the Cloak up over himself and got to his feet .Now he could move through the Hall without interference .He spotted Ginny two tables away she was sitting with her head on her mothers shoulder There would be time to talk later hours and days and maybe years in which to talk .He saw Neville the sword of Gryffindor lying beside his plate as he ate surrounded by a knot of fervent admirers .Along the aisle between the tables he walked and he spotted the three Malfoys huddled together as though unsure whether or not they were supposed to be there but nobody was paying them any attention .Everywhere he looked he saw families reunited and finally he saw the two whose company he craved most .Its me he muttered crouching down between them .Will you come with me ?They stood up at once and together he Ron and Hermione left the Great Hall .Great chunks were missing from the marble staircase part of the balustrade gone and rubble and bloodstains occurred every few steps as they climbed .Somewhere in the distance they could hear Peeves zooming through the corridors singing a victory song of his own composition We did it we bashed them wee Potters the one And Voldys gone moldy so now lets have fun !Really gives a feeling for the scope and tragedy of the thing doesnt it ?said Ron pushing open a door to let Harry and Hermione through .Happiness would come Harry thought but at the moment it was muffled by exhaustion and the pain of losing Fred and Lupin and Tonks pierced him like a physical wound every few steps .Most of all he felt the most stupendous relief and a longing to sleep .But first he owed an explanation to Ron and Hermione who had stuck with him for so long and who deserved the truth .Painstakingly he recounted what he had seen in the Pensieve and what had happened in the forest and they had not even begun to express all their shock and amazement when at last they arrived at the place to which they had been walking though none of them had mentioned their destination .Since he had last seen it the gargoyle guarding the entrance to the headmasters study had been knocked aside it stood lopsided looking a little punchdrunk and Harry wondered whether it would be able to distinguish passwords anymore .Can we go up ?he asked the gargoyle .Feel free groaned the statue .They clambered over him and onto the spiral stone staircase that moved slowly upward like an escalator .Harry pushed open the door at the top .He had one brief glimpse of the stone Pensieve on the desk where he had left it and then an earsplitting noise made him cry out thinking of curses and returning Death Eaters and the rebirth of Voldemort But it was applause .All around the walls the headmasters and headmistresses of Hogwarts were giving him a standing ovation they waved their hats and in some cases their wigs they reached through their frames to grip each others hands they danced up and down on the chairs in which they had been painted Dilys Derwent sobbed unashamedly Dexter Fortescue was waving his eartrumpet and Phineas Nigellus called in his high reedy voice And let it be noted that Slytherin House played its part !Let our contribution not be forgotten !But Harry had eyes only for the man who stood in the largest portrait directly behind the headmasters chair .Tears were sliding down from behind the half moon spectacles into the long silver beard and the pride and the gratitude emanating from him filled Harry with the same balm as phoenix song .At last Harry held up his hands and the portraits fell respectfully silent beaming and mopping their eyes and waiting eagerly for him to speak .He directed his words at Dumbledore however and chose them with enormous care .Exhausted and blearyeyed though he was he must make one last effort seeking one last piece of advice .The thing that was hidden in the Snitch he began I dropped it in the forest .I dont know exactly where but Im not going to go looking for it again .Do you agree ?My dear boy I do said Dumbledore while his fellow pictures looked confused and curious .A wise and courageous decision but no less than I would have expected of you .Does anyone else know where it fell ?No one said Harry and Dumbledore nodded his satisfaction .Im going to keep Ignotuss present though said Harry and Dumbledore beamed .But of course Harry it is yours forever until you pass it on !And then theres this .Harry held up the Elder Wand and Ron and Hermione looked at it with a reverence that even in his befuddled and sleepdeprived state Harry did not like to see .I dont want it said Harry .What ?said Ron loudly .Are you mental ?I know its powerful said Harry wearily .But I was happier with mine .So .He rummaged in the pouch hung around his neck and pulled out the two halves of holly still just connected by the finest thread of phoenix feather .Hermione had said that they could not be repaired that the damage was too severe .All he knew was that if this did not work nothing would .He laid the broken wand upon the headmasters desk touched it with the very tip of the Elder Wand and said Reparo .As his wand resealed red sparks flew out of its end .Harry knew that he had succeeded .He picked up the holly and phoenix wand and felt a sudden warmth in his fingers as though wand and hand were rejoicing at their reunion .Im putting the Elder Wand he told Dumbledore who was watching him with enormous affection and admiration back where it came from .It can stay there .If I die a natural death like Ignotus its power will be broken wont it ?The previous master will never have been defeated .Thatll be the end of it .Dumbledore nodded .They smiled at each other .Are you sure ?said Ron .There was the faintest trace of longing in his voice as he looked at the Elder Wand .I think Harrys right said Hermione quietly .That wands more trouble than its worth said Harry .And quite honestly he turned away from the painted portraits thinking now only of the fourposter bed lying waiting for him in Gryffindor Tower and wondering whether Kreacher might bring him a sandwich there Ive had enough trouble for a lifetime .ayue NINETEEN YEARS LATER Autumn seemed to arrive suddenly that year .The morning of the first of September was crisp and golden as an apple and as the little family bobbed across the rumbling road toward the great sooty station the fumes of car exhausts and the breath of pedestrians sparkled like cobwebs in the cold air .Two large cages rattled on top of the laden trolleys the parents were pushing the owls inside them hooted indignantly and the redheaded girl trailed tearfully behind her brothers clutching her fathers arm .It wont be long and youll be going too Harry told her .Two years sniffed Lily .I want to go now The commuters stared curiously at the owls as the family wove its way toward the barrier between platforms nine and ten .Albuss voice drifted back to Harry over the surrounding clamor his sons had resumed the argument they had started in the car .I wonti I wont be in Slytherin !James give it a rest !said Ginny .I only said he might be said James grinning at his younger brother .Theres nothing wrong with that .He might be in Slyth But James caught his mothers eye and fell silent .The five Potters approached the barrier .With a slightly cocky look over his shoulder at his younger brother James took the trolley from his mother and broke into a run .A moment later he had vanished .Youll write to me wont you ?Albus asked his parents immediately capitalizing on the momentary absence of his brother .Every day if you want us to said Ginny .Not every day said Albus quickly .James says most people only get letters from home about once a month .We wrote to James three times a week last year said Ginny .And you dont want to believe everything he tells you about Hogwarts Harry put in .He likes a laugh your brother .Side by side they pushed the second trolley forward gathering speed .As they reached the barrier Albus winced but no collision came .Instead the family emerged onto platform nine and threequarters which was obscured by thick white steam that was pouring from the scarlet Hogwarts Express .Indistinct figures were swarming through the mist into which James had already disappeared .Where are they ?asked Albus anxiously peering at the hazy forms they passed as they made their way down the platform .Well find them said Ginny reassuringly .But the vapor was dense and it was difficult to make out anybodys faces .Detached from their owners voices sounded unnaturally loud .Harry thought he heard Percy discoursing loudly on broomstick regulations and was quite glad of the excuse not to stop and say hello .I think thats them Al said Ginny suddenly .A group of four people emerged from the mist standing alongside the very last carriage .Their faces only came into focus when Harry Ginny Lily and Albus had drawn right up to them .Hi said Albus sounding immensely relieved .Rose who was already wearing her brandnew Hogwarts robes beamed at him .Parked all right then ?Ron asked Harry .I did .Hermione didnt believe I could pass a Muggle driving test did you ?She thought Id have to Confund the examiner .No I didnt said Hermione I had complete faith in you .As a matter of fact I did Confund him Ron whispered to Harry as together they lifted Albus s trunk and owl onto the train .I only forgot to look in the wing mirror and lets face it I can use a Supersensory Charm for that .Back on the platform they found Lily and Hugo Roses younger brother having an animated discussion about which House they would be sorted into when they finally went to Hogwarts .If youre not in Gryffindor well disinherit you said Ron but no pressure .Ron Lily and Hugo laughed but Albus and Rose looked solemn .He doesnt mean it said Hermione and Ginny but Ron was no longer paying attention .Catching Harrys eye he nodded covertly to a point some fifty yards away .The steam had thinned for a moment and three people stood in sharp relief against the shifting mist .Look who it is .Draco Malfoy was standing there with his wife and son a dark coat buttoned up to his throat .His hair was receding somewhat which emphasized the pointed chin .The new boy resembled Draco as much as Albus resembled Harry .Draco caught sight of Harry Ron Hermione and Ginny staring at him nodded curtly and turned away again .So thats little Scorpius said Ron under his breath .Make sure you beat him in every test Rosie .Thank God you inherited your mothers brains .Ron for heavens sake said Hermione half stern half amused .Dont try to turn them against each other before theyve even started school !Youre right sorry said Ron but unable to help himself he added Dont get too friendly with him though Rosie .Granddad Weasley would never forgive you if you married a pureblood .Hey !James had reappeared he had divested himself of his trunk owl and trolley and was evidently bursting with news .Teddys back there he said breathlessly pointing back over his shoulder into the billowing clouds of steam .Just seen him !And guess what hes doing ?Snogging Victoire He gazed up at the adults evidently disappointed by the lack of reaction .Our Teddy !Teddy Lupin Snogging our Victoire !Our cousin !And I asked Teddy what he was doing You interrupted them ?said Ginny .You are so like Ron and he said hed come to see her off !And then he told me to go away .Hes snogging her !James added as though worried he had not made himself clear .Oh it would be lovely if they got married !whispered Lily ecstatically .Teddy would really be part of the family then !He already comes round for dinner about four times a week said Harry .Why dont we just invite him to live with us and have done with it ?Yeah !said James enthusiastically .I dont mind sharing with A1 Teddy could have my room !No said Harry firmly you and A1 will share a room only when I want the house demolished .He checked the battered old watch that had once been Fabian Prewetts .Its nearly eleven youd better get on board .Dont forget to give Neville our love !Ginny told James as she hugged him .Mum !I cant give a professor love But you know Neville James rolled his eyes .Outside yeah but at school hes Professor Longbottom isnt he ?I cant walk into Herbology and give him love .Shaking his head at his mothers foolishness he vented his feelings by aiming a kick at Albus .See you later Al .Watch out for the thestrals .I thought they were invisible ?You said they were invisible !But James merely laughed permitted his mother to kiss him gave his father a fleeting hug then leapt onto the rapidly filling train .They saw him wave then sprint away up the corridor to find his friends .Thestrals are nothing to worry about Harry told Albus .Theyre gentle things theres nothing scary about them .Anyway you wont be going up to school in the carriages youll be going in the boats .Ginny kissed Albus goodbye .See you at Christmas .Bye Al said Harry as his son hugged him .Dont forget Hagrids invited you to tea next Friday .Dont mess with Peeves .Dont duel anyone till youve learned how .And dont let James wind you up .What if Im in Slytherin ?The whisper was for his father alone and Harry knew that only the moment of departure could have forced Albus to reveal how great and sincere that fear was .Harry crouched down so that Albus s face was slightly above his own .Alone of Harrys three children Albus had inherited Lilys eyes .Albus Severus Harry said quietly so that nobody but Ginny could hear and she was tactful enough to pretend to be waving to Rose who was now on the train you were named for two headmasters of Hogwarts .One of them was a Slytherin and he was probably the bravest man I ever knew .But just say then Slytherin House will have gained an excellent student wont it ?It doesnt matter to us Al .But if it matters to you youll be able to choose Gryffindor over Slytherin .The Sorting Hat takes your choice into account .Really ?It did for me said Harry .He had never told any of his children that before and he saw the wonder in Albuss face when he said it .But now the doors were slamming all along the scarlet train and the blurred outlines of parents were swarming forward for final kisses lastminute reminders .Albus jumped into the carriage and Ginny closed the door behind him .Students were hanging from the windows nearest them .A great number of faces both on the train and off seemed to be turned toward Harry .Why are they all staring ?demanded Albus as he and Rose craned around to look at the other students .Dont let it worry you said Ron .Its me .Im extremely famous .Albus Rose Hugo and Lily laughed .The train began to move and Harry walked alongside it watching his sons thin face already ablaze with excitement .Harry kept smiling and waving even though it was like a little bereavement watching his son glide away from him .The last trace of steam evaporated in the autumn air .The train rounded a corner .Harrys hand was still raised in farewell .Hell be all right murmured Ginny .As Harry looked at her he lowered his hand absentmindedly and touched the lightning scar on his forehead .I know he will .The scar had not pained Harry for nineteen years .All was well . \ No newline at end of file diff --git a/text/frank.txt b/text/frank.txt new file mode 100644 index 0000000..ae9f3de --- /dev/null +++ b/text/frank.txt @@ -0,0 +1,7317 @@ + +Letter 1 + +To Mrs. Saville, England. + + +St. Petersburgh, Dec. 11th, 17—. + + +You will rejoice to hear that no disaster has accompanied the +commencement of an enterprise which you have regarded with such evil +forebodings. I arrived here yesterday, and my first task is to assure +my dear sister of my welfare and increasing confidence in the success +of my undertaking. + +I am already far north of London, and as I walk in the streets of +Petersburgh, I feel a cold northern breeze play upon my cheeks, which +braces my nerves and fills me with delight. Do you understand this +feeling? This breeze, which has travelled from the regions towards +which I am advancing, gives me a foretaste of those icy climes. +Inspirited by this wind of promise, my daydreams become more fervent +and vivid. I try in vain to be persuaded that the pole is the seat of +frost and desolation; it ever presents itself to my imagination as the +region of beauty and delight. There, Margaret, the sun is for ever +visible, its broad disk just skirting the horizon and diffusing a +perpetual splendour. There—for with your leave, my sister, I will put +some trust in preceding navigators—there snow and frost are banished; +and, sailing over a calm sea, we may be wafted to a land surpassing in +wonders and in beauty every region hitherto discovered on the habitable +globe. Its productions and features may be without example, as the +phenomena of the heavenly bodies undoubtedly are in those undiscovered +solitudes. What may not be expected in a country of eternal light? I +may there discover the wondrous power which attracts the needle and may +regulate a thousand celestial observations that require only this +voyage to render their seeming eccentricities consistent for ever. I +shall satiate my ardent curiosity with the sight of a part of the world +never before visited, and may tread a land never before imprinted by +the foot of man. These are my enticements, and they are sufficient to +conquer all fear of danger or death and to induce me to commence this +laborious voyage with the joy a child feels when he embarks in a little +boat, with his holiday mates, on an expedition of discovery up his +native river. But supposing all these conjectures to be false, you +cannot contest the inestimable benefit which I shall confer on all +mankind, to the last generation, by discovering a passage near the pole +to those countries, to reach which at present so many months are +requisite; or by ascertaining the secret of the magnet, which, if at +all possible, can only be effected by an undertaking such as mine. + +These reflections have dispelled the agitation with which I began my +letter, and I feel my heart glow with an enthusiasm which elevates me +to heaven, for nothing contributes so much to tranquillise the mind as +a steady purpose—a point on which the soul may fix its intellectual +eye. This expedition has been the favourite dream of my early years. I +have read with ardour the accounts of the various voyages which have +been made in the prospect of arriving at the North Pacific Ocean +through the seas which surround the pole. You may remember that a +history of all the voyages made for purposes of discovery composed the +whole of our good Uncle Thomas’ library. My education was neglected, +yet I was passionately fond of reading. These volumes were my study +day and night, and my familiarity with them increased that regret which +I had felt, as a child, on learning that my father’s dying injunction +had forbidden my uncle to allow me to embark in a seafaring life. + +These visions faded when I perused, for the first time, those poets +whose effusions entranced my soul and lifted it to heaven. I also +became a poet and for one year lived in a paradise of my own creation; +I imagined that I also might obtain a niche in the temple where the +names of Homer and Shakespeare are consecrated. You are well +acquainted with my failure and how heavily I bore the disappointment. +But just at that time I inherited the fortune of my cousin, and my +thoughts were turned into the channel of their earlier bent. + +Six years have passed since I resolved on my present undertaking. I +can, even now, remember the hour from which I dedicated myself to this +great enterprise. I commenced by inuring my body to hardship. I +accompanied the whale-fishers on several expeditions to the North Sea; +I voluntarily endured cold, famine, thirst, and want of sleep; I often +worked harder than the common sailors during the day and devoted my +nights to the study of mathematics, the theory of medicine, and those +branches of physical science from which a naval adventurer might derive +the greatest practical advantage. Twice I actually hired myself as an +under-mate in a Greenland whaler, and acquitted myself to admiration. I +must own I felt a little proud when my captain offered me the second +dignity in the vessel and entreated me to remain with the greatest +earnestness, so valuable did he consider my services. + +And now, dear Margaret, do I not deserve to accomplish some great purpose? +My life might have been passed in ease and luxury, but I preferred glory to +every enticement that wealth placed in my path. Oh, that some encouraging +voice would answer in the affirmative! My courage and my resolution is +firm; but my hopes fluctuate, and my spirits are often depressed. I am +about to proceed on a long and difficult voyage, the emergencies of which +will demand all my fortitude: I am required not only to raise the spirits +of others, but sometimes to sustain my own, when theirs are failing. + +This is the most favourable period for travelling in Russia. They fly +quickly over the snow in their sledges; the motion is pleasant, and, in +my opinion, far more agreeable than that of an English stagecoach. The +cold is not excessive, if you are wrapped in furs—a dress which I have +already adopted, for there is a great difference between walking the +deck and remaining seated motionless for hours, when no exercise +prevents the blood from actually freezing in your veins. I have no +ambition to lose my life on the post-road between St. Petersburgh and +Archangel. + +I shall depart for the latter town in a fortnight or three weeks; and my +intention is to hire a ship there, which can easily be done by paying the +insurance for the owner, and to engage as many sailors as I think necessary +among those who are accustomed to the whale-fishing. I do not intend to +sail until the month of June; and when shall I return? Ah, dear sister, how +can I answer this question? If I succeed, many, many months, perhaps years, +will pass before you and I may meet. If I fail, you will see me again soon, +or never. + +Farewell, my dear, excellent Margaret. Heaven shower down blessings on you, +and save me, that I may again and again testify my gratitude for all your +love and kindness. + +Your affectionate brother, + +R. Walton + + + + +Letter 2 + +_To Mrs. Saville, England._ + +Archangel, 28th March, 17—. + + +How slowly the time passes here, encompassed as I am by frost and snow! +Yet a second step is taken towards my enterprise. I have hired a +vessel and am occupied in collecting my sailors; those whom I have +already engaged appear to be men on whom I can depend and are certainly +possessed of dauntless courage. + +But I have one want which I have never yet been able to satisfy, and the +absence of the object of which I now feel as a most severe evil, I have no +friend, Margaret: when I am glowing with the enthusiasm of success, there +will be none to participate my joy; if I am assailed by disappointment, no +one will endeavour to sustain me in dejection. I shall commit my thoughts +to paper, it is true; but that is a poor medium for the communication of +feeling. I desire the company of a man who could sympathise with me, whose +eyes would reply to mine. You may deem me romantic, my dear sister, but I +bitterly feel the want of a friend. I have no one near me, gentle yet +courageous, possessed of a cultivated as well as of a capacious mind, whose +tastes are like my own, to approve or amend my plans. How would such a +friend repair the faults of your poor brother! I am too ardent in execution +and too impatient of difficulties. But it is a still greater evil to me +that I am self-educated: for the first fourteen years of my life I ran wild +on a common and read nothing but our Uncle Thomas’ books of voyages. +At that age I became acquainted with the celebrated poets of our own +country; but it was only when it had ceased to be in my power to derive its +most important benefits from such a conviction that I perceived the +necessity of becoming acquainted with more languages than that of my native +country. Now I am twenty-eight and am in reality more illiterate than many +schoolboys of fifteen. It is true that I have thought more and that my +daydreams are more extended and magnificent, but they want (as the painters +call it) _keeping;_ and I greatly need a friend who would have sense +enough not to despise me as romantic, and affection enough for me to +endeavour to regulate my mind. + +Well, these are useless complaints; I shall certainly find no friend on the +wide ocean, nor even here in Archangel, among merchants and seamen. Yet +some feelings, unallied to the dross of human nature, beat even in these +rugged bosoms. My lieutenant, for instance, is a man of wonderful courage +and enterprise; he is madly desirous of glory, or rather, to word my phrase +more characteristically, of advancement in his profession. He is an +Englishman, and in the midst of national and professional prejudices, +unsoftened by cultivation, retains some of the noblest endowments of +humanity. I first became acquainted with him on board a whale vessel; +finding that he was unemployed in this city, I easily engaged him to assist +in my enterprise. + +The master is a person of an excellent disposition and is remarkable in the +ship for his gentleness and the mildness of his discipline. This +circumstance, added to his well-known integrity and dauntless courage, made +me very desirous to engage him. A youth passed in solitude, my best years +spent under your gentle and feminine fosterage, has so refined the +groundwork of my character that I cannot overcome an intense distaste to +the usual brutality exercised on board ship: I have never believed it to be +necessary, and when I heard of a mariner equally noted for his kindliness +of heart and the respect and obedience paid to him by his crew, I felt +myself peculiarly fortunate in being able to secure his services. I heard +of him first in rather a romantic manner, from a lady who owes to him the +happiness of her life. This, briefly, is his story. Some years ago he loved +a young Russian lady of moderate fortune, and having amassed a considerable +sum in prize-money, the father of the girl consented to the match. He saw +his mistress once before the destined ceremony; but she was bathed in +tears, and throwing herself at his feet, entreated him to spare her, +confessing at the same time that she loved another, but that he was poor, +and that her father would never consent to the union. My generous friend +reassured the suppliant, and on being informed of the name of her lover, +instantly abandoned his pursuit. He had already bought a farm with his +money, on which he had designed to pass the remainder of his life; but he +bestowed the whole on his rival, together with the remains of his +prize-money to purchase stock, and then himself solicited the young +woman’s father to consent to her marriage with her lover. But the old +man decidedly refused, thinking himself bound in honour to my friend, who, +when he found the father inexorable, quitted his country, nor returned +until he heard that his former mistress was married according to her +inclinations. “What a noble fellow!” you will exclaim. He is +so; but then he is wholly uneducated: he is as silent as a Turk, and a kind +of ignorant carelessness attends him, which, while it renders his conduct +the more astonishing, detracts from the interest and sympathy which +otherwise he would command. + +Yet do not suppose, because I complain a little or because I can +conceive a consolation for my toils which I may never know, that I am +wavering in my resolutions. Those are as fixed as fate, and my voyage +is only now delayed until the weather shall permit my embarkation. The +winter has been dreadfully severe, but the spring promises well, and it +is considered as a remarkably early season, so that perhaps I may sail +sooner than I expected. I shall do nothing rashly: you know me +sufficiently to confide in my prudence and considerateness whenever the +safety of others is committed to my care. + +I cannot describe to you my sensations on the near prospect of my +undertaking. It is impossible to communicate to you a conception of +the trembling sensation, half pleasurable and half fearful, with which +I am preparing to depart. I am going to unexplored regions, to “the +land of mist and snow,” but I shall kill no albatross; therefore do not +be alarmed for my safety or if I should come back to you as worn and +woeful as the “Ancient Mariner.” You will smile at my allusion, but I +will disclose a secret. I have often attributed my attachment to, my +passionate enthusiasm for, the dangerous mysteries of ocean to that +production of the most imaginative of modern poets. There is something +at work in my soul which I do not understand. I am practically +industrious—painstaking, a workman to execute with perseverance and +labour—but besides this there is a love for the marvellous, a belief +in the marvellous, intertwined in all my projects, which hurries me out +of the common pathways of men, even to the wild sea and unvisited +regions I am about to explore. + +But to return to dearer considerations. Shall I meet you again, after +having traversed immense seas, and returned by the most southern cape of +Africa or America? I dare not expect such success, yet I cannot bear to +look on the reverse of the picture. Continue for the present to write to +me by every opportunity: I may receive your letters on some occasions when +I need them most to support my spirits. I love you very tenderly. +Remember me with affection, should you never hear from me again. + +Your affectionate brother, + Robert Walton + + + + +Letter 3 + +_To Mrs. Saville, England._ + +July 7th, 17—. + + +My dear Sister, + +I write a few lines in haste to say that I am safe—and well advanced +on my voyage. This letter will reach England by a merchantman now on +its homeward voyage from Archangel; more fortunate than I, who may not +see my native land, perhaps, for many years. I am, however, in good +spirits: my men are bold and apparently firm of purpose, nor do the +floating sheets of ice that continually pass us, indicating the dangers +of the region towards which we are advancing, appear to dismay them. We +have already reached a very high latitude; but it is the height of +summer, and although not so warm as in England, the southern gales, +which blow us speedily towards those shores which I so ardently desire +to attain, breathe a degree of renovating warmth which I had not +expected. + +No incidents have hitherto befallen us that would make a figure in a +letter. One or two stiff gales and the springing of a leak are +accidents which experienced navigators scarcely remember to record, and +I shall be well content if nothing worse happen to us during our voyage. + +Adieu, my dear Margaret. Be assured that for my own sake, as well as +yours, I will not rashly encounter danger. I will be cool, +persevering, and prudent. + +But success _shall_ crown my endeavours. Wherefore not? Thus far I +have gone, tracing a secure way over the pathless seas, the very stars +themselves being witnesses and testimonies of my triumph. Why not +still proceed over the untamed yet obedient element? What can stop the +determined heart and resolved will of man? + +My swelling heart involuntarily pours itself out thus. But I must +finish. Heaven bless my beloved sister! + +R.W. + + + + +Letter 4 + + +_To Mrs. Saville, England._ + +August 5th, 17—. + +So strange an accident has happened to us that I cannot forbear +recording it, although it is very probable that you will see me before +these papers can come into your possession. + +Last Monday (July 31st) we were nearly surrounded by ice, which closed +in the ship on all sides, scarcely leaving her the sea-room in which +she floated. Our situation was somewhat dangerous, especially as we +were compassed round by a very thick fog. We accordingly lay to, +hoping that some change would take place in the atmosphere and weather. + +About two o’clock the mist cleared away, and we beheld, stretched out +in every direction, vast and irregular plains of ice, which seemed to +have no end. Some of my comrades groaned, and my own mind began to +grow watchful with anxious thoughts, when a strange sight suddenly +attracted our attention and diverted our solicitude from our own +situation. We perceived a low carriage, fixed on a sledge and drawn by +dogs, pass on towards the north, at the distance of half a mile; a +being which had the shape of a man, but apparently of gigantic stature, +sat in the sledge and guided the dogs. We watched the rapid progress +of the traveller with our telescopes until he was lost among the +distant inequalities of the ice. + +This appearance excited our unqualified wonder. We were, as we believed, +many hundred miles from any land; but this apparition seemed to denote that +it was not, in reality, so distant as we had supposed. Shut in, however, by +ice, it was impossible to follow his track, which we had observed with the +greatest attention. + +About two hours after this occurrence we heard the ground sea, and before +night the ice broke and freed our ship. We, however, lay to until the +morning, fearing to encounter in the dark those large loose masses which +float about after the breaking up of the ice. I profited of this time to +rest for a few hours. + +In the morning, however, as soon as it was light, I went upon deck and +found all the sailors busy on one side of the vessel, apparently +talking to someone in the sea. It was, in fact, a sledge, like that we +had seen before, which had drifted towards us in the night on a large +fragment of ice. Only one dog remained alive; but there was a human +being within it whom the sailors were persuading to enter the vessel. +He was not, as the other traveller seemed to be, a savage inhabitant of +some undiscovered island, but a European. When I appeared on deck the +master said, “Here is our captain, and he will not allow you to perish +on the open sea.” + +On perceiving me, the stranger addressed me in English, although with a +foreign accent. “Before I come on board your vessel,” said he, +“will you have the kindness to inform me whither you are bound?” + +You may conceive my astonishment on hearing such a question addressed +to me from a man on the brink of destruction and to whom I should have +supposed that my vessel would have been a resource which he would not +have exchanged for the most precious wealth the earth can afford. I +replied, however, that we were on a voyage of discovery towards the +northern pole. + +Upon hearing this he appeared satisfied and consented to come on board. +Good God! Margaret, if you had seen the man who thus capitulated for +his safety, your surprise would have been boundless. His limbs were +nearly frozen, and his body dreadfully emaciated by fatigue and +suffering. I never saw a man in so wretched a condition. We attempted +to carry him into the cabin, but as soon as he had quitted the fresh +air he fainted. We accordingly brought him back to the deck and +restored him to animation by rubbing him with brandy and forcing him to +swallow a small quantity. As soon as he showed signs of life we +wrapped him up in blankets and placed him near the chimney of the +kitchen stove. By slow degrees he recovered and ate a little soup, +which restored him wonderfully. + +Two days passed in this manner before he was able to speak, and I often +feared that his sufferings had deprived him of understanding. When he +had in some measure recovered, I removed him to my own cabin and +attended on him as much as my duty would permit. I never saw a more +interesting creature: his eyes have generally an expression of +wildness, and even madness, but there are moments when, if anyone +performs an act of kindness towards him or does him any the most +trifling service, his whole countenance is lighted up, as it were, with +a beam of benevolence and sweetness that I never saw equalled. But he +is generally melancholy and despairing, and sometimes he gnashes his +teeth, as if impatient of the weight of woes that oppresses him. + +When my guest was a little recovered I had great trouble to keep off +the men, who wished to ask him a thousand questions; but I would not +allow him to be tormented by their idle curiosity, in a state of body +and mind whose restoration evidently depended upon entire repose. +Once, however, the lieutenant asked why he had come so far upon the ice +in so strange a vehicle. + +His countenance instantly assumed an aspect of the deepest gloom, and +he replied, “To seek one who fled from me.” + +“And did the man whom you pursued travel in the same fashion?” + +“Yes.” + +“Then I fancy we have seen him, for the day before we picked you up we +saw some dogs drawing a sledge, with a man in it, across the ice.” + +This aroused the stranger’s attention, and he asked a multitude of +questions concerning the route which the dæmon, as he called him, had +pursued. Soon after, when he was alone with me, he said, “I have, +doubtless, excited your curiosity, as well as that of these good +people; but you are too considerate to make inquiries.” + +“Certainly; it would indeed be very impertinent and inhuman in me to +trouble you with any inquisitiveness of mine.” + +“And yet you rescued me from a strange and perilous situation; you have +benevolently restored me to life.” + +Soon after this he inquired if I thought that the breaking up of the +ice had destroyed the other sledge. I replied that I could not answer +with any degree of certainty, for the ice had not broken until near +midnight, and the traveller might have arrived at a place of safety +before that time; but of this I could not judge. + +From this time a new spirit of life animated the decaying frame of the +stranger. He manifested the greatest eagerness to be upon deck to watch for +the sledge which had before appeared; but I have persuaded him to remain in +the cabin, for he is far too weak to sustain the rawness of the atmosphere. +I have promised that someone should watch for him and give him instant +notice if any new object should appear in sight. + +Such is my journal of what relates to this strange occurrence up to the +present day. The stranger has gradually improved in health but is very +silent and appears uneasy when anyone except myself enters his cabin. +Yet his manners are so conciliating and gentle that the sailors are all +interested in him, although they have had very little communication +with him. For my own part, I begin to love him as a brother, and his +constant and deep grief fills me with sympathy and compassion. He must +have been a noble creature in his better days, being even now in wreck +so attractive and amiable. + +I said in one of my letters, my dear Margaret, that I should find no friend +on the wide ocean; yet I have found a man who, before his spirit had been +broken by misery, I should have been happy to have possessed as the brother +of my heart. + +I shall continue my journal concerning the stranger at intervals, +should I have any fresh incidents to record. + + + + +August 13th, 17—. + + +My affection for my guest increases every day. He excites at once my +admiration and my pity to an astonishing degree. How can I see so +noble a creature destroyed by misery without feeling the most poignant +grief? He is so gentle, yet so wise; his mind is so cultivated, and +when he speaks, although his words are culled with the choicest art, +yet they flow with rapidity and unparalleled eloquence. + +He is now much recovered from his illness and is continually on the deck, +apparently watching for the sledge that preceded his own. Yet, although +unhappy, he is not so utterly occupied by his own misery but that he +interests himself deeply in the projects of others. He has frequently +conversed with me on mine, which I have communicated to him without +disguise. He entered attentively into all my arguments in favour of my +eventual success and into every minute detail of the measures I had taken +to secure it. I was easily led by the sympathy which he evinced to use the +language of my heart, to give utterance to the burning ardour of my soul +and to say, with all the fervour that warmed me, how gladly I would +sacrifice my fortune, my existence, my every hope, to the furtherance of my +enterprise. One man’s life or death were but a small price to pay for +the acquirement of the knowledge which I sought, for the dominion I should +acquire and transmit over the elemental foes of our race. As I spoke, a +dark gloom spread over my listener’s countenance. At first I +perceived that he tried to suppress his emotion; he placed his hands before +his eyes, and my voice quivered and failed me as I beheld tears trickle +fast from between his fingers; a groan burst from his heaving breast. I +paused; at length he spoke, in broken accents: “Unhappy man! Do you +share my madness? Have you drunk also of the intoxicating draught? Hear me; +let me reveal my tale, and you will dash the cup from your lips!” + +Such words, you may imagine, strongly excited my curiosity; but the +paroxysm of grief that had seized the stranger overcame his weakened +powers, and many hours of repose and tranquil conversation were +necessary to restore his composure. + +Having conquered the violence of his feelings, he appeared to despise +himself for being the slave of passion; and quelling the dark tyranny of +despair, he led me again to converse concerning myself personally. He asked +me the history of my earlier years. The tale was quickly told, but it +awakened various trains of reflection. I spoke of my desire of finding a +friend, of my thirst for a more intimate sympathy with a fellow mind than +had ever fallen to my lot, and expressed my conviction that a man could +boast of little happiness who did not enjoy this blessing. + +“I agree with you,” replied the stranger; “we are +unfashioned creatures, but half made up, if one wiser, better, dearer than +ourselves—such a friend ought to be—do not lend his aid to +perfectionate our weak and faulty natures. I once had a friend, the most +noble of human creatures, and am entitled, therefore, to judge respecting +friendship. You have hope, and the world before you, and have no cause for +despair. But I—I have lost everything and cannot begin life +anew.” + +As he said this his countenance became expressive of a calm, settled +grief that touched me to the heart. But he was silent and presently +retired to his cabin. + +Even broken in spirit as he is, no one can feel more deeply than he +does the beauties of nature. The starry sky, the sea, and every sight +afforded by these wonderful regions seem still to have the power of +elevating his soul from earth. Such a man has a double existence: he +may suffer misery and be overwhelmed by disappointments, yet when he +has retired into himself, he will be like a celestial spirit that has a +halo around him, within whose circle no grief or folly ventures. + +Will you smile at the enthusiasm I express concerning this divine +wanderer? You would not if you saw him. You have been tutored and +refined by books and retirement from the world, and you are therefore +somewhat fastidious; but this only renders you the more fit to +appreciate the extraordinary merits of this wonderful man. Sometimes I +have endeavoured to discover what quality it is which he possesses that +elevates him so immeasurably above any other person I ever knew. I +believe it to be an intuitive discernment, a quick but never-failing +power of judgment, a penetration into the causes of things, unequalled +for clearness and precision; add to this a facility of expression and a +voice whose varied intonations are soul-subduing music. + + + + +August 19th, 17—. + + +Yesterday the stranger said to me, “You may easily perceive, Captain +Walton, that I have suffered great and unparalleled misfortunes. I had +determined at one time that the memory of these evils should die with +me, but you have won me to alter my determination. You seek for +knowledge and wisdom, as I once did; and I ardently hope that the +gratification of your wishes may not be a serpent to sting you, as mine +has been. I do not know that the relation of my disasters will be +useful to you; yet, when I reflect that you are pursuing the same +course, exposing yourself to the same dangers which have rendered me +what I am, I imagine that you may deduce an apt moral from my tale, one +that may direct you if you succeed in your undertaking and console you +in case of failure. Prepare to hear of occurrences which are usually +deemed marvellous. Were we among the tamer scenes of nature I might +fear to encounter your unbelief, perhaps your ridicule; but many things +will appear possible in these wild and mysterious regions which would +provoke the laughter of those unacquainted with the ever-varied powers +of nature; nor can I doubt but that my tale conveys in its series +internal evidence of the truth of the events of which it is composed.” + +You may easily imagine that I was much gratified by the offered +communication, yet I could not endure that he should renew his grief by +a recital of his misfortunes. I felt the greatest eagerness to hear +the promised narrative, partly from curiosity and partly from a strong +desire to ameliorate his fate if it were in my power. I expressed +these feelings in my answer. + +“I thank you,” he replied, “for your sympathy, but it is +useless; my fate is nearly fulfilled. I wait but for one event, and then I +shall repose in peace. I understand your feeling,” continued he, +perceiving that I wished to interrupt him; “but you are mistaken, my +friend, if thus you will allow me to name you; nothing can alter my +destiny; listen to my history, and you will perceive how irrevocably it is +determined.” + +He then told me that he would commence his narrative the next day when I +should be at leisure. This promise drew from me the warmest thanks. I have +resolved every night, when I am not imperatively occupied by my duties, to +record, as nearly as possible in his own words, what he has related during +the day. If I should be engaged, I will at least make notes. This +manuscript will doubtless afford you the greatest pleasure; but to me, who +know him, and who hear it from his own lips—with what interest and +sympathy shall I read it in some future day! Even now, as I commence my +task, his full-toned voice swells in my ears; his lustrous eyes dwell on me +with all their melancholy sweetness; I see his thin hand raised in +animation, while the lineaments of his face are irradiated by the soul +within. Strange and harrowing must be his story, frightful the storm which +embraced the gallant vessel on its course and wrecked it—thus! + + + + +Chapter 1 + + +I am by birth a Genevese, and my family is one of the most +distinguished of that republic. My ancestors had been for many years +counsellors and syndics, and my father had filled several public +situations with honour and reputation. He was respected by all who +knew him for his integrity and indefatigable attention to public +business. He passed his younger days perpetually occupied by the +affairs of his country; a variety of circumstances had prevented his +marrying early, nor was it until the decline of life that he became a +husband and the father of a family. + +As the circumstances of his marriage illustrate his character, I cannot +refrain from relating them. One of his most intimate friends was a +merchant who, from a flourishing state, fell, through numerous +mischances, into poverty. This man, whose name was Beaufort, was of a +proud and unbending disposition and could not bear to live in poverty +and oblivion in the same country where he had formerly been +distinguished for his rank and magnificence. Having paid his debts, +therefore, in the most honourable manner, he retreated with his +daughter to the town of Lucerne, where he lived unknown and in +wretchedness. My father loved Beaufort with the truest friendship and +was deeply grieved by his retreat in these unfortunate circumstances. +He bitterly deplored the false pride which led his friend to a conduct +so little worthy of the affection that united them. He lost no time in +endeavouring to seek him out, with the hope of persuading him to begin +the world again through his credit and assistance. + +Beaufort had taken effectual measures to conceal himself, and it was ten +months before my father discovered his abode. Overjoyed at this discovery, +he hastened to the house, which was situated in a mean street near the +Reuss. But when he entered, misery and despair alone welcomed him. Beaufort +had saved but a very small sum of money from the wreck of his fortunes, but +it was sufficient to provide him with sustenance for some months, and in +the meantime he hoped to procure some respectable employment in a +merchant’s house. The interval was, consequently, spent in inaction; +his grief only became more deep and rankling when he had leisure for +reflection, and at length it took so fast hold of his mind that at the end +of three months he lay on a bed of sickness, incapable of any exertion. + +His daughter attended him with the greatest tenderness, but she saw +with despair that their little fund was rapidly decreasing and that +there was no other prospect of support. But Caroline Beaufort +possessed a mind of an uncommon mould, and her courage rose to support +her in her adversity. She procured plain work; she plaited straw and +by various means contrived to earn a pittance scarcely sufficient to +support life. + +Several months passed in this manner. Her father grew worse; her time +was more entirely occupied in attending him; her means of subsistence +decreased; and in the tenth month her father died in her arms, leaving +her an orphan and a beggar. This last blow overcame her, and she knelt +by Beaufort’s coffin weeping bitterly, when my father entered the +chamber. He came like a protecting spirit to the poor girl, who +committed herself to his care; and after the interment of his friend he +conducted her to Geneva and placed her under the protection of a +relation. Two years after this event Caroline became his wife. + +There was a considerable difference between the ages of my parents, but +this circumstance seemed to unite them only closer in bonds of devoted +affection. There was a sense of justice in my father’s upright mind +which rendered it necessary that he should approve highly to love +strongly. Perhaps during former years he had suffered from the +late-discovered unworthiness of one beloved and so was disposed to set +a greater value on tried worth. There was a show of gratitude and +worship in his attachment to my mother, differing wholly from the +doting fondness of age, for it was inspired by reverence for her +virtues and a desire to be the means of, in some degree, recompensing +her for the sorrows she had endured, but which gave inexpressible grace +to his behaviour to her. Everything was made to yield to her wishes +and her convenience. He strove to shelter her, as a fair exotic is +sheltered by the gardener, from every rougher wind and to surround her +with all that could tend to excite pleasurable emotion in her soft and +benevolent mind. Her health, and even the tranquillity of her hitherto +constant spirit, had been shaken by what she had gone through. During +the two years that had elapsed previous to their marriage my father had +gradually relinquished all his public functions; and immediately after +their union they sought the pleasant climate of Italy, and the change +of scene and interest attendant on a tour through that land of wonders, +as a restorative for her weakened frame. + +From Italy they visited Germany and France. I, their eldest child, was born +at Naples, and as an infant accompanied them in their rambles. I remained +for several years their only child. Much as they were attached to each +other, they seemed to draw inexhaustible stores of affection from a very +mine of love to bestow them upon me. My mother’s tender caresses and +my father’s smile of benevolent pleasure while regarding me are my +first recollections. I was their plaything and their idol, and something +better—their child, the innocent and helpless creature bestowed on +them by Heaven, whom to bring up to good, and whose future lot it was in +their hands to direct to happiness or misery, according as they fulfilled +their duties towards me. With this deep consciousness of what they owed +towards the being to which they had given life, added to the active spirit +of tenderness that animated both, it may be imagined that while during +every hour of my infant life I received a lesson of patience, of charity, +and of self-control, I was so guided by a silken cord that all seemed but +one train of enjoyment to me. + +For a long time I was their only care. My mother had much desired to have a +daughter, but I continued their single offspring. When I was about five +years old, while making an excursion beyond the frontiers of Italy, they +passed a week on the shores of the Lake of Como. Their benevolent +disposition often made them enter the cottages of the poor. This, to my +mother, was more than a duty; it was a necessity, a +passion—remembering what she had suffered, and how she had been +relieved—for her to act in her turn the guardian angel to the +afflicted. During one of their walks a poor cot in the foldings of a vale +attracted their notice as being singularly disconsolate, while the number +of half-clothed children gathered about it spoke of penury in its worst +shape. One day, when my father had gone by himself to Milan, my mother, +accompanied by me, visited this abode. She found a peasant and his wife, +hard working, bent down by care and labour, distributing a scanty meal to +five hungry babes. Among these there was one which attracted my mother far +above all the rest. She appeared of a different stock. The four others were +dark-eyed, hardy little vagrants; this child was thin and very fair. Her +hair was the brightest living gold, and despite the poverty of her +clothing, seemed to set a crown of distinction on her head. Her brow was +clear and ample, her blue eyes cloudless, and her lips and the moulding of +her face so expressive of sensibility and sweetness that none could behold +her without looking on her as of a distinct species, a being heaven-sent, +and bearing a celestial stamp in all her features. + +The peasant woman, perceiving that my mother fixed eyes of wonder and +admiration on this lovely girl, eagerly communicated her history. She was +not her child, but the daughter of a Milanese nobleman. Her mother was a +German and had died on giving her birth. The infant had been placed with +these good people to nurse: they were better off then. They had not been +long married, and their eldest child was but just born. The father of their +charge was one of those Italians nursed in the memory of the antique glory +of Italy—one among the _schiavi ognor frementi,_ who exerted +himself to obtain the liberty of his country. He became the victim of its +weakness. Whether he had died or still lingered in the dungeons of Austria +was not known. His property was confiscated; his child became an orphan and +a beggar. She continued with her foster parents and bloomed in their rude +abode, fairer than a garden rose among dark-leaved brambles. + +When my father returned from Milan, he found playing with me in the hall of +our villa a child fairer than pictured cherub—a creature who seemed +to shed radiance from her looks and whose form and motions were lighter +than the chamois of the hills. The apparition was soon explained. With his +permission my mother prevailed on her rustic guardians to yield their +charge to her. They were fond of the sweet orphan. Her presence had seemed +a blessing to them, but it would be unfair to her to keep her in poverty +and want when Providence afforded her such powerful protection. They +consulted their village priest, and the result was that Elizabeth Lavenza +became the inmate of my parents’ house—my more than +sister—the beautiful and adored companion of all my occupations and +my pleasures. + +Everyone loved Elizabeth. The passionate and almost reverential +attachment with which all regarded her became, while I shared it, my +pride and my delight. On the evening previous to her being brought to +my home, my mother had said playfully, “I have a pretty present for my +Victor—tomorrow he shall have it.” And when, on the morrow, she +presented Elizabeth to me as her promised gift, I, with childish +seriousness, interpreted her words literally and looked upon Elizabeth +as mine—mine to protect, love, and cherish. All praises bestowed on +her I received as made to a possession of my own. We called each other +familiarly by the name of cousin. No word, no expression could body +forth the kind of relation in which she stood to me—my more than +sister, since till death she was to be mine only. + + + + +Chapter 2 + + +We were brought up together; there was not quite a year difference in +our ages. I need not say that we were strangers to any species of +disunion or dispute. Harmony was the soul of our companionship, and +the diversity and contrast that subsisted in our characters drew us +nearer together. Elizabeth was of a calmer and more concentrated +disposition; but, with all my ardour, I was capable of a more intense +application and was more deeply smitten with the thirst for knowledge. +She busied herself with following the aerial creations of the poets; +and in the majestic and wondrous scenes which surrounded our Swiss +home —the sublime shapes of the mountains, the changes of the seasons, +tempest and calm, the silence of winter, and the life and turbulence of +our Alpine summers—she found ample scope for admiration and delight. +While my companion contemplated with a serious and satisfied spirit the +magnificent appearances of things, I delighted in investigating their +causes. The world was to me a secret which I desired to divine. +Curiosity, earnest research to learn the hidden laws of nature, +gladness akin to rapture, as they were unfolded to me, are among the +earliest sensations I can remember. + +On the birth of a second son, my junior by seven years, my parents gave +up entirely their wandering life and fixed themselves in their native +country. We possessed a house in Geneva, and a _campagne_ on Belrive, +the eastern shore of the lake, at the distance of rather more than a +league from the city. We resided principally in the latter, and the +lives of my parents were passed in considerable seclusion. It was my +temper to avoid a crowd and to attach myself fervently to a few. I was +indifferent, therefore, to my school-fellows in general; but I united +myself in the bonds of the closest friendship to one among them. Henry +Clerval was the son of a merchant of Geneva. He was a boy of singular +talent and fancy. He loved enterprise, hardship, and even danger for +its own sake. He was deeply read in books of chivalry and romance. He +composed heroic songs and began to write many a tale of enchantment and +knightly adventure. He tried to make us act plays and to enter into +masquerades, in which the characters were drawn from the heroes of +Roncesvalles, of the Round Table of King Arthur, and the chivalrous +train who shed their blood to redeem the holy sepulchre from the hands +of the infidels. + +No human being could have passed a happier childhood than myself. My +parents were possessed by the very spirit of kindness and indulgence. +We felt that they were not the tyrants to rule our lot according to +their caprice, but the agents and creators of all the many delights +which we enjoyed. When I mingled with other families I distinctly +discerned how peculiarly fortunate my lot was, and gratitude assisted +the development of filial love. + +My temper was sometimes violent, and my passions vehement; but by some +law in my temperature they were turned not towards childish pursuits +but to an eager desire to learn, and not to learn all things +indiscriminately. I confess that neither the structure of languages, +nor the code of governments, nor the politics of various states +possessed attractions for me. It was the secrets of heaven and earth +that I desired to learn; and whether it was the outward substance of +things or the inner spirit of nature and the mysterious soul of man +that occupied me, still my inquiries were directed to the metaphysical, +or in its highest sense, the physical secrets of the world. + +Meanwhile Clerval occupied himself, so to speak, with the moral +relations of things. The busy stage of life, the virtues of heroes, +and the actions of men were his theme; and his hope and his dream was +to become one among those whose names are recorded in story as the +gallant and adventurous benefactors of our species. The saintly soul +of Elizabeth shone like a shrine-dedicated lamp in our peaceful home. +Her sympathy was ours; her smile, her soft voice, the sweet glance of +her celestial eyes, were ever there to bless and animate us. She was +the living spirit of love to soften and attract; I might have become +sullen in my study, rough through the ardour of my nature, but that +she was there to subdue me to a semblance of her own gentleness. And +Clerval—could aught ill entrench on the noble spirit of Clerval? Yet +he might not have been so perfectly humane, so thoughtful in his +generosity, so full of kindness and tenderness amidst his passion for +adventurous exploit, had she not unfolded to him the real loveliness of +beneficence and made the doing good the end and aim of his soaring +ambition. + +I feel exquisite pleasure in dwelling on the recollections of childhood, +before misfortune had tainted my mind and changed its bright visions of +extensive usefulness into gloomy and narrow reflections upon self. Besides, +in drawing the picture of my early days, I also record those events which +led, by insensible steps, to my after tale of misery, for when I would +account to myself for the birth of that passion which afterwards ruled my +destiny I find it arise, like a mountain river, from ignoble and almost +forgotten sources; but, swelling as it proceeded, it became the torrent +which, in its course, has swept away all my hopes and joys. + +Natural philosophy is the genius that has regulated my fate; I desire, +therefore, in this narration, to state those facts which led to my +predilection for that science. When I was thirteen years of age we all went +on a party of pleasure to the baths near Thonon; the inclemency of the +weather obliged us to remain a day confined to the inn. In this house I +chanced to find a volume of the works of Cornelius Agrippa. I opened it +with apathy; the theory which he attempts to demonstrate and the wonderful +facts which he relates soon changed this feeling into enthusiasm. A new +light seemed to dawn upon my mind, and bounding with joy, I communicated my +discovery to my father. My father looked carelessly at the title page of my +book and said, “Ah! Cornelius Agrippa! My dear Victor, do not waste +your time upon this; it is sad trash.” + +If, instead of this remark, my father had taken the pains to explain to me +that the principles of Agrippa had been entirely exploded and that a modern +system of science had been introduced which possessed much greater powers +than the ancient, because the powers of the latter were chimerical, while +those of the former were real and practical, under such circumstances I +should certainly have thrown Agrippa aside and have contented my +imagination, warmed as it was, by returning with greater ardour to my +former studies. It is even possible that the train of my ideas would never +have received the fatal impulse that led to my ruin. But the cursory glance +my father had taken of my volume by no means assured me that he was +acquainted with its contents, and I continued to read with the greatest +avidity. + +When I returned home my first care was to procure the whole works of this +author, and afterwards of Paracelsus and Albertus Magnus. I read and +studied the wild fancies of these writers with delight; they appeared to me +treasures known to few besides myself. I have described myself as always +having been imbued with a fervent longing to penetrate the secrets of +nature. In spite of the intense labour and wonderful discoveries of modern +philosophers, I always came from my studies discontented and unsatisfied. +Sir Isaac Newton is said to have avowed that he felt like a child picking +up shells beside the great and unexplored ocean of truth. Those of his +successors in each branch of natural philosophy with whom I was acquainted +appeared even to my boy’s apprehensions as tyros engaged in the same +pursuit. + +The untaught peasant beheld the elements around him and was acquainted +with their practical uses. The most learned philosopher knew little +more. He had partially unveiled the face of Nature, but her immortal +lineaments were still a wonder and a mystery. He might dissect, +anatomise, and give names; but, not to speak of a final cause, causes +in their secondary and tertiary grades were utterly unknown to him. I +had gazed upon the fortifications and impediments that seemed to keep +human beings from entering the citadel of nature, and rashly and +ignorantly I had repined. + +But here were books, and here were men who had penetrated deeper and knew +more. I took their word for all that they averred, and I became their +disciple. It may appear strange that such should arise in the eighteenth +century; but while I followed the routine of education in the schools of +Geneva, I was, to a great degree, self-taught with regard to my favourite +studies. My father was not scientific, and I was left to struggle with a +child’s blindness, added to a student’s thirst for knowledge. +Under the guidance of my new preceptors I entered with the greatest +diligence into the search of the philosopher’s stone and the elixir +of life; but the latter soon obtained my undivided attention. Wealth was an +inferior object, but what glory would attend the discovery if I could +banish disease from the human frame and render man invulnerable to any but +a violent death! + +Nor were these my only visions. The raising of ghosts or devils was a +promise liberally accorded by my favourite authors, the fulfilment of which +I most eagerly sought; and if my incantations were always unsuccessful, I +attributed the failure rather to my own inexperience and mistake than to a +want of skill or fidelity in my instructors. And thus for a time I was +occupied by exploded systems, mingling, like an unadept, a thousand +contradictory theories and floundering desperately in a very slough of +multifarious knowledge, guided by an ardent imagination and childish +reasoning, till an accident again changed the current of my ideas. + +When I was about fifteen years old we had retired to our house near +Belrive, when we witnessed a most violent and terrible thunderstorm. It +advanced from behind the mountains of Jura, and the thunder burst at once +with frightful loudness from various quarters of the heavens. I remained, +while the storm lasted, watching its progress with curiosity and delight. +As I stood at the door, on a sudden I beheld a stream of fire issue from an +old and beautiful oak which stood about twenty yards from our house; and so +soon as the dazzling light vanished, the oak had disappeared, and nothing +remained but a blasted stump. When we visited it the next morning, we found +the tree shattered in a singular manner. It was not splintered by the +shock, but entirely reduced to thin ribbons of wood. I never beheld +anything so utterly destroyed. + +Before this I was not unacquainted with the more obvious laws of +electricity. On this occasion a man of great research in natural +philosophy was with us, and excited by this catastrophe, he entered on +the explanation of a theory which he had formed on the subject of +electricity and galvanism, which was at once new and astonishing to me. +All that he said threw greatly into the shade Cornelius Agrippa, +Albertus Magnus, and Paracelsus, the lords of my imagination; but by +some fatality the overthrow of these men disinclined me to pursue my +accustomed studies. It seemed to me as if nothing would or could ever +be known. All that had so long engaged my attention suddenly grew +despicable. By one of those caprices of the mind which we are perhaps +most subject to in early youth, I at once gave up my former +occupations, set down natural history and all its progeny as a deformed +and abortive creation, and entertained the greatest disdain for a +would-be science which could never even step within the threshold of +real knowledge. In this mood of mind I betook myself to the +mathematics and the branches of study appertaining to that science as +being built upon secure foundations, and so worthy of my consideration. + +Thus strangely are our souls constructed, and by such slight ligaments +are we bound to prosperity or ruin. When I look back, it seems to me +as if this almost miraculous change of inclination and will was the +immediate suggestion of the guardian angel of my life—the last effort +made by the spirit of preservation to avert the storm that was even +then hanging in the stars and ready to envelop me. Her victory was +announced by an unusual tranquillity and gladness of soul which +followed the relinquishing of my ancient and latterly tormenting +studies. It was thus that I was to be taught to associate evil with +their prosecution, happiness with their disregard. + +It was a strong effort of the spirit of good, but it was ineffectual. +Destiny was too potent, and her immutable laws had decreed my utter and +terrible destruction. + + + + +Chapter 3 + + +When I had attained the age of seventeen my parents resolved that I +should become a student at the university of Ingolstadt. I had +hitherto attended the schools of Geneva, but my father thought it +necessary for the completion of my education that I should be made +acquainted with other customs than those of my native country. My +departure was therefore fixed at an early date, but before the day +resolved upon could arrive, the first misfortune of my life +occurred—an omen, as it were, of my future misery. + +Elizabeth had caught the scarlet fever; her illness was severe, and she was +in the greatest danger. During her illness many arguments had been urged to +persuade my mother to refrain from attending upon her. She had at first +yielded to our entreaties, but when she heard that the life of her +favourite was menaced, she could no longer control her anxiety. She +attended her sickbed; her watchful attentions triumphed over the malignity +of the distemper—Elizabeth was saved, but the consequences of this +imprudence were fatal to her preserver. On the third day my mother +sickened; her fever was accompanied by the most alarming symptoms, and the +looks of her medical attendants prognosticated the worst event. On her +deathbed the fortitude and benignity of this best of women did not desert +her. She joined the hands of Elizabeth and myself. “My +children,” she said, “my firmest hopes of future happiness were +placed on the prospect of your union. This expectation will now be the +consolation of your father. Elizabeth, my love, you must supply my place to +my younger children. Alas! I regret that I am taken from you; and, happy +and beloved as I have been, is it not hard to quit you all? But these are +not thoughts befitting me; I will endeavour to resign myself cheerfully to +death and will indulge a hope of meeting you in another world.” + +She died calmly, and her countenance expressed affection even in death. +I need not describe the feelings of those whose dearest ties are rent +by that most irreparable evil, the void that presents itself to the +soul, and the despair that is exhibited on the countenance. It is so +long before the mind can persuade itself that she whom we saw every day +and whose very existence appeared a part of our own can have departed +for ever—that the brightness of a beloved eye can have been +extinguished and the sound of a voice so familiar and dear to the ear +can be hushed, never more to be heard. These are the reflections of +the first days; but when the lapse of time proves the reality of the +evil, then the actual bitterness of grief commences. Yet from whom has +not that rude hand rent away some dear connection? And why should I +describe a sorrow which all have felt, and must feel? The time at +length arrives when grief is rather an indulgence than a necessity; and +the smile that plays upon the lips, although it may be deemed a +sacrilege, is not banished. My mother was dead, but we had still +duties which we ought to perform; we must continue our course with the +rest and learn to think ourselves fortunate whilst one remains whom the +spoiler has not seized. + +My departure for Ingolstadt, which had been deferred by these events, +was now again determined upon. I obtained from my father a respite of +some weeks. It appeared to me sacrilege so soon to leave the repose, +akin to death, of the house of mourning and to rush into the thick of +life. I was new to sorrow, but it did not the less alarm me. I was +unwilling to quit the sight of those that remained to me, and above +all, I desired to see my sweet Elizabeth in some degree consoled. + +She indeed veiled her grief and strove to act the comforter to us all. +She looked steadily on life and assumed its duties with courage and +zeal. She devoted herself to those whom she had been taught to call +her uncle and cousins. Never was she so enchanting as at this time, +when she recalled the sunshine of her smiles and spent them upon us. +She forgot even her own regret in her endeavours to make us forget. + +The day of my departure at length arrived. Clerval spent the last +evening with us. He had endeavoured to persuade his father to permit +him to accompany me and to become my fellow student, but in vain. His +father was a narrow-minded trader and saw idleness and ruin in the +aspirations and ambition of his son. Henry deeply felt the misfortune +of being debarred from a liberal education. He said little, but when +he spoke I read in his kindling eye and in his animated glance a +restrained but firm resolve not to be chained to the miserable details +of commerce. + +We sat late. We could not tear ourselves away from each other nor +persuade ourselves to say the word “Farewell!” It was said, and we +retired under the pretence of seeking repose, each fancying that the +other was deceived; but when at morning’s dawn I descended to the +carriage which was to convey me away, they were all there—my father +again to bless me, Clerval to press my hand once more, my Elizabeth to +renew her entreaties that I would write often and to bestow the last +feminine attentions on her playmate and friend. + +I threw myself into the chaise that was to convey me away and indulged in +the most melancholy reflections. I, who had ever been surrounded by +amiable companions, continually engaged in endeavouring to bestow mutual +pleasure—I was now alone. In the university whither I was going I +must form my own friends and be my own protector. My life had hitherto +been remarkably secluded and domestic, and this had given me invincible +repugnance to new countenances. I loved my brothers, Elizabeth, and +Clerval; these were “old familiar faces,” but I believed myself +totally unfitted for the company of strangers. Such were my reflections as +I commenced my journey; but as I proceeded, my spirits and hopes rose. I +ardently desired the acquisition of knowledge. I had often, when at home, +thought it hard to remain during my youth cooped up in one place and had +longed to enter the world and take my station among other human beings. +Now my desires were complied with, and it would, indeed, have been folly to +repent. + +I had sufficient leisure for these and many other reflections during my +journey to Ingolstadt, which was long and fatiguing. At length the +high white steeple of the town met my eyes. I alighted and was +conducted to my solitary apartment to spend the evening as I pleased. + +The next morning I delivered my letters of introduction and paid a visit to +some of the principal professors. Chance—or rather the evil +influence, the Angel of Destruction, which asserted omnipotent sway over me +from the moment I turned my reluctant steps from my father’s +door—led me first to M. Krempe, professor of natural philosophy. He +was an uncouth man, but deeply imbued in the secrets of his science. He +asked me several questions concerning my progress in the different branches +of science appertaining to natural philosophy. I replied carelessly, and +partly in contempt, mentioned the names of my alchemists as the principal +authors I had studied. The professor stared. “Have you,” he +said, “really spent your time in studying such nonsense?” + +I replied in the affirmative. “Every minute,” continued M. Krempe with +warmth, “every instant that you have wasted on those books is utterly +and entirely lost. You have burdened your memory with exploded systems +and useless names. Good God! In what desert land have you lived, +where no one was kind enough to inform you that these fancies which you +have so greedily imbibed are a thousand years old and as musty as they +are ancient? I little expected, in this enlightened and scientific +age, to find a disciple of Albertus Magnus and Paracelsus. My dear +sir, you must begin your studies entirely anew.” + +So saying, he stepped aside and wrote down a list of several books +treating of natural philosophy which he desired me to procure, and +dismissed me after mentioning that in the beginning of the following +week he intended to commence a course of lectures upon natural +philosophy in its general relations, and that M. Waldman, a fellow +professor, would lecture upon chemistry the alternate days that he +omitted. + +I returned home not disappointed, for I have said that I had long +considered those authors useless whom the professor reprobated; but I +returned not at all the more inclined to recur to these studies in any +shape. M. Krempe was a little squat man with a gruff voice and a +repulsive countenance; the teacher, therefore, did not prepossess me in +favour of his pursuits. In rather a too philosophical and connected a +strain, perhaps, I have given an account of the conclusions I had come +to concerning them in my early years. As a child I had not been +content with the results promised by the modern professors of natural +science. With a confusion of ideas only to be accounted for by my +extreme youth and my want of a guide on such matters, I had retrod the +steps of knowledge along the paths of time and exchanged the +discoveries of recent inquirers for the dreams of forgotten alchemists. +Besides, I had a contempt for the uses of modern natural philosophy. +It was very different when the masters of the science sought +immortality and power; such views, although futile, were grand; but now +the scene was changed. The ambition of the inquirer seemed to limit +itself to the annihilation of those visions on which my interest in +science was chiefly founded. I was required to exchange chimeras of +boundless grandeur for realities of little worth. + +Such were my reflections during the first two or three days of my +residence at Ingolstadt, which were chiefly spent in becoming +acquainted with the localities and the principal residents in my new +abode. But as the ensuing week commenced, I thought of the information +which M. Krempe had given me concerning the lectures. And although I +could not consent to go and hear that little conceited fellow deliver +sentences out of a pulpit, I recollected what he had said of M. +Waldman, whom I had never seen, as he had hitherto been out of town. + +Partly from curiosity and partly from idleness, I went into the lecturing +room, which M. Waldman entered shortly after. This professor was very +unlike his colleague. He appeared about fifty years of age, but with an +aspect expressive of the greatest benevolence; a few grey hairs covered his +temples, but those at the back of his head were nearly black. His person +was short but remarkably erect and his voice the sweetest I had ever heard. +He began his lecture by a recapitulation of the history of chemistry and +the various improvements made by different men of learning, pronouncing +with fervour the names of the most distinguished discoverers. He then took +a cursory view of the present state of the science and explained many of +its elementary terms. After having made a few preparatory experiments, he +concluded with a panegyric upon modern chemistry, the terms of which I +shall never forget: + +“The ancient teachers of this science,” said he, +“promised impossibilities and performed nothing. The modern masters +promise very little; they know that metals cannot be transmuted and that +the elixir of life is a chimera but these philosophers, whose hands seem +only made to dabble in dirt, and their eyes to pore over the microscope or +crucible, have indeed performed miracles. They penetrate into the recesses +of nature and show how she works in her hiding-places. They ascend into the +heavens; they have discovered how the blood circulates, and the nature of +the air we breathe. They have acquired new and almost unlimited powers; +they can command the thunders of heaven, mimic the earthquake, and even +mock the invisible world with its own shadows.” + +Such were the professor’s words—rather let me say such the words of +the fate—enounced to destroy me. As he went on I felt as if my soul +were grappling with a palpable enemy; one by one the various keys were +touched which formed the mechanism of my being; chord after chord was +sounded, and soon my mind was filled with one thought, one conception, +one purpose. So much has been done, exclaimed the soul of +Frankenstein—more, far more, will I achieve; treading in the steps +already marked, I will pioneer a new way, explore unknown powers, and +unfold to the world the deepest mysteries of creation. + +I closed not my eyes that night. My internal being was in a state of +insurrection and turmoil; I felt that order would thence arise, but I +had no power to produce it. By degrees, after the morning’s dawn, +sleep came. I awoke, and my yesternight’s thoughts were as a dream. +There only remained a resolution to return to my ancient studies and to +devote myself to a science for which I believed myself to possess a +natural talent. On the same day I paid M. Waldman a visit. His +manners in private were even more mild and attractive than in public, +for there was a certain dignity in his mien during his lecture which in +his own house was replaced by the greatest affability and kindness. I +gave him pretty nearly the same account of my former pursuits as I had +given to his fellow professor. He heard with attention the little +narration concerning my studies and smiled at the names of Cornelius +Agrippa and Paracelsus, but without the contempt that M. Krempe had +exhibited. He said that “These were men to whose indefatigable zeal +modern philosophers were indebted for most of the foundations of their +knowledge. They had left to us, as an easier task, to give new names +and arrange in connected classifications the facts which they in a +great degree had been the instruments of bringing to light. The +labours of men of genius, however erroneously directed, scarcely ever +fail in ultimately turning to the solid advantage of mankind.” I +listened to his statement, which was delivered without any presumption +or affectation, and then added that his lecture had removed my +prejudices against modern chemists; I expressed myself in measured +terms, with the modesty and deference due from a youth to his +instructor, without letting escape (inexperience in life would have +made me ashamed) any of the enthusiasm which stimulated my intended +labours. I requested his advice concerning the books I ought to +procure. + +“I am happy,” said M. Waldman, “to have gained a +disciple; and if your application equals your ability, I have no doubt of +your success. Chemistry is that branch of natural philosophy in which the +greatest improvements have been and may be made; it is on that account that +I have made it my peculiar study; but at the same time, I have not +neglected the other branches of science. A man would make but a very sorry +chemist if he attended to that department of human knowledge alone. If your +wish is to become really a man of science and not merely a petty +experimentalist, I should advise you to apply to every branch of natural +philosophy, including mathematics.” + +He then took me into his laboratory and explained to me the uses of his +various machines, instructing me as to what I ought to procure and +promising me the use of his own when I should have advanced far enough in +the science not to derange their mechanism. He also gave me the list of +books which I had requested, and I took my leave. + +Thus ended a day memorable to me; it decided my future destiny. + + + + +Chapter 4 + + +From this day natural philosophy, and particularly chemistry, in the +most comprehensive sense of the term, became nearly my sole occupation. +I read with ardour those works, so full of genius and discrimination, +which modern inquirers have written on these subjects. I attended the +lectures and cultivated the acquaintance of the men of science of the +university, and I found even in M. Krempe a great deal of sound sense +and real information, combined, it is true, with a repulsive +physiognomy and manners, but not on that account the less valuable. In +M. Waldman I found a true friend. His gentleness was never tinged by +dogmatism, and his instructions were given with an air of frankness and +good nature that banished every idea of pedantry. In a thousand ways +he smoothed for me the path of knowledge and made the most abstruse +inquiries clear and facile to my apprehension. My application was at +first fluctuating and uncertain; it gained strength as I proceeded and +soon became so ardent and eager that the stars often disappeared in the +light of morning whilst I was yet engaged in my laboratory. + +As I applied so closely, it may be easily conceived that my progress +was rapid. My ardour was indeed the astonishment of the students, and +my proficiency that of the masters. Professor Krempe often asked me, +with a sly smile, how Cornelius Agrippa went on, whilst M. Waldman +expressed the most heartfelt exultation in my progress. Two years +passed in this manner, during which I paid no visit to Geneva, but was +engaged, heart and soul, in the pursuit of some discoveries which I +hoped to make. None but those who have experienced them can conceive +of the enticements of science. In other studies you go as far as +others have gone before you, and there is nothing more to know; but in +a scientific pursuit there is continual food for discovery and wonder. +A mind of moderate capacity which closely pursues one study must +infallibly arrive at great proficiency in that study; and I, who +continually sought the attainment of one object of pursuit and was +solely wrapped up in this, improved so rapidly that at the end of two +years I made some discoveries in the improvement of some chemical +instruments, which procured me great esteem and admiration at the +university. When I had arrived at this point and had become as well +acquainted with the theory and practice of natural philosophy as +depended on the lessons of any of the professors at Ingolstadt, my +residence there being no longer conducive to my improvements, I thought +of returning to my friends and my native town, when an incident +happened that protracted my stay. + +One of the phenomena which had peculiarly attracted my attention was +the structure of the human frame, and, indeed, any animal endued with +life. Whence, I often asked myself, did the principle of life proceed? +It was a bold question, and one which has ever been considered as a +mystery; yet with how many things are we upon the brink of becoming +acquainted, if cowardice or carelessness did not restrain our +inquiries. I revolved these circumstances in my mind and determined +thenceforth to apply myself more particularly to those branches of +natural philosophy which relate to physiology. Unless I had been +animated by an almost supernatural enthusiasm, my application to this +study would have been irksome and almost intolerable. To examine the +causes of life, we must first have recourse to death. I became +acquainted with the science of anatomy, but this was not sufficient; I +must also observe the natural decay and corruption of the human body. +In my education my father had taken the greatest precautions that my +mind should be impressed with no supernatural horrors. I do not ever +remember to have trembled at a tale of superstition or to have feared +the apparition of a spirit. Darkness had no effect upon my fancy, and +a churchyard was to me merely the receptacle of bodies deprived of +life, which, from being the seat of beauty and strength, had become +food for the worm. Now I was led to examine the cause and progress of +this decay and forced to spend days and nights in vaults and +charnel-houses. My attention was fixed upon every object the most +insupportable to the delicacy of the human feelings. I saw how the +fine form of man was degraded and wasted; I beheld the corruption of +death succeed to the blooming cheek of life; I saw how the worm +inherited the wonders of the eye and brain. I paused, examining and +analysing all the minutiae of causation, as exemplified in the change +from life to death, and death to life, until from the midst of this +darkness a sudden light broke in upon me—a light so brilliant and +wondrous, yet so simple, that while I became dizzy with the immensity +of the prospect which it illustrated, I was surprised that among so +many men of genius who had directed their inquiries towards the same +science, that I alone should be reserved to discover so astonishing a +secret. + +Remember, I am not recording the vision of a madman. The sun does not +more certainly shine in the heavens than that which I now affirm is +true. Some miracle might have produced it, yet the stages of the +discovery were distinct and probable. After days and nights of +incredible labour and fatigue, I succeeded in discovering the cause of +generation and life; nay, more, I became myself capable of bestowing +animation upon lifeless matter. + +The astonishment which I had at first experienced on this discovery +soon gave place to delight and rapture. After so much time spent in +painful labour, to arrive at once at the summit of my desires was the +most gratifying consummation of my toils. But this discovery was so +great and overwhelming that all the steps by which I had been +progressively led to it were obliterated, and I beheld only the result. +What had been the study and desire of the wisest men since the creation +of the world was now within my grasp. Not that, like a magic scene, it +all opened upon me at once: the information I had obtained was of a +nature rather to direct my endeavours so soon as I should point them +towards the object of my search than to exhibit that object already +accomplished. I was like the Arabian who had been buried with the dead +and found a passage to life, aided only by one glimmering and seemingly +ineffectual light. + +I see by your eagerness and the wonder and hope which your eyes +express, my friend, that you expect to be informed of the secret with +which I am acquainted; that cannot be; listen patiently until the end +of my story, and you will easily perceive why I am reserved upon that +subject. I will not lead you on, unguarded and ardent as I then was, +to your destruction and infallible misery. Learn from me, if not by my +precepts, at least by my example, how dangerous is the acquirement of +knowledge and how much happier that man is who believes his native town +to be the world, than he who aspires to become greater than his nature +will allow. + +When I found so astonishing a power placed within my hands, I hesitated +a long time concerning the manner in which I should employ it. +Although I possessed the capacity of bestowing animation, yet to +prepare a frame for the reception of it, with all its intricacies of +fibres, muscles, and veins, still remained a work of inconceivable +difficulty and labour. I doubted at first whether I should attempt the +creation of a being like myself, or one of simpler organization; but my +imagination was too much exalted by my first success to permit me to +doubt of my ability to give life to an animal as complex and wonderful +as man. The materials at present within my command hardly appeared +adequate to so arduous an undertaking, but I doubted not that I should +ultimately succeed. I prepared myself for a multitude of reverses; my +operations might be incessantly baffled, and at last my work be +imperfect, yet when I considered the improvement which every day takes +place in science and mechanics, I was encouraged to hope my present +attempts would at least lay the foundations of future success. Nor +could I consider the magnitude and complexity of my plan as any +argument of its impracticability. It was with these feelings that I +began the creation of a human being. As the minuteness of the parts +formed a great hindrance to my speed, I resolved, contrary to my first +intention, to make the being of a gigantic stature, that is to say, +about eight feet in height, and proportionably large. After having +formed this determination and having spent some months in successfully +collecting and arranging my materials, I began. + +No one can conceive the variety of feelings which bore me onwards, like +a hurricane, in the first enthusiasm of success. Life and death +appeared to me ideal bounds, which I should first break through, and +pour a torrent of light into our dark world. A new species would bless +me as its creator and source; many happy and excellent natures would +owe their being to me. No father could claim the gratitude of his +child so completely as I should deserve theirs. Pursuing these +reflections, I thought that if I could bestow animation upon lifeless +matter, I might in process of time (although I now found it impossible) +renew life where death had apparently devoted the body to corruption. + +These thoughts supported my spirits, while I pursued my undertaking +with unremitting ardour. My cheek had grown pale with study, and my +person had become emaciated with confinement. Sometimes, on the very +brink of certainty, I failed; yet still I clung to the hope which the +next day or the next hour might realise. One secret which I alone +possessed was the hope to which I had dedicated myself; and the moon +gazed on my midnight labours, while, with unrelaxed and breathless +eagerness, I pursued nature to her hiding-places. Who shall conceive +the horrors of my secret toil as I dabbled among the unhallowed damps +of the grave or tortured the living animal to animate the lifeless +clay? My limbs now tremble, and my eyes swim with the remembrance; but +then a resistless and almost frantic impulse urged me forward; I seemed +to have lost all soul or sensation but for this one pursuit. It was +indeed but a passing trance, that only made me feel with renewed +acuteness so soon as, the unnatural stimulus ceasing to operate, I had +returned to my old habits. I collected bones from charnel-houses and +disturbed, with profane fingers, the tremendous secrets of the human +frame. In a solitary chamber, or rather cell, at the top of the house, +and separated from all the other apartments by a gallery and staircase, +I kept my workshop of filthy creation; my eyeballs were starting from +their sockets in attending to the details of my employment. The +dissecting room and the slaughter-house furnished many of my materials; +and often did my human nature turn with loathing from my occupation, +whilst, still urged on by an eagerness which perpetually increased, I +brought my work near to a conclusion. + +The summer months passed while I was thus engaged, heart and soul, in +one pursuit. It was a most beautiful season; never did the fields +bestow a more plentiful harvest or the vines yield a more luxuriant +vintage, but my eyes were insensible to the charms of nature. And the +same feelings which made me neglect the scenes around me caused me also +to forget those friends who were so many miles absent, and whom I had +not seen for so long a time. I knew my silence disquieted them, and I +well remembered the words of my father: “I know that while you are +pleased with yourself you will think of us with affection, and we shall +hear regularly from you. You must pardon me if I regard any +interruption in your correspondence as a proof that your other duties +are equally neglected.” + +I knew well therefore what would be my father’s feelings, but I could +not tear my thoughts from my employment, loathsome in itself, but which +had taken an irresistible hold of my imagination. I wished, as it +were, to procrastinate all that related to my feelings of affection +until the great object, which swallowed up every habit of my nature, +should be completed. + +I then thought that my father would be unjust if he ascribed my neglect +to vice or faultiness on my part, but I am now convinced that he was +justified in conceiving that I should not be altogether free from +blame. A human being in perfection ought always to preserve a calm and +peaceful mind and never to allow passion or a transitory desire to +disturb his tranquillity. I do not think that the pursuit of knowledge +is an exception to this rule. If the study to which you apply yourself +has a tendency to weaken your affections and to destroy your taste for +those simple pleasures in which no alloy can possibly mix, then that +study is certainly unlawful, that is to say, not befitting the human +mind. If this rule were always observed; if no man allowed any pursuit +whatsoever to interfere with the tranquillity of his domestic +affections, Greece had not been enslaved, Cæsar would have spared his +country, America would have been discovered more gradually, and the +empires of Mexico and Peru had not been destroyed. + +But I forget that I am moralizing in the most interesting part of my +tale, and your looks remind me to proceed. + +My father made no reproach in his letters and only took notice of my +silence by inquiring into my occupations more particularly than before. +Winter, spring, and summer passed away during my labours; but I did not +watch the blossom or the expanding leaves—sights which before always +yielded me supreme delight—so deeply was I engrossed in my +occupation. The leaves of that year had withered before my work drew near +to a close, and now every day showed me more plainly how well I had +succeeded. But my enthusiasm was checked by my anxiety, and I appeared +rather like one doomed by slavery to toil in the mines, or any other +unwholesome trade than an artist occupied by his favourite employment. +Every night I was oppressed by a slow fever, and I became nervous to a most +painful degree; the fall of a leaf startled me, and I shunned my fellow +creatures as if I had been guilty of a crime. Sometimes I grew alarmed at +the wreck I perceived that I had become; the energy of my purpose alone +sustained me: my labours would soon end, and I believed that exercise and +amusement would then drive away incipient disease; and I promised myself +both of these when my creation should be complete. + + + + +Chapter 5 + + +It was on a dreary night of November that I beheld the accomplishment +of my toils. With an anxiety that almost amounted to agony, I +collected the instruments of life around me, that I might infuse a +spark of being into the lifeless thing that lay at my feet. It was +already one in the morning; the rain pattered dismally against the +panes, and my candle was nearly burnt out, when, by the glimmer of the +half-extinguished light, I saw the dull yellow eye of the creature +open; it breathed hard, and a convulsive motion agitated its limbs. + +How can I describe my emotions at this catastrophe, or how delineate +the wretch whom with such infinite pains and care I had endeavoured to +form? His limbs were in proportion, and I had selected his features as +beautiful. Beautiful! Great God! His yellow skin scarcely covered +the work of muscles and arteries beneath; his hair was of a lustrous +black, and flowing; his teeth of a pearly whiteness; but these +luxuriances only formed a more horrid contrast with his watery eyes, +that seemed almost of the same colour as the dun-white sockets in which +they were set, his shrivelled complexion and straight black lips. + +The different accidents of life are not so changeable as the feelings +of human nature. I had worked hard for nearly two years, for the sole +purpose of infusing life into an inanimate body. For this I had +deprived myself of rest and health. I had desired it with an ardour +that far exceeded moderation; but now that I had finished, the beauty +of the dream vanished, and breathless horror and disgust filled my +heart. Unable to endure the aspect of the being I had created, I +rushed out of the room and continued a long time traversing my +bed-chamber, unable to compose my mind to sleep. At length lassitude +succeeded to the tumult I had before endured, and I threw myself on the +bed in my clothes, endeavouring to seek a few moments of forgetfulness. +But it was in vain; I slept, indeed, but I was disturbed by the wildest +dreams. I thought I saw Elizabeth, in the bloom of health, walking in +the streets of Ingolstadt. Delighted and surprised, I embraced her, +but as I imprinted the first kiss on her lips, they became livid with +the hue of death; her features appeared to change, and I thought that I +held the corpse of my dead mother in my arms; a shroud enveloped her +form, and I saw the grave-worms crawling in the folds of the flannel. +I started from my sleep with horror; a cold dew covered my forehead, my +teeth chattered, and every limb became convulsed; when, by the dim and +yellow light of the moon, as it forced its way through the window +shutters, I beheld the wretch—the miserable monster whom I had +created. He held up the curtain of the bed; and his eyes, if eyes they +may be called, were fixed on me. His jaws opened, and he muttered some +inarticulate sounds, while a grin wrinkled his cheeks. He might have +spoken, but I did not hear; one hand was stretched out, seemingly to +detain me, but I escaped and rushed downstairs. I took refuge in the +courtyard belonging to the house which I inhabited, where I remained +during the rest of the night, walking up and down in the greatest +agitation, listening attentively, catching and fearing each sound as if +it were to announce the approach of the demoniacal corpse to which I +had so miserably given life. + +Oh! No mortal could support the horror of that countenance. A mummy +again endued with animation could not be so hideous as that wretch. I +had gazed on him while unfinished; he was ugly then, but when those +muscles and joints were rendered capable of motion, it became a thing +such as even Dante could not have conceived. + +I passed the night wretchedly. Sometimes my pulse beat so quickly and +hardly that I felt the palpitation of every artery; at others, I nearly +sank to the ground through languor and extreme weakness. Mingled with +this horror, I felt the bitterness of disappointment; dreams that had +been my food and pleasant rest for so long a space were now become a +hell to me; and the change was so rapid, the overthrow so complete! + +Morning, dismal and wet, at length dawned and discovered to my +sleepless and aching eyes the church of Ingolstadt, its white steeple +and clock, which indicated the sixth hour. The porter opened the gates +of the court, which had that night been my asylum, and I issued into +the streets, pacing them with quick steps, as if I sought to avoid the +wretch whom I feared every turning of the street would present to my +view. I did not dare return to the apartment which I inhabited, but +felt impelled to hurry on, although drenched by the rain which poured +from a black and comfortless sky. + +I continued walking in this manner for some time, endeavouring by +bodily exercise to ease the load that weighed upon my mind. I +traversed the streets without any clear conception of where I was or +what I was doing. My heart palpitated in the sickness of fear, and I +hurried on with irregular steps, not daring to look about me: + + Like one who, on a lonely road, + Doth walk in fear and dread, + And, having once turned round, walks on, + And turns no more his head; + Because he knows a frightful fiend + Doth close behind him tread. + + [Coleridge’s “Ancient Mariner.”] + + + +Continuing thus, I came at length opposite to the inn at which the various +diligences and carriages usually stopped. Here I paused, I knew not why; +but I remained some minutes with my eyes fixed on a coach that was coming +towards me from the other end of the street. As it drew nearer I observed +that it was the Swiss diligence; it stopped just where I was standing, and +on the door being opened, I perceived Henry Clerval, who, on seeing me, +instantly sprung out. “My dear Frankenstein,” exclaimed he, +“how glad I am to see you! How fortunate that you should be here at +the very moment of my alighting!” + +Nothing could equal my delight on seeing Clerval; his presence brought back +to my thoughts my father, Elizabeth, and all those scenes of home so dear +to my recollection. I grasped his hand, and in a moment forgot my horror +and misfortune; I felt suddenly, and for the first time during many months, +calm and serene joy. I welcomed my friend, therefore, in the most cordial +manner, and we walked towards my college. Clerval continued talking for +some time about our mutual friends and his own good fortune in being +permitted to come to Ingolstadt. “You may easily believe,” said +he, “how great was the difficulty to persuade my father that all +necessary knowledge was not comprised in the noble art of book-keeping; +and, indeed, I believe I left him incredulous to the last, for his constant +answer to my unwearied entreaties was the same as that of the Dutch +schoolmaster in The Vicar of Wakefield: ‘I have ten thousand florins +a year without Greek, I eat heartily without Greek.’ But his +affection for me at length overcame his dislike of learning, and he has +permitted me to undertake a voyage of discovery to the land of +knowledge.” + +“It gives me the greatest delight to see you; but tell me how you left +my father, brothers, and Elizabeth.” + +“Very well, and very happy, only a little uneasy that they hear from +you so seldom. By the by, I mean to lecture you a little upon their +account myself. But, my dear Frankenstein,” continued he, stopping +short and gazing full in my face, “I did not before remark how very ill +you appear; so thin and pale; you look as if you had been watching for +several nights.” + +“You have guessed right; I have lately been so deeply engaged in one +occupation that I have not allowed myself sufficient rest, as you see; +but I hope, I sincerely hope, that all these employments are now at an +end and that I am at length free.” + +I trembled excessively; I could not endure to think of, and far less to +allude to, the occurrences of the preceding night. I walked with a +quick pace, and we soon arrived at my college. I then reflected, and +the thought made me shiver, that the creature whom I had left in my +apartment might still be there, alive and walking about. I dreaded to +behold this monster, but I feared still more that Henry should see him. +Entreating him, therefore, to remain a few minutes at the bottom of the +stairs, I darted up towards my own room. My hand was already on the +lock of the door before I recollected myself. I then paused, and a +cold shivering came over me. I threw the door forcibly open, as +children are accustomed to do when they expect a spectre to stand in +waiting for them on the other side; but nothing appeared. I stepped +fearfully in: the apartment was empty, and my bedroom was also freed +from its hideous guest. I could hardly believe that so great a good +fortune could have befallen me, but when I became assured that my enemy +had indeed fled, I clapped my hands for joy and ran down to Clerval. + +We ascended into my room, and the servant presently brought breakfast; +but I was unable to contain myself. It was not joy only that possessed +me; I felt my flesh tingle with excess of sensitiveness, and my pulse +beat rapidly. I was unable to remain for a single instant in the same +place; I jumped over the chairs, clapped my hands, and laughed aloud. +Clerval at first attributed my unusual spirits to joy on his arrival, +but when he observed me more attentively, he saw a wildness in my eyes +for which he could not account, and my loud, unrestrained, heartless +laughter frightened and astonished him. + +“My dear Victor,” cried he, “what, for God’s sake, +is the matter? Do not laugh in that manner. How ill you are! What is the +cause of all this?” + +“Do not ask me,” cried I, putting my hands before my eyes, for I +thought I saw the dreaded spectre glide into the room; “_he_ can +tell. Oh, save me! Save me!” I imagined that the monster seized me; +I struggled furiously and fell down in a fit. + +Poor Clerval! What must have been his feelings? A meeting, which he +anticipated with such joy, so strangely turned to bitterness. But I +was not the witness of his grief, for I was lifeless and did not +recover my senses for a long, long time. + +This was the commencement of a nervous fever which confined me for +several months. During all that time Henry was my only nurse. I +afterwards learned that, knowing my father’s advanced age and unfitness +for so long a journey, and how wretched my sickness would make +Elizabeth, he spared them this grief by concealing the extent of my +disorder. He knew that I could not have a more kind and attentive +nurse than himself; and, firm in the hope he felt of my recovery, he +did not doubt that, instead of doing harm, he performed the kindest +action that he could towards them. + +But I was in reality very ill, and surely nothing but the unbounded and +unremitting attentions of my friend could have restored me to life. +The form of the monster on whom I had bestowed existence was for ever +before my eyes, and I raved incessantly concerning him. Doubtless my +words surprised Henry; he at first believed them to be the wanderings +of my disturbed imagination, but the pertinacity with which I +continually recurred to the same subject persuaded him that my disorder +indeed owed its origin to some uncommon and terrible event. + +By very slow degrees, and with frequent relapses that alarmed and +grieved my friend, I recovered. I remember the first time I became +capable of observing outward objects with any kind of pleasure, I +perceived that the fallen leaves had disappeared and that the young +buds were shooting forth from the trees that shaded my window. It was +a divine spring, and the season contributed greatly to my +convalescence. I felt also sentiments of joy and affection revive in +my bosom; my gloom disappeared, and in a short time I became as +cheerful as before I was attacked by the fatal passion. + +“Dearest Clerval,” exclaimed I, “how kind, how very good +you are to me. This whole winter, instead of being spent in study, as you +promised yourself, has been consumed in my sick room. How shall I ever +repay you? I feel the greatest remorse for the disappointment of which I +have been the occasion, but you will forgive me.” + +“You will repay me entirely if you do not discompose yourself, but get +well as fast as you can; and since you appear in such good spirits, I +may speak to you on one subject, may I not?” + +I trembled. One subject! What could it be? Could he allude to an object on +whom I dared not even think? + +“Compose yourself,” said Clerval, who observed my change of +colour, “I will not mention it if it agitates you; but your father +and cousin would be very happy if they received a letter from you in your +own handwriting. They hardly know how ill you have been and are uneasy at +your long silence.” + +“Is that all, my dear Henry? How could you suppose that my first +thought would not fly towards those dear, dear friends whom I love and +who are so deserving of my love?” + +“If this is your present temper, my friend, you will perhaps be glad +to see a letter that has been lying here some days for you; it is from +your cousin, I believe.” + + + + +Chapter 6 + + +Clerval then put the following letter into my hands. It was from my +own Elizabeth: + +“My dearest Cousin, + +“You have been ill, very ill, and even the constant letters of dear +kind Henry are not sufficient to reassure me on your account. You are +forbidden to write—to hold a pen; yet one word from you, dear Victor, +is necessary to calm our apprehensions. For a long time I have thought +that each post would bring this line, and my persuasions have +restrained my uncle from undertaking a journey to Ingolstadt. I have +prevented his encountering the inconveniences and perhaps dangers of so +long a journey, yet how often have I regretted not being able to +perform it myself! I figure to myself that the task of attending on +your sickbed has devolved on some mercenary old nurse, who could never +guess your wishes nor minister to them with the care and affection of +your poor cousin. Yet that is over now: Clerval writes that indeed +you are getting better. I eagerly hope that you will confirm this +intelligence soon in your own handwriting. + +“Get well—and return to us. You will find a happy, cheerful home and +friends who love you dearly. Your father’s health is vigorous, and he +asks but to see you, but to be assured that you are well; and not a +care will ever cloud his benevolent countenance. How pleased you would +be to remark the improvement of our Ernest! He is now sixteen and full +of activity and spirit. He is desirous to be a true Swiss and to enter +into foreign service, but we cannot part with him, at least until his +elder brother returns to us. My uncle is not pleased with the idea of +a military career in a distant country, but Ernest never had your +powers of application. He looks upon study as an odious fetter; his +time is spent in the open air, climbing the hills or rowing on the +lake. I fear that he will become an idler unless we yield the point +and permit him to enter on the profession which he has selected. + +“Little alteration, except the growth of our dear children, has taken +place since you left us. The blue lake and snow-clad mountains—they +never change; and I think our placid home and our contented hearts are +regulated by the same immutable laws. My trifling occupations take up +my time and amuse me, and I am rewarded for any exertions by seeing +none but happy, kind faces around me. Since you left us, but one +change has taken place in our little household. Do you remember on +what occasion Justine Moritz entered our family? Probably you do not; +I will relate her history, therefore in a few words. Madame Moritz, +her mother, was a widow with four children, of whom Justine was the +third. This girl had always been the favourite of her father, but +through a strange perversity, her mother could not endure her, and +after the death of M. Moritz, treated her very ill. My aunt observed +this, and when Justine was twelve years of age, prevailed on her mother +to allow her to live at our house. The republican institutions of our +country have produced simpler and happier manners than those which +prevail in the great monarchies that surround it. Hence there is less +distinction between the several classes of its inhabitants; and the +lower orders, being neither so poor nor so despised, their manners are +more refined and moral. A servant in Geneva does not mean the same +thing as a servant in France and England. Justine, thus received in +our family, learned the duties of a servant, a condition which, in our +fortunate country, does not include the idea of ignorance and a +sacrifice of the dignity of a human being. + +“Justine, you may remember, was a great favourite of yours; and I +recollect you once remarked that if you were in an ill humour, one +glance from Justine could dissipate it, for the same reason that +Ariosto gives concerning the beauty of Angelica—she looked so +frank-hearted and happy. My aunt conceived a great attachment for her, +by which she was induced to give her an education superior to that +which she had at first intended. This benefit was fully repaid; +Justine was the most grateful little creature in the world: I do not +mean that she made any professions I never heard one pass her lips, but +you could see by her eyes that she almost adored her protectress. +Although her disposition was gay and in many respects inconsiderate, +yet she paid the greatest attention to every gesture of my aunt. She +thought her the model of all excellence and endeavoured to imitate her +phraseology and manners, so that even now she often reminds me of her. + +“When my dearest aunt died every one was too much occupied in their own +grief to notice poor Justine, who had attended her during her illness +with the most anxious affection. Poor Justine was very ill; but other +trials were reserved for her. + +“One by one, her brothers and sister died; and her mother, with the +exception of her neglected daughter, was left childless. The +conscience of the woman was troubled; she began to think that the +deaths of her favourites was a judgement from heaven to chastise her +partiality. She was a Roman Catholic; and I believe her confessor +confirmed the idea which she had conceived. Accordingly, a few months +after your departure for Ingolstadt, Justine was called home by her +repentant mother. Poor girl! She wept when she quitted our house; she +was much altered since the death of my aunt; grief had given softness +and a winning mildness to her manners, which had before been remarkable +for vivacity. Nor was her residence at her mother’s house of a nature +to restore her gaiety. The poor woman was very vacillating in her +repentance. She sometimes begged Justine to forgive her unkindness, +but much oftener accused her of having caused the deaths of her +brothers and sister. Perpetual fretting at length threw Madame Moritz +into a decline, which at first increased her irritability, but she is +now at peace for ever. She died on the first approach of cold weather, +at the beginning of this last winter. Justine has just returned to us; +and I assure you I love her tenderly. She is very clever and gentle, +and extremely pretty; as I mentioned before, her mien and her +expression continually remind me of my dear aunt. + +“I must say also a few words to you, my dear cousin, of little darling +William. I wish you could see him; he is very tall of his age, with +sweet laughing blue eyes, dark eyelashes, and curling hair. When he +smiles, two little dimples appear on each cheek, which are rosy with +health. He has already had one or two little _wives,_ but Louisa Biron +is his favourite, a pretty little girl of five years of age. + +“Now, dear Victor, I dare say you wish to be indulged in a little +gossip concerning the good people of Geneva. The pretty Miss Mansfield +has already received the congratulatory visits on her approaching +marriage with a young Englishman, John Melbourne, Esq. Her ugly +sister, Manon, married M. Duvillard, the rich banker, last autumn. Your +favourite schoolfellow, Louis Manoir, has suffered several misfortunes +since the departure of Clerval from Geneva. But he has already +recovered his spirits, and is reported to be on the point of marrying a +lively pretty Frenchwoman, Madame Tavernier. She is a widow, and much +older than Manoir; but she is very much admired, and a favourite with +everybody. + +“I have written myself into better spirits, dear cousin; but my anxiety +returns upon me as I conclude. Write, dearest Victor,—one line—one +word will be a blessing to us. Ten thousand thanks to Henry for his +kindness, his affection, and his many letters; we are sincerely +grateful. Adieu! my cousin; take care of yourself; and, I entreat +you, write! + +“Elizabeth Lavenza. + + +“Geneva, March 18th, 17—.” + + + +“Dear, dear Elizabeth!” I exclaimed, when I had read her +letter: “I will write instantly and relieve them from the anxiety +they must feel.” I wrote, and this exertion greatly fatigued me; but +my convalescence had commenced, and proceeded regularly. In another +fortnight I was able to leave my chamber. + +One of my first duties on my recovery was to introduce Clerval to the +several professors of the university. In doing this, I underwent a +kind of rough usage, ill befitting the wounds that my mind had +sustained. Ever since the fatal night, the end of my labours, and the +beginning of my misfortunes, I had conceived a violent antipathy even +to the name of natural philosophy. When I was otherwise quite restored +to health, the sight of a chemical instrument would renew all the agony +of my nervous symptoms. Henry saw this, and had removed all my +apparatus from my view. He had also changed my apartment; for he +perceived that I had acquired a dislike for the room which had +previously been my laboratory. But these cares of Clerval were made of +no avail when I visited the professors. M. Waldman inflicted torture +when he praised, with kindness and warmth, the astonishing progress I +had made in the sciences. He soon perceived that I disliked the +subject; but not guessing the real cause, he attributed my feelings to +modesty, and changed the subject from my improvement, to the science +itself, with a desire, as I evidently saw, of drawing me out. What +could I do? He meant to please, and he tormented me. I felt as if he +had placed carefully, one by one, in my view those instruments which +were to be afterwards used in putting me to a slow and cruel death. I +writhed under his words, yet dared not exhibit the pain I felt. +Clerval, whose eyes and feelings were always quick in discerning the +sensations of others, declined the subject, alleging, in excuse, his +total ignorance; and the conversation took a more general turn. I +thanked my friend from my heart, but I did not speak. I saw plainly +that he was surprised, but he never attempted to draw my secret from +me; and although I loved him with a mixture of affection and reverence +that knew no bounds, yet I could never persuade myself to confide in +him that event which was so often present to my recollection, but which +I feared the detail to another would only impress more deeply. + +M. Krempe was not equally docile; and in my condition at that time, of +almost insupportable sensitiveness, his harsh blunt encomiums gave me even +more pain than the benevolent approbation of M. Waldman. “D—n +the fellow!” cried he; “why, M. Clerval, I assure you he has +outstript us all. Ay, stare if you please; but it is nevertheless true. A +youngster who, but a few years ago, believed in Cornelius Agrippa as firmly +as in the gospel, has now set himself at the head of the university; and if +he is not soon pulled down, we shall all be out of countenance.—Ay, +ay,” continued he, observing my face expressive of suffering, +“M. Frankenstein is modest; an excellent quality in a young man. +Young men should be diffident of themselves, you know, M. Clerval: I was +myself when young; but that wears out in a very short time.” + +M. Krempe had now commenced an eulogy on himself, which happily turned +the conversation from a subject that was so annoying to me. + +Clerval had never sympathised in my tastes for natural science; and his +literary pursuits differed wholly from those which had occupied me. He +came to the university with the design of making himself complete +master of the oriental languages, and thus he should open a field for +the plan of life he had marked out for himself. Resolved to pursue no +inglorious career, he turned his eyes toward the East, as affording +scope for his spirit of enterprise. The Persian, Arabic, and Sanskrit +languages engaged his attention, and I was easily induced to enter on +the same studies. Idleness had ever been irksome to me, and now that I +wished to fly from reflection, and hated my former studies, I felt +great relief in being the fellow-pupil with my friend, and found not +only instruction but consolation in the works of the orientalists. I +did not, like him, attempt a critical knowledge of their dialects, for +I did not contemplate making any other use of them than temporary +amusement. I read merely to understand their meaning, and they well +repaid my labours. Their melancholy is soothing, and their joy +elevating, to a degree I never experienced in studying the authors of +any other country. When you read their writings, life appears to +consist in a warm sun and a garden of roses,—in the smiles and frowns +of a fair enemy, and the fire that consumes your own heart. How +different from the manly and heroical poetry of Greece and Rome! + +Summer passed away in these occupations, and my return to Geneva was +fixed for the latter end of autumn; but being delayed by several +accidents, winter and snow arrived, the roads were deemed impassable, +and my journey was retarded until the ensuing spring. I felt this +delay very bitterly; for I longed to see my native town and my beloved +friends. My return had only been delayed so long, from an +unwillingness to leave Clerval in a strange place, before he had become +acquainted with any of its inhabitants. The winter, however, was spent +cheerfully; and although the spring was uncommonly late, when it came +its beauty compensated for its dilatoriness. + +The month of May had already commenced, and I expected the letter daily +which was to fix the date of my departure, when Henry proposed a +pedestrian tour in the environs of Ingolstadt, that I might bid a +personal farewell to the country I had so long inhabited. I acceded +with pleasure to this proposition: I was fond of exercise, and Clerval +had always been my favourite companion in the ramble of this nature +that I had taken among the scenes of my native country. + +We passed a fortnight in these perambulations: my health and spirits +had long been restored, and they gained additional strength from the +salubrious air I breathed, the natural incidents of our progress, and +the conversation of my friend. Study had before secluded me from the +intercourse of my fellow-creatures, and rendered me unsocial; but +Clerval called forth the better feelings of my heart; he again taught +me to love the aspect of nature, and the cheerful faces of children. +Excellent friend! how sincerely you did love me, and endeavour to +elevate my mind until it was on a level with your own. A selfish +pursuit had cramped and narrowed me, until your gentleness and +affection warmed and opened my senses; I became the same happy creature +who, a few years ago, loved and beloved by all, had no sorrow or care. +When happy, inanimate nature had the power of bestowing on me the most +delightful sensations. A serene sky and verdant fields filled me with +ecstasy. The present season was indeed divine; the flowers of spring +bloomed in the hedges, while those of summer were already in bud. I +was undisturbed by thoughts which during the preceding year had pressed +upon me, notwithstanding my endeavours to throw them off, with an +invincible burden. + +Henry rejoiced in my gaiety, and sincerely sympathised in my feelings: he +exerted himself to amuse me, while he expressed the sensations that filled +his soul. The resources of his mind on this occasion were truly +astonishing: his conversation was full of imagination; and very often, in +imitation of the Persian and Arabic writers, he invented tales of wonderful +fancy and passion. At other times he repeated my favourite poems, or drew +me out into arguments, which he supported with great ingenuity. + +We returned to our college on a Sunday afternoon: the peasants were +dancing, and every one we met appeared gay and happy. My own spirits were +high, and I bounded along with feelings of unbridled joy and hilarity. + + + + +Chapter 7 + + +On my return, I found the following letter from my father:— + +“My dear Victor, + +“You have probably waited impatiently for a letter to fix the date of +your return to us; and I was at first tempted to write only a few +lines, merely mentioning the day on which I should expect you. But +that would be a cruel kindness, and I dare not do it. What would be +your surprise, my son, when you expected a happy and glad welcome, to +behold, on the contrary, tears and wretchedness? And how, Victor, can +I relate our misfortune? Absence cannot have rendered you callous to +our joys and griefs; and how shall I inflict pain on my long absent +son? I wish to prepare you for the woeful news, but I know it is +impossible; even now your eye skims over the page to seek the words +which are to convey to you the horrible tidings. + +“William is dead!—that sweet child, whose smiles delighted and warmed +my heart, who was so gentle, yet so gay! Victor, he is murdered! + +“I will not attempt to console you; but will simply relate the +circumstances of the transaction. + +“Last Thursday (May 7th), I, my niece, and your two brothers, went to +walk in Plainpalais. The evening was warm and serene, and we prolonged +our walk farther than usual. It was already dusk before we thought of +returning; and then we discovered that William and Ernest, who had gone +on before, were not to be found. We accordingly rested on a seat until +they should return. Presently Ernest came, and enquired if we had seen +his brother; he said, that he had been playing with him, that William +had run away to hide himself, and that he vainly sought for him, and +afterwards waited for a long time, but that he did not return. + +“This account rather alarmed us, and we continued to search for him +until night fell, when Elizabeth conjectured that he might have +returned to the house. He was not there. We returned again, with +torches; for I could not rest, when I thought that my sweet boy had +lost himself, and was exposed to all the damps and dews of night; +Elizabeth also suffered extreme anguish. About five in the morning I +discovered my lovely boy, whom the night before I had seen blooming and +active in health, stretched on the grass livid and motionless; the +print of the murder’s finger was on his neck. + +“He was conveyed home, and the anguish that was visible in my +countenance betrayed the secret to Elizabeth. She was very earnest to +see the corpse. At first I attempted to prevent her but she persisted, +and entering the room where it lay, hastily examined the neck of the +victim, and clasping her hands exclaimed, ‘O God! I have murdered my +darling child!’ + +“She fainted, and was restored with extreme difficulty. When she again +lived, it was only to weep and sigh. She told me, that that same +evening William had teased her to let him wear a very valuable +miniature that she possessed of your mother. This picture is gone, and +was doubtless the temptation which urged the murderer to the deed. We +have no trace of him at present, although our exertions to discover him +are unremitted; but they will not restore my beloved William! + +“Come, dearest Victor; you alone can console Elizabeth. She weeps +continually, and accuses herself unjustly as the cause of his death; +her words pierce my heart. We are all unhappy; but will not that be an +additional motive for you, my son, to return and be our comforter? +Your dear mother! Alas, Victor! I now say, Thank God she did not live +to witness the cruel, miserable death of her youngest darling! + +“Come, Victor; not brooding thoughts of vengeance against the assassin, +but with feelings of peace and gentleness, that will heal, instead of +festering, the wounds of our minds. Enter the house of mourning, my +friend, but with kindness and affection for those who love you, and not +with hatred for your enemies. + +“Your affectionate and afflicted father, + +“Alphonse Frankenstein. + + + +“Geneva, May 12th, 17—.” + + + +Clerval, who had watched my countenance as I read this letter, was +surprised to observe the despair that succeeded the joy I at first +expressed on receiving news from my friends. I threw the letter on the +table, and covered my face with my hands. + +“My dear Frankenstein,” exclaimed Henry, when he perceived me +weep with bitterness, “are you always to be unhappy? My dear friend, +what has happened?” + +I motioned him to take up the letter, while I walked up and down the +room in the extremest agitation. Tears also gushed from the eyes of +Clerval, as he read the account of my misfortune. + +“I can offer you no consolation, my friend,” said he; +“your disaster is irreparable. What do you intend to do?” + +“To go instantly to Geneva: come with me, Henry, to order the horses.” + +During our walk, Clerval endeavoured to say a few words of consolation; +he could only express his heartfelt sympathy. “Poor William!” said he, +“dear lovely child, he now sleeps with his angel mother! Who that had +seen him bright and joyous in his young beauty, but must weep over his +untimely loss! To die so miserably; to feel the murderer’s grasp! How +much more a murdered that could destroy radiant innocence! Poor little +fellow! one only consolation have we; his friends mourn and weep, but +he is at rest. The pang is over, his sufferings are at an end for ever. +A sod covers his gentle form, and he knows no pain. He can no longer +be a subject for pity; we must reserve that for his miserable +survivors.” + +Clerval spoke thus as we hurried through the streets; the words +impressed themselves on my mind and I remembered them afterwards in +solitude. But now, as soon as the horses arrived, I hurried into a +cabriolet, and bade farewell to my friend. + +My journey was very melancholy. At first I wished to hurry on, for I longed +to console and sympathise with my loved and sorrowing friends; but when I +drew near my native town, I slackened my progress. I could hardly sustain +the multitude of feelings that crowded into my mind. I passed through +scenes familiar to my youth, but which I had not seen for nearly six years. +How altered every thing might be during that time! One sudden and +desolating change had taken place; but a thousand little circumstances +might have by degrees worked other alterations, which, although they were +done more tranquilly, might not be the less decisive. Fear overcame me; I +dared no advance, dreading a thousand nameless evils that made me tremble, +although I was unable to define them. + +I remained two days at Lausanne, in this painful state of mind. I +contemplated the lake: the waters were placid; all around was calm; and the +snowy mountains, “the palaces of nature,” were not changed. By +degrees the calm and heavenly scene restored me, and I continued my journey +towards Geneva. + +The road ran by the side of the lake, which became narrower as I +approached my native town. I discovered more distinctly the black +sides of Jura, and the bright summit of Mont Blanc. I wept like a +child. “Dear mountains! my own beautiful lake! how do you welcome your +wanderer? Your summits are clear; the sky and lake are blue and +placid. Is this to prognosticate peace, or to mock at my unhappiness?” + +I fear, my friend, that I shall render myself tedious by dwelling on +these preliminary circumstances; but they were days of comparative +happiness, and I think of them with pleasure. My country, my beloved +country! who but a native can tell the delight I took in again +beholding thy streams, thy mountains, and, more than all, thy lovely +lake! + +Yet, as I drew nearer home, grief and fear again overcame me. Night also +closed around; and when I could hardly see the dark mountains, I felt still +more gloomily. The picture appeared a vast and dim scene of evil, and I +foresaw obscurely that I was destined to become the most wretched of human +beings. Alas! I prophesied truly, and failed only in one single +circumstance, that in all the misery I imagined and dreaded, I did not +conceive the hundredth part of the anguish I was destined to endure. + +It was completely dark when I arrived in the environs of Geneva; the gates +of the town were already shut; and I was obliged to pass the night at +Secheron, a village at the distance of half a league from the city. The sky +was serene; and, as I was unable to rest, I resolved to visit the spot +where my poor William had been murdered. As I could not pass through the +town, I was obliged to cross the lake in a boat to arrive at Plainpalais. +During this short voyage I saw the lightning playing on the summit of Mont +Blanc in the most beautiful figures. The storm appeared to approach +rapidly, and, on landing, I ascended a low hill, that I might observe its +progress. It advanced; the heavens were clouded, and I soon felt the rain +coming slowly in large drops, but its violence quickly increased. + +I quitted my seat, and walked on, although the darkness and storm +increased every minute, and the thunder burst with a terrific crash +over my head. It was echoed from Salêve, the Juras, and the Alps of +Savoy; vivid flashes of lightning dazzled my eyes, illuminating the +lake, making it appear like a vast sheet of fire; then for an instant +every thing seemed of a pitchy darkness, until the eye recovered itself +from the preceding flash. The storm, as is often the case in +Switzerland, appeared at once in various parts of the heavens. The +most violent storm hung exactly north of the town, over the part of the +lake which lies between the promontory of Belrive and the village of +Copêt. Another storm enlightened Jura with faint flashes; and another +darkened and sometimes disclosed the Môle, a peaked mountain to the +east of the lake. + +While I watched the tempest, so beautiful yet terrific, I wandered on with +a hasty step. This noble war in the sky elevated my spirits; I clasped my +hands, and exclaimed aloud, “William, dear angel! this is thy +funeral, this thy dirge!” As I said these words, I perceived in the +gloom a figure which stole from behind a clump of trees near me; I stood +fixed, gazing intently: I could not be mistaken. A flash of lightning +illuminated the object, and discovered its shape plainly to me; its +gigantic stature, and the deformity of its aspect more hideous than belongs +to humanity, instantly informed me that it was the wretch, the filthy +dæmon, to whom I had given life. What did he there? Could he be (I +shuddered at the conception) the murderer of my brother? No sooner did that +idea cross my imagination, than I became convinced of its truth; my teeth +chattered, and I was forced to lean against a tree for support. The figure +passed me quickly, and I lost it in the gloom. Nothing in human shape could +have destroyed the fair child. _He_ was the murderer! I could not +doubt it. The mere presence of the idea was an irresistible proof of the +fact. I thought of pursuing the devil; but it would have been in vain, for +another flash discovered him to me hanging among the rocks of the nearly +perpendicular ascent of Mont Salêve, a hill that bounds Plainpalais on the +south. He soon reached the summit, and disappeared. + +I remained motionless. The thunder ceased; but the rain still +continued, and the scene was enveloped in an impenetrable darkness. I +revolved in my mind the events which I had until now sought to forget: +the whole train of my progress toward the creation; the appearance of +the works of my own hands at my bedside; its departure. Two years had +now nearly elapsed since the night on which he first received life; and +was this his first crime? Alas! I had turned loose into the world a +depraved wretch, whose delight was in carnage and misery; had he not +murdered my brother? + +No one can conceive the anguish I suffered during the remainder of the +night, which I spent, cold and wet, in the open air. But I did not +feel the inconvenience of the weather; my imagination was busy in +scenes of evil and despair. I considered the being whom I had cast +among mankind, and endowed with the will and power to effect purposes +of horror, such as the deed which he had now done, nearly in the light +of my own vampire, my own spirit let loose from the grave, and forced +to destroy all that was dear to me. + +Day dawned; and I directed my steps towards the town. The gates were +open, and I hastened to my father’s house. My first thought was to +discover what I knew of the murderer, and cause instant pursuit to be +made. But I paused when I reflected on the story that I had to tell. A +being whom I myself had formed, and endued with life, had met me at +midnight among the precipices of an inaccessible mountain. I +remembered also the nervous fever with which I had been seized just at +the time that I dated my creation, and which would give an air of +delirium to a tale otherwise so utterly improbable. I well knew that +if any other had communicated such a relation to me, I should have +looked upon it as the ravings of insanity. Besides, the strange nature +of the animal would elude all pursuit, even if I were so far credited +as to persuade my relatives to commence it. And then of what use would +be pursuit? Who could arrest a creature capable of scaling the +overhanging sides of Mont Salêve? These reflections determined me, and +I resolved to remain silent. + +It was about five in the morning when I entered my father’s house. I +told the servants not to disturb the family, and went into the library +to attend their usual hour of rising. + +Six years had elapsed, passed in a dream but for one indelible trace, and I +stood in the same place where I had last embraced my father before my +departure for Ingolstadt. Beloved and venerable parent! He still remained +to me. I gazed on the picture of my mother, which stood over the +mantel-piece. It was an historical subject, painted at my father’s +desire, and represented Caroline Beaufort in an agony of despair, kneeling +by the coffin of her dead father. Her garb was rustic, and her cheek pale; +but there was an air of dignity and beauty, that hardly permitted the +sentiment of pity. Below this picture was a miniature of William; and my +tears flowed when I looked upon it. While I was thus engaged, Ernest +entered: he had heard me arrive, and hastened to welcome me: +“Welcome, my dearest Victor,” said he. “Ah! I wish you +had come three months ago, and then you would have found us all joyous and +delighted. You come to us now to share a misery which nothing can +alleviate; yet your presence will, I hope, revive our father, who seems +sinking under his misfortune; and your persuasions will induce poor +Elizabeth to cease her vain and tormenting self-accusations.—Poor +William! he was our darling and our pride!” + +Tears, unrestrained, fell from my brother’s eyes; a sense of mortal +agony crept over my frame. Before, I had only imagined the +wretchedness of my desolated home; the reality came on me as a new, and +a not less terrible, disaster. I tried to calm Ernest; I enquired more +minutely concerning my father, and here I named my cousin. + +“She most of all,” said Ernest, “requires consolation; she accused +herself of having caused the death of my brother, and that made her +very wretched. But since the murderer has been discovered—” + +“The murderer discovered! Good God! how can that be? who could attempt +to pursue him? It is impossible; one might as well try to overtake the +winds, or confine a mountain-stream with a straw. I saw him too; he +was free last night!” + +“I do not know what you mean,” replied my brother, in accents of +wonder, “but to us the discovery we have made completes our misery. No +one would believe it at first; and even now Elizabeth will not be +convinced, notwithstanding all the evidence. Indeed, who would credit +that Justine Moritz, who was so amiable, and fond of all the family, +could suddenly become so capable of so frightful, so appalling a crime?” + +“Justine Moritz! Poor, poor girl, is she the accused? But it is +wrongfully; every one knows that; no one believes it, surely, Ernest?” + +“No one did at first; but several circumstances came out, that have +almost forced conviction upon us; and her own behaviour has been so +confused, as to add to the evidence of facts a weight that, I fear, +leaves no hope for doubt. But she will be tried today, and you will +then hear all.” + +He then related that, the morning on which the murder of poor William +had been discovered, Justine had been taken ill, and confined to her +bed for several days. During this interval, one of the servants, +happening to examine the apparel she had worn on the night of the +murder, had discovered in her pocket the picture of my mother, which +had been judged to be the temptation of the murderer. The servant +instantly showed it to one of the others, who, without saying a word to +any of the family, went to a magistrate; and, upon their deposition, +Justine was apprehended. On being charged with the fact, the poor girl +confirmed the suspicion in a great measure by her extreme confusion of +manner. + +This was a strange tale, but it did not shake my faith; and I replied +earnestly, “You are all mistaken; I know the murderer. Justine, poor, +good Justine, is innocent.” + +At that instant my father entered. I saw unhappiness deeply impressed +on his countenance, but he endeavoured to welcome me cheerfully; and, +after we had exchanged our mournful greeting, would have introduced +some other topic than that of our disaster, had not Ernest exclaimed, +“Good God, papa! Victor says that he knows who was the murderer of +poor William.” + +“We do also, unfortunately,” replied my father, “for indeed I had +rather have been for ever ignorant than have discovered so much +depravity and ungratitude in one I valued so highly.” + +“My dear father, you are mistaken; Justine is innocent.” + +“If she is, God forbid that she should suffer as guilty. She is to be +tried today, and I hope, I sincerely hope, that she will be acquitted.” + +This speech calmed me. I was firmly convinced in my own mind that +Justine, and indeed every human being, was guiltless of this murder. I +had no fear, therefore, that any circumstantial evidence could be +brought forward strong enough to convict her. My tale was not one to +announce publicly; its astounding horror would be looked upon as +madness by the vulgar. Did any one indeed exist, except I, the +creator, who would believe, unless his senses convinced him, in the +existence of the living monument of presumption and rash ignorance +which I had let loose upon the world? + +We were soon joined by Elizabeth. Time had altered her since I last +beheld her; it had endowed her with loveliness surpassing the beauty of +her childish years. There was the same candour, the same vivacity, but +it was allied to an expression more full of sensibility and intellect. +She welcomed me with the greatest affection. “Your arrival, my dear +cousin,” said she, “fills me with hope. You perhaps will find some +means to justify my poor guiltless Justine. Alas! who is safe, if she +be convicted of crime? I rely on her innocence as certainly as I do +upon my own. Our misfortune is doubly hard to us; we have not only +lost that lovely darling boy, but this poor girl, whom I sincerely +love, is to be torn away by even a worse fate. If she is condemned, I +never shall know joy more. But she will not, I am sure she will not; +and then I shall be happy again, even after the sad death of my little +William.” + +“She is innocent, my Elizabeth,” said I, “and that shall +be proved; fear nothing, but let your spirits be cheered by the assurance +of her acquittal.” + +“How kind and generous you are! every one else believes in her guilt, +and that made me wretched, for I knew that it was impossible: and to +see every one else prejudiced in so deadly a manner rendered me +hopeless and despairing.” She wept. + +“Dearest niece,” said my father, “dry your tears. If she +is, as you believe, innocent, rely on the justice of our laws, and the +activity with which I shall prevent the slightest shadow of +partiality.” + + + + +Chapter 8 + + +We passed a few sad hours until eleven o’clock, when the trial was to +commence. My father and the rest of the family being obliged to attend +as witnesses, I accompanied them to the court. During the whole of +this wretched mockery of justice I suffered living torture. It was to +be decided whether the result of my curiosity and lawless devices would +cause the death of two of my fellow beings: one a smiling babe full of +innocence and joy, the other far more dreadfully murdered, with every +aggravation of infamy that could make the murder memorable in horror. +Justine also was a girl of merit and possessed qualities which promised +to render her life happy; now all was to be obliterated in an +ignominious grave, and I the cause! A thousand times rather would I +have confessed myself guilty of the crime ascribed to Justine, but I +was absent when it was committed, and such a declaration would have +been considered as the ravings of a madman and would not have +exculpated her who suffered through me. + +The appearance of Justine was calm. She was dressed in mourning, and +her countenance, always engaging, was rendered, by the solemnity of her +feelings, exquisitely beautiful. Yet she appeared confident in +innocence and did not tremble, although gazed on and execrated by +thousands, for all the kindness which her beauty might otherwise have +excited was obliterated in the minds of the spectators by the +imagination of the enormity she was supposed to have committed. She +was tranquil, yet her tranquillity was evidently constrained; and as +her confusion had before been adduced as a proof of her guilt, she +worked up her mind to an appearance of courage. When she entered the +court she threw her eyes round it and quickly discovered where we were +seated. A tear seemed to dim her eye when she saw us, but she quickly +recovered herself, and a look of sorrowful affection seemed to attest +her utter guiltlessness. + +The trial began, and after the advocate against her had stated the +charge, several witnesses were called. Several strange facts combined +against her, which might have staggered anyone who had not such proof +of her innocence as I had. She had been out the whole of the night on +which the murder had been committed and towards morning had been +perceived by a market-woman not far from the spot where the body of the +murdered child had been afterwards found. The woman asked her what she +did there, but she looked very strangely and only returned a confused +and unintelligible answer. She returned to the house about eight +o’clock, and when one inquired where she had passed the night, she +replied that she had been looking for the child and demanded earnestly +if anything had been heard concerning him. When shown the body, she +fell into violent hysterics and kept her bed for several days. The +picture was then produced which the servant had found in her pocket; +and when Elizabeth, in a faltering voice, proved that it was the same +which, an hour before the child had been missed, she had placed round +his neck, a murmur of horror and indignation filled the court. + +Justine was called on for her defence. As the trial had proceeded, her +countenance had altered. Surprise, horror, and misery were strongly +expressed. Sometimes she struggled with her tears, but when she was +desired to plead, she collected her powers and spoke in an audible +although variable voice. + +“God knows,” she said, “how entirely I am innocent. But I +do not pretend that my protestations should acquit me; I rest my innocence +on a plain and simple explanation of the facts which have been adduced +against me, and I hope the character I have always borne will incline my +judges to a favourable interpretation where any circumstance appears +doubtful or suspicious.” + +She then related that, by the permission of Elizabeth, she had passed +the evening of the night on which the murder had been committed at the +house of an aunt at Chêne, a village situated at about a league from +Geneva. On her return, at about nine o’clock, she met a man who asked +her if she had seen anything of the child who was lost. She was +alarmed by this account and passed several hours in looking for him, +when the gates of Geneva were shut, and she was forced to remain +several hours of the night in a barn belonging to a cottage, being +unwilling to call up the inhabitants, to whom she was well known. Most +of the night she spent here watching; towards morning she believed that +she slept for a few minutes; some steps disturbed her, and she awoke. +It was dawn, and she quitted her asylum, that she might again endeavour +to find my brother. If she had gone near the spot where his body lay, +it was without her knowledge. That she had been bewildered when +questioned by the market-woman was not surprising, since she had passed +a sleepless night and the fate of poor William was yet uncertain. +Concerning the picture she could give no account. + +“I know,” continued the unhappy victim, “how heavily and +fatally this one circumstance weighs against me, but I have no power of +explaining it; and when I have expressed my utter ignorance, I am only left +to conjecture concerning the probabilities by which it might have been +placed in my pocket. But here also I am checked. I believe that I have no +enemy on earth, and none surely would have been so wicked as to destroy me +wantonly. Did the murderer place it there? I know of no opportunity +afforded him for so doing; or, if I had, why should he have stolen the +jewel, to part with it again so soon? + +“I commit my cause to the justice of my judges, yet I see no room for +hope. I beg permission to have a few witnesses examined concerning my +character, and if their testimony shall not overweigh my supposed +guilt, I must be condemned, although I would pledge my salvation on my +innocence.” + +Several witnesses were called who had known her for many years, and +they spoke well of her; but fear and hatred of the crime of which they +supposed her guilty rendered them timorous and unwilling to come +forward. Elizabeth saw even this last resource, her excellent +dispositions and irreproachable conduct, about to fail the accused, +when, although violently agitated, she desired permission to address +the court. + +“I am,” said she, “the cousin of the unhappy child who +was murdered, or rather his sister, for I was educated by and have lived +with his parents ever since and even long before his birth. It may +therefore be judged indecent in me to come forward on this occasion, but +when I see a fellow creature about to perish through the cowardice of her +pretended friends, I wish to be allowed to speak, that I may say what I +know of her character. I am well acquainted with the accused. I have lived +in the same house with her, at one time for five and at another for nearly +two years. During all that period she appeared to me the most amiable and +benevolent of human creatures. She nursed Madame Frankenstein, my aunt, in +her last illness, with the greatest affection and care and afterwards +attended her own mother during a tedious illness, in a manner that excited +the admiration of all who knew her, after which she again lived in my +uncle’s house, where she was beloved by all the family. She was +warmly attached to the child who is now dead and acted towards him like a +most affectionate mother. For my own part, I do not hesitate to say that, +notwithstanding all the evidence produced against her, I believe and rely +on her perfect innocence. She had no temptation for such an action; as to +the bauble on which the chief proof rests, if she had earnestly desired it, +I should have willingly given it to her, so much do I esteem and value +her.” + +A murmur of approbation followed Elizabeth’s simple and powerful +appeal, but it was excited by her generous interference, and not in +favour of poor Justine, on whom the public indignation was turned with +renewed violence, charging her with the blackest ingratitude. She +herself wept as Elizabeth spoke, but she did not answer. My own +agitation and anguish was extreme during the whole trial. I believed +in her innocence; I knew it. Could the dæmon who had (I did not for a +minute doubt) murdered my brother also in his hellish sport have +betrayed the innocent to death and ignominy? I could not sustain the +horror of my situation, and when I perceived that the popular voice and +the countenances of the judges had already condemned my unhappy victim, +I rushed out of the court in agony. The tortures of the accused did +not equal mine; she was sustained by innocence, but the fangs of +remorse tore my bosom and would not forgo their hold. + +I passed a night of unmingled wretchedness. In the morning I went to +the court; my lips and throat were parched. I dared not ask the fatal +question, but I was known, and the officer guessed the cause of my +visit. The ballots had been thrown; they were all black, and Justine +was condemned. + +I cannot pretend to describe what I then felt. I had before +experienced sensations of horror, and I have endeavoured to bestow upon +them adequate expressions, but words cannot convey an idea of the +heart-sickening despair that I then endured. The person to whom I +addressed myself added that Justine had already confessed her guilt. +“That evidence,” he observed, “was hardly required in so glaring a +case, but I am glad of it, and, indeed, none of our judges like to +condemn a criminal upon circumstantial evidence, be it ever so +decisive.” + +This was strange and unexpected intelligence; what could it mean? Had +my eyes deceived me? And was I really as mad as the whole world would +believe me to be if I disclosed the object of my suspicions? I +hastened to return home, and Elizabeth eagerly demanded the result. + +“My cousin,” replied I, “it is decided as you may have expected; all +judges had rather that ten innocent should suffer than that one guilty +should escape. But she has confessed.” + +This was a dire blow to poor Elizabeth, who had relied with firmness upon +Justine’s innocence. “Alas!” said she. “How shall I +ever again believe in human goodness? Justine, whom I loved and esteemed as +my sister, how could she put on those smiles of innocence only to betray? +Her mild eyes seemed incapable of any severity or guile, and yet she has +committed a murder.” + +Soon after we heard that the poor victim had expressed a desire to see my +cousin. My father wished her not to go but said that he left it to her own +judgment and feelings to decide. “Yes,” said Elizabeth, +“I will go, although she is guilty; and you, Victor, shall accompany +me; I cannot go alone.” The idea of this visit was torture to me, yet +I could not refuse. + +We entered the gloomy prison chamber and beheld Justine sitting on some +straw at the farther end; her hands were manacled, and her head rested on +her knees. She rose on seeing us enter, and when we were left alone with +her, she threw herself at the feet of Elizabeth, weeping bitterly. My +cousin wept also. + +“Oh, Justine!” said she. “Why did you rob me of my last consolation? +I relied on your innocence, and although I was then very wretched, I +was not so miserable as I am now.” + +“And do you also believe that I am so very, very wicked? Do you also +join with my enemies to crush me, to condemn me as a murderer?” Her +voice was suffocated with sobs. + +“Rise, my poor girl,” said Elizabeth; “why do you kneel, +if you are innocent? I am not one of your enemies, I believed you +guiltless, notwithstanding every evidence, until I heard that you had +yourself declared your guilt. That report, you say, is false; and be +assured, dear Justine, that nothing can shake my confidence in you for a +moment, but your own confession.” + +“I did confess, but I confessed a lie. I confessed, that I might +obtain absolution; but now that falsehood lies heavier at my heart than +all my other sins. The God of heaven forgive me! Ever since I was +condemned, my confessor has besieged me; he threatened and menaced, +until I almost began to think that I was the monster that he said I +was. He threatened excommunication and hell fire in my last moments if +I continued obdurate. Dear lady, I had none to support me; all looked +on me as a wretch doomed to ignominy and perdition. What could I do? +In an evil hour I subscribed to a lie; and now only am I truly +miserable.” + +She paused, weeping, and then continued, “I thought with horror, my +sweet lady, that you should believe your Justine, whom your blessed +aunt had so highly honoured, and whom you loved, was a creature capable +of a crime which none but the devil himself could have perpetrated. +Dear William! dearest blessed child! I soon shall see you again in +heaven, where we shall all be happy; and that consoles me, going as I +am to suffer ignominy and death.” + +“Oh, Justine! Forgive me for having for one moment distrusted you. +Why did you confess? But do not mourn, dear girl. Do not fear. I +will proclaim, I will prove your innocence. I will melt the stony +hearts of your enemies by my tears and prayers. You shall not die! +You, my playfellow, my companion, my sister, perish on the scaffold! +No! No! I never could survive so horrible a misfortune.” + +Justine shook her head mournfully. “I do not fear to die,” she said; +“that pang is past. God raises my weakness and gives me courage to +endure the worst. I leave a sad and bitter world; and if you remember +me and think of me as of one unjustly condemned, I am resigned to the +fate awaiting me. Learn from me, dear lady, to submit in patience to +the will of heaven!” + +During this conversation I had retired to a corner of the prison room, +where I could conceal the horrid anguish that possessed me. Despair! +Who dared talk of that? The poor victim, who on the morrow was to pass +the awful boundary between life and death, felt not, as I did, such +deep and bitter agony. I gnashed my teeth and ground them together, +uttering a groan that came from my inmost soul. Justine started. When +she saw who it was, she approached me and said, “Dear sir, you are very +kind to visit me; you, I hope, do not believe that I am guilty?” + +I could not answer. “No, Justine,” said Elizabeth; “he is more +convinced of your innocence than I was, for even when he heard that you +had confessed, he did not credit it.” + +“I truly thank him. In these last moments I feel the sincerest +gratitude towards those who think of me with kindness. How sweet is +the affection of others to such a wretch as I am! It removes more than +half my misfortune, and I feel as if I could die in peace now that my +innocence is acknowledged by you, dear lady, and your cousin.” + +Thus the poor sufferer tried to comfort others and herself. She indeed +gained the resignation she desired. But I, the true murderer, felt the +never-dying worm alive in my bosom, which allowed of no hope or +consolation. Elizabeth also wept and was unhappy, but hers also was +the misery of innocence, which, like a cloud that passes over the fair +moon, for a while hides but cannot tarnish its brightness. Anguish and +despair had penetrated into the core of my heart; I bore a hell within +me which nothing could extinguish. We stayed several hours with +Justine, and it was with great difficulty that Elizabeth could tear +herself away. “I wish,” cried she, “that I were to die with you; I +cannot live in this world of misery.” + +Justine assumed an air of cheerfulness, while she with difficulty +repressed her bitter tears. She embraced Elizabeth and said in a voice +of half-suppressed emotion, “Farewell, sweet lady, dearest Elizabeth, +my beloved and only friend; may heaven, in its bounty, bless and +preserve you; may this be the last misfortune that you will ever +suffer! Live, and be happy, and make others so.” + +And on the morrow Justine died. Elizabeth’s heart-rending eloquence +failed to move the judges from their settled conviction in the +criminality of the saintly sufferer. My passionate and indignant +appeals were lost upon them. And when I received their cold answers +and heard the harsh, unfeeling reasoning of these men, my purposed +avowal died away on my lips. Thus I might proclaim myself a madman, +but not revoke the sentence passed upon my wretched victim. She +perished on the scaffold as a murderess! + +From the tortures of my own heart, I turned to contemplate the deep and +voiceless grief of my Elizabeth. This also was my doing! And my +father’s woe, and the desolation of that late so smiling home all was +the work of my thrice-accursed hands! Ye weep, unhappy ones, but these +are not your last tears! Again shall you raise the funeral wail, and +the sound of your lamentations shall again and again be heard! +Frankenstein, your son, your kinsman, your early, much-loved friend; he +who would spend each vital drop of blood for your sakes, who has no +thought nor sense of joy except as it is mirrored also in your dear +countenances, who would fill the air with blessings and spend his life +in serving you—he bids you weep, to shed countless tears; happy beyond +his hopes, if thus inexorable fate be satisfied, and if the destruction +pause before the peace of the grave have succeeded to your sad torments! + +Thus spoke my prophetic soul, as, torn by remorse, horror, and despair, +I beheld those I loved spend vain sorrow upon the graves of William and +Justine, the first hapless victims to my unhallowed arts. + + + + +Chapter 9 + + +Nothing is more painful to the human mind than, after the feelings have +been worked up by a quick succession of events, the dead calmness of +inaction and certainty which follows and deprives the soul both of hope +and fear. Justine died, she rested, and I was alive. The blood flowed +freely in my veins, but a weight of despair and remorse pressed on my +heart which nothing could remove. Sleep fled from my eyes; I wandered +like an evil spirit, for I had committed deeds of mischief beyond +description horrible, and more, much more (I persuaded myself) was yet +behind. Yet my heart overflowed with kindness and the love of virtue. +I had begun life with benevolent intentions and thirsted for the moment +when I should put them in practice and make myself useful to my fellow +beings. Now all was blasted; instead of that serenity of conscience +which allowed me to look back upon the past with self-satisfaction, and +from thence to gather promise of new hopes, I was seized by remorse and +the sense of guilt, which hurried me away to a hell of intense tortures +such as no language can describe. + +This state of mind preyed upon my health, which had perhaps never +entirely recovered from the first shock it had sustained. I shunned +the face of man; all sound of joy or complacency was torture to me; +solitude was my only consolation—deep, dark, deathlike solitude. + +My father observed with pain the alteration perceptible in my disposition +and habits and endeavoured by arguments deduced from the feelings of his +serene conscience and guiltless life to inspire me with fortitude and +awaken in me the courage to dispel the dark cloud which brooded over me. +“Do you think, Victor,” said he, “that I do not suffer +also? No one could love a child more than I loved your +brother”—tears came into his eyes as he spoke—“but +is it not a duty to the survivors that we should refrain from augmenting +their unhappiness by an appearance of immoderate grief? It is also a duty +owed to yourself, for excessive sorrow prevents improvement or enjoyment, +or even the discharge of daily usefulness, without which no man is fit for +society.” + +This advice, although good, was totally inapplicable to my case; I +should have been the first to hide my grief and console my friends if +remorse had not mingled its bitterness, and terror its alarm, with my +other sensations. Now I could only answer my father with a look of +despair and endeavour to hide myself from his view. + +About this time we retired to our house at Belrive. This change was +particularly agreeable to me. The shutting of the gates regularly at +ten o’clock and the impossibility of remaining on the lake after that +hour had rendered our residence within the walls of Geneva very irksome +to me. I was now free. Often, after the rest of the family had +retired for the night, I took the boat and passed many hours upon the +water. Sometimes, with my sails set, I was carried by the wind; and +sometimes, after rowing into the middle of the lake, I left the boat to +pursue its own course and gave way to my own miserable reflections. I +was often tempted, when all was at peace around me, and I the only +unquiet thing that wandered restless in a scene so beautiful and +heavenly—if I except some bat, or the frogs, whose harsh and +interrupted croaking was heard only when I approached the shore—often, +I say, I was tempted to plunge into the silent lake, that the waters +might close over me and my calamities for ever. But I was restrained, +when I thought of the heroic and suffering Elizabeth, whom I tenderly +loved, and whose existence was bound up in mine. I thought also of my +father and surviving brother; should I by my base desertion leave them +exposed and unprotected to the malice of the fiend whom I had let loose +among them? + +At these moments I wept bitterly and wished that peace would revisit my +mind only that I might afford them consolation and happiness. But that +could not be. Remorse extinguished every hope. I had been the author of +unalterable evils, and I lived in daily fear lest the monster whom I had +created should perpetrate some new wickedness. I had an obscure feeling +that all was not over and that he would still commit some signal crime, +which by its enormity should almost efface the recollection of the past. +There was always scope for fear so long as anything I loved remained +behind. My abhorrence of this fiend cannot be conceived. When I thought of +him I gnashed my teeth, my eyes became inflamed, and I ardently wished to +extinguish that life which I had so thoughtlessly bestowed. When I +reflected on his crimes and malice, my hatred and revenge burst all bounds +of moderation. I would have made a pilgrimage to the highest peak of the +Andes, could I, when there, have precipitated him to their base. I wished +to see him again, that I might wreak the utmost extent of abhorrence on his +head and avenge the deaths of William and Justine. + +Our house was the house of mourning. My father’s health was deeply +shaken by the horror of the recent events. Elizabeth was sad and +desponding; she no longer took delight in her ordinary occupations; all +pleasure seemed to her sacrilege toward the dead; eternal woe and tears she +then thought was the just tribute she should pay to innocence so blasted +and destroyed. She was no longer that happy creature who in earlier youth +wandered with me on the banks of the lake and talked with ecstasy of our +future prospects. The first of those sorrows which are sent to wean us from +the earth had visited her, and its dimming influence quenched her dearest +smiles. + +“When I reflect, my dear cousin,” said she, “on the miserable death of +Justine Moritz, I no longer see the world and its works as they before +appeared to me. Before, I looked upon the accounts of vice and +injustice that I read in books or heard from others as tales of ancient +days or imaginary evils; at least they were remote and more familiar to +reason than to the imagination; but now misery has come home, and men +appear to me as monsters thirsting for each other’s blood. Yet I am +certainly unjust. Everybody believed that poor girl to be guilty; and +if she could have committed the crime for which she suffered, assuredly +she would have been the most depraved of human creatures. For the sake +of a few jewels, to have murdered the son of her benefactor and friend, +a child whom she had nursed from its birth, and appeared to love as if +it had been her own! I could not consent to the death of any human +being, but certainly I should have thought such a creature unfit to +remain in the society of men. But she was innocent. I know, I feel +she was innocent; you are of the same opinion, and that confirms me. +Alas! Victor, when falsehood can look so like the truth, who can +assure themselves of certain happiness? I feel as if I were walking on +the edge of a precipice, towards which thousands are crowding and +endeavouring to plunge me into the abyss. William and Justine were +assassinated, and the murderer escapes; he walks about the world free, +and perhaps respected. But even if I were condemned to suffer on the +scaffold for the same crimes, I would not change places with such a +wretch.” + +I listened to this discourse with the extremest agony. I, not in deed, +but in effect, was the true murderer. Elizabeth read my anguish in my +countenance, and kindly taking my hand, said, “My dearest friend, you +must calm yourself. These events have affected me, God knows how +deeply; but I am not so wretched as you are. There is an expression of +despair, and sometimes of revenge, in your countenance that makes me +tremble. Dear Victor, banish these dark passions. Remember the +friends around you, who centre all their hopes in you. Have we lost +the power of rendering you happy? Ah! While we love, while we are +true to each other, here in this land of peace and beauty, your native +country, we may reap every tranquil blessing—what can disturb our +peace?” + +And could not such words from her whom I fondly prized before every +other gift of fortune suffice to chase away the fiend that lurked in my +heart? Even as she spoke I drew near to her, as if in terror, lest at +that very moment the destroyer had been near to rob me of her. + +Thus not the tenderness of friendship, nor the beauty of earth, nor of +heaven, could redeem my soul from woe; the very accents of love were +ineffectual. I was encompassed by a cloud which no beneficial +influence could penetrate. The wounded deer dragging its fainting +limbs to some untrodden brake, there to gaze upon the arrow which had +pierced it, and to die, was but a type of me. + +Sometimes I could cope with the sullen despair that overwhelmed me, but +sometimes the whirlwind passions of my soul drove me to seek, by bodily +exercise and by change of place, some relief from my intolerable +sensations. It was during an access of this kind that I suddenly left +my home, and bending my steps towards the near Alpine valleys, sought +in the magnificence, the eternity of such scenes, to forget myself and +my ephemeral, because human, sorrows. My wanderings were directed +towards the valley of Chamounix. I had visited it frequently during my +boyhood. Six years had passed since then: _I_ was a wreck, but nought +had changed in those savage and enduring scenes. + +I performed the first part of my journey on horseback. I afterwards +hired a mule, as the more sure-footed and least liable to receive +injury on these rugged roads. The weather was fine; it was about the +middle of the month of August, nearly two months after the death of +Justine, that miserable epoch from which I dated all my woe. The +weight upon my spirit was sensibly lightened as I plunged yet deeper in +the ravine of Arve. The immense mountains and precipices that overhung +me on every side, the sound of the river raging among the rocks, and +the dashing of the waterfalls around spoke of a power mighty as +Omnipotence—and I ceased to fear or to bend before any being less +almighty than that which had created and ruled the elements, here +displayed in their most terrific guise. Still, as I ascended higher, +the valley assumed a more magnificent and astonishing character. +Ruined castles hanging on the precipices of piny mountains, the +impetuous Arve, and cottages every here and there peeping forth from +among the trees formed a scene of singular beauty. But it was +augmented and rendered sublime by the mighty Alps, whose white and +shining pyramids and domes towered above all, as belonging to another +earth, the habitations of another race of beings. + +I passed the bridge of Pélissier, where the ravine, which the river +forms, opened before me, and I began to ascend the mountain that +overhangs it. Soon after, I entered the valley of Chamounix. This +valley is more wonderful and sublime, but not so beautiful and +picturesque as that of Servox, through which I had just passed. The +high and snowy mountains were its immediate boundaries, but I saw no +more ruined castles and fertile fields. Immense glaciers approached +the road; I heard the rumbling thunder of the falling avalanche and +marked the smoke of its passage. Mont Blanc, the supreme and +magnificent Mont Blanc, raised itself from the surrounding _aiguilles_, +and its tremendous _dôme_ overlooked the valley. + +A tingling long-lost sense of pleasure often came across me during this +journey. Some turn in the road, some new object suddenly perceived and +recognised, reminded me of days gone by, and were associated with the +lighthearted gaiety of boyhood. The very winds whispered in soothing +accents, and maternal Nature bade me weep no more. Then again the +kindly influence ceased to act—I found myself fettered again to grief +and indulging in all the misery of reflection. Then I spurred on my +animal, striving so to forget the world, my fears, and more than all, +myself—or, in a more desperate fashion, I alighted and threw myself on +the grass, weighed down by horror and despair. + +At length I arrived at the village of Chamounix. Exhaustion succeeded +to the extreme fatigue both of body and of mind which I had endured. +For a short space of time I remained at the window watching the pallid +lightnings that played above Mont Blanc and listening to the rushing of +the Arve, which pursued its noisy way beneath. The same lulling sounds +acted as a lullaby to my too keen sensations; when I placed my head +upon my pillow, sleep crept over me; I felt it as it came and blessed +the giver of oblivion. + + + + +Chapter 10 + + +I spent the following day roaming through the valley. I stood beside +the sources of the Arveiron, which take their rise in a glacier, that +with slow pace is advancing down from the summit of the hills to +barricade the valley. The abrupt sides of vast mountains were before +me; the icy wall of the glacier overhung me; a few shattered pines were +scattered around; and the solemn silence of this glorious +presence-chamber of imperial Nature was broken only by the brawling +waves or the fall of some vast fragment, the thunder sound of the +avalanche or the cracking, reverberated along the mountains, of the +accumulated ice, which, through the silent working of immutable laws, +was ever and anon rent and torn, as if it had been but a plaything in +their hands. These sublime and magnificent scenes afforded me the +greatest consolation that I was capable of receiving. They elevated me +from all littleness of feeling, and although they did not remove my +grief, they subdued and tranquillised it. In some degree, also, they +diverted my mind from the thoughts over which it had brooded for the +last month. I retired to rest at night; my slumbers, as it were, +waited on and ministered to by the assemblance of grand shapes which I +had contemplated during the day. They congregated round me; the +unstained snowy mountain-top, the glittering pinnacle, the pine woods, +and ragged bare ravine, the eagle, soaring amidst the clouds—they all +gathered round me and bade me be at peace. + +Where had they fled when the next morning I awoke? All of +soul-inspiriting fled with sleep, and dark melancholy clouded every +thought. The rain was pouring in torrents, and thick mists hid the +summits of the mountains, so that I even saw not the faces of those +mighty friends. Still I would penetrate their misty veil and seek them +in their cloudy retreats. What were rain and storm to me? My mule was +brought to the door, and I resolved to ascend to the summit of +Montanvert. I remembered the effect that the view of the tremendous +and ever-moving glacier had produced upon my mind when I first saw it. +It had then filled me with a sublime ecstasy that gave wings to the +soul and allowed it to soar from the obscure world to light and joy. +The sight of the awful and majestic in nature had indeed always the +effect of solemnising my mind and causing me to forget the passing +cares of life. I determined to go without a guide, for I was well +acquainted with the path, and the presence of another would destroy the +solitary grandeur of the scene. + +The ascent is precipitous, but the path is cut into continual and short +windings, which enable you to surmount the perpendicularity of the +mountain. It is a scene terrifically desolate. In a thousand spots +the traces of the winter avalanche may be perceived, where trees lie +broken and strewed on the ground, some entirely destroyed, others bent, +leaning upon the jutting rocks of the mountain or transversely upon +other trees. The path, as you ascend higher, is intersected by ravines +of snow, down which stones continually roll from above; one of them is +particularly dangerous, as the slightest sound, such as even speaking +in a loud voice, produces a concussion of air sufficient to draw +destruction upon the head of the speaker. The pines are not tall or +luxuriant, but they are sombre and add an air of severity to the scene. +I looked on the valley beneath; vast mists were rising from the rivers +which ran through it and curling in thick wreaths around the opposite +mountains, whose summits were hid in the uniform clouds, while rain +poured from the dark sky and added to the melancholy impression I +received from the objects around me. Alas! Why does man boast of +sensibilities superior to those apparent in the brute; it only renders +them more necessary beings. If our impulses were confined to hunger, +thirst, and desire, we might be nearly free; but now we are moved by +every wind that blows and a chance word or scene that that word may +convey to us. + + We rest; a dream has power to poison sleep. + We rise; one wand’ring thought pollutes the day. + We feel, conceive, or reason; laugh or weep, + Embrace fond woe, or cast our cares away; + It is the same: for, be it joy or sorrow, + The path of its departure still is free. + Man’s yesterday may ne’er be like his morrow; + Nought may endure but mutability! + + +It was nearly noon when I arrived at the top of the ascent. For some +time I sat upon the rock that overlooks the sea of ice. A mist covered +both that and the surrounding mountains. Presently a breeze dissipated +the cloud, and I descended upon the glacier. The surface is very +uneven, rising like the waves of a troubled sea, descending low, and +interspersed by rifts that sink deep. The field of ice is almost a +league in width, but I spent nearly two hours in crossing it. The +opposite mountain is a bare perpendicular rock. From the side where I +now stood Montanvert was exactly opposite, at the distance of a league; +and above it rose Mont Blanc, in awful majesty. I remained in a recess +of the rock, gazing on this wonderful and stupendous scene. The sea, +or rather the vast river of ice, wound among its dependent mountains, +whose aerial summits hung over its recesses. Their icy and glittering +peaks shone in the sunlight over the clouds. My heart, which was +before sorrowful, now swelled with something like joy; I exclaimed, +“Wandering spirits, if indeed ye wander, and do not rest in your narrow +beds, allow me this faint happiness, or take me, as your companion, +away from the joys of life.” + +As I said this I suddenly beheld the figure of a man, at some distance, +advancing towards me with superhuman speed. He bounded over the +crevices in the ice, among which I had walked with caution; his +stature, also, as he approached, seemed to exceed that of man. I was +troubled; a mist came over my eyes, and I felt a faintness seize me, +but I was quickly restored by the cold gale of the mountains. I +perceived, as the shape came nearer (sight tremendous and abhorred!) +that it was the wretch whom I had created. I trembled with rage and +horror, resolving to wait his approach and then close with him in +mortal combat. He approached; his countenance bespoke bitter anguish, +combined with disdain and malignity, while its unearthly ugliness +rendered it almost too horrible for human eyes. But I scarcely +observed this; rage and hatred had at first deprived me of utterance, +and I recovered only to overwhelm him with words expressive of furious +detestation and contempt. + +“Devil,” I exclaimed, “do you dare approach me? And do +not you fear the fierce vengeance of my arm wreaked on your miserable head? +Begone, vile insect! Or rather, stay, that I may trample you to dust! And, +oh! That I could, with the extinction of your miserable existence, restore +those victims whom you have so diabolically murdered!” + +“I expected this reception,” said the dæmon. “All men hate the +wretched; how, then, must I be hated, who am miserable beyond all +living things! Yet you, my creator, detest and spurn me, thy creature, +to whom thou art bound by ties only dissoluble by the annihilation of +one of us. You purpose to kill me. How dare you sport thus with life? +Do your duty towards me, and I will do mine towards you and the rest of +mankind. If you will comply with my conditions, I will leave them and +you at peace; but if you refuse, I will glut the maw of death, until it +be satiated with the blood of your remaining friends.” + +“Abhorred monster! Fiend that thou art! The tortures of hell are too +mild a vengeance for thy crimes. Wretched devil! You reproach me with +your creation, come on, then, that I may extinguish the spark which I +so negligently bestowed.” + +My rage was without bounds; I sprang on him, impelled by all the +feelings which can arm one being against the existence of another. + +He easily eluded me and said, + +“Be calm! I entreat you to hear me before you give vent to your hatred +on my devoted head. Have I not suffered enough, that you seek to +increase my misery? Life, although it may only be an accumulation of +anguish, is dear to me, and I will defend it. Remember, thou hast made +me more powerful than thyself; my height is superior to thine, my +joints more supple. But I will not be tempted to set myself in +opposition to thee. I am thy creature, and I will be even mild and +docile to my natural lord and king if thou wilt also perform thy part, +the which thou owest me. Oh, Frankenstein, be not equitable to every +other and trample upon me alone, to whom thy justice, and even thy +clemency and affection, is most due. Remember that I am thy creature; +I ought to be thy Adam, but I am rather the fallen angel, whom thou +drivest from joy for no misdeed. Everywhere I see bliss, from which I +alone am irrevocably excluded. I was benevolent and good; misery made +me a fiend. Make me happy, and I shall again be virtuous.” + +“Begone! I will not hear you. There can be no community between you +and me; we are enemies. Begone, or let us try our strength in a fight, +in which one must fall.” + +“How can I move thee? Will no entreaties cause thee to turn a +favourable eye upon thy creature, who implores thy goodness and +compassion? Believe me, Frankenstein, I was benevolent; my soul glowed +with love and humanity; but am I not alone, miserably alone? You, my +creator, abhor me; what hope can I gather from your fellow creatures, +who owe me nothing? They spurn and hate me. The desert mountains and +dreary glaciers are my refuge. I have wandered here many days; the +caves of ice, which I only do not fear, are a dwelling to me, and the +only one which man does not grudge. These bleak skies I hail, for they +are kinder to me than your fellow beings. If the multitude of mankind +knew of my existence, they would do as you do, and arm themselves for +my destruction. Shall I not then hate them who abhor me? I will keep +no terms with my enemies. I am miserable, and they shall share my +wretchedness. Yet it is in your power to recompense me, and deliver +them from an evil which it only remains for you to make so great, that +not only you and your family, but thousands of others, shall be +swallowed up in the whirlwinds of its rage. Let your compassion be +moved, and do not disdain me. Listen to my tale; when you have heard +that, abandon or commiserate me, as you shall judge that I deserve. +But hear me. The guilty are allowed, by human laws, bloody as they +are, to speak in their own defence before they are condemned. Listen +to me, Frankenstein. You accuse me of murder, and yet you would, with +a satisfied conscience, destroy your own creature. Oh, praise the +eternal justice of man! Yet I ask you not to spare me; listen to me, +and then, if you can, and if you will, destroy the work of your hands.” + +“Why do you call to my remembrance,” I rejoined, “circumstances of +which I shudder to reflect, that I have been the miserable origin and +author? Cursed be the day, abhorred devil, in which you first saw +light! Cursed (although I curse myself) be the hands that formed you! +You have made me wretched beyond expression. You have left me no power +to consider whether I am just to you or not. Begone! Relieve me from +the sight of your detested form.” + +“Thus I relieve thee, my creator,” he said, and placed his hated hands +before my eyes, which I flung from me with violence; “thus I take from +thee a sight which you abhor. Still thou canst listen to me and grant +me thy compassion. By the virtues that I once possessed, I demand this +from you. Hear my tale; it is long and strange, and the temperature of +this place is not fitting to your fine sensations; come to the hut upon +the mountain. The sun is yet high in the heavens; before it descends +to hide itself behind your snowy precipices and illuminate another +world, you will have heard my story and can decide. On you it rests, +whether I quit for ever the neighbourhood of man and lead a harmless +life, or become the scourge of your fellow creatures and the author of +your own speedy ruin.” + +As he said this he led the way across the ice; I followed. My heart +was full, and I did not answer him, but as I proceeded, I weighed the +various arguments that he had used and determined at least to listen to +his tale. I was partly urged by curiosity, and compassion confirmed my +resolution. I had hitherto supposed him to be the murderer of my +brother, and I eagerly sought a confirmation or denial of this opinion. +For the first time, also, I felt what the duties of a creator towards +his creature were, and that I ought to render him happy before I +complained of his wickedness. These motives urged me to comply with +his demand. We crossed the ice, therefore, and ascended the opposite +rock. The air was cold, and the rain again began to descend; we +entered the hut, the fiend with an air of exultation, I with a heavy +heart and depressed spirits. But I consented to listen, and seating +myself by the fire which my odious companion had lighted, he thus began +his tale. + + + + +Chapter 11 + + +“It is with considerable difficulty that I remember the original era of +my being; all the events of that period appear confused and indistinct. +A strange multiplicity of sensations seized me, and I saw, felt, heard, +and smelt at the same time; and it was, indeed, a long time before I +learned to distinguish between the operations of my various senses. By +degrees, I remember, a stronger light pressed upon my nerves, so that I +was obliged to shut my eyes. Darkness then came over me and troubled +me, but hardly had I felt this when, by opening my eyes, as I now +suppose, the light poured in upon me again. I walked and, I believe, +descended, but I presently found a great alteration in my sensations. +Before, dark and opaque bodies had surrounded me, impervious to my +touch or sight; but I now found that I could wander on at liberty, with +no obstacles which I could not either surmount or avoid. The light +became more and more oppressive to me, and the heat wearying me as I +walked, I sought a place where I could receive shade. This was the +forest near Ingolstadt; and here I lay by the side of a brook resting +from my fatigue, until I felt tormented by hunger and thirst. This +roused me from my nearly dormant state, and I ate some berries which I +found hanging on the trees or lying on the ground. I slaked my thirst +at the brook, and then lying down, was overcome by sleep. + +“It was dark when I awoke; I felt cold also, and half frightened, as it +were, instinctively, finding myself so desolate. Before I had quitted +your apartment, on a sensation of cold, I had covered myself with some +clothes, but these were insufficient to secure me from the dews of +night. I was a poor, helpless, miserable wretch; I knew, and could +distinguish, nothing; but feeling pain invade me on all sides, I sat +down and wept. + +“Soon a gentle light stole over the heavens and gave me a sensation of +pleasure. I started up and beheld a radiant form rise from among the +trees. [The moon] I gazed with a kind of wonder. It moved slowly, +but it enlightened my path, and I again went out in search of berries. +I was still cold when under one of the trees I found a huge cloak, with +which I covered myself, and sat down upon the ground. No distinct +ideas occupied my mind; all was confused. I felt light, and hunger, +and thirst, and darkness; innumerable sounds rang in my ears, and on +all sides various scents saluted me; the only object that I could +distinguish was the bright moon, and I fixed my eyes on that with +pleasure. + +“Several changes of day and night passed, and the orb of night had +greatly lessened, when I began to distinguish my sensations from each +other. I gradually saw plainly the clear stream that supplied me with +drink and the trees that shaded me with their foliage. I was delighted +when I first discovered that a pleasant sound, which often saluted my +ears, proceeded from the throats of the little winged animals who had +often intercepted the light from my eyes. I began also to observe, +with greater accuracy, the forms that surrounded me and to perceive the +boundaries of the radiant roof of light which canopied me. Sometimes I +tried to imitate the pleasant songs of the birds but was unable. +Sometimes I wished to express my sensations in my own mode, but the +uncouth and inarticulate sounds which broke from me frightened me into +silence again. + +“The moon had disappeared from the night, and again, with a lessened +form, showed itself, while I still remained in the forest. My +sensations had by this time become distinct, and my mind received every +day additional ideas. My eyes became accustomed to the light and to +perceive objects in their right forms; I distinguished the insect from +the herb, and by degrees, one herb from another. I found that the +sparrow uttered none but harsh notes, whilst those of the blackbird and +thrush were sweet and enticing. + +“One day, when I was oppressed by cold, I found a fire which had been +left by some wandering beggars, and was overcome with delight at the +warmth I experienced from it. In my joy I thrust my hand into the live +embers, but quickly drew it out again with a cry of pain. How strange, +I thought, that the same cause should produce such opposite effects! I +examined the materials of the fire, and to my joy found it to be +composed of wood. I quickly collected some branches, but they were wet +and would not burn. I was pained at this and sat still watching the +operation of the fire. The wet wood which I had placed near the heat +dried and itself became inflamed. I reflected on this, and by touching +the various branches, I discovered the cause and busied myself in +collecting a great quantity of wood, that I might dry it and have a +plentiful supply of fire. When night came on and brought sleep with +it, I was in the greatest fear lest my fire should be extinguished. I +covered it carefully with dry wood and leaves and placed wet branches +upon it; and then, spreading my cloak, I lay on the ground and sank +into sleep. + +“It was morning when I awoke, and my first care was to visit the fire. +I uncovered it, and a gentle breeze quickly fanned it into a flame. I +observed this also and contrived a fan of branches, which roused the +embers when they were nearly extinguished. When night came again I +found, with pleasure, that the fire gave light as well as heat and that +the discovery of this element was useful to me in my food, for I found +some of the offals that the travellers had left had been roasted, and +tasted much more savoury than the berries I gathered from the trees. I +tried, therefore, to dress my food in the same manner, placing it on +the live embers. I found that the berries were spoiled by this +operation, and the nuts and roots much improved. + +“Food, however, became scarce, and I often spent the whole day +searching in vain for a few acorns to assuage the pangs of hunger. When +I found this, I resolved to quit the place that I had hitherto +inhabited, to seek for one where the few wants I experienced would be +more easily satisfied. In this emigration I exceedingly lamented the +loss of the fire which I had obtained through accident and knew not how +to reproduce it. I gave several hours to the serious consideration of +this difficulty, but I was obliged to relinquish all attempt to supply +it, and wrapping myself up in my cloak, I struck across the wood +towards the setting sun. I passed three days in these rambles and at +length discovered the open country. A great fall of snow had taken +place the night before, and the fields were of one uniform white; the +appearance was disconsolate, and I found my feet chilled by the cold +damp substance that covered the ground. + +“It was about seven in the morning, and I longed to obtain food and +shelter; at length I perceived a small hut, on a rising ground, which +had doubtless been built for the convenience of some shepherd. This +was a new sight to me, and I examined the structure with great +curiosity. Finding the door open, I entered. An old man sat in it, +near a fire, over which he was preparing his breakfast. He turned on +hearing a noise, and perceiving me, shrieked loudly, and quitting the +hut, ran across the fields with a speed of which his debilitated form +hardly appeared capable. His appearance, different from any I had ever +before seen, and his flight somewhat surprised me. But I was enchanted +by the appearance of the hut; here the snow and rain could not +penetrate; the ground was dry; and it presented to me then as exquisite +and divine a retreat as Pandæmonium appeared to the dæmons of hell +after their sufferings in the lake of fire. I greedily devoured the +remnants of the shepherd’s breakfast, which consisted of bread, cheese, +milk, and wine; the latter, however, I did not like. Then, overcome by +fatigue, I lay down among some straw and fell asleep. + +“It was noon when I awoke, and allured by the warmth of the sun, which +shone brightly on the white ground, I determined to recommence my +travels; and, depositing the remains of the peasant’s breakfast in a +wallet I found, I proceeded across the fields for several hours, until +at sunset I arrived at a village. How miraculous did this appear! The +huts, the neater cottages, and stately houses engaged my admiration by +turns. The vegetables in the gardens, the milk and cheese that I saw +placed at the windows of some of the cottages, allured my appetite. One +of the best of these I entered, but I had hardly placed my foot within +the door before the children shrieked, and one of the women fainted. +The whole village was roused; some fled, some attacked me, until, +grievously bruised by stones and many other kinds of missile weapons, I +escaped to the open country and fearfully took refuge in a low hovel, +quite bare, and making a wretched appearance after the palaces I had +beheld in the village. This hovel however, joined a cottage of a neat +and pleasant appearance, but after my late dearly bought experience, I +dared not enter it. My place of refuge was constructed of wood, but so +low that I could with difficulty sit upright in it. No wood, however, +was placed on the earth, which formed the floor, but it was dry; and +although the wind entered it by innumerable chinks, I found it an +agreeable asylum from the snow and rain. + +“Here, then, I retreated and lay down happy to have found a shelter, +however miserable, from the inclemency of the season, and still more +from the barbarity of man. As soon as morning dawned I crept from my +kennel, that I might view the adjacent cottage and discover if I could +remain in the habitation I had found. It was situated against the back +of the cottage and surrounded on the sides which were exposed by a pig +sty and a clear pool of water. One part was open, and by that I had +crept in; but now I covered every crevice by which I might be perceived +with stones and wood, yet in such a manner that I might move them on +occasion to pass out; all the light I enjoyed came through the sty, and +that was sufficient for me. + +“Having thus arranged my dwelling and carpeted it with clean straw, I +retired, for I saw the figure of a man at a distance, and I remembered +too well my treatment the night before to trust myself in his power. I +had first, however, provided for my sustenance for that day by a loaf +of coarse bread, which I purloined, and a cup with which I could drink +more conveniently than from my hand of the pure water which flowed by +my retreat. The floor was a little raised, so that it was kept +perfectly dry, and by its vicinity to the chimney of the cottage it was +tolerably warm. + +“Being thus provided, I resolved to reside in this hovel until +something should occur which might alter my determination. It was +indeed a paradise compared to the bleak forest, my former residence, +the rain-dropping branches, and dank earth. I ate my breakfast with +pleasure and was about to remove a plank to procure myself a little +water when I heard a step, and looking through a small chink, I beheld +a young creature, with a pail on her head, passing before my hovel. The +girl was young and of gentle demeanour, unlike what I have since found +cottagers and farmhouse servants to be. Yet she was meanly dressed, a +coarse blue petticoat and a linen jacket being her only garb; her fair +hair was plaited but not adorned: she looked patient yet sad. I lost +sight of her, and in about a quarter of an hour she returned bearing +the pail, which was now partly filled with milk. As she walked along, +seemingly incommoded by the burden, a young man met her, whose +countenance expressed a deeper despondence. Uttering a few sounds with +an air of melancholy, he took the pail from her head and bore it to the +cottage himself. She followed, and they disappeared. Presently I saw +the young man again, with some tools in his hand, cross the field +behind the cottage; and the girl was also busied, sometimes in the +house and sometimes in the yard. + +“On examining my dwelling, I found that one of the windows of the +cottage had formerly occupied a part of it, but the panes had been +filled up with wood. In one of these was a small and almost +imperceptible chink through which the eye could just penetrate. +Through this crevice a small room was visible, whitewashed and clean +but very bare of furniture. In one corner, near a small fire, sat an +old man, leaning his head on his hands in a disconsolate attitude. The +young girl was occupied in arranging the cottage; but presently she +took something out of a drawer, which employed her hands, and she sat +down beside the old man, who, taking up an instrument, began to play +and to produce sounds sweeter than the voice of the thrush or the +nightingale. It was a lovely sight, even to me, poor wretch who had +never beheld aught beautiful before. The silver hair and benevolent +countenance of the aged cottager won my reverence, while the gentle +manners of the girl enticed my love. He played a sweet mournful air +which I perceived drew tears from the eyes of his amiable companion, of +which the old man took no notice, until she sobbed audibly; he then +pronounced a few sounds, and the fair creature, leaving her work, knelt +at his feet. He raised her and smiled with such kindness and affection +that I felt sensations of a peculiar and overpowering nature; they were +a mixture of pain and pleasure, such as I had never before experienced, +either from hunger or cold, warmth or food; and I withdrew from the +window, unable to bear these emotions. + +“Soon after this the young man returned, bearing on his shoulders a +load of wood. The girl met him at the door, helped to relieve him of +his burden, and taking some of the fuel into the cottage, placed it on +the fire; then she and the youth went apart into a nook of the cottage, +and he showed her a large loaf and a piece of cheese. She seemed +pleased and went into the garden for some roots and plants, which she +placed in water, and then upon the fire. She afterwards continued her +work, whilst the young man went into the garden and appeared busily +employed in digging and pulling up roots. After he had been employed +thus about an hour, the young woman joined him and they entered the +cottage together. + +“The old man had, in the meantime, been pensive, but on the appearance +of his companions he assumed a more cheerful air, and they sat down to +eat. The meal was quickly dispatched. The young woman was again +occupied in arranging the cottage, the old man walked before the +cottage in the sun for a few minutes, leaning on the arm of the youth. +Nothing could exceed in beauty the contrast between these two excellent +creatures. One was old, with silver hairs and a countenance beaming +with benevolence and love; the younger was slight and graceful in his +figure, and his features were moulded with the finest symmetry, yet his +eyes and attitude expressed the utmost sadness and despondency. The +old man returned to the cottage, and the youth, with tools different +from those he had used in the morning, directed his steps across the +fields. + +“Night quickly shut in, but to my extreme wonder, I found that the +cottagers had a means of prolonging light by the use of tapers, and was +delighted to find that the setting of the sun did not put an end to the +pleasure I experienced in watching my human neighbours. In the evening +the young girl and her companion were employed in various occupations +which I did not understand; and the old man again took up the +instrument which produced the divine sounds that had enchanted me in +the morning. So soon as he had finished, the youth began, not to play, +but to utter sounds that were monotonous, and neither resembling the +harmony of the old man’s instrument nor the songs of the birds; I since +found that he read aloud, but at that time I knew nothing of the +science of words or letters. + +“The family, after having been thus occupied for a short time, +extinguished their lights and retired, as I conjectured, to rest.” + + + + +Chapter 12 + + +“I lay on my straw, but I could not sleep. I thought of the +occurrences of the day. What chiefly struck me was the gentle manners +of these people, and I longed to join them, but dared not. I +remembered too well the treatment I had suffered the night before from +the barbarous villagers, and resolved, whatever course of conduct I +might hereafter think it right to pursue, that for the present I would +remain quietly in my hovel, watching and endeavouring to discover the +motives which influenced their actions. + +“The cottagers arose the next morning before the sun. The young woman +arranged the cottage and prepared the food, and the youth departed +after the first meal. + +“This day was passed in the same routine as that which preceded it. +The young man was constantly employed out of doors, and the girl in +various laborious occupations within. The old man, whom I soon +perceived to be blind, employed his leisure hours on his instrument or +in contemplation. Nothing could exceed the love and respect which the +younger cottagers exhibited towards their venerable companion. They +performed towards him every little office of affection and duty with +gentleness, and he rewarded them by his benevolent smiles. + +“They were not entirely happy. The young man and his companion often +went apart and appeared to weep. I saw no cause for their unhappiness, +but I was deeply affected by it. If such lovely creatures were +miserable, it was less strange that I, an imperfect and solitary being, +should be wretched. Yet why were these gentle beings unhappy? They +possessed a delightful house (for such it was in my eyes) and every +luxury; they had a fire to warm them when chill and delicious viands +when hungry; they were dressed in excellent clothes; and, still more, +they enjoyed one another’s company and speech, interchanging each day +looks of affection and kindness. What did their tears imply? Did they +really express pain? I was at first unable to solve these questions, +but perpetual attention and time explained to me many appearances which +were at first enigmatic. + +“A considerable period elapsed before I discovered one of the causes of +the uneasiness of this amiable family: it was poverty, and they +suffered that evil in a very distressing degree. Their nourishment +consisted entirely of the vegetables of their garden and the milk of +one cow, which gave very little during the winter, when its masters +could scarcely procure food to support it. They often, I believe, +suffered the pangs of hunger very poignantly, especially the two +younger cottagers, for several times they placed food before the old +man when they reserved none for themselves. + +“This trait of kindness moved me sensibly. I had been accustomed, +during the night, to steal a part of their store for my own +consumption, but when I found that in doing this I inflicted pain on +the cottagers, I abstained and satisfied myself with berries, nuts, and +roots which I gathered from a neighbouring wood. + +“I discovered also another means through which I was enabled to assist +their labours. I found that the youth spent a great part of each day +in collecting wood for the family fire, and during the night I often +took his tools, the use of which I quickly discovered, and brought home +firing sufficient for the consumption of several days. + +“I remember, the first time that I did this, the young woman, when she +opened the door in the morning, appeared greatly astonished on seeing a great +pile of wood on the outside. She uttered some words in a loud voice, and the +youth joined her, who also expressed surprise. I observed, with pleasure, +that he did not go to the forest that day, but spent it in repairing the +cottage and cultivating the garden. + +“By degrees I made a discovery of still greater moment. I found that +these people possessed a method of communicating their experience and +feelings to one another by articulate sounds. I perceived that the words +they spoke sometimes produced pleasure or pain, smiles or sadness, in the +minds and countenances of the hearers. This was indeed a godlike science, +and I ardently desired to become acquainted with it. But I was baffled in +every attempt I made for this purpose. Their pronunciation was quick, and +the words they uttered, not having any apparent connection with visible +objects, I was unable to discover any clue by which I could unravel the +mystery of their reference. By great application, however, and after having +remained during the space of several revolutions of the moon in my hovel, I +discovered the names that were given to some of the most familiar objects of +discourse; I learned and applied the words, _fire, milk, bread,_ and +_wood._ I learned also the names of the cottagers themselves. The youth +and his companion had each of them several names, but the old man had only +one, which was _father._ The girl was called _sister_ or +_Agatha,_ and the youth _Felix, brother,_ or _son_. I cannot +describe the delight I felt when I learned the ideas appropriated to each of +these sounds and was able to pronounce them. I distinguished several other +words without being able as yet to understand or apply them, such as _good, +dearest, unhappy._ + +“I spent the winter in this manner. The gentle manners and beauty of +the cottagers greatly endeared them to me; when they were unhappy, I +felt depressed; when they rejoiced, I sympathised in their joys. I saw +few human beings besides them, and if any other happened to enter the +cottage, their harsh manners and rude gait only enhanced to me the +superior accomplishments of my friends. The old man, I could perceive, +often endeavoured to encourage his children, as sometimes I found that +he called them, to cast off their melancholy. He would talk in a +cheerful accent, with an expression of goodness that bestowed pleasure +even upon me. Agatha listened with respect, her eyes sometimes filled +with tears, which she endeavoured to wipe away unperceived; but I +generally found that her countenance and tone were more cheerful after +having listened to the exhortations of her father. It was not thus +with Felix. He was always the saddest of the group, and even to my +unpractised senses, he appeared to have suffered more deeply than his +friends. But if his countenance was more sorrowful, his voice was more +cheerful than that of his sister, especially when he addressed the old +man. + +“I could mention innumerable instances which, although slight, marked +the dispositions of these amiable cottagers. In the midst of poverty +and want, Felix carried with pleasure to his sister the first little +white flower that peeped out from beneath the snowy ground. Early in +the morning, before she had risen, he cleared away the snow that +obstructed her path to the milk-house, drew water from the well, and +brought the wood from the outhouse, where, to his perpetual +astonishment, he found his store always replenished by an invisible +hand. In the day, I believe, he worked sometimes for a neighbouring +farmer, because he often went forth and did not return until dinner, +yet brought no wood with him. At other times he worked in the garden, +but as there was little to do in the frosty season, he read to the old +man and Agatha. + +“This reading had puzzled me extremely at first, but by degrees I +discovered that he uttered many of the same sounds when he read as when +he talked. I conjectured, therefore, that he found on the paper signs +for speech which he understood, and I ardently longed to comprehend +these also; but how was that possible when I did not even understand +the sounds for which they stood as signs? I improved, however, +sensibly in this science, but not sufficiently to follow up any kind of +conversation, although I applied my whole mind to the endeavour, for I +easily perceived that, although I eagerly longed to discover myself to +the cottagers, I ought not to make the attempt until I had first become +master of their language, which knowledge might enable me to make them +overlook the deformity of my figure, for with this also the contrast +perpetually presented to my eyes had made me acquainted. + +“I had admired the perfect forms of my cottagers—their grace, beauty, +and delicate complexions; but how was I terrified when I viewed myself +in a transparent pool! At first I started back, unable to believe that +it was indeed I who was reflected in the mirror; and when I became +fully convinced that I was in reality the monster that I am, I was +filled with the bitterest sensations of despondence and mortification. +Alas! I did not yet entirely know the fatal effects of this miserable +deformity. + +“As the sun became warmer and the light of day longer, the snow +vanished, and I beheld the bare trees and the black earth. From this +time Felix was more employed, and the heart-moving indications of +impending famine disappeared. Their food, as I afterwards found, was +coarse, but it was wholesome; and they procured a sufficiency of it. +Several new kinds of plants sprang up in the garden, which they +dressed; and these signs of comfort increased daily as the season +advanced. + +“The old man, leaning on his son, walked each day at noon, when it did +not rain, as I found it was called when the heavens poured forth its +waters. This frequently took place, but a high wind quickly dried the +earth, and the season became far more pleasant than it had been. + +“My mode of life in my hovel was uniform. During the morning I +attended the motions of the cottagers, and when they were dispersed in +various occupations, I slept; the remainder of the day was spent in +observing my friends. When they had retired to rest, if there was any +moon or the night was star-light, I went into the woods and collected +my own food and fuel for the cottage. When I returned, as often as it +was necessary, I cleared their path from the snow and performed those +offices that I had seen done by Felix. I afterwards found that these +labours, performed by an invisible hand, greatly astonished them; and +once or twice I heard them, on these occasions, utter the words _good +spirit, wonderful_; but I did not then understand the signification +of these terms. + +“My thoughts now became more active, and I longed to discover the +motives and feelings of these lovely creatures; I was inquisitive to +know why Felix appeared so miserable and Agatha so sad. I thought +(foolish wretch!) that it might be in my power to restore happiness to +these deserving people. When I slept or was absent, the forms of the +venerable blind father, the gentle Agatha, and the excellent Felix +flitted before me. I looked upon them as superior beings who would be +the arbiters of my future destiny. I formed in my imagination a +thousand pictures of presenting myself to them, and their reception of +me. I imagined that they would be disgusted, until, by my gentle +demeanour and conciliating words, I should first win their favour and +afterwards their love. + +“These thoughts exhilarated me and led me to apply with fresh ardour to +the acquiring the art of language. My organs were indeed harsh, but +supple; and although my voice was very unlike the soft music of their +tones, yet I pronounced such words as I understood with tolerable ease. +It was as the ass and the lap-dog; yet surely the gentle ass whose +intentions were affectionate, although his manners were rude, deserved +better treatment than blows and execration. + +“The pleasant showers and genial warmth of spring greatly altered the +aspect of the earth. Men who before this change seemed to have been +hid in caves dispersed themselves and were employed in various arts of +cultivation. The birds sang in more cheerful notes, and the leaves +began to bud forth on the trees. Happy, happy earth! Fit habitation +for gods, which, so short a time before, was bleak, damp, and +unwholesome. My spirits were elevated by the enchanting appearance of +nature; the past was blotted from my memory, the present was tranquil, +and the future gilded by bright rays of hope and anticipations of joy.” + + + + +Chapter 13 + + +“I now hasten to the more moving part of my story. I shall relate +events that impressed me with feelings which, from what I had been, +have made me what I am. + +“Spring advanced rapidly; the weather became fine and the skies +cloudless. It surprised me that what before was desert and gloomy +should now bloom with the most beautiful flowers and verdure. My +senses were gratified and refreshed by a thousand scents of delight and +a thousand sights of beauty. + +“It was on one of these days, when my cottagers periodically rested +from labour—the old man played on his guitar, and the children +listened to him—that I observed the countenance of Felix was +melancholy beyond expression; he sighed frequently, and once his father +paused in his music, and I conjectured by his manner that he inquired +the cause of his son’s sorrow. Felix replied in a cheerful accent, and +the old man was recommencing his music when someone tapped at the door. + +“It was a lady on horseback, accompanied by a country-man as a guide. +The lady was dressed in a dark suit and covered with a thick black +veil. Agatha asked a question, to which the stranger only replied by +pronouncing, in a sweet accent, the name of Felix. Her voice was +musical but unlike that of either of my friends. On hearing this word, +Felix came up hastily to the lady, who, when she saw him, threw up her +veil, and I beheld a countenance of angelic beauty and expression. Her +hair of a shining raven black, and curiously braided; her eyes were +dark, but gentle, although animated; her features of a regular +proportion, and her complexion wondrously fair, each cheek tinged with +a lovely pink. + +“Felix seemed ravished with delight when he saw her, every trait of +sorrow vanished from his face, and it instantly expressed a degree of +ecstatic joy, of which I could hardly have believed it capable; his +eyes sparkled, as his cheek flushed with pleasure; and at that moment I +thought him as beautiful as the stranger. She appeared affected by +different feelings; wiping a few tears from her lovely eyes, she held +out her hand to Felix, who kissed it rapturously and called her, as +well as I could distinguish, his sweet Arabian. She did not appear to +understand him, but smiled. He assisted her to dismount, and +dismissing her guide, conducted her into the cottage. Some +conversation took place between him and his father, and the young +stranger knelt at the old man’s feet and would have kissed his hand, +but he raised her and embraced her affectionately. + +“I soon perceived that although the stranger uttered articulate sounds +and appeared to have a language of her own, she was neither understood +by nor herself understood the cottagers. They made many signs which I +did not comprehend, but I saw that her presence diffused gladness +through the cottage, dispelling their sorrow as the sun dissipates the +morning mists. Felix seemed peculiarly happy and with smiles of +delight welcomed his Arabian. Agatha, the ever-gentle Agatha, kissed +the hands of the lovely stranger, and pointing to her brother, made +signs which appeared to me to mean that he had been sorrowful until she +came. Some hours passed thus, while they, by their countenances, +expressed joy, the cause of which I did not comprehend. Presently I +found, by the frequent recurrence of some sound which the stranger +repeated after them, that she was endeavouring to learn their language; +and the idea instantly occurred to me that I should make use of the +same instructions to the same end. The stranger learned about twenty +words at the first lesson; most of them, indeed, were those which I had +before understood, but I profited by the others. + +“As night came on, Agatha and the Arabian retired early. When they +separated Felix kissed the hand of the stranger and said, ‘Good night +sweet Safie.’ He sat up much longer, conversing with his father, and +by the frequent repetition of her name I conjectured that their lovely +guest was the subject of their conversation. I ardently desired to +understand them, and bent every faculty towards that purpose, but found +it utterly impossible. + +“The next morning Felix went out to his work, and after the usual +occupations of Agatha were finished, the Arabian sat at the feet of the +old man, and taking his guitar, played some airs so entrancingly +beautiful that they at once drew tears of sorrow and delight from my +eyes. She sang, and her voice flowed in a rich cadence, swelling or +dying away like a nightingale of the woods. + +“When she had finished, she gave the guitar to Agatha, who at first +declined it. She played a simple air, and her voice accompanied it in +sweet accents, but unlike the wondrous strain of the stranger. The old +man appeared enraptured and said some words which Agatha endeavoured to +explain to Safie, and by which he appeared to wish to express that she +bestowed on him the greatest delight by her music. + +“The days now passed as peaceably as before, with the sole alteration +that joy had taken place of sadness in the countenances of my friends. +Safie was always gay and happy; she and I improved rapidly in the +knowledge of language, so that in two months I began to comprehend most +of the words uttered by my protectors. + +“In the meanwhile also the black ground was covered with herbage, and +the green banks interspersed with innumerable flowers, sweet to the +scent and the eyes, stars of pale radiance among the moonlight woods; +the sun became warmer, the nights clear and balmy; and my nocturnal +rambles were an extreme pleasure to me, although they were considerably +shortened by the late setting and early rising of the sun, for I never +ventured abroad during daylight, fearful of meeting with the same +treatment I had formerly endured in the first village which I entered. + +“My days were spent in close attention, that I might more speedily +master the language; and I may boast that I improved more rapidly than +the Arabian, who understood very little and conversed in broken +accents, whilst I comprehended and could imitate almost every word that +was spoken. + +“While I improved in speech, I also learned the science of letters as +it was taught to the stranger, and this opened before me a wide field +for wonder and delight. + +“The book from which Felix instructed Safie was Volney’s _Ruins +of Empires_. I should not have understood the purport of this book had not +Felix, in reading it, given very minute explanations. He had chosen this +work, he said, because the declamatory style was framed in imitation of the +Eastern authors. Through this work I obtained a cursory knowledge of history +and a view of the several empires at present existing in the world; it gave +me an insight into the manners, governments, and religions of the different +nations of the earth. I heard of the slothful Asiatics, of the stupendous +genius and mental activity of the Grecians, of the wars and wonderful virtue +of the early Romans—of their subsequent degenerating—of the +decline of that mighty empire, of chivalry, Christianity, and kings. I heard +of the discovery of the American hemisphere and wept with Safie over the +hapless fate of its original inhabitants. + +“These wonderful narrations inspired me with strange feelings. Was +man, indeed, at once so powerful, so virtuous and magnificent, yet so +vicious and base? He appeared at one time a mere scion of the evil +principle and at another as all that can be conceived of noble and +godlike. To be a great and virtuous man appeared the highest honour +that can befall a sensitive being; to be base and vicious, as many on +record have been, appeared the lowest degradation, a condition more +abject than that of the blind mole or harmless worm. For a long time I +could not conceive how one man could go forth to murder his fellow, or +even why there were laws and governments; but when I heard details of +vice and bloodshed, my wonder ceased and I turned away with disgust and +loathing. + +“Every conversation of the cottagers now opened new wonders to me. +While I listened to the instructions which Felix bestowed upon the +Arabian, the strange system of human society was explained to me. I +heard of the division of property, of immense wealth and squalid +poverty, of rank, descent, and noble blood. + +“The words induced me to turn towards myself. I learned that the +possessions most esteemed by your fellow creatures were high and +unsullied descent united with riches. A man might be respected with +only one of these advantages, but without either he was considered, +except in very rare instances, as a vagabond and a slave, doomed to +waste his powers for the profits of the chosen few! And what was I? Of +my creation and creator I was absolutely ignorant, but I knew that I +possessed no money, no friends, no kind of property. I was, besides, +endued with a figure hideously deformed and loathsome; I was not even +of the same nature as man. I was more agile than they and could +subsist upon coarser diet; I bore the extremes of heat and cold with +less injury to my frame; my stature far exceeded theirs. When I looked +around I saw and heard of none like me. Was I, then, a monster, a blot +upon the earth, from which all men fled and whom all men disowned? + +“I cannot describe to you the agony that these reflections inflicted +upon me; I tried to dispel them, but sorrow only increased with +knowledge. Oh, that I had for ever remained in my native wood, nor +known nor felt beyond the sensations of hunger, thirst, and heat! + +“Of what a strange nature is knowledge! It clings to the mind when it +has once seized on it like a lichen on the rock. I wished sometimes to +shake off all thought and feeling, but I learned that there was but one +means to overcome the sensation of pain, and that was death—a state +which I feared yet did not understand. I admired virtue and good +feelings and loved the gentle manners and amiable qualities of my +cottagers, but I was shut out from intercourse with them, except +through means which I obtained by stealth, when I was unseen and +unknown, and which rather increased than satisfied the desire I had of +becoming one among my fellows. The gentle words of Agatha and the +animated smiles of the charming Arabian were not for me. The mild +exhortations of the old man and the lively conversation of the loved +Felix were not for me. Miserable, unhappy wretch! + +“Other lessons were impressed upon me even more deeply. I heard of the +difference of sexes, and the birth and growth of children, how the +father doted on the smiles of the infant, and the lively sallies of the +older child, how all the life and cares of the mother were wrapped up +in the precious charge, how the mind of youth expanded and gained +knowledge, of brother, sister, and all the various relationships which +bind one human being to another in mutual bonds. + +“But where were my friends and relations? No father had watched my +infant days, no mother had blessed me with smiles and caresses; or if +they had, all my past life was now a blot, a blind vacancy in which I +distinguished nothing. From my earliest remembrance I had been as I +then was in height and proportion. I had never yet seen a being +resembling me or who claimed any intercourse with me. What was I? The +question again recurred, to be answered only with groans. + +“I will soon explain to what these feelings tended, but allow me now to +return to the cottagers, whose story excited in me such various +feelings of indignation, delight, and wonder, but which all terminated +in additional love and reverence for my protectors (for so I loved, in +an innocent, half-painful self-deceit, to call them).” + + + + +Chapter 14 + + +“Some time elapsed before I learned the history of my friends. It was +one which could not fail to impress itself deeply on my mind, unfolding +as it did a number of circumstances, each interesting and wonderful to +one so utterly inexperienced as I was. + +“The name of the old man was De Lacey. He was descended from a good +family in France, where he had lived for many years in affluence, +respected by his superiors and beloved by his equals. His son was bred +in the service of his country, and Agatha had ranked with ladies of the +highest distinction. A few months before my arrival they had lived in +a large and luxurious city called Paris, surrounded by friends and +possessed of every enjoyment which virtue, refinement of intellect, or +taste, accompanied by a moderate fortune, could afford. + +“The father of Safie had been the cause of their ruin. He was a +Turkish merchant and had inhabited Paris for many years, when, for some +reason which I could not learn, he became obnoxious to the government. +He was seized and cast into prison the very day that Safie arrived from +Constantinople to join him. He was tried and condemned to death. The +injustice of his sentence was very flagrant; all Paris was indignant; +and it was judged that his religion and wealth rather than the crime +alleged against him had been the cause of his condemnation. + +“Felix had accidentally been present at the trial; his horror and +indignation were uncontrollable when he heard the decision of the +court. He made, at that moment, a solemn vow to deliver him and then +looked around for the means. After many fruitless attempts to gain +admittance to the prison, he found a strongly grated window in an +unguarded part of the building, which lighted the dungeon of the +unfortunate Muhammadan, who, loaded with chains, waited in despair the +execution of the barbarous sentence. Felix visited the grate at night +and made known to the prisoner his intentions in his favour. The Turk, +amazed and delighted, endeavoured to kindle the zeal of his deliverer +by promises of reward and wealth. Felix rejected his offers with +contempt, yet when he saw the lovely Safie, who was allowed to visit +her father and who by her gestures expressed her lively gratitude, the +youth could not help owning to his own mind that the captive possessed +a treasure which would fully reward his toil and hazard. + +“The Turk quickly perceived the impression that his daughter had made +on the heart of Felix and endeavoured to secure him more entirely in +his interests by the promise of her hand in marriage so soon as he +should be conveyed to a place of safety. Felix was too delicate to +accept this offer, yet he looked forward to the probability of the +event as to the consummation of his happiness. + +“During the ensuing days, while the preparations were going forward for +the escape of the merchant, the zeal of Felix was warmed by several +letters that he received from this lovely girl, who found means to +express her thoughts in the language of her lover by the aid of an old +man, a servant of her father who understood French. She thanked him in +the most ardent terms for his intended services towards her parent, and +at the same time she gently deplored her own fate. + +“I have copies of these letters, for I found means, during my residence +in the hovel, to procure the implements of writing; and the letters +were often in the hands of Felix or Agatha. Before I depart I will +give them to you; they will prove the truth of my tale; but at present, +as the sun is already far declined, I shall only have time to repeat +the substance of them to you. + +“Safie related that her mother was a Christian Arab, seized and made a +slave by the Turks; recommended by her beauty, she had won the heart of +the father of Safie, who married her. The young girl spoke in high and +enthusiastic terms of her mother, who, born in freedom, spurned the +bondage to which she was now reduced. She instructed her daughter in +the tenets of her religion and taught her to aspire to higher powers of +intellect and an independence of spirit forbidden to the female +followers of Muhammad. This lady died, but her lessons were indelibly +impressed on the mind of Safie, who sickened at the prospect of again +returning to Asia and being immured within the walls of a harem, +allowed only to occupy herself with infantile amusements, ill-suited to +the temper of her soul, now accustomed to grand ideas and a noble +emulation for virtue. The prospect of marrying a Christian and +remaining in a country where women were allowed to take a rank in +society was enchanting to her. + +“The day for the execution of the Turk was fixed, but on the night +previous to it he quitted his prison and before morning was distant +many leagues from Paris. Felix had procured passports in the name of +his father, sister, and himself. He had previously communicated his +plan to the former, who aided the deceit by quitting his house, under +the pretence of a journey and concealed himself, with his daughter, in +an obscure part of Paris. + +“Felix conducted the fugitives through France to Lyons and across Mont +Cenis to Leghorn, where the merchant had decided to wait a favourable +opportunity of passing into some part of the Turkish dominions. + +“Safie resolved to remain with her father until the moment of his +departure, before which time the Turk renewed his promise that she +should be united to his deliverer; and Felix remained with them in +expectation of that event; and in the meantime he enjoyed the society +of the Arabian, who exhibited towards him the simplest and tenderest +affection. They conversed with one another through the means of an +interpreter, and sometimes with the interpretation of looks; and Safie +sang to him the divine airs of her native country. + +“The Turk allowed this intimacy to take place and encouraged the hopes +of the youthful lovers, while in his heart he had formed far other +plans. He loathed the idea that his daughter should be united to a +Christian, but he feared the resentment of Felix if he should appear +lukewarm, for he knew that he was still in the power of his deliverer +if he should choose to betray him to the Italian state which they +inhabited. He revolved a thousand plans by which he should be enabled +to prolong the deceit until it might be no longer necessary, and +secretly to take his daughter with him when he departed. His plans +were facilitated by the news which arrived from Paris. + +“The government of France were greatly enraged at the escape of their +victim and spared no pains to detect and punish his deliverer. The +plot of Felix was quickly discovered, and De Lacey and Agatha were +thrown into prison. The news reached Felix and roused him from his +dream of pleasure. His blind and aged father and his gentle sister lay +in a noisome dungeon while he enjoyed the free air and the society of +her whom he loved. This idea was torture to him. He quickly arranged +with the Turk that if the latter should find a favourable opportunity +for escape before Felix could return to Italy, Safie should remain as a +boarder at a convent at Leghorn; and then, quitting the lovely Arabian, +he hastened to Paris and delivered himself up to the vengeance of the +law, hoping to free De Lacey and Agatha by this proceeding. + +“He did not succeed. They remained confined for five months before the +trial took place, the result of which deprived them of their fortune +and condemned them to a perpetual exile from their native country. + +“They found a miserable asylum in the cottage in Germany, where I +discovered them. Felix soon learned that the treacherous Turk, for +whom he and his family endured such unheard-of oppression, on +discovering that his deliverer was thus reduced to poverty and ruin, +became a traitor to good feeling and honour and had quitted Italy with +his daughter, insultingly sending Felix a pittance of money to aid him, +as he said, in some plan of future maintenance. + +“Such were the events that preyed on the heart of Felix and rendered +him, when I first saw him, the most miserable of his family. He could +have endured poverty, and while this distress had been the meed of his +virtue, he gloried in it; but the ingratitude of the Turk and the loss +of his beloved Safie were misfortunes more bitter and irreparable. The +arrival of the Arabian now infused new life into his soul. + +“When the news reached Leghorn that Felix was deprived of his wealth +and rank, the merchant commanded his daughter to think no more of her +lover, but to prepare to return to her native country. The generous +nature of Safie was outraged by this command; she attempted to +expostulate with her father, but he left her angrily, reiterating his +tyrannical mandate. + +“A few days after, the Turk entered his daughter’s apartment and told +her hastily that he had reason to believe that his residence at Leghorn +had been divulged and that he should speedily be delivered up to the +French government; he had consequently hired a vessel to convey him to +Constantinople, for which city he should sail in a few hours. He +intended to leave his daughter under the care of a confidential +servant, to follow at her leisure with the greater part of his +property, which had not yet arrived at Leghorn. + +“When alone, Safie resolved in her own mind the plan of conduct that it +would become her to pursue in this emergency. A residence in Turkey +was abhorrent to her; her religion and her feelings were alike averse +to it. By some papers of her father which fell into her hands she +heard of the exile of her lover and learnt the name of the spot where +he then resided. She hesitated some time, but at length she formed her +determination. Taking with her some jewels that belonged to her and a +sum of money, she quitted Italy with an attendant, a native of Leghorn, +but who understood the common language of Turkey, and departed for +Germany. + +“She arrived in safety at a town about twenty leagues from the cottage +of De Lacey, when her attendant fell dangerously ill. Safie nursed her +with the most devoted affection, but the poor girl died, and the +Arabian was left alone, unacquainted with the language of the country +and utterly ignorant of the customs of the world. She fell, however, +into good hands. The Italian had mentioned the name of the spot for +which they were bound, and after her death the woman of the house in +which they had lived took care that Safie should arrive in safety at +the cottage of her lover.” + + + + +Chapter 15 + + +“Such was the history of my beloved cottagers. It impressed me deeply. +I learned, from the views of social life which it developed, to admire +their virtues and to deprecate the vices of mankind. + +“As yet I looked upon crime as a distant evil, benevolence and +generosity were ever present before me, inciting within me a desire to +become an actor in the busy scene where so many admirable qualities +were called forth and displayed. But in giving an account of the +progress of my intellect, I must not omit a circumstance which occurred +in the beginning of the month of August of the same year. + +“One night during my accustomed visit to the neighbouring wood where I +collected my own food and brought home firing for my protectors, I found on +the ground a leathern portmanteau containing several articles of dress and +some books. I eagerly seized the prize and returned with it to my hovel. +Fortunately the books were written in the language, the elements of which I +had acquired at the cottage; they consisted of _Paradise Lost_, a volume +of _Plutarch’s Lives_, and the _Sorrows of Werter_. The +possession of these treasures gave me extreme delight; I now continually +studied and exercised my mind upon these histories, whilst my friends were +employed in their ordinary occupations. + +“I can hardly describe to you the effect of these books. They produced +in me an infinity of new images and feelings, that sometimes raised me +to ecstasy, but more frequently sunk me into the lowest dejection. In +the _Sorrows of Werter_, besides the interest of its simple and affecting +story, so many opinions are canvassed and so many lights thrown upon +what had hitherto been to me obscure subjects that I found in it a +never-ending source of speculation and astonishment. The gentle and +domestic manners it described, combined with lofty sentiments and +feelings, which had for their object something out of self, accorded +well with my experience among my protectors and with the wants which +were for ever alive in my own bosom. But I thought Werter himself a +more divine being than I had ever beheld or imagined; his character +contained no pretension, but it sank deep. The disquisitions upon +death and suicide were calculated to fill me with wonder. I did not +pretend to enter into the merits of the case, yet I inclined towards +the opinions of the hero, whose extinction I wept, without precisely +understanding it. + +“As I read, however, I applied much personally to my own feelings and +condition. I found myself similar yet at the same time strangely +unlike to the beings concerning whom I read and to whose conversation I +was a listener. I sympathised with and partly understood them, but I +was unformed in mind; I was dependent on none and related to none. +‘The path of my departure was free,’ and there was none to lament my +annihilation. My person was hideous and my stature gigantic. What did +this mean? Who was I? What was I? Whence did I come? What was my +destination? These questions continually recurred, but I was unable to +solve them. + +“The volume of _Plutarch’s Lives_ which I possessed contained the +histories of the first founders of the ancient republics. This book +had a far different effect upon me from the _Sorrows of Werter_. I +learned from Werter’s imaginations despondency and gloom, but Plutarch +taught me high thoughts; he elevated me above the wretched sphere of my +own reflections, to admire and love the heroes of past ages. Many +things I read surpassed my understanding and experience. I had a very +confused knowledge of kingdoms, wide extents of country, mighty rivers, +and boundless seas. But I was perfectly unacquainted with towns and +large assemblages of men. The cottage of my protectors had been the +only school in which I had studied human nature, but this book +developed new and mightier scenes of action. I read of men concerned +in public affairs, governing or massacring their species. I felt the +greatest ardour for virtue rise within me, and abhorrence for vice, as +far as I understood the signification of those terms, relative as they +were, as I applied them, to pleasure and pain alone. Induced by these +feelings, I was of course led to admire peaceable lawgivers, Numa, +Solon, and Lycurgus, in preference to Romulus and Theseus. The +patriarchal lives of my protectors caused these impressions to take a +firm hold on my mind; perhaps, if my first introduction to humanity had +been made by a young soldier, burning for glory and slaughter, I should +have been imbued with different sensations. + +“But _Paradise Lost_ excited different and far deeper emotions. I read +it, as I had read the other volumes which had fallen into my hands, as +a true history. It moved every feeling of wonder and awe that the +picture of an omnipotent God warring with his creatures was capable of +exciting. I often referred the several situations, as their similarity +struck me, to my own. Like Adam, I was apparently united by no link to +any other being in existence; but his state was far different from mine +in every other respect. He had come forth from the hands of God a +perfect creature, happy and prosperous, guarded by the especial care of +his Creator; he was allowed to converse with and acquire knowledge from +beings of a superior nature, but I was wretched, helpless, and alone. +Many times I considered Satan as the fitter emblem of my condition, for +often, like him, when I viewed the bliss of my protectors, the bitter +gall of envy rose within me. + +“Another circumstance strengthened and confirmed these feelings. Soon +after my arrival in the hovel I discovered some papers in the pocket of +the dress which I had taken from your laboratory. At first I had +neglected them, but now that I was able to decipher the characters in +which they were written, I began to study them with diligence. It was +your journal of the four months that preceded my creation. You +minutely described in these papers every step you took in the progress +of your work; this history was mingled with accounts of domestic +occurrences. You doubtless recollect these papers. Here they are. +Everything is related in them which bears reference to my accursed +origin; the whole detail of that series of disgusting circumstances +which produced it is set in view; the minutest description of my odious +and loathsome person is given, in language which painted your own +horrors and rendered mine indelible. I sickened as I read. ‘Hateful +day when I received life!’ I exclaimed in agony. ‘Accursed creator! +Why did you form a monster so hideous that even _you_ turned from me in +disgust? God, in pity, made man beautiful and alluring, after his own +image; but my form is a filthy type of yours, more horrid even from the +very resemblance. Satan had his companions, fellow devils, to admire +and encourage him, but I am solitary and abhorred.’ + +“These were the reflections of my hours of despondency and solitude; +but when I contemplated the virtues of the cottagers, their amiable and +benevolent dispositions, I persuaded myself that when they should +become acquainted with my admiration of their virtues they would +compassionate me and overlook my personal deformity. Could they turn +from their door one, however monstrous, who solicited their compassion +and friendship? I resolved, at least, not to despair, but in every way +to fit myself for an interview with them which would decide my fate. I +postponed this attempt for some months longer, for the importance +attached to its success inspired me with a dread lest I should fail. +Besides, I found that my understanding improved so much with every +day’s experience that I was unwilling to commence this undertaking +until a few more months should have added to my sagacity. + +“Several changes, in the meantime, took place in the cottage. The +presence of Safie diffused happiness among its inhabitants, and I also +found that a greater degree of plenty reigned there. Felix and Agatha +spent more time in amusement and conversation, and were assisted in +their labours by servants. They did not appear rich, but they were +contented and happy; their feelings were serene and peaceful, while +mine became every day more tumultuous. Increase of knowledge only +discovered to me more clearly what a wretched outcast I was. I +cherished hope, it is true, but it vanished when I beheld my person +reflected in water or my shadow in the moonshine, even as that frail +image and that inconstant shade. + +“I endeavoured to crush these fears and to fortify myself for the trial +which in a few months I resolved to undergo; and sometimes I allowed my +thoughts, unchecked by reason, to ramble in the fields of Paradise, and +dared to fancy amiable and lovely creatures sympathising with my +feelings and cheering my gloom; their angelic countenances breathed +smiles of consolation. But it was all a dream; no Eve soothed my +sorrows nor shared my thoughts; I was alone. I remembered Adam’s +supplication to his Creator. But where was mine? He had abandoned me, +and in the bitterness of my heart I cursed him. + +“Autumn passed thus. I saw, with surprise and grief, the leaves decay +and fall, and nature again assume the barren and bleak appearance it +had worn when I first beheld the woods and the lovely moon. Yet I did +not heed the bleakness of the weather; I was better fitted by my +conformation for the endurance of cold than heat. But my chief +delights were the sight of the flowers, the birds, and all the gay +apparel of summer; when those deserted me, I turned with more attention +towards the cottagers. Their happiness was not decreased by the +absence of summer. They loved and sympathised with one another; and +their joys, depending on each other, were not interrupted by the +casualties that took place around them. The more I saw of them, the +greater became my desire to claim their protection and kindness; my +heart yearned to be known and loved by these amiable creatures; to see +their sweet looks directed towards me with affection was the utmost +limit of my ambition. I dared not think that they would turn them from +me with disdain and horror. The poor that stopped at their door were +never driven away. I asked, it is true, for greater treasures than a +little food or rest: I required kindness and sympathy; but I did not +believe myself utterly unworthy of it. + +“The winter advanced, and an entire revolution of the seasons had taken +place since I awoke into life. My attention at this time was solely +directed towards my plan of introducing myself into the cottage of my +protectors. I revolved many projects, but that on which I finally +fixed was to enter the dwelling when the blind old man should be alone. +I had sagacity enough to discover that the unnatural hideousness of my +person was the chief object of horror with those who had formerly +beheld me. My voice, although harsh, had nothing terrible in it; I +thought, therefore, that if in the absence of his children I could gain +the good will and mediation of the old De Lacey, I might by his means +be tolerated by my younger protectors. + +“One day, when the sun shone on the red leaves that strewed the ground +and diffused cheerfulness, although it denied warmth, Safie, Agatha, +and Felix departed on a long country walk, and the old man, at his own +desire, was left alone in the cottage. When his children had departed, +he took up his guitar and played several mournful but sweet airs, more +sweet and mournful than I had ever heard him play before. At first his +countenance was illuminated with pleasure, but as he continued, +thoughtfulness and sadness succeeded; at length, laying aside the +instrument, he sat absorbed in reflection. + +“My heart beat quick; this was the hour and moment of trial, which +would decide my hopes or realise my fears. The servants were gone to a +neighbouring fair. All was silent in and around the cottage; it was an +excellent opportunity; yet, when I proceeded to execute my plan, my +limbs failed me and I sank to the ground. Again I rose, and exerting +all the firmness of which I was master, removed the planks which I had +placed before my hovel to conceal my retreat. The fresh air revived +me, and with renewed determination I approached the door of their +cottage. + +“I knocked. ‘Who is there?’ said the old man. ‘Come in.’ + +“I entered. ‘Pardon this intrusion,’ said I; ‘I am +a traveller in want of a little rest; you would greatly oblige me if you +would allow me to remain a few minutes before the fire.’ + +“‘Enter,’ said De Lacey, ‘and I will try in what +manner I can to relieve your wants; but, unfortunately, my children are +from home, and as I am blind, I am afraid I shall find it difficult to +procure food for you.’ + +“‘Do not trouble yourself, my kind host; I have food; it is +warmth and rest only that I need.’ + +“I sat down, and a silence ensued. I knew that every minute was +precious to me, yet I remained irresolute in what manner to commence +the interview, when the old man addressed me. + +‘By your language, stranger, I suppose you are my countryman; are you +French?’ + +“‘No; but I was educated by a French family and understand that +language only. I am now going to claim the protection of some friends, +whom I sincerely love, and of whose favour I have some hopes.’ + +“‘Are they Germans?’ + +“‘No, they are French. But let us change the subject. I am an +unfortunate and deserted creature, I look around and I have no relation +or friend upon earth. These amiable people to whom I go have never +seen me and know little of me. I am full of fears, for if I fail +there, I am an outcast in the world for ever.’ + +“‘Do not despair. To be friendless is indeed to be unfortunate, but +the hearts of men, when unprejudiced by any obvious self-interest, are +full of brotherly love and charity. Rely, therefore, on your hopes; +and if these friends are good and amiable, do not despair.’ + +“‘They are kind—they are the most excellent creatures in the world; +but, unfortunately, they are prejudiced against me. I have good +dispositions; my life has been hitherto harmless and in some degree +beneficial; but a fatal prejudice clouds their eyes, and where they +ought to see a feeling and kind friend, they behold only a detestable +monster.’ + +“‘That is indeed unfortunate; but if you are really blameless, cannot +you undeceive them?’ + +“‘I am about to undertake that task; and it is on that account that I +feel so many overwhelming terrors. I tenderly love these friends; I +have, unknown to them, been for many months in the habits of daily +kindness towards them; but they believe that I wish to injure them, and +it is that prejudice which I wish to overcome.’ + +“‘Where do these friends reside?’ + +“‘Near this spot.’ + +“The old man paused and then continued, ‘If you will unreservedly +confide to me the particulars of your tale, I perhaps may be of use in +undeceiving them. I am blind and cannot judge of your countenance, but +there is something in your words which persuades me that you are +sincere. I am poor and an exile, but it will afford me true pleasure +to be in any way serviceable to a human creature.’ + +“‘Excellent man! I thank you and accept your generous offer. You +raise me from the dust by this kindness; and I trust that, by your aid, +I shall not be driven from the society and sympathy of your fellow +creatures.’ + +“‘Heaven forbid! Even if you were really criminal, for that can only +drive you to desperation, and not instigate you to virtue. I also am +unfortunate; I and my family have been condemned, although innocent; +judge, therefore, if I do not feel for your misfortunes.’ + +“‘How can I thank you, my best and only benefactor? From your lips +first have I heard the voice of kindness directed towards me; I shall +be for ever grateful; and your present humanity assures me of success +with those friends whom I am on the point of meeting.’ + +“‘May I know the names and residence of those friends?’ + +“I paused. This, I thought, was the moment of decision, which was to +rob me of or bestow happiness on me for ever. I struggled vainly for +firmness sufficient to answer him, but the effort destroyed all my +remaining strength; I sank on the chair and sobbed aloud. At that +moment I heard the steps of my younger protectors. I had not a moment +to lose, but seizing the hand of the old man, I cried, ‘Now is the +time! Save and protect me! You and your family are the friends whom I +seek. Do not you desert me in the hour of trial!’ + +“‘Great God!’ exclaimed the old man. ‘Who are you?’ + +“At that instant the cottage door was opened, and Felix, Safie, and +Agatha entered. Who can describe their horror and consternation on +beholding me? Agatha fainted, and Safie, unable to attend to her +friend, rushed out of the cottage. Felix darted forward, and with +supernatural force tore me from his father, to whose knees I clung, in +a transport of fury, he dashed me to the ground and struck me violently +with a stick. I could have torn him limb from limb, as the lion rends +the antelope. But my heart sank within me as with bitter sickness, and +I refrained. I saw him on the point of repeating his blow, when, +overcome by pain and anguish, I quitted the cottage, and in the general +tumult escaped unperceived to my hovel.” + + + + +Chapter 16 + + +“Cursed, cursed creator! Why did I live? Why, in that instant, did I +not extinguish the spark of existence which you had so wantonly +bestowed? I know not; despair had not yet taken possession of me; my +feelings were those of rage and revenge. I could with pleasure have +destroyed the cottage and its inhabitants and have glutted myself with +their shrieks and misery. + +“When night came I quitted my retreat and wandered in the wood; and +now, no longer restrained by the fear of discovery, I gave vent to my +anguish in fearful howlings. I was like a wild beast that had broken +the toils, destroying the objects that obstructed me and ranging +through the wood with a stag-like swiftness. Oh! What a miserable +night I passed! The cold stars shone in mockery, and the bare trees +waved their branches above me; now and then the sweet voice of a bird +burst forth amidst the universal stillness. All, save I, were at rest +or in enjoyment; I, like the arch-fiend, bore a hell within me, and +finding myself unsympathised with, wished to tear up the trees, spread +havoc and destruction around me, and then to have sat down and enjoyed +the ruin. + +“But this was a luxury of sensation that could not endure; I became +fatigued with excess of bodily exertion and sank on the damp grass in +the sick impotence of despair. There was none among the myriads of men +that existed who would pity or assist me; and should I feel kindness +towards my enemies? No; from that moment I declared everlasting war +against the species, and more than all, against him who had formed me +and sent me forth to this insupportable misery. + +“The sun rose; I heard the voices of men and knew that it was +impossible to return to my retreat during that day. Accordingly I hid +myself in some thick underwood, determining to devote the ensuing hours +to reflection on my situation. + +“The pleasant sunshine and the pure air of day restored me to some +degree of tranquillity; and when I considered what had passed at the +cottage, I could not help believing that I had been too hasty in my +conclusions. I had certainly acted imprudently. It was apparent that +my conversation had interested the father in my behalf, and I was a +fool in having exposed my person to the horror of his children. I +ought to have familiarised the old De Lacey to me, and by degrees to +have discovered myself to the rest of his family, when they should have +been prepared for my approach. But I did not believe my errors to be +irretrievable, and after much consideration I resolved to return to the +cottage, seek the old man, and by my representations win him to my +party. + +“These thoughts calmed me, and in the afternoon I sank into a profound +sleep; but the fever of my blood did not allow me to be visited by +peaceful dreams. The horrible scene of the preceding day was for ever +acting before my eyes; the females were flying and the enraged Felix +tearing me from his father’s feet. I awoke exhausted, and finding that +it was already night, I crept forth from my hiding-place, and went in +search of food. + +“When my hunger was appeased, I directed my steps towards the +well-known path that conducted to the cottage. All there was at peace. +I crept into my hovel and remained in silent expectation of the +accustomed hour when the family arose. That hour passed, the sun +mounted high in the heavens, but the cottagers did not appear. I +trembled violently, apprehending some dreadful misfortune. The inside +of the cottage was dark, and I heard no motion; I cannot describe the +agony of this suspense. + +“Presently two countrymen passed by, but pausing near the cottage, they +entered into conversation, using violent gesticulations; but I did not +understand what they said, as they spoke the language of the country, +which differed from that of my protectors. Soon after, however, Felix +approached with another man; I was surprised, as I knew that he had not +quitted the cottage that morning, and waited anxiously to discover from +his discourse the meaning of these unusual appearances. + +“‘Do you consider,’ said his companion to him, +‘that you will be obliged to pay three months’ rent and to lose +the produce of your garden? I do not wish to take any unfair advantage, and +I beg therefore that you will take some days to consider of your +determination.’ + +“‘It is utterly useless,’ replied Felix; ‘we can +never again inhabit your cottage. The life of my father is in the greatest +danger, owing to the dreadful circumstance that I have related. My wife and +my sister will never recover from their horror. I entreat you not to reason +with me any more. Take possession of your tenement and let me fly from this +place.’ + +“Felix trembled violently as he said this. He and his companion +entered the cottage, in which they remained for a few minutes, and then +departed. I never saw any of the family of De Lacey more. + +“I continued for the remainder of the day in my hovel in a state of +utter and stupid despair. My protectors had departed and had broken +the only link that held me to the world. For the first time the +feelings of revenge and hatred filled my bosom, and I did not strive to +control them, but allowing myself to be borne away by the stream, I +bent my mind towards injury and death. When I thought of my friends, +of the mild voice of De Lacey, the gentle eyes of Agatha, and the +exquisite beauty of the Arabian, these thoughts vanished and a gush of +tears somewhat soothed me. But again when I reflected that they had +spurned and deserted me, anger returned, a rage of anger, and unable to +injure anything human, I turned my fury towards inanimate objects. As +night advanced, I placed a variety of combustibles around the cottage, +and after having destroyed every vestige of cultivation in the garden, +I waited with forced impatience until the moon had sunk to commence my +operations. + +“As the night advanced, a fierce wind arose from the woods and quickly +dispersed the clouds that had loitered in the heavens; the blast tore +along like a mighty avalanche and produced a kind of insanity in my +spirits that burst all bounds of reason and reflection. I lighted the +dry branch of a tree and danced with fury around the devoted cottage, +my eyes still fixed on the western horizon, the edge of which the moon +nearly touched. A part of its orb was at length hid, and I waved my +brand; it sank, and with a loud scream I fired the straw, and heath, +and bushes, which I had collected. The wind fanned the fire, and the +cottage was quickly enveloped by the flames, which clung to it and +licked it with their forked and destroying tongues. + +“As soon as I was convinced that no assistance could save any part of +the habitation, I quitted the scene and sought for refuge in the woods. + +“And now, with the world before me, whither should I bend my steps? I +resolved to fly far from the scene of my misfortunes; but to me, hated +and despised, every country must be equally horrible. At length the +thought of you crossed my mind. I learned from your papers that you +were my father, my creator; and to whom could I apply with more fitness +than to him who had given me life? Among the lessons that Felix had +bestowed upon Safie, geography had not been omitted; I had learned from +these the relative situations of the different countries of the earth. +You had mentioned Geneva as the name of your native town, and towards +this place I resolved to proceed. + +“But how was I to direct myself? I knew that I must travel in a +southwesterly direction to reach my destination, but the sun was my +only guide. I did not know the names of the towns that I was to pass +through, nor could I ask information from a single human being; but I +did not despair. From you only could I hope for succour, although +towards you I felt no sentiment but that of hatred. Unfeeling, +heartless creator! You had endowed me with perceptions and passions +and then cast me abroad an object for the scorn and horror of mankind. +But on you only had I any claim for pity and redress, and from you I +determined to seek that justice which I vainly attempted to gain from +any other being that wore the human form. + +“My travels were long and the sufferings I endured intense. It was +late in autumn when I quitted the district where I had so long resided. +I travelled only at night, fearful of encountering the visage of a +human being. Nature decayed around me, and the sun became heatless; +rain and snow poured around me; mighty rivers were frozen; the surface +of the earth was hard and chill, and bare, and I found no shelter. Oh, +earth! How often did I imprecate curses on the cause of my being! The +mildness of my nature had fled, and all within me was turned to gall +and bitterness. The nearer I approached to your habitation, the more +deeply did I feel the spirit of revenge enkindled in my heart. Snow +fell, and the waters were hardened, but I rested not. A few incidents +now and then directed me, and I possessed a map of the country; but I +often wandered wide from my path. The agony of my feelings allowed me +no respite; no incident occurred from which my rage and misery could +not extract its food; but a circumstance that happened when I arrived +on the confines of Switzerland, when the sun had recovered its warmth +and the earth again began to look green, confirmed in an especial +manner the bitterness and horror of my feelings. + +“I generally rested during the day and travelled only when I was +secured by night from the view of man. One morning, however, finding +that my path lay through a deep wood, I ventured to continue my journey +after the sun had risen; the day, which was one of the first of spring, +cheered even me by the loveliness of its sunshine and the balminess of +the air. I felt emotions of gentleness and pleasure, that had long +appeared dead, revive within me. Half surprised by the novelty of +these sensations, I allowed myself to be borne away by them, and +forgetting my solitude and deformity, dared to be happy. Soft tears +again bedewed my cheeks, and I even raised my humid eyes with +thankfulness towards the blessed sun, which bestowed such joy upon me. + +“I continued to wind among the paths of the wood, until I came to its +boundary, which was skirted by a deep and rapid river, into which many +of the trees bent their branches, now budding with the fresh spring. +Here I paused, not exactly knowing what path to pursue, when I heard +the sound of voices, that induced me to conceal myself under the shade +of a cypress. I was scarcely hid when a young girl came running +towards the spot where I was concealed, laughing, as if she ran from +someone in sport. She continued her course along the precipitous sides +of the river, when suddenly her foot slipped, and she fell into the +rapid stream. I rushed from my hiding-place and with extreme labour, +from the force of the current, saved her and dragged her to shore. She +was senseless, and I endeavoured by every means in my power to restore +animation, when I was suddenly interrupted by the approach of a rustic, +who was probably the person from whom she had playfully fled. On +seeing me, he darted towards me, and tearing the girl from my arms, +hastened towards the deeper parts of the wood. I followed speedily, I +hardly knew why; but when the man saw me draw near, he aimed a gun, +which he carried, at my body and fired. I sank to the ground, and my +injurer, with increased swiftness, escaped into the wood. + +“This was then the reward of my benevolence! I had saved a human being +from destruction, and as a recompense I now writhed under the miserable +pain of a wound which shattered the flesh and bone. The feelings of +kindness and gentleness which I had entertained but a few moments +before gave place to hellish rage and gnashing of teeth. Inflamed by +pain, I vowed eternal hatred and vengeance to all mankind. But the +agony of my wound overcame me; my pulses paused, and I fainted. + +“For some weeks I led a miserable life in the woods, endeavouring to +cure the wound which I had received. The ball had entered my shoulder, +and I knew not whether it had remained there or passed through; at any +rate I had no means of extracting it. My sufferings were augmented +also by the oppressive sense of the injustice and ingratitude of their +infliction. My daily vows rose for revenge—a deep and deadly revenge, +such as would alone compensate for the outrages and anguish I had +endured. + +“After some weeks my wound healed, and I continued my journey. The +labours I endured were no longer to be alleviated by the bright sun or +gentle breezes of spring; all joy was but a mockery which insulted my +desolate state and made me feel more painfully that I was not made for +the enjoyment of pleasure. + +“But my toils now drew near a close, and in two months from this time I +reached the environs of Geneva. + +“It was evening when I arrived, and I retired to a hiding-place among +the fields that surround it to meditate in what manner I should apply +to you. I was oppressed by fatigue and hunger and far too unhappy to +enjoy the gentle breezes of evening or the prospect of the sun setting +behind the stupendous mountains of Jura. + +“At this time a slight sleep relieved me from the pain of reflection, +which was disturbed by the approach of a beautiful child, who came +running into the recess I had chosen, with all the sportiveness of +infancy. Suddenly, as I gazed on him, an idea seized me that this +little creature was unprejudiced and had lived too short a time to have +imbibed a horror of deformity. If, therefore, I could seize him and +educate him as my companion and friend, I should not be so desolate in +this peopled earth. + +“Urged by this impulse, I seized on the boy as he passed and drew him +towards me. As soon as he beheld my form, he placed his hands before +his eyes and uttered a shrill scream; I drew his hand forcibly from his +face and said, ‘Child, what is the meaning of this? I do not intend to +hurt you; listen to me.’ + +“He struggled violently. ‘Let me go,’ he cried; +‘monster! Ugly wretch! You wish to eat me and tear me to pieces. You +are an ogre. Let me go, or I will tell my papa.’ + +“‘Boy, you will never see your father again; you must come with me.’ + +“‘Hideous monster! Let me go. My papa is a syndic—he is M. +Frankenstein—he will punish you. You dare not keep me.’ + +“‘Frankenstein! you belong then to my enemy—to him towards whom I have +sworn eternal revenge; you shall be my first victim.’ + +“The child still struggled and loaded me with epithets which carried +despair to my heart; I grasped his throat to silence him, and in a +moment he lay dead at my feet. + +“I gazed on my victim, and my heart swelled with exultation and hellish +triumph; clapping my hands, I exclaimed, ‘I too can create desolation; +my enemy is not invulnerable; this death will carry despair to him, and +a thousand other miseries shall torment and destroy him.’ + +“As I fixed my eyes on the child, I saw something glittering on his +breast. I took it; it was a portrait of a most lovely woman. In spite +of my malignity, it softened and attracted me. For a few moments I +gazed with delight on her dark eyes, fringed by deep lashes, and her +lovely lips; but presently my rage returned; I remembered that I was +for ever deprived of the delights that such beautiful creatures could +bestow and that she whose resemblance I contemplated would, in +regarding me, have changed that air of divine benignity to one +expressive of disgust and affright. + +“Can you wonder that such thoughts transported me with rage? I only +wonder that at that moment, instead of venting my sensations in +exclamations and agony, I did not rush among mankind and perish in the +attempt to destroy them. + +“While I was overcome by these feelings, I left the spot where I had +committed the murder, and seeking a more secluded hiding-place, I +entered a barn which had appeared to me to be empty. A woman was +sleeping on some straw; she was young, not indeed so beautiful as her +whose portrait I held, but of an agreeable aspect and blooming in the +loveliness of youth and health. Here, I thought, is one of those whose +joy-imparting smiles are bestowed on all but me. And then I bent over +her and whispered, ‘Awake, fairest, thy lover is near—he who would +give his life but to obtain one look of affection from thine eyes; my +beloved, awake!’ + +“The sleeper stirred; a thrill of terror ran through me. Should she +indeed awake, and see me, and curse me, and denounce the murderer? Thus +would she assuredly act if her darkened eyes opened and she beheld me. +The thought was madness; it stirred the fiend within me—not I, but +she, shall suffer; the murder I have committed because I am for ever +robbed of all that she could give me, she shall atone. The crime had +its source in her; be hers the punishment! Thanks to the lessons of +Felix and the sanguinary laws of man, I had learned now to work +mischief. I bent over her and placed the portrait securely in one of +the folds of her dress. She moved again, and I fled. + +“For some days I haunted the spot where these scenes had taken place, +sometimes wishing to see you, sometimes resolved to quit the world and +its miseries for ever. At length I wandered towards these mountains, +and have ranged through their immense recesses, consumed by a burning +passion which you alone can gratify. We may not part until you have +promised to comply with my requisition. I am alone and miserable; man +will not associate with me; but one as deformed and horrible as myself +would not deny herself to me. My companion must be of the same species +and have the same defects. This being you must create.” + + + + +Chapter 17 + + +The being finished speaking and fixed his looks upon me in the +expectation of a reply. But I was bewildered, perplexed, and unable to +arrange my ideas sufficiently to understand the full extent of his +proposition. He continued, + +“You must create a female for me with whom I can live in the +interchange of those sympathies necessary for my being. This you alone +can do, and I demand it of you as a right which you must not refuse to +concede.” + +The latter part of his tale had kindled anew in me the anger that had +died away while he narrated his peaceful life among the cottagers, and +as he said this I could no longer suppress the rage that burned within +me. + +“I do refuse it,” I replied; “and no torture shall ever extort a +consent from me. You may render me the most miserable of men, but you +shall never make me base in my own eyes. Shall I create another like +yourself, whose joint wickedness might desolate the world. Begone! I +have answered you; you may torture me, but I will never consent.” + +“You are in the wrong,” replied the fiend; “and instead +of threatening, I am content to reason with you. I am malicious because I +am miserable. Am I not shunned and hated by all mankind? You, my creator, +would tear me to pieces and triumph; remember that, and tell me why I +should pity man more than he pities me? You would not call it murder if you +could precipitate me into one of those ice-rifts and destroy my frame, the +work of your own hands. Shall I respect man when he condemns me? Let him +live with me in the interchange of kindness, and instead of injury I would +bestow every benefit upon him with tears of gratitude at his acceptance. +But that cannot be; the human senses are insurmountable barriers to our +union. Yet mine shall not be the submission of abject slavery. I will +revenge my injuries; if I cannot inspire love, I will cause fear, and +chiefly towards you my arch-enemy, because my creator, do I swear +inextinguishable hatred. Have a care; I will work at your destruction, nor +finish until I desolate your heart, so that you shall curse the hour of +your birth.” + +A fiendish rage animated him as he said this; his face was wrinkled +into contortions too horrible for human eyes to behold; but presently +he calmed himself and proceeded— + +“I intended to reason. This passion is detrimental to me, for you do +not reflect that _you_ are the cause of its excess. If any being felt +emotions of benevolence towards me, I should return them a hundred and a +hundredfold; for that one creature’s sake I would make peace with the +whole kind! But I now indulge in dreams of bliss that cannot be realised. +What I ask of you is reasonable and moderate; I demand a creature of +another sex, but as hideous as myself; the gratification is small, but it +is all that I can receive, and it shall content me. It is true, we shall be +monsters, cut off from all the world; but on that account we shall be more +attached to one another. Our lives will not be happy, but they will be +harmless and free from the misery I now feel. Oh! My creator, make me +happy; let me feel gratitude towards you for one benefit! Let me see that I +excite the sympathy of some existing thing; do not deny me my +request!” + +I was moved. I shuddered when I thought of the possible consequences +of my consent, but I felt that there was some justice in his argument. +His tale and the feelings he now expressed proved him to be a creature +of fine sensations, and did I not as his maker owe him all the portion +of happiness that it was in my power to bestow? He saw my change of +feeling and continued, + +“If you consent, neither you nor any other human being shall ever see +us again; I will go to the vast wilds of South America. My food is not +that of man; I do not destroy the lamb and the kid to glut my appetite; +acorns and berries afford me sufficient nourishment. My companion will +be of the same nature as myself and will be content with the same fare. +We shall make our bed of dried leaves; the sun will shine on us as on +man and will ripen our food. The picture I present to you is peaceful +and human, and you must feel that you could deny it only in the +wantonness of power and cruelty. Pitiless as you have been towards me, +I now see compassion in your eyes; let me seize the favourable moment +and persuade you to promise what I so ardently desire.” + +“You propose,” replied I, “to fly from the habitations of +man, to dwell in those wilds where the beasts of the field will be your +only companions. How can you, who long for the love and sympathy of man, +persevere in this exile? You will return and again seek their kindness, and +you will meet with their detestation; your evil passions will be renewed, +and you will then have a companion to aid you in the task of destruction. +This may not be; cease to argue the point, for I cannot consent.” + +“How inconstant are your feelings! But a moment ago you were moved by +my representations, and why do you again harden yourself to my complaints? +I swear to you, by the earth which I inhabit, and by you that made me, that +with the companion you bestow, I will quit the neighbourhood of man and +dwell, as it may chance, in the most savage of places. My evil passions +will have fled, for I shall meet with sympathy! My life will flow quietly +away, and in my dying moments I shall not curse my maker.” + +His words had a strange effect upon me. I compassionated him and +sometimes felt a wish to console him, but when I looked upon him, when +I saw the filthy mass that moved and talked, my heart sickened and my +feelings were altered to those of horror and hatred. I tried to stifle +these sensations; I thought that as I could not sympathise with him, I +had no right to withhold from him the small portion of happiness which +was yet in my power to bestow. + +“You swear,” I said, “to be harmless; but have you not +already shown a degree of malice that should reasonably make me distrust +you? May not even this be a feint that will increase your triumph by +affording a wider scope for your revenge?” + +“How is this? I must not be trifled with, and I demand an answer. If +I have no ties and no affections, hatred and vice must be my portion; +the love of another will destroy the cause of my crimes, and I shall +become a thing of whose existence everyone will be ignorant. My vices +are the children of a forced solitude that I abhor, and my virtues will +necessarily arise when I live in communion with an equal. I shall feel +the affections of a sensitive being and become linked to the chain of +existence and events from which I am now excluded.” + +I paused some time to reflect on all he had related and the various +arguments which he had employed. I thought of the promise of virtues which +he had displayed on the opening of his existence and the subsequent blight +of all kindly feeling by the loathing and scorn which his protectors had +manifested towards him. His power and threats were not omitted in my +calculations; a creature who could exist in the ice-caves of the glaciers +and hide himself from pursuit among the ridges of inaccessible precipices +was a being possessing faculties it would be vain to cope with. After a +long pause of reflection I concluded that the justice due both to him and +my fellow creatures demanded of me that I should comply with his request. +Turning to him, therefore, I said, + +“I consent to your demand, on your solemn oath to quit Europe for ever, +and every other place in the neighbourhood of man, as soon as I shall +deliver into your hands a female who will accompany you in your exile.” + +“I swear,” he cried, “by the sun, and by the blue sky of +heaven, and by the fire of love that burns my heart, that if you grant my +prayer, while they exist you shall never behold me again. Depart to your +home and commence your labours; I shall watch their progress with +unutterable anxiety; and fear not but that when you are ready I shall +appear.” + +Saying this, he suddenly quitted me, fearful, perhaps, of any change in +my sentiments. I saw him descend the mountain with greater speed than +the flight of an eagle, and quickly lost among the undulations of the +sea of ice. + +His tale had occupied the whole day, and the sun was upon the verge of +the horizon when he departed. I knew that I ought to hasten my descent +towards the valley, as I should soon be encompassed in darkness; but my +heart was heavy, and my steps slow. The labour of winding among the +little paths of the mountain and fixing my feet firmly as I advanced +perplexed me, occupied as I was by the emotions which the occurrences +of the day had produced. Night was far advanced when I came to the +halfway resting-place and seated myself beside the fountain. The stars +shone at intervals as the clouds passed from over them; the dark pines +rose before me, and every here and there a broken tree lay on the +ground; it was a scene of wonderful solemnity and stirred strange +thoughts within me. I wept bitterly, and clasping my hands in agony, I +exclaimed, “Oh! stars and clouds and winds, ye are all about to mock +me; if ye really pity me, crush sensation and memory; let me become as +nought; but if not, depart, depart, and leave me in darkness.” + +These were wild and miserable thoughts, but I cannot describe to you +how the eternal twinkling of the stars weighed upon me and how I +listened to every blast of wind as if it were a dull ugly siroc on its +way to consume me. + +Morning dawned before I arrived at the village of Chamounix; I took no +rest, but returned immediately to Geneva. Even in my own heart I could +give no expression to my sensations—they weighed on me with a +mountain’s weight and their excess destroyed my agony beneath them. +Thus I returned home, and entering the house, presented myself to the +family. My haggard and wild appearance awoke intense alarm, but I +answered no question, scarcely did I speak. I felt as if I were placed +under a ban—as if I had no right to claim their sympathies—as if +never more might I enjoy companionship with them. Yet even thus I +loved them to adoration; and to save them, I resolved to dedicate +myself to my most abhorred task. The prospect of such an occupation +made every other circumstance of existence pass before me like a dream, +and that thought only had to me the reality of life. + + + + +Chapter 18 + + +Day after day, week after week, passed away on my return to Geneva; and +I could not collect the courage to recommence my work. I feared the +vengeance of the disappointed fiend, yet I was unable to overcome my +repugnance to the task which was enjoined me. I found that I could not +compose a female without again devoting several months to profound +study and laborious disquisition. I had heard of some discoveries +having been made by an English philosopher, the knowledge of which was +material to my success, and I sometimes thought of obtaining my +father’s consent to visit England for this purpose; but I clung to +every pretence of delay and shrank from taking the first step in an +undertaking whose immediate necessity began to appear less absolute to +me. A change indeed had taken place in me; my health, which had +hitherto declined, was now much restored; and my spirits, when +unchecked by the memory of my unhappy promise, rose proportionably. My +father saw this change with pleasure, and he turned his thoughts +towards the best method of eradicating the remains of my melancholy, +which every now and then would return by fits, and with a devouring +blackness overcast the approaching sunshine. At these moments I took +refuge in the most perfect solitude. I passed whole days on the lake +alone in a little boat, watching the clouds and listening to the +rippling of the waves, silent and listless. But the fresh air and +bright sun seldom failed to restore me to some degree of composure, and +on my return I met the salutations of my friends with a readier smile +and a more cheerful heart. + +It was after my return from one of these rambles that my father, +calling me aside, thus addressed me, + +“I am happy to remark, my dear son, that you have resumed your former +pleasures and seem to be returning to yourself. And yet you are still +unhappy and still avoid our society. For some time I was lost in +conjecture as to the cause of this, but yesterday an idea struck me, +and if it is well founded, I conjure you to avow it. Reserve on such a +point would be not only useless, but draw down treble misery on us all.” + +I trembled violently at his exordium, and my father continued— + +“I confess, my son, that I have always looked forward to your +marriage with our dear Elizabeth as the tie of our domestic comfort and the +stay of my declining years. You were attached to each other from your +earliest infancy; you studied together, and appeared, in dispositions and +tastes, entirely suited to one another. But so blind is the experience of +man that what I conceived to be the best assistants to my plan may have +entirely destroyed it. You, perhaps, regard her as your sister, without any +wish that she might become your wife. Nay, you may have met with another +whom you may love; and considering yourself as bound in honour to +Elizabeth, this struggle may occasion the poignant misery which you appear +to feel.” + +“My dear father, reassure yourself. I love my cousin tenderly and +sincerely. I never saw any woman who excited, as Elizabeth does, my +warmest admiration and affection. My future hopes and prospects are +entirely bound up in the expectation of our union.” + +“The expression of your sentiments of this subject, my dear Victor, +gives me more pleasure than I have for some time experienced. If you +feel thus, we shall assuredly be happy, however present events may cast +a gloom over us. But it is this gloom which appears to have taken so +strong a hold of your mind that I wish to dissipate. Tell me, +therefore, whether you object to an immediate solemnisation of the +marriage. We have been unfortunate, and recent events have drawn us +from that everyday tranquillity befitting my years and infirmities. You +are younger; yet I do not suppose, possessed as you are of a competent +fortune, that an early marriage would at all interfere with any future +plans of honour and utility that you may have formed. Do not suppose, +however, that I wish to dictate happiness to you or that a delay on +your part would cause me any serious uneasiness. Interpret my words +with candour and answer me, I conjure you, with confidence and +sincerity.” + +I listened to my father in silence and remained for some time incapable +of offering any reply. I revolved rapidly in my mind a multitude of +thoughts and endeavoured to arrive at some conclusion. Alas! To me +the idea of an immediate union with my Elizabeth was one of horror and +dismay. I was bound by a solemn promise which I had not yet fulfilled +and dared not break, or if I did, what manifold miseries might not +impend over me and my devoted family! Could I enter into a festival +with this deadly weight yet hanging round my neck and bowing me to the +ground? I must perform my engagement and let the monster depart with +his mate before I allowed myself to enjoy the delight of a union from +which I expected peace. + +I remembered also the necessity imposed upon me of either journeying to +England or entering into a long correspondence with those philosophers +of that country whose knowledge and discoveries were of indispensable +use to me in my present undertaking. The latter method of obtaining +the desired intelligence was dilatory and unsatisfactory; besides, I +had an insurmountable aversion to the idea of engaging myself in my +loathsome task in my father’s house while in habits of familiar +intercourse with those I loved. I knew that a thousand fearful +accidents might occur, the slightest of which would disclose a tale to +thrill all connected with me with horror. I was aware also that I +should often lose all self-command, all capacity of hiding the +harrowing sensations that would possess me during the progress of my +unearthly occupation. I must absent myself from all I loved while thus +employed. Once commenced, it would quickly be achieved, and I might be +restored to my family in peace and happiness. My promise fulfilled, +the monster would depart for ever. Or (so my fond fancy imaged) some +accident might meanwhile occur to destroy him and put an end to my +slavery for ever. + +These feelings dictated my answer to my father. I expressed a wish to +visit England, but concealing the true reasons of this request, I +clothed my desires under a guise which excited no suspicion, while I +urged my desire with an earnestness that easily induced my father to +comply. After so long a period of an absorbing melancholy that +resembled madness in its intensity and effects, he was glad to find +that I was capable of taking pleasure in the idea of such a journey, +and he hoped that change of scene and varied amusement would, before my +return, have restored me entirely to myself. + +The duration of my absence was left to my own choice; a few months, or +at most a year, was the period contemplated. One paternal kind +precaution he had taken to ensure my having a companion. Without +previously communicating with me, he had, in concert with Elizabeth, +arranged that Clerval should join me at Strasburgh. This interfered +with the solitude I coveted for the prosecution of my task; yet at the +commencement of my journey the presence of my friend could in no way be +an impediment, and truly I rejoiced that thus I should be saved many +hours of lonely, maddening reflection. Nay, Henry might stand between +me and the intrusion of my foe. If I were alone, would he not at times +force his abhorred presence on me to remind me of my task or to +contemplate its progress? + +To England, therefore, I was bound, and it was understood that my union +with Elizabeth should take place immediately on my return. My father’s +age rendered him extremely averse to delay. For myself, there was one +reward I promised myself from my detested toils—one consolation for my +unparalleled sufferings; it was the prospect of that day when, +enfranchised from my miserable slavery, I might claim Elizabeth and +forget the past in my union with her. + +I now made arrangements for my journey, but one feeling haunted me +which filled me with fear and agitation. During my absence I should +leave my friends unconscious of the existence of their enemy and +unprotected from his attacks, exasperated as he might be by my +departure. But he had promised to follow me wherever I might go, and +would he not accompany me to England? This imagination was dreadful in +itself, but soothing inasmuch as it supposed the safety of my friends. +I was agonised with the idea of the possibility that the reverse of +this might happen. But through the whole period during which I was the +slave of my creature I allowed myself to be governed by the impulses of +the moment; and my present sensations strongly intimated that the fiend +would follow me and exempt my family from the danger of his +machinations. + +It was in the latter end of September that I again quitted my native +country. My journey had been my own suggestion, and Elizabeth +therefore acquiesced, but she was filled with disquiet at the idea of +my suffering, away from her, the inroads of misery and grief. It had +been her care which provided me a companion in Clerval—and yet a man +is blind to a thousand minute circumstances which call forth a woman’s +sedulous attention. She longed to bid me hasten my return; a thousand +conflicting emotions rendered her mute as she bade me a tearful, silent +farewell. + +I threw myself into the carriage that was to convey me away, hardly +knowing whither I was going, and careless of what was passing around. +I remembered only, and it was with a bitter anguish that I reflected on +it, to order that my chemical instruments should be packed to go with +me. Filled with dreary imaginations, I passed through many beautiful +and majestic scenes, but my eyes were fixed and unobserving. I could +only think of the bourne of my travels and the work which was to occupy +me whilst they endured. + +After some days spent in listless indolence, during which I traversed +many leagues, I arrived at Strasburgh, where I waited two days for +Clerval. He came. Alas, how great was the contrast between us! He +was alive to every new scene, joyful when he saw the beauties of the +setting sun, and more happy when he beheld it rise and recommence a new +day. He pointed out to me the shifting colours of the landscape and +the appearances of the sky. “This is what it is to live,” he cried; +“now I enjoy existence! But you, my dear Frankenstein, wherefore are +you desponding and sorrowful!” In truth, I was occupied by gloomy +thoughts and neither saw the descent of the evening star nor the golden +sunrise reflected in the Rhine. And you, my friend, would be far more +amused with the journal of Clerval, who observed the scenery with an +eye of feeling and delight, than in listening to my reflections. I, a +miserable wretch, haunted by a curse that shut up every avenue to +enjoyment. + +We had agreed to descend the Rhine in a boat from Strasburgh to +Rotterdam, whence we might take shipping for London. During this +voyage we passed many willowy islands and saw several beautiful towns. +We stayed a day at Mannheim, and on the fifth from our departure from +Strasburgh, arrived at Mainz. The course of the Rhine below Mainz +becomes much more picturesque. The river descends rapidly and winds +between hills, not high, but steep, and of beautiful forms. We saw +many ruined castles standing on the edges of precipices, surrounded by +black woods, high and inaccessible. This part of the Rhine, indeed, +presents a singularly variegated landscape. In one spot you view +rugged hills, ruined castles overlooking tremendous precipices, with +the dark Rhine rushing beneath; and on the sudden turn of a promontory, +flourishing vineyards with green sloping banks and a meandering river +and populous towns occupy the scene. + +We travelled at the time of the vintage and heard the song of the labourers +as we glided down the stream. Even I, depressed in mind, and my spirits +continually agitated by gloomy feelings, even I was pleased. I lay at the +bottom of the boat, and as I gazed on the cloudless blue sky, I seemed to +drink in a tranquillity to which I had long been a stranger. And if these +were my sensations, who can describe those of Henry? He felt as if he had +been transported to Fairy-land and enjoyed a happiness seldom tasted by +man. “I have seen,” he said, “the most beautiful scenes +of my own country; I have visited the lakes of Lucerne and Uri, where the +snowy mountains descend almost perpendicularly to the water, casting black +and impenetrable shades, which would cause a gloomy and mournful appearance +were it not for the most verdant islands that relieve the eye by their gay +appearance; I have seen this lake agitated by a tempest, when the wind tore +up whirlwinds of water and gave you an idea of what the water-spout must be +on the great ocean; and the waves dash with fury the base of the mountain, +where the priest and his mistress were overwhelmed by an avalanche and +where their dying voices are still said to be heard amid the pauses of the +nightly wind; I have seen the mountains of La Valais, and the Pays de Vaud; +but this country, Victor, pleases me more than all those wonders. The +mountains of Switzerland are more majestic and strange, but there is a +charm in the banks of this divine river that I never before saw equalled. +Look at that castle which overhangs yon precipice; and that also on the +island, almost concealed amongst the foliage of those lovely trees; and now +that group of labourers coming from among their vines; and that village +half hid in the recess of the mountain. Oh, surely the spirit that inhabits +and guards this place has a soul more in harmony with man than those who +pile the glacier or retire to the inaccessible peaks of the mountains of +our own country.” + +Clerval! Beloved friend! Even now it delights me to record your words and +to dwell on the praise of which you are so eminently deserving. He was a +being formed in the “very poetry of nature.” His wild and +enthusiastic imagination was chastened by the sensibility of his heart. His +soul overflowed with ardent affections, and his friendship was of that +devoted and wondrous nature that the worldly-minded teach us to look for only +in the imagination. But even human sympathies were not sufficient to +satisfy his eager mind. The scenery of external nature, which others regard +only with admiration, he loved with ardour:— + + ——The sounding cataract + Haunted him like a passion: the tall rock, + The mountain, and the deep and gloomy wood, + Their colours and their forms, were then to him + An appetite; a feeling, and a love, + That had no need of a remoter charm, + By thought supplied, or any interest + Unborrow’d from the eye. + + [Wordsworth’s “Tintern Abbey”.] + +And where does he now exist? Is this gentle and lovely being lost +for ever? Has this mind, so replete with ideas, imaginations fanciful +and magnificent, which formed a world, whose existence depended on the +life of its creator;—has this mind perished? Does it now only exist +in my memory? No, it is not thus; your form so divinely wrought, and +beaming with beauty, has decayed, but your spirit still visits and +consoles your unhappy friend. + +Pardon this gush of sorrow; these ineffectual words are but a slight +tribute to the unexampled worth of Henry, but they soothe my heart, +overflowing with the anguish which his remembrance creates. I will +proceed with my tale. + +Beyond Cologne we descended to the plains of Holland; and we resolved to +post the remainder of our way, for the wind was contrary and the stream of +the river was too gentle to aid us. + +Our journey here lost the interest arising from beautiful scenery, but we +arrived in a few days at Rotterdam, whence we proceeded by sea to England. +It was on a clear morning, in the latter days of December, that I first saw +the white cliffs of Britain. The banks of the Thames presented a new scene; +they were flat but fertile, and almost every town was marked by the +remembrance of some story. We saw Tilbury Fort and remembered the Spanish +Armada, Gravesend, Woolwich, and Greenwich—places which I had heard +of even in my country. + +At length we saw the numerous steeples of London, St. Paul’s towering +above all, and the Tower famed in English history. + + + + +Chapter 19 + + +London was our present point of rest; we determined to remain several +months in this wonderful and celebrated city. Clerval desired the +intercourse of the men of genius and talent who flourished at this +time, but this was with me a secondary object; I was principally +occupied with the means of obtaining the information necessary for the +completion of my promise and quickly availed myself of the letters of +introduction that I had brought with me, addressed to the most +distinguished natural philosophers. + +If this journey had taken place during my days of study and happiness, +it would have afforded me inexpressible pleasure. But a blight had +come over my existence, and I only visited these people for the sake of +the information they might give me on the subject in which my interest +was so terribly profound. Company was irksome to me; when alone, I +could fill my mind with the sights of heaven and earth; the voice of +Henry soothed me, and I could thus cheat myself into a transitory +peace. But busy, uninteresting, joyous faces brought back despair to +my heart. I saw an insurmountable barrier placed between me and my +fellow men; this barrier was sealed with the blood of William and +Justine, and to reflect on the events connected with those names filled +my soul with anguish. + +But in Clerval I saw the image of my former self; he was inquisitive +and anxious to gain experience and instruction. The difference of +manners which he observed was to him an inexhaustible source of +instruction and amusement. He was also pursuing an object he had long +had in view. His design was to visit India, in the belief that he had +in his knowledge of its various languages, and in the views he had +taken of its society, the means of materially assisting the progress of +European colonization and trade. In Britain only could he further the +execution of his plan. He was for ever busy, and the only check to his +enjoyments was my sorrowful and dejected mind. I tried to conceal this +as much as possible, that I might not debar him from the pleasures +natural to one who was entering on a new scene of life, undisturbed by +any care or bitter recollection. I often refused to accompany him, +alleging another engagement, that I might remain alone. I now also +began to collect the materials necessary for my new creation, and this +was to me like the torture of single drops of water continually falling +on the head. Every thought that was devoted to it was an extreme +anguish, and every word that I spoke in allusion to it caused my lips +to quiver, and my heart to palpitate. + +After passing some months in London, we received a letter from a person in +Scotland who had formerly been our visitor at Geneva. He mentioned the +beauties of his native country and asked us if those were not sufficient +allurements to induce us to prolong our journey as far north as Perth, +where he resided. Clerval eagerly desired to accept this invitation, and I, +although I abhorred society, wished to view again mountains and streams and +all the wondrous works with which Nature adorns her chosen dwelling-places. + +We had arrived in England at the beginning of October, and it was now +February. We accordingly determined to commence our journey towards the +north at the expiration of another month. In this expedition we did not +intend to follow the great road to Edinburgh, but to visit Windsor, Oxford, +Matlock, and the Cumberland lakes, resolving to arrive at the completion of +this tour about the end of July. I packed up my chemical instruments and +the materials I had collected, resolving to finish my labours in some +obscure nook in the northern highlands of Scotland. + +We quitted London on the 27th of March and remained a few days at +Windsor, rambling in its beautiful forest. This was a new scene to us +mountaineers; the majestic oaks, the quantity of game, and the herds of +stately deer were all novelties to us. + +From thence we proceeded to Oxford. As we entered this city, our minds +were filled with the remembrance of the events that had been transacted +there more than a century and a half before. It was here that Charles +I. had collected his forces. This city had remained faithful to him, +after the whole nation had forsaken his cause to join the standard of +Parliament and liberty. The memory of that unfortunate king and his +companions, the amiable Falkland, the insolent Goring, his queen, and +son, gave a peculiar interest to every part of the city which they +might be supposed to have inhabited. The spirit of elder days found a +dwelling here, and we delighted to trace its footsteps. If these +feelings had not found an imaginary gratification, the appearance of +the city had yet in itself sufficient beauty to obtain our admiration. +The colleges are ancient and picturesque; the streets are almost +magnificent; and the lovely Isis, which flows beside it through meadows +of exquisite verdure, is spread forth into a placid expanse of waters, +which reflects its majestic assemblage of towers, and spires, and +domes, embosomed among aged trees. + +I enjoyed this scene, and yet my enjoyment was embittered both by the +memory of the past and the anticipation of the future. I was formed +for peaceful happiness. During my youthful days discontent never +visited my mind, and if I was ever overcome by _ennui_, the sight of what +is beautiful in nature or the study of what is excellent and sublime in +the productions of man could always interest my heart and communicate +elasticity to my spirits. But I am a blasted tree; the bolt has +entered my soul; and I felt then that I should survive to exhibit what +I shall soon cease to be—a miserable spectacle of wrecked humanity, +pitiable to others and intolerable to myself. + +We passed a considerable period at Oxford, rambling among its environs +and endeavouring to identify every spot which might relate to the most +animating epoch of English history. Our little voyages of discovery +were often prolonged by the successive objects that presented +themselves. We visited the tomb of the illustrious Hampden and the +field on which that patriot fell. For a moment my soul was elevated +from its debasing and miserable fears to contemplate the divine ideas +of liberty and self-sacrifice of which these sights were the monuments +and the remembrancers. For an instant I dared to shake off my chains +and look around me with a free and lofty spirit, but the iron had eaten +into my flesh, and I sank again, trembling and hopeless, into my +miserable self. + +We left Oxford with regret and proceeded to Matlock, which was our next +place of rest. The country in the neighbourhood of this village +resembled, to a greater degree, the scenery of Switzerland; but +everything is on a lower scale, and the green hills want the crown of +distant white Alps which always attend on the piny mountains of my +native country. We visited the wondrous cave and the little cabinets +of natural history, where the curiosities are disposed in the same +manner as in the collections at Servox and Chamounix. The latter name +made me tremble when pronounced by Henry, and I hastened to quit +Matlock, with which that terrible scene was thus associated. + +From Derby, still journeying northwards, we passed two months in +Cumberland and Westmorland. I could now almost fancy myself among the +Swiss mountains. The little patches of snow which yet lingered on the +northern sides of the mountains, the lakes, and the dashing of the +rocky streams were all familiar and dear sights to me. Here also we +made some acquaintances, who almost contrived to cheat me into +happiness. The delight of Clerval was proportionably greater than +mine; his mind expanded in the company of men of talent, and he found +in his own nature greater capacities and resources than he could have +imagined himself to have possessed while he associated with his +inferiors. “I could pass my life here,” said he to me; “and among +these mountains I should scarcely regret Switzerland and the Rhine.” + +But he found that a traveller’s life is one that includes much pain +amidst its enjoyments. His feelings are for ever on the stretch; and +when he begins to sink into repose, he finds himself obliged to quit +that on which he rests in pleasure for something new, which again +engages his attention, and which also he forsakes for other novelties. + +We had scarcely visited the various lakes of Cumberland and Westmorland +and conceived an affection for some of the inhabitants when the period +of our appointment with our Scotch friend approached, and we left them +to travel on. For my own part I was not sorry. I had now neglected my +promise for some time, and I feared the effects of the dæmon’s +disappointment. He might remain in Switzerland and wreak his vengeance +on my relatives. This idea pursued me and tormented me at every moment +from which I might otherwise have snatched repose and peace. I waited +for my letters with feverish impatience; if they were delayed I was +miserable and overcome by a thousand fears; and when they arrived and I +saw the superscription of Elizabeth or my father, I hardly dared to +read and ascertain my fate. Sometimes I thought that the fiend +followed me and might expedite my remissness by murdering my companion. +When these thoughts possessed me, I would not quit Henry for a moment, +but followed him as his shadow, to protect him from the fancied rage of +his destroyer. I felt as if I had committed some great crime, the +consciousness of which haunted me. I was guiltless, but I had indeed +drawn down a horrible curse upon my head, as mortal as that of crime. + +I visited Edinburgh with languid eyes and mind; and yet that city might +have interested the most unfortunate being. Clerval did not like it so well +as Oxford, for the antiquity of the latter city was more pleasing to him. +But the beauty and regularity of the new town of Edinburgh, its romantic +castle and its environs, the most delightful in the world, Arthur’s +Seat, St. Bernard’s Well, and the Pentland Hills, compensated him for +the change and filled him with cheerfulness and admiration. But I was +impatient to arrive at the termination of my journey. + +We left Edinburgh in a week, passing through Coupar, St. Andrew’s, and +along the banks of the Tay, to Perth, where our friend expected us. +But I was in no mood to laugh and talk with strangers or enter into +their feelings or plans with the good humour expected from a guest; and +accordingly I told Clerval that I wished to make the tour of Scotland +alone. “Do you,” said I, “enjoy yourself, and let this be our +rendezvous. I may be absent a month or two; but do not interfere with +my motions, I entreat you; leave me to peace and solitude for a short +time; and when I return, I hope it will be with a lighter heart, more +congenial to your own temper.” + +Henry wished to dissuade me, but seeing me bent on this plan, ceased to +remonstrate. He entreated me to write often. “I had rather be with +you,” he said, “in your solitary rambles, than with these Scotch +people, whom I do not know; hasten, then, my dear friend, to return, +that I may again feel myself somewhat at home, which I cannot do in +your absence.” + +Having parted from my friend, I determined to visit some remote spot of +Scotland and finish my work in solitude. I did not doubt but that the +monster followed me and would discover himself to me when I should have +finished, that he might receive his companion. + +With this resolution I traversed the northern highlands and fixed on one of +the remotest of the Orkneys as the scene of my labours. It was a place +fitted for such a work, being hardly more than a rock whose high sides were +continually beaten upon by the waves. The soil was barren, scarcely +affording pasture for a few miserable cows, and oatmeal for its +inhabitants, which consisted of five persons, whose gaunt and scraggy limbs +gave tokens of their miserable fare. Vegetables and bread, when they +indulged in such luxuries, and even fresh water, was to be procured from +the mainland, which was about five miles distant. + +On the whole island there were but three miserable huts, and one of +these was vacant when I arrived. This I hired. It contained but two +rooms, and these exhibited all the squalidness of the most miserable +penury. The thatch had fallen in, the walls were unplastered, and the +door was off its hinges. I ordered it to be repaired, bought some +furniture, and took possession, an incident which would doubtless have +occasioned some surprise had not all the senses of the cottagers been +benumbed by want and squalid poverty. As it was, I lived ungazed at +and unmolested, hardly thanked for the pittance of food and clothes +which I gave, so much does suffering blunt even the coarsest sensations +of men. + +In this retreat I devoted the morning to labour; but in the evening, +when the weather permitted, I walked on the stony beach of the sea to +listen to the waves as they roared and dashed at my feet. It was a +monotonous yet ever-changing scene. I thought of Switzerland; it was +far different from this desolate and appalling landscape. Its hills +are covered with vines, and its cottages are scattered thickly in the +plains. Its fair lakes reflect a blue and gentle sky, and when +troubled by the winds, their tumult is but as the play of a lively +infant when compared to the roarings of the giant ocean. + +In this manner I distributed my occupations when I first arrived, but +as I proceeded in my labour, it became every day more horrible and +irksome to me. Sometimes I could not prevail on myself to enter my +laboratory for several days, and at other times I toiled day and night +in order to complete my work. It was, indeed, a filthy process in +which I was engaged. During my first experiment, a kind of +enthusiastic frenzy had blinded me to the horror of my employment; my +mind was intently fixed on the consummation of my labour, and my eyes +were shut to the horror of my proceedings. But now I went to it in +cold blood, and my heart often sickened at the work of my hands. + +Thus situated, employed in the most detestable occupation, immersed in +a solitude where nothing could for an instant call my attention from +the actual scene in which I was engaged, my spirits became unequal; I +grew restless and nervous. Every moment I feared to meet my +persecutor. Sometimes I sat with my eyes fixed on the ground, fearing +to raise them lest they should encounter the object which I so much +dreaded to behold. I feared to wander from the sight of my fellow +creatures lest when alone he should come to claim his companion. + +In the mean time I worked on, and my labour was already considerably +advanced. I looked towards its completion with a tremulous and eager +hope, which I dared not trust myself to question but which was +intermixed with obscure forebodings of evil that made my heart sicken +in my bosom. + + + + +Chapter 20 + + +I sat one evening in my laboratory; the sun had set, and the moon was just +rising from the sea; I had not sufficient light for my employment, and I +remained idle, in a pause of consideration of whether I should leave my +labour for the night or hasten its conclusion by an unremitting attention +to it. As I sat, a train of reflection occurred to me which led me to +consider the effects of what I was now doing. Three years before, I was +engaged in the same manner and had created a fiend whose unparalleled +barbarity had desolated my heart and filled it for ever with the bitterest +remorse. I was now about to form another being of whose dispositions I was +alike ignorant; she might become ten thousand times more malignant than her +mate and delight, for its own sake, in murder and wretchedness. He had +sworn to quit the neighbourhood of man and hide himself in deserts, but she +had not; and she, who in all probability was to become a thinking and +reasoning animal, might refuse to comply with a compact made before her +creation. They might even hate each other; the creature who already lived +loathed his own deformity, and might he not conceive a greater abhorrence +for it when it came before his eyes in the female form? She also might turn +with disgust from him to the superior beauty of man; she might quit him, +and he be again alone, exasperated by the fresh provocation of being +deserted by one of his own species. + +Even if they were to leave Europe and inhabit the deserts of the new world, +yet one of the first results of those sympathies for which the dæmon +thirsted would be children, and a race of devils would be propagated upon +the earth who might make the very existence of the species of man a +condition precarious and full of terror. Had I right, for my own benefit, +to inflict this curse upon everlasting generations? I had before been moved +by the sophisms of the being I had created; I had been struck senseless by +his fiendish threats; but now, for the first time, the wickedness of my +promise burst upon me; I shuddered to think that future ages might curse me +as their pest, whose selfishness had not hesitated to buy its own peace at +the price, perhaps, of the existence of the whole human race. + +I trembled and my heart failed within me, when, on looking up, I saw by +the light of the moon the dæmon at the casement. A ghastly grin +wrinkled his lips as he gazed on me, where I sat fulfilling the task +which he had allotted to me. Yes, he had followed me in my travels; he +had loitered in forests, hid himself in caves, or taken refuge in wide +and desert heaths; and he now came to mark my progress and claim the +fulfilment of my promise. + +As I looked on him, his countenance expressed the utmost extent of +malice and treachery. I thought with a sensation of madness on my +promise of creating another like to him, and trembling with passion, +tore to pieces the thing on which I was engaged. The wretch saw me +destroy the creature on whose future existence he depended for +happiness, and with a howl of devilish despair and revenge, withdrew. + +I left the room, and locking the door, made a solemn vow in my own +heart never to resume my labours; and then, with trembling steps, I +sought my own apartment. I was alone; none were near me to dissipate +the gloom and relieve me from the sickening oppression of the most +terrible reveries. + +Several hours passed, and I remained near my window gazing on the sea; +it was almost motionless, for the winds were hushed, and all nature +reposed under the eye of the quiet moon. A few fishing vessels alone +specked the water, and now and then the gentle breeze wafted the sound +of voices as the fishermen called to one another. I felt the silence, +although I was hardly conscious of its extreme profundity, until my ear +was suddenly arrested by the paddling of oars near the shore, and a +person landed close to my house. + +In a few minutes after, I heard the creaking of my door, as if some one +endeavoured to open it softly. I trembled from head to foot; I felt a +presentiment of who it was and wished to rouse one of the peasants who +dwelt in a cottage not far from mine; but I was overcome by the sensation +of helplessness, so often felt in frightful dreams, when you in vain +endeavour to fly from an impending danger, and was rooted to the spot. + +Presently I heard the sound of footsteps along the passage; the door +opened, and the wretch whom I dreaded appeared. Shutting the door, he +approached me and said in a smothered voice, + +“You have destroyed the work which you began; what is it that you +intend? Do you dare to break your promise? I have endured toil and misery; +I left Switzerland with you; I crept along the shores of the Rhine, among +its willow islands and over the summits of its hills. I have dwelt many +months in the heaths of England and among the deserts of Scotland. I have +endured incalculable fatigue, and cold, and hunger; do you dare destroy my +hopes?” + +“Begone! I do break my promise; never will I create another like +yourself, equal in deformity and wickedness.” + +“Slave, I before reasoned with you, but you have proved yourself +unworthy of my condescension. Remember that I have power; you believe +yourself miserable, but I can make you so wretched that the light of +day will be hateful to you. You are my creator, but I am your master; +obey!” + +“The hour of my irresolution is past, and the period of your power is +arrived. Your threats cannot move me to do an act of wickedness; but +they confirm me in a determination of not creating you a companion in +vice. Shall I, in cool blood, set loose upon the earth a dæmon whose +delight is in death and wretchedness? Begone! I am firm, and your +words will only exasperate my rage.” + +The monster saw my determination in my face and gnashed his teeth in the +impotence of anger. “Shall each man,” cried he, “find a +wife for his bosom, and each beast have his mate, and I be alone? I had +feelings of affection, and they were requited by detestation and scorn. +Man! You may hate, but beware! Your hours will pass in dread and misery, +and soon the bolt will fall which must ravish from you your happiness for +ever. Are you to be happy while I grovel in the intensity of my +wretchedness? You can blast my other passions, but revenge +remains—revenge, henceforth dearer than light or food! I may die, but +first you, my tyrant and tormentor, shall curse the sun that gazes on your +misery. Beware, for I am fearless and therefore powerful. I will watch with +the wiliness of a snake, that I may sting with its venom. Man, you shall +repent of the injuries you inflict.” + +“Devil, cease; and do not poison the air with these sounds of malice. +I have declared my resolution to you, and I am no coward to bend +beneath words. Leave me; I am inexorable.” + +“It is well. I go; but remember, I shall be with you on your +wedding-night.” + +I started forward and exclaimed, “Villain! Before you sign my +death-warrant, be sure that you are yourself safe.” + +I would have seized him, but he eluded me and quitted the house with +precipitation. In a few moments I saw him in his boat, which shot +across the waters with an arrowy swiftness and was soon lost amidst the +waves. + +All was again silent, but his words rang in my ears. I burned with rage to +pursue the murderer of my peace and precipitate him into the ocean. I +walked up and down my room hastily and perturbed, while my imagination +conjured up a thousand images to torment and sting me. Why had I not +followed him and closed with him in mortal strife? But I had suffered him +to depart, and he had directed his course towards the mainland. I shuddered +to think who might be the next victim sacrificed to his insatiate revenge. +And then I thought again of his words—“_I will be with you on +your wedding-night._” That, then, was the period fixed for the +fulfilment of my destiny. In that hour I should die and at once satisfy and +extinguish his malice. The prospect did not move me to fear; yet when I +thought of my beloved Elizabeth, of her tears and endless sorrow, when she +should find her lover so barbarously snatched from her, tears, the first I +had shed for many months, streamed from my eyes, and I resolved not to fall +before my enemy without a bitter struggle. + +The night passed away, and the sun rose from the ocean; my feelings became +calmer, if it may be called calmness when the violence of rage sinks into +the depths of despair. I left the house, the horrid scene of the last +night’s contention, and walked on the beach of the sea, which I +almost regarded as an insuperable barrier between me and my fellow +creatures; nay, a wish that such should prove the fact stole across me. I +desired that I might pass my life on that barren rock, wearily, it is true, +but uninterrupted by any sudden shock of misery. If I returned, it was to +be sacrificed or to see those whom I most loved die under the grasp of a +dæmon whom I had myself created. + +I walked about the isle like a restless spectre, separated from all it +loved and miserable in the separation. When it became noon, and the +sun rose higher, I lay down on the grass and was overpowered by a deep +sleep. I had been awake the whole of the preceding night, my nerves +were agitated, and my eyes inflamed by watching and misery. The sleep +into which I now sank refreshed me; and when I awoke, I again felt as +if I belonged to a race of human beings like myself, and I began to +reflect upon what had passed with greater composure; yet still the +words of the fiend rang in my ears like a death-knell; they appeared +like a dream, yet distinct and oppressive as a reality. + +The sun had far descended, and I still sat on the shore, satisfying my +appetite, which had become ravenous, with an oaten cake, when I saw a +fishing-boat land close to me, and one of the men brought me a packet; +it contained letters from Geneva, and one from Clerval entreating me to +join him. He said that he was wearing away his time fruitlessly where +he was, that letters from the friends he had formed in London desired +his return to complete the negotiation they had entered into for his +Indian enterprise. He could not any longer delay his departure; but as +his journey to London might be followed, even sooner than he now +conjectured, by his longer voyage, he entreated me to bestow as much of +my society on him as I could spare. He besought me, therefore, to +leave my solitary isle and to meet him at Perth, that we might proceed +southwards together. This letter in a degree recalled me to life, and +I determined to quit my island at the expiration of two days. + +Yet, before I departed, there was a task to perform, on which I shuddered +to reflect; I must pack up my chemical instruments, and for that purpose I +must enter the room which had been the scene of my odious work, and I must +handle those utensils the sight of which was sickening to me. The next +morning, at daybreak, I summoned sufficient courage and unlocked the door +of my laboratory. The remains of the half-finished creature, whom I had +destroyed, lay scattered on the floor, and I almost felt as if I had +mangled the living flesh of a human being. I paused to collect myself and +then entered the chamber. With trembling hand I conveyed the instruments +out of the room, but I reflected that I ought not to leave the relics of my +work to excite the horror and suspicion of the peasants; and I accordingly +put them into a basket, with a great quantity of stones, and laying them +up, determined to throw them into the sea that very night; and in the +meantime I sat upon the beach, employed in cleaning and arranging my +chemical apparatus. + +Nothing could be more complete than the alteration that had taken place +in my feelings since the night of the appearance of the dæmon. I had +before regarded my promise with a gloomy despair as a thing that, with +whatever consequences, must be fulfilled; but I now felt as if a film +had been taken from before my eyes and that I for the first time saw +clearly. The idea of renewing my labours did not for one instant occur +to me; the threat I had heard weighed on my thoughts, but I did not +reflect that a voluntary act of mine could avert it. I had resolved in +my own mind that to create another like the fiend I had first made +would be an act of the basest and most atrocious selfishness, and I +banished from my mind every thought that could lead to a different +conclusion. + +Between two and three in the morning the moon rose; and I then, putting my +basket aboard a little skiff, sailed out about four miles from the shore. +The scene was perfectly solitary; a few boats were returning towards land, +but I sailed away from them. I felt as if I was about the commission of a +dreadful crime and avoided with shuddering anxiety any encounter with my +fellow creatures. At one time the moon, which had before been clear, was +suddenly overspread by a thick cloud, and I took advantage of the moment of +darkness and cast my basket into the sea; I listened to the gurgling sound +as it sank and then sailed away from the spot. The sky became clouded, but +the air was pure, although chilled by the northeast breeze that was then +rising. But it refreshed me and filled me with such agreeable sensations +that I resolved to prolong my stay on the water, and fixing the rudder in a +direct position, stretched myself at the bottom of the boat. Clouds hid the +moon, everything was obscure, and I heard only the sound of the boat as its +keel cut through the waves; the murmur lulled me, and in a short time I +slept soundly. + +I do not know how long I remained in this situation, but when I awoke I +found that the sun had already mounted considerably. The wind was high, and +the waves continually threatened the safety of my little skiff. I found +that the wind was northeast and must have driven me far from the coast from +which I had embarked. I endeavoured to change my course but quickly found +that if I again made the attempt the boat would be instantly filled with +water. Thus situated, my only resource was to drive before the wind. I +confess that I felt a few sensations of terror. I had no compass with me +and was so slenderly acquainted with the geography of this part of the +world that the sun was of little benefit to me. I might be driven into the +wide Atlantic and feel all the tortures of starvation or be swallowed up in +the immeasurable waters that roared and buffeted around me. I had already +been out many hours and felt the torment of a burning thirst, a prelude to +my other sufferings. I looked on the heavens, which were covered by clouds +that flew before the wind, only to be replaced by others; I looked upon the +sea; it was to be my grave. “Fiend,” I exclaimed, “your +task is already fulfilled!” I thought of Elizabeth, of my father, and +of Clerval—all left behind, on whom the monster might satisfy his +sanguinary and merciless passions. This idea plunged me into a reverie so +despairing and frightful that even now, when the scene is on the point of +closing before me for ever, I shudder to reflect on it. + +Some hours passed thus; but by degrees, as the sun declined towards the +horizon, the wind died away into a gentle breeze and the sea became +free from breakers. But these gave place to a heavy swell; I felt sick +and hardly able to hold the rudder, when suddenly I saw a line of high +land towards the south. + +Almost spent, as I was, by fatigue and the dreadful suspense I endured +for several hours, this sudden certainty of life rushed like a flood of +warm joy to my heart, and tears gushed from my eyes. + +How mutable are our feelings, and how strange is that clinging love we have +of life even in the excess of misery! I constructed another sail with a +part of my dress and eagerly steered my course towards the land. It had a +wild and rocky appearance, but as I approached nearer I easily perceived +the traces of cultivation. I saw vessels near the shore and found myself +suddenly transported back to the neighbourhood of civilised man. I +carefully traced the windings of the land and hailed a steeple which I at +length saw issuing from behind a small promontory. As I was in a state of +extreme debility, I resolved to sail directly towards the town, as a place +where I could most easily procure nourishment. Fortunately I had money with +me. As I turned the promontory I perceived a small neat town and a good +harbour, which I entered, my heart bounding with joy at my unexpected +escape. + +As I was occupied in fixing the boat and arranging the sails, several +people crowded towards the spot. They seemed much surprised at my +appearance, but instead of offering me any assistance, whispered +together with gestures that at any other time might have produced in me +a slight sensation of alarm. As it was, I merely remarked that they +spoke English, and I therefore addressed them in that language. “My +good friends,” said I, “will you be so kind as to tell me the name of +this town and inform me where I am?” + +“You will know that soon enough,” replied a man with a hoarse voice. +“Maybe you are come to a place that will not prove much to your taste, +but you will not be consulted as to your quarters, I promise you.” + +I was exceedingly surprised on receiving so rude an answer from a +stranger, and I was also disconcerted on perceiving the frowning and +angry countenances of his companions. “Why do you answer me so +roughly?” I replied. “Surely it is not the custom of Englishmen to +receive strangers so inhospitably.” + +“I do not know,” said the man, “what the custom of the +English may be, but it is the custom of the Irish to hate villains.” + +While this strange dialogue continued, I perceived the crowd rapidly +increase. Their faces expressed a mixture of curiosity and anger, which +annoyed and in some degree alarmed me. I inquired the way to the inn, but +no one replied. I then moved forward, and a murmuring sound arose from the +crowd as they followed and surrounded me, when an ill-looking man +approaching tapped me on the shoulder and said, “Come, sir, you must +follow me to Mr. Kirwin’s to give an account of yourself.” + +“Who is Mr. Kirwin? Why am I to give an account of myself? Is not +this a free country?” + +“Ay, sir, free enough for honest folks. Mr. Kirwin is a magistrate, +and you are to give an account of the death of a gentleman who was +found murdered here last night.” + +This answer startled me, but I presently recovered myself. I was innocent; +that could easily be proved; accordingly I followed my conductor in silence +and was led to one of the best houses in the town. I was ready to sink from +fatigue and hunger, but being surrounded by a crowd, I thought it politic +to rouse all my strength, that no physical debility might be construed into +apprehension or conscious guilt. Little did I then expect the calamity that +was in a few moments to overwhelm me and extinguish in horror and despair +all fear of ignominy or death. + +I must pause here, for it requires all my fortitude to recall the memory of +the frightful events which I am about to relate, in proper detail, to my +recollection. + + + + +Chapter 21 + + +I was soon introduced into the presence of the magistrate, an old +benevolent man with calm and mild manners. He looked upon me, however, +with some degree of severity, and then, turning towards my conductors, +he asked who appeared as witnesses on this occasion. + +About half a dozen men came forward; and, one being selected by the +magistrate, he deposed that he had been out fishing the night before with +his son and brother-in-law, Daniel Nugent, when, about ten o’clock, +they observed a strong northerly blast rising, and they accordingly put in +for port. It was a very dark night, as the moon had not yet risen; they did +not land at the harbour, but, as they had been accustomed, at a creek about +two miles below. He walked on first, carrying a part of the fishing tackle, +and his companions followed him at some distance. As he was proceeding +along the sands, he struck his foot against something and fell at his +length on the ground. His companions came up to assist him, and by the +light of their lantern they found that he had fallen on the body of a man, +who was to all appearance dead. Their first supposition was that it was the +corpse of some person who had been drowned and was thrown on shore by the +waves, but on examination they found that the clothes were not wet and even +that the body was not then cold. They instantly carried it to the cottage +of an old woman near the spot and endeavoured, but in vain, to restore it +to life. It appeared to be a handsome young man, about five and twenty +years of age. He had apparently been strangled, for there was no sign of +any violence except the black mark of fingers on his neck. + +The first part of this deposition did not in the least interest me, but +when the mark of the fingers was mentioned I remembered the murder of +my brother and felt myself extremely agitated; my limbs trembled, and a +mist came over my eyes, which obliged me to lean on a chair for +support. The magistrate observed me with a keen eye and of course drew +an unfavourable augury from my manner. + +The son confirmed his father’s account, but when Daniel Nugent was +called he swore positively that just before the fall of his companion, he +saw a boat, with a single man in it, at a short distance from the shore; +and as far as he could judge by the light of a few stars, it was the same +boat in which I had just landed. + +A woman deposed that she lived near the beach and was standing at the door +of her cottage, waiting for the return of the fishermen, about an hour +before she heard of the discovery of the body, when she saw a boat with +only one man in it push off from that part of the shore where the corpse +was afterwards found. + +Another woman confirmed the account of the fishermen having brought the +body into her house; it was not cold. They put it into a bed and +rubbed it, and Daniel went to the town for an apothecary, but life was +quite gone. + +Several other men were examined concerning my landing, and they agreed +that, with the strong north wind that had arisen during the night, it +was very probable that I had beaten about for many hours and had been +obliged to return nearly to the same spot from which I had departed. +Besides, they observed that it appeared that I had brought the body +from another place, and it was likely that as I did not appear to know +the shore, I might have put into the harbour ignorant of the distance +of the town of —— from the place where I had deposited the corpse. + +Mr. Kirwin, on hearing this evidence, desired that I should be taken into +the room where the body lay for interment, that it might be observed what +effect the sight of it would produce upon me. This idea was probably +suggested by the extreme agitation I had exhibited when the mode of the +murder had been described. I was accordingly conducted, by the magistrate +and several other persons, to the inn. I could not help being struck by the +strange coincidences that had taken place during this eventful night; but, +knowing that I had been conversing with several persons in the island I had +inhabited about the time that the body had been found, I was perfectly +tranquil as to the consequences of the affair. + +I entered the room where the corpse lay and was led up to the coffin. How +can I describe my sensations on beholding it? I feel yet parched with +horror, nor can I reflect on that terrible moment without shuddering and +agony. The examination, the presence of the magistrate and witnesses, +passed like a dream from my memory when I saw the lifeless form of Henry +Clerval stretched before me. I gasped for breath, and throwing myself on +the body, I exclaimed, “Have my murderous machinations deprived you +also, my dearest Henry, of life? Two I have already destroyed; other +victims await their destiny; but you, Clerval, my friend, my +benefactor—” + +The human frame could no longer support the agonies that I endured, and +I was carried out of the room in strong convulsions. + +A fever succeeded to this. I lay for two months on the point of death; my +ravings, as I afterwards heard, were frightful; I called myself the +murderer of William, of Justine, and of Clerval. Sometimes I entreated my +attendants to assist me in the destruction of the fiend by whom I was +tormented; and at others I felt the fingers of the monster already grasping +my neck, and screamed aloud with agony and terror. Fortunately, as I spoke +my native language, Mr. Kirwin alone understood me; but my gestures and +bitter cries were sufficient to affright the other witnesses. + +Why did I not die? More miserable than man ever was before, why did I not +sink into forgetfulness and rest? Death snatches away many blooming +children, the only hopes of their doting parents; how many brides and +youthful lovers have been one day in the bloom of health and hope, and the +next a prey for worms and the decay of the tomb! Of what materials was I +made that I could thus resist so many shocks, which, like the turning of +the wheel, continually renewed the torture? + +But I was doomed to live and in two months found myself as awaking from +a dream, in a prison, stretched on a wretched bed, surrounded by +gaolers, turnkeys, bolts, and all the miserable apparatus of a dungeon. +It was morning, I remember, when I thus awoke to understanding; I had +forgotten the particulars of what had happened and only felt as if some +great misfortune had suddenly overwhelmed me; but when I looked around +and saw the barred windows and the squalidness of the room in which I +was, all flashed across my memory and I groaned bitterly. + +This sound disturbed an old woman who was sleeping in a chair beside +me. She was a hired nurse, the wife of one of the turnkeys, and her +countenance expressed all those bad qualities which often characterise +that class. The lines of her face were hard and rude, like that of +persons accustomed to see without sympathising in sights of misery. Her +tone expressed her entire indifference; she addressed me in English, +and the voice struck me as one that I had heard during my sufferings. + +“Are you better now, sir?” said she. + +I replied in the same language, with a feeble voice, “I believe I am; +but if it be all true, if indeed I did not dream, I am sorry that I am +still alive to feel this misery and horror.” + +“For that matter,” replied the old woman, “if you mean about the +gentleman you murdered, I believe that it were better for you if you +were dead, for I fancy it will go hard with you! However, that’s none +of my business; I am sent to nurse you and get you well; I do my duty +with a safe conscience; it were well if everybody did the same.” + +I turned with loathing from the woman who could utter so unfeeling a +speech to a person just saved, on the very edge of death; but I felt +languid and unable to reflect on all that had passed. The whole series +of my life appeared to me as a dream; I sometimes doubted if indeed it +were all true, for it never presented itself to my mind with the force +of reality. + +As the images that floated before me became more distinct, I grew +feverish; a darkness pressed around me; no one was near me who soothed +me with the gentle voice of love; no dear hand supported me. The +physician came and prescribed medicines, and the old woman prepared +them for me; but utter carelessness was visible in the first, and the +expression of brutality was strongly marked in the visage of the +second. Who could be interested in the fate of a murderer but the +hangman who would gain his fee? + +These were my first reflections, but I soon learned that Mr. Kirwin had +shown me extreme kindness. He had caused the best room in the prison +to be prepared for me (wretched indeed was the best); and it was he who +had provided a physician and a nurse. It is true, he seldom came to +see me, for although he ardently desired to relieve the sufferings of +every human creature, he did not wish to be present at the agonies and +miserable ravings of a murderer. He came, therefore, sometimes to see +that I was not neglected, but his visits were short and with long +intervals. + +One day, while I was gradually recovering, I was seated in a chair, my eyes +half open and my cheeks livid like those in death. I was overcome by gloom +and misery and often reflected I had better seek death than desire to +remain in a world which to me was replete with wretchedness. At one time I +considered whether I should not declare myself guilty and suffer the +penalty of the law, less innocent than poor Justine had been. Such were my +thoughts when the door of my apartment was opened and Mr. Kirwin entered. +His countenance expressed sympathy and compassion; he drew a chair close to +mine and addressed me in French, + +“I fear that this place is very shocking to you; can I do anything to +make you more comfortable?” + +“I thank you, but all that you mention is nothing to me; on the whole +earth there is no comfort which I am capable of receiving.” + +“I know that the sympathy of a stranger can be but of little relief to +one borne down as you are by so strange a misfortune. But you will, I +hope, soon quit this melancholy abode, for doubtless evidence can +easily be brought to free you from the criminal charge.” + +“That is my least concern; I am, by a course of strange events, become +the most miserable of mortals. Persecuted and tortured as I am and +have been, can death be any evil to me?” + +“Nothing indeed could be more unfortunate and agonising than the +strange chances that have lately occurred. You were thrown, by some +surprising accident, on this shore, renowned for its hospitality, +seized immediately, and charged with murder. The first sight that was +presented to your eyes was the body of your friend, murdered in so +unaccountable a manner and placed, as it were, by some fiend across +your path.” + +As Mr. Kirwin said this, notwithstanding the agitation I endured on +this retrospect of my sufferings, I also felt considerable surprise at +the knowledge he seemed to possess concerning me. I suppose some +astonishment was exhibited in my countenance, for Mr. Kirwin hastened +to say, + +“Immediately upon your being taken ill, all the papers that were on +your person were brought me, and I examined them that I might discover some +trace by which I could send to your relations an account of your misfortune +and illness. I found several letters, and, among others, one which I +discovered from its commencement to be from your father. I instantly wrote +to Geneva; nearly two months have elapsed since the departure of my letter. +But you are ill; even now you tremble; you are unfit for agitation of any +kind.” + +“This suspense is a thousand times worse than the most horrible event; +tell me what new scene of death has been acted, and whose murder I am +now to lament?” + +“Your family is perfectly well,” said Mr. Kirwin with +gentleness; “and someone, a friend, is come to visit you.” + +I know not by what chain of thought the idea presented itself, but it +instantly darted into my mind that the murderer had come to mock at my +misery and taunt me with the death of Clerval, as a new incitement for +me to comply with his hellish desires. I put my hand before my eyes, +and cried out in agony, + +“Oh! Take him away! I cannot see him; for God’s sake, do not +let him enter!” + +Mr. Kirwin regarded me with a troubled countenance. He could not help +regarding my exclamation as a presumption of my guilt and said in +rather a severe tone, + +“I should have thought, young man, that the presence of your father +would have been welcome instead of inspiring such violent repugnance.” + +“My father!” cried I, while every feature and every muscle was relaxed +from anguish to pleasure. “Is my father indeed come? How kind, how +very kind! But where is he, why does he not hasten to me?” + +My change of manner surprised and pleased the magistrate; perhaps he +thought that my former exclamation was a momentary return of delirium, +and now he instantly resumed his former benevolence. He rose and +quitted the room with my nurse, and in a moment my father entered it. + +Nothing, at this moment, could have given me greater pleasure than the +arrival of my father. I stretched out my hand to him and cried, + +“Are you then safe—and Elizabeth—and Ernest?” + +My father calmed me with assurances of their welfare and endeavoured, by +dwelling on these subjects so interesting to my heart, to raise my +desponding spirits; but he soon felt that a prison cannot be the abode of +cheerfulness. “What a place is this that you inhabit, my son!” +said he, looking mournfully at the barred windows and wretched appearance +of the room. “You travelled to seek happiness, but a fatality seems +to pursue you. And poor Clerval—” + +The name of my unfortunate and murdered friend was an agitation too +great to be endured in my weak state; I shed tears. + +“Alas! Yes, my father,” replied I; “some destiny of the +most horrible kind hangs over me, and I must live to fulfil it, or surely I +should have died on the coffin of Henry.” + +We were not allowed to converse for any length of time, for the +precarious state of my health rendered every precaution necessary that +could ensure tranquillity. Mr. Kirwin came in and insisted that my +strength should not be exhausted by too much exertion. But the +appearance of my father was to me like that of my good angel, and I +gradually recovered my health. + +As my sickness quitted me, I was absorbed by a gloomy and black +melancholy that nothing could dissipate. The image of Clerval was +for ever before me, ghastly and murdered. More than once the agitation +into which these reflections threw me made my friends dread a dangerous +relapse. Alas! Why did they preserve so miserable and detested a +life? It was surely that I might fulfil my destiny, which is now +drawing to a close. Soon, oh, very soon, will death extinguish these +throbbings and relieve me from the mighty weight of anguish that bears +me to the dust; and, in executing the award of justice, I shall also +sink to rest. Then the appearance of death was distant, although the +wish was ever present to my thoughts; and I often sat for hours +motionless and speechless, wishing for some mighty revolution that +might bury me and my destroyer in its ruins. + +The season of the assizes approached. I had already been three months +in prison, and although I was still weak and in continual danger of a +relapse, I was obliged to travel nearly a hundred miles to the country +town where the court was held. Mr. Kirwin charged himself with every +care of collecting witnesses and arranging my defence. I was spared +the disgrace of appearing publicly as a criminal, as the case was not +brought before the court that decides on life and death. The grand +jury rejected the bill, on its being proved that I was on the Orkney +Islands at the hour the body of my friend was found; and a fortnight +after my removal I was liberated from prison. + +My father was enraptured on finding me freed from the vexations of a +criminal charge, that I was again allowed to breathe the fresh +atmosphere and permitted to return to my native country. I did not +participate in these feelings, for to me the walls of a dungeon or a +palace were alike hateful. The cup of life was poisoned for ever, and +although the sun shone upon me, as upon the happy and gay of heart, I +saw around me nothing but a dense and frightful darkness, penetrated by +no light but the glimmer of two eyes that glared upon me. Sometimes +they were the expressive eyes of Henry, languishing in death, the dark +orbs nearly covered by the lids and the long black lashes that fringed +them; sometimes it was the watery, clouded eyes of the monster, as I +first saw them in my chamber at Ingolstadt. + +My father tried to awaken in me the feelings of affection. He talked +of Geneva, which I should soon visit, of Elizabeth and Ernest; but +these words only drew deep groans from me. Sometimes, indeed, I felt a +wish for happiness and thought with melancholy delight of my beloved +cousin or longed, with a devouring _maladie du pays_, to see once more +the blue lake and rapid Rhone, that had been so dear to me in early +childhood; but my general state of feeling was a torpor in which a +prison was as welcome a residence as the divinest scene in nature; and +these fits were seldom interrupted but by paroxysms of anguish and +despair. At these moments I often endeavoured to put an end to the +existence I loathed, and it required unceasing attendance and vigilance +to restrain me from committing some dreadful act of violence. + +Yet one duty remained to me, the recollection of which finally +triumphed over my selfish despair. It was necessary that I should +return without delay to Geneva, there to watch over the lives of those +I so fondly loved and to lie in wait for the murderer, that if any +chance led me to the place of his concealment, or if he dared again to +blast me by his presence, I might, with unfailing aim, put an end to +the existence of the monstrous image which I had endued with the +mockery of a soul still more monstrous. My father still desired to +delay our departure, fearful that I could not sustain the fatigues of a +journey, for I was a shattered wreck—the shadow of a human being. My +strength was gone. I was a mere skeleton, and fever night and day +preyed upon my wasted frame. + +Still, as I urged our leaving Ireland with such inquietude and impatience, +my father thought it best to yield. We took our passage on board a vessel +bound for Havre-de-Grace and sailed with a fair wind from the Irish shores. +It was midnight. I lay on the deck looking at the stars and listening to +the dashing of the waves. I hailed the darkness that shut Ireland from my +sight, and my pulse beat with a feverish joy when I reflected that I should +soon see Geneva. The past appeared to me in the light of a frightful dream; +yet the vessel in which I was, the wind that blew me from the detested +shore of Ireland, and the sea which surrounded me, told me too forcibly +that I was deceived by no vision and that Clerval, my friend and dearest +companion, had fallen a victim to me and the monster of my creation. I +repassed, in my memory, my whole life; my quiet happiness while residing +with my family in Geneva, the death of my mother, and my departure for +Ingolstadt. I remembered, shuddering, the mad enthusiasm that hurried me on +to the creation of my hideous enemy, and I called to mind the night in +which he first lived. I was unable to pursue the train of thought; a +thousand feelings pressed upon me, and I wept bitterly. + +Ever since my recovery from the fever, I had been in the custom of taking +every night a small quantity of laudanum, for it was by means of this drug +only that I was enabled to gain the rest necessary for the preservation of +life. Oppressed by the recollection of my various misfortunes, I now +swallowed double my usual quantity and soon slept profoundly. But sleep did +not afford me respite from thought and misery; my dreams presented a +thousand objects that scared me. Towards morning I was possessed by a kind +of nightmare; I felt the fiend’s grasp in my neck and could not free +myself from it; groans and cries rang in my ears. My father, who was +watching over me, perceiving my restlessness, awoke me; the dashing waves +were around, the cloudy sky above, the fiend was not here: a sense of +security, a feeling that a truce was established between the present hour +and the irresistible, disastrous future imparted to me a kind of calm +forgetfulness, of which the human mind is by its structure peculiarly +susceptible. + + + + +Chapter 22 + + +The voyage came to an end. We landed, and proceeded to Paris. I soon +found that I had overtaxed my strength and that I must repose before I +could continue my journey. My father’s care and attentions were +indefatigable, but he did not know the origin of my sufferings and +sought erroneous methods to remedy the incurable ill. He wished me to +seek amusement in society. I abhorred the face of man. Oh, not +abhorred! They were my brethren, my fellow beings, and I felt +attracted even to the most repulsive among them, as to creatures of an +angelic nature and celestial mechanism. But I felt that I had no right +to share their intercourse. I had unchained an enemy among them whose +joy it was to shed their blood and to revel in their groans. How they +would, each and all, abhor me and hunt me from the world, did they know +my unhallowed acts and the crimes which had their source in me! + +My father yielded at length to my desire to avoid society and strove by +various arguments to banish my despair. Sometimes he thought that I +felt deeply the degradation of being obliged to answer a charge of +murder, and he endeavoured to prove to me the futility of pride. + +“Alas! My father,” said I, “how little do you know me. +Human beings, their feelings and passions, would indeed be degraded if such +a wretch as I felt pride. Justine, poor unhappy Justine, was as innocent +as I, and she suffered the same charge; she died for it; and I am the cause +of this—I murdered her. William, Justine, and Henry—they all +died by my hands.” + +My father had often, during my imprisonment, heard me make the same +assertion; when I thus accused myself, he sometimes seemed to desire an +explanation, and at others he appeared to consider it as the offspring of +delirium, and that, during my illness, some idea of this kind had presented +itself to my imagination, the remembrance of which I preserved in my +convalescence. I avoided explanation and maintained a continual silence +concerning the wretch I had created. I had a persuasion that I should be +supposed mad, and this in itself would for ever have chained my tongue. But, +besides, I could not bring myself to disclose a secret which would fill my +hearer with consternation and make fear and unnatural horror the inmates of +his breast. I checked, therefore, my impatient thirst for sympathy and was +silent when I would have given the world to have confided the fatal secret. +Yet, still, words like those I have recorded would burst uncontrollably +from me. I could offer no explanation of them, but their truth in part +relieved the burden of my mysterious woe. + +Upon this occasion my father said, with an expression of unbounded wonder, +“My dearest Victor, what infatuation is this? My dear son, I entreat +you never to make such an assertion again.” + +“I am not mad,” I cried energetically; “the sun and the heavens, who +have viewed my operations, can bear witness of my truth. I am the +assassin of those most innocent victims; they died by my machinations. +A thousand times would I have shed my own blood, drop by drop, to have +saved their lives; but I could not, my father, indeed I could not +sacrifice the whole human race.” + +The conclusion of this speech convinced my father that my ideas were +deranged, and he instantly changed the subject of our conversation and +endeavoured to alter the course of my thoughts. He wished as much as +possible to obliterate the memory of the scenes that had taken place in +Ireland and never alluded to them or suffered me to speak of my +misfortunes. + +As time passed away I became more calm; misery had her dwelling in my +heart, but I no longer talked in the same incoherent manner of my own +crimes; sufficient for me was the consciousness of them. By the utmost +self-violence I curbed the imperious voice of wretchedness, which +sometimes desired to declare itself to the whole world, and my manners +were calmer and more composed than they had ever been since my journey +to the sea of ice. + +A few days before we left Paris on our way to Switzerland, I received the +following letter from Elizabeth: + +“My dear Friend, + +“It gave me the greatest pleasure to receive a letter from my uncle +dated at Paris; you are no longer at a formidable distance, and I may +hope to see you in less than a fortnight. My poor cousin, how much you +must have suffered! I expect to see you looking even more ill than +when you quitted Geneva. This winter has been passed most miserably, +tortured as I have been by anxious suspense; yet I hope to see peace in +your countenance and to find that your heart is not totally void of +comfort and tranquillity. + +“Yet I fear that the same feelings now exist that made you so miserable +a year ago, even perhaps augmented by time. I would not disturb you at +this period, when so many misfortunes weigh upon you, but a +conversation that I had with my uncle previous to his departure renders +some explanation necessary before we meet. + +Explanation! You may possibly say, What can Elizabeth have to explain? If +you really say this, my questions are answered and all my doubts satisfied. +But you are distant from me, and it is possible that you may dread and yet +be pleased with this explanation; and in a probability of this being the +case, I dare not any longer postpone writing what, during your absence, I +have often wished to express to you but have never had the courage to begin. + +“You well know, Victor, that our union had been the favourite plan of +your parents ever since our infancy. We were told this when young, and +taught to look forward to it as an event that would certainly take +place. We were affectionate playfellows during childhood, and, I +believe, dear and valued friends to one another as we grew older. But +as brother and sister often entertain a lively affection towards each +other without desiring a more intimate union, may not such also be our +case? Tell me, dearest Victor. Answer me, I conjure you by our mutual +happiness, with simple truth—Do you not love another? + +“You have travelled; you have spent several years of your life at +Ingolstadt; and I confess to you, my friend, that when I saw you last +autumn so unhappy, flying to solitude from the society of every +creature, I could not help supposing that you might regret our +connection and believe yourself bound in honour to fulfil the wishes of +your parents, although they opposed themselves to your inclinations. +But this is false reasoning. I confess to you, my friend, that I love +you and that in my airy dreams of futurity you have been my constant +friend and companion. But it is your happiness I desire as well as my +own when I declare to you that our marriage would render me eternally +miserable unless it were the dictate of your own free choice. Even now +I weep to think that, borne down as you are by the cruellest +misfortunes, you may stifle, by the word _honour_, all hope of that +love and happiness which would alone restore you to yourself. I, who +have so disinterested an affection for you, may increase your miseries +tenfold by being an obstacle to your wishes. Ah! Victor, be assured +that your cousin and playmate has too sincere a love for you not to be +made miserable by this supposition. Be happy, my friend; and if you +obey me in this one request, remain satisfied that nothing on earth +will have the power to interrupt my tranquillity. + +“Do not let this letter disturb you; do not answer tomorrow, or the +next day, or even until you come, if it will give you pain. My uncle +will send me news of your health, and if I see but one smile on your +lips when we meet, occasioned by this or any other exertion of mine, I +shall need no other happiness. + +“Elizabeth Lavenza. + + + +“Geneva, May 18th, 17—” + + + +This letter revived in my memory what I had before forgotten, the threat of +the fiend—“_I will be with you on your +wedding-night!_” Such was my sentence, and on that night would the +dæmon employ every art to destroy me and tear me from the glimpse of +happiness which promised partly to console my sufferings. On that night he +had determined to consummate his crimes by my death. Well, be it so; a +deadly struggle would then assuredly take place, in which if he were +victorious I should be at peace and his power over me be at an end. If he +were vanquished, I should be a free man. Alas! What freedom? Such as the +peasant enjoys when his family have been massacred before his eyes, his +cottage burnt, his lands laid waste, and he is turned adrift, homeless, +penniless, and alone, but free. Such would be my liberty except that in my +Elizabeth I possessed a treasure, alas, balanced by those horrors of +remorse and guilt which would pursue me until death. + +Sweet and beloved Elizabeth! I read and reread her letter, and some +softened feelings stole into my heart and dared to whisper paradisiacal +dreams of love and joy; but the apple was already eaten, and the +angel’s arm bared to drive me from all hope. Yet I would die to make +her happy. If the monster executed his threat, death was inevitable; yet, +again, I considered whether my marriage would hasten my fate. My +destruction might indeed arrive a few months sooner, but if my torturer +should suspect that I postponed it, influenced by his menaces, he would +surely find other and perhaps more dreadful means of revenge. He had vowed +_to be with me on my wedding-night_, yet he did not consider that +threat as binding him to peace in the meantime, for as if to show me that +he was not yet satiated with blood, he had murdered Clerval immediately +after the enunciation of his threats. I resolved, therefore, that if my +immediate union with my cousin would conduce either to hers or my +father’s happiness, my adversary’s designs against my life +should not retard it a single hour. + +In this state of mind I wrote to Elizabeth. My letter was calm and +affectionate. “I fear, my beloved girl,” I said, “little happiness +remains for us on earth; yet all that I may one day enjoy is centred in +you. Chase away your idle fears; to you alone do I consecrate my life +and my endeavours for contentment. I have one secret, Elizabeth, a +dreadful one; when revealed to you, it will chill your frame with +horror, and then, far from being surprised at my misery, you will only +wonder that I survive what I have endured. I will confide this tale of +misery and terror to you the day after our marriage shall take place, +for, my sweet cousin, there must be perfect confidence between us. But +until then, I conjure you, do not mention or allude to it. This I most +earnestly entreat, and I know you will comply.” + +In about a week after the arrival of Elizabeth’s letter we returned +to Geneva. The sweet girl welcomed me with warm affection, yet tears were +in her eyes as she beheld my emaciated frame and feverish cheeks. I saw a +change in her also. She was thinner and had lost much of that heavenly +vivacity that had before charmed me; but her gentleness and soft looks of +compassion made her a more fit companion for one blasted and miserable as I +was. + +The tranquillity which I now enjoyed did not endure. Memory brought madness +with it, and when I thought of what had passed, a real insanity possessed +me; sometimes I was furious and burnt with rage, sometimes low and +despondent. I neither spoke nor looked at anyone, but sat motionless, +bewildered by the multitude of miseries that overcame me. + +Elizabeth alone had the power to draw me from these fits; her gentle voice +would soothe me when transported by passion and inspire me with human +feelings when sunk in torpor. She wept with me and for me. When reason +returned, she would remonstrate and endeavour to inspire me with +resignation. Ah! It is well for the unfortunate to be resigned, but for the +guilty there is no peace. The agonies of remorse poison the luxury there is +otherwise sometimes found in indulging the excess of grief. + +Soon after my arrival my father spoke of my immediate marriage with +Elizabeth. I remained silent. + +“Have you, then, some other attachment?” + +“None on earth. I love Elizabeth and look forward to our union with +delight. Let the day therefore be fixed; and on it I will consecrate +myself, in life or death, to the happiness of my cousin.” + +“My dear Victor, do not speak thus. Heavy misfortunes have befallen +us, but let us only cling closer to what remains and transfer our love +for those whom we have lost to those who yet live. Our circle will be +small but bound close by the ties of affection and mutual misfortune. +And when time shall have softened your despair, new and dear objects of +care will be born to replace those of whom we have been so cruelly +deprived.” + +Such were the lessons of my father. But to me the remembrance of the +threat returned; nor can you wonder that, omnipotent as the fiend had +yet been in his deeds of blood, I should almost regard him as +invincible, and that when he had pronounced the words “_I shall be with +you on your wedding-night_,” I should regard the threatened fate as +unavoidable. But death was no evil to me if the loss of Elizabeth were +balanced with it, and I therefore, with a contented and even cheerful +countenance, agreed with my father that if my cousin would consent, the +ceremony should take place in ten days, and thus put, as I imagined, +the seal to my fate. + +Great God! If for one instant I had thought what might be the hellish +intention of my fiendish adversary, I would rather have banished myself +for ever from my native country and wandered a friendless outcast over +the earth than have consented to this miserable marriage. But, as if +possessed of magic powers, the monster had blinded me to his real +intentions; and when I thought that I had prepared only my own death, I +hastened that of a far dearer victim. + +As the period fixed for our marriage drew nearer, whether from cowardice or +a prophetic feeling, I felt my heart sink within me. But I concealed my +feelings by an appearance of hilarity that brought smiles and joy to the +countenance of my father, but hardly deceived the ever-watchful and nicer +eye of Elizabeth. She looked forward to our union with placid contentment, +not unmingled with a little fear, which past misfortunes had impressed, +that what now appeared certain and tangible happiness might soon dissipate +into an airy dream and leave no trace but deep and everlasting regret. + +Preparations were made for the event, congratulatory visits were received, +and all wore a smiling appearance. I shut up, as well as I could, in my own +heart the anxiety that preyed there and entered with seeming earnestness +into the plans of my father, although they might only serve as the +decorations of my tragedy. Through my father’s exertions a part of +the inheritance of Elizabeth had been restored to her by the Austrian +government. A small possession on the shores of Como belonged to her. It +was agreed that, immediately after our union, we should proceed to Villa +Lavenza and spend our first days of happiness beside the beautiful lake +near which it stood. + +In the meantime I took every precaution to defend my person in case the +fiend should openly attack me. I carried pistols and a dagger +constantly about me and was ever on the watch to prevent artifice, and +by these means gained a greater degree of tranquillity. Indeed, as the +period approached, the threat appeared more as a delusion, not to be +regarded as worthy to disturb my peace, while the happiness I hoped for +in my marriage wore a greater appearance of certainty as the day fixed +for its solemnisation drew nearer and I heard it continually spoken of +as an occurrence which no accident could possibly prevent. + +Elizabeth seemed happy; my tranquil demeanour contributed greatly to +calm her mind. But on the day that was to fulfil my wishes and my +destiny, she was melancholy, and a presentiment of evil pervaded her; +and perhaps also she thought of the dreadful secret which I had +promised to reveal to her on the following day. My father was in the +meantime overjoyed, and, in the bustle of preparation, only recognised in +the melancholy of his niece the diffidence of a bride. + +After the ceremony was performed a large party assembled at my +father’s, but it was agreed that Elizabeth and I should commence our +journey by water, sleeping that night at Evian and continuing our +voyage on the following day. The day was fair, the wind favourable; +all smiled on our nuptial embarkation. + +Those were the last moments of my life during which I enjoyed the +feeling of happiness. We passed rapidly along; the sun was hot, but we +were sheltered from its rays by a kind of canopy while we enjoyed the +beauty of the scene, sometimes on one side of the lake, where we saw +Mont Salêve, the pleasant banks of Montalègre, and at a distance, +surmounting all, the beautiful Mont Blanc, and the assemblage of snowy +mountains that in vain endeavour to emulate her; sometimes coasting the +opposite banks, we saw the mighty Jura opposing its dark side to the +ambition that would quit its native country, and an almost +insurmountable barrier to the invader who should wish to enslave it. + +I took the hand of Elizabeth. “You are sorrowful, my love. Ah! If +you knew what I have suffered and what I may yet endure, you would +endeavour to let me taste the quiet and freedom from despair that this +one day at least permits me to enjoy.” + +“Be happy, my dear Victor,” replied Elizabeth; “there is, I hope, +nothing to distress you; and be assured that if a lively joy is not +painted in my face, my heart is contented. Something whispers to me +not to depend too much on the prospect that is opened before us, but I +will not listen to such a sinister voice. Observe how fast we move +along and how the clouds, which sometimes obscure and sometimes rise +above the dome of Mont Blanc, render this scene of beauty still more +interesting. Look also at the innumerable fish that are swimming in +the clear waters, where we can distinguish every pebble that lies at +the bottom. What a divine day! How happy and serene all nature +appears!” + +Thus Elizabeth endeavoured to divert her thoughts and mine from all +reflection upon melancholy subjects. But her temper was fluctuating; +joy for a few instants shone in her eyes, but it continually gave place +to distraction and reverie. + +The sun sank lower in the heavens; we passed the river Drance and +observed its path through the chasms of the higher and the glens of the +lower hills. The Alps here come closer to the lake, and we approached +the amphitheatre of mountains which forms its eastern boundary. The +spire of Evian shone under the woods that surrounded it and the range +of mountain above mountain by which it was overhung. + +The wind, which had hitherto carried us along with amazing rapidity, +sank at sunset to a light breeze; the soft air just ruffled the water +and caused a pleasant motion among the trees as we approached the +shore, from which it wafted the most delightful scent of flowers and +hay. The sun sank beneath the horizon as we landed, and as I touched +the shore I felt those cares and fears revive which soon were to clasp +me and cling to me for ever. + + + + +Chapter 23 + + +It was eight o’clock when we landed; we walked for a short time on the +shore, enjoying the transitory light, and then retired to the inn and +contemplated the lovely scene of waters, woods, and mountains, obscured +in darkness, yet still displaying their black outlines. + +The wind, which had fallen in the south, now rose with great violence +in the west. The moon had reached her summit in the heavens and was +beginning to descend; the clouds swept across it swifter than the +flight of the vulture and dimmed her rays, while the lake reflected the +scene of the busy heavens, rendered still busier by the restless waves +that were beginning to rise. Suddenly a heavy storm of rain descended. + +I had been calm during the day, but so soon as night obscured the +shapes of objects, a thousand fears arose in my mind. I was anxious +and watchful, while my right hand grasped a pistol which was hidden in +my bosom; every sound terrified me, but I resolved that I would sell my +life dearly and not shrink from the conflict until my own life or that +of my adversary was extinguished. + +Elizabeth observed my agitation for some time in timid and fearful silence, +but there was something in my glance which communicated terror to her, and +trembling, she asked, “What is it that agitates you, my dear Victor? +What is it you fear?” + +“Oh! Peace, peace, my love,” replied I; “this night, and +all will be safe; but this night is dreadful, very dreadful.” + +I passed an hour in this state of mind, when suddenly I reflected how +fearful the combat which I momentarily expected would be to my wife, +and I earnestly entreated her to retire, resolving not to join her +until I had obtained some knowledge as to the situation of my enemy. + +She left me, and I continued some time walking up and down the passages +of the house and inspecting every corner that might afford a retreat to +my adversary. But I discovered no trace of him and was beginning to +conjecture that some fortunate chance had intervened to prevent the +execution of his menaces when suddenly I heard a shrill and dreadful +scream. It came from the room into which Elizabeth had retired. As I +heard it, the whole truth rushed into my mind, my arms dropped, the +motion of every muscle and fibre was suspended; I could feel the blood +trickling in my veins and tingling in the extremities of my limbs. This +state lasted but for an instant; the scream was repeated, and I rushed +into the room. + +Great God! Why did I not then expire! Why am I here to relate the +destruction of the best hope and the purest creature on earth? She was +there, lifeless and inanimate, thrown across the bed, her head hanging down +and her pale and distorted features half covered by her hair. Everywhere I +turn I see the same figure—her bloodless arms and relaxed form flung +by the murderer on its bridal bier. Could I behold this and live? Alas! +Life is obstinate and clings closest where it is most hated. For a moment +only did I lose recollection; I fell senseless on the ground. + +When I recovered I found myself surrounded by the people of the inn; their +countenances expressed a breathless terror, but the horror of others +appeared only as a mockery, a shadow of the feelings that oppressed me. I +escaped from them to the room where lay the body of Elizabeth, my love, my +wife, so lately living, so dear, so worthy. She had been moved from the +posture in which I had first beheld her, and now, as she lay, her head upon +her arm and a handkerchief thrown across her face and neck, I might have +supposed her asleep. I rushed towards her and embraced her with ardour, but +the deadly languor and coldness of the limbs told me that what I now held +in my arms had ceased to be the Elizabeth whom I had loved and cherished. +The murderous mark of the fiend’s grasp was on her neck, and the +breath had ceased to issue from her lips. + +While I still hung over her in the agony of despair, I happened to look up. +The windows of the room had before been darkened, and I felt a kind of +panic on seeing the pale yellow light of the moon illuminate the chamber. +The shutters had been thrown back, and with a sensation of horror not to be +described, I saw at the open window a figure the most hideous and abhorred. +A grin was on the face of the monster; he seemed to jeer, as with his +fiendish finger he pointed towards the corpse of my wife. I rushed towards +the window, and drawing a pistol from my bosom, fired; but he eluded me, +leaped from his station, and running with the swiftness of lightning, +plunged into the lake. + +The report of the pistol brought a crowd into the room. I pointed to +the spot where he had disappeared, and we followed the track with +boats; nets were cast, but in vain. After passing several hours, we +returned hopeless, most of my companions believing it to have been a +form conjured up by my fancy. After having landed, they proceeded to +search the country, parties going in different directions among the +woods and vines. + +I attempted to accompany them and proceeded a short distance from the +house, but my head whirled round, my steps were like those of a drunken +man, I fell at last in a state of utter exhaustion; a film covered my +eyes, and my skin was parched with the heat of fever. In this state I +was carried back and placed on a bed, hardly conscious of what had +happened; my eyes wandered round the room as if to seek something that +I had lost. + +After an interval I arose, and as if by instinct, crawled into the room +where the corpse of my beloved lay. There were women weeping around; I +hung over it and joined my sad tears to theirs; all this time no +distinct idea presented itself to my mind, but my thoughts rambled to +various subjects, reflecting confusedly on my misfortunes and their +cause. I was bewildered, in a cloud of wonder and horror. The death +of William, the execution of Justine, the murder of Clerval, and lastly +of my wife; even at that moment I knew not that my only remaining +friends were safe from the malignity of the fiend; my father even now +might be writhing under his grasp, and Ernest might be dead at his +feet. This idea made me shudder and recalled me to action. I started +up and resolved to return to Geneva with all possible speed. + +There were no horses to be procured, and I must return by the lake; but the +wind was unfavourable, and the rain fell in torrents. However, it was +hardly morning, and I might reasonably hope to arrive by night. I hired men +to row and took an oar myself, for I had always experienced relief from +mental torment in bodily exercise. But the overflowing misery I now felt, +and the excess of agitation that I endured rendered me incapable of any +exertion. I threw down the oar, and leaning my head upon my hands, gave way +to every gloomy idea that arose. If I looked up, I saw scenes which were +familiar to me in my happier time and which I had contemplated but the day +before in the company of her who was now but a shadow and a recollection. +Tears streamed from my eyes. The rain had ceased for a moment, and I saw +the fish play in the waters as they had done a few hours before; they had +then been observed by Elizabeth. Nothing is so painful to the human mind as +a great and sudden change. The sun might shine or the clouds might lower, +but nothing could appear to me as it had done the day before. A fiend had +snatched from me every hope of future happiness; no creature had ever been +so miserable as I was; so frightful an event is single in the history of +man. + +But why should I dwell upon the incidents that followed this last +overwhelming event? Mine has been a tale of horrors; I have reached their +_acme_, and what I must now relate can but be tedious to you. Know +that, one by one, my friends were snatched away; I was left desolate. My +own strength is exhausted, and I must tell, in a few words, what remains of +my hideous narration. + +I arrived at Geneva. My father and Ernest yet lived, but the former sunk +under the tidings that I bore. I see him now, excellent and venerable old +man! His eyes wandered in vacancy, for they had lost their charm and their +delight—his Elizabeth, his more than daughter, whom he doted on with +all that affection which a man feels, who in the decline of life, having +few affections, clings more earnestly to those that remain. Cursed, cursed +be the fiend that brought misery on his grey hairs and doomed him to waste +in wretchedness! He could not live under the horrors that were accumulated +around him; the springs of existence suddenly gave way; he was unable to +rise from his bed, and in a few days he died in my arms. + +What then became of me? I know not; I lost sensation, and chains and +darkness were the only objects that pressed upon me. Sometimes, +indeed, I dreamt that I wandered in flowery meadows and pleasant vales +with the friends of my youth, but I awoke and found myself in a +dungeon. Melancholy followed, but by degrees I gained a clear +conception of my miseries and situation and was then released from my +prison. For they had called me mad, and during many months, as I +understood, a solitary cell had been my habitation. + +Liberty, however, had been a useless gift to me, had I not, as I +awakened to reason, at the same time awakened to revenge. As the +memory of past misfortunes pressed upon me, I began to reflect on their +cause—the monster whom I had created, the miserable dæmon whom I had +sent abroad into the world for my destruction. I was possessed by a +maddening rage when I thought of him, and desired and ardently prayed +that I might have him within my grasp to wreak a great and signal +revenge on his cursed head. + +Nor did my hate long confine itself to useless wishes; I began to +reflect on the best means of securing him; and for this purpose, about +a month after my release, I repaired to a criminal judge in the town +and told him that I had an accusation to make, that I knew the +destroyer of my family, and that I required him to exert his whole +authority for the apprehension of the murderer. + +The magistrate listened to me with attention and kindness. “Be +assured, sir,” said he, “no pains or exertions on my part shall +be spared to discover the villain.” + +“I thank you,” replied I; “listen, therefore, to the +deposition that I have to make. It is indeed a tale so strange that I +should fear you would not credit it were there not something in truth +which, however wonderful, forces conviction. The story is too connected to +be mistaken for a dream, and I have no motive for falsehood.” My +manner as I thus addressed him was impressive but calm; I had formed in my +own heart a resolution to pursue my destroyer to death, and this purpose +quieted my agony and for an interval reconciled me to life. I now related +my history briefly but with firmness and precision, marking the dates with +accuracy and never deviating into invective or exclamation. + +The magistrate appeared at first perfectly incredulous, but as I continued +he became more attentive and interested; I saw him sometimes shudder with +horror; at others a lively surprise, unmingled with disbelief, was painted +on his countenance. + +When I had concluded my narration, I said, “This is the being whom I +accuse and for whose seizure and punishment I call upon you to exert your +whole power. It is your duty as a magistrate, and I believe and hope that +your feelings as a man will not revolt from the execution of those +functions on this occasion.” + +This address caused a considerable change in the physiognomy of my own +auditor. He had heard my story with that half kind of belief that is given +to a tale of spirits and supernatural events; but when he was called upon +to act officially in consequence, the whole tide of his incredulity +returned. He, however, answered mildly, “I would willingly afford you +every aid in your pursuit, but the creature of whom you speak appears to +have powers which would put all my exertions to defiance. Who can follow an +animal which can traverse the sea of ice and inhabit caves and dens where +no man would venture to intrude? Besides, some months have elapsed since +the commission of his crimes, and no one can conjecture to what place he +has wandered or what region he may now inhabit.” + +“I do not doubt that he hovers near the spot which I inhabit, and if +he has indeed taken refuge in the Alps, he may be hunted like the chamois +and destroyed as a beast of prey. But I perceive your thoughts; you do not +credit my narrative and do not intend to pursue my enemy with the +punishment which is his desert.” + +As I spoke, rage sparkled in my eyes; the magistrate was intimidated. +“You are mistaken,” said he. “I will exert myself, and if +it is in my power to seize the monster, be assured that he shall suffer +punishment proportionate to his crimes. But I fear, from what you have +yourself described to be his properties, that this will prove +impracticable; and thus, while every proper measure is pursued, you should +make up your mind to disappointment.” + +“That cannot be; but all that I can say will be of little avail. My +revenge is of no moment to you; yet, while I allow it to be a vice, I +confess that it is the devouring and only passion of my soul. My rage +is unspeakable when I reflect that the murderer, whom I have turned +loose upon society, still exists. You refuse my just demand; I have +but one resource, and I devote myself, either in my life or death, to +his destruction.” + +I trembled with excess of agitation as I said this; there was a frenzy +in my manner, and something, I doubt not, of that haughty fierceness +which the martyrs of old are said to have possessed. But to a Genevan +magistrate, whose mind was occupied by far other ideas than those of +devotion and heroism, this elevation of mind had much the appearance of +madness. He endeavoured to soothe me as a nurse does a child and +reverted to my tale as the effects of delirium. + +“Man,” I cried, “how ignorant art thou in thy pride of +wisdom! Cease; you know not what it is you say.” + +I broke from the house angry and disturbed and retired to meditate on +some other mode of action. + + + + +Chapter 24 + + +My present situation was one in which all voluntary thought was +swallowed up and lost. I was hurried away by fury; revenge alone +endowed me with strength and composure; it moulded my feelings and +allowed me to be calculating and calm at periods when otherwise +delirium or death would have been my portion. + +My first resolution was to quit Geneva for ever; my country, which, when I +was happy and beloved, was dear to me, now, in my adversity, became +hateful. I provided myself with a sum of money, together with a few jewels +which had belonged to my mother, and departed. + +And now my wanderings began which are to cease but with life. I have +traversed a vast portion of the earth and have endured all the hardships +which travellers in deserts and barbarous countries are wont to meet. How I +have lived I hardly know; many times have I stretched my failing limbs upon +the sandy plain and prayed for death. But revenge kept me alive; I dared +not die and leave my adversary in being. + +When I quitted Geneva my first labour was to gain some clue by which I +might trace the steps of my fiendish enemy. But my plan was unsettled, +and I wandered many hours round the confines of the town, uncertain +what path I should pursue. As night approached I found myself at the +entrance of the cemetery where William, Elizabeth, and my father +reposed. I entered it and approached the tomb which marked their +graves. Everything was silent except the leaves of the trees, which +were gently agitated by the wind; the night was nearly dark, and the +scene would have been solemn and affecting even to an uninterested +observer. The spirits of the departed seemed to flit around and to +cast a shadow, which was felt but not seen, around the head of the +mourner. + +The deep grief which this scene had at first excited quickly gave way to +rage and despair. They were dead, and I lived; their murderer also lived, +and to destroy him I must drag out my weary existence. I knelt on the grass +and kissed the earth and with quivering lips exclaimed, “By the +sacred earth on which I kneel, by the shades that wander near me, by the +deep and eternal grief that I feel, I swear; and by thee, O Night, and the +spirits that preside over thee, to pursue the dæmon who caused this misery, +until he or I shall perish in mortal conflict. For this purpose I will +preserve my life; to execute this dear revenge will I again behold the sun +and tread the green herbage of earth, which otherwise should vanish from my +eyes for ever. And I call on you, spirits of the dead, and on you, wandering +ministers of vengeance, to aid and conduct me in my work. Let the cursed +and hellish monster drink deep of agony; let him feel the despair that now +torments me.” + +I had begun my adjuration with solemnity and an awe which almost assured me +that the shades of my murdered friends heard and approved my devotion, but +the furies possessed me as I concluded, and rage choked my utterance. + +I was answered through the stillness of night by a loud and fiendish +laugh. It rang on my ears long and heavily; the mountains re-echoed +it, and I felt as if all hell surrounded me with mockery and laughter. +Surely in that moment I should have been possessed by frenzy and have +destroyed my miserable existence but that my vow was heard and that I +was reserved for vengeance. The laughter died away, when a well-known +and abhorred voice, apparently close to my ear, addressed me in an +audible whisper, “I am satisfied, miserable wretch! You have +determined to live, and I am satisfied.” + +I darted towards the spot from which the sound proceeded, but the devil +eluded my grasp. Suddenly the broad disk of the moon arose and shone +full upon his ghastly and distorted shape as he fled with more than +mortal speed. + +I pursued him, and for many months this has been my task. Guided by a +slight clue, I followed the windings of the Rhone, but vainly. The +blue Mediterranean appeared, and by a strange chance, I saw the fiend +enter by night and hide himself in a vessel bound for the Black Sea. I +took my passage in the same ship, but he escaped, I know not how. + +Amidst the wilds of Tartary and Russia, although he still evaded me, I +have ever followed in his track. Sometimes the peasants, scared by +this horrid apparition, informed me of his path; sometimes he himself, +who feared that if I lost all trace of him I should despair and die, +left some mark to guide me. The snows descended on my head, and I saw +the print of his huge step on the white plain. To you first entering +on life, to whom care is new and agony unknown, how can you understand +what I have felt and still feel? Cold, want, and fatigue were the +least pains which I was destined to endure; I was cursed by some devil +and carried about with me my eternal hell; yet still a spirit of good +followed and directed my steps and when I most murmured would suddenly +extricate me from seemingly insurmountable difficulties. Sometimes, +when nature, overcome by hunger, sank under the exhaustion, a repast +was prepared for me in the desert that restored and inspirited me. The +fare was, indeed, coarse, such as the peasants of the country ate, but +I will not doubt that it was set there by the spirits that I had +invoked to aid me. Often, when all was dry, the heavens cloudless, and +I was parched by thirst, a slight cloud would bedim the sky, shed the +few drops that revived me, and vanish. + +I followed, when I could, the courses of the rivers; but the dæmon +generally avoided these, as it was here that the population of the +country chiefly collected. In other places human beings were seldom +seen, and I generally subsisted on the wild animals that crossed my +path. I had money with me and gained the friendship of the villagers +by distributing it; or I brought with me some food that I had killed, +which, after taking a small part, I always presented to those who had +provided me with fire and utensils for cooking. + +My life, as it passed thus, was indeed hateful to me, and it was during +sleep alone that I could taste joy. O blessed sleep! Often, when most +miserable, I sank to repose, and my dreams lulled me even to rapture. The +spirits that guarded me had provided these moments, or rather hours, of +happiness that I might retain strength to fulfil my pilgrimage. Deprived of +this respite, I should have sunk under my hardships. During the day I was +sustained and inspirited by the hope of night, for in sleep I saw my +friends, my wife, and my beloved country; again I saw the benevolent +countenance of my father, heard the silver tones of my Elizabeth’s +voice, and beheld Clerval enjoying health and youth. Often, when wearied by +a toilsome march, I persuaded myself that I was dreaming until night should +come and that I should then enjoy reality in the arms of my dearest +friends. What agonising fondness did I feel for them! How did I cling to +their dear forms, as sometimes they haunted even my waking hours, and +persuade myself that they still lived! At such moments vengeance, that +burned within me, died in my heart, and I pursued my path towards the +destruction of the dæmon more as a task enjoined by heaven, as the +mechanical impulse of some power of which I was unconscious, than as the +ardent desire of my soul. + +What his feelings were whom I pursued I cannot know. Sometimes, indeed, he +left marks in writing on the barks of the trees or cut in stone that guided +me and instigated my fury. “My reign is not yet +over”—these words were legible in one of these +inscriptions—“you live, and my power is complete. Follow me; I +seek the everlasting ices of the north, where you will feel the misery of +cold and frost, to which I am impassive. You will find near this place, if +you follow not too tardily, a dead hare; eat and be refreshed. Come on, my +enemy; we have yet to wrestle for our lives, but many hard and miserable +hours must you endure until that period shall arrive.” + +Scoffing devil! Again do I vow vengeance; again do I devote thee, +miserable fiend, to torture and death. Never will I give up my search +until he or I perish; and then with what ecstasy shall I join my +Elizabeth and my departed friends, who even now prepare for me the +reward of my tedious toil and horrible pilgrimage! + +As I still pursued my journey to the northward, the snows thickened and the +cold increased in a degree almost too severe to support. The peasants were +shut up in their hovels, and only a few of the most hardy ventured forth to +seize the animals whom starvation had forced from their hiding-places to +seek for prey. The rivers were covered with ice, and no fish could be +procured; and thus I was cut off from my chief article of maintenance. + +The triumph of my enemy increased with the difficulty of my labours. One +inscription that he left was in these words: “Prepare! Your toils +only begin; wrap yourself in furs and provide food, for we shall soon enter +upon a journey where your sufferings will satisfy my everlasting +hatred.” + +My courage and perseverance were invigorated by these scoffing words; I +resolved not to fail in my purpose, and calling on Heaven to support +me, I continued with unabated fervour to traverse immense deserts, +until the ocean appeared at a distance and formed the utmost boundary +of the horizon. Oh! How unlike it was to the blue seasons of the +south! Covered with ice, it was only to be distinguished from land by +its superior wildness and ruggedness. The Greeks wept for joy when +they beheld the Mediterranean from the hills of Asia, and hailed with +rapture the boundary of their toils. I did not weep, but I knelt down +and with a full heart thanked my guiding spirit for conducting me in +safety to the place where I hoped, notwithstanding my adversary’s gibe, +to meet and grapple with him. + +Some weeks before this period I had procured a sledge and dogs and thus +traversed the snows with inconceivable speed. I know not whether the +fiend possessed the same advantages, but I found that, as before I had +daily lost ground in the pursuit, I now gained on him, so much so that +when I first saw the ocean he was but one day’s journey in advance, and +I hoped to intercept him before he should reach the beach. With new +courage, therefore, I pressed on, and in two days arrived at a wretched +hamlet on the seashore. I inquired of the inhabitants concerning the +fiend and gained accurate information. A gigantic monster, they said, +had arrived the night before, armed with a gun and many pistols, +putting to flight the inhabitants of a solitary cottage through fear of +his terrific appearance. He had carried off their store of winter +food, and placing it in a sledge, to draw which he had seized on a +numerous drove of trained dogs, he had harnessed them, and the same +night, to the joy of the horror-struck villagers, had pursued his +journey across the sea in a direction that led to no land; and they +conjectured that he must speedily be destroyed by the breaking of the +ice or frozen by the eternal frosts. + +On hearing this information I suffered a temporary access of despair. +He had escaped me, and I must commence a destructive and almost endless +journey across the mountainous ices of the ocean, amidst cold that few +of the inhabitants could long endure and which I, the native of a +genial and sunny climate, could not hope to survive. Yet at the idea +that the fiend should live and be triumphant, my rage and vengeance +returned, and like a mighty tide, overwhelmed every other feeling. +After a slight repose, during which the spirits of the dead hovered +round and instigated me to toil and revenge, I prepared for my journey. + +I exchanged my land-sledge for one fashioned for the inequalities of +the Frozen Ocean, and purchasing a plentiful stock of provisions, I +departed from land. + +I cannot guess how many days have passed since then, but I have endured +misery which nothing but the eternal sentiment of a just retribution +burning within my heart could have enabled me to support. Immense and +rugged mountains of ice often barred up my passage, and I often heard +the thunder of the ground sea, which threatened my destruction. But +again the frost came and made the paths of the sea secure. + +By the quantity of provision which I had consumed, I should guess that +I had passed three weeks in this journey; and the continual protraction +of hope, returning back upon the heart, often wrung bitter drops of +despondency and grief from my eyes. Despair had indeed almost secured +her prey, and I should soon have sunk beneath this misery. Once, after +the poor animals that conveyed me had with incredible toil gained the +summit of a sloping ice mountain, and one, sinking under his fatigue, +died, I viewed the expanse before me with anguish, when suddenly my eye +caught a dark speck upon the dusky plain. I strained my sight to +discover what it could be and uttered a wild cry of ecstasy when I +distinguished a sledge and the distorted proportions of a well-known +form within. Oh! With what a burning gush did hope revisit my heart! +Warm tears filled my eyes, which I hastily wiped away, that they might +not intercept the view I had of the dæmon; but still my sight was +dimmed by the burning drops, until, giving way to the emotions that +oppressed me, I wept aloud. + +But this was not the time for delay; I disencumbered the dogs of their +dead companion, gave them a plentiful portion of food, and after an +hour’s rest, which was absolutely necessary, and yet which was bitterly +irksome to me, I continued my route. The sledge was still visible, nor +did I again lose sight of it except at the moments when for a short +time some ice-rock concealed it with its intervening crags. I indeed +perceptibly gained on it, and when, after nearly two days’ journey, I +beheld my enemy at no more than a mile distant, my heart bounded within +me. + +But now, when I appeared almost within grasp of my foe, my hopes were +suddenly extinguished, and I lost all trace of him more utterly than I had +ever done before. A ground sea was heard; the thunder of its progress, as +the waters rolled and swelled beneath me, became every moment more ominous +and terrific. I pressed on, but in vain. The wind arose; the sea roared; +and, as with the mighty shock of an earthquake, it split and cracked with a +tremendous and overwhelming sound. The work was soon finished; in a few +minutes a tumultuous sea rolled between me and my enemy, and I was left +drifting on a scattered piece of ice that was continually lessening and +thus preparing for me a hideous death. + +In this manner many appalling hours passed; several of my dogs died, and I +myself was about to sink under the accumulation of distress when I saw your +vessel riding at anchor and holding forth to me hopes of succour and life. +I had no conception that vessels ever came so far north and was astounded +at the sight. I quickly destroyed part of my sledge to construct oars, and +by these means was enabled, with infinite fatigue, to move my ice raft in +the direction of your ship. I had determined, if you were going southwards, +still to trust myself to the mercy of the seas rather than abandon my +purpose. I hoped to induce you to grant me a boat with which I could pursue +my enemy. But your direction was northwards. You took me on board when my +vigour was exhausted, and I should soon have sunk under my multiplied +hardships into a death which I still dread, for my task is unfulfilled. + +Oh! When will my guiding spirit, in conducting me to the dæmon, allow +me the rest I so much desire; or must I die, and he yet live? If I do, +swear to me, Walton, that he shall not escape, that you will seek him +and satisfy my vengeance in his death. And do I dare to ask of you to +undertake my pilgrimage, to endure the hardships that I have undergone? +No; I am not so selfish. Yet, when I am dead, if he should appear, if +the ministers of vengeance should conduct him to you, swear that he +shall not live—swear that he shall not triumph over my accumulated +woes and survive to add to the list of his dark crimes. He is eloquent +and persuasive, and once his words had even power over my heart; but +trust him not. His soul is as hellish as his form, full of treachery +and fiend-like malice. Hear him not; call on the names of William, +Justine, Clerval, Elizabeth, my father, and of the wretched Victor, and +thrust your sword into his heart. I will hover near and direct the +steel aright. + +Walton, _in continuation._ + + +August 26th, 17—. + + +You have read this strange and terrific story, Margaret; and do you not +feel your blood congeal with horror, like that which even now curdles +mine? Sometimes, seized with sudden agony, he could not continue his +tale; at others, his voice broken, yet piercing, uttered with +difficulty the words so replete with anguish. His fine and lovely eyes +were now lighted up with indignation, now subdued to downcast sorrow +and quenched in infinite wretchedness. Sometimes he commanded his +countenance and tones and related the most horrible incidents with a +tranquil voice, suppressing every mark of agitation; then, like a +volcano bursting forth, his face would suddenly change to an expression +of the wildest rage as he shrieked out imprecations on his persecutor. + +His tale is connected and told with an appearance of the simplest truth, +yet I own to you that the letters of Felix and Safie, which he showed me, +and the apparition of the monster seen from our ship, brought to me a +greater conviction of the truth of his narrative than his asseverations, +however earnest and connected. Such a monster has, then, really existence! +I cannot doubt it, yet I am lost in surprise and admiration. Sometimes I +endeavoured to gain from Frankenstein the particulars of his +creature’s formation, but on this point he was impenetrable. + +“Are you mad, my friend?” said he. “Or whither does your +senseless curiosity lead you? Would you also create for yourself and the +world a demoniacal enemy? Peace, peace! Learn my miseries and do not seek +to increase your own.” + +Frankenstein discovered that I made notes concerning his history; he asked +to see them and then himself corrected and augmented them in many places, +but principally in giving the life and spirit to the conversations he held +with his enemy. “Since you have preserved my narration,” said +he, “I would not that a mutilated one should go down to +posterity.” + +Thus has a week passed away, while I have listened to the strangest +tale that ever imagination formed. My thoughts and every feeling of my +soul have been drunk up by the interest for my guest which this tale +and his own elevated and gentle manners have created. I wish to soothe +him, yet can I counsel one so infinitely miserable, so destitute of +every hope of consolation, to live? Oh, no! The only joy that he can +now know will be when he composes his shattered spirit to peace and +death. Yet he enjoys one comfort, the offspring of solitude and +delirium; he believes that when in dreams he holds converse with his +friends and derives from that communion consolation for his miseries or +excitements to his vengeance, that they are not the creations of his +fancy, but the beings themselves who visit him from the regions of a +remote world. This faith gives a solemnity to his reveries that render +them to me almost as imposing and interesting as truth. + +Our conversations are not always confined to his own history and +misfortunes. On every point of general literature he displays +unbounded knowledge and a quick and piercing apprehension. His +eloquence is forcible and touching; nor can I hear him, when he relates +a pathetic incident or endeavours to move the passions of pity or love, +without tears. What a glorious creature must he have been in the days +of his prosperity, when he is thus noble and godlike in ruin! He seems +to feel his own worth and the greatness of his fall. + +“When younger,” said he, “I believed myself destined for +some great enterprise. My feelings are profound, but I possessed a coolness +of judgment that fitted me for illustrious achievements. This sentiment of +the worth of my nature supported me when others would have been oppressed, +for I deemed it criminal to throw away in useless grief those talents that +might be useful to my fellow creatures. When I reflected on the work I had +completed, no less a one than the creation of a sensitive and rational +animal, I could not rank myself with the herd of common projectors. But +this thought, which supported me in the commencement of my career, now +serves only to plunge me lower in the dust. All my speculations and hopes +are as nothing, and like the archangel who aspired to omnipotence, I am +chained in an eternal hell. My imagination was vivid, yet my powers of +analysis and application were intense; by the union of these qualities I +conceived the idea and executed the creation of a man. Even now I cannot +recollect without passion my reveries while the work was incomplete. I trod +heaven in my thoughts, now exulting in my powers, now burning with the idea +of their effects. From my infancy I was imbued with high hopes and a lofty +ambition; but how am I sunk! Oh! My friend, if you had known me as I once +was, you would not recognise me in this state of degradation. Despondency +rarely visited my heart; a high destiny seemed to bear me on, until I fell, +never, never again to rise.” + +Must I then lose this admirable being? I have longed for a friend; I have +sought one who would sympathise with and love me. Behold, on these desert +seas I have found such a one, but I fear I have gained him only to know his +value and lose him. I would reconcile him to life, but he repulses the idea. + +“I thank you, Walton,” he said, “for your kind intentions towards so +miserable a wretch; but when you speak of new ties and fresh +affections, think you that any can replace those who are gone? Can any +man be to me as Clerval was, or any woman another Elizabeth? Even +where the affections are not strongly moved by any superior excellence, +the companions of our childhood always possess a certain power over our +minds which hardly any later friend can obtain. They know our +infantine dispositions, which, however they may be afterwards modified, +are never eradicated; and they can judge of our actions with more +certain conclusions as to the integrity of our motives. A sister or a +brother can never, unless indeed such symptoms have been shown early, +suspect the other of fraud or false dealing, when another friend, +however strongly he may be attached, may, in spite of himself, be +contemplated with suspicion. But I enjoyed friends, dear not only +through habit and association, but from their own merits; and wherever +I am, the soothing voice of my Elizabeth and the conversation of +Clerval will be ever whispered in my ear. They are dead, and but one +feeling in such a solitude can persuade me to preserve my life. If I +were engaged in any high undertaking or design, fraught with extensive +utility to my fellow creatures, then could I live to fulfil it. But +such is not my destiny; I must pursue and destroy the being to whom I +gave existence; then my lot on earth will be fulfilled and I may die.” + +My beloved Sister, + +September 2d. + + +I write to you, encompassed by peril and ignorant whether I am ever +doomed to see again dear England and the dearer friends that inhabit +it. I am surrounded by mountains of ice which admit of no escape and +threaten every moment to crush my vessel. The brave fellows whom I +have persuaded to be my companions look towards me for aid, but I have +none to bestow. There is something terribly appalling in our +situation, yet my courage and hopes do not desert me. Yet it is +terrible to reflect that the lives of all these men are endangered +through me. If we are lost, my mad schemes are the cause. + +And what, Margaret, will be the state of your mind? You will not hear of my +destruction, and you will anxiously await my return. Years will pass, and +you will have visitings of despair and yet be tortured by hope. Oh! My +beloved sister, the sickening failing of your heart-felt expectations is, +in prospect, more terrible to me than my own death. But you have a husband +and lovely children; you may be happy. Heaven bless you and make you so! + +My unfortunate guest regards me with the tenderest compassion. He +endeavours to fill me with hope and talks as if life were a possession +which he valued. He reminds me how often the same accidents have +happened to other navigators who have attempted this sea, and in spite +of myself, he fills me with cheerful auguries. Even the sailors feel +the power of his eloquence; when he speaks, they no longer despair; he +rouses their energies, and while they hear his voice they believe these +vast mountains of ice are mole-hills which will vanish before the +resolutions of man. These feelings are transitory; each day of +expectation delayed fills them with fear, and I almost dread a mutiny +caused by this despair. + +September 5th. + + +A scene has just passed of such uncommon interest that, although it is +highly probable that these papers may never reach you, yet I cannot +forbear recording it. + +We are still surrounded by mountains of ice, still in imminent danger +of being crushed in their conflict. The cold is excessive, and many of +my unfortunate comrades have already found a grave amidst this scene of +desolation. Frankenstein has daily declined in health; a feverish fire +still glimmers in his eyes, but he is exhausted, and when suddenly +roused to any exertion, he speedily sinks again into apparent +lifelessness. + +I mentioned in my last letter the fears I entertained of a mutiny. +This morning, as I sat watching the wan countenance of my friend—his +eyes half closed and his limbs hanging listlessly—I was roused by half +a dozen of the sailors, who demanded admission into the cabin. They +entered, and their leader addressed me. He told me that he and his +companions had been chosen by the other sailors to come in deputation +to me to make me a requisition which, in justice, I could not refuse. +We were immured in ice and should probably never escape, but they +feared that if, as was possible, the ice should dissipate and a free +passage be opened, I should be rash enough to continue my voyage and +lead them into fresh dangers, after they might happily have surmounted +this. They insisted, therefore, that I should engage with a solemn +promise that if the vessel should be freed I would instantly direct my +course southwards. + +This speech troubled me. I had not despaired, nor had I yet conceived +the idea of returning if set free. Yet could I, in justice, or even in +possibility, refuse this demand? I hesitated before I answered, when +Frankenstein, who had at first been silent, and indeed appeared hardly +to have force enough to attend, now roused himself; his eyes sparkled, +and his cheeks flushed with momentary vigour. Turning towards the men, +he said, + +“What do you mean? What do you demand of your captain? Are you, then, +so easily turned from your design? Did you not call this a glorious +expedition? “And wherefore was it glorious? Not because the way was +smooth and placid as a southern sea, but because it was full of dangers and +terror, because at every new incident your fortitude was to be called forth +and your courage exhibited, because danger and death surrounded it, and +these you were to brave and overcome. For this was it a glorious, for this +was it an honourable undertaking. You were hereafter to be hailed as the +benefactors of your species, your names adored as belonging to brave men +who encountered death for honour and the benefit of mankind. And now, +behold, with the first imagination of danger, or, if you will, the first +mighty and terrific trial of your courage, you shrink away and are content +to be handed down as men who had not strength enough to endure cold and +peril; and so, poor souls, they were chilly and returned to their warm +firesides. Why, that requires not this preparation; ye need not have come +thus far and dragged your captain to the shame of a defeat merely to prove +yourselves cowards. Oh! Be men, or be more than men. Be steady to your +purposes and firm as a rock. This ice is not made of such stuff as your +hearts may be; it is mutable and cannot withstand you if you say that it +shall not. Do not return to your families with the stigma of disgrace +marked on your brows. Return as heroes who have fought and conquered and +who know not what it is to turn their backs on the foe.” + +He spoke this with a voice so modulated to the different feelings expressed +in his speech, with an eye so full of lofty design and heroism, that can +you wonder that these men were moved? They looked at one another and were +unable to reply. I spoke; I told them to retire and consider of what had +been said, that I would not lead them farther north if they strenuously +desired the contrary, but that I hoped that, with reflection, their courage +would return. + +They retired and I turned towards my friend, but he was sunk in languor and +almost deprived of life. + +How all this will terminate, I know not, but I had rather die than +return shamefully, my purpose unfulfilled. Yet I fear such will be my +fate; the men, unsupported by ideas of glory and honour, can never +willingly continue to endure their present hardships. + +September 7th. + + +The die is cast; I have consented to return if we are not destroyed. +Thus are my hopes blasted by cowardice and indecision; I come back +ignorant and disappointed. It requires more philosophy than I possess +to bear this injustice with patience. + +September 12th. + + +It is past; I am returning to England. I have lost my hopes of utility +and glory; I have lost my friend. But I will endeavour to detail these +bitter circumstances to you, my dear sister; and while I am wafted +towards England and towards you, I will not despond. + +September 9th, the ice began to move, and roarings like thunder were heard +at a distance as the islands split and cracked in every direction. We were +in the most imminent peril, but as we could only remain passive, my chief +attention was occupied by my unfortunate guest whose illness increased in +such a degree that he was entirely confined to his bed. The ice cracked +behind us and was driven with force towards the north; a breeze sprang from +the west, and on the 11th the passage towards the south became perfectly +free. When the sailors saw this and that their return to their native +country was apparently assured, a shout of tumultuous joy broke from them, +loud and long-continued. Frankenstein, who was dozing, awoke and asked the +cause of the tumult. “They shout,” I said, “because they +will soon return to England.” + +“Do you, then, really return?” + +“Alas! Yes; I cannot withstand their demands. I cannot lead them +unwillingly to danger, and I must return.” + +“Do so, if you will; but I will not. You may give up your purpose, but +mine is assigned to me by Heaven, and I dare not. I am weak, but +surely the spirits who assist my vengeance will endow me with +sufficient strength.” Saying this, he endeavoured to spring from the +bed, but the exertion was too great for him; he fell back and fainted. + +It was long before he was restored, and I often thought that life was +entirely extinct. At length he opened his eyes; he breathed with +difficulty and was unable to speak. The surgeon gave him a composing +draught and ordered us to leave him undisturbed. In the meantime he +told me that my friend had certainly not many hours to live. + +His sentence was pronounced, and I could only grieve and be patient. I sat +by his bed, watching him; his eyes were closed, and I thought he slept; but +presently he called to me in a feeble voice, and bidding me come near, +said, “Alas! The strength I relied on is gone; I feel that I shall +soon die, and he, my enemy and persecutor, may still be in being. Think +not, Walton, that in the last moments of my existence I feel that burning +hatred and ardent desire of revenge I once expressed; but I feel myself +justified in desiring the death of my adversary. During these last days I +have been occupied in examining my past conduct; nor do I find it blamable. +In a fit of enthusiastic madness I created a rational creature and was +bound towards him to assure, as far as was in my power, his happiness and +well-being. This was my duty, but there was another still paramount to +that. My duties towards the beings of my own species had greater claims to +my attention because they included a greater proportion of happiness or +misery. Urged by this view, I refused, and I did right in refusing, to +create a companion for the first creature. He showed unparalleled malignity +and selfishness in evil; he destroyed my friends; he devoted to destruction +beings who possessed exquisite sensations, happiness, and wisdom; nor do I +know where this thirst for vengeance may end. Miserable himself that he may +render no other wretched, he ought to die. The task of his destruction was +mine, but I have failed. When actuated by selfish and vicious motives, I +asked you to undertake my unfinished work, and I renew this request now, +when I am only induced by reason and virtue. + +“Yet I cannot ask you to renounce your country and friends to fulfil +this task; and now that you are returning to England, you will have +little chance of meeting with him. But the consideration of these +points, and the well balancing of what you may esteem your duties, I +leave to you; my judgment and ideas are already disturbed by the near +approach of death. I dare not ask you to do what I think right, for I +may still be misled by passion. + +“That he should live to be an instrument of mischief disturbs me; in +other respects, this hour, when I momentarily expect my release, is the +only happy one which I have enjoyed for several years. The forms of +the beloved dead flit before me, and I hasten to their arms. Farewell, +Walton! Seek happiness in tranquillity and avoid ambition, even if it +be only the apparently innocent one of distinguishing yourself in +science and discoveries. Yet why do I say this? I have myself been +blasted in these hopes, yet another may succeed.” + +His voice became fainter as he spoke, and at length, exhausted by his +effort, he sank into silence. About half an hour afterwards he +attempted again to speak but was unable; he pressed my hand feebly, and +his eyes closed for ever, while the irradiation of a gentle smile passed +away from his lips. + +Margaret, what comment can I make on the untimely extinction of this +glorious spirit? What can I say that will enable you to understand the +depth of my sorrow? All that I should express would be inadequate and +feeble. My tears flow; my mind is overshadowed by a cloud of +disappointment. But I journey towards England, and I may there find +consolation. + +I am interrupted. What do these sounds portend? It is midnight; the +breeze blows fairly, and the watch on deck scarcely stir. Again there +is a sound as of a human voice, but hoarser; it comes from the cabin +where the remains of Frankenstein still lie. I must arise and examine. +Good night, my sister. + +Great God! what a scene has just taken place! I am yet dizzy with the +remembrance of it. I hardly know whether I shall have the power to detail +it; yet the tale which I have recorded would be incomplete without this +final and wonderful catastrophe. + +I entered the cabin where lay the remains of my ill-fated and admirable +friend. Over him hung a form which I cannot find words to +describe—gigantic in stature, yet uncouth and distorted in its +proportions. As he hung over the coffin, his face was concealed by long +locks of ragged hair; but one vast hand was extended, in colour and +apparent texture like that of a mummy. When he heard the sound of my +approach, he ceased to utter exclamations of grief and horror and sprung +towards the window. Never did I behold a vision so horrible as his face, of +such loathsome yet appalling hideousness. I shut my eyes involuntarily and +endeavoured to recollect what were my duties with regard to this destroyer. +I called on him to stay. + +He paused, looking on me with wonder, and again turning towards the +lifeless form of his creator, he seemed to forget my presence, and +every feature and gesture seemed instigated by the wildest rage of some +uncontrollable passion. + +“That is also my victim!” he exclaimed. “In his murder my +crimes are consummated; the miserable series of my being is wound to its +close! Oh, Frankenstein! Generous and self-devoted being! What does it +avail that I now ask thee to pardon me? I, who irretrievably destroyed thee +by destroying all thou lovedst. Alas! He is cold, he cannot answer +me.” + +His voice seemed suffocated, and my first impulses, which had suggested to +me the duty of obeying the dying request of my friend in destroying his +enemy, were now suspended by a mixture of curiosity and compassion. I +approached this tremendous being; I dared not again raise my eyes to his +face, there was something so scaring and unearthly in his ugliness. I +attempted to speak, but the words died away on my lips. The monster +continued to utter wild and incoherent self-reproaches. At length I +gathered resolution to address him in a pause of the tempest of his passion. + +“Your repentance,” I said, “is now superfluous. If you +had listened to the voice of conscience and heeded the stings of remorse +before you had urged your diabolical vengeance to this extremity, +Frankenstein would yet have lived.” + +“And do you dream?” said the dæmon. “Do you think that I was then +dead to agony and remorse? He,” he continued, pointing to the corpse, +“he suffered not in the consummation of the deed. Oh! Not the +ten-thousandth portion of the anguish that was mine during the +lingering detail of its execution. A frightful selfishness hurried me +on, while my heart was poisoned with remorse. Think you that the +groans of Clerval were music to my ears? My heart was fashioned to be +susceptible of love and sympathy, and when wrenched by misery to vice +and hatred, it did not endure the violence of the change without +torture such as you cannot even imagine. + +“After the murder of Clerval I returned to Switzerland, heart-broken +and overcome. I pitied Frankenstein; my pity amounted to horror; I +abhorred myself. But when I discovered that he, the author at once of +my existence and of its unspeakable torments, dared to hope for +happiness, that while he accumulated wretchedness and despair upon me +he sought his own enjoyment in feelings and passions from the +indulgence of which I was for ever barred, then impotent envy and bitter +indignation filled me with an insatiable thirst for vengeance. I +recollected my threat and resolved that it should be accomplished. I +knew that I was preparing for myself a deadly torture, but I was the +slave, not the master, of an impulse which I detested yet could not +disobey. Yet when she died! Nay, then I was not miserable. I had +cast off all feeling, subdued all anguish, to riot in the excess of my +despair. Evil thenceforth became my good. Urged thus far, I had no +choice but to adapt my nature to an element which I had willingly +chosen. The completion of my demoniacal design became an insatiable +passion. And now it is ended; there is my last victim!” + +I was at first touched by the expressions of his misery; yet, when I called +to mind what Frankenstein had said of his powers of eloquence and +persuasion, and when I again cast my eyes on the lifeless form of my +friend, indignation was rekindled within me. “Wretch!” I said. +“It is well that you come here to whine over the desolation that you +have made. You throw a torch into a pile of buildings, and when they are +consumed, you sit among the ruins and lament the fall. Hypocritical fiend! +If he whom you mourn still lived, still would he be the object, again would +he become the prey, of your accursed vengeance. It is not pity that you +feel; you lament only because the victim of your malignity is withdrawn +from your power.” + +“Oh, it is not thus—not thus,” interrupted the being. +“Yet such must be the impression conveyed to you by what appears to +be the purport of my actions. Yet I seek not a fellow feeling in my misery. +No sympathy may I ever find. When I first sought it, it was the love of +virtue, the feelings of happiness and affection with which my whole being +overflowed, that I wished to be participated. But now that virtue has +become to me a shadow, and that happiness and affection are turned into +bitter and loathing despair, in what should I seek for sympathy? I am +content to suffer alone while my sufferings shall endure; when I die, I am +well satisfied that abhorrence and opprobrium should load my memory. Once +my fancy was soothed with dreams of virtue, of fame, and of enjoyment. Once +I falsely hoped to meet with beings who, pardoning my outward form, would +love me for the excellent qualities which I was capable of unfolding. I was +nourished with high thoughts of honour and devotion. But now crime has +degraded me beneath the meanest animal. No guilt, no mischief, no +malignity, no misery, can be found comparable to mine. When I run over the +frightful catalogue of my sins, I cannot believe that I am the same +creature whose thoughts were once filled with sublime and transcendent +visions of the beauty and the majesty of goodness. But it is even so; the +fallen angel becomes a malignant devil. Yet even that enemy of God and man +had friends and associates in his desolation; I am alone. + +“You, who call Frankenstein your friend, seem to have a knowledge of my +crimes and his misfortunes. But in the detail which he gave you of them +he could not sum up the hours and months of misery which I endured +wasting in impotent passions. For while I destroyed his hopes, I did +not satisfy my own desires. They were for ever ardent and craving; still +I desired love and fellowship, and I was still spurned. Was there no +injustice in this? Am I to be thought the only criminal, when all +humankind sinned against me? Why do you not hate Felix, who drove his +friend from his door with contumely? Why do you not execrate the rustic +who sought to destroy the saviour of his child? Nay, these are virtuous +and immaculate beings! I, the miserable and the abandoned, am an +abortion, to be spurned at, and kicked, and trampled on. Even now my +blood boils at the recollection of this injustice. + +“But it is true that I am a wretch. I have murdered the lovely and +the helpless; I have strangled the innocent as they slept and grasped to +death his throat who never injured me or any other living thing. I have +devoted my creator, the select specimen of all that is worthy of love and +admiration among men, to misery; I have pursued him even to that +irremediable ruin. There he lies, white and cold in death. You hate me, but +your abhorrence cannot equal that with which I regard myself. I look on the +hands which executed the deed; I think on the heart in which the +imagination of it was conceived and long for the moment when these hands +will meet my eyes, when that imagination will haunt my thoughts no more. + +“Fear not that I shall be the instrument of future mischief. My work +is nearly complete. Neither yours nor any man’s death is needed to +consummate the series of my being and accomplish that which must be done, +but it requires my own. Do not think that I shall be slow to perform this +sacrifice. I shall quit your vessel on the ice raft which brought me +thither and shall seek the most northern extremity of the globe; I shall +collect my funeral pile and consume to ashes this miserable frame, that its +remains may afford no light to any curious and unhallowed wretch who would +create such another as I have been. I shall die. I shall no longer feel the +agonies which now consume me or be the prey of feelings unsatisfied, yet +unquenched. He is dead who called me into being; and when I shall be no +more, the very remembrance of us both will speedily vanish. I shall no +longer see the sun or stars or feel the winds play on my cheeks. Light, +feeling, and sense will pass away; and in this condition must I find my +happiness. Some years ago, when the images which this world affords first +opened upon me, when I felt the cheering warmth of summer and heard the +rustling of the leaves and the warbling of the birds, and these were all to +me, I should have wept to die; now it is my only consolation. Polluted by +crimes and torn by the bitterest remorse, where can I find rest but in +death? + +“Farewell! I leave you, and in you the last of humankind whom these +eyes will ever behold. Farewell, Frankenstein! If thou wert yet alive +and yet cherished a desire of revenge against me, it would be better +satiated in my life than in my destruction. But it was not so; thou +didst seek my extinction, that I might not cause greater wretchedness; +and if yet, in some mode unknown to me, thou hadst not ceased to think +and feel, thou wouldst not desire against me a vengeance greater than +that which I feel. Blasted as thou wert, my agony was still superior to +thine, for the bitter sting of remorse will not cease to rankle in my +wounds until death shall close them for ever. + +“But soon,” he cried with sad and solemn enthusiasm, “I +shall die, and what I now feel be no longer felt. Soon these burning +miseries will be extinct. I shall ascend my funeral pile triumphantly and +exult in the agony of the torturing flames. The light of that conflagration +will fade away; my ashes will be swept into the sea by the winds. My spirit +will sleep in peace, or if it thinks, it will not surely think thus. +Farewell.” + +He sprang from the cabin-window as he said this, upon the ice raft +which lay close to the vessel. He was soon borne away by the waves and +lost in darkness and distance. diff --git a/text/ulysses.txt b/text/ulysses.txt new file mode 100644 index 0000000..40c2559 --- /dev/null +++ b/text/ulysses.txt @@ -0,0 +1,33214 @@ +The Project Gutenberg eBook of Ulysses + +This ebook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this ebook or online +at www.gutenberg.org. If you are not located in the United States, +you will have to check the laws of the country where you are located +before using this eBook. + +Title: Ulysses + +Author: James Joyce + +Release date: July 1, 2003 [eBook #4300] + Most recently updated: November 27, 2025 + +Language: English + +Credits: EBook produced by Col Choat. + + +*** START OF THE PROJECT GUTENBERG EBOOK ULYSSES *** + +[Illustration] + + + + +Ulysses + + +by James Joyce + + +Contents + + — I — + + [ 1 ] + [ 2 ] + [ 3 ] + + — II — + + [ 4 ] + [ 5 ] + [ 6 ] + [ 7 ] + [ 8 ] + [ 9 ] + [ 10 ] + [ 11 ] + [ 12 ] + [ 13 ] + [ 14 ] + [ 15 ] + + — III — + + [ 16 ] + [ 17 ] + [ 18 ] + + + + +— I — + + +[ 1 ] + +Stately, plump Buck Mulligan came from the stairhead, bearing a bowl of +lather on which a mirror and a razor lay crossed. A yellow +dressinggown, ungirdled, was sustained gently behind him on the mild +morning air. He held the bowl aloft and intoned: + +—_Introibo ad altare Dei_. + +Halted, he peered down the dark winding stairs and called out coarsely: + +—Come up, Kinch! Come up, you fearful jesuit! + +Solemnly he came forward and mounted the round gunrest. He faced about +and blessed gravely thrice the tower, the surrounding land and the +awaking mountains. Then, catching sight of Stephen Dedalus, he bent +towards him and made rapid crosses in the air, gurgling in his throat +and shaking his head. Stephen Dedalus, displeased and sleepy, leaned +his arms on the top of the staircase and looked coldly at the shaking +gurgling face that blessed him, equine in its length, and at the light +untonsured hair, grained and hued like pale oak. + +Buck Mulligan peeped an instant under the mirror and then covered the +bowl smartly. + +—Back to barracks! he said sternly. + +He added in a preacher’s tone: + +—For this, O dearly beloved, is the genuine Christine: body and soul +and blood and ouns. Slow music, please. Shut your eyes, gents. One +moment. A little trouble about those white corpuscles. Silence, all. + +He peered sideways up and gave a long slow whistle of call, then paused +awhile in rapt attention, his even white teeth glistening here and +there with gold points. Chrysostomos. Two strong shrill whistles +answered through the calm. + +—Thanks, old chap, he cried briskly. That will do nicely. Switch off +the current, will you? + +He skipped off the gunrest and looked gravely at his watcher, gathering +about his legs the loose folds of his gown. The plump shadowed face and +sullen oval jowl recalled a prelate, patron of arts in the middle ages. +A pleasant smile broke quietly over his lips. + +—The mockery of it! he said gaily. Your absurd name, an ancient Greek! + +He pointed his finger in friendly jest and went over to the parapet, +laughing to himself. Stephen Dedalus stepped up, followed him wearily +halfway and sat down on the edge of the gunrest, watching him still as +he propped his mirror on the parapet, dipped the brush in the bowl and +lathered cheeks and neck. + +Buck Mulligan’s gay voice went on. + +—My name is absurd too: Malachi Mulligan, two dactyls. But it has a +Hellenic ring, hasn’t it? Tripping and sunny like the buck himself. We +must go to Athens. Will you come if I can get the aunt to fork out +twenty quid? + +He laid the brush aside and, laughing with delight, cried: + +—Will he come? The jejune jesuit! + +Ceasing, he began to shave with care. + +—Tell me, Mulligan, Stephen said quietly. + +—Yes, my love? + +—How long is Haines going to stay in this tower? + +Buck Mulligan showed a shaven cheek over his right shoulder. + +—God, isn’t he dreadful? he said frankly. A ponderous Saxon. He thinks +you’re not a gentleman. God, these bloody English! Bursting with money +and indigestion. Because he comes from Oxford. You know, Dedalus, you +have the real Oxford manner. He can’t make you out. O, my name for you +is the best: Kinch, the knife-blade. + +He shaved warily over his chin. + +—He was raving all night about a black panther, Stephen said. Where is +his guncase? + +—A woful lunatic! Mulligan said. Were you in a funk? + +—I was, Stephen said with energy and growing fear. Out here in the dark +with a man I don’t know raving and moaning to himself about shooting a +black panther. You saved men from drowning. I’m not a hero, however. If +he stays on here I am off. + +Buck Mulligan frowned at the lather on his razorblade. He hopped down +from his perch and began to search his trouser pockets hastily. + +—Scutter! he cried thickly. + +He came over to the gunrest and, thrusting a hand into Stephen’s upper +pocket, said: + +—Lend us a loan of your noserag to wipe my razor. + +Stephen suffered him to pull out and hold up on show by its corner a +dirty crumpled handkerchief. Buck Mulligan wiped the razorblade neatly. +Then, gazing over the handkerchief, he said: + +—The bard’s noserag! A new art colour for our Irish poets: snotgreen. +You can almost taste it, can’t you? + +He mounted to the parapet again and gazed out over Dublin bay, his fair +oakpale hair stirring slightly. + +—God! he said quietly. Isn’t the sea what Algy calls it: a great sweet +mother? The snotgreen sea. The scrotumtightening sea. _Epi oinopa +ponton_. Ah, Dedalus, the Greeks! I must teach you. You must read them +in the original. _Thalatta! Thalatta!_ She is our great sweet mother. +Come and look. + +Stephen stood up and went over to the parapet. Leaning on it he looked +down on the water and on the mailboat clearing the harbourmouth of +Kingstown. + +—Our mighty mother! Buck Mulligan said. + +He turned abruptly his grey searching eyes from the sea to Stephen’s +face. + +—The aunt thinks you killed your mother, he said. That’s why she won’t +let me have anything to do with you. + +—Someone killed her, Stephen said gloomily. + +—You could have knelt down, damn it, Kinch, when your dying mother +asked you, Buck Mulligan said. I’m hyperborean as much as you. But to +think of your mother begging you with her last breath to kneel down and +pray for her. And you refused. There is something sinister in you.... + +He broke off and lathered again lightly his farther cheek. A tolerant +smile curled his lips. + +—But a lovely mummer! he murmured to himself. Kinch, the loveliest +mummer of them all! + +He shaved evenly and with care, in silence, seriously. + +Stephen, an elbow rested on the jagged granite, leaned his palm against +his brow and gazed at the fraying edge of his shiny black coat-sleeve. +Pain, that was not yet the pain of love, fretted his heart. Silently, +in a dream she had come to him after her death, her wasted body within +its loose brown graveclothes giving off an odour of wax and rosewood, +her breath, that had bent upon him, mute, reproachful, a faint odour of +wetted ashes. Across the threadbare cuffedge he saw the sea hailed as a +great sweet mother by the wellfed voice beside him. The ring of bay and +skyline held a dull green mass of liquid. A bowl of white china had +stood beside her deathbed holding the green sluggish bile which she had +torn up from her rotting liver by fits of loud groaning vomiting. + +Buck Mulligan wiped again his razorblade. + +—Ah, poor dogsbody! he said in a kind voice. I must give you a shirt +and a few noserags. How are the secondhand breeks? + +—They fit well enough, Stephen answered. + +Buck Mulligan attacked the hollow beneath his underlip. + +—The mockery of it, he said contentedly. Secondleg they should be. God +knows what poxy bowsy left them off. I have a lovely pair with a hair +stripe, grey. You’ll look spiffing in them. I’m not joking, Kinch. You +look damn well when you’re dressed. + +—Thanks, Stephen said. I can’t wear them if they are grey. + +—He can’t wear them, Buck Mulligan told his face in the mirror. +Etiquette is etiquette. He kills his mother but he can’t wear grey +trousers. + +He folded his razor neatly and with stroking palps of fingers felt the +smooth skin. + +Stephen turned his gaze from the sea and to the plump face with its +smokeblue mobile eyes. + +—That fellow I was with in the Ship last night, said Buck Mulligan, +says you have g. p. i. He’s up in Dottyville with Connolly Norman. +General paralysis of the insane! + +He swept the mirror a half circle in the air to flash the tidings +abroad in sunlight now radiant on the sea. His curling shaven lips +laughed and the edges of his white glittering teeth. Laughter seized +all his strong wellknit trunk. + +—Look at yourself, he said, you dreadful bard! + +Stephen bent forward and peered at the mirror held out to him, cleft by +a crooked crack. Hair on end. As he and others see me. Who chose this +face for me? This dogsbody to rid of vermin. It asks me too. + +—I pinched it out of the skivvy’s room, Buck Mulligan said. It does her +all right. The aunt always keeps plainlooking servants for Malachi. +Lead him not into temptation. And her name is Ursula. + +Laughing again, he brought the mirror away from Stephen’s peering eyes. + +—The rage of Caliban at not seeing his face in a mirror, he said. If +Wilde were only alive to see you! + +Drawing back and pointing, Stephen said with bitterness: + +—It is a symbol of Irish art. The cracked lookingglass of a servant. + +Buck Mulligan suddenly linked his arm in Stephen’s and walked with him +round the tower, his razor and mirror clacking in the pocket where he +had thrust them. + +—It’s not fair to tease you like that, Kinch, is it? he said kindly. +God knows you have more spirit than any of them. + +Parried again. He fears the lancet of my art as I fear that of his. The +cold steel pen. + +—Cracked lookingglass of a servant! Tell that to the oxy chap +downstairs and touch him for a guinea. He’s stinking with money and +thinks you’re not a gentleman. His old fellow made his tin by selling +jalap to Zulus or some bloody swindle or other. God, Kinch, if you and +I could only work together we might do something for the island. +Hellenise it. + +Cranly’s arm. His arm. + +—And to think of your having to beg from these swine. I’m the only one +that knows what you are. Why don’t you trust me more? What have you up +your nose against me? Is it Haines? If he makes any noise here I’ll +bring down Seymour and we’ll give him a ragging worse than they gave +Clive Kempthorpe. + +Young shouts of moneyed voices in Clive Kempthorpe’s rooms. Palefaces: +they hold their ribs with laughter, one clasping another. O, I shall +expire! Break the news to her gently, Aubrey! I shall die! With slit +ribbons of his shirt whipping the air he hops and hobbles round the +table, with trousers down at heels, chased by Ades of Magdalen with the +tailor’s shears. A scared calf’s face gilded with marmalade. I don’t +want to be debagged! Don’t you play the giddy ox with me! + +Shouts from the open window startling evening in the quadrangle. A deaf +gardener, aproned, masked with Matthew Arnold’s face, pushes his mower +on the sombre lawn watching narrowly the dancing motes of grasshalms. + +To ourselves... new paganism... omphalos. + +—Let him stay, Stephen said. There’s nothing wrong with him except at +night. + +—Then what is it? Buck Mulligan asked impatiently. Cough it up. I’m +quite frank with you. What have you against me now? + +They halted, looking towards the blunt cape of Bray Head that lay on +the water like the snout of a sleeping whale. Stephen freed his arm +quietly. + +—Do you wish me to tell you? he asked. + +—Yes, what is it? Buck Mulligan answered. I don’t remember anything. + +He looked in Stephen’s face as he spoke. A light wind passed his brow, +fanning softly his fair uncombed hair and stirring silver points of +anxiety in his eyes. + +Stephen, depressed by his own voice, said: + +—Do you remember the first day I went to your house after my mother’s +death? + +Buck Mulligan frowned quickly and said: + +—What? Where? I can’t remember anything. I remember only ideas and +sensations. Why? What happened in the name of God? + +—You were making tea, Stephen said, and went across the landing to get +more hot water. Your mother and some visitor came out of the +drawingroom. She asked you who was in your room. + +—Yes? Buck Mulligan said. What did I say? I forget. + +—You said, Stephen answered, _O, it’s only Dedalus whose mother is +beastly dead._ + +A flush which made him seem younger and more engaging rose to Buck +Mulligan’s cheek. + +—Did I say that? he asked. Well? What harm is that? + +He shook his constraint from him nervously. + +—And what is death, he asked, your mother’s or yours or my own? You saw +only your mother die. I see them pop off every day in the Mater and +Richmond and cut up into tripes in the dissectingroom. It’s a beastly +thing and nothing else. It simply doesn’t matter. You wouldn’t kneel +down to pray for your mother on her deathbed when she asked you. Why? +Because you have the cursed jesuit strain in you, only it’s injected +the wrong way. To me it’s all a mockery and beastly. Her cerebral lobes +are not functioning. She calls the doctor sir Peter Teazle and picks +buttercups off the quilt. Humour her till it’s over. You crossed her +last wish in death and yet you sulk with me because I don’t whinge like +some hired mute from Lalouette’s. Absurd! I suppose I did say it. I +didn’t mean to offend the memory of your mother. + +He had spoken himself into boldness. Stephen, shielding the gaping +wounds which the words had left in his heart, said very coldly: + +—I am not thinking of the offence to my mother. + +—Of what then? Buck Mulligan asked. + +—Of the offence to me, Stephen answered. + +Buck Mulligan swung round on his heel. + +—O, an impossible person! he exclaimed. + +He walked off quickly round the parapet. Stephen stood at his post, +gazing over the calm sea towards the headland. Sea and headland now +grew dim. Pulses were beating in his eyes, veiling their sight, and he +felt the fever of his cheeks. + +A voice within the tower called loudly: + +—Are you up there, Mulligan? + +—I’m coming, Buck Mulligan answered. + +He turned towards Stephen and said: + +—Look at the sea. What does it care about offences? Chuck Loyola, +Kinch, and come on down. The Sassenach wants his morning rashers. + +His head halted again for a moment at the top of the staircase, level +with the roof: + +—Don’t mope over it all day, he said. I’m inconsequent. Give up the +moody brooding. + +His head vanished but the drone of his descending voice boomed out of +the stairhead: + + And no more turn aside and brood + Upon love’s bitter mystery + For Fergus rules the brazen cars. + +Woodshadows floated silently by through the morning peace from the +stairhead seaward where he gazed. Inshore and farther out the mirror of +water whitened, spurned by lightshod hurrying feet. White breast of the +dim sea. The twining stresses, two by two. A hand plucking the +harpstrings, merging their twining chords. Wavewhite wedded words +shimmering on the dim tide. + +A cloud began to cover the sun slowly, wholly, shadowing the bay in +deeper green. It lay beneath him, a bowl of bitter waters. Fergus’ +song: I sang it alone in the house, holding down the long dark chords. +Her door was open: she wanted to hear my music. Silent with awe and +pity I went to her bedside. She was crying in her wretched bed. For +those words, Stephen: love’s bitter mystery. + +Where now? + +Her secrets: old featherfans, tasselled dancecards, powdered with musk, +a gaud of amber beads in her locked drawer. A birdcage hung in the +sunny window of her house when she was a girl. She heard old Royce sing +in the pantomime of Turko the Terrible and laughed with others when he +sang: + + I am the boy + That can enjoy + Invisibility. + +Phantasmal mirth, folded away: muskperfumed. + + And no more turn aside and brood. + + +Folded away in the memory of nature with her toys. Memories beset his +brooding brain. Her glass of water from the kitchen tap when she had +approached the sacrament. A cored apple, filled with brown sugar, +roasting for her at the hob on a dark autumn evening. Her shapely +fingernails reddened by the blood of squashed lice from the children’s +shirts. + +In a dream, silently, she had come to him, her wasted body within its +loose graveclothes giving off an odour of wax and rosewood, her breath, +bent over him with mute secret words, a faint odour of wetted ashes. + +Her glazing eyes, staring out of death, to shake and bend my soul. On +me alone. The ghostcandle to light her agony. Ghostly light on the +tortured face. Her hoarse loud breath rattling in horror, while all +prayed on their knees. Her eyes on me to strike me down. _Liliata +rutilantium te confessorum turma circumdet: iubilantium te virginum +chorus excipiat._ + +Ghoul! Chewer of corpses! + +No, mother! Let me be and let me live. + +—Kinch ahoy! + +Buck Mulligan’s voice sang from within the tower. It came nearer up the +staircase, calling again. Stephen, still trembling at his soul’s cry, +heard warm running sunlight and in the air behind him friendly words. + +—Dedalus, come down, like a good mosey. Breakfast is ready. Haines is +apologising for waking us last night. It’s all right. + +—I’m coming, Stephen said, turning. + +—Do, for Jesus’ sake, Buck Mulligan said. For my sake and for all our +sakes. + +His head disappeared and reappeared. + +—I told him your symbol of Irish art. He says it’s very clever. Touch +him for a quid, will you? A guinea, I mean. + +—I get paid this morning, Stephen said. + +—The school kip? Buck Mulligan said. How much? Four quid? Lend us one. + +—If you want it, Stephen said. + +—Four shining sovereigns, Buck Mulligan cried with delight. We’ll have +a glorious drunk to astonish the druidy druids. Four omnipotent +sovereigns. + +He flung up his hands and tramped down the stone stairs, singing out of +tune with a Cockney accent: + + O, won’t we have a merry time, + Drinking whisky, beer and wine! + On coronation, + Coronation day! + O, won’t we have a merry time + On coronation day! + +Warm sunshine merrying over the sea. The nickel shavingbowl shone, +forgotten, on the parapet. Why should I bring it down? Or leave it +there all day, forgotten friendship? + +He went over to it, held it in his hands awhile, feeling its coolness, +smelling the clammy slaver of the lather in which the brush was stuck. +So I carried the boat of incense then at Clongowes. I am another now +and yet the same. A servant too. A server of a servant. + +In the gloomy domed livingroom of the tower Buck Mulligan’s gowned form +moved briskly to and fro about the hearth, hiding and revealing its +yellow glow. Two shafts of soft daylight fell across the flagged floor +from the high barbacans: and at the meeting of their rays a cloud of +coalsmoke and fumes of fried grease floated, turning. + +—We’ll be choked, Buck Mulligan said. Haines, open that door, will you? + +Stephen laid the shavingbowl on the locker. A tall figure rose from the +hammock where it had been sitting, went to the doorway and pulled open +the inner doors. + +—Have you the key? a voice asked. + +—Dedalus has it, Buck Mulligan said. Janey Mack, I’m choked! + +He howled, without looking up from the fire: + +—Kinch! + +—It’s in the lock, Stephen said, coming forward. + +The key scraped round harshly twice and, when the heavy door had been +set ajar, welcome light and bright air entered. Haines stood at the +doorway, looking out. Stephen haled his upended valise to the table and +sat down to wait. Buck Mulligan tossed the fry on to the dish beside +him. Then he carried the dish and a large teapot over to the table, set +them down heavily and sighed with relief. + +—I’m melting, he said, as the candle remarked when... But, hush! Not a +word more on that subject! Kinch, wake up! Bread, butter, honey. +Haines, come in. The grub is ready. Bless us, O Lord, and these thy +gifts. Where’s the sugar? O, jay, there’s no milk. + +Stephen fetched the loaf and the pot of honey and the buttercooler from +the locker. Buck Mulligan sat down in a sudden pet. + +—What sort of a kip is this? he said. I told her to come after eight. + +—We can drink it black, Stephen said thirstily. There’s a lemon in the +locker. + +—O, damn you and your Paris fads! Buck Mulligan said. I want Sandycove +milk. + +Haines came in from the doorway and said quietly: + +—That woman is coming up with the milk. + +—The blessings of God on you! Buck Mulligan cried, jumping up from his +chair. Sit down. Pour out the tea there. The sugar is in the bag. Here, +I can’t go fumbling at the damned eggs. + +He hacked through the fry on the dish and slapped it out on three +plates, saying: + +—_In nomine Patris et Filii et Spiritus Sancti._ + +Haines sat down to pour out the tea. + +—I’m giving you two lumps each, he said. But, I say, Mulligan, you do +make strong tea, don’t you? + +Buck Mulligan, hewing thick slices from the loaf, said in an old +woman’s wheedling voice: + +—When I makes tea I makes tea, as old mother Grogan said. And when I +makes water I makes water. + +—By Jove, it is tea, Haines said. + +Buck Mulligan went on hewing and wheedling: + +—_So I do, Mrs Cahill,_ says she. _Begob, ma’am,_ says Mrs Cahill, _God +send you don’t make them in the one pot._ + +He lunged towards his messmates in turn a thick slice of bread, impaled +on his knife. + +—That’s folk, he said very earnestly, for your book, Haines. Five lines +of text and ten pages of notes about the folk and the fishgods of +Dundrum. Printed by the weird sisters in the year of the big wind. + +He turned to Stephen and asked in a fine puzzled voice, lifting his +brows: + +—Can you recall, brother, is mother Grogan’s tea and water pot spoken +of in the Mabinogion or is it in the Upanishads? + +—I doubt it, said Stephen gravely. + +—Do you now? Buck Mulligan said in the same tone. Your reasons, pray? + +—I fancy, Stephen said as he ate, it did not exist in or out of the +Mabinogion. Mother Grogan was, one imagines, a kinswoman of Mary Ann. + +Buck Mulligan’s face smiled with delight. + +—Charming! he said in a finical sweet voice, showing his white teeth +and blinking his eyes pleasantly. Do you think she was? Quite charming! + +Then, suddenly overclouding all his features, he growled in a hoarsened +rasping voice as he hewed again vigorously at the loaf: + +_—For old Mary Ann + +She doesn’t care a damn. + +But, hising up her petticoats..._ + +He crammed his mouth with fry and munched and droned. + +The doorway was darkened by an entering form. + +—The milk, sir! + +—Come in, ma’am, Mulligan said. Kinch, get the jug. + +An old woman came forward and stood by Stephen’s elbow. + +—That’s a lovely morning, sir, she said. Glory be to God. + +—To whom? Mulligan said, glancing at her. Ah, to be sure! + +Stephen reached back and took the milkjug from the locker. + +—The islanders, Mulligan said to Haines casually, speak frequently of +the collector of prepuces. + +—How much, sir? asked the old woman. + +—A quart, Stephen said. + +He watched her pour into the measure and thence into the jug rich white +milk, not hers. Old shrunken paps. She poured again a measureful and a +tilly. Old and secret she had entered from a morning world, maybe a +messenger. She praised the goodness of the milk, pouring it out. +Crouching by a patient cow at daybreak in the lush field, a witch on +her toadstool, her wrinkled fingers quick at the squirting dugs. They +lowed about her whom they knew, dewsilky cattle. Silk of the kine and +poor old woman, names given her in old times. A wandering crone, lowly +form of an immortal serving her conqueror and her gay betrayer, their +common cuckquean, a messenger from the secret morning. To serve or to +upbraid, whether he could not tell: but scorned to beg her favour. + +—It is indeed, ma’am, Buck Mulligan said, pouring milk into their cups. + +—Taste it, sir, she said. + +He drank at her bidding. + +—If we could live on good food like that, he said to her somewhat +loudly, we wouldn’t have the country full of rotten teeth and rotten +guts. Living in a bogswamp, eating cheap food and the streets paved +with dust, horsedung and consumptives’ spits. + +—Are you a medical student, sir? the old woman asked. + +—I am, ma’am, Buck Mulligan answered. + +—Look at that now, she said. + +Stephen listened in scornful silence. She bows her old head to a voice +that speaks to her loudly, her bonesetter, her medicineman: me she +slights. To the voice that will shrive and oil for the grave all there +is of her but her woman’s unclean loins, of man’s flesh made not in +God’s likeness, the serpent’s prey. And to the loud voice that now bids +her be silent with wondering unsteady eyes. + +—Do you understand what he says? Stephen asked her. + +—Is it French you are talking, sir? the old woman said to Haines. + +Haines spoke to her again a longer speech, confidently. + +—Irish, Buck Mulligan said. Is there Gaelic on you? + +—I thought it was Irish, she said, by the sound of it. Are you from the +west, sir? + +—I am an Englishman, Haines answered. + +—He’s English, Buck Mulligan said, and he thinks we ought to speak +Irish in Ireland. + +—Sure we ought to, the old woman said, and I’m ashamed I don’t speak +the language myself. I’m told it’s a grand language by them that knows. + +—Grand is no name for it, said Buck Mulligan. Wonderful entirely. Fill +us out some more tea, Kinch. Would you like a cup, ma’am? + +—No, thank you, sir, the old woman said, slipping the ring of the +milkcan on her forearm and about to go. + +Haines said to her: + +—Have you your bill? We had better pay her, Mulligan, hadn’t we? + +Stephen filled again the three cups. + +—Bill, sir? she said, halting. Well, it’s seven mornings a pint at +twopence is seven twos is a shilling and twopence over and these three +mornings a quart at fourpence is three quarts is a shilling. That’s a +shilling and one and two is two and two, sir. + +Buck Mulligan sighed and, having filled his mouth with a crust thickly +buttered on both sides, stretched forth his legs and began to search +his trouser pockets. + +—Pay up and look pleasant, Haines said to him, smiling. + +Stephen filled a third cup, a spoonful of tea colouring faintly the +thick rich milk. Buck Mulligan brought up a florin, twisted it round in +his fingers and cried: + +—A miracle! + +He passed it along the table towards the old woman, saying: + +—Ask nothing more of me, sweet. All I can give you I give. + +Stephen laid the coin in her uneager hand. + +—We’ll owe twopence, he said. + +—Time enough, sir, she said, taking the coin. Time enough. Good +morning, sir. + +She curtseyed and went out, followed by Buck Mulligan’s tender chant: + +_—Heart of my heart, were it more, + +More would be laid at your feet._ + +He turned to Stephen and said: + +—Seriously, Dedalus. I’m stony. Hurry out to your school kip and bring +us back some money. Today the bards must drink and junket. Ireland +expects that every man this day will do his duty. + +—That reminds me, Haines said, rising, that I have to visit your +national library today. + +—Our swim first, Buck Mulligan said. + +He turned to Stephen and asked blandly: + +—Is this the day for your monthly wash, Kinch? + +Then he said to Haines: + +—The unclean bard makes a point of washing once a month. + +—All Ireland is washed by the gulfstream, Stephen said as he let honey +trickle over a slice of the loaf. + +Haines from the corner where he was knotting easily a scarf about the +loose collar of his tennis shirt spoke: + +—I intend to make a collection of your sayings if you will let me. + +Speaking to me. They wash and tub and scrub. Agenbite of inwit. +Conscience. Yet here’s a spot. + +—That one about the cracked lookingglass of a servant being the symbol +of Irish art is deuced good. + +Buck Mulligan kicked Stephen’s foot under the table and said with +warmth of tone: + +—Wait till you hear him on Hamlet, Haines. + +—Well, I mean it, Haines said, still speaking to Stephen. I was just +thinking of it when that poor old creature came in. + +—Would I make any money by it? Stephen asked. + +Haines laughed and, as he took his soft grey hat from the holdfast of +the hammock, said: + +—I don’t know, I’m sure. + +He strolled out to the doorway. Buck Mulligan bent across to Stephen +and said with coarse vigour: + +—You put your hoof in it now. What did you say that for? + +—Well? Stephen said. The problem is to get money. From whom? From the +milkwoman or from him. It’s a toss up, I think. + +—I blow him out about you, Buck Mulligan said, and then you come along +with your lousy leer and your gloomy jesuit jibes. + +—I see little hope, Stephen said, from her or from him. + +Buck Mulligan sighed tragically and laid his hand on Stephen’s arm. + +—From me, Kinch, he said. + +In a suddenly changed tone he added: + +—To tell you the God’s truth I think you’re right. Damn all else they +are good for. Why don’t you play them as I do? To hell with them all. +Let us get out of the kip. + +He stood up, gravely ungirdled and disrobed himself of his gown, saying +resignedly: + +—Mulligan is stripped of his garments. + +He emptied his pockets on to the table. + +—There’s your snotrag, he said. + +And putting on his stiff collar and rebellious tie he spoke to them, +chiding them, and to his dangling watchchain. His hands plunged and +rummaged in his trunk while he called for a clean handkerchief. God, +we’ll simply have to dress the character. I want puce gloves and green +boots. Contradiction. Do I contradict myself? Very well then, I +contradict myself. Mercurial Malachi. A limp black missile flew out of +his talking hands. + +—And there’s your Latin quarter hat, he said. + +Stephen picked it up and put it on. Haines called to them from the +doorway: + +—Are you coming, you fellows? + +—I’m ready, Buck Mulligan answered, going towards the door. Come out, +Kinch. You have eaten all we left, I suppose. Resigned he passed out +with grave words and gait, saying, wellnigh with sorrow: + +—And going forth he met Butterly. + +Stephen, taking his ashplant from its leaningplace, followed them out +and, as they went down the ladder, pulled to the slow iron door and +locked it. He put the huge key in his inner pocket. + +At the foot of the ladder Buck Mulligan asked: + +—Did you bring the key? + +—I have it, Stephen said, preceding them. + +He walked on. Behind him he heard Buck Mulligan club with his heavy +bathtowel the leader shoots of ferns or grasses. + +—Down, sir! How dare you, sir! + +Haines asked: + +—Do you pay rent for this tower? + +—Twelve quid, Buck Mulligan said. + +—To the secretary of state for war, Stephen added over his shoulder. + +They halted while Haines surveyed the tower and said at last: + +—Rather bleak in wintertime, I should say. Martello you call it? + +—Billy Pitt had them built, Buck Mulligan said, when the French were on +the sea. But ours is the _omphalos_. + +—What is your idea of Hamlet? Haines asked Stephen. + +—No, no, Buck Mulligan shouted in pain. I’m not equal to Thomas Aquinas +and the fiftyfive reasons he has made out to prop it up. Wait till I +have a few pints in me first. + +He turned to Stephen, saying, as he pulled down neatly the peaks of his +primrose waistcoat: + +—You couldn’t manage it under three pints, Kinch, could you? + +—It has waited so long, Stephen said listlessly, it can wait longer. + +—You pique my curiosity, Haines said amiably. Is it some paradox? + +—Pooh! Buck Mulligan said. We have grown out of Wilde and paradoxes. +It’s quite simple. He proves by algebra that Hamlet’s grandson is +Shakespeare’s grandfather and that he himself is the ghost of his own +father. + +—What? Haines said, beginning to point at Stephen. He himself? + +Buck Mulligan slung his towel stolewise round his neck and, bending in +loose laughter, said to Stephen’s ear: + +—O, shade of Kinch the elder! Japhet in search of a father! + +—We’re always tired in the morning, Stephen said to Haines. And it is +rather long to tell. + +Buck Mulligan, walking forward again, raised his hands. + +—The sacred pint alone can unbind the tongue of Dedalus, he said. + +—I mean to say, Haines explained to Stephen as they followed, this +tower and these cliffs here remind me somehow of Elsinore. _That +beetles o’er his base into the sea,_ isn’t it? + +Buck Mulligan turned suddenly for an instant towards Stephen but did +not speak. In the bright silent instant Stephen saw his own image in +cheap dusty mourning between their gay attires. + +—It’s a wonderful tale, Haines said, bringing them to halt again. + +Eyes, pale as the sea the wind had freshened, paler, firm and prudent. +The seas’ ruler, he gazed southward over the bay, empty save for the +smokeplume of the mailboat vague on the bright skyline and a sail +tacking by the Muglins. + +—I read a theological interpretation of it somewhere, he said bemused. +The Father and the Son idea. The Son striving to be atoned with the +Father. + +Buck Mulligan at once put on a blithe broadly smiling face. He looked +at them, his wellshaped mouth open happily, his eyes, from which he had +suddenly withdrawn all shrewd sense, blinking with mad gaiety. He moved +a doll’s head to and fro, the brims of his Panama hat quivering, and +began to chant in a quiet happy foolish voice: + +_—I’m the queerest young fellow that ever you heard. +My mother’s a jew, my father’s a bird. +With Joseph the joiner I cannot agree. +So here’s to disciples and Calvary._ + +He held up a forefinger of warning. + +_—If anyone thinks that I amn’t divine +He’ll get no free drinks when I’m making the wine +But have to drink water and wish it were plain +That I make when the wine becomes water again._ + +He tugged swiftly at Stephen’s ashplant in farewell and, running +forward to a brow of the cliff, fluttered his hands at his sides like +fins or wings of one about to rise in the air, and chanted: + +_—Goodbye, now, goodbye! Write down all I said +And tell Tom, Dick and Harry I rose from the dead. +What’s bred in the bone cannot fail me to fly +And Olivet’s breezy... Goodbye, now, goodbye!_ + +He capered before them down towards the fortyfoot hole, fluttering his +winglike hands, leaping nimbly, Mercury’s hat quivering in the fresh +wind that bore back to them his brief birdsweet cries. + +Haines, who had been laughing guardedly, walked on beside Stephen and +said: + +—We oughtn’t to laugh, I suppose. He’s rather blasphemous. I’m not a +believer myself, that is to say. Still his gaiety takes the harm out of +it somehow, doesn’t it? What did he call it? Joseph the Joiner? + +—The ballad of joking Jesus, Stephen answered. + +—O, Haines said, you have heard it before? + +—Three times a day, after meals, Stephen said drily. + +—You’re not a believer, are you? Haines asked. I mean, a believer in +the narrow sense of the word. Creation from nothing and miracles and a +personal God. + +—There’s only one sense of the word, it seems to me, Stephen said. + +Haines stopped to take out a smooth silver case in which twinkled a +green stone. He sprang it open with his thumb and offered it. + +—Thank you, Stephen said, taking a cigarette. + +Haines helped himself and snapped the case to. He put it back in his +sidepocket and took from his waistcoatpocket a nickel tinderbox, sprang +it open too, and, having lit his cigarette, held the flaming spunk +towards Stephen in the shell of his hands. + +—Yes, of course, he said, as they went on again. Either you believe or +you don’t, isn’t it? Personally I couldn’t stomach that idea of a +personal God. You don’t stand for that, I suppose? + +—You behold in me, Stephen said with grim displeasure, a horrible +example of free thought. + +He walked on, waiting to be spoken to, trailing his ashplant by his +side. Its ferrule followed lightly on the path, squealing at his heels. +My familiar, after me, calling, Steeeeeeeeeeeephen! A wavering line +along the path. They will walk on it tonight, coming here in the dark. +He wants that key. It is mine. I paid the rent. Now I eat his salt +bread. Give him the key too. All. He will ask for it. That was in his +eyes. + +—After all, Haines began... + +Stephen turned and saw that the cold gaze which had measured him was +not all unkind. + +—After all, I should think you are able to free yourself. You are your +own master, it seems to me. + +—I am a servant of two masters, Stephen said, an English and an +Italian. + +—Italian? Haines said. + +A crazy queen, old and jealous. Kneel down before me. + +—And a third, Stephen said, there is who wants me for odd jobs. + +—Italian? Haines said again. What do you mean? + +—The imperial British state, Stephen answered, his colour rising, and +the holy Roman catholic and apostolic church. + +Haines detached from his underlip some fibres of tobacco before he +spoke. + +—I can quite understand that, he said calmly. An Irishman must think +like that, I daresay. We feel in England that we have treated you +rather unfairly. It seems history is to blame. + +The proud potent titles clanged over Stephen’s memory the triumph of +their brazen bells: _et unam sanctam catholicam et apostolicam +ecclesiam:_ the slow growth and change of rite and dogma like his own +rare thoughts, a chemistry of stars. Symbol of the apostles in the mass +for pope Marcellus, the voices blended, singing alone loud in +affirmation: and behind their chant the vigilant angel of the church +militant disarmed and menaced her heresiarchs. A horde of heresies +fleeing with mitres awry: Photius and the brood of mockers of whom +Mulligan was one, and Arius, warring his life long upon the +consubstantiality of the Son with the Father, and Valentine, spurning +Christ’s terrene body, and the subtle African heresiarch Sabellius who +held that the Father was Himself His own Son. Words Mulligan had spoken +a moment since in mockery to the stranger. Idle mockery. The void +awaits surely all them that weave the wind: a menace, a disarming and a +worsting from those embattled angels of the church, Michael’s host, who +defend her ever in the hour of conflict with their lances and their +shields. + +Hear, hear! Prolonged applause. _Zut! Nom de Dieu!_ + +—Of course I’m a Britisher, Haines’s voice said, and I feel as one. I +don’t want to see my country fall into the hands of German jews either. +That’s our national problem, I’m afraid, just now. + +Two men stood at the verge of the cliff, watching: businessman, +boatman. + +—She’s making for Bullock harbour. + +The boatman nodded towards the north of the bay with some disdain. + +—There’s five fathoms out there, he said. It’ll be swept up that way +when the tide comes in about one. It’s nine days today. + +The man that was drowned. A sail veering about the blank bay waiting +for a swollen bundle to bob up, roll over to the sun a puffy face, +saltwhite. Here I am. + +They followed the winding path down to the creek. Buck Mulligan stood +on a stone, in shirtsleeves, his unclipped tie rippling over his +shoulder. A young man clinging to a spur of rock near him, moved slowly +frogwise his green legs in the deep jelly of the water. + +—Is the brother with you, Malachi? + +—Down in Westmeath. With the Bannons. + +—Still there? I got a card from Bannon. Says he found a sweet young +thing down there. Photo girl he calls her. + +—Snapshot, eh? Brief exposure. + +Buck Mulligan sat down to unlace his boots. An elderly man shot up near +the spur of rock a blowing red face. He scrambled up by the stones, +water glistening on his pate and on its garland of grey hair, water +rilling over his chest and paunch and spilling jets out of his black +sagging loincloth. + +Buck Mulligan made way for him to scramble past and, glancing at Haines +and Stephen, crossed himself piously with his thumbnail at brow and +lips and breastbone. + +—Seymour’s back in town, the young man said, grasping again his spur of +rock. Chucked medicine and going in for the army. + +—Ah, go to God! Buck Mulligan said. + +—Going over next week to stew. You know that red Carlisle girl, Lily? + +—Yes. + +—Spooning with him last night on the pier. The father is rotto with +money. + +—Is she up the pole? + +—Better ask Seymour that. + +—Seymour a bleeding officer! Buck Mulligan said. + +He nodded to himself as he drew off his trousers and stood up, saying +tritely: + +—Redheaded women buck like goats. + +He broke off in alarm, feeling his side under his flapping shirt. + +—My twelfth rib is gone, he cried. I’m the _Übermensch._ Toothless +Kinch and I, the supermen. + +He struggled out of his shirt and flung it behind him to where his +clothes lay. + +—Are you going in here, Malachi? + +—Yes. Make room in the bed. + +The young man shoved himself backward through the water and reached the +middle of the creek in two long clean strokes. Haines sat down on a +stone, smoking. + +—Are you not coming in? Buck Mulligan asked. + +—Later on, Haines said. Not on my breakfast. + +Stephen turned away. + +—I’m going, Mulligan, he said. + +—Give us that key, Kinch, Buck Mulligan said, to keep my chemise flat. + +Stephen handed him the key. Buck Mulligan laid it across his heaped +clothes. + +—And twopence, he said, for a pint. Throw it there. + +Stephen threw two pennies on the soft heap. Dressing, undressing. Buck +Mulligan erect, with joined hands before him, said solemnly: + +—He who stealeth from the poor lendeth to the Lord. Thus spake +Zarathustra. + +His plump body plunged. + +—We’ll see you again, Haines said, turning as Stephen walked up the +path and smiling at wild Irish. + +Horn of a bull, hoof of a horse, smile of a Saxon. + +—The Ship, Buck Mulligan cried. Half twelve. + +—Good, Stephen said. + +He walked along the upwardcurving path. + + Liliata rutilantium. + Turma circumdet. + Iubilantium te virginum. + +The priest’s grey nimbus in a niche where he dressed discreetly. I will +not sleep here tonight. Home also I cannot go. + +A voice, sweettoned and sustained, called to him from the sea. Turning +the curve he waved his hand. It called again. A sleek brown head, a +seal’s, far out on the water, round. + +Usurper. + + + + +[ 2 ] + + +—You, Cochrane, what city sent for him? + +—Tarentum, sir. + +—Very good. Well? + +—There was a battle, sir. + +—Very good. Where? + +The boy’s blank face asked the blank window. + +Fabled by the daughters of memory. And yet it was in some way if not as +memory fabled it. A phrase, then, of impatience, thud of Blake’s wings +of excess. I hear the ruin of all space, shattered glass and toppling +masonry, and time one livid final flame. What’s left us then? + +—I forget the place, sir. 279 B. C. + +—Asculum, Stephen said, glancing at the name and date in the +gorescarred book. + +—Yes, sir. And he said: _Another victory like that and we are done +for._ + +That phrase the world had remembered. A dull ease of the mind. From a +hill above a corpsestrewn plain a general speaking to his officers, +leaned upon his spear. Any general to any officers. They lend ear. + +—You, Armstrong, Stephen said. What was the end of Pyrrhus? + +—End of Pyrrhus, sir? + +—I know, sir. Ask me, sir, Comyn said. + +—Wait. You, Armstrong. Do you know anything about Pyrrhus? + +A bag of figrolls lay snugly in Armstrong’s satchel. He curled them +between his palms at whiles and swallowed them softly. Crumbs adhered +to the tissue of his lips. A sweetened boy’s breath. Welloff people, +proud that their eldest son was in the navy. Vico Road, Dalkey. + +—Pyrrhus, sir? Pyrrhus, a pier. + +All laughed. Mirthless high malicious laughter. Armstrong looked round +at his classmates, silly glee in profile. In a moment they will laugh +more loudly, aware of my lack of rule and of the fees their papas pay. + +—Tell me now, Stephen said, poking the boy’s shoulder with the book, +what is a pier. + +—A pier, sir, Armstrong said. A thing out in the water. A kind of a +bridge. Kingstown pier, sir. + +Some laughed again: mirthless but with meaning. Two in the back bench +whispered. Yes. They knew: had never learned nor ever been innocent. +All. With envy he watched their faces: Edith, Ethel, Gerty, Lily. Their +likes: their breaths, too, sweetened with tea and jam, their bracelets +tittering in the struggle. + +—Kingstown pier, Stephen said. Yes, a disappointed bridge. + +The words troubled their gaze. + +—How, sir? Comyn asked. A bridge is across a river. + +For Haines’s chapbook. No-one here to hear. Tonight deftly amid wild +drink and talk, to pierce the polished mail of his mind. What then? A +jester at the court of his master, indulged and disesteemed, winning a +clement master’s praise. Why had they chosen all that part? Not wholly +for the smooth caress. For them too history was a tale like any other +too often heard, their land a pawnshop. + +Had Pyrrhus not fallen by a beldam’s hand in Argos or Julius Caesar not +been knifed to death. They are not to be thought away. Time has branded +them and fettered they are lodged in the room of the infinite +possibilities they have ousted. But can those have been possible seeing +that they never were? Or was that only possible which came to pass? +Weave, weaver of the wind. + +—Tell us a story, sir. + +—O, do, sir. A ghoststory. + +—Where do you begin in this? Stephen asked, opening another book. + +—_Weep no more,_ Comyn said. + +—Go on then, Talbot. + +—And the story, sir? + +—After, Stephen said. Go on, Talbot. + +A swarthy boy opened a book and propped it nimbly under the breastwork +of his satchel. He recited jerks of verse with odd glances at the text: + +_—Weep no more, woful shepherds, weep no more +For Lycidas, your sorrow, is not dead, +Sunk though he be beneath the watery floor..._ + +It must be a movement then, an actuality of the possible as possible. +Aristotle’s phrase formed itself within the gabbled verses and floated +out into the studious silence of the library of Saint Genevieve where +he had read, sheltered from the sin of Paris, night by night. By his +elbow a delicate Siamese conned a handbook of strategy. Fed and feeding +brains about me: under glowlamps, impaled, with faintly beating +feelers: and in my mind’s darkness a sloth of the underworld, +reluctant, shy of brightness, shifting her dragon scaly folds. Thought +is the thought of thought. Tranquil brightness. The soul is in a manner +all that is: the soul is the form of forms. Tranquility sudden, vast, +candescent: form of forms. + +Talbot repeated: + +_—Through the dear might of Him that walked the waves, + +Through the dear might..._ + +—Turn over, Stephen said quietly. I don’t see anything. + +—What, sir? Talbot asked simply, bending forward. + +His hand turned the page over. He leaned back and went on again, having +just remembered. Of him that walked the waves. Here also over these +craven hearts his shadow lies and on the scoffer’s heart and lips and +on mine. It lies upon their eager faces who offered him a coin of the +tribute. To Caesar what is Caesar’s, to God what is God’s. A long look +from dark eyes, a riddling sentence to be woven and woven on the +church’s looms. Ay. + + Riddle me, riddle me, randy ro. + My father gave me seeds to sow. + +Talbot slid his closed book into his satchel. + +—Have I heard all? Stephen asked. + +—Yes, sir. Hockey at ten, sir. + +—Half day, sir. Thursday. + +—Who can answer a riddle? Stephen asked. + +They bundled their books away, pencils clacking, pages rustling. +Crowding together they strapped and buckled their satchels, all +gabbling gaily: + +—A riddle, sir? Ask me, sir. + +—O, ask me, sir. + +—A hard one, sir. + +—This is the riddle, Stephen said: + + The cock crew, + The sky was blue: + The bells in heaven + Were striking eleven. + ’Tis time for this poor soul + To go to heaven. + +What is that? + +—What, sir? + +—Again, sir. We didn’t hear. + +Their eyes grew bigger as the lines were repeated. After a silence +Cochrane said: + +—What is it, sir? We give it up. + +Stephen, his throat itching, answered: + +—The fox burying his grandmother under a hollybush. + +He stood up and gave a shout of nervous laughter to which their cries +echoed dismay. + +A stick struck the door and a voice in the corridor called: + +—Hockey! + +They broke asunder, sidling out of their benches, leaping them. Quickly +they were gone and from the lumberroom came the rattle of sticks and +clamour of their boots and tongues. + +Sargent who alone had lingered came forward slowly, showing an open +copybook. His tangled hair and scraggy neck gave witness of unreadiness +and through his misty glasses weak eyes looked up pleading. On his +cheek, dull and bloodless, a soft stain of ink lay, dateshaped, recent +and damp as a snail’s bed. + +He held out his copybook. The word _Sums_ was written on the headline. +Beneath were sloping figures and at the foot a crooked signature with +blind loops and a blot. Cyril Sargent: his name and seal. + +—Mr Deasy told me to write them out all again, he said, and show them +to you, sir. + +Stephen touched the edges of the book. Futility. + +—Do you understand how to do them now? he asked. + +—Numbers eleven to fifteen, Sargent answered. Mr Deasy said I was to +copy them off the board, sir. + +—Can you do them yourself? Stephen asked. + +—No, sir. + +Ugly and futile: lean neck and tangled hair and a stain of ink, a +snail’s bed. Yet someone had loved him, borne him in her arms and in +her heart. But for her the race of the world would have trampled him +underfoot, a squashed boneless snail. She had loved his weak watery +blood drained from her own. Was that then real? The only true thing in +life? His mother’s prostrate body the fiery Columbanus in holy zeal +bestrode. She was no more: the trembling skeleton of a twig burnt in +the fire, an odour of rosewood and wetted ashes. She had saved him from +being trampled underfoot and had gone, scarcely having been. A poor +soul gone to heaven: and on a heath beneath winking stars a fox, red +reek of rapine in his fur, with merciless bright eyes scraped in the +earth, listened, scraped up the earth, listened, scraped and scraped. + +Sitting at his side Stephen solved out the problem. He proves by +algebra that Shakespeare’s ghost is Hamlet’s grandfather. Sargent +peered askance through his slanted glasses. Hockeysticks rattled in the +lumberroom: the hollow knock of a ball and calls from the field. + +Across the page the symbols moved in grave morrice, in the mummery of +their letters, wearing quaint caps of squares and cubes. Give hands, +traverse, bow to partner: so: imps of fancy of the Moors. Gone too from +the world, Averroes and Moses Maimonides, dark men in mien and +movement, flashing in their mocking mirrors the obscure soul of the +world, a darkness shining in brightness which brightness could not +comprehend. + +—Do you understand now? Can you work the second for yourself? + +—Yes, sir. + +In long shaky strokes Sargent copied the data. Waiting always for a +word of help his hand moved faithfully the unsteady symbols, a faint +hue of shame flickering behind his dull skin. _Amor matris:_ subjective +and objective genitive. With her weak blood and wheysour milk she had +fed him and hid from sight of others his swaddling bands. + +Like him was I, these sloping shoulders, this gracelessness. My +childhood bends beside me. Too far for me to lay a hand there once or +lightly. Mine is far and his secret as our eyes. Secrets, silent, stony +sit in the dark palaces of both our hearts: secrets weary of their +tyranny: tyrants, willing to be dethroned. + +The sum was done. + +—It is very simple, Stephen said as he stood up. + +—Yes, sir. Thanks, Sargent answered. + +He dried the page with a sheet of thin blottingpaper and carried his +copybook back to his bench. + +—You had better get your stick and go out to the others, Stephen said +as he followed towards the door the boy’s graceless form. + +—Yes, sir. + +In the corridor his name was heard, called from the playfield. + +—Sargent! + +—Run on, Stephen said. Mr Deasy is calling you. + +He stood in the porch and watched the laggard hurry towards the scrappy +field where sharp voices were in strife. They were sorted in teams and +Mr Deasy came away stepping over wisps of grass with gaitered feet. +When he had reached the schoolhouse voices again contending called to +him. He turned his angry white moustache. + +—What is it now? he cried continually without listening. + +—Cochrane and Halliday are on the same side, sir, Stephen said. + +—Will you wait in my study for a moment, Mr Deasy said, till I restore +order here. + +And as he stepped fussily back across the field his old man’s voice +cried sternly: + +—What is the matter? What is it now? + +Their sharp voices cried about him on all sides: their many forms +closed round him, the garish sunshine bleaching the honey of his +illdyed head. + +Stale smoky air hung in the study with the smell of drab abraded +leather of its chairs. As on the first day he bargained with me here. +As it was in the beginning, is now. On the sideboard the tray of Stuart +coins, base treasure of a bog: and ever shall be. And snug in their +spooncase of purple plush, faded, the twelve apostles having preached +to all the gentiles: world without end. + +A hasty step over the stone porch and in the corridor. Blowing out his +rare moustache Mr Deasy halted at the table. + +—First, our little financial settlement, he said. + +He brought out of his coat a pocketbook bound by a leather thong. It +slapped open and he took from it two notes, one of joined halves, and +laid them carefully on the table. + +—Two, he said, strapping and stowing his pocketbook away. + +And now his strongroom for the gold. Stephen’s embarrassed hand moved +over the shells heaped in the cold stone mortar: whelks and money +cowries and leopard shells: and this, whorled as an emir’s turban, and +this, the scallop of saint James. An old pilgrim’s hoard, dead +treasure, hollow shells. + +A sovereign fell, bright and new, on the soft pile of the tablecloth. + +—Three, Mr Deasy said, turning his little savingsbox about in his hand. +These are handy things to have. See. This is for sovereigns. This is +for shillings. Sixpences, halfcrowns. And here crowns. See. + +He shot from it two crowns and two shillings. + +—Three twelve, he said. I think you’ll find that’s right. + +—Thank you, sir, Stephen said, gathering the money together with shy +haste and putting it all in a pocket of his trousers. + +—No thanks at all, Mr Deasy said. You have earned it. + +Stephen’s hand, free again, went back to the hollow shells. Symbols too +of beauty and of power. A lump in my pocket: symbols soiled by greed +and misery. + +—Don’t carry it like that, Mr Deasy said. You’ll pull it out somewhere +and lose it. You just buy one of these machines. You’ll find them very +handy. + +Answer something. + +—Mine would be often empty, Stephen said. + +The same room and hour, the same wisdom: and I the same. Three times +now. Three nooses round me here. Well? I can break them in this instant +if I will. + +—Because you don’t save, Mr Deasy said, pointing his finger. You don’t +know yet what money is. Money is power. When you have lived as long as +I have. I know, I know. If youth but knew. But what does Shakespeare +say? _Put but money in thy purse._ + +—Iago, Stephen murmured. + +He lifted his gaze from the idle shells to the old man’s stare. + +—He knew what money was, Mr Deasy said. He made money. A poet, yes, but +an Englishman too. Do you know what is the pride of the English? Do you +know what is the proudest word you will ever hear from an Englishman’s +mouth? + +The seas’ ruler. His seacold eyes looked on the empty bay: it seems +history is to blame: on me and on my words, unhating. + +—That on his empire, Stephen said, the sun never sets. + +—Ba! Mr Deasy cried. That’s not English. A French Celt said that. He +tapped his savingsbox against his thumbnail. + +—I will tell you, he said solemnly, what is his proudest boast. _I paid +my way._ + +Good man, good man. + +_—I paid my way. I never borrowed a shilling in my life._ Can you feel +that? _I owe nothing._ Can you? + +Mulligan, nine pounds, three pairs of socks, one pair brogues, ties. +Curran, ten guineas. McCann, one guinea. Fred Ryan, two shillings. +Temple, two lunches. Russell, one guinea, Cousins, ten shillings, Bob +Reynolds, half a guinea, Koehler, three guineas, Mrs MacKernan, five +weeks’ board. The lump I have is useless. + +—For the moment, no, Stephen answered. + +Mr Deasy laughed with rich delight, putting back his savingsbox. + +—I knew you couldn’t, he said joyously. But one day you must feel it. +We are a generous people but we must also be just. + +—I fear those big words, Stephen said, which make us so unhappy. + +Mr Deasy stared sternly for some moments over the mantelpiece at the +shapely bulk of a man in tartan fillibegs: Albert Edward, prince of +Wales. + +—You think me an old fogey and an old tory, his thoughtful voice said. +I saw three generations since O’Connell’s time. I remember the famine +in ’46. Do you know that the orange lodges agitated for repeal of the +union twenty years before O’Connell did or before the prelates of your +communion denounced him as a demagogue? You fenians forget some things. + +Glorious, pious and immortal memory. The lodge of Diamond in Armagh the +splendid behung with corpses of papishes. Hoarse, masked and armed, the +planters’ covenant. The black north and true blue bible. Croppies lie +down. + +Stephen sketched a brief gesture. + +—I have rebel blood in me too, Mr Deasy said. On the spindle side. But +I am descended from sir John Blackwood who voted for the union. We are +all Irish, all kings’ sons. + +—Alas, Stephen said. + +—_Per vias rectas_, Mr Deasy said firmly, was his motto. He voted for +it and put on his topboots to ride to Dublin from the Ards of Down to +do so. + + Lal the ral the ra + The rocky road to Dublin. + +A gruff squire on horseback with shiny topboots. Soft day, sir John! +Soft day, your honour!... Day!... Day!... Two topboots jog dangling on +to Dublin. Lal the ral the ra. Lal the ral the raddy. + +—That reminds me, Mr Deasy said. You can do me a favour, Mr Dedalus, +with some of your literary friends. I have a letter here for the press. +Sit down a moment. I have just to copy the end. + +He went to the desk near the window, pulled in his chair twice and read +off some words from the sheet on the drum of his typewriter. + +—Sit down. Excuse me, he said over his shoulder, _the dictates of +common sense._ Just a moment. + +He peered from under his shaggy brows at the manuscript by his elbow +and, muttering, began to prod the stiff buttons of the keyboard slowly, +sometimes blowing as he screwed up the drum to erase an error. + +Stephen seated himself noiselessly before the princely presence. Framed +around the walls images of vanished horses stood in homage, their meek +heads poised in air: lord Hastings’ _Repulse_, the duke of +Westminster’s _Shotover_, the duke of Beaufort’s _Ceylon_, _prix de +Paris_, 1866. Elfin riders sat them, watchful of a sign. He saw their +speeds, backing king’s colours, and shouted with the shouts of vanished +crowds. + +—Full stop, Mr Deasy bade his keys. _But prompt ventilation of this +allimportant question..._ + +Where Cranly led me to get rich quick, hunting his winners among the +mudsplashed brakes, amid the bawls of bookies on their pitches and reek +of the canteen, over the motley slush. Even money _Fair Rebel._ Ten to +one the field. Dicers and thimbleriggers we hurried by after the hoofs, +the vying caps and jackets and past the meatfaced woman, a butcher’s +dame, nuzzling thirstily her clove of orange. + +Shouts rang shrill from the boys’ playfield and a whirring whistle. + +Again: a goal. I am among them, among their battling bodies in a +medley, the joust of life. You mean that knockkneed mother’s darling +who seems to be slightly crawsick? Jousts. Time shocked rebounds, shock +by shock. Jousts, slush and uproar of battles, the frozen deathspew of +the slain, a shout of spearspikes baited with men’s bloodied guts. + +—Now then, Mr Deasy said, rising. + +He came to the table, pinning together his sheets. Stephen stood up. + +—I have put the matter into a nutshell, Mr Deasy said. It’s about the +foot and mouth disease. Just look through it. There can be no two +opinions on the matter. + +May I trespass on your valuable space. That doctrine of _laissez faire_ +which so often in our history. Our cattle trade. The way of all our old +industries. Liverpool ring which jockeyed the Galway harbour scheme. +European conflagration. Grain supplies through the narrow waters of the +channel. The pluterperfect imperturbability of the department of +agriculture. Pardoned a classical allusion. Cassandra. By a woman who +was no better than she should be. To come to the point at issue. + +—I don’t mince words, do I? Mr Deasy asked as Stephen read on. + +Foot and mouth disease. Known as Koch’s preparation. Serum and virus. +Percentage of salted horses. Rinderpest. Emperor’s horses at Mürzsteg, +lower Austria. Veterinary surgeons. Mr Henry Blackwood Price. Courteous +offer a fair trial. Dictates of common sense. Allimportant question. In +every sense of the word take the bull by the horns. Thanking you for +the hospitality of your columns. + +—I want that to be printed and read, Mr Deasy said. You will see at the +next outbreak they will put an embargo on Irish cattle. And it can be +cured. It is cured. My cousin, Blackwood Price, writes to me it is +regularly treated and cured in Austria by cattledoctors there. They +offer to come over here. I am trying to work up influence with the +department. Now I’m going to try publicity. I am surrounded by +difficulties, by... intrigues by... backstairs influence by... + +He raised his forefinger and beat the air oldly before his voice spoke. + +—Mark my words, Mr Dedalus, he said. England is in the hands of the +jews. In all the highest places: her finance, her press. And they are +the signs of a nation’s decay. Wherever they gather they eat up the +nation’s vital strength. I have seen it coming these years. As sure as +we are standing here the jew merchants are already at their work of +destruction. Old England is dying. + +He stepped swiftly off, his eyes coming to blue life as they passed a +broad sunbeam. He faced about and back again. + +—Dying, he said again, if not dead by now. + + The harlot’s cry from street to street + Shall weave old England’s windingsheet. + +His eyes open wide in vision stared sternly across the sunbeam in which +he halted. + +—A merchant, Stephen said, is one who buys cheap and sells dear, jew or +gentile, is he not? + +—They sinned against the light, Mr Deasy said gravely. And you can see +the darkness in their eyes. And that is why they are wanderers on the +earth to this day. + +On the steps of the Paris stock exchange the goldskinned men quoting +prices on their gemmed fingers. Gabble of geese. They swarmed loud, +uncouth about the temple, their heads thickplotting under maladroit +silk hats. Not theirs: these clothes, this speech, these gestures. +Their full slow eyes belied the words, the gestures eager and +unoffending, but knew the rancours massed about them and knew their +zeal was vain. Vain patience to heap and hoard. Time surely would +scatter all. A hoard heaped by the roadside: plundered and passing on. +Their eyes knew their years of wandering and, patient, knew the +dishonours of their flesh. + +—Who has not? Stephen said. + +—What do you mean? Mr Deasy asked. + +He came forward a pace and stood by the table. His underjaw fell +sideways open uncertainly. Is this old wisdom? He waits to hear from +me. + +—History, Stephen said, is a nightmare from which I am trying to awake. + +From the playfield the boys raised a shout. A whirring whistle: goal. +What if that nightmare gave you a back kick? + +—The ways of the Creator are not our ways, Mr Deasy said. All human +history moves towards one great goal, the manifestation of God. + +Stephen jerked his thumb towards the window, saying: + +—That is God. + +Hooray! Ay! Whrrwhee! + +—What? Mr Deasy asked. + +—A shout in the street, Stephen answered, shrugging his shoulders. + +Mr Deasy looked down and held for awhile the wings of his nose tweaked +between his fingers. Looking up again he set them free. + +—I am happier than you are, he said. We have committed many errors and +many sins. A woman brought sin into the world. For a woman who was no +better than she should be, Helen, the runaway wife of Menelaus, ten +years the Greeks made war on Troy. A faithless wife first brought the +strangers to our shore here, MacMurrough’s wife and her leman, +O’Rourke, prince of Breffni. A woman too brought Parnell low. Many +errors, many failures but not the one sin. I am a struggler now at the +end of my days. But I will fight for the right till the end. + + For Ulster will fight + And Ulster will be right. + +Stephen raised the sheets in his hand. + +—Well, sir, he began. + +—I foresee, Mr Deasy said, that you will not remain here very long at +this work. You were not born to be a teacher, I think. Perhaps I am +wrong. + +—A learner rather, Stephen said. + +And here what will you learn more? + +Mr Deasy shook his head. + +—Who knows? he said. To learn one must be humble. But life is the great +teacher. + +Stephen rustled the sheets again. + +—As regards these, he began. + +—Yes, Mr Deasy said. You have two copies there. If you can have them +published at once. + +_ Telegraph. Irish Homestead._ + +—I will try, Stephen said, and let you know tomorrow. I know two +editors slightly. + +—That will do, Mr Deasy said briskly. I wrote last night to Mr Field, +M.P. There is a meeting of the cattletraders’ association today at the +City Arms hotel. I asked him to lay my letter before the meeting. You +see if you can get it into your two papers. What are they? + +_—The Evening Telegraph..._ + +—That will do, Mr Deasy said. There is no time to lose. Now I have to +answer that letter from my cousin. + +—Good morning, sir, Stephen said, putting the sheets in his pocket. +Thank you. + +—Not at all, Mr Deasy said as he searched the papers on his desk. I +like to break a lance with you, old as I am. + +—Good morning, sir, Stephen said again, bowing to his bent back. + +He went out by the open porch and down the gravel path under the trees, +hearing the cries of voices and crack of sticks from the playfield. The +lions couchant on the pillars as he passed out through the gate: +toothless terrors. Still I will help him in his fight. Mulligan will +dub me a new name: the bullockbefriending bard. + +—Mr Dedalus! + +Running after me. No more letters, I hope. + +—Just one moment. + +—Yes, sir, Stephen said, turning back at the gate. + +Mr Deasy halted, breathing hard and swallowing his breath. + +—I just wanted to say, he said. Ireland, they say, has the honour of +being the only country which never persecuted the jews. Do you know +that? No. And do you know why? + +He frowned sternly on the bright air. + +—Why, sir? Stephen asked, beginning to smile. + +—Because she never let them in, Mr Deasy said solemnly. + +A coughball of laughter leaped from his throat dragging after it a +rattling chain of phlegm. He turned back quickly, coughing, laughing, +his lifted arms waving to the air. + +—She never let them in, he cried again through his laughter as he +stamped on gaitered feet over the gravel of the path. That’s why. + +On his wise shoulders through the checkerwork of leaves the sun flung +spangles, dancing coins. + + + + +[ 3 ] + + +Ineluctable modality of the visible: at least that if no more, thought +through my eyes. Signatures of all things I am here to read, seaspawn +and seawrack, the nearing tide, that rusty boot. Snotgreen, bluesilver, +rust: coloured signs. Limits of the diaphane. But he adds: in bodies. +Then he was aware of them bodies before of them coloured. How? By +knocking his sconce against them, sure. Go easy. Bald he was and a +millionaire, _maestro di color che sanno_. Limit of the diaphane in. +Why in? Diaphane, adiaphane. If you can put your five fingers through +it it is a gate, if not a door. Shut your eyes and see. + +Stephen closed his eyes to hear his boots crush crackling wrack and +shells. You are walking through it howsomever. I am, a stride at a +time. A very short space of time through very short times of space. +Five, six: the _nacheinander_. Exactly: and that is the ineluctable +modality of the audible. Open your eyes. No. Jesus! If I fell over a +cliff that beetles o’er his base, fell through the _nebeneinander_ +ineluctably! I am getting on nicely in the dark. My ash sword hangs at +my side. Tap with it: they do. My two feet in his boots are at the ends +of his legs, _nebeneinander_. Sounds solid: made by the mallet of _Los +Demiurgos_. Am I walking into eternity along Sandymount strand? Crush, +crack, crick, crick. Wild sea money. Dominie Deasy kens them a’. + + Won’t you come to Sandymount, + Madeline the mare? + +Rhythm begins, you see. I hear. A catalectic tetrameter of iambs +marching. No, agallop: _deline the mare_. + +Open your eyes now. I will. One moment. Has all vanished since? If I +open and am for ever in the black adiaphane. _Basta!_ I will see if I +can see. + +See now. There all the time without you: and ever shall be, world +without end. + +They came down the steps from Leahy’s terrace prudently, +_Frauenzimmer_: and down the shelving shore flabbily, their splayed +feet sinking in the silted sand. Like me, like Algy, coming down to our +mighty mother. Number one swung lourdily her midwife’s bag, the other’s +gamp poked in the beach. From the liberties, out for the day. Mrs +Florence MacCabe, relict of the late Patk MacCabe, deeply lamented, of +Bride Street. One of her sisterhood lugged me squealing into life. +Creation from nothing. What has she in the bag? A misbirth with a +trailing navelcord, hushed in ruddy wool. The cords of all link back, +strandentwining cable of all flesh. That is why mystic monks. Will you +be as gods? Gaze in your _omphalos_. Hello. Kinch here. Put me on to +Edenville. Aleph, alpha: nought, nought, one. + +Spouse and helpmate of Adam Kadmon: Heva, naked Eve. She had no navel. +Gaze. Belly without blemish, bulging big, a buckler of taut vellum, no, +whiteheaped corn, orient and immortal, standing from everlasting to +everlasting. Womb of sin. + +Wombed in sin darkness I was too, made not begotten. By them, the man +with my voice and my eyes and a ghostwoman with ashes on her breath. +They clasped and sundered, did the coupler’s will. From before the ages +He willed me and now may not will me away or ever. A _lex eterna_ stays +about Him. Is that then the divine substance wherein Father and Son are +consubstantial? Where is poor dear Arius to try conclusions? Warring +his life long upon the contransmagnificandjewbangtantiality. Illstarred +heresiarch! In a Greek watercloset he breathed his last: _euthanasia_. +With beaded mitre and with crozier, stalled upon his throne, widower of +a widowed see, with upstiffed _omophorion_, with clotted hinderparts. + +Airs romped round him, nipping and eager airs. They are coming, waves. +The whitemaned seahorses, champing, brightwindbridled, the steeds of +Mananaan. + +I mustn’t forget his letter for the press. And after? The Ship, half +twelve. By the way go easy with that money like a good young imbecile. +Yes, I must. + +His pace slackened. Here. Am I going to aunt Sara’s or not? My +consubstantial father’s voice. Did you see anything of your artist +brother Stephen lately? No? Sure he’s not down in Strasburg terrace +with his aunt Sally? Couldn’t he fly a bit higher than that, eh? And +and and and tell us, Stephen, how is uncle Si? O, weeping God, the +things I married into! De boys up in de hayloft. The drunken little +costdrawer and his brother, the cornet player. Highly respectable +gondoliers! And skeweyed Walter sirring his father, no less! Sir. Yes, +sir. No, sir. Jesus wept: and no wonder, by Christ! + +I pull the wheezy bell of their shuttered cottage: and wait. They take +me for a dun, peer out from a coign of vantage. + +—It’s Stephen, sir. + +—Let him in. Let Stephen in. + +A bolt drawn back and Walter welcomes me. + +—We thought you were someone else. + +In his broad bed nuncle Richie, pillowed and blanketed, extends over +the hillock of his knees a sturdy forearm. Cleanchested. He has washed +the upper moiety. + +—Morrow, nephew. + +He lays aside the lapboard whereon he drafts his bills of costs for the +eyes of master Goff and master Shapland Tandy, filing consents and +common searches and a writ of _Duces Tecum_. A bogoak frame over his +bald head: Wilde’s _Requiescat_. The drone of his misleading whistle +brings Walter back. + +—Yes, sir? + +—Malt for Richie and Stephen, tell mother. Where is she? + +—Bathing Crissie, sir. + +Papa’s little bedpal. Lump of love. + +—No, uncle Richie... + +—Call me Richie. Damn your lithia water. It lowers. Whusky! + +—Uncle Richie, really... + +—Sit down or by the law Harry I’ll knock you down. + +Walter squints vainly for a chair. + +—He has nothing to sit down on, sir. + +—He has nowhere to put it, you mug. Bring in our chippendale chair. +Would you like a bite of something? None of your damned lawdeedaw airs +here. The rich of a rasher fried with a herring? Sure? So much the +better. We have nothing in the house but backache pills. + +_All’erta!_ + +He drones bars of Ferrando’s _aria di sortita_. The grandest number, +Stephen, in the whole opera. Listen. + +His tuneful whistle sounds again, finely shaded, with rushes of the +air, his fists bigdrumming on his padded knees. + +This wind is sweeter. + +Houses of decay, mine, his and all. You told the Clongowes gentry you +had an uncle a judge and an uncle a general in the army. Come out of +them, Stephen. Beauty is not there. Nor in the stagnant bay of Marsh’s +library where you read the fading prophecies of Joachim Abbas. For +whom? The hundredheaded rabble of the cathedral close. A hater of his +kind ran from them to the wood of madness, his mane foaming in the +moon, his eyeballs stars. Houyhnhnm, horsenostrilled. The oval equine +faces, Temple, Buck Mulligan, Foxy Campbell, Lanternjaws. Abbas father, +furious dean, what offence laid fire to their brains? Paff! _Descende, +calve, ut ne nimium decalveris_. A garland of grey hair on his +comminated head see him me clambering down to the footpace +(_descende!_), clutching a monstrance, basiliskeyed. Get down, +baldpoll! A choir gives back menace and echo, assisting about the +altar’s horns, the snorted Latin of jackpriests moving burly in their +albs, tonsured and oiled and gelded, fat with the fat of kidneys of +wheat. + +And at the same instant perhaps a priest round the corner is elevating +it. Dringdring! And two streets off another locking it into a pyx. +Dringadring! And in a ladychapel another taking housel all to his own +cheek. Dringdring! Down, up, forward, back. Dan Occam thought of that, +invincible doctor. A misty English morning the imp hypostasis tickled +his brain. Bringing his host down and kneeling he heard twine with his +second bell the first bell in the transept (he is lifting his) and, +rising, heard (now I am lifting) their two bells (he is kneeling) twang +in diphthong. + +Cousin Stephen, you will never be a saint. Isle of saints. You were +awfully holy, weren’t you? You prayed to the Blessed Virgin that you +might not have a red nose. You prayed to the devil in Serpentine avenue +that the fubsy widow in front might lift her clothes still more from +the wet street. _O si, certo!_ Sell your soul for that, do, dyed rags +pinned round a squaw. More tell me, more still! On the top of the Howth +tram alone crying to the rain: _Naked women! Naked women!_ What about +that, eh? + +What about what? What else were they invented for? + +Reading two pages apiece of seven books every night, eh? I was young. +You bowed to yourself in the mirror, stepping forward to applause +earnestly, striking face. Hurray for the Goddamned idiot! Hray! No-one +saw: tell no-one. Books you were going to write with letters for +titles. Have you read his F? O yes, but I prefer Q. Yes, but W is +wonderful. O yes, W. Remember your epiphanies written on green oval +leaves, deeply deep, copies to be sent if you died to all the great +libraries of the world, including Alexandria? Someone was to read them +there after a few thousand years, a mahamanvantara. Pico della +Mirandola like. Ay, very like a whale. When one reads these strange +pages of one long gone one feels that one is at one with one who +once... + +The grainy sand had gone from under his feet. His boots trod again a +damp crackling mast, razorshells, squeaking pebbles, that on the +unnumbered pebbles beats, wood sieved by the shipworm, lost Armada. +Unwholesome sandflats waited to suck his treading soles, breathing +upward sewage breath, a pocket of seaweed smouldered in seafire under a +midden of man’s ashes. He coasted them, walking warily. A porterbottle +stood up, stogged to its waist, in the cakey sand dough. A sentinel: +isle of dreadful thirst. Broken hoops on the shore; at the land a maze +of dark cunning nets; farther away chalkscrawled backdoors and on the +higher beach a dryingline with two crucified shirts. Ringsend: wigwams +of brown steersmen and master mariners. Human shells. + +He halted. I have passed the way to aunt Sara’s. Am I not going there? +Seems not. No-one about. He turned northeast and crossed the firmer +sand towards the Pigeonhouse. + +_—Qui vous a mis dans cette fichue position?_ + +_—C’est le pigeon, Joseph._ + +Patrice, home on furlough, lapped warm milk with me in the bar +MacMahon. Son of the wild goose, Kevin Egan of Paris. My father’s a +bird, he lapped the sweet _lait chaud_ with pink young tongue, plump +bunny’s face. Lap, _lapin._ He hopes to win in the _gros lots_. About +the nature of women he read in Michelet. But he must send me _La Vie de +Jésus_ by M. Léo Taxil. Lent it to his friend. + +_—C’est tordant, vous savez. Moi, je suis socialiste. Je ne crois pas +en l’existence de Dieu. Faut pas le dire à mon père._ + +_—Il croit?_ + +_—Mon père, oui._ + +_Schluss_. He laps. + +My Latin quarter hat. God, we simply must dress the character. I want +puce gloves. You were a student, weren’t you? Of what in the other +devil’s name? Paysayenn. P. C. N., you know: _physiques, chimiques et +naturelles_. Aha. Eating your groatsworth of _mou en civet_, fleshpots +of Egypt, elbowed by belching cabmen. Just say in the most natural +tone: when I was in Paris; _boul’ Mich’_, I used to. Yes, used to carry +punched tickets to prove an alibi if they arrested you for murder +somewhere. Justice. On the night of the seventeenth of February 1904 +the prisoner was seen by two witnesses. Other fellow did it: other me. +Hat, tie, overcoat, nose. _Lui, c’est moi_. You seem to have enjoyed +yourself. + +Proudly walking. Whom were you trying to walk like? Forget: a +dispossessed. With mother’s money order, eight shillings, the banging +door of the post office slammed in your face by the usher. Hunger +toothache. _Encore deux minutes_. Look clock. Must get. _Fermé_. Hired +dog! Shoot him to bloody bits with a bang shotgun, bits man spattered +walls all brass buttons. Bits all khrrrrklak in place clack back. Not +hurt? O, that’s all right. Shake hands. See what I meant, see? O, +that’s all right. Shake a shake. O, that’s all only all right. + +You were going to do wonders, what? Missionary to Europe after fiery +Columbanus. Fiacre and Scotus on their creepystools in heaven spilt +from their pintpots, loudlatinlaughing: _Euge! Euge!_ Pretending to +speak broken English as you dragged your valise, porter threepence, +across the slimy pier at Newhaven. _Comment?_ Rich booty you brought +back; _Le Tutu_, five tattered numbers of _Pantalon Blanc et Culotte +Rouge_; a blue French telegram, curiosity to show: + +—Mother dying come home father. + +The aunt thinks you killed your mother. That’s why she won’t. + + Then here’s a health to Mulligan’s aunt + And I’ll tell you the reason why. + She always kept things decent in + The Hannigan famileye. + +His feet marched in sudden proud rhythm over the sand furrows, along by +the boulders of the south wall. He stared at them proudly, piled stone +mammoth skulls. Gold light on sea, on sand, on boulders. The sun is +there, the slender trees, the lemon houses. + +Paris rawly waking, crude sunlight on her lemon streets. Moist pith of +farls of bread, the froggreen wormwood, her matin incense, court the +air. Belluomo rises from the bed of his wife’s lover’s wife, the +kerchiefed housewife is astir, a saucer of acetic acid in her hand. In +Rodot’s Yvonne and Madeleine newmake their tumbled beauties, shattering +with gold teeth _chaussons_ of pastry, their mouths yellowed with the +_pus_ of _flan bréton_. Faces of Paris men go by, their wellpleased +pleasers, curled conquistadores. + +Noon slumbers. Kevin Egan rolls gunpowder cigarettes through fingers +smeared with printer’s ink, sipping his green fairy as Patrice his +white. About us gobblers fork spiced beans down their gullets. _Un demi +sétier!_ A jet of coffee steam from the burnished caldron. She serves +me at his beck. _Il est irlandais. Hollandais? Non fromage. Deux +irlandais, nous, Irlande, vous savez ah, oui!_ She thought you wanted a +cheese _hollandais_. Your postprandial, do you know that word? +Postprandial. There was a fellow I knew once in Barcelona, queer +fellow, used to call it his postprandial. Well: _slainte!_ Around the +slabbed tables the tangle of wined breaths and grumbling gorges. His +breath hangs over our saucestained plates, the green fairy’s fang +thrusting between his lips. Of Ireland, the Dalcassians, of hopes, +conspiracies, of Arthur Griffith now, A E, pimander, good shepherd of +men. To yoke me as his yokefellow, our crimes our common cause. You’re +your father’s son. I know the voice. His fustian shirt, +sanguineflowered, trembles its Spanish tassels at his secrets. M. +Drumont, famous journalist, Drumont, know what he called queen +Victoria? Old hag with the yellow teeth. _Vieille ogresse_ with the +_dents jaunes_. Maud Gonne, beautiful woman, _La Patrie_, M. Millevoye, +Félix Faure, know how he died? Licentious men. The froeken, _bonne à +tout faire_, who rubs male nakedness in the bath at Upsala. _Moi +faire_, she said, _Tous les messieurs_. Not this _Monsieur_, I said. +Most licentious custom. Bath a most private thing. I wouldn’t let my +brother, not even my own brother, most lascivious thing. Green eyes, I +see you. Fang, I feel. Lascivious people. + +The blue fuse burns deadly between hands and burns clear. Loose +tobaccoshreds catch fire: a flame and acrid smoke light our corner. Raw +facebones under his peep of day boy’s hat. How the head centre got +away, authentic version. Got up as a young bride, man, veil, +orangeblossoms, drove out the road to Malahide. Did, faith. Of lost +leaders, the betrayed, wild escapes. Disguises, clutched at, gone, not +here. + +Spurned lover. I was a strapping young gossoon at that time, I tell +you. I’ll show you my likeness one day. I was, faith. Lover, for her +love he prowled with colonel Richard Burke, tanist of his sept, under +the walls of Clerkenwell and, crouching, saw a flame of vengeance hurl +them upward in the fog. Shattered glass and toppling masonry. In gay +Paree he hides, Egan of Paris, unsought by any save by me. Making his +day’s stations, the dingy printingcase, his three taverns, the +Montmartre lair he sleeps short night in, rue de la Goutte-d’Or, +damascened with flyblown faces of the gone. Loveless, landless, +wifeless. She is quite nicey comfy without her outcast man, madame in +rue Gît-le-Cœur, canary and two buck lodgers. Peachy cheeks, a zebra +skirt, frisky as a young thing’s. Spurned and undespairing. Tell Pat +you saw me, won’t you? I wanted to get poor Pat a job one time. _Mon +fils_, soldier of France. I taught him to sing _The boys of Kilkenny +are stout roaring blades_. Know that old lay? I taught Patrice that. +Old Kilkenny: saint Canice, Strongbow’s castle on the Nore. Goes like +this. _O, O_. He takes me, Napper Tandy, by the hand. + + O, O the boys of + Kilkenny... + +Weak wasting hand on mine. They have forgotten Kevin Egan, not he them. +Remembering thee, O Sion. + +He had come nearer the edge of the sea and wet sand slapped his boots. +The new air greeted him, harping in wild nerves, wind of wild air of +seeds of brightness. Here, I am not walking out to the Kish lightship, +am I? He stood suddenly, his feet beginning to sink slowly in the +quaking soil. Turn back. + +Turning, he scanned the shore south, his feet sinking again slowly in +new sockets. The cold domed room of the tower waits. Through the +barbacans the shafts of light are moving ever, slowly ever as my feet +are sinking, creeping duskward over the dial floor. Blue dusk, +nightfall, deep blue night. In the darkness of the dome they wait, +their pushedback chairs, my obelisk valise, around a board of abandoned +platters. Who to clear it? He has the key. I will not sleep there when +this night comes. A shut door of a silent tower, entombing their blind +bodies, the panthersahib and his pointer. Call: no answer. He lifted +his feet up from the suck and turned back by the mole of boulders. Take +all, keep all. My soul walks with me, form of forms. So in the moon’s +midwatches I pace the path above the rocks, in sable silvered, hearing +Elsinore’s tempting flood. + +The flood is following me. I can watch it flow past from here. Get back +then by the Poolbeg road to the strand there. He climbed over the sedge +and eely oarweeds and sat on a stool of rock, resting his ashplant in a +grike. + +A bloated carcass of a dog lay lolled on bladderwrack. Before him the +gunwale of a boat, sunk in sand. _Un coche ensablé_ Louis Veuillot +called Gautier’s prose. These heavy sands are language tide and wind +have silted here. And these, the stoneheaps of dead builders, a warren +of weasel rats. Hide gold there. Try it. You have some. Sands and +stones. Heavy of the past. Sir Lout’s toys. Mind you don’t get one bang +on the ear. I’m the bloody well gigant rolls all them bloody well +boulders, bones for my steppingstones. Feefawfum. I zmellz de bloodz +odz an Iridzman. + +A point, live dog, grew into sight running across the sweep of sand. +Lord, is he going to attack me? Respect his liberty. You will not be +master of others or their slave. I have my stick. Sit tight. From +farther away, walking shoreward across from the crested tide, figures, +two. The two maries. They have tucked it safe mong the bulrushes. +Peekaboo. I see you. No, the dog. He is running back to them. Who? + +Galleys of the Lochlanns ran here to beach, in quest of prey, their +bloodbeaked prows riding low on a molten pewter surf. Dane vikings, +torcs of tomahawks aglitter on their breasts when Malachi wore the +collar of gold. A school of turlehide whales stranded in hot noon, +spouting, hobbling in the shallows. Then from the starving cagework +city a horde of jerkined dwarfs, my people, with flayers’ knives, +running, scaling, hacking in green blubbery whalemeat. Famine, plague +and slaughters. Their blood is in me, their lusts my waves. I moved +among them on the frozen Liffey, that I, a changeling, among the +spluttering resin fires. I spoke to no-one: none to me. + +The dog’s bark ran towards him, stopped, ran back. Dog of my enemy. I +just simply stood pale, silent, bayed about. _Terribilia meditans_. A +primrose doublet, fortune’s knave, smiled on my fear. For that are you +pining, the bark of their applause? Pretenders: live their lives. The +Bruce’s brother, Thomas Fitzgerald, silken knight, Perkin Warbeck, +York’s false scion, in breeches of silk of whiterose ivory, wonder of a +day, and Lambert Simnel, with a tail of nans and sutlers, a scullion +crowned. All kings’ sons. Paradise of pretenders then and now. He saved +men from drowning and you shake at a cur’s yelping. But the courtiers +who mocked Guido in Or san Michele were in their own house. House of... +We don’t want any of your medieval abstrusiosities. Would you do what +he did? A boat would be near, a lifebuoy. _Natürlich_, put there for +you. Would you or would you not? The man that was drowned nine days ago +off Maiden’s rock. They are waiting for him now. The truth, spit it +out. I would want to. I would try. I am not a strong swimmer. Water +cold soft. When I put my face into it in the basin at Clongowes. Can’t +see! Who’s behind me? Out quickly, quickly! Do you see the tide flowing +quickly in on all sides, sheeting the lows of sand quickly, +shellcocoacoloured? If I had land under my feet. I want his life still +to be his, mine to be mine. A drowning man. His human eyes scream to me +out of horror of his death. I... With him together down... I could not +save her. Waters: bitter death: lost. + +A woman and a man. I see her skirties. Pinned up, I bet. + +Their dog ambled about a bank of dwindling sand, trotting, sniffing on +all sides. Looking for something lost in a past life. Suddenly he made +off like a bounding hare, ears flung back, chasing the shadow of a +lowskimming gull. The man’s shrieked whistle struck his limp ears. He +turned, bounded back, came nearer, trotted on twinkling shanks. On a +field tenney a buck, trippant, proper, unattired. At the lacefringe of +the tide he halted with stiff forehoofs, seawardpointed ears. His snout +lifted barked at the wavenoise, herds of seamorse. They serpented +towards his feet, curling, unfurling many crests, every ninth, +breaking, plashing, from far, from farther out, waves and waves. + +Cocklepickers. They waded a little way in the water and, stooping, +soused their bags and, lifting them again, waded out. The dog yelped +running to them, reared up and pawed them, dropping on all fours, again +reared up at them with mute bearish fawning. Unheeded he kept by them +as they came towards the drier sand, a rag of wolf’s tongue redpanting +from his jaws. His speckled body ambled ahead of them and then loped +off at a calf’s gallop. The carcass lay on his path. He stopped, +sniffed, stalked round it, brother, nosing closer, went round it, +sniffling rapidly like a dog all over the dead dog’s bedraggled fell. +Dogskull, dogsniff, eyes on the ground, moves to one great goal. Ah, +poor dogsbody! Here lies poor dogsbody’s body. + +—Tatters! Out of that, you mongrel! + +The cry brought him skulking back to his master and a blunt bootless +kick sent him unscathed across a spit of sand, crouched in flight. He +slunk back in a curve. Doesn’t see me. Along by the edge of the mole he +lolloped, dawdled, smelt a rock and from under a cocked hindleg pissed +against it. He trotted forward and, lifting again his hindleg, pissed +quick short at an unsmelt rock. The simple pleasures of the poor. His +hindpaws then scattered the sand: then his forepaws dabbled and delved. +Something he buried there, his grandmother. He rooted in the sand, +dabbling, delving and stopped to listen to the air, scraped up the sand +again with a fury of his claws, soon ceasing, a pard, a panther, got in +spousebreach, vulturing the dead. + +After he woke me last night same dream or was it? Wait. Open hallway. +Street of harlots. Remember. Haroun al Raschid. I am almosting it. That +man led me, spoke. I was not afraid. The melon he had he held against +my face. Smiled: creamfruit smell. That was the rule, said. In. Come. +Red carpet spread. You will see who. + +Shouldering their bags they trudged, the red Egyptians. His blued feet +out of turnedup trousers slapped the clammy sand, a dull brick muffler +strangling his unshaven neck. With woman steps she followed: the +ruffian and his strolling mort. Spoils slung at her back. Loose sand +and shellgrit crusted her bare feet. About her windraw face hair +trailed. Behind her lord, his helpmate, bing awast to Romeville. When +night hides her body’s flaws calling under her brown shawl from an +archway where dogs have mired. Her fancyman is treating two Royal +Dublins in O’Loughlin’s of Blackpitts. Buss her, wap in rogues’ rum +lingo, for, O, my dimber wapping dell! A shefiend’s whiteness under her +rancid rags. Fumbally’s lane that night: the tanyard smells. + + White thy fambles, red thy gan + And thy quarrons dainty is. + Couch a hogshead with me then. + In the darkmans clip and kiss. + +Morose delectation Aquinas tunbelly calls this, _frate porcospino_. +Unfallen Adam rode and not rutted. Call away let him: _thy quarrons +dainty is_. Language no whit worse than his. Monkwords, marybeads +jabber on their girdles: roguewords, tough nuggets patter in their +pockets. + +Passing now. + +A side eye at my Hamlet hat. If I were suddenly naked here as I sit? I +am not. Across the sands of all the world, followed by the sun’s +flaming sword, to the west, trekking to evening lands. She trudges, +schlepps, trains, drags, trascines her load. A tide westering, +moondrawn, in her wake. Tides, myriadislanded, within her, blood not +mine, _oinopa ponton_, a winedark sea. Behold the handmaid of the moon. +In sleep the wet sign calls her hour, bids her rise. Bridebed, +childbed, bed of death, ghostcandled. _Omnis caro ad te veniet_. He +comes, pale vampire, through storm his eyes, his bat sails bloodying +the sea, mouth to her mouth’s kiss. + +Here. Put a pin in that chap, will you? My tablets. Mouth to her kiss. +No. Must be two of em. Glue em well. Mouth to her mouth’s kiss. + +His lips lipped and mouthed fleshless lips of air: mouth to her moomb. +Oomb, allwombing tomb. His mouth moulded issuing breath, unspeeched: +ooeeehah: roar of cataractic planets, globed, blazing, roaring +wayawayawayawayaway. Paper. The banknotes, blast them. Old Deasy’s +letter. Here. Thanking you for the hospitality tear the blank end off. +Turning his back to the sun he bent over far to a table of rock and +scribbled words. That’s twice I forgot to take slips from the library +counter. + +His shadow lay over the rocks as he bent, ending. Why not endless till +the farthest star? Darkly they are there behind this light, darkness +shining in the brightness, delta of Cassiopeia, worlds. Me sits there +with his augur’s rod of ash, in borrowed sandals, by day beside a livid +sea, unbeheld, in violet night walking beneath a reign of uncouth +stars. I throw this ended shadow from me, manshape ineluctable, call it +back. Endless, would it be mine, form of my form? Who watches me here? +Who ever anywhere will read these written words? Signs on a white +field. Somewhere to someone in your flutiest voice. The good bishop of +Cloyne took the veil of the temple out of his shovel hat: veil of space +with coloured emblems hatched on its field. Hold hard. Coloured on a +flat: yes, that’s right. Flat I see, then think distance, near, far, +flat I see, east, back. Ah, see now! Falls back suddenly, frozen in +stereoscope. Click does the trick. You find my words dark. Darkness is +in our souls do you not think? Flutier. Our souls, shamewounded by our +sins, cling to us yet more, a woman to her lover clinging, the more the +more. + +She trusts me, her hand gentle, the longlashed eyes. Now where the blue +hell am I bringing her beyond the veil? Into the ineluctable modality +of the ineluctable visuality. She, she, she. What she? The virgin at +Hodges Figgis’ window on Monday looking in for one of the alphabet +books you were going to write. Keen glance you gave her. Wrist through +the braided jesse of her sunshade. She lives in Leeson park with a +grief and kickshaws, a lady of letters. Talk that to someone else, +Stevie: a pickmeup. Bet she wears those curse of God stays suspenders +and yellow stockings, darned with lumpy wool. Talk about apple +dumplings, _piuttosto_. Where are your wits? + +Touch me. Soft eyes. Soft soft soft hand. I am lonely here. O, touch me +soon, now. What is that word known to all men? I am quiet here alone. +Sad too. Touch, touch me. + +He lay back at full stretch over the sharp rocks, cramming the +scribbled note and pencil into a pocket, his hat tilted down on his +eyes. That is Kevin Egan’s movement I made, nodding for his nap, +sabbath sleep. _Et vidit Deus. Et erant valde bona_. Alo! _Bonjour_. +Welcome as the flowers in May. Under its leaf he watched through +peacocktwittering lashes the southing sun. I am caught in this burning +scene. Pan’s hour, the faunal noon. Among gumheavy serpentplants, +milkoozing fruits, where on the tawny waters leaves lie wide. Pain is +far. + + And no more turn aside and brood. + +His gaze brooded on his broadtoed boots, a buck’s castoffs, +_nebeneinander_. He counted the creases of rucked leather wherein +another’s foot had nested warm. The foot that beat the ground in +tripudium, foot I dislove. But you were delighted when Esther Osvalt’s +shoe went on you: girl I knew in Paris. _Tiens, quel petit pied!_ +Staunch friend, a brother soul: Wilde’s love that dare not speak its +name. His arm: Cranly’s arm. He now will leave me. And the blame? As I +am. As I am. All or not at all. + +In long lassoes from the Cock lake the water flowed full, covering +greengoldenly lagoons of sand, rising, flowing. My ashplant will float +away. I shall wait. No, they will pass on, passing, chafing against the +low rocks, swirling, passing. Better get this job over quick. Listen: a +fourworded wavespeech: seesoo, hrss, rsseeiss, ooos. Vehement breath of +waters amid seasnakes, rearing horses, rocks. In cups of rocks it +slops: flop, slop, slap: bounded in barrels. And, spent, its speech +ceases. It flows purling, widely flowing, floating foampool, flower +unfurling. + +Under the upswelling tide he saw the writhing weeds lift languidly and +sway reluctant arms, hising up their petticoats, in whispering water +swaying and upturning coy silver fronds. Day by day: night by night: +lifted, flooded and let fall. Lord, they are weary; and, whispered to, +they sigh. Saint Ambrose heard it, sigh of leaves and waves, waiting, +awaiting the fullness of their times, _diebus ac noctibus iniurias +patiens ingemiscit_. To no end gathered; vainly then released, +forthflowing, wending back: loom of the moon. Weary too in sight of +lovers, lascivious men, a naked woman shining in her courts, she draws +a toil of waters. + +Five fathoms out there. Full fathom five thy father lies. At one, he +said. Found drowned. High water at Dublin bar. Driving before it a +loose drift of rubble, fanshoals of fishes, silly shells. A corpse +rising saltwhite from the undertow, bobbing a pace a pace a porpoise +landward. There he is. Hook it quick. Pull. Sunk though he be beneath +the watery floor. We have him. Easy now. + +Bag of corpsegas sopping in foul brine. A quiver of minnows, fat of a +spongy titbit, flash through the slits of his buttoned trouserfly. God +becomes man becomes fish becomes barnacle goose becomes featherbed +mountain. Dead breaths I living breathe, tread dead dust, devour a +urinous offal from all dead. Hauled stark over the gunwale he breathes +upward the stench of his green grave, his leprous nosehole snoring to +the sun. + +A seachange this, brown eyes saltblue. Seadeath, mildest of all deaths +known to man. Old Father Ocean. _Prix de Paris_: beware of imitations. +Just you give it a fair trial. We enjoyed ourselves immensely. + +Come. I thirst. Clouding over. No black clouds anywhere, are there? +Thunderstorm. Allbright he falls, proud lightning of the intellect, +_Lucifer, dico, qui nescit occasum_. No. My cockle hat and staff and +hismy sandal shoon. Where? To evening lands. Evening will find itself. + +He took the hilt of his ashplant, lunging with it softly, dallying +still. Yes, evening will find itself in me, without me. All days make +their end. By the way next when is it Tuesday will be the longest day. +Of all the glad new year, mother, the rum tum tiddledy tum. Lawn +Tennyson, gentleman poet. _Già_. For the old hag with the yellow teeth. +And Monsieur Drumont, gentleman journalist. _Già_. My teeth are very +bad. Why, I wonder. Feel. That one is going too. Shells. Ought I go to +a dentist, I wonder, with that money? That one. This. Toothless Kinch, +the superman. Why is that, I wonder, or does it mean something perhaps? + +My handkerchief. He threw it. I remember. Did I not take it up? + +His hand groped vainly in his pockets. No, I didn’t. Better buy one. + +He laid the dry snot picked from his nostril on a ledge of rock, +carefully. For the rest let look who will. + +Behind. Perhaps there is someone. + +He turned his face over a shoulder, rere regardant. Moving through the +air high spars of a threemaster, her sails brailed up on the +crosstrees, homing, upstream, silently moving, a silent ship. + + + + +— II — + + +[ 4 ] + +Mr Leopold Bloom ate with relish the inner organs of beasts and fowls. +He liked thick giblet soup, nutty gizzards, a stuffed roast heart, +liverslices fried with crustcrumbs, fried hencods’ roes. Most of all he +liked grilled mutton kidneys which gave to his palate a fine tang of +faintly scented urine. + +Kidneys were in his mind as he moved about the kitchen softly, righting +her breakfast things on the humpy tray. Gelid light and air were in the +kitchen but out of doors gentle summer morning everywhere. Made him +feel a bit peckish. + +The coals were reddening. + +Another slice of bread and butter: three, four: right. She didn’t like +her plate full. Right. He turned from the tray, lifted the kettle off +the hob and set it sideways on the fire. It sat there, dull and squat, +its spout stuck out. Cup of tea soon. Good. Mouth dry. The cat walked +stiffly round a leg of the table with tail on high. + +—Mkgnao! + +—O, there you are, Mr Bloom said, turning from the fire. + +The cat mewed in answer and stalked again stiffly round a leg of the +table, mewing. Just how she stalks over my writingtable. Prr. Scratch +my head. Prr. + +Mr Bloom watched curiously, kindly the lithe black form. Clean to see: +the gloss of her sleek hide, the white button under the butt of her +tail, the green flashing eyes. He bent down to her, his hands on his +knees. + +—Milk for the pussens, he said. + +—Mrkgnao! the cat cried. + +They call them stupid. They understand what we say better than we +understand them. She understands all she wants to. Vindictive too. +Cruel. Her nature. Curious mice never squeal. Seem to like it. Wonder +what I look like to her. Height of a tower? No, she can jump me. + +—Afraid of the chickens she is, he said mockingly. Afraid of the +chookchooks. I never saw such a stupid pussens as the pussens. + +—Mrkrgnao! the cat said loudly. + +She blinked up out of her avid shameclosing eyes, mewing plaintively +and long, showing him her milkwhite teeth. He watched the dark eyeslits +narrowing with greed till her eyes were green stones. Then he went to +the dresser, took the jug Hanlon’s milkman had just filled for him, +poured warmbubbled milk on a saucer and set it slowly on the floor. + +—Gurrhr! she cried, running to lap. + +He watched the bristles shining wirily in the weak light as she tipped +three times and licked lightly. Wonder is it true if you clip them they +can’t mouse after. Why? They shine in the dark, perhaps, the tips. Or +kind of feelers in the dark, perhaps. + +He listened to her licking lap. Ham and eggs, no. No good eggs with +this drouth. Want pure fresh water. Thursday: not a good day either for +a mutton kidney at Buckley’s. Fried with butter, a shake of pepper. +Better a pork kidney at Dlugacz’s. While the kettle is boiling. She +lapped slower, then licking the saucer clean. Why are their tongues so +rough? To lap better, all porous holes. Nothing she can eat? He glanced +round him. No. + +On quietly creaky boots he went up the staircase to the hall, paused by +the bedroom door. She might like something tasty. Thin bread and butter +she likes in the morning. Still perhaps: once in a way. + +He said softly in the bare hall: + +—I’m going round the corner. Be back in a minute. + +And when he had heard his voice say it he added: + +—You don’t want anything for breakfast? + +A sleepy soft grunt answered: + +—Mn. + +No. She didn’t want anything. He heard then a warm heavy sigh, softer, +as she turned over and the loose brass quoits of the bedstead jingled. +Must get those settled really. Pity. All the way from Gibraltar. +Forgotten any little Spanish she knew. Wonder what her father gave for +it. Old style. Ah yes! of course. Bought it at the governor’s auction. +Got a short knock. Hard as nails at a bargain, old Tweedy. Yes, sir. At +Plevna that was. I rose from the ranks, sir, and I’m proud of it. Still +he had brains enough to make that corner in stamps. Now that was +farseeing. + +His hand took his hat from the peg over his initialled heavy overcoat +and his lost property office secondhand waterproof. Stamps: stickyback +pictures. Daresay lots of officers are in the swim too. Course they do. +The sweated legend in the crown of his hat told him mutely: Plasto’s +high grade ha. He peeped quickly inside the leather headband. White +slip of paper. Quite safe. + +On the doorstep he felt in his hip pocket for the latchkey. Not there. +In the trousers I left off. Must get it. Potato I have. Creaky +wardrobe. No use disturbing her. She turned over sleepily that time. He +pulled the halldoor to after him very quietly, more, till the footleaf +dropped gently over the threshold, a limp lid. Looked shut. All right +till I come back anyhow. + +He crossed to the bright side, avoiding the loose cellarflap of number +seventyfive. The sun was nearing the steeple of George’s church. Be a +warm day I fancy. Specially in these black clothes feel it more. Black +conducts, reflects, (refracts is it?), the heat. But I couldn’t go in +that light suit. Make a picnic of it. His eyelids sank quietly often as +he walked in happy warmth. Boland’s breadvan delivering with trays our +daily but she prefers yesterday’s loaves turnovers crisp crowns hot. +Makes you feel young. Somewhere in the east: early morning: set off at +dawn. Travel round in front of the sun, steal a day’s march on him. +Keep it up for ever never grow a day older technically. Walk along a +strand, strange land, come to a city gate, sentry there, old ranker +too, old Tweedy’s big moustaches, leaning on a long kind of a spear. +Wander through awned streets. Turbaned faces going by. Dark caves of +carpet shops, big man, Turko the terrible, seated crosslegged, smoking +a coiled pipe. Cries of sellers in the streets. Drink water scented +with fennel, sherbet. Dander along all day. Might meet a robber or two. +Well, meet him. Getting on to sundown. The shadows of the mosques among +the pillars: priest with a scroll rolled up. A shiver of the trees, +signal, the evening wind. I pass on. Fading gold sky. A mother watches +me from her doorway. She calls her children home in their dark +language. High wall: beyond strings twanged. Night sky, moon, violet, +colour of Molly’s new garters. Strings. Listen. A girl playing one of +those instruments what do you call them: dulcimers. I pass. + +Probably not a bit like it really. Kind of stuff you read: in the track +of the sun. Sunburst on the titlepage. He smiled, pleasing himself. +What Arthur Griffith said about the headpiece over the _Freeman_ +leader: a homerule sun rising up in the northwest from the laneway +behind the bank of Ireland. He prolonged his pleased smile. Ikey touch +that: homerule sun rising up in the northwest. + +He approached Larry O’Rourke’s. From the cellar grating floated up the +flabby gush of porter. Through the open doorway the bar squirted out +whiffs of ginger, teadust, biscuitmush. Good house, however: just the +end of the city traffic. For instance M’Auley’s down there: n. g. as +position. Of course if they ran a tramline along the North Circular +from the cattlemarket to the quays value would go up like a shot. + +Baldhead over the blind. Cute old codger. No use canvassing him for an +ad. Still he knows his own business best. There he is, sure enough, my +bold Larry, leaning against the sugarbin in his shirtsleeves watching +the aproned curate swab up with mop and bucket. Simon Dedalus takes him +off to a tee with his eyes screwed up. Do you know what I’m going to +tell you? What’s that, Mr O’Rourke? Do you know what? The Russians, +they’d only be an eight o’clock breakfast for the Japanese. + +Stop and say a word: about the funeral perhaps. Sad thing about poor +Dignam, Mr O’Rourke. + +Turning into Dorset street he said freshly in greeting through the +doorway: + +—Good day, Mr O’Rourke. + +—Good day to you. + +—Lovely weather, sir. + +—’Tis all that. + +Where do they get the money? Coming up redheaded curates from the +county Leitrim, rinsing empties and old man in the cellar. Then, lo and +behold, they blossom out as Adam Findlaters or Dan Tallons. Then think +of the competition. General thirst. Good puzzle would be cross Dublin +without passing a pub. Save it they can’t. Off the drunks perhaps. Put +down three and carry five. What is that, a bob here and there, dribs +and drabs. On the wholesale orders perhaps. Doing a double shuffle with +the town travellers. Square it you with the boss and we’ll split the +job, see? + +How much would that tot to off the porter in the month? Say ten barrels +of stuff. Say he got ten per cent off. O more. Fifteen. He passed Saint +Joseph’s National school. Brats’ clamour. Windows open. Fresh air helps +memory. Or a lilt. Ahbeesee defeegee kelomen opeecue rustyouvee +doubleyou. Boys are they? Yes. Inishturk. Inishark. Inishboffin. At +their joggerfry. Mine. Slieve Bloom. + +He halted before Dlugacz’s window, staring at the hanks of sausages, +polonies, black and white. Fifteen multiplied by. The figures whitened +in his mind, unsolved: displeased, he let them fade. The shiny links, +packed with forcemeat, fed his gaze and he breathed in tranquilly the +lukewarm breath of cooked spicy pigs’ blood. + +A kidney oozed bloodgouts on the willowpatterned dish: the last. He +stood by the nextdoor girl at the counter. Would she buy it too, +calling the items from a slip in her hand? Chapped: washingsoda. And a +pound and a half of Denny’s sausages. His eyes rested on her vigorous +hips. Woods his name is. Wonder what he does. Wife is oldish. New +blood. No followers allowed. Strong pair of arms. Whacking a carpet on +the clothesline. She does whack it, by George. The way her crooked +skirt swings at each whack. + +The ferreteyed porkbutcher folded the sausages he had snipped off with +blotchy fingers, sausagepink. Sound meat there: like a stallfed heifer. + +He took a page up from the pile of cut sheets: the model farm at +Kinnereth on the lakeshore of Tiberias. Can become ideal winter +sanatorium. Moses Montefiore. I thought he was. Farmhouse, wall round +it, blurred cattle cropping. He held the page from him: interesting: +read it nearer, the title, the blurred cropping cattle, the page +rustling. A young white heifer. Those mornings in the cattlemarket, the +beasts lowing in their pens, branded sheep, flop and fall of dung, the +breeders in hobnailed boots trudging through the litter, slapping a +palm on a ripemeated hindquarter, there’s a prime one, unpeeled +switches in their hands. He held the page aslant patiently, bending his +senses and his will, his soft subject gaze at rest. The crooked skirt +swinging, whack by whack by whack. + +The porkbutcher snapped two sheets from the pile, wrapped up her prime +sausages and made a red grimace. + +—Now, my miss, he said. + +She tendered a coin, smiling boldly, holding her thick wrist out. + +—Thank you, my miss. And one shilling threepence change. For you, +please? + +Mr Bloom pointed quickly. To catch up and walk behind her if she went +slowly, behind her moving hams. Pleasant to see first thing in the +morning. Hurry up, damn it. Make hay while the sun shines. She stood +outside the shop in sunlight and sauntered lazily to the right. He +sighed down his nose: they never understand. Sodachapped hands. Crusted +toenails too. Brown scapulars in tatters, defending her both ways. The +sting of disregard glowed to weak pleasure within his breast. For +another: a constable off duty cuddling her in Eccles’ Lane. They like +them sizeable. Prime sausage. O please, Mr Policeman, I’m lost in the +wood. + +—Threepence, please. + +His hand accepted the moist tender gland and slid it into a sidepocket. +Then it fetched up three coins from his trousers’ pocket and laid them +on the rubber prickles. They lay, were read quickly and quickly slid, +disc by disc, into the till. + +—Thank you, sir. Another time. + +A speck of eager fire from foxeyes thanked him. He withdrew his gaze +after an instant. No: better not: another time. + +—Good morning, he said, moving away. + +—Good morning, sir. + +No sign. Gone. What matter? + +He walked back along Dorset street, reading gravely. Agendath Netaim: +planters’ company. To purchase waste sandy tracts from Turkish +government and plant with eucalyptus trees. Excellent for shade, fuel +and construction. Orangegroves and immense melonfields north of Jaffa. +You pay eighty marks and they plant a dunam of land for you with +olives, oranges, almonds or citrons. Olives cheaper: oranges need +artificial irrigation. Every year you get a sending of the crop. Your +name entered for life as owner in the book of the union. Can pay ten +down and the balance in yearly instalments. Bleibtreustrasse 34, +Berlin, W. 15. + +Nothing doing. Still an idea behind it. + +He looked at the cattle, blurred in silver heat. Silverpowdered +olivetrees. Quiet long days: pruning, ripening. Olives are packed in +jars, eh? I have a few left from Andrews. Molly spitting them out. +Knows the taste of them now. Oranges in tissue paper packed in crates. +Citrons too. Wonder is poor Citron still in Saint Kevin’s parade. And +Mastiansky with the old cither. Pleasant evenings we had then. Molly in +Citron’s basketchair. Nice to hold, cool waxen fruit, hold in the hand, +lift it to the nostrils and smell the perfume. Like that, heavy, sweet, +wild perfume. Always the same, year after year. They fetched high +prices too, Moisel told me. Arbutus place: Pleasants street: pleasant +old times. Must be without a flaw, he said. Coming all that way: Spain, +Gibraltar, Mediterranean, the Levant. Crates lined up on the quayside +at Jaffa, chap ticking them off in a book, navvies handling them +barefoot in soiled dungarees. There’s whatdoyoucallhim out of. How do +you? Doesn’t see. Chap you know just to salute bit of a bore. His back +is like that Norwegian captain’s. Wonder if I’ll meet him today. +Watering cart. To provoke the rain. On earth as it is in heaven. + +A cloud began to cover the sun slowly, wholly. Grey. Far. + +No, not like that. A barren land, bare waste. Vulcanic lake, the dead +sea: no fish, weedless, sunk deep in the earth. No wind could lift +those waves, grey metal, poisonous foggy waters. Brimstone they called +it raining down: the cities of the plain: Sodom, Gomorrah, Edom. All +dead names. A dead sea in a dead land, grey and old. Old now. It bore +the oldest, the first race. A bent hag crossed from Cassidy’s, +clutching a naggin bottle by the neck. The oldest people. Wandered far +away over all the earth, captivity to captivity, multiplying, dying, +being born everywhere. It lay there now. Now it could bear no more. +Dead: an old woman’s: the grey sunken cunt of the world. + +Desolation. + +Grey horror seared his flesh. Folding the page into his pocket he +turned into Eccles street, hurrying homeward. Cold oils slid along his +veins, chilling his blood: age crusting him with a salt cloak. Well, I +am here now. Yes, I am here now. Morning mouth bad images. Got up wrong +side of the bed. Must begin again those Sandow’s exercises. On the +hands down. Blotchy brown brick houses. Number eighty still unlet. Why +is that? Valuation is only twentyeight. Towers, Battersby, North, +MacArthur: parlour windows plastered with bills. Plasters on a sore +eye. To smell the gentle smoke of tea, fume of the pan, sizzling +butter. Be near her ample bedwarmed flesh. Yes, yes. + +Quick warm sunlight came running from Berkeley road, swiftly, in slim +sandals, along the brightening footpath. Runs, she runs to meet me, a +girl with gold hair on the wind. + +Two letters and a card lay on the hallfloor. He stooped and gathered +them. Mrs Marion Bloom. His quickened heart slowed at once. Bold hand. +Mrs Marion. + +—Poldy! + +Entering the bedroom he halfclosed his eyes and walked through warm +yellow twilight towards her tousled head. + +—Who are the letters for? + +He looked at them. Mullingar. Milly. + +—A letter for me from Milly, he said carefully, and a card to you. And +a letter for you. + +He laid her card and letter on the twill bedspread near the curve of +her knees. + +—Do you want the blind up? + +Letting the blind up by gentle tugs halfway his backward eye saw her +glance at the letter and tuck it under her pillow. + +—That do? he asked, turning. + +She was reading the card, propped on her elbow. + +—She got the things, she said. + +He waited till she had laid the card aside and curled herself back +slowly with a snug sigh. + +—Hurry up with that tea, she said. I’m parched. + +—The kettle is boiling, he said. + +But he delayed to clear the chair: her striped petticoat, tossed soiled +linen: and lifted all in an armful on to the foot of the bed. + +As he went down the kitchen stairs she called: + +—Poldy! + +—What? + +—Scald the teapot. + +On the boil sure enough: a plume of steam from the spout. He scalded +and rinsed out the teapot and put in four full spoons of tea, tilting +the kettle then to let the water flow in. Having set it to draw he took +off the kettle, crushed the pan flat on the live coals and watched the +lump of butter slide and melt. While he unwrapped the kidney the cat +mewed hungrily against him. Give her too much meat she won’t mouse. Say +they won’t eat pork. Kosher. Here. He let the bloodsmeared paper fall +to her and dropped the kidney amid the sizzling butter sauce. Pepper. +He sprinkled it through his fingers ringwise from the chipped eggcup. + +Then he slit open his letter, glancing down the page and over. Thanks: +new tam: Mr Coghlan: lough Owel picnic: young student: Blazes Boylan’s +seaside girls. + +The tea was drawn. He filled his own moustachecup, sham crown Derby, +smiling. Silly Milly’s birthday gift. Only five she was then. No, wait: +four. I gave her the amberoid necklace she broke. Putting pieces of +folded brown paper in the letterbox for her. He smiled, pouring. + + O, Milly Bloom, you are my darling. + You are my lookingglass from night to morning. + I’d rather have you without a farthing + Than Katey Keogh with her ass and garden. + +Poor old professor Goodwin. Dreadful old case. Still he was a courteous +old chap. Oldfashioned way he used to bow Molly off the platform. And +the little mirror in his silk hat. The night Milly brought it into the +parlour. O, look what I found in professor Goodwin’s hat! All we +laughed. Sex breaking out even then. Pert little piece she was. + +He prodded a fork into the kidney and slapped it over: then fitted the +teapot on the tray. Its hump bumped as he took it up. Everything on it? +Bread and butter, four, sugar, spoon, her cream. Yes. He carried it +upstairs, his thumb hooked in the teapot handle. + +Nudging the door open with his knee he carried the tray in and set it +on the chair by the bedhead. + +—What a time you were! she said. + +She set the brasses jingling as she raised herself briskly, an elbow on +the pillow. He looked calmly down on her bulk and between her large +soft bubs, sloping within her nightdress like a shegoat’s udder. The +warmth of her couched body rose on the air, mingling with the fragrance +of the tea she poured. + +A strip of torn envelope peeped from under the dimpled pillow. In the +act of going he stayed to straighten the bedspread. + +—Who was the letter from? he asked. + +Bold hand. Marion. + +—O, Boylan, she said. He’s bringing the programme. + +—What are you singing? + +—_Là ci darem_ with J. C. Doyle, she said, and _Love’s Old Sweet Song_. + +Her full lips, drinking, smiled. Rather stale smell that incense leaves +next day. Like foul flowerwater. + +—Would you like the window open a little? + +She doubled a slice of bread into her mouth, asking: + +—What time is the funeral? + +—Eleven, I think, he answered. I didn’t see the paper. + +Following the pointing of her finger he took up a leg of her soiled +drawers from the bed. No? Then, a twisted grey garter looped round a +stocking: rumpled, shiny sole. + +—No: that book. + +Other stocking. Her petticoat. + +—It must have fell down, she said. + +He felt here and there. _Voglio e non vorrei_. Wonder if she pronounces +that right: _voglio_. Not in the bed. Must have slid down. He stooped +and lifted the valance. The book, fallen, sprawled against the bulge of +the orangekeyed chamberpot. + +—Show here, she said. I put a mark in it. There’s a word I wanted to +ask you. + +She swallowed a draught of tea from her cup held by nothandle and, +having wiped her fingertips smartly on the blanket, began to search the +text with the hairpin till she reached the word. + +—Met him what? he asked. + +—Here, she said. What does that mean? + +He leaned downward and read near her polished thumbnail. + +—Metempsychosis? + +—Yes. Who’s he when he’s at home? + +—Metempsychosis, he said, frowning. It’s Greek: from the Greek. That +means the transmigration of souls. + +—O, rocks! she said. Tell us in plain words. + +He smiled, glancing askance at her mocking eyes. The same young eyes. +The first night after the charades. Dolphin’s Barn. He turned over the +smudged pages. _Ruby: the Pride of the Ring_. Hello. Illustration. +Fierce Italian with carriagewhip. Must be Ruby pride of the on the +floor naked. Sheet kindly lent. _The monster Maffei desisted and flung +his victim from him with an oath_. Cruelty behind it all. Doped +animals. Trapeze at Hengler’s. Had to look the other way. Mob gaping. +Break your neck and we’ll break our sides. Families of them. Bone them +young so they metamspychosis. That we live after death. Our souls. That +a man’s soul after he dies. Dignam’s soul... + +—Did you finish it? he asked. + +—Yes, she said. There’s nothing smutty in it. Is she in love with the +first fellow all the time? + +—Never read it. Do you want another? + +—Yes. Get another of Paul de Kock’s. Nice name he has. + +She poured more tea into her cup, watching it flow sideways. + +Must get that Capel street library book renewed or they’ll write to +Kearney, my guarantor. Reincarnation: that’s the word. + +—Some people believe, he said, that we go on living in another body +after death, that we lived before. They call it reincarnation. That we +all lived before on the earth thousands of years ago or some other +planet. They say we have forgotten it. Some say they remember their +past lives. + +The sluggish cream wound curdling spirals through her tea. Better +remind her of the word: metempsychosis. An example would be better. An +example? + +The _Bath of the Nymph_ over the bed. Given away with the Easter number +of _Photo Bits_: Splendid masterpiece in art colours. Tea before you +put milk in. Not unlike her with her hair down: slimmer. Three and six +I gave for the frame. She said it would look nice over the bed. Naked +nymphs: Greece: and for instance all the people that lived then. + +He turned the pages back. + +—Metempsychosis, he said, is what the ancient Greeks called it. They +used to believe you could be changed into an animal or a tree, for +instance. What they called nymphs, for example. + +Her spoon ceased to stir up the sugar. She gazed straight before her, +inhaling through her arched nostrils. + +—There’s a smell of burn, she said. Did you leave anything on the fire? + +—The kidney! he cried suddenly. + +He fitted the book roughly into his inner pocket and, stubbing his toes +against the broken commode, hurried out towards the smell, stepping +hastily down the stairs with a flurried stork’s legs. Pungent smoke +shot up in an angry jet from a side of the pan. By prodding a prong of +the fork under the kidney he detached it and turned it turtle on its +back. Only a little burnt. He tossed it off the pan on to a plate and +let the scanty brown gravy trickle over it. + +Cup of tea now. He sat down, cut and buttered a slice of the loaf. He +shore away the burnt flesh and flung it to the cat. Then he put a +forkful into his mouth, chewing with discernment the toothsome pliant +meat. Done to a turn. A mouthful of tea. Then he cut away dies of +bread, sopped one in the gravy and put it in his mouth. What was that +about some young student and a picnic? He creased out the letter at his +side, reading it slowly as he chewed, sopping another die of bread in +the gravy and raising it to his mouth. + + +Dearest Papli + +Thanks ever so much for the lovely birthday present. It suits me +splendid. Everyone says I am quite the belle in my new tam. I got +mummy’s lovely box of creams and am writing. They are lovely. I am +getting on swimming in the photo business now. Mr Coghlan took one of +me and Mrs. Will send when developed. We did great biz yesterday. Fair +day and all the beef to the heels were in. We are going to lough Owel +on Monday with a few friends to make a scrap picnic. Give my love to +mummy and to yourself a big kiss and thanks. I hear them at the piano +downstairs. There is to be a concert in the Greville Arms on Saturday. +There is a young student comes here some evenings named Bannon his +cousins or something are big swells and he sings Boylan’s (I was on the +pop of writing Blazes Boylan’s) song about those seaside girls. Tell +him silly Milly sends my best respects. I must now close with fondest +love + + Your fond daughter + Milly + +P. S. Excuse bad writing am in hurry. Byby. + + M. + + +Fifteen yesterday. Curious, fifteenth of the month too. Her first +birthday away from home. Separation. Remember the summer morning she +was born, running to knock up Mrs Thornton in Denzille street. Jolly +old woman. Lot of babies she must have helped into the world. She knew +from the first poor little Rudy wouldn’t live. Well, God is good, sir. +She knew at once. He would be eleven now if he had lived. + +His vacant face stared pityingly at the postscript. Excuse bad writing. +Hurry. Piano downstairs. Coming out of her shell. Row with her in the +XL Café about the bracelet. Wouldn’t eat her cakes or speak or look. +Saucebox. He sopped other dies of bread in the gravy and ate piece +after piece of kidney. Twelve and six a week. Not much. Still, she +might do worse. Music hall stage. Young student. He drank a draught of +cooler tea to wash down his meal. Then he read the letter again: twice. + +O, well: she knows how to mind herself. But if not? No, nothing has +happened. Of course it might. Wait in any case till it does. A wild +piece of goods. Her slim legs running up the staircase. Destiny. +Ripening now. Vain: very. + +He smiled with troubled affection at the kitchen window. Day I caught +her in the street pinching her cheeks to make them red. Anemic a +little. Was given milk too long. On the _Erin’s King_ that day round +the Kish. Damned old tub pitching about. Not a bit funky. Her pale blue +scarf loose in the wind with her hair. + + All dimpled cheeks and curls, + Your head it simply swirls. + +Seaside girls. Torn envelope. Hands stuck in his trousers’ pockets, +jarvey off for the day, singing. Friend of the family. Swurls, he says. +Pier with lamps, summer evening, band. + + Those girls, those girls, + Those lovely seaside girls. + +Milly too. Young kisses: the first. Far away now past. Mrs Marion. +Reading, lying back now, counting the strands of her hair, smiling, +braiding. + +A soft qualm, regret, flowed down his backbone, increasing. Will +happen, yes. Prevent. Useless: can’t move. Girl’s sweet light lips. +Will happen too. He felt the flowing qualm spread over him. Useless to +move now. Lips kissed, kissing, kissed. Full gluey woman’s lips. + +Better where she is down there: away. Occupy her. Wanted a dog to pass +the time. Might take a trip down there. August bank holiday, only two +and six return. Six weeks off, however. Might work a press pass. Or +through M’Coy. + +The cat, having cleaned all her fur, returned to the meatstained paper, +nosed at it and stalked to the door. She looked back at him, mewing. +Wants to go out. Wait before a door sometime it will open. Let her +wait. Has the fidgets. Electric. Thunder in the air. Was washing at her +ear with her back to the fire too. + +He felt heavy, full: then a gentle loosening of his bowels. He stood +up, undoing the waistband of his trousers. The cat mewed to him. + +—Miaow! he said in answer. Wait till I’m ready. + +Heaviness: hot day coming. Too much trouble to fag up the stairs to the +landing. + +A paper. He liked to read at stool. Hope no ape comes knocking just as +I’m. + +In the tabledrawer he found an old number of _Titbits_. He folded it +under his armpit, went to the door and opened it. The cat went up in +soft bounds. Ah, wanted to go upstairs, curl up in a ball on the bed. + +Listening, he heard her voice: + +—Come, come, pussy. Come. + +He went out through the backdoor into the garden: stood to listen +towards the next garden. No sound. Perhaps hanging clothes out to dry. +The maid was in the garden. Fine morning. + +He bent down to regard a lean file of spearmint growing by the wall. +Make a summerhouse here. Scarlet runners. Virginia creepers. Want to +manure the whole place over, scabby soil. A coat of liver of sulphur. +All soil like that without dung. Household slops. Loam, what is this +that is? The hens in the next garden: their droppings are very good top +dressing. Best of all though are the cattle, especially when they are +fed on those oilcakes. Mulch of dung. Best thing to clean ladies’ kid +gloves. Dirty cleans. Ashes too. Reclaim the whole place. Grow peas in +that corner there. Lettuce. Always have fresh greens then. Still +gardens have their drawbacks. That bee or bluebottle here Whitmonday. + +He walked on. Where is my hat, by the way? Must have put it back on the +peg. Or hanging up on the floor. Funny I don’t remember that. Hallstand +too full. Four umbrellas, her raincloak. Picking up the letters. +Drago’s shopbell ringing. Queer I was just thinking that moment. Brown +brillantined hair over his collar. Just had a wash and brushup. Wonder +have I time for a bath this morning. Tara street. Chap in the paybox +there got away James Stephens, they say. O’Brien. + +Deep voice that fellow Dlugacz has. Agendath what is it? Now, my miss. +Enthusiast. + +He kicked open the crazy door of the jakes. Better be careful not to +get these trousers dirty for the funeral. He went in, bowing his head +under the low lintel. Leaving the door ajar, amid the stench of mouldy +limewash and stale cobwebs he undid his braces. Before sitting down he +peered through a chink up at the nextdoor windows. The king was in his +countinghouse. Nobody. + +Asquat on the cuckstool he folded out his paper, turning its pages over +on his bared knees. Something new and easy. No great hurry. Keep it a +bit. Our prize titbit: _Matcham’s Masterstroke_. Written by Mr Philip +Beaufoy, Playgoers’ Club, London. Payment at the rate of one guinea a +column has been made to the writer. Three and a half. Three pounds +three. Three pounds, thirteen and six. + +Quietly he read, restraining himself, the first column and, yielding +but resisting, began the second. Midway, his last resistance yielding, +he allowed his bowels to ease themselves quietly as he read, reading +still patiently that slight constipation of yesterday quite gone. Hope +it’s not too big bring on piles again. No, just right. So. Ah! Costive. +One tabloid of cascara sagrada. Life might be so. It did not move or +touch him but it was something quick and neat. Print anything now. +Silly season. He read on, seated calm above his own rising smell. Neat +certainly. _Matcham often thinks of the masterstroke by which he won +the laughing witch who now_. Begins and ends morally. _Hand in hand_. +Smart. He glanced back through what he had read and, while feeling his +water flow quietly, he envied kindly Mr Beaufoy who had written it and +received payment of three pounds, thirteen and six. + +Might manage a sketch. By Mr and Mrs L. M. Bloom. Invent a story for +some proverb. Which? Time I used to try jotting down on my cuff what +she said dressing. Dislike dressing together. Nicked myself shaving. +Biting her nether lip, hooking the placket of her skirt. Timing her. +9.15. Did Roberts pay you yet? 9.20. What had Gretta Conroy on? 9.23. +What possessed me to buy this comb? 9.24. I’m swelled after that +cabbage. A speck of dust on the patent leather of her boot. + +Rubbing smartly in turn each welt against her stockinged calf. Morning +after the bazaar dance when May’s band played Ponchielli’s dance of the +hours. Explain that: morning hours, noon, then evening coming on, then +night hours. Washing her teeth. That was the first night. Her head +dancing. Her fansticks clicking. Is that Boylan well off? He has money. +Why? I noticed he had a good rich smell off his breath dancing. No use +humming then. Allude to it. Strange kind of music that last night. The +mirror was in shadow. She rubbed her handglass briskly on her woollen +vest against her full wagging bub. Peering into it. Lines in her eyes. +It wouldn’t pan out somehow. + +Evening hours, girls in grey gauze. Night hours then: black with +daggers and eyemasks. Poetical idea: pink, then golden, then grey, then +black. Still, true to life also. Day: then the night. + +He tore away half the prize story sharply and wiped himself with it. +Then he girded up his trousers, braced and buttoned himself. He pulled +back the jerky shaky door of the jakes and came forth from the gloom +into the air. + +In the bright light, lightened and cooled in limb, he eyed carefully +his black trousers: the ends, the knees, the houghs of the knees. What +time is the funeral? Better find out in the paper. + +A creak and a dark whirr in the air high up. The bells of George’s +church. They tolled the hour: loud dark iron. + + Heigho! Heigho! + Heigho! Heigho! + Heigho! Heigho! + +Quarter to. There again: the overtone following through the air. A +third. + +Poor Dignam! + + + + +[ 5 ] + + +By lorries along sir John Rogerson’s quay Mr Bloom walked soberly, past +Windmill lane, Leask’s the linseed crusher, the postal telegraph +office. Could have given that address too. And past the sailors’ home. +He turned from the morning noises of the quayside and walked through +Lime street. By Brady’s cottages a boy for the skins lolled, his bucket +of offal linked, smoking a chewed fagbutt. A smaller girl with scars of +eczema on her forehead eyed him, listlessly holding her battered +caskhoop. Tell him if he smokes he won’t grow. O let him! His life +isn’t such a bed of roses. Waiting outside pubs to bring da home. Come +home to ma, da. Slack hour: won’t be many there. He crossed Townsend +street, passed the frowning face of Bethel. El, yes: house of: Aleph, +Beth. And past Nichols’ the undertaker. At eleven it is. Time enough. +Daresay Corny Kelleher bagged the job for O’Neill’s. Singing with his +eyes shut. Corny. Met her once in the park. In the dark. What a lark. +Police tout. Her name and address she then told with my tooraloom +tooraloom tay. O, surely he bagged it. Bury him cheap in a +whatyoumaycall. With my tooraloom, tooraloom, tooraloom, tooraloom. + +In Westland row he halted before the window of the Belfast and Oriental +Tea Company and read the legends of leadpapered packets: choice blend, +finest quality, family tea. Rather warm. Tea. Must get some from Tom +Kernan. Couldn’t ask him at a funeral, though. While his eyes still +read blandly he took off his hat quietly inhaling his hairoil and sent +his right hand with slow grace over his brow and hair. Very warm +morning. Under their dropped lids his eyes found the tiny bow of the +leather headband inside his high grade ha. Just there. His right hand +came down into the bowl of his hat. His fingers found quickly a card +behind the headband and transferred it to his waistcoat pocket. + +So warm. His right hand once more more slowly went over his brow and +hair. Then he put on his hat again, relieved: and read again: choice +blend, made of the finest Ceylon brands. The far east. Lovely spot it +must be: the garden of the world, big lazy leaves to float about on, +cactuses, flowery meads, snaky lianas they call them. Wonder is it like +that. Those Cinghalese lobbing about in the sun in _dolce far niente_, +not doing a hand’s turn all day. Sleep six months out of twelve. Too +hot to quarrel. Influence of the climate. Lethargy. Flowers of +idleness. The air feeds most. Azotes. Hothouse in Botanic gardens. +Sensitive plants. Waterlilies. Petals too tired to. Sleeping sickness +in the air. Walk on roseleaves. Imagine trying to eat tripe and +cowheel. Where was the chap I saw in that picture somewhere? Ah yes, in +the dead sea floating on his back, reading a book with a parasol open. +Couldn’t sink if you tried: so thick with salt. Because the weight of +the water, no, the weight of the body in the water is equal to the +weight of the what? Or is it the volume is equal to the weight? It’s a +law something like that. Vance in High school cracking his +fingerjoints, teaching. The college curriculum. Cracking curriculum. +What is weight really when you say the weight? Thirtytwo feet per +second per second. Law of falling bodies: per second per second. They +all fall to the ground. The earth. It’s the force of gravity of the +earth is the weight. + +He turned away and sauntered across the road. How did she walk with her +sausages? Like that something. As he walked he took the folded +_Freeman_ from his sidepocket, unfolded it, rolled it lengthwise in a +baton and tapped it at each sauntering step against his trouserleg. +Careless air: just drop in to see. Per second per second. Per second +for every second it means. From the curbstone he darted a keen glance +through the door of the postoffice. Too late box. Post here. No-one. +In. + +He handed the card through the brass grill. + +—Are there any letters for me? he asked. + +While the postmistress searched a pigeonhole he gazed at the recruiting +poster with soldiers of all arms on parade: and held the tip of his +baton against his nostrils, smelling freshprinted rag paper. No answer +probably. Went too far last time. + +The postmistress handed him back through the grill his card with a +letter. He thanked her and glanced rapidly at the typed envelope. + +Henry Flower Esq, +c/o P. O. Westland Row, + City. + + +Answered anyhow. He slipped card and letter into his sidepocket, +reviewing again the soldiers on parade. Where’s old Tweedy’s regiment? +Castoff soldier. There: bearskin cap and hackle plume. No, he’s a +grenadier. Pointed cuffs. There he is: royal Dublin fusiliers. +Redcoats. Too showy. That must be why the women go after them. Uniform. +Easier to enlist and drill. Maud Gonne’s letter about taking them off +O’Connell street at night: disgrace to our Irish capital. Griffith’s +paper is on the same tack now: an army rotten with venereal disease: +overseas or halfseasover empire. Half baked they look: hypnotised like. +Eyes front. Mark time. Table: able. Bed: ed. The King’s own. Never see +him dressed up as a fireman or a bobby. A mason, yes. + +He strolled out of the postoffice and turned to the right. Talk: as if +that would mend matters. His hand went into his pocket and a forefinger +felt its way under the flap of the envelope, ripping it open in jerks. +Women will pay a lot of heed, I don’t think. His fingers drew forth the +letter the letter and crumpled the envelope in his pocket. Something +pinned on: photo perhaps. Hair? No. + +M’Coy. Get rid of him quickly. Take me out of my way. Hate company when +you. + +—Hello, Bloom. Where are you off to? + +—Hello, M’Coy. Nowhere in particular. + +—How’s the body? + +—Fine. How are you? + +—Just keeping alive, M’Coy said. + +His eyes on the black tie and clothes he asked with low respect: + +—Is there any... no trouble I hope? I see you’re... + +—O, no, Mr Bloom said. Poor Dignam, you know. The funeral is today. + +—To be sure, poor fellow. So it is. What time? + +A photo it isn’t. A badge maybe. + +—E...eleven, Mr Bloom answered. + +—I must try to get out there, M’Coy said. Eleven, is it? I only heard +it last night. Who was telling me? Holohan. You know Hoppy? + +—I know. + +Mr Bloom gazed across the road at the outsider drawn up before the door +of the Grosvenor. The porter hoisted the valise up on the well. She +stood still, waiting, while the man, husband, brother, like her, +searched his pockets for change. Stylish kind of coat with that roll +collar, warm for a day like this, looks like blanketcloth. Careless +stand of her with her hands in those patch pockets. Like that haughty +creature at the polo match. Women all for caste till you touch the +spot. Handsome is and handsome does. Reserved about to yield. The +honourable Mrs and Brutus is an honourable man. Possess her once take +the starch out of her. + +—I was with Bob Doran, he’s on one of his periodical bends, and what do +you call him Bantam Lyons. Just down there in Conway’s we were. + +Doran Lyons in Conway’s. She raised a gloved hand to her hair. In came +Hoppy. Having a wet. Drawing back his head and gazing far from beneath +his vailed eyelids he saw the bright fawn skin shine in the glare, the +braided drums. Clearly I can see today. Moisture about gives long sight +perhaps. Talking of one thing or another. Lady’s hand. Which side will +she get up? + +—And he said: _Sad thing about our poor friend Paddy! What Paddy?_ I +said. _Poor little Paddy Dignam_, he said. + +Off to the country: Broadstone probably. High brown boots with laces +dangling. Wellturned foot. What is he foostering over that change for? +Sees me looking. Eye out for other fellow always. Good fallback. Two +strings to her bow. + +—_Why?_ I said. _What’s wrong with him?_ I said. + +Proud: rich: silk stockings. + +—Yes, Mr Bloom said. + +He moved a little to the side of M’Coy’s talking head. Getting up in a +minute. + +—_What’s wrong with him_? He said. _He’s dead_, he said. And, faith, he +filled up. _Is it Paddy Dignam_? I said. I couldn’t believe it when I +heard it. I was with him no later than Friday last or Thursday was it +in the Arch. _Yes,_ he said. _He’s gone. He died on Monday, poor +fellow_. + +Watch! Watch! Silk flash rich stockings white. Watch! + +A heavy tramcar honking its gong slewed between. + +Lost it. Curse your noisy pugnose. Feels locked out of it. Paradise and +the peri. Always happening like that. The very moment. Girl in Eustace +street hallway Monday was it settling her garter. Her friend covering +the display of. _Esprit de corps_. Well, what are you gaping at? + +—Yes, yes, Mr Bloom said after a dull sigh. Another gone. + +—One of the best, M’Coy said. + +The tram passed. They drove off towards the Loop Line bridge, her rich +gloved hand on the steel grip. Flicker, flicker: the laceflare of her +hat in the sun: flicker, flick. + +—Wife well, I suppose? M’Coy’s changed voice said. + +—O, yes, Mr Bloom said. Tiptop, thanks. + +He unrolled the newspaper baton idly and read idly: + + What is home without + Plumtree’s Potted Meat? + Incomplete. + With it an abode of bliss. + +—My missus has just got an engagement. At least it’s not settled yet. + +Valise tack again. By the way no harm. I’m off that, thanks. + +Mr Bloom turned his largelidded eyes with unhasty friendliness. + +—My wife too, he said. She’s going to sing at a swagger affair in the +Ulster Hall, Belfast, on the twentyfifth. + +—That so? M’Coy said. Glad to hear that, old man. Who’s getting it up? + +Mrs Marion Bloom. Not up yet. Queen was in her bedroom eating bread +and. No book. Blackened court cards laid along her thigh by sevens. +Dark lady and fair man. Letter. Cat furry black ball. Torn strip of +envelope. + + Love’s + Old + Sweet + Song + Comes lo-ove’s old... + +—It’s a kind of a tour, don’t you see, Mr Bloom said thoughtfully. +_Sweeeet song_. There’s a committee formed. Part shares and part +profits. + +M’Coy nodded, picking at his moustache stubble. + +—O, well, he said. That’s good news. + +He moved to go. + +—Well, glad to see you looking fit, he said. Meet you knocking around. + +—Yes, Mr Bloom said. + +—Tell you what, M’Coy said. You might put down my name at the funeral, +will you? I’d like to go but I mightn’t be able, you see. There’s a +drowning case at Sandycove may turn up and then the coroner and myself +would have to go down if the body is found. You just shove in my name +if I’m not there, will you? + +—I’ll do that, Mr Bloom said, moving to get off. That’ll be all right. + +—Right, M’Coy said brightly. Thanks, old man. I’d go if I possibly +could. Well, tolloll. Just C. P. M’Coy will do. + +—That will be done, Mr Bloom answered firmly. + +Didn’t catch me napping that wheeze. The quick touch. Soft mark. I’d +like my job. Valise I have a particular fancy for. Leather. Capped +corners, rivetted edges, double action lever lock. Bob Cowley lent him +his for the Wicklow regatta concert last year and never heard tidings +of it from that good day to this. + +Mr Bloom, strolling towards Brunswick street, smiled. My missus has +just got an. Reedy freckled soprano. Cheeseparing nose. Nice enough in +its way: for a little ballad. No guts in it. You and me, don’t you +know: in the same boat. Softsoaping. Give you the needle that would. +Can’t he hear the difference? Think he’s that way inclined a bit. +Against my grain somehow. Thought that Belfast would fetch him. I hope +that smallpox up there doesn’t get worse. Suppose she wouldn’t let +herself be vaccinated again. Your wife and my wife. + +Wonder is he pimping after me? + +Mr Bloom stood at the corner, his eyes wandering over the multicoloured +hoardings. Cantrell and Cochrane’s Ginger Ale (Aromatic). Clery’s +Summer Sale. No, he’s going on straight. Hello. _Leah_ tonight. Mrs +Bandmann Palmer. Like to see her again in that. _Hamlet_ she played +last night. Male impersonator. Perhaps he was a woman. Why Ophelia +committed suicide. Poor papa! How he used to talk of Kate Bateman in +that. Outside the Adelphi in London waited all the afternoon to get in. +Year before I was born that was: sixtyfive. And Ristori in Vienna. What +is this the right name is? By Mosenthal it is. Rachel, is it? No. The +scene he was always talking about where the old blind Abraham +recognises the voice and puts his fingers on his face. + +Nathan’s voice! His son’s voice! I hear the voice of Nathan who left +his father to die of grief and misery in my arms, who left the house of +his father and left the God of his father. + +Every word is so deep, Leopold. + +Poor papa! Poor man! I’m glad I didn’t go into the room to look at his +face. That day! O, dear! O, dear! Ffoo! Well, perhaps it was best for +him. + +Mr Bloom went round the corner and passed the drooping nags of the +hazard. No use thinking of it any more. Nosebag time. Wish I hadn’t met +that M’Coy fellow. + +He came nearer and heard a crunching of gilded oats, the gently +champing teeth. Their full buck eyes regarded him as he went by, amid +the sweet oaten reek of horsepiss. Their Eldorado. Poor jugginses! Damn +all they know or care about anything with their long noses stuck in +nosebags. Too full for words. Still they get their feed all right and +their doss. Gelded too: a stump of black guttapercha wagging limp +between their haunches. Might be happy all the same that way. Good poor +brutes they look. Still their neigh can be very irritating. + +He drew the letter from his pocket and folded it into the newspaper he +carried. Might just walk into her here. The lane is safer. + +He passed the cabman’s shelter. Curious the life of drifting cabbies. +All weathers, all places, time or setdown, no will of their own. +_Voglio e non_. Like to give them an odd cigarette. Sociable. Shout a +few flying syllables as they pass. He hummed: + + Là ci darem la mano + La la lala la la. + + +He turned into Cumberland street and, going on some paces, halted in +the lee of the station wall. No-one. Meade’s timberyard. Piled balks. +Ruins and tenements. With careful tread he passed over a hopscotch +court with its forgotten pickeystone. Not a sinner. Near the timberyard +a squatted child at marbles, alone, shooting the taw with a cunnythumb. +A wise tabby, a blinking sphinx, watched from her warm sill. Pity to +disturb them. Mohammed cut a piece out of his mantle not to wake her. +Open it. And once I played marbles when I went to that old dame’s +school. She liked mignonette. Mrs Ellis’s. And Mr? He opened the letter +within the newspaper. + +A flower. I think it’s a. A yellow flower with flattened petals. Not +annoyed then? What does she say? + + +Dear Henry + +I got your last letter to me and thank you very much for it. I am sorry +you did not like my last letter. Why did you enclose the stamps? I am +awfully angry with you. I do wish I could punish you for that. I called +you naughty boy because I do not like that other world. Please tell me +what is the real meaning of that word? Are you not happy in your home +you poor little naughty boy? I do wish I could do something for you. +Please tell me what you think of poor me. I often think of the +beautiful name you have. Dear Henry, when will we meet? I think of you +so often you have no idea. I have never felt myself so much drawn to a +man as you. I feel so bad about. Please write me a long letter and tell +me more. Remember if you do not I will punish you. So now you know what +I will do to you, you naughty boy, if you do not wrote. O how I long to +meet you. Henry dear, do not deny my request before my patience are +exhausted. Then I will tell you all. Goodbye now, naughty darling, I +have such a bad headache. today. and write _by return_ to your longing + +Martha + + +P. S. Do tell me what kind of perfume does your wife use. I want to +know. + + +He tore the flower gravely from its pinhold smelt its almost no smell +and placed it in his heart pocket. Language of flowers. They like it +because no-one can hear. Or a poison bouquet to strike him down. Then +walking slowly forward he read the letter again, murmuring here and +there a word. Angry tulips with you darling manflower punish your +cactus if you don’t please poor forgetmenot how I long violets to dear +roses when we soon anemone meet all naughty nightstalk wife Martha’s +perfume. Having read it all he took it from the newspaper and put it +back in his sidepocket. + +Weak joy opened his lips. Changed since the first letter. Wonder did +she wrote it herself. Doing the indignant: a girl of good family like +me, respectable character. Could meet one Sunday after the rosary. +Thank you: not having any. Usual love scrimmage. Then running round +corners. Bad as a row with Molly. Cigar has a cooling effect. Narcotic. +Go further next time. Naughty boy: punish: afraid of words, of course. +Brutal, why not? Try it anyhow. A bit at a time. + +Fingering still the letter in his pocket he drew the pin out of it. +Common pin, eh? He threw it on the road. Out of her clothes somewhere: +pinned together. Queer the number of pins they always have. No roses +without thorns. + +Flat Dublin voices bawled in his head. Those two sluts that night in +the Coombe, linked together in the rain. + + O, Mairy lost the pin of her drawers. + She didn’t know what to do + To keep it up, + To keep it up. + +It? Them. Such a bad headache. Has her roses probably. Or sitting all +day typing. Eyefocus bad for stomach nerves. What perfume does your +wife use. Now could you make out a thing like that? + + To keep it up. + +Martha, Mary. I saw that picture somewhere I forget now old master or +faked for money. He is sitting in their house, talking. Mysterious. +Also the two sluts in the Coombe would listen. + + To keep it up. + +Nice kind of evening feeling. No more wandering about. Just loll there: +quiet dusk: let everything rip. Forget. Tell about places you have +been, strange customs. The other one, jar on her head, was getting the +supper: fruit, olives, lovely cool water out of a well, stonecold like +the hole in the wall at Ashtown. Must carry a paper goblet next time I +go to the trottingmatches. She listens with big dark soft eyes. Tell +her: more and more: all. Then a sigh: silence. Long long long rest. + +Going under the railway arch he took out the envelope, tore it swiftly +in shreds and scattered them towards the road. The shreds fluttered +away, sank in the dank air: a white flutter, then all sank. + +Henry Flower. You could tear up a cheque for a hundred pounds in the +same way. Simple bit of paper. Lord Iveagh once cashed a sevenfigure +cheque for a million in the bank of Ireland. Shows you the money to be +made out of porter. Still the other brother lord Ardilaun has to change +his shirt four times a day, they say. Skin breeds lice or vermin. A +million pounds, wait a moment. Twopence a pint, fourpence a quart, +eightpence a gallon of porter, no, one and fourpence a gallon of +porter. One and four into twenty: fifteen about. Yes, exactly. Fifteen +millions of barrels of porter. + +What am I saying barrels? Gallons. About a million barrels all the +same. + +An incoming train clanked heavily above his head, coach after coach. +Barrels bumped in his head: dull porter slopped and churned inside. The +bungholes sprang open and a huge dull flood leaked out, flowing +together, winding through mudflats all over the level land, a lazy +pooling swirl of liquor bearing along wideleaved flowers of its froth. + +He had reached the open backdoor of All Hallows. Stepping into the +porch he doffed his hat, took the card from his pocket and tucked it +again behind the leather headband. Damn it. I might have tried to work +M’Coy for a pass to Mullingar. + +Same notice on the door. Sermon by the very reverend John Conmee S. J. +on saint Peter Claver S. J. and the African Mission. Prayers for the +conversion of Gladstone they had too when he was almost unconscious. +The protestants are the same. Convert Dr William J. Walsh D.D. to the +true religion. Save China’s millions. Wonder how they explain it to the +heathen Chinee. Prefer an ounce of opium. Celestials. Rank heresy for +them. Buddha their god lying on his side in the museum. Taking it easy +with hand under his cheek. Josssticks burning. Not like Ecce Homo. +Crown of thorns and cross. Clever idea Saint Patrick the shamrock. +Chopsticks? Conmee: Martin Cunningham knows him: distinguishedlooking. +Sorry I didn’t work him about getting Molly into the choir instead of +that Father Farley who looked a fool but wasn’t. They’re taught that. +He’s not going out in bluey specs with the sweat rolling off him to +baptise blacks, is he? The glasses would take their fancy, flashing. +Like to see them sitting round in a ring with blub lips, entranced, +listening. Still life. Lap it up like milk, I suppose. + +The cold smell of sacred stone called him. He trod the worn steps, +pushed the swingdoor and entered softly by the rere. + +Something going on: some sodality. Pity so empty. Nice discreet place +to be next some girl. Who is my neighbour? Jammed by the hour to slow +music. That woman at midnight mass. Seventh heaven. Women knelt in the +benches with crimson halters round their necks, heads bowed. A batch +knelt at the altarrails. The priest went along by them, murmuring, +holding the thing in his hands. He stopped at each, took out a +communion, shook a drop or two (are they in water?) off it and put it +neatly into her mouth. Her hat and head sank. Then the next one. Her +hat sank at once. Then the next one: a small old woman. The priest bent +down to put it into her mouth, murmuring all the time. Latin. The next +one. Shut your eyes and open your mouth. What? _Corpus:_ body. Corpse. +Good idea the Latin. Stupefies them first. Hospice for the dying. They +don’t seem to chew it: only swallow it down. Rum idea: eating bits of a +corpse. Why the cannibals cotton to it. + +He stood aside watching their blind masks pass down the aisle, one by +one, and seek their places. He approached a bench and seated himself in +its corner, nursing his hat and newspaper. These pots we have to wear. +We ought to have hats modelled on our heads. They were about him here +and there, with heads still bowed in their crimson halters, waiting for +it to melt in their stomachs. Something like those mazzoth: it’s that +sort of bread: unleavened shewbread. Look at them. Now I bet it makes +them feel happy. Lollipop. It does. Yes, bread of angels it’s called. +There’s a big idea behind it, kind of kingdom of God is within you +feel. First communicants. Hokypoky penny a lump. Then feel all like one +family party, same in the theatre, all in the same swim. They do. I’m +sure of that. Not so lonely. In our confraternity. Then come out a bit +spreeish. Let off steam. Thing is if you really believe in it. Lourdes +cure, waters of oblivion, and the Knock apparition, statues bleeding. +Old fellow asleep near that confessionbox. Hence those snores. Blind +faith. Safe in the arms of kingdom come. Lulls all pain. Wake this time +next year. + +He saw the priest stow the communion cup away, well in, and kneel an +instant before it, showing a large grey bootsole from under the lace +affair he had on. Suppose he lost the pin of his. He wouldn’t know what +to do to. Bald spot behind. Letters on his back: I.N.R.I? No: I.H.S. +Molly told me one time I asked her. I have sinned: or no: I have +suffered, it is. And the other one? Iron nails ran in. + +Meet one Sunday after the rosary. Do not deny my request. Turn up with +a veil and black bag. Dusk and the light behind her. She might be here +with a ribbon round her neck and do the other thing all the same on the +sly. Their character. That fellow that turned queen’s evidence on the +invincibles he used to receive the, Carey was his name, the communion +every morning. This very church. Peter Carey, yes. No, Peter Claver I +am thinking of. Denis Carey. And just imagine that. Wife and six +children at home. And plotting that murder all the time. Those +crawthumpers, now that’s a good name for them, there’s always something +shiftylooking about them. They’re not straight men of business either. +O, no, she’s not here: the flower: no, no. By the way, did I tear up +that envelope? Yes: under the bridge. + +The priest was rinsing out the chalice: then he tossed off the dregs +smartly. Wine. Makes it more aristocratic than for example if he drank +what they are used to Guinness’s porter or some temperance beverage +Wheatley’s Dublin hop bitters or Cantrell and Cochrane’s ginger ale +(aromatic). Doesn’t give them any of it: shew wine: only the other. +Cold comfort. Pious fraud but quite right: otherwise they’d have one +old booser worse than another coming along, cadging for a drink. Queer +the whole atmosphere of the. Quite right. Perfectly right that is. + +Mr Bloom looked back towards the choir. Not going to be any music. +Pity. Who has the organ here I wonder? Old Glynn he knew how to make +that instrument talk, the _vibrato_: fifty pounds a year they say he +had in Gardiner street. Molly was in fine voice that day, the _Stabat +Mater_ of Rossini. Father Bernard Vaughan’s sermon first. Christ or +Pilate? Christ, but don’t keep us all night over it. Music they wanted. +Footdrill stopped. Could hear a pin drop. I told her to pitch her voice +against that corner. I could feel the thrill in the air, the full, the +people looking up: + +_Quis est homo._ + +Some of that old sacred music splendid. Mercadante: seven last words. +Mozart’s twelfth mass: _Gloria_ in that. Those old popes keen on music, +on art and statues and pictures of all kinds. Palestrina for example +too. They had a gay old time while it lasted. Healthy too, chanting, +regular hours, then brew liqueurs. Benedictine. Green Chartreuse. +Still, having eunuchs in their choir that was coming it a bit thick. +What kind of voice is it? Must be curious to hear after their own +strong basses. Connoisseurs. Suppose they wouldn’t feel anything after. +Kind of a placid. No worry. Fall into flesh, don’t they? Gluttons, +tall, long legs. Who knows? Eunuch. One way out of it. + +He saw the priest bend down and kiss the altar and then face about and +bless all the people. All crossed themselves and stood up. Mr Bloom +glanced about him and then stood up, looking over the risen hats. Stand +up at the gospel of course. Then all settled down on their knees again +and he sat back quietly in his bench. The priest came down from the +altar, holding the thing out from him, and he and the massboy answered +each other in Latin. Then the priest knelt down and began to read off a +card: + +—O God, our refuge and our strength... + +Mr Bloom put his face forward to catch the words. English. Throw them +the bone. I remember slightly. How long since your last mass? Glorious +and immaculate virgin. Joseph, her spouse. Peter and Paul. More +interesting if you understood what it was all about. Wonderful +organisation certainly, goes like clockwork. Confession. Everyone wants +to. Then I will tell you all. Penance. Punish me, please. Great weapon +in their hands. More than doctor or solicitor. Woman dying to. And I +schschschschschsch. And did you chachachachacha? And why did you? Look +down at her ring to find an excuse. Whispering gallery walls have ears. +Husband learn to his surprise. God’s little joke. Then out she comes. +Repentance skindeep. Lovely shame. Pray at an altar. Hail Mary and Holy +Mary. Flowers, incense, candles melting. Hide her blushes. Salvation +army blatant imitation. Reformed prostitute will address the meeting. +How I found the Lord. Squareheaded chaps those must be in Rome: they +work the whole show. And don’t they rake in the money too? Bequests +also: to the P.P. for the time being in his absolute discretion. Masses +for the repose of my soul to be said publicly with open doors. +Monasteries and convents. The priest in that Fermanagh will case in the +witnessbox. No browbeating him. He had his answer pat for everything. +Liberty and exaltation of our holy mother the church. The doctors of +the church: they mapped out the whole theology of it. + +The priest prayed: + +—Blessed Michael, archangel, defend us in the hour of conflict. Be our +safeguard against the wickedness and snares of the devil (may God +restrain him, we humbly pray!): and do thou, O prince of the heavenly +host, by the power of God thrust Satan down to hell and with him those +other wicked spirits who wander through the world for the ruin of +souls. + +The priest and the massboy stood up and walked off. All over. The women +remained behind: thanksgiving. + +Better be shoving along. Brother Buzz. Come around with the plate +perhaps. Pay your Easter duty. + +He stood up. Hello. Were those two buttons of my waistcoat open all the +time? Women enjoy it. Never tell you. But we. Excuse, miss, there’s a +(whh!) just a (whh!) fluff. Or their skirt behind, placket unhooked. +Glimpses of the moon. Annoyed if you don’t. Why didn’t you tell me +before. Still like you better untidy. Good job it wasn’t farther south. +He passed, discreetly buttoning, down the aisle and out through the +main door into the light. He stood a moment unseeing by the cold black +marble bowl while before him and behind two worshippers dipped furtive +hands in the low tide of holy water. Trams: a car of Prescott’s +dyeworks: a widow in her weeds. Notice because I’m in mourning myself. +He covered himself. How goes the time? Quarter past. Time enough yet. +Better get that lotion made up. Where is this? Ah yes, the last time. +Sweny’s in Lincoln place. Chemists rarely move. Their green and gold +beaconjars too heavy to stir. Hamilton Long’s, founded in the year of +the flood. Huguenot churchyard near there. Visit some day. + +He walked southward along Westland row. But the recipe is in the other +trousers. O, and I forgot that latchkey too. Bore this funeral affair. +O well, poor fellow, it’s not his fault. When was it I got it made up +last? Wait. I changed a sovereign I remember. First of the month it +must have been or the second. O, he can look it up in the prescriptions +book. + +The chemist turned back page after page. Sandy shrivelled smell he +seems to have. Shrunken skull. And old. Quest for the philosopher’s +stone. The alchemists. Drugs age you after mental excitement. Lethargy +then. Why? Reaction. A lifetime in a night. Gradually changes your +character. Living all the day among herbs, ointments, disinfectants. +All his alabaster lilypots. Mortar and pestle. Aq. Dist. Fol. Laur. Te +Virid. Smell almost cure you like the dentist’s doorbell. Doctor Whack. +He ought to physic himself a bit. Electuary or emulsion. The first +fellow that picked an herb to cure himself had a bit of pluck. Simples. +Want to be careful. Enough stuff here to chloroform you. Test: turns +blue litmus paper red. Chloroform. Overdose of laudanum. Sleeping +draughts. Lovephiltres. Paragoric poppysyrup bad for cough. Clogs the +pores or the phlegm. Poisons the only cures. Remedy where you least +expect it. Clever of nature. + +—About a fortnight ago, sir? + +—Yes, Mr Bloom said. + +He waited by the counter, inhaling slowly the keen reek of drugs, the +dusty dry smell of sponges and loofahs. Lot of time taken up telling +your aches and pains. + +—Sweet almond oil and tincture of benzoin, Mr Bloom said, and then +orangeflower water... + +It certainly did make her skin so delicate white like wax. + +—And white wax also, he said. + +Brings out the darkness of her eyes. Looking at me, the sheet up to her +eyes, Spanish, smelling herself, when I was fixing the links in my +cuffs. Those homely recipes are often the best: strawberries for the +teeth: nettles and rainwater: oatmeal they say steeped in buttermilk. +Skinfood. One of the old queen’s sons, duke of Albany was it? had only +one skin. Leopold, yes. Three we have. Warts, bunions and pimples to +make it worse. But you want a perfume too. What perfume does your? +_Peau d’Espagne_. That orangeflower water is so fresh. Nice smell these +soaps have. Pure curd soap. Time to get a bath round the corner. +Hammam. Turkish. Massage. Dirt gets rolled up in your navel. Nicer if a +nice girl did it. Also I think I. Yes I. Do it in the bath. Curious +longing I. Water to water. Combine business with pleasure. Pity no time +for massage. Feel fresh then all the day. Funeral be rather glum. + +—Yes, sir, the chemist said. That was two and nine. Have you brought a +bottle? + +—No, Mr Bloom said. Make it up, please. I’ll call later in the day and +I’ll take one of these soaps. How much are they? + +—Fourpence, sir. + +Mr Bloom raised a cake to his nostrils. Sweet lemony wax. + +—I’ll take this one, he said. That makes three and a penny. + +—Yes, sir, the chemist said. You can pay all together, sir, when you +come back. + +—Good, Mr Bloom said. + +He strolled out of the shop, the newspaper baton under his armpit, the +coolwrappered soap in his left hand. + +At his armpit Bantam Lyons’ voice and hand said: + +—Hello, Bloom. What’s the best news? Is that today’s? Show us a minute. + +Shaved off his moustache again, by Jove! Long cold upper lip. To look +younger. He does look balmy. Younger than I am. + +Bantam Lyons’s yellow blacknailed fingers unrolled the baton. Wants a +wash too. Take off the rough dirt. Good morning, have you used Pears’ +soap? Dandruff on his shoulders. Scalp wants oiling. + +—I want to see about that French horse that’s running today, Bantam +Lyons said. Where the bugger is it? + +He rustled the pleated pages, jerking his chin on his high collar. +Barber’s itch. Tight collar he’ll lose his hair. Better leave him the +paper and get shut of him. + +—You can keep it, Mr Bloom said. + +—Ascot. Gold cup. Wait, Bantam Lyons muttered. Half a mo. Maximum the +second. + +—I was just going to throw it away, Mr Bloom said. + +Bantam Lyons raised his eyes suddenly and leered weakly. + +—What’s that? his sharp voice said. + +—I say you can keep it, Mr Bloom answered. I was going to throw it away +that moment. + +Bantam Lyons doubted an instant, leering: then thrust the outspread +sheets back on Mr Bloom’s arms. + +—I’ll risk it, he said. Here, thanks. + +He sped off towards Conway’s corner. God speed scut. + +Mr Bloom folded the sheets again to a neat square and lodged the soap +in it, smiling. Silly lips of that chap. Betting. Regular hotbed of it +lately. Messenger boys stealing to put on sixpence. Raffle for large +tender turkey. Your Christmas dinner for threepence. Jack Fleming +embezzling to gamble then smuggled off to America. Keeps a hotel now. +They never come back. Fleshpots of Egypt. + +He walked cheerfully towards the mosque of the baths. Remind you of a +mosque, redbaked bricks, the minarets. College sports today I see. He +eyed the horseshoe poster over the gate of college park: cyclist +doubled up like a cod in a pot. Damn bad ad. Now if they had made it +round like a wheel. Then the spokes: sports, sports, sports: and the +hub big: college. Something to catch the eye. + +There’s Hornblower standing at the porter’s lodge. Keep him on hands: +might take a turn in there on the nod. How do you do, Mr Hornblower? +How do you do, sir? + +Heavenly weather really. If life was always like that. Cricket weather. +Sit around under sunshades. Over after over. Out. They can’t play it +here. Duck for six wickets. Still Captain Culler broke a window in the +Kildare street club with a slog to square leg. Donnybrook fair more in +their line. And the skulls we were acracking when M’Carthy took the +floor. Heatwave. Won’t last. Always passing, the stream of life, which +in the stream of life we trace is dearer than them all. + +Enjoy a bath now: clean trough of water, cool enamel, the gentle tepid +stream. This is my body. + +He foresaw his pale body reclined in it at full, naked, in a womb of +warmth, oiled by scented melting soap, softly laved. He saw his trunk +and limbs riprippled over and sustained, buoyed lightly upward, +lemonyellow: his navel, bud of flesh: and saw the dark tangled curls of +his bush floating, floating hair of the stream around the limp father +of thousands, a languid floating flower. + + + + +[ 6 ] + + +Martin Cunningham, first, poked his silkhatted head into the creaking +carriage and, entering deftly, seated himself. Mr Power stepped in +after him, curving his height with care. + +—Come on, Simon. + +—After you, Mr Bloom said. + +Mr Dedalus covered himself quickly and got in, saying: + +—Yes, yes. + +—Are we all here now? Martin Cunningham asked. Come along, Bloom. + +Mr Bloom entered and sat in the vacant place. He pulled the door to +after him and slammed it twice till it shut tight. He passed an arm +through the armstrap and looked seriously from the open carriagewindow +at the lowered blinds of the avenue. One dragged aside: an old woman +peeping. Nose whiteflattened against the pane. Thanking her stars she +was passed over. Extraordinary the interest they take in a corpse. Glad +to see us go we give them such trouble coming. Job seems to suit them. +Huggermugger in corners. Slop about in slipperslappers for fear he’d +wake. Then getting it ready. Laying it out. Molly and Mrs Fleming +making the bed. Pull it more to your side. Our windingsheet. Never know +who will touch you dead. Wash and shampoo. I believe they clip the +nails and the hair. Keep a bit in an envelope. Grows all the same +after. Unclean job. + +All waited. Nothing was said. Stowing in the wreaths probably. I am +sitting on something hard. Ah, that soap: in my hip pocket. Better +shift it out of that. Wait for an opportunity. + +All waited. Then wheels were heard from in front, turning: then nearer: +then horses’ hoofs. A jolt. Their carriage began to move, creaking and +swaying. Other hoofs and creaking wheels started behind. The blinds of +the avenue passed and number nine with its craped knocker, door ajar. +At walking pace. + +They waited still, their knees jogging, till they had turned and were +passing along the tramtracks. Tritonville road. Quicker. The wheels +rattled rolling over the cobbled causeway and the crazy glasses shook +rattling in the doorframes. + +—What way is he taking us? Mr Power asked through both windows. + +—Irishtown, Martin Cunningham said. Ringsend. Brunswick street. + +Mr Dedalus nodded, looking out. + +—That’s a fine old custom, he said. I am glad to see it has not died +out. + +All watched awhile through their windows caps and hats lifted by +passers. Respect. The carriage swerved from the tramtrack to the +smoother road past Watery lane. Mr Bloom at gaze saw a lithe young man, +clad in mourning, a wide hat. + +—There’s a friend of yours gone by, Dedalus, he said. + +—Who is that? + +—Your son and heir. + +—Where is he? Mr Dedalus said, stretching over across. + +The carriage, passing the open drains and mounds of rippedup roadway +before the tenement houses, lurched round the corner and, swerving back +to the tramtrack, rolled on noisily with chattering wheels. Mr Dedalus +fell back, saying: + +—Was that Mulligan cad with him? His _fidus Achates_! + +—No, Mr Bloom said. He was alone. + +—Down with his aunt Sally, I suppose, Mr Dedalus said, the Goulding +faction, the drunken little costdrawer and Crissie, papa’s little lump +of dung, the wise child that knows her own father. + +Mr Bloom smiled joylessly on Ringsend road. Wallace Bros: the +bottleworks: Dodder bridge. + +Richie Goulding and the legal bag. Goulding, Collis and Ward he calls +the firm. His jokes are getting a bit damp. Great card he was. Waltzing +in Stamer street with Ignatius Gallaher on a Sunday morning, the +landlady’s two hats pinned on his head. Out on the rampage all night. +Beginning to tell on him now: that backache of his, I fear. Wife +ironing his back. Thinks he’ll cure it with pills. All breadcrumbs they +are. About six hundred per cent profit. + +—He’s in with a lowdown crowd, Mr Dedalus snarled. That Mulligan is a +contaminated bloody doubledyed ruffian by all accounts. His name stinks +all over Dublin. But with the help of God and His blessed mother I’ll +make it my business to write a letter one of those days to his mother +or his aunt or whatever she is that will open her eye as wide as a +gate. I’ll tickle his catastrophe, believe you me. + +He cried above the clatter of the wheels: + +—I won’t have her bastard of a nephew ruin my son. A counterjumper’s +son. Selling tapes in my cousin, Peter Paul M’Swiney’s. Not likely. + +He ceased. Mr Bloom glanced from his angry moustache to Mr Power’s mild +face and Martin Cunningham’s eyes and beard, gravely shaking. Noisy +selfwilled man. Full of his son. He is right. Something to hand on. If +little Rudy had lived. See him grow up. Hear his voice in the house. +Walking beside Molly in an Eton suit. My son. Me in his eyes. Strange +feeling it would be. From me. Just a chance. Must have been that +morning in Raymond terrace she was at the window watching the two dogs +at it by the wall of the cease to do evil. And the sergeant grinning +up. She had that cream gown on with the rip she never stitched. Give us +a touch, Poldy. God, I’m dying for it. How life begins. + +Got big then. Had to refuse the Greystones concert. My son inside her. +I could have helped him on in life. I could. Make him independent. +Learn German too. + +—Are we late? Mr Power asked. + +—Ten minutes, Martin Cunningham said, looking at his watch. + +Molly. Milly. Same thing watered down. Her tomboy oaths. O jumping +Jupiter! Ye gods and little fishes! Still, she’s a dear girl. Soon be a +woman. Mullingar. Dearest Papli. Young student. Yes, yes: a woman too. +Life, life. + +The carriage heeled over and back, their four trunks swaying. + +—Corny might have given us a more commodious yoke, Mr Power said. + +—He might, Mr Dedalus said, if he hadn’t that squint troubling him. Do +you follow me? + +He closed his left eye. Martin Cunningham began to brush away +crustcrumbs from under his thighs. + +—What is this, he said, in the name of God? Crumbs? + +—Someone seems to have been making a picnic party here lately, Mr Power +said. + +All raised their thighs and eyed with disfavour the mildewed buttonless +leather of the seats. Mr Dedalus, twisting his nose, frowned downward +and said: + +—Unless I’m greatly mistaken. What do you think, Martin? + +—It struck me too, Martin Cunningham said. + +Mr Bloom set his thigh down. Glad I took that bath. Feel my feet quite +clean. But I wish Mrs Fleming had darned these socks better. + +Mr Dedalus sighed resignedly. + +—After all, he said, it’s the most natural thing in the world. + +—Did Tom Kernan turn up? Martin Cunningham asked, twirling the peak of +his beard gently. + +—Yes, Mr Bloom answered. He’s behind with Ned Lambert and Hynes. + +—And Corny Kelleher himself? Mr Power asked. + +—At the cemetery, Martin Cunningham said. + +—I met M’Coy this morning, Mr Bloom said. He said he’d try to come. + +The carriage halted short. + +—What’s wrong? + +—We’re stopped. + +—Where are we? + +Mr Bloom put his head out of the window. + +—The grand canal, he said. + +Gasworks. Whooping cough they say it cures. Good job Milly never got +it. Poor children! Doubles them up black and blue in convulsions. Shame +really. Got off lightly with illnesses compared. Only measles. Flaxseed +tea. Scarlatina, influenza epidemics. Canvassing for death. Don’t miss +this chance. Dogs’ home over there. Poor old Athos! Be good to Athos, +Leopold, is my last wish. Thy will be done. We obey them in the grave. +A dying scrawl. He took it to heart, pined away. Quiet brute. Old men’s +dogs usually are. + +A raindrop spat on his hat. He drew back and saw an instant of shower +spray dots over the grey flags. Apart. Curious. Like through a +colander. I thought it would. My boots were creaking I remember now. + +—The weather is changing, he said quietly. + +—A pity it did not keep up fine, Martin Cunningham said. + +—Wanted for the country, Mr Power said. There’s the sun again coming +out. + +Mr Dedalus, peering through his glasses towards the veiled sun, hurled +a mute curse at the sky. + +—It’s as uncertain as a child’s bottom, he said. + +—We’re off again. + +The carriage turned again its stiff wheels and their trunks swayed +gently. Martin Cunningham twirled more quickly the peak of his beard. + +—Tom Kernan was immense last night, he said. And Paddy Leonard taking +him off to his face. + +—O, draw him out, Martin, Mr Power said eagerly. Wait till you hear +him, Simon, on Ben Dollard’s singing of _The Croppy Boy_. + +—Immense, Martin Cunningham said pompously. _His singing of that simple +ballad, Martin, is the most trenchant rendering I ever heard in the +whole course of my experience._ + +—Trenchant, Mr Power said laughing. He’s dead nuts on that. And the +retrospective arrangement. + +—Did you read Dan Dawson’s speech? Martin Cunningham asked. + +—I did not then, Mr Dedalus said. Where is it? + +—In the paper this morning. + +Mr Bloom took the paper from his inside pocket. That book I must change +for her. + +—No, no, Mr Dedalus said quickly. Later on please. + +Mr Bloom’s glance travelled down the edge of the paper, scanning the +deaths: Callan, Coleman, Dignam, Fawcett, Lowry, Naumann, Peake, what +Peake is that? is it the chap was in Crosbie and Alleyne’s? no, Sexton, +Urbright. Inked characters fast fading on the frayed breaking paper. +Thanks to the Little Flower. Sadly missed. To the inexpressible grief +of his. Aged 88 after a long and tedious illness. Month’s mind: +Quinlan. On whose soul Sweet Jesus have mercy. + + It is now a month since dear Henry fled + To his home up above in the sky + While his family weeps and mourns his loss + Hoping some day to meet him on high. + +I tore up the envelope? Yes. Where did I put her letter after I read it +in the bath? He patted his waistcoatpocket. There all right. Dear Henry +fled. Before my patience are exhausted. + +National school. Meade’s yard. The hazard. Only two there now. Nodding. +Full as a tick. Too much bone in their skulls. The other trotting round +with a fare. An hour ago I was passing there. The jarvies raised their +hats. + +A pointsman’s back straightened itself upright suddenly against a +tramway standard by Mr Bloom’s window. Couldn’t they invent something +automatic so that the wheel itself much handier? Well but that fellow +would lose his job then? Well but then another fellow would get a job +making the new invention? + +Antient concert rooms. Nothing on there. A man in a buff suit with a +crape armlet. Not much grief there. Quarter mourning. People in law +perhaps. + +They went past the bleak pulpit of saint Mark’s, under the railway +bridge, past the Queen’s theatre: in silence. Hoardings: Eugene +Stratton, Mrs Bandmann Palmer. Could I go to see _Leah_ tonight, I +wonder. I said I. Or the _Lily of Killarney_? Elster Grimes Opera +Company. Big powerful change. Wet bright bills for next week. _Fun on +the Bristol_. Martin Cunningham could work a pass for the Gaiety. Have +to stand a drink or two. As broad as it’s long. + +He’s coming in the afternoon. Her songs. + +Plasto’s. Sir Philip Crampton’s memorial fountain bust. Who was he? + +—How do you do? Martin Cunningham said, raising his palm to his brow in +salute. + +—He doesn’t see us, Mr Power said. Yes, he does. How do you do? + +—Who? Mr Dedalus asked. + +—Blazes Boylan, Mr Power said. There he is airing his quiff. + +Just that moment I was thinking. + +Mr Dedalus bent across to salute. From the door of the Red Bank the +white disc of a straw hat flashed reply: spruce figure: passed. + +Mr Bloom reviewed the nails of his left hand, then those of his right +hand. The nails, yes. Is there anything more in him that they she sees? +Fascination. Worst man in Dublin. That keeps him alive. They sometimes +feel what a person is. Instinct. But a type like that. My nails. I am +just looking at them: well pared. And after: thinking alone. Body +getting a bit softy. I would notice that: from remembering. What causes +that? I suppose the skin can’t contract quickly enough when the flesh +falls off. But the shape is there. The shape is there still. Shoulders. +Hips. Plump. Night of the dance dressing. Shift stuck between the +cheeks behind. + +He clasped his hands between his knees and, satisfied, sent his vacant +glance over their faces. + +Mr Power asked: + +—How is the concert tour getting on, Bloom? + +—O, very well, Mr Bloom said. I hear great accounts of it. It’s a good +idea, you see... + +—Are you going yourself? + +—Well no, Mr Bloom said. In point of fact I have to go down to the +county Clare on some private business. You see the idea is to tour the +chief towns. What you lose on one you can make up on the other. + +—Quite so, Martin Cunningham said. Mary Anderson is up there now. + +Have you good artists? + +—Louis Werner is touring her, Mr Bloom said. O yes, we’ll have all +topnobbers. J. C. Doyle and John MacCormack I hope and. The best, in +fact. + +—And _Madame_, Mr Power said smiling. Last but not least. + +Mr Bloom unclasped his hands in a gesture of soft politeness and +clasped them. Smith O’Brien. Someone has laid a bunch of flowers there. +Woman. Must be his deathday. For many happy returns. The carriage +wheeling by Farrell’s statue united noiselessly their unresisting +knees. + +Oot: a dullgarbed old man from the curbstone tendered his wares, his +mouth opening: oot. + +—Four bootlaces for a penny. + +Wonder why he was struck off the rolls. Had his office in Hume street. +Same house as Molly’s namesake, Tweedy, crown solicitor for Waterford. +Has that silk hat ever since. Relics of old decency. Mourning too. +Terrible comedown, poor wretch! Kicked about like snuff at a wake. +O’Callaghan on his last legs. + +And _Madame_. Twenty past eleven. Up. Mrs Fleming is in to clean. Doing +her hair, humming: _voglio e non vorrei_. No: _vorrei e non_. Looking +at the tips of her hairs to see if they are split. _Mi trema un poco +il_. Beautiful on that _tre_ her voice is: weeping tone. A thrush. A +throstle. There is a word throstle that expresses that. + +His eyes passed lightly over Mr Power’s goodlooking face. Greyish over +the ears. _Madame_: smiling. I smiled back. A smile goes a long way. +Only politeness perhaps. Nice fellow. Who knows is that true about the +woman he keeps? Not pleasant for the wife. Yet they say, who was it +told me, there is no carnal. You would imagine that would get played +out pretty quick. Yes, it was Crofton met him one evening bringing her +a pound of rumpsteak. What is this she was? Barmaid in Jury’s. Or the +Moira, was it? + +They passed under the hugecloaked Liberator’s form. + +Martin Cunningham nudged Mr Power. + +—Of the tribe of Reuben, he said. + +A tall blackbearded figure, bent on a stick, stumping round the corner +of Elvery’s Elephant house, showed them a curved hand open on his +spine. + +—In all his pristine beauty, Mr Power said. + +Mr Dedalus looked after the stumping figure and said mildly: + +—The devil break the hasp of your back! + +Mr Power, collapsing in laughter, shaded his face from the window as +the carriage passed Gray’s statue. + +—We have all been there, Martin Cunningham said broadly. + +His eyes met Mr Bloom’s eyes. He caressed his beard, adding: + +—Well, nearly all of us. + +Mr Bloom began to speak with sudden eagerness to his companions’ faces. + +—That’s an awfully good one that’s going the rounds about Reuben J and +the son. + +—About the boatman? Mr Power asked. + +—Yes. Isn’t it awfully good? + +—What is that? Mr Dedalus asked. I didn’t hear it. + +—There was a girl in the case, Mr Bloom began, and he determined to +send him to the Isle of Man out of harm’s way but when they were +both..... + +—What? Mr Dedalus asked. That confirmed bloody hobbledehoy is it? + +—Yes, Mr Bloom said. They were both on the way to the boat and he tried +to drown..... + +—Drown Barabbas! Mr Dedalus cried. I wish to Christ he did! + +Mr Power sent a long laugh down his shaded nostrils. + +—No, Mr Bloom said, the son himself..... + +Martin Cunningham thwarted his speech rudely: + +—Reuben J and the son were piking it down the quay next the river on +their way to the Isle of Man boat and the young chiseller suddenly got +loose and over the wall with him into the Liffey. + +—For God’s sake! Mr Dedalus exclaimed in fright. Is he dead? + +—Dead! Martin Cunningham cried. Not he! A boatman got a pole and fished +him out by the slack of the breeches and he was landed up to the father +on the quay more dead than alive. Half the town was there. + +—Yes, Mr Bloom said. But the funny part is..... + +—And Reuben J, Martin Cunningham said, gave the boatman a florin for +saving his son’s life. + +A stifled sigh came from under Mr Power’s hand. + +—O, he did, Martin Cunningham affirmed. Like a hero. A silver florin. + +—Isn’t it awfully good? Mr Bloom said eagerly. + +—One and eightpence too much, Mr Dedalus said drily. + +Mr Power’s choked laugh burst quietly in the carriage. + +Nelson’s pillar. + +—Eight plums a penny! Eight for a penny! + +—We had better look a little serious, Martin Cunningham said. + +Mr Dedalus sighed. + +—Ah then indeed, he said, poor little Paddy wouldn’t grudge us a laugh. +Many a good one he told himself. + +—The Lord forgive me! Mr Power said, wiping his wet eyes with his +fingers. Poor Paddy! I little thought a week ago when I saw him last +and he was in his usual health that I’d be driving after him like this. +He’s gone from us. + +—As decent a little man as ever wore a hat, Mr Dedalus said. He went +very suddenly. + +—Breakdown, Martin Cunningham said. Heart. + +He tapped his chest sadly. + +Blazing face: redhot. Too much John Barleycorn. Cure for a red nose. +Drink like the devil till it turns adelite. A lot of money he spent +colouring it. + +Mr Power gazed at the passing houses with rueful apprehension. + +—He had a sudden death, poor fellow, he said. + +—The best death, Mr Bloom said. + +Their wide open eyes looked at him. + +—No suffering, he said. A moment and all is over. Like dying in sleep. + +No-one spoke. + +Dead side of the street this. Dull business by day, land agents, +temperance hotel, Falconer’s railway guide, civil service college, +Gill’s, catholic club, the industrious blind. Why? Some reason. Sun or +wind. At night too. Chummies and slaveys. Under the patronage of the +late Father Mathew. Foundation stone for Parnell. Breakdown. Heart. + +White horses with white frontlet plumes came round the Rotunda corner, +galloping. A tiny coffin flashed by. In a hurry to bury. A mourning +coach. Unmarried. Black for the married. Piebald for bachelors. Dun for +a nun. + +—Sad, Martin Cunningham said. A child. + +A dwarf’s face, mauve and wrinkled like little Rudy’s was. Dwarf’s +body, weak as putty, in a whitelined deal box. Burial friendly society +pays. Penny a week for a sod of turf. Our. Little. Beggar. Baby. Meant +nothing. Mistake of nature. If it’s healthy it’s from the mother. If +not from the man. Better luck next time. + +—Poor little thing, Mr Dedalus said. It’s well out of it. + +The carriage climbed more slowly the hill of Rutland square. Rattle his +bones. Over the stones. Only a pauper. Nobody owns. + +—In the midst of life, Martin Cunningham said. + +—But the worst of all, Mr Power said, is the man who takes his own +life. + +Martin Cunningham drew out his watch briskly, coughed and put it back. + +—The greatest disgrace to have in the family, Mr Power added. + +—Temporary insanity, of course, Martin Cunningham said decisively. We +must take a charitable view of it. + +—They say a man who does it is a coward, Mr Dedalus said. + +—It is not for us to judge, Martin Cunningham said. + +Mr Bloom, about to speak, closed his lips again. Martin Cunningham’s +large eyes. Looking away now. Sympathetic human man he is. Intelligent. +Like Shakespeare’s face. Always a good word to say. They have no mercy +on that here or infanticide. Refuse christian burial. They used to +drive a stake of wood through his heart in the grave. As if it wasn’t +broken already. Yet sometimes they repent too late. Found in the +riverbed clutching rushes. He looked at me. And that awful drunkard of +a wife of his. Setting up house for her time after time and then +pawning the furniture on him every Saturday almost. Leading him the +life of the damned. Wear the heart out of a stone, that. Monday +morning. Start afresh. Shoulder to the wheel. Lord, she must have +looked a sight that night Dedalus told me he was in there. Drunk about +the place and capering with Martin’s umbrella. + + And they call me the jewel of Asia, + Of Asia, + The geisha. + +He looked away from me. He knows. Rattle his bones. + +That afternoon of the inquest. The redlabelled bottle on the table. The +room in the hotel with hunting pictures. Stuffy it was. Sunlight +through the slats of the Venetian blind. The coroner’s sunlit ears, big +and hairy. Boots giving evidence. Thought he was asleep first. Then saw +like yellow streaks on his face. Had slipped down to the foot of the +bed. Verdict: overdose. Death by misadventure. The letter. For my son +Leopold. + +No more pain. Wake no more. Nobody owns. + +The carriage rattled swiftly along Blessington street. Over the stones. + +—We are going the pace, I think, Martin Cunningham said. + +—God grant he doesn’t upset us on the road, Mr Power said. + +—I hope not, Martin Cunningham said. That will be a great race tomorrow +in Germany. The Gordon Bennett. + +—Yes, by Jove, Mr Dedalus said. That will be worth seeing, faith. + +As they turned into Berkeley street a streetorgan near the Basin sent +over and after them a rollicking rattling song of the halls. Has +anybody here seen Kelly? Kay ee double ell wy. Dead March from _Saul._ +He’s as bad as old Antonio. He left me on my ownio. Pirouette! The +_Mater Misericordiae_. Eccles street. My house down there. Big place. +Ward for incurables there. Very encouraging. Our Lady’s Hospice for the +dying. Deadhouse handy underneath. Where old Mrs Riordan died. They +look terrible the women. Her feeding cup and rubbing her mouth with the +spoon. Then the screen round her bed for her to die. Nice young student +that was dressed that bite the bee gave me. He’s gone over to the +lying-in hospital they told me. From one extreme to the other. + +The carriage galloped round a corner: stopped. + +—What’s wrong now? + +A divided drove of branded cattle passed the windows, lowing, slouching +by on padded hoofs, whisking their tails slowly on their clotted bony +croups. Outside them and through them ran raddled sheep bleating their +fear. + +—Emigrants, Mr Power said. + +—Huuuh! the drover’s voice cried, his switch sounding on their flanks. +Huuuh! out of that! + +Thursday, of course. Tomorrow is killing day. Springers. Cuffe sold +them about twentyseven quid each. For Liverpool probably. Roastbeef for +old England. They buy up all the juicy ones. And then the fifth quarter +lost: all that raw stuff, hide, hair, horns. Comes to a big thing in a +year. Dead meat trade. Byproducts of the slaughterhouses for tanneries, +soap, margarine. Wonder if that dodge works now getting dicky meat off +the train at Clonsilla. + +The carriage moved on through the drove. + +—I can’t make out why the corporation doesn’t run a tramline from the +parkgate to the quays, Mr Bloom said. All those animals could be taken +in trucks down to the boats. + +—Instead of blocking up the thoroughfare, Martin Cunningham said. Quite +right. They ought to. + +—Yes, Mr Bloom said, and another thing I often thought, is to have +municipal funeral trams like they have in Milan, you know. Run the line +out to the cemetery gates and have special trams, hearse and carriage +and all. Don’t you see what I mean? + +—O, that be damned for a story, Mr Dedalus said. Pullman car and saloon +diningroom. + +—A poor lookout for Corny, Mr Power added. + +—Why? Mr Bloom asked, turning to Mr Dedalus. Wouldn’t it be more decent +than galloping two abreast? + +—Well, there’s something in that, Mr Dedalus granted. + +—And, Martin Cunningham said, we wouldn’t have scenes like that when +the hearse capsized round Dunphy’s and upset the coffin on to the road. + +—That was terrible, Mr Power’s shocked face said, and the corpse fell +about the road. Terrible! + +—First round Dunphy’s, Mr Dedalus said, nodding. Gordon Bennett cup. + +—Praises be to God! Martin Cunningham said piously. + +Bom! Upset. A coffin bumped out on to the road. Burst open. Paddy +Dignam shot out and rolling over stiff in the dust in a brown habit too +large for him. Red face: grey now. Mouth fallen open. Asking what’s up +now. Quite right to close it. Looks horrid open. Then the insides +decompose quickly. Much better to close up all the orifices. Yes, also. +With wax. The sphincter loose. Seal up all. + +—Dunphy’s, Mr Power announced as the carriage turned right. + +Dunphy’s corner. Mourning coaches drawn up, drowning their grief. A +pause by the wayside. Tiptop position for a pub. Expect we’ll pull up +here on the way back to drink his health. Pass round the consolation. +Elixir of life. + +But suppose now it did happen. Would he bleed if a nail say cut him in +the knocking about? He would and he wouldn’t, I suppose. Depends on +where. The circulation stops. Still some might ooze out of an artery. +It would be better to bury them in red: a dark red. + +In silence they drove along Phibsborough road. An empty hearse trotted +by, coming from the cemetery: looks relieved. + +Crossguns bridge: the royal canal. + +Water rushed roaring through the sluices. A man stood on his dropping +barge, between clamps of turf. On the towpath by the lock a +slacktethered horse. Aboard of the _Bugabu._ + +Their eyes watched him. On the slow weedy waterway he had floated on +his raft coastward over Ireland drawn by a haulage rope past beds of +reeds, over slime, mudchoked bottles, carrion dogs. Athlone, Mullingar, +Moyvalley, I could make a walking tour to see Milly by the canal. Or +cycle down. Hire some old crock, safety. Wren had one the other day at +the auction but a lady’s. Developing waterways. James M’Cann’s hobby to +row me o’er the ferry. Cheaper transit. By easy stages. Houseboats. +Camping out. Also hearses. To heaven by water. Perhaps I will without +writing. Come as a surprise, Leixlip, Clonsilla. Dropping down lock by +lock to Dublin. With turf from the midland bogs. Salute. He lifted his +brown straw hat, saluting Paddy Dignam. + +They drove on past Brian Boroimhe house. Near it now. + +—I wonder how is our friend Fogarty getting on, Mr Power said. + +—Better ask Tom Kernan, Mr Dedalus said. + +—How is that? Martin Cunningham said. Left him weeping, I suppose? + +—Though lost to sight, Mr Dedalus said, to memory dear. + +The carriage steered left for Finglas road. + +The stonecutter’s yard on the right. Last lap. Crowded on the spit of +land silent shapes appeared, white, sorrowful, holding out calm hands, +knelt in grief, pointing. Fragments of shapes, hewn. In white silence: +appealing. The best obtainable. Thos. H. Dennany, monumental builder +and sculptor. + +Passed. + +On the curbstone before Jimmy Geary, the sexton’s, an old tramp sat, +grumbling, emptying the dirt and stones out of his huge dustbrown +yawning boot. After life’s journey. + +Gloomy gardens then went by: one by one: gloomy houses. + +Mr Power pointed. + +—That is where Childs was murdered, he said. The last house. + +—So it is, Mr Dedalus said. A gruesome case. Seymour Bushe got him off. +Murdered his brother. Or so they said. + +—The crown had no evidence, Mr Power said. + +—Only circumstantial, Martin Cunningham added. That’s the maxim of the +law. Better for ninetynine guilty to escape than for one innocent +person to be wrongfully condemned. + +They looked. Murderer’s ground. It passed darkly. Shuttered, +tenantless, unweeded garden. Whole place gone to hell. Wrongfully +condemned. Murder. The murderer’s image in the eye of the murdered. +They love reading about it. Man’s head found in a garden. Her clothing +consisted of. How she met her death. Recent outrage. The weapon used. +Murderer is still at large. Clues. A shoelace. The body to be exhumed. +Murder will out. + +Cramped in this carriage. She mightn’t like me to come that way without +letting her know. Must be careful about women. Catch them once with +their pants down. Never forgive you after. Fifteen. + +The high railings of Prospect rippled past their gaze. Dark poplars, +rare white forms. Forms more frequent, white shapes thronged amid the +trees, white forms and fragments streaming by mutely, sustaining vain +gestures on the air. + +The felly harshed against the curbstone: stopped. Martin Cunningham put +out his arm and, wrenching back the handle, shoved the door open with +his knee. He stepped out. Mr Power and Mr Dedalus followed. + +Change that soap now. Mr Bloom’s hand unbuttoned his hip pocket swiftly +and transferred the paperstuck soap to his inner handkerchief pocket. +He stepped out of the carriage, replacing the newspaper his other hand +still held. + +Paltry funeral: coach and three carriages. It’s all the same. +Pallbearers, gold reins, requiem mass, firing a volley. Pomp of death. +Beyond the hind carriage a hawker stood by his barrow of cakes and +fruit. Simnel cakes those are, stuck together: cakes for the dead. +Dogbiscuits. Who ate them? Mourners coming out. + +He followed his companions. Mr Kernan and Ned Lambert followed, Hynes +walking after them. Corny Kelleher stood by the opened hearse and took +out the two wreaths. He handed one to the boy. + +Where is that child’s funeral disappeared to? + +A team of horses passed from Finglas with toiling plodding tread, +dragging through the funereal silence a creaking waggon on which lay a +granite block. The waggoner marching at their head saluted. + +Coffin now. Got here before us, dead as he is. Horse looking round at +it with his plume skeowways. Dull eye: collar tight on his neck, +pressing on a bloodvessel or something. Do they know what they cart out +here every day? Must be twenty or thirty funerals every day. Then Mount +Jerome for the protestants. Funerals all over the world everywhere +every minute. Shovelling them under by the cartload doublequick. +Thousands every hour. Too many in the world. + +Mourners came out through the gates: woman and a girl. Leanjawed harpy, +hard woman at a bargain, her bonnet awry. Girl’s face stained with dirt +and tears, holding the woman’s arm, looking up at her for a sign to +cry. Fish’s face, bloodless and livid. + +The mutes shouldered the coffin and bore it in through the gates. So +much dead weight. Felt heavier myself stepping out of that bath. First +the stiff: then the friends of the stiff. Corny Kelleher and the boy +followed with their wreaths. Who is that beside them? Ah, the +brother-in-law. + +All walked after. + +Martin Cunningham whispered: + +—I was in mortal agony with you talking of suicide before Bloom. + +—What? Mr Power whispered. How so? + +—His father poisoned himself, Martin Cunningham whispered. Had the +Queen’s hotel in Ennis. You heard him say he was going to Clare. +Anniversary. + +—O God! Mr Power whispered. First I heard of it. Poisoned himself? + +He glanced behind him to where a face with dark thinking eyes followed +towards the cardinal’s mausoleum. Speaking. + +—Was he insured? Mr Bloom asked. + +—I believe so, Mr Kernan answered. But the policy was heavily +mortgaged. Martin is trying to get the youngster into Artane. + +—How many children did he leave? + +—Five. Ned Lambert says he’ll try to get one of the girls into Todd’s. + +—A sad case, Mr Bloom said gently. Five young children. + +—A great blow to the poor wife, Mr Kernan added. + +—Indeed yes, Mr Bloom agreed. + +Has the laugh at him now. + +He looked down at the boots he had blacked and polished. She had +outlived him. Lost her husband. More dead for her than for me. One must +outlive the other. Wise men say. There are more women than men in the +world. Condole with her. Your terrible loss. I hope you’ll soon follow +him. For Hindu widows only. She would marry another. Him? No. Yet who +knows after. Widowhood not the thing since the old queen died. Drawn on +a guncarriage. Victoria and Albert. Frogmore memorial mourning. But in +the end she put a few violets in her bonnet. Vain in her heart of +hearts. All for a shadow. Consort not even a king. Her son was the +substance. Something new to hope for not like the past she wanted back, +waiting. It never comes. One must go first: alone, under the ground: +and lie no more in her warm bed. + +—How are you, Simon? Ned Lambert said softly, clasping hands. Haven’t +seen you for a month of Sundays. + +—Never better. How are all in Cork’s own town? + +—I was down there for the Cork park races on Easter Monday, Ned Lambert +said. Same old six and eightpence. Stopped with Dick Tivy. + +—And how is Dick, the solid man? + +—Nothing between himself and heaven, Ned Lambert answered. + +—By the holy Paul! Mr Dedalus said in subdued wonder. Dick Tivy bald? + +—Martin is going to get up a whip for the youngsters, Ned Lambert said, +pointing ahead. A few bob a skull. Just to keep them going till the +insurance is cleared up. + +—Yes, yes, Mr Dedalus said dubiously. Is that the eldest boy in front? + +—Yes, Ned Lambert said, with the wife’s brother. John Henry Menton is +behind. He put down his name for a quid. + +—I’ll engage he did, Mr Dedalus said. I often told poor Paddy he ought +to mind that job. John Henry is not the worst in the world. + +—How did he lose it? Ned Lambert asked. Liquor, what? + +—Many a good man’s fault, Mr Dedalus said with a sigh. + +They halted about the door of the mortuary chapel. Mr Bloom stood +behind the boy with the wreath looking down at his sleekcombed hair and +at the slender furrowed neck inside his brandnew collar. Poor boy! Was +he there when the father? Both unconscious. Lighten up at the last +moment and recognise for the last time. All he might have done. I owe +three shillings to O’Grady. Would he understand? The mutes bore the +coffin into the chapel. Which end is his head? + +After a moment he followed the others in, blinking in the screened +light. The coffin lay on its bier before the chancel, four tall yellow +candles at its corners. Always in front of us. Corny Kelleher, laying a +wreath at each fore corner, beckoned to the boy to kneel. The mourners +knelt here and there in prayingdesks. Mr Bloom stood behind near the +font and, when all had knelt, dropped carefully his unfolded newspaper +from his pocket and knelt his right knee upon it. He fitted his black +hat gently on his left knee and, holding its brim, bent over piously. + +A server bearing a brass bucket with something in it came out through a +door. The whitesmocked priest came after him, tidying his stole with +one hand, balancing with the other a little book against his toad’s +belly. Who’ll read the book? I, said the rook. + +They halted by the bier and the priest began to read out of his book +with a fluent croak. + +Father Coffey. I knew his name was like a coffin. _Dominenamine._ Bully +about the muzzle he looks. Bosses the show. Muscular christian. Woe +betide anyone that looks crooked at him: priest. Thou art Peter. Burst +sideways like a sheep in clover Dedalus says he will. With a belly on +him like a poisoned pup. Most amusing expressions that man finds. Hhhn: +burst sideways. + +_—Non intres in judicium cum servo tuo, Domine._ + +Makes them feel more important to be prayed over in Latin. Requiem +mass. Crape weepers. Blackedged notepaper. Your name on the altarlist. +Chilly place this. Want to feed well, sitting in there all the morning +in the gloom kicking his heels waiting for the next please. Eyes of a +toad too. What swells him up that way? Molly gets swelled after +cabbage. Air of the place maybe. Looks full up of bad gas. Must be an +infernal lot of bad gas round the place. Butchers, for instance: they +get like raw beefsteaks. Who was telling me? Mervyn Browne. Down in the +vaults of saint Werburgh’s lovely old organ hundred and fifty they have +to bore a hole in the coffins sometimes to let out the bad gas and burn +it. Out it rushes: blue. One whiff of that and you’re a goner. + +My kneecap is hurting me. Ow. That’s better. + +The priest took a stick with a knob at the end of it out of the boy’s +bucket and shook it over the coffin. Then he walked to the other end +and shook it again. Then he came back and put it back in the bucket. As +you were before you rested. It’s all written down: he has to do it. + +_—Et ne nos inducas in tentationem._ + +The server piped the answers in the treble. I often thought it would be +better to have boy servants. Up to fifteen or so. After that, of course +... + +Holy water that was, I expect. Shaking sleep out of it. He must be fed +up with that job, shaking that thing over all the corpses they trot up. +What harm if he could see what he was shaking it over. Every mortal day +a fresh batch: middleaged men, old women, children, women dead in +childbirth, men with beards, baldheaded businessmen, consumptive girls +with little sparrows’ breasts. All the year round he prayed the same +thing over them all and shook water on top of them: sleep. On Dignam +now. + +_—In paradisum._ + +Said he was going to paradise or is in paradise. Says that over +everybody. Tiresome kind of a job. But he has to say something. + +The priest closed his book and went off, followed by the server. Corny +Kelleher opened the sidedoors and the gravediggers came in, hoisted the +coffin again, carried it out and shoved it on their cart. Corny +Kelleher gave one wreath to the boy and one to the brother-in-law. All +followed them out of the sidedoors into the mild grey air. Mr Bloom +came last folding his paper again into his pocket. He gazed gravely at +the ground till the coffincart wheeled off to the left. The metal +wheels ground the gravel with a sharp grating cry and the pack of blunt +boots followed the trundled barrow along a lane of sepulchres. + +The ree the ra the ree the ra the roo. Lord, I mustn’t lilt here. + +—The O’Connell circle, Mr Dedalus said about him. + +Mr Power’s soft eyes went up to the apex of the lofty cone. + +—He’s at rest, he said, in the middle of his people, old Dan O’. But +his heart is buried in Rome. How many broken hearts are buried here, +Simon! + +—Her grave is over there, Jack, Mr Dedalus said. I’ll soon be stretched +beside her. Let Him take me whenever He likes. + +Breaking down, he began to weep to himself quietly, stumbling a little +in his walk. Mr Power took his arm. + +—She’s better where she is, he said kindly. + +—I suppose so, Mr Dedalus said with a weak gasp. I suppose she is in +heaven if there is a heaven. + +Corny Kelleher stepped aside from his rank and allowed the mourners to +plod by. + +—Sad occasions, Mr Kernan began politely. + +Mr Bloom closed his eyes and sadly twice bowed his head. + +—The others are putting on their hats, Mr Kernan said. I suppose we can +do so too. We are the last. This cemetery is a treacherous place. + +They covered their heads. + +—The reverend gentleman read the service too quickly, don’t you think? +Mr Kernan said with reproof. + +Mr Bloom nodded gravely looking in the quick bloodshot eyes. Secret +eyes, secretsearching. Mason, I think: not sure. Beside him again. We +are the last. In the same boat. Hope he’ll say something else. + +Mr Kernan added: + +—The service of the Irish church used in Mount Jerome is simpler, more +impressive I must say. + +Mr Bloom gave prudent assent. The language of course was another thing. + +Mr Kernan said with solemnity: + +—_I am the resurrection and the life_. That touches a man’s inmost +heart. + +—It does, Mr Bloom said. + +Your heart perhaps but what price the fellow in the six feet by two +with his toes to the daisies? No touching that. Seat of the affections. +Broken heart. A pump after all, pumping thousands of gallons of blood +every day. One fine day it gets bunged up: and there you are. Lots of +them lying around here: lungs, hearts, livers. Old rusty pumps: damn +the thing else. The resurrection and the life. Once you are dead you +are dead. That last day idea. Knocking them all up out of their graves. +Come forth, Lazarus! And he came fifth and lost the job. Get up! Last +day! Then every fellow mousing around for his liver and his lights and +the rest of his traps. Find damn all of himself that morning. +Pennyweight of powder in a skull. Twelve grammes one pennyweight. Troy +measure. + +Corny Kelleher fell into step at their side. + +—Everything went off A1, he said. What? + +He looked on them from his drawling eye. Policeman’s shoulders. With +your tooraloom tooraloom. + +—As it should be, Mr Kernan said. + +—What? Eh? Corny Kelleher said. + +Mr Kernan assured him. + +—Who is that chap behind with Tom Kernan? John Henry Menton asked. I +know his face. + +Ned Lambert glanced back. + +—Bloom, he said, Madame Marion Tweedy that was, is, I mean, the +soprano. She’s his wife. + +—O, to be sure, John Henry Menton said. I haven’t seen her for some +time. She was a finelooking woman. I danced with her, wait, fifteen +seventeen golden years ago, at Mat Dillon’s in Roundtown. And a good +armful she was. + +He looked behind through the others. + +—What is he? he asked. What does he do? Wasn’t he in the stationery +line? I fell foul of him one evening, I remember, at bowls. + +Ned Lambert smiled. + +—Yes, he was, he said, in Wisdom Hely’s. A traveller for blottingpaper. + +—In God’s name, John Henry Menton said, what did she marry a coon like +that for? She had plenty of game in her then. + +—Has still, Ned Lambert said. He does some canvassing for ads. + +John Henry Menton’s large eyes stared ahead. + +The barrow turned into a side lane. A portly man, ambushed among the +grasses, raised his hat in homage. The gravediggers touched their caps. + +—John O’Connell, Mr Power said pleased. He never forgets a friend. + +Mr O’Connell shook all their hands in silence. Mr Dedalus said: + +—I am come to pay you another visit. + +—My dear Simon, the caretaker answered in a low voice. I don’t want +your custom at all. + +Saluting Ned Lambert and John Henry Menton he walked on at Martin +Cunningham’s side puzzling two long keys at his back. + +—Did you hear that one, he asked them, about Mulcahy from the Coombe? + +—I did not, Martin Cunningham said. + +They bent their silk hats in concert and Hynes inclined his ear. The +caretaker hung his thumbs in the loops of his gold watchchain and spoke +in a discreet tone to their vacant smiles. + +—They tell the story, he said, that two drunks came out here one foggy +evening to look for the grave of a friend of theirs. They asked for +Mulcahy from the Coombe and were told where he was buried. After +traipsing about in the fog they found the grave sure enough. One of the +drunks spelt out the name: Terence Mulcahy. The other drunk was +blinking up at a statue of Our Saviour the widow had got put up. + +The caretaker blinked up at one of the sepulchres they passed. He +resumed: + +—And, after blinking up at the sacred figure, _Not a bloody bit like +the man_, says he. _That’s not Mulcahy_, says he, _whoever done it_. + +Rewarded by smiles he fell back and spoke with Corny Kelleher, +accepting the dockets given him, turning them over and scanning them as +he walked. + +—That’s all done with a purpose, Martin Cunningham explained to Hynes. + +—I know, Hynes said. I know that. + +—To cheer a fellow up, Martin Cunningham said. It’s pure +goodheartedness: damn the thing else. + +Mr Bloom admired the caretaker’s prosperous bulk. All want to be on +good terms with him. Decent fellow, John O’Connell, real good sort. +Keys: like Keyes’s ad: no fear of anyone getting out. No passout +checks. _Habeas corpus_. I must see about that ad after the funeral. +Did I write Ballsbridge on the envelope I took to cover when she +disturbed me writing to Martha? Hope it’s not chucked in the dead +letter office. Be the better of a shave. Grey sprouting beard. That’s +the first sign when the hairs come out grey. And temper getting cross. +Silver threads among the grey. Fancy being his wife. Wonder he had the +gumption to propose to any girl. Come out and live in the graveyard. +Dangle that before her. It might thrill her first. Courting death. +Shades of night hovering here with all the dead stretched about. The +shadows of the tombs when churchyards yawn and Daniel O’Connell must be +a descendant I suppose who is this used to say he was a queer breedy +man great catholic all the same like a big giant in the dark. Will o’ +the wisp. Gas of graves. Want to keep her mind off it to conceive at +all. Women especially are so touchy. Tell her a ghost story in bed to +make her sleep. Have you ever seen a ghost? Well, I have. It was a +pitchdark night. The clock was on the stroke of twelve. Still they’d +kiss all right if properly keyed up. Whores in Turkish graveyards. +Learn anything if taken young. You might pick up a young widow here. +Men like that. Love among the tombstones. Romeo. Spice of pleasure. In +the midst of death we are in life. Both ends meet. Tantalising for the +poor dead. Smell of grilled beefsteaks to the starving. Gnawing their +vitals. Desire to grig people. Molly wanting to do it at the window. +Eight children he has anyway. + +He has seen a fair share go under in his time, lying around him field +after field. Holy fields. More room if they buried them standing. +Sitting or kneeling you couldn’t. Standing? His head might come up some +day above ground in a landslip with his hand pointing. All honeycombed +the ground must be: oblong cells. And very neat he keeps it too: trim +grass and edgings. His garden Major Gamble calls Mount Jerome. Well, so +it is. Ought to be flowers of sleep. Chinese cemeteries with giant +poppies growing produce the best opium Mastiansky told me. The Botanic +Gardens are just over there. It’s the blood sinking in the earth gives +new life. Same idea those jews they said killed the christian boy. +Every man his price. Well preserved fat corpse, gentleman, epicure, +invaluable for fruit garden. A bargain. By carcass of William +Wilkinson, auditor and accountant, lately deceased, three pounds +thirteen and six. With thanks. + +I daresay the soil would be quite fat with corpsemanure, bones, flesh, +nails. Charnelhouses. Dreadful. Turning green and pink decomposing. Rot +quick in damp earth. The lean old ones tougher. Then a kind of a +tallowy kind of a cheesy. Then begin to get black, black treacle oozing +out of them. Then dried up. Deathmoths. Of course the cells or whatever +they are go on living. Changing about. Live for ever practically. +Nothing to feed on feed on themselves. + +But they must breed a devil of a lot of maggots. Soil must be simply +swirling with them. Your head it simply swurls. Those pretty little +seaside gurls. He looks cheerful enough over it. Gives him a sense of +power seeing all the others go under first. Wonder how he looks at +life. Cracking his jokes too: warms the cockles of his heart. The one +about the bulletin. Spurgeon went to heaven 4 a.m. this morning. 11 +p.m. (closing time). Not arrived yet. Peter. The dead themselves the +men anyhow would like to hear an odd joke or the women to know what’s +in fashion. A juicy pear or ladies’ punch, hot, strong and sweet. Keep +out the damp. You must laugh sometimes so better do it that way. +Gravediggers in _Hamlet_. Shows the profound knowledge of the human +heart. Daren’t joke about the dead for two years at least. _De mortuis +nil nisi prius_. Go out of mourning first. Hard to imagine his funeral. +Seems a sort of a joke. Read your own obituary notice they say you live +longer. Gives you second wind. New lease of life. + +—How many have you for tomorrow? the caretaker asked. + +—Two, Corny Kelleher said. Half ten and eleven. + +The caretaker put the papers in his pocket. The barrow had ceased to +trundle. The mourners split and moved to each side of the hole, +stepping with care round the graves. The gravediggers bore the coffin +and set its nose on the brink, looping the bands round it. + +Burying him. We come to bury Cæsar. His ides of March or June. He +doesn’t know who is here nor care. Now who is that lankylooking galoot +over there in the macintosh? Now who is he I’d like to know? Now I’d +give a trifle to know who he is. Always someone turns up you never +dreamt of. A fellow could live on his lonesome all his life. Yes, he +could. Still he’d have to get someone to sod him after he died though +he could dig his own grave. We all do. Only man buries. No, ants too. +First thing strikes anybody. Bury the dead. Say Robinson Crusoe was +true to life. Well then Friday buried him. Every Friday buries a +Thursday if you come to look at it. + + O, poor Robinson Crusoe! + How could you possibly do so? + +Poor Dignam! His last lie on the earth in his box. When you think of +them all it does seem a waste of wood. All gnawed through. They could +invent a handsome bier with a kind of panel sliding, let it down that +way. Ay but they might object to be buried out of another fellow’s. +They’re so particular. Lay me in my native earth. Bit of clay from the +holy land. Only a mother and deadborn child ever buried in the one +coffin. I see what it means. I see. To protect him as long as possible +even in the earth. The Irishman’s house is his coffin. Embalming in +catacombs, mummies the same idea. + +Mr Bloom stood far back, his hat in his hand, counting the bared heads. +Twelve. I’m thirteen. No. The chap in the macintosh is thirteen. +Death’s number. Where the deuce did he pop out of? He wasn’t in the +chapel, that I’ll swear. Silly superstition that about thirteen. + +Nice soft tweed Ned Lambert has in that suit. Tinge of purple. I had +one like that when we lived in Lombard street west. Dressy fellow he +was once. Used to change three suits in the day. Must get that grey +suit of mine turned by Mesias. Hello. It’s dyed. His wife I forgot he’s +not married or his landlady ought to have picked out those threads for +him. + +The coffin dived out of sight, eased down by the men straddled on the +gravetrestles. They struggled up and out: and all uncovered. Twenty. + +Pause. + +If we were all suddenly somebody else. + +Far away a donkey brayed. Rain. No such ass. Never see a dead one, they +say. Shame of death. They hide. Also poor papa went away. + +Gentle sweet air blew round the bared heads in a whisper. Whisper. The +boy by the gravehead held his wreath with both hands staring quietly in +the black open space. Mr Bloom moved behind the portly kindly +caretaker. Wellcut frockcoat. Weighing them up perhaps to see which +will go next. Well, it is a long rest. Feel no more. It’s the moment +you feel. Must be damned unpleasant. Can’t believe it at first. Mistake +must be: someone else. Try the house opposite. Wait, I wanted to. I +haven’t yet. Then darkened deathchamber. Light they want. Whispering +around you. Would you like to see a priest? Then rambling and +wandering. Delirium all you hid all your life. The death struggle. His +sleep is not natural. Press his lower eyelid. Watching is his nose +pointed is his jaw sinking are the soles of his feet yellow. Pull the +pillow away and finish it off on the floor since he’s doomed. Devil in +that picture of sinner’s death showing him a woman. Dying to embrace +her in his shirt. Last act of _Lucia. Shall I nevermore behold thee_? +Bam! He expires. Gone at last. People talk about you a bit: forget you. +Don’t forget to pray for him. Remember him in your prayers. Even +Parnell. Ivy day dying out. Then they follow: dropping into a hole, one +after the other. + +We are praying now for the repose of his soul. Hoping you’re well and +not in hell. Nice change of air. Out of the fryingpan of life into the +fire of purgatory. + +Does he ever think of the hole waiting for himself? They say you do +when you shiver in the sun. Someone walking over it. Callboy’s warning. +Near you. Mine over there towards Finglas, the plot I bought. Mamma, +poor mamma, and little Rudy. + +The gravediggers took up their spades and flung heavy clods of clay in +on the coffin. Mr Bloom turned away his face. And if he was alive all +the time? Whew! By jingo, that would be awful! No, no: he is dead, of +course. Of course he is dead. Monday he died. They ought to have some +law to pierce the heart and make sure or an electric clock or a +telephone in the coffin and some kind of a canvas airhole. Flag of +distress. Three days. Rather long to keep them in summer. Just as well +to get shut of them as soon as you are sure there’s no. + +The clay fell softer. Begin to be forgotten. Out of sight, out of mind. + +The caretaker moved away a few paces and put on his hat. Had enough of +it. The mourners took heart of grace, one by one, covering themselves +without show. Mr Bloom put on his hat and saw the portly figure make +its way deftly through the maze of graves. Quietly, sure of his ground, +he traversed the dismal fields. + +Hynes jotting down something in his notebook. Ah, the names. But he +knows them all. No: coming to me. + +—I am just taking the names, Hynes said below his breath. What is your +christian name? I’m not sure. + +—L, Mr Bloom said. Leopold. And you might put down M’Coy’s name too. He +asked me to. + +—Charley, Hynes said writing. I know. He was on the _Freeman_ once. + +So he was before he got the job in the morgue under Louis Byrne. Good +idea a postmortem for doctors. Find out what they imagine they know. He +died of a Tuesday. Got the run. Levanted with the cash of a few ads. +Charley, you’re my darling. That was why he asked me to. O well, does +no harm. I saw to that, M’Coy. Thanks, old chap: much obliged. Leave +him under an obligation: costs nothing. + +—And tell us, Hynes said, do you know that fellow in the, fellow was +over there in the... + +He looked around. + +—Macintosh. Yes, I saw him, Mr Bloom said. Where is he now? + +—M’Intosh, Hynes said scribbling. I don’t know who he is. Is that his +name? + +He moved away, looking about him. + +—No, Mr Bloom began, turning and stopping. I say, Hynes! + +Didn’t hear. What? Where has he disappeared to? Not a sign. Well of all +the. Has anybody here seen? Kay ee double ell. Become invisible. Good +Lord, what became of him? + +A seventh gravedigger came beside Mr Bloom to take up an idle spade. + +—O, excuse me! + +He stepped aside nimbly. + +Clay, brown, damp, began to be seen in the hole. It rose. Nearly over. +A mound of damp clods rose more, rose, and the gravediggers rested +their spades. All uncovered again for a few instants. The boy propped +his wreath against a corner: the brother-in-law his on a lump. The +gravediggers put on their caps and carried their earthy spades towards +the barrow. Then knocked the blades lightly on the turf: clean. One +bent to pluck from the haft a long tuft of grass. One, leaving his +mates, walked slowly on with shouldered weapon, its blade blueglancing. +Silently at the gravehead another coiled the coffinband. His navelcord. +The brother-in-law, turning away, placed something in his free hand. +Thanks in silence. Sorry, sir: trouble. Headshake. I know that. For +yourselves just. + +The mourners moved away slowly without aim, by devious paths, staying +at whiles to read a name on a tomb. + +—Let us go round by the chief’s grave, Hynes said. We have time. + +—Let us, Mr Power said. + +They turned to the right, following their slow thoughts. With awe Mr +Power’s blank voice spoke: + +—Some say he is not in that grave at all. That the coffin was filled +with stones. That one day he will come again. + +Hynes shook his head. + +—Parnell will never come again, he said. He’s there, all that was +mortal of him. Peace to his ashes. + +Mr Bloom walked unheeded along his grove by saddened angels, crosses, +broken pillars, family vaults, stone hopes praying with upcast eyes, +old Ireland’s hearts and hands. More sensible to spend the money on +some charity for the living. Pray for the repose of the soul of. Does +anybody really? Plant him and have done with him. Like down a +coalshoot. Then lump them together to save time. All souls’ day. +Twentyseventh I’ll be at his grave. Ten shillings for the gardener. He +keeps it free of weeds. Old man himself. Bent down double with his +shears clipping. Near death’s door. Who passed away. Who departed this +life. As if they did it of their own accord. Got the shove, all of +them. Who kicked the bucket. More interesting if they told you what +they were. So and So, wheelwright. I travelled for cork lino. I paid +five shillings in the pound. Or a woman’s with her saucepan. I cooked +good Irish stew. Eulogy in a country churchyard it ought to be that +poem of whose is it Wordsworth or Thomas Campbell. Entered into rest +the protestants put it. Old Dr Murren’s. The great physician called him +home. Well it’s God’s acre for them. Nice country residence. Newly +plastered and painted. Ideal spot to have a quiet smoke and read the +_Church Times._ Marriage ads they never try to beautify. Rusty wreaths +hung on knobs, garlands of bronzefoil. Better value that for the money. +Still, the flowers are more poetical. The other gets rather tiresome, +never withering. Expresses nothing. Immortelles. + +A bird sat tamely perched on a poplar branch. Like stuffed. Like the +wedding present alderman Hooper gave us. Hoo! Not a budge out of him. +Knows there are no catapults to let fly at him. Dead animal even +sadder. Silly-Milly burying the little dead bird in the kitchen +matchbox, a daisychain and bits of broken chainies on the grave. + +The Sacred Heart that is: showing it. Heart on his sleeve. Ought to be +sideways and red it should be painted like a real heart. Ireland was +dedicated to it or whatever that. Seems anything but pleased. Why this +infliction? Would birds come then and peck like the boy with the basket +of fruit but he said no because they ought to have been afraid of the +boy. Apollo that was. + +How many! All these here once walked round Dublin. Faithful departed. +As you are now so once were we. + +Besides how could you remember everybody? Eyes, walk, voice. Well, the +voice, yes: gramophone. Have a gramophone in every grave or keep it in +the house. After dinner on a Sunday. Put on poor old greatgrandfather. +Kraahraark! Hellohellohello amawfullyglad kraark awfullygladaseeagain +hellohello amawf krpthsth. Remind you of the voice like the photograph +reminds you of the face. Otherwise you couldn’t remember the face after +fifteen years, say. For instance who? For instance some fellow that +died when I was in Wisdom Hely’s. + +Rtststr! A rattle of pebbles. Wait. Stop! + +He looked down intently into a stone crypt. Some animal. Wait. There he +goes. + +An obese grey rat toddled along the side of the crypt, moving the +pebbles. An old stager: greatgrandfather: he knows the ropes. The grey +alive crushed itself in under the plinth, wriggled itself in under it. +Good hidingplace for treasure. + +Who lives there? Are laid the remains of Robert Emery. Robert Emmet was +buried here by torchlight, wasn’t he? Making his rounds. + +Tail gone now. + +One of those chaps would make short work of a fellow. Pick the bones +clean no matter who it was. Ordinary meat for them. A corpse is meat +gone bad. Well and what’s cheese? Corpse of milk. I read in that +_Voyages in China_ that the Chinese say a white man smells like a +corpse. Cremation better. Priests dead against it. Devilling for the +other firm. Wholesale burners and Dutch oven dealers. Time of the +plague. Quicklime feverpits to eat them. Lethal chamber. Ashes to +ashes. Or bury at sea. Where is that Parsee tower of silence? Eaten by +birds. Earth, fire, water. Drowning they say is the pleasantest. See +your whole life in a flash. But being brought back to life no. Can’t +bury in the air however. Out of a flying machine. Wonder does the news +go about whenever a fresh one is let down. Underground communication. +We learned that from them. Wouldn’t be surprised. Regular square feed +for them. Flies come before he’s well dead. Got wind of Dignam. They +wouldn’t care about the smell of it. Saltwhite crumbling mush of +corpse: smell, taste like raw white turnips. + +The gates glimmered in front: still open. Back to the world again. +Enough of this place. Brings you a bit nearer every time. Last time I +was here was Mrs Sinico’s funeral. Poor papa too. The love that kills. +And even scraping up the earth at night with a lantern like that case I +read of to get at fresh buried females or even putrefied with running +gravesores. Give you the creeps after a bit. I will appear to you after +death. You will see my ghost after death. My ghost will haunt you after +death. There is another world after death named hell. I do not like +that other world she wrote. No more do I. Plenty to see and hear and +feel yet. Feel live warm beings near you. Let them sleep in their +maggoty beds. They are not going to get me this innings. Warm beds: +warm fullblooded life. + +Martin Cunningham emerged from a sidepath, talking gravely. + +Solicitor, I think. I know his face. Menton, John Henry, solicitor, +commissioner for oaths and affidavits. Dignam used to be in his office. +Mat Dillon’s long ago. Jolly Mat. Convivial evenings. Cold fowl, +cigars, the Tantalus glasses. Heart of gold really. Yes, Menton. Got +his rag out that evening on the bowlinggreen because I sailed inside +him. Pure fluke of mine: the bias. Why he took such a rooted dislike to +me. Hate at first sight. Molly and Floey Dillon linked under the +lilactree, laughing. Fellow always like that, mortified if women are +by. + +Got a dinge in the side of his hat. Carriage probably. + +—Excuse me, sir, Mr Bloom said beside them. + +They stopped. + +—Your hat is a little crushed, Mr Bloom said pointing. + +John Henry Menton stared at him for an instant without moving. + +—There, Martin Cunningham helped, pointing also. + +John Henry Menton took off his hat, bulged out the dinge and smoothed +the nap with care on his coatsleeve. He clapped the hat on his head +again. + +—It’s all right now, Martin Cunningham said. + +John Henry Menton jerked his head down in acknowledgment. + +—Thank you, he said shortly. + +They walked on towards the gates. Mr Bloom, chapfallen, drew behind a +few paces so as not to overhear. Martin laying down the law. Martin +could wind a sappyhead like that round his little finger, without his +seeing it. + +Oyster eyes. Never mind. Be sorry after perhaps when it dawns on him. +Get the pull over him that way. + +Thank you. How grand we are this morning! + + + + +[ 7 ] + + +IN THE HEART OF THE HIBERNIAN METROPOLIS + + +Before Nelson’s pillar trams slowed, shunted, changed trolley, started +for Blackrock, Kingstown and Dalkey, Clonskea, Rathgar and Terenure, +Palmerston Park and upper Rathmines, Sandymount Green, Rathmines, +Ringsend and Sandymount Tower, Harold’s Cross. The hoarse Dublin United +Tramway Company’s timekeeper bawled them off: + +—Rathgar and Terenure! + +—Come on, Sandymount Green! + +Right and left parallel clanging ringing a doubledecker and a +singledeck moved from their railheads, swerved to the down line, glided +parallel. + +—Start, Palmerston Park! + +THE WEARER OF THE CROWN + + +Under the porch of the general post office shoeblacks called and +polished. Parked in North Prince’s street His Majesty’s vermilion +mailcars, bearing on their sides the royal initials, E. R., received +loudly flung sacks of letters, postcards, lettercards, parcels, insured +and paid, for local, provincial, British and overseas delivery. + +GENTLEMEN OF THE PRESS + + +Grossbooted draymen rolled barrels dullthudding out of Prince’s stores +and bumped them up on the brewery float. On the brewery float bumped +dullthudding barrels rolled by grossbooted draymen out of Prince’s +stores. + +—There it is, Red Murray said. Alexander Keyes. + +—Just cut it out, will you? Mr Bloom said, and I’ll take it round to +the _Telegraph_ office. + +The door of Ruttledge’s office creaked again. Davy Stephens, minute in +a large capecoat, a small felt hat crowning his ringlets, passed out +with a roll of papers under his cape, a king’s courier. + +Red Murray’s long shears sliced out the advertisement from the +newspaper in four clean strokes. Scissors and paste. + +—I’ll go through the printingworks, Mr Bloom said, taking the cut +square. + +—Of course, if he wants a par, Red Murray said earnestly, a pen behind +his ear, we can do him one. + +—Right, Mr Bloom said with a nod. I’ll rub that in. + +We. + +WILLIAM BRAYDEN, ESQUIRE, OF OAKLANDS, SANDYMOUNT + + +Red Murray touched Mr Bloom’s arm with the shears and whispered: + +—Brayden. + +Mr Bloom turned and saw the liveried porter raise his lettered cap as a +stately figure entered between the newsboards of the _Weekly Freeman +and National Press_ and the _Freeman’s Journal and National Press_. +Dullthudding Guinness’s barrels. It passed statelily up the staircase, +steered by an umbrella, a solemn beardframed face. The broadcloth back +ascended each step: back. All his brains are in the nape of his neck, +Simon Dedalus says. Welts of flesh behind on him. Fat folds of neck, +fat, neck, fat, neck. + +—Don’t you think his face is like Our Saviour? Red Murray whispered. + +The door of Ruttledge’s office whispered: ee: cree. They always build +one door opposite another for the wind to. Way in. Way out. + +Our Saviour: beardframed oval face: talking in the dusk. Mary, Martha. +Steered by an umbrella sword to the footlights: Mario the tenor. + +—Or like Mario, Mr Bloom said. + +—Yes, Red Murray agreed. But Mario was said to be the picture of Our +Saviour. + +Jesusmario with rougy cheeks, doublet and spindle legs. Hand on his +heart. In _Martha._ + + Co-ome thou lost one, + Co-ome thou dear one! + +THE CROZIER AND THE PEN + + +—His grace phoned down twice this morning, Red Murray said gravely. + +They watched the knees, legs, boots vanish. Neck. + +A telegram boy stepped in nimbly, threw an envelope on the counter and +stepped off posthaste with a word: + +_—Freeman!_ + +Mr Bloom said slowly: + +—Well, he is one of our saviours also. + +A meek smile accompanied him as he lifted the counterflap, as he passed +in through a sidedoor and along the warm dark stairs and passage, along +the now reverberating boards. But will he save the circulation? +Thumping. Thumping. + +He pushed in the glass swingdoor and entered, stepping over strewn +packing paper. Through a lane of clanking drums he made his way towards +Nannetti’s reading closet. + +WITH UNFEIGNED REGRET IT IS WE ANNOUNCE THE DISSOLUTION OF A MOST +RESPECTED DUBLIN BURGESS + + +Hynes here too: account of the funeral probably. Thumping. Thump. This +morning the remains of the late Mr Patrick Dignam. Machines. Smash a +man to atoms if they got him caught. Rule the world today. His +machineries are pegging away too. Like these, got out of hand: +fermenting. Working away, tearing away. And that old grey rat tearing +to get in. + +HOW A GREAT DAILY ORGAN IS TURNED OUT + + +Mr Bloom halted behind the foreman’s spare body, admiring a glossy +crown. + +Strange he never saw his real country. Ireland my country. Member for +College green. He boomed that workaday worker tack for all it was +worth. It’s the ads and side features sell a weekly, not the stale news +in the official gazette. Queen Anne is dead. Published by authority in +the year one thousand and. Demesne situate in the townland of +Rosenallis, barony of Tinnahinch. To all whom it may concern schedule +pursuant to statute showing return of number of mules and jennets +exported from Ballina. Nature notes. Cartoons. Phil Blake’s weekly Pat +and Bull story. Uncle Toby’s page for tiny tots. Country bumpkin’s +queries. Dear Mr Editor, what is a good cure for flatulence? I’d like +that part. Learn a lot teaching others. The personal note. M. A. P. +Mainly all pictures. Shapely bathers on golden strand. World’s biggest +balloon. Double marriage of sisters celebrated. Two bridegrooms +laughing heartily at each other. Cuprani too, printer. More Irish than +the Irish. + +The machines clanked in threefour time. Thump, thump, thump. Now if he +got paralysed there and no-one knew how to stop them they’d clank on +and on the same, print it over and over and up and back. Monkeydoodle +the whole thing. Want a cool head. + +—Well, get it into the evening edition, councillor, Hynes said. + +Soon be calling him my lord mayor. Long John is backing him, they say. + +The foreman, without answering, scribbled press on a corner of the +sheet and made a sign to a typesetter. He handed the sheet silently +over the dirty glass screen. + +—Right: thanks, Hynes said moving off. + +Mr Bloom stood in his way. + +—If you want to draw the cashier is just going to lunch, he said, +pointing backward with his thumb. + +—Did you? Hynes asked. + +—Mm, Mr Bloom said. Look sharp and you’ll catch him. + +—Thanks, old man, Hynes said. I’ll tap him too. + +He hurried on eagerly towards the _Freeman’s Journal_. + +Three bob I lent him in Meagher’s. Three weeks. Third hint. + +WE SEE THE CANVASSER AT WORK + + +Mr Bloom laid his cutting on Mr Nannetti’s desk. + +—Excuse me, councillor, he said. This ad, you see. Keyes, you remember? + +Mr Nannetti considered the cutting awhile and nodded. + +—He wants it in for July, Mr Bloom said. + +The foreman moved his pencil towards it. + +—But wait, Mr Bloom said. He wants it changed. Keyes, you see. He wants +two keys at the top. + +Hell of a racket they make. He doesn’t hear it. Nannan. Iron nerves. +Maybe he understands what I. + +The foreman turned round to hear patiently and, lifting an elbow, began +to scratch slowly in the armpit of his alpaca jacket. + +—Like that, Mr Bloom said, crossing his forefingers at the top. + +Let him take that in first. + +Mr Bloom, glancing sideways up from the cross he had made, saw the +foreman’s sallow face, think he has a touch of jaundice, and beyond the +obedient reels feeding in huge webs of paper. Clank it. Clank it. Miles +of it unreeled. What becomes of it after? O, wrap up meat, parcels: +various uses, thousand and one things. + +Slipping his words deftly into the pauses of the clanking he drew +swiftly on the scarred woodwork. + +HOUSE OF KEY(E)S + + +—Like that, see. Two crossed keys here. A circle. Then here the name. +Alexander Keyes, tea, wine and spirit merchant. So on. + +Better not teach him his own business. + +—You know yourself, councillor, just what he wants. Then round the top +in leaded: the house of keys. You see? Do you think that’s a good idea? + +The foreman moved his scratching hand to his lower ribs and scratched +there quietly. + +—The idea, Mr Bloom said, is the house of keys. You know, councillor, +the Manx parliament. Innuendo of home rule. Tourists, you know, from +the isle of Man. Catches the eye, you see. Can you do that? + +I could ask him perhaps about how to pronounce that _voglio._ But then +if he didn’t know only make it awkward for him. Better not. + +—We can do that, the foreman said. Have you the design? + +—I can get it, Mr Bloom said. It was in a Kilkenny paper. He has a +house there too. I’ll just run out and ask him. Well, you can do that +and just a little par calling attention. You know the usual. Highclass +licensed premises. Longfelt want. So on. + +The foreman thought for an instant. + +—We can do that, he said. Let him give us a three months’ renewal. + +A typesetter brought him a limp galleypage. He began to check it +silently. Mr Bloom stood by, hearing the loud throbs of cranks, +watching the silent typesetters at their cases. + +ORTHOGRAPHICAL + + +Want to be sure of his spelling. Proof fever. Martin Cunningham forgot +to give us his spellingbee conundrum this morning. It is amusing to +view the unpar one ar alleled embarra two ars is it? double ess ment of +a harassed pedlar while gauging au the symmetry with a y of a peeled +pear under a cemetery wall. Silly, isn’t it? Cemetery put in of course +on account of the symmetry. + +I should have said when he clapped on his topper. Thank you. I ought to +have said something about an old hat or something. No. I could have +said. Looks as good as new now. See his phiz then. + +Sllt. The nethermost deck of the first machine jogged forward its +flyboard with sllt the first batch of quirefolded papers. Sllt. Almost +human the way it sllt to call attention. Doing its level best to speak. +That door too sllt creaking, asking to be shut. Everything speaks in +its own way. Sllt. + +NOTED CHURCHMAN AN OCCASIONAL CONTRIBUTOR + + +The foreman handed back the galleypage suddenly, saying: + +—Wait. Where’s the archbishop’s letter? It’s to be repeated in the +_Telegraph._ Where’s what’s his name? + +He looked about him round his loud unanswering machines. + +—Monks, sir? a voice asked from the castingbox. + +—Ay. Where’s Monks? + +—Monks! + +Mr Bloom took up his cutting. Time to get out. + +—Then I’ll get the design, Mr Nannetti, he said, and you’ll give it a +good place I know. + +—Monks! + +—Yes, sir. + +Three months’ renewal. Want to get some wind off my chest first. Try it +anyhow. Rub in August: good idea: horseshow month. Ballsbridge. +Tourists over for the show. + +A DAYFATHER + + +He walked on through the caseroom passing an old man, bowed, +spectacled, aproned. Old Monks, the dayfather. Queer lot of stuff he +must have put through his hands in his time: obituary notices, pubs’ +ads, speeches, divorce suits, found drowned. Nearing the end of his +tether now. Sober serious man with a bit in the savingsbank I’d say. +Wife a good cook and washer. Daughter working the machine in the +parlour. Plain Jane, no damn nonsense. + +AND IT WAS THE FEAST OF THE PASSOVER + + +He stayed in his walk to watch a typesetter neatly distributing type. +Reads it backwards first. Quickly he does it. Must require some +practice that. mangiD kcirtaP. Poor papa with his hagadah book, reading +backwards with his finger to me. Pessach. Next year in Jerusalem. Dear, +O dear! All that long business about that brought us out of the land of +Egypt and into the house of bondage _alleluia. Shema Israel Adonai +Elohenu_. No, that’s the other. Then the twelve brothers, Jacob’s sons. +And then the lamb and the cat and the dog and the stick and the water +and the butcher. And then the angel of death kills the butcher and he +kills the ox and the dog kills the cat. Sounds a bit silly till you +come to look into it well. Justice it means but it’s everybody eating +everyone else. That’s what life is after all. How quickly he does that +job. Practice makes perfect. Seems to see with his fingers. + +Mr Bloom passed on out of the clanking noises through the gallery on to +the landing. Now am I going to tram it out all the way and then catch +him out perhaps. Better phone him up first. Number? Yes. Same as +Citron’s house. Twentyeight. Twentyeight double four. + +ONLY ONCE MORE THAT SOAP + + +He went down the house staircase. Who the deuce scrawled all over those +walls with matches? Looks as if they did it for a bet. Heavy greasy +smell there always is in those works. Lukewarm glue in Thom’s next door +when I was there. + +He took out his handkerchief to dab his nose. Citronlemon? Ah, the soap +I put there. Lose it out of that pocket. Putting back his handkerchief +he took out the soap and stowed it away, buttoned, into the hip pocket +of his trousers. + +What perfume does your wife use? I could go home still: tram: something +I forgot. Just to see: before: dressing. No. Here. No. + +A sudden screech of laughter came from the _Evening Telegraph_ office. +Know who that is. What’s up? Pop in a minute to phone. Ned Lambert it +is. + +He entered softly. + +ERIN, GREEN GEM OF THE SILVER SEA + + +—The ghost walks, professor MacHugh murmured softly, biscuitfully to +the dusty windowpane. + +Mr Dedalus, staring from the empty fireplace at Ned Lambert’s quizzing +face, asked of it sourly: + +—Agonising Christ, wouldn’t it give you a heartburn on your arse? + +Ned Lambert, seated on the table, read on: + +—_Or again, note the meanderings of some purling rill as it babbles on +its way, tho’ quarrelling with the stony obstacles, to the tumbling +waters of Neptune’s blue domain, ’mid mossy banks, fanned by gentlest +zephyrs, played on by the glorious sunlight or ’neath the shadows cast +o’er its pensive bosom by the overarching leafage of the giants of the +forest_. What about that, Simon? he asked over the fringe of his +newspaper. How’s that for high? + +—Changing his drink, Mr Dedalus said. + +Ned Lambert, laughing, struck the newspaper on his knees, repeating: + +—_The pensive bosom and the overarsing leafage_. O boys! O boys! + +—And Xenophon looked upon Marathon, Mr Dedalus said, looking again on +the fireplace and to the window, and Marathon looked on the sea. + +—That will do, professor MacHugh cried from the window. I don’t want to +hear any more of the stuff. + +He ate off the crescent of water biscuit he had been nibbling and, +hungered, made ready to nibble the biscuit in his other hand. + +High falutin stuff. Bladderbags. Ned Lambert is taking a day off I see. +Rather upsets a man’s day, a funeral does. He has influence they say. +Old Chatterton, the vicechancellor, is his granduncle or his +greatgranduncle. Close on ninety they say. Subleader for his death +written this long time perhaps. Living to spite them. Might go first +himself. Johnny, make room for your uncle. The right honourable Hedges +Eyre Chatterton. Daresay he writes him an odd shaky cheque or two on +gale days. Windfall when he kicks out. Alleluia. + +—Just another spasm, Ned Lambert said. + +—What is it? Mr Bloom asked. + +—A recently discovered fragment of Cicero, professor MacHugh answered +with pomp of tone. _Our lovely land_. + +SHORT BUT TO THE POINT + + +—Whose land? Mr Bloom said simply. + +—Most pertinent question, the professor said between his chews. With an +accent on the whose. + +—Dan Dawson’s land Mr Dedalus said. + +—Is it his speech last night? Mr Bloom asked. + +Ned Lambert nodded. + +—But listen to this, he said. + +The doorknob hit Mr Bloom in the small of the back as the door was +pushed in. + +—Excuse me, J. J. O’Molloy said, entering. + +Mr Bloom moved nimbly aside. + +—I beg yours, he said. + +—Good day, Jack. + +—Come in. Come in. + +—Good day. + +—How are you, Dedalus? + +—Well. And yourself? + +J. J. O’Molloy shook his head. + +SAD + + +Cleverest fellow at the junior bar he used to be. Decline, poor chap. +That hectic flush spells finis for a man. Touch and go with him. What’s +in the wind, I wonder. Money worry. + +—_Or again if we but climb the serried mountain peaks._ + +—You’re looking extra. + +—Is the editor to be seen? J. J. O’Molloy asked, looking towards the +inner door. + +—Very much so, professor MacHugh said. To be seen and heard. He’s in +his sanctum with Lenehan. + +J. J. O’Molloy strolled to the sloping desk and began to turn back the +pink pages of the file. + +Practice dwindling. A mighthavebeen. Losing heart. Gambling. Debts of +honour. Reaping the whirlwind. Used to get good retainers from D. and +T. Fitzgerald. Their wigs to show the grey matter. Brains on their +sleeve like the statue in Glasnevin. Believe he does some literary work +for the _Express_ with Gabriel Conroy. Wellread fellow. Myles Crawford +began on the _Independent._ Funny the way those newspaper men veer +about when they get wind of a new opening. Weathercocks. Hot and cold +in the same breath. Wouldn’t know which to believe. One story good till +you hear the next. Go for one another baldheaded in the papers and then +all blows over. Hail fellow well met the next moment. + +—Ah, listen to this for God’ sake, Ned Lambert pleaded. _Or again if we +but climb the serried mountain peaks..._ + +—Bombast! the professor broke in testily. Enough of the inflated +windbag! + +—_Peaks_, Ned Lambert went on, _towering high on high, to bathe our +souls, as it were..._ + +—Bathe his lips, Mr Dedalus said. Blessed and eternal God! Yes? Is he +taking anything for it? + +_—As ’twere, in the peerless panorama of Ireland’s portfolio, +unmatched, despite their wellpraised prototypes in other vaunted prize +regions, for very beauty, of bosky grove and undulating plain and +luscious pastureland of vernal green, steeped in the transcendent +translucent glow of our mild mysterious Irish twilight..._ + +HIS NATIVE DORIC + + +—The moon, professor MacHugh said. He forgot Hamlet. + +_—That mantles the vista far and wide and wait till the glowing orb of +the moon shine forth to irradiate her silver effulgence..._ + +—O! Mr Dedalus cried, giving vent to a hopeless groan. Shite and +onions! That’ll do, Ned. Life is too short. + +He took off his silk hat and, blowing out impatiently his bushy +moustache, welshcombed his hair with raking fingers. + +Ned Lambert tossed the newspaper aside, chuckling with delight. An +instant after a hoarse bark of laughter burst over professor MacHugh’s +unshaven blackspectacled face. + +—Doughy Daw! he cried. + +WHAT WETHERUP SAID + + +All very fine to jeer at it now in cold print but it goes down like hot +cake that stuff. He was in the bakery line too, wasn’t he? Why they +call him Doughy Daw. Feathered his nest well anyhow. Daughter engaged +to that chap in the inland revenue office with the motor. Hooked that +nicely. Entertainments. Open house. Big blowout. Wetherup always said +that. Get a grip of them by the stomach. + +The inner door was opened violently and a scarlet beaked face, crested +by a comb of feathery hair, thrust itself in. The bold blue eyes stared +about them and the harsh voice asked: + +—What is it? + +—And here comes the sham squire himself! professor MacHugh said +grandly. + +—Getonouthat, you bloody old pedagogue! the editor said in recognition. + +—Come, Ned, Mr Dedalus said, putting on his hat. I must get a drink +after that. + +—Drink! the editor cried. No drinks served before mass. + +—Quite right too, Mr Dedalus said, going out. Come on, Ned. + +Ned Lambert sidled down from the table. The editor’s blue eyes roved +towards Mr Bloom’s face, shadowed by a smile. + +—Will you join us, Myles? Ned Lambert asked. + +MEMORABLE BATTLES RECALLED + + +—North Cork militia! the editor cried, striding to the mantelpiece. We +won every time! North Cork and Spanish officers! + +—Where was that, Myles? Ned Lambert asked with a reflective glance at +his toecaps. + +—In Ohio! the editor shouted. + +—So it was, begad, Ned Lambert agreed. + +Passing out he whispered to J. J. O’Molloy: + +—Incipient jigs. Sad case. + +—Ohio! the editor crowed in high treble from his uplifted scarlet face. +My Ohio! + +—A perfect cretic! the professor said. Long, short and long. + +O, HARP EOLIAN! + + +He took a reel of dental floss from his waistcoat pocket and, breaking +off a piece, twanged it smartly between two and two of his resonant +unwashed teeth. + +—Bingbang, bangbang. + +Mr Bloom, seeing the coast clear, made for the inner door. + +—Just a moment, Mr Crawford, he said. I just want to phone about an ad. + +He went in. + +—What about that leader this evening? professor MacHugh asked, coming +to the editor and laying a firm hand on his shoulder. + +—That’ll be all right, Myles Crawford said more calmly. Never you fret. +Hello, Jack. That’s all right. + +—Good day, Myles, J. J. O’Molloy said, letting the pages he held slip +limply back on the file. Is that Canada swindle case on today? + +The telephone whirred inside. + +—Twentyeight... No, twenty... Double four... Yes. + +SPOT THE WINNER + + +Lenehan came out of the inner office with _Sport_’s tissues. + +—Who wants a dead cert for the Gold cup? he asked. Sceptre with O. +Madden up. + +He tossed the tissues on to the table. + +Screams of newsboys barefoot in the hall rushed near and the door was +flung open. + +—Hush, Lenehan said. I hear feetstoops. + +Professor MacHugh strode across the room and seized the cringing urchin +by the collar as the others scampered out of the hall and down the +steps. The tissues rustled up in the draught, floated softly in the air +blue scrawls and under the table came to earth. + +—It wasn’t me, sir. It was the big fellow shoved me, sir. + +—Throw him out and shut the door, the editor said. There’s a hurricane +blowing. + +Lenehan began to paw the tissues up from the floor, grunting as he +stooped twice. + +—Waiting for the racing special, sir, the newsboy said. It was Pat +Farrell shoved me, sir. + +He pointed to two faces peering in round the doorframe. + +—Him, sir. + +—Out of this with you, professor MacHugh said gruffly. + +He hustled the boy out and banged the door to. + +J. J. O’Molloy turned the files crackingly over, murmuring, seeking: + +—Continued on page six, column four. + +—Yes, _Evening Telegraph_ here, Mr Bloom phoned from the inner office. +Is the boss...? Yes, _Telegraph_... To where? Aha! Which auction +rooms?... Aha! I see... Right. I’ll catch him. + +A COLLISION ENSUES + + +The bell whirred again as he rang off. He came in quickly and bumped +against Lenehan who was struggling up with the second tissue. + +—_Pardon, monsieur_, Lenehan said, clutching him for an instant and +making a grimace. + +—My fault, Mr Bloom said, suffering his grip. Are you hurt? I’m in a +hurry. + +—Knee, Lenehan said. + +He made a comic face and whined, rubbing his knee: + +—The accumulation of the _anno Domini_. + +—Sorry, Mr Bloom said. + +He went to the door and, holding it ajar, paused. J. J. O’Molloy +slapped the heavy pages over. The noise of two shrill voices, a +mouthorgan, echoed in the bare hallway from the newsboys squatted on +the doorsteps: + + We are the boys of Wexford + Who fought with heart and hand. + +EXIT BLOOM + + +—I’m just running round to Bachelor’s walk, Mr Bloom said, about this +ad of Keyes’s. Want to fix it up. They tell me he’s round there in +Dillon’s. + +He looked indecisively for a moment at their faces. The editor who, +leaning against the mantelshelf, had propped his head on his hand, +suddenly stretched forth an arm amply. + +—Begone! he said. The world is before you. + +—Back in no time, Mr Bloom said, hurrying out. + +J. J. O’Molloy took the tissues from Lenehan’s hand and read them, +blowing them apart gently, without comment. + +—He’ll get that advertisement, the professor said, staring through his +blackrimmed spectacles over the crossblind. Look at the young scamps +after him. + +—Show. Where? Lenehan cried, running to the window. + +A STREET CORTÈGE + + +Both smiled over the crossblind at the file of capering newsboys in Mr +Bloom’s wake, the last zigzagging white on the breeze a mocking kite, a +tail of white bowknots. + +—Look at the young guttersnipe behind him hue and cry, Lenehan said, +and you’ll kick. O, my rib risible! Taking off his flat spaugs and the +walk. Small nines. Steal upon larks. + +He began to mazurka in swift caricature across the floor on sliding +feet past the fireplace to J. J. O’Molloy who placed the tissues in his +receiving hands. + +—What’s that? Myles Crawford said with a start. Where are the other two +gone? + +—Who? the professor said, turning. They’re gone round to the Oval for a +drink. Paddy Hooper is there with Jack Hall. Came over last night. + +—Come on then, Myles Crawford said. Where’s my hat? + +He walked jerkily into the office behind, parting the vent of his +jacket, jingling his keys in his back pocket. They jingled then in the +air and against the wood as he locked his desk drawer. + +—He’s pretty well on, professor MacHugh said in a low voice. + +—Seems to be, J. J. O’Molloy said, taking out a cigarettecase in +murmuring meditation, but it is not always as it seems. Who has the +most matches? + +THE CALUMET OF PEACE + + +He offered a cigarette to the professor and took one himself. Lenehan +promptly struck a match for them and lit their cigarettes in turn. J. +J. O’Molloy opened his case again and offered it. + +—_Thanky vous_, Lenehan said, helping himself. + +The editor came from the inner office, a straw hat awry on his brow. He +declaimed in song, pointing sternly at professor MacHugh: + + ’Twas rank and fame that tempted thee, + ’Twas empire charmed thy heart. + +The professor grinned, locking his long lips. + +—Eh? You bloody old Roman empire? Myles Crawford said. + +He took a cigarette from the open case. Lenehan, lighting it for him +with quick grace, said: + +—Silence for my brandnew riddle! + +—_Imperium romanum_, J. J. O’Molloy said gently. It sounds nobler than +British or Brixton. The word reminds one somehow of fat in the fire. + +Myles Crawford blew his first puff violently towards the ceiling. + +—That’s it, he said. We are the fat. You and I are the fat in the fire. +We haven’t got the chance of a snowball in hell. + +THE GRANDEUR THAT WAS ROME + + +—Wait a moment, professor MacHugh said, raising two quiet claws. We +mustn’t be led away by words, by sounds of words. We think of Rome, +imperial, imperious, imperative. + +He extended elocutionary arms from frayed stained shirtcuffs, pausing: + +—What was their civilisation? Vast, I allow: but vile. Cloacae: sewers. +The Jews in the wilderness and on the mountaintop said: _It is meet to +be here. Let us build an altar to Jehovah_. The Roman, like the +Englishman who follows in his footsteps, brought to every new shore on +which he set his foot (on our shore he never set it) only his cloacal +obsession. He gazed about him in his toga and he said: _It is meet to +be here. Let us construct a watercloset._ + +—Which they accordingly did do, Lenehan said. Our old ancient +ancestors, as we read in the first chapter of Guinness’s, were partial +to the running stream. + +—They were nature’s gentlemen, J. J. O’Molloy murmured. But we have +also Roman law. + +—And Pontius Pilate is its prophet, professor MacHugh responded. + +—Do you know that story about chief baron Palles? J. J. O’Molloy asked. +It was at the royal university dinner. Everything was going swimmingly +... + +—First my riddle, Lenehan said. Are you ready? + +Mr O’Madden Burke, tall in copious grey of Donegal tweed, came in from +the hallway. Stephen Dedalus, behind him, uncovered as he entered. + +—_Entrez, mes enfants!_ Lenehan cried. + +—I escort a suppliant, Mr O’Madden Burke said melodiously. Youth led by +Experience visits Notoriety. + +—How do you do? the editor said, holding out a hand. Come in. Your +governor is just gone. + +??? + + +Lenehan said to all: + +—Silence! What opera resembles a railwayline? Reflect, ponder, +excogitate, reply. + +Stephen handed over the typed sheets, pointing to the title and +signature. + +—Who? the editor asked. + +Bit torn off. + +—Mr Garrett Deasy, Stephen said. + +—That old pelters, the editor said. Who tore it? Was he short taken? + + On swift sail flaming + From storm and south + He comes, pale vampire, + Mouth to my mouth. + +—Good day, Stephen, the professor said, coming to peer over their +shoulders. Foot and mouth? Are you turned...? + +Bullockbefriending bard. + +SHINDY IN WELLKNOWN RESTAURANT + + +—Good day, sir, Stephen answered blushing. The letter is not mine. Mr +Garrett Deasy asked me to... + +—O, I know him, Myles Crawford said, and I knew his wife too. The +bloodiest old tartar God ever made. By Jesus, she had the foot and +mouth disease and no mistake! The night she threw the soup in the +waiter’s face in the Star and Garter. Oho! + +A woman brought sin into the world. For Helen, the runaway wife of +Menelaus, ten years the Greeks. O’Rourke, prince of Breffni. + +—Is he a widower? Stephen asked. + +—Ay, a grass one, Myles Crawford said, his eye running down the +typescript. Emperor’s horses. Habsburg. An Irishman saved his life on +the ramparts of Vienna. Don’t you forget! Maximilian Karl O’Donnell, +graf von Tirconnell in Ireland. Sent his heir over to make the king an +Austrian fieldmarshal now. Going to be trouble there one day. Wild +geese. O yes, every time. Don’t you forget that! + +—The moot point is did he forget it, J. J. O’Molloy said quietly, +turning a horseshoe paperweight. Saving princes is a thank you job. + +Professor MacHugh turned on him. + +—And if not? he said. + +—I’ll tell you how it was, Myles Crawford began. A Hungarian it was one +day... + +LOST CAUSES NOBLE MARQUESS MENTIONED + + +—We were always loyal to lost causes, the professor said. Success for +us is the death of the intellect and of the imagination. We were never +loyal to the successful. We serve them. I teach the blatant Latin +language. I speak the tongue of a race the acme of whose mentality is +the maxim: time is money. Material domination. _Dominus!_ Lord! Where +is the spirituality? Lord Jesus? Lord Salisbury? A sofa in a westend +club. But the Greek! + +KYRIE ELEISON! + + +A smile of light brightened his darkrimmed eyes, lengthened his long +lips. + +—The Greek! he said again. _Kyrios!_ Shining word! The vowels the +Semite and the Saxon know not. _Kyrie!_ The radiance of the intellect. +I ought to profess Greek, the language of the mind. _Kyrie eleison!_ +The closetmaker and the cloacamaker will never be lords of our spirit. +We are liege subjects of the catholic chivalry of Europe that foundered +at Trafalgar and of the empire of the spirit, not an _imperium,_ that +went under with the Athenian fleets at Aegospotami. Yes, yes. They went +under. Pyrrhus, misled by an oracle, made a last attempt to retrieve +the fortunes of Greece. Loyal to a lost cause. + +He strode away from them towards the window. + +—They went forth to battle, Mr O’Madden Burke said greyly, but they +always fell. + +—Boohoo! Lenehan wept with a little noise. Owing to a brick received in +the latter half of the _matinée_. Poor, poor, poor Pyrrhus! + +He whispered then near Stephen’s ear: + +LENEHAN’S LIMERICK + + +—_There’s a ponderous pundit MacHugh +Who wears goggles of ebony hue. +As he mostly sees double +To wear them why trouble? +I can’t see the Joe Miller. Can you?_ + + +In mourning for Sallust, Mulligan says. Whose mother is beastly dead. + +Myles Crawford crammed the sheets into a sidepocket. + +—That’ll be all right, he said. I’ll read the rest after. That’ll be +all right. + +Lenehan extended his hands in protest. + +—But my riddle! he said. What opera is like a railwayline? + +—Opera? Mr O’Madden Burke’s sphinx face reriddled. + +Lenehan announced gladly: + +—_The Rose of Castile_. See the wheeze? Rows of cast steel. Gee! + +He poked Mr O’Madden Burke mildly in the spleen. Mr O’Madden Burke fell +back with grace on his umbrella, feigning a gasp. + +—Help! he sighed. I feel a strong weakness. + +Lenehan, rising to tiptoe, fanned his face rapidly with the rustling +tissues. + +The professor, returning by way of the files, swept his hand across +Stephen’s and Mr O’Madden Burke’s loose ties. + +—Paris, past and present, he said. You look like communards. + +—Like fellows who had blown up the Bastile, J. J. O’Molloy said in +quiet mockery. Or was it you shot the lord lieutenant of Finland +between you? You look as though you had done the deed. General +Bobrikoff. + +OMNIUM GATHERUM + + +—We were only thinking about it, Stephen said. + +—All the talents, Myles Crawford said. Law, the classics... + +—The turf, Lenehan put in. + +—Literature, the press. + +—If Bloom were here, the professor said. The gentle art of +advertisement. + +—And Madam Bloom, Mr O’Madden Burke added. The vocal muse. Dublin’s +prime favourite. + +Lenehan gave a loud cough. + +—Ahem! he said very softly. O, for a fresh of breath air! I caught a +cold in the park. The gate was open. + +“YOU CAN DO IT!” + + +The editor laid a nervous hand on Stephen’s shoulder. + +—I want you to write something for me, he said. Something with a bite +in it. You can do it. I see it in your face. _In the lexicon of +youth_... + +See it in your face. See it in your eye. Lazy idle little schemer. + +—Foot and mouth disease! the editor cried in scornful invective. Great +nationalist meeting in Borris-in-Ossory. All balls! Bulldosing the +public! Give them something with a bite in it. Put us all into it, damn +its soul. Father, Son and Holy Ghost and Jakes M’Carthy. + +—We can all supply mental pabulum, Mr O’Madden Burke said. + +Stephen raised his eyes to the bold unheeding stare. + +—He wants you for the pressgang, J. J. O’Molloy said. + +THE GREAT GALLAHER + + +—You can do it, Myles Crawford repeated, clenching his hand in +emphasis. Wait a minute. We’ll paralyse Europe as Ignatius Gallaher +used to say when he was on the shaughraun, doing billiardmarking in the +Clarence. Gallaher, that was a pressman for you. That was a pen. You +know how he made his mark? I’ll tell you. That was the smartest piece +of journalism ever known. That was in eightyone, sixth of May, time of +the invincibles, murder in the Phoenix park, before you were born, I +suppose. I’ll show you. + +He pushed past them to the files. + +—Look at here, he said turning. The _New York World_ cabled for a +special. Remember that time? + +Professor MacHugh nodded. + +—_New York World_, the editor said, excitedly pushing back his straw +hat. Where it took place. Tim Kelly, or Kavanagh I mean. Joe Brady and +the rest of them. Where Skin-the-Goat drove the car. Whole route, see? + +—Skin-the-Goat, Mr O’Madden Burke said. Fitzharris. He has that +cabman’s shelter, they say, down there at Butt bridge. Holohan told me. +You know Holohan? + +—Hop and carry one, is it? Myles Crawford said. + +—And poor Gumley is down there too, so he told me, minding stones for +the corporation. A night watchman. + +Stephen turned in surprise. + +—Gumley? he said. You don’t say so? A friend of my father’s, is it? + +—Never mind Gumley, Myles Crawford cried angrily. Let Gumley mind the +stones, see they don’t run away. Look at here. What did Ignatius +Gallaher do? I’ll tell you. Inspiration of genius. Cabled right away. +Have you _Weekly Freeman_ of 17 March? Right. Have you got that? + +He flung back pages of the files and stuck his finger on a point. + +—Take page four, advertisement for Bransome’s coffee, let us say. Have +you got that? Right. + +The telephone whirred. + +A DISTANT VOICE + + +—I’ll answer it, the professor said, going. + +—B is parkgate. Good. + +His finger leaped and struck point after point, vibrating. + +—T is viceregal lodge. C is where murder took place. K is Knockmaroon +gate. + +The loose flesh of his neck shook like a cock’s wattles. An illstarched +dicky jutted up and with a rude gesture he thrust it back into his +waistcoat. + +—Hello? _Evening Telegraph_ here... Hello?... Who’s there?... Yes... +Yes... Yes. + +—F to P is the route Skin-the-Goat drove the car for an alibi, +Inchicore, Roundtown, Windy Arbour, Palmerston Park, Ranelagh. F.A.B.P. +Got that? X is Davy’s publichouse in upper Leeson street. + +The professor came to the inner door. + +—Bloom is at the telephone, he said. + +—Tell him go to hell, the editor said promptly. X is Davy’s +publichouse, see? + +CLEVER, VERY + + +—Clever, Lenehan said. Very. + +—Gave it to them on a hot plate, Myles Crawford said, the whole bloody +history. + +Nightmare from which you will never awake. + +—I saw it, the editor said proudly. I was present. Dick Adams, the +besthearted bloody Corkman the Lord ever put the breath of life in, and +myself. + +Lenehan bowed to a shape of air, announcing: + +—Madam, I’m Adam. And Able was I ere I saw Elba. + +—History! Myles Crawford cried. The Old Woman of Prince’s street was +there first. There was weeping and gnashing of teeth over that. Out of +an advertisement. Gregor Grey made the design for it. That gave him the +leg up. Then Paddy Hooper worked Tay Pay who took him on to the _Star._ +Now he’s got in with Blumenfeld. That’s press. That’s talent. Pyatt! He +was all their daddies! + +—The father of scare journalism, Lenehan confirmed, and the +brother-in-law of Chris Callinan. + +—Hello?... Are you there?... Yes, he’s here still. Come across +yourself. + +—Where do you find a pressman like that now, eh? the editor cried. + +He flung the pages down. + +—Clamn dever, Lenehan said to Mr O’Madden Burke. + +—Very smart, Mr O’Madden Burke said. + +Professor MacHugh came from the inner office. + +—Talking about the invincibles, he said, did you see that some hawkers +were up before the recorder... + +—O yes, J. J. O’Molloy said eagerly. Lady Dudley was walking home +through the park to see all the trees that were blown down by that +cyclone last year and thought she’d buy a view of Dublin. And it turned +out to be a commemoration postcard of Joe Brady or Number One or +Skin-the-Goat. Right outside the viceregal lodge, imagine! + +—They’re only in the hook and eye department, Myles Crawford said. +Psha! Press and the bar! Where have you a man now at the bar like those +fellows, like Whiteside, like Isaac Butt, like silvertongued O’Hagan. +Eh? Ah, bloody nonsense. Psha! Only in the halfpenny place. + +His mouth continued to twitch unspeaking in nervous curls of disdain. + +Would anyone wish that mouth for her kiss? How do you know? Why did you +write it then? + +RHYMES AND REASONS + + +Mouth, south. Is the mouth south someway? Or the south a mouth? Must be +some. South, pout, out, shout, drouth. Rhymes: two men dressed the +same, looking the same, two by two. + + ........................ la tua pace + .................. che parlar ti piace + Mentre che il vento, come fa, si tace. + +He saw them three by three, approaching girls, in green, in rose, in +russet, entwining, _per l’aer perso_, in mauve, in purple, _quella +pacifica oriafiamma_, gold of oriflamme, _di rimirar fè più ardenti._ +But I old men, penitent, leadenfooted, underdarkneath the night: mouth +south: tomb womb. + +—Speak up for yourself, Mr O’Madden Burke said. + +SUFFICIENT FOR THE DAY... + + +J. J. O’Molloy, smiling palely, took up the gage. + +—My dear Myles, he said, flinging his cigarette aside, you put a false +construction on my words. I hold no brief, as at present advised, for +the third profession _qua_ profession but your Cork legs are running +away with you. Why not bring in Henry Grattan and Flood and Demosthenes +and Edmund Burke? Ignatius Gallaher we all know and his Chapelizod +boss, Harmsworth of the farthing press, and his American cousin of the +Bowery guttersheet not to mention _Paddy Kelly’s Budget_, _Pue’s +Occurrences_ and our watchful friend _The Skibbereen Eagle_. Why bring +in a master of forensic eloquence like Whiteside? Sufficient for the +day is the newspaper thereof. + +LINKS WITH BYGONE DAYS OF YORE + + +—Grattan and Flood wrote for this very paper, the editor cried in his +face. Irish volunteers. Where are you now? Established 1763. Dr Lucas. +Who have you now like John Philpot Curran? Psha! + +—Well, J. J. O’Molloy said, Bushe K.C., for example. + +—Bushe? the editor said. Well, yes: Bushe, yes. He has a strain of it +in his blood. Kendal Bushe or I mean Seymour Bushe. + +—He would have been on the bench long ago, the professor said, only for +.... But no matter. + +J. J. O’Molloy turned to Stephen and said quietly and slowly: + +—One of the most polished periods I think I ever listened to in my life +fell from the lips of Seymour Bushe. It was in that case of fratricide, +the Childs murder case. Bushe defended him. + + _And in the porches of mine ear did pour._ + +By the way how did he find that out? He died in his sleep. Or the other +story, beast with two backs? + +—What was that? the professor asked. + +ITALIA, MAGISTRA ARTIUM + + +—He spoke on the law of evidence, J. J. O’Molloy said, of Roman justice +as contrasted with the earlier Mosaic code, the _lex talionis_. And he +cited the Moses of Michelangelo in the vatican. + +—Ha. + +—A few wellchosen words, Lenehan prefaced. Silence! + +Pause. J. J. O’Molloy took out his cigarettecase. + +False lull. Something quite ordinary. + +Messenger took out his matchbox thoughtfully and lit his cigar. + +I have often thought since on looking back over that strange time that +it was that small act, trivial in itself, that striking of that match, +that determined the whole aftercourse of both our lives. + +A POLISHED PERIOD + + +J. J. O’Molloy resumed, moulding his words: + +—He said of it: _that stony effigy in frozen music, horned and +terrible, of the human form divine, that eternal symbol of wisdom and +of prophecy which, if aught that the imagination or the hand of +sculptor has wrought in marble of soultransfigured and of +soultransfiguring deserves to live, deserves to live._ + +His slim hand with a wave graced echo and fall. + +—Fine! Myles Crawford said at once. + +—The divine afflatus, Mr O’Madden Burke said. + +—You like it? J. J. O’Molloy asked Stephen. + +Stephen, his blood wooed by grace of language and gesture, blushed. He +took a cigarette from the case. J. J. O’Molloy offered his case to +Myles Crawford. Lenehan lit their cigarettes as before and took his +trophy, saying: + +—Muchibus thankibus. + +A MAN OF HIGH MORALE + + +—Professor Magennis was speaking to me about you, J. J. O’Molloy said +to Stephen. What do you think really of that hermetic crowd, the opal +hush poets: A. E. the mastermystic? That Blavatsky woman started it. +She was a nice old bag of tricks. A. E. has been telling some yankee +interviewer that you came to him in the small hours of the morning to +ask him about planes of consciousness. Magennis thinks you must have +been pulling A. E.’s leg. He is a man of the very highest morale, +Magennis. + +Speaking about me. What did he say? What did he say? What did he say +about me? Don’t ask. + +—No, thanks, professor MacHugh said, waving the cigarettecase aside. +Wait a moment. Let me say one thing. The finest display of oratory I +ever heard was a speech made by John F Taylor at the college historical +society. Mr Justice Fitzgibbon, the present lord justice of appeal, had +spoken and the paper under debate was an essay (new for those days), +advocating the revival of the Irish tongue. + +He turned towards Myles Crawford and said: + +—You know Gerald Fitzgibbon. Then you can imagine the style of his +discourse. + +—He is sitting with Tim Healy, J. J. O’Molloy said, rumour has it, on +the Trinity college estates commission. + +—He is sitting with a sweet thing, Myles Crawford said, in a child’s +frock. Go on. Well? + +—It was the speech, mark you, the professor said, of a finished orator, +full of courteous haughtiness and pouring in chastened diction I will +not say the vials of his wrath but pouring the proud man’s contumely +upon the new movement. It was then a new movement. We were weak, +therefore worthless. + +He closed his long thin lips an instant but, eager to be on, raised an +outspanned hand to his spectacles and, with trembling thumb and +ringfinger touching lightly the black rims, steadied them to a new +focus. + +IMPROMPTU + + +In ferial tone he addressed J. J. O’Molloy: + +—Taylor had come there, you must know, from a sickbed. That he had +prepared his speech I do not believe for there was not even one +shorthandwriter in the hall. His dark lean face had a growth of shaggy +beard round it. He wore a loose white silk neckcloth and altogether he +looked (though he was not) a dying man. + +His gaze turned at once but slowly from J. J. O’Molloy’s towards +Stephen’s face and then bent at once to the ground, seeking. His +unglazed linen collar appeared behind his bent head, soiled by his +withering hair. Still seeking, he said: + +—When Fitzgibbon’s speech had ended John F Taylor rose to reply. +Briefly, as well as I can bring them to mind, his words were these. + +He raised his head firmly. His eyes bethought themselves once more. +Witless shellfish swam in the gross lenses to and fro, seeking outlet. + +He began: + +_—Mr Chairman, ladies and gentlemen: Great was my admiration in +listening to the remarks addressed to the youth of Ireland a moment +since by my learned friend. It seemed to me that I had been transported +into a country far away from this country, into an age remote from this +age, that I stood in ancient Egypt and that I was listening to the +speech of some highpriest of that land addressed to the youthful +Moses._ + +His listeners held their cigarettes poised to hear, their smokes +ascending in frail stalks that flowered with his speech. _And let our +crooked smokes._ Noble words coming. Look out. Could you try your hand +at it yourself? + +_—And it seemed to me that I heard the voice of that Egyptian +highpriest raised in a tone of like haughtiness and like pride. I heard +his words and their meaning was revealed to me._ + +FROM THE FATHERS + + +It was revealed to me that those things are good which yet are +corrupted which neither if they were supremely good nor unless they +were good could be corrupted. Ah, curse you! That’s saint Augustine. + +_—Why will you jews not accept our culture, our religion and our +language? You are a tribe of nomad herdsmen: we are a mighty people. +You have no cities nor no wealth: our cities are hives of humanity and +our galleys, trireme and quadrireme, laden with all manner merchandise +furrow the waters of the known globe. You have but emerged from +primitive conditions: we have a literature, a priesthood, an agelong +history and a polity._ + +Nile. + +Child, man, effigy. + +By the Nilebank the babemaries kneel, cradle of bulrushes: a man supple +in combat: stonehorned, stonebearded, heart of stone. + +_—You pray to a local and obscure idol: our temples, majestic and +mysterious, are the abodes of Isis and Osiris, of Horus and Ammon Ra. +Yours serfdom, awe and humbleness: ours thunder and the seas. Israel is +weak and few are her children: Egypt is an host and terrible are her +arms. Vagrants and daylabourers are you called: the world trembles at +our name._ + +A dumb belch of hunger cleft his speech. He lifted his voice above it +boldly: + +_—But, ladies and gentlemen, had the youthful Moses listened to and +accepted that view of life, had he bowed his head and bowed his will +and bowed his spirit before that arrogant admonition he would never +have brought the chosen people out of their house of bondage, nor +followed the pillar of the cloud by day. He would never have spoken +with the Eternal amid lightnings on Sinai’s mountaintop nor ever have +come down with the light of inspiration shining in his countenance and +bearing in his arms the tables of the law, graven in the language of +the outlaw._ + +He ceased and looked at them, enjoying a silence. + +OMINOUS—FOR HIM! + + +J. J. O’Molloy said not without regret: + +—And yet he died without having entered the land of promise. + +—A—sudden—at—the—moment—though—from—lingering—illness—often—previously— +expectorated—demise, Lenehan added. And with a great future behind him. + +The troop of bare feet was heard rushing along the hallway and +pattering up the staircase. + +—That is oratory, the professor said uncontradicted. + +Gone with the wind. Hosts at Mullaghmast and Tara of the kings. Miles +of ears of porches. The tribune’s words, howled and scattered to the +four winds. A people sheltered within his voice. Dead noise. Akasic +records of all that ever anywhere wherever was. Love and laud him: me +no more. + +I have money. + +—Gentlemen, Stephen said. As the next motion on the agenda paper may I +suggest that the house do now adjourn? + +—You take my breath away. It is not perchance a French compliment? Mr +O’Madden Burke asked. ’Tis the hour, methinks, when the winejug, +metaphorically speaking, is most grateful in Ye ancient hostelry. + +—That it be and hereby is resolutely resolved. All that are in favour +say ay, Lenehan announced. The contrary no. I declare it carried. To +which particular boosing shed...? My casting vote is: Mooney’s! + +He led the way, admonishing: + +—We will sternly refuse to partake of strong waters, will we not? Yes, +we will not. By no manner of means. + +Mr O’Madden Burke, following close, said with an ally’s lunge of his +umbrella: + +—Lay on, Macduff! + +—Chip of the old block! the editor cried, clapping Stephen on the +shoulder. Let us go. Where are those blasted keys? + +He fumbled in his pocket pulling out the crushed typesheets. + +—Foot and mouth. I know. That’ll be all right. That’ll go in. Where are +they? That’s all right. + +He thrust the sheets back and went into the inner office. + +LET US HOPE + + +J. J. O’Molloy, about to follow him in, said quietly to Stephen: + +—I hope you will live to see it published. Myles, one moment. + +He went into the inner office, closing the door behind him. + +—Come along, Stephen, the professor said. That is fine, isn’t it? It +has the prophetic vision. _Fuit Ilium!_ The sack of windy Troy. +Kingdoms of this world. The masters of the Mediterranean are fellaheen +today. + +The first newsboy came pattering down the stairs at their heels and +rushed out into the street, yelling: + +—Racing special! + +Dublin. I have much, much to learn. + +They turned to the left along Abbey street. + +—I have a vision too, Stephen said. + +—Yes? the professor said, skipping to get into step. Crawford will +follow. + +Another newsboy shot past them, yelling as he ran: + +—Racing special! + +DEAR DIRTY DUBLIN + + +Dubliners. + +—Two Dublin vestals, Stephen said, elderly and pious, have lived fifty +and fiftythree years in Fumbally’s lane. + +—Where is that? the professor asked. + +—Off Blackpitts, Stephen said. + +Damp night reeking of hungry dough. Against the wall. Face glistering +tallow under her fustian shawl. Frantic hearts. Akasic records. +Quicker, darlint! + +On now. Dare it. Let there be life. + +—They want to see the views of Dublin from the top of Nelson’s pillar. +They save up three and tenpence in a red tin letterbox moneybox. They +shake out the threepenny bits and sixpences and coax out the pennies +with the blade of a knife. Two and three in silver and one and seven in +coppers. They put on their bonnets and best clothes and take their +umbrellas for fear it may come on to rain. + +—Wise virgins, professor MacHugh said. + +LIFE ON THE RAW + + +—They buy one and fourpenceworth of brawn and four slices of panloaf at +the north city diningrooms in Marlborough street from Miss Kate +Collins, proprietress... They purchase four and twenty ripe plums from +a girl at the foot of Nelson’s pillar to take off the thirst of the +brawn. They give two threepenny bits to the gentleman at the turnstile +and begin to waddle slowly up the winding staircase, grunting, +encouraging each other, afraid of the dark, panting, one asking the +other have you the brawn, praising God and the Blessed Virgin, +threatening to come down, peeping at the airslits. Glory be to God. +They had no idea it was that high. + +Their names are Anne Kearns and Florence MacCabe. Anne Kearns has the +lumbago for which she rubs on Lourdes water, given her by a lady who +got a bottleful from a passionist father. Florence MacCabe takes a +crubeen and a bottle of double X for supper every Saturday. + +—Antithesis, the professor said nodding twice. Vestal virgins. I can +see them. What’s keeping our friend? + +He turned. + +A bevy of scampering newsboys rushed down the steps, scattering in all +directions, yelling, their white papers fluttering. Hard after them +Myles Crawford appeared on the steps, his hat aureoling his scarlet +face, talking with J. J. O’Molloy. + +—Come along, the professor cried, waving his arm. + +He set off again to walk by Stephen’s side. + +RETURN OF BLOOM + + +—Yes, he said. I see them. + +Mr Bloom, breathless, caught in a whirl of wild newsboys near the +offices of the _Irish Catholic_ and _Dublin Penny Journal_, called: + +—Mr Crawford! A moment! + +—_Telegraph_! Racing special! + +—What is it? Myles Crawford said, falling back a pace. + +A newsboy cried in Mr Bloom’s face: + +—Terrible tragedy in Rathmines! A child bit by a bellows! + +INTERVIEW WITH THE EDITOR + + +—Just this ad, Mr Bloom said, pushing through towards the steps, +puffing, and taking the cutting from his pocket. I spoke with Mr Keyes +just now. He’ll give a renewal for two months, he says. After he’ll +see. But he wants a par to call attention in the _Telegraph_ too, the +Saturday pink. And he wants it copied if it’s not too late I told +councillor Nannetti from the _Kilkenny People_. I can have access to it +in the national library. House of keys, don’t you see? His name is +Keyes. It’s a play on the name. But he practically promised he’d give +the renewal. But he wants just a little puff. What will I tell him, Mr +Crawford? + +K.M.A. + + +—Will you tell him he can kiss my arse? Myles Crawford said throwing +out his arm for emphasis. Tell him that straight from the stable. + +A bit nervy. Look out for squalls. All off for a drink. Arm in arm. +Lenehan’s yachting cap on the cadge beyond. Usual blarney. Wonder is +that young Dedalus the moving spirit. Has a good pair of boots on him +today. Last time I saw him he had his heels on view. Been walking in +muck somewhere. Careless chap. What was he doing in Irishtown? + +—Well, Mr Bloom said, his eyes returning, if I can get the design I +suppose it’s worth a short par. He’d give the ad, I think. I’ll tell +him... + +K.M.R.I.A. + + +—He can kiss my royal Irish arse, Myles Crawford cried loudly over his +shoulder. Any time he likes, tell him. + +While Mr Bloom stood weighing the point and about to smile he strode on +jerkily. + +RAISING THE WIND + + +—_Nulla bona_, Jack, he said, raising his hand to his chin. I’m up to +here. I’ve been through the hoop myself. I was looking for a fellow to +back a bill for me no later than last week. Sorry, Jack. You must take +the will for the deed. With a heart and a half if I could raise the +wind anyhow. + +J. J. O’Molloy pulled a long face and walked on silently. They caught +up on the others and walked abreast. + +—When they have eaten the brawn and the bread and wiped their twenty +fingers in the paper the bread was wrapped in they go nearer to the +railings. + +—Something for you, the professor explained to Myles Crawford. Two old +Dublin women on the top of Nelson’s pillar. + +SOME COLUMN!—THAT’S WHAT WADDLER ONE SAID + + +—That’s new, Myles Crawford said. That’s copy. Out for the waxies’ +Dargle. Two old trickies, what? + +—But they are afraid the pillar will fall, Stephen went on. They see +the roofs and argue about where the different churches are: Rathmines’ +blue dome, Adam and Eve’s, saint Laurence O’Toole’s. But it makes them +giddy to look so they pull up their skirts... + +THOSE SLIGHTLY RAMBUNCTIOUS FEMALES + + +—Easy all, Myles Crawford said. No poetic licence. We’re in the +archdiocese here. + +—And settle down on their striped petticoats, peering up at the statue +of the onehandled adulterer. + +—Onehandled adulterer! the professor cried. I like that. I see the +idea. I see what you mean. + +DAMES DONATE DUBLIN’S CITS SPEEDPILLS VELOCITOUS AEROLITHS, BELIEF + + +—It gives them a crick in their necks, Stephen said, and they are too +tired to look up or down or to speak. They put the bag of plums between +them and eat the plums out of it, one after another, wiping off with +their handkerchiefs the plumjuice that dribbles out of their mouths and +spitting the plumstones slowly out between the railings. + +He gave a sudden loud young laugh as a close. Lenehan and Mr O’Madden +Burke, hearing, turned, beckoned and led on across towards Mooney’s. + +—Finished? Myles Crawford said. So long as they do no worse. + +SOPHIST WALLOPS HAUGHTY HELEN SQUARE ON PROBOSCIS. SPARTANS GNASH +MOLARS. ITHACANS VOW PEN IS CHAMP. + + +—You remind me of Antisthenes, the professor said, a disciple of +Gorgias, the sophist. It is said of him that none could tell if he were +bitterer against others or against himself. He was the son of a noble +and a bondwoman. And he wrote a book in which he took away the palm of +beauty from Argive Helen and handed it to poor Penelope. + +Poor Penelope. Penelope Rich. + +They made ready to cross O’Connell street. + +HELLO THERE, CENTRAL! + + +At various points along the eight lines tramcars with motionless +trolleys stood in their tracks, bound for or from Rathmines, +Rathfarnham, Blackrock, Kingstown and Dalkey, Sandymount Green, +Ringsend and Sandymount Tower, Donnybrook, Palmerston Park and Upper +Rathmines, all still, becalmed in short circuit. Hackney cars, cabs, +delivery waggons, mailvans, private broughams, aerated mineral water +floats with rattling crates of bottles, rattled, rolled, horsedrawn, +rapidly. + +WHAT?—AND LIKEWISE—WHERE? + + +—But what do you call it? Myles Crawford asked. Where did they get the +plums? + +VIRGILIAN, SAYS PEDAGOGUE. SOPHOMORE PLUMPS FOR OLD MAN MOSES. + + +—Call it, wait, the professor said, opening his long lips wide to +reflect. Call it, let me see. Call it: _deus nobis hæc otia fecit._ + +—No, Stephen said. I call it _A Pisgah Sight of Palestine_ or _The +Parable of The Plums._ + +—I see, the professor said. + +He laughed richly. + +—I see, he said again with new pleasure. Moses and the promised land. +We gave him that idea, he added to J. J. O’Molloy. + +HORATIO IS CYNOSURE THIS FAIR JUNE DAY + + +J. J. O’Molloy sent a weary sidelong glance towards the statue and held +his peace. + +—I see, the professor said. + +He halted on sir John Gray’s pavement island and peered aloft at Nelson +through the meshes of his wry smile. + +DIMINISHED DIGITS PROVE TOO TITILLATING FOR FRISKY FRUMPS. ANNE +WIMBLES, FLO WANGLES—YET CAN YOU BLAME THEM? + + +—Onehandled adulterer, he said smiling grimly. That tickles me, I must +say. + +—Tickled the old ones too, Myles Crawford said, if the God Almighty’s +truth was known. + + + + +[ 8 ] + + +Pineapple rock, lemon platt, butter scotch. A sugarsticky girl +shovelling scoopfuls of creams for a christian brother. Some school +treat. Bad for their tummies. Lozenge and comfit manufacturer to His +Majesty the King. God. Save. Our. Sitting on his throne sucking red +jujubes white. + +A sombre Y. M. C. A. young man, watchful among the warm sweet fumes of +Graham Lemon’s, placed a throwaway in a hand of Mr Bloom. + +Heart to heart talks. + +Bloo... Me? No. + +Blood of the Lamb. + +His slow feet walked him riverward, reading. Are you saved? All are +washed in the blood of the lamb. God wants blood victim. Birth, hymen, +martyr, war, foundation of a building, sacrifice, kidney burntoffering, +druids’ altars. Elijah is coming. Dr John Alexander Dowie restorer of +the church in Zion is coming. + + Is coming! Is coming!! Is coming!!! + All heartily welcome. + +Paying game. Torry and Alexander last year. Polygamy. His wife will put +the stopper on that. Where was that ad some Birmingham firm the +luminous crucifix. Our Saviour. Wake up in the dead of night and see +him on the wall, hanging. Pepper’s ghost idea. Iron Nails Ran In. + +Phosphorus it must be done with. If you leave a bit of codfish for +instance. I could see the bluey silver over it. Night I went down to +the pantry in the kitchen. Don’t like all the smells in it waiting to +rush out. What was it she wanted? The Malaga raisins. Thinking of +Spain. Before Rudy was born. The phosphorescence, that bluey greeny. +Very good for the brain. + +From Butler’s monument house corner he glanced along Bachelor’s walk. +Dedalus’ daughter there still outside Dillon’s auctionrooms. Must be +selling off some old furniture. Knew her eyes at once from the father. +Lobbing about waiting for him. Home always breaks up when the mother +goes. Fifteen children he had. Birth every year almost. That’s in their +theology or the priest won’t give the poor woman the confession, the +absolution. Increase and multiply. Did you ever hear such an idea? Eat +you out of house and home. No families themselves to feed. Living on +the fat of the land. Their butteries and larders. I’d like to see them +do the black fast Yom Kippur. Crossbuns. One meal and a collation for +fear he’d collapse on the altar. A housekeeper of one of those fellows +if you could pick it out of her. Never pick it out of her. Like getting +£. s. d. out of him. Does himself well. No guests. All for number one. +Watching his water. Bring your own bread and butter. His reverence: +mum’s the word. + +Good Lord, that poor child’s dress is in flitters. Underfed she looks +too. Potatoes and marge, marge and potatoes. It’s after they feel it. +Proof of the pudding. Undermines the constitution. + +As he set foot on O’Connell bridge a puffball of smoke plumed up from +the parapet. Brewery barge with export stout. England. Sea air sours +it, I heard. Be interesting some day get a pass through Hancock to see +the brewery. Regular world in itself. Vats of porter wonderful. Rats +get in too. Drink themselves bloated as big as a collie floating. Dead +drunk on the porter. Drink till they puke again like christians. +Imagine drinking that! Rats: vats. Well, of course, if we knew all the +things. + +Looking down he saw flapping strongly, wheeling between the gaunt +quaywalls, gulls. Rough weather outside. If I threw myself down? Reuben +J’s son must have swallowed a good bellyful of that sewage. One and +eightpence too much. Hhhhm. It’s the droll way he comes out with the +things. Knows how to tell a story too. + +They wheeled lower. Looking for grub. Wait. + +He threw down among them a crumpled paper ball. Elijah thirtytwo feet +per sec is com. Not a bit. The ball bobbed unheeded on the wake of +swells, floated under by the bridgepiers. Not such damn fools. Also the +day I threw that stale cake out of the Erin’s King picked it up in the +wake fifty yards astern. Live by their wits. They wheeled, flapping. + + The hungry famished gull + Flaps o’er the waters dull. + +That is how poets write, the similar sounds. But then Shakespeare has +no rhymes: blank verse. The flow of the language it is. The thoughts. +Solemn. + + Hamlet, I am thy father’s spirit + Doomed for a certain time to walk the earth. + + —Two apples a penny! Two for a penny! + +His gaze passed over the glazed apples serried on her stand. +Australians they must be this time of year. Shiny peels: polishes them +up with a rag or a handkerchief. + +Wait. Those poor birds. + +He halted again and bought from the old applewoman two Banbury cakes +for a penny and broke the brittle paste and threw its fragments down +into the Liffey. See that? The gulls swooped silently, two, then all +from their heights, pouncing on prey. Gone. Every morsel. + +Aware of their greed and cunning he shook the powdery crumb from his +hands. They never expected that. Manna. Live on fish, fishy flesh they +have, all seabirds, gulls, seagoose. Swans from Anna Liffey swim down +here sometimes to preen themselves. No accounting for tastes. Wonder +what kind is swanmeat. Robinson Crusoe had to live on them. + +They wheeled flapping weakly. I’m not going to throw any more. Penny +quite enough. Lot of thanks I get. Not even a caw. They spread foot and +mouth disease too. If you cram a turkey say on chestnutmeal it tastes +like that. Eat pig like pig. But then why is it that saltwater fish are +not salty? How is that? + +His eyes sought answer from the river and saw a rowboat rock at anchor +on the treacly swells lazily its plastered board. + + Kino’s + 11/— + Trousers + +Good idea that. Wonder if he pays rent to the corporation. How can you +own water really? It’s always flowing in a stream, never the same, +which in the stream of life we trace. Because life is a stream. All +kinds of places are good for ads. That quack doctor for the clap used +to be stuck up in all the greenhouses. Never see it now. Strictly +confidential. Dr Hy Franks. Didn’t cost him a red like Maginni the +dancing master self advertisement. Got fellows to stick them up or +stick them up himself for that matter on the q. t. running in to loosen +a button. Flybynight. Just the place too. POST NO BILLS. POST 110 +PILLS. Some chap with a dose burning him. + +If he...? + +O! + +Eh? + +No... No. + +No, no. I don’t believe it. He wouldn’t surely? + +No, no. + +Mr Bloom moved forward, raising his troubled eyes. Think no more about +that. After one. Timeball on the ballastoffice is down. Dunsink time. +Fascinating little book that is of sir Robert Ball’s. Parallax. I never +exactly understood. There’s a priest. Could ask him. Par it’s Greek: +parallel, parallax. Met him pike hoses she called it till I told her +about the transmigration. O rocks! + +Mr Bloom smiled O rocks at two windows of the ballastoffice. She’s +right after all. Only big words for ordinary things on account of the +sound. She’s not exactly witty. Can be rude too. Blurt out what I was +thinking. Still, I don’t know. She used to say Ben Dollard had a base +barreltone voice. He has legs like barrels and you’d think he was +singing into a barrel. Now, isn’t that wit. They used to call him big +Ben. Not half as witty as calling him base barreltone. Appetite like an +albatross. Get outside of a baron of beef. Powerful man he was at +stowing away number one Bass. Barrel of Bass. See? It all works out. + +A procession of whitesmocked sandwichmen marched slowly towards him +along the gutter, scarlet sashes across their boards. Bargains. Like +that priest they are this morning: we have sinned: we have suffered. He +read the scarlet letters on their five tall white hats: H. E. L. Y. S. +Wisdom Hely’s. Y lagging behind drew a chunk of bread from under his +foreboard, crammed it into his mouth and munched as he walked. Our +staple food. Three bob a day, walking along the gutters, street after +street. Just keep skin and bone together, bread and skilly. They are +not Boyl: no, M’Glade’s men. Doesn’t bring in any business either. I +suggested to him about a transparent showcart with two smart girls +sitting inside writing letters, copybooks, envelopes, blottingpaper. I +bet that would have caught on. Smart girls writing something catch the +eye at once. Everyone dying to know what she’s writing. Get twenty of +them round you if you stare at nothing. Have a finger in the pie. Women +too. Curiosity. Pillar of salt. Wouldn’t have it of course because he +didn’t think of it himself first. Or the inkbottle I suggested with a +false stain of black celluloid. His ideas for ads like Plumtree’s +potted under the obituaries, cold meat department. You can’t lick ’em. +What? Our envelopes. Hello, Jones, where are you going? Can’t stop, +Robinson, I am hastening to purchase the only reliable inkeraser +_Kansell,_ sold by Hely’s Ltd, 85 Dame street. Well out of that ruck I +am. Devil of a job it was collecting accounts of those convents. +Tranquilla convent. That was a nice nun there, really sweet face. +Wimple suited her small head. Sister? Sister? I am sure she was crossed +in love by her eyes. Very hard to bargain with that sort of a woman. I +disturbed her at her devotions that morning. But glad to communicate +with the outside world. Our great day, she said. Feast of Our Lady of +Mount Carmel. Sweet name too: caramel. She knew I, I think she knew by +the way she. If she had married she would have changed. I suppose they +really were short of money. Fried everything in the best butter all the +same. No lard for them. My heart’s broke eating dripping. They like +buttering themselves in and out. Molly tasting it, her veil up. Sister? +Pat Claffey, the pawnbroker’s daughter. It was a nun they say invented +barbed wire. + +He crossed Westmoreland street when apostrophe S had plodded by. Rover +cycleshop. Those races are on today. How long ago is that? Year Phil +Gilligan died. We were in Lombard street west. Wait: was in Thom’s. Got +the job in Wisdom Hely’s year we married. Six years. Ten years ago: +ninetyfour he died yes that’s right the big fire at Arnott’s. Val +Dillon was lord mayor. The Glencree dinner. Alderman Robert O’Reilly +emptying the port into his soup before the flag fell. Bobbob lapping it +for the inner alderman. Couldn’t hear what the band played. For what we +have already received may the Lord make us. Milly was a kiddy then. +Molly had that elephantgrey dress with the braided frogs. Mantailored +with selfcovered buttons. She didn’t like it because I sprained my +ankle first day she wore choir picnic at the Sugarloaf. As if that. Old +Goodwin’s tall hat done up with some sticky stuff. Flies’ picnic too. +Never put a dress on her back like it. Fitted her like a glove, +shoulders and hips. Just beginning to plump it out well. Rabbitpie we +had that day. People looking after her. + +Happy. Happier then. Snug little room that was with the red wallpaper. +Dockrell’s, one and ninepence a dozen. Milly’s tubbing night. American +soap I bought: elderflower. Cosy smell of her bathwater. Funny she +looked soaped all over. Shapely too. Now photography. Poor papa’s +daguerreotype atelier he told me of. Hereditary taste. + +He walked along the curbstone. + +Stream of life. What was the name of that priestylooking chap was +always squinting in when he passed? Weak eyes, woman. Stopped in +Citron’s saint Kevin’s parade. Pen something. Pendennis? My memory is +getting. Pen ...? Of course it’s years ago. Noise of the trams +probably. Well, if he couldn’t remember the dayfather’s name that he +sees every day. + +Bartell d’Arcy was the tenor, just coming out then. Seeing her home +after practice. Conceited fellow with his waxedup moustache. Gave her +that song _Winds that blow from the south_. + +Windy night that was I went to fetch her there was that lodge meeting +on about those lottery tickets after Goodwin’s concert in the +supperroom or oakroom of the Mansion house. He and I behind. Sheet of +her music blew out of my hand against the High school railings. Lucky +it didn’t. Thing like that spoils the effect of a night for her. +Professor Goodwin linking her in front. Shaky on his pins, poor old +sot. His farewell concerts. Positively last appearance on any stage. +May be for months and may be for never. Remember her laughing at the +wind, her blizzard collar up. Corner of Harcourt road remember that +gust. Brrfoo! Blew up all her skirts and her boa nearly smothered old +Goodwin. She did get flushed in the wind. Remember when we got home +raking up the fire and frying up those pieces of lap of mutton for her +supper with the Chutney sauce she liked. And the mulled rum. Could see +her in the bedroom from the hearth unclamping the busk of her stays: +white. + +Swish and soft flop her stays made on the bed. Always warm from her. +Always liked to let her self out. Sitting there after till near two +taking out her hairpins. Milly tucked up in beddyhouse. Happy. Happy. +That was the night... + +—O, Mr Bloom, how do you do? + +—O, how do you do, Mrs Breen? + +—No use complaining. How is Molly those times? Haven’t seen her for +ages. + +—In the pink, Mr Bloom said gaily. Milly has a position down in +Mullingar, you know. + +—Go away! Isn’t that grand for her? + +—Yes. In a photographer’s there. Getting on like a house on fire. How +are all your charges? + +—All on the baker’s list, Mrs Breen said. + +How many has she? No other in sight. + +—You’re in black, I see. You have no... + +—No, Mr Bloom said. I have just come from a funeral. + +Going to crop up all day, I foresee. Who’s dead, when and what did he +die of? Turn up like a bad penny. + +—O, dear me, Mrs Breen said. I hope it wasn’t any near relation. + +May as well get her sympathy. + +—Dignam, Mr Bloom said. An old friend of mine. He died quite suddenly, +poor fellow. Heart trouble, I believe. Funeral was this morning. + + Your funeral’s tomorrow + While you’re coming through the rye. + Diddlediddle dumdum + Diddlediddle... + +—Sad to lose the old friends, Mrs Breen’s womaneyes said melancholily. + +Now that’s quite enough about that. Just: quietly: husband. + +—And your lord and master? + +Mrs Breen turned up her two large eyes. Hasn’t lost them anyhow. + +—O, don’t be talking! she said. He’s a caution to rattlesnakes. He’s in +there now with his lawbooks finding out the law of libel. He has me +heartscalded. Wait till I show you. + +Hot mockturtle vapour and steam of newbaked jampuffs rolypoly poured +out from Harrison’s. The heavy noonreek tickled the top of Mr Bloom’s +gullet. Want to make good pastry, butter, best flour, Demerara sugar, +or they’d taste it with the hot tea. Or is it from her? A barefoot arab +stood over the grating, breathing in the fumes. Deaden the gnaw of +hunger that way. Pleasure or pain is it? Penny dinner. Knife and fork +chained to the table. + +Opening her handbag, chipped leather. Hatpin: ought to have a guard on +those things. Stick it in a chap’s eye in the tram. Rummaging. Open. +Money. Please take one. Devils if they lose sixpence. Raise Cain. +Husband barging. Where’s the ten shillings I gave you on Monday? Are +you feeding your little brother’s family? Soiled handkerchief: +medicinebottle. Pastille that was fell. What is she?... + +—There must be a new moon out, she said. He’s always bad then. Do you +know what he did last night? + +Her hand ceased to rummage. Her eyes fixed themselves on him, wide in +alarm, yet smiling. + +—What? Mr Bloom asked. + +Let her speak. Look straight in her eyes. I believe you. Trust me. + +—Woke me up in the night, she said. Dream he had, a nightmare. + +Indiges. + +—Said the ace of spades was walking up the stairs. + +—The ace of spades! Mr Bloom said. + +She took a folded postcard from her handbag. + +—Read that, she said. He got it this morning. + +—What is it? Mr Bloom asked, taking the card. U. P.? + +—U. p: up, she said. Someone taking a rise out of him. It’s a great +shame for them whoever he is. + +—Indeed it is, Mr Bloom said. + +She took back the card, sighing. + +—And now he’s going round to Mr Menton’s office. He’s going to take an +action for ten thousand pounds, he says. + +She folded the card into her untidy bag and snapped the catch. + +Same blue serge dress she had two years ago, the nap bleaching. Seen +its best days. Wispish hair over her ears. And that dowdy toque: three +old grapes to take the harm out of it. Shabby genteel. She used to be a +tasty dresser. Lines round her mouth. Only a year or so older than +Molly. + +See the eye that woman gave her, passing. Cruel. The unfair sex. + +He looked still at her, holding back behind his look his discontent. +Pungent mockturtle oxtail mulligatawny. I’m hungry too. Flakes of +pastry on the gusset of her dress: daub of sugary flour stuck to her +cheek. Rhubarb tart with liberal fillings, rich fruit interior. Josie +Powell that was. In Luke Doyle’s long ago. Dolphin’s Barn, the +charades. U. p: up. + +Change the subject. + +—Do you ever see anything of Mrs Beaufoy? Mr Bloom asked. + +—Mina Purefoy? she said. + +Philip Beaufoy I was thinking. Playgoers’ Club. Matcham often thinks of +the masterstroke. Did I pull the chain? Yes. The last act. + +—Yes. + +—I just called to ask on the way in is she over it. She’s in the +lying-in hospital in Holles street. Dr Horne got her in. She’s three +days bad now. + +—O, Mr Bloom said. I’m sorry to hear that. + +—Yes, Mrs Breen said. And a houseful of kids at home. It’s a very stiff +birth, the nurse told me. + +—O, Mr Bloom said. + +His heavy pitying gaze absorbed her news. His tongue clacked in +compassion. Dth! Dth! + +—I’m sorry to hear that, he said. Poor thing! Three days! That’s +terrible for her. + +Mrs Breen nodded. + +—She was taken bad on the Tuesday... + +Mr Bloom touched her funnybone gently, warning her: + +—Mind! Let this man pass. + +A bony form strode along the curbstone from the river staring with a +rapt gaze into the sunlight through a heavystringed glass. Tight as a +skullpiece a tiny hat gripped his head. From his arm a folded dustcoat, +a stick and an umbrella dangled to his stride. + +—Watch him, Mr Bloom said. He always walks outside the lampposts. +Watch! + +—Who is he if it’s a fair question? Mrs Breen asked. Is he dotty? + +—His name is Cashel Boyle O’Connor Fitzmaurice Tisdall Farrell, Mr +Bloom said smiling. Watch! + +—He has enough of them, she said. Denis will be like that one of these +days. + +She broke off suddenly. + +—There he is, she said. I must go after him. Goodbye. Remember me to +Molly, won’t you? + +—I will, Mr Bloom said. + +He watched her dodge through passers towards the shopfronts. Denis +Breen in skimpy frockcoat and blue canvas shoes shuffled out of +Harrison’s hugging two heavy tomes to his ribs. Blown in from the bay. +Like old times. He suffered her to overtake him without surprise and +thrust his dull grey beard towards her, his loose jaw wagging as he +spoke earnestly. + +Meshuggah. Off his chump. + +Mr Bloom walked on again easily, seeing ahead of him in sunlight the +tight skullpiece, the dangling stickumbrelladustcoat. Going the two +days. Watch him! Out he goes again. One way of getting on in the world. +And that other old mosey lunatic in those duds. Hard time she must have +with him. + +U. p: up. I’ll take my oath that’s Alf Bergan or Richie Goulding. Wrote +it for a lark in the Scotch house I bet anything. Round to Menton’s +office. His oyster eyes staring at the postcard. Be a feast for the +gods. + +He passed the _Irish Times_. There might be other answers lying there. +Like to answer them all. Good system for criminals. Code. At their +lunch now. Clerk with the glasses there doesn’t know me. O, leave them +there to simmer. Enough bother wading through fortyfour of them. +Wanted, smart lady typist to aid gentleman in literary work. I called +you naughty darling because I do not like that other world. Please tell +me what is the meaning. Please tell me what perfume does your wife. +Tell me who made the world. The way they spring those questions on you. +And the other one Lizzie Twigg. My literary efforts have had the good +fortune to meet with the approval of the eminent poet A. E. (Mr Geo. +Russell). No time to do her hair drinking sloppy tea with a book of +poetry. + +Best paper by long chalks for a small ad. Got the provinces now. Cook +and general, exc. cuisine, housemaid kept. Wanted live man for spirit +counter. Resp. girl (R.C.) wishes to hear of post in fruit or pork +shop. James Carlisle made that. Six and a half per cent dividend. Made +a big deal on Coates’s shares. Ca’ canny. Cunning old Scotch hunks. All +the toady news. Our gracious and popular vicereine. Bought the _Irish +Field_ now. Lady Mountcashel has quite recovered after her confinement +and rode out with the Ward Union staghounds at the enlargement +yesterday at Rathoath. Uneatable fox. Pothunters too. Fear injects +juices make it tender enough for them. Riding astride. Sit her horse +like a man. Weightcarrying huntress. No sidesaddle or pillion for her, +not for Joe. First to the meet and in at the death. Strong as a brood +mare some of those horsey women. Swagger around livery stables. Toss +off a glass of brandy neat while you’d say knife. That one at the +Grosvenor this morning. Up with her on the car: wishswish. Stonewall or +fivebarred gate put her mount to it. Think that pugnosed driver did it +out of spite. Who is this she was like? O yes! Mrs Miriam Dandrade that +sold me her old wraps and black underclothes in the Shelbourne hotel. +Divorced Spanish American. Didn’t take a feather out of her my handling +them. As if I was her clotheshorse. Saw her in the viceregal party when +Stubbs the park ranger got me in with Whelan of the _Express._ +Scavenging what the quality left. High tea. Mayonnaise I poured on the +plums thinking it was custard. Her ears ought to have tingled for a few +weeks after. Want to be a bull for her. Born courtesan. No nursery work +for her, thanks. + +Poor Mrs Purefoy! Methodist husband. Method in his madness. Saffron bun +and milk and soda lunch in the educational dairy. Y. M. C. A. Eating +with a stopwatch, thirtytwo chews to the minute. And still his +muttonchop whiskers grew. Supposed to be well connected. Theodore’s +cousin in Dublin Castle. One tony relative in every family. Hardy +annuals he presents her with. Saw him out at the Three Jolly Topers +marching along bareheaded and his eldest boy carrying one in a +marketnet. The squallers. Poor thing! Then having to give the breast +year after year all hours of the night. Selfish those t.t’s are. Dog in +the manger. Only one lump of sugar in my tea, if you please. + +He stood at Fleet street crossing. Luncheon interval. A sixpenny at +Rowe’s? Must look up that ad in the national library. An eightpenny in +the Burton. Better. On my way. + +He walked on past Bolton’s Westmoreland house. Tea. Tea. Tea. I forgot +to tap Tom Kernan. + +Sss. Dth, dth, dth! Three days imagine groaning on a bed with a +vinegared handkerchief round her forehead, her belly swollen out. Phew! +Dreadful simply! Child’s head too big: forceps. Doubled up inside her +trying to butt its way out blindly, groping for the way out. Kill me +that would. Lucky Molly got over hers lightly. They ought to invent +something to stop that. Life with hard labour. Twilight sleep idea: +queen Victoria was given that. Nine she had. A good layer. Old woman +that lived in a shoe she had so many children. Suppose he was +consumptive. Time someone thought about it instead of gassing about the +what was it the pensive bosom of the silver effulgence. Flapdoodle to +feed fools on. They could easily have big establishments whole thing +quite painless out of all the taxes give every child born five quid at +compound interest up to twentyone five per cent is a hundred shillings +and five tiresome pounds multiply by twenty decimal system encourage +people to put by money save hundred and ten and a bit twentyone years +want to work it out on paper come to a tidy sum more than you think. + +Not stillborn of course. They are not even registered. Trouble for +nothing. + +Funny sight two of them together, their bellies out. Molly and Mrs +Moisel. Mothers’ meeting. Phthisis retires for the time being, then +returns. How flat they look all of a sudden after. Peaceful eyes. +Weight off their mind. Old Mrs Thornton was a jolly old soul. All my +babies, she said. The spoon of pap in her mouth before she fed them. O, +that’s nyumnyum. Got her hand crushed by old Tom Wall’s son. His first +bow to the public. Head like a prize pumpkin. Snuffy Dr Murren. People +knocking them up at all hours. For God’ sake, doctor. Wife in her +throes. Then keep them waiting months for their fee. To attendance on +your wife. No gratitude in people. Humane doctors, most of them. + +Before the huge high door of the Irish house of parliament a flock of +pigeons flew. Their little frolic after meals. Who will we do it on? I +pick the fellow in black. Here goes. Here’s good luck. Must be +thrilling from the air. Apjohn, myself and Owen Goldberg up in the +trees near Goose green playing the monkeys. Mackerel they called me. + +A squad of constables debouched from College street, marching in Indian +file. Goosestep. Foodheated faces, sweating helmets, patting their +truncheons. After their feed with a good load of fat soup under their +belts. Policeman’s lot is oft a happy one. They split up in groups and +scattered, saluting, towards their beats. Let out to graze. Best moment +to attack one in pudding time. A punch in his dinner. A squad of +others, marching irregularly, rounded Trinity railings making for the +station. Bound for their troughs. Prepare to receive cavalry. Prepare +to receive soup. + +He crossed under Tommy Moore’s roguish finger. They did right to put +him up over a urinal: meeting of the waters. Ought to be places for +women. Running into cakeshops. Settle my hat straight. _There is not in +this wide world a vallee_. Great song of Julia Morkan’s. Kept her voice +up to the very last. Pupil of Michael Balfe’s, wasn’t she? + +He gazed after the last broad tunic. Nasty customers to tackle. Jack +Power could a tale unfold: father a G man. If a fellow gave them +trouble being lagged they let him have it hot and heavy in the +bridewell. Can’t blame them after all with the job they have especially +the young hornies. That horsepoliceman the day Joe Chamberlain was +given his degree in Trinity he got a run for his money. My word he did! +His horse’s hoofs clattering after us down Abbey street. Lucky I had +the presence of mind to dive into Manning’s or I was souped. He did +come a wallop, by George. Must have cracked his skull on the +cobblestones. I oughtn’t to have got myself swept along with those +medicals. And the Trinity jibs in their mortarboards. Looking for +trouble. Still I got to know that young Dixon who dressed that sting +for me in the Mater and now he’s in Holles street where Mrs Purefoy. +Wheels within wheels. Police whistle in my ears still. All skedaddled. +Why he fixed on me. Give me in charge. Right here it began. + +—Up the Boers! + +—Three cheers for De Wet! + +—We’ll hang Joe Chamberlain on a sourapple tree. + +Silly billies: mob of young cubs yelling their guts out. Vinegar hill. +The Butter exchange band. Few years’ time half of them magistrates and +civil servants. War comes on: into the army helterskelter: same fellows +used to. Whether on the scaffold high. + +Never know who you’re talking to. Corny Kelleher he has Harvey Duff in +his eye. Like that Peter or Denis or James Carey that blew the gaff on +the invincibles. Member of the corporation too. Egging raw youths on to +get in the know all the time drawing secret service pay from the +castle. Drop him like a hot potato. Why those plainclothes men are +always courting slaveys. Easily twig a man used to uniform. +Squarepushing up against a backdoor. Maul her a bit. Then the next +thing on the menu. And who is the gentleman does be visiting there? Was +the young master saying anything? Peeping Tom through the keyhole. +Decoy duck. Hotblooded young student fooling round her fat arms +ironing. + +—Are those yours, Mary? + +—I don’t wear such things... Stop or I’ll tell the missus on you. Out +half the night. + +—There are great times coming, Mary. Wait till you see. + +—Ah, gelong with your great times coming. + +Barmaids too. Tobaccoshopgirls. + +James Stephens’ idea was the best. He knew them. Circles of ten so that +a fellow couldn’t round on more than his own ring. Sinn Fein. Back out +you get the knife. Hidden hand. Stay in. The firing squad. Turnkey’s +daughter got him out of Richmond, off from Lusk. Putting up in the +Buckingham Palace hotel under their very noses. Garibaldi. + +You must have a certain fascination: Parnell. Arthur Griffith is a +squareheaded fellow but he has no go in him for the mob. Or gas about +our lovely land. Gammon and spinach. Dublin Bakery Company’s tearoom. +Debating societies. That republicanism is the best form of government. +That the language question should take precedence of the economic +question. Have your daughters inveigling them to your house. Stuff them +up with meat and drink. Michaelmas goose. Here’s a good lump of thyme +seasoning under the apron for you. Have another quart of goosegrease +before it gets too cold. Halffed enthusiasts. Penny roll and a walk +with the band. No grace for the carver. The thought that the other chap +pays best sauce in the world. Make themselves thoroughly at home. Show +us over those apricots, meaning peaches. The not far distant day. +Homerule sun rising up in the northwest. + +His smile faded as he walked, a heavy cloud hiding the sun slowly, +shadowing Trinity’s surly front. Trams passed one another, ingoing, +outgoing, clanging. Useless words. Things go on same, day after day: +squads of police marching out, back: trams in, out. Those two loonies +mooching about. Dignam carted off. Mina Purefoy swollen belly on a bed +groaning to have a child tugged out of her. One born every second +somewhere. Other dying every second. Since I fed the birds five +minutes. Three hundred kicked the bucket. Other three hundred born, +washing the blood off, all are washed in the blood of the lamb, bawling +maaaaaa. + +Cityful passing away, other cityful coming, passing away too: other +coming on, passing on. Houses, lines of houses, streets, miles of +pavements, piledup bricks, stones. Changing hands. This owner, that. +Landlord never dies they say. Other steps into his shoes when he gets +his notice to quit. They buy the place up with gold and still they have +all the gold. Swindle in it somewhere. Piled up in cities, worn away +age after age. Pyramids in sand. Built on bread and onions. Slaves +Chinese wall. Babylon. Big stones left. Round towers. Rest rubble, +sprawling suburbs, jerrybuilt. Kerwan’s mushroom houses built of +breeze. Shelter, for the night. + +No-one is anything. + +This is the very worst hour of the day. Vitality. Dull, gloomy: hate +this hour. Feel as if I had been eaten and spewed. + +Provost’s house. The reverend Dr Salmon: tinned salmon. Well tinned in +there. Like a mortuary chapel. Wouldn’t live in it if they paid me. +Hope they have liver and bacon today. Nature abhors a vacuum. + +The sun freed itself slowly and lit glints of light among the +silverware opposite in Walter Sexton’s window by which John Howard +Parnell passed, unseeing. + +There he is: the brother. Image of him. Haunting face. Now that’s a +coincidence. Course hundreds of times you think of a person and don’t +meet him. Like a man walking in his sleep. No-one knows him. Must be a +corporation meeting today. They say he never put on the city marshal’s +uniform since he got the job. Charley Kavanagh used to come out on his +high horse, cocked hat, puffed, powdered and shaved. Look at the +woebegone walk of him. Eaten a bad egg. Poached eyes on ghost. I have a +pain. Great man’s brother: his brother’s brother. He’d look nice on the +city charger. Drop into the D.B.C. probably for his coffee, play chess +there. His brother used men as pawns. Let them all go to pot. Afraid to +pass a remark on him. Freeze them up with that eye of his. That’s the +fascination: the name. All a bit touched. Mad Fanny and his other +sister Mrs Dickinson driving about with scarlet harness. Bolt upright +like surgeon M’Ardle. Still David Sheehy beat him for south Meath. +Apply for the Chiltern Hundreds and retire into public life. The +patriot’s banquet. Eating orangepeels in the park. Simon Dedalus said +when they put him in parliament that Parnell would come back from the +grave and lead him out of the house of commons by the arm. + +—Of the twoheaded octopus, one of whose heads is the head upon which +the ends of the world have forgotten to come while the other speaks +with a Scotch accent. The tentacles... + +They passed from behind Mr Bloom along the curbstone. Beard and +bicycle. Young woman. + +And there he is too. Now that’s really a coincidence: second time. +Coming events cast their shadows before. With the approval of the +eminent poet, Mr Geo. Russell. That might be Lizzie Twigg with him. A. +E.: what does that mean? Initials perhaps. Albert Edward, Arthur +Edmund, Alphonsus Eb Ed El Esquire. What was he saying? The ends of the +world with a Scotch accent. Tentacles: octopus. Something occult: +symbolism. Holding forth. She’s taking it all in. Not saying a word. To +aid gentleman in literary work. + +His eyes followed the high figure in homespun, beard and bicycle, a +listening woman at his side. Coming from the vegetarian. Only +weggebobbles and fruit. Don’t eat a beefsteak. If you do the eyes of +that cow will pursue you through all eternity. They say it’s healthier. +Windandwatery though. Tried it. Keep you on the run all day. Bad as a +bloater. Dreams all night. Why do they call that thing they gave me +nutsteak? Nutarians. Fruitarians. To give you the idea you are eating +rumpsteak. Absurd. Salty too. They cook in soda. Keep you sitting by +the tap all night. + +Her stockings are loose over her ankles. I detest that: so tasteless. +Those literary etherial people they are all. Dreamy, cloudy, +symbolistic. Esthetes they are. I wouldn’t be surprised if it was that +kind of food you see produces the like waves of the brain the poetical. +For example one of those policemen sweating Irish stew into their +shirts you couldn’t squeeze a line of poetry out of him. Don’t know +what poetry is even. Must be in a certain mood. + + The dreamy cloudy gull + Waves o’er the waters dull. + +He crossed at Nassau street corner and stood before the window of +Yeates and Son, pricing the fieldglasses. Or will I drop into old +Harris’s and have a chat with young Sinclair? Wellmannered fellow. +Probably at his lunch. Must get those old glasses of mine set right. +Goerz lenses six guineas. Germans making their way everywhere. Sell on +easy terms to capture trade. Undercutting. Might chance on a pair in +the railway lost property office. Astonishing the things people leave +behind them in trains and cloakrooms. What do they be thinking about? +Women too. Incredible. Last year travelling to Ennis had to pick up +that farmer’s daughter’s bag and hand it to her at Limerick junction. +Unclaimed money too. There’s a little watch up there on the roof of the +bank to test those glasses by. + +His lids came down on the lower rims of his irides. Can’t see it. If +you imagine it’s there you can almost see it. Can’t see it. + +He faced about and, standing between the awnings, held out his right +hand at arm’s length towards the sun. Wanted to try that often. Yes: +completely. The tip of his little finger blotted out the sun’s disk. +Must be the focus where the rays cross. If I had black glasses. +Interesting. There was a lot of talk about those sunspots when we were +in Lombard street west. Looking up from the back garden. Terrific +explosions they are. There will be a total eclipse this year: autumn +some time. + +Now that I come to think of it that ball falls at Greenwich time. It’s +the clock is worked by an electric wire from Dunsink. Must go out there +some first Saturday of the month. If I could get an introduction to +professor Joly or learn up something about his family. That would do +to: man always feels complimented. Flattery where least expected. +Nobleman proud to be descended from some king’s mistress. His +foremother. Lay it on with a trowel. Cap in hand goes through the land. +Not go in and blurt out what you know you’re not to: what’s parallax? +Show this gentleman the door. + +Ah. + +His hand fell to his side again. + +Never know anything about it. Waste of time. Gasballs spinning about, +crossing each other, passing. Same old dingdong always. Gas: then +solid: then world: then cold: then dead shell drifting around, frozen +rock, like that pineapple rock. The moon. Must be a new moon out, she +said. I believe there is. + +He went on by la maison Claire. + +Wait. The full moon was the night we were Sunday fortnight exactly +there is a new moon. Walking down by the Tolka. Not bad for a Fairview +moon. She was humming. The young May moon she’s beaming, love. He other +side of her. Elbow, arm. He. Glowworm’s la-amp is gleaming, love. +Touch. Fingers. Asking. Answer. Yes. + +Stop. Stop. If it was it was. Must. + +Mr Bloom, quickbreathing, slowlier walking passed Adam court. + +With a keep quiet relief his eyes took note this is the street here +middle of the day of Bob Doran’s bottle shoulders. On his annual bend, +M’Coy said. They drink in order to say or do something or _cherchez la +femme_. Up in the Coombe with chummies and streetwalkers and then the +rest of the year sober as a judge. + +Yes. Thought so. Sloping into the Empire. Gone. Plain soda would do him +good. Where Pat Kinsella had his Harp theatre before Whitbred ran the +Queen’s. Broth of a boy. Dion Boucicault business with his harvestmoon +face in a poky bonnet. Three Purty Maids from School. How time flies, +eh? Showing long red pantaloons under his skirts. Drinkers, drinking, +laughed spluttering, their drink against their breath. More power, Pat. +Coarse red: fun for drunkards: guffaw and smoke. Take off that white +hat. His parboiled eyes. Where is he now? Beggar somewhere. The harp +that once did starve us all. + +I was happier then. Or was that I? Or am I now I? Twentyeight I was. +She twentythree. When we left Lombard street west something changed. +Could never like it again after Rudy. Can’t bring back time. Like +holding water in your hand. Would you go back to then? Just beginning +then. Would you? Are you not happy in your home you poor little naughty +boy? Wants to sew on buttons for me. I must answer. Write it in the +library. + +Grafton street gay with housed awnings lured his senses. Muslin prints, +silkdames and dowagers, jingle of harnesses, hoofthuds lowringing in +the baking causeway. Thick feet that woman has in the white stockings. +Hope the rain mucks them up on her. Countrybred chawbacon. All the beef +to the heels were in. Always gives a woman clumsy feet. Molly looks out +of plumb. + +He passed, dallying, the windows of Brown Thomas, silk mercers. +Cascades of ribbons. Flimsy China silks. A tilted urn poured from its +mouth a flood of bloodhued poplin: lustrous blood. The huguenots +brought that here. _La causa è santa!_ Tara tara. Great chorus that. +Taree tara. Must be washed in rainwater. Meyerbeer. Tara: bom bom bom. + +Pincushions. I’m a long time threatening to buy one. Sticking them all +over the place. Needles in window curtains. + +He bared slightly his left forearm. Scrape: nearly gone. Not today +anyhow. Must go back for that lotion. For her birthday perhaps. +Junejulyaugseptember eighth. Nearly three months off. Then she mightn’t +like it. Women won’t pick up pins. Say it cuts lo. + +Gleaming silks, petticoats on slim brass rails, rays of flat silk +stockings. + +Useless to go back. Had to be. Tell me all. + +High voices. Sunwarm silk. Jingling harnesses. All for a woman, home +and houses, silkwebs, silver, rich fruits spicy from Jaffa. Agendath +Netaim. Wealth of the world. + +A warm human plumpness settled down on his brain. His brain yielded. +Perfume of embraces all him assailed. With hungered flesh obscurely, he +mutely craved to adore. + +Duke street. Here we are. Must eat. The Burton. Feel better then. + +He turned Combridge’s corner, still pursued. Jingling, hoofthuds. +Perfumed bodies, warm, full. All kissed, yielded: in deep summer +fields, tangled pressed grass, in trickling hallways of tenements, +along sofas, creaking beds. + +—Jack, love! + +—Darling! + +—Kiss me, Reggy! + +—My boy! + +—Love! + +His heart astir he pushed in the door of the Burton restaurant. Stink +gripped his trembling breath: pungent meatjuice, slush of greens. See +the animals feed. + +Men, men, men. + +Perched on high stools by the bar, hats shoved back, at the tables +calling for more bread no charge, swilling, wolfing gobfuls of sloppy +food, their eyes bulging, wiping wetted moustaches. A pallid suetfaced +young man polished his tumbler knife fork and spoon with his napkin. +New set of microbes. A man with an infant’s saucestained napkin tucked +round him shovelled gurgling soup down his gullet. A man spitting back +on his plate: halfmasticated gristle: gums: no teeth to chewchewchew +it. Chump chop from the grill. Bolting to get it over. Sad booser’s +eyes. Bitten off more than he can chew. Am I like that? See ourselves +as others see us. Hungry man is an angry man. Working tooth and jaw. +Don’t! O! A bone! That last pagan king of Ireland Cormac in the +schoolpoem choked himself at Sletty southward of the Boyne. Wonder what +he was eating. Something galoptious. Saint Patrick converted him to +Christianity. Couldn’t swallow it all however. + +—Roast beef and cabbage. + +—One stew. + +Smells of men. Spat-on sawdust, sweetish warmish cigarettesmoke, reek +of plug, spilt beer, men’s beery piss, the stale of ferment. + +His gorge rose. + +Couldn’t eat a morsel here. Fellow sharpening knife and fork to eat all +before him, old chap picking his tootles. Slight spasm, full, chewing +the cud. Before and after. Grace after meals. Look on this picture then +on that. Scoffing up stewgravy with sopping sippets of bread. Lick it +off the plate, man! Get out of this. + +He gazed round the stooled and tabled eaters, tightening the wings of +his nose. + +—Two stouts here. + +—One corned and cabbage. + +That fellow ramming a knifeful of cabbage down as if his life depended +on it. Good stroke. Give me the fidgets to look. Safer to eat from his +three hands. Tear it limb from limb. Second nature to him. Born with a +silver knife in his mouth. That’s witty, I think. Or no. Silver means +born rich. Born with a knife. But then the allusion is lost. + +An illgirt server gathered sticky clattering plates. Rock, the head +bailiff, standing at the bar blew the foamy crown from his tankard. +Well up: it splashed yellow near his boot. A diner, knife and fork +upright, elbows on table, ready for a second helping stared towards the +foodlift across his stained square of newspaper. Other chap telling him +something with his mouth full. Sympathetic listener. Table talk. I +munched hum un thu Unchster Bunk un Munchday. Ha? Did you, faith? + +Mr Bloom raised two fingers doubtfully to his lips. His eyes said: + +—Not here. Don’t see him. + +Out. I hate dirty eaters. + +He backed towards the door. Get a light snack in Davy Byrne’s. Stopgap. +Keep me going. Had a good breakfast. + +—Roast and mashed here. + +—Pint of stout. + +Every fellow for his own, tooth and nail. Gulp. Grub. Gulp. Gobstuff. + +He came out into clearer air and turned back towards Grafton street. +Eat or be eaten. Kill! Kill! + +Suppose that communal kitchen years to come perhaps. All trotting down +with porringers and tommycans to be filled. Devour contents in the +street. John Howard Parnell example the provost of Trinity every +mother’s son don’t talk of your provosts and provost of Trinity women +and children cabmen priests parsons fieldmarshals archbishops. From +Ailesbury road, Clyde road, artisans’ dwellings, north Dublin union, +lord mayor in his gingerbread coach, old queen in a bathchair. My +plate’s empty. After you with our incorporated drinkingcup. Like sir +Philip Crampton’s fountain. Rub off the microbes with your +handkerchief. Next chap rubs on a new batch with his. Father O’Flynn +would make hares of them all. Have rows all the same. All for number +one. Children fighting for the scrapings of the pot. Want a souppot as +big as the Phoenix park. Harpooning flitches and hindquarters out of +it. Hate people all round you. City Arms hotel _table d’hôte_ she +called it. Soup, joint and sweet. Never know whose thoughts you’re +chewing. Then who’d wash up all the plates and forks? Might be all +feeding on tabloids that time. Teeth getting worse and worse. + +After all there’s a lot in that vegetarian fine flavour of things from +the earth garlic of course it stinks after Italian organgrinders crisp +of onions mushrooms truffles. Pain to the animal too. Pluck and draw +fowl. Wretched brutes there at the cattlemarket waiting for the poleaxe +to split their skulls open. Moo. Poor trembling calves. Meh. Staggering +bob. Bubble and squeak. Butchers’ buckets wobbly lights. Give us that +brisket off the hook. Plup. Rawhead and bloody bones. Flayed glasseyed +sheep hung from their haunches, sheepsnouts bloodypapered snivelling +nosejam on sawdust. Top and lashers going out. Don’t maul them pieces, +young one. + +Hot fresh blood they prescribe for decline. Blood always needed. +Insidious. Lick it up smokinghot, thick sugary. Famished ghosts. + +Ah, I’m hungry. + +He entered Davy Byrne’s. Moral pub. He doesn’t chat. Stands a drink now +and then. But in leapyear once in four. Cashed a cheque for me once. + +What will I take now? He drew his watch. Let me see now. Shandygaff? + +—Hello, Bloom, Nosey Flynn said from his nook. + +—Hello, Flynn. + +—How’s things? + +—Tiptop... Let me see. I’ll take a glass of burgundy and... let me see. + +Sardines on the shelves. Almost taste them by looking. Sandwich? Ham +and his descendants musterred and bred there. Potted meats. What is +home without Plumtree’s potted meat? Incomplete. What a stupid ad! +Under the obituary notices they stuck it. All up a plumtree. Dignam’s +potted meat. Cannibals would with lemon and rice. White missionary too +salty. Like pickled pork. Expect the chief consumes the parts of +honour. Ought to be tough from exercise. His wives in a row to watch +the effect. _There was a right royal old nigger. Who ate or something +the somethings of the reverend Mr MacTrigger_. With it an abode of +bliss. Lord knows what concoction. Cauls mouldy tripes windpipes faked +and minced up. Puzzle find the meat. Kosher. No meat and milk together. +Hygiene that was what they call now. Yom Kippur fast spring cleaning of +inside. Peace and war depend on some fellow’s digestion. Religions. +Christmas turkeys and geese. Slaughter of innocents. Eat drink and be +merry. Then casual wards full after. Heads bandaged. Cheese digests all +but itself. Mity cheese. + +—Have you a cheese sandwich? + +—Yes, sir. + +Like a few olives too if they had them. Italian I prefer. Good glass of +burgundy take away that. Lubricate. A nice salad, cool as a cucumber, +Tom Kernan can dress. Puts gusto into it. Pure olive oil. Milly served +me that cutlet with a sprig of parsley. Take one Spanish onion. God +made food, the devil the cooks. Devilled crab. + +—Wife well? + +—Quite well, thanks... A cheese sandwich, then. Gorgonzola, have you? + +—Yes, sir. + +Nosey Flynn sipped his grog. + +—Doing any singing those times? + +Look at his mouth. Could whistle in his own ear. Flap ears to match. +Music. Knows as much about it as my coachman. Still better tell him. +Does no harm. Free ad. + +—She’s engaged for a big tour end of this month. You may have heard +perhaps. + +—No. O, that’s the style. Who’s getting it up? + +The curate served. + +—How much is that? + +—Seven d., sir... Thank you, sir. + +Mr Bloom cut his sandwich into slender strips. _Mr MacTrigger_. Easier +than the dreamy creamy stuff. _His five hundred wives. Had the time of +their lives._ + +—Mustard, sir? + +—Thank you. + +He studded under each lifted strip yellow blobs. _Their lives_. I have +it. _It grew bigger and bigger and bigger_. + +—Getting it up? he said. Well, it’s like a company idea, you see. Part +shares and part profits. + +—Ay, now I remember, Nosey Flynn said, putting his hand in his pocket +to scratch his groin. Who is this was telling me? Isn’t Blazes Boylan +mixed up in it? + +A warm shock of air heat of mustard hanched on Mr Bloom’s heart. He +raised his eyes and met the stare of a bilious clock. Two. Pub clock +five minutes fast. Time going on. Hands moving. Two. Not yet. + +His midriff yearned then upward, sank within him, yearned more longly, +longingly. + +Wine. + +He smellsipped the cordial juice and, bidding his throat strongly to +speed it, set his wineglass delicately down. + +—Yes, he said. He’s the organiser in point of fact. + +No fear: no brains. + +Nosey Flynn snuffled and scratched. Flea having a good square meal. + +—He had a good slice of luck, Jack Mooney was telling me, over that +boxingmatch Myler Keogh won again that soldier in the Portobello +barracks. By God, he had the little kipper down in the county Carlow he +was telling me... + +Hope that dewdrop doesn’t come down into his glass. No, snuffled it up. + +—For near a month, man, before it came off. Sucking duck eggs by God +till further orders. Keep him off the boose, see? O, by God, Blazes is +a hairy chap. + +Davy Byrne came forward from the hindbar in tuckstitched shirtsleeves, +cleaning his lips with two wipes of his napkin. Herring’s blush. Whose +smile upon each feature plays with such and such replete. Too much fat +on the parsnips. + +—And here’s himself and pepper on him, Nosey Flynn said. Can you give +us a good one for the Gold cup? + +—I’m off that, Mr Flynn, Davy Byrne answered. I never put anything on a +horse. + +—You’re right there, Nosey Flynn said. + +Mr Bloom ate his strips of sandwich, fresh clean bread, with relish of +disgust pungent mustard, the feety savour of green cheese. Sips of his +wine soothed his palate. Not logwood that. Tastes fuller this weather +with the chill off. + +Nice quiet bar. Nice piece of wood in that counter. Nicely planed. Like +the way it curves there. + +—I wouldn’t do anything at all in that line, Davy Byrne said. It ruined +many a man, the same horses. + +Vintners’ sweepstake. Licensed for the sale of beer, wine and spirits +for consumption on the premises. Heads I win tails you lose. + +—True for you, Nosey Flynn said. Unless you’re in the know. There’s no +straight sport going now. Lenehan gets some good ones. He’s giving +Sceptre today. Zinfandel’s the favourite, Lord Howard de Walden’s, won +at Epsom. Morny Cannon is riding him. I could have got seven to one +against Saint Amant a fortnight before. + +—That so? Davy Byrne said... + +He went towards the window and, taking up the pettycash book, scanned +its pages. + +—I could, faith, Nosey Flynn said, snuffling. That was a rare bit of +horseflesh. Saint Frusquin was her sire. She won in a thunderstorm, +Rothschild’s filly, with wadding in her ears. Blue jacket and yellow +cap. Bad luck to big Ben Dollard and his John O’Gaunt. He put me off +it. Ay. + +He drank resignedly from his tumbler, running his fingers down the +flutes. + +—Ay, he said, sighing. + +Mr Bloom, champing, standing, looked upon his sigh. Nosey numbskull. +Will I tell him that horse Lenehan? He knows already. Better let him +forget. Go and lose more. Fool and his money. Dewdrop coming down +again. Cold nose he’d have kissing a woman. Still they might like. +Prickly beards they like. Dogs’ cold noses. Old Mrs Riordan with the +rumbling stomach’s Skye terrier in the City Arms hotel. Molly fondling +him in her lap. O, the big doggybowwowsywowsy! + +Wine soaked and softened rolled pith of bread mustard a moment mawkish +cheese. Nice wine it is. Taste it better because I’m not thirsty. Bath +of course does that. Just a bite or two. Then about six o’clock I can. +Six. Six. Time will be gone then. She... + +Mild fire of wine kindled his veins. I wanted that badly. Felt so off +colour. His eyes unhungrily saw shelves of tins: sardines, gaudy +lobsters’ claws. All the odd things people pick up for food. Out of +shells, periwinkles with a pin, off trees, snails out of the ground the +French eat, out of the sea with bait on a hook. Silly fish learn +nothing in a thousand years. If you didn’t know risky putting anything +into your mouth. Poisonous berries. Johnny Magories. Roundness you +think good. Gaudy colour warns you off. One fellow told another and so +on. Try it on the dog first. Led on by the smell or the look. Tempting +fruit. Ice cones. Cream. Instinct. Orangegroves for instance. Need +artificial irrigation. Bleibtreustrasse. Yes but what about oysters. +Unsightly like a clot of phlegm. Filthy shells. Devil to open them too. +Who found them out? Garbage, sewage they feed on. Fizz and Red bank +oysters. Effect on the sexual. Aphrodis. He was in the Red Bank this +morning. Was he oysters old fish at table perhaps he young flesh in bed +no June has no ar no oysters. But there are people like things high. +Tainted game. Jugged hare. First catch your hare. Chinese eating eggs +fifty years old, blue and green again. Dinner of thirty courses. Each +dish harmless might mix inside. Idea for a poison mystery. That +archduke Leopold was it no yes or was it Otto one of those Habsburgs? +Or who was it used to eat the scruff off his own head? Cheapest lunch +in town. Of course aristocrats, then the others copy to be in the +fashion. Milly too rock oil and flour. Raw pastry I like myself. Half +the catch of oysters they throw back in the sea to keep up the price. +Cheap no-one would buy. Caviare. Do the grand. Hock in green glasses. +Swell blowout. Lady this. Powdered bosom pearls. The _élite. Crème de +la crème_. They want special dishes to pretend they’re. Hermit with a +platter of pulse keep down the stings of the flesh. Know me come eat +with me. Royal sturgeon high sheriff, Coffey, the butcher, right to +venisons of the forest from his ex. Send him back the half of a cow. +Spread I saw down in the Master of the Rolls’ kitchen area. Whitehatted +_chef_ like a rabbi. Combustible duck. Curly cabbage _à la duchesse de +Parme_. Just as well to write it on the bill of fare so you can know +what you’ve eaten. Too many drugs spoil the broth. I know it myself. +Dosing it with Edwards’ desiccated soup. Geese stuffed silly for them. +Lobsters boiled alive. Do ptake some ptarmigan. Wouldn’t mind being a +waiter in a swell hotel. Tips, evening dress, halfnaked ladies. May I +tempt you to a little more filleted lemon sole, miss Dubedat? Yes, do +bedad. And she did bedad. Huguenot name I expect that. A miss Dubedat +lived in Killiney, I remember. _Du de la_ is French. Still it’s the +same fish perhaps old Micky Hanlon of Moore street ripped the guts out +of making money hand over fist finger in fishes’ gills can’t write his +name on a cheque think he was painting the landscape with his mouth +twisted. Moooikill A Aitcha Ha ignorant as a kish of brogues, worth +fifty thousand pounds. + +Stuck on the pane two flies buzzed, stuck. + +Glowing wine on his palate lingered swallowed. Crushing in the +winepress grapes of Burgundy. Sun’s heat it is. Seems to a secret touch +telling me memory. Touched his sense moistened remembered. Hidden under +wild ferns on Howth below us bay sleeping: sky. No sound. The sky. The +bay purple by the Lion’s head. Green by Drumleck. Yellowgreen towards +Sutton. Fields of undersea, the lines faint brown in grass, buried +cities. Pillowed on my coat she had her hair, earwigs in the heather +scrub my hand under her nape, you’ll toss me all. O wonder! Coolsoft +with ointments her hand touched me, caressed: her eyes upon me did not +turn away. Ravished over her I lay, full lips full open, kissed her +mouth. Yum. Softly she gave me in my mouth the seedcake warm and +chewed. Mawkish pulp her mouth had mumbled sweetsour of her spittle. +Joy: I ate it: joy. Young life, her lips that gave me pouting. Soft +warm sticky gumjelly lips. Flowers her eyes were, take me, willing +eyes. Pebbles fell. She lay still. A goat. No-one. High on Ben Howth +rhododendrons a nannygoat walking surefooted, dropping currants. +Screened under ferns she laughed warmfolded. Wildly I lay on her, +kissed her: eyes, her lips, her stretched neck beating, woman’s breasts +full in her blouse of nun’s veiling, fat nipples upright. Hot I tongued +her. She kissed me. I was kissed. All yielding she tossed my hair. +Kissed, she kissed me. + +Me. And me now. + +Stuck, the flies buzzed. + +His downcast eyes followed the silent veining of the oaken slab. +Beauty: it curves: curves are beauty. Shapely goddesses, Venus, Juno: +curves the world admires. Can see them library museum standing in the +round hall, naked goddesses. Aids to digestion. They don’t care what +man looks. All to see. Never speaking. I mean to say to fellows like +Flynn. Suppose she did Pygmalion and Galatea what would she say first? +Mortal! Put you in your proper place. Quaffing nectar at mess with gods +golden dishes, all ambrosial. Not like a tanner lunch we have, boiled +mutton, carrots and turnips, bottle of Allsop. Nectar imagine it +drinking electricity: gods’ food. Lovely forms of women sculped +Junonian. Immortal lovely. And we stuffing food in one hole and out +behind: food, chyle, blood, dung, earth, food: have to feed it like +stoking an engine. They have no. Never looked. I’ll look today. Keeper +won’t see. Bend down let something fall see if she. + +Dribbling a quiet message from his bladder came to go to do not to do +there to do. A man and ready he drained his glass to the lees and +walked, to men too they gave themselves, manly conscious, lay with men +lovers, a youth enjoyed her, to the yard. + +When the sound of his boots had ceased Davy Byrne said from his book: + +—What is this he is? Isn’t he in the insurance line? + +—He’s out of that long ago, Nosey Flynn said. He does canvassing for +the _Freeman._ + +—I know him well to see, Davy Byrne said. Is he in trouble? + +—Trouble? Nosey Flynn said. Not that I heard of. Why? + +—I noticed he was in mourning. + +—Was he? Nosey Flynn said. So he was, faith. I asked him how was all at +home. You’re right, by God. So he was. + +—I never broach the subject, Davy Byrne said humanely, if I see a +gentleman is in trouble that way. It only brings it up fresh in their +minds. + +—It’s not the wife anyhow, Nosey Flynn said. I met him the day before +yesterday and he coming out of that Irish farm dairy John Wyse Nolan’s +wife has in Henry street with a jar of cream in his hand taking it home +to his better half. She’s well nourished, I tell you. Plovers on toast. + +—And is he doing for the _Freeman?_ Davy Byrne said. + +Nosey Flynn pursed his lips. + +—He doesn’t buy cream on the ads he picks up. You can make bacon of +that. + +—How so? Davy Byrne asked, coming from his book. + +Nosey Flynn made swift passes in the air with juggling fingers. He +winked. + +—He’s in the craft, he said. + +—Do you tell me so? Davy Byrne said. + +—Very much so, Nosey Flynn said. Ancient free and accepted order. He’s +an excellent brother. Light, life and love, by God. They give him a leg +up. I was told that by a—well, I won’t say who. + +—Is that a fact? + +—O, it’s a fine order, Nosey Flynn said. They stick to you when you’re +down. I know a fellow was trying to get into it. But they’re as close +as damn it. By God they did right to keep the women out of it. + +Davy Byrne smiledyawnednodded all in one: + +—Iiiiiichaaaaaaach! + +—There was one woman, Nosey Flynn said, hid herself in a clock to find +out what they do be doing. But be damned but they smelt her out and +swore her in on the spot a master mason. That was one of the saint +Legers of Doneraile. + +Davy Byrne, sated after his yawn, said with tearwashed eyes: + +—And is that a fact? Decent quiet man he is. I often saw him in here +and I never once saw him—you know, over the line. + +—God Almighty couldn’t make him drunk, Nosey Flynn said firmly. Slips +off when the fun gets too hot. Didn’t you see him look at his watch? +Ah, you weren’t there. If you ask him to have a drink first thing he +does he outs with the watch to see what he ought to imbibe. Declare to +God he does. + +—There are some like that, Davy Byrne said. He’s a safe man, I’d say. + +—He’s not too bad, Nosey Flynn said, snuffling it up. He’s been known +to put his hand down too to help a fellow. Give the devil his due. O, +Bloom has his good points. But there’s one thing he’ll never do. + +His hand scrawled a dry pen signature beside his grog. + +—I know, Davy Byrne said. + +—Nothing in black and white, Nosey Flynn said. + +Paddy Leonard and Bantam Lyons came in. Tom Rochford followed frowning, +a plaining hand on his claret waistcoat. + +—Day, Mr Byrne. + +—Day, gentlemen. + +They paused at the counter. + +—Who’s standing? Paddy Leonard asked. + +—I’m sitting anyhow, Nosey Flynn answered. + +—Well, what’ll it be? Paddy Leonard asked. + +—I’ll take a stone ginger, Bantam Lyons said. + +—How much? Paddy Leonard cried. Since when, for God’ sake? What’s +yours, Tom? + +—How is the main drainage? Nosey Flynn asked, sipping. + +For answer Tom Rochford pressed his hand to his breastbone and +hiccupped. + +—Would I trouble you for a glass of fresh water, Mr Byrne? he said. + +—Certainly, sir. + +Paddy Leonard eyed his alemates. + +—Lord love a duck, he said. Look at what I’m standing drinks to! Cold +water and gingerpop! Two fellows that would suck whisky off a sore leg. +He has some bloody horse up his sleeve for the Gold cup. A dead snip. + +—Zinfandel is it? Nosey Flynn asked. + +Tom Rochford spilt powder from a twisted paper into the water set +before him. + +—That cursed dyspepsia, he said before drinking. + +—Breadsoda is very good, Davy Byrne said. + +Tom Rochford nodded and drank. + +—Is it Zinfandel? + +—Say nothing! Bantam Lyons winked. I’m going to plunge five bob on my +own. + +—Tell us if you’re worth your salt and be damned to you, Paddy Leonard +said. Who gave it to you? + +Mr Bloom on his way out raised three fingers in greeting. + +—So long! Nosey Flynn said. + +The others turned. + +—That’s the man now that gave it to me, Bantam Lyons whispered. + +—Prrwht! Paddy Leonard said with scorn. Mr Byrne, sir, we’ll take two +of your small Jamesons after that and a... + +—Stone ginger, Davy Byrne added civilly. + +—Ay, Paddy Leonard said. A suckingbottle for the baby. + +Mr Bloom walked towards Dawson street, his tongue brushing his teeth +smooth. Something green it would have to be: spinach, say. Then with +those Röntgen rays searchlight you could. + +At Duke lane a ravenous terrier choked up a sick knuckly cud on the +cobblestones and lapped it with new zest. Surfeit. Returned with thanks +having fully digested the contents. First sweet then savoury. Mr Bloom +coasted warily. Ruminants. His second course. Their upper jaw they +move. Wonder if Tom Rochford will do anything with that invention of +his? Wasting time explaining it to Flynn’s mouth. Lean people long +mouths. Ought to be a hall or a place where inventors could go in and +invent free. Course then you’d have all the cranks pestering. + +He hummed, prolonging in solemn echo the closes of the bars: + + Don Giovanni, a cenar teco + M’invitasti. + +Feel better. Burgundy. Good pick me up. Who distilled first? Some chap +in the blues. Dutch courage. That _Kilkenny People_ in the national +library now I must. + +Bare clean closestools waiting in the window of William Miller, +plumber, turned back his thoughts. They could: and watch it all the way +down, swallow a pin sometimes come out of the ribs years after, tour +round the body changing biliary duct spleen squirting liver gastric +juice coils of intestines like pipes. But the poor buffer would have to +stand all the time with his insides entrails on show. Science. + +—_A cenar teco._ + +What does that _teco_ mean? Tonight perhaps. + + Don Giovanni, thou hast me invited + To come to supper tonight, + The rum the rumdum. + +Doesn’t go properly. + +Keyes: two months if I get Nannetti to. That’ll be two pounds ten about +two pounds eight. Three Hynes owes me. Two eleven. Prescott’s dyeworks +van over there. If I get Billy Prescott’s ad: two fifteen. Five guineas +about. On the pig’s back. + +Could buy one of those silk petticoats for Molly, colour of her new +garters. + +Today. Today. Not think. + +Tour the south then. What about English wateringplaces? Brighton, +Margate. Piers by moonlight. Her voice floating out. Those lovely +seaside girls. Against John Long’s a drowsing loafer lounged in heavy +thought, gnawing a crusted knuckle. Handy man wants job. Small wages. +Will eat anything. + +Mr Bloom turned at Gray’s confectioner’s window of unbought tarts and +passed the reverend Thomas Connellan’s bookstore. _Why I left the +church of Rome? Birds’ Nest._ Women run him. They say they used to give +pauper children soup to change to protestants in the time of the potato +blight. Society over the way papa went to for the conversion of poor +jews. Same bait. Why we left the church of Rome. + +A blind stripling stood tapping the curbstone with his slender cane. No +tram in sight. Wants to cross. + +—Do you want to cross? Mr Bloom asked. + +The blind stripling did not answer. His wallface frowned weakly. He +moved his head uncertainly. + +—You’re in Dawson street, Mr Bloom said. Molesworth street is opposite. +Do you want to cross? There’s nothing in the way. + +The cane moved out trembling to the left. Mr Bloom’s eye followed its +line and saw again the dyeworks’ van drawn up before Drago’s. Where I +saw his brillantined hair just when I was. Horse drooping. Driver in +John Long’s. Slaking his drouth. + +—There’s a van there, Mr Bloom said, but it’s not moving. I’ll see you +across. Do you want to go to Molesworth street? + +—Yes, the stripling answered. South Frederick street. + +—Come, Mr Bloom said. + +He touched the thin elbow gently: then took the limp seeing hand to +guide it forward. + +Say something to him. Better not do the condescending. They mistrust +what you tell them. Pass a common remark. + +—The rain kept off. + +No answer. + +Stains on his coat. Slobbers his food, I suppose. Tastes all different +for him. Have to be spoonfed first. Like a child’s hand, his hand. Like +Milly’s was. Sensitive. Sizing me up I daresay from my hand. Wonder if +he has a name. Van. Keep his cane clear of the horse’s legs: tired +drudge get his doze. That’s right. Clear. Behind a bull: in front of a +horse. + +—Thanks, sir. + +Knows I’m a man. Voice. + +—Right now? First turn to the left. + +The blind stripling tapped the curbstone and went on his way, drawing +his cane back, feeling again. + +Mr Bloom walked behind the eyeless feet, a flatcut suit of herringbone +tweed. Poor young fellow! How on earth did he know that van was there? +Must have felt it. See things in their forehead perhaps: kind of sense +of volume. Weight or size of it, something blacker than the dark. +Wonder would he feel it if something was removed. Feel a gap. Queer +idea of Dublin he must have, tapping his way round by the stones. Could +he walk in a beeline if he hadn’t that cane? Bloodless pious face like +a fellow going in to be a priest. + +Penrose! That was that chap’s name. + +Look at all the things they can learn to do. Read with their fingers. +Tune pianos. Or we are surprised they have any brains. Why we think a +deformed person or a hunchback clever if he says something we might +say. Of course the other senses are more. Embroider. Plait baskets. +People ought to help. Workbasket I could buy for Molly’s birthday. +Hates sewing. Might take an objection. Dark men they call them. + +Sense of smell must be stronger too. Smells on all sides, bunched +together. Each street different smell. Each person too. Then the +spring, the summer: smells. Tastes? They say you can’t taste wines with +your eyes shut or a cold in the head. Also smoke in the dark they say +get no pleasure. + +And with a woman, for instance. More shameless not seeing. That girl +passing the Stewart institution, head in the air. Look at me. I have +them all on. Must be strange not to see her. Kind of a form in his +mind’s eye. The voice, temperatures: when he touches her with his +fingers must almost see the lines, the curves. His hands on her hair, +for instance. Say it was black, for instance. Good. We call it black. +Then passing over her white skin. Different feel perhaps. Feeling of +white. + +Postoffice. Must answer. Fag today. Send her a postal order two +shillings, half a crown. Accept my little present. Stationer’s just +here too. Wait. Think over it. + +With a gentle finger he felt ever so slowly the hair combed back above +his ears. Again. Fibres of fine fine straw. Then gently his finger felt +the skin of his right cheek. Downy hair there too. Not smooth enough. +The belly is the smoothest. No-one about. There he goes into Frederick +street. Perhaps to Levenston’s dancing academy piano. Might be settling +my braces. + +Walking by Doran’s publichouse he slid his hand between his waistcoat +and trousers and, pulling aside his shirt gently, felt a slack fold of +his belly. But I know it’s whitey yellow. Want to try in the dark to +see. + +He withdrew his hand and pulled his dress to. + +Poor fellow! Quite a boy. Terrible. Really terrible. What dreams would +he have, not seeing? Life a dream for him. Where is the justice being +born that way? All those women and children excursion beanfeast burned +and drowned in New York. Holocaust. Karma they call that transmigration +for sins you did in a past life the reincarnation met him pike hoses. +Dear, dear, dear. Pity, of course: but somehow you can’t cotton on to +them someway. + +Sir Frederick Falkiner going into the freemasons’ hall. Solemn as Troy. +After his good lunch in Earlsfort terrace. Old legal cronies cracking a +magnum. Tales of the bench and assizes and annals of the bluecoat +school. I sentenced him to ten years. I suppose he’d turn up his nose +at that stuff I drank. Vintage wine for them, the year marked on a +dusty bottle. Has his own ideas of justice in the recorder’s court. +Wellmeaning old man. Police chargesheets crammed with cases get their +percentage manufacturing crime. Sends them to the rightabout. The devil +on moneylenders. Gave Reuben J a great strawcalling. Now he’s really +what they call a dirty jew. Power those judges have. Crusty old topers +in wigs. Bear with a sore paw. And may the Lord have mercy on your +soul. + +Hello, placard. Mirus bazaar. His Excellency the lord lieutenant. +Sixteenth. Today it is. In aid of funds for Mercer’s hospital. _The +Messiah_ was first given for that. Yes. Handel. What about going out +there: Ballsbridge. Drop in on Keyes. No use sticking to him like a +leech. Wear out my welcome. Sure to know someone on the gate. + +Mr Bloom came to Kildare street. First I must. Library. + +Straw hat in sunlight. Tan shoes. Turnedup trousers. It is. It is. + +His heart quopped softly. To the right. Museum. Goddesses. He swerved +to the right. + +Is it? Almost certain. Won’t look. Wine in my face. Why did I? Too +heady. Yes, it is. The walk. Not see. Get on. + +Making for the museum gate with long windy steps he lifted his eyes. +Handsome building. Sir Thomas Deane designed. Not following me? + +Didn’t see me perhaps. Light in his eyes. + +The flutter of his breath came forth in short sighs. Quick. Cold +statues: quiet there. Safe in a minute. + +No. Didn’t see me. After two. Just at the gate. + +My heart! + +His eyes beating looked steadfastly at cream curves of stone. Sir +Thomas Deane was the Greek architecture. + +Look for something I. + +His hasty hand went quick into a pocket, took out, read unfolded +Agendath Netaim. Where did I? + +Busy looking. + +He thrust back quick Agendath. + +Afternoon she said. + +I am looking for that. Yes, that. Try all pockets. Handker. _Freeman._ +Where did I? Ah, yes. Trousers. Potato. Purse. Where? + +Hurry. Walk quietly. Moment more. My heart. + +His hand looking for the where did I put found in his hip pocket soap +lotion have to call tepid paper stuck. Ah soap there I yes. Gate. + +Safe! + + + + +[ 9 ] + + +Urbane, to comfort them, the quaker librarian purred: + +—And we have, have we not, those priceless pages of _Wilhelm Meister_. +A great poet on a great brother poet. A hesitating soul taking arms +against a sea of troubles, torn by conflicting doubts, as one sees in +real life. + +He came a step a sinkapace forward on neatsleather creaking and a step +backward a sinkapace on the solemn floor. + +A noiseless attendant setting open the door but slightly made him a +noiseless beck. + +—Directly, said he, creaking to go, albeit lingering. The beautiful +ineffectual dreamer who comes to grief against hard facts. One always +feels that Goethe’s judgments are so true. True in the larger analysis. + +Twicreakingly analysis he corantoed off. Bald, most zealous by the door +he gave his large ear all to the attendant’s words: heard them: and was +gone. + +Two left. + +—Monsieur de la Palice, Stephen sneered, was alive fifteen minutes +before his death. + +—Have you found those six brave medicals, John Eglinton asked with +elder’s gall, to write _Paradise Lost_ at your dictation? _The Sorrows +of Satan_ he calls it. + +Smile. Smile Cranly’s smile. + + First he tickled her + Then he patted her + Then he passed the female catheter + For he was a medical + Jolly old medi... + +—I feel you would need one more for _Hamlet._ Seven is dear to the +mystic mind. The shining seven W.B. calls them. + +Glittereyed his rufous skull close to his greencapped desklamp sought +the face bearded amid darkgreener shadow, an ollav, holyeyed. He +laughed low: a sizar’s laugh of Trinity: unanswered. + + Orchestral Satan, weeping many a rood + Tears such as angels weep. + Ed egli avea del cul fatto trombetta. + +He holds my follies hostage. + +Cranly’s eleven true Wicklowmen to free their sireland. Gaptoothed +Kathleen, her four beautiful green fields, the stranger in her house. +And one more to hail him: _ave, rabbi_: the Tinahely twelve. In the +shadow of the glen he cooees for them. My soul’s youth I gave him, +night by night. God speed. Good hunting. + +Mulligan has my telegram. + +Folly. Persist. + +—Our young Irish bards, John Eglinton censured, have yet to create a +figure which the world will set beside Saxon Shakespeare’s Hamlet +though I admire him, as old Ben did, on this side idolatry. + +—All these questions are purely academic, Russell oracled out of his +shadow. I mean, whether Hamlet is Shakespeare or James I or Essex. +Clergymen’s discussions of the historicity of Jesus. Art has to reveal +to us ideas, formless spiritual essences. The supreme question about a +work of art is out of how deep a life does it spring. The painting of +Gustave Moreau is the painting of ideas. The deepest poetry of Shelley, +the words of Hamlet bring our minds into contact with the eternal +wisdom, Plato’s world of ideas. All the rest is the speculation of +schoolboys for schoolboys. + +A. E. has been telling some yankee interviewer. Wall, tarnation strike +me! + +—The schoolmen were schoolboys first, Stephen said superpolitely. +Aristotle was once Plato’s schoolboy. + +—And has remained so, one should hope, John Eglinton sedately said. One +can see him, a model schoolboy with his diploma under his arm. + +He laughed again at the now smiling bearded face. + +Formless spiritual. Father, Word and Holy Breath. Allfather, the +heavenly man. Hiesos Kristos, magician of the beautiful, the Logos who +suffers in us at every moment. This verily is that. I am the fire upon +the altar. I am the sacrificial butter. + +Dunlop, Judge, the noblest Roman of them all, A.E., Arval, the Name +Ineffable, in heaven hight: K.H., their master, whose identity is no +secret to adepts. Brothers of the great white lodge always watching to +see if they can help. The Christ with the bridesister, moisture of +light, born of an ensouled virgin, repentant sophia, departed to the +plane of buddhi. The life esoteric is not for ordinary person. O.P. +must work off bad karma first. Mrs Cooper Oakley once glimpsed our very +illustrious sister H.P.B.’s elemental. + +O, fie! Out on’t! _Pfuiteufel!_ You naughtn’t to look, missus, so you +naughtn’t when a lady’s ashowing of her elemental. + +Mr Best entered, tall, young, mild, light. He bore in his hand with +grace a notebook, new, large, clean, bright. + +—That model schoolboy, Stephen said, would find Hamlet’s musings about +the afterlife of his princely soul, the improbable, insignificant and +undramatic monologue, as shallow as Plato’s. + +John Eglinton, frowning, said, waxing wroth: + +—Upon my word it makes my blood boil to hear anyone compare Aristotle +with Plato. + +—Which of the two, Stephen asked, would have banished me from his +commonwealth? + +Unsheathe your dagger definitions. Horseness is the whatness of +allhorse. Streams of tendency and eons they worship. God: noise in the +street: very peripatetic. Space: what you damn well have to see. +Through spaces smaller than red globules of man’s blood they +creepycrawl after Blake’s buttocks into eternity of which this +vegetable world is but a shadow. Hold to the now, the here, through +which all future plunges to the past. + +Mr Best came forward, amiable, towards his colleague. + +—Haines is gone, he said. + +—Is he? + +—I was showing him Jubainville’s book. He’s quite enthusiastic, don’t +you know, about Hyde’s _Lovesongs of Connacht._ I couldn’t bring him in +to hear the discussion. He’s gone to Gill’s to buy it. + + Bound thee forth, my booklet, quick + To greet the callous public. + Writ, I ween, ’twas not my wish + In lean unlovely English. + +—The peatsmoke is going to his head, John Eglinton opined. + +We feel in England. Penitent thief. Gone. I smoked his baccy. Green +twinkling stone. An emerald set in the ring of the sea. + +—People do not know how dangerous lovesongs can be, the auric egg of +Russell warned occultly. The movements which work revolutions in the +world are born out of the dreams and visions in a peasant’s heart on +the hillside. For them the earth is not an exploitable ground but the +living mother. The rarefied air of the academy and the arena produce +the sixshilling novel, the musichall song. France produces the finest +flower of corruption in Mallarmé but the desirable life is revealed +only to the poor of heart, the life of Homer’s Phæacians. + +From these words Mr Best turned an unoffending face to Stephen. + +—Mallarmé, don’t you know, he said, has written those wonderful prose +poems Stephen MacKenna used to read to me in Paris. The one about +_Hamlet._ He says: _il se promène, lisant au livre de lui-même_, don’t +you know, _reading the book of himself_. He describes _Hamlet_ given in +a French town, don’t you know, a provincial town. They advertised it. + +His free hand graciously wrote tiny signs in air. + +_Hamlet +ou +Le Distrait +Pièce de Shakespeare_ + + +He repeated to John Eglinton’s newgathered frown: + +—_Pièce de Shakespeare_, don’t you know. It’s so French. The French +point of view. _Hamlet ou_... + +—The absentminded beggar, Stephen ended. + +John Eglinton laughed. + +—Yes, I suppose it would be, he said. Excellent people, no doubt, but +distressingly shortsighted in some matters. + +Sumptuous and stagnant exaggeration of murder. + +—A deathsman of the soul Robert Greene called him, Stephen said. Not +for nothing was he a butcher’s son, wielding the sledded poleaxe and +spitting in his palms. Nine lives are taken off for his father’s one. +Our Father who art in purgatory. Khaki Hamlets don’t hesitate to shoot. +The bloodboltered shambles in act five is a forecast of the +concentration camp sung by Mr Swinburne. + +Cranly, I his mute orderly, following battles from afar. + + Whelps and dams of murderous foes whom none + But we had spared... + +Between the Saxon smile and yankee yawp. The devil and the deep sea. + +—He will have it that _Hamlet_ is a ghoststory, John Eglinton said for +Mr Best’s behoof. Like the fat boy in Pickwick he wants to make our +flesh creep. + + List! List! O List! + + +My flesh hears him: creeping, hears. + + If thou didst ever... + + +—What is a ghost? Stephen said with tingling energy. One who has faded +into impalpability through death, through absence, through change of +manners. Elizabethan London lay as far from Stratford as corrupt Paris +lies from virgin Dublin. Who is the ghost from _limbo patrum_, +returning to the world that has forgotten him? Who is King Hamlet? + +John Eglinton shifted his spare body, leaning back to judge. + +Lifted. + +—It is this hour of a day in mid June, Stephen said, begging with a +swift glance their hearing. The flag is up on the playhouse by the +bankside. The bear Sackerson growls in the pit near it, Paris garden. +Canvasclimbers who sailed with Drake chew their sausages among the +groundlings. + +Local colour. Work in all you know. Make them accomplices. + +—Shakespeare has left the huguenot’s house in Silver street and walks +by the swanmews along the riverbank. But he does not stay to feed the +pen chivying her game of cygnets towards the rushes. The swan of Avon +has other thoughts. + +Composition of place. Ignatius Loyola, make haste to help me! + +—The play begins. A player comes on under the shadow, made up in the +castoff mail of a court buck, a wellset man with a bass voice. It is +the ghost, the king, a king and no king, and the player is Shakespeare +who has studied _Hamlet_ all the years of his life which were not +vanity in order to play the part of the spectre. He speaks the words to +Burbage, the young player who stands before him beyond the rack of +cerecloth, calling him by a name: + + Hamlet, I am thy father’s spirit, + +bidding him list. To a son he speaks, the son of his soul, the prince, +young Hamlet and to the son of his body, Hamnet Shakespeare, who has +died in Stratford that his namesake may live for ever. + +Is it possible that that player Shakespeare, a ghost by absence, and in +the vesture of buried Denmark, a ghost by death, speaking his own words +to his own son’s name (had Hamnet Shakespeare lived he would have been +prince Hamlet’s twin), is it possible, I want to know, or probable that +he did not draw or foresee the logical conclusion of those premises: +you are the dispossessed son: I am the murdered father: your mother is +the guilty queen, Ann Shakespeare, born Hathaway? + +—But this prying into the family life of a great man, Russell began +impatiently. + +Art thou there, truepenny? + +—Interesting only to the parish clerk. I mean, we have the plays. I +mean when we read the poetry of _King Lear_ what is it to us how the +poet lived? As for living our servants can do that for us, Villiers de +l’Isle has said. Peeping and prying into greenroom gossip of the day, +the poet’s drinking, the poet’s debts. We have _King Lear_: and it is +immortal. + +Mr Best’s face, appealed to, agreed. + + Flow over them with your waves and with your waters, + Mananaan, Mananaan MacLir... + +How now, sirrah, that pound he lent you when you were hungry? + +Marry, I wanted it. + +Take thou this noble. + +Go to! You spent most of it in Georgina Johnson’s bed, clergyman’s +daughter. Agenbite of inwit. + +Do you intend to pay it back? + +O, yes. + +When? Now? + +Well... No. + +When, then? + +I paid my way. I paid my way. + +Steady on. He’s from beyant Boyne water. The northeast corner. You owe +it. + +Wait. Five months. Molecules all change. I am other I now. Other I got +pound. + +Buzz. Buzz. + +But I, entelechy, form of forms, am I by memory because under +everchanging forms. + +I that sinned and prayed and fasted. + +A child Conmee saved from pandies. + +I, I and I. I. + +A.E.I.O.U. + +—Do you mean to fly in the face of the tradition of three centuries? +John Eglinton’s carping voice asked. Her ghost at least has been laid +for ever. She died, for literature at least, before she was born. + +—She died, Stephen retorted, sixtyseven years after she was born. She +saw him into and out of the world. She took his first embraces. She +bore his children and she laid pennies on his eyes to keep his eyelids +closed when he lay on his deathbed. + +Mother’s deathbed. Candle. The sheeted mirror. Who brought me into this +world lies there, bronzelidded, under few cheap flowers. _Liliata +rutilantium._ + +I wept alone. + +John Eglinton looked in the tangled glowworm of his lamp. + +—The world believes that Shakespeare made a mistake, he said, and got +out of it as quickly and as best he could. + +—Bosh! Stephen said rudely. A man of genius makes no mistakes. His +errors are volitional and are the portals of discovery. + +Portals of discovery opened to let in the quaker librarian, +softcreakfooted, bald, eared and assiduous. + +—A shrew, John Eglinton said shrewdly, is not a useful portal of +discovery, one should imagine. What useful discovery did Socrates learn +from Xanthippe? + +—Dialectic, Stephen answered: and from his mother how to bring thoughts +into the world. What he learnt from his other wife Myrto (_absit +nomen!_), Socratididion’s Epipsychidion, no man, not a woman, will ever +know. But neither the midwife’s lore nor the caudlelectures saved him +from the archons of Sinn Fein and their naggin of hemlock. + +—But Ann Hathaway? Mr Best’s quiet voice said forgetfully. Yes, we seem +to be forgetting her as Shakespeare himself forgot her. + +His look went from brooder’s beard to carper’s skull, to remind, to +chide them not unkindly, then to the baldpink lollard costard, +guiltless though maligned. + +—He had a good groatsworth of wit, Stephen said, and no truant memory. +He carried a memory in his wallet as he trudged to Romeville whistling +_The girl I left behind me._ If the earthquake did not time it we +should know where to place poor Wat, sitting in his form, the cry of +hounds, the studded bridle and her blue windows. That memory, _Venus +and Adonis_, lay in the bedchamber of every light-of-love in London. Is +Katharine the shrew illfavoured? Hortensio calls her young and +beautiful. Do you think the writer of _Antony and Cleopatra_, a +passionate pilgrim, had his eyes in the back of his head that he chose +the ugliest doxy in all Warwickshire to lie withal? Good: he left her +and gained the world of men. But his boywomen are the women of a boy. +Their life, thought, speech are lent them by males. He chose badly? He +was chosen, it seems to me. If others have their will Ann hath a way. +By cock, she was to blame. She put the comether on him, sweet and +twentysix. The greyeyed goddess who bends over the boy Adonis, stooping +to conquer, as prologue to the swelling act, is a boldfaced Stratford +wench who tumbles in a cornfield a lover younger than herself. + +And my turn? When? + +Come! + +—Ryefield, Mr Best said brightly, gladly, raising his new book, gladly, +brightly. + +He murmured then with blond delight for all: + + Between the acres of the rye + These pretty countryfolk would lie. + +Paris: the wellpleased pleaser. + +A tall figure in bearded homespun rose from shadow and unveiled its +cooperative watch. + +—I am afraid I am due at the _Homestead._ + +Whither away? Exploitable ground. + +—Are you going? John Eglinton’s active eyebrows asked. Shall we see you +at Moore’s tonight? Piper is coming. + +—Piper! Mr Best piped. Is Piper back? + +Peter Piper pecked a peck of pick of peck of pickled pepper. + +—I don’t know if I can. Thursday. We have our meeting. If I can get +away in time. + +Yogibogeybox in Dawson chambers. _Isis Unveiled._ Their Pali book we +tried to pawn. Crosslegged under an umbrel umbershoot he thrones an +Aztec logos, functioning on astral levels, their oversoul, mahamahatma. +The faithful hermetists await the light, ripe for chelaship, +ringroundabout him. Louis H. Victory. T. Caulfield Irwin. Lotus ladies +tend them i’the eyes, their pineal glands aglow. Filled with his god, +he thrones, Buddh under plantain. Gulfer of souls, engulfer. Hesouls, +shesouls, shoals of souls. Engulfed with wailing creecries, whirled, +whirling, they bewail. + + In quintessential triviality + For years in this fleshcase a shesoul dwelt. + +—They say we are to have a literary surprise, the quaker librarian +said, friendly and earnest. Mr Russell, rumour has it, is gathering +together a sheaf of our younger poets’ verses. We are all looking +forward anxiously. + +Anxiously he glanced in the cone of lamplight where three faces, +lighted, shone. + +See this. Remember. + +Stephen looked down on a wide headless caubeen, hung on his +ashplanthandle over his knee. My casque and sword. Touch lightly with +two index fingers. Aristotle’s experiment. One or two? Necessity is +that in virtue of which it is impossible that one can be otherwise. +Argal, one hat is one hat. + +Listen. + +Young Colum and Starkey. George Roberts is doing the commercial part. +Longworth will give it a good puff in the _Express._ O, will he? I +liked Colum’s _Drover._ Yes, I think he has that queer thing genius. Do +you think he has genius really? Yeats admired his line: _As in wild +earth a Grecian vase_. Did he? I hope you’ll be able to come tonight. +Malachi Mulligan is coming too. Moore asked him to bring Haines. Did +you hear Miss Mitchell’s joke about Moore and Martyn? That Moore is +Martyn’s wild oats? Awfully clever, isn’t it? They remind one of Don +Quixote and Sancho Panza. Our national epic has yet to be written, Dr +Sigerson says. Moore is the man for it. A knight of the rueful +countenance here in Dublin. With a saffron kilt? O’Neill Russell? O, +yes, he must speak the grand old tongue. And his Dulcinea? James +Stephens is doing some clever sketches. We are becoming important, it +seems. + +Cordelia. _Cordoglio._ Lir’s loneliest daughter. + +Nookshotten. Now your best French polish. + +—Thank you very much, Mr Russell, Stephen said, rising. If you will be +so kind as to give the letter to Mr Norman... + +—O, yes. If he considers it important it will go in. We have so much +correspondence. + +—I understand, Stephen said. Thanks. + +God ild you. The pigs’ paper. Bullockbefriending. + +Synge has promised me an article for _Dana_ too. Are we going to be +read? I feel we are. The Gaelic league wants something in Irish. I hope +you will come round tonight. Bring Starkey. + +Stephen sat down. + +The quaker librarian came from the leavetakers. Blushing, his mask +said: + +—Mr Dedalus, your views are most illuminating. + +He creaked to and fro, tiptoing up nearer heaven by the altitude of a +chopine, and, covered by the noise of outgoing, said low: + +—Is it your view, then, that she was not faithful to the poet? + +Alarmed face asks me. Why did he come? Courtesy or an inward light? + +—Where there is a reconciliation, Stephen said, there must have been +first a sundering. + +—Yes. + +Christfox in leather trews, hiding, a runaway in blighted treeforks, +from hue and cry. Knowing no vixen, walking lonely in the chase. Women +he won to him, tender people, a whore of Babylon, ladies of justices, +bully tapsters’ wives. Fox and geese. And in New Place a slack +dishonoured body that once was comely, once as sweet, as fresh as +cinnamon, now her leaves falling, all, bare, frighted of the narrow +grave and unforgiven. + +—Yes. So you think... + +The door closed behind the outgoer. + +Rest suddenly possessed the discreet vaulted cell, rest of warm and +brooding air. + +A vestal’s lamp. + +Here he ponders things that were not: what Cæsar would have lived to do +had he believed the soothsayer: what might have been: possibilities of +the possible as possible: things not known: what name Achilles bore +when he lived among women. + +Coffined thoughts around me, in mummycases, embalmed in spice of words. +Thoth, god of libraries, a birdgod, moonycrowned. And I heard the voice +of that Egyptian highpriest. _In painted chambers loaded with +tilebooks._ + +They are still. Once quick in the brains of men. Still: but an itch of +death is in them, to tell me in my ear a maudlin tale, urge me to wreak +their will. + +—Certainly, John Eglinton mused, of all great men he is the most +enigmatic. We know nothing but that he lived and suffered. Not even so +much. Others abide our question. A shadow hangs over all the rest. + +—But _Hamlet_ is so personal, isn’t it? Mr Best pleaded. I mean, a kind +of private paper, don’t you know, of his private life. I mean, I don’t +care a button, don’t you know, who is killed or who is guilty... + +He rested an innocent book on the edge of the desk, smiling his +defiance. His private papers in the original. _Ta an bad ar an tir. +Taim in mo shagart_. Put beurla on it, littlejohn. + +Quoth littlejohn Eglinton: + +—I was prepared for paradoxes from what Malachi Mulligan told us but I +may as well warn you that if you want to shake my belief that +Shakespeare is Hamlet you have a stern task before you. + +Bear with me. + +Stephen withstood the bane of miscreant eyes glinting stern under +wrinkled brows. A basilisk. _E quando vede l’uomo l’attosca_. Messer +Brunetto, I thank thee for the word. + +—As we, or mother Dana, weave and unweave our bodies, Stephen said, +from day to day, their molecules shuttled to and fro, so does the +artist weave and unweave his image. And as the mole on my right breast +is where it was when I was born, though all my body has been woven of +new stuff time after time, so through the ghost of the unquiet father +the image of the unliving son looks forth. In the intense instant of +imagination, when the mind, Shelley says, is a fading coal, that which +I was is that which I am and that which in possibility I may come to +be. So in the future, the sister of the past, I may see myself as I sit +here now but by reflection from that which then I shall be. + +Drummond of Hawthornden helped you at that stile. + +—Yes, Mr Best said youngly. I feel Hamlet quite young. The bitterness +might be from the father but the passages with Ophelia are surely from +the son. + +Has the wrong sow by the lug. He is in my father. I am in his son. + +—That mole is the last to go, Stephen said, laughing. + +John Eglinton made a nothing pleasing mow. + +—If that were the birthmark of genius, he said, genius would be a drug +in the market. The plays of Shakespeare’s later years which Renan +admired so much breathe another spirit. + +—The spirit of reconciliation, the quaker librarian breathed. + +—There can be no reconciliation, Stephen said, if there has not been a +sundering. + +Said that. + +—If you want to know what are the events which cast their shadow over +the hell of time of _King Lear, Othello, Hamlet, Troilus and Cressida,_ +look to see when and how the shadow lifts. What softens the heart of a +man, shipwrecked in storms dire, Tried, like another Ulysses, Pericles, +prince of Tyre? + +Head, redconecapped, buffeted, brineblinded. + +—A child, a girl, placed in his arms, Marina. + +—The leaning of sophists towards the bypaths of apocrypha is a constant +quantity, John Eglinton detected. The highroads are dreary but they +lead to the town. + +Good Bacon: gone musty. Shakespeare Bacon’s wild oats. Cypherjugglers +going the highroads. Seekers on the great quest. What town, good +masters? Mummed in names: A. E., eon: Magee, John Eglinton. East of the +sun, west of the moon: _Tir na n-og_. Booted the twain and staved. + + How many miles to Dublin? + Three score and ten, sir. + Will we be there by candlelight? + +—Mr Brandes accepts it, Stephen said, as the first play of the closing +period. + +—Does he? What does Mr Sidney Lee, or Mr Simon Lazarus as some aver his +name is, say of it? + +—Marina, Stephen said, a child of storm, Miranda, a wonder, Perdita, +that which was lost. What was lost is given back to him: his daughter’s +child. _My dearest wife_, Pericles says, _was like this maid._ Will any +man love the daughter if he has not loved the mother? + +—The art of being a grandfather, Mr Best gan murmur. _L’art d’être +grand_... + +—Will he not see reborn in her, with the memory of his own youth added, +another image? + +Do you know what you are talking about? Love, yes. Word known to all +men. _Amor vero aliquid alicui bonum vult unde et ea quae concupiscimus +..._ + +—His own image to a man with that queer thing genius is the standard of +all experience, material and moral. Such an appeal will touch him. The +images of other males of his blood will repel him. He will see in them +grotesque attempts of nature to foretell or to repeat himself. + +The benign forehead of the quaker librarian enkindled rosily with hope. + +—I hope Mr Dedalus will work out his theory for the enlightenment of +the public. And we ought to mention another Irish commentator, Mr +George Bernard Shaw. Nor should we forget Mr Frank Harris. His articles +on Shakespeare in the _Saturday Review_ were surely brilliant. Oddly +enough he too draws for us an unhappy relation with the dark lady of +the sonnets. The favoured rival is William Herbert, earl of Pembroke. I +own that if the poet must be rejected such a rejection would seem more +in harmony with—what shall I say?—our notions of what ought not to have +been. + +Felicitously he ceased and held a meek head among them, auk’s egg, +prize of their fray. + +He thous and thees her with grave husbandwords. Dost love, Miriam? Dost +love thy man? + +—That may be too, Stephen said. There’s a saying of Goethe’s which Mr +Magee likes to quote. Beware of what you wish for in youth because you +will get it in middle life. Why does he send to one who is a +_buonaroba,_ a bay where all men ride, a maid of honour with a +scandalous girlhood, a lordling to woo for him? He was himself a lord +of language and had made himself a coistrel gentleman and he had +written _Romeo and Juliet_. Why? Belief in himself has been untimely +killed. He was overborne in a cornfield first (ryefield, I should say) +and he will never be a victor in his own eyes after nor play +victoriously the game of laugh and lie down. Assumed dongiovannism will +not save him. No later undoing will undo the first undoing. The tusk of +the boar has wounded him there where love lies ableeding. If the shrew +is worsted yet there remains to her woman’s invisible weapon. There is, +I feel in the words, some goad of the flesh driving him into a new +passion, a darker shadow of the first, darkening even his own +understanding of himself. A like fate awaits him and the two rages +commingle in a whirlpool. + +They list. And in the porches of their ears I pour. + +—The soul has been before stricken mortally, a poison poured in the +porch of a sleeping ear. But those who are done to death in sleep +cannot know the manner of their quell unless their Creator endow their +souls with that knowledge in the life to come. The poisoning and the +beast with two backs that urged it King Hamlet’s ghost could not know +of were he not endowed with knowledge by his creator. That is why the +speech (his lean unlovely English) is always turned elsewhere, +backward. Ravisher and ravished, what he would but would not, go with +him from Lucrece’s bluecircled ivory globes to Imogen’s breast, bare, +with its mole cinquespotted. He goes back, weary of the creation he has +piled up to hide him from himself, an old dog licking an old sore. But, +because loss is his gain, he passes on towards eternity in undiminished +personality, untaught by the wisdom he has written or by the laws he +has revealed. His beaver is up. He is a ghost, a shadow now, the wind +by Elsinore’s rocks or what you will, the sea’s voice, a voice heard +only in the heart of him who is the substance of his shadow, the son +consubstantial with the father. + +—Amen! was responded from the doorway. + +Hast thou found me, O mine enemy? + +_Entr’acte_. + +A ribald face, sullen as a dean’s, Buck Mulligan came forward, then +blithe in motley, towards the greeting of their smiles. My telegram. + +—You were speaking of the gaseous vertebrate, if I mistake not? he +asked of Stephen. + +Primrosevested he greeted gaily with his doffed Panama as with a +bauble. + +They make him welcome. _Was Du verlachst wirst Du noch dienen._ + +Brood of mockers: Photius, pseudomalachi, Johann Most. + +He Who Himself begot middler the Holy Ghost and Himself sent Himself, +Agenbuyer, between Himself and others, Who, put upon by His fiends, +stripped and whipped, was nailed like bat to barndoor, starved on +crosstree, Who let Him bury, stood up, harrowed hell, fared into heaven +and there these nineteen hundred years sitteth on the right hand of His +Own Self but yet shall come in the latter day to doom the quick and +dead when all the quick shall be dead already. + +[Illustration] + +He lifts his hands. Veils fall. O, flowers! Bells with bells with bells +aquiring. + +—Yes, indeed, the quaker librarian said. A most instructive discussion. +Mr Mulligan, I’ll be bound, has his theory too of the play and of +Shakespeare. All sides of life should be represented. + +He smiled on all sides equally. + +Buck Mulligan thought, puzzled: + +—Shakespeare? he said. I seem to know the name. + +A flying sunny smile rayed in his loose features. + +—To be sure, he said, remembering brightly. The chap that writes like +Synge. + +Mr Best turned to him. + +—Haines missed you, he said. Did you meet him? He’ll see you after at +the D. B. C. He’s gone to Gill’s to buy Hyde’s _Lovesongs of Connacht_. + +—I came through the museum, Buck Mulligan said. Was he here? + +—The bard’s fellowcountrymen, John Eglinton answered, are rather tired +perhaps of our brilliancies of theorising. I hear that an actress +played Hamlet for the fourhundredandeighth time last night in Dublin. +Vining held that the prince was a woman. Has no-one made him out to be +an Irishman? Judge Barton, I believe, is searching for some clues. He +swears (His Highness not His Lordship) by saint Patrick. + +—The most brilliant of all is that story of Wilde’s, Mr Best said, +lifting his brilliant notebook. That _Portrait of Mr W. H._ where he +proves that the sonnets were written by a Willie Hughes, a man all +hues. + +—For Willie Hughes, is it not? the quaker librarian asked. + +Or Hughie Wills? Mr William Himself. W. H.: who am I? + +—I mean, for Willie Hughes, Mr Best said, amending his gloss easily. Of +course it’s all paradox, don’t you know, Hughes and hews and hues, the +colour, but it’s so typical the way he works it out. It’s the very +essence of Wilde, don’t you know. The light touch. + +His glance touched their faces lightly as he smiled, a blond ephebe. +Tame essence of Wilde. + +You’re darned witty. Three drams of usquebaugh you drank with Dan +Deasy’s ducats. + +How much did I spend? O, a few shillings. + +For a plump of pressmen. Humour wet and dry. + +Wit. You would give your five wits for youth’s proud livery he pranks +in. Lineaments of gratified desire. + +There be many mo. Take her for me. In pairing time. Jove, a cool +ruttime send them. Yea, turtledove her. + +Eve. Naked wheatbellied sin. A snake coils her, fang in’s kiss. + +—Do you think it is only a paradox? the quaker librarian was asking. +The mocker is never taken seriously when he is most serious. + +They talked seriously of mocker’s seriousness. + +Buck Mulligan’s again heavy face eyed Stephen awhile. Then, his head +wagging, he came near, drew a folded telegram from his pocket. His +mobile lips read, smiling with new delight. + +—Telegram! he said. Wonderful inspiration! Telegram! A papal bull! + +He sat on a corner of the unlit desk, reading aloud joyfully: + +—_The sentimentalist is he who would enjoy without incurring the +immense debtorship for a thing done._ Signed: Dedalus. Where did you +launch it from? The kips? No. College Green. Have you drunk the four +quid? The aunt is going to call on your unsubstantial father. Telegram! +Malachi Mulligan, The Ship, lower Abbey street. O, you peerless mummer! +O, you priestified Kinchite! + +Joyfully he thrust message and envelope into a pocket but keened in a +querulous brogue: + +—It’s what I’m telling you, mister honey, it’s queer and sick we were, +Haines and myself, the time himself brought it in. ’Twas murmur we did +for a gallus potion would rouse a friar, I’m thinking, and he limp with +leching. And we one hour and two hours and three hours in Connery’s +sitting civil waiting for pints apiece. + +He wailed: + +—And we to be there, mavrone, and you to be unbeknownst sending us your +conglomerations the way we to have our tongues out a yard long like the +drouthy clerics do be fainting for a pussful. + +Stephen laughed. + +Quickly, warningfully Buck Mulligan bent down. + +—The tramper Synge is looking for you, he said, to murder you. He heard +you pissed on his halldoor in Glasthule. He’s out in pampooties to +murder you. + +—Me! Stephen exclaimed. That was your contribution to literature. + +Buck Mulligan gleefully bent back, laughing to the dark eavesdropping +ceiling. + +—Murder you! he laughed. + +Harsh gargoyle face that warred against me over our mess of hash of +lights in rue Saint-André-des-Arts. In words of words for words, +palabras. Oisin with Patrick. Faunman he met in Clamart woods, +brandishing a winebottle. _C’est vendredi saint!_ Murthering Irish. His +image, wandering, he met. I mine. I met a fool i’the forest. + +—Mr Lyster, an attendant said from the door ajar. + +—... in which everyone can find his own. So Mr Justice Madden in his +_Diary of Master William Silence_ has found the hunting terms... Yes? +What is it? + +—There’s a gentleman here, sir, the attendant said, coming forward and +offering a card. From the _Freeman._ He wants to see the files of the +_Kilkenny People_ for last year. + +—Certainly, certainly, certainly. Is the gentleman?... + +He took the eager card, glanced, not saw, laid down unglanced, looked, +asked, creaked, asked: + +—Is he?... O, there! + +Brisk in a galliard he was off, out. In the daylit corridor he talked +with voluble pains of zeal, in duty bound, most fair, most kind, most +honest broadbrim. + +—This gentleman? _Freeman’s Journal? Kilkenny People?_ To be sure. Good +day, sir. _Kilkenny_... We have certainly... + +A patient silhouette waited, listening. + +—All the leading provincial... _Northern Whig, Cork Examiner, +Enniscorthy Guardian,_ 1903... Will you please?... Evans, conduct this +gentleman... If you just follow the atten... Or, please allow me... +This way... Please, sir... + +Voluble, dutiful, he led the way to all the provincial papers, a bowing +dark figure following his hasty heels. + +The door closed. + +—The sheeny! Buck Mulligan cried. + +He jumped up and snatched the card. + +—What’s his name? Ikey Moses? Bloom. + +He rattled on: + +—Jehovah, collector of prepuces, is no more. I found him over in the +museum where I went to hail the foamborn Aphrodite. The Greek mouth +that has never been twisted in prayer. Every day we must do homage to +her. _Life of life, thy lips enkindle._ + +Suddenly he turned to Stephen: + +—He knows you. He knows your old fellow. O, I fear me, he is Greeker +than the Greeks. His pale Galilean eyes were upon her mesial groove. +Venus Kallipyge. O, the thunder of those loins! _The god pursuing the +maiden hid_. + +—We want to hear more, John Eglinton decided with Mr Best’s approval. +We begin to be interested in Mrs S. Till now we had thought of her, if +at all, as a patient Griselda, a Penelope stayathome. + +—Antisthenes, pupil of Gorgias, Stephen said, took the palm of beauty +from Kyrios Menelaus’ brooddam, Argive Helen, the wooden mare of Troy +in whom a score of heroes slept, and handed it to poor Penelope. Twenty +years he lived in London and, during part of that time, he drew a +salary equal to that of the lord chancellor of Ireland. His life was +rich. His art, more than the art of feudalism as Walt Whitman called +it, is the art of surfeit. Hot herringpies, green mugs of sack, +honeysauces, sugar of roses, marchpane, gooseberried pigeons, +ringocandies. Sir Walter Raleigh, when they arrested him, had half a +million francs on his back including a pair of fancy stays. The +gombeenwoman Eliza Tudor had underlinen enough to vie with her of +Sheba. Twenty years he dallied there between conjugial love and its +chaste delights and scortatory love and its foul pleasures. You know +Manningham’s story of the burgher’s wife who bade Dick Burbage to her +bed after she had seen him in _Richard III_ and how Shakespeare, +overhearing, without more ado about nothing, took the cow by the horns +and, when Burbage came knocking at the gate, answered from the capon’s +blankets: _William the conqueror came before Richard III_. And the gay +lakin, mistress Fitton, mount and cry O, and his dainty birdsnies, lady +Penelope Rich, a clean quality woman is suited for a player, and the +punks of the bankside, a penny a time. + +Cours la Reine. _Encore vingt sous. Nous ferons de petites +cochonneries. Minette? Tu veux?_ + +—The height of fine society. And sir William Davenant of Oxford’s +mother with her cup of canary for any cockcanary. + +Buck Mulligan, his pious eyes upturned, prayed: + +—Blessed Margaret Mary Anycock! + +—And Harry of six wives’ daughter. And other lady friends from +neighbour seats as Lawn Tennyson, gentleman poet, sings. But all those +twenty years what do you suppose poor Penelope in Stratford was doing +behind the diamond panes? + +Do and do. Thing done. In a rosery of Fetter lane of Gerard, herbalist, +he walks, greyedauburn. An azured harebell like her veins. Lids of +Juno’s eyes, violets. He walks. One life is all. One body. Do. But do. +Afar, in a reek of lust and squalor, hands are laid on whiteness. + +Buck Mulligan rapped John Eglinton’s desk sharply. + +—Whom do you suspect? he challenged. + +—Say that he is the spurned lover in the sonnets. Once spurned twice +spurned. But the court wanton spurned him for a lord, his dearmylove. + +Love that dare not speak its name. + +—As an Englishman, you mean, John sturdy Eglinton put in, he loved a +lord. + +Old wall where sudden lizards flash. At Charenton I watched them. + +—It seems so, Stephen said, when he wants to do for him, and for all +other and singular uneared wombs, the holy office an ostler does for +the stallion. Maybe, like Socrates, he had a midwife to mother as he +had a shrew to wife. But she, the giglot wanton, did not break a +bedvow. Two deeds are rank in that ghost’s mind: a broken vow and the +dullbrained yokel on whom her favour has declined, deceased husband’s +brother. Sweet Ann, I take it, was hot in the blood. Once a wooer, +twice a wooer. + +Stephen turned boldly in his chair. + +—The burden of proof is with you not with me, he said frowning. If you +deny that in the fifth scene of _Hamlet_ he has branded her with infamy +tell me why there is no mention of her during the thirtyfour years +between the day she married him and the day she buried him. All those +women saw their men down and under: Mary, her goodman John, Ann, her +poor dear Willun, when he went and died on her, raging that he was the +first to go, Joan, her four brothers, Judith, her husband and all her +sons, Susan, her husband too, while Susan’s daughter, Elizabeth, to use +granddaddy’s words, wed her second, having killed her first. + +O, yes, mention there is. In the years when he was living richly in +royal London to pay a debt she had to borrow forty shillings from her +father’s shepherd. Explain you then. Explain the swansong too wherein +he has commended her to posterity. + +He faced their silence. + +To whom thus Eglinton: You mean the will. +But that has been explained, I believe, by jurists. +She was entitled to her widow’s dower +At common law. His legal knowledge was great +Our judges tell us. + Him Satan fleers, +Mocker: + And therefore he left out her name +From the first draft but he did not leave out +The presents for his granddaughter, for his daughters, +For his sister, for his old cronies in Stratford +And in London. And therefore when he was urged, +As I believe, to name her +He left her his +Secondbest +Bed. + + _Punkt._ + +Leftherhis +Secondbest +Leftherhis +Bestabed +Secabest +Leftabed. + +Woa! + +—Pretty countryfolk had few chattels then, John Eglinton observed, as +they have still if our peasant plays are true to type. + +—He was a rich country gentleman, Stephen said, with a coat of arms and +landed estate at Stratford and a house in Ireland yard, a capitalist +shareholder, a bill promoter, a tithefarmer. Why did he not leave her +his best bed if he wished her to snore away the rest of her nights in +peace? + +—It is clear that there were two beds, a best and a secondbest, Mr +Secondbest Best said finely. + +—_Separatio a mensa et a thalamo_, bettered Buck Mulligan and was +smiled on. + +—Antiquity mentions famous beds, Second Eglinton puckered, bedsmiling. +Let me think. + +—Antiquity mentions that Stagyrite schoolurchin and bald heathen sage, +Stephen said, who when dying in exile frees and endows his slaves, pays +tribute to his elders, wills to be laid in earth near the bones of his +dead wife and bids his friends be kind to an old mistress (don’t forget +Nell Gwynn Herpyllis) and let her live in his villa. + +—Do you mean he died so? Mr Best asked with slight concern. I mean... + +—He died dead drunk, Buck Mulligan capped. A quart of ale is a dish for +a king. O, I must tell you what Dowden said! + +—What? asked Besteglinton. + +William Shakespeare and company, limited. The people’s William. For +terms apply: E. Dowden, Highfield house... + +—Lovely! Buck Mulligan suspired amorously. I asked him what he thought +of the charge of pederasty brought against the bard. He lifted his +hands and said: _All we can say is that life ran very high in those +days._ Lovely! + +Catamite. + +—The sense of beauty leads us astray, said beautifulinsadness Best to +ugling Eglinton. + +Steadfast John replied severe: + +—The doctor can tell us what those words mean. You cannot eat your cake +and have it. + +Sayest thou so? Will they wrest from us, from me, the palm of beauty? + +—And the sense of property, Stephen said. He drew Shylock out of his +own long pocket. The son of a maltjobber and moneylender he was himself +a cornjobber and moneylender, with ten tods of corn hoarded in the +famine riots. His borrowers are no doubt those divers of worship +mentioned by Chettle Falstaff who reported his uprightness of dealing. +He sued a fellowplayer for the price of a few bags of malt and exacted +his pound of flesh in interest for every money lent. How else could +Aubrey’s ostler and callboy get rich quick? All events brought grist to +his mill. Shylock chimes with the jewbaiting that followed the hanging +and quartering of the queen’s leech Lopez, his jew’s heart being +plucked forth while the sheeny was yet alive: _Hamlet_ and _Macbeth_ +with the coming to the throne of a Scotch philosophaster with a turn +for witchroasting. The lost armada is his jeer in _Love’s Labour Lost_. +His pageants, the histories, sail fullbellied on a tide of Mafeking +enthusiasm. Warwickshire jesuits are tried and we have a porter’s +theory of equivocation. The _Sea Venture_ comes home from Bermudas and +the play Renan admired is written with Patsy Caliban, our American +cousin. The sugared sonnets follow Sidney’s. As for fay Elizabeth, +otherwise carrotty Bess, the gross virgin who inspired _The Merry Wives +of Windsor_, let some meinherr from Almany grope his life long for +deephid meanings in the depths of the buckbasket. + +I think you’re getting on very nicely. Just mix up a mixture of +theolologicophilolological. _Mingo, minxi, mictum, mingere._ + +—Prove that he was a jew, John Eglinton dared, expectantly. Your dean +of studies holds he was a holy Roman. + +_Sufflaminandus sum._ + +—He was made in Germany, Stephen replied, as the champion French +polisher of Italian scandals. + +—A myriadminded man, Mr Best reminded. Coleridge called him +myriadminded. + +_Amplius. In societate humana hoc est maxime necessarium ut sit +amicitia inter multos._ + +—Saint Thomas, Stephen began... + +—_Ora pro nobis_, Monk Mulligan groaned, sinking to a chair. + +There he keened a wailing rune. + +—_Pogue mahone! Acushla machree!_ It’s destroyed we are from this day! +It’s destroyed we are surely! + +All smiled their smiles. + +—Saint Thomas, Stephen smiling said, whose gorbellied works I enjoy +reading in the original, writing of incest from a standpoint different +from that of the new Viennese school Mr Magee spoke of, likens it in +his wise and curious way to an avarice of the emotions. He means that +the love so given to one near in blood is covetously withheld from some +stranger who, it may be, hungers for it. Jews, whom christians tax with +avarice, are of all races the most given to intermarriage. Accusations +are made in anger. The christian laws which built up the hoards of the +jews (for whom, as for the lollards, storm was shelter) bound their +affections too with hoops of steel. Whether these be sins or virtues +old Nobodaddy will tell us at doomsday leet. But a man who holds so +tightly to what he calls his rights over what he calls his debts will +hold tightly also to what he calls his rights over her whom he calls +his wife. No sir smile neighbour shall covet his ox or his wife or his +manservant or his maidservant or his jackass. + +—Or his jennyass, Buck Mulligan antiphoned. + +—Gentle Will is being roughly handled, gentle Mr Best said gently. + +—Which will? gagged sweetly Buck Mulligan. We are getting mixed. + +—The will to live, John Eglinton philosophised, for poor Ann, Will’s +widow, is the will to die. + +_—Requiescat!_ Stephen prayed. + + What of all the will to do? + It has vanished long ago... + +—She lies laid out in stark stiffness in that secondbest bed, the +mobled queen, even though you prove that a bed in those days was as +rare as a motorcar is now and that its carvings were the wonder of +seven parishes. In old age she takes up with gospellers (one stayed +with her at New Place and drank a quart of sack the town council paid +for but in which bed he slept it skills not to ask) and heard she had a +soul. She read or had read to her his chapbooks preferring them to the +_Merry Wives_ and, loosing her nightly waters on the jordan, she +thought over _Hooks and Eyes for Believers’ Breeches_ and _The most +Spiritual Snuffbox to Make the Most Devout Souls Sneeze_. Venus has +twisted her lips in prayer. Agenbite of inwit: remorse of conscience. +It is an age of exhausted whoredom groping for its god. + +—History shows that to be true, _inquit Eglintonus Chronolologos_. The +ages succeed one another. But we have it on high authority that a man’s +worst enemies shall be those of his own house and family. I feel that +Russell is right. What do we care for his wife or father? I should say +that only family poets have family lives. Falstaff was not a family +man. I feel that the fat knight is his supreme creation. + +Lean, he lay back. Shy, deny thy kindred, the unco guid. Shy, supping +with the godless, he sneaks the cup. A sire in Ultonian Antrim bade it +him. Visits him here on quarter days. Mr Magee, sir, there’s a +gentleman to see you. Me? Says he’s your father, sir. Give me my +Wordsworth. Enter Magee Mor Matthew, a rugged rough rugheaded kern, in +strossers with a buttoned codpiece, his nether stocks bemired with +clauber of ten forests, a wand of wilding in his hand. + +Your own? He knows your old fellow. The widower. + +Hurrying to her squalid deathlair from gay Paris on the quayside I +touched his hand. The voice, new warmth, speaking. Dr Bob Kenny is +attending her. The eyes that wish me well. But do not know me. + +—A father, Stephen said, battling against hopelessness, is a necessary +evil. He wrote the play in the months that followed his father’s death. +If you hold that he, a greying man with two marriageable daughters, +with thirtyfive years of life, _nel mezzo del cammin di nostra vita_, +with fifty of experience, is the beardless undergraduate from +Wittenberg then you must hold that his seventyyear old mother is the +lustful queen. No. The corpse of John Shakespeare does not walk the +night. From hour to hour it rots and rots. He rests, disarmed of +fatherhood, having devised that mystical estate upon his son. +Boccaccio’s Calandrino was the first and last man who felt himself with +child. Fatherhood, in the sense of conscious begetting, is unknown to +man. It is a mystical estate, an apostolic succession, from only +begetter to only begotten. On that mystery and not on the madonna which +the cunning Italian intellect flung to the mob of Europe the church is +founded and founded irremovably because founded, like the world, macro +and microcosm, upon the void. Upon incertitude, upon unlikelihood. +_Amor matris_, subjective and objective genitive, may be the only true +thing in life. Paternity may be a legal fiction. Who is the father of +any son that any son should love him or he any son? + +What the hell are you driving at? + +I know. Shut up. Blast you. I have reasons. + +_Amplius. Adhuc. Iterum. Postea._ + +Are you condemned to do this? + +—They are sundered by a bodily shame so steadfast that the criminal +annals of the world, stained with all other incests and bestialities, +hardly record its breach. Sons with mothers, sires with daughters, +lesbic sisters, loves that dare not speak their name, nephews with +grandmothers, jailbirds with keyholes, queens with prize bulls. The son +unborn mars beauty: born, he brings pain, divides affection, increases +care. He is a new male: his growth is his father’s decline, his youth +his father’s envy, his friend his father’s enemy. + +In rue Monsieur-le-Prince I thought it. + +—What links them in nature? An instant of blind rut. + +Am I a father? If I were? + +Shrunken uncertain hand. + +—Sabellius, the African, subtlest heresiarch of all the beasts of the +field, held that the Father was Himself His Own Son. The bulldog of +Aquin, with whom no word shall be impossible, refutes him. Well: if the +father who has not a son be not a father can the son who has not a +father be a son? When Rutlandbaconsouthamptonshakespeare or another +poet of the same name in the comedy of errors wrote _Hamlet_ he was not +the father of his own son merely but, being no more a son, he was and +felt himself the father of all his race, the father of his own +grandfather, the father of his unborn grandson who, by the same token, +never was born, for nature, as Mr Magee understands her, abhors +perfection. + +Eglintoneyes, quick with pleasure, looked up shybrightly. Gladly +glancing, a merry puritan, through the twisted eglantine. + +Flatter. Rarely. But flatter. + +—Himself his own father, Sonmulligan told himself. Wait. I am big with +child. I have an unborn child in my brain. Pallas Athena! A play! The +play’s the thing! Let me parturiate! + +He clasped his paunchbrow with both birthaiding hands. + +—As for his family, Stephen said, his mother’s name lives in the forest +of Arden. Her death brought from him the scene with Volumnia in +_Coriolanus._ His boyson’s death is the deathscene of young Arthur in +_King John._ Hamlet, the black prince, is Hamnet Shakespeare. Who the +girls in _The Tempest_, in _Pericles,_ in _Winter’s Tale_ are we know. +Who Cleopatra, fleshpot of Egypt, and Cressid and Venus are we may +guess. But there is another member of his family who is recorded. + +—The plot thickens, John Eglinton said. + +The quaker librarian, quaking, tiptoed in, quake, his mask, quake, with +haste, quake, quack. + +Door closed. Cell. Day. + +They list. Three. They. + +I you he they. + +Come, mess. + +STEPHEN: He had three brothers, Gilbert, Edmund, Richard. Gilbert in +his old age told some cavaliers he got a pass for nowt from Maister +Gatherer one time mass he did and he seen his brud Maister Wull the +playwriter up in Lunnon in a wrastling play wud a man on’s back. The +playhouse sausage filled Gilbert’s soul. He is nowhere: but an Edmund +and a Richard are recorded in the works of sweet William. + +MAGEEGLINJOHN: Names! What’s in a name? + +BEST: That is my name, Richard, don’t you know. I hope you are going to +say a good word for Richard, don’t you know, for my sake. _(Laughter)_ + +BUCKMULLIGAN: (_Piano, diminuendo_) + + Then outspoke medical Dick + To his comrade medical Davy... + +STEPHEN: In his trinity of black Wills, the villain shakebags, Iago, +Richard Crookback, Edmund in _King Lear_, two bear the wicked uncles’ +names. Nay, that last play was written or being written while his +brother Edmund lay dying in Southwark. + +BEST: I hope Edmund is going to catch it. I don’t want Richard, my name +... + +_(Laughter)_ + +QUAKERLYSTER: (_A tempo_) But he that filches from me my good name... + +STEPHEN: _(Stringendo)_ He has hidden his own name, a fair name, +William, in the plays, a super here, a clown there, as a painter of old +Italy set his face in a dark corner of his canvas. He has revealed it +in the sonnets where there is Will in overplus. Like John o’Gaunt his +name is dear to him, as dear as the coat and crest he toadied for, on a +bend sable a spear or steeled argent, honorificabilitudinitatibus, +dearer than his glory of greatest shakescene in the country. What’s in +a name? That is what we ask ourselves in childhood when we write the +name that we are told is ours. A star, a daystar, a firedrake, rose at +his birth. It shone by day in the heavens alone, brighter than Venus in +the night, and by night it shone over delta in Cassiopeia, the +recumbent constellation which is the signature of his initial among the +stars. His eyes watched it, lowlying on the horizon, eastward of the +bear, as he walked by the slumberous summer fields at midnight +returning from Shottery and from her arms. + +Both satisfied. I too. + +Don’t tell them he was nine years old when it was quenched. + +And from her arms. + +Wait to be wooed and won. Ay, meacock. Who will woo you? + +Read the skies. _Autontimorumenos. Bous Stephanoumenos._ Where’s your +configuration? Stephen, Stephen, cut the bread even. S. D: _sua donna. +Già: di lui. Gelindo risolve di non amare S. D._ + +—What is that, Mr Dedalus? the quaker librarian asked. Was it a +celestial phenomenon? + +—A star by night, Stephen said. A pillar of the cloud by day. + +What more’s to speak? + +Stephen looked on his hat, his stick, his boots. + +_Stephanos,_ my crown. My sword. His boots are spoiling the shape of my +feet. Buy a pair. Holes in my socks. Handkerchief too. + +—You make good use of the name, John Eglinton allowed. Your own name is +strange enough. I suppose it explains your fantastical humour. + +Me, Magee and Mulligan. + +Fabulous artificer. The hawklike man. You flew. Whereto? +Newhaven-Dieppe, steerage passenger. Paris and back. Lapwing. Icarus. +_Pater, ait._ Seabedabbled, fallen, weltering. Lapwing you are. Lapwing +be. + +Mr Best eagerquietly lifted his book to say: + +—That’s very interesting because that brother motive, don’t you know, +we find also in the old Irish myths. Just what you say. The three +brothers Shakespeare. In Grimm too, don’t you know, the fairytales. The +third brother that always marries the sleeping beauty and wins the best +prize. + +Best of Best brothers. Good, better, best. + +The quaker librarian springhalted near. + +—I should like to know, he said, which brother you... I understand you +to suggest there was misconduct with one of the brothers... But perhaps +I am anticipating? + +He caught himself in the act: looked at all: refrained. + +An attendant from the doorway called: + +—Mr Lyster! Father Dineen wants... + +—O, Father Dineen! Directly. + +Swiftly rectly creaking rectly rectly he was rectly gone. + +John Eglinton touched the foil. + +—Come, he said. Let us hear what you have to say of Richard and Edmund. +You kept them for the last, didn’t you? + +—In asking you to remember those two noble kinsmen nuncle Richie and +nuncle Edmund, Stephen answered, I feel I am asking too much perhaps. A +brother is as easily forgotten as an umbrella. + +Lapwing. + +Where is your brother? Apothecaries’ hall. My whetstone. Him, then +Cranly, Mulligan: now these. Speech, speech. But act. Act speech. They +mock to try you. Act. Be acted on. + +Lapwing. + +I am tired of my voice, the voice of Esau. My kingdom for a drink. + +On. + +—You will say those names were already in the chronicles from which he +took the stuff of his plays. Why did he take them rather than others? +Richard, a whoreson crookback, misbegotten, makes love to a widowed Ann +(what’s in a name?), woos and wins her, a whoreson merry widow. Richard +the conqueror, third brother, came after William the conquered. The +other four acts of that play hang limply from that first. Of all his +kings Richard is the only king unshielded by Shakespeare’s reverence, +the angel of the world. Why is the underplot of _King Lear_ in which +Edmund figures lifted out of Sidney’s _Arcadia_ and spatchcocked on to +a Celtic legend older than history? + +—That was Will’s way, John Eglinton defended. We should not now combine +a Norse saga with an excerpt from a novel by George Meredith. _Que +voulez-vous?_ Moore would say. He puts Bohemia on the seacoast and +makes Ulysses quote Aristotle. + +—Why? Stephen answered himself. Because the theme of the false or the +usurping or the adulterous brother or all three in one is to +Shakespeare, what the poor are not, always with him. The note of +banishment, banishment from the heart, banishment from home, sounds +uninterruptedly from _The Two Gentlemen of Verona_ onward till Prospero +breaks his staff, buries it certain fathoms in the earth and drowns his +book. It doubles itself in the middle of his life, reflects itself in +another, repeats itself, protasis, epitasis, catastasis, catastrophe. +It repeats itself again when he is near the grave, when his married +daughter Susan, chip of the old block, is accused of adultery. But it +was the original sin that darkened his understanding, weakened his will +and left in him a strong inclination to evil. The words are those of my +lords bishops of Maynooth. An original sin and, like original sin, +committed by another in whose sin he too has sinned. It is between the +lines of his last written words, it is petrified on his tombstone under +which her four bones are not to be laid. Age has not withered it. +Beauty and peace have not done it away. It is in infinite variety +everywhere in the world he has created, in _Much Ado about Nothing_, +twice in _As you like It_, in _The Tempest_, in _Hamlet,_ in _Measure +for Measure_—and in all the other plays which I have not read. + +He laughed to free his mind from his mind’s bondage. + +Judge Eglinton summed up. + +—The truth is midway, he affirmed. He is the ghost and the prince. He +is all in all. + +—He is, Stephen said. The boy of act one is the mature man of act five. +All in all. In _Cymbeline,_ in _Othello_ he is bawd and cuckold. He +acts and is acted on. Lover of an ideal or a perversion, like José he +kills the real Carmen. His unremitting intellect is the hornmad Iago +ceaselessly willing that the moor in him shall suffer. + +—Cuckoo! Cuckoo! Cuck Mulligan clucked lewdly. O word of fear! + +Dark dome received, reverbed. + +—And what a character is Iago! undaunted John Eglinton exclaimed. When +all is said Dumas _fils_ (or is it Dumas _père?)_ is right. After God +Shakespeare has created most. + +—Man delights him not nor woman neither, Stephen said. He returns after +a life of absence to that spot of earth where he was born, where he has +always been, man and boy, a silent witness and there, his journey of +life ended, he plants his mulberrytree in the earth. Then dies. The +motion is ended. Gravediggers bury Hamlet _père_ and Hamlet _fils._ A +king and a prince at last in death, with incidental music. And, what +though murdered and betrayed, bewept by all frail tender hearts for, +Dane or Dubliner, sorrow for the dead is the only husband from whom +they refuse to be divorced. If you like the epilogue look long on it: +prosperous Prospero, the good man rewarded, Lizzie, grandpa’s lump of +love, and nuncle Richie, the bad man taken off by poetic justice to the +place where the bad niggers go. Strong curtain. He found in the world +without as actual what was in his world within as possible. Maeterlinck +says: _If Socrates leave his house today he will find the sage seated +on his doorstep. If Judas go forth tonight it is to Judas his steps +will tend._ Every life is many days, day after day. We walk through +ourselves, meeting robbers, ghosts, giants, old men, young men, wives, +widows, brothers-in-love, but always meeting ourselves. The playwright +who wrote the folio of this world and wrote it badly (He gave us light +first and the sun two days later), the lord of things as they are whom +the most Roman of catholics call _dio boia_, hangman god, is doubtless +all in all in all of us, ostler and butcher, and would be bawd and +cuckold too but that in the economy of heaven, foretold by Hamlet, +there are no more marriages, glorified man, an androgynous angel, being +a wife unto himself. + +_—Eureka!_ Buck Mulligan cried. _Eureka!_ + +Suddenly happied he jumped up and reached in a stride John Eglinton’s +desk. + +—May I? he said. The Lord has spoken to Malachi. + +He began to scribble on a slip of paper. + +Take some slips from the counter going out. + +—Those who are married, Mr Best, douce herald, said, all save one, +shall live. The rest shall keep as they are. + +He laughed, unmarried, at Eglinton Johannes, of arts a bachelor. + +Unwed, unfancied, ware of wiles, they fingerponder nightly each his +variorum edition of _The Taming of the Shrew._ + +—You are a delusion, said roundly John Eglinton to Stephen. You have +brought us all this way to show us a French triangle. Do you believe +your own theory? + +—No, Stephen said promptly. + +—Are you going to write it? Mr Best asked. You ought to make it a +dialogue, don’t you know, like the Platonic dialogues Wilde wrote. + +John Eclecticon doubly smiled. + +—Well, in that case, he said, I don’t see why you should expect payment +for it since you don’t believe it yourself. Dowden believes there is +some mystery in _Hamlet_ but will say no more. Herr Bleibtreu, the man +Piper met in Berlin, who is working up that Rutland theory, believes +that the secret is hidden in the Stratford monument. He is going to +visit the present duke, Piper says, and prove to him that his ancestor +wrote the plays. It will come as a surprise to his grace. But he +believes his theory. + +I believe, O Lord, help my unbelief. That is, help me to believe or +help me to unbelieve? Who helps to believe? _Egomen._ Who to unbelieve? +Other chap. + +—You are the only contributor to _Dana_ who asks for pieces of silver. +Then I don’t know about the next number. Fred Ryan wants space for an +article on economics. + +Fraidrine. Two pieces of silver he lent me. Tide you over. Economics. + +—For a guinea, Stephen said, you can publish this interview. + +Buck Mulligan stood up from his laughing scribbling, laughing: and then +gravely said, honeying malice: + +—I called upon the bard Kinch at his summer residence in upper +Mecklenburgh street and found him deep in the study of the _Summa +contra Gentiles_ in the company of two gonorrheal ladies, Fresh Nelly +and Rosalie, the coalquay whore. + +He broke away. + +—Come, Kinch. Come, wandering Ængus of the birds. + +Come, Kinch. You have eaten all we left. Ay. I will serve you your orts +and offals. + +Stephen rose. + +Life is many days. This will end. + +—We shall see you tonight, John Eglinton said. _Notre ami_ Moore says +Malachi Mulligan must be there. + +Buck Mulligan flaunted his slip and panama. + +—Monsieur Moore, he said, lecturer on French letters to the youth of +Ireland. I’ll be there. Come, Kinch, the bards must drink. Can you walk +straight? + +Laughing, he... + +Swill till eleven. Irish nights entertainment. + +Lubber... + +Stephen followed a lubber... + +One day in the national library we had a discussion. Shakes. After. His +lub back: I followed. I gall his kibe. + +Stephen, greeting, then all amort, followed a lubber jester, a +wellkempt head, newbarbered, out of the vaulted cell into a shattering +daylight of no thought. + +What have I learned? Of them? Of me? + +Walk like Haines now. + +The constant readers’ room. In the readers’ book Cashel Boyle O’Connor +Fitzmaurice Tisdall Farrell parafes his polysyllables. Item: was Hamlet +mad? The quaker’s pate godlily with a priesteen in booktalk. + +—O please do, sir... I shall be most pleased... + +Amused Buck Mulligan mused in pleasant murmur with himself, +selfnodding: + +—A pleased bottom. + +The turnstile. + +Is that?... Blueribboned hat... Idly writing... What? Looked?... + +The curving balustrade: smoothsliding Mincius. + +Puck Mulligan, panamahelmeted, went step by step, iambing, trolling: + + John Eglinton, my jo, John, + Why won’t you wed a wife? + +He spluttered to the air: + +—O, the chinless Chinaman! Chin Chon Eg Lin Ton. We went over to their +playbox, Haines and I, the plumbers’ hall. Our players are creating a +new art for Europe like the Greeks or M. Maeterlinck. Abbey Theatre! I +smell the pubic sweat of monks. + +He spat blank. + +Forgot: any more than he forgot the whipping lousy Lucy gave him. And +left the _femme de trente ans._ And why no other children born? And his +first child a girl? + +Afterwit. Go back. + +The dour recluse still there (he has his cake) and the douce youngling, +minion of pleasure, Phedo’s toyable fair hair. + +Eh... I just eh... wanted... I forgot... he... + +—Longworth and M’Curdy Atkinson were there... + +Puck Mulligan footed featly, trilling: + + I hardly hear the purlieu cry + Or a Tommy talk as I pass one by + Before my thoughts begin to run + On F. M’Curdy Atkinson, + The same that had the wooden leg + And that filibustering filibeg + That never dared to slake his drouth, + Magee that had the chinless mouth. + Being afraid to marry on earth + They masturbated for all they were worth. + +Jest on. Know thyself. + +Halted, below me, a quizzer looks at me. I halt. + +—Mournful mummer, Buck Mulligan moaned. Synge has left off wearing +black to be like nature. Only crows, priests and English coal are +black. + +A laugh tripped over his lips. + +—Longworth is awfully sick, he said, after what you wrote about that +old hake Gregory. O you inquisitional drunken jewjesuit! She gets you a +job on the paper and then you go and slate her drivel to Jaysus. +Couldn’t you do the Yeats touch? + +He went on and down, mopping, chanting with waving graceful arms: + +—The most beautiful book that has come out of our country in my time. +One thinks of Homer. + +He stopped at the stairfoot. + +—I have conceived a play for the mummers, he said solemnly. + +The pillared Moorish hall, shadows entwined. Gone the nine men’s +morrice with caps of indices. + +In sweetly varying voices Buck Mulligan read his tablet: + +_Everyman His Own Wife +or +A Honeymoon in the Hand +(a national immorality in three orgasms) +by +Ballocky Mulligan._ + + +He turned a happy patch’s smirk to Stephen, saying: + +—The disguise, I fear, is thin. But listen. + +He read, _marcato:_ + +—Characters: + + TOBY TOSTOFF (a ruined Pole) + CRAB (a bushranger) + MEDICAL DICK ) + and ) (two birds with one stone) + MEDICAL DAVY ) + MOTHER GROGAN (a watercarrier) + FRESH NELLY + and + ROSALIE (the coalquay whore). + +He laughed, lolling a to and fro head, walking on, followed by Stephen: +and mirthfully he told the shadows, souls of men: + +—O, the night in the Camden hall when the daughters of Erin had to lift +their skirts to step over you as you lay in your mulberrycoloured, +multicoloured, multitudinous vomit! + +—The most innocent son of Erin, Stephen said, for whom they ever lifted +them. + +About to pass through the doorway, feeling one behind, he stood aside. + +Part. The moment is now. Where then? If Socrates leave his house today, +if Judas go forth tonight. Why? That lies in space which I in time must +come to, ineluctably. + +My will: his will that fronts me. Seas between. + +A man passed out between them, bowing, greeting. + +—Good day again, Buck Mulligan said. + +The portico. + +Here I watched the birds for augury. Ængus of the birds. They go, they +come. Last night I flew. Easily flew. Men wondered. Street of harlots +after. A creamfruit melon he held to me. In. You will see. + +—The wandering jew, Buck Mulligan whispered with clown’s awe. Did you +see his eye? He looked upon you to lust after you. I fear thee, ancient +mariner. O, Kinch, thou art in peril. Get thee a breechpad. + +Manner of Oxenford. + +Day. Wheelbarrow sun over arch of bridge. + +A dark back went before them, step of a pard, down, out by the gateway, +under portcullis barbs. + +They followed. + +Offend me still. Speak on. + +Kind air defined the coigns of houses in Kildare street. No birds. +Frail from the housetops two plumes of smoke ascended, pluming, and in +a flaw of softness softly were blown. + +Cease to strive. Peace of the druid priests of Cymbeline: hierophantic: +from wide earth an altar. + + Laud we the gods + And let our crooked smokes climb to their nostrils + From our bless’d altars. + + + + +[ 10 ] + + +The superior, the very reverend John Conmee S. J. reset his smooth +watch in his interior pocket as he came down the presbytery steps. Five +to three. Just nice time to walk to Artane. What was that boy’s name +again? Dignam. Yes. _Vere dignum et iustum est._ Brother Swan was the +person to see. Mr Cunningham’s letter. Yes. Oblige him, if possible. +Good practical catholic: useful at mission time. + +A onelegged sailor, swinging himself onward by lazy jerks of his +crutches, growled some notes. He jerked short before the convent of the +sisters of charity and held out a peaked cap for alms towards the very +reverend John Conmee S. J. Father Conmee blessed him in the sun for his +purse held, he knew, one silver crown. + +Father Conmee crossed to Mountjoy square. He thought, but not for long, +of soldiers and sailors, whose legs had been shot off by cannonballs, +ending their days in some pauper ward, and of cardinal Wolsey’s words: +_If I had served my God as I have served my king He would not have +abandoned me in my old days._ He walked by the treeshade of +sunnywinking leaves: and towards him came the wife of Mr David Sheehy +M.P. + +—Very well, indeed, father. And you, father? + +Father Conmee was wonderfully well indeed. He would go to Buxton +probably for the waters. And her boys, were they getting on well at +Belvedere? Was that so? Father Conmee was very glad indeed to hear +that. And Mr Sheehy himself? Still in London. The house was still +sitting, to be sure it was. Beautiful weather it was, delightful +indeed. Yes, it was very probable that Father Bernard Vaughan would +come again to preach. O, yes: a very great success. A wonderful man +really. + +Father Conmee was very glad to see the wife of Mr David Sheehy M.P. +looking so well and he begged to be remembered to Mr David Sheehy M.P. +Yes, he would certainly call. + +—Good afternoon, Mrs Sheehy. + +Father Conmee doffed his silk hat and smiled, as he took leave, at the +jet beads of her mantilla inkshining in the sun. And smiled yet again, +in going. He had cleaned his teeth, he knew, with arecanut paste. + +Father Conmee walked and, walking, smiled for he thought on Father +Bernard Vaughan’s droll eyes and cockney voice. + +—Pilate! Wy don’t you old back that owlin mob? + +A zealous man, however. Really he was. And really did great good in his +way. Beyond a doubt. He loved Ireland, he said, and he loved the Irish. +Of good family too would one think it? Welsh, were they not? + +O, lest he forget. That letter to father provincial. + +Father Conmee stopped three little schoolboys at the corner of Mountjoy +square. Yes: they were from Belvedere. The little house. Aha. And were +they good boys at school? O. That was very good now. And what was his +name? Jack Sohan. And his name? Ger. Gallaher. And the other little +man? His name was Brunny Lynam. O, that was a very nice name to have. + +Father Conmee gave a letter from his breast to Master Brunny Lynam and +pointed to the red pillarbox at the corner of Fitzgibbon street. + +—But mind you don’t post yourself into the box, little man, he said. + +The boys sixeyed Father Conmee and laughed: + +—O, sir. + +—Well, let me see if you can post a letter, Father Conmee said. + +Master Brunny Lynam ran across the road and put Father Conmee’s letter +to father provincial into the mouth of the bright red letterbox. Father +Conmee smiled and nodded and smiled and walked along Mountjoy square +east. + +Mr Denis J Maginni, professor of dancing &c, in silk hat, slate +frockcoat with silk facings, white kerchief tie, tight lavender +trousers, canary gloves and pointed patent boots, walking with grave +deportment most respectfully took the curbstone as he passed lady +Maxwell at the corner of Dignam’s court. + +Was that not Mrs M’Guinness? + +Mrs M’Guinness, stately, silverhaired, bowed to Father Conmee from the +farther footpath along which she sailed. And Father Conmee smiled and +saluted. How did she do? + +A fine carriage she had. Like Mary, queen of Scots, something. And to +think that she was a pawnbroker! Well, now! Such a... what should he +say?... such a queenly mien. + +Father Conmee walked down Great Charles street and glanced at the +shutup free church on his left. The reverend T. R. Greene B.A. will +(D.V.) speak. The incumbent they called him. He felt it incumbent on +him to say a few words. But one should be charitable. Invincible +ignorance. They acted according to their lights. + +Father Conmee turned the corner and walked along the North Circular +road. It was a wonder that there was not a tramline in such an +important thoroughfare. Surely, there ought to be. + +A band of satchelled schoolboys crossed from Richmond street. All +raised untidy caps. Father Conmee greeted them more than once benignly. +Christian brother boys. + +Father Conmee smelt incense on his right hand as he walked. Saint +Joseph’s church, Portland row. For aged and virtuous females. Father +Conmee raised his hat to the Blessed Sacrament. Virtuous: but +occasionally they were also badtempered. + +Near Aldborough house Father Conmee thought of that spendthrift +nobleman. And now it was an office or something. + +Father Conmee began to walk along the North Strand road and was saluted +by Mr William Gallagher who stood in the doorway of his shop. Father +Conmee saluted Mr William Gallagher and perceived the odours that came +from baconflitches and ample cools of butter. He passed Grogan’s the +Tobacconist against which newsboards leaned and told of a dreadful +catastrophe in New York. In America those things were continually +happening. Unfortunate people to die like that, unprepared. Still, an +act of perfect contrition. + +Father Conmee went by Daniel Bergin’s publichouse against the window of +which two unlabouring men lounged. They saluted him and were saluted. + +Father Conmee passed H. J. O’Neill’s funeral establishment where Corny +Kelleher totted figures in the daybook while he chewed a blade of hay. +A constable on his beat saluted Father Conmee and Father Conmee saluted +the constable. In Youkstetter’s, the porkbutcher’s, Father Conmee +observed pig’s puddings, white and black and red, lie neatly curled in +tubes. + +Moored under the trees of Charleville Mall Father Conmee saw a +turfbarge, a towhorse with pendent head, a bargeman with a hat of dirty +straw seated amidships, smoking and staring at a branch of poplar above +him. It was idyllic: and Father Conmee reflected on the providence of +the Creator who had made turf to be in bogs whence men might dig it out +and bring it to town and hamlet to make fires in the houses of poor +people. + +On Newcomen bridge the very reverend John Conmee S. J. of saint Francis +Xavier’s church, upper Gardiner street, stepped on to an outward bound +tram. + +Off an inward bound tram stepped the reverend Nicholas Dudley C. C. of +saint Agatha’s church, north William street, on to Newcomen bridge. + +At Newcomen bridge Father Conmee stepped into an outward bound tram for +he disliked to traverse on foot the dingy way past Mud Island. + +Father Conmee sat in a corner of the tramcar, a blue ticket tucked with +care in the eye of one plump kid glove, while four shillings, a +sixpence and five pennies chuted from his other plump glovepalm into +his purse. Passing the ivy church he reflected that the ticket +inspector usually made his visit when one had carelessly thrown away +the ticket. The solemnity of the occupants of the car seemed to Father +Conmee excessive for a journey so short and cheap. Father Conmee liked +cheerful decorum. + +It was a peaceful day. The gentleman with the glasses opposite Father +Conmee had finished explaining and looked down. His wife, Father Conmee +supposed. A tiny yawn opened the mouth of the wife of the gentleman +with the glasses. She raised her small gloved fist, yawned ever so +gently, tiptapping her small gloved fist on her opening mouth and +smiled tinily, sweetly. + +Father Conmee perceived her perfume in the car. He perceived also that +the awkward man at the other side of her was sitting on the edge of the +seat. + +Father Conmee at the altarrails placed the host with difficulty in the +mouth of the awkward old man who had the shaky head. + +At Annesley bridge the tram halted and, when it was about to go, an old +woman rose suddenly from her place to alight. The conductor pulled the +bellstrap to stay the car for her. She passed out with her basket and a +marketnet: and Father Conmee saw the conductor help her and net and +basket down: and Father Conmee thought that, as she had nearly passed +the end of the penny fare, she was one of those good souls who had +always to be told twice _bless you, my child,_ that they have been +absolved, _pray for me._ But they had so many worries in life, so many +cares, poor creatures. + +From the hoardings Mr Eugene Stratton grimaced with thick niggerlips at +Father Conmee. + +Father Conmee thought of the souls of black and brown and yellow men +and of his sermon on saint Peter Claver S. J. and the African mission +and of the propagation of the faith and of the millions of black and +brown and yellow souls that had not received the baptism of water when +their last hour came like a thief in the night. That book by the +Belgian jesuit, _Le Nombre des Élus,_ seemed to Father Conmee a +reasonable plea. Those were millions of human souls created by God in +His Own likeness to whom the faith had not (D.V.) been brought. But +they were God’s souls, created by God. It seemed to Father Conmee a +pity that they should all be lost, a waste, if one might say. + +At the Howth road stop Father Conmee alighted, was saluted by the +conductor and saluted in his turn. + +The Malahide road was quiet. It pleased Father Conmee, road and name. +The joybells were ringing in gay Malahide. Lord Talbot de Malahide, +immediate hereditary lord admiral of Malahide and the seas adjoining. +Then came the call to arms and she was maid, wife and widow in one day. +Those were old worldish days, loyal times in joyous townlands, old +times in the barony. + +Father Conmee, walking, thought of his little book _Old Times in the +Barony_ and of the book that might be written about jesuit houses and +of Mary Rochfort, daughter of lord Molesworth, first countess of +Belvedere. + +A listless lady, no more young, walked alone the shore of lough Ennel, +Mary, first countess of Belvedere, listlessly walking in the evening, +not startled when an otter plunged. Who could know the truth? Not the +jealous lord Belvedere and not her confessor if she had not committed +adultery fully, _eiaculatio seminis inter vas naturale mulieris,_ with +her husband’s brother? She would half confess if she had not all sinned +as women did. Only God knew and she and he, her husband’s brother. + +Father Conmee thought of that tyrannous incontinence, needed however +for man’s race on earth, and of the ways of God which were not our +ways. + +Don John Conmee walked and moved in times of yore. He was humane and +honoured there. He bore in mind secrets confessed and he smiled at +smiling noble faces in a beeswaxed drawingroom, ceiled with full fruit +clusters. And the hands of a bride and of a bridegroom, noble to noble, +were impalmed by Don John Conmee. + +It was a charming day. + +The lychgate of a field showed Father Conmee breadths of cabbages, +curtseying to him with ample underleaves. The sky showed him a flock of +small white clouds going slowly down the wind. _Moutonner,_ the French +said. A just and homely word. + +Father Conmee, reading his office, watched a flock of muttoning clouds +over Rathcoffey. His thinsocked ankles were tickled by the stubble of +Clongowes field. He walked there, reading in the evening, and heard the +cries of the boys’ lines at their play, young cries in the quiet +evening. He was their rector: his reign was mild. + +Father Conmee drew off his gloves and took his rededged breviary out. +An ivory bookmark told him the page. + +Nones. He should have read that before lunch. But lady Maxwell had +come. + +Father Conmee read in secret _Pater_ and _Ave_ and crossed his breast. +_Deus in adiutorium._ + +He walked calmly and read mutely the nones, walking and reading till he +came to _Res_ in _Beati immaculati: Principium verborum tuorum veritas: +in eternum omnia iudicia iustitiæ tuæ._ + +A flushed young man came from a gap of a hedge and after him came a +young woman with wild nodding daisies in her hand. The young man raised +his cap abruptly: the young woman abruptly bent and with slow care +detached from her light skirt a clinging twig. + +Father Conmee blessed both gravely and turned a thin page of his +breviary. _Sin: Principes persecuti sunt me gratis: et a verbis tuis +formidavit cor meum._ + +* * * + + +Corny Kelleher closed his long daybook and glanced with his drooping +eye at a pine coffinlid sentried in a corner. He pulled himself erect, +went to it and, spinning it on its axle, viewed its shape and brass +furnishings. Chewing his blade of hay he laid the coffinlid by and came +to the doorway. There he tilted his hatbrim to give shade to his eyes +and leaned against the doorcase, looking idly out. + +Father John Conmee stepped into the Dollymount tram on Newcomen bridge. + +Corny Kelleher locked his largefooted boots and gazed, his hat +downtilted, chewing his blade of hay. + +Constable 57C, on his beat, stood to pass the time of day. + +—That’s a fine day, Mr Kelleher. + +—Ay, Corny Kelleher said. + +—It’s very close, the constable said. + +Corny Kelleher sped a silent jet of hayjuice arching from his mouth +while a generous white arm from a window in Eccles street flung forth a +coin. + +—What’s the best news? he asked. + +—I seen that particular party last evening, the constable said with +bated breath. + +* * * + + +A onelegged sailor crutched himself round MacConnell’s corner, skirting +Rabaiotti’s icecream car, and jerked himself up Eccles street. Towards +Larry O’Rourke, in shirtsleeves in his doorway, he growled unamiably: + +—_For England_... + +He swung himself violently forward past Katey and Boody Dedalus, halted +and growled: + +—_home and beauty._ + +J. J. O’Molloy’s white careworn face was told that Mr Lambert was in +the warehouse with a visitor. + +A stout lady stopped, took a copper coin from her purse and dropped it +into the cap held out to her. The sailor grumbled thanks, glanced +sourly at the unheeding windows, sank his head and swung himself +forward four strides. + +He halted and growled angrily: + +—_For England_... + +Two barefoot urchins, sucking long liquorice laces, halted near him, +gaping at his stump with their yellowslobbered mouths. + +He swung himself forward in vigorous jerks, halted, lifted his head +towards a window and bayed deeply: + +—_home and beauty._ + +The gay sweet chirping whistling within went on a bar or two, ceased. +The blind of the window was drawn aside. A card _Unfurnished +Apartments_ slipped from the sash and fell. A plump bare generous arm +shone, was seen, held forth from a white petticoatbodice and taut +shiftstraps. A woman’s hand flung forth a coin over the area railings. +It fell on the path. + +One of the urchins ran to it, picked it up and dropped it into the +minstrel’s cap, saying: + +—There, sir. + +* * * + + +Katey and Boody Dedalus shoved in the door of the closesteaming +kitchen. + +—Did you put in the books? Boody asked. + +Maggy at the range rammed down a greyish mass beneath bubbling suds +twice with her potstick and wiped her brow. + +—They wouldn’t give anything on them, she said. + +Father Conmee walked through Clongowes fields, his thinsocked ankles +tickled by stubble. + +—Where did you try? Boody asked. + +—M’Guinness’s. + +Boody stamped her foot and threw her satchel on the table. + +—Bad cess to her big face! she cried. + +Katey went to the range and peered with squinting eyes. + +—What’s in the pot? she asked. + +—Shirts, Maggy said. + +Boody cried angrily: + +—Crickey, is there nothing for us to eat? + +Katey, lifting the kettlelid in a pad of her stained skirt, asked: + +—And what’s in this? + +A heavy fume gushed in answer. + +—Peasoup, Maggy said. + +—Where did you get it? Katey asked. + +—Sister Mary Patrick, Maggy said. + +The lacquey rang his bell. + +—Barang! + +Boody sat down at the table and said hungrily: + +—Give us it here. + +Maggy poured yellow thick soup from the kettle into a bowl. Katey, +sitting opposite Boody, said quietly, as her fingertip lifted to her +mouth random crumbs: + +—A good job we have that much. Where’s Dilly? + +—Gone to meet father, Maggy said. + +Boody, breaking big chunks of bread into the yellow soup, added: + +—Our father who art not in heaven. + +Maggy, pouring yellow soup in Katey’s bowl, exclaimed: + +—Boody! For shame! + +A skiff, a crumpled throwaway, Elijah is coming, rode lightly down the +Liffey, under Loopline bridge, shooting the rapids where water chafed +around the bridgepiers, sailing eastward past hulls and anchorchains, +between the Customhouse old dock and George’s quay. + +* * * + + +The blond girl in Thornton’s bedded the wicker basket with rustling +fibre. Blazes Boylan handed her the bottle swathed in pink tissue paper +and a small jar. + +—Put these in first, will you? he said. + +—Yes, sir, the blond girl said. And the fruit on top. + +—That’ll do, game ball, Blazes Boylan said. + +She bestowed fat pears neatly, head by tail, and among them ripe +shamefaced peaches. + +Blazes Boylan walked here and there in new tan shoes about the +fruitsmelling shop, lifting fruits, young juicy crinkled and plump red +tomatoes, sniffing smells. + +H. E. L. Y.’S filed before him, tallwhitehatted, past Tangier lane, +plodding towards their goal. + +He turned suddenly from a chip of strawberries, drew a gold watch from +his fob and held it at its chain’s length. + +—Can you send them by tram? Now? + +A darkbacked figure under Merchants’ arch scanned books on the hawker’s +cart. + +—Certainly, sir. Is it in the city? + +—O, yes, Blazes Boylan said. Ten minutes. + +The blond girl handed him a docket and pencil. + +—Will you write the address, sir? + +Blazes Boylan at the counter wrote and pushed the docket to her. + +—Send it at once, will you? he said. It’s for an invalid. + +—Yes, sir. I will, sir. + +Blazes Boylan rattled merry money in his trousers’ pocket. + +—What’s the damage? he asked. + +The blond girl’s slim fingers reckoned the fruits. + +Blazes Boylan looked into the cut of her blouse. A young pullet. He +took a red carnation from the tall stemglass. + +—This for me? he asked gallantly. + +The blond girl glanced sideways at him, got up regardless, with his tie +a bit crooked, blushing. + +—Yes, sir, she said. + +Bending archly she reckoned again fat pears and blushing peaches. + +Blazes Boylan looked in her blouse with more favour, the stalk of the +red flower between his smiling teeth. + +—May I say a word to your telephone, missy? he asked roguishly. + +* * * + + +_—Ma!_ Almidano Artifoni said. + +He gazed over Stephen’s shoulder at Goldsmith’s knobby poll. + +Two carfuls of tourists passed slowly, their women sitting fore, +gripping the handrests. Palefaces. Men’s arms frankly round their +stunted forms. They looked from Trinity to the blind columned porch of +the bank of Ireland where pigeons roocoocooed. + +—_Anch’io ho avuto di queste idee_, Almidano Artifoni said, _quand’ ero +giovine come Lei. Eppoi mi sono convinto che il mondo è una bestia. È +peccato. Perchè la sua voce... sarebbe un cespite di rendita, via. +Invece, Lei si sacrifica._ + +—_Sacrifizio incruento,_ Stephen said smiling, swaying his ashplant in +slow swingswong from its midpoint, lightly. + +_—Speriamo,_ the round mustachioed face said pleasantly. _Ma, dia retta +a me. Ci rifletta_. + +By the stern stone hand of Grattan, bidding halt, an Inchicore tram +unloaded straggling Highland soldiers of a band. + +—_Ci rifletterò,_ Stephen said, glancing down the solid trouserleg. + +—_Ma, sul serio, eh?_ Almidano Artifoni said. + +His heavy hand took Stephen’s firmly. Human eyes. They gazed curiously +an instant and turned quickly towards a Dalkey tram. + +_—Eccolo,_ Almidano Artifoni said in friendly haste. _Venga a trovarmi +e ci pensi. Addio, caro._ + +—_Arrivederla, maestro,_ Stephen said, raising his hat when his hand +was freed. _E grazie._ + +—_Di che?_ Almidano Artifoni said. _Scusi, eh? Tante belle cose!_ + +Almidano Artifoni, holding up a baton of rolled music as a signal, +trotted on stout trousers after the Dalkey tram. In vain he trotted, +signalling in vain among the rout of barekneed gillies smuggling +implements of music through Trinity gates. + +* * * + + +Miss Dunne hid the Capel street library copy of _The Woman in White_ +far back in her drawer and rolled a sheet of gaudy notepaper into her +typewriter. + +Too much mystery business in it. Is he in love with that one, Marion? +Change it and get another by Mary Cecil Haye. + +The disk shot down the groove, wobbled a while, ceased and ogled them: +six. + +Miss Dunne clicked on the keyboard: + +—16 June 1904. + +Five tallwhitehatted sandwichmen between Monypeny’s corner and the slab +where Wolfe Tone’s statue was not, eeled themselves turning H. E. L. +Y.’S and plodded back as they had come. + +Then she stared at the large poster of Marie Kendall, charming +soubrette, and, listlessly lolling, scribbled on the jotter sixteens +and capital esses. Mustard hair and dauby cheeks. She’s not +nicelooking, is she? The way she’s holding up her bit of a skirt. +Wonder will that fellow be at the band tonight. If I could get that +dressmaker to make a concertina skirt like Susy Nagle’s. They kick out +grand. Shannon and all the boatclub swells never took his eyes off her. +Hope to goodness he won’t keep me here till seven. + +The telephone rang rudely by her ear. + +—Hello. Yes, sir. No, sir. Yes, sir. I’ll ring them up after five. Only +those two, sir, for Belfast and Liverpool. All right, sir. Then I can +go after six if you’re not back. A quarter after. Yes, sir. Twentyseven +and six. I’ll tell him. Yes: one, seven, six. + +She scribbled three figures on an envelope. + +—Mr Boylan! Hello! That gentleman from _Sport_ was in looking for you. +Mr Lenehan, yes. He said he’ll be in the Ormond at four. No, sir. Yes, +sir. I’ll ring them up after five. + +* * * + + +Two pink faces turned in the flare of the tiny torch. + +—Who’s that? Ned Lambert asked. Is that Crotty? + +—Ringabella and Crosshaven, a voice replied groping for foothold. + +—Hello, Jack, is that yourself? Ned Lambert said, raising in salute his +pliant lath among the flickering arches. Come on. Mind your steps +there. + +The vesta in the clergyman’s uplifted hand consumed itself in a long +soft flame and was let fall. At their feet its red speck died: and +mouldy air closed round them. + +—How interesting! a refined accent said in the gloom. + +—Yes, sir, Ned Lambert said heartily. We are standing in the historic +council chamber of saint Mary’s abbey where silken Thomas proclaimed +himself a rebel in 1534. This is the most historic spot in all Dublin. +O’Madden Burke is going to write something about it one of these days. +The old bank of Ireland was over the way till the time of the union and +the original jews’ temple was here too before they built their +synagogue over in Adelaide road. You were never here before, Jack, were +you? + +—No, Ned. + +—He rode down through Dame walk, the refined accent said, if my memory +serves me. The mansion of the Kildares was in Thomas court. + +—That’s right, Ned Lambert said. That’s quite right, sir. + +—If you will be so kind then, the clergyman said, the next time to +allow me perhaps... + +—Certainly, Ned Lambert said. Bring the camera whenever you like. I’ll +get those bags cleared away from the windows. You can take it from here +or from here. + +In the still faint light he moved about, tapping with his lath the +piled seedbags and points of vantage on the floor. + +From a long face a beard and gaze hung on a chessboard. + +—I’m deeply obliged, Mr Lambert, the clergyman said. I won’t trespass +on your valuable time... + +—You’re welcome, sir, Ned Lambert said. Drop in whenever you like. Next +week, say. Can you see? + +—Yes, yes. Good afternoon, Mr Lambert. Very pleased to have met you. + +—Pleasure is mine, sir, Ned Lambert answered. + +He followed his guest to the outlet and then whirled his lath away +among the pillars. With J. J. O’Molloy he came forth slowly into Mary’s +abbey where draymen were loading floats with sacks of carob and palmnut +meal, O’Connor, Wexford. + +He stood to read the card in his hand. + +—The reverend Hugh C. Love, Rathcoffey. Present address: Saint +Michael’s, Sallins. Nice young chap he is. He’s writing a book about +the Fitzgeralds he told me. He’s well up in history, faith. + +The young woman with slow care detached from her light skirt a clinging +twig. + +—I thought you were at a new gunpowder plot, J. J. O’Molloy said. + +Ned Lambert cracked his fingers in the air. + +—God! he cried. I forgot to tell him that one about the earl of Kildare +after he set fire to Cashel cathedral. You know that one? _I’m bloody +sorry I did it,_ says he, _but I declare to God I thought the +archbishop was inside._ He mightn’t like it, though. What? God, I’ll +tell him anyhow. That was the great earl, the Fitzgerald Mor. Hot +members they were all of them, the Geraldines. + +The horses he passed started nervously under their slack harness. He +slapped a piebald haunch quivering near him and cried: + +—Woa, sonny! + +He turned to J. J. O’Molloy and asked: + +—Well, Jack. What is it? What’s the trouble? Wait awhile. Hold hard. + +With gaping mouth and head far back he stood still and, after an +instant, sneezed loudly. + +—Chow! he said. Blast you! + +—The dust from those sacks, J. J. O’Molloy said politely. + +—No, Ned Lambert gasped, I caught a... cold night before... blast your +soul... night before last... and there was a hell of a lot of +draught... + +He held his handkerchief ready for the coming... + +—I was... Glasnevin this morning... poor little... what do you call +him... Chow!... Mother of Moses! + +* * * + + +Tom Rochford took the top disk from the pile he clasped against his +claret waistcoat. + +—See? he said. Say it’s turn six. In here, see. Turn Now On. + +He slid it into the left slot for them. It shot down the groove, +wobbled a while, ceased, ogling them: six. + +Lawyers of the past, haughty, pleading, beheld pass from the +consolidated taxing office to Nisi Prius court Richie Goulding carrying +the costbag of Goulding, Collis and Ward and heard rustling from the +admiralty division of king’s bench to the court of appeal an elderly +female with false teeth smiling incredulously and a black silk skirt of +great amplitude. + +—See? he said. See now the last one I put in is over here: Turns Over. +The impact. Leverage, see? + +He showed them the rising column of disks on the right. + +—Smart idea, Nosey Flynn said, snuffling. So a fellow coming in late +can see what turn is on and what turns are over. + +—See? Tom Rochford said. + +He slid in a disk for himself: and watched it shoot, wobble, ogle, +stop: four. Turn Now On. + +—I’ll see him now in the Ormond, Lenehan said, and sound him. One good +turn deserves another. + +—Do, Tom Rochford said. Tell him I’m Boylan with impatience. + +—Goodnight, M’Coy said abruptly. When you two begin... + +Nosey Flynn stooped towards the lever, snuffling at it. + +—But how does it work here, Tommy? he asked. + +—Tooraloo, Lenehan said. See you later. + +He followed M’Coy out across the tiny square of Crampton court. + +—He’s a hero, he said simply. + +—I know, M’Coy said. The drain, you mean. + +—Drain? Lenehan said. It was down a manhole. + +They passed Dan Lowry’s musichall where Marie Kendall, charming +soubrette, smiled on them from a poster a dauby smile. + +Going down the path of Sycamore street beside the Empire musichall +Lenehan showed M’Coy how the whole thing was. One of those manholes +like a bloody gaspipe and there was the poor devil stuck down in it, +half choked with sewer gas. Down went Tom Rochford anyhow, booky’s vest +and all, with the rope round him. And be damned but he got the rope +round the poor devil and the two were hauled up. + +—The act of a hero, he said. + +At the Dolphin they halted to allow the ambulance car to gallop past +them for Jervis street. + +—This way, he said, walking to the right. I want to pop into Lynam’s to +see Sceptre’s starting price. What’s the time by your gold watch and +chain? + +M’Coy peered into Marcus Tertius Moses’ sombre office, then at +O’Neill’s clock. + +—After three, he said. Who’s riding her? + +—O. Madden, Lenehan said. And a game filly she is. + +While he waited in Temple bar M’Coy dodged a banana peel with gentle +pushes of his toe from the path to the gutter. Fellow might damn easy +get a nasty fall there coming along tight in the dark. + +The gates of the drive opened wide to give egress to the viceregal +cavalcade. + +—Even money, Lenehan said returning. I knocked against Bantam Lyons in +there going to back a bloody horse someone gave him that hasn’t an +earthly. Through here. + +They went up the steps and under Merchants’ arch. A darkbacked figure +scanned books on the hawker’s cart. + +—There he is, Lenehan said. + +—Wonder what he’s buying, M’Coy said, glancing behind. + +—_Leopoldo or the Bloom is on the Rye,_ Lenehan said. + +—He’s dead nuts on sales, M’Coy said. I was with him one day and he +bought a book from an old one in Liffey street for two bob. There were +fine plates in it worth double the money, the stars and the moon and +comets with long tails. Astronomy it was about. + +Lenehan laughed. + +—I’ll tell you a damn good one about comets’ tails, he said. Come over +in the sun. + +They crossed to the metal bridge and went along Wellington quay by the +riverwall. + +Master Patrick Aloysius Dignam came out of Mangan’s, late Fehrenbach’s, +carrying a pound and a half of porksteaks. + +—There was a long spread out at Glencree reformatory, Lenehan said +eagerly. The annual dinner, you know. Boiled shirt affair. The lord +mayor was there, Val Dillon it was, and sir Charles Cameron and Dan +Dawson spoke and there was music. Bartell d’Arcy sang and Benjamin +Dollard... + +—I know, M’Coy broke in. My missus sang there once. + +—Did she? Lenehan said. + +A card _Unfurnished Apartments_ reappeared on the windowsash of number +7 Eccles street. + +He checked his tale a moment but broke out in a wheezy laugh. + +—But wait till I tell you, he said. Delahunt of Camden street had the +catering and yours truly was chief bottlewasher. Bloom and the wife +were there. Lashings of stuff we put up: port wine and sherry and +curacoa to which we did ample justice. Fast and furious it was. After +liquids came solids. Cold joints galore and mince pies... + +—I know, M’Coy said. The year the missus was there... + +Lenehan linked his arm warmly. + +—But wait till I tell you, he said. We had a midnight lunch too after +all the jollification and when we sallied forth it was blue o’clock the +morning after the night before. Coming home it was a gorgeous winter’s +night on the Featherbed Mountain. Bloom and Chris Callinan were on one +side of the car and I was with the wife on the other. We started +singing glees and duets: _Lo, the early beam of morning_. She was well +primed with a good load of Delahunt’s port under her bellyband. Every +jolt the bloody car gave I had her bumping up against me. Hell’s +delights! She has a fine pair, God bless her. Like that. + +He held his caved hands a cubit from him, frowning: + +—I was tucking the rug under her and settling her boa all the time. +Know what I mean? + +His hands moulded ample curves of air. He shut his eyes tight in +delight, his body shrinking, and blew a sweet chirp from his lips. + +—The lad stood to attention anyhow, he said with a sigh. She’s a gamey +mare and no mistake. Bloom was pointing out all the stars and the +comets in the heavens to Chris Callinan and the jarvey: the great bear +and Hercules and the dragon, and the whole jingbang lot. But, by God, I +was lost, so to speak, in the milky way. He knows them all, faith. At +last she spotted a weeny weeshy one miles away. _And what star is that, +Poldy?_ says she. By God, she had Bloom cornered. _That one, is it?_ +says Chris Callinan, _sure that’s only what you might call a pinprick._ +By God, he wasn’t far wide of the mark. + +Lenehan stopped and leaned on the riverwall, panting with soft +laughter. + +—I’m weak, he gasped. + +M’Coy’s white face smiled about it at instants and grew grave. Lenehan +walked on again. He lifted his yachtingcap and scratched his hindhead +rapidly. He glanced sideways in the sunlight at M’Coy. + +—He’s a cultured allroundman, Bloom is, he said seriously. He’s not one +of your common or garden... you know... There’s a touch of the artist +about old Bloom. + +* * * + + +Mr Bloom turned over idly pages of _The Awful Disclosures of Maria +Monk_, then of Aristotle’s _Masterpiece._ Crooked botched print. +Plates: infants cuddled in a ball in bloodred wombs like livers of +slaughtered cows. Lots of them like that at this moment all over the +world. All butting with their skulls to get out of it. Child born every +minute somewhere. Mrs Purefoy. + +He laid both books aside and glanced at the third: _Tales of the +Ghetto_ by Leopold von Sacher Masoch. + +—That I had, he said, pushing it by. + +The shopman let two volumes fall on the counter. + +—Them are two good ones, he said. + +Onions of his breath came across the counter out of his ruined mouth. +He bent to make a bundle of the other books, hugged them against his +unbuttoned waistcoat and bore them off behind the dingy curtain. + +On O’Connell bridge many persons observed the grave deportment and gay +apparel of Mr Denis J Maginni, professor of dancing &c. + +Mr Bloom, alone, looked at the titles. _Fair Tyrants_ by James +Lovebirch. Know the kind that is. Had it? Yes. + +He opened it. Thought so. + +A woman’s voice behind the dingy curtain. Listen: the man. + +No: she wouldn’t like that much. Got her it once. + +He read the other title: _Sweets of Sin_. More in her line. Let us see. + +He read where his finger opened. + +_—All the dollarbills her husband gave her were spent in the stores on +wondrous gowns and costliest frillies. For him! For Raoul!_ + +Yes. This. Here. Try. + +—_Her mouth glued on his in a luscious voluptuous kiss while his hands +felt for the opulent curves inside her déshabillé._ + +Yes. Take this. The end. + +—You are late, he spoke hoarsely, eying her with a suspicious glare. + +The beautiful woman threw off her sabletrimmed wrap, displaying her +queenly shoulders and heaving embonpoint. An imperceptible smile played +round her perfect lips as she turned to him calmly. + +Mr Bloom read again: _The beautiful woman._ + +Warmth showered gently over him, cowing his flesh. Flesh yielded amply +amid rumpled clothes: whites of eyes swooning up. His nostrils arched +themselves for prey. Melting breast ointments (_for him! For Raoul!_). +Armpits’ oniony sweat. Fishgluey slime (_her heaving embonpoint!_). +Feel! Press! Crished! Sulphur dung of lions! + +Young! Young! + +An elderly female, no more young, left the building of the courts of +chancery, king’s bench, exchequer and common pleas, having heard in the +lord chancellor’s court the case in lunacy of Potterton, in the +admiralty division the summons, exparte motion, of the owners of the +Lady Cairns versus the owners of the barque Mona, in the court of +appeal reservation of judgment in the case of Harvey versus the Ocean +Accident and Guarantee Corporation. + +Phlegmy coughs shook the air of the bookshop, bulging out the dingy +curtains. The shopman’s uncombed grey head came out and his unshaven +reddened face, coughing. He raked his throat rudely, puked phlegm on +the floor. He put his boot on what he had spat, wiping his sole along +it, and bent, showing a rawskinned crown, scantily haired. + +Mr Bloom beheld it. + +Mastering his troubled breath, he said: + +—I’ll take this one. + +The shopman lifted eyes bleared with old rheum. + +—_Sweets of Sin,_ he said, tapping on it. That’s a good one. + +* * * + + +The lacquey by the door of Dillon’s auctionrooms shook his handbell +twice again and viewed himself in the chalked mirror of the cabinet. + +Dilly Dedalus, loitering by the curbstone, heard the beats of the bell, +the cries of the auctioneer within. Four and nine. Those lovely +curtains. Five shillings. Cosy curtains. Selling new at two guineas. +Any advance on five shillings? Going for five shillings. + +The lacquey lifted his handbell and shook it: + +—Barang! + +Bang of the lastlap bell spurred the halfmile wheelmen to their sprint. +J. A. Jackson, W. E. Wylie, A. Munro and H. T. Gahan, their stretched +necks wagging, negotiated the curve by the College library. + +Mr Dedalus, tugging a long moustache, came round from Williams’s row. +He halted near his daughter. + +—It’s time for you, she said. + +—Stand up straight for the love of the lord Jesus, Mr Dedalus said. Are +you trying to imitate your uncle John, the cornetplayer, head upon +shoulder? Melancholy God! + +Dilly shrugged her shoulders. Mr Dedalus placed his hands on them and +held them back. + +—Stand up straight, girl, he said. You’ll get curvature of the spine. +Do you know what you look like? + +He let his head sink suddenly down and forward, hunching his shoulders +and dropping his underjaw. + +—Give it up, father, Dilly said. All the people are looking at you. + +Mr Dedalus drew himself upright and tugged again at his moustache. + +—Did you get any money? Dilly asked. + +—Where would I get money? Mr Dedalus said. There is no-one in Dublin +would lend me fourpence. + +—You got some, Dilly said, looking in his eyes. + +—How do you know that? Mr Dedalus asked, his tongue in his cheek. + +Mr Kernan, pleased with the order he had booked, walked boldly along +James’s street. + +—I know you did, Dilly answered. Were you in the Scotch house now? + +—I was not, then, Mr Dedalus said, smiling. Was it the little nuns +taught you to be so saucy? Here. + +He handed her a shilling. + +—See if you can do anything with that, he said. + +—I suppose you got five, Dilly said. Give me more than that. + +—Wait awhile, Mr Dedalus said threateningly. You’re like the rest of +them, are you? An insolent pack of little bitches since your poor +mother died. But wait awhile. You’ll all get a short shrift and a long +day from me. Low blackguardism! I’m going to get rid of you. Wouldn’t +care if I was stretched out stiff. He’s dead. The man upstairs is dead. + +He left her and walked on. Dilly followed quickly and pulled his coat. + +—Well, what is it? he said, stopping. + +The lacquey rang his bell behind their backs. + +—Barang! + +—Curse your bloody blatant soul, Mr Dedalus cried, turning on him. + +The lacquey, aware of comment, shook the lolling clapper of his bell +but feebly: + +—Bang! + +Mr Dedalus stared at him. + +—Watch him, he said. It’s instructive. I wonder will he allow us to +talk. + +—You got more than that, father, Dilly said. + +—I’m going to show you a little trick, Mr Dedalus said. I’ll leave you +all where Jesus left the jews. Look, there’s all I have. I got two +shillings from Jack Power and I spent twopence for a shave for the +funeral. + +He drew forth a handful of copper coins, nervously. + +—Can’t you look for some money somewhere? Dilly said. + +Mr Dedalus thought and nodded. + +—I will, he said gravely. I looked all along the gutter in O’Connell +street. I’ll try this one now. + +—You’re very funny, Dilly said, grinning. + +—Here, Mr Dedalus said, handing her two pennies. Get a glass of milk +for yourself and a bun or a something. I’ll be home shortly. + +He put the other coins in his pocket and started to walk on. + +The viceregal cavalcade passed, greeted by obsequious policemen, out of +Parkgate. + +—I’m sure you have another shilling, Dilly said. + +The lacquey banged loudly. + +Mr Dedalus amid the din walked off, murmuring to himself with a pursing +mincing mouth gently: + +—The little nuns! Nice little things! O, sure they wouldn’t do +anything! O, sure they wouldn’t really! Is it little sister Monica! + +* * * + + +From the sundial towards James’s gate walked Mr Kernan, pleased with +the order he had booked for Pulbrook Robertson, boldly along James’s +street, past Shackleton’s offices. Got round him all right. How do you +do, Mr Crimmins? First rate, sir. I was afraid you might be up in your +other establishment in Pimlico. How are things going? Just keeping +alive. Lovely weather we’re having. Yes, indeed. Good for the country. +Those farmers are always grumbling. I’ll just take a thimbleful of your +best gin, Mr Crimmins. A small gin, sir. Yes, sir. Terrible affair that +_General Slocum_ explosion. Terrible, terrible! A thousand casualties. +And heartrending scenes. Men trampling down women and children. Most +brutal thing. What do they say was the cause? Spontaneous combustion. +Most scandalous revelation. Not a single lifeboat would float and the +firehose all burst. What I can’t understand is how the inspectors ever +allowed a boat like that... Now, you’re talking straight, Mr Crimmins. +You know why? Palm oil. Is that a fact? Without a doubt. Well now, look +at that. And America they say is the land of the free. I thought we +were bad here. + +I smiled at him. _America,_ I said quietly, just like that. _What is +it? The sweepings of every country including our own. Isn’t that true?_ +That’s a fact. + +Graft, my dear sir. Well, of course, where there’s money going there’s +always someone to pick it up. + +Saw him looking at my frockcoat. Dress does it. Nothing like a dressy +appearance. Bowls them over. + +—Hello, Simon, Father Cowley said. How are things? + +—Hello, Bob, old man, Mr Dedalus answered, stopping. + +Mr Kernan halted and preened himself before the sloping mirror of Peter +Kennedy, hairdresser. Stylish coat, beyond a doubt. Scott of Dawson +street. Well worth the half sovereign I gave Neary for it. Never built +under three guineas. Fits me down to the ground. Some Kildare street +club toff had it probably. John Mulligan, the manager of the Hibernian +bank, gave me a very sharp eye yesterday on Carlisle bridge as if he +remembered me. + +Aham! Must dress the character for those fellows. Knight of the road. +Gentleman. And now, Mr Crimmins, may we have the honour of your custom +again, sir. The cup that cheers but not inebriates, as the old saying +has it. + +North wall and sir John Rogerson’s quay, with hulls and anchorchains, +sailing westward, sailed by a skiff, a crumpled throwaway, rocked on +the ferrywash, Elijah is coming. + +Mr Kernan glanced in farewell at his image. High colour, of course. +Grizzled moustache. Returned Indian officer. Bravely he bore his stumpy +body forward on spatted feet, squaring his shoulders. Is that Ned +Lambert’s brother over the way, Sam? What? Yes. He’s as like it as damn +it. No. The windscreen of that motorcar in the sun there. Just a flash +like that. Damn like him. + +Aham! Hot spirit of juniper juice warmed his vitals and his breath. +Good drop of gin, that was. His frocktails winked in bright sunshine to +his fat strut. + +Down there Emmet was hanged, drawn and quartered. Greasy black rope. +Dogs licking the blood off the street when the lord lieutenant’s wife +drove by in her noddy. + +Bad times those were. Well, well. Over and done with. Great topers too. +Fourbottle men. + +Let me see. Is he buried in saint Michan’s? Or no, there was a midnight +burial in Glasnevin. Corpse brought in through a secret door in the +wall. Dignam is there now. Went out in a puff. Well, well. Better turn +down here. Make a detour. + +Mr Kernan turned and walked down the slope of Watling street by the +corner of Guinness’s visitors’ waitingroom. Outside the Dublin +Distillers Company’s stores an outside car without fare or jarvey +stood, the reins knotted to the wheel. Damn dangerous thing. Some +Tipperary bosthoon endangering the lives of the citizens. Runaway +horse. + +Denis Breen with his tomes, weary of having waited an hour in John +Henry Menton’s office, led his wife over O’Connell bridge, bound for +the office of Messrs Collis and Ward. + +Mr Kernan approached Island street. + +Times of the troubles. Must ask Ned Lambert to lend me those +reminiscences of sir Jonah Barrington. When you look back on it all now +in a kind of retrospective arrangement. Gaming at Daly’s. No +cardsharping then. One of those fellows got his hand nailed to the +table by a dagger. Somewhere here lord Edward Fitzgerald escaped from +major Sirr. Stables behind Moira house. + +Damn good gin that was. + +Fine dashing young nobleman. Good stock, of course. That ruffian, that +sham squire, with his violet gloves gave him away. Course they were on +the wrong side. They rose in dark and evil days. Fine poem that is: +Ingram. They were gentlemen. Ben Dollard does sing that ballad +touchingly. Masterly rendition. + +_At the siege of Ross did my father fall._ + +A cavalcade in easy trot along Pembroke quay passed, outriders leaping, +leaping in their, in their saddles. Frockcoats. Cream sunshades. + +Mr Kernan hurried forward, blowing pursily. + +His Excellency! Too bad! Just missed that by a hair. Damn it! What a +pity! + +* * * + + +Stephen Dedalus watched through the webbed window the lapidary’s +fingers prove a timedulled chain. Dust webbed the window and the +showtrays. Dust darkened the toiling fingers with their vulture nails. +Dust slept on dull coils of bronze and silver, lozenges of cinnabar, on +rubies, leprous and winedark stones. + +Born all in the dark wormy earth, cold specks of fire, evil, lights +shining in the darkness. Where fallen archangels flung the stars of +their brows. Muddy swinesnouts, hands, root and root, gripe and wrest +them. + +She dances in a foul gloom where gum bums with garlic. A sailorman, +rustbearded, sips from a beaker rum and eyes her. A long and seafed +silent rut. She dances, capers, wagging her sowish haunches and her +hips, on her gross belly flapping a ruby egg. + +Old Russell with a smeared shammy rag burnished again his gem, turned +it and held it at the point of his Moses’ beard. Grandfather ape +gloating on a stolen hoard. + +And you who wrest old images from the burial earth? The brainsick words +of sophists: Antisthenes. A lore of drugs. Orient and immortal wheat +standing from everlasting to everlasting. + +Two old women fresh from their whiff of the briny trudged through +Irishtown along London bridge road, one with a sanded tired umbrella, +one with a midwife’s bag in which eleven cockles rolled. + +The whirr of flapping leathern bands and hum of dynamos from the +powerhouse urged Stephen to be on. Beingless beings. Stop! Throb always +without you and the throb always within. Your heart you sing of. I +between them. Where? Between two roaring worlds where they swirl, I. +Shatter them, one and both. But stun myself too in the blow. Shatter me +you who can. Bawd and butcher were the words. I say! Not yet awhile. A +look around. + +Yes, quite true. Very large and wonderful and keeps famous time. You +say right, sir. A Monday morning, ’twas so, indeed. + +Stephen went down Bedford row, the handle of the ash clacking against +his shoulderblade. In Clohissey’s window a faded 1860 print of Heenan +boxing Sayers held his eye. Staring backers with square hats stood +round the roped prizering. The heavyweights in tight loincloths +proposed gently each to other his bulbous fists. And they are +throbbing: heroes’ hearts. + +He turned and halted by the slanted bookcart. + +—Twopence each, the huckster said. Four for sixpence. + +Tattered pages. _The Irish Beekeeper. Life and Miracles of the Curé of +Ars. Pocket Guide to Killarney._ + +I might find here one of my pawned schoolprizes. _Stephano Dedalo, +alumno optimo, palmam ferenti._ + +Father Conmee, having read his little hours, walked through the hamlet +of Donnycarney, murmuring vespers. + +Binding too good probably. What is this? Eighth and ninth book of +Moses. Secret of all secrets. Seal of King David. Thumbed pages: read +and read. Who has passed here before me? How to soften chapped hands. +Recipe for white wine vinegar. How to win a woman’s love. For me this. +Say the following talisman three times with hands folded: + +—_Se el yilo nebrakada femininum! Amor me solo! Sanktus! Amen._ + +Who wrote this? Charms and invocations of the most blessed abbot Peter +Salanka to all true believers divulged. As good as any other abbot’s +charms, as mumbling Joachim’s. Down, baldynoddle, or we’ll wool your +wool. + +—What are you doing here, Stephen? + +Dilly’s high shoulders and shabby dress. + +Shut the book quick. Don’t let see. + +—What are you doing? Stephen said. + +A Stuart face of nonesuch Charles, lank locks falling at its sides. It +glowed as she crouched feeding the fire with broken boots. I told her +of Paris. Late lieabed under a quilt of old overcoats, fingering a +pinchbeck bracelet, Dan Kelly’s token. _Nebrakada femininum._ + +—What have you there? Stephen asked. + +—I bought it from the other cart for a penny, Dilly said, laughing +nervously. Is it any good? + +My eyes they say she has. Do others see me so? Quick, far and daring. +Shadow of my mind. + +He took the coverless book from her hand. Chardenal’s French primer. + +—What did you buy that for? he asked. To learn French? + +She nodded, reddening and closing tight her lips. + +Show no surprise. Quite natural. + +—Here, Stephen said. It’s all right. Mind Maggy doesn’t pawn it on you. +I suppose all my books are gone. + +—Some, Dilly said. We had to. + +She is drowning. Agenbite. Save her. Agenbite. All against us. She will +drown me with her, eyes and hair. Lank coils of seaweed hair around me, +my heart, my soul. Salt green death. + +We. + +Agenbite of inwit. Inwit’s agenbite. + +Misery! Misery! + +* * * + + +—Hello, Simon, Father Cowley said. How are things? + +—Hello, Bob, old man, Mr Dedalus answered, stopping. + +They clasped hands loudly outside Reddy and Daughter’s. Father Cowley +brushed his moustache often downward with a scooping hand. + +—What’s the best news? Mr Dedalus said. + +—Why then not much, Father Cowley said. I’m barricaded up, Simon, with +two men prowling around the house trying to effect an entrance. + +—Jolly, Mr Dedalus said. Who is it? + +—O, Father Cowley said. A certain gombeen man of our acquaintance. + +—With a broken back, is it? Mr Dedalus asked. + +—The same, Simon, Father Cowley answered. Reuben of that ilk. I’m just +waiting for Ben Dollard. He’s going to say a word to long John to get +him to take those two men off. All I want is a little time. + +He looked with vague hope up and down the quay, a big apple bulging in +his neck. + +—I know, Mr Dedalus said, nodding. Poor old bockedy Ben! He’s always +doing a good turn for someone. Hold hard! + +He put on his glasses and gazed towards the metal bridge an instant. + +—There he is, by God, he said, arse and pockets. + +Ben Dollard’s loose blue cutaway and square hat above large slops +crossed the quay in full gait from the metal bridge. He came towards +them at an amble, scratching actively behind his coattails. + +As he came near Mr Dedalus greeted: + +—Hold that fellow with the bad trousers. + +—Hold him now, Ben Dollard said. + +Mr Dedalus eyed with cold wandering scorn various points of Ben +Dollard’s figure. Then, turning to Father Cowley with a nod, he +muttered sneeringly: + +—That’s a pretty garment, isn’t it, for a summer’s day? + +—Why, God eternally curse your soul, Ben Dollard growled furiously, I +threw out more clothes in my time than you ever saw. + +He stood beside them beaming, on them first and on his roomy clothes +from points of which Mr Dedalus flicked fluff, saying: + +—They were made for a man in his health, Ben, anyhow. + +—Bad luck to the jewman that made them, Ben Dollard said. Thanks be to +God he’s not paid yet. + +—And how is that _basso profondo_, Benjamin? Father Cowley asked. + +Cashel Boyle O’Connor Fitzmaurice Tisdall Farrell, murmuring, +glassyeyed, strode past the Kildare street club. + +Ben Dollard frowned and, making suddenly a chanter’s mouth, gave forth +a deep note. + +—Aw! he said. + +—That’s the style, Mr Dedalus said, nodding to its drone. + +—What about that? Ben Dollard said. Not too dusty? What? + +He turned to both. + +—That’ll do, Father Cowley said, nodding also. + +The reverend Hugh C. Love walked from the old chapterhouse of saint +Mary’s abbey past James and Charles Kennedy’s, rectifiers, attended by +Geraldines tall and personable, towards the Tholsel beyond the ford of +hurdles. + +Ben Dollard with a heavy list towards the shopfronts led them forward, +his joyful fingers in the air. + +—Come along with me to the subsheriff’s office, he said. I want to show +you the new beauty Rock has for a bailiff. He’s a cross between +Lobengula and Lynchehaun. He’s well worth seeing, mind you. Come along. +I saw John Henry Menton casually in the Bodega just now and it will +cost me a fall if I don’t... Wait awhile... We’re on the right lay, +Bob, believe you me. + +—For a few days tell him, Father Cowley said anxiously. + +Ben Dollard halted and stared, his loud orifice open, a dangling button +of his coat wagging brightbacked from its thread as he wiped away the +heavy shraums that clogged his eyes to hear aright. + +—What few days? he boomed. Hasn’t your landlord distrained for rent? + +—He has, Father Cowley said. + +—Then our friend’s writ is not worth the paper it’s printed on, Ben +Dollard said. The landlord has the prior claim. I gave him all the +particulars. 29 Windsor avenue. Love is the name? + +—That’s right, Father Cowley said. The reverend Mr Love. He’s a +minister in the country somewhere. But are you sure of that? + +—You can tell Barabbas from me, Ben Dollard said, that he can put that +writ where Jacko put the nuts. + +He led Father Cowley boldly forward, linked to his bulk. + +—Filberts I believe they were, Mr Dedalus said, as he dropped his +glasses on his coatfront, following them. + +* * * + + +—The youngster will be all right, Martin Cunningham said, as they +passed out of the Castleyard gate. + +The policeman touched his forehead. + +—God bless you, Martin Cunningham said, cheerily. + +He signed to the waiting jarvey who chucked at the reins and set on +towards Lord Edward street. + +Bronze by gold, Miss Kennedy’s head by Miss Douce’s head, appeared +above the crossblind of the Ormond hotel. + +—Yes, Martin Cunningham said, fingering his beard. I wrote to Father +Conmee and laid the whole case before him. + +—You could try our friend, Mr Power suggested backward. + +—Boyd? Martin Cunningham said shortly. Touch me not. + +John Wyse Nolan, lagging behind, reading the list, came after them +quickly down Cork hill. + +On the steps of the City hall Councillor Nannetti, descending, hailed +Alderman Cowley and Councillor Abraham Lyon ascending. + +The castle car wheeled empty into upper Exchange street. + +—Look here, Martin, John Wyse Nolan said, overtaking them at the _Mail_ +office. I see Bloom put his name down for five shillings. + +—Quite right, Martin Cunningham said, taking the list. And put down the +five shillings too. + +—Without a second word either, Mr Power said. + +—Strange but true, Martin Cunningham added. + +John Wyse Nolan opened wide eyes. + +—I’ll say there is much kindness in the jew, he quoted, elegantly. + +They went down Parliament street. + +—There’s Jimmy Henry, Mr Power said, just heading for Kavanagh’s. + +—Righto, Martin Cunningham said. Here goes. + +Outside _la Maison Claire_ Blazes Boylan waylaid Jack Mooney’s +brother-in-law, humpy, tight, making for the liberties. + +John Wyse Nolan fell back with Mr Power, while Martin Cunningham took +the elbow of a dapper little man in a shower of hail suit, who walked +uncertainly, with hasty steps past Micky Anderson’s watches. + +—The assistant town clerk’s corns are giving him some trouble, John +Wyse Nolan told Mr Power. + +They followed round the corner towards James Kavanagh’s winerooms. The +empty castle car fronted them at rest in Essex gate. Martin Cunningham, +speaking always, showed often the list at which Jimmy Henry did not +glance. + +—And long John Fanning is here too, John Wyse Nolan said, as large as +life. + +The tall form of long John Fanning filled the doorway where he stood. + +—Good day, Mr Subsheriff, Martin Cunningham said, as all halted and +greeted. + +Long John Fanning made no way for them. He removed his large Henry Clay +decisively and his large fierce eyes scowled intelligently over all +their faces. + +—Are the conscript fathers pursuing their peaceful deliberations? he +said with rich acrid utterance to the assistant town clerk. + +Hell open to christians they were having, Jimmy Henry said pettishly, +about their damned Irish language. Where was the marshal, he wanted to +know, to keep order in the council chamber. And old Barlow the +macebearer laid up with asthma, no mace on the table, nothing in order, +no quorum even, and Hutchinson, the lord mayor, in Llandudno and little +Lorcan Sherlock doing _locum tenens_ for him. Damned Irish language, +language of our forefathers. + +Long John Fanning blew a plume of smoke from his lips. + +Martin Cunningham spoke by turns, twirling the peak of his beard, to +the assistant town clerk and the subsheriff, while John Wyse Nolan held +his peace. + +—What Dignam was that? long John Fanning asked. + +Jimmy Henry made a grimace and lifted his left foot. + +—O, my corns! he said plaintively. Come upstairs for goodness’ sake +till I sit down somewhere. Uff! Ooo! Mind! + +Testily he made room for himself beside long John Fanning’s flank and +passed in and up the stairs. + +—Come on up, Martin Cunningham said to the subsheriff. I don’t think +you knew him or perhaps you did, though. + +With John Wyse Nolan Mr Power followed them in. + +—Decent little soul he was, Mr Power said to the stalwart back of long +John Fanning ascending towards long John Fanning in the mirror. + +—Rather lowsized. Dignam of Menton’s office that was, Martin Cunningham +said. + +Long John Fanning could not remember him. + +Clatter of horsehoofs sounded from the air. + +—What’s that? Martin Cunningham said. + +All turned where they stood. John Wyse Nolan came down again. From the +cool shadow of the doorway he saw the horses pass Parliament street, +harness and glossy pasterns in sunlight shimmering. Gaily they went +past before his cool unfriendly eyes, not quickly. In saddles of the +leaders, leaping leaders, rode outriders. + +—What was it? Martin Cunningham asked, as they went on up the +staircase. + +—The lord lieutenantgeneral and general governor of Ireland, John Wyse +Nolan answered from the stairfoot. + +* * * + + +As they trod across the thick carpet Buck Mulligan whispered behind his +Panama to Haines: + +—Parnell’s brother. There in the corner. + +They chose a small table near the window, opposite a longfaced man +whose beard and gaze hung intently down on a chessboard. + +—Is that he? Haines asked, twisting round in his seat. + +—Yes, Mulligan said. That’s John Howard, his brother, our city marshal. + +John Howard Parnell translated a white bishop quietly and his grey claw +went up again to his forehead whereat it rested. An instant after, +under its screen, his eyes looked quickly, ghostbright, at his foe and +fell once more upon a working corner. + +—I’ll take a _mélange,_ Haines said to the waitress. + +—Two _mélanges,_ Buck Mulligan said. And bring us some scones and +butter and some cakes as well. + +When she had gone he said, laughing: + +—We call it D.B.C. because they have damn bad cakes. O, but you missed +Dedalus on _Hamlet._ + +Haines opened his newbought book. + +—I’m sorry, he said. Shakespeare is the happy huntingground of all +minds that have lost their balance. + +The onelegged sailor growled at the area of 14 Nelson street: + +—_England expects_... + +Buck Mulligan’s primrose waistcoat shook gaily to his laughter. + +—You should see him, he said, when his body loses its balance. +Wandering Ængus I call him. + +—I am sure he has an _idée fixe,_ Haines said, pinching his chin +thoughtfully with thumb and forefinger. Now I am speculating what it +would be likely to be. Such persons always have. + +Buck Mulligan bent across the table gravely. + +—They drove his wits astray, he said, by visions of hell. He will never +capture the Attic note. The note of Swinburne, of all poets, the white +death and the ruddy birth. That is his tragedy. He can never be a poet. +The joy of creation... + +—Eternal punishment, Haines said, nodding curtly. I see. I tackled him +this morning on belief. There was something on his mind, I saw. It’s +rather interesting because professor Pokorny of Vienna makes an +interesting point out of that. + +Buck Mulligan’s watchful eyes saw the waitress come. He helped her to +unload her tray. + +—He can find no trace of hell in ancient Irish myth, Haines said, amid +the cheerful cups. The moral idea seems lacking, the sense of destiny, +of retribution. Rather strange he should have just that fixed idea. +Does he write anything for your movement? + +He sank two lumps of sugar deftly longwise through the whipped cream. +Buck Mulligan slit a steaming scone in two and plastered butter over +its smoking pith. He bit off a soft piece hungrily. + +—Ten years, he said, chewing and laughing. He is going to write +something in ten years. + +—Seems a long way off, Haines said, thoughtfully lifting his spoon. +Still, I shouldn’t wonder if he did after all. + +He tasted a spoonful from the creamy cone of his cup. + +—This is real Irish cream I take it, he said with forbearance. I don’t +want to be imposed on. + +Elijah, skiff, light crumpled throwaway, sailed eastward by flanks of +ships and trawlers, amid an archipelago of corks, beyond new Wapping +street past Benson’s ferry, and by the threemasted schooner _Rosevean_ +from Bridgwater with bricks. + +* * * + + +Almidano Artifoni walked past Holles street, past Sewell’s yard. Behind +him Cashel Boyle O’Connor Fitzmaurice Tisdall Farrell, with +stickumbrelladustcoat dangling, shunned the lamp before Mr Law Smith’s +house and, crossing, walked along Merrion square. Distantly behind him +a blind stripling tapped his way by the wall of College park. + +Cashel Boyle O’Connor Fitzmaurice Tisdall Farrell walked as far as Mr +Lewis Werner’s cheerful windows, then turned and strode back along +Merrion square, his stickumbrelladustcoat dangling. + +At the corner of Wilde’s house he halted, frowned at Elijah’s name +announced on the Metropolitan hall, frowned at the distant pleasance of +duke’s lawn. His eyeglass flashed frowning in the sun. With ratsteeth +bared he muttered: + +—_Coactus volui._ + +He strode on for Clare street, grinding his fierce word. + +As he strode past Mr Bloom’s dental windows the sway of his dustcoat +brushed rudely from its angle a slender tapping cane and swept onwards, +having buffeted a thewless body. The blind stripling turned his sickly +face after the striding form. + +—God’s curse on you, he said sourly, whoever you are! You’re blinder +nor I am, you bitch’s bastard! + +* * * + + +Opposite Ruggy O’Donohoe’s Master Patrick Aloysius Dignam, pawing the +pound and a half of Mangan’s, late Fehrenbach’s, porksteaks he had been +sent for, went along warm Wicklow street dawdling. It was too blooming +dull sitting in the parlour with Mrs Stoer and Mrs Quigley and Mrs +MacDowell and the blind down and they all at their sniffles and sipping +sups of the superior tawny sherry uncle Barney brought from Tunney’s. +And they eating crumbs of the cottage fruitcake, jawing the whole +blooming time and sighing. + +After Wicklow lane the window of Madame Doyle, courtdress milliner, +stopped him. He stood looking in at the two puckers stripped to their +pelts and putting up their props. From the sidemirrors two mourning +Masters Dignam gaped silently. Myler Keogh, Dublin’s pet lamb, will +meet sergeantmajor Bennett, the Portobello bruiser, for a purse of +fifty sovereigns. Gob, that’d be a good pucking match to see. Myler +Keogh, that’s the chap sparring out to him with the green sash. Two bar +entrance, soldiers half price. I could easy do a bunk on ma. Master +Dignam on his left turned as he turned. That’s me in mourning. When is +it? May the twentysecond. Sure, the blooming thing is all over. He +turned to the right and on his right Master Dignam turned, his cap +awry, his collar sticking up. Buttoning it down, his chin lifted, he +saw the image of Marie Kendall, charming soubrette, beside the two +puckers. One of them mots that do be in the packets of fags Stoer +smokes that his old fellow welted hell out of him for one time he found +out. + +Master Dignam got his collar down and dawdled on. The best pucker going +for strength was Fitzsimons. One puck in the wind from that fellow +would knock you into the middle of next week, man. But the best pucker +for science was Jem Corbet before Fitzsimons knocked the stuffings out +of him, dodging and all. + +In Grafton street Master Dignam saw a red flower in a toff’s mouth and +a swell pair of kicks on him and he listening to what the drunk was +telling him and grinning all the time. + +No Sandymount tram. + +Master Dignam walked along Nassau street, shifted the porksteaks to his +other hand. His collar sprang up again and he tugged it down. The +blooming stud was too small for the buttonhole of the shirt, blooming +end to it. He met schoolboys with satchels. I’m not going tomorrow +either, stay away till Monday. He met other schoolboys. Do they notice +I’m in mourning? Uncle Barney said he’d get it into the paper tonight. +Then they’ll all see it in the paper and read my name printed and pa’s +name. + +His face got all grey instead of being red like it was and there was a +fly walking over it up to his eye. The scrunch that was when they were +screwing the screws into the coffin: and the bumps when they were +bringing it downstairs. + +Pa was inside it and ma crying in the parlour and uncle Barney telling +the men how to get it round the bend. A big coffin it was, and high and +heavylooking. How was that? The last night pa was boosed he was +standing on the landing there bawling out for his boots to go out to +Tunney’s for to boose more and he looked butty and short in his shirt. +Never see him again. Death, that is. Pa is dead. My father is dead. He +told me to be a good son to ma. I couldn’t hear the other things he +said but I saw his tongue and his teeth trying to say it better. Poor +pa. That was Mr Dignam, my father. I hope he’s in purgatory now because +he went to confession to Father Conroy on Saturday night. + +* * * + + +William Humble, earl of Dudley, and lady Dudley, accompanied by +lieutenantcolonel Heseltine, drove out after luncheon from the +viceregal lodge. In the following carriage were the honourable Mrs +Paget, Miss de Courcy and the honourable Gerald Ward A. D. C. in +attendance. + +The cavalcade passed out by the lower gate of Phoenix park saluted by +obsequious policemen and proceeded past Kingsbridge along the northern +quays. The viceroy was most cordially greeted on his way through the +metropolis. At Bloody bridge Mr Thomas Kernan beyond the river greeted +him vainly from afar. Between Queen’s and Whitworth bridges lord +Dudley’s viceregal carriages passed and were unsaluted by Mr Dudley +White, B. L., M. A., who stood on Arran quay outside Mrs M. E. White’s, +the pawnbroker’s, at the corner of Arran street west stroking his nose +with his forefinger, undecided whether he should arrive at Phibsborough +more quickly by a triple change of tram or by hailing a car or on foot +through Smithfield, Constitution hill and Broadstone terminus. In the +porch of Four Courts Richie Goulding with the costbag of Goulding, +Collis and Ward saw him with surprise. Past Richmond bridge at the +doorstep of the office of Reuben J Dodd, solicitor, agent for the +Patriotic Insurance Company, an elderly female about to enter changed +her plan and retracing her steps by King’s windows smiled credulously +on the representative of His Majesty. From its sluice in Wood quay wall +under Tom Devan’s office Poddle river hung out in fealty a tongue of +liquid sewage. Above the crossblind of the Ormond hotel, gold by +bronze, Miss Kennedy’s head by Miss Douce’s head watched and admired. +On Ormond quay Mr Simon Dedalus, steering his way from the greenhouse +for the subsheriff’s office, stood still in midstreet and brought his +hat low. His Excellency graciously returned Mr Dedalus’ greeting. From +Cahill’s corner the reverend Hugh C. Love, M. A., made obeisance +unperceived, mindful of lords deputies whose hands benignant had held +of yore rich advowsons. On Grattan bridge Lenehan and M’Coy, taking +leave of each other, watched the carriages go by. Passing by Roger +Greene’s office and Dollard’s big red printinghouse Gerty MacDowell, +carrying the Catesby’s cork lino letters for her father who was laid +up, knew by the style it was the lord and lady lieutenant but she +couldn’t see what Her Excellency had on because the tram and Spring’s +big yellow furniture van had to stop in front of her on account of its +being the lord lieutenant. Beyond Lundy Foot’s from the shaded door of +Kavanagh’s winerooms John Wyse Nolan smiled with unseen coldness +towards the lord lieutenantgeneral and general governor of Ireland. The +Right Honourable William Humble, earl of Dudley, G. C. V. O., passed +Micky Anderson’s all times ticking watches and Henry and James’s wax +smartsuited freshcheeked models, the gentleman Henry, _dernier cri_ +James. Over against Dame gate Tom Rochford and Nosey Flynn watched the +approach of the cavalcade. Tom Rochford, seeing the eyes of lady Dudley +fixed on him, took his thumbs quickly out of the pockets of his claret +waistcoat and doffed his cap to her. A charming _soubrette,_ great +Marie Kendall, with dauby cheeks and lifted skirt smiled daubily from +her poster upon William Humble, earl of Dudley, and upon +lieutenantcolonel H. G. Heseltine, and also upon the honourable Gerald +Ward A. D. C. From the window of the D. B. C. Buck Mulligan gaily, and +Haines gravely, gazed down on the viceregal equipage over the shoulders +of eager guests, whose mass of forms darkened the chessboard whereon +John Howard Parnell looked intently. In Fownes’s street Dilly Dedalus, +straining her sight upward from Chardenal’s first French primer, saw +sunshades spanned and wheelspokes spinning in the glare. John Henry +Menton, filling the doorway of Commercial Buildings, stared from +winebig oyster eyes, holding a fat gold hunter watch not looked at in +his fat left hand not feeling it. Where the foreleg of King Billy’s +horse pawed the air Mrs Breen plucked her hastening husband back from +under the hoofs of the outriders. She shouted in his ear the tidings. +Understanding, he shifted his tomes to his left breast and saluted the +second carriage. The honourable Gerald Ward A. D. C., agreeably +surprised, made haste to reply. At Ponsonby’s corner a jaded white +flagon H. halted and four tallhatted white flagons halted behind him, +E.L.Y.’S, while outriders pranced past and carriages. Opposite Pigott’s +music warerooms Mr Denis J Maginni, professor of dancing &c, gaily +apparelled, gravely walked, outpassed by a viceroy and unobserved. By +the provost’s wall came jauntily Blazes Boylan, stepping in tan shoes +and socks with skyblue clocks to the refrain of _My girl’s a Yorkshire +girl._ + +Blazes Boylan presented to the leaders’ skyblue frontlets and high +action a skyblue tie, a widebrimmed straw hat at a rakish angle and a +suit of indigo serge. His hands in his jacket pockets forgot to salute +but he offered to the three ladies the bold admiration of his eyes and +the red flower between his lips. As they drove along Nassau street His +Excellency drew the attention of his bowing consort to the programme of +music which was being discoursed in College park. Unseen brazen +highland laddies blared and drumthumped after the _cortège_: + + But though she’s a factory lass + And wears no fancy clothes. + Baraabum. + Yet I’ve a sort of a + Yorkshire relish for + My little Yorkshire rose. + Baraabum. + +Thither of the wall the quartermile flat handicappers, M. C. Green, H. +Shrift, T. M. Patey, C. Scaife, J. B. Jeffs, G. N. Morphy, F. +Stevenson, C. Adderly and W. C. Huggard, started in pursuit. Striding +past Finn’s hotel Cashel Boyle O’Connor Fitzmaurice Tisdall Farrell +stared through a fierce eyeglass across the carriages at the head of Mr +M. E. Solomons in the window of the Austro-Hungarian viceconsulate. +Deep in Leinster street by Trinity’s postern a loyal king’s man, +Hornblower, touched his tallyho cap. As the glossy horses pranced by +Merrion square Master Patrick Aloysius Dignam, waiting, saw salutes +being given to the gent with the topper and raised also his new black +cap with fingers greased by porksteak paper. His collar too sprang up. +The viceroy, on his way to inaugurate the Mirus bazaar in aid of funds +for Mercer’s hospital, drove with his following towards Lower Mount +street. He passed a blind stripling opposite Broadbent’s. In Lower +Mount street a pedestrian in a brown macintosh, eating dry bread, +passed swiftly and unscathed across the viceroy’s path. At the Royal +Canal bridge, from his hoarding, Mr Eugene Stratton, his blub lips +agrin, bade all comers welcome to Pembroke township. At Haddington road +corner two sanded women halted themselves, an umbrella and a bag in +which eleven cockles rolled to view with wonder the lord mayor and lady +mayoress without his golden chain. On Northumberland and Lansdowne +roads His Excellency acknowledged punctually salutes from rare male +walkers, the salute of two small schoolboys at the garden gate of the +house said to have been admired by the late queen when visiting the +Irish capital with her husband, the prince consort, in 1849 and the +salute of Almidano Artifoni’s sturdy trousers swallowed by a closing +door. + + + + +[ 11 ] + + +Bronze by gold heard the hoofirons, steelyringing. + +Imperthnthn thnthnthn. + +Chips, picking chips off rocky thumbnail, chips. + +Horrid! And gold flushed more. + +A husky fifenote blew. + +Blew. Blue bloom is on the. + +Goldpinnacled hair. + +A jumping rose on satiny breast of satin, rose of Castile. + +Trilling, trilling: Idolores. + +Peep! Who’s in the... peepofgold? + +Tink cried to bronze in pity. + +And a call, pure, long and throbbing. Longindying call. + +Decoy. Soft word. But look: the bright stars fade. Notes chirruping +answer. + +O rose! Castile. The morn is breaking. + +Jingle jingle jaunted jingling. + +Coin rang. Clock clacked. + +Avowal. _Sonnez._ I could. Rebound of garter. Not leave thee. Smack. +_La cloche!_ Thigh smack. Avowal. Warm. Sweetheart, goodbye! + +Jingle. Bloo. + +Boomed crashing chords. When love absorbs. War! War! The tympanum. + +A sail! A veil awave upon the waves. + +Lost. Throstle fluted. All is lost now. + +Horn. Hawhorn. + +When first he saw. Alas! + +Full tup. Full throb. + +Warbling. Ah, lure! Alluring. + +Martha! Come! + +Clapclap. Clipclap. Clappyclap. + +Goodgod henev erheard inall. + +Deaf bald Pat brought pad knife took up. + +A moonlit nightcall: far, far. + +I feel so sad. P. S. So lonely blooming. + +Listen! + +The spiked and winding cold seahorn. Have you the? Each, and for other, +plash and silent roar. + +Pearls: when she. Liszt’s rhapsodies. Hissss. + +You don’t? + +Did not: no, no: believe: Lidlyd. With a cock with a carra. + +Black. Deepsounding. Do, Ben, do. + +Wait while you wait. Hee hee. Wait while you hee. + +But wait! + +Low in dark middle earth. Embedded ore. + +Naminedamine. Preacher is he: + +All gone. All fallen. + +Tiny, her tremulous fernfoils of maidenhair. + +Amen! He gnashed in fury. + +Fro. To, fro. A baton cool protruding. + +Bronzelydia by Minagold. + +By bronze, by gold, in oceangreen of shadow. Bloom. Old Bloom. + +One rapped, one tapped, with a carra, with a cock. + +Pray for him! Pray, good people! + +His gouty fingers nakkering. + +Big Benaben. Big Benben. + +Last rose Castile of summer left bloom I feel so sad alone. + +Pwee! Little wind piped wee. + +True men. Lid Ker Cow De and Doll. Ay, ay. Like you men. Will lift your +tschink with tschunk. + +Fff! Oo! + +Where bronze from anear? Where gold from afar? Where hoofs? + +Rrrpr. Kraa. Kraandl. + +Then not till then. My eppripfftaph. Be pfrwritt. + +Done. + +Begin! + + + +Bronze by gold, miss Douce’s head by miss Kennedy’s head, over the +crossblind of the Ormond bar heard the viceregal hoofs go by, ringing +steel. + +—Is that her? asked miss Kennedy. + +Miss Douce said yes, sitting with his ex, pearl grey and _eau de Nil._ + +—Exquisite contrast, miss Kennedy said. + +When all agog miss Douce said eagerly: + +—Look at the fellow in the tall silk. + +—Who? Where? gold asked more eagerly. + +—In the second carriage, miss Douce’s wet lips said, laughing in the +sun. + +He’s looking. Mind till I see. + +She darted, bronze, to the backmost corner, flattening her face against +the pane in a halo of hurried breath. + +Her wet lips tittered: + +—He’s killed looking back. + +She laughed: + +—O wept! Aren’t men frightful idiots? + +With sadness. + +Miss Kennedy sauntered sadly from bright light, twining a loose hair +behind an ear. Sauntering sadly, gold no more, she twisted twined a +hair. Sadly she twined in sauntering gold hair behind a curving ear. + +—It’s them has the fine times, sadly then she said. + +A man. + +Bloowho went by by Moulang’s pipes bearing in his breast the sweets of +sin, by Wine’s antiques, in memory bearing sweet sinful words, by +Carroll’s dusky battered plate, for Raoul. + +The boots to them, them in the bar, them barmaids came. For them +unheeding him he banged on the counter his tray of chattering china. +And + +—There’s your teas, he said. + +Miss Kennedy with manners transposed the teatray down to an upturned +lithia crate, safe from eyes, low. + +—What is it? loud boots unmannerly asked. + +—Find out, miss Douce retorted, leaving her spyingpoint. + +—Your _beau,_ is it? + +A haughty bronze replied: + +—I’ll complain to Mrs de Massey on you if I hear any more of your +impertinent insolence. + +—Imperthnthn thnthnthn, bootssnout sniffed rudely, as he retreated as +she threatened as he had come. + +Bloom. + +On her flower frowning miss Douce said: + +—Most aggravating that young brat is. If he doesn’t conduct himself +I’ll wring his ear for him a yard long. + +Ladylike in exquisite contrast. + +—Take no notice, miss Kennedy rejoined. + +She poured in a teacup tea, then back in the teapot tea. They cowered +under their reef of counter, waiting on footstools, crates upturned, +waiting for their teas to draw. They pawed their blouses, both of black +satin, two and nine a yard, waiting for their teas to draw, and two and +seven. + +Yes, bronze from anear, by gold from afar, heard steel from anear, +hoofs ring from afar, and heard steelhoofs ringhoof ringsteel. + +—Am I awfully sunburnt? + +Miss bronze unbloused her neck. + +—No, said miss Kennedy. It gets brown after. Did you try the borax with +the cherry laurel water? + +Miss Douce halfstood to see her skin askance in the barmirror +gildedlettered where hock and claret glasses shimmered and in their +midst a shell. + +—And leave it to my hands, she said. + +—Try it with the glycerine, miss Kennedy advised. + +Bidding her neck and hands adieu miss Douce + +—Those things only bring out a rash, replied, reseated. I asked that +old fogey in Boyd’s for something for my skin. + +Miss Kennedy, pouring now a fulldrawn tea, grimaced and prayed: + +—O, don’t remind me of him for mercy’ sake! + +—But wait till I tell you, miss Douce entreated. + +Sweet tea miss Kennedy having poured with milk plugged both two ears +with little fingers. + +—No, don’t, she cried. + +—I won’t listen, she cried. + +But Bloom? + +Miss Douce grunted in snuffy fogey’s tone: + +—For your what? says he. + +Miss Kennedy unplugged her ears to hear, to speak: but said, but prayed +again: + +—Don’t let me think of him or I’ll expire. The hideous old wretch! That +night in the Antient Concert Rooms. + +She sipped distastefully her brew, hot tea, a sip, sipped, sweet tea. + +—Here he was, miss Douce said, cocking her bronze head three quarters, +ruffling her nosewings. Hufa! Hufa! + +Shrill shriek of laughter sprang from miss Kennedy’s throat. Miss Douce +huffed and snorted down her nostrils that quivered imperthnthn like a +snout in quest. + +—O! shrieking, miss Kennedy cried. Will you ever forget his goggle eye? + +Miss Douce chimed in in deep bronze laughter, shouting: + +—And your other eye! + +Bloowhose dark eye read Aaron Figatner’s name. Why do I always think +Figather? Gathering figs, I think. And Prosper Loré’s huguenot name. By +Bassi’s blessed virgins Bloom’s dark eyes went by. Bluerobed, white +under, come to me. God they believe she is: or goddess. Those today. I +could not see. That fellow spoke. A student. After with Dedalus’ son. +He might be Mulligan. All comely virgins. That brings those rakes of +fellows in: her white. + +By went his eyes. The sweets of sin. Sweet are the sweets. + +Of sin. + +In a giggling peal young goldbronze voices blended, Douce with Kennedy +your other eye. They threw young heads back, bronze gigglegold, to let +freefly their laughter, screaming, your other, signals to each other, +high piercing notes. + +Ah, panting, sighing, sighing, ah, fordone, their mirth died down. + +Miss Kennedy lipped her cup again, raised, drank a sip and +gigglegiggled. Miss Douce, bending over the teatray, ruffled again her +nose and rolled droll fattened eyes. Again Kennygiggles, stooping, her +fair pinnacles of hair, stooping, her tortoise napecomb showed, +spluttered out of her mouth her tea, choking in tea and laughter, +coughing with choking, crying: + +—O greasy eyes! Imagine being married to a man like that! she cried. +With his bit of beard! + +Douce gave full vent to a splendid yell, a full yell of full woman, +delight, joy, indignation. + +—Married to the greasy nose! she yelled. + +Shrill, with deep laughter, after, gold after bronze, they urged each +each to peal after peal, ringing in changes, bronzegold, goldbronze, +shrilldeep, to laughter after laughter. And then laughed more. Greasy I +knows. Exhausted, breathless, their shaken heads they laid, braided and +pinnacled by glossycombed, against the counterledge. All flushed (O!), +panting, sweating (O!), all breathless. + +Married to Bloom, to greaseabloom. + +—O saints above! miss Douce said, sighed above her jumping rose. I +wished I hadn’t laughed so much. I feel all wet. + +—O, miss Douce! miss Kennedy protested. You horrid thing! + +And flushed yet more (you horrid!), more goldenly. + +By Cantwell’s offices roved Greaseabloom, by Ceppi’s virgins, bright of +their oils. Nannetti’s father hawked those things about, wheedling at +doors as I. Religion pays. Must see him for that par. Eat first. I +want. Not yet. At four, she said. Time ever passing. Clockhands +turning. On. Where eat? The Clarence, Dolphin. On. For Raoul. Eat. If I +net five guineas with those ads. The violet silk petticoats. Not yet. +The sweets of sin. + +Flushed less, still less, goldenly paled. + +Into their bar strolled Mr Dedalus. Chips, picking chips off one of his +rocky thumbnails. Chips. He strolled. + +—O, welcome back, miss Douce. + +He held her hand. Enjoyed her holidays? + +—Tiptop. + +He hoped she had nice weather in Rostrevor. + +—Gorgeous, she said. Look at the holy show I am. Lying out on the +strand all day. + +Bronze whiteness. + +—That was exceedingly naughty of you, Mr Dedalus told her and pressed +her hand indulgently. Tempting poor simple males. + +Miss Douce of satin douced her arm away. + +—O go away! she said. You’re very simple, I don’t think. + +He was. + +—Well now I am, he mused. I looked so simple in the cradle they +christened me simple Simon. + +—You must have been a doaty, miss Douce made answer. And what did the +doctor order today? + +—Well now, he mused, whatever you say yourself. I think I’ll trouble +you for some fresh water and a half glass of whisky. + +Jingle. + +—With the greatest alacrity, miss Douce agreed. + +With grace of alacrity towards the mirror gilt Cantrell and Cochrane’s +she turned herself. With grace she tapped a measure of gold whisky from +her crystal keg. Forth from the skirt of his coat Mr Dedalus brought +pouch and pipe. Alacrity she served. He blew through the flue two husky +fifenotes. + +—By Jove, he mused, I often wanted to see the Mourne mountains. Must be +a great tonic in the air down there. But a long threatening comes at +last, they say. Yes. Yes. + +Yes. He fingered shreds of hair, her maidenhair, her mermaid’s, into +the bowl. Chips. Shreds. Musing. Mute. + +None nought said nothing. Yes. + +Gaily miss Douce polished a tumbler, trilling: + +—_O, Idolores, queen of the eastern seas!_ + +—Was Mr Lidwell in today? + +In came Lenehan. Round him peered Lenehan. Mr Bloom reached Essex +bridge. Yes, Mr Bloom crossed bridge of Yessex. To Martha I must write. +Buy paper. Daly’s. Girl there civil. Bloom. Old Bloom. Blue bloom is on +the rye. + +—He was in at lunchtime, miss Douce said. + +Lenehan came forward. + +—Was Mr Boylan looking for me? + +He asked. She answered: + +—Miss Kennedy, was Mr Boylan in while I was upstairs? + +She asked. Miss voice of Kennedy answered, a second teacup poised, her +gaze upon a page: + +—No. He was not. + +Miss gaze of Kennedy, heard, not seen, read on. Lenehan round the +sandwichbell wound his round body round. + +—Peep! Who’s in the corner? + +No glance of Kennedy rewarding him he yet made overtures. To mind her +stops. To read only the black ones: round o and crooked ess. + +Jingle jaunty jingle. + +Girlgold she read and did not glance. Take no notice. She took no +notice while he read by rote a solfa fable for her, plappering flatly: + +—Ah fox met ah stork. Said thee fox too thee stork: Will you put your +bill down inn my troath and pull upp ah bone? + +He droned in vain. Miss Douce turned to her tea aside. + +He sighed aside: + +—Ah me! O my! + +He greeted Mr Dedalus and got a nod. + +—Greetings from the famous son of a famous father. + +—Who may he be? Mr Dedalus asked. + +Lenehan opened most genial arms. Who? + +—Who may he be? he asked. Can you ask? Stephen, the youthful bard. + +Dry. + +Mr Dedalus, famous father, laid by his dry filled pipe. + +—I see, he said. I didn’t recognise him for the moment. I hear he is +keeping very select company. Have you seen him lately? + +He had. + +—I quaffed the nectarbowl with him this very day, said Lenehan. In +Mooney’s _en ville_ and in Mooney’s _sur mer._ He had received the +rhino for the labour of his muse. + +He smiled at bronze’s teabathed lips, at listening lips and eyes: + +—The _élite_ of Erin hung upon his lips. The ponderous pundit, Hugh +MacHugh, Dublin’s most brilliant scribe and editor and that minstrel +boy of the wild wet west who is known by the euphonious appellation of +the O’Madden Burke. + +After an interval Mr Dedalus raised his grog and + +—That must have been highly diverting, said he. I see. + +He see. He drank. With faraway mourning mountain eye. Set down his +glass. + +He looked towards the saloon door. + +—I see you have moved the piano. + +—The tuner was in today, miss Douce replied, tuning it for the smoking +concert and I never heard such an exquisite player. + +—Is that a fact? + +—Didn’t he, miss Kennedy? The real classical, you know. And blind too, +poor fellow. Not twenty I’m sure he was. + +—Is that a fact? Mr Dedalus said. + +He drank and strayed away. + +—So sad to look at his face, miss Douce condoled. + +God’s curse on bitch’s bastard. + +Tink to her pity cried a diner’s bell. To the door of the bar and +diningroom came bald Pat, came bothered Pat, came Pat, waiter of +Ormond. Lager for diner. Lager without alacrity she served. + +With patience Lenehan waited for Boylan with impatience, for +jinglejaunty blazes boy. + +Upholding the lid he (who?) gazed in the coffin (coffin?) at the +oblique triple (piano!) wires. He pressed (the same who pressed +indulgently her hand), soft pedalling, a triple of keys to see the +thicknesses of felt advancing, to hear the muffled hammerfall in +action. + +Two sheets cream vellum paper one reserve two envelopes when I was in +Wisdom Hely’s wise Bloom in Daly’s Henry Flower bought. Are you not +happy in your home? Flower to console me and a pin cuts lo. Means +something, language of flow. Was it a daisy? Innocence that is. +Respectable girl meet after mass. Thanks awfully muchly. Wise Bloom +eyed on the door a poster, a swaying mermaid smoking mid nice waves. +Smoke mermaids, coolest whiff of all. Hair streaming: lovelorn. For +some man. For Raoul. He eyed and saw afar on Essex bridge a gay hat +riding on a jaunting car. It is. Again. Third time. Coincidence. + +Jingling on supple rubbers it jaunted from the bridge to Ormond quay. +Follow. Risk it. Go quick. At four. Near now. Out. + +—Twopence, sir, the shopgirl dared to say. + +—Aha... I was forgetting... Excuse... + +—And four. + +At four she. Winsomely she on Bloohimwhom smiled. Bloo smi qui go. +Ternoon. Think you’re the only pebble on the beach? Does that to all. + +For men. + +In drowsy silence gold bent on her page. + +From the saloon a call came, long in dying. That was a tuningfork the +tuner had that he forgot that he now struck. A call again. That he now +poised that it now throbbed. You hear? It throbbed, pure, purer, softly +and softlier, its buzzing prongs. Longer in dying call. + +Pat paid for diner’s popcorked bottle: and over tumbler, tray and +popcorked bottle ere he went he whispered, bald and bothered, with miss +Douce. + +—_The bright stars fade_... + +A voiceless song sang from within, singing: + +—... _the morn is breaking._ + +A duodene of birdnotes chirruped bright treble answer under sensitive +hands. Brightly the keys, all twinkling, linked, all harpsichording, +called to a voice to sing the strain of dewy morn, of youth, of love’s +leavetaking, life’s, love’s morn. + +—_The dewdrops pearl_... + +Lenehan’s lips over the counter lisped a low whistle of decoy. + +—But look this way, he said, rose of Castile. + +Jingle jaunted by the curb and stopped. + +She rose and closed her reading, rose of Castile: fretted, forlorn, +dreamily rose. + +—Did she fall or was she pushed? he asked her. + +She answered, slighting: + +—Ask no questions and you’ll hear no lies. + +Like lady, ladylike. + +Blazes Boylan’s smart tan shoes creaked on the barfloor where he +strode. Yes, gold from anear by bronze from afar. Lenehan heard and +knew and hailed him: + +—See the conquering hero comes. + +Between the car and window, warily walking, went Bloom, unconquered +hero. See me he might. The seat he sat on: warm. Black wary hecat +walked towards Richie Goulding’s legal bag, lifted aloft, saluting. + +—_And I from thee_... + +—I heard you were round, said Blazes Boylan. + +He touched to fair miss Kennedy a rim of his slanted straw. She smiled +on him. But sister bronze outsmiled her, preening for him her richer +hair, a bosom and a rose. + +Smart Boylan bespoke potions. + +—What’s your cry? Glass of bitter? Glass of bitter, please, and a +sloegin for me. Wire in yet? + +Not yet. At four she. Who said four? + +Cowley’s red lugs and bulging apple in the door of the sheriff’s +office. + +Avoid. Goulding a chance. What is he doing in the Ormond? Car waiting. +Wait. + +Hello. Where off to? Something to eat? I too was just. In here. What, +Ormond? Best value in Dublin. Is that so? Diningroom. Sit tight there. +See, not be seen. I think I’ll join you. Come on. Richie led on. Bloom +followed bag. Dinner fit for a prince. + +Miss Douce reached high to take a flagon, stretching her satin arm, her +bust, that all but burst, so high. + +—O! O! jerked Lenehan, gasping at each stretch. O! + +But easily she seized her prey and led it low in triumph. + +—Why don’t you grow? asked Blazes Boylan. + +Shebronze, dealing from her oblique jar thick syrupy liquor for his +lips, looked as it flowed (flower in his coat: who gave him?), and +syrupped with her voice: + +—Fine goods in small parcels. + +That is to say she. Neatly she poured slowsyrupy sloe. + +—Here’s fortune, Blazes said. + +He pitched a broad coin down. Coin rang. + +—Hold on, said Lenehan, till I... + +—Fortune, he wished, lifting his bubbled ale. + +—Sceptre will win in a canter, he said. + +—I plunged a bit, said Boylan winking and drinking. Not on my own, you +know. Fancy of a friend of mine. + +Lenehan still drank and grinned at his tilted ale and at miss Douce’s +lips that all but hummed, not shut, the oceansong her lips had trilled. +Idolores. The eastern seas. + +Clock whirred. Miss Kennedy passed their way (flower, wonder who gave), +bearing away teatray. Clock clacked. + +Miss Douce took Boylan’s coin, struck boldly the cashregister. It +clanged. Clock clacked. Fair one of Egypt teased and sorted in the till +and hummed and handed coins in change. Look to the west. A clack. For +me. + +—What time is that? asked Blazes Boylan. Four? + +O’clock. + +Lenehan, small eyes ahunger on her humming, bust ahumming, tugged +Blazes Boylan’s elbowsleeve. + +—Let’s hear the time, he said. + +The bag of Goulding, Collis, Ward led Bloom by ryebloom flowered +tables. Aimless he chose with agitated aim, bald Pat attending, a table +near the door. Be near. At four. Has he forgotten? Perhaps a trick. Not +come: whet appetite. I couldn’t do. Wait, wait. Pat, waiter, waited. + +Sparkling bronze azure eyed Blazure’s skyblue bow and eyes. + +—Go on, pressed Lenehan. There’s no-one. He never heard. + +—... _to Flora’s lips did hie._ + +High, a high note pealed in the treble clear. + +Bronzedouce communing with her rose that sank and rose sought Blazes +Boylan’s flower and eyes. + +—Please, please. + +He pleaded over returning phrases of avowal. + +—_I could not leave thee_... + +—Afterwits, miss Douce promised coyly. + +—No, now, urged Lenehan. _Sonnez la cloche!_ O do! There’s no-one. + +She looked. Quick. Miss Kenn out of earshot. Sudden bent. Two kindling +faces watched her bend. + +Quavering the chords strayed from the air, found it again, lost chord, +and lost and found it, faltering. + +—Go on! Do! _Sonnez!_ + +Bending, she nipped a peak of skirt above her knee. Delayed. Taunted +them still, bending, suspending, with wilful eyes. + +_—Sonnez!_ + +Smack. She set free sudden in rebound her nipped elastic garter +smackwarm against her smackable a woman’s warmhosed thigh. + +—_La cloche!_ cried gleeful Lenehan. Trained by owner. No sawdust +there. + +She smilesmirked supercilious (wept! aren’t men?), but, lightward +gliding, mild she smiled on Boylan. + +—You’re the essence of vulgarity, she in gliding said. + +Boylan, eyed, eyed. Tossed to fat lips his chalice, drank off his +chalice tiny, sucking the last fat violet syrupy drops. His spellbound +eyes went after, after her gliding head as it went down the bar by +mirrors, gilded arch for ginger ale, hock and claret glasses +shimmering, a spiky shell, where it concerted, mirrored, bronze with +sunnier bronze. + +Yes, bronze from anearby. + +—... _Sweetheart, goodbye!_ + +—I’m off, said Boylan with impatience. + +He slid his chalice brisk away, grasped his change. + +—Wait a shake, begged Lenehan, drinking quickly. I wanted to tell you. +Tom Rochford... + +—Come on to blazes, said Blazes Boylan, going. + +Lenehan gulped to go. + +—Got the horn or what? he said. Wait. I’m coming. + +He followed the hasty creaking shoes but stood by nimbly by the +threshold, saluting forms, a bulky with a slender. + +—How do you do, Mr Dollard? + +—Eh? How do? How do? Ben Dollard’s vague bass answered, turning an +instant from Father Cowley’s woe. He won’t give you any trouble, Bob. +Alf Bergan will speak to the long fellow. We’ll put a barleystraw in +that Judas Iscariot’s ear this time. + +Sighing Mr Dedalus came through the saloon, a finger soothing an +eyelid. + +—Hoho, we will, Ben Dollard yodled jollily. Come on, Simon. Give us a +ditty. We heard the piano. + +Bald Pat, bothered waiter, waited for drink orders. Power for Richie. +And Bloom? Let me see. Not make him walk twice. His corns. Four now. +How warm this black is. Course nerves a bit. Refracts (is it?) heat. +Let me see. Cider. Yes, bottle of cider. + +—What’s that? Mr Dedalus said. I was only vamping, man. + +—Come on, come on, Ben Dollard called. Begone dull care. Come, Bob. + +He ambled Dollard, bulky slops, before them (hold that fellow with the: +hold him now) into the saloon. He plumped him Dollard on the stool. His +gouty paws plumped chords. Plumped, stopped abrupt. + +Bald Pat in the doorway met tealess gold returning. Bothered, he wanted +Power and cider. Bronze by the window, watched, bronze from afar. + +Jingle a tinkle jaunted. + +Bloom heard a jing, a little sound. He’s off. Light sob of breath Bloom +sighed on the silent bluehued flowers. Jingling. He’s gone. Jingle. +Hear. + +—Love and War, Ben, Mr Dedalus said. God be with old times. + +Miss Douce’s brave eyes, unregarded, turned from the crossblind, +smitten by sunlight. Gone. Pensive (who knows?), smitten (the smiting +light), she lowered the dropblind with a sliding cord. She drew down +pensive (why did he go so quick when I?) about her bronze, over the bar +where bald stood by sister gold, inexquisite contrast, contrast +inexquisite nonexquisite, slow cool dim seagreen sliding depth of +shadow, _eau de Nil._ + +—Poor old Goodwin was the pianist that night, Father Cowley reminded +them. There was a slight difference of opinion between himself and the +Collard grand. + +There was. + +—A symposium all his own, Mr Dedalus said. The devil wouldn’t stop him. +He was a crotchety old fellow in the primary stage of drink. + +—God, do you remember? Ben bulky Dollard said, turning from the +punished keyboard. And by Japers I had no wedding garment. + +They laughed all three. He had no wed. All trio laughed. No wedding +garment. + +—Our friend Bloom turned in handy that night, Mr Dedalus said. Where’s +my pipe, by the way? + +He wandered back to the bar to the lost chord pipe. Bald Pat carried +two diners’ drinks, Richie and Poldy. And Father Cowley laughed again. + +—I saved the situation, Ben, I think. + +—You did, averred Ben Dollard. I remember those tight trousers too. +That was a brilliant idea, Bob. + +Father Cowley blushed to his brilliant purply lobes. He saved the +situa. Tight trou. Brilliant ide. + +—I knew he was on the rocks, he said. The wife was playing the piano in +the coffee palace on Saturdays for a very trifling consideration and +who was it gave me the wheeze she was doing the other business? Do you +remember? We had to search all Holles street to find them till the chap +in Keogh’s gave us the number. Remember? + +Ben remembered, his broad visage wondering. + +—By God, she had some luxurious operacloaks and things there. + +Mr Dedalus wandered back, pipe in hand. + +—Merrion square style. Balldresses, by God, and court dresses. He +wouldn’t take any money either. What? Any God’s quantity of cocked hats +and boleros and trunkhose. What? + +—Ay, ay, Mr Dedalus nodded. Mrs Marion Bloom has left off clothes of +all descriptions. + +Jingle jaunted down the quays. Blazes sprawled on bounding tyres. + +Liver and bacon. Steak and kidney pie. Right, sir. Right, Pat. + +Mrs Marion. Met him pike hoses. Smell of burn. Of Paul de Kock. Nice +name he. + +—What’s this her name was? A buxom lassy. Marion... + +—Tweedy. + +—Yes. Is she alive? + +—And kicking. + +—She was a daughter of... + +—Daughter of the regiment. + +—Yes, begad. I remember the old drummajor. + +Mr Dedalus struck, whizzed, lit, puffed savoury puff after + +—Irish? I don’t know, faith. Is she, Simon? + +Puff after stiff, a puff, strong, savoury, crackling. + +—Buccinator muscle is... What?... Bit rusty... O, she is... My Irish +Molly, O. + +He puffed a pungent plumy blast. + +—From the rock of Gibraltar... all the way. + +They pined in depth of ocean shadow, gold by the beerpull, bronze by +maraschino, thoughtful all two. Mina Kennedy, 4 Lismore terrace, +Drumcondra with Idolores, a queen, Dolores, silent. + +Pat served, uncovered dishes. Leopold cut liverslices. As said before +he ate with relish the inner organs, nutty gizzards, fried cods’ roes +while Richie Goulding, Collis, Ward ate steak and kidney, steak then +kidney, bite by bite of pie he ate Bloom ate they ate. + +Bloom with Goulding, married in silence, ate. Dinners fit for princes. + +By Bachelor’s walk jogjaunty jingled Blazes Boylan, bachelor, in sun in +heat, mare’s glossy rump atrot, with flick of whip, on bounding tyres: +sprawled, warmseated, Boylan impatience, ardentbold. Horn. Have you +the? Horn. Have you the? Haw haw horn. + +Over their voices Dollard bassooned attack, booming over bombarding +chords: + +—_When love absorbs my ardent soul_... + +Roll of Bensoulbenjamin rolled to the quivery loveshivery roofpanes. + +—War! War! cried Father Cowley. You’re the warrior. + +—So I am, Ben Warrior laughed. I was thinking of your landlord. Love or +money. + +He stopped. He wagged huge beard, huge face over his blunder huge. + +—Sure, you’d burst the tympanum of her ear, man, Mr Dedalus said +through smoke aroma, with an organ like yours. + +In bearded abundant laughter Dollard shook upon the keyboard. He would. + +—Not to mention another membrane, Father Cowley added. Half time, Ben. +_Amoroso ma non troppo._ Let me there. + +Miss Kennedy served two gentlemen with tankards of cool stout. She +passed a remark. It was indeed, first gentleman said, beautiful +weather. They drank cool stout. Did she know where the lord lieutenant +was going? And heard steelhoofs ringhoof ring. No, she couldn’t say. +But it would be in the paper. O, she need not trouble. No trouble. She +waved about her outspread _Independent,_ searching, the lord +lieutenant, her pinnacles of hair slowmoving, lord lieuten. Too much +trouble, first gentleman said. O, not in the least. Way he looked that. +Lord lieutenant. Gold by bronze heard iron steel. + + —............ _my ardent soul +I care not foror the morrow._ + +In liver gravy Bloom mashed mashed potatoes. Love and War someone is. +Ben Dollard’s famous. Night he ran round to us to borrow a dress suit +for that concert. Trousers tight as a drum on him. Musical porkers. +Molly did laugh when he went out. Threw herself back across the bed, +screaming, kicking. With all his belongings on show. O saints above, +I’m drenched! O, the women in the front row! O, I never laughed so +many! Well, of course that’s what gives him the base barreltone. For +instance eunuchs. Wonder who’s playing. Nice touch. Must be Cowley. +Musical. Knows whatever note you play. Bad breath he has, poor chap. +Stopped. + +Miss Douce, engaging, Lydia Douce, bowed to suave solicitor, George +Lidwell, gentleman, entering. Good afternoon. She gave her moist (a +lady’s) hand to his firm clasp. Afternoon. Yes, she was back. To the +old dingdong again. + +—Your friends are inside, Mr Lidwell. + +George Lidwell, suave, solicited, held a lydiahand. + +Bloom ate liv as said before. Clean here at least. That chap in the +Burton, gummy with gristle. No-one here: Goulding and I. Clean tables, +flowers, mitres of napkins. Pat to and fro. Bald Pat. Nothing to do. +Best value in Dub. + +Piano again. Cowley it is. Way he sits in to it, like one together, +mutual understanding. Tiresome shapers scraping fiddles, eye on the +bowend, sawing the cello, remind you of toothache. Her high long snore. +Night we were in the box. Trombone under blowing like a grampus, +between the acts, other brass chap unscrewing, emptying spittle. +Conductor’s legs too, bagstrousers, jiggedy jiggedy. Do right to hide +them. + +Jiggedy jingle jaunty jaunty. + +Only the harp. Lovely. Gold glowering light. Girl touched it. Poop of a +lovely. Gravy’s rather good fit for a. Golden ship. Erin. The harp that +once or twice. Cool hands. Ben Howth, the rhododendrons. We are their +harps. I. He. Old. Young. + +—Ah, I couldn’t, man, Mr Dedalus said, shy, listless. + +Strongly. + +—Go on, blast you! Ben Dollard growled. Get it out in bits. + +—_M’appari,_ Simon, Father Cowley said. + +Down stage he strode some paces, grave, tall in affliction, his long +arms outheld. Hoarsely the apple of his throat hoarsed softly. Softly +he sang to a dusty seascape there: _A Last Farewell._ A headland, a +ship, a sail upon the billows. Farewell. A lovely girl, her veil awave +upon the wind upon the headland, wind around her. + +Cowley sang: + +_—M’appari tutt’amor: +Il mio sguardo l’incontr..._ + +She waved, unhearing Cowley, her veil, to one departing, dear one, to +wind, love, speeding sail, return. + +—Go on, Simon. + +—Ah, sure, my dancing days are done, Ben... Well... + +Mr Dedalus laid his pipe to rest beside the tuningfork and, sitting, +touched the obedient keys. + +—No, Simon, Father Cowley turned. Play it in the original. One flat. + +The keys, obedient, rose higher, told, faltered, confessed, confused. + +Up stage strode Father Cowley. + +—Here, Simon, I’ll accompany you, he said. Get up. + +By Graham Lemon’s pineapple rock, by Elvery’s elephant jingly jogged. + +Steak, kidney, liver, mashed, at meat fit for princes sat princes Bloom +and Goulding. Princes at meat they raised and drank, Power and cider. + +Most beautiful tenor air ever written, Richie said: _Sonnambula._ He +heard Joe Maas sing that one night. Ah, what M’Guckin! Yes. In his way. +Choirboy style. Maas was the boy. Massboy. A lyrical tenor if you like. +Never forget it. Never. + +Tenderly Bloom over liverless bacon saw the tightened features strain. +Backache he. Bright’s bright eye. Next item on the programme. Paying +the piper. Pills, pounded bread, worth a guinea a box. Stave it off +awhile. Sings too: _Down among the dead men._ Appropriate. Kidney pie. +Sweets to the. Not making much hand of it. Best value in. +Characteristic of him. Power. Particular about his drink. Flaw in the +glass, fresh Vartry water. Fecking matches from counters to save. Then +squander a sovereign in dribs and drabs. And when he’s wanted not a +farthing. Screwed refusing to pay his fare. Curious types. + +Never would Richie forget that night. As long as he lived: never. In +the gods of the old Royal with little Peake. And when the first note. + +Speech paused on Richie’s lips. + +Coming out with a whopper now. Rhapsodies about damn all. Believes his +own lies. Does really. Wonderful liar. But want a good memory. + +—Which air is that? asked Leopold Bloom. + +—_All is lost now_. + +Richie cocked his lips apout. A low incipient note sweet banshee +murmured: all. A thrush. A throstle. His breath, birdsweet, good teeth +he’s proud of, fluted with plaintive woe. Is lost. Rich sound. Two +notes in one there. Blackbird I heard in the hawthorn valley. Taking my +motives he twined and turned them. All most too new call is lost in +all. Echo. How sweet the answer. How is that done? All lost now. +Mournful he whistled. Fall, surrender, lost. + +Bloom bent leopold ear, turning a fringe of doyley down under the vase. +Order. Yes, I remember. Lovely air. In sleep she went to him. Innocence +in the moon. Brave. Don’t know their danger. Still hold her back. Call +name. Touch water. Jingle jaunty. Too late. She longed to go. That’s +why. Woman. As easy stop the sea. Yes: all is lost. + +—A beautiful air, said Bloom lost Leopold. I know it well. + +Never in all his life had Richie Goulding. + +He knows it well too. Or he feels. Still harping on his daughter. Wise +child that knows her father, Dedalus said. Me? + +Bloom askance over liverless saw. Face of the all is lost. Rollicking +Richie once. Jokes old stale now. Wagging his ear. Napkinring in his +eye. Now begging letters he sends his son with. Crosseyed Walter sir I +did sir. Wouldn’t trouble only I was expecting some money. Apologise. + +Piano again. Sounds better than last time I heard. Tuned probably. +Stopped again. + +Dollard and Cowley still urged the lingering singer out with it. + +—With it, Simon. + +—It, Simon. + +—Ladies and gentlemen, I am most deeply obliged by your kind +solicitations. + +—It, Simon. + +—I have no money but if you will lend me your attention I shall +endeavour to sing to you of a heart bowed down. + +By the sandwichbell in screening shadow Lydia, her bronze and rose, a +lady’s grace, gave and withheld: as in cool glaucous _eau de Nil_ Mina +to tankards two her pinnacles of gold. + +The harping chords of prelude closed. A chord, longdrawn, expectant, +drew a voice away. + +—_When first I saw that form endearing_... + +Richie turned. + +—Si Dedalus’ voice, he said. + +Braintipped, cheek touched with flame, they listened feeling that flow +endearing flow over skin limbs human heart soul spine. Bloom signed to +Pat, bald Pat is a waiter hard of hearing, to set ajar the door of the +bar. The door of the bar. So. That will do. Pat, waiter, waited, +waiting to hear, for he was hard of hear by the door. + +—_Sorrow from me seemed to depart._ + +Through the hush of air a voice sang to them, low, not rain, not leaves +in murmur, like no voice of strings or reeds or whatdoyoucallthem +dulcimers touching their still ears with words, still hearts of their +each his remembered lives. Good, good to hear: sorrow from them each +seemed to from both depart when first they heard. When first they saw, +lost Richie Poldy, mercy of beauty, heard from a person wouldn’t expect +it in the least, her first merciful lovesoft oftloved word. + +Love that is singing: love’s old sweet song. Bloom unwound slowly the +elastic band of his packet. Love’s old sweet _sonnez la_ gold. Bloom +wound a skein round four forkfingers, stretched it, relaxed, and wound +it round his troubled double, fourfold, in octave, gyved them fast. + +—_Full of hope and all delighted_... + +Tenors get women by the score. Increase their flow. Throw flower at his +feet. When will we meet? My head it simply. Jingle all delighted. He +can’t sing for tall hats. Your head it simply swurls. Perfumed for him. +What perfume does your wife? I want to know. Jing. Stop. Knock. Last +look at mirror always before she answers the door. The hall. There? How +do you? I do well. There? What? Or? Phial of cachous, kissing comfits, +in her satchel. Yes? Hands felt for the opulent. + +Alas the voice rose, sighing, changed: loud, full, shining, proud. + +—_But alas, ’twas idle dreaming_... + +Glorious tone he has still. Cork air softer also their brogue. Silly +man! Could have made oceans of money. Singing wrong words. Wore out his +wife: now sings. But hard to tell. Only the two themselves. If he +doesn’t break down. Keep a trot for the avenue. His hands and feet sing +too. Drink. Nerves overstrung. Must be abstemious to sing. Jenny Lind +soup: stock, sage, raw eggs, half pint of cream. For creamy dreamy. + +Tenderness it welled: slow, swelling, full it throbbed. That’s the +chat. Ha, give! Take! Throb, a throb, a pulsing proud erect. + +Words? Music? No: it’s what’s behind. + +Bloom looped, unlooped, noded, disnoded. + +Bloom. Flood of warm jamjam lickitup secretness flowed to flow in music +out, in desire, dark to lick flow invading. Tipping her tepping her +tapping her topping her. Tup. Pores to dilate dilating. Tup. The joy +the feel the warm the. Tup. To pour o’er sluices pouring gushes. Flood, +gush, flow, joygush, tupthrob. Now! Language of love. + +—... _ray of hope is_... + +Beaming. Lydia for Lidwell squeak scarcely hear so ladylike the muse +unsqueaked a ray of hopk. + +_Martha_ it is. Coincidence. Just going to write. Lionel’s song. Lovely +name you have. Can’t write. Accept my little pres. Play on her +heartstrings pursestrings too. She’s a. I called you naughty boy. Still +the name: Martha. How strange! Today. + +The voice of Lionel returned, weaker but unwearied. It sang again to +Richie Poldy Lydia Lidwell also sang to Pat open mouth ear waiting to +wait. How first he saw that form endearing, how sorrow seemed to part, +how look, form, word charmed him Gould Lidwell, won Pat Bloom’s heart. + +Wish I could see his face, though. Explain better. Why the barber in +Drago’s always looked my face when I spoke his face in the glass. Still +hear it better here than in the bar though farther. + +—_Each graceful look_... + +First night when first I saw her at Mat Dillon’s in Terenure. Yellow, +black lace she wore. Musical chairs. We two the last. Fate. After her. +Fate. Round and round slow. Quick round. We two. All looked. Halt. Down +she sat. All ousted looked. Lips laughing. Yellow knees. + +—_Charmed my eye_... + +Singing. _Waiting_ she sang. I turned her music. Full voice of perfume +of what perfume does your lilactrees. Bosom I saw, both full, throat +warbling. First I saw. She thanked me. Why did she me? Fate. Spanishy +eyes. Under a peartree alone patio this hour in old Madrid one side in +shadow Dolores shedolores. At me. Luring. Ah, alluring. + +—_Martha! Ah, Martha!_ + +Quitting all languor Lionel cried in grief, in cry of passion dominant +to love to return with deepening yet with rising chords of harmony. In +cry of lionel loneliness that she should know, must martha feel. For +only her he waited. Where? Here there try there here all try where. +Somewhere. + +—_Co-ome, thou lost one! + +Co-ome, thou dear one!_ + +Alone. One love. One hope. One comfort me. Martha, chestnote, return! + +_—Come!_ + +It soared, a bird, it held its flight, a swift pure cry, soar silver +orb it leaped serene, speeding, sustained, to come, don’t spin it out +too long long breath he breath long life, soaring high, high +resplendent, aflame, crowned, high in the effulgence symbolistic, high, +of the etherial bosom, high, of the high vast irradiation everywhere +all soaring all around about the all, the endlessnessnessness... + +—_To me!_ + +Siopold! + +Consumed. + +Come. Well sung. All clapped. She ought to. Come. To me, to him, to +her, you too, me, us. + +—Bravo! Clapclap. Good man, Simon. Clappyclapclap. Encore! Clapclipclap +clap. Sound as a bell. Bravo, Simon! Clapclopclap. Encore, enclap, +said, cried, clapped all, Ben Dollard, Lydia Douce, George Lidwell, +Pat, Mina Kennedy, two gentlemen with two tankards, Cowley, first gent +with tank and bronze Miss Douce and gold Miss Mina. + +Blazes Boylan’s smart tan shoes creaked on the barfloor, said before. +Jingle by monuments of sir John Gray, Horatio onehandled Nelson, +reverend father Theobald Mathew, jaunted, as said before just now. +Atrot, in heat, heatseated. _Cloche. Sonnez la. Cloche. Sonnez la._ +Slower the mare went up the hill by the Rotunda, Rutland square. Too +slow for Boylan, blazes Boylan, impatience Boylan, joggled the mare. + +An afterclang of Cowley’s chords closed, died on the air made richer. + +And Richie Goulding drank his Power and Leopold Bloom his cider drank, +Lidwell his Guinness, second gentleman said they would partake of two +more tankards if she did not mind. Miss Kennedy smirked, disserving, +coral lips, at first, at second. She did not mind. + +—Seven days in jail, Ben Dollard said, on bread and water. Then you’d +sing, Simon, like a garden thrush. + +Lionel Simon, singer, laughed. Father Bob Cowley played. Mina Kennedy +served. Second gentleman paid. Tom Kernan strutted in. Lydia, admired, +admired. But Bloom sang dumb. + +Admiring. + +Richie, admiring, descanted on that man’s glorious voice. He remembered +one night long ago. Never forget that night. Si sang _’Twas rank and +fame_: in Ned Lambert’s ’twas. Good God he never heard in all his life +a note like that he never did _then false one we had better part_ so +clear so God he never heard _since love lives not_ a clinking voice +lives not ask Lambert he can tell you too. + +Goulding, a flush struggling in his pale, told Mr Bloom, face of the +night, Si in Ned Lambert’s, Dedalus house, sang _’Twas rank and fame._ + +He, Mr Bloom, listened while he, Richie Goulding, told him, Mr Bloom, +of the night he, Richie, heard him, Si Dedalus, sing _’Twas rank and +fame_ in his, Ned Lambert’s, house. + +Brothers-in-law: relations. We never speak as we pass by. Rift in the +lute I think. Treats him with scorn. See. He admires him all the more. +The night Si sang. The human voice, two tiny silky chords, wonderful, +more than all others. + +That voice was a lamentation. Calmer now. It’s in the silence after you +feel you hear. Vibrations. Now silent air. + +Bloom ungyved his crisscrossed hands and with slack fingers plucked the +slender catgut thong. He drew and plucked. It buzz, it twanged. While +Goulding talked of Barraclough’s voice production, while Tom Kernan, +harking back in a retrospective sort of arrangement talked to listening +Father Cowley, who played a voluntary, who nodded as he played. While +big Ben Dollard talked with Simon Dedalus, lighting, who nodded as he +smoked, who smoked. + +Thou lost one. All songs on that theme. Yet more Bloom stretched his +string. Cruel it seems. Let people get fond of each other: lure them +on. Then tear asunder. Death. Explos. Knock on the head. +Outtohelloutofthat. Human life. Dignam. Ugh, that rat’s tail wriggling! +Five bob I gave. _Corpus paradisum._ Corncrake croaker: belly like a +poisoned pup. Gone. They sing. Forgotten. I too. And one day she with. +Leave her: get tired. Suffer then. Snivel. Big spanishy eyes goggling +at nothing. Her wavyavyeavyheavyeavyevyevyhair un comb:’d. + +Yet too much happy bores. He stretched more, more. Are you not happy in +your? Twang. It snapped. + +Jingle into Dorset street. + +Miss Douce withdrew her satiny arm, reproachful, pleased. + +—Don’t make half so free, said she, till we are better acquainted. + +George Lidwell told her really and truly: but she did not believe. + +First gentleman told Mina that was so. She asked him was that so. And +second tankard told her so. That that was so. + +Miss Douce, miss Lydia, did not believe: miss Kennedy, Mina, did not +believe: George Lidwell, no: miss Dou did not: the first, the first: +gent with the tank: believe, no, no: did not, miss Kenn: Lidlydiawell: +the tank. + +Better write it here. Quills in the postoffice chewed and twisted. + +Bald Pat at a sign drew nigh. A pen and ink. He went. A pad. He went. A +pad to blot. He heard, deaf Pat. + +—Yes, Mr Bloom said, teasing the curling catgut line. It certainly is. +Few lines will do. My present. All that Italian florid music is. Who is +this wrote? Know the name you know better. Take out sheet notepaper, +envelope: unconcerned. It’s so characteristic. + +—Grandest number in the whole opera, Goulding said. + +—It is, Bloom said. + +Numbers it is. All music when you come to think. Two multiplied by two +divided by half is twice one. Vibrations: chords those are. One plus +two plus six is seven. Do anything you like with figures juggling. +Always find out this equal to that. Symmetry under a cemetery wall. He +doesn’t see my mourning. Callous: all for his own gut. Musemathematics. +And you think you’re listening to the etherial. But suppose you said it +like: Martha, seven times nine minus x is thirtyfive thousand. Fall +quite flat. It’s on account of the sounds it is. + +Instance he’s playing now. Improvising. Might be what you like, till +you hear the words. Want to listen sharp. Hard. Begin all right: then +hear chords a bit off: feel lost a bit. In and out of sacks, over +barrels, through wirefences, obstacle race. Time makes the tune. +Question of mood you’re in. Still always nice to hear. Except scales up +and down, girls learning. Two together nextdoor neighbours. Ought to +invent dummy pianos for that. _Blumenlied_ I bought for her. The name. +Playing it slow, a girl, night I came home, the girl. Door of the +stables near Cecilia street. Milly no taste. Queer because we both, I +mean. + +Bald deaf Pat brought quite flat pad ink. Pat set with ink pen quite +flat pad. Pat took plate dish knife fork. Pat went. + +It was the only language Mr Dedalus said to Ben. He heard them as a boy +in Ringabella, Crosshaven, Ringabella, singing their barcaroles. +Queenstown harbour full of Italian ships. Walking, you know, Ben, in +the moonlight with those earthquake hats. Blending their voices. God, +such music, Ben. Heard as a boy. Cross Ringabella haven mooncarole. + +Sour pipe removed he held a shield of hand beside his lips that cooed a +moonlight nightcall, clear from anear, a call from afar, replying. + +Down the edge of his _Freeman_ baton ranged Bloom’s, your other eye, +scanning for where did I see that. Callan, Coleman, Dignam Patrick. +Heigho! Heigho! Fawcett. Aha! Just I was looking... + +Hope he’s not looking, cute as a rat. He held unfurled his _Freeman._ +Can’t see now. Remember write Greek ees. Bloom dipped, Bloo mur: dear +sir. Dear Henry wrote: dear Mady. Got your lett and flow. Hell did I +put? Some pock or oth. It is utterl imposs. Underline _imposs._ To +write today. + +Bore this. Bored Bloom tambourined gently with I am just reflecting +fingers on flat pad Pat brought. + +On. Know what I mean. No, change that ee. Accep my poor litt pres +enclos. Ask her no answ. Hold on. Five Dig. Two about here. Penny the +gulls. Elijah is com. Seven Davy Byrne’s. Is eight about. Say half a +crown. My poor little pres: p. o. two and six. Write me a long. Do you +despise? Jingle, have you the? So excited. Why do you call me naught? +You naughty too? O, Mairy lost the string of her. Bye for today. Yes, +yes, will tell you. Want to. To keep it up. Call me that other. Other +world she wrote. My patience are exhaust. To keep it up. You must +believe. Believe. The tank. It. Is. True. + +Folly am I writing? Husbands don’t. That’s marriage does, their wives. +Because I’m away from. Suppose. But how? She must. Keep young. If she +found out. Card in my high grade ha. No, not tell all. Useless pain. If +they don’t see. Woman. Sauce for the gander. + +A hackney car, number three hundred and twentyfour, driver Barton James +of number one Harmony avenue, Donnybrook, on which sat a fare, a young +gentleman, stylishly dressed in an indigoblue serge suit made by George +Robert Mesias, tailor and cutter, of number five Eden quay, and wearing +a straw hat very dressy, bought of John Plasto of number one Great +Brunswick street, hatter. Eh? This is the jingle that joggled and +jingled. By Dlugacz’ porkshop bright tubes of Agendath trotted a +gallantbuttocked mare. + +—Answering an ad? keen Richie’s eyes asked Bloom. + +—Yes, Mr Bloom said. Town traveller. Nothing doing, I expect. + +Bloom mur: best references. But Henry wrote: it will excite me. You +know how. In haste. Henry. Greek ee. Better add postscript. What is he +playing now? Improvising. Intermezzo. P. S. The rum tum tum. How will +you pun? You punish me? Crooked skirt swinging, whack by. Tell me I +want to. Know. O. Course if I didn’t I wouldn’t ask. La la la ree. +Trails off there sad in minor. Why minor sad? Sign H. They like sad +tail at end. P. P. S. La la la ree. I feel so sad today. La ree. So +lonely. Dee. + +He blotted quick on pad of Pat. Envel. Address. Just copy out of paper. +Murmured: Messrs Callan, Coleman and Co, limited. Henry wrote: + +Miss Martha Clifford + c/o P. O. + Dolphin’s Barn Lane + Dublin. + +Blot over the other so he can’t read. There. Right. Idea prize titbit. +Something detective read off blottingpad. Payment at the rate of guinea +per col. Matcham often thinks the laughing witch. Poor Mrs Purefoy. U. +P: up. + +Too poetical that about the sad. Music did that. Music hath charms. +Shakespeare said. Quotations every day in the year. To be or not to be. +Wisdom while you wait. + +In Gerard’s rosery of Fetter lane he walks, greyedauburn. One life is +all. One body. Do. But do. + +Done anyhow. Postal order, stamp. Postoffice lower down. Walk now. +Enough. Barney Kiernan’s I promised to meet them. Dislike that job. +House of mourning. Walk. Pat! Doesn’t hear. Deaf beetle he is. + +Car near there now. Talk. Talk. Pat! Doesn’t. Settling those napkins. +Lot of ground he must cover in the day. Paint face behind on him then +he’d be two. Wish they’d sing more. Keep my mind off. + +Bald Pat who is bothered mitred the napkins. Pat is a waiter hard of +his hearing. Pat is a waiter who waits while you wait. Hee hee hee hee. +He waits while you wait. Hee hee. A waiter is he. Hee hee hee hee. He +waits while you wait. While you wait if you wait he will wait while you +wait. Hee hee hee hee. Hoh. Wait while you wait. + +Douce now. Douce Lydia. Bronze and rose. + +She had a gorgeous, simply gorgeous, time. And look at the lovely shell +she brought. + +To the end of the bar to him she bore lightly the spiked and winding +seahorn that he, George Lidwell, solicitor, might hear. + +—Listen! she bade him. + +Under Tom Kernan’s ginhot words the accompanist wove music slow. +Authentic fact. How Walter Bapty lost his voice. Well, sir, the husband +took him by the throat. _Scoundrel,_ said he, _You’ll sing no more +lovesongs._ He did, faith, sir Tom. Bob Cowley wove. Tenors get wom. +Cowley lay back. + +Ah, now he heard, she holding it to his ear. Hear! He heard. Wonderful. +She held it to her own. And through the sifted light pale gold in +contrast glided. To hear. + +Tap. + +Bloom through the bardoor saw a shell held at their ears. He heard more +faintly that that they heard, each for herself alone, then each for +other, hearing the plash of waves, loudly, a silent roar. + +Bronze by a weary gold, anear, afar, they listened. + +Her ear too is a shell, the peeping lobe there. Been to the seaside. +Lovely seaside girls. Skin tanned raw. Should have put on coldcream +first make it brown. Buttered toast. O and that lotion mustn’t forget. +Fever near her mouth. Your head it simply. Hair braided over: shell +with seaweed. Why do they hide their ears with seaweed hair? And Turks +the mouth, why? Her eyes over the sheet. Yashmak. Find the way in. A +cave. No admittance except on business. + +The sea they think they hear. Singing. A roar. The blood it is. Souse +in the ear sometimes. Well, it’s a sea. Corpuscle islands. + +Wonderful really. So distinct. Again. George Lidwell held its murmur, +hearing: then laid it by, gently. + +—What are the wild waves saying? he asked her, smiled. + +Charming, seasmiling and unanswering Lydia on Lidwell smiled. + +Tap. + +By Larry O’Rourke’s, by Larry, bold Larry O’, Boylan swayed and Boylan +turned. + +From the forsaken shell miss Mina glided to her tankards waiting. No, +she was not so lonely archly miss Douce’s head let Mr Lidwell know. +Walks in the moonlight by the sea. No, not alone. With whom? She nobly +answered: with a gentleman friend. + +Bob Cowley’s twinkling fingers in the treble played again. The landlord +has the prior. A little time. Long John. Big Ben. Lightly he played a +light bright tinkling measure for tripping ladies, arch and smiling, +and for their gallants, gentlemen friends. One: one, one, one, one, +one: two, one, three, four. + +Sea, wind, leaves, thunder, waters, cows lowing, the cattlemarket, +cocks, hens don’t crow, snakes hissss. There’s music everywhere. +Ruttledge’s door: ee creaking. No, that’s noise. Minuet of _Don +Giovanni_ he’s playing now. Court dresses of all descriptions in castle +chambers dancing. Misery. Peasants outside. Green starving faces eating +dockleaves. Nice that is. Look: look, look, look, look, look: you look +at us. + +That’s joyful I can feel. Never have written it. Why? My joy is other +joy. But both are joys. Yes, joy it must be. Mere fact of music shows +you are. Often thought she was in the dumps till she began to lilt. +Then know. + +M’Coy valise. My wife and your wife. Squealing cat. Like tearing silk. +Tongue when she talks like the clapper of a bellows. They can’t manage +men’s intervals. Gap in their voices too. Fill me. I’m warm, dark, +open. Molly in _quis est homo_: Mercadante. My ear against the wall to +hear. Want a woman who can deliver the goods. + +Jog jig jogged stopped. Dandy tan shoe of dandy Boylan socks skyblue +clocks came light to earth. + +O, look we are so! Chamber music. Could make a kind of pun on that. It +is a kind of music I often thought when she. Acoustics that is. +Tinkling. Empty vessels make most noise. Because the acoustics, the +resonance changes according as the weight of the water is equal to the +law of falling water. Like those rhapsodies of Liszt’s, Hungarian, +gipsyeyed. Pearls. Drops. Rain. Diddleiddle addleaddle ooddleooddle. +Hissss. Now. Maybe now. Before. + +One rapped on a door, one tapped with a knock, did he knock Paul de +Kock with a loud proud knocker with a cock carracarracarra cock. +Cockcock. + +Tap. + +—_Qui sdegno,_ Ben, said Father Cowley. + +—No, Ben, Tom Kernan interfered. _The Croppy Boy._ Our native Doric. + +—Ay do, Ben, Mr Dedalus said. Good men and true. + +—Do, do, they begged in one. + +I’ll go. Here, Pat, return. Come. He came, he came, he did not stay. To +me. How much? + +—What key? Six sharps? + +—F sharp major, Ben Dollard said. + +Bob Cowley’s outstretched talons griped the black deepsounding chords. + +Must go prince Bloom told Richie prince. No, Richie said. Yes, must. +Got money somewhere. He’s on for a razzle backache spree. Much? He +seehears lipspeech. One and nine. Penny for yourself. Here. Give him +twopence tip. Deaf, bothered. But perhaps he has wife and family +waiting, waiting Patty come home. Hee hee hee hee. Deaf wait while they +wait. + +But wait. But hear. Chords dark. Lugugugubrious. Low. In a cave of the +dark middle earth. Embedded ore. Lumpmusic. + +The voice of dark age, of unlove, earth’s fatigue made grave approach +and painful, come from afar, from hoary mountains, called on good men +and true. The priest he sought. With him would he speak a word. + +Tap. + +Ben Dollard’s voice. Base barreltone. Doing his level best to say it. +Croak of vast manless moonless womoonless marsh. Other comedown. Big +ships’ chandler’s business he did once. Remember: rosiny ropes, ships’ +lanterns. Failed to the tune of ten thousand pounds. Now in the Iveagh +home. Cubicle number so and so. Number one Bass did that for him. + +The priest’s at home. A false priest’s servant bade him welcome. Step +in. The holy father. With bows a traitor servant. Curlycues of chords. + +Ruin them. Wreck their lives. Then build them cubicles to end their +days in. Hushaby. Lullaby. Die, dog. Little dog, die. + +The voice of warning, solemn warning, told them the youth had entered a +lonely hall, told them how solemn fell his footsteps there, told them +the gloomy chamber, the vested priest sitting to shrive. + +Decent soul. Bit addled now. Thinks he’ll win in _Answers_, poets’ +picture puzzle. We hand you crisp five pound note. Bird sitting +hatching in a nest. Lay of the last minstrel he thought it was. See +blank tee what domestic animal? Tee dash ar most courageous mariner. +Good voice he has still. No eunuch yet with all his belongings. + +Listen. Bloom listened. Richie Goulding listened. And by the door deaf +Pat, bald Pat, tipped Pat, listened. + +The chords harped slower. + +The voice of penance and of grief came slow, embellished, tremulous. +Ben’s contrite beard confessed. _in nomine Domini,_ in God’s name he +knelt. He beat his hand upon his breast, confessing: _mea culpa._ + +Latin again. That holds them like birdlime. Priest with the communion +corpus for those women. Chap in the mortuary, coffin or coffey, +_corpusnomine._ Wonder where that rat is by now. Scrape. + +Tap. + +They listened. Tankards and miss Kennedy. George Lidwell, eyelid well +expressive, fullbusted satin. Kernan. Si. + +The sighing voice of sorrow sang. His sins. Since Easter he had cursed +three times. You bitch’s bast. And once at masstime he had gone to +play. Once by the churchyard he had passed and for his mother’s rest he +had not prayed. A boy. A croppy boy. + +Bronze, listening, by the beerpull gazed far away. Soulfully. Doesn’t +half know I’m. Molly great dab at seeing anyone looking. + +Bronze gazed far sideways. Mirror there. Is that best side of her face? +They always know. Knock at the door. Last tip to titivate. + +Cockcarracarra. + +What do they think when they hear music? Way to catch rattlesnakes. +Night Michael Gunn gave us the box. Tuning up. Shah of Persia liked +that best. Remind him of home sweet home. Wiped his nose in curtain +too. Custom his country perhaps. That’s music too. Not as bad as it +sounds. Tootling. Brasses braying asses through uptrunks. Doublebasses +helpless, gashes in their sides. Woodwinds mooing cows. Semigrand open +crocodile music hath jaws. Woodwind like Goodwin’s name. + +She looked fine. Her crocus dress she wore lowcut, belongings on show. +Clove her breath was always in theatre when she bent to ask a question. +Told her what Spinoza says in that book of poor papa’s. Hypnotised, +listening. Eyes like that. She bent. Chap in dresscircle staring down +into her with his operaglass for all he was worth. Beauty of music you +must hear twice. Nature woman half a look. God made the country man the +tune. Met him pike hoses. Philosophy. O rocks! + +All gone. All fallen. At the siege of Ross his father, at Gorey all his +brothers fell. To Wexford, we are the boys of Wexford, he would. Last +of his name and race. + +I too. Last of my race. Milly young student. Well, my fault perhaps. No +son. Rudy. Too late now. Or if not? If not? If still? + +He bore no hate. + +Hate. Love. Those are names. Rudy. Soon I am old. + +Big Ben his voice unfolded. Great voice Richie Goulding said, a flush +struggling in his pale, to Bloom soon old. But when was young? + +Ireland comes now. My country above the king. She listens. Who fears to +speak of nineteen four? Time to be shoving. Looked enough. + +—_Bless me, father,_ Dollard the croppy cried. _Bless me and let me +go._ + +Tap. + +Bloom looked, unblessed to go. Got up to kill: on eighteen bob a week. +Fellows shell out the dibs. Want to keep your weathereye open. Those +girls, those lovely. By the sad sea waves. Chorusgirl’s romance. +Letters read out for breach of promise. From Chickabiddy’s owny +Mumpsypum. Laughter in court. Henry. I never signed it. The lovely name +you. + +Low sank the music, air and words. Then hastened. The false priest +rustling soldier from his cassock. A yeoman captain. They know it all +by heart. The thrill they itch for. Yeoman cap. + +Tap. Tap. + +Thrilled she listened, bending in sympathy to hear. + +Blank face. Virgin should say: or fingered only. Write something on it: +page. If not what becomes of them? Decline, despair. Keeps them young. +Even admire themselves. See. Play on her. Lip blow. Body of white +woman, a flute alive. Blow gentle. Loud. Three holes, all women. +Goddess I didn’t see. They want it. Not too much polite. That’s why he +gets them. Gold in your pocket, brass in your face. Say something. Make +her hear. With look to look. Songs without words. Molly, that +hurdygurdy boy. She knew he meant the monkey was sick. Or because so +like the Spanish. Understand animals too that way. Solomon did. Gift of +nature. + +Ventriloquise. My lips closed. Think in my stom. What? + +Will? You? I. Want. You. To. + +With hoarse rude fury the yeoman cursed, swelling in apoplectic bitch’s +bastard. A good thought, boy, to come. One hour’s your time to live, +your last. + +Tap. Tap. + +Thrill now. Pity they feel. To wipe away a tear for martyrs that want +to, dying to, die. For all things dying, for all things born. Poor Mrs +Purefoy. Hope she’s over. Because their wombs. + +A liquid of womb of woman eyeball gazed under a fence of lashes, +calmly, hearing. See real beauty of the eye when she not speaks. On +yonder river. At each slow satiny heaving bosom’s wave (her heaving +embon) red rose rose slowly sank red rose. Heartbeats: her breath: +breath that is life. And all the tiny tiny fernfoils trembled of +maidenhair. + +But look. The bright stars fade. O rose! Castile. The morn. Ha. +Lidwell. For him then not for. Infatuated. I like that? See her from +here though. Popped corks, splashes of beerfroth, stacks of empties. + +On the smooth jutting beerpull laid Lydia hand, lightly, plumply, leave +it to my hands. All lost in pity for croppy. Fro, to: to, fro: over the +polished knob (she knows his eyes, my eyes, her eyes) her thumb and +finger passed in pity: passed, reposed and, gently touching, then slid +so smoothly, slowly down, a cool firm white enamel baton protruding +through their sliding ring. + +With a cock with a carra. + +Tap. Tap. Tap. + +I hold this house. Amen. He gnashed in fury. Traitors swing. + +The chords consented. Very sad thing. But had to be. + +Get out before the end. Thanks, that was heavenly. Where’s my hat. Pass +by her. Can leave that _Freeman_. Letter I have. Suppose she were the? +No. Walk, walk, walk. Like Cashel Boylo Connoro Coylo Tisdall Maurice +Tisntdall Farrell. Waaaaaaalk. + +Well, I must be. Are you off? Yrfmstbyes. Blmstup. O’er ryehigh blue. +Ow. Bloom stood up. Soap feeling rather sticky behind. Must have +sweated: music. That lotion, remember. Well, so long. High grade. Card +inside. Yes. + +By deaf Pat in the doorway straining ear Bloom passed. + +At Geneva barrack that young man died. At Passage was his body laid. +Dolor! O, he dolores! The voice of the mournful chanter called to +dolorous prayer. + +By rose, by satiny bosom, by the fondling hand, by slops, by empties, +by popped corks, greeting in going, past eyes and maidenhair, bronze +and faint gold in deepseashadow, went Bloom, soft Bloom, I feel so +lonely Bloom. + +Tap. Tap. Tap. + +Pray for him, prayed the bass of Dollard. You who hear in peace. +Breathe a prayer, drop a tear, good men, good people. He was the croppy +boy. + +Scaring eavesdropping boots croppy bootsboy Bloom in the Ormond hallway +heard the growls and roars of bravo, fat backslapping, their boots all +treading, boots not the boots the boy. General chorus off for a swill +to wash it down. Glad I avoided. + +—Come on, Ben, Simon Dedalus cried. By God, you’re as good as ever you +were. + +—Better, said Tomgin Kernan. Most trenchant rendition of that ballad, +upon my soul and honour it is. + +—Lablache, said Father Cowley. + +Ben Dollard bulkily cachuchad towards the bar, mightily praisefed and +all big roseate, on heavyfooted feet, his gouty fingers nakkering +castagnettes in the air. + +Big Benaben Dollard. Big Benben. Big Benben. + +Rrr. + +And deepmoved all, Simon trumping compassion from foghorn nose, all +laughing they brought him forth, Ben Dollard, in right good cheer. + +—You’re looking rubicund, George Lidwell said. + +Miss Douce composed her rose to wait. + +—Ben machree, said Mr Dedalus, clapping Ben’s fat back shoulderblade. +Fit as a fiddle only he has a lot of adipose tissue concealed about his +person. + +Rrrrrrrsss. + +—Fat of death, Simon, Ben Dollard growled. + +Richie rift in the lute alone sat: Goulding, Collis, Ward. Uncertainly +he waited. Unpaid Pat too. + +Tap. Tap. Tap. Tap. + +Miss Mina Kennedy brought near her lips to ear of tankard one. + +—Mr Dollard, they murmured low. + +—Dollard, murmured tankard. + +Tank one believed: miss Kenn when she: that doll he was: she doll: the +tank. + +He murmured that he knew the name. The name was familiar to him, that +is to say. That was to say he had heard the name of. Dollard, was it? +Dollard, yes. + +Yes, her lips said more loudly, Mr Dollard. He sang that song lovely, +murmured Mina. Mr Dollard. And _The last rose of summer_ was a lovely +song. Mina loved that song. Tankard loved the song that Mina. + +’Tis the last rose of summer dollard left bloom felt wind wound round +inside. + +Gassy thing that cider: binding too. Wait. Postoffice near Reuben J’s +one and eightpence too. Get shut of it. Dodge round by Greek street. +Wish I hadn’t promised to meet. Freer in air. Music. Gets on your +nerves. Beerpull. Her hand that rocks the cradle rules the. Ben Howth. +That rules the world. + +Far. Far. Far. Far. + +Tap. Tap. Tap. Tap. + +Up the quay went Lionelleopold, naughty Henry with letter for Mady, +with sweets of sin with frillies for Raoul with met him pike hoses went +Poldy on. + +Tap blind walked tapping by the tap the curbstone tapping, tap by tap. + +Cowley, he stuns himself with it: kind of drunkenness. Better give way +only half way the way of a man with a maid. Instance enthusiasts. All +ears. Not lose a demisemiquaver. Eyes shut. Head nodding in time. +Dotty. You daren’t budge. Thinking strictly prohibited. Always talking +shop. Fiddlefaddle about notes. + +All a kind of attempt to talk. Unpleasant when it stops because you +never know exac. Organ in Gardiner street. Old Glynn fifty quid a year. +Queer up there in the cockloft, alone, with stops and locks and keys. +Seated all day at the organ. Maunder on for hours, talking to himself +or the other fellow blowing the bellows. Growl angry, then shriek +cursing (want to have wadding or something in his no don’t she cried), +then all of a soft sudden wee little wee little pipy wind. + +Pwee! A wee little wind piped eeee. In Bloom’s little wee. + +—Was he? Mr Dedalus said, returning with fetched pipe. I was with him +this morning at poor little Paddy Dignam’s... + +—Ay, the Lord have mercy on him. + +—By the bye there’s a tuningfork in there on the... + +Tap. Tap. Tap. Tap. + +—The wife has a fine voice. Or had. What? Lidwell asked. + +—O, that must be the tuner, Lydia said to Simonlionel first I saw, +forgot it when he was here. + +Blind he was she told George Lidwell second I saw. And played so +exquisitely, treat to hear. Exquisite contrast: bronzelid, minagold. + +—Shout! Ben Dollard shouted, pouring. Sing out! + +—’lldo! cried Father Cowley. + +Rrrrrr. + +I feel I want... + +Tap. Tap. Tap. Tap. Tap + +—Very, Mr Dedalus said, staring hard at a headless sardine. + +Under the sandwichbell lay on a bier of bread one last, one lonely, +last sardine of summer. Bloom alone. + +—Very, he stared. The lower register, for choice. + +Tap. Tap. Tap. Tap. Tap. Tap. Tap. Tap. + +Bloom went by Barry’s. Wish I could. Wait. That wonderworker if I had. +Twentyfour solicitors in that one house. Counted them. Litigation. Love +one another. Piles of parchment. Messrs Pick and Pocket have power of +attorney. Goulding, Collis, Ward. + +But for example the chap that wallops the big drum. His vocation: +Mickey Rooney’s band. Wonder how it first struck him. Sitting at home +after pig’s cheek and cabbage nursing it in the armchair. Rehearsing +his band part. Pom. Pompedy. Jolly for the wife. Asses’ skins. Welt +them through life, then wallop after death. Pom. Wallop. Seems to be +what you call yashmak or I mean kismet. Fate. + +Tap. Tap. A stripling, blind, with a tapping cane came taptaptapping by +Daly’s window where a mermaid hair all streaming (but he couldn’t see) +blew whiffs of a mermaid (blind couldn’t), mermaid, coolest whiff of +all. + +Instruments. A blade of grass, shell of her hands, then blow. Even comb +and tissuepaper you can knock a tune out of. Molly in her shift in +Lombard street west, hair down. I suppose each kind of trade made its +own, don’t you see? Hunter with a horn. Haw. Have you the? _Cloche. +Sonnez la._ Shepherd his pipe. Pwee little wee. Policeman a whistle. +Locks and keys! Sweep! Four o’clock’s all’s well! Sleep! All is lost +now. Drum? Pompedy. Wait. I know. Towncrier, bumbailiff. Long John. +Waken the dead. Pom. Dignam. Poor little _nominedomine._ Pom. It is +music. I mean of course it’s all pom pom pom very much what they call +_da capo._ Still you can hear. As we march, we march along, march +along. Pom. + +I must really. Fff. Now if I did that at a banquet. Just a question of +custom shah of Persia. Breathe a prayer, drop a tear. All the same he +must have been a bit of a natural not to see it was a yeoman cap. +Muffled up. Wonder who was that chap at the grave in the brown macin. +O, the whore of the lane! + +A frowsy whore with black straw sailor hat askew came glazily in the +day along the quay towards Mr Bloom. When first he saw that form +endearing? Yes, it is. I feel so lonely. Wet night in the lane. Horn. +Who had the? Heehaw shesaw. Off her beat here. What is she? Hope she. +Psst! Any chance of your wash. Knew Molly. Had me decked. Stout lady +does be with you in the brown costume. Put you off your stroke, that. +Appointment we made knowing we’d never, well hardly ever. Too dear too +near to home sweet home. Sees me, does she? Looks a fright in the day. +Face like dip. Damn her. O, well, she has to live like the rest. Look +in here. + +In Lionel Marks’s antique saleshop window haughty Henry Lionel Leopold +dear Henry Flower earnestly Mr Leopold Bloom envisaged battered +candlesticks melodeon oozing maggoty blowbags. Bargain: six bob. Might +learn to play. Cheap. Let her pass. Course everything is dear if you +don’t want it. That’s what good salesman is. Make you buy what he wants +to sell. Chap sold me the Swedish razor he shaved me with. Wanted to +charge me for the edge he gave it. She’s passing now. Six bob. + +Must be the cider or perhaps the burgund. + +Near bronze from anear near gold from afar they chinked their clinking +glasses all, brighteyed and gallant, before bronze Lydia’s tempting +last rose of summer, rose of Castile. First Lid, De, Cow, Ker, Doll, a +fifth: Lidwell, Si Dedalus, Bob Cowley, Kernan and big Ben Dollard. + +Tap. A youth entered a lonely Ormond hall. + +Bloom viewed a gallant pictured hero in Lionel Marks’s window. Robert +Emmet’s last words. Seven last words. Of Meyerbeer that is. + +—True men like you men. + +—Ay, ay, Ben. + +—Will lift your glass with us. + +They lifted. + +Tschink. Tschunk. + +Tip. An unseeing stripling stood in the door. He saw not bronze. He saw +not gold. Nor Ben nor Bob nor Tom nor Si nor George nor tanks nor +Richie nor Pat. Hee hee hee hee. He did not see. + +Seabloom, greaseabloom viewed last words. Softly. _When my country +takes her place among._ + +Prrprr. + +Must be the bur. + +Fff! Oo. Rrpr. + +_Nations of the earth._ No-one behind. She’s passed. _Then and not till +then._ Tram kran kran kran. Good oppor. Coming. Krandlkrankran. I’m +sure it’s the burgund. Yes. One, two. _Let my epitaph be._ Kraaaaaa. +_Written. I have._ + +Pprrpffrrppffff. + +_Done._ + + + + +[ 12 ] + + +I was just passing the time of day with old Troy of the D. M. P. at the +corner of Arbour hill there and be damned but a bloody sweep came along +and he near drove his gear into my eye. I turned around to let him have +the weight of my tongue when who should I see dodging along Stony +Batter only Joe Hynes. + +—Lo, Joe, says I. How are you blowing? Did you see that bloody +chimneysweep near shove my eye out with his brush? + +—Soot’s luck, says Joe. Who’s the old ballocks you were talking to? + +—Old Troy, says I, was in the force. I’m on two minds not to give that +fellow in charge for obstructing the thoroughfare with his brooms and +ladders. + +—What are you doing round those parts? says Joe. + +—Devil a much, says I. There’s a bloody big foxy thief beyond by the +garrison church at the corner of Chicken lane—old Troy was just giving +me a wrinkle about him—lifted any God’s quantity of tea and sugar to +pay three bob a week said he had a farm in the county Down off a +hop-of-my-thumb by the name of Moses Herzog over there near Heytesbury +street. + +—Circumcised? says Joe. + +—Ay, says I. A bit off the top. An old plumber named Geraghty. I’m +hanging on to his taw now for the past fortnight and I can’t get a +penny out of him. + +—That the lay you’re on now? says Joe. + +—Ay, says I. How are the mighty fallen! Collector of bad and doubtful +debts. But that’s the most notorious bloody robber you’d meet in a +day’s walk and the face on him all pockmarks would hold a shower of +rain. _Tell him,_ says he, _I dare him,_ says he, _and I doubledare him +to send you round here again or if he does,_ says he, _I’ll have him +summonsed up before the court, so I will, for trading without a +licence._ And he after stuffing himself till he’s fit to burst. Jesus, +I had to laugh at the little jewy getting his shirt out. _He drink me +my teas. He eat me my sugars. Because he no pay me my moneys?_ + +For nonperishable goods bought of Moses Herzog, of 13 Saint Kevin’s +parade in the city of Dublin, Wood quay ward, merchant, hereinafter +called the vendor, and sold and delivered to Michael E. Geraghty, +esquire, of 29 Arbour hill in the city of Dublin, Arran quay ward, +gentleman, hereinafter called the purchaser, videlicet, five pounds +avoirdupois of first choice tea at three shillings and no pence per +pound avoirdupois and three stone avoirdupois of sugar, crushed +crystal, at threepence per pound avoirdupois, the said purchaser debtor +to the said vendor of one pound five shillings and sixpence sterling +for value received which amount shall be paid by said purchaser to said +vendor in weekly instalments every seven calendar days of three +shillings and no pence sterling: and the said nonperishable goods shall +not be pawned or pledged or sold or otherwise alienated by the said +purchaser but shall be and remain and be held to be the sole and +exclusive property of the said vendor to be disposed of at his good +will and pleasure until the said amount shall have been duly paid by +the said purchaser to the said vendor in the manner herein set forth as +this day hereby agreed between the said vendor, his heirs, successors, +trustees and assigns of the one part and the said purchaser, his heirs, +successors, trustees and assigns of the other part. + +—Are you a strict t.t.? says Joe. + +—Not taking anything between drinks, says I. + +—What about paying our respects to our friend? says Joe. + +—Who? says I. Sure, he’s out in John of God’s off his head, poor man. + +—Drinking his own stuff? says Joe. + +—Ay, says I. Whisky and water on the brain. + +—Come around to Barney Kiernan’s, says Joe. I want to see the citizen. + +—Barney mavourneen’s be it, says I. Anything strange or wonderful, Joe? + +—Not a word, says Joe. I was up at that meeting in the City Arms. + +—What was that, Joe? says I. + +—Cattle traders, says Joe, about the foot and mouth disease. I want to +give the citizen the hard word about it. + +So we went around by the Linenhall barracks and the back of the +courthouse talking of one thing or another. Decent fellow Joe when he +has it but sure like that he never has it. Jesus, I couldn’t get over +that bloody foxy Geraghty, the daylight robber. For trading without a +licence, says he. + +In Inisfail the fair there lies a land, the land of holy Michan. There +rises a watchtower beheld of men afar. There sleep the mighty dead as +in life they slept, warriors and princes of high renown. A pleasant +land it is in sooth of murmuring waters, fishful streams where sport +the gurnard, the plaice, the roach, the halibut, the gibbed haddock, +the grilse, the dab, the brill, the flounder, the pollock, the mixed +coarse fish generally and other denizens of the aqueous kingdom too +numerous to be enumerated. In the mild breezes of the west and of the +east the lofty trees wave in different directions their firstclass +foliage, the wafty sycamore, the Lebanonian cedar, the exalted +planetree, the eugenic eucalyptus and other ornaments of the arboreal +world with which that region is thoroughly well supplied. Lovely +maidens sit in close proximity to the roots of the lovely trees singing +the most lovely songs while they play with all kinds of lovely objects +as for example golden ingots, silvery fishes, crans of herrings, drafts +of eels, codlings, creels of fingerlings, purple seagems and playful +insects. And heroes voyage from afar to woo them, from Eblana to +Slievemargy, the peerless princes of unfettered Munster and of Connacht +the just and of smooth sleek Leinster and of Cruachan’s land and of +Armagh the splendid and of the noble district of Boyle, princes, the +sons of kings. + +And there rises a shining palace whose crystal glittering roof is seen +by mariners who traverse the extensive sea in barks built expressly for +that purpose, and thither come all herds and fatlings and firstfruits +of that land for O’Connell Fitzsimon takes toll of them, a chieftain +descended from chieftains. Thither the extremely large wains bring +foison of the fields, flaskets of cauliflowers, floats of spinach, +pineapple chunks, Rangoon beans, strikes of tomatoes, drums of figs, +drills of Swedes, spherical potatoes and tallies of iridescent kale, +York and Savoy, and trays of onions, pearls of the earth, and punnets +of mushrooms and custard marrows and fat vetches and bere and rape and +red green yellow brown russet sweet big bitter ripe pomellated apples +and chips of strawberries and sieves of gooseberries, pulpy and +pelurious, and strawberries fit for princes and raspberries from their +canes. + +I dare him, says he, and I doubledare him. Come out here, Geraghty, you +notorious bloody hill and dale robber! + +And by that way wend the herds innumerable of bellwethers and flushed +ewes and shearling rams and lambs and stubble geese and medium steers +and roaring mares and polled calves and longwools and storesheep and +Cuffe’s prime springers and culls and sowpigs and baconhogs and the +various different varieties of highly distinguished swine and Angus +heifers and polly bullocks of immaculate pedigree together with prime +premiated milchcows and beeves: and there is ever heard a trampling, +cackling, roaring, lowing, bleating, bellowing, rumbling, grunting, +champing, chewing, of sheep and pigs and heavyhooved kine from +pasturelands of Lusk and Rush and Carrickmines and from the streamy +vales of Thomond, from the M’Gillicuddy’s reeks the inaccessible and +lordly Shannon the unfathomable, and from the gentle declivities of the +place of the race of Kiar, their udders distended with superabundance +of milk and butts of butter and rennets of cheese and farmer’s firkins +and targets of lamb and crannocks of corn and oblong eggs in great +hundreds, various in size, the agate with this dun. + +So we turned into Barney Kiernan’s and there, sure enough, was the +citizen up in the corner having a great confab with himself and that +bloody mangy mongrel, Garryowen, and he waiting for what the sky would +drop in the way of drink. + +—There he is, says I, in his gloryhole, with his cruiskeen lawn and his +load of papers, working for the cause. + +The bloody mongrel let a grouse out of him would give you the creeps. +Be a corporal work of mercy if someone would take the life of that +bloody dog. I’m told for a fact he ate a good part of the breeches off +a constabulary man in Santry that came round one time with a blue paper +about a licence. + +—Stand and deliver, says he. + +—That’s all right, citizen, says Joe. Friends here. + +—Pass, friends, says he. + +Then he rubs his hand in his eye and says he: + +—What’s your opinion of the times? + +Doing the rapparee and Rory of the hill. But, begob, Joe was equal to +the occasion. + +—I think the markets are on a rise, says he, sliding his hand down his +fork. + +So begob the citizen claps his paw on his knee and he says: + +—Foreign wars is the cause of it. + +And says Joe, sticking his thumb in his pocket: + +—It’s the Russians wish to tyrannise. + +—Arrah, give over your bloody codding, Joe, says I. I’ve a thirst on me +I wouldn’t sell for half a crown. + +—Give it a name, citizen, says Joe. + +—Wine of the country, says he. + +—What’s yours? says Joe. + +—Ditto MacAnaspey, says I. + +—Three pints, Terry, says Joe. And how’s the old heart, citizen? says +he. + +—Never better, _a chara_, says he. What Garry? Are we going to win? Eh? + +And with that he took the bloody old towser by the scruff of the neck +and, by Jesus, he near throttled him. + +The figure seated on a large boulder at the foot of a round tower was +that of a broadshouldered deepchested stronglimbed frankeyed redhaired +freelyfreckled shaggybearded widemouthed largenosed longheaded +deepvoiced barekneed brawnyhanded hairylegged ruddyfaced sinewyarmed +hero. From shoulder to shoulder he measured several ells and his +rocklike mountainous knees were covered, as was likewise the rest of +his body wherever visible, with a strong growth of tawny prickly hair +in hue and toughness similar to the mountain gorse (_Ulex Europeus_). +The widewinged nostrils, from which bristles of the same tawny hue +projected, were of such capaciousness that within their cavernous +obscurity the fieldlark might easily have lodged her nest. The eyes in +which a tear and a smile strove ever for the mastery were of the +dimensions of a goodsized cauliflower. A powerful current of warm +breath issued at regular intervals from the profound cavity of his +mouth while in rhythmic resonance the loud strong hale reverberations +of his formidable heart thundered rumblingly causing the ground, the +summit of the lofty tower and the still loftier walls of the cave to +vibrate and tremble. + +He wore a long unsleeved garment of recently flayed oxhide reaching to +the knees in a loose kilt and this was bound about his middle by a +girdle of plaited straw and rushes. Beneath this he wore trews of +deerskin, roughly stitched with gut. His nether extremities were +encased in high Balbriggan buskins dyed in lichen purple, the feet +being shod with brogues of salted cowhide laced with the windpipe of +the same beast. From his girdle hung a row of seastones which jangled +at every movement of his portentous frame and on these were graven with +rude yet striking art the tribal images of many Irish heroes and +heroines of antiquity, Cuchulin, Conn of hundred battles, Niall of nine +hostages, Brian of Kincora, the ardri Malachi, Art MacMurragh, Shane +O’Neill, Father John Murphy, Owen Roe, Patrick Sarsfield, Red Hugh +O’Donnell, Red Jim MacDermott, Soggarth Eoghan O’Growney, Michael +Dwyer, Francy Higgins, Henry Joy M’Cracken, Goliath, Horace Wheatley, +Thomas Conneff, Peg Woffington, the Village Blacksmith, Captain +Moonlight, Captain Boycott, Dante Alighieri, Christopher Columbus, S. +Fursa, S. Brendan, Marshal MacMahon, Charlemagne, Theobald Wolfe Tone, +the Mother of the Maccabees, the Last of the Mohicans, the Rose of +Castile, the Man for Galway, The Man that Broke the Bank at Monte +Carlo, The Man in the Gap, The Woman Who Didn’t, Benjamin Franklin, +Napoleon Bonaparte, John L. Sullivan, Cleopatra, Savourneen Deelish, +Julius Caesar, Paracelsus, sir Thomas Lipton, William Tell, +Michelangelo Hayes, Muhammad, the Bride of Lammermoor, Peter the +Hermit, Peter the Packer, Dark Rosaleen, Patrick W. Shakespeare, Brian +Confucius, Murtagh Gutenberg, Patricio Velasquez, Captain Nemo, Tristan +and Isolde, the first Prince of Wales, Thomas Cook and Son, the Bold +Soldier Boy, Arrah na Pogue, Dick Turpin, Ludwig Beethoven, the Colleen +Bawn, Waddler Healy, Angus the Culdee, Dolly Mount, Sidney Parade, Ben +Howth, Valentine Greatrakes, Adam and Eve, Arthur Wellesley, Boss +Croker, Herodotus, Jack the Giantkiller, Gautama Buddha, Lady Godiva, +The Lily of Killarney, Balor of the Evil Eye, the Queen of Sheba, Acky +Nagle, Joe Nagle, Alessandro Volta, Jeremiah O’Donovan Rossa, Don +Philip O’Sullivan Beare. A couched spear of acuminated granite rested +by him while at his feet reposed a savage animal of the canine tribe +whose stertorous gasps announced that he was sunk in uneasy slumber, a +supposition confirmed by hoarse growls and spasmodic movements which +his master repressed from time to time by tranquilising blows of a +mighty cudgel rudely fashioned out of paleolithic stone. + +So anyhow Terry brought the three pints Joe was standing and begob the +sight nearly left my eyes when I saw him land out a quid. O, as true as +I’m telling you. A goodlooking sovereign. + +—And there’s more where that came from, says he. + +—Were you robbing the poorbox, Joe? says I. + +—Sweat of my brow, says Joe. ’Twas the prudent member gave me the +wheeze. + +—I saw him before I met you, says I, sloping around by Pill lane and +Greek street with his cod’s eye counting up all the guts of the fish. + +Who comes through Michan’s land, bedight in sable armour? O’Bloom, the +son of Rory: it is he. Impervious to fear is Rory’s son: he of the +prudent soul. + +—For the old woman of Prince’s street, says the citizen, the subsidised +organ. The pledgebound party on the floor of the house. And look at +this blasted rag, says he. Look at this, says he. _The Irish +Independent,_ if you please, founded by Parnell to be the workingman’s +friend. Listen to the births and deaths in the _Irish all for Ireland +Independent,_ and I’ll thank you and the marriages. + +And he starts reading them out: + +—Gordon, Barnfield crescent, Exeter; Redmayne of Iffley, Saint Anne’s +on Sea: the wife of William T Redmayne of a son. How’s that, eh? Wright +and Flint, Vincent and Gillett to Rotha Marion daughter of Rosa and the +late George Alfred Gillett, 179 Clapham road, Stockwell, Playwood and +Ridsdale at Saint Jude’s, Kensington by the very reverend Dr Forrest, +dean of Worcester. Eh? Deaths. Bristow, at Whitehall lane, London: +Carr, Stoke Newington, of gastritis and heart disease: Cockburn, at the +Moat house, Chepstow... + +—I know that fellow, says Joe, from bitter experience. + +—Cockburn. Dimsey, wife of David Dimsey, late of the admiralty: Miller, +Tottenham, aged eightyfive: Welsh, June 12, at 35 Canning street, +Liverpool, Isabella Helen. How’s that for a national press, eh, my +brown son! How’s that for Martin Murphy, the Bantry jobber? + +—Ah, well, says Joe, handing round the boose. Thanks be to God they had +the start of us. Drink that, citizen. + +—I will, says he, honourable person. + +—Health, Joe, says I. And all down the form. + +Ah! Ow! Don’t be talking! I was blue mouldy for the want of that pint. +Declare to God I could hear it hit the pit of my stomach with a click. + +And lo, as they quaffed their cup of joy, a godlike messenger came +swiftly in, radiant as the eye of heaven, a comely youth and behind him +there passed an elder of noble gait and countenance, bearing the sacred +scrolls of law and with him his lady wife a dame of peerless lineage, +fairest of her race. + +Little Alf Bergan popped in round the door and hid behind Barney’s +snug, squeezed up with the laughing. And who was sitting up there in +the corner that I hadn’t seen snoring drunk blind to the world only Bob +Doran. I didn’t know what was up and Alf kept making signs out of the +door. And begob what was it only that bloody old pantaloon Denis Breen +in his bathslippers with two bloody big books tucked under his oxter +and the wife hotfoot after him, unfortunate wretched woman, trotting +like a poodle. I thought Alf would split. + +—Look at him, says he. Breen. He’s traipsing all round Dublin with a +postcard someone sent him with U. p: up on it to take a li... + +And he doubled up. + +—Take a what? says I. + +—Libel action, says he, for ten thousand pounds. + +—O hell! says I. + +The bloody mongrel began to growl that’d put the fear of God in you +seeing something was up but the citizen gave him a kick in the ribs. + +_—Bi i dho husht,_ says he. + +—Who? says Joe. + +—Breen, says Alf. He was in John Henry Menton’s and then he went round +to Collis and Ward’s and then Tom Rochford met him and sent him round +to the subsheriff’s for a lark. O God, I’ve a pain laughing. U. p: up. +The long fellow gave him an eye as good as a process and now the bloody +old lunatic is gone round to Green street to look for a G man. + +—When is long John going to hang that fellow in Mountjoy? says Joe. + +—Bergan, says Bob Doran, waking up. Is that Alf Bergan? + +—Yes, says Alf. Hanging? Wait till I show you. Here, Terry, give us a +pony. That bloody old fool! Ten thousand pounds. You should have seen +long John’s eye. U. p .... + +And he started laughing. + +—Who are you laughing at? says Bob Doran. Is that Bergan? + +—Hurry up, Terry boy, says Alf. + +Terence O’Ryan heard him and straightway brought him a crystal cup full +of the foamy ebon ale which the noble twin brothers Bungiveagh and +Bungardilaun brew ever in their divine alevats, cunning as the sons of +deathless Leda. For they garner the succulent berries of the hop and +mass and sift and bruise and brew them and they mix therewith sour +juices and bring the must to the sacred fire and cease not night or day +from their toil, those cunning brothers, lords of the vat. + +Then did you, chivalrous Terence, hand forth, as to the manner born, +that nectarous beverage and you offered the crystal cup to him that +thirsted, the soul of chivalry, in beauty akin to the immortals. + +But he, the young chief of the O’Bergan’s, could ill brook to be +outdone in generous deeds but gave therefor with gracious gesture a +testoon of costliest bronze. Thereon embossed in excellent smithwork +was seen the image of a queen of regal port, scion of the house of +Brunswick, Victoria her name, Her Most Excellent Majesty, by grace of +God of the United Kingdom of Great Britain and Ireland and of the +British dominions beyond the sea, queen, defender of the faith, Empress +of India, even she, who bore rule, a victress over many peoples, the +wellbeloved, for they knew and loved her from the rising of the sun to +the going down thereof, the pale, the dark, the ruddy and the ethiop. + +—What’s that bloody freemason doing, says the citizen, prowling up and +down outside? + +—What’s that? says Joe. + +—Here you are, says Alf, chucking out the rhino. Talking about hanging, +I’ll show you something you never saw. Hangmen’s letters. Look at here. + +So he took a bundle of wisps of letters and envelopes out of his +pocket. + +—Are you codding? says I. + +—Honest injun, says Alf. Read them. + +So Joe took up the letters. + +—Who are you laughing at? says Bob Doran. + +So I saw there was going to be a bit of a dust. Bob’s a queer chap when +the porter’s up in him so says I just to make talk: + +—How’s Willy Murray those times, Alf? + +—I don’t know, says Alf. I saw him just now in Capel street with Paddy +Dignam. Only I was running after that... + +—You what? says Joe, throwing down the letters. With who? + +—With Dignam, says Alf. + +—Is it Paddy? says Joe. + +—Yes, says Alf. Why? + +—Don’t you know he’s dead? says Joe. + +—Paddy Dignam dead! says Alf. + +—Ay, says Joe. + +—Sure I’m after seeing him not five minutes ago, says Alf, as plain as +a pikestaff. + +—Who’s dead? says Bob Doran. + +—You saw his ghost then, says Joe, God between us and harm. + +—What? says Alf. Good Christ, only five... What?... And Willy Murray +with him, the two of them there near whatdoyoucallhim’s... What? Dignam +dead? + +—What about Dignam? says Bob Doran. Who’s talking about...? + +—Dead! says Alf. He’s no more dead than you are. + +—Maybe so, says Joe. They took the liberty of burying him this morning +anyhow. + +—Paddy? says Alf. + +—Ay, says Joe. He paid the debt of nature, God be merciful to him. + +—Good Christ! says Alf. + +Begob he was what you might call flabbergasted. + +In the darkness spirit hands were felt to flutter and when prayer by +tantras had been directed to the proper quarter a faint but increasing +luminosity of ruby light became gradually visible, the apparition of +the etheric double being particularly lifelike owing to the discharge +of jivic rays from the crown of the head and face. Communication was +effected through the pituitary body and also by means of the +orangefiery and scarlet rays emanating from the sacral region and solar +plexus. Questioned by his earthname as to his whereabouts in the +heavenworld he stated that he was now on the path of prālāyā or return +but was still submitted to trial at the hands of certain bloodthirsty +entities on the lower astral levels. In reply to a question as to his +first sensations in the great divide beyond he stated that previously +he had seen as in a glass darkly but that those who had passed over had +summit possibilities of atmic development opened up to them. +Interrogated as to whether life there resembled our experience in the +flesh he stated that he had heard from more favoured beings now in the +spirit that their abodes were equipped with every modern home comfort +such as tālāfānā, ālāvātār, hātākāldā, wātāklāsāt and that the highest +adepts were steeped in waves of volupcy of the very purest nature. +Having requested a quart of buttermilk this was brought and evidently +afforded relief. Asked if he had any message for the living he exhorted +all who were still at the wrong side of Māyā to acknowledge the true +path for it was reported in devanic circles that Mars and Jupiter were +out for mischief on the eastern angle where the ram has power. It was +then queried whether there were any special desires on the part of the +defunct and the reply was: _We greet you, friends of earth, who are +still in the body. Mind C. K. doesn’t pile it on._ It was ascertained +that the reference was to Mr Cornelius Kelleher, manager of Messrs H. +J. O’Neill’s popular funeral establishment, a personal friend of the +defunct, who had been responsible for the carrying out of the interment +arrangements. Before departing he requested that it should be told to +his dear son Patsy that the other boot which he had been looking for +was at present under the commode in the return room and that the pair +should be sent to Cullen’s to be soled only as the heels were still +good. He stated that this had greatly perturbed his peace of mind in +the other region and earnestly requested that his desire should be made +known. + +Assurances were given that the matter would be attended to and it was +intimated that this had given satisfaction. + +He is gone from mortal haunts: O’Dignam, sun of our morning. Fleet was +his foot on the bracken: Patrick of the beamy brow. Wail, Banba, with +your wind: and wail, O ocean, with your whirlwind. + +—There he is again, says the citizen, staring out. + +—Who? says I. + +—Bloom, says he. He’s on point duty up and down there for the last ten +minutes. + +And, begob, I saw his physog do a peep in and then slidder off again. + +Little Alf was knocked bawways. Faith, he was. + +—Good Christ! says he. I could have sworn it was him. + +And says Bob Doran, with the hat on the back of his poll, lowest +blackguard in Dublin when he’s under the influence: + +—Who said Christ is good? + +—I beg your parsnips, says Alf. + +—Is that a good Christ, says Bob Doran, to take away poor little Willy +Dignam? + +—Ah, well, says Alf, trying to pass it off. He’s over all his troubles. + +But Bob Doran shouts out of him. + +—He’s a bloody ruffian, I say, to take away poor little Willy Dignam. + +Terry came down and tipped him the wink to keep quiet, that they didn’t +want that kind of talk in a respectable licensed premises. And Bob +Doran starts doing the weeps about Paddy Dignam, true as you’re there. + +—The finest man, says he, snivelling, the finest purest character. + +The tear is bloody near your eye. Talking through his bloody hat. +Fitter for him go home to the little sleepwalking bitch he married, +Mooney, the bumbailiff’s daughter, mother kept a kip in Hardwicke +street, that used to be stravaging about the landings Bantam Lyons told +me that was stopping there at two in the morning without a stitch on +her, exposing her person, open to all comers, fair field and no favour. + +—The noblest, the truest, says he. And he’s gone, poor little Willy, +poor little Paddy Dignam. + +And mournful and with a heavy heart he bewept the extinction of that +beam of heaven. + +Old Garryowen started growling again at Bloom that was skeezing round +the door. + +—Come in, come on, he won’t eat you, says the citizen. + +So Bloom slopes in with his cod’s eye on the dog and he asks Terry was +Martin Cunningham there. + +—O, Christ M’Keown, says Joe, reading one of the letters. Listen to +this, will you? + +And he starts reading out one. + +_7 Hunter Street, +Liverpool._ + + +_To the High Sheriff of Dublin, + Dublin._ + + +_Honoured sir i beg to offer my services in the abovementioned painful +case i hanged Joe Gann in Bootle jail on the 12 of Febuary 1900 and i +hanged..._ + +—Show us, Joe, says I. + +—_... private Arthur Chace for fowl murder of Jessie Tilsit in +Pentonville prison and i was assistant when..._ + +—Jesus, says I. + +—_... Billington executed the awful murderer Toad Smith..._ + +The citizen made a grab at the letter. + +—Hold hard, says Joe, _i have a special nack of putting the noose once +in he can’t get out hoping to be favoured i remain, honoured sir, my +terms is five ginnees._ + +_H. Rumbold, + Master Barber._ + + +—And a barbarous bloody barbarian he is too, says the citizen. + +—And the dirty scrawl of the wretch, says Joe. Here, says he, take them +to hell out of my sight, Alf. Hello, Bloom, says he, what will you +have? + +So they started arguing about the point, Bloom saying he wouldn’t and +he couldn’t and excuse him no offence and all to that and then he said +well he’d just take a cigar. Gob, he’s a prudent member and no mistake. + +—Give us one of your prime stinkers, Terry, says Joe. + +And Alf was telling us there was one chap sent in a mourning card with +a black border round it. + +—They’re all barbers, says he, from the black country that would hang +their own fathers for five quid down and travelling expenses. + +And he was telling us there’s two fellows waiting below to pull his +heels down when he gets the drop and choke him properly and then they +chop up the rope after and sell the bits for a few bob a skull. + +In the dark land they bide, the vengeful knights of the razor. Their +deadly coil they grasp: yea, and therein they lead to Erebus whatsoever +wight hath done a deed of blood for I will on nowise suffer it even so +saith the Lord. + +So they started talking about capital punishment and of course Bloom +comes out with the why and the wherefore and all the codology of the +business and the old dog smelling him all the time I’m told those +jewies does have a sort of a queer odour coming off them for dogs about +I don’t know what all deterrent effect and so forth and so on. + +—There’s one thing it hasn’t a deterrent effect on, says Alf. + +—What’s that? says Joe. + +—The poor bugger’s tool that’s being hanged, says Alf. + +—That so? says Joe. + +—God’s truth, says Alf. I heard that from the head warder that was in +Kilmainham when they hanged Joe Brady, the invincible. He told me when +they cut him down after the drop it was standing up in their faces like +a poker. + +—Ruling passion strong in death, says Joe, as someone said. + +—That can be explained by science, says Bloom. It’s only a natural +phenomenon, don’t you see, because on account of the... + +And then he starts with his jawbreakers about phenomenon and science +and this phenomenon and the other phenomenon. + +The distinguished scientist Herr Professor Luitpold Blumenduft tendered +medical evidence to the effect that the instantaneous fracture of the +cervical vertebrae and consequent scission of the spinal cord would, +according to the best approved tradition of medical science, be +calculated to inevitably produce in the human subject a violent +ganglionic stimulus of the nerve centres of the genital apparatus, +thereby causing the elastic pores of the _corpora cavernosa_ to rapidly +dilate in such a way as to instantaneously facilitate the flow of blood +to that part of the human anatomy known as the penis or male organ +resulting in the phenomenon which has been denominated by the faculty a +morbid upwards and outwards philoprogenitive erection _in articulo +mortis per diminutionem capitis._ + +So of course the citizen was only waiting for the wink of the word and +he starts gassing out of him about the invincibles and the old guard +and the men of sixtyseven and who fears to speak of ninetyeight and Joe +with him about all the fellows that were hanged, drawn and transported +for the cause by drumhead courtmartial and a new Ireland and new this, +that and the other. Talking about new Ireland he ought to go and get a +new dog so he ought. Mangy ravenous brute sniffing and sneezing all +round the place and scratching his scabs. And round he goes to Bob +Doran that was standing Alf a half one sucking up for what he could +get. So of course Bob Doran starts doing the bloody fool with him: + +—Give us the paw! Give the paw, doggy! Good old doggy! Give the paw +here! Give us the paw! + +Arrah, bloody end to the paw he’d paw and Alf trying to keep him from +tumbling off the bloody stool atop of the bloody old dog and he talking +all kinds of drivel about training by kindness and thoroughbred dog and +intelligent dog: give you the bloody pip. Then he starts scraping a few +bits of old biscuit out of the bottom of a Jacobs’ tin he told Terry to +bring. Gob, he golloped it down like old boots and his tongue hanging +out of him a yard long for more. Near ate the tin and all, hungry +bloody mongrel. + +And the citizen and Bloom having an argument about the point, the +brothers Sheares and Wolfe Tone beyond on Arbour Hill and Robert Emmet +and die for your country, the Tommy Moore touch about Sara Curran and +she’s far from the land. And Bloom, of course, with his knockmedown +cigar putting on swank with his lardy face. Phenomenon! The fat heap he +married is a nice old phenomenon with a back on her like a ballalley. +Time they were stopping up in the _City Arms_ pisser Burke told me +there was an old one there with a cracked loodheramaun of a nephew and +Bloom trying to get the soft side of her doing the mollycoddle playing +bézique to come in for a bit of the wampum in her will and not eating +meat of a Friday because the old one was always thumping her craw and +taking the lout out for a walk. And one time he led him the rounds of +Dublin and, by the holy farmer, he never cried crack till he brought +him home as drunk as a boiled owl and he said he did it to teach him +the evils of alcohol and by herrings, if the three women didn’t near +roast him, it’s a queer story, the old one, Bloom’s wife and Mrs O’Dowd +that kept the hotel. Jesus, I had to laugh at pisser Burke taking them +off chewing the fat. And Bloom with his _but don’t you see?_ and _but +on the other hand_. And sure, more be token, the lout I’m told was in +Power’s after, the blender’s, round in Cope street going home footless +in a cab five times in the week after drinking his way through all the +samples in the bloody establishment. Phenomenon! + +—The memory of the dead, says the citizen taking up his pintglass and +glaring at Bloom. + +—Ay, ay, says Joe. + +—You don’t grasp my point, says Bloom. What I mean is... + +—_Sinn Fein!_ says the citizen. _Sinn Fein amhain!_ The friends we love +are by our side and the foes we hate before us. + +The last farewell was affecting in the extreme. From the belfries far +and near the funereal deathbell tolled unceasingly while all around the +gloomy precincts rolled the ominous warning of a hundred muffled drums +punctuated by the hollow booming of pieces of ordnance. The deafening +claps of thunder and the dazzling flashes of lightning which lit up the +ghastly scene testified that the artillery of heaven had lent its +supernatural pomp to the already gruesome spectacle. A torrential rain +poured down from the floodgates of the angry heavens upon the bared +heads of the assembled multitude which numbered at the lowest +computation five hundred thousand persons. A posse of Dublin +Metropolitan police superintended by the Chief Commissioner in person +maintained order in the vast throng for whom the York street brass and +reed band whiled away the intervening time by admirably rendering on +their blackdraped instruments the matchless melody endeared to us from +the cradle by Speranza’s plaintive muse. Special quick excursion trains +and upholstered charabancs had been provided for the comfort of our +country cousins of whom there were large contingents. Considerable +amusement was caused by the favourite Dublin streetsingers L-n-h-n and +M-ll-g-n who sang _The Night before Larry was stretched_ in their usual +mirth-provoking fashion. Our two inimitable drolls did a roaring trade +with their broadsheets among lovers of the comedy element and nobody +who has a corner in his heart for real Irish fun without vulgarity will +grudge them their hardearned pennies. The children of the Male and +Female Foundling Hospital who thronged the windows overlooking the +scene were delighted with this unexpected addition to the day’s +entertainment and a word of praise is due to the Little Sisters of the +Poor for their excellent idea of affording the poor fatherless and +motherless children a genuinely instructive treat. The viceregal +houseparty which included many wellknown ladies was chaperoned by Their +Excellencies to the most favourable positions on the grandstand while +the picturesque foreign delegation known as the Friends of the Emerald +Isle was accommodated on a tribune directly opposite. The delegation, +present in full force, consisted of Commendatore Bacibaci Beninobenone +(the semiparalysed _doyen_ of the party who had to be assisted to his +seat by the aid of a powerful steam crane), Monsieur Pierrepaul +Petitépatant, the Grandjoker Vladinmire Pokethankertscheff, the +Archjoker Leopold Rudolph von Schwanzenbad-Hodenthaler, Countess Marha +Virága Kisászony Putrápesthi, Hiram Y. Bomboost, Count Athanatos +Karamelopulos, Ali Baba Backsheesh Rahat Lokum Effendi, Señor Hidalgo +Caballero Don Pecadillo y Palabras y Paternoster de la Malora de la +Malaria, Hokopoko Harakiri, Hi Hung Chang, Olaf Kobberkeddelsen, +Mynheer Trik van Trumps, Pan Poleaxe Paddyrisky, Goosepond Prhklstr +Kratchinabritchisitch, Borus Hupinkoff, Herr Hurhausdirektorpresident +Hans Chuechli-Steuerli, +Nationalgymnasiummuseumsanatoriumandsuspensoriumsordinaryprivatdocentge +neralhistoryspecialprofessordoctor Kriegfried Ueberallgemein. All the +delegates without exception expressed themselves in the strongest +possible heterogeneous terms concerning the nameless barbarity which +they had been called upon to witness. An animated altercation (in which +all took part) ensued among the F. O. T. E. I. as to whether the eighth +or the ninth of March was the correct date of the birth of Ireland’s +patron saint. In the course of the argument cannonballs, scimitars, +boomerangs, blunderbusses, stinkpots, meatchoppers, umbrellas, +catapults, knuckledusters, sandbags, lumps of pig iron were resorted to +and blows were freely exchanged. The baby policeman, Constable +MacFadden, summoned by special courier from Booterstown, quickly +restored order and with lightning promptitude proposed the seventeenth +of the month as a solution equally honourable for both contending +parties. The readywitted ninefooter’s suggestion at once appealed to +all and was unanimously accepted. Constable MacFadden was heartily +congratulated by all the F. O. T. E. I., several of whom were bleeding +profusely. Commendatore Beninobenone having been extricated from +underneath the presidential armchair, it was explained by his legal +adviser Avvocato Pagamimi that the various articles secreted in his +thirtytwo pockets had been abstracted by him during the affray from the +pockets of his junior colleagues in the hope of bringing them to their +senses. The objects (which included several hundred ladies’ and +gentlemen’s gold and silver watches) were promptly restored to their +rightful owners and general harmony reigned supreme. + +Quietly, unassumingly Rumbold stepped on to the scaffold in faultless +morning dress and wearing his favourite flower, the _Gladiolus +Cruentus_. He announced his presence by that gentle Rumboldian cough +which so many have tried (unsuccessfully) to imitate—short, painstaking +yet withal so characteristic of the man. The arrival of the +worldrenowned headsman was greeted by a roar of acclamation from the +huge concourse, the viceregal ladies waving their handkerchiefs in +their excitement while the even more excitable foreign delegates +cheered vociferously in a medley of cries, _hoch, banzai, eljen, zivio, +chinchin, polla kronia, hiphip, vive, Allah_, amid which the ringing +_evviva_ of the delegate of the land of song (a high double F recalling +those piercingly lovely notes with which the eunuch Catalani +beglamoured our greatgreatgrandmothers) was easily distinguishable. It +was exactly seventeen o’clock. The signal for prayer was then promptly +given by megaphone and in an instant all heads were bared, the +commendatore’s patriarchal sombrero, which has been in the possession +of his family since the revolution of Rienzi, being removed by his +medical adviser in attendance, Dr Pippi. The learned prelate who +administered the last comforts of holy religion to the hero martyr when +about to pay the death penalty knelt in a most christian spirit in a +pool of rainwater, his cassock above his hoary head, and offered up to +the throne of grace fervent prayers of supplication. Hard by the block +stood the grim figure of the executioner, his visage being concealed in +a tengallon pot with two circular perforated apertures through which +his eyes glowered furiously. As he awaited the fatal signal he tested +the edge of his horrible weapon by honing it upon his brawny forearm or +decapitated in rapid succession a flock of sheep which had been +provided by the admirers of his fell but necessary office. On a +handsome mahogany table near him were neatly arranged the quartering +knife, the various finely tempered disembowelling appliances (specially +supplied by the worldfamous firm of cutlers, Messrs John Round and +Sons, Sheffield), a terra cotta saucepan for the reception of the +duodenum, colon, blind intestine and appendix etc when successfully +extracted and two commodious milkjugs destined to receive the most +precious blood of the most precious victim. The housesteward of the +amalgamated cats’ and dogs’ home was in attendance to convey these +vessels when replenished to that beneficent institution. Quite an +excellent repast consisting of rashers and eggs, fried steak and +onions, done to a nicety, delicious hot breakfast rolls and +invigorating tea had been considerately provided by the authorities for +the consumption of the central figure of the tragedy who was in capital +spirits when prepared for death and evinced the keenest interest in the +proceedings from beginning to end but he, with an abnegation rare in +these our times, rose nobly to the occasion and expressed the dying +wish (immediately acceded to) that the meal should be divided in +aliquot parts among the members of the sick and indigent roomkeepers’ +association as a token of his regard and esteem. The _nec_ and _non +plus ultra_ of emotion were reached when the blushing bride elect burst +her way through the serried ranks of the bystanders and flung herself +upon the muscular bosom of him who was about to be launched into +eternity for her sake. The hero folded her willowy form in a loving +embrace murmuring fondly _Sheila, my own_. Encouraged by this use of +her christian name she kissed passionately all the various suitable +areas of his person which the decencies of prison garb permitted her +ardour to reach. She swore to him as they mingled the salt streams of +their tears that she would ever cherish his memory, that she would +never forget her hero boy who went to his death with a song on his lips +as if he were but going to a hurling match in Clonturk park. She +brought back to his recollection the happy days of blissful childhood +together on the banks of Anna Liffey when they had indulged in the +innocent pastimes of the young and, oblivious of the dreadful present, +they both laughed heartily, all the spectators, including the venerable +pastor, joining in the general merriment. That monster audience simply +rocked with delight. But anon they were overcome with grief and clasped +their hands for the last time. A fresh torrent of tears burst from +their lachrymal ducts and the vast concourse of people, touched to the +inmost core, broke into heartrending sobs, not the least affected being +the aged prebendary himself. Big strong men, officers of the peace and +genial giants of the royal Irish constabulary, were making frank use of +their handkerchiefs and it is safe to say that there was not a dry eye +in that record assemblage. A most romantic incident occurred when a +handsome young Oxford graduate, noted for his chivalry towards the fair +sex, stepped forward and, presenting his visiting card, bankbook and +genealogical tree, solicited the hand of the hapless young lady, +requesting her to name the day, and was accepted on the spot. Every +lady in the audience was presented with a tasteful souvenir of the +occasion in the shape of a skull and crossbones brooch, a timely and +generous act which evoked a fresh outburst of emotion: and when the +gallant young Oxonian (the bearer, by the way, of one of the most +timehonoured names in Albion’s history) placed on the finger of his +blushing _fiancée_ an expensive engagement ring with emeralds set in +the form of a fourleaved shamrock the excitement knew no bounds. Nay, +even the stern provostmarshal, lieutenantcolonel Tomkin-Maxwell +ffrenchmullan Tomlinson, who presided on the sad occasion, he who had +blown a considerable number of sepoys from the cannonmouth without +flinching, could not now restrain his natural emotion. With his mailed +gauntlet he brushed away a furtive tear and was overheard, by those +privileged burghers who happened to be in his immediate _entourage,_ to +murmur to himself in a faltering undertone: + +—God blimey if she aint a clinker, that there bleeding tart. Blimey it +makes me kind of bleeding cry, straight, it does, when I sees her cause +I thinks of my old mashtub what’s waiting for me down Limehouse way. + +So then the citizen begins talking about the Irish language and the +corporation meeting and all to that and the shoneens that can’t speak +their own language and Joe chipping in because he stuck someone for a +quid and Bloom putting in his old goo with his twopenny stump that he +cadged off of Joe and talking about the Gaelic league and the +antitreating league and drink, the curse of Ireland. Antitreating is +about the size of it. Gob, he’d let you pour all manner of drink down +his throat till the Lord would call him before you’d ever see the froth +of his pint. And one night I went in with a fellow into one of their +musical evenings, song and dance about she could get up on a truss of +hay she could my Maureen Lay and there was a fellow with a Ballyhooly +blue ribbon badge spiffing out of him in Irish and a lot of colleen +bawns going about with temperance beverages and selling medals and +oranges and lemonade and a few old dry buns, gob, flahoolagh +entertainment, don’t be talking. Ireland sober is Ireland free. And +then an old fellow starts blowing into his bagpipes and all the gougers +shuffling their feet to the tune the old cow died of. And one or two +sky pilots having an eye around that there was no goings on with the +females, hitting below the belt. + +So howandever, as I was saying, the old dog seeing the tin was empty +starts mousing around by Joe and me. I’d train him by kindness, so I +would, if he was my dog. Give him a rousing fine kick now and again +where it wouldn’t blind him. + +—Afraid he’ll bite you? says the citizen, jeering. + +—No, says I. But he might take my leg for a lamppost. + +So he calls the old dog over. + +—What’s on you, Garry? says he. + +Then he starts hauling and mauling and talking to him in Irish and the +old towser growling, letting on to answer, like a duet in the opera. +Such growling you never heard as they let off between them. Someone +that has nothing better to do ought to write a letter _pro bono +publico_ to the papers about the muzzling order for a dog the like of +that. Growling and grousing and his eye all bloodshot from the drouth +is in it and the hydrophobia dropping out of his jaws. + +All those who are interested in the spread of human culture among the +lower animals (and their name is legion) should make a point of not +missing the really marvellous exhibition of cynanthropy given by the +famous old Irish red setter wolfdog formerly known by the _sobriquet_ +of Garryowen and recently rechristened by his large circle of friends +and acquaintances Owen Garry. The exhibition, which is the result of +years of training by kindness and a carefully thoughtout dietary +system, comprises, among other achievements, the recitation of verse. +Our greatest living phonetic expert (wild horses shall not drag it from +us!) has left no stone unturned in his efforts to delucidate and +compare the verse recited and has found it bears a _striking_ +resemblance (the italics are ours) to the ranns of ancient Celtic +bards. We are not speaking so much of those delightful lovesongs with +which the writer who conceals his identity under the graceful pseudonym +of the Little Sweet Branch has familiarised the bookloving world but +rather (as a contributor D. O. C. points out in an interesting +communication published by an evening contemporary) of the harsher and +more personal note which is found in the satirical effusions of the +famous Raftery and of Donal MacConsidine to say nothing of a more +modern lyrist at present very much in the public eye. We subjoin a +specimen which has been rendered into English by an eminent scholar +whose name for the moment we are not at liberty to disclose though we +believe that our readers will find the topical allusion rather more +than an indication. The metrical system of the canine original, which +recalls the intricate alliterative and isosyllabic rules of the Welsh +englyn, is infinitely more complicated but we believe our readers will +agree that the spirit has been well caught. Perhaps it should be added +that the effect is greatly increased if Owen’s verse be spoken somewhat +slowly and indistinctly in a tone suggestive of suppressed rancour. + + The curse of my curses + Seven days every day + And seven dry Thursdays + On you, Barney Kiernan, + Has no sup of water + To cool my courage, + And my guts red roaring + After Lowry’s lights. + +So he told Terry to bring some water for the dog and, gob, you could +hear him lapping it up a mile off. And Joe asked him would he have +another. + +—I will, says he, _a chara_, to show there’s no ill feeling. + +Gob, he’s not as green as he’s cabbagelooking. Arsing around from one +pub to another, leaving it to your own honour, with old Giltrap’s dog +and getting fed up by the ratepayers and corporators. Entertainment for +man and beast. And says Joe: + +—Could you make a hole in another pint? + +—Could a swim duck? says I. + +—Same again, Terry, says Joe. Are you sure you won’t have anything in +the way of liquid refreshment? says he. + +—Thank you, no, says Bloom. As a matter of fact I just wanted to meet +Martin Cunningham, don’t you see, about this insurance of poor +Dignam’s. Martin asked me to go to the house. You see, he, Dignam, I +mean, didn’t serve any notice of the assignment on the company at the +time and nominally under the act the mortgagee can’t recover on the +policy. + +—Holy Wars, says Joe, laughing, that’s a good one if old Shylock is +landed. So the wife comes out top dog, what? + +—Well, that’s a point, says Bloom, for the wife’s admirers. + +—Whose admirers? says Joe. + +—The wife’s advisers, I mean, says Bloom. + +Then he starts all confused mucking it up about mortgagor under the act +like the lord chancellor giving it out on the bench and for the benefit +of the wife and that a trust is created but on the other hand that +Dignam owed Bridgeman the money and if now the wife or the widow +contested the mortgagee’s right till he near had the head of me addled +with his mortgagor under the act. He was bloody safe he wasn’t run in +himself under the act that time as a rogue and vagabond only he had a +friend in court. Selling bazaar tickets or what do you call it royal +Hungarian privileged lottery. True as you’re there. O, commend me to an +israelite! Royal and privileged Hungarian robbery. + +So Bob Doran comes lurching around asking Bloom to tell Mrs Dignam he +was sorry for her trouble and he was very sorry about the funeral and +to tell her that he said and everyone who knew him said that there was +never a truer, a finer than poor little Willy that’s dead to tell her. +Choking with bloody foolery. And shaking Bloom’s hand doing the tragic +to tell her that. Shake hands, brother. You’re a rogue and I’m another. + +—Let me, said he, so far presume upon our acquaintance which, however +slight it may appear if judged by the standard of mere time, is +founded, as I hope and believe, on a sentiment of mutual esteem as to +request of you this favour. But, should I have overstepped the limits +of reserve let the sincerity of my feelings be the excuse for my +boldness. + +—No, rejoined the other, I appreciate to the full the motives which +actuate your conduct and I shall discharge the office you entrust to me +consoled by the reflection that, though the errand be one of sorrow, +this proof of your confidence sweetens in some measure the bitterness +of the cup. + +—Then suffer me to take your hand, said he. The goodness of your heart, +I feel sure, will dictate to you better than my inadequate words the +expressions which are most suitable to convey an emotion whose +poignancy, were I to give vent to my feelings, would deprive me even of +speech. + +And off with him and out trying to walk straight. Boosed at five +o’clock. Night he was near being lagged only Paddy Leonard knew the +bobby, 14A. Blind to the world up in a shebeen in Bride street after +closing time, fornicating with two shawls and a bully on guard, +drinking porter out of teacups. And calling himself a Frenchy for the +shawls, Joseph Manuo, and talking against the Catholic religion, and he +serving mass in Adam and Eve’s when he was young with his eyes shut, +who wrote the new testament, and the old testament, and hugging and +smugging. And the two shawls killed with the laughing, picking his +pockets, the bloody fool and he spilling the porter all over the bed +and the two shawls screeching laughing at one another. _How is your +testament? Have you got an old testament?_ Only Paddy was passing +there, I tell you what. Then see him of a Sunday with his little +concubine of a wife, and she wagging her tail up the aisle of the +chapel with her patent boots on her, no less, and her violets, nice as +pie, doing the little lady. Jack Mooney’s sister. And the old +prostitute of a mother procuring rooms to street couples. Gob, Jack +made him toe the line. Told him if he didn’t patch up the pot, Jesus, +he’d kick the shite out of him. + +So Terry brought the three pints. + +—Here, says Joe, doing the honours. Here, citizen. + +—_Slan leat_, says he. + +—Fortune, Joe, says I. Good health, citizen. + +Gob, he had his mouth half way down the tumbler already. Want a small +fortune to keep him in drinks. + +—Who is the long fellow running for the mayoralty, Alf? says Joe. + +—Friend of yours, says Alf. + +—Nannan? says Joe. The mimber? + +—I won’t mention any names, says Alf. + +—I thought so, says Joe. I saw him up at that meeting now with William +Field, M. P., the cattle traders. + +—Hairy Iopas, says the citizen, that exploded volcano, the darling of +all countries and the idol of his own. + +So Joe starts telling the citizen about the foot and mouth disease and +the cattle traders and taking action in the matter and the citizen +sending them all to the rightabout and Bloom coming out with his +sheepdip for the scab and a hoose drench for coughing calves and the +guaranteed remedy for timber tongue. Because he was up one time in a +knacker’s yard. Walking about with his book and pencil here’s my head +and my heels are coming till Joe Cuffe gave him the order of the boot +for giving lip to a grazier. Mister Knowall. Teach your grandmother how +to milk ducks. Pisser Burke was telling me in the hotel the wife used +to be in rivers of tears some times with Mrs O’Dowd crying her eyes out +with her eight inches of fat all over her. Couldn’t loosen her farting +strings but old cod’s eye was waltzing around her showing her how to do +it. What’s your programme today? Ay. Humane methods. Because the poor +animals suffer and experts say and the best known remedy that doesn’t +cause pain to the animal and on the sore spot administer gently. Gob, +he’d have a soft hand under a hen. + +Ga Ga Gara. Klook Klook Klook. Black Liz is our hen. She lays eggs for +us. When she lays her egg she is so glad. Gara. Klook Klook Klook. Then +comes good uncle Leo. He puts his hand under black Liz and takes her +fresh egg. Ga ga ga ga Gara. Klook Klook Klook. + +—Anyhow, says Joe, Field and Nannetti are going over tonight to London +to ask about it on the floor of the house of commons. + +—Are you sure, says Bloom, the councillor is going? I wanted to see +him, as it happens. + +—Well, he’s going off by the mailboat, says Joe, tonight. + +—That’s too bad, says Bloom. I wanted particularly. Perhaps only Mr +Field is going. I couldn’t phone. No. You’re sure? + +—Nannan’s going too, says Joe. The league told him to ask a question +tomorrow about the commissioner of police forbidding Irish games in the +park. What do you think of that, citizen? _The Sluagh na h-Eireann_. + +Mr Cowe Conacre (Multifarnham. Nat.): Arising out of the question of my +honourable friend, the member for Shillelagh, may I ask the right +honourable gentleman whether the government has issued orders that +these animals shall be slaughtered though no medical evidence is +forthcoming as to their pathological condition? + +Mr Allfours (Tamoshant. Con.): Honourable members are already in +possession of the evidence produced before a committee of the whole +house. I feel I cannot usefully add anything to that. The answer to the +honourable member’s question is in the affirmative. + +Mr Orelli O’Reilly (Montenotte. Nat.): Have similar orders been issued +for the slaughter of human animals who dare to play Irish games in the +Phoenix park? + +Mr Allfours: The answer is in the negative. + +Mr Cowe Conacre: Has the right honourable gentleman’s famous +Mitchelstown telegram inspired the policy of gentlemen on the Treasury +bench? (O! O!) + +Mr Allfours: I must have notice of that question. + +Mr Staylewit (Buncombe. Ind.): Don’t hesitate to shoot. + +(Ironical opposition cheers.) + +The speaker: Order! Order! + +(The house rises. Cheers.) + +—There’s the man, says Joe, that made the Gaelic sports revival. There +he is sitting there. The man that got away James Stephens. The champion +of all Ireland at putting the sixteen pound shot. What was your best +throw, citizen? + +—_Na bacleis_, says the citizen, letting on to be modest. There was a +time I was as good as the next fellow anyhow. + +—Put it there, citizen, says Joe. You were and a bloody sight better. + +—Is that really a fact? says Alf. + +—Yes, says Bloom. That’s well known. Did you not know that? + +So off they started about Irish sports and shoneen games the like of +lawn tennis and about hurley and putting the stone and racy of the soil +and building up a nation once again and all to that. And of course +Bloom had to have his say too about if a fellow had a rower’s heart +violent exercise was bad. I declare to my antimacassar if you took up a +straw from the bloody floor and if you said to Bloom: _Look at, Bloom. +Do you see that straw? That’s a straw_. Declare to my aunt he’d talk +about it for an hour so he would and talk steady. + +A most interesting discussion took place in the ancient hall of _Brian +O’Ciarnain’s_ in _Sraid na Bretaine Bheag_, under the auspices of +_Sluagh na h-Eireann_, on the revival of ancient Gaelic sports and the +importance of physical culture, as understood in ancient Greece and +ancient Rome and ancient Ireland, for the development of the race. The +venerable president of the noble order was in the chair and the +attendance was of large dimensions. After an instructive discourse by +the chairman, a magnificent oration eloquently and forcibly expressed, +a most interesting and instructive discussion of the usual high +standard of excellence ensued as to the desirability of the +revivability of the ancient games and sports of our ancient Panceltic +forefathers. The wellknown and highly respected worker in the cause of +our old tongue, Mr Joseph M’Carthy Hynes, made an eloquent appeal for +the resuscitation of the ancient Gaelic sports and pastimes, practised +morning and evening by Finn MacCool, as calculated to revive the best +traditions of manly strength and prowess handed down to us from ancient +ages. L. Bloom, who met with a mixed reception of applause and hisses, +having espoused the negative the vocalist chairman brought the +discussion to a close, in response to repeated requests and hearty +plaudits from all parts of a bumper house, by a remarkably noteworthy +rendering of the immortal Thomas Osborne Davis’ evergreen verses +(happily too familiar to need recalling here) _A nation once again_ in +the execution of which the veteran patriot champion may be said without +fear of contradiction to have fairly excelled himself. The Irish +Caruso-Garibaldi was in superlative form and his stentorian notes were +heard to the greatest advantage in the timehonoured anthem sung as only +our citizen can sing it. His superb highclass vocalism, which by its +superquality greatly enhanced his already international reputation, was +vociferously applauded by the large audience among which were to be +noticed many prominent members of the clergy as well as representatives +of the press and the bar and the other learned professions. The +proceedings then terminated. + +Amongst the clergy present were the very rev. William Delany, S. J., L. +L. D.; the rt rev. Gerald Molloy, D. D.; the rev. P. J. Kavanagh, C. S. +Sp.; the rev. T. Waters, C. C.; the rev. John M. Ivers, P. P.; the rev. +P. J. Cleary, O. S. F.; the rev. L. J. Hickey, O. P.; the very rev. Fr. +Nicholas, O. S. F. C.; the very rev. B. Gorman, O. D. C.; the rev. T. +Maher, S. J.; the very rev. James Murphy, S. J.; the rev. John Lavery, +V. F.; the very rev. William Doherty, D. D.; the rev. Peter Fagan, O. +M.; the rev. T. Brangan, O. S. A.; the rev. J. Flavin, C. C.; the rev. +M. A. Hackett, C. C.; the rev. W. Hurley, C. C.; the rt rev. Mgr +M’Manus, V. G.; the rev. B. R. Slattery, O. M. I.; the very rev. M. D. +Scally, P. P.; the rev. F. T. Purcell, O. P.; the very rev. Timothy +canon Gorman, P. P.; the rev. J. Flanagan, C. C. The laity included P. +Fay, T. Quirke, etc., etc. + +—Talking about violent exercise, says Alf, were you at that +Keogh-Bennett match? + +—No, says Joe. + +—I heard So and So made a cool hundred quid over it, says Alf. + +—Who? Blazes? says Joe. + +And says Bloom: + +—What I meant about tennis, for example, is the agility and training +the eye. + +—Ay, Blazes, says Alf. He let out that Myler was on the beer to run up +the odds and he swatting all the time. + +—We know him, says the citizen. The traitor’s son. We know what put +English gold in his pocket. + +—True for you, says Joe. + +And Bloom cuts in again about lawn tennis and the circulation of the +blood, asking Alf: + +—Now, don’t you think, Bergan? + +—Myler dusted the floor with him, says Alf. Heenan and Sayers was only +a bloody fool to it. Handed him the father and mother of a beating. See +the little kipper not up to his navel and the big fellow swiping. God, +he gave him one last puck in the wind, Queensberry rules and all, made +him puke what he never ate. + +It was a historic and a hefty battle when Myler and Percy were +scheduled to don the gloves for the purse of fifty sovereigns. +Handicapped as he was by lack of poundage, Dublin’s pet lamb made up +for it by superlative skill in ringcraft. The final bout of fireworks +was a gruelling for both champions. The welterweight sergeantmajor had +tapped some lively claret in the previous mixup during which Keogh had +been receivergeneral of rights and lefts, the artilleryman putting in +some neat work on the pet’s nose, and Myler came on looking groggy. The +soldier got to business, leading off with a powerful left jab to which +the Irish gladiator retaliated by shooting out a stiff one flush to the +point of Bennett’s jaw. The redcoat ducked but the Dubliner lifted him +with a left hook, the body punch being a fine one. The men came to +handigrips. Myler quickly became busy and got his man under, the bout +ending with the bulkier man on the ropes, Myler punishing him. The +Englishman, whose right eye was nearly closed, took his corner where he +was liberally drenched with water and when the bell went came on gamey +and brimful of pluck, confident of knocking out the fistic Eblanite in +jigtime. It was a fight to a finish and the best man for it. The two +fought like tigers and excitement ran fever high. The referee twice +cautioned Pucking Percy for holding but the pet was tricky and his +footwork a treat to watch. After a brisk exchange of courtesies during +which a smart upper cut of the military man brought blood freely from +his opponent’s mouth the lamb suddenly waded in all over his man and +landed a terrific left to Battling Bennett’s stomach, flooring him +flat. It was a knockout clean and clever. Amid tense expectation the +Portobello bruiser was being counted out when Bennett’s second Ole +Pfotts Wettstein threw in the towel and the Santry boy was declared +victor to the frenzied cheers of the public who broke through the +ringropes and fairly mobbed him with delight. + +—He knows which side his bread is buttered, says Alf. I hear he’s +running a concert tour now up in the north. + +—He is, says Joe. Isn’t he? + +—Who? says Bloom. Ah, yes. That’s quite true. Yes, a kind of summer +tour, you see. Just a holiday. + +—Mrs B. is the bright particular star, isn’t she? says Joe. + +—My wife? says Bloom. She’s singing, yes. I think it will be a success +too. He’s an excellent man to organise. Excellent. + +Hoho begob says I to myself says I. That explains the milk in the +cocoanut and absence of hair on the animal’s chest. Blazes doing the +tootle on the flute. Concert tour. Dirty Dan the dodger’s son off +Island bridge that sold the same horses twice over to the government to +fight the Boers. Old Whatwhat. I called about the poor and water rate, +Mr Boylan. You what? The water rate, Mr Boylan. You whatwhat? That’s +the bucko that’ll organise her, take my tip. ’Twixt me and you +Caddareesh. + +Pride of Calpe’s rocky mount, the ravenhaired daughter of Tweedy. There +grew she to peerless beauty where loquat and almond scent the air. The +gardens of Alameda knew her step: the garths of olives knew and bowed. +The chaste spouse of Leopold is she: Marion of the bountiful bosoms. + +And lo, there entered one of the clan of the O’Molloy’s, a comely hero +of white face yet withal somewhat ruddy, his majesty’s counsel learned +in the law, and with him the prince and heir of the noble line of +Lambert. + +—Hello, Ned. + +—Hello, Alf. + +—Hello, Jack. + +—Hello, Joe. + +—God save you, says the citizen. + +—Save you kindly, says J. J. What’ll it be, Ned? + +—Half one, says Ned. + +So J. J. ordered the drinks. + +—Were you round at the court? says Joe. + +—Yes, says J. J. He’ll square that, Ned, says he. + +—Hope so, says Ned. + +Now what were those two at? J. J. getting him off the grand jury list +and the other give him a leg over the stile. With his name in Stubbs’s. +Playing cards, hobnobbing with flash toffs with a swank glass in their +eye, adrinking fizz and he half smothered in writs and garnishee +orders. Pawning his gold watch in Cummins of Francis street where +no-one would know him in the private office when I was there with +Pisser releasing his boots out of the pop. What’s your name, sir? +Dunne, says he. Ay, and done says I. Gob, he’ll come home by weeping +cross one of those days, I’m thinking. + +—Did you see that bloody lunatic Breen round there? says Alf. U. p: up. + +—Yes, says J. J. Looking for a private detective. + +—Ay, says Ned. And he wanted right go wrong to address the court only +Corny Kelleher got round him telling him to get the handwriting +examined first. + +—Ten thousand pounds, says Alf, laughing. God, I’d give anything to +hear him before a judge and jury. + +—Was it you did it, Alf? says Joe. The truth, the whole truth and +nothing but the truth, so help you Jimmy Johnson. + +—Me? says Alf. Don’t cast your nasturtiums on my character. + +—Whatever statement you make, says Joe, will be taken down in evidence +against you. + +—Of course an action would lie, says J. J. It implies that he is not +_compos mentis_. U. p: up. + +_—Compos_ your eye! says Alf, laughing. Do you know that he’s balmy? +Look at his head. Do you know that some mornings he has to get his hat +on with a shoehorn. + +—Yes, says J. J., but the truth of a libel is no defence to an +indictment for publishing it in the eyes of the law. + +—Ha ha, Alf, says Joe. + +—Still, says Bloom, on account of the poor woman, I mean his wife. + +—Pity about her, says the citizen. Or any other woman marries a half +and half. + +—How half and half? says Bloom. Do you mean he... + +—Half and half I mean, says the citizen. A fellow that’s neither fish +nor flesh. + +—Nor good red herring, says Joe. + +—That what’s I mean, says the citizen. A pishogue, if you know what +that is. + +Begob I saw there was trouble coming. And Bloom explaining he meant on +account of it being cruel for the wife having to go round after the old +stuttering fool. Cruelty to animals so it is to let that bloody +povertystricken Breen out on grass with his beard out tripping him, +bringing down the rain. And she with her nose cockahoop after she +married him because a cousin of his old fellow’s was pewopener to the +pope. Picture of him on the wall with his Smashall Sweeney’s +moustaches, the signior Brini from Summerhill, the eyetallyano, papal +Zouave to the Holy Father, has left the quay and gone to Moss street. +And who was he, tell us? A nobody, two pair back and passages, at seven +shillings a week, and he covered with all kinds of breastplates bidding +defiance to the world. + +—And moreover, says J. J., a postcard is publication. It was held to be +sufficient evidence of malice in the testcase Sadgrove v. Hole. In my +opinion an action might lie. + +Six and eightpence, please. Who wants your opinion? Let us drink our +pints in peace. Gob, we won’t be let even do that much itself. + +—Well, good health, Jack, says Ned. + +—Good health, Ned, says J. J. + +—-There he is again, says Joe. + +—Where? says Alf. + +And begob there he was passing the door with his books under his oxter +and the wife beside him and Corny Kelleher with his wall eye looking in +as they went past, talking to him like a father, trying to sell him a +secondhand coffin. + +—How did that Canada swindle case go off? says Joe. + +—Remanded, says J. J. + +One of the bottlenosed fraternity it was went by the name of James +Wought alias Saphiro alias Spark and Spiro, put an ad in the papers +saying he’d give a passage to Canada for twenty bob. What? Do you see +any green in the white of my eye? Course it was a bloody barney. What? +Swindled them all, skivvies and badhachs from the county Meath, ay, and +his own kidney too. J. J. was telling us there was an ancient Hebrew +Zaretsky or something weeping in the witnessbox with his hat on him, +swearing by the holy Moses he was stuck for two quid. + +—Who tried the case? says Joe. + +—Recorder, says Ned. + +—Poor old sir Frederick, says Alf, you can cod him up to the two eyes. + +—Heart as big as a lion, says Ned. Tell him a tale of woe about arrears +of rent and a sick wife and a squad of kids and, faith, he’ll dissolve +in tears on the bench. + +—Ay, says Alf. Reuben J was bloody lucky he didn’t clap him in the dock +the other day for suing poor little Gumley that’s minding stones, for +the corporation there near Butt bridge. + +And he starts taking off the old recorder letting on to cry: + +—A most scandalous thing! This poor hardworking man! How many children? +Ten, did you say? + +—Yes, your worship. And my wife has the typhoid. + +—And the wife with typhoid fever! Scandalous! Leave the court +immediately, sir. No, sir, I’ll make no order for payment. How dare +you, sir, come up before me and ask me to make an order! A poor +hardworking industrious man! I dismiss the case. + +And whereas on the sixteenth day of the month of the oxeyed goddess and +in the third week after the feastday of the Holy and Undivided Trinity, +the daughter of the skies, the virgin moon being then in her first +quarter, it came to pass that those learned judges repaired them to the +halls of law. There master Courtenay, sitting in his own chamber, gave +his rede and master Justice Andrews, sitting without a jury in the +probate court, weighed well and pondered the claim of the first +chargeant upon the property in the matter of the will propounded and +final testamentary disposition _in re_ the real and personal estate of +the late lamented Jacob Halliday, vintner, deceased, versus +Livingstone, an infant, of unsound mind, and another. And to the solemn +court of Green street there came sir Frederick the Falconer. And he sat +him there about the hour of five o’clock to administer the law of the +brehons at the commission for all that and those parts to be holden in +and for the county of the city of Dublin. And there sat with him the +high sinhedrim of the twelve tribes of Iar, for every tribe one man, of +the tribe of Patrick and of the tribe of Hugh and of the tribe of Owen +and of the tribe of Conn and of the tribe of Oscar and of the tribe of +Fergus and of the tribe of Finn and of the tribe of Dermot and of the +tribe of Cormac and of the tribe of Kevin and of the tribe of Caolte +and of the tribe of Ossian, there being in all twelve good men and +true. And he conjured them by Him who died on rood that they should +well and truly try and true deliverance make in the issue joined +between their sovereign lord the king and the prisoner at the bar and +true verdict give according to the evidence so help them God and kiss +the book. And they rose in their seats, those twelve of Iar, and they +swore by the name of Him Who is from everlasting that they would do His +rightwiseness. And straightway the minions of the law led forth from +their donjon keep one whom the sleuthhounds of justice had apprehended +in consequence of information received. And they shackled him hand and +foot and would take of him ne bail ne mainprise but preferred a charge +against him for he was a malefactor. + +—Those are nice things, says the citizen, coming over here to Ireland +filling the country with bugs. + +So Bloom lets on he heard nothing and he starts talking with Joe, +telling him he needn’t trouble about that little matter till the first +but if he would just say a word to Mr Crawford. And so Joe swore high +and holy by this and by that he’d do the devil and all. + +—Because, you see, says Bloom, for an advertisement you must have +repetition. That’s the whole secret. + +—Rely on me, says Joe. + +—Swindling the peasants, says the citizen, and the poor of Ireland. We +want no more strangers in our house. + +—O, I’m sure that will be all right, Hynes, says Bloom. It’s just that +Keyes, you see. + +—Consider that done, says Joe. + +—Very kind of you, says Bloom. + +—The strangers, says the citizen. Our own fault. We let them come in. +We brought them in. The adulteress and her paramour brought the Saxon +robbers here. + +—Decree _nisi,_ says J. J. + +And Bloom letting on to be awfully deeply interested in nothing, a +spider’s web in the corner behind the barrel, and the citizen scowling +after him and the old dog at his feet looking up to know who to bite +and when. + +—A dishonoured wife, says the citizen, that’s what’s the cause of all +our misfortunes. + +—And here she is, says Alf, that was giggling over the _Police Gazette_ +with Terry on the counter, in all her warpaint. + +—Give us a squint at her, says I. + +And what was it only one of the smutty yankee pictures Terry borrows +off of Corny Kelleher. Secrets for enlarging your private parts. +Misconduct of society belle. Norman W. Tupper, wealthy Chicago +contractor, finds pretty but faithless wife in lap of officer Taylor. +Belle in her bloomers misconducting herself, and her fancyman feeling +for her tickles and Norman W. Tupper bouncing in with his peashooter +just in time to be late after she doing the trick of the loop with +officer Taylor. + +—O jakers, Jenny, says Joe, how short your shirt is! + +—There’s hair, Joe, says I. Get a queer old tailend of corned beef off +of that one, what? + +So anyhow in came John Wyse Nolan and Lenehan with him with a face on +him as long as a late breakfast. + +—Well, says the citizen, what’s the latest from the scene of action? +What did those tinkers in the city hall at their caucus meeting decide +about the Irish language? + +O’Nolan, clad in shining armour, low bending made obeisance to the +puissant and high and mighty chief of all Erin and did him to wit of +that which had befallen, how that the grave elders of the most obedient +city, second of the realm, had met them in the tholsel, and there, +after due prayers to the gods who dwell in ether supernal, had taken +solemn counsel whereby they might, if so be it might be, bring once +more into honour among mortal men the winged speech of the seadivided +Gael. + +—It’s on the march, says the citizen. To hell with the bloody brutal +Sassenachs and their _patois._ + +So J. J. puts in a word, doing the toff about one story was good till +you heard another and blinking facts and the Nelson policy, putting +your blind eye to the telescope and drawing up a bill of attainder to +impeach a nation, and Bloom trying to back him up moderation and +botheration and their colonies and their civilisation. + +—Their syphilisation, you mean, says the citizen. To hell with them! +The curse of a goodfornothing God light sideways on the bloody +thicklugged sons of whores’ gets! No music and no art and no literature +worthy of the name. Any civilisation they have they stole from us. +Tonguetied sons of bastards’ ghosts. + +—The European family, says J. J.... + +—They’re not European, says the citizen. I was in Europe with Kevin +Egan of Paris. You wouldn’t see a trace of them or their language +anywhere in Europe except in a _cabinet d’aisance._ + +And says John Wyse: + +—Full many a flower is born to blush unseen. + +And says Lenehan that knows a bit of the lingo: + +—_Conspuez les Anglais! Perfide Albion!_ + +He said and then lifted he in his rude great brawny strengthy hands the +medher of dark strong foamy ale and, uttering his tribal slogan _Lamh +Dearg Abu_, he drank to the undoing of his foes, a race of mighty +valorous heroes, rulers of the waves, who sit on thrones of alabaster +silent as the deathless gods. + +—What’s up with you, says I to Lenehan. You look like a fellow that had +lost a bob and found a tanner. + +—Gold cup, says he. + +—Who won, Mr Lenehan? says Terry. + +_—Throwaway,_ says he, at twenty to one. A rank outsider. And the rest +nowhere. + +—And Bass’s mare? says Terry. + +—Still running, says he. We’re all in a cart. Boylan plunged two quid +on my tip _Sceptre_ for himself and a lady friend. + +—I had half a crown myself, says Terry, on _Zinfandel_ that Mr Flynn +gave me. Lord Howard de Walden’s. + +—Twenty to one, says Lenehan. Such is life in an outhouse. _Throwaway,_ +says he. Takes the biscuit, and talking about bunions. Frailty, thy +name is _Sceptre._ + +So he went over to the biscuit tin Bob Doran left to see if there was +anything he could lift on the nod, the old cur after him backing his +luck with his mangy snout up. Old Mother Hubbard went to the cupboard. + +—Not there, my child, says he. + +—Keep your pecker up, says Joe. She’d have won the money only for the +other dog. + +And J. J. and the citizen arguing about law and history with Bloom +sticking in an odd word. + +—Some people, says Bloom, can see the mote in others’ eyes but they +can’t see the beam in their own. + +—_Raimeis_, says the citizen. There’s no-one as blind as the fellow +that won’t see, if you know what that means. Where are our missing +twenty millions of Irish should be here today instead of four, our lost +tribes? And our potteries and textiles, the finest in the whole world! +And our wool that was sold in Rome in the time of Juvenal and our flax +and our damask from the looms of Antrim and our Limerick lace, our +tanneries and our white flint glass down there by Ballybough and our +Huguenot poplin that we have since Jacquard de Lyon and our woven silk +and our Foxford tweeds and ivory raised point from the Carmelite +convent in New Ross, nothing like it in the whole wide world. Where are +the Greek merchants that came through the pillars of Hercules, the +Gibraltar now grabbed by the foe of mankind, with gold and Tyrian +purple to sell in Wexford at the fair of Carmen? Read Tacitus and +Ptolemy, even Giraldus Cambrensis. Wine, peltries, Connemara marble, +silver from Tipperary, second to none, our farfamed horses even today, +the Irish hobbies, with king Philip of Spain offering to pay customs +duties for the right to fish in our waters. What do the yellowjohns of +Anglia owe us for our ruined trade and our ruined hearths? And the beds +of the Barrow and Shannon they won’t deepen with millions of acres of +marsh and bog to make us all die of consumption? + +—As treeless as Portugal we’ll be soon, says John Wyse, or Heligoland +with its one tree if something is not done to reafforest the land. +Larches, firs, all the trees of the conifer family are going fast. I +was reading a report of lord Castletown’s... + +—Save them, says the citizen, the giant ash of Galway and the chieftain +elm of Kildare with a fortyfoot bole and an acre of foliage. Save the +trees of Ireland for the future men of Ireland on the fair hills of +Eire, O. + +—Europe has its eyes on you, says Lenehan. + +The fashionable international world attended _en masse_ this afternoon +at the wedding of the chevalier Jean Wyse de Neaulan, grand high chief +ranger of the Irish National Foresters, with Miss Fir Conifer of Pine +Valley. Lady Sylvester Elmshade, Mrs Barbara Lovebirch, Mrs Poll Ash, +Mrs Holly Hazeleyes, Miss Daphne Bays, Miss Dorothy Canebrake, Mrs +Clyde Twelvetrees, Mrs Rowan Greene, Mrs Helen Vinegadding, Miss +Virginia Creeper, Miss Gladys Beech, Miss Olive Garth, Miss Blanche +Maple, Mrs Maud Mahogany, Miss Myra Myrtle, Miss Priscilla Elderflower, +Miss Bee Honeysuckle, Miss Grace Poplar, Miss O Mimosa San, Miss Rachel +Cedarfrond, the Misses Lilian and Viola Lilac, Miss Timidity Aspenall, +Mrs Kitty Dewey-Mosse, Miss May Hawthorne, Mrs Gloriana Palme, Mrs +Liana Forrest, Mrs Arabella Blackwood and Mrs Norma Holyoake of +Oakholme Regis graced the ceremony by their presence. The bride who was +given away by her father, the M’Conifer of the Glands, looked +exquisitely charming in a creation carried out in green mercerised +silk, moulded on an underslip of gloaming grey, sashed with a yoke of +broad emerald and finished with a triple flounce of darkerhued fringe, +the scheme being relieved by bretelles and hip insertions of acorn +bronze. The maids of honour, Miss Larch Conifer and Miss Spruce +Conifer, sisters of the bride, wore very becoming costumes in the same +tone, a dainty _motif_ of plume rose being worked into the pleats in a +pinstripe and repeated capriciously in the jadegreen toques in the form +of heron feathers of paletinted coral. Senhor Enrique Flor presided at +the organ with his wellknown ability and, in addition to the prescribed +numbers of the nuptial mass, played a new and striking arrangement of +_Woodman, spare that tree_ at the conclusion of the service. On leaving +the church of Saint Fiacre _in Horto_ after the papal blessing the +happy pair were subjected to a playful crossfire of hazelnuts, +beechmast, bayleaves, catkins of willow, ivytod, hollyberries, +mistletoe sprigs and quicken shoots. Mr and Mrs Wyse Conifer Neaulan +will spend a quiet honeymoon in the Black Forest. + +—And our eyes are on Europe, says the citizen. We had our trade with +Spain and the French and with the Flemings before those mongrels were +pupped, Spanish ale in Galway, the winebark on the winedark waterway. + +—And will again, says Joe. + +—And with the help of the holy mother of God we will again, says the +citizen, clapping his thigh. Our harbours that are empty will be full +again, Queenstown, Kinsale, Galway, Blacksod Bay, Ventry in the kingdom +of Kerry, Killybegs, the third largest harbour in the wide world with a +fleet of masts of the Galway Lynches and the Cavan O’Reillys and the +O’Kennedys of Dublin when the earl of Desmond could make a treaty with +the emperor Charles the Fifth himself. And will again, says he, when +the first Irish battleship is seen breasting the waves with our own +flag to the fore, none of your Henry Tudor’s harps, no, the oldest flag +afloat, the flag of the province of Desmond and Thomond, three crowns +on a blue field, the three sons of Milesius. + +And he took the last swig out of the pint. Moya. All wind and piss like +a tanyard cat. Cows in Connacht have long horns. As much as his bloody +life is worth to go down and address his tall talk to the assembled +multitude in Shanagolden where he daren’t show his nose with the Molly +Maguires looking for him to let daylight through him for grabbing the +holding of an evicted tenant. + +—Hear, hear to that, says John Wyse. What will you have? + +—An imperial yeomanry, says Lenehan, to celebrate the occasion. + +—Half one, Terry, says John Wyse, and a hands up. Terry! Are you +asleep? + +—Yes, sir, says Terry. Small whisky and bottle of Allsop. Right, sir. + +Hanging over the bloody paper with Alf looking for spicy bits instead +of attending to the general public. Picture of a butting match, trying +to crack their bloody skulls, one chap going for the other with his +head down like a bull at a gate. And another one: _Black Beast Burned +in Omaha, Ga_. A lot of Deadwood Dicks in slouch hats and they firing +at a Sambo strung up in a tree with his tongue out and a bonfire under +him. Gob, they ought to drown him in the sea after and electrocute and +crucify him to make sure of their job. + +—But what about the fighting navy, says Ned, that keeps our foes at +bay? + +—I’ll tell you what about it, says the citizen. Hell upon earth it is. +Read the revelations that’s going on in the papers about flogging on +the training ships at Portsmouth. A fellow writes that calls himself +_Disgusted One_. + +So he starts telling us about corporal punishment and about the crew of +tars and officers and rearadmirals drawn up in cocked hats and the +parson with his protestant bible to witness punishment and a young lad +brought out, howling for his ma, and they tie him down on the buttend +of a gun. + +—A rump and dozen, says the citizen, was what that old ruffian sir John +Beresford called it but the modern God’s Englishman calls it caning on +the breech. + +And says John Wyse: + +—’Tis a custom more honoured in the breach than in the observance. + +Then he was telling us the master at arms comes along with a long cane +and he draws out and he flogs the bloody backside off of the poor lad +till he yells meila murder. + +—That’s your glorious British navy, says the citizen, that bosses the +earth. The fellows that never will be slaves, with the only hereditary +chamber on the face of God’s earth and their land in the hands of a +dozen gamehogs and cottonball barons. That’s the great empire they +boast about of drudges and whipped serfs. + +—On which the sun never rises, says Joe. + +—And the tragedy of it is, says the citizen, they believe it. The +unfortunate yahoos believe it. + +They believe in rod, the scourger almighty, creator of hell upon earth, +and in Jacky Tar, the son of a gun, who was conceived of unholy boast, +born of the fighting navy, suffered under rump and dozen, was +scarified, flayed and curried, yelled like bloody hell, the third day +he arose again from the bed, steered into haven, sitteth on his beamend +till further orders whence he shall come to drudge for a living and be +paid. + +—But, says Bloom, isn’t discipline the same everywhere. I mean wouldn’t +it be the same here if you put force against force? + +Didn’t I tell you? As true as I’m drinking this porter if he was at his +last gasp he’d try to downface you that dying was living. + +—We’ll put force against force, says the citizen. We have our greater +Ireland beyond the sea. They were driven out of house and home in the +black 47. Their mudcabins and their shielings by the roadside were laid +low by the batteringram and the _Times_ rubbed its hands and told the +whitelivered Saxons there would soon be as few Irish in Ireland as +redskins in America. Even the Grand Turk sent us his piastres. But the +Sassenach tried to starve the nation at home while the land was full of +crops that the British hyenas bought and sold in Rio de Janeiro. Ay, +they drove out the peasants in hordes. Twenty thousand of them died in +the coffinships. But those that came to the land of the free remember +the land of bondage. And they will come again and with a vengeance, no +cravens, the sons of Granuaile, the champions of Kathleen ni Houlihan. + +—Perfectly true, says Bloom. But my point was... + +—We are a long time waiting for that day, citizen, says Ned. Since the +poor old woman told us that the French were on the sea and landed at +Killala. + +—Ay, says John Wyse. We fought for the royal Stuarts that reneged us +against the Williamites and they betrayed us. Remember Limerick and the +broken treatystone. We gave our best blood to France and Spain, the +wild geese. Fontenoy, eh? And Sarsfield and O’Donnell, duke of Tetuan +in Spain, and Ulysses Browne of Camus that was fieldmarshal to Maria +Teresa. But what did we ever get for it? + +—The French! says the citizen. Set of dancing masters! Do you know what +it is? They were never worth a roasted fart to Ireland. Aren’t they +trying to make an _Entente cordiale_ now at Tay Pay’s dinnerparty with +perfidious Albion? Firebrands of Europe and they always were. + +—_Conspuez les Français_, says Lenehan, nobbling his beer. + +—And as for the Prooshians and the Hanoverians, says Joe, haven’t we +had enough of those sausageeating bastards on the throne from George +the elector down to the German lad and the flatulent old bitch that’s +dead? + +Jesus, I had to laugh at the way he came out with that about the old +one with the winkers on her, blind drunk in her royal palace every +night of God, old Vic, with her jorum of mountain dew and her coachman +carting her up body and bones to roll into bed and she pulling him by +the whiskers and singing him old bits of songs about _Ehren on the +Rhine_ and come where the boose is cheaper. + +—Well, says J. J. We have Edward the peacemaker now. + +—Tell that to a fool, says the citizen. There’s a bloody sight more pox +than pax about that boyo. Edward Guelph-Wettin! + +—And what do you think, says Joe, of the holy boys, the priests and +bishops of Ireland doing up his room in Maynooth in His Satanic +Majesty’s racing colours and sticking up pictures of all the horses his +jockeys rode. The earl of Dublin, no less. + +—They ought to have stuck up all the women he rode himself, says little +Alf. + +And says J. J.: + +—Considerations of space influenced their lordships’ decision. + +—Will you try another, citizen? says Joe. + +—Yes, sir, says he. I will. + +—You? says Joe. + +—Beholden to you, Joe, says I. May your shadow never grow less. + +—Repeat that dose, says Joe. + +Bloom was talking and talking with John Wyse and he quite excited with +his dunducketymudcoloured mug on him and his old plumeyes rolling +about. + +—Persecution, says he, all the history of the world is full of it. +Perpetuating national hatred among nations. + +—But do you know what a nation means? says John Wyse. + +—Yes, says Bloom. + +—What is it? says John Wyse. + +—A nation? says Bloom. A nation is the same people living in the same +place. + +—By God, then, says Ned, laughing, if that’s so I’m a nation for I’m +living in the same place for the past five years. + +So of course everyone had the laugh at Bloom and says he, trying to +muck out of it: + +—Or also living in different places. + +—That covers my case, says Joe. + +—What is your nation if I may ask? says the citizen. + +—Ireland, says Bloom. I was born here. Ireland. + +The citizen said nothing only cleared the spit out of his gullet and, +gob, he spat a Red bank oyster out of him right in the corner. + +—After you with the push, Joe, says he, taking out his handkerchief to +swab himself dry. + +—Here you are, citizen, says Joe. Take that in your right hand and +repeat after me the following words. + +The muchtreasured and intricately embroidered ancient Irish facecloth +attributed to Solomon of Droma and Manus Tomaltach og MacDonogh, +authors of the Book of Ballymote, was then carefully produced and +called forth prolonged admiration. No need to dwell on the legendary +beauty of the cornerpieces, the acme of art, wherein one can distinctly +discern each of the four evangelists in turn presenting to each of the +four masters his evangelical symbol, a bogoak sceptre, a North American +puma (a far nobler king of beasts than the British article, be it said +in passing), a Kerry calf and a golden eagle from Carrantuohill. The +scenes depicted on the emunctory field, showing our ancient duns and +raths and cromlechs and grianauns and seats of learning and maledictive +stones, are as wonderfully beautiful and the pigments as delicate as +when the Sligo illuminators gave free rein to their artistic fantasy +long long ago in the time of the Barmecides. Glendalough, the lovely +lakes of Killarney, the ruins of Clonmacnois, Cong Abbey, Glen Inagh +and the Twelve Pins, Ireland’s Eye, the Green Hills of Tallaght, Croagh +Patrick, the brewery of Messrs Arthur Guinness, Son and Company +(Limited), Lough Neagh’s banks, the vale of Ovoca, Isolde’s tower, the +Mapas obelisk, Sir Patrick Dun’s hospital, Cape Clear, the glen of +Aherlow, Lynch’s castle, the Scotch house, Rathdown Union Workhouse at +Loughlinstown, Tullamore jail, Castleconnel rapids, +Kilballymacshonakill, the cross at Monasterboice, Jury’s Hotel, S. +Patrick’s Purgatory, the Salmon Leap, Maynooth college refectory, +Curley’s hole, the three birthplaces of the first duke of Wellington, +the rock of Cashel, the bog of Allen, the Henry Street Warehouse, +Fingal’s Cave—all these moving scenes are still there for us today +rendered more beautiful still by the waters of sorrow which have passed +over them and by the rich incrustations of time. + +—Show us over the drink, says I. Which is which? + +—That’s mine, says Joe, as the devil said to the dead policeman. + +—And I belong to a race too, says Bloom, that is hated and persecuted. +Also now. This very moment. This very instant. + +Gob, he near burnt his fingers with the butt of his old cigar. + +—Robbed, says he. Plundered. Insulted. Persecuted. Taking what belongs +to us by right. At this very moment, says he, putting up his fist, sold +by auction in Morocco like slaves or cattle. + +—Are you talking about the new Jerusalem? says the citizen. + +—I’m talking about injustice, says Bloom. + +—Right, says John Wyse. Stand up to it then with force like men. + +That’s an almanac picture for you. Mark for a softnosed bullet. Old +lardyface standing up to the business end of a gun. Gob, he’d adorn a +sweepingbrush, so he would, if he only had a nurse’s apron on him. And +then he collapses all of a sudden, twisting around all the opposite, as +limp as a wet rag. + +—But it’s no use, says he. Force, hatred, history, all that. That’s not +life for men and women, insult and hatred. And everybody knows that +it’s the very opposite of that that is really life. + +—What? says Alf. + +—Love, says Bloom. I mean the opposite of hatred. I must go now, says +he to John Wyse. Just round to the court a moment to see if Martin is +there. If he comes just say I’ll be back in a second. Just a moment. + +Who’s hindering you? And off he pops like greased lightning. + +—A new apostle to the gentiles, says the citizen. Universal love. + +—Well, says John Wyse. Isn’t that what we’re told. Love your neighbour. + +—That chap? says the citizen. Beggar my neighbour is his motto. Love, +moya! He’s a nice pattern of a Romeo and Juliet. + +Love loves to love love. Nurse loves the new chemist. Constable 14A +loves Mary Kelly. Gerty MacDowell loves the boy that has the bicycle. +M. B. loves a fair gentleman. Li Chi Han lovey up kissy Cha Pu Chow. +Jumbo, the elephant, loves Alice, the elephant. Old Mr Verschoyle with +the ear trumpet loves old Mrs Verschoyle with the turnedin eye. The man +in the brown macintosh loves a lady who is dead. His Majesty the King +loves Her Majesty the Queen. Mrs Norman W. Tupper loves officer Taylor. +You love a certain person. And this person loves that other person +because everybody loves somebody but God loves everybody. + +—Well, Joe, says I, your very good health and song. More power, +citizen. + +—Hurrah, there, says Joe. + +—The blessing of God and Mary and Patrick on you, says the citizen. + +And he ups with his pint to wet his whistle. + +—We know those canters, says he, preaching and picking your pocket. +What about sanctimonious Cromwell and his ironsides that put the women +and children of Drogheda to the sword with the bible text _God is love_ +pasted round the mouth of his cannon? The bible! Did you read that skit +in the _United Irishman_ today about that Zulu chief that’s visiting +England? + +—What’s that? says Joe. + +So the citizen takes up one of his paraphernalia papers and he starts +reading out: + +—A delegation of the chief cotton magnates of Manchester was presented +yesterday to His Majesty the Alaki of Abeakuta by Gold Stick in +Waiting, Lord Walkup of Walkup on Eggs, to tender to His Majesty the +heartfelt thanks of British traders for the facilities afforded them in +his dominions. The delegation partook of luncheon at the conclusion of +which the dusky potentate, in the course of a happy speech, freely +translated by the British chaplain, the reverend Ananias Praisegod +Barebones, tendered his best thanks to Massa Walkup and emphasised the +cordial relations existing between Abeakuta and the British empire, +stating that he treasured as one of his dearest possessions an +illuminated bible, the volume of the word of God and the secret of +England’s greatness, graciously presented to him by the white chief +woman, the great squaw Victoria, with a personal dedication from the +august hand of the Royal Donor. The Alaki then drank a lovingcup of +firstshot usquebaugh to the toast _Black and White_ from the skull of +his immediate predecessor in the dynasty Kakachakachak, surnamed Forty +Warts, after which he visited the chief factory of Cottonopolis and +signed his mark in the visitors’ book, subsequently executing a +charming old Abeakutic wardance, in the course of which he swallowed +several knives and forks, amid hilarious applause from the girl hands. + +—Widow woman, says Ned. I wouldn’t doubt her. Wonder did he put that +bible to the same use as I would. + +—Same only more so, says Lenehan. And thereafter in that fruitful land +the broadleaved mango flourished exceedingly. + +—Is that by Griffith? says John Wyse. + +—No, says the citizen. It’s not signed Shanganagh. It’s only +initialled: P. + +—And a very good initial too, says Joe. + +—That’s how it’s worked, says the citizen. Trade follows the flag. + +—Well, says J. J., if they’re any worse than those Belgians in the +Congo Free State they must be bad. Did you read that report by a man +what’s this his name is? + +—Casement, says the citizen. He’s an Irishman. + +—Yes, that’s the man, says J. J. Raping the women and girls and +flogging the natives on the belly to squeeze all the red rubber they +can out of them. + +—I know where he’s gone, says Lenehan, cracking his fingers. + +—Who? says I. + +—Bloom, says he. The courthouse is a blind. He had a few bob on +_Throwaway_ and he’s gone to gather in the shekels. + +—Is it that whiteeyed kaffir? says the citizen, that never backed a +horse in anger in his life? + +—That’s where he’s gone, says Lenehan. I met Bantam Lyons going to back +that horse only I put him off it and he told me Bloom gave him the tip. +Bet you what you like he has a hundred shillings to five on. He’s the +only man in Dublin has it. A dark horse. + +—He’s a bloody dark horse himself, says Joe. + +—Mind, Joe, says I. Show us the entrance out. + +—There you are, says Terry. + +Goodbye Ireland I’m going to Gort. So I just went round the back of the +yard to pumpship and begob (hundred shillings to five) while I was +letting off my _(Throwaway_ twenty to) letting off my load gob says I +to myself I knew he was uneasy in his (two pints off of Joe and one in +Slattery’s off) in his mind to get off the mark to (hundred shillings +is five quid) and when they were in the (dark horse) pisser Burke was +telling me card party and letting on the child was sick (gob, must have +done about a gallon) flabbyarse of a wife speaking down the tube _she’s +better_ or _she’s_ (ow!) all a plan so he could vamoose with the pool +if he won or (Jesus, full up I was) trading without a licence (ow!) +Ireland my nation says he (hoik! phthook!) never be up to those bloody +(there’s the last of it) Jerusalem (ah!) cuckoos. + +So anyhow when I got back they were at it dingdong, John Wyse saying it +was Bloom gave the ideas for Sinn Fein to Griffith to put in his paper +all kinds of jerrymandering, packed juries and swindling the taxes off +of the government and appointing consuls all over the world to walk +about selling Irish industries. Robbing Peter to pay Paul. Gob, that +puts the bloody kybosh on it if old sloppy eyes is mucking up the show. +Give us a bloody chance. God save Ireland from the likes of that bloody +mouseabout. Mr Bloom with his argol bargol. And his old fellow before +him perpetrating frauds, old Methusalem Bloom, the robbing bagman, that +poisoned himself with the prussic acid after he swamping the country +with his baubles and his penny diamonds. Loans by post on easy terms. +Any amount of money advanced on note of hand. Distance no object. No +security. Gob, he’s like Lanty MacHale’s goat that’d go a piece of the +road with every one. + +—Well, it’s a fact, says John Wyse. And there’s the man now that’ll +tell you all about it, Martin Cunningham. + +Sure enough the castle car drove up with Martin on it and Jack Power +with him and a fellow named Crofter or Crofton, pensioner out of the +collector general’s, an orangeman Blackburn does have on the +registration and he drawing his pay or Crawford gallivanting around the +country at the king’s expense. + +Our travellers reached the rustic hostelry and alighted from their +palfreys. + +—Ho, varlet! cried he, who by his mien seemed the leader of the party. +Saucy knave! To us! + +So saying he knocked loudly with his swordhilt upon the open lattice. + +Mine host came forth at the summons, girding him with his tabard. + +—Give you good den, my masters, said he with an obsequious bow. + +—Bestir thyself, sirrah! cried he who had knocked. Look to our steeds. +And for ourselves give us of your best for ifaith we need it. + +—Lackaday, good masters, said the host, my poor house has but a bare +larder. I know not what to offer your lordships. + +—How now, fellow? cried the second of the party, a man of pleasant +countenance, So servest thou the king’s messengers, master Taptun? + +An instantaneous change overspread the landlord’s visage. + +—Cry you mercy, gentlemen, he said humbly. An you be the king’s +messengers (God shield His Majesty!) you shall not want for aught. The +king’s friends (God bless His Majesty!) shall not go afasting in my +house I warrant me. + +—Then about! cried the traveller who had not spoken, a lusty +trencherman by his aspect. Hast aught to give us? + +Mine host bowed again as he made answer: + +—What say you, good masters, to a squab pigeon pasty, some collops of +venison, a saddle of veal, widgeon with crisp hog’s bacon, a boar’s +head with pistachios, a bason of jolly custard, a medlar tansy and a +flagon of old Rhenish? + +—Gadzooks! cried the last speaker. That likes me well. Pistachios! + +—Aha! cried he of the pleasant countenance. A poor house and a bare +larder, quotha! ’Tis a merry rogue. + +So in comes Martin asking where was Bloom. + +—Where is he? says Lenehan. Defrauding widows and orphans. + +—Isn’t that a fact, says John Wyse, what I was telling the citizen +about Bloom and the Sinn Fein? + +—That’s so, says Martin. Or so they allege. + +—Who made those allegations? says Alf. + +—I, says Joe. I’m the alligator. + +—And after all, says John Wyse, why can’t a jew love his country like +the next fellow? + +—Why not? says J. J., when he’s quite sure which country it is. + +—Is he a jew or a gentile or a holy Roman or a swaddler or what the +hell is he? says Ned. Or who is he? No offence, Crofton. + +—Who is Junius? says J. J. + +—We don’t want him, says Crofter the Orangeman or presbyterian. + +—He’s a perverted jew, says Martin, from a place in Hungary and it was +he drew up all the plans according to the Hungarian system. We know +that in the castle. + +—Isn’t he a cousin of Bloom the dentist? says Jack Power. + +—Not at all, says Martin. Only namesakes. His name was Virag, the +father’s name that poisoned himself. He changed it by deedpoll, the +father did. + +—That’s the new Messiah for Ireland! says the citizen. Island of saints +and sages! + +—Well, they’re still waiting for their redeemer, says Martin. For that +matter so are we. + +—Yes, says J. J., and every male that’s born they think it may be their +Messiah. And every jew is in a tall state of excitement, I believe, +till he knows if he’s a father or a mother. + +—Expecting every moment will be his next, says Lenehan. + +—O, by God, says Ned, you should have seen Bloom before that son of his +that died was born. I met him one day in the south city markets buying +a tin of Neave’s food six weeks before the wife was delivered. + +—_En ventre sa mère_, says J. J. + +—Do you call that a man? says the citizen. + +—I wonder did he ever put it out of sight, says Joe. + +—Well, there were two children born anyhow, says Jack Power. + +—And who does he suspect? says the citizen. + +Gob, there’s many a true word spoken in jest. One of those mixed +middlings he is. Lying up in the hotel Pisser was telling me once a +month with headache like a totty with her courses. Do you know what I’m +telling you? It’d be an act of God to take a hold of a fellow the like +of that and throw him in the bloody sea. Justifiable homicide, so it +would. Then sloping off with his five quid without putting up a pint of +stuff like a man. Give us your blessing. Not as much as would blind +your eye. + +—Charity to the neighbour, says Martin. But where is he? We can’t wait. + +—A wolf in sheep’s clothing, says the citizen. That’s what he is. Virag +from Hungary! Ahasuerus I call him. Cursed by God. + +—Have you time for a brief libation, Martin? says Ned. + +—Only one, says Martin. We must be quick. J. J. and S. + +—You, Jack? Crofton? Three half ones, Terry. + +—Saint Patrick would want to land again at Ballykinlar and convert us, +says the citizen, after allowing things like that to contaminate our +shores. + +—Well, says Martin, rapping for his glass. God bless all here is my +prayer. + +—Amen, says the citizen. + +—And I’m sure He will, says Joe. + +And at the sound of the sacring bell, headed by a crucifer with +acolytes, thurifers, boatbearers, readers, ostiarii, deacons and +subdeacons, the blessed company drew nigh of mitred abbots and priors +and guardians and monks and friars: the monks of Benedict of Spoleto, +Carthusians and Camaldolesi, Cistercians and Olivetans, Oratorians and +Vallombrosans, and the friars of Augustine, Brigittines, +Premonstratensians, Servi, Trinitarians, and the children of Peter +Nolasco: and therewith from Carmel mount the children of Elijah prophet +led by Albert bishop and by Teresa of Avila, calced and other: and +friars, brown and grey, sons of poor Francis, capuchins, cordeliers, +minimes and observants and the daughters of Clara: and the sons of +Dominic, the friars preachers, and the sons of Vincent: and the monks +of S. Wolstan: and Ignatius his children: and the confraternity of the +christian brothers led by the reverend brother Edmund Ignatius Rice. +And after came all saints and martyrs, virgins and confessors: S. Cyr +and S. Isidore Arator and S. James the Less and S. Phocas of Sinope and +S. Julian Hospitator and S. Felix de Cantalice and S. Simon Stylites +and S. Stephen Protomartyr and S. John of God and S. Ferreol and S. +Leugarde and S. Theodotus and S. Vulmar and S. Richard and S. Vincent +de Paul and S. Martin of Todi and S. Martin of Tours and S. Alfred and +S. Joseph and S. Denis and S. Cornelius and S. Leopold and S. Bernard +and S. Terence and S. Edward and S. Owen Caniculus and S. Anonymous and +S. Eponymous and S. Pseudonymous and S. Homonymous and S. Paronymous +and S. Synonymous and S. Laurence O’Toole and S. James of Dingle and +Compostella and S. Columcille and S. Columba and S. Celestine and S. +Colman and S. Kevin and S. Brendan and S. Frigidian and S. Senan and S. +Fachtna and S. Columbanus and S. Gall and S. Fursey and S. Fintan and +S. Fiacre and S. John Nepomuc and S. Thomas Aquinas and S. Ives of +Brittany and S. Michan and S. Herman-Joseph and the three patrons of +holy youth S. Aloysius Gonzaga and S. Stanislaus Kostka and S. John +Berchmans and the saints Gervasius, Servasius and Bonifacius and S. +Bride and S. Kieran and S. Canice of Kilkenny and S. Jarlath of Tuam +and S. Finbarr and S. Pappin of Ballymun and Brother Aloysius Pacificus +and Brother Louis Bellicosus and the saints Rose of Lima and of Viterbo +and S. Martha of Bethany and S. Mary of Egypt and S. Lucy and S. Brigid +and S. Attracta and S. Dympna and S. Ita and S. Marion Calpensis and +the Blessed Sister Teresa of the Child Jesus and S. Barbara and S. +Scholastica and S. Ursula with eleven thousand virgins. And all came +with nimbi and aureoles and gloriae, bearing palms and harps and swords +and olive crowns, in robes whereon were woven the blessed symbols of +their efficacies, inkhorns, arrows, loaves, cruses, fetters, axes, +trees, bridges, babes in a bathtub, shells, wallets, shears, keys, +dragons, lilies, buckshot, beards, hogs, lamps, bellows, beehives, +soupladles, stars, snakes, anvils, boxes of vaseline, bells, crutches, +forceps, stags’ horns, watertight boots, hawks, millstones, eyes on a +dish, wax candles, aspergills, unicorns. And as they wended their way +by Nelson’s Pillar, Henry street, Mary street, Capel street, Little +Britain street chanting the introit in _Epiphania Domini_ which +beginneth _Surge, illuminare_ and thereafter most sweetly the gradual +_Omnes_ which saith _de Saba venient_ they did divers wonders such as +casting out devils, raising the dead to life, multiplying fishes, +healing the halt and the blind, discovering various articles which had +been mislaid, interpreting and fulfilling the scriptures, blessing and +prophesying. And last, beneath a canopy of cloth of gold came the +reverend Father O’Flynn attended by Malachi and Patrick. And when the +good fathers had reached the appointed place, the house of Bernard +Kiernan and Co, limited, 8, 9 and 10 little Britain street, wholesale +grocers, wine and brandy shippers, licensed for the sale of beer, wine +and spirits for consumption on the premises, the celebrant blessed the +house and censed the mullioned windows and the groynes and the vaults +and the arrises and the capitals and the pediments and the cornices and +the engrailed arches and the spires and the cupolas and sprinkled the +lintels thereof with blessed water and prayed that God might bless that +house as he had blessed the house of Abraham and Isaac and Jacob and +make the angels of His light to inhabit therein. And entering he +blessed the viands and the beverages and the company of all the blessed +answered his prayers. + +—_Adiutorium nostrum in nomine Domini._ + +—_Qui fecit cœlum et terram._ + +—_Dominus vobiscum._ + +—_Et cum spiritu tuo._ + +And he laid his hands upon that he blessed and gave thanks and he +prayed and they all with him prayed: + +—_Deus, cuius verbo sanctificantur omnia, benedictionem tuam effunde +super creaturas istas: et praesta ut quisquis eis secundum legem et +voluntatem Tuam cum gratiarum actione usus fuerit per invocationem +sanctissimi nominis Tui corporis sanitatem et animæ tutelam Te auctore +percipiat per Christum Dominum nostrum._ + +—And so say all of us, says Jack. + +—Thousand a year, Lambert, says Crofton or Crawford. + +—Right, says Ned, taking up his John Jameson. And butter for fish. + +I was just looking around to see who the happy thought would strike +when be damned but in he comes again letting on to be in a hell of a +hurry. + +—I was just round at the courthouse, says he, looking for you. I hope +I’m not... + +—No, says Martin, we’re ready. + +Courthouse my eye and your pockets hanging down with gold and silver. +Mean bloody scut. Stand us a drink itself. Devil a sweet fear! There’s +a jew for you! All for number one. Cute as a shithouse rat. Hundred to +five. + +—Don’t tell anyone, says the citizen. + +—Beg your pardon, says he. + +—Come on boys, says Martin, seeing it was looking blue. Come along now. + +—Don’t tell anyone, says the citizen, letting a bawl out of him. It’s a +secret. + +And the bloody dog woke up and let a growl. + +—Bye bye all, says Martin. + +And he got them out as quick as he could, Jack Power and Crofton or +whatever you call him and him in the middle of them letting on to be +all at sea and up with them on the bloody jaunting car. + +—Off with you, says Martin to the jarvey. + +The milkwhite dolphin tossed his mane and, rising in the golden poop +the helmsman spread the bellying sail upon the wind and stood off +forward with all sail set, the spinnaker to larboard. A many comely +nymphs drew nigh to starboard and to larboard and, clinging to the +sides of the noble bark, they linked their shining forms as doth the +cunning wheelwright when he fashions about the heart of his wheel the +equidistant rays whereof each one is sister to another and he binds +them all with an outer ring and giveth speed to the feet of men whenas +they ride to a hosting or contend for the smile of ladies fair. Even so +did they come and set them, those willing nymphs, the undying sisters. +And they laughed, sporting in a circle of their foam: and the bark +clave the waves. + +But begob I was just lowering the heel of the pint when I saw the +citizen getting up to waddle to the door, puffing and blowing with the +dropsy, and he cursing the curse of Cromwell on him, bell, book and +candle in Irish, spitting and spatting out of him and Joe and little +Alf round him like a leprechaun trying to peacify him. + +—Let me alone, says he. + +And begob he got as far as the door and they holding him and he bawls +out of him: + +—Three cheers for Israel! + +Arrah, sit down on the parliamentary side of your arse for Christ’ sake +and don’t be making a public exhibition of yourself. Jesus, there’s +always some bloody clown or other kicking up a bloody murder about +bloody nothing. Gob, it’d turn the porter sour in your guts, so it +would. + +And all the ragamuffins and sluts of the nation round the door and +Martin telling the jarvey to drive ahead and the citizen bawling and +Alf and Joe at him to whisht and he on his high horse about the jews +and the loafers calling for a speech and Jack Power trying to get him +to sit down on the car and hold his bloody jaw and a loafer with a +patch over his eye starts singing _If the man in the moon was a jew, +jew, jew_ and a slut shouts out of her: + +—Eh, mister! Your fly is open, mister! + +And says he: + +—Mendelssohn was a jew and Karl Marx and Mercadante and Spinoza. And +the Saviour was a jew and his father was a jew. Your God. + +—He had no father, says Martin. That’ll do now. Drive ahead. + +—Whose God? says the citizen. + +—Well, his uncle was a jew, says he. Your God was a jew. Christ was a +jew like me. + +Gob, the citizen made a plunge back into the shop. + +—By Jesus, says he, I’ll brain that bloody jewman for using the holy +name. By Jesus, I’ll crucify him so I will. Give us that biscuitbox here. + +—Stop! Stop! says Joe. + +A large and appreciative gathering of friends and acquaintances from +the metropolis and greater Dublin assembled in their thousands to bid +farewell to Nagyaságos uram Lipóti Virag, late of Messrs Alexander +Thom’s, printers to His Majesty, on the occasion of his departure for +the distant clime of Százharminczbrojúgulyás-Dugulás (Meadow of +Murmuring Waters). The ceremony which went off with great _éclat_ was +characterised by the most affecting cordiality. An illuminated scroll +of ancient Irish vellum, the work of Irish artists, was presented to +the distinguished phenomenologist on behalf of a large section of the +community and was accompanied by the gift of a silver casket, +tastefully executed in the style of ancient Celtic ornament, a work +which reflects every credit on the makers, Messrs Jacob _agus_ Jacob. +The departing guest was the recipient of a hearty ovation, many of +those who were present being visibly moved when the select orchestra of +Irish pipes struck up the wellknown strains of _Come Back to Erin_, +followed immediately by _Rakóczsy’s March_. Tarbarrels and bonfires +were lighted along the coastline of the four seas on the summits of the +Hill of Howth, Three Rock Mountain, Sugarloaf, Bray Head, the mountains +of Mourne, the Galtees, the Ox and Donegal and Sperrin peaks, the +Nagles and the Bograghs, the Connemara hills, the reeks of +M’Gillicuddy, Slieve Aughty, Slieve Bernagh and Slieve Bloom. Amid +cheers that rent the welkin, responded to by answering cheers from a +big muster of henchmen on the distant Cambrian and Caledonian hills, +the mastodontic pleasureship slowly moved away saluted by a final +floral tribute from the representatives of the fair sex who were +present in large numbers while, as it proceeded down the river, +escorted by a flotilla of barges, the flags of the Ballast office and +Custom House were dipped in salute as were also those of the electrical +power station at the Pigeonhouse and the Poolbeg Light. +_Visszontlátásra, kedvés barátom! Visszontlátásra!_ Gone but not +forgotten. + +Gob, the devil wouldn’t stop him till he got hold of the bloody tin +anyhow and out with him and little Alf hanging on to his elbow and he +shouting like a stuck pig, as good as any bloody play in the Queen’s +royal theatre: + +—Where is he till I murder him? + +And Ned and J. J. paralysed with the laughing. + +—Bloody wars, says I, I’ll be in for the last gospel. + +But as luck would have it the jarvey got the nag’s head round the other +way and off with him. + +—Hold on, citizen, says Joe. Stop! + +Begob he drew his hand and made a swipe and let fly. Mercy of God the +sun was in his eyes or he’d have left him for dead. Gob, he near sent +it into the county Longford. The bloody nag took fright and the old +mongrel after the car like bloody hell and all the populace shouting +and laughing and the old tinbox clattering along the street. + +The catastrophe was terrific and instantaneous in its effect. The +observatory of Dunsink registered in all eleven shocks, all of the +fifth grade of Mercalli’s scale, and there is no record extant of a +similar seismic disturbance in our island since the earthquake of 1534, +the year of the rebellion of Silken Thomas. The epicentre appears to +have been that part of the metropolis which constitutes the Inn’s Quay +ward and parish of Saint Michan covering a surface of fortyone acres, +two roods and one square pole or perch. All the lordly residences in +the vicinity of the palace of justice were demolished and that noble +edifice itself, in which at the time of the catastrophe important legal +debates were in progress, is literally a mass of ruins beneath which it +is to be feared all the occupants have been buried alive. From the +reports of eyewitnesses it transpires that the seismic waves were +accompanied by a violent atmospheric perturbation of cyclonic +character. An article of headgear since ascertained to belong to the +much respected clerk of the crown and peace Mr George Fottrell and a +silk umbrella with gold handle with the engraved initials, crest, coat +of arms and house number of the erudite and worshipful chairman of +quarter sessions sir Frederick Falkiner, recorder of Dublin, have been +discovered by search parties in remote parts of the island +respectively, the former on the third basaltic ridge of the giant’s +causeway, the latter embedded to the extent of one foot three inches in +the sandy beach of Holeopen bay near the old head of Kinsale. Other +eyewitnesses depose that they observed an incandescent object of +enormous proportions hurtling through the atmosphere at a terrifying +velocity in a trajectory directed southwest by west. Messages of +condolence and sympathy are being hourly received from all parts of the +different continents and the sovereign pontiff has been graciously +pleased to decree that a special _missa pro defunctis_ shall be +celebrated simultaneously by the ordinaries of each and every cathedral +church of all the episcopal dioceses subject to the spiritual authority +of the Holy See in suffrage of the souls of those faithful departed who +have been so unexpectedly called away from our midst. The work of +salvage, removal of _débris,_ human remains etc has been entrusted to +Messrs Michael Meade and Son, 159 Great Brunswick street, and Messrs T. +and C. Martin, 77, 78, 79 and 80 North Wall, assisted by the men and +officers of the Duke of Cornwall’s light infantry under the general +supervision of H. R. H., rear admiral, the right honourable sir +Hercules Hannibal Habeas Corpus Anderson, K. G., K. P., K. T., P. C., +K. C. B., M. P., J. P., M. B., D. S. O., S. O. D., M. F. H., M. R. I. +A., B. L., Mus. Doc., P. L. G., F. T. C. D., F. R. U. I., F. R. C. P. +I. and F. R. C. S. I. + +You never saw the like of it in all your born puff. Gob, if he got that +lottery ticket on the side of his poll he’d remember the gold cup, he +would so, but begob the citizen would have been lagged for assault and +battery and Joe for aiding and abetting. The jarvey saved his life by +furious driving as sure as God made Moses. What? O, Jesus, he did. And +he let a volley of oaths after him. + +—Did I kill him, says he, or what? + +And he shouting to the bloody dog: + +—After him, Garry! After him, boy! + +And the last we saw was the bloody car rounding the corner and old +sheepsface on it gesticulating and the bloody mongrel after it with his +lugs back for all he was bloody well worth to tear him limb from limb. +Hundred to five! Jesus, he took the value of it out of him, I promise +you. + +When, lo, there came about them all a great brightness and they beheld +the chariot wherein He stood ascend to heaven. And they beheld Him in +the chariot, clothed upon in the glory of the brightness, having +raiment as of the sun, fair as the moon and terrible that for awe they +durst not look upon Him. And there came a voice out of heaven, calling: +_Elijah! Elijah!_ And He answered with a main cry: _Abba! Adonai!_ And +they beheld Him even Him, ben Bloom Elijah, amid clouds of angels +ascend to the glory of the brightness at an angle of fortyfive degrees +over Donohoe’s in Little Green street like a shot off a shovel. + + + + +[ 13 ] + + +The summer evening had begun to fold the world in its mysterious +embrace. Far away in the west the sun was setting and the last glow of +all too fleeting day lingered lovingly on sea and strand, on the proud +promontory of dear old Howth guarding as ever the waters of the bay, on +the weedgrown rocks along Sandymount shore and, last but not least, on +the quiet church whence there streamed forth at times upon the +stillness the voice of prayer to her who is in her pure radiance a +beacon ever to the stormtossed heart of man, Mary, star of the sea. + +The three girl friends were seated on the rocks, enjoying the evening +scene and the air which was fresh but not too chilly. Many a time and +oft were they wont to come there to that favourite nook to have a cosy +chat beside the sparkling waves and discuss matters feminine, Cissy +Caffrey and Edy Boardman with the baby in the pushcar and Tommy and +Jacky Caffrey, two little curlyheaded boys, dressed in sailor suits +with caps to match and the name _H. M. S. Belleisle_ printed on both. +For Tommy and Jacky Caffrey were twins, scarce four years old and very +noisy and spoiled twins sometimes but for all that darling little +fellows with bright merry faces and endearing ways about them. They +were dabbling in the sand with their spades and buckets, building +castles as children do, or playing with their big coloured ball, happy +as the day was long. And Edy Boardman was rocking the chubby baby to +and fro in the pushcar while that young gentleman fairly chuckled with +delight. He was but eleven months and nine days old and, though still a +tiny toddler, was just beginning to lisp his first babyish words. Cissy +Caffrey bent over to him to tease his fat little plucks and the dainty +dimple in his chin. + +—Now, baby, Cissy Caffrey said. Say out big, big. I want a drink of +water. + +And baby prattled after her: + +—A jink a jink a jawbo. + +Cissy Caffrey cuddled the wee chap for she was awfully fond of +children, so patient with little sufferers and Tommy Caffrey could +never be got to take his castor oil unless it was Cissy Caffrey that +held his nose and promised him the scatty heel of the loaf or brown +bread with golden syrup on. What a persuasive power that girl had! But +to be sure baby Boardman was as good as gold, a perfect little dote in +his new fancy bib. None of your spoilt beauties, Flora MacFlimsy sort, +was Cissy Caffrey. A truerhearted lass never drew the breath of life, +always with a laugh in her gipsylike eyes and a frolicsome word on her +cherryripe red lips, a girl lovable in the extreme. And Edy Boardman +laughed too at the quaint language of little brother. + +But just then there was a slight altercation between Master Tommy and +Master Jacky. Boys will be boys and our two twins were no exception to +this golden rule. The apple of discord was a certain castle of sand +which Master Jacky had built and Master Tommy would have it right go +wrong that it was to be architecturally improved by a frontdoor like +the Martello tower had. But if Master Tommy was headstrong Master Jacky +was selfwilled too and, true to the maxim that every little Irishman’s +house is his castle, he fell upon his hated rival and to such purpose +that the wouldbe assailant came to grief and (alas to relate!) the +coveted castle too. Needless to say the cries of discomfited Master +Tommy drew the attention of the girl friends. + +—Come here, Tommy, his sister called imperatively. At once! And you, +Jacky, for shame to throw poor Tommy in the dirty sand. Wait till I +catch you for that. + +His eyes misty with unshed tears Master Tommy came at her call for +their big sister’s word was law with the twins. And in a sad plight he +was too after his misadventure. His little man-o’-war top and +unmentionables were full of sand but Cissy was a past mistress in the +art of smoothing over life’s tiny troubles and very quickly not one +speck of sand was to be seen on his smart little suit. Still the blue +eyes were glistening with hot tears that would well up so she kissed +away the hurtness and shook her hand at Master Jacky the culprit and +said if she was near him she wouldn’t be far from him, her eyes dancing +in admonition. + +—Nasty bold Jacky! she cried. + +She put an arm round the little mariner and coaxed winningly: + +—What’s your name? Butter and cream? + +—Tell us who is your sweetheart, spoke Edy Boardman. Is Cissy your +sweetheart? + +—Nao, tearful Tommy said. + +—Is Edy Boardman your sweetheart? Cissy queried. + +—Nao, Tommy said. + +—I know, Edy Boardman said none too amiably with an arch glance from +her shortsighted eyes. I know who is Tommy’s sweetheart. Gerty is +Tommy’s sweetheart. + +—Nao, Tommy said on the verge of tears. + +Cissy’s quick motherwit guessed what was amiss and she whispered to Edy +Boardman to take him there behind the pushcar where the gentleman +couldn’t see and to mind he didn’t wet his new tan shoes. + +But who was Gerty? + +Gerty MacDowell who was seated near her companions, lost in thought, +gazing far away into the distance was, in very truth, as fair a +specimen of winsome Irish girlhood as one could wish to see. She was +pronounced beautiful by all who knew her though, as folks often said, +she was more a Giltrap than a MacDowell. Her figure was slight and +graceful, inclining even to fragility but those iron jelloids she had +been taking of late had done her a world of good much better than the +Widow Welch’s female pills and she was much better of those discharges +she used to get and that tired feeling. The waxen pallor of her face +was almost spiritual in its ivorylike purity though her rosebud mouth +was a genuine Cupid’s bow, Greekly perfect. Her hands were of finely +veined alabaster with tapering fingers and as white as lemonjuice and +queen of ointments could make them though it was not true that she used +to wear kid gloves in bed or take a milk footbath either. Bertha Supple +told that once to Edy Boardman, a deliberate lie, when she was black +out at daggers drawn with Gerty (the girl chums had of course their +little tiffs from time to time like the rest of mortals) and she told +her not to let on whatever she did that it was her that told her or +she’d never speak to her again. No. Honour where honour is due. There +was an innate refinement, a languid queenly _hauteur_ about Gerty which +was unmistakably evidenced in her delicate hands and higharched instep. +Had kind fate but willed her to be born a gentlewoman of high degree in +her own right and had she only received the benefit of a good education +Gerty MacDowell might easily have held her own beside any lady in the +land and have seen herself exquisitely gowned with jewels on her brow +and patrician suitors at her feet vying with one another to pay their +devoirs to her. Mayhap it was this, the love that might have been, that +lent to her softlyfeatured face at whiles a look, tense with suppressed +meaning, that imparted a strange yearning tendency to the beautiful +eyes, a charm few could resist. Why have women such eyes of witchery? +Gerty’s were of the bluest Irish blue, set off by lustrous lashes and +dark expressive brows. Time was when those brows were not so silkily +seductive. It was Madame Vera Verity, directress of the Woman Beautiful +page of the Princess Novelette, who had first advised her to try +eyebrowleine which gave that haunting expression to the eyes, so +becoming in leaders of fashion, and she had never regretted it. Then +there was blushing scientifically cured and how to be tall increase +your height and you have a beautiful face but your nose? That would +suit Mrs Dignam because she had a button one. But Gerty’s crowning +glory was her wealth of wonderful hair. It was dark brown with a +natural wave in it. She had cut it that very morning on account of the +new moon and it nestled about her pretty head in a profusion of +luxuriant clusters and pared her nails too, Thursday for wealth. And +just now at Edy’s words as a telltale flush, delicate as the faintest +rosebloom, crept into her cheeks she looked so lovely in her sweet +girlish shyness that of a surety God’s fair land of Ireland did not +hold her equal. + +For an instant she was silent with rather sad downcast eyes. She was +about to retort but something checked the words on her tongue. +Inclination prompted her to speak out: dignity told her to be silent. +The pretty lips pouted awhile but then she glanced up and broke out +into a joyous little laugh which had in it all the freshness of a young +May morning. She knew right well, no-one better, what made squinty Edy +say that because of him cooling in his attentions when it was simply a +lovers’ quarrel. As per usual somebody’s nose was out of joint about +the boy that had the bicycle off the London bridge road always riding +up and down in front of her window. Only now his father kept him in in +the evenings studying hard to get an exhibition in the intermediate +that was on and he was going to go to Trinity college to study for a +doctor when he left the high school like his brother W. E. Wylie who +was racing in the bicycle races in Trinity college university. Little +recked he perhaps for what she felt, that dull aching void in her heart +sometimes, piercing to the core. Yet he was young and perchance he +might learn to love her in time. They were protestants in his family +and of course Gerty knew Who came first and after Him the Blessed +Virgin and then Saint Joseph. But he was undeniably handsome with an +exquisite nose and he was what he looked, every inch a gentleman, the +shape of his head too at the back without his cap on that she would +know anywhere something off the common and the way he turned the +bicycle at the lamp with his hands off the bars and also the nice +perfume of those good cigarettes and besides they were both of a size +too he and she and that was why Edy Boardman thought she was so +frightfully clever because he didn’t go and ride up and down in front +of her bit of a garden. + +Gerty was dressed simply but with the instinctive taste of a votary of +Dame Fashion for she felt that there was just a might that he might be +out. A neat blouse of electric blue selftinted by dolly dyes (because +it was expected in the _Lady’s Pictorial_ that electric blue would be +worn) with a smart vee opening down to the division and kerchief pocket +(in which she always kept a piece of cottonwool scented with her +favourite perfume because the handkerchief spoiled the sit) and a navy +threequarter skirt cut to the stride showed off her slim graceful +figure to perfection. She wore a coquettish little love of a hat of +wideleaved nigger straw contrast trimmed with an underbrim of eggblue +chenille and at the side a butterfly bow of silk to tone. All Tuesday +week afternoon she was hunting to match that chenille but at last she +found what she wanted at Clery’s summer sales, the very it, slightly +shopsoiled but you would never notice, seven fingers two and a penny. +She did it up all by herself and what joy was hers when she tried it on +then, smiling at the lovely reflection which the mirror gave back to +her! And when she put it on the waterjug to keep the shape she knew +that that would take the shine out of some people she knew. Her shoes +were the newest thing in footwear (Edy Boardman prided herself that she +was very _petite_ but she never had a foot like Gerty MacDowell, a +five, and never would ash, oak or elm) with patent toecaps and just one +smart buckle over her higharched instep. Her wellturned ankle displayed +its perfect proportions beneath her skirt and just the proper amount +and no more of her shapely limbs encased in finespun hose with +highspliced heels and wide garter tops. As for undies they were Gerty’s +chief care and who that knows the fluttering hopes and fears of sweet +seventeen (though Gerty would never see seventeen again) can find it in +his heart to blame her? She had four dinky sets with awfully pretty +stitchery, three garments and nighties extra, and each set slotted with +different coloured ribbons, rosepink, pale blue, mauve and peagreen, +and she aired them herself and blued them when they came home from the +wash and ironed them and she had a brickbat to keep the iron on because +she wouldn’t trust those washerwomen as far as she’d see them scorching +the things. She was wearing the blue for luck, hoping against hope, her +own colour and lucky too for a bride to have a bit of blue somewhere on +her because the green she wore that day week brought grief because his +father brought him in to study for the intermediate exhibition and +because she thought perhaps he might be out because when she was +dressing that morning she nearly slipped up the old pair on her inside +out and that was for luck and lovers’ meeting if you put those things +on inside out or if they got untied that he was thinking about you so +long as it wasn’t of a Friday. + +And yet and yet! That strained look on her face! A gnawing sorrow is +there all the time. Her very soul is in her eyes and she would give +worlds to be in the privacy of her own familiar chamber where, giving +way to tears, she could have a good cry and relieve her pentup feelings +though not too much because she knew how to cry nicely before the +mirror. You are lovely, Gerty, it said. The paly light of evening falls +upon a face infinitely sad and wistful. Gerty MacDowell yearns in vain. +Yes, she had known from the very first that her daydream of a marriage +has been arranged and the weddingbells ringing for Mrs Reggy Wylie T. +C. D. (because the one who married the elder brother would be Mrs +Wylie) and in the fashionable intelligence Mrs Gertrude Wylie was +wearing a sumptuous confection of grey trimmed with expensive blue fox +was not to be. He was too young to understand. He would not believe in +love, a woman’s birthright. The night of the party long ago in Stoer’s +(he was still in short trousers) when they were alone and he stole an +arm round her waist she went white to the very lips. He called her +little one in a strangely husky voice and snatched a half kiss (the +first!) but it was only the end of her nose and then he hastened from +the room with a remark about refreshments. Impetuous fellow! Strength +of character had never been Reggy Wylie’s strong point and he who would +woo and win Gerty MacDowell must be a man among men. But waiting, +always waiting to be asked and it was leap year too and would soon be +over. No prince charming is her beau ideal to lay a rare and wondrous +love at her feet but rather a manly man with a strong quiet face who +had not found his ideal, perhaps his hair slightly flecked with grey, +and who would understand, take her in his sheltering arms, strain her +to him in all the strength of his deep passionate nature and comfort +her with a long long kiss. It would be like heaven. For such a one she +yearns this balmy summer eve. With all the heart of her she longs to be +his only, his affianced bride for riches for poor, in sickness in +health, till death us two part, from this to this day forward. + +And while Edy Boardman was with little Tommy behind the pushcar she was +just thinking would the day ever come when she could call herself his +little wife to be. Then they could talk about her till they went blue +in the face, Bertha Supple too, and Edy, little spitfire, because she +would be twentytwo in November. She would care for him with creature +comforts too for Gerty was womanly wise and knew that a mere man liked +that feeling of hominess. Her griddlecakes done to a goldenbrown hue +and queen Ann’s pudding of delightful creaminess had won golden +opinions from all because she had a lucky hand also for lighting a +fire, dredge in the fine selfraising flour and always stir in the same +direction, then cream the milk and sugar and whisk well the white of +eggs though she didn’t like the eating part when there were any people +that made her shy and often she wondered why you couldn’t eat something +poetical like violets or roses and they would have a beautifully +appointed drawingroom with pictures and engravings and the photograph +of grandpapa Giltrap’s lovely dog Garryowen that almost talked it was +so human and chintz covers for the chairs and that silver toastrack in +Clery’s summer jumble sales like they have in rich houses. He would be +tall with broad shoulders (she had always admired tall men for a +husband) with glistening white teeth under his carefully trimmed +sweeping moustache and they would go on the continent for their +honeymoon (three wonderful weeks!) and then, when they settled down in +a nice snug and cosy little homely house, every morning they would both +have brekky, simple but perfectly served, for their own two selves and +before he went out to business he would give his dear little wifey a +good hearty hug and gaze for a moment deep down into her eyes. + +Edy Boardman asked Tommy Caffrey was he done and he said yes so then +she buttoned up his little knickerbockers for him and told him to run +off and play with Jacky and to be good now and not to fight. But Tommy +said he wanted the ball and Edy told him no that baby was playing with +the ball and if he took it there’d be wigs on the green but Tommy said +it was his ball and he wanted his ball and he pranced on the ground, if +you please. The temper of him! O, he was a man already was little Tommy +Caffrey since he was out of pinnies. Edy told him no, no and to be off +now with him and she told Cissy Caffrey not to give in to him. + +—You’re not my sister, naughty Tommy said. It’s my ball. + +But Cissy Caffrey told baby Boardman to look up, look up high at her +finger and she snatched the ball quickly and threw it along the sand +and Tommy after it in full career, having won the day. + +—Anything for a quiet life, laughed Ciss. + +And she tickled tiny tot’s two cheeks to make him forget and played +here’s the lord mayor, here’s his two horses, here’s his gingerbread +carriage and here he walks in, chinchopper, chinchopper, chinchopper +chin. But Edy got as cross as two sticks about him getting his own way +like that from everyone always petting him. + +—I’d like to give him something, she said, so I would, where I won’t +say. + +—On the beeoteetom, laughed Cissy merrily. + +Gerty MacDowell bent down her head and crimsoned at the idea of Cissy +saying an unladylike thing like that out loud she’d be ashamed of her +life to say, flushing a deep rosy red, and Edy Boardman said she was +sure the gentleman opposite heard what she said. But not a pin cared +Ciss. + +—Let him! she said with a pert toss of her head and a piquant tilt of +her nose. Give it to him too on the same place as quick as I’d look at +him. + +Madcap Ciss with her golliwog curls. You had to laugh at her sometimes. +For instance when she asked you would you have some more Chinese tea +and jaspberry ram and when she drew the jugs too and the men’s faces on +her nails with red ink make you split your sides or when she wanted to +go where you know she said she wanted to run and pay a visit to the +Miss White. That was just like Cissycums. O, and will you ever forget +her the evening she dressed up in her father’s suit and hat and the +burned cork moustache and walked down Tritonville road, smoking a +cigarette. There was none to come up to her for fun. But she was +sincerity itself, one of the bravest and truest hearts heaven ever +made, not one of your twofaced things, too sweet to be wholesome. + +And then there came out upon the air the sound of voices and the +pealing anthem of the organ. It was the men’s temperance retreat +conducted by the missioner, the reverend John Hughes S. J., rosary, +sermon and benediction of the Most Blessed Sacrament. They were there +gathered together without distinction of social class (and a most +edifying spectacle it was to see) in that simple fane beside the waves, +after the storms of this weary world, kneeling before the feet of the +immaculate, reciting the litany of Our Lady of Loreto, beseeching her +to intercede for them, the old familiar words, holy Mary, holy virgin +of virgins. How sad to poor Gerty’s ears! Had her father only avoided +the clutches of the demon drink, by taking the pledge or those powders +the drink habit cured in Pearson’s Weekly, she might now be rolling in +her carriage, second to none. Over and over had she told herself that +as she mused by the dying embers in a brown study without the lamp +because she hated two lights or oftentimes gazing out of the window +dreamily by the hour at the rain falling on the rusty bucket, thinking. +But that vile decoction which has ruined so many hearths and homes had +cast its shadow over her childhood days. Nay, she had even witnessed in +the home circle deeds of violence caused by intemperance and had seen +her own father, a prey to the fumes of intoxication, forget himself +completely for if there was one thing of all things that Gerty knew it +was that the man who lifts his hand to a woman save in the way of +kindness, deserves to be branded as the lowest of the low. + +And still the voices sang in supplication to the Virgin most powerful, +Virgin most merciful. And Gerty, rapt in thought, scarce saw or heard +her companions or the twins at their boyish gambols or the gentleman +off Sandymount green that Cissy Caffrey called the man that was so like +himself passing along the strand taking a short walk. You never saw him +any way screwed but still and for all that she would not like him for a +father because he was too old or something or on account of his face +(it was a palpable case of Doctor Fell) or his carbuncly nose with the +pimples on it and his sandy moustache a bit white under his nose. Poor +father! With all his faults she loved him still when he sang _Tell me, +Mary, how to woo thee_ or _My love and cottage near Rochelle_ and they +had stewed cockles and lettuce with Lazenby’s salad dressing for supper +and when he sang _The moon hath raised_ with Mr Dignam that died +suddenly and was buried, God have mercy on him, from a stroke. Her +mother’s birthday that was and Charley was home on his holidays and Tom +and Mr Dignam and Mrs and Patsy and Freddy Dignam and they were to have +had a group taken. No-one would have thought the end was so near. Now +he was laid to rest. And her mother said to him to let that be a +warning to him for the rest of his days and he couldn’t even go to the +funeral on account of the gout and she had to go into town to bring him +the letters and samples from his office about Catesby’s cork lino, +artistic, standard designs, fit for a palace, gives tiptop wear and +always bright and cheery in the home. + +A sterling good daughter was Gerty just like a second mother in the +house, a ministering angel too with a little heart worth its weight in +gold. And when her mother had those raging splitting headaches who was +it rubbed the menthol cone on her forehead but Gerty though she didn’t +like her mother’s taking pinches of snuff and that was the only single +thing they ever had words about, taking snuff. Everyone thought the +world of her for her gentle ways. It was Gerty who turned off the gas +at the main every night and it was Gerty who tacked up on the wall of +that place where she never forgot every fortnight the chlorate of lime +Mr Tunney the grocer’s christmas almanac, the picture of halcyon days +where a young gentleman in the costume they used to wear then with a +threecornered hat was offering a bunch of flowers to his ladylove with +oldtime chivalry through her lattice window. You could see there was a +story behind it. The colours were done something lovely. She was in a +soft clinging white in a studied attitude and the gentleman was in +chocolate and he looked a thorough aristocrat. She often looked at them +dreamily when she went there for a certain purpose and felt her own +arms that were white and soft just like hers with the sleeves back and +thought about those times because she had found out in Walker’s +pronouncing dictionary that belonged to grandpapa Giltrap about the +halcyon days what they meant. + +The twins were now playing in the most approved brotherly fashion till +at last Master Jacky who was really as bold as brass there was no +getting behind that deliberately kicked the ball as hard as ever he +could down towards the seaweedy rocks. Needless to say poor Tommy was +not slow to voice his dismay but luckily the gentleman in black who was +sitting there by himself came gallantly to the rescue and intercepted +the ball. Our two champions claimed their plaything with lusty cries +and to avoid trouble Cissy Caffrey called to the gentleman to throw it +to her please. The gentleman aimed the ball once or twice and then +threw it up the strand towards Cissy Caffrey but it rolled down the +slope and stopped right under Gerty’s skirt near the little pool by the +rock. The twins clamoured again for it and Cissy told her to kick it +away and let them fight for it so Gerty drew back her foot but she +wished their stupid ball hadn’t come rolling down to her and she gave a +kick but she missed and Edy and Cissy laughed. + +—If you fail try again, Edy Boardman said. + +Gerty smiled assent and bit her lip. A delicate pink crept into her +pretty cheek but she was determined to let them see so she just lifted +her skirt a little but just enough and took good aim and gave the ball +a jolly good kick and it went ever so far and the two twins after it +down towards the shingle. Pure jealousy of course it was nothing else +to draw attention on account of the gentleman opposite looking. She +felt the warm flush, a danger signal always with Gerty MacDowell, +surging and flaming into her cheeks. Till then they had only exchanged +glances of the most casual but now under the brim of her new hat she +ventured a look at him and the face that met her gaze there in the +twilight, wan and strangely drawn, seemed to her the saddest she had +ever seen. + +Through the open window of the church the fragrant incense was wafted +and with it the fragrant names of her who was conceived without stain +of original sin, spiritual vessel, pray for us, honourable vessel, pray +for us, vessel of singular devotion, pray for us, mystical rose. And +careworn hearts were there and toilers for their daily bread and many +who had erred and wandered, their eyes wet with contrition but for all +that bright with hope for the reverend father Father Hughes had told +them what the great saint Bernard said in his famous prayer of Mary, +the most pious Virgin’s intercessory power that it was not recorded in +any age that those who implored her powerful protection were ever +abandoned by her. + +The twins were now playing again right merrily for the troubles of +childhood are but as fleeting summer showers. Cissy Caffrey played with +baby Boardman till he crowed with glee, clapping baby hands in air. +Peep she cried behind the hood of the pushcar and Edy asked where was +Cissy gone and then Cissy popped up her head and cried ah! and, my +word, didn’t the little chap enjoy that! And then she told him to say +papa. + +—Say papa, baby. Say pa pa pa pa pa pa pa. + +And baby did his level best to say it for he was very intelligent for +eleven months everyone said and big for his age and the picture of +health, a perfect little bunch of love, and he would certainly turn out +to be something great, they said. + +—Haja ja ja haja. + +Cissy wiped his little mouth with the dribbling bib and wanted him to +sit up properly and say pa pa pa but when she undid the strap she cried +out, holy saint Denis, that he was possing wet and to double the half +blanket the other way under him. Of course his infant majesty was most +obstreperous at such toilet formalities and he let everyone know it: + +—Habaa baaaahabaaa baaaa. + +And two great big lovely big tears coursing down his cheeks. It was all +no use soothering him with no, nono, baby, no and telling him about the +geegee and where was the puffpuff but Ciss, always readywitted, gave +him in his mouth the teat of the suckingbottle and the young heathen +was quickly appeased. + +Gerty wished to goodness they would take their squalling baby home out +of that and not get on her nerves, no hour to be out, and the little +brats of twins. She gazed out towards the distant sea. It was like the +paintings that man used to do on the pavement with all the coloured +chalks and such a pity too leaving them there to be all blotted out, +the evening and the clouds coming out and the Bailey light on Howth and +to hear the music like that and the perfume of those incense they +burned in the church like a kind of waft. And while she gazed her heart +went pitapat. Yes, it was her he was looking at, and there was meaning +in his look. His eyes burned into her as though they would search her +through and through, read her very soul. Wonderful eyes they were, +superbly expressive, but could you trust them? People were so queer. +She could see at once by his dark eyes and his pale intellectual face +that he was a foreigner, the image of the photo she had of Martin +Harvey, the matinee idol, only for the moustache which she preferred +because she wasn’t stagestruck like Winny Rippingham that wanted they +two to always dress the same on account of a play but she could not see +whether he had an aquiline nose or a slightly _retroussé_ from where he +was sitting. He was in deep mourning, she could see that, and the story +of a haunting sorrow was written on his face. She would have given +worlds to know what it was. He was looking up so intently, so still, +and he saw her kick the ball and perhaps he could see the bright steel +buckles of her shoes if she swung them like that thoughtfully with the +toes down. She was glad that something told her to put on the +transparent stockings thinking Reggy Wylie might be out but that was +far away. Here was that of which she had so often dreamed. It was he +who mattered and there was joy on her face because she wanted him +because she felt instinctively that he was like no-one else. The very +heart of the girlwoman went out to him, her dreamhusband, because she +knew on the instant it was him. If he had suffered, more sinned against +than sinning, or even, even, if he had been himself a sinner, a wicked +man, she cared not. Even if he was a protestant or methodist she could +convert him easily if he truly loved her. There were wounds that wanted +healing with heartbalm. She was a womanly woman not like other flighty +girls unfeminine he had known, those cyclists showing off what they +hadn’t got and she just yearned to know all, to forgive all if she +could make him fall in love with her, make him forget the memory of the +past. Then mayhap he would embrace her gently, like a real man, +crushing her soft body to him, and love her, his ownest girlie, for +herself alone. + +Refuge of sinners. Comfortress of the afflicted. _Ora pro nobis_. Well +has it been said that whosoever prays to her with faith and constancy +can never be lost or cast away: and fitly is she too a haven of refuge +for the afflicted because of the seven dolours which transpierced her +own heart. Gerty could picture the whole scene in the church, the +stained glass windows lighted up, the candles, the flowers and the blue +banners of the blessed Virgin’s sodality and Father Conroy was helping +Canon O’Hanlon at the altar, carrying things in and out with his eyes +cast down. He looked almost a saint and his confessionbox was so quiet +and clean and dark and his hands were just like white wax and if ever +she became a Dominican nun in their white habit perhaps he might come +to the convent for the novena of Saint Dominic. He told her that time +when she told him about that in confession, crimsoning up to the roots +of her hair for fear he could see, not to be troubled because that was +only the voice of nature and we were all subject to nature’s laws, he +said, in this life and that that was no sin because that came from the +nature of woman instituted by God, he said, and that Our Blessed Lady +herself said to the archangel Gabriel be it done unto me according to +Thy Word. He was so kind and holy and often and often she thought and +thought could she work a ruched teacosy with embroidered floral design +for him as a present or a clock but they had a clock she noticed on the +mantelpiece white and gold with a canarybird that came out of a little +house to tell the time the day she went there about the flowers for the +forty hours’ adoration because it was hard to know what sort of a +present to give or perhaps an album of illuminated views of Dublin or +some place. + +The exasperating little brats of twins began to quarrel again and Jacky +threw the ball out towards the sea and they both ran after it. Little +monkeys common as ditchwater. Someone ought to take them and give them +a good hiding for themselves to keep them in their places, the both of +them. And Cissy and Edy shouted after them to come back because they +were afraid the tide might come in on them and be drowned. + +—Jacky! Tommy! + +Not they! What a great notion they had! So Cissy said it was the very +last time she’d ever bring them out. She jumped up and called them and +she ran down the slope past him, tossing her hair behind her which had +a good enough colour if there had been more of it but with all the +thingamerry she was always rubbing into it she couldn’t get it to grow +long because it wasn’t natural so she could just go and throw her hat +at it. She ran with long gandery strides it was a wonder she didn’t rip +up her skirt at the side that was too tight on her because there was a +lot of the tomboy about Cissy Caffrey and she was a forward piece +whenever she thought she had a good opportunity to show off and just +because she was a good runner she ran like that so that he could see +all the end of her petticoat running and her skinny shanks up as far as +possible. It would have served her just right if she had tripped up +over something accidentally on purpose with her high crooked French +heels on her to make her look tall and got a fine tumble. _Tableau!_ +That would have been a very charming exposé for a gentleman like that +to witness. + +Queen of angels, queen of patriarchs, queen of prophets, of all saints, +they prayed, queen of the most holy rosary and then Father Conroy +handed the thurible to Canon O’Hanlon and he put in the incense and +censed the Blessed Sacrament and Cissy Caffrey caught the two twins and +she was itching to give them a ringing good clip on the ear but she +didn’t because she thought he might be watching but she never made a +bigger mistake in all her life because Gerty could see without looking +that he never took his eyes off of her and then Canon O’Hanlon handed +the thurible back to Father Conroy and knelt down looking up at the +Blessed Sacrament and the choir began to sing the _Tantum ergo_ and she +just swung her foot in and out in time as the music rose and fell to +the _Tantumer gosa cramen tum_. Three and eleven she paid for those +stockings in Sparrow’s of George’s street on the Tuesday, no the Monday +before Easter and there wasn’t a brack on them and that was what he was +looking at, transparent, and not at her insignificant ones that had +neither shape nor form (the cheek of her!) because he had eyes in his +head to see the difference for himself. + +Cissy came up along the strand with the two twins and their ball with +her hat anyhow on her to one side after her run and she did look a +streel tugging the two kids along with the flimsy blouse she bought +only a fortnight before like a rag on her back and a bit of her +petticoat hanging like a caricature. Gerty just took off her hat for a +moment to settle her hair and a prettier, a daintier head of nutbrown +tresses was never seen on a girl’s shoulders—a radiant little vision, +in sooth, almost maddening in its sweetness. You would have to travel +many a long mile before you found a head of hair the like of that. She +could almost see the swift answering flash of admiration in his eyes +that set her tingling in every nerve. She put on her hat so that she +could see from underneath the brim and swung her buckled shoe faster +for her breath caught as she caught the expression in his eyes. He was +eying her as a snake eyes its prey. Her woman’s instinct told her that +she had raised the devil in him and at the thought a burning scarlet +swept from throat to brow till the lovely colour of her face became a +glorious rose. + +Edy Boardman was noticing it too because she was squinting at Gerty, +half smiling, with her specs like an old maid, pretending to nurse the +baby. Irritable little gnat she was and always would be and that was +why no-one could get on with her poking her nose into what was no +concern of hers. And she said to Gerty: + +—A penny for your thoughts. + +—What? replied Gerty with a smile reinforced by the whitest of teeth. I +was only wondering was it late. + +Because she wished to goodness they’d take the snottynosed twins and +their babby home to the mischief out of that so that was why she just +gave a gentle hint about its being late. And when Cissy came up Edy +asked her the time and Miss Cissy, as glib as you like, said it was +half past kissing time, time to kiss again. But Edy wanted to know +because they were told to be in early. + +—Wait, said Cissy, I’ll run ask my uncle Peter over there what’s the +time by his conundrum. + +So over she went and when he saw her coming she could see him take his +hand out of his pocket, getting nervous, and beginning to play with his +watchchain, looking up at the church. Passionate nature though he was +Gerty could see that he had enormous control over himself. One moment +he had been there, fascinated by a loveliness that made him gaze, and +the next moment it was the quiet gravefaced gentleman, selfcontrol +expressed in every line of his distinguishedlooking figure. + +Cissy said to excuse her would he mind please telling her what was the +right time and Gerty could see him taking out his watch, listening to +it and looking up and clearing his throat and he said he was very sorry +his watch was stopped but he thought it must be after eight because the +sun was set. His voice had a cultured ring in it and though he spoke in +measured accents there was a suspicion of a quiver in the mellow tones. +Cissy said thanks and came back with her tongue out and said uncle said +his waterworks were out of order. + +Then they sang the second verse of the _Tantum ergo_ and Canon O’Hanlon +got up again and censed the Blessed Sacrament and knelt down and he +told Father Conroy that one of the candles was just going to set fire +to the flowers and Father Conroy got up and settled it all right and +she could see the gentleman winding his watch and listening to the +works and she swung her leg more in and out in time. It was getting +darker but he could see and he was looking all the time that he was +winding the watch or whatever he was doing to it and then he put it +back and put his hands back into his pockets. She felt a kind of a +sensation rushing all over her and she knew by the feel of her scalp +and that irritation against her stays that that thing must be coming on +because the last time too was when she clipped her hair on account of +the moon. His dark eyes fixed themselves on her again drinking in her +every contour, literally worshipping at her shrine. If ever there was +undisguised admiration in a man’s passionate gaze it was there plain to +be seen on that man’s face. It is for you, Gertrude MacDowell, and you +know it. + +Edy began to get ready to go and it was high time for her and Gerty +noticed that that little hint she gave had had the desired effect +because it was a long way along the strand to where there was the place +to push up the pushcar and Cissy took off the twins’ caps and tidied +their hair to make herself attractive of course and Canon O’Hanlon +stood up with his cope poking up at his neck and Father Conroy handed +him the card to read off and he read out _Panem de coelo praestitisti +eis_ and Edy and Cissy were talking about the time all the time and +asking her but Gerty could pay them back in their own coin and she just +answered with scathing politeness when Edy asked her was she +heartbroken about her best boy throwing her over. Gerty winced sharply. +A brief cold blaze shone from her eyes that spoke volumes of scorn +immeasurable. It hurt—O yes, it cut deep because Edy had her own quiet +way of saying things like that she knew would wound like the confounded +little cat she was. Gerty’s lips parted swiftly to frame the word but +she fought back the sob that rose to her throat, so slim, so flawless, +so beautifully moulded it seemed one an artist might have dreamed of. +She had loved him better than he knew. Lighthearted deceiver and fickle +like all his sex he would never understand what he had meant to her and +for an instant there was in the blue eyes a quick stinging of tears. +Their eyes were probing her mercilessly but with a brave effort she +sparkled back in sympathy as she glanced at her new conquest for them +to see. + +—O, responded Gerty, quick as lightning, laughing, and the proud head +flashed up. I can throw my cap at who I like because it’s leap year. + +Her words rang out crystalclear, more musical than the cooing of the +ringdove, but they cut the silence icily. There was that in her young +voice that told that she was not a one to be lightly trifled with. As +for Mr Reggy with his swank and his bit of money she could just chuck +him aside as if he was so much filth and never again would she cast as +much as a second thought on him and tear his silly postcard into a +dozen pieces. And if ever after he dared to presume she could give him +one look of measured scorn that would make him shrivel up on the spot. +Miss puny little Edy’s countenance fell to no slight extent and Gerty +could see by her looking as black as thunder that she was simply in a +towering rage though she hid it, the little kinnatt, because that shaft +had struck home for her petty jealousy and they both knew that she was +something aloof, apart, in another sphere, that she was not of them and +never would be and there was somebody else too that knew it and saw it +so they could put that in their pipe and smoke it. + +Edy straightened up baby Boardman to get ready to go and Cissy tucked +in the ball and the spades and buckets and it was high time too because +the sandman was on his way for Master Boardman junior. And Cissy told +him too that billy winks was coming and that baby was to go deedaw and +baby looked just too ducky, laughing up out of his gleeful eyes, and +Cissy poked him like that out of fun in his wee fat tummy and baby, +without as much as by your leave, sent up his compliments to all and +sundry on to his brandnew dribbling bib. + +—O my! Puddeny pie! protested Ciss. He has his bib destroyed. + +The slight _contretemps_ claimed her attention but in two twos she set +that little matter to rights. + +Gerty stifled a smothered exclamation and gave a nervous cough and Edy +asked what and she was just going to tell her to catch it while it was +flying but she was ever ladylike in her deportment so she simply passed +it off with consummate tact by saying that that was the benediction +because just then the bell rang out from the steeple over the quiet +seashore because Canon O’Hanlon was up on the altar with the veil that +Father Conroy put round his shoulders giving the benediction with the +Blessed Sacrament in his hands. + +How moving the scene there in the gathering twilight, the last glimpse +of Erin, the touching chime of those evening bells and at the same time +a bat flew forth from the ivied belfry through the dusk, hither, +thither, with a tiny lost cry. And she could see far away the lights of +the lighthouses so picturesque she would have loved to do with a box of +paints because it was easier than to make a man and soon the +lamplighter would be going his rounds past the presbyterian church +grounds and along by shady Tritonville avenue where the couples walked +and lighting the lamp near her window where Reggy Wylie used to turn +his freewheel like she read in that book _The Lamplighter_ by Miss +Cummins, author of _Mabel Vaughan_ and other tales. For Gerty had her +dreams that no-one knew of. She loved to read poetry and when she got a +keepsake from Bertha Supple of that lovely confession album with the +coralpink cover to write her thoughts in she laid it in the drawer of +her toilettable which, though it did not err on the side of luxury, was +scrupulously neat and clean. It was there she kept her girlish treasure +trove, the tortoiseshell combs, her child of Mary badge, the whiterose +scent, the eyebrowleine, her alabaster pouncetbox and the ribbons to +change when her things came home from the wash and there were some +beautiful thoughts written in it in violet ink that she bought in +Hely’s of Dame Street for she felt that she too could write poetry if +she could only express herself like that poem that appealed to her so +deeply that she had copied out of the newspaper she found one evening +round the potherbs. _Art thou real, my ideal?_ it was called by Louis J +Walsh, Magherafelt, and after there was something about _twilight, wilt +thou ever?_ and ofttimes the beauty of poetry, so sad in its transient +loveliness, had misted her eyes with silent tears for she felt that the +years were slipping by for her, one by one, and but for that one +shortcoming she knew she need fear no competition and that was an +accident coming down Dalkey hill and she always tried to conceal it. +But it must end, she felt. If she saw that magic lure in his eyes there +would be no holding back for her. Love laughs at locksmiths. She would +make the great sacrifice. Her every effort would be to share his +thoughts. Dearer than the whole world would she be to him and gild his +days with happiness. There was the allimportant question and she was +dying to know was he a married man or a widower who had lost his wife +or some tragedy like the nobleman with the foreign name from the land +of song had to have her put into a madhouse, cruel only to be kind. But +even if—what then? Would it make a very great difference? From +everything in the least indelicate her finebred nature instinctively +recoiled. She loathed that sort of person, the fallen women off the +accommodation walk beside the Dodder that went with the soldiers and +coarse men with no respect for a girl’s honour, degrading the sex and +being taken up to the police station. No, no: not that. They would be +just good friends like a big brother and sister without all that other +in spite of the conventions of Society with a big ess. Perhaps it was +an old flame he was in mourning for from the days beyond recall. She +thought she understood. She would try to understand him because men +were so different. The old love was waiting, waiting with little white +hands stretched out, with blue appealing eyes. Heart of mine! She would +follow, her dream of love, the dictates of her heart that told her he +was her all in all, the only man in all the world for her for love was +the master guide. Nothing else mattered. Come what might she would be +wild, untrammelled, free. + +Canon O’Hanlon put the Blessed Sacrament back into the tabernacle and +genuflected and the choir sang _Laudate Dominum omnes gentes_ and then +he locked the tabernacle door because the benediction was over and +Father Conroy handed him his hat to put on and crosscat Edy asked +wasn’t she coming but Jacky Caffrey called out: + +—O, look, Cissy! + +And they all looked was it sheet lightning but Tommy saw it too over +the trees beside the church, blue and then green and purple. + +—It’s fireworks, Cissy Caffrey said. + +And they all ran down the strand to see over the houses and the church, +helterskelter, Edy with the pushcar with baby Boardman in it and Cissy +holding Tommy and Jacky by the hand so they wouldn’t fall running. + +—Come on, Gerty, Cissy called. It’s the bazaar fireworks. + +But Gerty was adamant. She had no intention of being at their beck and +call. If they could run like rossies she could sit so she said she +could see from where she was. The eyes that were fastened upon her set +her pulses tingling. She looked at him a moment, meeting his glance, +and a light broke in upon her. Whitehot passion was in that face, +passion silent as the grave, and it had made her his. At last they were +left alone without the others to pry and pass remarks and she knew he +could be trusted to the death, steadfast, a sterling man, a man of +inflexible honour to his fingertips. His hands and face were working +and a tremour went over her. She leaned back far to look up where the +fireworks were and she caught her knee in her hands so as not to fall +back looking up and there was no-one to see only him and her when she +revealed all her graceful beautifully shaped legs like that, supply +soft and delicately rounded, and she seemed to hear the panting of his +heart, his hoarse breathing, because she knew too about the passion of +men like that, hotblooded, because Bertha Supple told her once in dead +secret and made her swear she’d never about the gentleman lodger that +was staying with them out of the Congested Districts Board that had +pictures cut out of papers of those skirtdancers and highkickers and +she said he used to do something not very nice that you could imagine +sometimes in the bed. But this was altogether different from a thing +like that because there was all the difference because she could almost +feel him draw her face to his and the first quick hot touch of his +handsome lips. Besides there was absolution so long as you didn’t do +the other thing before being married and there ought to be women +priests that would understand without your telling out and Cissy +Caffrey too sometimes had that dreamy kind of dreamy look in her eyes +so that she too, my dear, and Winny Rippingham so mad about actors’ +photographs and besides it was on account of that other thing coming on +the way it did. + +And Jacky Caffrey shouted to look, there was another and she leaned +back and the garters were blue to match on account of the transparent +and they all saw it and they all shouted to look, look, there it was +and she leaned back ever so far to see the fireworks and something +queer was flying through the air, a soft thing, to and fro, dark. And +she saw a long Roman candle going up over the trees, up, up, and, in +the tense hush, they were all breathless with excitement as it went +higher and higher and she had to lean back more and more to look up +after it, high, high, almost out of sight, and her face was suffused +with a divine, an entrancing blush from straining back and he could see +her other things too, nainsook knickers, the fabric that caresses the +skin, better than those other pettiwidth, the green, four and eleven, +on account of being white and she let him and she saw that he saw and +then it went so high it went out of sight a moment and she was +trembling in every limb from being bent so far back that he had a full +view high up above her knee where no-one ever not even on the swing or +wading and she wasn’t ashamed and he wasn’t either to look in that +immodest way like that because he couldn’t resist the sight of the +wondrous revealment half offered like those skirtdancers behaving so +immodest before gentlemen looking and he kept on looking, looking. She +would fain have cried to him chokingly, held out her snowy slender arms +to him to come, to feel his lips laid on her white brow, the cry of a +young girl’s love, a little strangled cry, wrung from her, that cry +that has rung through the ages. And then a rocket sprang and bang shot +blind blank and O! then the Roman candle burst and it was like a sigh +of O! and everyone cried O! O! in raptures and it gushed out of it a +stream of rain gold hair threads and they shed and ah! they were all +greeny dewy stars falling with golden, O so lovely, O, soft, sweet, +soft! + +Then all melted away dewily in the grey air: all was silent. Ah! She +glanced at him as she bent forward quickly, a pathetic little glance of +piteous protest, of shy reproach under which he coloured like a girl. +He was leaning back against the rock behind. Leopold Bloom (for it is +he) stands silent, with bowed head before those young guileless eyes. +What a brute he had been! At it again? A fair unsullied soul had called +to him and, wretch that he was, how had he answered? An utter cad he +had been! He of all men! But there was an infinite store of mercy in +those eyes, for him too a word of pardon even though he had erred and +sinned and wandered. Should a girl tell? No, a thousand times no. That +was their secret, only theirs, alone in the hiding twilight and there +was none to know or tell save the little bat that flew so softly +through the evening to and fro and little bats don’t tell. + +Cissy Caffrey whistled, imitating the boys in the football field to +show what a great person she was: and then she cried: + +—Gerty! Gerty! We’re going. Come on. We can see from farther up. + +Gerty had an idea, one of love’s little ruses. She slipped a hand into +her kerchief pocket and took out the wadding and waved in reply of +course without letting him and then slipped it back. Wonder if he’s too +far to. She rose. Was it goodbye? No. She had to go but they would meet +again, there, and she would dream of that till then, tomorrow, of her +dream of yester eve. She drew herself up to her full height. Their +souls met in a last lingering glance and the eyes that reached her +heart, full of a strange shining, hung enraptured on her sweet +flowerlike face. She half smiled at him wanly, a sweet forgiving smile, +a smile that verged on tears, and then they parted. + +Slowly, without looking back she went down the uneven strand to Cissy, +to Edy to Jacky and Tommy Caffrey, to little baby Boardman. It was +darker now and there were stones and bits of wood on the strand and +slippy seaweed. She walked with a certain quiet dignity characteristic +of her but with care and very slowly because—because Gerty MacDowell +was... + +Tight boots? No. She’s lame! O! + +Mr Bloom watched her as she limped away. Poor girl! That’s why she’s +left on the shelf and the others did a sprint. Thought something was +wrong by the cut of her jib. Jilted beauty. A defect is ten times worse +in a woman. But makes them polite. Glad I didn’t know it when she was +on show. Hot little devil all the same. I wouldn’t mind. Curiosity like +a nun or a negress or a girl with glasses. That squinty one is +delicate. Near her monthlies, I expect, makes them feel ticklish. I +have such a bad headache today. Where did I put the letter? Yes, all +right. All kinds of crazy longings. Licking pennies. Girl in Tranquilla +convent that nun told me liked to smell rock oil. Virgins go mad in the +end I suppose. Sister? How many women in Dublin have it today? Martha, +she. Something in the air. That’s the moon. But then why don’t all +women menstruate at the same time with the same moon, I mean? Depends +on the time they were born I suppose. Or all start scratch then get out +of step. Sometimes Molly and Milly together. Anyhow I got the best of +that. Damned glad I didn’t do it in the bath this morning over her +silly I will punish you letter. Made up for that tramdriver this +morning. That gouger M’Coy stopping me to say nothing. And his wife +engagement in the country valise, voice like a pickaxe. Thankful for +small mercies. Cheap too. Yours for the asking. Because they want it +themselves. Their natural craving. Shoals of them every evening poured +out of offices. Reserve better. Don’t want it they throw it at you. +Catch em alive, O. Pity they can’t see themselves. A dream of +wellfilled hose. Where was that? Ah, yes. Mutoscope pictures in Capel +street: for men only. Peeping Tom. Willy’s hat and what the girls did +with it. Do they snapshot those girls or is it all a fake? _Lingerie_ +does it. Felt for the curves inside her _déshabillé._ Excites them also +when they’re. I’m all clean come and dirty me. And they like dressing +one another for the sacrifice. Milly delighted with Molly’s new blouse. +At first. Put them all on to take them all off. Molly. Why I bought her +the violet garters. Us too: the tie he wore, his lovely socks and +turnedup trousers. He wore a pair of gaiters the night that first we +met. His lovely shirt was shining beneath his what? of jet. Say a woman +loses a charm with every pin she takes out. Pinned together. O, Mairy +lost the pin of her. Dressed up to the nines for somebody. Fashion part +of their charm. Just changes when you’re on the track of the secret. +Except the east: Mary, Martha: now as then. No reasonable offer +refused. She wasn’t in a hurry either. Always off to a fellow when they +are. They never forget an appointment. Out on spec probably. They +believe in chance because like themselves. And the others inclined to +give her an odd dig. Girl friends at school, arms round each other’s +necks or with ten fingers locked, kissing and whispering secrets about +nothing in the convent garden. Nuns with whitewashed faces, cool coifs +and their rosaries going up and down, vindictive too for what they +can’t get. Barbed wire. Be sure now and write to me. And I’ll write to +you. Now won’t you? Molly and Josie Powell. Till Mr Right comes along, +then meet once in a blue moon. _Tableau!_ O, look who it is for the +love of God! How are you at all? What have you been doing with +yourself? Kiss and delighted to, kiss, to see you. Picking holes in +each other’s appearance. You’re looking splendid. Sister souls. Showing +their teeth at one another. How many have you left? Wouldn’t lend each +other a pinch of salt. + +Ah! + +Devils they are when that’s coming on them. Dark devilish appearance. +Molly often told me feel things a ton weight. Scratch the sole of my +foot. O that way! O, that’s exquisite! Feel it myself too. Good to rest +once in a way. Wonder if it’s bad to go with them then. Safe in one +way. Turns milk, makes fiddlestrings snap. Something about withering +plants I read in a garden. Besides they say if the flower withers she +wears she’s a flirt. All are. Daresay she felt I. When you feel like +that you often meet what you feel. Liked me or what? Dress they look +at. Always know a fellow courting: collars and cuffs. Well cocks and +lions do the same and stags. Same time might prefer a tie undone or +something. Trousers? Suppose I when I was? No. Gently does it. Dislike +rough and tumble. Kiss in the dark and never tell. Saw something in me. +Wonder what. Sooner have me as I am than some poet chap with +bearsgrease plastery hair, lovelock over his dexter optic. To aid +gentleman in literary. Ought to attend to my appearance my age. Didn’t +let her see me in profile. Still, you never know. Pretty girls and ugly +men marrying. Beauty and the beast. Besides I can’t be so if Molly. +Took off her hat to show her hair. Wide brim. Bought to hide her face, +meeting someone might know her, bend down or carry a bunch of flowers +to smell. Hair strong in rut. Ten bob I got for Molly’s combings when +we were on the rocks in Holles street. Why not? Suppose he gave her +money. Why not? All a prejudice. She’s worth ten, fifteen, more, a +pound. What? I think so. All that for nothing. Bold hand: Mrs Marion. +Did I forget to write address on that letter like the postcard I sent +to Flynn? And the day I went to Drimmie’s without a necktie. Wrangle +with Molly it was put me off. No, I remember. Richie Goulding: he’s +another. Weighs on his mind. Funny my watch stopped at half past four. +Dust. Shark liver oil they use to clean. Could do it myself. Save. Was +that just when he, she? + +O, he did. Into her. She did. Done. + +Ah! + +Mr Bloom with careful hand recomposed his wet shirt. O Lord, that +little limping devil. Begins to feel cold and clammy. Aftereffect not +pleasant. Still you have to get rid of it someway. They don’t care. +Complimented perhaps. Go home to nicey bread and milky and say night +prayers with the kiddies. Well, aren’t they? See her as she is spoil +all. Must have the stage setting, the rouge, costume, position, music. +The name too. _Amours_ of actresses. Nell Gwynn, Mrs Bracegirdle, Maud +Branscombe. Curtain up. Moonlight silver effulgence. Maiden discovered +with pensive bosom. Little sweetheart come and kiss me. Still, I feel. +The strength it gives a man. That’s the secret of it. Good job I let +off there behind the wall coming out of Dignam’s. Cider that was. +Otherwise I couldn’t have. Makes you want to sing after. _Lacaus esant +taratara_. Suppose I spoke to her. What about? Bad plan however if you +don’t know how to end the conversation. Ask them a question they ask +you another. Good idea if you’re stuck. Gain time. But then you’re in a +cart. Wonderful of course if you say: good evening, and you see she’s +on for it: good evening. O but the dark evening in the Appian way I +nearly spoke to Mrs Clinch O thinking she was. Whew! Girl in Meath +street that night. All the dirty things I made her say. All wrong of +course. My arks she called it. It’s so hard to find one who. Aho! If +you don’t answer when they solicit must be horrible for them till they +harden. And kissed my hand when I gave her the extra two shillings. +Parrots. Press the button and the bird will squeak. Wish she hadn’t +called me sir. O, her mouth in the dark! And you a married man with a +single girl! That’s what they enjoy. Taking a man from another woman. +Or even hear of it. Different with me. Glad to get away from other +chap’s wife. Eating off his cold plate. Chap in the Burton today +spitting back gumchewed gristle. French letter still in my pocketbook. +Cause of half the trouble. But might happen sometime, I don’t think. +Come in, all is prepared. I dreamt. What? Worst is beginning. How they +change the venue when it’s not what they like. Ask you do you like +mushrooms because she once knew a gentleman who. Or ask you what +someone was going to say when he changed his mind and stopped. Yet if I +went the whole hog, say: I want to, something like that. Because I did. +She too. Offend her. Then make it up. Pretend to want something +awfully, then cry off for her sake. Flatters them. She must have been +thinking of someone else all the time. What harm? Must since she came +to the use of reason, he, he and he. First kiss does the trick. The +propitious moment. Something inside them goes pop. Mushy like, tell by +their eye, on the sly. First thoughts are best. Remember that till +their dying day. Molly, lieutenant Mulvey that kissed her under the +Moorish wall beside the gardens. Fifteen she told me. But her breasts +were developed. Fell asleep then. After Glencree dinner that was when +we drove home. Featherbed mountain. Gnashing her teeth in sleep. Lord +mayor had his eye on her too. Val Dillon. Apoplectic. + +There she is with them down there for the fireworks. My fireworks. Up +like a rocket, down like a stick. And the children, twins they must be, +waiting for something to happen. Want to be grownups. Dressing in +mother’s clothes. Time enough, understand all the ways of the world. +And the dark one with the mop head and the nigger mouth. I knew she +could whistle. Mouth made for that. Like Molly. Why that highclass +whore in Jammet’s wore her veil only to her nose. Would you mind, +please, telling me the right time? I’ll tell you the right time up a +dark lane. Say prunes and prisms forty times every morning, cure for +fat lips. Caressing the little boy too. Onlookers see most of the game. +Of course they understand birds, animals, babies. In their line. + +Didn’t look back when she was going down the strand. Wouldn’t give that +satisfaction. Those girls, those girls, those lovely seaside girls. +Fine eyes she had, clear. It’s the white of the eye brings that out not +so much the pupil. Did she know what I? Course. Like a cat sitting +beyond a dog’s jump. Women never meet one like that Wilkins in the high +school drawing a picture of Venus with all his belongings on show. Call +that innocence? Poor idiot! His wife has her work cut out for her. +Never see them sit on a bench marked _Wet Paint_. Eyes all over them. +Look under the bed for what’s not there. Longing to get the fright of +their lives. Sharp as needles they are. When I said to Molly the man at +the corner of Cuffe street was goodlooking, thought she might like, +twigged at once he had a false arm. Had, too. Where do they get that? +Typist going up Roger Greene’s stairs two at a time to show her +understandings. Handed down from father to, mother to daughter, I mean. +Bred in the bone. Milly for example drying her handkerchief on the +mirror to save the ironing. Best place for an ad to catch a woman’s eye +on a mirror. And when I sent her for Molly’s Paisley shawl to +Prescott’s by the way that ad I must, carrying home the change in her +stocking! Clever little minx. I never told her. Neat way she carries +parcels too. Attract men, small thing like that. Holding up her hand, +shaking it, to let the blood flow back when it was red. Who did you +learn that from? Nobody. Something the nurse taught me. O, don’t they +know! Three years old she was in front of Molly’s dressingtable, just +before we left Lombard street west. Me have a nice pace. Mullingar. Who +knows? Ways of the world. Young student. Straight on her pins anyway +not like the other. Still she was game. Lord, I am wet. Devil you are. +Swell of her calf. Transparent stockings, stretched to breaking point. +Not like that frump today. A. E. Rumpled stockings. Or the one in +Grafton street. White. Wow! Beef to the heel. + +A monkey puzzle rocket burst, spluttering in darting crackles. Zrads +and zrads, zrads, zrads. And Cissy and Tommy and Jacky ran out to see +and Edy after with the pushcar and then Gerty beyond the curve of the +rocks. Will she? Watch! Watch! See! Looked round. She smelt an onion. +Darling, I saw, your. I saw all. + +Lord! + +Did me good all the same. Off colour after Kiernan’s, Dignam’s. For +this relief much thanks. In _Hamlet,_ that is. Lord! It was all things +combined. Excitement. When she leaned back, felt an ache at the butt of +my tongue. Your head it simply swirls. He’s right. Might have made a +worse fool of myself however. Instead of talking about nothing. Then I +will tell you all. Still it was a kind of language between us. It +couldn’t be? No, Gerty they called her. Might be false name however +like my name and the address Dolphin’s barn a blind. + + Her maiden name was Jemina Brown + And she lived with her mother in Irishtown. + +Place made me think of that I suppose. All tarred with the same brush. +Wiping pens in their stockings. But the ball rolled down to her as if +it understood. Every bullet has its billet. Course I never could throw +anything straight at school. Crooked as a ram’s horn. Sad however +because it lasts only a few years till they settle down to potwalloping +and papa’s pants will soon fit Willy and fuller’s earth for the baby +when they hold him out to do ah ah. No soft job. Saves them. Keeps them +out of harm’s way. Nature. Washing child, washing corpse. Dignam. +Children’s hands always round them. Cocoanut skulls, monkeys, not even +closed at first, sour milk in their swaddles and tainted curds. +Oughtn’t to have given that child an empty teat to suck. Fill it up +with wind. Mrs Beaufoy, Purefoy. Must call to the hospital. Wonder is +nurse Callan there still. She used to look over some nights when Molly +was in the Coffee Palace. That young doctor O’Hare I noticed her +brushing his coat. And Mrs Breen and Mrs Dignam once like that too, +marriageable. Worst of all at night Mrs Duggan told me in the City +Arms. Husband rolling in drunk, stink of pub off him like a polecat. +Have that in your nose in the dark, whiff of stale boose. Then ask in +the morning: was I drunk last night? Bad policy however to fault the +husband. Chickens come home to roost. They stick by one another like +glue. Maybe the women’s fault also. That’s where Molly can knock spots +off them. It’s the blood of the south. Moorish. Also the form, the +figure. Hands felt for the opulent. Just compare for instance those +others. Wife locked up at home, skeleton in the cupboard. Allow me to +introduce my. Then they trot you out some kind of a nondescript, +wouldn’t know what to call her. Always see a fellow’s weak point in his +wife. Still there’s destiny in it, falling in love. Have their own +secrets between them. Chaps that would go to the dogs if some woman +didn’t take them in hand. Then little chits of girls, height of a +shilling in coppers, with little hubbies. As God made them he matched +them. Sometimes children turn out well enough. Twice nought makes one. +Or old rich chap of seventy and blushing bride. Marry in May and repent +in December. This wet is very unpleasant. Stuck. Well the foreskin is +not back. Better detach. + +Ow! + +Other hand a sixfooter with a wifey up to his watchpocket. Long and the +short of it. Big he and little she. Very strange about my watch. +Wristwatches are always going wrong. Wonder is there any magnetic +influence between the person because that was about the time he. Yes, I +suppose, at once. Cat’s away, the mice will play. I remember looking in +Pill lane. Also that now is magnetism. Back of everything magnetism. +Earth for instance pulling this and being pulled. That causes movement. +And time, well that’s the time the movement takes. Then if one thing +stopped the whole ghesabo would stop bit by bit. Because it’s all +arranged. Magnetic needle tells you what’s going on in the sun, the +stars. Little piece of steel iron. When you hold out the fork. Come. +Come. Tip. Woman and man that is. Fork and steel. Molly, he. Dress up +and look and suggest and let you see and see more and defy you if +you’re a man to see that and, like a sneeze coming, legs, look, look +and if you have any guts in you. Tip. Have to let fly. + +Wonder how is she feeling in that region. Shame all put on before third +person. More put out about a hole in her stocking. Molly, her underjaw +stuck out, head back, about the farmer in the ridingboots and spurs at +the horse show. And when the painters were in Lombard street west. Fine +voice that fellow had. How Giuglini began. Smell that I did. Like +flowers. It was too. Violets. Came from the turpentine probably in the +paint. Make their own use of everything. Same time doing it scraped her +slipper on the floor so they wouldn’t hear. But lots of them can’t kick +the beam, I think. Keep that thing up for hours. Kind of a general all +round over me and half down my back. + +Wait. Hm. Hm. Yes. That’s her perfume. Why she waved her hand. I leave +you this to think of me when I’m far away on the pillow. What is it? +Heliotrope? No. Hyacinth? Hm. Roses, I think. She’d like scent of that +kind. Sweet and cheap: soon sour. Why Molly likes opoponax. Suits her, +with a little jessamine mixed. Her high notes and her low notes. At the +dance night she met him, dance of the hours. Heat brought it out. She +was wearing her black and it had the perfume of the time before. Good +conductor, is it? Or bad? Light too. Suppose there’s some connection. +For instance if you go into a cellar where it’s dark. Mysterious thing +too. Why did I smell it only now? Took its time in coming like herself, +slow but sure. Suppose it’s ever so many millions of tiny grains blown +across. Yes, it is. Because those spice islands, Cinghalese this +morning, smell them leagues off. Tell you what it is. It’s like a fine +fine veil or web they have all over the skin, fine like what do you +call it gossamer, and they’re always spinning it out of them, fine as +anything, like rainbow colours without knowing it. Clings to everything +she takes off. Vamp of her stockings. Warm shoe. Stays. Drawers: little +kick, taking them off. Byby till next time. Also the cat likes to sniff +in her shift on the bed. Know her smell in a thousand. Bathwater too. +Reminds me of strawberries and cream. Wonder where it is really. There +or the armpits or under the neck. Because you get it out of all holes +and corners. Hyacinth perfume made of oil of ether or something. +Muskrat. Bag under their tails. One grain pour off odour for years. +Dogs at each other behind. Good evening. Evening. How do you sniff? Hm. +Hm. Very well, thank you. Animals go by that. Yes now, look at it that +way. We’re the same. Some women, instance, warn you off when they have +their period. Come near. Then get a hogo you could hang your hat on. +Like what? Potted herrings gone stale or. Boof! Please keep off the +grass. + +Perhaps they get a man smell off us. What though? Cigary gloves long +John had on his desk the other day. Breath? What you eat and drink +gives that. No. Mansmell, I mean. Must be connected with that because +priests that are supposed to be are different. Women buzz round it like +flies round treacle. Railed off the altar get on to it at any cost. The +tree of forbidden priest. O, father, will you? Let me be the first to. +That diffuses itself all through the body, permeates. Source of life. +And it’s extremely curious the smell. Celery sauce. Let me. + +Mr Bloom inserted his nose. Hm. Into the. Hm. Opening of his waistcoat. +Almonds or. No. Lemons it is. Ah no, that’s the soap. + +O by the by that lotion. I knew there was something on my mind. Never +went back and the soap not paid. Dislike carrying bottles like that hag +this morning. Hynes might have paid me that three shillings. I could +mention Meagher’s just to remind him. Still if he works that paragraph. +Two and nine. Bad opinion of me he’ll have. Call tomorrow. How much do +I owe you? Three and nine? Two and nine, sir. Ah. Might stop him giving +credit another time. Lose your customers that way. Pubs do. Fellows run +up a bill on the slate and then slinking around the back streets into +somewhere else. + +Here’s this nobleman passed before. Blown in from the bay. Just went as +far as turn back. Always at home at dinnertime. Looks mangled out: had +a good tuck in. Enjoying nature now. Grace after meals. After supper +walk a mile. Sure he has a small bank balance somewhere, government +sit. Walk after him now make him awkward like those newsboys me today. +Still you learn something. See ourselves as others see us. So long as +women don’t mock what matter? That’s the way to find out. Ask yourself +who is he now. _The Mystery Man on the Beach_, prize titbit story by Mr +Leopold Bloom. Payment at the rate of one guinea per column. And that +fellow today at the graveside in the brown macintosh. Corns on his +kismet however. Healthy perhaps absorb all the. Whistle brings rain +they say. Must be some somewhere. Salt in the Ormond damp. The body +feels the atmosphere. Old Betty’s joints are on the rack. Mother +Shipton’s prophecy that is about ships around they fly in the +twinkling. No. Signs of rain it is. The royal reader. And distant hills +seem coming nigh. + +Howth. Bailey light. Two, four, six, eight, nine. See. Has to change or +they might think it a house. Wreckers. Grace Darling. People afraid of +the dark. Also glowworms, cyclists: lightingup time. Jewels diamonds +flash better. Women. Light is a kind of reassuring. Not going to hurt +you. Better now of course than long ago. Country roads. Run you through +the small guts for nothing. Still two types there are you bob against. +Scowl or smile. Pardon! Not at all. Best time to spray plants too in +the shade after the sun. Some light still. Red rays are longest. +Roygbiv Vance taught us: red, orange, yellow, green, blue, indigo, +violet. A star I see. Venus? Can’t tell yet. Two. When three it’s +night. Were those nightclouds there all the time? Looks like a phantom +ship. No. Wait. Trees are they? An optical illusion. Mirage. Land of +the setting sun this. Homerule sun setting in the southeast. My native +land, goodnight. + +Dew falling. Bad for you, dear, to sit on that stone. Brings on white +fluxions. Never have little baby then less he was big strong fight his +way up through. Might get piles myself. Sticks too like a summer cold, +sore on the mouth. Cut with grass or paper worst. Friction of the +position. Like to be that rock she sat on. O sweet little, you don’t +know how nice you looked. I begin to like them at that age. Green +apples. Grab at all that offer. Suppose it’s the only time we cross +legs, seated. Also the library today: those girl graduates. Happy +chairs under them. But it’s the evening influence. They feel all that. +Open like flowers, know their hours, sunflowers, Jerusalem artichokes, +in ballrooms, chandeliers, avenues under the lamps. Nightstock in Mat +Dillon’s garden where I kissed her shoulder. Wish I had a full length +oilpainting of her then. June that was too I wooed. The year returns. +History repeats itself. Ye crags and peaks I’m with you once again. +Life, love, voyage round your own little world. And now? Sad about her +lame of course but must be on your guard not to feel too much pity. +They take advantage. + +All quiet on Howth now. The distant hills seem. Where we. The +rhododendrons. I am a fool perhaps. He gets the plums, and I the +plumstones. Where I come in. All that old hill has seen. Names change: +that’s all. Lovers: yum yum. + +Tired I feel now. Will I get up? O wait. Drained all the manhood out of +me, little wretch. She kissed me. Never again. My youth. Only once it +comes. Or hers. Take the train there tomorrow. No. Returning not the +same. Like kids your second visit to a house. The new I want. Nothing +new under the sun. Care of P. O. Dolphin’s Barn. Are you not happy in +your? Naughty darling. At Dolphin’s barn charades in Luke Doyle’s +house. Mat Dillon and his bevy of daughters: Tiny, Atty, Floey, Maimy, +Louy, Hetty. Molly too. Eightyseven that was. Year before we. And the +old major, partial to his drop of spirits. Curious she an only child, I +an only child. So it returns. Think you’re escaping and run into +yourself. Longest way round is the shortest way home. And just when he +and she. Circus horse walking in a ring. Rip van Winkle we played. Rip: +tear in Henny Doyle’s overcoat. Van: breadvan delivering. Winkle: +cockles and periwinkles. Then I did Rip van Winkle coming back. She +leaned on the sideboard watching. Moorish eyes. Twenty years asleep in +Sleepy Hollow. All changed. Forgotten. The young are old. His gun rusty +from the dew. + +Ba. What is that flying about? Swallow? Bat probably. Thinks I’m a +tree, so blind. Have birds no smell? Metempsychosis. They believed you +could be changed into a tree from grief. Weeping willow. Ba. There he +goes. Funny little beggar. Wonder where he lives. Belfry up there. Very +likely. Hanging by his heels in the odour of sanctity. Bell scared him +out, I suppose. Mass seems to be over. Could hear them all at it. Pray +for us. And pray for us. And pray for us. Good idea the repetition. +Same thing with ads. Buy from us. And buy from us. Yes, there’s the +light in the priest’s house. Their frugal meal. Remember about the +mistake in the valuation when I was in Thom’s. Twentyeight it is. Two +houses they have. Gabriel Conroy’s brother is curate. Ba. Again. Wonder +why they come out at night like mice. They’re a mixed breed. Birds are +like hopping mice. What frightens them, light or noise? Better sit +still. All instinct like the bird in drouth got water out of the end of +a jar by throwing in pebbles. Like a little man in a cloak he is with +tiny hands. Weeny bones. Almost see them shimmering, kind of a bluey +white. Colours depend on the light you see. Stare the sun for example +like the eagle then look at a shoe see a blotch blob yellowish. Wants +to stamp his trademark on everything. Instance, that cat this morning +on the staircase. Colour of brown turf. Say you never see them with +three colours. Not true. That half tabbywhite tortoiseshell in the +_City Arms_ with the letter em on her forehead. Body fifty different +colours. Howth a while ago amethyst. Glass flashing. That’s how that +wise man what’s his name with the burning glass. Then the heather goes +on fire. It can’t be tourists’ matches. What? Perhaps the sticks dry +rub together in the wind and light. Or broken bottles in the furze act +as a burning glass in the sun. Archimedes. I have it! My memory’s not +so bad. + +Ba. Who knows what they’re always flying for. Insects? That bee last +week got into the room playing with his shadow on the ceiling. Might be +the one bit me, come back to see. Birds too. Never find out. Or what +they say. Like our small talk. And says she and says he. Nerve they +have to fly over the ocean and back. Lots must be killed in storms, +telegraph wires. Dreadful life sailors have too. Big brutes of +oceangoing steamers floundering along in the dark, lowing out like +seacows. _Faugh a ballagh!_ Out of that, bloody curse to you! Others in +vessels, bit of a handkerchief sail, pitched about like snuff at a wake +when the stormy winds do blow. Married too. Sometimes away for years at +the ends of the earth somewhere. No ends really because it’s round. +Wife in every port they say. She has a good job if she minds it till +Johnny comes marching home again. If ever he does. Smelling the tail +end of ports. How can they like the sea? Yet they do. The anchor’s +weighed. Off he sails with a scapular or a medal on him for luck. Well. +And the tephilim no what’s this they call it poor papa’s father had on +his door to touch. That brought us out of the land of Egypt and into +the house of bondage. Something in all those superstitions because when +you go out never know what dangers. Hanging on to a plank or astride of +a beam for grim life, lifebelt round him, gulping salt water, and +that’s the last of his nibs till the sharks catch hold of him. Do fish +ever get seasick? + +Then you have a beautiful calm without a cloud, smooth sea, placid, +crew and cargo in smithereens, Davy Jones’ locker, moon looking down so +peaceful. Not my fault, old cockalorum. + +A last lonely candle wandered up the sky from Mirus bazaar in search of +funds for Mercer’s hospital and broke, drooping, and shed a cluster of +violet but one white stars. They floated, fell: they faded. The +shepherd’s hour: the hour of folding: hour of tryst. From house to +house, giving his everwelcome double knock, went the nine o’clock +postman, the glowworm’s lamp at his belt gleaming here and there +through the laurel hedges. And among the five young trees a hoisted +lintstock lit the lamp at Leahy’s terrace. By screens of lighted +windows, by equal gardens a shrill voice went crying, wailing: _Evening +Telegraph, stop press edition! Result of the Gold Cup races!_ and from +the door of Dignam’s house a boy ran out and called. Twittering the bat +flew here, flew there. Far out over the sands the coming surf crept, +grey. Howth settled for slumber, tired of long days, of yumyum +rhododendrons (he was old) and felt gladly the night breeze lift, +ruffle his fell of ferns. He lay but opened a red eye unsleeping, deep +and slowly breathing, slumberous but awake. And far on Kish bank the +anchored lightship twinkled, winked at Mr Bloom. + +Life those chaps out there must have, stuck in the same spot. Irish +Lights board. Penance for their sins. Coastguards too. Rocket and +breeches buoy and lifeboat. Day we went out for the pleasure cruise in +the Erin’s King, throwing them the sack of old papers. Bears in the +zoo. Filthy trip. Drunkards out to shake up their livers. Puking +overboard to feed the herrings. Nausea. And the women, fear of God in +their faces. Milly, no sign of funk. Her blue scarf loose, laughing. +Don’t know what death is at that age. And then their stomachs clean. +But being lost they fear. When we hid behind the tree at Crumlin. I +didn’t want to. Mamma! Mamma! Babes in the wood. Frightening them with +masks too. Throwing them up in the air to catch them. I’ll murder you. +Is it only half fun? Or children playing battle. Whole earnest. How can +people aim guns at each other. Sometimes they go off. Poor kids! Only +troubles wildfire and nettlerash. Calomel purge I got her for that. +After getting better asleep with Molly. Very same teeth she has. What +do they love? Another themselves? But the morning she chased her with +the umbrella. Perhaps so as not to hurt. I felt her pulse. Ticking. +Little hand it was: now big. Dearest Papli. All that the hand says when +you touch. Loved to count my waistcoat buttons. Her first stays I +remember. Made me laugh to see. Little paps to begin with. Left one is +more sensitive, I think. Mine too. Nearer the heart? Padding themselves +out if fat is in fashion. Her growing pains at night, calling, wakening +me. Frightened she was when her nature came on her first. Poor child! +Strange moment for the mother too. Brings back her girlhood. Gibraltar. +Looking from Buena Vista. O’Hara’s tower. The seabirds screaming. Old +Barbary ape that gobbled all his family. Sundown, gunfire for the men +to cross the lines. Looking out over the sea she told me. Evening like +this, but clear, no clouds. I always thought I’d marry a lord or a rich +gentleman coming with a private yacht. _Buenas noches, señorita. El +hombre ama la muchacha hermosa_. Why me? Because you were so foreign +from the others. + +Better not stick here all night like a limpet. This weather makes you +dull. Must be getting on for nine by the light. Go home. Too late for +_Leah, Lily of Killarney._ No. Might be still up. Call to the hospital +to see. Hope she’s over. Long day I’ve had. Martha, the bath, funeral, +house of Keyes, museum with those goddesses, Dedalus’ song. Then that +bawler in Barney Kiernan’s. Got my own back there. Drunken ranters what +I said about his God made him wince. Mistake to hit back. Or? No. Ought +to go home and laugh at themselves. Always want to be swilling in +company. Afraid to be alone like a child of two. Suppose he hit me. +Look at it other way round. Not so bad then. Perhaps not to hurt he +meant. Three cheers for Israel. Three cheers for the sister-in-law he +hawked about, three fangs in her mouth. Same style of beauty. +Particularly nice old party for a cup of tea. The sister of the wife of +the wild man of Borneo has just come to town. Imagine that in the early +morning at close range. Everyone to his taste as Morris said when he +kissed the cow. But Dignam’s put the boots on it. Houses of mourning so +depressing because you never know. Anyhow she wants the money. Must +call to those Scottish Widows as I promised. Strange name. Takes it for +granted we’re going to pop off first. That widow on Monday was it +outside Cramer’s that looked at me. Buried the poor husband but +progressing favourably on the premium. Her widow’s mite. Well? What do +you expect her to do? Must wheedle her way along. Widower I hate to +see. Looks so forlorn. Poor man O’Connor wife and five children +poisoned by mussels here. The sewage. Hopeless. Some good matronly +woman in a porkpie hat to mother him. Take him in tow, platter face and +a large apron. Ladies’ grey flannelette bloomers, three shillings a +pair, astonishing bargain. Plain and loved, loved for ever, they say. +Ugly: no woman thinks she is. Love, lie and be handsome for tomorrow we +die. See him sometimes walking about trying to find out who played the +trick. U. p: up. Fate that is. He, not me. Also a shop often noticed. +Curse seems to dog it. Dreamt last night? Wait. Something confused. She +had red slippers on. Turkish. Wore the breeches. Suppose she does? +Would I like her in pyjamas? Damned hard to answer. Nannetti’s gone. +Mailboat. Near Holyhead by now. Must nail that ad of Keyes’s. Work +Hynes and Crawford. Petticoats for Molly. She has something to put in +them. What’s that? Might be money. + +Mr Bloom stooped and turned over a piece of paper on the strand. He +brought it near his eyes and peered. Letter? No. Can’t read. Better go. +Better. I’m tired to move. Page of an old copybook. All those holes and +pebbles. Who could count them? Never know what you find. Bottle with +story of a treasure in it, thrown from a wreck. Parcels post. Children +always want to throw things in the sea. Trust? Bread cast on the +waters. What’s this? Bit of stick. + +O! Exhausted that female has me. Not so young now. Will she come here +tomorrow? Wait for her somewhere for ever. Must come back. Murderers +do. Will I? + +Mr Bloom with his stick gently vexed the thick sand at his foot. Write +a message for her. Might remain. What? + +I. + +Some flatfoot tramp on it in the morning. Useless. Washed away. Tide +comes here. Saw a pool near her foot. Bend, see my face there, dark +mirror, breathe on it, stirs. All these rocks with lines and scars and +letters. O, those transparent! Besides they don’t know. What is the +meaning of that other world. I called you naughty boy because I do not +like. + +AM. A. + +No room. Let it go. + +Mr Bloom effaced the letters with his slow boot. Hopeless thing sand. +Nothing grows in it. All fades. No fear of big vessels coming up here. +Except Guinness’s barges. Round the Kish in eighty days. Done half by +design. + +He flung his wooden pen away. The stick fell in silted sand, stuck. Now +if you were trying to do that for a week on end you couldn’t. Chance. +We’ll never meet again. But it was lovely. Goodbye, dear. Thanks. Made +me feel so young. + +Short snooze now if I had. Must be near nine. Liverpool boat long gone. +Not even the smoke. And she can do the other. Did too. And Belfast. I +won’t go. Race there, race back to Ennis. Let him. Just close my eyes a +moment. Won’t sleep, though. Half dream. It never comes the same. Bat +again. No harm in him. Just a few. + +O sweety all your little girlwhite up I saw dirty bracegirdle made me +do love sticky we two naughty Grace darling she him half past the bed +met him pike hoses frillies for Raoul de perfume your wife black hair +heave under embon _señorita_ young eyes Mulvey plump bubs me breadvan +Winkle red slippers she rusty sleep wander years of dreams return tail +end Agendath swoony lovey showed me her next year in drawers return +next in her next her next. + +A bat flew. Here. There. Here. Far in the grey a bell chimed. Mr Bloom +with open mouth, his left boot sanded sideways, leaned, breathed. Just +for a few + + Cuckoo + Cuckoo + Cuckoo. + +The clock on the mantelpiece in the priest’s house cooed where Canon +O’Hanlon and Father Conroy and the reverend John Hughes S. J. were +taking tea and sodabread and butter and fried mutton chops with catsup +and talking about + + Cuckoo + Cuckoo + Cuckoo. + +Because it was a little canarybird that came out of its little house to +tell the time that Gerty MacDowell noticed the time she was there +because she was as quick as anything about a thing like that, was Gerty +MacDowell, and she noticed at once that that foreign gentleman that was +sitting on the rocks looking was + + Cuckoo + Cuckoo + Cuckoo. + + + + +[ 14 ] + + +Deshil Holles Eamus. Deshil Holles Eamus. Deshil Holles Eamus. + +Send us bright one, light one, Horhorn, quickening and wombfruit. Send +us bright one, light one, Horhorn, quickening and wombfruit. Send us +bright one, light one, Horhorn, quickening and wombfruit. + +Hoopsa boyaboy hoopsa! Hoopsa boyaboy hoopsa! Hoopsa boyaboy hoopsa! + +Universally that person’s acumen is esteemed very little perceptive +concerning whatsoever matters are being held as most profitably by +mortals with sapience endowed to be studied who is ignorant of that +which the most in doctrine erudite and certainly by reason of that in +them high mind’s ornament deserving of veneration constantly maintain +when by general consent they affirm that other circumstances being +equal by no exterior splendour is the prosperity of a nation more +efficaciously asserted than by the measure of how far forward may have +progressed the tribute of its solicitude for that proliferent +continuance which of evils the original if it be absent when +fortunately present constitutes the certain sign of omnipollent +nature’s incorrupted benefaction. For who is there who anything of some +significance has apprehended but is conscious that that exterior +splendour may be the surface of a downwardtending lutulent reality or +on the contrary anyone so is there unilluminated as not to perceive +that as no nature’s boon can contend against the bounty of increase so +it behoves every most just citizen to become the exhortator and +admonisher of his semblables and to tremble lest what had in the past +been by the nation excellently commenced might be in the future not +with similar excellence accomplished if an inverecund habit shall have +gradually traduced the honourable by ancestors transmitted customs to +that thither of profundity that that one was audacious excessively who +would have the hardihood to rise affirming that no more odious offence +can for anyone be than to oblivious neglect to consign that evangel +simultaneously command and promise which on all mortals with prophecy +of abundance or with diminution’s menace that exalted of reiteratedly +procreating function ever irrevocably enjoined? + +It is not why therefore we shall wonder if, as the best historians +relate, among the Celts, who nothing that was not in its nature +admirable admired, the art of medicine shall have been highly honoured. +Not to speak of hostels, leperyards, sweating chambers, plaguegraves, +their greatest doctors, the O’Shiels, the O’Hickeys, the O’Lees, have +sedulously set down the divers methods by which the sick and the +relapsed found again health whether the malady had been the trembling +withering or loose boyconnell flux. Certainly in every public work +which in it anything of gravity contains preparation should be with +importance commensurate and therefore a plan was by them adopted +(whether by having preconsidered or as the maturation of experience it +is difficult in being said which the discrepant opinions of subsequent +inquirers are not up to the present congrued to render manifest) +whereby maternity was so far from all accident possibility removed that +whatever care the patient in that allhardest of woman hour chiefly +required and not solely for the copiously opulent but also for her who +not being sufficiently moneyed scarcely and often not even scarcely +could subsist valiantly and for an inconsiderable emolument was +provided. + +To her nothing already then and thenceforward was anyway able to be +molestful for this chiefly felt all citizens except with proliferent +mothers prosperity at all not to can be and as they had received +eternity gods mortals generation to befit them her beholding, when the +case was so hoving itself, parturient in vehicle thereward carrying +desire immense among all one another was impelling on of her to be +received into that domicile. O thing of prudent nation not merely in +being seen but also even in being related worthy of being praised that +they her by anticipation went seeing mother, that she by them suddenly +to be about to be cherished had been begun she felt! + +Before born bliss babe had. Within womb won he worship. Whatever in +that one case done commodiously done was. A couch by midwives attended +with wholesome food reposeful, cleanest swaddles as though +forthbringing were now done and by wise foresight set: but to this no +less of what drugs there is need and surgical implements which are +pertaining to her case not omitting aspect of all very distracting +spectacles in various latitudes by our terrestrial orb offered together +with images, divine and human, the cogitation of which by sejunct +females is to tumescence conducive or eases issue in the high sunbright +wellbuilt fair home of mothers when, ostensibly far gone and +reproductitive, it is come by her thereto to lie in, her term up. + +Some man that wayfaring was stood by housedoor at night’s oncoming. Of +Israel’s folk was that man that on earth wandering far had fared. Stark +ruth of man his errand that him lone led till that house. + +Of that house A. Horne is lord. Seventy beds keeps he there teeming +mothers are wont that they lie for to thole and bring forth bairns hale +so God’s angel to Mary quoth. Watchers tway there walk, white sisters +in ward sleepless. Smarts they still, sickness soothing: in twelve +moons thrice an hundred. Truest bedthanes they twain are, for Horne +holding wariest ward. + +In ward wary the watcher hearing come that man mildhearted eft rising +with swire ywimpled to him her gate wide undid. Lo, levin leaping +lightens in eyeblink Ireland’s westward welkin. Full she drad that God +the Wreaker all mankind would fordo with water for his evil sins. +Christ’s rood made she on breastbone and him drew that he would rathe +infare under her thatch. That man her will wotting worthful went in +Horne’s house. + +Loth to irk in Horne’s hall hat holding the seeker stood. On her stow +he ere was living with dear wife and lovesome daughter that then over +land and seafloor nine years had long outwandered. Once her in +townhithe meeting he to her bow had not doffed. Her to forgive now he +craved with good ground of her allowed that that of him swiftseen face, +hers, so young then had looked. Light swift her eyes kindled, bloom of +blushes his word winning. + +As her eyes then ongot his weeds swart therefor sorrow she feared. Glad +after she was that ere adread was. Her he asked if O’Hare Doctor +tidings sent from far coast and she with grameful sigh him answered +that O’Hare Doctor in heaven was. Sad was the man that word to hear +that him so heavied in bowels ruthful. All she there told him, ruing +death for friend so young, algate sore unwilling God’s rightwiseness to +withsay. She said that he had a fair sweet death through God His +goodness with masspriest to be shriven, holy housel and sick men’s oil +to his limbs. The man then right earnest asked the nun of which death +the dead man was died and the nun answered him and said that he was +died in Mona Island through bellycrab three year agone come Childermas +and she prayed to God the Allruthful to have his dear soul in his +undeathliness. He heard her sad words, in held hat sad staring. So +stood they there both awhile in wanhope sorrowing one with other. + +Therefore, everyman, look to that last end that is thy death and the +dust that gripeth on every man that is born of woman for as he came +naked forth from his mother’s womb so naked shall he wend him at the +last for to go as he came. + +The man that was come in to the house then spoke to the nursingwoman +and he asked her how it fared with the woman that lay there in +childbed. The nursingwoman answered him and said that that woman was in +throes now full three days and that it would be a hard birth unneth to +bear but that now in a little it would be. She said thereto that she +had seen many births of women but never was none so hard as was that +woman’s birth. Then she set it all forth to him for because she knew +the man that time was had lived nigh that house. The man hearkened to +her words for he felt with wonder women’s woe in the travail that they +have of motherhood and he wondered to look on her face that was a fair +face for any man to see but yet was she left after long years a +handmaid. Nine twelve bloodflows chiding her childless. + +And whiles they spake the door of the castle was opened and there +nighed them a mickle noise as of many that sat there at meat. And there +came against the place as they stood a young learningknight yclept +Dixon. And the traveller Leopold was couth to him sithen it had happed +that they had had ado each with other in the house of misericord where +this learningknight lay by cause the traveller Leopold came there to be +healed for he was sore wounded in his breast by a spear wherewith a +horrible and dreadful dragon was smitten him for which he did do make a +salve of volatile salt and chrism as much as he might suffice. And he +said now that he should go in to that castle for to make merry with +them that were there. And the traveller Leopold said that he should go +otherwhither for he was a man of cautels and a subtile. Also the lady +was of his avis and repreved the learningknight though she trowed well +that the traveller had said thing that was false for his subtility. But +the learningknight would not hear say nay nor do her mandement ne have +him in aught contrarious to his list and he said how it was a +marvellous castle. And the traveller Leopold went into the castle for +to rest him for a space being sore of limb after many marches +environing in divers lands and sometime venery. + +And in the castle was set a board that was of the birchwood of Finlandy +and it was upheld by four dwarfmen of that country but they durst not +move more for enchantment. And on this board were frightful swords and +knives that are made in a great cavern by swinking demons out of white +flames that they fix then in the horns of buffalos and stags that there +abound marvellously. And there were vessels that are wrought by magic +of Mahound out of seasand and the air by a warlock with his breath that +he blases in to them like to bubbles. And full fair cheer and rich was +on the board that no wight could devise a fuller ne richer. And there +was a vat of silver that was moved by craft to open in the which lay +strange fishes withouten heads though misbelieving men nie that this be +possible thing without they see it natheless they are so. And these +fishes lie in an oily water brought there from Portugal land because of +the fatness that therein is like to the juices of the olivepress. And +also it was a marvel to see in that castle how by magic they make a +compost out of fecund wheatkidneys out of Chaldee that by aid of +certain angry spirits that they do in to it swells up wondrously like +to a vast mountain. And they teach the serpents there to entwine +themselves up on long sticks out of the ground and of the scales of +these serpents they brew out a brewage like to mead. + +And the learning knight let pour for childe Leopold a draught and halp +thereto the while all they that were there drank every each. And childe +Leopold did up his beaver for to pleasure him and took apertly somewhat +in amity for he never drank no manner of mead which he then put by and +anon full privily he voided the more part in his neighbour glass and +his neighbour nist not of this wile. And he sat down in that castle +with them for to rest him there awhile. Thanked be Almighty God. + +This meanwhile this good sister stood by the door and begged them at +the reverence of Jesu our alther liege Lord to leave their wassailing +for there was above one quick with child, a gentle dame, whose time +hied fast. Sir Leopold heard on the upfloor cry on high and he wondered +what cry that it was whether of child or woman and I marvel, said he, +that it be not come or now. Meseems it dureth overlong. And he was ware +and saw a franklin that hight Lenehan on that side the table that was +older than any of the tother and for that they both were knights +virtuous in the one emprise and eke by cause that he was elder he spoke +to him full gently. But, said he, or it be long too she will bring +forth by God His bounty and have joy of her childing for she hath +waited marvellous long. And the franklin that had drunken said, +Expecting each moment to be her next. Also he took the cup that stood +tofore him for him needed never none asking nor desiring of him to +drink and, Now drink, said he, fully delectably, and he quaffed as far +as he might to their both’s health for he was a passing good man of his +lustiness. And sir Leopold that was the goodliest guest that ever sat +in scholars’ hall and that was the meekest man and the kindest that +ever laid husbandly hand under hen and that was the very truest knight +of the world one that ever did minion service to lady gentle pledged +him courtly in the cup. Woman’s woe with wonder pondering. + +Now let us speak of that fellowship that was there to the intent to be +drunken an they might. There was a sort of scholars along either side +the board, that is to wit, Dixon yclept junior of saint Mary +Merciable’s with other his fellows Lynch and Madden, scholars of +medicine, and the franklin that hight Lenehan and one from Alba Longa, +one Crotthers, and young Stephen that had mien of a frere that was at +head of the board and Costello that men clepen Punch Costello all long +of a mastery of him erewhile gested (and of all them, reserved young +Stephen, he was the most drunken that demanded still of more mead) and +beside the meek sir Leopold. But on young Malachi they waited for that +he promised to have come and such as intended to no goodness said how +he had broke his avow. And sir Leopold sat with them for he bore fast +friendship to sir Simon and to this his son young Stephen and for that +his languor becalmed him there after longest wanderings insomuch as +they feasted him for that time in the honourablest manner. Ruth red +him, love led on with will to wander, loth to leave. + +For they were right witty scholars. And he heard their aresouns each +gen other as touching birth and righteousness, young Madden maintaining +that put such case it were hard the wife to die (for so it had fallen +out a matter of some year agone with a woman of Eblana in Horne’s house +that now was trespassed out of this world and the self night next +before her death all leeches and pothecaries had taken counsel of her +case). And they said farther she should live because in the beginning, +they said, the woman should bring forth in pain and wherefore they that +were of this imagination affirmed how young Madden had said truth for +he had conscience to let her die. And not few and of these was young +Lynch were in doubt that the world was now right evil governed as it +was never other howbeit the mean people believed it otherwise but the +law nor his judges did provide no remedy. A redress God grant. This was +scant said but all cried with one acclaim nay, by our Virgin Mother, +the wife should live and the babe to die. In colour whereof they waxed +hot upon that head what with argument and what for their drinking but +the franklin Lenehan was prompt each when to pour them ale so that at +the least way mirth might not lack. Then young Madden showed all the +whole affair and said how that she was dead and how for holy religion +sake by rede of palmer and bedesman and for a vow he had made to Saint +Ultan of Arbraccan her goodman husband would not let her death whereby +they were all wondrous grieved. To whom young Stephen had these words +following: Murmur, sirs, is eke oft among lay folk. Both babe and +parent now glorify their Maker, the one in limbo gloom, the other in +purgefire. But, gramercy, what of those Godpossibled souls that we +nightly impossibilise, which is the sin against the Holy Ghost, Very +God, Lord and Giver of Life? For, sirs, he said, our lust is brief. We +are means to those small creatures within us and nature has other ends +than we. Then said Dixon junior to Punch Costello wist he what ends. +But he had overmuch drunken and the best word he could have of him was +that he would ever dishonest a woman whoso she were or wife or maid or +leman if it so fortuned him to be delivered of his spleen of lustihead. +Whereat Crotthers of Alba Longa sang young Malachi’s praise of that +beast the unicorn how once in the millennium he cometh by his horn, the +other all this while, pricked forward with their jibes wherewith they +did malice him, witnessing all and several by saint Foutinus his +engines that he was able to do any manner of thing that lay in man to +do. Thereat laughed they all right jocundly only young Stephen and sir +Leopold which never durst laugh too open by reason of a strange humour +which he would not bewray and also for that he rued for her that bare +whoso she might be or wheresoever. Then spake young Stephen orgulous of +mother Church that would cast him out of her bosom, of law of canons, +of Lilith, patron of abortions, of bigness wrought by wind of seeds of +brightness or by potency of vampires mouth to mouth or, as Virgilius +saith, by the influence of the occident or by the reek of moonflower or +an she lie with a woman which her man has but lain with, _effectu +secuto_, or peradventure in her bath according to the opinions of +Averroes and Moses Maimonides. He said also how at the end of the +second month a human soul was infused and how in all our holy mother +foldeth ever souls for God’s greater glory whereas that earthly mother +which was but a dam to bear beastly should die by canon for so saith he +that holdeth the fisherman’s seal, even that blessed Peter on which +rock was holy church for all ages founded. All they bachelors then +asked of sir Leopold would he in like case so jeopard her person as +risk life to save life. A wariness of mind he would answer as fitted +all and, laying hand to jaw, he said dissembling, as his wont was, that +as it was informed him, who had ever loved the art of physic as might a +layman, and agreeing also with his experience of so seldomseen an +accident it was good for that mother Church belike at one blow had +birth and death pence and in such sort deliverly he scaped their +questions. That is truth, pardy, said Dixon, and, or I err, a pregnant +word. Which hearing young Stephen was a marvellous glad man and he +averred that he who stealeth from the poor lendeth to the Lord for he +was of a wild manner when he was drunken and that he was now in that +taking it appeared eftsoons. + +But sir Leopold was passing grave maugre his word by cause he still had +pity of the terrorcausing shrieking of shrill women in their labour and +as he was minded of his good lady Marion that had borne him an only +manchild which on his eleventh day on live had died and no man of art +could save so dark is destiny. And she was wondrous stricken of heart +for that evil hap and for his burial did him on a fair corselet of +lamb’s wool, the flower of the flock, lest he might perish utterly and +lie akeled (for it was then about the midst of the winter) and now sir +Leopold that had of his body no manchild for an heir looked upon him +his friend’s son and was shut up in sorrow for his forepassed happiness +and as sad as he was that him failed a son of such gentle courage (for +all accounted him of real parts) so grieved he also in no less measure +for young Stephen for that he lived riotously with those wastrels and +murdered his goods with whores. + +About that present time young Stephen filled all cups that stood empty +so as there remained but little mo if the prudenter had not shadowed +their approach from him that still plied it very busily who, praying +for the intentions of the sovereign pontiff, he gave them for a pledge +the vicar of Christ which also as he said is vicar of Bray. Now drink +we, quod he, of this mazer and quaff ye this mead which is not indeed +parcel of my body but my soul’s bodiment. Leave ye fraction of bread to +them that live by bread alone. Be not afeard neither for any want for +this will comfort more than the other will dismay. See ye here. And he +showed them glistering coins of the tribute and goldsmith notes the +worth of two pound nineteen shilling that he had, he said, for a song +which he writ. They all admired to see the foresaid riches in such +dearth of money as was herebefore. His words were then these as +followeth: Know all men, he said, time’s ruins build eternity’s +mansions. What means this? Desire’s wind blasts the thorntree but after +it becomes from a bramblebush to be a rose upon the rood of time. Mark +me now. In woman’s womb word is made flesh but in the spirit of the +maker all flesh that passes becomes the word that shall not pass away. +This is the postcreation. _Omnis caro ad te veniet_. No question but +her name is puissant who aventried the dear corse of our Agenbuyer, +Healer and Herd, our mighty mother and mother most venerable and +Bernardus saith aptly that She hath an _omnipotentiam deiparae +supplicem_, that is to wit, an almightiness of petition because she is +the second Eve and she won us, saith Augustine too, whereas that other, +our grandam, which we are linked up with by successive anastomosis of +navelcords sold us all, seed, breed and generation, for a penny pippin. +But here is the matter now. Or she knew him, that second I say, and was +but creature of her creature, _vergine madre, figlia di tuo figlio_, or +she knew him not and then stands she in the one denial or ignorancy +with Peter Piscator who lives in the house that Jack built and with +Joseph the joiner patron of the happy demise of all unhappy marriages, +_parceque M. Léo Taxil nous a dit que qui l’avait mise dans cette +fichue position c’était le sacré pigeon, ventre de Dieu! Entweder_ +transubstantiality _oder_ consubstantiality but in no case +subsubstantiality. And all cried out upon it for a very scurvy word. A +pregnancy without joy, he said, a birth without pangs, a body without +blemish, a belly without bigness. Let the lewd with faith and fervour +worship. With will will we withstand, withsay. + +Hereupon Punch Costello dinged with his fist upon the board and would +sing a bawdy catch _Staboo Stabella_ about a wench that was put in pod +of a jolly swashbuckler in Almany which he did straightways now attack: +_The first three months she was not well, Staboo,_ when here nurse +Quigley from the door angerly bid them hist ye should shame you nor was +it not meet as she remembered them being her mind was to have all +orderly against lord Andrew came for because she was jealous that no +gasteful turmoil might shorten the honour of her guard. It was an +ancient and a sad matron of a sedate look and christian walking, in +habit dun beseeming her megrims and wrinkled visage, nor did her +hortative want of it effect for incontinently Punch Costello was of +them all embraided and they reclaimed the churl with civil rudeness +some and shaked him with menace of blandishments others whiles they all +chode with him, a murrain seize the dolt, what a devil he would be at, +thou chuff, thou puny, thou got in peasestraw, thou losel, thou +chitterling, thou spawn of a rebel, thou dykedropt, thou abortion thou, +to shut up his drunken drool out of that like a curse of God ape, the +good sir Leopold that had for his cognisance the flower of quiet, +margerain gentle, advising also the time’s occasion as most sacred and +most worthy to be most sacred. In Horne’s house rest should reign. + +To be short this passage was scarce by when Master Dixon of Mary in +Eccles, goodly grinning, asked young Stephen what was the reason why he +had not cided to take friar’s vows and he answered him obedience in the +womb, chastity in the tomb but involuntary poverty all his days. Master +Lenehan at this made return that he had heard of those nefarious deeds +and how, as he heard hereof counted, he had besmirched the lily virtue +of a confiding female which was corruption of minors and they all +intershowed it too, waxing merry and toasting to his fathership. But he +said very entirely it was clean contrary to their suppose for he was +the eternal son and ever virgin. Thereat mirth grew in them the more +and they rehearsed to him his curious rite of wedlock for the disrobing +and deflowering of spouses, as the priests use in Madagascar island, +she to be in guise of white and saffron, her groom in white and grain, +with burning of nard and tapers, on a bridebed while clerks sung kyries +and the anthem _Ut novetur sexus omnis corporis mysterium_ till she was +there unmaided. He gave them then a much admirable hymen minim by those +delicate poets Master John Fletcher and Master Francis Beaumont that is +in their _Maid’s Tragedy_ that was writ for a like twining of lovers: +_To bed, to bed_ was the burden of it to be played with accompanable +concent upon the virginals. An exquisite dulcet epithalame of most +mollificative suadency for juveniles amatory whom the odoriferous +flambeaus of the paranymphs have escorted to the quadrupedal proscenium +of connubial communion. Well met they were, said Master Dixon, joyed, +but, harkee, young sir, better were they named Beau Mount and Lecher +for, by my troth, of such a mingling much might come. Young Stephen +said indeed to his best remembrance they had but the one doxy between +them and she of the stews to make shift with in delights amorous for +life ran very high in those days and the custom of the country approved +with it. Greater love than this, he said, no man hath that a man lay +down his wife for his friend. Go thou and do likewise. Thus, or words +to that effect, saith Zarathustra, sometime regius professor of French +letters to the university of Oxtail nor breathed there ever that man to +whom mankind was more beholden. Bring a stranger within thy tower it +will go hard but thou wilt have the secondbest bed. _Orate, fratres, +pro memetipso_. And all the people shall say, Amen. Remember, Erin, thy +generations and thy days of old, how thou settedst little by me and by +my word and broughtedst in a stranger to my gates to commit fornication +in my sight and to wax fat and kick like Jeshurum. Therefore hast thou +sinned against my light and hast made me, thy lord, to be the slave of +servants. Return, return, Clan Milly: forget me not, O Milesian. Why +hast thou done this abomination before me that thou didst spurn me for +a merchant of jalaps and didst deny me to the Roman and to the Indian +of dark speech with whom thy daughters did lie luxuriously? Look forth +now, my people, upon the land of behest, even from Horeb and from Nebo +and from Pisgah and from the Horns of Hatten unto a land flowing with +milk and money. But thou hast suckled me with a bitter milk: my moon +and my sun thou hast quenched for ever. And thou hast left me alone for +ever in the dark ways of my bitterness: and with a kiss of ashes hast +thou kissed my mouth. This tenebrosity of the interior, he proceeded to +say, hath not been illumined by the wit of the septuagint nor so much +as mentioned for the Orient from on high which brake hell’s gates +visited a darkness that was foraneous. Assuefaction minorates +atrocities (as Tully saith of his darling Stoics) and Hamlet his father +showeth the prince no blister of combustion. The adiaphane in the noon +of life is an Egypt’s plague which in the nights of prenativity and +postmortemity is their most proper _ubi_ and _quomodo_. And as the ends +and ultimates of all things accord in some mean and measure with their +inceptions and originals, that same multiplicit concordance which leads +forth growth from birth accomplishing by a retrogressive metamorphosis +that minishing and ablation towards the final which is agreeable unto +nature so is it with our subsolar being. The aged sisters draw us into +life: we wail, batten, sport, clip, clasp, sunder, dwindle, die: over +us dead they bend. First, saved from waters of old Nile, among +bulrushes, a bed of fasciated wattles: at last the cavity of a +mountain, an occulted sepulchre amid the conclamation of the hillcat +and the ossifrage. And as no man knows the ubicity of his tumulus nor +to what processes we shall thereby be ushered nor whether to Tophet or +to Edenville in the like way is all hidden when we would backward see +from what region of remoteness the whatness of our whoness hath fetched +his whenceness. + +Thereto Punch Costello roared out mainly _Etienne chanson_ but he +loudly bid them, lo, wisdom hath built herself a house, this vast +majestic longstablished vault, the crystal palace of the Creator, all +in applepie order, a penny for him who finds the pea. + + Behold the mansion reared by dedal Jack + See the malt stored in many a refluent sack, + In the proud cirque of Jackjohn’s bivouac. + +A black crack of noise in the street here, alack, bawled back. Loud on +left Thor thundered: in anger awful the hammerhurler. Came now the +storm that hist his heart. And Master Lynch bade him have a care to +flout and witwanton as the god self was angered for his hellprate and +paganry. And he that had erst challenged to be so doughty waxed wan as +they might all mark and shrank together and his pitch that was before +so haught uplift was now of a sudden quite plucked down and his heart +shook within the cage of his breast as he tasted the rumour of that +storm. Then did some mock and some jeer and Punch Costello fell hard +again to his yale which Master Lenehan vowed he would do after and he +was indeed but a word and a blow on any the least colour. But the +braggart boaster cried that an old Nobodaddy was in his cups it was +muchwhat indifferent and he would not lag behind his lead. But this was +only to dye his desperation as cowed he crouched in Horne’s hall. He +drank indeed at one draught to pluck up a heart of any grace for it +thundered long rumblingly over all the heavens so that Master Madden, +being godly certain whiles, knocked him on his ribs upon that crack of +doom and Master Bloom, at the braggart’s side, spoke to him calming +words to slumber his great fear, advertising how it was no other thing +but a hubbub noise that he heard, the discharge of fluid from the +thunderhead, look you, having taken place, and all of the order of a +natural phenomenon. + +But was young Boasthard’s fear vanquished by Calmer’s words? No, for he +had in his bosom a spike named Bitterness which could not by words be +done away. And was he then neither calm like the one nor godly like the +other? He was neither as much as he would have liked to be either. But +could he not have endeavoured to have found again as in his youth the +bottle Holiness that then he lived withal? Indeed no for Grace was not +there to find that bottle. Heard he then in that clap the voice of the +god Bringforth or, what Calmer said, a hubbub of Phenomenon? Heard? +Why, he could not but hear unless he had plugged him up the tube +Understanding (which he had not done). For through that tube he saw +that he was in the land of Phenomenon where he must for a certain one +day die as he was like the rest too a passing show. And would he not +accept to die like the rest and pass away? By no means would he though +he must nor would he make more shows according as men do with wives +which Phenomenon has commanded them to do by the book Law. Then wotted +he nought of that other land which is called Believe-on-Me, that is the +land of promise which behoves to the king Delightful and shall be for +ever where there is no death and no birth neither wiving nor mothering +at which all shall come as many as believe on it? Yes, Pious had told +him of that land and Chaste had pointed him to the way but the reason +was that in the way he fell in with a certain whore of an eyepleasing +exterior whose name, she said, is Bird-in-the-Hand and she beguiled him +wrongways from the true path by her flatteries that she said to him as, +Ho, you pretty man, turn aside hither and I will show you a brave +place, and she lay at him so flatteringly that she had him in her grot +which is named Two-in-the-Bush or, by some learned, Carnal +Concupiscence. + +This was it what all that company that sat there at commons in Manse of +Mothers the most lusted after and if they met with this whore +Bird-in-the-Hand (which was within all foul plagues, monsters and a +wicked devil) they would strain the last but they would make at her and +know her. For regarding Believe-on-Me they said it was nought else but +notion and they could conceive no thought of it for, first, +Two-in-the-Bush whither she ticed them was the very goodliest grot and +in it were four pillows on which were four tickets with these words +printed on them, Pickaback and Topsyturvy and Shameface and Cheek by +Jowl and, second, for that foul plague Allpox and the monsters they +cared not for them for Preservative had given them a stout shield of +oxengut and, third, that they might take no hurt neither from Offspring +that was that wicked devil by virtue of this same shield which was +named Killchild. So were they all in their blind fancy, Mr Cavil and Mr +Sometimes Godly, Mr Ape Swillale, Mr False Franklin, Mr Dainty Dixon, +Young Boasthard and Mr Cautious Calmer. Wherein, O wretched company, +were ye all deceived for that was the voice of the god that was in a +very grievous rage that he would presently lift his arm up and spill +their souls for their abuses and their spillings done by them +contrariwise to his word which forth to bring brenningly biddeth. + +So Thursday sixteenth June Patk. Dignam laid in clay of an apoplexy and +after hard drought, please God, rained, a bargeman coming in by water a +fifty mile or thereabout with turf saying the seed won’t sprout, fields +athirst, very sadcoloured and stunk mightily, the quags and tofts too. +Hard to breathe and all the young quicks clean consumed without +sprinkle this long while back as no man remembered to be without. The +rosy buds all gone brown and spread out blobs and on the hills nought +but dry flag and faggots that would catch at first fire. All the world +saying, for aught they knew, the big wind of last February a year that +did havoc the land so pitifully a small thing beside this barrenness. +But by and by, as said, this evening after sundown, the wind sitting in +the west, biggish swollen clouds to be seen as the night increased and +the weatherwise poring up at them and some sheet lightnings at first +and after, past ten of the clock, one great stroke with a long thunder +and in a brace of shakes all scamper pellmell within door for the +smoking shower, the men making shelter for their straws with a clout or +kerchief, womenfolk skipping off with kirtles catched up soon as the +pour came. In Ely place, Baggot street, Duke’s lawn, thence through +Merrion green up to Holles street a swash of water flowing that was +before bonedry and not one chair or coach or fiacre seen about but no +more crack after that first. Over against the Rt. Hon. Mr Justice +Fitzgibbon’s door (that is to sit with Mr Healy the lawyer upon the +college lands) Mal. Mulligan a gentleman’s gentleman that had but come +from Mr Moore’s the writer’s (that was a papish but is now, folk say, a +good Williamite) chanced against Alec. Bannon in a cut bob (which are +now in with dance cloaks of Kendal green) that was new got to town from +Mullingar with the stage where his coz and Mal M’s brother will stay a +month yet till Saint Swithin and asks what in the earth he does there, +he bound home and he to Andrew Horne’s being stayed for to crush a cup +of wine, so he said, but would tell him of a skittish heifer, big of +her age and beef to the heel, and all this while poured with rain and +so both together on to Horne’s. There Leop. Bloom of Crawford’s journal +sitting snug with a covey of wags, likely brangling fellows, Dixon +jun., scholar of my lady of Mercy’s, Vin. Lynch, a Scots fellow, Will. +Madden, T. Lenehan, very sad about a racer he fancied and Stephen D. +Leop. Bloom there for a languor he had but was now better, he having +dreamed tonight a strange fancy of his dame Mrs Moll with red slippers +on in a pair of Turkey trunks which is thought by those in ken to be +for a change and Mistress Purefoy there, that got in through pleading +her belly, and now on the stools, poor body, two days past her term, +the midwives sore put to it and can’t deliver, she queasy for a bowl of +riceslop that is a shrewd drier up of the insides and her breath very +heavy more than good and should be a bullyboy from the knocks, they +say, but God give her soon issue. ’Tis her ninth chick to live, I hear, +and Lady day bit off her last chick’s nails that was then a twelvemonth +and with other three all breastfed that died written out in a fair hand +in the king’s bible. Her hub fifty odd and a methodist but takes the +sacrament and is to be seen any fair sabbath with a pair of his boys +off Bullock harbour dapping on the sound with a heavybraked reel or in +a punt he has trailing for flounder and pollock and catches a fine bag, +I hear. In sum an infinite great fall of rain and all refreshed and +will much increase the harvest yet those in ken say after wind and +water fire shall come for a prognostication of Malachi’s almanac (and I +hear that Mr Russell has done a prophetical charm of the same gist out +of the Hindustanish for his farmer’s gazette) to have three things in +all but this a mere fetch without bottom of reason for old crones and +bairns yet sometimes they are found in the right guess with their +queerities no telling how. + +With this came up Lenehan to the feet of the table to say how the +letter was in that night’s gazette and he made a show to find it about +him (for he swore with an oath that he had been at pains about it) but +on Stephen’s persuasion he gave over the search and was bidden to sit +near by which he did mighty brisk. He was a kind of sport gentleman +that went for a merryandrew or honest pickle and what belonged of +women, horseflesh or hot scandal he had it pat. To tell the truth he +was mean in fortunes and for the most part hankered about the +coffeehouses and low taverns with crimps, ostlers, bookies, Paul’s men, +runners, flatcaps, waistcoateers, ladies of the bagnio and other rogues +of the game or with a chanceable catchpole or a tipstaff often at +nights till broad day of whom he picked up between his sackpossets much +loose gossip. He took his ordinary at a boilingcook’s and if he had but +gotten into him a mess of broken victuals or a platter of tripes with a +bare tester in his purse he could always bring himself off with his +tongue, some randy quip he had from a punk or whatnot that every +mother’s son of them would burst their sides. The other, Costello that +is, hearing this talk asked was it poetry or a tale. Faith, no, he +says, Frank (that was his name), ’tis all about Kerry cows that are to +be butchered along of the plague. But they can go hang, says he with a +wink, for me with their bully beef, a pox on it. There’s as good fish +in this tin as ever came out of it and very friendly he offered to take +of some salty sprats that stood by which he had eyed wishly in the +meantime and found the place which was indeed the chief design of his +embassy as he was sharpset. _Mort aux vaches_, says Frank then in the +French language that had been indentured to a brandyshipper that has a +winelodge in Bordeaux and he spoke French like a gentleman too. From a +child this Frank had been a donought that his father, a headborough, +who could ill keep him to school to learn his letters and the use of +the globes, matriculated at the university to study the mechanics but +he took the bit between his teeth like a raw colt and was more familiar +with the justiciary and the parish beadle than with his volumes. One +time he would be a playactor, then a sutler or a welsher, then nought +would keep him from the bearpit and the cocking main, then he was for +the ocean sea or to hoof it on the roads with the romany folk, +kidnapping a squire’s heir by favour of moonlight or fecking maids’ +linen or choking chicken behind a hedge. He had been off as many times +as a cat has lives and back again with naked pockets as many more to +his father the headborough who shed a pint of tears as often as he saw +him. What, says Mr Leopold with his hands across, that was earnest to +know the drift of it, will they slaughter all? I protest I saw them but +this day morning going to the Liverpool boats, says he. I can scarce +believe ’tis so bad, says he. And he had experience of the like brood +beasts and of springers, greasy hoggets and wether wool, having been +some years before actuary for Mr Joseph Cuffe, a worthy salesmaster +that drove his trade for live stock and meadow auctions hard by Mr +Gavin Low’s yard in Prussia street. I question with you there, says he. +More like ’tis the hoose or the timber tongue. Mr Stephen, a little +moved but very handsomely told him no such matter and that he had +dispatches from the emperor’s chief tailtickler thanking him for the +hospitality, that was sending over Doctor Rinderpest, the bestquoted +cowcatcher in all Muscovy, with a bolus or two of physic to take the +bull by the horns. Come, come, says Mr Vincent, plain dealing. He’ll +find himself on the horns of a dilemma if he meddles with a bull that’s +Irish, says he. Irish by name and irish by nature, says Mr Stephen, and +he sent the ale purling about, an Irish bull in an English chinashop. I +conceive you, says Mr Dixon. It is that same bull that was sent to our +island by farmer Nicholas, the bravest cattlebreeder of them all, with +an emerald ring in his nose. True for you, says Mr Vincent cross the +table, and a bullseye into the bargain, says he, and a plumper and a +portlier bull, says he, never shit on shamrock. He had horns galore, a +coat of cloth of gold and a sweet smoky breath coming out of his +nostrils so that the women of our island, leaving doughballs and +rollingpins, followed after him hanging his bulliness in daisychains. +What for that, says Mr Dixon, but before he came over farmer Nicholas +that was a eunuch had him properly gelded by a college of doctors who +were no better off than himself. So be off now, says he, and do all my +cousin german the lord Harry tells you and take a farmer’s blessing, +and with that he slapped his posteriors very soundly. But the slap and +the blessing stood him friend, says Mr Vincent, for to make up he +taught him a trick worth two of the other so that maid, wife, abbess +and widow to this day affirm that they would rather any time of the +month whisper in his ear in the dark of a cowhouse or get a lick on the +nape from his long holy tongue than lie with the finest strapping young +ravisher in the four fields of all Ireland. Another then put in his +word: And they dressed him, says he, in a point shift and petticoat +with a tippet and girdle and ruffles on his wrists and clipped his +forelock and rubbed him all over with spermacetic oil and built stables +for him at every turn of the road with a gold manger in each full of +the best hay in the market so that he could doss and dung to his +heart’s content. By this time the father of the faithful (for so they +called him) was grown so heavy that he could scarce walk to pasture. To +remedy which our cozening dames and damsels brought him his fodder in +their apronlaps and as soon as his belly was full he would rear up on +his hind quarters to show their ladyships a mystery and roar and bellow +out of him in bulls’ language and they all after him. Ay, says another, +and so pampered was he that he would suffer nought to grow in all the +land but green grass for himself (for that was the only colour to his +mind) and there was a board put up on a hillock in the middle of the +island with a printed notice, saying: By the Lord Harry, Green is the +grass that grows on the ground. And, says Mr Dixon, if ever he got +scent of a cattleraider in Roscommon or the wilds of Connemara or a +husbandman in Sligo that was sowing as much as a handful of mustard or +a bag of rapeseed out he’d run amok over half the countryside rooting +up with his horns whatever was planted and all by lord Harry’s orders. +There was bad blood between them at first, says Mr Vincent, and the +lord Harry called farmer Nicholas all the old Nicks in the world and an +old whoremaster that kept seven trulls in his house and I’ll meddle in +his matters, says he. I’ll make that animal smell hell, says he, with +the help of that good pizzle my father left me. But one evening, says +Mr Dixon, when the lord Harry was cleaning his royal pelt to go to +dinner after winning a boatrace (he had spade oars for himself but the +first rule of the course was that the others were to row with +pitchforks) he discovered in himself a wonderful likeness to a bull and +on picking up a blackthumbed chapbook that he kept in the pantry he +found sure enough that he was a lefthanded descendant of the famous +champion bull of the Romans, _Bos Bovum_, which is good bog Latin for +boss of the show. After that, says Mr Vincent, the lord Harry put his +head into a cow’s drinkingtrough in the presence of all his courtiers +and pulling it out again told them all his new name. Then, with the +water running off him, he got into an old smock and skirt that had +belonged to his grandmother and bought a grammar of the bulls’ language +to study but he could never learn a word of it except the first +personal pronoun which he copied out big and got off by heart and if +ever he went out for a walk he filled his pockets with chalk to write +it upon what took his fancy, the side of a rock or a teahouse table or +a bale of cotton or a corkfloat. In short, he and the bull of Ireland +were soon as fast friends as an arse and a shirt. They were, says Mr +Stephen, and the end was that the men of the island seeing no help was +toward, as the ungrate women were all of one mind, made a wherry raft, +loaded themselves and their bundles of chattels on shipboard, set all +masts erect, manned the yards, sprang their luff, heaved to, spread +three sheets in the wind, put her head between wind and water, weighed +anchor, ported her helm, ran up the jolly Roger, gave three times +three, let the bullgine run, pushed off in their bumboat and put to sea +to recover the main of America. Which was the occasion, says Mr +Vincent, of the composing by a boatswain of that rollicking chanty: + +_—Pope Peter’s but a pissabed. + +A man’s a man for a’ that._ + +Our worthy acquaintance Mr Malachi Mulligan now appeared in the doorway +as the students were finishing their apologue accompanied with a friend +whom he had just rencountered, a young gentleman, his name Alec Bannon, +who had late come to town, it being his intention to buy a colour or a +cornetcy in the fencibles and list for the wars. Mr Mulligan was civil +enough to express some relish of it all the more as it jumped with a +project of his own for the cure of the very evil that had been touched +on. Whereat he handed round to the company a set of pasteboard cards +which he had had printed that day at Mr Quinnell’s bearing a legend +printed in fair italics: _Mr Malachi Mulligan. Fertiliser and +Incubator. Lambay Island_. His project, as he went on to expound, was +to withdraw from the round of idle pleasures such as form the chief +business of sir Fopling Popinjay and sir Milksop Quidnunc in town and +to devote himself to the noblest task for which our bodily organism has +been framed. Well, let us hear of it, good my friend, said Mr Dixon. I +make no doubt it smacks of wenching. Come, be seated, both. ’Tis as +cheap sitting as standing. Mr Mulligan accepted of the invitation and, +expatiating upon his design, told his hearers that he had been led into +this thought by a consideration of the causes of sterility, both the +inhibitory and the prohibitory, whether the inhibition in its turn were +due to conjugal vexations or to a parsimony of the balance as well as +whether the prohibition proceeded from defects congenital or from +proclivities acquired. It grieved him plaguily, he said, to see the +nuptial couch defrauded of its dearest pledges: and to reflect upon so +many agreeable females with rich jointures, a prey to the vilest +bonzes, who hide their flambeau under a bushel in an uncongenial +cloister or lose their womanly bloom in the embraces of some +unaccountable muskin when they might multiply the inlets of happiness, +sacrificing the inestimable jewel of their sex when a hundred pretty +fellows were at hand to caress, this, he assured them, made his heart +weep. To curb this inconvenient (which he concluded due to a +suppression of latent heat), having advised with certain counsellors of +worth and inspected into this matter, he had resolved to purchase in +fee simple for ever the freehold of Lambay island from its holder, lord +Talbot de Malahide, a Tory gentleman of note much in favour with our +ascendancy party. He proposed to set up there a national fertilising +farm to be named _Omphalos_ with an obelisk hewn and erected after the +fashion of Egypt and to offer his dutiful yeoman services for the +fecundation of any female of what grade of life soever who should there +direct to him with the desire of fulfilling the functions of her +natural. Money was no object, he said, nor would he take a penny for +his pains. The poorest kitchenwench no less than the opulent lady of +fashion, if so be their constructions and their tempers were warm +persuaders for their petitions, would find in him their man. For his +nutriment he shewed how he would feed himself exclusively upon a diet +of savoury tubercles and fish and coneys there, the flesh of these +latter prolific rodents being highly recommended for his purpose, both +broiled and stewed with a blade of mace and a pod or two of capsicum +chillies. After this homily which he delivered with much warmth of +asseveration Mr Mulligan in a trice put off from his hat a kerchief +with which he had shielded it. They both, it seems, had been overtaken +by the rain and for all their mending their pace had taken water, as +might be observed by Mr Mulligan’s smallclothes of a hodden grey which +was now somewhat piebald. His project meanwhile was very favourably +entertained by his auditors and won hearty eulogies from all though Mr +Dixon of Mary’s excepted to it, asking with a finicking air did he +purpose also to carry coals to Newcastle. Mr Mulligan however made +court to the scholarly by an apt quotation from the classics which, as +it dwelt upon his memory, seemed to him a sound and tasteful support of +his contention: _Talis ac tanta depravatio hujus seculi, O quirites, ut +matresfamiliarum nostrae lascivas cujuslibet semiviri libici +titillationes testibus ponderosis atque excelsis erectionibus +centurionum Romanorum magnopere anteponunt_, while for those of ruder +wit he drove home his point by analogies of the animal kingdom more +suitable to their stomach, the buck and doe of the forest glade, the +farmyard drake and duck. + +Valuing himself not a little upon his elegance, being indeed a proper +man of person, this talkative now applied himself to his dress with +animadversions of some heat upon the sudden whimsy of the atmospherics +while the company lavished their encomiums upon the project he had +advanced. The young gentleman, his friend, overjoyed as he was at a +passage that had late befallen him, could not forbear to tell it his +nearest neighbour. Mr Mulligan, now perceiving the table, asked for +whom were those loaves and fishes and, seeing the stranger, he made him +a civil bow and said, Pray, sir, was you in need of any professional +assistance we could give? Who, upon his offer, thanked him very +heartily, though preserving his proper distance, and replied that he +was come there about a lady, now an inmate of Horne’s house, that was +in an interesting condition, poor body, from woman’s woe (and here he +fetched a deep sigh) to know if her happiness had yet taken place. Mr +Dixon, to turn the table, took on to ask of Mr Mulligan himself whether +his incipient ventripotence, upon which he rallied him, betokened an +ovoblastic gestation in the prostatic utricle or male womb or was due, +as with the noted physician, Mr Austin Meldon, to a wolf in the +stomach. For answer Mr Mulligan, in a gale of laughter at his smalls, +smote himself bravely below the diaphragm, exclaiming with an admirable +droll mimic of Mother Grogan (the most excellent creature of her sex +though ’tis pity she’s a trollop): There’s a belly that never bore a +bastard. This was so happy a conceit that it renewed the storm of mirth +and threw the whole room into the most violent agitations of delight. +The spry rattle had run on in the same vein of mimicry but for some +larum in the antechamber. + +Here the listener who was none other than the Scotch student, a little +fume of a fellow, blond as tow, congratulated in the liveliest fashion +with the young gentleman and, interrupting the narrative at a salient +point, having desired his visavis with a polite beck to have the +obligingness to pass him a flagon of cordial waters at the same time by +a questioning poise of the head (a whole century of polite breeding had +not achieved so nice a gesture) to which was united an equivalent but +contrary balance of the bottle asked the narrator as plainly as was +ever done in words if he might treat him with a cup of it. _Mais bien +sûr_, noble stranger, said he cheerily, _et mille compliments_. That +you may and very opportunely. There wanted nothing but this cup to +crown my felicity. But, gracious heaven, was I left with but a crust in +my wallet and a cupful of water from the well, my God, I would accept +of them and find it in my heart to kneel down upon the ground and give +thanks to the powers above for the happiness vouchsafed me by the Giver +of good things. With these words he approached the goblet to his lips, +took a complacent draught of the cordial, slicked his hair and, opening +his bosom, out popped a locket that hung from a silk riband, that very +picture which he had cherished ever since her hand had wrote therein. +Gazing upon those features with a world of tenderness, Ah, Monsieur, he +said, had you but beheld her as I did with these eyes at that affecting +instant with her dainty tucker and her new coquette cap (a gift for her +feastday as she told me prettily) in such an artless disorder, of so +melting a tenderness, ’pon my conscience, even you, Monsieur, had been +impelled by generous nature to deliver yourself wholly into the hands +of such an enemy or to quit the field for ever. I declare, I was never +so touched in all my life. God, I thank thee, as the Author of my days! +Thrice happy will he be whom so amiable a creature will bless with her +favours. A sigh of affection gave eloquence to these words and, having +replaced the locket in his bosom, he wiped his eye and sighed again. +Beneficent Disseminator of blessings to all Thy creatures, how great +and universal must be that sweetest of Thy tyrannies which can hold in +thrall the free and the bond, the simple swain and the polished +coxcomb, the lover in the heyday of reckless passion and the husband of +maturer years. But indeed, sir, I wander from the point. How mingled +and imperfect are all our sublunary joys. Maledicity! he exclaimed in +anguish. Would to God that foresight had but remembered me to take my +cloak along! I could weep to think of it. Then, though it had poured +seven showers, we were neither of us a penny the worse. But beshrew me, +he cried, clapping hand to his forehead, tomorrow will be a new day +and, thousand thunders, I know of a _marchand de capotes_, Monsieur +Poyntz, from whom I can have for a _livre_ as snug a cloak of the +French fashion as ever kept a lady from wetting. Tut, tut! cries Le +Fécondateur, tripping in, my friend Monsieur Moore, that most +accomplished traveller (I have just cracked a half bottle _avec lui_ in +a circle of the best wits of the town), is my authority that in Cape +Horn, _ventre biche_, they have a rain that will wet through any, even +the stoutest cloak. A drenching of that violence, he tells me, _sans +blague_, has sent more than one luckless fellow in good earnest +posthaste to another world. Pooh! A _livre!_ cries Monsieur Lynch. The +clumsy things are dear at a sou. One umbrella, were it no bigger than a +fairy mushroom, is worth ten such stopgaps. No woman of any wit would +wear one. My dear Kitty told me today that she would dance in a deluge +before ever she would starve in such an ark of salvation for, as she +reminded me (blushing piquantly and whispering in my ear though there +was none to snap her words but giddy butterflies), dame Nature, by the +divine blessing, has implanted it in our hearts and it has become a +household word that _il y a deux choses_ for which the innocence of our +original garb, in other circumstances a breach of the proprieties, is +the fittest, nay, the only garment. The first, said she (and here my +pretty philosopher, as I handed her to her tilbury, to fix my +attention, gently tipped with her tongue the outer chamber of my ear), +the first is a bath... But at this point a bell tinkling in the hall +cut short a discourse which promised so bravely for the enrichment of +our store of knowledge. + +Amid the general vacant hilarity of the assembly a bell rang and, while +all were conjecturing what might be the cause, Miss Callan entered and, +having spoken a few words in a low tone to young Mr Dixon, retired with +a profound bow to the company. The presence even for a moment among a +party of debauchees of a woman endued with every quality of modesty and +not less severe than beautiful refrained the humourous sallies even of +the most licentious but her departure was the signal for an outbreak of +ribaldry. Strike me silly, said Costello, a low fellow who was fuddled. +A monstrous fine bit of cowflesh! I’ll be sworn she has rendezvoused +you. What, you dog? Have you a way with them? Gad’s bud, immensely so, +said Mr Lynch. The bedside manner it is that they use in the Mater +hospice. Demme, does not Doctor O’Gargle chuck the nuns there under the +chin. As I look to be saved I had it from my Kitty who has been +wardmaid there any time these seven months. Lawksamercy, doctor, cried +the young blood in the primrose vest, feigning a womanish simper and +with immodest squirmings of his body, how you do tease a body! Drat the +man! Bless me, I’m all of a wibbly wobbly. Why, you’re as bad as dear +little Father Cantekissem, that you are! May this pot of four half +choke me, cried Costello, if she aint in the family way. I knows a lady +what’s got a white swelling quick as I claps eyes on her. The young +surgeon, however, rose and begged the company to excuse his retreat as +the nurse had just then informed him that he was needed in the ward. +Merciful providence had been pleased to put a period to the sufferings +of the lady who was _enceinte_ which she had borne with a laudable +fortitude and she had given birth to a bouncing boy. I want patience, +said he, with those who, without wit to enliven or learning to +instruct, revile an ennobling profession which, saving the reverence +due to the Deity, is the greatest power for happiness upon the earth. I +am positive when I say that if need were I could produce a cloud of +witnesses to the excellence of her noble exercitations which, so far +from being a byword, should be a glorious incentive in the human +breast. I cannot away with them. What? Malign such an one, the amiable +Miss Callan, who is the lustre of her own sex and the astonishment of +ours? And at an instant the most momentous that can befall a puny child +of clay? Perish the thought! I shudder to think of the future of a race +where the seeds of such malice have been sown and where no right +reverence is rendered to mother and maid in house of Horne. Having +delivered himself of this rebuke he saluted those present on the by and +repaired to the door. A murmur of approval arose from all and some were +for ejecting the low soaker without more ado, a design which would have +been effected nor would he have received more than his bare deserts had +he not abridged his transgression by affirming with a horrid +imprecation (for he swore a round hand) that he was as good a son of +the true fold as ever drew breath. Stap my vitals, said he, them was +always the sentiments of honest Frank Costello which I was bred up most +particular to honour thy father and thy mother that had the best hand +to a rolypoly or a hasty pudding as you ever see what I always looks +back on with a loving heart. + +To revert to Mr Bloom who, after his first entry, had been conscious of +some impudent mocks which he however had borne with as being the fruits +of that age upon which it is commonly charged that it knows not pity. +The young sparks, it is true, were as full of extravagancies as +overgrown children: the words of their tumultuary discussions were +difficultly understood and not often nice: their testiness and +outrageous _mots_ were such that his intellects resiled from: nor were +they scrupulously sensible of the proprieties though their fund of +strong animal spirits spoke in their behalf. But the word of Mr +Costello was an unwelcome language for him for he nauseated the wretch +that seemed to him a cropeared creature of a misshapen gibbosity, born +out of wedlock and thrust like a crookback toothed and feet first into +the world, which the dint of the surgeon’s pliers in his skull lent +indeed a colour to, so as to put him in thought of that missing link of +creation’s chain desiderated by the late ingenious Mr Darwin. It was +now for more than the middle span of our allotted years that he had +passed through the thousand vicissitudes of existence and, being of a +wary ascendancy and self a man of rare forecast, he had enjoined his +heart to repress all motions of a rising choler and, by intercepting +them with the readiest precaution, foster within his breast that +plenitude of sufferance which base minds jeer at, rash judgers scorn +and all find tolerable and but tolerable. To those who create +themselves wits at the cost of feminine delicacy (a habit of mind which +he never did hold with) to them he would concede neither to bear the +name nor to herit the tradition of a proper breeding: while for such +that, having lost all forbearance, can lose no more, there remained the +sharp antidote of experience to cause their insolency to beat a +precipitate and inglorious retreat. Not but what he could feel with +mettlesome youth which, caring nought for the mows of dotards or the +gruntlings of the severe, is ever (as the chaste fancy of the Holy +Writer expresses it) for eating of the tree forbid it yet not so far +forth as to pretermit humanity upon any condition soever towards a +gentlewoman when she was about her lawful occasions. To conclude, while +from the sister’s words he had reckoned upon a speedy delivery he was, +however, it must be owned, not a little alleviated by the intelligence +that the issue so auspicated after an ordeal of such duress now +testified once more to the mercy as well as to the bounty of the +Supreme Being. + +Accordingly he broke his mind to his neighbour, saying that, to express +his notion of the thing, his opinion (who ought not perchance to +express one) was that one must have a cold constitution and a frigid +genius not to be rejoiced by this freshest news of the fruition of her +confinement since she had been in such pain through no fault of hers. +The dressy young blade said it was her husband’s that put her in that +expectation or at least it ought to be unless she were another Ephesian +matron. I must acquaint you, said Mr Crotthers, clapping on the table +so as to evoke a resonant comment of emphasis, old Glory Allelujurum +was round again today, an elderly man with dundrearies, preferring +through his nose a request to have word of Wilhelmina, my life, as he +calls her. I bade him hold himself in readiness for that the event +would burst anon. ’Slife, I’ll be round with you. I cannot but extol +the virile potency of the old bucko that could still knock another +child out of her. All fell to praising of it, each after his own +fashion, though the same young blade held with his former view that +another than her conjugial had been the man in the gap, a clerk in +orders, a linkboy (virtuous) or an itinerant vendor of articles needed +in every household. Singular, communed the guest with himself, the +wonderfully unequal faculty of metempsychosis possessed by them, that +the puerperal dormitory and the dissecting theatre should be the +seminaries of such frivolity, that the mere acquisition of academic +titles should suffice to transform in a pinch of time these votaries of +levity into exemplary practitioners of an art which most men anywise +eminent have esteemed the noblest. But, he further added, it is mayhap +to relieve the pentup feelings that in common oppress them for I have +more than once observed that birds of a feather laugh together. + +But with what fitness, let it be asked of the noble lord, his patron, +has this alien, whom the concession of a gracious prince has admitted +to civic rights, constituted himself the lord paramount of our internal +polity? Where is now that gratitude which loyalty should have +counselled? During the recent war whenever the enemy had a temporary +advantage with his granados did this traitor to his kind not seize that +moment to discharge his piece against the empire of which he is a +tenant at will while he trembled for the security of his four per +cents? Has he forgotten this as he forgets all benefits received? Or is +it that from being a deluder of others he has become at last his own +dupe as he is, if report belie him not, his own and his only enjoyer? +Far be it from candour to violate the bedchamber of a respectable lady, +the daughter of a gallant major, or to cast the most distant +reflections upon her virtue but if he challenges attention there (as it +was indeed highly his interest not to have done) then be it so. Unhappy +woman, she has been too long and too persistently denied her legitimate +prerogative to listen to his objurgations with any other feeling than +the derision of the desperate. He says this, a censor of morals, a very +pelican in his piety, who did not scruple, oblivious of the ties of +nature, to attempt illicit intercourse with a female domestic drawn +from the lowest strata of society! Nay, had the hussy’s scouringbrush +not been her tutelary angel, it had gone with her as hard as with +Hagar, the Egyptian! In the question of the grazing lands his peevish +asperity is notorious and in Mr Cuffe’s hearing brought upon him from +an indignant rancher a scathing retort couched in terms as +straightforward as they were bucolic. It ill becomes him to preach that +gospel. Has he not nearer home a seedfield that lies fallow for the +want of the ploughshare? A habit reprehensible at puberty is second +nature and an opprobrium in middle life. If he must dispense his balm +of Gilead in nostrums and apothegms of dubious taste to restore to +health a generation of unfledged profligates let his practice consist +better with the doctrines that now engross him. His marital breast is +the repository of secrets which decorum is reluctant to adduce. The +lewd suggestions of some faded beauty may console him for a consort +neglected and debauched but this new exponent of morals and healer of +ills is at his best an exotic tree which, when rooted in its native +orient, throve and flourished and was abundant in balm but, +transplanted to a clime more temperate, its roots have lost their +quondam vigour while the stuff that comes away from it is stagnant, +acid and inoperative. + +The news was imparted with a circumspection recalling the ceremonial +usage of the Sublime Porte by the second female infirmarian to the +junior medical officer in residence, who in his turn announced to the +delegation that an heir had been born. When he had betaken himself to +the women’s apartment to assist at the prescribed ceremony of the +afterbirth in the presence of the secretary of state for domestic +affairs and the members of the privy council, silent in unanimous +exhaustion and approbation the delegates, chafing under the length and +solemnity of their vigil and hoping that the joyful occurrence would +palliate a licence which the simultaneous absence of abigail and +obstetrician rendered the easier, broke out at once into a strife of +tongues. In vain the voice of Mr Canvasser Bloom was heard endeavouring +to urge, to mollify, to refrain. The moment was too propitious for the +display of that discursiveness which seemed the only bond of union +among tempers so divergent. Every phase of the situation was +successively eviscerated: the prenatal repugnance of uterine brothers, +the Caesarean section, posthumity with respect to the father and, that +rarer form, with respect to the mother, the fratricidal case known as +the Childs Murder and rendered memorable by the impassioned plea of Mr +Advocate Bushe which secured the acquittal of the wrongfully accused, +the rights of primogeniture and king’s bounty touching twins and +triplets, miscarriages and infanticides, simulated or dissimulated, the +acardiac _foetus in foetu_ and aprosopia due to a congestion, the +agnathia of certain chinless Chinamen (cited by Mr Candidate Mulligan) +in consequence of defective reunion of the maxillary knobs along the +medial line so that (as he said) one ear could hear what the other +spoke, the benefits of anesthesia or twilight sleep, the prolongation +of labour pains in advanced gravidancy by reason of pressure on the +vein, the premature relentment of the amniotic fluid (as exemplified in +the actual case) with consequent peril of sepsis to the matrix, +artificial insemination by means of syringes, involution of the womb +consequent upon the menopause, the problem of the perpetration of the +species in the case of females impregnated by delinquent rape, that +distressing manner of delivery called by the Brandenburghers +_Sturzgeburt,_ the recorded instances of multiseminal, twikindled and +monstrous births conceived during the catamenic period or of +consanguineous parents—in a word all the cases of human nativity which +Aristotle has classified in his masterpiece with chromolithographic +illustrations. The gravest problems of obstetrics and forensic medicine +were examined with as much animation as the most popular beliefs on the +state of pregnancy such as the forbidding to a gravid woman to step +over a countrystile lest, by her movement, the navelcord should +strangle her creature and the injunction upon her in the event of a +yearning, ardently and ineffectually entertained, to place her hand +against that part of her person which long usage has consecrated as the +seat of castigation. The abnormalities of harelip, breastmole, +supernumerary digits, negro’s inkle, strawberry mark and portwine stain +were alleged by one as a _prima facie_ and natural hypothetical +explanation of those swineheaded (the case of Madame Grissel Steevens +was not forgotten) or doghaired infants occasionally born. The +hypothesis of a plasmic memory, advanced by the Caledonian envoy and +worthy of the metaphysical traditions of the land he stood for, +envisaged in such cases an arrest of embryonic development at some +stage antecedent to the human. An outlandish delegate sustained against +both these views, with such heat as almost carried conviction, the +theory of copulation between women and the males of brutes, his +authority being his own avouchment in support of fables such as that of +the Minotaur which the genius of the elegant Latin poet has handed down +to us in the pages of his Metamorphoses. The impression made by his +words was immediate but shortlived. It was effaced as easily as it had +been evoked by an allocution from Mr Candidate Mulligan in that vein of +pleasantry which none better than he knew how to affect, postulating as +the supremest object of desire a nice clean old man. Contemporaneously, +a heated argument having arisen between Mr Delegate Madden and Mr +Candidate Lynch regarding the juridical and theological dilemma created +in the event of one Siamese twin predeceasing the other, the difficulty +by mutual consent was referred to Mr Canvasser Bloom for instant +submittal to Mr Coadjutor Deacon Dedalus. Hitherto silent, whether the +better to show by preternatural gravity that curious dignity of the +garb with which he was invested or in obedience to an inward voice, he +delivered briefly and, as some thought, perfunctorily the +ecclesiastical ordinance forbidding man to put asunder what God has +joined. + +But Malachias’ tale began to freeze them with horror. He conjured up +the scene before them. The secret panel beside the chimney slid back +and in the recess appeared... Haines! Which of us did not feel his +flesh creep! He had a portfolio full of Celtic literature in one hand, +in the other a phial marked _Poison._ Surprise, horror, loathing were +depicted on all faces while he eyed them with a ghostly grin. I +anticipated some such reception, he began with an eldritch laugh, for +which, it seems, history is to blame. Yes, it is true. I am the +murderer of Samuel Childs. And how I am punished! The inferno has no +terrors for me. This is the appearance is on me. Tare and ages, what +way would I be resting at all, he muttered thickly, and I tramping +Dublin this while back with my share of songs and himself after me the +like of a soulth or a bullawurrus? My hell, and Ireland’s, is in this +life. It is what I tried to obliterate my crime. Distractions, +rookshooting, the Erse language (he recited some), laudanum (he raised +the phial to his lips), camping out. In vain! His spectre stalks me. +Dope is my only hope... Ah! Destruction! The black panther! With a cry +he suddenly vanished and the panel slid back. An instant later his head +appeared in the door opposite and said: Meet me at Westland Row station +at ten past eleven. He was gone. Tears gushed from the eyes of the +dissipated host. The seer raised his hand to heaven, murmuring: The +vendetta of Mananaun! The sage repeated: _Lex talionis_. The +sentimentalist is he who would enjoy without incurring the immense +debtorship for a thing done. Malachias, overcome by emotion, ceased. +The mystery was unveiled. Haines was the third brother. His real name +was Childs. The black panther was himself the ghost of his own father. +He drank drugs to obliterate. For this relief much thanks. The lonely +house by the graveyard is uninhabited. No soul will live there. The +spider pitches her web in the solitude. The nocturnal rat peers from +his hole. A curse is on it. It is haunted. Murderer’s ground. + +What is the age of the soul of man? As she hath the virtue of the +chameleon to change her hue at every new approach, to be gay with the +merry and mournful with the downcast, so too is her age changeable as +her mood. No longer is Leopold, as he sits there, ruminating, chewing +the cud of reminiscence, that staid agent of publicity and holder of a +modest substance in the funds. A score of years are blown away. He is +young Leopold. There, as in a retrospective arrangement, a mirror +within a mirror (hey, presto!), he beholdeth himself. That young figure +of then is seen, precociously manly, walking on a nipping morning from +the old house in Clanbrassil street to the high school, his booksatchel +on him bandolierwise, and in it a goodly hunk of wheaten loaf, a +mother’s thought. Or it is the same figure, a year or so gone over, in +his first hard hat (ah, that was a day!), already on the road, a +fullfledged traveller for the family firm, equipped with an orderbook, +a scented handkerchief (not for show only), his case of bright +trinketware (alas! a thing now of the past!) and a quiverful of +compliant smiles for this or that halfwon housewife reckoning it out +upon her fingertips or for a budding virgin, shyly acknowledging (but +the heart? tell me!) his studied baisemoins. The scent, the smile, but, +more than these, the dark eyes and oleaginous address, brought home at +duskfall many a commission to the head of the firm, seated with Jacob’s +pipe after like labours in the paternal ingle (a meal of noodles, you +may be sure, is aheating), reading through round horned spectacles some +paper from the Europe of a month before. But hey, presto, the mirror is +breathed on and the young knighterrant recedes, shrivels, dwindles to a +tiny speck within the mist. Now he is himself paternal and these about +him might be his sons. Who can say? The wise father knows his own +child. He thinks of a drizzling night in Hatch street, hard by the +bonded stores there, the first. Together (she is a poor waif, a child +of shame, yours and mine and of all for a bare shilling and her +luckpenny), together they hear the heavy tread of the watch as two +raincaped shadows pass the new royal university. Bridie! Bridie Kelly! +He will never forget the name, ever remember the night: first night, +the bridenight. They are entwined in nethermost darkness, the willer +with the willed, and in an instant (_fiat!_) light shall flood the +world. Did heart leap to heart? Nay, fair reader. In a breath ’twas +done but—hold! Back! It must not be! In terror the poor girl flees away +through the murk. She is the bride of darkness, a daughter of night. +She dare not bear the sunnygolden babe of day. No, Leopold. Name and +memory solace thee not. That youthful illusion of thy strength was +taken from thee—and in vain. No son of thy loins is by thee. There is +none now to be for Leopold, what Leopold was for Rudolph. + +The voices blend and fuse in clouded silence: silence that is the +infinite of space: and swiftly, silently the soul is wafted over +regions of cycles of generations that have lived. A region where grey +twilight ever descends, never falls on wide sagegreen pasturefields, +shedding her dusk, scattering a perennial dew of stars. She follows her +mother with ungainly steps, a mare leading her fillyfoal. Twilight +phantoms are they, yet moulded in prophetic grace of structure, slim +shapely haunches, a supple tendonous neck, the meek apprehensive skull. +They fade, sad phantoms: all is gone. Agendath is a waste land, a home +of screechowls and the sandblind upupa. Netaim, the golden, is no more. +And on the highway of the clouds they come, muttering thunder of +rebellion, the ghosts of beasts. Huuh! Hark! Huuh! Parallax stalks +behind and goads them, the lancinating lightnings of whose brow are +scorpions. Elk and yak, the bulls of Bashan and of Babylon, mammoth and +mastodon, they come trooping to the sunken sea, _Lacus Mortis_. Ominous +revengeful zodiacal host! They moan, passing upon the clouds, horned +and capricorned, the trumpeted with the tusked, the lionmaned, the +giantantlered, snouter and crawler, rodent, ruminant and pachyderm, all +their moving moaning multitude, murderers of the sun. + +Onward to the dead sea they tramp to drink, unslaked and with horrible +gulpings, the salt somnolent inexhaustible flood. And the equine +portent grows again, magnified in the deserted heavens, nay to heaven’s +own magnitude, till it looms, vast, over the house of Virgo. And lo, +wonder of metempsychosis, it is she, the everlasting bride, harbinger +of the daystar, the bride, ever virgin. It is she, Martha, thou lost +one, Millicent, the young, the dear, the radiant. How serene does she +now arise, a queen among the Pleiades, in the penultimate antelucan +hour, shod in sandals of bright gold, coifed with a veil of what do you +call it gossamer. It floats, it flows about her starborn flesh and +loose it streams, emerald, sapphire, mauve and heliotrope, sustained on +currents of the cold interstellar wind, winding, coiling, simply +swirling, writhing in the skies a mysterious writing till, after a +myriad metamorphoses of symbol, it blazes, Alpha, a ruby and triangled +sign upon the forehead of Taurus. + +Francis was reminding Stephen of years before when they had been at +school together in Conmee’s time. He asked about Glaucon, Alcibiades, +Pisistratus. Where were they now? Neither knew. You have spoken of the +past and its phantoms, Stephen said. Why think of them? If I call them +into life across the waters of Lethe will not the poor ghosts troop to +my call? Who supposes it? I, Bous Stephanoumenos, bullockbefriending +bard, am lord and giver of their life. He encircled his gadding hair +with a coronal of vineleaves, smiling at Vincent. That answer and those +leaves, Vincent said to him, will adorn you more fitly when something +more, and greatly more, than a capful of light odes can call your +genius father. All who wish you well hope this for you. All desire to +see you bring forth the work you meditate, to acclaim you +Stephaneforos. I heartily wish you may not fail them. O no, Vincent +Lenehan said, laying a hand on the shoulder near him. Have no fear. He +could not leave his mother an orphan. The young man’s face grew dark. +All could see how hard it was for him to be reminded of his promise and +of his recent loss. He would have withdrawn from the feast had not the +noise of voices allayed the smart. Madden had lost five drachmas on +Sceptre for a whim of the rider’s name: Lenehan as much more. He told +them of the race. The flag fell and, huuh! off, scamper, the mare ran +out freshly with O. Madden up. She was leading the field. All hearts +were beating. Even Phyllis could not contain herself. She waved her +scarf and cried: Huzzah! Sceptre wins! But in the straight on the run +home when all were in close order the dark horse Throwaway drew level, +reached, outstripped her. All was lost now. Phyllis was silent: her +eyes were sad anemones. Juno, she cried, I am undone. But her lover +consoled her and brought her a bright casket of gold in which lay some +oval sugarplums which she partook. A tear fell: one only. A whacking +fine whip, said Lenehan, is W. Lane. Four winners yesterday and three +today. What rider is like him? Mount him on the camel or the boisterous +buffalo the victory in a hack canter is still his. But let us bear it +as was the ancient wont. Mercy on the luckless! Poor Sceptre! he said +with a light sigh. She is not the filly that she was. Never, by this +hand, shall we behold such another. By gad, sir, a queen of them. Do +you remember her, Vincent? I wish you could have seen my queen today, +Vincent said. How young she was and radiant (Lalage were scarce fair +beside her) in her yellow shoes and frock of muslin, I do not know the +right name of it. The chestnuts that shaded us were in bloom: the air +drooped with their persuasive odour and with pollen floating by us. In +the sunny patches one might easily have cooked on a stone a batch of +those buns with Corinth fruit in them that Periplipomenes sells in his +booth near the bridge. But she had nought for her teeth but the arm +with which I held her and in that she nibbled mischievously when I +pressed too close. A week ago she lay ill, four days on the couch, but +today she was free, blithe, mocked at peril. She is more taking then. +Her posies too! Mad romp that she is, she had pulled her fill as we +reclined together. And in your ear, my friend, you will not think who +met us as we left the field. Conmee himself! He was walking by the +hedge, reading, I think a brevier book with, I doubt not, a witty +letter in it from Glycera or Chloe to keep the page. The sweet creature +turned all colours in her confusion, feigning to reprove a slight +disorder in her dress: a slip of underwood clung there for the very +trees adore her. When Conmee had passed she glanced at her lovely echo +in that little mirror she carries. But he had been kind. In going by he +had blessed us. The gods too are ever kind, Lenehan said. If I had poor +luck with Bass’s mare perhaps this draught of his may serve me more +propensely. He was laying his hand upon a winejar: Malachi saw it and +withheld his act, pointing to the stranger and to the scarlet label. +Warily, Malachi whispered, preserve a druid silence. His soul is far +away. It is as painful perhaps to be awakened from a vision as to be +born. Any object, intensely regarded, may be a gate of access to the +incorruptible eon of the gods. Do you not think it, Stephen? Theosophos +told me so, Stephen answered, whom in a previous existence Egyptian +priests initiated into the mysteries of karmic law. The lords of the +moon, Theosophos told me, an orangefiery shipload from planet Alpha of +the lunar chain would not assume the etheric doubles and these were +therefore incarnated by the rubycoloured egos from the second +constellation. + +However, as a matter of fact though, the preposterous surmise about him +being in some description of a doldrums or other or mesmerised which +was entirely due to a misconception of the shallowest character, was +not the case at all. The individual whose visual organs while the above +was going on were at this juncture commencing to exhibit symptoms of +animation was as astute if not astuter than any man living and anybody +that conjectured the contrary would have found themselves pretty +speedily in the wrong shop. During the past four minutes or thereabouts +he had been staring hard at a certain amount of number one Bass bottled +by Messrs Bass and Co at Burton-on-Trent which happened to be situated +amongst a lot of others right opposite to where he was and which was +certainly calculated to attract anyone’s remark on account of its +scarlet appearance. He was simply and solely, as it subsequently +transpired for reasons best known to himself, which put quite an +altogether different complexion on the proceedings, after the moment +before’s observations about boyhood days and the turf, recollecting two +or three private transactions of his own which the other two were as +mutually innocent of as the babe unborn. Eventually, however, both +their eyes met and as soon as it began to dawn on him that the other +was endeavouring to help himself to the thing he involuntarily +determined to help him himself and so he accordingly took hold of the +neck of the mediumsized glass recipient which contained the fluid +sought after and made a capacious hole in it by pouring a lot of it out +with, also at the same time, however, a considerable degree of +attentiveness in order not to upset any of the beer that was in it +about the place. + +The debate which ensued was in its scope and progress an epitome of the +course of life. Neither place nor council was lacking in dignity. The +debaters were the keenest in the land, the theme they were engaged on +the loftiest and most vital. The high hall of Horne’s house had never +beheld an assembly so representative and so varied nor had the old +rafters of that establishment ever listened to a language so +encyclopaedic. A gallant scene in truth it made. Crotthers was there at +the foot of the table in his striking Highland garb, his face glowing +from the briny airs of the Mull of Galloway. There too, opposite to +him, was Lynch whose countenance bore already the stigmata of early +depravity and premature wisdom. Next the Scotchman was the place +assigned to Costello, the eccentric, while at his side was seated in +stolid repose the squat form of Madden. The chair of the resident +indeed stood vacant before the hearth but on either flank of it the +figure of Bannon in explorer’s kit of tweed shorts and salted cowhide +brogues contrasted sharply with the primrose elegance and townbred +manners of Malachi Roland St John Mulligan. Lastly at the head of the +board was the young poet who found a refuge from his labours of +pedagogy and metaphysical inquisition in the convivial atmosphere of +Socratic discussion, while to right and left of him were accommodated +the flippant prognosticator, fresh from the hippodrome, and that +vigilant wanderer, soiled by the dust of travel and combat and stained +by the mire of an indelible dishonour, but from whose steadfast and +constant heart no lure or peril or threat or degradation could ever +efface the image of that voluptuous loveliness which the inspired +pencil of Lafayette has limned for ages yet to come. + +It had better be stated here and now at the outset that the perverted +transcendentalism to which Mr S. Dedalus’ (Div. Scep.) contentions +would appear to prove him pretty badly addicted runs directly counter +to accepted scientific methods. Science, it cannot be too often +repeated, deals with tangible phenomena. The man of science like the +man in the street has to face hardheaded facts that cannot be blinked +and explain them as best he can. There may be, it is true, some +questions which science cannot answer—at present—such as the first +problem submitted by Mr L. Bloom (Pubb. Canv.) regarding the future +determination of sex. Must we accept the view of Empedocles of +Trinacria that the right ovary (the postmenstrual period, assert +others) is responsible for the birth of males or are the too long +neglected spermatozoa or nemasperms the differentiating factors or is +it, as most embryologists incline to opine, such as Culpepper, +Spallanzani, Blumenbach, Lusk, Hertwig, Leopold and Valenti, a mixture +of both? This would be tantamount to a cooperation (one of nature’s +favourite devices) between the _nisus formativus_ of the nemasperm on +the one hand and on the other a happily chosen position, _succubitus +felix_, of the passive element. The other problem raised by the same +inquirer is scarcely less vital: infant mortality. It is interesting +because, as he pertinently remarks, we are all born in the same way but +we all die in different ways. Mr M. Mulligan (Hyg. et Eug. Doc.) blames +the sanitary conditions in which our greylunged citizens contract +adenoids, pulmonary complaints etc. by inhaling the bacteria which lurk +in dust. These factors, he alleged, and the revolting spectacles +offered by our streets, hideous publicity posters, religious ministers +of all denominations, mutilated soldiers and sailors, exposed scorbutic +cardrivers, the suspended carcases of dead animals, paranoic bachelors +and unfructified duennas—these, he said, were accountable for any and +every fallingoff in the calibre of the race. Kalipedia, he prophesied, +would soon be generally adopted and all the graces of life, genuinely +good music, agreeable literature, light philosophy, instructive +pictures, plastercast reproductions of the classical statues such as +Venus and Apollo, artistic coloured photographs of prize babies, all +these little attentions would enable ladies who were in a particular +condition to pass the intervening months in a most enjoyable manner. Mr +J. Crotthers (Disc. Bacc.) attributes some of these demises to +abdominal trauma in the case of women workers subjected to heavy +labours in the workshop and to marital discipline in the home but by +far the vast majority to neglect, private or official, culminating in +the exposure of newborn infants, the practice of criminal abortion or +in the atrocious crime of infanticide. Although the former (we are +thinking of neglect) is undoubtedly only too true the case he cites of +nurses forgetting to count the sponges in the peritoneal cavity is too +rare to be normative. In fact when one comes to look into it the wonder +is that so many pregnancies and deliveries go off so well as they do, +all things considered and in spite of our human shortcomings which +often baulk nature in her intentions. An ingenious suggestion is that +thrown out by Mr V. Lynch (Bacc. Arith.) that both natality and +mortality, as well as all other phenomena of evolution, tidal +movements, lunar phases, blood temperatures, diseases in general, +everything, in fine, in nature’s vast workshop from the extinction of +some remote sun to the blossoming of one of the countless flowers which +beautify our public parks is subject to a law of numeration as yet +unascertained. Still the plain straightforward question why a child of +normally healthy parents and seemingly a healthy child and properly +looked after succumbs unaccountably in early childhood (though other +children of the same marriage do not) must certainly, in the poet’s +words, give us pause. Nature, we may rest assured, has her own good and +cogent reasons for whatever she does and in all probability such deaths +are due to some law of anticipation by which organisms in which morbous +germs have taken up their residence (modern science has conclusively +shown that only the plasmic substance can be said to be immortal) tend +to disappear at an increasingly earlier stage of development, an +arrangement which, though productive of pain to some of our feelings +(notably the maternal), is nevertheless, some of us think, in the long +run beneficial to the race in general in securing thereby the survival +of the fittest. Mr S. Dedalus’ (Div. Scep.) remark (or should it be +called an interruption?) that an omnivorous being which can masticate, +deglute, digest and apparently pass through the ordinary channel with +pluterperfect imperturbability such multifarious aliments as cancrenous +females emaciated by parturition, corpulent professional gentlemen, not +to speak of jaundiced politicians and chlorotic nuns, might possibly +find gastric relief in an innocent collation of staggering bob, reveals +as nought else could and in a very unsavoury light the tendency above +alluded to. For the enlightenment of those who are not so intimately +acquainted with the minutiae of the municipal abattoir as this +morbidminded esthete and embryo philosopher who for all his overweening +bumptiousness in things scientific can scarcely distinguish an acid +from an alkali prides himself on being, it should perhaps be stated +that staggering bob in the vile parlance of our lowerclass licensed +victuallers signifies the cookable and eatable flesh of a calf newly +dropped from its mother. In a recent public controversy with Mr L. +Bloom (Pubb. Canv.) which took place in the commons’ hall of the +National Maternity Hospital, 29, 30 and 31 Holles street, of which, as +is well known, Dr A. Horne (Lic. in Midw., F. K. Q. C. P. I.) is the +able and popular master, he is reported by eyewitnesses as having +stated that once a woman has let the cat into the bag (an esthete’s +allusion, presumably, to one of the most complicated and marvellous of +all nature’s processes—the act of sexual congress) she must let it out +again or give it life, as he phrased it, to save her own. At the risk +of her own, was the telling rejoinder of his interlocutor, none the +less effective for the moderate and measured tone in which it was +delivered. + +Meanwhile the skill and patience of the physician had brought about a +happy _accouchement._ It had been a weary weary while both for patient +and doctor. All that surgical skill could do was done and the brave +woman had manfully helped. She had. She had fought the good fight and +now she was very very happy. Those who have passed on, who have gone +before, are happy too as they gaze down and smile upon the touching +scene. Reverently look at her as she reclines there with the +motherlight in her eyes, that longing hunger for baby fingers (a pretty +sight it is to see), in the first bloom of her new motherhood, +breathing a silent prayer of thanksgiving to One above, the Universal +Husband. And as her loving eyes behold her babe she wishes only one +blessing more, to have her dear Doady there with her to share her joy, +to lay in his arms that mite of God’s clay, the fruit of their lawful +embraces. He is older now (you and I may whisper it) and a trifle +stooped in the shoulders yet in the whirligig of years a grave dignity +has come to the conscientious second accountant of the Ulster bank, +College Green branch. O Doady, loved one of old, faithful lifemate now, +it may never be again, that faroff time of the roses! With the old +shake of her pretty head she recalls those days. God! How beautiful now +across the mist of years! But their children are grouped in her +imagination about the bedside, hers and his, Charley, Mary Alice, +Frederick Albert (if he had lived), Mamy, Budgy (Victoria Frances), +Tom, Violet Constance Louisa, darling little Bobsy (called after our +famous hero of the South African war, lord Bobs of Waterford and +Candahar) and now this last pledge of their union, a Purefoy if ever +there was one, with the true Purefoy nose. Young hopeful will be +christened Mortimer Edward after the influential third cousin of Mr +Purefoy in the Treasury Remembrancer’s office, Dublin Castle. And so +time wags on: but father Cronion has dealt lightly here. No, let no +sigh break from that bosom, dear gentle Mina. And Doady, knock the +ashes from your pipe, the seasoned briar you still fancy when the +curfew rings for you (may it be the distant day!) and dout the light +whereby you read in the Sacred Book for the oil too has run low, and so +with a tranquil heart to bed, to rest. He knows and will call in His +own good time. You too have fought the good fight and played loyally +your man’s part. Sir, to you my hand. Well done, thou good and faithful +servant! + +There are sins or (let us call them as the world calls them) evil +memories which are hidden away by man in the darkest places of the +heart but they abide there and wait. He may suffer their memory to grow +dim, let them be as though they had not been and all but persuade +himself that they were not or at least were otherwise. Yet a chance +word will call them forth suddenly and they will rise up to confront +him in the most various circumstances, a vision or a dream, or while +timbrel and harp soothe his senses or amid the cool silver tranquility +of the evening or at the feast, at midnight, when he is now filled with +wine. Not to insult over him will the vision come as over one that lies +under her wrath, not for vengeance to cut him off from the living but +shrouded in the piteous vesture of the past, silent, remote, +reproachful. + +The stranger still regarded on the face before him a slow recession of +that false calm there, imposed, as it seemed, by habit or some studied +trick, upon words so embittered as to accuse in their speaker an +unhealthiness, a _flair,_ for the cruder things of life. A scene +disengages itself in the observer’s memory, evoked, it would seem, by a +word of so natural a homeliness as if those days were really present +there (as some thought) with their immediate pleasures. A shaven space +of lawn one soft May evening, the wellremembered grove of lilacs at +Roundtown, purple and white, fragrant slender spectators of the game +but with much real interest in the pellets as they run slowly forward +over the sward or collide and stop, one by its fellow, with a brief +alert shock. And yonder about that grey urn where the water moves at +times in thoughtful irrigation you saw another as fragrant sisterhood, +Floey, Atty, Tiny and their darker friend with I know not what of +arresting in her pose then, Our Lady of the Cherries, a comely brace of +them pendent from an ear, bringing out the foreign warmth of the skin +so daintily against the cool ardent fruit. A lad of four or five in +linseywoolsey (blossomtime but there will be cheer in the kindly hearth +when ere long the bowls are gathered and hutched) is standing on the +urn secured by that circle of girlish fond hands. He frowns a little +just as this young man does now with a perhaps too conscious enjoyment +of the danger but must needs glance at whiles towards where his mother +watches from the _piazzetta_ giving upon the flowerclose with a faint +shadow of remoteness or of reproach (_alles Vergängliche_) in her glad +look. + +Mark this farther and remember. The end comes suddenly. Enter that +antechamber of birth where the studious are assembled and note their +faces. Nothing, as it seems, there of rash or violent. Quietude of +custody, rather, befitting their station in that house, the vigilant +watch of shepherds and of angels about a crib in Bethlehem of Juda long +ago. But as before the lightning the serried stormclouds, heavy with +preponderant excess of moisture, in swollen masses turgidly distended, +compass earth and sky in one vast slumber, impending above parched +field and drowsy oxen and blighted growth of shrub and verdure till in +an instant a flash rives their centres and with the reverberation of +the thunder the cloudburst pours its torrent, so and not otherwise was +the transformation, violent and instantaneous, upon the utterance of +the word. + +Burke’s! outflings my lord Stephen, giving the cry, and a tag and +bobtail of all them after, cockerel, jackanapes, welsher, pilldoctor, +punctual Bloom at heels with a universal grabbing at headgear, +ashplants, bilbos, Panama hats and scabbards, Zermatt alpenstocks and +what not. A dedale of lusty youth, noble every student there. Nurse +Callan taken aback in the hallway cannot stay them nor smiling surgeon +coming downstairs with news of placentation ended, a full pound if a +milligramme. They hark him on. The door! It is open? Ha! They are out, +tumultuously, off for a minute’s race, all bravely legging it, Burke’s +of Denzille and Holles their ulterior goal. Dixon follows giving them +sharp language but raps out an oath, he too, and on. Bloom stays with +nurse a thought to send a kind word to happy mother and nurseling up +there. Doctor Diet and Doctor Quiet. Looks she too not other now? Ward +of watching in Horne’s house has told its tale in that washedout +pallor. Then all being gone, a glance of motherwit helping, he whispers +close in going: Madam, when comes the storkbird for thee? + +The air without is impregnated with raindew moisture, life essence +celestial, glistening on Dublin stone there under starshiny _coelum._ +God’s air, the Allfather’s air, scintillant circumambient cessile air. +Breathe it deep into thee. By heaven, Theodore Purefoy, thou hast done +a doughty deed and no botch! Thou art, I vow, the remarkablest +progenitor barring none in this chaffering allincluding most +farraginous chronicle. Astounding! In her lay a Godframed Godgiven +preformed possibility which thou hast fructified with thy modicum of +man’s work. Cleave to her! Serve! Toil on, labour like a very bandog +and let scholarment and all Malthusiasts go hang. Thou art all their +daddies, Theodore. Art drooping under thy load, bemoiled with butcher’s +bills at home and ingots (not thine!) in the countinghouse? Head up! +For every newbegotten thou shalt gather thy homer of ripe wheat. See, +thy fleece is drenched. Dost envy Darby Dullman there with his Joan? A +canting jay and a rheumeyed curdog is all their progeny. Pshaw, I tell +thee! He is a mule, a dead gasteropod, without vim or stamina, not +worth a cracked kreutzer. Copulation without population! No, say I! +Herod’s slaughter of the innocents were the truer name. Vegetables, +forsooth, and sterile cohabitation! Give her beefsteaks, red, raw, +bleeding! She is a hoary pandemonium of ills, enlarged glands, mumps, +quinsy, bunions, hayfever, bedsores, ringworm, floating kidney, +Derbyshire neck, warts, bilious attacks, gallstones, cold feet, +varicose veins. A truce to threnes and trentals and jeremies and all +such congenital defunctive music! Twenty years of it, regret them not. +With thee it was not as with many that will and would and wait and +never—do. Thou sawest thy America, thy lifetask, and didst charge to +cover like the transpontine bison. How saith Zarathustra? _Deine Kuh +Trübsal melkest Du. Nun Trinkst Du die süsse Milch des Euters_. See! it +displodes for thee in abundance. Drink, man, an udderful! Mother’s +milk, Purefoy, the milk of human kin, milk too of those burgeoning +stars overhead rutilant in thin rainvapour, punch milk, such as those +rioters will quaff in their guzzling den, milk of madness, the +honeymilk of Canaan’s land. Thy cow’s dug was tough, what? Ay, but her +milk is hot and sweet and fattening. No dollop this but thick rich +bonnyclaber. To her, old patriarch! Pap! _Per deam Partulam et +Pertundam nunc est bibendum!_ + +All off for a buster, armstrong, hollering down the street. Bonafides. +Where you slep las nigh? Timothy of the battered naggin. Like ole +Billyo. Any brollies or gumboots in the fambly? Where the Henry Nevil’s +sawbones and ole clo? Sorra one o’ me knows. Hurrah there, Dix! Forward +to the ribbon counter. Where’s Punch? All serene. Jay, look at the +drunken minister coming out of the maternity hospal! _Benedicat vos +omnipotens Deus, Pater et Filius_. A make, mister. The Denzille lane +boys. Hell, blast ye! Scoot. Righto, Isaacs, shove em out of the +bleeding limelight. Yous join uz, dear sir? No hentrusion in life. Lou +heap good man. Allee samee dis bunch. _En avant, mes enfants!_ Fire +away number one on the gun. Burke’s! Burke’s! Thence they advanced five +parasangs. Slattery’s mounted foot. Where’s that bleeding awfur? Parson +Steve, apostates’ creed! No, no, Mulligan! Abaft there! Shove ahead. +Keep a watch on the clock. Chuckingout time. Mullee! What’s on you? _Ma +mère m’a mariée._ British Beatitudes! _Retamplatan digidi boumboum_. +Ayes have it. To be printed and bound at the Druiddrum press by two +designing females. Calf covers of pissedon green. Last word in art +shades. Most beautiful book come out of Ireland my time. _Silentium!_ +Get a spurt on. Tention. Proceed to nearest canteen and there annex +liquor stores. March! Tramp, tramp, tramp, the boys are (attitudes!) +parching. Beer, beef, business, bibles, bulldogs battleships, buggery +and bishops. Whether on the scaffold high. Beer, beef, trample the +bibles. When for Irelandear. Trample the trampellers. Thunderation! +Keep the durned millingtary step. We fall. Bishops boosebox. Halt! +Heave to. Rugger. Scrum in. No touch kicking. Wow, my tootsies! You +hurt? Most amazingly sorry! + +Query. Who’s astanding this here do? Proud possessor of damnall. +Declare misery. Bet to the ropes. Me nantee saltee. Not a red at me +this week gone. Yours? Mead of our fathers for the _Übermensch._ +Dittoh. Five number ones. You, sir? Ginger cordial. Chase me, the +cabby’s caudle. Stimulate the caloric. Winding of his ticker. Stopped +short never to go again when the old. Absinthe for me, savvy? +_Caramba!_ Have an eggnog or a prairie oyster. Enemy? Avuncular’s got +my timepiece. Ten to. Obligated awful. Don’t mention it. Got a pectoral +trauma, eh, Dix? Pos fact. Got bet be a boomblebee whenever he wus +settin sleepin in hes bit garten. Digs up near the Mater. Buckled he +is. Know his dona? Yup, sartin I do. Full of a dure. See her in her +dishybilly. Peels off a credit. Lovey lovekin. None of your lean kine, +not much. Pull down the blind, love. Two Ardilauns. Same here. Look +slippery. If you fall don’t wait to get up. Five, seven, nine. Fine! +Got a prime pair of mincepies, no kid. And her take me to rests and her +anker of rum. Must be seen to be believed. Your starving eyes and +allbeplastered neck you stole my heart, O gluepot. Sir? Spud again the +rheumatiz? All poppycock, you’ll scuse me saying. For the hoi polloi. I +vear thee beest a gert vool. Well, doc? Back fro Lapland? Your +corporosity sagaciating O K? How’s the squaws and papooses? Womanbody +after going on the straw? Stand and deliver. Password. There’s hair. +Ours the white death and the ruddy birth. Hi! Spit in your own eye, +boss! Mummer’s wire. Cribbed out of Meredith. Jesified, orchidised, +polycimical jesuit! Aunty mine’s writing Pa Kinch. Baddybad Stephen +lead astray goodygood Malachi. + +Hurroo! Collar the leather, youngun. Roun wi the nappy. Here, Jock braw +Hielentman’s your barleybree. Lang may your lum reek and your kailpot +boil! My tipple. _Merci._ Here’s to us. How’s that? Leg before wicket. +Don’t stain my brandnew sitinems. Give’s a shake of peppe, you there. +Catch aholt. Caraway seed to carry away. Twig? Shrieks of silence. +Every cove to his gentry mort. Venus Pandemos. _Les petites femmes_. +Bold bad girl from the town of Mullingar. Tell her I was axing at her. +Hauding Sara by the wame. On the road to Malahide. Me? If she who +seduced me had left but the name. What do you want for ninepence? +Machree, macruiskeen. Smutty Moll for a mattress jig. And a pull all +together. _Ex!_ + +Waiting, guvnor? Most deciduously. Bet your boots on. Stunned like, +seeing as how no shiners is acoming. Underconstumble? He’ve got the +chink _ad lib_. Seed near free poun on un a spell ago a said war hisn. +Us come right in on your invite, see? Up to you, matey. Out with the +oof. Two bar and a wing. You larn that go off of they there Frenchy +bilks? Won’t wash here for nuts nohow. Lil chile velly solly. Ise de +cutest colour coon down our side. Gawds teruth, Chawley. We are nae +fou. We’re nae tha fou. Au reservoir, mossoo. Tanks you. + +’Tis, sure. What say? In the speakeasy. Tight. I shee you, shir. +Bantam, two days teetee. Bowsing nowt but claretwine. Garn! Have a +glint, do. Gum, I’m jiggered. And been to barber he have. Too full for +words. With a railway bloke. How come you so? Opera he’d like? Rose of +Castile. Rows of cast. Police! Some H2O for a gent fainted. Look at +Bantam’s flowers. Gemini. He’s going to holler. The colleen bawn. My +colleen bawn. O, cheese it! Shut his blurry Dutch oven with a firm +hand. Had the winner today till I tipped him a dead cert. The ruffin +cly the nab of Stephen Hand as give me the jady coppaleen. He strike a +telegramboy paddock wire big bug Bass to the depot. Shove him a joey +and grahamise. Mare on form hot order. Guinea to a goosegog. Tell a +cram, that. Gospeltrue. Criminal diversion? I think that yes. Sure +thing. Land him in chokeechokee if the harman beck copped the game. +Madden back Madden’s a maddening back. O lust our refuge and our +strength. Decamping. Must you go? Off to mammy. Stand by. Hide my +blushes someone. All in if he spots me. Come ahome, our Bantam. +Horryvar, mong vioo. Dinna forget the cowslips for hersel. Cornfide. +Wha gev ye thon colt? Pal to pal. Jannock. Of John Thomas, her spouse. +No fake, old man Leo. S’elp me, honest injun. Shiver my timbers if I +had. There’s a great big holy friar. Vyfor you no me tell? Vel, I ses, +if that aint a sheeny nachez, vel, I vil get misha mishinnah. Through +yerd our lord, Amen. + +You move a motion? Steve boy, you’re going it some. More bluggy +drunkables? Will immensely splendiferous stander permit one stooder of +most extreme poverty and one largesize grandacious thirst to terminate +one expensive inaugurated libation? Give’s a breather. Landlord, +landlord, have you good wine, staboo? Hoots, mon, a wee drap to pree. +Cut and come again. Right. Boniface! Absinthe the lot. _Nos omnes +biberimus viridum toxicum diabolus capiat posterioria nostria_. +Closingtime, gents. Eh? Rome boose for the Bloom toff. I hear you say +onions? Bloo? Cadges ads. Photo’s papli, by all that’s gorgeous. Play +low, pardner. Slide. _Bonsoir la compagnie_. And snares of the +poxfiend. Where’s the buck and Namby Amby? Skunked? Leg bail. Aweel, ye +maun e’en gang yer gates. Checkmate. King to tower. Kind Kristyann wil +yu help yung man hoose frend tuk bungellow kee tu find plais whear tu +lay crown of his hed 2 night. Crickey, I’m about sprung. Tarnally dog +gone my shins if this beent the bestest puttiest longbreak yet. Item, +curate, couple of cookies for this child. Cot’s plood and prandypalls, +none! Not a pite of sheeses? Thrust syphilis down to hell and with him +those other licensed spirits. Time, gents! Who wander through the +world. Health all! _À la vôtre_! + +Golly, whatten tunket’s yon guy in the mackintosh? Dusty Rhodes. Peep +at his wearables. By mighty! What’s he got? Jubilee mutton. Bovril, by +James. Wants it real bad. D’ye ken bare socks? Seedy cuss in the +Richmond? Rawthere! Thought he had a deposit of lead in his penis. +Trumpery insanity. Bartle the Bread we calls him. That, sir, was once a +prosperous cit. Man all tattered and torn that married a maiden all +forlorn. Slung her hook, she did. Here see lost love. Walking +Mackintosh of lonely canyon. Tuck and turn in. Schedule time. Nix for +the hornies. Pardon? Seen him today at a runefal? Chum o’ yourn passed +in his checks? Ludamassy! Pore piccaninnies! Thou’ll no be telling me +thot, Pold veg! Did ums blubble bigsplash crytears cos fren Padney was +took off in black bag? Of all de darkies Massa Pat was verra best. I +never see the like since I was born. _Tiens, tiens_, but it is well +sad, that, my faith, yes. O, get, rev on a gradient one in nine. Live +axle drives are souped. Lay you two to one Jenatzy licks him ruddy well +hollow. Jappies? High angle fire, inyah! Sunk by war specials. Be worse +for him, says he, nor any Rooshian. Time all. There’s eleven of them. +Get ye gone. Forward, woozy wobblers! Night. Night. May Allah the +Excellent One your soul this night ever tremendously conserve. + +Your attention! We’re nae tha fou. The Leith police dismisseth us. The +least tholice. Ware hawks for the chap puking. Unwell in his abominable +regions. Yooka. Night. Mona, my true love. Yook. Mona, my own love. +Ook. + +Hark! Shut your obstropolos. Pflaap! Pflaap! Blaze on. There she goes. +Brigade! Bout ship. Mount street way. Cut up! Pflaap! Tally ho. You not +come? Run, skelter, race. Pflaaaap! + +Lynch! Hey? Sign on long o’ me. Denzille lane this way. Change here for +Bawdyhouse. We two, she said, will seek the kips where shady Mary is. +Righto, any old time. _Laetabuntur in cubilibus suis_. You coming long? +Whisper, who the sooty hell’s the johnny in the black duds? Hush! +Sinned against the light and even now that day is at hand when he shall +come to judge the world by fire. Pflaap! _Ut implerentur scripturae_. +Strike up a ballad. Then outspake medical Dick to his comrade medical +Davy. Christicle, who’s this excrement yellow gospeller on the Merrion +hall? Elijah is coming! Washed in the blood of the Lamb. Come on you +winefizzling, ginsizzling, booseguzzling existences! Come on, you +dog-gone, bullnecked, beetlebrowed, hogjowled, peanutbrained, +weaseleyed fourflushers, false alarms and excess baggage! Come on, you +triple extract of infamy! Alexander J Christ Dowie, that’s my name, +that’s yanked to glory most half this planet from Frisco beach to +Vladivostok. The Deity aint no nickel dime bumshow. I put it to you +that He’s on the square and a corking fine business proposition. He’s +the grandest thing yet and don’t you forget it. Shout salvation in King +Jesus. You’ll need to rise precious early, you sinner there, if you +want to diddle the Almighty God. Pflaaaap! Not half. He’s got a +coughmixture with a punch in it for you, my friend, in his back pocket. +Just you try it on. + + + + +[ 15 ] + + +_(The Mabbot street entrance of nighttown, before which stretches an +uncobbled tramsiding set with skeleton tracks, red and green +will-o’-the-wisps and danger signals. Rows of grimy houses with gaping +doors. Rare lamps with faint rainbow fans. Round Rabaiotti’s halted ice +gondola stunted men and women squabble. They grab wafers between which +are wedged lumps of coral and copper snow. Sucking, they scatter +slowly. Children. The swancomb of the gondola, highreared, forges on +through the murk, white and blue under a lighthouse. Whistles call and +answer.)_ + +THE CALLS: Wait, my love, and I’ll be with you. + +THE ANSWERS: Round behind the stable. + +_(A deafmute idiot with goggle eyes, his shapeless mouth dribbling, +jerks past, shaken in Saint Vitus’ dance. A chain of children ’s hands +imprisons him.)_ + +THE CHILDREN: Kithogue! Salute! + +THE IDIOT: _(Lifts a palsied left arm and gurgles.)_ Grhahute! + +THE CHILDREN: Where’s the great light? + +THE IDIOT: _(Gobbling.)_ Ghaghahest. + +_(They release him. He jerks on. A pigmy woman swings on a rope slung +between two railings, counting. A form sprawled against a dustbin and +muffled by its arm and hat snores, groans, grinding growling teeth, and +snores again. On a step a gnome totting among a rubbishtip crouches to +shoulder a sack of rags and bones. A crone standing by with a smoky +oillamp rams her last bottle in the maw of his sack. He heaves his +booty, tugs askew his peaked cap and hobbles off mutely. The crone +makes back for her lair, swaying her lamp. A bandy child, asquat on the +doorstep with a paper shuttlecock, crawls sidling after her in spurts, +clutches her skirt, scrambles up. A drunken navvy grips with both hands +the railings of an area, lurching heavily. At a corner two night watch +in shouldercapes, their hands upon their staffholsters, loom tall. A +plate crashes: a woman screams: a child wails. Oaths of a man roar, +mutter, cease. Figures wander, lurk, peer from warrens. In a room lit +by a candle stuck in a bottleneck a slut combs out the tatts from the +hair of a scrofulous child. Cissy Caffrey’s voice, still young, sings +shrill from a lane.)_ + +CISSY CAFFREY: + + I gave it to Molly + Because she was jolly, + The leg of the duck, + The leg of the duck. + +_(Private Carr and Private Compton, swaggersticks tight in their +oxters, as they march unsteadily rightaboutface and burst together from +their mouths a volleyed fart. Laughter of men from the lane. A hoarse +virago retorts.)_ + +THE VIRAGO: Signs on you, hairy arse. More power the Cavan girl. + +CISSY CAFFREY: More luck to me. Cavan, Cootehill and Belturbet. _(She +sings.)_ + + I gave it to Nelly + To stick in her belly, + The leg of the duck, + The leg of the duck. + +_(Private Carr and Private Compton turn and counterretort, their tunics +bloodbright in a lampglow, black sockets of caps on their blond cropped +polls. Stephen Dedalus and Lynch pass through the crowd close to the +redcoats.)_ + +PRIVATE COMPTON: _(Jerks his finger.)_ Way for the parson. + +PRIVATE CARR: _(Turns and calls.)_ What ho, parson! + +CISSY CAFFREY: _(Her voice soaring higher.)_ + + She has it, she got it, + Wherever she put it, + The leg of the duck. + +_(Stephen, flourishing the ashplant in his left hand, chants with joy +the_ introit _for paschal time. Lynch, his jockeycap low on his brow, +attends him, a sneer of discontent wrinkling his face.)_ + +STEPHEN: _Vidi aquam egredientem de templo a latere dextro. Alleluia_. + +_(The famished snaggletusks of an elderly bawd protrude from a +doorway.)_ + +THE BAWD: _(Her voice whispering huskily.)_ Sst! Come here till I tell +you. Maidenhead inside. Sst! + +STEPHEN: _(Altius aliquantulum.) Et omnes ad quos pervenit aqua ista_. + +THE BAWD: _(Spits in their trail her jet of venom.)_ Trinity medicals. +Fallopian tube. All prick and no pence. + +_(Edy Boardman, sniffling, crouched with Bertha Supple, draws her shawl +across her nostrils.)_ + +EDY BOARDMAN: _(Bickering.)_ And says the one: I seen you up Faithful +place with your squarepusher, the greaser off the railway, in his +cometobed hat. Did you, says I. That’s not for you to say, says I. You +never seen me in the mantrap with a married highlander, says I. The +likes of her! Stag that one is! Stubborn as a mule! And her walking +with two fellows the one time, Kilbride, the enginedriver, and +lancecorporal Oliphant. + +STEPHEN: _(Triumphaliter.) Salvi facti sunt._ + +_(He flourishes his ashplant, shivering the lamp image, shattering +light over the world. A liver and white spaniel on the prowl slinks +after him, growling. Lynch scares it with a kick.)_ + +LYNCH: So that? + +STEPHEN: (_Looks behind_.) So that gesture, not music not odour, would +be a universal language, the gift of tongues rendering visible not the +lay sense but the first entelechy, the structural rhythm. + +LYNCH: Pornosophical philotheology. Metaphysics in Mecklenburgh street! + +STEPHEN: We have shrewridden Shakespeare and henpecked Socrates. Even +the allwisest Stagyrite was bitted, bridled and mounted by a light of +love. + +LYNCH: Ba! + +STEPHEN: Anyway, who wants two gestures to illustrate a loaf and a jug? +This movement illustrates the loaf and jug of bread or wine in Omar. +Hold my stick. + +LYNCH: Damn your yellow stick. Where are we going? + +STEPHEN: Lecherous lynx, to _la belle dame sans merci,_ Georgina +Johnson, _ad deam qui laetificat iuventutem meam._ + +_(Stephen thrusts the ashplant on him and slowly holds out his hands, +his head going back till both hands are a span from his breast, down +turned, in planes intersecting, the fingers about to part, the left +being higher.)_ + +LYNCH: Which is the jug of bread? It skills not. That or the +customhouse. Illustrate thou. Here take your crutch and walk. + +_(They pass. Tommy Caffrey scrambles to a gaslamp and, clasping, climbs +in spasms. From the top spur he slides down. Jacky Caffrey clasps to +climb. The navvy lurches against the lamp. The twins scuttle off in the +dark. The navvy, swaying, presses a forefinger against a wing of his +nose and ejects from the farther nostril a long liquid jet of snot. +Shouldering the lamp he staggers away through the crowd with his +flaring cresset._ + +_Snakes of river fog creep slowly. From drains, clefts, cesspools, +middens arise on all sides stagnant fumes. A glow leaps in the south +beyond the seaward reaches of the river. The navvy, staggering forward, +cleaves the crowd and lurches towards the tramsiding. On the farther +side under the railway bridge Bloom appears, flushed, panting, cramming +bread and chocolate into a sidepocket. From Gillen’s hairdresser’s +window a composite portrait shows him gallant Nelson’s image. A concave +mirror at the side presents to him lovelorn longlost lugubru +Booloohoom. Grave Gladstone sees him level, Bloom for Bloom. He passes, +struck by the stare of truculent Wellington, but in the convex mirror +grin unstruck the bonham eyes and fatchuck cheekchops of Jollypoldy the +rixdix doldy._ + +_At Antonio Rabaiotti’s door Bloom halts, sweated under the bright +arclamp. He disappears. In a moment he reappears and hurries on.)_ + +BLOOM: Fish and taters. N. g. Ah! + +_(He disappears into Olhausen’s, the porkbutcher’s, under the +downcoming rollshutter. A few moments later he emerges from under the +shutter, puffing Poldy, blowing Bloohoom. In each hand he holds a +parcel, one containing a lukewarm pig’s crubeen, the other a cold +sheep’s trotter, sprinkled with wholepepper. He gasps, standing +upright. Then bending to one side he presses a parcel against his ribs +and groans.)_ + +BLOOM: Stitch in my side. Why did I run? + +_(He takes breath with care and goes forward slowly towards the lampset +siding. The glow leaps again.)_ + +BLOOM: What is that? A flasher? Searchlight. + +_(He stands at Cormack’s corner, watching.)_ + +BLOOM: _Aurora borealis_ or a steel foundry? Ah, the brigade, of +course. South side anyhow. Big blaze. Might be his house. Beggar’s +bush. We’re safe. _(He hums cheerfully.)_ London’s burning, London’s +burning! On fire, on fire! (_He catches sight of the navvy lurching +through the crowd at the farther side of Talbot street._) I’ll miss +him. Run. Quick. Better cross here. + +_(He darts to cross the road. Urchins shout.)_ + +THE URCHINS: Mind out, mister! + +(_Two cyclists, with lighted paper lanterns aswing, swim by him, +grazing him, their bells rattling._) + +THE BELLS: Haltyaltyaltyall. + +BLOOM: _(Halts erect, stung by a spasm.)_ Ow! + +_(He looks round, darts forward suddenly. Through rising fog a dragon +sandstrewer, travelling at caution, slews heavily down upon him, its +huge red headlight winking, its trolley hissing on the wire. The +motorman bangs his footgong.)_ + +THE GONG: Bang Bang Bla Bak Blud Bugg Bloo. + +_(The brake cracks violently. Bloom, raising a policeman’s whitegloved +hand, blunders stifflegged out of the track. The motorman, thrown +forward, pugnosed, on the guidewheel, yells as he slides past over +chains and keys.)_ + +THE MOTORMAN: Hey, shitbreeches, are you doing the hat trick? + +_(Bloom trickleaps to the curbstone and halts again. He brushes a +mudflake from his cheek with a parcelled hand.)_ + +BLOOM: No thoroughfare. Close shave that but cured the stitch. Must +take up Sandow’s exercises again. On the hands down. Insure against +street accident too. The Providential. _(He feels his trouser pocket.)_ +Poor mamma’s panacea. Heel easily catch in track or bootlace in a cog. +Day the wheel of the black Maria peeled off my shoe at Leonard’s +corner. Third time is the charm. Shoe trick. Insolent driver. I ought +to report him. Tension makes them nervous. Might be the fellow balked +me this morning with that horsey woman. Same style of beauty. Quick of +him all the same. The stiff walk. True word spoken in jest. That awful +cramp in Lad lane. Something poisonous I ate. Emblem of luck. Why? +Probably lost cattle. Mark of the beast. _(He closes his eyes an +instant.)_ Bit light in the head. Monthly or effect of the other. +Brainfogfag. That tired feeling. Too much for me now. Ow! + +_(A sinister figure leans on plaited legs against O’Beirne’s wall, a +visage unknown, injected with dark mercury. From under a wideleaved +sombrero the figure regards him with evil eye.)_ + +BLOOM: _Buenas noches, señorita Blanca, que calle es esta?_ + +THE FIGURE: (_Impassive, raises a signal arm._) Password. _Sraid +Mabbot._ + +BLOOM: Haha. _Merci._ Esperanto. _Slan leath. (He mutters.)_ Gaelic +league spy, sent by that fireeater. + +_(He steps forward. A sackshouldered ragman bars his path. He steps +left, ragsackman left.)_ + +BLOOM: I beg. + +(_He leaps right, sackragman right._) + +BLOOM: I beg. + +(_He swerves, sidles, stepaside, slips past and on._) + +BLOOM: Keep to the right, right, right. If there is a signpost planted +by the Touring Club at Stepaside who procured that public boon? I who +lost my way and contributed to the columns of the _Irish Cyclist_ the +letter headed _In darkest Stepaside_. Keep, keep, keep to the right. +Rags and bones at midnight. A fence more likely. First place murderer +makes for. Wash off his sins of the world. + +_(Jacky Caffrey, hunted by Tommy Caffrey, runs full tilt against +Bloom.)_ + +BLOOM: O. + +_(Shocked, on weak hams, he halts. Tommy and Jacky vanish there, there. +Bloom pats with parcelled hands watch, fobpocket, bookpocket, +pursepoke, sweets of sin, potato soap.)_ + +BLOOM: Beware of pickpockets. Old thieves’ dodge. Collide. Then snatch +your purse. + +_(The retriever approaches sniffing, nose to the ground. A sprawled +form sneezes. A stooped bearded figure appears garbed in the long +caftan of an elder in Zion and a smokingcap with magenta tassels. +Horned spectacles hang down at the wings of the nose. Yellow poison +streaks are on the drawn face.)_ + +RUDOLPH: Second halfcrown waste money today. I told you not go with +drunken goy ever. So you catch no money. + +BLOOM: _(Hides the crubeen and trotter behind his back and, +crestfallen, feels warm and cold feetmeat.) Ja, ich weiss, papachi._ + +RUDOLPH: What you making down this place? Have you no soul? _(With +feeble vulture talons he feels the silent face of Bloom.)_ Are you not +my son Leopold, the grandson of Leopold? Are you not my dear son +Leopold who left the house of his father and left the god of his +fathers Abraham and Jacob? + +BLOOM: _(With precaution.)_ I suppose so, father. Mosenthal. All that’s +left of him. + +RUDOLPH: _(Severely.)_ One night they bring you home drunk as dog after +spend your good money. What you call them running chaps? + +BLOOM: _(In youth’s smart blue Oxford suit with white vestslips, +narrowshouldered, in brown Alpine hat, wearing gent’s sterling silver +waterbury keyless watch and double curb Albert with seal attached, one +side of him coated with stiffening mud.)_ Harriers, father. Only that +once. + +RUDOLPH: Once! Mud head to foot. Cut your hand open. Lockjaw. They make +you kaputt, Leopoldleben. You watch them chaps. + +BLOOM: _(Weakly.)_ They challenged me to a sprint. It was muddy. I +slipped. + +RUDOLPH: _(With contempt.) Goim nachez!_ Nice spectacles for your poor +mother! + +BLOOM: Mamma! + +ELLEN BLOOM: _(In pantomime dame’s stringed mobcap, widow Twankey’s +crinoline and bustle, blouse with muttonleg sleeves buttoned behind, +grey mittens and cameo brooch, her plaited hair in a crispine net, +appears over the staircase banisters, a slanted candlestick in her +hand, and cries out in shrill alarm.)_ O blessed Redeemer, what have +they done to him! My smelling salts! _(She hauls up a reef of skirt and +ransacks the pouch of her striped blay petticoat. A phial, an Agnus +Dei, a shrivelled potato and a celluloid doll fall out.)_ Sacred Heart +of Mary, where were you at all at all? + +_(Bloom, mumbling, his eyes downcast, begins to bestow his parcels in +his filled pockets but desists, muttering.)_ + +A VOICE: _(Sharply.)_ Poldy! + +BLOOM: Who? _(He ducks and wards off a blow clumsily.)_ At your +service. + +_(He looks up. Beside her mirage of datepalms a handsome woman in +Turkish costume stands before him. Opulent curves fill out her scarlet +trousers and jacket, slashed with gold. A wide yellow cummerbund +girdles her. A white yashmak, violet in the night, covers her face, +leaving free only her large dark eyes and raven hair.)_ + +BLOOM: Molly! + +MARION: Welly? Mrs Marion from this out, my dear man, when you speak to +me. _(Satirically.)_ Has poor little hubby cold feet waiting so long? + +BLOOM: _(Shifts from foot to foot.)_ No, no. Not the least little bit. + +_(He breathes in deep agitation, swallowing gulps of air, questions, +hopes, crubeens for her supper, things to tell her, excuse, desire, +spellbound. A coin gleams on her forehead. On her feet are jewelled +toerings. Her ankles are linked by a slender fetterchain. Beside her a +camel, hooded with a turreting turban, waits. A silk ladder of +innumerable rungs climbs to his bobbing howdah. He ambles near with +disgruntled hindquarters. Fiercely she slaps his haunch, her goldcurb +wristbangles angriling, scolding him in Moorish.)_ + +MARION: Nebrakada! Femininum! + +_(The camel, lifting a foreleg, plucks from a tree a large mango fruit, +offers it to his mistress, blinking, in his cloven hoof, then droops +his head and, grunting, with uplifted neck, fumbles to kneel. Bloom +stoops his back for leapfrog.)_ + +BLOOM: I can give you... I mean as your business menagerer... Mrs +Marion... if you... + +MARION: So you notice some change? _(Her hands passing slowly over her +trinketed stomacher, a slow friendly mockery in her eyes.)_ O Poldy, +Poldy, you are a poor old stick in the mud! Go and see life. See the +wide world. + +BLOOM: I was just going back for that lotion whitewax, orangeflower +water. Shop closes early on Thursday. But the first thing in the +morning. _(He pats divers pockets.)_ This moving kidney. Ah! + +_(He points to the south, then to the east. A cake of new clean lemon +soap arises, diffusing light and perfume.)_ + +THE SOAP: + + We’re a capital couple are Bloom and I. + He brightens the earth. I polish the sky. + +_(The freckled face of Sweny, the druggist, appears in the disc of the +soapsun.)_ + +SWENY: Three and a penny, please. + +BLOOM: Yes. For my wife. Mrs Marion. Special recipe. + +MARION: _(Softly.)_ Poldy! + +BLOOM: Yes, ma’am? + +MARION: _Ti trema un poco il cuore?_ + +_(In disdain she saunters away, plump as a pampered pouter pigeon, +humming the duet from_ Don Giovanni.) + +BLOOM: Are you sure about that _Voglio_? I mean the pronunciati... + +_(He follows, followed by the sniffing terrier. The elderly bawd seizes +his sleeve, the bristles of her chinmole glittering.)_ + +THE BAWD: Ten shillings a maidenhead. Fresh thing was never touched. +Fifteen. There’s no-one in it only her old father that’s dead drunk. + +_(She points. In the gap of her dark den furtive, rainbedraggled, +Bridie Kelly stands.)_ + +BRIDIE: Hatch street. Any good in your mind? + +_(With a squeak she flaps her bat shawl and runs. A burly rough pursues +with booted strides. He stumbles on the steps, recovers, plunges into +gloom. Weak squeaks of laughter are heard, weaker.)_ + +THE BAWD: _(Her wolfeyes shining.)_ He’s getting his pleasure. You +won’t get a virgin in the flash houses. Ten shillings. Don’t be all +night before the polis in plain clothes sees us. Sixtyseven is a bitch. + +_(Leering, Gerty Macdowell limps forward. She draws from behind, +ogling, and shows coyly her bloodied clout.)_ + +GERTY: With all my worldly goods I thee and thou. _(She murmurs.)_ You +did that. I hate you. + +BLOOM: I? When? You’re dreaming. I never saw you. + +THE BAWD: Leave the gentleman alone, you cheat. Writing the gentleman +false letters. Streetwalking and soliciting. Better for your mother +take the strap to you at the bedpost, hussy like you. + +GERTY: _(To Bloom.)_ When you saw all the secrets of my bottom drawer. +_(She paws his sleeve, slobbering.)_ Dirty married man! I love you for +doing that to me. + +_(She glides away crookedly. Mrs Breen in man’s frieze overcoat with +loose bellows pockets, stands in the causeway, her roguish eyes +wideopen, smiling in all her herbivorous buckteeth.)_ + +MRS BREEN: Mr... + +BLOOM: _(Coughs gravely.)_ Madam, when we last had this pleasure by +letter dated the sixteenth instant... + +MRS BREEN: Mr Bloom! You down here in the haunts of sin! I caught you +nicely! Scamp! + +BLOOM: _(Hurriedly.)_ Not so loud my name. Whatever do you think of me? +Don’t give me away. Walls have ears. How do you do? It’s ages since I. +You’re looking splendid. Absolutely it. Seasonable weather we are +having this time of year. Black refracts heat. Short cut home here. +Interesting quarter. Rescue of fallen women. Magdalen asylum. I am the +secretary... + +MRS BREEN: _(Holds up a finger.)_ Now, don’t tell a big fib! I know +somebody won’t like that. O just wait till I see Molly! _(Slily.)_ +Account for yourself this very sminute or woe betide you! + +BLOOM: _(Looks behind.)_ She often said she’d like to visit. Slumming. +The exotic, you see. Negro servants in livery too if she had money. +Othello black brute. Eugene Stratton. Even the bones and cornerman at +the Livermore christies. Bohee brothers. Sweep for that matter. + +_(Tom and Sam Bohee, coloured coons in white duck suits, scarlet socks, +upstarched Sambo chokers and large scarlet asters in their buttonholes, +leap out. Each has his banjo slung. Their paler smaller negroid hands +jingle the twingtwang wires. Flashing white Kaffir eyes and tusks they +rattle through a breakdown in clumsy clogs, twinging, singing, back to +back, toe heel, heel toe, with smackfatclacking nigger lips.)_ + +TOM AND SAM: + + There’s someone in the house with Dina + There’s someone in the house, I know, + There’s someone in the house with Dina + Playing on the old banjo. + +_(They whisk black masks from raw babby faces: then, chuckling, +chortling, trumming, twanging, they diddle diddle cakewalk dance +away.)_ + +BLOOM: _(With a sour tenderish smile.)_ A little frivol, shall we, if +you are so inclined? Would you like me perhaps to embrace you just for +a fraction of a second? + +MRS BREEN: _(Screams gaily.)_ O, you ruck! You ought to see yourself! + +BLOOM: For old sake’ sake. I only meant a square party, a mixed +marriage mingling of our different little conjugials. You know I had a +soft corner for you. _(Gloomily.)_ ’Twas I sent you that valentine of +the dear gazelle. + +MRS BREEN: Glory Alice, you do look a holy show! Killing simply. _(She +puts out her hand inquisitively.)_ What are you hiding behind your +back? Tell us, there’s a dear. + +BLOOM: _(Seizes her wrist with his free hand.)_ Josie Powell that was, +prettiest deb in Dublin. How time flies by! Do you remember, harking +back in a retrospective arrangement, Old Christmas night, Georgina +Simpson’s housewarming while they were playing the Irving Bishop game, +finding the pin blindfold and thoughtreading? Subject, what is in this +snuffbox? + +MRS BREEN: You were the lion of the night with your seriocomic +recitation and you looked the part. You were always a favourite with +the ladies. + +BLOOM: _(Squire of dames, in dinner jacket with wateredsilk facings, +blue masonic badge in his buttonhole, black bow and mother-of-pearl +studs, a prismatic champagne glass tilted in his hand.)_ Ladies and +gentlemen, I give you Ireland, home and beauty. + +MRS BREEN: The dear dead days beyond recall. Love’s old sweet song. + +BLOOM: _(Meaningfully dropping his voice.)_ I confess I’m teapot with +curiosity to find out whether some person’s something is a little +teapot at present. + +MRS BREEN: _(Gushingly.)_ Tremendously teapot! London’s teapot and I’m +simply teapot all over me! _(She rubs sides with him.)_ After the +parlour mystery games and the crackers from the tree we sat on the +staircase ottoman. Under the mistletoe. Two is company. + +BLOOM: _(Wearing a purple Napoleon hat with an amber halfmoon, his +fingers and thumb passing slowly down to her soft moist meaty palm +which she surrenders gently.)_ The witching hour of night. I took the +splinter out of this hand, carefully, slowly. _(Tenderly, as he slips +on her finger a ruby ring.) Là ci darem la mano._ + +MRS BREEN: _(In a onepiece evening frock executed in moonlight blue, a +tinsel sylph’s diadem on her brow with her dancecard fallen beside her +moonblue satin slipper, curves her palm softly, breathing quickly.) +Voglio e non._ You’re hot! You’re scalding! The left hand nearest the +heart. + +BLOOM: When you made your present choice they said it was beauty and +the beast. I can never forgive you for that. _(His clenched fist at his +brow.)_ Think what it means. All you meant to me then. _(Hoarsely.)_ +Woman, it’s breaking me! + +_(Denis Breen, whitetallhatted, with Wisdom Hely’s sandwichboards, +shuffles past them in carpet slippers, his dull beard thrust out, +muttering to right and left. Little Alf Bergan, cloaked in the pall of +the ace of spades, dogs him to left and right, doubled in laughter.)_ + +ALF BERGAN: _(Points jeering at the sandwichboards.)_ U. p: up. + +MRS BREEN: _(To Bloom.)_ High jinks below stairs. _(She gives him the +glad eye.)_ Why didn’t you kiss the spot to make it well? You wanted +to. + +BLOOM: _(Shocked.)_ Molly’s best friend! Could you? + +MRS BREEN: _(Her pulpy tongue between her lips, offers a pigeon kiss.)_ +Hnhn. The answer is a lemon. Have you a little present for me there? + +BLOOM: _(Offhandedly.)_ Kosher. A snack for supper. The home without +potted meat is incomplete. I was at _Leah_, Mrs Bandmann Palmer. +Trenchant exponent of Shakespeare. Unfortunately threw away the +programme. Rattling good place round there for pigs’ feet. Feel. + +_(Richie Goulding, three ladies’ hats pinned on his head, appears +weighted to one side by the black legal bag of Collis and Ward on which +a skull and crossbones are painted in white limewash. He opens it and +shows it full of polonies, kippered herrings, Findon haddies and +tightpacked pills.)_ + +RICHIE: Best value in Dub. + +_(Bald Pat, bothered beetle, stands on the curbstone, folding his +napkin, waiting to wait.)_ + +PAT: _(Advances with a tilted dish of spillspilling gravy.)_ Steak and +kidney. Bottle of lager. Hee hee hee. Wait till I wait. + +RICHIE: Goodgod. Inev erate inall... + +_(With hanging head he marches doggedly forward. The navvy, lurching +by, gores him with his flaming pronghorn.)_ + +RICHIE: _(With a cry of pain, his hand to his back.)_ Ah! Bright’s! +Lights! + +BLOOM: _(Points to the navvy.)_ A spy. Don’t attract attention. I hate +stupid crowds. I am not on pleasure bent. I am in a grave predicament. + +MRS BREEN: Humbugging and deluthering as per usual with your cock and +bull story. + +BLOOM: I want to tell you a little secret about how I came to be here. +But you must never tell. Not even Molly. I have a most particular +reason. + +MRS BREEN: _(All agog.)_ O, not for worlds. + +BLOOM: Let’s walk on. Shall us? + +MRS BREEN: Let’s. + +_(The bawd makes an unheeded sign. Bloom walks on with Mrs Breen. The +terrier follows, whining piteously, wagging his tail.)_ + +THE BAWD: Jewman’s melt! + +BLOOM: _(In an oatmeal sporting suit, a sprig of woodbine in the lapel, +tony buff shirt, shepherd’s plaid Saint Andrew’s cross scarftie, white +spats, fawn dustcoat on his arm, tawny red brogues, fieldglasses in +bandolier and a grey billycock hat.)_ Do you remember a long long time, +years and years ago, just after Milly, Marionette we called her, was +weaned when we all went together to Fairyhouse races, was it? + +MRS BREEN: _(In smart Saxe tailormade, white velours hat and spider +veil.)_ Leopardstown. + +BLOOM: I mean, Leopardstown. And Molly won seven shillings on a three +year old named Nevertell and coming home along by Foxrock in that old +fiveseater shanderadan of a waggonette you were in your heyday then and +you had on that new hat of white velours with a surround of molefur +that Mrs Hayes advised you to buy because it was marked down to +nineteen and eleven, a bit of wire and an old rag of velveteen, and +I’ll lay you what you like she did it on purpose... + +MRS BREEN: She did, of course, the cat! Don’t tell me! Nice adviser! + +BLOOM: Because it didn’t suit you one quarter as well as the other +ducky little tammy toque with the bird of paradise wing in it that I +admired on you and you honestly looked just too fetching in it though +it was a pity to kill it, you cruel naughty creature, little mite of a +thing with a heart the size of a fullstop. + +MRS BREEN: _(Squeezes his arm, simpers.)_ Naughty cruel I was! + +BLOOM: _(Low, secretly, ever more rapidly.)_ And Molly was eating a +sandwich of spiced beef out of Mrs Joe Gallaher’s lunch basket. +Frankly, though she had her advisers or admirers, I never cared much +for her style. She was... + +MRS BREEN: Too... + +BLOOM: Yes. And Molly was laughing because Rogers and Maggot O’Reilly +were mimicking a cock as we passed a farmhouse and Marcus Tertius +Moses, the tea merchant, drove past us in a gig with his daughter, +Dancer Moses was her name, and the poodle in her lap bridled up and you +asked me if I ever heard or read or knew or came across... + +MRS BREEN: _(Eagerly.)_ Yes, yes, yes, yes, yes, yes, yes. + +_(She fades from his side. Followed by the whining dog he walks on +towards hellsgates. In an archway a standing woman, bent forward, her +feet apart, pisses cowily. Outside a shuttered pub a bunch of loiterers +listen to a tale which their brokensnouted gaffer rasps out with +raucous humour. An armless pair of them flop wrestling, growling, in +maimed sodden playfight.)_ + +THE GAFFER: _(Crouches, his voice twisted in his snout.)_ And when +Cairns came down from the scaffolding in Beaver street what was he +after doing it into only into the bucket of porter that was there +waiting on the shavings for Derwan’s plasterers. + +THE LOITERERS: _(Guffaw with cleft palates.)_ O jays! + +_(Their paintspeckled hats wag. Spattered with size and lime of their +lodges they frisk limblessly about him.)_ + +BLOOM: Coincidence too. They think it funny. Anything but that. Broad +daylight. Trying to walk. Lucky no woman. + +THE LOITERERS: Jays, that’s a good one. Glauber salts. O jays, into the +men’s porter. + +_(Bloom passes. Cheap whores, singly, coupled, shawled, dishevelled, +call from lanes, doors, corners.)_ + +THE WHORES: + +Are you going far, queer fellow? + +How’s your middle leg? + +Got a match on you? + +Eh, come here till I stiffen it for you. + +_(He plodges through their sump towards the lighted street beyond. From +a bulge of window curtains a gramophone rears a battered brazen trunk. +In the shadow a shebeenkeeper haggles with the navvy and the two +redcoats.)_ + +THE NAVVY: _(Belching.)_ Where’s the bloody house? + +THE SHEBEENKEEPER: Purdon street. Shilling a bottle of stout. +Respectable woman. + +THE NAVVY: _(Gripping the two redcoats, staggers forward with them.)_ +Come on, you British army! + +PRIVATE CARR: _(Behind his back.)_ He aint half balmy. + +PRIVATE COMPTON: _(Laughs.)_ What ho! + +PRIVATE CARR: _(To the navvy.)_ Portobello barracks canteen. You ask +for Carr. Just Carr. + +THE NAVVY: _(Shouts.)_ + + We are the boys. Of Wexford. + +PRIVATE COMPTON: Say! What price the sergeantmajor? + +PRIVATE CARR: Bennett? He’s my pal. I love old Bennett. + +THE NAVVY: _(Shouts.)_ + + The galling chain. + And free our native land. + +_(He staggers forward, dragging them with him. Bloom stops, at fault. +The dog approaches, his tongue outlolling, panting.)_ + +BLOOM: Wildgoose chase this. Disorderly houses. Lord knows where they +are gone. Drunks cover distance double quick. Nice mixup. Scene at +Westland row. Then jump in first class with third ticket. Then too far. +Train with engine behind. Might have taken me to Malahide or a siding +for the night or collision. Second drink does it. Once is a dose. What +am I following him for? Still, he’s the best of that lot. If I hadn’t +heard about Mrs Beaufoy Purefoy I wouldn’t have gone and wouldn’t have +met. Kismet. He’ll lose that cash. Relieving office here. Good biz for +cheapjacks, organs. What do ye lack? Soon got, soon gone. Might have +lost my life too with that mangongwheeltracktrolleyglarejuggernaut only +for presence of mind. Can’t always save you, though. If I had passed +Truelock’s window that day two minutes later would have been shot. +Absence of body. Still if bullet only went through my coat get damages +for shock, five hundred pounds. What was he? Kildare street club toff. +God help his gamekeeper. + +_(He gazes ahead, reading on the wall a scrawled chalk legend_ Wet +Dream _and a phallic design._) Odd! Molly drawing on the frosted +carriagepane at Kingstown. What’s that like? _(Gaudy dollwomen loll in +the lighted doorways, in window embrasures, smoking birdseye +cigarettes. The odour of the sicksweet weed floats towards him in slow +round ovalling wreaths.)_ + +THE WREATHS: Sweet are the sweets. Sweets of sin. + +BLOOM: My spine’s a bit limp. Go or turn? And this food? Eat it and get +all pigsticky. Absurd I am. Waste of money. One and eightpence too +much. _(The retriever drives a cold snivelling muzzle against his hand, +wagging his tail.)_ Strange how they take to me. Even that brute today. +Better speak to him first. Like women they like _rencontres._ Stinks +like a polecat. _Chacun son goût_. He might be mad. Dogdays. Uncertain +in his movements. Good fellow! Fido! Good fellow! Garryowen! _(The +wolfdog sprawls on his back, wriggling obscenely with begging paws, his +long black tongue lolling out.)_ Influence of his surroundings. Give +and have done with it. Provided nobody. _(Calling encouraging words he +shambles back with a furtive poacher’s tread, dogged by the setter into +a dark stalestunk corner. He unrolls one parcel and goes to dump the +crubeen softly but holds back and feels the trotter.)_ Sizeable for +threepence. But then I have it in my left hand. Calls for more effort. +Why? Smaller from want of use. O, let it slide. Two and six. + +_(With regret he lets the unrolled crubeen and trotter slide. The +mastiff mauls the bundle clumsily and gluts himself with growling +greed, crunching the bones. Two raincaped watch approach, silent, +vigilant. They murmur together.)_ + +THE WATCH: Bloom. Of Bloom. For Bloom. Bloom. + +_(Each lays hand on Bloom’s shoulder.)_ + +FIRST WATCH: Caught in the act. Commit no nuisance. + +BLOOM: _(Stammers.)_ I am doing good to others. + +_(A covey of gulls, storm petrels, rises hungrily from Liffey slime +with Banbury cakes in their beaks.)_ + +THE GULLS: Kaw kave kankury kake. + +BLOOM: The friend of man. Trained by kindness. + +_(He points. Bob Doran, toppling from a high barstool, sways over the +munching spaniel.)_ + +BOB DORAN: Towser. Give us the paw. Give the paw. + +_(The bulldog growls, his scruff standing, a gobbet of pig’s knuckle +between his molars through which rabid scumspittle dribbles. Bob Doran +falls silently into an area.)_ + +SECOND WATCH: Prevention of cruelty to animals. + +BLOOM: _(Enthusiastically.)_ A noble work! I scolded that tramdriver on +Harold’s cross bridge for illusing the poor horse with his harness +scab. Bad French I got for my pains. Of course it was frosty and the +last tram. All tales of circus life are highly demoralising. + +_(Signor Maffei, passionpale, in liontamer’s costume with diamond studs +in his shirtfront, steps forward, holding a circus paperhoop, a curling +carriagewhip and a revolver with which he covers the gorging +boarhound.)_ + +SIGNOR MAFFEI: _(With a sinister smile.)_ Ladies and gentlemen, my +educated greyhound. It was I broke in the bucking broncho Ajax with my +patent spiked saddle for carnivores. Lash under the belly with a +knotted thong. Block tackle and a strangling pulley will bring your +lion to heel, no matter how fractious, even _Leo ferox_ there, the +Libyan maneater. A redhot crowbar and some liniment rubbing on the +burning part produced Fritz of Amsterdam, the thinking hyena. _(He +glares.)_ I possess the Indian sign. The glint of my eye does it with +these breastsparklers. _(With a bewitching smile.)_ I now introduce +Mademoiselle Ruby, the pride of the ring. + +FIRST WATCH: Come. Name and address. + +BLOOM: I have forgotten for the moment. Ah, yes! _(He takes off his +high grade hat, saluting.)_ Dr Bloom, Leopold, dental surgeon. You have +heard of von Blum Pasha. Umpteen millions. _Donnerwetter!_ Owns half +Austria. Egypt. Cousin. + +FIRST WATCH: Proof. + +_(A card falls from inside the leather headband of Bloom’s hat.)_ + +BLOOM: _(In red fez, cadi’s dress coat with broad green sash, wearing a +false badge of the Legion of Honour, picks up the card hastily and +offers it.)_ Allow me. My club is the Junior Army and Navy. Solicitors: +Messrs John Henry Menton, 27 Bachelor’s Walk. + +FIRST WATCH: _(Reads.)_ Henry Flower. No fixed abode. Unlawfully +watching and besetting. + +SECOND WATCH: An alibi. You are cautioned. + +BLOOM: _(Produces from his heartpocket a crumpled yellow flower.)_ This +is the flower in question. It was given me by a man I don’t know his +name. _(Plausibly.)_ You know that old joke, rose of Castile. Bloom. +The change of name. Virag. _(He murmurs privately and confidentially.)_ +We are engaged you see, sergeant. Lady in the case. Love entanglement. +_(He shoulders the second watch gently.)_ Dash it all. It’s a way we +gallants have in the navy. Uniform that does it. _(He turns gravely to +the first watch.)_ Still, of course, you do get your Waterloo +sometimes. Drop in some evening and have a glass of old Burgundy. _(To +the second watch gaily.)_ I’ll introduce you, inspector. She’s game. Do +it in the shake of a lamb’s tail. + +_(A dark mercurialised face appears, leading a veiled figure.)_ + +THE DARK MERCURY: The Castle is looking for him. He was drummed out of +the army. + +MARTHA: _(Thickveiled, a crimson halter round her neck, a copy of the_ +Irish Times _in her hand, in tone of reproach, pointing.)_ Henry! +Leopold! Lionel, thou lost one! Clear my name. + +FIRST WATCH: _(Sternly.)_ Come to the station. + +BLOOM: _(Scared, hats himself, steps back, then, plucking at his heart +and lifting his right forearm on the square, he gives the sign and +dueguard of fellowcraft.)_ No, no, worshipful master, light of love. +Mistaken identity. The Lyons mail. Lesurques and Dubosc. You remember +the Childs fratricide case. We medical men. By striking him dead with a +hatchet. I am wrongfully accused. Better one guilty escape than +ninetynine wrongfully condemned. + +MARTHA: _(Sobbing behind her veil.)_ Breach of promise. My real name is +Peggy Griffin. He wrote to me that he was miserable. I’ll tell my +brother, the Bective rugger fullback, on you, heartless flirt. + +BLOOM: _(Behind his hand.)_ She’s drunk. The woman is inebriated. _(He +murmurs vaguely the pass of Ephraim.)_ Shitbroleeth. + +SECOND WATCH: _(Tears in his eyes, to Bloom.)_ You ought to be +thoroughly well ashamed of yourself. + +BLOOM: Gentlemen of the jury, let me explain. A pure mare’s nest. I am +a man misunderstood. I am being made a scapegoat of. I am a respectable +married man, without a stain on my character. I live in Eccles street. +My wife, I am the daughter of a most distinguished commander, a gallant +upstanding gentleman, what do you call him, Majorgeneral Brian Tweedy, +one of Britain’s fighting men who helped to win our battles. Got his +majority for the heroic defence of Rorke’s Drift. + +FIRST WATCH: Regiment. + +BLOOM: _(Turns to the gallery.)_ The royal Dublins, boys, the salt of +the earth, known the world over. I think I see some old comrades in +arms up there among you. The R. D. F., with our own Metropolitan +police, guardians of our homes, the pluckiest lads and the finest body +of men, as physique, in the service of our sovereign. + +A VOICE: Turncoat! Up the Boers! Who booed Joe Chamberlain? + +BLOOM: _(His hand on the shoulder of the first watch.)_ My old dad too +was a J. P. I’m as staunch a Britisher as you are, sir. I fought with +the colours for king and country in the absentminded war under general +Gough in the park and was disabled at Spion Kop and Bloemfontein, was +mentioned in dispatches. I did all a white man could. _(With quiet +feeling.)_ Jim Bludso. Hold her nozzle again the bank. + +FIRST WATCH: Profession or trade. + +BLOOM: Well, I follow a literary occupation, author-journalist. In fact +we are just bringing out a collection of prize stories of which I am +the inventor, something that is an entirely new departure. I am +connected with the British and Irish press. If you ring up... + +_(Myles Crawford strides out jerkily, a quill between his teeth. His +scarlet beak blazes within the aureole of his straw hat. He dangles a +hank of Spanish onions in one hand and holds with the other hand a +telephone receiver nozzle to his ear.)_ + +MYLES CRAWFORD: _(His cock’s wattles wagging.)_ Hello, seventyseven +eightfour. Hello. _Freeman’s Urinal_ and _Weekly Arsewipe_ here. +Paralyse Europe. You which? Bluebags? Who writes? Is it Bloom? + +_(Mr Philip Beaufoy, palefaced, stands in the witnessbox, in accurate +morning dress, outbreast pocket with peak of handkerchief showing, +creased lavender trousers and patent boots. He carries a large +portfolio labelled_ Matcham’s Masterstrokes.) + +BEAUFOY: _(Drawls.)_ No, you aren’t. Not by a long shot if I know it. I +don’t see it, that’s all. No born gentleman, no-one with the most +rudimentary promptings of a gentleman would stoop to such particularly +loathsome conduct. One of those, my lord. A plagiarist. A soapy sneak +masquerading as a literateur. It’s perfectly obvious that with the most +inherent baseness he has cribbed some of my bestselling copy, really +gorgeous stuff, a perfect gem, the love passages in which are beneath +suspicion. The Beaufoy books of love and great possessions, with which +your lordship is doubtless familiar, are a household word throughout +the kingdom. + +BLOOM: _(Murmurs with hangdog meekness glum.)_ That bit about the +laughing witch hand in hand I take exception to, if I may... + +BEAUFOY: _(His lip upcurled, smiles superciliously on the court.)_ You +funny ass, you! You’re too beastly awfully weird for words! I don’t +think you need over excessively disincommodate yourself in that regard. +My literary agent Mr J. B. Pinker is in attendance. I presume, my lord, +we shall receive the usual witnesses’ fees, shan’t we? We are +considerably out of pocket over this bally pressman johnny, this +jackdaw of Rheims, who has not even been to a university. + +BLOOM: _(Indistinctly.)_ University of life. Bad art. + +BEAUFOY: _(Shouts.)_ It’s a damnably foul lie, showing the moral +rottenness of the man! _(He extends his portfolio.)_ We have here +damning evidence, the _corpus delicti_, my lord, a specimen of my +maturer work disfigured by the hallmark of the beast. + +A VOICE FROM THE GALLERY: + + Moses, Moses, king of the jews, + Wiped his arse in the _Daily News_. + +BLOOM: _(Bravely.)_ Overdrawn. + +BEAUFOY: You low cad! You ought to be ducked in the horsepond, you +rotter! _(To the court.)_ Why, look at the man’s private life! Leading +a quadruple existence! Street angel and house devil. Not fit to be +mentioned in mixed society! The archconspirator of the age! + +BLOOM: _(To the court.)_ And he, a bachelor, how... + +FIRST WATCH: The King versus Bloom. Call the woman Driscoll. + +THE CRIER: Mary Driscoll, scullerymaid! + +_(Mary Driscoll, a slipshod servant girl, approaches. She has a bucket +on the crook of her arm and a scouringbrush in her hand.)_ + +SECOND WATCH: Another! Are you of the unfortunate class? + +MARY DRISCOLL: _(Indignantly.)_ I’m not a bad one. I bear a respectable +character and was four months in my last place. I was in a situation, +six pounds a year and my chances with Fridays out and I had to leave +owing to his carryings on. + +FIRST WATCH: What do you tax him with? + +MARY DRISCOLL: He made a certain suggestion but I thought more of +myself as poor as I am. + +BLOOM: _(In housejacket of ripplecloth, flannel trousers, heelless +slippers, unshaven, his hair rumpled: softly.)_ I treated you white. I +gave you mementos, smart emerald garters far above your station. +Incautiously I took your part when you were accused of pilfering. +There’s a medium in all things. Play cricket. + +MARY DRISCOLL: _(Excitedly.)_ As God is looking down on me this night +if ever I laid a hand to them oylsters! + +FIRST WATCH: The offence complained of? Did something happen? + +MARY DRISCOLL: He surprised me in the rere of the premises, Your +honour, when the missus was out shopping one morning with a request for +a safety pin. He held me and I was discoloured in four places as a +result. And he interfered twict with my clothing. + +BLOOM: She counterassaulted. + +MARY DRISCOLL: _(Scornfully.)_ I had more respect for the +scouringbrush, so I had. I remonstrated with him, Your lord, and he +remarked: keep it quiet. + +_(General laughter.)_ + +GEORGE FOTTRELL: _(Clerk of the crown and peace, resonantly.)_ Order in +court! The accused will now make a bogus statement. + +_(Bloom, pleading not guilty and holding a fullblown waterlily, begins +a long unintelligible speech. They would hear what counsel had to say +in his stirring address to the grand jury. He was down and out but, +though branded as a black sheep, if he might say so, he meant to +reform, to retrieve the memory of the past in a purely sisterly way and +return to nature as a purely domestic animal. A sevenmonths’ child, he +had been carefully brought up and nurtured by an aged bedridden parent. +There might have been lapses of an erring father but he wanted to turn +over a new leaf and now, when at long last in sight of the whipping +post, to lead a homely life in the evening of his days, permeated by +the affectionate surroundings of the heaving bosom of the family. An +acclimatised Britisher, he had seen that summer eve from the footplate +of an engine cab of the Loop line railway company while the rain +refrained from falling glimpses, as it were, through the windows of +loveful households in Dublin city and urban district of scenes truly +rural of happiness of the better land with Dockrell’s wallpaper at one +and ninepence a dozen, innocent Britishborn bairns lisping prayers to +the Sacred Infant, youthful scholars grappling with their pensums or +model young ladies playing on the pianoforte or anon all with fervour +reciting the family rosary round the crackling Yulelog while in the +boreens and green lanes the colleens with their swains strolled what +times the strains of the organtoned melodeon Britannia metalbound with +four acting stops and twelvefold bellows, a sacrifice, greatest bargain +ever...._ + +_(Renewed laughter. He mumbles incoherently. Reporters complain that +they cannot hear.)_ + +LONGHAND AND SHORTHAND: _(Without looking up from their notebooks.)_ +Loosen his boots. + +PROFESSOR MACHUGH: _(From the presstable, coughs and calls.)_ Cough it +up, man. Get it out in bits. + +_(The crossexamination proceeds_ re _Bloom and the bucket. A large +bucket. Bloom himself. Bowel trouble. In Beaver street. Gripe, yes. +Quite bad. A plasterer’s bucket. By walking stifflegged. Suffered +untold misery. Deadly agony. About noon. Love or burgundy. Yes, some +spinach. Crucial moment. He did not look in the bucket. Nobody. Rather +a mess. Not completely. A_ Titbits _back number_.) + +_(Uproar and catcalls. Bloom in a torn frockcoat stained with +whitewash, dinged silk hat sideways on his head, a strip of +stickingplaster across his nose, talks inaudibly.)_ + +J. J. O’MOLLOY: _(In barrister’s grey wig and stuffgown, speaking with +a voice of pained protest.)_ This is no place for indecent levity at +the expense of an erring mortal disguised in liquor. We are not in a +beargarden nor at an Oxford rag nor is this a travesty of justice. My +client is an infant, a poor foreign immigrant who started scratch as a +stowaway and is now trying to turn an honest penny. The trumped up +misdemeanour was due to a momentary aberration of heredity, brought on +by hallucination, such familiarities as the alleged guilty occurrence +being quite permitted in my client’s native place, the land of the +Pharaoh. _Prima facie_, I put it to you that there was no attempt at +carnally knowing. Intimacy did not occur and the offence complained of +by Driscoll, that her virtue was solicited, was not repeated. I would +deal in especial with atavism. There have been cases of shipwreck and +somnambulism in my client’s family. If the accused could speak he could +a tale unfold—one of the strangest that have ever been narrated between +the covers of a book. He himself, my lord, is a physical wreck from +cobbler’s weak chest. His submission is that he is of Mongolian +extraction and irresponsible for his actions. Not all there, in fact. + +BLOOM: _(Barefoot, pigeonbreasted, in lascar’s vest and trousers, +apologetic toes turned in, opens his tiny mole’s eyes and looks about +him dazedly, passing a slow hand across his forehead. Then he hitches +his belt sailor fashion and with a shrug of oriental obeisance salutes +the court, pointing one thumb heavenward.)_ Him makee velly muchee fine +night. _(He begins to lilt simply.)_ + + Li li poo lil chile + Blingee pigfoot evly night + Payee two shilly... + +_(He is howled down.)_ + +J. J. O’MOLLOY: _(Hotly to the populace.)_ This is a lonehand fight. By +Hades, I will not have any client of mine gagged and badgered in this +fashion by a pack of curs and laughing hyenas. The Mosaic code has +superseded the law of the jungle. I say it and I say it emphatically, +without wishing for one moment to defeat the ends of justice, accused +was not accessory before the act and prosecutrix has not been tampered +with. The young person was treated by defendant as if she were his very +own daughter. _(Bloom takes J. J. O’Molloy’s hand and raises it to his +lips.)_ I shall call rebutting evidence to prove up to the hilt that +the hidden hand is again at its old game. When in doubt persecute +Bloom. My client, an innately bashful man, would be the last man in the +world to do anything ungentlemanly which injured modesty could object +to or cast a stone at a girl who took the wrong turning when some +dastard, responsible for her condition, had worked his own sweet will +on her. He wants to go straight. I regard him as the whitest man I +know. He is down on his luck at present owing to the mortgaging of his +extensive property at Agendath Netaim in faraway Asia Minor, slides of +which will now be shown. _(To Bloom.)_ I suggest that you will do the +handsome thing. + +BLOOM: A penny in the pound. + +_(The image of the lake of Kinnereth with blurred cattle cropping in +silver haze is projected on the wall. Moses Dlugacz, ferreteyed albino, +in blue dungarees, stands up in the gallery, holding in each hand an +orange citron and a pork kidney.)_ + +DLUGACZ: _(Hoarsely.)_ Bleibtreustrasse, Berlin, W. 13. + +_(J. J. O’Molloy steps on to a low plinth and holds the lapel of his +coat with solemnity. His face lengthens, grows pale and bearded, with +sunken eyes, the blotches of phthisis and hectic cheekbones of John F. +Taylor. He applies his handkerchief to his mouth and scrutinises the +galloping tide of rosepink blood.)_ + +J. J. O’MOLLOY: _(Almost voicelessly.)_ Excuse me. I am suffering from +a severe chill, have recently come from a sickbed. A few wellchosen +words. _(He assumes the avine head, foxy moustache and proboscidal +eloquence of Seymour Bushe.)_ When the angel’s book comes to be opened +if aught that the pensive bosom has inaugurated of soultransfigured and +of soultransfiguring deserves to live I say accord the prisoner at the +bar the sacred benefit of the doubt. + +_(A paper with something written on it is handed into court._) + +BLOOM: _(In court dress.)_ Can give best references. Messrs Callan, +Coleman. Mr Wisdom Hely J. P. My old chief Joe Cuffe. Mr V. B. Dillon, +ex lord mayor of Dublin. I have moved in the charmed circle of the +highest... Queens of Dublin society. _(Carelessly.)_ I was just +chatting this afternoon at the viceregal lodge to my old pals, sir +Robert and lady Ball, astronomer royal, at the levee. Sir Bob, I +said... + +MRS YELVERTON BARRY: _(In lowcorsaged opal balldress and elbowlength +ivory gloves, wearing a sabletrimmed brickquilted dolman, a comb of +brilliants and panache of osprey in her hair.)_ Arrest him, constable. +He wrote me an anonymous letter in prentice backhand when my husband +was in the North Riding of Tipperary on the Munster circuit, signed +James Lovebirch. He said that he had seen from the gods my peerless +globes as I sat in a box of the _Theatre Royal_ at a command +performance of _La Cigale_. I deeply inflamed him, he said. He made +improper overtures to me to misconduct myself at half past four p.m. on +the following Thursday, Dunsink time. He offered to send me through the +post a work of fiction by Monsieur Paul de Kock, entitled _The Girl +with the Three Pairs of Stays_. + +MRS BELLINGHAM: _(In cap and seal coney mantle, wrapped up to the nose, +steps out of her brougham and scans through tortoiseshell +quizzing-glasses which she takes from inside her huge opossum muff.)_ +Also to me. Yes, I believe it is the same objectionable person. Because +he closed my carriage door outside sir Thornley Stoker’s one sleety day +during the cold snap of February ninetythree when even the grid of the +wastepipe and the ballstop in my bath cistern were frozen. Subsequently +he enclosed a bloom of edelweiss culled on the heights, as he said, in +my honour. I had it examined by a botanical expert and elicited the +information that it was a blossom of the homegrown potato plant +purloined from a forcingcase of the model farm. + +MRS YELVERTON BARRY: Shame on him! + +_(A crowd of sluts and ragamuffins surges forward.)_ + +THE SLUTS AND RAGAMUFFINS: _(Screaming.)_ Stop thief! Hurrah there, +Bluebeard! Three cheers for Ikey Mo! + +SECOND WATCH: _(Produces handcuffs.)_ Here are the darbies. + +MRS BELLINGHAM: He addressed me in several handwritings with fulsome +compliments as a Venus in furs and alleged profound pity for my +frostbound coachman Palmer while in the same breath he expressed +himself as envious of his earflaps and fleecy sheepskins and of his +fortunate proximity to my person, when standing behind my chair wearing +my livery and the armorial bearings of the Bellingham escutcheon +garnished sable, a buck’s head couped or. He lauded almost +extravagantly my nether extremities, my swelling calves in silk hose +drawn up to the limit, and eulogised glowingly my other hidden +treasures in priceless lace which, he said, he could conjure up. He +urged me (Stating that he felt it his mission in life to urge me.) to +defile the marriage bed, to commit adultery at the earliest possible +opportunity. + +THE HONOURABLE MRS MERVYN TALBOYS: _(In amazon costume, hard hat, +jackboots cockspurred, vermilion waistcoat, fawn musketeer gauntlets +with braided drums, long train held up and hunting crop with which she +strikes her welt constantly.)_ Also me. Because he saw me on the polo +ground of the Phoenix park at the match All Ireland versus the Rest of +Ireland. My eyes, I know, shone divinely as I watched Captain Slogger +Dennehy of the Inniskillings win the final chukkar on his darling cob +_Centaur._ This plebeian Don Juan observed me from behind a hackney car +and sent me in double envelopes an obscene photograph, such as are sold +after dark on Paris boulevards, insulting to any lady. I have it still. +It represents a partially nude señorita, frail and lovely (his wife, as +he solemnly assured me, taken by him from nature), practising illicit +intercourse with a muscular torero, evidently a blackguard. He urged me +to do likewise, to misbehave, to sin with officers of the garrison. He +implored me to soil his letter in an unspeakable manner, to chastise +him as he richly deserves, to bestride and ride him, to give him a most +vicious horsewhipping. + +MRS BELLINGHAM: Me too. + +MRS YELVERTON BARRY: Me too. + +_(Several highly respectable Dublin ladies hold up improper letters +received from Bloom.)_ + +THE HONOURABLE MRS MERVYN TALBOYS: _(Stamps her jingling spurs in a +sudden paroxysm of fury.)_ I will, by the God above me. I’ll scourge +the pigeonlivered cur as long as I can stand over him. I’ll flay him +alive. + +BLOOM: _(His eyes closing, quails expectantly.)_ Here? _(He squirms.)_ +Again! _(He pants cringing.)_ I love the danger. + +THE HONOURABLE MRS MERVYN TALBOYS: Very much so! I’ll make it hot for +you. I’ll make you dance Jack Latten for that. + +MRS BELLINGHAM: Tan his breech well, the upstart! Write the stars and +stripes on it! + +MRS YELVERTON BARRY: Disgraceful! There’s no excuse for him! A married +man! + +BLOOM: All these people. I meant only the spanking idea. A warm +tingling glow without effusion. Refined birching to stimulate the +circulation. + +THE HONOURABLE MRS MERVYN TALBOYS: _(Laughs derisively.)_ O, did you, +my fine fellow? Well, by the living God, you’ll get the surprise of +your life now, believe me, the most unmerciful hiding a man ever +bargained for. You have lashed the dormant tigress in my nature into +fury. + +MRS BELLINGHAM: _(Shakes her muff and quizzing-glasses vindictively.)_ +Make him smart, Hanna dear. Give him ginger. Thrash the mongrel within +an inch of his life. The cat-o’-nine-tails. Geld him. Vivisect him. + +BLOOM: _(Shuddering, shrinking, joins his hands: with hangdog mien.)_ O +cold! O shivery! It was your ambrosial beauty. Forget, forgive. Kismet. +Let me off this once. _(He offers the other cheek.)_ + +MRS YELVERTON BARRY: _(Severely.)_ Don’t do so on any account, Mrs +Talboys! He should be soundly trounced! + +THE HONOURABLE MRS MERVYN TALBOYS: _(Unbuttoning her gauntlet +violently.)_ I’ll do no such thing. Pigdog and always was ever since he +was pupped! To dare address me! I’ll flog him black and blue in the +public streets. I’ll dig my spurs in him up to the rowel. He is a +wellknown cuckold. _(She swishes her huntingcrop savagely in the air.)_ +Take down his trousers without loss of time. Come here, sir! Quick! +Ready? + +BLOOM: _(Trembling, beginning to obey.)_ The weather has been so warm. + +_(Davy Stephens, ringletted, passes with a bevy of barefoot newsboys.)_ + +DAVY STEPHENS: _Messenger of the Sacred Heart_ and _Evening Telegraph_ +with Saint Patrick’s Day supplement. Containing the new addresses of +all the cuckolds in Dublin. + +_(The very reverend Canon O’Hanlon in cloth of gold cope elevates and +exposes a marble timepiece. Before him Father Conroy and the reverend +John Hughes S. J. bend low.)_ + +THE TIMEPIECE: _(Unportalling.)_ + + Cuckoo. + Cuckoo. + Cuckoo. + +_(The brass quoits of a bed are heard to jingle.)_ + +THE QUOITS: Jigjag. Jigajiga. Jigjag. + +_(A panel of fog rolls back rapidly, revealing rapidly in the jurybox +the faces of Martin Cunningham, foreman, silkhatted, Jack Power, Simon +Dedalus, Tom Kernan, Ned Lambert, John Henry Menton, Myles Crawford, +Lenehan, Paddy Leonard, Nosey Flynn, M’Coy and the featureless face of +a Nameless One.)_ + +THE NAMELESS ONE: Bareback riding. Weight for age. Gob, he organised +her. + +THE JURORS: _(All their heads turned to his voice.)_ Really? + +THE NAMELESS ONE: _(Snarls.)_ Arse over tip. Hundred shillings to five. + +THE JURORS: _(All their heads lowered in assent.)_ Most of us thought +as much. + +FIRST WATCH: He is a marked man. Another girl’s plait cut. Wanted: Jack +the Ripper. A thousand pounds reward. + +SECOND WATCH: _(Awed, whispers.)_ And in black. A mormon. Anarchist. + +THE CRIER: _(Loudly.)_ Whereas Leopold Bloom of no fixed abode is a +wellknown dynamitard, forger, bigamist, bawd and cuckold and a public +nuisance to the citizens of Dublin and whereas at this commission of +assizes the most honourable... + +_(His Honour, sir Frederick Falkiner, recorder of Dublin, in judicial +garb of grey stone rises from the bench, stonebearded. He bears in his +arms an umbrella sceptre. From his forehead arise starkly the Mosaic +ramshorns.)_ + +THE RECORDER: I will put an end to this white slave traffic and rid +Dublin of this odious pest. Scandalous! _(He dons the black cap.)_ Let +him be taken, Mr Subsheriff, from the dock where he now stands and +detained in custody in Mountjoy prison during His Majesty’s pleasure +and there be hanged by the neck until he is dead and therein fail not +at your peril or may the Lord have mercy on your soul. Remove him. _(A +black skullcap descends upon his head.)_ + +_(The subsheriff Long John Fanning appears, smoking a pungent Henry +Clay.)_ + +LONG JOHN FANNING: _(Scowls and calls with rich rolling utterance.)_ +Who’ll hang Judas Iscariot? + +_(H. Rumbold, master barber, in a bloodcoloured jerkin and tanner’s +apron, a rope coiled over his shoulder, mounts the block. A life +preserver and a nailstudded bludgeon are stuck in his belt. He rubs +grimly his grappling hands, knobbed with knuckledusters.)_ + +RUMBOLD: _(To the recorder with sinister familiarity.)_ Hanging Harry, +your Majesty, the Mersey terror. Five guineas a jugular. Neck or +nothing. + +_(The bells of George’s church toll slowly, loud dark iron.)_ + +THE BELLS: Heigho! Heigho! + +BLOOM: _(Desperately.)_ Wait. Stop. Gulls. Good heart. I saw. +Innocence. Girl in the monkeyhouse. Zoo. Lewd chimpanzee. +_(Breathlessly.)_ Pelvic basin. Her artless blush unmanned me. +_(Overcome with emotion.)_ I left the precincts. (He turns to a figure +in the crowd, appealing.) Hynes, may I speak to you? You know me. That +three shillings you can keep. If you want a little more... + +HYNES: _(Coldly.)_ You are a perfect stranger. + +SECOND WATCH: _(Points to the corner.)_ The bomb is here. + +FIRST WATCH: Infernal machine with a time fuse. + +BLOOM: No, no. Pig’s feet. I was at a funeral. + +FIRST WATCH: _(Draws his truncheon.)_ Liar! + +_(The beagle lifts his snout, showing the grey scorbutic face of Paddy +Dignam. He has gnawed all. He exhales a putrid carcasefed breath. He +grows to human size and shape. His dachshund coat becomes a brown +mortuary habit. His green eye flashes bloodshot. Half of one ear, all +the nose and both thumbs are ghouleaten.)_ + +PADDY DIGNAM: _(In a hollow voice.)_ It is true. It was my funeral. +Doctor Finucane pronounced life extinct when I succumbed to the disease +from natural causes. + +_(He lifts his mutilated ashen face moonwards and bays lugubriously.)_ + +BLOOM: _(In triumph.)_ You hear? + +PADDY DIGNAM: Bloom, I am Paddy Dignam’s spirit. List, list, O list! + +BLOOM: The voice is the voice of Esau. + +SECOND WATCH: _(Blesses himself.)_ How is that possible? + +FIRST WATCH: It is not in the penny catechism. + +PADDY DIGNAM: By metempsychosis. Spooks. + +A VOICE: O rocks. + +PADDY DIGNAM: _(Earnestly.)_ Once I was in the employ of Mr J. H. +Menton, solicitor, commissioner for oaths and affidavits, of 27 +Bachelor’s Walk. Now I am defunct, the wall of the heart hypertrophied. +Hard lines. The poor wife was awfully cut up. How is she bearing it? +Keep her off that bottle of sherry. _(He looks round him.)_ A lamp. I +must satisfy an animal need. That buttermilk didn’t agree with me. + +_(The portly figure of John O’Connell, caretaker, stands forth, holding +a bunch of keys tied with crape. Beside him stands Father Coffey, +chaplain, toadbellied, wrynecked, in a surplice and bandanna nightcap, +holding sleepily a staff of twisted poppies.)_ + +FATHER COFFEY: _(Yawns, then chants with a hoarse croak.)_ Namine. +Jacobs. Vobiscuits. Amen. + +JOHN O’CONNELL: _(Foghorns stormily through his megaphone.)_ Dignam, +Patrick T, deceased. + +PADDY DIGNAM: _(With pricked up ears, winces.)_ Overtones. _(He +wriggles forward and places an ear to the ground.)_ My master’s voice! + +JOHN O’CONNELL: Burial docket letter number U. P. eightyfive thousand. +Field seventeen. House of Keys. Plot, one hundred and one. + +_(Paddy Dignam listens with visible effort, thinking, his tail +stiffpointed, his ears cocked.)_ + +PADDY DIGNAM: Pray for the repose of his soul. + +_(He worms down through a coalhole, his brown habit trailing its tether +over rattling pebbles. After him toddles an obese grandfather rat on +fungus turtle paws under a grey carapace. Dignam’s voice, muffled, is +heard baying under ground:_ Dignam’s dead and gone below. _Tom +Rochford, robinredbreasted, in cap and breeches, jumps from his +twocolumned machine.)_ + +TOM ROCHFORD: _(A hand to his breastbone, bows.)_ Reuben J. A florin I +find him. _(He fixes the manhole with a resolute stare.)_ My turn now +on. Follow me up to Carlow. + +_(He executes a daredevil salmon leap in the air and is engulfed in the +coalhole. Two discs on the columns wobble, eyes of nought. All recedes. +Bloom plodges forward again through the sump. Kisses chirp amid the +rifts of fog. A piano sounds. He stands before a lighted house, +listening. The kisses, winging from their bowers, fly about him, +twittering, warbling, cooing.)_ + +THE KISSES: _(Warbling.)_ Leo! _(Twittering.)_ Icky licky micky sticky +for Leo! _(Cooing.)_ Coo coocoo! Yummyyum, Womwom! _(Warbling.)_ Big +comebig! Pirouette! Leopopold! _(Twittering.)_ Leeolee! _(Warbling.)_ O +Leo! + +_(They rustle, flutter upon his garments, alight, bright giddy flecks, +silvery sequins.)_ + +BLOOM: A man’s touch. Sad music. Church music. Perhaps here. + +_(Zoe Higgins, a young whore in a sapphire slip, closed with three +bronze buckles, a slim black velvet fillet round her throat, nods, +trips down the steps and accosts him.)_ + +ZOE: Are you looking for someone? He’s inside with his friend. + +BLOOM: Is this Mrs Mack’s? + +ZOE: No, eightyone. Mrs Cohen’s. You might go farther and fare worse. +Mother Slipperslapper. _(Familiarly.)_ She’s on the job herself tonight +with the vet her tipster that gives her all the winners and pays for +her son in Oxford. Working overtime but her luck’s turned today. +_(Suspiciously.)_ You’re not his father, are you? + +BLOOM: Not I! + +ZOE: You both in black. Has little mousey any tickles tonight? + +_(His skin, alert, feels her fingertips approach. A hand glides over +his left thigh.)_ + +ZOE: How’s the nuts? + +BLOOM: Off side. Curiously they are on the right. Heavier, I suppose. +One in a million my tailor, Mesias, says. + +ZOE: _(In sudden alarm.)_ You’ve a hard chancre. + +BLOOM: Not likely. + +ZOE: I feel it. + +_(Her hand slides into his left trouser pocket and brings out a hard +black shrivelled potato. She regards it and Bloom with dumb moist +lips.)_ + +BLOOM: A talisman. Heirloom. + +ZOE: For Zoe? For keeps? For being so nice, eh? + +_(She puts the potato greedily into a pocket then links his arm, +cuddling him with supple warmth. He smiles uneasily. Slowly, note by +note, oriental music is played. He gazes in the tawny crystal of her +eyes, ringed with kohol. His smile softens.)_ + +ZOE: You’ll know me the next time. + +BLOOM: _(Forlornly.)_ I never loved a dear gazelle but it was sure +to... + +_(Gazelles are leaping, feeding on the mountains. Near are lakes. Round +their shores file shadows black of cedargroves. Aroma rises, a strong +hairgrowth of resin. It burns, the orient, a sky of sapphire, cleft by +the bronze flight of eagles. Under it lies the womancity, nude, white, +still, cool, in luxury. A fountain murmurs among damask roses. Mammoth +roses murmur of scarlet winegrapes. A wine of shame, lust, blood +exudes, strangely murmuring.)_ + +ZOE: _(Murmuring singsong with the music, her odalisk lips lusciously +smeared with salve of swinefat and rosewater.) Schorach ani wenowach, +benoith Hierushaloim._ + +BLOOM: _(Fascinated.)_ I thought you were of good stock by your accent. + +ZOE: And you know what thought did? + +_(She bites his ear gently with little goldstopped teeth, sending on +him a cloying breath of stale garlic. The roses draw apart, disclose a +sepulchre of the gold of kings and their mouldering bones.)_ + +BLOOM: _(Draws back, mechanically caressing her right bub with a flat +awkward hand.)_ Are you a Dublin girl? + +ZOE: _(Catches a stray hair deftly and twists it to her coil.)_ No +bloody fear. I’m English. Have you a swaggerroot? + +BLOOM: _(As before.)_ Rarely smoke, dear. Cigar now and then. Childish +device. _(Lewdly.)_ The mouth can be better engaged than with a +cylinder of rank weed. + +ZOE: Go on. Make a stump speech out of it. + +BLOOM: _(In workman’s corduroy overalls, black gansy with red floating +tie and apache cap.)_ Mankind is incorrigible. Sir Walter Ralegh +brought from the new world that potato and that weed, the one a killer +of pestilence by absorption, the other a poisoner of the ear, eye, +heart, memory, will, understanding, all. That is to say he brought the +poison a hundred years before another person whose name I forget +brought the food. Suicide. Lies. All our habits. Why, look at our +public life! + +_(Midnight chimes from distant steeples.)_ + +THE CHIMES: Turn again, Leopold! Lord mayor of Dublin! + +BLOOM: _(In alderman’s gown and chain.)_ Electors of Arran Quay, Inns +Quay, Rotunda, Mountjoy and North Dock, better run a tramline, I say, +from the cattlemarket to the river. That’s the music of the future. +That’s my programme. _Cui bono?_ But our bucaneering Vanderdeckens in +their phantom ship of finance... + +AN ELECTOR: Three times three for our future chief magistrate! + +_(The aurora borealis of the torchlight procession leaps.)_ + +THE TORCHBEARERS: Hooray! + +_(Several wellknown burgesses, city magnates and freemen of the city +shake hands with Bloom and congratulate him. Timothy Harrington, late +thrice Lord Mayor of Dublin, imposing in mayoral scarlet, gold chain +and white silk tie, confers with councillor Lorcan Sherlock,_ locum +tenens. _They nod vigorously in agreement.)_ + +LATE LORD MAYOR HARRINGTON: _(In scarlet robe with mace, gold mayoral +chain and large white silk scarf.)_ That alderman sir Leo Bloom’s +speech be printed at the expense of the ratepayers. That the house in +which he was born be ornamented with a commemorative tablet and that +the thoroughfare hitherto known as Cow Parlour off Cork street be +henceforth designated Boulevard Bloom. + +COUNCILLOR LORCAN SHERLOCK: Carried unanimously. + +BLOOM: _(Impassionedly.)_ These flying Dutchmen or lying Dutchmen as +they recline in their upholstered poop, casting dice, what reck they? +Machines is their cry, their chimera, their panacea. Laboursaving +apparatuses, supplanters, bugbears, manufactured monsters for mutual +murder, hideous hobgoblins produced by a horde of capitalistic lusts +upon our prostituted labour. The poor man starves while they are +grassing their royal mountain stags or shooting peasants and +phartridges in their purblind pomp of pelf and power. But their reign +is rover for rever and ever and ev... + +_(Prolonged applause. Venetian masts, maypoles and festal arches spring +up. A streamer bearing the legends_ Cead Mile Failte _and_ Mah Ttob +Melek Israel _spans the street. All the windows are thronged with +sightseers, chiefly ladies. Along the route the regiments of the Royal +Dublin Fusiliers, the King’s own Scottish Borderers, the Cameron +Highlanders and the Welsh Fusiliers, standing to attention, keep back +the crowd. Boys from High school are perched on the lampposts, +telegraph poles, windowsills, cornices, gutters, chimneypots, railings, +rainspouts, whistling and cheering. The pillar of the cloud appears. A +fife and drum band is heard in the distance playing the Kol Nidre. The +beaters approach with imperial eagles hoisted, trailing banners and +waving oriental palms. The chryselephantine papal standard rises high, +surrounded by pennons of the civic flag. The van of the procession +appears headed by John Howard Parnell, city marshal, in a chessboard +tabard, the Athlone Poursuivant and Ulster King of Arms. They are +followed by the Right Honourable Joseph Hutchinson, lord mayor of +Dublin, his lordship the lord mayor of Cork, their worships the mayors +of Limerick, Galway, Sligo and Waterford, twentyeight Irish +representative peers, sirdars, grandees and maharajahs bearing the +cloth of estate, the Dublin Metropolitan Fire Brigade, the chapter of +the saints of finance in their plutocratic order of precedence, the +bishop of Down and Connor, His Eminence Michael cardinal Logue, +archbishop of Armagh, primate of all Ireland, His Grace, the most +reverend Dr William Alexander, archbishop of Armagh, primate of all +Ireland, the chief rabbi, the presbyterian moderator, the heads of the +baptist, anabaptist, methodist and Moravian chapels and the honorary +secretary of the society of friends. After them march the guilds and +trades and trainbands with flying colours: coopers, bird fanciers, +millwrights, newspaper canvassers, law scriveners, masseurs, vintners, +trussmakers, chimneysweeps, lard refiners, tabinet and poplin weavers, +farriers, Italian warehousemen, church decorators, bootjack +manufacturers, undertakers, silk mercers, lapidaries, salesmasters, +corkcutters, assessors of fire losses, dyers and cleaners, export +bottlers, fellmongers, ticketwriters, heraldic seal engravers, horse +repository hands, bullion brokers, cricket and archery outfitters, +riddlemakers, egg and potato factors, hosiers and glovers, plumbing +contractors. After them march gentlemen of the bedchamber, Black Rod, +Deputy Garter, Gold Stick, the master of horse, the lord great +chamberlain, the earl marshal, the high constable carrying the sword of +state, saint Stephen’s iron crown, the chalice and bible. Four buglers +on foot blow a sennet. Beefeaters reply, winding clarions of welcome. +Under an arch of triumph Bloom appears, bareheaded, in a crimson velvet +mantle trimmed with ermine, bearing Saint Edward’s staff, the orb and +sceptre with the dove, the curtana. He is seated on a milkwhite horse +with long flowing crimson tail, richly caparisoned, with golden +headstall. Wild excitement. The ladies from their balconies throw down +rosepetals. The air is perfumed with essences. The men cheer. Bloom’s +boys run amid the bystanders with branches of hawthorn and +wrenbushes.)_ + +BLOOM’S BOYS: + + The wren, the wren, + The king of all birds, + Saint Stephen’s his day + Was caught in the furze. + +A BLACKSMITH: _(Murmurs.)_ For the honour of God! And is that Bloom? He +scarcely looks thirtyone. + +A PAVIOR AND FLAGGER: That’s the famous Bloom now, the world’s greatest +reformer. Hats off! + +_(All uncover their heads. Women whisper eagerly.)_ + +A MILLIONAIRESS: _(Richly.)_ Isn’t he simply wonderful? + +A NOBLEWOMAN: _(Nobly.)_ All that man has seen! + +A FEMINIST: _(Masculinely.)_ And done! + +A BELLHANGER: A classic face! He has the forehead of a thinker. + +_(Bloom’s weather. A sunburst appears in the northwest.)_ + +THE BISHOP OF DOWN AND CONNOR: I here present your undoubted +emperor-president and king-chairman, the most serene and potent and +very puissant ruler of this realm. God save Leopold the First! + +ALL: God save Leopold the First! + +BLOOM: _(In dalmatic and purple mantle, to the bishop of Down and +Connor, with dignity.)_ Thanks, somewhat eminent sir. + +WILLIAM, ARCHBISHOP OF ARMAGH: _(In purple stock and shovel hat.)_ Will +you to your power cause law and mercy to be executed in all your +judgments in Ireland and territories thereunto belonging? + +BLOOM: _(Placing his right hand on his testicles, swears.)_ So may the +Creator deal with me. All this I promise to do. + +MICHAEL, ARCHBISHOP OF ARMAGH: _(Pours a cruse of hairoil over Bloom’s +head.) Gaudium magnum annuntio vobis. Habemus carneficem._ Leopold, +Patrick, Andrew, David, George, be thou anointed! + +_(Bloom assumes a mantle of cloth of gold and puts on a ruby ring. He +ascends and stands on the stone of destiny. The representative peers +put on at the same time their twentyeight crowns. Joybells ring in +Christ church, Saint Patrick’s, George’s and gay Malahide. Mirus bazaar +fireworks go up from all sides with symbolical phallopyrotechnic +designs. The peers do homage, one by one, approaching and +genuflecting.)_ + +THE PEERS: I do become your liege man of life and limb to earthly +worship. + +_(Bloom holds up his right hand on which sparkles the Koh-i-Noor +diamond. His palfrey neighs. Immediate silence. Wireless +intercontinental and interplanetary transmitters are set for reception +of message.)_ + +BLOOM: My subjects! We hereby nominate our faithful charger Copula +Felix hereditary Grand Vizier and announce that we have this day +repudiated our former spouse and have bestowed our royal hand upon the +princess Selene, the splendour of night. + +_(The former morganatic spouse of Bloom is hastily removed in the Black +Maria. The princess Selene, in moonblue robes, a silver crescent on her +head, descends from a Sedan chair, borne by two giants. An outburst of +cheering.)_ + +JOHN HOWARD PARNELL: _(Raises the royal standard.)_ Illustrious Bloom! +Successor to my famous brother! + +BLOOM: _(Embraces John Howard Parnell.)_ We thank you from our heart, +John, for this right royal welcome to green Erin, the promised land of +our common ancestors. + +_(The freedom of the city is presented to him embodied in a charter. +The keys of Dublin, crossed on a crimson cushion, are given to him. He +shows all that he is wearing green socks.)_ + +TOM KERNAN: You deserve it, your honour. + +BLOOM: On this day twenty years ago we overcame the hereditary enemy at +Ladysmith. Our howitzers and camel swivel guns played on his lines with +telling effect. Half a league onward! They charge! All is lost now! Do +we yield? No! We drive them headlong! Lo! We charge! Deploying to the +left our light horse swept across the heights of Plevna and, uttering +their warcry _Bonafide Sabaoth_, sabred the Saracen gunners to a man. + +THE CHAPEL OF FREEMAN TYPESETTERS: Hear! Hear! + +JOHN WYSE NOLAN: There’s the man that got away James Stephens. + +A BLUECOAT SCHOOLBOY: Bravo! + +AN OLD RESIDENT: You’re a credit to your country, sir, that’s what you +are. + +AN APPLEWOMAN: He’s a man like Ireland wants. + +BLOOM: My beloved subjects, a new era is about to dawn. I, Bloom, tell +you verily it is even now at hand. Yea, on the word of a Bloom, ye +shall ere long enter into the golden city which is to be, the new +Bloomusalem in the Nova Hibernia of the future. + +_(Thirtytwo workmen, wearing rosettes, from all the counties of +Ireland, under the guidance of Derwan the builder, construct the new +Bloomusalem. It is a colossal edifice with crystal roof, built in the +shape of a huge pork kidney, containing forty thousand rooms. In the +course of its extension several buildings and monuments are demolished. +Government offices are temporarily transferred to railway sheds. +Numerous houses are razed to the ground. The inhabitants are lodged in +barrels and boxes, all marked in red with the letters: L. B. Several +paupers fall from a ladder. A part of the walls of Dublin, crowded with +loyal sightseers, collapses.)_ + +THE SIGHTSEERS: _(Dying.) Morituri te salutant. (They die.)_ + +_(A man in a brown macintosh springs up through a trapdoor. He points +an elongated finger at Bloom.)_ + +THE MAN IN THE MACINTOSH: Don’t you believe a word he says. That man is +Leopold M’Intosh, the notorious fireraiser. His real name is Higgins. + +BLOOM: Shoot him! Dog of a christian! So much for M’Intosh! + +_(A cannonshot. The man in the macintosh disappears. Bloom with his +sceptre strikes down poppies. The instantaneous deaths of many powerful +enemies, graziers, members of parliament, members of standing +committees, are reported. Bloom’s bodyguard distribute Maundy money, +commemoration medals, loaves and fishes, temperance badges, expensive +Henry Clay cigars, free cowbones for soup, rubber preservatives in +sealed envelopes tied with gold thread, butter scotch, pineapple rock,_ +billets doux _in the form of cocked hats, readymade suits, porringers +of toad in the hole, bottles of Jeyes’ Fluid, purchase stamps, 40 days’ +indulgences, spurious coins, dairyfed pork sausages, theatre passes, +season tickets available for all tramlines, coupons of the royal and +privileged Hungarian lottery, penny dinner counters, cheap reprints of +the World’s Twelve Worst Books: Froggy And Fritz (politic), Care of the +Baby (infantilic), 50 Meals for 7/6 (culinic), Was Jesus a Sun Myth? +(historic), Expel that Pain (medic), Infant’s Compendium of the +Universe (cosmic), Let’s All Chortle (hilaric), Canvasser’s Vade Mecum +(journalic), Loveletters of Mother Assistant (erotic), Who’s Who in +Space (astric), Songs that Reached Our Heart (melodic), Pennywise’s Way +to Wealth (parsimonic). A general rush and scramble. Women press +forward to touch the hem of Bloom’s robe. The lady Gwendolen Dubedat +bursts through the throng, leaps on his horse and kisses him on both +cheeks amid great acclamation. A magnesium flashlight photograph is +taken. Babes and sucklings are held up.)_ + +THE WOMEN: Little father! Little father! + +THE BABES AND SUCKLINGS: + + Clap clap hands till Poldy comes home, + Cakes in his pocket for Leo alone. + +_(Bloom, bending down, pokes Baby Boardman gently in the stomach.)_ + +BABY BOARDMAN: _(Hiccups, curdled milk flowing from his mouth.)_ +Hajajaja. + +BLOOM: _(Shaking hands with a blind stripling.)_ My more than Brother! +_(Placing his arms round the shoulders of an old couple.)_ Dear old +friends! _(He plays pussy fourcorners with ragged boys and girls.)_ +Peep! Bopeep! _(He wheels twins in a perambulator.)_ Ticktacktwo +wouldyousetashoe? _(He performs juggler’s tricks, draws red, orange, +yellow, green, blue, indigo and violet silk handkerchiefs from his +mouth.)_ Roygbiv. 32 feet per second. _(He consoles a widow.)_ Absence +makes the heart grow younger. _(He dances the Highland fling with +grotesque antics.)_ Leg it, ye devils! _(He kisses the bedsores of a +palsied veteran.)_ Honourable wounds! _(He trips up a fat policeman.)_ +U. p: up. U. p: up. _(He whispers in the ear of a blushing waitress and +laughs kindly.)_ Ah, naughty, naughty! _(He eats a raw turnip offered +him by Maurice Butterly, farmer.)_ Fine! Splendid! _(He refuses to +accept three shillings offered him by Joseph Hynes, journalist.)_ My +dear fellow, not at all! _(He gives his coat to a beggar.)_ Please +accept. _(He takes part in a stomach race with elderly male and female +cripples.)_ Come on, boys! Wriggle it, girls! + +THE CITIZEN: _(Choked with emotion, brushes aside a tear in his emerald +muffler.)_ May the good God bless him! + +_(The rams’ horns sound for silence. The standard of Zion is hoisted.)_ + +BLOOM: _(Uncloaks impressively, revealing obesity, unrolls a paper and +reads solemnly.)_ Aleph Beth Ghimel Daleth Hagadah Tephilim Kosher Yom +Kippur Hanukah Roschaschana Beni Brith Bar Mitzvah Mazzoth Askenazim +Meshuggah Talith. + +_(An official translation is read by Jimmy Henry, assistant town +clerk.)_ + +JIMMY HENRY: The Court of Conscience is now open. His Most Catholic +Majesty will now administer open air justice. Free medical and legal +advice, solution of doubles and other problems. All cordially invited. +Given at this our loyal city of Dublin in the year 1 of the +Paradisiacal Era. + +PADDY LEONARD: What am I to do about my rates and taxes? + +BLOOM: Pay them, my friend. + +PADDY LEONARD: Thank you. + +NOSEY FLYNN: Can I raise a mortgage on my fire insurance? + +BLOOM: _(Obdurately.)_ Sirs, take notice that by the law of torts you +are bound over in your own recognisances for six months in the sum of +five pounds. + +J. J. O’MOLLOY: A Daniel did I say? Nay! A Peter O’Brien! + +NOSEY FLYNN: Where do I draw the five pounds? + +PISSER BURKE: For bladder trouble? + +BLOOM: + +_Acid. nit. hydrochlor. dil.,_ 20 minims +_Tinct. nux vom.,_ 5 minims +_Extr. taraxel. lig.,_ 30 minims. +_Aq. dis. ter in die._ + +CHRIS CALLINAN: What is the parallax of the subsolar ecliptic of +Aldebaran? + +BLOOM: Pleased to hear from you, Chris. K. 11. + +JOE HYNES: Why aren’t you in uniform? + +BLOOM: When my progenitor of sainted memory wore the uniform of the +Austrian despot in a dank prison where was yours? + +BEN DOLLARD: Pansies? + +BLOOM: Embellish (beautify) suburban gardens. + +BEN DOLLARD: When twins arrive? + +BLOOM: Father (pater, dad) starts thinking. + +LARRY O’ROURKE: An eightday licence for my new premises. You remember +me, sir Leo, when you were in number seven. I’m sending around a dozen +of stout for the missus. + +BLOOM: _(Coldly.)_ You have the advantage of me. Lady Bloom accepts no +presents. + +CROFTON: This is indeed a festivity. + +BLOOM: _(Solemnly.)_ You call it a festivity. I call it a sacrament. + +ALEXANDER KEYES: When will we have our own house of keys? + +BLOOM: I stand for the reform of municipal morals and the plain ten +commandments. New worlds for old. Union of all, jew, moslem and +gentile. Three acres and a cow for all children of nature. Saloon motor +hearses. Compulsory manual labour for all. All parks open to the public +day and night. Electric dishscrubbers. Tuberculosis, lunacy, war and +mendicancy must now cease. General amnesty, weekly carnival with masked +licence, bonuses for all, esperanto the universal language with +universal brotherhood. No more patriotism of barspongers and dropsical +impostors. Free money, free rent, free love and a free lay church in a +free lay state. + +O’MADDEN BURKE: Free fox in a free henroost. + +DAVY BYRNE: _(Yawning.)_ Iiiiiiiiiaaaaaaach! + +BLOOM: Mixed races and mixed marriage. + +LENEHAN: What about mixed bathing? + +_(Bloom explains to those near him his schemes for social regeneration. +All agree with him. The keeper of the Kildare street museum appears, +dragging a lorry on which are the shaking statues of several naked +goddesses, Venus Callipyge, Venus Pandemos, Venus Metempsychosis, and +plaster figures, also naked, representing the new nine muses, Commerce, +Operatic Music, Amor, Publicity, Manufacture, Liberty of Speech, Plural +Voting, Gastronomy, Private Hygiene, Seaside Concert Entertainments, +Painless Obstetrics and Astronomy for the People.)_ + +FATHER FARLEY: He is an episcopalian, an agnostic, an anythingarian +seeking to overthrow our holy faith. + +MRS RIORDAN: _(Tears up her will.)_ I’m disappointed in you! You bad +man! + +MOTHER GROGAN: _(Removes her boot to throw it at Bloom.)_ You beast! +You abominable person! + +NOSEY FLYNN: Give us a tune, Bloom. One of the old sweet songs. + +BLOOM: _(With rollicking humour.)_ + + I vowed that I never would leave her, + She turned out a cruel deceiver. + With my tooraloom tooraloom tooraloom tooraloom. + +HOPPY HOLOHAN: Good old Bloom! There’s nobody like him after all. + +PADDY LEONARD: Stage Irishman! + +BLOOM: What railway opera is like a tramline in Gibraltar? The Rows of +Casteele. + +_(Laughter.)_ + +LENEHAN: Plagiarist! Down with Bloom! + +THE VEILED SIBYL: _(Enthusiastically.)_ I’m a Bloomite and I glory in +it. I believe in him in spite of all. I’d give my life for him, the +funniest man on earth. + +BLOOM: _(Winks at the bystanders.)_ I bet she’s a bonny lassie. + +THEODORE PUREFOY: _(In fishingcap and oilskin jacket.)_ He employs a +mechanical device to frustrate the sacred ends of nature. + +THE VEILED SIBYL: _(Stabs herself.)_ My hero god! _(She dies.)_ + +_(Many most attractive and enthusiastic women also commit suicide by +stabbing, drowning, drinking prussic acid, aconite, arsenic, opening +their veins, refusing food, casting themselves under steamrollers, from +the top of Nelson’s Pillar, into the great vat of Guinness’s brewery, +asphyxiating themselves by placing their heads in gasovens, hanging +themselves in stylish garters, leaping from windows of different +storeys.)_ + +ALEXANDER J DOWIE: _(Violently.)_ Fellowchristians and antiBloomites, +the man called Bloom is from the roots of hell, a disgrace to christian +men. A fiendish libertine from his earliest years this stinking goat of +Mendes gave precocious signs of infantile debauchery, recalling the +cities of the plain, with a dissolute granddam. This vile hypocrite, +bronzed with infamy, is the white bull mentioned in the Apocalypse. A +worshipper of the Scarlet Woman, intrigue is the very breath of his +nostrils. The stake faggots and the caldron of boiling oil are for him. +Caliban! + +THE MOB: Lynch him! Roast him! He’s as bad as Parnell was. Mr Fox! + +_(Mother Grogan throws her boot at Bloom. Several shopkeepers from +upper and lower Dorset street throw objects of little or no commercial +value, hambones, condensed milk tins, unsaleable cabbage, stale bread, +sheep’s tails, odd pieces of fat.)_ + +BLOOM: _(Excitedly.)_ This is midsummer madness, some ghastly joke +again. By heaven, I am guiltless as the unsunned snow! It was my +brother Henry. He is my double. He lives in number 2 Dolphin’s Barn. +Slander, the viper, has wrongfully accused me. Fellowcountrymen, _sgenl +inn ban bata coisde gan capall._ I call on my old friend, Dr Malachi +Mulligan, sex specialist, to give medical testimony on my behalf. + +DR MULLIGAN: _(In motor jerkin, green motorgoggles on his brow.)_ Dr +Bloom is bisexually abnormal. He has recently escaped from Dr Eustace’s +private asylum for demented gentlemen. Born out of bedlock hereditary +epilepsy is present, the consequence of unbridled lust. Traces of +elephantiasis have been discovered among his ascendants. There are +marked symptoms of chronic exhibitionism. Ambidexterity is also latent. +He is prematurely bald from selfabuse, perversely idealistic in +consequence, a reformed rake, and has metal teeth. In consequence of a +family complex he has temporarily lost his memory and I believe him to +be more sinned against than sinning. I have made a pervaginal +examination and, after application of the acid test to 5427 anal, +axillary, pectoral and pubic hairs, I declare him to be _virgo +intacta._ + +_(Bloom holds his high grade hat over his genital organs.)_ + +DR MADDEN: Hypsospadia is also marked. In the interest of coming +generations I suggest that the parts affected should be preserved in +spirits of wine in the national teratological museum. + +DR CROTTHERS: I have examined the patient’s urine. It is albuminoid. +Salivation is insufficient, the patellar reflex intermittent. + +DR PUNCH COSTELLO: The _fetor judaicus_ is most perceptible. + +DR DIXON: _(Reads a bill of health.)_ Professor Bloom is a finished +example of the new womanly man. His moral nature is simple and lovable. +Many have found him a dear man, a dear person. He is a rather quaint +fellow on the whole, coy though not feebleminded in the medical sense. +He has written a really beautiful letter, a poem in itself, to the +court missionary of the Reformed Priests’ Protection Society which +clears up everything. He is practically a total abstainer and I can +affirm that he sleeps on a straw litter and eats the most Spartan food, +cold dried grocer’s peas. He wears a hairshirt of pure Irish +manufacture winter and summer and scourges himself every Saturday. He +was, I understand, at one time a firstclass misdemeanant in Glencree +reformatory. Another report states that he was a very posthumous child. +I appeal for clemency in the name of the most sacred word our vocal +organs have ever been called upon to speak. He is about to have a baby. + +_(General commotion and compassion. Women faint. A wealthy American +makes a street collection for Bloom. Gold and silver coins, blank +cheques, banknotes, jewels, treasury bonds, maturing bills of exchange, +I. O. U’s, wedding rings, watchchains, lockets, necklaces and bracelets +are rapidly collected.)_ + +BLOOM: O, I so want to be a mother. + +MRS THORNTON: _(In nursetender’s gown.)_ Embrace me tight, dear. You’ll +be soon over it. Tight, dear. + +_(Bloom embraces her tightly and bears eight male yellow and white +children. They appear on a redcarpeted staircase adorned with expensive +plants. All the octuplets are handsome, with valuable metallic faces, +wellmade, respectably dressed and wellconducted, speaking five modern +languages fluently and interested in various arts and sciences. Each +has his name printed in legible letters on his shirtfront: Nasodoro, +Goldfinger, Chrysostomos, Maindorée, Silversmile, Silberselber, +Vifargent, Panargyros. They are immediately appointed to positions of +high public trust in several different countries as managing directors +of banks, traffic managers of railways, chairmen of limited liability +companies, vicechairmen of hotel syndicates.)_ + +A VOICE: Bloom, are you the Messiah ben Joseph or ben David? + +BLOOM: _(Darkly.)_ You have said it. + +BROTHER BUZZ: Then perform a miracle like Father Charles. + +BANTAM LYONS: Prophesy who will win the Saint Leger. + +_(Bloom walks on a net, covers his left eye with his left ear, passes +through several walls, climbs Nelson’s Pillar, hangs from the top ledge +by his eyelids, eats twelve dozen oysters (shells included), heals +several sufferers from king’s evil, contracts his face so as to +resemble many historical personages, Lord Beaconsfield, Lord Byron, Wat +Tyler, Moses of Egypt, Moses Maimonides, Moses Mendelssohn, Henry +Irving, Rip van Winkle, Kossuth, Jean Jacques Rousseau, Baron Leopold +Rothschild, Robinson Crusoe, Sherlock Holmes, Pasteur, turns each foot +simultaneously in different directions, bids the tide turn back, +eclipses the sun by extending his little finger.)_ + +BRINI, PAPAL NUNCIO: _(In papal zouave’s uniform, steel cuirasses as +breastplate, armplates, thighplates, legplates, large profane +moustaches and brown paper mitre.) Leopoldi autem generatio._ Moses +begat Noah and Noah begat Eunuch and Eunuch begat O’Halloran and +O’Halloran begat Guggenheim and Guggenheim begat Agendath and Agendath +begat Netaim and Netaim begat Le Hirsch and Le Hirsch begat Jesurum and +Jesurum begat MacKay and MacKay begat Ostrolopsky and Ostrolopsky begat +Smerdoz and Smerdoz begat Weiss and Weiss begat Schwarz and Schwarz +begat Adrianopoli and Adrianopoli begat Aranjuez and Aranjuez begat +Lewy Lawson and Lewy Lawson begat Ichabudonosor and Ichabudonosor begat +O’Donnell Magnus and O’Donnell Magnus begat Christbaum and Christbaum +begat ben Maimun and ben Maimun begat Dusty Rhodes and Dusty Rhodes +begat Benamor and Benamor begat Jones-Smith and Jones-Smith begat +Savorgnanovich and Savorgnanovich begat Jasperstone and Jasperstone +begat Vingtetunieme and Vingtetunieme begat Szombathely and Szombathely +begat Virag and Virag begat Bloom _et vocabitur nomen eius Emmanuel._ + +A DEADHAND: _(Writes on the wall.)_ Bloom is a cod. + +CRAB: _(In bushranger’s kit.)_ What did you do in the cattlecreep +behind Kilbarrack? + +A FEMALE INFANT: _(Shakes a rattle.)_ And under Ballybough bridge? + +A HOLLYBUSH: And in the devil’s glen? + +BLOOM: _(Blushes furiously all over from frons to nates, three tears +falling from his left eye.)_ Spare my past. + +THE IRISH EVICTED TENANTS: _(In bodycoats, kneebreeches, with +Donnybrook fair shillelaghs.)_ Sjambok him! + +_(Bloom with asses’ ears seats himself in the pillory with crossed +arms, his feet protruding. He whistles_ Don Giovanni, a cenar teco. +_Artane orphans, joining hands, caper round him. Girls of the Prison +Gate Mission, joining hands, caper round in the opposite direction.)_ + +THE ARTANE ORPHANS: + + You hig, you hog, you dirty dog! + You think the ladies love you! + + THE PRISON GATE GIRLS: + + If you see Kay + Tell him he may + See you in tea + Tell him from me. + +HORNBLOWER: _(In ephod and huntingcap, announces.)_ And he shall carry +the sins of the people to Azazel, the spirit which is in the +wilderness, and to Lilith, the nighthag. And they shall stone him and +defile him, yea, all from Agendath Netaim and from Mizraim, the land of +Ham. + +_(All the people cast soft pantomime stones at Bloom. Many bonafide +travellers and ownerless dogs come near him and defile him. Mastiansky +and Citron approach in gaberdines, wearing long earlocks. They wag +their beards at Bloom.)_ + +MASTIANSKY AND CITRON: Belial! Laemlein of Istria, the false Messiah! +Abulafia! Recant! + +_(George R Mesias, Bloom’s tailor, appears, a tailor’s goose under his +arm, presenting a bill.)_ + +MESIAS: To alteration one pair trousers eleven shillings. + +BLOOM: _(Rubs his hands cheerfully.)_ Just like old times. Poor Bloom! + +_(Reuben J Dodd, blackbearded Iscariot, bad shepherd, bearing on his +shoulders the drowned corpse of his son, approaches the pillory.)_ + +REUBEN J: _(Whispers hoarsely.)_ The squeak is out. A split is gone for +the flatties. Nip the first rattler. + +THE FIRE BRIGADE: Pflaap! + +BROTHER BUZZ: _(Invests Bloom in a yellow habit with embroidery of +painted flames and high pointed hat. He places a bag of gunpowder round +his neck and hands him over to the civil power, saying.)_ Forgive him +his trespasses. + +_(Lieutenant Myers of the Dublin Fire Brigade by general request sets +fire to Bloom. Lamentations.)_ + +THE CITIZEN: Thank heaven! + +BLOOM: _(In a seamless garment marked I. H. S. stands upright amid +phoenix flames.)_ Weep not for me, O daughters of Erin. + +_(He exhibits to Dublin reporters traces of burning. The daughters of +Erin, in black garments, with large prayerbooks and long lighted +candles in their hands, kneel down and pray.)_ + +THE DAUGHTERS OF ERIN: + + Kidney of Bloom, pray for us + Flower of the Bath, pray for us + Mentor of Menton, pray for us + Canvasser for the Freeman, pray for us + Charitable Mason, pray for us + Wandering Soap, pray for us + Sweets of Sin, pray for us + Music without Words, pray for us + Reprover of the Citizen, pray for us + Friend of all Frillies, pray for us + Midwife Most Merciful, pray for us + Potato Preservative against Plague and Pestilence, pray for us. + +_(A choir of six hundred voices, conducted by Vincent O’Brien, sings +the chorus from Handel’s Messiah_ Alleluia for the Lord God Omnipotent +reigneth, _accompanied on the organ by Joseph Glynn. Bloom becomes +mute, shrunken, carbonised.)_ + +ZOE: Talk away till you’re black in the face. + +BLOOM: _(In caubeen with clay pipe stuck in the band, dusty brogues, an +emigrant’s red handkerchief bundle in his hand, leading a black bogoak +pig by a sugaun, with a smile in his eye.)_ Let me be going now, woman +of the house, for by all the goats in Connemara I’m after having the +father and mother of a bating. _(With a tear in his eye.)_ All +insanity. Patriotism, sorrow for the dead, music, future of the race. +To be or not to be. Life’s dream is o’er. End it peacefully. They can +live on. _(He gazes far away mournfully.)_ I am ruined. A few pastilles +of aconite. The blinds drawn. A letter. Then lie back to rest. _(He +breathes softly.)_ No more. I have lived. Fare. Farewell. + +ZOE: _(Stiffly, her finger in her neckfillet.)_ Honest? Till the next +time. _(She sneers.)_ Suppose you got up the wrong side of the bed or +came too quick with your best girl. O, I can read your thoughts! + +BLOOM: _(Bitterly.)_ Man and woman, love, what is it? A cork and +bottle. I’m sick of it. Let everything rip. + +ZOE: _(In sudden sulks.)_ I hate a rotter that’s insincere. Give a +bleeding whore a chance. + +BLOOM: _(Repentantly.)_ I am very disagreeable. You are a necessary +evil. Where are you from? London? + +ZOE: _(Glibly.)_ Hog’s Norton where the pigs plays the organs. I’m +Yorkshire born. _(She holds his hand which is feeling for her nipple.)_ +I say, Tommy Tittlemouse. Stop that and begin worse. Have you cash for +a short time? Ten shillings? + +BLOOM: _(Smiles, nods slowly.)_ More, houri, more. + +ZOE: And more’s mother? _(She pats him offhandedly with velvet paws.)_ +Are you coming into the musicroom to see our new pianola? Come and I’ll +peel off. + +BLOOM: _(Feeling his occiput dubiously with the unparalleled +embarrassment of a harassed pedlar gauging the symmetry of her peeled +pears.)_ Somebody would be dreadfully jealous if she knew. The +greeneyed monster. _(Earnestly.)_ You know how difficult it is. I +needn’t tell you. + +ZOE: _(Flattered.)_ What the eye can’t see the heart can’t grieve for. +_(She pats him.)_ Come. + +BLOOM: Laughing witch! The hand that rocks the cradle. + +ZOE: Babby! + +BLOOM: _(In babylinen and pelisse, bigheaded, with a caul of dark hair, +fixes big eyes on her fluid slip and counts its bronze buckles with a +chubby finger, his moist tongue lolling and lisping.)_ One two tlee: +tlee tlwo tlone. + +THE BUCKLES: Love me. Love me not. Love me. + +ZOE: Silent means consent. _(With little parted talons she captures his +hand, her forefinger giving to his palm the passtouch of secret +monitor, luring him to doom.)_ Hot hands cold gizzard. + +_(He hesitates amid scents, music, temptations. She leads him towards +the steps, drawing him by the odour of her armpits, the vice of her +painted eyes, the rustle of her slip in whose sinuous folds lurks the +lion reek of all the male brutes that have possessed her.)_ + +THE MALE BRUTES: _(Exhaling sulphur of rut and dung and ramping in +their loosebox, faintly roaring, their drugged heads swaying to and +fro.)_ Good! + +_(Zoe and Bloom reach the doorway where two sister whores are seated. +They examine him curiously from under their pencilled brows and smile +to his hasty bow. He trips awkwardly.)_ + +ZOE: _(Her lucky hand instantly saving him.)_ Hoopsa! Don’t fall +upstairs. + +BLOOM: The just man falls seven times. _(He stands aside at the +threshold.)_ After you is good manners. + +ZOE: Ladies first, gentlemen after. + +_(She crosses the threshold. He hesitates. She turns and, holding out +her hands, draws him over. He hops. On the antlered rack of the hall +hang a man’s hat and waterproof. Bloom uncovers himself but, seeing +them, frowns, then smiles, preoccupied. A door on the return landing is +flung open. A man in purple shirt and grey trousers, brownsocked, +passes with an ape’s gait, his bald head and goatee beard upheld, +hugging a full waterjugjar, his twotailed black braces dangling at +heels. Averting his face quickly Bloom bends to examine on the +halltable the spaniel eyes of a running fox: then, his lifted head +sniffing, follows Zoe into the musicroom. A shade of mauve tissuepaper +dims the light of the chandelier. Round and round a moth flies, +colliding, escaping. The floor is covered with an oilcloth mosaic of +jade and azure and cinnabar rhomboids. Footmarks are stamped over it in +all senses, heel to heel, heel to hollow, toe to toe, feet locked, a +morris of shuffling feet without body phantoms, all in a scrimmage +higgledypiggledy. The walls are tapestried with a paper of yewfronds +and clear glades. In the grate is spread a screen of peacock feathers. +Lynch squats crosslegged on the hearthrug of matted hair, his cap back +to the front. With a wand he beats time slowly. Kitty Ricketts, a bony +pallid whore in navy costume, doeskin gloves rolled back from a coral +wristlet, a chain purse in her hand, sits perched on the edge of the +table swinging her leg and glancing at herself in the gilt mirror over +the mantelpiece. A tag of her corsetlace hangs slightly below her +jacket. Lynch indicates mockingly the couple at the piano.)_ + +KITTY: _(Coughs behind her hand.)_ She’s a bit imbecillic. _(She signs +with a waggling forefinger.)_ Blemblem. _(Lynch lifts up her skirt and +white petticoat with the wand. She settles them down quickly.)_ Respect +yourself. _(She hiccups, then bends quickly her sailor hat under which +her hair glows, red with henna.)_ O, excuse! + +ZOE: More limelight, Charley. _(She goes to the chandelier and turns +the gas full cock.)_ + +KITTY: _(Peers at the gasjet.)_ What ails it tonight? + +LYNCH: _(Deeply.)_ Enter a ghost and hobgoblins. + +ZOE: Clap on the back for Zoe. + +_(The wand in Lynch’s hand flashes: a brass poker. Stephen stands at +the pianola on which sprawl his hat and ashplant. With two fingers he +repeats once more the series of empty fifths. Florry Talbot, a blond +feeble goosefat whore in a tatterdemalion gown of mildewed strawberry, +lolls spreadeagle in the sofacorner, her limp forearm pendent over the +bolster, listening. A heavy stye droops over her sleepy eyelid.)_ + +KITTY: _(Hiccups again with a kick of her horsed foot.)_ O, excuse! + +ZOE: _(Promptly.)_ Your boy’s thinking of you. Tie a knot on your +shift. + +_(Kitty Ricketts bends her head. Her boa uncoils, slides, glides over +her shoulder, back, arm, chair to the ground. Lynch lifts the curled +catterpillar on his wand. She snakes her neck, nestling. Stephen +glances behind at the squatted figure with its cap back to the front.)_ + +STEPHEN: As a matter of fact it is of no importance whether Benedetto +Marcello found it or made it. The rite is the poet’s rest. It may be an +old hymn to Demeter or also illustrate _Cœla enarrant gloriam Domini._ +It is susceptible of nodes or modes as far apart as hyperphrygian and +mixolydian and of texts so divergent as priests haihooping round +David’s that is Circe’s or what am I saying Ceres’ altar and David’s +tip from the stable to his chief bassoonist about the alrightness of +his almightiness. _Mais nom de nom,_ that is another pair of trousers. +_Jetez la gourme. Faut que jeunesse se passe. (He stops, points at +Lynch’s cap, smiles, laughs.)_ Which side is your knowledge bump? + +THE CAP: _(With saturnine spleen.)_ Bah! It is because it is. Woman’s +reason. Jewgreek is greekjew. Extremes meet. Death is the highest form +of life. Bah! + +STEPHEN: You remember fairly accurately all my errors, boasts, +mistakes. How long shall I continue to close my eyes to disloyalty? +Whetstone! + +THE CAP: Bah! + +STEPHEN: Here’s another for you. _(He frowns.)_ The reason is because +the fundamental and the dominant are separated by the greatest possible +interval which... + +THE CAP: Which? Finish. You can’t. + +STEPHEN: _(With an effort.)_ Interval which. Is the greatest possible +ellipse. Consistent with. The ultimate return. The octave. Which. + +THE CAP: Which? + +_(Outside the gramophone begins to blare_ The Holy City.) + +STEPHEN: _(Abruptly.)_ What went forth to the ends of the world to +traverse not itself, God, the sun, Shakespeare, a commercial traveller, +having itself traversed in reality itself becomes that self. Wait a +moment. Wait a second. Damn that fellow’s noise in the street. Self +which it itself was ineluctably preconditioned to become. _Ecco!_ + +LYNCH: _(With a mocking whinny of laughter grins at Bloom and Zoe +Higgins.)_ What a learned speech, eh? + +ZOE: _(Briskly.)_ God help your head, he knows more than you have +forgotten. + +_(With obese stupidity Florry Talbot regards Stephen.)_ + +FLORRY: They say the last day is coming this summer. + +KITTY: No! + +ZOE: _(Explodes in laughter.)_ Great unjust God! + +FLORRY: _(Offended.)_ Well, it was in the papers about Antichrist. O, +my foot’s tickling. + +_(Ragged barefoot newsboys, jogging a wagtail kite, patter past, +yelling.)_ + +THE NEWSBOYS: Stop press edition. Result of the rockinghorse races. Sea +serpent in the royal canal. Safe arrival of Antichrist. + +_(Stephen turns and sees Bloom.)_ + +STEPHEN: A time, times and half a time. + +_(Reuben J Antichrist, wandering jew, a clutching hand open on his +spine, stumps forward. Across his loins is slung a pilgrim’s wallet +from which protrude promissory notes and dishonoured bills. Aloft over +his shoulder he bears a long boatpole from the hook of which the sodden +huddled mass of his only son, saved from Liffey waters, hangs from the +slack of its breeches. A hobgoblin in the image of Punch Costello, +hipshot, crookbacked, hydrocephalic, prognathic with receding forehead +and Ally Sloper nose, tumbles in somersaults through the gathering +darkness.)_ + +ALL: What? + +THE HOBGOBLIN: _(His jaws chattering, capers to and fro, goggling his +eyes, squeaking, kangaroohopping with outstretched clutching arms, then +all at once thrusts his lipless face through the fork of his thighs.) +Il vient! C’est moi! L’homme qui rit! L’homme primigène! (He whirls +round and round with dervish howls.) Sieurs et dames, faites vos jeux! +(He crouches juggling. Tiny roulette planets fly from his hands.) Les +jeux sont faits! (The planets rush together, uttering crepitant +cracks.) Rien va plus! (The planets, buoyant balloons, sail swollen up +and away. He springs off into vacuum.)_ + +FLORRY: _(Sinking into torpor, crossing herself secretly.)_ The end of +the world! + +_(A female tepid effluvium leaks out from her. Nebulous obscurity +occupies space. Through the drifting fog without the gramophone blares +over coughs and feetshuffling.)_ + +THE GRAMOPHONE: + + Jerusalem! + Open your gates and sing + Hosanna... + +_(A rocket rushes up the sky and bursts. A white star falls from it, +proclaiming the consummation of all things and second coming of Elijah. +Along an infinite invisible tightrope taut from zenith to nadir the End +of the World, a twoheaded octopus in gillie’s kilts, busby and tartan +filibegs, whirls through the murk, head over heels, in the form of the +Three Legs of Man.)_ + +THE END OF THE WORLD: _(With a Scotch accent.)_ Wha’ll dance the keel +row, the keel row, the keel row? + +_(Over the possing drift and choking breathcoughs, Elijah’s voice, +harsh as a corncrake’s, jars on high. Perspiring in a loose lawn +surplice with funnel sleeves he is seen, vergerfaced, above a rostrum +about which the banner of old glory is draped. He thumps the parapet.)_ + +ELIJAH: No yapping, if you please, in this booth. Jake Crane, Creole +Sue, Dove Campbell, Abe Kirschner, do your coughing with your mouths +shut. Say, I am operating all this trunk line. Boys, do it now. God’s +time is 12.25. Tell mother you’ll be there. Rush your order and you +play a slick ace. Join on right here. Book through to eternity +junction, the nonstop run. Just one word more. Are you a god or a +doggone clod? If the second advent came to Coney Island are we ready? +Florry Christ, Stephen Christ, Zoe Christ, Bloom Christ, Kitty Christ, +Lynch Christ, it’s up to you to sense that cosmic force. Have we cold +feet about the cosmos? No. Be on the side of the angels. Be a prism. +You have that something within, the higher self. You can rub shoulders +with a Jesus, a Gautama, an Ingersoll. Are you all in this vibration? I +say you are. You once nobble that, congregation, and a buck joyride to +heaven becomes a back number. You got me? It’s a lifebrightener, sure. +The hottest stuff ever was. It’s the whole pie with jam in. It’s just +the cutest snappiest line out. It is immense, supersumptuous. It +restores. It vibrates. I know and I am some vibrator. Joking apart and, +getting down to bedrock, A. J. Christ Dowie and the harmonial +philosophy, have you got that? O. K. Seventyseven west sixtyninth +street. Got me? That’s it. You call me up by sunphone any old time. +Bumboosers, save your stamps. _(He shouts.)_ Now then our glory song. +All join heartily in the singing. Encore! _(He sings.)_ Jeru... + +THE GRAMOPHONE: _(Drowning his voice.)_ Whorusalaminyourhighhohhhh... +_(The disc rasps gratingly against the needle.)_ + +THE THREE WHORES: _(Covering their ears, squawk.)_ Ahhkkk! + +ELIJAH: _(In rolledup shirtsleeves, black in the face, shouts at the +top of his voice, his arms uplifted.)_ Big Brother up there, Mr +President, you hear what I done just been saying to you. Certainly, I +sort of believe strong in you, Mr President. I certainly am thinking +now Miss Higgins and Miss Ricketts got religion way inside them. +Certainly seems to me I don’t never see no wusser scared female than +the way you been, Miss Florry, just now as I done seed you. Mr +President, you come long and help me save our sisters dear. _(He winks +at his audience.)_ Our Mr President, he twig the whole lot and he aint +saying nothing. + +KITTY-KATE: I forgot myself. In a weak moment I erred and did what I +did on Constitution hill. I was confirmed by the bishop and enrolled in +the brown scapular. My mother’s sister married a Montmorency. It was a +working plumber was my ruination when I was pure. + +ZOE-FANNY: I let him larrup it into me for the fun of it. + +FLORRY-TERESA: It was in consequence of a portwine beverage on top of +Hennessy’s three star. I was guilty with Whelan when he slipped into +the bed. + +STEPHEN: In the beginning was the word, in the end the world without +end. Blessed be the eight beatitudes. + +_(The beatitudes, Dixon, Madden, Crotthers, Costello, Lenehan, Bannon, +Mulligan and Lynch in white surgical students’ gowns, four abreast, +goosestepping, tramp fast past in noisy marching.)_ + +THE BEATITUDES: _(Incoherently.)_ Beer beef battledog buybull businum +barnum buggerum bishop. + +LYSTER: _(In quakergrey kneebreeches and broadbrimmed hat, says +discreetly.)_ He is our friend. I need not mention names. Seek thou the +light. + +_(He corantos by. Best enters in hairdresser’s attire, shinily +laundered, his locks in curlpapers. He leads John Eglinton who wears a +mandarin’s kimono of Nankeen yellow, lizardlettered, and a high pagoda +hat.)_ + +BEST: _(Smiling, lifts the hat and displays a shaven poll from the +crown of which bristles a pigtail toupee tied with an orange topknot.)_ +I was just beautifying him, don’t you know. A thing of beauty, don’t +you know, Yeats says, or I mean, Keats says. + +JOHN EGLINTON: _(Produces a greencapped dark lantern and flashes it +towards a corner: with carping accent.)_ Esthetics and cosmetics are +for the boudoir. I am out for truth. Plain truth for a plain man. +Tanderagee wants the facts and means to get them. + +_(In the cone of the searchlight behind the coalscuttle, ollave, +holyeyed, the bearded figure of Mananaun MacLir broods, chin on knees. +He rises slowly. A cold seawind blows from his druid mouth. About his +head writhe eels and elvers. He is encrusted with weeds and shells. His +right hand holds a bicycle pump. His left hand grasps a huge crayfish +by its two talons.)_ + +MANANAUN MACLIR: _(With a voice of waves.)_ Aum! Hek! Wal! Ak! Lub! +Mor! Ma! White yoghin of the gods. Occult pimander of Hermes +Trismegistos. _(With a voice of whistling seawind.)_ Punarjanam +patsypunjaub! I won’t have my leg pulled. It has been said by one: +beware the left, the cult of Shakti. _(With a cry of stormbirds.)_ +Shakti Shiva, darkhidden Father! _(He smites with his bicycle pump the +crayfish in his left hand. On its cooperative dial glow the twelve +signs of the zodiac. He wails with the vehemence of the ocean.)_ Aum! +Baum! Pyjaum! I am the light of the homestead! I am the dreamery +creamery butter. + +_(A skeleton judashand strangles the light. The green light wanes to +mauve. The gasjet wails whistling.)_ + +THE GASJET: Pooah! Pfuiiiiiii! + +_(Zoe runs to the chandelier and, crooking her leg, adjusts the +mantle.)_ + +ZOE: Who has a fag as I’m here? + +LYNCH: _(Tossing a cigarette on to the table.)_ Here. + +ZOE: _(Her head perched aside in mock pride.)_ Is that the way to hand +the _pot_ to a lady? _(She stretches up to light the cigarette over the +flame, twirling it slowly, showing the brown tufts of her armpits. +Lynch with his poker lifts boldly a side of her slip. Bare from her +garters up her flesh appears under the sapphire a nixie’s green. She +puffs calmly at her cigarette.)_ Can you see the beautyspot of my +behind? + +LYNCH: I’m not looking. + +ZOE: _(Makes sheep’s eyes.)_ No? You wouldn’t do a less thing. Would +you suck a lemon? + +_(Squinting in mock shame she glances with sidelong meaning at Bloom, +then twists round towards him, pulling her slip free of the poker. Blue +fluid again flows over her flesh. Bloom stands, smiling desirously, +twirling his thumbs. Kitty Ricketts licks her middle finger with her +spittle and, gazing in the mirror, smooths both eyebrows. Lipoti Virag, +basilicogrammate, chutes rapidly down through the chimneyflue and +struts two steps to the left on gawky pink stilts. He is sausaged into +several overcoats and wears a brown macintosh under which he holds a +roll of parchment. In his left eye flashes the monocle of Cashel Boyle +O’Connor Fitzmaurice Tisdall Farrell. On his head is perched an +Egyptian pshent. Two quills project over his ears.)_ + +VIRAG: _(Heels together, bows.)_ My name is Virag Lipoti, of +Szombathely. _(He coughs thoughtfully, drily.)_ Promiscuous nakedness +is much in evidence hereabouts, eh? Inadvertently her backview revealed +the fact that she is not wearing those rather intimate garments of +which you are a particular devotee. The injection mark on the thigh I +hope you perceived? Good. + +BLOOM: Granpapachi. But... + +VIRAG: Number two on the other hand, she of the cherry rouge and +coiffeuse white, whose hair owes not a little to our tribal elixir of +gopherwood, is in walking costume and tightly staysed by her sit, I +should opine. Backbone in front, so to say. Correct me but I always +understood that the act so performed by skittish humans with glimpses +of lingerie appealed to you in virtue of its exhibitionististicicity. +In a word. Hippogriff. Am I right? + +BLOOM: She is rather lean. + +VIRAG: _(Not unpleasantly.)_ Absolutely! Well observed and those +pannier pockets of the skirt and slightly pegtop effect are devised to +suggest bunchiness of hip. A new purchase at some monster sale for +which a gull has been mulcted. Meretricious finery to deceive the eye. +Observe the attention to details of dustspecks. Never put on you +tomorrow what you can wear today. Parallax! _(With a nervous twitch of +his head.)_ Did you hear my brain go snap? Pollysyllabax! + +BLOOM: _(An elbow resting in a hand, a forefinger against his cheek.)_ +She seems sad. + +VIRAG: _(Cynically, his weasel teeth bared yellow, draws down his left +eye with a finger and barks hoarsely.)_ Hoax! Beware of the flapper and +bogus mournful. Lily of the alley. All possess bachelor’s button +discovered by Rualdus Columbus. Tumble her. Columble her. Chameleon. +_(More genially.)_ Well then, permit me to draw your attention to item +number three. There is plenty of her visible to the naked eye. Observe +the mass of oxygenated vegetable matter on her skull. What ho, she +bumps! The ugly duckling of the party, longcasted and deep in keel. + +BLOOM: _(Regretfully.)_ When you come out without your gun. + +VIRAG: We can do you all brands, mild, medium and strong. Pay your +money, take your choice. How happy could you be with either... + +BLOOM: With...? + +VIRAG: _(His tongue upcurling.)_ Lyum! Look. Her beam is broad. She is +coated with quite a considerable layer of fat. Obviously mammal in +weight of bosom you remark that she has in front well to the fore two +protuberances of very respectable dimensions, inclined to fall in the +noonday soupplate, while on her rere lower down are two additional +protuberances, suggestive of potent rectum and tumescent for palpation, +which leave nothing to be desired save compactness. Such fleshy parts +are the product of careful nurture. When coopfattened their livers +reach an elephantine size. Pellets of new bread with fennygreek and +gumbenjamin swamped down by potions of green tea endow them during +their brief existence with natural pincushions of quite colossal +blubber. That suits your book, eh? Fleshhotpots of Egypt to hanker +after. Wallow in it. Lycopodium. _(His throat twitches.)_ Slapbang! +There he goes again. + +BLOOM: The stye I dislike. + +VIRAG: _(Arches his eyebrows.)_ Contact with a goldring, they say. +_Argumentum ad feminam_, as we said in old Rome and ancient Greece in +the consulship of Diplodocus and Ichthyosauros. For the rest Eve’s +sovereign remedy. Not for sale. Hire only. Huguenot. _(He twitches.)_ +It is a funny sound. _(He coughs encouragingly.)_ But possibly it is +only a wart. I presume you shall have remembered what I will have +taught you on that head? Wheatenmeal with honey and nutmeg. + +BLOOM: _(Reflecting.)_ Wheatenmeal with lycopodium and syllabax. This +searching ordeal. It has been an unusually fatiguing day, a chapter of +accidents. Wait. I mean, wartsblood spreads warts, you said... + +VIRAG: _(Severely, his nose hardhumped, his side eye winking.)_ Stop +twirling your thumbs and have a good old thunk. See, you have +forgotten. Exercise your mnemotechnic. _La causa è santa_. Tara. Tara. +_(Aside.)_ He will surely remember. + +BLOOM: Rosemary also did I understand you to say or willpower over +parasitic tissues. Then nay no I have an inkling. The touch of a +deadhand cures. Mnemo? + +VIRAG: _(Excitedly.)_ I say so. I say so. E’en so. Technic. _(He taps +his parchmentroll energetically.)_ This book tells you how to act with +all descriptive particulars. Consult index for agitated fear of +aconite, melancholy of muriatic, priapic pulsatilla. Virag is going to +talk about amputation. Our old friend caustic. They must be starved. +Snip off with horsehair under the denned neck. But, to change the venue +to the Bulgar and the Basque, have you made up your mind whether you +like or dislike women in male habiliments? _(With a dry snigger.)_ You +intended to devote an entire year to the study of the religious problem +and the summer months of 1886 to square the circle and win that +million. Pomegranate! From the sublime to the ridiculous is but a step. +Pyjamas, let us say? Or stockingette gussetted knickers, closed? Or, +put we the case, those complicated combinations, camiknickers? _(He +crows derisively.)_ Keekeereekee! + +_(Bloom surveys uncertainly the three whores then gazes at the veiled +mauve light, hearing the everflying moth.)_ + +BLOOM: I wanted then to have now concluded. Nightdress was never. Hence +this. But tomorrow is a new day will be. Past was is today. What now is +will then morrow as now was be past yester. + +VIRAG: _(Prompts in a pig’s whisper.)_ Insects of the day spend their +brief existence in reiterated coition, lured by the smell of the +inferiorly pulchritudinous female possessing extendified pudendal nerve +in dorsal region. Pretty Poll! _(His yellow parrotbeak gabbles +nasally.)_ They had a proverb in the Carpathians in or about the year +five thousand five hundred and fifty of our era. One tablespoonful of +honey will attract friend Bruin more than half a dozen barrels of first +choice malt vinegar. Bear’s buzz bothers bees. But of this apart. At +another time we may resume. We were very pleased, we others. _(He +coughs and, bending his brow, rubs his nose thoughtfully with a +scooping hand.)_ You shall find that these night insects follow the +light. An illusion for remember their complex unadjustable eye. For all +these knotty points see the seventeenth book of my Fundamentals of +Sexology or the Love Passion which Doctor L. B. says is the book +sensation of the year. Some, to example, there are again whose +movements are automatic. Perceive. That is his appropriate sun. +Nightbird nightsun nighttown. Chase me, Charley! _(He blows into +Bloom’s ear.)_ Buzz! + +BLOOM: Bee or bluebottle too other day butting shadow on wall dazed +self then me wandered dazed down shirt good job I... + +VIRAG: _(His face impassive, laughs in a rich feminine key.)_ Splendid! +Spanish fly in his fly or mustard plaster on his dibble. _(He gobbles +gluttonously with turkey wattles.)_ Bubbly jock! Bubbly jock! Where are +we? Open Sesame! Cometh forth! _(He unrolls his parchment rapidly and +reads, his glowworm’s nose running backwards over the letters which he +claws.)_ Stay, good friend. I bring thee thy answer. Redbank oysters +will shortly be upon us. I’m the best o’cook. Those succulent bivalves +may help us and the truffles of Perigord, tubers dislodged through +mister omnivorous porker, were unsurpassed in cases of nervous debility +or viragitis. Though they stink yet they sting. _(He wags his head with +cackling raillery.)_ Jocular. With my eyeglass in my ocular. _(He +sneezes.)_ Amen! + +BLOOM: _(Absently.)_ Ocularly woman’s bivalve case is worse. Always +open sesame. The cloven sex. Why they fear vermin, creeping things. Yet +Eve and the serpent contradicts. Not a historical fact. Obvious analogy +to my idea. Serpents too are gluttons for woman’s milk. Wind their way +through miles of omnivorous forest to sucksucculent her breast dry. +Like those bubblyjocular Roman matrons one reads of in Elephantuliasis. + +VIRAG: _(His mouth projected in hard wrinkles, eyes stonily forlornly +closed, psalms in outlandish monotone.)_ That the cows with their those +distended udders that they have been the the known... + +BLOOM: I am going to scream. I beg your pardon. Ah? So. _(He repeats.)_ +Spontaneously to seek out the saurian’s lair in order to entrust their +teats to his avid suction. Ant milks aphis. _(Profoundly.)_ Instinct +rules the world. In life. In death. + +VIRAG: _(Head askew, arches his back and hunched wingshoulders, peers +at the moth out of blear bulged eyes, points a horning claw and +cries.)_ Who’s moth moth? Who’s dear Gerald? Dear Ger, that you? O +dear, he is Gerald. O, I much fear he shall be most badly burned. Will +some pleashe pershon not now impediment so catastrophics mit agitation +of firstclass tablenumpkin? _(He mews.)_ Puss puss puss puss! _(He +sighs, draws back and stares sideways down with dropping underjaw.)_ +Well, well. He doth rest anon. (He snaps his jaws suddenly on the air.) + +THE MOTH: + + I’m a tiny tiny thing + Ever flying in the spring + Round and round a ringaring. + Long ago I was a king + Now I do this kind of thing + On the wing, on the wing! + Bing! + +_(He rushes against the mauve shade, flapping noisily.)_ Pretty pretty +pretty pretty pretty pretty petticoats. + +_(From left upper entrance with two gliding steps Henry Flower comes +forward to left front centre. He wears a dark mantle and drooping +plumed sombrero. He carries a silverstringed inlaid dulcimer and a +longstemmed bamboo Jacob’s pipe, its clay bowl fashioned as a female +head. He wears dark velvet hose and silverbuckled pumps. He has the +romantic Saviour’s face with flowing locks, thin beard and moustache. +His spindlelegs and sparrow feet are those of the tenor Mario, prince +of Candia. He settles down his goffered ruffs and moistens his lips +with a passage of his amorous tongue.)_ + +HENRY: _(In a low dulcet voice, touching the strings of his guitar.)_ +There is a flower that bloometh. + +_(Virag truculent, his jowl set, stares at the lamp. Grave Bloom +regards Zoe’s neck. Henry gallant turns with pendant dewlap to the +piano.)_ + +STEPHEN: _(To himself.)_ Play with your eyes shut. Imitate pa. Filling +my belly with husks of swine. Too much of this. I will arise and go to +my. Expect this is the. Steve, thou art in a parlous way. Must visit +old Deasy or telegraph. Our interview of this morning has left on me a +deep impression. Though our ages. Will write fully tomorrow. I’m +partially drunk, by the way. _(He touches the keys again.)_ Minor chord +comes now. Yes. Not much however. + +_(Almidano Artifoni holds out a batonroll of music with vigorous +moustachework.)_ + +ARTIFONI: _Ci rifletta. Lei rovina tutto._ + +FLORRY: Sing us something. Love’s old sweet song. + +STEPHEN: No voice. I am a most finished artist. Lynch, did I show you +the letter about the lute? + +FLORRY: _(Smirking.)_ The bird that can sing and won’t sing. + +_(The Siamese twins, Philip Drunk and Philip Sober, two Oxford dons +with lawnmowers, appear in the window embrasure. Both are masked with +Matthew Arnold’s face.)_ + +PHILIP SOBER: Take a fool’s advice. All is not well. Work it out with +the buttend of a pencil, like a good young idiot. Three pounds twelve +you got, two notes, one sovereign, two crowns, if youth but knew. +Mooney’s en ville, Mooney’s sur mer, the Moira, Larchet’s, Holles +street hospital, Burke’s. Eh? I am watching you. + +PHILIP DRUNK: _(Impatiently.)_ Ah, bosh, man. Go to hell! I paid my +way. If I could only find out about octaves. Reduplication of +personality. Who was it told me his name? _(His lawnmower begins to +purr.)_ Aha, yes. _Zoe mou sas agapo_. Have a notion I was here before. +When was it not Atkinson his card I have somewhere. Mac Somebody. +Unmack I have it. He told me about, hold on, Swinburne, was it, no? + +FLORRY: And the song? + +STEPHEN: Spirit is willing but the flesh is weak. + +FLORRY: Are you out of Maynooth? You’re like someone I knew once. + +STEPHEN: Out of it now. _(To himself.)_ Clever. + +PHILIP DRUNK AND PHILIP SOBER: _(Their lawnmowers purring with a +rigadoon of grasshalms.)_ Clever ever. Out of it out of it. By the bye +have you the book, the thing, the ashplant? Yes, there it, yes. +Cleverever outofitnow. Keep in condition. Do like us. + +ZOE: There was a priest down here two nights ago to do his bit of +business with his coat buttoned up. You needn’t try to hide, I says to +him. I know you’ve a Roman collar. + +VIRAG: Perfectly logical from his standpoint. Fall of man. _(Harshly, +his pupils waxing.)_ To hell with the pope! Nothing new under the sun. +I am the Virag who disclosed the Sex Secrets of Monks and Maidens. Why +I left the church of Rome. Read the Priest, the Woman and the +Confessional. Penrose. Flipperty Jippert. _(He wriggles.)_ Woman, +undoing with sweet pudor her belt of rushrope, offers her allmoist yoni +to man’s lingam. Short time after man presents woman with pieces of +jungle meat. Woman shows joy and covers herself with featherskins. Man +loves her yoni fiercely with big lingam, the stiff one. _(He cries.) +Coactus volui._ Then giddy woman will run about. Strong man grapses +woman’s wrist. Woman squeals, bites, spucks. Man, now fierce angry, +strikes woman’s fat yadgana. _(He chases his tail.)_ Piffpaff! Popo! +_(He stops, sneezes.)_ Pchp! _(He worries his butt.)_ Prrrrrht! + +LYNCH: I hope you gave the good father a penance. Nine glorias for +shooting a bishop. + +ZOE: _(Spouts walrus smoke through her nostrils.)_ He couldn’t get a +connection. Only, you know, sensation. A dry rush. + +BLOOM: Poor man! + +ZOE: _(Lightly.)_ Only for what happened him. + +BLOOM: How? + +VIRAG: _(A diabolic rictus of black luminosity contracting his visage, +cranes his scraggy neck forward. He lifts a mooncalf nozzle and howls.) +Verfluchte Goim!_ He had a father, forty fathers. He never existed. Pig +God! He had two left feet. He was Judas Iacchia, a Libyan eunuch, the +pope’s bastard. _(He leans out on tortured forepaws, elbows bent rigid, +his eye agonising in his flat skullneck and yelps over the mute +world.)_ A son of a whore. Apocalypse. + +KITTY: And Mary Shortall that was in the lock with the pox she got from +Jimmy Pidgeon in the blue caps had a child off him that couldn’t +swallow and was smothered with the convulsions in the mattress and we +all subscribed for the funeral. + +PHILIP DRUNK: _(Gravely.) Qui vous a mis dans cette fichue position, +Philippe?_ + +PHILIP SOBER: _(Gaily.) C’était le sacré pigeon, Philippe._ + +_(Kitty unpins her hat and sets it down calmly, patting her henna hair. +And a prettier, a daintier head of winsome curls was never seen on a +whore’s shoulders. Lynch puts on her hat. She whips it off.)_ + +LYNCH: _(Laughs.)_ And to such delights has Metchnikoff inoculated +anthropoid apes. + +FLORRY: _(Nods.)_ Locomotor ataxy. + +ZOE: _(Gaily.)_ O, my dictionary. + +LYNCH: Three wise virgins. + +VIRAG: _(Agueshaken, profuse yellow spawn foaming over his bony +epileptic lips.)_ She sold lovephiltres, whitewax, orangeflower. +Panther, the Roman centurion, polluted her with his genitories. _(He +sticks out a flickering phosphorescent scorpion tongue, his hand on his +fork.)_ Messiah! He burst her tympanum. _(With gibbering baboon’s cries +he jerks his hips in the cynical spasm.)_ Hik! Hek! Hak! Hok! Huk! Kok! +Kuk! + +_(Ben Jumbo Dollard, rubicund, musclebound, hairynostrilled, +hugebearded, cabbageeared, shaggychested, shockmaned, fatpapped, stands +forth, his loins and genitals tightened into a pair of black bathing +bagslops.)_ + +BEN DOLLARD: _(Nakkering castanet bones in his huge padded paws, yodels +jovially in base barreltone.)_ When love absorbs my ardent soul. + +_(The virgins Nurse Callan and Nurse Quigley burst through the +ringkeepers and the ropes and mob him with open arms.)_ + +THE VIRGINS: _(Gushingly.)_ Big Ben! Ben my Chree! + +A VOICE: Hold that fellow with the bad breeches. + +BEN DOLLARD: _(Smites his thigh in abundant laughter.)_ Hold him now. + +HENRY: _(Caressing on his breast a severed female head, murmurs.)_ +Thine heart, mine love. _(He plucks his lutestrings.)_ When first I +saw... + +VIRAG: _(Sloughing his skins, his multitudinous plumage moulting.)_ +Rats! _(He yawns, showing a coalblack throat, and closes his jaws by an +upward push of his parchmentroll.)_ After having said which I took my +departure. Farewell. Fare thee well. _Dreck!_ + +_(Henry Flower combs his moustache and beard rapidly with a pocketcomb +and gives a cow’s lick to his hair. Steered by his rapier, he glides to +the door, his wild harp slung behind him. Virag reaches the door in two +ungainly stilthops, his tail cocked, and deftly claps sideways on the +wall a pusyellow flybill, butting it with his head.)_ + +THE FLYBILL: K. 11. Post No Bills. Strictly confidential. Dr Hy Franks. + +HENRY: All is lost now. + +_(Virag unscrews his head in a trice and holds it under his arm.)_ + +VIRAG’S HEAD: Quack! + +_(Exeunt severally.)_ + +STEPHEN: _(Over his shoulder to Zoe.)_ You would have preferred the +fighting parson who founded the protestant error. But beware +Antisthenes, the dog sage, and the last end of Arius Heresiarchus. The +agony in the closet. + +LYNCH: All one and the same God to her. + +STEPHEN: _(Devoutly.)_ And sovereign Lord of all things. + +FLORRY: _(To Stephen.)_ I’m sure you’re a spoiled priest. Or a monk. + +LYNCH: He is. A cardinal’s son. + +STEPHEN: Cardinal sin. Monks of the screw. + +_(His Eminence Simon Stephen Cardinal Dedalus, Primate of all Ireland, +appears in the doorway, dressed in red soutane, sandals and socks. +Seven dwarf simian acolytes, also in red, cardinal sins, uphold his +train, peeping under it. He wears a battered silk hat sideways on his +head. His thumbs are stuck in his armpits and his palms outspread. +Round his neck hangs a rosary of corks ending on his breast in a +corkscrew cross. Releasing his thumbs, he invokes grace from on high +with large wave gestures and proclaims with bloated pomp:)_ + +THE CARDINAL: + + Conservio lies captured + He lies in the lowest dungeon + With manacles and chains around his limbs + Weighing upwards of three tons. + +_(He looks at all for a moment, his right eye closed tight, his left +cheek puffed out. Then, unable to repress his merriment, he rocks to +and fro, arms akimbo, and sings with broad rollicking humour:)_ + + O, the poor little fellow + Hihihihihis legs they were yellow + He was plump, fat and heavy and brisk as a snake + But some bloody savage + To graize his white cabbage + He murdered Nell Flaherty’s duckloving drake. + +_(A multitude of midges swarms white over his robe. He scratches +himself with crossed arms at his ribs, grimacing, and exclaims:)_ + +I’m suffering the agony of the damned. By the hoky fiddle, thanks be to +Jesus those funny little chaps are not unanimous. If they were they’d +walk me off the face of the bloody globe. + +_(His head aslant he blesses curtly with fore and middle fingers, +imparts the Easter kiss and doubleshuffles off comically, swaying his +hat from side to side, shrinking quickly to the size of his +trainbearers. The dwarf acolytes, giggling, peeping, nudging, ogling, +Easterkissing, zigzag behind him. His voice is heard mellow from afar, +merciful male, melodious:)_ + + Shall carry my heart to thee, + Shall carry my heart to thee, + And the breath of the balmy night + Shall carry my heart to thee! + + _(The trick doorhandle turns.)_ + +THE DOORHANDLE: Theeee! + +ZOE: The devil is in that door. + +_(A male form passes down the creaking staircase and is heard taking +the waterproof and hat from the rack. Bloom starts forward +involuntarily and, half closing the door as he passes, takes the +chocolate from his pocket and offers it nervously to Zoe.)_ + +ZOE: _(Sniffs his hair briskly.)_ Hmmm! Thank your mother for the +rabbits. I’m very fond of what I like. + +BLOOM: _(Hearing a male voice in talk with the whores on the doorstep, +pricks his ears.)_ If it were he? After? Or because not? Or the double +event? + +ZOE: _(Tears open the silverfoil.)_ Fingers was made before forks. +_(She breaks off and nibbles a piece, gives a piece to Kitty Ricketts +and then turns kittenishly to Lynch.)_ No objection to French lozenges? +_(He nods. She taunts him.)_ Have it now or wait till you get it? _(He +opens his mouth, his head cocked. She whirls the prize in left circle. +His head follows. She whirls it back in right circle. He eyes her.)_ +Catch! + +_(She tosses a piece. With an adroit snap he catches it and bites it +through with a crack.)_ + +KITTY: _(Chewing.)_ The engineer I was with at the bazaar does have +lovely ones. Full of the best liqueurs. And the viceroy was there with +his lady. The gas we had on the Toft’s hobbyhorses. I’m giddy still. + +BLOOM: _(In Svengali’s fur overcoat, with folded arms and Napoleonic +forelock, frowns in ventriloquial exorcism with piercing eagle glance +towards the door. Then rigid with left foot advanced he makes a swift +pass with impelling fingers and gives the sign of past master, drawing +his right arm downwards from his left shoulder.)_ Go, go, go, I conjure +you, whoever you are! + +_(A male cough and tread are heard passing through the mist outside. +Bloom’s features relax. He places a hand in his waistcoat, posing +calmly. Zoe offers him chocolate.)_ + +BLOOM: _(Solemnly.)_ Thanks. + +ZOE: Do as you’re bid. Here! + +_(A firm heelclacking tread is heard on the stairs.)_ + +BLOOM: _(Takes the chocolate.)_ Aphrodisiac? Tansy and pennyroyal. But +I bought it. Vanilla calms or? Mnemo. Confused light confuses memory. +Red influences lupus. Colours affect women’s characters, any they have. +This black makes me sad. Eat and be merry for tomorrow. _(He eats.)_ +Influence taste too, mauve. But it is so long since I. Seems new. +Aphro. That priest. Must come. Better late than never. Try truffles at +Andrews. + +_(The door opens. Bella Cohen, a massive whoremistress, enters. She is +dressed in a threequarter ivory gown, fringed round the hem with +tasselled selvedge, and cools herself flirting a black horn fan like +Minnie Hauck in_ Carmen. _On her left hand are wedding and keeper +rings. Her eyes are deeply carboned. She has a sprouting moustache. Her +olive face is heavy, slightly sweated and fullnosed with orangetainted +nostrils. She has large pendant beryl eardrops.)_ + +BELLA: My word! I’m all of a mucksweat. + +_(She glances round her at the couples. Then her eyes rest on Bloom +with hard insistence. Her large fan winnows wind towards her heated +faceneck and embonpoint. Her falcon eyes glitter.)_ + +THE FAN: _(Flirting quickly, then slowly.)_ Married, I see. + +BLOOM: Yes. Partly, I have mislaid... + +THE FAN: _(Half opening, then closing.)_ And the missus is master. +Petticoat government. + +BLOOM: _(Looks down with a sheepish grin.)_ That is so. + +THE FAN: _(Folding together, rests against her left eardrop.)_ Have you +forgotten me? + +BLOOM: Nes. Yo. + +THE FAN: _(Folded akimbo against her waist.)_ Is me her was you dreamed +before? Was then she him you us since knew? Am all them and the same +now we? + +_(Bella approaches, gently tapping with the fan.)_ + +BLOOM: _(Wincing.)_ Powerful being. In my eyes read that slumber which +women love. + +THE FAN: _(Tapping.)_ We have met. You are mine. It is fate. + +BLOOM: _(Cowed.)_ Exuberant female. Enormously I desiderate your +domination. I am exhausted, abandoned, no more young. I stand, so to +speak, with an unposted letter bearing the extra regulation fee before +the too late box of the general postoffice of human life. The door and +window open at a right angle cause a draught of thirtytwo feet per +second according to the law of falling bodies. I have felt this instant +a twinge of sciatica in my left glutear muscle. It runs in our family. +Poor dear papa, a widower, was a regular barometer from it. He believed +in animal heat. A skin of tabby lined his winter waistcoat. Near the +end, remembering king David and the Sunamite, he shared his bed with +Athos, faithful after death. A dog’s spittle as you probably... _(He +winces.)_ Ah! + +RICHIE GOULDING: _(Bagweighted, passes the door.)_ Mocking is catch. +Best value in Dub. Fit for a prince’s. Liver and kidney. + +THE FAN: _(Tapping.)_ All things end. Be mine. Now. + +BLOOM: _(Undecided.)_ All now? I should not have parted with my +talisman. Rain, exposure at dewfall on the searocks, a peccadillo at my +time of life. Every phenomenon has a natural cause. + +THE FAN: _(Points downwards slowly.)_ You may. + +BLOOM: _(Looks downwards and perceives her unfastened bootlace.)_ We +are observed. + +THE FAN: _(Points downwards quickly.)_ You must. + +BLOOM: _(With desire, with reluctance.)_ I can make a true black knot. +Learned when I served my time and worked the mail order line for +Kellett’s. Experienced hand. Every knot says a lot. Let me. In +courtesy. I knelt once before today. Ah! + +_(Bella raises her gown slightly and, steadying her pose, lifts to the +edge of a chair a plump buskined hoof and a full pastern, silksocked. +Bloom, stifflegged, aging, bends over her hoof and with gentle fingers +draws out and in her laces.)_ + +BLOOM: _(Murmurs lovingly.)_ To be a shoefitter in Manfield’s was my +love’s young dream, the darling joys of sweet buttonhooking, to lace up +crisscrossed to kneelength the dressy kid footwear satinlined, so +incredibly impossibly small, of Clyde Road ladies. Even their wax model +Raymonde I visited daily to admire her cobweb hose and stick of rhubarb +toe, as worn in Paris. + +THE HOOF: Smell my hot goathide. Feel my royal weight. + +BLOOM: _(Crosslacing.)_ Too tight? + +THE HOOF: If you bungle, Handy Andy, I’ll kick your football for you. + +BLOOM: Not to lace the wrong eyelet as I did the night of the bazaar +dance. Bad luck. Hook in wrong tache of her... person you mentioned. +That night she met... Now! + +_(He knots the lace. Bella places her foot on the floor. Bloom raises +his head. Her heavy face, her eyes strike him in midbrow. His eyes grow +dull, darker and pouched, his nose thickens.)_ + +BLOOM: _(Mumbles.)_ Awaiting your further orders we remain, +gentlemen,... + +BELLO: _(With a hard basilisk stare, in a baritone voice.)_ Hound of +dishonour! + +BLOOM: _(Infatuated.)_ Empress! + +BELLO: _(His heavy cheekchops sagging.)_ Adorer of the adulterous rump! + +BLOOM: _(Plaintively.)_ Hugeness! + +BELLO: Dungdevourer! + +BLOOM: _(With sinews semiflexed.)_ Magmagnificence! + +BELLO: Down! _(He taps her on the shoulder with his fan.)_ Incline feet +forward! Slide left foot one pace back! You will fall. You are falling. +On the hands down! + +BLOOM: _(Her eyes upturned in the sign of admiration, closing, yaps.)_ +Truffles! + +_(With a piercing epileptic cry she sinks on all fours, grunting, +snuffling, rooting at his feet: then lies, shamming dead, with eyes +shut tight, trembling eyelids, bowed upon the ground in the attitude of +most excellent master.)_ + +BELLO: _(With bobbed hair, purple gills, fat moustache rings round his +shaven mouth, in mountaineer’s puttees, green silverbuttoned coat, +sport skirt and alpine hat with moorcock’s feather, his hands stuck +deep in his breeches pockets, places his heel on her neck and grinds it +in.)_ Footstool! Feel my entire weight. Bow, bondslave, before the +throne of your despot’s glorious heels so glistening in their proud +erectness. + +BLOOM: _(Enthralled, bleats.)_ I promise never to disobey. + +BELLO: _(Laughs loudly.)_ Holy smoke! You little know what’s in store +for you. I’m the Tartar to settle your little lot and break you in! +I’ll bet Kentucky cocktails all round I shame it out of you, old son. +Cheek me, I dare you. If you do tremble in anticipation of heel +discipline to be inflicted in gym costume. + +_(Bloom creeps under the sofa and peers out through the fringe.)_ + +ZOE: _(Widening her slip to screen her.)_ She’s not here. + +BLOOM: _(Closing her eyes.)_ She’s not here. + +FLORRY: _(Hiding her with her gown.)_ She didn’t mean it, Mr Bello. +She’ll be good, sir. + +KITTY: Don’t be too hard on her, Mr Bello. Sure you won’t, ma’amsir. + +BELLO: _(Coaxingly.)_ Come, ducky dear, I want a word with you, +darling, just to administer correction. Just a little heart to heart +talk, sweety. _(Bloom puts out her timid head.)_ There’s a good girly +now. _(Bello grabs her hair violently and drags her forward.)_ I only +want to correct you for your own good on a soft safe spot. How’s that +tender behind? O, ever so gently, pet. Begin to get ready. + +BLOOM: _(Fainting.)_ Don’t tear my... + +BELLO: _(Savagely.)_ The nosering, the pliers, the bastinado, the +hanging hook, the knout I’ll make you kiss while the flutes play like +the Nubian slave of old. You’re in for it this time! I’ll make you +remember me for the balance of your natural life. _(His forehead veins +swollen, his face congested.)_ I shall sit on your ottoman saddleback +every morning after my thumping good breakfast of Matterson’s fat +hamrashers and a bottle of Guinness’s porter. _(He belches.)_ And suck +my thumping good Stock Exchange cigar while I read the _Licensed +Victualler’s Gazette_. Very possibly I shall have you slaughtered and +skewered in my stables and enjoy a slice of you with crisp crackling +from the baking tin basted and baked like sucking pig with rice and +lemon or currant sauce. It will hurt you. _(He twists her arm. Bloom +squeals, turning turtle.)_ + +BLOOM: Don’t be cruel, nurse! Don’t! + +BELLO: _(Twisting.)_ Another! + +BLOOM: _(Screams.)_ O, it’s hell itself! Every nerve in my body aches +like mad! + +BELLO: _(Shouts.)_ Good, by the rumping jumping general! That’s the +best bit of news I heard these six weeks. Here, don’t keep me waiting, +damn you! _(He slaps her face.)_ + +BLOOM: _(Whimpers.)_ You’re after hitting me. I’ll tell... + +BELLO: Hold him down, girls, till I squat on him. + +ZOE: Yes. Walk on him! I will. + +FLORRY: I will. Don’t be greedy. + +KITTY: No, me. Lend him to me. + +_(The brothel cook, Mrs Keogh, wrinkled, greybearded, in a greasy bib, +men’s grey and green socks and brogues, floursmeared, a rollingpin +stuck with raw pastry in her bare red arm and hand, appears at the +door.)_ + +MRS KEOGH: _(Ferociously.)_ Can I help? _(They hold and pinion Bloom.)_ + +BELLO: _(Squats with a grunt on Bloom’s upturned face, puffing +cigarsmoke, nursing a fat leg.)_ I see Keating Clay is elected +vicechairman of the Richmond asylum and by the by Guinness’s preference +shares are at sixteen three quarters. Curse me for a fool that didn’t +buy that lot Craig and Gardner told me about. Just my infernal luck, +curse it. And that Goddamned outsider _Throwaway_ at twenty to one. +_(He quenches his cigar angrily on Bloom’s ear.)_ Where’s that +Goddamned cursed ashtray? + +BLOOM: _(Goaded, buttocksmothered.)_ O! O! Monsters! Cruel one! + +BELLO: Ask for that every ten minutes. Beg. Pray for it as you never +prayed before. _(He thrusts out a figged fist and foul cigar.)_ Here, +kiss that. Both. Kiss. _(He throws a leg astride and, pressing with +horseman’s knees, calls in a hard voice.)_ Gee up! A cockhorse to +Banbury cross. I’ll ride him for the Eclipse stakes. _(He bends +sideways and squeezes his mount’s testicles roughly, shouting.)_ Ho! +Off we pop! I’ll nurse you in proper fashion. _(He horserides +cockhorse, leaping in the, in the saddle.)_ The lady goes a pace a pace +and the coachman goes a trot a trot and the gentleman goes a gallop a +gallop a gallop a gallop. + +FLORRY: _(Pulls at Bello.)_ Let me on him now. You had enough. I asked +before you. + +ZOE: _(Pulling at Florry.)_ Me. Me. Are you not finished with him yet, +suckeress? + +BLOOM: _(Stifling.)_ Can’t. + +BELLO: Well, I’m not. Wait. _(He holds in his breath.)_ Curse it. Here. +This bung’s about burst. _(He uncorks himself behind: then, contorting +his features, farts loudly.)_ Take that! _(He recorks himself.)_ Yes, +by Jingo, sixteen three quarters. + +BLOOM: _(A sweat breaking out over him.)_ Not man. _(He sniffs.)_ +Woman. + +BELLO: _(Stands up.)_ No more blow hot and cold. What you longed for +has come to pass. Henceforth you are unmanned and mine in earnest, a +thing under the yoke. Now for your punishment frock. You will shed your +male garments, you understand, Ruby Cohen? and don the shot silk +luxuriously rustling over head and shoulders. And quickly too! + +BLOOM: _(Shrinks.)_ Silk, mistress said! O crinkly! scrapy! Must I +tiptouch it with my nails? + +BELLO: _(Points to his whores.)_ As they are now so will you be, +wigged, singed, perfumesprayed, ricepowdered, with smoothshaven +armpits. Tape measurements will be taken next your skin. You will be +laced with cruel force into vicelike corsets of soft dove coutille with +whalebone busk to the diamondtrimmed pelvis, the absolute outside edge, +while your figure, plumper than when at large, will be restrained in +nettight frocks, pretty two ounce petticoats and fringes and things +stamped, of course, with my houseflag, creations of lovely lingerie for +Alice and nice scent for Alice. Alice will feel the pullpull. Martha +and Mary will be a little chilly at first in such delicate thighcasing +but the frilly flimsiness of lace round your bare knees will remind +you... + +BLOOM: _(A charming soubrette with dauby cheeks, mustard hair and large +male hands and nose, leering mouth.)_ I tried her things on only twice, +a small prank, in Holles street. When we were hard up I washed them to +save the laundry bill. My own shirts I turned. It was the purest +thrift. + +BELLO: _(Jeers.)_ Little jobs that make mother pleased, eh? And showed +off coquettishly in your domino at the mirror behind closedrawn blinds +your unskirted thighs and hegoat’s udders in various poses of +surrender, eh? Ho! ho! I have to laugh! That secondhand black operatop +shift and short trunkleg naughties all split up the stitches at her +last rape that Mrs Miriam Dandrade sold you from the Shelbourne hotel, +eh? + +BLOOM: Miriam. Black. Demimondaine. + +BELLO: _(Guffaws.)_ Christ Almighty it’s too tickling, this! You were a +nicelooking Miriam when you clipped off your backgate hairs and lay +swooning in the thing across the bed as Mrs Dandrade about to be +violated by lieutenant Smythe-Smythe, Mr Philip Augustus Blockwell M. +P., signor Laci Daremo, the robust tenor, blueeyed Bert, the liftboy, +Henri Fleury of Gordon Bennett fame, Sheridan, the quadroon Croesus, +the varsity wetbob eight from old Trinity, Ponto, her splendid +Newfoundland and Bobs, dowager duchess of Manorhamilton. _(He guffaws +again.)_ Christ, wouldn’t it make a Siamese cat laugh? + +BLOOM: _(Her hands and features working.)_ It was Gerald converted me +to be a true corsetlover when I was female impersonator in the High +School play _Vice Versa_. It was dear Gerald. He got that kink, +fascinated by sister’s stays. Now dearest Gerald uses pinky greasepaint +and gilds his eyelids. Cult of the beautiful. + +BELLO: _(With wicked glee.)_ Beautiful! Give us a breather! When you +took your seat with womanish care, lifting your billowy flounces, on +the smoothworn throne. + +BLOOM: Science. To compare the various joys we each enjoy. +_(Earnestly.)_ And really it’s better the position... because often I +used to wet... + +BELLO: _(Sternly.)_ No insubordination! The sawdust is there in the +corner for you. I gave you strict instructions, didn’t I? Do it +standing, sir! I’ll teach you to behave like a jinkleman! If I catch a +trace on your swaddles. Aha! By the ass of the Dorans you’ll find I’m a +martinet. The sins of your past are rising against you. Many. Hundreds. + +THE SINS OF THE PAST: _(In a medley of voices.)_ He went through a form +of clandestine marriage with at least one woman in the shadow of the +Black church. Unspeakable messages he telephoned mentally to Miss Dunn +at an address in D’Olier street while he presented himself indecently +to the instrument in the callbox. By word and deed he frankly +encouraged a nocturnal strumpet to deposit fecal and other matter in an +unsanitary outhouse attached to empty premises. In five public +conveniences he wrote pencilled messages offering his nuptial partner +to all strongmembered males. And by the offensively smelling vitriol +works did he not pass night after night by loving courting couples to +see if and what and how much he could see? Did he not lie in bed, the +gross boar, gloating over a nauseous fragment of wellused toilet paper +presented to him by a nasty harlot, stimulated by gingerbread and a +postal order? + +BELLO: _(Whistles loudly.)_ Say! What was the most revolting piece of +obscenity in all your career of crime? Go the whole hog. Puke it out! +Be candid for once. + +_(Mute inhuman faces throng forward, leering, vanishing, gibbering, +Booloohoom. Poldy Kock, Bootlaces a penny, Cassidy’s hag, blind +stripling, Larry Rhinoceros, the girl, the woman, the whore, the other, +the...)_ + +BLOOM: Don’t ask me! Our mutual faith. Pleasants street. I only thought +the half of the... I swear on my sacred oath... + +BELLO: _(Peremptorily.)_ Answer. Repugnant wretch! I insist on knowing. +Tell me something to amuse me, smut or a bloody good ghoststory or a +line of poetry, quick, quick, quick! Where? How? What time? With how +many? I give you just three seconds. One! Two! Thr... + +BLOOM: _(Docile, gurgles.)_ I rererepugnosed in rerererepugnant... + +BELLO: _(Imperiously.)_ O, get out, you skunk! Hold your tongue! Speak +when you’re spoken to. + +BLOOM: _(Bows.)_ Master! Mistress! Mantamer! + +_(He lifts his arms. His bangle bracelets fall.)_ + +BELLO: _(Satirically.)_ By day you will souse and bat our smelling +underclothes also when we ladies are unwell, and swab out our latrines +with dress pinned up and a dishclout tied to your tail. Won’t that be +nice? _(He places a ruby ring on her finger.)_ And there now! With this +ring I thee own. Say, thank you, mistress. + +BLOOM: Thank you, mistress. + +BELLO: You will make the beds, get my tub ready, empty the pisspots in +the different rooms, including old Mrs Keogh’s the cook’s, a sandy one. +Ay, and rinse the seven of them well, mind, or lap it up like +champagne. Drink me piping hot. Hop! You will dance attendance or I’ll +lecture you on your misdeeds, Miss Ruby, and spank your bare bot right +well, miss, with the hairbrush. You’ll be taught the error of your +ways. At night your wellcreamed braceletted hands will wear +fortythreebutton gloves newpowdered with talc and having delicately +scented fingertips. For such favours knights of old laid down their +lives. _(He chuckles.)_ My boys will be no end charmed to see you so +ladylike, the colonel, above all, when they come here the night before +the wedding to fondle my new attraction in gilded heels. First I’ll +have a go at you myself. A man I know on the turf named Charles Alberta +Marsh (I was in bed with him just now and another gentleman out of the +Hanaper and Petty Bag office) is on the lookout for a maid of all work +at a short knock. Swell the bust. Smile. Droop shoulders. What offers? +_(He points.)_ For that lot. Trained by owner to fetch and carry, +basket in mouth. _(He bares his arm and plunges it elbowdeep in Bloom’s +vulva.)_ There’s fine depth for you! What, boys? That give you a +hardon? _(He shoves his arm in a bidder’s face.)_ Here wet the deck and +wipe it round! + +A BIDDER: A florin. + +_(Dillon’s lacquey rings his handbell.)_ + +THE LACQUEY: Barang! + +A VOICE: One and eightpence too much. + +CHARLES ALBERTA MARSH: Must be virgin. Good breath. Clean. + +BELLO: _(Gives a rap with his gavel.)_ Two bar. Rockbottom figure and +cheap at the price. Fourteen hands high. Touch and examine shis points. +Handle hrim. This downy skin, these soft muscles, this tender flesh. If +I had only my gold piercer here! And quite easy to milk. Three newlaid +gallons a day. A pure stockgetter, due to lay within the hour. His +sire’s milk record was a thousand gallons of whole milk in forty weeks. +Whoa, my jewel! Beg up! Whoa! _(He brands his initial C on Bloom’s +croup.)_ So! Warranted Cohen! What advance on two bob, gentlemen? + +A DARKVISAGED MAN: _(In disguised accent.)_ Hoondert punt sterlink. + +VOICES: _(Subdued.)_ For the Caliph. Haroun Al Raschid. + +BELLO: _(Gaily.)_ Right. Let them all come. The scanty, daringly short +skirt, riding up at the knee to show a peep of white pantalette, is a +potent weapon and transparent stockings, emeraldgartered, with the long +straight seam trailing up beyond the knee, appeal to the better +instincts of the _blasé_ man about town. Learn the smooth mincing walk +on four inch Louis Quinze heels, the Grecian bend with provoking croup, +the thighs fluescent, knees modestly kissing. Bring all your powers of +fascination to bear on them. Pander to their Gomorrahan vices. + +BLOOM: _(Bends his blushing face into his armpit and simpers with +forefinger in mouth.)_ O, I know what you’re hinting at now! + +BELLO: What else are you good for, an impotent thing like you? _(He +stoops and, peering, pokes with his fan rudely under the fat suet folds +of Bloom’s haunches.)_ Up! Up! Manx cat! What have we here? Where’s +your curly teapot gone to or who docked it on you, cockyolly? Sing, +birdy, sing. It’s as limp as a boy of six’s doing his pooly behind a +cart. Buy a bucket or sell your pump. _(Loudly.)_ Can you do a man’s +job? + +BLOOM: Eccles street... + +BELLO: _(Sarcastically.)_ I wouldn’t hurt your feelings for the world +but there’s a man of brawn in possession there. The tables are turned, +my gay young fellow! He is something like a fullgrown outdoor man. Well +for you, you muff, if you had that weapon with knobs and lumps and +warts all over it. He shot his bolt, I can tell you! Foot to foot, knee +to knee, belly to belly, bubs to breast! He’s no eunuch. A shock of red +hair he has sticking out of him behind like a furzebush! Wait for nine +months, my lad! Holy ginger, it’s kicking and coughing up and down in +her guts already! That makes you wild, don’t it? Touches the spot? _(He +spits in contempt.)_ Spittoon! + +BLOOM: I was indecently treated, I... Inform the police. Hundred +pounds. Unmentionable. I... + +BELLO: Would if you could, lame duck. A downpour we want not your +drizzle. + +BLOOM: To drive me mad! Moll! I forgot! Forgive! Moll... We... Still... + +BELLO: _(Ruthlessly.)_ No, Leopold Bloom, all is changed by woman’s +will since you slept horizontal in Sleepy Hollow your night of twenty +years. Return and see. + +_(Old Sleepy Hollow calls over the wold.)_ + +SLEEPY HOLLOW: Rip van Wink! Rip van Winkle! + +BLOOM: _(In tattered mocassins with a rusty fowlingpiece, tiptoeing, +fingertipping, his haggard bony bearded face peering through the +diamond panes, cries out.)_ I see her! It’s she! The first night at Mat +Dillon’s! But that dress, the green! And her hair is dyed gold and +he... + +BELLO: _(Laughs mockingly.)_ That’s your daughter, you owl, with a +Mullingar student. + +_(Milly Bloom, fairhaired, greenvested, slimsandalled, her blue scarf +in the seawind simply swirling, breaks from the arms of her lover and +calls, her young eyes wonderwide.)_ + +MILLY: My! It’s Papli! But, O Papli, how old you’ve grown! + +BELLO: Changed, eh? Our whatnot, our writingtable where we never wrote, +aunt Hegarty’s armchair, our classic reprints of old masters. A man and +his menfriends are living there in clover. The _Cuckoos’ Rest!_ Why +not? How many women had you, eh, following them up dark streets, +flatfoot, exciting them by your smothered grunts, what, you male +prostitute? Blameless dames with parcels of groceries. Turn about. +Sauce for the goose, my gander O. + +BLOOM: They... I... + +BELLO: _(Cuttingly.)_ Their heelmarks will stamp the Brusselette carpet +you bought at Wren’s auction. In their horseplay with Moll the romp to +find the buck flea in her breeches they will deface the little statue +you carried home in the rain for art for art’s sake. They will violate +the secrets of your bottom drawer. Pages will be torn from your +handbook of astronomy to make them pipespills. And they will spit in +your ten shilling brass fender from Hampton Leedom’s. + +BLOOM: Ten and six. The act of low scoundrels. Let me go. I will +return. I will prove... + +A VOICE: Swear! + +_(Bloom clenches his fists and crawls forward, a bowieknife between his +teeth.)_ + +BELLO: As a paying guest or a kept man? Too late. You have made your +secondbest bed and others must lie in it. Your epitaph is written. You +are down and out and don’t you forget it, old bean. + +BLOOM: Justice! All Ireland versus one! Has nobody...? _(He bites his +thumb.)_ + +BELLO: Die and be damned to you if you have any sense of decency or +grace about you. I can give you a rare old wine that’ll send you +skipping to hell and back. Sign a will and leave us any coin you have! +If you have none see you damn well get it, steal it, rob it! We’ll bury +you in our shrubbery jakes where you’ll be dead and dirty with old Cuck +Cohen, my stepnephew I married, the bloody old gouty procurator and +sodomite with a crick in his neck, and my other ten or eleven husbands, +whatever the buggers’ names were, suffocated in the one cesspool. _(He +explodes in a loud phlegmy laugh.)_ We’ll manure you, Mr Flower! _(He +pipes scoffingly.)_ Byby, Poldy! Byby, Papli! + +BLOOM: _(Clasps his head.)_ My willpower! Memory! I have sinned! I have +suff... + +_(He weeps tearlessly.)_ + +BELLO: _(Sneers.)_ Crybabby! Crocodile tears! + +_(Bloom, broken, closely veiled for the sacrifice, sobs, his face to +the earth. The passing bell is heard. Darkshawled figures of the +circumcised, in sackcloth and ashes, stand by the wailing wall. M. +Shulomowitz, Joseph Goldwater, Moses Herzog, Harris Rosenberg, M. +Moisel, J. Citron, Minnie Watchman, P. Mastiansky, The Reverend Leopold +Abramovitz, Chazen. With swaying arms they wail in pneuma over the +recreant Bloom.)_ + +THE CIRCUMCISED: _(In dark guttural chant as they cast dead sea fruit +upon him, no flowers.) Shema Israel Adonai Elohenu Adonai Echad._ + +VOICES: _(Sighing.)_ So he’s gone. Ah yes. Yes, indeed. Bloom? Never +heard of him. No? Queer kind of chap. There’s the widow. That so? Ah, +yes. + +_(From the suttee pyre the flame of gum camphire ascends. The pall of +incense smoke screens and disperses. Out of her oakframe a nymph with +hair unbound, lightly clad in teabrown artcolours, descends from her +grotto and passing under interlacing yews stands over Bloom.)_ + +THE YEWS: _(Their leaves whispering.)_ Sister. Our sister. Ssh! + +THE NYMPH: _(Softly.)_ Mortal! _(Kindly.)_ Nay, dost not weepest! + +BLOOM: _(Crawls jellily forward under the boughs, streaked by sunlight, +with dignity.)_ This position. I felt it was expected of me. Force of +habit. + +THE NYMPH: Mortal! You found me in evil company, highkickers, coster +picnicmakers, pugilists, popular generals, immoral panto boys in +fleshtights and the nifty shimmy dancers, La Aurora and Karini, musical +act, the hit of the century. I was hidden in cheap pink paper that +smelt of rock oil. I was surrounded by the stale smut of clubmen, +stories to disturb callow youth, ads for transparencies, truedup dice +and bustpads, proprietary articles and why wear a truss with +testimonial from ruptured gentleman. Useful hints to the married. + +BLOOM: _(Lifts a turtle head towards her lap.)_ We have met before. On +another star. + +THE NYMPH: _(Sadly.)_ Rubber goods. Neverrip brand as supplied to the +aristocracy. Corsets for men. I cure fits or money refunded. +Unsolicited testimonials for Professor Waldmann’s wonderful chest +exuber. My bust developed four inches in three weeks, reports Mrs Gus +Rublin with photo. + +BLOOM: You mean _Photo Bits?_ + +THE NYMPH: I do. You bore me away, framed me in oak and tinsel, set me +above your marriage couch. Unseen, one summer eve, you kissed me in +four places. And with loving pencil you shaded my eyes, my bosom and my +shame. + +BLOOM: _(Humbly kisses her long hair.)_ Your classic curves, beautiful +immortal, I was glad to look on you, to praise you, a thing of beauty, +almost to pray. + +THE NYMPH: During dark nights I heard your praise. + +BLOOM: _(Quickly.)_ Yes, yes. You mean that I... Sleep reveals the +worst side of everyone, children perhaps excepted. I know I fell out of +bed or rather was pushed. Steel wine is said to cure snoring. For the +rest there is that English invention, pamphlet of which I received some +days ago, incorrectly addressed. It claims to afford a noiseless, +inoffensive vent. _(He sighs.)_ ’Twas ever thus. Frailty, thy name is +marriage. + +THE NYMPH: _(Her fingers in her ears.)_ And words. They are not in my +dictionary. + +BLOOM: You understood them? + +THE YEWS: Ssh! + +THE NYMPH: _(Covers her face with her hands.)_ What have I not seen in +that chamber? What must my eyes look down on? + +BLOOM: _(Apologetically.)_ I know. Soiled personal linen, wrong side up +with care. The quoits are loose. From Gibraltar by long sea long ago. + +THE NYMPH: _(Bends her head.)_ Worse, worse! + +BLOOM: _(Reflects precautiously.)_ That antiquated commode. It wasn’t +her weight. She scaled just eleven stone nine. She put on nine pounds +after weaning. It was a crack and want of glue. Eh? And that absurd +orangekeyed utensil which has only one handle. + +_(The sound of a waterfall is heard in bright cascade.)_ + +THE WATERFALL: + + Poulaphouca Poulaphouca + Poulaphouca Poulaphouca. + +THE YEWS: _(Mingling their boughs.)_ Listen. Whisper. She is right, our +sister. We grew by Poulaphouca waterfall. We gave shade on languorous +summer days. + +JOHN WYSE NOLAN: _(In the background, in Irish National Forester’s +uniform, doffs his plumed hat.)_ Prosper! Give shade on languorous +days, trees of Ireland! + +THE YEWS: _(Murmuring.)_ Who came to Poulaphouca with the High School +excursion? Who left his nutquesting classmates to seek our shade? + +BLOOM: _(Scared.)_ High School of Poula? Mnemo? Not in full possession +of faculties. Concussion. Run over by tram. + +THE ECHO: Sham! + +BLOOM: _(Pigeonbreasted, bottleshouldered, padded, in nondescript +juvenile grey and black striped suit, too small for him, white tennis +shoes, bordered stockings with turnover tops and a red schoolcap with +badge.)_ I was in my teens, a growing boy. A little then sufficed, a +jolting car, the mingling odours of the ladies’ cloakroom and lavatory, +the throng penned tight on the old Royal stairs (for they love crushes, +instinct of the herd, and the dark sexsmelling theatre unbridles vice), +even a pricelist of their hosiery. And then the heat. There were +sunspots that summer. End of school. And tipsycake. Halcyon days. + +_(Halcyon days, high school boys in blue and white football jerseys and +shorts, Master Donald Turnbull, Master Abraham Chatterton, Master Owen +Goldberg, Master Jack Meredith, Master Percy Apjohn, stand in a +clearing of the trees and shout to Master Leopold Bloom.)_ + +THE HALCYON DAYS: Mackerel! Live us again. Hurray! _(They cheer.)_ + +BLOOM: _(Hobbledehoy, warmgloved, mammamufflered, starred with spent +snowballs, struggles to rise.)_ Again! I feel sixteen! What a lark! +Let’s ring all the bells in Montague street. _(He cheers feebly.)_ +Hurray for the High School! + +THE ECHO: Fool! + +THE YEWS: _(Rustling.)_ She is right, our sister. Whisper. _(Whispered +kisses are heard in all the wood. Faces of hamadryads peep out from the +boles and among the leaves and break, blossoming into bloom.)_ Who +profaned our silent shade? + +THE NYMPH: _(Coyly, through parting fingers.)_ There? In the open air? + +THE YEWS: _(Sweeping downward.)_ Sister, yes. And on our virgin sward. + +THE WATERFALL: + + Poulaphouca Poulaphouca + Phoucaphouca Phoucaphouca. + +THE NYMPH: _(With wide fingers.)_ O, infamy! + +BLOOM: I was precocious. Youth. The fauna. I sacrificed to the god of +the forest. The flowers that bloom in the spring. It was pairing time. +Capillary attraction is a natural phenomenon. Lotty Clarke, +flaxenhaired, I saw at her night toilette through illclosed curtains +with poor papa’s operaglasses: The wanton ate grass wildly. She rolled +downhill at Rialto bridge to tempt me with her flow of animal spirits. +She climbed their crooked tree and I... A saint couldn’t resist it. The +demon possessed me. Besides, who saw? + +_(Staggering Bob, a whitepolled calf, thrusts a ruminating head with +humid nostrils through the foliage.)_ + +STAGGERING BOB: (_Large teardrops rolling from his prominent eyes, +snivels._) Me. Me see. + +BLOOM: Simply satisfying a need I... _(With pathos.)_ No girl would +when I went girling. Too ugly. They wouldn’t play... + +_(High on Ben Howth through rhododendrons a nannygoat passes, +plumpuddered, buttytailed, dropping currants.)_ + +THE NANNYGOAT: _(Bleats.)_ Megeggaggegg! Nannannanny! + +BLOOM: _(Hatless, flushed, covered with burrs of thistledown and +gorsespine.)_ Regularly engaged. Circumstances alter cases. _(He gazes +intently downwards on the water.)_ Thirtytwo head over heels per +second. Press nightmare. Giddy Elijah. Fall from cliff. Sad end of +government printer’s clerk. _(Through silversilent summer air the dummy +of Bloom, rolled in a mummy, rolls roteatingly from the Lion’s Head +cliff into the purple waiting waters.)_ + +THE DUMMYMUMMY: Bbbbblllllblblblblobschbg! + +_(Far out in the bay between Bailey and Kish lights the_ Erin’s King +_sails, sending a broadening plume of coalsmoke from her funnel towards +the land.)_ + +COUNCILLOR NANNETTI: _(Alone on deck, in dark alpaca, yellowkitefaced, +his hand in his waistcoat opening, declaims.)_ When my country takes +her place among the nations of the earth, then, and not till then, let +my epitaph be written. I have... + +BLOOM: Done. Prff! + +THE NYMPH: _(Loftily.)_ We immortals, as you saw today, have not such a +place and no hair there either. We are stonecold and pure. We eat +electric light. _(She arches her body in lascivious crispation, placing +her forefinger in her mouth.)_ Spoke to me. Heard from behind. How then +could you...? + +BLOOM: _(Pawing the heather abjectly.)_ O, I have been a perfect pig. +Enemas too I have administered. One third of a pint of quassia to which +add a tablespoonful of rocksalt. Up the fundament. With Hamilton Long’s +syringe, the ladies’ friend. + +THE NYMPH: In my presence. The powderpuff. _(She blushes and makes a +knee.)_ And the rest! + +BLOOM: _(Dejected.)_ Yes. _Peccavi!_ I have paid homage on that living +altar where the back changes name. _(With sudden fervour.)_ For why +should the dainty scented jewelled hand, the hand that rules...? + +_(Figures wind serpenting in slow woodland pattern around the +treestems, cooeeing.)_ + +THE VOICE OF KITTY: _(In the thicket.)_ Show us one of them cushions. + +THE VOICE OF FLORRY: Here. + +_(A grouse wings clumsily through the underwood.)_ + +THE VOICE OF LYNCH: _(In the thicket.)_ Whew! Piping hot! + +THE VOICE OF ZOE: _(From the thicket.)_ Came from a hot place. + +THE VOICE OF VIRAG: _(A birdchief, bluestreaked and feathered in war +panoply with his assegai, striding through a crackling canebrake over +beechmast and acorns.)_ Hot! Hot! Ware Sitting Bull! + +BLOOM: It overpowers me. The warm impress of her warm form. Even to sit +where a woman has sat, especially with divaricated thighs, as though to +grant the last favours, most especially with previously well uplifted +white sateen coatpans. So womanly, full. It fills me full. + +THE WATERFALL: + + Phillaphulla Poulaphouca + Poulaphouca Poulaphouca. + +THE YEWS: Ssh! Sister, speak! + +THE NYMPH: _(Eyeless, in nun’s white habit, coif and hugewinged wimple, +softly, with remote eyes.)_ Tranquilla convent. Sister Agatha. Mount +Carmel. The apparitions of Knock and Lourdes. No more desire. _(She +reclines her head, sighing.)_ Only the ethereal. Where dreamy creamy +gull waves o’er the waters dull. + +_(Bloom half rises. His back trouserbutton snaps.)_ + +THE BUTTON: Bip! + +_(Two sluts of the Coombe dance rainily by, shawled, yelling flatly.)_ + +THE SLUTS: + + O, Leopold lost the pin of his drawers + He didn’t know what to do, + To keep it up, + To keep it up. + +BLOOM: _(Coldly.)_ You have broken the spell. The last straw. If there +were only ethereal where would you all be, postulants and novices? Shy +but willing like an ass pissing. + +THE YEWS: _(Their silverfoil of leaves precipitating, their skinny arms +aging and swaying.)_ Deciduously! + +THE NYMPH: _(Her features hardening, gropes in the folds of her +habit.)_ Sacrilege! To attempt my virtue! _(A large moist stain appears +on her robe.)_ Sully my innocence! You are not fit to touch the garment +of a pure woman. _(She clutches again in her robe.)_ Wait. Satan, +you’ll sing no more lovesongs. Amen. Amen. Amen. Amen. _(She draws a +poniard and, clad in the sheathmail of an elected knight of nine, +strikes at his loins.)_ Nekum! + +BLOOM: _(Starts up, seizes her hand.)_ Hoy! Nebrakada! Cat o’ nine +lives! Fair play, madam. No pruningknife. The fox and the grapes, is +it? What do you lack with your barbed wire? Crucifix not thick enough? +_(He clutches her veil.)_ A holy abbot you want or Brophy, the lame +gardener, or the spoutless statue of the watercarrier, or good mother +Alphonsus, eh Reynard? + +THE NYMPH: _(With a cry flees from him unveiled, her plaster cast +cracking, a cloud of stench escaping from the cracks.)_ Poli...! + +BLOOM: _(Calls after her.)_ As if you didn’t get it on the double +yourselves. No jerks and multiple mucosities all over you. I tried it. +Your strength our weakness. What’s our studfee? What will you pay on +the nail? You fee mendancers on the Riviera, I read. _(The fleeing +nymph raises a keen.)_ Eh? I have sixteen years of black slave labour +behind me. And would a jury give me five shillings alimony tomorrow, +eh? Fool someone else, not me. _(He sniffs.)_ Rut. Onions. Stale. +Sulphur. Grease. + +_(The figure of Bella Cohen stands before him.)_ + +BELLA: You’ll know me the next time. + +BLOOM: _(Composed, regards her.) Passée._ Mutton dressed as lamb. Long +in the tooth and superfluous hair. A raw onion the last thing at night +would benefit your complexion. And take some double chin drill. Your +eyes are as vapid as the glasseyes of your stuffed fox. They have the +dimensions of your other features, that’s all. I’m not a triple screw +propeller. + +BELLA: _(Contemptuously.)_ You’re not game, in fact. _(Her sowcunt +barks.)_ Fbhracht! + +BLOOM: _(Contemptuously.)_ Clean your nailless middle finger first, +your bully’s cold spunk is dripping from your cockscomb. Take a handful +of hay and wipe yourself. + +BELLA: I know you, canvasser! Dead cod! + +BLOOM: I saw him, kipkeeper! Pox and gleet vendor! + +BELLA: _(Turns to the piano.)_ Which of you was playing the dead march +from _Saul?_ + +ZOE: Me. Mind your cornflowers. _(She darts to the piano and bangs +chords on it with crossed arms.)_ The cat’s ramble through the slag. +_(She glances back.)_ Eh? Who’s making love to my sweeties? _(She darts +back to the table.)_ What’s yours is mine and what’s mine is my own. + +_(Kitty, disconcerted, coats her teeth with the silver paper. Bloom +approaches Zoe.)_ + +BLOOM: _(Gently.)_ Give me back that potato, will you? + +ZOE: Forfeits, a fine thing and a superfine thing. + +BLOOM: _(With feeling.)_ It is nothing, but still, a relic of poor +mamma. + +ZOE: + + Give a thing and take it back + God’ll ask you where is that + You’ll say you don’t know + God’ll send you down below. + +BLOOM: There is a memory attached to it. I should like to have it. + +STEPHEN: To have or not to have that is the question. + +ZOE: Here. _(She hauls up a reef of her slip, revealing her bare thigh, +and unrolls the potato from the top of her stocking.)_ Those that hides +knows where to find. + +BELLA: _(Frowns.)_ Here. This isn’t a musical peepshow. And don’t you +smash that piano. Who’s paying here? + +_(She goes to the pianola. Stephen fumbles in his pocket and, taking +out a banknote by its corner, hands it to her.)_ + +STEPHEN: _(With exaggerated politeness.)_ This silken purse I made out +of the sow’s ear of the public. Madam, excuse me. If you allow me. _(He +indicates vaguely Lynch and Bloom.)_ We are all in the same sweepstake, +Kinch and Lynch. _Dans ce bordel où tenons nostre état_. + +LYNCH: _(Calls from the hearth.)_ Dedalus! Give her your blessing for +me. + +STEPHEN: _(Hands Bella a coin.)_ Gold. She has it. + +BELLA: _(Looks at the money, then at Stephen, then at Zoe, Florry and +Kitty.)_ Do you want three girls? It’s ten shillings here. + +STEPHEN: _(Delightedly.)_ A hundred thousand apologies. _(He fumbles +again and takes out and hands her two crowns.)_ Permit, _brevi manu_, +my sight is somewhat troubled. + +_(Bella goes to the table to count the money while Stephen talks to +himself in monosyllables. Zoe bends over the table. Kitty leans over +Zoe’s neck. Lynch gets up, rights his cap and, clasping Kitty’s waist, +adds his head to the group.)_ + +FLORRY: _(Strives heavily to rise.)_ Ow! My foot’s asleep. _(She limps +over to the table. Bloom approaches.)_ + +BELLA, ZOE, KITTY, LYNCH, BLOOM: _(Chattering and squabbling.)_ The +gentleman... ten shillings... paying for the three... allow me a +moment... this gentleman pays separate... who’s touching it?... ow! ... +mind who you’re pinching... are you staying the night or a short +time?... who did?... you’re a liar, excuse me... the gentleman paid +down like a gentleman... drink... it’s long after eleven. + +STEPHEN: _(At the pianola, making a gesture of abhorrence.)_ No +bottles! What, eleven? A riddle! + +ZOE: _(Lifting up her pettigown and folding a half sovereign into the +top of her stocking.)_ Hard earned on the flat of my back. + +LYNCH: _(Lifting Kitty from the table.)_ Come! + +KITTY: Wait. _(She clutches the two crowns.)_ + +FLORRY: And me? + +LYNCH: Hoopla! + +_(He lifts her, carries her and bumps her down on the sofa.)_ + +STEPHEN: + + The fox crew, the cocks flew, + The bells in heaven + Were striking eleven. + ’Tis time for her poor soul + To get out of heaven. + +BLOOM: _(Quietly lays a half sovereign on the table between Bella and +Florry.)_ So. Allow me. _(He takes up the poundnote.)_ Three times ten. +We’re square. + +BELLA: _(Admiringly.)_ You’re such a slyboots, old cocky. I could kiss +you. + +ZOE: _(Points.)_ Him? Deep as a drawwell. _(Lynch bends Kitty back over +the sofa and kisses her. Bloom goes with the poundnote to Stephen.)_ + +BLOOM: This is yours. + +STEPHEN: How is that? _Le distrait_ or absentminded beggar. _(He +fumbles again in his pocket and draws out a handful of coins. An object +falls.)_ That fell. + +BLOOM: _(Stooping, picks up and hands a box of matches.)_ This. + +STEPHEN: Lucifer. Thanks. + +BLOOM: _(Quietly.)_ You had better hand over that cash to me to take +care of. Why pay more? + +STEPHEN: _(Hands him all his coins.)_ Be just before you are generous. + +BLOOM: I will but is it wise? _(He counts.)_ One, seven, eleven, and +five. Six. Eleven. I don’t answer for what you may have lost. + +STEPHEN: Why striking eleven? Proparoxyton. Moment before the next +Lessing says. Thirsty fox. _(He laughs loudly.)_ Burying his +grandmother. Probably he killed her. + +BLOOM: That is one pound six and eleven. One pound seven, say. + +STEPHEN: Doesn’t matter a rambling damn. + +BLOOM: No, but... + +STEPHEN: _(Comes to the table.)_ Cigarette, please. _(Lynch tosses a +cigarette from the sofa to the table.)_ And so Georgina Johnson is dead +and married. _(A cigarette appears on the table. Stephen looks at it.)_ +Wonder. Parlour magic. Married. Hm. _(He strikes a match and proceeds +to light the cigarette with enigmatic melancholy.)_ + +LYNCH: _(Watching him.)_ You would have a better chance of lighting it +if you held the match nearer. + +STEPHEN: _(Brings the match near his eye.)_ Lynx eye. Must get glasses. +Broke them yesterday. Sixteen years ago. Distance. The eye sees all +flat. _(He draws the match away. It goes out.)_ Brain thinks. Near: +far. Ineluctable modality of the visible. _(He frowns mysteriously.)_ +Hm. Sphinx. The beast that has two backs at midnight. Married. + +ZOE: It was a commercial traveller married her and took her away with +him. + +FLORRY: _(Nods.)_ Mr Lambe from London. + +STEPHEN: Lamb of London, who takest away the sins of our world. + +LYNCH: _(Embracing Kitty on the sofa, chants deeply.) Dona nobis +pacem._ + +_(The cigarette slips from Stephen’s fingers. Bloom picks it up and +throws it in the grate.)_ + +BLOOM: Don’t smoke. You ought to eat. Cursed dog I met. _(To Zoe.)_ You +have nothing? + +ZOE: Is he hungry? + +STEPHEN: _(Extends his hand to her smiling and chants to the air of the +bloodoath in the_ Dusk of the Gods.) + + Hangende Hunger, + Fragende Frau, + Macht uns alle kaputt. + +ZOE: _(Tragically.)_ Hamlet, I am thy father’s gimlet! _(She takes his +hand.)_ Blue eyes beauty I’ll read your hand. _(She points to his +forehead.)_ No wit, no wrinkles. _(She counts.)_ Two, three, Mars, +that’s courage. _(Stephen shakes his head.)_ No kid. + +LYNCH: Sheet lightning courage. The youth who could not shiver and +shake. _(To Zoe.)_ Who taught you palmistry? + +ZOE: _(Turns.)_ Ask my ballocks that I haven’t got. _(To Stephen.)_ I +see it in your face. The eye, like that. _(She frowns with lowered +head.)_ + +LYNCH: _(Laughing, slaps Kitty behind twice.)_ Like that. Pandybat. + +_(Twice loudly a pandybat cracks, the coffin of the pianola flies open, +the bald little round jack-in-the-box head of Father Dolan springs +up.)_ + +FATHER DOLAN: Any boy want flogging? Broke his glasses? Lazy idle +little schemer. See it in your eye. + +_(Mild, benign, rectorial, reproving, the head of Don John Conmee rises +from the pianola coffin.)_ + +DON JOHN CONMEE: Now, Father Dolan! Now. I’m sure that Stephen is a +very good little boy! + +ZOE: _(Examining Stephen’s palm.)_ Woman’s hand. + +STEPHEN: _(Murmurs.)_ Continue. Lie. Hold me. Caress. I never could +read His handwriting except His criminal thumbprint on the haddock. + +ZOE: What day were you born? + +STEPHEN: Thursday. Today. + +ZOE: Thursday’s child has far to go. _(She traces lines on his hand.)_ +Line of fate. Influential friends. + +FLORRY: _(Pointing.)_ Imagination. + +ZOE: Mount of the moon. You’ll meet with a... _(She peers at his hands +abruptly.)_ I won’t tell you what’s not good for you. Or do you want to +know? + +BLOOM: _(Detaches her fingers and offers his palm.)_ More harm than +good. Here. Read mine. + +BELLA: Show. _(She turns up Bloom’s hand.)_ I thought so. Knobby +knuckles for the women. + +ZOE: _(Peering at Bloom’s palm.)_ Gridiron. Travels beyond the sea and +marry money. + +BLOOM: Wrong. + +ZOE: _(Quickly.)_ O, I see. Short little finger. Henpecked husband. +That wrong? + +_(Black Liz, a huge rooster hatching in a chalked circle, rises, +stretches her wings and clucks.)_ + +BLACK LIZ: Gara. Klook. Klook. Klook. + +_(She sidles from her newlaid egg and waddles off.)_ + +BLOOM: _(Points to his hand.)_ That weal there is an accident. Fell and +cut it twentytwo years ago. I was sixteen. + +ZOE: I see, says the blind man. Tell us news. + +STEPHEN: See? Moves to one great goal. I am twentytwo. Sixteen years +ago he was twentytwo too. Sixteen years ago I twentytwo tumbled. +Twentytwo years ago he sixteen fell off his hobbyhorse. _(He winces.)_ +Hurt my hand somewhere. Must see a dentist. Money? + +_(Zoe whispers to Florry. They giggle. Bloom releases his hand and +writes idly on the table in backhand, pencilling slow curves.)_ + +FLORRY: What? + +_(A hackneycar, number three hundred and twentyfour, with a +gallantbuttocked mare, driven by James Barton, Harmony Avenue, +Donnybrook, trots past. Blazes Boylan and Lenehan sprawl swaying on the +sideseats. The Ormond boots crouches behind on the axle. Sadly over the +crossblind Lydia Douce and Mina Kennedy gaze.)_ + +THE BOOTS: _(Jogging, mocks them with thumb and wriggling +wormfingers.)_ Haw haw have you the horn? + +_(Bronze by gold they whisper.)_ + +ZOE: _(To Florry.)_ Whisper. + +_(They whisper again.)_ + +_(Over the well of the car Blazes Boylan leans, his boater straw set +sideways, a red flower in his mouth. Lenehan in yachtsman’s cap and +white shoes officiously detaches a long hair from Blazes Boylan’s coat +shoulder.)_ + +LENEHAN: Ho! What do I here behold? Were you brushing the cobwebs off a +few quims? + +BOYLAN: _(Sated, smiles.)_ Plucking a turkey. + +LENEHAN: A good night’s work. + +BOYLAN: _(Holding up four thick bluntungulated fingers, winks.)_ Blazes +Kate! Up to sample or your money back. _(He holds out a forefinger.)_ +Smell that. + +LENEHAN: _(Smells gleefully.)_ Ah! Lobster and mayonnaise. Ah! + +ZOE AND FLORRY: _(Laugh together.)_ Ha ha ha ha. + +BOYLAN: _(Jumps surely from the car and calls loudly for all to hear.)_ +Hello, Bloom! Mrs Bloom dressed yet? + +BLOOM: _(In flunkey’s prune plush coat and kneebreeches, buff stockings +and powdered wig.)_ I’m afraid not, sir. The last articles... + +BOYLAN: _(Tosses him sixpence.)_ Here, to buy yourself a gin and +splash. _(He hangs his hat smartly on a peg of Bloom’s antlered head.)_ +Show me in. I have a little private business with your wife, you +understand? + +BLOOM: Thank you, sir. Yes, sir. Madam Tweedy is in her bath, sir. + +MARION: He ought to feel himself highly honoured. _(She plops splashing +out of the water.)_ Raoul darling, come and dry me. I’m in my pelt. +Only my new hat and a carriage sponge. + +BOYLAN: _(A merry twinkle in his eye.)_ Topping! + +BELLA: What? What is it? + +_(Zoe whispers to her.)_ + +MARION: Let him look, the pishogue! Pimp! And scourge himself! I’ll +write to a powerful prostitute or Bartholomona, the bearded woman, to +raise weals out on him an inch thick and make him bring me back a +signed and stamped receipt. + +BOYLAN: (Clasps himself.) Here, I can’t hold this little lot much +longer. (He strides off on stiff cavalry legs.) + +BELLA: _(Laughing.)_ Ho ho ho ho. + +BOYLAN: _(To Bloom, over his shoulder.)_ You can apply your eye to the +keyhole and play with yourself while I just go through her a few times. + +BLOOM: Thank you, sir. I will, sir. May I bring two men chums to +witness the deed and take a snapshot? _(He holds out an ointment jar.)_ +Vaseline, sir? Orangeflower...? Lukewarm water...? + +KITTY: _(From the sofa.)_ Tell us, Florry. Tell us. What... + +_(Florry whispers to her. Whispering lovewords murmur, liplapping +loudly, poppysmic plopslop.)_ + +MINA KENNEDY: _(Her eyes upturned.)_ O, it must be like the scent of +geraniums and lovely peaches! O, he simply idolises every bit of her! +Stuck together! Covered with kisses! + +LYDIA DOUCE: _(Her mouth opening.)_ Yumyum. O, he’s carrying her round +the room doing it! Ride a cockhorse. You could hear them in Paris and +New York. Like mouthfuls of strawberries and cream. + +KITTY: _(Laughing.)_ Hee hee hee. + +BOYLAN’S VOICE: _(Sweetly, hoarsely, in the pit of his stomach.)_ Ah! +Godblazeqrukbrukarchkrasht! + +MARION’S VOICE: _(Hoarsely, sweetly, rising to her throat.)_ O! +Weeshwashtkissinapooisthnapoohuck? + +BLOOM: _(His eyes wildly dilated, clasps himself.)_ Show! Hide! Show! +Plough her! More! Shoot! + +BELLA, ZOE, FLORRY, KITTY: Ho ho! Ha ha! Hee hee! + +LYNCH: _(Points.)_ The mirror up to nature. _(He laughs.)_ Hu hu hu hu +hu! + +_(Stephen and Bloom gaze in the mirror. The face of William +Shakespeare, beardless, appears there, rigid in facial paralysis, +crowned by the reflection of the reindeer antlered hatrack in the +hall.)_ + +SHAKESPEARE: _(In dignified ventriloquy.)_ ’Tis the loud laugh bespeaks +the vacant mind. _(To Bloom.)_ Thou thoughtest as how thou wastest +invisible. Gaze. _(He crows with a black capon’s laugh.)_ Iagogo! How +my Oldfellow chokit his Thursdaymornun. Iagogogo! + +BLOOM: _(Smiles yellowly at the three whores.)_ When will I hear the +joke? + +ZOE: Before you’re twice married and once a widower. + +BLOOM: Lapses are condoned. Even the great Napoleon when measurements +were taken next the skin after his death... + +_(Mrs Dignam, widow woman, her snubnose and cheeks flushed with +deathtalk, tears and Tunney’s tawny sherry, hurries by in her weeds, +her bonnet awry, rouging and powdering her cheeks, lips and nose, a pen +chivvying her brood of cygnets. Beneath her skirt appear her late +husband’s everyday trousers and turnedup boots, large eights. She holds +a Scottish widow’s insurance policy and a large marquee umbrella under +which her brood run with her, Patsy hopping on one shod foot, his +collar loose, a hank of porksteaks dangling, Freddy whimpering, Susy +with a crying cod’s mouth, Alice struggling with the baby. She cuffs +them on, her streamers flaunting aloft.)_ + +FREDDY: Ah, ma, you’re dragging me along! + +SUSY: Mamma, the beeftea is fizzing over! + +SHAKESPEARE: _(With paralytic rage.)_ Weda seca whokilla farst. + +_(The face of Martin Cunningham, bearded, refeatures Shakespeare’s +beardless face. The marquee umbrella sways drunkenly, the children run +aside. Under the umbrella appears Mrs Cunningham in Merry Widow hat and +kimono gown. She glides sidling and bowing, twirling japanesily.)_ + +MRS CUNNINGHAM: _(Sings.)_ + + And they call me the jewel of Asia! + + +MARTIN CUNNINGHAM: _(Gazes on her, impassive.)_ Immense! Most bloody +awful demirep! + +STEPHEN: _Et exaltabuntur cornua iusti._ Queens lay with prize bulls. +Remember Pasiphae for whose lust my grandoldgrossfather made the first +confessionbox. Forget not Madam Grissel Steevens nor the suine scions +of the house of Lambert. And Noah was drunk with wine. And his ark was +open. + +BELLA: None of that here. Come to the wrong shop. + +LYNCH: Let him alone. He’s back from Paris. + +ZOE: _(Runs to stephen and links him.)_ O go on! Give us some +parleyvoo. + +_(Stephen claps hat on head and leaps over to the fireplace where he +stands with shrugged shoulders, finny hands outspread, a painted smile +on his face.)_ + +LYNCH: _(Pommelling on the sofa.)_ Rmm Rmm Rmm Rrrrrrmmmmm. + +STEPHEN: _(Gabbles with marionette jerks.)_ Thousand places of +entertainment to expense your evenings with lovely ladies saling gloves +and other things perhaps hers heart beerchops perfect fashionable house +very eccentric where lots cocottes beautiful dressed much about +princesses like are dancing cancan and walking there parisian +clowneries extra foolish for bachelors foreigns the same if talking a +poor english how much smart they are on things love and sensations +voluptuous. Misters very selects for is pleasure must to visit heaven +and hell show with mortuary candles and they tears silver which occur +every night. Perfectly shocking terrific of religion’s things mockery +seen in universal world. All chic womans which arrive full of modesty +then disrobe and squeal loud to see vampire man debauch nun very fresh +young with _dessous troublants_. _(He clacks his tongue loudly.)_ _Ho, +là là! Ce pif qu’il a!_ + +LYNCH: _Vive le vampire!_ + +THE WHORES: Bravo! Parleyvoo! + +STEPHEN: _(Grimacing with head back, laughs loudly, clapping himself.)_ +Great success of laughing. Angels much prostitutes like and holy +apostles big damn ruffians. _Demimondaines_ nicely handsome sparkling +of diamonds very amiable costumed. Or do you are fond better what +belongs they moderns pleasure turpitude of old mans? _(He points about +him with grotesque gestures which Lynch and the whores reply to.)_ +Caoutchouc statue woman reversible or lifesize tompeeptom of virgins +nudities very lesbic the kiss five ten times. Enter, gentleman, to see +in mirror every positions trapezes all that machine there besides also +if desire act awfully bestial butcher’s boy pollutes in warm veal liver +or omlet on the belly _pièce de Shakespeare._ + +BELLA: _(Clapping her belly sinks back on the sofa, with a shout of +laughter.)_ An omelette on the... Ho! ho! ho! ho!... omelette on the... + +STEPHEN: _(Mincingly.)_ I love you, sir darling. Speak you englishman +tongue for _double entente cordiale._ O yes, _mon loup_. How much cost? +Waterloo. Watercloset. _(He ceases suddenly and holds up a +forefinger.)_ + +BELLA: _(Laughing.)_ Omelette... + +THE WHORES: _(Laughing.)_ Encore! Encore! + +STEPHEN: Mark me. I dreamt of a watermelon. + +ZOE: Go abroad and love a foreign lady. + +LYNCH: Across the world for a wife. + +FLORRY: Dreams goes by contraries. + +STEPHEN: _(Extends his arms.)_ It was here. Street of harlots. In +Serpentine avenue Beelzebub showed me her, a fubsy widow. Where’s the +red carpet spread? + +BLOOM: _(Approaching Stephen.)_ Look... + +STEPHEN: No, I flew. My foes beneath me. And ever shall be. World +without end. _(He cries.) Pater!_ Free! + +BLOOM: I say, look... + +STEPHEN: Break my spirit, will he? _O merde alors! (He cries, his +vulture talons sharpened.)_ Hola! Hillyho! + +_(Simon Dedalus’ voice hilloes in answer, somewhat sleepy but ready.)_ + +SIMON: That’s all right. _(He swoops uncertainly through the air, +wheeling, uttering cries of heartening, on strong ponderous buzzard +wings.)_ Ho, boy! Are you going to win? Hoop! Pschatt! Stable with +those halfcastes. Wouldn’t let them within the bawl of an ass. Head up! +Keep our flag flying! An eagle gules volant in a field argent +displayed. Ulster king at arms! Haihoop! _(He makes the beagle’s call, +giving tongue.)_ Bulbul! Burblblburblbl! Hai, boy! + +_(The fronds and spaces of the wallpaper file rapidly across country. A +stout fox, drawn from covert, brush pointed, having buried his +grandmother, runs swift for the open, brighteyed, seeking badger earth, +under the leaves. The pack of staghounds follows, nose to the ground, +sniffing their quarry, beaglebaying, burblbrbling to be blooded. Ward +Union huntsmen and huntswomen live with them, hot for a kill. From Six +Mile Point, Flathouse, Nine Mile Stone follow the footpeople with +knotty sticks, hayforks, salmongaffs, lassos, flockmasters with +stockwhips, bearbaiters with tomtoms, toreadors with bullswords, grey +negroes waving torches. The crowd bawls of dicers, crown and anchor +players, thimbleriggers, broadsmen. Crows and touts, hoarse bookies in +high wizard hats clamour deafeningly.)_ + +THE CROWD: + + Card of the races. Racing card! + Ten to one the field! + Tommy on the clay here! Tommy on the clay! + Ten to one bar one! Ten to one bar one! + Try your luck on Spinning Jenny! + Ten to one bar one! + Sell the monkey, boys! Sell the monkey! + I’ll give ten to one! + Ten to one bar one! + +_(A dark horse, riderless, bolts like a phantom past the winningpost, +his mane moonfoaming, his eyeballs stars. The field follows, a bunch of +bucking mounts. Skeleton horses, Sceptre, Maximum the Second, +Zinfandel, the Duke of Westminster’s Shotover, Repulse, the Duke of +Beaufort’s Ceylon, prix de Paris. Dwarfs ride them, rustyarmoured, +leaping, leaping in their, in their saddles. Last in a drizzle of rain +on a brokenwinded isabelle nag, Cock of the North, the favourite, honey +cap, green jacket, orange sleeves, Garrett Deasy up, gripping the +reins, a hockeystick at the ready. His nag on spavined whitegaitered +feet jogs along the rocky road.)_ + +THE ORANGE LODGES: _(Jeering.)_ Get down and push, mister. Last lap! +You’ll be home the night! + +GARRETT DEASY: _(Bolt upright, his nailscraped face plastered with +postagestamps, brandishes his hockeystick, his blue eyes flashing in +the prism of the chandelier as his mount lopes by at schooling +gallop.)_ + +_Per vias rectas!_ + +_(A yoke of buckets leopards all over him and his rearing nag a torrent +of mutton broth with dancing coins of carrots, barley, onions, turnips, +potatoes.)_ + +THE GREEN LODGES: Soft day, sir John! Soft day, your honour! + +_(Private Carr, Private Compton and Cissy Caffrey pass beneath the +windows, singing in discord.)_ + +STEPHEN: Hark! Our friend noise in the street. + +ZOE: _(Holds up her hand.)_ Stop! + +PRIVATE CARR, PRIVATE COMPTON AND CISSY CAFFREY: + + Yet I’ve a sort of a + Yorkshire relish for... + +ZOE: That’s me. _(She claps her hands.)_ Dance! Dance! _(She runs to +the pianola.)_ Who has twopence? + +BLOOM: Who’ll...? + +LYNCH: _(Handing her coins.)_ Here. + +STEPHEN: _(Cracking his fingers impatiently.)_ Quick! Quick! Where’s my +augur’s rod? _(He runs to the piano and takes his ashplant, beating his +foot in tripudium.)_ + +ZOE: _(Turns the drumhandle.)_ There. + +_(She drops two pennies in the slot. Gold, pink and violet lights start +forth. The drum turns purring in low hesitation waltz. Professor +Goodwin, in a bowknotted periwig, in court dress, wearing a stained +inverness cape, bent in two from incredible age, totters across the +room, his hands fluttering. He sits tinily on the pianostool and lifts +and beats handless sticks of arms on the keyboard, nodding with +damsel’s grace, his bowknot bobbing.)_ + +ZOE: _(Twirls round herself, heeltapping.)_ Dance. Anybody here for +there? Who’ll dance? Clear the table. + +_(The pianola with changing lights plays in waltz time the prelude of_ +My Girl’s a Yorkshire Girl. _Stephen throws his ashplant on the table +and seizes Zoe round the waist. Florry and Bella push the table towards +the fireplace. Stephen, arming Zoe with exaggerated grace, begins to +waltz her round the room. Bloom stands aside. Her sleeve falling from +gracing arms, reveals a white fleshflower of vaccination. Between the +curtains Professor Maginni inserts a leg on the toepoint of which spins +a silk hat. With a deft kick he sends it spinning to his crown and +jauntyhatted skates in. He wears a slate frockcoat with claret silk +lapels, a gorget of cream tulle, a green lowcut waistcoat, stock collar +with white kerchief, tight lavender trousers, patent pumps and canary +gloves. In his buttonhole is an immense dahlia. He twirls in reversed +directions a clouded cane, then wedges it tight in his oxter. He places +a hand lightly on his breastbone, bows, and fondles his flower and +buttons.)_ + +MAGINNI: The poetry of motion, art of calisthenics. No connection with +Madam Legget Byrne’s or Levenston’s. Fancy dress balls arranged. +Deportment. The Katty Lanner step. So. Watch me! My terpsichorean +abilities. _(He minuets forward three paces on tripping bee’s feet.) +Tout le monde en avant! Révérence! Tout le monde en place!_ + +_(The prelude ceases. Professor Goodwin, beating vague arms shrivels, +sinks, his live cape falling about the stool. The air in firmer waltz +time sounds. Stephen and Zoe circle freely. The lights change, glow, +fade gold rosy violet.)_ + +THE PIANOLA: + + Two young fellows were talking about their girls, girls, girls, + Sweethearts they’d left behind... + +_(From a corner the morning hours run out, goldhaired, slimsandalled, +in girlish blue, waspwaisted, with innocent hands. Nimbly they dance, +twirling their skipping ropes. The hours of noon follow in amber gold. +Laughing, linked, high haircombs flashing, they catch the sun in +mocking mirrors, lifting their arms.)_ + +MAGINNI: _(Clipclaps glovesilent hands.) Carré! Avant deux!_ Breathe +evenly! _Balance!_ + +_(The morning and noon hours waltz in their places, turning, advancing +to each other, shaping their curves, bowing visavis. Cavaliers behind +them arch and suspend their arms, with hands descending to, touching, +rising from their shoulders.)_ + +HOURS: You may touch my. + +CAVALIERS: May I touch your? + +HOURS: O, but lightly! + +CAVALIERS: O, so lightly! + +THE PIANOLA: + + My little shy little lass has a waist. + +_(Zoe and Stephen turn boldly with looser swing. The twilight hours +advance from long landshadows, dispersed, lagging, languideyed, their +cheeks delicate with cipria and false faint bloom. They are in grey +gauze with dark bat sleeves that flutter in the land breeze.)_ + +MAGINNI: _Avant huit! Traversé! Salut! Cours de mains! Croisé!_ + +_(The night hours, one by one, steal to the last place. Morning, noon +and twilight hours retreat before them. They are masked, with daggered +hair and bracelets of dull bells. Weary they curchycurchy under +veils.)_ + +THE BRACELETS: Heigho! Heigho! + +ZOE: _(Twirling, her hand to her brow.)_ O! + +MAGINNI: _Les tiroirs! Chaîne de dames! La corbeille! Dos à dos!_ + +_(Arabesquing wearily they weave a pattern on the floor, weaving, +unweaving, curtseying, twirling, simply swirling.)_ + +ZOE: I’m giddy! + +_(She frees herself, droops on a chair. Stephen seizes Florry and turns +with her.)_ + +MAGINNI: _Boulangère! Les ronds! Les ponts! Chevaux de bois! +Escargots!_ + +_(Twining, receding, with interchanging hands the night hours link each +each with arching arms in a mosaic of movements. Stephen and Florry +turn cumbrously.)_ + +MAGINNI: _Dansez avec vos dames! Changez de dames! Donnez le petit +bouquet à votre dame! Remerciez!_ + +THE PIANOLA: + + Best, best of all, + Baraabum! + +KITTY: _(Jumps up.)_ O, they played that on the hobbyhorses at the +_Mirus_ bazaar! + +_(She runs to Stephen. He leaves Florry brusquely and seizes Kitty. A +screaming bittern’s harsh high whistle shrieks. Groangrousegurgling +Toft’s cumbersome whirligig turns slowly the room right roundabout the +room.)_ + +THE PIANOLA: + + My girl’s a Yorkshire girl. + +ZOE: + +Yorkshire through and through. Come on all! + +_(She seizes Florry and waltzes her.)_ + +STEPHEN: _Pas seul!_ + +_(He wheels Kitty into Lynch’s arms, snatches up his ashplant from the +table and takes the floor. All wheel whirl waltz twirl. Bloombella +Kittylynch Florryzoe jujuby women. Stephen with hat ashplant frogsplits +in middle highkicks with skykicking mouth shut hand clasp part under +thigh. With clang tinkle boomhammer tallyho hornblower blue green +yellow flashes Toft’s cumbersome turns with hobbyhorse riders from +gilded snakes dangled, bowels fandango leaping spurn soil foot and fall +again.)_ + +THE PIANOLA: + + Though she’s a factory lass + And wears no fancy clothes. + +_(Closeclutched swift swifter with glareblareflare scudding they +scootlootshoot lumbering by. Baraabum!)_ + +TUTTI: Encore! Bis! Bravo! Encore! + +SIMON: Think of your mother’s people! + +STEPHEN: Dance of death. + +_(Bang fresh barang bang of lacquey’s bell, horse, nag, steer, +piglings, Conmee on Christass, lame crutch and leg sailor in cockboat +armfolded ropepulling hitching stamp hornpipe through and through. +Baraabum! On nags hogs bellhorses Gadarene swine Corny in coffin steel +shark stone onehandled Nelson two trickies Frauenzimmer plumstained +from pram falling bawling. Gum he’s a champion. Fuseblue peer from +barrel rev. evensong Love on hackney jaunt Blazes blind coddoubled +bicyclers Dilly with snowcake no fancy clothes. Then in last switchback +lumbering up and down bump mashtub sort of viceroy and reine relish for +tublumber bumpshire rose. Baraabum!)_ + +_(The couples fall aside. Stephen whirls giddily. Room whirls back. +Eyes closed he totters. Red rails fly spacewards. Stars all around suns +turn roundabout. Bright midges dance on walls. He stops dead.)_ + +STEPHEN: Ho! + +_(Stephen’s mother, emaciated, rises stark through the floor, in leper +grey with a wreath of faded orangeblossoms and a torn bridal veil, her +face worn and noseless, green with gravemould. Her hair is scant and +lank. She fixes her bluecircled hollow eyesockets on Stephen and opens +her toothless mouth uttering a silent word. A choir of virgins and +confessors sing voicelessly.)_ + +THE CHOIR: + + Liliata rutilantium te confessorum... + Iubilantium te virginum... + +_(From the top of a tower Buck Mulligan, in particoloured jester’s +dress of puce and yellow and clown’s cap with curling bell, stands +gaping at her, a smoking buttered split scone in his hand.)_ + +BUCK MULLIGAN: She’s beastly dead. The pity of it! Mulligan meets the +afflicted mother. _(He upturns his eyes.)_ Mercurial Malachi! + +THE MOTHER: _(With the subtle smile of death’s madness.)_ I was once +the beautiful May Goulding. I am dead. + +STEPHEN: _(Horrorstruck.)_ Lemur, who are you? No. What bogeyman’s +trick is this? + +BUCK MULLIGAN: _(Shakes his curling capbell.)_ The mockery of it! Kinch +dogsbody killed her bitchbody. She kicked the bucket. _(Tears of molten +butter fall from his eyes on to the scone.)_ Our great sweet mother! +_Epi oinopa ponton._ + +THE MOTHER: _(Comes nearer, breathing upon him softly her breath of +wetted ashes.)_ All must go through it, Stephen. More women than men in +the world. You too. Time will come. + +STEPHEN: _(Choking with fright, remorse and horror.)_ They say I killed +you, mother. He offended your memory. Cancer did it, not I. Destiny. + +THE MOTHER: _(A green rill of bile trickling from a side of her +mouth.)_ You sang that song to me. _Love’s bitter mystery._ + +STEPHEN: _(Eagerly.)_ Tell me the word, mother, if you know now. The +word known to all men. + +THE MOTHER: Who saved you the night you jumped into the train at Dalkey +with Paddy Lee? Who had pity for you when you were sad among the +strangers? Prayer is allpowerful. Prayer for the suffering souls in the +Ursuline manual and forty days’ indulgence. Repent, Stephen. + +STEPHEN: The ghoul! Hyena! + +THE MOTHER: I pray for you in my other world. Get Dilly to make you +that boiled rice every night after your brainwork. Years and years I +loved you, O, my son, my firstborn, when you lay in my womb. + +ZOE: _(Fanning herself with the grate fan.)_ I’m melting! + +FLORRY: _(Points to Stephen.)_ Look! He’s white. + +BLOOM: _(Goes to the window to open it more.)_ Giddy. + +THE MOTHER: _(With smouldering eyes.)_ Repent! O, the fire of hell! + +STEPHEN: _(Panting.)_ His noncorrosive sublimate! The corpsechewer! Raw +head and bloody bones. + +THE MOTHER: _(Her face drawing near and nearer, sending out an ashen +breath.)_ Beware! _(She raises her blackened withered right arm slowly +towards Stephen’s breast with outstretched finger.)_ Beware God’s hand! +_(A green crab with malignant red eyes sticks deep its grinning claws +in Stephen’s heart.)_ + +STEPHEN: _(Strangled with rage.)_ Shite! _(His features grow drawn and +grey and old.)_ + +BLOOM: _(At the window.)_ What? + +STEPHEN: _Ah non, par exemple!_ The intellectual imagination! With me +all or not at all. _Non serviam!_ + +FLORRY: Give him some cold water. Wait. _(She rushes out.)_ + +THE MOTHER: _(Wrings her hands slowly, moaning desperately.)_ O Sacred +Heart of Jesus, have mercy on him! Save him from hell, O Divine Sacred +Heart! + +STEPHEN: No! No! No! Break my spirit, all of you, if you can! I’ll +bring you all to heel! + +THE MOTHER: _(In the agony of her deathrattle.)_ Have mercy on Stephen, +Lord, for my sake! Inexpressible was my anguish when expiring with +love, grief and agony on Mount Calvary. + +STEPHEN: _Nothung!_ + +_(He lifts his ashplant high with both hands and smashes the +chandelier. Time’s livid final flame leaps and, in the following +darkness, ruin of all space, shattered glass and toppling masonry.)_ + +THE GASJET: Pwfungg! + +BLOOM: Stop! + +LYNCH: _(Rushes forward and seizes Stephen’s hand.)_ Here! Hold on! +Don’t run amok! + +BELLA: Police! + +_(Stephen, abandoning his ashplant, his head and arms thrown back +stark, beats the ground and flies from the room, past the whores at the +door.)_ + +BELLA: _(Screams.)_ After him! + +_(The two whores rush to the halldoor. Lynch and Kitty and Zoe stampede +from the room. They talk excitedly. Bloom follows, returns.)_ + +THE WHORES: _(Jammed in the doorway, pointing.)_ Down there. + +ZOE: _(Pointing.)_ There. There’s something up. + +BELLA: Who pays for the lamp? _(She seizes Bloom’s coattail.)_ Here, +you were with him. The lamp’s broken. + +BLOOM: _(Rushes to the hall, rushes back.)_ What lamp, woman? + +A WHORE: He tore his coat. + +BELLA: _(Her eyes hard with anger and cupidity, points.)_ Who’s to pay +for that? Ten shillings. You’re a witness. + +BLOOM: _(Snatches up Stephen’s ashplant.)_ Me? Ten shillings? Haven’t +you lifted enough off him? Didn’t he...? + +BELLA: _(Loudly.)_ Here, none of your tall talk. This isn’t a brothel. +A ten shilling house. + +BLOOM: _(His head under the lamp, pulls the chain. Pulling, the gasjet +lights up a crushed mauve purple shade. He raises the ashplant.)_ Only +the chimney’s broken. Here is all he... + +BELLA: _(Shrinks back and screams.)_ Jesus! Don’t! + +BLOOM: _(Warding off a blow.)_ To show you how he hit the paper. +There’s not sixpenceworth of damage done. Ten shillings! + +FLORRY: _(With a glass of water, enters.)_ Where is he? + +BELLA: Do you want me to call the police? + +BLOOM: O, I know. Bulldog on the premises. But he’s a Trinity student. +Patrons of your establishment. Gentlemen that pay the rent. _(He makes +a masonic sign.)_ Know what I mean? Nephew of the vicechancellor. You +don’t want a scandal. + +BELLA: _(Angrily.)_ Trinity. Coming down here ragging after the +boatraces and paying nothing. Are you my commander here or? Where is +he? I’ll charge him! Disgrace him, I will! _(She shouts.)_ Zoe! Zoe! + +BLOOM: _(Urgently.)_ And if it were your own son in Oxford? +_(Warningly.)_ I know. + +BELLA: _(Almost speechless.)_ Who are. Incog! + +ZOE: _(In the doorway.)_ There’s a row on. + +BLOOM: What? Where? _(He throws a shilling on the table and starts.)_ +That’s for the chimney. Where? I need mountain air. + +_(He hurries out through the hall. The whores point. Florry follows, +spilling water from her tilted tumbler. On the doorstep all the whores +clustered talk volubly, pointing to the right where the fog has cleared +off. From the left arrives a jingling hackney car. It slows to in front +of the house. Bloom at the halldoor perceives Corny Kelleher who is +about to dismount from the car with two silent lechers. He averts his +face. Bella from within the hall urges on her whores. They blow +ickylickysticky yumyum kisses. Corny Kelleher replies with a ghastly +lewd smile. The silent lechers turn to pay the jarvey. Zoe and Kitty +still point right. Bloom, parting them swiftly, draws his caliph’s hood +and poncho and hurries down the steps with sideways face. Incog Haroun +al Raschid he flits behind the silent lechers and hastens on by the +railings with fleet step of a pard strewing the drag behind him, torn +envelopes drenched in aniseed. The ashplant marks his stride. A pack of +bloodhounds, led by Hornblower of Trinity brandishing a dogwhip in +tallyho cap and an old pair of grey trousers, follows from far, picking +up the scent, nearer, baying, panting, at fault, breaking away, +throwing their tongues, biting his heels, leaping at his tail. He +walks, runs, zigzags, gallops, lugs laid back. He is pelted with +gravel, cabbagestumps, biscuitboxes, eggs, potatoes, dead codfish, +woman’s slipperslappers. After him freshfound the hue and cry zigzag +gallops in hot pursuit of follow my leader: 65 C, 66 C, night watch, +John Henry Menton, Wisdom Hely, V. B. Dillon, Councillor Nannetti, +Alexander Keyes, Larry O’Rourke, Joe Cuffe, Mrs O’Dowd, Pisser Burke, +The Nameless One, Mrs Riordan, The Citizen, Garryowen, Whodoyoucallhim, +Strangeface, Fellowthatsolike, Sawhimbefore, Chapwithawen, Chris +Callinan, sir Charles Cameron, Benjamin Dollard, Lenehan, Bartell +d’Arcy, Joe Hynes, red Murray, editor Brayden, T. M. Healy, Mr Justice +Fitzgibbon, John Howard Parnell, the reverend Tinned Salmon, Professor +Joly, Mrs Breen, Denis Breen, Theodore Purefoy, Mina Purefoy, the +Westland Row postmistress, C. P. M’Coy, friend of Lyons, Hoppy Holohan, +maninthestreet, othermaninthestreet, Footballboots, pugnosed driver, +rich protestant lady, Davy Byrne, Mrs Ellen M’Guinness, Mrs Joe +Gallaher, George Lidwell, Jimmy Henry on corns, Superintendent Laracy, +Father Cowley, Crofton out of the Collector-general’s, Dan Dawson, +dental surgeon Bloom with tweezers, Mrs Bob Doran, Mrs Kennefick, Mrs +Wyse Nolan, John Wyse Nolan, +handsomemarriedwomanrubbedagainstwidebehindinClonskea tram, the +bookseller of_ Sweets of Sin, _Miss Dubedatandshedidbedad, Mesdames +Gerald and Stanislaus Moran of Roebuck, the managing clerk of +Drimmie’s, Wetherup, colonel Hayes, Mastiansky, Citron, Penrose, Aaron +Figatner, Moses Herzog, Michael E Geraghty, Inspector Troy, Mrs +Galbraith, the constable off Eccles street corner, old doctor Brady +with stethoscope, the mystery man on the beach, a retriever, Mrs Miriam +Dandrade and all her lovers.)_ + +THE HUE AND CRY: _(Helterskelterpelterwelter.)_ He’s Bloom! Stop Bloom! +Stopabloom! Stopperrobber! Hi! Hi! Stophim on the corner! + +_(At the corner of Beaver street beneath the scaffolding Bloom panting +stops on the fringe of the noisy quarrelling knot, a lot not knowing a +jot what hi! hi! row and wrangle round the whowhat brawlaltogether.)_ + +STEPHEN: _(With elaborate gestures, breathing deeply and slowly.)_ You +are my guests. Uninvited. By virtue of the fifth of George and seventh +of Edward. History to blame. Fabled by mothers of memory. + +PRIVATE CARR: _(To Cissy Caffrey.)_ Was he insulting you? + +STEPHEN: Addressed her in vocative feminine. Probably neuter. +Ungenitive. + +VOICES: No, he didn’t. I seen him. The girl there. He was in Mrs +Cohen’s. What’s up? Soldier and civilian. + +CISSY CAFFREY: I was in company with the soldiers and they left me to +do—you know, and the young man run up behind me. But I’m faithful to +the man that’s treating me though I’m only a shilling whore. + +STEPHEN: _(Catches sight of Lynch’s and Kitty’s heads.)_ Hail, +Sisyphus. _(He points to himself and the others.)_ Poetic. Uropoetic. + +VOICES: Shes faithfultheman. + +CISSY CAFFREY: Yes, to go with him. And me with a soldier friend. + +PRIVATE COMPTON: He doesn’t half want a thick ear, the blighter. Biff +him one, Harry. + +PRIVATE CARR: _(To Cissy.)_ Was he insulting you while me and him was +having a piss? + +LORD TENNYSON: _(Gentleman poet in Union Jack blazer and cricket +flannels, bareheaded, flowingbearded.)_ Theirs not to reason why. + +PRIVATE COMPTON: Biff him, Harry. + +STEPHEN: _(To Private Compton.)_ I don’t know your name but you are +quite right. Doctor Swift says one man in armour will beat ten men in +their shirts. Shirt is synechdoche. Part for the whole. + +CISSY CAFFREY: _(To the crowd.)_ No, I was with the privates. + +STEPHEN: _(Amiably.)_ Why not? The bold soldier boy. In my opinion +every lady for example... + +PRIVATE CARR: _(His cap awry, advances to Stephen.)_ Say, how would it +be, governor, if I was to bash in your jaw? + +STEPHEN: _(Looks up to the sky.)_ How? Very unpleasant. Noble art of +selfpretence. Personally, I detest action. _(He waves his hand.)_ Hand +hurts me slightly. _Enfin ce sont vos oignons._ _(To Cissy Caffrey.)_ +Some trouble is on here. What is it precisely? + +DOLLY GRAY: _(From her balcony waves her handkerchief, giving the sign +of the heroine of Jericho.)_ Rahab. Cook’s son, goodbye. Safe home to +Dolly. Dream of the girl you left behind and she will dream of you. + +_(The soldiers turn their swimming eyes.)_ + +BLOOM: _(Elbowing through the crowd, plucks Stephen’s sleeve +vigorously.)_ Come now, professor, that carman is waiting. + +STEPHEN: _(Turns.)_ Eh? _(He disengages himself.)_ Why should I not +speak to him or to any human being who walks upright upon this oblate +orange? _(He points his finger.)_ I’m not afraid of what I can talk to +if I see his eye. Retaining the perpendicular. + +_(He staggers a pace back.)_ + +BLOOM: _(Propping him.)_ Retain your own. + +STEPHEN: _(Laughs emptily.)_ My centre of gravity is displaced. I have +forgotten the trick. Let us sit down somewhere and discuss. Struggle +for life is the law of existence but but human philirenists, notably +the tsar and the king of England, have invented arbitration. _(He taps +his brow.)_ But in here it is I must kill the priest and the king. + +BIDDY THE CLAP: Did you hear what the professor said? He’s a professor +out of the college. + +CUNTY KATE: I did. I heard that. + +BIDDY THE CLAP: He expresses himself with such marked refinement of +phraseology. + +CUNTY KATE: Indeed, yes. And at the same time with such apposite +trenchancy. + +PRIVATE CARR: _(Pulls himself free and comes forward.)_ What’s that +you’re saying about my king? + +_(Edward the Seventh appears in an archway. He wears a white jersey on +which an image of the Sacred Heart is stitched with the insignia of +Garter and Thistle, Golden Fleece, Elephant of Denmark, Skinner’s and +Probyn’s horse, Lincoln’s Inn bencher and ancient and honourable +artillery company of Massachusetts. He sucks a red jujube. He is robed +as a grand elect perfect and sublime mason with trowel and apron, +marked_ made in Germany. _In his left hand he holds a plasterer’s +bucket on which is printed_ Défense d’uriner. _A roar of welcome greets +him.)_ + +EDWARD THE SEVENTH: _(Slowly, solemnly but indistinctly.)_ Peace, +perfect peace. For identification, bucket in my hand. Cheerio, boys. +_(He turns to his subjects.)_ We have come here to witness a clean +straight fight and we heartily wish both men the best of good luck. +Mahak makar a bak. + +_(He shakes hands with Private Carr, Private Compton, Stephen, Bloom +and Lynch. General applause. Edward the Seventh lifts his bucket +graciously in acknowledgment.)_ + +PRIVATE CARR: _(To Stephen.)_ Say it again. + +STEPHEN: _(Nervous, friendly, pulls himself up.)_ I understand your +point of view though I have no king myself for the moment. This is the +age of patent medicines. A discussion is difficult down here. But this +is the point. You die for your country. Suppose. _(He places his arm on +Private Carr’s sleeve.)_ Not that I wish it for you. But I say: Let my +country die for me. Up to the present it has done so. I didn’t want it +to die. Damn death. Long live life! + +EDWARD THE SEVENTH: _(Levitates over heaps of slain, in the garb and +with the halo of Joking Jesus, a white jujube in his phosphorescent +face.)_ + + My methods are new and are causing surprise. + To make the blind see I throw dust in their eyes. + +STEPHEN: Kings and unicorns! _(He falls back a pace.)_ Come somewhere +and we’ll... What was that girl saying?... + +PRIVATE COMPTON: Eh, Harry, give him a kick in the knackers. Stick one +into Jerry. + +BLOOM: _(To the privates, softly.)_ He doesn’t know what he’s saying. +Taken a little more than is good for him. Absinthe. Greeneyed monster. +I know him. He’s a gentleman, a poet. It’s all right. + +STEPHEN: _(Nods, smiling and laughing.)_ Gentleman, patriot, scholar +and judge of impostors. + +PRIVATE CARR: I don’t give a bugger who he is. + +PRIVATE COMPTON: We don’t give a bugger who he is. + +STEPHEN: I seem to annoy them. Green rag to a bull. + +_(Kevin Egan of Paris in black Spanish tasselled shirt and peep-o’-day +boy’s hat signs to Stephen.)_ + +KEVIN EGAN: H’lo! _Bonjour!_ The _vieille ogresse_ with the _dents +jaunes_. + +_(Patrice Egan peeps from behind, his rabbitface nibbling a quince +leaf.)_ + +PATRICE: _Socialiste!_ + +DON EMILE PATRIZIO FRANZ RUPERT POPE HENNESSY: _(In medieval hauberk, +two wild geese volant on his helm, with noble indignation points a +mailed hand against the privates.)_ Werf those eykes to footboden, big +grand porcos of johnyellows todos covered of gravy! + +BLOOM: _(To Stephen.)_ Come home. You’ll get into trouble. + +STEPHEN: _(Swaying.)_ I don’t avoid it. He provokes my intelligence. + +BIDDY THE CLAP: One immediately observes that he is of patrician +lineage. + +THE VIRAGO: Green above the red, says he. Wolfe Tone. + +THE BAWD: The red’s as good as the green. And better. Up the soldiers! +Up King Edward! + +A ROUGH: _(Laughs.)_ Ay! Hands up to De Wet. + +THE CITIZEN: _(With a huge emerald muffler and shillelagh, calls.)_ + + May the God above + Send down a dove + With teeth as sharp as razors + To slit the throats + Of the English dogs + That hanged our Irish leaders. + +THE CROPPY BOY: _(The ropenoose round his neck, gripes in his issuing +bowels with both hands.)_ + + I bear no hate to a living thing, + But I love my country beyond the king. + +RUMBOLD, DEMON BARBER: _(Accompanied by two blackmasked assistants, +advances with gladstone bag which he opens.)_ Ladies and gents, cleaver +purchased by Mrs Pearcy to slay Mogg. Knife with which Voisin +dismembered the wife of a compatriot and hid remains in a sheet in the +cellar, the unfortunate female’s throat being cut from ear to ear. +Phial containing arsenic retrieved from body of Miss Barron which sent +Seddon to the gallows. + +_(He jerks the rope. The assistants leap at the victim’s legs and drag +him downward, grunting: the croppy boy’s tongue protrudes violently.)_ + +THE CROPPY BOY: + + Horhot ho hray hor hother’s hest. + +_(He gives up the ghost. A violent erection of the hanged sends gouts +of sperm spouting through his deathclothes on to the cobblestones. Mrs +Bellingham, Mrs Yelverton Barry and the Honourable Mrs Mervyn Talboys +rush forward with their handkerchiefs to sop it up.)_ + +RUMBOLD: I’m near it myself. _(He undoes the noose.)_ Rope which hanged +the awful rebel. Ten shillings a time. As applied to Her Royal +Highness. _(He plunges his head into the gaping belly of the hanged and +draws out his head again clotted with coiled and smoking entrails.)_ My +painful duty has now been done. God save the king! + +EDWARD THE SEVENTH: _(Dances slowly, solemnly, rattling his bucket, and +sings with soft contentment.)_ + + On coronation day, on coronation day, + O, won’t we have a merry time, + Drinking whisky, beer and wine! + +PRIVATE CARR: Here. What are you saying about my king? + +STEPHEN: _(Throws up his hands.)_ O, this is too monotonous! Nothing. +He wants my money and my life, though want must be his master, for some +brutish empire of his. Money I haven’t. _(He searches his pockets +vaguely.)_ Gave it to someone. + +PRIVATE CARR: Who wants your bleeding money? + +STEPHEN: _(Tries to move off.)_ Will someone tell me where I am least +likely to meet these necessary evils? _Ça se voit aussi à Paris._ Not +that I... But, by Saint Patrick...! + +_(The women’s heads coalesce. Old Gummy Granny in sugarloaf hat appears +seated on a toadstool, the deathflower of the potato blight on her +breast.)_ + +STEPHEN: Aha! I know you, gammer! Hamlet, revenge! The old sow that +eats her farrow! + +OLD GUMMY GRANNY: _(Rocking to and fro.)_ Ireland’s sweetheart, the +king of Spain’s daughter, alanna. Strangers in my house, bad manners to +them! _(She keens with banshee woe.)_ Ochone! Ochone! Silk of the kine! +_(She wails.)_ You met with poor old Ireland and how does she stand? + +STEPHEN: How do I stand you? The hat trick! Where’s the third person of +the Blessed Trinity? Soggarth Aroon? The reverend Carrion Crow. + +CISSY CAFFREY: _(Shrill.)_ Stop them from fighting! + +A ROUGH: Our men retreated. + +PRIVATE CARR: _(Tugging at his belt.)_ I’ll wring the neck of any +fucker says a word against my fucking king. + +BLOOM: _(Terrified.)_ He said nothing. Not a word. A pure +misunderstanding. + +THE CITIZEN: _Erin go bragh!_ + +_(Major Tweedy and the Citizen exhibit to each other medals, +decorations, trophies of war, wounds. Both salute with fierce +hostility.)_ + +PRIVATE COMPTON: Go it, Harry. Do him one in the eye. He’s a proboer. + +STEPHEN: Did I? When? + +BLOOM: _(To the redcoats.)_ We fought for you in South Africa, Irish +missile troops. Isn’t that history? Royal Dublin Fusiliers. Honoured by +our monarch. + +THE NAVVY: _(Staggering past.)_ O, yes! O God, yes! O, make the kwawr a +krowawr! O! Bo! + +_(Casqued halberdiers in armour thrust forward a pentice of gutted +spearpoints. Major Tweedy, moustached like Turko the terrible, in +bearskin cap with hackleplume and accoutrements, with epaulettes, gilt +chevrons and sabretaches, his breast bright with medals, toes the line. +He gives the pilgrim warrior’s sign of the knights templars.)_ + +MAJOR TWEEDY: _(Growls gruffly.)_ Rorke’s Drift! Up, guards, and at +them! Mahar shalal hashbaz. + +PRIVATE CARR: I’ll do him in. + +PRIVATE COMPTON: _(Waves the crowd back.)_ Fair play, here. Make a +bleeding butcher’s shop of the bugger. + +_(Massed bands blare_ Garryowen _and_ God save the King.) + +CISSY CAFFREY: They’re going to fight. For me! + +CUNTY KATE: The brave and the fair. + +BIDDY THE CLAP: Methinks yon sable knight will joust it with the best. + +CUNTY KATE: _(Blushing deeply.)_ Nay, madam. The gules doublet and +merry saint George for me! + +STEPHEN: + + The harlot’s cry from street to street + Shall weave Old Ireland’s windingsheet. + +PRIVATE CARR: _(Loosening his belt, shouts.)_ I’ll wring the neck of +any fucking bastard says a word against my bleeding fucking king. + +BLOOM: _(Shakes Cissy Caffrey’s shoulders.)_ Speak, you! Are you struck +dumb? You are the link between nations and generations. Speak, woman, +sacred lifegiver! + +CISSY CAFFREY: _(Alarmed, seizes Private Carr’s sleeve.)_ Amn’t I with +you? Amn’t I your girl? Cissy’s your girl. _(She cries.)_ Police! + +STEPHEN: _(Ecstatically, to Cissy Caffrey.)_ + + White thy fambles, red thy gan + And thy quarrons dainty is. + +VOICES: Police! + +DISTANT VOICES: Dublin’s burning! Dublin’s burning! On fire, on fire! + +_(Brimstone fires spring up. Dense clouds roll past. Heavy Gatling guns +boom. Pandemonium. Troops deploy. Gallop of hoofs. Artillery. Hoarse +commands. Bells clang. Backers shout. Drunkards bawl. Whores screech. +Foghorns hoot. Cries of valour. Shrieks of dying. Pikes clash on +cuirasses. Thieves rob the slain. Birds of prey, winging from the sea, +rising from marshlands, swooping from eyries, hover screaming, gannets, +cormorants, vultures, goshawks, climbing woodcocks, peregrines, +merlins, blackgrouse, sea eagles, gulls, albatrosses, barnacle geese. +The midnight sun is darkened. The earth trembles. The dead of Dublin +from Prospect and Mount Jerome in white sheepskin overcoats and black +goatfell cloaks arise and appear to many. A chasm opens with a +noiseless yawn. Tom Rochford, winner, in athlete’s singlet and +breeches, arrives at the head of the national hurdle handicap and leaps +into the void. He is followed by a race of runners and leapers. In wild +attitudes they spring from the brink. Their bodies plunge. Factory +lasses with fancy clothes toss redhot Yorkshire baraabombs. Society +ladies lift their skirts above their heads to protect themselves. +Laughing witches in red cutty sarks ride through the air on +broomsticks. Quakerlyster plasters blisters. It rains dragons’ teeth. +Armed heroes spring up from furrows. They exchange in amity the pass of +knights of the red cross and fight duels with cavalry sabres: Wolfe +Tone against Henry Grattan, Smith O’Brien against Daniel O’Connell, +Michael Davitt against Isaac Butt, Justin M’Carthy against Parnell, +Arthur Griffith against John Redmond, John O’Leary against Lear +O’Johnny, Lord Edward Fitzgerald against Lord Gerald Fitzedward, The +O’Donoghue of the Glens against The Glens of The O’Donoghue. On an +eminence, the centre of the earth, rises the fieldaltar of Saint +Barbara. Black candles rise from its gospel and epistle horns. From the +high barbacans of the tower two shafts of light fall on the smokepalled +altarstone. On the altarstone Mrs Mina Purefoy, goddess of unreason, +lies, naked, fettered, a chalice resting on her swollen belly. Father +Malachi O’Flynn in a lace petticoat and reversed chasuble, his two left +feet back to the front, celebrates camp mass. The Reverend Mr Hugh C +Haines Love M. A. in a plain cassock and mortarboard, his head and +collar back to the front, holds over the celebrant’s head an open +umbrella.)_ + +FATHER MALACHI O’FLYNN: _Introibo ad altare diaboli._ + +THE REVEREND MR HAINES LOVE: To the devil which hath made glad my young +days. + +FATHER MALACHI O’FLYNN: _(Takes from the chalice and elevates a +blooddripping host.) Corpus meum._ + +THE REVEREND MR HAINES LOVE: _(Raises high behind the celebrant’s +petticoat, revealing his grey bare hairy buttocks between which a +carrot is stuck.)_ My body. + +THE VOICE OF ALL THE DAMNED: Htengier Tnetopinmo Dog Drol eht rof, +Aiulella! + +_(From on high the voice of Adonai calls.)_ + +ADONAI: Dooooooooooog! + +THE VOICE OF ALL THE BLESSED: Alleluia, for the Lord God Omnipotent +reigneth! + +_(From on high the voice of Adonai calls.)_ + +ADONAI: Goooooooooood! + +_(In strident discord peasants and townsmen of Orange and Green +factions sing_ Kick the Pope _and_ Daily, daily sing to Mary.) + +PRIVATE CARR: _(With ferocious articulation.)_ I’ll do him in, so help +me fucking Christ! I’ll wring the bastard fucker’s bleeding blasted +fucking windpipe! + +_(The retriever, nosing on the fringe of the crowd, barks noisily.)_ + +OLD GUMMY GRANNY: _(Thrusts a dagger towards Stephen’s hand.)_ Remove +him, acushla. At 8.35 a.m. you will be in heaven and Ireland will be +free. _(She prays.)_ O good God, take him! + +BLOOM: _(Runs to Lynch.)_ Can’t you get him away? + +LYNCH: He likes dialectic, the universal language. Kitty! _(To Bloom.)_ +Get him away, you. He won’t listen to me. + +_(He drags Kitty away.)_ + +STEPHEN: _(Points.) Exit Judas. Et laqueo se suspendit._ + +BLOOM: _(Runs to Stephen.)_ Come along with me now before worse +happens. Here’s your stick. + +STEPHEN: Stick, no. Reason. This feast of pure reason. + +CISSY CAFFREY: _(Pulling Private Carr.)_ Come on, you’re boosed. He +insulted me but I forgive him. _(Shouting in his ear.)_ I forgive him +for insulting me. + +BLOOM: _(Over Stephen’s shoulder.)_ Yes, go. You see he’s incapable. + +PRIVATE CARR: _(Breaks loose.)_ I’ll insult him. + +_(He rushes towards Stephen, fist outstretched, and strikes him in the +face. Stephen totters, collapses, falls, stunned. He lies prone, his +face to the sky, his hat rolling to the wall. Bloom follows and picks +it up.)_ + +MAJOR TWEEDY: _(Loudly.)_ Carbine in bucket! Cease fire! Salute! + +THE RETRIEVER: _(Barking furiously.)_ Ute ute ute ute ute ute ute ute. + +THE CROWD: Let him up! Don’t strike him when he’s down! Air! Who? The +soldier hit him. He’s a professor. Is he hurted? Don’t manhandle him! +He’s fainted! + +A HAG: What call had the redcoat to strike the gentleman and he under +the influence. Let them go and fight the Boers! + +THE BAWD: Listen to who’s talking! Hasn’t the soldier a right to go +with his girl? He gave him the coward’s blow. + +_(They grab at each other’s hair, claw at each other and spit.)_ + +THE RETRIEVER: _(Barking.)_ Wow wow wow. + +BLOOM: _(Shoves them back, loudly.)_ Get back, stand back! + +PRIVATE COMPTON: _(Tugging his comrade.)_ Here. Bugger off, Harry. +Here’s the cops! _(Two raincaped watch, tall, stand in the group.)_ + +FIRST WATCH: What’s wrong here? + +PRIVATE COMPTON: We were with this lady. And he insulted us. And +assaulted my chum. _(The retriever barks.)_ Who owns the bleeding tyke? + +CISSY CAFFREY: _(With expectation.)_ Is he bleeding! + +A MAN: _(Rising from his knees.)_ No. Gone off. He’ll come to all +right. + +BLOOM: _(Glances sharply at the man.)_ Leave him to me. I can easily... + +SECOND WATCH: Who are you? Do you know him? + +PRIVATE CARR: _(Lurches towards the watch.)_ He insulted my lady +friend. + +BLOOM: _(Angrily.)_ You hit him without provocation. I’m a witness. +Constable, take his regimental number. + +SECOND WATCH: I don’t want your instructions in the discharge of my +duty. + +PRIVATE COMPTON: _(Pulling his comrade.)_ Here, bugger off Harry. Or +Bennett’ll shove you in the lockup. + +PRIVATE CARR: _(Staggering as he is pulled away.)_ God fuck old +Bennett. He’s a whitearsed bugger. I don’t give a shit for him. + +FIRST WATCH: _(Takes out his notebook.)_ What’s his name? + +BLOOM: _(Peering over the crowd.)_ I just see a car there. If you give +me a hand a second, sergeant... + +FIRST WATCH: Name and address. + +_(Corny Kelleher, weepers round his hat, a death wreath in his hand, +appears among the bystanders.)_ + +BLOOM: _(Quickly.)_ O, the very man! _(He whispers.)_ Simon Dedalus’ +son. A bit sprung. Get those policemen to move those loafers back. + +SECOND WATCH: Night, Mr Kelleher. + +CORNY KELLEHER: _(To the watch, with drawling eye.)_ That’s all right. +I know him. Won a bit on the races. Gold cup. Throwaway. _(He laughs.)_ +Twenty to one. Do you follow me? + +FIRST WATCH: _(Turns to the crowd.)_ Here, what are you all gaping at? +Move on out of that. + +_(The crowd disperses slowly, muttering, down the lane.)_ + +CORNY KELLEHER: Leave it to me, sergeant. That’ll be all right. _(He +laughs, shaking his head.)_ We were often as bad ourselves, ay or +worse. What? Eh, what? + +FIRST WATCH: _(Laughs.)_ I suppose so. + +CORNY KELLEHER: _(Nudges the second watch.)_ Come and wipe your name +off the slate. _(He lilts, wagging his head.)_ With my tooraloom +tooraloom tooraloom tooraloom. What, eh, do you follow me? + +SECOND WATCH: _(Genially.)_ Ah, sure we were too. + +CORNY KELLEHER: _(Winking.)_ Boys will be boys. I’ve a car round there. + +SECOND WATCH: All right, Mr Kelleher. Good night. + +CORNY KELLEHER: I’ll see to that. + +BLOOM: _(Shakes hands with both of the watch in turn.)_ Thank you very +much, gentlemen. Thank you. _(He mumbles confidentially.)_ We don’t +want any scandal, you understand. Father is a wellknown highly +respected citizen. Just a little wild oats, you understand. + +FIRST WATCH: O. I understand, sir. + +SECOND WATCH: That’s all right, sir. + +FIRST WATCH: It was only in case of corporal injuries I’d have to +report it at the station. + +BLOOM: _(Nods rapidly.)_ Naturally. Quite right. Only your bounden +duty. + +SECOND WATCH: It’s our duty. + +CORNY KELLEHER: Good night, men. + +THE WATCH: _(Saluting together.)_ Night, gentlemen. _(They move off +with slow heavy tread.)_ + +BLOOM: _(Blows.)_ Providential you came on the scene. You have a +car?... + +CORNY KELLEHER: _(Laughs, pointing his thumb over his right shoulder to +the car brought up against the scaffolding.)_ Two commercials that were +standing fizz in Jammet’s. Like princes, faith. One of them lost two +quid on the race. Drowning his grief. And were on for a go with the +jolly girls. So I landed them up on Behan’s car and down to nighttown. + +BLOOM: I was just going home by Gardiner street when I happened to... + +CORNY KELLEHER: _(Laughs.)_ Sure they wanted me to join in with the +mots. No, by God, says I. Not for old stagers like myself and yourself. +_(He laughs again and leers with lacklustre eye.)_ Thanks be to God we +have it in the house, what, eh, do you follow me? Hah, hah, hah! + +BLOOM: _(Tries to laugh.)_ He, he, he! Yes. Matter of fact I was just +visiting an old friend of mine there, Virag, you don’t know him (poor +fellow, he’s laid up for the past week) and we had a liquor together +and I was just making my way home... + +_(The horse neighs.)_ + +THE HORSE: Hohohohohohoh! Hohohohome! + +CORNY KELLEHER: Sure it was Behan our jarvey there that told me after +we left the two commercials in Mrs Cohen’s and I told him to pull up +and got off to see. _(He laughs.)_ Sober hearsedrivers a speciality. +Will I give him a lift home? Where does he hang out? Somewhere in +Cabra, what? + +BLOOM: No, in Sandycove, I believe, from what he let drop. + +_(Stephen, prone, breathes to the stars. Corny Kelleher, asquint, +drawls at the horse. Bloom, in gloom, looms down.)_ + +CORNY KELLEHER: _(Scratches his nape.)_ Sandycove! _(He bends down and +calls to Stephen.)_ Eh! _(He calls again.)_ Eh! He’s covered with +shavings anyhow. Take care they didn’t lift anything off him. + +BLOOM: No, no, no. I have his money and his hat here and stick. + +CORNY KELLEHER: Ah, well, he’ll get over it. No bones broken. Well, +I’ll shove along. _(He laughs.)_ I’ve a rendezvous in the morning. +Burying the dead. Safe home! + +THE HORSE: _(Neighs.)_ Hohohohohome. + +BLOOM: Good night. I’ll just wait and take him along in a few... + +_(Corny Kelleher returns to the outside car and mounts it. The horse +harness jingles.)_ + +CORNY KELLEHER: _(From the car, standing.)_ Night. + +BLOOM: Night. + +_(The jarvey chucks the reins and raises his whip encouragingly. The +car and horse back slowly, awkwardly, and turn. Corny Kelleher on the +sideseat sways his head to and fro in sign of mirth at Bloom’s plight. +The jarvey joins in the mute pantomimic merriment nodding from the +farther seat. Bloom shakes his head in mute mirthful reply. With thumb +and palm Corny Kelleher reassures that the two bobbies will allow the +sleep to continue for what else is to be done. With a slow nod Bloom +conveys his gratitude as that is exactly what Stephen needs. The car +jingles tooraloom round the corner of the tooraloom lane. Corny +Kelleher again reassuralooms with his hand. Bloom with his hand +assuralooms Corny Kelleher that he is reassuraloomtay. The tinkling +hoofs and jingling harness grow fainter with their tooralooloo looloo +lay. Bloom, holding in his hand Stephen’s hat, festooned with shavings, +and ashplant, stands irresolute. Then he bends to him and shakes him by +the shoulder.)_ + +BLOOM: Eh! Ho! _(There is no answer; he bends again.)_ Mr Dedalus! +_(There is no answer.)_ The name if you call. Somnambulist. _(He bends +again and, hesitating, brings his mouth near the face of the prostrate +form.)_ Stephen! _(There is no answer. He calls again.)_ Stephen! + +STEPHEN: _(Groans.)_ Who? Black panther. Vampire. _(He sighs and +stretches himself, then murmurs thickly with prolonged vowels.)_ + + Who... drive... Fergus now + And pierce... wood’s woven shade?... + +_(He turns on his left side, sighing, doubling himself together.)_ + +BLOOM: Poetry. Well educated. Pity. _(He bends again and undoes the +buttons of Stephen’s waistcoat.)_ To breathe. _(He brushes the +woodshavings from Stephen’s clothes with light hand and fingers.)_ One +pound seven. Not hurt anyhow. _(He listens.)_ What? + +STEPHEN: _(Murmurs.)_ + + ... shadows... the woods + ... white breast... dim sea. + +_(He stretches out his arms, sighs again and curls his body. Bloom, +holding the hat and ashplant, stands erect. A dog barks in the +distance. Bloom tightens and loosens his grip on the ashplant. He looks +down on Stephen’s face and form.)_ + +BLOOM: _(Communes with the night.)_ Face reminds me of his poor mother. +In the shady wood. The deep white breast. Ferguson, I think I caught. A +girl. Some girl. Best thing could happen him. _(He murmurs.)_... swear +that I will always hail, ever conceal, never reveal, any part or parts, +art or arts... _(He murmurs.)_... in the rough sands of the sea... a +cabletow’s length from the shore... where the tide ebbs... and flows +... + +_(Silent, thoughtful, alert he stands on guard, his fingers at his lips +in the attitude of secret master. Against the dark wall a figure +appears slowly, a fairy boy of eleven, a changeling, kidnapped, dressed +in an Eton suit with glass shoes and a little bronze helmet, holding a +book in his hand. He reads from right to left inaudibly, smiling, +kissing the page.)_ + +BLOOM: _(Wonderstruck, calls inaudibly.)_ Rudy! + +RUDY: _(Gazes, unseeing, into Bloom’s eyes and goes on reading, +kissing, smiling. He has a delicate mauve face. On his suit he has +diamond and ruby buttons. In his free left hand he holds a slim ivory +cane with a violet bowknot. A white lambkin peeps out of his waistcoat +pocket.)_ + + + + +— III — + + +[ 16 ] + +Preparatory to anything else Mr Bloom brushed off the greater bulk of +the shavings and handed Stephen the hat and ashplant and bucked him up +generally in orthodox Samaritan fashion which he very badly needed. His +(Stephen’s) mind was not exactly what you would call wandering but a +bit unsteady and on his expressed desire for some beverage to drink Mr +Bloom in view of the hour it was and there being no pump of Vartry +water available for their ablutions let alone drinking purposes hit +upon an expedient by suggesting, off the reel, the propriety of the +cabman’s shelter, as it was called, hardly a stonesthrow away near Butt +bridge where they might hit upon some drinkables in the shape of a milk +and soda or a mineral. But how to get there was the rub. For the nonce +he was rather nonplussed but inasmuch as the duty plainly devolved upon +him to take some measures on the subject he pondered suitable ways and +means during which Stephen repeatedly yawned. So far as he could see he +was rather pale in the face so that it occurred to him as highly +advisable to get a conveyance of some description which would answer in +their then condition, both of them being e.d.ed, particularly Stephen, +always assuming that there was such a thing to be found. Accordingly +after a few such preliminaries as brushing, in spite of his having +forgotten to take up his rather soapsuddy handkerchief after it had +done yeoman service in the shaving line, they both walked together +along Beaver street or, more properly, lane as far as the farrier’s and +the distinctly fetid atmosphere of the livery stables at the corner of +Montgomery street where they made tracks to the left from thence +debouching into Amiens street round by the corner of Dan Bergin’s. But +as he confidently anticipated there was not a sign of a Jehu plying for +hire anywhere to be seen except a fourwheeler, probably engaged by some +fellows inside on the spree, outside the North Star hotel and there was +no symptom of its budging a quarter of an inch when Mr Bloom, who was +anything but a professional whistler, endeavoured to hail it by +emitting a kind of a whistle, holding his arms arched over his head, +twice. + +This was a quandary but, bringing common sense to bear on it, evidently +there was nothing for it but put a good face on the matter and foot it +which they accordingly did. So, bevelling around by Mullett’s and the +Signal House which they shortly reached, they proceeded perforce in the +direction of Amiens street railway terminus, Mr Bloom being handicapped +by the circumstance that one of the back buttons of his trousers had, +to vary the timehonoured adage, gone the way of all buttons though, +entering thoroughly into the spirit of the thing, he heroically made +light of the mischance. So as neither of them were particularly pressed +for time, as it happened, and the temperature refreshing since it +cleared up after the recent visitation of Jupiter Pluvius, they +dandered along past by where the empty vehicle was waiting without a +fare or a jarvey. As it so happened a Dublin United Tramways Company’s +sandstrewer happened to be returning and the elder man recounted to his +companion _à propos_ of the incident his own truly miraculous escape of +some little while back. They passed the main entrance of the Great +Northern railway station, the starting point for Belfast, where of +course all traffic was suspended at that late hour and passing the +backdoor of the morgue (a not very enticing locality, not to say +gruesome to a degree, more especially at night) ultimately gained the +Dock Tavern and in due course turned into Store street, famous for its +C division police station. Between this point and the high at present +unlit warehouses of Beresford place Stephen thought to think of Ibsen, +associated with Baird’s the stonecutter’s in his mind somehow in Talbot +place, first turning on the right, while the other who was acting as +his _fidus Achates_ inhaled with internal satisfaction the smell of +James Rourke’s city bakery, situated quite close to where they were, +the very palatable odour indeed of our daily bread, of all commodities +of the public the primary and most indispensable. Bread, the staff of +life, earn your bread, O tell me where is fancy bread, at Rourke’s the +baker’s it is said. + +_En route_ to his taciturn and, not to put too fine a point on it, not +yet perfectly sober companion Mr Bloom who at all events was in +complete possession of his faculties, never more so, in fact +disgustingly sober, spoke a word of caution _re_ the dangers of +nighttown, women of ill fame and swell mobsmen, which, barely +permissible once in a while though not as a habitual practice, was of +the nature of a regular deathtrap for young fellows of his age +particularly if they had acquired drinking habits under the influence +of liquor unless you knew a little jiujitsu for every contingency as +even a fellow on the broad of his back could administer a nasty kick if +you didn’t look out. Highly providential was the appearance on the +scene of Corny Kelleher when Stephen was blissfully unconscious but for +that man in the gap turning up at the eleventh hour the finis might +have been that he might have been a candidate for the accident ward or, +failing that, the bridewell and an appearance in the court next day +before Mr Tobias or, he being the solicitor rather, old Wall, he meant +to say, or Mahony which simply spelt ruin for a chap when it got +bruited about. The reason he mentioned the fact was that a lot of those +policemen, whom he cordially disliked, were admittedly unscrupulous in +the service of the Crown and, as Mr Bloom put it, recalling a case or +two in the A division in Clanbrassil street, prepared to swear a hole +through a ten gallon pot. Never on the spot when wanted but in quiet +parts of the city, Pembroke road for example, the guardians of the law +were well in evidence, the obvious reason being they were paid to +protect the upper classes. Another thing he commented on was equipping +soldiers with firearms or sidearms of any description liable to go off +at any time which was tantamount to inciting them against civilians +should by any chance they fall out over anything. You frittered away +your time, he very sensibly maintained, and health and also character +besides which, the squandermania of the thing, fast women of the +_demimonde_ ran away with a lot of £. s. d. into the bargain and the +greatest danger of all was who you got drunk with though, touching the +much vexed question of stimulants, he relished a glass of choice old +wine in season as both nourishing and bloodmaking and possessing +aperient virtues (notably a good burgundy which he was a staunch +believer in) still never beyond a certain point where he invariably +drew the line as it simply led to trouble all round to say nothing of +your being at the tender mercy of others practically. Most of all he +commented adversely on the desertion of Stephen by all his pubhunting +_confrères_ but one, a most glaring piece of ratting on the part of his +brother medicos under all the circs. + +—And that one was Judas, Stephen said, who up to then had said nothing +whatsoever of any kind. + +Discussing these and kindred topics they made a beeline across the back +of the Customhouse and passed under the Loop Line bridge where a +brazier of coke burning in front of a sentrybox or something like one +attracted their rather lagging footsteps. Stephen of his own accord +stopped for no special reason to look at the heap of barren +cobblestones and by the light emanating from the brazier he could just +make out the darker figure of the corporation watchman inside the gloom +of the sentrybox. He began to remember that this had happened or had +been mentioned as having happened before but it cost him no small +effort before he remembered that he recognised in the sentry a +_quondam_ friend of his father’s, Gumley. To avoid a meeting he drew +nearer to the pillars of the railway bridge. + +—Someone saluted you, Mr Bloom said. + +A figure of middle height on the prowl evidently under the arches +saluted again, calling: + +—Night! + +Stephen of course started rather dizzily and stopped to return the +compliment. Mr Bloom actuated by motives of inherent delicacy inasmuch +as he always believed in minding his own business moved off but +nevertheless remained on the _qui vive_ with just a shade of anxiety +though not funkyish in the least. Though unusual in the Dublin area he +knew that it was not by any means unknown for desperadoes who had next +to nothing to live on to be abroad waylaying and generally terrorising +peaceable pedestrians by placing a pistol at their head in some +secluded spot outside the city proper, famished loiterers of the Thames +embankment category they might be hanging about there or simply +marauders ready to decamp with whatever boodle they could in one fell +swoop at a moment’s notice, your money or your life, leaving you there +to point a moral, gagged and garrotted. + +Stephen, that is when the accosting figure came to close quarters, +though he was not in an over sober state himself recognised Corley’s +breath redolent of rotten cornjuice. Lord John Corley some called him +and his genealogy came about in this wise. He was the eldest son of +inspector Corley of the G division, lately deceased, who had married a +certain Katherine Brophy, the daughter of a Louth farmer. His +grandfather Patrick Michael Corley of New Ross had married the widow of +a publican there whose maiden name had been Katherine (also) Talbot. +Rumour had it (though not proved) that she descended from the house of +the lords Talbot de Malahide in whose mansion, really an unquestionably +fine residence of its kind and well worth seeing, her mother or aunt or +some relative, a woman, as the tale went, of extreme beauty, had +enjoyed the distinction of being in service in the washkitchen. This +therefore was the reason why the still comparatively young though +dissolute man who now addressed Stephen was spoken of by some with +facetious proclivities as Lord John Corley. + +Taking Stephen on one side he had the customary doleful ditty to tell. +Not as much as a farthing to purchase a night’s lodgings. His friends +had all deserted him. Furthermore he had a row with Lenehan and called +him to Stephen a mean bloody swab with a sprinkling of a number of +other uncalledfor expressions. He was out of a job and implored of +Stephen to tell him where on God’s earth he could get something, +anything at all, to do. No, it was the daughter of the mother in the +washkitchen that was fostersister to the heir of the house or else they +were connected through the mother in some way, both occurrences +happening at the same time if the whole thing wasn’t a complete +fabrication from start to finish. Anyhow he was all in. + +—I wouldn’t ask you only, pursued he, on my solemn oath and God knows +I’m on the rocks. + +—There’ll be a job tomorrow or next day, Stephen told him, in a boys’ +school at Dalkey for a gentleman usher. Mr Garrett Deasy. Try it. You +may mention my name. + +—Ah, God, Corley replied, sure I couldn’t teach in a school, man. I was +never one of your bright ones, he added with a half laugh. I got stuck +twice in the junior at the christian brothers. + +—I have no place to sleep myself, Stephen informed him. + +Corley at the first go-off was inclined to suspect it was something to +do with Stephen being fired out of his digs for bringing in a bloody +tart off the street. There was a dosshouse in Marlborough street, Mrs +Maloney’s, but it was only a tanner touch and full of undesirables but +M’Conachie told him you got a decent enough do in the Brazen Head over +in Winetavern street (which was distantly suggestive to the person +addressed of friar Bacon) for a bob. He was starving too though he +hadn’t said a word about it. + +Though this sort of thing went on every other night or very near it +still Stephen’s feelings got the better of him in a sense though he +knew that Corley’s brandnew rigmarole on a par with the others was +hardly deserving of much credence. However _haud ignarus malorum +miseris succurrere disco etcetera_ as the Latin poet remarks especially +as luck would have it he got paid his screw after every middle of the +month on the sixteenth which was the date of the month as a matter of +fact though a good bit of the wherewithal was demolished. But the cream +of the joke was nothing would get it out of Corley’s head that he was +living in affluence and hadn’t a thing to do but hand out the needful. +Whereas. He put his hand in a pocket anyhow not with the idea of +finding any food there but thinking he might lend him anything up to a +bob or so in lieu so that he might endeavour at all events and get +sufficient to eat but the result was in the negative for, to his +chagrin, he found his cash missing. A few broken biscuits were all the +result of his investigation. He tried his hardest to recollect for the +moment whether he had lost as well he might have or left because in +that contingency it was not a pleasant lookout, very much the reverse +in fact. He was altogether too fagged out to institute a thorough +search though he tried to recollect. About biscuits he dimly +remembered. Who now exactly gave them he wondered or where was or did +he buy. However in another pocket he came across what he surmised in +the dark were pennies, erroneously however, as it turned out. + +—Those are halfcrowns, man, Corley corrected him. + +And so in point of fact they turned out to be. Stephen anyhow lent him +one of them. + +—Thanks, Corley answered, you’re a gentleman. I’ll pay you back one +time. Who’s that with you? I saw him a few times in the Bleeding Horse +in Camden street with Boylan, the billsticker. You might put in a good +word for us to get me taken on there. I’d carry a sandwichboard only +the girl in the office told me they’re full up for the next three +weeks, man. God, you’ve to book ahead, man, you’d think it was for the +Carl Rosa. I don’t give a shite anyway so long as I get a job, even as +a crossing sweeper. + +Subsequently being not quite so down in the mouth after the two and six +he got he informed Stephen about a fellow by the name of Bags Comisky +that he said Stephen knew well out of Fullam’s, the shipchandler’s, +bookkeeper there that used to be often round in Nagle’s back with +O’Mara and a little chap with a stutter the name of Tighe. Anyhow he +was lagged the night before last and fined ten bob for a drunk and +disorderly and refusing to go with the constable. + +Mr Bloom in the meanwhile kept dodging about in the vicinity of the +cobblestones near the brazier of coke in front of the corporation +watchman’s sentrybox who evidently a glutton for work, it struck him, +was having a quiet forty winks for all intents and purposes on his own +private account while Dublin slept. He threw an odd eye at the same +time now and then at Stephen’s anything but immaculately attired +interlocutor as if he had seen that nobleman somewhere or other though +where he was not in a position to truthfully state nor had he the +remotest idea when. Being a levelheaded individual who could give +points to not a few in point of shrewd observation he also remarked on +his very dilapidated hat and slouchy wearing apparel generally +testifying to a chronic impecuniosity. Palpably he was one of his +hangerson but for the matter of that it was merely a question of one +preying on his nextdoor neighbour all round, in every deep, so to put +it, a deeper depth and for the matter of that if the man in the street +chanced to be in the dock himself penal servitude with or without the +option of a fine would be a very _rara avis_ altogether. In any case he +had a consummate amount of cool assurance intercepting people at that +hour of the night or morning. Pretty thick that was certainly. + +The pair parted company and Stephen rejoined Mr Bloom who, with his +practised eye, was not without perceiving that he had succumbed to the +blandiloquence of the other parasite. Alluding to the encounter he +said, laughingly, Stephen, that is: + +—He is down on his luck. He asked me to ask you to ask somebody named +Boylan, a billsticker, to give him a job as a sandwichman. + +At this intelligence, in which he seemingly evinced little interest, Mr +Bloom gazed abstractedly for the space of a half a second or so in the +direction of a bucketdredger, rejoicing in the farfamed name of Eblana, +moored alongside Customhouse quay and quite possibly out of repair, +whereupon he observed evasively: + +—Everybody gets their own ration of luck, they say. Now you mention it +his face was familiar to me. But, leaving that for the moment, how much +did you part with, he queried, if I am not too inquisitive? + +—Half a crown, Stephen responded. I daresay he needs it to sleep +somewhere. + +—Needs! Mr Bloom ejaculated, professing not the least surprise at the +intelligence, I can quite credit the assertion and I guarantee he +invariably does. Everyone according to his needs or everyone according +to his deeds. But, talking about things in general, where, added he +with a smile, will you sleep yourself? Walking to Sandycove is out of +the question. And even supposing you did you won’t get in after what +occurred at Westland Row station. Simply fag out there for nothing. I +don’t mean to presume to dictate to you in the slightest degree but why +did you leave your father’s house? + +—To seek misfortune, was Stephen’s answer. + +—I met your respected father on a recent occasion, Mr Bloom +diplomatically returned, today in fact, or to be strictly accurate, on +yesterday. Where does he live at present? I gathered in the course of +conversation that he had moved. + +—I believe he is in Dublin somewhere, Stephen answered unconcernedly. +Why? + +—A gifted man, Mr Bloom said of Mr Dedalus senior, in more respects +than one and a born _raconteur_ if ever there was one. He takes great +pride, quite legitimate, out of you. You could go back perhaps, he +hasarded, still thinking of the very unpleasant scene at Westland Row +terminus when it was perfectly evident that the other two, Mulligan, +that is, and that English tourist friend of his, who eventually euchred +their third companion, were patently trying as if the whole bally +station belonged to them to give Stephen the slip in the confusion, +which they did. + +There was no response forthcoming to the suggestion however, such as it +was, Stephen’s mind’s eye being too busily engaged in repicturing his +family hearth the last time he saw it with his sister Dilly sitting by +the ingle, her hair hanging down, waiting for some weak Trinidad shell +cocoa that was in the sootcoated kettle to be done so that she and he +could drink it with the oatmealwater for milk after the Friday herrings +they had eaten at two a penny with an egg apiece for Maggy, Boody and +Katey, the cat meanwhile under the mangle devouring a mess of eggshells +and charred fish heads and bones on a square of brown paper, in +accordance with the third precept of the church to fast and abstain on +the days commanded, it being quarter tense or if not, ember days or +something like that. + +—No, Mr Bloom repeated again, I wouldn’t personally repose much trust +in that boon companion of yours who contributes the humorous element, +Dr Mulligan, as a guide, philosopher and friend if I were in your +shoes. He knows which side his bread is buttered on though in all +probability he never realised what it is to be without regular meals. +Of course you didn’t notice as much as I did. But it wouldn’t occasion +me the least surprise to learn that a pinch of tobacco or some narcotic +was put in your drink for some ulterior object. + +He understood however from all he heard that Dr Mulligan was a +versatile allround man, by no means confined to medicine only, who was +rapidly coming to the fore in his line and, if the report was verified, +bade fair to enjoy a flourishing practice in the not too distant future +as a tony medical practitioner drawing a handsome fee for his services +in addition to which professional status his rescue of that man from +certain drowning by artificial respiration and what they call first aid +at Skerries, or Malahide was it?, was, he was bound to admit, an +exceedingly plucky deed which he could not too highly praise, so that +frankly he was utterly at a loss to fathom what earthly reason could be +at the back of it except he put it down to sheer cussedness or +jealousy, pure and simple. + +—Except it simply amounts to one thing and he is what they call picking +your brains, he ventured to throw out. + +The guarded glance of half solicitude half curiosity augmented by +friendliness which he gave at Stephen’s at present morose expression of +features did not throw a flood of light, none at all in fact on the +problem as to whether he had let himself be badly bamboozled to judge +by two or three lowspirited remarks he let drop or the other way about +saw through the affair and for some reason or other best known to +himself allowed matters to more or less. Grinding poverty did have that +effect and he more than conjectured that, high educational abilities +though he possessed, he experienced no little difficulty in making both +ends meet. + +Adjacent to the men’s public urinal they perceived an icecream car +round which a group of presumably Italians in heated altercation were +getting rid of voluble expressions in their vivacious language in a +particularly animated way, there being some little differences between +the parties. + +—_Puttana madonna, che ci dia i quattrini! Ho ragione? Culo rotto!_ + +_—Intendiamoci. Mezzo sovrano più..._ + +_—Dice lui, però!_ + +_—Mezzo._ + +_—Farabutto! Mortacci sui!_ + +_—Ma ascolta! Cinque la testa più..._ + +Mr Bloom and Stephen entered the cabman’s shelter, an unpretentious +wooden structure, where, prior to then, he had rarely if ever been +before, the former having previously whispered to the latter a few +hints anent the keeper of it said to be the once famous Skin-the-Goat +Fitzharris, the invincible, though he could not vouch for the actual +facts which quite possibly there was not one vestige of truth in. A few +moments later saw our two noctambules safely seated in a discreet +corner only to be greeted by stares from the decidedly miscellaneous +collection of waifs and strays and other nondescript specimens of the +genus _homo_ already there engaged in eating and drinking diversified +by conversation for whom they seemingly formed an object of marked +curiosity. + +—Now touching a cup of coffee, Mr Bloom ventured to plausibly suggest +to break the ice, it occurs to me you ought to sample something in the +shape of solid food, say, a roll of some description. + +Accordingly his first act was with characteristic _sangfroid_ to order +these commodities quietly. The _hoi polloi_ of jarvies or stevedores or +whatever they were after a cursory examination turned their eyes +apparently dissatisfied, away though one redbearded bibulous +individual, portion of whose hair was greyish, a sailor probably, still +stared for some appreciable time before transferring his rapt attention +to the floor. Mr Bloom, availing himself of the right of free speech, +he having just a bowing acquaintance with the language in dispute, +though, to be sure, rather in a quandary over _voglio_, remarked to his +_protégé_ in an audible tone of voice _à propos_ of the battle royal in +the street which was still raging fast and furious: + +—A beautiful language. I mean for singing purposes. Why do you not +write your poetry in that language? _Bella Poetria_! It is so melodious +and full. _Belladonna. Voglio._ + +Stephen, who was trying his dead best to yawn if he could, suffering +from lassitude generally, replied: + +—To fill the ear of a cow elephant. They were haggling over money. + +—Is that so? Mr Bloom asked. Of course, he subjoined pensively, at the +inward reflection of there being more languages to start with than were +absolutely necessary, it may be only the southern glamour that +surrounds it. + +The keeper of the shelter in the middle of this _tête-à-tête_ put a +boiling swimming cup of a choice concoction labelled coffee on the +table and a rather antediluvian specimen of a bun, or so it seemed. +After which he beat a retreat to his counter, Mr Bloom determining to +have a good square look at him later on so as not to appear to. For +which reason he encouraged Stephen to proceed with his eyes while he +did the honours by surreptitiously pushing the cup of what was +temporarily supposed to be called coffee gradually nearer him. + +—Sounds are impostures, Stephen said after a pause of some little time, +like names. Cicero, Podmore, Napoleon, Mr Goodbody. Jesus, Mr Doyle. +Shakespeares were as common as Murphies. What’s in a name? + +—Yes, to be sure, Mr Bloom unaffectedly concurred. Of course. Our name +was changed too, he added, pushing the socalled roll across. + +The redbearded sailor who had his weather eye on the newcomers boarded +Stephen, whom he had singled out for attention in particular, squarely +by asking: + +—And what might your name be? + +Just in the nick of time Mr Bloom touched his companion’s boot but +Stephen, apparently disregarding the warm pressure from an unexpected +quarter, answered: + +—Dedalus. + +The sailor stared at him heavily from a pair of drowsy baggy eyes, +rather bunged up from excessive use of boose, preferably good old +Hollands and water. + +—You know Simon Dedalus? he asked at length. + +—I’ve heard of him, Stephen said. + +Mr Bloom was all at sea for a moment, seeing the others evidently +eavesdropping too. + +—He’s Irish, the seaman bold affirmed, staring still in much the same +way and nodding. All Irish. + +—All too Irish, Stephen rejoined. + +As for Mr Bloom he could neither make head or tail of the whole +business and he was just asking himself what possible connection when +the sailor of his own accord turned to the other occupants of the +shelter with the remark: + +—I seen him shoot two eggs off two bottles at fifty yards over his +shoulder. The lefthand dead shot. + +Though he was slightly hampered by an occasional stammer and his +gestures being also clumsy as it was still he did his best to explain. + +—Bottles out there, say. Fifty yards measured. Eggs on the bottles. +Cocks his gun over his shoulder. Aims. + +He turned his body half round, shut up his right eye completely. Then +he screwed his features up someway sideways and glared out into the +night with an unprepossessing cast of countenance. + +—Pom! he then shouted once. + +The entire audience waited, anticipating an additional detonation, +there being still a further egg. + +—Pom! he shouted twice. + +Egg two evidently demolished, he nodded and winked, adding +bloodthirstily: + +_—Buffalo Bill shoots to kill, + +Never missed nor he never will._ + +A silence ensued till Mr Bloom for agreeableness’ sake just felt like +asking him whether it was for a marksmanship competition like the +Bisley. + +—Beg pardon, the sailor said. + +—Long ago? Mr Bloom pursued without flinching a hairsbreadth. + +—Why, the sailor replied, relaxing to a certain extent under the magic +influence of diamond cut diamond, it might be a matter of ten years. He +toured the wide world with Hengler’s Royal Circus. I seen him do that +in Stockholm. + +—Curious coincidence, Mr Bloom confided to Stephen unobtrusively. + +—Murphy’s my name, the sailor continued. D. B. Murphy of Carrigaloe. +Know where that is? + +—Queenstown harbour, Stephen replied. + +—That’s right, the sailor said. Fort Camden and Fort Carlisle. That’s +where I hails from. I belongs there. That’s where I hails from. My +little woman’s down there. She’s waiting for me, I know. _For England, +home and beauty_. She’s my own true wife I haven’t seen for seven years +now, sailing about. + +Mr Bloom could easily picture his advent on this scene, the homecoming +to the mariner’s roadside shieling after having diddled Davy Jones, a +rainy night with a blind moon. Across the world for a wife. Quite a +number of stories there were on that particular Alice Ben Bolt topic, +Enoch Arden and Rip van Winkle and does anybody hereabouts remember +Caoc O’Leary, a favourite and most trying declamation piece by the way +of poor John Casey and a bit of perfect poetry in its own small way. +Never about the runaway wife coming back, however much devoted to the +absentee. The face at the window! Judge of his astonishment when he +finally did breast the tape and the awful truth dawned upon him anent +his better half, wrecked in his affections. You little expected me but +I’ve come to stay and make a fresh start. There she sits, a grasswidow, +at the selfsame fireside. Believes me dead, rocked in the cradle of the +deep. And there sits uncle Chubb or Tomkin, as the case might be, the +publican of the Crown and Anchor, in shirtsleeves, eating rumpsteak and +onions. No chair for father. Broo! The wind! Her brandnew arrival is on +her knee, _post mortem_ child. With a high ro! and a randy ro! and my +galloping tearing tandy, O! Bow to the inevitable. Grin and bear it. I +remain with much love your brokenhearted husband W. B. Murphy. + +The sailor, who scarcely seemed to be a Dublin resident, turned to one +of the jarvies with the request: + +—You don’t happen to have such a thing as a spare chaw about you? + +The jarvey addressed as it happened had not but the keeper took a die +of plug from his good jacket hanging on a nail and the desired object +was passed from hand to hand. + +—Thank you, the sailor said. + +He deposited the quid in his gob and, chewing and with some slow +stammers, proceeded: + +—We come up this morning eleven o’clock. The threemaster _Rosevean_ +from Bridgwater with bricks. I shipped to get over. Paid off this +afternoon. There’s my discharge. See? D. B. Murphy. A. B. S. + +In confirmation of which statement he extricated from an inside pocket +and handed to his neighbour a not very cleanlooking folded document. + +—You must have seen a fair share of the world, the keeper remarked, +leaning on the counter. + +—Why, the sailor answered upon reflection upon it, I’ve circumnavigated +a bit since I first joined on. I was in the Red Sea. I was in China and +North America and South America. We was chased by pirates one voyage. I +seen icebergs plenty, growlers. I was in Stockholm and the Black Sea, +the Dardanelles under Captain Dalton, the best bloody man that ever +scuttled a ship. I seen Russia. _Gospodi pomilyou_. That’s how the +Russians prays. + +—You seen queer sights, don’t be talking, put in a jarvey. + +—Why, the sailor said, shifting his partially chewed plug. I seen queer +things too, ups and downs. I seen a crocodile bite the fluke of an +anchor same as I chew that quid. + +He took out of his mouth the pulpy quid and, lodging it between his +teeth, bit ferociously: + +—Khaan! Like that. And I seen maneaters in Peru that eats corpses and +the livers of horses. Look here. Here they are. A friend of mine sent +me. + +He fumbled out a picture postcard from his inside pocket which seemed +to be in its way a species of repository and pushed it along the table. +The printed matter on it stated: _Choza de Indios. Beni, Bolivia._ + +All focussed their attention at the scene exhibited, a group of savage +women in striped loincloths, squatted, blinking, suckling, frowning, +sleeping amid a swarm of infants (there must have been quite a score of +them) outside some primitive shanties of osier. + +—Chews coca all day, the communicative tarpaulin added. Stomachs like +breadgraters. Cuts off their diddies when they can’t bear no more +children. + +See them sitting there stark ballocknaked eating a dead horse’s liver +raw. + +His postcard proved a centre of attraction for Messrs the greenhorns +for several minutes if not more. + +—Know how to keep them off? he inquired generally. + +Nobody volunteering a statement he winked, saying: + +—Glass. That boggles ’em. Glass. + +Mr Bloom, without evincing surprise, unostentatiously turned over the +card to peruse the partially obliterated address and postmark. It ran +as follows: _Tarjeta Postal, Señor A Boudin, Galeria Becche, Santiago, +Chile._ There was no message evidently, as he took particular notice. +Though not an implicit believer in the lurid story narrated (or the +eggsniping transaction for that matter despite William Tell and the +Lazarillo-Don Cesar de Bazan incident depicted in _Maritana_ on which +occasion the former’s ball passed through the latter’s hat) having +detected a discrepancy between his name (assuming he was the person he +represented himself to be and not sailing under false colours after +having boxed the compass on the strict q.t. somewhere) and the +fictitious addressee of the missive which made him nourish some +suspicions of our friend’s _bona fides_ nevertheless it reminded him in +a way of a longcherished plan he meant to one day realise some +Wednesday or Saturday of travelling to London _via_ long sea not to say +that he had ever travelled extensively to any great extent but he was +at heart a born adventurer though by a trick of fate he had +consistently remained a landlubber except you call going to Holyhead +which was his longest. Martin Cunningham frequently said he would work +a pass through Egan but some deuced hitch or other eternally cropped up +with the net result that the scheme fell through. But even suppose it +did come to planking down the needful and breaking Boyd’s heart it was +not so dear, purse permitting, a few guineas at the outside considering +the fare to Mullingar where he figured on going was five and six, there +and back. The trip would benefit health on account of the bracing ozone +and be in every way thoroughly pleasurable, especially for a chap whose +liver was out of order, seeing the different places along the route, +Plymouth, Falmouth, Southampton and so on culminating in an instructive +tour of the sights of the great metropolis, the spectacle of our modern +Babylon where doubtless he would see the greatest improvement, tower, +abbey, wealth of Park lane to renew acquaintance with. Another thing +just struck him as a by no means bad notion was he might have a gaze +around on the spot to see about trying to make arrangements about a +concert tour of summer music embracing the most prominent pleasure +resorts, Margate with mixed bathing and firstrate hydros and spas, +Eastbourne, Scarborough, Margate and so on, beautiful Bournemouth, the +Channel islands and similar bijou spots, which might prove highly +remunerative. Not, of course, with a hole and corner scratch company or +local ladies on the job, witness Mrs C P M’Coy type lend me your valise +and I’ll post you the ticket. No, something top notch, an all star +Irish caste, the Tweedy-Flower grand opera company with his own legal +consort as leading lady as a sort of counterblast to the Elster Grimes +and Moody-Manners, perfectly simple matter and he was quite sanguine of +success, providing puffs in the local papers could be managed by some +fellow with a bit of bounce who could pull the indispensable wires and +thus combine business with pleasure. But who? That was the rub. + +Also, without being actually positive, it struck him a great field was +to be opened up in the line of opening up new routes to keep pace with +the times _apropos_ of the Fishguard-Rosslare route which, it was +mooted, was once more on the _tapis_ in the circumlocution departments +with the usual quantity of red tape and dillydallying of effete +fogeydom and dunderheads generally. A great opportunity there certainly +was for push and enterprise to meet the travelling needs of the public +at large, the average man, i.e. Brown, Robinson and Co. + +It was a subject of regret and absurd as well on the face of it and no +small blame to our vaunted society that the man in the street, when the +system really needed toning up, for the matter of a couple of paltry +pounds was debarred from seeing more of the world they lived in instead +of being always and ever cooped up since my old stick-in-the-mud took +me for a wife. After all, hang it, they had their eleven and more +humdrum months of it and merited a radical change of _venue_ after the +grind of city life in the summertime for choice when dame Nature is at +her spectacular best constituting nothing short of a new lease of life. +There were equally excellent opportunities for vacationists in the home +island, delightful sylvan spots for rejuvenation, offering a plethora +of attractions as well as a bracing tonic for the system in and around +Dublin and its picturesque environs even, Poulaphouca to which there +was a steamtram, but also farther away from the madding crowd in +Wicklow, rightly termed the garden of Ireland, an ideal neighbourhood +for elderly wheelmen so long as it didn’t come down, and in the wilds +of Donegal where if report spoke true the _coup d’œil_ was exceedingly +grand though the lastnamed locality was not easily getatable so that +the influx of visitors was not as yet all that it might be considering +the signal benefits to be derived from it while Howth with its historic +associations and otherwise, Silken Thomas, Grace O’Malley, George IV, +rhododendrons several hundred feet above sealevel was a favourite haunt +with all sorts and conditions of men especially in the spring when +young men’s fancy, though it had its own toll of deaths by falling off +the cliffs by design or accidentally, usually, by the way, on their +left leg, it being only about three quarters of an hour’s run from the +pillar. Because of course uptodate tourist travelling was as yet merely +in its infancy, so to speak, and the accommodation left much to be +desired. Interesting to fathom it seemed to him from a motive of +curiosity, pure and simple, was whether it was the traffic that created +the route or viceversa or the two sides in fact. He turned back the +other side of the card, picture, and passed it along to Stephen. + +—I seen a Chinese one time, related the doughty narrator, that had +little pills like putty and he put them in the water and they opened +and every pill was something different. One was a ship, another was a +house, another was a flower. Cooks rats in your soup, he appetisingly +added, the chinks does. + +Possibly perceiving an expression of dubiosity on their faces the +globetrotter went on, adhering to his adventures. + +—And I seen a man killed in Trieste by an Italian chap. Knife in his +back. Knife like that. + +Whilst speaking he produced a dangerouslooking claspknife quite in +keeping with his character and held it in the striking position. + +—In a knockingshop it was count of a tryon between two smugglers. +Fellow hid behind a door, come up behind him. Like that. _Prepare to +meet your God_, says he. Chuk! It went into his back up to the butt. + +His heavy glance drowsily roaming about kind of defied their further +questions even should they by any chance want to. + +—That’s a good bit of steel, repeated he, examining his formidable +_stiletto_. + +After which harrowing _dénouement_ sufficient to appal the stoutest he +snapped the blade to and stowed the weapon in question away as before +in his chamber of horrors, otherwise pocket. + +—They’re great for the cold steel, somebody who was evidently quite in +the dark said for the benefit of them all. That was why they thought +the park murders of the invincibles was done by foreigners on account +of them using knives. + +At this remark passed obviously in the spirit of _where ignorance is +bliss_ Mr B. and Stephen, each in his own particular way, both +instinctively exchanged meaning glances, in a religious silence of the +strictly _entre nous_ variety however, towards where Skin-the-Goat, +_alias_ the keeper, not turning a hair, was drawing spurts of liquid +from his boiler affair. His inscrutable face which was really a work of +art, a perfect study in itself, beggaring description, conveyed the +impression that he didn’t understand one jot of what was going on. +Funny, very! + +There ensued a somewhat lengthy pause. One man was reading in fits and +starts a stained by coffee evening journal, another the card with the +natives _choza de_, another the seaman’s discharge. Mr Bloom, so far as +he was personally concerned, was just pondering in pensive mood. He +vividly recollected when the occurrence alluded to took place as well +as yesterday, roughly some score of years previously in the days of the +land troubles, when it took the civilised world by storm, figuratively +speaking, early in the eighties, eightyone to be correct, when he was +just turned fifteen. + +—Ay, boss, the sailor broke in. Give us back them papers. + +The request being complied with he clawed them up with a scrape. + +—Have you seen the rock of Gibraltar? Mr Bloom inquired. + +The sailor grimaced, chewing, in a way that might be read as yes, ay or +no. + +—Ah, you’ve touched there too, Mr Bloom said, Europa point, thinking he +had, in the hope that the rover might possibly by some reminiscences +but he failed to do so, simply letting spirt a jet of spew into the +sawdust, and shook his head with a sort of lazy scorn. + +—What year would that be about? Mr B interrogated. Can you recall the +boats? + +Our _soi-disant_ sailor munched heavily awhile hungrily before +answering: + +—I’m tired of all them rocks in the sea, he said, and boats and ships. +Salt junk all the time. + +Tired seemingly, he ceased. His questioner perceiving that he was not +likely to get a great deal of change out of such a wily old customer, +fell to woolgathering on the enormous dimensions of the water about the +globe, suffice it to say that, as a casual glance at the map revealed, +it covered fully three fourths of it and he fully realised accordingly +what it meant to rule the waves. On more than one occasion, a dozen at +the lowest, near the North Bull at Dollymount he had remarked a +superannuated old salt, evidently derelict, seated habitually near the +not particularly redolent sea on the wall, staring quite obliviously at +it and it at him, dreaming of fresh woods and pastures new as someone +somewhere sings. And it left him wondering why. Possibly he had tried +to find out the secret for himself, floundering up and down the +antipodes and all that sort of thing and over and under, well, not +exactly under, tempting the fates. And the odds were twenty to nil +there was really no secret about it at all. Nevertheless, without going +into the _minutiae_ of the business, the eloquent fact remained that +the sea was there in all its glory and in the natural course of things +somebody or other had to sail on it and fly in the face of providence +though it merely went to show how people usually contrived to load that +sort of onus on to the other fellow like the hell idea and the lottery +and insurance which were run on identically the same lines so that for +that very reason if no other lifeboat Sunday was a highly laudable +institution to which the public at large, no matter where living inland +or seaside, as the case might be, having it brought home to them like +that should extend its gratitude also to the harbourmasters and +coastguard service who had to man the rigging and push off and out amid +the elements whatever the season when duty called _Ireland expects that +every man_ and so on and sometimes had a terrible time of it in the +wintertime not forgetting the Irish lights, Kish and others, liable to +capsize at any moment, rounding which he once with his daughter had +experienced some remarkably choppy, not to say stormy, weather. + +—There was a fellow sailed with me in the _Rover_, the old seadog, +himself a rover, proceeded, went ashore and took up a soft job as +gentleman’s valet at six quid a month. Them are his trousers I’ve on me +and he gave me an oilskin and that jackknife. I’m game for that job, +shaving and brushup. I hate roaming about. There’s my son now, Danny, +run off to sea and his mother got him took in a draper’s in Cork where +he could be drawing easy money. + +—What age is he? queried one hearer who, by the way, seen from the +side, bore a distant resemblance to Henry Campbell, the townclerk, away +from the carking cares of office, unwashed of course and in a seedy +getup and a strong suspicion of nosepaint about the nasal appendage. + +—Why, the sailor answered with a slow puzzled utterance, my son, Danny? +He’d be about eighteen now, way I figure it. + +The Skibbereen father hereupon tore open his grey or unclean anyhow +shirt with his two hands and scratched away at his chest on which was +to be seen an image tattooed in blue Chinese ink intended to represent +an anchor. + +—There was lice in that bunk in Bridgwater, he remarked, sure as nuts. +I must get a wash tomorrow or next day. It’s them black lads I objects +to. I hate those buggers. Suck your blood dry, they does. + +Seeing they were all looking at his chest he accommodatingly dragged +his shirt more open so that on top of the timehonoured symbol of the +mariner’s hope and rest they had a full view of the figure 16 and a +young man’s sideface looking frowningly rather. + +—Tattoo, the exhibitor explained. That was done when we were lying +becalmed off Odessa in the Black Sea under Captain Dalton. Fellow, the +name of Antonio, done that. There he is himself, a Greek. + +—Did it hurt much doing it? one asked the sailor. + +That worthy, however, was busily engaged in collecting round the. +Someway in his. Squeezing or. + +—See here, he said, showing Antonio. There he is cursing the mate. And +there he is now, he added, the same fellow, pulling the skin with his +fingers, some special knack evidently, and he laughing at a yarn. + +And in point of fact the young man named Antonio’s livid face did +actually look like forced smiling and the curious effect excited the +unreserved admiration of everybody including Skin-the-Goat, who this +time stretched over. + +—Ay, ay, sighed the sailor, looking down on his manly chest. He’s gone +too. Ate by sharks after. Ay, ay. + +He let go of the skin so that the profile resumed the normal expression +of before. + +—Neat bit of work, one longshoreman said. + +—And what’s the number for? loafer number two queried. + +—Eaten alive? a third asked the sailor. + +—Ay, ay, sighed again the latter personage, more cheerily this time +with some sort of a half smile for a brief duration only in the +direction of the questioner about the number. Ate. A Greek he was. + +And then he added with rather gallowsbird humour considering his +alleged end: + + —As bad as old Antonio, + For he left me on my ownio. + +The face of a streetwalker glazed and haggard under a black straw hat +peered askew round the door of the shelter palpably reconnoitring on +her own with the object of bringing more grist to her mill. Mr Bloom, +scarcely knowing which way to look, turned away on the moment +flusterfied but outwardly calm, and, picking up from the table the pink +sheet of the Abbey street organ which the jarvey, if such he was, had +laid aside, he picked it up and looked at the pink of the paper though +why pink. His reason for so doing was he recognised on the moment round +the door the same face he had caught a fleeting glimpse of that +afternoon on Ormond quay, the partially idiotic female, namely, of the +lane who knew the lady in the brown costume does be with you (Mrs B.) +and begged the chance of his washing. Also why washing which seemed +rather vague than not, your washing. Still candour compelled him to +admit he had washed his wife’s undergarments when soiled in Holles +street and women would and did too a man’s similar garments initialled +with Bewley and Draper’s marking ink (hers were, that is) if they +really loved him, that is to say, love me, love my dirty shirt. Still +just then, being on tenterhooks, he desired the female’s room more than +her company so it came as a genuine relief when the keeper made her a +rude sign to take herself off. Round the side of the _Evening +Telegraph_ he just caught a fleeting glimpse of her face round the side +of the door with a kind of demented glassy grin showing that she was +not exactly all there, viewing with evident amusement the group of +gazers round skipper Murphy’s nautical chest and then there was no more +of her. + +—The gunboat, the keeper said. + +—It beats me, Mr Bloom confided to Stephen, medically I am speaking, +how a wretched creature like that from the Lock hospital reeking with +disease can be barefaced enough to solicit or how any man in his sober +senses, if he values his health in the least. Unfortunate creature! Of +course I suppose some man is ultimately responsible for her condition. +Still no matter what the cause is from... + +Stephen had not noticed her and shrugged his shoulders, merely +remarking: + +—In this country people sell much more than she ever had and do a +roaring trade. Fear not them that sell the body but have not power to +buy the soul. She is a bad merchant. She buys dear and sells cheap. + +The elder man, though not by any manner of means an old maid or a +prude, said it was nothing short of a crying scandal that ought to be +put a stop to _instanter_ to say that women of that stamp (quite apart +from any oldmaidish squeamishness on the subject), a necessary evil, +were not licensed and medically inspected by the proper authorities, a +thing, he could truthfully state, he, as a _paterfamilias_, was a +stalwart advocate of from the very first start. Whoever embarked on a +policy of the sort, he said, and ventilated the matter thoroughly would +confer a lasting boon on everybody concerned. + +—You as a good catholic, he observed, talking of body and soul, believe +in the soul. Or do you mean the intelligence, the brainpower as such, +as distinct from any outside object, the table, let us say, that cup. I +believe in that myself because it has been explained by competent men +as the convolutions of the grey matter. Otherwise we would never have +such inventions as X rays, for instance. Do you? + +Thus cornered, Stephen had to make a superhuman effort of memory to try +and concentrate and remember before he could say: + +—They tell me on the best authority it is a simple substance and +therefore incorruptible. It would be immortal, I understand, but for +the possibility of its annihilation by its First Cause Who, from all I +can hear, is quite capable of adding that to the number of His other +practical jokes, _corruptio per se_ and _corruptio per accidens_ both +being excluded by court etiquette. + +Mr Bloom thoroughly acquiesced in the general gist of this though the +mystical finesse involved was a bit out of his sublunary depth still he +felt bound to enter a demurrer on the head of simple, promptly +rejoining: + +—Simple? I shouldn’t think that is the proper word. Of course, I grant +you, to concede a point, you do knock across a simple soul once in a +blue moon. But what I am anxious to arrive at is it is one thing for +instance to invent those rays Röntgen did or the telescope like Edison, +though I believe it was before his time Galileo was the man, I mean, +and the same applies to the laws, for example, of a farreaching natural +phenomenon such as electricity but it’s a horse of quite another colour +to say you believe in the existence of a supernatural God. + +—O that, Stephen expostulated, has been proved conclusively by several +of the bestknown passages in Holy Writ, apart from circumstantial +evidence. + +On this knotty point however the views of the pair, poles apart as they +were both in schooling and everything else with the marked difference +in their respective ages, clashed. + +—Has been? the more experienced of the two objected, sticking to his +original point with a smile of unbelief. I’m not so sure about that. +That’s a matter for everyman’s opinion and, without dragging in the +sectarian side of the business, I beg to differ with you _in toto_ +there. My belief is, to tell you the candid truth, that those bits were +genuine forgeries all of them put in by monks most probably or it’s the +big question of our national poet over again, who precisely wrote them +like _Hamlet_ and Bacon, as, you who know your Shakespeare infinitely +better than I, of course I needn’t tell you. Can’t you drink that +coffee, by the way? Let me stir it. And take a piece of that bun. It’s +like one of our skipper’s bricks disguised. Still no-one can give what +he hasn’t got. Try a bit. + +—Couldn’t, Stephen contrived to get out, his mental organs for the +moment refusing to dictate further. + +Faultfinding being a proverbially bad hat Mr Bloom thought well to stir +or try to the clotted sugar from the bottom and reflected with +something approaching acrimony on the Coffee Palace and its temperance +(and lucrative) work. To be sure it was a legitimate object and beyond +yea or nay did a world of good, shelters such as the present one they +were in run on teetotal lines for vagrants at night, concerts, dramatic +evenings and useful lectures (admittance free) by qualified men for the +lower orders. On the other hand he had a distinct and painful +recollection they paid his wife, Madam Marion Tweedy who had been +prominently associated with it at one time, a very modest remuneration +indeed for her pianoplaying. The idea, he was strongly inclined to +believe, was to do good and net a profit, there being no competition to +speak of. Sulphate of copper poison SO4 or something in some dried peas +he remembered reading of in a cheap eatinghouse somewhere but he +couldn’t remember when it was or where. Anyhow inspection, medical +inspection, of all eatables seemed to him more than ever necessary +which possibly accounted for the vogue of Dr Tibble’s Vi-Cocoa on +account of the medical analysis involved. + +—Have a shot at it now, he ventured to say of the coffee after being +stirred. + +Thus prevailed on to at any rate taste it Stephen lifted the heavy mug +from the brown puddle it clopped out of when taken up by the handle and +took a sip of the offending beverage. + +—Still it’s solid food, his good genius urged, I’m a stickler for solid +food, his one and only reason being not gormandising in the least but +regular meals as the _sine qua non_ for any kind of proper work, mental +or manual. You ought to eat more solid food. You would feel a different +man. + +—Liquids I can eat, Stephen said. But O, oblige me by taking away that +knife. I can’t look at the point of it. It reminds me of Roman history. + +Mr Bloom promptly did as suggested and removed the incriminated +article, a blunt hornhandled ordinary knife with nothing particularly +Roman or antique about it to the lay eye, observing that the point was +the least conspicuous point about it. + +—Our mutual friend’s stories are like himself, Mr Bloom _apropos_ of +knives remarked to his _confidante sotto voce_. Do you think they are +genuine? He could spin those yarns for hours on end all night long and +lie like old boots. Look at him. + +Yet still though his eyes were thick with sleep and sea air life was +full of a host of things and coincidences of a terrible nature and it +was quite within the bounds of possibility that it was not an entire +fabrication though at first blush there was not much inherent +probability in all the spoof he got off his chest being strictly +accurate gospel. + +He had been meantime taking stock of the individual in front of him and +Sherlockholmesing him up ever since he clapped eyes on him. Though a +wellpreserved man of no little stamina, if a trifle prone to baldness, +there was something spurious in the cut of his jib that suggested a +jail delivery and it required no violent stretch of imagination to +associate such a weirdlooking specimen with the oakum and treadmill +fraternity. He might even have done for his man supposing it was his +own case he told, as people often did about others, namely, that he +killed him himself and had served his four or five goodlooking years in +durance vile to say nothing of the Antonio personage (no relation to +the dramatic personage of identical name who sprang from the pen of our +national poet) who expiated his crimes in the melodramatic manner above +described. On the other hand he might be only bluffing, a pardonable +weakness because meeting unmistakable mugs, Dublin residents, like +those jarvies waiting news from abroad would tempt any ancient mariner +who sailed the ocean seas to draw the long bow about the schooner +_Hesperus_ and etcetera. And when all was said and done the lies a +fellow told about himself couldn’t probably hold a proverbial candle to +the wholesale whoppers other fellows coined about him. + +—Mind you, I’m not saying that it’s all a pure invention, he resumed. +Analogous scenes are occasionally, if not often, met with. Giants, +though that is rather a far cry, you see once in a way, Marcella the +midget queen. In those waxworks in Henry street I myself saw some +Aztecs, as they are called, sitting bowlegged, they couldn’t straighten +their legs if you paid them because the muscles here, you see, he +proceeded, indicating on his companion the brief outline of the sinews +or whatever you like to call them behind the right knee, were utterly +powerless from sitting that way so long cramped up, being adored as +gods. There’s an example again of simple souls. + +However reverting to friend Sinbad and his horrifying adventures (who +reminded him a bit of Ludwig, _alias_ Ledwidge, when he occupied the +boards of the Gaiety when Michael Gunn was identified with the +management in the _Flying Dutchman_, a stupendous success, and his host +of admirers came in large numbers, everyone simply flocking to hear him +though ships of any sort, phantom or the reverse, on the stage usually +fell a bit flat as also did trains) there was nothing intrinsically +incompatible about it, he conceded. On the contrary that stab in the +back touch was quite in keeping with those italianos though candidly he +was none the less free to admit those icecreamers and friers in the +fish way not to mention the chip potato variety and so forth over in +little Italy there near the Coombe were sober thrifty hardworking +fellows except perhaps a bit too given to pothunting the harmless +necessary animal of the feline persuasion of others at night so as to +have a good old succulent tuckin with garlic _de rigueur_ off him or +her next day on the quiet and, he added, on the cheap. + +—Spaniards, for instance, he continued, passionate temperaments like +that, impetuous as Old Nick, are given to taking the law into their own +hands and give you your quietus doublequick with those poignards they +carry in the abdomen. It comes from the great heat, climate generally. +My wife is, so to speak, Spanish, half that is. Point of fact she could +actually claim Spanish nationality if she wanted, having been born in +(technically) Spain, i.e. Gibraltar. She has the Spanish type. Quite +dark, regular brunette, black. I for one certainly believe climate +accounts for character. That’s why I asked you if you wrote your poetry +in Italian. + +—The temperaments at the door, Stephen interposed with, were very +passionate about ten shillings. _Roberto ruba roba sua_. + +—Quite so, Mr Bloom dittoed. + +—Then, Stephen said staring and rambling on to himself or some unknown +listener somewhere, we have the impetuosity of Dante and the isosceles +triangle miss Portinari he fell in love with and Leonardo and san +Tommaso Mastino. + +—It’s in the blood, Mr Bloom acceded at once. All are washed in the +blood of the sun. Coincidence I just happened to be in the Kildare +street museum today, shortly prior to our meeting if I can so call it, +and I was just looking at those antique statues there. The splendid +proportions of hips, bosom. You simply don’t knock against those kind +of women here. An exception here and there. Handsome yes, pretty in a +way you find but what I’m talking about is the female form. Besides +they have so little taste in dress, most of them, which greatly +enhances a woman’s natural beauty, no matter what you say. Rumpled +stockings, it may be, possibly is, a foible of mine but still it’s a +thing I simply hate to see. + +Interest, however, was starting to flag somewhat all round and then the +others got on to talking about accidents at sea, ships lost in a fog, +collisions with icebergs, all that sort of thing. Shipahoy of course +had his own say to say. He had doubled the cape a few odd times and +weathered a monsoon, a kind of wind, in the China seas and through all +those perils of the deep there was one thing, he declared, stood to him +or words to that effect, a pious medal he had that saved him. + +So then after that they drifted on to the wreck off Daunt’s rock, wreck +of that illfated Norwegian barque nobody could think of her name for +the moment till the jarvey who had really quite a look of Henry +Campbell remembered it _Palme_ on Booterstown strand. That was the talk +of the town that year (Albert William Quill wrote a fine piece of +original verse of distinctive merit on the topic for the Irish +_Times_), breakers running over her and crowds and crowds on the shore +in commotion petrified with horror. Then someone said something about +the case of the s. s. _Lady Cairns_ of Swansea run into by the _Mona_ +which was on an opposite tack in rather muggyish weather and lost with +all hands on deck. No aid was given. Her master, the _Mona_’s, said he +was afraid his collision bulkhead would give way. She had no water, it +appears, in her hold. + +At this stage an incident happened. It having become necessary for him +to unfurl a reef the sailor vacated his seat. + +—Let me cross your bows mate, he said to his neighbour who was just +gently dropping off into a peaceful doze. + +He made tracks heavily, slowly with a dumpy sort of a gait to the door, +stepped heavily down the one step there was out of the shelter and bore +due left. While he was in the act of getting his bearings Mr Bloom who +noticed when he stood up that he had two flasks of presumably ship’s +rum sticking one out of each pocket for the private consumption of his +burning interior, saw him produce a bottle and uncork it or unscrew +and, applying its nozzle to his lips, take a good old delectable swig +out of it with a gurgling noise. The irrepressible Bloom, who also had +a shrewd suspicion that the old stager went out on a manœuvre after the +counterattraction in the shape of a female who however had disappeared +to all intents and purposes, could by straining just perceive him, when +duly refreshed by his rum puncheon exploit, gaping up at the piers and +girders of the Loop line rather out of his depth as of course it was +all radically altered since his last visit and greatly improved. Some +person or persons invisible directed him to the male urinal erected by +the cleansing committee all over the place for the purpose but after a +brief space of time during which silence reigned supreme the sailor, +evidently giving it a wide berth, eased himself closer at hand, the +noise of his bilgewater some little time subsequently splashing on the +ground where it apparently awoke a horse of the cabrank. A hoof scooped +anyway for new foothold after sleep and harness jingled. Slightly +disturbed in his sentrybox by the brazier of live coke the watcher of +the corporation stones who, though now broken down and fast breaking +up, was none other in stern reality than the Gumley aforesaid, now +practically on the parish rates, given the temporary job by Pat Tobin +in all human probability from dictates of humanity knowing him before +shifted about and shuffled in his box before composing his limbs again +in to the arms of Morpheus, a truly amazing piece of hard lines in its +most virulent form on a fellow most respectably connected and +familiarised with decent home comforts all his life who came in for a +cool £ 100 a year at one time which of course the doublebarrelled ass +proceeded to make general ducks and drakes of. And there he was at the +end of his tether after having often painted the town tolerably pink +without a beggarly stiver. He drank needless to be told and it pointed +only once more a moral when he might quite easily be in a large way of +business if—a big if, however—he had contrived to cure himself of his +particular partiality. + +All meantime were loudly lamenting the falling off in Irish shipping, +coastwise and foreign as well, which was all part and parcel of the +same thing. A Palgrave Murphy boat was put off the ways at Alexandra +basin, the only launch that year. Right enough the harbours were there +only no ships ever called. + +There were wrecks and wreckers, the keeper said, who was evidently _au +fait_. + +What he wanted to ascertain was why that ship ran bang against the only +rock in Galway bay when the Galway harbour scheme was mooted by a Mr +Worthington or some name like that, eh? Ask the then captain, he +advised them, how much palmoil the British government gave him for that +day’s work, Captain John Lever of the Lever Line. + +—Am I right, skipper? he queried of the sailor, now returning after his +private potation and the rest of his exertions. + +That worthy picking up the scent of the fagend of the song or words +growled in wouldbe music but with great vim some kind of chanty or +other in seconds or thirds. Mr Bloom’s sharp ears heard him then +expectorate the plug probably (which it was), so that he must have +lodged it for the time being in his fist while he did the drinking and +making water jobs and found it a bit sour after the liquid fire in +question. Anyhow in he rolled after his successful +libation-_cum_-potation, introducing an atmosphere of drink into the +_soirée_, boisterously trolling, like a veritable son of a seacook: + + —The biscuits was as hard as brass + And the beef as salt as Lot’s wife’s arse. + O, Johnny Lever! + Johnny Lever, O! + +After which effusion the redoubtable specimen duly arrived on the scene +and regaining his seat he sank rather than sat heavily on the form +provided. Skin-the-Goat, assuming he was he, evidently with an axe to +grind, was airing his grievances in a forcible-feeble philippic anent +the natural resources of Ireland or something of that sort which he +described in his lengthy dissertation as the richest country bar none +on the face of God’s earth, far and away superior to England, with coal +in large quantities, six million pounds worth of pork exported every +year, ten millions between butter and eggs and all the riches drained +out of it by England levying taxes on the poor people that paid through +the nose always and gobbling up the best meat in the market and a lot +more surplus steam in the same vein. Their conversation accordingly +became general and all agreed that that was a fact. You could grow any +mortal thing in Irish soil, he stated, and there was that colonel +Everard down there in Navan growing tobacco. Where would you find +anywhere the like of Irish bacon? But a day of reckoning, he stated +_crescendo_ with no uncertain voice, thoroughly monopolising all the +conversation, was in store for mighty England, despite her power of +pelf on account of her crimes. There would be a fall and the greatest +fall in history. The Germans and the Japs were going to have their +little lookin, he affirmed. The Boers were the beginning of the end. +Brummagem England was toppling already and her downfall would be +Ireland, her Achilles heel, which he explained to them about the +vulnerable point of Achilles, the Greek hero, a point his auditors at +once seized as he completely gripped their attention by showing the +tendon referred to on his boot. His advice to every Irishman was: stay +in the land of your birth and work for Ireland and live for Ireland. +Ireland, Parnell said, could not spare a single one of her sons. + +Silence all round marked the termination of his _finale_. The +impervious navigator heard these lurid tidings, undismayed. + +—Take a bit of doing, boss, retaliated that rough diamond palpably a +bit peeved in response to the foregoing truism. + +To which cold douche referring to downfall and so on the keeper +concurred but nevertheless held to his main view. + +—Who’s the best troops in the army? the grizzled old veteran irately +interrogated. And the best jumpers and racers? And the best admirals +and generals we’ve got? Tell me that. + +—The Irish, for choice, retorted the cabby like Campbell, facial +blemishes apart. + +—That’s right, the old tarpaulin corroborated. The Irish catholic +peasant. He’s the backbone of our empire. You know Jem Mullins? + +While allowing him his individual opinions as everyman the keeper added +he cared nothing for any empire, ours or his, and considered no +Irishman worthy of his salt that served it. Then they began to have a +few irascible words when it waxed hotter, both, needless to say, +appealing to the listeners who followed the passage of arms with +interest so long as they didn’t indulge in recriminations and come to +blows. + +From inside information extending over a series of years Mr Bloom was +rather inclined to poohpooh the suggestion as egregious balderdash for, +pending that consummation devoutly to be or not to be wished for, he +was fully cognisant of the fact that their neighbours across the +channel, unless they were much bigger fools than he took them for, +rather concealed their strength than the opposite. It was quite on a +par with the quixotic idea in certain quarters that in a hundred +million years the coal seam of the sister island would be played out +and if, as time went on, that turned out to be how the cat jumped all +he could personally say on the matter was that as a host of +contingencies, equally relevant to the issue, might occur ere then it +was highly advisable in the interim to try to make the most of both +countries even though poles apart. Another little interesting point, +the amours of whores and chummies, to put it in common parlance, +reminded him Irish soldiers had as often fought for England as against +her, more so, in fact. And now, why? So the scene between the pair of +them, the licensee of the place rumoured to be or have been Fitzharris, +the famous invincible, and the other, obviously bogus, reminded him +forcibly as being on all fours with the confidence trick, supposing, +that is, it was prearranged as the lookeron, a student of the human +soul if anything, the others seeing least of the game. And as for the +lessee or keeper, who probably wasn’t the other person at all, he (B.) +couldn’t help feeling and most properly it was better to give people +like that the goby unless you were a blithering idiot altogether and +refuse to have anything to do with them as a golden rule in private +life and their felonsetting, there always being the offchance of a +Dannyman coming forward and turning queen’s evidence or king’s now like +Denis or Peter Carey, an idea he utterly repudiated. Quite apart from +that he disliked those careers of wrongdoing and crime on principle. +Yet, though such criminal propensities had never been an inmate of his +bosom in any shape or form, he certainly did feel and no denying it +(while inwardly remaining what he was) a certain kind of admiration for +a man who had actually brandished a knife, cold steel, with the courage +of his political convictions (though, personally, he would never be a +party to any such thing), off the same bat as those love vendettas of +the south, have her or swing for her, when the husband frequently, +after some words passed between the two concerning her relations with +the other lucky mortal (he having had the pair watched), inflicted +fatal injuries on his adored one as a result of an alternative +postnuptial _liaison_ by plunging his knife into her, until it just +struck him that Fitz, nicknamed Skin-the-Goat, merely drove the car for +the actual perpetrators of the outrage and so was not, if he was +reliably informed, actually party to the ambush which, in point of +fact, was the plea some legal luminary saved his skin on. In any case +that was very ancient history by now and as for our friend, the pseudo +Skin-the-etcetera, he had transparently outlived his welcome. He ought +to have either died naturally or on the scaffold high. Like actresses, +always farewell positively last performance then come up smiling again. +Generous to a fault of course, temperamental, no economising or any +idea of the sort, always snapping at the bone for the shadow. So +similarly he had a very shrewd suspicion that Mr Johnny Lever got rid +of some £. s. d. in the course of his perambulations round the docks in +the congenial atmosphere of the _Old Ireland_ tavern, come back to Erin +and so on. Then as for the other he had heard not so long before the +same identical lingo as he told Stephen how he simply but effectually +silenced the offender. + +—He took umbrage at something or other, that muchinjured but on the +whole eventempered person declared, I let slip. He called me a jew and +in a heated fashion offensively. So I without deviating from plain +facts in the least told him his God, I mean Christ, was a jew too and +all his family like me though in reality I’m not. That was one for him. +A soft answer turns away wrath. He hadn’t a word to say for himself as +everyone saw. Am I not right? + +He turned a long you are wrong gaze on Stephen of timorous dark pride +at the soft impeachment with a glance also of entreaty for he seemed to +glean in a kind of a way that it wasn’t all exactly. + +—_Ex quibus_, Stephen mumbled in a noncommittal accent, their two or +four eyes conversing, _Christus_ or Bloom his name is or after all any +other, _secundum carnem_. + +—Of course, Mr B. proceeded to stipulate, you must look at both sides +of the question. It is hard to lay down any hard and fast rules as to +right and wrong but room for improvement all round there certainly is +though every country, they say, our own distressful included, has the +government it deserves. But with a little goodwill all round. It’s all +very fine to boast of mutual superiority but what about mutual +equality. I resent violence and intolerance in any shape or form. It +never reaches anything or stops anything. A revolution must come on the +due instalments plan. It’s a patent absurdity on the face of it to hate +people because they live round the corner and speak another vernacular, +in the next house so to speak. + +—Memorable bloody bridge battle and seven minutes’ war, Stephen +assented, between Skinner’s alley and Ormond market. + +Yes, Mr Bloom thoroughly agreed, entirely endorsing the remark, that +was overwhelmingly right. And the whole world was full of that sort of +thing. + +—You just took the words out of my mouth, he said. A hocuspocus of +conflicting evidence that candidly you couldn’t remotely... + +All those wretched quarrels, in his humble opinion, stirring up bad +blood, from some bump of combativeness or gland of some kind, +erroneously supposed to be about a punctilio of honour and a flag, were +very largely a question of the money question which was at the back of +everything, greed and jealousy, people never knowing when to stop. + +—They accuse, remarked he audibly. He turned away from the others, who +probably… and spoke nearer to, so as the others… in case they… + +—Jews, he softly imparted in an aside in Stephen’s ear, are accused of +ruining. Not a vestige of truth in it, I can safely say. History, would +you be surprised to learn, proves up to the hilt Spain decayed when the +inquisition hounded the jews out and England prospered when Cromwell, +an uncommonly able ruffian who in other respects has much to answer +for, imported them. Why? Because they are imbued with the proper +spirit. They are practical and are proved to be so. I don’t want to +indulge in any because you know the standard works on the subject and +then orthodox as you are. But in the economic, not touching religion, +domain the priest spells poverty. Spain again, you saw in the war, +compared with goahead America. Turks. It’s in the dogma. Because if +they didn’t believe they’d go straight to heaven when they die they’d +try to live better, at least so I think. That’s the juggle on which the +p.p.’s raise the wind on false pretences. I’m, he resumed with dramatic +force, as good an Irishman as that rude person I told you about at the +outset and I want to see everyone, concluded he, all creeds and classes +_pro rata_ having a comfortable tidysized income, in no niggard fashion +either, something in the neighbourhood of £ 300 per annum. That’s the +vital issue at stake and it’s feasible and would be provocative of +friendlier intercourse between man and man. At least that’s my idea for +what it’s worth. I call that patriotism. _Ubi patria_, as we learned a +smattering of in our classical days in _Alma Mater, vita bene_. Where +you can live well, the sense is, if you work. + +Over his untastable apology for a cup of coffee, listening to this +synopsis of things in general, Stephen stared at nothing in particular. +He could hear, of course, all kinds of words changing colour like those +crabs about Ringsend in the morning burrowing quickly into all colours +of different sorts of the same sand where they had a home somewhere +beneath or seemed to. Then he looked up and saw the eyes that said or +didn’t say the words the voice he heard said, if you work. + +—Count me out, he managed to remark, meaning work. + +The eyes were surprised at this observation because as he, the person +who owned them pro tem. observed or rather his voice speaking did, all +must work, have to, together. + +—I mean, of course, the other hastened to affirm, work in the widest +possible sense. Also literary labour not merely for the kudos of the +thing. Writing for the newspapers which is the readiest channel +nowadays. That’s work too. Important work. After all, from the little I +know of you, after all the money expended on your education you are +entitled to recoup yourself and command your price. You have every bit +as much right to live by your pen in pursuit of your philosophy as the +peasant has. What? You both belong to Ireland, the brain and the brawn. +Each is equally important. + +—You suspect, Stephen retorted with a sort of a half laugh, that I may +be important because I belong to the _faubourg Saint Patrice_ called +Ireland for short. + +—I would go a step farther, Mr Bloom insinuated. + +—But I suspect, Stephen interrupted, that Ireland must be important +because it belongs to me. + +—What belongs, queried Mr Bloom bending, fancying he was perhaps under +some misapprehension. Excuse me. Unfortunately, I didn’t catch the +latter portion. What was it you...? + +Stephen, patently crosstempered, repeated and shoved aside his mug of +coffee or whatever you like to call it none too politely, adding: + +—We can’t change the country. Let us change the subject. + +At this pertinent suggestion Mr Bloom, to change the subject, looked +down but in a quandary, as he couldn’t tell exactly what construction +to put on belongs to which sounded rather a far cry. The rebuke of some +kind was clearer than the other part. Needless to say the fumes of his +recent orgy spoke then with some asperity in a curious bitter way +foreign to his sober state. Probably the homelife to which Mr B +attached the utmost importance had not been all that was needful or he +hadn’t been familiarised with the right sort of people. With a touch of +fear for the young man beside him whom he furtively scrutinised with an +air of some consternation remembering he had just come back from Paris, +the eyes more especially reminding him forcibly of father and sister, +failing to throw much light on the subject, however, he brought to mind +instances of cultured fellows that promised so brilliantly nipped in +the bud of premature decay and nobody to blame but themselves. For +instance there was the case of O’Callaghan, for one, the halfcrazy +faddist, respectably connected though of inadequate means, with his mad +vagaries among whose other gay doings when rotto and making himself a +nuisance to everybody all round he was in the habit of ostentatiously +sporting in public a suit of brown paper (a fact). And then the usual +_dénouement_ after the fun had gone on fast and furious he got landed +into hot water and had to be spirited away by a few friends, after a +strong hint to a blind horse from John Mallon of Lower Castle Yard, so +as not to be made amenable under section two of the criminal law +amendment act, certain names of those subpœnaed being handed in but not +divulged for reasons which will occur to anyone with a pick of brains. +Briefly, putting two and two together, six sixteen which he pointedly +turned a deaf ear to, Antonio and so forth, jockeys and esthetes and +the tattoo which was all the go in the seventies or thereabouts even in +the house of lords because early in life the occupant of the throne, +then heir apparent, the other members of the upper ten and other high +personages simply following in the footsteps of the head of the state, +he reflected about the errors of notorieties and crowned heads running +counter to morality such as the Cornwall case a number of years before +under their veneer in a way scarcely intended by nature, a thing good +Mrs Grundy, as the law stands, was terribly down on though not for the +reason they thought they were probably whatever it was except women +chiefly who were always fiddling more or less at one another it being +largely a matter of dress and all the rest of it. Ladies who like +distinctive underclothing should, and every welltailored man must, +trying to make the gap wider between them by innuendo and give more of +a genuine filip to acts of impropriety between the two, she unbuttoned +his and then he untied her, mind the pin, whereas savages in the +cannibal islands, say, at ninety degrees in the shade not caring a +continental. However, reverting to the original, there were on the +other hand others who had forced their way to the top from the lowest +rung by the aid of their bootstraps. Sheer force of natural genius, +that. With brains, sir. + +For which and further reasons he felt it was his interest and duty even +to wait on and profit by the unlookedfor occasion though why he could +not exactly tell being as it was already several shillings to the bad +having in fact let himself in for it. Still to cultivate the +acquaintance of someone of no uncommon calibre who could provide food +for reflection would amply repay any small. Intellectual stimulation, +as such, was, he felt, from time to time a firstrate tonic for the +mind. Added to which was the coincidence of meeting, discussion, dance, +row, old salt of the here today and gone tomorrow type, night loafers, +the whole galaxy of events, all went to make up a miniature cameo of +the world we live in especially as the lives of the submerged tenth, +viz. coalminers, divers, scavengers etc., were very much under the +microscope lately. To improve the shining hour he wondered whether he +might meet with anything approaching the same luck as Mr Philip Beaufoy +if taken down in writing suppose he were to pen something out of the +common groove (as he fully intended doing) at the rate of one guinea +per column. _My Experiences_, let us say, _in a Cabman’s Shelter_. + +The pink edition extra sporting of the _Telegraph_ tell a graphic lie +lay, as luck would have it, beside his elbow and as he was just +puzzling again, far from satisfied, over a country belonging to him and +the preceding rebus the vessel came from Bridgwater and the postcard +was addressed A. Boudin find the captain’s age, his eyes went aimlessly +over the respective captions which came under his special province the +allembracing give us this day our daily press. First he got a bit of a +start but it turned out to be only something about somebody named H. du +Boyes, agent for typewriters or something like that. Great battle, +Tokio. Lovemaking in Irish, £ 200 damages. Gordon Bennett. Emigration +Swindle. Letter from His Grace. William ✠. Ascot meeting, the Gold Cup. +Victory of outsider _Throwaway_ recalls Derby of ’92 when Capt. +Marshall’s dark horse _Sir Hugo_ captured the blue ribband at long +odds. New York disaster. Thousand lives lost. Foot and Mouth. Funeral +of the late Mr Patrick Dignam. + +So to change the subject he read about Dignam R. I. P. which, he +reflected, was anything but a gay sendoff. Or a change of address +anyway. + +—_This morning_ (Hynes put it in of course) _the remains of the late Mr +Patrick Dignam were removed from his residence, no 9 Newbridge Avenue, +Sandymount, for interment in Glasnevin. The deceased gentleman was a +most popular and genial personality in city life and his demise after a +brief illness came as a great shock to citizens of all classes by whom +he is deeply regretted. The obsequies, at which many friends of the +deceased were present, were carried out_ (certainly Hynes wrote it with +a nudge from Corny) _by Messrs H. J. O’Neill and Son, 164 North Strand +Road. The mourners included: Patk. Dignam (son), Bernard Corrigan +(brother-in-law), Jno. Henry Menton, solr, Martin Cunningham, John +Power, eatondph 1/8 ador dorador douradora_ (must be where he called +Monks the dayfather about Keyes’s ad) _Thomas Kernan, Simon Dedalus, +Stephen Dedalus B. A., Edw. J. Lambert, Cornelius T. Kelleher, Joseph +M’C Hynes, L. Boom, C P M’Coy,—M’Intosh and several others_. + +Nettled not a little by L. _Boom_ (as it incorrectly stated) and the +line of bitched type but tickled to death simultaneously by C. P. M’Coy +and Stephen Dedalus B. A. who were conspicuous, needless to say, by +their total absence (to say nothing of M’Intosh) L. Boom pointed it out +to his companion B. A. engaged in stifling another yawn, half +nervousness, not forgetting the usual crop of nonsensical howlers of +misprints. + +—Is that first epistle to the Hebrews, he asked as soon as his bottom +jaw would let him, in? Text: open thy mouth and put thy foot in it. + +—It is. Really, Mr Bloom said (though first he fancied he alluded to +the archbishop till he added about foot and mouth with which there +could be no possible connection) overjoyed to set his mind at rest and +a bit flabbergasted at Myles Crawford’s after all managing to. There. + +While the other was reading it on page two Boom (to give him for the +nonce his new misnomer) whiled away a few odd leisure moments in fits +and starts with the account of the third event at Ascot on page three, +his side. Value 1000 sovs with 3000 sovs in specie added. For entire +colts and fillies. Mr F. Alexander’s _Throwaway_, b. h. by +_Rightaway-Thrale_, 5 yrs, 9 st 4 lbs (W. Lane) 1. Lord Howard de +Walden’s _Zinfandel_ (M. Cannon) 2. Mr W. Bass’s _Sceptre_ 3. Betting 5 +to 4 on _Zinfandel_, 20 to 1 _Throwaway_ (off). _Sceptre_ a shade +heavier. It was anybody’s race then the rank outsider drew to the fore, +got long lead, beating Lord Howard de Walden’s chestnut colt and Mr W. +Bass’s bay filly Sceptre on a 2 1/2 mile course. Winner trained by +Braime so that Lenehan’s version of the business was all pure buncombe. +Secured the verdict cleverly by a length. 1000 sovs with 3000 in +specie. Also ran: J de Bremond’s (French horse Bantam Lyons was +anxiously inquiring after not in yet but expected any minute) _Maximum +II_. Different ways of bringing off a coup. Lovemaking damages. Though +that halfbaked Lyons ran off at a tangent in his impetuosity to get +left. Of course gambling eminently lent itself to that sort of thing +though as the event turned out the poor fool hadn’t much reason to +congratulate himself on his pick, the forlorn hope. Guesswork it +reduced itself to eventually. + +—There was every indication they would arrive at that, he, Bloom, said. + +—Who? the other, whose hand by the way was hurt, said. + +One morning you would open the paper, the cabman affirmed, and read: +_Return of Parnell_. He bet them what they liked. A Dublin fusilier was +in that shelter one night and said he saw him in South Africa. Pride it +was killed him. He ought to have done away with himself or lain low for +a time after committee room no 15 until he was his old self again with +no-one to point a finger at him. Then they would all to a man have gone +down on their marrowbones to him to come back when he had recovered his +senses. Dead he wasn’t. Simply absconded somewhere. The coffin they +brought over was full of stones. He changed his name to De Wet, the +Boer general. He made a mistake to fight the priests. And so forth and +so on. + +All the same Bloom (properly so dubbed) was rather surprised at their +memories for in nine cases out of ten it was a case of tarbarrels and +not singly but in their thousands and then complete oblivion because it +was twenty odd years. Highly unlikely of course there was even a shadow +of truth in the stones and, even supposing, he thought a return highly +inadvisable, all things considered. Something evidently riled them in +his death. Either he petered out too tamely of acute pneumonia just +when his various different political arrangements were nearing +completion or whether it transpired he owed his death to his having +neglected to change his boots and clothes after a wetting when a cold +resulted and failing to consult a specialist he being confined to his +room till he eventually died of it amid widespread regret before a +fortnight was at an end or quite possibly they were distressed to find +the job was taken out of their hands. Of course nobody being acquainted +with his movements even before there was absolutely no clue as to his +whereabouts which were decidedly of the _Alice, where art thou_ order +even prior to his starting to go under several aliases such as Fox and +Stewart so the remark which emanated from friend cabby might be within +the bounds of possibility. Naturally then it would prey on his mind as +a born leader of men which undoubtedly he was and a commanding figure, +a sixfooter or at any rate five feet ten or eleven in his stockinged +feet, whereas Messrs So and So who, though they weren’t even a patch on +the former man, ruled the roost after their redeeming features were +very few and far between. It certainly pointed a moral, the idol with +feet of clay, and then seventytwo of his trusty henchmen rounding on +him with mutual mudslinging. And the identical same with murderers. You +had to come back. That haunting sense kind of drew you. To show the +understudy in the title _rôle_ how to. He saw him once on the +auspicious occasion when they broke up the type in the _Insuppressible_ +or was it _United Ireland_, a privilege he keenly appreciated, and, in +point of fact, handed him his silk hat when it was knocked off and he +said _Thank you_, excited as he undoubtedly was under his frigid +exterior notwithstanding the little misadventure mentioned between the +cup and the lip: what’s bred in the bone. Still as regards return. You +were a lucky dog if they didn’t set the terrier at you directly you got +back. Then a lot of shillyshally usually followed, Tom for and Dick and +Harry against. And then, number one, you came up against the man in +possession and had to produce your credentials like the claimant in the +Tichborne case, Roger Charles Tichborne, _Bella_ was the boat’s name to +the best of his recollection he, the heir, went down in as the evidence +went to show and there was a tattoo mark too in Indian ink, lord Bellew +was it, as he might very easily have picked up the details from some +pal on board ship and then, when got up to tally with the description +given, introduce himself with: _Excuse me, my name is So and So_ or +some such commonplace remark. A more prudent course, as Bloom said to +the not over effusive, in fact like the distinguished personage under +discussion beside him, would have been to sound the lie of the land +first. + +—That bitch, that English whore, did for him, the shebeen proprietor +commented. She put the first nail in his coffin. + +—Fine lump of a woman all the same, the _soi-disant_ townclerk Henry +Campbell remarked, and plenty of her. She loosened many a man’s thighs. +I seen her picture in a barber’s. The husband was a captain or an +officer. + +—Ay, Skin-the-Goat amusingly added, he was and a cottonball one. + +This gratuitous contribution of a humorous character occasioned a fair +amount of laughter among his _entourage_. As regards Bloom he, without +the faintest suspicion of a smile, merely gazed in the direction of the +door and reflected upon the historic story which had aroused +extraordinary interest at the time when the facts, to make matters +worse, were made public with the usual affectionate letters that passed +between them full of sweet nothings. First it was strictly Platonic +till nature intervened and an attachment sprang up between them till +bit by bit matters came to a climax and the matter became the talk of +the town till the staggering blow came as a welcome intelligence to not +a few evildisposed, however, who were resolved upon encompassing his +downfall though the thing was public property all along though not to +anything like the sensational extent that it subsequently blossomed +into. Since their names were coupled, though, since he was her declared +favourite, where was the particular necessity to proclaim it to the +rank and file from the housetops, the fact, namely, that he had shared +her bedroom which came out in the witnessbox on oath when a thrill went +through the packed court literally electrifying everybody in the shape +of witnesses swearing to having witnessed him on such and such a +particular date in the act of scrambling out of an upstairs apartment +with the assistance of a ladder in night apparel, having gained +admittance in the same fashion, a fact the weeklies, addicted to the +lubric a little, simply coined shoals of money out of. Whereas the +simple fact of the case was it was simply a case of the husband not +being up to the scratch, with nothing in common between them beyond the +name, and then a real man arriving on the scene, strong to the verge of +weakness, falling a victim to her siren charms and forgetting home +ties, the usual sequel, to bask in the loved one’s smiles. The eternal +question of the life connubial, needless to say, cropped up. Can real +love, supposing there happens to be another chap in the case, exist +between married folk? Poser. Though it was no concern of theirs +absolutely if he regarded her with affection, carried away by a wave of +folly. A magnificent specimen of manhood he was truly augmented +obviously by gifts of a high order, as compared with the other military +supernumerary that is (who was just the usual everyday _farewell, my +gallant captain_ kind of an individual in the light dragoons, the 18th +hussars to be accurate) and inflammable doubtless (the fallen leader, +that is, not the other) in his own peculiar way which she of course, +woman, quickly perceived as highly likely to carve his way to fame +which he almost bid fair to do till the priests and ministers of the +gospel as a whole, his erstwhile staunch adherents, and his beloved +evicted tenants for whom he had done yeoman service in the rural parts +of the country by taking up the cudgels on their behalf in a way that +exceeded their most sanguine expectations, very effectually cooked his +matrimonial goose, thereby heaping coals of fire on his head much in +the same way as the fabled ass’s kick. Looking back now in a +retrospective kind of arrangement all seemed a kind of dream. And then +coming back was the worst thing you ever did because it went without +saying you would feel out of place as things always moved with the +times. Why, as he reflected, Irishtown strand, a locality he had not +been in for quite a number of years looked different somehow since, as +it happened, he went to reside on the north side. North or south, +however, it was just the wellknown case of hot passion, pure and +simple, upsetting the applecart with a vengeance and just bore out the +very thing he was saying as she also was Spanish or half so, types that +wouldn’t do things by halves, passionate abandon of the south, casting +every shred of decency to the winds. + +—Just bears out what I was saying, he, with glowing bosom said to +Stephen, about blood and the sun. And, if I don’t greatly mistake she +was Spanish too. + +—The king of Spain’s daughter, Stephen answered, adding something or +other rather muddled about farewell and adieu to you Spanish onions and +the first land called the Deadman and from Ramhead to Scilly was so and +so many. + +—Was she? Bloom ejaculated, surprised though not astonished by any +means, I never heard that rumour before. Possible, especially there, it +was as she lived there. So, Spain. + +Carefully avoiding a book in his pocket _Sweets of_, which reminded him +by the by of that Capel street library book out of date, he took out +his pocketbook and, turning over the various contents it contained +rapidly finally he. + +—Do you consider, by the by, he said, thoughtfully selecting a faded +photo which he laid on the table, that a Spanish type? + +Stephen, obviously addressed, looked down on the photo showing a large +sized lady with her fleshy charms on evidence in an open fashion as she +was in the full bloom of womanhood in evening dress cut ostentatiously +low for the occasion to give a liberal display of bosom, with more than +vision of breasts, her full lips parted and some perfect teeth, +standing near, ostensibly with gravity, a piano on the rest of which +was _In Old Madrid_, a ballad, pretty in its way, which was then all +the vogue. Her (the lady’s) eyes, dark, large, looked at Stephen, about +to smile about something to be admired, Lafayette of Westmoreland +street, Dublin’s premier photographic artist, being responsible for the +esthetic execution. + +—Mrs Bloom, my wife the _prima donna_ Madam Marion Tweedy, Bloom +indicated. Taken a few years since. In or about ninety six. Very like +her then. + +Beside the young man he looked also at the photo of the lady now his +legal wife who, he intimated, was the accomplished daughter of Major +Brian Tweedy and displayed at an early age remarkable proficiency as a +singer having even made her bow to the public when her years numbered +barely sweet sixteen. As for the face it was a speaking likeness in +expression but it did not do justice to her figure which came in for a +lot of notice usually and which did not come out to the best advantage +in that getup. She could without difficulty, he said, have posed for +the ensemble, not to dwell on certain opulent curves of the. He dwelt, +being a bit of an artist in his spare time, on the female form in +general developmentally because, as it so happened, no later than that +afternoon he had seen those Grecian statues, perfectly developed as +works of art, in the National Museum. Marble could give the original, +shoulders, back, all the symmetry, all the rest. Yes, puritanisme, it +does though, Saint Joseph’s sovereign thievery alors (Bandez!) Figne +toi trop. Whereas no photo could because it simply wasn’t art in a +word. + +The spirit moving him he would much have liked to follow Jack Tar’s +good example and leave the likeness there for a very few minutes to +speak for itself on the plea he so that the other could drink in the +beauty for himself, her stage presence being, frankly, a treat in +itself which the camera could not at all do justice to. But it was +scarcely professional etiquette so. Though it was a warm pleasant sort +of a night now yet wonderfully cool for the season considering, for +sunshine after storm. And he did feel a kind of need there and then to +follow suit like a kind of inward voice and satisfy a possible need by +moving a motion. Nevertheless he sat tight just viewing the slightly +soiled photo creased by opulent curves, none the worse for wear +however, and looked away thoughtfully with the intention of not further +increasing the other’s possible embarrassment while gauging her +symmetry of heaving _embonpoint_. In fact the slight soiling was only +an added charm like the case of linen slightly soiled, good as new, +much better in fact with the starch out. Suppose she was gone when he? +I looked for the lamp which she told me came into his mind but merely +as a passing fancy of his because he then recollected the morning +littered bed etcetera and the book about Ruby with met him pike hoses +(_sic_) in it which must have fell down sufficiently appropriately +beside the domestic chamberpot with apologies to Lindley Murray. + +The vicinity of the young man he certainly relished, educated, +_distingué_ and impulsive into the bargain, far and away the pick of +the bunch though you wouldn’t think he had it in him yet you would. +Besides he said the picture was handsome which, say what you like, it +was though at the moment she was distinctly stouter. And why not? An +awful lot of makebelieve went on about that sort of thing involving a +lifelong slur with the usual splash page of gutterpress about the same +old matrimonial tangle alleging misconduct with professional golfer or +the newest stage favourite instead of being honest and aboveboard about +the whole business. How they were fated to meet and an attachment +sprang up between the two so that their names were coupled in the +public eye was told in court with letters containing the habitual mushy +and compromising expressions leaving no loophole to show that they +openly cohabited two or three times a week at some wellknown seaside +hotel and relations, when the thing ran its normal course, became in +due course intimate. Then the decree _nisi_ and the King’s proctor +tries to show cause why and, he failing to quash it, _nisi_ was made +absolute. But as for that the two misdemeanants, wrapped up as they +largely were in one another, could safely afford to ignore it as they +very largely did till the matter was put in the hands of a solicitor +who filed a petition for the party wronged in due course. He, B, +enjoyed the distinction of being close to Erin’s uncrowned king in the +flesh when the thing occurred on the historic _fracas_ when the fallen +leader’s, who notoriously stuck to his guns to the last drop even when +clothed in the mantle of adultery, (leader’s) trusty henchmen to the +number of ten or a dozen or possibly even more than that penetrated +into the printing works of the _Insuppressible_ or no it was _United +Ireland_ (a by no means by the by appropriate appellative) and broke up +the typecases with hammers or something like that all on account of +some scurrilous effusions from the facile pens of the O’Brienite +scribes at the usual mudslinging occupation reflecting on the erstwhile +tribune’s private morals. Though palpably a radically altered man he +was still a commanding figure though carelessly garbed as usual with +that look of settled purpose which went a long way with the +shillyshallyers till they discovered to their vast discomfiture that +their idol had feet of clay after placing him upon a pedestal which +she, however, was the first to perceive. As those were particularly hot +times in the general hullaballoo Bloom sustained a minor injury from a +nasty prod of some chap’s elbow in the crowd that of course congregated +lodging some place about the pit of the stomach, fortunately not of a +grave character. His hat (Parnell’s) a silk one was inadvertently +knocked off and, as a matter of strict history, Bloom was the man who +picked it up in the crush after witnessing the occurrence meaning to +return it to him (and return it to him he did with the utmost celerity) +who panting and hatless and whose thoughts were miles away from his hat +at the time all the same being a gentleman born with a stake in the +country he, as a matter of fact, having gone into it more for the kudos +of the thing than anything else, what’s bred in the bone instilled into +him in infancy at his mother’s knee in the shape of knowing what good +form was came out at once because he turned round to the donor and +thanked him with perfect _aplomb_, saying: _Thank you, sir_, though in +a very different tone of voice from the ornament of the legal +profession whose headgear Bloom also set to rights earlier in the +course of the day, history repeating itself with a difference, after +the burial of a mutual friend when they had left him alone in his glory +after the grim task of having committed his remains to the grave. + +On the other hand what incensed him more inwardly was the blatant jokes +of the cabman and so on who passed it all off as a jest, laughing +immoderately, pretending to understand everything, the why and the +wherefore, and in reality not knowing their own minds, it being a case +for the two parties themselves unless it ensued that the legitimate +husband happened to be a party to it owing to some anonymous letter +from the usual boy Jones, who happened to come across them at the +crucial moment in a loving position locked in one another’s arms, +drawing attention to their illicit proceedings and leading up to a +domestic rumpus and the erring fair one begging forgiveness of her lord +and master upon her knees and promising to sever the connection and not +receive his visits any more if only the aggrieved husband would +overlook the matter and let bygones be bygones with tears in her eyes +though possibly with her tongue in her fair cheek at the same time as +quite possibly there were several others. He personally, being of a +sceptical bias, believed and didn’t make the smallest bones about +saying so either that man or men in the plural were always hanging +around on the waiting list about a lady, even supposing she was the +best wife in the world and they got on fairly well together for the +sake of argument, when, neglecting her duties, she chose to be tired of +wedded life and was on for a little flutter in polite debauchery to +press their attentions on her with improper intent, the upshot being +that her affections centred on another, the cause of many _liaisons_ +between still attractive married women getting on for fair and forty +and younger men, no doubt as several famous cases of feminine +infatuation proved up to the hilt. + +It was a thousand pities a young fellow, blessed with an allowance of +brains as his neighbour obviously was, should waste his valuable time +with profligate women who might present him with a nice dose to last +him his lifetime. In the nature of single blessedness he would one day +take unto himself a wife when Miss Right came on the scene but in the +interim ladies’ society was a _conditio sine qua non_ though he had the +gravest possible doubts, not that he wanted in the smallest to pump +Stephen about Miss Ferguson (who was very possibly the particular +lodestar who brought him down to Irishtown so early in the morning), as +to whether he would find much satisfaction basking in the boy and girl +courtship idea and the company of smirking misses without a penny to +their names bi or triweekly with the orthodox preliminary canter of +complimentplaying and walking out leading up to fond lovers’ ways and +flowers and chocs. To think of him house and homeless, rooked by some +landlady worse than any stepmother, was really too bad at his age. The +queer suddenly things he popped out with attracted the elder man who +was several years the other’s senior or like his father but something +substantial he certainly ought to eat even were it only an eggflip made +on unadulterated maternal nutriment or, failing that, the homely Humpty +Dumpty boiled. + +—At what o’clock did you dine? he questioned of the slim form and tired +though unwrinkled face. + +—Some time yesterday, Stephen said. + +—Yesterday! exclaimed Bloom till he remembered it was already tomorrow +Friday. Ah, you mean it’s after twelve! + +—The day before yesterday, Stephen said, improving on himself. + +Literally astounded at this piece of intelligence Bloom reflected. +Though they didn’t see eye to eye in everything a certain analogy there +somehow was as if both their minds were travelling, so to speak, in the +one train of thought. At his age when dabbling in politics roughly some +score of years previously when he had been a _quasi_ aspirant to +parliamentary honours in the Buckshot Foster days he too recollected in +retrospect (which was a source of keen satisfaction in itself) he had a +sneaking regard for those same ultra ideas. For instance when the +evicted tenants question, then at its first inception, bulked largely +in people’s mind though, it goes without saying, not contributing a +copper or pinning his faith absolutely to its dictums, some of which +wouldn’t exactly hold water, he at the outset in principle at all +events was in thorough sympathy with peasant possession as voicing the +trend of modern opinion (a partiality, however, which, realising his +mistake, he was subsequently partially cured of) and even was twitted +with going a step farther than Michael Davitt in the striking views he +at one time inculcated as a backtothelander, which was one reason he +strongly resented the innuendo put upon him in so barefaced a fashion +by our friend at the gathering of the clans in Barney Kiernan’s so that +he, though often considerably misunderstood and the least pugnacious of +mortals, be it repeated, departed from his customary habit to give him +(metaphorically) one in the gizzard though, so far as politics +themselves were concerned, he was only too conscious of the casualties +invariably resulting from propaganda and displays of mutual animosity +and the misery and suffering it entailed as a foregone conclusion on +fine young fellows, chiefly, destruction of the fittest, in a word. + +Anyhow upon weighing up the pros and cons, getting on for one, as it +was, it was high time to be retiring for the night. The crux was it was +a bit risky to bring him home as eventualities might possibly ensue +(somebody having a temper of her own sometimes) and spoil the hash +altogether as on the night he misguidedly brought home a dog (breed +unknown) with a lame paw (not that the cases were either identical or +the reverse though he had hurt his hand too) to Ontario Terrace as he +very distinctly remembered, having been there, so to speak. On the +other hand it was altogether far and away too late for the Sandymount +or Sandycove suggestion so that he was in some perplexity as to which +of the two alternatives. Everything pointed to the fact that it behoved +him to avail himself to the full of the opportunity, all things +considered. His initial impression was he was a shade standoffish or +not over effusive but it grew on him someway. For one thing he mightn’t +what you call jump at the idea, if approached, and what mostly worried +him was he didn’t know how to lead up to it or word it exactly, +supposing he did entertain the proposal, as it would afford him very +great personal pleasure if he would allow him to help to put coin in +his way or some wardrobe, if found suitable. At all events he wound up +by concluding, eschewing for the nonce hidebound precedent, a cup of +Epps’s cocoa and a shakedown for the night plus the use of a rug or two +and overcoat doubled into a pillow at least he would be in safe hands +and as warm as a toast on a trivet he failed to perceive any very vast +amount of harm in that always with the proviso no rumpus of any sort +was kicked up. A move had to be made because that merry old soul, the +grasswidower in question who appeared to be glued to the spot, didn’t +appear in any particular hurry to wend his way home to his dearly +beloved Queenstown and it was highly likely some sponger’s bawdyhouse +of retired beauties where age was no bar off Sheriff street lower would +be the best clue to that equivocal character’s whereabouts for a few +days to come, alternately racking their feelings (the mermaids’) with +sixchamber revolver anecdotes verging on the tropical calculated to +freeze the marrow of anybody’s bones and mauling their largesized +charms betweenwhiles with rough and tumble gusto to the accompaniment +of large potations of potheen and the usual blarney about himself for +as to who he in reality was let x equal my right name and address, as +Mr Algebra remarks _passim_. At the same time he inwardly chuckled over +his gentle repartee to the blood and ouns champion about his god being +a jew. People could put up with being bitten by a wolf but what +properly riled them was a bite from a sheep. The most vulnerable point +too of tender Achilles. Your god was a jew. Because mostly they +appeared to imagine he came from Carrick-on-Shannon or somewhereabouts +in the county Sligo. + +—I propose, our hero eventually suggested after mature reflection while +prudently pocketing her photo, as it’s rather stuffy here you just come +home with me and talk things over. My diggings are quite close in the +vicinity. You can’t drink that stuff. Do you like cocoa? Wait. I’ll +just pay this lot. + +The best plan clearly being to clear out, the remainder being plain +sailing, he beckoned, while prudently pocketing the photo, to the +keeper of the shanty who didn’t seem to. + +—Yes, that’s the best, he assured Stephen to whom for the matter of +that Brazen Head or him or anywhere else was all more or less. + +All kinds of Utopian plans were flashing through his (B’s) busy brain, +education (the genuine article), literature, journalism, prize titbits, +up to date billing, concert tours in English watering resorts packed +with hydros and seaside theatres, turning money away, duets in Italian +with the accent perfectly true to nature and a quantity of other +things, no necessity, of course, to tell the world and his wife from +the housetops about it, and a slice of luck. An opening was all was +wanted. Because he more than suspected he had his father’s voice to +bank his hopes on which it was quite on the cards he had so it would be +just as well, by the way no harm, to trail the conversation in the +direction of that particular red herring just to. + +The cabby read out of the paper he had got hold of that the former +viceroy, earl Cadogan, had presided at the cabdrivers’ association +dinner in London somewhere. Silence with a yawn or two accompanied this +thrilling announcement. Then the old specimen in the corner who +appeared to have some spark of vitality left read out that sir Anthony +MacDonnell had left Euston for the chief secretary’s lodge or words to +that effect. To which absorbing piece of intelligence echo answered +why. + +—Give us a squint at that literature, grandfather, the ancient mariner +put in, manifesting some natural impatience. + +—And welcome, answered the elderly party thus addressed. + +The sailor lugged out from a case he had a pair of greenish goggles +which he very slowly hooked over his nose and both ears. + +—Are you bad in the eyes? the sympathetic personage like the townclerk +queried. + +—Why, answered the seafarer with the tartan beard, who seemingly was a +bit of a literary cove in his own small way, staring out of seagreen +portholes as you might well describe them as, I uses goggles reading. +Sand in the Red Sea done that. One time I could read a book in the +dark, manner of speaking. _The Arabian Nights Entertainment_ was my +favourite and _Red as a Rose is She._ + +Hereupon he pawed the journal open and pored upon Lord only knows what, +found drowned or the exploits of King Willow, Iremonger having made a +hundred and something second wicket not out for Notts, during which +time (completely regardless of Ire) the keeper was intensely occupied +loosening an apparently new or secondhand boot which manifestly pinched +him as he muttered against whoever it was sold it, all of them who were +sufficiently awake enough to be picked out by their facial expressions, +that is to say, either simply looking on glumly or passing a trivial +remark. + +To cut a long story short Bloom, grasping the situation, was the first +to rise from his seat so as not to outstay their welcome having first +and foremost, being as good as his word that he would foot the bill for +the occasion, taken the wise precaution to unobtrusively motion to mine +host as a parting shot a scarcely perceptible sign when the others were +not looking to the effect that the amount due was forthcoming, making a +grand total of fourpence (the amount he deposited unobtrusively in four +coppers, literally the last of the Mohicans), he having previously +spotted on the printed pricelist for all who ran to read opposite him +in unmistakable figures, coffee 2d, confectionery do, and honestly well +worth twice the money once in a way, as Wetherup used to remark. + +—Come, he counselled to close the _séance_. + +Seeing that the ruse worked and the coast was clear they left the +shelter or shanty together and the _élite_ society of oilskin and +company whom nothing short of an earthquake would move out of their +_dolce far niente_. Stephen, who confessed to still feeling poorly and +fagged out, paused at the, for a moment, the door. + +—One thing I never understood, he said to be original on the spur of +the moment. Why they put tables upside down at night, I mean chairs +upside down, on the tables in cafés. To which impromptu the +neverfailing Bloom replied without a moment’s hesitation, saying +straight off: + +—To sweep the floor in the morning. + +So saying he skipped around, nimbly considering, frankly at the same +time apologetic to get on his companion’s right, a habit of his, by the +bye, his right side being, in classical idiom, his tender Achilles. The +night air was certainly now a treat to breathe though Stephen was a bit +weak on his pins. + +—It will (the air) do you good, Bloom said, meaning also the walk, in a +moment. The only thing is to walk then you’ll feel a different man. +Come. It’s not far. Lean on me. + +Accordingly he passed his left arm in Stephen’s right and led him on +accordingly. + +—Yes, Stephen said uncertainly because he thought he felt a strange +kind of flesh of a different man approach him, sinewless and wobbly and +all that. + +Anyhow they passed the sentrybox with stones, brazier etc. where the +municipal supernumerary, ex Gumley, was still to all intents and +purposes wrapped in the arms of Murphy, as the adage has it, dreaming +of fresh fields and pastures new. And _apropos_ of coffin of stones the +analogy was not at all bad as it was in fact a stoning to death on the +part of seventytwo out of eighty odd constituencies that ratted at the +time of the split and chiefly the belauded peasant class, probably the +selfsame evicted tenants he had put in their holdings. + +So they turned on to chatting about music, a form of art for which +Bloom, as a pure amateur, possessed the greatest love, as they made +tracks arm in arm across Beresford place. Wagnerian music, though +confessedly grand in its way, was a bit too heavy for Bloom and hard to +follow at the first go-off but the music of Mercadante’s _Huguenots_, +Meyerbeer’s _Seven Last Words on the Cross_ and Mozart’s _Twelfth Mass_ +he simply revelled in, the _Gloria_ in that being, to his mind, the +acme of first class music as such, literally knocking everything else +into a cocked hat. He infinitely preferred the sacred music of the +catholic church to anything the opposite shop could offer in that line +such as those Moody and Sankey hymns or _Bid me to live and I will live +thy protestant to be_. He also yielded to none in his admiration of +Rossini’s _Stabat Mater_, a work simply abounding in immortal numbers, +in which his wife, Madam Marion Tweedy, made a hit, a veritable +sensation, he might safely say, greatly adding to her other laurels and +putting the others totally in the shade, in the jesuit fathers’ church +in upper Gardiner street, the sacred edifice being thronged to the +doors to hear her with virtuosos, or _virtuosi_ rather. There was the +unanimous opinion that there was none to come up to her and suffice it +to say in a place of worship for music of a sacred character there was +a generally voiced desire for an encore. On the whole though favouring +preferably light opera of the _Don Giovanni_ description and _Martha_, +a gem in its line, he had a _penchant_, though with only a surface +knowledge, for the severe classical school such as Mendelssohn. And +talking of that, taking it for granted he knew all about the old +favourites, he mentioned _par excellence_ Lionel’s air in _Martha, +M’appari_, which, curiously enough, he had heard or overheard, to be +more accurate, on yesterday, a privilege he keenly appreciated, from +the lips of Stephen’s respected father, sung to perfection, a study of +the number, in fact, which made all the others take a back seat. +Stephen, in reply to a politely put query, said he didn’t sing it but +launched out into praises of Shakespeare’s songs, at least of in or +about that period, the lutenist Dowland who lived in Fetter lane near +Gerard the herbalist, who _anno ludendo hausi, Doulandus_, an +instrument he was contemplating purchasing from Mr Arnold Dolmetsch, +whom B. did not quite recall though the name certainly sounded +familiar, for sixtyfive guineas and Farnaby and son with their _dux_ +and _comes_ conceits and Byrd (William) who played the virginals, he +said, in the Queen’s chapel or anywhere else he found them and one +Tomkins who made toys or airs and John Bull. + +On the roadway which they were approaching whilst still speaking beyond +the swingchains a horse, dragging a sweeper, paced on the paven ground, +brushing a long swathe of mire up so that with the noise Bloom was not +perfectly certain whether he had caught aright the allusion to +sixtyfive guineas and John Bull. He inquired if it was John Bull the +political celebrity of that ilk, as it struck him, the two identical +names, as a striking coincidence. + +By the chains the horse slowly swerved to turn, which perceiving, +Bloom, who was keeping a sharp lookout as usual, plucked the other’s +sleeve gently, jocosely remarking: + +—Our lives are in peril tonight. Beware of the steamroller. + +They thereupon stopped. Bloom looked at the head of a horse not worth +anything like sixtyfive guineas, suddenly in evidence in the dark quite +near so that it seemed new, a different grouping of bones and even +flesh because palpably it was a fourwalker, a hipshaker, a +blackbuttocker, a taildangler, a headhanger putting his hind foot +foremost the while the lord of his creation sat on the perch, busy with +his thoughts. But such a good poor brute he was sorry he hadn’t a lump +of sugar but, as he wisely reflected, you could scarcely be prepared +for every emergency that might crop up. He was just a big nervous +foolish noodly kind of a horse, without a second care in the world. But +even a dog, he reflected, take that mongrel in Barney Kiernan’s, of the +same size, would be a holy horror to face. But it was no animal’s fault +in particular if he was built that way like the camel, ship of the +desert, distilling grapes into potheen in his hump. Nine tenths of them +all could be caged or trained, nothing beyond the art of man barring +the bees. Whale with a harpoon hairpin, alligator tickle the small of +his back and he sees the joke, chalk a circle for a rooster, tiger my +eagle eye. These timely reflections anent the brutes of the field +occupied his mind somewhat distracted from Stephen’s words while the +ship of the street was manœuvring and Stephen went on about the highly +interesting old. + +—What’s this I was saying? Ah, yes! My wife, he intimated, plunging _in +medias res_, would have the greatest of pleasure in making your +acquaintance as she is passionately attached to music of any kind. + +He looked sideways in a friendly fashion at the sideface of Stephen, +image of his mother, which was not quite the same as the usual handsome +blackguard type they unquestionably had an insatiable hankering after +as he was perhaps not that way built. + +Still, supposing he had his father’s gift as he more than suspected, it +opened up new vistas in his mind such as Lady Fingall’s Irish +industries, concert on the preceding Monday, and aristocracy in +general. + +Exquisite variations he was now describing on an air _Youth here has +End_ by Jans Pieter Sweelinck, a Dutchman of Amsterdam where the frows +come from. Even more he liked an old German song of _Johannes Jeep_ +about the clear sea and the voices of sirens, sweet murderers of men, +which boggled Bloom a bit: + + Von der Sirenen Listigkeit + Tun die Poeten dichten. + +These opening bars he sang and translated _extempore_. Bloom, nodding, +said he perfectly understood and begged him to go on by all means which +he did. + +A phenomenally beautiful tenor voice like that, the rarest of boons, +which Bloom appreciated at the very first note he got out, could +easily, if properly handled by some recognised authority on voice +production such as Barraclough and being able to read music into the +bargain, command its own price where baritones were ten a penny and +procure for its fortunate possessor in the near future an _entrée_ into +fashionable houses in the best residential quarters of financial +magnates in a large way of business and titled people where with his +university degree of B. A. (a huge ad in its way) and gentlemanly +bearing to all the more influence the good impression he would +infallibly score a distinct success, being blessed with brains which +also could be utilised for the purpose and other requisites, if his +clothes were properly attended to so as to the better worm his way into +their good graces as he, a youthful tyro in society’s sartorial +niceties, hardly understood how a little thing like that could militate +against you. It was in fact only a matter of months and he could easily +foresee him participating in their musical and artistic +_conversaziones_ during the festivities of the Christmas season, for +choice, causing a slight flutter in the dovecotes of the fair sex and +being made a lot of by ladies out for sensation, cases of which, as he +happened to know, were on record—in fact, without giving the show away, +he himself once upon a time, if he cared to, could easily have. Added +to which of course would be the pecuniary emolument by no means to be +sneezed at, going hand in hand with his tuition fees. Not, he +parenthesised, that for the sake of filthy lucre he need necessarily +embrace the lyric platform as a walk in life for any lengthy space of +time. But a step in the required direction it was beyond yea or nay and +both monetarily and mentally it contained no reflection on his dignity +in the smallest and it often turned in uncommonly handy to be handed a +cheque at a muchneeded moment when every little helped. Besides, though +taste latterly had deteriorated to a degree, original music like that, +different from the conventional rut, would rapidly have a great vogue +as it would be a decided novelty for Dublin’s musical world after the +usual hackneyed run of catchy tenor solos foisted on a confiding public +by Ivan St Austell and Hilton St Just and their _genus omne_. Yes, +beyond a shadow of a doubt he could with all the cards in his hand and +he had a capital opening to make a name for himself and win a high +place in the city’s esteem where he could command a stiff figure and, +booking ahead, give a grand concert for the patrons of the King street +house, given a backerup, if one were forthcoming to kick him upstairs, +so to speak, a big _if_, however, with some impetus of the goahead sort +to obviate the inevitable procrastination which often tripped up a too +much fêted prince of good fellows. And it need not detract from the +other by one iota as, being his own master, he would have heaps of time +to practise literature in his spare moments when desirous of so doing +without its clashing with his vocal career or containing anything +derogatory whatsoever as it was a matter for himself alone. In fact, he +had the ball at his feet and that was the very reason why the other, +possessed of a remarkably sharp nose for smelling a rat of any sort, +hung on to him at all. + +The horse was just then. And later on at a propitious opportunity he +purposed (Bloom did), without anyway prying into his private affairs on +the _fools step in where angels_ principle, advising him to sever his +connection with a certain budding practitioner who, he noticed, was +prone to disparage and even to a slight extent with some hilarious +pretext when not present, deprecate him, or whatever you like to call +it which in Bloom’s humble opinion threw a nasty sidelight on that side +of a person’s character, no pun intended. + +The horse having reached the end of his tether, so to speak, halted +and, rearing high a proud feathering tail, added his quota by letting +fall on the floor which the brush would soon brush up and polish, three +smoking globes of turds. Slowly three times, one after another, from a +full crupper he mired. And humanely his driver waited till he (or she) +had ended, patient in his scythed car. + +Side by side Bloom, profiting by the _contretemps_, with Stephen passed +through the gap of the chains, divided by the upright, and, stepping +over a strand of mire, went across towards Gardiner street lower, +Stephen singing more boldly, but not loudly, the end of the ballad. + + Und alle Schiffe brücken. + +The driver never said a word, good, bad or indifferent, but merely +watched the two figures, as he sat on his lowbacked car, both black, +one full, one lean, walk towards the railway bridge, _to be married by +Father Maher_. As they walked they at times stopped and walked again +continuing their _tête à tête_ (which, of course, he was utterly out +of) about sirens, enemies of man’s reason, mingled with a number of +other topics of the same category, usurpers, historical cases of the +kind while the man in the sweeper car or you might as well call it in +the sleeper car who in any case couldn’t possibly hear because they +were too far simply sat in his seat near the end of lower Gardiner +street _and looked after their lowbacked car_. + + + + +[ 17 ] + + +What parallel courses did Bloom and Stephen follow returning? + +Starting united both at normal walking pace from Beresford place they +followed in the order named Lower and Middle Gardiner streets and +Mountjoy square, west: then, at reduced pace, each bearing left, +Gardiner’s place by an inadvertence as far as the farther corner of +Temple street: then, at reduced pace with interruptions of halt, +bearing right, Temple street, north, as far as Hardwicke place. +Approaching, disparate, at relaxed walking pace they crossed both the +circus before George’s church diametrically, the chord in any circle +being less than the arc which it subtends. + +Of what did the duumvirate deliberate during their itinerary? + +Music, literature, Ireland, Dublin, Paris, friendship, woman, +prostitution, diet, the influence of gaslight or the light of arc and +glowlamps on the growth of adjoining paraheliotropic trees, exposed +corporation emergency dustbuckets, the Roman catholic church, +ecclesiastical celibacy, the Irish nation, jesuit education, careers, +the study of medicine, the past day, the maleficent influence of the +presabbath, Stephen’s collapse. + +Did Bloom discover common factors of similarity between their +respective like and unlike reactions to experience? + +Both were sensitive to artistic impressions, musical in preference to +plastic or pictorial. Both preferred a continental to an insular manner +of life, a cisatlantic to a transatlantic place of residence. Both +indurated by early domestic training and an inherited tenacity of +heterodox resistance professed their disbelief in many orthodox +religious, national, social and ethical doctrines. Both admitted the +alternately stimulating and obtunding influence of heterosexual +magnetism. + +Were their views on some points divergent? + +Stephen dissented openly from Bloom’s views on the importance of +dietary and civic selfhelp while Bloom dissented tacitly from Stephen’s +views on the eternal affirmation of the spirit of man in literature. +Bloom assented covertly to Stephen’s rectification of the anachronism +involved in assigning the date of the conversion of the Irish nation to +christianity from druidism by Patrick son of Calpornus, son of Potitus, +son of Odyssus, sent by pope Celestine I in the year 432 in the reign +of Leary to the year 260 or thereabouts in the reign of Cormac MacArt +(† 266 A.D.), suffocated by imperfect deglutition of aliment at Sletty +and interred at Rossnaree. The collapse which Bloom ascribed to gastric +inanition and certain chemical compounds of varying degrees of +adulteration and alcoholic strength, accelerated by mental exertion and +the velocity of rapid circular motion in a relaxing atmosphere, Stephen +attributed to the reapparition of a matutinal cloud (perceived by both +from two different points of observation Sandycove and Dublin) at first +no bigger than a woman’s hand. + +Was there one point on which their views were equal and negative? + +The influence of gaslight or electric light on the growth of adjoining +paraheliotropic trees. + +Had Bloom discussed similar subjects during nocturnal perambulations in +the past? + +In 1884 with Owen Goldberg and Cecil Turnbull at night on public +thoroughfares between Longwood avenue and Leonard’s corner and +Leonard’s corner and Synge street and Synge street and Bloomfield +avenue. In 1885 with Percy Apjohn in the evenings, reclined against the +wall between Gibraltar villa and Bloomfield house in Crumlin, barony of +Uppercross. In 1886 occasionally with casual acquaintances and +prospective purchasers on doorsteps, in front parlours, in third class +railway carriages of suburban lines. In 1888 frequently with major +Brian Tweedy and his daughter Miss Marion Tweedy, together and +separately on the lounge in Matthew Dillon’s house in Roundtown. Once +in 1892 and once in 1893 with Julius (Juda) Mastiansky, on both +occasions in the parlour of his (Bloom’s) house in Lombard street, +west. + +What reflection concerning the irregular sequence of dates 1884, 1885, +1886, 1888, 1892, 1893, 1904 did Bloom make before their arrival at +their destination? + +He reflected that the progressive extension of the field of individual +development and experience was regressively accompanied by a +restriction of the converse domain of interindividual relations. + +As in what ways? + +From inexistence to existence he came to many and was as one received: +existence with existence he was with any as any with any: from +existence to nonexistence gone he would be by all as none perceived. + +What act did Bloom make on their arrival at their destination? + +At the housesteps of the 4th of the equidifferent uneven numbers, +number 7 Eccles street, he inserted his hand mechanically into the back +pocket of his trousers to obtain his latchkey. + +Was it there? + +It was in the corresponding pocket of the trousers which he had worn on +the day but one preceding. + +Why was he doubly irritated? + +Because he had forgotten and because he remembered that he had reminded +himself twice not to forget. + +What were then the alternatives before the, premeditatedly +(respectively) and inadvertently, keyless couple? + +To enter or not to enter. To knock or not to knock. + +Bloom’s decision? + +A stratagem. Resting his feet on the dwarf wall, he climbed over the +area railings, compressed his hat on his head, grasped two points at +the lower union of rails and stiles, lowered his body gradually by its +length of five feet nine inches and a half to within two feet ten +inches of the area pavement and allowed his body to move freely in +space by separating himself from the railings and crouching in +preparation for the impact of the fall. + +Did he fall? + +By his body’s known weight of eleven stone and four pounds in +avoirdupois measure, as certified by the graduated machine for +periodical selfweighing in the premises of Francis Froedman, +pharmaceutical chemist of 19 Frederick street, north, on the last feast +of the Ascension, to wit, the twelfth day of May of the bissextile year +one thousand nine hundred and four of the christian era (jewish era +five thousand six hundred and sixtyfour, mohammadan era one thousand +three hundred and twentytwo), golden number 5, epact 13, solar cycle 9, +dominical letters C B, Roman indiction 2, Julian period 6617, MCMIV. + +Did he rise uninjured by concussion? + +Regaining new stable equilibrium he rose uninjured though concussed by +the impact, raised the latch of the area door by the exertion of force +at its freely moving flange and by leverage of the first kind applied +at its fulcrum, gained retarded access to the kitchen through the +subadjacent scullery, ignited a lucifer match by friction, set free +inflammable coal gas by turning on the ventcock, lit a high flame +which, by regulating, he reduced to quiescent candescence and lit +finally a portable candle. + +What discrete succession of images did Stephen meanwhile perceive? + +Reclined against the area railings he perceived through the transparent +kitchen panes a man regulating a gasflame of 14 CP, a man lighting a +candle of 1 CP, a man removing in turn each of his two boots, a man +leaving the kitchen holding a candle. + +Did the man reappear elsewhere? + +After a lapse of four minutes the glimmer of his candle was discernible +through the semitransparent semicircular glass fanlight over the +halldoor. The halldoor turned gradually on its hinges. In the open +space of the doorway the man reappeared without his hat, with his +candle. + +Did Stephen obey his sign? + +Yes, entering softly, he helped to close and chain the door and +followed softly along the hallway the man’s back and listed feet and +lighted candle past a lighted crevice of doorway on the left and +carefully down a turning staircase of more than five steps into the +kitchen of Bloom’s house. + +What did Bloom do? + +He extinguished the candle by a sharp expiration of breath upon its +flame, drew two spoonseat deal chairs to the hearthstone, one for +Stephen with its back to the area window, the other for himself when +necessary, knelt on one knee, composed in the grate a pyre of crosslaid +resintipped sticks and various coloured papers and irregular polygons +of best Abram coal at twentyone shillings a ton from the yard of Messrs +Flower and M’Donald of 14 D’Olier street, kindled it at three +projecting points of paper with one ignited lucifer match, thereby +releasing the potential energy contained in the fuel by allowing its +carbon and hydrogen elements to enter into free union with the oxygen +of the air. + +Of what similar apparitions did Stephen think? + +Of others elsewhere in other times who, kneeling on one knee or on two, +had kindled fires for him, of Brother Michael in the infirmary of the +college of the Society of Jesus at Clongowes Wood, Sallins, in the +county of Kildare: of his father, Simon Dedalus, in an unfurnished room +of his first residence in Dublin, number thirteen Fitzgibbon street: of +his godmother Miss Kate Morkan in the house of her dying sister Miss +Julia Morkan at 15 Usher’s Island: of his aunt Sara, wife of Richie +(Richard) Goulding, in the kitchen of their lodgings at 62 Clanbrassil +street: of his mother Mary, wife of Simon Dedalus, in the kitchen of +number twelve North Richmond street on the morning of the feast of +Saint Francis Xavier 1898: of the dean of studies, Father Butt, in the +physics’ theatre of university College, 16 Stephen’s Green, north: of +his sister Dilly (Delia) in his father’s house in Cabra. + +What did Stephen see on raising his gaze to the height of a yard from +the fire towards the opposite wall? + +Under a row of five coiled spring housebells a curvilinear rope, +stretched between two holdfasts athwart across the recess beside the +chimney pier, from which hung four smallsized square handkerchiefs +folded unattached consecutively in adjacent rectangles and one pair of +ladies’ grey hose with Lisle suspender tops and feet in their habitual +position clamped by three erect wooden pegs two at their outer +extremities and the third at their point of junction. + +What did Bloom see on the range? + +On the right (smaller) hob a blue enamelled saucepan: on the left +(larger) hob a black iron kettle. + +What did Bloom do at the range? + +He removed the saucepan to the left hob, rose and carried the iron +kettle to the sink in order to tap the current by turning the faucet to +let it flow. + +Did it flow? + +Yes. From Roundwood reservoir in county Wicklow of a cubic capacity of +2400 million gallons, percolating through a subterranean aqueduct of +filter mains of single and double pipeage constructed at an initial +plant cost of £ 5 per linear yard by way of the Dargle, Rathdown, Glen +of the Downs and Callowhill to the 26 acre reservoir at Stillorgan, a +distance of 22 statute miles, and thence, through a system of relieving +tanks, by a gradient of 250 feet to the city boundary at Eustace +bridge, upper Leeson street, though from prolonged summer drouth and +daily supply of 12 1/2 million gallons the water had fallen below the +sill of the overflow weir for which reason the borough surveyor and +waterworks engineer, Mr Spencer Harty, C. E., on the instructions of +the waterworks committee had prohibited the use of municipal water for +purposes other than those of consumption (envisaging the possibility of +recourse being had to the impotable water of the Grand and Royal canals +as in 1893) particularly as the South Dublin Guardians, notwithstanding +their ration of 15 gallons per day per pauper supplied through a 6 inch +meter, had been convicted of a wastage of 20,000 gallons per night by a +reading of their meter on the affirmation of the law agent of the +corporation, Mr Ignatius Rice, solicitor, thereby acting to the +detriment of another section of the public, selfsupporting taxpayers, +solvent, sound. + +What in water did Bloom, waterlover, drawer of water, watercarrier, +returning to the range, admire? + +Its universality: its democratic equality and constancy to its nature +in seeking its own level: its vastness in the ocean of Mercator’s +projection: its unplumbed profundity in the Sundam trench of the +Pacific exceeding 8000 fathoms: the restlessness of its waves and +surface particles visiting in turn all points of its seaboard: the +independence of its units: the variability of states of sea: its +hydrostatic quiescence in calm: its hydrokinetic turgidity in neap and +spring tides: its subsidence after devastation: its sterility in the +circumpolar icecaps, arctic and antarctic: its climatic and commercial +significance: its preponderance of 3 to 1 over the dry land of the +globe: its indisputable hegemony extending in square leagues over all +the region below the subequatorial tropic of Capricorn: the +multisecular stability of its primeval basin: its luteofulvous bed: its +capacity to dissolve and hold in solution all soluble substances +including millions of tons of the most precious metals: its slow +erosions of peninsulas and islands, its persistent formation of +homothetic islands, peninsulas and downwardtending promontories: its +alluvial deposits: its weight and volume and density: its +imperturbability in lagoons and highland tarns: its gradation of +colours in the torrid and temperate and frigid zones: its vehicular +ramifications in continental lakecontained streams and confluent +oceanflowing rivers with their tributaries and transoceanic currents, +gulfstream, north and south equatorial courses: its violence in +seaquakes, waterspouts, Artesian wells, eruptions, torrents, eddies, +freshets, spates, groundswells, watersheds, waterpartings, geysers, +cataracts, whirlpools, maelstroms, inundations, deluges, cloudbursts: +its vast circumterrestrial ahorizontal curve: its secrecy in springs +and latent humidity, revealed by rhabdomantic or hygrometric +instruments and exemplified by the well by the hole in the wall at +Ashtown gate, saturation of air, distillation of dew: the simplicity of +its composition, two constituent parts of hydrogen with one constituent +part of oxygen: its healing virtues: its buoyancy in the waters of the +Dead Sea: its persevering penetrativeness in runnels, gullies, +inadequate dams, leaks on shipboard: its properties for cleansing, +quenching thirst and fire, nourishing vegetation: its infallibility as +paradigm and paragon: its metamorphoses as vapour, mist, cloud, rain, +sleet, snow, hail: its strength in rigid hydrants: its variety of forms +in loughs and bays and gulfs and bights and guts and lagoons and atolls +and archipelagos and sounds and fjords and minches and tidal estuaries +and arms of sea: its solidity in glaciers, icebergs, icefloes: its +docility in working hydraulic millwheels, turbines, dynamos, electric +power stations, bleachworks, tanneries, scutchmills: its utility in +canals, rivers, if navigable, floating and graving docks: its +potentiality derivable from harnessed tides or watercourses falling +from level to level: its submarine fauna and flora (anacoustic, +photophobe), numerically, if not literally, the inhabitants of the +globe: its ubiquity as constituting 90 +% of the human body: the noxiousness of its effluvia in lacustrine +% marshes, +pestilential fens, faded flowerwater, stagnant pools in the waning +moon. + +Having set the halffilled kettle on the now burning coals, why did he +return to the stillflowing tap? + +To wash his soiled hands with a partially consumed tablet of +Barrington’s lemonflavoured soap, to which paper still adhered, (bought +thirteen hours previously for fourpence and still unpaid for), in fresh +cold neverchanging everchanging water and dry them, face and hands, in +a long redbordered holland cloth passed over a wooden revolving roller. + +What reason did Stephen give for declining Bloom’s offer? + +That he was hydrophobe, hating partial contact by immersion or total by +submersion in cold water, (his last bath having taken place in the +month of October of the preceding year), disliking the aqueous +substances of glass and crystal, distrusting aquacities of thought and +language. + +What impeded Bloom from giving Stephen counsels of hygiene and +prophylactic to which should be added suggestions concerning a +preliminary wetting of the head and contraction of the muscles with +rapid splashing of the face and neck and thoracic and epigastric region +in case of sea or river bathing, the parts of the human anatomy most +sensitive to cold being the nape, stomach and thenar or sole of foot? + +The incompatibility of aquacity with the erratic originality of genius. + +What additional didactic counsels did he similarly repress? + +Dietary: concerning the respective percentage of protein and caloric +energy in bacon, salt ling and butter, the absence of the former in the +lastnamed and the abundance of the latter in the firstnamed. + +Which seemed to the host to be the predominant qualities of his guest? + +Confidence in himself, an equal and opposite power of abandonment and +recuperation. + +What concomitant phenomenon took place in the vessel of liquid by the +agency of fire? + +The phenomenon of ebullition. Fanned by a constant updraught of +ventilation between the kitchen and the chimneyflue, ignition was +communicated from the faggots of precombustible fuel to polyhedral +masses of bituminous coal, containing in compressed mineral form the +foliated fossilised decidua of primeval forests which had in turn +derived their vegetative existence from the sun, primal source of heat +(radiant), transmitted through omnipresent luminiferous diathermanous +ether. Heat (convected), a mode of motion developed by such combustion, +was constantly and increasingly conveyed from the source of +calorification to the liquid contained in the vessel, being radiated +through the uneven unpolished dark surface of the metal iron, in part +reflected, in part absorbed, in part transmitted, gradually raising the +temperature of the water from normal to boiling point, a rise in +temperature expressible as the result of an expenditure of 72 thermal +units needed to raise 1 pound of water from 50° to 212° Fahrenheit. + +What announced the accomplishment of this rise in temperature? + +A double falciform ejection of water vapour from under the kettlelid at +both sides simultaneously. + +For what personal purpose could Bloom have applied the water so boiled? + +To shave himself. + +What advantages attended shaving by night? + +A softer beard: a softer brush if intentionally allowed to remain from +shave to shave in its agglutinated lather: a softer skin if +unexpectedly encountering female acquaintances in remote places at +incustomary hours: quiet reflections upon the course of the day: a +cleaner sensation when awaking after a fresher sleep since matutinal +noises, premonitions and perturbations, a clattered milkcan, a +postman’s double knock, a paper read, reread while lathering, +relathering the same spot, a shock, a shoot, with thought of aught he +sought though fraught with nought might cause a faster rate of shaving +and a nick on which incision plaster with precision cut and humected +and applied adhered: which was to be done. + +Why did absence of light disturb him less than presence of noise? + +Because of the surety of the sense of touch in his firm full masculine +feminine passive active hand. + +What quality did it (his hand) possess but with what counteracting +influence? + +The operative surgical quality but that he was reluctant to shed human +blood even when the end justified the means, preferring, in their +natural order, heliotherapy, psychophysicotherapeutics, osteopathic +surgery. + +What lay under exposure on the lower, middle and upper shelves of the +kitchen dresser, opened by Bloom? + +On the lower shelf five vertical breakfast plates, six horizontal +breakfast saucers on which rested inverted breakfast cups, a +moustachecup, uninverted, and saucer of Crown Derby, four white +goldrimmed eggcups, an open shammy purse displaying coins, mostly +copper, and a phial of aromatic (violet) comfits. On the middle shelf a +chipped eggcup containing pepper, a drum of table salt, four +conglomerated black olives in oleaginous paper, an empty pot of +Plumtree’s potted meat, an oval wicker basket bedded with fibre and +containing one Jersey pear, a halfempty bottle of William Gilbey and +Co’s white invalid port, half disrobed of its swathe of coralpink +tissue paper, a packet of Epps’s soluble cocoa, five ounces of Anne +Lynch’s choice tea at 2/- per lb in a crinkled leadpaper bag, a +cylindrical canister containing the best crystallised lump sugar, two +onions, one, the larger, Spanish, entire, the other, smaller, Irish, +bisected with augmented surface and more redolent, a jar of Irish Model +Dairy’s cream, a jug of brown crockery containing a naggin and a +quarter of soured adulterated milk, converted by heat into water, +acidulous serum and semisolidified curds, which added to the quantity +subtracted for Mr Bloom’s and Mrs Fleming’s breakfasts, made one +imperial pint, the total quantity originally delivered, two cloves, a +halfpenny and a small dish containing a slice of fresh ribsteak. On the +upper shelf a battery of jamjars (empty) of various sizes and +proveniences. + +What attracted his attention lying on the apron of the dresser? + +Four polygonal fragments of two lacerated scarlet betting tickets, +numbered 8 87, 88 6. + +What reminiscences temporarily corrugated his brow? + +Reminiscences of coincidences, truth stranger than fiction, +preindicative of the result of the Gold Cup flat handicap, the official +and definitive result of which he had read in the _Evening Telegraph_, +late pink edition, in the cabman’s shelter, at Butt bridge. + +Where had previous intimations of the result, effected or projected, +been received by him? + +In Bernard Kiernan’s licensed premises 8, 9 and 10 little Britain +street: in David Byrne’s licensed premises, 14 Duke street: in +O’Connell street lower, outside Graham Lemon’s when a dark man had +placed in his hand a throwaway (subsequently thrown away), advertising +Elijah, restorer of the church in Zion: in Lincoln place outside the +premises of F. W. Sweny and Co (Limited), dispensing chemists, when, +when Frederick M. (Bantam) Lyons had rapidly and successively +requested, perused and restituted the copy of the current issue of the +_Freeman’s Journal_ and _National Press_ which he had been about to +throw away (subsequently thrown away), he had proceeded towards the +oriental edifice of the Turkish and Warm Baths, 11 Leinster street, +with the light of inspiration shining in his countenance and bearing in +his arms the secret of the race, graven in the language of prediction. + +What qualifying considerations allayed his perturbations? + +The difficulties of interpretation since the significance of any event +followed its occurrence as variably as the acoustic report followed the +electrical discharge and of counterestimating against an actual loss by +failure to interpret the total sum of possible losses proceeding +originally from a successful interpretation. + +His mood? + +He had not risked, he did not expect, he had not been disappointed, he +was satisfied. + +What satisfied him? + +To have sustained no positive loss. To have brought a positive gain to +others. Light to the gentiles. + +How did Bloom prepare a collation for a gentile? + +He poured into two teacups two level spoonfuls, four in all, of Epps’s +soluble cocoa and proceeded according to the directions for use printed +on the label, to each adding after sufficient time for infusion the +prescribed ingredients for diffusion in the manner and in the quantity +prescribed. + +What supererogatory marks of special hospitality did the host show his +guest? + +Relinquishing his symposiarchal right to the moustache cup of imitation +Crown Derby presented to him by his only daughter, Millicent (Milly), +he substituted a cup identical with that of his guest and served +extraordinarily to his guest and, in reduced measure, to himself the +viscous cream ordinarily reserved for the breakfast of his wife Marion +(Molly). + +Was the guest conscious of and did he acknowledge these marks of +hospitality? + +His attention was directed to them by his host jocosely, and he +accepted them seriously as they drank in jocoserious silence Epps’s +massproduct, the creature cocoa. + +Were there marks of hospitality which he contemplated but suppressed, +reserving them for another and for himself on future occasions to +complete the act begun? + +The reparation of a fissure of the length of 1 1/2 inches in the right +side of his guest’s jacket. A gift to his guest of one of the four +lady’s handkerchiefs, if and when ascertained to be in a presentable +condition. + +Who drank more quickly? + +Bloom, having the advantage of ten seconds at the initiation and +taking, from the concave surface of a spoon along the handle of which a +steady flow of heat was conducted, three sips to his opponent’s one, +six to two, nine to three. + +What cerebration accompanied his frequentative act? + +Concluding by inspection but erroneously that his silent companion was +engaged in mental composition he reflected on the pleasures derived +from literature of instruction rather than of amusement as he himself +had applied to the works of William Shakespeare more than once for the +solution of difficult problems in imaginary or real life. + +Had he found their solution? + +In spite of careful and repeated reading of certain classical passages, +aided by a glossary, he had derived imperfect conviction from the text, +the answers not bearing in all points. + +What lines concluded his first piece of original verse written by him, +potential poet, at the age of 11 in 1877 on the occasion of the +offering of three prizes of 10/-, 5/- and 2/6 respectively for +competition by the _Shamrock_, a weekly newspaper? + + An ambition to squint + At my verses in print + Makes me hope that for these you’ll find room. + If you so condescend + Then please place at the end + The name of yours truly, L. Bloom. + +Did he find four separating forces between his temporary guest and him? + +Name, age, race, creed. + +What anagrams had he made on his name in youth? + +Leopold Bloom +Ellpodbomool +Molldopeloob +Bollopedoom +Old Ollebo, M. P. + +What acrostic upon the abbreviation of his first name had he (kinetic +poet) sent to Miss Marion (Molly) Tweedy on the 14 February 1888? + + Poets oft have sung in rhyme + Of music sweet their praise divine. + Let them hymn it nine times nine. + Dearer far than song or wine. + You are mine. The world is mine. + +What had prevented him from completing a topical song (music by R. G. +Johnston) on the events of the past, or fixtures for the actual, years, +entitled _If Brian Boru could but come back and see old Dublin now_, +commissioned by Michael Gunn, lessee of the Gaiety Theatre, 46, 47, 48, +49 South King street, and to be introduced into the sixth scene, the +valley of diamonds, of the second edition (30 January 1893) of the +grand annual Christmas pantomime _Sinbad the Sailor_ (produced by R. +Shelton 26 December 1892, written by Greenleaf Whittier, scenery by +George A. Jackson and Cecil Hicks, costumes by Mrs and Miss Whelan +under the personal supervision of Mrs Michael Gunn, ballets by Jessie +Noir, harlequinade by Thomas Otto) and sung by Nelly Bouverist, +principal girl? + +Firstly, oscillation between events of imperial and of local interest, +the anticipated diamond jubilee of Queen Victoria (born 1820, acceded +1837) and the posticipated opening of the new municipal fish market: +secondly, apprehension of opposition from extreme circles on the +questions of the respective visits of Their Royal Highnesses the duke +and duchess of York (real) and of His Majesty King Brian Boru +(imaginary): thirdly, a conflict between professional etiquette and +professional emulation concerning the recent erections of the Grand +Lyric Hall on Burgh Quay and the Theatre Royal in Hawkins street: +fourthly, distraction resultant from compassion for Nelly Bouverist’s +non-intellectual, non-political, non-topical expression of countenance +and concupiscence caused by Nelly Bouverist’s revelations of white +articles of non-intellectual, non-political, non-topical underclothing +while she (Nelly Bouverist) was in the articles: fifthly, the +difficulties of the selection of appropriate music and humorous +allusions from _Everybody’s Book of Jokes_ (1000 pages and a laugh in +every one): sixthly, the rhymes, homophonous and cacophonous, +associated with the names of the new lord mayor, Daniel Tallon, the new +high sheriff, Thomas Pile and the new solicitorgeneral, Dunbar Plunket +Barton. + +What relation existed between their ages? + +16 years before in 1888 when Bloom was of Stephen’s present age Stephen +was 6. 16 years after in 1920 when Stephen would be of Bloom’s present +age Bloom would be 54. In 1936 when Bloom would be 70 and Stephen 54 +their ages initially in the ratio of 16 to 0 would be as 17 1/2 to 13 +1/2, the proportion increasing and the disparity diminishing according +as arbitrary future years were added, for if the proportion existing in +1883 had continued immutable, conceiving that to be possible, till then +1904 when Stephen was 22 Bloom would be 374 and in 1920 when Stephen +would be 38, as Bloom then was, Bloom would be 646 while in 1952 when +Stephen would have attained the maximum postdiluvian age of 70 Bloom, +being 1190 years alive having been born in the year 714, would have +surpassed by 221 years the maximum antediluvian age, that of +Methusalah, 969 years, while, if Stephen would continue to live until +he would attain that age in the year 3072 A.D., Bloom would have been +obliged to have been alive 83,300 years, having been obliged to have +been born in the year 81,396 B.C. + +What events might nullify these calculations? + +The cessation of existence of both or either, the inauguration of a new +era or calendar, the annihilation of the world and consequent +extermination of the human species, inevitable but impredictable. + +How many previous encounters proved their preexisting acquaintance? + +Two. The first in the lilacgarden of Matthew Dillon’s house, Medina +Villa, Kimmage road, Roundtown, in 1887, in the company of Stephen’s +mother, Stephen being then of the age of 5 and reluctant to give his +hand in salutation. The second in the coffeeroom of Breslin’s hotel on +a rainy Sunday in the January of 1892, in the company of Stephen’s +father and Stephen’s granduncle, Stephen being then 5 years older. + +Did Bloom accept the invitation to dinner given then by the son and +afterwards seconded by the father? + +Very gratefully, with grateful appreciation, with sincere appreciative +gratitude, in appreciatively grateful sincerity of regret, he declined. + +Did their conversation on the subject of these reminiscences reveal a +third connecting link between them? + +Mrs Riordan (Dante), a widow of independent means, had resided in the +house of Stephen’s parents from 1 September 1888 to 29 December 1891 +and had also resided during the years 1892, 1893 and 1894 in the City +Arms Hotel owned by Elizabeth O’Dowd of 54 Prussia street where, during +parts of the years 1893 and 1894, she had been a constant informant of +Bloom who resided also in the same hotel, being at that time a clerk in +the employment of Joseph Cuffe of 5 Smithfield for the superintendence +of sales in the adjacent Dublin Cattle market on the North Circular +road. + +Had he performed any special corporal work of mercy for her? + +He had sometimes propelled her on warm summer evenings, an infirm widow +of independent, if limited, means, in her convalescent bathchair with +slow revolutions of its wheels as far as the corner of the North +Circular road opposite Mr Gavin Low’s place of business where she had +remained for a certain time scanning through his onelensed binocular +fieldglasses unrecognisable citizens on tramcars, roadster bicycles +equipped with inflated pneumatic tyres, hackney carriages, tandems, +private and hired landaus, dogcarts, ponytraps and brakes passing from +the city to the Phoenix Park and _vice versa_. + +Why could he then support that his vigil with the greater equanimity? + +Because in middle youth he had often sat observing through a rondel of +bossed glass of a multicoloured pane the spectacle offered with +continual changes of the thoroughfare without, pedestrians, quadrupeds, +velocipedes, vehicles, passing slowly, quickly, evenly, round and round +and round the rim of a round and round precipitous globe. + +What distinct different memories had each of her now eight years +deceased? + +The older, her bezique cards and counters, her Skye terrier, her +suppositious wealth, her lapses of responsiveness and incipient +catarrhal deafness: the younger, her lamp of colza oil before the +statue of the Immaculate Conception, her green and maroon brushes for +Charles Stewart Parnell and for Michael Davitt, her tissue papers. + +Were there no means still remaining to him to achieve the rejuvenation +which these reminiscences divulged to a younger companion rendered the +more desirable? + +The indoor exercises, formerly intermittently practised, subsequently +abandoned, prescribed in Eugen Sandow’s _Physical Strength and How to +Obtain It_ which, designed particularly for commercial men engaged in +sedentary occupations, were to be made with mental concentration in +front of a mirror so as to bring into play the various families of +muscles and produce successively a pleasant rigidity, a more pleasant +relaxation and the most pleasant repristination of juvenile agility. + +Had any special agility been his in earlier youth? + +Though ringweight lifting had been beyond his strength and the full +circle gyration beyond his courage yet as a High school scholar he had +excelled in his stable and protracted execution of the half lever +movement on the parallel bars in consequence of his abnormally +developed abdominal muscles. + +Did either openly allude to their racial difference? + +Neither. + +What, reduced to their simplest reciprocal form, were Bloom’s thoughts +about Stephen’s thoughts about Bloom and about Stephen’s thoughts about +Bloom’s thoughts about Stephen? + +He thought that he thought that he was a jew whereas he knew that he +knew that he knew that he was not. + +What, the enclosures of reticence removed, were their respective +parentages? + +Bloom, only born male transubstantial heir of Rudolf Virag +(subsequently Rudolph Bloom) of Szombathely, Vienna, Budapest, Milan, +London and Dublin and of Ellen Higgins, second daughter of Julius +Higgins (born Karoly) and Fanny Higgins (born Hegarty). Stephen, eldest +surviving male consubstantial heir of Simon Dedalus of Cork and Dublin +and of Mary, daughter of Richard and Christina Goulding (born Grier). + +Had Bloom and Stephen been baptised, and where and by whom, cleric or +layman? + +Bloom (three times), by the reverend Mr Gilmer Johnston M. A., alone, +in the protestant church of Saint Nicholas Without, Coombe, by James +O’Connor, Philip Gilligan and James Fitzpatrick, together, under a pump +in the village of Swords, and by the reverend Charles Malone C. C., in +the church of the Three Patrons, Rathgar. Stephen (once) by the +reverend Charles Malone C. C., alone, in the church of the Three +Patrons, Rathgar. + +Did they find their educational careers similar? + +Substituting Stephen for Bloom Stoom would have passed successively +through a dame’s school and the high school. Substituting Bloom for +Stephen Blephen would have passed successively through the preparatory, +junior, middle and senior grades of the intermediate and through the +matriculation, first arts, second arts and arts degree courses of the +royal university. + +Why did Bloom refrain from stating that he had frequented the +university of life? + +Because of his fluctuating incertitude as to whether this observation +had or had not been already made by him to Stephen or by Stephen to +him. + +What two temperaments did they individually represent? + +The scientific. The artistic. + +What proofs did Bloom adduce to prove that his tendency was towards +applied, rather than towards pure, science? + +Certain possible inventions of which he had cogitated when reclining in +a state of supine repletion to aid digestion, stimulated by his +appreciation of the importance of inventions now common but once +revolutionary, for example, the aeronautic parachute, the reflecting +telescope, the spiral corkscrew, the safety pin, the mineral water +siphon, the canal lock with winch and sluice, the suction pump. + +Were these inventions principally intended for an improved scheme of +kindergarten? + +Yes, rendering obsolete popguns, elastic airbladders, games of hazard, +catapults. They comprised astronomical kaleidoscopes exhibiting the +twelve constellations of the zodiac from Aries to Pisces, miniature +mechanical orreries, arithmetical gelatine lozenges, geometrical to +correspond with zoological biscuits, globemap playing balls, +historically costumed dolls. + +What also stimulated him in his cogitations? + +The financial success achieved by Ephraim Marks and Charles A. James, +the former by his 1d bazaar at 42 George’s street, south, the latter at +his 6 1/2d shop and world’s fancy fair and waxwork exhibition at 30 +Henry street, admission 2d, children 1d: and the infinite possibilities +hitherto unexploited of the modern art of advertisement if condensed in +triliteral monoideal symbols, vertically of maximum visibility +(divined), horizontally of maximum legibility (deciphered) and of +magnetising efficacy to arrest involuntary attention, to interest, to +convince, to decide. + +Such as? + +K. 11. Kino’s 11/— Trousers. +House of Keys. Alexander J. Keyes. + +Such as not? + +Look at this long candle. Calculate when it burns out and you receive +gratis 1 pair of our special non-compo boots, guaranteed 1 candle +power. Address: Barclay and Cook, 18 Talbot street. +Bacilikil (Insect Powder). +Veribest (Boot Blacking). +Uwantit (Combined pocket twoblade penknife with corkscrew, nailfile and +pipecleaner). + +Such as never? + +What is home without Plumtree’s Potted Meat? + +Incomplete. + +With it an abode of bliss. + +Manufactured by George Plumtree, 23 Merchants’ quay, Dublin, put up in +4 oz pots, and inserted by Councillor Joseph P. Nannetti, M. P., +Rotunda Ward, 19 Hardwicke street, under the obituary notices and +anniversaries of deceases. The name on the label is Plumtree. A +plumtree in a meatpot, registered trade mark. Beware of imitations. +Peatmot. Trumplee. Moutpat. Plamtroo. + +Which example did he adduce to induce Stephen to deduce that +originality, though producing its own reward, does not invariably +conduce to success? + +His own ideated and rejected project of an illuminated showcart, drawn +by a beast of burden, in which two smartly dressed girls were to be +seated engaged in writing. + +What suggested scene was then constructed by Stephen? + +Solitary hotel in mountain pass. Autumn. Twilight. Fire lit. In dark +corner young man seated. Young woman enters. Restless. Solitary. She +sits. She goes to window. She stands. She sits. Twilight. She thinks. +On solitary hotel paper she writes. She thinks. She writes. She sighs. +Wheels and hoofs. She hurries out. He comes from his dark corner. He +seizes solitary paper. He holds it towards fire. Twilight. He reads. +Solitary. + +What? + +In sloping, upright and backhands: Queen’s Hotel, Queen’s Hotel, +Queen’s Hotel. Queen’s Ho... + +What suggested scene was then reconstructed by Bloom? + +The Queen’s Hotel, Ennis, county Clare, where Rudolph Bloom (Rudolf +Virag) died on the evening of the 27 June 1886, at some hour unstated, +in consequence of an overdose of monkshood (aconite) selfadministered +in the form of a neuralgic liniment composed of 2 parts of aconite +liniment to 1 of chloroform liniment (purchased by him at 10.20 a.m. on +the morning of 27 June 1886 at the medical hall of Francis Dennehy, 17 +Church street, Ennis) after having, though not in consequence of +having, purchased at 3.15 p.m. on the afternoon of 27 June 1886 a new +boater straw hat, extra smart (after having, though not in consequence +of having, purchased at the hour and in the place aforesaid, the toxin +aforesaid), at the general drapery store of James Cullen, 4 Main +street, Ennis. + +Did he attribute this homonymity to information or coincidence or +intuition? + +Coincidence. + +Did he depict the scene verbally for his guest to see? + +He preferred himself to see another’s face and listen to another’s +words by which potential narration was realised and kinetic temperament +relieved. + +Did he see only a second coincidence in the second scene narrated to +him, described by the narrator as _A Pisgah Sight of Palestine_ or _The +Parable of the Plums_? + +It, with the preceding scene and with others unnarrated but existent by +implication, to which add essays on various subjects or moral apothegms +(e.g. _My Favourite Hero_ or _Procrastination is the Thief of Time_) +composed during schoolyears, seemed to him to contain in itself and in +conjunction with the personal equation certain possibilities of +financial, social, personal and sexual success, whether specially +collected and selected as model pedagogic themes (of cent per cent +merit) for the use of preparatory and junior grade students or +contributed in printed form, following the precedent of Philip Beaufoy +or Doctor Dick or Heblon’s _Studies in Blue_, to a publication of +certified circulation and solvency or employed verbally as intellectual +stimulation for sympathetic auditors, tacitly appreciative of +successful narrative and confidently augurative of successful +achievement, during the increasingly longer nights gradually following +the summer solstice on the day but three following, videlicet, Tuesday, +21 June (S. Aloysius Gonzaga), sunrise 3.33 a.m., sunset 8.29 p.m. + +Which domestic problem as much as, if not more than, any other +frequently engaged his mind? + +What to do with our wives. + +What had been his hypothetical singular solutions? + +Parlour games (dominos, halma, tiddledywinks, spilikins, cup and ball, +nap, spoil five, bezique, twentyfive, beggar my neighbour, draughts, +chess or backgammon): embroidery, darning or knitting for the +policeaided clothing society: musical duets, mandoline and guitar, +piano and flute, guitar and piano: legal scrivenery or envelope +addressing: biweekly visits to variety entertainments: commercial +activity as pleasantly commanding and pleasingly obeyed mistress +proprietress in a cool dairy shop or warm cigar divan: the clandestine +satisfaction of erotic irritation in masculine brothels, state +inspected and medically controlled: social visits, at regular +infrequent prevented intervals and with regular frequent preventive +superintendence, to and from female acquaintances of recognised +respectability in the vicinity: courses of evening instruction +specially designed to render liberal instruction agreeable. + +What instances of deficient mental development in his wife inclined him +in favour of the lastmentioned (ninth) solution? + +In disoccupied moments she had more than once covered a sheet of paper +with signs and hieroglyphics which she stated were Greek and Irish and +Hebrew characters. She had interrogated constantly at varying intervals +as to the correct method of writing the capital initial of the name of +a city in Canada, Quebec. She understood little of political +complications, internal, or balance of power, external. In calculating +the addenda of bills she frequently had recourse to digital aid. After +completion of laconic epistolary compositions she abandoned the +implement of calligraphy in the encaustic pigment, exposed to the +corrosive action of copperas, green vitriol and nutgall. Unusual +polysyllables of foreign origin she interpreted phonetically or by +false analogy or by both: metempsychosis (met him pike hoses), _alias_ +(a mendacious person mentioned in sacred scripture). + +What compensated in the false balance of her intelligence for these and +such deficiencies of judgment regarding persons, places and things? + +The false apparent parallelism of all perpendicular arms of all +balances, proved true by construction. The counterbalance of her +proficiency of judgment regarding one person, proved true by +experiment. + +How had he attempted to remedy this state of comparative ignorance? + +Variously. By leaving in a conspicuous place a certain book open at a +certain page: by assuming in her, when alluding explanatorily, latent +knowledge: by open ridicule in her presence of some absent other’s +ignorant lapse. + +With what success had he attempted direct instruction? + +She followed not all, a part of the whole, gave attention with interest +comprehended with surprise, with care repeated, with greater difficulty +remembered, forgot with ease, with misgiving reremembered, rerepeated +with error. + +What system had proved more effective? + +Indirect suggestion implicating selfinterest. + +Example? + +She disliked umbrella with rain, he liked woman with umbrella, she +disliked new hat with rain, he liked woman with new hat, he bought new +hat with rain, she carried umbrella with new hat. + +Accepting the analogy implied in his guest’s parable which examples of +postexilic eminence did he adduce? + +Three seekers of the pure truth, Moses of Egypt, Moses Maimonides, +author of _More Nebukim_ (Guide of the Perplexed) and Moses Mendelssohn +of such eminence that from Moses (of Egypt) to Moses (Mendelssohn) +there arose none like Moses (Maimonides). + +What statement was made, under correction, by Bloom concerning a fourth +seeker of pure truth, by name Aristotle, mentioned, with permission, by +Stephen? + +That the seeker mentioned had been a pupil of a rabbinical philosopher, +name uncertain. + +Were other anapocryphal illustrious sons of the law and children of a +selected or rejected race mentioned? + +Felix Bartholdy Mendelssohn (composer), Baruch Spinoza (philosopher), +Mendoza (pugilist), Ferdinand Lassalle (reformer, duellist). + +What fragments of verse from the ancient Hebrew and ancient Irish +languages were cited with modulations of voice and translation of texts +by guest to host and by host to guest? + +By Stephen: _suil, suil, suil arun, suil go siocair agus suil go cuin_ +(walk, walk, walk your way, walk in safety, walk with care). + +By Bloom: _Kifeloch, harimon rakatejch m’baad l’zamatejch_ (thy temple +amid thy hair is as a slice of pomegranate). + +How was a glyphic comparison of the phonic symbols of both languages +made in substantiation of the oral comparison? + +By juxtaposition. On the penultimate blank page of a book of inferior +literary style, entituled _Sweets of Sin_ (produced by Bloom and so +manipulated that its front cover came in contact with the surface of +the table) with a pencil (supplied by Stephen) Stephen wrote the Irish +characters for gee, eh, dee, em, simple and modified, and Bloom in turn +wrote the Hebrew characters ghimel, aleph, daleth and (in the absence +of mem) a substituted qoph, explaining their arithmetical values as +ordinal and cardinal numbers, videlicet 3, 1, 4, and 100. + +Was the knowledge possessed by both of each of these languages, the +extinct and the revived, theoretical or practical? + +Theoretical, being confined to certain grammatical rules of accidence +and syntax and practically excluding vocabulary. + +What points of contact existed between these languages and between the +peoples who spoke them? + +The presence of guttural sounds, diacritic aspirations, epenthetic and +servile letters in both languages: their antiquity, both having been +taught on the plain of Shinar 242 years after the deluge in the +seminary instituted by Fenius Farsaigh, descendant of Noah, progenitor +of Israel, and ascendant of Heber and Heremon, progenitors of Ireland: +their archaeological, genealogical, hagiographical, exegetical, +homiletic, toponomastic, historical and religious literatures +comprising the works of rabbis and culdees, Torah, Talmud (Mischna and +Ghemara), Massor, Pentateuch, Book of the Dun Cow, Book of Ballymote, +Garland of Howth, Book of Kells: their dispersal, persecution, survival +and revival: the isolation of their synagogical and ecclesiastical +rites in ghetto (S. Mary’s Abbey) and masshouse (Adam and Eve’s +tavern): the proscription of their national costumes in penal laws and +jewish dress acts: the restoration in Chanah David of Zion and the +possibility of Irish political autonomy or devolution. + +What anthem did Bloom chant partially in anticipation of that multiple, +ethnically irreducible consummation? + + Kolod balejwaw pnimah + Nefesch, jehudi, homijah. + +Why was the chant arrested at the conclusion of this first distich? + +In consequence of defective mnemotechnic. + +How did the chanter compensate for this deficiency? + +By a periphrastic version of the general text. + +In what common study did their mutual reflections merge? + +The increasing simplification traceable from the Egyptian epigraphic +hieroglyphs to the Greek and Roman alphabets and the anticipation of +modern stenography and telegraphic code in the cuneiform inscriptions +(Semitic) and the virgular quinquecostate ogham writing (Celtic). + +Did the guest comply with his host’s request? + +Doubly, by appending his signature in Irish and Roman characters. + +What was Stephen’s auditive sensation? + +He heard in a profound ancient male unfamiliar melody the accumulation +of the past. + +What was Bloom’s visual sensation? + +He saw in a quick young male familiar form the predestination of a +future. + +What were Stephen’s and Bloom’s quasisimultaneous volitional +quasisensations of concealed identities? + +Visually, Stephen’s: The traditional figure of hypostasis, depicted by +Johannes Damascenus, Lentulus Romanus and Epiphanius Monachus as +leucodermic, sesquipedalian with winedark hair. + +Auditively, Bloom’s: The traditional accent of the ecstasy of +catastrophe. + +What future careers had been possible for Bloom in the past and with +what exemplars? + +In the church, Roman, Anglican or Nonconformist: exemplars, the very +reverend John Conmee S. J., the reverend T. Salmon, D. D., provost of +Trinity college, Dr Alexander J. Dowie. At the bar, English or Irish: +exemplars, Seymour Bushe, K. C., Rufus Isaacs, K. C. On the stage, +modern or Shakespearean: exemplars, Charles Wyndham, high comedian, +Osmond Tearle († 1901), exponent of Shakespeare. + +Did the host encourage his guest to chant in a modulated voice a +strange legend on an allied theme? + +Reassuringly, their place, where none could hear them talk, being +secluded, reassured, the decocted beverages, allowing for subsolid +residual sediment of a mechanical mixture, water plus sugar plus cream +plus cocoa, having been consumed. + +Recite the first (major) part of this chanted legend. + + Little Harry Hughes and his schoolfellows all + Went out for to play ball. + And the very first ball little Harry Hughes played + He drove it o’er the jew’s garden wall. + And the very second ball little Harry Hughes played + He broke the jew’s windows all. + +[Illustration] + +How did the son of Rudolph receive this first part? + +With unmixed feeling. Smiling, a jew, he heard with pleasure and saw +the unbroken kitchen window. + +Recite the second part (minor) of the legend. + + Then out there came the jew’s daughter + And she all dressed in green. + “Come back, come back, you pretty little boy, + And play your ball again.” + + I can’t come back and I won’t come back + Without my schoolfellows all. + For if my master he did hear + He’d make it a sorry ball.” + + She took him by the lilywhite hand + And led him along the hall + Until she led him to a room + Where none could hear him call. + + She took a penknife out of her pocket + And cut off his little head. + And now he’ll play his ball no more + For he lies among the dead. + +[Illustration] + +How did the father of Millicent receive this second part? + +With mixed feelings. Unsmiling, he heard and saw with wonder a jew’s +daughter, all dressed in green. + +Condense Stephen’s commentary. + +One of all, the least of all, is the victim predestined. Once by +inadvertence twice by design he challenges his destiny. It comes when +he is abandoned and challenges him reluctant and, as an apparition of +hope and youth, holds him unresisting. It leads him to a strange +habitation, to a secret infidel apartment, and there, implacable, +immolates him, consenting. + +Why was the host (victim predestined) sad? + +He wished that a tale of a deed should be told of a deed not by him +should by him not be told. + +Why was the host (reluctant, unresisting) still? + +In accordance with the law of the conservation of energy. + +Why was the host (secret infidel) silent? + +He weighed the possible evidences for and against ritual murder: the +incitations of the hierarchy, the superstition of the populace, the +propagation of rumour in continued fraction of veridicity, the envy of +opulence, the influence of retaliation, the sporadic reappearance of +atavistic delinquency, the mitigating circumstances of fanaticism, +hypnotic suggestion and somnambulism. + +From which (if any) of these mental or physical disorders was he not +totally immune? + +From hypnotic suggestion: once, waking, he had not recognised his +sleeping apartment: more than once, waking, he had been for an +indefinite time incapable of moving or uttering sounds. From +somnambulism: once, sleeping, his body had risen, crouched and crawled +in the direction of a heatless fire and, having attained its +destination, there, curled, unheated, in night attire had lain, +sleeping. + +Had this latter or any cognate phenomenon declared itself in any member +of his family? + +Twice, in Holles street and in Ontario terrace, his daughter Millicent +(Milly) at the ages of 6 and 8 years had uttered in sleep an +exclamation of terror and had replied to the interrogations of two +figures in night attire with a vacant mute expression. + +What other infantile memories had he of her? + +15 June 1889. A querulous newborn female infant crying to cause and +lessen congestion. A child renamed Padney Socks she shook with shocks +her moneybox: counted his three free moneypenny buttons, one, tloo, +tlee: a doll, a boy, a sailor she cast away: blond, born of two dark, +she had blond ancestry, remote, a violation, Herr Hauptmann Hainau, +Austrian army, proximate, a hallucination, lieutenant Mulvey, British +navy. + +What endemic characteristics were present? + +Conversely the nasal and frontal formation was derived in a direct line +of lineage which, though interrupted, would continue at distant +intervals to more distant intervals to its most distant intervals. + +What memories had he of her adolescence? + +She relegated her hoop and skippingrope to a recess. On the duke’s +lawn, entreated by an English visitor, she declined to permit him to +make and take away her photographic image (objection not stated). On +the South Circular road in the company of Elsa Potter, followed by an +individual of sinister aspect, she went half way down Stamer street and +turned abruptly back (reason of change not stated). On the vigil of the +15th anniversary of her birth she wrote a letter from Mullingar, county +Westmeath, making a brief allusion to a local student (faculty and year +not stated). + +Did that first division, portending a second division, afflict him? + +Less than he had imagined, more than he had hoped. + +What second departure was contemporaneously perceived by him similarly, +if differently? + +A temporary departure of his cat. + +Why similarly, why differently? + +Similarly, because actuated by a secret purpose the quest of a new male +(Mullingar student) or of a healing herb (valerian). Differently, +because of different possible returns to the inhabitants or to the +habitation. + +In other respects were their differences similar? + +In passivity, in economy, in the instinct of tradition, in +unexpectedness. + +As? + +Inasmuch as leaning she sustained her blond hair for him to ribbon it +for her (cf neckarching cat). Moreover, on the free surface of the lake +in Stephen’s green amid inverted reflections of trees her uncommented +spit, describing concentric circles of waterrings, indicated by the +constancy of its permanence the locus of a somnolent prostrate fish (cf +mousewatching cat). Again, in order to remember the date, combatants, +issue and consequences of a famous military engagement she pulled a +plait of her hair (cf earwashing cat). Furthermore, silly Milly, she +dreamed of having had an unspoken unremembered conversation with a +horse whose name had been Joseph to whom (which) she had offered a +tumblerful of lemonade which it (he) had appeared to have accepted (cf +hearthdreaming cat). Hence, in passivity, in economy, in the instinct +of tradition, in unexpectedness, their differences were similar. + +In what way had he utilised gifts (1) an owl, 2) a clock, given as +matrimonial auguries, to interest and to instruct her? + +As object lessons to explain: 1) the nature and habits of oviparous +animals, the possibility of aerial flight, certain abnormalities of +vision, the secular process of imbalsamation: 2) the principle of the +pendulum, exemplified in bob, wheelgear and regulator, the translation +in terms of human or social regulation of the various positions of +clockwise moveable indicators on an unmoving dial, the exactitude of +the recurrence per hour of an instant in each hour when the longer and +the shorter indicator were at the same angle of inclination, +_videlicet_, 5 5/11 minutes past each hour per hour in arithmetical +progression. + +In what manners did she reciprocate? + +She remembered: on the 27th anniversary of his birth she presented to +him a breakfast moustachecup of imitation Crown Derby porcelain ware. +She provided: at quarter day or thereabouts if or when purchases had +been made by him not for her she showed herself attentive to his +necessities, anticipating his desires. She admired: a natural +phenomenon having been explained by him to her she expressed the +immediate desire to possess without gradual acquisition a fraction of +his science, the moiety, the quarter, a thousandth part. + +What proposal did Bloom, diambulist, father of Milly, somnambulist, +make to Stephen, noctambulist? + +To pass in repose the hours intervening between Thursday (proper) and +Friday (normal) on an extemporised cubicle in the apartment immediately +above the kitchen and immediately adjacent to the sleeping apartment of +his host and hostess. + +What various advantages would or might have resulted from a +prolongation of such an extemporisation? + +For the guest: security of domicile and seclusion of study. For the +host: rejuvenation of intelligence, vicarious satisfaction. For the +hostess: disintegration of obsession, acquisition of correct Italian +pronunciation. + +Why might these several provisional contingencies between a guest and a +hostess not necessarily preclude or be precluded by a permanent +eventuality of reconciliatory union between a schoolfellow and a jew’s +daughter? + +Because the way to daughter led through mother, the way to mother +through daughter. + +To what inconsequent polysyllabic question of his host did the guest +return a monosyllabic negative answer? + +If he had known the late Mrs Emily Sinico, accidentally killed at +Sydney Parade railway station, 14 October 1903. + +What inchoate corollary statement was consequently suppressed by the +host? + +A statement explanatory of his absence on the occasion of the interment +of Mrs Mary Dedalus (born Goulding), 26 June 1903, vigil of the +anniversary of the decease of Rudolph Bloom (born Virag). + +Was the proposal of asylum accepted? + +Promptly, inexplicably, with amicability, gratefully it was declined. + +What exchange of money took place between host and guest? + +The former returned to the latter, without interest, a sum of money (£ +1-7-0), one pound seven shillings sterling, advanced by the latter to +the former. + +What counterproposals were alternately advanced, accepted, modified, +declined, restated in other terms, reaccepted, ratified, reconfirmed? + +To inaugurate a prearranged course of Italian instruction, place the +residence of the instructed. To inaugurate a course of vocal +instruction, place the residence of the instructress. To inaugurate a +series of static, semistatic and peripatetic intellectual dialogues, +places the residence of both speakers (if both speakers were resident +in the same place), the _Ship_ hotel and tavern, 6 Lower Abbey street +(W. and E. Connery, proprietors), the National Library of Ireland, 10 +Kildare street, the National Maternity Hospital, 29, 30 and 31 Holles +street, a public garden, the vicinity of a place of worship, a +conjunction of two or more public thoroughfares, the point of bisection +of a right line drawn between their residences (if both speakers were +resident in different places). + +What rendered problematic for Bloom the realisation of these mutually +selfexcluding propositions? + +The irreparability of the past: once at a performance of Albert +Hengler’s circus in the Rotunda, Rutland square, Dublin, an intuitive +particoloured clown in quest of paternity had penetrated from the ring +to a place in the auditorium where Bloom, solitary, was seated and had +publicly declared to an exhilarated audience that he (Bloom) was his +(the clown’s) papa. The imprevidibility of the future: once in the +summer of 1898 he (Bloom) had marked a florin (2/-) with three notches +on the milled edge and tendered it in payment of an account due to and +received by J. and T. Davy, family grocers, 1 Charlemont Mall, Grand +Canal, for circulation on the waters of civic finance, for possible, +circuitous or direct, return. + +Was the clown Bloom’s son? + +No. + +Had Bloom’s coin returned? + +Never. + +Why would a recurrent frustration the more depress him? + +Because at the critical turningpoint of human existence he desired to +amend many social conditions, the product of inequality and avarice and +international animosity. + +He believed then that human life was infinitely perfectible, +eliminating these conditions? + +There remained the generic conditions imposed by natural, as distinct +from human law, as integral parts of the human whole: the necessity of +destruction to procure alimentary sustenance: the painful character of +the ultimate functions of separate existence, the agonies of birth and +death: the monotonous menstruation of simian and (particularly) human +females extending from the age of puberty to the menopause: inevitable +accidents at sea, in mines and factories: certain very painful maladies +and their resultant surgical operations, innate lunacy and congenital +criminality, decimating epidemics: catastrophic cataclysms which make +terror the basis of human mentality: seismic upheavals the epicentres +of which are located in densely populated regions: the fact of vital +growth, through convulsions of metamorphosis, from infancy through +maturity to decay. + +Why did he desist from speculation? + +Because it was a task for a superior intelligence to substitute other +more acceptable phenomena in the place of the less acceptable phenomena +to be removed. + +Did Stephen participate in his dejection? + +He affirmed his significance as a conscious rational animal proceeding +syllogistically from the known to the unknown and a conscious rational +reagent between a micro and a macrocosm ineluctably constructed upon +the incertitude of the void. + +Was this affirmation apprehended by Bloom? + +Not verbally. Substantially. + +What comforted his misapprehension? + +That as a competent keyless citizen he had proceeded energetically from +the unknown to the known through the incertitude of the void. + +In what order of precedence, with what attendant ceremony was the +exodus from the house of bondage to the wilderness of inhabitation +effected? + +Lighted Candle in Stick borne by +BLOOM +Diaconal Hat on Ashplant borne by +STEPHEN + +With what intonation _secreto_ of what commemorative psalm? + +The 113th, _modus peregrinus: In exitu Israël de Egypto: domus Jacob de +populo barbaro_. + +What did each do at the door of egress? + +Bloom set the candlestick on the floor. Stephen put the hat on his +head. + +For what creature was the door of egress a door of ingress? + +For a cat. + +What spectacle confronted them when they, first the host, then the +guest, emerged silently, doubly dark, from obscurity by a passage from +the rere of the house into the penumbra of the garden? + +The heaventree of stars hung with humid nightblue fruit. + +With what meditations did Bloom accompany his demonstration to his +companion of various constellations? + +Meditations of evolution increasingly vaster: of the moon invisible in +incipient lunation, approaching perigee: of the infinite lattiginous +scintillating uncondensed milky way, discernible by daylight by an +observer placed at the lower end of a cylindrical vertical shaft 5000 +ft deep sunk from the surface towards the centre of the earth: of +Sirius (alpha in Canis Maior) 10 lightyears (57,000,000,000,000 miles) +distant and in volume 900 times the dimension of our planet: of +Arcturus: of the precession of equinoxes: of Orion with belt and +sextuple sun theta and nebula in which 100 of our solar systems could +be contained: of moribund and of nascent new stars such as Nova in +1901: of our system plunging towards the constellation of Hercules: of +the parallax or parallactic drift of socalled fixed stars, in reality +evermoving wanderers from immeasurably remote eons to infinitely remote +futures in comparison with which the years, threescore and ten, of +allotted human life formed a parenthesis of infinitesimal brevity. + +Were there obverse meditations of involution increasingly less vast? + +Of the eons of geological periods recorded in the stratifications of +the earth: of the myriad minute entomological organic existences +concealed in cavities of the earth, beneath removable stones, in hives +and mounds, of microbes, germs, bacteria, bacilli, spermatozoa: of the +incalculable trillions of billions of millions of imperceptible +molecules contained by cohesion of molecular affinity in a single +pinhead: of the universe of human serum constellated with red and white +bodies, themselves universes of void space constellated with other +bodies, each, in continuity, its universe of divisible component bodies +of which each was again divisible in divisions of redivisible component +bodies, dividends and divisors ever diminishing without actual division +till, if the progress were carried far enough, nought nowhere was never +reached. + +Why did he not elaborate these calculations to a more precise result? + +Because some years previously in 1886 when occupied with the problem of +the quadrature of the circle he had learned of the existence of a +number computed to a relative degree of accuracy to be of such +magnitude and of so many places, e.g., the 9th power of the 9th power +of 9, that, the result having been obtained, 33 closely printed volumes +of 1000 pages each of innumerable quires and reams of India paper would +have to be requisitioned in order to contain the complete tale of its +printed integers of units, tens, hundreds, thousands, tens of +thousands, hundreds of thousands, millions, tens of millions, hundreds +of millions, billions, the nucleus of the nebula of every digit of +every series containing succinctly the potentiality of being raised to +the utmost kinetic elaboration of any power of any of its powers. + +Did he find the problems of the inhabitability of the planets and their +satellites by a race, given in species, and of the possible social and +moral redemption of said race by a redeemer, easier of solution? + +Of a different order of difficulty. Conscious that the human organism, +normally capable of sustaining an atmospheric pressure of 19 tons, when +elevated to a considerable altitude in the terrestrial atmosphere +suffered with arithmetical progression of intensity, according as the +line of demarcation between troposphere and stratosphere was +approximated from nasal hemorrhage, impeded respiration and vertigo, +when proposing this problem for solution, he had conjectured as a +working hypothesis which could not be proved impossible that a more +adaptable and differently anatomically constructed race of beings might +subsist otherwise under Martian, Mercurial, Veneral, Jovian, Saturnian, +Neptunian or Uranian sufficient and equivalent conditions, though an +apogean humanity of beings created in varying forms with finite +differences resulting similar to the whole and to one another would +probably there as here remain inalterably and inalienably attached to +vanities, to vanities of vanities and to all that is vanity. + +And the problem of possible redemption? + +The minor was proved by the major. + +Which various features of the constellations were in turn considered? + +The various colours significant of various degrees of vitality (white, +yellow, crimson, vermilion, cinnabar): their degrees of brilliancy: +their magnitudes revealed up to and including the 7th: their positions: +the waggoner’s star: Walsingham way: the chariot of David: the annular +cinctures of Saturn: the condensation of spiral nebulae into suns: the +interdependent gyrations of double suns: the independent synchronous +discoveries of Galileo, Simon Marius, Piazzi, Le Verrier, Herschel, +Galle: the systematisations attempted by Bode and Kepler of cubes of +distances and squares of times of revolution: the almost infinite +compressibility of hirsute comets and their vast elliptical egressive +and reentrant orbits from perihelion to aphelion: the sidereal origin +of meteoric stones: the Libyan floods on Mars about the period of the +birth of the younger astroscopist: the annual recurrence of meteoric +showers about the period of the feast of S. Lawrence (martyr, 10 +August): the monthly recurrence known as the new moon with the old moon +in her arms: the posited influence of celestial on human bodies: the +appearance of a star (1st magnitude) of exceeding brilliancy dominating +by night and day (a new luminous sun generated by the collision and +amalgamation in incandescence of two nonluminous exsuns) about the +period of the birth of William Shakespeare over delta in the recumbent +neversetting constellation of Cassiopeia and of a star (2nd magnitude) +of similar origin but of lesser brilliancy which had appeared in and +disappeared from the constellation of the Corona Septentrionalis about +the period of the birth of Leopold Bloom and of other stars of +(presumably) similar origin which had (effectively or presumably) +appeared in and disappeared from the constellation of Andromeda about +the period of the birth of Stephen Dedalus, and in and from the +constellation of Auriga some years after the birth and death of Rudolph +Bloom, junior, and in and from other constellations some years before +or after the birth or death of other persons: the attendant phenomena +of eclipses, solar and lunar, from immersion to emersion, abatement of +wind, transit of shadow, taciturnity of winged creatures, emergence of +nocturnal or crepuscular animals, persistence of infernal light, +obscurity of terrestrial waters, pallor of human beings. + +His (Bloom’s) logical conclusion, having weighed the matter and +allowing for possible error? + +That it was not a heaventree, not a heavengrot, not a heavenbeast, not +a heavenman. That it was a Utopia, there being no known method from the +known to the unknown: an infinity renderable equally finite by the +suppositious apposition of one or more bodies equally of the same and +of different magnitudes: a mobility of illusory forms immobilised in +space, remobilised in air: a past which possibly had ceased to exist as +a present before its probable spectators had entered actual present +existence. + +Was he more convinced of the esthetic value of the spectacle? + +Indubitably in consequence of the reiterated examples of poets in the +delirium of the frenzy of attachment or in the abasement of rejection +invoking ardent sympathetic constellations or the frigidity of the +satellite of their planet. + +Did he then accept as an article of belief the theory of astrological +influences upon sublunary disasters? + +It seemed to him as possible of proof as of confutation and the +nomenclature employed in its selenographical charts as attributable to +verifiable intuition as to fallacious analogy: the lake of dreams, the +sea of rains, the gulf of dews, the ocean of fecundity. + +What special affinities appeared to him to exist between the moon and +woman? + +Her antiquity in preceding and surviving successive tellurian +generations: her nocturnal predominance: her satellitic dependence: her +luminary reflection: her constancy under all her phases, rising and +setting by her appointed times, waxing and waning: the forced +invariability of her aspect: her indeterminate response to +inaffirmative interrogation: her potency over effluent and refluent +waters: her power to enamour, to mortify, to invest with beauty, to +render insane, to incite to and aid delinquency: the tranquil +inscrutability of her visage: the terribility of her isolated dominant +implacable resplendent propinquity: her omens of tempest and of calm: +the stimulation of her light, her motion and her presence: the +admonition of her craters, her arid seas, her silence: her splendour, +when visible: her attraction, when invisible. + +What visible luminous sign attracted Bloom’s, who attracted Stephen’s, +gaze? + +In the second storey (rere) of his (Bloom’s) house the light of a +paraffin oil lamp with oblique shade projected on a screen of roller +blind supplied by Frank O’Hara, window blind, curtain pole and +revolving shutter manufacturer, 16 Aungier street. + +How did he elucidate the mystery of an invisible attractive person, his +wife Marion (Molly) Bloom, denoted by a visible splendid sign, a lamp? + +With indirect and direct verbal allusions or affirmations: with subdued +affection and admiration: with description: with impediment: with +suggestion. + +Both then were silent? + +Silent, each contemplating the other in both mirrors of the reciprocal +flesh of theirhisnothis fellowfaces. + +Were they indefinitely inactive? + +At Stephen’s suggestion, at Bloom’s instigation both, first Stephen, +then Bloom, in penumbra urinated, their sides contiguous, their organs +of micturition reciprocally rendered invisible by manual +circumposition, their gazes, first Bloom’s, then Stephen’s, elevated to +the projected luminous and semiluminous shadow. + +Similarly? + +The trajectories of their, first sequent, then simultaneous, urinations +were dissimilar: Bloom’s longer, less irruent, in the incomplete form +of the bifurcated penultimate alphabetical letter, who in his ultimate +year at High School (1880) had been capable of attaining the point of +greatest altitude against the whole concurrent strength of the +institution, 210 scholars: Stephen’s higher, more sibilant, who in the +ultimate hours of the previous day had augmented by diuretic +consumption an insistent vesical pressure. + +What different problems presented themselves to each concerning the +invisible audible collateral organ of the other? + +To Bloom: the problems of irritability, tumescence, rigidity, +reactivity, dimension, sanitariness, pilosity. + +To Stephen: the problem of the sacerdotal integrity of Jesus +circumcised (1 January, holiday of obligation to hear mass and abstain +from unnecessary servile work) and the problem as to whether the divine +prepuce, the carnal bridal ring of the holy Roman catholic apostolic +church, conserved in Calcata, were deserving of simple hyperduly or of +the fourth degree of latria accorded to the abscission of such divine +excrescences as hair and toenails. + +What celestial sign was by both simultaneously observed? + +A star precipitated with great apparent velocity across the firmament +from Vega in the Lyre above the zenith beyond the stargroup of the +Tress of Berenice towards the zodiacal sign of Leo. + +How did the centripetal remainer afford egress to the centrifugal +departer? + +By inserting the barrel of an arruginated male key in the hole of an +unstable female lock, obtaining a purchase on the bow of the key and +turning its wards from right to left, withdrawing a bolt from its +staple, pulling inward spasmodically an obsolescent unhinged door and +revealing an aperture for free egress and free ingress. + +How did they take leave, one of the other, in separation? + +Standing perpendicular at the same door and on different sides of its +base, the lines of their valedictory arms, meeting at any point and +forming any angle less than the sum of two right angles. + +What sound accompanied the union of their tangent, the disunion of +their (respectively) centrifugal and centripetal hands? + +The sound of the peal of the hour of the night by the chime of the +bells in the church of Saint George. + +What echoes of that sound were by both and each heard? + +By Stephen: + + Liliata rutilantium. Turma circumdet. + Iubilantium te virginum. Chorus excipiat. + +By Bloom: + + Heigho, heigho, + Heigho, heigho. + +Where were the several members of the company which with Bloom that day +at the bidding of that peal had travelled from Sandymount in the south +to Glasnevin in the north? + +Martin Cunningham (in bed), Jack Power (in bed), Simon Dedalus (in +bed), Ned Lambert (in bed), Tom Kernan (in bed), Joe Hynes (in bed), +John Henry Menton (in bed), Bernard Corrigan (in bed), Patsy Dignam (in +bed), Paddy Dignam (in the grave). + +Alone, what did Bloom hear? + +The double reverberation of retreating feet on the heavenborn earth, +the double vibration of a jew’s harp in the resonant lane. + +Alone, what did Bloom feel? + +The cold of interstellar space, thousands of degrees below freezing +point or the absolute zero of Fahrenheit, Centigrade or Réaumur: the +incipient intimations of proximate dawn. + +Of what did bellchime and handtouch and footstep and lonechill remind +him? + +Of companions now in various manners in different places defunct: Percy +Apjohn (killed in action, Modder River), Philip Gilligan (phthisis, +Jervis Street hospital), Matthew F. Kane (accidental drowning, Dublin +Bay), Philip Moisel (pyemia, Heytesbury street), Michael Hart +(phthisis, Mater Misericordiae hospital), Patrick Dignam (apoplexy, +Sandymount). + +What prospect of what phenomena inclined him to remain? + +The disparition of three final stars, the diffusion of daybreak, the +apparition of a new solar disk. + +Had he ever been a spectator of those phenomena? + +Once, in 1887, after a protracted performance of charades in the house +of Luke Doyle, Kimmage, he had awaited with patience the apparition of +the diurnal phenomenon, seated on a wall, his gaze turned in the +direction of Mizrach, the east. + +He remembered the initial paraphenomena? + +More active air, a matutinal distant cock, ecclesiastical clocks at +various points, avine music, the isolated tread of an early wayfarer, +the visible diffusion of the light of an invisible luminous body, the +first golden limb of the resurgent sun perceptible low on the horizon. + +Did he remain? + +With deep inspiration he returned, retraversing the garden, reentering +the passage, reclosing the door. With brief suspiration he reassumed +the candle, reascended the stairs, reapproached the door of the front +room, hallfloor, and reentered. + +What suddenly arrested his ingress? + +The right temporal lobe of the hollow sphere of his cranium came into +contact with a solid timber angle where, an infinitesimal but sensible +fraction of a second later, a painful sensation was located in +consequence of antecedent sensations transmitted and registered. + +Describe the alterations effected in the disposition of the articles of +furniture. + +A sofa upholstered in prune plush had been translocated from opposite +the door to the ingleside near the compactly furled Union Jack (an +alteration which he had frequently intended to execute): the blue and +white checker inlaid majolicatopped table had been placed opposite the +door in the place vacated by the prune plush sofa: the walnut sideboard +(a projecting angle of which had momentarily arrested his ingress) had +been moved from its position beside the door to a more advantageous but +more perilous position in front of the door: two chairs had been moved +from right and left of the ingleside to the position originally +occupied by the blue and white checker inlaid majolicatopped table. + +Describe them. + +One: a squat stuffed easychair, with stout arms extended and back +slanted to the rere, which, repelled in recoil, had then upturned an +irregular fringe of a rectangular rug and now displayed on its amply +upholstered seat a centralised diffusing and diminishing +discolouration. The other: a slender splayfoot chair of glossy cane +curves, placed directly opposite the former, its frame from top to seat +and from seat to base being varnished dark brown, its seat being a +bright circle of white plaited rush. + +What significances attached to these two chairs? + +Significances of similitude, of posture, of symbolism, of +circumstantial evidence, of testimonial supermanence. + +What occupied the position originally occupied by the sideboard? + +A vertical piano (Cadby) with exposed keyboard, its closed coffin +supporting a pair of long yellow ladies’ gloves and an emerald ashtray +containing four consumed matches, a partly consumed cigarette and two +discoloured ends of cigarettes, its musicrest supporting the music in +the key of G natural for voice and piano of _Love’s Old Sweet Song_ +(words by G. Clifton Bingham, composed by J. L. Molloy, sung by Madam +Antoinette Sterling) open at the last page with the final indications +_ad libitum, forte_, pedal, _animato_, sustained pedal, _ritirando_, +close. + +With what sensations did Bloom contemplate in rotation these objects? + +With strain, elevating a candlestick: with pain, feeling on his right +temple a contused tumescence: with attention, focussing his gaze on a +large dull passive and a slender bright active: with solicitation, +bending and downturning the upturned rugfringe: with amusement, +remembering Dr Malachi Mulligan’s scheme of colour containing the +gradation of green: with pleasure, repeating the words and antecedent +act and perceiving through various channels of internal sensibility the +consequent and concomitant tepid pleasant diffusion of gradual +discolouration. + +His next proceeding? + +From an open box on the majolicatopped table he extracted a black +diminutive cone, one inch in height, placed it on its circular base on +a small tin plate, placed his candlestick on the right corner of the +mantelpiece, produced from his waistcoat a folded page of prospectus +(illustrated) entitled Agendath Netaim, unfolded the same, examined it +superficially, rolled it into a thin cylinder, ignited it in the +candleflame, applied it when ignited to the apex of the cone till the +latter reached the stage of rutilance, placed the cylinder in the basin +of the candlestick disposing its unconsumed part in such a manner as to +facilitate total combustion. + +What followed this operation? + +The truncated conical crater summit of the diminutive volcano emitted a +vertical and serpentine fume redolent of aromatic oriental incense. + +What homothetic objects, other than the candlestick, stood on the +mantelpiece? + +A timepiece of striated Connemara marble, stopped at the hour of 4.46 +a.m. on the 21 March 1896, matrimonial gift of Matthew Dillon: a dwarf +tree of glacial arborescence under a transparent bellshade, matrimonial +gift of Luke and Caroline Doyle: an embalmed owl, matrimonial gift of +Alderman John Hooper. + +What interchanges of looks took place between these three objects and +Bloom? + +In the mirror of the giltbordered pierglass the undecorated back of the +dwarf tree regarded the upright back of the embalmed owl. Before the +mirror the matrimonial gift of Alderman John Hooper with a clear +melancholy wise bright motionless compassionate gaze regarded Bloom +while Bloom with obscure tranquil profound motionless compassionated +gaze regarded the matrimonial gift of Luke and Caroline Doyle. + +What composite asymmetrical image in the mirror then attracted his +attention? + +The image of a solitary (ipsorelative) mutable (aliorelative) man. + +Why solitary (ipsorelative)? + + Brothers and sisters had he none. + Yet that man’s father was his grandfather’s son. + +Why mutable (aliorelative)? + +From infancy to maturity he had resembled his maternal procreatrix. +From maturity to senility he would increasingly resemble his paternal +procreator. + +What final visual impression was communicated to him by the mirror? + +The optical reflection of several inverted volumes improperly arranged +and not in the order of their common letters with scintillating titles +on the two bookshelves opposite. + +Catalogue these books. + +_Thom’s Dublin Post Office Directory_, 1886. + +Denis Florence M’Carthy’s _Poetical Works_ (copper beechleaf bookmark +at p. 5). + +Shakespeare’s _Works_ (dark crimson morocco, goldtooled). + +_The Useful Ready Reckoner_ (brown cloth). + +_The Secret History of the Court of Charles II_ (red cloth, tooled +binding). + +_The Child’s Guide_ (blue cloth). + +_The Beauties of Killarney_ (wrappers). + +_When We Were Boys_ by William O’Brien M. P. (green cloth, slightly +faded, envelope bookmark at p. 217). + +_Thoughts from Spinoza_ (maroon leather). + +_The Story of the Heavens_ by Sir Robert Ball (blue cloth). + +Ellis’s _Three Trips to Madagascar_ (brown cloth, title obliterated). + +_The Stark-Munro Letters_ by A. Conan Doyle, property of the City of +Dublin Public Library, 106 Capel street, lent 21 May (Whitsun Eve) +1904, due 4 June 1904, 13 days overdue (black cloth binding, bearing +white letternumber ticket). + +_Voyages in China_ by “Viator” (recovered with brown paper, red ink +title). + +_Philosophy of the Talmud_ (sewn pamphlet). + +Lockhart’s _Life of Napoleon_ (cover wanting, marginal annotations, +minimising victories, aggrandising defeats of the protagonist). + +_Soll und Haben_ by Gustav Freytag (black boards, Gothic characters, +cigarette coupon bookmark at p. 24). + +Hozier’s _History of the Russo-Turkish War_ (brown cloth, 2 volumes, +with gummed label, Garrison Library, Governor’s Parade, Gibraltar, on +verso of cover). + +_Laurence Bloomfield in Ireland_ by William Allingham (second edition, +green cloth, gilt trefoil design, previous owner’s name on recto of +flyleaf erased). + +_A Handbook of Astronomy_ (cover, brown leather, detached, 5 plates, +antique letterpress long primer, author’s footnotes nonpareil, marginal +clues brevier, captions small pica). + +_The Hidden Life of Christ_ (black boards). + +_In the Track of the Sun_ (yellow cloth, titlepage missing, recurrent +title intestation). + +_Physical Strength and How to Obtain It_ by Eugen Sandow (red cloth). + +_Short but yet Plain Elements of Geometry_ written in French by F. +Ignat. Pardies and rendered into Engliſh by John Harris D. D. London, +printed for R. Knaplock at the Biſhop’s Head, MDCCXI, with dedicatory +epiſtle to his worthy friend Charles Cox, eſquire, Member of Parliament +for the burgh of Southwark and having ink calligraphed statement on the +flyleaf certifying that the book was the property of Michael Gallagher, +dated this 10th day of May 1822 and requeſting the perſon who should +find it, if the book should be loſt or go aſtray, to reſtore it to +Michael Gallagher, carpenter, Dufery Gate, Enniſcorthy, county Wicklow, +the fineſt place in the world. + +What reflections occupied his mind during the process of reversion of +the inverted volumes? + +The necessity of order, a place for everything and everything in its +place: the deficient appreciation of literature possessed by females: +the incongruity of an apple incuneated in a tumbler and of an umbrella +inclined in a closestool: the insecurity of hiding any secret document +behind, beneath or between the pages of a book. + +Which volume was the largest in bulk? + +Hozier’s _History of the Russo-Turkish War._ + +What among other data did the second volume of the work in question +contain? + +The name of a decisive battle (forgotten), frequently remembered by a +decisive officer, major Brian Cooper Tweedy (remembered). + +Why, firstly and secondly, did he not consult the work in question? + +Firstly, in order to exercise mnemotechnic: secondly, because after an +interval of amnesia, when, seated at the central table, about to +consult the work in question, he remembered by mnemotechnic the name of +the military engagement, Plevna. + +What caused him consolation in his sitting posture? + +The candour, nudity, pose, tranquility, youth, grace, sex, counsel of a +statue erect in the centre of the table, an image of Narcissus +purchased by auction from P. A. Wren, 9 Bachelor’s Walk. + +What caused him irritation in his sitting posture? + +Inhibitory pressure of collar (size 17) and waistcoat (5 buttons), two +articles of clothing superfluous in the costume of mature males and +inelastic to alterations of mass by expansion. + +How was the irritation allayed? + +He removed his collar, with contained black necktie and collapsible +stud, from his neck to a position on the left of the table. He +unbuttoned successively in reversed direction waistcoat, trousers, +shirt and vest along the medial line of irregular incrispated black +hairs extending in triangular convergence from the pelvic basin over +the circumference of the abdomen and umbilicular fossicle along the +medial line of nodes to the intersection of the sixth pectoral +vertebrae, thence produced both ways at right angles and terminating in +circles described about two equidistant points, right and left, on the +summits of the mammary prominences. He unbraced successively each of +six minus one braced trouser buttons, arranged in pairs, of which one +incomplete. + +What involuntary actions followed? + +He compressed between 2 fingers the flesh circumjacent to a cicatrice +in the left infracostal region below the diaphragm resulting from a +sting inflicted 2 weeks and 3 days previously (23 May 1904) by a bee. +He scratched imprecisely with his right hand, though insensible of +prurition, various points and surfaces of his partly exposed, wholly +abluted skin. He inserted his left hand into the left lower pocket of +his waistcoat and extracted and replaced a silver coin (1 shilling), +placed there (presumably) on the occasion (17 October 1903) of the +interment of Mrs Emily Sinico, Sydney Parade. + +Compile the budget for 16 June 1904. + + Debit + £. s. d. + 1 Pork kidney 0—0—3 + 1 Copy Freeman’s Journal 0—0—1 + 1 Bath and Gratification 0—1—6 + Tramfare 0—0—1 + 1 In Memoriam Patrick Dignam 0—5—0 + 2 Banbury cakes 0—0—1 + 1 Lunch 0—0—7 + 1 Renewal fee for book 0—1—0 + 1 Packet Notepaper and Envelopes 0—0—2 + 1 Dinner and Gratification 0—2—0 + 1 Postal Order and Stamp 0—2—8 + Tramfare 0—0—1 + 1 Pig’s Foot 0—0—4 + 1 Sheep’s Trotter 0—0—3 + 1 Cake Fry’s Plain Chocolate 0—0—1 + 1 Square Soda Bread 0—0—4 + 1 Coffee and Bun 0—0—4 + Loan (Stephen Dedalus) refunded 1—7—0 + BALANCE 0—16—6 + ————— + 2—19—3 + Credit + £. s. d. + Cash in hand 0—4—9 + Commission recd. Freeman’s Journal 1—7—6 + Loan (Stephen Dedalus) 1—7—0 + ————— + 2—19—3 +Did the process of divestiture continue? + +Did the process of divestiture continue? + +Sensible of a benignant persistent ache in his footsoles he extended +his foot to one side and observed the creases, protuberances and +salient points caused by foot pressure in the course of walking +repeatedly in several different directions, then, inclined, he disnoded +the laceknots, unhooked and loosened the laces, took off each of his +two boots for the second time, detached the partially moistened right +sock through the fore part of which the nail of his great toe had again +effracted, raised his right foot and, having unhooked a purple elastic +sock suspender, took off his right sock, placed his unclothed right +foot on the margin of the seat of his chair, picked at and gently +lacerated the protruding part of the great toenail, raised the part +lacerated to his nostrils and inhaled the odour of the quick, then, +with satisfaction, threw away the lacerated ungual fragment. + +Why with satisfaction? + +Because the odour inhaled corresponded to other odours inhaled of other +ungual fragments, picked and lacerated by Master Bloom, pupil of Mrs +Ellis’s juvenile school, patiently each night in the act of brief +genuflection and nocturnal prayer and ambitious meditation. + +In what ultimate ambition had all concurrent and consecutive ambitions +now coalesced? + +Not to inherit by right of primogeniture, gavelkind or borough English, +or possess in perpetuity an extensive demesne of a sufficient number of +acres, roods and perches, statute land measure (valuation £ 42), of +grazing turbary surrounding a baronial hall with gatelodge and carriage +drive nor, on the other hand, a terracehouse or semidetached villa, +described as _Rus in Urbe_ or _Qui si sana_, but to purchase by private +treaty in fee simple a thatched bungalowshaped 2 storey dwellinghouse +of southerly aspect, surmounted by vane and lightning conductor, +connected with the earth, with porch covered by parasitic plants (ivy +or Virginia creeper), halldoor, olive green, with smart carriage finish +and neat doorbrasses, stucco front with gilt tracery at eaves and +gable, rising, if possible, upon a gentle eminence with agreeable +prospect from balcony with stone pillar parapet over unoccupied and +unoccupyable interjacent pastures and standing in 5 or 6 acres of its +own ground, at such a distance from the nearest public thoroughfare as +to render its houselights visible at night above and through a quickset +hornbeam hedge of topiary cutting, situate at a given point not less +than 1 statute mile from the periphery of the metropolis, within a time +limit of not more than 15 minutes from tram or train line (e.g., +Dundrum, south, or Sutton, north, both localities equally reported by +trial to resemble the terrestrial poles in being favourable climates +for phthisical subjects), the premises to be held under feefarm grant, +lease 999 years, the messuage to consist of 1 drawingroom with +baywindow (2 lancets), thermometer affixed, 1 sittingroom, 4 bedrooms, +2 servants’ rooms, tiled kitchen with close range and scullery, lounge +hall fitted with linen wallpresses, fumed oak sectional bookcase +containing the Encyclopaedia Britannica and New Century Dictionary, +transverse obsolete medieval and oriental weapons, dinner gong, +alabaster lamp, bowl pendant, vulcanite automatic telephone receiver +with adjacent directory, handtufted Axminster carpet with cream ground +and trellis border, loo table with pillar and claw legs, hearth with +massive firebrasses and ormolu mantel chronometer clock, guaranteed +timekeeper with cathedral chime, barometer with hygrographic chart, +comfortable lounge settees and corner fitments, upholstered in ruby +plush with good springing and sunk centre, three banner Japanese screen +and cuspidors (club style, rich winecoloured leather, gloss renewable +with a minimum of labour by use of linseed oil and vinegar) and +pyramidically prismatic central chandelier lustre, bentwood perch with +fingertame parrot (expurgated language), embossed mural paper at 10/- +per dozen with transverse swags of carmine floral design and top crown +frieze, staircase, three continuous flights at successive right angles, +of varnished cleargrained oak, treads and risers, newel, balusters and +handrail, with steppedup panel dado, dressed with camphorated wax: +bathroom, hot and cold supply, reclining and shower: water closet on +mezzanine provided with opaque singlepane oblong window, tipup seat, +bracket lamp, brass tierod and brace, armrests, footstool and artistic +oleograph on inner face of door: ditto, plain: servants’ apartments +with separate sanitary and hygienic necessaries for cook, general and +betweenmaid (salary, rising by biennial unearned increments of £ 2, +with comprehensive fidelity insurance, annual bonus (£ 1) and retiring +allowance (based on the 65 system) after 30 years’ service), pantry, +buttery, larder, refrigerator, outoffices, coal and wood cellarage with +winebin (still and sparkling vintages) for distinguished guests, if +entertained to dinner (evening dress), carbon monoxide gas supply +throughout. + +What additional attractions might the grounds contain? + +As addenda, a tennis and fives court, a shrubbery, a glass summerhouse +with tropical palms, equipped in the best botanical manner, a rockery +with waterspray, a beehive arranged on humane principles, oval +flowerbeds in rectangular grassplots set with eccentric ellipses of +scarlet and chrome tulips, blue scillas, crocuses, polyanthus, sweet +William, sweet pea, lily of the valley (bulbs obtainable from sir James +W. Mackey (Limited) wholesale and retail seed and bulb merchants and +nurserymen, agents for chemical manures, 23 Sackville street, upper), +an orchard, kitchen garden and vinery, protected against illegal +trespassers by glasstopped mural enclosures, a lumbershed with padlock +for various inventoried implements. + +As? + +Eeltraps, lobsterpots, fishingrods, hatchet, steelyard, grindstone, +clodcrusher, swatheturner, carriagesack, telescope ladder, 10 tooth +rake, washing clogs, haytedder, tumbling rake, billhook, paintpot, +brush, hoe and so on. + +What improvements might be subsequently introduced? + +A rabbitry and fowlrun, a dovecote, a botanical conservatory, 2 +hammocks (lady’s and gentleman’s), a sundial shaded and sheltered by +laburnum or lilac trees, an exotically harmonically accorded Japanese +tinkle gatebell affixed to left lateral gatepost, a capacious +waterbutt, a lawnmower with side delivery and grassbox, a lawnsprinkler +with hydraulic hose. + +What facilities of transit were desirable? + +When citybound frequent connection by train or tram from their +respective intermediate station or terminal. When countrybound +velocipedes, a chainless freewheel roadster cycle with side basketcar +attached, or draught conveyance, a donkey with wicker trap or smart +phaeton with good working solidungular cob (roan gelding, 14 h). + +What might be the name of this erigible or erected residence? + +Bloom Cottage. Saint Leopold’s. Flowerville. + +Could Bloom of 7 Eccles street foresee Bloom of Flowerville? + +In loose allwool garments with Harris tweed cap, price 8/6, and useful +garden boots with elastic gussets and wateringcan, planting aligned +young firtrees, syringing, pruning, staking, sowing hayseed, trundling +a weedladen wheelbarrow without excessive fatigue at sunset amid the +scent of newmown hay, ameliorating the soil, multiplying wisdom, +achieving longevity. + +What syllabus of intellectual pursuits was simultaneously possible? + +Snapshot photography, comparative study of religions, folklore relative +to various amatory and superstitious practices, contemplation of the +celestial constellations. + +What lighter recreations? + +Outdoor: garden and fieldwork, cycling on level macadamised causeways, +ascents of moderately high hills, natation in secluded fresh water and +unmolested river boating in secure wherry or light curricle with kedge +anchor on reaches free from weirs and rapids (period of estivation), +vespertinal perambulation or equestrian circumprocession with +inspection of sterile landscape and contrastingly agreeable cottagers’ +fires of smoking peat turves (period of hibernation). Indoor: +discussion in tepid security of unsolved historical and criminal +problems: lecture of unexpurgated exotic erotic masterpieces: house +carpentry with toolbox containing hammer, awl, nails, screws, tintacks, +gimlet, tweezers, bullnose plane and turnscrew. + +Might he become a gentleman farmer of field produce and live stock? + +Not impossibly, with 1 or 2 stripper cows, 1 pike of upland hay and +requisite farming implements, e.g., an end-to-end churn, a turnip +pulper etc. + +What would be his civic functions and social status among the county +families and landed gentry? + +Arranged successively in ascending powers of hierarchical order, that +of gardener, groundsman, cultivator, breeder, and at the zenith of his +career, resident magistrate or justice of the peace with a family crest +and coat of arms and appropriate classical motto _(Semper paratus_), +duly recorded in the court directory (Bloom, Leopold P., M. P., P. C., +K. P., L. L. D. (_honoris causa_), Bloomville, Dundrum) and mentioned +in court and fashionable intelligence (Mr and Mrs Leopold Bloom have +left Kingstown for England). + +What course of action did he outline for himself in such capacity? + +A course that lay between undue clemency and excessive rigour: the +dispensation in a heterogeneous society of arbitrary classes, +incessantly rearranged in terms of greater and lesser social +inequality, of unbiassed homogeneous indisputable justice, tempered +with mitigants of the widest possible latitude but exactable to the +uttermost farthing with confiscation of estate, real and personal, to +the crown. Loyal to the highest constituted power in the land, actuated +by an innate love of rectitude his aims would be the strict maintenance +of public order, the repression of many abuses though not of all +simultaneously (every measure of reform or retrenchment being a +preliminary solution to be contained by fluxion in the final solution), +the upholding of the letter of the law (common, statute and law +merchant) against all traversers in covin and trespassers acting in +contravention of bylaws and regulations, all resuscitators (by trespass +and petty larceny of kindlings) of venville rights, obsolete by +desuetude, all orotund instigators of international persecution, all +perpetuators of international animosities, all menial molestors of +domestic conviviality, all recalcitrant violators of domestic +connubiality. + +Prove that he had loved rectitude from his earliest youth. + +To Master Percy Apjohn at High School in 1880 he had divulged his +disbelief in the tenets of the Irish (protestant) church (to which his +father Rudolf Virag (later Rudolph Bloom) had been converted from the +Israelitic faith and communion in 1865 by the Society for promoting +Christianity among the jews) subsequently abjured by him in favour of +Roman catholicism at the epoch of and with a view to his matrimony in +1888. To Daniel Magrane and Francis Wade in 1882 during a juvenile +friendship (terminated by the premature emigration of the former) he +had advocated during nocturnal perambulations the political theory of +colonial (e.g. Canadian) expansion and the evolutionary theories of +Charles Darwin, expounded in _The Descent of Man_ and _The Origin of +Species_. In 1885 he had publicly expressed his adherence to the +collective and national economic programme advocated by James Fintan +Lalor, John Fisher Murray, John Mitchel, J. F. X. O’Brien and others, +the agrarian policy of Michael Davitt, the constitutional agitation of +Charles Stewart Parnell (M. P. for Cork City), the programme of peace, +retrenchment and reform of William Ewart Gladstone (M. P. for +Midlothian, N. B.) and, in support of his political convictions, had +climbed up into a secure position amid the ramifications of a tree on +Northumberland road to see the entrance (2 February 1888) into the +capital of a demonstrative torchlight procession of 20,000 +torchbearers, divided into 120 trade corporations, bearing 2000 torches +in escort of the marquess of Ripon and (honest) John Morley. + +How much and how did he propose to pay for this country residence? + +As per prospectus of the Industrious Foreign Acclimatised Nationalised +Friendly Stateaided Building Society (incorporated 1874), a maximum of +£ 60 per annum, being 1/6 of an assured income, derived from giltedged +securities, representing at 5 % simple interest on capital of £ 1200 +(estimate of price at 20 years’ purchase), of which 1/3 to be paid on +acquisition and the balance in the form of annual rent, viz. £ 800 plus +2 1/2 % interest on the same, repayable quarterly in equal annual +instalments until extinction by amortisation of loan advanced for +purchase within a period of 20 years, amounting to an annual rental of +£ 64, headrent included, the titledeeds to remain in possession of the +lender or lenders with a saving clause envisaging forced sale, +foreclosure and mutual compensation in the event of protracted failure +to pay the terms assigned, otherwise the messuage to become the +absolute property of the tenant occupier upon expiry of the period of +years stipulated. + +What rapid but insecure means to opulence might facilitate immediate +purchase? + +A private wireless telegraph which would transmit by dot and dash +system the result of a national equine handicap (flat or steeplechase) +of 1 or more miles and furlongs won by an outsider at odds of 50 to 1 +at 3 hr 8 m p.m. at Ascot (Greenwich time), the message being received +and available for betting purposes in Dublin at 2.59 p.m. (Dunsink +time). The unexpected discovery of an object of great monetary value +(precious stone, valuable adhesive or impressed postage stamps (7 +schilling, mauve, imperforate, Hamburg, 1866: 4 pence, rose, blue +paper, perforate, Great Britain, 1855: 1 franc, stone, official, +rouletted, diagonal surcharge, Luxemburg, 1878), antique dynastical +ring, unique relic) in unusual repositories or by unusual means: from +the air (dropped by an eagle in flight), by fire (amid the carbonised +remains of an incendiated edifice), in the sea (amid flotsam, jetsam, +lagan and derelict), on earth (in the gizzard of a comestible fowl). A +Spanish prisoner’s donation of a distant treasure of valuables or +specie or bullion lodged with a solvent banking corporation 100 years +previously at 5% compound interest of the collective worth of £ +5,000,000 stg (five million pounds sterling). A contract with an +inconsiderate contractee for the delivery of 32 consignments of some +given commodity in consideration of cash payment on delivery per +delivery at the initial rate of 1/4d to be increased constantly in the +geometrical progression of 2 (1/4d, 1/2d, 1d, 2d, 4d, 8d, 1s 4d, 2s 8d +to 32 terms). A prepared scheme based on a study of the laws of +probability to break the bank at Monte Carlo. A solution of the secular +problem of the quadrature of the circle, government premium £ 1,000,000 +sterling. + +Was vast wealth acquirable through industrial channels? + +The reclamation of dunams of waste arenary soil, proposed in the +prospectus of Agendath Netaim, Bleibtreustrasse, Berlin, W. 15, by the +cultivation of orange plantations and melonfields and reafforestation. +The utilisation of waste paper, fells of sewer rodents, human excrement +possessing chemical properties, in view of the vast production of the +first, vast number of the second and immense quantity of the third, +every normal human being of average vitality and appetite producing +annually, cancelling byproducts of water, a sum total of 80 lbs. (mixed +animal and vegetable diet), to be multiplied by 4,386,035, the total +population of Ireland according to census returns of 1901. + +Were there schemes of wider scope? + +A scheme to be formulated and submitted for approval to the harbour +commissioners for the exploitation of white coal (hydraulic power), +obtained by hydroelectric plant at peak of tide at Dublin bar or at +head of water at Poulaphouca or Powerscourt or catchment basins of main +streams for the economic production of 500,000 W. H. P. of electricity. +A scheme to enclose the peninsular delta of the North Bull at +Dollymount and erect on the space of the foreland, used for golf links +and rifle ranges, an asphalted esplanade with casinos, booths, shooting +galleries, hotels, boardinghouses, readingrooms, establishments for +mixed bathing. A scheme for the use of dogvans and goatvans for the +delivery of early morning milk. A scheme for the development of Irish +tourist traffic in and around Dublin by means of petrolpropelled +riverboats, plying in the fluvial fairway between Island bridge and +Ringsend, charabancs, narrow gauge local railways, and pleasure +steamers for coastwise navigation (10/- per person per day, guide +(trilingual) included). A scheme for the repristination of passenger +and goods traffics over Irish waterways, when freed from weedbeds. A +scheme to connect by tramline the Cattle Market (North Circular road +and Prussia street) with the quays (Sheriff street, lower, and East +Wall), parallel with the Link line railway laid (in conjunction with +the Great Southern and Western railway line) between the cattle park, +Liffey junction, and terminus of Midland Great Western Railway 43 to 45 +North Wall, in proximity to the terminal stations or Dublin branches of +Great Central Railway, Midland Railway of England, City of Dublin Steam +Packet Company, Lancashire and Yorkshire Railway Company, Dublin and +Glasgow Steam Packet Company, Glasgow, Dublin and Londonderry Steam +Packet Company (Laird line), British and Irish Steam Packet Company, +Dublin and Morecambe Steamers, London and North Western Railway +Company, Dublin Port and Docks Board Landing Sheds and transit sheds of +Palgrave, Murphy and Company, steamship owners, agents for steamers +from Mediterranean, Spain, Portugal, France, Belgium and Holland and +for Liverpool Underwriters’ Association, the cost of acquired rolling +stock for animal transport and of additional mileage operated by the +Dublin United Tramways Company, limited, to be covered by graziers’ +fees. + +Positing what protasis would the contraction for such several schemes +become a natural and necessary apodosis? + +Given a guarantee equal to the sum sought, the support, by deed of gift +and transfer vouchers during donor’s lifetime or by bequest after +donor’s painless extinction, of eminent financiers (Blum Pasha, +Rothschild, Guggenheim, Hirsch, Montefiore, Morgan, Rockefeller) +possessing fortunes in 6 figures, amassed during a successful life, and +joining capital with opportunity the thing required was done. + +What eventuality would render him independent of such wealth? + +The independent discovery of a goldseam of inexhaustible ore. + +For what reason did he meditate on schemes so difficult of realisation? + +It was one of his axioms that similar meditations or the automatic +relation to himself of a narrative concerning himself or tranquil +recollection of the past when practised habitually before retiring for +the night alleviated fatigue and produced as a result sound repose and +renovated vitality. + +His justifications? + +As a physicist he had learned that of the 70 years of complete human +life at least 2/7, viz. 20 years are passed in sleep. As a philosopher +he knew that at the termination of any allotted life only an +infinitesimal part of any person’s desires has been realised. As a +physiologist he believed in the artificial placation of malignant +agencies chiefly operative during somnolence. + +What did he fear? + +The committal of homicide or suicide during sleep by an aberration of +the light of reason, the incommensurable categorical intelligence +situated in the cerebral convolutions. + +What were habitually his final meditations? + +Of some one sole unique advertisement to cause passers to stop in +wonder, a poster novelty, with all extraneous accretions excluded, +reduced to its simplest and most efficient terms not exceeding the span +of casual vision and congruous with the velocity of modern life. + +What did the first drawer unlocked contain? + +A Vere Foster’s handwriting copybook, property of Milly (Millicent) +Bloom, certain pages of which bore diagram drawings, marked _Papli_, +which showed a large globular head with 5 hairs erect, 2 eyes in +profile, the trunk full front with 3 large buttons, 1 triangular foot: +2 fading photographs of queen Alexandra of England and of Maud +Branscombe, actress and professional beauty: a Yuletide card, bearing +on it a pictorial representation of a parasitic plant, the legend +_Mizpah_, the date Xmas 1892, the name of the senders: from Mr + Mrs M. +Comerford, the versicle: _May this Yuletide bring to thee, Joy and +peace and welcome glee_: a butt of red partly liquefied sealing wax, +obtained from the stores department of Messrs Hely’s, Ltd., 89, 90, and +91 Dame street: a box containing the remainder of a gross of gilt “J” +pennibs, obtained from same department of same firm: an old sandglass +which rolled containing sand which rolled: a sealed prophecy (never +unsealed) written by Leopold Bloom in 1886 concerning the consequences +of the passing into law of William Ewart Gladstone’s Home Rule bill of +1886 (never passed into law): a bazaar ticket, No 2004, of S. Kevin’s +Charity Fair, price 6d, 100 prizes: an infantile epistle, dated, small +em monday, reading: capital pee Papli comma capital aitch How are you +note of interrogation capital eye I am very well full stop new +paragraph signature with flourishes capital em Milly no stop: a cameo +brooch, property of Ellen Bloom (born Higgins), deceased: a cameo +scarfpin, property of Rudolph Bloom (born Virag), deceased: 3 +typewritten letters, addressee, Henry Flower, c/o. P. O. Westland Row, +addresser, Martha Clifford, c/o. P. O. Dolphin’s Barn: the +transliterated name and address of the addresser of the 3 letters in +reversed alphabetic boustrophedonic punctated quadrilinear cryptogram +(vowels suppressed) N. IGS./WI. UU. OX/W. OKS. MH/Y. IM: a press +cutting from an English weekly periodical _Modern Society_, subject +corporal chastisement in girls’ schools: a pink ribbon which had +festooned an Easter egg in the year 1899: two partly uncoiled rubber +preservatives with reserve pockets, purchased by post from Box 32, P. +O., Charing Cross, London, W. C.: 1 pack of 1 dozen creamlaid envelopes +and feintruled notepaper, watermarked, now reduced by 3: some assorted +Austrian-Hungarian coins: 2 coupons of the Royal and Privileged +Hungarian Lottery: a lowpower magnifying glass: 2 erotic photocards +showing a) buccal coition between nude senorita (rere presentation, +superior position) and nude torero (fore presentation, inferior +position) b) anal violation by male religious (fully clothed, eyes +abject) of female religious (partly clothed, eyes direct), purchased by +post from Box 32, P. O., Charing Cross, London, W. C.: a press cutting +of recipe for renovation of old tan boots: a 1d adhesive stamp, +lavender, of the reign of Queen Victoria: a chart of the measurements +of Leopold Bloom compiled before, during and after 2 months’ +consecutive use of Sandow-Whiteley’s pulley exerciser (men’s 15/-, +athlete’s 20/-) viz. chest 28 in and 29 1/2 in, biceps 9 in and 10 in, +forearm 8 1/2 in and 9 in, thigh 10 in and 12 in, calf 11 in and 12 in: +1 prospectus of The Wonderworker, the world’s greatest remedy for +rectal complaints, direct from Wonderworker, Coventry House, South +Place, London E C, addressed (erroneously) to Mrs L. Bloom with brief +accompanying note commencing (erroneously): Dear Madam. + +Quote the textual terms in which the prospectus claimed advantages for +this thaumaturgic remedy. + +It heals and soothes while you sleep, in case of trouble in breaking +wind, assists nature in the most formidable way, insuring instant +relief in discharge of gases, keeping parts clean and free natural +action, an initial outlay of 7/6 making a new man of you and life worth +living. Ladies find Wonderworker especially useful, a pleasant surprise +when they note delightful result like a cool drink of fresh spring +water on a sultry summer’s day. Recommend it to your lady and gentlemen +friends, lasts a lifetime. Insert long round end. Wonderworker. + +Were there testimonials? + +Numerous. From clergyman, British naval officer, wellknown author, city +man, hospital nurse, lady, mother of five, absentminded beggar. + +How did absentminded beggar’s concluding testimonial conclude? + +What a pity the government did not supply our men with wonderworkers +during the South African campaign! What a relief it would have been! + +What object did Bloom add to this collection of objects? + +A 4th typewritten letter received by Henry Flower (let H. F. be L. B.) +from Martha Clifford (find M. C.). + +What pleasant reflection accompanied this action? + +The reflection that, apart from the letter in question, his magnetic +face, form and address had been favourably received during the course +of the preceding day by a wife (Mrs Josephine Breen, born Josie +Powell), a nurse, Miss Callan (Christian name unknown), a maid, +Gertrude (Gerty, family name unknown). + +What possibility suggested itself? + +The possibility of exercising virile power of fascination in the not +immediate future after an expensive repast in a private apartment in +the company of an elegant courtesan, of corporal beauty, moderately +mercenary, variously instructed, a lady by origin. + +What did the 2nd drawer contain? + +Documents: the birth certificate of Leopold Paula Bloom: an endowment +assurance policy of £ 500 in the Scottish Widows’ Assurance Society, +intestated Millicent (Milly) Bloom, coming into force at 25 years as +with profit policy of £ 430, £ 462-10-0 and £ 500 at 60 years or death, +65 years or death and death, respectively, or with profit policy +(paidup) of £ 299-10-0 together with cash payment of £ 133-10-0, at +option: a bank passbook issued by the Ulster Bank, College Green branch +showing statement of a/c for halfyear ending 31 December 1903, balance +in depositor’s favour: £ 18-14-6 (eighteen pounds, fourteen shillings +and sixpence, sterling), net personalty: certificate of possession of £ +900, Canadian 4% (inscribed) government stock (free of stamp duty): +dockets of the Catholic Cemeteries’ (Glasnevin) Committee, relative to +a graveplot purchased: a local press cutting concerning change of name +by deedpoll. + +Quote the textual terms of this notice. + +I, Rudolph Virag, now resident at no 52 Clanbrassil street, Dublin, +formerly of Szombathely in the kingdom of Hungary, hereby give notice +that I have assumed and intend henceforth upon all occasions and at all +times to be known by the name of Rudolph Bloom. + +What other objects relative to Rudolph Bloom (born Virag) were in the +2nd drawer? + +An indistinct daguerreotype of Rudolf Virag and his father Leopold +Virag executed in the year 1852 in the portrait atelier of their +(respectively) 1st and 2nd cousin, Stefan Virag of Szesfehervar, +Hungary. An ancient haggadah book in which a pair of hornrimmed convex +spectacles inserted marked the passage of thanksgiving in the ritual +prayers for Pessach (Passover): a photocard of the Queen’s Hotel, +Ennis, proprietor, Rudolph Bloom: an envelope addressed: _To My Dear +Son Leopold_. + +What fractions of phrases did the lecture of those five whole words +evoke? + +Tomorrow will be a week that I received... it is no use Leopold to be +... with your dear mother... that is not more to stand... to her... all +for me is out... be kind to Athos, Leopold... my dear son... always... +of me... _das Herz... Gott... dein_... + +What reminiscences of a human subject suffering from progressive +melancholia did these objects evoke in Bloom? + +An old man, widower, unkempt of hair, in bed, with head covered, +sighing: an infirm dog, Athos: aconite, resorted to by increasing doses +of grains and scruples as a palliative of recrudescent neuralgia: the +face in death of a septuagenarian, suicide by poison. + +Why did Bloom experience a sentiment of remorse? + +Because in immature impatience he had treated with disrespect certain +beliefs and practices. + +As? + +The prohibition of the use of fleshmeat and milk at one meal: the +hebdomadary symposium of incoordinately abstract, perfervidly concrete +mercantile coexreligionist excompatriots: the circumcision of male +infants: the supernatural character of Judaic scripture: the +ineffability of the tetragrammaton: the sanctity of the sabbath. + +How did these beliefs and practices now appear to him? + +Not more rational than they had then appeared, not less rational than +other beliefs and practices now appeared. + +What first reminiscence had he of Rudolph Bloom (deceased)? + +Rudolph Bloom (deceased) narrated to his son Leopold Bloom (aged 6) a +retrospective arrangement of migrations and settlements in and between +Dublin, London, Florence, Milan, Vienna, Budapest, Szombathely with +statements of satisfaction (his grandfather having seen Maria Theresia, +empress of Austria, queen of Hungary), with commercial advice (having +taken care of pence, the pounds having taken care of themselves). +Leopold Bloom (aged 6) had accompanied these narrations by constant +consultation of a geographical map of Europe (political) and by +suggestions for the establishment of affiliated business premises in +the various centres mentioned. + +Had time equally but differently obliterated the memory of these +migrations in narrator and listener? + +In narrator by the access of years and in consequence of the use of +narcotic toxin: in listener by the access of years and in consequence +of the action of distraction upon vicarious experiences. + +What idiosyncracies of the narrator were concomitant products of +amnesia? + +Occasionally he ate without having previously removed his hat. +Occasionally he drank voraciously the juice of gooseberry fool from an +inclined plate. Occasionally he removed from his lips the traces of +food by means of a lacerated envelope or other accessible fragment of +paper. + +What two phenomena of senescence were more frequent? + +The myopic digital calculation of coins, eructation consequent upon +repletion. + +What object offered partial consolation for these reminiscences? + +The endowment policy, the bank passbook, the certificate of the +possession of scrip. + +Reduce Bloom by cross multiplication of reverses of fortune, from which +these supports protected him, and by elimination of all positive values +to a negligible negative irrational unreal quantity. + +Successively, in descending helotic order: Poverty: that of the outdoor +hawker of imitation jewellery, the dun for the recovery of bad and +doubtful debts, the poor rate and deputy cess collector. Mendicancy: +that of the fraudulent bankrupt with negligible assets paying 1/4d in +the £, sandwichman, distributor of throwaways, nocturnal vagrant, +insinuating sycophant, maimed sailor, blind stripling, superannuated +bailiff’s man, marfeast, lickplate, spoilsport, pickthank, eccentric +public laughingstock seated on bench of public park under discarded +perforated umbrella. Destitution: the inmate of Old Man’s House (Royal +Hospital), Kilmainham, the inmate of Simpson’s Hospital for reduced but +respectable men permanently disabled by gout or want of sight. Nadir of +misery: the aged impotent disfranchised ratesupported moribund lunatic +pauper. + +With which attendant indignities? + +The unsympathetic indifference of previously amiable females, the +contempt of muscular males, the acceptance of fragments of bread, the +simulated ignorance of casual acquaintances, the latration of +illegitimate unlicensed vagabond dogs, the infantile discharge of +decomposed vegetable missiles, worth little or nothing, nothing or less +than nothing. + +By what could such a situation be precluded? + +By decease (change of state): by departure (change of place). + +Which preferably? + +The latter, by the line of least resistance. + +What considerations rendered departure not entirely undesirable? + +Constant cohabitation impeding mutual toleration of personal defects. +The habit of independent purchase increasingly cultivated. The +necessity to counteract by impermanent sojourn the permanence of +arrest. + +What considerations rendered departure not irrational? + +The parties concerned, uniting, had increased and multiplied, which +being done, offspring produced and educed to maturity, the parties, if +not disunited were obliged to reunite for increase and multiplication, +which was absurd, to form by reunion the original couple of uniting +parties, which was impossible. + +What considerations rendered departure desirable? + +The attractive character of certain localities in Ireland and abroad, +as represented in general geographical maps of polychrome design or in +special ordnance survey charts by employment of scale numerals and +hachures. + +In Ireland? + +The cliffs of Moher, the windy wilds of Connemara, lough Neagh with +submerged petrified city, the Giant’s Causeway, Fort Camden and Fort +Carlisle, the Golden Vale of Tipperary, the islands of Aran, the +pastures of royal Meath, Brigid’s elm in Kildare, the Queen’s Island +shipyard in Belfast, the Salmon Leap, the lakes of Killarney. + +Abroad? + +Ceylon (with spicegardens supplying tea to Thomas Kernan, agent for +Pulbrook, Robertson and Co, 2 Mincing Lane, London, E. C., 5 Dame +street, Dublin), Jerusalem, the holy city (with mosque of Omar and gate +of Damascus, goal of aspiration), the straits of Gibraltar (the unique +birthplace of Marion Tweedy), the Parthenon (containing statues of nude +Grecian divinities), the Wall street money market (which controlled +international finance), the Plaza de Toros at La Linea, Spain (where +O’Hara of the Camerons had slain the bull), Niagara (over which no +human being had passed with impunity), the land of the Eskimos (eaters +of soap), the forbidden country of Thibet (from which no traveller +returns), the bay of Naples (to see which was to die), the Dead Sea. + +Under what guidance, following what signs? + +At sea, septentrional, by night the polestar, located at the point of +intersection of the right line from beta to alpha in Ursa Maior +produced and divided externally at omega and the hypotenuse of the +rightangled triangle formed by the line alpha omega so produced and the +line alpha delta of Ursa Maior. On land, meridional, a bispherical +moon, revealed in imperfect varying phases of lunation through the +posterior interstice of the imperfectly occluded skirt of a carnose +negligent perambulating female, a pillar of the cloud by day. + +What public advertisement would divulge the occultation of the +departed? + +£ 5 reward, lost, stolen or strayed from his residence 7 Eccles street, +missing gent about 40, answering to the name of Bloom, Leopold (Poldy), +height 5 ft 9 1/2 inches, full build, olive complexion, may have since +grown a beard, when last seen was wearing a black suit. Above sum will +be paid for information leading to his discovery. + +What universal binomial denominations would be his as entity and +nonentity? + +Assumed by any or known to none. Everyman or Noman. + +What tributes his? + +Honour and gifts of strangers, the friends of Everyman. A nymph +immortal, beauty, the bride of Noman. + +Would the departed never nowhere nohow reappear? + +Ever he would wander, selfcompelled, to the extreme limit of his +cometary orbit, beyond the fixed stars and variable suns and telescopic +planets, astronomical waifs and strays, to the extreme boundary of +space, passing from land to land, among peoples, amid events. Somewhere +imperceptibly he would hear and somehow reluctantly, suncompelled, obey +the summons of recall. Whence, disappearing from the constellation of +the Northern Crown he would somehow reappear reborn above delta in the +constellation of Cassiopeia and after incalculable eons of +peregrination return an estranged avenger, a wreaker of justice on +malefactors, a dark crusader, a sleeper awakened, with financial +resources (by supposition) surpassing those of Rothschild or the silver +king. + +What would render such return irrational? + +An unsatisfactory equation between an exodus and return in time through +reversible space and an exodus and return in space through irreversible +time. + +What play of forces, inducing inertia, rendered departure undesirable? + +The lateness of the hour, rendering procrastinatory: the obscurity of +the night, rendering invisible: the uncertainty of thoroughfares, +rendering perilous: the necessity for repose, obviating movement: the +proximity of an occupied bed, obviating research: the anticipation of +warmth (human) tempered with coolness (linen), obviating desire and +rendering desirable: the statue of Narcissus, sound without echo, +desired desire. + +What advantages were possessed by an occupied, as distinct from an +unoccupied bed? + +The removal of nocturnal solitude, the superior quality of human +(mature female) to inhuman (hotwaterjar) calefaction, the stimulation +of matutinal contact, the economy of mangling done on the premises in +the case of trousers accurately folded and placed lengthwise between +the spring mattress (striped) and the woollen mattress (biscuit +section). + +What past consecutive causes, before rising preapprehended, of +accumulated fatigue did Bloom, before rising, silently recapitulate? + +The preparation of breakfast (burnt offering): intestinal congestion +and premeditative defecation (holy of holies): the bath (rite of John): +the funeral (rite of Samuel): the advertisement of Alexander Keyes +(Urim and Thummim): the unsubstantial lunch (rite of Melchisedek): the +visit to museum and national library (holy place): the bookhunt along +Bedford row, Merchants’ Arch, Wellington Quay (Simchath Torah): the +music in the Ormond Hotel (Shira Shirim): the altercation with a +truculent troglodyte in Bernard Kiernan’s premises (holocaust): a blank +period of time including a cardrive, a visit to a house of mourning, a +leavetaking (wilderness): the eroticism produced by feminine +exhibitionism (rite of Onan): the prolonged delivery of Mrs Mina +Purefoy (heave offering): the visit to the disorderly house of Mrs +Bella Cohen, 82 Tyrone street, lower, and subsequent brawl and chance +medley in Beaver street (Armageddon): nocturnal perambulation to and +from the cabman’s shelter, Butt Bridge (atonement). + +What selfimposed enigma did Bloom about to rise in order to go so as to +conclude lest he should not conclude involuntarily apprehend? + +The cause of a brief sharp unforeseen heard loud lone crack emitted by +the insentient material of a strainveined timber table. + +What selfinvolved enigma did Bloom risen, going, gathering +multicoloured multiform multitudinous garments, voluntarily +apprehending, not comprehend? + +Who was M’Intosh? + +What selfevident enigma pondered with desultory constancy during 30 +years did Bloom now, having effected natural obscurity by the +extinction of artificial light, silently suddenly comprehend? + +Where was Moses when the candle went out? + +What imperfections in a perfect day did Bloom, walking, charged with +collected articles of recently disvested male wearing apparel, +silently, successively, enumerate? + +A provisional failure to obtain renewal of an advertisement: to obtain +a certain quantity of tea from Thomas Kernan (agent for Pulbrook, +Robertson and Co, 5 Dame Street, Dublin, and 2 Mincing Lane, London E. +C.): to certify the presence or absence of posterior rectal orifice in +the case of Hellenic female divinities: to obtain admission (gratuitous +or paid) to the performance of _Leah_ by Mrs Bandmann Palmer at the +Gaiety Theatre, 46, 47, 48, 49 South King street. + +What impression of an absent face did Bloom, arrested, silently recall? + +The face of her father, the late Major Brian Cooper Tweedy, Royal +Dublin Fusiliers, of Gibraltar and Rehoboth, Dolphin’s Barn. + +What recurrent impressions of the same were possible by hypothesis? + +Retreating, at the terminus of the Great Northern Railway, Amiens +street, with constant uniform acceleration, along parallel lines +meeting at infinity, if produced: along parallel lines, reproduced from +infinity, with constant uniform retardation, at the terminus of the +Great Northern Railway, Amiens street, returning. + +What miscellaneous effects of female personal wearing apparel were +perceived by him? + +A pair of new inodorous halfsilk black ladies’ hose, a pair of new +violet garters, a pair of outsize ladies’ drawers of India mull, cut on +generous lines, redolent of opoponax, jessamine and Muratti’s Turkish +cigarettes and containing a long bright steel safety pin, folded +curvilinear, a camisole of batiste with thin lace border, an accordion +underskirt of blue silk moirette, all these objects being disposed +irregularly on the top of a rectangular trunk, quadruple battened, +having capped corners, with multicoloured labels, initialled on its +fore side in white lettering B. C. T. (Brian Cooper Tweedy). + +What impersonal objects were perceived? + +A commode, one leg fractured, totally covered by square cretonne +cutting, apple design, on which rested a lady’s black straw hat. +Orangekeyed ware, bought of Henry Price, basket, fancy goods, chinaware +and ironmongery manufacturer, 21, 22, 23 Moore street, disposed +irregularly on the washstand and floor and consisting of basin, +soapdish and brushtray (on the washstand, together), pitcher and night +article (on the floor, separate). + +Bloom’s acts? + +He deposited the articles of clothing on a chair, removed his remaining +articles of clothing, took from beneath the bolster at the head of the +bed a folded long white nightshirt, inserted his head and arms into the +proper apertures of the nightshirt, removed a pillow from the head to +the foot of the bed, prepared the bedlinen accordingly and entered the +bed. + +How? + +With circumspection, as invariably when entering an abode (his own or +not his own): with solicitude, the snakespiral springs of the mattress +being old, the brass quoits and pendent viper radii loose and tremulous +under stress and strain: prudently, as entering a lair or ambush of +lust or adders: lightly, the less to disturb: reverently, the bed of +conception and of birth, of consummation of marriage and of breach of +marriage, of sleep and of death. + +What did his limbs, when gradually extended, encounter? + +New clean bedlinen, additional odours, the presence of a human form, +female, hers, the imprint of a human form, male, not his, some crumbs, +some flakes of potted meat, recooked, which he removed. + +If he had smiled why would he have smiled? + +To reflect that each one who enters imagines himself to be the first to +enter whereas he is always the last term of a preceding series even if +the first term of a succeeding one, each imagining himself to be first, +last, only and alone whereas he is neither first nor last nor only nor +alone in a series originating in and repeated to infinity. + +What preceding series? + +Assuming Mulvey to be the first term of his series, Penrose, Bartell +d’Arcy, professor Goodwin, Julius Mastiansky, John Henry Menton, Father +Bernard Corrigan, a farmer at the Royal Dublin Society’s Horse Show, +Maggot O’Reilly, Matthew Dillon, Valentine Blake Dillon (Lord Mayor of +Dublin), Christopher Callinan, Lenehan, an Italian organgrinder, an +unknown gentleman in the Gaiety Theatre, Benjamin Dollard, Simon +Dedalus, Andrew (Pisser) Burke, Joseph Cuffe, Wisdom Hely, Alderman +John Hooper, Dr Francis Brady, Father Sebastian of Mount Argus, a +bootblack at the General Post Office, Hugh E. (Blazes) Boylan and so +each and so on to no last term. + +What were his reflections concerning the last member of this series and +late occupant of the bed? + +Reflections on his vigour (a bounder), corporal proportion (a +billsticker), commercial ability (a bester), impressionability (a +boaster). + +Why for the observer impressionability in addition to vigour, corporal +proportion and commercial ability? + +Because he had observed with augmenting frequency in the preceding +members of the same series the same concupiscence, inflammably +transmitted, first with alarm, then with understanding, then with +desire, finally with fatigue, with alternating symptoms of epicene +comprehension and apprehension. + +With what antagonistic sentiments were his subsequent reflections +affected? + +Envy, jealousy, abnegation, equanimity. + +Envy? + +Of a bodily and mental male organism specially adapted for the +superincumbent posture of energetic human copulation and energetic +piston and cylinder movement necessary for the complete satisfaction of +a constant but not acute concupiscence resident in a bodily and mental +female organism, passive but not obtuse. + +Jealousy? + +Because a nature full and volatile in its free state, was alternately +the agent and reagent of attraction. Because attraction between +agent(s) and reagent(s) at all instants varied, with inverse proportion +of increase and decrease, with incessant circular extension and radial +reentrance. Because the controlled contemplation of the fluctuation of +attraction produced, if desired, a fluctuation of pleasure. + +Abnegation? + +In virtue of a) acquaintance initiated in September 1903 in the +establishment of George Mesias, merchant tailor and outfitter, 5 Eden +Quay, b) hospitality extended and received in kind, reciprocated and +reappropriated in person, c) comparative youth subject to impulses of +ambition and magnanimity, colleagual altruism and amorous egoism, d) +extraracial attraction, intraracial inhibition, supraracial +prerogative, e) an imminent provincial musical tour, common current +expenses, net proceeds divided. + +Equanimity? + +As as natural as any and every natural act of a nature expressed or +understood executed in natured nature by natural creatures in +accordance with his, her and their natured natures, of dissimilar +similarity. As not so calamitous as a cataclysmic annihilation of the +planet in consequence of a collision with a dark sun. As less +reprehensible than theft, highway robbery, cruelty to children and +animals, obtaining money under false pretences, forgery, embezzlement, +misappropriation of public money, betrayal of public trust, +malingering, mayhem, corruption of minors, criminal libel, blackmail, +contempt of court, arson, treason, felony, mutiny on the high seas, +trespass, burglary, jailbreaking, practice of unnatural vice, desertion +from armed forces in the field, perjury, poaching, usury, intelligence +with the king’s enemies, impersonation, criminal assault, manslaughter, +wilful and premeditated murder. As not more abnormal than all other +parallel processes of adaptation to altered conditions of existence, +resulting in a reciprocal equilibrium between the bodily organism and +its attendant circumstances, foods, beverages, acquired habits, +indulged inclinations, significant disease. As more than inevitable, +irreparable. + +Why more abnegation than jealousy, less envy than equanimity? + +From outrage (matrimony) to outrage (adultery) there arose nought but +outrage (copulation) yet the matrimonial violator of the matrimonially +violated had not been outraged by the adulterous violator of the +adulterously violated. + +What retribution, if any? + +Assassination, never, as two wrongs did not make one right. Duel by +combat, no. Divorce, not now. Exposure by mechanical artifice +(automatic bed) or individual testimony (concealed ocular witnesses), +not yet. Suit for damages by legal influence or simulation of assault +with evidence of injuries sustained (selfinflicted), not impossibly. +Hushmoney by moral influence, possibly. If any, positively, connivance, +introduction of emulation (material, a prosperous rival agency of +publicity: moral, a successful rival agent of intimacy), depreciation, +alienation, humiliation, separation protecting the one separated from +the other, protecting the separator from both. + +By what reflections did he, a conscious reactor against the void of +incertitude, justify to himself his sentiments? + +The preordained frangibility of the hymen: the presupposed +intangibility of the thing in itself: the incongruity and disproportion +between the selfprolonging tension of the thing proposed to be done and +the selfabbreviating relaxation of the thing done: the fallaciously +inferred debility of the female: the muscularity of the male: the +variations of ethical codes: the natural grammatical transition by +inversion involving no alteration of sense of an aorist preterite +proposition (parsed as masculine subject, monosyllabic onomatopoeic +transitive verb with direct feminine object) from the active voice into +its correlative aorist preterite proposition (parsed as feminine +subject, auxiliary verb and quasimonosyllabic onomatopoeic past +participle with complementary masculine agent) in the passive voice: +the continued product of seminators by generation: the continual +production of semen by distillation: the futility of triumph or protest +or vindication: the inanity of extolled virtue: the lethargy of +nescient matter: the apathy of the stars. + +In what final satisfaction did these antagonistic sentiments and +reflections, reduced to their simplest forms, converge? + +Satisfaction at the ubiquity in eastern and western terrestrial +hemispheres, in all habitable lands and islands explored or unexplored +(the land of the midnight sun, the islands of the blessed, the isles of +Greece, the land of promise), of adipose anterior and posterior female +hemispheres, redolent of milk and honey and of excretory sanguine and +seminal warmth, reminiscent of secular families of curves of amplitude, +insusceptible of moods of impression or of contrarieties of expression, +expressive of mute immutable mature animality. + +The visible signs of antesatisfaction? + +An approximate erection: a solicitous adversion: a gradual elevation: a +tentative revelation: a silent contemplation. + +Then? + +He kissed the plump mellow yellow smellow melons of her rump, on each +plump melonous hemisphere, in their mellow yellow furrow, with obscure +prolonged provocative melonsmellonous osculation. + +The visible signs of postsatisfaction? + +A silent contemplation: a tentative velation: a gradual abasement: a +solicitous aversion: a proximate erection. + +What followed this silent action? + +Somnolent invocation, less somnolent recognition, incipient excitation, +catechetical interrogation. + +With what modifications did the narrator reply to this interrogation? + +Negative: he omitted to mention the clandestine correspondence between +Martha Clifford and Henry Flower, the public altercation at, in and in +the vicinity of the licensed premises of Bernard Kiernan and Co, +Limited, 8, 9 and 10 Little Britain street, the erotic provocation and +response thereto caused by the exhibitionism of Gertrude (Gerty), +surname unknown. Positive: he included mention of a performance by Mrs +Bandmann Palmer of _Leah_ at the Gaiety Theatre, 46, 47, 48, 49 South +King street, an invitation to supper at Wynn’s (Murphy’s) Hotel, 35, 36 +and 37 Lower Abbey street, a volume of peccaminous pornographical +tendency entituled _Sweets of Sin_, anonymous author a gentleman of +fashion, a temporary concussion caused by a falsely calculated movement +in the course of a postcenal gymnastic display, the victim (since +completely recovered) being Stephen Dedalus, professor and author, +eldest surviving son of Simon Dedalus, of no fixed occupation, an +aeronautical feat executed by him (narrator) in the presence of a +witness, the professor and author aforesaid, with promptitude of +decision and gymnastic flexibility. + +Was the narration otherwise unaltered by modifications? + +Absolutely. + +Which event or person emerged as the salient point of his narration? + +Stephen Dedalus, professor and author. + +What limitations of activity and inhibitions of conjugal rights were +perceived by listener and narrator concerning themselves during the +course of this intermittent and increasingly more laconic narration? + +By the listener a limitation of fertility inasmuch as marriage had been +celebrated 1 calendar month after the 18th anniversary of her birth (8 +September 1870), viz. 8 October, and consummated on the same date with +female issue born 15 June 1889, having been anticipatorily consummated +on the 10 September of the same year and complete carnal intercourse, +with ejaculation of semen within the natural female organ, having last +taken place 5 weeks previous, viz. 27 November 1893, to the birth on 29 +December 1893 of second (and only male) issue, deceased 9 January 1894, +aged 11 days, there remained a period of 10 years, 5 months and 18 days +during which carnal intercourse had been incomplete, without +ejaculation of semen within the natural female organ. By the narrator a +limitation of activity, mental and corporal, inasmuch as complete +mental intercourse between himself and the listener had not taken place +since the consummation of puberty, indicated by catamenic hemorrhage, +of the female issue of narrator and listener, 15 September 1903, there +remained a period of 9 months and 1 day during which, in consequence of +a preestablished natural comprehension in incomprehension between the +consummated females (listener and issue), complete corporal liberty of +action had been circumscribed. + +How? + +By various reiterated feminine interrogation concerning the masculine +destination whither, the place where, the time at which, the duration +for which, the object with which in the case of temporary absences, +projected or effected. + +What moved visibly above the listener’s and the narrator’s invisible +thoughts? + +The upcast reflection of a lamp and shade, an inconstant series of +concentric circles of varying gradations of light and shadow. + +In what directions did listener and narrator lie? + +Listener, S. E. by E.: Narrator, N. W. by W.: on the 53rd parallel of +latitude, N., and 6th meridian of longitude, W.: at an angle of 45° to +the terrestrial equator. + +In what state of rest or motion? + +At rest relatively to themselves and to each other. In motion being +each and both carried westward, forward and rereward respectively, by +the proper perpetual motion of the earth through everchanging tracks of +neverchanging space. + +In what posture? + +Listener: reclined semilaterally, left, left hand under head, right leg +extended in a straight line and resting on left leg, flexed, in the +attitude of Gea-Tellus, fulfilled, recumbent, big with seed. Narrator: +reclined laterally, left, with right and left legs flexed, the index +finger and thumb of the right hand resting on the bridge of the nose, +in the attitude depicted in a snapshot photograph made by Percy Apjohn, +the childman weary, the manchild in the womb. + +Womb? Weary? + +He rests. He has travelled. + +With? + +Sinbad the Sailor and Tinbad the Tailor and Jinbad the Jailer and +Whinbad the Whaler and Ninbad the Nailer and Finbad the Failer and +Binbad the Bailer and Pinbad the Pailer and Minbad the Mailer and +Hinbad the Hailer and Rinbad the Railer and Dinbad the Kailer and +Vinbad the Quailer and Linbad the Yailer and Xinbad the Phthailer. + +When? + +Going to dark bed there was a square round Sinbad the Sailor roc’s +auk’s egg in the night of the bed of all the auks of the rocs of +Darkinbad the Brightdayler. + +Where? + +• + + + + +[ 18 ] + + +Yes because he never did a thing like that before as ask to get his +breakfast in bed with a couple of eggs since the _City Arms_ hotel when +he used to be pretending to be laid up with a sick voice doing his +highness to make himself interesting for that old faggot Mrs Riordan +that he thought he had a great leg of and she never left us a farthing +all for masses for herself and her soul greatest miser ever was +actually afraid to lay out 4d for her methylated spirit telling me all +her ailments she had too much old chat in her about politics and +earthquakes and the end of the world let us have a bit of fun first God +help the world if all the women were her sort down on bathingsuits and +lownecks of course nobody wanted her to wear them I suppose she was +pious because no man would look at her twice I hope Ill never be like +her a wonder she didnt want us to cover our faces but she was a +welleducated woman certainly and her gabby talk about Mr Riordan here +and Mr Riordan there I suppose he was glad to get shut of her and her +dog smelling my fur and always edging to get up under my petticoats +especially then still I like that in him polite to old women like that +and waiters and beggars too hes not proud out of nothing but not always +if ever he got anything really serious the matter with him its much +better for them to go into a hospital where everything is clean but I +suppose Id have to dring it into him for a month yes and then wed have +a hospital nurse next thing on the carpet have him staying there till +they throw him out or a nun maybe like the smutty photo he has shes as +much a nun as Im not yes because theyre so weak and puling when theyre +sick they want a woman to get well if his nose bleeds youd think it was +O tragic and that dyinglooking one off the south circular when he +sprained his foot at the choir party at the sugarloaf Mountain the day +I wore that dress Miss Stack bringing him flowers the worst old ones +she could find at the bottom of the basket anything at all to get into +a mans bedroom with her old maids voice trying to imagine he was dying +on account of her to never see thy face again though he looked more +like a man with his beard a bit grown in the bed father was the same +besides I hate bandaging and dosing when he cut his toe with the razor +paring his corns afraid hed get bloodpoisoning but if it was a thing I +was sick then wed see what attention only of course the woman hides it +not to give all the trouble they do yes he came somewhere Im sure by +his appetite anyway love its not or hed be off his feed thinking of her +so either it was one of those night women if it was down there he was +really and the hotel story he made up a pack of lies to hide it +planning it Hynes kept me who did I meet ah yes I met do you remember +Menton and who else who let me see that big babbyface I saw him and he +not long married flirting with a young girl at Pooles Myriorama and +turned my back on him when he slinked out looking quite conscious what +harm but he had the impudence to make up to me one time well done to +him mouth almighty and his boiled eyes of all the big stupoes I ever +met and thats called a solicitor only for I hate having a long wrangle +in bed or else if its not that its some little bitch or other he got in +with somewhere or picked up on the sly if they only knew him as well as +I do yes because the day before yesterday he was scribbling something a +letter when I came into the front room to show him Dignams death in the +paper as if something told me and he covered it up with the +blottingpaper pretending to be thinking about business so very probably +that was it to somebody who thinks she has a softy in him because all +men get a bit like that at his age especially getting on to forty he is +now so as to wheedle any money she can out of him no fool like an old +fool and then the usual kissing my bottom was to hide it not that I +care two straws now who he does it with or knew before that way though +Id like to find out so long as I dont have the two of them under my +nose all the time like that slut that Mary we had in Ontario terrace +padding out her false bottom to excite him bad enough to get the smell +of those painted women off him once or twice I had a suspicion by +getting him to come near me when I found the long hair on his coat +without that one when I went into the kitchen pretending he was +drinking water 1 woman is not enough for them it was all his fault of +course ruining servants then proposing that she could eat at our table +on Christmas day if you please O no thank you not in my house stealing +my potatoes and the oysters 2/6 per doz going out to see her aunt if +you please common robbery so it was but I was sure he had something on +with that one it takes me to find out a thing like that he said you +have no proof it was her proof O yes her aunt was very fond of oysters +but I told her what I thought of her suggesting me to go out to be +alone with her I wouldnt lower myself to spy on them the garters I +found in her room the Friday she was out that was enough for me a +little bit too much her face swelled up on her with temper when I gave +her her weeks notice I saw to that better do without them altogether do +out the rooms myself quicker only for the damn cooking and throwing out +the dirt I gave it to him anyhow either she or me leaves the house I +couldnt even touch him if I thought he was with a dirty barefaced liar +and sloven like that one denying it up to my face and singing about the +place in the W C too because she knew she was too well off yes because +he couldnt possibly do without it that long so he must do it somewhere +and the last time he came on my bottom when was it the night Boylan +gave my hand a great squeeze going along by the Tolka in my hand there +steals another I just pressed the back of his like that with my thumb +to squeeze back singing the young May moon shes beaming love because he +has an idea about him and me hes not such a fool he said Im dining out +and going to the Gaiety though Im not going to give him the +satisfaction in any case God knows hes a change in a way not to be +always and ever wearing the same old hat unless I paid some nicelooking +boy to do it since I cant do it myself a young boy would like me Id +confuse him a little alone with him if we were Id let him see my +garters the new ones and make him turn red looking at him seduce him I +know what boys feel with that down on their cheek doing that frigging +drawing out the thing by the hour question and answer would you do this +that and the other with the coalman yes with a bishop yes I would +because I told him about some dean or bishop was sitting beside me in +the jews temples gardens when I was knitting that woollen thing a +stranger to Dublin what place was it and so on about the monuments and +he tired me out with statues encouraging him making him worse than he +is who is in your mind now tell me who are you thinking of who is it +tell me his name who tell me who the german Emperor is it yes imagine +Im him think of him can you feel him trying to make a whore of me what +he never will he ought to give it up now at this age of his life simply +ruination for any woman and no satisfaction in it pretending to like it +till he comes and then finish it off myself anyway and it makes your +lips pale anyhow its done now once and for all with all the talk of the +world about it people make its only the first time after that its just +the ordinary do it and think no more about it why cant you kiss a man +without going and marrying him first you sometimes love to wildly when +you feel that way so nice all over you you cant help yourself I wish +some man or other would take me sometime when hes there and kiss me in +his arms theres nothing like a kiss long and hot down to your soul +almost paralyses you then I hate that confession when I used to go to +Father Corrigan he touched me father and what harm if he did where and +I said on the canal bank like a fool but whereabouts on your person my +child on the leg behind high up was it yes rather high up was it where +you sit down yes O Lord couldnt he say bottom right out and have done +with it what has that got to do with it and did you whatever way he put +it I forget no father and I always think of the real father what did he +want to know for when I already confessed it to God he had a nice fat +hand the palm moist always I wouldnt mind feeling it neither would he +Id say by the bullneck in his horsecollar I wonder did he know me in +the box I could see his face he couldnt see mine of course hed never +turn or let on still his eyes were red when his father died theyre lost +for a woman of course must be terrible when a man cries let alone them +Id like to be embraced by one in his vestments and the smell of incense +off him like the pope besides theres no danger with a priest if youre +married hes too careful about himself then give something to H H the +pope for a penance I wonder was he satisfied with me one thing I didnt +like his slapping me behind going away so familiarly in the hall though +I laughed Im not a horse or an ass am I I suppose he was thinking of +his fathers I wonder is he awake thinking of me or dreaming am I in it +who gave him that flower he said he bought he smelt of some kind of +drink not whisky or stout or perhaps the sweety kind of paste they +stick their bills up with some liqueur Id like to sip those richlooking +green and yellow expensive drinks those stagedoor johnnies drink with +the opera hats I tasted once with my finger dipped out of that American +that had the squirrel talking stamps with father he had all he could do +to keep himself from falling asleep after the last time after we took +the port and potted meat it had a fine salty taste yes because I felt +lovely and tired myself and fell asleep as sound as a top the moment I +popped straight into bed till that thunder woke me up God be merciful +to us I thought the heavens were coming down about us to punish us when +I blessed myself and said a Hail Mary like those awful thunderbolts in +Gibraltar as if the world was coming to an end and then they come and +tell you theres no God what could you do if it was running and rushing +about nothing only make an act of contrition the candle I lit that +evening in Whitefriars street chapel for the month of May see it +brought its luck though hed scoff if he heard because he never goes to +church mass or meeting he says your soul you have no soul inside only +grey matter because he doesnt know what it is to have one yes when I +lit the lamp because he must have come 3 or 4 times with that +tremendous big red brute of a thing he has I thought the vein or +whatever the dickens they call it was going to burst though his nose is +not so big after I took off all my things with the blinds down after my +hours dressing and perfuming and combing it like iron or some kind of a +thick crowbar standing all the time he must have eaten oysters I think +a few dozen he was in great singing voice no I never in all my life +felt anyone had one the size of that to make you feel full up he must +have eaten a whole sheep after whats the idea making us like that with +a big hole in the middle of us or like a Stallion driving it up into +you because thats all they want out of you with that determined vicious +look in his eye I had to halfshut my eyes still he hasnt such a +tremendous amount of spunk in him when I made him pull out and do it on +me considering how big it is so much the better in case any of it wasnt +washed out properly the last time I let him finish it in me nice +invention they made for women for him to get all the pleasure but if +someone gave them a touch of it themselves theyd know what I went +through with Milly nobody would believe cutting her teeth too and Mina +Purefoys husband give us a swing out of your whiskers filling her up +with a child or twins once a year as regular as the clock always with a +smell of children off her the one they called budgers or something like +a nigger with a shock of hair on it Jesusjack the child is a black the +last time I was there a squad of them falling over one another and +bawling you couldnt hear your ears supposed to be healthy not satisfied +till they have us swollen out like elephants or I dont know what +supposing I risked having another not off him though still if he was +married Im sure hed have a fine strong child but I dont know Poldy has +more spunk in him yes thatd be awfully jolly I suppose it was meeting +Josie Powell and the funeral and thinking about me and Boylan set him +off well he can think what he likes now if thatll do him any good I +know they were spooning a bit when I came on the scene he was dancing +and sitting out with her the night of Georgina Simpsons housewarming +and then he wanted to ram it down my neck it was on account of not +liking to see her a wallflower that was why we had the standup row over +politics he began it not me when he said about Our Lord being a +carpenter at last he made me cry of course a woman is so sensitive +about everything I was fuming with myself after for giving in only for +I knew he was gone on me and the first socialist he said He was he +annoyed me so much I couldnt put him into a temper still he knows a lot +of mixedup things especially about the body and the inside I often +wanted to study up that myself what we have inside us in that family +physician I could always hear his voice talking when the room was +crowded and watch him after that I pretended I had a coolness on with +her over him because he used to be a bit on the jealous side whenever +he asked who are you going to and I said over to Floey and he made me +the present of Byrons poems and the three pairs of gloves so that +finished that I could quite easily get him to make it up any time I +know how Id even supposing he got in with her again and was going out +to see her somewhere Id know if he refused to eat the onions I know +plenty of ways ask him to tuck down the collar of my blouse or touch +him with my veil and gloves on going out 1 kiss then would send them +all spinning however alright well see then let him go to her she of +course would only be too delighted to pretend shes mad in love with him +that I wouldnt so much mind Id just go to her and ask her do you love +him and look her square in the eyes she couldnt fool me but he might +imagine he was and make a declaration to her with his plabbery kind of +a manner like he did to me though I had the devils own job to get it +out of him though I liked him for that it showed he could hold in and +wasnt to be got for the asking he was on the pop of asking me too the +night in the kitchen I was rolling the potato cake theres something I +want to say to you only for I put him off letting on I was in a temper +with my hands and arms full of pasty flour in any case I let out too +much the night before talking of dreams so I didnt want to let him know +more than was good for him she used to be always embracing me Josie +whenever he was there meaning him of course glauming me over and when I +said I washed up and down as far as possible asking me and did you wash +possible the women are always egging on to that putting it on thick +when hes there they know by his sly eye blinking a bit putting on the +indifferent when they come out with something the kind he is what +spoils him I dont wonder in the least because he was very handsome at +that time trying to look like Lord Byron I said I liked though he was +too beautiful for a man and he was a little before we got engaged +afterwards though she didnt like it so much the day I was in fits of +laughing with the giggles I couldnt stop about all my hairpins falling +out one after another with the mass of hair I had youre always in great +humour she said yes because it grigged her because she knew what it +meant because I used to tell her a good bit of what went on between us +not all but just enough to make her mouth water but that wasnt my fault +she didnt darken the door much after we were married I wonder what shes +got like now after living with that dotty husband of hers she had her +face beginning to look drawn and run down the last time I saw her she +must have been just after a row with him because I saw on the moment +she was edging to draw down a conversation about husbands and talk +about him to run him down what was it she told me O yes that sometimes +he used to go to bed with his muddy boots on when the maggot takes him +just imagine having to get into bed with a thing like that that might +murder you any moment what a man well its not the one way everyone goes +mad Poldy anyhow whatever he does always wipes his feet on the mat when +he comes in wet or shine and always blacks his own boots too and he +always takes off his hat when he comes up in the street like then and +now hes going about in his slippers to look for £ 10000 for a postcard +U p up O sweetheart May wouldnt a thing like that simply bore you stiff +to extinction actually too stupid even to take his boots off now what +could you make of a man like that Id rather die 20 times over than +marry another of their sex of course hed never find another woman like +me to put up with him the way I do know me come sleep with me yes and +he knows that too at the bottom of his heart take that Mrs Maybrick +that poisoned her husband for what I wonder in love with some other man +yes it was found out on her wasnt she the downright villain to go and +do a thing like that of course some men can be dreadfully aggravating +drive you mad and always the worst word in the world what do they ask +us to marry them for if were so bad as all that comes to yes because +they cant get on without us white Arsenic she put in his tea off +flypaper wasnt it I wonder why they call it that if I asked him hed say +its from the Greek leave us as wise as we were before she must have +been madly in love with the other fellow to run the chance of being +hanged O she didnt care if that was her nature what could she do +besides theyre not brutes enough to go and hang a woman surely are they + +theyre all so different Boylan talking about the shape of my foot he +noticed at once even before he was introduced when I was in the D B C +with Poldy laughing and trying to listen I was waggling my foot we both +ordered 2 teas and plain bread and butter I saw him looking with his +two old maids of sisters when I stood up and asked the girl where it +was what do I care with it dropping out of me and that black closed +breeches he made me buy takes you half an hour to let them down wetting +all myself always with some brandnew fad every other week such a long +one I did I forgot my suede gloves on the seat behind that I never got +after some robber of a woman and he wanted me to put it in the Irish +times lost in the ladies lavatory D B C Dame street finder return to +Mrs Marion Bloom and I saw his eyes on my feet going out through the +turning door he was looking when I looked back and I went there for tea +2 days after in the hope but he wasnt now how did that excite him +because I was crossing them when we were in the other room first he +meant the shoes that are too tight to walk in my hand is nice like that +if I only had a ring with the stone for my month a nice aquamarine Ill +stick him for one and a gold bracelet I dont like my foot so much still +I made him spend once with my foot the night after Goodwins botchup of +a concert so cold and windy it was well we had that rum in the house to +mull and the fire wasnt black out when he asked to take off my +stockings lying on the hearthrug in Lombard street west and another +time it was my muddy boots hed like me to walk in all the horses dung I +could find but of course hes not natural like the rest of the world +that I what did he say I could give 9 points in 10 to Katty Lanner and +beat her what does that mean I asked him I forget what he said because +the stoppress edition just passed and the man with the curly hair in +the Lucan dairy thats so polite I think I saw his face before somewhere +I noticed him when I was tasting the butter so I took my time Bartell +DArcy too that he used to make fun of when he commenced kissing me on +the choir stairs after I sang Gounods _Ave Maria_ what are we waiting +for O my heart kiss me straight on the brow and part which is my brown +part he was pretty hot for all his tinny voice too my low notes he was +always raving about if you can believe him I liked the way he used his +mouth singing then he said wasnt it terrible to do that there in a +place like that I dont see anything so terrible about it Ill tell him +about that some day not now and surprise him ay and Ill take him there +and show him the very place too we did it so now there you are like it +or lump it he thinks nothing can happen without him knowing he hadnt an +idea about my mother till we were engaged otherwise hed never have got +me so cheap as he did he was 10 times worse himself anyhow begging me +to give him a tiny bit cut off my drawers that was the evening coming +along Kenilworth square he kissed me in the eye of my glove and I had +to take it off asking me questions is it permitted to enquire the shape +of my bedroom so I let him keep it as if I forgot it to think of me +when I saw him slip it into his pocket of course hes mad on the subject +of drawers thats plain to be seen always skeezing at those brazenfaced +things on the bicycles with their skirts blowing up to their navels +even when Milly and I were out with him at the open air fete that one +in the cream muslin standing right against the sun so he could see +every atom she had on when he saw me from behind following in the rain +I saw him before he saw me however standing at the corner of the +Harolds cross road with a new raincoat on him with the muffler in the +Zingari colours to show off his complexion and the brown hat looking +slyboots as usual what was he doing there where hed no business they +can go and get whatever they like from anything at all with a skirt on +it and were not to ask any questions but they want to know where were +you where are you going I could feel him coming along skulking after me +his eyes on my neck he had been keeping away from the house he felt it +was getting too warm for him so I halfturned and stopped then he +pestered me to say yes till I took off my glove slowly watching him he +said my openwork sleeves were too cold for the rain anything for an +excuse to put his hand anear me drawers drawers the whole blessed time +till I promised to give him the pair off my doll to carry about in his +waistcoat pocket _O Maria Santisima_ he did look a big fool dreeping in +the rain splendid set of teeth he had made me hungry to look at them +and beseeched of me to lift the orange petticoat I had on with the +sunray pleats that there was nobody he said hed kneel down in the wet +if I didnt so persevering he would too and ruin his new raincoat you +never know what freak theyd take alone with you theyre so savage for it +if anyone was passing so I lifted them a bit and touched his trousers +outside the way I used to Gardner after with my ring hand to keep him +from doing worse where it was too public I was dying to find out was he +circumcised he was shaking like a jelly all over they want to do +everything too quick take all the pleasure out of it and father waiting +all the time for his dinner he told me to say I left my purse in the +butchers and had to go back for it what a Deceiver then he wrote me +that letter with all those words in it how could he have the face to +any woman after his company manners making it so awkward after when we +met asking me have I offended you with my eyelids down of course he saw +I wasnt he had a few brains not like that other fool Henny Doyle he was +always breaking or tearing something in the charades I hate an unlucky +man and if I knew what it meant of course I had to say no for form sake +dont understand you I said and wasnt it natural so it is of course it +used to be written up with a picture of a womans on that wall in +Gibraltar with that word I couldnt find anywhere only for children +seeing it too young then writing every morning a letter sometimes twice +a day I liked the way he made love then he knew the way to take a woman +when he sent me the 8 big poppies because mine was the 8th then I wrote +the night he kissed my heart at Dolphins barn I couldnt describe it +simply it makes you feel like nothing on earth but he never knew how to +embrace well like Gardner I hope hell come on Monday as he said at the +same time four I hate people who come at all hours answer the door you +think its the vegetables then its somebody and you all undressed or the +door of the filthy sloppy kitchen blows open the day old frostyface +Goodwin called about the concert in Lombard street and I just after +dinner all flushed and tossed with boiling old stew dont look at me +professor I had to say Im a fright yes but he was a real old gent in +his way it was impossible to be more respectful nobody to say youre out +you have to peep out through the blind like the messengerboy today I +thought it was a putoff first him sending the port and the peaches +first and I was just beginning to yawn with nerves thinking he was +trying to make a fool of me when I knew his tattarrattat at the door he +must have been a bit late because it was 1/4 after 3 when I saw the 2 +Dedalus girls coming from school I never know the time even that watch +he gave me never seems to go properly Id want to get it looked after +when I threw the penny to that lame sailor for England home and beauty +when I was whistling there is a charming girl I love and I hadnt even +put on my clean shift or powdered myself or a thing then this day week +were to go to Belfast just as well he has to go to Ennis his fathers +anniversary the 27th it wouldnt be pleasant if he did suppose our rooms +at the hotel were beside each other and any fooling went on in the new +bed I couldnt tell him to stop and not bother me with him in the next +room or perhaps some protestant clergyman with a cough knocking on the +wall then hed never believe the next day we didnt do something its all +very well a husband but you cant fool a lover after me telling him we +never did anything of course he didnt believe me no its better hes +going where he is besides something always happens with him the time +going to the Mallow concert at Maryborough ordering boiling soup for +the two of us then the bell rang out he walks down the platform with +the soup splashing about taking spoonfuls of it hadnt he the nerve and +the waiter after him making a holy show of us screeching and confusion +for the engine to start but he wouldnt pay till he finished it the two +gentlemen in the 3rd class carriage said he was quite right so he was +too hes so pigheaded sometimes when he gets a thing into his head a +good job he was able to open the carriage door with his knife or theyd +have taken us on to Cork I suppose that was done out of revenge on him +O I love jaunting in a train or a car with lovely soft cushions I +wonder will he take a 1st class for me he might want to do it in the +train by tipping the guard well O I suppose therell be the usual idiots +of men gaping at us with their eyes as stupid as ever they can possibly +be that was an exceptional man that common workman that left us alone +in the carriage that day going to Howth Id like to find out something +about him 1 or 2 tunnels perhaps then you have to look out of the +window all the nicer then coming back suppose I never came back what +would they say eloped with him that gets you on on the stage the last +concert I sang at where its over a year ago when was it St Teresas hall +Clarendon St little chits of missies they have now singing Kathleen +Kearney and her like on account of father being in the army and my +singing the absentminded beggar and wearing a brooch for Lord Roberts +when I had the map of it all and Poldy not Irish enough was it him +managed it this time I wouldnt put it past him like he got me on to +sing in the _Stabat Mater_ by going around saying he was putting Lead +Kindly Light to music I put him up to that till the jesuits found out +he was a freemason thumping the piano lead Thou me on copied from some +old opera yes and he was going about with some of them Sinner Fein +lately or whatever they call themselves talking his usual trash and +nonsense he says that little man he showed me without the neck is very +intelligent the coming man Griffiths is he well he doesnt look it thats +all I can say still it must have been him he knew there was a boycott I +hate the mention of their politics after the war that Pretoria and +Ladysmith and Bloemfontein where Gardner lieut Stanley G 8th Bn 2nd +East Lancs Rgt of enteric fever he was a lovely fellow in khaki and +just the right height over me Im sure he was brave too he said I was +lovely the evening we kissed goodbye at the canal lock my Irish beauty +he was pale with excitement about going away or wed be seen from the +road he couldnt stand properly and I so hot as I never felt they could +have made their peace in the beginning or old oom Paul and the rest of +the other old Krugers go and fight it out between them instead of +dragging on for years killing any finelooking men there were with their +fever if he was even decently shot it wouldnt have been so bad I love +to see a regiment pass in review the first time I saw the Spanish +cavalry at La Roque it was lovely after looking across the bay from +Algeciras all the lights of the rock like fireflies or those sham +battles on the 15 acres the Black Watch with their kilts in time at the +march past the 10th hussars the prince of Wales own or the lancers O +the lancers theyre grand or the Dublins that won Tugela his father made +his money over selling the horses for the cavalry well he could buy me +a nice present up in Belfast after what I gave him theyve lovely linen +up there or one of those nice kimono things I must buy a mothball like +I had before to keep in the drawer with them it would be exciting going +round with him shopping buying those things in a new city better leave +this ring behind want to keep turning and turning to get it over the +knuckle there or they might bell it round the town in their papers or +tell the police on me but theyd think were married O let them all go +and smother themselves for the fat lot I care he has plenty of money +and hes not a marrying man so somebody better get it out of him if I +could find out whether he likes me I looked a bit washy of course when +I looked close in the handglass powdering a mirror never gives you the +expression besides scrooching down on me like that all the time with +his big hipbones hes heavy too with his hairy chest for this heat +always having to lie down for them better for him put it into me from +behind the way Mrs Mastiansky told me her husband made her like the +dogs do it and stick out her tongue as far as ever she could and he so +quiet and mild with his tingating cither can you ever be up to men the +way it takes them lovely stuff in that blue suit he had on and stylish +tie and socks with the skyblue silk things on them hes certainly +welloff I know by the cut his clothes have and his heavy watch but he +was like a perfect devil for a few minutes after he came back with the +stoppress tearing up the tickets and swearing blazes because he lost 20 +quid he said he lost over that outsider that won and half he put on for +me on account of Lenehans tip cursing him to the lowest pits that +sponger he was making free with me after the Glencree dinner coming +back that long joult over the featherbed mountain after the lord Mayor +looking at me with his dirty eyes Val Dillon that big heathen I first +noticed him at dessert when I was cracking the nuts with my teeth I +wished I could have picked every morsel of that chicken out of my +fingers it was so tasty and browned and as tender as anything only for +I didnt want to eat everything on my plate those forks and fishslicers +were hallmarked silver too I wish I had some I could easily have +slipped a couple into my muff when I was playing with them then always +hanging out of them for money in a restaurant for the bit you put down +your throat we have to be thankful for our mangy cup of tea itself as a +great compliment to be noticed the way the world is divided in any case +if its going to go on I want at least two other good chemises for one +thing and but I dont know what kind of drawers he likes none at all I +think didnt he say yes and half the girls in Gibraltar never wore them +either naked as God made them that Andalusian singing her Manola she +didnt make much secret of what she hadnt yes and the second pair of +silkette stockings is laddered after one days wear I could have brought +them back to Lewers this morning and kicked up a row and made that one +change them only not to upset myself and run the risk of walking into +him and ruining the whole thing and one of those kidfitting corsets Id +want advertised cheap in the Gentlewoman with elastic gores on the hips +he saved the one I have but thats no good what did they say they give a +delightful figure line 11/6 obviating that unsightly broad appearance +across the lower back to reduce flesh my belly is a bit too big Ill +have to knock off the stout at dinner or am I getting too fond of it +the last they sent from ORourkes was as flat as a pancake he makes his +money easy Larry they call him the old mangy parcel he sent at Xmas a +cottage cake and a bottle of hogwash he tried to palm off as claret +that he couldnt get anyone to drink God spare his spit for fear hed die +of the drouth or I must do a few breathing exercises I wonder is that +antifat any good might overdo it the thin ones are not so much the +fashion now garters that much I have the violet pair I wore today thats +all he bought me out of the cheque he got on the first O no there was +the face lotion I finished the last of yesterday that made my skin like +new I told him over and over again get that made up in the same place +and dont forget it God only knows whether he did after all I said to +him Ill know by the bottle anyway if not I suppose Ill only have to +wash in my piss like beeftea or chickensoup with some of that opoponax +and violet I thought it was beginning to look coarse or old a bit the +skin underneath is much finer where it peeled off there on my finger +after the burn its a pity it isnt all like that and the four paltry +handkerchiefs about 6/- in all sure you cant get on in this world +without style all going in food and rent when I get it Ill lash it +around I tell you in fine style I always want to throw a handful of tea +into the pot measuring and mincing if I buy a pair of old brogues +itself do you like those new shoes yes were they Ive no clothes at all +the brown costume and the skirt and jacket and the one at the cleaners +3 whats that for any woman cutting up this old hat and patching up the +other the men wont look at you and women try to walk on you because +they know youve no man then with all the things getting dearer every +day for the 4 years more I have of life up to 35 no Im what am I at all +Ill be 33 in September will I what O well look at that Mrs Galbraith +shes much older than me I saw her when I was out last week her beautys +on the wane she was a lovely woman magnificent head of hair on her down +to her waist tossing it back like that like Kitty OShea in Grantham +street 1st thing I did every morning to look across see her combing it +as if she loved it and was full of it pity I only got to know her the +day before we left and that Mrs Langtry the jersey lily the prince of +Wales was in love with I suppose hes like the first man going the roads +only for the name of a king theyre all made the one way only a black +mans Id like to try a beauty up to what was she 45 there was some funny +story about the jealous old husband what was it at all and an oyster +knife he went no he made her wear a kind of a tin thing round her and +the prince of Wales yes he had the oyster knife cant be true a thing +like that like some of those books he brings me the works of Master +Francois Somebody supposed to be a priest about a child born out of her +ear because her bumgut fell out a nice word for any priest to write and +her a—e as if any fool wouldnt know what that meant I hate that +pretending of all things with that old blackguards face on him anybody +can see its not true and that Ruby and Fair Tyrants he brought me that +twice I remember when I came to page 50 the part about where she hangs +him up out of a hook with a cord flagellate sure theres nothing for a +woman in that all invention made up about he drinking the champagne out +of her slipper after the ball was over like the infant Jesus in the +crib at Inchicore in the Blessed Virgins arms sure no woman could have +a child that big taken out of her and I thought first it came out of +her side because how could she go to the chamber when she wanted to and +she a rich lady of course she felt honoured H R H he was in Gibraltar +the year I was born I bet he found lilies there too where he planted +the tree he planted more than that in his time he might have planted me +too if hed come a bit sooner then I wouldnt be here as I am he ought to +chuck that Freeman with the paltry few shillings he knocks out of it +and go into an office or something where hed get regular pay or a bank +where they could put him up on a throne to count the money all the day +of course he prefers plottering about the house so you cant stir with +him any side whats your programme today I wish hed even smoke a pipe +like father to get the smell of a man or pretending to be mooching +about for advertisements when he could have been in Mr Cuffes still +only for what he did then sending me to try and patch it up I could +have got him promoted there to be the manager he gave me a great mirada +once or twice first he was as stiff as the mischief really and truly +Mrs Bloom only I felt rotten simply with the old rubbishy dress that I +lost the leads out of the tails with no cut in it but theyre coming +into fashion again I bought it simply to please him I knew it was no +good by the finish pity I changed my mind of going to Todd and Burns as +I said and not Lees it was just like the shop itself rummage sale a lot +of trash I hate those rich shops get on your nerves nothing kills me +altogether only he thinks he knows a great lot about a womans dress and +cooking mathering everything he can scour off the shelves into it if I +went by his advices every blessed hat I put on does that suit me yes +take that thats alright the one like a weddingcake standing up miles +off my head he said suited me or the dishcover one coming down on my +backside on pins and needles about the shopgirl in that place in +Grafton street I had the misfortune to bring him into and she as +insolent as ever she could be with her smirk saying Im afraid were +giving you too much trouble what shes there for but I stared it out of +her yes he was awfully stiff and no wonder but he changed the second +time he looked Poldy pigheaded as usual like the soup but I could see +him looking very hard at my chest when he stood up to open the door for +me it was nice of him to show me out in any case Im extremely sorry Mrs +Bloom believe me without making it too marked the first time after him +being insulted and me being supposed to be his wife I just half smiled +I know my chest was out that way at the door when he said Im extremely +sorry and Im sure you were + +yes I think he made them a bit firmer sucking them like that so long he +made me thirsty titties he calls them I had to laugh yes this one +anyhow stiff the nipple gets for the least thing Ill get him to keep +that up and Ill take those eggs beaten up with marsala fatten them out +for him what are all those veins and things curious the way its made 2 +the same in case of twins theyre supposed to represent beauty placed up +there like those statues in the museum one of them pretending to hide +it with her hand are they so beautiful of course compared with what a +man looks like with his two bags full and his other thing hanging down +out of him or sticking up at you like a hatrack no wonder they hide it +with a cabbageleaf that disgusting Cameron highlander behind the meat +market or that other wretch with the red head behind the tree where the +statue of the fish used to be when I was passing pretending he was +pissing standing out for me to see it with his babyclothes up to one +side the Queens own they were a nice lot its well the Surreys relieved +them theyre always trying to show it to you every time nearly I passed +outside the mens greenhouse near the Harcourt street station just to +try some fellow or other trying to catch my eye as if it was 1 of the 7 +wonders of the world O and the stink of those rotten places the night +coming home with Poldy after the Comerfords party oranges and lemonade +to make you feel nice and watery I went into 1 of them it was so biting +cold I couldnt keep it when was that 93 the canal was frozen yes it was +a few months after a pity a couple of the Camerons werent there to see +me squatting in the mens place meadero I tried to draw a picture of it +before I tore it up like a sausage or something I wonder theyre not +afraid going about of getting a kick or a bang of something there the +woman is beauty of course thats admitted when he said I could pose for +a picture naked to some rich fellow in Holles street when he lost the +job in Helys and I was selling the clothes and strumming in the coffee +palace would I be like that bath of the nymph with my hair down yes +only shes younger or Im a little like that dirty bitch in that Spanish +photo he has nymphs used they go about like that I asked him about her +and that word met something with hoses in it and he came out with some +jawbreakers about the incarnation he never can explain a thing simply +the way a body can understand then he goes and burns the bottom out of +the pan all for his Kidney this one not so much theres the mark of his +teeth still where he tried to bite the nipple I had to scream out arent +they fearful trying to hurt you I had a great breast of milk with Milly +enough for two what was the reason of that he said I could have got a +pound a week as a wet nurse all swelled out the morning that delicate +looking student that stopped in no 28 with the Citrons Penrose nearly +caught me washing through the window only for I snapped up the towel to +my face that was his studenting hurt me they used to weaning her till +he got doctor Brady to give me the belladonna prescription I had to get +him to suck them they were so hard he said it was sweeter and thicker +than cows then he wanted to milk me into the tea well hes beyond +everything I declare somebody ought to put him in the budget if I only +could remember the one half of the things and write a book out of it +the works of Master Poldy yes and its so much smoother the skin much an +hour he was at them Im sure by the clock like some kind of a big infant +I had at me they want everything in their mouth all the pleasure those +men get out of a woman I can feel his mouth O Lord I must stretch +myself I wished he was here or somebody to let myself go with and come +again like that I feel all fire inside me or if I could dream it when +he made me spend the 2nd time tickling me behind with his finger I was +coming for about 5 minutes with my legs round him I had to hug him +after O Lord I wanted to shout out all sorts of things fuck or shit or +anything at all only not to look ugly or those lines from the strain +who knows the way hed take it you want to feel your way with a man +theyre not all like him thank God some of them want you to be so nice +about it I noticed the contrast he does it and doesnt talk I gave my +eyes that look with my hair a bit loose from the tumbling and my tongue +between my lips up to him the savage brute Thursday Friday one Saturday +two Sunday three O Lord I cant wait till Monday + +frseeeeeeeefronnnng train somewhere whistling the strength those +engines have in them like big giants and the water rolling all over and +out of them all sides like the end of Loves old sweeeetsonnnng the poor +men that have to be out all the night from their wives and families in +those roasting engines stifling it was today Im glad I burned the half +of those old Freemans and Photo Bits leaving things like that lying +about hes getting very careless and threw the rest of them up in the W +C I’ll get him to cut them tomorrow for me instead of having them there +for the next year to get a few pence for them have him asking wheres +last Januarys paper and all those old overcoats I bundled out of the +hall making the place hotter than it is that rain was lovely and +refreshing just after my beauty sleep I thought it was going to get +like Gibraltar my goodness the heat there before the levanter came on +black as night and the glare of the rock standing up in it like a big +giant compared with their 3 Rock mountain they think is so great with +the red sentries here and there the poplars and they all whitehot and +the smell of the rainwater in those tanks watching the sun all the time +weltering down on you faded all that lovely frock fathers friend Mrs +Stanhope sent me from the B Marche paris what a shame my dearest +Doggerina she wrote on it she was very nice whats this her other name +was just a p c to tell you I sent the little present have just had a +jolly warm bath and feel a very clean dog now enjoyed it wogger she +called him wogger wd give anything to be back in Gib and hear you sing +Waiting and in old Madrid Concone is the name of those exercises he +bought me one of those new some word I couldnt make out shawls amusing +things but tear for the least thing still there lovely I think dont you +will always think of the lovely teas we had together scrumptious +currant scones and raspberry wafers I adore well now dearest Doggerina +be sure and write soon kind she left out regards to your father also +Captain Grove with love yrs affly Hester x x x x x she didnt look a bit +married just like a girl he was years older than her wogger he was +awfully fond of me when he held down the wire with his foot for me to +step over at the bullfight at La Linea when that matador Gomez was +given the bulls ear these clothes we have to wear whoever invented them +expecting you to walk up Killiney hill then for example at that picnic +all staysed up you cant do a blessed thing in them in a crowd run or +jump out of the way thats why I was afraid when that other ferocious +old Bull began to charge the banderilleros with the sashes and the 2 +things in their hats and the brutes of men shouting bravo toro sure the +women were as bad in their nice white mantillas ripping all the whole +insides out of those poor horses I never heard of such a thing in all +my life yes he used to break his heart at me taking off the dog barking +in bell lane poor brute and it sick what became of them ever I suppose +theyre dead long ago the 2 of them its like all through a mist makes +you feel so old I made the scones of course I had everything all to +myself then a girl Hester we used to compare our hair mine was thicker +than hers she showed me how to settle it at the back when I put it up +and whats this else how to make a knot on a thread with the one hand we +were like cousins what age was I then the night of the storm I slept in +her bed she had her arms round me then we were fighting in the morning +with the pillow what fun he was watching me whenever he got an +opportunity at the band on the Alameda esplanade when I was with father +and Captain Grove I looked up at the church first and then at the +windows then down and our eyes met I felt something go through me like +all needles my eyes were dancing I remember after when I looked at +myself in the glass hardly recognised myself the change he was +attractive to a girl in spite of his being a little bald intelligent +looking disappointed and gay at the same time he was like Thomas in the +shadow of Ashlydyat I had a splendid skin from the sun and the +excitement like a rose I didnt get a wink of sleep it wouldnt have been +nice on account of her but I could have stopped it in time she gave me +the Moonstone to read that was the first I read of Wilkie Collins East +Lynne I read and the shadow of Ashlydyat Mrs Henry Wood Henry Dunbar by +that other woman I lent him afterwards with Mulveys photo in it so as +he see I wasnt without and Lord Lytton Eugene Aram Molly bawn she gave +me by Mrs Hungerford on account of the name I dont like books with a +Molly in them like that one he brought me about the one from Flanders a +whore always shoplifting anything she could cloth and stuff and yards +of it O this blanket is too heavy on me thats better I havent even one +decent nightdress this thing gets all rolled under me besides him and +his fooling thats better I used to be weltering then in the heat my +shift drenched with the sweat stuck in the cheeks of my bottom on the +chair when I stood up they were so fattish and firm when I got up on +the sofa cushions to see with my clothes up and the bugs tons of them +at night and the mosquito nets I couldnt read a line Lord how long ago +it seems centuries of course they never came back and she didnt put her +address right on it either she may have noticed her wogger people were +always going away and we never I remember that day with the waves and +the boats with their high heads rocking and the smell of ship those +Officers uniforms on shore leave made me seasick he didnt say anything +he was very serious I had the high buttoned boots on and my skirt was +blowing she kissed me six or seven times didnt I cry yes I believe I +did or near it my lips were taittering when I said goodbye she had a +Gorgeous wrap of some special kind of blue colour on her for the voyage +made very peculiarly to one side like and it was extremely pretty it +got as dull as the devil after they went I was almost planning to run +away mad out of it somewhere were never easy where we are father or +aunt or marriage waiting always waiting to guiiiide him toooo me +waiting nor speeeed his flying feet their damn guns bursting and +booming all over the shop especially the Queens birthday and throwing +everything down in all directions if you didnt open the windows when +general Ulysses Grant whoever he was or did supposed to be some great +fellow landed off the ship and old Sprague the consul that was there +from before the flood dressed up poor man and he in mourning for the +son then the same old bugles for reveille in the morning and drums +rolling and the unfortunate poor devils of soldiers walking about with +messtins smelling the place more than the old longbearded jews in their +jellibees and levites assembly and sound clear and gunfire for the men +to cross the lines and the warden marching with his keys to lock the +gates and the bagpipes and only captain Groves and father talking about +Rorkes drift and Plevna and sir Garnet Wolseley and Gordon at Khartoum +lighting their pipes for them everytime they went out drunken old devil +with his grog on the windowsill catch him leaving any of it picking his +nose trying to think of some other dirty story to tell up in a corner +but he never forgot himself when I was there sending me out of the room +on some blind excuse paying his compliments the Bushmills whisky +talking of course but hed do the same to the next woman that came along +I suppose he died of galloping drink ages ago the days like years not a +letter from a living soul except the odd few I posted to myself with +bits of paper in them so bored sometimes I could fight with my nails +listening to that old Arab with the one eye and his heass of an +instrument singing his heah heah aheah all my compriment on your +hotchapotch of your heass as bad as now with the hands hanging off me +looking out of the window if there was a nice fellow even in the +opposite house that medical in Holles street the nurse was after when I +put on my gloves and hat at the window to show I was going out not a +notion what I meant arent they thick never understand what you say even +youd want to print it up on a big poster for them not even if you shake +hands twice with the left he didnt recognise me either when I half +frowned at him outside Westland row chapel where does their great +intelligence come in Id like to know grey matter they have it all in +their tail if you ask me those country gougers up in the City Arms +intelligence they had a damn sight less than the bulls and cows they +were selling the meat and the coalmans bell that noisy bugger trying to +swindle me with the wrong bill he took out of his hat what a pair of +paws and pots and pans and kettles to mend any broken bottles for a +poor man today and no visitors or post ever except his cheques or some +advertisement like that wonderworker they sent him addressed dear Madam +only his letter and the card from Milly this morning see she wrote a +letter to him who did I get the last letter from O Mrs Dwenn now what +possessed her to write from Canada after so many years to know the +recipe I had for pisto madrileno Floey Dillon since she wrote to say +she was married to a very rich architect if Im to believe all I hear +with a villa and eight rooms her father was an awfully nice man he was +near seventy always goodhumoured well now Miss Tweedy or Miss Gillespie +theres the piannyer that was a solid silver coffee service he had too +on the mahogany sideboard then dying so far away I hate people that +have always their poor story to tell everybody has their own troubles +that poor Nancy Blake died a month ago of acute neumonia well I didnt +know her so well as all that she was Floeys friend more than mine poor +Nancy its a bother having to answer he always tells me the wrong things +and no stops to say like making a speech your sad bereavement +symph̸athy I always make that mistake and new̸phew with 2 double yous +in I hope hell write me a longer letter the next time if its a thing he +really likes me O thanks be to the great God I got somebody to give me +what I badly wanted to put some heart up into me youve no chances at +all in this place like you used long ago I wish somebody would write me +a loveletter his wasnt much and I told him he could write what he liked +yours ever Hugh Boylan in old Madrid stuff silly women believe love is +sighing I am dying still if he wrote it I suppose thered be some truth +in it true or no it fills up your whole day and life always something +to think about every moment and see it all round you like a new world I +could write the answer in bed to let him imagine me short just a few +words not those long crossed letters Atty Dillon used to write to the +fellow that was something in the four courts that jilted her after out +of the ladies letterwriter when I told her to say a few simple words he +could twist how he liked not acting with precipat precipitancy with +equal candour the greatest earthly happiness answer to a gentlemans +proposal affirmatively my goodness theres nothing else its all very +fine for them but as for being a woman as soon as youre old they might +as well throw you out in the bottom of the ashpit. + +Mulveys was the first when I was in bed that morning and Mrs Rubio +brought it in with the coffee she stood there standing when I asked her +to hand me and I pointing at them I couldnt think of the word a hairpin +to open it with ah horquilla disobliging old thing and it staring her +in the face with her switch of false hair on her and vain about her +appearance ugly as she was near 80 or a 100 her face a mass of wrinkles +with all her religion domineering because she never could get over the +Atlantic fleet coming in half the ships of the world and the Union Jack +flying with all her carabineros because 4 drunken English sailors took +all the rock from them and because I didnt run into mass often enough +in Santa Maria to please her with her shawl up on her except when there +was a marriage on with all her miracles of the saints and her black +blessed virgin with the silver dress and the sun dancing 3 times on +Easter Sunday morning and when the priest was going by with the bell +bringing the vatican to the dying blessing herself for his Majestad an +admirer he signed it I near jumped out of my skin I wanted to pick him +up when I saw him following me along the Calle Real in the shop window +then he tipped me just in passing but I never thought hed write making +an appointment I had it inside my petticoat bodice all day reading it +up in every hole and corner while father was up at the drill +instructing to find out by the handwriting or the language of stamps +singing I remember shall I wear a white rose and I wanted to put on the +old stupid clock to near the time he was the first man kissed me under +the Moorish wall my sweetheart when a boy it never entered my head what +kissing meant till he put his tongue in my mouth his mouth was +sweetlike young I put my knee up to him a few times to learn the way +what did I tell him I was engaged for for fun to the son of a Spanish +nobleman named Don Miguel de la Flora and he believed me that I was to +be married to him in 3 years time theres many a true word spoken in +jest there is a flower that bloometh a few things I told him true about +myself just for him to be imagining the Spanish girls he didnt like I +suppose one of them wouldnt have him I got him excited he crushed all +the flowers on my bosom he brought me he couldnt count the pesetas and +the perragordas till I taught him Cappoquin he came from he said on the +black water but it was too short then the day before he left May yes it +was May when the infant king of Spain was born Im always like that in +the spring Id like a new fellow every year up on the tiptop under the +rockgun near OHaras tower I told him it was struck by lightning and all +about the old Barbary apes they sent to Clapham without a tail +careering all over the show on each others back Mrs Rubio said she was +a regular old rock scorpion robbing the chickens out of Inces farm and +throw stones at you if you went anear he was looking at me I had that +white blouse on open in the front to encourage him as much as I could +without too openly they were just beginning to be plump I said I was +tired we lay over the firtree cove a wild place I suppose it must be +the highest rock in existence the galleries and casemates and those +frightful rocks and Saint Michaels cave with the icicles or whatever +they call them hanging down and ladders all the mud plotching my boots +Im sure thats the way down the monkeys go under the sea to Africa when +they die the ships out far like chips that was the Malta boat passing +yes the sea and the sky you could do what you liked lie there for ever +he caressed them outside they love doing that its the roundness there I +was leaning over him with my white ricestraw hat to take the newness +out of it the left side of my face the best my blouse open for his last +day transparent kind of shirt he had I could see his chest pink he +wanted to touch mine with his for a moment but I wouldnt let him he was +awfully put out first for fear you never know consumption or leave me +with a child embarazada that old servant Ines told me that one drop +even if it got into you at all after I tried with the Banana but I was +afraid it might break and get lost up in me somewhere because they once +took something down out of a woman that was up there for years covered +with limesalts theyre all mad to get in there where they come out of +youd think they could never go far enough up and then theyre done with +you in a way till the next time yes because theres a wonderful feeling +there so tender all the time how did we finish it off yes O yes I +pulled him off into my handkerchief pretending not to be excited but I +opened my legs I wouldnt let him touch me inside my petticoat because I +had a skirt opening up the side I tormented the life out of him first +tickling him I loved rousing that dog in the hotel rrrsssstt +awokwokawok his eyes shut and a bird flying below us he was shy all the +same I liked him like that moaning I made him blush a little when I got +over him that way when I unbuttoned him and took his out and drew back +the skin it had a kind of eye in it theyre all Buttons men down the +middle on the wrong side of them Molly darling he called me what was +his name Jack Joe Harry Mulvey was it yes I think a lieutenant he was +rather fair he had a laughing kind of a voice so I went round to the +whatyoucallit everything was whatyoucallit moustache had he he said hed +come back Lord its just like yesterday to me and if I was married hed +do it to me and I promised him yes faithfully Id let him block me now +flying perhaps hes dead or killed or a captain or admiral its nearly 20 +years if I said firtree cove he would if he came up behind me and put +his hands over my eyes to guess who I might recognise him hes young +still about 40 perhaps hes married some girl on the black water and is +quite changed they all do they havent half the character a woman has +she little knows what I did with her beloved husband before he ever +dreamt of her in broad daylight too in the sight of the whole world you +might say they could have put an article about it in the Chronicle I +was a bit wild after when I blew out the old bag the biscuits were in +from Benady Bros and exploded it Lord what a bang all the woodcocks and +pigeons screaming coming back the same way that we went over middle +hill round by the old guardhouse and the jews burialplace pretending to +read out the Hebrew on them I wanted to fire his pistol he said he +hadnt one he didnt know what to make of me with his peak cap on that he +always wore crooked as often as I settled it straight H M S Calypso +swinging my hat that old Bishop that spoke off the altar his long +preach about womans higher functions about girls now riding the bicycle +and wearing peak caps and the new woman bloomers God send him sense and +me more money I suppose theyre called after him I never thought that +would be my name Bloom when I used to write it in print to see how it +looked on a visiting card or practising for the butcher and oblige M +Bloom youre looking blooming Josie used to say after I married him well +its better than Breen or Briggs does brig or those awful names with +bottom in them Mrs Ramsbottom or some other kind of a bottom Mulvey I +wouldnt go mad about either or suppose I divorced him Mrs Boylan my +mother whoever she was might have given me a nicer name the Lord knows +after the lovely one she had Lunita Laredo the fun we had running along +Williss road to Europa point twisting in and out all round the other +side of Jersey they were shaking and dancing about in my blouse like +Millys little ones now when she runs up the stairs I loved looking down +at them I was jumping up at the pepper trees and the white poplars +pulling the leaves off and throwing them at him he went to India he was +to write the voyages those men have to make to the ends of the world +and back its the least they might get a squeeze or two at a woman while +they can going out to be drowned or blown up somewhere I went up +Windmill hill to the flats that Sunday morning with captain Rubios that +was dead spyglass like the sentry had he said hed have one or two from +on board I wore that frock from the B Marche paris and the coral +necklace the straits shining I could see over to Morocco almost the bay +of Tangier white and the Atlas mountain with snow on it and the straits +like a river so clear Harry Molly darling I was thinking of him on the +sea all the time after at mass when my petticoat began to slip down at +the elevation weeks and weeks I kept the handkerchief under my pillow +for the smell of him there was no decent perfume to be got in that +Gibraltar only that cheap peau dEspagne that faded and left a stink on +you more than anything else I wanted to give him a memento he gave me +that clumsy Claddagh ring for luck that I gave Gardner going to south +Africa where those Boers killed him with their war and fever but they +were well beaten all the same as if it brought its bad luck with it +like an opal or pearl still it must have been pure 18 carrot gold +because it was very heavy but what could you get in a place like that +the sandfrog shower from Africa and that derelict ship that came up to +the harbour Marie the Marie whatyoucallit no he hadnt a moustache that +was Gardner yes I can see his face cleanshaven +Frseeeeeeeeeeeeeeeeeeeefrong that train again weeping tone once in the +dear deaead days beyondre call close my eyes breath my lips forward +kiss sad look eyes open piano ere oer the world the mists began I hate +that istsbeg comes loves sweet sooooooooooong Ill let that out full +when I get in front of the footlights again Kathleen Kearney and her +lot of squealers Miss This Miss That Miss Theother lot of sparrowfarts +skitting around talking about politics they know as much about as my +backside anything in the world to make themselves someway interesting +Irish homemade beauties soldiers daughter am I ay and whose are you +bootmakers and publicans I beg your pardon coach I thought you were a +wheelbarrow theyd die down dead off their feet if ever they got a +chance of walking down the Alameda on an officers arm like me on the +bandnight my eyes flash my bust that they havent passion God help their +poor head I knew more about men and life when I was 15 than theyll all +know at 50 they dont know how to sing a song like that Gardner said no +man could look at my mouth and teeth smiling like that and not think of +it I was afraid he mightnt like my accent first he so English all +father left me in spite of his stamps Ive my mothers eyes and figure +anyhow he always said theyre so snotty about themselves some of those +cads he wasnt a bit like that he was dead gone on my lips let them get +a husband first thats fit to be looked at and a daughter like mine or +see if they can excite a swell with money that can pick and choose +whoever he wants like Boylan to do it 4 or 5 times locked in each +others arms or the voice either I could have been a prima donna only I +married him comes looooves old deep down chin back not too much make it +double My Ladys Bower is too long for an encore about the moated grange +at twilight and vaunted rooms yes Ill sing Winds that blow from the +south that he gave after the choirstairs performance Ill change that +lace on my black dress to show off my bubs and Ill yes by God Ill get +that big fan mended make them burst with envy my hole is itching me +always when I think of him I feel I want to I feel some wind in me +better go easy not wake him have him at it again slobbering after +washing every bit of myself back belly and sides if we had even a bath +itself or my own room anyway I wish hed sleep in some bed by himself +with his cold feet on me give us room even to let a fart God or do the +least thing better yes hold them like that a bit on my side piano +quietly sweeeee theres that train far away pianissimo eeeee one more +song + +that was a relief wherever you be let your wind go free who knows if +that pork chop I took with my cup of tea after was quite good with the +heat I couldnt smell anything off it Im sure that queerlooking man in +the porkbutchers is a great rogue I hope that lamp is not smoking fill +my nose up with smuts better than having him leaving the gas on all +night I couldnt rest easy in my bed in Gibraltar even getting up to see +why am I so damned nervous about that though I like it in the winter +its more company O Lord it was rotten cold too that winter when I was +only about ten was I yes I had the big doll with all the funny clothes +dressing her up and undressing that icy wind skeeting across from those +mountains the something Nevada sierra nevada standing at the fire with +the little bit of a short shift I had up to heat myself I loved dancing +about in it then make a race back into bed Im sure that fellow opposite +used to be there the whole time watching with the lights out in the +summer and I in my skin hopping around I used to love myself then +stripped at the washstand dabbing and creaming only when it came to the +chamber performance I put out the light too so then there were 2 of us +goodbye to my sleep for this night anyhow I hope hes not going to get +in with those medicals leading him astray to imagine hes young again +coming in at 4 in the morning it must be if not more still he had the +manners not to wake me what do they find to gabber about all night +squandering money and getting drunker and drunker couldnt they drink +water then he starts giving us his orders for eggs and tea and Findon +haddy and hot buttered toast I suppose well have him sitting up like +the king of the country pumping the wrong end of the spoon up and down +in his egg wherever he learned that from and I love to hear him falling +up the stairs of a morning with the cups rattling on the tray and then +play with the cat she rubs up against you for her own sake I wonder has +she fleas shes as bad as a woman always licking and lecking but I hate +their claws I wonder do they see anything that we cant staring like +that when she sits at the top of the stairs so long and listening as I +wait always what a robber too that lovely fresh plaice I bought I think +Ill get a bit of fish tomorrow or today is it Friday yes I will with +some blancmange with black currant jam like long ago not those 2 lb +pots of mixed plum and apple from the London and Newcastle Williams and +Woods goes twice as far only for the bones I hate those eels cod yes +Ill get a nice piece of cod Im always getting enough for 3 forgetting +anyway Im sick of that everlasting butchers meat from Buckleys loin +chops and leg beef and rib steak and scrag of mutton and calfs pluck +the very name is enough or a picnic suppose we all gave 5/- each and or +let him pay it and invite some other woman for him who Mrs Fleming and +drove out to the furry glen or the strawberry beds wed have him +examining all the horses toenails first like he does with the letters +no not with Boylan there yes with some cold veal and ham mixed +sandwiches there are little houses down at the bottom of the banks +there on purpose but its as hot as blazes he says not a bank holiday +anyhow I hate those ruck of Mary Ann coalboxes out for the day Whit +Monday is a cursed day too no wonder that bee bit him better the +seaside but Id never again in this life get into a boat with him after +him at Bray telling the boatman he knew how to row if anyone asked +could he ride the steeplechase for the gold cup hed say yes then it +came on to get rough the old thing crookeding about and the weight all +down my side telling me pull the right reins now pull the left and the +tide all swamping in floods in through the bottom and his oar slipping +out of the stirrup its a mercy we werent all drowned he can swim of +course me no theres no danger whatsoever keep yourself calm in his +flannel trousers Id like to have tattered them down off him before all +the people and give him what that one calls flagellate till he was +black and blue do him all the good in the world only for that longnosed +chap I dont know who he is with that other beauty Burke out of the City +Arms hotel was there spying around as usual on the slip always where he +wasnt wanted if there was a row on youd vomit a better face there was +no love lost between us thats 1 consolation I wonder what kind is that +book he brought me Sweets of Sin by a gentleman of fashion some other +Mr de Kock I suppose the people gave him that nickname going about with +his tube from one woman to another I couldnt even change my new white +shoes all ruined with the saltwater and the hat I had with that feather +all blowy and tossed on me how annoying and provoking because the smell +of the sea excited me of course the sardines and the bream in Catalan +bay round the back of the rock they were fine all silver in the +fishermens baskets old Luigi near a hundred they said came from Genoa +and the tall old chap with the earrings I dont like a man you have to +climb up to to get at I suppose theyre all dead and rotten long ago +besides I dont like being alone in this big barracks of a place at +night I suppose Ill have to put up with it I never brought a bit of +salt in even when we moved in the confusion musical academy he was +going to make on the first floor drawingroom with a brassplate or +Blooms private hotel he suggested go and ruin himself altogether the +way his father did down in Ennis like all the things he told father he +was going to do and me but I saw through him telling me all the lovely +places we could go for the honeymoon Venice by moonlight with the +gondolas and the lake of Como he had a picture cut out of some paper of +and mandolines and lanterns O how nice I said whatever I liked he was +going to do immediately if not sooner will you be my man will you carry +my can he ought to get a leather medal with a putty rim for all the +plans he invents then leaving us here all day youd never know what old +beggar at the door for a crust with his long story might be a tramp and +put his foot in the way to prevent me shutting it like that picture of +that hardened criminal he was called in Lloyds Weekly news 20 years in +jail then he comes out and murders an old woman for her money imagine +his poor wife or mother or whoever she is such a face youd run miles +away from I couldnt rest easy till I bolted all the doors and windows +to make sure but its worse again being locked up like in a prison or a +madhouse they ought to be all shot or the cat of nine tails a big brute +like that that would attack a poor old woman to murder her in her bed +Id cut them off him so I would not that hed be much use still better +than nothing the night I was sure I heard burglars in the kitchen and +he went down in his shirt with a candle and a poker as if he was +looking for a mouse as white as a sheet frightened out of his wits +making as much noise as he possibly could for the burglars benefit +there isnt much to steal indeed the Lord knows still its the feeling +especially now with Milly away such an idea for him to send the girl +down there to learn to take photographs on account of his grandfather +instead of sending her to Skerrys academy where shed have to learn not +like me getting all at school only hed do a thing like that all the +same on account of me and Boylan thats why he did it Im certain the way +he plots and plans everything out I couldnt turn round with her in the +place lately unless I bolted the door first gave me the fidgets coming +in without knocking first when I put the chair against the door just as +I was washing myself there below with the glove get on your nerves then +doing the loglady all day put her in a glasscase with two at a time to +look at her if he knew she broke off the hand off that little gimcrack +statue with her roughness and carelessness before she left that I got +that little Italian boy to mend so that you cant see the join for 2 +shillings wouldnt even teem the potatoes for you of course shes right +not to ruin her hands I noticed he was always talking to her lately at +the table explaining things in the paper and she pretending to +understand sly of course that comes from his side of the house he cant +say I pretend things can he Im too honest as a matter of fact and +helping her into her coat but if there was anything wrong with her its +me shed tell not him I suppose he thinks Im finished out and laid on +the shelf well Im not no nor anything like it well see well see now +shes well on for flirting too with Tom Devans two sons imitating me +whistling with those romps of Murray girls calling for her can Milly +come out please shes in great demand to pick what they can out of her +round in Nelson street riding Harry Devans bicycle at night its as well +he sent her where she is she was just getting out of bounds wanting to +go on the skatingrink and smoking their cigarettes through their nose I +smelt it off her dress when I was biting off the thread of the button I +sewed on to the bottom of her jacket she couldnt hide much from me I +tell you only I oughtnt to have stitched it and it on her it brings a +parting and the last plumpudding too split in 2 halves see it comes out +no matter what they say her tongue is a bit too long for my taste your +blouse is open too low she says to me the pan calling the kettle +blackbottom and I had to tell her not to cock her legs up like that on +show on the windowsill before all the people passing they all look at +her like me when I was her age of course any old rag looks well on you +then a great touchmenot too in her own way at the Only Way in the +Theatre royal take your foot away out of that I hate people touching me +afraid of her life Id crush her skirt with the pleats a lot of that +touching must go on in theatres in the crush in the dark theyre always +trying to wiggle up to you that fellow in the pit at the Gaiety for +Beerbohm Tree in Trilby the last time Ill ever go there to be squashed +like that for any Trilby or her barebum every two minutes tipping me +there and looking away hes a bit daft I think I saw him after trying to +get near two stylishdressed ladies outside Switzers window at the same +little game I recognised him on the moment the face and everything but +he didnt remember me yes and she didnt even want me to kiss her at the +Broadstone going away well I hope shell get someone to dance attendance +on her the way I did when she was down with the mumps and her glands +swollen wheres this and wheres that of course she cant feel anything +deep yet I never came properly till I was what 22 or so it went into +the wrong place always only the usual girls nonsense and giggling that +Conny Connolly writing to her in white ink on black paper sealed with +sealingwax though she clapped when the curtain came down because he +looked so handsome then we had Martin Harvey for breakfast dinner and +supper I thought to myself afterwards it must be real love if a man +gives up his life for her that way for nothing I suppose there are a +few men like that left its hard to believe in it though unless it +really happened to me the majority of them with not a particle of love +in their natures to find two people like that nowadays full up of each +other that would feel the same way as you do theyre usually a bit +foolish in the head his father must have been a bit queer to go and +poison himself after her still poor old man I suppose he felt lost shes +always making love to my things too the few old rags I have wanting to +put her hair up at 15 my powder too only ruin her skin on her shes time +enough for that all her life after of course shes restless knowing shes +pretty with her lips so red a pity they wont stay that way I was too +but theres no use going to the fair with the thing answering me like a +fishwoman when I asked to go for a half a stone of potatoes the day we +met Mrs Joe Gallaher at the trottingmatches and she pretended not to +see us in her trap with Friery the solicitor we werent grand enough +till I gave her 2 damn fine cracks across the ear for herself take that +now for answering me like that and that for your impudence she had me +that exasperated of course contradicting I was badtempered too because +how was it there was a weed in the tea or I didnt sleep the night +before cheese I ate was it and I told her over and over again not to +leave knives crossed like that because she has nobody to command her as +she said herself well if he doesnt correct her faith I will that was +the last time she turned on the teartap I was just like that myself +they darent order me about the place its his fault of course having the +two of us slaving here instead of getting in a woman long ago am I ever +going to have a proper servant again of course then shed see him coming +Id have to let her know or shed revenge it arent they a nuisance that +old Mrs Fleming you have to be walking round after her putting the +things into her hands sneezing and farting into the pots well of course +shes old she cant help it a good job I found that rotten old smelly +dishcloth that got lost behind the dresser I knew there was something +and opened the area window to let out the smell bringing in his friends +to entertain them like the night he walked home with a dog if you +please that might have been mad especially Simon Dedalus son his father +such a criticiser with his glasses up with his tall hat on him at the +cricket match and a great big hole in his sock one thing laughing at +the other and his son that got all those prizes for whatever he won +them in the intermediate imagine climbing over the railings if anybody +saw him that knew us I wonder he didnt tear a big hole in his grand +funeral trousers as if the one nature gave wasnt enough for anybody +hawking him down into the dirty old kitchen now is he right in his head +I ask pity it wasnt washing day my old pair of drawers might have been +hanging up too on the line on exhibition for all hed ever care with the +ironmould mark the stupid old bundle burned on them he might think was +something else and she never even rendered down the fat I told her and +now shes going such as she was on account of her paralysed husband +getting worse theres always something wrong with them disease or they +have to go under an operation or if its not that its drink and he beats +her Ill have to hunt around again for someone every day I get up theres +some new thing on sweet God sweet God well when Im stretched out dead +in my grave I suppose Ill have some peace I want to get up a minute if +Im let wait O Jesus wait yes that thing has come on me yes now wouldnt +that afflict you of course all the poking and rooting and ploughing he +had up in me now what am I to do Friday Saturday Sunday wouldnt that +pester the soul out of a body unless he likes it some men do God knows +theres always something wrong with us 5 days every 3 or 4 weeks usual +monthly auction isnt it simply sickening that night it came on me like +that the one and only time we were in a box that Michael Gunn gave him +to see Mrs Kendal and her husband at the Gaiety something he did about +insurance for him in Drimmies I was fit to be tied though I wouldnt +give in with that gentleman of fashion staring down at me with his +glasses and him the other side of me talking about Spinoza and his soul +thats dead I suppose millions of years ago I smiled the best I could +all in a swamp leaning forward as if I was interested having to sit it +out then to the last tag I wont forget that wife of Scarli in a hurry +supposed to be a fast play about adultery that idiot in the gallery +hissing the woman adulteress he shouted I suppose he went and had a +woman in the next lane running round all the back ways after to make up +for it I wish he had what I had then hed boo I bet the cat itself is +better off than us have we too much blood up in us or what O patience +above its pouring out of me like the sea anyhow he didnt make me +pregnant as big as he is I dont want to ruin the clean sheets I just +put on I suppose the clean linen I wore brought it on too damn it damn +it and they always want to see a stain on the bed to know youre a +virgin for them all thats troubling them theyre such fools too you +could be a widow or divorced 40 times over a daub of red ink would do +or blackberry juice no thats too purply O Jamesy let me up out of this +pooh sweets of sin whoever suggested that business for women what +between clothes and cooking and children this damned old bed too +jingling like the dickens I suppose they could hear us away over the +other side of the park till I suggested to put the quilt on the floor +with the pillow under my bottom I wonder is it nicer in the day I think +it is easy I think Ill cut all this hair off me there scalding me I +might look like a young girl wouldnt he get the great suckin the next +time he turned up my clothes on me Id give anything to see his face +wheres the chamber gone easy Ive a holy horror of its breaking under me +after that old commode I wonder was I too heavy sitting on his knee I +made him sit on the easychair purposely when I took off only my blouse +and skirt first in the other room he was so busy where he oughtnt to be +he never felt me I hope my breath was sweet after those kissing comfits +easy God I remember one time I could scout it out straight whistling +like a man almost easy O Lord how noisy I hope theyre bubbles on it for +a wad of money from some fellow Ill have to perfume it in the morning +dont forget I bet he never saw a better pair of thighs than that look +how white they are the smoothest place is right there between this bit +here how soft like a peach easy God I wouldnt mind being a man and get +up on a lovely woman O Lord what a row youre making like the jersey +lily easy easy O how the waters come down at Lahore + +who knows is there anything the matter with my insides or have I +something growing in me getting that thing like that every week when +was it last I Whit Monday yes its only about 3 weeks I ought to go to +the doctor only it would be like before I married him when I had that +white thing coming from me and Floey made me go to that dry old stick +Dr Collins for womens diseases on Pembroke road your vagina he called +it I suppose thats how he got all the gilt mirrors and carpets getting +round those rich ones off Stephens green running up to him for every +little fiddlefaddle her vagina and her cochinchina theyve money of +course so theyre all right I wouldnt marry him not if he was the last +man in the world besides theres something queer about their children +always smelling around those filthy bitches all sides asking me if what +I did had an offensive odour what did he want me to do but the one +thing gold maybe what a question if I smathered it all over his wrinkly +old face for him with all my compriments I suppose hed know then and +could you pass it easily pass what I thought he was talking about the +rock of Gibraltar the way he put it thats a very nice invention too by +the way only I like letting myself down after in the hole as far as I +can squeeze and pull the chain then to flush it nice cool pins and +needles still theres something in it I suppose I always used to know by +Millys when she was a child whether she had worms or not still all the +same paying him for that how much is that doctor one guinea please and +asking me had I frequent omissions where do those old fellows get all +the words they have omissions with his shortsighted eyes on me cocked +sideways I wouldnt trust him too far to give me chloroform or God knows +what else still I liked him when he sat down to write the thing out +frowning so severe his nose intelligent like that you be damned you +lying strap O anything no matter who except an idiot he was clever +enough to spot that of course that was all thinking of him and his mad +crazy letters my Precious one everything connected with your glorious +Body everything underlined that comes from it is a thing of beauty and +of joy for ever something he got out of some nonsensical book that he +had me always at myself 4 and 5 times a day sometimes and I said I +hadnt are you sure O yes I said I am quite sure in a way that shut him +up I knew what was coming next only natural weakness it was he excited +me I dont know how the first night ever we met when I was living in +Rehoboth terrace we stood staring at one another for about 10 minutes +as if we met somewhere I suppose on account of my being jewess looking +after my mother he used to amuse me the things he said with the half +sloothering smile on him and all the Doyles said he was going to stand +for a member of Parliament O wasnt I the born fool to believe all his +blather about home rule and the land league sending me that long strool +of a song out of the Huguenots to sing in French to be more classy O +beau pays de la Touraine that I never even sang once explaining and +rigmaroling about religion and persecution he wont let you enjoy +anything naturally then might he as a great favour the very 1st +opportunity he got a chance in Brighton square running into my bedroom +pretending the ink got on his hands to wash it off with the Albion milk +and sulphur soap I used to use and the gelatine still round it O I +laughed myself sick at him that day I better not make an alnight +sitting on this affair they ought to make chambers a natural size so +that a woman could sit on it properly he kneels down to do it I suppose +there isnt in all creation another man with the habits he has look at +the way hes sleeping at the foot of the bed how can he without a hard +bolster its well he doesnt kick or he might knock out all my teeth +breathing with his hand on his nose like that Indian god he took me to +show one wet Sunday in the museum in Kildare street all yellow in a +pinafore lying on his side on his hand with his ten toes sticking out +that he said was a bigger religion than the jews and Our Lords both put +together all over Asia imitating him as hes always imitating everybody +I suppose he used to sleep at the foot of the bed too with his big +square feet up in his wifes mouth damn this stinking thing anyway +wheres this those napkins are ah yes I know I hope the old press doesnt +creak ah I knew it would hes sleeping hard had a good time somewhere +still she must have given him great value for his money of course he +has to pay for it from her O this nuisance of a thing I hope theyll +have something better for us in the other world tying ourselves up God +help us thats all right for tonight now the lumpy old jingly bed always +reminds me of old Cohen I suppose he scratched himself in it often +enough and he thinks father bought it from Lord Napier that I used to +admire when I was a little girl because I told him easy piano O I like +my bed God here we are as bad as ever after 16 years how many houses +were we in at all Raymond terrace and Ontario terrace and Lombard +street and Holles street and he goes about whistling every time were on +the run again his huguenots or the frogs march pretending to help the +men with our 4 sticks of furniture and then the City Arms hotel worse +and worse says Warden Daly that charming place on the landing always +somebody inside praying then leaving all their stinks after them always +know who was in there last every time were just getting on right +something happens or he puts his big foot in it Thoms and Helys and Mr +Cuffes and Drimmies either hes going to be run into prison over his old +lottery tickets that was to be all our salvations or he goes and gives +impudence well have him coming home with the sack soon out of the +Freeman too like the rest on account of those Sinner Fein or the +freemasons then well see if the little man he showed me dribbling along +in the wet all by himself round by Coadys lane will give him much +consolation that he says is so capable and sincerely Irish he is indeed +judging by the sincerity of the trousers I saw on him wait theres +Georges church bells wait 3 quarters the hour wait two oclock well +thats a nice hour of the night for him to be coming home at to anybody +climbing down into the area if anybody saw him Ill knock him off that +little habit tomorrow first Ill look at his shirt to see or Ill see if +he has that French letter still in his pocketbook I suppose he thinks I +dont know deceitful men all their 20 pockets arent enough for their +lies then why should we tell them even if its the truth they dont +believe you then tucked up in bed like those babies in the Aristocrats +Masterpiece he brought me another time as if we hadnt enough of that in +real life without some old Aristocrat or whatever his name is +disgusting you more with those rotten pictures children with two heads +and no legs thats the kind of villainy theyre always dreaming about +with not another thing in their empty heads they ought to get slow +poison the half of them then tea and toast for him buttered on both +sides and newlaid eggs I suppose Im nothing any more when I wouldnt let +him lick me in Holles street one night man man tyrant as ever for the +one thing he slept on the floor half the night naked the way the jews +used when somebody dies belonged to them and wouldnt eat any breakfast +or speak a word wanting to be petted so I thought I stood out enough +for one time and let him he does it all wrong too thinking only of his +own pleasure his tongue is too flat or I dont know what he forgets that +wethen I dont Ill make him do it again if he doesnt mind himself and +lock him down to sleep in the coalcellar with the blackbeetles I wonder +was it her Josie off her head with my castoffs hes such a born liar too +no hed never have the courage with a married woman thats why he wants +me and Boylan though as for her Denis as she calls him that +forlornlooking spectacle you couldnt call him a husband yes its some +little bitch hes got in with even when I was with him with Milly at the +College races that Hornblower with the childs bonnet on the top of his +nob let us into by the back way he was throwing his sheeps eyes at +those two doing skirt duty up and down I tried to wink at him first no +use of course and thats the way his money goes this is the fruits of Mr +Paddy Dignam yes they were all in great style at the grand funeral in +the paper Boylan brought in if they saw a real officers funeral thatd +be something reversed arms muffled drums the poor horse walking behind +in black L Boom and Tom Kernan that drunken little barrelly man that +bit his tongue off falling down the mens W C drunk in some place or +other and Martin Cunningham and the two Dedaluses and Fanny MCoys +husband white head of cabbage skinny thing with a turn in her eye +trying to sing my songs shed want to be born all over again and her old +green dress with the lowneck as she cant attract them any other way +like dabbling on a rainy day I see it all now plainly and they call +that friendship killing and then burying one another and they all with +their wives and families at home more especially Jack Power keeping +that barmaid he does of course his wife is always sick or going to be +sick or just getting better of it and hes a goodlooking man still +though hes getting a bit grey over the ears theyre a nice lot all of +them well theyre not going to get my husband again into their clutches +if I can help it making fun of him then behind his back I know well +when he goes on with his idiotics because he has sense enough not to +squander every penny piece he earns down their gullets and looks after +his wife and family goodfornothings poor Paddy Dignam all the same Im +sorry in a way for him what are his wife and 5 children going to do +unless he was insured comical little teetotum always stuck up in some +pub corner and her or her son waiting Bill Bailey wont you please come +home her widows weeds wont improve her appearance theyre awfully +becoming though if youre goodlooking what men wasnt he yes he was at +the Glencree dinner and Ben Dollard base barreltone the night he +borrowed the swallowtail to sing out of in Holles street squeezed and +squashed into them and grinning all over his big Dolly face like a +wellwhipped childs botty didnt he look a balmy ballocks sure enough +that must have been a spectacle on the stage imagine paying 5/- in the +preserved seats for that to see him trotting off in his trowlers and +Simon Dedalus too he was always turning up half screwed singing the +second verse first the old love is the new was one of his so sweetly +sang the maiden on the hawthorn bough he was always on for flirtyfying +too when I sang Maritana with him at Freddy Mayers private opera he had +a delicious glorious voice Phoebe dearest goodbye sweetheart +_sweet_heart he always sang it not like Bartell DArcy sweet _tart_ +goodbye of course he had the gift of the voice so there was no art in +it all over you like a warm showerbath O Maritana wildwood flower we +sang splendidly though it was a bit too high for my register even +transposed and he was married at the time to May Goulding but then hed +say or do something to knock the good out of it hes a widower now I +wonder what sort is his son he says hes an author and going to be a +university professor of Italian and Im to take lessons what is he +driving at now showing him my photo its not good of me I ought to have +got it taken in drapery that never looks out of fashion still I look +young in it I wonder he didnt make him a present of it altogether and +me too after all why not I saw him driving down to the Kingsbridge +station with his father and mother I was in mourning thats 11 years ago +now yes hed be 11 though what was the good in going into mourning for +what was neither one thing nor the other the first cry was enough for +me I heard the deathwatch too ticking in the wall of course he insisted +hed go into mourning for the cat I suppose hes a man now by this time +he was an innocent boy then and a darling little fellow in his lord +Fauntleroy suit and curly hair like a prince on the stage when I saw +him at Mat Dillons he liked me too I remember they all do wait by God +yes wait yes hold on he was on the cards this morning when I laid out +the deck union with a young stranger neither dark nor fair you met +before I thought it meant him but hes no chicken nor a stranger either +besides my face was turned the other way what was the 7th card after +that the 10 of spades for a journey by land then there was a letter on +its way and scandals too the 3 queens and the 8 of diamonds for a rise +in society yes wait it all came out and 2 red 8s for new garments look +at that and didnt I dream something too yes there was something about +poetry in it I hope he hasnt long greasy hair hanging into his eyes or +standing up like a red Indian what do they go about like that for only +getting themselves and their poetry laughed at I always liked poetry +when I was a girl first I thought he was a poet like lord Byron and not +an ounce of it in his composition I thought he was quite different I +wonder is he too young hes about wait 88 I was married 88 Milly is 15 +yesterday 89 what age was he then at Dillons 5 or 6 about 88 I suppose +hes 20 or more Im not too old for him if hes 23 or 24 I hope hes not +that stuckup university student sort no otherwise he wouldnt go sitting +down in the old kitchen with him taking Eppss cocoa and talking of +course he pretended to understand it all probably he told him he was +out of Trinity college hes very young to be a professor I hope hes not +a professor like Goodwin was he was a potent professor of John Jameson +they all write about some woman in their poetry well I suppose he wont +find many like me where softly sighs of love the light guitar where +poetry is in the air the blue sea and the moon shining so beautifully +coming back on the nightboat from Tarifa the lighthouse at Europa point +the guitar that fellow played was so expressive will I ever go back +there again all new faces two glancing eyes a lattice hid Ill sing that +for him theyre my eyes if hes anything of a poet two eyes as darkly +bright as loves own star arent those beautiful words as loves young +star itll be a change the Lord knows to have an intelligent person to +talk to about yourself not always listening to him and Billy Prescotts +ad and Keyess ad and Tom the Devils ad then if anything goes wrong in +their business we have to suffer Im sure hes very distinguished Id like +to meet a man like that God not those other ruck besides hes young +those fine young men I could see down in Margate strand bathingplace +from the side of the rock standing up in the sun naked like a God or +something and then plunging into the sea with them why arent all men +like that thered be some consolation for a woman like that lovely +little statue he bought I could look at him all day long curly head and +his shoulders his finger up for you to listen theres real beauty and +poetry for you I often felt I wanted to kiss him all over also his +lovely young cock there so simple I wouldnt mind taking him in my mouth +if nobody was looking as if it was asking you to suck it so clean and +white he looks with his boyish face I would too in 1/2 a minute even if +some of it went down what its only like gruel or the dew theres no +danger besides hed be so clean compared with those pigs of men I +suppose never dream of washing it from 1 years end to the other the +most of them only thats what gives the women the moustaches Im sure +itll be grand if I can only get in with a handsome young poet at my age +Ill throw them the 1st thing in the morning till I see if the wishcard +comes out or Ill try pairing the lady herself and see if he comes out +Ill read and study all I can find or learn a bit off by heart if I knew +who he likes so he wont think me stupid if he thinks all women are the +same and I can teach him the other part Ill make him feel all over him +till he half faints under me then hell write about me lover and +mistress publicly too with our 2 photographs in all the papers when he +becomes famous O but then what am I going to do about him though + +no thats no way for him has he no manners nor no refinement nor no +nothing in his nature slapping us behind like that on my bottom because +I didnt call him Hugh the ignoramus that doesnt know poetry from a +cabbage thats what you get for not keeping them in their proper place +pulling off his shoes and trousers there on the chair before me so +barefaced without even asking permission and standing out that vulgar +way in the half of a shirt they wear to be admired like a priest or a +butcher or those old hypocrites in the time of Julius Caesar of course +hes right enough in his way to pass the time as a joke sure you might +as well be in bed with what with a lion God Im sure hed have something +better to say for himself an old Lion would O well I suppose its +because they were so plump and tempting in my short petticoat he +couldnt resist they excite myself sometimes its well for men all the +amount of pleasure they get off a womans body were so round and white +for them always I wished I was one myself for a change just to try with +that thing they have swelling up on you so hard and at the same time so +soft when you touch it my uncle John has a thing long I heard those +cornerboys saying passing the comer of Marrowbone lane my aunt Mary has +a thing hairy because it was dark and they knew a girl was passing it +didnt make me blush why should it either its only nature and he puts +his thing long into my aunt Marys hairy etcetera and turns out to be +you put the handle in a sweepingbrush men again all over they can pick +and choose what they please a married woman or a fast widow or a girl +for their different tastes like those houses round behind Irish street +no but were to be always chained up theyre not going to be chaining me +up no damn fear once I start I tell you for their stupid husbands +jealousy why cant we all remain friends over it instead of quarrelling +her husband found it out what they did together well naturally and if +he did can he undo it hes coronado anyway whatever he does and then he +going to the other mad extreme about the wife in Fair Tyrants of course +the man never even casts a 2nd thought on the husband or wife either +its the woman he wants and he gets her what else were we given all +those desires for Id like to know I cant help it if Im young still can +I its a wonder Im not an old shrivelled hag before my time living with +him so cold never embracing me except sometimes when hes asleep the +wrong end of me not knowing I suppose who he has any man thatd kiss a +womans bottom Id throw my hat at him after that hed kiss anything +unnatural where we havent 1 atom of any kind of expression in us all of +us the same 2 lumps of lard before ever Id do that to a man pfooh the +dirty brutes the mere thought is enough I kiss the feet of you senorita +theres some sense in that didnt he kiss our halldoor yes he did what a +madman nobody understands his cracked ideas but me still of course a +woman wants to be embraced 20 times a day almost to make her look young +no matter by who so long as to be in love or loved by somebody if the +fellow you want isnt there sometimes by the Lord God I was thinking +would I go around by the quays there some dark evening where nobodyd +know me and pick up a sailor off the sea thatd be hot on for it and not +care a pin whose I was only do it off up in a gate somewhere or one of +those wildlooking gipsies in Rathfarnham had their camp pitched near +the Bloomfield laundry to try and steal our things if they could I only +sent mine there a few times for the name model laundry sending me back +over and over some old ones odd stockings that blackguardlooking fellow +with the fine eyes peeling a switch attack me in the dark and ride me +up against the wall without a word or a murderer anybody what they do +themselves the fine gentlemen in their silk hats that K C lives up +somewhere this way coming out of Hardwicke lane the night he gave us +the fish supper on account of winning over the boxing match of course +it was for me he gave it I knew him by his gaiters and the walk and +when I turned round a minute after just to see there was a woman after +coming out of it too some filthy prostitute then he goes home to his +wife after that only I suppose the half of those sailors are rotten +again with disease O move over your big carcass out of that for the +love of Mike listen to him the winds that waft my sighs to thee so well +he may sleep and sigh the great Suggester Don Poldo de la Flora if he +knew how he came out on the cards this morning hed have something to +sigh for a dark man in some perplexity between 2 7s too in prison for +Lord knows what he does that I dont know and Im to be slooching around +down in the kitchen to get his lordship his breakfast while hes rolled +up like a mummy will I indeed did you ever see me running Id just like +to see myself at it show them attention and they treat you like dirt I +dont care what anybody says itd be much better for the world to be +governed by the women in it you wouldnt see women going and killing one +another and slaughtering when do you ever see women rolling around +drunk like they do or gambling every penny they have and losing it on +horses yes because a woman whatever she does she knows where to stop +sure they wouldnt be in the world at all only for us they dont know +what it is to be a woman and a mother how could they where would they +all of them be if they hadnt all a mother to look after them what I +never had thats why I suppose hes running wild now out at night away +from his books and studies and not living at home on account of the +usual rowy house I suppose well its a poor case that those that have a +fine son like that theyre not satisfied and I none was he not able to +make one it wasnt my fault we came together when I was watching the two +dogs up in her behind in the middle of the naked street that +disheartened me altogether I suppose I oughtnt to have buried him in +that little woolly jacket I knitted crying as I was but give it to some +poor child but I knew well Id never have another our 1st death too it +was we were never the same since O Im not going to think myself into +the glooms about that any more I wonder why he wouldnt stay the night I +felt all the time it was somebody strange he brought in instead of +roving around the city meeting God knows who nightwalkers and +pickpockets his poor mother wouldnt like that if she was alive ruining +himself for life perhaps still its a lovely hour so silent I used to +love coming home after dances the air of the night they have friends +they can talk to weve none either he wants what he wont get or its some +woman ready to stick her knife in you I hate that in women no wonder +they treat us the way they do we are a dreadful lot of bitches I +suppose its all the troubles we have makes us so snappy Im not like +that he could easy have slept in there on the sofa in the other room I +suppose he was as shy as a boy he being so young hardly 20 of me in the +next room hed have heard me on the chamber arrah what harm Dedalus I +wonder its like those names in Gibraltar Delapaz Delagracia they had +the devils queer names there father Vilaplana of Santa Maria that gave +me the rosary Rosales y OReilly in the Calle las Siete Revueltas and +Pisimbo and Mrs Opisso in Governor street O what a name Id go and drown +myself in the first river if I had a name like her O my and all the +bits of streets Paradise ramp and Bedlam ramp and Rodgers ramp and +Crutchetts ramp and the devils gap steps well small blame to me if I am +a harumscarum I know I am a bit I declare to God I dont feel a day +older than then I wonder could I get my tongue round any of the Spanish +como esta usted muy bien gracias y usted see I havent forgotten it all +I thought I had only for the grammar a noun is the name of any person +place or thing pity I never tried to read that novel cantankerous Mrs +Rubio lent me by Valera with the questions in it all upside down the +two ways I always knew wed go away in the end I can tell him the +Spanish and he tell me the Italian then hell see Im not so ignorant +what a pity he didnt stay Im sure the poor fellow was dead tired and +wanted a good sleep badly I could have brought him in his breakfast in +bed with a bit of toast so long as I didnt do it on the knife for bad +luck or if the woman was going her rounds with the watercress and +something nice and tasty there are a few olives in the kitchen he might +like I never could bear the look of them in Abrines I could do the +criada the room looks all right since I changed it the other way you +see something was telling me all the time Id have to introduce myself +not knowing me from Adam very funny wouldnt it Im his wife or pretend +we were in Spain with him half awake without a Gods notion where he is +dos huevos estrellados senor Lord the cracked things come into my head +sometimes itd be great fun supposing he stayed with us why not theres +the room upstairs empty and Millys bed in the back room he could do his +writing and studies at the table in there for all the scribbling he +does at it and if he wants to read in bed in the morning like me as hes +making the breakfast for 1 he can make it for 2 Im sure Im not going to +take in lodgers off the street for him if he takes a gesabo of a house +like this Id love to have a long talk with an intelligent welleducated +person Id have to get a nice pair of red slippers like those Turks with +the fez used to sell or yellow and a nice semitransparent morning gown +that I badly want or a peachblossom dressing jacket like the one long +ago in Walpoles only 8/6 or 18/6 Ill just give him one more chance Ill +get up early in the morning Im sick of Cohens old bed in any case I +might go over to the markets to see all the vegetables and cabbages and +tomatoes and carrots and all kinds of splendid fruits all coming in +lovely and fresh who knows whod be the 1st man Id meet theyre out +looking for it in the morning Mamy Dillon used to say they are and the +night too that was her massgoing Id love a big juicy pear now to melt +in your mouth like when I used to be in the longing way then Ill throw +him up his eggs and tea in the moustachecup she gave him to make his +mouth bigger I suppose hed like my nice cream too I know what Ill do +Ill go about rather gay not too much singing a bit now and then mi fa +pieta Masetto then Ill start dressing myself to go out presto non son +piu forte Ill put on my best shift and drawers let him have a good +eyeful out of that to make his micky stand for him Ill let him know if +thats what he wanted that his wife is fucked yes and damn well fucked +too up to my neck nearly not by him 5 or 6 times handrunning theres the +mark of his spunk on the clean sheet I wouldnt bother to even iron it +out that ought to satisfy him if you dont believe me feel my belly +unless I made him stand there and put him into me Ive a mind to tell +him every scrap and make him do it out in front of me serve him right +its all his own fault if I am an adulteress as the thing in the gallery +said O much about it if thats all the harm ever we did in this vale of +tears God knows its not much doesnt everybody only they hide it I +suppose thats what a woman is supposed to be there for or He wouldnt +have made us the way He did so attractive to men then if he wants to +kiss my bottom Ill drag open my drawers and bulge it right out in his +face as large as life he can stick his tongue 7 miles up my hole as hes +there my brown part then Ill tell him I want £ 1 or perhaps 30/- Ill +tell him I want to buy underclothes then if he gives me that well he +wont be too bad I dont want to soak it all out of him like other women +do I could often have written out a fine cheque for myself and write +his name on it for a couple of pounds a few times he forgot to lock it +up besides he wont spend it Ill let him do it off on me behind provided +he doesnt smear all my good drawers O I suppose that cant be helped Ill +do the indifferent 1 or 2 questions Ill know by the answers when hes +like that he cant keep a thing back I know every turn in him Ill +tighten my bottom well and let out a few smutty words smellrump or lick +my shit or the first mad thing comes into my head then Ill suggest +about yes O wait now sonny my turn is coming Ill be quite gay and +friendly over it O but I was forgetting this bloody pest of a thing +pfooh you wouldnt know which to laugh or cry were such a mixture of +plum and apple no Ill have to wear the old things so much the better +itll be more pointed hell never know whether he did it or not there +thats good enough for you any old thing at all then Ill wipe him off me +just like a business his omission then Ill go out Ill have him eying up +at the ceiling where is she gone now make him want me thats the only +way a quarter after what an unearthly hour I suppose theyre just +getting up in China now combing out their pigtails for the day well +soon have the nuns ringing the angelus theyve nobody coming in to spoil +their sleep except an odd priest or two for his night office or the +alarmclock next door at cockshout clattering the brains out of itself +let me see if I can doze off 1 2 3 4 5 what kind of flowers are those +they invented like the stars the wallpaper in Lombard street was much +nicer the apron he gave me was like that something only I only wore it +twice better lower this lamp and try again so as I can get up early Ill +go to Lambes there beside Findlaters and get them to send us some +flowers to put about the place in case he brings him home tomorrow +today I mean no no Fridays an unlucky day first I want to do the place +up someway the dust grows in it I think while Im asleep then we can +have music and cigarettes I can accompany him first I must clean the +keys of the piano with milk whatll I wear shall I wear a white rose or +those fairy cakes in Liptons I love the smell of a rich big shop at 7 +1/2d a lb or the other ones with the cherries in them and the pinky +sugar 11d a couple of lbs of those a nice plant for the middle of the +table Id get that cheaper in wait wheres this I saw them not long ago I +love flowers Id love to have the whole place swimming in roses God of +heaven theres nothing like nature the wild mountains then the sea and +the waves rushing then the beautiful country with the fields of oats +and wheat and all kinds of things and all the fine cattle going about +that would do your heart good to see rivers and lakes and flowers all +sorts of shapes and smells and colours springing up even out of the +ditches primroses and violets nature it is as for them saying theres no +God I wouldnt give a snap of my two fingers for all their learning why +dont they go and create something I often asked him atheists or +whatever they call themselves go and wash the cobbles off themselves +first then they go howling for the priest and they dying and why why +because theyre afraid of hell on account of their bad conscience ah yes +I know them well who was the first person in the universe before there +was anybody that made it all who ah that they dont know neither do I so +there you are they might as well try to stop the sun from rising +tomorrow the sun shines for you he said the day we were lying among the +rhododendrons on Howth head in the grey tweed suit and his straw hat +the day I got him to propose to me yes first I gave him the bit of +seedcake out of my mouth and it was leapyear like now yes 16 years ago +my God after that long kiss I near lost my breath yes he said I was a +flower of the mountain yes so we are flowers all a womans body yes that +was one true thing he said in his life and the sun shines for you today +yes that was why I liked him because I saw he understood or felt what a +woman is and I knew I could always get round him and I gave him all the +pleasure I could leading him on till he asked me to say yes and I +wouldnt answer first only looked out over the sea and the sky I was +thinking of so many things he didnt know of Mulvey and Mr Stanhope and +Hester and father and old captain Groves and the sailors playing all +birds fly and I say stoop and washing up dishes they called it on the +pier and the sentry in front of the governors house with the thing +round his white helmet poor devil half roasted and the Spanish girls +laughing in their shawls and their tall combs and the auctions in the +morning the Greeks and the jews and the Arabs and the devil knows who +else from all the ends of Europe and Duke street and the fowl market +all clucking outside Larby Sharons and the poor donkeys slipping half +asleep and the vague fellows in the cloaks asleep in the shade on the +steps and the big wheels of the carts of the bulls and the old castle +thousands of years old yes and those handsome Moors all in white and +turbans like kings asking you to sit down in their little bit of a shop +and Ronda with the old windows of the posadas 2 glancing eyes a lattice +hid for her lover to kiss the iron and the wineshops half open at night +and the castanets and the night we missed the boat at Algeciras the +watchman going about serene with his lamp and O that awful deepdown +torrent O and the sea the sea crimson sometimes like fire and the +glorious sunsets and the figtrees in the Alameda gardens yes and all +the queer little streets and the pink and blue and yellow houses and +the rosegardens and the jessamine and geraniums and cactuses and +Gibraltar as a girl where I was a Flower of the mountain yes when I put +the rose in my hair like the Andalusian girls used or shall I wear a +red yes and how he kissed me under the Moorish wall and I thought well +as well him as another and then I asked him with my eyes to ask again +yes and then he asked me would I yes to say yes my mountain flower and +first I put my arms around him yes and drew him down to me so he could +feel my breasts all perfume yes and his heart was going like mad and +yes I said yes I will Yes. + +Trieste-Zurich-Paris + +1914-1921 + + + + +*** END OF THE PROJECT GUTENBERG EBOOK ULYSSES *** + + + + +Updated editions will replace the previous one—the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the United +States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg™ electronic works to protect the PROJECT GUTENBERG™ +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away—you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE + +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg™ mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase “Project +Gutenberg”), you agree to comply with all the terms of the Full +Project Gutenberg™ License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project Gutenberg™ +electronic works + +1.A. By reading or using any part of this Project Gutenberg™ +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg™ electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg™ electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the person +or entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. “Project Gutenberg” is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg™ electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg™ electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg™ +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation (“the +Foundation” or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg™ electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg™ mission of promoting +free access to electronic works by freely sharing Project Gutenberg™ +works in compliance with the terms of this agreement for keeping the +Project Gutenberg™ name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg™ License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg™ work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg™ License must appear +prominently whenever any copy of a Project Gutenberg™ work (any work +on which the phrase “Project Gutenberg” appears, or with which the +phrase “Project Gutenberg” is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms + of the Project Gutenberg License included with this eBook or online + at www.gutenberg.org. If you + are not located in the United States, you will have to check the laws + of the country where you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg™ electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase “Project +Gutenberg” associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg™ +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg™ electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg™ License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg™ +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg™. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg™ License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg™ work in a format +other than “Plain Vanilla ASCII” or other format used in the official +version posted on the official Project Gutenberg™ website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original “Plain +Vanilla ASCII” or other form. Any alternate format must include the +full Project Gutenberg™ License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg™ works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg™ electronic works +provided that: + + • You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg™ works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg™ trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, “Information about donations to the Project Gutenberg + Literary Archive Foundation.” + + • You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg™ + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg™ + works. + + • You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + + • You comply with all other terms of this agreement for free + distribution of Project Gutenberg™ works. + + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg™ electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg™ trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg™ collection. Despite these efforts, Project Gutenberg™ +electronic works, and the medium on which they may be stored, may +contain “Defects,” such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right +of Replacement or Refund” described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg™ trademark, and any other party distributing a Project +Gutenberg™ electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg™ electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg™ +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg™ work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg™ work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg™ + +Project Gutenberg™ is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg™’s +goals and ensuring that the Project Gutenberg™ collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg™ and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at www.gutenberg.org. + +Section 3. Information about the Project Gutenberg Literary Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation’s EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state’s laws. + +The Foundation’s business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation’s website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg™ depends upon and cannot survive without widespread +public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular state +visit www.gutenberg.org/donate. + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate. + +Section 5. General Information About Project Gutenberg™ electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg™ concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg™ eBooks with only a loose network of +volunteer support. + +Project Gutenberg™ eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org. + +This website includes information about Project Gutenberg™, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + +